[
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n  - package-ecosystem: \"maven\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n    open-pull-requests-limit: 5\n"
  },
  {
    "path": ".github/release.yml",
    "content": "changelog:\n  exclude:\n    labels:\n      - ignore-for-release\n  categories:\n    - title: Breaking Changes 🛠\n      labels:\n        - breaking\n    - title: Bug Fixes 🐛\n      labels:\n        - bug\n    - title: Improvements 🎉\n      labels:\n        - improvement\n        - cleanup\n    - title: Dependency updates 📦\n      labels:\n        - dependency\n    - title: Security fixes 🔒\n      labels:\n        - security\n    - title: Others\n      labels:\n        - \"*\"\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "content": "name: ci\n\non:\n  - push\n  - pull_request\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        java-version:\n          - 25\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-java@v4\n        with:\n          distribution: 'temurin'\n          java-version: ${{ matrix.java-version }}\n      - name: Maven Install\n        run: ./mvnw install -B -V -DskipTests -Dair.check.skip-all\n      - name: Maven Tests\n        run: ./mvnw install -B -P ci\n"
  },
  {
    "path": ".github/workflows/release-2x.yml",
    "content": "name: Release new 2.x version\n\non:\n  workflow_dispatch:\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n      packages: write\n\n    steps:\n      - name: Check if release is running from master\n        run: |\n          if [ \"${GITHUB_REF}\" != \"refs/heads/master\" ]; then\n            echo \"Release is only allowed from master\"\n            exit 1\n          fi\n\n      - name: Checkout code for release-2.x\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n          ref: release-2.x\n\n      - name: Install java\n        uses: actions/setup-java@v4\n        with:\n          java-version: '21'\n          distribution: 'temurin'\n          gpg-private-key: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}\n          gpg-passphrase: MAVEN_GPG_PASSPHRASE\n          cache: 'maven'\n\n      - name: Configure git\n        run: |\n          git config user.name \"Airlift Release\"\n          git config user.email \"airlift-bot@airlift.io\"\n\n      - name: Lock branch before release\n        uses: github/lock@v2\n        id: release-lock\n        with:\n          mode: 'lock'\n\n      - name: Run ./mvnw release:prepare\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n        run: |\n          ./mvnw -B release:prepare\n\n      - name: Determine release version\n        run: |\n          export VERSION=$(grep 'scm.tag=' release.properties | cut -d'=' -f2)\n          echo \"VERSION=${VERSION}\" >> $GITHUB_ENV\n          echo \"Releasing version: ${VERSION}\"\n\n      - name: Run ./mvnw release:perform to local staging\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n        run: |\n          ./mvnw -B release:perform\n\n      - name: Display git status and history, checkout release tag\n        run: |\n          git status\n          git log --oneline -n 2\n\n      - name: Run njord:validate\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n          MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME }}\n          MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_TOKEN }}\n        run: |\n          ./mvnw njord:list\n          ./mvnw njord:status\n          ./mvnw njord:validate\n\n      - name: Run njord:publish\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n          MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME }}\n          MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_TOKEN }}\n        run:\n          ./mvnw njord:publish\n\n      - name: Push git changes\n        run: |\n          git status\n          git describe\n          git push origin release-2.x\n          git push origin --tags\n\n      - name: Unlock branch after a release\n        uses: github/lock@v2\n        id: release-unlock\n        with:\n          mode: 'unlock'\n      - name: Create release notes\n        env:\n          GITHUB_TOKEN: \"${{ secrets.GITHUB_TOKEN }}\"\n        run: |\n          gh release create \"${VERSION}\" \\\n              --repo=\"$GITHUB_REPOSITORY\" \\\n              --title=\"${GITHUB_REPOSITORY#*/} ${VERSION}\" \\\n              --generate-notes\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Release new version\n\non:\n  workflow_dispatch:\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n      packages: write\n\n    steps:\n      - name: Check if release is running from master\n        run: |\n          if [ \"${GITHUB_REF}\" != \"refs/heads/master\" ]; then\n            echo \"Release is only allowed from master branch\"\n            exit 1\n          fi\n\n      - name: Checkout code\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Install java\n        uses: actions/setup-java@v4\n        with:\n          java-version: '25'\n          distribution: 'temurin'\n          gpg-private-key: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}\n          gpg-passphrase: MAVEN_GPG_PASSPHRASE\n          cache: 'maven'\n\n      - name: Configure git\n        run: |\n          git config user.name \"Airlift Release\"\n          git config user.email \"airlift-bot@airlift.io\"\n\n      - name: Lock branch before release\n        uses: github/lock@v2\n        id: release-lock\n        with:\n          mode: 'lock'\n\n      - name: Run mvn release:prepare\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n        run: |\n          ./mvnw -B release:prepare -Poss-release\n\n      - name: Determine release version\n        run: |\n          export VERSION=$(grep 'scm.tag=' release.properties | cut -d'=' -f2)\n          echo \"VERSION=${VERSION}\" >> $GITHUB_ENV\n          echo \"Releasing version: ${VERSION}\"\n\n      - name: Run mvn release:perform to local staging\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n        run: |\n          ./mvnw -B release:perform -Poss-release\n\n      - name: Display git status and history\n        run: |\n          git status\n          git log --oneline -n 2\n\n      - name: Run njord:validate\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n          MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME }}\n          MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_TOKEN }}\n        run: |\n          ./mvnw njord:list\n          ./mvnw njord:status\n          ./mvnw njord:validate\n\n      - name: Run njord:publish\n        env:\n          MAVEN_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}\n          MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME }}\n          MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_NEXUS2_MAVEN_CENTRAL_TOKEN }}\n        run:\n          ./mvnw njord:publish -Poss-release\n\n      - name: Push git changes\n        run: |\n          git status\n          git describe\n          git push origin master\n          git push origin --tags\n\n      - name: Unlock branch after a release\n        uses: github/lock@v2\n        id: release-unlock\n        with:\n          mode: 'unlock'\n      - name: Create release notes\n        env:\n          GITHUB_TOKEN: \"${{ secrets.GITHUB_TOKEN }}\"\n        run: |\n          gh release create \"${VERSION}\" \\\n              --repo=\"$GITHUB_REPOSITORY\" \\\n              --title=\"${GITHUB_REPOSITORY#*/} ${VERSION}\" \\\n              --generate-notes"
  },
  {
    "path": ".gitignore",
    "content": "target/\n/var\npom.xml.versionsBackup\ntest-output/\n/atlassian-ide-plugin.x\n.idea\n.*.swp\n.*.swo\n*~\n*.swp\n.idea\n.idea/*\n*.iml\n*.ipr\n*.iws\n.DS_Store\n.scala_dependencies\n.project\n.classpath\n.settings\neclipse-classes\nsnappy-cc\n"
  },
  {
    "path": ".mvn/maven.config",
    "content": "-s\n${session.rootDirectory}/.mvn/settings.xml\n"
  },
  {
    "path": ".mvn/settings.xml",
    "content": "<settings>\n    <pluginGroups>\n        <pluginGroup>eu.maveniverse.maven.plugins</pluginGroup>\n    </pluginGroups>\n    <servers>\n        <server>\n            <id>sonatype-central-portal</id>\n            <username>${env.MAVENCENTRAL_USERNAME}</username>\n            <password>${env.MAVENCENTRAL_PASSWORD}</password>\n            <configuration>\n                <njord.publisher>sonatype-cp</njord.publisher>\n                <njord.releaseUrl>njord:template:release-sca</njord.releaseUrl>\n            </configuration>\n        </server>\n    </servers>\n</settings>\n"
  },
  {
    "path": ".mvn/wrapper/maven-wrapper.properties",
    "content": "# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n#   http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\nwrapperVersion=3.3.4\ndistributionType=only-script\ndistributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip\n"
  },
  {
    "path": "README.md",
    "content": "# Compression for Java\n[![Maven Central](https://img.shields.io/maven-central/v/io.airlift/aircompressor-v3.svg?label=Maven%20Central)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.airlift%22%20AND%20a%3A%22aircompressor-v3%22)\n\nThis library provides a set of compression algorithms implemented in pure Java and \nwhere possible native implementations. The Java implementations use `sun.misc.Unsafe`\nto provide fast access to memory. The native implementations use `java.lang.foreign`\nto interact directly with native libraries without the need for JNI.\n\n# Usage\n\nEach algorithm provides a simple block compression API using the `io.airlift.compress.v3.Compressor` \nand `io.airlift.compress.v3.Decompressor` classes. Block compression is the simplest form of\nwhich simply compresses a small block of data provided as a `byte[]`, or more generally a\n`java.lang.foreign.MemorySegment`. Each algorithm may have one or more streaming format\nwhich typically produces a sequence of block compressed chunks.\n\n## byte array API\n```java\nbyte[] data = ...\n\nCompressor compressor = new Lz4JavaCompressor();\nbyte[] compressed = new byte[compressor.maxCompressedLength(data.length)];\nint compressedSize = compressor.compress(data, 0, data.length, compressed, 0, compressed.length);\n\nDecompressor decompressor = new Lz4JavaDecompressor();\nbyte[] uncompressed = new byte[data.length];\nint uncompressedSize = decompressor.decompress(compressed, 0, compressedSize, uncompressed, 0, uncompressed.length);\n```\n\n## MemorySegment API\n```java\nArena arena = ...\nMemorySegment data = ...\n\nCompressor compressor = new Lz4JavaCompressor();\nMemorySegment compressed = arena.allocate(compressor.maxCompressedLength(toIntExact(data.byteSize())));\nint compressedSize = compressor.compress(data, compressed);\ncompressed = compressed.asSlice(0, compressedSize);\n\nDecompressor decompressor = new Lz4JavaDecompressor();\nMemorySegment uncompressed = arena.allocate(data.byteSize());\nint uncompressedSize = decompressor.decompress(compressed, uncompressed);\nuncompressed = uncompressed.asSlice(0, uncompressedSize);\n```\n\n# Algorithms\n\n## [Zstandard (Zstd)](https://facebook.github.io/zstd) **(Recommended)**\nZstandard is the recommended algorithm for most compression. It provides\nsuperior compression and performance at all levels compared to zlib. Zstandard is\nan excellent choice for most use cases, especially storage and bandwidth constrained\nnetwork transfer.\n\nThe native implementation of Zstandard is provided by the `ZstdNativeCompressor` and\n`ZstdNativeDecompressor` classes. The Java implementation is provided by the\n`ZstdJavaCompressor` and `ZstdJavaDecompressor` classes.\n\nThe Zstandard streaming format is supported by `ZstdInputStream` and `ZstdOutputStream`.\n\n## [LZ4](https://www.lz4.org/)\nLZ4 is an extremely fast compression algorithm that provides compression ratios comparable\nto Snappy and LZO. LZ4 is an excellent choice for applications that require high-performance\ncompression and decompression.\n\nThe native implementation of LZ4 is provided by `Lz4NativeCompressor` and `Lz4NativeDecompressor`.\nThe Java implementation is provided by `Lz4JavaCompressor` and `Lz4JavaDecompressor`.\n\n## [Snappy](https://google.github.io/snappy/)\nSnappy is not as fast as LZ4, but provides a guarantee on memory usage that makes it a good\nchoice for extremely resource-limited environments (e.g. embedded systems like a network \nswitch). If your application is not highly resource constrained, LZ4 is a better choice.\n\nThe native implementation of Snappy is provided by `SnappyNativeCompressor` and `SnappyNativeDecompressor`.\nThe Java implementation is provided by `SnappyJavaCompressor` and `SnappyJavaDecompressor`.\n\nThe Snappy framed format is supported by `SnappyFramedInputStream` and `SnappyFramedOutputStream`.\n\n## [LZO](https://www.oberhumer.com/opensource/lzo/) \nLZO is only provided for compatibility with existing systems that use LZO. We recommend \nrewriting LZO data using Zstandard or LZ4. \n\nThe Java implementation of LZO is provided by `LzoJavaCompressor` and `LzoJavaDecompressor`.\nDue to licensing issues, the LZO only has a Java implementation which is based on LZ4.\n\n## Deflate\nDeflate is the block compression algorithm used by the `gzip` and `zlib` libraries. Deflate is\nprovided for compatibility with existing systems that use Deflate. We recommend rewriting\nDeflate data using Zstandard which provides superior compression and performance.\n\nThe implementation of Deflate is provided by `DeflateCompressor` and `DeflateDecompressor`.\nThis is implemented in the built-in Java libraries which internally use the native code.\n\n# Hash Functions\n\n## [XXHash3](https://xxhash.com/) **(Recommended)**\nXXHash3 is the latest generation of the XXHash family, providing faster hashing than XXHash64\nat all input sizes. It supports both 64-bit and 128-bit hash outputs.\n\nXXHash3 is only available as a native implementation via `XxHash3Native`. There is no Java\nimplementation available. The 128-bit variant has approximately 12ns of constant overhead due\nto Java FFM pulling the 128-bit result back into Java. At small inputs (<512 bytes) this\noverhead is noticeable, but at larger sizes (8KB+) it becomes a rounding error as hash\ncomputation dominates (measured on M4 Apple Silicon).\n\n```java\n// One-shot hashing (64-bit)\nlong hash = XxHash3Native.hash(data);\n\n// One-shot hashing (128-bit)\nXxHash128 hash = XxHash3Native.hash128(data);\n\n// Streaming hashing (64-bit)\ntry (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n    hasher.update(chunk1);\n    hasher.update(chunk2);\n    long hash = hasher.digest();\n}\n\n// Streaming hashing (128-bit)\ntry (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n    hasher.update(chunk1);\n    hasher.update(chunk2);\n    XxHash128 hash = hasher.digest();\n}\n```\n\n## [XXHash64](https://xxhash.com/)\nXXHash64 is an extremely fast non-cryptographic hash function with excellent distribution properties.\n\nThe native implementation is provided by `XxHash64NativeHasher` and the Java implementation\nis provided by `XxHash64JavaHasher`. The `XxHash64Hasher` interface provides static methods\nthat automatically select the best available implementation.\n\n```java\n// One-shot hashing\nlong hash = XxHash64Hasher.hash(data);\nlong hash = XxHash64Hasher.hash(data, seed);\n\n// Streaming hashing\ntry (XxHash64Hasher hasher = XxHash64Hasher.create()) {\n    hasher.update(chunk1);\n    hasher.update(chunk2);\n    long hash = hasher.digest();\n}\n```\n\n# Hadoop Compression\n\nIn addition to the raw block encoders, there are implementations of the\nHadoop streams for the above algorithms. In addition, implementations of\ngzip and bzip2 are provided so that all standard Hadoop algorithms are available.\n\nThe `HadoopStreams` class provides a factory for creating `InputStream` and `OutputStream`\nimplementations without the need for any Hadoop dependencies.  For environments \nthat have Hadoop dependencies, each algorithm also provides a `CompressionCodec` class.\n\n# Requirements\n\nThis library requires a Java 22+ virtual machine containing the `sun.misc.Unsafe` interface running on a little endian platform.\n\n# Configuration\n\nTemporary directory used to unpack and load native libraries can be configured using the `aircompressor.tmpdir` system property,\nwith a default value of `java.io.tmpdir`. This is useful when the default temporary directory is mounted as `noexec`.\n\nLoading of native libraries can be disabled entirely by setting the `io.airlift.compress.v3.disable-native` system property.\n\n# Users\n\nThis library is used in projects such as Trino (https://trino.io), a distributed SQL engine.\n"
  },
  {
    "path": "bin/download.sh",
    "content": "#!/bin/bash\n\nset -euo pipefail\n\nRESOURCES=$(dirname $0)/../src/main/resources/aircompressor\n\ndownload_linux()\n{\n    echo \"Download $3 ...\"\n    OUT=\"$RESOURCES/$3\"\n    if [ -f \"$OUT\" ]; then\n        echo \"=> skipped\"\n        return\n    fi\n\n    TEMP=$(mktemp)\n    curl -sSL \"$1\" | tar -xO data.tar.xz | tar -xO \".$2\" > \"$TEMP\"\n    mv -f \"$TEMP\" \"$OUT\"\n    chmod 644 \"$OUT\"\n    echo \"=> downloaded\"\n}\n\ndownload_macos()\n{\n    echo \"Download $5 ...\"\n    OUT=\"$RESOURCES/$5\"\n    if [ -f \"$OUT\" ]; then\n        echo \"=> skipped\"\n        return\n    fi\n\n    DIGEST=$(curl -sS -L \\\n        -H 'Authorization: Bearer QQ==' \\\n        -H 'Accept: application/vnd.oci.image.index.v1+json' \\\n        \"https://ghcr.io/v2/homebrew/core/$1/manifests/$2\"  \\\n        | jq -r \"\n            .manifests |\n            sort_by(.platform[\\\"os.version\\\"]) |\n            .[] |\n            select(.platform.os == \\\"darwin\\\") |\n            select(.platform.architecture == \\\"$4\\\") |\n            .annotations[\\\"sh.brew.bottle.digest\\\"]\" \\\n        | head -n1)\n\n    TEMP=$(mktemp)\n    curl -sS -L \\\n        -H 'Authorization: Bearer QQ==' \\\n        \"https://ghcr.io/v2/homebrew/core/$1/blobs/sha256:$DIGEST\" | \\\n        tar -xO \"$1/$2/lib/$3\" > \"$TEMP\"\n    mv -f \"$TEMP\" \"$OUT\"\n    chmod 644 \"$OUT\"\n    echo \"=> downloaded\"\n}\n\n# Snappy\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/s/snappy/libsnappy1v5_1.2.1-1+b1_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/libsnappy.so.1.2.1\" \\\n  \"linux-amd64/libsnappy.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/s/snappy/libsnappy1v5_1.2.1-1+b1_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/libsnappy.so.1.2.1\" \\\n  \"linux-aarch64/libsnappy.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/s/snappy/libsnappy1v5_1.2.1-1+b1_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/libsnappy.so.1.2.1\" \\\n  \"linux-ppc64le/libsnappy.so\"\n\ndownload_macos \\\n  snappy 1.1.10 libsnappy.1.1.10.dylib amd64 macos-amd64/libsnappy.dylib\n\ndownload_macos \\\n  snappy 1.1.10 libsnappy.1.1.10.dylib arm64 macos-aarch64/libsnappy.dylib\n\n# Zstandard\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libz/libzstd/libzstd1_1.5.6+dfsg-1_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/libzstd.so.1.5.6\" \\\n  \"linux-amd64/libzstd.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libz/libzstd/libzstd1_1.5.6+dfsg-1_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/libzstd.so.1.5.6\" \\\n  \"linux-aarch64/libzstd.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libz/libzstd/libzstd1_1.5.6+dfsg-1_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/libzstd.so.1.5.6\" \\\n  \"linux-ppc64le/libzstd.so\"\n\ndownload_macos \\\n  zstd 1.5.6 libzstd.1.5.6.dylib amd64 macos-amd64/libzstd.dylib\n\ndownload_macos \\\n  zstd 1.5.6 libzstd.1.5.6.dylib arm64 macos-aarch64/libzstd.dylib\n\n# LZ4\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/l/lz4/liblz4-1_1.10.0-1_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/liblz4.so.1.10.0\" \\\n  \"linux-amd64/liblz4.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/l/lz4/liblz4-1_1.10.0-1_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/liblz4.so.1.10.0\" \\\n  \"linux-aarch64/liblz4.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/l/lz4/liblz4-1_1.10.0-1_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/liblz4.so.1.10.0\" \\\n  \"linux-ppc64le/liblz4.so\"\n\ndownload_macos \\\n  lz4 1.10.0 liblz4.1.10.0.dylib amd64 macos-amd64/liblz4.dylib\n\ndownload_macos \\\n  lz4 1.10.0 liblz4.1.10.0.dylib arm64 macos-aarch64/liblz4.dylib\n\n# bzip2\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/b/bzip2/libbz2-1.0_1.0.8-6_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4\" \\\n  \"linux-amd64/libbz2.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/b/bzip2/libbz2-1.0_1.0.8-6_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/libbz2.so.1.0.4\" \\\n  \"linux-aarch64/libbz2.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/b/bzip2/libbz2-1.0_1.0.8-6_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/libbz2.so.1.0.4\" \\\n  \"linux-ppc64le/libbz2.so\"\n\n# XXHash\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/x/xxhash/libxxhash0_0.8.3-2_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/libxxhash.so.0.8.3\" \\\n  \"linux-amd64/libxxhash.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/x/xxhash/libxxhash0_0.8.3-2_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/libxxhash.so.0.8.3\" \\\n  \"linux-aarch64/libxxhash.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/x/xxhash/libxxhash0_0.8.3-2_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/libxxhash.so.0.8.3\" \\\n  \"linux-ppc64le/libxxhash.so\"\n\ndownload_macos \\\n  xxhash 0.8.3 libxxhash.0.8.3.dylib amd64 macos-amd64/libxxhash.dylib\n\ndownload_macos \\\n  xxhash 0.8.3 libxxhash.0.8.3.dylib arm64 macos-aarch64/libxxhash.dylib\n\n# libdeflate\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libd/libdeflate/libdeflate0_1.23-2_amd64.deb\" \\\n  \"/usr/lib/x86_64-linux-gnu/libdeflate.so.0\" \\\n  \"linux-amd64/libdeflate.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libd/libdeflate/libdeflate0_1.23-2_arm64.deb\" \\\n  \"/usr/lib/aarch64-linux-gnu/libdeflate.so.0\" \\\n  \"linux-aarch64/libdeflate.so\"\n\ndownload_linux \\\n  \"https://deb.debian.org/debian/pool/main/libd/libdeflate/libdeflate0_1.23-2+b1_ppc64el.deb\" \\\n  \"/usr/lib/powerpc64le-linux-gnu/libdeflate.so.0\" \\\n  \"linux-ppc64le/libdeflate.so\"\n\ndownload_macos \\\n  libdeflate 1.23 libdeflate.0.dylib amd64 macos-amd64/libdeflate.dylib\n\ndownload_macos \\\n  libdeflate 1.23 libdeflate.0.dylib arm64 macos-aarch64/libdeflate.dylib\n"
  },
  {
    "path": "license.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n"
  },
  {
    "path": "mvnw",
    "content": "#!/bin/sh\n# ----------------------------------------------------------------------------\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n#    http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n# ----------------------------------------------------------------------------\n\n# ----------------------------------------------------------------------------\n# Apache Maven Wrapper startup batch script, version 3.3.2\n#\n# Optional ENV vars\n# -----------------\n#   JAVA_HOME - location of a JDK home dir, required when download maven via java source\n#   MVNW_REPOURL - repo url base for downloading maven distribution\n#   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven\n#   MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output\n# ----------------------------------------------------------------------------\n\nset -euf\n[ \"${MVNW_VERBOSE-}\" != debug ] || set -x\n\n# OS specific support.\nnative_path() { printf %s\\\\n \"$1\"; }\ncase \"$(uname)\" in\nCYGWIN* | MINGW*)\n  [ -z \"${JAVA_HOME-}\" ] || JAVA_HOME=\"$(cygpath --unix \"$JAVA_HOME\")\"\n  native_path() { cygpath --path --windows \"$1\"; }\n  ;;\nesac\n\n# set JAVACMD and JAVACCMD\nset_java_home() {\n  # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched\n  if [ -n \"${JAVA_HOME-}\" ]; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ]; then\n      # IBM's JDK on AIX uses strange locations for the executables\n      JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n      JAVACCMD=\"$JAVA_HOME/jre/sh/javac\"\n    else\n      JAVACMD=\"$JAVA_HOME/bin/java\"\n      JAVACCMD=\"$JAVA_HOME/bin/javac\"\n\n      if [ ! -x \"$JAVACMD\" ] || [ ! -x \"$JAVACCMD\" ]; then\n        echo \"The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run.\" >&2\n        echo \"JAVA_HOME is set to \\\"$JAVA_HOME\\\", but \\\"\\$JAVA_HOME/bin/java\\\" or \\\"\\$JAVA_HOME/bin/javac\\\" does not exist.\" >&2\n        return 1\n      fi\n    fi\n  else\n    JAVACMD=\"$(\n      'set' +e\n      'unset' -f command 2>/dev/null\n      'command' -v java\n    )\" || :\n    JAVACCMD=\"$(\n      'set' +e\n      'unset' -f command 2>/dev/null\n      'command' -v javac\n    )\" || :\n\n    if [ ! -x \"${JAVACMD-}\" ] || [ ! -x \"${JAVACCMD-}\" ]; then\n      echo \"The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run.\" >&2\n      return 1\n    fi\n  fi\n}\n\n# hash string like Java String::hashCode\nhash_string() {\n  str=\"${1:-}\" h=0\n  while [ -n \"$str\" ]; do\n    char=\"${str%\"${str#?}\"}\"\n    h=$(((h * 31 + $(LC_CTYPE=C printf %d \"'$char\")) % 4294967296))\n    str=\"${str#?}\"\n  done\n  printf %x\\\\n $h\n}\n\nverbose() { :; }\n[ \"${MVNW_VERBOSE-}\" != true ] || verbose() { printf %s\\\\n \"${1-}\"; }\n\ndie() {\n  printf %s\\\\n \"$1\" >&2\n  exit 1\n}\n\ntrim() {\n  # MWRAPPER-139:\n  #   Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds.\n  #   Needed for removing poorly interpreted newline sequences when running in more\n  #   exotic environments such as mingw bash on Windows.\n  printf \"%s\" \"${1}\" | tr -d '[:space:]'\n}\n\n# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties\nwhile IFS=\"=\" read -r key value; do\n  case \"${key-}\" in\n  distributionUrl) distributionUrl=$(trim \"${value-}\") ;;\n  distributionSha256Sum) distributionSha256Sum=$(trim \"${value-}\") ;;\n  esac\ndone <\"${0%/*}/.mvn/wrapper/maven-wrapper.properties\"\n[ -n \"${distributionUrl-}\" ] || die \"cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties\"\n\ncase \"${distributionUrl##*/}\" in\nmaven-mvnd-*bin.*)\n  MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/\n  case \"${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)\" in\n  *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;;\n  :Darwin*x86_64) distributionPlatform=darwin-amd64 ;;\n  :Darwin*arm64) distributionPlatform=darwin-aarch64 ;;\n  :Linux*x86_64*) distributionPlatform=linux-amd64 ;;\n  *)\n    echo \"Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version\" >&2\n    distributionPlatform=linux-amd64\n    ;;\n  esac\n  distributionUrl=\"${distributionUrl%-bin.*}-$distributionPlatform.zip\"\n  ;;\nmaven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;\n*) MVN_CMD=\"mvn${0##*/mvnw}\" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;\nesac\n\n# apply MVNW_REPOURL and calculate MAVEN_HOME\n# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>\n[ -z \"${MVNW_REPOURL-}\" ] || distributionUrl=\"$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*\"$_MVNW_REPO_PATTERN\"}\"\ndistributionUrlName=\"${distributionUrl##*/}\"\ndistributionUrlNameMain=\"${distributionUrlName%.*}\"\ndistributionUrlNameMain=\"${distributionUrlNameMain%-bin}\"\nMAVEN_USER_HOME=\"${MAVEN_USER_HOME:-${HOME}/.m2}\"\nMAVEN_HOME=\"${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string \"$distributionUrl\")\"\n\nexec_maven() {\n  unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :\n  exec \"$MAVEN_HOME/bin/$MVN_CMD\" \"$@\" || die \"cannot exec $MAVEN_HOME/bin/$MVN_CMD\"\n}\n\nif [ -d \"$MAVEN_HOME\" ]; then\n  verbose \"found existing MAVEN_HOME at $MAVEN_HOME\"\n  exec_maven \"$@\"\nfi\n\ncase \"${distributionUrl-}\" in\n*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;\n*) die \"distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'\" ;;\nesac\n\n# prepare tmp dir\nif TMP_DOWNLOAD_DIR=\"$(mktemp -d)\" && [ -d \"$TMP_DOWNLOAD_DIR\" ]; then\n  clean() { rm -rf -- \"$TMP_DOWNLOAD_DIR\"; }\n  trap clean HUP INT TERM EXIT\nelse\n  die \"cannot create temp dir\"\nfi\n\nmkdir -p -- \"${MAVEN_HOME%/*}\"\n\n# Download and Install Apache Maven\nverbose \"Couldn't find MAVEN_HOME, downloading and installing it ...\"\nverbose \"Downloading from: $distributionUrl\"\nverbose \"Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName\"\n\n# select .zip or .tar.gz\nif ! command -v unzip >/dev/null; then\n  distributionUrl=\"${distributionUrl%.zip}.tar.gz\"\n  distributionUrlName=\"${distributionUrl##*/}\"\nfi\n\n# verbose opt\n__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR=''\n[ \"${MVNW_VERBOSE-}\" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v\n\n# normalize http auth\ncase \"${MVNW_PASSWORD:+has-password}\" in\n'') MVNW_USERNAME='' MVNW_PASSWORD='' ;;\nhas-password) [ -n \"${MVNW_USERNAME-}\" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;\nesac\n\nif [ -z \"${MVNW_USERNAME-}\" ] && command -v wget >/dev/null; then\n  verbose \"Found wget ... using wget\"\n  wget ${__MVNW_QUIET_WGET:+\"$__MVNW_QUIET_WGET\"} \"$distributionUrl\" -O \"$TMP_DOWNLOAD_DIR/$distributionUrlName\" || die \"wget: Failed to fetch $distributionUrl\"\nelif [ -z \"${MVNW_USERNAME-}\" ] && command -v curl >/dev/null; then\n  verbose \"Found curl ... using curl\"\n  curl ${__MVNW_QUIET_CURL:+\"$__MVNW_QUIET_CURL\"} -f -L -o \"$TMP_DOWNLOAD_DIR/$distributionUrlName\" \"$distributionUrl\" || die \"curl: Failed to fetch $distributionUrl\"\nelif set_java_home; then\n  verbose \"Falling back to use Java to download\"\n  javaSource=\"$TMP_DOWNLOAD_DIR/Downloader.java\"\n  targetZip=\"$TMP_DOWNLOAD_DIR/$distributionUrlName\"\n  cat >\"$javaSource\" <<-END\n\tpublic class Downloader extends java.net.Authenticator\n\t{\n\t  protected java.net.PasswordAuthentication getPasswordAuthentication()\n\t  {\n\t    return new java.net.PasswordAuthentication( System.getenv( \"MVNW_USERNAME\" ), System.getenv( \"MVNW_PASSWORD\" ).toCharArray() );\n\t  }\n\t  public static void main( String[] args ) throws Exception\n\t  {\n\t    setDefault( new Downloader() );\n\t    java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() );\n\t  }\n\t}\n\tEND\n  # For Cygwin/MinGW, switch paths to Windows format before running javac and java\n  verbose \" - Compiling Downloader.java ...\"\n  \"$(native_path \"$JAVACCMD\")\" \"$(native_path \"$javaSource\")\" || die \"Failed to compile Downloader.java\"\n  verbose \" - Running Downloader.java ...\"\n  \"$(native_path \"$JAVACMD\")\" -cp \"$(native_path \"$TMP_DOWNLOAD_DIR\")\" Downloader \"$distributionUrl\" \"$(native_path \"$targetZip\")\"\nfi\n\n# If specified, validate the SHA-256 sum of the Maven distribution zip file\nif [ -n \"${distributionSha256Sum-}\" ]; then\n  distributionSha256Result=false\n  if [ \"$MVN_CMD\" = mvnd.sh ]; then\n    echo \"Checksum validation is not supported for maven-mvnd.\" >&2\n    echo \"Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties.\" >&2\n    exit 1\n  elif command -v sha256sum >/dev/null; then\n    if echo \"$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName\" | sha256sum -c >/dev/null 2>&1; then\n      distributionSha256Result=true\n    fi\n  elif command -v shasum >/dev/null; then\n    if echo \"$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName\" | shasum -a 256 -c >/dev/null 2>&1; then\n      distributionSha256Result=true\n    fi\n  else\n    echo \"Checksum validation was requested but neither 'sha256sum' or 'shasum' are available.\" >&2\n    echo \"Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties.\" >&2\n    exit 1\n  fi\n  if [ $distributionSha256Result = false ]; then\n    echo \"Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised.\" >&2\n    echo \"If you updated your Maven version, you need to update the specified distributionSha256Sum property.\" >&2\n    exit 1\n  fi\nfi\n\n# unzip and move\nif command -v unzip >/dev/null; then\n  unzip ${__MVNW_QUIET_UNZIP:+\"$__MVNW_QUIET_UNZIP\"} \"$TMP_DOWNLOAD_DIR/$distributionUrlName\" -d \"$TMP_DOWNLOAD_DIR\" || die \"failed to unzip\"\nelse\n  tar xzf${__MVNW_QUIET_TAR:+\"$__MVNW_QUIET_TAR\"} \"$TMP_DOWNLOAD_DIR/$distributionUrlName\" -C \"$TMP_DOWNLOAD_DIR\" || die \"failed to untar\"\nfi\nprintf %s\\\\n \"$distributionUrl\" >\"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url\"\nmv -- \"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain\" \"$MAVEN_HOME\" || [ -d \"$MAVEN_HOME\" ] || die \"fail to move MAVEN_HOME\"\n\nclean || :\nexec_maven \"$@\"\n"
  },
  {
    "path": "notice.md",
    "content": "Snappy Copyright Notices \n=========================\n\n* Copyright 2011 Dain Sundstrom <dain@iq80.com>\n* Copyright 2011, Google Inc.<opensource@google.com>\n\n\nSnappy License\n===============\nCopyright 2011, Google Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n    * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n    * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n\n    <modelVersion>4.0.0</modelVersion>\n\n    <parent>\n        <groupId>io.airlift</groupId>\n        <artifactId>airbase</artifactId>\n        <version>349</version>\n    </parent>\n\n    <groupId>io.airlift</groupId>\n    <artifactId>aircompressor-v3</artifactId>\n    <version>3.7-SNAPSHOT</version>\n    <packaging>jar</packaging>\n\n    <name>aircompressor</name>\n\n    <description>Compression algorithms</description>\n    <url>https://github.com/airlift/aircompressor</url>\n\n    <inceptionYear>2011</inceptionYear>\n\n    <licenses>\n        <license>\n            <name>Apache License 2.0</name>\n            <url>https://www.apache.org/licenses/LICENSE-2.0.html</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n\n    <scm>\n        <connection>scm:git:git://github.com/airlift/aircompressor.git</connection>\n        <developerConnection>scm:git:git@github.com:airlift/aircompressor.git</developerConnection>\n        <tag>HEAD</tag>\n        <url>https://github.com/airlift/aircompressor/tree/master</url>\n    </scm>\n\n    <distributionManagement>\n        <repository>\n            <id>sonatype-central-portal</id>\n            <name>Sonatype Central Portal</name>\n            <url>https://central.sonatype.com/repository/maven/</url>\n        </repository>\n        <snapshotRepository>\n            <id>sonatype-central-portal</id>\n            <name>Sonatype Central Portal</name>\n            <url>https://central.sonatype.com/repository/maven-snapshots/</url>\n        </snapshotRepository>\n    </distributionManagement>\n\n    <properties>\n        <air.java.version>25</air.java.version>\n        <project.build.targetJdk>25</project.build.targetJdk>\n        <air.check.skip-extended>true</air.check.skip-extended>\n        <air.check.skip-license>false</air.check.skip-license>\n        <air.check.fail-checkstyle>true</air.check.fail-checkstyle>\n        <air.check.skip-checkstyle>false</air.check.skip-checkstyle>\n\n        <air.test.parallel>methods</air.test.parallel>\n        <air.test.thread-count>4</air.test.thread-count>\n        <air.test.jvmsize>2G</air.test.jvmsize>\n\n        <!-- do not run tests on release -->\n        <air.release.preparation-goals>clean verify -DskipTests</air.release.preparation-goals>\n    </properties>\n\n    <dependencies>\n        <dependency>\n            <groupId>io.trino.hadoop</groupId>\n            <artifactId>hadoop-apache</artifactId>\n            <version>3.3.5-3</version>\n            <scope>provided</scope>\n        </dependency>\n        <dependency>\n            <groupId>com.github.luben</groupId>\n            <artifactId>zstd-jni</artifactId>\n            <version>1.5.6-6</version>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>com.google.guava</groupId>\n            <artifactId>guava</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>com.google.inject</groupId>\n            <artifactId>guice</artifactId>\n            <classifier>classes</classifier>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.anarres.lzo</groupId>\n            <artifactId>lzo-hadoop</artifactId>\n            <version>1.0.6</version>\n            <scope>test</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>com.google.code.findbugs</groupId>\n                    <artifactId>annotations</artifactId>\n                </exclusion>\n                <exclusion>\n                    <groupId>com.google.code.findbugs</groupId>\n                    <artifactId>jsr305</artifactId>\n                </exclusion>\n                <exclusion>\n                    <groupId>org.apache.hadoop</groupId>\n                    <artifactId>hadoop-core</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>org.assertj</groupId>\n            <artifactId>assertj-core</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.junit.jupiter</groupId>\n            <artifactId>junit-jupiter-api</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.junit.jupiter</groupId>\n            <artifactId>junit-jupiter-engine</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.lz4</groupId>\n            <artifactId>lz4-java</artifactId>\n            <version>1.8.0</version>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.openjdk.jmh</groupId>\n            <artifactId>jmh-core</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.openjdk.jmh</groupId>\n            <artifactId>jmh-generator-annprocess</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.xerial.snappy</groupId>\n            <artifactId>snappy-java</artifactId>\n            <version>1.1.10.7</version>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n\n    <build>\n        <pluginManagement>\n            <plugins>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-compiler-plugin</artifactId>\n                    <configuration>\n                        <target>${project.build.targetJdk}</target>\n                        <release combine.self=\"override\" />\n                        <annotationProcessorPaths>\n                            <path>\n                                <groupId>org.openjdk.jmh</groupId>\n                                <artifactId>jmh-generator-annprocess</artifactId>\n                                <version>${dep.jmh.version}</version>\n                            </path>\n                        </annotationProcessorPaths>\n                    </configuration>\n                </plugin>\n            </plugins>\n        </pluginManagement>\n    </build>\n</project>\n"
  },
  {
    "path": "src/checkstyle/checks.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE module PUBLIC\n        \"-//Puppy Crawl//DTD Check Configuration 1.3//EN\"\n        \"http://www.puppycrawl.com/dtds/configuration_1_3.dtd\">\n<module name=\"Checker\">\n    <module name=\"FileTabCharacter\"/>\n    <module name=\"NewlineAtEndOfFile\">\n        <property name=\"lineSeparator\" value=\"lf\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\"\\r\"/>\n        <property name=\"message\" value=\"Line contains carriage return\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\" \\n\"/>\n        <property name=\"message\" value=\"Line has trailing whitespace\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\"\\{\\n\\n\"/>\n        <property name=\"message\" value=\"Blank line after opening brace\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\"\\n\\n\\}\"/>\n        <property name=\"message\" value=\"Blank line before closing brace\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\"\\n\\n\\n\"/>\n        <property name=\"message\" value=\"Multiple consecutive blank lines\"/>\n    </module>\n    <module name=\"RegexpMultiline\">\n        <property name=\"format\" value=\"\\n\\n\\Z\"/>\n        <property name=\"message\" value=\"Blank line before end of file\"/>\n    </module>\n\n    <module name=\"TreeWalker\">\n        <module name=\"EmptyBlock\">\n            <property name=\"option\" value=\"text\"/>\n            <property name=\"tokens\" value=\"\n                LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_IF,\n                LITERAL_FOR, LITERAL_TRY, LITERAL_WHILE, INSTANCE_INIT, STATIC_INIT\"/>\n        </module>\n        <module name=\"EmptyStatement\"/>\n        <module name=\"EmptyForInitializerPad\"/>\n        <module name=\"EmptyForIteratorPad\">\n            <property name=\"option\" value=\"space\"/>\n        </module>\n        <module name=\"MethodParamPad\">\n            <property name=\"allowLineBreaks\" value=\"true\"/>\n            <property name=\"option\" value=\"nospace\"/>\n        </module>\n        <module name=\"ParenPad\"/>\n        <module name=\"TypecastParenPad\"/>\n        <module name=\"NeedBraces\"/>\n        <module name=\"LeftCurly\">\n            <property name=\"option\" value=\"nl\"/>\n            <property name=\"tokens\" value=\"CLASS_DEF, CTOR_DEF, INTERFACE_DEF, METHOD_DEF\"/>\n        </module>\n        <module name=\"LeftCurly\">\n            <property name=\"option\" value=\"eol\"/>\n            <property name=\"tokens\" value=\"\n                 LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR,\n                 LITERAL_IF, LITERAL_SWITCH, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE\"/>\n        </module>\n        <module name=\"RightCurly\">\n            <property name=\"option\" value=\"alone\"/>\n        </module>\n        <module name=\"GenericWhitespace\"/>\n        <module name=\"WhitespaceAfter\"/>\n        <module name=\"NoWhitespaceBefore\"/>\n\n        <module name=\"UpperEll\"/>\n        <module name=\"DefaultComesLast\"/>\n        <module name=\"ArrayTypeStyle\"/>\n        <module name=\"MultipleVariableDeclarations\"/>\n        <module name=\"ModifierOrder\"/>\n        <module name=\"OneStatementPerLine\"/>\n        <module name=\"StringLiteralEquality\"/>\n        <module name=\"MutableException\"/>\n        <module name=\"EqualsHashCode\"/>\n        <!-- LZO and CRC 32 use inner assignments -->\n        <!--<module name=\"InnerAssignment\"/>-->\n        <module name=\"InterfaceIsType\"/>\n        <module name=\"HideUtilityClassConstructor\"/>\n\n        <module name=\"MemberName\"/>\n        <module name=\"LocalVariableName\"/>\n        <module name=\"LocalFinalVariableName\"/>\n        <module name=\"TypeName\"/>\n        <module name=\"PackageName\"/>\n        <module name=\"ParameterName\"/>\n        <module name=\"StaticVariableName\"/>\n        <module name=\"ClassTypeParameterName\">\n            <property name=\"format\" value=\"^[A-Z][0-9]?$\"/>\n        </module>\n        <module name=\"MethodTypeParameterName\">\n            <property name=\"format\" value=\"^[A-Z][0-9]?$\"/>\n        </module>\n\n        <module name=\"AvoidStarImport\"/>\n        <module name=\"RedundantImport\"/>\n        <module name=\"UnusedImports\"/>\n\n        <module name=\"WhitespaceAround\">\n            <property name=\"allowEmptyConstructors\" value=\"true\"/>\n            <property name=\"allowEmptyMethods\" value=\"true\"/>\n            <property name=\"ignoreEnhancedForColon\" value=\"false\"/>\n            <property name=\"tokens\" value=\"\n                ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN,\n                BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE,\n                LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,\n                LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,\n                LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE,\n                LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL,\n                PLUS, PLUS_ASSIGN, QUESTION, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN,\n                STAR, STAR_ASSIGN, TYPE_EXTENSION_AND\"/>\n        </module>\n    </module>\n</module>\n"
  },
  {
    "path": "src/license/LICENSE-HEADER.txt",
    "content": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/Compressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport java.lang.foreign.MemorySegment;\n\npublic interface Compressor\n{\n    int maxCompressedLength(int uncompressedSize);\n\n    /**\n     * @return number of bytes written to the output\n     */\n    int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength);\n\n    /**\n     * @return number of bytes written to the output\n     */\n    int compress(MemorySegment input, MemorySegment output);\n\n    default int getRetainedSizeInBytes(int inputLength)\n    {\n        return 0;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/Decompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport java.lang.foreign.MemorySegment;\n\npublic interface Decompressor\n{\n    /**\n     * @return number of bytes written to the output\n     */\n    int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException;\n\n    /**\n     * @return number of bytes written to the output\n     */\n    int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException;\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/IncompatibleJvmException.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\npublic class IncompatibleJvmException\n        extends RuntimeException\n{\n    public IncompatibleJvmException(String message)\n    {\n        super(message);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/MalformedInputException.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\npublic class MalformedInputException\n        extends RuntimeException\n{\n    private final long offset;\n\n    public MalformedInputException(long offset)\n    {\n        this(offset, \"Malformed input\");\n    }\n\n    public MalformedInputException(long offset, String reason)\n    {\n        super(reason + \": offset=\" + offset);\n        this.offset = offset;\n    }\n\n    public long getOffset()\n    {\n        return offset;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/BZip2Codec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\n\npublic class BZip2Codec\n        extends CodecAdapter\n{\n    public BZip2Codec()\n    {\n        super(configuration -> new BZip2HadoopStreams());\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/BZip2Constants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n/*\n * This package is based on the work done by Keiron Liddle, Aftex Software\n * <keiron@aftexsw.com> to whom the Ant project is very grateful for his\n * great code.\n */\npackage io.airlift.compress.v3.bzip2;\n\n/**\n * Base class for both the compress and decompress classes. Holds common arrays,\n * and static data.\n * <p>\n * This interface is public for historical purposes. You should have no need to\n * use it.\n * </p>\n */\n// forked from Apache Hadoop\nfinal class BZip2Constants\n{\n    public static final int BASE_BLOCK_SIZE = 100000;\n    public static final int MAX_ALPHA_SIZE = 258;\n    public static final int RUN_A = 0;\n    public static final int RUN_B = 1;\n    public static final int N_GROUPS = 6;\n    public static final int G_SIZE = 50;\n    public static final int MAX_SELECTORS = (2 + (900000 / G_SIZE));\n\n    private BZip2Constants() {}\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/BZip2HadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.BufferedInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\n\n// forked from Apache Hadoop\nclass BZip2HadoopInputStream\n        extends HadoopInputStream\n{\n    private final BufferedInputStream bufferedIn;\n    private CBZip2InputStream input;\n\n    public BZip2HadoopInputStream(InputStream in)\n    {\n        bufferedIn = new BufferedInputStream(in);\n    }\n\n    @Override\n    public int read(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        if (length == 0) {\n            return 0;\n        }\n\n        if (input == null) {\n            // If the stream starts with `BZ`, skip it\n            bufferedIn.mark(2);\n            if (bufferedIn.read() != 'B' || bufferedIn.read() != 'Z') {\n                bufferedIn.reset();\n            }\n            input = new CBZip2InputStream(bufferedIn);\n        }\n\n        int result = input.read(buffer, offset, length);\n\n        // if the result is the end of block marker, no data was read\n        if (result == CBZip2InputStream.END_OF_BLOCK) {\n            // read one byte into the new block and update the position.\n            result = input.read(buffer, offset, 1);\n        }\n\n        return result;\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        byte[] buffer = new byte[1];\n        int result = read(buffer, 0, 1);\n        if (result < 0) {\n            return result;\n        }\n        return buffer[0] & 0xff;\n    }\n\n    @Override\n    public void resetState()\n    {\n        // drop the current compression stream, and new one will be created during the next read\n        input = null;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        input = null;\n        bufferedIn.close();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/BZip2HadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static java.util.Objects.requireNonNull;\n\n// forked from Apache Hadoop\nclass BZip2HadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final OutputStream rawOutput;\n    private boolean initialized;\n    private CBZip2OutputStream output;\n\n    public BZip2HadoopOutputStream(OutputStream out)\n    {\n        this.rawOutput = requireNonNull(out, \"out is null\");\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        openStreamIfNecessary();\n        output.write(b);\n    }\n\n    @Override\n    public void write(byte[] b, int off, int len)\n            throws IOException\n    {\n        openStreamIfNecessary();\n        output.write(b, off, len);\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (output != null) {\n            output.finish();\n            output = null;\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        rawOutput.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            // it the stream has never been initialized, create an empty block\n            if (!initialized) {\n                openStreamIfNecessary();\n            }\n            finish();\n        }\n        finally {\n            rawOutput.close();\n        }\n    }\n\n    private void openStreamIfNecessary()\n            throws IOException\n    {\n        if (output == null) {\n            initialized = true;\n            // write magic\n            rawOutput.write(new byte[] {'B', 'Z'});\n            // open new block\n            output = new CBZip2OutputStream(rawOutput);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/BZip2HadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class BZip2HadoopStreams\n        implements HadoopStreams\n{\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".bz2\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.BZip2Codec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n    {\n        return new BZip2HadoopInputStream(in);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n    {\n        return new BZip2HadoopOutputStream(out);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/CBZip2InputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n/*\n * This package is based on the work done by Keiron Liddle, Aftex Software\n * <keiron@aftexsw.com> to whom the Ant project is very grateful for his\n * great code.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport java.io.BufferedInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.G_SIZE;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.MAX_ALPHA_SIZE;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.MAX_SELECTORS;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.N_GROUPS;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.RUN_A;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.RUN_B;\n\n/**\n * An input stream that decompresses from the BZip2 format (without the file\n * header chars) to be read as any other stream.\n *\n * <p>\n * The decompression requires large amounts of memory. Thus you should call the\n * {@link #close() close()} method as soon as possible, to force\n * <tt>CBZip2InputStream</tt> to release the allocated memory. See\n * {@link CBZip2OutputStream CBZip2OutputStream} for information about memory\n * usage.\n * </p>\n *\n * <p>\n * <tt>CBZip2InputStream</tt> reads bytes from the compressed source stream via\n * the single byte {@link InputStream#read() read()} method exclusively.\n * Thus you should consider to use a buffered source stream.\n * </p>\n *\n * <p>\n * This Ant code was enhanced so that it can de-compress blocks of bzip2 data.\n * Current position in the stream is an important statistic for Hadoop. For\n * example in LineRecordReader, we solely depend on the current position in the\n * stream to know about the progress. The notion of position becomes complicated\n * for compressed files. The Hadoop splitting is done in terms of compressed\n * file. But a compressed file deflates to a large amount of data. So we have\n * handled this problem in the following way.\n * <p>\n * On object creation time, we find the next block start delimiter. Once such a\n * marker is found, the stream stops there (we discard any read compressed data\n * in this process) and the position is reported as the beginning of the block\n * start delimiter. At this point we are ready for actual reading\n * (i.e. decompression) of data.\n * <p>\n * The subsequent read calls give out data. The position is updated when the\n * caller of this class has read off the current block + 1 bytes. In between the\n * block reading, position is not updated. (We can only update the position on\n * block boundaries).\n * </p>\n *\n * <p>\n * Instances of this class are not thread safe.\n * </p>\n */\n@SuppressWarnings({ \"AssignmentToForLoopParameter\", \"SpellCheckingInspection\"})\nclass CBZip2InputStream\n        extends InputStream\n{\n    // start of block\n    private static final long BLOCK_DELIMITER = 0X314159265359L;\n    private static final int MAX_CODE_LEN = 23;\n    /**\n     * End of a BZip2 block\n     */\n    public static final int END_OF_BLOCK = -2;\n    /**\n     * End of BZip2 stream.\n     */\n    private static final int END_OF_STREAM = -1;\n    private static final int DELIMITER_BIT_LENGTH = 48;\n\n    // The variable records the current advertised position of the stream.\n    private long reportedBytesReadFromCompressedStream;\n    // The following variable keep record of compressed bytes read.\n    private long bytesReadFromCompressedStream;\n    private boolean initialized;\n\n    private final byte[] array = new byte[1];\n\n    /**\n     * Index of the last char in the block, so the block size == last + 1.\n     */\n    private int last;\n\n    /**\n     * Index in zptr[] of original string after sorting.\n     */\n    private int origPtr;\n\n    /**\n     * always: in the range 0 .. 9. The current block size is 100000 * this\n     * number.\n     */\n    private int blockSize100k;\n\n    private boolean blockRandomised;\n\n    private long bsBuff;\n    private long bsLive;\n    private final Crc32 crc32 = new Crc32();\n\n    private int nInUse;\n\n    private BufferedInputStream in;\n\n    private int currentChar = -1;\n\n    /**\n     * A state machine to keep track of current state of the de-coder\n     */\n    public enum STATE\n    {\n        EOF, START_BLOCK_STATE, RAND_PART_A_STATE, RAND_PART_B_STATE, RAND_PART_C_STATE, NO_RAND_PART_A_STATE, NO_RAND_PART_B_STATE, NO_RAND_PART_C_STATE, NO_PROCESS_STATE\n    }\n\n    private STATE currentState = STATE.START_BLOCK_STATE;\n\n    private int storedBlockCRC;\n    private int storedCombinedCRC;\n    private int computedCombinedCRC;\n\n    // used by skipToNextMarker\n    private boolean skipResult;\n\n    // Variables used by setup* methods exclusively\n\n    private int suCount;\n    private int suCh2;\n    private int suChPrev;\n    private int suI2;\n    private int suJ2;\n    private int suRNToGo;\n    private int suRTPos;\n    private int suTPos;\n    private char suZ;\n\n    /**\n     * All memory intensive stuff. This field is initialized by initBlock().\n     */\n    private Data data;\n\n    /**\n     * Constructs a new CBZip2InputStream which decompresses bytes read from the\n     * specified stream.\n     *\n     * <p>\n     * Although BZip2 headers are marked with the magic <tt>\"Bz\"</tt> this\n     * constructor expects the next byte in the stream to be the first one after\n     * the magic. Thus callers have to skip the first two bytes. Otherwise this\n     * constructor will throw an exception.\n     * </p>\n     *\n     * @throws IOException if the stream content is malformed or an I/O error occurs.\n     * @throws NullPointerException if <tt>in == null</tt>\n     */\n    public CBZip2InputStream(final InputStream in)\n    {\n        int blockSize = 0X39; // i.e 9\n        this.blockSize100k = blockSize - (int) '0';\n        this.in = new BufferedInputStream(in, 1024 * 9); // >1 MB buffer\n    }\n\n    /**\n     * This method reports the processed bytes so far. Please note that this\n     * statistic is only updated on block boundaries and only when the stream is\n     * initiated in BYBLOCK mode.\n     */\n    public long getProcessedByteCount()\n    {\n        return reportedBytesReadFromCompressedStream;\n    }\n\n    /**\n     * This method keeps track of raw processed compressed\n     * bytes.\n     *\n     * @param count count is the number of bytes to be\n     * added to raw processed bytes\n     */\n    private void updateProcessedByteCount(int count)\n    {\n        this.bytesReadFromCompressedStream += count;\n    }\n\n    /**\n     * This method reads a Byte from the compressed stream. Whenever we need to\n     * read from the underlying compressed stream, this method should be called\n     * instead of directly calling the read method of the underlying compressed\n     * stream. This method does important record keeping to have the statistic\n     * that how many bytes have been read off the compressed stream.\n     */\n    private int readAByte(InputStream inStream)\n            throws IOException\n    {\n        int read = inStream.read();\n        if (read >= 0) {\n            this.updateProcessedByteCount(1);\n        }\n        return read;\n    }\n\n    /**\n     * This method tries to find the marker (passed to it as the first parameter)\n     * in the stream.  It can find bit patterns of length <= 63 bits.  Specifically\n     * this method is used in CBZip2InputStream to find the end of block (EOB)\n     * delimiter in the stream, starting from the current position of the stream.\n     * If marker is found, the stream position will be at the byte containing\n     * the starting bit of the marker.\n     *\n     * @param marker The bit pattern to be found in the stream\n     * @param markerBitLength No of bits in the marker\n     * @return true if the marker was found otherwise false\n     * @throws IllegalArgumentException if marketBitLength is greater than 63\n     */\n    private boolean skipToNextMarker(long marker, int markerBitLength)\n            throws IllegalArgumentException\n    {\n        try {\n            if (markerBitLength > 63) {\n                throw new IllegalArgumentException(\n                        \"skipToNextMarker can not find patterns greater than 63 bits\");\n            }\n            // pick next marketBitLength bits in the stream\n            long bytes;\n            bytes = this.bsR(markerBitLength);\n            if (bytes == -1) {\n                this.reportedBytesReadFromCompressedStream =\n                        this.bytesReadFromCompressedStream;\n                return false;\n            }\n            while (true) {\n                if (bytes == marker) {\n                    // Report the byte position where the marker starts\n                    long markerBytesRead = (markerBitLength + this.bsLive + 7) / 8;\n                    this.reportedBytesReadFromCompressedStream =\n                            this.bytesReadFromCompressedStream - markerBytesRead;\n                    return true;\n                }\n                else {\n                    bytes = bytes << 1;\n                    bytes = bytes & ((1L << markerBitLength) - 1);\n                    int oneBit = (int) this.bsR(1);\n                    if (oneBit != -1) {\n                        bytes = bytes | oneBit;\n                    }\n                    else {\n                        this.reportedBytesReadFromCompressedStream =\n                                this.bytesReadFromCompressedStream;\n                        return false;\n                    }\n                }\n            }\n        }\n        catch (IOException ex) {\n            this.reportedBytesReadFromCompressedStream =\n                    this.bytesReadFromCompressedStream;\n            return false;\n        }\n    }\n\n    private void makeMaps()\n    {\n        final boolean[] inUse = this.data.inUse;\n        final byte[] seqToUnseq = this.data.seqToUnseq;\n\n        int nInUseShadow = 0;\n\n        for (int i = 0; i < 256; i++) {\n            if (inUse[i]) {\n                seqToUnseq[nInUseShadow++] = (byte) i;\n            }\n        }\n\n        this.nInUse = nInUseShadow;\n    }\n\n    private void changeStateToProcessABlock()\n            throws IOException\n    {\n        if (skipResult) {\n            initBlock();\n            setupBlock();\n        }\n        else {\n            this.currentState = STATE.EOF;\n        }\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        if (this.in != null) {\n            int result = this.read(array, 0, 1);\n            int value = 0XFF & array[0];\n            return (result > 0 ? value : result);\n        }\n        else {\n            throw new IOException(\"stream closed\");\n        }\n    }\n\n    /**\n     * In CONTINOUS reading mode, this read method starts from the\n     * start of the compressed stream and end at the end of file by\n     * emitting un-compressed data.  In this mode stream positioning\n     * is not announced and should be ignored.\n     * <p>\n     * In BYBLOCK reading mode, this read method informs about the end\n     * of a BZip2 block by returning EOB.  At this event, the compressed\n     * stream position is also announced.  This announcement tells that\n     * how much of the compressed stream has been de-compressed and read\n     * out of this class.  In between EOB events, the stream position is\n     * not updated.\n     *\n     * @return int The return value greater than 0 are the bytes read.  A value\n     * of -1 means end of stream while -2 represents end of block\n     * @throws IOException if the stream content is malformed or an I/O error occurs.\n     */\n    @Override\n    public int read(final byte[] dest, final int offs, final int len)\n            throws IOException\n    {\n        if (offs < 0) {\n            throw new IndexOutOfBoundsException(\"offs(\" + offs + \") < 0.\");\n        }\n        if (len < 0) {\n            throw new IndexOutOfBoundsException(\"len(\" + len + \") < 0.\");\n        }\n        if (offs + len > dest.length) {\n            throw new IndexOutOfBoundsException(\"offs(\" + offs + \") + len(\"\n                    + len + \") > dest.length(\" + dest.length + \").\");\n        }\n        if (this.in == null) {\n            throw new IOException(\"stream closed\");\n        }\n\n        if (!initialized) {\n            this.init();\n            this.initialized = true;\n        }\n\n        final int hi = offs + len;\n        int destOffs = offs;\n        int b = 0;\n\n        while (((destOffs < hi) && ((b = read0())) >= 0)) {\n            dest[destOffs++] = (byte) b;\n        }\n\n        int result = destOffs - offs;\n        if (result == 0) {\n            //report 'end of block' or 'end of stream'\n            result = b;\n\n            skipResult = this.skipToNextMarker(BLOCK_DELIMITER, DELIMITER_BIT_LENGTH);\n\n            changeStateToProcessABlock();\n        }\n        return result;\n    }\n\n    private int read0()\n            throws IOException\n    {\n        final int retChar = this.currentChar;\n\n        switch (this.currentState) {\n            case EOF:\n                return END_OF_STREAM; // return -1\n\n            case NO_PROCESS_STATE:\n                return END_OF_BLOCK; // return -2\n\n            case START_BLOCK_STATE:\n                throw new IllegalStateException();\n\n            case RAND_PART_A_STATE:\n                throw new IllegalStateException();\n\n            case RAND_PART_B_STATE:\n                setupRandPartB();\n                break;\n\n            case RAND_PART_C_STATE:\n                setupRandPartC();\n                break;\n\n            case NO_RAND_PART_A_STATE:\n                throw new IllegalStateException();\n\n            case NO_RAND_PART_B_STATE:\n                setupNoRandPartB();\n                break;\n\n            case NO_RAND_PART_C_STATE:\n                setupNoRandPartC();\n                break;\n\n            default:\n                throw new IllegalStateException();\n        }\n\n        return retChar;\n    }\n\n    private void init()\n            throws IOException\n    {\n        int magic2 = this.readAByte(in);\n        if (magic2 != 'h') {\n            throw new IOException(\"Stream is not BZip2 formatted: expected 'h'\"\n                    + \" as first byte but got '\" + (char) magic2 + \"'\");\n        }\n\n        int blockSize = this.readAByte(in);\n        if ((blockSize < '1') || (blockSize > '9')) {\n            throw new IOException(\"Stream is not BZip2 formatted: illegal \"\n                    + \"blocksize \" + (char) blockSize);\n        }\n\n        this.blockSize100k = blockSize - (int) '0';\n\n        initBlock();\n        setupBlock();\n    }\n\n    private void initBlock()\n            throws IOException\n    {\n        char magic0 = bsGetUByte();\n        char magic1 = bsGetUByte();\n        char magic2 = bsGetUByte();\n        char magic3 = bsGetUByte();\n        char magic4 = bsGetUByte();\n        char magic5 = bsGetUByte();\n\n        if (magic0 == 0x17 && magic1 == 0x72 && magic2 == 0x45\n                && magic3 == 0x38 && magic4 == 0x50 && magic5 == 0x90) {\n            complete(); // end of file\n        }\n        else if (magic0 != 0x31 || // '1'\n                magic1 != 0x41 || // ')'\n                magic2 != 0x59 || // 'Y'\n                magic3 != 0x26 || // '&'\n                magic4 != 0x53 || // 'S'\n                magic5 != 0x59 /* 'Y' */) {\n            this.currentState = STATE.EOF;\n            throw new IOException(\"bad block header\");\n        }\n        else {\n            this.storedBlockCRC = bsGetInt();\n            this.blockRandomised = bsR(1) == 1;\n\n            // Allocate data here instead in constructor, so we do not allocate\n            // it if the input file is empty.\n            if (this.data == null) {\n                this.data = new Data(this.blockSize100k);\n            }\n\n            // currBlockNo++;\n            getAndMoveToFrontDecode();\n\n            this.crc32.initialiseCRC();\n            this.currentState = STATE.START_BLOCK_STATE;\n        }\n    }\n\n    private void endBlock()\n            throws IOException\n    {\n        int computedBlockCRC = this.crc32.getFinalCRC();\n\n        // A bad CRC is considered a fatal error.\n        if (this.storedBlockCRC != computedBlockCRC) {\n            // make next blocks readable without error\n            // (repair feature, not yet documented, not tested)\n            this.computedCombinedCRC = (this.storedCombinedCRC << 1)\n                    | (this.storedCombinedCRC >>> 31);\n            this.computedCombinedCRC ^= this.storedBlockCRC;\n\n            throw new IOException(\"crc error\");\n        }\n\n        this.computedCombinedCRC = (this.computedCombinedCRC << 1)\n                | (this.computedCombinedCRC >>> 31);\n        this.computedCombinedCRC ^= computedBlockCRC;\n    }\n\n    private void complete()\n            throws IOException\n    {\n        this.storedCombinedCRC = bsGetInt();\n        this.currentState = STATE.EOF;\n        this.data = null;\n\n        if (this.storedCombinedCRC != this.computedCombinedCRC) {\n            throw new IOException(\"crc error\");\n        }\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        InputStream inShadow = this.in;\n        if (inShadow != null) {\n            try {\n                if (inShadow != System.in) {\n                    inShadow.close();\n                }\n            }\n            finally {\n                this.data = null;\n                this.in = null;\n            }\n        }\n    }\n\n    private long bsR(final long n)\n            throws IOException\n    {\n        long bsLiveShadow = this.bsLive;\n        long bsBuffShadow = this.bsBuff;\n\n        if (bsLiveShadow < n) {\n            final InputStream inShadow = this.in;\n            do {\n                int thech = readAByte(inShadow);\n\n                if (thech < 0) {\n                    throw new IOException(\"unexpected end of stream\");\n                }\n\n                bsBuffShadow = (bsBuffShadow << 8) | thech;\n                bsLiveShadow += 8;\n            } while (bsLiveShadow < n);\n\n            this.bsBuff = bsBuffShadow;\n        }\n\n        this.bsLive = bsLiveShadow - n;\n        return (bsBuffShadow >> (bsLiveShadow - n)) & ((1L << n) - 1);\n    }\n\n    private boolean bsGetBit()\n            throws IOException\n    {\n        long bsLiveShadow = this.bsLive;\n        long bsBuffShadow = this.bsBuff;\n\n        if (bsLiveShadow < 1) {\n            int thech = this.readAByte(in);\n\n            if (thech < 0) {\n                throw new IOException(\"unexpected end of stream\");\n            }\n\n            bsBuffShadow = (bsBuffShadow << 8) | thech;\n            bsLiveShadow += 8;\n            this.bsBuff = bsBuffShadow;\n        }\n\n        this.bsLive = bsLiveShadow - 1;\n        return ((bsBuffShadow >> (bsLiveShadow - 1)) & 1) != 0;\n    }\n\n    private char bsGetUByte()\n            throws IOException\n    {\n        return (char) bsR(8);\n    }\n\n    private int bsGetInt()\n            throws IOException\n    {\n        return (int) ((((((bsR(8) << 8) | bsR(8)) << 8) | bsR(8)) << 8) | bsR(8));\n    }\n\n    /**\n     * Called by createHuffmanDecodingTables() exclusively.\n     */\n    private static void hbCreateDecodeTables(final int[] limit,\n            final int[] base, final int[] perm, final char[] length,\n            final int minLen, final int maxLen, final int alphaSize)\n    {\n        for (int i = minLen, pp = 0; i <= maxLen; i++) {\n            for (int j = 0; j < alphaSize; j++) {\n                if (length[j] == i) {\n                    perm[pp++] = j;\n                }\n            }\n        }\n\n        for (int i = MAX_CODE_LEN; --i > 0; ) {\n            base[i] = 0;\n            limit[i] = 0;\n        }\n\n        for (int i = 0; i < alphaSize; i++) {\n            base[(int) length[i] + 1]++;\n        }\n\n        for (int i = 1, b = base[0]; i < MAX_CODE_LEN; i++) {\n            b += base[i];\n            base[i] = b;\n        }\n\n        for (int i = minLen, vec = 0, b = base[i]; i <= maxLen; i++) {\n            final int nb = base[i + 1];\n            vec += nb - b;\n            b = nb;\n            limit[i] = vec - 1;\n            vec <<= 1;\n        }\n\n        for (int i = minLen + 1; i <= maxLen; i++) {\n            base[i] = ((limit[i - 1] + 1) << 1) - base[i];\n        }\n    }\n\n    private void recvDecodingTables()\n            throws IOException\n    {\n        final Data dataShadow = this.data;\n        final boolean[] inUse = dataShadow.inUse;\n        final byte[] pos = dataShadow.recvDecodingTablesPos;\n        final byte[] selector = dataShadow.selector;\n        final byte[] selectorMtf = dataShadow.selectorMtf;\n\n        int inUse16 = 0;\n\n        /* Receive the mapping table */\n        for (int i = 0; i < 16; i++) {\n            if (bsGetBit()) {\n                inUse16 |= 1 << i;\n            }\n        }\n\n        for (int i = 256; --i >= 0; ) {\n            inUse[i] = false;\n        }\n\n        for (int i = 0; i < 16; i++) {\n            if ((inUse16 & (1 << i)) != 0) {\n                final int i16 = i << 4;\n                for (int j = 0; j < 16; j++) {\n                    if (bsGetBit()) {\n                        inUse[i16 + j] = true;\n                    }\n                }\n            }\n        }\n\n        makeMaps();\n        final int alphaSize = this.nInUse + 2;\n\n        /* Now the selectors */\n        final int nGroups = (int) bsR(3);\n        final int nSelectors = (int) bsR(15);\n\n        for (int i = 0; i < nSelectors; i++) {\n            int j = 0;\n            while (bsGetBit()) {\n                j++;\n            }\n            selectorMtf[i] = (byte) j;\n        }\n\n        /* Undo the MTF values for the selectors. */\n        for (int v = nGroups; --v >= 0; ) {\n            pos[v] = (byte) v;\n        }\n\n        for (int i = 0; i < nSelectors; i++) {\n            int v = selectorMtf[i] & 0xff;\n            final byte tmp = pos[v];\n            while (v > 0) {\n                // nearly all times v is zero, 4 in most other cases\n                pos[v] = pos[v - 1];\n                v--;\n            }\n            pos[0] = tmp;\n            selector[i] = tmp;\n        }\n\n        final char[][] len = dataShadow.tempCharArray2D;\n\n        /* Now the coding tables */\n        for (int t = 0; t < nGroups; t++) {\n            int curr = (int) bsR(5);\n            final char[] lenT = len[t];\n            for (int i = 0; i < alphaSize; i++) {\n                while (bsGetBit()) {\n                    curr += bsGetBit() ? -1 : 1;\n                }\n                lenT[i] = (char) curr;\n            }\n        }\n\n        // finally create the Huffman tables\n        createHuffmanDecodingTables(alphaSize, nGroups);\n    }\n\n    /**\n     * Called by recvDecodingTables() exclusively.\n     */\n    private void createHuffmanDecodingTables(final int alphaSize,\n            final int nGroups)\n    {\n        final Data dataShadow = this.data;\n        final char[][] len = dataShadow.tempCharArray2D;\n        final int[] minLens = dataShadow.minLens;\n        final int[][] limit = dataShadow.limit;\n        final int[][] base = dataShadow.base;\n        final int[][] perm = dataShadow.perm;\n\n        for (int t = 0; t < nGroups; t++) {\n            int minLen = 32;\n            int maxLen = 0;\n            final char[] lenT = len[t];\n            for (int i = alphaSize; --i >= 0; ) {\n                final char lent = lenT[i];\n                if (lent > maxLen) {\n                    maxLen = lent;\n                }\n                if (lent < minLen) {\n                    minLen = lent;\n                }\n            }\n            hbCreateDecodeTables(limit[t], base[t], perm[t], len[t], minLen,\n                    maxLen, alphaSize);\n            minLens[t] = minLen;\n        }\n    }\n\n    private void getAndMoveToFrontDecode()\n            throws IOException\n    {\n        this.origPtr = (int) bsR(24);\n        recvDecodingTables();\n\n        final InputStream inShadow = this.in;\n        final Data dataShadow = this.data;\n        final byte[] ll8 = dataShadow.ll8;\n        final int[] unzftab = dataShadow.unzftab;\n        final byte[] selector = dataShadow.selector;\n        final byte[] seqToUnseq = dataShadow.seqToUnseq;\n        final char[] yy = dataShadow.getAndMoveToFrontDecodeYy;\n        final int[] minLens = dataShadow.minLens;\n        final int[][] limit = dataShadow.limit;\n        final int[][] base = dataShadow.base;\n        final int[][] perm = dataShadow.perm;\n        final int limitLast = this.blockSize100k * 100000;\n\n        /*\n         * Setting up the unzftab entries here is not strictly necessary, but it\n         * does save having to do it later in a separate pass, and so saves a\n         * block's worth of cache misses.\n         */\n        for (int i = 256; --i >= 0; ) {\n            yy[i] = (char) i;\n            unzftab[i] = 0;\n        }\n\n        int groupNo = 0;\n        int groupPos = G_SIZE - 1;\n        final int eob = this.nInUse + 1;\n        int nextSym = getAndMoveToFrontDecode0(0);\n        int bsBuffShadow = (int) this.bsBuff;\n        int bsLiveShadow = (int) this.bsLive;\n        int lastShadow = -1;\n        int zt = selector[groupNo] & 0xff;\n        int[] baseZt = base[zt];\n        int[] limitZt = limit[zt];\n        int[] permZt = perm[zt];\n        int minLensZt = minLens[zt];\n\n        while (nextSym != eob) {\n            if ((nextSym == RUN_A) || (nextSym == RUN_B)) {\n                int s = -1;\n\n                for (int n = 1; true; n <<= 1) {\n                    if (nextSym == RUN_A) {\n                        s += n;\n                    }\n                    else if (nextSym == RUN_B) {\n                        s += n << 1;\n                    }\n                    else {\n                        break;\n                    }\n\n                    if (groupPos == 0) {\n                        groupPos = G_SIZE - 1;\n                        zt = selector[++groupNo] & 0xff;\n                        baseZt = base[zt];\n                        limitZt = limit[zt];\n                        permZt = perm[zt];\n                        minLensZt = minLens[zt];\n                    }\n                    else {\n                        groupPos--;\n                    }\n\n                    int zn = minLensZt;\n\n                    while (bsLiveShadow < zn) {\n                        final int thech = readAByte(inShadow);\n                        if (thech >= 0) {\n                            bsBuffShadow = (bsBuffShadow << 8) | thech;\n                            bsLiveShadow += 8;\n                        }\n                        else {\n                            throw new IOException(\"unexpected end of stream\");\n                        }\n                    }\n                    long zvec = (bsBuffShadow >> (bsLiveShadow - zn)) & ((1L << zn) - 1);\n                    bsLiveShadow -= zn;\n\n                    while (zvec > limitZt[zn]) {\n                        zn++;\n                        while (bsLiveShadow < 1) {\n                            final int thech = readAByte(inShadow);\n                            if (thech >= 0) {\n                                bsBuffShadow = (bsBuffShadow << 8) | thech;\n                                bsLiveShadow += 8;\n                            }\n                            else {\n                                throw new IOException(\"unexpected end of stream\");\n                            }\n                        }\n                        bsLiveShadow--;\n                        zvec = (zvec << 1)\n                                | ((bsBuffShadow >> bsLiveShadow) & 1);\n                    }\n                    nextSym = permZt[(int) (zvec - baseZt[zn])];\n                }\n\n                final byte ch = seqToUnseq[yy[0]];\n                unzftab[ch & 0xff] += s + 1;\n\n                while (s-- >= 0) {\n                    ll8[++lastShadow] = ch;\n                }\n\n                if (lastShadow >= limitLast) {\n                    throw new IOException(\"block overrun\");\n                }\n            }\n            else {\n                if (++lastShadow >= limitLast) {\n                    throw new IOException(\"block overrun\");\n                }\n\n                final char tmp = yy[nextSym - 1];\n                unzftab[seqToUnseq[tmp] & 0xff]++;\n                ll8[lastShadow] = seqToUnseq[tmp];\n\n                /*\n                 * This loop is hammered during decompression, hence avoid\n                 * native method call overhead of System.arraycopy for very\n                 * small ranges to copy.\n                 */\n                if (nextSym <= 16) {\n                    for (int j = nextSym - 1; j > 0; ) {\n                        yy[j] = yy[--j];\n                    }\n                }\n                else {\n                    //noinspection SuspiciousSystemArraycopy\n                    System.arraycopy(yy, 0, yy, 1, nextSym - 1);\n                }\n\n                yy[0] = tmp;\n\n                if (groupPos == 0) {\n                    groupPos = G_SIZE - 1;\n                    zt = selector[++groupNo] & 0xff;\n                    baseZt = base[zt];\n                    limitZt = limit[zt];\n                    permZt = perm[zt];\n                    minLensZt = minLens[zt];\n                }\n                else {\n                    groupPos--;\n                }\n\n                int zn = minLensZt;\n\n                while (bsLiveShadow < zn) {\n                    final int thech = readAByte(inShadow);\n                    if (thech >= 0) {\n                        bsBuffShadow = (bsBuffShadow << 8) | thech;\n                        bsLiveShadow += 8;\n                    }\n                    else {\n                        throw new IOException(\"unexpected end of stream\");\n                    }\n                }\n                int zvec = (bsBuffShadow >> (bsLiveShadow - zn))\n                        & ((1 << zn) - 1);\n                bsLiveShadow -= zn;\n\n                while (zvec > limitZt[zn]) {\n                    zn++;\n                    while (bsLiveShadow < 1) {\n                        final int thech = readAByte(inShadow);\n                        if (thech >= 0) {\n                            bsBuffShadow = (bsBuffShadow << 8) | thech;\n                            bsLiveShadow += 8;\n                        }\n                        else {\n                            throw new IOException(\"unexpected end of stream\");\n                        }\n                    }\n                    bsLiveShadow--;\n                    zvec = ((zvec << 1) | ((bsBuffShadow >> bsLiveShadow) & 1));\n                }\n                nextSym = permZt[zvec - baseZt[zn]];\n            }\n        }\n\n        this.last = lastShadow;\n        this.bsLive = bsLiveShadow;\n        this.bsBuff = bsBuffShadow;\n    }\n\n    private int getAndMoveToFrontDecode0(final int groupNo)\n            throws IOException\n    {\n        final InputStream inShadow = this.in;\n        final Data dataShadow = this.data;\n        final int zt = dataShadow.selector[groupNo] & 0xff;\n        final int[] limitZt = dataShadow.limit[zt];\n        int zn = dataShadow.minLens[zt];\n        int zvec = (int) bsR(zn);\n        int bsLiveShadow = (int) this.bsLive;\n        int bsBuffShadow = (int) this.bsBuff;\n\n        while (zvec > limitZt[zn]) {\n            zn++;\n            while (bsLiveShadow < 1) {\n                final int thech = readAByte(inShadow);\n\n                if (thech >= 0) {\n                    bsBuffShadow = (bsBuffShadow << 8) | thech;\n                    bsLiveShadow += 8;\n                }\n                else {\n                    throw new IOException(\"unexpected end of stream\");\n                }\n            }\n            bsLiveShadow--;\n            zvec = (zvec << 1) | ((bsBuffShadow >> bsLiveShadow) & 1);\n        }\n\n        this.bsLive = bsLiveShadow;\n        this.bsBuff = bsBuffShadow;\n\n        return dataShadow.perm[zt][zvec - dataShadow.base[zt][zn]];\n    }\n\n    private void setupBlock()\n            throws IOException\n    {\n        if (this.data == null) {\n            return;\n        }\n\n        final int[] cftab = this.data.cftab;\n        final int[] tt = this.data.initTT(this.last + 1);\n        final byte[] ll8 = this.data.ll8;\n        cftab[0] = 0;\n        System.arraycopy(this.data.unzftab, 0, cftab, 1, 256);\n\n        for (int i = 1, c = cftab[0]; i <= 256; i++) {\n            c += cftab[i];\n            cftab[i] = c;\n        }\n\n        for (int i = 0, lastShadow = this.last; i <= lastShadow; i++) {\n            tt[cftab[ll8[i] & 0xff]++] = i;\n        }\n\n        if ((this.origPtr < 0) || (this.origPtr >= tt.length)) {\n            throw new IOException(\"stream corrupted\");\n        }\n\n        this.suTPos = tt[this.origPtr];\n        this.suCount = 0;\n        this.suI2 = 0;\n        this.suCh2 = 256; /* not a char and not EOF */\n\n        if (this.blockRandomised) {\n            this.suRNToGo = 0;\n            this.suRTPos = 0;\n            setupRandPartA();\n        }\n        else {\n            setupNoRandPartA();\n        }\n    }\n\n    @SuppressWarnings(\"checkstyle:InnerAssignment\")\n    private void setupRandPartA()\n            throws IOException\n    {\n        if (this.suI2 <= this.last) {\n            this.suChPrev = this.suCh2;\n            int suCh2Shadow = this.data.ll8[this.suTPos] & 0xff;\n            this.suTPos = this.data.tt[this.suTPos];\n            if (this.suRNToGo == 0) {\n                this.suRNToGo = R_NUMS[this.suRTPos] - 1;\n                if (++this.suRTPos == 512) {\n                    this.suRTPos = 0;\n                }\n            }\n            else {\n                this.suRNToGo--;\n            }\n            this.suCh2 = suCh2Shadow ^= (this.suRNToGo == 1) ? 1 : 0;\n            this.suI2++;\n            this.currentChar = suCh2Shadow;\n            this.currentState = STATE.RAND_PART_B_STATE;\n            this.crc32.updateCRC(suCh2Shadow);\n        }\n        else {\n            endBlock();\n            initBlock();\n            setupBlock();\n        }\n    }\n\n    private void setupNoRandPartA()\n            throws IOException\n    {\n        if (this.suI2 <= this.last) {\n            this.suChPrev = this.suCh2;\n            int suCh2Shadow = this.data.ll8[this.suTPos] & 0xff;\n            this.suCh2 = suCh2Shadow;\n            this.suTPos = this.data.tt[this.suTPos];\n            this.suI2++;\n            this.currentChar = suCh2Shadow;\n            this.currentState = STATE.NO_RAND_PART_B_STATE;\n            this.crc32.updateCRC(suCh2Shadow);\n        }\n        else {\n            this.currentState = STATE.NO_RAND_PART_A_STATE;\n            endBlock();\n            initBlock();\n            setupBlock();\n        }\n    }\n\n    private void setupRandPartB()\n            throws IOException\n    {\n        if (this.suCh2 != this.suChPrev) {\n            this.currentState = STATE.RAND_PART_A_STATE;\n            this.suCount = 1;\n            setupRandPartA();\n        }\n        else if (++this.suCount >= 4) {\n            this.suZ = (char) (this.data.ll8[this.suTPos] & 0xff);\n            this.suTPos = this.data.tt[this.suTPos];\n            if (this.suRNToGo == 0) {\n                this.suRNToGo = R_NUMS[this.suRTPos] - 1;\n                if (++this.suRTPos == 512) {\n                    this.suRTPos = 0;\n                }\n            }\n            else {\n                this.suRNToGo--;\n            }\n            this.suJ2 = 0;\n            this.currentState = STATE.RAND_PART_C_STATE;\n            if (this.suRNToGo == 1) {\n                this.suZ ^= 1;\n            }\n            setupRandPartC();\n        }\n        else {\n            this.currentState = STATE.RAND_PART_A_STATE;\n            setupRandPartA();\n        }\n    }\n\n    private void setupRandPartC()\n            throws IOException\n    {\n        if (this.suJ2 < this.suZ) {\n            this.currentChar = this.suCh2;\n            this.crc32.updateCRC(this.suCh2);\n            this.suJ2++;\n        }\n        else {\n            this.currentState = STATE.RAND_PART_A_STATE;\n            this.suI2++;\n            this.suCount = 0;\n            setupRandPartA();\n        }\n    }\n\n    private void setupNoRandPartB()\n            throws IOException\n    {\n        if (this.suCh2 != this.suChPrev) {\n            this.suCount = 1;\n            setupNoRandPartA();\n        }\n        else if (++this.suCount >= 4) {\n            this.suZ = (char) (this.data.ll8[this.suTPos] & 0xff);\n            this.suTPos = this.data.tt[this.suTPos];\n            this.suJ2 = 0;\n            setupNoRandPartC();\n        }\n        else {\n            setupNoRandPartA();\n        }\n    }\n\n    private void setupNoRandPartC()\n            throws IOException\n    {\n        if (this.suJ2 < this.suZ) {\n            int suCh2Shadow = this.suCh2;\n            this.currentChar = suCh2Shadow;\n            this.crc32.updateCRC(suCh2Shadow);\n            this.suJ2++;\n            this.currentState = STATE.NO_RAND_PART_C_STATE;\n        }\n        else {\n            this.suI2++;\n            this.suCount = 0;\n            setupNoRandPartA();\n        }\n    }\n\n    private static final class Data\n    {\n        // (with blockSize 900k)\n        final boolean[] inUse = new boolean[256]; // 256 byte\n\n        final byte[] seqToUnseq = new byte[256]; // 256 byte\n        final byte[] selector = new byte[MAX_SELECTORS]; // 18002 byte\n        final byte[] selectorMtf = new byte[MAX_SELECTORS]; // 18002 byte\n\n        /**\n         * Freq table collected to save a pass over the data during\n         * decompression.\n         */\n        final int[] unzftab = new int[256]; // 1024 byte\n\n        final int[][] limit = new int[N_GROUPS][MAX_ALPHA_SIZE]; // 6192 byte\n        final int[][] base = new int[N_GROUPS][MAX_ALPHA_SIZE]; // 6192 byte\n        final int[][] perm = new int[N_GROUPS][MAX_ALPHA_SIZE]; // 6192 byte\n        final int[] minLens = new int[N_GROUPS]; // 24 byte\n\n        final int[] cftab = new int[257]; // 1028 byte\n        final char[] getAndMoveToFrontDecodeYy = new char[256]; // 512 byte\n        final char[][] tempCharArray2D = new char[N_GROUPS][MAX_ALPHA_SIZE]; // 3096\n        // byte\n        final byte[] recvDecodingTablesPos = new byte[N_GROUPS]; // 6 byte\n        // ---------------\n        // 60798 byte\n\n        int[] tt; // 3600000 byte\n        byte[] ll8; // 900000 byte\n\n        // ---------------\n        // 4560782 byte\n        // ===============\n\n        Data(int blockSize100k)\n        {\n            this.ll8 = new byte[blockSize100k * BZip2Constants.BASE_BLOCK_SIZE];\n        }\n\n        /**\n         * Initializes the {@link #tt} array.\n         * <p>\n         * This method is called when the required length of the array is known.\n         * I don't initialize it at construction time to avoid unnecessary\n         * memory allocation when compressing small files.\n         */\n        int[] initTT(int length)\n        {\n            int[] ttShadow = this.tt;\n\n            // tt.length should always be >= length, but theoretically\n            // it can happen, if the compressor mixed small and large\n            // blocks. Normally only the last block will be smaller\n            // than others.\n            if ((ttShadow == null) || (ttShadow.length < length)) {\n                ttShadow = new int[length];\n                this.tt = ttShadow;\n            }\n\n            return ttShadow;\n        }\n    }\n\n    private static final int[] R_NUMS = {\n            619, 720, 127, 481, 931, 816, 813, 233, 566, 247,\n            985, 724, 205, 454, 863, 491, 741, 242, 949, 214, 733, 859, 335,\n            708, 621, 574, 73, 654, 730, 472, 419, 436, 278, 496, 867, 210,\n            399, 680, 480, 51, 878, 465, 811, 169, 869, 675, 611, 697, 867,\n            561, 862, 687, 507, 283, 482, 129, 807, 591, 733, 623, 150, 238,\n            59, 379, 684, 877, 625, 169, 643, 105, 170, 607, 520, 932, 727,\n            476, 693, 425, 174, 647, 73, 122, 335, 530, 442, 853, 695, 249,\n            445, 515, 909, 545, 703, 919, 874, 474, 882, 500, 594, 612, 641,\n            801, 220, 162, 819, 984, 589, 513, 495, 799, 161, 604, 958, 533,\n            221, 400, 386, 867, 600, 782, 382, 596, 414, 171, 516, 375, 682,\n            485, 911, 276, 98, 553, 163, 354, 666, 933, 424, 341, 533, 870,\n            227, 730, 475, 186, 263, 647, 537, 686, 600, 224, 469, 68, 770,\n            919, 190, 373, 294, 822, 808, 206, 184, 943, 795, 384, 383, 461,\n            404, 758, 839, 887, 715, 67, 618, 276, 204, 918, 873, 777, 604,\n            560, 951, 160, 578, 722, 79, 804, 96, 409, 713, 940, 652, 934, 970,\n            447, 318, 353, 859, 672, 112, 785, 645, 863, 803, 350, 139, 93,\n            354, 99, 820, 908, 609, 772, 154, 274, 580, 184, 79, 626, 630, 742,\n            653, 282, 762, 623, 680, 81, 927, 626, 789, 125, 411, 521, 938,\n            300, 821, 78, 343, 175, 128, 250, 170, 774, 972, 275, 999, 639,\n            495, 78, 352, 126, 857, 956, 358, 619, 580, 124, 737, 594, 701,\n            612, 669, 112, 134, 694, 363, 992, 809, 743, 168, 974, 944, 375,\n            748, 52, 600, 747, 642, 182, 862, 81, 344, 805, 988, 739, 511, 655,\n            814, 334, 249, 515, 897, 955, 664, 981, 649, 113, 974, 459, 893,\n            228, 433, 837, 553, 268, 926, 240, 102, 654, 459, 51, 686, 754,\n            806, 760, 493, 403, 415, 394, 687, 700, 946, 670, 656, 610, 738,\n            392, 760, 799, 887, 653, 978, 321, 576, 617, 626, 502, 894, 679,\n            243, 440, 680, 879, 194, 572, 640, 724, 926, 56, 204, 700, 707,\n            151, 457, 449, 797, 195, 791, 558, 945, 679, 297, 59, 87, 824, 713,\n            663, 412, 693, 342, 606, 134, 108, 571, 364, 631, 212, 174, 643,\n            304, 329, 343, 97, 430, 751, 497, 314, 983, 374, 822, 928, 140,\n            206, 73, 263, 980, 736, 876, 478, 430, 305, 170, 514, 364, 692,\n            829, 82, 855, 953, 676, 246, 369, 970, 294, 750, 807, 827, 150,\n            790, 288, 923, 804, 378, 215, 828, 592, 281, 565, 555, 710, 82,\n            896, 831, 547, 261, 524, 462, 293, 465, 502, 56, 661, 821, 976,\n            991, 658, 869, 905, 758, 745, 193, 768, 550, 608, 933, 378, 286,\n            215, 979, 792, 961, 61, 688, 793, 644, 986, 403, 106, 366, 905,\n            644, 372, 567, 466, 434, 645, 210, 389, 550, 919, 135, 780, 773,\n            635, 389, 707, 100, 626, 958, 165, 504, 920, 176, 193, 713, 857,\n            265, 203, 50, 668, 108, 645, 990, 626, 197, 510, 357, 358, 850,\n            858, 364, 936, 638};\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/CBZip2OutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.G_SIZE;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.MAX_ALPHA_SIZE;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.MAX_SELECTORS;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.N_GROUPS;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.RUN_A;\nimport static io.airlift.compress.v3.bzip2.BZip2Constants.RUN_B;\n\n/**\n * An output stream that compresses into the BZip2 format (without the file\n * header chars) into another stream.\n *\n * <p>\n * The compression requires large amounts of memory. Thus you should call the\n * {@link #close() close()} method as soon as possible, to force\n * <tt>CBZip2OutputStream</tt> to release the allocated memory.\n * </p>\n *\n * <p>\n * You can shrink the amount of allocated memory and maybe raise the compression\n * speed by choosing a lower blocksize, which in turn may cause a lower\n * compression ratio. You can avoid unnecessary memory allocation by avoiding\n * using a blocksize which is bigger than the size of the input.\n * </p>\n *\n * <p>\n * You can compute the memory usage for compressing by the following formula:\n * </p>\n *\n * <pre>\n * &lt;code&gt;400k + (9 * blocksize)&lt;/code&gt;.\n * </pre>\n *\n * <p>\n * To get the memory required for decompression by {@link CBZip2InputStream\n * CBZip2InputStream} use\n * </p>\n *\n * <pre>\n * &lt;code&gt;65k + (5 * blocksize)&lt;/code&gt;.\n * </pre>\n *\n * <table width=\"100%\" border=\"1\">\n * <colgroup> <col width=\"33%\" /> <col width=\"33%\" /> <col width=\"33%\" />\n * </colgroup>\n * <tr>\n * <th colspan=\"3\">Memory usage by blocksize</th>\n * </tr>\n * <tr>\n * <th align=\"right\">Blocksize</th> <th align=\"right\">Compression<br>\n * memory usage</th> <th align=\"right\">Decompression<br>\n * memory usage</th>\n * </tr>\n * <tr>\n * <td align=\"right\">100k</td>\n * <td align=\"right\">1300k</td>\n * <td align=\"right\">565k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">200k</td>\n * <td align=\"right\">2200k</td>\n * <td align=\"right\">1065k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">300k</td>\n * <td align=\"right\">3100k</td>\n * <td align=\"right\">1565k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">400k</td>\n * <td align=\"right\">4000k</td>\n * <td align=\"right\">2065k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">500k</td>\n * <td align=\"right\">4900k</td>\n * <td align=\"right\">2565k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">600k</td>\n * <td align=\"right\">5800k</td>\n * <td align=\"right\">3065k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">700k</td>\n * <td align=\"right\">6700k</td>\n * <td align=\"right\">3565k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">800k</td>\n * <td align=\"right\">7600k</td>\n * <td align=\"right\">4065k</td>\n * </tr>\n * <tr>\n * <td align=\"right\">900k</td>\n * <td align=\"right\">8500k</td>\n * <td align=\"right\">4565k</td>\n * </tr>\n * </table>\n *\n * <p>\n * For decompression <tt>CBZip2InputStream</tt> allocates less memory if the\n * bzipped input is smaller than one block.\n * </p>\n *\n * <p>\n * Instances of this class are not thread safe.\n * </p>\n *\n * <p>\n * TODO: Update to BZip2 1.0.1\n * </p>\n */\n// forked from Apache Hadoop\nclass CBZip2OutputStream\n        extends OutputStream\n{\n    /**\n     * The maximum supported block size <tt> == 9</tt>.\n     */\n    private static final int MAX_BLOCK_SIZE = 9;\n    private static final int[] R_NUMS = {619, 720, 127, 481, 931, 816, 813, 233, 566, 247,\n            985, 724, 205, 454, 863, 491, 741, 242, 949, 214, 733, 859, 335,\n            708, 621, 574, 73, 654, 730, 472, 419, 436, 278, 496, 867, 210,\n            399, 680, 480, 51, 878, 465, 811, 169, 869, 675, 611, 697, 867,\n            561, 862, 687, 507, 283, 482, 129, 807, 591, 733, 623, 150, 238,\n            59, 379, 684, 877, 625, 169, 643, 105, 170, 607, 520, 932, 727,\n            476, 693, 425, 174, 647, 73, 122, 335, 530, 442, 853, 695, 249,\n            445, 515, 909, 545, 703, 919, 874, 474, 882, 500, 594, 612, 641,\n            801, 220, 162, 819, 984, 589, 513, 495, 799, 161, 604, 958, 533,\n            221, 400, 386, 867, 600, 782, 382, 596, 414, 171, 516, 375, 682,\n            485, 911, 276, 98, 553, 163, 354, 666, 933, 424, 341, 533, 870,\n            227, 730, 475, 186, 263, 647, 537, 686, 600, 224, 469, 68, 770,\n            919, 190, 373, 294, 822, 808, 206, 184, 943, 795, 384, 383, 461,\n            404, 758, 839, 887, 715, 67, 618, 276, 204, 918, 873, 777, 604,\n            560, 951, 160, 578, 722, 79, 804, 96, 409, 713, 940, 652, 934, 970,\n            447, 318, 353, 859, 672, 112, 785, 645, 863, 803, 350, 139, 93,\n            354, 99, 820, 908, 609, 772, 154, 274, 580, 184, 79, 626, 630, 742,\n            653, 282, 762, 623, 680, 81, 927, 626, 789, 125, 411, 521, 938,\n            300, 821, 78, 343, 175, 128, 250, 170, 774, 972, 275, 999, 639,\n            495, 78, 352, 126, 857, 956, 358, 619, 580, 124, 737, 594, 701,\n            612, 669, 112, 134, 694, 363, 992, 809, 743, 168, 974, 944, 375,\n            748, 52, 600, 747, 642, 182, 862, 81, 344, 805, 988, 739, 511, 655,\n            814, 334, 249, 515, 897, 955, 664, 981, 649, 113, 974, 459, 893,\n            228, 433, 837, 553, 268, 926, 240, 102, 654, 459, 51, 686, 754,\n            806, 760, 493, 403, 415, 394, 687, 700, 946, 670, 656, 610, 738,\n            392, 760, 799, 887, 653, 978, 321, 576, 617, 626, 502, 894, 679,\n            243, 440, 680, 879, 194, 572, 640, 724, 926, 56, 204, 700, 707,\n            151, 457, 449, 797, 195, 791, 558, 945, 679, 297, 59, 87, 824, 713,\n            663, 412, 693, 342, 606, 134, 108, 571, 364, 631, 212, 174, 643,\n            304, 329, 343, 97, 430, 751, 497, 314, 983, 374, 822, 928, 140,\n            206, 73, 263, 980, 736, 876, 478, 430, 305, 170, 514, 364, 692,\n            829, 82, 855, 953, 676, 246, 369, 970, 294, 750, 807, 827, 150,\n            790, 288, 923, 804, 378, 215, 828, 592, 281, 565, 555, 710, 82,\n            896, 831, 547, 261, 524, 462, 293, 465, 502, 56, 661, 821, 976,\n            991, 658, 869, 905, 758, 745, 193, 768, 550, 608, 933, 378, 286,\n            215, 979, 792, 961, 61, 688, 793, 644, 986, 403, 106, 366, 905,\n            644, 372, 567, 466, 434, 645, 210, 389, 550, 919, 135, 780, 773,\n            635, 389, 707, 100, 626, 958, 165, 504, 920, 176, 193, 713, 857,\n            265, 203, 50, 668, 108, 645, 990, 626, 197, 510, 357, 358, 850,\n            858, 364, 936, 638};\n    private static final int N_ITERS = 4;\n    private static final int NUM_OVERSHOOT_BYTES = 20;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int SET_MASK = (1 << 21);\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int CLEAR_MASK = (~SET_MASK);\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int GREATER_ICOST = 15;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int LESSER_ICOST = 0;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int SMALL_THRESH = 20;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int DEPTH_THRESH = 10;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     */\n    private static final int WORK_FACTOR = 30;\n\n    /**\n     * This constant is accessible by subclasses for historical purposes. If you\n     * don't know what it means then you don't need it.\n     * <p>\n     * If you are ever unlucky/improbable enough to get a stack overflow whilst\n     * sorting, increase the following constant and try again. In practice I\n     * have never seen the stack go above 27 elems, so the following limit seems\n     * very generous.\n     * </p>\n     */\n    private static final int QSORT_STACK_SIZE = 1000;\n\n    /**\n     * Knuth's increments seem to work better than Incerpi-Sedgewick here.\n     * Possibly because the number of elems to sort is usually small, typically\n     * &lt;= 20.\n     */\n    private static final int[] INCS = {1, 4, 13, 40, 121, 364, 1093, 3280, 9841, 29524, 88573, 265720, 797161, 2391484};\n\n    private static void hbMakeCodeLengths(final byte[] len, final int[] freq,\n            final Data dat, final int alphaSize, final int maxLen)\n    {\n        /*\n         * Nodes and heap entries run from 1. Entry 0 for both the heap and\n         * nodes is a sentinel.\n         */\n        final int[] heap = dat.heap;\n        final int[] weight = dat.weight;\n        final int[] parent = dat.parent;\n\n        for (int i = alphaSize; --i >= 0; ) {\n            weight[i + 1] = (freq[i] == 0 ? 1 : freq[i]) << 8;\n        }\n\n        for (boolean tooLong = true; tooLong; ) {\n            tooLong = false;\n\n            int nNodes = alphaSize;\n            int nHeap = 0;\n            heap[0] = 0;\n            weight[0] = 0;\n            parent[0] = -2;\n\n            for (int i = 1; i <= alphaSize; i++) {\n                parent[i] = -1;\n                nHeap++;\n                heap[nHeap] = i;\n\n                int zz = nHeap;\n                int tmp = heap[zz];\n                while (weight[tmp] < weight[heap[zz >> 1]]) {\n                    heap[zz] = heap[zz >> 1];\n                    zz >>= 1;\n                }\n                heap[zz] = tmp;\n            }\n\n            while (nHeap > 1) {\n                int n1 = heap[1];\n                heap[1] = heap[nHeap];\n                nHeap--;\n\n                int yy;\n                int zz = 1;\n                int tmp = heap[1];\n\n                while (true) {\n                    yy = zz << 1;\n\n                    if (yy > nHeap) {\n                        break;\n                    }\n\n                    if ((yy < nHeap)\n                            && (weight[heap[yy + 1]] < weight[heap[yy]])) {\n                        yy++;\n                    }\n\n                    if (weight[tmp] < weight[heap[yy]]) {\n                        break;\n                    }\n\n                    heap[zz] = heap[yy];\n                    zz = yy;\n                }\n\n                heap[zz] = tmp;\n\n                int n2 = heap[1];\n                heap[1] = heap[nHeap];\n                nHeap--;\n\n                zz = 1;\n                tmp = heap[1];\n\n                while (true) {\n                    yy = zz << 1;\n\n                    if (yy > nHeap) {\n                        break;\n                    }\n\n                    if ((yy < nHeap)\n                            && (weight[heap[yy + 1]] < weight[heap[yy]])) {\n                        yy++;\n                    }\n\n                    if (weight[tmp] < weight[heap[yy]]) {\n                        break;\n                    }\n\n                    heap[zz] = heap[yy];\n                    zz = yy;\n                }\n\n                heap[zz] = tmp;\n                nNodes++;\n                parent[n1] = nNodes;\n                parent[n2] = nNodes;\n\n                final int weightN1 = weight[n1];\n                final int weightN2 = weight[n2];\n                weight[nNodes] = ((weightN1 & 0xffffff00) + (weightN2 & 0xffffff00))\n                        | (1 + (Math.max((weightN1 & 0x000000ff), (weightN2 & 0x000000ff))));\n\n                parent[nNodes] = -1;\n                nHeap++;\n                heap[nHeap] = nNodes;\n\n                zz = nHeap;\n                tmp = heap[zz];\n                final int weightTmp = weight[tmp];\n                while (weightTmp < weight[heap[zz >> 1]]) {\n                    heap[zz] = heap[zz >> 1];\n                    zz >>= 1;\n                }\n                heap[zz] = tmp;\n            }\n\n            for (int i = 1; i <= alphaSize; i++) {\n                int j = 0;\n                int k = i;\n\n                for (int parentK; (parentK = parent[k]) >= 0; ) {\n                    k = parentK;\n                    j++;\n                }\n\n                len[i - 1] = (byte) j;\n                if (j > maxLen) {\n                    tooLong = true;\n                }\n            }\n\n            if (tooLong) {\n                for (int i = 1; i < alphaSize; i++) {\n                    int j = weight[i] >> 8;\n                    j = 1 + (j >> 1);\n                    weight[i] = j << 8;\n                }\n            }\n        }\n    }\n\n    /**\n     * Index of the last char in the block, so the block size == last + 1.\n     */\n    private int last;\n\n    /**\n     * Index in fmap[] of original string after sorting.\n     */\n    private int origPtr;\n\n    /**\n     * Always: in the range 0 .. 9. The current block size is 100000 * this\n     * number.\n     */\n    private final int blockSize100k;\n\n    private boolean blockRandomised;\n\n    private int bsBuff;\n    private int bsLive;\n    private final Crc32 crc32 = new Crc32();\n\n    private int nInUse;\n\n    private int nMTF;\n\n    /*\n     * Used when sorting. If too many long comparisons happen, we stop sorting,\n     * randomise the block slightly, and try again.\n     */\n    private int workDone;\n    private int workLimit;\n    private boolean firstAttempt;\n\n    private int currentChar = -1;\n    private int runLength;\n\n    private int combinedCRC;\n    private int allowableBlockSize;\n\n    /**\n     * All memory intensive stuff.\n     */\n    private Data data;\n\n    private OutputStream out;\n\n    /**\n     * Constructs a new <tt>CBZip2OutputStream</tt> with a block size of 900k.\n     *\n     * <p>\n     * <b>Attention: </b>The caller is responsible to write the two BZip2 magic\n     * bytes <tt>\"BZ\"</tt> to the specified stream prior to calling this\n     * constructor.\n     * </p>\n     *\n     * @param out *\n     * the destination stream.\n     * @throws IOException if an I/O error occurs in the specified stream.\n     * @throws NullPointerException if <code>out == null</code>.\n     */\n    public CBZip2OutputStream(final OutputStream out)\n            throws IOException\n    {\n        this(out, MAX_BLOCK_SIZE);\n    }\n\n    /**\n     * Constructs a new <tt>CBZip2OutputStream</tt> with specified block size.\n     *\n     * <p>\n     * <b>Attention: </b>The caller is responsible to write the two BZip2 magic\n     * bytes <tt>\"BZ\"</tt> to the specified stream prior to calling this\n     * constructor.\n     * </p>\n     *\n     * @param out the destination stream.\n     * @param blockSize the blockSize as 100k units.\n     * @throws IOException if an I/O error occurs in the specified stream.\n     * @throws IllegalArgumentException if <code>(blockSize < 1) || (blockSize > 9)</code>.\n     * @throws NullPointerException if <code>out == null</code>.\n     * @see #MAX_BLOCK_SIZE\n     */\n    private CBZip2OutputStream(final OutputStream out, final int blockSize)\n            throws IOException\n    {\n        if (blockSize < 1) {\n            throw new IllegalArgumentException(\"blockSize(\" + blockSize\n                    + \") < 1\");\n        }\n        if (blockSize > 9) {\n            throw new IllegalArgumentException(\"blockSize(\" + blockSize\n                    + \") > 9\");\n        }\n\n        this.blockSize100k = blockSize;\n        this.out = out;\n        init();\n    }\n\n    @Override\n    public void write(final int b)\n            throws IOException\n    {\n        if (this.out != null) {\n            write0(b);\n        }\n        else {\n            throw new IOException(\"closed\");\n        }\n    }\n\n    private void writeRun()\n            throws IOException\n    {\n        final int lastShadow = this.last;\n\n        if (lastShadow < this.allowableBlockSize) {\n            final int currentCharShadow = this.currentChar;\n            final Data dataShadow = this.data;\n            dataShadow.inUse[currentCharShadow] = true;\n            final byte ch = (byte) currentCharShadow;\n\n            int runLengthShadow = this.runLength;\n            this.crc32.updateCRC(currentCharShadow, runLengthShadow);\n\n            switch (runLengthShadow) {\n                case 1:\n                    dataShadow.block[lastShadow + 2] = ch;\n                    this.last = lastShadow + 1;\n                    break;\n\n                case 2:\n                    dataShadow.block[lastShadow + 2] = ch;\n                    dataShadow.block[lastShadow + 3] = ch;\n                    this.last = lastShadow + 2;\n                    break;\n\n                case 3: {\n                    final byte[] block = dataShadow.block;\n                    block[lastShadow + 2] = ch;\n                    block[lastShadow + 3] = ch;\n                    block[lastShadow + 4] = ch;\n                    this.last = lastShadow + 3;\n                }\n                break;\n\n                default: {\n                    runLengthShadow -= 4;\n                    dataShadow.inUse[runLengthShadow] = true;\n                    final byte[] block = dataShadow.block;\n                    block[lastShadow + 2] = ch;\n                    block[lastShadow + 3] = ch;\n                    block[lastShadow + 4] = ch;\n                    block[lastShadow + 5] = ch;\n                    block[lastShadow + 6] = (byte) runLengthShadow;\n                    this.last = lastShadow + 5;\n                }\n                break;\n            }\n        }\n        else {\n            endBlock();\n            initBlock();\n            writeRun();\n        }\n    }\n\n    /**\n     * Overridden to close the stream.\n     */\n    @Override\n    protected void finalize()\n            throws Throwable\n    {\n        finish();\n        super.finalize();\n    }\n\n    public void finish()\n            throws IOException\n    {\n        if (out != null) {\n            try {\n                if (this.runLength > 0) {\n                    writeRun();\n                }\n                this.currentChar = -1;\n                endBlock();\n                endCompression();\n            }\n            finally {\n                this.out = null;\n                this.data = null;\n            }\n        }\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (out != null) {\n            OutputStream outShadow = this.out;\n            try {\n                finish();\n                outShadow.close();\n                outShadow = null;\n            }\n            finally {\n                outShadow.close();\n            }\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        OutputStream outShadow = this.out;\n        if (outShadow != null) {\n            outShadow.flush();\n        }\n    }\n\n    private void init()\n            throws IOException\n    {\n        // write magic: done by caller who created this stream\n        // this.out.write('B');\n        // this.out.write('Z');\n\n        this.data = new Data(this.blockSize100k);\n\n        /*\n         * Write `magic' bytes h indicating file-format == huffmanised, followed\n         * by a digit indicating blockSize100k.\n         */\n        bsPutUByte('h');\n        bsPutUByte((int) '0' + this.blockSize100k);\n\n        this.combinedCRC = 0;\n        initBlock();\n    }\n\n    private void initBlock()\n    {\n        // blockNo++;\n        this.crc32.initialiseCRC();\n        this.last = -1;\n        // ch = 0;\n\n        boolean[] inUse = this.data.inUse;\n        for (int i = 256; --i >= 0; ) {\n            inUse[i] = false;\n        }\n\n        /* 20 is just a paranoia constant */\n        this.allowableBlockSize = (this.blockSize100k * BZip2Constants.BASE_BLOCK_SIZE) - 20;\n    }\n\n    private void endBlock()\n            throws IOException\n    {\n        int blockCRC = this.crc32.getFinalCRC();\n        this.combinedCRC = (this.combinedCRC << 1) | (this.combinedCRC >>> 31);\n        this.combinedCRC ^= blockCRC;\n\n        // empty block at end of file\n        if (this.last == -1) {\n            return;\n        }\n\n        /* sort the block and establish posn of original string */\n        blockSort();\n\n        /*\n         * A 6-byte block header, the value chosen arbitrarily as 0x314159265359\n         * :-). A 32 bit value does not really give a strong enough guarantee\n         * that the value will not appear by chance in the compressed\n         * data stream. Worst-case probability of this event, for a 900k block,\n         * is about 2.0e-3 for 32 bits, 1.0e-5 for 40 bits and 4.0e-8 for 48\n         * bits. For a compressed file of size 100Gb -- about 100000 blocks --\n         * only a 48-bit marker will do. NB: normal compression/ decompression\n         * do not rely on these statistical properties. They are only important\n         * when trying to recover blocks from damaged files.\n         */\n        bsPutUByte(0x31);\n        bsPutUByte(0x41);\n        bsPutUByte(0x59);\n        bsPutUByte(0x26);\n        bsPutUByte(0x53);\n        bsPutUByte(0x59);\n\n        /* Now the block's CRC, so it is in a known place. */\n        bsPutInt(blockCRC);\n\n        /* Now a single bit indicating randomisation. */\n        if (this.blockRandomised) {\n            bsW(1, 1);\n        }\n        else {\n            bsW(1, 0);\n        }\n\n        /* Finally, block's contents proper. */\n        moveToFrontCodeAndSend();\n    }\n\n    private void endCompression()\n            throws IOException\n    {\n        /*\n         * Now another magic 48-bit number, 0x177245385090, to indicate the end\n         * of the last block. (sqrt(pi), if you want to know. I did want to use\n         * e, but it contains too much repetition -- 27 18 28 18 28 46 -- for me\n         * to feel statistically comfortable. Call me paranoid.)\n         */\n        bsPutUByte(0x17);\n        bsPutUByte(0x72);\n        bsPutUByte(0x45);\n        bsPutUByte(0x38);\n        bsPutUByte(0x50);\n        bsPutUByte(0x90);\n\n        bsPutInt(this.combinedCRC);\n        bsFinishedWithStream();\n    }\n\n    @Override\n    public void write(final byte[] buf, int offs, final int len)\n            throws IOException\n    {\n        if (offs < 0) {\n            throw new IndexOutOfBoundsException(\"offs(\" + offs + \") < 0.\");\n        }\n        if (len < 0) {\n            throw new IndexOutOfBoundsException(\"len(\" + len + \") < 0.\");\n        }\n        if (offs + len > buf.length) {\n            throw new IndexOutOfBoundsException(\"offs(\" + offs + \") + len(\"\n                    + len + \") > buf.length(\" + buf.length + \").\");\n        }\n        if (this.out == null) {\n            throw new IOException(\"stream closed\");\n        }\n\n        for (int hi = offs + len; offs < hi; ) {\n            write0(buf[offs++]);\n        }\n    }\n\n    private void write0(int b)\n            throws IOException\n    {\n        if (this.currentChar != -1) {\n            b &= 0xff;\n            if (this.currentChar == b) {\n                if (++this.runLength > 254) {\n                    writeRun();\n                    this.currentChar = -1;\n                    this.runLength = 0;\n                }\n                // else nothing to do\n            }\n            else {\n                writeRun();\n                this.runLength = 1;\n                this.currentChar = b;\n            }\n        }\n        else {\n            this.currentChar = b & 0xff;\n            this.runLength++;\n        }\n    }\n\n    private static void hbAssignCodes(final int[] code, final byte[] length,\n            final int minLen, final int maxLen, final int alphaSize)\n    {\n        int vec = 0;\n        for (int n = minLen; n <= maxLen; n++) {\n            for (int i = 0; i < alphaSize; i++) {\n                if ((length[i] & 0xff) == n) {\n                    code[i] = vec;\n                    vec++;\n                }\n            }\n            vec <<= 1;\n        }\n    }\n\n    private void bsFinishedWithStream()\n            throws IOException\n    {\n        while (this.bsLive > 0) {\n            int ch = this.bsBuff >> 24;\n            this.out.write(ch); // write 8-bit\n            this.bsBuff <<= 8;\n            this.bsLive -= 8;\n        }\n    }\n\n    private void bsW(final int n, final int v)\n            throws IOException\n    {\n        final OutputStream outShadow = this.out;\n        int bsLiveShadow = this.bsLive;\n        int bsBuffShadow = this.bsBuff;\n\n        while (bsLiveShadow >= 8) {\n            outShadow.write(bsBuffShadow >> 24); // write 8-bit\n            bsBuffShadow <<= 8;\n            bsLiveShadow -= 8;\n        }\n\n        this.bsBuff = bsBuffShadow | (v << (32 - bsLiveShadow - n));\n        this.bsLive = bsLiveShadow + n;\n    }\n\n    private void bsPutUByte(final int c)\n            throws IOException\n    {\n        bsW(8, c);\n    }\n\n    private void bsPutInt(final int u)\n            throws IOException\n    {\n        bsW(8, (u >> 24) & 0xff);\n        bsW(8, (u >> 16) & 0xff);\n        bsW(8, (u >> 8) & 0xff);\n        bsW(8, u & 0xff);\n    }\n\n    private void sendMTFValues()\n            throws IOException\n    {\n        final byte[][] len = this.data.sendMTFValuesLen;\n        final int alphaSize = this.nInUse + 2;\n\n        for (int t = N_GROUPS; --t >= 0; ) {\n            byte[] lenT = len[t];\n            for (int v = alphaSize; --v >= 0; ) {\n                lenT[v] = GREATER_ICOST;\n            }\n        }\n\n        /* Decide how many coding tables to use */\n        // assert (this.nMTF > 0) : this.nMTF;\n        final int nGroups = (this.nMTF < 200) ? 2 : (this.nMTF < 600) ? 3\n                : (this.nMTF < 1200) ? 4 : (this.nMTF < 2400) ? 5 : 6;\n\n        /* Generate an initial set of coding tables */\n        sendMTFValues0(nGroups, alphaSize);\n\n        /*\n         * Iterate up to N_ITERS times to improve the tables.\n         */\n        final int nSelectors = sendMTFValues1(nGroups, alphaSize);\n\n        /* Compute MTF values for the selectors. */\n        sendMTFValues2(nGroups, nSelectors);\n\n        /* Assign actual codes for the tables. */\n        sendMTFValues3(nGroups, alphaSize);\n\n        /* Transmit the mapping table. */\n        sendMTFValues4();\n\n        /* Now the selectors. */\n        sendMTFValues5(nGroups, nSelectors);\n\n        /* Now the coding tables. */\n        sendMTFValues6(nGroups, alphaSize);\n\n        /* And finally, the block data proper */\n        sendMTFValues7();\n    }\n\n    private void sendMTFValues0(final int nGroups, final int alphaSize)\n    {\n        final byte[][] len = this.data.sendMTFValuesLen;\n        final int[] mtfFreq = this.data.mtfFreq;\n\n        int remF = this.nMTF;\n        int gs = 0;\n\n        for (int nPart = nGroups; nPart > 0; nPart--) {\n            final int tFreq = remF / nPart;\n            int ge = gs - 1;\n            int aFreq = 0;\n\n            for (final int a = alphaSize - 1; (aFreq < tFreq) && (ge < a); ) {\n                aFreq += mtfFreq[++ge];\n            }\n\n            if ((ge > gs) && (nPart != nGroups) && (nPart != 1)\n                    && (((nGroups - nPart) & 1) != 0)) {\n                aFreq -= mtfFreq[ge--];\n            }\n\n            final byte[] lenNp = len[nPart - 1];\n            for (int v = alphaSize; --v >= 0; ) {\n                if ((v >= gs) && (v <= ge)) {\n                    lenNp[v] = LESSER_ICOST;\n                }\n                else {\n                    lenNp[v] = GREATER_ICOST;\n                }\n            }\n\n            gs = ge + 1;\n            remF -= aFreq;\n        }\n    }\n\n    private int sendMTFValues1(final int nGroups, final int alphaSize)\n    {\n        final Data dataShadow = this.data;\n        final int[][] rfreq = dataShadow.sendMTFValuesRfreq;\n        final int[] fave = dataShadow.sendMTFValuesFave;\n        final short[] cost = dataShadow.sendMTFValuesCost;\n        final char[] sfmap = dataShadow.sfmap;\n        final byte[] selector = dataShadow.selector;\n        final byte[][] len = dataShadow.sendMTFValuesLen;\n        final byte[] len0 = len[0];\n        final byte[] len1 = len[1];\n        final byte[] len2 = len[2];\n        final byte[] len3 = len[3];\n        final byte[] len4 = len[4];\n        final byte[] len5 = len[5];\n        final int nMTFShadow = this.nMTF;\n\n        int nSelectors = 0;\n\n        for (int iter = 0; iter < N_ITERS; iter++) {\n            for (int t = nGroups; --t >= 0; ) {\n                fave[t] = 0;\n                int[] rfreqt = rfreq[t];\n                for (int i = alphaSize; --i >= 0; ) {\n                    rfreqt[i] = 0;\n                }\n            }\n\n            nSelectors = 0;\n\n            for (int gs = 0; gs < this.nMTF; ) {\n                /* Set group start & end marks. */\n\n                /*\n                 * Calculate the cost of this group as coded by each of the\n                 * coding tables.\n                 */\n\n                final int ge = Math.min(gs + G_SIZE - 1, nMTFShadow - 1);\n\n                if (nGroups == N_GROUPS) {\n                    // unrolled version of the else-block\n\n                    short cost0 = 0;\n                    short cost1 = 0;\n                    short cost2 = 0;\n                    short cost3 = 0;\n                    short cost4 = 0;\n                    short cost5 = 0;\n\n                    for (int i = gs; i <= ge; i++) {\n                        final int icv = sfmap[i];\n                        cost0 += len0[icv] & 0xff;\n                        cost1 += len1[icv] & 0xff;\n                        cost2 += len2[icv] & 0xff;\n                        cost3 += len3[icv] & 0xff;\n                        cost4 += len4[icv] & 0xff;\n                        cost5 += len5[icv] & 0xff;\n                    }\n\n                    cost[0] = cost0;\n                    cost[1] = cost1;\n                    cost[2] = cost2;\n                    cost[3] = cost3;\n                    cost[4] = cost4;\n                    cost[5] = cost5;\n                }\n                else {\n                    for (int t = nGroups; --t >= 0; ) {\n                        cost[t] = 0;\n                    }\n\n                    for (int i = gs; i <= ge; i++) {\n                        final int icv = sfmap[i];\n                        for (int t = nGroups; --t >= 0; ) {\n                            cost[t] += len[t][icv] & 0xff;\n                        }\n                    }\n                }\n\n                /*\n                 * Find the coding table which is best for this group, and\n                 * record its identity in the selector table.\n                 */\n                int bt = -1;\n                for (int t = nGroups, bc = 999999999; --t >= 0; ) {\n                    final int costT = cost[t];\n                    if (costT < bc) {\n                        bc = costT;\n                        bt = t;\n                    }\n                }\n\n                fave[bt]++;\n                selector[nSelectors] = (byte) bt;\n                nSelectors++;\n\n                /*\n                 * Increment the symbol frequencies for the selected table.\n                 */\n                final int[] rfreqBt = rfreq[bt];\n                for (int i = gs; i <= ge; i++) {\n                    rfreqBt[sfmap[i]]++;\n                }\n\n                gs = ge + 1;\n            }\n\n            /*\n             * Recompute the tables based on the accumulated frequencies.\n             */\n            for (int t = 0; t < nGroups; t++) {\n                hbMakeCodeLengths(len[t], rfreq[t], this.data, alphaSize, 20);\n            }\n        }\n\n        return nSelectors;\n    }\n\n    private void sendMTFValues2(final int nGroups, final int nSelectors)\n    {\n        // assert (nGroups < 8) : nGroups;\n\n        final Data dataShadow = this.data;\n        byte[] pos = dataShadow.sendMTFValues2Pos;\n\n        for (int i = nGroups; --i >= 0; ) {\n            pos[i] = (byte) i;\n        }\n\n        for (int i = 0; i < nSelectors; i++) {\n            final byte llI = dataShadow.selector[i];\n            byte tmp = pos[0];\n            int j = 0;\n\n            while (llI != tmp) {\n                j++;\n                byte tmp2 = tmp;\n                tmp = pos[j];\n                pos[j] = tmp2;\n            }\n\n            pos[0] = tmp;\n            dataShadow.selectorMtf[i] = (byte) j;\n        }\n    }\n\n    private void sendMTFValues3(final int nGroups, final int alphaSize)\n    {\n        int[][] code = this.data.sendMTFValuesCode;\n        byte[][] len = this.data.sendMTFValuesLen;\n\n        for (int t = 0; t < nGroups; t++) {\n            int minLen = 32;\n            int maxLen = 0;\n            final byte[] lenT = len[t];\n            for (int i = alphaSize; --i >= 0; ) {\n                final int l = lenT[i] & 0xff;\n                if (l > maxLen) {\n                    maxLen = l;\n                }\n                if (l < minLen) {\n                    minLen = l;\n                }\n            }\n\n            // assert (maxLen <= 20) : maxLen;\n            // assert (minLen >= 1) : minLen;\n\n            hbAssignCodes(code[t], len[t], minLen, maxLen, alphaSize);\n        }\n    }\n\n    private void sendMTFValues4()\n            throws IOException\n    {\n        final boolean[] inUse = this.data.inUse;\n        final boolean[] inUse16 = this.data.sentMTFValues4InUse16;\n\n        for (int i = 16; --i >= 0; ) {\n            inUse16[i] = false;\n            final int i16 = i * 16;\n            for (int j = 16; --j >= 0; ) {\n                if (inUse[i16 + j]) {\n                    inUse16[i] = true;\n                    break;\n                }\n            }\n        }\n\n        for (int i = 0; i < 16; i++) {\n            bsW(1, inUse16[i] ? 1 : 0);\n        }\n\n        final OutputStream outShadow = this.out;\n        int bsLiveShadow = this.bsLive;\n        int bsBuffShadow = this.bsBuff;\n\n        for (int i = 0; i < 16; i++) {\n            if (inUse16[i]) {\n                final int i16 = i * 16;\n                for (int j = 0; j < 16; j++) {\n                    // inlined: bsW(1, inUse[i16 + j] ? 1 : 0);\n                    while (bsLiveShadow >= 8) {\n                        outShadow.write(bsBuffShadow >> 24); // write 8-bit\n                        bsBuffShadow <<= 8;\n                        bsLiveShadow -= 8;\n                    }\n                    if (inUse[i16 + j]) {\n                        bsBuffShadow |= 1 << (32 - bsLiveShadow - 1);\n                    }\n                    bsLiveShadow++;\n                }\n            }\n        }\n\n        this.bsBuff = bsBuffShadow;\n        this.bsLive = bsLiveShadow;\n    }\n\n    private void sendMTFValues5(final int nGroups, final int nSelectors)\n            throws IOException\n    {\n        bsW(3, nGroups);\n        bsW(15, nSelectors);\n\n        final OutputStream outShadow = this.out;\n        final byte[] selectorMtf = this.data.selectorMtf;\n\n        int bsLiveShadow = this.bsLive;\n        int bsBuffShadow = this.bsBuff;\n\n        for (int i = 0; i < nSelectors; i++) {\n            for (int j = 0, hj = selectorMtf[i] & 0xff; j < hj; j++) {\n                // inlined: bsW(1, 1);\n                while (bsLiveShadow >= 8) {\n                    outShadow.write(bsBuffShadow >> 24);\n                    bsBuffShadow <<= 8;\n                    bsLiveShadow -= 8;\n                }\n                bsBuffShadow |= 1 << (32 - bsLiveShadow - 1);\n                bsLiveShadow++;\n            }\n\n            // inlined: bsW(1, 0);\n            while (bsLiveShadow >= 8) {\n                outShadow.write(bsBuffShadow >> 24);\n                bsBuffShadow <<= 8;\n                bsLiveShadow -= 8;\n            }\n            // bsBuffShadow |= 0 << (32 - bsLiveShadow - 1);\n            bsLiveShadow++;\n        }\n\n        this.bsBuff = bsBuffShadow;\n        this.bsLive = bsLiveShadow;\n    }\n\n    private void sendMTFValues6(final int nGroups, final int alphaSize)\n            throws IOException\n    {\n        final byte[][] len = this.data.sendMTFValuesLen;\n        final OutputStream outShadow = this.out;\n\n        int bsLiveShadow = this.bsLive;\n        int bsBuffShadow = this.bsBuff;\n\n        for (int t = 0; t < nGroups; t++) {\n            byte[] lenT = len[t];\n            int curr = lenT[0] & 0xff;\n\n            // inlined: bsW(5, curr);\n            while (bsLiveShadow >= 8) {\n                outShadow.write(bsBuffShadow >> 24); // write 8-bit\n                bsBuffShadow <<= 8;\n                bsLiveShadow -= 8;\n            }\n            bsBuffShadow |= curr << (32 - bsLiveShadow - 5);\n            bsLiveShadow += 5;\n\n            for (int i = 0; i < alphaSize; i++) {\n                int lti = lenT[i] & 0xff;\n                while (curr < lti) {\n                    // inlined: bsW(2, 2);\n                    while (bsLiveShadow >= 8) {\n                        outShadow.write(bsBuffShadow >> 24); // write 8-bit\n                        bsBuffShadow <<= 8;\n                        bsLiveShadow -= 8;\n                    }\n                    bsBuffShadow |= 2 << (32 - bsLiveShadow - 2);\n                    bsLiveShadow += 2;\n\n                    curr++; /* 10 */\n                }\n\n                while (curr > lti) {\n                    // inlined: bsW(2, 3);\n                    while (bsLiveShadow >= 8) {\n                        outShadow.write(bsBuffShadow >> 24); // write 8-bit\n                        bsBuffShadow <<= 8;\n                        bsLiveShadow -= 8;\n                    }\n                    bsBuffShadow |= 3 << (32 - bsLiveShadow - 2);\n                    bsLiveShadow += 2;\n\n                    curr--; /* 11 */\n                }\n\n                // inlined: bsW(1, 0);\n                while (bsLiveShadow >= 8) {\n                    outShadow.write(bsBuffShadow >> 24); // write 8-bit\n                    bsBuffShadow <<= 8;\n                    bsLiveShadow -= 8;\n                }\n                // bsBuffShadow |= 0 << (32 - bsLiveShadow - 1);\n                bsLiveShadow++;\n            }\n        }\n\n        this.bsBuff = bsBuffShadow;\n        this.bsLive = bsLiveShadow;\n    }\n\n    private void sendMTFValues7()\n            throws IOException\n    {\n        final Data dataShadow = this.data;\n        final byte[][] len = dataShadow.sendMTFValuesLen;\n        final int[][] code = dataShadow.sendMTFValuesCode;\n        final OutputStream outShadow = this.out;\n        final byte[] selector = dataShadow.selector;\n        final char[] sfmap = dataShadow.sfmap;\n        final int nMTFShadow = this.nMTF;\n\n        int selCtr = 0;\n\n        int bsLiveShadow = this.bsLive;\n        int bsBuffShadow = this.bsBuff;\n\n        for (int gs = 0; gs < nMTFShadow; ) {\n            final int ge = Math.min(gs + G_SIZE - 1, nMTFShadow - 1);\n            final int selectorSelCtr = selector[selCtr] & 0xff;\n            final int[] codeSelCtr = code[selectorSelCtr];\n            final byte[] lenSelCtr = len[selectorSelCtr];\n\n            while (gs <= ge) {\n                final int sfmapI = sfmap[gs];\n\n                // inlined: bsW(lenSelCtr[sfmapI] & 0xff,\n                // codeSelCtr[sfmapI]);\n                while (bsLiveShadow >= 8) {\n                    outShadow.write(bsBuffShadow >> 24);\n                    bsBuffShadow <<= 8;\n                    bsLiveShadow -= 8;\n                }\n                final int n = lenSelCtr[sfmapI] & 0xFF;\n                bsBuffShadow |= codeSelCtr[sfmapI] << (32 - bsLiveShadow - n);\n                bsLiveShadow += n;\n\n                gs++;\n            }\n\n            gs = ge + 1;\n            selCtr++;\n        }\n\n        this.bsBuff = bsBuffShadow;\n        this.bsLive = bsLiveShadow;\n    }\n\n    private void moveToFrontCodeAndSend()\n            throws IOException\n    {\n        bsW(24, this.origPtr);\n        generateMTFValues();\n        sendMTFValues();\n    }\n\n    /**\n     * This is the most hammered method of this class.\n     *\n     * <p>\n     * This is the version using unrolled loops. Normally I never use such ones\n     * in Java code. The unrolling has shown a noticeable performance improvement\n     * on JRE 1.4.2 (Linux i586 / HotSpot Client). Of course it depends on the\n     * JIT compiler of the vm.\n     * </p>\n     */\n    @SuppressWarnings(\"checkstyle:InnerAssignment\")\n    private boolean mainSimpleSort(final Data dataShadow, final int lo,\n            final int hi, final int d)\n    {\n        final int bigN = hi - lo + 1;\n        if (bigN < 2) {\n            return this.firstAttempt && (this.workDone > this.workLimit);\n        }\n\n        int hp = 0;\n        while (INCS[hp] < bigN) {\n            hp++;\n        }\n\n        final int[] fmap = dataShadow.fmap;\n        final char[] quadrant = dataShadow.quadrant;\n        final byte[] block = dataShadow.block;\n        final int lastShadow = this.last;\n        final int lastPlus1 = lastShadow + 1;\n        final boolean firstAttemptShadow = this.firstAttempt;\n        final int workLimitShadow = this.workLimit;\n        int workDoneShadow = this.workDone;\n\n        // Following block contains unrolled code which could be shortened by\n        // coding it in additional loops.\n\n        HP:\n        while (--hp >= 0) {\n            final int h = INCS[hp];\n            final int mj = lo + h - 1;\n\n            for (int i = lo + h; i <= hi; ) {\n                // copy\n                for (int k = 3; (i <= hi) && (--k >= 0); i++) {\n                    final int v = fmap[i];\n                    final int vd = v + d;\n                    int j = i;\n\n                    // for (int a;\n                    // (j > mj) && mainGtU((a = fmap[j - h]) + d, vd,\n                    // block, quadrant, lastShadow);\n                    // j -= h) {\n                    // fmap[j] = a;\n                    // }\n                    //\n                    // unrolled version:\n\n                    // start inline mainGTU\n                    boolean onceRunned = false;\n                    int a = 0;\n\n                    HAMMER:\n                    while (true) {\n                        if (onceRunned) {\n                            fmap[j] = a;\n                            if ((j -= h) <= mj) {\n                                break;\n                            }\n                        }\n                        else {\n                            onceRunned = true;\n                        }\n\n                        a = fmap[j - h];\n                        int i1 = a + d;\n                        int i2 = vd;\n\n                        // following could be done in a loop, but\n                        // unrolled it for performance:\n                        if (block[i1 + 1] == block[i2 + 1]) {\n                            if (block[i1 + 2] == block[i2 + 2]) {\n                                if (block[i1 + 3] == block[i2 + 3]) {\n                                    if (block[i1 + 4] == block[i2 + 4]) {\n                                        if (block[i1 + 5] == block[i2 + 5]) {\n                                            if (block[(i1 += 6)] == block[(i2 += 6)]) {\n                                                int x = lastShadow;\n                                                while (x > 0) {\n                                                    x -= 4;\n\n                                                    if (block[i1 + 1] == block[i2 + 1]) {\n                                                        if (quadrant[i1] == quadrant[i2]) {\n                                                            if (block[i1 + 2] == block[i2 + 2]) {\n                                                                if (quadrant[i1 + 1] == quadrant[i2 + 1]) {\n                                                                    if (block[i1 + 3] == block[i2 + 3]) {\n                                                                        if (quadrant[i1 + 2] == quadrant[i2 + 2]) {\n                                                                            if (block[i1 + 4] == block[i2 + 4]) {\n                                                                                if (quadrant[i1 + 3] == quadrant[i2 + 3]) {\n                                                                                    if ((i1 += 4) >= lastPlus1) {\n                                                                                        i1 -= lastPlus1;\n                                                                                    }\n                                                                                    if ((i2 += 4) >= lastPlus1) {\n                                                                                        i2 -= lastPlus1;\n                                                                                    }\n                                                                                    workDoneShadow++;\n                                                                                }\n                                                                                else if ((quadrant[i1 + 3] > quadrant[i2 + 3])) {\n                                                                                    continue HAMMER;\n                                                                                }\n                                                                                else {\n                                                                                    break HAMMER;\n                                                                                }\n                                                                            }\n                                                                            else if ((block[i1 + 4] & 0xff) > (block[i2 + 4] & 0xff)) {\n                                                                                continue HAMMER;\n                                                                            }\n                                                                            else {\n                                                                                break HAMMER;\n                                                                            }\n                                                                        }\n                                                                        else if ((quadrant[i1 + 2] > quadrant[i2 + 2])) {\n                                                                            continue HAMMER;\n                                                                        }\n                                                                        else {\n                                                                            break HAMMER;\n                                                                        }\n                                                                    }\n                                                                    else if ((block[i1 + 3] & 0xff) > (block[i2 + 3] & 0xff)) {\n                                                                        continue HAMMER;\n                                                                    }\n                                                                    else {\n                                                                        break HAMMER;\n                                                                    }\n                                                                }\n                                                                else if ((quadrant[i1 + 1] > quadrant[i2 + 1])) {\n                                                                    continue HAMMER;\n                                                                }\n                                                                else {\n                                                                    break HAMMER;\n                                                                }\n                                                            }\n                                                            else if ((block[i1 + 2] & 0xff) > (block[i2 + 2] & 0xff)) {\n                                                                continue HAMMER;\n                                                            }\n                                                            else {\n                                                                break HAMMER;\n                                                            }\n                                                        }\n                                                        else if ((quadrant[i1] > quadrant[i2])) {\n                                                            continue HAMMER;\n                                                        }\n                                                        else {\n                                                            break HAMMER;\n                                                        }\n                                                    }\n                                                    else if ((block[i1 + 1] & 0xff) > (block[i2 + 1] & 0xff)) {\n                                                        continue HAMMER;\n                                                    }\n                                                    else {\n                                                        break HAMMER;\n                                                    }\n                                                }\n                                                break;\n                                            } // while x > 0\n                                            else {\n                                                if ((block[i1] & 0xff) <= (block[i2] & 0xff)) {\n                                                    break;\n                                                }\n                                            }\n                                        }\n                                        else if ((block[i1 + 5] & 0xff) > (block[i2 + 5] & 0xff)) {\n                                            // ignored\n                                        }\n                                        else {\n                                            break;\n                                        }\n                                    }\n                                    else if ((block[i1 + 4] & 0xff) > (block[i2 + 4] & 0xff)) {\n                                        // ignored\n                                    }\n                                    else {\n                                        break;\n                                    }\n                                }\n                                else if ((block[i1 + 3] & 0xff) > (block[i2 + 3] & 0xff)) {\n                                    // ignored\n                                }\n                                else {\n                                    break;\n                                }\n                            }\n                            else if ((block[i1 + 2] & 0xff) > (block[i2 + 2] & 0xff)) {\n                                // ignored\n                            }\n                            else {\n                                break;\n                            }\n                        }\n                        else if ((block[i1 + 1] & 0xff) > (block[i2 + 1] & 0xff)) {\n                            // ignored\n                        }\n                        else {\n                            break;\n                        }\n                    }\n\n                    fmap[j] = v;\n                }\n\n                if (firstAttemptShadow && (i <= hi)\n                        && (workDoneShadow > workLimitShadow)) {\n                    break HP;\n                }\n            }\n        }\n\n        this.workDone = workDoneShadow;\n        return firstAttemptShadow && (workDoneShadow > workLimitShadow);\n    }\n\n    private static void vswap(int[] fmap, int p1, int p2, int n)\n    {\n        n += p1;\n        while (p1 < n) {\n            int t = fmap[p1];\n            fmap[p1++] = fmap[p2];\n            fmap[p2++] = t;\n        }\n    }\n\n    private static byte med3(byte a, byte b, byte c)\n    {\n        return (a < b) ? (b < c ? b : a < c ? c : a) : (b > c ? b : a > c ? c : a);\n    }\n\n    private void blockSort()\n    {\n        this.workLimit = WORK_FACTOR * this.last;\n        this.workDone = 0;\n        this.blockRandomised = false;\n        this.firstAttempt = true;\n        mainSort();\n\n        if (this.firstAttempt && (this.workDone > this.workLimit)) {\n            randomiseBlock();\n            this.workLimit = 0;\n            this.workDone = 0;\n            this.firstAttempt = false;\n            mainSort();\n        }\n\n        int[] fmap = this.data.fmap;\n        this.origPtr = -1;\n        for (int i = 0, lastShadow = this.last; i <= lastShadow; i++) {\n            if (fmap[i] == 0) {\n                this.origPtr = i;\n                break;\n            }\n        }\n    }\n\n    /**\n     * Method \"mainQSort3\", file \"blocksort.c\", BZip2 1.0.2\n     */\n    private void mainQSort3(final Data dataShadow, final int loSt, final int hiSt, final int dSt)\n    {\n        final int[] stackLl = dataShadow.stackLl;\n        final int[] stackHh = dataShadow.stackHh;\n        final int[] stackDd = dataShadow.stackDd;\n        final int[] fmap = dataShadow.fmap;\n        final byte[] block = dataShadow.block;\n\n        stackLl[0] = loSt;\n        stackHh[0] = hiSt;\n        stackDd[0] = dSt;\n\n        for (int sp = 1; --sp >= 0; ) {\n            final int lo = stackLl[sp];\n            final int hi = stackHh[sp];\n            final int d = stackDd[sp];\n\n            if ((hi - lo < SMALL_THRESH) || (d > DEPTH_THRESH)) {\n                if (mainSimpleSort(dataShadow, lo, hi, d)) {\n                    return;\n                }\n            }\n            else {\n                final int d1 = d + 1;\n                final int med = med3(block[fmap[lo] + d1], block[fmap[hi] + d1], block[fmap[(lo + hi) >>> 1] + d1]) & 0xff;\n\n                int unLo = lo;\n                int unHi = hi;\n                int ltLo = lo;\n                int gtHi = hi;\n\n                while (true) {\n                    while (unLo <= unHi) {\n                        final int n = ((int) block[fmap[unLo] + d1] & 0xff) - med;\n                        if (n == 0) {\n                            final int temp = fmap[unLo];\n                            fmap[unLo++] = fmap[ltLo];\n                            fmap[ltLo++] = temp;\n                        }\n                        else if (n < 0) {\n                            unLo++;\n                        }\n                        else {\n                            break;\n                        }\n                    }\n\n                    while (unLo <= unHi) {\n                        final int n = ((int) block[fmap[unHi] + d1] & 0xff) - med;\n                        if (n == 0) {\n                            final int temp = fmap[unHi];\n                            fmap[unHi--] = fmap[gtHi];\n                            fmap[gtHi--] = temp;\n                        }\n                        else if (n > 0) {\n                            unHi--;\n                        }\n                        else {\n                            break;\n                        }\n                    }\n\n                    if (unLo <= unHi) {\n                        final int temp = fmap[unLo];\n                        fmap[unLo++] = fmap[unHi];\n                        fmap[unHi--] = temp;\n                    }\n                    else {\n                        break;\n                    }\n                }\n\n                if (gtHi < ltLo) {\n                    stackLl[sp] = lo;\n                    stackHh[sp] = hi;\n                    stackDd[sp] = d1;\n                    sp++;\n                }\n                else {\n                    int n = Math.min((ltLo - lo), (unLo - ltLo));\n                    vswap(fmap, lo, unLo - n, n);\n                    int m = Math.min((hi - gtHi), (gtHi - unHi));\n                    vswap(fmap, unLo, hi - m + 1, m);\n\n                    n = lo + unLo - ltLo - 1;\n                    m = hi - (gtHi - unHi) + 1;\n\n                    stackLl[sp] = lo;\n                    stackHh[sp] = n;\n                    stackDd[sp] = d;\n                    sp++;\n\n                    stackLl[sp] = n + 1;\n                    stackHh[sp] = m - 1;\n                    stackDd[sp] = d1;\n                    sp++;\n\n                    stackLl[sp] = m;\n                    stackHh[sp] = hi;\n                    stackDd[sp] = d;\n                    sp++;\n                }\n            }\n        }\n    }\n\n    private void mainSort()\n    {\n        final Data dataShadow = this.data;\n        final int[] runningOrder = dataShadow.mainSortRunningOrder;\n        final int[] copy = dataShadow.mainSortCopy;\n        final boolean[] bigDone = dataShadow.mainSortBigDone;\n        final int[] ftab = dataShadow.ftab;\n        final byte[] block = dataShadow.block;\n        final int[] fmap = dataShadow.fmap;\n        final char[] quadrant = dataShadow.quadrant;\n        final int lastShadow = this.last;\n        final int workLimitShadow = this.workLimit;\n        final boolean firstAttemptShadow = this.firstAttempt;\n\n        // Set up the 2-byte frequency table\n        for (int i = 65537; --i >= 0; ) {\n            ftab[i] = 0;\n        }\n\n        /*\n         * In the various block-sized structures, live data runs from 0 to\n         * last+NUM_OVERSHOOT_BYTES inclusive. First, set up the overshoot area\n         * for block.\n         */\n        for (int i = 0; i < NUM_OVERSHOOT_BYTES; i++) {\n            block[lastShadow + i + 2] = block[(i % (lastShadow + 1)) + 1];\n        }\n        for (int i = lastShadow + NUM_OVERSHOOT_BYTES + 1; --i >= 0; ) {\n            quadrant[i] = 0;\n        }\n        block[0] = block[lastShadow + 1];\n\n        // Complete the initial radix sort:\n\n        int c1 = block[0] & 0xff;\n        for (int i = 0; i <= lastShadow; i++) {\n            final int c2 = block[i + 1] & 0xff;\n            ftab[(c1 << 8) + c2]++;\n            c1 = c2;\n        }\n\n        for (int i = 1; i <= 65536; i++) {\n            ftab[i] += ftab[i - 1];\n        }\n\n        c1 = block[1] & 0xff;\n        for (int i = 0; i < lastShadow; i++) {\n            final int c2 = block[i + 2] & 0xff;\n            fmap[--ftab[(c1 << 8) + c2]] = i;\n            c1 = c2;\n        }\n\n        fmap[--ftab[((block[lastShadow + 1] & 0xff) << 8) + (block[1] & 0xff)]] = lastShadow;\n\n        /*\n         * Now ftab contains the first loc of every small bucket. Calculate the\n         * running order, from smallest to largest big bucket.\n         */\n        for (int i = 256; --i >= 0; ) {\n            bigDone[i] = false;\n            runningOrder[i] = i;\n        }\n\n        for (int h = 364; h != 1; ) {\n            h /= 3;\n            for (int i = h; i <= 255; i++) {\n                final int vv = runningOrder[i];\n                final int a = ftab[(vv + 1) << 8] - ftab[vv << 8];\n                final int b = h - 1;\n                int j = i;\n                for (int ro = runningOrder[j - h]; (ftab[(ro + 1) << 8] - ftab[ro << 8]) > a; ro = runningOrder[j - h]) {\n                    runningOrder[j] = ro;\n                    j -= h;\n                    if (j <= b) {\n                        break;\n                    }\n                }\n                runningOrder[j] = vv;\n            }\n        }\n\n        /*\n         * The main sorting loop.\n         */\n        for (int i = 0; i <= 255; i++) {\n            /*\n             * Process big buckets, starting with the least full.\n             */\n            final int ss = runningOrder[i];\n\n            // Step 1:\n            /*\n             * Complete the big bucket [ss] by quick sorting any unsorted small\n             * buckets [ss, j]. Hopefully previous pointer-scanning phases have\n             * already completed many of the small buckets [ss, j], so we don't\n             * have to sort them at all.\n             */\n            for (int j = 0; j <= 255; j++) {\n                final int sb = (ss << 8) + j;\n                final int ftabSb = ftab[sb];\n                if ((ftabSb & SET_MASK) != SET_MASK) {\n                    final int lo = ftabSb & CLEAR_MASK;\n                    final int hi = (ftab[sb + 1] & CLEAR_MASK) - 1;\n                    if (hi > lo) {\n                        mainQSort3(dataShadow, lo, hi, 2);\n                        if (firstAttemptShadow\n                                && (this.workDone > workLimitShadow)) {\n                            return;\n                        }\n                    }\n                    ftab[sb] = ftabSb | SET_MASK;\n                }\n            }\n\n            // Step 2:\n            // Now scan this big bucket to synthesise the\n            // sorted order for small buckets [t, ss] for all t != ss.\n\n            for (int j = 0; j <= 255; j++) {\n                copy[j] = ftab[(j << 8) + ss] & CLEAR_MASK;\n            }\n\n            for (int j = ftab[ss << 8] & CLEAR_MASK, hj = (ftab[(ss + 1) << 8] & CLEAR_MASK); j < hj; j++) {\n                final int fmapJ = fmap[j];\n                c1 = block[fmapJ] & 0xff;\n                if (!bigDone[c1]) {\n                    fmap[copy[c1]] = (fmapJ == 0) ? lastShadow : (fmapJ - 1);\n                    copy[c1]++;\n                }\n            }\n\n            for (int j = 256; --j >= 0; ) {\n                ftab[(j << 8) + ss] |= SET_MASK;\n            }\n\n            // Step 3:\n            /*\n             * The ss big bucket is now done. Record this fact, and update the\n             * quadrant descriptors. Remember to update quadrants in the\n             * overshoot area too, if necessary. The \"if (i < 255)\" test merely\n             * skips this updating for the last bucket processed, since updating\n             * for the last bucket is pointless.\n             */\n            bigDone[ss] = true;\n\n            if (i < 255) {\n                final int bbStart = ftab[ss << 8] & CLEAR_MASK;\n                final int bbSize = (ftab[(ss + 1) << 8] & CLEAR_MASK) - bbStart;\n                int shifts = 0;\n\n                while ((bbSize >> shifts) > 65534) {\n                    shifts++;\n                }\n\n                for (int j = 0; j < bbSize; j++) {\n                    final int a2update = fmap[bbStart + j];\n                    final char qVal = (char) (j >> shifts);\n                    quadrant[a2update] = qVal;\n                    if (a2update < NUM_OVERSHOOT_BYTES) {\n                        quadrant[a2update + lastShadow + 1] = qVal;\n                    }\n                }\n            }\n        }\n    }\n\n    private void randomiseBlock()\n    {\n        final boolean[] inUse = this.data.inUse;\n        final byte[] block = this.data.block;\n        final int lastShadow = this.last;\n\n        for (int i = 256; --i >= 0; ) {\n            inUse[i] = false;\n        }\n\n        int rNToGo = 0;\n        int rTPos = 0;\n        for (int i = 0, j = 1; i <= lastShadow; i = j, j++) {\n            if (rNToGo == 0) {\n                rNToGo = (char) R_NUMS[rTPos];\n                if (++rTPos == 512) {\n                    rTPos = 0;\n                }\n            }\n\n            rNToGo--;\n            block[j] ^= ((rNToGo == 1) ? 1 : 0);\n\n            // handle 16 bit signed numbers\n            inUse[block[j] & 0xff] = true;\n        }\n\n        this.blockRandomised = true;\n    }\n\n    private void generateMTFValues()\n    {\n        final int lastShadow = this.last;\n        final Data dataShadow = this.data;\n        final boolean[] inUse = dataShadow.inUse;\n        final byte[] block = dataShadow.block;\n        final int[] fmap = dataShadow.fmap;\n        final char[] sfmap = dataShadow.sfmap;\n        final int[] mtfFreq = dataShadow.mtfFreq;\n        final byte[] unseqToSeq = dataShadow.unseqToSeq;\n        final byte[] yy = dataShadow.generateMTFValuesYy;\n\n        // make maps\n        int nInUseShadow = 0;\n        for (int i = 0; i < 256; i++) {\n            if (inUse[i]) {\n                unseqToSeq[i] = (byte) nInUseShadow;\n                nInUseShadow++;\n            }\n        }\n        this.nInUse = nInUseShadow;\n\n        final int eob = nInUseShadow + 1;\n\n        for (int i = eob; i >= 0; i--) {\n            mtfFreq[i] = 0;\n        }\n\n        for (int i = nInUseShadow; --i >= 0; ) {\n            yy[i] = (byte) i;\n        }\n\n        int wr = 0;\n        int zPend = 0;\n\n        for (int i = 0; i <= lastShadow; i++) {\n            final byte llI = unseqToSeq[block[fmap[i]] & 0xff];\n            byte tmp = yy[0];\n            int j = 0;\n\n            while (llI != tmp) {\n                j++;\n                byte tmp2 = tmp;\n                tmp = yy[j];\n                yy[j] = tmp2;\n            }\n            yy[0] = tmp;\n\n            if (j == 0) {\n                zPend++;\n            }\n            else {\n                if (zPend > 0) {\n                    zPend--;\n                    while (true) {\n                        if ((zPend & 1) == 0) {\n                            sfmap[wr] = RUN_A;\n                            wr++;\n                            mtfFreq[RUN_A]++;\n                        }\n                        else {\n                            sfmap[wr] = RUN_B;\n                            wr++;\n                            mtfFreq[RUN_B]++;\n                        }\n\n                        if (zPend >= 2) {\n                            zPend = (zPend - 2) >> 1;\n                        }\n                        else {\n                            break;\n                        }\n                    }\n                    zPend = 0;\n                }\n                sfmap[wr] = (char) (j + 1);\n                wr++;\n                mtfFreq[j + 1]++;\n            }\n        }\n\n        if (zPend > 0) {\n            zPend--;\n            while (true) {\n                if ((zPend & 1) == 0) {\n                    sfmap[wr] = RUN_A;\n                    wr++;\n                    mtfFreq[RUN_A]++;\n                }\n                else {\n                    sfmap[wr] = RUN_B;\n                    wr++;\n                    mtfFreq[RUN_B]++;\n                }\n\n                if (zPend >= 2) {\n                    zPend = (zPend - 2) >> 1;\n                }\n                else {\n                    break;\n                }\n            }\n        }\n\n        sfmap[wr] = (char) eob;\n        mtfFreq[eob]++;\n        this.nMTF = wr + 1;\n    }\n\n    private static final class Data\n    {\n        // with blockSize 900k\n        final boolean[] inUse = new boolean[256]; // 256 byte\n        final byte[] unseqToSeq = new byte[256]; // 256 byte\n        final int[] mtfFreq = new int[MAX_ALPHA_SIZE]; // 1032 byte\n        final byte[] selector = new byte[MAX_SELECTORS]; // 18002 byte\n        final byte[] selectorMtf = new byte[MAX_SELECTORS]; // 18002 byte\n\n        final byte[] generateMTFValuesYy = new byte[256]; // 256 byte\n        final byte[][] sendMTFValuesLen = new byte[N_GROUPS][MAX_ALPHA_SIZE]; // 1548\n        // byte\n        final int[][] sendMTFValuesRfreq = new int[N_GROUPS][MAX_ALPHA_SIZE]; // 6192\n        // byte\n        final int[] sendMTFValuesFave = new int[N_GROUPS]; // 24 byte\n        final short[] sendMTFValuesCost = new short[N_GROUPS]; // 12 byte\n        final int[][] sendMTFValuesCode = new int[N_GROUPS][MAX_ALPHA_SIZE]; // 6192\n        // byte\n        final byte[] sendMTFValues2Pos = new byte[N_GROUPS]; // 6 byte\n        final boolean[] sentMTFValues4InUse16 = new boolean[16]; // 16 byte\n\n        final int[] stackLl = new int[QSORT_STACK_SIZE]; // 4000 byte\n        final int[] stackHh = new int[QSORT_STACK_SIZE]; // 4000 byte\n        final int[] stackDd = new int[QSORT_STACK_SIZE]; // 4000 byte\n\n        final int[] mainSortRunningOrder = new int[256]; // 1024 byte\n        final int[] mainSortCopy = new int[256]; // 1024 byte\n        final boolean[] mainSortBigDone = new boolean[256]; // 256 byte\n\n        final int[] heap = new int[MAX_ALPHA_SIZE + 2]; // 1040 byte\n        final int[] weight = new int[MAX_ALPHA_SIZE * 2]; // 2064 byte\n        final int[] parent = new int[MAX_ALPHA_SIZE * 2]; // 2064 byte\n\n        final int[] ftab = new int[65537]; // 262148 byte\n        // ------------\n        // 333408 byte\n\n        final byte[] block; // 900021 byte\n        final int[] fmap; // 3600000 byte\n        final char[] sfmap; // 3600000 byte\n        // ------------\n        // 8433529 byte\n        // ============\n\n        /**\n         * Array instance identical to sfmap, both are used only temporarily and\n         * independently, so we do not need to allocate additional memory.\n         */\n        final char[] quadrant;\n\n        Data(int blockSize100k)\n        {\n            final int n = blockSize100k * BZip2Constants.BASE_BLOCK_SIZE;\n            this.block = new byte[(n + 1 + NUM_OVERSHOOT_BYTES)];\n            this.fmap = new int[n];\n            this.sfmap = new char[2 * n];\n            this.quadrant = this.sfmap;\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/bzip2/Crc32.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\n// forked from Apache Hadoop\nfinal class Crc32\n{\n    private static final int[] CRC_32_TABLE = {0x00000000, 0x04c11db7, 0x09823b6e,\n            0x0d4326d9, 0x130476dc, 0x17c56b6b, 0x1a864db2, 0x1e475005,\n            0x2608edb8, 0x22c9f00f, 0x2f8ad6d6, 0x2b4bcb61, 0x350c9b64,\n            0x31cd86d3, 0x3c8ea00a, 0x384fbdbd, 0x4c11db70, 0x48d0c6c7,\n            0x4593e01e, 0x4152fda9, 0x5f15adac, 0x5bd4b01b, 0x569796c2,\n            0x52568b75, 0x6a1936c8, 0x6ed82b7f, 0x639b0da6, 0x675a1011,\n            0x791d4014, 0x7ddc5da3, 0x709f7b7a, 0x745e66cd, 0x9823b6e0,\n            0x9ce2ab57, 0x91a18d8e, 0x95609039, 0x8b27c03c, 0x8fe6dd8b,\n            0x82a5fb52, 0x8664e6e5, 0xbe2b5b58, 0xbaea46ef, 0xb7a96036,\n            0xb3687d81, 0xad2f2d84, 0xa9ee3033, 0xa4ad16ea, 0xa06c0b5d,\n            0xd4326d90, 0xd0f37027, 0xddb056fe, 0xd9714b49, 0xc7361b4c,\n            0xc3f706fb, 0xceb42022, 0xca753d95, 0xf23a8028, 0xf6fb9d9f,\n            0xfbb8bb46, 0xff79a6f1, 0xe13ef6f4, 0xe5ffeb43, 0xe8bccd9a,\n            0xec7dd02d, 0x34867077, 0x30476dc0, 0x3d044b19, 0x39c556ae,\n            0x278206ab, 0x23431b1c, 0x2e003dc5, 0x2ac12072, 0x128e9dcf,\n            0x164f8078, 0x1b0ca6a1, 0x1fcdbb16, 0x018aeb13, 0x054bf6a4,\n            0x0808d07d, 0x0cc9cdca, 0x7897ab07, 0x7c56b6b0, 0x71159069,\n            0x75d48dde, 0x6b93dddb, 0x6f52c06c, 0x6211e6b5, 0x66d0fb02,\n            0x5e9f46bf, 0x5a5e5b08, 0x571d7dd1, 0x53dc6066, 0x4d9b3063,\n            0x495a2dd4, 0x44190b0d, 0x40d816ba, 0xaca5c697, 0xa864db20,\n            0xa527fdf9, 0xa1e6e04e, 0xbfa1b04b, 0xbb60adfc, 0xb6238b25,\n            0xb2e29692, 0x8aad2b2f, 0x8e6c3698, 0x832f1041, 0x87ee0df6,\n            0x99a95df3, 0x9d684044, 0x902b669d, 0x94ea7b2a, 0xe0b41de7,\n            0xe4750050, 0xe9362689, 0xedf73b3e, 0xf3b06b3b, 0xf771768c,\n            0xfa325055, 0xfef34de2, 0xc6bcf05f, 0xc27dede8, 0xcf3ecb31,\n            0xcbffd686, 0xd5b88683, 0xd1799b34, 0xdc3abded, 0xd8fba05a,\n            0x690ce0ee, 0x6dcdfd59, 0x608edb80, 0x644fc637, 0x7a089632,\n            0x7ec98b85, 0x738aad5c, 0x774bb0eb, 0x4f040d56, 0x4bc510e1,\n            0x46863638, 0x42472b8f, 0x5c007b8a, 0x58c1663d, 0x558240e4,\n            0x51435d53, 0x251d3b9e, 0x21dc2629, 0x2c9f00f0, 0x285e1d47,\n            0x36194d42, 0x32d850f5, 0x3f9b762c, 0x3b5a6b9b, 0x0315d626,\n            0x07d4cb91, 0x0a97ed48, 0x0e56f0ff, 0x1011a0fa, 0x14d0bd4d,\n            0x19939b94, 0x1d528623, 0xf12f560e, 0xf5ee4bb9, 0xf8ad6d60,\n            0xfc6c70d7, 0xe22b20d2, 0xe6ea3d65, 0xeba91bbc, 0xef68060b,\n            0xd727bbb6, 0xd3e6a601, 0xdea580d8, 0xda649d6f, 0xc423cd6a,\n            0xc0e2d0dd, 0xcda1f604, 0xc960ebb3, 0xbd3e8d7e, 0xb9ff90c9,\n            0xb4bcb610, 0xb07daba7, 0xae3afba2, 0xaafbe615, 0xa7b8c0cc,\n            0xa379dd7b, 0x9b3660c6, 0x9ff77d71, 0x92b45ba8, 0x9675461f,\n            0x8832161a, 0x8cf30bad, 0x81b02d74, 0x857130c3, 0x5d8a9099,\n            0x594b8d2e, 0x5408abf7, 0x50c9b640, 0x4e8ee645, 0x4a4ffbf2,\n            0x470cdd2b, 0x43cdc09c, 0x7b827d21, 0x7f436096, 0x7200464f,\n            0x76c15bf8, 0x68860bfd, 0x6c47164a, 0x61043093, 0x65c52d24,\n            0x119b4be9, 0x155a565e, 0x18197087, 0x1cd86d30, 0x029f3d35,\n            0x065e2082, 0x0b1d065b, 0x0fdc1bec, 0x3793a651, 0x3352bbe6,\n            0x3e119d3f, 0x3ad08088, 0x2497d08d, 0x2056cd3a, 0x2d15ebe3,\n            0x29d4f654, 0xc5a92679, 0xc1683bce, 0xcc2b1d17, 0xc8ea00a0,\n            0xd6ad50a5, 0xd26c4d12, 0xdf2f6bcb, 0xdbee767c, 0xe3a1cbc1,\n            0xe760d676, 0xea23f0af, 0xeee2ed18, 0xf0a5bd1d, 0xf464a0aa,\n            0xf9278673, 0xfde69bc4, 0x89b8fd09, 0x8d79e0be, 0x803ac667,\n            0x84fbdbd0, 0x9abc8bd5, 0x9e7d9662, 0x933eb0bb, 0x97ffad0c,\n            0xafb010b1, 0xab710d06, 0xa6322bdf, 0xa2f33668, 0xbcb4666d,\n            0xb8757bda, 0xb5365d03, 0xb1f740b4};\n\n    private int globalCrc;\n\n    Crc32()\n    {\n        initialiseCRC();\n    }\n\n    void initialiseCRC()\n    {\n        globalCrc = 0xffffffff;\n    }\n\n    int getFinalCRC()\n    {\n        return ~globalCrc;\n    }\n\n    void updateCRC(int value)\n    {\n        int temp = (globalCrc >> 24) ^ value;\n        if (temp < 0) {\n            temp = 256 + temp;\n        }\n        globalCrc = (globalCrc << 8) ^ CRC_32_TABLE[temp];\n    }\n\n    void updateCRC(int value, int repeat)\n    {\n        int globalCrcShadow = this.globalCrc;\n        while (repeat-- > 0) {\n            int temp = (globalCrcShadow >> 24) ^ value;\n            globalCrcShadow = (globalCrcShadow << 8) ^ CRC_32_TABLE[(temp >= 0) ? temp : (temp + 256)];\n        }\n        this.globalCrc = globalCrcShadow;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.Compressor;\n\npublic interface DeflateCompressor\n        extends Compressor\n{\n    static DeflateCompressor create()\n    {\n        if (DeflateNativeCompressor.isEnabled()) {\n            return new DeflateNativeCompressor();\n        }\n        return new DeflateJavaCompressor();\n    }\n\n    static DeflateCompressor create(int compressionLevel)\n    {\n        if (DeflateNativeCompressor.isEnabled()) {\n            return new DeflateNativeCompressor(compressionLevel);\n        }\n        return new DeflateJavaCompressor(compressionLevel);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.Decompressor;\n\npublic interface DeflateDecompressor\n        extends Decompressor\n{\n    static DeflateDecompressor create()\n    {\n        if (DeflateNativeDecompressor.isEnabled()) {\n            return new DeflateNativeDecompressor();\n        }\n        return new DeflateJavaDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateJavaCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport java.lang.foreign.MemorySegment;\nimport java.util.zip.Deflater;\n\nimport static java.lang.Math.toIntExact;\nimport static java.util.Objects.requireNonNull;\nimport static java.util.zip.Deflater.FULL_FLUSH;\n\npublic class DeflateJavaCompressor\n        implements DeflateCompressor\n{\n    private static final int EXTRA_COMPRESSION_SPACE = 16;\n    private static final int COMPRESSION_LEVEL = 4;\n\n    private final int compressionLevel;\n\n    public DeflateJavaCompressor()\n    {\n        this(COMPRESSION_LEVEL);\n    }\n\n    public DeflateJavaCompressor(int compressionLevel)\n    {\n        if (compressionLevel < 0 || compressionLevel > 9) {\n            throw new IllegalArgumentException(\"Invalid compression level: %d (must be 0-9)\".formatted(compressionLevel));\n        }\n        this.compressionLevel = compressionLevel;\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        // From Mark Adler's post http://stackoverflow.com/questions/1207877/java-size-of-compression-output-bytearray\n        return uncompressedSize + ((uncompressedSize + 7) >> 3) + ((uncompressedSize + 63) >> 6) + 5 + EXTRA_COMPRESSION_SPACE;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        try (Deflater deflater = new Deflater(compressionLevel, true)) {\n            deflater.setInput(input, inputOffset, inputLength);\n            deflater.finish();\n\n            int compressedDataLength = deflater.deflate(output, outputOffset, maxOutputLength, FULL_FLUSH);\n            if (!deflater.finished()) {\n                throw new IllegalStateException(\"Output buffer too small\");\n            }\n            return compressedDataLength;\n        }\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        int maxCompressedLength = maxCompressedLength(toIntExact(input.byteSize()));\n        if (output.byteSize() < maxCompressedLength) {\n            throw new IllegalArgumentException(\"Output buffer must be at least \" + maxCompressedLength + \" bytes\");\n        }\n\n        try (Deflater deflater = new Deflater(compressionLevel, true)) {\n            deflater.setInput(input.asByteBuffer());\n            deflater.finish();\n\n            int compressedDataLength = deflater.deflate(output.asByteBuffer(), FULL_FLUSH);\n            if (!deflater.finished()) {\n                throw new IllegalStateException(\"maxCompressedLength formula is incorrect, because deflate produced more data\");\n            }\n            return compressedDataLength;\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(\"Invalid offset or length (%s, %s) in array of length %s\".formatted(offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateJavaDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\nimport java.nio.ByteBuffer;\nimport java.util.zip.DataFormatException;\nimport java.util.zip.Inflater;\n\nimport static java.lang.String.format;\nimport static java.util.Objects.requireNonNull;\n\npublic class DeflateJavaDecompressor\n        implements DeflateDecompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        try (Inflater inflater = new Inflater(true)) {\n            inflater.setInput(input, inputOffset, inputLength);\n\n            int uncompressedLength = 0;\n            while (true) {\n                uncompressedLength += inflater.inflate(output, outputOffset + uncompressedLength, maxOutputLength - uncompressedLength);\n                if (inflater.finished() || uncompressedLength >= maxOutputLength) {\n                    break;\n                }\n                if (inflater.needsInput()) {\n                    throw new MalformedInputException(0, format(\"Premature end of input stream. Input length = %s, uncompressed length = %d\", inputLength, uncompressedLength));\n                }\n            }\n\n            if (!inflater.finished()) {\n                throw new MalformedInputException(0, \"Output buffer too small\");\n            }\n\n            return uncompressedLength;\n        }\n        catch (DataFormatException e) {\n            throw new RuntimeException(\"Invalid compressed stream\", e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        ByteBuffer inputByteBuffer = input.asByteBuffer();\n        try (Inflater inflater = new Inflater(true)) {\n            inflater.setInput(inputByteBuffer);\n\n            ByteBuffer outputByteBuffer = output.asByteBuffer();\n            int uncompressedLength = 0;\n            while (true) {\n                uncompressedLength += inflater.inflate(outputByteBuffer);\n                if (inflater.finished() || uncompressedLength >= output.byteSize()) {\n                    break;\n                }\n                if (inflater.needsInput()) {\n                    throw new MalformedInputException(inputByteBuffer.position(), \"Premature end of input stream. Input length = \" + input.byteSize() + \", uncompressed length = \" + uncompressedLength);\n                }\n            }\n\n            if (!inflater.finished()) {\n                throw new MalformedInputException(inputByteBuffer.position(), \"Could not decompress all input (output buffer too small?)\");\n            }\n\n            return uncompressedLength;\n        }\n        catch (DataFormatException e) {\n            throw new RuntimeException(\"Invalid compressed stream\", e);\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.internal.NativeLoader;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.invoke.MethodHandle;\nimport java.util.Optional;\n\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class DeflateNative\n{\n    private record MethodHandles(\n            @NativeSignature(name = \"libdeflate_alloc_compressor\", returnType = MemorySegment.class, argumentTypes = int.class)\n            MethodHandle allocCompressor,\n            @NativeSignature(name = \"libdeflate_free_compressor\", returnType = void.class, argumentTypes = MemorySegment.class)\n            MethodHandle freeCompressor,\n            @NativeSignature(name = \"libdeflate_deflate_compress\", returnType = long.class, argumentTypes = {MemorySegment.class, MemorySegment.class, long.class, MemorySegment.class, long.class})\n            MethodHandle compress,\n            @NativeSignature(name = \"libdeflate_deflate_compress_bound\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle compressBound,\n            @NativeSignature(name = \"libdeflate_alloc_decompressor\", returnType = MemorySegment.class, argumentTypes = {})\n            MethodHandle allocDecompressor,\n            @NativeSignature(name = \"libdeflate_free_decompressor\", returnType = void.class, argumentTypes = MemorySegment.class)\n            MethodHandle freeDecompressor,\n            @NativeSignature(name = \"libdeflate_deflate_decompress\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, long.class, MemorySegment.class, long.class, MemorySegment.class})\n            MethodHandle decompress) {}\n\n    private DeflateNative() {}\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n    private static final MethodHandle ALLOC_COMPRESSOR_METHOD;\n    private static final MethodHandle FREE_COMPRESSOR_METHOD;\n    private static final MethodHandle COMPRESS_METHOD;\n    private static final MethodHandle COMPRESS_BOUND_METHOD;\n    private static final MethodHandle ALLOC_DECOMPRESSOR_METHOD;\n    private static final MethodHandle FREE_DECOMPRESSOR_METHOD;\n    private static final MethodHandle DECOMPRESS_METHOD;\n\n    static final int LIBDEFLATE_SUCCESS = 0;\n    static final int LIBDEFLATE_BAD_DATA = 1;\n    static final int LIBDEFLATE_SHORT_OUTPUT = 2;\n    static final int LIBDEFLATE_INSUFFICIENT_SPACE = 3;\n\n    static {\n        NativeLoader.Symbols<MethodHandles> symbols = NativeLoader.loadSymbols(\"deflate\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n        ALLOC_COMPRESSOR_METHOD = methodHandles.allocCompressor();\n        FREE_COMPRESSOR_METHOD = methodHandles.freeCompressor();\n        COMPRESS_METHOD = methodHandles.compress();\n        COMPRESS_BOUND_METHOD = methodHandles.compressBound();\n        ALLOC_DECOMPRESSOR_METHOD = methodHandles.allocDecompressor();\n        FREE_DECOMPRESSOR_METHOD = methodHandles.freeDecompressor();\n        DECOMPRESS_METHOD = methodHandles.decompress();\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"Deflate native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    public static MemorySegment allocCompressor(int compressionLevel)\n    {\n        try {\n            MemorySegment compressor = (MemorySegment) ALLOC_COMPRESSOR_METHOD.invokeExact(compressionLevel);\n            if (compressor.equals(MemorySegment.NULL)) {\n                throw new IllegalStateException(\"Failed to allocate libdeflate compressor\");\n            }\n            return compressor;\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    public static void freeCompressor(MemorySegment compressor)\n    {\n        try {\n            FREE_COMPRESSOR_METHOD.invokeExact(compressor);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    public static long compressBound(MemorySegment compressor, long inputLength)\n    {\n        try {\n            return (long) COMPRESS_BOUND_METHOD.invokeExact(compressor, inputLength);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    public static long compress(MemorySegment compressor, MemorySegment input, long inputLength, MemorySegment output, long outputLength)\n    {\n        long result;\n        try {\n            result = (long) COMPRESS_METHOD.invokeExact(compressor, input, inputLength, output, outputLength);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n\n        if (result == 0) {\n            throw new IllegalArgumentException(\"Output buffer too small\");\n        }\n        return result;\n    }\n\n    public static MemorySegment allocDecompressor()\n    {\n        try {\n            MemorySegment decompressor = (MemorySegment) ALLOC_DECOMPRESSOR_METHOD.invokeExact();\n            if (decompressor.equals(MemorySegment.NULL)) {\n                throw new IllegalStateException(\"Failed to allocate libdeflate decompressor\");\n            }\n            return decompressor;\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    public static void freeDecompressor(MemorySegment decompressor)\n    {\n        try {\n            FREE_DECOMPRESSOR_METHOD.invokeExact(decompressor);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    public static int decompress(MemorySegment decompressor, MemorySegment input, long inputLength, MemorySegment output, long outputLength, MemorySegment actualOutputLength)\n    {\n        try {\n            return (int) DECOMPRESS_METHOD.invokeExact(decompressor, input, inputLength, output, outputLength, actualOutputLength);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateNativeCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.ref.Cleaner;\n\nimport static java.lang.Math.toIntExact;\n\n/**\n * A single compressor is not safe to use by multiple threads concurrently.\n * However, different threads may use different compressors concurrently.\n */\npublic class DeflateNativeCompressor\n        implements DeflateCompressor\n{\n    private static final Cleaner CLEANER = Cleaner.create();\n    private static final int DEFAULT_COMPRESSION_LEVEL = 6;\n\n    private final MemorySegment compressor;\n\n    public DeflateNativeCompressor()\n    {\n        this(DEFAULT_COMPRESSION_LEVEL);\n    }\n\n    public DeflateNativeCompressor(int compressionLevel)\n    {\n        DeflateNative.verifyEnabled();\n        if (compressionLevel < 0 || compressionLevel > 12) {\n            throw new IllegalArgumentException(\"Invalid compression level: %d (must be 0-12)\".formatted(compressionLevel));\n        }\n        this.compressor = DeflateNative.allocCompressor(compressionLevel);\n        CLEANER.register(this, new CompressorCleaner(compressor));\n    }\n\n    public static boolean isEnabled()\n    {\n        return DeflateNative.isEnabled();\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return toIntExact(DeflateNative.compressBound(compressor, uncompressedSize));\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return toIntExact(DeflateNative.compress(compressor, inputSegment, inputLength, outputSegment, maxOutputLength));\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        return toIntExact(DeflateNative.compress(compressor, input, input.byteSize(), output, output.byteSize()));\n    }\n\n    private record CompressorCleaner(MemorySegment compressor)\n            implements Runnable\n    {\n        @Override\n        public void run()\n        {\n            DeflateNative.freeCompressor(compressor);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/DeflateNativeDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.ValueLayout;\nimport java.lang.ref.Cleaner;\n\nimport static io.airlift.compress.v3.deflate.DeflateNative.LIBDEFLATE_BAD_DATA;\nimport static io.airlift.compress.v3.deflate.DeflateNative.LIBDEFLATE_INSUFFICIENT_SPACE;\nimport static io.airlift.compress.v3.deflate.DeflateNative.LIBDEFLATE_SHORT_OUTPUT;\nimport static io.airlift.compress.v3.deflate.DeflateNative.LIBDEFLATE_SUCCESS;\nimport static java.lang.Math.toIntExact;\n\n/**\n * A single decompressor is not safe to use by multiple threads concurrently.\n * However, different threads may use different decompressors concurrently.\n */\npublic class DeflateNativeDecompressor\n        implements DeflateDecompressor\n{\n    private static final Cleaner CLEANER = Cleaner.create();\n\n    private final MemorySegment decompressor;\n\n    public DeflateNativeDecompressor()\n    {\n        DeflateNative.verifyEnabled();\n        this.decompressor = DeflateNative.allocDecompressor();\n        CLEANER.register(this, new DecompressorCleaner(decompressor));\n    }\n\n    public static boolean isEnabled()\n    {\n        return DeflateNative.isEnabled();\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return decompress(inputSegment, inputLength, outputSegment, maxOutputLength);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        return decompress(input, input.byteSize(), output, output.byteSize());\n    }\n\n    private int decompress(MemorySegment input, long inputLength, MemorySegment output, long outputLength)\n            throws MalformedInputException\n    {\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment actualOutputLength = arena.allocate(ValueLayout.JAVA_LONG);\n            int result = DeflateNative.decompress(decompressor, input, inputLength, output, outputLength, actualOutputLength);\n            return switch (result) {\n                case LIBDEFLATE_SUCCESS -> toIntExact(actualOutputLength.get(ValueLayout.JAVA_LONG, 0));\n                case LIBDEFLATE_BAD_DATA -> throw new MalformedInputException(0, \"Invalid or corrupt deflate compressed data\");\n                case LIBDEFLATE_INSUFFICIENT_SPACE, LIBDEFLATE_SHORT_OUTPUT -> throw new MalformedInputException(0, \"Output buffer too small for decompressed data\");\n                default -> throw new MalformedInputException(0, \"Unknown decompression error: \" + result);\n            };\n        }\n    }\n\n    private record DecompressorCleaner(MemorySegment decompressor)\n            implements Runnable\n    {\n        @Override\n        public void run()\n        {\n            DeflateNative.freeDecompressor(decompressor);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/JdkDeflateCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\n\npublic class JdkDeflateCodec\n        extends CodecAdapter\n{\n    public JdkDeflateCodec()\n    {\n        super(configuration -> new JdkDeflateHadoopStreams());\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/JdkDeflateHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.zip.DataFormatException;\nimport java.util.zip.Inflater;\n\nimport static java.util.Objects.requireNonNull;\n\nclass JdkDeflateHadoopInputStream\n        extends HadoopInputStream\n{\n    private final byte[] oneByte = new byte[1];\n    private final InputStream input;\n    private final Inflater inflater;\n    private final byte[] inputBuffer;\n    private int inputBufferEnd;\n    private boolean closed;\n\n    public JdkDeflateHadoopInputStream(InputStream input, int bufferSize)\n    {\n        this.input = requireNonNull(input, \"input is null\");\n        this.inflater = new Inflater();\n        this.inputBuffer = new byte[bufferSize];\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        int length = read(oneByte, 0, 1);\n        if (length < 0) {\n            return length;\n        }\n        return oneByte[0] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Closed\");\n        }\n\n        while (true) {\n            try {\n                int outputSize = inflater.inflate(output, offset, length);\n                if (outputSize > 0) {\n                    return outputSize;\n                }\n            }\n            catch (DataFormatException e) {\n                throw new IOException(e);\n            }\n\n            // This behavior is defined in Hadoop DecompressorStream which treats\n            // the need for a dictionary as the end of the stream.\n            // This should be an Exception because the stream is not actually decompressed.\n            if (inflater.needsDictionary()) {\n                return -1;\n            }\n\n            if (inflater.finished()) {\n                // current stream block is finished, but there could be another stream after this\n                int remainingBytes = inflater.getRemaining();\n                if (remainingBytes > 0) {\n                    // there is still unprocessed data in the input buffer, so reset and continue processing that data\n                    inflater.reset();\n                    // after the reset, redeclare the unprocessed data with the decompressor\n                    inflater.setInput(inputBuffer, inputBufferEnd - remainingBytes, remainingBytes);\n                }\n                else {\n                    int bufferedBytes = input.read(inputBuffer, 0, inputBuffer.length);\n                    if (bufferedBytes < 0) {\n                        // normal end of input stream\n                        return -1;\n                    }\n                    inflater.reset();\n                    inflater.setInput(inputBuffer, 0, bufferedBytes);\n                    inputBufferEnd = bufferedBytes;\n                }\n            }\n            else if (inflater.needsInput()) {\n                int bufferedBytes = input.read(inputBuffer, 0, inputBuffer.length);\n                if (bufferedBytes < 0) {\n                    throw new EOFException(\"Unexpected end of input stream\");\n                }\n                inflater.setInput(inputBuffer, 0, bufferedBytes);\n                inputBufferEnd = bufferedBytes;\n            }\n        }\n    }\n\n    @Override\n    public void resetState()\n    {\n        inflater.reset();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (!closed) {\n            closed = true;\n            inflater.end();\n            input.close();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/JdkDeflateHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.util.zip.Deflater;\n\nimport static java.util.Objects.requireNonNull;\n\nclass JdkDeflateHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final byte[] oneByte = new byte[1];\n    private final OutputStream output;\n    private final Deflater deflater;\n    private final byte[] outputBuffer;\n    protected boolean closed;\n\n    public JdkDeflateHadoopOutputStream(OutputStream output, int bufferSize)\n    {\n        this.output = requireNonNull(output, \"output is null\");\n        this.deflater = new Deflater();\n        this.outputBuffer = new byte[bufferSize];\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        oneByte[0] = (byte) b;\n        write(oneByte, 0, 1);\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        deflater.setInput(buffer, offset, length);\n        while (!deflater.needsInput()) {\n            compress();\n        }\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (!deflater.finished()) {\n            deflater.finish();\n            while (!deflater.finished()) {\n                compress();\n            }\n        }\n        deflater.reset();\n    }\n\n    private void compress()\n            throws IOException\n    {\n        int compressedSize = deflater.deflate(outputBuffer, 0, outputBuffer.length);\n        output.write(outputBuffer, 0, compressedSize);\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        output.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (!closed) {\n            closed = true;\n            try {\n                finish();\n            }\n            finally {\n                output.close();\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/deflate/JdkDeflateHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class JdkDeflateHadoopStreams\n        implements HadoopStreams\n{\n    private static final int BUFFER_SIZE = 8 * 1024;\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".deflate\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.DefaultCodec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n            throws IOException\n    {\n        return new JdkDeflateHadoopInputStream(in, BUFFER_SIZE);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n            throws IOException\n    {\n        return new JdkDeflateHadoopOutputStream(out, BUFFER_SIZE);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/gzip/JdkGzipCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\n\npublic class JdkGzipCodec\n        extends CodecAdapter\n{\n    public JdkGzipCodec()\n    {\n        super(configuration -> new JdkGzipHadoopStreams());\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/gzip/JdkGzipConstants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nfinal class JdkGzipConstants\n{\n    public static final int GZIP_BUFFER_SIZE = 8 * 1024;\n\n    private JdkGzipConstants() {}\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/gzip/JdkGzipHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.BufferedInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.zip.GZIPInputStream;\n\nimport static java.lang.Math.max;\nimport static java.util.Objects.requireNonNull;\n\nclass JdkGzipHadoopInputStream\n        extends HadoopInputStream\n{\n    private final byte[] oneByte = new byte[1];\n    private final GZIPInputStream input;\n\n    public JdkGzipHadoopInputStream(InputStream input, int bufferSize)\n            throws IOException\n    {\n        this.input = new GZIPInputStream(new GzipBufferedInputStream(input, bufferSize), bufferSize);\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        int length = input.read(oneByte, 0, 1);\n        if (length < 0) {\n            return length;\n        }\n        return oneByte[0] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        return input.read(output, offset, length);\n    }\n\n    @Override\n    public void resetState()\n    {\n        throw new UnsupportedOperationException(\"resetState not supported for gzip\");\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        input.close();\n    }\n\n    // workaround for https://bugs.openjdk.org/browse/JDK-8081450\n    private static class GzipBufferedInputStream\n            extends BufferedInputStream\n    {\n        public GzipBufferedInputStream(InputStream input, int bufferSize)\n        {\n            super(requireNonNull(input, \"input is null\"), bufferSize);\n        }\n\n        @Override\n        public int available()\n                throws IOException\n        {\n            // GZIPInputStream thinks the stream is complete if this returns zero\n            return max(1, super.available());\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/gzip/JdkGzipHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.util.zip.GZIPOutputStream;\n\nimport static java.util.Objects.requireNonNull;\n\nclass JdkGzipHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final byte[] oneByte = new byte[1];\n    private final GZIPOutputStreamWrapper output;\n\n    public JdkGzipHadoopOutputStream(OutputStream output, int bufferSize)\n            throws IOException\n    {\n        this.output = new GZIPOutputStreamWrapper(requireNonNull(output, \"output is null\"), bufferSize);\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        oneByte[0] = (byte) b;\n        write(oneByte, 0, 1);\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        output.write(buffer, offset, length);\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        try {\n            output.finish();\n        }\n        finally {\n            output.end();\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        output.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            finish();\n        }\n        finally {\n            output.close();\n        }\n    }\n\n    private static class GZIPOutputStreamWrapper\n            extends GZIPOutputStream\n    {\n        GZIPOutputStreamWrapper(OutputStream output, int bufferSize)\n                throws IOException\n        {\n            super(output, bufferSize);\n        }\n\n        public void end()\n        {\n            // free the memory as early as possible\n            def.end();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/gzip/JdkGzipHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class JdkGzipHadoopStreams\n        implements HadoopStreams\n{\n    private static final int GZIP_BUFFER_SIZE = 8 * 1024;\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".gz\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.GzipCodec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n            throws IOException\n    {\n        return new JdkGzipHadoopInputStream(in, GZIP_BUFFER_SIZE);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n            throws IOException\n    {\n        return new JdkGzipHadoopOutputStream(out, GZIP_BUFFER_SIZE);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/CodecAdapter.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport io.airlift.compress.v3.hadoop.CompressionInputStreamAdapter.PositionSupplier;\nimport org.apache.hadoop.conf.Configurable;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.Seekable;\nimport org.apache.hadoop.io.compress.CompressionCodec;\nimport org.apache.hadoop.io.compress.CompressionInputStream;\nimport org.apache.hadoop.io.compress.CompressionOutputStream;\nimport org.apache.hadoop.io.compress.Compressor;\nimport org.apache.hadoop.io.compress.Decompressor;\nimport org.apache.hadoop.io.compress.DoNotPool;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.Optional;\nimport java.util.function.Function;\n\nimport static java.util.Objects.requireNonNull;\n\npublic class CodecAdapter\n        implements Configurable, CompressionCodec\n{\n    private final Function<Optional<Configuration>, HadoopStreams> streamsFactory;\n    private HadoopStreams hadoopStreams;\n    private Configuration conf;\n\n    public CodecAdapter(Function<Optional<Configuration>, HadoopStreams> streamsFactory)\n    {\n        this.streamsFactory = requireNonNull(streamsFactory, \"streamsFactory is null\");\n        hadoopStreams = streamsFactory.apply(Optional.empty());\n    }\n\n    @Override\n    public final Configuration getConf()\n    {\n        return conf;\n    }\n\n    @Override\n    public final void setConf(Configuration conf)\n    {\n        this.conf = conf;\n        hadoopStreams = streamsFactory.apply(Optional.of(conf));\n    }\n\n    @Override\n    public final CompressionOutputStream createOutputStream(OutputStream out)\n            throws IOException\n    {\n        return new CompressionOutputStreamAdapter(hadoopStreams.createOutputStream(out));\n    }\n\n    @Override\n    public final CompressionOutputStream createOutputStream(OutputStream out, Compressor compressor)\n            throws IOException\n    {\n        if (!(compressor instanceof CompressorAdapter)) {\n            throw new IllegalArgumentException(\"Compressor is not the compressor adapter\");\n        }\n        return new CompressionOutputStreamAdapter(hadoopStreams.createOutputStream(out));\n    }\n\n    @Override\n    public final Class<? extends Compressor> getCompressorType()\n    {\n        return CompressorAdapter.class;\n    }\n\n    @Override\n    public Compressor createCompressor()\n    {\n        return new CompressorAdapter();\n    }\n\n    @Override\n    public final CompressionInputStream createInputStream(InputStream in)\n            throws IOException\n    {\n        return new CompressionInputStreamAdapter(hadoopStreams.createInputStream(in), getPositionSupplier(in));\n    }\n\n    @Override\n    public final CompressionInputStream createInputStream(InputStream in, Decompressor decompressor)\n            throws IOException\n    {\n        if (!(decompressor instanceof DecompressorAdapter)) {\n            throw new IllegalArgumentException(\"Decompressor is not the decompressor adapter\");\n        }\n        return new CompressionInputStreamAdapter(hadoopStreams.createInputStream(in), getPositionSupplier(in));\n    }\n\n    private static PositionSupplier getPositionSupplier(InputStream inputStream)\n    {\n        if (inputStream instanceof Seekable) {\n            return ((Seekable) inputStream)::getPos;\n        }\n        return () -> 0;\n    }\n\n    @Override\n    public final Class<? extends Decompressor> getDecompressorType()\n    {\n        return DecompressorAdapter.class;\n    }\n\n    @Override\n    public final Decompressor createDecompressor()\n    {\n        return new DecompressorAdapter();\n    }\n\n    @Override\n    public final String getDefaultExtension()\n    {\n        return hadoopStreams.getDefaultFileExtension();\n    }\n\n    /**\n     * No Hadoop code seems to actually use the compressor, so just return a dummy one so the createOutputStream method\n     * with a compressor can function.  This interface can be implemented if needed.\n     */\n    @DoNotPool\n    private static class CompressorAdapter\n            implements Compressor\n    {\n        @Override\n        public void setInput(byte[] b, int off, int len)\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public boolean needsInput()\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public void setDictionary(byte[] b, int off, int len)\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public long getBytesRead()\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public long getBytesWritten()\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public void finish()\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public boolean finished()\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public int compress(byte[] b, int off, int len)\n                throws IOException\n        {\n            throw new UnsupportedOperationException(\"Block compressor is not supported\");\n        }\n\n        @Override\n        public void reset() {}\n\n        @Override\n        public void end() {}\n\n        @Override\n        public void reinit(Configuration conf) {}\n    }\n\n    /**\n     * No Hadoop code seems to actually use the decompressor, so just return a dummy one so the createInputStream method\n     * with a decompressor can function.\n     */\n    @DoNotPool\n    private static class DecompressorAdapter\n            implements Decompressor\n    {\n        @Override\n        public void setInput(byte[] b, int off, int len)\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public boolean needsInput()\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public void setDictionary(byte[] b, int off, int len)\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public boolean needsDictionary()\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public boolean finished()\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public int decompress(byte[] b, int off, int len)\n                throws IOException\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public int getRemaining()\n        {\n            throw new UnsupportedOperationException(\"Block decompressor is not supported\");\n        }\n\n        @Override\n        public void reset() {}\n\n        @Override\n        public void end() {}\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/CompressionInputStreamAdapter.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport org.apache.hadoop.io.compress.CompressionInputStream;\n\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static java.util.Objects.requireNonNull;\n\nfinal class CompressionInputStreamAdapter\n        extends CompressionInputStream\n{\n    private static final InputStream FAKE_INPUT_STREAM = new InputStream()\n    {\n        @Override\n        public int read()\n        {\n            throw new UnsupportedOperationException();\n        }\n    };\n\n    private final HadoopInputStream input;\n    private final PositionSupplier positionSupplier;\n\n    public CompressionInputStreamAdapter(HadoopInputStream input, PositionSupplier positionSupplier)\n            throws IOException\n    {\n        super(FAKE_INPUT_STREAM);\n        this.input = requireNonNull(input, \"input is null\");\n        this.positionSupplier = requireNonNull(positionSupplier, \"positionSupplier is null\");\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        return input.read();\n    }\n\n    @Override\n    public int read(byte[] b, int off, int len)\n            throws IOException\n    {\n        return input.read(b, off, len);\n    }\n\n    @Override\n    public long getPos()\n            throws IOException\n    {\n        return positionSupplier.getPosition();\n    }\n\n    @Override\n    public void resetState()\n    {\n        input.resetState();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            super.close();\n        }\n        finally {\n            input.close();\n        }\n    }\n\n    public interface PositionSupplier\n    {\n        long getPosition()\n                throws IOException;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/CompressionOutputStreamAdapter.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport org.apache.hadoop.io.compress.CompressionOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nfinal class CompressionOutputStreamAdapter\n        extends CompressionOutputStream\n{\n    private static final OutputStream FAKE_OUTPUT_STREAM = new OutputStream() {\n        @Override\n        public void write(int b)\n        {\n            throw new UnsupportedOperationException();\n        }\n    };\n\n    private final HadoopOutputStream output;\n\n    public CompressionOutputStreamAdapter(HadoopOutputStream output)\n    {\n        super(FAKE_OUTPUT_STREAM);\n        this.output = output;\n    }\n\n    @Override\n    public void write(byte[] b, int off, int len)\n            throws IOException\n    {\n        output.write(b, off, len);\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        output.write(b);\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        output.finish();\n    }\n\n    @Override\n    public void resetState() {}\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            super.close();\n        }\n        finally {\n            output.close();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/HadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport java.io.IOException;\nimport java.io.InputStream;\n\n@SuppressWarnings(\"AbstractMethodOverridesConcreteMethod\")\npublic abstract class HadoopInputStream\n        extends InputStream\n{\n    public abstract void resetState();\n\n    @Override\n    public abstract int read(byte[] b, int off, int len)\n            throws IOException;\n\n    @Override\n    public abstract void close()\n            throws IOException;\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/HadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\n@SuppressWarnings(\"AbstractMethodOverridesConcreteMethod\")\npublic abstract class HadoopOutputStream\n        extends OutputStream\n{\n    /**\n     * Close the current internal compression stream, but do not close the underlying stream.\n     * The next write after this call will start a new internal compression stream.\n     */\n    public abstract void finish()\n            throws IOException;\n\n    @Override\n    public abstract void write(byte[] b, int off, int len)\n            throws IOException;\n\n    @Override\n    public abstract void flush()\n            throws IOException;\n\n    @Override\n    public abstract void close()\n            throws IOException;\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/hadoop/HadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.hadoop;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\n/**\n * A factory for creating Hadoop compliant input and output streams.\n * Implementations of this interface are thread safe.\n */\npublic interface HadoopStreams\n{\n    String getDefaultFileExtension();\n\n    List<String> getHadoopCodecName();\n\n    HadoopInputStream createInputStream(InputStream in)\n            throws IOException;\n\n    HadoopOutputStream createOutputStream(OutputStream out)\n            throws IOException;\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/internal/NativeLoader.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.internal;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.FunctionDescriptor;\nimport java.lang.foreign.Linker;\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.SymbolLookup;\nimport java.lang.foreign.ValueLayout;\nimport java.lang.invoke.MethodHandle;\nimport java.lang.invoke.MethodHandles;\nimport java.lang.invoke.MethodType;\nimport java.lang.reflect.RecordComponent;\nimport java.net.URL;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.StandardCopyOption;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Optional;\n\nimport static java.lang.foreign.ValueLayout.ADDRESS;\nimport static java.lang.foreign.ValueLayout.JAVA_BYTE;\nimport static java.lang.foreign.ValueLayout.JAVA_INT;\nimport static java.lang.foreign.ValueLayout.JAVA_LONG;\nimport static java.lang.invoke.MethodHandles.insertArguments;\nimport static java.lang.invoke.MethodHandles.lookup;\nimport static java.lang.invoke.MethodHandles.throwException;\nimport static java.lang.invoke.MethodType.methodType;\nimport static java.util.Objects.requireNonNull;\n\npublic final class NativeLoader\n{\n    private static final File TEMP_DIR = new File(System.getProperty(\"aircompressor.tmpdir\", System.getProperty(\"java.io.tmpdir\")));\n    private static final MethodHandle LINKAGE_ERROR_CONSTRUCTOR;\n\n    static {\n        try {\n            LINKAGE_ERROR_CONSTRUCTOR = lookup().findConstructor(LinkageError.class, methodType(void.class, String.class, Throwable.class));\n        }\n        catch (ReflectiveOperationException e) {\n            throw new ExceptionInInitializerError(e);\n        }\n    }\n\n    private NativeLoader() {}\n\n    public record Symbols<T>(Optional<LinkageError> linkageError, T symbols) {}\n\n    public static <T> Symbols<T> loadSymbols(String name, Class<T> methodHandlesClass, MethodHandles.Lookup lookup)\n    {\n        requireNonNull(name, \"name is null\");\n        requireNonNull(methodHandlesClass, \"methodHandlesClass is null\");\n        if (!methodHandlesClass.isRecord()) {\n            throw new IllegalArgumentException(\"methodHandlesClass is not a record class\");\n        }\n        for (RecordComponent recordComponent : methodHandlesClass.getRecordComponents()) {\n            if (recordComponent.getAnnotation(NativeSignature.class) == null) {\n                throw new IllegalArgumentException(\"methodHandlesClass %s field '%s' is missing @NativeSignature annotation\".formatted(methodHandlesClass, recordComponent.getName()));\n            }\n        }\n\n        MethodHandle constructor;\n        try {\n            constructor = lookup.findConstructor(methodHandlesClass, methodType(void.class, Arrays.stream(methodHandlesClass.getRecordComponents())\n                    .map(RecordComponent::getType)\n                    .toArray(Class<?>[]::new)));\n        }\n        catch (IllegalAccessException | NoSuchMethodException e) {\n            throw new IllegalArgumentException(\"Failed to find canonical constructor for \" + methodHandlesClass, e);\n        }\n\n        try {\n            try {\n                SymbolLookup symbolLookup = loadLibrary(name);\n                List<MethodHandle> methodHandles = new ArrayList<>(methodHandlesClass.getRecordComponents().length);\n                for (RecordComponent recordComponent : methodHandlesClass.getRecordComponents()) {\n                    NativeSignature nativeSignature = recordComponent.getAnnotation(NativeSignature.class);\n\n                    FunctionDescriptor nativeFunctionDescriptor = getFunctionDescriptor(nativeSignature.returnType(), nativeSignature.argumentTypes());\n\n                    methodHandles.add(symbolLookup.find(nativeSignature.name())\n                            .map(memorySegment -> Linker.nativeLinker().downcallHandle(memorySegment, nativeFunctionDescriptor, Linker.Option.critical(true)))\n                            .orElseThrow(() -> new LinkageError(\"unresolved symbol: \" + nativeSignature.name())));\n                }\n                return new Symbols<>(Optional.empty(), methodHandlesClass.cast(constructor.invokeWithArguments(methodHandles)));\n            }\n            catch (LinkageError e) {\n                List<MethodHandle> methodHandles = new ArrayList<>(methodHandlesClass.getRecordComponents().length);\n                for (RecordComponent recordComponent : methodHandlesClass.getRecordComponents()) {\n                    NativeSignature nativeSignature = recordComponent.getAnnotation(NativeSignature.class);\n                    FunctionDescriptor nativeFunctionDescriptor = getFunctionDescriptor(nativeSignature.returnType(), nativeSignature.argumentTypes());\n                    methodHandles.add(createErrorMethodHandle(name, e, nativeFunctionDescriptor.toMethodType()));\n                }\n                return new Symbols<>(Optional.of(e), methodHandlesClass.cast(constructor.invokeWithArguments(methodHandles)));\n            }\n        }\n        catch (Throwable e) {\n            throw new RuntimeException(\"Failed to create instance of \" + methodHandlesClass, e);\n        }\n    }\n\n    private static FunctionDescriptor getFunctionDescriptor(Class<?> returnType, Class<?>[] argumentTypes)\n    {\n        ValueLayout[] argumentLayouts = Arrays.stream(argumentTypes)\n                .map(NativeLoader::getMemoryLayout)\n                .toArray(ValueLayout[]::new);\n        if (returnType == void.class) {\n            return FunctionDescriptor.ofVoid(argumentLayouts);\n        }\n        return FunctionDescriptor.of(\n                getMemoryLayout(returnType),\n                argumentLayouts);\n    }\n\n    private static MethodHandle createErrorMethodHandle(String name, LinkageError linkageError, MethodType methodType)\n    {\n        MethodHandle methodHandle = throwException(methodType.returnType(), LinkageError.class);\n        return MethodHandles.foldArguments(methodHandle, insertArguments(LINKAGE_ERROR_CONSTRUCTOR, 0, name + \" native library not loaded: \" + linkageError.getMessage(), linkageError));\n    }\n\n    private static ValueLayout getMemoryLayout(Class<?> type)\n    {\n        if (type == byte.class) {\n            return JAVA_BYTE;\n        }\n        if (type == int.class) {\n            return JAVA_INT;\n        }\n        if (type == long.class) {\n            return JAVA_LONG;\n        }\n        if (type == MemorySegment.class) {\n            return ADDRESS;\n        }\n        throw new IllegalArgumentException(\"Unsupported type: \" + type);\n    }\n\n    public static SymbolLookup loadLibrary(String name)\n            throws LinkageError\n    {\n        if (System.getProperty(\"io.airlift.compress.v3.disable-native\") != null) {\n            throw new LinkageError(\"Native library loading is disabled\");\n        }\n\n        try {\n            String libraryPath = getLibraryPath(name);\n            URL url = NativeLoader.class.getResource(libraryPath);\n            if (url == null) {\n                throw new LinkageError(\"Library not found: \" + libraryPath);\n            }\n\n            Path path = temporaryFile(name, url);\n            return SymbolLookup.libraryLookup(path, Arena.ofAuto());\n        }\n        catch (RuntimeException e) {\n            throw new LinkageError(\"Failed to load library '%s': %s\".formatted(name, e.getMessage()), e);\n        }\n    }\n\n    private static Path temporaryFile(String name, URL url)\n            throws LinkageError\n    {\n        try {\n            File file = File.createTempFile(name, null, TEMP_DIR);\n            file.deleteOnExit();\n            try (InputStream in = url.openStream()) {\n                Files.copy(in, file.toPath(), StandardCopyOption.REPLACE_EXISTING);\n            }\n            return file.toPath();\n        }\n        catch (IOException e) {\n            throw new LinkageError(\"Failed to create temporary file: \" + e.getMessage(), e);\n        }\n    }\n\n    private static String getLibraryPath(String name)\n    {\n        return \"/aircompressor/\" + getPlatform() + \"/\" + System.mapLibraryName(name);\n    }\n\n    private static String getPlatform()\n    {\n        String name = System.getProperty(\"os.name\");\n        name = switch (name) {\n            case \"Linux\" -> \"linux\";\n            case \"Mac OS X\" -> \"macos\";\n            default -> throw new LinkageError(\"Unsupported OS platform: \" + name);\n        };\n        String arch = System.getProperty(\"os.arch\");\n        if (\"x86_64\".equals(arch)) {\n            arch = \"amd64\";\n        }\n        return (name + \"-\" + arch).replace(' ', '_');\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/internal/NativeSignature.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.internal;\n\nimport java.lang.annotation.Retention;\nimport java.lang.annotation.Target;\n\nimport static java.lang.annotation.ElementType.RECORD_COMPONENT;\nimport static java.lang.annotation.RetentionPolicy.RUNTIME;\n\n@Retention(RUNTIME)\n@Target(RECORD_COMPONENT)\npublic @interface NativeSignature\n{\n    String name();\n\n    Class<?> returnType();\n\n    Class<?>[] argumentTypes();\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4Codec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\nimport org.apache.hadoop.conf.Configuration;\n\nimport java.util.Optional;\n\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT;\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_KEY;\n\npublic class Lz4Codec\n        extends CodecAdapter\n{\n    public Lz4Codec()\n    {\n        super(configuration -> new Lz4HadoopStreams(true, getBufferSize(configuration)));\n    }\n\n    private static int getBufferSize(Optional<Configuration> configuration)\n    {\n        // To decode a LZ4 block we must preallocate an output buffer, but\n        // the Hadoop block stream format does not include the uncompressed\n        // size of chunks.  Instead, we must rely on the \"configured\"\n        // maximum buffer size used by the writer of the file.\n        return configuration\n                .map(conf -> conf.getInt(IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_KEY, IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT))\n                .orElse(IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4Compressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lz4.Lz4Native.DEFAULT_ACCELERATION;\n\npublic sealed interface Lz4Compressor\n        extends Compressor\n        permits Lz4JavaCompressor, Lz4NativeCompressor\n{\n    int compress(MemorySegment input, MemorySegment output);\n\n    static Lz4Compressor create()\n    {\n        return create(DEFAULT_ACCELERATION);\n    }\n\n    static Lz4Compressor create(int acceleration)\n    {\n        if (Lz4NativeCompressor.isEnabled()) {\n            return new Lz4NativeCompressor(acceleration);\n        }\n\n        if (acceleration != DEFAULT_ACCELERATION) {\n            throw new IllegalArgumentException(\"Acceleration different from default cannot be used for non-native LZ4 compression\");\n        }\n        return new Lz4JavaCompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4Constants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nfinal class Lz4Constants\n{\n    public static final int LAST_LITERAL_SIZE = 5;\n    public static final int MIN_MATCH = 4;\n\n    public static final int SIZE_OF_SHORT = 2;\n    public static final int SIZE_OF_INT = 4;\n    public static final int SIZE_OF_LONG = 8;\n\n    private Lz4Constants() {}\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4Decompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.Decompressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic sealed interface Lz4Decompressor\n        extends Decompressor\n        permits Lz4JavaDecompressor, Lz4NativeDecompressor\n{\n    int decompress(MemorySegment input, MemorySegment output);\n\n    static Lz4Decompressor create()\n    {\n        if (Lz4NativeDecompressor.isEnabled()) {\n            return new Lz4NativeDecompressor();\n        }\n        return new Lz4JavaDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4HadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass Lz4HadoopInputStream\n        extends HadoopInputStream\n{\n    private final Lz4Decompressor decompressor;\n    private final InputStream in;\n    private final byte[] uncompressedChunk;\n\n    private int uncompressedBlockLength;\n    private int uncompressedChunkOffset;\n    private int uncompressedChunkLength;\n\n    private byte[] compressed = new byte[0];\n\n    public Lz4HadoopInputStream(Lz4Decompressor decompressor, InputStream in, int maxUncompressedLength)\n    {\n        this.decompressor = requireNonNull(decompressor, \"decompressor is null\");\n        this.in = requireNonNull(in, \"in is null\");\n        // over allocate buffer which makes decompression easier\n        uncompressedChunk = new byte[maxUncompressedLength + SIZE_OF_LONG];\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        while (uncompressedChunkOffset >= uncompressedChunkLength) {\n            int compressedChunkLength = bufferCompressedData();\n            if (compressedChunkLength < 0) {\n                return -1;\n            }\n            uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        return uncompressedChunk[uncompressedChunkOffset++] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        while (uncompressedChunkOffset >= uncompressedChunkLength) {\n            int compressedChunkLength = bufferCompressedData();\n            if (compressedChunkLength < 0) {\n                return -1;\n            }\n\n            // favor writing directly to user buffer to avoid extra copy\n            if (length >= uncompressedBlockLength) {\n                uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, output, offset, length);\n                uncompressedChunkOffset = uncompressedChunkLength;\n                return uncompressedChunkLength;\n            }\n\n            uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        int size = Math.min(length, uncompressedChunkLength - uncompressedChunkOffset);\n        System.arraycopy(uncompressedChunk, uncompressedChunkOffset, output, offset, size);\n        uncompressedChunkOffset += size;\n        return size;\n    }\n\n    @Override\n    public void resetState()\n    {\n        uncompressedBlockLength = 0;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        in.close();\n    }\n\n    private int bufferCompressedData()\n            throws IOException\n    {\n        uncompressedBlockLength -= uncompressedChunkOffset;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n        while (uncompressedBlockLength == 0) {\n            uncompressedBlockLength = readBigEndianInt();\n            if (uncompressedBlockLength == -1) {\n                uncompressedBlockLength = 0;\n                return -1;\n            }\n        }\n\n        int compressedChunkLength = readBigEndianInt();\n        if (compressedChunkLength == -1) {\n            return -1;\n        }\n\n        if (compressed.length < compressedChunkLength) {\n            // over allocate buffer which makes decompression easier\n            compressed = new byte[compressedChunkLength + SIZE_OF_LONG];\n        }\n        readInput(compressedChunkLength, compressed);\n        return compressedChunkLength;\n    }\n\n    private void readInput(int length, byte[] buffer)\n            throws IOException\n    {\n        int offset = 0;\n        while (offset < length) {\n            int size = in.read(buffer, offset, length - offset);\n            if (size == -1) {\n                throw new EOFException(\"encountered EOF while reading block data\");\n            }\n            offset += size;\n        }\n    }\n\n    private int readBigEndianInt()\n            throws IOException\n    {\n        int b1 = in.read();\n        if (b1 < 0) {\n            return -1;\n        }\n        int b2 = in.read();\n        int b3 = in.read();\n        int b4 = in.read();\n\n        // If any of the other bits are negative, the stream it truncated\n        if ((b2 | b3 | b4) < 0) {\n            throw new IOException(\"Stream is truncated\");\n        }\n        return ((b1 << 24) + (b2 << 16) + (b3 << 8) + (b4));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4HadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass Lz4HadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final Lz4Compressor compressor;\n\n    private final OutputStream out;\n    private final byte[] inputBuffer;\n    private final int inputMaxSize;\n    private int inputOffset;\n\n    private final byte[] outputBuffer;\n\n    public Lz4HadoopOutputStream(Lz4Compressor compressor, OutputStream out, int bufferSize)\n    {\n        this.compressor = requireNonNull(compressor, \"compressor is null\");\n        this.out = requireNonNull(out, \"out is null\");\n        inputBuffer = new byte[bufferSize];\n        // leave extra space free at end of buffers to make compression (slightly) faster\n        inputMaxSize = inputBuffer.length - compressionOverhead(bufferSize);\n        outputBuffer = new byte[compressor.maxCompressedLength(inputMaxSize) + SIZE_OF_LONG];\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        inputBuffer[inputOffset++] = (byte) b;\n        if (inputOffset >= inputMaxSize) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        while (length > 0) {\n            int chunkSize = Math.min(length, inputMaxSize - inputOffset);\n            // favor writing directly from the user buffer to avoid the extra copy\n            if (inputOffset == 0 && length > inputMaxSize) {\n                writeNextChunk(buffer, offset, chunkSize);\n            }\n            else {\n                System.arraycopy(buffer, offset, inputBuffer, inputOffset, chunkSize);\n                inputOffset += chunkSize;\n\n                if (inputOffset >= inputMaxSize) {\n                    writeNextChunk(inputBuffer, 0, inputOffset);\n                }\n            }\n            length -= chunkSize;\n            offset += chunkSize;\n        }\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (inputOffset > 0) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            finish();\n        }\n        finally {\n            out.close();\n        }\n    }\n\n    private void writeNextChunk(byte[] input, int inputOffset, int inputLength)\n            throws IOException\n    {\n        int compressedSize = compressor.compress(input, inputOffset, inputLength, outputBuffer, 0, outputBuffer.length);\n\n        writeBigEndianInt(inputLength);\n        writeBigEndianInt(compressedSize);\n        out.write(outputBuffer, 0, compressedSize);\n\n        this.inputOffset = 0;\n    }\n\n    private void writeBigEndianInt(int value)\n            throws IOException\n    {\n        out.write(value >>> 24);\n        out.write(value >>> 16);\n        out.write(value >>> 8);\n        out.write(value);\n    }\n\n    private static int compressionOverhead(int size)\n    {\n        return Math.max((int) (size * 0.01), 10);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4HadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class Lz4HadoopStreams\n        implements HadoopStreams\n{\n    private static final int DEFAULT_OUTPUT_BUFFER_SIZE = 256 * 1024;\n    private final boolean useNative;\n    private final int bufferSize;\n\n    public Lz4HadoopStreams()\n    {\n        this(true, DEFAULT_OUTPUT_BUFFER_SIZE);\n    }\n\n    public Lz4HadoopStreams(boolean useNative, int bufferSize)\n    {\n        this.useNative = useNative && Lz4Native.isEnabled();\n        this.bufferSize = bufferSize;\n    }\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".lz4\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.Lz4Codec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n    {\n        Lz4Decompressor decompressor = useNative ? new Lz4NativeDecompressor() : new Lz4JavaDecompressor();\n        return new Lz4HadoopInputStream(decompressor, in, bufferSize);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n    {\n        Lz4Compressor compressor = useNative ? new Lz4NativeCompressor() : new Lz4JavaCompressor();\n        return new Lz4HadoopOutputStream(compressor, out, bufferSize);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4JavaCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lz4.Lz4RawCompressor.MAX_TABLE_SIZE;\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.getBase;\nimport static java.lang.Math.toIntExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\n/**\n * This class is not thread-safe\n */\npublic final class Lz4JavaCompressor\n        implements Lz4Compressor\n{\n    private final int[] table = new int[MAX_TABLE_SIZE];\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return Lz4RawCompressor.maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n\n        return Lz4RawCompressor.compress(input, inputAddress, inputLength, output, outputAddress, maxOutputLength, table);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        try {\n            return Lz4RawCompressor.compress(\n                    getBase(input),\n                    getAddress(input),\n                    toIntExact(input.byteSize()),\n                    getBase(output),\n                    getAddress(output),\n                    toIntExact(output.byteSize()),\n                    table);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    @Override\n    public int getRetainedSizeInBytes(int inputLength)\n    {\n        return Lz4RawCompressor.computeTableSize(inputLength);\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4JavaDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic final class Lz4JavaDecompressor\n        implements Lz4Decompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long inputLimit = inputAddress + inputLength;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n        long outputLimit = outputAddress + maxOutputLength;\n\n        return Lz4RawDecompressor.decompress(input, inputAddress, inputLimit, output, outputAddress, outputLimit);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return Lz4RawDecompressor.decompress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4Native.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.internal.NativeLoader.Symbols;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.invoke.MethodHandle;\nimport java.util.Optional;\n\nimport static io.airlift.compress.v3.internal.NativeLoader.loadSymbols;\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class Lz4Native\n{\n    private Lz4Native() {}\n\n    private record MethodHandles(\n            @NativeSignature(name = \"LZ4_compressBound\", returnType = int.class, argumentTypes = int.class)\n            MethodHandle maxCompressedLength,\n            @NativeSignature(name = \"LZ4_compress_fast\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, int.class, int.class, int.class})\n            MethodHandle compress,\n            @NativeSignature(name = \"LZ4_compress_fast_extState\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, MemorySegment.class, int.class, int.class, int.class})\n            MethodHandle compressExternalState,\n            @NativeSignature(name = \"LZ4_decompress_safe\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, int.class, int.class})\n            MethodHandle decompress,\n            @NativeSignature(name = \"LZ4_sizeofState\", returnType = int.class, argumentTypes = {})\n            MethodHandle sizeofState) {}\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n    private static final MethodHandle MAX_COMPRESSED_LENGTH_METHOD;\n    private static final MethodHandle COMPRESS_METHOD;\n    private static final MethodHandle COMPRESS_EXTERNAL_STATE_METHOD;\n    private static final MethodHandle DECOMPRESS_METHOD;\n\n    // Defined in lz4.h: https://github.com/lz4/lz4/blob/v1.9.4/lib/lz4.c#L51\n    public static final int DEFAULT_ACCELERATION = 1;\n    public static final int MAX_ACCELERATION = 65537;\n    public static final int STATE_SIZE;\n\n    static {\n        Symbols<MethodHandles> symbols = loadSymbols(\"lz4\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n        MAX_COMPRESSED_LENGTH_METHOD = methodHandles.maxCompressedLength();\n        COMPRESS_METHOD = methodHandles.compress();\n        COMPRESS_EXTERNAL_STATE_METHOD = methodHandles.compressExternalState();\n        DECOMPRESS_METHOD = methodHandles.decompress();\n\n        if (LINKAGE_ERROR.isEmpty()) {\n            try {\n                STATE_SIZE = (int) methodHandles.sizeofState().invokeExact();\n            }\n            catch (Throwable e) {\n                throw new ExceptionInInitializerError(e);\n            }\n        }\n        else {\n            STATE_SIZE = -1;\n        }\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"Lz4 native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    public static int maxCompressedLength(int inputLength)\n    {\n        try {\n            return (int) MAX_COMPRESSED_LENGTH_METHOD.invokeExact(inputLength);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static int compress(MemorySegment input, int inputLength, MemorySegment compressed, int compressedLength, int acceleration)\n    {\n        int result;\n        try {\n            result = (int) COMPRESS_METHOD.invokeExact(input, compressed, inputLength, compressedLength, acceleration);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n\n        // LZ4_compress_default returns 0 on error, but disallow negative values also\n        if (result <= 0) {\n            throw new IllegalArgumentException(\"Unknown error occurred during compression: result=\" + result);\n        }\n        return result;\n    }\n\n    public static int compress(MemorySegment input, int inputLength, MemorySegment compressed, int compressedLength, int acceleration, MemorySegment state)\n    {\n        int result;\n        try {\n            result = (int) COMPRESS_EXTERNAL_STATE_METHOD.invokeExact(state, input, compressed, inputLength, compressedLength, acceleration);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n\n        // LZ4_compress_default returns 0 on error, but disallow negative values also\n        if (result <= 0) {\n            throw new IllegalArgumentException(\"Unknown error occurred during compression: result=\" + result);\n        }\n        return result;\n    }\n\n    public static int decompress(MemorySegment compressed, int compressedLength, MemorySegment output, int outputLength)\n    {\n        int result;\n        try {\n            result = (int) DECOMPRESS_METHOD.invokeExact(compressed, output, compressedLength, outputLength);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n\n        // negative return values indicate errors\n        if (result < 0) {\n            throw new IllegalArgumentException(\"Unknown error occurred during decompression: result=\" + result);\n        }\n        return result;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4NativeCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lz4.Lz4Native.DEFAULT_ACCELERATION;\nimport static io.airlift.compress.v3.lz4.Lz4Native.MAX_ACCELERATION;\nimport static java.lang.Math.toIntExact;\n\npublic final class Lz4NativeCompressor\n        implements Lz4Compressor\n{\n    private final MemorySegment state = Arena.ofAuto().allocate(Lz4Native.STATE_SIZE);\n    private final int acceleration;\n\n    public Lz4NativeCompressor()\n    {\n        this(DEFAULT_ACCELERATION);\n    }\n\n    public Lz4NativeCompressor(int acceleration)\n    {\n        if (acceleration < DEFAULT_ACCELERATION || acceleration > MAX_ACCELERATION) {\n            throw new IllegalArgumentException(\"LZ4 acceleration should be in the [%d, %d] range but got %d\".formatted(DEFAULT_ACCELERATION, MAX_ACCELERATION, acceleration));\n        }\n        Lz4Native.verifyEnabled();\n        this.acceleration = acceleration;\n    }\n\n    public static boolean isEnabled()\n    {\n        return Lz4Native.isEnabled();\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return Lz4Native.maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return Lz4Native.compress(inputSegment, inputLength, outputSegment, maxOutputLength, acceleration, state);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        return Lz4Native.compress(input, toIntExact(input.byteSize()), output, toIntExact(output.byteSize()), acceleration, state);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4NativeDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.Math.toIntExact;\n\npublic final class Lz4NativeDecompressor\n        implements Lz4Decompressor\n{\n    public Lz4NativeDecompressor()\n    {\n        Lz4Native.verifyEnabled();\n    }\n\n    public static boolean isEnabled()\n    {\n        return Lz4Native.isEnabled();\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return Lz4Native.decompress(inputSegment, inputLength, outputSegment, maxOutputLength);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n    {\n        return Lz4Native.decompress(input, toIntExact(input.byteSize()), output, toIntExact(output.byteSize()));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4RawCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.lz4.Lz4Constants.LAST_LITERAL_SIZE;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.MIN_MATCH;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.UNSAFE;\nimport static java.lang.Math.clamp;\n\nfinal class Lz4RawCompressor\n{\n    private static final int MAX_INPUT_SIZE = 0x7E000000;   /* 2 113 929 216 bytes */\n\n    private static final int HASH_LOG = 12;\n\n    private static final int MIN_TABLE_SIZE = 16;\n    public static final int MAX_TABLE_SIZE = (1 << HASH_LOG);\n\n    private static final int COPY_LENGTH = 8;\n    private static final int MATCH_FIND_LIMIT = COPY_LENGTH + MIN_MATCH;\n\n    private static final int MIN_LENGTH = MATCH_FIND_LIMIT + 1;\n\n    private static final int ML_BITS = 4;\n    private static final int ML_MASK = (1 << ML_BITS) - 1;\n    private static final int RUN_BITS = 8 - ML_BITS;\n    private static final int RUN_MASK = (1 << RUN_BITS) - 1;\n\n    private static final int MAX_DISTANCE = ((1 << 16) - 1);\n\n    private static final int SKIP_TRIGGER = 6;  /* Increase this value ==> compression run slower on incompressible data */\n\n    private Lz4RawCompressor() {}\n\n    private static int hash(long value, int mask)\n    {\n        // Multiplicative hash. It performs the equivalent to\n        // this computation:\n        //\n        //  value * frac(a)\n        //\n        // for some real number 'a' with a good & random mix\n        // of 1s and 0s in its binary representation\n        //\n        // For performance, it does it using fixed point math\n        return (int) ((value * 889523592379L >>> 28) & mask);\n    }\n\n    public static int maxCompressedLength(int sourceLength)\n    {\n        return sourceLength + sourceLength / 255 + 16;\n    }\n\n    public static int compress(\n            final Object inputBase,\n            final long inputAddress,\n            final int inputLength,\n            final Object outputBase,\n            final long outputAddress,\n            final long maxOutputLength,\n            final int[] table)\n    {\n        int tableSize = computeTableSize(inputLength);\n        Arrays.fill(table, 0, tableSize, 0);\n\n        int mask = tableSize - 1;\n\n        if (inputLength > MAX_INPUT_SIZE) {\n            throw new IllegalArgumentException(\"Max input length exceeded\");\n        }\n\n        if (maxOutputLength < maxCompressedLength(inputLength)) {\n            throw new IllegalArgumentException(\"Max output length must be larger than \" + maxCompressedLength(inputLength));\n        }\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        final long inputLimit = inputAddress + inputLength;\n        final long matchFindLimit = inputLimit - MATCH_FIND_LIMIT;\n        final long matchLimit = inputLimit - LAST_LITERAL_SIZE;\n\n        if (inputLength < MIN_LENGTH) {\n            output = emitLastLiteral(outputBase, output, inputBase, input, inputLimit - input);\n            return (int) (output - outputAddress);\n        }\n\n        long anchor = input;\n\n        // First Byte\n        // put position in hash\n        table[hash(UNSAFE.getLong(inputBase, input), mask)] = (int) (input - inputAddress);\n\n        input++;\n        int nextHash = hash(UNSAFE.getLong(inputBase, input), mask);\n\n        boolean done = false;\n        do {\n            long nextInputIndex = input;\n            int findMatchAttempts = 1 << SKIP_TRIGGER;\n            int step = 1;\n\n            // find 4-byte match\n            long matchIndex;\n            do {\n                int hash = nextHash;\n                input = nextInputIndex;\n                nextInputIndex += step;\n\n                step = (findMatchAttempts++) >>> SKIP_TRIGGER;\n\n                if (nextInputIndex > matchFindLimit) {\n                    return (int) (emitLastLiteral(outputBase, output, inputBase, anchor, inputLimit - anchor) - outputAddress);\n                }\n\n                // get position on hash\n                matchIndex = inputAddress + table[hash];\n                nextHash = hash(UNSAFE.getLong(inputBase, nextInputIndex), mask);\n\n                // put position on hash\n                table[hash] = (int) (input - inputAddress);\n            }\n            while (UNSAFE.getInt(inputBase, matchIndex) != UNSAFE.getInt(inputBase, input) || matchIndex + MAX_DISTANCE < input);\n\n            // catch up\n            while ((input > anchor) && (matchIndex > inputAddress) && (UNSAFE.getByte(inputBase, input - 1) == UNSAFE.getByte(inputBase, matchIndex - 1))) {\n                --input;\n                --matchIndex;\n            }\n\n            int literalLength = (int) (input - anchor);\n            long tokenAddress = output;\n\n            output = emitLiteral(inputBase, outputBase, anchor, literalLength, tokenAddress);\n\n            // next match\n            while (true) {\n                // find match length\n                int matchLength = count(inputBase, input + MIN_MATCH, matchLimit, matchIndex + MIN_MATCH);\n                output = emitMatch(outputBase, output, tokenAddress, (short) (input - matchIndex), matchLength);\n\n                input += matchLength + MIN_MATCH;\n\n                anchor = input;\n\n                // are we done?\n                if (input > matchFindLimit) {\n                    done = true;\n                    break;\n                }\n\n                long position = input - 2;\n                table[hash(UNSAFE.getLong(inputBase, position), mask)] = (int) (position - inputAddress);\n\n                // Test next position\n                int hash = hash(UNSAFE.getLong(inputBase, input), mask);\n                matchIndex = inputAddress + table[hash];\n                table[hash] = (int) (input - inputAddress);\n\n                if (matchIndex + MAX_DISTANCE < input || UNSAFE.getInt(inputBase, matchIndex) != UNSAFE.getInt(inputBase, input)) {\n                    input++;\n                    nextHash = hash(UNSAFE.getLong(inputBase, input), mask);\n                    break;\n                }\n\n                // go for another match\n                tokenAddress = output++;\n                UNSAFE.putByte(outputBase, tokenAddress, (byte) 0);\n            }\n        }\n        while (!done);\n\n        // Encode Last Literals\n        output = emitLastLiteral(outputBase, output, inputBase, anchor, inputLimit - anchor);\n\n        return (int) (output - outputAddress);\n    }\n\n    private static long emitLiteral(Object inputBase, Object outputBase, long input, int literalLength, long output)\n    {\n        output = encodeRunLength(outputBase, output, literalLength);\n\n        final long outputLimit = output + literalLength;\n        do {\n            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n            input += SIZE_OF_LONG;\n            output += SIZE_OF_LONG;\n        }\n        while (output < outputLimit);\n\n        return outputLimit;\n    }\n\n    private static long emitMatch(Object outputBase, long output, long tokenAddress, short offset, long matchLength)\n    {\n        // write offset\n        UNSAFE.putShort(outputBase, output, offset);\n        output += SIZE_OF_SHORT;\n\n        // write match length\n        if (matchLength >= ML_MASK) {\n            UNSAFE.putByte(outputBase, tokenAddress, (byte) (UNSAFE.getByte(outputBase, tokenAddress) | ML_MASK));\n            long remaining = matchLength - ML_MASK;\n            while (remaining >= 510) {\n                UNSAFE.putShort(outputBase, output, (short) 0xFFFF);\n                output += SIZE_OF_SHORT;\n                remaining -= 510;\n            }\n            if (remaining >= 255) {\n                UNSAFE.putByte(outputBase, output++, (byte) 255);\n                remaining -= 255;\n            }\n            UNSAFE.putByte(outputBase, output++, (byte) remaining);\n        }\n        else {\n            UNSAFE.putByte(outputBase, tokenAddress, (byte) (UNSAFE.getByte(outputBase, tokenAddress) | matchLength));\n        }\n\n        return output;\n    }\n\n    /**\n     * matchAddress must be < inputAddress\n     */\n    static int count(Object inputBase, final long inputAddress, final long inputLimit, final long matchAddress)\n    {\n        long input = inputAddress;\n        long match = matchAddress;\n\n        int remaining = (int) (inputLimit - inputAddress);\n\n        // first, compare long at a time\n        int count = 0;\n        while (count < remaining - (SIZE_OF_LONG - 1)) {\n            long diff = UNSAFE.getLong(inputBase, match) ^ UNSAFE.getLong(inputBase, input);\n            if (diff != 0) {\n                return count + (Long.numberOfTrailingZeros(diff) >> 3);\n            }\n\n            count += SIZE_OF_LONG;\n            input += SIZE_OF_LONG;\n            match += SIZE_OF_LONG;\n        }\n\n        while (count < remaining && UNSAFE.getByte(inputBase, match) == UNSAFE.getByte(inputBase, input)) {\n            count++;\n            match++;\n            input++;\n        }\n\n        return count;\n    }\n\n    private static long emitLastLiteral(\n            final Object outputBase,\n            final long outputAddress,\n            final Object inputBase,\n            final long inputAddress,\n            final long length)\n    {\n        long output = encodeRunLength(outputBase, outputAddress, length);\n        UNSAFE.copyMemory(inputBase, inputAddress, outputBase, output, length);\n\n        return output + length;\n    }\n\n    private static long encodeRunLength(\n            final Object base,\n            long output,\n            final long length)\n    {\n        if (length >= RUN_MASK) {\n            UNSAFE.putByte(base, output++, (byte) (RUN_MASK << ML_BITS));\n\n            long remaining = length - RUN_MASK;\n            while (remaining >= 255) {\n                UNSAFE.putByte(base, output++, (byte) 255);\n                remaining -= 255;\n            }\n            UNSAFE.putByte(base, output++, (byte) remaining);\n        }\n        else {\n            UNSAFE.putByte(base, output++, (byte) (length << ML_BITS));\n        }\n\n        return output;\n    }\n\n    static int computeTableSize(int inputSize)\n    {\n        // smallest power of 2 larger than inputSize\n        int target = Integer.highestOneBit(inputSize - 1) << 1;\n\n        // keep it between MIN_TABLE_SIZE and MAX_TABLE_SIZE\n        return clamp(target, MIN_TABLE_SIZE, MAX_TABLE_SIZE);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/Lz4RawDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport static io.airlift.compress.v3.lz4.Lz4Constants.LAST_LITERAL_SIZE;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.MIN_MATCH;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.lz4.Lz4Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.lz4.UnsafeUtil.UNSAFE;\n\nfinal class Lz4RawDecompressor\n{\n    private static final int[] DEC_32_TABLE = {4, 1, 2, 1, 4, 4, 4, 4};\n    private static final int[] DEC_64_TABLE = {0, 0, 0, -1, 0, 1, 2, 3};\n\n    private static final int OFFSET_SIZE = 2;\n    private static final int TOKEN_SIZE = 1;\n\n    private Lz4RawDecompressor() {}\n\n    public static int decompress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit)\n    {\n        final long fastOutputLimit = outputLimit - SIZE_OF_LONG; // maximum offset in output buffer to which it's safe to write long-at-a-time\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        if (inputAddress == inputLimit) {\n            throw new MalformedInputException(0, \"input is empty\");\n        }\n\n        if (outputAddress == outputLimit) {\n            if (inputLimit - inputAddress == 1 && UNSAFE.getByte(inputBase, inputAddress) == 0) {\n                return 0;\n            }\n            return -1;\n        }\n\n        while (input < inputLimit) {\n            final int token = UNSAFE.getByte(inputBase, input++) & 0xFF;\n\n            // decode literal length\n            int literalLength = token >>> 4; // top-most 4 bits of token\n            if (literalLength == 0xF) {\n                if (input >= inputLimit) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n                int value;\n                do {\n                    value = UNSAFE.getByte(inputBase, input++) & 0xFF;\n                    literalLength += value;\n                }\n                while (value == 255 && input < inputLimit - 15);\n            }\n            if (literalLength < 0) {\n                throw new MalformedInputException(input - inputAddress);\n            }\n\n            // copy literal\n            long literalEnd = input + literalLength;\n            long literalOutputLimit = output + literalLength;\n            if (literalOutputLimit > (fastOutputLimit - MIN_MATCH) || literalEnd > inputLimit - (OFFSET_SIZE + TOKEN_SIZE + LAST_LITERAL_SIZE)) {\n                // copy the last literal and finish\n                if (literalOutputLimit > outputLimit) {\n                    throw new MalformedInputException(input - inputAddress, \"attempt to write last literal outside of destination buffer\");\n                }\n\n                if (literalEnd != inputLimit) {\n                    throw new MalformedInputException(input - inputAddress, \"all input must be consumed\");\n                }\n\n                // slow, precise copy\n                UNSAFE.copyMemory(inputBase, input, outputBase, output, literalLength);\n                output += literalLength;\n                break;\n            }\n\n            // fast copy. We may overcopy but there's enough room in input and output to not overrun them\n            int index = 0;\n            do {\n                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n                output += SIZE_OF_LONG;\n                input += SIZE_OF_LONG;\n                index += SIZE_OF_LONG;\n            }\n            while (index < literalLength);\n            output = literalOutputLimit;\n\n            input = literalEnd;\n\n            // get offset\n            // we know we can read two bytes because of the bounds check performed before copying the literal above\n            int offset = UNSAFE.getShort(inputBase, input) & 0xFFFF;\n            input += SIZE_OF_SHORT;\n\n            long matchAddress = output - offset;\n            if (matchAddress < outputAddress || matchAddress >= output) {\n                throw new MalformedInputException(input - inputAddress, \"offset outside destination buffer\");\n            }\n\n            // compute match length\n            int matchLength = token & 0xF; // bottom-most 4 bits of token\n            if (matchLength == 0xF) {\n                int value;\n                do {\n                    if (input > inputLimit - LAST_LITERAL_SIZE) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n\n                    value = UNSAFE.getByte(inputBase, input++) & 0xFF;\n                    matchLength += value;\n                }\n                while (value == 255);\n            }\n            matchLength += MIN_MATCH; // implicit length from initial 4-byte match in encoder\n            if (matchLength < 0) {\n                throw new MalformedInputException(input - inputAddress);\n            }\n\n            long matchOutputLimit = output + matchLength;\n\n            // at this point we have at least 12 bytes of space in the output buffer\n            // due to the fastLimit check before copying a literal, so no need to check again\n\n            // copy repeated sequence\n            if (offset < SIZE_OF_LONG) {\n                // 8 bytes apart so that we can copy long-at-a-time below\n                int increment32 = DEC_32_TABLE[offset];\n                int decrement64 = DEC_64_TABLE[offset];\n\n                UNSAFE.putByte(outputBase, output, UNSAFE.getByte(outputBase, matchAddress));\n                UNSAFE.putByte(outputBase, output + 1, UNSAFE.getByte(outputBase, matchAddress + 1));\n                UNSAFE.putByte(outputBase, output + 2, UNSAFE.getByte(outputBase, matchAddress + 2));\n                UNSAFE.putByte(outputBase, output + 3, UNSAFE.getByte(outputBase, matchAddress + 3));\n                output += SIZE_OF_INT;\n                matchAddress += increment32;\n\n                UNSAFE.putInt(outputBase, output, UNSAFE.getInt(outputBase, matchAddress));\n                output += SIZE_OF_INT;\n                matchAddress -= decrement64;\n            }\n            else {\n                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                matchAddress += SIZE_OF_LONG;\n                output += SIZE_OF_LONG;\n            }\n\n            if (matchOutputLimit > fastOutputLimit - MIN_MATCH) {\n                if (matchOutputLimit > outputLimit - LAST_LITERAL_SIZE) {\n                    throw new MalformedInputException(input - inputAddress, String.format(\"last %s bytes must be literals\", LAST_LITERAL_SIZE));\n                }\n\n                while (output < fastOutputLimit) {\n                    UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                    matchAddress += SIZE_OF_LONG;\n                    output += SIZE_OF_LONG;\n                }\n\n                while (output < matchOutputLimit) {\n                    UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n                }\n            }\n            else {\n                int i = 0;\n                do {\n                    UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                    output += SIZE_OF_LONG;\n                    matchAddress += SIZE_OF_LONG;\n                    i += SIZE_OF_LONG;\n                }\n                while (i < matchLength - SIZE_OF_LONG); // first long copied previously\n            }\n\n            output = matchOutputLimit; // correction in case we overcopied\n        }\n\n        return (int) (output - outputAddress);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lz4/UnsafeUtil.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.IncompatibleJvmException;\nimport sun.misc.Unsafe;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.reflect.Field;\nimport java.nio.ByteOrder;\n\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class UnsafeUtil\n{\n    public static final Unsafe UNSAFE;\n\n    private UnsafeUtil() {}\n\n    static {\n        ByteOrder order = ByteOrder.nativeOrder();\n        if (!order.equals(ByteOrder.LITTLE_ENDIAN)) {\n            throw new IncompatibleJvmException(format(\"LZ4 requires a little endian platform (found %s)\", order));\n        }\n\n        try {\n            Field theUnsafe = Unsafe.class.getDeclaredField(\"theUnsafe\");\n            theUnsafe.setAccessible(true);\n            UNSAFE = (Unsafe) theUnsafe.get(null);\n        }\n        catch (Exception e) {\n            throw new IncompatibleJvmException(\"LZ4 requires access to sun.misc.Unsafe\");\n        }\n    }\n\n    public static byte[] getBase(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return null;\n        }\n        if (segment.isReadOnly()) {\n            throw new IllegalArgumentException(\"MemorySegment is read-only\");\n        }\n        Object inputBase = segment.heapBase().orElse(null);\n        if (!(inputBase instanceof byte[] byteArray)) {\n            throw new IllegalArgumentException(\"MemorySegment is not backed by a byte array\");\n        }\n        return byteArray;\n    }\n\n    public static long getAddress(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return segment.address();\n        }\n        return segment.address() + ARRAY_BYTE_BASE_OFFSET;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\nimport org.apache.hadoop.conf.Configuration;\n\nimport java.util.Optional;\n\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT;\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_LZO_BUFFERSIZE_KEY;\n\npublic class LzoCodec\n        extends CodecAdapter\n{\n    public LzoCodec()\n    {\n        super(configuration -> new LzoHadoopStreams(getBufferSize(configuration)));\n    }\n\n    static int getBufferSize(Optional<Configuration> configuration)\n    {\n        // To decode a LZO block we must preallocate an output buffer, but\n        // the Hadoop block stream format does not include the uncompressed\n        // size of chunks.  Instead, we must rely on the \"configured\"\n        // maximum buffer size used by the writer of the file.\n        return configuration\n            .map(conf -> conf.getInt(IO_COMPRESSION_CODEC_LZO_BUFFERSIZE_KEY, IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT))\n            .orElse(IO_COMPRESSION_CODEC_LZ4_BUFFERSIZE_DEFAULT);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lzo.LzoRawCompressor.MAX_TABLE_SIZE;\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.getBase;\nimport static java.lang.Math.toIntExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\n/**\n * This class is not thread-safe\n */\npublic class LzoCompressor\n        implements Compressor\n{\n    private final int[] table = new int[MAX_TABLE_SIZE];\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return LzoRawCompressor.maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n\n        return LzoRawCompressor.compress(input, inputAddress, inputLength, output, outputAddress, maxOutputLength, table);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        try {\n            return LzoRawCompressor.compress(\n                    getBase(input),\n                    getAddress(input),\n                    toIntExact(input.byteSize()),\n                    getBase(output),\n                    getAddress(output),\n                    toIntExact(output.byteSize()),\n                    table);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    @Override\n    public int getRetainedSizeInBytes(int inputLength)\n    {\n        return MAX_TABLE_SIZE;\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoConstants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nfinal class LzoConstants\n{\n    public static final byte[] LZOP_MAGIC = new byte[] {(byte) 0x89, 0x4c, 0x5a, 0x4f, 0x00, 0x0d, 0x0a, 0x1a, 0x0a};\n    public static final byte LZO_1X_VARIANT = 1;\n\n    public static final int SIZE_OF_SHORT = 2;\n    public static final int SIZE_OF_INT = 4;\n    public static final int SIZE_OF_LONG = 8;\n\n    private LzoConstants() {}\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class LzoDecompressor\n        implements Decompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long inputLimit = inputAddress + inputLength;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n        long outputLimit = outputAddress + maxOutputLength;\n\n        return LzoRawDecompressor.decompress(input, inputAddress, inputLimit, output, outputAddress, outputLimit);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return LzoRawDecompressor.decompress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass LzoHadoopInputStream\n        extends HadoopInputStream\n{\n    private final LzoDecompressor decompressor = new LzoDecompressor();\n    private final InputStream in;\n    private final byte[] uncompressedChunk;\n\n    private int uncompressedBlockLength;\n    private int uncompressedChunkOffset;\n    private int uncompressedChunkLength;\n\n    private byte[] compressed = new byte[0];\n\n    public LzoHadoopInputStream(InputStream in, int maxUncompressedLength)\n    {\n        this.in = requireNonNull(in, \"in is null\");\n        // over allocate buffer which makes decompression easier\n        uncompressedChunk = new byte[maxUncompressedLength + SIZE_OF_LONG];\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        while (uncompressedChunkOffset >= uncompressedChunkLength) {\n            int compressedChunkLength = bufferCompressedData();\n            if (compressedChunkLength < 0) {\n                return -1;\n            }\n            uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        return uncompressedChunk[uncompressedChunkOffset++] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        while (uncompressedChunkOffset >= uncompressedChunkLength) {\n            int compressedChunkLength = bufferCompressedData();\n            if (compressedChunkLength < 0) {\n                return -1;\n            }\n\n            // favor writing directly to user buffer to avoid extra copy\n            if (length >= uncompressedBlockLength) {\n                uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, output, offset, length);\n                uncompressedChunkOffset = uncompressedChunkLength;\n                return uncompressedChunkLength;\n            }\n\n            uncompressedChunkLength = decompressor.decompress(compressed, 0, compressedChunkLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        int size = Math.min(length, uncompressedChunkLength - uncompressedChunkOffset);\n        System.arraycopy(uncompressedChunk, uncompressedChunkOffset, output, offset, size);\n        uncompressedChunkOffset += size;\n        return size;\n    }\n\n    @Override\n    public void resetState()\n    {\n        uncompressedBlockLength = 0;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        in.close();\n    }\n\n    private int bufferCompressedData()\n            throws IOException\n    {\n        uncompressedBlockLength -= uncompressedChunkOffset;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n        while (uncompressedBlockLength == 0) {\n            uncompressedBlockLength = readBigEndianInt();\n            if (uncompressedBlockLength == -1) {\n                uncompressedBlockLength = 0;\n                return -1;\n            }\n        }\n\n        int compressedChunkLength = readBigEndianInt();\n        if (compressedChunkLength == -1) {\n            return -1;\n        }\n\n        if (compressed.length < compressedChunkLength) {\n            // over allocate buffer which makes decompression easier\n            compressed = new byte[compressedChunkLength + SIZE_OF_LONG];\n        }\n        readInput(compressedChunkLength, compressed);\n        return compressedChunkLength;\n    }\n\n    private void readInput(int length, byte[] buffer)\n            throws IOException\n    {\n        int offset = 0;\n        while (offset < length) {\n            int size = in.read(buffer, offset, length - offset);\n            if (size == -1) {\n                throw new EOFException(\"encountered EOF while reading block data\");\n            }\n            offset += size;\n        }\n    }\n\n    private int readBigEndianInt()\n            throws IOException\n    {\n        int b1 = in.read();\n        if (b1 < 0) {\n            return -1;\n        }\n        int b2 = in.read();\n        int b3 = in.read();\n        int b4 = in.read();\n\n        // If any of the other bits are negative, the stream it truncated\n        if ((b2 | b3 | b4) < 0) {\n            throw new IOException(\"Stream is truncated\");\n        }\n        return ((b1 << 24) + (b2 << 16) + (b3 << 8) + (b4));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass LzoHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final LzoCompressor compressor = new LzoCompressor();\n\n    private final OutputStream out;\n    private final byte[] inputBuffer;\n    private final int inputMaxSize;\n    private int inputOffset;\n\n    private final byte[] outputBuffer;\n\n    public LzoHadoopOutputStream(OutputStream out, int bufferSize)\n    {\n        this.out = requireNonNull(out, \"out is null\");\n        inputBuffer = new byte[bufferSize];\n        // leave extra space free at end of buffers to make compression (slightly) faster\n        inputMaxSize = inputBuffer.length - compressionOverhead(bufferSize);\n        outputBuffer = new byte[compressor.maxCompressedLength(inputMaxSize) + SIZE_OF_LONG];\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        inputBuffer[inputOffset++] = (byte) b;\n        if (inputOffset >= inputMaxSize) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        while (length > 0) {\n            int chunkSize = Math.min(length, inputMaxSize - inputOffset);\n            // favor writing directly from the user buffer to avoid the extra copy\n            if (inputOffset == 0 && length > inputMaxSize) {\n                writeNextChunk(buffer, offset, chunkSize);\n            }\n            else {\n                System.arraycopy(buffer, offset, inputBuffer, inputOffset, chunkSize);\n                inputOffset += chunkSize;\n\n                if (inputOffset >= inputMaxSize) {\n                    writeNextChunk(inputBuffer, 0, inputOffset);\n                }\n            }\n            length -= chunkSize;\n            offset += chunkSize;\n        }\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (inputOffset > 0) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            finish();\n        }\n        finally {\n            out.close();\n        }\n    }\n\n    private void writeNextChunk(byte[] input, int inputOffset, int inputLength)\n            throws IOException\n    {\n        int compressedSize = compressor.compress(input, inputOffset, inputLength, outputBuffer, 0, outputBuffer.length);\n\n        writeBigEndianInt(inputLength);\n        writeBigEndianInt(compressedSize);\n        out.write(outputBuffer, 0, compressedSize);\n\n        this.inputOffset = 0;\n    }\n\n    private void writeBigEndianInt(int value)\n            throws IOException\n    {\n        out.write(value >>> 24);\n        out.write(value >>> 16);\n        out.write(value >>> 8);\n        out.write(value);\n    }\n\n    private static int compressionOverhead(int size)\n    {\n        return (size / 16) + 64 + 3;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\npublic class LzoHadoopStreams\n        implements HadoopStreams\n{\n    private static final List<String> HADOOP_CODEC_NAMES = List.of(\"org.apache.hadoop.io.compress.LzoCodec\", \"com.hadoop.compression.lzo.LzoCodec\");\n    private static final int DEFAULT_OUTPUT_BUFFER_SIZE = 256 * 1024;\n\n    private final int bufferSize;\n\n    public LzoHadoopStreams()\n    {\n        this(DEFAULT_OUTPUT_BUFFER_SIZE);\n    }\n\n    public LzoHadoopStreams(int bufferSize)\n    {\n        this.bufferSize = bufferSize;\n    }\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".lzo_deflate\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return HADOOP_CODEC_NAMES;\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n    {\n        return new LzoHadoopInputStream(in, bufferSize);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n    {\n        return new LzoHadoopOutputStream(out, bufferSize);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoRawCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.UNSAFE;\nimport static java.lang.Math.clamp;\n\nfinal class LzoRawCompressor\n{\n    public static final int LAST_LITERAL_SIZE = 5;\n    public static final int MIN_MATCH = 4;\n\n    private static final int MAX_INPUT_SIZE = 0x7E000000;   /* 2 113 929 216 bytes */\n\n    private static final int HASH_LOG = 12;\n\n    private static final int MIN_TABLE_SIZE = 16;\n    public static final int MAX_TABLE_SIZE = (1 << HASH_LOG);\n\n    private static final int COPY_LENGTH = 8;\n    private static final int MATCH_FIND_LIMIT = COPY_LENGTH + MIN_MATCH;\n\n    private static final int MIN_LENGTH = MATCH_FIND_LIMIT + 1;\n\n    private static final int ML_BITS = 4;\n    private static final int RUN_BITS = 8 - ML_BITS;\n    private static final int RUN_MASK = (1 << RUN_BITS) - 1;\n\n    private static final int MAX_DISTANCE = 0b1100_0000_0000_0000 - 1;\n\n    private static final int SKIP_TRIGGER = 6;  /* Increase this value ==> compression run slower on incompressible data */\n\n    private LzoRawCompressor() {}\n\n    private static int hash(long value, int mask)\n    {\n        // Multiplicative hash. It performs the equivalent to\n        // this computation:\n        //\n        //  value * frac(a)\n        //\n        // for some real number 'a' with a good & random mix\n        // of 1s and 0s in its binary representation\n        //\n        // For performance, it does it using fixed point math\n        return (int) ((value * 889523592379L >>> 28) & mask);\n    }\n\n    public static int maxCompressedLength(int sourceLength)\n    {\n        return sourceLength + sourceLength / 255 + 16;\n    }\n\n    public static int compress(\n            final Object inputBase,\n            final long inputAddress,\n            final int inputLength,\n            final Object outputBase,\n            final long outputAddress,\n            final long maxOutputLength,\n            final int[] table)\n    {\n        int tableSize = computeTableSize(inputLength);\n        Arrays.fill(table, 0, tableSize, 0);\n\n        int mask = tableSize - 1;\n\n        if (inputLength > MAX_INPUT_SIZE) {\n            throw new IllegalArgumentException(\"Max input length exceeded\");\n        }\n\n        if (maxOutputLength < maxCompressedLength(inputLength)) {\n            throw new IllegalArgumentException(\"Max output length must be larger than \" + maxCompressedLength(inputLength));\n        }\n\n        // nothing compresses to nothing\n        if (inputLength == 0) {\n            return 0;\n        }\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        final long inputLimit = inputAddress + inputLength;\n        final long matchFindLimit = inputLimit - MATCH_FIND_LIMIT;\n        final long matchLimit = inputLimit - LAST_LITERAL_SIZE;\n\n        if (inputLength < MIN_LENGTH) {\n            output = emitLastLiteral(true, outputBase, output, inputBase, input, inputLimit - input);\n            return (int) (output - outputAddress);\n        }\n\n        long anchor = input;\n\n        // First Byte\n        // put position in hash\n        table[hash(UNSAFE.getLong(inputBase, input), mask)] = (int) (input - inputAddress);\n\n        input++;\n        int nextHash = hash(UNSAFE.getLong(inputBase, input), mask);\n\n        boolean done = false;\n        boolean firstLiteral = true;\n        do {\n            long nextInputIndex = input;\n            int findMatchAttempts = 1 << SKIP_TRIGGER;\n            int step = 1;\n\n            // find 4-byte match\n            long matchIndex;\n            do {\n                int hash = nextHash;\n                input = nextInputIndex;\n                nextInputIndex += step;\n\n                step = (findMatchAttempts++) >>> SKIP_TRIGGER;\n\n                if (nextInputIndex > matchFindLimit) {\n                    output = emitLastLiteral(firstLiteral, outputBase, output, inputBase, anchor, inputLimit - anchor);\n                    return (int) (output - outputAddress);\n                }\n\n                // get position on hash\n                matchIndex = inputAddress + table[hash];\n                nextHash = hash(UNSAFE.getLong(inputBase, nextInputIndex), mask);\n\n                // put position on hash\n                table[hash] = (int) (input - inputAddress);\n            }\n            while (UNSAFE.getInt(inputBase, matchIndex) != UNSAFE.getInt(inputBase, input) || matchIndex + MAX_DISTANCE < input);\n\n            // catch up\n            while ((input > anchor) && (matchIndex > inputAddress) && (UNSAFE.getByte(inputBase, input - 1) == UNSAFE.getByte(inputBase, matchIndex - 1))) {\n                --input;\n                --matchIndex;\n            }\n\n            int literalLength = (int) (input - anchor);\n\n            output = emitLiteral(firstLiteral, inputBase, anchor, outputBase, output, literalLength);\n            firstLiteral = false;\n\n            // next match\n            while (true) {\n                int offset = (int) (input - matchIndex);\n\n                // find match length\n                input += MIN_MATCH;\n                int matchLength = count(inputBase, input, matchIndex + MIN_MATCH, matchLimit);\n                input += matchLength;\n\n                // write copy command\n                output = emitCopy(outputBase, output, offset, matchLength + MIN_MATCH);\n                anchor = input;\n\n                // are we done?\n                if (input > matchFindLimit) {\n                    done = true;\n                    break;\n                }\n\n                long position = input - 2;\n                table[hash(UNSAFE.getLong(inputBase, position), mask)] = (int) (position - inputAddress);\n\n                // Test next position\n                int hash = hash(UNSAFE.getLong(inputBase, input), mask);\n                matchIndex = inputAddress + table[hash];\n                table[hash] = (int) (input - inputAddress);\n\n                if (matchIndex + MAX_DISTANCE < input || UNSAFE.getInt(inputBase, matchIndex) != UNSAFE.getInt(inputBase, input)) {\n                    input++;\n                    nextHash = hash(UNSAFE.getLong(inputBase, input), mask);\n                    break;\n                }\n\n                // go for another match\n            }\n        }\n        while (!done);\n\n        // Encode Last Literals\n        output = emitLastLiteral(false, outputBase, output, inputBase, anchor, inputLimit - anchor);\n\n        return (int) (output - outputAddress);\n    }\n\n    private static int count(Object inputBase, final long start, long matchStart, long matchLimit)\n    {\n        long current = start;\n\n        // first, compare long at a time\n        while (current < matchLimit - (SIZE_OF_LONG - 1)) {\n            long diff = UNSAFE.getLong(inputBase, matchStart) ^ UNSAFE.getLong(inputBase, current);\n            if (diff != 0) {\n                current += Long.numberOfTrailingZeros(diff) >> 3;\n                return (int) (current - start);\n            }\n\n            current += SIZE_OF_LONG;\n            matchStart += SIZE_OF_LONG;\n        }\n\n        if (current < matchLimit - (SIZE_OF_INT - 1) && UNSAFE.getInt(inputBase, matchStart) == UNSAFE.getInt(inputBase, current)) {\n            current += SIZE_OF_INT;\n            matchStart += SIZE_OF_INT;\n        }\n\n        if (current < matchLimit - (SIZE_OF_SHORT - 1) && UNSAFE.getShort(inputBase, matchStart) == UNSAFE.getShort(inputBase, current)) {\n            current += SIZE_OF_SHORT;\n            matchStart += SIZE_OF_SHORT;\n        }\n\n        if (current < matchLimit && UNSAFE.getByte(inputBase, matchStart) == UNSAFE.getByte(inputBase, current)) {\n            ++current;\n        }\n\n        return (int) (current - start);\n    }\n\n    private static long emitLastLiteral(\n            boolean firstLiteral,\n            final Object outputBase,\n            long output,\n            final Object inputBase,\n            final long inputAddress,\n            final long literalLength)\n    {\n        output = encodeLiteralLength(firstLiteral, outputBase, output, literalLength);\n        UNSAFE.copyMemory(inputBase, inputAddress, outputBase, output, literalLength);\n        output += literalLength;\n\n        // write stop command\n        // this is a 0b0001_HMMM command with a zero match offset\n        UNSAFE.putByte(outputBase, output++, (byte) 0b0001_0001);\n        UNSAFE.putShort(outputBase, output, (byte) 0);\n        output += SIZE_OF_SHORT;\n\n        return output;\n    }\n\n    private static long emitLiteral(\n            boolean firstLiteral,\n            Object inputBase,\n            long input,\n            Object outputBase,\n            long output,\n            int literalLength)\n    {\n        output = encodeLiteralLength(firstLiteral, outputBase, output, literalLength);\n\n        final long outputLimit = output + literalLength;\n        do {\n            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n            input += SIZE_OF_LONG;\n            output += SIZE_OF_LONG;\n        }\n        while (output < outputLimit);\n\n        return outputLimit;\n    }\n\n    private static long encodeLiteralLength(\n            boolean firstLiteral,\n            final Object outBase,\n            long output,\n            long length)\n    {\n        if (firstLiteral && length < (0xFF - 17)) {\n            UNSAFE.putByte(outBase, output++, (byte) (length + 17));\n        }\n        else if (length < 4) {\n            // Small literals are encoded in the low two bits trailer of the previous command.  The\n            // trailer is a little endian short, so we need to adjust the byte 2 back in the output.\n            UNSAFE.putByte(outBase, output - 2, (byte) (UNSAFE.getByte(outBase, output - 2) | length));\n        }\n        else {\n            length -= 3;\n            if (length > RUN_MASK) {\n                UNSAFE.putByte(outBase, output++, (byte) 0);\n\n                long remaining = length - RUN_MASK;\n                while (remaining > 255) {\n                    UNSAFE.putByte(outBase, output++, (byte) 0);\n                    remaining -= 255;\n                }\n                UNSAFE.putByte(outBase, output++, (byte) remaining);\n            }\n            else {\n                UNSAFE.putByte(outBase, output++, (byte) length);\n            }\n        }\n        return output;\n    }\n\n    private static long emitCopy(Object outputBase, long output, int matchOffset, int matchLength)\n    {\n        if (matchOffset > MAX_DISTANCE || matchOffset < 1) {\n            throw new IllegalArgumentException(\"Unsupported copy offset: \" + matchOffset);\n        }\n\n        // use short command for small copy with small offset\n        if (matchLength <= 8 && matchOffset <= 2048) {\n            // 0bMMMP_PPLL 0bPPPP_PPPP\n\n            // encodes matchLength and matchOffset - 1\n            matchLength--;\n            matchOffset--;\n\n            UNSAFE.putByte(outputBase, output++, (byte) (((matchLength) << 5) | ((matchOffset & 0b111) << 2)));\n            UNSAFE.putByte(outputBase, output++, (byte) (matchOffset >>> 3));\n\n            return output;\n        }\n\n        // lzo encodes matchLength - 2\n        matchLength -= 2;\n\n        if (matchOffset >= (1 << 15)) {\n            // 0b0001_1MMM (0bMMMM_MMMM)* 0bPPPP_PPPP_PPPP_PPLL\n            output = encodeMatchLength(outputBase, output, matchLength, 0b0000_0111, 0b0001_1000);\n        }\n        else if (matchOffset > (1 << 14)) {\n            // 0b0001_0MMM (0bMMMM_MMMM)* 0bPPPP_PPPP_PPPP_PPLL\n            output = encodeMatchLength(outputBase, output, matchLength, 0b0000_0111, 0b0001_0000);\n        }\n        else {\n            // 0b001M_MMMM (0bMMMM_MMMM)* 0bPPPP_PPPP_PPPP_PPLL\n            output = encodeMatchLength(outputBase, output, matchLength, 0b0001_1111, 0b0010_0000);\n\n            // this command encodes matchOffset - 1\n            matchOffset--;\n        }\n\n        output = encodeOffset(outputBase, output, matchOffset);\n        return output;\n    }\n\n    private static long encodeOffset(final Object outputBase, final long outputAddress, final int offset)\n    {\n        UNSAFE.putShort(outputBase, outputAddress, (short) (offset << 2));\n        return outputAddress + 2;\n    }\n\n    private static long encodeMatchLength(Object outputBase, long output, int matchLength, int baseMatchLength, int command)\n    {\n        if (matchLength <= baseMatchLength) {\n            UNSAFE.putByte(outputBase, output++, (byte) (command | matchLength));\n        }\n        else {\n            UNSAFE.putByte(outputBase, output++, (byte) command);\n            long remaining = matchLength - baseMatchLength;\n            while (remaining > 510) {\n                UNSAFE.putShort(outputBase, output, (short) 0);\n                output += SIZE_OF_SHORT;\n                remaining -= 510;\n            }\n            if (remaining > 255) {\n                UNSAFE.putByte(outputBase, output++, (byte) 0);\n                remaining -= 255;\n            }\n            UNSAFE.putByte(outputBase, output++, (byte) remaining);\n        }\n        return output;\n    }\n\n    private static int computeTableSize(int inputSize)\n    {\n        // smallest power of 2 larger than inputSize\n        int target = Integer.highestOneBit(inputSize - 1) << 1;\n\n        // keep it between MIN_TABLE_SIZE and MAX_TABLE_SIZE\n        return clamp(target, MIN_TABLE_SIZE, MAX_TABLE_SIZE);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzoRawDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.lzo.UnsafeUtil.UNSAFE;\nimport static java.lang.Integer.toBinaryString;\n\nfinal class LzoRawDecompressor\n{\n    private static final int[] DEC_32_TABLE = {4, 1, 2, 1, 4, 4, 4, 4};\n    private static final int[] DEC_64_TABLE = {0, 0, 0, -1, 0, 1, 2, 3};\n\n    private LzoRawDecompressor() {}\n\n    @SuppressWarnings(\"InnerAssignment\")\n    public static int decompress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit)\n            throws MalformedInputException\n    {\n        // nothing compresses to nothing\n        if (inputAddress == inputLimit) {\n            return 0;\n        }\n\n        // maximum offset in buffers to which it's safe to write long-at-a-time\n        final long fastOutputLimit = outputLimit - SIZE_OF_LONG;\n\n        // LZO can concat multiple blocks together so, decode until all input data is consumed\n        long input = inputAddress;\n        long output = outputAddress;\n        while (input < inputLimit) {\n            boolean firstCommand = true;\n            int lastLiteralLength = 0;\n            while (true) {\n                if (input >= inputLimit) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n                int command = UNSAFE.getByte(inputBase, input++) & 0xFF;\n                // Commands are described using a bit pattern notation:\n                // 0: bit is not set\n                // 1: bit is set\n                // L: part of literal length\n                // H: high bits of match offset position\n                // D: low bits of match offset position\n                // M: part of match length\n                // ?: see documentation in command decoder\n\n                int matchLength;\n                int matchOffset;\n                int literalLength;\n                if ((command & 0b1111_0000) == 0b0000_0000) {\n                    if (lastLiteralLength == 0) {\n                        // 0b0000_LLLL (0bLLLL_LLLL)*\n                        // copy 4 or more literals only\n\n                        // copy length :: fixed\n                        //   0\n                        matchOffset = 0;\n\n                        // copy offset :: fixed\n                        //   0\n                        matchLength = 0;\n\n                        // literal length - 3 :: variable bits :: valid range [4..]\n                        //   3 + variableLength(command bits [0..3], 4)\n                        literalLength = command & 0b1111;\n                        if (literalLength == 0) {\n                            literalLength = 0b1111;\n\n                            int nextByte = 0;\n                            while (input < inputLimit && (nextByte = UNSAFE.getByte(inputBase, input++) & 0xFF) == 0) {\n                                literalLength += 0b1111_1111;\n                            }\n                            literalLength += nextByte;\n                        }\n                        literalLength += 3;\n                    }\n                    else if (lastLiteralLength <= 3) {\n                        // 0b0000_DDLL 0bHHHH_HHHH\n                        // copy of a 2-byte block from the dictionary within a 1kB distance\n\n                        // copy length: fixed\n                        //   2\n                        matchLength = 2;\n\n                        // copy offset :: valid range [1..1024]\n                        //   DD from command [2..3]\n                        //   HH from trailer [0..7]\n                        // offset = (HH << 2) + DD + 1\n                        if (input >= inputLimit) {\n                            throw new MalformedInputException(input - inputAddress);\n                        }\n                        matchOffset = (command & 0b1100) >>> 2;\n                        matchOffset |= (UNSAFE.getByte(inputBase, input++) & 0xFF) << 2;\n\n                        // literal length :: 2 bits :: valid range [0..3]\n                        //   [0..1] from command [0..1]\n                        literalLength = (command & 0b0000_0011);\n                    }\n                    else {\n                        // 0b0000_DDLL 0bHHHH_HHHH\n\n                        // copy length :: fixed\n                        //   3\n                        matchLength = 3;\n\n                        // copy offset :: 10 bits :: valid range [2049..3072]\n                        //   DD from command [2..3]\n                        //   HH from trailer [0..7]\n                        // offset = (H << 2) + D + 2049\n                        if (input >= inputLimit) {\n                            throw new MalformedInputException(input - inputAddress);\n                        }\n                        matchOffset = (command & 0b1100) >>> 2;\n                        matchOffset |= (UNSAFE.getByte(inputBase, input++) & 0xFF) << 2;\n                        matchOffset |= 0b1000_0000_0000;\n\n                        // literal length :: 2 bits :: valid range [0..3]\n                        //   [0..1] from command [0..1]\n                        literalLength = (command & 0b0000_0011);\n                    }\n                }\n                else if (firstCommand) {\n                    // first command has special handling when high nibble is set\n                    matchLength = 0;\n                    matchOffset = 0;\n                    literalLength = command - 17;\n                }\n                else if ((command & 0b1111_0000) == 0b0001_0000) {\n                    // 0b0001_HMMM (0bMMMM_MMMM)* 0bDDDD_DDDD_DDDD_DDLL\n\n                    // copy length - 2 :: variable bits :: valid range [3..]\n                    //   2 + variableLength(command bits [0..2], 3)\n                    matchLength = command & 0b111;\n                    if (matchLength == 0) {\n                        matchLength = 0b111;\n\n                        int nextByte = 0;\n                        while (input < inputLimit && (nextByte = UNSAFE.getByte(inputBase, input++) & 0xFF) == 0) {\n                            matchLength += 0b1111_1111;\n                        }\n                        matchLength += nextByte;\n                    }\n                    matchLength += 2;\n\n                    // read trailer\n                    if (input + SIZE_OF_SHORT > inputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n                    int trailer = UNSAFE.getShort(inputBase, input) & 0xFFFF;\n                    input += SIZE_OF_SHORT;\n\n                    // copy offset :: 16 bits :: valid range [16383..49151]\n                    //   [0..13] from trailer [2..15]\n                    //   [14] if command bit [3] set\n                    //   plus fixed offset 0b11_1111_1111_1111\n                    matchOffset = (command & 0b1000) << 11;\n                    matchOffset += trailer >> 2;\n                    if (matchOffset == 0) {\n                        // match offset of zero, means that this is the last command in the sequence\n                        break;\n                    }\n                    matchOffset += 0b11_1111_1111_1111;\n\n                    // literal length :: 2 bits :: valid range [0..3]\n                    //   [0..1] from trailer [0..1]\n                    literalLength = trailer & 0b11;\n                }\n                else if ((command & 0b1110_0000) == 0b0010_0000) {\n                    // command in [32, 63]\n                    // 0b001M_MMMM (0bMMMM_MMMM)* 0bDDDD_DDDD_DDDD_DDLL\n\n                    // copy length - 2 :: variable bits :: valid range [3..]\n                    //   2 + variableLength(command bits [0..4], 5)\n                    matchLength = command & 0b1_1111;\n                    if (matchLength == 0) {\n                        matchLength = 0b1_1111;\n\n                        int nextByte = 0;\n                        while (input < inputLimit && (nextByte = UNSAFE.getByte(inputBase, input++) & 0xFF) == 0) {\n                            matchLength += 0b1111_1111;\n                        }\n                        matchLength += nextByte;\n                    }\n                    matchLength += 2;\n\n                    // read trailer\n                    if (input + SIZE_OF_SHORT > inputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n                    int trailer = UNSAFE.getShort(inputBase, input) & 0xFFFF;\n                    input += SIZE_OF_SHORT;\n\n                    // copy offset :: 14 bits :: valid range [0..16383]\n                    //  [0..13] from trailer [2..15]\n                    matchOffset = trailer >>> 2;\n\n                    // literal length :: 2 bits :: valid range [0..3]\n                    //   [0..1] from trailer [0..1]\n                    literalLength = trailer & 0b11;\n                }\n                else if ((command & 0b1100_0000) != 0) {\n                    // 0bMMMD_DDLL 0bHHHH_HHHH\n\n                    // copy length - 1 :: 3 bits :: valid range [1..8]\n                    //   [0..2] from command [5..7]\n                    //   add 1\n                    matchLength = (command & 0b1110_0000) >>> 5;\n                    matchLength += 1;\n\n                    // copy offset :: 11 bits :: valid range [0..4095]\n                    //   [0..2] from command [2..4]\n                    //   [3..10] from trailer [0..7]\n                    if (input >= inputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n                    matchOffset = (command & 0b0001_1100) >>> 2;\n                    matchOffset |= (UNSAFE.getByte(inputBase, input++) & 0xFF) << 3;\n\n                    // literal length :: 2 bits :: valid range [0..3]\n                    //   [0..1] from command [0..1]\n                    literalLength = (command & 0b0000_0011);\n                }\n                else {\n                    String binary = toBinary(command);\n                    throw new MalformedInputException(input - 1, \"Invalid LZO command \" + binary);\n                }\n                firstCommand = false;\n\n                if (matchLength < 0) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n\n                // copy match\n                if (matchLength != 0) {\n                    // lzo encodes match offset minus one\n                    matchOffset++;\n\n                    long matchAddress = output - matchOffset;\n                    if (matchAddress < outputAddress || output + matchLength > outputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n                    long matchOutputLimit = output + matchLength;\n\n                    if (output > fastOutputLimit) {\n                        // slow match copy\n                        while (output < matchOutputLimit) {\n                            UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n                        }\n                    }\n                    else {\n                        // copy repeated sequence\n                        if (matchOffset < SIZE_OF_LONG) {\n                            // 8 bytes apart so that we can copy long-at-a-time below\n                            int increment32 = DEC_32_TABLE[matchOffset];\n                            int decrement64 = DEC_64_TABLE[matchOffset];\n\n                            UNSAFE.putByte(outputBase, output, UNSAFE.getByte(outputBase, matchAddress));\n                            UNSAFE.putByte(outputBase, output + 1, UNSAFE.getByte(outputBase, matchAddress + 1));\n                            UNSAFE.putByte(outputBase, output + 2, UNSAFE.getByte(outputBase, matchAddress + 2));\n                            UNSAFE.putByte(outputBase, output + 3, UNSAFE.getByte(outputBase, matchAddress + 3));\n                            output += SIZE_OF_INT;\n                            matchAddress += increment32;\n\n                            UNSAFE.putInt(outputBase, output, UNSAFE.getInt(outputBase, matchAddress));\n                            output += SIZE_OF_INT;\n                            matchAddress -= decrement64;\n                        }\n                        else {\n                            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                            matchAddress += SIZE_OF_LONG;\n                            output += SIZE_OF_LONG;\n                        }\n\n                        if (matchOutputLimit >= fastOutputLimit) {\n                            if (matchOutputLimit > outputLimit) {\n                                throw new MalformedInputException(input - inputAddress);\n                            }\n\n                            while (output < fastOutputLimit) {\n                                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                                matchAddress += SIZE_OF_LONG;\n                                output += SIZE_OF_LONG;\n                            }\n\n                            while (output < matchOutputLimit) {\n                                UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n                            }\n                        }\n                        else {\n                            while (output < matchOutputLimit) {\n                                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                                matchAddress += SIZE_OF_LONG;\n                                output += SIZE_OF_LONG;\n                            }\n                        }\n                    }\n                    output = matchOutputLimit; // correction in case we over-copied\n                }\n\n                // copy literal\n                if (literalLength < 0) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n                long literalOutputLimit = output + literalLength;\n                if (literalOutputLimit > fastOutputLimit || input + literalLength > inputLimit - SIZE_OF_LONG) {\n                    if (literalOutputLimit > outputLimit || input + literalLength > inputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n\n                    // slow, precise copy\n                    UNSAFE.copyMemory(inputBase, input, outputBase, output, literalLength);\n                    input += literalLength;\n                    output += literalLength;\n                }\n                else {\n                    // fast copy. We may over-copy but there's enough room in input and output to not overrun them\n                    do {\n                        UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n                        input += SIZE_OF_LONG;\n                        output += SIZE_OF_LONG;\n                    }\n                    while (output < literalOutputLimit);\n                    input -= (output - literalOutputLimit); // adjust index if we over-copied\n                    output = literalOutputLimit;\n                }\n                lastLiteralLength = literalLength;\n            }\n        }\n        return (int) (output - outputAddress);\n    }\n\n    private static String toBinary(int command)\n    {\n        String binaryString = String.format(\"%8s\", toBinaryString(command)).replace(' ', '0');\n        return \"0b\" + binaryString.substring(0, 4) + \"_\" + binaryString.substring(4);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzopCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\n\nimport static io.airlift.compress.v3.lzo.LzoCodec.getBufferSize;\n\npublic class LzopCodec\n        extends CodecAdapter\n{\n    public LzopCodec()\n    {\n        super(configuration -> new LzopHadoopStreams(getBufferSize(configuration)));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzopHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.Arrays;\nimport java.util.zip.Adler32;\nimport java.util.zip.CRC32;\nimport java.util.zip.Checksum;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.LZOP_MAGIC;\nimport static io.airlift.compress.v3.lzo.LzoConstants.LZO_1X_VARIANT;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static java.lang.String.format;\nimport static java.util.Objects.requireNonNull;\n\nclass LzopHadoopInputStream\n        extends HadoopInputStream\n{\n    private static final int LZO_VERSION_MAX = 0x20A0;\n    private static final int LZOP_FILE_VERSION_MIN = 0x0940;\n    private static final int LZOP_FORMAT_VERSION_MAX = 0x1010;\n\n    private static final int LZOP_FLAG_ADLER32_DECOMPRESSED = 0x0000_0001;\n    private static final int LZOP_FLAG_ADLER32_COMPRESSED = 0x0000_0002;\n    private static final int LZOP_FLAG_CRC32_DECOMPRESSED = 0x0000_0100;\n    private static final int LZOP_FLAG_CRC32_COMPRESSED = 0x0000_0200;\n    private static final int LZOP_FLAG_CRC32_HEADER = 0x0000_1000;\n    private static final int LZOP_FLAG_IO_MASK = 0x0000_000c;\n    private static final int LZOP_FLAG_OPERATING_SYSTEM_MASK = 0xff00_0000;\n    private static final int LZOP_FLAG_CHARACTER_SET_MASK = 0x00f0_0000;\n\n    private final LzoDecompressor decompressor = new LzoDecompressor();\n    private final InputStream in;\n    private final byte[] uncompressedChunk;\n\n    private int uncompressedLength;\n    private int uncompressedOffset;\n\n    private boolean finished;\n\n    private byte[] compressed = new byte[0];\n    private final boolean adler32Decompressed;\n    private final boolean adler32Compressed;\n    private final boolean crc32Decompressed;\n    private final boolean crc32Compressed;\n\n    public LzopHadoopInputStream(InputStream in, int maxUncompressedLength)\n            throws IOException\n    {\n        this.in = requireNonNull(in, \"in is null\");\n        // over allocate buffer which makes decompression easier\n        uncompressedChunk = new byte[maxUncompressedLength + SIZE_OF_LONG];\n\n        byte[] magic = new byte[LZOP_MAGIC.length];\n        readInput(magic, 0, magic.length);\n        if (!Arrays.equals(magic, LZOP_MAGIC)) {\n            throw new IOException(\"Not an LZOP file\");\n        }\n\n        byte[] header = new byte[25];\n        readInput(header, 0, header.length);\n        ByteArrayInputStream headerStream = new ByteArrayInputStream(header);\n\n        // lzop version: ignored\n        int lzopFileVersion = readBigEndianShort(headerStream);\n        if (lzopFileVersion < LZOP_FILE_VERSION_MIN) {\n            throw new IOException(format(\"Unsupported LZOP file version 0x%08X\", lzopFileVersion));\n        }\n\n        // lzo version\n        int lzoVersion = readBigEndianShort(headerStream);\n        if (lzoVersion > LZO_VERSION_MAX) {\n            throw new IOException(format(\"Unsupported LZO version 0x%08X\", lzoVersion));\n        }\n\n        // lzop version of the format\n        int lzopFormatVersion = readBigEndianShort(headerStream);\n        if (lzopFormatVersion > LZOP_FORMAT_VERSION_MAX) {\n            throw new IOException(format(\"Unsupported LZOP format version 0x%08X\", lzopFormatVersion));\n        }\n\n        // variant: must be LZO 1X\n        int variant = headerStream.read();\n        if (variant != LZO_1X_VARIANT) {\n            throw new IOException(format(\"Unsupported LZO variant %s\", variant));\n        }\n\n        // level: ignored\n        headerStream.read();\n\n        // flags\n        int flags = readBigEndianInt(headerStream);\n\n        // ignore flags about the compression environment\n        flags &= ~LZOP_FLAG_IO_MASK;\n        flags &= ~LZOP_FLAG_OPERATING_SYSTEM_MASK;\n        flags &= ~LZOP_FLAG_CHARACTER_SET_MASK;\n\n        // checksum flags\n        adler32Decompressed = (flags & LZOP_FLAG_ADLER32_DECOMPRESSED) != 0;\n        adler32Compressed = (flags & LZOP_FLAG_ADLER32_COMPRESSED) != 0;\n        crc32Decompressed = (flags & LZOP_FLAG_CRC32_DECOMPRESSED) != 0;\n        crc32Compressed = (flags & LZOP_FLAG_CRC32_COMPRESSED) != 0;\n        boolean crc32Header = (flags & LZOP_FLAG_CRC32_HEADER) != 0;\n\n        flags &= ~LZOP_FLAG_ADLER32_DECOMPRESSED;\n        flags &= ~LZOP_FLAG_ADLER32_COMPRESSED;\n        flags &= ~LZOP_FLAG_CRC32_DECOMPRESSED;\n        flags &= ~LZOP_FLAG_CRC32_COMPRESSED;\n        flags &= ~LZOP_FLAG_CRC32_HEADER;\n\n        // no other flags are supported\n        if (flags != 0) {\n            throw new IOException(format(\"Unsupported LZO flags 0x%08X\", flags));\n        }\n\n        // output file mode: ignored\n        readBigEndianInt(headerStream);\n\n        // output file modified time: ignored\n        readBigEndianInt(headerStream);\n\n        // output file time zone offset: ignored\n        readBigEndianInt(headerStream);\n\n        // output file name: ignored\n        int fileNameLength = headerStream.read();\n        byte[] fileName = new byte[fileNameLength];\n        readInput(fileName, 0, fileName.length);\n\n        // verify header checksum\n        int headerChecksumValue = readBigEndianInt(in);\n\n        Checksum headerChecksum = crc32Header ? new CRC32() : new Adler32();\n        headerChecksum.update(header, 0, header.length);\n        headerChecksum.update(fileName, 0, fileName.length);\n        if (headerChecksumValue != (int) headerChecksum.getValue()) {\n            throw new IOException(\"Invalid header checksum\");\n        }\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        if (finished) {\n            return -1;\n        }\n\n        while (uncompressedOffset >= uncompressedLength) {\n            int compressedLength = bufferCompressedData();\n            if (finished) {\n                return -1;\n            }\n\n            decompress(compressedLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        return uncompressedChunk[uncompressedOffset++] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        if (finished) {\n            return -1;\n        }\n\n        while (uncompressedOffset >= uncompressedLength) {\n            int compressedLength = bufferCompressedData();\n            if (finished) {\n                return -1;\n            }\n\n            // favor writing directly to user buffer to avoid extra copy\n            if (length >= uncompressedLength) {\n                decompress(compressedLength, output, offset, length);\n                uncompressedOffset = uncompressedLength;\n                return uncompressedLength;\n            }\n\n            decompress(compressedLength, uncompressedChunk, 0, uncompressedChunk.length);\n        }\n        int size = Math.min(length, uncompressedLength - uncompressedOffset);\n        System.arraycopy(uncompressedChunk, uncompressedOffset, output, offset, size);\n        uncompressedOffset += size;\n        return size;\n    }\n\n    @Override\n    public void resetState()\n    {\n        uncompressedLength = 0;\n        uncompressedOffset = 0;\n        finished = false;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        in.close();\n    }\n\n    private int bufferCompressedData()\n            throws IOException\n    {\n        uncompressedOffset = 0;\n        uncompressedLength = readBigEndianInt(in);\n        if (uncompressedLength == -1) {\n            // LZOP file MUST end with uncompressedLength == 0\n            throw new EOFException(\"encountered EOF while reading block data\");\n        }\n        if (uncompressedLength == 0) {\n            finished = true;\n            return -1;\n        }\n\n        int compressedLength = readBigEndianInt(in);\n        if (compressedLength == -1) {\n            throw new EOFException(\"encountered EOF while reading block data\");\n        }\n\n        skipChecksums(compressedLength < uncompressedLength);\n\n        return compressedLength;\n    }\n\n    private void skipChecksums(boolean compressed)\n            throws IOException\n    {\n        if (adler32Decompressed) {\n            readBigEndianInt(in);\n        }\n        if (crc32Decompressed) {\n            readBigEndianInt(in);\n        }\n        if (compressed && adler32Compressed) {\n            readBigEndianInt(in);\n        }\n        if (compressed && crc32Compressed) {\n            readBigEndianInt(in);\n        }\n    }\n\n    private void decompress(int compressedLength, byte[] output, int outputOffset, int outputLength)\n            throws IOException\n    {\n        if (uncompressedLength == compressedLength) {\n            readInput(output, outputOffset, compressedLength);\n        }\n        else {\n            if (compressed.length < compressedLength) {\n                // over allocate buffer which makes decompression easier\n                compressed = new byte[compressedLength + SIZE_OF_LONG];\n            }\n            readInput(compressed, 0, compressedLength);\n            int actualUncompressedLength = decompressor.decompress(compressed, 0, compressedLength, output, outputOffset, outputLength);\n            if (actualUncompressedLength != uncompressedLength) {\n                throw new IOException(\"Decompressor did not decompress the entire block\");\n            }\n        }\n    }\n\n    private void readInput(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        while (length > 0) {\n            int size = in.read(buffer, offset, length);\n            if (size == -1) {\n                throw new EOFException(\"encountered EOF while reading block data\");\n            }\n            offset += size;\n            length -= size;\n        }\n    }\n\n    private static int readBigEndianShort(InputStream in)\n            throws IOException\n    {\n        int b1 = in.read();\n        if (b1 < 0) {\n            return -1;\n        }\n\n        int b2 = in.read();\n        // If second byte is negative, the stream it truncated\n        if ((b2) < 0) {\n            throw new IOException(\"Stream is truncated\");\n        }\n        return (b1 << 8) + (b2);\n    }\n\n    private static int readBigEndianInt(InputStream in)\n            throws IOException\n    {\n        int b1 = in.read();\n        if (b1 < 0) {\n            return -1;\n        }\n        int b2 = in.read();\n        int b3 = in.read();\n        int b4 = in.read();\n\n        // If any of the other bits are negative, the stream it truncated\n        if ((b2 | b3 | b4) < 0) {\n            throw new IOException(\"Stream is truncated\");\n        }\n        return ((b1 << 24) + (b2 << 16) + (b3 << 8) + (b4));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzopHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.DataOutputStream;\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.util.zip.Adler32;\n\nimport static io.airlift.compress.v3.lzo.LzoConstants.LZOP_MAGIC;\nimport static io.airlift.compress.v3.lzo.LzoConstants.LZO_1X_VARIANT;\nimport static io.airlift.compress.v3.lzo.LzoConstants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass LzopHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private static final int LZOP_FILE_VERSION = 0x1010;\n    private static final int LZOP_FORMAT_VERSION = 0x0940;\n    private static final int LZO_FORMAT_VERSION = 0x2050;\n    private static final int LEVEL = 5;\n\n    private final LzoCompressor compressor = new LzoCompressor();\n\n    private final OutputStream out;\n    private final byte[] inputBuffer;\n    private final int inputMaxSize;\n    private int inputOffset;\n\n    private final byte[] outputBuffer;\n\n    public LzopHadoopOutputStream(OutputStream out, int bufferSize)\n            throws IOException\n    {\n        this.out = requireNonNull(out, \"out is null\");\n        inputBuffer = new byte[bufferSize];\n        // leave extra space free at end of buffers to make compression (slightly) faster\n        inputMaxSize = inputBuffer.length - compressionOverhead(bufferSize);\n        outputBuffer = new byte[compressor.maxCompressedLength(inputMaxSize) + SIZE_OF_LONG];\n\n        out.write(LZOP_MAGIC);\n\n        ByteArrayOutputStream headerOut = new ByteArrayOutputStream(25);\n        DataOutputStream headerDataOut = new DataOutputStream(headerOut);\n        headerDataOut.writeShort(LZOP_FILE_VERSION);\n        headerDataOut.writeShort(LZO_FORMAT_VERSION);\n        headerDataOut.writeShort(LZOP_FORMAT_VERSION);\n        headerDataOut.writeByte(LZO_1X_VARIANT);\n        headerDataOut.writeByte(LEVEL);\n\n        // flags (none)\n        headerDataOut.writeInt(0);\n        // file mode (non-executable regular file)\n        headerDataOut.writeInt(0x81a4);\n        // modified time (in seconds from epoch)\n        headerDataOut.writeInt((int) (System.currentTimeMillis() / 1000));\n        // time zone modifier for above, which is UTC so 0\n        headerDataOut.writeInt(0);\n        // file name length (none)\n        headerDataOut.writeByte(0);\n\n        byte[] header = headerOut.toByteArray();\n        out.write(header);\n\n        Adler32 headerChecksum = new Adler32();\n        headerChecksum.update(header);\n        writeBigEndianInt((int) headerChecksum.getValue());\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        inputBuffer[inputOffset++] = (byte) b;\n        if (inputOffset >= inputMaxSize) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        while (length > 0) {\n            int chunkSize = Math.min(length, inputMaxSize - inputOffset);\n            // favor writing directly from the user buffer to avoid the extra copy\n            if (inputOffset == 0 && length > inputMaxSize) {\n                writeNextChunk(buffer, offset, chunkSize);\n            }\n            else {\n                System.arraycopy(buffer, offset, inputBuffer, inputOffset, chunkSize);\n                inputOffset += chunkSize;\n\n                if (inputOffset >= inputMaxSize) {\n                    writeNextChunk(inputBuffer, 0, inputOffset);\n                }\n            }\n            length -= chunkSize;\n            offset += chunkSize;\n        }\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (inputOffset > 0) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            finish();\n            writeBigEndianInt(0);\n        }\n        finally {\n            out.close();\n        }\n    }\n\n    private void writeNextChunk(byte[] input, int inputOffset, int inputLength)\n            throws IOException\n    {\n        int compressedSize = compressor.compress(input, inputOffset, inputLength, outputBuffer, 0, outputBuffer.length);\n\n        writeBigEndianInt(inputLength);\n        if (compressedSize < inputLength) {\n            writeBigEndianInt(compressedSize);\n            out.write(outputBuffer, 0, compressedSize);\n        }\n        else {\n            writeBigEndianInt(inputLength);\n            out.write(input, inputOffset, inputLength);\n        }\n\n        this.inputOffset = 0;\n    }\n\n    private void writeBigEndianInt(int value)\n            throws IOException\n    {\n        out.write(value >>> 24);\n        out.write(value >>> 16);\n        out.write(value >>> 8);\n        out.write(value);\n    }\n\n    private static int compressionOverhead(int size)\n    {\n        return (size / 16) + 64 + 3;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/LzopHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class LzopHadoopStreams\n        implements HadoopStreams\n{\n    private static final int DEFAULT_OUTPUT_BUFFER_SIZE = 256 * 1024;\n    private final int bufferSize;\n\n    public LzopHadoopStreams()\n    {\n        this(DEFAULT_OUTPUT_BUFFER_SIZE);\n    }\n\n    public LzopHadoopStreams(int bufferSize)\n    {\n        this.bufferSize = bufferSize;\n    }\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".lzo\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"com.hadoop.compression.lzo.LzopCodec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n            throws IOException\n    {\n        return new LzopHadoopInputStream(in, bufferSize);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n            throws IOException\n    {\n        return new LzopHadoopOutputStream(out, bufferSize);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/lzo/UnsafeUtil.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.IncompatibleJvmException;\nimport sun.misc.Unsafe;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.reflect.Field;\nimport java.nio.ByteOrder;\n\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class UnsafeUtil\n{\n    public static final Unsafe UNSAFE;\n\n    private UnsafeUtil() {}\n\n    static {\n        ByteOrder order = ByteOrder.nativeOrder();\n        if (!order.equals(ByteOrder.LITTLE_ENDIAN)) {\n            throw new IncompatibleJvmException(format(\"LZO requires a little endian platform (found %s)\", order));\n        }\n\n        try {\n            Field theUnsafe = Unsafe.class.getDeclaredField(\"theUnsafe\");\n            theUnsafe.setAccessible(true);\n            UNSAFE = (Unsafe) theUnsafe.get(null);\n        }\n        catch (Exception e) {\n            throw new IncompatibleJvmException(\"LZO requires access to sun.misc.Unsafe\");\n        }\n    }\n\n    public static byte[] getBase(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return null;\n        }\n        if (segment.isReadOnly()) {\n            throw new IllegalArgumentException(\"MemorySegment is read-only\");\n        }\n        Object inputBase = segment.heapBase().orElse(null);\n        if (!(inputBase instanceof byte[] byteArray)) {\n            throw new IllegalArgumentException(\"MemorySegment is not backed by a byte array\");\n        }\n        return byteArray;\n    }\n\n    public static long getAddress(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return segment.address();\n        }\n        return segment.address() + ARRAY_BYTE_BASE_OFFSET;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/Crc32C.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.util.zip.Checksum;\n\n/**\n * A pure-java implementation of the CRC32 checksum that uses\n * the CRC32-C polynomial, the same polynomial used by iSCSI\n * and implemented on many Intel chipsets supporting SSE4.2.\n */\n// this code was taken from Apache Hadoop\nfinal class Crc32C\n        implements Checksum\n{\n    private static final int MASK_DELTA = 0xa282ead8;\n\n    public static int maskedCrc32c(byte[] data)\n    {\n        return maskedCrc32c(data, 0, data.length);\n    }\n\n    public static int maskedCrc32c(byte[] data, int offset, int length)\n    {\n        Crc32C crc32c = new Crc32C();\n        crc32c.update(data, offset, length);\n        return crc32c.getMaskedValue();\n    }\n\n    /**\n     * Return a masked representation of crc.\n     * <p/>\n     * Motivation: it is problematic to compute the CRC of a string that\n     * contains embedded CRCs.  Therefore we recommend that CRCs stored\n     * somewhere (e.g., in files) should be masked before being stored.\n     */\n    public static int mask(int crc)\n    {\n        // Rotate right by 15 bits and add a constant.\n        return ((crc >>> 15) | (crc << 17)) + MASK_DELTA;\n    }\n\n    /**\n     * Return the crc whose masked representation is masked_crc.\n     */\n    public static int unmask(int maskedCrc)\n    {\n        int rot = maskedCrc - MASK_DELTA;\n        return ((rot >>> 17) | (rot << 15));\n    }\n\n    /**\n     * the current CRC value, bit-flipped\n     */\n    private int crc;\n\n    /**\n     * Create a new PureJavaCrc32 object.\n     */\n    public Crc32C()\n    {\n        reset();\n    }\n\n    public int getMaskedValue()\n    {\n        return mask(getIntValue());\n    }\n\n    public int getIntValue()\n    {\n        return ~crc;\n    }\n\n    @Override\n    public long getValue()\n    {\n        long ret = crc;\n        return (~ret) & 0xffffffffL;\n    }\n\n    @Override\n    public void reset()\n    {\n        crc = 0xffffffff;\n    }\n\n    @Override\n    public void update(byte[] b, int off, int len)\n    {\n        int localCrc = crc;\n        while (len > 7) {\n            int c0 = b[off++] ^ localCrc;\n            localCrc >>>= 8;\n            int c1 = b[off++] ^ localCrc;\n            localCrc >>>= 8;\n            int c2 = b[off++] ^ localCrc;\n            localCrc >>>= 8;\n            int c3 = b[off++] ^ localCrc;\n\n            localCrc = (T8_7[c0 & 0xff] ^ T8_6[c1 & 0xff])\n                    ^ (T8_5[c2 & 0xff] ^ T8_4[c3 & 0xff]);\n\n            localCrc ^= (T8_3[b[off++] & 0xff] ^ T8_2[b[off++] & 0xff])\n                    ^ (T8_1[b[off++] & 0xff] ^ T8_0[b[off++] & 0xff]);\n\n            len -= 8;\n        }\n        while (len > 0) {\n            localCrc = (localCrc >>> 8) ^ T8_0[(localCrc ^ b[off++]) & 0xff];\n            len--;\n        }\n\n        // Publish crc out to object\n        crc = localCrc;\n    }\n\n    @Override\n    public void update(int b)\n    {\n        crc = (crc >>> 8) ^ T8_0[(crc ^ b) & 0xff];\n    }\n\n    // CRC polynomial tables generated by:\n    // java -cp build/test/classes/:build/classes/ \\\n    //   org.apache.hadoop.util.TestPureJavaCrc32\\$Table 82F63B78\n\n    static final int[] T8_0 = new int[] {\n            0x00000000, 0xF26B8303, 0xE13B70F7, 0x1350F3F4,\n            0xC79A971F, 0x35F1141C, 0x26A1E7E8, 0xD4CA64EB,\n            0x8AD958CF, 0x78B2DBCC, 0x6BE22838, 0x9989AB3B,\n            0x4D43CFD0, 0xBF284CD3, 0xAC78BF27, 0x5E133C24,\n            0x105EC76F, 0xE235446C, 0xF165B798, 0x030E349B,\n            0xD7C45070, 0x25AFD373, 0x36FF2087, 0xC494A384,\n            0x9A879FA0, 0x68EC1CA3, 0x7BBCEF57, 0x89D76C54,\n            0x5D1D08BF, 0xAF768BBC, 0xBC267848, 0x4E4DFB4B,\n            0x20BD8EDE, 0xD2D60DDD, 0xC186FE29, 0x33ED7D2A,\n            0xE72719C1, 0x154C9AC2, 0x061C6936, 0xF477EA35,\n            0xAA64D611, 0x580F5512, 0x4B5FA6E6, 0xB93425E5,\n            0x6DFE410E, 0x9F95C20D, 0x8CC531F9, 0x7EAEB2FA,\n            0x30E349B1, 0xC288CAB2, 0xD1D83946, 0x23B3BA45,\n            0xF779DEAE, 0x05125DAD, 0x1642AE59, 0xE4292D5A,\n            0xBA3A117E, 0x4851927D, 0x5B016189, 0xA96AE28A,\n            0x7DA08661, 0x8FCB0562, 0x9C9BF696, 0x6EF07595,\n            0x417B1DBC, 0xB3109EBF, 0xA0406D4B, 0x522BEE48,\n            0x86E18AA3, 0x748A09A0, 0x67DAFA54, 0x95B17957,\n            0xCBA24573, 0x39C9C670, 0x2A993584, 0xD8F2B687,\n            0x0C38D26C, 0xFE53516F, 0xED03A29B, 0x1F682198,\n            0x5125DAD3, 0xA34E59D0, 0xB01EAA24, 0x42752927,\n            0x96BF4DCC, 0x64D4CECF, 0x77843D3B, 0x85EFBE38,\n            0xDBFC821C, 0x2997011F, 0x3AC7F2EB, 0xC8AC71E8,\n            0x1C661503, 0xEE0D9600, 0xFD5D65F4, 0x0F36E6F7,\n            0x61C69362, 0x93AD1061, 0x80FDE395, 0x72966096,\n            0xA65C047D, 0x5437877E, 0x4767748A, 0xB50CF789,\n            0xEB1FCBAD, 0x197448AE, 0x0A24BB5A, 0xF84F3859,\n            0x2C855CB2, 0xDEEEDFB1, 0xCDBE2C45, 0x3FD5AF46,\n            0x7198540D, 0x83F3D70E, 0x90A324FA, 0x62C8A7F9,\n            0xB602C312, 0x44694011, 0x5739B3E5, 0xA55230E6,\n            0xFB410CC2, 0x092A8FC1, 0x1A7A7C35, 0xE811FF36,\n            0x3CDB9BDD, 0xCEB018DE, 0xDDE0EB2A, 0x2F8B6829,\n            0x82F63B78, 0x709DB87B, 0x63CD4B8F, 0x91A6C88C,\n            0x456CAC67, 0xB7072F64, 0xA457DC90, 0x563C5F93,\n            0x082F63B7, 0xFA44E0B4, 0xE9141340, 0x1B7F9043,\n            0xCFB5F4A8, 0x3DDE77AB, 0x2E8E845F, 0xDCE5075C,\n            0x92A8FC17, 0x60C37F14, 0x73938CE0, 0x81F80FE3,\n            0x55326B08, 0xA759E80B, 0xB4091BFF, 0x466298FC,\n            0x1871A4D8, 0xEA1A27DB, 0xF94AD42F, 0x0B21572C,\n            0xDFEB33C7, 0x2D80B0C4, 0x3ED04330, 0xCCBBC033,\n            0xA24BB5A6, 0x502036A5, 0x4370C551, 0xB11B4652,\n            0x65D122B9, 0x97BAA1BA, 0x84EA524E, 0x7681D14D,\n            0x2892ED69, 0xDAF96E6A, 0xC9A99D9E, 0x3BC21E9D,\n            0xEF087A76, 0x1D63F975, 0x0E330A81, 0xFC588982,\n            0xB21572C9, 0x407EF1CA, 0x532E023E, 0xA145813D,\n            0x758FE5D6, 0x87E466D5, 0x94B49521, 0x66DF1622,\n            0x38CC2A06, 0xCAA7A905, 0xD9F75AF1, 0x2B9CD9F2,\n            0xFF56BD19, 0x0D3D3E1A, 0x1E6DCDEE, 0xEC064EED,\n            0xC38D26C4, 0x31E6A5C7, 0x22B65633, 0xD0DDD530,\n            0x0417B1DB, 0xF67C32D8, 0xE52CC12C, 0x1747422F,\n            0x49547E0B, 0xBB3FFD08, 0xA86F0EFC, 0x5A048DFF,\n            0x8ECEE914, 0x7CA56A17, 0x6FF599E3, 0x9D9E1AE0,\n            0xD3D3E1AB, 0x21B862A8, 0x32E8915C, 0xC083125F,\n            0x144976B4, 0xE622F5B7, 0xF5720643, 0x07198540,\n            0x590AB964, 0xAB613A67, 0xB831C993, 0x4A5A4A90,\n            0x9E902E7B, 0x6CFBAD78, 0x7FAB5E8C, 0x8DC0DD8F,\n            0xE330A81A, 0x115B2B19, 0x020BD8ED, 0xF0605BEE,\n            0x24AA3F05, 0xD6C1BC06, 0xC5914FF2, 0x37FACCF1,\n            0x69E9F0D5, 0x9B8273D6, 0x88D28022, 0x7AB90321,\n            0xAE7367CA, 0x5C18E4C9, 0x4F48173D, 0xBD23943E,\n            0xF36E6F75, 0x0105EC76, 0x12551F82, 0xE03E9C81,\n            0x34F4F86A, 0xC69F7B69, 0xD5CF889D, 0x27A40B9E,\n            0x79B737BA, 0x8BDCB4B9, 0x988C474D, 0x6AE7C44E,\n            0xBE2DA0A5, 0x4C4623A6, 0x5F16D052, 0xAD7D5351\n    };\n    static final int[] T8_1 = new int[] {\n            0x00000000, 0x13A29877, 0x274530EE, 0x34E7A899,\n            0x4E8A61DC, 0x5D28F9AB, 0x69CF5132, 0x7A6DC945,\n            0x9D14C3B8, 0x8EB65BCF, 0xBA51F356, 0xA9F36B21,\n            0xD39EA264, 0xC03C3A13, 0xF4DB928A, 0xE7790AFD,\n            0x3FC5F181, 0x2C6769F6, 0x1880C16F, 0x0B225918,\n            0x714F905D, 0x62ED082A, 0x560AA0B3, 0x45A838C4,\n            0xA2D13239, 0xB173AA4E, 0x859402D7, 0x96369AA0,\n            0xEC5B53E5, 0xFFF9CB92, 0xCB1E630B, 0xD8BCFB7C,\n            0x7F8BE302, 0x6C297B75, 0x58CED3EC, 0x4B6C4B9B,\n            0x310182DE, 0x22A31AA9, 0x1644B230, 0x05E62A47,\n            0xE29F20BA, 0xF13DB8CD, 0xC5DA1054, 0xD6788823,\n            0xAC154166, 0xBFB7D911, 0x8B507188, 0x98F2E9FF,\n            0x404E1283, 0x53EC8AF4, 0x670B226D, 0x74A9BA1A,\n            0x0EC4735F, 0x1D66EB28, 0x298143B1, 0x3A23DBC6,\n            0xDD5AD13B, 0xCEF8494C, 0xFA1FE1D5, 0xE9BD79A2,\n            0x93D0B0E7, 0x80722890, 0xB4958009, 0xA737187E,\n            0xFF17C604, 0xECB55E73, 0xD852F6EA, 0xCBF06E9D,\n            0xB19DA7D8, 0xA23F3FAF, 0x96D89736, 0x857A0F41,\n            0x620305BC, 0x71A19DCB, 0x45463552, 0x56E4AD25,\n            0x2C896460, 0x3F2BFC17, 0x0BCC548E, 0x186ECCF9,\n            0xC0D23785, 0xD370AFF2, 0xE797076B, 0xF4359F1C,\n            0x8E585659, 0x9DFACE2E, 0xA91D66B7, 0xBABFFEC0,\n            0x5DC6F43D, 0x4E646C4A, 0x7A83C4D3, 0x69215CA4,\n            0x134C95E1, 0x00EE0D96, 0x3409A50F, 0x27AB3D78,\n            0x809C2506, 0x933EBD71, 0xA7D915E8, 0xB47B8D9F,\n            0xCE1644DA, 0xDDB4DCAD, 0xE9537434, 0xFAF1EC43,\n            0x1D88E6BE, 0x0E2A7EC9, 0x3ACDD650, 0x296F4E27,\n            0x53028762, 0x40A01F15, 0x7447B78C, 0x67E52FFB,\n            0xBF59D487, 0xACFB4CF0, 0x981CE469, 0x8BBE7C1E,\n            0xF1D3B55B, 0xE2712D2C, 0xD69685B5, 0xC5341DC2,\n            0x224D173F, 0x31EF8F48, 0x050827D1, 0x16AABFA6,\n            0x6CC776E3, 0x7F65EE94, 0x4B82460D, 0x5820DE7A,\n            0xFBC3FAF9, 0xE861628E, 0xDC86CA17, 0xCF245260,\n            0xB5499B25, 0xA6EB0352, 0x920CABCB, 0x81AE33BC,\n            0x66D73941, 0x7575A136, 0x419209AF, 0x523091D8,\n            0x285D589D, 0x3BFFC0EA, 0x0F186873, 0x1CBAF004,\n            0xC4060B78, 0xD7A4930F, 0xE3433B96, 0xF0E1A3E1,\n            0x8A8C6AA4, 0x992EF2D3, 0xADC95A4A, 0xBE6BC23D,\n            0x5912C8C0, 0x4AB050B7, 0x7E57F82E, 0x6DF56059,\n            0x1798A91C, 0x043A316B, 0x30DD99F2, 0x237F0185,\n            0x844819FB, 0x97EA818C, 0xA30D2915, 0xB0AFB162,\n            0xCAC27827, 0xD960E050, 0xED8748C9, 0xFE25D0BE,\n            0x195CDA43, 0x0AFE4234, 0x3E19EAAD, 0x2DBB72DA,\n            0x57D6BB9F, 0x447423E8, 0x70938B71, 0x63311306,\n            0xBB8DE87A, 0xA82F700D, 0x9CC8D894, 0x8F6A40E3,\n            0xF50789A6, 0xE6A511D1, 0xD242B948, 0xC1E0213F,\n            0x26992BC2, 0x353BB3B5, 0x01DC1B2C, 0x127E835B,\n            0x68134A1E, 0x7BB1D269, 0x4F567AF0, 0x5CF4E287,\n            0x04D43CFD, 0x1776A48A, 0x23910C13, 0x30339464,\n            0x4A5E5D21, 0x59FCC556, 0x6D1B6DCF, 0x7EB9F5B8,\n            0x99C0FF45, 0x8A626732, 0xBE85CFAB, 0xAD2757DC,\n            0xD74A9E99, 0xC4E806EE, 0xF00FAE77, 0xE3AD3600,\n            0x3B11CD7C, 0x28B3550B, 0x1C54FD92, 0x0FF665E5,\n            0x759BACA0, 0x663934D7, 0x52DE9C4E, 0x417C0439,\n            0xA6050EC4, 0xB5A796B3, 0x81403E2A, 0x92E2A65D,\n            0xE88F6F18, 0xFB2DF76F, 0xCFCA5FF6, 0xDC68C781,\n            0x7B5FDFFF, 0x68FD4788, 0x5C1AEF11, 0x4FB87766,\n            0x35D5BE23, 0x26772654, 0x12908ECD, 0x013216BA,\n            0xE64B1C47, 0xF5E98430, 0xC10E2CA9, 0xD2ACB4DE,\n            0xA8C17D9B, 0xBB63E5EC, 0x8F844D75, 0x9C26D502,\n            0x449A2E7E, 0x5738B609, 0x63DF1E90, 0x707D86E7,\n            0x0A104FA2, 0x19B2D7D5, 0x2D557F4C, 0x3EF7E73B,\n            0xD98EEDC6, 0xCA2C75B1, 0xFECBDD28, 0xED69455F,\n            0x97048C1A, 0x84A6146D, 0xB041BCF4, 0xA3E32483\n    };\n    static final int[] T8_2 = new int[] {\n            0x00000000, 0xA541927E, 0x4F6F520D, 0xEA2EC073,\n            0x9EDEA41A, 0x3B9F3664, 0xD1B1F617, 0x74F06469,\n            0x38513EC5, 0x9D10ACBB, 0x773E6CC8, 0xD27FFEB6,\n            0xA68F9ADF, 0x03CE08A1, 0xE9E0C8D2, 0x4CA15AAC,\n            0x70A27D8A, 0xD5E3EFF4, 0x3FCD2F87, 0x9A8CBDF9,\n            0xEE7CD990, 0x4B3D4BEE, 0xA1138B9D, 0x045219E3,\n            0x48F3434F, 0xEDB2D131, 0x079C1142, 0xA2DD833C,\n            0xD62DE755, 0x736C752B, 0x9942B558, 0x3C032726,\n            0xE144FB14, 0x4405696A, 0xAE2BA919, 0x0B6A3B67,\n            0x7F9A5F0E, 0xDADBCD70, 0x30F50D03, 0x95B49F7D,\n            0xD915C5D1, 0x7C5457AF, 0x967A97DC, 0x333B05A2,\n            0x47CB61CB, 0xE28AF3B5, 0x08A433C6, 0xADE5A1B8,\n            0x91E6869E, 0x34A714E0, 0xDE89D493, 0x7BC846ED,\n            0x0F382284, 0xAA79B0FA, 0x40577089, 0xE516E2F7,\n            0xA9B7B85B, 0x0CF62A25, 0xE6D8EA56, 0x43997828,\n            0x37691C41, 0x92288E3F, 0x78064E4C, 0xDD47DC32,\n            0xC76580D9, 0x622412A7, 0x880AD2D4, 0x2D4B40AA,\n            0x59BB24C3, 0xFCFAB6BD, 0x16D476CE, 0xB395E4B0,\n            0xFF34BE1C, 0x5A752C62, 0xB05BEC11, 0x151A7E6F,\n            0x61EA1A06, 0xC4AB8878, 0x2E85480B, 0x8BC4DA75,\n            0xB7C7FD53, 0x12866F2D, 0xF8A8AF5E, 0x5DE93D20,\n            0x29195949, 0x8C58CB37, 0x66760B44, 0xC337993A,\n            0x8F96C396, 0x2AD751E8, 0xC0F9919B, 0x65B803E5,\n            0x1148678C, 0xB409F5F2, 0x5E273581, 0xFB66A7FF,\n            0x26217BCD, 0x8360E9B3, 0x694E29C0, 0xCC0FBBBE,\n            0xB8FFDFD7, 0x1DBE4DA9, 0xF7908DDA, 0x52D11FA4,\n            0x1E704508, 0xBB31D776, 0x511F1705, 0xF45E857B,\n            0x80AEE112, 0x25EF736C, 0xCFC1B31F, 0x6A802161,\n            0x56830647, 0xF3C29439, 0x19EC544A, 0xBCADC634,\n            0xC85DA25D, 0x6D1C3023, 0x8732F050, 0x2273622E,\n            0x6ED23882, 0xCB93AAFC, 0x21BD6A8F, 0x84FCF8F1,\n            0xF00C9C98, 0x554D0EE6, 0xBF63CE95, 0x1A225CEB,\n            0x8B277743, 0x2E66E53D, 0xC448254E, 0x6109B730,\n            0x15F9D359, 0xB0B84127, 0x5A968154, 0xFFD7132A,\n            0xB3764986, 0x1637DBF8, 0xFC191B8B, 0x595889F5,\n            0x2DA8ED9C, 0x88E97FE2, 0x62C7BF91, 0xC7862DEF,\n            0xFB850AC9, 0x5EC498B7, 0xB4EA58C4, 0x11ABCABA,\n            0x655BAED3, 0xC01A3CAD, 0x2A34FCDE, 0x8F756EA0,\n            0xC3D4340C, 0x6695A672, 0x8CBB6601, 0x29FAF47F,\n            0x5D0A9016, 0xF84B0268, 0x1265C21B, 0xB7245065,\n            0x6A638C57, 0xCF221E29, 0x250CDE5A, 0x804D4C24,\n            0xF4BD284D, 0x51FCBA33, 0xBBD27A40, 0x1E93E83E,\n            0x5232B292, 0xF77320EC, 0x1D5DE09F, 0xB81C72E1,\n            0xCCEC1688, 0x69AD84F6, 0x83834485, 0x26C2D6FB,\n            0x1AC1F1DD, 0xBF8063A3, 0x55AEA3D0, 0xF0EF31AE,\n            0x841F55C7, 0x215EC7B9, 0xCB7007CA, 0x6E3195B4,\n            0x2290CF18, 0x87D15D66, 0x6DFF9D15, 0xC8BE0F6B,\n            0xBC4E6B02, 0x190FF97C, 0xF321390F, 0x5660AB71,\n            0x4C42F79A, 0xE90365E4, 0x032DA597, 0xA66C37E9,\n            0xD29C5380, 0x77DDC1FE, 0x9DF3018D, 0x38B293F3,\n            0x7413C95F, 0xD1525B21, 0x3B7C9B52, 0x9E3D092C,\n            0xEACD6D45, 0x4F8CFF3B, 0xA5A23F48, 0x00E3AD36,\n            0x3CE08A10, 0x99A1186E, 0x738FD81D, 0xD6CE4A63,\n            0xA23E2E0A, 0x077FBC74, 0xED517C07, 0x4810EE79,\n            0x04B1B4D5, 0xA1F026AB, 0x4BDEE6D8, 0xEE9F74A6,\n            0x9A6F10CF, 0x3F2E82B1, 0xD50042C2, 0x7041D0BC,\n            0xAD060C8E, 0x08479EF0, 0xE2695E83, 0x4728CCFD,\n            0x33D8A894, 0x96993AEA, 0x7CB7FA99, 0xD9F668E7,\n            0x9557324B, 0x3016A035, 0xDA386046, 0x7F79F238,\n            0x0B899651, 0xAEC8042F, 0x44E6C45C, 0xE1A75622,\n            0xDDA47104, 0x78E5E37A, 0x92CB2309, 0x378AB177,\n            0x437AD51E, 0xE63B4760, 0x0C158713, 0xA954156D,\n            0xE5F54FC1, 0x40B4DDBF, 0xAA9A1DCC, 0x0FDB8FB2,\n            0x7B2BEBDB, 0xDE6A79A5, 0x3444B9D6, 0x91052BA8\n    };\n    static final int[] T8_3 = new int[] {\n            0x00000000, 0xDD45AAB8, 0xBF672381, 0x62228939,\n            0x7B2231F3, 0xA6679B4B, 0xC4451272, 0x1900B8CA,\n            0xF64463E6, 0x2B01C95E, 0x49234067, 0x9466EADF,\n            0x8D665215, 0x5023F8AD, 0x32017194, 0xEF44DB2C,\n            0xE964B13D, 0x34211B85, 0x560392BC, 0x8B463804,\n            0x924680CE, 0x4F032A76, 0x2D21A34F, 0xF06409F7,\n            0x1F20D2DB, 0xC2657863, 0xA047F15A, 0x7D025BE2,\n            0x6402E328, 0xB9474990, 0xDB65C0A9, 0x06206A11,\n            0xD725148B, 0x0A60BE33, 0x6842370A, 0xB5079DB2,\n            0xAC072578, 0x71428FC0, 0x136006F9, 0xCE25AC41,\n            0x2161776D, 0xFC24DDD5, 0x9E0654EC, 0x4343FE54,\n            0x5A43469E, 0x8706EC26, 0xE524651F, 0x3861CFA7,\n            0x3E41A5B6, 0xE3040F0E, 0x81268637, 0x5C632C8F,\n            0x45639445, 0x98263EFD, 0xFA04B7C4, 0x27411D7C,\n            0xC805C650, 0x15406CE8, 0x7762E5D1, 0xAA274F69,\n            0xB327F7A3, 0x6E625D1B, 0x0C40D422, 0xD1057E9A,\n            0xABA65FE7, 0x76E3F55F, 0x14C17C66, 0xC984D6DE,\n            0xD0846E14, 0x0DC1C4AC, 0x6FE34D95, 0xB2A6E72D,\n            0x5DE23C01, 0x80A796B9, 0xE2851F80, 0x3FC0B538,\n            0x26C00DF2, 0xFB85A74A, 0x99A72E73, 0x44E284CB,\n            0x42C2EEDA, 0x9F874462, 0xFDA5CD5B, 0x20E067E3,\n            0x39E0DF29, 0xE4A57591, 0x8687FCA8, 0x5BC25610,\n            0xB4868D3C, 0x69C32784, 0x0BE1AEBD, 0xD6A40405,\n            0xCFA4BCCF, 0x12E11677, 0x70C39F4E, 0xAD8635F6,\n            0x7C834B6C, 0xA1C6E1D4, 0xC3E468ED, 0x1EA1C255,\n            0x07A17A9F, 0xDAE4D027, 0xB8C6591E, 0x6583F3A6,\n            0x8AC7288A, 0x57828232, 0x35A00B0B, 0xE8E5A1B3,\n            0xF1E51979, 0x2CA0B3C1, 0x4E823AF8, 0x93C79040,\n            0x95E7FA51, 0x48A250E9, 0x2A80D9D0, 0xF7C57368,\n            0xEEC5CBA2, 0x3380611A, 0x51A2E823, 0x8CE7429B,\n            0x63A399B7, 0xBEE6330F, 0xDCC4BA36, 0x0181108E,\n            0x1881A844, 0xC5C402FC, 0xA7E68BC5, 0x7AA3217D,\n            0x52A0C93F, 0x8FE56387, 0xEDC7EABE, 0x30824006,\n            0x2982F8CC, 0xF4C75274, 0x96E5DB4D, 0x4BA071F5,\n            0xA4E4AAD9, 0x79A10061, 0x1B838958, 0xC6C623E0,\n            0xDFC69B2A, 0x02833192, 0x60A1B8AB, 0xBDE41213,\n            0xBBC47802, 0x6681D2BA, 0x04A35B83, 0xD9E6F13B,\n            0xC0E649F1, 0x1DA3E349, 0x7F816A70, 0xA2C4C0C8,\n            0x4D801BE4, 0x90C5B15C, 0xF2E73865, 0x2FA292DD,\n            0x36A22A17, 0xEBE780AF, 0x89C50996, 0x5480A32E,\n            0x8585DDB4, 0x58C0770C, 0x3AE2FE35, 0xE7A7548D,\n            0xFEA7EC47, 0x23E246FF, 0x41C0CFC6, 0x9C85657E,\n            0x73C1BE52, 0xAE8414EA, 0xCCA69DD3, 0x11E3376B,\n            0x08E38FA1, 0xD5A62519, 0xB784AC20, 0x6AC10698,\n            0x6CE16C89, 0xB1A4C631, 0xD3864F08, 0x0EC3E5B0,\n            0x17C35D7A, 0xCA86F7C2, 0xA8A47EFB, 0x75E1D443,\n            0x9AA50F6F, 0x47E0A5D7, 0x25C22CEE, 0xF8878656,\n            0xE1873E9C, 0x3CC29424, 0x5EE01D1D, 0x83A5B7A5,\n            0xF90696D8, 0x24433C60, 0x4661B559, 0x9B241FE1,\n            0x8224A72B, 0x5F610D93, 0x3D4384AA, 0xE0062E12,\n            0x0F42F53E, 0xD2075F86, 0xB025D6BF, 0x6D607C07,\n            0x7460C4CD, 0xA9256E75, 0xCB07E74C, 0x16424DF4,\n            0x106227E5, 0xCD278D5D, 0xAF050464, 0x7240AEDC,\n            0x6B401616, 0xB605BCAE, 0xD4273597, 0x09629F2F,\n            0xE6264403, 0x3B63EEBB, 0x59416782, 0x8404CD3A,\n            0x9D0475F0, 0x4041DF48, 0x22635671, 0xFF26FCC9,\n            0x2E238253, 0xF36628EB, 0x9144A1D2, 0x4C010B6A,\n            0x5501B3A0, 0x88441918, 0xEA669021, 0x37233A99,\n            0xD867E1B5, 0x05224B0D, 0x6700C234, 0xBA45688C,\n            0xA345D046, 0x7E007AFE, 0x1C22F3C7, 0xC167597F,\n            0xC747336E, 0x1A0299D6, 0x782010EF, 0xA565BA57,\n            0xBC65029D, 0x6120A825, 0x0302211C, 0xDE478BA4,\n            0x31035088, 0xEC46FA30, 0x8E647309, 0x5321D9B1,\n            0x4A21617B, 0x9764CBC3, 0xF54642FA, 0x2803E842\n    };\n    static final int[] T8_4 = new int[] {\n            0x00000000, 0x38116FAC, 0x7022DF58, 0x4833B0F4,\n            0xE045BEB0, 0xD854D11C, 0x906761E8, 0xA8760E44,\n            0xC5670B91, 0xFD76643D, 0xB545D4C9, 0x8D54BB65,\n            0x2522B521, 0x1D33DA8D, 0x55006A79, 0x6D1105D5,\n            0x8F2261D3, 0xB7330E7F, 0xFF00BE8B, 0xC711D127,\n            0x6F67DF63, 0x5776B0CF, 0x1F45003B, 0x27546F97,\n            0x4A456A42, 0x725405EE, 0x3A67B51A, 0x0276DAB6,\n            0xAA00D4F2, 0x9211BB5E, 0xDA220BAA, 0xE2336406,\n            0x1BA8B557, 0x23B9DAFB, 0x6B8A6A0F, 0x539B05A3,\n            0xFBED0BE7, 0xC3FC644B, 0x8BCFD4BF, 0xB3DEBB13,\n            0xDECFBEC6, 0xE6DED16A, 0xAEED619E, 0x96FC0E32,\n            0x3E8A0076, 0x069B6FDA, 0x4EA8DF2E, 0x76B9B082,\n            0x948AD484, 0xAC9BBB28, 0xE4A80BDC, 0xDCB96470,\n            0x74CF6A34, 0x4CDE0598, 0x04EDB56C, 0x3CFCDAC0,\n            0x51EDDF15, 0x69FCB0B9, 0x21CF004D, 0x19DE6FE1,\n            0xB1A861A5, 0x89B90E09, 0xC18ABEFD, 0xF99BD151,\n            0x37516AAE, 0x0F400502, 0x4773B5F6, 0x7F62DA5A,\n            0xD714D41E, 0xEF05BBB2, 0xA7360B46, 0x9F2764EA,\n            0xF236613F, 0xCA270E93, 0x8214BE67, 0xBA05D1CB,\n            0x1273DF8F, 0x2A62B023, 0x625100D7, 0x5A406F7B,\n            0xB8730B7D, 0x806264D1, 0xC851D425, 0xF040BB89,\n            0x5836B5CD, 0x6027DA61, 0x28146A95, 0x10050539,\n            0x7D1400EC, 0x45056F40, 0x0D36DFB4, 0x3527B018,\n            0x9D51BE5C, 0xA540D1F0, 0xED736104, 0xD5620EA8,\n            0x2CF9DFF9, 0x14E8B055, 0x5CDB00A1, 0x64CA6F0D,\n            0xCCBC6149, 0xF4AD0EE5, 0xBC9EBE11, 0x848FD1BD,\n            0xE99ED468, 0xD18FBBC4, 0x99BC0B30, 0xA1AD649C,\n            0x09DB6AD8, 0x31CA0574, 0x79F9B580, 0x41E8DA2C,\n            0xA3DBBE2A, 0x9BCAD186, 0xD3F96172, 0xEBE80EDE,\n            0x439E009A, 0x7B8F6F36, 0x33BCDFC2, 0x0BADB06E,\n            0x66BCB5BB, 0x5EADDA17, 0x169E6AE3, 0x2E8F054F,\n            0x86F90B0B, 0xBEE864A7, 0xF6DBD453, 0xCECABBFF,\n            0x6EA2D55C, 0x56B3BAF0, 0x1E800A04, 0x269165A8,\n            0x8EE76BEC, 0xB6F60440, 0xFEC5B4B4, 0xC6D4DB18,\n            0xABC5DECD, 0x93D4B161, 0xDBE70195, 0xE3F66E39,\n            0x4B80607D, 0x73910FD1, 0x3BA2BF25, 0x03B3D089,\n            0xE180B48F, 0xD991DB23, 0x91A26BD7, 0xA9B3047B,\n            0x01C50A3F, 0x39D46593, 0x71E7D567, 0x49F6BACB,\n            0x24E7BF1E, 0x1CF6D0B2, 0x54C56046, 0x6CD40FEA,\n            0xC4A201AE, 0xFCB36E02, 0xB480DEF6, 0x8C91B15A,\n            0x750A600B, 0x4D1B0FA7, 0x0528BF53, 0x3D39D0FF,\n            0x954FDEBB, 0xAD5EB117, 0xE56D01E3, 0xDD7C6E4F,\n            0xB06D6B9A, 0x887C0436, 0xC04FB4C2, 0xF85EDB6E,\n            0x5028D52A, 0x6839BA86, 0x200A0A72, 0x181B65DE,\n            0xFA2801D8, 0xC2396E74, 0x8A0ADE80, 0xB21BB12C,\n            0x1A6DBF68, 0x227CD0C4, 0x6A4F6030, 0x525E0F9C,\n            0x3F4F0A49, 0x075E65E5, 0x4F6DD511, 0x777CBABD,\n            0xDF0AB4F9, 0xE71BDB55, 0xAF286BA1, 0x9739040D,\n            0x59F3BFF2, 0x61E2D05E, 0x29D160AA, 0x11C00F06,\n            0xB9B60142, 0x81A76EEE, 0xC994DE1A, 0xF185B1B6,\n            0x9C94B463, 0xA485DBCF, 0xECB66B3B, 0xD4A70497,\n            0x7CD10AD3, 0x44C0657F, 0x0CF3D58B, 0x34E2BA27,\n            0xD6D1DE21, 0xEEC0B18D, 0xA6F30179, 0x9EE26ED5,\n            0x36946091, 0x0E850F3D, 0x46B6BFC9, 0x7EA7D065,\n            0x13B6D5B0, 0x2BA7BA1C, 0x63940AE8, 0x5B856544,\n            0xF3F36B00, 0xCBE204AC, 0x83D1B458, 0xBBC0DBF4,\n            0x425B0AA5, 0x7A4A6509, 0x3279D5FD, 0x0A68BA51,\n            0xA21EB415, 0x9A0FDBB9, 0xD23C6B4D, 0xEA2D04E1,\n            0x873C0134, 0xBF2D6E98, 0xF71EDE6C, 0xCF0FB1C0,\n            0x6779BF84, 0x5F68D028, 0x175B60DC, 0x2F4A0F70,\n            0xCD796B76, 0xF56804DA, 0xBD5BB42E, 0x854ADB82,\n            0x2D3CD5C6, 0x152DBA6A, 0x5D1E0A9E, 0x650F6532,\n            0x081E60E7, 0x300F0F4B, 0x783CBFBF, 0x402DD013,\n            0xE85BDE57, 0xD04AB1FB, 0x9879010F, 0xA0686EA3\n    };\n    static final int[] T8_5 = new int[] {\n            0x00000000, 0xEF306B19, 0xDB8CA0C3, 0x34BCCBDA,\n            0xB2F53777, 0x5DC55C6E, 0x697997B4, 0x8649FCAD,\n            0x6006181F, 0x8F367306, 0xBB8AB8DC, 0x54BAD3C5,\n            0xD2F32F68, 0x3DC34471, 0x097F8FAB, 0xE64FE4B2,\n            0xC00C303E, 0x2F3C5B27, 0x1B8090FD, 0xF4B0FBE4,\n            0x72F90749, 0x9DC96C50, 0xA975A78A, 0x4645CC93,\n            0xA00A2821, 0x4F3A4338, 0x7B8688E2, 0x94B6E3FB,\n            0x12FF1F56, 0xFDCF744F, 0xC973BF95, 0x2643D48C,\n            0x85F4168D, 0x6AC47D94, 0x5E78B64E, 0xB148DD57,\n            0x370121FA, 0xD8314AE3, 0xEC8D8139, 0x03BDEA20,\n            0xE5F20E92, 0x0AC2658B, 0x3E7EAE51, 0xD14EC548,\n            0x570739E5, 0xB83752FC, 0x8C8B9926, 0x63BBF23F,\n            0x45F826B3, 0xAAC84DAA, 0x9E748670, 0x7144ED69,\n            0xF70D11C4, 0x183D7ADD, 0x2C81B107, 0xC3B1DA1E,\n            0x25FE3EAC, 0xCACE55B5, 0xFE729E6F, 0x1142F576,\n            0x970B09DB, 0x783B62C2, 0x4C87A918, 0xA3B7C201,\n            0x0E045BEB, 0xE13430F2, 0xD588FB28, 0x3AB89031,\n            0xBCF16C9C, 0x53C10785, 0x677DCC5F, 0x884DA746,\n            0x6E0243F4, 0x813228ED, 0xB58EE337, 0x5ABE882E,\n            0xDCF77483, 0x33C71F9A, 0x077BD440, 0xE84BBF59,\n            0xCE086BD5, 0x213800CC, 0x1584CB16, 0xFAB4A00F,\n            0x7CFD5CA2, 0x93CD37BB, 0xA771FC61, 0x48419778,\n            0xAE0E73CA, 0x413E18D3, 0x7582D309, 0x9AB2B810,\n            0x1CFB44BD, 0xF3CB2FA4, 0xC777E47E, 0x28478F67,\n            0x8BF04D66, 0x64C0267F, 0x507CEDA5, 0xBF4C86BC,\n            0x39057A11, 0xD6351108, 0xE289DAD2, 0x0DB9B1CB,\n            0xEBF65579, 0x04C63E60, 0x307AF5BA, 0xDF4A9EA3,\n            0x5903620E, 0xB6330917, 0x828FC2CD, 0x6DBFA9D4,\n            0x4BFC7D58, 0xA4CC1641, 0x9070DD9B, 0x7F40B682,\n            0xF9094A2F, 0x16392136, 0x2285EAEC, 0xCDB581F5,\n            0x2BFA6547, 0xC4CA0E5E, 0xF076C584, 0x1F46AE9D,\n            0x990F5230, 0x763F3929, 0x4283F2F3, 0xADB399EA,\n            0x1C08B7D6, 0xF338DCCF, 0xC7841715, 0x28B47C0C,\n            0xAEFD80A1, 0x41CDEBB8, 0x75712062, 0x9A414B7B,\n            0x7C0EAFC9, 0x933EC4D0, 0xA7820F0A, 0x48B26413,\n            0xCEFB98BE, 0x21CBF3A7, 0x1577387D, 0xFA475364,\n            0xDC0487E8, 0x3334ECF1, 0x0788272B, 0xE8B84C32,\n            0x6EF1B09F, 0x81C1DB86, 0xB57D105C, 0x5A4D7B45,\n            0xBC029FF7, 0x5332F4EE, 0x678E3F34, 0x88BE542D,\n            0x0EF7A880, 0xE1C7C399, 0xD57B0843, 0x3A4B635A,\n            0x99FCA15B, 0x76CCCA42, 0x42700198, 0xAD406A81,\n            0x2B09962C, 0xC439FD35, 0xF08536EF, 0x1FB55DF6,\n            0xF9FAB944, 0x16CAD25D, 0x22761987, 0xCD46729E,\n            0x4B0F8E33, 0xA43FE52A, 0x90832EF0, 0x7FB345E9,\n            0x59F09165, 0xB6C0FA7C, 0x827C31A6, 0x6D4C5ABF,\n            0xEB05A612, 0x0435CD0B, 0x308906D1, 0xDFB96DC8,\n            0x39F6897A, 0xD6C6E263, 0xE27A29B9, 0x0D4A42A0,\n            0x8B03BE0D, 0x6433D514, 0x508F1ECE, 0xBFBF75D7,\n            0x120CEC3D, 0xFD3C8724, 0xC9804CFE, 0x26B027E7,\n            0xA0F9DB4A, 0x4FC9B053, 0x7B757B89, 0x94451090,\n            0x720AF422, 0x9D3A9F3B, 0xA98654E1, 0x46B63FF8,\n            0xC0FFC355, 0x2FCFA84C, 0x1B736396, 0xF443088F,\n            0xD200DC03, 0x3D30B71A, 0x098C7CC0, 0xE6BC17D9,\n            0x60F5EB74, 0x8FC5806D, 0xBB794BB7, 0x544920AE,\n            0xB206C41C, 0x5D36AF05, 0x698A64DF, 0x86BA0FC6,\n            0x00F3F36B, 0xEFC39872, 0xDB7F53A8, 0x344F38B1,\n            0x97F8FAB0, 0x78C891A9, 0x4C745A73, 0xA344316A,\n            0x250DCDC7, 0xCA3DA6DE, 0xFE816D04, 0x11B1061D,\n            0xF7FEE2AF, 0x18CE89B6, 0x2C72426C, 0xC3422975,\n            0x450BD5D8, 0xAA3BBEC1, 0x9E87751B, 0x71B71E02,\n            0x57F4CA8E, 0xB8C4A197, 0x8C786A4D, 0x63480154,\n            0xE501FDF9, 0x0A3196E0, 0x3E8D5D3A, 0xD1BD3623,\n            0x37F2D291, 0xD8C2B988, 0xEC7E7252, 0x034E194B,\n            0x8507E5E6, 0x6A378EFF, 0x5E8B4525, 0xB1BB2E3C\n    };\n    static final int[] T8_6 = new int[] {\n            0x00000000, 0x68032CC8, 0xD0065990, 0xB8057558,\n            0xA5E0C5D1, 0xCDE3E919, 0x75E69C41, 0x1DE5B089,\n            0x4E2DFD53, 0x262ED19B, 0x9E2BA4C3, 0xF628880B,\n            0xEBCD3882, 0x83CE144A, 0x3BCB6112, 0x53C84DDA,\n            0x9C5BFAA6, 0xF458D66E, 0x4C5DA336, 0x245E8FFE,\n            0x39BB3F77, 0x51B813BF, 0xE9BD66E7, 0x81BE4A2F,\n            0xD27607F5, 0xBA752B3D, 0x02705E65, 0x6A7372AD,\n            0x7796C224, 0x1F95EEEC, 0xA7909BB4, 0xCF93B77C,\n            0x3D5B83BD, 0x5558AF75, 0xED5DDA2D, 0x855EF6E5,\n            0x98BB466C, 0xF0B86AA4, 0x48BD1FFC, 0x20BE3334,\n            0x73767EEE, 0x1B755226, 0xA370277E, 0xCB730BB6,\n            0xD696BB3F, 0xBE9597F7, 0x0690E2AF, 0x6E93CE67,\n            0xA100791B, 0xC90355D3, 0x7106208B, 0x19050C43,\n            0x04E0BCCA, 0x6CE39002, 0xD4E6E55A, 0xBCE5C992,\n            0xEF2D8448, 0x872EA880, 0x3F2BDDD8, 0x5728F110,\n            0x4ACD4199, 0x22CE6D51, 0x9ACB1809, 0xF2C834C1,\n            0x7AB7077A, 0x12B42BB2, 0xAAB15EEA, 0xC2B27222,\n            0xDF57C2AB, 0xB754EE63, 0x0F519B3B, 0x6752B7F3,\n            0x349AFA29, 0x5C99D6E1, 0xE49CA3B9, 0x8C9F8F71,\n            0x917A3FF8, 0xF9791330, 0x417C6668, 0x297F4AA0,\n            0xE6ECFDDC, 0x8EEFD114, 0x36EAA44C, 0x5EE98884,\n            0x430C380D, 0x2B0F14C5, 0x930A619D, 0xFB094D55,\n            0xA8C1008F, 0xC0C22C47, 0x78C7591F, 0x10C475D7,\n            0x0D21C55E, 0x6522E996, 0xDD279CCE, 0xB524B006,\n            0x47EC84C7, 0x2FEFA80F, 0x97EADD57, 0xFFE9F19F,\n            0xE20C4116, 0x8A0F6DDE, 0x320A1886, 0x5A09344E,\n            0x09C17994, 0x61C2555C, 0xD9C72004, 0xB1C40CCC,\n            0xAC21BC45, 0xC422908D, 0x7C27E5D5, 0x1424C91D,\n            0xDBB77E61, 0xB3B452A9, 0x0BB127F1, 0x63B20B39,\n            0x7E57BBB0, 0x16549778, 0xAE51E220, 0xC652CEE8,\n            0x959A8332, 0xFD99AFFA, 0x459CDAA2, 0x2D9FF66A,\n            0x307A46E3, 0x58796A2B, 0xE07C1F73, 0x887F33BB,\n            0xF56E0EF4, 0x9D6D223C, 0x25685764, 0x4D6B7BAC,\n            0x508ECB25, 0x388DE7ED, 0x808892B5, 0xE88BBE7D,\n            0xBB43F3A7, 0xD340DF6F, 0x6B45AA37, 0x034686FF,\n            0x1EA33676, 0x76A01ABE, 0xCEA56FE6, 0xA6A6432E,\n            0x6935F452, 0x0136D89A, 0xB933ADC2, 0xD130810A,\n            0xCCD53183, 0xA4D61D4B, 0x1CD36813, 0x74D044DB,\n            0x27180901, 0x4F1B25C9, 0xF71E5091, 0x9F1D7C59,\n            0x82F8CCD0, 0xEAFBE018, 0x52FE9540, 0x3AFDB988,\n            0xC8358D49, 0xA036A181, 0x1833D4D9, 0x7030F811,\n            0x6DD54898, 0x05D66450, 0xBDD31108, 0xD5D03DC0,\n            0x8618701A, 0xEE1B5CD2, 0x561E298A, 0x3E1D0542,\n            0x23F8B5CB, 0x4BFB9903, 0xF3FEEC5B, 0x9BFDC093,\n            0x546E77EF, 0x3C6D5B27, 0x84682E7F, 0xEC6B02B7,\n            0xF18EB23E, 0x998D9EF6, 0x2188EBAE, 0x498BC766,\n            0x1A438ABC, 0x7240A674, 0xCA45D32C, 0xA246FFE4,\n            0xBFA34F6D, 0xD7A063A5, 0x6FA516FD, 0x07A63A35,\n            0x8FD9098E, 0xE7DA2546, 0x5FDF501E, 0x37DC7CD6,\n            0x2A39CC5F, 0x423AE097, 0xFA3F95CF, 0x923CB907,\n            0xC1F4F4DD, 0xA9F7D815, 0x11F2AD4D, 0x79F18185,\n            0x6414310C, 0x0C171DC4, 0xB412689C, 0xDC114454,\n            0x1382F328, 0x7B81DFE0, 0xC384AAB8, 0xAB878670,\n            0xB66236F9, 0xDE611A31, 0x66646F69, 0x0E6743A1,\n            0x5DAF0E7B, 0x35AC22B3, 0x8DA957EB, 0xE5AA7B23,\n            0xF84FCBAA, 0x904CE762, 0x2849923A, 0x404ABEF2,\n            0xB2828A33, 0xDA81A6FB, 0x6284D3A3, 0x0A87FF6B,\n            0x17624FE2, 0x7F61632A, 0xC7641672, 0xAF673ABA,\n            0xFCAF7760, 0x94AC5BA8, 0x2CA92EF0, 0x44AA0238,\n            0x594FB2B1, 0x314C9E79, 0x8949EB21, 0xE14AC7E9,\n            0x2ED97095, 0x46DA5C5D, 0xFEDF2905, 0x96DC05CD,\n            0x8B39B544, 0xE33A998C, 0x5B3FECD4, 0x333CC01C,\n            0x60F48DC6, 0x08F7A10E, 0xB0F2D456, 0xD8F1F89E,\n            0xC5144817, 0xAD1764DF, 0x15121187, 0x7D113D4F\n    };\n    static final int[] T8_7 = new int[] {\n            0x00000000, 0x493C7D27, 0x9278FA4E, 0xDB448769,\n            0x211D826D, 0x6821FF4A, 0xB3657823, 0xFA590504,\n            0x423B04DA, 0x0B0779FD, 0xD043FE94, 0x997F83B3,\n            0x632686B7, 0x2A1AFB90, 0xF15E7CF9, 0xB86201DE,\n            0x847609B4, 0xCD4A7493, 0x160EF3FA, 0x5F328EDD,\n            0xA56B8BD9, 0xEC57F6FE, 0x37137197, 0x7E2F0CB0,\n            0xC64D0D6E, 0x8F717049, 0x5435F720, 0x1D098A07,\n            0xE7508F03, 0xAE6CF224, 0x7528754D, 0x3C14086A,\n            0x0D006599, 0x443C18BE, 0x9F789FD7, 0xD644E2F0,\n            0x2C1DE7F4, 0x65219AD3, 0xBE651DBA, 0xF759609D,\n            0x4F3B6143, 0x06071C64, 0xDD439B0D, 0x947FE62A,\n            0x6E26E32E, 0x271A9E09, 0xFC5E1960, 0xB5626447,\n            0x89766C2D, 0xC04A110A, 0x1B0E9663, 0x5232EB44,\n            0xA86BEE40, 0xE1579367, 0x3A13140E, 0x732F6929,\n            0xCB4D68F7, 0x827115D0, 0x593592B9, 0x1009EF9E,\n            0xEA50EA9A, 0xA36C97BD, 0x782810D4, 0x31146DF3,\n            0x1A00CB32, 0x533CB615, 0x8878317C, 0xC1444C5B,\n            0x3B1D495F, 0x72213478, 0xA965B311, 0xE059CE36,\n            0x583BCFE8, 0x1107B2CF, 0xCA4335A6, 0x837F4881,\n            0x79264D85, 0x301A30A2, 0xEB5EB7CB, 0xA262CAEC,\n            0x9E76C286, 0xD74ABFA1, 0x0C0E38C8, 0x453245EF,\n            0xBF6B40EB, 0xF6573DCC, 0x2D13BAA5, 0x642FC782,\n            0xDC4DC65C, 0x9571BB7B, 0x4E353C12, 0x07094135,\n            0xFD504431, 0xB46C3916, 0x6F28BE7F, 0x2614C358,\n            0x1700AEAB, 0x5E3CD38C, 0x857854E5, 0xCC4429C2,\n            0x361D2CC6, 0x7F2151E1, 0xA465D688, 0xED59ABAF,\n            0x553BAA71, 0x1C07D756, 0xC743503F, 0x8E7F2D18,\n            0x7426281C, 0x3D1A553B, 0xE65ED252, 0xAF62AF75,\n            0x9376A71F, 0xDA4ADA38, 0x010E5D51, 0x48322076,\n            0xB26B2572, 0xFB575855, 0x2013DF3C, 0x692FA21B,\n            0xD14DA3C5, 0x9871DEE2, 0x4335598B, 0x0A0924AC,\n            0xF05021A8, 0xB96C5C8F, 0x6228DBE6, 0x2B14A6C1,\n            0x34019664, 0x7D3DEB43, 0xA6796C2A, 0xEF45110D,\n            0x151C1409, 0x5C20692E, 0x8764EE47, 0xCE589360,\n            0x763A92BE, 0x3F06EF99, 0xE44268F0, 0xAD7E15D7,\n            0x572710D3, 0x1E1B6DF4, 0xC55FEA9D, 0x8C6397BA,\n            0xB0779FD0, 0xF94BE2F7, 0x220F659E, 0x6B3318B9,\n            0x916A1DBD, 0xD856609A, 0x0312E7F3, 0x4A2E9AD4,\n            0xF24C9B0A, 0xBB70E62D, 0x60346144, 0x29081C63,\n            0xD3511967, 0x9A6D6440, 0x4129E329, 0x08159E0E,\n            0x3901F3FD, 0x703D8EDA, 0xAB7909B3, 0xE2457494,\n            0x181C7190, 0x51200CB7, 0x8A648BDE, 0xC358F6F9,\n            0x7B3AF727, 0x32068A00, 0xE9420D69, 0xA07E704E,\n            0x5A27754A, 0x131B086D, 0xC85F8F04, 0x8163F223,\n            0xBD77FA49, 0xF44B876E, 0x2F0F0007, 0x66337D20,\n            0x9C6A7824, 0xD5560503, 0x0E12826A, 0x472EFF4D,\n            0xFF4CFE93, 0xB67083B4, 0x6D3404DD, 0x240879FA,\n            0xDE517CFE, 0x976D01D9, 0x4C2986B0, 0x0515FB97,\n            0x2E015D56, 0x673D2071, 0xBC79A718, 0xF545DA3F,\n            0x0F1CDF3B, 0x4620A21C, 0x9D642575, 0xD4585852,\n            0x6C3A598C, 0x250624AB, 0xFE42A3C2, 0xB77EDEE5,\n            0x4D27DBE1, 0x041BA6C6, 0xDF5F21AF, 0x96635C88,\n            0xAA7754E2, 0xE34B29C5, 0x380FAEAC, 0x7133D38B,\n            0x8B6AD68F, 0xC256ABA8, 0x19122CC1, 0x502E51E6,\n            0xE84C5038, 0xA1702D1F, 0x7A34AA76, 0x3308D751,\n            0xC951D255, 0x806DAF72, 0x5B29281B, 0x1215553C,\n            0x230138CF, 0x6A3D45E8, 0xB179C281, 0xF845BFA6,\n            0x021CBAA2, 0x4B20C785, 0x906440EC, 0xD9583DCB,\n            0x613A3C15, 0x28064132, 0xF342C65B, 0xBA7EBB7C,\n            0x4027BE78, 0x091BC35F, 0xD25F4436, 0x9B633911,\n            0xA777317B, 0xEE4B4C5C, 0x350FCB35, 0x7C33B612,\n            0x866AB316, 0xCF56CE31, 0x14124958, 0x5D2E347F,\n            0xE54C35A1, 0xAC704886, 0x7734CFEF, 0x3E08B2C8,\n            0xC451B7CC, 0x8D6DCAEB, 0x56294D82, 0x1F1530A5\n    };\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\nimport org.apache.hadoop.conf.Configuration;\n\nimport java.util.Optional;\n\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_SNAPPY_BUFFERSIZE_DEFAULT;\nimport static org.apache.hadoop.fs.CommonConfigurationKeys.IO_COMPRESSION_CODEC_SNAPPY_BUFFERSIZE_KEY;\n\npublic class SnappyCodec\n        extends CodecAdapter\n{\n    public SnappyCodec()\n    {\n        super(configuration -> new SnappyHadoopStreams(true, getBufferSize(configuration)));\n    }\n\n    private static int getBufferSize(Optional<Configuration> configuration)\n    {\n        // Favor using the configured buffer size.  This is not as critical for Snappy\n        // since Snappy always writes the compressed chunk size, so we always know the\n        // correct buffer size to create.\n        return configuration\n                .map(conf -> conf.getInt(IO_COMPRESSION_CODEC_SNAPPY_BUFFERSIZE_KEY, IO_COMPRESSION_CODEC_SNAPPY_BUFFERSIZE_DEFAULT))\n                .orElse(IO_COMPRESSION_CODEC_SNAPPY_BUFFERSIZE_DEFAULT);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic sealed interface SnappyCompressor\n        extends Compressor\n        permits SnappyJavaCompressor, SnappyNativeCompressor\n{\n    int compress(MemorySegment input, MemorySegment output);\n\n    static SnappyCompressor create()\n    {\n        if (SnappyNativeCompressor.isEnabled()) {\n            return new SnappyNativeCompressor();\n        }\n        return new SnappyJavaCompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyConstants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nfinal class SnappyConstants\n{\n    static final int SIZE_OF_SHORT = 2;\n    static final int SIZE_OF_INT = 4;\n    static final int SIZE_OF_LONG = 8;\n\n    static final int LITERAL = 0;\n    static final int COPY_1_BYTE_OFFSET = 1;  // 3 bit length + 3 bits of offset in opcode\n    static final int COPY_2_BYTE_OFFSET = 2;\n\n    private SnappyConstants() {}\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.Decompressor;\n\npublic sealed interface SnappyDecompressor\n        extends Decompressor\n        permits SnappyJavaDecompressor, SnappyNativeDecompressor\n{\n    int getUncompressedLength(byte[] compressed, int compressedOffset);\n\n    static SnappyDecompressor create()\n    {\n        if (SnappyNativeDecompressor.isEnabled()) {\n            return new SnappyNativeDecompressor();\n        }\n        return new SnappyJavaDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyFramed.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\n/**\n * Constants for implementing x-snappy-framed.\n */\nfinal class SnappyFramed\n{\n    public static final int COMPRESSED_DATA_FLAG = 0x00;\n\n    public static final int UNCOMPRESSED_DATA_FLAG = 0x01;\n\n    public static final int STREAM_IDENTIFIER_FLAG = 0xff;\n\n    /**\n     * The header consists of the stream identifier flag, 3 bytes indicating a\n     * length of 6, and \"sNaPpY\" in ASCII.\n     */\n    public static final byte[] HEADER_BYTES = new byte[] {(byte) STREAM_IDENTIFIER_FLAG, 0x06, 0x00, 0x00, 0x73, 0x4e, 0x61, 0x50, 0x70, 0x59};\n\n    private SnappyFramed()\n    {\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyFramedInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.snappy.SnappyFramedOutputStream.MAX_BLOCK_SIZE;\nimport static java.lang.Math.min;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * Implements the <a href=\"http://snappy.googlecode.com/svn/trunk/framing_format.txt\" >x-snappy-framed</a> as an {@link InputStream}.\n */\npublic final class SnappyFramedInputStream\n        extends InputStream\n{\n    private final SnappyDecompressor decompressor;\n\n    private final InputStream in;\n    private final byte[] frameHeader;\n    private final boolean verifyChecksums;\n\n    /**\n     * A single frame read from the underlying {@link InputStream}.\n     */\n    private byte[] input = new byte[0];\n    /**\n     * The decompressed data from {@link #input}.\n     */\n    private byte[] uncompressed = new byte[0];\n    /**\n     * Indicates if this instance has been closed.\n     */\n    private boolean closed;\n    /**\n     * Indicates if we have reached the EOF on {@link #in}.\n     */\n    private boolean eof;\n    /**\n     * The position in {@link #input} to read to.\n     */\n    private int valid;\n    /**\n     * The next position to read from {@link #buffer}.\n     */\n    private int position;\n    /**\n     * Buffer is a reference to the real buffer of uncompressed data for the\n     * current block: uncompressed if the block is compressed, or input if it is\n     * not.\n     */\n    private byte[] buffer;\n\n    public SnappyFramedInputStream(SnappyDecompressor decompressor, InputStream in)\n            throws IOException\n    {\n        this(decompressor, in, true);\n    }\n\n    public SnappyFramedInputStream(SnappyDecompressor decompressor, InputStream in, boolean verifyChecksums)\n            throws IOException\n    {\n        this.decompressor = requireNonNull(decompressor, \"decompressor is null\");\n        this.in = in;\n        this.verifyChecksums = verifyChecksums;\n        allocateBuffersBasedOnSize(MAX_BLOCK_SIZE + 5);\n        this.frameHeader = new byte[4];\n\n        // stream must begin with stream header\n        byte[] actualHeader = new byte[SnappyFramed.HEADER_BYTES.length];\n\n        int read = SnappyInternalUtils.readBytes(in, actualHeader, 0, actualHeader.length);\n        if (read < SnappyFramed.HEADER_BYTES.length) {\n            throw new EOFException(\"encountered EOF while reading stream header\");\n        }\n        if (!Arrays.equals(SnappyFramed.HEADER_BYTES, actualHeader)) {\n            throw new IOException(\"invalid stream header\");\n        }\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        if (closed) {\n            return -1;\n        }\n        if (!ensureBuffer()) {\n            return -1;\n        }\n        return buffer[position++] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        SnappyInternalUtils.checkNotNull(output, \"output is null\");\n        SnappyInternalUtils.checkPositionIndexes(offset, offset + length, output.length);\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n\n        if (length == 0) {\n            return 0;\n        }\n        if (!ensureBuffer()) {\n            return -1;\n        }\n\n        int size = min(length, available());\n        System.arraycopy(buffer, position, output, offset, size);\n        position += size;\n        return size;\n    }\n\n    @Override\n    public int available()\n            throws IOException\n    {\n        if (closed) {\n            return 0;\n        }\n        return valid - position;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            in.close();\n        }\n        finally {\n            if (!closed) {\n                closed = true;\n            }\n        }\n    }\n\n    private boolean ensureBuffer()\n            throws IOException\n    {\n        if (available() > 0) {\n            return true;\n        }\n        if (eof) {\n            return false;\n        }\n\n        if (!readBlockHeader()) {\n            eof = true;\n            return false;\n        }\n\n        // get action based on header\n        FrameMetaData frameMetaData = getFrameMetaData(frameHeader);\n\n        if (FrameAction.SKIP == frameMetaData.frameAction) {\n            SnappyInternalUtils.skip(in, frameMetaData.length);\n            return ensureBuffer();\n        }\n\n        if (frameMetaData.length > input.length) {\n            allocateBuffersBasedOnSize(frameMetaData.length);\n        }\n\n        int actualRead = SnappyInternalUtils.readBytes(in, input, 0, frameMetaData.length);\n        if (actualRead != frameMetaData.length) {\n            throw new EOFException(\"unexpectd EOF when reading frame\");\n        }\n\n        FrameData frameData = getFrameData(input);\n\n        if (FrameAction.UNCOMPRESS == frameMetaData.frameAction) {\n            int uncompressedLength = decompressor.getUncompressedLength(input, frameData.offset);\n\n            if (uncompressedLength > uncompressed.length) {\n                uncompressed = new byte[uncompressedLength];\n            }\n\n            this.valid = decompressor.decompress(input, frameData.offset, actualRead - frameData.offset, uncompressed, 0, uncompressed.length);\n            this.buffer = uncompressed;\n            this.position = 0;\n        }\n        else {\n            // we need to start reading at the offset\n            this.position = frameData.offset;\n            this.buffer = input;\n            // valid is until the end of the read data, regardless of offset\n            // indicating where we start\n            this.valid = actualRead;\n        }\n\n        if (verifyChecksums) {\n            int actualCrc32c = Crc32C.maskedCrc32c(buffer, position, valid - position);\n            if (frameData.checkSum != actualCrc32c) {\n                throw new IOException(\"Corrupt input: invalid checksum\");\n            }\n        }\n\n        return true;\n    }\n\n    private void allocateBuffersBasedOnSize(int size)\n    {\n        if (input.length < size) {\n            input = new byte[size];\n        }\n        if (uncompressed.length < size) {\n            uncompressed = new byte[size];\n        }\n    }\n\n    /**\n     * Use the content of the frameHeader to describe what type of frame we have\n     * and the action to take.\n     */\n    private static FrameMetaData getFrameMetaData(byte[] frameHeader)\n            throws IOException\n    {\n        int length = (frameHeader[1] & 0xFF);\n        length |= (frameHeader[2] & 0xFF) << 8;\n        length |= (frameHeader[3] & 0xFF) << 16;\n\n        int minLength;\n        FrameAction frameAction;\n        int flag = frameHeader[0] & 0xFF;\n        switch (flag) {\n            case SnappyFramed.COMPRESSED_DATA_FLAG:\n                frameAction = FrameAction.UNCOMPRESS;\n                minLength = 5;\n                break;\n            case SnappyFramed.UNCOMPRESSED_DATA_FLAG:\n                frameAction = FrameAction.RAW;\n                minLength = 5;\n                break;\n            case SnappyFramed.STREAM_IDENTIFIER_FLAG:\n                if (length != 6) {\n                    throw new IOException(\"stream identifier chunk with invalid length: \" + length);\n                }\n                frameAction = FrameAction.SKIP;\n                minLength = 6;\n                break;\n            default:\n                // Reserved unskippable chunks (chunk types 0x02-0x7f)\n                if (flag <= 0x7f) {\n                    throw new IOException(\"unsupported unskippable chunk: \" + Integer.toHexString(flag));\n                }\n\n                // all that is left is Reserved skippable chunks (chunk types 0x80-0xfe)\n                frameAction = FrameAction.SKIP;\n                minLength = 0;\n        }\n\n        if (length < minLength) {\n            throw new IOException(\"invalid length: \" + length + \" for chunk flag: \" + Integer.toHexString(flag));\n        }\n\n        return new FrameMetaData(frameAction, length);\n    }\n\n    /**\n     * Extract frame data\n     *\n     * @param content The content of the of the frame. Content begins at index {@code 0}.\n     * @return Metadata about the content of the frame.\n     */\n    private static FrameData getFrameData(byte[] content)\n    {\n        // crc is contained in the frame content\n        int crc32c = (content[3] & 0xFF) << 24 |\n                (content[2] & 0xFF) << 16 |\n                (content[1] & 0xFF) << 8 |\n                (content[0] & 0xFF);\n\n        return new FrameData(crc32c, 4);\n    }\n\n    private boolean readBlockHeader()\n            throws IOException\n    {\n        int read = SnappyInternalUtils.readBytes(in, frameHeader, 0, frameHeader.length);\n\n        if (read == -1) {\n            return false;\n        }\n\n        if (read < frameHeader.length) {\n            throw new EOFException(\"encountered EOF while reading block header\");\n        }\n\n        return true;\n    }\n\n    enum FrameAction\n    {\n        RAW, SKIP, UNCOMPRESS\n    }\n\n    public static final class FrameMetaData\n    {\n        final int length;\n        final FrameAction frameAction;\n\n        public FrameMetaData(FrameAction frameAction, int length)\n        {\n            this.frameAction = frameAction;\n            this.length = length;\n        }\n    }\n\n    public static final class FrameData\n    {\n        final int checkSum;\n        final int offset;\n\n        public FrameData(int checkSum, int offset)\n        {\n            this.checkSum = checkSum;\n            this.offset = offset;\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyFramedOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static java.util.Objects.requireNonNull;\n\n/**\n * Implements the <a href=\"http://snappy.googlecode.com/svn/trunk/framing_format.txt\" >x-snappy-framed</a> as an {@link OutputStream}.\n */\npublic final class SnappyFramedOutputStream\n        extends OutputStream\n{\n    /**\n     * We place an additional restriction that the uncompressed data in\n     * a chunk must be no longer than 65536 bytes. This allows consumers to\n     * easily use small fixed-size buffers.\n     */\n    public static final int MAX_BLOCK_SIZE = 65536;\n\n    public static final int DEFAULT_BLOCK_SIZE = MAX_BLOCK_SIZE;\n\n    public static final double DEFAULT_MIN_COMPRESSION_RATIO = 0.85d;\n    private final SnappyCompressor compressor;\n    private final int blockSize;\n    private final byte[] buffer;\n    private final byte[] outputBuffer;\n    private final double minCompressionRatio;\n    private final OutputStream out;\n    private final boolean writeChecksums;\n\n    private int position;\n    private boolean closed;\n\n    /**\n     * Creates a Snappy output stream to write data to the specified underlying output stream.\n     *\n     * @param out the underlying output stream\n     */\n    public SnappyFramedOutputStream(SnappyCompressor compressor, OutputStream out)\n            throws IOException\n    {\n        this(compressor, out, true);\n    }\n\n    /**\n     * Creates a Snappy output stream with block checksums disabled.  This is only useful for\n     * apples-to-apples benchmarks with other compressors that do not perform block checksums.\n     *\n     * @param out the underlying output stream\n     */\n    public static SnappyFramedOutputStream newChecksumFreeBenchmarkOutputStream(SnappyCompressor compressor, OutputStream out)\n            throws IOException\n    {\n        return new SnappyFramedOutputStream(compressor, out, false);\n    }\n\n    private SnappyFramedOutputStream(SnappyCompressor compressor, OutputStream out, boolean writeChecksums)\n            throws IOException\n    {\n        this(compressor, out, writeChecksums, DEFAULT_BLOCK_SIZE, DEFAULT_MIN_COMPRESSION_RATIO);\n    }\n\n    public SnappyFramedOutputStream(SnappyCompressor compressor, OutputStream out, boolean writeChecksums, int blockSize, double minCompressionRatio)\n            throws IOException\n    {\n        this.compressor = requireNonNull(compressor, \"compressor is null\");\n        this.out = requireNonNull(out, \"out is null\");\n        this.writeChecksums = writeChecksums;\n        SnappyInternalUtils.checkArgument(minCompressionRatio > 0 && minCompressionRatio <= 1.0, \"minCompressionRatio %1s must be between (0,1.0].\", minCompressionRatio);\n        this.minCompressionRatio = minCompressionRatio;\n        this.blockSize = blockSize;\n        this.buffer = new byte[blockSize];\n        this.outputBuffer = new byte[compressor.maxCompressedLength(blockSize)];\n\n        out.write(SnappyFramed.HEADER_BYTES);\n        SnappyInternalUtils.checkArgument(blockSize > 0 && blockSize <= MAX_BLOCK_SIZE, \"blockSize must be in (0, 65536]\", blockSize);\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n        if (position >= blockSize) {\n            flushBuffer();\n        }\n        buffer[position++] = (byte) b;\n    }\n\n    @Override\n    public void write(byte[] input, int offset, int length)\n            throws IOException\n    {\n        SnappyInternalUtils.checkNotNull(input, \"input is null\");\n        SnappyInternalUtils.checkPositionIndexes(offset, offset + length, input.length);\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n\n        int free = blockSize - position;\n\n        // easy case: enough free space in buffer for entire input\n        if (free >= length) {\n            copyToBuffer(input, offset, length);\n            return;\n        }\n\n        // fill partial buffer as much as possible and flush\n        if (position > 0) {\n            copyToBuffer(input, offset, free);\n            flushBuffer();\n            offset += free;\n            length -= free;\n        }\n\n        // write remaining full blocks directly from input array\n        while (length >= blockSize) {\n            writeCompressed(input, offset, blockSize);\n            offset += blockSize;\n            length -= blockSize;\n        }\n\n        // copy remaining partial block into now-empty buffer\n        copyToBuffer(input, offset, length);\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n        flushBuffer();\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (closed) {\n            return;\n        }\n        try {\n            flush();\n            out.close();\n        }\n        finally {\n            closed = true;\n        }\n    }\n\n    private void copyToBuffer(byte[] input, int offset, int length)\n    {\n        System.arraycopy(input, offset, buffer, position, length);\n        position += length;\n    }\n\n    /**\n     * Compresses and writes out any buffered data. This does nothing if there\n     * is no currently buffered data.\n     */\n    private void flushBuffer()\n            throws IOException\n    {\n        if (position > 0) {\n            writeCompressed(buffer, 0, position);\n            position = 0;\n        }\n    }\n\n    /**\n     * {@link Crc32C#maskedCrc32c(byte[], int, int) Calculates} the crc, compresses\n     * the data, determines if the compression ratio is acceptable and calls\n     * {@link #writeBlock(OutputStream, byte[], int, int, boolean, int)} to\n     * actually write the frame.\n     *\n     * @param input The byte[] containing the raw data to be compressed.\n     * @param offset The offset into <i>input</i> where the data starts.\n     * @param length The amount of data in <i>input</i>.\n     */\n    private void writeCompressed(byte[] input, int offset, int length)\n            throws IOException\n    {\n        // crc is based on the user supplied input data\n        int crc32c = writeChecksums ? Crc32C.maskedCrc32c(input, offset, length) : 0;\n\n        int compressed = compressor.compress(input,\n                offset,\n                length,\n                outputBuffer,\n                0,\n                outputBuffer.length);\n\n        // only use the compressed data if compression ratio is <= the minCompressionRatio\n        if (((double) compressed / (double) length) <= minCompressionRatio) {\n            writeBlock(out, outputBuffer, 0, compressed, true, crc32c);\n        }\n        else {\n            // otherwise use the uncompressed data.\n            writeBlock(out, input, offset, length, false, crc32c);\n        }\n    }\n\n    /**\n     * Write a frame (block) to <i>out</i>.\n     *\n     * @param out The {@link OutputStream} to write to.\n     * @param data The data to write.\n     * @param offset The offset in <i>data</i> to start at.\n     * @param length The length of <i>data</i> to use.\n     * @param compressed Indicates if <i>data</i> is the compressed or raw content.\n     * This is based on whether the compression ratio desired is\n     * reached.\n     * @param crc32c The calculated checksum.\n     */\n    private void writeBlock(OutputStream out, byte[] data, int offset, int length, boolean compressed, int crc32c)\n            throws IOException\n    {\n        out.write(compressed ? SnappyFramed.COMPRESSED_DATA_FLAG : SnappyFramed.UNCOMPRESSED_DATA_FLAG);\n\n        // the length written out to the header is both the checksum and the frame\n        int headerLength = length + 4;\n\n        // write length\n        out.write(headerLength);\n        out.write(headerLength >>> 8);\n        out.write(headerLength >>> 16);\n\n        // write crc32c of user input data\n        out.write(crc32c);\n        out.write(crc32c >>> 8);\n        out.write(crc32c >>> 16);\n        out.write(crc32c >>> 24);\n\n        // write data\n        out.write(data, offset, length);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_LONG;\n\nclass SnappyHadoopInputStream\n        extends HadoopInputStream\n{\n    private final SnappyDecompressor decompressor;\n    private final InputStream in;\n\n    private int uncompressedBlockLength;\n    private byte[] uncompressedChunk = new byte[0];\n    private int uncompressedChunkOffset;\n    private int uncompressedChunkLength;\n\n    private byte[] compressed = new byte[0];\n\n    public SnappyHadoopInputStream(SnappyDecompressor decompressor, InputStream in)\n    {\n        this.decompressor = decompressor;\n        this.in = in;\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        if (uncompressedChunkOffset >= uncompressedChunkLength) {\n            readNextChunk(uncompressedChunk, 0, uncompressedChunk.length);\n            if (uncompressedChunkLength == 0) {\n                return -1;\n            }\n        }\n        return uncompressedChunk[uncompressedChunkOffset++] & 0xFF;\n    }\n\n    @Override\n    public int read(byte[] output, int offset, int length)\n            throws IOException\n    {\n        if (uncompressedChunkOffset >= uncompressedChunkLength) {\n            boolean directDecompress = readNextChunk(output, offset, length);\n            if (uncompressedChunkLength == 0) {\n                return -1;\n            }\n            if (directDecompress) {\n                uncompressedChunkOffset += uncompressedChunkLength;\n                return uncompressedChunkLength;\n            }\n        }\n        int size = Math.min(length, uncompressedChunkLength - uncompressedChunkOffset);\n        System.arraycopy(uncompressedChunk, uncompressedChunkOffset, output, offset, size);\n        uncompressedChunkOffset += size;\n        return size;\n    }\n\n    @Override\n    public void resetState()\n    {\n        uncompressedBlockLength = 0;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        in.close();\n    }\n\n    private boolean readNextChunk(byte[] userBuffer, int userOffset, int userLength)\n            throws IOException\n    {\n        uncompressedBlockLength -= uncompressedChunkOffset;\n        uncompressedChunkOffset = 0;\n        uncompressedChunkLength = 0;\n        while (uncompressedBlockLength == 0) {\n            uncompressedBlockLength = readBigEndianInt();\n            if (uncompressedBlockLength == -1) {\n                uncompressedBlockLength = 0;\n                return false;\n            }\n        }\n\n        int compressedChunkLength = readBigEndianInt();\n        if (compressedChunkLength == -1) {\n            return false;\n        }\n\n        if (compressed.length < compressedChunkLength) {\n             // over allocate buffer which makes decompression easier\n            compressed = new byte[compressedChunkLength + SIZE_OF_LONG];\n        }\n        readInput(compressedChunkLength, compressed);\n\n        uncompressedChunkLength = decompressor.getUncompressedLength(compressed, 0);\n        if (uncompressedChunkLength > uncompressedBlockLength) {\n            throw new IOException(\"Chunk uncompressed size is greater than block size\");\n        }\n\n        boolean directUncompress = true;\n        if (uncompressedChunkLength > userLength) {\n            if (uncompressedChunk.length < uncompressedChunkLength) {\n                // over allocate buffer which makes decompression easier\n                uncompressedChunk = new byte[uncompressedChunkLength + SIZE_OF_LONG];\n            }\n            directUncompress = false;\n            userBuffer = uncompressedChunk;\n            userOffset = 0;\n            userLength = uncompressedChunk.length;\n        }\n\n        int bytes = decompressor.decompress(compressed, 0, compressedChunkLength, userBuffer, userOffset, userLength);\n        if (uncompressedChunkLength != bytes) {\n            throw new IOException(\"Expected to read \" + uncompressedChunkLength + \" bytes, but data only contained \" + bytes + \" bytes\");\n        }\n        return directUncompress;\n    }\n\n    private void readInput(int length, byte[] buffer)\n            throws IOException\n    {\n        int offset = 0;\n        while (offset < length) {\n            int size = in.read(buffer, offset, length - offset);\n            if (size == -1) {\n                throw new EOFException(\"encountered EOF while reading block data\");\n            }\n            offset += size;\n        }\n    }\n\n    private int readBigEndianInt()\n            throws IOException\n    {\n        int b1 = in.read();\n        if (b1 < 0) {\n            return -1;\n        }\n        int b2 = in.read();\n        int b3 = in.read();\n        int b4 = in.read();\n\n        // If any of the other bits are negative, the stream it truncated\n        if ((b2 | b3 | b4) < 0) {\n            throw new IOException(\"Stream is truncated\");\n        }\n        return ((b1 << 24) + (b2 << 16) + (b3 << 8) + (b4));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_LONG;\nimport static java.util.Objects.requireNonNull;\n\nclass SnappyHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final SnappyCompressor compressor;\n\n    private final OutputStream out;\n    private final byte[] inputBuffer;\n    private final int inputMaxSize;\n    private int inputOffset;\n\n    private final byte[] outputBuffer;\n\n    public SnappyHadoopOutputStream(SnappyCompressor compressor, OutputStream out, int bufferSize)\n    {\n        this.compressor = compressor;\n        this.out = requireNonNull(out, \"out is null\");\n        inputBuffer = new byte[bufferSize];\n        // leave extra space free at end of buffers to make compression (slightly) faster\n        inputMaxSize = inputBuffer.length - compressionOverhead(bufferSize);\n        outputBuffer = new byte[compressor.maxCompressedLength(inputMaxSize) + SIZE_OF_LONG];\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        inputBuffer[inputOffset++] = (byte) b;\n        if (inputOffset >= inputMaxSize) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        while (length > 0) {\n            int chunkSize = Math.min(length, inputMaxSize - inputOffset);\n            // favor writing directly from the user buffer to avoid the extra copy\n            if (inputOffset == 0 && length > inputMaxSize) {\n                writeNextChunk(buffer, offset, chunkSize);\n            }\n            else {\n                System.arraycopy(buffer, offset, inputBuffer, inputOffset, chunkSize);\n                inputOffset += chunkSize;\n\n                if (inputOffset >= inputMaxSize) {\n                    writeNextChunk(inputBuffer, 0, inputOffset);\n                }\n            }\n            length -= chunkSize;\n            offset += chunkSize;\n        }\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (inputOffset > 0) {\n            writeNextChunk(inputBuffer, 0, this.inputOffset);\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            finish();\n        }\n        finally {\n            out.close();\n        }\n    }\n\n    private void writeNextChunk(byte[] input, int inputOffset, int inputLength)\n            throws IOException\n    {\n        int compressedSize = compressor.compress(input, inputOffset, inputLength, outputBuffer, 0, outputBuffer.length);\n\n        writeBigEndianInt(inputLength);\n        writeBigEndianInt(compressedSize);\n        out.write(outputBuffer, 0, compressedSize);\n\n        this.inputOffset = 0;\n    }\n\n    private void writeBigEndianInt(int value)\n            throws IOException\n    {\n        out.write(value >>> 24);\n        out.write(value >>> 16);\n        out.write(value >>> 8);\n        out.write(value);\n    }\n\n    private static int compressionOverhead(int size)\n    {\n        return (size / 6) + 32;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class SnappyHadoopStreams\n        implements HadoopStreams\n{\n    private static final int DEFAULT_OUTPUT_BUFFER_SIZE = 256 * 1024;\n    private final boolean useNative;\n    private final int bufferSize;\n\n    public SnappyHadoopStreams()\n    {\n        this(true, DEFAULT_OUTPUT_BUFFER_SIZE);\n    }\n\n    public SnappyHadoopStreams(boolean useNative, int bufferSize)\n    {\n        this.useNative = useNative && SnappyNative.isEnabled();\n        this.bufferSize = bufferSize;\n    }\n\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".snappy\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.SnappyCodec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n    {\n        SnappyDecompressor decompressor = useNative ? new SnappyNativeDecompressor() : new SnappyJavaDecompressor();\n        return new SnappyHadoopInputStream(decompressor, in);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n    {\n        SnappyCompressor compressor = useNative ? new SnappyNativeCompressor() : new SnappyJavaCompressor();\n        return new SnappyHadoopOutputStream(compressor, out, bufferSize);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyInternalUtils.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.io.IOException;\nimport java.io.InputStream;\n\nfinal class SnappyInternalUtils\n{\n    private SnappyInternalUtils()\n    {\n    }\n\n    //\n    // Copied from Guava Preconditions\n    static <T> T checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs)\n    {\n        if (reference == null) {\n            // If either of these parameters is null, the right thing happens anyway\n            throw new NullPointerException(String.format(errorMessageTemplate, errorMessageArgs));\n        }\n        return reference;\n    }\n\n    static void checkArgument(boolean expression, String errorMessageTemplate, Object... errorMessageArgs)\n    {\n        if (!expression) {\n            throw new IllegalArgumentException(String.format(errorMessageTemplate, errorMessageArgs));\n        }\n    }\n\n    static void checkPositionIndexes(int start, int end, int size)\n    {\n        // Carefully optimized for execution by hotspot (explanatory comment above)\n        if (start < 0 || end < start || end > size) {\n            throw new IndexOutOfBoundsException(badPositionIndexes(start, end, size));\n        }\n    }\n\n    static String badPositionIndexes(int start, int end, int size)\n    {\n        if (start < 0 || start > size) {\n            return badPositionIndex(start, size, \"start index\");\n        }\n        if (end < 0 || end > size) {\n            return badPositionIndex(end, size, \"end index\");\n        }\n        // end < start\n        return String.format(\"end index (%s) must not be less than start index (%s)\", end, start);\n    }\n\n    static String badPositionIndex(int index, int size, String desc)\n    {\n        if (index < 0) {\n            return String.format(\"%s (%s) must not be negative\", desc, index);\n        }\n        else if (size < 0) {\n            throw new IllegalArgumentException(\"negative size: \" + size);\n        }\n        else { // index > size\n            return String.format(\"%s (%s) must not be greater than size (%s)\", desc, index, size);\n        }\n    }\n\n    /**\n     * Reads <i>length</i> bytes from <i>source</i> into <i>dest</i> starting at <i>offset</i>. <br/>\n     * <p/>\n     * The only case where the <i>length</i> <tt>byte</tt>s will not be read is if <i>source</i> returns EOF.\n     *\n     * @param source The source of bytes to read from. Must not be <code>null</code>.\n     * @param dest The <tt>byte[]</tt> to read bytes into. Must not be <code>null</code>.\n     * @param offset The index in <i>dest</i> to start filling.\n     * @param length The number of bytes to read.\n     * @return Total number of bytes actually read.\n     * @throws IndexOutOfBoundsException if <i>offset</i> or <i>length</i> are invalid.\n     */\n    static int readBytes(InputStream source, byte[] dest, int offset, int length)\n            throws IOException\n    {\n        checkNotNull(source, \"source is null\");\n        checkNotNull(dest, \"dest is null\");\n\n        // how many bytes were read.\n        int lastRead = source.read(dest, offset, length);\n\n        int totalRead = lastRead;\n\n        // if we did not read as many bytes as we had hoped, try reading again.\n        if (lastRead < length) {\n            // as long the buffer is not full (remaining() == 0) and we have not reached EOF (lastRead == -1) keep reading.\n            while (totalRead < length && lastRead != -1) {\n                lastRead = source.read(dest, offset + totalRead, length - totalRead);\n\n                // if we got EOF, do not add to total read.\n                if (lastRead != -1) {\n                    totalRead += lastRead;\n                }\n            }\n        }\n\n        return totalRead;\n    }\n\n    static int skip(InputStream source, int skip)\n            throws IOException\n    {\n        // optimization also avoids potential for error with some implementation of\n        // InputStream.skip() which throw exceptions with negative numbers (ie. ZipInputStream).\n        if (skip <= 0) {\n            return 0;\n        }\n\n        int toSkip = skip - (int) source.skip(skip);\n\n        boolean more = true;\n        while (toSkip > 0 && more) {\n            // check to see if we reached EOF\n            int read = source.read();\n            if (read == -1) {\n                more = false;\n            }\n            else {\n                --toSkip;\n                toSkip -= source.skip(toSkip);\n            }\n        }\n\n        int skipped = skip - toSkip;\n\n        return skipped;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyJavaCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic final class SnappyJavaCompressor\n        implements SnappyCompressor\n{\n    private final short[] table = new short[SnappyRawCompressor.MAX_HASH_TABLE_SIZE];\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return SnappyRawCompressor.maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long inputLimit = inputAddress + inputLength;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n        long outputLimit = outputAddress + maxOutputLength;\n\n        return SnappyRawCompressor.compress(input, inputAddress, inputLimit, output, outputAddress, outputLimit, table);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return SnappyRawCompressor.compress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit,\n                    table);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    @Override\n    public int getRetainedSizeInBytes(int inputLength)\n    {\n        return SnappyRawCompressor.getHashTableSize(inputLength);\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyJavaDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic final class SnappyJavaDecompressor\n        implements SnappyDecompressor\n{\n    @Override\n    public int getUncompressedLength(byte[] compressed, int compressedOffset)\n    {\n        long compressedAddress = ARRAY_BYTE_BASE_OFFSET + compressedOffset;\n        long compressedLimit = ARRAY_BYTE_BASE_OFFSET + compressed.length;\n\n        return SnappyRawDecompressor.getUncompressedLength(compressed, compressedAddress, compressedLimit);\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long inputLimit = inputAddress + inputLength;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n        long outputLimit = outputAddress + maxOutputLength;\n\n        return SnappyRawDecompressor.decompress(input, inputAddress, inputLimit, output, outputAddress, outputLimit);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return SnappyRawDecompressor.decompress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.MalformedInputException;\nimport io.airlift.compress.v3.internal.NativeLoader.Symbols;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.invoke.MethodHandle;\nimport java.util.Optional;\n\nimport static io.airlift.compress.v3.internal.NativeLoader.loadSymbols;\nimport static java.lang.foreign.ValueLayout.JAVA_LONG;\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class SnappyNative\n{\n    private final MemorySegment lengthBuffer = MemorySegment.ofArray(new long[1]);\n\n    public static long maxCompressedLength(long inputLength)\n    {\n        return maxCompressedLengthInternal(inputLength);\n    }\n\n    public long compress(MemorySegment input, long inputLength, MemorySegment compressed, long compressedLength)\n    {\n        lengthBuffer.set(JAVA_LONG, 0, compressedLength);\n        compressInternal(input, inputLength, compressed, lengthBuffer);\n        return lengthBuffer.get(JAVA_LONG, 0);\n    }\n\n    public long decompress(MemorySegment compressed, long compressedLength, MemorySegment uncompressed, long uncompressedLength)\n    {\n        lengthBuffer.set(JAVA_LONG, 0, uncompressedLength);\n        decompressInternal(compressed, compressedLength, uncompressed, lengthBuffer);\n        return lengthBuffer.get(JAVA_LONG, 0);\n    }\n\n    public long decompressedLength(MemorySegment compressed, long compressedLength)\n    {\n        lengthBuffer.set(JAVA_LONG, 0, 0);\n        decompressedLengthInternal(compressed, compressedLength, lengthBuffer);\n        return lengthBuffer.get(JAVA_LONG, 0);\n    }\n\n    //\n    // FFI stuff\n    //\n\n    // Defined in snappy-c.h: https://github.com/google/snappy/blob/1.2.1/snappy-c.h#L47\n    private static final int SNAPPY_OK = 0;\n    private static final int SNAPPY_INVALID_INPUT = 1;\n    private static final int SNAPPY_BUFFER_TOO_SMALL = 2;\n\n    private record MethodHandles(\n            @NativeSignature(name = \"snappy_compress\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class, MemorySegment.class, MemorySegment.class})\n            MethodHandle compress,\n            @NativeSignature(name = \"snappy_uncompress\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class, MemorySegment.class, MemorySegment.class})\n            MethodHandle uncompress,\n            @NativeSignature(name = \"snappy_max_compressed_length\", returnType = long.class, argumentTypes = long.class)\n            MethodHandle maxCompressedLength,\n            @NativeSignature(name = \"snappy_uncompressed_length\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class, MemorySegment.class})\n            MethodHandle uncompressedLength) {}\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n    private static final MethodHandle COMPRESS_METHOD;\n    private static final MethodHandle DECOMPRESS_METHOD;\n    private static final MethodHandle MAX_COMPRESSED_LENGTH_METHOD;\n    private static final MethodHandle UNCOMPRESSED_LENGTH_METHOD;\n\n    static {\n        Symbols<MethodHandles> symbols = loadSymbols(\"snappy\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n        COMPRESS_METHOD = methodHandles.compress();\n        DECOMPRESS_METHOD = methodHandles.uncompress();\n        MAX_COMPRESSED_LENGTH_METHOD = methodHandles.maxCompressedLength();\n        UNCOMPRESSED_LENGTH_METHOD = methodHandles.uncompressedLength();\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"Snappy native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    private static void compressInternal(MemorySegment input, long inputLength, MemorySegment compressed, MemorySegment compressedLength)\n    {\n        int result;\n        try {\n            result = (int) COMPRESS_METHOD.invokeExact(input, inputLength, compressed, compressedLength);\n        }\n        catch (Throwable t) {\n            throw new AssertionError(\"should not reach here\", t);\n        }\n\n        switch (result) {\n            case SNAPPY_OK -> {}\n            case SNAPPY_BUFFER_TOO_SMALL -> throw new IllegalArgumentException(\"Output buffer too small\");\n            default -> throw new IllegalArgumentException(\"Unknown error occurred during compression: result=\" + result);\n        }\n    }\n\n    private static void decompressInternal(MemorySegment compressed, long compressedLength, MemorySegment output, MemorySegment outputLength)\n    {\n        int result;\n        try {\n            result = (int) DECOMPRESS_METHOD.invokeExact(compressed, compressedLength, output, outputLength);\n        }\n        catch (Throwable t) {\n            throw new AssertionError(\"should not reach here\", t);\n        }\n\n        switch (result) {\n            case SNAPPY_OK -> {}\n            case SNAPPY_INVALID_INPUT -> throw new MalformedInputException(0, \"Invalid input\");\n            case SNAPPY_BUFFER_TOO_SMALL -> throw new IllegalArgumentException(\"Output buffer too small\");\n            default -> throw new IllegalArgumentException(\"Unknown error occurred during decompression: result=\" + result);\n        }\n    }\n\n    private static long maxCompressedLengthInternal(long inputLength)\n    {\n        try {\n            return (long) MAX_COMPRESSED_LENGTH_METHOD.invokeExact(inputLength);\n        }\n        catch (Throwable t) {\n            throw new AssertionError(\"should not reach here\", t);\n        }\n    }\n\n    private static void decompressedLengthInternal(MemorySegment compressed, long compressedLength, MemorySegment decompressedLength)\n    {\n        int result;\n        try {\n            result = (int) UNCOMPRESSED_LENGTH_METHOD.invokeExact(compressed, compressedLength, decompressedLength);\n        }\n        catch (Throwable t) {\n            throw new AssertionError(\"should not reach here\", t);\n        }\n\n        switch (result) {\n            case SNAPPY_OK -> {}\n            case SNAPPY_INVALID_INPUT -> throw new MalformedInputException(0, \"Invalid input\");\n            default -> throw new IllegalArgumentException(\"Unknown error occurred during decompressed length calculation: result=\" + result);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyNativeCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.Math.toIntExact;\n\npublic final class SnappyNativeCompressor\n        implements SnappyCompressor\n{\n    private final SnappyNative snappyNative = new SnappyNative();\n\n    public SnappyNativeCompressor()\n    {\n        SnappyNative.verifyEnabled();\n    }\n\n    public static boolean isEnabled()\n    {\n        return SnappyNative.isEnabled();\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return toIntExact(SnappyNative.maxCompressedLength(uncompressedSize));\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return compress(inputSegment, outputSegment);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        return toIntExact(snappyNative.compress(input, input.byteSize(), output, output.byteSize()));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyNativeDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.Math.toIntExact;\n\npublic final class SnappyNativeDecompressor\n        implements SnappyDecompressor\n{\n    private final SnappyNative snappyNative = new SnappyNative();\n\n    public SnappyNativeDecompressor()\n    {\n        SnappyNative.verifyEnabled();\n    }\n\n    public static boolean isEnabled()\n    {\n        return SnappyNative.isEnabled();\n    }\n\n    @Override\n    public int getUncompressedLength(byte[] compressed, int compressedOffset)\n    {\n        MemorySegment input = MemorySegment.ofArray(compressed).asSlice(compressedOffset);\n        long length = snappyNative.decompressedLength(input, input.byteSize());\n        if ((length < 0) || (length > Integer.MAX_VALUE)) {\n            throw new MalformedInputException(0, \"invalid compressed length\");\n        }\n        return toIntExact(length);\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return decompress(inputSegment, outputSegment);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n    {\n        return toIntExact(snappyNative.decompress(input, input.byteSize(), output, output.byteSize()));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyRawCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.snappy.SnappyConstants.COPY_1_BYTE_OFFSET;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.COPY_2_BYTE_OFFSET;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.UNSAFE;\nimport static java.lang.Math.clamp;\n\nfinal class SnappyRawCompressor\n{\n    // The size of a compression block. Note that many parts of the compression\n    // code assumes that BLOCK_SIZE <= 65536; in particular, the hash table\n    // can only store 16-bit offsets, and EmitCopy() also assumes the offset\n    // is 65535 bytes or less. Note also that if you change this, it will\n    // affect the framing format (see framing_format.txt).\n    //\n    // Note that there might be older data around that is compressed with larger\n    // block sizes, so the decompression code should not rely on the\n    // non-existence of long back-references.\n    private static final int BLOCK_LOG = 16;\n    private static final int BLOCK_SIZE = 1 << BLOCK_LOG;\n\n    private static final int INPUT_MARGIN_BYTES = 15;\n\n    private static final int MAX_HASH_TABLE_BITS = 14;\n    public static final int MAX_HASH_TABLE_SIZE = 1 << MAX_HASH_TABLE_BITS;\n\n    private SnappyRawCompressor() {}\n\n    public static int maxCompressedLength(int sourceLength)\n    {\n        // Compressed data can be defined as:\n        //    compressed := item* literal*\n        //    item       := literal* copy\n        //\n        // The trailing literal sequence has a space blowup of at most 62/60\n        // since a literal of length 60 needs one tag byte + one extra byte\n        // for length information.\n        //\n        // Item blowup is trickier to measure.  Suppose the \"copy\" op copies\n        // 4 bytes of data.  Because of a special check in the encoding code,\n        // we produce a 4-byte copy only if the offset is < 65536.  Therefore\n        // the copy op takes 3 bytes to encode, and this type of item leads\n        // to at most the 62/60 blowup for representing literals.\n        //\n        // Suppose the \"copy\" op copies 5 bytes of data.  If the offset is big\n        // enough, it will take 5 bytes to encode the copy op.  Therefore the\n        // worst case here is a one-byte literal followed by a five-byte copy.\n        // I.e., 6 bytes of input turn into 7 bytes of \"compressed\" data.\n        //\n        // This last factor dominates the blowup, so the final estimate is:\n        return 32 + sourceLength + sourceLength / 6;\n    }\n\n    // suppress warnings is required to use assert\n    @SuppressWarnings(\"IllegalToken\")\n    public static int compress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit,\n            final short[] table)\n    {\n        // The compression code assumes output is larger than the max compression size (with 32 bytes of\n        // extra padding), and does not check bounds for writing to output.\n        int maxCompressedLength = maxCompressedLength((int) (inputLimit - inputAddress));\n        if (outputLimit - outputAddress < maxCompressedLength) {\n            throw new IllegalArgumentException(\"Output buffer must be at least \" + maxCompressedLength + \" bytes\");\n        }\n\n        // First write the uncompressed size to the output as a variable length int\n        long output = writeUncompressedLength(outputBase, outputAddress, (int) (inputLimit - inputAddress));\n\n        for (long blockAddress = inputAddress; blockAddress < inputLimit; blockAddress += BLOCK_SIZE) {\n            final long blockLimit = Math.min(inputLimit, blockAddress + BLOCK_SIZE);\n            long input = blockAddress;\n            assert blockLimit - blockAddress <= BLOCK_SIZE;\n\n            int blockHashTableSize = getHashTableSize((int) (blockLimit - blockAddress));\n            Arrays.fill(table, 0, blockHashTableSize, (short) 0);\n\n            // todo given that hashTableSize is required to be a power of 2, this is overly complex\n            final int shift = 32 - log2Floor(blockHashTableSize);\n            assert (blockHashTableSize & (blockHashTableSize - 1)) == 0 : \"table must be power of two\";\n            assert 0xFFFFFFFF >>> shift == blockHashTableSize - 1;\n\n            // Bytes in [nextEmitAddress, input) will be emitted as literal bytes.  Or\n            // [nextEmitAddress, inputLimit) after the main loop.\n            long nextEmitAddress = input;\n\n            final long fastInputLimit = blockLimit - INPUT_MARGIN_BYTES;\n            while (input <= fastInputLimit) {\n                assert nextEmitAddress <= input;\n\n                // The body of this loop emits a literal once and then emits a copy one\n                // or more times.  (The exception is that when we're close to exhausting\n                // the input we exit and emit a literal.)\n                //\n                // In the first iteration of this loop we're just starting, so\n                // there's nothing to copy, so we must emit a literal once.  And we\n                // only start a new iteration when the current iteration has determined\n                // that a literal will precede the next copy (if any).\n                //\n                // Step 1: Scan forward in the input looking for a 4-byte-long match.\n                // If we get close to exhausting the input exit and emit a final literal.\n                //\n                // Heuristic match skipping: If 32 bytes are scanned with no matches\n                // found, start looking only at every other byte. If 32 more bytes are\n                // scanned, look at every third byte, etc.. When a match is found,\n                // immediately go back to looking at every byte. This is a small loss\n                // (~5% performance, ~0.1% density) for compressible data due to more\n                // bookkeeping, but for non-compressible data (such as JPEG) it's a huge\n                // win since the compressor quickly \"realizes\" the data is incompressible\n                // and doesn't bother looking for matches everywhere.\n                //\n                // The \"skip\" variable keeps track of how many bytes there are since the\n                // last match; dividing it by 32 (ie. right-shifting by five) gives the\n                // number of bytes to move ahead for each iteration.\n                int skip = 32;\n\n                long candidateIndex = 0;\n                for (input += 1; input + (skip >>> 5) <= fastInputLimit; input += ((skip++) >>> 5)) {\n                    // hash the 4 bytes starting at the input pointer\n                    int currentInt = UNSAFE.getInt(inputBase, input);\n                    int hash = hashBytes(currentInt, shift);\n\n                    // get the position of a 4 bytes sequence with the same hash\n                    candidateIndex = blockAddress + (table[hash] & 0xFFFF);\n                    assert candidateIndex >= 0;\n                    assert candidateIndex < input;\n\n                    // update the hash to point to the current position\n                    table[hash] = (short) (input - blockAddress);\n\n                    // if the 4 byte sequence a the candidate index matches the sequence at the\n                    // current position, proceed to the next phase\n                    if (currentInt == UNSAFE.getInt(inputBase, candidateIndex)) {\n                        break;\n                    }\n                }\n                if (input + (skip >>> 5) > fastInputLimit) {\n                    break;\n                }\n\n                // Step 2: A 4-byte match has been found.  We'll later see if more\n                // than 4 bytes match.  But, prior to the match, input\n                // bytes [nextEmit, ip) are unmatched.  Emit them as \"literal bytes.\"\n                assert nextEmitAddress + 16 <= blockLimit;\n\n                int literalLength = (int) (input - nextEmitAddress);\n                output = emitLiteralLength(outputBase, output, literalLength);\n\n                // Fast copy can use 8 extra bytes of input and output, which is safe because:\n                //   - The input will always have INPUT_MARGIN_BYTES = 15 extra available bytes\n                //   - The output will always have 32 spare bytes (see MaxCompressedLength).\n                output = fastCopy(inputBase, nextEmitAddress, outputBase, output, literalLength);\n\n                // Step 3: Call EmitCopy, and then see if another EmitCopy could\n                // be our next move.  Repeat until we find no match for the\n                // input immediately after what was consumed by the last EmitCopy call.\n                //\n                // If we exit this loop normally then we need to call EmitLiteral next,\n                // though we don't yet know how big the literal will be.  We handle that\n                // by proceeding to the next iteration of the main loop.  We also can exit\n                // this loop via goto if we get close to exhausting the input.\n                int inputBytes;\n                do {\n                    // We have a 4-byte match at input, and no need to emit any\n                    // \"literal bytes\" prior to input.\n                    assert (blockLimit >= input + SIZE_OF_INT);\n\n                    // determine match length\n                    int matched = count(inputBase, input + SIZE_OF_INT, candidateIndex + SIZE_OF_INT, blockLimit);\n                    matched += SIZE_OF_INT;\n\n                    // Emit the copy operation for this chunk\n                    output = emitCopy(outputBase, output, input, candidateIndex, matched);\n                    input += matched;\n\n                    // are we done?\n                    if (input >= fastInputLimit) {\n                        break;\n                    }\n\n                    // We could immediately start working at input now, but to improve\n                    // compression we first update table[Hash(ip - 1, ...)].\n                    long longValue = UNSAFE.getLong(inputBase, input - 1);\n                    int prevInt = (int) longValue;\n                    inputBytes = (int) (longValue >>> 8);\n\n                    // add hash starting with previous byte\n                    int prevHash = hashBytes(prevInt, shift);\n                    table[prevHash] = (short) (input - blockAddress - 1);\n\n                    // update hash of current byte\n                    int curHash = hashBytes(inputBytes, shift);\n\n                    candidateIndex = blockAddress + (table[curHash] & 0xFFFF);\n                    table[curHash] = (short) (input - blockAddress);\n                } while (inputBytes == UNSAFE.getInt(inputBase, candidateIndex));\n                nextEmitAddress = input;\n            }\n\n            // Emit the remaining bytes as a literal\n            if (nextEmitAddress < blockLimit) {\n                int literalLength = (int) (blockLimit - nextEmitAddress);\n                output = emitLiteralLength(outputBase, output, literalLength);\n                UNSAFE.copyMemory(inputBase, nextEmitAddress, outputBase, output, literalLength);\n                output += literalLength;\n            }\n        }\n\n        return (int) (output - outputAddress);\n    }\n\n    private static int count(Object inputBase, final long start, long matchStart, long matchLimit)\n    {\n        long current = start;\n\n        // first, compare long at a time\n        while (current < matchLimit - (SIZE_OF_LONG - 1)) {\n            long diff = UNSAFE.getLong(inputBase, matchStart) ^ UNSAFE.getLong(inputBase, current);\n            if (diff != 0) {\n                current += Long.numberOfTrailingZeros(diff) >> 3;\n                return (int) (current - start);\n            }\n\n            current += SIZE_OF_LONG;\n            matchStart += SIZE_OF_LONG;\n        }\n\n        if (current < matchLimit - (SIZE_OF_INT - 1) && UNSAFE.getInt(inputBase, matchStart) == UNSAFE.getInt(inputBase, current)) {\n            current += SIZE_OF_INT;\n            matchStart += SIZE_OF_INT;\n        }\n\n        if (current < matchLimit - (SIZE_OF_SHORT - 1) && UNSAFE.getShort(inputBase, matchStart) == UNSAFE.getShort(inputBase, current)) {\n            current += SIZE_OF_SHORT;\n            matchStart += SIZE_OF_SHORT;\n        }\n\n        if (current < matchLimit && UNSAFE.getByte(inputBase, matchStart) == UNSAFE.getByte(inputBase, current)) {\n            ++current;\n        }\n\n        return (int) (current - start);\n    }\n\n    private static long emitLiteralLength(Object outputBase, long output, int literalLength)\n    {\n        int n = literalLength - 1;      // Zero-length literals are disallowed\n        if (n < 60) {\n            // Size fits in tag byte\n            UNSAFE.putByte(outputBase, output++, (byte) (n << 2));\n        }\n        else {\n            int bytes;\n            if (n < (1 << 8)) {\n                UNSAFE.putByte(outputBase, output++, (byte) (59 + 1 << 2));\n                bytes = 1;\n            }\n            else if (n < (1 << 16)) {\n                UNSAFE.putByte(outputBase, output++, (byte) (59 + 2 << 2));\n                bytes = 2;\n            }\n            else if (n < (1 << 24)) {\n                UNSAFE.putByte(outputBase, output++, (byte) (59 + 3 << 2));\n                bytes = 3;\n            }\n            else {\n                UNSAFE.putByte(outputBase, output++, (byte) (59 + 4 << 2));\n                bytes = 4;\n            }\n            // System is assumed to be little endian, so low bytes will be zero for the smaller numbers\n            UNSAFE.putInt(outputBase, output, n);\n            output += bytes;\n        }\n        return output;\n    }\n\n    private static long fastCopy(final Object inputBase, long input, final Object outputBase, long output, final int literalLength)\n    {\n        final long outputLimit = output + literalLength;\n        do {\n            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n            input += SIZE_OF_LONG;\n            output += SIZE_OF_LONG;\n        }\n        while (output < outputLimit);\n        return outputLimit;\n    }\n\n    private static long emitCopy(Object outputBase, long output, long input, long matchIndex, int matchLength)\n    {\n        long offset = input - matchIndex;\n\n        // Emit 64 byte copies but make sure to keep at least four bytes reserved\n        while (matchLength >= 68) {\n            UNSAFE.putByte(outputBase, output++, (byte) (COPY_2_BYTE_OFFSET + ((64 - 1) << 2)));\n            UNSAFE.putShort(outputBase, output, (short) offset);\n            output += SIZE_OF_SHORT;\n            matchLength -= 64;\n        }\n\n        // Emit an extra 60 byte copy if have too much data to fit in one copy\n        // length < 68\n        if (matchLength > 64) {\n            UNSAFE.putByte(outputBase, output++, (byte) (COPY_2_BYTE_OFFSET + ((60 - 1) << 2)));\n            UNSAFE.putShort(outputBase, output, (short) offset);\n            output += SIZE_OF_SHORT;\n            matchLength -= 60;\n        }\n\n        // Emit remainder\n        if ((matchLength < 12) && (offset < 2048)) {\n            int lenMinus4 = matchLength - 4;\n            UNSAFE.putByte(outputBase, output++, (byte) (COPY_1_BYTE_OFFSET + ((lenMinus4) << 2) + ((offset >>> 8) << 5)));\n            UNSAFE.putByte(outputBase, output++, (byte) (offset));\n        }\n        else {\n            UNSAFE.putByte(outputBase, output++, (byte) (COPY_2_BYTE_OFFSET + ((matchLength - 1) << 2)));\n            UNSAFE.putShort(outputBase, output, (short) offset);\n            output += SIZE_OF_SHORT;\n        }\n        return output;\n    }\n\n    @SuppressWarnings(\"IllegalToken\")\n    static int getHashTableSize(int inputSize)\n    {\n        // Use smaller hash table when input.size() is smaller, since we\n        // fill the table, incurring O(hash table size) overhead for\n        // compression, and if the input is short, we won't need that\n        // many hash table entries anyway.\n        assert (MAX_HASH_TABLE_SIZE >= 256);\n\n        // smallest power of 2 larger than inputSize\n        int target = Integer.highestOneBit(inputSize - 1) << 1;\n\n        // keep it between MIN_TABLE_SIZE and MAX_TABLE_SIZE\n        return clamp(target, 256, MAX_HASH_TABLE_SIZE);\n    }\n\n    // Any hash function will produce a valid compressed stream, but a good\n    // hash function reduces the number of collisions and thus yields better\n    // compression for compressible input, and more speed for incompressible\n    // input. Of course, it doesn't hurt if the hash function is reasonably fast\n    // either, as it gets called a lot.\n    private static int hashBytes(int value, int shift)\n    {\n        return (value * 0x1e35a7bd) >>> shift;\n    }\n\n    private static int log2Floor(int n)\n    {\n        return n == 0 ? -1 : 31 ^ Integer.numberOfLeadingZeros(n);\n    }\n\n    private static final int HIGH_BIT_MASK = 0x80;\n\n    /**\n     * Writes the uncompressed length as variable length integer.\n     */\n    private static long writeUncompressedLength(Object outputBase, long outputAddress, int uncompressedLength)\n    {\n        if (uncompressedLength < (1 << 7) && uncompressedLength >= 0) {\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength));\n        }\n        else if (uncompressedLength < (1 << 14) && uncompressedLength > 0) {\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength >>> 7));\n        }\n        else if (uncompressedLength < (1 << 21) && uncompressedLength > 0) {\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 7) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength >>> 14));\n        }\n        else if (uncompressedLength < (1 << 28) && uncompressedLength > 0) {\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 7) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 14) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength >>> 21));\n        }\n        else {\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 7) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 14) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) ((uncompressedLength >>> 21) | HIGH_BIT_MASK));\n            UNSAFE.putByte(outputBase, outputAddress++, (byte) (uncompressedLength >>> 28));\n        }\n        return outputAddress;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/SnappyRawDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport static io.airlift.compress.v3.snappy.SnappyConstants.LITERAL;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.snappy.SnappyConstants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.snappy.UnsafeUtil.UNSAFE;\n\nfinal class SnappyRawDecompressor\n{\n    private static final int[] DEC_32_TABLE = {4, 1, 2, 1, 4, 4, 4, 4};\n    private static final int[] DEC_64_TABLE = {0, 0, 0, -1, 0, 1, 2, 3};\n\n    private SnappyRawDecompressor() {}\n\n    public static int getUncompressedLength(Object compressed, long compressedAddress, long compressedLimit)\n    {\n        return readUncompressedLength(compressed, compressedAddress, compressedLimit)[0];\n    }\n\n    public static int decompress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit)\n    {\n        // Read the uncompressed length from the front of the input\n        long input = inputAddress;\n        int[] varInt = readUncompressedLength(inputBase, input, inputLimit);\n        int expectedLength = varInt[0];\n        input += varInt[1];\n\n        SnappyInternalUtils.checkArgument(expectedLength <= (outputLimit - outputAddress),\n                \"Uncompressed length %s must be less than %s\", expectedLength, (outputLimit - outputAddress));\n\n        // Process the entire input\n        int uncompressedSize = uncompressAll(\n                inputBase,\n                input,\n                inputLimit,\n                outputBase,\n                outputAddress,\n                outputLimit);\n\n        if (!(expectedLength == uncompressedSize)) {\n            throw new MalformedInputException(0, String.format(\"Recorded length is %s bytes but actual length after decompression is %s bytes \",\n                    expectedLength,\n                    uncompressedSize));\n        }\n\n        return expectedLength;\n    }\n\n    private static int uncompressAll(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit)\n    {\n        final long fastOutputLimit = outputLimit - SIZE_OF_LONG; // maximum offset in output buffer to which it's safe to write long-at-a-time\n\n        long output = outputAddress;\n        long input = inputAddress;\n\n        while (input < inputLimit) {\n            int opCode = UNSAFE.getByte(inputBase, input++) & 0xFF;\n            int entry = opLookupTable[opCode] & 0xFFFF;\n\n            int trailerBytes = entry >>> 11;\n            int trailer = 0;\n            if (input + SIZE_OF_INT < inputLimit) {\n                trailer = UNSAFE.getInt(inputBase, input) & wordmask[trailerBytes];\n            }\n            else {\n                if (input + trailerBytes > inputLimit) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n                switch (trailerBytes) {\n                    case 4:\n                        trailer = (UNSAFE.getByte(inputBase, input + 3) & 0xff) << 24;\n                    case 3:\n                        trailer |= (UNSAFE.getByte(inputBase, input + 2) & 0xff) << 16;\n                    case 2:\n                        trailer |= (UNSAFE.getByte(inputBase, input + 1) & 0xff) << 8;\n                    case 1:\n                        trailer |= (UNSAFE.getByte(inputBase, input) & 0xff);\n                }\n            }\n            if (trailer < 0) {\n                throw new MalformedInputException(input - inputAddress);\n            }\n            input += trailerBytes;\n\n            int length = entry & 0xff;\n            if (length == 0) {\n                continue;\n            }\n\n            if ((opCode & 0x3) == LITERAL) {\n                int literalLength = length + trailer;\n                if (literalLength < 0) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n\n                // copy literal\n                long literalOutputLimit = output + literalLength;\n                if (literalOutputLimit > fastOutputLimit || input + literalLength > inputLimit - SIZE_OF_LONG) {\n                    if (literalOutputLimit > outputLimit || input + literalLength > inputLimit) {\n                        throw new MalformedInputException(input - inputAddress);\n                    }\n\n                    // slow, precise copy\n                    UNSAFE.copyMemory(inputBase, input, outputBase, output, literalLength);\n                    input += literalLength;\n                    output += literalLength;\n                }\n                else {\n                    // fast copy. We may over-copy but there's enough room in input and output to not overrun them\n                    do {\n                        UNSAFE.putLong(outputBase, output, UNSAFE.getLong(inputBase, input));\n                        input += SIZE_OF_LONG;\n                        output += SIZE_OF_LONG;\n                    }\n                    while (output < literalOutputLimit);\n                    input -= (output - literalOutputLimit); // adjust index if we over-copied\n                    output = literalOutputLimit;\n                }\n            }\n            else {\n                // matchOffset/256 is encoded in bits 8..10.  By just fetching\n                // those bits, we get matchOffset (since the bit-field starts at\n                // bit 8).\n                int matchOffset = entry & 0x700;\n                matchOffset += trailer;\n                if (matchOffset <= 0) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n\n                long matchAddress = output - matchOffset;\n                if (matchAddress < outputAddress || output + length > outputLimit) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n                long matchOutputLimit = output + length;\n                if (matchOutputLimit > outputLimit) {\n                    throw new MalformedInputException(input - inputAddress);\n                }\n\n                if (output > fastOutputLimit) {\n                    // slow match copy\n                    while (output < matchOutputLimit) {\n                        UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n                    }\n                }\n                else {\n                    // copy repeated sequence\n                    if (matchOffset < SIZE_OF_LONG) {\n                        // 8 bytes apart so that we can copy long-at-a-time below\n                        int increment32 = DEC_32_TABLE[matchOffset];\n                        int decrement64 = DEC_64_TABLE[matchOffset];\n\n                        UNSAFE.putByte(outputBase, output, UNSAFE.getByte(outputBase, matchAddress));\n                        UNSAFE.putByte(outputBase, output + 1, UNSAFE.getByte(outputBase, matchAddress + 1));\n                        UNSAFE.putByte(outputBase, output + 2, UNSAFE.getByte(outputBase, matchAddress + 2));\n                        UNSAFE.putByte(outputBase, output + 3, UNSAFE.getByte(outputBase, matchAddress + 3));\n                        output += SIZE_OF_INT;\n                        matchAddress += increment32;\n\n                        UNSAFE.putInt(outputBase, output, UNSAFE.getInt(outputBase, matchAddress));\n                        output += SIZE_OF_INT;\n                        matchAddress -= decrement64;\n                    }\n                    else {\n                        UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                        matchAddress += SIZE_OF_LONG;\n                        output += SIZE_OF_LONG;\n                    }\n\n                    if (matchOutputLimit > fastOutputLimit) {\n                        while (output < fastOutputLimit) {\n                            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                            matchAddress += SIZE_OF_LONG;\n                            output += SIZE_OF_LONG;\n                        }\n\n                        while (output < matchOutputLimit) {\n                            UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n                        }\n                    }\n                    else {\n                        while (output < matchOutputLimit) {\n                            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                            matchAddress += SIZE_OF_LONG;\n                            output += SIZE_OF_LONG;\n                        }\n                    }\n                }\n                output = matchOutputLimit; // correction in case we over-copied\n            }\n        }\n\n        return (int) (output - outputAddress);\n    }\n\n    // Mapping from i in range [0,4] to a mask to extract the bottom 8*i bits\n    private static final int[] wordmask = new int[] {\n            0, 0xff, 0xffff, 0xffffff, 0xffffffff\n    };\n\n    // Data stored per entry in lookup table:\n    //      Range   Bits-used       Description\n    //      ------------------------------------\n    //      1..64   0..7            Literal/copy length encoded in opcode byte\n    //      0..7    8..10           Copy offset encoded in opcode byte / 256\n    //      0..4    11..13          Extra bytes after opcode\n    //\n    // We use eight bits for the length even though 7 would have sufficed\n    // because of efficiency reasons:\n    //      (1) Extracting a byte is faster than a bit-field\n    //      (2) It properly aligns copy offset so we do not need a <<8\n    private static final short[] opLookupTable = new short[] {\n            0x0001, 0x0804, 0x1001, 0x2001, 0x0002, 0x0805, 0x1002, 0x2002,\n            0x0003, 0x0806, 0x1003, 0x2003, 0x0004, 0x0807, 0x1004, 0x2004,\n            0x0005, 0x0808, 0x1005, 0x2005, 0x0006, 0x0809, 0x1006, 0x2006,\n            0x0007, 0x080a, 0x1007, 0x2007, 0x0008, 0x080b, 0x1008, 0x2008,\n            0x0009, 0x0904, 0x1009, 0x2009, 0x000a, 0x0905, 0x100a, 0x200a,\n            0x000b, 0x0906, 0x100b, 0x200b, 0x000c, 0x0907, 0x100c, 0x200c,\n            0x000d, 0x0908, 0x100d, 0x200d, 0x000e, 0x0909, 0x100e, 0x200e,\n            0x000f, 0x090a, 0x100f, 0x200f, 0x0010, 0x090b, 0x1010, 0x2010,\n            0x0011, 0x0a04, 0x1011, 0x2011, 0x0012, 0x0a05, 0x1012, 0x2012,\n            0x0013, 0x0a06, 0x1013, 0x2013, 0x0014, 0x0a07, 0x1014, 0x2014,\n            0x0015, 0x0a08, 0x1015, 0x2015, 0x0016, 0x0a09, 0x1016, 0x2016,\n            0x0017, 0x0a0a, 0x1017, 0x2017, 0x0018, 0x0a0b, 0x1018, 0x2018,\n            0x0019, 0x0b04, 0x1019, 0x2019, 0x001a, 0x0b05, 0x101a, 0x201a,\n            0x001b, 0x0b06, 0x101b, 0x201b, 0x001c, 0x0b07, 0x101c, 0x201c,\n            0x001d, 0x0b08, 0x101d, 0x201d, 0x001e, 0x0b09, 0x101e, 0x201e,\n            0x001f, 0x0b0a, 0x101f, 0x201f, 0x0020, 0x0b0b, 0x1020, 0x2020,\n            0x0021, 0x0c04, 0x1021, 0x2021, 0x0022, 0x0c05, 0x1022, 0x2022,\n            0x0023, 0x0c06, 0x1023, 0x2023, 0x0024, 0x0c07, 0x1024, 0x2024,\n            0x0025, 0x0c08, 0x1025, 0x2025, 0x0026, 0x0c09, 0x1026, 0x2026,\n            0x0027, 0x0c0a, 0x1027, 0x2027, 0x0028, 0x0c0b, 0x1028, 0x2028,\n            0x0029, 0x0d04, 0x1029, 0x2029, 0x002a, 0x0d05, 0x102a, 0x202a,\n            0x002b, 0x0d06, 0x102b, 0x202b, 0x002c, 0x0d07, 0x102c, 0x202c,\n            0x002d, 0x0d08, 0x102d, 0x202d, 0x002e, 0x0d09, 0x102e, 0x202e,\n            0x002f, 0x0d0a, 0x102f, 0x202f, 0x0030, 0x0d0b, 0x1030, 0x2030,\n            0x0031, 0x0e04, 0x1031, 0x2031, 0x0032, 0x0e05, 0x1032, 0x2032,\n            0x0033, 0x0e06, 0x1033, 0x2033, 0x0034, 0x0e07, 0x1034, 0x2034,\n            0x0035, 0x0e08, 0x1035, 0x2035, 0x0036, 0x0e09, 0x1036, 0x2036,\n            0x0037, 0x0e0a, 0x1037, 0x2037, 0x0038, 0x0e0b, 0x1038, 0x2038,\n            0x0039, 0x0f04, 0x1039, 0x2039, 0x003a, 0x0f05, 0x103a, 0x203a,\n            0x003b, 0x0f06, 0x103b, 0x203b, 0x003c, 0x0f07, 0x103c, 0x203c,\n            0x0801, 0x0f08, 0x103d, 0x203d, 0x1001, 0x0f09, 0x103e, 0x203e,\n            0x1801, 0x0f0a, 0x103f, 0x203f, 0x2001, 0x0f0b, 0x1040, 0x2040\n    };\n\n    /**\n     * Reads the variable length integer encoded a the specified offset, and\n     * returns this length with the number of bytes read.\n     */\n    static int[] readUncompressedLength(Object compressed, long compressedAddress, long compressedLimit)\n    {\n        int result;\n        int bytesRead = 0;\n        {\n            int b = getUnsignedByteSafe(compressed, compressedAddress + bytesRead, compressedLimit);\n            bytesRead++;\n            result = b & 0x7f;\n            if ((b & 0x80) != 0) {\n                b = getUnsignedByteSafe(compressed, compressedAddress + bytesRead, compressedLimit);\n                bytesRead++;\n                result |= (b & 0x7f) << 7;\n                if ((b & 0x80) != 0) {\n                    b = getUnsignedByteSafe(compressed, compressedAddress + bytesRead, compressedLimit);\n                    bytesRead++;\n                    result |= (b & 0x7f) << 14;\n                    if ((b & 0x80) != 0) {\n                        b = getUnsignedByteSafe(compressed, compressedAddress + bytesRead, compressedLimit);\n                        bytesRead++;\n                        result |= (b & 0x7f) << 21;\n                        if ((b & 0x80) != 0) {\n                            b = getUnsignedByteSafe(compressed, compressedAddress + bytesRead, compressedLimit);\n                            bytesRead++;\n                            result |= (b & 0x7f) << 28;\n                            if ((b & 0x80) != 0) {\n                                throw new MalformedInputException(compressedAddress + bytesRead, \"last byte of compressed length int has high bit set\");\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        if (result < 0) {\n            throw new MalformedInputException(compressedAddress, \"invalid compressed length\");\n        }\n        return new int[] {result, bytesRead};\n    }\n\n    private static int getUnsignedByteSafe(Object base, long address, long limit)\n    {\n        if (address >= limit) {\n            throw new MalformedInputException(limit - address, \"Input is truncated\");\n        }\n        return UNSAFE.getByte(base, address) & 0xFF;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/snappy/UnsafeUtil.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.IncompatibleJvmException;\nimport sun.misc.Unsafe;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.reflect.Field;\nimport java.nio.ByteOrder;\n\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class UnsafeUtil\n{\n    public static final Unsafe UNSAFE;\n\n    private UnsafeUtil() {}\n\n    static {\n        ByteOrder order = ByteOrder.nativeOrder();\n        if (!order.equals(ByteOrder.LITTLE_ENDIAN)) {\n            throw new IncompatibleJvmException(format(\"Snappy requires a little endian platform (found %s)\", order));\n        }\n\n        try {\n            Field theUnsafe = Unsafe.class.getDeclaredField(\"theUnsafe\");\n            theUnsafe.setAccessible(true);\n            UNSAFE = (Unsafe) theUnsafe.get(null);\n        }\n        catch (Exception e) {\n            throw new IncompatibleJvmException(\"Snappy requires access to sun.misc.Unsafe\");\n        }\n    }\n\n    public static byte[] getBase(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return null;\n        }\n        if (segment.isReadOnly()) {\n            throw new IllegalArgumentException(\"MemorySegment is read-only\");\n        }\n        Object inputBase = segment.heapBase().orElse(null);\n        if (!(inputBase instanceof byte[] byteArray)) {\n            throw new IllegalArgumentException(\"MemorySegment is not backed by a byte array\");\n        }\n        return byteArray;\n    }\n\n    public static long getAddress(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return segment.address();\n        }\n        return segment.address() + ARRAY_BYTE_BASE_OFFSET;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash128.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\npublic record XxHash128(long low, long high) {}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash3Bindings.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport io.airlift.compress.v3.internal.NativeLoader;\nimport io.airlift.compress.v3.internal.NativeLoader.Symbols;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.FunctionDescriptor;\nimport java.lang.foreign.Linker;\nimport java.lang.foreign.MemoryLayout;\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.SegmentAllocator;\nimport java.lang.foreign.StructLayout;\nimport java.lang.foreign.SymbolLookup;\nimport java.lang.invoke.MethodHandle;\nimport java.lang.invoke.VarHandle;\nimport java.nio.ByteOrder;\nimport java.util.Optional;\n\nimport static java.lang.foreign.ValueLayout.ADDRESS;\nimport static java.lang.foreign.ValueLayout.JAVA_LONG;\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class XxHash3Bindings\n{\n    private static final VarHandle LONG_HANDLE = java.lang.invoke.MethodHandles.byteArrayViewVarHandle(long[].class, ByteOrder.LITTLE_ENDIAN);\n\n    private XxHash3Bindings() {}\n\n    // Record for functions that can use @NativeSignature (primitives and MemorySegment only)\n    private record MethodHandles(\n            // One-shot 64-bit hash\n            @NativeSignature(name = \"XXH3_64bits\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle hash64,\n            @NativeSignature(name = \"XXH3_64bits_withSeed\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class, long.class})\n            MethodHandle hash64WithSeed,\n            // State management\n            @NativeSignature(name = \"XXH3_createState\", returnType = MemorySegment.class, argumentTypes = {})\n            MethodHandle createState,\n            @NativeSignature(name = \"XXH3_freeState\", returnType = int.class, argumentTypes = MemorySegment.class)\n            MethodHandle freeState,\n            // 64-bit streaming\n            @NativeSignature(name = \"XXH3_64bits_reset\", returnType = int.class, argumentTypes = MemorySegment.class)\n            MethodHandle reset64,\n            @NativeSignature(name = \"XXH3_64bits_reset_withSeed\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle reset64WithSeed,\n            @NativeSignature(name = \"XXH3_64bits_update\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, long.class})\n            MethodHandle update64,\n            @NativeSignature(name = \"XXH3_64bits_digest\", returnType = long.class, argumentTypes = MemorySegment.class)\n            MethodHandle digest64,\n            // 128-bit streaming (reset and update)\n            @NativeSignature(name = \"XXH3_128bits_reset\", returnType = int.class, argumentTypes = MemorySegment.class)\n            MethodHandle reset128,\n            @NativeSignature(name = \"XXH3_128bits_reset_withSeed\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle reset128WithSeed,\n            @NativeSignature(name = \"XXH3_128bits_update\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, long.class})\n            MethodHandle update128) {}\n\n    // Struct layout for XXH128_hash_t: { uint64_t low64; uint64_t high64; }\n    private static final StructLayout XXH128_HASH_STRUCT = MemoryLayout.structLayout(\n            JAVA_LONG.withName(\"low64\"),\n            JAVA_LONG.withName(\"high64\"));\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n\n    // One-shot hash methods\n    private static final MethodHandle HASH64_METHOD;\n    private static final MethodHandle HASH64_WITH_SEED_METHOD;\n    private static final MethodHandle HASH128_METHOD;\n    private static final MethodHandle HASH128_WITH_SEED_METHOD;\n\n    // State management methods\n    private static final MethodHandle CREATE_STATE_METHOD;\n    private static final MethodHandle FREE_STATE_METHOD;\n\n    // 64-bit streaming methods\n    private static final MethodHandle RESET64_METHOD;\n    private static final MethodHandle RESET64_WITH_SEED_METHOD;\n    private static final MethodHandle UPDATE64_METHOD;\n    private static final MethodHandle DIGEST64_METHOD;\n\n    // 128-bit streaming methods\n    private static final MethodHandle RESET128_METHOD;\n    private static final MethodHandle RESET128_WITH_SEED_METHOD;\n    private static final MethodHandle UPDATE128_METHOD;\n    private static final MethodHandle DIGEST128_METHOD;\n\n    static {\n        Symbols<MethodHandles> symbols = NativeLoader.loadSymbols(\"xxhash\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n\n        // One-shot hash\n        HASH64_METHOD = methodHandles.hash64();\n        HASH64_WITH_SEED_METHOD = methodHandles.hash64WithSeed();\n\n        // State management\n        CREATE_STATE_METHOD = methodHandles.createState();\n        FREE_STATE_METHOD = methodHandles.freeState();\n\n        // 64-bit streaming\n        RESET64_METHOD = methodHandles.reset64();\n        RESET64_WITH_SEED_METHOD = methodHandles.reset64WithSeed();\n        UPDATE64_METHOD = methodHandles.update64();\n        DIGEST64_METHOD = methodHandles.digest64();\n\n        // 128-bit streaming\n        RESET128_METHOD = methodHandles.reset128();\n        RESET128_WITH_SEED_METHOD = methodHandles.reset128WithSeed();\n        UPDATE128_METHOD = methodHandles.update128();\n\n        // Manual setup for functions that return a struct\n        if (LINKAGE_ERROR.isEmpty()) {\n            try {\n                SymbolLookup symbolLookup = NativeLoader.loadLibrary(\"xxhash\");\n\n                // XXH3_128bits(void* input, size_t length) -> XXH128_hash_t\n                HASH128_METHOD = symbolLookup.find(\"XXH3_128bits\")\n                        .map(segment -> Linker.nativeLinker().downcallHandle(\n                                segment,\n                                FunctionDescriptor.of(XXH128_HASH_STRUCT, ADDRESS, JAVA_LONG),\n                                Linker.Option.critical(true)))\n                        .orElseThrow(() -> new LinkageError(\"unresolved symbol: XXH3_128bits\"));\n\n                // XXH3_128bits_withSeed(void* input, size_t length, uint64_t seed) -> XXH128_hash_t\n                HASH128_WITH_SEED_METHOD = symbolLookup.find(\"XXH3_128bits_withSeed\")\n                        .map(segment -> Linker.nativeLinker().downcallHandle(\n                                segment,\n                                FunctionDescriptor.of(XXH128_HASH_STRUCT, ADDRESS, JAVA_LONG, JAVA_LONG),\n                                Linker.Option.critical(true)))\n                        .orElseThrow(() -> new LinkageError(\"unresolved symbol: XXH3_128bits_withSeed\"));\n\n                // XXH3_128bits_digest(XXH3_state_t* state) -> XXH128_hash_t\n                DIGEST128_METHOD = symbolLookup.find(\"XXH3_128bits_digest\")\n                        .map(segment -> Linker.nativeLinker().downcallHandle(\n                                segment,\n                                FunctionDescriptor.of(XXH128_HASH_STRUCT, ADDRESS),\n                                Linker.Option.critical(true)))\n                        .orElseThrow(() -> new LinkageError(\"unresolved symbol: XXH3_128bits_digest\"));\n            }\n            catch (LinkageError e) {\n                throw new ExceptionInInitializerError(e);\n            }\n        }\n        else {\n            HASH128_METHOD = null;\n            HASH128_WITH_SEED_METHOD = null;\n            DIGEST128_METHOD = null;\n        }\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"XxHash3 native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    // One-shot hash methods\n\n    public static long hash64(MemorySegment input, long length)\n    {\n        try {\n            return (long) HASH64_METHOD.invokeExact(input, length);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static long hash64(MemorySegment input, long length, long seed)\n    {\n        try {\n            return (long) HASH64_WITH_SEED_METHOD.invokeExact(input, length, seed);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static XxHash128 hash128(MemorySegment input, long length)\n    {\n        try {\n            byte[] bytes = new byte[16];\n            SegmentAllocator allocator = (_, _) -> MemorySegment.ofArray(bytes);\n            MemorySegment _ = (MemorySegment) HASH128_METHOD.invokeExact(allocator, input, length);\n            return new XxHash128((long) LONG_HANDLE.get(bytes, 0), (long) LONG_HANDLE.get(bytes, 8));\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static XxHash128 hash128(MemorySegment input, long length, long seed)\n    {\n        try {\n            byte[] bytes = new byte[16];\n            SegmentAllocator allocator = (_, _) -> MemorySegment.ofArray(bytes);\n            MemorySegment _ = (MemorySegment) HASH128_WITH_SEED_METHOD.invokeExact(allocator, input, length, seed);\n            return new XxHash128((long) LONG_HANDLE.get(bytes, 0), (long) LONG_HANDLE.get(bytes, 8));\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    // State management\n\n    public static MemorySegment createState()\n    {\n        try {\n            return (MemorySegment) CREATE_STATE_METHOD.invokeExact();\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void freeState(MemorySegment state)\n    {\n        try {\n            int result = (int) FREE_STATE_METHOD.invokeExact(state);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_freeState failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    // 64-bit streaming\n\n    public static void reset64(MemorySegment state)\n    {\n        try {\n            int result = (int) RESET64_METHOD.invokeExact(state);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_64bits_reset failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void reset64(MemorySegment state, long seed)\n    {\n        try {\n            int result = (int) RESET64_WITH_SEED_METHOD.invokeExact(state, seed);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_64bits_reset_withSeed failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void update64(MemorySegment state, MemorySegment input, long length)\n    {\n        try {\n            int result = (int) UPDATE64_METHOD.invokeExact(state, input, length);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_64bits_update failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static long digest64(MemorySegment state)\n    {\n        try {\n            return (long) DIGEST64_METHOD.invokeExact(state);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    // 128-bit streaming\n\n    public static void reset128(MemorySegment state)\n    {\n        try {\n            int result = (int) RESET128_METHOD.invokeExact(state);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_128bits_reset failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void reset128(MemorySegment state, long seed)\n    {\n        try {\n            int result = (int) RESET128_WITH_SEED_METHOD.invokeExact(state, seed);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_128bits_reset_withSeed failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void update128(MemorySegment state, MemorySegment input, long length)\n    {\n        try {\n            int result = (int) UPDATE128_METHOD.invokeExact(state, input, length);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH3_128bits_update failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static XxHash128 digest128(MemorySegment state)\n    {\n        try {\n            byte[] bytes = new byte[16];\n            SegmentAllocator allocator = (_, _) -> MemorySegment.ofArray(bytes);\n            MemorySegment _ = (MemorySegment) DIGEST128_METHOD.invokeExact(allocator, state);\n            return new XxHash128((long) LONG_HANDLE.get(bytes, 0), (long) LONG_HANDLE.get(bytes, 8));\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash3Hasher.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.MemorySegment;\n\n/**\n * Streaming hasher for computing 64-bit XXHash3 hashes incrementally.\n * <p>\n * Example usage:\n * <pre>\n * try (XxHash3Hasher hasher = XxHash3.newHasher()) {\n *     hasher.update(chunk1);\n *     hasher.update(chunk2);\n *     long hash = hasher.digest();\n * }\n * </pre>\n */\npublic interface XxHash3Hasher\n        extends AutoCloseable\n{\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher update(byte[] input);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher update(byte[] input, int offset, int length);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher update(MemorySegment input);\n\n    /**\n     * Updates the hash state with the given long value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher updateLE(long value);\n\n    /**\n     * Updates the hash state with the given int value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher updateLE(int value);\n\n    /**\n     * Computes and returns the 64-bit hash of all data passed to update().\n     * The state is not modified, so you can continue to call update() and digest().\n     */\n    long digest();\n\n    /**\n     * Resets the hasher to its initial state (no seed).\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher reset();\n\n    /**\n     * Resets the hasher with the given seed.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher reset(long seed);\n\n    /**\n     * Closes this hasher and releases native resources.\n     */\n    @Override\n    void close();\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash3Hasher128.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.MemorySegment;\n\n/**\n * Streaming hasher for computing 128-bit XXHash3 hashes incrementally.\n * <p>\n * Example usage:\n * <pre>\n * try (XxHash3Hasher128 hasher = XxHash3.newHasher128()) {\n *     hasher.update(chunk1);\n *     hasher.update(chunk2);\n *     XxHash128 hash = hasher.digest();\n * }\n * </pre>\n */\npublic interface XxHash3Hasher128\n        extends AutoCloseable\n{\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 update(byte[] input);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 update(byte[] input, int offset, int length);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 update(MemorySegment input);\n\n    /**\n     * Updates the hash state with the given long value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 updateLE(long value);\n\n    /**\n     * Updates the hash state with the given int value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 updateLE(int value);\n\n    /**\n     * Computes and returns the 128-bit hash of all data passed to update().\n     * The state is not modified, so you can continue to call update() and digest().\n     */\n    XxHash128 digest();\n\n    /**\n     * Resets the hasher to its initial state (no seed).\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 reset();\n\n    /**\n     * Resets the hasher with the given seed.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash3Hasher128 reset(long seed);\n\n    /**\n     * Closes this hasher and releases native resources.\n     */\n    @Override\n    void close();\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash3Native.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.ValueLayout;\nimport java.lang.ref.Cleaner;\nimport java.nio.ByteOrder;\n\nimport static java.util.Objects.checkFromIndexSize;\n\n/**\n * XXHash3 hash function with support for both one-shot and streaming hashing.\n * <p>\n * For one-shot hashing, use the static methods:\n * <pre>\n * long hash = XxHash3Native.hash(data);\n * XxHash128 hash128 = XxHash3Native.hash128(data);\n * </pre>\n * <p>\n * For streaming (incremental) hashing, use the factory methods:\n * <pre>\n * try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n *     hasher.update(chunk1);\n *     hasher.update(chunk2);\n *     long hash = hasher.digest();\n * }\n *\n * try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n *     hasher.update(chunk1);\n *     hasher.update(chunk2);\n *     XxHash128 hash = hasher.digest();\n * }\n * </pre>\n *\n * <h2>Performance</h2>\n * <p>\n * XXHash3 is significantly faster than XXHash64 for large inputs (~2.5x at 16KB+).\n * <p>\n * The 64-bit hash ({@link #hash}) has minimal overhead and is fast at all input sizes.\n * <p>\n * The 128-bit hash ({@link #hash128}) has additional overhead due to FFM struct-return\n * handling. For small inputs (&lt;512 bytes), this overhead is noticeable. At larger sizes\n * (8KB+), the 64-bit and 128-bit variants have similar throughput as hash computation\n * dominates.\n */\npublic final class XxHash3Native\n{\n    private static final Cleaner CLEANER = Cleaner.create();\n    private static final ValueLayout.OfLong JAVA_LONG_LE_UNALIGNED = ValueLayout.JAVA_LONG_UNALIGNED.withOrder(ByteOrder.LITTLE_ENDIAN);\n    private static final ValueLayout.OfInt JAVA_INT_LE_UNALIGNED = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.LITTLE_ENDIAN);\n\n    // XXHash3 constants for 8-byte hashing (XXH3_64_4to8 algorithm)\n    private static final long PRIME_MX2 = 0x9FB21C651E98DF25L;\n    private static final long SECRET_0 = 0x1cad21f72c81017cL;  // kSecret bytes 8-15 as LE long\n    private static final long SECRET_1 = 0xdb979083e96dd4deL;  // kSecret bytes 16-23 as LE long\n\n    private XxHash3Native() {}\n\n    // ========== Factory methods for streaming ==========\n\n    /**\n     * Creates a new streaming hasher for 64-bit hashes with no seed.\n     */\n    public static XxHash3Hasher newHasher()\n    {\n        return new Hasher64Impl();\n    }\n\n    /**\n     * Creates a new streaming hasher for 64-bit hashes with the specified seed.\n     */\n    public static XxHash3Hasher newHasher(long seed)\n    {\n        return new Hasher64Impl(seed);\n    }\n\n    /**\n     * Creates a new streaming hasher for 128-bit hashes with no seed.\n     */\n    public static XxHash3Hasher128 newHasher128()\n    {\n        return new Hasher128Impl();\n    }\n\n    /**\n     * Creates a new streaming hasher for 128-bit hashes with the specified seed.\n     */\n    public static XxHash3Hasher128 newHasher128(long seed)\n    {\n        return new Hasher128Impl(seed);\n    }\n\n    // ========== Static one-shot methods ==========\n\n    public static boolean isEnabled()\n    {\n        return XxHash3Bindings.isEnabled();\n    }\n\n    // 64-bit hash variants\n\n    public static long hash(long value)\n    {\n        return hash(value, 0);\n    }\n\n    public static long hash(long input, long seed)\n    {\n        // Pure Java implementation of XXH3_64_4to8 algorithm for exactly 8 bytes\n        int inputLo = (int) input;\n        int inputHi = (int) (input >>> 32);\n\n        long modifiedSeed = seed ^ ((Integer.reverseBytes((int) seed) & 0xFFFFFFFFL) << 32);\n        long combined = (inputHi & 0xFFFFFFFFL) | ((inputLo & 0xFFFFFFFFL) << 32);\n\n        long value = ((SECRET_0 ^ SECRET_1) - modifiedSeed) ^ combined;\n        value ^= Long.rotateLeft(value, 49) ^ Long.rotateLeft(value, 24);\n        value *= PRIME_MX2;\n        value ^= (value >>> 35) + 8;\n        value *= PRIME_MX2;\n        return value ^ (value >>> 28);\n    }\n\n    public static long hash(byte[] input)\n    {\n        return hash(input, 0, input.length);\n    }\n\n    public static long hash(byte[] input, int offset, int length)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        XxHash3Bindings.verifyEnabled();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return XxHash3Bindings.hash64(segment, length);\n    }\n\n    public static long hash(MemorySegment input)\n    {\n        XxHash3Bindings.verifyEnabled();\n        return XxHash3Bindings.hash64(input, input.byteSize());\n    }\n\n    public static long hash(byte[] input, long seed)\n    {\n        return hash(input, 0, input.length, seed);\n    }\n\n    public static long hash(byte[] input, int offset, int length, long seed)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        XxHash3Bindings.verifyEnabled();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return XxHash3Bindings.hash64(segment, length, seed);\n    }\n\n    public static long hash(MemorySegment input, long seed)\n    {\n        XxHash3Bindings.verifyEnabled();\n        return XxHash3Bindings.hash64(input, input.byteSize(), seed);\n    }\n\n    // 128-bit hash variants\n\n    public static XxHash128 hash128(byte[] input)\n    {\n        return hash128(input, 0, input.length);\n    }\n\n    public static XxHash128 hash128(byte[] input, int offset, int length)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        XxHash3Bindings.verifyEnabled();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return XxHash3Bindings.hash128(segment, length);\n    }\n\n    public static XxHash128 hash128(MemorySegment input)\n    {\n        XxHash3Bindings.verifyEnabled();\n        return XxHash3Bindings.hash128(input, input.byteSize());\n    }\n\n    public static XxHash128 hash128(byte[] input, long seed)\n    {\n        return hash128(input, 0, input.length, seed);\n    }\n\n    public static XxHash128 hash128(byte[] input, int offset, int length, long seed)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        XxHash3Bindings.verifyEnabled();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return XxHash3Bindings.hash128(segment, length, seed);\n    }\n\n    public static XxHash128 hash128(MemorySegment input, long seed)\n    {\n        XxHash3Bindings.verifyEnabled();\n        return XxHash3Bindings.hash128(input, input.byteSize(), seed);\n    }\n\n    // ========== Implementation classes ==========\n\n    /**\n     * 64-bit streaming hasher implementation.\n     */\n    private static final class Hasher64Impl\n            implements XxHash3Hasher\n    {\n        private final MemorySegment state;\n        private final Cleaner.Cleanable cleanable;\n        private final byte[] scratch = new byte[8];\n        private boolean closed;\n\n        Hasher64Impl()\n        {\n            XxHash3Bindings.verifyEnabled();\n\n            NativeResources resources = new NativeResources();\n            this.cleanable = CLEANER.register(this, resources);\n            Arena arena = resources.arena();\n\n            MemorySegment rawState = XxHash3Bindings.createState();\n            if (rawState.equals(MemorySegment.NULL)) {\n                cleanable.clean();\n                throw new IllegalStateException(\"Failed to create XXH3 state\");\n            }\n            this.state = rawState.reinterpret(arena, XxHash3Bindings::freeState);\n            XxHash3Bindings.reset64(state);\n        }\n\n        Hasher64Impl(long seed)\n        {\n            XxHash3Bindings.verifyEnabled();\n\n            NativeResources resources = new NativeResources();\n            this.cleanable = CLEANER.register(this, resources);\n            Arena arena = resources.arena();\n\n            MemorySegment rawState = XxHash3Bindings.createState();\n            if (rawState.equals(MemorySegment.NULL)) {\n                cleanable.clean();\n                throw new IllegalStateException(\"Failed to create XXH3 state\");\n            }\n            this.state = rawState.reinterpret(arena, XxHash3Bindings::freeState);\n            XxHash3Bindings.reset64(state, seed);\n        }\n\n        @Override\n        public XxHash3Hasher update(byte[] input)\n        {\n            return update(input, 0, input.length);\n        }\n\n        @Override\n        public XxHash3Hasher update(byte[] input, int offset, int length)\n        {\n            checkFromIndexSize(offset, length, input.length);\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n            XxHash3Bindings.update64(state, segment, length);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher update(MemorySegment input)\n        {\n            checkNotClosed();\n            XxHash3Bindings.update64(state, input, input.byteSize());\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher updateLE(long value)\n        {\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(scratch);\n            segment.set(JAVA_LONG_LE_UNALIGNED, 0, value);\n            XxHash3Bindings.update64(state, segment, 8);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher updateLE(int value)\n        {\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(scratch);\n            segment.set(JAVA_INT_LE_UNALIGNED, 0, value);\n            XxHash3Bindings.update64(state, segment, 4);\n            return this;\n        }\n\n        @Override\n        public long digest()\n        {\n            checkNotClosed();\n            return XxHash3Bindings.digest64(state);\n        }\n\n        @Override\n        public XxHash3Hasher reset()\n        {\n            checkNotClosed();\n            XxHash3Bindings.reset64(state);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher reset(long seed)\n        {\n            checkNotClosed();\n            XxHash3Bindings.reset64(state, seed);\n            return this;\n        }\n\n        private void checkNotClosed()\n        {\n            if (closed) {\n                throw new IllegalStateException(\"Hasher has been closed\");\n            }\n        }\n\n        @Override\n        public void close()\n        {\n            if (!closed) {\n                closed = true;\n                cleanable.clean();\n            }\n        }\n    }\n\n    /**\n     * 128-bit streaming hasher implementation.\n     */\n    private static final class Hasher128Impl\n            implements XxHash3Hasher128\n    {\n        private final MemorySegment state;\n        private final Cleaner.Cleanable cleanable;\n        private final byte[] scratch = new byte[8];\n        private boolean closed;\n\n        Hasher128Impl()\n        {\n            XxHash3Bindings.verifyEnabled();\n\n            NativeResources resources = new NativeResources();\n            this.cleanable = CLEANER.register(this, resources);\n            Arena arena = resources.arena();\n\n            MemorySegment rawState = XxHash3Bindings.createState();\n            if (rawState.equals(MemorySegment.NULL)) {\n                cleanable.clean();\n                throw new IllegalStateException(\"Failed to create XXH3 state\");\n            }\n            this.state = rawState.reinterpret(arena, XxHash3Bindings::freeState);\n            XxHash3Bindings.reset128(state);\n        }\n\n        Hasher128Impl(long seed)\n        {\n            XxHash3Bindings.verifyEnabled();\n\n            NativeResources resources = new NativeResources();\n            this.cleanable = CLEANER.register(this, resources);\n            Arena arena = resources.arena();\n\n            MemorySegment rawState = XxHash3Bindings.createState();\n            if (rawState.equals(MemorySegment.NULL)) {\n                cleanable.clean();\n                throw new IllegalStateException(\"Failed to create XXH3 state\");\n            }\n            this.state = rawState.reinterpret(arena, XxHash3Bindings::freeState);\n            XxHash3Bindings.reset128(state, seed);\n        }\n\n        @Override\n        public XxHash3Hasher128 update(byte[] input)\n        {\n            return update(input, 0, input.length);\n        }\n\n        @Override\n        public XxHash3Hasher128 update(byte[] input, int offset, int length)\n        {\n            checkFromIndexSize(offset, length, input.length);\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n            XxHash3Bindings.update128(state, segment, length);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher128 update(MemorySegment input)\n        {\n            checkNotClosed();\n            XxHash3Bindings.update128(state, input, input.byteSize());\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher128 updateLE(long value)\n        {\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(scratch);\n            segment.set(JAVA_LONG_LE_UNALIGNED, 0, value);\n            XxHash3Bindings.update128(state, segment, 8);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher128 updateLE(int value)\n        {\n            checkNotClosed();\n            MemorySegment segment = MemorySegment.ofArray(scratch);\n            segment.set(JAVA_INT_LE_UNALIGNED, 0, value);\n            XxHash3Bindings.update128(state, segment, 4);\n            return this;\n        }\n\n        @Override\n        public XxHash128 digest()\n        {\n            checkNotClosed();\n            return XxHash3Bindings.digest128(state);\n        }\n\n        @Override\n        public XxHash3Hasher128 reset()\n        {\n            checkNotClosed();\n            XxHash3Bindings.reset128(state);\n            return this;\n        }\n\n        @Override\n        public XxHash3Hasher128 reset(long seed)\n        {\n            checkNotClosed();\n            XxHash3Bindings.reset128(state, seed);\n            return this;\n        }\n\n        private void checkNotClosed()\n        {\n            if (closed) {\n                throw new IllegalStateException(\"Hasher has been closed\");\n            }\n        }\n\n        @Override\n        public void close()\n        {\n            if (!closed) {\n                closed = true;\n                cleanable.clean();\n            }\n        }\n    }\n\n    /**\n     * Holds native resources that must be freed.\n     * Implements Runnable so it can be used with Cleaner.\n     */\n    private record NativeResources(Arena arena)\n            implements Runnable\n    {\n        NativeResources()\n        {\n            this(Arena.ofShared());\n        }\n\n        @Override\n        public void run()\n        {\n            arena.close();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash64Bindings.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport io.airlift.compress.v3.internal.NativeLoader;\nimport io.airlift.compress.v3.internal.NativeLoader.Symbols;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.invoke.MethodHandle;\nimport java.util.Optional;\n\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class XxHash64Bindings\n{\n    private XxHash64Bindings() {}\n\n    private record MethodHandles(\n            // One-shot hash\n            @NativeSignature(name = \"XXH64\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class, long.class})\n            MethodHandle hash,\n            // State management\n            @NativeSignature(name = \"XXH64_createState\", returnType = MemorySegment.class, argumentTypes = {})\n            MethodHandle createState,\n            @NativeSignature(name = \"XXH64_freeState\", returnType = int.class, argumentTypes = MemorySegment.class)\n            MethodHandle freeState,\n            // Streaming\n            @NativeSignature(name = \"XXH64_reset\", returnType = int.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle reset,\n            @NativeSignature(name = \"XXH64_update\", returnType = int.class, argumentTypes = {MemorySegment.class, MemorySegment.class, long.class})\n            MethodHandle update,\n            @NativeSignature(name = \"XXH64_digest\", returnType = long.class, argumentTypes = MemorySegment.class)\n            MethodHandle digest) {}\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n\n    private static final MethodHandle HASH_METHOD;\n    private static final MethodHandle CREATE_STATE_METHOD;\n    private static final MethodHandle FREE_STATE_METHOD;\n    private static final MethodHandle RESET_METHOD;\n    private static final MethodHandle UPDATE_METHOD;\n    private static final MethodHandle DIGEST_METHOD;\n\n    static {\n        Symbols<MethodHandles> symbols = NativeLoader.loadSymbols(\"xxhash\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n\n        HASH_METHOD = methodHandles.hash();\n        CREATE_STATE_METHOD = methodHandles.createState();\n        FREE_STATE_METHOD = methodHandles.freeState();\n        RESET_METHOD = methodHandles.reset();\n        UPDATE_METHOD = methodHandles.update();\n        DIGEST_METHOD = methodHandles.digest();\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"XxHash64 native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    public static long hash(MemorySegment input, long length, long seed)\n    {\n        try {\n            return (long) HASH_METHOD.invokeExact(input, length, seed);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static MemorySegment createState()\n    {\n        try {\n            return (MemorySegment) CREATE_STATE_METHOD.invokeExact();\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void freeState(MemorySegment state)\n    {\n        try {\n            int result = (int) FREE_STATE_METHOD.invokeExact(state);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH64_freeState failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void reset(MemorySegment state, long seed)\n    {\n        try {\n            int result = (int) RESET_METHOD.invokeExact(state, seed);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH64_reset failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static void update(MemorySegment state, MemorySegment input, long length)\n    {\n        try {\n            int result = (int) UPDATE_METHOD.invokeExact(state, input, length);\n            if (result != 0) {\n                throw new IllegalStateException(\"XXH64_update failed: \" + result);\n            }\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n\n    public static long digest(MemorySegment state)\n    {\n        try {\n            return (long) DIGEST_METHOD.invokeExact(state);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash64Hasher.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.MemorySegment;\n\n/**\n * XXHash64 hash function with support for both one-shot and streaming hashing.\n * <p>\n * For one-shot hashing, use the static methods:\n * <pre>\n * long hash = XxHash64Hasher.hash(data);\n * long hash = XxHash64Hasher.hash(data, seed);\n * </pre>\n * <p>\n * For streaming (incremental) hashing, use the factory methods:\n * <pre>\n * try (XxHash64Hasher hasher = XxHash64Hasher.create()) {\n *     hasher.update(chunk1);\n *     hasher.update(chunk2);\n *     long hash = hasher.digest();\n * }\n * </pre>\n */\npublic sealed interface XxHash64Hasher\n        extends AutoCloseable\n        permits XxHash64JavaHasher, XxHash64NativeHasher\n{\n    long DEFAULT_SEED = 0;\n\n    // ========== Static one-shot methods ==========\n\n    static long hash(long value)\n    {\n        return hash(value, DEFAULT_SEED);\n    }\n\n    static long hash(long value, long seed)\n    {\n        // always call the Java version, for this simple case\n        return XxHash64JavaHasher.hash(value, seed);\n    }\n\n    static long hash(byte[] input)\n    {\n        return hash(input, 0, input.length, DEFAULT_SEED);\n    }\n\n    static long hash(byte[] input, int offset, int length)\n    {\n        return hash(input, offset, length, DEFAULT_SEED);\n    }\n\n    static long hash(byte[] input, long seed)\n    {\n        return hash(input, 0, input.length, seed);\n    }\n\n    static long hash(byte[] input, int offset, int length, long seed)\n    {\n        if (XxHash64NativeHasher.isEnabled()) {\n            return XxHash64NativeHasher.hash(input, offset, length, seed);\n        }\n        return XxHash64JavaHasher.hash(input, offset, length, seed);\n    }\n\n    static long hash(MemorySegment input)\n    {\n        return hash(input, DEFAULT_SEED);\n    }\n\n    static long hash(MemorySegment input, long seed)\n    {\n        if (XxHash64NativeHasher.isEnabled()) {\n            return XxHash64NativeHasher.hash(input, seed);\n        }\n        return XxHash64JavaHasher.hash(input, seed);\n    }\n\n    // ========== Factory methods for streaming ==========\n\n    static XxHash64Hasher create()\n    {\n        return create(DEFAULT_SEED);\n    }\n\n    static XxHash64Hasher create(long seed)\n    {\n        if (XxHash64NativeHasher.isEnabled()) {\n            return new XxHash64NativeHasher(seed);\n        }\n        return new XxHash64JavaHasher(seed);\n    }\n\n    // ========== Instance methods for streaming ==========\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher update(byte[] input);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher update(byte[] input, int offset, int length);\n\n    /**\n     * Updates the hash state with the given input data.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher update(MemorySegment input);\n\n    /**\n     * Updates the hash state with the given long value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher updateLE(long value);\n\n    /**\n     * Updates the hash state with the given int value in little-endian byte order.\n     * This is useful for hashing length-prefixed data without manual byte conversion.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher updateLE(int value);\n\n    /**\n     * Computes and returns the 64-bit hash of all data passed to update().\n     * The state is not modified, so you can continue to call update() and digest().\n     */\n    long digest();\n\n    /**\n     * Resets the hasher to its initial state with the default seed.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher reset();\n\n    /**\n     * Resets the hasher with the given seed.\n     *\n     * @return this hasher for fluent chaining\n     */\n    XxHash64Hasher reset(long seed);\n\n    /**\n     * Closes this hasher and releases any resources.\n     */\n    @Override\n    void close();\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash64JavaHasher.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.ValueLayout;\nimport java.lang.invoke.MethodHandles;\nimport java.lang.invoke.VarHandle;\nimport java.nio.ByteOrder;\n\nimport static java.lang.Long.rotateLeft;\nimport static java.lang.Math.min;\nimport static java.util.Objects.checkFromIndexSize;\n\npublic final class XxHash64JavaHasher\n        implements XxHash64Hasher\n{\n    private static final long PRIME64_1 = 0x9E3779B185EBCA87L;\n    private static final long PRIME64_2 = 0xC2B2AE3D27D4EB4FL;\n    private static final long PRIME64_3 = 0x165667B19E3779F9L;\n    private static final long PRIME64_4 = 0x85EBCA77C2b2AE63L;\n    private static final long PRIME64_5 = 0x27D4EB2F165667C5L;\n\n    private static final VarHandle LONG_HANDLE = MethodHandles.byteArrayViewVarHandle(long[].class, ByteOrder.LITTLE_ENDIAN);\n    private static final VarHandle INT_HANDLE = MethodHandles.byteArrayViewVarHandle(int[].class, ByteOrder.LITTLE_ENDIAN);\n\n    private final byte[] buffer = new byte[32];\n    private int bufferSize;\n\n    private long bodyLength;\n\n    private long v1;\n    private long v2;\n    private long v3;\n    private long v4;\n\n    private long seed;\n\n    public XxHash64JavaHasher(long seed)\n    {\n        this.seed = seed;\n        resetState(seed);\n    }\n\n    private void resetState(long seed)\n    {\n        this.v1 = seed + PRIME64_1 + PRIME64_2;\n        this.v2 = seed + PRIME64_2;\n        this.v3 = seed;\n        this.v4 = seed - PRIME64_1;\n        this.bufferSize = 0;\n        this.bodyLength = 0;\n    }\n\n    public static long hash(long value, long seed)\n    {\n        long hash = seed + PRIME64_5 + Long.BYTES;\n        hash = updateTail(hash, value);\n        return finalShuffle(hash);\n    }\n\n    public static long hash(byte[] input, int offset, int length, long seed)\n    {\n        checkFromIndexSize(offset, length, input.length);\n\n        long hash;\n        int index = offset;\n        int end = offset + length;\n\n        if (length >= 32) {\n            long v1 = seed + PRIME64_1 + PRIME64_2;\n            long v2 = seed + PRIME64_2;\n            long v3 = seed;\n            long v4 = seed - PRIME64_1;\n\n            while (index <= end - 32) {\n                v1 = mix(v1, (long) LONG_HANDLE.get(input, index));\n                v2 = mix(v2, (long) LONG_HANDLE.get(input, index + 8));\n                v3 = mix(v3, (long) LONG_HANDLE.get(input, index + 16));\n                v4 = mix(v4, (long) LONG_HANDLE.get(input, index + 24));\n                index += 32;\n            }\n\n            hash = rotateLeft(v1, 1) + rotateLeft(v2, 7) + rotateLeft(v3, 12) + rotateLeft(v4, 18);\n            hash = update(hash, v1);\n            hash = update(hash, v2);\n            hash = update(hash, v3);\n            hash = update(hash, v4);\n        }\n        else {\n            hash = seed + PRIME64_5;\n        }\n\n        hash += length;\n\n        // Process remaining bytes\n        while (index <= end - 8) {\n            hash = updateTail(hash, (long) LONG_HANDLE.get(input, index));\n            index += 8;\n        }\n\n        if (index <= end - 4) {\n            hash = updateTail(hash, (int) INT_HANDLE.get(input, index));\n            index += 4;\n        }\n\n        while (index < end) {\n            hash = updateTail(hash, input[index]);\n            index++;\n        }\n\n        return finalShuffle(hash);\n    }\n\n    public static long hash(MemorySegment input, long seed)\n    {\n        // For heap segments backed by byte arrays, extract and use direct array access\n        if (input.isNative()) {\n            return hashSegment(input, seed);\n        }\n\n        // Try to get the backing array for better performance\n        byte[] array = input.heapBase()\n                .filter(base -> base instanceof byte[])\n                .map(base -> (byte[]) base)\n                .orElse(null);\n\n        if (array != null) {\n            // Calculate offset into the array\n            // heapBase gives us the array, address gives us offset from array start\n            long arrayOffset = input.address();\n            return hash(array, (int) arrayOffset, (int) input.byteSize(), seed);\n        }\n\n        return hashSegment(input, seed);\n    }\n\n    private static long hashSegment(MemorySegment input, long seed)\n    {\n        long length = input.byteSize();\n        long hash;\n        long index = 0;\n\n        if (length >= 32) {\n            long v1 = seed + PRIME64_1 + PRIME64_2;\n            long v2 = seed + PRIME64_2;\n            long v3 = seed;\n            long v4 = seed - PRIME64_1;\n\n            while (index <= length - 32) {\n                v1 = mix(v1, input.get(ValueLayout.JAVA_LONG_UNALIGNED, index));\n                v2 = mix(v2, input.get(ValueLayout.JAVA_LONG_UNALIGNED, index + 8));\n                v3 = mix(v3, input.get(ValueLayout.JAVA_LONG_UNALIGNED, index + 16));\n                v4 = mix(v4, input.get(ValueLayout.JAVA_LONG_UNALIGNED, index + 24));\n                index += 32;\n            }\n\n            hash = rotateLeft(v1, 1) + rotateLeft(v2, 7) + rotateLeft(v3, 12) + rotateLeft(v4, 18);\n            hash = update(hash, v1);\n            hash = update(hash, v2);\n            hash = update(hash, v3);\n            hash = update(hash, v4);\n        }\n        else {\n            hash = seed + PRIME64_5;\n        }\n\n        hash += length;\n\n        while (index <= length - 8) {\n            hash = updateTail(hash, input.get(ValueLayout.JAVA_LONG_UNALIGNED, index));\n            index += 8;\n        }\n\n        if (index <= length - 4) {\n            hash = updateTail(hash, input.get(ValueLayout.JAVA_INT_UNALIGNED, index));\n            index += 4;\n        }\n\n        while (index < length) {\n            hash = updateTail(hash, input.get(ValueLayout.JAVA_BYTE, index));\n            index++;\n        }\n\n        return finalShuffle(hash);\n    }\n\n    @Override\n    public XxHash64Hasher update(byte[] input)\n    {\n        return update(input, 0, input.length);\n    }\n\n    @Override\n    public XxHash64Hasher update(byte[] input, int offset, int length)\n    {\n        checkFromIndexSize(offset, length, input.length);\n\n        int index = offset;\n        int remaining = length;\n\n        // Fill buffer if partially filled\n        if (bufferSize > 0) {\n            int available = min(32 - bufferSize, remaining);\n            System.arraycopy(input, index, buffer, bufferSize, available);\n\n            bufferSize += available;\n            index += available;\n            remaining -= available;\n\n            if (bufferSize == 32) {\n                updateBodyFromBuffer();\n                bufferSize = 0;\n            }\n        }\n\n        // Process full 32-byte blocks directly from input\n        while (remaining >= 32) {\n            v1 = mix(v1, (long) LONG_HANDLE.get(input, index));\n            v2 = mix(v2, (long) LONG_HANDLE.get(input, index + 8));\n            v3 = mix(v3, (long) LONG_HANDLE.get(input, index + 16));\n            v4 = mix(v4, (long) LONG_HANDLE.get(input, index + 24));\n\n            index += 32;\n            remaining -= 32;\n            bodyLength += 32;\n        }\n\n        // Buffer remaining bytes\n        if (remaining > 0) {\n            System.arraycopy(input, index, buffer, bufferSize, remaining);\n            bufferSize += remaining;\n        }\n\n        return this;\n    }\n\n    @Override\n    public XxHash64Hasher update(MemorySegment input)\n    {\n        // For heap segments backed by byte arrays, use direct array access\n        byte[] array = input.heapBase()\n                .filter(base -> base instanceof byte[])\n                .map(base -> (byte[]) base)\n                .orElse(null);\n\n        if (array != null) {\n            long arrayOffset = input.address();\n            return update(array, (int) arrayOffset, (int) input.byteSize());\n        }\n\n        // Fall back to MemorySegment access for native memory\n        return updateSegment(input);\n    }\n\n    private XxHash64Hasher updateSegment(MemorySegment input)\n    {\n        long length = input.byteSize();\n        long inputOffset = 0;\n\n        if (bufferSize > 0) {\n            int available = (int) min(32 - bufferSize, length);\n            for (int i = 0; i < available; i++) {\n                buffer[bufferSize + i] = input.get(ValueLayout.JAVA_BYTE, inputOffset + i);\n            }\n\n            bufferSize += available;\n            inputOffset += available;\n            length -= available;\n\n            if (bufferSize == 32) {\n                updateBodyFromBuffer();\n                bufferSize = 0;\n            }\n        }\n\n        while (length >= 32) {\n            v1 = mix(v1, input.get(ValueLayout.JAVA_LONG_UNALIGNED, inputOffset));\n            v2 = mix(v2, input.get(ValueLayout.JAVA_LONG_UNALIGNED, inputOffset + 8));\n            v3 = mix(v3, input.get(ValueLayout.JAVA_LONG_UNALIGNED, inputOffset + 16));\n            v4 = mix(v4, input.get(ValueLayout.JAVA_LONG_UNALIGNED, inputOffset + 24));\n\n            inputOffset += 32;\n            length -= 32;\n            bodyLength += 32;\n        }\n\n        if (length > 0) {\n            for (int i = 0; i < length; i++) {\n                buffer[bufferSize + i] = input.get(ValueLayout.JAVA_BYTE, inputOffset + i);\n            }\n            bufferSize += (int) length;\n        }\n\n        return this;\n    }\n\n    @Override\n    public XxHash64Hasher updateLE(long value)\n    {\n        byte[] bytes = new byte[8];\n        LONG_HANDLE.set(bytes, 0, value);\n        return update(bytes);\n    }\n\n    @Override\n    public XxHash64Hasher updateLE(int value)\n    {\n        byte[] bytes = new byte[4];\n        INT_HANDLE.set(bytes, 0, value);\n        return update(bytes);\n    }\n\n    private void updateBodyFromBuffer()\n    {\n        v1 = mix(v1, (long) LONG_HANDLE.get(buffer, 0));\n        v2 = mix(v2, (long) LONG_HANDLE.get(buffer, 8));\n        v3 = mix(v3, (long) LONG_HANDLE.get(buffer, 16));\n        v4 = mix(v4, (long) LONG_HANDLE.get(buffer, 24));\n        bodyLength += 32;\n    }\n\n    @Override\n    public long digest()\n    {\n        long hash;\n        if (bodyLength > 0) {\n            hash = computeBody();\n        }\n        else {\n            hash = seed + PRIME64_5;\n        }\n\n        hash += bodyLength + bufferSize;\n\n        // Process remaining bytes in buffer\n        int index = 0;\n        while (index <= bufferSize - 8) {\n            hash = updateTail(hash, (long) LONG_HANDLE.get(buffer, index));\n            index += 8;\n        }\n\n        if (index <= bufferSize - 4) {\n            hash = updateTail(hash, (int) INT_HANDLE.get(buffer, index));\n            index += 4;\n        }\n\n        while (index < bufferSize) {\n            hash = updateTail(hash, buffer[index]);\n            index++;\n        }\n\n        return finalShuffle(hash);\n    }\n\n    private long computeBody()\n    {\n        long hash = rotateLeft(v1, 1) + rotateLeft(v2, 7) + rotateLeft(v3, 12) + rotateLeft(v4, 18);\n\n        hash = update(hash, v1);\n        hash = update(hash, v2);\n        hash = update(hash, v3);\n        hash = update(hash, v4);\n\n        return hash;\n    }\n\n    @Override\n    public XxHash64Hasher reset()\n    {\n        return reset(DEFAULT_SEED);\n    }\n\n    @Override\n    public XxHash64Hasher reset(long seed)\n    {\n        this.seed = seed;\n        resetState(seed);\n        return this;\n    }\n\n    @Override\n    public void close() {}\n\n    private static long mix(long current, long value)\n    {\n        return rotateLeft(current + value * PRIME64_2, 31) * PRIME64_1;\n    }\n\n    private static long update(long hash, long value)\n    {\n        long temp = hash ^ mix(0, value);\n        return temp * PRIME64_1 + PRIME64_4;\n    }\n\n    private static long updateTail(long hash, long value)\n    {\n        long temp = hash ^ mix(0, value);\n        return rotateLeft(temp, 27) * PRIME64_1 + PRIME64_4;\n    }\n\n    private static long updateTail(long hash, int value)\n    {\n        long unsigned = value & 0xFFFF_FFFFL;\n        long temp = hash ^ (unsigned * PRIME64_1);\n        return rotateLeft(temp, 23) * PRIME64_2 + PRIME64_3;\n    }\n\n    private static long updateTail(long hash, byte value)\n    {\n        int unsigned = value & 0xFF;\n        long temp = hash ^ (unsigned * PRIME64_5);\n        return rotateLeft(temp, 11) * PRIME64_1;\n    }\n\n    private static long finalShuffle(long hash)\n    {\n        hash ^= hash >>> 33;\n        hash *= PRIME64_2;\n        hash ^= hash >>> 29;\n        hash *= PRIME64_3;\n        hash ^= hash >>> 32;\n        return hash;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/xxhash/XxHash64NativeHasher.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.lang.foreign.ValueLayout;\nimport java.lang.ref.Cleaner;\nimport java.nio.ByteOrder;\n\nimport static java.util.Objects.checkFromIndexSize;\n\npublic final class XxHash64NativeHasher\n        implements XxHash64Hasher\n{\n    private static final Cleaner CLEANER = Cleaner.create();\n    private static final ValueLayout.OfLong JAVA_LONG_LE_UNALIGNED = ValueLayout.JAVA_LONG_UNALIGNED.withOrder(ByteOrder.LITTLE_ENDIAN);\n    private static final ValueLayout.OfInt JAVA_INT_LE_UNALIGNED = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.LITTLE_ENDIAN);\n\n    private final MemorySegment state;\n    private final Cleaner.Cleanable cleanable;\n    private final byte[] scratch = new byte[8];\n    private boolean closed;\n\n    public XxHash64NativeHasher(long seed)\n    {\n        XxHash64Bindings.verifyEnabled();\n\n        NativeResources resources = new NativeResources();\n        this.cleanable = CLEANER.register(this, resources);\n        Arena arena = resources.arena();\n\n        MemorySegment rawState = XxHash64Bindings.createState();\n        if (rawState.equals(MemorySegment.NULL)) {\n            cleanable.clean();\n            throw new IllegalStateException(\"Failed to create XXH64 state\");\n        }\n        this.state = rawState.reinterpret(arena, XxHash64Bindings::freeState);\n        XxHash64Bindings.reset(state, seed);\n    }\n\n    // ========== Static methods ==========\n\n    public static boolean isEnabled()\n    {\n        return XxHash64Bindings.isEnabled();\n    }\n\n    public static long hash(byte[] input, int offset, int length, long seed)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        XxHash64Bindings.verifyEnabled();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return XxHash64Bindings.hash(segment, length, seed);\n    }\n\n    public static long hash(MemorySegment input, long seed)\n    {\n        XxHash64Bindings.verifyEnabled();\n        return XxHash64Bindings.hash(input, input.byteSize(), seed);\n    }\n\n    // ========== Instance streaming methods ==========\n\n    @Override\n    public XxHash64Hasher update(byte[] input)\n    {\n        return update(input, 0, input.length);\n    }\n\n    @Override\n    public XxHash64Hasher update(byte[] input, int offset, int length)\n    {\n        checkFromIndexSize(offset, length, input.length);\n        checkNotClosed();\n        MemorySegment segment = MemorySegment.ofArray(input).asSlice(offset, length);\n        XxHash64Bindings.update(state, segment, length);\n        return this;\n    }\n\n    @Override\n    public XxHash64Hasher update(MemorySegment input)\n    {\n        checkNotClosed();\n        XxHash64Bindings.update(state, input, input.byteSize());\n        return this;\n    }\n\n    @Override\n    public XxHash64Hasher updateLE(long value)\n    {\n        checkNotClosed();\n        MemorySegment segment = MemorySegment.ofArray(scratch);\n        segment.set(JAVA_LONG_LE_UNALIGNED, 0, value);\n        XxHash64Bindings.update(state, segment, 8);\n        return this;\n    }\n\n    @Override\n    public XxHash64Hasher updateLE(int value)\n    {\n        checkNotClosed();\n        MemorySegment segment = MemorySegment.ofArray(scratch);\n        segment.set(JAVA_INT_LE_UNALIGNED, 0, value);\n        XxHash64Bindings.update(state, segment, 4);\n        return this;\n    }\n\n    @Override\n    public long digest()\n    {\n        checkNotClosed();\n        return XxHash64Bindings.digest(state);\n    }\n\n    @Override\n    public XxHash64Hasher reset()\n    {\n        return reset(DEFAULT_SEED);\n    }\n\n    @Override\n    public XxHash64Hasher reset(long seed)\n    {\n        checkNotClosed();\n        XxHash64Bindings.reset(state, seed);\n        return this;\n    }\n\n    private void checkNotClosed()\n    {\n        if (closed) {\n            throw new IllegalStateException(\"Hasher has been closed\");\n        }\n    }\n\n    @Override\n    public void close()\n    {\n        if (!closed) {\n            closed = true;\n            cleanable.clean();\n        }\n    }\n\n    /**\n     * Holds native resources that must be freed.\n     * Implements Runnable so it can be used with Cleaner.\n     */\n    private record NativeResources(Arena arena)\n            implements Runnable\n    {\n        NativeResources()\n        {\n            this(Arena.ofShared());\n        }\n\n        @Override\n        public void run()\n        {\n            arena.close();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/BitInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.highestBit;\nimport static io.airlift.compress.v3.zstd.Util.verify;\n\n/**\n * Bit streams are encoded as a byte-aligned little-endian stream. Thus, bits are laid out\n * in the following manner, and the stream is read from right to left.\n * <p>\n * <p>\n * ... [16 17 18 19 20 21 22 23] [8 9 10 11 12 13 14 15] [0 1 2 3 4 5 6 7]\n */\nfinal class BitInputStream\n{\n    private BitInputStream()\n    {\n    }\n\n    public static boolean isEndOfStream(long startAddress, long currentAddress, int bitsConsumed)\n    {\n        return startAddress == currentAddress && bitsConsumed == Long.SIZE;\n    }\n\n    private static long readTail(Object inputBase, long inputAddress, int inputSize)\n    {\n        long bits = UNSAFE.getByte(inputBase, inputAddress) & 0xFF;\n\n        switch (inputSize) {\n            case 7:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 6) & 0xFFL) << 48;\n            case 6:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 5) & 0xFFL) << 40;\n            case 5:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 4) & 0xFFL) << 32;\n            case 4:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 3) & 0xFFL) << 24;\n            case 3:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 2) & 0xFFL) << 16;\n            case 2:\n                bits |= (UNSAFE.getByte(inputBase, inputAddress + 1) & 0xFFL) << 8;\n        }\n\n        return bits;\n    }\n\n    /**\n     * @return numberOfBits in the low-order bits of a long\n     */\n    public static long peekBits(int bitsConsumed, long bitContainer, int numberOfBits)\n    {\n        return (((bitContainer << bitsConsumed) >>> 1) >>> (63 - numberOfBits));\n    }\n\n    /**\n     * numberOfBits must be > 0\n     *\n     * @return numberOfBits in the low-order bits of a long\n     */\n    public static long peekBitsFast(int bitsConsumed, long bitContainer, int numberOfBits)\n    {\n        return ((bitContainer << bitsConsumed) >>> (64 - numberOfBits));\n    }\n\n    static class Initializer\n    {\n        private final Object inputBase;\n        private final long startAddress;\n        private final long endAddress;\n        private long bits;\n        private long currentAddress;\n        private int bitsConsumed;\n\n        public Initializer(Object inputBase, long startAddress, long endAddress)\n        {\n            this.inputBase = inputBase;\n            this.startAddress = startAddress;\n            this.endAddress = endAddress;\n        }\n\n        public long getBits()\n        {\n            return bits;\n        }\n\n        public long getCurrentAddress()\n        {\n            return currentAddress;\n        }\n\n        public int getBitsConsumed()\n        {\n            return bitsConsumed;\n        }\n\n        public void initialize()\n        {\n            verify(endAddress - startAddress >= 1, startAddress, \"Bitstream is empty\");\n\n            int lastByte = UNSAFE.getByte(inputBase, endAddress - 1) & 0xFF;\n            verify(lastByte != 0, endAddress, \"Bitstream end mark not present\");\n\n            bitsConsumed = SIZE_OF_LONG - highestBit(lastByte);\n\n            int inputSize = (int) (endAddress - startAddress);\n            if (inputSize >= SIZE_OF_LONG) {  /* normal case */\n                currentAddress = endAddress - SIZE_OF_LONG;\n                bits = UNSAFE.getLong(inputBase, currentAddress);\n            }\n            else {\n                currentAddress = startAddress;\n                bits = readTail(inputBase, startAddress, inputSize);\n\n                bitsConsumed += (SIZE_OF_LONG - inputSize) * 8;\n            }\n        }\n    }\n\n    static final class Loader\n    {\n        private final Object inputBase;\n        private final long startAddress;\n        private long bits;\n        private long currentAddress;\n        private int bitsConsumed;\n        private boolean overflow;\n\n        public Loader(Object inputBase, long startAddress, long currentAddress, long bits, int bitsConsumed)\n        {\n            this.inputBase = inputBase;\n            this.startAddress = startAddress;\n            this.bits = bits;\n            this.currentAddress = currentAddress;\n            this.bitsConsumed = bitsConsumed;\n        }\n\n        public long getBits()\n        {\n            return bits;\n        }\n\n        public long getCurrentAddress()\n        {\n            return currentAddress;\n        }\n\n        public int getBitsConsumed()\n        {\n            return bitsConsumed;\n        }\n\n        public boolean isOverflow()\n        {\n            return overflow;\n        }\n\n        public boolean load()\n        {\n            if (bitsConsumed > 64) {\n                overflow = true;\n                return true;\n            }\n\n            else if (currentAddress == startAddress) {\n                return true;\n            }\n\n            int bytes = bitsConsumed >>> 3; // divide by 8\n            if (currentAddress >= startAddress + SIZE_OF_LONG) {\n                if (bytes > 0) {\n                    currentAddress -= bytes;\n                    bits = UNSAFE.getLong(inputBase, currentAddress);\n                }\n                bitsConsumed &= 0b111;\n            }\n            else if (currentAddress - bytes < startAddress) {\n                bytes = (int) (currentAddress - startAddress);\n                currentAddress = startAddress;\n                bitsConsumed -= bytes * SIZE_OF_LONG;\n                bits = UNSAFE.getLong(inputBase, startAddress);\n                return true;\n            }\n            else {\n                currentAddress -= bytes;\n                bitsConsumed -= bytes * SIZE_OF_LONG;\n                bits = UNSAFE.getLong(inputBase, currentAddress);\n            }\n\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/BitOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\n\nclass BitOutputStream\n{\n    private static final long[] BIT_MASK = {\n            0x0, 0x1, 0x3, 0x7, 0xF, 0x1F,\n            0x3F, 0x7F, 0xFF, 0x1FF, 0x3FF, 0x7FF,\n            0xFFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF, 0x1FFFF,\n            0x3FFFF, 0x7FFFF, 0xFFFFF, 0x1FFFFF, 0x3FFFFF, 0x7FFFFF,\n            0xFFFFFF, 0x1FFFFFF, 0x3FFFFFF, 0x7FFFFFF, 0xFFFFFFF, 0x1FFFFFFF,\n            0x3FFFFFFF, 0x7FFFFFFF}; // up to 31 bits\n\n    private final Object outputBase;\n    private final long outputAddress;\n    private final long outputLimit;\n\n    private long container;\n    private int bitCount;\n    private long currentAddress;\n\n    public BitOutputStream(Object outputBase, long outputAddress, int outputSize)\n    {\n        checkArgument(outputSize >= SIZE_OF_LONG, \"Output buffer too small\");\n\n        this.outputBase = outputBase;\n        this.outputAddress = outputAddress;\n        outputLimit = this.outputAddress + outputSize - SIZE_OF_LONG;\n\n        currentAddress = this.outputAddress;\n    }\n\n    public void addBits(int value, int bits)\n    {\n        container |= (value & BIT_MASK[bits]) << bitCount;\n        bitCount += bits;\n    }\n\n    /**\n     * Note: leading bits of value must be 0\n     */\n    public void addBitsFast(int value, int bits)\n    {\n        container |= ((long) value) << bitCount;\n        bitCount += bits;\n    }\n\n    public void flush()\n    {\n        int bytes = bitCount >>> 3;\n\n        UNSAFE.putLong(outputBase, currentAddress, container);\n        currentAddress += bytes;\n\n        if (currentAddress > outputLimit) {\n            currentAddress = outputLimit;\n        }\n\n        bitCount &= 7;\n        container >>>= bytes * 8;\n    }\n\n    public int close()\n    {\n        addBitsFast(1, 1); // end mark\n        flush();\n\n        if (currentAddress >= outputLimit) {\n            return 0;\n        }\n\n        return (int) ((currentAddress - outputAddress) + (bitCount > 0 ? 1 : 0));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/BlockCompressionState.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nclass BlockCompressionState\n{\n    public final int[] hashTable;\n    public final int[] chainTable;\n\n    private final long baseAddress;\n\n    // starting point of the window with respect to baseAddress\n    private int windowBaseOffset;\n\n    public BlockCompressionState(CompressionParameters parameters, long baseAddress)\n    {\n        this.baseAddress = baseAddress;\n        hashTable = new int[1 << parameters.getHashLog()];\n        chainTable = new int[1 << parameters.getChainLog()]; // TODO: chain table not used by Strategy.FAST\n    }\n\n    public void slideWindow(int slideWindowSize)\n    {\n        for (int i = 0; i < hashTable.length; i++) {\n            int newValue = hashTable[i] - slideWindowSize;\n            // if new value is negative, set it to zero branchless\n            newValue = newValue & (~(newValue >> 31));\n            hashTable[i] = newValue;\n        }\n        for (int i = 0; i < chainTable.length; i++) {\n            int newValue = chainTable[i] - slideWindowSize;\n            // if new value is negative, set it to zero branchless\n            newValue = newValue & (~(newValue >> 31));\n            chainTable[i] = newValue;\n        }\n    }\n\n    public void reset()\n    {\n        Arrays.fill(hashTable, 0);\n        Arrays.fill(chainTable, 0);\n    }\n\n    public void enforceMaxDistance(long inputLimit, int maxDistance)\n    {\n        int distance = (int) (inputLimit - baseAddress);\n\n        int newOffset = distance - maxDistance;\n        if (windowBaseOffset < newOffset) {\n            windowBaseOffset = newOffset;\n        }\n    }\n\n    public long getBaseAddress()\n    {\n        return baseAddress;\n    }\n\n    public int getWindowBaseOffset()\n    {\n        return windowBaseOffset;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/BlockCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\ninterface BlockCompressor\n{\n    BlockCompressor UNSUPPORTED = (inputBase, inputAddress, inputSize, sequenceStore, blockCompressionState, offsets, parameters) -> { throw new UnsupportedOperationException(); };\n\n    int compressBlock(Object inputBase, long inputAddress, int inputSize, SequenceStore output, BlockCompressionState state, RepeatedOffsets offsets, CompressionParameters parameters);\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/CompressionContext.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\nimport static java.lang.Math.clamp;\n\nclass CompressionContext\n{\n    public final CompressionParameters parameters;\n    public final RepeatedOffsets offsets = new RepeatedOffsets();\n    public final BlockCompressionState blockCompressionState;\n    public final SequenceStore sequenceStore;\n\n    public final SequenceEncodingContext sequenceEncodingContext = new SequenceEncodingContext();\n\n    public final HuffmanCompressionContext huffmanContext = new HuffmanCompressionContext();\n\n    public CompressionContext(CompressionParameters parameters, long baseAddress, int inputSize)\n    {\n        this.parameters = parameters;\n\n        int windowSize = clamp(inputSize, 1, parameters.getWindowSize());\n        int blockSize = Math.min(MAX_BLOCK_SIZE, windowSize);\n        int divider = (parameters.getSearchLength() == 3) ? 3 : 4;\n\n        int maxSequences = blockSize / divider;\n\n        sequenceStore = new SequenceStore(blockSize, maxSequences);\n\n        blockCompressionState = new BlockCompressionState(parameters, baseAddress);\n    }\n\n    public void slideWindow(int slideWindowSize)\n    {\n        checkArgument(slideWindowSize > 0, \"slideWindowSize must be positive\");\n        blockCompressionState.slideWindow(slideWindowSize);\n    }\n\n    public void commit()\n    {\n        offsets.commit();\n        huffmanContext.saveChanges();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/CompressionParameters.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_WINDOW_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_WINDOW_LOG;\nimport static io.airlift.compress.v3.zstd.Util.cycleLog;\nimport static io.airlift.compress.v3.zstd.Util.highestBit;\nimport static java.lang.Math.clamp;\n\nclass CompressionParameters\n{\n    private static final int MIN_HASH_LOG = 6;\n\n    public static final int DEFAULT_COMPRESSION_LEVEL = 3;\n    private static final int MAX_COMPRESSION_LEVEL = 22;\n\n    private final int windowLog; // largest match distance : larger == more compression, more memory needed during decompression\n    private final int windowSize; // computed: 1 << windowLog\n    private final int blockSize; // computed: min(MAX_BLOCK_SIZE, windowSize)\n    private final int chainLog;  // fully searched segment : larger == more compression, slower, more memory (useless for fast)\n    private final int hashLog;   // dispatch table : larger == faster, more memory\n    private final int searchLog; // nb of searches : larger == more compression, slower\n    private final int searchLength; // match length searched : larger == faster decompression, sometimes less compression\n    private final int targetLength; // acceptable match size for optimal parser (only) : larger == more compression, slower\n    private final Strategy strategy;\n\n    private static final CompressionParameters[][] DEFAULT_COMPRESSION_PARAMETERS = new CompressionParameters[][] {\n            {\n                // default\n                new CompressionParameters(19, 12, 13, 1, 6, 1, Strategy.FAST),  /* base for negative levels */\n                new CompressionParameters(19, 13, 14, 1, 7, 0, Strategy.FAST),  /* level  1 */\n                new CompressionParameters(19, 15, 16, 1, 6, 0, Strategy.FAST),  /* level  2 */\n                new CompressionParameters(20, 16, 17, 1, 5, 1, Strategy.DFAST),  /* level  3 */\n                new CompressionParameters(20, 18, 18, 1, 5, 1, Strategy.DFAST),  /* level  4 */\n                new CompressionParameters(20, 18, 18, 2, 5, 2, Strategy.GREEDY),  /* level  5 */\n                new CompressionParameters(21, 18, 19, 2, 5, 4, Strategy.LAZY),  /* level  6 */\n                new CompressionParameters(21, 18, 19, 3, 5, 8, Strategy.LAZY2),  /* level  7 */\n                new CompressionParameters(21, 19, 19, 3, 5, 16, Strategy.LAZY2),  /* level  8 */\n                new CompressionParameters(21, 19, 20, 4, 5, 16, Strategy.LAZY2),  /* level  9 */\n                new CompressionParameters(21, 20, 21, 4, 5, 16, Strategy.LAZY2),  /* level 10 */\n                new CompressionParameters(21, 21, 22, 4, 5, 16, Strategy.LAZY2),  /* level 11 */\n                new CompressionParameters(22, 20, 22, 5, 5, 16, Strategy.LAZY2),  /* level 12 */\n                new CompressionParameters(22, 21, 22, 4, 5, 32, Strategy.BTLAZY2),  /* level 13 */\n                new CompressionParameters(22, 21, 22, 5, 5, 32, Strategy.BTLAZY2),  /* level 14 */\n                new CompressionParameters(22, 22, 22, 6, 5, 32, Strategy.BTLAZY2),  /* level 15 */\n                new CompressionParameters(22, 21, 22, 4, 5, 48, Strategy.BTOPT),  /* level 16 */\n                new CompressionParameters(23, 22, 22, 4, 4, 64, Strategy.BTOPT),  /* level 17 */\n                new CompressionParameters(23, 23, 22, 6, 3, 256, Strategy.BTOPT),  /* level 18 */\n                new CompressionParameters(23, 24, 22, 7, 3, 256, Strategy.BTULTRA),  /* level 19 */\n                new CompressionParameters(25, 25, 23, 7, 3, 256, Strategy.BTULTRA),  /* level 20 */\n                new CompressionParameters(26, 26, 24, 7, 3, 512, Strategy.BTULTRA),  /* level 21 */\n                new CompressionParameters(27, 27, 25, 9, 3, 999, Strategy.BTULTRA)  /* level 22 */\n            },\n            {\n                // for size <= 256 KB\n                new CompressionParameters(18, 12, 13, 1, 5, 1, Strategy.FAST),  /* base for negative levels */\n                new CompressionParameters(18, 13, 14, 1, 6, 0, Strategy.FAST),  /* level  1 */\n                new CompressionParameters(18, 14, 14, 1, 5, 1, Strategy.DFAST),  /* level  2 */\n                new CompressionParameters(18, 16, 16, 1, 4, 1, Strategy.DFAST),  /* level  3 */\n                new CompressionParameters(18, 16, 17, 2, 5, 2, Strategy.GREEDY),  /* level  4.*/\n                new CompressionParameters(18, 18, 18, 3, 5, 2, Strategy.GREEDY),  /* level  5.*/\n                new CompressionParameters(18, 18, 19, 3, 5, 4, Strategy.LAZY),  /* level  6.*/\n                new CompressionParameters(18, 18, 19, 4, 4, 4, Strategy.LAZY),  /* level  7 */\n                new CompressionParameters(18, 18, 19, 4, 4, 8, Strategy.LAZY2),  /* level  8 */\n                new CompressionParameters(18, 18, 19, 5, 4, 8, Strategy.LAZY2),  /* level  9 */\n                new CompressionParameters(18, 18, 19, 6, 4, 8, Strategy.LAZY2),  /* level 10 */\n                new CompressionParameters(18, 18, 19, 5, 4, 16, Strategy.BTLAZY2),  /* level 11.*/\n                new CompressionParameters(18, 19, 19, 6, 4, 16, Strategy.BTLAZY2),  /* level 12.*/\n                new CompressionParameters(18, 19, 19, 8, 4, 16, Strategy.BTLAZY2),  /* level 13 */\n                new CompressionParameters(18, 18, 19, 4, 4, 24, Strategy.BTOPT),  /* level 14.*/\n                new CompressionParameters(18, 18, 19, 4, 3, 24, Strategy.BTOPT),  /* level 15.*/\n                new CompressionParameters(18, 19, 19, 6, 3, 64, Strategy.BTOPT),  /* level 16.*/\n                new CompressionParameters(18, 19, 19, 8, 3, 128, Strategy.BTOPT),  /* level 17.*/\n                new CompressionParameters(18, 19, 19, 10, 3, 256, Strategy.BTOPT),  /* level 18.*/\n                new CompressionParameters(18, 19, 19, 10, 3, 256, Strategy.BTULTRA),  /* level 19.*/\n                new CompressionParameters(18, 19, 19, 11, 3, 512, Strategy.BTULTRA),  /* level 20.*/\n                new CompressionParameters(18, 19, 19, 12, 3, 512, Strategy.BTULTRA),  /* level 21.*/\n                new CompressionParameters(18, 19, 19, 13, 3, 999, Strategy.BTULTRA)  /* level 22.*/\n            },\n            {\n                // for size <= 128 KB\n                new CompressionParameters(17, 12, 12, 1, 5, 1, Strategy.FAST),  /* base for negative levels */\n                new CompressionParameters(17, 12, 13, 1, 6, 0, Strategy.FAST),  /* level  1 */\n                new CompressionParameters(17, 13, 15, 1, 5, 0, Strategy.FAST),  /* level  2 */\n                new CompressionParameters(17, 15, 16, 2, 5, 1, Strategy.DFAST),  /* level  3 */\n                new CompressionParameters(17, 17, 17, 2, 4, 1, Strategy.DFAST),  /* level  4 */\n                new CompressionParameters(17, 16, 17, 3, 4, 2, Strategy.GREEDY),  /* level  5 */\n                new CompressionParameters(17, 17, 17, 3, 4, 4, Strategy.LAZY),  /* level  6 */\n                new CompressionParameters(17, 17, 17, 3, 4, 8, Strategy.LAZY2),  /* level  7 */\n                new CompressionParameters(17, 17, 17, 4, 4, 8, Strategy.LAZY2),  /* level  8 */\n                new CompressionParameters(17, 17, 17, 5, 4, 8, Strategy.LAZY2),  /* level  9 */\n                new CompressionParameters(17, 17, 17, 6, 4, 8, Strategy.LAZY2),  /* level 10 */\n                new CompressionParameters(17, 17, 17, 7, 4, 8, Strategy.LAZY2),  /* level 11 */\n                new CompressionParameters(17, 18, 17, 6, 4, 16, Strategy.BTLAZY2),  /* level 12 */\n                new CompressionParameters(17, 18, 17, 8, 4, 16, Strategy.BTLAZY2),  /* level 13.*/\n                new CompressionParameters(17, 18, 17, 4, 4, 32, Strategy.BTOPT),  /* level 14.*/\n                new CompressionParameters(17, 18, 17, 6, 3, 64, Strategy.BTOPT),  /* level 15.*/\n                new CompressionParameters(17, 18, 17, 7, 3, 128, Strategy.BTOPT),  /* level 16.*/\n                new CompressionParameters(17, 18, 17, 7, 3, 256, Strategy.BTOPT),  /* level 17.*/\n                new CompressionParameters(17, 18, 17, 8, 3, 256, Strategy.BTOPT),  /* level 18.*/\n                new CompressionParameters(17, 18, 17, 8, 3, 256, Strategy.BTULTRA),  /* level 19.*/\n                new CompressionParameters(17, 18, 17, 9, 3, 256, Strategy.BTULTRA),  /* level 20.*/\n                new CompressionParameters(17, 18, 17, 10, 3, 256, Strategy.BTULTRA),  /* level 21.*/\n                new CompressionParameters(17, 18, 17, 11, 3, 512, Strategy.BTULTRA)  /* level 22.*/\n            },\n            {\n                // for size <= 16 KB\n                new CompressionParameters(14, 12, 13, 1, 5, 1, Strategy.FAST),  /* base for negative levels */\n                new CompressionParameters(14, 14, 15, 1, 5, 0, Strategy.FAST),  /* level  1 */\n                new CompressionParameters(14, 14, 15, 1, 4, 0, Strategy.FAST),  /* level  2 */\n                new CompressionParameters(14, 14, 14, 2, 4, 1, Strategy.DFAST),  /* level  3.*/\n                new CompressionParameters(14, 14, 14, 4, 4, 2, Strategy.GREEDY),  /* level  4.*/\n                new CompressionParameters(14, 14, 14, 3, 4, 4, Strategy.LAZY),  /* level  5.*/\n                new CompressionParameters(14, 14, 14, 4, 4, 8, Strategy.LAZY2),  /* level  6 */\n                new CompressionParameters(14, 14, 14, 6, 4, 8, Strategy.LAZY2),  /* level  7 */\n                new CompressionParameters(14, 14, 14, 8, 4, 8, Strategy.LAZY2),  /* level  8.*/\n                new CompressionParameters(14, 15, 14, 5, 4, 8, Strategy.BTLAZY2),  /* level  9.*/\n                new CompressionParameters(14, 15, 14, 9, 4, 8, Strategy.BTLAZY2),  /* level 10.*/\n                new CompressionParameters(14, 15, 14, 3, 4, 12, Strategy.BTOPT),  /* level 11.*/\n                new CompressionParameters(14, 15, 14, 6, 3, 16, Strategy.BTOPT),  /* level 12.*/\n                new CompressionParameters(14, 15, 14, 6, 3, 24, Strategy.BTOPT),  /* level 13.*/\n                new CompressionParameters(14, 15, 15, 6, 3, 48, Strategy.BTOPT),  /* level 14.*/\n                new CompressionParameters(14, 15, 15, 6, 3, 64, Strategy.BTOPT),  /* level 15.*/\n                new CompressionParameters(14, 15, 15, 6, 3, 96, Strategy.BTOPT),  /* level 16.*/\n                new CompressionParameters(14, 15, 15, 6, 3, 128, Strategy.BTOPT),  /* level 17.*/\n                new CompressionParameters(14, 15, 15, 8, 3, 256, Strategy.BTOPT),  /* level 18.*/\n                new CompressionParameters(14, 15, 15, 6, 3, 256, Strategy.BTULTRA),  /* level 19.*/\n                new CompressionParameters(14, 15, 15, 8, 3, 256, Strategy.BTULTRA),  /* level 20.*/\n                new CompressionParameters(14, 15, 15, 9, 3, 256, Strategy.BTULTRA),  /* level 21.*/\n                new CompressionParameters(14, 15, 15, 10, 3, 512, Strategy.BTULTRA)  /* level 22.*/\n            }\n    };\n\n    public enum Strategy\n    {\n        // from faster to stronger\n\n        // YC: fast is a \"single probe\" strategy : at every position, we attempt to find a match, and give up if we don't find any. similar to lz4.\n        FAST(BlockCompressor.UNSUPPORTED),\n\n        // YC: double_fast is a 2 attempts strategies. They are not symmetrical by the way. One attempt is \"normal\" while the second one looks for \"long matches\". It was\n        // empirically found that this was the best trade off. As can be guessed, it's slower than single-attempt, but find more and better matches, so compresses better.\n        DFAST(new DoubleFastBlockCompressor()),\n\n        // YC: greedy uses a hash chain strategy. Every position is hashed, and all positions with same hash are chained. The algorithm goes through all candidates. There are\n        // diminishing returns in going deeper and deeper, so after a nb of attempts (which can be selected), it abandons the search. The best (longest) match wins. If there is\n        // one winner, it's immediately encoded.\n        GREEDY(BlockCompressor.UNSUPPORTED),\n\n        // YC: lazy will do something similar to greedy, but will not encode immediately. It will search again at next position, in case it would find something better.\n        // It's actually fairly common to have a small match at position p hiding a more worthy one at position p+1. This obviously increases the search workload. But the\n        // resulting compressed stream generally contains larger matches, hence compresses better.\n        LAZY(BlockCompressor.UNSUPPORTED),\n\n        // YC: lazy2 is same as lazy, but deeper. It will search at P, P+1 and then P+2 in case it would find something even better. More workload. Better matches.\n        LAZY2(BlockCompressor.UNSUPPORTED),\n\n        // YC: btlazy2 is like lazy2, but trades the hash chain for a binary tree. This becomes necessary, as the nb of attempts becomes prohibitively expensive. The binary tree\n        // complexity increases with log of search depth, instead of proportionally with search depth. So searching deeper in history quickly becomes the dominant operation.\n        // btlazy2 cuts into that. But it costs 2x more memory. It's also relatively \"slow\", even when trying to cut its parameters to make it perform faster. So it's really\n        // a high compression strategy.\n        BTLAZY2(BlockCompressor.UNSUPPORTED),\n\n        // YC: btopt is, well, a hell of lot more complex.\n        // It will compute and find multiple matches per position, will dynamically compare every path from point P to P+N, reverse the graph to find cheapest path, iterate on\n        // batches of overlapping matches, etc. It's much more expensive. But the compression ratio is also much better.\n        BTOPT(BlockCompressor.UNSUPPORTED),\n\n        // YC: btultra is about the same, but doesn't cut as many corners (btopt \"abandons\" more quickly unpromising little gains). Slower, stronger.\n        BTULTRA(BlockCompressor.UNSUPPORTED);\n\n        private final BlockCompressor compressor;\n\n        Strategy(BlockCompressor compressor)\n        {\n            this.compressor = compressor;\n        }\n\n        public BlockCompressor getCompressor()\n        {\n            return compressor;\n        }\n    }\n\n    public CompressionParameters(int windowLog, int chainLog, int hashLog, int searchLog, int searchLength, int targetLength, Strategy strategy)\n    {\n        this.windowLog = windowLog;\n        this.windowSize = 1 << windowLog;\n        this.blockSize = Math.min(MAX_BLOCK_SIZE, windowSize);\n        this.chainLog = chainLog;\n        this.hashLog = hashLog;\n        this.searchLog = searchLog;\n        this.searchLength = searchLength;\n        this.targetLength = targetLength;\n        this.strategy = strategy;\n    }\n\n    public int getWindowLog()\n    {\n        return windowLog;\n    }\n\n    public int getWindowSize()\n    {\n        return windowSize;\n    }\n\n    public int getBlockSize()\n    {\n        return blockSize;\n    }\n\n    public int getSearchLength()\n    {\n        return searchLength;\n    }\n\n    public int getChainLog()\n    {\n        return chainLog;\n    }\n\n    public int getHashLog()\n    {\n        return hashLog;\n    }\n\n    public int getSearchLog()\n    {\n        return searchLog;\n    }\n\n    public int getTargetLength()\n    {\n        return targetLength;\n    }\n\n    public Strategy getStrategy()\n    {\n        return strategy;\n    }\n\n    public static CompressionParameters compute(int compressionLevel, int estimatedInputSize)\n    {\n        CompressionParameters defaultParameters = getDefaultParameters(compressionLevel, estimatedInputSize);\n        if (estimatedInputSize < 0) {\n            return defaultParameters;\n        }\n\n        int targetLength = defaultParameters.targetLength;\n        int windowLog = defaultParameters.windowLog;\n        int chainLog = defaultParameters.chainLog;\n        int hashLog = defaultParameters.hashLog;\n        int searchLog = defaultParameters.searchLog;\n        int searchLength = defaultParameters.searchLength;\n        Strategy strategy = defaultParameters.strategy;\n\n        if (compressionLevel < 0) {\n            targetLength = -compressionLevel;   // acceleration factor\n        }\n\n        // resize windowLog if input is small enough, to use less memory\n        long maxWindowResize = 1L << (MAX_WINDOW_LOG - 1);\n        if (estimatedInputSize < maxWindowResize) {\n            int hashSizeMin = 1 << MIN_HASH_LOG;\n            int inputSizeLog = (estimatedInputSize < hashSizeMin) ? MIN_HASH_LOG : highestBit(estimatedInputSize - 1) + 1;\n            if (windowLog > inputSizeLog) {\n                windowLog = inputSizeLog;\n            }\n        }\n\n        if (hashLog > windowLog + 1) {\n            hashLog = windowLog + 1;\n        }\n\n        int cycleLog = cycleLog(chainLog, strategy);\n        if (cycleLog > windowLog) {\n            chainLog -= (cycleLog - windowLog);\n        }\n\n        if (windowLog < MIN_WINDOW_LOG) {\n            windowLog = MIN_WINDOW_LOG;\n        }\n\n        return new CompressionParameters(windowLog, chainLog, hashLog, searchLog, searchLength, targetLength, strategy);\n    }\n\n    private static CompressionParameters getDefaultParameters(int compressionLevel, long estimatedInputSize)\n    {\n        int table = 0;\n\n        if (estimatedInputSize >= 0) {\n            if (estimatedInputSize <= 16 * 1024) {\n                table = 3;\n            }\n            else if (estimatedInputSize <= 128 * 1024) {\n                table = 2;\n            }\n            else if (estimatedInputSize <= 256 * 1024) {\n                table = 1;\n            }\n        }\n\n        int row = DEFAULT_COMPRESSION_LEVEL;\n\n        if (compressionLevel != 0) { // TODO: figure out better way to indicate default compression level\n            row = clamp(compressionLevel, 0, MAX_COMPRESSION_LEVEL);\n        }\n\n        return DEFAULT_COMPRESSION_PARAMETERS[table][row];\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/Constants.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nfinal class Constants\n{\n    public static final int SIZE_OF_BYTE = 1;\n    public static final int SIZE_OF_SHORT = 2;\n    public static final int SIZE_OF_INT = 4;\n    public static final int SIZE_OF_LONG = 8;\n\n    public static final int MAGIC_NUMBER = 0xFD2FB528;\n\n    public static final int MIN_WINDOW_LOG = 10;\n    public static final int MAX_WINDOW_LOG = 31;\n\n    public static final int SIZE_OF_BLOCK_HEADER = 3;\n\n    public static final int MIN_SEQUENCES_SIZE = 1;\n    public static final int MIN_BLOCK_SIZE = 1 // block type tag\n            + 1 // min size of raw or rle length header\n            + MIN_SEQUENCES_SIZE;\n    public static final int MAX_BLOCK_SIZE = 128 * 1024;\n\n    public static final int REPEATED_OFFSET_COUNT = 3;\n\n    // block types\n    public static final int RAW_BLOCK = 0;\n    public static final int RLE_BLOCK = 1;\n    public static final int COMPRESSED_BLOCK = 2;\n\n    // sequence encoding types\n    public static final int SEQUENCE_ENCODING_BASIC = 0;\n    public static final int SEQUENCE_ENCODING_RLE = 1;\n    public static final int SEQUENCE_ENCODING_COMPRESSED = 2;\n    public static final int SEQUENCE_ENCODING_REPEAT = 3;\n\n    public static final int MAX_LITERALS_LENGTH_SYMBOL = 35;\n    public static final int MAX_MATCH_LENGTH_SYMBOL = 52;\n    public static final int MAX_OFFSET_CODE_SYMBOL = 31;\n    public static final int DEFAULT_MAX_OFFSET_CODE_SYMBOL = 28;\n\n    public static final int LITERAL_LENGTH_TABLE_LOG = 9;\n    public static final int MATCH_LENGTH_TABLE_LOG = 9;\n    public static final int OFFSET_TABLE_LOG = 8;\n\n    // literal block types\n    public static final int RAW_LITERALS_BLOCK = 0;\n    public static final int RLE_LITERALS_BLOCK = 1;\n    public static final int COMPRESSED_LITERALS_BLOCK = 2;\n    public static final int TREELESS_LITERALS_BLOCK = 3;\n\n    public static final int LONG_NUMBER_OF_SEQUENCES = 0x7F00;\n\n    public static final int[] LITERALS_LENGTH_BITS = {0, 0, 0, 0, 0, 0, 0, 0,\n                                                      0, 0, 0, 0, 0, 0, 0, 0,\n                                                      1, 1, 1, 1, 2, 2, 3, 3,\n                                                      4, 6, 7, 8, 9, 10, 11, 12,\n                                                      13, 14, 15, 16};\n\n    public static final int[] MATCH_LENGTH_BITS = {0, 0, 0, 0, 0, 0, 0, 0,\n                                                   0, 0, 0, 0, 0, 0, 0, 0,\n                                                   0, 0, 0, 0, 0, 0, 0, 0,\n                                                   0, 0, 0, 0, 0, 0, 0, 0,\n                                                   1, 1, 1, 1, 2, 2, 3, 3,\n                                                   4, 4, 5, 7, 8, 9, 10, 11,\n                                                   12, 13, 14, 15, 16};\n\n    private Constants()\n    {\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/DoubleFastBlockCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\n\nclass DoubleFastBlockCompressor\n        implements BlockCompressor\n{\n    private static final int MIN_MATCH = 3;\n    private static final int SEARCH_STRENGTH = 8;\n    private static final int REP_MOVE = Constants.REPEATED_OFFSET_COUNT - 1;\n\n    @Override\n    public int compressBlock(Object inputBase, final long inputAddress, int inputSize, SequenceStore output, BlockCompressionState state, RepeatedOffsets offsets, CompressionParameters parameters)\n    {\n        int matchSearchLength = Math.max(parameters.getSearchLength(), 4);\n\n        // Offsets in hash tables are relative to baseAddress. Hash tables can be reused across calls to compressBlock as long as\n        // baseAddress is kept constant.\n        // We don't want to generate sequences that point before the current window limit, so we \"filter\" out all results from looking up in the hash tables\n        // beyond that point.\n        final long baseAddress = state.getBaseAddress();\n        final long windowBaseAddress = baseAddress + state.getWindowBaseOffset();\n\n        int[] longHashTable = state.hashTable;\n        int longHashBits = parameters.getHashLog();\n\n        int[] shortHashTable = state.chainTable;\n        int shortHashBits = parameters.getChainLog();\n\n        final long inputEnd = inputAddress + inputSize;\n        final long inputLimit = inputEnd - SIZE_OF_LONG; // We read a long at a time for computing the hashes\n\n        long input = inputAddress;\n        long anchor = inputAddress;\n\n        int offset1 = offsets.getOffset0();\n        int offset2 = offsets.getOffset1();\n\n        int savedOffset = 0;\n\n        if (input - windowBaseAddress == 0) {\n            input++;\n        }\n        int maxRep = (int) (input - windowBaseAddress);\n\n        if (offset2 > maxRep) {\n            savedOffset = offset2;\n            offset2 = 0;\n        }\n\n        if (offset1 > maxRep) {\n            savedOffset = offset1;\n            offset1 = 0;\n        }\n\n        while (input < inputLimit) {   // < instead of <=, because repcode check at (input+1)\n            int shortHash = hash(inputBase, input, shortHashBits, matchSearchLength);\n            long shortMatchAddress = baseAddress + shortHashTable[shortHash];\n\n            int longHash = hash8(UNSAFE.getLong(inputBase, input), longHashBits);\n            long longMatchAddress = baseAddress + longHashTable[longHash];\n\n            // update hash tables\n            int current = (int) (input - baseAddress);\n            longHashTable[longHash] = current;\n            shortHashTable[shortHash] = current;\n\n            int matchLength;\n            int offset;\n\n            if (offset1 > 0 && UNSAFE.getInt(inputBase, input + 1 - offset1) == UNSAFE.getInt(inputBase, input + 1)) {\n                // found a repeated sequence of at least 4 bytes, separated by offset1\n                matchLength = count(inputBase, input + 1 + SIZE_OF_INT, inputEnd, input + 1 + SIZE_OF_INT - offset1) + SIZE_OF_INT;\n                input++;\n                output.storeSequence(inputBase, anchor, (int) (input - anchor), 0, matchLength - MIN_MATCH);\n            }\n            else {\n                // check prefix long match\n                if (longMatchAddress > windowBaseAddress && UNSAFE.getLong(inputBase, longMatchAddress) == UNSAFE.getLong(inputBase, input)) {\n                    matchLength = count(inputBase, input + SIZE_OF_LONG, inputEnd, longMatchAddress + SIZE_OF_LONG) + SIZE_OF_LONG;\n                    offset = (int) (input - longMatchAddress);\n                    while (input > anchor && longMatchAddress > windowBaseAddress && UNSAFE.getByte(inputBase, input - 1) == UNSAFE.getByte(inputBase, longMatchAddress - 1)) {\n                        input--;\n                        longMatchAddress--;\n                        matchLength++;\n                    }\n                }\n                else {\n                    // check prefix short match\n                    if (shortMatchAddress > windowBaseAddress && UNSAFE.getInt(inputBase, shortMatchAddress) == UNSAFE.getInt(inputBase, input)) {\n                        int nextOffsetHash = hash8(UNSAFE.getLong(inputBase, input + 1), longHashBits);\n                        long nextOffsetMatchAddress = baseAddress + longHashTable[nextOffsetHash];\n                        longHashTable[nextOffsetHash] = current + 1;\n\n                        // check prefix long +1 match\n                        if (nextOffsetMatchAddress > windowBaseAddress && UNSAFE.getLong(inputBase, nextOffsetMatchAddress) == UNSAFE.getLong(inputBase, input + 1)) {\n                            matchLength = count(inputBase, input + 1 + SIZE_OF_LONG, inputEnd, nextOffsetMatchAddress + SIZE_OF_LONG) + SIZE_OF_LONG;\n                            input++;\n                            offset = (int) (input - nextOffsetMatchAddress);\n                            while (input > anchor && nextOffsetMatchAddress > windowBaseAddress && UNSAFE.getByte(inputBase, input - 1) == UNSAFE.getByte(inputBase, nextOffsetMatchAddress - 1)) {\n                                input--;\n                                nextOffsetMatchAddress--;\n                                matchLength++;\n                            }\n                        }\n                        else {\n                            // if no long +1 match, explore the short match we found\n                            matchLength = count(inputBase, input + SIZE_OF_INT, inputEnd, shortMatchAddress + SIZE_OF_INT) + SIZE_OF_INT;\n                            offset = (int) (input - shortMatchAddress);\n                            while (input > anchor && shortMatchAddress > windowBaseAddress && UNSAFE.getByte(inputBase, input - 1) == UNSAFE.getByte(inputBase, shortMatchAddress - 1)) {\n                                input--;\n                                shortMatchAddress--;\n                                matchLength++;\n                            }\n                        }\n                    }\n                    else {\n                        input += ((input - anchor) >> SEARCH_STRENGTH) + 1;\n                        continue;\n                    }\n                }\n\n                offset2 = offset1;\n                offset1 = offset;\n\n                output.storeSequence(inputBase, anchor, (int) (input - anchor), offset + REP_MOVE, matchLength - MIN_MATCH);\n            }\n\n            input += matchLength;\n            anchor = input;\n\n            if (input <= inputLimit) {\n                // Fill Table\n                longHashTable[hash8(UNSAFE.getLong(inputBase, baseAddress + current + 2), longHashBits)] = current + 2;\n                shortHashTable[hash(inputBase, baseAddress + current + 2, shortHashBits, matchSearchLength)] = current + 2;\n\n                longHashTable[hash8(UNSAFE.getLong(inputBase, input - 2), longHashBits)] = (int) (input - 2 - baseAddress);\n                shortHashTable[hash(inputBase, input - 2, shortHashBits, matchSearchLength)] = (int) (input - 2 - baseAddress);\n\n                while (input <= inputLimit && offset2 > 0 && UNSAFE.getInt(inputBase, input) == UNSAFE.getInt(inputBase, input - offset2)) {\n                    int repetitionLength = count(inputBase, input + SIZE_OF_INT, inputEnd, input + SIZE_OF_INT - offset2) + SIZE_OF_INT;\n\n                    // swap offset2 <=> offset1\n                    int temp = offset2;\n                    offset2 = offset1;\n                    offset1 = temp;\n\n                    shortHashTable[hash(inputBase, input, shortHashBits, matchSearchLength)] = (int) (input - baseAddress);\n                    longHashTable[hash8(UNSAFE.getLong(inputBase, input), longHashBits)] = (int) (input - baseAddress);\n\n                    output.storeSequence(inputBase, anchor, 0, 0, repetitionLength - MIN_MATCH);\n\n                    input += repetitionLength;\n                    anchor = input;\n                }\n            }\n        }\n\n        // save reps for next block\n        offsets.saveOffset0(offset1 != 0 ? offset1 : savedOffset);\n        offsets.saveOffset1(offset2 != 0 ? offset2 : savedOffset);\n\n        // return the last literals size\n        return (int) (inputEnd - anchor);\n    }\n\n    // TODO: same as LZ4RawCompressor.count\n\n    /**\n     * matchAddress must be < inputAddress\n     */\n    public static int count(Object inputBase, final long inputAddress, final long inputLimit, final long matchAddress)\n    {\n        long input = inputAddress;\n        long match = matchAddress;\n\n        int remaining = (int) (inputLimit - inputAddress);\n\n        // first, compare long at a time\n        int count = 0;\n        while (count < remaining - (SIZE_OF_LONG - 1)) {\n            long diff = UNSAFE.getLong(inputBase, match) ^ UNSAFE.getLong(inputBase, input);\n            if (diff != 0) {\n                return count + (Long.numberOfTrailingZeros(diff) >> 3);\n            }\n\n            count += SIZE_OF_LONG;\n            input += SIZE_OF_LONG;\n            match += SIZE_OF_LONG;\n        }\n\n        while (count < remaining && UNSAFE.getByte(inputBase, match) == UNSAFE.getByte(inputBase, input)) {\n            count++;\n            input++;\n            match++;\n        }\n\n        return count;\n    }\n\n    private static int hash(Object inputBase, long inputAddress, int bits, int matchSearchLength)\n    {\n        switch (matchSearchLength) {\n            case 8:\n                return hash8(UNSAFE.getLong(inputBase, inputAddress), bits);\n            case 7:\n                return hash7(UNSAFE.getLong(inputBase, inputAddress), bits);\n            case 6:\n                return hash6(UNSAFE.getLong(inputBase, inputAddress), bits);\n            case 5:\n                return hash5(UNSAFE.getLong(inputBase, inputAddress), bits);\n            default:\n                return hash4(UNSAFE.getInt(inputBase, inputAddress), bits);\n        }\n    }\n\n    private static final int PRIME_4_BYTES = 0x9E3779B1;\n    private static final long PRIME_5_BYTES = 0xCF1BBCDCBBL;\n    private static final long PRIME_6_BYTES = 0xCF1BBCDCBF9BL;\n    private static final long PRIME_7_BYTES = 0xCF1BBCDCBFA563L;\n    private static final long PRIME_8_BYTES = 0xCF1BBCDCB7A56463L;\n\n    private static int hash4(int value, int bits)\n    {\n        return (value * PRIME_4_BYTES) >>> (Integer.SIZE - bits);\n    }\n\n    private static int hash5(long value, int bits)\n    {\n        return (int) (((value << (Long.SIZE - 40)) * PRIME_5_BYTES) >>> (Long.SIZE - bits));\n    }\n\n    private static int hash6(long value, int bits)\n    {\n        return (int) (((value << (Long.SIZE - 48)) * PRIME_6_BYTES) >>> (Long.SIZE - bits));\n    }\n\n    private static int hash7(long value, int bits)\n    {\n        return (int) (((value << (Long.SIZE - 56)) * PRIME_7_BYTES) >>> (Long.SIZE - bits));\n    }\n\n    private static int hash8(long value, int bits)\n    {\n        return (int) ((value * PRIME_8_BYTES) >>> (Long.SIZE - bits));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/FiniteStateEntropy.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.BitInputStream.peekBits;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\nimport static io.airlift.compress.v3.zstd.Util.verify;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class FiniteStateEntropy\n{\n    public static final int MAX_SYMBOL = 255;\n    public static final int MAX_TABLE_LOG = 12;\n    public static final int MIN_TABLE_LOG = 5;\n\n    private static final int[] REST_TO_BEAT = new int[] {0, 473195, 504333, 520860, 550000, 700000, 750000, 830000};\n    private static final short UNASSIGNED = -2;\n\n    private FiniteStateEntropy()\n    {\n    }\n\n    public static int decompress(FiniteStateEntropy.Table table, final Object inputBase, final long inputAddress, final long inputLimit, byte[] outputBuffer)\n    {\n        final Object outputBase = outputBuffer;\n        final long outputAddress = ARRAY_BYTE_BASE_OFFSET;\n        final long outputLimit = outputAddress + outputBuffer.length;\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        // initialize bit stream\n        BitInputStream.Initializer initializer = new BitInputStream.Initializer(inputBase, input, inputLimit);\n        initializer.initialize();\n        int bitsConsumed = initializer.getBitsConsumed();\n        long currentAddress = initializer.getCurrentAddress();\n        long bits = initializer.getBits();\n\n        // initialize first FSE stream\n        int state1 = (int) peekBits(bitsConsumed, bits, table.log2Size);\n        bitsConsumed += table.log2Size;\n\n        BitInputStream.Loader loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n        loader.load();\n        bits = loader.getBits();\n        bitsConsumed = loader.getBitsConsumed();\n        currentAddress = loader.getCurrentAddress();\n\n        // initialize second FSE stream\n        int state2 = (int) peekBits(bitsConsumed, bits, table.log2Size);\n        bitsConsumed += table.log2Size;\n\n        loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n        loader.load();\n        bits = loader.getBits();\n        bitsConsumed = loader.getBitsConsumed();\n        currentAddress = loader.getCurrentAddress();\n\n        byte[] symbols = table.symbol;\n        byte[] numbersOfBits = table.numberOfBits;\n        int[] newStates = table.newState;\n\n        // decode 4 symbols per loop\n        while (output <= outputLimit - 4) {\n            int numberOfBits;\n\n            UNSAFE.putByte(outputBase, output, symbols[state1]);\n            numberOfBits = numbersOfBits[state1];\n            state1 = (int) (newStates[state1] + peekBits(bitsConsumed, bits, numberOfBits));\n            bitsConsumed += numberOfBits;\n\n            UNSAFE.putByte(outputBase, output + 1, symbols[state2]);\n            numberOfBits = numbersOfBits[state2];\n            state2 = (int) (newStates[state2] + peekBits(bitsConsumed, bits, numberOfBits));\n            bitsConsumed += numberOfBits;\n\n            UNSAFE.putByte(outputBase, output + 2, symbols[state1]);\n            numberOfBits = numbersOfBits[state1];\n            state1 = (int) (newStates[state1] + peekBits(bitsConsumed, bits, numberOfBits));\n            bitsConsumed += numberOfBits;\n\n            UNSAFE.putByte(outputBase, output + 3, symbols[state2]);\n            numberOfBits = numbersOfBits[state2];\n            state2 = (int) (newStates[state2] + peekBits(bitsConsumed, bits, numberOfBits));\n            bitsConsumed += numberOfBits;\n\n            output += SIZE_OF_INT;\n\n            loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n            boolean done = loader.load();\n            bitsConsumed = loader.getBitsConsumed();\n            bits = loader.getBits();\n            currentAddress = loader.getCurrentAddress();\n            if (done) {\n                break;\n            }\n        }\n\n        while (true) {\n            verify(output <= outputLimit - 2, input, \"Output buffer is too small\");\n            UNSAFE.putByte(outputBase, output++, symbols[state1]);\n            int numberOfBits = numbersOfBits[state1];\n            state1 = (int) (newStates[state1] + peekBits(bitsConsumed, bits, numberOfBits));\n            bitsConsumed += numberOfBits;\n\n            loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n            loader.load();\n            bitsConsumed = loader.getBitsConsumed();\n            bits = loader.getBits();\n            currentAddress = loader.getCurrentAddress();\n\n            if (loader.isOverflow()) {\n                UNSAFE.putByte(outputBase, output++, symbols[state2]);\n                break;\n            }\n\n            verify(output <= outputLimit - 2, input, \"Output buffer is too small\");\n            UNSAFE.putByte(outputBase, output++, symbols[state2]);\n            int numberOfBits1 = numbersOfBits[state2];\n            state2 = (int) (newStates[state2] + peekBits(bitsConsumed, bits, numberOfBits1));\n            bitsConsumed += numberOfBits1;\n\n            loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n            loader.load();\n            bitsConsumed = loader.getBitsConsumed();\n            bits = loader.getBits();\n            currentAddress = loader.getCurrentAddress();\n\n            if (loader.isOverflow()) {\n                UNSAFE.putByte(outputBase, output++, symbols[state1]);\n                break;\n            }\n        }\n\n        return (int) (output - outputAddress);\n    }\n\n    public static int compress(Object outputBase, long outputAddress, int outputSize, byte[] input, int inputSize, FseCompressionTable table)\n    {\n        return compress(outputBase, outputAddress, outputSize, input, ARRAY_BYTE_BASE_OFFSET, inputSize, table);\n    }\n\n    public static int compress(Object outputBase, long outputAddress, int outputSize, Object inputBase, long inputAddress, int inputSize, FseCompressionTable table)\n    {\n        checkArgument(outputSize >= SIZE_OF_LONG, \"Output buffer too small\");\n\n        final long start = inputAddress;\n        final long inputLimit = start + inputSize;\n\n        long input = inputLimit;\n\n        if (inputSize <= 2) {\n            return 0;\n        }\n\n        BitOutputStream stream = new BitOutputStream(outputBase, outputAddress, outputSize);\n\n        int state1;\n        int state2;\n\n        if ((inputSize & 1) != 0) {\n            input--;\n            state1 = table.begin(UNSAFE.getByte(inputBase, input));\n\n            input--;\n            state2 = table.begin(UNSAFE.getByte(inputBase, input));\n\n            input--;\n            state1 = table.encode(stream, state1, UNSAFE.getByte(inputBase, input));\n\n            stream.flush();\n        }\n        else {\n            input--;\n            state2 = table.begin(UNSAFE.getByte(inputBase, input));\n\n            input--;\n            state1 = table.begin(UNSAFE.getByte(inputBase, input));\n        }\n\n        // join to mod 4\n        inputSize -= 2;\n\n        if ((SIZE_OF_LONG * 8 > MAX_TABLE_LOG * 4 + 7) && (inputSize & 2) != 0) {  /* test bit 2 */\n            input--;\n            state2 = table.encode(stream, state2, UNSAFE.getByte(inputBase, input));\n\n            input--;\n            state1 = table.encode(stream, state1, UNSAFE.getByte(inputBase, input));\n\n            stream.flush();\n        }\n\n        // 2 or 4 encoding per loop\n        while (input > start) {\n            input--;\n            state2 = table.encode(stream, state2, UNSAFE.getByte(inputBase, input));\n\n            if (SIZE_OF_LONG * 8 < MAX_TABLE_LOG * 2 + 7) {\n                stream.flush();\n            }\n\n            input--;\n            state1 = table.encode(stream, state1, UNSAFE.getByte(inputBase, input));\n\n            if (SIZE_OF_LONG * 8 > MAX_TABLE_LOG * 4 + 7) {\n                input--;\n                state2 = table.encode(stream, state2, UNSAFE.getByte(inputBase, input));\n\n                input--;\n                state1 = table.encode(stream, state1, UNSAFE.getByte(inputBase, input));\n            }\n\n            stream.flush();\n        }\n\n        table.finish(stream, state2);\n        table.finish(stream, state1);\n\n        return stream.close();\n    }\n\n    public static int optimalTableLog(int maxTableLog, int inputSize, int maxSymbol)\n    {\n        if (inputSize <= 1) {\n            throw new IllegalArgumentException(); // not supported. Use RLE instead\n        }\n\n        int result = maxTableLog;\n\n        result = Math.min(result, Util.highestBit((inputSize - 1)) - 2); // we may be able to reduce accuracy if input is small\n\n        // Need a minimum to safely represent all symbol values\n        result = Math.max(result, Util.minTableLog(inputSize, maxSymbol));\n\n        result = Math.max(result, MIN_TABLE_LOG);\n        result = Math.min(result, MAX_TABLE_LOG);\n\n        return result;\n    }\n\n    public static int normalizeCounts(short[] normalizedCounts, int tableLog, int[] counts, int total, int maxSymbol)\n    {\n        checkArgument(tableLog >= MIN_TABLE_LOG, \"Unsupported FSE table size\");\n        checkArgument(tableLog <= MAX_TABLE_LOG, \"FSE table size too large\");\n        checkArgument(tableLog >= Util.minTableLog(total, maxSymbol), \"FSE table size too small\");\n\n        long scale = 62 - tableLog;\n        long step = (1L << 62) / total;\n        long vstep = 1L << (scale - 20);\n\n        int stillToDistribute = 1 << tableLog;\n\n        int largest = 0;\n        short largestProbability = 0;\n        int lowThreshold = total >>> tableLog;\n\n        for (int symbol = 0; symbol <= maxSymbol; symbol++) {\n            if (counts[symbol] == total) {\n                throw new IllegalArgumentException(); // TODO: should have been RLE-compressed by upper layers\n            }\n            if (counts[symbol] == 0) {\n                normalizedCounts[symbol] = 0;\n                continue;\n            }\n            if (counts[symbol] <= lowThreshold) {\n                normalizedCounts[symbol] = -1;\n                stillToDistribute--;\n            }\n            else {\n                short probability = (short) ((counts[symbol] * step) >>> scale);\n                if (probability < 8) {\n                    long restToBeat = vstep * REST_TO_BEAT[probability];\n                    long delta = counts[symbol] * step - (((long) probability) << scale);\n                    if (delta > restToBeat) {\n                        probability++;\n                    }\n                }\n                if (probability > largestProbability) {\n                    largestProbability = probability;\n                    largest = symbol;\n                }\n                normalizedCounts[symbol] = probability;\n                stillToDistribute -= probability;\n            }\n        }\n\n        if (-stillToDistribute >= (normalizedCounts[largest] >>> 1)) {\n            // corner case. Need another normalization method\n            // TODO size_t const errorCode = FSE_normalizeM2(normalizedCounter, tableLog, count, total, maxSymbolValue);\n            normalizeCounts2(normalizedCounts, tableLog, counts, total, maxSymbol);\n        }\n        else {\n            normalizedCounts[largest] += (short) stillToDistribute;\n        }\n\n        return tableLog;\n    }\n\n    private static int normalizeCounts2(short[] normalizedCounts, int tableLog, int[] counts, int total, int maxSymbol)\n    {\n        int distributed = 0;\n\n        int lowThreshold = total >>> tableLog; // minimum count below which frequency in the normalized table is \"too small\" (~ < 1)\n        int lowOne = (total * 3) >>> (tableLog + 1); // 1.5 * lowThreshold. If count in (lowThreshold, lowOne] => assign frequency 1\n\n        for (int i = 0; i <= maxSymbol; i++) {\n            if (counts[i] == 0) {\n                normalizedCounts[i] = 0;\n            }\n            else if (counts[i] <= lowThreshold) {\n                normalizedCounts[i] = -1;\n                distributed++;\n                total -= counts[i];\n            }\n            else if (counts[i] <= lowOne) {\n                normalizedCounts[i] = 1;\n                distributed++;\n                total -= counts[i];\n            }\n            else {\n                normalizedCounts[i] = UNASSIGNED;\n            }\n        }\n\n        int normalizationFactor = 1 << tableLog;\n        int toDistribute = normalizationFactor - distributed;\n\n        if ((total / toDistribute) > lowOne) {\n            /* risk of rounding to zero */\n            lowOne = ((total * 3) / (toDistribute * 2));\n            for (int i = 0; i <= maxSymbol; i++) {\n                if ((normalizedCounts[i] == UNASSIGNED) && (counts[i] <= lowOne)) {\n                    normalizedCounts[i] = 1;\n                    distributed++;\n                    total -= counts[i];\n                }\n            }\n            toDistribute = normalizationFactor - distributed;\n        }\n\n        if (distributed == maxSymbol + 1) {\n            // all values are pretty poor;\n            // probably incompressible data (should have already been detected);\n            // find max, then give all remaining points to max\n            int maxValue = 0;\n            int maxCount = 0;\n            for (int i = 0; i <= maxSymbol; i++) {\n                if (counts[i] > maxCount) {\n                    maxValue = i;\n                    maxCount = counts[i];\n                }\n            }\n            normalizedCounts[maxValue] += (short) toDistribute;\n            return 0;\n        }\n\n        if (total == 0) {\n            // all of the symbols were low enough for the lowOne or lowThreshold\n            for (int i = 0; toDistribute > 0; i = (i + 1) % (maxSymbol + 1)) {\n                if (normalizedCounts[i] > 0) {\n                    toDistribute--;\n                    normalizedCounts[i]++;\n                }\n            }\n            return 0;\n        }\n\n        // TODO: simplify/document this code\n        long vStepLog = 62 - tableLog;\n        long mid = (1L << (vStepLog - 1)) - 1;\n        long rStep = (((1L << vStepLog) * toDistribute) + mid) / total;   /* scale on remaining */\n        long tmpTotal = mid;\n        for (int i = 0; i <= maxSymbol; i++) {\n            if (normalizedCounts[i] == UNASSIGNED) {\n                long end = tmpTotal + (counts[i] * rStep);\n                int sStart = (int) (tmpTotal >>> vStepLog);\n                int sEnd = (int) (end >>> vStepLog);\n                int weight = sEnd - sStart;\n\n                if (weight < 1) {\n                    throw new AssertionError();\n                }\n                normalizedCounts[i] = (short) weight;\n                tmpTotal = end;\n            }\n        }\n\n        return 0;\n    }\n\n    public static int writeNormalizedCounts(Object outputBase, long outputAddress, int outputSize, short[] normalizedCounts, int maxSymbol, int tableLog)\n    {\n        checkArgument(tableLog <= MAX_TABLE_LOG, \"FSE table too large\");\n        checkArgument(tableLog >= MIN_TABLE_LOG, \"FSE table too small\");\n\n        long output = outputAddress;\n        long outputLimit = outputAddress + outputSize;\n\n        int tableSize = 1 << tableLog;\n\n        int bitCount = 0;\n\n        // encode table size\n        int bitStream = (tableLog - MIN_TABLE_LOG);\n        bitCount += 4;\n\n        int remaining = tableSize + 1; // +1 for extra accuracy\n        int threshold = tableSize;\n        int tableBitCount = tableLog + 1;\n\n        int symbol = 0;\n\n        boolean previousIs0 = false;\n        while (remaining > 1) {\n            if (previousIs0) {\n                // From RFC 8478, section 4.1.1:\n                //   When a symbol has a probability of zero, it is followed by a 2-bit\n                //   repeat flag.  This repeat flag tells how many probabilities of zeroes\n                //   follow the current one.  It provides a number ranging from 0 to 3.\n                //   If it is a 3, another 2-bit repeat flag follows, and so on.\n                int start = symbol;\n\n                // find run of symbols with count 0\n                while (normalizedCounts[symbol] == 0) {\n                    symbol++;\n                }\n\n                // encode in batches if 8 repeat sequences in one shot (representing 24 symbols total)\n                while (symbol >= start + 24) {\n                    start += 24;\n                    bitStream |= (0b11_11_11_11_11_11_11_11 << bitCount);\n                    checkArgument(output + SIZE_OF_SHORT <= outputLimit, \"Output buffer too small\");\n\n                    UNSAFE.putShort(outputBase, output, (short) bitStream);\n                    output += SIZE_OF_SHORT;\n\n                    // flush now, so no need to increase bitCount by 16\n                    bitStream >>>= Short.SIZE;\n                }\n\n                // encode remaining in batches of 3 symbols\n                while (symbol >= start + 3) {\n                    start += 3;\n                    bitStream |= 0b11 << bitCount;\n                    bitCount += 2;\n                }\n\n                // encode tail\n                bitStream |= (symbol - start) << bitCount;\n                bitCount += 2;\n\n                // flush bitstream if necessary\n                if (bitCount > 16) {\n                    checkArgument(output + SIZE_OF_SHORT <= outputLimit, \"Output buffer too small\");\n\n                    UNSAFE.putShort(outputBase, output, (short) bitStream);\n                    output += SIZE_OF_SHORT;\n\n                    bitStream >>>= Short.SIZE;\n                    bitCount -= Short.SIZE;\n                }\n            }\n\n            int count = normalizedCounts[symbol++];\n            int max = (2 * threshold - 1) - remaining;\n            remaining -= count < 0 ? -count : count;\n            count++;   /* +1 for extra accuracy */\n            if (count >= threshold) {\n                count += max;\n            }\n            bitStream |= count << bitCount;\n            bitCount += tableBitCount;\n            bitCount -= (count < max ? 1 : 0);\n            previousIs0 = (count == 1);\n\n            if (remaining < 1) {\n                throw new AssertionError();\n            }\n\n            while (remaining < threshold) {\n                tableBitCount--;\n                threshold >>= 1;\n            }\n\n            // flush bitstream if necessary\n            if (bitCount > 16) {\n                checkArgument(output + SIZE_OF_SHORT <= outputLimit, \"Output buffer too small\");\n\n                UNSAFE.putShort(outputBase, output, (short) bitStream);\n                output += SIZE_OF_SHORT;\n\n                bitStream >>>= Short.SIZE;\n                bitCount -= Short.SIZE;\n            }\n        }\n\n        // flush remaining bitstream\n        checkArgument(output + SIZE_OF_SHORT <= outputLimit, \"Output buffer too small\");\n        UNSAFE.putShort(outputBase, output, (short) bitStream);\n        output += (bitCount + 7) / 8;\n\n        checkArgument(symbol <= maxSymbol + 1, \"Error\"); // TODO\n\n        return (int) (output - outputAddress);\n    }\n\n    public static final class Table\n    {\n        int log2Size;\n        final int[] newState;\n        final byte[] symbol;\n        final byte[] numberOfBits;\n\n        public Table(int log2Capacity)\n        {\n            int capacity = 1 << log2Capacity;\n            newState = new int[capacity];\n            symbol = new byte[capacity];\n            numberOfBits = new byte[capacity];\n        }\n\n        public Table(int log2Size, int[] newState, byte[] symbol, byte[] numberOfBits)\n        {\n            int size = 1 << log2Size;\n            if (newState.length != size || symbol.length != size || numberOfBits.length != size) {\n                throw new IllegalArgumentException(\"Expected arrays to match provided size\");\n            }\n\n            this.log2Size = log2Size;\n            this.newState = newState;\n            this.symbol = symbol;\n            this.numberOfBits = numberOfBits;\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/FrameHeader.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Objects;\nimport java.util.StringJoiner;\n\nimport static io.airlift.compress.v3.zstd.Util.checkState;\nimport static java.lang.Math.min;\nimport static java.lang.Math.toIntExact;\n\nclass FrameHeader\n{\n    final long headerSize;\n    final int windowSize;\n    final long contentSize;\n    final long dictionaryId;\n    final boolean hasChecksum;\n\n    public FrameHeader(long headerSize, int windowSize, long contentSize, long dictionaryId, boolean hasChecksum)\n    {\n        checkState(windowSize >= 0 || contentSize >= 0, \"Invalid frame header: contentSize or windowSize must be set\");\n        this.headerSize = headerSize;\n        this.windowSize = windowSize;\n        this.contentSize = contentSize;\n        this.dictionaryId = dictionaryId;\n        this.hasChecksum = hasChecksum;\n    }\n\n    public int computeRequiredOutputBufferLookBackSize()\n    {\n        if (contentSize < 0) {\n            return windowSize;\n        }\n        if (windowSize < 0) {\n            return toIntExact(contentSize);\n        }\n        return toIntExact(min(windowSize, contentSize));\n    }\n\n    @Override\n    public boolean equals(Object o)\n    {\n        if (this == o) {\n            return true;\n        }\n        if (o == null || getClass() != o.getClass()) {\n            return false;\n        }\n        FrameHeader that = (FrameHeader) o;\n        return headerSize == that.headerSize &&\n                windowSize == that.windowSize &&\n                contentSize == that.contentSize &&\n                dictionaryId == that.dictionaryId &&\n                hasChecksum == that.hasChecksum;\n    }\n\n    @Override\n    public int hashCode()\n    {\n        return Objects.hash(headerSize, windowSize, contentSize, dictionaryId, hasChecksum);\n    }\n\n    @Override\n    public String toString()\n    {\n        return new StringJoiner(\", \", FrameHeader.class.getSimpleName() + \"[\", \"]\")\n                .add(\"headerSize=\" + headerSize)\n                .add(\"windowSize=\" + windowSize)\n                .add(\"contentSize=\" + contentSize)\n                .add(\"dictionaryId=\" + dictionaryId)\n                .add(\"hasChecksum=\" + hasChecksum)\n                .toString();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/FseCompressionTable.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.FiniteStateEntropy.MAX_SYMBOL;\n\nclass FseCompressionTable\n{\n    private final short[] nextState;\n    private final int[] deltaNumberOfBits;\n    private final int[] deltaFindState;\n\n    private int log2Size;\n\n    public FseCompressionTable(int maxTableLog, int maxSymbol)\n    {\n        nextState = new short[1 << maxTableLog];\n        deltaNumberOfBits = new int[maxSymbol + 1];\n        deltaFindState = new int[maxSymbol + 1];\n    }\n\n    public static FseCompressionTable newInstance(short[] normalizedCounts, int maxSymbol, int tableLog)\n    {\n        FseCompressionTable result = new FseCompressionTable(tableLog, maxSymbol);\n        result.initialize(normalizedCounts, maxSymbol, tableLog);\n\n        return result;\n    }\n\n    public void initializeRleTable(int symbol)\n    {\n        log2Size = 0;\n\n        nextState[0] = 0;\n        nextState[1] = 0;\n\n        deltaFindState[symbol] = 0;\n        deltaNumberOfBits[symbol] = 0;\n    }\n\n    public void initialize(short[] normalizedCounts, int maxSymbol, int tableLog)\n    {\n        int tableSize = 1 << tableLog;\n\n        byte[] table = new byte[tableSize]; // TODO: allocate in workspace\n        int highThreshold = tableSize - 1;\n\n        // TODO: make sure FseCompressionTable has enough size\n        log2Size = tableLog;\n\n        // For explanations on how to distribute symbol values over the table:\n        // http://fastcompression.blogspot.fr/2014/02/fse-distributing-symbol-values.html\n\n        // symbol start positions\n        int[] cumulative = new int[MAX_SYMBOL + 2]; // TODO: allocate in workspace\n        cumulative[0] = 0;\n        for (int i = 1; i <= maxSymbol + 1; i++) {\n            if (normalizedCounts[i - 1] == -1) {  // Low probability symbol\n                cumulative[i] = cumulative[i - 1] + 1;\n                table[highThreshold--] = (byte) (i - 1);\n            }\n            else {\n                cumulative[i] = cumulative[i - 1] + normalizedCounts[i - 1];\n            }\n        }\n        cumulative[maxSymbol + 1] = tableSize + 1;\n\n        // Spread symbols\n        int position = spreadSymbols(normalizedCounts, maxSymbol, tableSize, highThreshold, table);\n\n        if (position != 0) {\n            throw new AssertionError(\"Spread symbols failed\");\n        }\n\n        // Build table\n        for (int i = 0; i < tableSize; i++) {\n            byte symbol = table[i];\n            nextState[cumulative[symbol]++] = (short) (tableSize + i);  /* TableU16 : sorted by symbol order; gives next state value */\n        }\n\n        // Build symbol transformation table\n        int total = 0;\n        for (int symbol = 0; symbol <= maxSymbol; symbol++) {\n            switch (normalizedCounts[symbol]) {\n                case 0:\n                    deltaNumberOfBits[symbol] = ((tableLog + 1) << 16) - tableSize;\n                    break;\n                case -1:\n                case 1:\n                    deltaNumberOfBits[symbol] = (tableLog << 16) - tableSize;\n                    deltaFindState[symbol] = total - 1;\n                    total++;\n                    break;\n                default:\n                    int maxBitsOut = tableLog - Util.highestBit(normalizedCounts[symbol] - 1);\n                    int minStatePlus = normalizedCounts[symbol] << maxBitsOut;\n                    deltaNumberOfBits[symbol] = (maxBitsOut << 16) - minStatePlus;\n                    deltaFindState[symbol] = total - normalizedCounts[symbol];\n                    total += normalizedCounts[symbol];\n                    break;\n            }\n        }\n    }\n\n    public int begin(byte symbol)\n    {\n        int outputBits = (deltaNumberOfBits[symbol] + (1 << 15)) >>> 16;\n        int base = ((outputBits << 16) - deltaNumberOfBits[symbol]) >>> outputBits;\n        return nextState[base + deltaFindState[symbol]];\n    }\n\n    public int encode(BitOutputStream stream, int state, int symbol)\n    {\n        int outputBits = (state + deltaNumberOfBits[symbol]) >>> 16;\n        stream.addBits(state, outputBits);\n        return nextState[(state >>> outputBits) + deltaFindState[symbol]];\n    }\n\n    public void finish(BitOutputStream stream, int state)\n    {\n        stream.addBits(state, log2Size);\n        stream.flush();\n    }\n\n    private static int calculateStep(int tableSize)\n    {\n        return (tableSize >>> 1) + (tableSize >>> 3) + 3;\n    }\n\n    public static int spreadSymbols(short[] normalizedCounters, int maxSymbolValue, int tableSize, int highThreshold, byte[] symbols)\n    {\n        int mask = tableSize - 1;\n        int step = calculateStep(tableSize);\n\n        int position = 0;\n        for (byte symbol = 0; symbol <= maxSymbolValue; symbol++) {\n            for (int i = 0; i < normalizedCounters[symbol]; i++) {\n                symbols[position] = symbol;\n                do {\n                    position = (position + step) & mask;\n                }\n                while (position > highThreshold);\n            }\n        }\n        return position;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/FseTableReader.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.FiniteStateEntropy.MAX_SYMBOL;\nimport static io.airlift.compress.v3.zstd.FiniteStateEntropy.MIN_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.highestBit;\nimport static io.airlift.compress.v3.zstd.Util.verify;\n\nclass FseTableReader\n{\n    private final short[] nextSymbol = new short[MAX_SYMBOL + 1];\n    private final short[] normalizedCounters = new short[MAX_SYMBOL + 1];\n\n    public int readFseTable(FiniteStateEntropy.Table table, Object inputBase, long inputAddress, long inputLimit, int maxSymbol, int maxTableLog)\n    {\n        // read table headers\n        long input = inputAddress;\n        verify(inputLimit - inputAddress >= 4, input, \"Not enough input bytes\");\n\n        int threshold;\n        int symbolNumber = 0;\n        boolean previousIsZero = false;\n\n        int bitStream = UNSAFE.getInt(inputBase, input);\n\n        int tableLog = (bitStream & 0xF) + MIN_TABLE_LOG;\n\n        int numberOfBits = tableLog + 1;\n        bitStream >>>= 4;\n        int bitCount = 4;\n\n        verify(tableLog <= maxTableLog, input, \"FSE table size exceeds maximum allowed size\");\n\n        int remaining = (1 << tableLog) + 1;\n        threshold = 1 << tableLog;\n\n        while (remaining > 1 && symbolNumber <= maxSymbol) {\n            if (previousIsZero) {\n                int n0 = symbolNumber;\n                while ((bitStream & 0xFFFF) == 0xFFFF) {\n                    n0 += 24;\n                    if (input < inputLimit - 5) {\n                        input += 2;\n                        bitStream = (UNSAFE.getInt(inputBase, input) >>> bitCount);\n                    }\n                    else {\n                        // end of bit stream\n                        bitStream >>>= 16;\n                        bitCount += 16;\n                    }\n                }\n                while ((bitStream & 3) == 3) {\n                    n0 += 3;\n                    bitStream >>>= 2;\n                    bitCount += 2;\n                }\n                n0 += bitStream & 3;\n                bitCount += 2;\n\n                verify(n0 <= maxSymbol, input, \"Symbol larger than max value\");\n\n                while (symbolNumber < n0) {\n                    normalizedCounters[symbolNumber++] = 0;\n                }\n                if ((input <= inputLimit - 7) || (input + (bitCount >>> 3) <= inputLimit - 4)) {\n                    input += bitCount >>> 3;\n                    bitCount &= 7;\n                    bitStream = UNSAFE.getInt(inputBase, input) >>> bitCount;\n                }\n                else {\n                    bitStream >>>= 2;\n                }\n            }\n\n            short max = (short) ((2 * threshold - 1) - remaining);\n            short count;\n\n            if ((bitStream & (threshold - 1)) < max) {\n                count = (short) (bitStream & (threshold - 1));\n                bitCount += numberOfBits - 1;\n            }\n            else {\n                count = (short) (bitStream & (2 * threshold - 1));\n                if (count >= threshold) {\n                    count -= max;\n                }\n                bitCount += numberOfBits;\n            }\n            count--;  // extra accuracy\n\n            remaining -= Math.abs(count);\n            normalizedCounters[symbolNumber++] = count;\n            previousIsZero = count == 0;\n            while (remaining < threshold) {\n                numberOfBits--;\n                threshold >>>= 1;\n            }\n\n            if ((input <= inputLimit - 7) || (input + (bitCount >> 3) <= inputLimit - 4)) {\n                input += bitCount >>> 3;\n                bitCount &= 7;\n            }\n            else {\n                bitCount -= (int) (8 * (inputLimit - 4 - input));\n                input = inputLimit - 4;\n            }\n            bitStream = UNSAFE.getInt(inputBase, input) >>> (bitCount & 31);\n        }\n\n        verify(remaining == 1 && bitCount <= 32, input, \"Input is corrupted\");\n\n        maxSymbol = symbolNumber - 1;\n        verify(maxSymbol <= MAX_SYMBOL, input, \"Max symbol value too large (too many symbols for FSE)\");\n\n        input += (bitCount + 7) >> 3;\n\n        // populate decoding table\n        int symbolCount = maxSymbol + 1;\n        int tableSize = 1 << tableLog;\n        int highThreshold = tableSize - 1;\n\n        table.log2Size = tableLog;\n\n        for (byte symbol = 0; symbol < symbolCount; symbol++) {\n            if (normalizedCounters[symbol] == -1) {\n                table.symbol[highThreshold--] = symbol;\n                nextSymbol[symbol] = 1;\n            }\n            else {\n                nextSymbol[symbol] = normalizedCounters[symbol];\n            }\n        }\n\n        int position = FseCompressionTable.spreadSymbols(normalizedCounters, maxSymbol, tableSize, highThreshold, table.symbol);\n\n        // position must reach all cells once, otherwise normalizedCounter is incorrect\n        verify(position == 0, input, \"Input is corrupted\");\n\n        for (int i = 0; i < tableSize; i++) {\n            byte symbol = table.symbol[i];\n            short nextState = nextSymbol[symbol]++;\n            table.numberOfBits[i] = (byte) (tableLog - highestBit(nextState));\n            table.newState[i] = (short) ((nextState << table.numberOfBits[i]) - tableSize);\n        }\n\n        return (int) (input - inputAddress);\n    }\n\n    public static void initializeRleTable(FiniteStateEntropy.Table table, byte value)\n    {\n        table.log2Size = 0;\n        table.symbol[0] = value;\n        table.newState[0] = 0;\n        table.numberOfBits[0] = 0;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/Histogram.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class Histogram\n{\n    private Histogram()\n    {\n    }\n\n    // TODO: count parallel heuristic for large inputs\n    private static void count(Object inputBase, long inputAddress, int inputSize, int[] counts)\n    {\n        long input = inputAddress;\n\n        Arrays.fill(counts, 0);\n\n        for (int i = 0; i < inputSize; i++) {\n            int symbol = UNSAFE.getByte(inputBase, input) & 0xFF;\n            input++;\n            counts[symbol]++;\n        }\n    }\n\n    public static int findLargestCount(int[] counts, int maxSymbol)\n    {\n        int max = 0;\n        for (int i = 0; i <= maxSymbol; i++) {\n            if (counts[i] > max) {\n                max = counts[i];\n            }\n        }\n\n        return max;\n    }\n\n    public static int findMaxSymbol(int[] counts, int maxSymbol)\n    {\n        while (counts[maxSymbol] == 0) {\n            maxSymbol--;\n        }\n        return maxSymbol;\n    }\n\n    public static void count(byte[] input, int length, int[] counts)\n    {\n        count(input, ARRAY_BYTE_BASE_OFFSET, length, counts);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/Huffman.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.BitInputStream.isEndOfStream;\nimport static io.airlift.compress.v3.zstd.BitInputStream.peekBitsFast;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.isPowerOf2;\nimport static io.airlift.compress.v3.zstd.Util.verify;\n\nclass Huffman\n{\n    public static final int MAX_SYMBOL = 255;\n    public static final int MAX_SYMBOL_COUNT = MAX_SYMBOL + 1;\n\n    public static final int MAX_TABLE_LOG = 12;\n    public static final int MIN_TABLE_LOG = 5;\n    public static final int MAX_FSE_TABLE_LOG = 6;\n\n    // stats\n    private final byte[] weights = new byte[MAX_SYMBOL + 1];\n    private final int[] ranks = new int[MAX_TABLE_LOG + 1];\n\n    // table\n    private int tableLog = -1;\n    private final byte[] symbols = new byte[1 << MAX_TABLE_LOG];\n    private final byte[] numbersOfBits = new byte[1 << MAX_TABLE_LOG];\n\n    private final FseTableReader reader = new FseTableReader();\n    private final FiniteStateEntropy.Table fseTable = new FiniteStateEntropy.Table(MAX_FSE_TABLE_LOG);\n\n    public boolean isLoaded()\n    {\n        return tableLog != -1;\n    }\n\n    public int readTable(final Object inputBase, final long inputAddress, final int size)\n    {\n        Arrays.fill(ranks, 0);\n        long input = inputAddress;\n\n        // read table header\n        verify(size > 0, input, \"Not enough input bytes\");\n        int inputSize = UNSAFE.getByte(inputBase, input++) & 0xFF;\n\n        int outputSize;\n        if (inputSize >= 128) {\n            outputSize = inputSize - 127;\n            inputSize = ((outputSize + 1) / 2);\n\n            verify(inputSize + 1 <= size, input, \"Not enough input bytes\");\n            verify(outputSize <= MAX_SYMBOL + 1, input, \"Input is corrupted\");\n\n            for (int i = 0; i < outputSize; i += 2) {\n                int value = UNSAFE.getByte(inputBase, input + i / 2) & 0xFF;\n                weights[i] = (byte) (value >>> 4);\n                weights[i + 1] = (byte) (value & 0b1111);\n            }\n        }\n        else {\n            verify(inputSize + 1 <= size, input, \"Not enough input bytes\");\n\n            long inputLimit = input + inputSize;\n            input += reader.readFseTable(fseTable, inputBase, input, inputLimit, FiniteStateEntropy.MAX_SYMBOL, MAX_FSE_TABLE_LOG);\n            outputSize = FiniteStateEntropy.decompress(fseTable, inputBase, input, inputLimit, weights);\n        }\n\n        int totalWeight = 0;\n        for (int i = 0; i < outputSize; i++) {\n            ranks[weights[i]]++;\n            totalWeight += (1 << weights[i]) >> 1;   // TODO same as 1 << (weights[n] - 1)?\n        }\n        verify(totalWeight != 0, input, \"Input is corrupted\");\n\n        tableLog = Util.highestBit(totalWeight) + 1;\n        verify(tableLog <= MAX_TABLE_LOG, input, \"Input is corrupted\");\n\n        int total = 1 << tableLog;\n        int rest = total - totalWeight;\n        verify(isPowerOf2(rest), input, \"Input is corrupted\");\n\n        int lastWeight = Util.highestBit(rest) + 1;\n\n        weights[outputSize] = (byte) lastWeight;\n        ranks[lastWeight]++;\n\n        int numberOfSymbols = outputSize + 1;\n\n        // populate table\n        int nextRankStart = 0;\n        for (int i = 1; i < tableLog + 1; ++i) {\n            int current = nextRankStart;\n            nextRankStart += ranks[i] << (i - 1);\n            ranks[i] = current;\n        }\n\n        for (int n = 0; n < numberOfSymbols; n++) {\n            int weight = weights[n];\n            int length = (1 << weight) >> 1;  // TODO: 1 << (weight - 1) ??\n\n            byte symbol = (byte) n;\n            byte numberOfBits = (byte) (tableLog + 1 - weight);\n            for (int i = ranks[weight]; i < ranks[weight] + length; i++) {\n                symbols[i] = symbol;\n                numbersOfBits[i] = numberOfBits;\n            }\n            ranks[weight] += length;\n        }\n\n        verify(ranks[1] >= 2 && (ranks[1] & 1) == 0, input, \"Input is corrupted\");\n\n        return inputSize + 1;\n    }\n\n    public void decodeSingleStream(final Object inputBase, final long inputAddress, final long inputLimit, final Object outputBase, final long outputAddress, final long outputLimit)\n    {\n        BitInputStream.Initializer initializer = new BitInputStream.Initializer(inputBase, inputAddress, inputLimit);\n        initializer.initialize();\n\n        long bits = initializer.getBits();\n        int bitsConsumed = initializer.getBitsConsumed();\n        long currentAddress = initializer.getCurrentAddress();\n\n        int tableLog = this.tableLog;\n        byte[] numbersOfBits = this.numbersOfBits;\n        byte[] symbols = this.symbols;\n\n        // 4 symbols at a time\n        long output = outputAddress;\n        long fastOutputLimit = outputLimit - 4;\n        while (output < fastOutputLimit) {\n            BitInputStream.Loader loader = new BitInputStream.Loader(inputBase, inputAddress, currentAddress, bits, bitsConsumed);\n            boolean done = loader.load();\n            bits = loader.getBits();\n            bitsConsumed = loader.getBitsConsumed();\n            currentAddress = loader.getCurrentAddress();\n            if (done) {\n                break;\n            }\n\n            bitsConsumed = decodeSymbol(outputBase, output, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n            bitsConsumed = decodeSymbol(outputBase, output + 1, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n            bitsConsumed = decodeSymbol(outputBase, output + 2, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n            bitsConsumed = decodeSymbol(outputBase, output + 3, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n            output += SIZE_OF_INT;\n        }\n\n        decodeTail(inputBase, inputAddress, currentAddress, bitsConsumed, bits, outputBase, output, outputLimit);\n    }\n\n    public void decode4Streams(final Object inputBase, final long inputAddress, final long inputLimit, final Object outputBase, final long outputAddress, final long outputLimit)\n    {\n        verify(inputLimit - inputAddress >= 10, inputAddress, \"Input is corrupted\"); // jump table + 1 byte per stream\n\n        long start1 = inputAddress + 3 * SIZE_OF_SHORT; // for the shorts we read below\n        long start2 = start1 + (UNSAFE.getShort(inputBase, inputAddress) & 0xFFFF);\n        long start3 = start2 + (UNSAFE.getShort(inputBase, inputAddress + 2) & 0xFFFF);\n        long start4 = start3 + (UNSAFE.getShort(inputBase, inputAddress + 4) & 0xFFFF);\n\n        verify(start2 < start3 && start3 < start4 && start4 < inputLimit, inputAddress, \"Input is corrupted\");\n\n        BitInputStream.Initializer initializer = new BitInputStream.Initializer(inputBase, start1, start2);\n        initializer.initialize();\n        int stream1bitsConsumed = initializer.getBitsConsumed();\n        long stream1currentAddress = initializer.getCurrentAddress();\n        long stream1bits = initializer.getBits();\n\n        initializer = new BitInputStream.Initializer(inputBase, start2, start3);\n        initializer.initialize();\n        int stream2bitsConsumed = initializer.getBitsConsumed();\n        long stream2currentAddress = initializer.getCurrentAddress();\n        long stream2bits = initializer.getBits();\n\n        initializer = new BitInputStream.Initializer(inputBase, start3, start4);\n        initializer.initialize();\n        int stream3bitsConsumed = initializer.getBitsConsumed();\n        long stream3currentAddress = initializer.getCurrentAddress();\n        long stream3bits = initializer.getBits();\n\n        initializer = new BitInputStream.Initializer(inputBase, start4, inputLimit);\n        initializer.initialize();\n        int stream4bitsConsumed = initializer.getBitsConsumed();\n        long stream4currentAddress = initializer.getCurrentAddress();\n        long stream4bits = initializer.getBits();\n\n        int segmentSize = (int) ((outputLimit - outputAddress + 3) / 4);\n\n        long outputStart2 = outputAddress + segmentSize;\n        long outputStart3 = outputStart2 + segmentSize;\n        long outputStart4 = outputStart3 + segmentSize;\n\n        long output1 = outputAddress;\n        long output2 = outputStart2;\n        long output3 = outputStart3;\n        long output4 = outputStart4;\n\n        long fastOutputLimit = outputLimit - 7;\n        int tableLog = this.tableLog;\n        byte[] numbersOfBits = this.numbersOfBits;\n        byte[] symbols = this.symbols;\n\n        while (output4 < fastOutputLimit) {\n            stream1bitsConsumed = decodeSymbol(outputBase, output1, stream1bits, stream1bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream2bitsConsumed = decodeSymbol(outputBase, output2, stream2bits, stream2bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream3bitsConsumed = decodeSymbol(outputBase, output3, stream3bits, stream3bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream4bitsConsumed = decodeSymbol(outputBase, output4, stream4bits, stream4bitsConsumed, tableLog, numbersOfBits, symbols);\n\n            stream1bitsConsumed = decodeSymbol(outputBase, output1 + 1, stream1bits, stream1bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream2bitsConsumed = decodeSymbol(outputBase, output2 + 1, stream2bits, stream2bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream3bitsConsumed = decodeSymbol(outputBase, output3 + 1, stream3bits, stream3bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream4bitsConsumed = decodeSymbol(outputBase, output4 + 1, stream4bits, stream4bitsConsumed, tableLog, numbersOfBits, symbols);\n\n            stream1bitsConsumed = decodeSymbol(outputBase, output1 + 2, stream1bits, stream1bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream2bitsConsumed = decodeSymbol(outputBase, output2 + 2, stream2bits, stream2bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream3bitsConsumed = decodeSymbol(outputBase, output3 + 2, stream3bits, stream3bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream4bitsConsumed = decodeSymbol(outputBase, output4 + 2, stream4bits, stream4bitsConsumed, tableLog, numbersOfBits, symbols);\n\n            stream1bitsConsumed = decodeSymbol(outputBase, output1 + 3, stream1bits, stream1bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream2bitsConsumed = decodeSymbol(outputBase, output2 + 3, stream2bits, stream2bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream3bitsConsumed = decodeSymbol(outputBase, output3 + 3, stream3bits, stream3bitsConsumed, tableLog, numbersOfBits, symbols);\n            stream4bitsConsumed = decodeSymbol(outputBase, output4 + 3, stream4bits, stream4bitsConsumed, tableLog, numbersOfBits, symbols);\n\n            output1 += SIZE_OF_INT;\n            output2 += SIZE_OF_INT;\n            output3 += SIZE_OF_INT;\n            output4 += SIZE_OF_INT;\n\n            BitInputStream.Loader loader = new BitInputStream.Loader(inputBase, start1, stream1currentAddress, stream1bits, stream1bitsConsumed);\n            boolean done = loader.load();\n            stream1bitsConsumed = loader.getBitsConsumed();\n            stream1bits = loader.getBits();\n            stream1currentAddress = loader.getCurrentAddress();\n\n            if (done) {\n                break;\n            }\n\n            loader = new BitInputStream.Loader(inputBase, start2, stream2currentAddress, stream2bits, stream2bitsConsumed);\n            done = loader.load();\n            stream2bitsConsumed = loader.getBitsConsumed();\n            stream2bits = loader.getBits();\n            stream2currentAddress = loader.getCurrentAddress();\n\n            if (done) {\n                break;\n            }\n\n            loader = new BitInputStream.Loader(inputBase, start3, stream3currentAddress, stream3bits, stream3bitsConsumed);\n            done = loader.load();\n            stream3bitsConsumed = loader.getBitsConsumed();\n            stream3bits = loader.getBits();\n            stream3currentAddress = loader.getCurrentAddress();\n            if (done) {\n                break;\n            }\n\n            loader = new BitInputStream.Loader(inputBase, start4, stream4currentAddress, stream4bits, stream4bitsConsumed);\n            done = loader.load();\n            stream4bitsConsumed = loader.getBitsConsumed();\n            stream4bits = loader.getBits();\n            stream4currentAddress = loader.getCurrentAddress();\n            if (done) {\n                break;\n            }\n        }\n\n        verify(output1 <= outputStart2 && output2 <= outputStart3 && output3 <= outputStart4, inputAddress, \"Input is corrupted\");\n\n        /// finish streams one by one\n        decodeTail(inputBase, start1, stream1currentAddress, stream1bitsConsumed, stream1bits, outputBase, output1, outputStart2);\n        decodeTail(inputBase, start2, stream2currentAddress, stream2bitsConsumed, stream2bits, outputBase, output2, outputStart3);\n        decodeTail(inputBase, start3, stream3currentAddress, stream3bitsConsumed, stream3bits, outputBase, output3, outputStart4);\n        decodeTail(inputBase, start4, stream4currentAddress, stream4bitsConsumed, stream4bits, outputBase, output4, outputLimit);\n    }\n\n    private void decodeTail(final Object inputBase, final long startAddress, long currentAddress, int bitsConsumed, long bits, final Object outputBase, long outputAddress, final long outputLimit)\n    {\n        int tableLog = this.tableLog;\n        byte[] numbersOfBits = this.numbersOfBits;\n        byte[] symbols = this.symbols;\n\n        // closer to the end\n        while (outputAddress < outputLimit) {\n            BitInputStream.Loader loader = new BitInputStream.Loader(inputBase, startAddress, currentAddress, bits, bitsConsumed);\n            boolean done = loader.load();\n            bitsConsumed = loader.getBitsConsumed();\n            bits = loader.getBits();\n            currentAddress = loader.getCurrentAddress();\n            if (done) {\n                break;\n            }\n\n            bitsConsumed = decodeSymbol(outputBase, outputAddress++, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n        }\n\n        // not more data in bit stream, so no need to reload\n        while (outputAddress < outputLimit) {\n            bitsConsumed = decodeSymbol(outputBase, outputAddress++, bits, bitsConsumed, tableLog, numbersOfBits, symbols);\n        }\n\n        verify(isEndOfStream(startAddress, currentAddress, bitsConsumed), startAddress, \"Bit stream is not fully consumed\");\n    }\n\n    private static int decodeSymbol(Object outputBase, long outputAddress, long bitContainer, int bitsConsumed, int tableLog, byte[] numbersOfBits, byte[] symbols)\n    {\n        int value = (int) peekBitsFast(bitsConsumed, bitContainer, tableLog);\n        UNSAFE.putByte(outputBase, outputAddress, symbols[value]);\n        return bitsConsumed + numbersOfBits[value];\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/HuffmanCompressionContext.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nclass HuffmanCompressionContext\n{\n    private final HuffmanTableWriterWorkspace tableWriterWorkspace = new HuffmanTableWriterWorkspace();\n    private final HuffmanCompressionTableWorkspace compressionTableWorkspace = new HuffmanCompressionTableWorkspace();\n\n    private HuffmanCompressionTable previousTable = new HuffmanCompressionTable(Huffman.MAX_SYMBOL_COUNT);\n    private HuffmanCompressionTable temporaryTable = new HuffmanCompressionTable(Huffman.MAX_SYMBOL_COUNT);\n\n    private HuffmanCompressionTable previousCandidate = previousTable;\n    private HuffmanCompressionTable temporaryCandidate = temporaryTable;\n\n    public HuffmanCompressionTable getPreviousTable()\n    {\n        return previousTable;\n    }\n\n    public HuffmanCompressionTable borrowTemporaryTable()\n    {\n        previousCandidate = temporaryTable;\n        temporaryCandidate = previousTable;\n\n        return temporaryTable;\n    }\n\n    public void discardTemporaryTable()\n    {\n        previousCandidate = previousTable;\n        temporaryCandidate = temporaryTable;\n    }\n\n    public void saveChanges()\n    {\n        temporaryTable = temporaryCandidate;\n        previousTable = previousCandidate;\n    }\n\n    public HuffmanCompressionTableWorkspace getCompressionTableWorkspace()\n    {\n        return compressionTableWorkspace;\n    }\n\n    public HuffmanTableWriterWorkspace getTableWriterWorkspace()\n    {\n        return tableWriterWorkspace;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/HuffmanCompressionTable.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_FSE_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_SYMBOL_COUNT;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Huffman.MIN_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\nimport static io.airlift.compress.v3.zstd.Util.minTableLog;\n\nfinal class HuffmanCompressionTable\n{\n    private final short[] values;\n    private final byte[] numberOfBits;\n\n    private int maxSymbol;\n    private int maxNumberOfBits;\n\n    public HuffmanCompressionTable(int capacity)\n    {\n        this.values = new short[capacity];\n        this.numberOfBits = new byte[capacity];\n    }\n\n    public static int optimalNumberOfBits(int maxNumberOfBits, int inputSize, int maxSymbol)\n    {\n        if (inputSize <= 1) {\n            throw new IllegalArgumentException(); // not supported. Use RLE instead\n        }\n\n        int result = maxNumberOfBits;\n\n        result = Math.min(result, Util.highestBit((inputSize - 1)) - 1); // we may be able to reduce accuracy if input is small\n\n        // Need a minimum to safely represent all symbol values\n        result = Math.max(result, minTableLog(inputSize, maxSymbol));\n\n        result = Math.max(result, MIN_TABLE_LOG); // absolute minimum for Huffman\n        result = Math.min(result, MAX_TABLE_LOG); // absolute maximum for Huffman\n\n        return result;\n    }\n\n    public void initialize(int[] counts, int maxSymbol, int maxNumberOfBits, HuffmanCompressionTableWorkspace workspace)\n    {\n        checkArgument(maxSymbol <= MAX_SYMBOL, \"Max symbol value too large\");\n\n        workspace.reset();\n\n        NodeTable nodeTable = workspace.nodeTable;\n        nodeTable.reset();\n\n        int lastNonZero = buildTree(counts, maxSymbol, nodeTable);\n\n        // enforce max table log\n        maxNumberOfBits = setMaxHeight(nodeTable, lastNonZero, maxNumberOfBits, workspace);\n        checkArgument(maxNumberOfBits <= MAX_TABLE_LOG, \"Max number of bits larger than max table size\");\n\n        // populate table\n        int symbolCount = maxSymbol + 1;\n        for (int node = 0; node < symbolCount; node++) {\n            int symbol = nodeTable.symbols[node];\n            numberOfBits[symbol] = nodeTable.numberOfBits[node];\n        }\n\n        short[] entriesPerRank = workspace.entriesPerRank;\n        short[] valuesPerRank = workspace.valuesPerRank;\n\n        for (int n = 0; n <= lastNonZero; n++) {\n            entriesPerRank[nodeTable.numberOfBits[n]]++;\n        }\n\n        // determine starting value per rank\n        short startingValue = 0;\n        for (int rank = maxNumberOfBits; rank > 0; rank--) {\n            valuesPerRank[rank] = startingValue; // get starting value within each rank\n            startingValue += entriesPerRank[rank];\n            startingValue >>>= 1;\n        }\n\n        for (int n = 0; n <= maxSymbol; n++) {\n            values[n] = valuesPerRank[numberOfBits[n]]++; // assign value within rank, symbol order\n        }\n\n        this.maxSymbol = maxSymbol;\n        this.maxNumberOfBits = maxNumberOfBits;\n    }\n\n    private int buildTree(int[] counts, int maxSymbol, NodeTable nodeTable)\n    {\n        // populate the leaves of the node table from the histogram of counts\n        // in descending order by count, ascending by symbol value.\n        short current = 0;\n\n        for (int symbol = 0; symbol <= maxSymbol; symbol++) {\n            int count = counts[symbol];\n\n            // simple insertion sort\n            int position = current;\n            while (position > 1 && count > nodeTable.count[position - 1]) {\n                nodeTable.copyNode(position - 1, position);\n                position--;\n            }\n\n            nodeTable.count[position] = count;\n            nodeTable.symbols[position] = symbol;\n\n            current++;\n        }\n\n        int lastNonZero = maxSymbol;\n        while (nodeTable.count[lastNonZero] == 0) {\n            lastNonZero--;\n        }\n\n        // populate the non-leaf nodes\n        short nonLeafStart = MAX_SYMBOL_COUNT;\n        current = nonLeafStart;\n\n        int currentLeaf = lastNonZero;\n\n        // combine the two smallest leaves to create the first intermediate node\n        int currentNonLeaf = current;\n        nodeTable.count[current] = nodeTable.count[currentLeaf] + nodeTable.count[currentLeaf - 1];\n        nodeTable.parents[currentLeaf] = current;\n        nodeTable.parents[currentLeaf - 1] = current;\n        current++;\n        currentLeaf -= 2;\n\n        int root = MAX_SYMBOL_COUNT + lastNonZero - 1;\n\n        // fill in sentinels\n        for (int n = current; n <= root; n++) {\n            nodeTable.count[n] = 1 << 30;\n        }\n\n        // create parents\n        while (current <= root) {\n            int child1;\n            if (currentLeaf >= 0 && nodeTable.count[currentLeaf] < nodeTable.count[currentNonLeaf]) {\n                child1 = currentLeaf--;\n            }\n            else {\n                child1 = currentNonLeaf++;\n            }\n\n            int child2;\n            if (currentLeaf >= 0 && nodeTable.count[currentLeaf] < nodeTable.count[currentNonLeaf]) {\n                child2 = currentLeaf--;\n            }\n            else {\n                child2 = currentNonLeaf++;\n            }\n\n            nodeTable.count[current] = nodeTable.count[child1] + nodeTable.count[child2];\n            nodeTable.parents[child1] = current;\n            nodeTable.parents[child2] = current;\n            current++;\n        }\n\n        // distribute weights\n        nodeTable.numberOfBits[root] = 0;\n        for (int n = root - 1; n >= nonLeafStart; n--) {\n            short parent = nodeTable.parents[n];\n            nodeTable.numberOfBits[n] = (byte) (nodeTable.numberOfBits[parent] + 1);\n        }\n\n        for (int n = 0; n <= lastNonZero; n++) {\n            short parent = nodeTable.parents[n];\n            nodeTable.numberOfBits[n] = (byte) (nodeTable.numberOfBits[parent] + 1);\n        }\n\n        return lastNonZero;\n    }\n\n    // TODO: consider encoding 2 symbols at a time\n    //   - need a table with 256x256 entries with\n    //      - the concatenated bits for the corresponding pair of symbols\n    //      - the sum of bits for the corresponding pair of symbols\n    //   - read 2 symbols at a time from the input\n    public void encodeSymbol(BitOutputStream output, int symbol)\n    {\n        output.addBitsFast(values[symbol], numberOfBits[symbol]);\n    }\n\n    public int write(Object outputBase, long outputAddress, int outputSize, HuffmanTableWriterWorkspace workspace)\n    {\n        byte[] weights = workspace.weights;\n\n        long output = outputAddress;\n\n        int maxNumberOfBits = this.maxNumberOfBits;\n        int maxSymbol = this.maxSymbol;\n\n        // convert to weights per RFC 8478 section 4.2.1\n        for (int symbol = 0; symbol < maxSymbol; symbol++) {\n            int bits = numberOfBits[symbol];\n\n            if (bits == 0) {\n                weights[symbol] = 0;\n            }\n            else {\n                weights[symbol] = (byte) (maxNumberOfBits + 1 - bits);\n            }\n        }\n\n        // attempt weights compression by FSE\n        int size = compressWeights(outputBase, output + 1, outputSize - 1, weights, maxSymbol, workspace);\n\n        if (maxSymbol > 127 && size > 127) {\n            // This should never happen. Since weights are in the range [0, 12], they can be compressed optimally to ~3.7 bits per symbol for a uniform distribution.\n            // Since maxSymbol has to be <= MAX_SYMBOL (255), this is 119 bytes + FSE headers.\n            throw new AssertionError();\n        }\n\n        if (size != 0 && size != 1 && size < maxSymbol / 2) {\n            // Go with FSE only if:\n            //   - the weights are compressible\n            //   - the compressed size is better than what we'd get with the raw encoding below\n            //   - the compressed size is <= 127 bytes, which is the most that the encoding can hold for FSE-compressed weights (see RFC 8478 section 4.2.1.1). This is implied\n            //     by the maxSymbol / 2 check, since maxSymbol must be <= 255\n            UNSAFE.putByte(outputBase, output, (byte) size);\n            return size + 1; // header + size\n        }\n        else {\n            // Use raw encoding (4 bits per entry)\n\n            // #entries = #symbols - 1 since last symbol is implicit. Thus, #entries = (maxSymbol + 1) - 1 = maxSymbol\n            int entryCount = maxSymbol;\n\n            size = (entryCount + 1) / 2;  // ceil(#entries / 2)\n            checkArgument(size + 1 /* header */ <= outputSize, \"Output size too small\"); // 2 entries per byte\n\n            // encode number of symbols\n            // header = #entries + 127 per RFC\n            UNSAFE.putByte(outputBase, output, (byte) (127 + entryCount));\n            output++;\n\n            weights[maxSymbol] = 0; // last weight is implicit, so set to 0 so that it doesn't get encoded below\n            for (int i = 0; i < entryCount; i += 2) {\n                UNSAFE.putByte(outputBase, output, (byte) ((weights[i] << 4) + weights[i + 1]));\n                output++;\n            }\n\n            return (int) (output - outputAddress);\n        }\n    }\n\n    /**\n     * Can this table encode all symbols with non-zero count?\n     */\n    public boolean isValid(int[] counts, int maxSymbol)\n    {\n        if (maxSymbol > this.maxSymbol) {\n            // some non-zero count symbols cannot be encoded by the current table\n            return false;\n        }\n\n        for (int symbol = 0; symbol <= maxSymbol; ++symbol) {\n            if (counts[symbol] != 0 && numberOfBits[symbol] == 0) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    public int estimateCompressedSize(int[] counts, int maxSymbol)\n    {\n        int numberOfBits = 0;\n        for (int symbol = 0; symbol <= Math.min(maxSymbol, this.maxSymbol); symbol++) {\n            numberOfBits += this.numberOfBits[symbol] * counts[symbol];\n        }\n\n        return numberOfBits >>> 3; // convert to bytes\n    }\n\n    // http://fastcompression.blogspot.com/2015/07/huffman-revisited-part-3-depth-limited.html\n    private static int setMaxHeight(NodeTable nodeTable, int lastNonZero, int maxNumberOfBits, HuffmanCompressionTableWorkspace workspace)\n    {\n        int largestBits = nodeTable.numberOfBits[lastNonZero];\n\n        if (largestBits <= maxNumberOfBits) {\n            return largestBits;   // early exit: no elements > maxNumberOfBits\n        }\n\n        // there are several too large elements (at least >= 2)\n        int totalCost = 0;\n        int baseCost = 1 << (largestBits - maxNumberOfBits);\n        int n = lastNonZero;\n\n        while (nodeTable.numberOfBits[n] > maxNumberOfBits) {\n            totalCost += baseCost - (1 << (largestBits - nodeTable.numberOfBits[n]));\n            nodeTable.numberOfBits[n ] = (byte) maxNumberOfBits;\n            n--;\n        }  // n stops at nodeTable.numberOfBits[n + offset] <= maxNumberOfBits\n\n        while (nodeTable.numberOfBits[n] == maxNumberOfBits) {\n            n--;   // n ends at index of smallest symbol using < maxNumberOfBits\n        }\n\n        // renormalize totalCost\n        totalCost >>>= (largestBits - maxNumberOfBits);  // note: totalCost is necessarily a multiple of baseCost\n\n        // repay normalized cost\n        int noSymbol = 0xF0F0F0F0;\n        int[] rankLast = workspace.rankLast;\n        Arrays.fill(rankLast, noSymbol);\n\n        // Get pos of last (smallest) symbol per rank\n        int currentNbBits = maxNumberOfBits;\n        for (int pos = n; pos >= 0; pos--) {\n            if (nodeTable.numberOfBits[pos] >= currentNbBits) {\n                continue;\n            }\n            currentNbBits = nodeTable.numberOfBits[pos];   // < maxNumberOfBits\n            rankLast[maxNumberOfBits - currentNbBits] = pos;\n        }\n\n        while (totalCost > 0) {\n            int numberOfBitsToDecrease = Util.highestBit(totalCost) + 1;\n            for (; numberOfBitsToDecrease > 1; numberOfBitsToDecrease--) {\n                int highPosition = rankLast[numberOfBitsToDecrease];\n                int lowPosition = rankLast[numberOfBitsToDecrease - 1];\n                if (highPosition == noSymbol) {\n                    continue;\n                }\n                if (lowPosition == noSymbol) {\n                    break;\n                }\n                int highTotal = nodeTable.count[highPosition];\n                int lowTotal = 2 * nodeTable.count[lowPosition];\n                if (highTotal <= lowTotal) {\n                    break;\n                }\n            }\n\n            // only triggered when no more rank 1 symbol left => find closest one (note : there is necessarily at least one !)\n            // HUF_MAX_TABLELOG test just to please gcc 5+; but it should not be necessary\n            while ((numberOfBitsToDecrease <= MAX_TABLE_LOG) && (rankLast[numberOfBitsToDecrease] == noSymbol)) {\n                numberOfBitsToDecrease++;\n            }\n            totalCost -= 1 << (numberOfBitsToDecrease - 1);\n            if (rankLast[numberOfBitsToDecrease - 1] == noSymbol) {\n                rankLast[numberOfBitsToDecrease - 1] = rankLast[numberOfBitsToDecrease];   // this rank is no longer empty\n            }\n            nodeTable.numberOfBits[rankLast[numberOfBitsToDecrease]]++;\n            if (rankLast[numberOfBitsToDecrease] == 0) {   /* special case, reached largest symbol */\n                rankLast[numberOfBitsToDecrease] = noSymbol;\n            }\n            else {\n                rankLast[numberOfBitsToDecrease]--;\n                if (nodeTable.numberOfBits[rankLast[numberOfBitsToDecrease]] != maxNumberOfBits - numberOfBitsToDecrease) {\n                    rankLast[numberOfBitsToDecrease] = noSymbol;   // this rank is now empty\n                }\n            }\n        }\n\n        while (totalCost < 0) {  // Sometimes, cost correction overshoot\n            if (rankLast[1] == noSymbol) {  /* special case : no rank 1 symbol (using maxNumberOfBits-1); let's create one from largest rank 0 (using maxNumberOfBits) */\n                while (nodeTable.numberOfBits[n] == maxNumberOfBits) {\n                    n--;\n                }\n                nodeTable.numberOfBits[n + 1]--;\n                rankLast[1] = n + 1;\n                totalCost++;\n                continue;\n            }\n            nodeTable.numberOfBits[rankLast[1] + 1]--;\n            rankLast[1]++;\n            totalCost++;\n        }\n\n        return maxNumberOfBits;\n    }\n\n    /**\n     * All elements within weightTable must be <= Huffman.MAX_TABLE_LOG\n     */\n    private static int compressWeights(Object outputBase, long outputAddress, int outputSize, byte[] weights, int weightsLength, HuffmanTableWriterWorkspace workspace)\n    {\n        if (weightsLength <= 1) {\n            return 0; // Not compressible\n        }\n\n        // Scan input and build symbol stats\n        int[] counts = workspace.counts;\n        Histogram.count(weights, weightsLength, counts);\n        int maxSymbol = Histogram.findMaxSymbol(counts, MAX_TABLE_LOG);\n        int maxCount = Histogram.findLargestCount(counts, maxSymbol);\n\n        if (maxCount == weightsLength) {\n            return 1; // only a single symbol in source\n        }\n        if (maxCount == 1) {\n            return 0; // each symbol present maximum once => not compressible\n        }\n\n        short[] normalizedCounts = workspace.normalizedCounts;\n\n        int tableLog = FiniteStateEntropy.optimalTableLog(MAX_FSE_TABLE_LOG, weightsLength, maxSymbol);\n        FiniteStateEntropy.normalizeCounts(normalizedCounts, tableLog, counts, weightsLength, maxSymbol);\n\n        long output = outputAddress;\n        long outputLimit = outputAddress + outputSize;\n\n        // Write table description header\n        int headerSize = FiniteStateEntropy.writeNormalizedCounts(outputBase, output, outputSize, normalizedCounts, maxSymbol, tableLog);\n        output += headerSize;\n\n        // Compress\n        FseCompressionTable compressionTable = workspace.fseTable;\n        compressionTable.initialize(normalizedCounts, maxSymbol, tableLog);\n        int compressedSize = FiniteStateEntropy.compress(outputBase, output, (int) (outputLimit - output), weights, weightsLength, compressionTable);\n        if (compressedSize == 0) {\n            return 0;\n        }\n        output += compressedSize;\n\n        return (int) (output - outputAddress);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/HuffmanCompressionTableWorkspace.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nclass HuffmanCompressionTableWorkspace\n{\n    public final NodeTable nodeTable = new NodeTable((2 * Huffman.MAX_SYMBOL_COUNT - 1)); // number of nodes in binary tree with MAX_SYMBOL_COUNT leaves\n\n    public final short[] entriesPerRank = new short[Huffman.MAX_TABLE_LOG + 1];\n    public final short[] valuesPerRank = new short[Huffman.MAX_TABLE_LOG + 1];\n\n    // for setMaxHeight\n    public final int[] rankLast = new int[Huffman.MAX_TABLE_LOG + 2];\n\n    public void reset()\n    {\n        Arrays.fill(entriesPerRank, (short) 0);\n        Arrays.fill(valuesPerRank, (short) 0);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/HuffmanCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\n\nfinal class HuffmanCompressor\n{\n    private HuffmanCompressor()\n    {\n    }\n\n    public static int compress4streams(Object outputBase, long outputAddress, int outputSize, Object inputBase, long inputAddress, int inputSize, HuffmanCompressionTable table)\n    {\n        long input = inputAddress;\n        long inputLimit = inputAddress + inputSize;\n        long output = outputAddress;\n        long outputLimit = outputAddress + outputSize;\n\n        int segmentSize = (inputSize + 3) / 4;\n\n        if (outputSize < 6 /* jump table */ + 1 /* first stream */ + 1 /* second stream */ + 1 /* third stream */ + 8 /* 8 bytes minimum needed by the bitstream encoder */) {\n            return 0; // minimum space to compress successfully\n        }\n\n        if (inputSize <= 6 + 1 + 1 + 1) { // jump table + one byte per stream\n            return 0;  // no saving possible: input too small\n        }\n\n        output += SIZE_OF_SHORT + SIZE_OF_SHORT + SIZE_OF_SHORT; // jump table\n\n        int compressedSize;\n\n        // first segment\n        compressedSize = compressSingleStream(outputBase, output, (int) (outputLimit - output), inputBase, input, segmentSize, table);\n        if (compressedSize == 0) {\n            return 0;\n        }\n        UNSAFE.putShort(outputBase, outputAddress, (short) compressedSize);\n        output += compressedSize;\n        input += segmentSize;\n\n        // second segment\n        compressedSize = compressSingleStream(outputBase, output, (int) (outputLimit - output), inputBase, input, segmentSize, table);\n        if (compressedSize == 0) {\n            return 0;\n        }\n        UNSAFE.putShort(outputBase, outputAddress + SIZE_OF_SHORT, (short) compressedSize);\n        output += compressedSize;\n        input += segmentSize;\n\n        // third segment\n        compressedSize = compressSingleStream(outputBase, output, (int) (outputLimit - output), inputBase, input, segmentSize, table);\n        if (compressedSize == 0) {\n            return 0;\n        }\n        UNSAFE.putShort(outputBase, outputAddress + SIZE_OF_SHORT + SIZE_OF_SHORT, (short) compressedSize);\n        output += compressedSize;\n        input += segmentSize;\n\n        // fourth segment\n        compressedSize = compressSingleStream(outputBase, output, (int) (outputLimit - output), inputBase, input, (int) (inputLimit - input), table);\n        if (compressedSize == 0) {\n            return 0;\n        }\n        output += compressedSize;\n\n        return (int) (output - outputAddress);\n    }\n\n    public static int compressSingleStream(Object outputBase, long outputAddress, int outputSize, Object inputBase, long inputAddress, int inputSize, HuffmanCompressionTable table)\n    {\n        if (outputSize < SIZE_OF_LONG) {\n            return 0;\n        }\n\n        BitOutputStream bitstream = new BitOutputStream(outputBase, outputAddress, outputSize);\n        long input = inputAddress;\n\n        int n = inputSize & ~3; // join to mod 4\n\n        switch (inputSize & 3) {\n            case 3:\n                table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n + 2) & 0xFF);\n                if (SIZE_OF_LONG * 8 < Huffman.MAX_TABLE_LOG * 4 + 7) {\n                    bitstream.flush();\n                }\n                // fall-through\n            case 2:\n                table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n + 1) & 0xFF);\n                if (SIZE_OF_LONG * 8 < Huffman.MAX_TABLE_LOG * 2 + 7) {\n                    bitstream.flush();\n                }\n                // fall-through\n            case 1:\n                table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n + 0) & 0xFF);\n                bitstream.flush();\n                // fall-through\n            case 0: /* fall-through */\n            default:\n                break;\n        }\n\n        for (; n > 0; n -= 4) {  // note: n & 3 == 0 at this stage\n            table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n - 1) & 0xFF);\n            if (SIZE_OF_LONG * 8 < Huffman.MAX_TABLE_LOG * 2 + 7) {\n                bitstream.flush();\n            }\n            table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n - 2) & 0xFF);\n            if (SIZE_OF_LONG * 8 < Huffman.MAX_TABLE_LOG * 4 + 7) {\n                bitstream.flush();\n            }\n            table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n - 3) & 0xFF);\n            if (SIZE_OF_LONG * 8 < Huffman.MAX_TABLE_LOG * 2 + 7) {\n                bitstream.flush();\n            }\n            table.encodeSymbol(bitstream, UNSAFE.getByte(inputBase, input + n - 4) & 0xFF);\n            bitstream.flush();\n        }\n\n        return bitstream.close();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/HuffmanTableWriterWorkspace.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_FSE_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_TABLE_LOG;\n\nclass HuffmanTableWriterWorkspace\n{\n    // for encoding weights\n    public final byte[] weights = new byte[MAX_SYMBOL]; // the weight for the last symbol is implicit\n\n    // for compressing weights\n    public final int[] counts = new int[MAX_TABLE_LOG + 1];\n    public final short[] normalizedCounts = new short[MAX_TABLE_LOG + 1];\n    public final FseCompressionTable fseTable = new FseCompressionTable(MAX_FSE_TABLE_LOG, MAX_TABLE_LOG);\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/NodeTable.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.util.Arrays;\n\nclass NodeTable\n{\n    int[] count;\n    short[] parents;\n    int[] symbols;\n    byte[] numberOfBits;\n\n    public NodeTable(int size)\n    {\n        count = new int[size];\n        parents = new short[size];\n        symbols = new int[size];\n        numberOfBits = new byte[size];\n    }\n\n    public void reset()\n    {\n        Arrays.fill(count, 0);\n        Arrays.fill(parents, (short) 0);\n        Arrays.fill(symbols, 0);\n        Arrays.fill(numberOfBits, (byte) 0);\n    }\n\n    public void copyNode(int from, int to)\n    {\n        count[to] = count[from];\n        parents[to] = parents[from];\n        symbols[to] = symbols[from];\n        numberOfBits[to] = numberOfBits[from];\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/RepeatedOffsets.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nclass RepeatedOffsets\n{\n    private int offset0 = 1;\n    private int offset1 = 4;\n\n    private int tempOffset0;\n    private int tempOffset1;\n\n    public int getOffset0()\n    {\n        return offset0;\n    }\n\n    public int getOffset1()\n    {\n        return offset1;\n    }\n\n    public void saveOffset0(int offset)\n    {\n        tempOffset0 = offset;\n    }\n\n    public void saveOffset1(int offset)\n    {\n        tempOffset1 = offset;\n    }\n\n    public void commit()\n    {\n        offset0 = tempOffset0;\n        offset1 = tempOffset1;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/SequenceEncoder.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.DEFAULT_MAX_OFFSET_CODE_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.LITERALS_LENGTH_BITS;\nimport static io.airlift.compress.v3.zstd.Constants.LITERAL_LENGTH_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.LONG_NUMBER_OF_SEQUENCES;\nimport static io.airlift.compress.v3.zstd.Constants.MATCH_LENGTH_BITS;\nimport static io.airlift.compress.v3.zstd.Constants.MATCH_LENGTH_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_LITERALS_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_MATCH_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_OFFSET_CODE_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.OFFSET_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_BASIC;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_COMPRESSED;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_RLE;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.FiniteStateEntropy.optimalTableLog;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\n\nfinal class SequenceEncoder\n{\n    private static final int DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS_LOG = 6;\n    private static final short[] DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS = {4, 3, 2, 2, 2, 2, 2, 2,\n                                                                             2, 2, 2, 2, 2, 1, 1, 1,\n                                                                             2, 2, 2, 2, 2, 2, 2, 2,\n                                                                             2, 3, 2, 1, 1, 1, 1, 1,\n                                                                             -1, -1, -1, -1};\n\n    private static final int DEFAULT_MATCH_LENGTH_NORMALIZED_COUNTS_LOG = 6;\n    private static final short[] DEFAULT_MATCH_LENGTH_NORMALIZED_COUNTS = {1, 4, 3, 2, 2, 2, 2, 2,\n                                                                           2, 1, 1, 1, 1, 1, 1, 1,\n                                                                           1, 1, 1, 1, 1, 1, 1, 1,\n                                                                           1, 1, 1, 1, 1, 1, 1, 1,\n                                                                           1, 1, 1, 1, 1, 1, 1, 1,\n                                                                           1, 1, 1, 1, 1, 1, -1, -1,\n                                                                           -1, -1, -1, -1, -1};\n\n    private static final int DEFAULT_OFFSET_NORMALIZED_COUNTS_LOG = 5;\n    private static final short[] DEFAULT_OFFSET_NORMALIZED_COUNTS = {1, 1, 1, 1, 1, 1, 2, 2,\n                                                                     2, 1, 1, 1, 1, 1, 1, 1,\n                                                                     1, 1, 1, 1, 1, 1, 1, 1,\n                                                                     -1, -1, -1, -1, -1};\n\n    private static final FseCompressionTable DEFAULT_LITERAL_LENGTHS_TABLE = FseCompressionTable.newInstance(DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS, MAX_LITERALS_LENGTH_SYMBOL, DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS_LOG);\n    private static final FseCompressionTable DEFAULT_MATCH_LENGTHS_TABLE = FseCompressionTable.newInstance(DEFAULT_MATCH_LENGTH_NORMALIZED_COUNTS, MAX_MATCH_LENGTH_SYMBOL, DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS_LOG);\n    private static final FseCompressionTable DEFAULT_OFFSETS_TABLE = FseCompressionTable.newInstance(DEFAULT_OFFSET_NORMALIZED_COUNTS, DEFAULT_MAX_OFFSET_CODE_SYMBOL, DEFAULT_OFFSET_NORMALIZED_COUNTS_LOG);\n\n    private SequenceEncoder()\n    {\n    }\n\n    public static int compressSequences(Object outputBase, final long outputAddress, int outputSize, SequenceStore sequences, CompressionParameters.Strategy strategy, SequenceEncodingContext workspace)\n    {\n        long output = outputAddress;\n        long outputLimit = outputAddress + outputSize;\n\n        checkArgument(outputLimit - output > 3 /* max sequence count Size */ + 1 /* encoding type flags */, \"Output buffer too small\");\n\n        int sequenceCount = sequences.sequenceCount;\n        if (sequenceCount < 0x7F) {\n            UNSAFE.putByte(outputBase, output, (byte) sequenceCount);\n            output++;\n        }\n        else if (sequenceCount < LONG_NUMBER_OF_SEQUENCES) {\n            UNSAFE.putByte(outputBase, output, (byte) (sequenceCount >>> 8 | 0x80));\n            UNSAFE.putByte(outputBase, output + 1, (byte) sequenceCount);\n            output += SIZE_OF_SHORT;\n        }\n        else {\n            UNSAFE.putByte(outputBase, output, (byte) 0xFF);\n            output++;\n            UNSAFE.putShort(outputBase, output, (short) (sequenceCount - LONG_NUMBER_OF_SEQUENCES));\n            output += SIZE_OF_SHORT;\n        }\n\n        if (sequenceCount == 0) {\n            return (int) (output - outputAddress);\n        }\n\n        // flags for FSE encoding type\n        long headerAddress = output++;\n\n        int maxSymbol;\n        int largestCount;\n\n        // literal lengths\n        int[] counts = workspace.counts;\n        Histogram.count(sequences.literalLengthCodes, sequenceCount, workspace.counts);\n        maxSymbol = Histogram.findMaxSymbol(counts, MAX_LITERALS_LENGTH_SYMBOL);\n        largestCount = Histogram.findLargestCount(counts, maxSymbol);\n\n        int literalsLengthEncodingType = selectEncodingType(largestCount, sequenceCount, DEFAULT_LITERAL_LENGTH_NORMALIZED_COUNTS_LOG, true, strategy);\n\n        FseCompressionTable literalLengthTable;\n        switch (literalsLengthEncodingType) {\n            case SEQUENCE_ENCODING_RLE:\n                UNSAFE.putByte(outputBase, output, sequences.literalLengthCodes[0]);\n                output++;\n                workspace.literalLengthTable.initializeRleTable(maxSymbol);\n                literalLengthTable = workspace.literalLengthTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                literalLengthTable = DEFAULT_LITERAL_LENGTHS_TABLE;\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                output += buildCompressionTable(\n                        workspace.literalLengthTable,\n                        outputBase,\n                        output,\n                        outputLimit,\n                        sequenceCount,\n                        LITERAL_LENGTH_TABLE_LOG,\n                        sequences.literalLengthCodes,\n                        workspace.counts,\n                        maxSymbol,\n                        workspace.normalizedCounts);\n                literalLengthTable = workspace.literalLengthTable;\n                break;\n            default:\n                throw new UnsupportedOperationException(\"not yet implemented\");\n        }\n\n        // offsets\n        Histogram.count(sequences.offsetCodes, sequenceCount, workspace.counts);\n        maxSymbol = Histogram.findMaxSymbol(counts, MAX_OFFSET_CODE_SYMBOL);\n        largestCount = Histogram.findLargestCount(counts, maxSymbol);\n\n        // We can only use the basic table if max <= DEFAULT_MAX_OFFSET_CODE_SYMBOL, otherwise the offsets are too large .\n        boolean defaultAllowed = maxSymbol < DEFAULT_MAX_OFFSET_CODE_SYMBOL;\n\n        int offsetEncodingType = selectEncodingType(largestCount, sequenceCount, DEFAULT_OFFSET_NORMALIZED_COUNTS_LOG, defaultAllowed, strategy);\n\n        FseCompressionTable offsetCodeTable;\n        switch (offsetEncodingType) {\n            case SEQUENCE_ENCODING_RLE:\n                UNSAFE.putByte(outputBase, output, sequences.offsetCodes[0]);\n                output++;\n                workspace.offsetCodeTable.initializeRleTable(maxSymbol);\n                offsetCodeTable = workspace.offsetCodeTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                offsetCodeTable = DEFAULT_OFFSETS_TABLE;\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                output += buildCompressionTable(\n                        workspace.offsetCodeTable,\n                        outputBase,\n                        output,\n                        output + outputSize,\n                        sequenceCount,\n                        OFFSET_TABLE_LOG,\n                        sequences.offsetCodes,\n                        workspace.counts,\n                        maxSymbol,\n                        workspace.normalizedCounts);\n                offsetCodeTable = workspace.offsetCodeTable;\n                break;\n            default:\n                throw new UnsupportedOperationException(\"not yet implemented\");\n        }\n\n        // match lengths\n        Histogram.count(sequences.matchLengthCodes, sequenceCount, workspace.counts);\n        maxSymbol = Histogram.findMaxSymbol(counts, MAX_MATCH_LENGTH_SYMBOL);\n        largestCount = Histogram.findLargestCount(counts, maxSymbol);\n\n        int matchLengthEncodingType = selectEncodingType(largestCount, sequenceCount, DEFAULT_MATCH_LENGTH_NORMALIZED_COUNTS_LOG, true, strategy);\n\n        FseCompressionTable matchLengthTable;\n        switch (matchLengthEncodingType) {\n            case SEQUENCE_ENCODING_RLE:\n                UNSAFE.putByte(outputBase, output, sequences.matchLengthCodes[0]);\n                output++;\n                workspace.matchLengthTable.initializeRleTable(maxSymbol);\n                matchLengthTable = workspace.matchLengthTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                matchLengthTable = DEFAULT_MATCH_LENGTHS_TABLE;\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                output += buildCompressionTable(\n                        workspace.matchLengthTable,\n                        outputBase,\n                        output,\n                        outputLimit,\n                        sequenceCount,\n                        MATCH_LENGTH_TABLE_LOG,\n                        sequences.matchLengthCodes,\n                        workspace.counts,\n                        maxSymbol,\n                        workspace.normalizedCounts);\n                matchLengthTable = workspace.matchLengthTable;\n                break;\n            default:\n                throw new UnsupportedOperationException(\"not yet implemented\");\n        }\n\n        // flags\n        UNSAFE.putByte(outputBase, headerAddress, (byte) ((literalsLengthEncodingType << 6) | (offsetEncodingType << 4) | (matchLengthEncodingType << 2)));\n\n        output += encodeSequences(outputBase, output, outputLimit, matchLengthTable, offsetCodeTable, literalLengthTable, sequences);\n\n        return (int) (output - outputAddress);\n    }\n\n    private static int buildCompressionTable(FseCompressionTable table, Object outputBase, long output, long outputLimit, int sequenceCount, int maxTableLog, byte[] codes, int[] counts, int maxSymbol, short[] normalizedCounts)\n    {\n        int tableLog = optimalTableLog(maxTableLog, sequenceCount, maxSymbol);\n\n        // this is a minor optimization. The last symbol is embedded in the initial FSE state, so it's not part of the bitstream. We can omit it from the\n        // statistics (but only if its count is > 1). This makes the statistics a tiny bit more accurate.\n        if (counts[codes[sequenceCount - 1]] > 1) {\n            counts[codes[sequenceCount - 1]]--;\n            sequenceCount--;\n        }\n\n        FiniteStateEntropy.normalizeCounts(normalizedCounts, tableLog, counts, sequenceCount, maxSymbol);\n        table.initialize(normalizedCounts, maxSymbol, tableLog);\n\n        return FiniteStateEntropy.writeNormalizedCounts(outputBase, output, (int) (outputLimit - output), normalizedCounts, maxSymbol, tableLog); // TODO: pass outputLimit directly\n    }\n\n    private static int encodeSequences(\n            Object outputBase,\n            long output,\n            long outputLimit,\n            FseCompressionTable matchLengthTable,\n            FseCompressionTable offsetsTable,\n            FseCompressionTable literalLengthTable,\n            SequenceStore sequences)\n    {\n        byte[] matchLengthCodes = sequences.matchLengthCodes;\n        byte[] offsetCodes = sequences.offsetCodes;\n        byte[] literalLengthCodes = sequences.literalLengthCodes;\n\n        BitOutputStream blockStream = new BitOutputStream(outputBase, output, (int) (outputLimit - output));\n\n        int sequenceCount = sequences.sequenceCount;\n\n        // first symbols\n        int matchLengthState = matchLengthTable.begin(matchLengthCodes[sequenceCount - 1]);\n        int offsetState = offsetsTable.begin(offsetCodes[sequenceCount - 1]);\n        int literalLengthState = literalLengthTable.begin(literalLengthCodes[sequenceCount - 1]);\n\n        blockStream.addBits(sequences.literalLengths[sequenceCount - 1], LITERALS_LENGTH_BITS[literalLengthCodes[sequenceCount - 1]]);\n        blockStream.addBits(sequences.matchLengths[sequenceCount - 1], MATCH_LENGTH_BITS[matchLengthCodes[sequenceCount - 1]]);\n        blockStream.addBits(sequences.offsets[sequenceCount - 1], offsetCodes[sequenceCount - 1]);\n        blockStream.flush();\n\n        if (sequenceCount >= 2) {\n            for (int n = sequenceCount - 2; n >= 0; n--) {\n                byte literalLengthCode = literalLengthCodes[n];\n                byte offsetCode = offsetCodes[n];\n                byte matchLengthCode = matchLengthCodes[n];\n\n                int literalLengthBits = LITERALS_LENGTH_BITS[literalLengthCode];\n                int offsetBits = offsetCode;\n                int matchLengthBits = MATCH_LENGTH_BITS[matchLengthCode];\n\n                // (7)\n                offsetState = offsetsTable.encode(blockStream, offsetState, offsetCode); // 15\n                matchLengthState = matchLengthTable.encode(blockStream, matchLengthState, matchLengthCode); // 24\n                literalLengthState = literalLengthTable.encode(blockStream, literalLengthState, literalLengthCode); // 33\n\n                if ((offsetBits + matchLengthBits + literalLengthBits >= 64 - 7 - (LITERAL_LENGTH_TABLE_LOG + MATCH_LENGTH_TABLE_LOG + OFFSET_TABLE_LOG))) {\n                    blockStream.flush();                                /* (7)*/\n                }\n\n                blockStream.addBits(sequences.literalLengths[n], literalLengthBits);\n                if (((literalLengthBits + matchLengthBits) > 24)) {\n                    blockStream.flush();\n                }\n\n                blockStream.addBits(sequences.matchLengths[n], matchLengthBits);\n                if ((offsetBits + matchLengthBits + literalLengthBits > 56)) {\n                    blockStream.flush();\n                }\n\n                blockStream.addBits(sequences.offsets[n], offsetBits); // 31\n                blockStream.flush(); // (7)\n            }\n        }\n\n        matchLengthTable.finish(blockStream, matchLengthState);\n        offsetsTable.finish(blockStream, offsetState);\n        literalLengthTable.finish(blockStream, literalLengthState);\n\n        int streamSize = blockStream.close();\n        checkArgument(streamSize > 0, \"Output buffer too small\");\n\n        return streamSize;\n    }\n\n    private static int selectEncodingType(\n            int largestCount,\n            int sequenceCount,\n            int defaultNormalizedCountsLog,\n            boolean isDefaultTableAllowed,\n            CompressionParameters.Strategy strategy)\n    {\n        if (largestCount == sequenceCount) { // => all entries are equal\n            if (isDefaultTableAllowed && sequenceCount <= 2) {\n                /* Prefer set_basic over set_rle when there are 2 or fewer symbols,\n                 * since RLE uses 1 byte, but set_basic uses 5-6 bits per symbol.\n                 * If basic encoding isn't possible, always choose RLE.\n                 */\n                return SEQUENCE_ENCODING_BASIC;\n            }\n\n            return SEQUENCE_ENCODING_RLE;\n        }\n\n        if (strategy.ordinal() < CompressionParameters.Strategy.LAZY.ordinal()) { // TODO: more robust check. Maybe encapsulate in strategy objects\n            if (isDefaultTableAllowed) {\n                int factor = 10 - strategy.ordinal(); // TODO more robust. Move it to strategy\n                int baseLog = 3;\n                long minNumberOfSequences = ((1L << defaultNormalizedCountsLog) * factor) >> baseLog;  /* 28-36 for offset, 56-72 for lengths */\n\n                if ((sequenceCount < minNumberOfSequences) || (largestCount < (sequenceCount >> (defaultNormalizedCountsLog - 1)))) {\n                    /* The format allows default tables to be repeated, but it isn't useful.\n                     * When using simple heuristics to select encoding type, we don't want\n                     * to confuse these tables with dictionaries. When running more careful\n                     * analysis, we don't need to waste time checking both repeating tables\n                     * and default tables.\n                     */\n                    return SEQUENCE_ENCODING_BASIC;\n                }\n            }\n        }\n        else {\n            // TODO implement when other strategies are supported\n            throw new UnsupportedOperationException(\"not yet implemented\");\n        }\n\n        return SEQUENCE_ENCODING_COMPRESSED;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/SequenceEncodingContext.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.MAX_LITERALS_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_MATCH_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_OFFSET_CODE_SYMBOL;\n\nclass SequenceEncodingContext\n{\n    private static final int MAX_SEQUENCES = Math.max(MAX_LITERALS_LENGTH_SYMBOL, MAX_MATCH_LENGTH_SYMBOL);\n\n    public final FseCompressionTable literalLengthTable = new FseCompressionTable(Constants.LITERAL_LENGTH_TABLE_LOG, MAX_LITERALS_LENGTH_SYMBOL);\n    public final FseCompressionTable offsetCodeTable = new FseCompressionTable(Constants.OFFSET_TABLE_LOG, MAX_OFFSET_CODE_SYMBOL);\n    public final FseCompressionTable matchLengthTable = new FseCompressionTable(Constants.MATCH_LENGTH_TABLE_LOG, MAX_MATCH_LENGTH_SYMBOL);\n\n    public final int[] counts = new int[MAX_SEQUENCES + 1];\n    public final short[] normalizedCounts = new short[MAX_SEQUENCES + 1];\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/SequenceStore.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class SequenceStore\n{\n    public final byte[] literalsBuffer;\n    public int literalsLength;\n\n    public final int[] offsets;\n    public final int[] literalLengths;\n    public final int[] matchLengths;\n    public int sequenceCount;\n\n    public final byte[] literalLengthCodes;\n    public final byte[] matchLengthCodes;\n    public final byte[] offsetCodes;\n\n    public LongField longLengthField;\n    public int longLengthPosition;\n\n    public enum LongField\n    {\n        LITERAL, MATCH\n    }\n\n    private static final byte[] LITERAL_LENGTH_CODE = {0, 1, 2, 3, 4, 5, 6, 7,\n                                                       8, 9, 10, 11, 12, 13, 14, 15,\n                                                       16, 16, 17, 17, 18, 18, 19, 19,\n                                                       20, 20, 20, 20, 21, 21, 21, 21,\n                                                       22, 22, 22, 22, 22, 22, 22, 22,\n                                                       23, 23, 23, 23, 23, 23, 23, 23,\n                                                       24, 24, 24, 24, 24, 24, 24, 24,\n                                                       24, 24, 24, 24, 24, 24, 24, 24};\n\n    private static final byte[] MATCH_LENGTH_CODE = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,\n                                                     16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,\n                                                     32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 36, 36, 37, 37, 37, 37,\n                                                     38, 38, 38, 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, 39, 39, 39,\n                                                     40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40,\n                                                     41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,\n                                                     42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,\n                                                     42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42};\n\n    public SequenceStore(int blockSize, int maxSequences)\n    {\n        offsets = new int[maxSequences];\n        literalLengths = new int[maxSequences];\n        matchLengths = new int[maxSequences];\n\n        literalLengthCodes = new byte[maxSequences];\n        matchLengthCodes = new byte[maxSequences];\n        offsetCodes = new byte[maxSequences];\n\n        literalsBuffer = new byte[blockSize];\n\n        reset();\n    }\n\n    public void appendLiterals(Object inputBase, long inputAddress, int inputSize)\n    {\n        UNSAFE.copyMemory(inputBase, inputAddress, literalsBuffer, ARRAY_BYTE_BASE_OFFSET + literalsLength, inputSize);\n        literalsLength += inputSize;\n    }\n\n    public void storeSequence(Object literalBase, long literalAddress, int literalLength, int offsetCode, int matchLengthBase)\n    {\n        long input = literalAddress;\n        long output = ARRAY_BYTE_BASE_OFFSET + literalsLength;\n        int copied = 0;\n        do {\n            UNSAFE.putLong(literalsBuffer, output, UNSAFE.getLong(literalBase, input));\n            input += SIZE_OF_LONG;\n            output += SIZE_OF_LONG;\n            copied += SIZE_OF_LONG;\n        }\n        while (copied < literalLength);\n\n        literalsLength += literalLength;\n\n        if (literalLength > 65535) {\n            longLengthField = LongField.LITERAL;\n            longLengthPosition = sequenceCount;\n        }\n        literalLengths[sequenceCount] = literalLength;\n\n        offsets[sequenceCount] = offsetCode + 1;\n\n        if (matchLengthBase > 65535) {\n            longLengthField = LongField.MATCH;\n            longLengthPosition = sequenceCount;\n        }\n\n        matchLengths[sequenceCount] = matchLengthBase;\n\n        sequenceCount++;\n    }\n\n    public void reset()\n    {\n        literalsLength = 0;\n        sequenceCount = 0;\n        longLengthField = null;\n    }\n\n    public void generateCodes()\n    {\n        for (int i = 0; i < sequenceCount; ++i) {\n            literalLengthCodes[i] = (byte) literalLengthToCode(literalLengths[i]);\n            offsetCodes[i] = (byte) Util.highestBit(offsets[i]);\n            matchLengthCodes[i] = (byte) matchLengthToCode(matchLengths[i]);\n        }\n\n        if (longLengthField == LongField.LITERAL) {\n            literalLengthCodes[longLengthPosition] = Constants.MAX_LITERALS_LENGTH_SYMBOL;\n        }\n        if (longLengthField == LongField.MATCH) {\n            matchLengthCodes[longLengthPosition] = Constants.MAX_MATCH_LENGTH_SYMBOL;\n        }\n    }\n\n    private static int literalLengthToCode(int literalLength)\n    {\n        if (literalLength >= 64) {\n            return Util.highestBit(literalLength) + 19;\n        }\n        else {\n            return LITERAL_LENGTH_CODE[literalLength];\n        }\n    }\n\n    /*\n     * matchLengthBase = matchLength - MINMATCH\n     * (that's how it's stored in SequenceStore)\n     */\n    private static int matchLengthToCode(int matchLengthBase)\n    {\n        if (matchLengthBase >= 128) {\n            return Util.highestBit(matchLengthBase) + 36;\n        }\n        else {\n            return MATCH_LENGTH_CODE[matchLengthBase];\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/UnsafeUtil.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.IncompatibleJvmException;\nimport sun.misc.Unsafe;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.reflect.Field;\nimport java.nio.ByteOrder;\n\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class UnsafeUtil\n{\n    public static final Unsafe UNSAFE;\n\n    private UnsafeUtil() {}\n\n    static {\n        ByteOrder order = ByteOrder.nativeOrder();\n        if (!order.equals(ByteOrder.LITTLE_ENDIAN)) {\n            throw new IncompatibleJvmException(format(\"Zstandard requires a little endian platform (found %s)\", order));\n        }\n\n        try {\n            Field theUnsafe = Unsafe.class.getDeclaredField(\"theUnsafe\");\n            theUnsafe.setAccessible(true);\n            UNSAFE = (Unsafe) theUnsafe.get(null);\n        }\n        catch (Exception e) {\n            throw new IncompatibleJvmException(\"Zstandard requires access to sun.misc.Unsafe\");\n        }\n    }\n\n    public static byte[] getBase(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return null;\n        }\n        if (segment.isReadOnly()) {\n            throw new IllegalArgumentException(\"MemorySegment is read-only\");\n        }\n        Object inputBase = segment.heapBase().orElse(null);\n        if (!(inputBase instanceof byte[] byteArray)) {\n            throw new IllegalArgumentException(\"MemorySegment is not backed by a byte array\");\n        }\n        return byteArray;\n    }\n\n    public static long getAddress(MemorySegment segment)\n    {\n        if (segment.isNative()) {\n            return segment.address();\n        }\n        return segment.address() + ARRAY_BYTE_BASE_OFFSET;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/Util.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\n\nfinal class Util\n{\n    private Util()\n    {\n    }\n\n    public static int highestBit(int value)\n    {\n        return 31 - Integer.numberOfLeadingZeros(value);\n    }\n\n    public static boolean isPowerOf2(int value)\n    {\n        return (value & (value - 1)) == 0;\n    }\n\n    public static int mask(int bits)\n    {\n        return (1 << bits) - 1;\n    }\n\n    public static void verify(boolean condition, long offset, String reason)\n    {\n        if (!condition) {\n            throw new MalformedInputException(offset, reason);\n        }\n    }\n\n    public static void checkArgument(boolean condition, String reason)\n    {\n        if (!condition) {\n            throw new IllegalArgumentException(reason);\n        }\n    }\n\n    static void checkPositionIndexes(int start, int end, int size)\n    {\n        // Carefully optimized for execution by hotspot (explanatory comment above)\n        if (start < 0 || end < start || end > size) {\n            throw new IndexOutOfBoundsException(badPositionIndexes(start, end, size));\n        }\n    }\n\n    private static String badPositionIndexes(int start, int end, int size)\n    {\n        if (start < 0 || start > size) {\n            return badPositionIndex(start, size, \"start index\");\n        }\n        if (end < 0 || end > size) {\n            return badPositionIndex(end, size, \"end index\");\n        }\n        // end < start\n        return String.format(\"end index (%s) must not be less than start index (%s)\", end, start);\n    }\n\n    private static String badPositionIndex(int index, int size, String desc)\n    {\n        if (index < 0) {\n            return String.format(\"%s (%s) must not be negative\", desc, index);\n        }\n        else if (size < 0) {\n            throw new IllegalArgumentException(\"negative size: \" + size);\n        }\n        else { // index > size\n            return String.format(\"%s (%s) must not be greater than size (%s)\", desc, index, size);\n        }\n    }\n\n    public static void checkState(boolean condition, String reason)\n    {\n        if (!condition) {\n            throw new IllegalStateException(reason);\n        }\n    }\n\n    public static MalformedInputException fail(long offset, String reason)\n    {\n        throw new MalformedInputException(offset, reason);\n    }\n\n    public static int cycleLog(int hashLog, CompressionParameters.Strategy strategy)\n    {\n        int cycleLog = hashLog;\n        if (strategy == CompressionParameters.Strategy.BTLAZY2 || strategy == CompressionParameters.Strategy.BTOPT || strategy == CompressionParameters.Strategy.BTULTRA) {\n            cycleLog = hashLog - 1;\n        }\n        return cycleLog;\n    }\n\n    public static int get24BitLittleEndian(Object inputBase, long inputAddress)\n    {\n        return (UNSAFE.getShort(inputBase, inputAddress) & 0xFFFF)\n                | ((UNSAFE.getByte(inputBase, inputAddress + SIZE_OF_SHORT) & 0xFF) << Short.SIZE);\n    }\n\n    public static void put24BitLittleEndian(Object outputBase, long outputAddress, int value)\n    {\n        UNSAFE.putShort(outputBase, outputAddress, (short) value);\n        UNSAFE.putByte(outputBase, outputAddress + SIZE_OF_SHORT, (byte) (value >>> Short.SIZE));\n    }\n\n    // provides the minimum logSize to safely represent a distribution\n    public static int minTableLog(int inputSize, int maxSymbolValue)\n    {\n        if (inputSize <= 1) {\n            throw new IllegalArgumentException(\"Not supported. RLE should be used instead\"); // TODO\n        }\n\n        int minBitsSrc = highestBit((inputSize - 1)) + 1;\n        int minBitsSymbols = highestBit(maxSymbolValue) + 2;\n        return Math.min(minBitsSrc, minBitsSymbols);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/XxHash64.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkPositionIndexes;\nimport static java.lang.Long.rotateLeft;\nimport static java.lang.Math.min;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\n// Forked from https://github.com/airlift/slice\n// This Unsafe-based implementation exists only to serve the Zstd Java implementation,\n// which also uses Unsafe throughout. For public use, see io.airlift.compress.v3.xxhash.XxHash64Hasher\nfinal class XxHash64\n{\n    private static final long PRIME64_1 = 0x9E3779B185EBCA87L;\n    private static final long PRIME64_2 = 0xC2B2AE3D27D4EB4FL;\n    private static final long PRIME64_3 = 0x165667B19E3779F9L;\n    private static final long PRIME64_4 = 0x85EBCA77C2b2AE63L;\n    private static final long PRIME64_5 = 0x27D4EB2F165667C5L;\n\n    private static final long DEFAULT_SEED = 0;\n\n    private final long seed;\n\n    private static final long BUFFER_ADDRESS = ARRAY_BYTE_BASE_OFFSET;\n    private final byte[] buffer = new byte[32];\n    private int bufferSize;\n\n    private long bodyLength;\n\n    private long v1;\n    private long v2;\n    private long v3;\n    private long v4;\n\n    public XxHash64()\n    {\n        this(DEFAULT_SEED);\n    }\n\n    private XxHash64(long seed)\n    {\n        this.seed = seed;\n        this.v1 = seed + PRIME64_1 + PRIME64_2;\n        this.v2 = seed + PRIME64_2;\n        this.v3 = seed;\n        this.v4 = seed - PRIME64_1;\n    }\n\n    public XxHash64 update(byte[] data)\n    {\n        return update(data, 0, data.length);\n    }\n\n    public XxHash64 update(byte[] data, int offset, int length)\n    {\n        checkPositionIndexes(offset, offset + length, data.length);\n        updateHash(data, ARRAY_BYTE_BASE_OFFSET + offset, length);\n        return this;\n    }\n\n    public long hash()\n    {\n        long hash;\n        if (bodyLength > 0) {\n            hash = computeBody();\n        }\n        else {\n            hash = seed + PRIME64_5;\n        }\n\n        hash += bodyLength + bufferSize;\n\n        return updateTail(hash, buffer, BUFFER_ADDRESS, 0, bufferSize);\n    }\n\n    private long computeBody()\n    {\n        long hash = rotateLeft(v1, 1) + rotateLeft(v2, 7) + rotateLeft(v3, 12) + rotateLeft(v4, 18);\n\n        hash = update(hash, v1);\n        hash = update(hash, v2);\n        hash = update(hash, v3);\n        hash = update(hash, v4);\n\n        return hash;\n    }\n\n    private void updateHash(Object base, long address, int length)\n    {\n        if (bufferSize > 0) {\n            int available = min(32 - bufferSize, length);\n\n            UNSAFE.copyMemory(base, address, buffer, BUFFER_ADDRESS + bufferSize, available);\n\n            bufferSize += available;\n            address += available;\n            length -= available;\n\n            if (bufferSize == 32) {\n                updateBody(buffer, BUFFER_ADDRESS, bufferSize);\n                bufferSize = 0;\n            }\n        }\n\n        if (length >= 32) {\n            int index = updateBody(base, address, length);\n            address += index;\n            length -= index;\n        }\n\n        if (length > 0) {\n            UNSAFE.copyMemory(base, address, buffer, BUFFER_ADDRESS, length);\n            bufferSize = length;\n        }\n    }\n\n    private int updateBody(Object base, long address, int length)\n    {\n        int remaining = length;\n        while (remaining >= 32) {\n            v1 = mix(v1, UNSAFE.getLong(base, address));\n            v2 = mix(v2, UNSAFE.getLong(base, address + 8));\n            v3 = mix(v3, UNSAFE.getLong(base, address + 16));\n            v4 = mix(v4, UNSAFE.getLong(base, address + 24));\n\n            address += 32;\n            remaining -= 32;\n        }\n\n        int index = length - remaining;\n        bodyLength += index;\n        return index;\n    }\n\n    public static long hash(long value)\n    {\n        long hash = DEFAULT_SEED + PRIME64_5 + SIZE_OF_LONG;\n        hash = updateTail(hash, value);\n        hash = finalShuffle(hash);\n\n        return hash;\n    }\n\n    public static long hash(InputStream in)\n            throws IOException\n    {\n        return hash(DEFAULT_SEED, in);\n    }\n\n    public static long hash(long seed, InputStream in)\n            throws IOException\n    {\n        XxHash64 hash = new XxHash64(seed);\n        byte[] buffer = new byte[8192];\n        while (true) {\n            int length = in.read(buffer);\n            if (length == -1) {\n                break;\n            }\n            hash.update(buffer, 0, length);\n        }\n        return hash.hash();\n    }\n\n    public static long hash(long seed, Object base, long address, int length)\n    {\n        long hash;\n        if (length >= 32) {\n            hash = updateBody(seed, base, address, length);\n        }\n        else {\n            hash = seed + PRIME64_5;\n        }\n\n        hash += length;\n\n        // round to the closest 32 byte boundary\n        // this is the point up to which updateBody() processed\n        int index = length & 0xFFFFFFE0;\n\n        return updateTail(hash, base, address, index, length);\n    }\n\n    private static long updateTail(long hash, Object base, long address, int index, int length)\n    {\n        while (index <= length - 8) {\n            hash = updateTail(hash, UNSAFE.getLong(base, address + index));\n            index += 8;\n        }\n\n        if (index <= length - 4) {\n            hash = updateTail(hash, UNSAFE.getInt(base, address + index));\n            index += 4;\n        }\n\n        while (index < length) {\n            hash = updateTail(hash, UNSAFE.getByte(base, address + index));\n            index++;\n        }\n\n        hash = finalShuffle(hash);\n\n        return hash;\n    }\n\n    private static long updateBody(long seed, Object base, long address, int length)\n    {\n        long v1 = seed + PRIME64_1 + PRIME64_2;\n        long v2 = seed + PRIME64_2;\n        long v3 = seed;\n        long v4 = seed - PRIME64_1;\n\n        int remaining = length;\n        while (remaining >= 32) {\n            v1 = mix(v1, UNSAFE.getLong(base, address));\n            v2 = mix(v2, UNSAFE.getLong(base, address + 8));\n            v3 = mix(v3, UNSAFE.getLong(base, address + 16));\n            v4 = mix(v4, UNSAFE.getLong(base, address + 24));\n\n            address += 32;\n            remaining -= 32;\n        }\n\n        long hash = rotateLeft(v1, 1) + rotateLeft(v2, 7) + rotateLeft(v3, 12) + rotateLeft(v4, 18);\n\n        hash = update(hash, v1);\n        hash = update(hash, v2);\n        hash = update(hash, v3);\n        hash = update(hash, v4);\n\n        return hash;\n    }\n\n    private static long mix(long current, long value)\n    {\n        return rotateLeft(current + value * PRIME64_2, 31) * PRIME64_1;\n    }\n\n    private static long update(long hash, long value)\n    {\n        long temp = hash ^ mix(0, value);\n        return temp * PRIME64_1 + PRIME64_4;\n    }\n\n    private static long updateTail(long hash, long value)\n    {\n        long temp = hash ^ mix(0, value);\n        return rotateLeft(temp, 27) * PRIME64_1 + PRIME64_4;\n    }\n\n    private static long updateTail(long hash, int value)\n    {\n        long unsigned = value & 0xFFFF_FFFFL;\n        long temp = hash ^ (unsigned * PRIME64_1);\n        return rotateLeft(temp, 23) * PRIME64_2 + PRIME64_3;\n    }\n\n    private static long updateTail(long hash, byte value)\n    {\n        int unsigned = value & 0xFF;\n        long temp = hash ^ (unsigned * PRIME64_5);\n        return rotateLeft(temp, 11) * PRIME64_1;\n    }\n\n    private static long finalShuffle(long hash)\n    {\n        hash ^= hash >>> 33;\n        hash *= PRIME64_2;\n        hash ^= hash >>> 29;\n        hash *= PRIME64_3;\n        hash ^= hash >>> 32;\n        return hash;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.hadoop.CodecAdapter;\n\npublic class ZstdCodec\n        extends CodecAdapter\n{\n    public ZstdCodec()\n    {\n        super(configuration -> new ZstdHadoopStreams());\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic interface ZstdCompressor\n        extends Compressor\n{\n    int compress(MemorySegment input, MemorySegment output);\n\n    static ZstdCompressor create()\n    {\n        if (ZstdNativeCompressor.isEnabled()) {\n            return new ZstdNativeCompressor();\n        }\n        return new ZstdJavaCompressor();\n    }\n\n    static ZstdCompressor create(int compressionLevel)\n    {\n        if (ZstdNativeCompressor.isEnabled()) {\n            return new ZstdNativeCompressor(compressionLevel);\n        }\n        if (compressionLevel != CompressionParameters.DEFAULT_COMPRESSION_LEVEL) {\n            throw new IllegalArgumentException(\"Compression level different from default cannot be used for non-native Zstd compressor\");\n        }\n        return new ZstdJavaCompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Decompressor;\n\npublic interface ZstdDecompressor\n        extends Decompressor\n{\n    long getDecompressedSize(byte[] input, int offset, int length);\n\n    static ZstdDecompressor create()\n    {\n        if (ZstdNativeDecompressor.isEnabled()) {\n            return new ZstdNativeDecompressor();\n        }\n        return new ZstdJavaDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdFrameCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport static io.airlift.compress.v3.zstd.Constants.COMPRESSED_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.COMPRESSED_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.MAGIC_NUMBER;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_WINDOW_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.RAW_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RAW_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RLE_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_BLOCK_HEADER;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.Constants.TREELESS_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Huffman.MAX_SYMBOL_COUNT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\nimport static io.airlift.compress.v3.zstd.Util.put24BitLittleEndian;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nfinal class ZstdFrameCompressor\n{\n    static final int MAX_FRAME_HEADER_SIZE = 14;\n\n    private static final int CHECKSUM_FLAG = 0b100;\n    private static final int SINGLE_SEGMENT_FLAG = 0b100000;\n\n    private static final int MINIMUM_LITERALS_SIZE = 63;\n\n    // the maximum table log allowed for literal encoding per RFC 8478, section 4.2.1\n    private static final int MAX_HUFFMAN_TABLE_LOG = 11;\n\n    private ZstdFrameCompressor()\n    {\n    }\n\n    // visible for testing\n    static int writeMagic(final Object outputBase, final long outputAddress, final long outputLimit)\n    {\n        checkArgument(outputLimit - outputAddress >= SIZE_OF_INT, \"Output buffer too small\");\n\n        UNSAFE.putInt(outputBase, outputAddress, MAGIC_NUMBER);\n        return SIZE_OF_INT;\n    }\n\n    // visible for testing\n    static int writeFrameHeader(final Object outputBase, final long outputAddress, final long outputLimit, int inputSize, int windowSize)\n    {\n        checkArgument(outputLimit - outputAddress >= MAX_FRAME_HEADER_SIZE, \"Output buffer too small\");\n\n        long output = outputAddress;\n\n        int contentSizeDescriptor = 0;\n        if (inputSize != -1) {\n            contentSizeDescriptor = (inputSize >= 256 ? 1 : 0) + (inputSize >= 65536 + 256 ? 1 : 0);\n        }\n        int frameHeaderDescriptor = (contentSizeDescriptor << 6) | CHECKSUM_FLAG; // dictionary ID missing\n\n        boolean singleSegment = inputSize != -1 && windowSize >= inputSize;\n        if (singleSegment) {\n            frameHeaderDescriptor |= SINGLE_SEGMENT_FLAG;\n        }\n\n        UNSAFE.putByte(outputBase, output, (byte) frameHeaderDescriptor);\n        output++;\n\n        if (!singleSegment) {\n            int base = Integer.highestOneBit(windowSize);\n\n            int exponent = 32 - Integer.numberOfLeadingZeros(base) - 1;\n            if (exponent < MIN_WINDOW_LOG) {\n                throw new IllegalArgumentException(\"Minimum window size is \" + (1 << MIN_WINDOW_LOG));\n            }\n\n            int remainder = windowSize - base;\n            if (remainder % (base / 8) != 0) {\n                throw new IllegalArgumentException(\"Window size of magnitude 2^\" + exponent + \" must be multiple of \" + (base / 8));\n            }\n\n            // mantissa is guaranteed to be between 0-7\n            int mantissa = remainder / (base / 8);\n            int encoded = ((exponent - MIN_WINDOW_LOG) << 3) | mantissa;\n\n            UNSAFE.putByte(outputBase, output, (byte) encoded);\n            output++;\n        }\n\n        switch (contentSizeDescriptor) {\n            case 0:\n                if (singleSegment) {\n                    UNSAFE.putByte(outputBase, output++, (byte) inputSize);\n                }\n                break;\n            case 1:\n                UNSAFE.putShort(outputBase, output, (short) (inputSize - 256));\n                output += SIZE_OF_SHORT;\n                break;\n            case 2:\n                UNSAFE.putInt(outputBase, output, inputSize);\n                output += SIZE_OF_INT;\n                break;\n            default:\n                throw new AssertionError();\n        }\n\n        return (int) (output - outputAddress);\n    }\n\n    // visible for testing\n    static int writeChecksum(Object outputBase, long outputAddress, long outputLimit, Object inputBase, long inputAddress, long inputLimit)\n    {\n        checkArgument(outputLimit - outputAddress >= SIZE_OF_INT, \"Output buffer too small\");\n\n        int inputSize = (int) (inputLimit - inputAddress);\n\n        long hash = XxHash64.hash(0, inputBase, inputAddress, inputSize);\n\n        UNSAFE.putInt(outputBase, outputAddress, (int) hash);\n\n        return SIZE_OF_INT;\n    }\n\n    public static int compress(Object inputBase, long inputAddress, long inputLimit, Object outputBase, long outputAddress, long outputLimit, int compressionLevel)\n    {\n        int inputSize = (int) (inputLimit - inputAddress);\n\n        CompressionParameters parameters = CompressionParameters.compute(compressionLevel, inputSize);\n\n        long output = outputAddress;\n\n        output += writeMagic(outputBase, output, outputLimit);\n        output += writeFrameHeader(outputBase, output, outputLimit, inputSize, parameters.getWindowSize());\n        output += compressFrame(inputBase, inputAddress, inputLimit, outputBase, output, outputLimit, parameters);\n        output += writeChecksum(outputBase, output, outputLimit, inputBase, inputAddress, inputLimit);\n\n        return (int) (output - outputAddress);\n    }\n\n    private static int compressFrame(Object inputBase, long inputAddress, long inputLimit, Object outputBase, long outputAddress, long outputLimit, CompressionParameters parameters)\n    {\n        int blockSize = parameters.getBlockSize();\n\n        int outputSize = (int) (outputLimit - outputAddress);\n        int remaining = (int) (inputLimit - inputAddress);\n\n        long output = outputAddress;\n        long input = inputAddress;\n\n        CompressionContext context = new CompressionContext(parameters, inputAddress, remaining);\n        do {\n            checkArgument(outputSize >= SIZE_OF_BLOCK_HEADER + MIN_BLOCK_SIZE, \"Output buffer too small\");\n\n            boolean lastBlock = blockSize >= remaining;\n            blockSize = Math.min(blockSize, remaining);\n\n            int compressedSize = writeCompressedBlock(inputBase, input, blockSize, outputBase, output, outputSize, context, lastBlock);\n\n            input += blockSize;\n            remaining -= blockSize;\n            output += compressedSize;\n            outputSize -= compressedSize;\n        }\n        while (remaining > 0);\n\n        return (int) (output - outputAddress);\n    }\n\n    static int writeCompressedBlock(Object inputBase, long input, int blockSize, Object outputBase, long output, int outputSize, CompressionContext context, boolean lastBlock)\n    {\n        checkArgument(lastBlock || blockSize == context.parameters.getBlockSize(), \"Only last block can be smaller than block size\");\n\n        int compressedSize = 0;\n        if (blockSize > 0) {\n            compressedSize = compressBlock(inputBase, input, blockSize, outputBase, output + SIZE_OF_BLOCK_HEADER, outputSize - SIZE_OF_BLOCK_HEADER, context);\n        }\n\n        if (compressedSize == 0) { // block is not compressible\n            checkArgument(blockSize + SIZE_OF_BLOCK_HEADER <= outputSize, \"Output size too small\");\n\n            int blockHeader = (lastBlock ? 1 : 0) | (RAW_BLOCK << 1) | (blockSize << 3);\n            put24BitLittleEndian(outputBase, output, blockHeader);\n            UNSAFE.copyMemory(inputBase, input, outputBase, output + SIZE_OF_BLOCK_HEADER, blockSize);\n            compressedSize = SIZE_OF_BLOCK_HEADER + blockSize;\n        }\n        else {\n            int blockHeader = (lastBlock ? 1 : 0) | (COMPRESSED_BLOCK << 1) | (compressedSize << 3);\n            put24BitLittleEndian(outputBase, output, blockHeader);\n            compressedSize += SIZE_OF_BLOCK_HEADER;\n        }\n        return compressedSize;\n    }\n\n    private static int compressBlock(Object inputBase, long inputAddress, int inputSize, Object outputBase, long outputAddress, int outputSize, CompressionContext context)\n    {\n        if (inputSize < MIN_BLOCK_SIZE + SIZE_OF_BLOCK_HEADER + 1) {\n            //  don't even attempt compression below a certain input size\n            return 0;\n        }\n\n        CompressionParameters parameters = context.parameters;\n        context.blockCompressionState.enforceMaxDistance(inputAddress + inputSize, parameters.getWindowSize());\n        context.sequenceStore.reset();\n\n        int lastLiteralsSize = parameters.getStrategy()\n                .getCompressor()\n                .compressBlock(inputBase, inputAddress, inputSize, context.sequenceStore, context.blockCompressionState, context.offsets, parameters);\n\n        long lastLiteralsAddress = inputAddress + inputSize - lastLiteralsSize;\n\n        // append [lastLiteralsAddress .. lastLiteralsSize] to sequenceStore literals buffer\n        context.sequenceStore.appendLiterals(inputBase, lastLiteralsAddress, lastLiteralsSize);\n\n        // convert length/offsets into codes\n        context.sequenceStore.generateCodes();\n\n        long outputLimit = outputAddress + outputSize;\n        long output = outputAddress;\n\n        int compressedLiteralsSize = encodeLiterals(\n                context.huffmanContext,\n                parameters,\n                outputBase,\n                output,\n                (int) (outputLimit - output),\n                context.sequenceStore.literalsBuffer,\n                context.sequenceStore.literalsLength);\n        output += compressedLiteralsSize;\n\n        int compressedSequencesSize = SequenceEncoder.compressSequences(outputBase, output, (int) (outputLimit - output), context.sequenceStore, parameters.getStrategy(), context.sequenceEncodingContext);\n\n        int compressedSize = compressedLiteralsSize + compressedSequencesSize;\n        if (compressedSize == 0) {\n            // not compressible\n            return compressedSize;\n        }\n\n        // Check compressibility\n        int maxCompressedSize = inputSize - calculateMinimumGain(inputSize, parameters.getStrategy());\n        if (compressedSize > maxCompressedSize) {\n            return 0; // not compressed\n        }\n\n        // confirm repeated offsets and entropy tables\n        context.commit();\n\n        return compressedSize;\n    }\n\n    private static int encodeLiterals(\n            HuffmanCompressionContext context,\n            CompressionParameters parameters,\n            Object outputBase,\n            long outputAddress,\n            int outputSize,\n            byte[] literals,\n            int literalsSize)\n    {\n        // TODO: move this to Strategy\n        boolean bypassCompression = (parameters.getStrategy() == CompressionParameters.Strategy.FAST) && (parameters.getTargetLength() > 0);\n        if (bypassCompression || literalsSize <= MINIMUM_LITERALS_SIZE) {\n            return rawLiterals(outputBase, outputAddress, outputSize, literals, ARRAY_BYTE_BASE_OFFSET, literalsSize);\n        }\n\n        int headerSize = 3 + (literalsSize >= 1024 ? 1 : 0) + (literalsSize >= 16384 ? 1 : 0);\n\n        checkArgument(headerSize + 1 <= outputSize, \"Output buffer too small\");\n\n        int[] counts = new int[MAX_SYMBOL_COUNT]; // TODO: preallocate\n        Histogram.count(literals, literalsSize, counts);\n        int maxSymbol = Histogram.findMaxSymbol(counts, MAX_SYMBOL);\n        int largestCount = Histogram.findLargestCount(counts, maxSymbol);\n\n        long literalsAddress = ARRAY_BYTE_BASE_OFFSET;\n        if (largestCount == literalsSize) {\n            // all bytes in input are equal\n            return rleLiterals(outputBase, outputAddress, outputSize, literals, ARRAY_BYTE_BASE_OFFSET, literalsSize);\n        }\n        else if (largestCount <= (literalsSize >>> 7) + 4) {\n            // heuristic: probably not compressible enough\n            return rawLiterals(outputBase, outputAddress, outputSize, literals, ARRAY_BYTE_BASE_OFFSET, literalsSize);\n        }\n\n        HuffmanCompressionTable previousTable = context.getPreviousTable();\n        HuffmanCompressionTable table;\n        int serializedTableSize;\n        boolean reuseTable;\n\n        boolean canReuse = previousTable.isValid(counts, maxSymbol);\n\n        // heuristic: use existing table for small inputs if valid\n        // TODO: move to Strategy\n        boolean preferReuse = parameters.getStrategy().ordinal() < CompressionParameters.Strategy.LAZY.ordinal() && literalsSize <= 1024;\n        if (preferReuse && canReuse) {\n            table = previousTable;\n            reuseTable = true;\n            serializedTableSize = 0;\n        }\n        else {\n            HuffmanCompressionTable newTable = context.borrowTemporaryTable();\n\n            newTable.initialize(\n                    counts,\n                    maxSymbol,\n                    HuffmanCompressionTable.optimalNumberOfBits(MAX_HUFFMAN_TABLE_LOG, literalsSize, maxSymbol),\n                    context.getCompressionTableWorkspace());\n\n            serializedTableSize = newTable.write(outputBase, outputAddress + headerSize, outputSize - headerSize, context.getTableWriterWorkspace());\n\n            // Check if using previous huffman table is beneficial\n            if (canReuse && previousTable.estimateCompressedSize(counts, maxSymbol) <= serializedTableSize + newTable.estimateCompressedSize(counts, maxSymbol)) {\n                table = previousTable;\n                reuseTable = true;\n                serializedTableSize = 0;\n                context.discardTemporaryTable();\n            }\n            else {\n                table = newTable;\n                reuseTable = false;\n            }\n        }\n\n        int compressedSize;\n        boolean singleStream = literalsSize < 256;\n        if (singleStream) {\n            compressedSize = HuffmanCompressor.compressSingleStream(outputBase, outputAddress + headerSize + serializedTableSize, outputSize - headerSize - serializedTableSize, literals, literalsAddress, literalsSize, table);\n        }\n        else {\n            compressedSize = HuffmanCompressor.compress4streams(outputBase, outputAddress + headerSize + serializedTableSize, outputSize - headerSize - serializedTableSize, literals, literalsAddress, literalsSize, table);\n        }\n\n        int totalSize = serializedTableSize + compressedSize;\n        int minimumGain = calculateMinimumGain(literalsSize, parameters.getStrategy());\n\n        if (compressedSize == 0 || totalSize >= literalsSize - minimumGain) {\n            // incompressible or no savings\n\n            // discard any temporary table we might have borrowed above\n            context.discardTemporaryTable();\n\n            return rawLiterals(outputBase, outputAddress, outputSize, literals, ARRAY_BYTE_BASE_OFFSET, literalsSize);\n        }\n\n        int encodingType = reuseTable ? TREELESS_LITERALS_BLOCK : COMPRESSED_LITERALS_BLOCK;\n\n        // Build header\n        switch (headerSize) {\n            case 3: { // 2 - 2 - 10 - 10\n                int header = encodingType | ((singleStream ? 0 : 1) << 2) | (literalsSize << 4) | (totalSize << 14);\n                put24BitLittleEndian(outputBase, outputAddress, header);\n                break;\n            }\n            case 4: { // 2 - 2 - 14 - 14\n                int header = encodingType | (2 << 2) | (literalsSize << 4) | (totalSize << 18);\n                UNSAFE.putInt(outputBase, outputAddress, header);\n                break;\n            }\n            case 5: { // 2 - 2 - 18 - 18\n                int header = encodingType | (3 << 2) | (literalsSize << 4) | (totalSize << 22);\n                UNSAFE.putInt(outputBase, outputAddress, header);\n                UNSAFE.putByte(outputBase, outputAddress + SIZE_OF_INT, (byte) (totalSize >>> 10));\n                break;\n            }\n            default:  // not possible : headerSize is {3,4,5}\n                throw new IllegalStateException();\n        }\n\n        return headerSize + totalSize;\n    }\n\n    private static int rleLiterals(Object outputBase, long outputAddress, int outputSize, Object inputBase, long inputAddress, int inputSize)\n    {\n        int headerSize = 1 + (inputSize > 31 ? 1 : 0) + (inputSize > 4095 ? 1 : 0);\n\n        switch (headerSize) {\n            case 1: // 2 - 1 - 5\n                UNSAFE.putByte(outputBase, outputAddress, (byte) (RLE_LITERALS_BLOCK | (inputSize << 3)));\n                break;\n            case 2: // 2 - 2 - 12\n                UNSAFE.putShort(outputBase, outputAddress, (short) (RLE_LITERALS_BLOCK | (1 << 2) | (inputSize << 4)));\n                break;\n            case 3: // 2 - 2 - 20\n                UNSAFE.putInt(outputBase, outputAddress, RLE_LITERALS_BLOCK | 3 << 2 | inputSize << 4);\n                break;\n            default:   // impossible. headerSize is {1,2,3}\n                throw new IllegalStateException();\n        }\n\n        UNSAFE.putByte(outputBase, outputAddress + headerSize, UNSAFE.getByte(inputBase, inputAddress));\n\n        return headerSize + 1;\n    }\n\n    private static int calculateMinimumGain(int inputSize, CompressionParameters.Strategy strategy)\n    {\n        // TODO: move this to Strategy to avoid hardcoding a specific strategy here\n        int minLog = strategy == CompressionParameters.Strategy.BTULTRA ? 7 : 6;\n        return (inputSize >>> minLog) + 2;\n    }\n\n    private static int rawLiterals(Object outputBase, long outputAddress, int outputSize, Object inputBase, long inputAddress, int inputSize)\n    {\n        int headerSize = 1;\n        if (inputSize >= 32) {\n            headerSize++;\n        }\n        if (inputSize >= 4096) {\n            headerSize++;\n        }\n\n        checkArgument(inputSize + headerSize <= outputSize, \"Output buffer too small\");\n\n        switch (headerSize) {\n            case 1:\n                UNSAFE.putByte(outputBase, outputAddress, (byte) (RAW_LITERALS_BLOCK | (inputSize << 3)));\n                break;\n            case 2:\n                UNSAFE.putShort(outputBase, outputAddress, (short) (RAW_LITERALS_BLOCK | (1 << 2) | (inputSize << 4)));\n                break;\n            case 3:\n                put24BitLittleEndian(outputBase, outputAddress, RAW_LITERALS_BLOCK | (3 << 2) | (inputSize << 4));\n                break;\n            default:\n                throw new AssertionError();\n        }\n\n        // TODO: ensure this test is correct\n        checkArgument(inputSize + 1 <= outputSize, \"Output buffer too small\");\n\n        UNSAFE.copyMemory(inputBase, inputAddress, outputBase, outputAddress + headerSize, inputSize);\n\n        return headerSize + inputSize;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdFrameDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.BitInputStream.peekBits;\nimport static io.airlift.compress.v3.zstd.Constants.COMPRESSED_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.COMPRESSED_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.DEFAULT_MAX_OFFSET_CODE_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.LITERALS_LENGTH_BITS;\nimport static io.airlift.compress.v3.zstd.Constants.LITERAL_LENGTH_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.LONG_NUMBER_OF_SEQUENCES;\nimport static io.airlift.compress.v3.zstd.Constants.MAGIC_NUMBER;\nimport static io.airlift.compress.v3.zstd.Constants.MATCH_LENGTH_BITS;\nimport static io.airlift.compress.v3.zstd.Constants.MATCH_LENGTH_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_LITERALS_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_MATCH_LENGTH_SYMBOL;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_SEQUENCES_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.MIN_WINDOW_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.OFFSET_TABLE_LOG;\nimport static io.airlift.compress.v3.zstd.Constants.RAW_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RAW_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RLE_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RLE_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_BASIC;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_COMPRESSED;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_REPEAT;\nimport static io.airlift.compress.v3.zstd.Constants.SEQUENCE_ENCODING_RLE;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_BLOCK_HEADER;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_BYTE;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_SHORT;\nimport static io.airlift.compress.v3.zstd.Constants.TREELESS_LITERALS_BLOCK;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.fail;\nimport static io.airlift.compress.v3.zstd.Util.get24BitLittleEndian;\nimport static io.airlift.compress.v3.zstd.Util.mask;\nimport static io.airlift.compress.v3.zstd.Util.verify;\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nclass ZstdFrameDecompressor\n{\n    private static final int[] DEC_32_TABLE = {4, 1, 2, 1, 4, 4, 4, 4};\n    private static final int[] DEC_64_TABLE = {0, 0, 0, -1, 0, 1, 2, 3};\n\n    private static final int V07_MAGIC_NUMBER = 0xFD2FB527;\n\n    static final int MAX_WINDOW_SIZE = 1 << 23;\n\n    private static final int[] LITERALS_LENGTH_BASE = {\n            0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,\n            16, 18, 20, 22, 24, 28, 32, 40, 48, 64, 0x80, 0x100, 0x200, 0x400, 0x800, 0x1000,\n            0x2000, 0x4000, 0x8000, 0x10000};\n\n    private static final int[] MATCH_LENGTH_BASE = {\n            3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,\n            19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,\n            35, 37, 39, 41, 43, 47, 51, 59, 67, 83, 99, 0x83, 0x103, 0x203, 0x403, 0x803,\n            0x1003, 0x2003, 0x4003, 0x8003, 0x10003};\n\n    private static final int[] OFFSET_CODES_BASE = {\n            0, 1, 1, 5, 0xD, 0x1D, 0x3D, 0x7D,\n            0xFD, 0x1FD, 0x3FD, 0x7FD, 0xFFD, 0x1FFD, 0x3FFD, 0x7FFD,\n            0xFFFD, 0x1FFFD, 0x3FFFD, 0x7FFFD, 0xFFFFD, 0x1FFFFD, 0x3FFFFD, 0x7FFFFD,\n            0xFFFFFD, 0x1FFFFFD, 0x3FFFFFD, 0x7FFFFFD, 0xFFFFFFD};\n\n    private static final FiniteStateEntropy.Table DEFAULT_LITERALS_LENGTH_TABLE = new FiniteStateEntropy.Table(\n            6,\n            new int[] {\n                    0, 16, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 32, 0, 0, 32, 0, 32, 0, 32, 0, 0, 32, 0, 32, 0, 32, 0, 0, 16, 32, 0, 0, 48, 16, 32, 32, 32,\n                    32, 32, 32, 32, 32, 0, 32, 32, 32, 32, 32, 32, 0, 0, 0, 0},\n            new byte[] {\n                    0, 0, 1, 3, 4, 6, 7, 9, 10, 12, 14, 16, 18, 19, 21, 22, 24, 25, 26, 27, 29, 31, 0, 1, 2, 4, 5, 7, 8, 10, 11, 13, 16, 17, 19, 20, 22, 23, 25, 25, 26, 28, 30, 0,\n                    1, 2, 3, 5, 6, 8, 9, 11, 12, 15, 17, 18, 20, 21, 23, 24, 35, 34, 33, 32},\n            new byte[] {\n                    4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 4, 4, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 4, 4, 5, 6, 6, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5,\n                    6, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6});\n\n    private static final FiniteStateEntropy.Table DEFAULT_OFFSET_CODES_TABLE = new FiniteStateEntropy.Table(\n            5,\n            new int[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0},\n            new byte[] {0, 6, 9, 15, 21, 3, 7, 12, 18, 23, 5, 8, 14, 20, 2, 7, 11, 17, 22, 4, 8, 13, 19, 1, 6, 10, 16, 28, 27, 26, 25, 24},\n            new byte[] {5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5});\n\n    private static final FiniteStateEntropy.Table DEFAULT_MATCH_LENGTH_TABLE = new FiniteStateEntropy.Table(\n            6,\n            new int[] {\n                    0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 32, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 48, 16, 32, 32, 32, 32,\n                    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},\n            new byte[] {\n                    0, 1, 2, 3, 5, 6, 8, 10, 13, 16, 19, 22, 25, 28, 31, 33, 35, 37, 39, 41, 43, 45, 1, 2, 3, 4, 6, 7, 9, 12, 15, 18, 21, 24, 27, 30, 32, 34, 36, 38, 40, 42, 44, 1,\n                    1, 2, 4, 5, 7, 8, 11, 14, 17, 20, 23, 26, 29, 52, 51, 50, 49, 48, 47, 46},\n            new byte[] {\n                    6, 4, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6,\n                    6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6});\n\n    private final byte[] literals = new byte[MAX_BLOCK_SIZE + SIZE_OF_LONG]; // extra space to allow for long-at-a-time copy\n\n    // current buffer containing literals\n    private Object literalsBase;\n    private long literalsAddress;\n    private long literalsLimit;\n\n    private final int[] previousOffsets = new int[3];\n\n    private final FiniteStateEntropy.Table literalsLengthTable = new FiniteStateEntropy.Table(LITERAL_LENGTH_TABLE_LOG);\n    private final FiniteStateEntropy.Table offsetCodesTable = new FiniteStateEntropy.Table(OFFSET_TABLE_LOG);\n    private final FiniteStateEntropy.Table matchLengthTable = new FiniteStateEntropy.Table(MATCH_LENGTH_TABLE_LOG);\n\n    private FiniteStateEntropy.Table currentLiteralsLengthTable;\n    private FiniteStateEntropy.Table currentOffsetCodesTable;\n    private FiniteStateEntropy.Table currentMatchLengthTable;\n\n    private final Huffman huffman = new Huffman();\n    private final FseTableReader fse = new FseTableReader();\n\n    public int decompress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final Object outputBase,\n            final long outputAddress,\n            final long outputLimit)\n    {\n        if (outputAddress == outputLimit) {\n            return 0;\n        }\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        while (input < inputLimit) {\n            reset();\n            long outputStart = output;\n            input += verifyMagic(inputBase, input, inputLimit);\n\n            FrameHeader frameHeader = readFrameHeader(inputBase, input, inputLimit);\n            input += frameHeader.headerSize;\n\n            boolean lastBlock;\n            do {\n                verify(input + SIZE_OF_BLOCK_HEADER <= inputLimit, input, \"Not enough input bytes\");\n\n                // read block header\n                int header = get24BitLittleEndian(inputBase, input);\n                input += SIZE_OF_BLOCK_HEADER;\n\n                lastBlock = (header & 1) != 0;\n                int blockType = (header >>> 1) & 0b11;\n                int blockSize = (header >>> 3) & 0x1F_FFFF; // 21 bits\n\n                int decodedSize;\n                switch (blockType) {\n                    case RAW_BLOCK:\n                        verify(input + blockSize <= inputLimit, input, \"Not enough input bytes\");\n                        decodedSize = decodeRawBlock(inputBase, input, blockSize, outputBase, output, outputLimit);\n                        input += blockSize;\n                        break;\n                    case RLE_BLOCK:\n                        verify(input + 1 <= inputLimit, input, \"Not enough input bytes\");\n                        decodedSize = decodeRleBlock(blockSize, inputBase, input, outputBase, output, outputLimit);\n                        input += 1;\n                        break;\n                    case COMPRESSED_BLOCK:\n                        verify(input + blockSize <= inputLimit, input, \"Not enough input bytes\");\n                        decodedSize = decodeCompressedBlock(inputBase, input, blockSize, outputBase, output, outputLimit, frameHeader.windowSize, outputAddress);\n                        input += blockSize;\n                        break;\n                    default:\n                        throw fail(input, \"Invalid block type\");\n                }\n\n                output += decodedSize;\n            }\n            while (!lastBlock);\n\n            if (frameHeader.hasChecksum) {\n                int decodedFrameSize = (int) (output - outputStart);\n\n                long hash = XxHash64.hash(0, outputBase, outputStart, decodedFrameSize);\n\n                verify(input + SIZE_OF_INT <= inputLimit, input, \"Not enough input bytes\");\n                int checksum = UNSAFE.getInt(inputBase, input);\n                if (checksum != (int) hash) {\n                    throw new MalformedInputException(input, format(\"Bad checksum. Expected: %s, actual: %s\", Integer.toHexString(checksum), Integer.toHexString((int) hash)));\n                }\n\n                input += SIZE_OF_INT;\n            }\n        }\n\n        return (int) (output - outputAddress);\n    }\n\n    void reset()\n    {\n        previousOffsets[0] = 1;\n        previousOffsets[1] = 4;\n        previousOffsets[2] = 8;\n\n        currentLiteralsLengthTable = null;\n        currentOffsetCodesTable = null;\n        currentMatchLengthTable = null;\n    }\n\n    static int decodeRawBlock(Object inputBase, long inputAddress, int blockSize, Object outputBase, long outputAddress, long outputLimit)\n    {\n        verify(outputAddress + blockSize <= outputLimit, inputAddress, \"Output buffer too small\");\n\n        UNSAFE.copyMemory(inputBase, inputAddress, outputBase, outputAddress, blockSize);\n        return blockSize;\n    }\n\n    static int decodeRleBlock(int size, Object inputBase, long inputAddress, Object outputBase, long outputAddress, long outputLimit)\n    {\n        verify(outputAddress + size <= outputLimit, inputAddress, \"Output buffer too small\");\n\n        long output = outputAddress;\n        long value = UNSAFE.getByte(inputBase, inputAddress) & 0xFFL;\n\n        int remaining = size;\n        if (remaining >= SIZE_OF_LONG) {\n            long packed = value\n                    | (value << 8)\n                    | (value << 16)\n                    | (value << 24)\n                    | (value << 32)\n                    | (value << 40)\n                    | (value << 48)\n                    | (value << 56);\n\n            do {\n                UNSAFE.putLong(outputBase, output, packed);\n                output += SIZE_OF_LONG;\n                remaining -= SIZE_OF_LONG;\n            }\n            while (remaining >= SIZE_OF_LONG);\n        }\n\n        for (int i = 0; i < remaining; i++) {\n            UNSAFE.putByte(outputBase, output, (byte) value);\n            output++;\n        }\n\n        return size;\n    }\n\n    int decodeCompressedBlock(\n            Object inputBase,\n            final long inputAddress,\n            int blockSize,\n            Object outputBase,\n            long outputAddress,\n            long outputLimit,\n            int windowSize,\n            long outputAbsoluteBaseAddress)\n    {\n        long inputLimit = inputAddress + blockSize;\n        long input = inputAddress;\n\n        verify(blockSize <= MAX_BLOCK_SIZE, input, \"Expected match length table to be present\");\n        verify(blockSize >= MIN_BLOCK_SIZE, input, \"Compressed block size too small\");\n\n        // decode literals\n        int literalsBlockType = UNSAFE.getByte(inputBase, input) & 0b11;\n\n        switch (literalsBlockType) {\n            case RAW_LITERALS_BLOCK: {\n                input += decodeRawLiterals(inputBase, input, inputLimit);\n                break;\n            }\n            case RLE_LITERALS_BLOCK: {\n                input += decodeRleLiterals(inputBase, input, blockSize);\n                break;\n            }\n            case TREELESS_LITERALS_BLOCK:\n                verify(huffman.isLoaded(), input, \"Dictionary is corrupted\");\n            case COMPRESSED_LITERALS_BLOCK: {\n                input += decodeCompressedLiterals(inputBase, input, blockSize, literalsBlockType);\n                break;\n            }\n            default:\n                throw fail(input, \"Invalid literals block encoding type\");\n        }\n\n        verify(windowSize <= MAX_WINDOW_SIZE, input, \"Window size too large (not yet supported)\");\n\n        return decompressSequences(\n                inputBase, input, inputAddress + blockSize,\n                outputBase, outputAddress, outputLimit,\n                literalsBase, literalsAddress, literalsLimit,\n                outputAbsoluteBaseAddress);\n    }\n\n    private int decompressSequences(\n            final Object inputBase, final long inputAddress, final long inputLimit,\n            final Object outputBase, final long outputAddress, final long outputLimit,\n            final Object literalsBase, final long literalsAddress, final long literalsLimit,\n            long outputAbsoluteBaseAddress)\n    {\n        final long fastOutputLimit = outputLimit - SIZE_OF_LONG;\n        final long fastMatchOutputLimit = fastOutputLimit - SIZE_OF_LONG;\n\n        long input = inputAddress;\n        long output = outputAddress;\n\n        long literalsInput = literalsAddress;\n\n        int size = (int) (inputLimit - inputAddress);\n        verify(size >= MIN_SEQUENCES_SIZE, input, \"Not enough input bytes\");\n\n        // decode header\n        int sequenceCount = UNSAFE.getByte(inputBase, input++) & 0xFF;\n        if (sequenceCount != 0) {\n            if (sequenceCount == 255) {\n                verify(input + SIZE_OF_SHORT <= inputLimit, input, \"Not enough input bytes\");\n                sequenceCount = (UNSAFE.getShort(inputBase, input) & 0xFFFF) + LONG_NUMBER_OF_SEQUENCES;\n                input += SIZE_OF_SHORT;\n            }\n            else if (sequenceCount > 127) {\n                verify(input < inputLimit, input, \"Not enough input bytes\");\n                sequenceCount = ((sequenceCount - 128) << 8) + (UNSAFE.getByte(inputBase, input++) & 0xFF);\n            }\n\n            verify(input + SIZE_OF_INT <= inputLimit, input, \"Not enough input bytes\");\n\n            byte type = UNSAFE.getByte(inputBase, input++);\n\n            int literalsLengthType = (type & 0xFF) >>> 6;\n            int offsetCodesType = (type >>> 4) & 0b11;\n            int matchLengthType = (type >>> 2) & 0b11;\n\n            input = computeLiteralsTable(literalsLengthType, inputBase, input, inputLimit);\n            input = computeOffsetsTable(offsetCodesType, inputBase, input, inputLimit);\n            input = computeMatchLengthTable(matchLengthType, inputBase, input, inputLimit);\n\n            // decompress sequences\n            BitInputStream.Initializer initializer = new BitInputStream.Initializer(inputBase, input, inputLimit);\n            initializer.initialize();\n            int bitsConsumed = initializer.getBitsConsumed();\n            long bits = initializer.getBits();\n            long currentAddress = initializer.getCurrentAddress();\n\n            FiniteStateEntropy.Table currentLiteralsLengthTable = this.currentLiteralsLengthTable;\n            FiniteStateEntropy.Table currentOffsetCodesTable = this.currentOffsetCodesTable;\n            FiniteStateEntropy.Table currentMatchLengthTable = this.currentMatchLengthTable;\n\n            int literalsLengthState = (int) peekBits(bitsConsumed, bits, currentLiteralsLengthTable.log2Size);\n            bitsConsumed += currentLiteralsLengthTable.log2Size;\n\n            int offsetCodesState = (int) peekBits(bitsConsumed, bits, currentOffsetCodesTable.log2Size);\n            bitsConsumed += currentOffsetCodesTable.log2Size;\n\n            int matchLengthState = (int) peekBits(bitsConsumed, bits, currentMatchLengthTable.log2Size);\n            bitsConsumed += currentMatchLengthTable.log2Size;\n\n            int[] previousOffsets = this.previousOffsets;\n\n            byte[] literalsLengthNumbersOfBits = currentLiteralsLengthTable.numberOfBits;\n            int[] literalsLengthNewStates = currentLiteralsLengthTable.newState;\n            byte[] literalsLengthSymbols = currentLiteralsLengthTable.symbol;\n\n            byte[] matchLengthNumbersOfBits = currentMatchLengthTable.numberOfBits;\n            int[] matchLengthNewStates = currentMatchLengthTable.newState;\n            byte[] matchLengthSymbols = currentMatchLengthTable.symbol;\n\n            byte[] offsetCodesNumbersOfBits = currentOffsetCodesTable.numberOfBits;\n            int[] offsetCodesNewStates = currentOffsetCodesTable.newState;\n            byte[] offsetCodesSymbols = currentOffsetCodesTable.symbol;\n\n            while (sequenceCount > 0) {\n                sequenceCount--;\n\n                BitInputStream.Loader loader = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n                loader.load();\n                bitsConsumed = loader.getBitsConsumed();\n                bits = loader.getBits();\n                currentAddress = loader.getCurrentAddress();\n                if (loader.isOverflow()) {\n                    verify(sequenceCount == 0, input, \"Not all sequences were consumed\");\n                    break;\n                }\n\n                // decode sequence\n                int literalsLengthCode = literalsLengthSymbols[literalsLengthState];\n                int matchLengthCode = matchLengthSymbols[matchLengthState];\n                int offsetCode = offsetCodesSymbols[offsetCodesState];\n\n                int literalsLengthBits = LITERALS_LENGTH_BITS[literalsLengthCode];\n                int matchLengthBits = MATCH_LENGTH_BITS[matchLengthCode];\n                int offsetBits = offsetCode;\n\n                int offset = OFFSET_CODES_BASE[offsetCode];\n                if (offsetCode > 0) {\n                    offset += peekBits(bitsConsumed, bits, offsetBits);\n                    bitsConsumed += offsetBits;\n                }\n\n                if (offsetCode <= 1) {\n                    if (literalsLengthCode == 0) {\n                        offset++;\n                    }\n\n                    if (offset != 0) {\n                        int temp;\n                        if (offset == 3) {\n                            temp = previousOffsets[0] - 1;\n                        }\n                        else {\n                            temp = previousOffsets[offset];\n                        }\n\n                        if (temp == 0) {\n                            temp = 1;\n                        }\n\n                        if (offset != 1) {\n                            previousOffsets[2] = previousOffsets[1];\n                        }\n                        previousOffsets[1] = previousOffsets[0];\n                        previousOffsets[0] = temp;\n\n                        offset = temp;\n                    }\n                    else {\n                        offset = previousOffsets[0];\n                    }\n                }\n                else {\n                    previousOffsets[2] = previousOffsets[1];\n                    previousOffsets[1] = previousOffsets[0];\n                    previousOffsets[0] = offset;\n                }\n\n                int matchLength = MATCH_LENGTH_BASE[matchLengthCode];\n                if (matchLengthCode > 31) {\n                    matchLength += peekBits(bitsConsumed, bits, matchLengthBits);\n                    bitsConsumed += matchLengthBits;\n                }\n\n                int literalsLength = LITERALS_LENGTH_BASE[literalsLengthCode];\n                if (literalsLengthCode > 15) {\n                    literalsLength += peekBits(bitsConsumed, bits, literalsLengthBits);\n                    bitsConsumed += literalsLengthBits;\n                }\n\n                int totalBits = literalsLengthBits + matchLengthBits + offsetBits;\n                if (totalBits > 64 - 7 - (LITERAL_LENGTH_TABLE_LOG + MATCH_LENGTH_TABLE_LOG + OFFSET_TABLE_LOG)) {\n                    BitInputStream.Loader loader1 = new BitInputStream.Loader(inputBase, input, currentAddress, bits, bitsConsumed);\n                    loader1.load();\n\n                    bitsConsumed = loader1.getBitsConsumed();\n                    bits = loader1.getBits();\n                    currentAddress = loader1.getCurrentAddress();\n                }\n\n                int numberOfBits;\n\n                numberOfBits = literalsLengthNumbersOfBits[literalsLengthState];\n                literalsLengthState = (int) (literalsLengthNewStates[literalsLengthState] + peekBits(bitsConsumed, bits, numberOfBits)); // <= 9 bits\n                bitsConsumed += numberOfBits;\n\n                numberOfBits = matchLengthNumbersOfBits[matchLengthState];\n                matchLengthState = (int) (matchLengthNewStates[matchLengthState] + peekBits(bitsConsumed, bits, numberOfBits)); // <= 9 bits\n                bitsConsumed += numberOfBits;\n\n                numberOfBits = offsetCodesNumbersOfBits[offsetCodesState];\n                offsetCodesState = (int) (offsetCodesNewStates[offsetCodesState] + peekBits(bitsConsumed, bits, numberOfBits)); // <= 8 bits\n                bitsConsumed += numberOfBits;\n\n                final long literalOutputLimit = output + literalsLength;\n                final long matchOutputLimit = literalOutputLimit + matchLength;\n\n                verify(matchOutputLimit <= outputLimit, input, \"Output buffer too small\");\n                long literalEnd = literalsInput + literalsLength;\n                verify(literalEnd <= literalsLimit, input, \"Input is corrupted\");\n\n                long matchAddress = literalOutputLimit - offset;\n                verify(matchAddress >= outputAbsoluteBaseAddress, input, \"Input is corrupted\");\n\n                if (literalOutputLimit > fastOutputLimit) {\n                    executeLastSequence(outputBase, output, literalOutputLimit, matchOutputLimit, fastOutputLimit, literalsInput, matchAddress);\n                }\n                else {\n                    // copy literals. literalOutputLimit <= fastOutputLimit, so we can copy\n                    // long at a time with over-copy\n                    output = copyLiterals(outputBase, literalsBase, output, literalsInput, literalOutputLimit);\n                    copyMatch(outputBase, fastOutputLimit, output, offset, matchOutputLimit, matchAddress, matchLength, fastMatchOutputLimit);\n                }\n                output = matchOutputLimit;\n                literalsInput = literalEnd;\n            }\n        }\n\n        // last literal segment\n        output = copyLastLiteral(input, literalsBase, literalsInput, literalsLimit, outputBase, output, outputLimit);\n\n        return (int) (output - outputAddress);\n    }\n\n    private static long copyLastLiteral(long input, Object literalsBase, long literalsInput, long literalsLimit, Object outputBase, long output, long outputLimit)\n    {\n        long lastLiteralsSize = literalsLimit - literalsInput;\n        verify(output + lastLiteralsSize <= outputLimit, input, \"Output buffer too small\");\n        UNSAFE.copyMemory(literalsBase, literalsInput, outputBase, output, lastLiteralsSize);\n        output += lastLiteralsSize;\n        return output;\n    }\n\n    private static void copyMatch(Object outputBase,\n            long fastOutputLimit,\n            long output,\n            int offset,\n            long matchOutputLimit,\n            long matchAddress,\n            int matchLength,\n            long fastMatchOutputLimit)\n    {\n        matchAddress = copyMatchHead(outputBase, output, offset, matchAddress);\n        output += SIZE_OF_LONG;\n        matchLength -= SIZE_OF_LONG; // first 8 bytes copied above\n\n        copyMatchTail(outputBase, fastOutputLimit, output, matchOutputLimit, matchAddress, matchLength, fastMatchOutputLimit);\n    }\n\n    private static void copyMatchTail(Object outputBase, long fastOutputLimit, long output, long matchOutputLimit, long matchAddress, int matchLength, long fastMatchOutputLimit)\n    {\n        // fastMatchOutputLimit is just fastOutputLimit - SIZE_OF_LONG. It needs to be passed in so that it can be computed once for the\n        // whole invocation to decompressSequences. Otherwise, we'd just compute it here.\n        // If matchOutputLimit is < fastMatchOutputLimit, we know that even after the head (8 bytes) has been copied, the output pointer\n        // will be within fastOutputLimit, so it's safe to copy blindly before checking the limit condition\n        if (matchOutputLimit < fastMatchOutputLimit) {\n            int copied = 0;\n            do {\n                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                output += SIZE_OF_LONG;\n                matchAddress += SIZE_OF_LONG;\n                copied += SIZE_OF_LONG;\n            }\n            while (copied < matchLength);\n        }\n        else {\n            while (output < fastOutputLimit) {\n                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n                matchAddress += SIZE_OF_LONG;\n                output += SIZE_OF_LONG;\n            }\n\n            while (output < matchOutputLimit) {\n                UNSAFE.putByte(outputBase, output++, UNSAFE.getByte(outputBase, matchAddress++));\n            }\n        }\n    }\n\n    private static long copyMatchHead(Object outputBase, long output, int offset, long matchAddress)\n    {\n        // copy match\n        if (offset < 8) {\n            // 8 bytes apart so that we can copy long-at-a-time below\n            int increment32 = DEC_32_TABLE[offset];\n            int decrement64 = DEC_64_TABLE[offset];\n\n            UNSAFE.putByte(outputBase, output, UNSAFE.getByte(outputBase, matchAddress));\n            UNSAFE.putByte(outputBase, output + 1, UNSAFE.getByte(outputBase, matchAddress + 1));\n            UNSAFE.putByte(outputBase, output + 2, UNSAFE.getByte(outputBase, matchAddress + 2));\n            UNSAFE.putByte(outputBase, output + 3, UNSAFE.getByte(outputBase, matchAddress + 3));\n            matchAddress += increment32;\n\n            UNSAFE.putInt(outputBase, output + 4, UNSAFE.getInt(outputBase, matchAddress));\n            matchAddress -= decrement64;\n        }\n        else {\n            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(outputBase, matchAddress));\n            matchAddress += SIZE_OF_LONG;\n        }\n        return matchAddress;\n    }\n\n    private static long copyLiterals(Object outputBase, Object literalsBase, long output, long literalsInput, long literalOutputLimit)\n    {\n        long literalInput = literalsInput;\n        do {\n            UNSAFE.putLong(outputBase, output, UNSAFE.getLong(literalsBase, literalInput));\n            output += SIZE_OF_LONG;\n            literalInput += SIZE_OF_LONG;\n        }\n        while (output < literalOutputLimit);\n        output = literalOutputLimit; // correction in case we over-copied\n        return output;\n    }\n\n    private long computeMatchLengthTable(int matchLengthType, Object inputBase, long input, long inputLimit)\n    {\n        switch (matchLengthType) {\n            case SEQUENCE_ENCODING_RLE:\n                verify(input < inputLimit, input, \"Not enough input bytes\");\n\n                byte value = UNSAFE.getByte(inputBase, input++);\n                verify(value <= MAX_MATCH_LENGTH_SYMBOL, input, \"Value exceeds expected maximum value\");\n\n                FseTableReader.initializeRleTable(matchLengthTable, value);\n                currentMatchLengthTable = matchLengthTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                currentMatchLengthTable = DEFAULT_MATCH_LENGTH_TABLE;\n                break;\n            case SEQUENCE_ENCODING_REPEAT:\n                verify(currentMatchLengthTable != null, input, \"Expected match length table to be present\");\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                input += fse.readFseTable(matchLengthTable, inputBase, input, inputLimit, MAX_MATCH_LENGTH_SYMBOL, MATCH_LENGTH_TABLE_LOG);\n                currentMatchLengthTable = matchLengthTable;\n                break;\n            default:\n                throw fail(input, \"Invalid match length encoding type\");\n        }\n        return input;\n    }\n\n    private long computeOffsetsTable(int offsetCodesType, Object inputBase, long input, long inputLimit)\n    {\n        switch (offsetCodesType) {\n            case SEQUENCE_ENCODING_RLE:\n                verify(input < inputLimit, input, \"Not enough input bytes\");\n\n                byte value = UNSAFE.getByte(inputBase, input++);\n                verify(value <= DEFAULT_MAX_OFFSET_CODE_SYMBOL, input, \"Value exceeds expected maximum value\");\n\n                FseTableReader.initializeRleTable(offsetCodesTable, value);\n                currentOffsetCodesTable = offsetCodesTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                currentOffsetCodesTable = DEFAULT_OFFSET_CODES_TABLE;\n                break;\n            case SEQUENCE_ENCODING_REPEAT:\n                verify(currentOffsetCodesTable != null, input, \"Expected match length table to be present\");\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                input += fse.readFseTable(offsetCodesTable, inputBase, input, inputLimit, DEFAULT_MAX_OFFSET_CODE_SYMBOL, OFFSET_TABLE_LOG);\n                currentOffsetCodesTable = offsetCodesTable;\n                break;\n            default:\n                throw fail(input, \"Invalid offset code encoding type\");\n        }\n        return input;\n    }\n\n    private long computeLiteralsTable(int literalsLengthType, Object inputBase, long input, long inputLimit)\n    {\n        switch (literalsLengthType) {\n            case SEQUENCE_ENCODING_RLE:\n                verify(input < inputLimit, input, \"Not enough input bytes\");\n\n                byte value = UNSAFE.getByte(inputBase, input++);\n                verify(value <= MAX_LITERALS_LENGTH_SYMBOL, input, \"Value exceeds expected maximum value\");\n\n                FseTableReader.initializeRleTable(literalsLengthTable, value);\n                currentLiteralsLengthTable = literalsLengthTable;\n                break;\n            case SEQUENCE_ENCODING_BASIC:\n                currentLiteralsLengthTable = DEFAULT_LITERALS_LENGTH_TABLE;\n                break;\n            case SEQUENCE_ENCODING_REPEAT:\n                verify(currentLiteralsLengthTable != null, input, \"Expected match length table to be present\");\n                break;\n            case SEQUENCE_ENCODING_COMPRESSED:\n                input += fse.readFseTable(literalsLengthTable, inputBase, input, inputLimit, MAX_LITERALS_LENGTH_SYMBOL, LITERAL_LENGTH_TABLE_LOG);\n                currentLiteralsLengthTable = literalsLengthTable;\n                break;\n            default:\n                throw fail(input, \"Invalid literals length encoding type\");\n        }\n        return input;\n    }\n\n    private void executeLastSequence(Object outputBase, long output, long literalOutputLimit, long matchOutputLimit, long fastOutputLimit, long literalInput, long matchAddress)\n    {\n        // copy literals\n        if (output < fastOutputLimit) {\n            // wild copy\n            do {\n                UNSAFE.putLong(outputBase, output, UNSAFE.getLong(literalsBase, literalInput));\n                output += SIZE_OF_LONG;\n                literalInput += SIZE_OF_LONG;\n            }\n            while (output < fastOutputLimit);\n\n            literalInput -= output - fastOutputLimit;\n            output = fastOutputLimit;\n        }\n\n        while (output < literalOutputLimit) {\n            UNSAFE.putByte(outputBase, output, UNSAFE.getByte(literalsBase, literalInput));\n            output++;\n            literalInput++;\n        }\n\n        // copy match\n        while (output < matchOutputLimit) {\n            UNSAFE.putByte(outputBase, output, UNSAFE.getByte(outputBase, matchAddress));\n            output++;\n            matchAddress++;\n        }\n    }\n\n    private int decodeCompressedLiterals(Object inputBase, final long inputAddress, int blockSize, int literalsBlockType)\n    {\n        long input = inputAddress;\n        verify(blockSize >= 5, input, \"Not enough input bytes\");\n\n        // compressed\n        int compressedSize;\n        int uncompressedSize;\n        boolean singleStream = false;\n        int headerSize;\n        int type = (UNSAFE.getByte(inputBase, input) >> 2) & 0b11;\n        switch (type) {\n            case 0:\n                singleStream = true;\n            case 1: {\n                int header = UNSAFE.getInt(inputBase, input);\n\n                headerSize = 3;\n                uncompressedSize = (header >>> 4) & mask(10);\n                compressedSize = (header >>> 14) & mask(10);\n                break;\n            }\n            case 2: {\n                int header = UNSAFE.getInt(inputBase, input);\n\n                headerSize = 4;\n                uncompressedSize = (header >>> 4) & mask(14);\n                compressedSize = (header >>> 18) & mask(14);\n                break;\n            }\n            case 3: {\n                // read 5 little-endian bytes\n                long header = UNSAFE.getByte(inputBase, input) & 0xFF |\n                        (UNSAFE.getInt(inputBase, input + 1) & 0xFFFF_FFFFL) << 8;\n\n                headerSize = 5;\n                uncompressedSize = (int) ((header >>> 4) & mask(18));\n                compressedSize = (int) ((header >>> 22) & mask(18));\n                break;\n            }\n            default:\n                throw fail(input, \"Invalid literals header size type\");\n        }\n\n        verify(uncompressedSize <= MAX_BLOCK_SIZE, input, \"Block exceeds maximum size\");\n        verify(headerSize + compressedSize <= blockSize, input, \"Input is corrupted\");\n\n        input += headerSize;\n\n        long inputLimit = input + compressedSize;\n        if (literalsBlockType != TREELESS_LITERALS_BLOCK) {\n            input += huffman.readTable(inputBase, input, compressedSize);\n        }\n\n        literalsBase = literals;\n        literalsAddress = ARRAY_BYTE_BASE_OFFSET;\n        literalsLimit = ARRAY_BYTE_BASE_OFFSET + uncompressedSize;\n\n        if (singleStream) {\n            huffman.decodeSingleStream(inputBase, input, inputLimit, literals, literalsAddress, literalsLimit);\n        }\n        else {\n            huffman.decode4Streams(inputBase, input, inputLimit, literals, literalsAddress, literalsLimit);\n        }\n\n        return headerSize + compressedSize;\n    }\n\n    private int decodeRleLiterals(Object inputBase, final long inputAddress, int blockSize)\n    {\n        long input = inputAddress;\n        int outputSize;\n\n        int type = (UNSAFE.getByte(inputBase, input) >> 2) & 0b11;\n        switch (type) {\n            case 0:\n            case 2:\n                outputSize = (UNSAFE.getByte(inputBase, input) & 0xFF) >>> 3;\n                input++;\n                break;\n            case 1:\n                outputSize = (UNSAFE.getShort(inputBase, input) & 0xFFFF) >>> 4;\n                input += 2;\n                break;\n            case 3:\n                // we need at least 4 bytes (3 for the header, 1 for the payload)\n                verify(blockSize >= SIZE_OF_INT, input, \"Not enough input bytes\");\n                outputSize = (UNSAFE.getInt(inputBase, input) & 0xFF_FFFF) >>> 4;\n                input += 3;\n                break;\n            default:\n                throw fail(input, \"Invalid RLE literals header encoding type\");\n        }\n\n        verify(outputSize <= MAX_BLOCK_SIZE, input, \"Output exceeds maximum block size\");\n\n        byte value = UNSAFE.getByte(inputBase, input++);\n        Arrays.fill(literals, 0, outputSize + SIZE_OF_LONG, value);\n\n        literalsBase = literals;\n        literalsAddress = ARRAY_BYTE_BASE_OFFSET;\n        literalsLimit = ARRAY_BYTE_BASE_OFFSET + outputSize;\n\n        return (int) (input - inputAddress);\n    }\n\n    private int decodeRawLiterals(Object inputBase, final long inputAddress, long inputLimit)\n    {\n        long input = inputAddress;\n        int type = (UNSAFE.getByte(inputBase, input) >> 2) & 0b11;\n\n        int literalSize;\n        switch (type) {\n            case 0:\n            case 2:\n                literalSize = (UNSAFE.getByte(inputBase, input) & 0xFF) >>> 3;\n                input++;\n                break;\n            case 1:\n                literalSize = (UNSAFE.getShort(inputBase, input) & 0xFFFF) >>> 4;\n                input += 2;\n                break;\n            case 3:\n                // read 3 little-endian bytes\n                int header = ((UNSAFE.getByte(inputBase, input) & 0xFF) |\n                        ((UNSAFE.getShort(inputBase, input + 1) & 0xFFFF) << 8));\n\n                literalSize = header >>> 4;\n                input += 3;\n                break;\n            default:\n                throw fail(input, \"Invalid raw literals header encoding type\");\n        }\n\n        verify(input + literalSize <= inputLimit, input, \"Not enough input bytes\");\n\n        // Set literals pointer to [input, literalSize], but only if we can copy 8 bytes at a time during sequence decoding\n        // Otherwise, copy literals into buffer that's big enough to guarantee that\n        if (literalSize > (inputLimit - input) - SIZE_OF_LONG) {\n            literalsBase = literals;\n            literalsAddress = ARRAY_BYTE_BASE_OFFSET;\n            literalsLimit = ARRAY_BYTE_BASE_OFFSET + literalSize;\n\n            UNSAFE.copyMemory(inputBase, input, literals, literalsAddress, literalSize);\n            Arrays.fill(literals, literalSize, literalSize + SIZE_OF_LONG, (byte) 0);\n        }\n        else {\n            literalsBase = inputBase;\n            literalsAddress = input;\n            literalsLimit = literalsAddress + literalSize;\n        }\n        input += literalSize;\n\n        return (int) (input - inputAddress);\n    }\n\n    static FrameHeader readFrameHeader(final Object inputBase, final long inputAddress, final long inputLimit)\n    {\n        long input = inputAddress;\n        verify(input < inputLimit, input, \"Not enough input bytes\");\n\n        int frameHeaderDescriptor = UNSAFE.getByte(inputBase, input++) & 0xFF;\n        boolean singleSegment = (frameHeaderDescriptor & 0b100000) != 0;\n        int dictionaryDescriptor = frameHeaderDescriptor & 0b11;\n        int contentSizeDescriptor = frameHeaderDescriptor >>> 6;\n\n        int headerSize = 1 +\n                (singleSegment ? 0 : 1) +\n                (dictionaryDescriptor == 0 ? 0 : (1 << (dictionaryDescriptor - 1))) +\n                (contentSizeDescriptor == 0 ? (singleSegment ? 1 : 0) : (1 << contentSizeDescriptor));\n\n        verify(headerSize <= inputLimit - inputAddress, input, \"Not enough input bytes\");\n\n        // decode window size\n        int windowSize = -1;\n        if (!singleSegment) {\n            int windowDescriptor = UNSAFE.getByte(inputBase, input++) & 0xFF;\n            int exponent = windowDescriptor >>> 3;\n            int mantissa = windowDescriptor & 0b111;\n\n            int base = 1 << (MIN_WINDOW_LOG + exponent);\n            windowSize = base + (base / 8) * mantissa;\n        }\n\n        // decode dictionary id\n        long dictionaryId = -1;\n        switch (dictionaryDescriptor) {\n            case 1:\n                dictionaryId = UNSAFE.getByte(inputBase, input) & 0xFF;\n                input += SIZE_OF_BYTE;\n                break;\n            case 2:\n                dictionaryId = UNSAFE.getShort(inputBase, input) & 0xFFFF;\n                input += SIZE_OF_SHORT;\n                break;\n            case 3:\n                dictionaryId = UNSAFE.getInt(inputBase, input) & 0xFFFF_FFFFL;\n                input += SIZE_OF_INT;\n                break;\n        }\n        verify(dictionaryId == -1, input, \"Custom dictionaries not supported\");\n\n        // decode content size\n        long contentSize = -1;\n        switch (contentSizeDescriptor) {\n            case 0:\n                if (singleSegment) {\n                    contentSize = UNSAFE.getByte(inputBase, input) & 0xFF;\n                    input += SIZE_OF_BYTE;\n                }\n                break;\n            case 1:\n                contentSize = UNSAFE.getShort(inputBase, input) & 0xFFFF;\n                contentSize += 256;\n                input += SIZE_OF_SHORT;\n                break;\n            case 2:\n                contentSize = UNSAFE.getInt(inputBase, input) & 0xFFFF_FFFFL;\n                input += SIZE_OF_INT;\n                break;\n            case 3:\n                contentSize = UNSAFE.getLong(inputBase, input);\n                input += SIZE_OF_LONG;\n                break;\n        }\n\n        boolean hasChecksum = (frameHeaderDescriptor & 0b100) != 0;\n\n        return new FrameHeader(\n                input - inputAddress,\n                windowSize,\n                contentSize,\n                dictionaryId,\n                hasChecksum);\n    }\n\n    public static long getDecompressedSize(final Object inputBase, final long inputAddress, final long inputLimit)\n    {\n        long input = inputAddress;\n        input += verifyMagic(inputBase, input, inputLimit);\n        return readFrameHeader(inputBase, input, inputLimit).contentSize;\n    }\n\n    static int verifyMagic(Object inputBase, long inputAddress, long inputLimit)\n    {\n        verify(inputLimit - inputAddress >= 4, inputAddress, \"Not enough input bytes\");\n\n        int magic = UNSAFE.getInt(inputBase, inputAddress);\n        if (magic != MAGIC_NUMBER) {\n            if (magic == V07_MAGIC_NUMBER) {\n                throw new MalformedInputException(inputAddress, \"Data encoded in unsupported ZSTD v0.7 format\");\n            }\n            throw new MalformedInputException(inputAddress, \"Invalid magic prefix: \" + Integer.toHexString(magic));\n        }\n\n        return SIZE_OF_INT;\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\n\nimport java.io.IOException;\nimport java.io.InputStream;\n\nimport static java.util.Objects.requireNonNull;\n\nclass ZstdHadoopInputStream\n        extends HadoopInputStream\n{\n    private final InputStream in;\n    private ZstdInputStream zstdInputStream;\n\n    public ZstdHadoopInputStream(InputStream in)\n    {\n        this.in = requireNonNull(in, \"in is null\");\n        zstdInputStream = new ZstdInputStream(in);\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        return zstdInputStream.read();\n    }\n\n    @Override\n    public int read(byte[] b)\n            throws IOException\n    {\n        return zstdInputStream.read(b);\n    }\n\n    @Override\n    public int read(byte[] outputBuffer, int outputOffset, int outputLength)\n            throws IOException\n    {\n        return zstdInputStream.read(outputBuffer, outputOffset, outputLength);\n    }\n\n    @Override\n    public void resetState()\n    {\n        zstdInputStream = new ZstdInputStream(in);\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        zstdInputStream.close();\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdHadoopOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\nimport static java.util.Objects.requireNonNull;\n\nclass ZstdHadoopOutputStream\n        extends HadoopOutputStream\n{\n    private final OutputStream out;\n    private boolean initialized;\n    private ZstdOutputStream zstdOutputStream;\n\n    public ZstdHadoopOutputStream(OutputStream out)\n    {\n        this.out = requireNonNull(out, \"out is null\");\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        openStreamIfNecessary();\n        zstdOutputStream.write(b);\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        openStreamIfNecessary();\n        zstdOutputStream.write(buffer, offset, length);\n    }\n\n    @Override\n    public void finish()\n            throws IOException\n    {\n        if (zstdOutputStream != null) {\n            zstdOutputStream.finishWithoutClosingSource();\n            zstdOutputStream = null;\n        }\n    }\n\n    @Override\n    public void flush()\n            throws IOException\n    {\n        out.flush();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        try {\n            // it the stream has never been initialized, create a valid empty file\n            if (!initialized) {\n                openStreamIfNecessary();\n            }\n            finish();\n        }\n        finally {\n            out.close();\n        }\n    }\n\n    private void openStreamIfNecessary()\n            throws IOException\n    {\n        if (zstdOutputStream == null) {\n            initialized = true;\n            zstdOutputStream = new ZstdOutputStream(out);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdHadoopStreams.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.hadoop.HadoopInputStream;\nimport io.airlift.compress.v3.hadoop.HadoopOutputStream;\nimport io.airlift.compress.v3.hadoop.HadoopStreams;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.List;\n\nimport static java.util.Collections.singletonList;\n\npublic class ZstdHadoopStreams\n        implements HadoopStreams\n{\n    @Override\n    public String getDefaultFileExtension()\n    {\n        return \".zst\";\n    }\n\n    @Override\n    public List<String> getHadoopCodecName()\n    {\n        return singletonList(\"org.apache.hadoop.io.compress.ZStandardCodec\");\n    }\n\n    @Override\n    public HadoopInputStream createInputStream(InputStream in)\n            throws IOException\n    {\n        return new ZstdHadoopInputStream(in);\n    }\n\n    @Override\n    public HadoopOutputStream createOutputStream(OutputStream out)\n            throws IOException\n    {\n        return new ZstdHadoopOutputStream(out);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdIncrementalFrameDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.Constants.COMPRESSED_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.Constants.RAW_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.RLE_BLOCK;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_BLOCK_HEADER;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_INT;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.UNSAFE;\nimport static io.airlift.compress.v3.zstd.Util.checkArgument;\nimport static io.airlift.compress.v3.zstd.Util.checkState;\nimport static io.airlift.compress.v3.zstd.Util.fail;\nimport static io.airlift.compress.v3.zstd.Util.verify;\nimport static io.airlift.compress.v3.zstd.ZstdFrameDecompressor.MAX_WINDOW_SIZE;\nimport static io.airlift.compress.v3.zstd.ZstdFrameDecompressor.decodeRawBlock;\nimport static io.airlift.compress.v3.zstd.ZstdFrameDecompressor.decodeRleBlock;\nimport static io.airlift.compress.v3.zstd.ZstdFrameDecompressor.readFrameHeader;\nimport static io.airlift.compress.v3.zstd.ZstdFrameDecompressor.verifyMagic;\nimport static java.lang.Math.max;\nimport static java.lang.Math.min;\nimport static java.lang.Math.toIntExact;\nimport static java.lang.String.format;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdIncrementalFrameDecompressor\n{\n    private enum State {\n        INITIAL,\n        READ_FRAME_MAGIC,\n        READ_FRAME_HEADER,\n        READ_BLOCK_HEADER,\n        READ_BLOCK,\n        READ_BLOCK_CHECKSUM,\n        FLUSH_OUTPUT\n    }\n\n    private final ZstdFrameDecompressor frameDecompressor = new ZstdFrameDecompressor();\n\n    private State state = State.INITIAL;\n    private FrameHeader frameHeader;\n    private int blockHeader = -1;\n\n    private int inputConsumed;\n    private int outputBufferUsed;\n\n    private int inputRequired;\n    private int requestedOutputSize;\n\n    // current window buffer\n    private byte[] windowBase = new byte[0];\n    private long windowAddress = ARRAY_BYTE_BASE_OFFSET;\n    private long windowLimit = ARRAY_BYTE_BASE_OFFSET;\n    private long windowPosition = ARRAY_BYTE_BASE_OFFSET;\n\n    private XxHash64 partialHash;\n\n    public boolean isAtStoppingPoint()\n    {\n        return state == State.READ_FRAME_MAGIC;\n    }\n\n    public int getInputConsumed()\n    {\n        return inputConsumed;\n    }\n\n    public int getOutputBufferUsed()\n    {\n        return outputBufferUsed;\n    }\n\n    public int getInputRequired()\n    {\n        return inputRequired;\n    }\n\n    public int getRequestedOutputSize()\n    {\n        return requestedOutputSize;\n    }\n\n    public void partialDecompress(\n            final Object inputBase,\n            final long inputAddress,\n            final long inputLimit,\n            final byte[] outputArray,\n            final int outputOffset,\n            final int outputLimit)\n    {\n        if (inputRequired > inputLimit - inputAddress) {\n            throw new IllegalArgumentException(format(\n                    \"Required %s input bytes, but only %s input bytes were supplied\",\n                    inputRequired,\n                    inputLimit - inputAddress));\n        }\n        if (requestedOutputSize > 0 && outputOffset >= outputLimit) {\n            throw new IllegalArgumentException(\"Not enough space in output buffer to output\");\n        }\n\n        long input = inputAddress;\n        int output = outputOffset;\n\n        while (true) {\n            // Flush ready output\n            {\n                int flushableOutputSize = computeFlushableOutputSize(frameHeader);\n                if (flushableOutputSize > 0) {\n                    int freeOutputSize = outputLimit - output;\n                    if (freeOutputSize > 0) {\n                        int copySize = min(freeOutputSize, flushableOutputSize);\n                        System.arraycopy(windowBase, toIntExact(windowAddress - ARRAY_BYTE_BASE_OFFSET), outputArray, output, copySize);\n                        if (partialHash != null) {\n                            partialHash.update(outputArray, output, copySize);\n                        }\n                        windowAddress += copySize;\n                        output += copySize;\n                        flushableOutputSize -= copySize;\n                    }\n                    if (flushableOutputSize > 0) {\n                        requestOutput(inputAddress, outputOffset, input, output, flushableOutputSize);\n                        return;\n                    }\n                }\n            }\n            // verify data was completely flushed\n            checkState(computeFlushableOutputSize(frameHeader) == 0, \"Expected output to be flushed\");\n\n            if (state == State.READ_FRAME_MAGIC || state == State.INITIAL) {\n                if (inputLimit - input < 4) {\n                    inputRequired(inputAddress, outputOffset, input, output, 4);\n                    return;\n                }\n                input += verifyMagic(inputBase, input, inputLimit);\n                state = State.READ_FRAME_HEADER;\n            }\n\n            if (state == State.READ_FRAME_HEADER) {\n                if (inputLimit - input < 1) {\n                    inputRequired(inputAddress, outputOffset, input, output, 1);\n                    return;\n                }\n                int frameHeaderSize = determineFrameHeaderSize(inputBase, input, inputLimit);\n                if (inputLimit - input < frameHeaderSize) {\n                    inputRequired(inputAddress, outputOffset, input, output, frameHeaderSize);\n                    return;\n                }\n                frameHeader = readFrameHeader(inputBase, input, inputLimit);\n                verify(frameHeaderSize == frameHeader.headerSize, input, \"Unexpected frame header size\");\n                input += frameHeaderSize;\n                state = State.READ_BLOCK_HEADER;\n\n                reset();\n                if (frameHeader.hasChecksum) {\n                    partialHash = new XxHash64();\n                }\n            }\n            else {\n                verify(frameHeader != null, input, \"Frame header is not set\");\n            }\n\n            if (state == State.READ_BLOCK_HEADER) {\n                long inputBufferSize = inputLimit - input;\n                if (inputBufferSize < SIZE_OF_BLOCK_HEADER) {\n                    inputRequired(inputAddress, outputOffset, input, output, SIZE_OF_BLOCK_HEADER);\n                    return;\n                }\n                if (inputBufferSize >= SIZE_OF_INT) {\n                    blockHeader = UNSAFE.getInt(inputBase, input) & 0xFF_FFFF;\n                }\n                else {\n                    blockHeader = UNSAFE.getByte(inputBase, input) & 0xFF |\n                            (UNSAFE.getByte(inputBase, input + 1) & 0xFF) << 8 |\n                            (UNSAFE.getByte(inputBase, input + 2) & 0xFF) << 16;\n                    int expected = UNSAFE.getInt(inputBase, input) & 0xFF_FFFF;\n                    verify(blockHeader == expected, input, \"oops\");\n                }\n                input += SIZE_OF_BLOCK_HEADER;\n                state = State.READ_BLOCK;\n            }\n            else {\n                verify(blockHeader != -1, input, \"Block header is not set\");\n            }\n\n            boolean lastBlock = (blockHeader & 1) != 0;\n            if (state == State.READ_BLOCK) {\n                int blockType = (blockHeader >>> 1) & 0b11;\n                int blockSize = (blockHeader >>> 3) & 0x1F_FFFF; // 21 bits\n\n                resizeWindowBufferIfNecessary(frameHeader, blockType, blockSize);\n\n                int decodedSize;\n                switch (blockType) {\n                    case RAW_BLOCK: {\n                        if (inputLimit - input < blockSize) {\n                            inputRequired(inputAddress, outputOffset, input, output, blockSize);\n                            return;\n                        }\n                        verify(windowLimit - windowPosition >= blockSize, input, \"window buffer is too small\");\n                        decodedSize = decodeRawBlock(inputBase, input, blockSize, windowBase, windowPosition, windowLimit);\n                        input += blockSize;\n                        break;\n                    }\n                    case RLE_BLOCK: {\n                        if (inputLimit - input < 1) {\n                            inputRequired(inputAddress, outputOffset, input, output, 1);\n                            return;\n                        }\n                        verify(windowLimit - windowPosition >= blockSize, input, \"window buffer is too small\");\n                        decodedSize = decodeRleBlock(blockSize, inputBase, input, windowBase, windowPosition, windowLimit);\n                        input += 1;\n                        break;\n                    }\n                    case COMPRESSED_BLOCK: {\n                        if (inputLimit - input < blockSize) {\n                            inputRequired(inputAddress, outputOffset, input, output, blockSize);\n                            return;\n                        }\n                        verify(windowLimit - windowPosition >= MAX_BLOCK_SIZE, input, \"window buffer is too small\");\n                        decodedSize = frameDecompressor.decodeCompressedBlock(inputBase, input, blockSize, windowBase, windowPosition, windowLimit, frameHeader.windowSize, windowAddress);\n                        input += blockSize;\n                        break;\n                    }\n                    default:\n                        throw fail(input, \"Invalid block type\");\n                }\n                windowPosition += decodedSize;\n                if (lastBlock) {\n                    state = State.READ_BLOCK_CHECKSUM;\n                }\n                else {\n                    state = State.READ_BLOCK_HEADER;\n                }\n            }\n\n            if (state == State.READ_BLOCK_CHECKSUM) {\n                if (frameHeader.hasChecksum) {\n                    if (inputLimit - input < SIZE_OF_INT) {\n                        inputRequired(inputAddress, outputOffset, input, output, SIZE_OF_INT);\n                        return;\n                    }\n\n                    // read checksum\n                    int checksum = UNSAFE.getInt(inputBase, input);\n                    input += SIZE_OF_INT;\n\n                    checkState(partialHash != null, \"Partial hash not set\");\n\n                    // hash remaining frame data\n                    int pendingOutputSize = toIntExact(windowPosition - windowAddress);\n                    partialHash.update(windowBase, toIntExact(windowAddress - ARRAY_BYTE_BASE_OFFSET), pendingOutputSize);\n\n                    // verify hash\n                    long hash = partialHash.hash();\n                    if (checksum != (int) hash) {\n                        throw new MalformedInputException(input, format(\"Bad checksum. Expected: %s, actual: %s\", Integer.toHexString(checksum), Integer.toHexString((int) hash)));\n                    }\n                }\n                state = State.READ_FRAME_MAGIC;\n                frameHeader = null;\n                blockHeader = -1;\n            }\n        }\n    }\n\n    private void reset()\n    {\n        frameDecompressor.reset();\n\n        windowAddress = ARRAY_BYTE_BASE_OFFSET;\n        windowPosition = ARRAY_BYTE_BASE_OFFSET;\n    }\n\n    private int computeFlushableOutputSize(FrameHeader frameHeader)\n    {\n        return max(0, toIntExact(windowPosition - windowAddress - (frameHeader == null ? 0 : frameHeader.computeRequiredOutputBufferLookBackSize())));\n    }\n\n    private void resizeWindowBufferIfNecessary(FrameHeader frameHeader, int blockType, int blockSize)\n    {\n        int maxBlockOutput;\n        if (blockType == RAW_BLOCK || blockType == RLE_BLOCK) {\n            maxBlockOutput = blockSize;\n        }\n        else {\n            maxBlockOutput = MAX_BLOCK_SIZE;\n        }\n\n        // if window buffer is full, move content to head of buffer and continue\n        if (windowLimit - windowPosition < MAX_BLOCK_SIZE) {\n            // output should have been flushed at the top of this method\n            int requiredWindowSize = frameHeader.computeRequiredOutputBufferLookBackSize();\n            checkState(windowPosition - windowAddress <= requiredWindowSize, \"Expected output to be flushed\");\n\n            int windowContentsSize = toIntExact(windowPosition - windowAddress);\n\n            // if window content is currently offset from the array base, move to the front\n            if (windowAddress != ARRAY_BYTE_BASE_OFFSET) {\n                // copy the window contents to the head of the window buffer\n                System.arraycopy(windowBase, toIntExact(windowAddress - ARRAY_BYTE_BASE_OFFSET), windowBase, 0, windowContentsSize);\n                windowAddress = ARRAY_BYTE_BASE_OFFSET;\n                windowPosition = windowAddress + windowContentsSize;\n            }\n            checkState(windowAddress == ARRAY_BYTE_BASE_OFFSET, \"Window should be packed\");\n\n            // if window free space is still too small, grow array\n            if (windowLimit - windowPosition < maxBlockOutput) {\n                // if content size is set and smaller than the required window size, use the content size\n                int newWindowSize;\n                if (frameHeader.contentSize >= 0 && frameHeader.contentSize < requiredWindowSize) {\n                    newWindowSize = toIntExact(frameHeader.contentSize);\n                }\n                else {\n                    // double the current necessary window size\n                    newWindowSize = (windowContentsSize + maxBlockOutput) * 2;\n                    // limit to 4x the required window size (or block size if larger)\n                    newWindowSize = min(newWindowSize, max(requiredWindowSize, MAX_BLOCK_SIZE) * 4);\n                    // limit to the max window size with one max sized block\n                    newWindowSize = min(newWindowSize, MAX_WINDOW_SIZE + MAX_BLOCK_SIZE);\n                    // must allocate at least enough space for a max sized block\n                    newWindowSize = max(windowContentsSize + maxBlockOutput, newWindowSize);\n                    checkState(windowContentsSize + maxBlockOutput <= newWindowSize, \"Computed new window size buffer is not large enough\");\n                }\n                windowBase = Arrays.copyOf(windowBase, newWindowSize);\n                windowLimit = newWindowSize + ARRAY_BYTE_BASE_OFFSET;\n            }\n\n            checkState(windowLimit - windowPosition >= maxBlockOutput, \"window buffer is too small\");\n        }\n    }\n\n    private static int determineFrameHeaderSize(final Object inputBase, final long inputAddress, final long inputLimit)\n    {\n        verify(inputAddress < inputLimit, inputAddress, \"Not enough input bytes\");\n\n        int frameHeaderDescriptor = UNSAFE.getByte(inputBase, inputAddress) & 0xFF;\n        boolean singleSegment = (frameHeaderDescriptor & 0b100000) != 0;\n        int dictionaryDescriptor = frameHeaderDescriptor & 0b11;\n        int contentSizeDescriptor = frameHeaderDescriptor >>> 6;\n\n        return 1 +\n                (singleSegment ? 0 : 1) +\n                (dictionaryDescriptor == 0 ? 0 : (1 << (dictionaryDescriptor - 1))) +\n                (contentSizeDescriptor == 0 ? (singleSegment ? 1 : 0) : (1 << contentSizeDescriptor));\n    }\n\n    private void requestOutput(long inputAddress, int outputOffset, long input, int output, int requestedOutputSize)\n    {\n        updateInputOutputState(inputAddress, outputOffset, input, output);\n\n        checkArgument(requestedOutputSize >= 0, \"requestedOutputSize is negative\");\n        this.requestedOutputSize = requestedOutputSize;\n\n        this.inputRequired = 0;\n    }\n\n    private void inputRequired(long inputAddress, int outputOffset, long input, int output, int inputRequired)\n    {\n        updateInputOutputState(inputAddress, outputOffset, input, output);\n\n        checkState(inputRequired >= 0, \"inputRequired is negative\");\n        this.inputRequired = inputRequired;\n\n        this.requestedOutputSize = 0;\n    }\n\n    private void updateInputOutputState(long inputAddress, int outputOffset, long input, int output)\n    {\n        inputConsumed = (int) (input - inputAddress);\n        checkState(inputConsumed >= 0, \"inputConsumed is negative\");\n        outputBufferUsed = output - outputOffset;\n        checkState(outputBufferUsed >= 0, \"outputBufferUsed is negative\");\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.Util.checkPositionIndexes;\nimport static io.airlift.compress.v3.zstd.Util.checkState;\nimport static java.lang.Math.max;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdInputStream\n        extends InputStream\n{\n    private static final int MIN_BUFFER_SIZE = 4096;\n\n    private final InputStream inputStream;\n    private final ZstdIncrementalFrameDecompressor decompressor = new ZstdIncrementalFrameDecompressor();\n\n    private byte[] inputBuffer = new byte[decompressor.getInputRequired()];\n    private int inputBufferOffset;\n    private int inputBufferLimit;\n\n    private byte[] singleByteOutputBuffer;\n\n    private boolean closed;\n\n    public ZstdInputStream(InputStream inputStream)\n    {\n        this.inputStream = requireNonNull(inputStream, \"inputStream is null\");\n    }\n\n    @Override\n    public int read()\n            throws IOException\n    {\n        if (singleByteOutputBuffer == null) {\n            singleByteOutputBuffer = new byte[1];\n        }\n        int readSize = read(singleByteOutputBuffer, 0, 1);\n        checkState(readSize != 0, \"A zero read size should never be returned\");\n        if (readSize != 1) {\n            return -1;\n        }\n        return singleByteOutputBuffer[0] & 0xFF;\n    }\n\n    @Override\n    public int read(final byte[] outputBuffer, final int outputOffset, final int outputLength)\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n\n        if (outputBuffer == null) {\n            throw new NullPointerException();\n        }\n        checkPositionIndexes(outputOffset, outputOffset + outputLength, outputBuffer.length);\n        if (outputLength == 0) {\n            return 0;\n        }\n\n        final int outputLimit = outputOffset + outputLength;\n        int outputUsed = 0;\n        while (outputUsed < outputLength) {\n            boolean enoughInput = fillInputBufferIfNecessary(decompressor.getInputRequired());\n            if (!enoughInput) {\n                if (decompressor.isAtStoppingPoint()) {\n                    return outputUsed > 0 ? outputUsed : -1;\n                }\n                throw new IOException(\"Not enough input bytes\");\n            }\n\n            decompressor.partialDecompress(\n                    inputBuffer,\n                    inputBufferOffset + ARRAY_BYTE_BASE_OFFSET,\n                    inputBufferLimit + ARRAY_BYTE_BASE_OFFSET,\n                    outputBuffer,\n                    outputOffset + outputUsed,\n                    outputLimit);\n\n            inputBufferOffset += decompressor.getInputConsumed();\n            outputUsed += decompressor.getOutputBufferUsed();\n        }\n        return outputUsed;\n    }\n\n    private boolean fillInputBufferIfNecessary(int requiredSize)\n            throws IOException\n    {\n        if (inputBufferLimit - inputBufferOffset >= requiredSize) {\n            return true;\n        }\n\n        // compact existing buffered data to the front of the buffer\n        if (inputBufferOffset > 0) {\n            int copySize = inputBufferLimit - inputBufferOffset;\n            System.arraycopy(inputBuffer, inputBufferOffset, inputBuffer, 0, copySize);\n            inputBufferOffset = 0;\n            inputBufferLimit = copySize;\n        }\n\n        if (inputBuffer.length < requiredSize) {\n            inputBuffer = Arrays.copyOf(inputBuffer, max(requiredSize, MIN_BUFFER_SIZE));\n        }\n\n        while (inputBufferLimit < inputBuffer.length) {\n            int readSize = inputStream.read(inputBuffer, inputBufferLimit, inputBuffer.length - inputBufferLimit);\n            if (readSize < 0) {\n                break;\n            }\n            inputBufferLimit += readSize;\n        }\n        return inputBufferLimit >= requiredSize;\n    }\n\n    @Override\n    public int available()\n            throws IOException\n    {\n        if (closed) {\n            return 0;\n        }\n        return decompressor.getRequestedOutputSize();\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (!closed) {\n            closed = true;\n            inputStream.close();\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdJavaCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdJavaCompressor\n        implements ZstdCompressor\n{\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        int result = uncompressedSize + (uncompressedSize >>> 8);\n\n        if (uncompressedSize < MAX_BLOCK_SIZE) {\n            result += (MAX_BLOCK_SIZE - uncompressedSize) >>> 11;\n        }\n\n        return result;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n\n        return ZstdFrameCompressor.compress(input, inputAddress, inputAddress + inputLength, output, outputAddress, outputAddress + maxOutputLength, CompressionParameters.DEFAULT_COMPRESSION_LEVEL);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return ZstdFrameCompressor.compress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit,\n                    CompressionParameters.DEFAULT_COMPRESSION_LEVEL);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdJavaDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.getAddress;\nimport static io.airlift.compress.v3.zstd.UnsafeUtil.getBase;\nimport static java.lang.Math.addExact;\nimport static java.lang.String.format;\nimport static java.lang.ref.Reference.reachabilityFence;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdJavaDecompressor\n        implements ZstdDecompressor\n{\n    private final ZstdFrameDecompressor decompressor = new ZstdFrameDecompressor();\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + inputOffset;\n        long inputLimit = inputAddress + inputLength;\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + outputOffset;\n        long outputLimit = outputAddress + maxOutputLength;\n\n        return decompressor.decompress(input, inputAddress, inputLimit, output, outputAddress, outputLimit);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        try {\n            byte[] inputBase = getBase(input);\n            long inputAddress = getAddress(input);\n            long inputLimit = addExact(inputAddress, input.byteSize());\n\n            byte[] outputBase = getBase(output);\n            long outputAddress = getAddress(output);\n            long outputLimit = addExact(outputAddress, output.byteSize());\n\n            return decompressor.decompress(\n                    inputBase,\n                    inputAddress,\n                    inputLimit,\n                    outputBase,\n                    outputAddress,\n                    outputLimit);\n        }\n        finally {\n            reachabilityFence(input);\n            reachabilityFence(output);\n        }\n    }\n\n    @Override\n    public long getDecompressedSize(byte[] input, int offset, int length)\n    {\n        int baseAddress = ARRAY_BYTE_BASE_OFFSET + offset;\n        return ZstdFrameDecompressor.getDecompressedSize(input, baseAddress, baseAddress + length);\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.internal.NativeLoader;\nimport io.airlift.compress.v3.internal.NativeSignature;\n\nimport java.lang.foreign.MemorySegment;\nimport java.lang.invoke.MethodHandle;\nimport java.util.Optional;\n\nimport static java.lang.invoke.MethodHandles.lookup;\n\nfinal class ZstdNative\n{\n    private record MethodHandles(\n            @NativeSignature(name = \"ZSTD_compressBound\", returnType = long.class, argumentTypes = long.class)\n            MethodHandle maxCompressedLength,\n            @NativeSignature(name = \"ZSTD_compress\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class, MemorySegment.class, long.class, int.class})\n            MethodHandle compress,\n            @NativeSignature(name = \"ZSTD_decompress\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class, MemorySegment.class, long.class})\n            MethodHandle decompress,\n            @NativeSignature(name = \"ZSTD_getFrameContentSize\", returnType = long.class, argumentTypes = {MemorySegment.class, long.class})\n            MethodHandle uncompressedLength,\n            @NativeSignature(name = \"ZSTD_isError\", returnType = int.class, argumentTypes = long.class)\n            MethodHandle isError,\n            @NativeSignature(name = \"ZSTD_getErrorName\", returnType = MemorySegment.class, argumentTypes = long.class)\n            MethodHandle getErrorName,\n            @NativeSignature(name = \"ZSTD_defaultCLevel\", returnType = int.class, argumentTypes = {})\n            MethodHandle defaultCLevel) {}\n\n    private ZstdNative() {}\n\n    private static final Optional<LinkageError> LINKAGE_ERROR;\n    private static final MethodHandle MAX_COMPRESSED_LENGTH_METHOD;\n    private static final MethodHandle COMPRESS_METHOD;\n    private static final MethodHandle DECOMPRESS_METHOD;\n    private static final MethodHandle UNCOMPRESSED_LENGTH_METHOD;\n    private static final MethodHandle IS_ERROR_METHOD;\n    private static final MethodHandle GET_ERROR_NAME_METHOD;\n\n    // TODO should we just hardcode this to 3?\n    public static final int DEFAULT_COMPRESSION_LEVEL;\n\n    private static final long CONTENT_SIZE_UNKNOWN = -1L;\n\n    static {\n        NativeLoader.Symbols<MethodHandles> symbols = NativeLoader.loadSymbols(\"zstd\", MethodHandles.class, lookup());\n        LINKAGE_ERROR = symbols.linkageError();\n        MethodHandles methodHandles = symbols.symbols();\n        MAX_COMPRESSED_LENGTH_METHOD = methodHandles.maxCompressedLength();\n        COMPRESS_METHOD = methodHandles.compress();\n        DECOMPRESS_METHOD = methodHandles.decompress();\n        UNCOMPRESSED_LENGTH_METHOD = methodHandles.uncompressedLength();\n        IS_ERROR_METHOD = methodHandles.isError();\n        GET_ERROR_NAME_METHOD = methodHandles.getErrorName();\n        if (LINKAGE_ERROR.isEmpty()) {\n            try {\n                DEFAULT_COMPRESSION_LEVEL = (int) methodHandles.defaultCLevel().invokeExact();\n            }\n            catch (Throwable e) {\n                throw new ExceptionInInitializerError(e);\n            }\n        }\n        else {\n            DEFAULT_COMPRESSION_LEVEL = -1;\n        }\n    }\n\n    public static boolean isEnabled()\n    {\n        return LINKAGE_ERROR.isEmpty();\n    }\n\n    public static void verifyEnabled()\n    {\n        if (LINKAGE_ERROR.isPresent()) {\n            throw new IllegalStateException(\"Zstd native library is not enabled\", LINKAGE_ERROR.get());\n        }\n    }\n\n    public static long maxCompressedLength(long inputLength)\n    {\n        long result;\n        try {\n            result = (long) MAX_COMPRESSED_LENGTH_METHOD.invokeExact(inputLength);\n        }\n        catch (Throwable e) {\n            throw new AssertionError(\"should not reach here\", e);\n        }\n        if (isError(result)) {\n            throw new IllegalArgumentException(\"Unknown error occurred during compression: \" + getErrorName(result));\n        }\n        return result;\n    }\n\n    public static long compress(MemorySegment input, long inputLength, MemorySegment compressed, long compressedLength, int compressionLevel)\n    {\n        long result;\n        try {\n            result = (long) COMPRESS_METHOD.invokeExact(compressed, compressedLength, input, inputLength, compressionLevel);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n\n        if (isError(result)) {\n            throw new IllegalArgumentException(\"Unknown error occurred during compression: \" + getErrorName(result));\n        }\n        return result;\n    }\n\n    public static long decompress(MemorySegment compressed, long compressedLength, MemorySegment output, long outputLength)\n    {\n        long result;\n        try {\n            result = (long) DECOMPRESS_METHOD.invokeExact(output, outputLength, compressed, compressedLength);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n\n        if (isError(result)) {\n            throw new IllegalArgumentException(\"Unknown error occurred during decompression: \" + getErrorName(result));\n        }\n        return result;\n    }\n\n    public static long decompressedLength(MemorySegment compressed, long compressedLength)\n    {\n        long result;\n        try {\n            result = (long) UNCOMPRESSED_LENGTH_METHOD.invokeExact(compressed, compressedLength);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n\n        if (CONTENT_SIZE_UNKNOWN != result && result < 0) {\n            throw new IllegalArgumentException(\"Unknown error occurred during decompression: \" + getErrorName(result));\n        }\n        return result;\n    }\n\n    private static boolean isError(long code)\n    {\n        try {\n            return (int) IS_ERROR_METHOD.invokeExact(code) != 0;\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n\n    private static String getErrorName(long code)\n    {\n        try {\n            MemorySegment name = (MemorySegment) GET_ERROR_NAME_METHOD.invokeExact(code);\n            return name.reinterpret(Long.MAX_VALUE).getString(0);\n        }\n        catch (Error e) {\n            throw e;\n        }\n        catch (Throwable e) {\n            throw new Error(\"Unexpected exception\", e);\n        }\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdNativeCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static io.airlift.compress.v3.zstd.ZstdNative.DEFAULT_COMPRESSION_LEVEL;\nimport static java.lang.Math.toIntExact;\n\npublic class ZstdNativeCompressor\n        implements ZstdCompressor\n{\n    private final int compressionLevel;\n\n    public ZstdNativeCompressor()\n    {\n        this(DEFAULT_COMPRESSION_LEVEL);\n    }\n\n    public ZstdNativeCompressor(int compressionLevel)\n    {\n        ZstdNative.verifyEnabled();\n        this.compressionLevel = compressionLevel;\n    }\n\n    public static boolean isEnabled()\n    {\n        return ZstdNative.isEnabled();\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return toIntExact(ZstdNative.maxCompressedLength(uncompressedSize));\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return toIntExact(ZstdNative.compress(inputSegment, inputLength, outputSegment, maxOutputLength, compressionLevel));\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        return toIntExact(ZstdNative.compress(input, input.byteSize(), output, output.byteSize(), compressionLevel));\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdNativeDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.Math.toIntExact;\n\npublic class ZstdNativeDecompressor\n        implements ZstdDecompressor\n{\n    public ZstdNativeDecompressor()\n    {\n        ZstdNative.verifyEnabled();\n    }\n\n    public static boolean isEnabled()\n    {\n        return ZstdNative.isEnabled();\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(inputOffset, inputLength);\n        MemorySegment outputSegment = MemorySegment.ofArray(output).asSlice(outputOffset, maxOutputLength);\n        return toIntExact(ZstdNative.decompress(inputSegment, inputLength, outputSegment, maxOutputLength));\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n    {\n        return toIntExact(ZstdNative.decompress(input, input.byteSize(), output, output.byteSize()));\n    }\n\n    @Override\n    public long getDecompressedSize(byte[] input, int offset, int length)\n    {\n        MemorySegment inputSegment = MemorySegment.ofArray(input).asSlice(offset, length);\n        return ZstdNative.decompressedLength(inputSegment, length);\n    }\n}\n"
  },
  {
    "path": "src/main/java/io/airlift/compress/v3/zstd/ZstdOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.util.Arrays;\n\nimport static io.airlift.compress.v3.zstd.CompressionParameters.DEFAULT_COMPRESSION_LEVEL;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_BLOCK_HEADER;\nimport static io.airlift.compress.v3.zstd.Constants.SIZE_OF_LONG;\nimport static io.airlift.compress.v3.zstd.Util.checkState;\nimport static java.lang.Math.max;\nimport static java.lang.Math.min;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdOutputStream\n        extends OutputStream\n{\n    private final OutputStream outputStream;\n    private final CompressionContext context;\n    private final int maxBufferSize;\n\n    private XxHash64 partialHash;\n\n    private byte[] uncompressed = new byte[0];\n    private final byte[] compressed;\n\n    // start of unprocessed data in uncompressed buffer\n    private int uncompressedOffset;\n    // end of unprocessed data in uncompressed buffer\n    private int uncompressedPosition;\n\n    private boolean closed;\n\n    public ZstdOutputStream(OutputStream outputStream)\n            throws IOException\n    {\n        this.outputStream = requireNonNull(outputStream, \"outputStream is null\");\n        this.context = new CompressionContext(CompressionParameters.compute(DEFAULT_COMPRESSION_LEVEL, -1), ARRAY_BYTE_BASE_OFFSET, Integer.MAX_VALUE);\n        this.maxBufferSize = context.parameters.getWindowSize() * 4;\n\n        // create output buffer large enough for a single block\n        int bufferSize = context.parameters.getBlockSize() + SIZE_OF_BLOCK_HEADER;\n        // todo is the \"+ (bufferSize >>> 8)\" required here?\n        // add extra long to give code more leeway\n        this.compressed = new byte[bufferSize + (bufferSize >>> 8) + SIZE_OF_LONG];\n    }\n\n    @Override\n    public void write(int b)\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n\n        growBufferIfNecessary(1);\n\n        uncompressed[uncompressedPosition++] = (byte) b;\n\n        compressIfNecessary();\n    }\n\n    @Override\n    public void write(byte[] buffer)\n            throws IOException\n    {\n        write(buffer, 0, buffer.length);\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n            throws IOException\n    {\n        if (closed) {\n            throw new IOException(\"Stream is closed\");\n        }\n\n        growBufferIfNecessary(length);\n\n        while (length > 0) {\n            int writeSize = min(length, uncompressed.length - uncompressedPosition);\n            System.arraycopy(buffer, offset, uncompressed, uncompressedPosition, writeSize);\n\n            uncompressedPosition += writeSize;\n            length -= writeSize;\n            offset += writeSize;\n\n            compressIfNecessary();\n        }\n    }\n\n    private void growBufferIfNecessary(int length)\n    {\n        if (uncompressedPosition + length <= uncompressed.length || uncompressed.length >= maxBufferSize) {\n            return;\n        }\n\n        // assume we will need double the current required space\n        int newSize = (uncompressed.length + length) * 2;\n        // limit to max buffer size\n        newSize = min(newSize, maxBufferSize);\n        // allocate at least a minimal buffer to start;\n        newSize = max(newSize, context.parameters.getBlockSize());\n        uncompressed = Arrays.copyOf(uncompressed, newSize);\n    }\n\n    private void compressIfNecessary()\n            throws IOException\n    {\n        // only flush when the buffer if is max size, full, and the buffer is larger than the window and one additional block\n        if (uncompressed.length >= maxBufferSize &&\n                uncompressedPosition == uncompressed.length &&\n                uncompressed.length - context.parameters.getWindowSize() > context.parameters.getBlockSize()) {\n            writeChunk(false);\n        }\n    }\n\n    // visible for Hadoop stream\n    void finishWithoutClosingSource()\n            throws IOException\n    {\n        if (!closed) {\n            writeChunk(true);\n            closed = true;\n        }\n    }\n\n    @Override\n    public void close()\n            throws IOException\n    {\n        if (!closed) {\n            writeChunk(true);\n\n            closed = true;\n            outputStream.close();\n        }\n    }\n\n    private void writeChunk(boolean lastChunk)\n            throws IOException\n    {\n        int chunkSize;\n        if (lastChunk) {\n            // write all the data\n            chunkSize = uncompressedPosition - uncompressedOffset;\n        }\n        else {\n            int blockSize = context.parameters.getBlockSize();\n            chunkSize = uncompressedPosition - uncompressedOffset - context.parameters.getWindowSize() - blockSize;\n            checkState(chunkSize > blockSize, \"Must write at least one full block\");\n            // only write full blocks\n            chunkSize = (chunkSize / blockSize) * blockSize;\n        }\n\n        // if first write\n        if (partialHash == null) {\n            partialHash = new XxHash64();\n\n            // if this is also the last chunk we know the exact size, otherwise, this is traditional streaming\n            int inputSize = lastChunk ? chunkSize : -1;\n\n            int outputAddress = ARRAY_BYTE_BASE_OFFSET;\n            outputAddress += ZstdFrameCompressor.writeMagic(compressed, outputAddress, outputAddress + 4);\n            outputAddress += ZstdFrameCompressor.writeFrameHeader(compressed, outputAddress, outputAddress + 14, inputSize, context.parameters.getWindowSize());\n            outputStream.write(compressed, 0, outputAddress - ARRAY_BYTE_BASE_OFFSET);\n        }\n\n        partialHash.update(uncompressed, uncompressedOffset, chunkSize);\n\n        // write one block at a time\n        // note this is a do while to ensure that zero length input gets at least one block written\n        do {\n            int blockSize = min(chunkSize, context.parameters.getBlockSize());\n            int compressedSize = ZstdFrameCompressor.writeCompressedBlock(\n                    uncompressed,\n                    ARRAY_BYTE_BASE_OFFSET + uncompressedOffset,\n                    blockSize,\n                    compressed,\n                    ARRAY_BYTE_BASE_OFFSET,\n                    compressed.length,\n                    context,\n                    lastChunk && blockSize == chunkSize);\n            outputStream.write(compressed, 0, compressedSize);\n            uncompressedOffset += blockSize;\n            chunkSize -= blockSize;\n        }\n        while (chunkSize > 0);\n\n        if (lastChunk) {\n            // write checksum\n            int hash = (int) partialHash.hash();\n            outputStream.write(hash);\n            outputStream.write(hash >> 8);\n            outputStream.write(hash >> 16);\n            outputStream.write(hash >> 24);\n        }\n        else {\n            // slide window forward, leaving the entire window and the unprocessed data\n            int slideWindowSize = uncompressedOffset - context.parameters.getWindowSize();\n            context.slideWindow(slideWindowSize);\n\n            System.arraycopy(uncompressed, slideWindowSize, uncompressed, 0, context.parameters.getWindowSize() + (uncompressedPosition - uncompressedOffset));\n            uncompressedOffset -= slideWindowSize;\n            uncompressedPosition -= slideWindowSize;\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/AbstractTestCompression.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport com.google.common.primitives.Bytes;\nimport io.airlift.compress.v3.benchmark.DataSet;\nimport org.junit.jupiter.api.Assumptions;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Random;\nimport java.util.concurrent.ThreadLocalRandom;\n\nimport static com.google.common.base.Preconditions.checkPositionIndexes;\nimport static java.lang.String.format;\nimport static java.lang.System.arraycopy;\nimport static java.lang.foreign.ValueLayout.JAVA_BYTE;\nimport static java.nio.charset.StandardCharsets.UTF_8;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\nimport static org.assertj.core.api.Assertions.catchThrowable;\n\npublic abstract class AbstractTestCompression\n{\n    private final List<DataSet> testCases;\n\n    public AbstractTestCompression()\n    {\n        testCases = new ArrayList<>();\n\n        testCases.add(new DataSet(\"nothing\", new byte[0]));\n        testCases.add(new DataSet(\"short literal\", \"hello world!\".getBytes(UTF_8)));\n        testCases.add(new DataSet(\"small copy\", \"XXXXabcdabcdABCDABCDwxyzwzyz123\".getBytes(UTF_8)));\n        testCases.add(new DataSet(\"long copy\", \"XXXXabcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh ABC\".getBytes(UTF_8)));\n\n        byte[] data = new byte[256];\n        for (int i = 0; i < data.length; i++) {\n            data[i] = (byte) i;\n        }\n        testCases.add(new DataSet(\"long literal\", data));\n\n        testCases.addAll(TestingData.DATA_SETS);\n    }\n\n    protected abstract Compressor getCompressor();\n\n    protected abstract Decompressor getDecompressor();\n\n    protected abstract Compressor getVerifyCompressor();\n\n    protected abstract Decompressor getVerifyDecompressor();\n\n    protected boolean isMemorySegmentSupported()\n    {\n        return true;\n    }\n\n    @Test\n    void testDecompress()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompress(dataSet);\n        }\n    }\n\n    void testDecompress(DataSet dataSet)\n    {\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n        byte[] compressed = prepareCompressedData(uncompressedOriginal);\n\n        byte[] uncompressed = new byte[uncompressedOriginal.length];\n\n        Decompressor decompressor = getDecompressor();\n        int uncompressedSize = decompressor.decompress(\n                compressed,\n                0,\n                compressed.length,\n                uncompressed,\n                0,\n                uncompressed.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressedSize, uncompressedOriginal, 0, uncompressedOriginal.length);\n    }\n\n    // Tests that decompression works correctly when the decompressed data does not span the entire output buffer\n    @Test\n    void testDecompressWithOutputPadding()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressWithOutputPadding(dataSet);\n        }\n    }\n\n    private void testDecompressWithOutputPadding(DataSet dataSet)\n    {\n        int padding = 1021;\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n        byte[] compressed = prepareCompressedData(uncompressedOriginal);\n\n        byte[] uncompressed = new byte[uncompressedOriginal.length + 2 * padding]; // pre + post padding\n\n        Decompressor decompressor = getDecompressor();\n        int uncompressedSize = decompressor.decompress(\n                compressed,\n                0,\n                compressed.length,\n                uncompressed,\n                padding,\n                uncompressedOriginal.length + padding);\n\n        assertByteArraysEqual(uncompressed, padding, uncompressedSize, uncompressedOriginal, 0, uncompressedOriginal.length);\n    }\n\n    @Test\n    void testDecompressionBufferOverrun()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressionBufferOverrun(dataSet);\n        }\n    }\n\n    private void testDecompressionBufferOverrun(DataSet dataSet)\n    {\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n        byte[] compressed = prepareCompressedData(uncompressedOriginal);\n\n        // add padding with random bytes that we can verify later\n        byte[] padding = new byte[100];\n        ThreadLocalRandom.current().nextBytes(padding);\n\n        byte[] uncompressed = Bytes.concat(new byte[uncompressedOriginal.length], padding);\n\n        Decompressor decompressor = getDecompressor();\n        int uncompressedSize = decompressor.decompress(\n                compressed,\n                0,\n                compressed.length,\n                uncompressed,\n                0,\n                uncompressedOriginal.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressedSize, uncompressedOriginal, 0, uncompressedOriginal.length);\n\n        // verify padding is intact\n        assertByteArraysEqual(padding, 0, padding.length, uncompressed, uncompressed.length - padding.length, padding.length);\n    }\n\n    @Test\n    void testDecompressInputBoundsChecks()\n    {\n        byte[] data = new byte[1024];\n        new Random(1234).nextBytes(data);\n        Compressor compressor = getCompressor();\n        byte[] compressed = new byte[compressor.maxCompressedLength(data.length)];\n        int compressedLength = compressor.compress(data, 0, data.length, compressed, 0, compressed.length);\n\n        Decompressor decompressor = getDecompressor();\n        Throwable throwable;\n\n        // null input buffer\n        assertThatThrownBy(() -> decompressor.decompress(null, 0, compressedLength, data, 0, data.length))\n                .isInstanceOf(NullPointerException.class);\n\n        // mis-declared buffer size\n        byte[] compressedChoppedOff = Arrays.copyOf(compressed, compressedLength - 1);\n        throwable = catchThrowable(() -> decompressor.decompress(compressedChoppedOff, 0, compressedLength, data, 0, data.length));\n        if (throwable instanceof UncheckedIOException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\",\n                            \"Out of bound access on segment.*\"));\n        }\n\n        // overrun because of offset\n        byte[] compressedWithPadding = new byte[10 + compressedLength - 1];\n        arraycopy(compressed, 0, compressedWithPadding, 10, compressedLength - 1);\n\n        throwable = catchThrowable(() -> decompressor.decompress(compressedWithPadding, 10, compressedLength, data, 0, data.length));\n        if (throwable instanceof UncheckedIOException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\",\n                            \"Out of bound access on segment.*\"));\n        }\n    }\n\n    @Test\n    void testDecompressOutputBoundsChecks()\n    {\n        byte[] data = new byte[1024];\n        new Random(1234).nextBytes(data);\n        Compressor compressor = getCompressor();\n        byte[] compressed = new byte[compressor.maxCompressedLength(data.length)];\n        int compressedLength = compressor.compress(data, 0, data.length, compressed, 0, compressed.length);\n        byte[] input = Arrays.copyOf(compressed, compressedLength);\n\n        Decompressor decompressor = getDecompressor();\n        Throwable throwable;\n\n        // null output buffer\n        assertThatThrownBy(() -> decompressor.decompress(input, 0, input.length, null, 0, data.length))\n                .isInstanceOf(NullPointerException.class);\n\n        // small buffer\n        assertThatThrownBy(() -> decompressor.decompress(input, 0, input.length, new byte[1], 0, 1))\n                .hasMessageMatching(String.join(\"|\",\n                        \"All input was not consumed\",\n                        \"attempt to write.* outside of destination buffer.*\",\n                        \"Malformed input.*\",\n                        \"Uncompressed length 1024 must be less than 1\",\n                        \"Output buffer too small.*\",\n                        \"Unknown error occurred.*\"));\n\n        // mis-declared buffer size\n        throwable = catchThrowable(() -> decompressor.decompress(input, 0, input.length, new byte[1], 0, data.length));\n        if (throwable instanceof IndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\"));\n        }\n\n        // mis-declared buffer size with greater buffer\n        throwable = catchThrowable(() -> decompressor.decompress(input, 0, input.length, new byte[data.length - 1], 0, data.length));\n        if (throwable instanceof IndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\"));\n        }\n    }\n\n    @Test\n    void testDecompressMemorySegmentHeapToHeap()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressMemorySegmentHeapToHeap(dataSet);\n        }\n    }\n\n    void testDecompressMemorySegmentHeapToHeap(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        MemorySegment compressed = MemorySegment.ofArray(prepareCompressedData(uncompressedOriginal));\n        MemorySegment uncompressed = MemorySegment.ofArray(new byte[uncompressedOriginal.length]);\n\n        int size = getDecompressor().decompress(compressed, uncompressed);\n        assertMemorySegmentEqual(MemorySegment.ofArray(uncompressedOriginal), uncompressed.asSlice(0, size));\n    }\n\n    @Test\n    void testDecompressMemorySegmentHeapToDirect()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressMemorySegmentHeapToDirect(dataSet);\n        }\n    }\n\n    private void testDecompressMemorySegmentHeapToDirect(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment compressed = MemorySegment.ofArray(prepareCompressedData(uncompressedOriginal));\n            MemorySegment uncompressed = arena.allocate(uncompressedOriginal.length);\n\n            int size = getDecompressor().decompress(compressed, uncompressed);\n            assertMemorySegmentEqual(MemorySegment.ofArray(uncompressedOriginal), uncompressed.asSlice(0, size));\n        }\n    }\n\n    @Test\n    void testDecompressMemorySegmentDirectToHeap()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressMemorySegmentDirectToHeap(dataSet);\n        }\n    }\n\n    private void testDecompressMemorySegmentDirectToHeap(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment compressed = toNativeSegment(arena, prepareCompressedData(uncompressedOriginal));\n            MemorySegment uncompressed = MemorySegment.ofArray(new byte[uncompressedOriginal.length]);\n\n            int size = getDecompressor().decompress(compressed, uncompressed);\n            assertMemorySegmentEqual(MemorySegment.ofArray(uncompressedOriginal), uncompressed.asSlice(0, size));\n        }\n    }\n\n    @Test\n    void testDecompressMemorySegmentDirectToDirect()\n    {\n        for (DataSet dataSet : testCases) {\n            testDecompressMemorySegmentDirectToDirect(dataSet);\n        }\n    }\n\n    private void testDecompressMemorySegmentDirectToDirect(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment compressed = toNativeSegment(arena, prepareCompressedData(uncompressedOriginal));\n            MemorySegment uncompressed = arena.allocate(uncompressedOriginal.length);\n\n            int size = getDecompressor().decompress(compressed, uncompressed);\n            assertMemorySegmentEqual(MemorySegment.ofArray(uncompressedOriginal), uncompressed.asSlice(0, size));\n        }\n    }\n\n    @Test\n    void testCompress()\n    {\n        for (DataSet dataSet : testCases) {\n            testCompress(dataSet);\n        }\n    }\n\n    private void testCompress(DataSet testCase)\n    {\n        Compressor compressor = getCompressor();\n\n        byte[] originalUncompressed = testCase.getUncompressed();\n        byte[] compressed = new byte[compressor.maxCompressedLength(originalUncompressed.length)];\n\n        // attempt to compress slightly different data to ensure the compressor doesn't keep state\n        // between calls that may affect results\n        if (originalUncompressed.length > 1) {\n            byte[] output = new byte[compressor.maxCompressedLength(originalUncompressed.length - 1)];\n            compressor.compress(originalUncompressed, 1, originalUncompressed.length - 1, output, 0, output.length);\n        }\n\n        int compressedLength = compressor.compress(\n                originalUncompressed,\n                0,\n                originalUncompressed.length,\n                compressed,\n                0,\n                compressed.length);\n\n        verifyCompressedData(originalUncompressed, compressed, compressedLength);\n    }\n\n    @Test\n    void testCompressInputBoundsChecks()\n    {\n        Compressor compressor = getCompressor();\n        int declaredInputLength = 1024;\n        int maxCompressedLength = compressor.maxCompressedLength(1024);\n        byte[] output = new byte[maxCompressedLength];\n        Throwable throwable;\n\n        // null input buffer\n        assertThatThrownBy(() -> compressor.compress(null, 0, declaredInputLength, output, 0, output.length))\n                .isInstanceOf(NullPointerException.class);\n\n        // mis-declared buffer size\n        throwable = catchThrowable(() -> compressor.compress(new byte[1], 0, declaredInputLength, output, 0, output.length));\n        if (throwable instanceof IndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(\".*must not be greater than size.*|Invalid offset or length.*\");\n        }\n\n        // max too small\n        throwable = catchThrowable(() -> compressor.compress(new byte[declaredInputLength - 1], 0, declaredInputLength, output, 0, output.length));\n        if (throwable instanceof IndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(\".*must not be greater than size.*|Invalid offset or length.*\");\n        }\n\n        // overrun because of offset\n        throwable = catchThrowable(() -> compressor.compress(new byte[declaredInputLength + 10], 11, declaredInputLength, output, 0, output.length));\n        if (throwable instanceof IndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(\".*must not be greater than size.*|Invalid offset or length.*\");\n        }\n    }\n\n    @Test\n    void testCompressOutputBoundsChecks()\n    {\n        Compressor compressor = getCompressor();\n        int minCompressionOverhead = compressor.maxCompressedLength(0);\n        byte[] input = new byte[minCompressionOverhead * 4 + 1024];\n        new Random(1234).nextBytes(input);\n        int maxCompressedLength = compressor.maxCompressedLength(input.length);\n        Throwable throwable;\n\n        // null output buffer\n        assertThatThrownBy(() -> compressor.compress(input, 0, input.length, null, 0, maxCompressedLength))\n                .isInstanceOf(NullPointerException.class);\n\n        // small buffer\n        assertThatThrownBy(() -> compressor.compress(input, 0, input.length, new byte[1], 0, 1))\n                .hasMessageMatching(String.join(\"|\",\n                        \".*must not be greater than size.*\",\n                        \"Invalid offset or length.*\",\n                        \"Max output length must be larger than .*\",\n                        \"Output buffer must be at least.*\",\n                        \"Output buffer too small\",\n                        \"Unknown error occurred.*\"));\n\n        // mis-declared buffer size\n        throwable = catchThrowable(() -> compressor.compress(input, 0, input.length, new byte[1], 0, maxCompressedLength));\n        if (throwable instanceof ArrayIndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\",\n                            \"Out of bound access on segment.*\"));\n        }\n\n        // mis-declared buffer size with buffer large enough to hold compression frame header (if any)\n        throwable = catchThrowable(() -> compressor.compress(input, 0, input.length, new byte[minCompressionOverhead * 2], 0, maxCompressedLength));\n        if (throwable instanceof ArrayIndexOutOfBoundsException) {\n            // OK\n        }\n        else {\n            assertThat(throwable)\n                    .hasMessageMatching(String.join(\"|\",\n                            \".*must not be greater than size.*\",\n                            \"Invalid offset or length.*\",\n                            \"Out of bound access on segment.*\"));\n        }\n    }\n\n    @Test\n    void testCompressMemorySegmentHeapToHeap()\n    {\n        for (DataSet dataSet : testCases) {\n            testCompressMemorySegmentHeapToHeap(dataSet);\n        }\n    }\n\n    private void testCompressMemorySegmentHeapToHeap(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        Compressor compressor = getCompressor();\n\n        verifyCompressMemorySegment(\n                compressor,\n                MemorySegment.ofArray(uncompressedOriginal),\n                MemorySegment.ofArray(new byte[compressor.maxCompressedLength(uncompressedOriginal.length)]));\n    }\n\n    @Test\n    void testCompressMemorySegmentHeapToDirect()\n    {\n        for (DataSet dataSet : testCases) {\n            testCompressMemorySegmentHeapToDirect(dataSet);\n        }\n    }\n\n    private void testCompressMemorySegmentHeapToDirect(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        Compressor compressor = getCompressor();\n\n        try (Arena arena = Arena.ofConfined()) {\n            verifyCompressMemorySegment(\n                    compressor,\n                    MemorySegment.ofArray(uncompressedOriginal),\n                    arena.allocate(compressor.maxCompressedLength(uncompressedOriginal.length)));\n        }\n    }\n\n    @Test\n    void testCompressMemorySegmentDirectToHeap()\n    {\n        for (DataSet dataSet : testCases) {\n            testCompressMemorySegmentDirectToHeap(dataSet);\n        }\n    }\n\n    private void testCompressMemorySegmentDirectToHeap(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        Compressor compressor = getCompressor();\n\n        try (Arena arena = Arena.ofConfined()) {\n            verifyCompressMemorySegment(\n                    compressor,\n                    toNativeSegment(arena, uncompressedOriginal),\n                    MemorySegment.ofArray(new byte[compressor.maxCompressedLength(uncompressedOriginal.length)]));\n        }\n    }\n\n    @Test\n    void testCompressMemorySegmentDirectToDirect()\n    {\n        for (DataSet dataSet : testCases) {\n            testCompressMemorySegmentDirectToDirect(dataSet);\n        }\n    }\n\n    private void testCompressMemorySegmentDirectToDirect(DataSet dataSet)\n    {\n        if (!isMemorySegmentSupported()) {\n            Assumptions.abort(\"MemorySegment not supported\");\n        }\n\n        byte[] uncompressedOriginal = dataSet.getUncompressed();\n\n        Compressor compressor = getCompressor();\n\n        try (Arena arena = Arena.ofConfined()) {\n            verifyCompressMemorySegment(\n                    compressor,\n                    toNativeSegment(arena, uncompressedOriginal),\n                    arena.allocate(compressor.maxCompressedLength(uncompressedOriginal.length)));\n        }\n    }\n\n    private void verifyCompressMemorySegment(Compressor compressor, MemorySegment expected, MemorySegment compressed)\n    {\n        // attempt to compress slightly different data to ensure the compressor doesn't keep state\n        // between calls that may affect results\n        if (expected.byteSize() > 1) {\n            compressor.compress(expected.asSlice(1), MemorySegment.ofArray(new byte[(int) compressed.byteSize()]));\n        }\n\n        int compressedSize = compressor.compress(expected, compressed);\n\n        MemorySegment uncompressed = MemorySegment.ofArray(new byte[(int) expected.byteSize()]);\n\n        int decompressedSize = getDecompressor().decompress(compressed.asSlice(0, compressedSize), uncompressed);\n\n        assertMemorySegmentEqual(expected, uncompressed.asSlice(0, decompressedSize));\n    }\n\n    private void verifyCompressedData(byte[] originalUncompressed, byte[] compressed, int compressedLength)\n    {\n        byte[] uncompressed = new byte[originalUncompressed.length];\n        int uncompressedSize = getVerifyDecompressor().decompress(compressed, 0, compressedLength, uncompressed, 0, uncompressed.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressedSize, originalUncompressed, 0, originalUncompressed.length);\n    }\n\n    @Test\n    void testRoundTripSmallLiteral()\n    {\n        byte[] data = new byte[256];\n        for (int i = 0; i < data.length; i++) {\n            data[i] = (byte) i;\n        }\n\n        Compressor compressor = getCompressor();\n        byte[] compressed = new byte[compressor.maxCompressedLength(data.length)];\n        byte[] uncompressed = new byte[data.length];\n\n        for (int i = 1; i < data.length; i++) {\n            try {\n                int written = compressor.compress(\n                        data,\n                        0,\n                        i,\n                        compressed,\n                        0,\n                        compressed.length);\n\n                int decompressedSize = getDecompressor().decompress(compressed, 0, written, uncompressed, 0, uncompressed.length);\n\n                assertByteArraysEqual(data, 0, i, uncompressed, 0, decompressedSize);\n                assertThat(decompressedSize).isEqualTo(i);\n            }\n            catch (MalformedInputException e) {\n                throw new RuntimeException(\"Failed with \" + i + \" bytes of input\", e);\n            }\n        }\n    }\n\n    protected static void assertByteArraysEqual(byte[] left, int leftOffset, int leftLength, byte[] right, int rightOffset, int rightLength)\n    {\n        checkPositionIndexes(leftOffset, leftOffset + leftLength, left.length);\n        checkPositionIndexes(rightOffset, rightOffset + rightLength, right.length);\n\n        for (int i = 0; i < Math.min(leftLength, rightLength); i++) {\n            if (left[leftOffset + i] != right[rightOffset + i]) {\n                throw new AssertionError(format(\"Byte arrays differ at position %s: 0x%02X vs 0x%02X\", i, left[leftOffset + i], right[rightOffset + i]));\n            }\n        }\n\n        assertThat(leftLength)\n                .withFailMessage(format(\"Array lengths differ: %s vs %s\", leftLength, rightLength))\n                .isEqualTo(rightLength);\n    }\n\n    private static void assertMemorySegmentEqual(MemorySegment left, MemorySegment right)\n    {\n        int leftPosition = 0;\n        int rightPosition = 0;\n        for (int i = 0; i < Math.min(left.byteSize(), right.byteSize()); i++) {\n            byte leftByte = left.get(JAVA_BYTE, leftPosition + i);\n            byte rightByte = right.get(JAVA_BYTE, rightPosition + i);\n            if (leftByte != rightByte) {\n                throw new AssertionError(\"Byte buffers differ at position %s: 0x%02X vs 0x%02X\".formatted(i, leftByte, rightPosition));\n            }\n        }\n        assertThat(left.byteSize())\n                .withFailMessage(\"Buffer lengths differ: %s vs %s\".formatted(left.byteSize(), right.byteSize()))\n                .isEqualTo(right.byteSize());\n    }\n\n    private static MemorySegment toNativeSegment(Arena arena, byte[] data)\n    {\n        return arena.allocateFrom(JAVA_BYTE, data);\n    }\n\n    private byte[] prepareCompressedData(byte[] uncompressed)\n    {\n        Compressor compressor = getVerifyCompressor();\n\n        byte[] compressed = new byte[compressor.maxCompressedLength(uncompressed.length)];\n\n        int compressedLength = compressor.compress(\n                uncompressed,\n                0,\n                uncompressed.length,\n                compressed,\n                0,\n                compressed.length);\n\n        return Arrays.copyOf(compressed, compressedLength);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/HadoopCodecCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport io.airlift.compress.v3.snappy.ByteArrayOutputStream;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.MemorySegment;\nimport java.util.function.IntUnaryOperator;\n\nimport static java.util.Objects.requireNonNull;\n\npublic class HadoopCodecCompressor\n        implements Compressor\n{\n    private final CompressionCodec codec;\n    private final IntUnaryOperator blockCompressorMaxCompressedLength;\n\n    public HadoopCodecCompressor(CompressionCodec codec, Compressor blockCompressorForSizeCalculation)\n    {\n        this(codec, blockCompressorForSizeCalculation::maxCompressedLength);\n    }\n\n    public HadoopCodecCompressor(CompressionCodec codec, IntUnaryOperator blockCompressorMaxCompressedLength)\n    {\n        this.codec = requireNonNull(codec, \"codec is null\");\n        this.blockCompressorMaxCompressedLength = requireNonNull(blockCompressorMaxCompressedLength, \"blockCompressorMaxCompressedLength is null\");\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        // assume hadoop stream encoder won't increase size by more than 10% over the block encoder\n        return (int) ((blockCompressorMaxCompressedLength.applyAsInt(uncompressedSize) * 1.1) + 8);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(output, outputOffset, maxOutputLength);\n\n        try {\n            OutputStream out = codec.createOutputStream(byteArrayOutputStream);\n            // write in a single shot to cause multiple chunks per block\n            out.write(input, inputOffset, inputLength);\n            out.close();\n        }\n        catch (IOException e) {\n            throw new UncheckedIOException(e);\n        }\n\n        return byteArrayOutputStream.size();\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/HadoopCodecDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.MemorySegment;\n\npublic class HadoopCodecDecompressor\n        implements Decompressor\n{\n    private final CompressionCodec codec;\n\n    public HadoopCodecDecompressor(CompressionCodec codec)\n    {\n        this.codec = codec;\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        try (InputStream in = codec.createInputStream(new ByteArrayInputStream(input, inputOffset, inputLength))) {\n            int bytesRead = 0;\n            while (bytesRead < maxOutputLength) {\n                int size = in.read(output, outputOffset + bytesRead, maxOutputLength - bytesRead);\n                if (size < 0) {\n                    break;\n                }\n                bytesRead += size;\n            }\n\n            if (in.read() >= 0) {\n                throw new RuntimeException(\"All input was not consumed\");\n            }\n\n            return bytesRead;\n        }\n        catch (IOException e) {\n            throw new UncheckedIOException(e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/HadoopCodecDecompressorByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.MemorySegment;\n\npublic class HadoopCodecDecompressorByteAtATime\n        implements Decompressor\n{\n    private final CompressionCodec codec;\n\n    public HadoopCodecDecompressorByteAtATime(CompressionCodec codec)\n    {\n        this.codec = codec;\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        try (InputStream in = codec.createInputStream(new ByteArrayInputStream(input, inputOffset, inputLength))) {\n            int bytesRead = 0;\n            while (bytesRead < maxOutputLength) {\n                int result = in.read();\n                if (result < 0) {\n                    break;\n                }\n                output[outputOffset + bytesRead] = (byte) (result & 0xff);\n                bytesRead += 1;\n            }\n\n            if (in.read() >= 0) {\n                throw new RuntimeException(\"All input was not consumed\");\n            }\n\n            return bytesRead;\n        }\n        catch (IOException e) {\n            throw new UncheckedIOException(e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/HadoopNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport org.apache.hadoop.util.NativeCodeLoader;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.lang.reflect.Field;\nimport java.net.URL;\nimport java.nio.file.Files;\nimport java.nio.file.StandardCopyOption;\n\npublic final class HadoopNative\n{\n    private static boolean loaded;\n    private static Throwable error;\n\n    private HadoopNative() {}\n\n    public static synchronized void requireHadoopNative()\n    {\n        if (loaded) {\n            return;\n        }\n        if (error != null) {\n            throw new RuntimeException(\"failed to load Hadoop native library\", error);\n        }\n        try {\n            loadLibrary(\"hadoop\");\n            setStatic(NativeCodeLoader.class.getDeclaredField(\"nativeCodeLoaded\"), true);\n\n            loadLibrary(\"gplcompression\");\n            loadLibrary(\"lzo2\");\n\n            loaded = true;\n        }\n        catch (Throwable t) {\n            error = t;\n            throw new RuntimeException(\"failed to load Hadoop native library\", error);\n        }\n    }\n\n    private static void setStatic(Field field, Object value)\n            throws IllegalAccessException\n    {\n        field.setAccessible(true);\n        field.set(null, value);\n    }\n\n    private static void loadLibrary(String name)\n            throws IOException\n    {\n        String libraryPath = getLibraryPath(name);\n        URL url = HadoopNative.class.getResource(libraryPath);\n        if (url == null) {\n            throw new RuntimeException(\"library not found: \" + libraryPath);\n        }\n\n        File file = File.createTempFile(name, null);\n        file.deleteOnExit();\n        try (InputStream in = url.openStream()) {\n            Files.copy(in, file.toPath(), StandardCopyOption.REPLACE_EXISTING);\n        }\n\n        System.load(file.getAbsolutePath());\n    }\n\n    private static String getLibraryPath(String name)\n    {\n        return \"/nativelib/\" + getPlatform() + \"/\" + System.mapLibraryName(name);\n    }\n\n    private static String getPlatform()\n    {\n        String name = System.getProperty(\"os.name\");\n        String arch = System.getProperty(\"os.arch\");\n        return (name + \"-\" + arch).replace(' ', '_');\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/TestingData.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport com.google.common.collect.ImmutableList;\nimport io.airlift.compress.v3.benchmark.DataSet;\nimport org.openjdk.jmh.annotations.Param;\n\nimport java.io.IOException;\nimport java.util.List;\n\npublic final class TestingData\n{\n    public static final List<DataSet> DATA_SETS;\n\n    static {\n        try {\n            String[] testNames = DataSet.class\n                    .getDeclaredField(\"name\")\n                    .getAnnotation(Param.class)\n                    .value();\n\n            ImmutableList.Builder<DataSet> result = ImmutableList.builder();\n            for (String testName : testNames) {\n                DataSet entry = new DataSet(testName);\n                entry.loadFile();\n                result.add(entry);\n            }\n\n            DATA_SETS = result.build();\n        }\n        catch (NoSuchFieldException | IOException e) {\n            throw new RuntimeException(e);\n        }\n    }\n\n    private TestingData() {}\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/Util.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3;\n\nimport static java.lang.String.format;\n\npublic final class Util\n{\n    private Util()\n    {\n    }\n\n    public static String toHumanReadableSpeed(long bytesPerSecond)\n    {\n        String humanReadableSpeed;\n        if (bytesPerSecond < 1024 * 10L) {\n            humanReadableSpeed = format(\"%dB/s\", bytesPerSecond);\n        }\n        else if (bytesPerSecond < 1024 * 1024 * 10L) {\n            humanReadableSpeed = format(\"%.1fkB/s\", bytesPerSecond / 1024.0f);\n        }\n        else if (bytesPerSecond < 1024 * 1024 * 1024 * 10L) {\n            humanReadableSpeed = format(\"%.1fMB/s\", bytesPerSecond / (1024.0f * 1024.0f));\n        }\n        else {\n            humanReadableSpeed = format(\"%.1fGB/s\", bytesPerSecond / (1024.0f * 1024.0f * 1024.0f));\n        }\n        return humanReadableSpeed;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/benchmark/Algorithm.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.benchmark;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.deflate.DeflateJavaCompressor;\nimport io.airlift.compress.v3.deflate.DeflateJavaDecompressor;\nimport io.airlift.compress.v3.deflate.DeflateNativeCompressor;\nimport io.airlift.compress.v3.deflate.DeflateNativeDecompressor;\nimport io.airlift.compress.v3.lz4.Lz4Codec;\nimport io.airlift.compress.v3.lz4.Lz4JavaCompressor;\nimport io.airlift.compress.v3.lz4.Lz4JavaDecompressor;\nimport io.airlift.compress.v3.lz4.Lz4NativeCompressor;\nimport io.airlift.compress.v3.lz4.Lz4NativeDecompressor;\nimport io.airlift.compress.v3.lzo.LzoCodec;\nimport io.airlift.compress.v3.lzo.LzoCompressor;\nimport io.airlift.compress.v3.lzo.LzoDecompressor;\nimport io.airlift.compress.v3.snappy.SnappyCodec;\nimport io.airlift.compress.v3.snappy.SnappyJavaCompressor;\nimport io.airlift.compress.v3.snappy.SnappyJavaDecompressor;\nimport io.airlift.compress.v3.snappy.SnappyNativeCompressor;\nimport io.airlift.compress.v3.snappy.SnappyNativeDecompressor;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoDecompressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Compressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Decompressor;\nimport io.airlift.compress.v3.thirdparty.JdkDeflateCompressor;\nimport io.airlift.compress.v3.thirdparty.JdkInflateDecompressor;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyCompressor;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyDecompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\nimport io.airlift.compress.v3.zstd.ZstdJavaCompressor;\nimport io.airlift.compress.v3.zstd.ZstdJavaDecompressor;\nimport io.airlift.compress.v3.zstd.ZstdNativeCompressor;\nimport io.airlift.compress.v3.zstd.ZstdNativeDecompressor;\nimport net.jpountz.lz4.LZ4Factory;\nimport org.apache.hadoop.conf.Configurable;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\npublic enum Algorithm\n{\n    airlift_lz4(new Lz4JavaDecompressor(), new Lz4JavaCompressor()),\n    airlift_lz4_native(new Lz4NativeDecompressor(), new Lz4NativeCompressor()),\n    airlift_snappy(new SnappyJavaDecompressor(), new SnappyJavaCompressor()),\n    airlift_snappy_native(new SnappyNativeDecompressor(), new SnappyNativeCompressor()),\n    airlift_lzo(new LzoDecompressor(), new LzoCompressor()),\n    airlift_zstd(new ZstdJavaDecompressor(), new ZstdJavaCompressor()),\n    airlift_zstd_native(new ZstdNativeDecompressor(), new ZstdNativeCompressor()),\n    airlift_deflate(new DeflateJavaDecompressor(), new DeflateJavaCompressor()),\n    airlift_deflate_native(new DeflateNativeDecompressor(), new DeflateNativeCompressor()),\n\n    airlift_lz4_stream(new Lz4Codec(), new Lz4JavaCompressor()),\n    airlift_snappy_stream(new SnappyCodec(), new SnappyJavaCompressor()),\n    airlift_lzo_stream(new LzoCodec(), new LzoCompressor()),\n\n    jpountz_lz4_jni(new JPountzLz4Decompressor(LZ4Factory.nativeInstance()), new JPountzLz4Compressor(LZ4Factory.nativeInstance())),\n    jpountz_lz4_safe(new JPountzLz4Decompressor(LZ4Factory.safeInstance()), new JPountzLz4Compressor(LZ4Factory.safeInstance())),\n    jpountz_lz4_unsafe(new JPountzLz4Decompressor(LZ4Factory.unsafeInstance()), new JPountzLz4Compressor(LZ4Factory.unsafeInstance())),\n    xerial_snappy(new XerialSnappyDecompressor(), new XerialSnappyCompressor()),\n    hadoop_lzo(new HadoopLzoDecompressor(), new HadoopLzoCompressor()),\n    zstd_jni(new ZstdJniDecompressor(), new ZstdJniCompressor(3)),\n\n    hadoop_lz4_stream(new org.apache.hadoop.io.compress.Lz4Codec(), new Lz4JavaCompressor()),\n    hadoop_snappy_stream(new org.apache.hadoop.io.compress.SnappyCodec(), new SnappyJavaCompressor()),\n    hadoop_lzo_stream(new org.anarres.lzo.hadoop.codec.LzoCodec(), new LzoCompressor()),\n\n    java_zip_stream(new JdkInflateDecompressor(), new JdkDeflateCompressor()),\n    hadoop_gzip_stream(new org.apache.hadoop.io.compress.GzipCodec(), new LzoCompressor());\n\n    private final Decompressor decompressor;\n    private final Compressor compressor;\n\n    Algorithm(CompressionCodec compressionCodec, Compressor compressor)\n    {\n        if (compressionCodec instanceof Configurable) {\n            ((Configurable) compressionCodec).setConf(new Configuration());\n        }\n        this.decompressor = new HadoopCodecDecompressor(compressionCodec);\n        this.compressor = new HadoopCodecCompressor(compressionCodec, compressor);\n    }\n\n    Algorithm(Decompressor decompressor, Compressor compressor)\n    {\n        this.decompressor = decompressor;\n        this.compressor = compressor;\n    }\n\n    public Compressor getCompressor()\n    {\n        return compressor;\n    }\n\n    public Decompressor getDecompressor()\n    {\n        return decompressor;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/benchmark/BytesCounter.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.benchmark;\n\nimport org.openjdk.jmh.annotations.AuxCounters;\nimport org.openjdk.jmh.annotations.Scope;\nimport org.openjdk.jmh.annotations.State;\n\n@AuxCounters\n@State(Scope.Thread)\npublic class BytesCounter\n{\n    public long bytes;\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/benchmark/CompressionBenchmark.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.benchmark;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.Util;\nimport org.openjdk.jmh.annotations.Benchmark;\nimport org.openjdk.jmh.annotations.Fork;\nimport org.openjdk.jmh.annotations.Measurement;\nimport org.openjdk.jmh.annotations.OutputTimeUnit;\nimport org.openjdk.jmh.annotations.Param;\nimport org.openjdk.jmh.annotations.Scope;\nimport org.openjdk.jmh.annotations.Setup;\nimport org.openjdk.jmh.annotations.State;\nimport org.openjdk.jmh.annotations.Warmup;\nimport org.openjdk.jmh.results.RunResult;\nimport org.openjdk.jmh.runner.Runner;\nimport org.openjdk.jmh.runner.RunnerException;\nimport org.openjdk.jmh.runner.options.ChainedOptionsBuilder;\nimport org.openjdk.jmh.runner.options.CommandLineOptionException;\nimport org.openjdk.jmh.runner.options.CommandLineOptions;\nimport org.openjdk.jmh.runner.options.OptionsBuilder;\nimport org.openjdk.jmh.util.Statistics;\n\nimport java.io.IOException;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport java.util.concurrent.TimeUnit;\n\n@State(Scope.Thread)\n@OutputTimeUnit(TimeUnit.SECONDS)\n@Measurement(iterations = 10)\n@Warmup(iterations = 5)\n@Fork(3)\npublic class CompressionBenchmark\n{\n    private Compressor compressor;\n    private Decompressor decompressor;\n\n    private byte[] uncompressed;\n    private byte[] compressed;\n\n    private byte[] compressTarget;\n    private byte[] uncompressTarget;\n\n    @Param({\n            \"airlift_lz4\",\n            \"airlift_lz4_native\",\n            \"airlift_lzo\",\n            \"airlift_snappy\",\n            \"airlift_snappy_native\",\n            \"airlift_zstd\",\n            \"airlift_zstd_native\",\n\n            \"xerial_snappy\",\n            \"jpountz_lz4_jni\",\n            \"jpountz_lz4_safe\",\n            \"jpountz_lz4_unsafe\",\n            \"hadoop_lzo\",\n            \"zstd_jni\",\n\n            \"airlift_lz4_stream\",\n            \"airlift_lzo_stream\",\n            \"airlift_snappy_stream\",\n\n            \"hadoop_lz4_stream\",\n            \"hadoop_lzo_stream\",\n            \"hadoop_snappy_stream\",\n            \"java_zip_stream\",\n            \"hadoop_gzip_stream\",\n    })\n    private Algorithm algorithm;\n\n    @Setup\n    public void setup(DataSet data)\n            throws IOException\n    {\n        uncompressed = data.getUncompressed();\n\n        compressor = algorithm.getCompressor();\n        compressTarget = new byte[compressor.maxCompressedLength(uncompressed.length)];\n\n        decompressor = algorithm.getDecompressor();\n        Compressor compressor = algorithm.getCompressor();\n        compressed = new byte[compressor.maxCompressedLength(uncompressed.length)];\n        int compressedLength = compressor.compress(uncompressed, 0, uncompressed.length, compressed, 0, compressed.length);\n        compressed = Arrays.copyOf(compressed, compressedLength);\n        uncompressTarget = new byte[uncompressed.length];\n    }\n\n    @Benchmark\n    public int compress(BytesCounter counter)\n    {\n        int written = compressor.compress(uncompressed, 0, uncompressed.length, compressTarget, 0, compressTarget.length);\n        counter.bytes += uncompressed.length;\n        return written;\n    }\n\n    @Benchmark\n    public int decompress(BytesCounter counter)\n    {\n        int written = decompressor.decompress(compressed, 0, compressed.length, uncompressTarget, 0, uncompressTarget.length);\n        counter.bytes += uncompressed.length;\n        return written;\n    }\n\n    public static void main(String[] args)\n            throws RunnerException, CommandLineOptionException\n    {\n        CommandLineOptions parsedOptions = new CommandLineOptions(args);\n        ChainedOptionsBuilder options = new OptionsBuilder()\n                .parent(parsedOptions);\n\n        if (parsedOptions.getIncludes().isEmpty()) {\n            options = options.include(\".*\\\\.\" + CompressionBenchmark.class.getSimpleName() + \".*\");\n        }\n\n        Collection<RunResult> results = new Runner(options.build()).run();\n\n        int count = 0;\n        double sum = 0;\n        for (RunResult result : results) {\n            Statistics stats = result.getSecondaryResults().get(\"bytes\").getStatistics();\n            String algorithm = result.getParams().getParam(\"algorithm\");\n            String name = result.getParams().getParam(\"name\");\n\n            count++;\n            sum += 1 / stats.getMean();\n\n            int compressSize = compressSize(algorithm, name);\n            System.out.printf(\"  %-10s  %-22s  %-25s  %,11d  %10s ± %11s (%5.2f%%) (N = %d, \\u03B1 = 99.9%%)\\n\",\n                    result.getPrimaryResult().getLabel(),\n                    algorithm,\n                    name,\n                    compressSize,\n                    Util.toHumanReadableSpeed((long) stats.getMean()),\n                    Util.toHumanReadableSpeed((long) stats.getMeanErrorAt(0.999)),\n                    stats.getMeanErrorAt(0.999) * 100 / stats.getMean(),\n                    stats.getN());\n        }\n        System.out.println();\n        System.out.println(\"Overall: \" + Util.toHumanReadableSpeed((long) (count / sum)));\n        System.out.println();\n    }\n\n    private static int compressSize(String algorithmName, String name)\n    {\n        try {\n            Compressor compressor = Algorithm.valueOf(algorithmName).getCompressor();\n            DataSet dataSet = new DataSet(name);\n            dataSet.loadFile();\n            byte[] uncompressed = dataSet.getUncompressed();\n            byte[] compressed = new byte[compressor.maxCompressedLength(uncompressed.length)];\n            return compressor.compress(uncompressed, 0, uncompressed.length, compressed, 0, compressed.length);\n        }\n        catch (Exception e) {\n            return -1;\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/benchmark/DataSet.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.benchmark;\n\nimport com.google.common.io.Files;\nimport org.openjdk.jmh.annotations.Param;\nimport org.openjdk.jmh.annotations.Scope;\nimport org.openjdk.jmh.annotations.Setup;\nimport org.openjdk.jmh.annotations.State;\n\nimport java.io.File;\nimport java.io.IOException;\n\n@State(Scope.Thread)\npublic class DataSet\n{\n    @Param({\n            \"canterbury/alice29.txt\",\n            \"canterbury/asyoulik.txt\",\n            \"canterbury/cp.html\",\n            \"canterbury/fields.c\",\n            \"canterbury/grammar.lsp\",\n            \"canterbury/kennedy.xls\",\n            \"canterbury/lcet10.txt\",\n            \"canterbury/plrabn12.txt\",\n            \"canterbury/ptt5\",\n            \"canterbury/sum\",\n            \"canterbury/xargs.1\",\n\n            \"silesia/dickens\",\n            \"silesia/mozilla\",\n            \"silesia/mr\",\n            \"silesia/nci\",\n            \"silesia/ooffice\",\n            \"silesia/osdb\",\n            \"silesia/reymont\",\n            \"silesia/samba\",\n            \"silesia/sao\",\n            \"silesia/webster\",\n            \"silesia/x-ray\",\n            \"silesia/xml\",\n\n            \"calgary/bib\",\n            \"calgary/book1\",\n            \"calgary/book2\",\n            \"calgary/geo\",\n            \"calgary/news\",\n            \"calgary/obj1\",\n            \"calgary/obj2\",\n            \"calgary/paper1\",\n            \"calgary/paper2\",\n            \"calgary/paper3\",\n            \"calgary/paper4\",\n            \"calgary/paper5\",\n            \"calgary/paper6\",\n            \"calgary/pic\",\n            \"calgary/progc\",\n            \"calgary/progl\",\n            \"calgary/progp\",\n            \"calgary/trans\",\n\n            \"artificial/a.txt\",\n            \"artificial/aaa.txt\",\n            \"artificial/alphabet.txt\",\n            \"artificial/random.txt\",\n            \"artificial/uniform_ascii.bin\", // random ASCII with uniform probabilities per symbol\n\n            \"large/bible.txt\",\n            \"large/E.coli\",\n            \"large/world192.txt\",\n\n            \"geo.protodata\",\n            \"house.jpg\",\n            \"html\",\n            \"kppkn.gtb\",\n            \"mapreduce-osdi-1.pdf\",\n            \"urls.10K\",\n    })\n    private String name;\n    private byte[] uncompressed;\n\n    public DataSet()\n    {\n    }\n\n    public DataSet(String name)\n    {\n        this.name = name;\n    }\n\n    public DataSet(String name, byte[] uncompressed)\n    {\n        this.name = name;\n        this.uncompressed = uncompressed;\n    }\n\n    @Setup\n    public void loadFile()\n            throws IOException\n    {\n        uncompressed = Files.toByteArray(new File(\"testdata\", name));\n    }\n\n    public byte[] getUncompressed()\n    {\n        return uncompressed;\n    }\n\n    public String getName()\n    {\n        return name;\n    }\n\n    public String toString()\n    {\n        return name;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/benchmark/HashBenchmark.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.benchmark;\n\nimport io.airlift.compress.v3.xxhash.XxHash128;\nimport io.airlift.compress.v3.xxhash.XxHash3Native;\nimport io.airlift.compress.v3.xxhash.XxHash64JavaHasher;\nimport io.airlift.compress.v3.xxhash.XxHash64NativeHasher;\nimport org.openjdk.jmh.annotations.Benchmark;\nimport org.openjdk.jmh.annotations.Fork;\nimport org.openjdk.jmh.annotations.Measurement;\nimport org.openjdk.jmh.annotations.OutputTimeUnit;\nimport org.openjdk.jmh.annotations.Param;\nimport org.openjdk.jmh.annotations.Scope;\nimport org.openjdk.jmh.annotations.Setup;\nimport org.openjdk.jmh.annotations.State;\nimport org.openjdk.jmh.annotations.Warmup;\nimport org.openjdk.jmh.runner.Runner;\nimport org.openjdk.jmh.runner.RunnerException;\nimport org.openjdk.jmh.runner.options.CommandLineOptionException;\nimport org.openjdk.jmh.runner.options.CommandLineOptions;\nimport org.openjdk.jmh.runner.options.OptionsBuilder;\n\nimport java.lang.foreign.MemorySegment;\nimport java.util.concurrent.ThreadLocalRandom;\nimport java.util.concurrent.TimeUnit;\n\n/**\n * JMH benchmark comparing XxHash64 and XxHash3 implementations.\n *\n * <p>Run from Maven:\n * <pre>\n * mvn exec:java -Dexec.mainClass=\"io.airlift.compress.v3.benchmark.HashBenchmark\" -Dexec.classpathScope=\"test\"\n * </pre>\n *\n * <p>To run with specific sizes:\n * <pre>\n * mvn exec:java -Dexec.mainClass=\"io.airlift.compress.v3.benchmark.HashBenchmark\" -Dexec.classpathScope=\"test\" -Dexec.args=\"-p size=64,1024,65536\"\n * </pre>\n */\n@State(Scope.Thread)\n@OutputTimeUnit(TimeUnit.MILLISECONDS)\n@Warmup(iterations = 5, time = 500, timeUnit = TimeUnit.MILLISECONDS)\n@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)\n@Fork(1)\npublic class HashBenchmark\n{\n    @Param({\"8\", \"64\", \"1024\", \"65536\"})\n    private int size;\n\n    private byte[] data;\n    private MemorySegment segment;\n\n    @Setup\n    public void setup()\n    {\n        data = new byte[size];\n        ThreadLocalRandom.current().nextBytes(data);\n        segment = MemorySegment.ofArray(data);\n    }\n\n    // ========== XxHash64 Java (VarHandle-based) ==========\n\n    @Benchmark\n    public long xxhash64_java()\n    {\n        return XxHash64JavaHasher.hash(data, 0, data.length, 0);\n    }\n\n    @Benchmark\n    public long xxhash64_java_segment()\n    {\n        return XxHash64JavaHasher.hash(segment, 0);\n    }\n\n    // ========== XxHash64 Native ==========\n\n    @Benchmark\n    public long xxhash64_native()\n    {\n        return XxHash64NativeHasher.hash(data, 0, data.length, 0);\n    }\n\n    @Benchmark\n    public long xxhash64_native_segment()\n    {\n        return XxHash64NativeHasher.hash(segment, 0);\n    }\n\n    // ========== XxHash3 64-bit Native ==========\n\n    @Benchmark\n    public long xxhash3_64_native()\n    {\n        return XxHash3Native.hash(data);\n    }\n\n    @Benchmark\n    public long xxhash3_64_native_segment()\n    {\n        return XxHash3Native.hash(segment);\n    }\n\n    // ========== XxHash3 128-bit Native ==========\n\n    @Benchmark\n    public XxHash128 xxhash3_128_native()\n    {\n        return XxHash3Native.hash128(data);\n    }\n\n    @Benchmark\n    public XxHash128 xxhash3_128_native_segment()\n    {\n        return XxHash3Native.hash128(segment);\n    }\n\n    public static void main(String[] args)\n            throws RunnerException, CommandLineOptionException\n    {\n        CommandLineOptions parsedOptions = new CommandLineOptions(args);\n        new Runner(new OptionsBuilder()\n                .parent(parsedOptions)\n                .include(\".*\\\\.\" + HashBenchmark.class.getSimpleName() + \".*\")\n                .build())\n                .run();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/bzip2/TestBZip2Codec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestBZip2Codec\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestBZip2Codec()\n    {\n        org.apache.hadoop.io.compress.BZip2Codec codec = new org.apache.hadoop.io.compress.BZip2Codec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new BZip2Codec(), TestBZip2Codec::guessMaxCompressedSize);\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new BZip2Codec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, TestBZip2Codec::guessMaxCompressedSize);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n\n    private static int guessMaxCompressedSize(int size)\n    {\n        return (int) (size * 1.2) + 256;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/bzip2/TestBZip2CodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.bzip2;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestBZip2CodecByteAtATime\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestBZip2CodecByteAtATime()\n    {\n        org.apache.hadoop.io.compress.BZip2Codec codec = new org.apache.hadoop.io.compress.BZip2Codec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new BZip2Codec(), TestBZip2CodecByteAtATime::guessMaxCompressedSize);\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new BZip2Codec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, TestBZip2CodecByteAtATime::guessMaxCompressedSize);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n\n    private static int guessMaxCompressedSize(int size)\n    {\n        return (int) (size * 1.2) + 256;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/deflate/MockJdkDeflateCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic class MockJdkDeflateCompressor\n        implements Compressor\n{\n    private static final int OVERHEAD = 128;\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return uncompressedSize + OVERHEAD;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        throw new UnsupportedOperationException(\"method is not supported\");\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/deflate/TestDeflate.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.MalformedInputException;\nimport io.airlift.compress.v3.lzo.LzoDecompressor;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\npublic class TestDeflate\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new DeflateJavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new DeflateJavaDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new DeflateJavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new DeflateJavaDecompressor();\n    }\n\n    @Test\n    void testLiteralLengthOverflow()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Command\n        buffer.write(0);\n        // Causes overflow for `literalLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n\n    @Test\n    void testMatchLengthOverflow1()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Write some data so that `matchOffset` validation later passes\n        // Command\n        buffer.write(0);\n        buffer.write(new byte[66]);\n        buffer.write(8);\n        buffer.write(new byte[2107 * 8]);\n\n        // Command\n        buffer.write(0b001_0000);\n        // Causes overflow for `matchLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n        // Trailer\n        buffer.write(0b0000_0000);\n        buffer.write(0b0000_0100);\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n\n    @Test\n    void testMatchLengthOverflow2()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Write some data so that `matchOffset` validation later passes\n        // Command\n        buffer.write(0);\n        buffer.write(246);\n        buffer.write(new byte[264]);\n\n        // Command\n        buffer.write(0b0010_0000);\n        // Causes overflow for `matchLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n        // Trailer\n        buffer.write(0b0000_0000);\n        buffer.write(0b0000_0100);\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/deflate/TestDeflateNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\n\npublic class TestDeflateNative\n        extends AbstractTestCompression\n{\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new DeflateNativeCompressor();\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new DeflateNativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new DeflateJavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new DeflateJavaDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/deflate/TestJdkDeflateCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\nimport org.apache.hadoop.io.compress.DefaultCodec;\n\nclass TestJdkDeflateCodec\n        extends AbstractTestCompression\n{\n    private final CompressionCodec verifyCodec;\n\n    TestJdkDeflateCodec()\n    {\n        DefaultCodec codec = new DefaultCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new JdkDeflateCodec(), new MockJdkDeflateCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new JdkDeflateCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new MockJdkDeflateCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/deflate/TestJdkDeflateCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.deflate;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\nimport org.apache.hadoop.io.compress.DefaultCodec;\n\nclass TestJdkDeflateCodecByteAtATime\n        extends AbstractTestCompression\n{\n    private final CompressionCodec verifyCodec;\n\n    TestJdkDeflateCodecByteAtATime()\n    {\n        DefaultCodec codec = new DefaultCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new JdkDeflateCodec(), new MockJdkDeflateCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new JdkDeflateCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new MockJdkDeflateCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/gzip/MockJdkGzipCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic class MockJdkGzipCompressor\n        implements Compressor\n{\n    private static final int OVERHEAD = 128;\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return uncompressedSize + OVERHEAD;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        throw new UnsupportedOperationException(\"method is not supported\");\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"method is not supported\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/gzip/TestJdkGzipCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestJdkGzipCodec\n        extends AbstractTestCompression\n{\n    private final CompressionCodec verifyCodec;\n\n    TestJdkGzipCodec()\n    {\n        org.apache.hadoop.io.compress.GzipCodec codec = new org.apache.hadoop.io.compress.GzipCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new JdkGzipCodec(), new MockJdkGzipCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new JdkGzipCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new MockJdkGzipCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/gzip/TestJdkGzipCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestJdkGzipCodecByteAtATime\n        extends AbstractTestCompression\n{\n    private final CompressionCodec verifyCodec;\n\n    TestJdkGzipCodecByteAtATime()\n    {\n        org.apache.hadoop.io.compress.GzipCodec codec = new org.apache.hadoop.io.compress.GzipCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new JdkGzipCodec(), new MockJdkGzipCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new JdkGzipCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new MockJdkGzipCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/gzip/TestJdkGzipHadoopInputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.gzip;\n\nimport com.google.common.io.ByteStreams;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.io.SequenceInputStream;\nimport java.util.zip.GZIPOutputStream;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\nclass TestJdkGzipHadoopInputStream\n{\n    @Test\n    void testGzipInputStreamBug()\n            throws IOException\n    {\n        byte[] part1 = zip(\"hello \".getBytes());\n        byte[] part2 = zip(\"world\".getBytes());\n\n        InputStream compressed = new SequenceInputStream(new ByteArrayInputStream(part1), new ByteArrayInputStream(part2));\n        byte[] data = ByteStreams.toByteArray(new JdkGzipHadoopStreams().createInputStream(compressed));\n\n        assertThat(data).isEqualTo(\"hello world\".getBytes());\n    }\n\n    private static byte[] zip(byte[] data)\n            throws IOException\n    {\n        ByteArrayOutputStream out = new ByteArrayOutputStream();\n        try (OutputStream gzipOut = new GZIPOutputStream(out)) {\n            gzipOut.write(data);\n        }\n        return out.toByteArray();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/internal/TestNativeLoader.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.internal;\n\nimport io.airlift.compress.v3.internal.NativeLoader.Symbols;\nimport org.junit.jupiter.api.Test;\n\nimport java.lang.invoke.MethodHandle;\nimport java.lang.invoke.MethodHandles;\n\nimport static java.lang.invoke.MethodHandles.lookup;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestNativeLoader\n{\n    @Test\n    void testUnknownLibrary()\n    {\n        assertThatThrownBy(() -> NativeLoader.loadLibrary(\"unknown\"))\n                .isInstanceOf(LinkageError.class)\n                .hasMessageMatching(\"Library not found: /aircompressor/.*/.*unknown.*\");\n    }\n\n    @Test\n    void testLoadSymbols()\n            throws Throwable\n    {\n        Symbols<ValidMethodHandle> methodHandles = NativeLoader.loadSymbols(\"zstd\", ValidMethodHandle.class, lookup());\n        assertThat(methodHandles.linkageError()).isEmpty();\n        assertThat(methodHandles.symbols().defaultCLevel().invoke()).isEqualTo(3);\n\n        // loadSymbols requires a record class\n        assertThatThrownBy(() -> NativeLoader.loadSymbols(\"zstd\", Object.class, lookup()))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessage(\"methodHandlesClass is not a record class\");\n\n        // loadSymbols requires a constructor visible to the lookup\n        assertThatThrownBy(() -> NativeLoader.loadSymbols(\"zstd\", ValidMethodHandle.class, MethodHandles.publicLookup()))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessage(\"Failed to find canonical constructor for %s\".formatted(ValidMethodHandle.class));\n\n        // unknown library\n        Symbols<ValidMethodHandle> unknownLibrary = NativeLoader.loadSymbols(\"unknown\", ValidMethodHandle.class, lookup());\n        assertThat(unknownLibrary.linkageError()).isPresent();\n        assertThatThrownBy(() -> unknownLibrary.symbols().defaultCLevel().invoke())\n                .isInstanceOf(LinkageError.class)\n                .hasMessageMatching(\"unknown native library not loaded: Library not found: /aircompressor/.*/.*unknown.*\")\n                .cause()\n                .isInstanceOf(LinkageError.class)\n                .hasMessageMatching(\"Library not found: /aircompressor/.*/.*unknown.*\")\n                .isEqualTo(unknownLibrary.linkageError().get());\n\n        // missing annotation\n        assertThatThrownBy(() -> NativeLoader.loadSymbols(\"zstd\", MissingAnnotation.class, lookup()))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessage(\"methodHandlesClass %s field 'missingAnnotation' is missing @NativeSignature annotation\".formatted(MissingAnnotation.class));\n\n        // constructor exception\n        assertThatThrownBy(() -> NativeLoader.loadSymbols(\"zstd\", ThrowsException.class, lookup()))\n                .isInstanceOf(RuntimeException.class)\n                .hasMessage(\"Failed to create instance of %s\".formatted(ThrowsException.class))\n                .cause()\n                .isInstanceOf(IllegalStateException.class)\n                .hasMessage(\"constructor exception\");\n\n        // unknown symbol\n        Symbols<InvalidMethodHandle> invalidMethodHandles = NativeLoader.loadSymbols(\"zstd\", InvalidMethodHandle.class, lookup());\n        assertThat(invalidMethodHandles.linkageError()).isPresent();\n        assertThatThrownBy(() -> invalidMethodHandles.symbols().unknown().invoke())\n                .isInstanceOf(LinkageError.class)\n                .hasMessage(\"zstd native library not loaded: unresolved symbol: unknownSymbol\")\n                .cause()\n                .isInstanceOf(LinkageError.class)\n                .hasMessage(\"unresolved symbol: unknownSymbol\")\n                .isEqualTo(invalidMethodHandles.linkageError().get());\n\n        // all methods are throw when there is a single unresolved symbol\n        assertThatThrownBy(() -> invalidMethodHandles.symbols().defaultCLevel().invoke())\n                .isInstanceOf(LinkageError.class)\n                .cause()\n                .isInstanceOf(LinkageError.class)\n                .hasMessage(\"unresolved symbol: unknownSymbol\")\n                .isEqualTo(invalidMethodHandles.linkageError().get());\n    }\n\n    private record ValidMethodHandle(\n            @NativeSignature(name = \"ZSTD_defaultCLevel\", returnType = int.class, argumentTypes = {})\n            MethodHandle defaultCLevel) {}\n\n    private record InvalidMethodHandle(\n            @NativeSignature(name = \"ZSTD_defaultCLevel\", returnType = int.class, argumentTypes = {})\n            MethodHandle defaultCLevel,\n            @NativeSignature(name = \"unknownSymbol\", returnType = int.class, argumentTypes = {})\n            MethodHandle unknown) {}\n\n    private record MissingAnnotation(\n            @NativeSignature(name = \"ZSTD_defaultCLevel\", returnType = int.class, argumentTypes = {})\n            MethodHandle defaultCLevel,\n            MethodHandle missingAnnotation) {}\n\n    private record ThrowsException(\n            @NativeSignature(name = \"ZSTD_defaultCLevel\", returnType = int.class, argumentTypes = {})\n            MethodHandle defaultCLevel)\n    {\n        private ThrowsException\n        {\n            throw new IllegalStateException(\"constructor exception\");\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/AbstractTestLz4.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.util.Arrays;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\npublic abstract class AbstractTestLz4\n        extends AbstractTestCompression\n{\n    @Test\n    void testLiteralLengthOverflow()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        buffer.write((byte) 0b1111_0000); // token\n        // Causes overflow for `literalLength`\n        byte[] literalLengthBytes = new byte[Integer.MAX_VALUE / 255 + 1]; // ~9MB\n        Arrays.fill(literalLengthBytes, (byte) 255);\n        buffer.write(literalLengthBytes);\n        buffer.write(1);\n        buffer.write(new byte[20]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> getDecompressor().decompress(data, 0, data.length, new byte[2048], 0, 2048))\n                .hasMessageMatching(\"Malformed input.*|Unknown error occurred.*\");\n    }\n\n    @Test\n    void testMatchLengthOverflow()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        buffer.write((byte) 0b0000_1111); // token\n        buffer.write(new byte[2]); // offset\n\n        // Causes overflow for `matchLength`\n        byte[] literalLengthBytes = new byte[Integer.MAX_VALUE / 255 + 1]; // ~9MB\n        Arrays.fill(literalLengthBytes, (byte) 255);\n        buffer.write(literalLengthBytes);\n        buffer.write(1);\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> getDecompressor().decompress(data, 0, data.length, new byte[2048], 0, 2048))\n                .hasMessageMatching(\"Malformed input.*|Unknown error occurred.*|offset outside destination buffer.*\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/BenchmarkCount.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport org.openjdk.jmh.annotations.Benchmark;\nimport org.openjdk.jmh.annotations.BenchmarkMode;\nimport org.openjdk.jmh.annotations.Fork;\nimport org.openjdk.jmh.annotations.Measurement;\nimport org.openjdk.jmh.annotations.Mode;\nimport org.openjdk.jmh.annotations.OutputTimeUnit;\nimport org.openjdk.jmh.annotations.Param;\nimport org.openjdk.jmh.annotations.Scope;\nimport org.openjdk.jmh.annotations.Setup;\nimport org.openjdk.jmh.annotations.State;\nimport org.openjdk.jmh.annotations.Warmup;\nimport org.openjdk.jmh.runner.Runner;\nimport org.openjdk.jmh.runner.RunnerException;\nimport org.openjdk.jmh.runner.options.ChainedOptionsBuilder;\nimport org.openjdk.jmh.runner.options.CommandLineOptionException;\nimport org.openjdk.jmh.runner.options.CommandLineOptions;\nimport org.openjdk.jmh.runner.options.OptionsBuilder;\n\nimport java.util.concurrent.ThreadLocalRandom;\nimport java.util.concurrent.TimeUnit;\n\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\n@State(Scope.Thread)\n@OutputTimeUnit(TimeUnit.NANOSECONDS)\n@BenchmarkMode(Mode.AverageTime)\n@Measurement(iterations = 10)\n@Warmup(iterations = 5)\n@Fork(3)\npublic class BenchmarkCount\n{\n    @Param({\"1\", \"3\", \"7\", \"15\", \"127\", \"511\"})\n    private int matchLength;\n\n    @Param({\"0\", \"1\", \"3\", \"7\", \"50\"})\n    private int padding;\n\n    private byte[] data;\n\n    @Setup\n    public void setup()\n    {\n        int size = (matchLength + 1) * 2 + padding;\n        data = new byte[size];\n\n        byte[] pattern = new byte[matchLength];\n        ThreadLocalRandom.current().nextBytes(pattern);\n\n        System.arraycopy(pattern, 0, data, 0, matchLength);\n        data[matchLength] = 1;\n\n        System.arraycopy(pattern, 0, data, matchLength + 1, matchLength);\n        data[matchLength + 1 + matchLength] = 2;\n    }\n\n    @Benchmark\n    public long count()\n    {\n        return Lz4RawCompressor.count(data, ARRAY_BYTE_BASE_OFFSET + matchLength + 1, ARRAY_BYTE_BASE_OFFSET + data.length, ARRAY_BYTE_BASE_OFFSET);\n    }\n\n    public static void main(String[] args)\n            throws RunnerException, CommandLineOptionException\n    {\n        CommandLineOptions parsedOptions = new CommandLineOptions(args);\n        ChainedOptionsBuilder options = new OptionsBuilder()\n                .parent(parsedOptions);\n\n        if (parsedOptions.getIncludes().isEmpty()) {\n            options = options.include(\".*\\\\.\" + BenchmarkCount.class.getSimpleName() + \".*\");\n        }\n\n        new Runner(options.build()).run();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/TestLz4.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Compressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Decompressor;\nimport net.jpountz.lz4.LZ4Factory;\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestLz4\n        extends AbstractTestLz4\n{\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new Lz4JavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new Lz4JavaDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new JPountzLz4Compressor(LZ4Factory.fastestInstance());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new JPountzLz4Decompressor(LZ4Factory.fastestInstance());\n    }\n\n    @Test\n    void testZeroMatchOffset()\n    {\n        byte[] compressed = new byte[] {15, 0, 0, -1, -1, -118, 49, -1, -1, 0};\n        assertThatThrownBy(() -> getDecompressor().decompress(compressed, 0, compressed.length, new byte[1024], 0, 1024))\n                .isInstanceOf(MalformedInputException.class)\n                .hasMessageContaining(\"offset outside destination buffer: offset=3\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/TestLz4Codec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestLz4Codec\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLz4Codec()\n    {\n        org.apache.hadoop.io.compress.Lz4Codec codec = new org.apache.hadoop.io.compress.Lz4Codec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new Lz4Codec(), new Lz4JavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new Lz4Codec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new Lz4JavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/TestLz4CodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestLz4CodecByteAtATime\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLz4CodecByteAtATime()\n    {\n        org.apache.hadoop.io.compress.Lz4Codec codec = new org.apache.hadoop.io.compress.Lz4Codec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new Lz4Codec(), new Lz4JavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new Lz4Codec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new Lz4JavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/TestLz4Native.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Compressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Decompressor;\nimport net.jpountz.lz4.LZ4Factory;\n\nclass TestLz4Native\n        extends AbstractTestLz4\n{\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new Lz4NativeCompressor();\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new Lz4NativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new JPountzLz4Compressor(LZ4Factory.fastestInstance());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new JPountzLz4Decompressor(LZ4Factory.fastestInstance());\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lz4/TestLz4NativeFastest.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lz4;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Compressor;\nimport io.airlift.compress.v3.thirdparty.JPountzLz4Decompressor;\nimport net.jpountz.lz4.LZ4Factory;\n\nimport static io.airlift.compress.v3.lz4.Lz4Native.MAX_ACCELERATION;\n\nclass TestLz4NativeFastest\n        extends AbstractTestLz4\n{\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new Lz4NativeCompressor(MAX_ACCELERATION);\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new Lz4NativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new JPountzLz4Compressor(LZ4Factory.fastestInstance());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new JPountzLz4Decompressor(LZ4Factory.fastestInstance());\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lzo/TestLzo.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.MalformedInputException;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoDecompressor;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\npublic class TestLzo\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new LzoCompressor();\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new LzoDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopLzoCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopLzoDecompressor();\n    }\n\n    @Test\n    void testLiteralLengthOverflow()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Command\n        buffer.write(0);\n        // Causes overflow for `literalLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n\n    @Test\n    void testMatchLengthOverflow1()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Write some data so that `matchOffset` validation later passes\n        // Command\n        buffer.write(0);\n        buffer.write(new byte[66]);\n        buffer.write(8);\n        buffer.write(new byte[2107 * 8]);\n\n        // Command\n        buffer.write(0b001_0000);\n        // Causes overflow for `matchLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n        // Trailer\n        buffer.write(0b0000_0000);\n        buffer.write(0b0000_0100);\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n\n    @Test\n    void testMatchLengthOverflow2()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Write some data so that `matchOffset` validation later passes\n        // Command\n        buffer.write(0);\n        buffer.write(246);\n        buffer.write(new byte[264]);\n\n        // Command\n        buffer.write(0b0010_0000);\n        // Causes overflow for `matchLength`\n        buffer.write(new byte[Integer.MAX_VALUE / 255 + 1]); // ~9MB\n        buffer.write(1);\n        // Trailer\n        buffer.write(0b0000_0000);\n        buffer.write(0b0000_0100);\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> new LzoDecompressor().decompress(data, 0, data.length, new byte[20000], 0, 20000))\n                .isInstanceOf(MalformedInputException.class);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lzo/TestLzoCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\npublic class TestLzoCodec\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLzoCodec()\n    {\n        com.hadoop.compression.lzo.LzoCodec codec = new com.hadoop.compression.lzo.LzoCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new LzoCodec(), new LzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new LzoCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lzo/TestLzoCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\npublic class TestLzoCodecByteAtATime\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLzoCodecByteAtATime()\n    {\n        com.hadoop.compression.lzo.LzoCodec codec = new com.hadoop.compression.lzo.LzoCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new LzoCodec(), new LzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new LzoCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lzo/TestLzopCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.IOException;\n\nimport static java.lang.String.format;\nimport static org.assertj.core.api.Assertions.assertThat;\n\nclass TestLzopCodec\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLzopCodec()\n    {\n        com.hadoop.compression.lzo.LzopCodec codec = new com.hadoop.compression.lzo.LzopCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new LzopCodec(), new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new LzopCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n\n    @Test\n    void testDecompressNewerVersion()\n            throws IOException\n    {\n        // lzop --no-checksum -o test-no-checksum.lzo test\n        // lzop -o test-adler32.lzo test\n        // lzop -CC -o test-adler32-both.lzo test\n        // lzop --crc32 -o test-crc32.lzo test\n        // lzop --crc32 -CC -o test-crc32-both.lzo test\n\n        assertDecompressed(\"no-checksum\");\n        assertDecompressed(\"adler32\");\n        assertDecompressed(\"adler32-both\");\n        assertDecompressed(\"crc32\");\n        assertDecompressed(\"crc32-both\");\n    }\n\n    private void assertDecompressed(String variant)\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(format(\"data/lzo/test-%s.lzo\", variant)));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/lzo/test\"));\n\n        byte[] output = new byte[uncompressed.length];\n        int decompressedSize = getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length);\n\n        assertThat(decompressedSize).isEqualTo(output.length);\n        assertByteArraysEqual(uncompressed, 0, uncompressed.length, output, 0, output.length);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/lzo/TestLzopCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.lzo;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.HadoopNative;\nimport io.airlift.compress.v3.thirdparty.HadoopLzoCompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestLzopCodecByteAtATime\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestLzopCodecByteAtATime()\n    {\n        com.hadoop.compression.lzo.LzopCodec codec = new com.hadoop.compression.lzo.LzopCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new LzopCodec(), new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new LzopCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new HadoopLzoCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/AbstractTestSnappy.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.MalformedInputException;\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\npublic abstract class AbstractTestSnappy\n        extends AbstractTestCompression\n{\n    @Override\n    protected abstract SnappyCompressor getCompressor();\n\n    @Override\n    protected abstract SnappyDecompressor getDecompressor();\n\n    @Test\n    void testInvalidLiteralLength()\n    {\n        byte[] data = {\n                // Encoded uncompressed length 1024\n                -128, 8,\n                // op-code\n                (byte) 252,\n                // Trailer value Integer.MAX_VALUE\n                (byte) 0b1111_1111, (byte) 0b1111_1111, (byte) 0b1111_1111, (byte) 0b0111_1111,\n                // Some arbitrary data\n                0, 0, 0, 0, 0, 0, 0, 0\n        };\n\n        assertThatThrownBy(() -> getDecompressor().decompress(data, 0, data.length, new byte[1024], 0, 1024))\n                .isInstanceOf(MalformedInputException.class);\n    }\n\n    @Test\n    void testNegativeLength()\n    {\n        byte[] data = {(byte) 255, (byte) 255, (byte) 255, (byte) 255, 0b0000_1000};\n\n        assertThatThrownBy(() -> getDecompressor().getUncompressedLength(data, 0))\n                .isInstanceOf(MalformedInputException.class)\n                .hasMessageStartingWith(\"invalid compressed length\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/ByteArrayOutputStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.io.OutputStream;\n\nimport static com.google.common.base.Preconditions.checkPositionIndex;\n\npublic final class ByteArrayOutputStream\n        extends OutputStream\n{\n    private final byte[] buffer;\n    private final int initialOffset;\n    private final int bufferLimit;\n    private int offset;\n\n    public ByteArrayOutputStream(byte[] buffer)\n    {\n        this(buffer, 0, buffer.length);\n    }\n\n    public ByteArrayOutputStream(byte[] buffer, int offset, int length)\n    {\n        this.buffer = buffer;\n        this.initialOffset = offset;\n        this.bufferLimit = offset + length;\n        this.offset = offset;\n    }\n\n    @Override\n    public void write(int value)\n    {\n        checkPositionIndex(offset + 1, bufferLimit);\n        buffer[offset++] = (byte) value;\n    }\n\n    @Override\n    public void write(byte[] buffer, int offset, int length)\n    {\n        checkPositionIndex(this.offset + length, bufferLimit);\n        System.arraycopy(buffer, offset, this.buffer, this.offset, length);\n        this.offset += length;\n    }\n\n    public int size()\n    {\n        return offset - initialOffset;\n    }\n\n    public byte[] getBuffer()\n    {\n        return buffer;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/RandomGenerator.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport java.util.Random;\n\nimport static com.google.common.base.Verify.verify;\n\nclass RandomGenerator\n{\n    public final byte[] data;\n    public int position;\n\n    public RandomGenerator(double compressionRatio)\n    {\n        // We use a limited amount of data over and over again and ensure\n        // that it is larger than the compression window (32KB), and also\n        // large enough to serve all typical value sizes we want to write.\n        Random rnd = new Random(301);\n        data = new byte[1048576 + 100];\n        for (int i = 0; i < 1048576; i += 100) {\n            // Add a short fragment that is as compressible as specified ratio\n            System.arraycopy(compressibleData(rnd, compressionRatio, 100), 0, data, i, 100);\n        }\n    }\n\n    public int getNextPosition(int length)\n    {\n        if (position + length > data.length) {\n            position = 0;\n            verify(length < data.length);\n        }\n        int result = position;\n        position += length;\n        return result;\n    }\n\n    private static byte[] compressibleData(Random random, double compressionRatio, int length)\n    {\n        int raw = (int) (length * compressionRatio);\n        if (raw < 1) {\n            raw = 1;\n        }\n        byte[] rawData = generateRandomData(random, raw);\n\n        // Duplicate the random data until we have filled \"length\" bytes\n        byte[] dest = new byte[length];\n        for (int i = 0; i < length; ) {\n            int chunkLength = Math.min(rawData.length, length - i);\n            System.arraycopy(rawData, 0, dest, i, chunkLength);\n            i += chunkLength;\n        }\n        return dest;\n    }\n\n    private static byte[] generateRandomData(Random random, int length)\n    {\n        byte[] rawData = new byte[length];\n        for (int i = 0; i < rawData.length; i++) {\n            rawData[i] = (byte) random.nextInt(256);\n        }\n        return rawData;\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/TestSnappyCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestSnappyCodec\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestSnappyCodec()\n    {\n        org.apache.hadoop.io.compress.SnappyCodec codec = new org.apache.hadoop.io.compress.SnappyCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new SnappyCodec(), new SnappyJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new SnappyCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new SnappyJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/TestSnappyCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.HadoopNative;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\n\nclass TestSnappyCodecByteAtATime\n        extends AbstractTestCompression\n{\n    static {\n        HadoopNative.requireHadoopNative();\n    }\n\n    private final CompressionCodec verifyCodec;\n\n    TestSnappyCodecByteAtATime()\n    {\n        org.apache.hadoop.io.compress.SnappyCodec codec = new org.apache.hadoop.io.compress.SnappyCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new SnappyCodec(), new SnappyJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new SnappyCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new HadoopCodecCompressor(verifyCodec, new SnappyJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new HadoopCodecDecompressor(verifyCodec);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/TestSnappyJava.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyCompressor;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyDecompressor;\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestSnappyJava\n        extends AbstractTestSnappy\n{\n    @Override\n    protected SnappyCompressor getCompressor()\n    {\n        return new SnappyJavaCompressor();\n    }\n\n    @Override\n    protected SnappyDecompressor getDecompressor()\n    {\n        return new SnappyJavaDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new XerialSnappyCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new XerialSnappyDecompressor();\n    }\n\n    @Test\n    void testZeroMatchOffsetFails()\n    {\n        byte[] zeroMatchOffset = new byte[] {16, 1, 0, 1, 0, 1, 0, 1, 0};\n        assertThatThrownBy(() -> new SnappyJavaDecompressor().decompress(zeroMatchOffset, 0, zeroMatchOffset.length, new byte[64], 0, 64))\n                .isInstanceOf(MalformedInputException.class)\n                .hasMessageContaining(\"Malformed input: offset=2\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/TestSnappyNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyCompressor;\nimport io.airlift.compress.v3.thirdparty.XerialSnappyDecompressor;\n\npublic class TestSnappyNative\n        extends AbstractTestSnappy\n{\n    @Override\n    protected SnappyCompressor getCompressor()\n    {\n        return new SnappyNativeCompressor();\n    }\n\n    @Override\n    protected SnappyDecompressor getDecompressor()\n    {\n        return new SnappyNativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new XerialSnappyCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new XerialSnappyDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/snappy/TestSnappyStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.snappy;\n\nimport com.google.common.base.Charsets;\nimport io.airlift.compress.v3.TestingData;\nimport io.airlift.compress.v3.benchmark.DataSet;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.EOFException;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.util.Arrays;\n\nimport static com.google.common.io.ByteStreams.toByteArray;\nimport static com.google.common.primitives.UnsignedBytes.toInt;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestSnappyStream\n{\n    static byte[] getRandom(double compressionRatio, int length)\n    {\n        RandomGenerator gen = new RandomGenerator(compressionRatio);\n        gen.getNextPosition(length);\n        byte[] random = Arrays.copyOf(gen.data, length);\n        assertThat(random).hasSize(length);\n        return random;\n    }\n\n    static byte[] getMarkerFrame()\n    {\n        return SnappyFramed.HEADER_BYTES;\n    }\n\n    @Test\n    void testSimple()\n            throws Exception\n    {\n        byte[] original = \"aaaaaaaaaaaabbbbbbbaaaaaa\".getBytes(Charsets.UTF_8);\n\n        byte[] compressed = compress(original);\n        byte[] uncompressed = uncompress(compressed);\n\n        assertThat(uncompressed).isEqualTo(original);\n        // 10 byte stream header, 4 byte block header, 4 byte crc, 19 bytes\n        assertThat(compressed).hasSize(37);\n\n        // stream header\n        assertThat(Arrays.copyOf(compressed, 10)).isEqualTo(SnappyFramed.HEADER_BYTES);\n\n        // flag: compressed\n        assertThat(toInt(compressed[10])).isEqualTo(SnappyFramed.COMPRESSED_DATA_FLAG);\n\n        // length: 23 = 0x000017\n        assertThat(toInt(compressed[11])).isEqualTo(0x17);\n        assertThat(toInt(compressed[12])).isEqualTo(0x00);\n        assertThat(toInt(compressed[13])).isEqualTo(0x00);\n\n        // crc32c: 0x9274cda8\n        assertThat(toInt(compressed[17])).isEqualTo(0x92);\n        assertThat(toInt(compressed[16])).isEqualTo(0x74);\n        assertThat(toInt(compressed[15])).isEqualTo(0xCD);\n        assertThat(toInt(compressed[14])).isEqualTo(0xA8);\n    }\n\n    @Test\n    void testUncompressible()\n            throws Exception\n    {\n        byte[] random = getRandom(1, 5000);\n\n        byte[] compressed = compress(random);\n        byte[] uncompressed = uncompress(compressed);\n\n        assertThat(uncompressed).isEqualTo(random);\n        assertThat(compressed).hasSize(random.length + 10 + 4 + 4);\n\n        // flag: uncompressed\n        assertThat(toInt(compressed[10])).isEqualTo(SnappyFramed.UNCOMPRESSED_DATA_FLAG);\n\n        // length: 5004 = 0x138c\n        assertThat(toInt(compressed[13])).isEqualTo(0x00);\n        assertThat(toInt(compressed[12])).isEqualTo(0x13);\n        assertThat(toInt(compressed[11])).isEqualTo(0x8c);\n    }\n\n    @Test\n    void testEmptyCompression()\n            throws Exception\n    {\n        byte[] empty = new byte[0];\n        assertThat(compress(empty)).isEqualTo(SnappyFramed.HEADER_BYTES);\n        assertThat(uncompress(SnappyFramed.HEADER_BYTES)).isEqualTo(empty);\n    }\n\n    @Test\n    void testShortBlockHeader()\n    {\n        assertThatThrownBy(() -> uncompress(blockToStream(new byte[] {0})))\n                .isInstanceOf(EOFException.class)\n                .hasMessageContaining(\"block header\");\n    }\n\n    @Test\n    void testShortBlockData()\n    {\n        // flag = 0, size = 8, crc32c = 0, block data= [x, x]\n        assertThatThrownBy(() -> uncompress(blockToStream(new byte[] {1, 8, 0, 0, 0, 0, 0, 0, 'x', 'x'})))\n                .isInstanceOf(EOFException.class)\n                .hasMessageContaining(\"reading frame\");\n    }\n\n    @Test\n    void testUnskippableChunkFlags()\n    {\n        for (int i = 2; i <= 0x7f; i++) {\n            int value = i;\n            assertThatThrownBy(() -> uncompress(blockToStream(new byte[] {(byte) value, 5, 0, 0, 0, 0, 0, 0, 0})))\n                    .isInstanceOf(IOException.class);\n        }\n    }\n\n    @Test\n    void testSkippableChunkFlags()\n    {\n        for (int i = 0x80; i <= 0xfe; i++) {\n            try {\n                uncompress(blockToStream(new byte[] {(byte) i, 5, 0, 0, 0, 0, 0, 0, 0}));\n            }\n            catch (IOException e) {\n                throw new AssertionError(\"exception thrown with flag: \" + Integer.toHexString(i), e);\n            }\n        }\n    }\n\n    @Test\n    void testInvalidBlockSizeZero()\n    {\n        // flag = '0', block size = 4, crc32c = 0\n        assertThatThrownBy(() -> uncompress(blockToStream(new byte[] {1, 4, 0, 0, 0, 0, 0, 0})))\n                .isInstanceOf(IOException.class)\n                .hasMessageMatching(\".*invalid length.*4.*\");\n    }\n\n    @Test\n    void testInvalidChecksum()\n    {\n        // flag = 0, size = 5, crc32c = 0, block data = [a]\n        assertThatThrownBy(() -> uncompress(blockToStream(new byte[] {1, 5, 0, 0, 0, 0, 0, 0, 'a'})))\n                .isInstanceOf(IOException.class)\n                .hasMessage(\"Corrupt input: invalid checksum\");\n    }\n\n    @Test\n    void testInvalidChecksumIgnoredWhenVerificationDisabled()\n            throws Exception\n    {\n        // flag = 0, size = 4, crc32c = 0, block data = [a]\n        byte[] block = {1, 5, 0, 0, 0, 0, 0, 0, 'a'};\n        ByteArrayInputStream inputData = new ByteArrayInputStream(blockToStream(block));\n        assertThat(toByteArray(new SnappyFramedInputStream(new SnappyJavaDecompressor(), inputData, false))).isEqualTo(new byte[] {'a'});\n    }\n\n    @Test\n    void testLargerFrames_raw_()\n            throws IOException\n    {\n        byte[] random = getRandom(0.5, 100000);\n\n        byte[] stream = new byte[SnappyFramed.HEADER_BYTES.length + 8 + random.length];\n        System.arraycopy(SnappyFramed.HEADER_BYTES, 0, stream, 0, SnappyFramed.HEADER_BYTES.length);\n\n        stream[10] = SnappyFramed.UNCOMPRESSED_DATA_FLAG;\n\n        int length = random.length + 4;\n        stream[11] = (byte) length;\n        stream[12] = (byte) (length >>> 8);\n        stream[13] = (byte) (length >>> 16);\n\n        int crc32c = Crc32C.maskedCrc32c(random);\n        stream[14] = (byte) crc32c;\n        stream[15] = (byte) (crc32c >>> 8);\n        stream[16] = (byte) (crc32c >>> 16);\n        stream[17] = (byte) (crc32c >>> 24);\n\n        System.arraycopy(random, 0, stream, 18, random.length);\n\n        byte[] uncompressed = uncompress(stream);\n\n        assertThat(random).isEqualTo(uncompressed);\n    }\n\n    @Test\n    void testLargerFrames_compressed_()\n            throws IOException\n    {\n        byte[] random = getRandom(0.5, 500000);\n\n        byte[] compressed = blockCompress(random);\n\n        byte[] stream = new byte[SnappyFramed.HEADER_BYTES.length + 8 + compressed.length];\n        System.arraycopy(SnappyFramed.HEADER_BYTES, 0, stream, 0, SnappyFramed.HEADER_BYTES.length);\n\n        stream[10] = SnappyFramed.COMPRESSED_DATA_FLAG;\n\n        int length = compressed.length + 4;\n        stream[11] = (byte) length;\n        stream[12] = (byte) (length >>> 8);\n        stream[13] = (byte) (length >>> 16);\n\n        int crc32c = Crc32C.maskedCrc32c(random);\n        stream[14] = (byte) crc32c;\n        stream[15] = (byte) (crc32c >>> 8);\n        stream[16] = (byte) (crc32c >>> 16);\n        stream[17] = (byte) (crc32c >>> 24);\n\n        System.arraycopy(compressed, 0, stream, 18, compressed.length);\n\n        byte[] uncompressed = uncompress(stream);\n\n        assertThat(random).isEqualTo(uncompressed);\n    }\n\n    @Test\n    void testLargerFrames_compressed_smaller_raw_larger()\n            throws IOException\n    {\n        byte[] random = getRandom(0.5, 100000);\n\n        byte[] compressed = blockCompress(random);\n\n        byte[] stream = new byte[SnappyFramed.HEADER_BYTES.length + 8 + compressed.length];\n        System.arraycopy(SnappyFramed.HEADER_BYTES, 0, stream, 0, SnappyFramed.HEADER_BYTES.length);\n\n        stream[10] = SnappyFramed.COMPRESSED_DATA_FLAG;\n\n        int length = compressed.length + 4;\n        stream[11] = (byte) length;\n        stream[12] = (byte) (length >>> 8);\n        stream[13] = (byte) (length >>> 16);\n\n        int crc32c = Crc32C.maskedCrc32c(random);\n        stream[14] = (byte) crc32c;\n        stream[15] = (byte) (crc32c >>> 8);\n        stream[16] = (byte) (crc32c >>> 16);\n        stream[17] = (byte) (crc32c >>> 24);\n\n        System.arraycopy(compressed, 0, stream, 18, compressed.length);\n\n        byte[] uncompressed = uncompress(stream);\n\n        assertThat(random).isEqualTo(uncompressed);\n    }\n\n    private static byte[] blockToStream(byte[] block)\n    {\n        byte[] stream = new byte[SnappyFramed.HEADER_BYTES.length + block.length];\n        System.arraycopy(SnappyFramed.HEADER_BYTES, 0, stream, 0, SnappyFramed.HEADER_BYTES.length);\n        System.arraycopy(block, 0, stream, SnappyFramed.HEADER_BYTES.length, block.length);\n        return stream;\n    }\n\n    @Test\n    void testLargeWrites()\n            throws Exception\n    {\n        byte[] random = getRandom(0.5, 500000);\n\n        java.io.ByteArrayOutputStream out = new java.io.ByteArrayOutputStream();\n        OutputStream snappyOut = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n\n        // partially fill buffer\n        int small = 1000;\n        snappyOut.write(random, 0, small);\n\n        // write more than the buffer size\n        snappyOut.write(random, small, random.length - small);\n\n        // get compressed data\n        snappyOut.close();\n        byte[] compressed = out.toByteArray();\n        assertThat(compressed.length < random.length).isTrue();\n\n        // decompress\n        byte[] uncompressed = uncompress(compressed);\n        assertThat(uncompressed).isEqualTo(random);\n\n        // decompress byte at a time\n        InputStream in = new SnappyFramedInputStream(new SnappyJavaDecompressor(), new ByteArrayInputStream(compressed), true);\n        int i = 0;\n        int c;\n        while ((c = in.read()) != -1) {\n            uncompressed[i++] = (byte) c;\n        }\n        assertThat(i).isEqualTo(random.length);\n        assertThat(uncompressed).isEqualTo(random);\n    }\n\n    @Test\n    void testSingleByteWrites()\n            throws Exception\n    {\n        byte[] random = getRandom(0.5, 500000);\n\n        java.io.ByteArrayOutputStream out = new ByteArrayOutputStream();\n        OutputStream snappyOut = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n\n        for (byte b : random) {\n            snappyOut.write(b);\n        }\n\n        snappyOut.close();\n        byte[] compressed = out.toByteArray();\n        assertThat(compressed.length < random.length).isTrue();\n\n        byte[] uncompressed = uncompress(compressed);\n        assertThat(uncompressed).isEqualTo(random);\n    }\n\n    @Test\n    void testExtraFlushes()\n            throws Exception\n    {\n        byte[] random = getRandom(0.5, 500000);\n\n        ByteArrayOutputStream out = new ByteArrayOutputStream();\n        OutputStream snappyOut = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n\n        snappyOut.write(random);\n\n        for (int i = 0; i < 10; i++) {\n            snappyOut.flush();\n        }\n\n        snappyOut.close();\n        byte[] compressed = out.toByteArray();\n        assertThat(compressed.length < random.length).isTrue();\n\n        byte[] uncompressed = uncompress(compressed);\n        assertThat(uncompressed).isEqualTo(random);\n    }\n\n    @Test\n    void testUncompressibleRange()\n            throws Exception\n    {\n        int max = 128 * 1024;\n        byte[] random = getRandom(1, max);\n\n        for (int i = 1; i <= max; i += 102) {\n            byte[] original = Arrays.copyOfRange(random, 0, i);\n\n            byte[] compressed = compress(original);\n            byte[] uncompressed = uncompress(compressed);\n\n            assertThat(uncompressed).isEqualTo(original);\n            // assertEquals(compressed.length, original.length + overhead);\n        }\n    }\n\n    @Test\n    void testByteForByteTestData()\n            throws Exception\n    {\n        for (DataSet dataSet : TestingData.DATA_SETS) {\n            byte[] original = dataSet.getUncompressed();\n            byte[] compressed = compress(original);\n            byte[] uncompressed = uncompress(compressed);\n            assertThat(uncompressed).isEqualTo(original);\n        }\n    }\n\n    @Test\n    void testEmptyStream()\n    {\n        assertThatThrownBy(() -> uncompress(new byte[0]))\n                .isInstanceOf(EOFException.class)\n                .hasMessageContaining(\"stream header\");\n    }\n\n    @Test\n    void testInvalidStreamHeader()\n    {\n        assertThatThrownBy(() -> uncompress(new byte[] {'b', 0, 0, 'g', 'u', 's', 0}))\n                .isInstanceOf(IOException.class)\n                .hasMessageContaining(\"stream header\");\n    }\n\n    @Test\n    void testCloseIsIdempotent()\n            throws Exception\n    {\n        byte[] random = getRandom(0.5, 500000);\n\n        ByteArrayOutputStream out = new ByteArrayOutputStream();\n        OutputStream snappyOut = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n\n        snappyOut.write(random);\n\n        snappyOut.close();\n        snappyOut.close();\n\n        byte[] compressed = out.toByteArray();\n\n        InputStream snappyIn = new SnappyFramedInputStream(new SnappyJavaDecompressor(), new ByteArrayInputStream(compressed), true);\n        byte[] uncompressed = toByteArray(snappyIn);\n        assertThat(uncompressed).isEqualTo(random);\n\n        snappyIn.close();\n        snappyIn.close();\n    }\n\n    /**\n     * Tests that the presence of the marker bytes can appear as a valid frame\n     * anywhere in stream.\n     */\n    @Test\n    void testMarkerFrameInStream()\n            throws IOException\n    {\n        int size = 500000;\n        byte[] random = getRandom(0.5, size);\n\n        ByteArrayOutputStream out = new ByteArrayOutputStream();\n        OutputStream os = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n\n        byte[] markerFrame = getMarkerFrame();\n\n        for (int i = 0; i < size; ) {\n            int toWrite = Math.max((size - i) / 4, 512);\n\n            // write some data to be compressed\n            os.write(random, i, Math.min(size - i, toWrite));\n            // force the write of a frame\n            os.flush();\n\n            // write the marker frame to the underlying byte array output stream\n            out.write(markerFrame);\n\n            // this is not accurate for the final write, but at that point it\n            // does not matter\n            // as we will be exiting the for loop now\n            i += toWrite;\n        }\n\n        byte[] compressed = out.toByteArray();\n        byte[] uncompressed = uncompress(compressed);\n\n        assertThat(random).isEqualTo(uncompressed);\n    }\n\n    private static byte[] blockCompress(byte[] data)\n    {\n        SnappyJavaCompressor compressor = new SnappyJavaCompressor();\n        byte[] compressedOut = new byte[compressor.maxCompressedLength(data.length)];\n        int compressedSize = compressor.compress(data, 0, data.length, compressedOut, 0, compressedOut.length);\n        byte[] trimmedBuffer = Arrays.copyOf(compressedOut, compressedSize);\n        return trimmedBuffer;\n    }\n\n    private static byte[] compress(byte[] original)\n            throws IOException\n    {\n        ByteArrayOutputStream out = new ByteArrayOutputStream();\n        OutputStream snappyOut = new SnappyFramedOutputStream(new SnappyJavaCompressor(), out);\n        snappyOut.write(original);\n        snappyOut.close();\n        return out.toByteArray();\n    }\n\n    private static byte[] uncompress(byte[] compressed)\n            throws IOException\n    {\n        return toByteArray(new SnappyFramedInputStream(new SnappyJavaDecompressor(), new ByteArrayInputStream(compressed)));\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/HadoopLzoCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Compressor;\nimport org.anarres.lzo.hadoop.codec.LzoCompressor;\n\nimport java.io.IOException;\nimport java.lang.foreign.MemorySegment;\n\npublic class HadoopLzoCompressor\n        implements Compressor\n{\n    private final org.apache.hadoop.io.compress.Compressor compressor;\n\n    public HadoopLzoCompressor()\n    {\n        // use a small buffer so we get multiple compressed chunks\n        compressor = new LzoCompressor(LzoCompressor.CompressionStrategy.LZO1X_1, 256 * 1024);\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return uncompressedSize + (uncompressedSize / 16) + 64 + 3;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        compressor.reset();\n        compressor.setInput(input, inputOffset, inputLength);\n        compressor.finish();\n\n        int offset = outputOffset;\n        int outputLimit = outputOffset + maxOutputLength;\n        while (!compressor.finished() && offset < outputLimit) {\n            try {\n                offset += compressor.compress(output, offset, outputLimit - offset);\n            }\n            catch (IOException e) {\n                throw new RuntimeException(e);\n            }\n        }\n\n        if (!compressor.finished()) {\n            throw new RuntimeException(\"not enough space in output buffer\");\n        }\n\n        return offset - outputOffset;\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/HadoopLzoDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\nimport org.anarres.lzo.hadoop.codec.LzoDecompressor;\nimport org.anarres.lzo.hadoop.codec.LzoDecompressor.CompressionStrategy;\n\nimport java.io.IOException;\nimport java.lang.foreign.MemorySegment;\n\nimport static com.google.common.base.Preconditions.checkArgument;\n\npublic class HadoopLzoDecompressor\n        implements Decompressor\n{\n    private static final int MAX_OUTPUT_BUFFER_SIZE = 128 * 1024 * 1024;\n    private final org.apache.hadoop.io.compress.Decompressor decompressor;\n\n    public HadoopLzoDecompressor()\n    {\n        decompressor = new LzoDecompressor(CompressionStrategy.LZO1X, MAX_OUTPUT_BUFFER_SIZE);\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        checkArgument(maxOutputLength < MAX_OUTPUT_BUFFER_SIZE, \"output size \" + maxOutputLength + \" exceed maximum size : \" + maxOutputLength);\n        // nothing decompress to nothing\n        if (inputLength == 0) {\n            return 0;\n        }\n\n        decompressor.reset();\n        decompressor.setInput(input, inputOffset, inputLength);\n\n        int offset = outputOffset;\n        int outputLimit = outputOffset + maxOutputLength;\n        while (!decompressor.finished() && offset < outputLimit) {\n            try {\n                offset += decompressor.decompress(output, offset, outputLimit - offset);\n            }\n            catch (IOException e) {\n                throw new RuntimeException(e);\n            }\n        }\n\n        return offset - outputOffset;\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/JPountzLz4Compressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Compressor;\nimport net.jpountz.lz4.LZ4Compressor;\nimport net.jpountz.lz4.LZ4Factory;\n\nimport java.lang.foreign.MemorySegment;\n\npublic class JPountzLz4Compressor\n        implements Compressor\n{\n    private final LZ4Compressor compressor;\n\n    public JPountzLz4Compressor(LZ4Factory factory)\n    {\n        compressor = factory.fastCompressor();\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return compressor.maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        return compressor.compress(input, inputOffset, inputLength, output, outputOffset, maxOutputLength);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/JPountzLz4Decompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\nimport net.jpountz.lz4.LZ4Factory;\nimport net.jpountz.lz4.LZ4SafeDecompressor;\n\nimport java.lang.foreign.MemorySegment;\n\npublic class JPountzLz4Decompressor\n        implements Decompressor\n{\n    private final LZ4SafeDecompressor decompressor;\n\n    public JPountzLz4Decompressor(LZ4Factory factory)\n    {\n        decompressor = factory.safeDecompressor();\n    }\n\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        return decompressor.decompress(input, inputOffset, inputLength, output, outputOffset, maxOutputLength);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/JdkDeflateCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\nimport java.util.zip.Deflater;\n\nimport static java.util.zip.Deflater.FULL_FLUSH;\n\npublic class JdkDeflateCompressor\n        implements Compressor\n{\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return (int) ((uncompressedSize * 1.2) + 11);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        Deflater deflater = new Deflater(6, true);\n        deflater.setInput(input, inputOffset, inputLength);\n        deflater.finish();\n        int compressedDataLength = deflater.deflate(output, outputOffset, maxOutputLength, FULL_FLUSH);\n        deflater.end();\n        return compressedDataLength;\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/JdkInflateDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\nimport java.util.zip.DataFormatException;\nimport java.util.zip.Inflater;\n\npublic class JdkInflateDecompressor\n        implements Decompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        try {\n            Inflater inflater = new Inflater(true);\n            inflater.setInput(input, inputOffset, inputLength);\n            int resultLength = inflater.inflate(output, outputOffset, maxOutputLength);\n            inflater.end();\n            return resultLength;\n        }\n        catch (DataFormatException e) {\n            throw new RuntimeException(e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/XerialSnappyCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.snappy.SnappyJavaCompressor;\n\nimport java.io.IOException;\nimport java.lang.foreign.MemorySegment;\n\npublic class XerialSnappyCompressor\n        implements Compressor\n{\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return new SnappyJavaCompressor().maxCompressedLength(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        try {\n            return org.xerial.snappy.Snappy.compress(input, inputOffset, inputLength, output, outputOffset);\n        }\n        catch (IOException e) {\n            throw new RuntimeException(e);\n        }\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/XerialSnappyDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.io.IOException;\nimport java.lang.foreign.MemorySegment;\n\npublic class XerialSnappyDecompressor\n        implements Decompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        try {\n            return org.xerial.snappy.Snappy.uncompress(input, inputOffset, inputLength, output, outputOffset);\n        }\n        catch (IOException e) {\n            throw new RuntimeException(e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/ZstdJniCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport com.github.luben.zstd.Zstd;\nimport io.airlift.compress.v3.Compressor;\n\nimport java.lang.foreign.MemorySegment;\nimport java.nio.ByteBuffer;\n\npublic class ZstdJniCompressor\n        implements Compressor\n{\n    private final int level;\n\n    public ZstdJniCompressor(int level)\n    {\n        this.level = level;\n    }\n\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        return (int) Zstd.compressBound(uncompressedSize);\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        return (int) Zstd.compressByteArray(output, outputOffset, maxOutputLength, input, inputOffset, inputLength, level);\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        ByteBuffer inputBuffer = input.asByteBuffer();\n        ByteBuffer outputBuffer = output.asByteBuffer();\n        Zstd.compress(inputBuffer, outputBuffer, level);\n        return outputBuffer.position();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/thirdparty/ZstdJniDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.thirdparty;\n\nimport com.github.luben.zstd.Zstd;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\nimport java.nio.ByteBuffer;\n\npublic class ZstdJniDecompressor\n        implements Decompressor\n{\n    @Override\n    public int decompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n            throws MalformedInputException\n    {\n        return (int) Zstd.decompressByteArray(output, outputOffset, maxOutputLength, input, inputOffset, inputLength);\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        ByteBuffer inputBuffer = input.asByteBuffer();\n        ByteBuffer outputBuffer = output.asByteBuffer();\n        Zstd.compress(inputBuffer, outputBuffer);\n        return outputBuffer.position();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/xxhash/AbstractTestXxHash64.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport org.junit.jupiter.api.Test;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.nio.charset.StandardCharsets;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\nabstract class AbstractTestXxHash64\n{\n    // Test vectors from xxhash reference implementation\n    // https://github.com/Cyan4973/xxHash/blob/v0.8.3/cli/xsum_sanity_check.c\n\n    // Prime constants used as seeds in sanity tests\n    protected static final long PRIME32 = 2654435761L;\n    protected static final long PRIME64 = 0x9E3779B185EBCA8DL;\n\n    // Abstract factory methods for implementations to override\n    protected abstract XxHash64Hasher createHasher();\n\n    protected abstract XxHash64Hasher createHasher(long seed);\n\n    protected abstract long hash(byte[] input);\n\n    protected abstract long hash(byte[] input, long seed);\n\n    protected abstract long hash(byte[] input, int offset, int length);\n\n    protected abstract long hash(MemorySegment input);\n\n    protected abstract long hash(long value);\n\n    protected abstract long hash(long value, long seed);\n\n    // Sanity buffer pattern from xxhash reference\n    protected static byte[] createSanityBuffer(int length)\n    {\n        byte[] buffer = new byte[length];\n        long byteGen = PRIME32 & 0xFFFFFFFFL;\n        for (int i = 0; i < length; i++) {\n            buffer[i] = (byte) (byteGen >>> 56);\n            byteGen *= PRIME64;\n        }\n        return buffer;\n    }\n\n    // ========== One-shot tests ==========\n\n    @Test\n    void testHash64Empty()\n    {\n        // From XSUM_XXH64_testdata: { 0, 0, 0xEF46DB3751D8E999ULL }\n        byte[] empty = new byte[0];\n        assertThat(hash(empty)).isEqualTo(0xEF46DB3751D8E999L);\n    }\n\n    @Test\n    void testHash64EmptyWithSeed()\n    {\n        // From XSUM_XXH64_testdata: { 0, PRIME32, 0xAC75FDA2929B17EFULL }\n        byte[] empty = new byte[0];\n        assertThat(hash(empty, PRIME32)).isEqualTo(0xAC75FDA2929B17EFL);\n    }\n\n    @Test\n    void testHash64SanityBuffer()\n    {\n        // Test vectors from XSUM_XXH64_testdata (XXH64)\n        // https://github.com/Cyan4973/xxHash/blob/v0.8.3/cli/xsum_sanity_check.c\n        assertSanityHash64(1, 0, 0xE934A84ADB052768L);\n        assertSanityHash64(1, PRIME32, 0x5014607643A9B4C3L);\n        assertSanityHash64(4, 0, 0x9136A0DCA57457EEL);\n        assertSanityHash64(14, 0, 0x8282DCC4994E35C8L);\n        assertSanityHash64(14, PRIME32, 0xC3BD6BF63DEB6DF0L);\n        assertSanityHash64(222, 0, 0xB641AE8CB691C174L);\n        assertSanityHash64(222, PRIME32, 0x20CB8AB7AE10C14AL);\n    }\n\n    private void assertSanityHash64(int length, long seed, long expected)\n    {\n        byte[] buffer = createSanityBuffer(length);\n        if (seed == 0) {\n            assertThat(hash(buffer))\n                    .describedAs(\"XXH64 with length=%d\", length)\n                    .isEqualTo(expected);\n        }\n        else {\n            assertThat(hash(buffer, seed))\n                    .describedAs(\"XXH64 with length=%d, seed=0x%X\", length, seed)\n                    .isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testHash64WithMemorySegment()\n    {\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long expectedHash = hash(data);\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment segment = arena.allocate(data.length);\n            segment.copyFrom(MemorySegment.ofArray(data));\n            assertThat(hash(segment)).isEqualTo(expectedHash);\n        }\n    }\n\n    @Test\n    void testHash64WithOffset()\n    {\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] padded = new byte[data.length + 10];\n        System.arraycopy(data, 0, padded, 5, data.length);\n\n        assertThat(hash(padded, 5, data.length)).isEqualTo(hash(data));\n    }\n\n    // ========== Streaming tests ==========\n\n    @Test\n    void testStreamingMatchesOneShot()\n    {\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long expected = hash(data);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingMultipleUpdates()\n    {\n        byte[] part1 = \"Hello, \".getBytes(StandardCharsets.UTF_8);\n        byte[] part2 = \"World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] combined = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n\n        long expected = hash(combined);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.update(part1);\n            hasher.update(part2);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingWithSeed()\n    {\n        byte[] data = createSanityBuffer(222);\n        long expected = hash(data, PRIME32);\n\n        try (XxHash64Hasher hasher = createHasher(PRIME32)) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingReset()\n    {\n        byte[] data1 = \"First data\".getBytes(StandardCharsets.UTF_8);\n        byte[] data2 = \"Second data\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.update(data1);\n            long hash1 = hasher.digest();\n            assertThat(hash1).isEqualTo(hash(data1));\n\n            hasher.reset();\n            hasher.update(data2);\n            long hash2 = hasher.digest();\n            assertThat(hash2).isEqualTo(hash(data2));\n\n            assertThat(hash1).isNotEqualTo(hash2);\n        }\n    }\n\n    @Test\n    void testStreamingResetWithSeed()\n    {\n        byte[] data = \"Test data\".getBytes(StandardCharsets.UTF_8);\n        long seed = 12345L;\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.update(data);\n            long hashNoSeed = hasher.digest();\n\n            hasher.reset(seed);\n            hasher.update(data);\n            long hashWithSeed = hasher.digest();\n\n            assertThat(hashNoSeed).isEqualTo(hash(data));\n            assertThat(hashWithSeed).isEqualTo(hash(data, seed));\n            assertThat(hashNoSeed).isNotEqualTo(hashWithSeed);\n        }\n    }\n\n    @Test\n    void testStreamingDigestDoesNotModifyState()\n    {\n        byte[] data = \"Test data\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.update(data);\n\n            long hash1 = hasher.digest();\n            long hash2 = hasher.digest();\n            assertThat(hash1).isEqualTo(hash2);\n\n            hasher.update(data);\n            long hash3 = hasher.digest();\n            assertThat(hash3).isNotEqualTo(hash1);\n        }\n    }\n\n    @Test\n    void testStreamingEmpty()\n    {\n        try (XxHash64Hasher hasher = createHasher()) {\n            assertThat(hasher.digest()).isEqualTo(0xEF46DB3751D8E999L);\n        }\n    }\n\n    @Test\n    void testStreamingChunkedMatchesOneShot()\n    {\n        byte[] data = createSanityBuffer(2048);\n        long expected = hash(data);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            int chunkSize = 100;\n            for (int i = 0; i < data.length; i += chunkSize) {\n                int len = Math.min(chunkSize, data.length - i);\n                hasher.update(data, i, len);\n            }\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingFluentApi()\n    {\n        byte[] part1 = \"Hello\".getBytes(StandardCharsets.UTF_8);\n        byte[] part2 = \", \".getBytes(StandardCharsets.UTF_8);\n        byte[] part3 = \"World!\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            long hashResult = hasher\n                    .update(part1)\n                    .update(part2)\n                    .update(part3)\n                    .digest();\n\n            assertThat(hashResult).isEqualTo(hash(\"Hello, World!\".getBytes(StandardCharsets.UTF_8)));\n        }\n    }\n\n    @Test\n    void testUpdateLELong()\n    {\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(hash(bytes));\n        }\n    }\n\n    @Test\n    void testUpdateLEInt()\n    {\n        int value = 0x01020304;\n        byte[] bytes = new byte[] {0x04, 0x03, 0x02, 0x01}; // LE order\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(hash(bytes));\n        }\n    }\n\n    @Test\n    void testUpdateLELengthPrefixed()\n    {\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        int length = data.length;\n\n        // Build expected hash by manually constructing length prefix + data\n        byte[] prefixed = new byte[4 + data.length];\n        prefixed[0] = (byte) length;\n        prefixed[1] = (byte) (length >> 8);\n        prefixed[2] = (byte) (length >> 16);\n        prefixed[3] = (byte) (length >> 24);\n        System.arraycopy(data, 0, prefixed, 4, data.length);\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.updateLE(length).update(data);\n            assertThat(hasher.digest()).isEqualTo(hash(prefixed));\n        }\n    }\n\n    // ========== Single long hash tests ==========\n\n    @Test\n    void testHashLong()\n    {\n        // hash(long) should produce the same result as hashing the 8 bytes in LE order\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n\n        assertThat(hash(value)).isEqualTo(hash(bytes));\n    }\n\n    @Test\n    void testHashLongWithSeed()\n    {\n        // hash(long, seed) should produce the same result as hashing the 8 bytes with seed\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n        long seed = PRIME32;\n\n        assertThat(hash(value, seed)).isEqualTo(hash(bytes, seed));\n    }\n\n    @Test\n    void testHashLongKnownValues()\n    {\n        // Test that different seeds produce different results\n        assertThat(hash(0L)).isNotEqualTo(hash(0L, PRIME32));\n        assertThat(hash(Long.MAX_VALUE)).isNotEqualTo(hash(Long.MAX_VALUE, PRIME32));\n\n        // Test consistency - calling with same input should return same result\n        assertThat(hash(12345L)).isEqualTo(hash(12345L));\n        assertThat(hash(12345L, PRIME32)).isEqualTo(hash(12345L, PRIME32));\n    }\n\n    @Test\n    void testHashLongMatchesStreaming()\n    {\n        // hash(long) should produce same result as streaming updateLE\n        long value = 0xDEADBEEFCAFEBABEL;\n\n        try (XxHash64Hasher hasher = createHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(hash(value));\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/xxhash/TestXxHash3.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport org.junit.jupiter.api.Test;\n\nimport java.lang.foreign.Arena;\nimport java.lang.foreign.MemorySegment;\nimport java.nio.charset.StandardCharsets;\n\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.junit.jupiter.api.Assumptions.assumeTrue;\n\nclass TestXxHash3\n{\n    // Test vectors from xxhash reference implementation\n    // https://github.com/Cyan4973/xxHash/blob/v0.8.3/cli/xsum_sanity_check.c\n\n    // Empty input test vectors (from XSUM_XXH3_testdata and XSUM_XXH128_testdata)\n    private static final long EMPTY_64 = 0x2D06800538D394C2L;\n    // XXH128 struct: first value is low64, second is high64\n    private static final XxHash128 EMPTY_128 = new XxHash128(0x6001C324468D497FL, 0x99AA06D3014798D8L);\n\n    // Prime constants from xxhash (used as seeds in sanity tests)\n    // PRIME32 must be kept as a long to avoid sign-extension when used as seed\n    private static final long PRIME32 = 2654435761L;\n    private static final long PRIME64 = 0x9E3779B185EBCA8DL;\n\n    // Sanity buffer pattern from xxhash reference:\n    // buffer[i] = (byteGen >> 56); byteGen *= PRIME64;\n    private static byte[] createSanityBuffer(int length)\n    {\n        byte[] buffer = new byte[length];\n        long byteGen = PRIME32 & 0xFFFFFFFFL; // Use unsigned value\n        for (int i = 0; i < length; i++) {\n            buffer[i] = (byte) (byteGen >>> 56);\n            byteGen *= PRIME64;\n        }\n        return buffer;\n    }\n\n    @Test\n    void testIsEnabled()\n    {\n        // Just verify that isEnabled() can be called without error\n        XxHash3Native.isEnabled();\n    }\n\n    @Test\n    void testHash64Empty()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] empty = new byte[0];\n        assertThat(XxHash3Native.hash(empty)).isEqualTo(EMPTY_64);\n        assertThat(XxHash3Native.hash(empty, 0, 0)).isEqualTo(EMPTY_64);\n    }\n\n    @Test\n    void testHash64EmptyWithSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // From XSUM_XXH3_testdata: { 0, PRIME64, 0xA8A6B918B2F0364AULL }\n        byte[] empty = new byte[0];\n        assertThat(XxHash3Native.hash(empty, PRIME64)).isEqualTo(0xA8A6B918B2F0364AL);\n    }\n\n    @Test\n    void testHash128Empty()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] empty = new byte[0];\n        assertThat(XxHash3Native.hash128(empty)).isEqualTo(EMPTY_128);\n        assertThat(XxHash3Native.hash128(empty, 0, 0)).isEqualTo(EMPTY_128);\n    }\n\n    @Test\n    void testHash128EmptyWithSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // From XSUM_XXH128_testdata: { 0, PRIME32, { 0x5444F7869C671AB0ULL, 0x92220AE55E14AB50ULL } }\n        byte[] empty = new byte[0];\n        XxHash128 expected = new XxHash128(0x5444F7869C671AB0L, 0x92220AE55E14AB50L);\n        assertThat(XxHash3Native.hash128(empty, PRIME32)).isEqualTo(expected);\n    }\n\n    @Test\n    void testHash64SanityBuffer()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Test vectors from XSUM_XXH3_testdata (XXH3_64bits)\n        // https://github.com/Cyan4973/xxHash/blob/v0.8.3/cli/xsum_sanity_check.c\n        // Note: seeded tests use PRIME64 as seed\n        assertSanityHash64(1, 0, 0xC44BDFF4074EECDBL);\n        assertSanityHash64(1, PRIME64, 0x032BE332DD766EF8L);\n        assertSanityHash64(6, 0, 0x27B56A84CD2D7325L);\n        assertSanityHash64(6, PRIME64, 0x84589C116AB59AB9L);\n        assertSanityHash64(12, 0, 0xA713DAF0DFBB77E7L);\n        assertSanityHash64(12, PRIME64, 0xE7303E1B2336DE0EL);\n        assertSanityHash64(24, 0, 0xA3FE70BF9D3510EBL);\n        assertSanityHash64(24, PRIME64, 0x850E80FC35BDD690L);\n        assertSanityHash64(48, 0, 0x397DA259ECBA1F11L);\n        assertSanityHash64(48, PRIME64, 0xADC2CBAA44ACC616L);\n        assertSanityHash64(80, 0, 0xBCDEFBBB2C47C90AL);\n        assertSanityHash64(80, PRIME64, 0xC6DD0CB699532E73L);\n        assertSanityHash64(195, 0, 0xCD94217EE362EC3AL);\n        assertSanityHash64(195, PRIME64, 0xBA68003D370CB3D9L);\n    }\n\n    private void assertSanityHash64(int length, long seed, long expected)\n    {\n        byte[] buffer = createSanityBuffer(length);\n        if (seed == 0) {\n            assertThat(XxHash3Native.hash(buffer))\n                    .describedAs(\"XXH3_64bits with length=%d\", length)\n                    .isEqualTo(expected);\n        }\n        else {\n            assertThat(XxHash3Native.hash(buffer, seed))\n                    .describedAs(\"XXH3_64bits_withSeed with length=%d, seed=0x%X\", length, seed)\n                    .isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testHash128SanityBuffer()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Test vectors from XSUM_XXH128_testdata (XXH3_128bits)\n        // https://github.com/Cyan4973/xxHash/blob/v0.8.3/cli/xsum_sanity_check.c\n        // Note: seeded tests use PRIME32 as seed (not PRIME64!)\n        // Values are {low64, high64}\n        assertSanityHash128(1, 0, 0xC44BDFF4074EECDBL, 0xA6CD5E9392000F6AL);\n        assertSanityHash128(1, PRIME32, 0xB53D5557E7F76F8DL, 0x89B99554BA22467CL);\n        assertSanityHash128(6, 0, 0x3E7039BDDA43CFC6L, 0x082AFE0B8162D12AL);\n        assertSanityHash128(6, PRIME32, 0x269D8F70BE98856EL, 0x5A865B5389ABD2B1L);\n        assertSanityHash128(12, 0, 0x061A192713F69AD9L, 0x6E3EFD8FC7802B18L);\n        assertSanityHash128(12, PRIME32, 0x9BE9F9A67F3C7DFBL, 0xD7E09D518A3405D3L);\n        assertSanityHash128(24, 0, 0x1E7044D28B1B901DL, 0x0CE966E4678D3761L);\n        assertSanityHash128(24, PRIME32, 0xD7304C54EBAD40A9L, 0x3162026714A6A243L);\n        assertSanityHash128(48, 0, 0xF942219AED80F67BL, 0xA002AC4E5478227EL);\n        assertSanityHash128(48, PRIME32, 0x7BA3C3E453A1934EL, 0x163ADDE36C072295L);\n        assertSanityHash128(81, 0, 0x5E8BAFB9F95FB803L, 0x4952F58181AB0042L);\n        assertSanityHash128(81, PRIME32, 0x703FBB3D7A5F755CL, 0x2724EC7ADC750FB6L);\n    }\n\n    private void assertSanityHash128(int length, long seed, long expectedLow, long expectedHigh)\n    {\n        byte[] buffer = createSanityBuffer(length);\n        XxHash128 expected = new XxHash128(expectedLow, expectedHigh);\n        if (seed == 0) {\n            assertThat(XxHash3Native.hash128(buffer))\n                    .describedAs(\"XXH3_128bits with length=%d\", length)\n                    .isEqualTo(expected);\n        }\n        else {\n            assertThat(XxHash3Native.hash128(buffer, seed))\n                    .describedAs(\"XXH3_128bits_withSeed with length=%d, seed=0x%X\", length, seed)\n                    .isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testHash64WithMemorySegment()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long expectedHash = XxHash3Native.hash(data);\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment segment = arena.allocate(data.length);\n            segment.copyFrom(MemorySegment.ofArray(data));\n            assertThat(XxHash3Native.hash(segment)).isEqualTo(expectedHash);\n        }\n    }\n\n    @Test\n    void testHash64WithMemorySegmentAndSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long seed = 42L;\n        long expectedHash = XxHash3Native.hash(data, seed);\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment segment = arena.allocate(data.length);\n            segment.copyFrom(MemorySegment.ofArray(data));\n            assertThat(XxHash3Native.hash(segment, seed)).isEqualTo(expectedHash);\n        }\n    }\n\n    @Test\n    void testHash128WithMemorySegment()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        XxHash128 expectedHash = XxHash3Native.hash128(data);\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment segment = arena.allocate(data.length);\n            segment.copyFrom(MemorySegment.ofArray(data));\n            assertThat(XxHash3Native.hash128(segment)).isEqualTo(expectedHash);\n        }\n    }\n\n    @Test\n    void testHash128WithMemorySegmentAndSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long seed = 42L;\n        XxHash128 expectedHash = XxHash3Native.hash128(data, seed);\n\n        try (Arena arena = Arena.ofConfined()) {\n            MemorySegment segment = arena.allocate(data.length);\n            segment.copyFrom(MemorySegment.ofArray(data));\n            assertThat(XxHash3Native.hash128(segment, seed)).isEqualTo(expectedHash);\n        }\n    }\n\n    @Test\n    void testHash64WithOffset()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] padded = new byte[data.length + 10];\n        System.arraycopy(data, 0, padded, 5, data.length);\n\n        assertThat(XxHash3Native.hash(padded, 5, data.length)).isEqualTo(XxHash3Native.hash(data));\n    }\n\n    @Test\n    void testHash128WithOffset()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] padded = new byte[data.length + 10];\n        System.arraycopy(data, 0, padded, 5, data.length);\n\n        assertThat(XxHash3Native.hash128(padded, 5, data.length)).isEqualTo(XxHash3Native.hash128(data));\n    }\n\n    // ========== Streaming tests ==========\n\n    @Test\n    void testStreaming64MatchesOneShot()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        long expected = XxHash3Native.hash(data);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreaming128MatchesOneShot()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        XxHash128 expected = XxHash3Native.hash128(data);\n\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingMultipleUpdates64()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] part1 = \"Hello, \".getBytes(StandardCharsets.UTF_8);\n        byte[] part2 = \"World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] combined = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n\n        long expected = XxHash3Native.hash(combined);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.update(part1);\n            hasher.update(part2);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingMultipleUpdates128()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] part1 = \"Hello, \".getBytes(StandardCharsets.UTF_8);\n        byte[] part2 = \"World!\".getBytes(StandardCharsets.UTF_8);\n        byte[] combined = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n\n        XxHash128 expected = XxHash3Native.hash128(combined);\n\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n            hasher.update(part1);\n            hasher.update(part2);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingWithSeed64()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = createSanityBuffer(195);\n        long expected = XxHash3Native.hash(data, PRIME64);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher(PRIME64)) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingWithSeed128()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = createSanityBuffer(81);\n        XxHash128 expected = XxHash3Native.hash128(data, PRIME32);\n\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128(PRIME32)) {\n            hasher.update(data);\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingReset()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data1 = \"First data\".getBytes(StandardCharsets.UTF_8);\n        byte[] data2 = \"Second data\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            // First hash\n            hasher.update(data1);\n            long hash1 = hasher.digest();\n            assertThat(hash1).isEqualTo(XxHash3Native.hash(data1));\n\n            // Reset and compute second hash\n            hasher.reset();\n            hasher.update(data2);\n            long hash2 = hasher.digest();\n            assertThat(hash2).isEqualTo(XxHash3Native.hash(data2));\n\n            // Hashes should be different\n            assertThat(hash1).isNotEqualTo(hash2);\n        }\n    }\n\n    @Test\n    void testStreamingResetWithSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Test data\".getBytes(StandardCharsets.UTF_8);\n        long seed = 12345L;\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            // First hash without seed\n            hasher.update(data);\n            long hashNoSeed = hasher.digest();\n\n            // Reset with seed\n            hasher.reset(seed);\n            hasher.update(data);\n            long hashWithSeed = hasher.digest();\n\n            // Should match one-shot versions\n            assertThat(hashNoSeed).isEqualTo(XxHash3Native.hash(data));\n            assertThat(hashWithSeed).isEqualTo(XxHash3Native.hash(data, seed));\n            assertThat(hashNoSeed).isNotEqualTo(hashWithSeed);\n        }\n    }\n\n    @Test\n    void testStreamingDigestDoesNotModifyState()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] data = \"Test data\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.update(data);\n\n            // Multiple calls to digest should return the same value\n            long hash1 = hasher.digest();\n            long hash2 = hasher.digest();\n            assertThat(hash1).isEqualTo(hash2);\n\n            // Can continue updating after digest\n            hasher.update(data);\n            long hash3 = hasher.digest();\n            assertThat(hash3).isNotEqualTo(hash1);\n        }\n    }\n\n    @Test\n    void testStreamingEmpty()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            assertThat(hasher.digest()).isEqualTo(EMPTY_64);\n        }\n\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n            assertThat(hasher.digest()).isEqualTo(EMPTY_128);\n        }\n    }\n\n    @Test\n    void testStreamingChunkedMatchesOneShot()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Use a larger buffer to test chunked processing\n        byte[] data = createSanityBuffer(2048);\n        long expected = XxHash3Native.hash(data);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            // Update in small chunks\n            int chunkSize = 100;\n            for (int i = 0; i < data.length; i += chunkSize) {\n                int len = Math.min(chunkSize, data.length - i);\n                hasher.update(data, i, len);\n            }\n            assertThat(hasher.digest()).isEqualTo(expected);\n        }\n    }\n\n    @Test\n    void testStreamingFluentApi()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        byte[] part1 = \"Hello\".getBytes(StandardCharsets.UTF_8);\n        byte[] part2 = \", \".getBytes(StandardCharsets.UTF_8);\n        byte[] part3 = \"World!\".getBytes(StandardCharsets.UTF_8);\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            long hash = hasher\n                    .update(part1)\n                    .update(part2)\n                    .update(part3)\n                    .digest();\n\n            assertThat(hash).isEqualTo(XxHash3Native.hash(\"Hello, World!\".getBytes(StandardCharsets.UTF_8)));\n        }\n    }\n\n    @Test\n    void testUpdateLELong()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Test that updateLE(long) produces same hash as manually writing bytes in LE order\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash(bytes));\n        }\n\n        // Also test 128-bit hasher\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash128(bytes));\n        }\n    }\n\n    @Test\n    void testUpdateLEInt()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Test that updateLE(int) produces same hash as manually writing bytes in LE order\n        int value = 0x01020304;\n        byte[] bytes = new byte[] {0x04, 0x03, 0x02, 0x01}; // LE order\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash(bytes));\n        }\n\n        // Also test 128-bit hasher\n        try (XxHash3Hasher128 hasher = XxHash3Native.newHasher128()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash128(bytes));\n        }\n    }\n\n    @Test\n    void testUpdateLELengthPrefixed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Simulate hashing length-prefixed data\n        byte[] data = \"Hello, World!\".getBytes(StandardCharsets.UTF_8);\n        int length = data.length;\n\n        // Build expected hash by manually constructing length prefix + data\n        byte[] prefixed = new byte[4 + data.length];\n        prefixed[0] = (byte) length;\n        prefixed[1] = (byte) (length >> 8);\n        prefixed[2] = (byte) (length >> 16);\n        prefixed[3] = (byte) (length >> 24);\n        System.arraycopy(data, 0, prefixed, 4, data.length);\n\n        // Using updateLE should produce same result\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.updateLE(length).update(data);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash(prefixed));\n        }\n    }\n\n    // ========== Single long hash tests ==========\n\n    @Test\n    void testHashLong()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // hash(long) should produce the same result as hashing the 8 bytes in LE order\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n\n        assertThat(XxHash3Native.hash(value)).isEqualTo(XxHash3Native.hash(bytes));\n    }\n\n    @Test\n    void testHashLongWithSeed()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // hash(long, seed) should produce the same result as hashing the 8 bytes with seed\n        long value = 0x0102030405060708L;\n        byte[] bytes = new byte[] {0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01}; // LE order\n        long seed = PRIME64;\n\n        assertThat(XxHash3Native.hash(value, seed)).isEqualTo(XxHash3Native.hash(bytes, seed));\n    }\n\n    @Test\n    void testHashLongKnownValues()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // Test that different seeds produce different results\n        assertThat(XxHash3Native.hash(0L)).isNotEqualTo(XxHash3Native.hash(0L, PRIME64));\n        assertThat(XxHash3Native.hash(Long.MAX_VALUE)).isNotEqualTo(XxHash3Native.hash(Long.MAX_VALUE, PRIME64));\n\n        // Test consistency - calling with same input should return same result\n        assertThat(XxHash3Native.hash(12345L)).isEqualTo(XxHash3Native.hash(12345L));\n        assertThat(XxHash3Native.hash(12345L, PRIME64)).isEqualTo(XxHash3Native.hash(12345L, PRIME64));\n    }\n\n    @Test\n    void testHashLongMatchesStreaming()\n    {\n        assumeTrue(XxHash3Native.isEnabled(), \"XxHash3 native library not available\");\n\n        // hash(long) should produce same result as streaming updateLE\n        long value = 0xDEADBEEFCAFEBABEL;\n\n        try (XxHash3Hasher hasher = XxHash3Native.newHasher()) {\n            hasher.updateLE(value);\n            assertThat(hasher.digest()).isEqualTo(XxHash3Native.hash(value));\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/xxhash/TestXxHash64.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport org.junit.jupiter.api.Test;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\nclass TestXxHash64\n        extends AbstractTestXxHash64\n{\n    @Override\n    protected XxHash64Hasher createHasher()\n    {\n        return XxHash64Hasher.create();\n    }\n\n    @Override\n    protected XxHash64Hasher createHasher(long seed)\n    {\n        return XxHash64Hasher.create(seed);\n    }\n\n    @Override\n    protected long hash(byte[] input)\n    {\n        return XxHash64Hasher.hash(input);\n    }\n\n    @Override\n    protected long hash(byte[] input, long seed)\n    {\n        return XxHash64Hasher.hash(input, seed);\n    }\n\n    @Override\n    protected long hash(byte[] input, int offset, int length)\n    {\n        return XxHash64Hasher.hash(input, offset, length);\n    }\n\n    @Override\n    protected long hash(MemorySegment input)\n    {\n        return XxHash64Hasher.hash(input);\n    }\n\n    @Override\n    protected long hash(long value)\n    {\n        return XxHash64Hasher.hash(value);\n    }\n\n    @Override\n    protected long hash(long value, long seed)\n    {\n        return XxHash64Hasher.hash(value, seed);\n    }\n\n    // ========== Java vs Native consistency tests ==========\n\n    @Test\n    void testJavaAndNativeProduceSameOneShot()\n    {\n        byte[] data = createSanityBuffer(1024);\n        long javaHash = XxHash64JavaHasher.hash(data, 0, data.length, 0);\n\n        if (XxHash64NativeHasher.isEnabled()) {\n            long nativeHash = XxHash64NativeHasher.hash(data, 0, data.length, 0);\n            assertThat(nativeHash).isEqualTo(javaHash);\n        }\n    }\n\n    @Test\n    void testJavaAndNativeProduceSameStreaming()\n    {\n        byte[] data = createSanityBuffer(1024);\n\n        try (XxHash64JavaHasher javaHasher = new XxHash64JavaHasher(0)) {\n            javaHasher.update(data);\n            long javaHash = javaHasher.digest();\n\n            if (XxHash64NativeHasher.isEnabled()) {\n                try (XxHash64NativeHasher nativeHasher = new XxHash64NativeHasher(0)) {\n                    nativeHasher.update(data);\n                    long nativeHash = nativeHasher.digest();\n                    assertThat(nativeHash).isEqualTo(javaHash);\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/xxhash/TestXxHash64Java.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.xxhash;\n\nimport java.lang.foreign.MemorySegment;\n\nclass TestXxHash64Java\n        extends AbstractTestXxHash64\n{\n    @Override\n    protected XxHash64Hasher createHasher()\n    {\n        return new XxHash64JavaHasher(0);\n    }\n\n    @Override\n    protected XxHash64Hasher createHasher(long seed)\n    {\n        return new XxHash64JavaHasher(seed);\n    }\n\n    @Override\n    protected long hash(byte[] input)\n    {\n        return XxHash64JavaHasher.hash(input, 0, input.length, 0);\n    }\n\n    @Override\n    protected long hash(byte[] input, long seed)\n    {\n        return XxHash64JavaHasher.hash(input, 0, input.length, seed);\n    }\n\n    @Override\n    protected long hash(byte[] input, int offset, int length)\n    {\n        return XxHash64JavaHasher.hash(input, offset, length, 0);\n    }\n\n    @Override\n    protected long hash(MemorySegment input)\n    {\n        return XxHash64JavaHasher.hash(input, 0);\n    }\n\n    @Override\n    protected long hash(long value)\n    {\n        return XxHash64JavaHasher.hash(value, 0);\n    }\n\n    @Override\n    protected long hash(long value, long seed)\n    {\n        return XxHash64JavaHasher.hash(value, seed);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/AbstractTestZstd.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.TestingData;\nimport io.airlift.compress.v3.benchmark.DataSet;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.util.Arrays;\n\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\npublic abstract class AbstractTestZstd\n        extends AbstractTestCompression\n{\n    @Override\n    protected abstract ZstdCompressor getCompressor();\n\n    @Override\n    protected abstract ZstdDecompressor getDecompressor();\n\n    // Ideally, this should be covered by super.testDecompressWithOutputPadding(...), but the data written by the native\n    // compressor doesn't include checksums, so it's not a comprehensive test. The dataset for this test has a checksum.\n    @Test\n    void testDecompressWithOutputPaddingAndChecksum()\n            throws IOException\n    {\n        int padding = 1021;\n\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/with-checksum.zst\"));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/zstd/with-checksum\"));\n\n        byte[] output = new byte[uncompressed.length + padding * 2]; // pre + post padding\n        int decompressedSize = getDecompressor().decompress(compressed, 0, compressed.length, output, padding, output.length - padding);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressed.length, output, padding, decompressedSize);\n    }\n\n    @Test\n    void testConcatenatedFrames()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames.zst\"));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames\"));\n\n        byte[] output = new byte[uncompressed.length];\n        getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressed.length, output, 0, output.length);\n    }\n\n    @Test\n    void testInvalidSequenceOffset()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/offset-before-start.zst\"));\n        byte[] output = new byte[compressed.length * 10];\n\n        assertThatThrownBy(() -> getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length))\n                .hasMessageMatching(\"Input is corrupted.*|Unknown error occurred.*\");\n    }\n\n    @Test\n    void testSmallLiteralsAfterIncompressibleLiterals()\n            throws IOException\n    {\n        // Ensure the compressor doesn't try to reuse a huffman table that was created speculatively for a previous block\n        // which ended up emitting raw literals due to insufficient gain\n        Compressor compressor = getCompressor();\n\n        byte[] original = Resources.toByteArray(Resources.getResource(\"data/zstd/small-literals-after-incompressible-literals\"));\n        int maxCompressLength = compressor.maxCompressedLength(original.length);\n\n        byte[] compressed = new byte[maxCompressLength];\n        int compressedSize = compressor.compress(original, 0, original.length, compressed, 0, compressed.length);\n\n        byte[] decompressed = new byte[original.length];\n        int decompressedSize = getDecompressor().decompress(compressed, 0, compressedSize, decompressed, 0, decompressed.length);\n\n        assertByteArraysEqual(original, 0, original.length, decompressed, 0, decompressedSize);\n    }\n\n    @Test\n    void testLargeRle()\n            throws IOException\n    {\n        // Dataset that produces an RLE block with 3-byte header\n\n        Compressor compressor = getCompressor();\n\n        byte[] original = Resources.toByteArray(Resources.getResource(\"data/zstd/large-rle\"));\n        int maxCompressLength = compressor.maxCompressedLength(original.length);\n\n        byte[] compressed = new byte[maxCompressLength];\n        int compressedSize = compressor.compress(original, 0, original.length, compressed, 0, compressed.length);\n\n        byte[] decompressed = new byte[original.length];\n        int decompressedSize = getDecompressor().decompress(compressed, 0, compressedSize, decompressed, 0, decompressed.length);\n\n        assertByteArraysEqual(original, 0, original.length, decompressed, 0, decompressedSize);\n    }\n\n    @Test\n    void testIncompressibleData()\n            throws IOException\n    {\n        // Incompressible data that would require more than maxCompressedLength(...) to store\n\n        Compressor compressor = getCompressor();\n\n        byte[] original = Resources.toByteArray(Resources.getResource(\"data/zstd/incompressible\"));\n        int maxCompressLength = compressor.maxCompressedLength(original.length);\n\n        byte[] compressed = new byte[maxCompressLength];\n        int compressedSize = compressor.compress(original, 0, original.length, compressed, 0, compressed.length);\n\n        byte[] decompressed = new byte[original.length];\n        int decompressedSize = getDecompressor().decompress(compressed, 0, compressedSize, decompressed, 0, decompressed.length);\n\n        assertByteArraysEqual(original, 0, original.length, decompressed, 0, decompressedSize);\n    }\n\n    @Test\n    void testMaxCompressedSize()\n    {\n        assertThat(getCompressor().maxCompressedLength(0)).isEqualTo(64);\n        assertThat(getCompressor().maxCompressedLength(64 * 1024)).isEqualTo(65_824);\n        assertThat(getCompressor().maxCompressedLength(128 * 1024)).isEqualTo(131_584);\n        assertThat(getCompressor().maxCompressedLength(128 * 1024 + 1)).isEqualTo(131_585);\n    }\n\n    // test over data sets, should the result depend on input size or its compressibility\n    @Test\n    void testGetDecompressedSize()\n    {\n        for (DataSet dataSet : TestingData.DATA_SETS) {\n            testGetDecompressedSize(dataSet);\n        }\n    }\n\n    private void testGetDecompressedSize(DataSet dataSet)\n    {\n        Compressor compressor = getCompressor();\n        byte[] originalUncompressed = dataSet.getUncompressed();\n        byte[] compressed = new byte[compressor.maxCompressedLength(originalUncompressed.length)];\n\n        int compressedLength = compressor.compress(originalUncompressed, 0, originalUncompressed.length, compressed, 0, compressed.length);\n\n        assertThat(getDecompressor().getDecompressedSize(compressed, 0, compressedLength)).isEqualTo(originalUncompressed.length);\n\n        int padding = 10;\n        byte[] compressedWithPadding = new byte[compressedLength + padding];\n        Arrays.fill(compressedWithPadding, (byte) 42);\n        System.arraycopy(compressed, 0, compressedWithPadding, padding, compressedLength);\n        assertThat(getDecompressor().getDecompressedSize(compressedWithPadding, padding, compressedLength)).isEqualTo(originalUncompressed.length);\n    }\n\n    @Test\n    void testVerifyMagicInAllFrames()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/bad-second-frame.zst\"));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames\"));\n        byte[] output = new byte[uncompressed.length];\n        assertThatThrownBy(() -> getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length))\n                .hasMessageMatching(\"Invalid magic prefix.*|Unknown error occurred.*\");\n    }\n\n    @Test\n    void testDecompressIsMissingData()\n    {\n        byte[] input = new byte[] {40, -75, 47, -3, 32, 0, 1, 0};\n        byte[] output = new byte[1024];\n        assertThatThrownBy(() -> getDecompressor().decompress(input, 0, input.length, output, 0, output.length))\n                .hasMessageMatching(\".*Not enough input bytes.*|Unknown error occurred .*\");\n    }\n\n    @Test\n    void testBadHuffmanData()\n            throws IOException\n    {\n        ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n        // Magic\n        buffer.write(new byte[] {\n                (byte) 0b0010_1000,\n                (byte) 0b1011_0101,\n                (byte) 0b0010_1111,\n                (byte) 0b1111_1101,\n        });\n        // Frame header\n        buffer.write(0);\n        buffer.write(0);\n        // Block header COMPRESSED_BLOCK\n        buffer.write(new byte[] {\n                (byte) 0b1111_0100,\n                (byte) 0b0000_0000,\n                (byte) 0b0000_0000,\n        });\n        // Literals header\n        buffer.write(new byte[] {\n                // literalsBlockType COMPRESSED_LITERALS_BLOCK\n                // + literals type\n                0b0000_1010,\n                // ... header remainder\n                0b0000_0000,\n                // compressedSize\n                0b0011_1100,\n                0b0000_0000,\n        });\n        // Huffman inputSize\n        buffer.write(128);\n        // weight value\n        buffer.write(0b0001_0000);\n        // Bad start values\n        buffer.write(new byte[] {(byte) 255, (byte) 255});\n        buffer.write(new byte[] {(byte) 255, (byte) 255});\n        buffer.write(new byte[] {(byte) 255, (byte) 255});\n\n        buffer.write(new byte[10]);\n\n        byte[] data = buffer.toByteArray();\n\n        assertThatThrownBy(() -> getDecompressor().decompress(data, 0, data.length, new byte[10], 0, 10))\n                .hasMessageMatching(\".*Not enough input bytes.*|Unknown error occurred .*\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nclass TestCompressor\n{\n    @Test\n    void testMagic()\n    {\n        byte[] buffer = new byte[4];\n        int address = ARRAY_BYTE_BASE_OFFSET;\n\n        ZstdFrameCompressor.writeMagic(buffer, address, address + buffer.length);\n        ZstdFrameDecompressor.verifyMagic(buffer, address, address + buffer.length);\n    }\n\n    @Test\n    void testMagicFailsWithSmallBuffer()\n    {\n        byte[] buffer = new byte[3];\n        assertThatThrownBy(() -> ZstdFrameCompressor.writeMagic(buffer, ARRAY_BYTE_BASE_OFFSET, ARRAY_BYTE_BASE_OFFSET + buffer.length))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessageMatching(\".*buffer too small.*\");\n    }\n\n    @Test\n    void testFrameHeaderFailsWithSmallBuffer()\n    {\n        byte[] buffer = new byte[ZstdFrameCompressor.MAX_FRAME_HEADER_SIZE - 1];\n        assertThatThrownBy(() -> ZstdFrameCompressor.writeFrameHeader(buffer, ARRAY_BYTE_BASE_OFFSET, ARRAY_BYTE_BASE_OFFSET + buffer.length, 1000, 1024))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessageMatching(\".*buffer too small.*\");\n    }\n\n    @Test\n    void testFrameHeader()\n    {\n        verifyFrameHeader(1, 1024, new FrameHeader(2, -1, 1, -1, true));\n        verifyFrameHeader(256, 1024, new FrameHeader(3, -1, 256, -1, true));\n\n        verifyFrameHeader(65536 + 256, 1024 + 128, new FrameHeader(6, 1152, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 2, new FrameHeader(6, 1024 + 128 * 2, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 3, new FrameHeader(6, 1024 + 128 * 3, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 4, new FrameHeader(6, 1024 + 128 * 4, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 5, new FrameHeader(6, 1024 + 128 * 5, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 6, new FrameHeader(6, 1024 + 128 * 6, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 7, new FrameHeader(6, 1024 + 128 * 7, 65536 + 256, -1, true));\n        verifyFrameHeader(65536 + 256, 1024 + 128 * 8, new FrameHeader(6, 1024 + 128 * 8, 65536 + 256, -1, true));\n\n        verifyFrameHeader(65536 + 256, 2048, new FrameHeader(6, 2048, 65536 + 256, -1, true));\n\n        verifyFrameHeader(Integer.MAX_VALUE, 1024, new FrameHeader(6, 1024, Integer.MAX_VALUE, -1, true));\n    }\n\n    @Test\n    void testMinimumWindowSize()\n    {\n        byte[] buffer = new byte[ZstdFrameCompressor.MAX_FRAME_HEADER_SIZE];\n        int address = ARRAY_BYTE_BASE_OFFSET;\n\n        assertThatThrownBy(() -> ZstdFrameCompressor.writeFrameHeader(buffer, address, address + buffer.length, 2000, 1023))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessageMatching(\".*Minimum window size is 1024.*\");\n    }\n\n    @Test\n    void testWindowSizePrecision()\n    {\n        byte[] buffer = new byte[ZstdFrameCompressor.MAX_FRAME_HEADER_SIZE];\n        int address = ARRAY_BYTE_BASE_OFFSET;\n\n        assertThatThrownBy(() -> ZstdFrameCompressor.writeFrameHeader(buffer, address, address + buffer.length, 2000, 1025))\n                .isInstanceOf(IllegalArgumentException.class)\n                .hasMessage(\"Window size of magnitude 2^10 must be multiple of 128\");\n    }\n\n    private static void verifyFrameHeader(int inputSize, int windowSize, FrameHeader expected)\n    {\n        byte[] buffer = new byte[ZstdFrameCompressor.MAX_FRAME_HEADER_SIZE];\n        int address = ARRAY_BYTE_BASE_OFFSET;\n\n        int size = ZstdFrameCompressor.writeFrameHeader(buffer, address, address + buffer.length, inputSize, windowSize);\n\n        assertThat(size).isEqualTo(expected.headerSize);\n\n        FrameHeader actual = ZstdFrameDecompressor.readFrameHeader(buffer, address, address + buffer.length);\n        assertThat(actual).isEqualTo(expected);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestUtil.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.collect.ImmutableList;\nimport org.junit.jupiter.api.Test;\n\nimport java.util.List;\n\nimport static io.airlift.compress.v3.zstd.Util.get24BitLittleEndian;\nimport static io.airlift.compress.v3.zstd.Util.put24BitLittleEndian;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\nclass TestUtil\n{\n    private final List<TestData> test24bitIntegers = ImmutableList.<TestData>builder()\n            .add(new TestData(new byte[] {1, 0, 0, 0}, 0, 1))\n            .add(new TestData(new byte[] {12, -83, 0, 0}, 0, 44300))\n            .add(new TestData(new byte[] {0, 0, -128}, 0, 8388608))\n            .add(new TestData(new byte[] {(byte) 0xFF, (byte) 0xFF, (byte) 0xFF}, 0, 16777215))\n            .add(new TestData(new byte[] {63, 25, 72, 0}, 0, 4725055))\n            .add(new TestData(new byte[] {0, 0, 0, 0, 0, 0, 1, 0, 0}, 6, 1))\n            .build();\n\n    @Test\n    void testGet24BitLittleEndian()\n    {\n        for (TestData testData : test24bitIntegers) {\n            testGet24BitLittleEndian(testData);\n        }\n    }\n\n    private static void testGet24BitLittleEndian(TestData testData)\n    {\n        long inputAddress = ARRAY_BYTE_BASE_OFFSET + testData.offset;\n        assertThat(get24BitLittleEndian(testData.bytes, inputAddress)).isEqualTo(testData.value);\n    }\n\n    @Test\n    void testPut24BitLittleEndian()\n    {\n        for (TestData testData : test24bitIntegers) {\n            testPut24BitLittleEndian(testData);\n        }\n    }\n\n    private static void testPut24BitLittleEndian(TestData testData)\n    {\n        Object outputBase = new byte[testData.bytes.length];\n        long outputAddress = ARRAY_BYTE_BASE_OFFSET + testData.offset;\n        put24BitLittleEndian(outputBase, outputAddress, testData.value);\n        assertThat(outputBase).isEqualTo(testData.bytes);\n    }\n\n    private record TestData(byte[] bytes, int offset, int value) {}\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestXxHash64.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport net.jpountz.xxhash.XXHash64;\nimport net.jpountz.xxhash.XXHashFactory;\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\n// forked from https://github.com/airlift/slice\nclass TestXxHash64\n{\n    private static final long PRIME = 2654435761L;\n\n    private final byte[] buffer = new byte[101];\n\n    TestXxHash64()\n    {\n        long value = PRIME;\n        for (int i = 0; i < buffer.length; i++) {\n            buffer[i] = (byte) (value >> 24);\n            value *= value;\n        }\n    }\n\n    @Test\n    void testSanity()\n    {\n        assertHash(0, buffer, 0, 0xEF46DB3751D8E999L);\n\n        assertHash(0, buffer, 1, 0x4FCE394CC88952D8L);\n        assertHash(PRIME, buffer, 1, 0x739840CB819FA723L);\n\n        assertHash(0, buffer, 4, 0x9256E58AA397AEF1L);\n        assertHash(PRIME, buffer, 4, 0x9D5FFDFB928AB4BL);\n\n        assertHash(0, buffer, 8, 0xF74CB1451B32B8CFL);\n        assertHash(PRIME, buffer, 8, 0x9C44B77FBCC302C5L);\n\n        assertHash(0, buffer, 14, 0xCFFA8DB881BC3A3DL);\n        assertHash(PRIME, buffer, 14, 0x5B9611585EFCC9CBL);\n\n        assertHash(0, buffer, 32, 0xAF5753D39159EDEEL);\n        assertHash(PRIME, buffer, 32, 0xDCAB9233B8CA7B0FL);\n\n        assertHash(0, buffer, buffer.length, 0x0EAB543384F878ADL);\n        assertHash(PRIME, buffer, buffer.length, 0xCAA65939306F1E21L);\n    }\n\n    @Test\n    void testMultipleLengths()\n    {\n        XXHash64 jpountz = XXHashFactory.fastestInstance().hash64();\n        for (int i = 0; i < 20_000; i++) {\n            byte[] data = new byte[i];\n            long expected = jpountz.hash(data, 0, data.length, 0);\n            assertHash(0, data, data.length, expected);\n        }\n    }\n\n    private static void assertHash(long seed, byte[] data, int length, long expected)\n    {\n        assertThat(hash(seed, data, length)).isEqualTo(expected);\n    }\n\n    private static long hash(long seed, byte[] data, int length)\n    {\n        return XxHash64.hash(seed, data, ARRAY_BYTE_BASE_OFFSET, length);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstd.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\n\npublic class TestZstd\n        extends AbstractTestZstd\n{\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdJavaCompressor();\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdJavaDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJniCompressor(3);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJniDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdCodec.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.IOException;\n\nclass TestZstdCodec\n        extends AbstractTestCompression\n{\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new ZstdCodec(), new ZstdJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressor(new ZstdCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        // Hadoop format is the standard Zstd framed format\n        return new ZstdJniCompressor(3);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        // Hadoop format is the standard Zstd framed format\n        return new ZstdJniDecompressor();\n    }\n\n    @Test\n    void testConcatenatedFrames()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames.zst\"));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames\"));\n\n        byte[] output = new byte[uncompressed.length];\n        getVerifyDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressed.length, output, 0, output.length);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdCodecByteAtATime.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.AbstractTestCompression;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.HadoopCodecCompressor;\nimport io.airlift.compress.v3.HadoopCodecDecompressorByteAtATime;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.io.compress.CompressionCodec;\nimport org.junit.jupiter.api.Test;\n\nimport java.io.IOException;\n\nclass TestZstdCodecByteAtATime\n        extends AbstractTestCompression\n{\n    private final CompressionCodec verifyCodec;\n\n    TestZstdCodecByteAtATime()\n    {\n        org.apache.hadoop.io.compress.ZStandardCodec codec = new org.apache.hadoop.io.compress.ZStandardCodec();\n        codec.setConf(new Configuration());\n        this.verifyCodec = codec;\n    }\n\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected Compressor getCompressor()\n    {\n        return new HadoopCodecCompressor(new ZstdCodec(), new ZstdJavaCompressor());\n    }\n\n    @Override\n    protected Decompressor getDecompressor()\n    {\n        return new HadoopCodecDecompressorByteAtATime(new ZstdCodec());\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        // Hadoop format is the standard Zstd framed format\n        return new ZstdJniCompressor(3);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        // Hadoop format is the standard Zstd framed format\n        return new ZstdJniDecompressor();\n    }\n\n    @Test\n    void testConcatenatedFrames()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames.zst\"));\n        byte[] uncompressed = Resources.toByteArray(Resources.getResource(\"data/zstd/multiple-frames\"));\n\n        byte[] output = new byte[uncompressed.length];\n        getVerifyDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length);\n\n        assertByteArraysEqual(uncompressed, 0, uncompressed.length, output, 0, output.length);\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdFast.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\n\npublic class TestZstdFast\n        extends AbstractTestZstd\n{\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdNativeCompressor(-7);\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdNativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJniCompressor(-7);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJniDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdHigh.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\n\npublic class TestZstdHigh\n        extends AbstractTestZstd\n{\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdNativeCompressor(8);\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdNativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJniCompressor(8);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJniDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdNative.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniCompressor;\nimport io.airlift.compress.v3.thirdparty.ZstdJniDecompressor;\n\npublic class TestZstdNative\n        extends AbstractTestZstd\n{\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdNativeCompressor();\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdNativeDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJniCompressor(3);\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJniDecompressor();\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdPartial.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.io.IOException;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestZstdPartial\n        extends AbstractTestZstd\n{\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdJavaCompressor();\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdPartialDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJavaDecompressor();\n    }\n\n    @Override\n    public void testInvalidSequenceOffset()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/offset-before-start.zst\"));\n        byte[] output = new byte[compressed.length * 10];\n\n        assertThatThrownBy(() -> getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length))\n                .isInstanceOf(MalformedInputException.class)\n                .hasMessageStartingWith(\"Input is corrupted: offset=\");\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/TestZstdStream.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport com.google.common.io.Resources;\nimport io.airlift.compress.v3.Compressor;\nimport io.airlift.compress.v3.Decompressor;\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.io.IOException;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\nclass TestZstdStream\n        extends TestZstd\n{\n    @Override\n    protected boolean isMemorySegmentSupported()\n    {\n        return false;\n    }\n\n    @Override\n    protected ZstdCompressor getCompressor()\n    {\n        return new ZstdStreamCompressor();\n    }\n\n    @Override\n    protected ZstdDecompressor getDecompressor()\n    {\n        return new ZstdStreamDecompressor();\n    }\n\n    @Override\n    protected Compressor getVerifyCompressor()\n    {\n        return new ZstdJavaCompressor();\n    }\n\n    @Override\n    protected Decompressor getVerifyDecompressor()\n    {\n        return new ZstdJavaDecompressor();\n    }\n\n    @Override\n    public void testInvalidSequenceOffset()\n            throws IOException\n    {\n        byte[] compressed = Resources.toByteArray(Resources.getResource(\"data/zstd/offset-before-start.zst\"));\n        byte[] output = new byte[compressed.length * 10];\n\n        assertThatThrownBy(() -> getDecompressor().decompress(compressed, 0, compressed.length, output, 0, output.length))\n                .isInstanceOf(MalformedInputException.class)\n                .hasMessageStartingWith(\"Input is corrupted: offset=\");\n    }\n\n    @Override\n    public void testGetDecompressedSize()\n    {\n        // streaming does not publish the size\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/ZstdPartialDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.String.format;\nimport static java.util.Arrays.copyOfRange;\nimport static java.util.Objects.requireNonNull;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdPartialDecompressor\n        implements ZstdDecompressor\n{\n    private final ZstdIncrementalFrameDecompressor decompressor = new ZstdIncrementalFrameDecompressor();\n\n    @Override\n    public int decompress(final byte[] input, final int inputOffset, final int inputLength, final byte[] output, final int outputOffset, final int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        assertThat(decompressor.getInputRequired()).isEqualTo(0);\n        assertThat(decompressor.getRequestedOutputSize()).isEqualTo(0);\n        assertThat(decompressor.getInputConsumed()).isEqualTo(0);\n        assertThat(decompressor.getOutputBufferUsed()).isEqualTo(0);\n\n        int inputPosition = inputOffset;\n        final int inputLimit = inputOffset + inputLength;\n        int outputPosition = outputOffset;\n        final int outputLimit = outputOffset + maxOutputLength;\n\n        while (inputPosition < inputLimit || decompressor.getRequestedOutputSize() > 0) {\n            if (decompressor.getInputRequired() > inputLimit - inputPosition) {\n                // the non-partial tests verify the exact exception type, so just throw that exception\n                throw new MalformedInputException(inputPosition, \"Not enough input bytes\");\n            }\n            if (outputPosition + decompressor.getRequestedOutputSize() > outputLimit) {\n                throw new IllegalArgumentException(\"Output buffer too small\");\n            }\n\n            // for testing, we always send the minimum number of requested bytes\n            byte[] inputChunk = copyOfRange(input, inputPosition, inputPosition + decompressor.getInputRequired());\n\n            // for testing, we use two reads for larger buffers\n            byte[] outputBuffer = new byte[0];\n            if (decompressor.getRequestedOutputSize() > 0) {\n                outputBuffer = new byte[decompressor.getRequestedOutputSize() > 500 ? decompressor.getRequestedOutputSize() - 457 : decompressor.getRequestedOutputSize()];\n            }\n\n            decompressor.partialDecompress(\n                    inputChunk,\n                    ARRAY_BYTE_BASE_OFFSET,\n                    inputChunk.length + ARRAY_BYTE_BASE_OFFSET,\n                    outputBuffer,\n                    0,\n                    outputBuffer.length);\n\n            // copy output chunk to output\n            int outputBufferUsed = decompressor.getOutputBufferUsed();\n            if (outputBufferUsed > 0) {\n                assertThat(outputPosition + outputBufferUsed <= outputLimit).isTrue();\n                System.arraycopy(outputBuffer, 0, output, outputPosition, outputBufferUsed);\n                outputPosition += outputBufferUsed;\n            }\n\n            assertThat(decompressor.getInputConsumed() <= inputChunk.length).isTrue();\n            inputPosition += decompressor.getInputConsumed();\n        }\n        return outputPosition - outputOffset;\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n\n    @Override\n    public long getDecompressedSize(byte[] input, int offset, int length)\n    {\n        int baseAddress = ARRAY_BYTE_BASE_OFFSET + offset;\n        return ZstdFrameDecompressor.getDecompressedSize(input, baseAddress, baseAddress + length);\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/ZstdStreamCompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.MemorySegment;\n\nimport static com.google.common.primitives.Ints.constrainToRange;\nimport static io.airlift.compress.v3.zstd.Constants.MAX_BLOCK_SIZE;\nimport static java.lang.String.format;\nimport static java.util.Objects.requireNonNull;\n\npublic class ZstdStreamCompressor\n        implements ZstdCompressor\n{\n    @Override\n    public int maxCompressedLength(int uncompressedSize)\n    {\n        int result = uncompressedSize + (uncompressedSize >>> 8);\n\n        if (uncompressedSize < MAX_BLOCK_SIZE) {\n            result += (MAX_BLOCK_SIZE - uncompressedSize) >>> 11;\n        }\n\n        return result;\n    }\n\n    @Override\n    public int compress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, int maxOutputLength)\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(maxOutputLength);\n        try (ZstdOutputStream zstdOutputStream = new ZstdOutputStream(byteArrayOutputStream)) {\n            int writtenBytes = 0;\n            while (writtenBytes < inputLength) {\n                // limit write size to max block size, which exercises internal buffer growth and flushing logic\n                int writeSize = constrainToRange(inputLength - writtenBytes, 0, MAX_BLOCK_SIZE);\n                zstdOutputStream.write(input, inputOffset + writtenBytes, writeSize);\n                writtenBytes += writeSize;\n            }\n        }\n        catch (IOException e) {\n            throw new UncheckedIOException(e);\n        }\n        byte[] compressed = byteArrayOutputStream.toByteArray();\n        if (compressed.length > maxOutputLength) {\n            throw new IllegalArgumentException(\"Output buffer too small\");\n        }\n        System.arraycopy(compressed, 0, output, outputOffset, compressed.length);\n        return compressed.length;\n    }\n\n    @Override\n    public int compress(MemorySegment input, MemorySegment output)\n    {\n        throw new UnsupportedOperationException(\"not yet implemented\");\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/java/io/airlift/compress/v3/zstd/ZstdStreamDecompressor.java",
    "content": "/*\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage io.airlift.compress.v3.zstd;\n\nimport io.airlift.compress.v3.MalformedInputException;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.lang.foreign.MemorySegment;\n\nimport static java.lang.String.format;\nimport static java.util.Objects.requireNonNull;\nimport static sun.misc.Unsafe.ARRAY_BYTE_BASE_OFFSET;\n\npublic class ZstdStreamDecompressor\n        implements ZstdDecompressor\n{\n    @Override\n    public int decompress(final byte[] input, final int inputOffset, final int inputLength, final byte[] output, final int outputOffset, final int maxOutputLength)\n            throws MalformedInputException\n    {\n        verifyRange(input, inputOffset, inputLength);\n        verifyRange(output, outputOffset, maxOutputLength);\n\n        ZstdInputStream inputStream = new ZstdInputStream(new ByteArrayInputStream(input, inputOffset, inputLength));\n        try {\n            int readSize = inputStream.read(output, outputOffset, maxOutputLength);\n            if (inputStream.read() != -1) {\n                throw new RuntimeException(\"All input was not consumed\");\n            }\n            return readSize == -1 ? 0 : readSize;\n        }\n        catch (IOException e) {\n            throw new UncheckedIOException(e);\n        }\n    }\n\n    @Override\n    public int decompress(MemorySegment input, MemorySegment output)\n            throws MalformedInputException\n    {\n        throw new UnsupportedOperationException();\n    }\n\n    @Override\n    public long getDecompressedSize(byte[] input, int offset, int length)\n    {\n        int baseAddress = ARRAY_BYTE_BASE_OFFSET + offset;\n        return ZstdFrameDecompressor.getDecompressedSize(input, baseAddress, baseAddress + length);\n    }\n\n    private static void verifyRange(byte[] data, int offset, int length)\n    {\n        requireNonNull(data, \"data is null\");\n        if (offset < 0 || length < 0 || offset + length > data.length) {\n            throw new IllegalArgumentException(format(\"Invalid offset or length (%s, %s) in array of length %s\", offset, length, data.length));\n        }\n    }\n}\n"
  },
  {
    "path": "src/test/resources/data/lzo/test",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n"
  },
  {
    "path": "src/test/resources/data/zstd/large-rle",
    "content": "01234299995678929999101112131429999151617181929999202122232429999252627282929999303132333429999353637383929999404142434429999454647484929999505152535429999555657585929999606162636429999656667686929999707172737429999757677787929999808182838429999858687888929999909192939429999959697989929999100101102103104299991051061071081092999911011111211311429999115116117118119299991201211221231242999912512612712812929999130131132133134299991351361371381392999914014114214314429999145146147148149299991501511521531542999915515615715815929999160161162163164299991651661671681692999917017117217317429999175176177178179299991801811821831842999918518618718818929999190191192193194299991951961971981992999920020120220320429999205206207208209299992102112122132142999921521621721821929999220221222223224299992252262272282292999923023123223323429999235236237238239299992402412422432442999924524624724824929999250251252253254299992552562572582592999926026126226326429999265266267268269299992702712722732742999927527627727827929999280281282283284299992852862872882892999929029129229329429999295296297298299299993003013023033042999930530630730830929999310311312313314299993153163173183192999932032132232332429999325326327328329299993303313323333342999933533633733833929999340341342343344299993453463473483492999935035135235335429999355356357358359299993603613623633642999936536636736836929999370371372373374299993753763773783792999938038138238338429999385386387388389299993903913923933942999939539639739839929999400401402403404299994054064074084092999941041141241341429999415416417418419299994204214224234242999942542642742842929999430431432433434299994354364374384392999944044144244344429999445446447448449299994504514524534542999945545645745845929999460461462463464299994654664674684692999947047147247347429999475476477478479299994804814824834842999948548648748848929999490491492493494299994954964974984992999950050150250350429999505506507508509299995105115125135142999951551651751851929999520521522523524299995255265275285292999953053153253353429999535536537538539299995405415425435442999954554654754854929999550551552553554299995555565575585592999956056156256356429999565566567568569299995705715725735742999957557657757857929999580581582583584299995855865875885892999959059159259359429999595596597598599299996006016026036042999960560660760860929999610611612613614299996156166176186192999962062162262362429999625626627628629299996306316326336342999963563663763863929999640641642643644299996456466476486492999965065165265365429999655656657658659299996606616626636642999966566666766866929999670671672673674299996756766776786792999968068168268368429999685686687688689299996906916926936942999969569669769869929999700701702703704299997057067077087092999971071171271371429999715716717718719299997207217227237242999972572672772872929999730731732733734299997357367377387392999974074174274374429999745746747748749299997507517527537542999975575675775875929999760761762763764299997657667677687692999977077177277377429999775776777778779299997807817827837842999978578678778878929999790791792793794299997957967977987992999980080180280380429999805806807808809299998108118128138142999981581681781881929999820821822823824299998258268278288292999983083183283383429999835836837838839299998408418428438442999984584684784884929999850851852853854299998558568578588592999986086186286386429999865866867868869299998708718728738742999987587687787887929999880881882883884299998858868878888892999989089189289389429999895896897898899299999009019029039042999990590690790890929999910911912913914299999159169179189192999992092192292392429999925926927928929299999309319329339342999993593693793893929999940941942943944299999459469479489492999995095195295395429999955956957958959299999609619629639642999996596696796896929999970971972973974299999759769779789792999998098198298398429999985986987988989299999909919929939942999999599699799899929999100010011002100310042999910051006100710081009299991010101110121013101429999101510161017101810192999910201021102210231024299991025102610271028102929999103010311032103310342999910351036103710381039299991040104110421043104429999104510461047104810492999910501051105210531054299991055105610571058105929999106010611062106310642999910651066106710681069299991070107110721073107429999107510761077107810792999910801081108210831084299991085108610871088108929999109010911092109310942999910951096109710981099299991100110111021103110429999110511061107110811092999911101111111211131114299991115111611171118111929999112011211122112311242999911251126112711281129299991130113111321133113429999113511361137113811392999911401141114211431144299991145114611471148114929999115011511152115311542999911551156115711581159299991160116111621163116429999116511661167116811692999911701171117211731174299991175117611771178117929999118011811182118311842999911851186118711881189299991190119111921193119429999119511961197119811992999912001201120212031204299991205120612071208120929999121012111212121312142999912151216121712181219299991220122112221223122429999122512261227122812292999912301231123212331234299991235123612371238123929999124012411242124312442999912451246124712481249299991250125112521253125429999125512561257125812592999912601261126212631264299991265126612671268126929999127012711272127312742999912751276127712781279299991280128112821283128429999128512861287128812892999912901291129212931294299991295129612971298129929999130013011302130313042999913051306130713081309299991310131113121313131429999131513161317131813192999913201321132213231324299991325132613271328132929999133013311332133313342999913351336133713381339299991340134113421343134429999134513461347134813492999913501351135213531354299991355135613571358135929999136013611362136313642999913651366136713681369299991370137113721373137429999137513761377137813792999913801381138213831384299991385138613871388138929999139013911392139313942999913951396139713981399299991400140114021403140429999140514061407140814092999914101411141214131414299991415141614171418141929999142014211422142314242999914251426142714281429299991430143114321433143429999143514361437143814392999914401441144214431444299991445144614471448144929999145014511452145314542999914551456145714581459299991460146114621463146429999146514661467146814692999914701471147214731474299991475147614771478147929999148014811482148314842999914851486148714881489299991490149114921493149429999149514961497149814992999915001501150215031504299991505150615071508150929999151015111512151315142999915151516151715181519299991520152115221523152429999152515261527152815292999915301531153215331534299991535153615371538153929999154015411542154315442999915451546154715481549299991550155115521553155429999155515561557155815592999915601561156215631564299991565156615671568156929999157015711572157315742999915751576157715781579299991580158115821583158429999158515861587158815892999915901591159215931594299991595159615971598159929999160016011602160316042999916051606160716081609299991610161116121613161429999161516161617161816192999916201621162216231624299991625162616271628162929999163016311632163316342999916351636163716381639299991640164116421643164429999164516461647164816492999916501651165216531654299991655165616571658165929999166016611662166316642999916651666166716681669299991670167116721673167429999167516761677167816792999916801681168216831684299991685168616871688168929999169016911692169316942999916951696169716981699299991700170117021703170429999170517061707170817092999917101711171217131714299991715171617171718171929999172017211722172317242999917251726172717281729299991730173117321733173429999173517361737173817392999917401741174217431744299991745174617471748174929999175017511752175317542999917551756175717581759299991760176117621763176429999176517661767176817692999917701771177217731774299991775177617771778177929999178017811782178317842999917851786178717881789299991790179117921793179429999179517961797179817992999918001801180218031804299991805180618071808180929999181018111812181318142999918151816181718181819299991820182118221823182429999182518261827182818292999918301831183218331834299991835183618371838183929999184018411842184318442999918451846184718481849299991850185118521853185429999185518561857185818592999918601861186218631864299991865186618671868186929999187018711872187318742999918751876187718781879299991880188118821883188429999188518861887188818892999918901891189218931894299991895189618971898189929999190019011902190319042999919051906190719081909299991910191119121913191429999191519161917191819192999919201921192219231924299991925192619271928192929999193019311932193319342999919351936193719381939299991940194119421943194429999194519461947194819492999919501951195219531954299991955195619571958195929999196019611962196319642999919651966196719681969299991970197119721973197429999197519761977197819792999919801981198219831984299991985198619871988198929999199019911992199319942999919951996199719981999299992000200120022003200429999200520062007200820092999920102011201220132014299992015201620172018201929999202020212022202320242999920252026202720282029299992030203120322033203429999203520362037203820392999920402041204220432044299992045204620472048204929999205020512052205320542999920552056205720582059299992060206120622063206429999206520662067206820692999920702071207220732074299992075207620772078207929999208020812082208320842999920852086208720882089299992090209120922093209429999209520962097209820992999921002101210221032104299992105210621072108210929999211021112112211321142999921152116211721182119299992120212121222123212429999212521262127212821292999921302131213221332134299992135213621372138213929999214021412142214321442999921452146214721482149299992150215121522153215429999215521562157215821592999921602161216221632164299992165216621672168216929999217021712172217321742999921752176217721782179299992180218121822183218429999218521862187218821892999921902191219221932194299992195219621972198219929999220022012202220322042999922052206220722082209299992210221122122213221429999221522162217221822192999922202221222222232224299992225222622272228222929999223022312232223322342999922352236223722382239299992240224122422243224429999224522462247224822492999922502251225222532254299992255225622572258225929999226022612262226322642999922652266226722682269299992270227122722273227429999227522762277227822792999922802281228222832284299992285228622872288228929999229022912292229322942999922952296229722982299299992300230123022303230429999230523062307230823092999923102311231223132314299992315231623172318231929999232023212322232323242999923252326232723282329299992330233123322333233429999233523362337233823392999923402341234223432344299992345234623472348234929999235023512352235323542999923552356235723582359299992360236123622363236429999236523662367236823692999923702371237223732374299992375237623772378237929999238023812382238323842999923852386238723882389299992390239123922393239429999239523962397239823992999924002401240224032404299992405240624072408240929999241024112412241324142999924152416241724182419299992420242124222423242429999242524262427242824292999924302431243224332434299992435243624372438243929999244024412442244324442999924452446244724482449299992450245124522453245429999245524562457245824592999924602461246224632464299992465246624672468246929999247024712472247324742999924752476247724782479299992480248124822483248429999248524862487248824892999924902491249224932494299992495249624972498249929999250025012502250325042999925052506250725082509299992510251125122513251429999251525162517251825192999925202521252225232524299992525252625272528252929999253025312532253325342999925352536253725382539299992540254125422543254429999254525462547254825492999925502551255225532554299992555255625572558255929999256025612562256325642999925652566256725682569299992570257125722573257429999257525762577257825792999925802581258225832584299992585258625872588258929999259025912592259325942999925952596259725982599299992600260126022603260429999260526062607260826092999926102611261226132614299992615261626172618261929999262026212622262326242999926252626262726282629299992630263126322633263429999263526362637263826392999926402641264226432644299992645264626472648264929999265026512652265326542999926552656265726582659299992660266126622663266429999266526662667266826692999926702671267226732674299992675267626772678267929999268026812682268326842999926852686268726882689299992690269126922693269429999269526962697269826992999927002701270227032704299992705270627072708270929999271027112712271327142999927152716271727182719299992720272127222723272429999272527262727272827292999927302731273227332734299992735273627372738273929999274027412742274327442999927452746274727482749299992750275127522753275429999275527562757275827592999927602761276227632764299992765276627672768276929999277027712772277327742999927752776277727782779299992780278127822783278429999278527862787278827892999927902791279227932794299992795279627972798279929999280028012802280328042999928052806280728082809299992810281128122813281429999281528162817281828192999928202821282228232824299992825282628272828282929999283028312832283328342999928352836283728382839299992840284128422843284429999284528462847284828492999928502851285228532854299992855285628572858285929999286028612862286328642999928652866286728682869299992870287128722873287429999287528762877287828792999928802881288228832884299992885288628872888288929999289028912892289328942999928952896289728982899299992900290129022903290429999290529062907290829092999929102911291229132914299992915291629172918291929999292029212922292329242999929252926292729282929299992930293129322933293429999293529362937293829392999929402941294229432944299992945294629472948294929999295029512952295329542999929552956295729582959299992960296129622963296429999296529662967296829692999929702971297229732974299992975297629772978297929999298029812982298329842999929852986298729882989299992990299129922993299429999299529962997299829992999930003001300230033004299993005300630073008300929999301030113012301330142999930153016301730183019299993020302130223023302429999302530263027302830292999930303031303230333034299993035303630373038303929999304030413042304330442999930453046304730483049299993050305130523053305429999305530563057305830592999930603061306230633064299993065306630673068306929999307030713072307330742999930753076307730783079299993080308130823083308429999308530863087308830892999930903091309230933094299993095309630973098309929999310031013102310331042999931053106310731083109299993110311131123113311429999311531163117311831192999931203121312231233124299993125312631273128312929999313031313132313331342999931353136313731383139299993140314131423143314429999314531463147314831492999931503151315231533154299993155315631573158315929999316031613162316331642999931653166316731683169299993170317131723173317429999317531763177317831792999931803181318231833184299993185318631873188318929999319031913192319331942999931953196319731983199299993200320132023203320429999320532063207320832092999932103211321232133214299993215321632173218321929999322032213222322332242999932253226322732283229299993230323132323233323429999323532363237323832392999932403241324232433244299993245324632473248324929999325032513252325332542999932553256325732583259299993260326132623263326429999326532663267326832692999932703271327232733274299993275327632773278327929999328032813282328332842999932853286328732883289299993290329132923293329429999329532963297329832992999933003301330233033304299993305330633073308330929999331033113312331333142999933153316331733183319299993320332133223323332429999332533263327332833292999933303331333233333334299993335333633373338333929999334033413342334333442999933453346334733483349299993350335133523353335429999335533563357335833592999933603361336233633364299993365336633673368336929999337033713372337333742999933753376337733783379299993380338133823383338429999338533863387338833892999933903391339233933394299993395339633973398339929999340034013402340334042999934053406340734083409299993410341134123413341429999341534163417341834192999934203421342234233424299993425342634273428342929999343034313432343334342999934353436343734383439299993440344134423443344429999344534463447344834492999934503451345234533454299993455345634573458345929999346034613462346334642999934653466346734683469299993470347134723473347429999347534763477347834792999934803481348234833484299993485348634873488348929999349034913492349334942999934953496349734983499299993500350135023503350429999350535063507350835092999935103511351235133514299993515351635173518351929999352035213522352335242999935253526352735283529299993530353135323533353429999353535363537353835392999935403541354235433544299993545354635473548354929999355035513552355335542999935553556355735583559299993560356135623563356429999356535663567356835692999935703571357235733574299993575357635773578357929999358035813582358335842999935853586358735883589299993590359135923593359429999359535963597359835992999936003601360236033604299993605360636073608360929999361036113612361336142999936153616361736183619299993620362136223623362429999362536263627362836292999936303631363236333634299993635363636373638363929999364036413642364336442999936453646364736483649299993650365136523653365429999365536563657365836592999936603661366236633664299993665366636673668366929999367036713672367336742999936753676367736783679299993680368136823683368429999368536863687368836892999936903691369236933694299993695369636973698369929999370037013702370337042999937053706370737083709299993710371137123713371429999371537163717371837192999937203721372237233724299993725372637273728372929999373037313732373337342999937353736373737383739299993740374137423743374429999374537463747374837492999937503751375237533754299993755375637573758375929999376037613762376337642999937653766376737683769299993770377137723773377429999377537763777377837792999937803781378237833784299993785378637873788378929999379037913792379337942999937953796379737983799299993800380138023803380429999380538063807380838092999938103811381238133814299993815381638173818381929999382038213822382338242999938253826382738283829299993830383138323833383429999383538363837383838392999938403841384238433844299993845384638473848384929999385038513852385338542999938553856385738583859299993860386138623863386429999386538663867386838692999938703871387238733874299993875387638773878387929999388038813882388338842999938853886388738883889299993890389138923893389429999389538963897389838992999939003901390239033904299993905390639073908390929999391039113912391339142999939153916391739183919299993920392139223923392429999392539263927392839292999939303931393239333934299993935393639373938393929999394039413942394339442999939453946394739483949299993950395139523953395429999395539563957395839592999939603961396239633964299993965396639673968396929999397039713972397339742999939753976397739783979299993980398139823983398429999398539863987398839892999939903991399239933994299993995399639973998399929999400040014002400340042999940054006400740084009299994010401140124013401429999401540164017401840192999940204021402240234024299994025402640274028402929999403040314032403340342999940354036403740384039299994040404140424043404429999404540464047404840492999940504051405240534054299994055405640574058405929999406040614062406340642999940654066406740684069299994070407140724073407429999407540764077407840792999940804081408240834084299994085408640874088408929999409040914092409340942999940954096409740984099299994100410141024103410429999410541064107410841092999941104111411241134114299994115411641174118411929999412041214122412341242999941254126412741284129299994130413141324133413429999413541364137413841392999941404141414241434144299994145414641474148414929999415041514152415341542999941554156415741584159299994160416141624163416429999416541664167416841692999941704171417241734174299994175417641774178417929999418041814182418341842999941854186418741884189299994190419141924193419429999419541964197419841992999942004201420242034204299994205420642074208420929999421042114212421342142999942154216421742184219299994220422142224223422429999422542264227422842292999942304231423242334234299994235423642374238423929999424042414242424342442999942454246424742484249299994250425142524253425429999425542564257425842592999942604261426242634264299994265426642674268426929999427042714272427342742999942754276427742784279299994280428142824283428429999428542864287428842892999942904291429242934294299994295429642974298429929999430043014302430343042999943054306430743084309299994310431143124313431429999431543164317431843192999943204321432243234324299994325432643274328432929999433043314332433343342999943354336433743384339299994340434143424343434429999434543464347434843492999943504351435243534354299994355435643574358435929999436043614362436343642999943654366436743684369299994370437143724373437429999437543764377437843792999943804381438243834384299994385438643874388438929999439043914392439343942999943954396439743984399299994400440144024403440429999440544064407440844092999944104411441244134414299994415441644174418441929999442044214422442344242999944254426442744284429299994430443144324433443429999443544364437443844392999944404441444244434444299994445444644474448444929999445044514452445344542999944554456445744584459299994460446144624463446429999446544664467446844692999944704471447244734474299994475447644774478447929999448044814482448344842999944854486448744884489299994490449144924493449429999449544964497449844992999945004501450245034504299994505450645074508450929999451045114512451345142999945154516451745184519299994520452145224523452429999452545264527452845292999945304531453245334534299994535453645374538453929999454045414542454345442999945454546454745484549299994550455145524553455429999455545564557455845592999945604561456245634564299994565456645674568456929999457045714572457345742999945754576457745784579299994580458145824583458429999458545864587458845892999945904591459245934594299994595459645974598459929999460046014602460346042999946054606460746084609299994610461146124613461429999461546164617461846192999946204621462246234624299994625462646274628462929999463046314632463346342999946354636463746384639299994640464146424643464429999464546464647464846492999946504651465246534654299994655465646574658465929999466046614662466346642999946654666466746684669299994670467146724673467429999467546764677467846792999946804681468246834684299994685468646874688468929999469046914692469346942999946954696469746984699299994700470147024703470429999470547064707470847092999947104711471247134714299994715471647174718471929999472047214722472347242999947254726472747284729299994730473147324733473429999473547364737473847392999947404741474247434744299994745474647474748474929999475047514752475347542999947554756475747584759299994760476147624763476429999476547664767476847692999947704771477247734774299994775477647774778477929999478047814782478347842999947854786478747884789299994790479147924793479429999479547964797479847992999948004801480248034804299994805480648074808480929999481048114812481348142999948154816481748184819299994820482148224823482429999482548264827482848292999948304831483248334834299994835483648374838483929999484048414842484348442999948454846484748484849299994850485148524853485429999485548564857485848592999948604861486248634864299994865486648674868486929999487048714872487348742999948754876487748784879299994880488148824883488429999488548864887488848892999948904891489248934894299994895489648974898489929999490049014902490349042999949054906490749084909299994910491149124913491429999491549164917491849192999949204921492249234924299994925492649274928492929999493049314932493349342999949354936493749384939299994940494149424943494429999494549464947494849492999949504951495249534954299994955495649574958495929999496049614962496349642999949654966496749684969299994970497149724973497429999497549764977497849792999949804981498249834984299994985498649874988498929999499049914992499349942999949954996499749984999299995000500150025003500429999500550065007500850092999950105011501250135014299995015501650175018501929999502050215022502350242999950255026502750285029299995030503150325033503429999503550365037503850392999950405041504250435044299995045504650475048504929999505050515052505350542999950555056505750585059299995060506150625063506429999506550665067506850692999950705071507250735074299995075507650775078507929999508050815082508350842999950855086508750885089299995090509150925093509429999509550965097509850992999951005101510251035104299995105510651075108510929999511051115112511351142999951155116511751185119299995120512151225123512429999512551265127512851292999951305131513251335134299995135513651375138513929999514051415142514351442999951455146514751485149299995150515151525153515429999515551565157515851592999951605161516251635164299995165516651675168516929999517051715172517351742999951755176517751785179299995180518151825183518429999518551865187518851892999951905191519251935194299995195519651975198519929999520052015202520352042999952055206520752085209299995210521152125213521429999521552165217521852192999952205221522252235224299995225522652275228522929999523052315232523352342999952355236523752385239299995240524152425243524429999524552465247524852492999952505251525252535254299995255525652575258525929999526052615262526352642999952655266526752685269299995270527152725273527429999527552765277527852792999952805281528252835284299995285528652875288528929999529052915292529352942999952955296529752985299299995300530153025303530429999530553065307530853092999953105311531253135314299995315531653175318531929999532053215322532353242999953255326532753285329299995330533153325333533429999533553365337533853392999953405341534253435344299995345534653475348534929999535053515352535353542999953555356535753585359299995360536153625363536429999536553665367536853692999953705371537253735374299995375537653775378537929999538053815382538353842999953855386538753885389299995390539153925393539429999539553965397539853992999954005401540254035404299995405540654075408540929999541054115412541354142999954155416541754185419299995420542154225423542429999542554265427542854292999954305431543254335434299995435543654375438543929999544054415442544354442999954455446544754485449299995450545154525453545429999545554565457545854592999954605461546254635464299995465546654675468546929999547054715472547354742999954755476547754785479299995480548154825483548429999548554865487548854892999954905491549254935494299995495549654975498549929999550055015502550355042999955055506550755085509299995510551155125513551429999551555165517551855192999955205521552255235524299995525552655275528552929999553055315532553355342999955355536553755385539299995540554155425543554429999554555465547554855492999955505551555255535554299995555555655575558555929999556055615562556355642999955655566556755685569299995570557155725573557429999557555765577557855792999955805581558255835584299995585558655875588558929999559055915592559355942999955955596559755985599299995600560156025603560429999560556065607560856092999956105611561256135614299995615561656175618561929999562056215622562356242999956255626562756285629299995630563156325633563429999563556365637563856392999956405641564256435644299995645564656475648564929999565056515652565356542999956555656565756585659299995660566156625663566429999566556665667566856692999956705671567256735674299995675567656775678567929999568056815682568356842999956855686568756885689299995690569156925693569429999569556965697569856992999957005701570257035704299995705570657075708570929999571057115712571357142999957155716571757185719299995720572157225723572429999572557265727572857292999957305731573257335734299995735573657375738573929999574057415742574357442999957455746574757485749299995750575157525753575429999575557565757575857592999957605761576257635764299995765576657675768576929999577057715772577357742999957755776577757785779299995780578157825783578429999578557865787578857892999957905791579257935794299995795579657975798579929999580058015802580358042999958055806580758085809299995810581158125813581429999581558165817581858192999958205821582258235824299995825582658275828582929999583058315832583358342999958355836583758385839299995840584158425843584429999584558465847584858492999958505851585258535854299995855585658575858585929999586058615862586358642999958655866586758685869299995870587158725873587429999587558765877587858792999958805881588258835884299995885588658875888588929999589058915892589358942999958955896589758985899299995900590159025903590429999590559065907590859092999959105911591259135914299995915591659175918591929999592059215922592359242999959255926592759285929299995930593159325933593429999593559365937593859392999959405941594259435944299995945594659475948594929999595059515952595359542999959555956595759585959299995960596159625963596429999596559665967596859692999959705971597259735974299995975597659775978597929999598059815982598359842999959855986598759885989299995990599159925993599429999599559965997599859992999960006001600260036004299996005600660076008600929999601060116012601360142999960156016601760186019299996020602160226023602429999602560266027602860292999960306031603260336034299996035603660376038603929999604060416042604360442999960456046604760486049299996050605160526053605429999605560566057605860592999960606061606260636064299996065606660676068606929999607060716072607360742999960756076607760786079299996080608160826083608429999608560866087608860892999960906091609260936094299996095609660976098609929999610061016102610361042999961056106610761086109299996110611161126113611429999611561166117611861192999961206121612261236124299996125612661276128612929999613061316132613361342999961356136613761386139299996140614161426143614429999614561466147614861492999961506151615261536154299996155615661576158615929999616061616162616361642999961656166616761686169299996170617161726173617429999617561766177617861792999961806181618261836184299996185618661876188618929999619061916192619361942999961956196619761986199299996200620162026203620429999620562066207620862092999962106211621262136214299996215621662176218621929999622062216222622362242999962256226622762286229299996230623162326233623429999623562366237623862392999962406241624262436244299996245624662476248624929999625062516252625362542999962556256625762586259299996260626162626263626429999626562666267626862692999962706271627262736274299996275627662776278627929999628062816282628362842999962856286628762886289299996290629162926293629429999629562966297629862992999963006301630263036304299996305630663076308630929999631063116312631363142999963156316631763186319299996320632163226323632429999632563266327632863292999963306331633263336334299996335633663376338633929999634063416342634363442999963456346634763486349299996350635163526353635429999635563566357635863592999963606361636263636364299996365636663676368636929999637063716372637363742999963756376637763786379299996380638163826383638429999638563866387638863892999963906391639263936394299996395639663976398639929999640064016402640364042999964056406640764086409299996410641164126413641429999641564166417641864192999964206421642264236424299996425642664276428642929999643064316432643364342999964356436643764386439299996440644164426443644429999644564466447644864492999964506451645264536454299996455645664576458645929999646064616462646364642999964656466646764686469299996470647164726473647429999647564766477647864792999964806481648264836484299996485648664876488648929999649064916492649364942999964956496649764986499299996500650165026503650429999650565066507650865092999965106511651265136514299996515651665176518651929999652065216522652365242999965256526652765286529299996530653165326533653429999653565366537653865392999965406541654265436544299996545654665476548654929999655065516552655365542999965556556655765586559299996560656165626563656429999656565666567656865692999965706571657265736574299996575657665776578657929999658065816582658365842999965856586658765886589299996590659165926593659429999659565966597659865992999966006601660266036604299996605660666076608660929999661066116612661366142999966156616661766186619299996620662166226623662429999662566266627662866292999966306631663266336634299996635663666376638663929999664066416642664366442999966456646664766486649299996650665166526653665429999665566566657665866592999966606661666266636664299996665666666676668666929999667066716672667366742999966756676667766786679299996680668166826683668429999668566866687668866892999966906691669266936694299996695669666976698669929999670067016702670367042999967056706670767086709299996710671167126713671429999671567166717671867192999967206721672267236724299996725672667276728672929999673067316732673367342999967356736673767386739299996740674167426743674429999674567466747674867492999967506751675267536754299996755675667576758675929999676067616762676367642999967656766676767686769299996770677167726773677429999677567766777677867792999967806781678267836784299996785678667876788678929999679067916792679367942999967956796679767986799299996800680168026803680429999680568066807680868092999968106811681268136814299996815681668176818681929999682068216822682368242999968256826682768286829299996830683168326833683429999683568366837683868392999968406841684268436844299996845684668476848684929999685068516852685368542999968556856685768586859299996860686168626863686429999686568666867686868692999968706871687268736874299996875687668776878687929999688068816882688368842999968856886688768886889299996890689168926893689429999689568966897689868992999969006901690269036904299996905690669076908690929999691069116912691369142999969156916691769186919299996920692169226923692429999692569266927692869292999969306931693269336934299996935693669376938693929999694069416942694369442999969456946694769486949299996950695169526953695429999695569566957695869592999969606961696269636964299996965696669676968696929999697069716972697369742999969756976697769786979299996980698169826983698429999698569866987698869892999969906991699269936994299996995699669976998699929999700070017002700370042999970057006700770087009299997010701170127013701429999701570167017701870192999970207021702270237024299997025702670277028702929999703070317032703370342999970357036703770387039299997040704170427043704429999704570467047704870492999970507051705270537054299997055705670577058705929999706070617062706370642999970657066706770687069299997070707170727073707429999707570767077707870792999970807081708270837084299997085708670877088708929999709070917092709370942999970957096709770987099299997100710171027103710429999710571067107710871092999971107111711271137114299997115711671177118711929999712071217122712371242999971257126712771287129299997130713171327133713429999713571367137713871392999971407141714271437144299997145714671477148714929999715071517152715371542999971557156715771587159299997160716171627163716429999716571667167716871692999971707171717271737174299997175717671777178717929999718071817182718371842999971857186718771887189299997190719171927193719429999719571967197719871992999972007201720272037204299997205720672077208720929999721072117212721372142999972157216721772187219299997220722172227223722429999722572267227722872292999972307231723272337234299997235723672377238723929999724072417242724372442999972457246724772487249299997250725172527253725429999725572567257725872592999972607261726272637264299997265726672677268726929999727072717272727372742999972757276727772787279299997280728172827283728429999728572867287728872892999972907291729272937294299997295729672977298729929999730073017302730373042999973057306730773087309299997310731173127313731429999731573167317731873192999973207321732273237324299997325732673277328732929999733073317332733373342999973357336733773387339299997340734173427343734429999734573467347734873492999973507351735273537354299997355735673577358735929999736073617362736373642999973657366736773687369299997370737173727373737429999737573767377737873792999973807381738273837384299997385738673877388738929999739073917392739373942999973957396739773987399299997400740174027403740429999740574067407740874092999974107411741274137414299997415741674177418741929999742074217422742374242999974257426742774287429299997430743174327433743429999743574367437743874392999974407441744274437444299997445744674477448744929999745074517452745374542999974557456745774587459299997460746174627463746429999746574667467746874692999974707471747274737474299997475747674777478747929999748074817482748374842999974857486748774887489299997490749174927493749429999749574967497749874992999975007501750275037504299997505750675077508750929999751075117512751375142999975157516751775187519299997520752175227523752429999752575267527752875292999975307531753275337534299997535753675377538753929999754075417542754375442999975457546754775487549299997550755175527553755429999755575567557755875592999975607561756275637564299997565756675677568756929999757075717572757375742999975757576757775787579299997580758175827583758429999758575867587758875892999975907591759275937594299997595759675977598759929999760076017602760376042999976057606760776087609299997610761176127613761429999761576167617761876192999976207621762276237624299997625762676277628762929999763076317632763376342999976357636763776387639299997640764176427643764429999764576467647764876492999976507651765276537654299997655765676577658765929999766076617662766376642999976657666766776687669299997670767176727673767429999767576767677767876792999976807681768276837684299997685768676877688768929999769076917692769376942999976957696769776987699299997700770177027703770429999770577067707770877092999977107711771277137714299997715771677177718771929999772077217722772377242999977257726772777287729299997730773177327733773429999773577367737773877392999977407741774277437744299997745774677477748774929999775077517752775377542999977557756775777587759299997760776177627763776429999776577667767776877692999977707771777277737774299997775777677777778777929999778077817782778377842999977857786778777887789299997790779177927793779429999779577967797779877992999978007801780278037804299997805780678077808780929999781078117812781378142999978157816781778187819299997820782178227823782429999782578267827782878292999978307831783278337834299997835783678377838783929999784078417842784378442999978457846784778487849299997850785178527853785429999785578567857785878592999978607861786278637864299997865786678677868786929999787078717872787378742999978757876787778787879299997880788178827883788429999788578867887788878892999978907891789278937894299997895789678977898789929999790079017902790379042999979057906790779087909299997910791179127913791429999791579167917791879192999979207921792279237924299997925792679277928792929999793079317932793379342999979357936793779387939299997940794179427943794429999794579467947794879492999979507951795279537954299997955795679577958795929999796079617962796379642999979657966796779687969299997970797179727973797429999797579767977797879792999979807981798279837984299997985798679877988798929999799079917992799379942999979957996799779987999299998000800180028003800429999800580068007800880092999980108011801280138014299998015801680178018801929999802080218022802380242999980258026802780288029299998030803180328033803429999803580368037803880392999980408041804280438044299998045804680478048804929999805080518052805380542999980558056805780588059299998060806180628063806429999806580668067806880692999980708071807280738074299998075807680778078807929999808080818082808380842999980858086808780888089299998090809180928093809429999809580968097809880992999981008101810281038104299998105810681078108810929999811081118112811381142999981158116811781188119299998120812181228123812429999812581268127812881292999981308131813281338134299998135813681378138813929999814081418142814381442999981458146814781488149299998150815181528153815429999815581568157815881592999981608161816281638164299998165816681678168816929999817081718172817381742999981758176817781788179299998180818181828183818429999818581868187818881892999981908191819281938194299998195819681978198819929999820082018202820382042999982058206820782088209299998210821182128213821429999821582168217821882192999982208221822282238224299998225822682278228822929999823082318232823382342999982358236823782388239299998240824182428243824429999824582468247824882492999982508251825282538254299998255825682578258825929999826082618262826382642999982658266826782688269299998270827182728273827429999827582768277827882792999982808281828282838284299998285828682878288828929999829082918292829382942999982958296829782988299299998300830183028303830429999830583068307830883092999983108311831283138314299998315831683178318831929999832083218322832383242999983258326832783288329299998330833183328333833429999833583368337833883392999983408341834283438344299998345834683478348834929999835083518352835383542999983558356835783588359299998360836183628363836429999836583668367836883692999983708371837283738374299998375837683778378837929999838083818382838383842999983858386838783888389299998390839183928393839429999839583968397839883992999984008401840284038404299998405840684078408840929999841084118412841384142999984158416841784188419299998420842184228423842429999842584268427842884292999984308431843284338434299998435843684378438843929999844084418442844384442999984458446844784488449299998450845184528453845429999845584568457845884592999984608461846284638464299998465846684678468846929999847084718472847384742999984758476847784788479299998480848184828483848429999848584868487848884892999984908491849284938494299998495849684978498849929999850085018502850385042999985058506850785088509299998510851185128513851429999851585168517851885192999985208521852285238524299998525852685278528852929999853085318532853385342999985358536853785388539299998540854185428543854429999854585468547854885492999985508551855285538554299998555855685578558855929999856085618562856385642999985658566856785688569299998570857185728573857429999857585768577857885792999985808581858285838584299998585858685878588858929999859085918592859385942999985958596859785988599299998600860186028603860429999860586068607860886092999986108611861286138614299998615861686178618861929999862086218622862386242999986258626862786288629299998630863186328633863429999863586368637863886392999986408641864286438644299998645864686478648864929999865086518652865386542999986558656865786588659299998660866186628663866429999866586668667866886692999986708671867286738674299998675867686778678867929999868086818682868386842999986858686868786888689299998690869186928693869429999869586968697869886992999987008701870287038704299998705870687078708870929999871087118712871387142999987158716871787188719299998720872187228723872429999872587268727872887292999987308731873287338734299998735873687378738873929999874087418742874387442999987458746874787488749299998750875187528753875429999875587568757875887592999987608761876287638764299998765876687678768876929999877087718772877387742999987758776877787788779299998780878187828783878429999878587868787878887892999987908791879287938794299998795879687978798879929999880088018802880388042999988058806880788088809299998810881188128813881429999881588168817881888192999988208821882288238824299998825882688278828882929999883088318832883388342999988358836883788388839299998840884188428843884429999884588468847884888492999988508851885288538854299998855885688578858885929999886088618862886388642999988658866886788688869299998870887188728873887429999887588768877887888792999988808881888288838884299998885888688878888888929999889088918892889388942999988958896889788988899299998900890189028903890429999890589068907890889092999989108911891289138914299998915891689178918891929999892089218922892389242999989258926892789288929299998930893189328933893429999893589368937893889392999989408941894289438944299998945894689478948894929999895089518952895389542999989558956895789588959299998960896189628963896429999896589668967896889692999989708971897289738974299998975897689778978897929999898089818982898389842999989858986898789888989299998990899189928993899429999899589968997899889992999990009001900290039004299999005900690079008900929999901090119012901390142999990159016901790189019299999020902190229023902429999902590269027902890292999990309031903290339034299999035903690379038903929999904090419042904390442999990459046904790489049299999050905190529053905429999905590569057905890592999990609061906290639064299999065906690679068906929999907090719072907390742999990759076907790789079299999080908190829083908429999908590869087908890892999990909091909290939094299999095909690979098909929999910091019102910391042999991059106910791089109299999110911191129113911429999911591169117911891192999991209121912291239124299999125912691279128912929999913091319132913391342999991359136913791389139299999140914191429143914429999914591469147914891492999991509151915291539154299999155915691579158915929999916091619162916391642999991659166916791689169299999170917191729173917429999917591769177917891792999991809181918291839184299999185918691879188918929999919091919192919391942999991959196919791989199299999200920192029203920429999920592069207920892092999992109211921292139214299999215921692179218921929999922092219222922392242999992259226922792289229299999230923192329233923429999923592369237923892392999992409241924292439244299999245924692479248924929999925092519252925392542999992559256925792589259299999260926192629263926429999926592669267926892692999992709271927292739274299999275927692779278927929999928092819282928392842999992859286928792889289299999290929192929293929429999929592969297929892992999993009301930293039304299999305930693079308930929999931093119312931393142999993159316931793189319299999320932193229323932429999932593269327932893292999993309331933293339334299999335933693379338933929999934093419342934393442999993459346934793489349299999350935193529353935429999935593569357935893592999993609361936293639364299999365936693679368936929999937093719372937393742999993759376937793789379299999380938193829383938429999938593869387938893892999993909391939293939394299999395939693979398939929999940094019402940394042999994059406940794089409299999410941194129413941429999941594169417941894192999994209421942294239424299999425942694279428942929999943094319432943394342999994359436943794389439299999440944194429443944429999944594469447944894492999994509451945294539454299999455945694579458945929999946094619462946394642999994659466946794689469299999470947194729473947429999947594769477947894792999994809481948294839484299999485948694879488948929999949094919492949394942999994959496949794989499299999500950195029503950429999950595069507950895092999995109511951295139514299999515951695179518951929999952095219522952395242999995259526952795289529299999530953195329533953429999953595369537953895392999995409541954295439544299999545954695479548954929999955095519552955395542999995559556955795589559299999560956195629563956429999956595669567956895692999995709571957295739574299999575957695779578957929999958095819582958395842999995859586958795889589299999590959195929593959429999959595969597959895992999996009601960296039604299999605960696079608960929999961096119612961396142999996159616961796189619299999620962196229623962429999962596269627962896292999996309631963296339634299999635963696379638963929999964096419642964396442999996459646964796489649299999650965196529653965429999965596569657965896592999996609661966296639664299999665966696679668966929999967096719672967396742999996759676967796789679299999680968196829683968429999968596869687968896892999996909691969296939694299999695969696979698969929999970097019702970397042999997059706970797089709299999710971197129713971429999971597169717971897192999997209721972297239724299999725972697279728972929999973097319732973397342999997359736973797389739299999740974197429743974429999974597469747974897492999997509751975297539754299999755975697579758975929999976097619762976397642999997659766976797689769299999770977197729773977429999977597769777977897792999997809781978297839784299999785978697879788978929999979097919792979397942999997959796979797989799299999800980198029803980429999980598069807980898092999998109811981298139814299999815981698179818981929999982098219822982398242999998259826982798289829299999830983198329833983429999983598369837983898392999998409841984298439844299999845984698479848984929999985098519852985398542999998559856985798589859299999860986198629863986429999986598669867986898692999998709871987298739874299999875987698779878987929999988098819882988398842999998859886988798889889299999890989198929893989429999989598969897989898992999999009901990299039904299999905990699079908990929999991099119912991399142999999159916991799189919299999920992199229923992429999992599269927992899292999999309931993299339934299999935993699379938993929999994099419942994399442999999459946994799489949299999950995199529953995429999995599569957995899592999999609961996299639964299999965996699679968996929999997099719972997399742999999759976997799789979299999980998199829983998429999998599869987998899892999999909991999299939994299999995999699979998999929999100001000110002100031000429999100051000610007100081000929999100101001110012100131001429999100151001610017100181001929999100201002110022100231002429999100251002610027100281002929999100301003110032100331003429999100351003610037100381003929999100401004110042100431004429999100451004610047100481004929999100501005110052100531005429999100551005610057100581005929999100601006110062100631006429999100651006610067100681006929999100701007110072100731007429999100751007610077100781007929999100801008110082100831008429999100851008610087100881008929999100901009110092100931009429999100951009610097100981009929999101001010110102101031010429999101051010610107101081010929999101101011110112101131011429999101151011610117101181011929999101201012110122101231012429999101251012610127101281012929999101301013110132101331013429999101351013610137101381013929999101401014110142101431014429999101451014610147101481014929999101501015110152101531015429999101551015610157101581015929999101601016110162101631016429999101651016610167101681016929999101701017110172101731017429999101751017610177101781017929999101801018110182101831018429999101851018610187101881018929999101901019110192101931019429999101951019610197101981019929999102001020110202102031020429999102051020610207102081020929999102101021110212102131021429999102151021610217102181021929999102201022110222102231022429999102251022610227102281022929999102301023110232102331023429999102351023610237102381023929999102401024110242102431024429999102451024610247102481024929999102501025110252102531025429999102551025610257102581025929999102601026110262102631026429999102651026610267102681026929999102701027110272102731027429999102751027610277102781027929999102801028110282102831028429999102851028610287102881028929999102901029110292102931029429999102951029610297102981029929999103001030110302103031030429999103051030610307103081030929999103101031110312103131031429999103151031610317103181031929999103201032110322103231032429999103251032610327103281032929999103301033110332103331033429999103351033610337103381033929999103401034110342103431034429999103451034610347103481034929999103501035110352103531035429999103551035610357103581035929999103601036110362103631036429999103651036610367103681036929999103701037110372103731037429999103751037610377103781037929999103801038110382103831038429999103851038610387103881038929999103901039110392103931039429999103951039610397103981039929999104001040110402104031040429999104051040610407104081040929999104101041110412104131041429999104151041610417104181041929999104201042110422104231042429999104251042610427104281042929999104301043110432104331043429999104351043610437104381043929999104401044110442104431044429999104451044610447104481044929999104501045110452104531045429999104551045610457104581045929999104601046110462104631046429999104651046610467104681046929999104701047110472104731047429999104751047610477104781047929999104801048110482104831048429999104851048610487104881048929999104901049110492104931049429999104951049610497104981049929999105001050110502105031050429999105051050610507105081050929999105101051110512105131051429999105151051610517105181051929999105201052110522105231052429999105251052610527105281052929999105301053110532105331053429999105351053610537105381053929999105401054110542105431054429999105451054610547105481054929999105501055110552105531055429999105551055610557105581055929999105601056110562105631056429999105651056610567105681056929999105701057110572105731057429999105751057610577105781057929999105801058110582105831058429999105851058610587105881058929999105901059110592105931059429999105951059610597105981059929999106001060110602106031060429999106051060610607106081060929999106101061110612106131061429999106151061610617106181061929999106201062110622106231062429999106251062610627106281062929999106301063110632106331063429999106351063610637106381063929999106401064110642106431064429999106451064610647106481064929999106501065110652106531065429999106551065610657106581065929999106601066110662106631066429999106651066610667106681066929999106701067110672106731067429999106751067610677106781067929999106801068110682106831068429999106851068610687106881068929999106901069110692106931069429999106951069610697106981069929999107001070110702107031070429999107051070610707107081070929999107101071110712107131071429999107151071610717107181071929999107201072110722107231072429999107251072610727107281072929999107301073110732107331073429999107351073610737107381073929999107401074110742107431074429999107451074610747107481074929999107501075110752107531075429999107551075610757107581075929999107601076110762107631076429999107651076610767107681076929999107701077110772107731077429999107751077610777107781077929999107801078110782107831078429999107851078610787107881078929999107901079110792107931079429999107951079610797107981079929999108001080110802108031080429999108051080610807108081080929999108101081110812108131081429999108151081610817108181081929999108201082110822108231082429999108251082610827108281082929999108301083110832108331083429999108351083610837108381083929999108401084110842108431084429999108451084610847108481084929999108501085110852108531085429999108551085610857108581085929999108601086110862108631086429999108651086610867108681086929999108701087110872108731087429999108751087610877108781087929999108801088110882108831088429999108851088610887108881088929999108901089110892108931089429999108951089610897108981089929999109001090110902109031090429999109051090610907109081090929999109101091110912109131091429999109151091610917109181091929999109201092110922109231092429999109251092610927109281092929999109301093110932109331093429999109351093610937109381093929999109401094110942109431094429999109451094610947109481094929999109501095110952109531095429999109551095610957109581095929999109601096110962109631096429999109651096610967109681096929999109701097110972109731097429999109751097610977109781097929999109801098110982109831098429999109851098610987109881098929999109901099110992109931099429999109951099610997109981099929999110001100111002110031100429999110051100611007110081100929999110101101111012110131101429999110151101611017110181101929999110201102111022110231102429999110251102611027110281102929999110301103111032110331103429999110351103611037110381103929999110401104111042110431104429999110451104611047110481104929999110501105111052110531105429999110551105611057110581105929999110601106111062110631106429999110651106611067110681106929999110701107111072110731107429999110751107611077110781107929999110801108111082110831108429999110851108611087110881108929999110901109111092110931109429999110951109611097110981109929999111001110111102111031110429999111051110611107111081110929999111101111111112111131111429999111151111611117111181111929999111201112111122111231112429999111251112611127111281112929999111301113111132111331113429999111351113611137111381113929999111401114111142111431114429999111451114611147111481114929999111501115111152111531115429999111551115611157111581115929999111601116111162111631116429999111651116611167111681116929999111701117111172111731117429999111751117611177111781117929999111801118111182111831118429999111851118611187111881118929999111901119111192111931119429999111951119611197111981119929999112001120111202112031120429999112051120611207112081120929999112101121111212112131121429999112151121611217112181121929999112201122111222112231122429999112251122611227112281122929999112301123111232112331123429999112351123611237112381123929999112401124111242112431124429999112451124611247112481124929999112501125111252112531125429999112551125611257112581125929999112601126111262112631126429999112651126611267112681126929999112701127111272112731127429999112751127611277112781127929999112801128111282112831128429999112851128611287112881128929999112901129111292112931129429999112951129611297112981129929999113001130111302113031130429999113051130611307113081130929999113101131111312113131131429999113151131611317113181131929999113201132111322113231132429999113251132611327113281132929999113301133111332113331133429999113351133611337113381133929999113401134111342113431134429999113451134611347113481134929999113501135111352113531135429999113551135611357113581135929999113601136111362113631136429999113651136611367113681136929999113701137111372113731137429999113751137611377113781137929999113801138111382113831138429999113851138611387113881138929999113901139111392113931139429999113951139611397113981139929999114001140111402114031140429999114051140611407114081140929999114101141111412114131141429999114151141611417114181141929999114201142111422114231142429999114251142611427114281142929999114301143111432114331143429999114351143611437114381143929999114401144111442114431144429999114451144611447114481144929999114501145111452114531145429999114551145611457114581145929999114601146111462114631146429999114651146611467114681146929999114701147111472114731147429999114751147611477114781147929999114801148111482114831148429999114851148611487114881148929999114901149111492114931149429999114951149611497114981149929999115001150111502115031150429999115051150611507115081150929999115101151111512115131151429999115151151611517115181151929999115201152111522115231152429999115251152611527115281152929999115301153111532115331153429999115351153611537115381153929999115401154111542115431154429999115451154611547115481154929999115501155111552115531155429999115551155611557115581155929999115601156111562115631156429999115651156611567115681156929999115701157111572115731157429999115751157611577115781157929999115801158111582115831158429999115851158611587115881158929999115901159111592115931159429999115951159611597115981159929999116001160111602116031160429999116051160611607116081160929999116101161111612116131161429999116151161611617116181161929999116201162111622116231162429999116251162611627116281162929999116301163111632116331163429999116351163611637116381163929999116401164111642116431164429999116451164611647116481164929999116501165111652116531165429999116551165611657116581165929999116601166111662116631166429999116651166611667116681166929999116701167111672116731167429999116751167611677116781167929999116801168111682116831168429999116851168611687116881168929999116901169111692116931169429999116951169611697116981169929999117001170111702117031170429999117051170611707117081170929999117101171111712117131171429999117151171611717117181171929999117201172111722117231172429999117251172611727117281172929999117301173111732117331173429999117351173611737117381173929999117401174111742117431174429999117451174611747117481174929999117501175111752117531175429999117551175611757117581175929999117601176111762117631176429999117651176611767117681176929999117701177111772117731177429999117751177611777117781177929999117801178111782117831178429999117851178611787117881178929999117901179111792117931179429999117951179611797117981179929999118001180111802118031180429999118051180611807118081180929999118101181111812118131181429999118151181611817118181181929999118201182111822118231182429999118251182611827118281182929999118301183111832118331183429999118351183611837118381183929999118401184111842118431184429999118451184611847118481184929999118501185111852118531185429999118551185611857118581185929999118601186111862118631186429999118651186611867118681186929999118701187111872118731187429999118751187611877118781187929999118801188111882118831188429999118851188611887118881188929999118901189111892118931189429999118951189611897118981189929999119001190111902119031190429999119051190611907119081190929999119101191111912119131191429999119151191611917119181191929999119201192111922119231192429999119251192611927119281192929999119301193111932119331193429999119351193611937119381193929999119401194111942119431194429999119451194611947119481194929999119501195111952119531195429999119551195611957119581195929999119601196111962119631196429999119651196611967119681196929999119701197111972119731197429999119751197611977119781197929999119801198111982119831198429999119851198611987119881198929999119901199111992119931199429999119951199611997119981199929999120001200112002120031200429999120051200612007120081200929999120101201112012120131201429999120151201612017120181201929999120201202112022120231202429999120251202612027120281202929999120301203112032120331203429999120351203612037120381203929999120401204112042120431204429999120451204612047120481204929999120501205112052120531205429999120551205612057120581205929999120601206112062120631206429999120651206612067120681206929999120701207112072120731207429999120751207612077120781207929999120801208112082120831208429999120851208612087120881208929999120901209112092120931209429999120951209612097120981209929999121001210112102121031210429999121051210612107121081210929999121101211112112121131211429999121151211612117121181211929999121201212112122121231212429999121251212612127121281212929999121301213112132121331213429999121351213612137121381213929999121401214112142121431214429999121451214612147121481214929999121501215112152121531215429999121551215612157121581215929999121601216112162121631216429999121651216612167121681216929999121701217112172121731217429999121751217612177121781217929999121801218112182121831218429999121851218612187121881218929999121901219112192121931219429999121951219612197121981219929999122001220112202122031220429999122051220612207122081220929999122101221112212122131221429999122151221612217122181221929999122201222112222122231222429999122251222612227122281222929999122301223112232122331223429999122351223612237122381223929999122401224112242122431224429999122451224612247122481224929999122501225112252122531225429999122551225612257122581225929999122601226112262122631226429999122651226612267122681226929999122701227112272122731227429999122751227612277122781227929999122801228112282122831228429999122851228612287122881228929999122901229112292122931229429999122951229612297122981229929999123001230112302123031230429999123051230612307123081230929999123101231112312123131231429999123151231612317123181231929999123201232112322123231232429999123251232612327123281232929999123301233112332123331233429999123351233612337123381233929999123401234112342123431234429999123451234612347123481234929999123501235112352123531235429999123551235612357123581235929999123601236112362123631236429999123651236612367123681236929999123701237112372123731237429999123751237612377123781237929999123801238112382123831238429999123851238612387123881238929999123901239112392123931239429999123951239612397123981239929999124001240112402124031240429999124051240612407124081240929999124101241112412124131241429999124151241612417124181241929999124201242112422124231242429999124251242612427124281242929999124301243112432124331243429999124351243612437124381243929999124401244112442124431244429999124451244612447124481244929999124501245112452124531245429999124551245612457124581245929999124601246112462124631246429999124651246612467124681246929999124701247112472124731247429999124751247612477124781247929999124801248112482124831248429999124851248612487124881248929999124901249112492124931249429999124951249612497124981249929999125001250112502125031250429999125051250612507125081250929999125101251112512125131251429999125151251612517125181251929999125201252112522125231252429999125251252612527125281252929999125301253112532125331253429999125351253612537125381253929999125401254112542125431254429999125451254612547125481254929999125501255112552125531255429999125551255612557125581255929999125601256112562125631256429999125651256612567125681256929999125701257112572125731257429999125751257612577125781257929999125801258112582125831258429999125851258612587125881258929999125901259112592125931259429999125951259612597125981259929999126001260112602126031260429999126051260612607126081260929999126101261112612126131261429999126151261612617126181261929999126201262112622126231262429999126251262612627126281262929999126301263112632126331263429999126351263612637126381263929999126401264112642126431264429999126451264612647126481264929999126501265112652126531265429999126551265612657126581265929999126601266112662126631266429999126651266612667126681266929999126701267112672126731267429999126751267612677126781267929999126801268112682126831268429999126851268612687126881268929999126901269112692126931269429999126951269612697126981269929999127001270112702127031270429999127051270612707127081270929999127101271112712127131271429999127151271612717127181271929999127201272112722127231272429999127251272612727127281272929999127301273112732127331273429999127351273612737127381273929999127401274112742127431274429999127451274612747127481274929999127501275112752127531275429999127551275612757127581275929999127601276112762127631276429999127651276612767127681276929999127701277112772127731277429999127751277612777127781277929999127801278112782127831278429999127851278612787127881278929999127901279112792127931279429999127951279612797127981279929999128001280112802128031280429999128051280612807128081280929999128101281112812128131281429999128151281612817128181281929999128201282112822128231282429999128251282612827128281282929999128301283112832128331283429999128351283612837128381283929999128401284112842128431284429999128451284612847128481284929999128501285112852128531285429999128551285612857128581285929999128601286112862128631286429999128651286612867128681286929999128701287112872128731287429999128751287612877128781287929999128801288112882128831288429999128851288612887128881288929999128901289112892128931289429999128951289612897128981289929999129001290112902129031290429999129051290612907129081290929999129101291112912129131291429999129151291612917129181291929999129201292112922129231292429999129251292612927129281292929999129301293112932129331293429999129351293612937129381293929999129401294112942129431294429999129451294612947129481294929999129501295112952129531295429999129551295612957129581295929999129601296112962129631296429999129651296612967129681296929999129701297112972129731297429999129751297612977129781297929999129801298112982129831298429999129851298612987129881298929999129901299112992129931299429999129951299612997129981299929999130001300113002130031300429999130051300613007130081300929999130101301113012130131301429999130151301613017130181301929999130201302113022130231302429999130251302613027130281302929999130301303113032130331303429999130351303613037130381303929999130401304113042130431304429999130451304613047130481304929999130501305113052130531305429999130551305613057130581305929999130601306113062130631306429999130651306613067130681306929999130701307113072130731307429999130751307613077130781307929999130801308113082130831308429999130851308613087130881308929999130901309113092130931309429999130951309613097130981309929999131001310113102131031310429999131051310613107131081310929999131101311113112131131311429999131151311613117131181311929999131201312113122131231312429999131251312613127131281312929999131301313113132131331313429999131351313613137131381313929999131401314113142131431314429999131451314613147131481314929999131501315113152131531315429999131551315613157131581315929999131601316113162131631316429999131651316613167131681316929999131701317113172131731317429999131751317613177131781317929999131801318113182131831318429999131851318613187131881318929999131901319113192131931319429999131951319613197131981319929999132001320113202132031320429999132051320613207132081320929999132101321113212132131321429999132151321613217132181321929999132201322113222132231322429999132251322613227132281322929999132301323113232132331323429999132351323613237132381323929999132401324113242132431324429999132451324613247132481324929999132501325113252132531325429999132551325613257132581325929999132601326113262132631326429999132651326613267132681326929999132701327113272132731327429999132751327613277132781327929999132801328113282132831328429999132851328613287132881328929999132901329113292132931329429999132951329613297132981329929999133001330113302133031330429999133051330613307133081330929999133101331113312133131331429999133151331613317133181331929999133201332113322133231332429999133251332613327133281332929999133301333113332133331333429999133351333613337133381333929999133401334113342133431334429999133451334613347133481334929999133501335113352133531335429999133551335613357133581335929999133601336113362133631336429999133651336613367133681336929999133701337113372133731337429999133751337613377133781337929999133801338113382133831338429999133851338613387133881338929999133901339113392133931339429999133951339613397133981339929999134001340113402134031340429999134051340613407134081340929999134101341113412134131341429999134151341613417134181341929999134201342113422134231342429999134251342613427134281342929999134301343113432134331343429999134351343613437134381343929999134401344113442134431344429999134451344613447134481344929999134501345113452134531345429999134551345613457134581345929999134601346113462134631346429999134651346613467134681346929999134701347113472134731347429999134751347613477134781347929999134801348113482134831348429999134851348613487134881348929999134901349113492134931349429999134951349613497134981349929999135001350113502135031350429999135051350613507135081350929999135101351113512135131351429999135151351613517135181351929999135201352113522135231352429999135251352613527135281352929999135301353113532135331353429999135351353613537135381353929999135401354113542135431354429999135451354613547135481354929999135501355113552135531355429999135551355613557135581355929999135601356113562135631356429999135651356613567135681356929999135701357113572135731357429999135751357613577135781357929999135801358113582135831358429999135851358613587135881358929999135901359113592135931359429999135951359613597135981359929999136001360113602136031360429999136051360613607136081360929999136101361113612136131361429999136151361613617136181361929999136201362113622136231362429999136251362613627136281362929999136301363113632136331363429999136351363613637136381363929999136401364113642136431364429999136451364613647136481364929999136501365113652136531365429999136551365613657136581365929999136601366113662136631366429999136651366613667136681366929999136701367113672136731367429999136751367613677136781367929999136801368113682136831368429999136851368613687136881368929999136901369113692136931369429999136951369613697136981369929999137001370113702137031370429999137051370613707137081370929999137101371113712137131371429999137151371613717137181371929999137201372113722137231372429999137251372613727137281372929999137301373113732137331373429999137351373613737137381373929999137401374113742137431374429999137451374613747137481374929999137501375113752137531375429999137551375613757137581375929999137601376113762137631376429999137651376613767137681376929999137701377113772137731377429999137751377613777137781377929999137801378113782137831378429999137851378613787137881378929999137901379113792137931379429999137951379613797137981379929999138001380113802138031380429999138051380613807138081380929999138101381113812138131381429999138151381613817138181381929999138201382113822138231382429999138251382613827138281382929999138301383113832138331383429999138351383613837138381383929999138401384113842138431384429999138451384613847138481384929999138501385113852138531385429999138551385613857138581385929999138601386113862138631386429999138651386613867138681386929999138701387113872138731387429999138751387613877138781387929999138801388113882138831388429999138851388613887138881388929999138901389113892138931389429999138951389613897138981389929999139001390113902139031390429999139051390613907139081390929999139101391113912139131391429999139151391613917139181391929999139201392113922139231392429999139251392613927139281392929999139301393113932139331393429999139351393613937139381393929999139401394113942139431394429999139451394613947139481394929999139501395113952139531395429999139551395613957139581395929999139601396113962139631396429999139651396613967139681396929999139701397113972139731397429999139751397613977139781397929999139801398113982139831398429999139851398613987139881398929999139901399113992139931399429999139951399613997139981399929999140001400114002140031400429999140051400614007140081400929999140101401114012140131401429999140151401614017140181401929999140201402114022140231402429999140251402614027140281402929999140301403114032140331403429999140351403614037140381403929999140401404114042140431404429999140451404614047140481404929999140501405114052140531405429999140551405614057140581405929999140601406114062140631406429999140651406614067140681406929999140701407114072140731407429999140751407614077140781407929999140801408114082140831408429999140851408614087140881408929999140901409114092140931409429999140951409614097140981409929999141001410114102141031410429999141051410614107141081410929999141101411114112141131411429999141151411614117141181411929999141201412114122141231412429999141251412614127141281412929999141301413114132141331413429999141351413614137141381413929999141401414114142141431414429999141451414614147141481414929999141501415114152141531415429999141551415614157141581415929999141601416114162141631416429999141651416614167141681416929999141701417114172141731417429999141751417614177141781417929999141801418114182141831418429999141851418614187141881418929999141901419114192141931419429999141951419614197141981419929999142001420114202142031420429999142051420614207142081420929999142101421114212142131421429999142151421614217142181421929999142201422114222142231422429999142251422614227142281422929999142301423114232142331423429999142351423614237142381423929999142401424114242142431424429999142451424614247142481424929999142501425114252142531425429999142551425614257142581425929999142601426114262142631426429999142651426614267142681426929999142701427114272142731427429999142751427614277142781427929999142801428114282142831428429999142851428614287142881428929999142901429114292142931429429999142951429614297142981429929999143001430114302143031430429999143051430614307143081430929999143101431114312143131431429999143151431614317143181431929999143201432114322143231432429999143251432614327143281432929999143301433114332143331433429999143351433614337143381433929999143401434114342143431434429999143451434614347143481434929999143501435114352143531435429999143551435614357143581435929999143601436114362143631436429999143651436614367143681436929999143701437114372143731437429999143751437614377143781437929999143801438114382143831438429999143851438614387143881438929999143901439114392143931439429999143951439614397143981439929999144001440114402144031440429999144051440614407144081440929999144101441114412144131441429999144151441614417144181441929999144201442114422144231442429999144251442614427144281442929999144301443114432144331443429999144351443614437144381443929999144401444114442144431444429999144451444614447144481444929999144501445114452144531445429999144551445614457144581445929999144601446114462144631446429999144651446614467144681446929999144701447114472144731447429999144751447614477144781447929999144801448114482144831448429999144851448614487144881448929999144901449114492144931449429999144951449614497144981449929999145001450114502145031450429999145051450614507145081450929999145101451114512145131451429999145151451614517145181451929999145201452114522145231452429999145251452614527145281452929999145301453114532145331453429999145351453614537145381453929999145401454114542145431454429999145451454614547145481454929999145501455114552145531455429999145551455614557145581455929999145601456114562145631456429999145651456614567145681456929999145701457114572145731457429999145751457614577145781457929999145801458114582145831458429999145851458614587145881458929999145901459114592145931459429999145951459614597145981459929999146001460114602146031460429999146051460614607146081460929999146101461114612146131461429999146151461614617146181461929999146201462114622146231462429999146251462614627146281462929999146301463114632146331463429999146351463614637146381463929999146401464114642146431464429999146451464614647146481464929999146501465114652146531465429999146551465614657146581465929999146601466114662146631466429999146651466614667146681466929999146701467114672146731467429999146751467614677146781467929999146801468114682146831468429999146851468614687146881468929999146901469114692146931469429999146951469614697146981469929999147001470114702147031470429999147051470614707147081470929999147101471114712147131471429999147151471614717147181471929999147201472114722147231472429999147251472614727147281472929999147301473114732147331473429999147351473614737147381473929999147401474114742147431474429999147451474614747147481474929999147501475114752147531475429999147551475614757147581475929999147601476114762147631476429999147651476614767147681476929999147701477114772147731477429999147751477614777147781477929999147801478114782147831478429999147851478614787147881478929999147901479114792147931479429999147951479614797147981479929999148001480114802148031480429999148051480614807148081480929999148101481114812148131481429999148151481614817148181481929999148201482114822148231482429999148251482614827148281482929999148301483114832148331483429999148351483614837148381483929999148401484114842148431484429999148451484614847148481484929999148501485114852148531485429999148551485614857148581485929999148601486114862148631486429999148651486614867148681486929999148701487114872148731487429999148751487614877148781487929999148801488114882148831488429999148851488614887148881488929999148901489114892148931489429999148951489614897148981489929999149001490114902149031490429999149051490614907149081490929999149101491114912149131491429999149151491614917149181491929999149201492114922149231492429999149251492614927149281492929999149301493114932149331493429999149351493614937149381493929999149401494114942149431494429999149451494614947149481494929999149501495114952149531495429999149551495614957149581495929999149601496114962149631496429999149651496614967149681496929999149701497114972149731497429999149751497614977149781497929999149801498114982149831498429999149851498614987149881498929999149901499114992149931499429999149951499614997149981499929999150001500115002150031500429999150051500615007150081500929999150101501115012150131501429999150151501615017150181501929999150201502115022150231502429999150251502615027150281502929999150301503115032150331503429999150351503615037150381503929999150401504115042150431504429999150451504615047150481504929999150501505115052150531505429999150551505615057150581505929999150601506115062150631506429999150651506615067150681506929999150701507115072150731507429999150751507615077150781507929999150801508115082150831508429999150851508615087150881508929999150901509115092150931509429999150951509615097150981509929999151001510115102151031510429999151051510615107151081510929999151101511115112151131511429999151151511615117151181511929999151201512115122151231512429999151251512615127151281512929999151301513115132151331513429999151351513615137151381513929999151401514115142151431514429999151451514615147151481514929999151501515115152151531515429999151551515615157151581515929999151601516115162151631516429999151651516615167151681516929999151701517115172151731517429999151751517615177151781517929999151801518115182151831518429999151851518615187151881518929999151901519115192151931519429999151951519615197151981519929999152001520115202152031520429999152051520615207152081520929999152101521115212152131521429999152151521615217152181521929999152201522115222152231522429999152251522615227152281522929999152301523115232152331523429999152351523615237152381523929999152401524115242152431524429999152451524615247152481524929999152501525115252152531525429999152551525615257152581525929999152601526115262152631526429999152651526615267152681526929999152701527115272152731527429999152751527615277152781527929999152801528115282152831528429999152851528615287152881528929999152901529115292152931529429999152951529615297152981529929999153001530115302153031530429999153051530615307153081530929999153101531115312153131531429999153151531615317153181531929999153201532115322153231532429999153251532615327153281532929999153301533115332153331533429999153351533615337153381533929999153401534115342153431534429999153451534615347153481534929999153501535115352153531535429999153551535615357153581535929999153601536115362153631536429999153651536615367153681536929999153701537115372153731537429999153751537615377153781537929999153801538115382153831538429999153851538615387153881538929999153901539115392153931539429999153951539615397153981539929999154001540115402154031540429999154051540615407154081540929999154101541115412154131541429999154151541615417154181541929999154201542115422154231542429999154251542615427154281542929999154301543115432154331543429999154351543615437154381543929999154401544115442154431544429999154451544615447154481544929999154501545115452154531545429999154551545615457154581545929999154601546115462154631546429999154651546615467154681546929999154701547115472154731547429999154751547615477154781547929999154801548115482154831548429999154851548615487154881548929999154901549115492154931549429999154951549615497154981549929999155001550115502155031550429999155051550615507155081550929999155101551115512155131551429999155151551615517155181551929999155201552115522155231552429999155251552615527155281552929999155301553115532155331553429999155351553615537155381553929999155401554115542155431554429999155451554615547155481554929999155501555115552155531555429999155551555615557155581555929999155601556115562155631556429999155651556615567155681556929999155701557115572155731557429999155751557615577155781557929999155801558115582155831558429999155851558615587155881558929999155901559115592155931559429999155951559615597155981559929999156001560115602156031560429999156051560615607156081560929999156101561115612156131561429999156151561615617156181561929999156201562115622156231562429999156251562615627156281562929999156301563115632156331563429999156351563615637156381563929999156401564115642156431564429999156451564615647156481564929999156501565115652156531565429999156551565615657156581565929999156601566115662156631566429999156651566615667156681566929999156701567115672156731567429999156751567615677156781567929999156801568115682156831568429999156851568615687156881568929999156901569115692156931569429999156951569615697156981569929999157001570115702157031570429999157051570615707157081570929999157101571115712157131571429999157151571615717157181571929999157201572115722157231572429999157251572615727157281572929999157301573115732157331573429999157351573615737157381573929999157401574115742157431574429999157451574615747157481574929999157501575115752157531575429999157551575615757157581575929999157601576115762157631576429999157651576615767157681576929999157701577115772157731577429999157751577615777157781577929999157801578115782157831578429999157851578615787157881578929999157901579115792157931579429999157951579615797157981579929999158001580115802158031580429999158051580615807158081580929999158101581115812158131581429999158151581615817158181581929999158201582115822158231582429999158251582615827158281582929999158301583115832158331583429999158351583615837158381583929999158401584115842158431584429999158451584615847158481584929999158501585115852158531585429999158551585615857158581585929999158601586115862158631586429999158651586615867158681586929999158701587115872158731587429999158751587615877158781587929999158801588115882158831588429999158851588615887158881588929999158901589115892158931589429999158951589615897158981589929999159001590115902159031590429999159051590615907159081590929999159101591115912159131591429999159151591615917159181591929999159201592115922159231592429999159251592615927159281592929999159301593115932159331593429999159351593615937159381593929999159401594115942159431594429999159451594615947159481594929999159501595115952159531595429999159551595615957159581595929999159601596115962159631596429999159651596615967159681596929999159701597115972159731597429999159751597615977159781597929999159801598115982159831598429999159851598615987159881598929999159901599115992159931599429999159951599615997159981599929999160001600116002160031600429999160051600616007160081600929999160101601116012160131601429999160151601616017160181601929999160201602116022160231602429999160251602616027160281602929999160301603116032160331603429999160351603616037160381603929999160401604116042160431604429999160451604616047160481604929999160501605116052160531605429999160551605616057160581605929999160601606116062160631606429999160651606616067160681606929999160701607116072160731607429999160751607616077160781607929999160801608116082160831608429999160851608616087160881608929999160901609116092160931609429999160951609616097160981609929999161001610116102161031610429999161051610616107161081610929999161101611116112161131611429999161151611616117161181611929999161201612116122161231612429999161251612616127161281612929999161301613116132161331613429999161351613616137161381613929999161401614116142161431614429999161451614616147161481614929999161501615116152161531615429999161551615616157161581615929999161601616116162161631616429999161651616616167161681616929999161701617116172161731617429999161751617616177161781617929999161801618116182161831618429999161851618616187161881618929999161901619116192161931619429999161951619616197161981619929999162001620116202162031620429999162051620616207162081620929999162101621116212162131621429999162151621616217162181621929999162201622116222162231622429999162251622616227162281622929999162301623116232162331623429999162351623616237162381623929999162401624116242162431624429999162451624616247162481624929999162501625116252162531625429999162551625616257162581625929999162601626116262162631626429999162651626616267162681626929999162701627116272162731627429999162751627616277162781627929999162801628116282162831628429999162851628616287162881628929999162901629116292162931629429999162951629616297162981629929999163001630116302163031630429999163051630616307163081630929999163101631116312163131631429999163151631616317163181631929999163201632116322163231632429999163251632616327163281632929999163301633116332163331633429999163351633616337163381633929999163401634116342163431634429999163451634616347163481634929999163501635116352163531635429999163551635616357163581635929999163601636116362163631636429999163651636616367163681636929999163701637116372163731637429999163751637616377163781637929999163801638116382163831638429999163851638616387163881638929999163901639116392163931639429999163951639616397163981639929999164001640116402164031640429999164051640616407164081640929999164101641116412164131641429999164151641616417164181641929999164201642116422164231642429999164251642616427164281642929999164301643116432164331643429999164351643616437164381643929999164401644116442164431644429999164451644616447164481644929999164501645116452164531645429999164551645616457164581645929999164601646116462164631646429999164651646616467164681646929999164701647116472164731647429999164751647616477164781647929999164801648116482164831648429999164851648616487164881648929999164901649116492164931649429999164951649616497164981649929999165001650116502165031650429999165051650616507165081650929999165101651116512165131651429999165151651616517165181651929999165201652116522165231652429999165251652616527165281652929999165301653116532165331653429999165351653616537165381653929999165401654116542165431654429999165451654616547165481654929999165501655116552165531655429999165551655616557165581655929999165601656116562165631656429999165651656616567165681656929999165701657116572165731657429999165751657616577165781657929999165801658116582165831658429999165851658616587165881658929999165901659116592165931659429999165951659616597165981659929999166001660116602166031660429999166051660616607166081660929999166101661116612166131661429999166151661616617166181661929999166201662116622166231662429999166251662616627166281662929999166301663116632166331663429999166351663616637166381663929999166401664116642166431664429999166451664616647166481664929999166501665116652166531665429999166551665616657166581665929999166601666116662166631666429999166651666616667166681666929999166701667116672166731667429999166751667616677166781667929999166801668116682166831668429999166851668616687166881668929999166901669116692166931669429999166951669616697166981669929999167001670116702167031670429999167051670616707167081670929999167101671116712167131671429999167151671616717167181671929999167201672116722167231672429999167251672616727167281672929999167301673116732167331673429999167351673616737167381673929999167401674116742167431674429999167451674616747167481674929999167501675116752167531675429999167551675616757167581675929999167601676116762167631676429999167651676616767167681676929999167701677116772167731677429999167751677616777167781677929999167801678116782167831678429999167851678616787167881678929999167901679116792167931679429999167951679616797167981679929999168001680116802168031680429999168051680616807168081680929999168101681116812168131681429999168151681616817168181681929999168201682116822168231682429999168251682616827168281682929999168301683116832168331683429999168351683616837168381683929999168401684116842168431684429999168451684616847168481684929999168501685116852168531685429999168551685616857168581685929999168601686116862168631686429999168651686616867168681686929999168701687116872168731687429999168751687616877168781687929999168801688116882168831688429999168851688616887168881688929999168901689116892168931689429999168951689616897168981689929999169001690116902169031690429999169051690616907169081690929999169101691116912169131691429999169151691616917169181691929999169201692116922169231692429999169251692616927169281692929999169301693116932169331693429999169351693616937169381693929999169401694116942169431694429999169451694616947169481694929999169501695116952169531695429999169551695616957169581695929999169601696116962169631696429999169651696616967169681696929999169701697116972169731697429999169751697616977169781697929999169801698116982169831698429999169851698616987169881698929999169901699116992169931699429999169951699616997169981699929999170001700117002170031700429999170051700617007170081700929999170101701117012170131701429999170151701617017170181701929999170201702117022170231702429999170251702617027170281702929999170301703117032170331703429999170351703617037170381703929999170401704117042170431704429999170451704617047170481704929999170501705117052170531705429999170551705617057170581705929999170601706117062170631706429999170651706617067170681706929999170701707117072170731707429999170751707617077170781707929999170801708117082170831708429999170851708617087170881708929999170901709117092170931709429999170951709617097170981709929999171001710117102171031710429999171051710617107171081710929999171101711117112171131711429999171151711617117171181711929999171201712117122171231712429999171251712617127171281712929999171301713117132171331713429999171351713617137171381713929999171401714117142171431714429999171451714617147171481714929999171501715117152171531715429999171551715617157171581715929999171601716117162171631716429999171651716617167171681716929999171701717117172171731717429999171751717617177171781717929999171801718117182171831718429999171851718617187171881718929999171901719117192171931719429999171951719617197171981719929999172001720117202172031720429999172051720617207172081720929999172101721117212172131721429999172151721617217172181721929999172201722117222172231722429999172251722617227172281722929999172301723117232172331723429999172351723617237172381723929999172401724117242172431724429999172451724617247172481724929999172501725117252172531725429999172551725617257172581725929999172601726117262172631726429999172651726617267172681726929999172701727117272172731727429999172751727617277172781727929999172801728117282172831728429999172851728617287172881728929999172901729117292172931729429999172951729617297172981729929999173001730117302173031730429999173051730617307173081730929999173101731117312173131731429999173151731617317173181731929999173201732117322173231732429999173251732617327173281732929999173301733117332173331733429999173351733617337173381733929999173401734117342173431734429999173451734617347173481734929999173501735117352173531735429999173551735617357173581735929999173601736117362173631736429999173651736617367173681736929999173701737117372173731737429999173751737617377173781737929999173801738117382173831738429999173851738617387173881738929999173901739117392173931739429999173951739617397173981739929999174001740117402174031740429999174051740617407174081740929999174101741117412174131741429999174151741617417174181741929999174201742117422174231742429999174251742617427174281742929999174301743117432174331743429999174351743617437174381743929999174401744117442174431744429999174451744617447174481744929999174501745117452174531745429999174551745617457174581745929999174601746117462174631746429999174651746617467174681746929999174701747117472174731747429999174751747617477174781747929999174801748117482174831748429999174851748617487174881748929999174901749117492174931749429999174951749617497174981749929999175001750117502175031750429999175051750617507175081750929999175101751117512175131751429999175151751617517175181751929999175201752117522175231752429999175251752617527175281752929999175301753117532175331753429999175351753617537175381753929999175401754117542175431754429999175451754617547175481754929999175501755117552175531755429999175551755617557175581755929999175601756117562175631756429999175651756617567175681756929999175701757117572175731757429999175751757617577175781757929999175801758117582175831758429999175851758617587175881758929999175901759117592175931759429999175951759617597175981759929999176001760117602176031760429999176051760617607176081760929999176101761117612176131761429999176151761617617176181761929999176201762117622176231762429999176251762617627176281762929999176301763117632176331763429999176351763617637176381763929999176401764117642176431764429999176451764617647176481764929999176501765117652176531765429999176551765617657176581765929999176601766117662176631766429999176651766617667176681766929999176701767117672176731767429999176751767617677176781767929999176801768117682176831768429999176851768617687176881768929999176901769117692176931769429999176951769617697176981769929999177001770117702177031770429999177051770617707177081770929999177101771117712177131771429999177151771617717177181771929999177201772117722177231772429999177251772617727177281772929999177301773117732177331773429999177351773617737177381773929999177401774117742177431774429999177451774617747177481774929999177501775117752177531775429999177551775617757177581775929999177601776117762177631776429999177651776617767177681776929999177701777117772177731777429999177751777617777177781777929999177801778117782177831778429999177851778617787177881778929999177901779117792177931779429999177951779617797177981779929999178001780117802178031780429999178051780617807178081780929999178101781117812178131781429999178151781617817178181781929999178201782117822178231782429999178251782617827178281782929999178301783117832178331783429999178351783617837178381783929999178401784117842178431784429999178451784617847178481784929999178501785117852178531785429999178551785617857178581785929999178601786117862178631786429999178651786617867178681786929999178701787117872178731787429999178751787617877178781787929999178801788117882178831788429999178851788617887178881788929999178901789117892178931789429999178951789617897178981789929999179001790117902179031790429999179051790617907179081790929999179101791117912179131791429999179151791617917179181791929999179201792117922179231792429999179251792617927179281792929999179301793117932179331793429999179351793617937179381793929999179401794117942179431794429999179451794617947179481794929999179501795117952179531795429999179551795617957179581795929999179601796117962179631796429999179651796617967179681796929999179701797117972179731797429999179751797617977179781797929999179801798117982179831798429999179851798617987179881798929999179901799117992179931799429999179951799617997179981799929999180001800118002180031800429999180051800618007180081800929999180101801118012180131801429999180151801618017180181801929999180201802118022180231802429999180251802618027180281802929999180301803118032180331803429999180351803618037180381803929999180401804118042180431804429999180451804618047180481804929999180501805118052180531805429999180551805618057180581805929999180601806118062180631806429999180651806618067180681806929999180701807118072180731807429999180751807618077180781807929999180801808118082180831808429999180851808618087180881808929999180901809118092180931809429999180951809618097180981809929999181001810118102181031810429999181051810618107181081810929999181101811118112181131811429999181151811618117181181811929999181201812118122181231812429999181251812618127181281812929999181301813118132181331813429999181351813618137181381813929999181401814118142181431814429999181451814618147181481814929999181501815118152181531815429999181551815618157181581815929999181601816118162181631816429999181651816618167181681816929999181701817118172181731817429999181751817618177181781817929999181801818118182181831818429999181851818618187181881818929999181901819118192181931819429999181951819618197181981819929999182001820118202182031820429999182051820618207182081820929999182101821118212182131821429999182151821618217182181821929999182201822118222182231822429999182251822618227182281822929999182301823118232182331823429999182351823618237182381823929999182401824118242182431824429999182451824618247182481824929999182501825118252182531825429999182551825618257182581825929999182601826118262182631826429999182651826618267182681826929999182701827118272182731827429999182751827618277182781827929999182801828118282182831828429999182851828618287182881828929999182901829118292182931829429999182951829618297182981829929999183001830118302183031830429999183051830618307183081830929999183101831118312183131831429999183151831618317183181831929999183201832118322183231832429999183251832618327183281832929999183301833118332183331833429999183351833618337183381833929999183401834118342183431834429999183451834618347183481834929999183501835118352183531835429999183551835618357183581835929999183601836118362183631836429999183651836618367183681836929999183701837118372183731837429999183751837618377183781837929999183801838118382183831838429999183851838618387183881838929999183901839118392183931839429999183951839618397183981839929999184001840118402184031840429999184051840618407184081840929999184101841118412184131841429999184151841618417184181841929999184201842118422184231842429999184251842618427184281842929999184301843118432184331843429999184351843618437184381843929999184401844118442184431844429999184451844618447184481844929999184501845118452184531845429999184551845618457184581845929999184601846118462184631846429999184651846618467184681846929999184701847118472184731847429999184751847618477184781847929999184801848118482184831848429999184851848618487184881848929999184901849118492184931849429999184951849618497184981849929999185001850118502185031850429999185051850618507185081850929999185101851118512185131851429999185151851618517185181851929999185201852118522185231852429999185251852618527185281852929999185301853118532185331853429999185351853618537185381853929999185401854118542185431854429999185451854618547185481854929999185501855118552185531855429999185551855618557185581855929999185601856118562185631856429999185651856618567185681856929999185701857118572185731857429999185751857618577185781857929999185801858118582185831858429999185851858618587185881858929999185901859118592185931859429999185951859618597185981859929999186001860118602186031860429999186051860618607186081860929999186101861118612186131861429999186151861618617186181861929999186201862118622186231862429999186251862618627186281862929999186301863118632186331863429999186351863618637186381863929999186401864118642186431864429999186451864618647186481864929999186501865118652186531865429999186551865618657186581865929999186601866118662186631866429999186651866618667186681866929999186701867118672186731867429999186751867618677186781867929999186801868118682186831868429999186851868618687186881868929999186901869118692186931869429999186951869618697186981869929999187001870118702187031870429999187051870618707187081870929999187101871118712187131871429999187151871618717187181871929999187201872118722187231872429999187251872618727187281872929999187301873118732187331873429999187351873618737187381873929999187401874118742187431874429999187451874618747187481874929999187501875118752187531875429999187551875618757187581875929999187601876118762187631876429999187651876618767187681876929999187701877118772187731877429999187751877618777187781877929999187801878118782187831878429999187851878618787187881878929999187901879118792187931879429999187951879618797187981879929999188001880118802188031880429999188051880618807188081880929999188101881118812188131881429999188151881618817188181881929999188201882118822188231882429999188251882618827188281882929999188301883118832188331883429999188351883618837188381883929999188401884118842188431884429999188451884618847188481884929999188501885118852188531885429999188551885618857188581885929999188601886118862188631886429999188651886618867188681886929999188701887118872188731887429999188751887618877188781887929999188801888118882188831888429999188851888618887188881888929999188901889118892188931889429999188951889618897188981889929999189001890118902189031890429999189051890618907189081890929999189101891118912189131891429999189151891618917189181891929999189201892118922189231892429999189251892618927189281892929999189301893118932189331893429999189351893618937189381893929999189401894118942189431894429999189451894618947189481894929999189501895118952189531895429999189551895618957189581895929999189601896118962189631896429999189651896618967189681896929999189701897118972189731897429999189751897618977189781897929999189801898118982189831898429999189851898618987189881898929999189901899118992189931899429999189951899618997189981899929999190001900119002190031900429999190051900619007190081900929999190101901119012190131901429999190151901619017190181901929999190201902119022190231902429999190251902619027190281902929999190301903119032190331903429999190351903619037190381903929999190401904119042190431904429999190451904619047190481904929999190501905119052190531905429999190551905619057190581905929999190601906119062190631906429999190651906619067190681906929999190701907119072190731907429999190751907619077190781907929999190801908119082190831908429999190851908619087190881908929999190901909119092190931909429999190951909619097190981909929999191001910119102191031910429999191051910619107191081910929999191101911119112191131911429999191151911619117191181911929999191201912119122191231912429999191251912619127191281912929999191301913119132191331913429999191351913619137191381913929999191401914119142191431914429999191451914619147191481914929999191501915119152191531915429999191551915619157191581915929999191601916119162191631916429999191651916619167191681916929999191701917119172191731917429999191751917619177191781917929999191801918119182191831918429999191851918619187191881918929999191901919119192191931919429999191951919619197191981919929999192001920119202192031920429999192051920619207192081920929999192101921119212192131921429999192151921619217192181921929999192201922119222192231922429999192251922619227192281922929999192301923119232192331923429999192351923619237192381923929999192401924119242192431924429999192451924619247192481924929999192501925119252192531925429999192551925619257192581925929999192601926119262192631926429999192651926619267192681926929999192701927119272192731927429999192751927619277192781927929999192801928119282192831928429999192851928619287192881928929999192901929119292192931929429999192951929619297192981929929999193001930119302193031930429999193051930619307193081930929999193101931119312193131931429999193151931619317193181931929999193201932119322193231932429999193251932619327193281932929999193301933119332193331933429999193351933619337193381933929999193401934119342193431934429999193451934619347193481934929999193501935119352193531935429999193551935619357193581935929999193601936119362193631936429999193651936619367193681936929999193701937119372193731937429999193751937619377193781937929999193801938119382193831938429999193851938619387193881938929999193901939119392193931939429999193951939619397193981939929999194001940119402194031940429999194051940619407194081940929999194101941119412194131941429999194151941619417194181941929999194201942119422194231942429999194251942619427194281942929999194301943119432194331943429999194351943619437194381943929999194401944119442194431944429999194451944619447194481944929999194501945119452194531945429999194551945619457194581945929999194601946119462194631946429999194651946619467194681946929999194701947119472194731947429999194751947619477194781947929999194801948119482194831948429999194851948619487194881948929999194901949119492194931949429999194951949619497194981949929999195001950119502195031950429999195051950619507195081950929999195101951119512195131951429999195151951619517195181951929999195201952119522195231952429999195251952619527195281952929999195301953119532195331953429999195351953619537195381953929999195401954119542195431954429999195451954619547195481954929999195501955119552195531955429999195551955619557195581955929999195601956119562195631956429999195651956619567195681956929999195701957119572195731957429999195751957619577195781957929999195801958119582195831958429999195851958619587195881958929999195901959119592195931959429999195951959619597195981959929999196001960119602196031960429999196051960619607196081960929999196101961119612196131961429999196151961619617196181961929999196201962119622196231962429999196251962619627196281962929999196301963119632196331963429999196351963619637196381963929999196401964119642196431964429999196451964619647196481964929999196501965119652196531965429999196551965619657196581965929999196601966119662196631966429999196651966619667196681966929999196701967119672196731967429999196751967619677196781967929999196801968119682196831968429999196851968619687196881968929999196901969119692196931969429999196951969619697196981969929999197001970119702197031970429999197051970619707197081970929999197101971119712197131971429999197151971619717197181971929999197201972119722197231972429999197251972619727197281972929999197301973119732197331973429999197351973619737197381973929999197401974119742197431974429999197451974619747197481974929999197501975119752197531975429999197551975619757197581975929999197601976119762197631976429999197651976619767197681976929999197701977119772197731977429999197751977619777197781977929999197801978119782197831978429999197851978619787197881978929999197901979119792197931979429999197951979619797197981979929999198001980119802198031980429999198051980619807198081980929999198101981119812198131981429999198151981619817198181981929999198201982119822198231982429999198251982619827198281982929999198301983119832198331983429999198351983619837198381983929999198401984119842198431984429999198451984619847198481984929999198501985119852198531985429999198551985619857198581985929999198601986119862198631986429999198651986619867198681986929999198701987119872198731987429999198751987619877198781987929999198801988119882198831988429999198851988619887198881988929999198901989119892198931989429999198951989619897198981989929999199001990119902199031990429999199051990619907199081990929999199101991119912199131991429999199151991619917199181991929999199201992119922199231992429999199251992619927199281992929999199301993119932199331993429999199351993619937199381993929999199401994119942199431994429999199451994619947199481994929999199501995119952199531995429999199551995619957199581995929999199601996119962199631996429999199651996619967199681996929999199701997119972199731997429999199751997619977199781997929999199801998119982199831998429999199851998619987199881998929999199901999119992199931999429999199951999619997199981999929999200002000120002200032000429999200052000620007200082000929999200102001120012200132001429999200152001620017200182001929999200202002120022200232002429999200252002620027200282002929999200302003120032200332003429999200352003620037200382003929999200402004120042200432004429999200452004620047200482004929999200502005120052200532005429999200552005620057200582005929999200602006120062200632006429999200652006620067200682006929999200702007120072200732007429999200752007620077200782007929999200802008120082200832008429999200852008620087200882008929999200902009120092200932009429999200952009620097200982009929999201002010120102201032010429999201052010620107201082010929999201102011120112201132011429999201152011620117201182011929999201202012120122201232012429999201252012620127201282012929999201302013120132201332013429999201352013620137201382013929999201402014120142201432014429999201452014620147201482014929999201502015120152201532015429999201552015620157201582015929999201602016120162201632016429999201652016620167201682016929999201702017120172201732017429999201752017620177201782017929999201802018120182201832018429999201852018620187201882018929999201902019120192201932019429999201952019620197201982019929999202002020120202202032020429999202052020620207202082020929999202102021120212202132021429999202152021620217202182021929999202202022120222202232022429999202252022620227202282022929999202302023120232202332023429999202352023620237202382023929999202402024120242202432024429999202452024620247202482024929999202502025120252202532025429999202552025620257202582025929999202602026120262202632026429999202652026620267202682026929999202702027120272202732027429999202752027620277202782027929999202802028120282202832028429999202852028620287202882028929999202902029120292202932029429999202952029620297202982029929999203002030120302203032030429999203052030620307203082030929999203102031120312203132031429999203152031620317203182031929999203202032120322203232032429999203252032620327203282032929999203302033120332203332033429999203352033620337203382033929999203402034120342203432034429999203452034620347203482034929999203502035120352203532035429999203552035620357203582035929999203602036120362203632036429999203652036620367203682036929999203702037120372203732037429999203752037620377203782037929999203802038120382203832038429999203852038620387203882038929999203902039120392203932039429999203952039620397203982039929999204002040120402204032040429999204052040620407204082040929999204102041120412204132041429999204152041620417204182041929999204202042120422204232042429999204252042620427204282042929999204302043120432204332043429999204352043620437204382043929999204402044120442204432044429999204452044620447204482044929999204502045120452204532045429999204552045620457204582045929999204602046120462204632046429999204652046620467204682046929999204702047120472204732047429999204752047620477204782047929999204802048120482204832048429999204852048620487204882048929999204902049120492204932049429999204952049620497204982049929999205002050120502205032050429999205052050620507205082050929999205102051120512205132051429999205152051620517205182051929999205202052120522205232052429999205252052620527205282052929999205302053120532205332053429999205352053620537205382053929999205402054120542205432054429999205452054620547205482054929999205502055120552205532055429999205552055620557205582055929999205602056120562205632056429999205652056620567205682056929999205702057120572205732057429999205752057620577205782057929999205802058120582205832058429999205852058620587205882058929999205902059120592205932059429999205952059620597205982059929999206002060120602206032060429999206052060620607206082060929999206102061120612206132061429999206152061620617206182061929999206202062120622206232062429999206252062620627206282062929999206302063120632206332063429999206352063620637206382063929999206402064120642206432064429999206452064620647206482064929999206502065120652206532065429999206552065620657206582065929999206602066120662206632066429999206652066620667206682066929999206702067120672206732067429999206752067620677206782067929999206802068120682206832068429999206852068620687206882068929999206902069120692206932069429999206952069620697206982069929999207002070120702207032070429999207052070620707207082070929999207102071120712207132071429999207152071620717207182071929999207202072120722207232072429999207252072620727207282072929999207302073120732207332073429999207352073620737207382073929999207402074120742207432074429999207452074620747207482074929999207502075120752207532075429999207552075620757207582075929999207602076120762207632076429999207652076620767207682076929999207702077120772207732077429999207752077620777207782077929999207802078120782207832078429999207852078620787207882078929999207902079120792207932079429999207952079620797207982079929999208002080120802208032080429999208052080620807208082080929999208102081120812208132081429999208152081620817208182081929999208202082120822208232082429999208252082620827208282082929999208302083120832208332083429999208352083620837208382083929999208402084120842208432084429999208452084620847208482084929999208502085120852208532085429999208552085620857208582085929999208602086120862208632086429999208652086620867208682086929999208702087120872208732087429999208752087620877208782087929999208802088120882208832088429999208852088620887208882088929999208902089120892208932089429999208952089620897208982089929999209002090120902209032090429999209052090620907209082090929999209102091120912209132091429999209152091620917209182091929999209202092120922209232092429999209252092620927209282092929999209302093120932209332093429999209352093620937209382093929999209402094120942209432094429999209452094620947209482094929999209502095120952209532095429999209552095620957209582095929999209602096120962209632096429999209652096620967209682096929999209702097120972209732097429999209752097620977209782097929999209802098120982209832098429999209852098620987209882098929999209902099120992209932099429999209952099620997209982099929999210002100121002210032100429999210052100621007210082100929999210102101121012210132101429999210152101621017210182101929999210202102121022210232102429999210252102621027210282102929999210302103121032210332103429999210352103621037210382103929999210402104121042210432104429999210452104621047210482104929999210502105121052210532105429999210552105621057210582105929999210602106121062210632106429999210652106621067210682106929999210702107121072210732107429999210752107621077210782107929999210802108121082210832108429999210852108621087210882108929999210902109121092210932109429999210952109621097210982109929999211002110121102211032110429999211052110621107211082110929999211102111121112211132111429999211152111621117211182111929999211202112121122211232112429999211252112621127211282112929999211302113121132211332113429999211352113621137211382113929999211402114121142211432114429999211452114621147211482114929999211502115121152211532115429999211552115621157211582115929999211602116121162211632116429999211652116621167211682116929999211702117121172211732117429999211752117621177211782117929999211802118121182211832118429999211852118621187211882118929999211902119121192211932119429999211952119621197211982119929999212002120121202212032120429999212052120621207212082120929999212102121121212212132121429999212152121621217212182121929999212202122121222212232122429999212252122621227212282122929999212302123121232212332123429999212352123621237212382123929999212402124121242212432124429999212452124621247212482124929999212502125121252212532125429999212552125621257212582125929999212602126121262212632126429999212652126621267212682126929999212702127121272212732127429999212752127621277212782127929999212802128121282212832128429999212852128621287212882128929999212902129121292212932129429999212952129621297212982129929999213002130121302213032130429999213052130621307213082130929999213102131121312213132131429999213152131621317213182131929999213202132121322213232132429999213252132621327213282132929999213302133121332213332133429999213352133621337213382133929999213402134121342213432134429999213452134621347213482134929999213502135121352213532135429999213552135621357213582135929999213602136121362213632136429999213652136621367213682136929999213702137121372213732137429999213752137621377213782137929999213802138121382213832138429999213852138621387213882138929999213902139121392213932139429999213952139621397213982139929999214002140121402214032140429999214052140621407214082140929999214102141121412214132141429999214152141621417214182141929999214202142121422214232142429999214252142621427214282142929999214302143121432214332143429999214352143621437214382143929999214402144121442214432144429999214452144621447214482144929999214502145121452214532145429999214552145621457214582145929999214602146121462214632146429999214652146621467214682146929999214702147121472214732147429999214752147621477214782147929999214802148121482214832148429999214852148621487214882148929999214902149121492214932149429999214952149621497214982149929999215002150121502215032150429999215052150621507215082150929999215102151121512215132151429999215152151621517215182151929999215202152121522215232152429999215252152621527215282152929999215302153121532215332153429999215352153621537215382153929999215402154121542215432154429999215452154621547215482154929999215502155121552215532155429999215552155621557215582155929999215602156121562215632156429999215652156621567215682156929999215702157121572215732157429999215752157621577215782157929999215802158121582215832158429999215852158621587215882158929999215902159121592215932159429999215952159621597215982159929999216002160121602216032160429999216052160621607216082160929999216102161121612216132161429999216152161621617216182161929999216202162121622216232162429999216252162621627216282162929999216302163121632216332163429999216352163621637216382163929999216402164121642216432164429999216452164621647216482164929999216502165121652216532165429999216552165621657216582165929999216602166121662216632166429999216652166621667216682166929999216702167121672216732167429999216752167621677216782167929999216802168121682216832168429999216852168621687216882168929999216902169121692216932169429999216952169621697216982169929999217002170121702217032170429999217052170621707217082170929999217102171121712217132171429999217152171621717217182171929999217202172121722217232172429999217252172621727217282172929999217302173121732217332173429999217352173621737217382173929999217402174121742217432174429999217452174621747217482174929999217502175121752217532175429999217552175621757217582175929999217602176121762217632176429999217652176621767217682176929999217702177121772217732177429999217752177621777217782177929999217802178121782217832178429999217852178621787217882178929999217902179121792217932179429999217952179621797217982179929999218002180121802218032180429999218052180621807218082180929999218102181121812218132181429999218152181621817218182181929999218202182121822218232182429999218252182621827218282182929999218302183121832218332183429999218352183621837218382183929999218402184121842218432184429999218452184621847218482184929999218502185121852218532185429999218552185621857218582185929999218602186121862218632186429999218652186621867218682186929999218702187121872218732187429999218752187621877218782187929999218802188121882218832188429999218852188621887218882188929999218902189121892218932189429999218952189621897218982189929999219002190121902219032190429999219052190621907219082190929999219102191121912219132191429999219152191621917219182191929999219202192121922219232192429999219252192621927219282192929999219302193121932219332193429999219352193621937219382193929999219402194121942219432194429999219452194621947219482194929999219502195121952219532195429999219552195621957219582195929999219602196121962219632196429999219652196621967219682196929999219702197121972219732197429999219752197621977219782197929999219802198121982219832198429999219852198621987219882198929999219902199121992219932199429999219952199621997219982199929999220002200122002220032200429999220052200622007220082200929999220102201122012220132201429999220152201622017220182201929999220202202122022220232202429999220252202622027220282202929999220302203122032220332203429999220352203622037220382203929999220402204122042220432204429999220452204622047220482204929999220502205122052220532205429999220552205622057220582205929999220602206122062220632206429999220652206622067220682206929999220702207122072220732207429999220752207622077220782207929999220802208122082220832208429999220852208622087220882208929999220902209122092220932209429999220952209622097220982209929999221002210122102221032210429999221052210622107221082210929999221102211122112221132211429999221152211622117221182211929999221202212122122221232212429999221252212622127221282212929999221302213122132221332213429999221352213622137221382213929999221402214122142221432214429999221452214622147221482214929999221502215122152221532215429999221552215622157221582215929999221602216122162221632216429999221652216622167221682216929999221702217122172221732217429999221752217622177221782217929999221802218122182221832218429999221852218622187221882218929999221902219122192221932219429999221952219622197221982219929999222002220122202222032220429999222052220622207222082220929999222102221122212222132221429999222152221622217222182221929999222202222122222222232222429999222252222622227222282222929999222302223122232222332223429999222352223622237222382223929999222402224122242222432224429999222452224622247222482224929999222502225122252222532225429999222552225622257222582225929999222602226122262222632226429999222652226622267222682226929999222702227122272222732227429999222752227622277222782227929999222802228122282222832228429999222852228622287222882228929999222902229122292222932229429999222952229622297222982229929999223002230122302223032230429999223052230622307223082230929999223102231122312223132231429999223152231622317223182231929999223202232122322223232232429999223252232622327223282232929999223302233122332223332233429999223352233622337223382233929999223402234122342223432234429999223452234622347223482234929999223502235122352223532235429999223552235622357223582235929999223602236122362223632236429999223652236622367223682236929999223702237122372223732237429999223752237622377223782237929999223802238122382223832238429999223852238622387223882238929999223902239122392223932239429999223952239622397223982239929999224002240122402224032240429999224052240622407224082240929999224102241122412224132241429999224152241622417224182241929999224202242122422224232242429999224252242622427224282242929999224302243122432224332243429999224352243622437224382243929999224402244122442224432244429999224452244622447224482244929999224502245122452224532245429999224552245622457224582245929999224602246122462224632246429999224652246622467224682246929999224702247122472224732247429999224752247622477224782247929999224802248122482224832248429999224852248622487224882248929999224902249122492224932249429999224952249622497224982249929999225002250122502225032250429999225052250622507225082250929999225102251122512225132251429999225152251622517225182251929999225202252122522225232252429999225252252622527225282252929999225302253122532225332253429999225352253622537225382253929999225402254122542225432254429999225452254622547225482254929999225502255122552225532255429999225552255622557225582255929999225602256122562225632256429999225652256622567225682256929999225702257122572225732257429999225752257622577225782257929999225802258122582225832258429999225852258622587225882258929999225902259122592225932259429999225952259622597225982259929999226002260122602226032260429999226052260622607226082260929999226102261122612226132261429999226152261622617226182261929999226202262122622226232262429999226252262622627226282262929999226302263122632226332263429999226352263622637226382263929999226402264122642226432264429999226452264622647226482264929999226502265122652226532265429999226552265622657226582265929999226602266122662226632266429999226652266622667226682266929999226702267122672226732267429999226752267622677226782267929999226802268122682226832268429999226852268622687226882268929999226902269122692226932269429999226952269622697226982269929999227002270122702227032270429999227052270622707227082270929999227102271122712227132271429999227152271622717227182271929999227202272122722227232272429999227252272622727227282272929999227302273122732227332273429999227352273622737227382273929999227402274122742227432274429999227452274622747227482274929999227502275122752227532275429999227552275622757227582275929999227602276122762227632276429999227652276622767227682276929999227702277122772227732277429999227752277622777227782277929999227802278122782227832278429999227852278622787227882278929999227902279122792227932279429999227952279622797227982279929999228002280122802228032280429999228052280622807228082280929999228102281122812228132281429999228152281622817228182281929999228202282122822228232282429999228252282622827228282282929999228302283122832228332283429999228352283622837228382283929999228402284122842228432284429999228452284622847228482284929999228502285122852228532285429999228552285622857228582285929999228602286122862228632286429999228652286622867228682286929999228702287122872228732287429999228752287622877228782287929999228802288122882228832288429999228852288622887228882288929999228902289122892228932289429999228952289622897228982289929999229002290122902229032290429999229052290622907229082290929999229102291122912229132291429999229152291622917229182291929999229202292122922229232292429999229252292622927229282292929999229302293122932229332293429999229352293622937229382293929999229402294122942229432294429999229452294622947229482294929999229502295122952229532295429999229552295622957229582295929999229602296122962229632296429999229652296622967229682296929999229702297122972229732297429999229752297622977229782297929999229802298122982229832298429999229852298622987229882298929999229902299122992229932299429999229952299622997229982299929999230002300123002230032300429999230052300623007230082300929999230102301123012230132301429999230152301623017230182301929999230202302123022230232302429999230252302623027230282302929999230302303123032230332303429999230352303623037230382303929999230402304123042230432304429999230452304623047230482304929999230502305123052230532305429999230552305623057230582305929999230602306123062230632306429999230652306623067230682306929999230702307123072230732307429999230752307623077230782307929999230802308123082230832308429999230852308623087230882308929999230902309123092230932309429999230952309623097230982309929999231002310123102231032310429999231052310623107231082310929999231102311123112231132311429999231152311623117231182311929999231202312123122231232312429999231252312623127231282312929999231302313123132231332313429999231352313623137231382313929999231402314123142231432314429999231452314623147231482314929999231502315123152231532315429999231552315623157231582315929999231602316123162231632316429999231652316623167231682316929999231702317123172231732317429999231752317623177231782317929999231802318123182231832318429999231852318623187231882318929999231902319123192231932319429999231952319623197231982319929999232002320123202232032320429999232052320623207232082320929999232102321123212232132321429999232152321623217232182321929999232202322123222232232322429999232252322623227232282322929999232302323123232232332323429999232352323623237232382323929999232402324123242232432324429999232452324623247232482324929999232502325123252232532325429999232552325623257232582325929999232602326123262232632326429999232652326623267232682326929999232702327123272232732327429999232752327623277232782327929999232802328123282232832328429999232852328623287232882328929999232902329123292232932329429999232952329623297232982329929999233002330123302233032330429999233052330623307233082330929999233102331123312233132331429999233152331623317233182331929999233202332123322233232332429999233252332623327233282332929999233302333123332233332333429999233352333623337233382333929999233402334123342233432334429999233452334623347233482334929999233502335123352233532335429999233552335623357233582335929999233602336123362233632336429999233652336623367233682336929999233702337123372233732337429999233752337623377233782337929999233802338123382233832338429999233852338623387233882338929999233902339123392233932339429999233952339623397233982339929999234002340123402234032340429999234052340623407234082340929999234102341123412234132341429999234152341623417234182341929999234202342123422234232342429999234252342623427234282342929999234302343123432234332343429999234352343623437234382343929999234402344123442234432344429999234452344623447234482344929999234502345123452234532345429999234552345623457234582345929999234602346123462234632346429999234652346623467234682346929999234702347123472234732347429999234752347623477234782347929999234802348123482234832348429999234852348623487234882348929999234902349123492234932349429999234952349623497234982349929999235002350123502235032350429999235052350623507235082350929999235102351123512235132351429999235152351623517235182351929999235202352123522235232352429999235252352623527235282352929999235302353123532235332353429999235352353623537235382353929999235402354123542235432354429999235452354623547235482354929999235502355123552235532355429999235552355623557235582355929999235602356123562235632356429999235652356623567235682356929999235702357123572235732357429999235752357623577235782357929999235802358123582235832358429999235852358623587235882358929999235902359123592235932359429999235952359623597235982359929999236002360123602236032360429999236052360623607236082360929999236102361123612236132361429999236152361623617236182361929999236202362123622236232362429999236252362623627236282362929999236302363123632236332363429999236352363623637236382363929999236402364123642236432364429999236452364623647236482364929999236502365123652236532365429999236552365623657236582365929999236602366123662236632366429999236652366623667236682366929999236702367123672236732367429999236752367623677236782367929999236802368123682236832368429999236852368623687236882368929999236902369123692236932369429999236952369623697236982369929999237002370123702237032370429999237052370623707237082370929999237102371123712237132371429999237152371623717237182371929999237202372123722237232372429999237252372623727237282372929999237302373123732237332373429999237352373623737237382373929999237402374123742237432374429999237452374623747237482374929999237502375123752237532375429999237552375623757237582375929999237602376123762237632376429999237652376623767237682376929999237702377123772237732377429999237752377623777237782377929999237802378123782237832378429999237852378623787237882378929999237902379123792237932379429999237952379623797237982379929999238002380123802238032380429999238052380623807238082380929999238102381123812238132381429999238152381623817238182381929999238202382123822238232382429999238252382623827238282382929999238302383123832238332383429999238352383623837238382383929999238402384123842238432384429999238452384623847238482384929999238502385123852238532385429999238552385623857238582385929999238602386123862238632386429999238652386623867238682386929999238702387123872238732387429999238752387623877238782387929999238802388123882238832388429999238852388623887238882388929999238902389123892238932389429999238952389623897238982389929999239002390123902239032390429999239052390623907239082390929999239102391123912239132391429999239152391623917239182391929999239202392123922239232392429999239252392623927239282392929999239302393123932239332393429999239352393623937239382393929999239402394123942239432394429999239452394623947239482394929999239502395123952239532395429999239552395623957239582395929999239602396123962239632396429999239652396623967239682396929999239702397123972239732397429999239752397623977239782397929999239802398123982239832398429999239852398623987239882398929999239902399123992239932399429999239952399623997239982399929999240002400124002240032400429999240052400624007240082400929999240102401124012240132401429999240152401624017240182401929999240202402124022240232402429999240252402624027240282402929999240302403124032240332403429999240352403624037240382403929999240402404124042240432404429999240452404624047240482404929999240502405124052240532405429999240552405624057240582405929999240602406124062240632406429999240652406624067240682406929999240702407124072240732407429999240752407624077240782407929999240802408124082240832408429999240852408624087240882408929999240902409124092240932409429999240952409624097240982409929999241002410124102241032410429999241052410624107241082410929999241102411124112241132411429999241152411624117241182411929999241202412124122241232412429999241252412624127241282412929999241302413124132241332413429999241352413624137241382413929999241402414124142241432414429999241452414624147241482414929999241502415124152241532415429999241552415624157241582415929999241602416124162241632416429999241652416624167241682416929999241702417124172241732417429999241752417624177241782417929999241802418124182241832418429999241852418624187241882418929999241902419124192241932419429999241952419624197241982419929999242002420124202242032420429999242052420624207242082420929999242102421124212242132421429999242152421624217242182421929999242202422124222242232422429999242252422624227242282422929999242302423124232242332423429999242352423624237242382423929999242402424124242242432424429999242452424624247242482424929999242502425124252242532425429999242552425624257242582425929999242602426124262242632426429999242652426624267242682426929999242702427124272242732427429999242752427624277242782427929999242802428124282242832428429999242852428624287242882428929999242902429124292242932429429999242952429624297242982429929999243002430124302243032430429999243052430624307243082430929999243102431124312243132431429999243152431624317243182431929999243202432124322243232432429999243252432624327243282432929999243302433124332243332433429999243352433624337243382433929999243402434124342243432434429999243452434624347243482434929999243502435124352243532435429999243552435624357243582435929999243602436124362243632436429999243652436624367243682436929999243702437124372243732437429999243752437624377243782437929999243802438124382243832438429999243852438624387243882438929999243902439124392243932439429999243952439624397243982439929999244002440124402244032440429999244052440624407244082440929999244102441124412244132441429999244152441624417244182441929999244202442124422244232442429999244252442624427244282442929999244302443124432244332443429999244352443624437244382443929999244402444124442244432444429999244452444624447244482444929999244502445124452244532445429999244552445624457244582445929999244602446124462244632446429999244652446624467244682446929999244702447124472244732447429999244752447624477244782447929999244802448124482244832448429999244852448624487244882448929999244902449124492244932449429999244952449624497244982449929999245002450124502245032450429999245052450624507245082450929999245102451124512245132451429999245152451624517245182451929999245202452124522245232452429999245252452624527245282452929999245302453124532245332453429999245352453624537245382453929999245402454124542245432454429999245452454624547245482454929999245502455124552245532455429999245552455624557245582455929999245602456124562245632456429999245652456624567245682456929999245702457124572245732457429999245752457624577245782457929999245802458124582245832458429999245852458624587245882458929999245902459124592245932459429999245952459624597245982459929999246002460124602246032460429999246052460624607246082460929999246102461124612246132461429999246152461624617246182461929999246202462124622246232462429999246252462624627246282462929999246302463124632246332463429999246352463624637246382463929999246402464124642246432464429999246452464624647246482464929999246502465124652246532465429999246552465624657246582465929999246602466124662246632466429999246652466624667246682466929999246702467124672246732467429999246752467624677246782467929999246802468124682246832468429999246852468624687246882468929999246902469124692246932469429999246952469624697246982469929999247002470124702247032470429999247052470624707247082470929999247102471124712247132471429999247152471624717247182471929999247202472124722247232472429999247252472624727247282472929999247302473124732247332473429999247352473624737247382473929999247402474124742247432474429999247452474624747247482474929999247502475124752247532475429999247552475624757247582475929999247602476124762247632476429999247652476624767247682476929999247702477124772247732477429999247752477624777247782477929999247802478124782247832478429999247852478624787247882478929999247902479124792247932479429999247952479624797247982479929999248002480124802248032480429999248052480624807248082480929999248102481124812248132481429999248152481624817248182481929999248202482124822248232482429999248252482624827248282482929999248302483124832248332483429999248352483624837248382483929999248402484124842248432484429999248452484624847248482484929999248502485124852248532485429999248552485624857248582485929999248602486124862248632486429999248652486624867248682486929999248702487124872248732487429999248752487624877248782487929999248802488124882248832488429999248852488624887248882488929999248902489124892248932489429999248952489624897248982489929999249002490124902249032490429999249052490624907249082490929999249102491124912249132491429999249152491624917249182491929999249202492124922249232492429999249252492624927249282492929999249302493124932249332493429999249352493624937249382493929999249402494124942249432494429999249452494624947249482494929999249502495124952249532495429999249552495624957249582495929999249602496124962249632496429999249652496624967249682496929999249702497124972249732497429999249752497624977249782497929999249802498124982249832498429999249852498624987249882498929999249902499124992249932499429999249952499624997249982499929999250002500125002250032500429999250052500625007250082500929999250102501125012250132501429999250152501625017250182501929999250202502125022250232502429999250252502625027250282502929999250302503125032250332503429999250352503625037250382503929999250402504125042250432504429999250452504625047250482504929999250502505125052250532505429999250552505625057250582505929999250602506125062250632506429999250652506625067250682506929999250702507125072250732507429999250752507625077250782507929999250802508125082250832508429999250852508625087250882508929999250902509125092250932509429999250952509625097250982509929999251002510125102251032510429999251052510625107251082510929999251102511125112251132511429999251152511625117251182511929999251202512125122251232512429999251252512625127251282512929999251302513125132251332513429999251352513625137251382513929999251402514125142251432514429999251452514625147251482514929999251502515125152251532515429999251552515625157251582515929999251602516125162251632516429999251652516625167251682516929999251702517125172251732517429999251752517625177251782517929999251802518125182251832518429999251852518625187251882518929999251902519125192251932519429999251952519625197251982519929999252002520125202252032520429999252052520625207252082520929999252102521125212252132521429999252152521625217252182521929999252202522125222252232522429999252252522625227252282522929999252302523125232252332523429999252352523625237252382523929999252402524125242252432524429999252452524625247252482524929999252502525125252252532525429999252552525625257252582525929999252602526125262252632526429999252652526625267252682526929999252702527125272252732527429999252752527625277252782527929999252802528125282252832528429999252852528625287252882528929999252902529125292252932529429999252952529625297252982529929999253002530125302253032530429999253052530625307253082530929999253102531125312253132531429999253152531625317253182531929999253202532125322253232532429999253252532625327253282532929999253302533125332253332533429999253352533625337253382533929999253402534125342253432534429999253452534625347253482534929999253502535125352253532535429999253552535625357253582535929999253602536125362253632536429999253652536625367253682536929999253702537125372253732537429999253752537625377253782537929999253802538125382253832538429999253852538625387253882538929999253902539125392253932539429999253952539625397253982539929999254002540125402254032540429999254052540625407254082540929999254102541125412254132541429999254152541625417254182541929999254202542125422254232542429999254252542625427254282542929999254302543125432254332543429999254352543625437254382543929999254402544125442254432544429999254452544625447254482544929999254502545125452254532545429999254552545625457254582545929999254602546125462254632546429999254652546625467254682546929999254702547125472254732547429999254752547625477254782547929999254802548125482254832548429999254852548625487254882548929999254902549125492254932549429999254952549625497254982549929999255002550125502255032550429999255052550625507255082550929999255102551125512255132551429999255152551625517255182551929999255202552125522255232552429999255252552625527255282552929999255302553125532255332553429999255352553625537255382553929999255402554125542255432554429999255452554625547255482554929999255502555125552255532555429999255552555625557255582555929999255602556125562255632556429999255652556625567255682556929999255702557125572255732557429999255752557625577255782557929999255802558125582255832558429999255852558625587255882558929999255902559125592255932559429999255952559625597255982559929999256002560125602256032560429999256052560625607256082560929999256102561125612256132561429999256152561625617256182561929999256202562125622256232562429999256252562625627256282562929999256302563125632256332563429999256352563625637256382563929999256402564125642256432564429999256452564625647256482564929999256502565125652256532565429999256552565625657256582565929999256602566125662256632566429999256652566625667256682566929999256702567125672256732567429999256752567625677256782567929999256802568125682256832568429999256852568625687256882568929999256902569125692256932569429999256952569625697256982569929999257002570125702257032570429999257052570625707257082570929999257102571125712257132571429999257152571625717257182571929999257202572125722257232572429999257252572625727257282572929999257302573125732257332573429999257352573625737257382573929999257402574125742257432574429999257452574625747257482574929999257502575125752257532575429999257552575625757257582575929999257602576125762257632576429999257652576625767257682576929999257702577125772257732577429999257752577625777257782577929999257802578125782257832578429999257852578625787257882578929999257902579125792257932579429999257952579625797257982579929999258002580125802258032580429999258052580625807258082580929999258102581125812258132581429999258152581625817258182581929999258202582125822258232582429999258252582625827258282582929999258302583125832258332583429999258352583625837258382583929999258402584125842258432584429999258452584625847258482584929999258502585125852258532585429999258552585625857258582585929999258602586125862258632586429999258652586625867258682586929999258702587125872258732587429999258752587625877258782587929999258802588125882258832588429999258852588625887258882588929999258902589125892258932589429999258952589625897258982589929999259002590125902259032590429999259052590625907259082590929999259102591125912259132591429999259152591625917259182591929999259202592125922259232592429999259252592625927259282592929999259302593125932259332593429999259352593625937259382593929999259402594125942259432594429999259452594625947259482594929999259502595125952259532595429999259552595625957259582595929999259602596125962259632596429999259652596625967259682596929999259702597125972259732597429999259752597625977259782597929999259802598125982259832598429999259852598625987259882598929999259902599125992259932599429999259952599625997259982599929999260002600126002260032600429999260052600626007260082600929999260102601126012260132601429999260152601626017260182601929999260202602126022260232602429999260252602626027260282602929999260302603126032260332603429999260352603626037260382603929999260402604126042260432604429999260452604626047260482604929999260502605126052260532605429999260552605626057260582605929999260602606126062260632606429999260652606626067260682606929999260702607126072260732607429999260752607626077260782607929999260802608126082260832608429999260852608626087260882608929999260902609126092260932609429999260952609626097260982609929999261002610126102261032610429999261052610626107261082610929999261102611126112261132611429999261152611626117261182611929999261202612126122261232612429999261252612626127261282612929999261302613126132261332613429999261352613626137261382613929999261402614126142261432614429999261452614626147261482614929999261502615126152261532615429999261552615626157261582615929999261602616126162261632616429999261652616626167261682616929999261702617126172261732617429999261752617626177261782617929999261802618126182261832618429999261852618626187261882618929999261902619126192261932619429999261952619626197261982619929999262002620126202262032620429999262052620626207262082620929999262102621126212262132621429999262152621626217262182621929999262202622126222262232622429999262252622626227262282622929999262302623126232262332623429999262352623626237262382623929999262402624126242262432624429999262452624626247262482624929999262502625126252262532625429999262552625626257262582625929999262602626126262262632626429999262652626626267262682626929999262702627126272262732627429999262752627626277262782627929999262802628126282262832628429999262852628626287262882628929999262902629126292262932629429999262952629626297262982629929999263002630126302263032630429999263052630626307263082630929999263102631126312263132631429999263152631626317263182631929999263202632126322263232632429999263252632626327263282632929999263302633126332263332633429999263352633626337263382633929999263402634126342263432634429999263452634626347263482634929999263502635126352263532635429999263552635626357263582635929999263602636126362263632636429999263652636626367263682636929999263702637126372263732637429999263752637626377263782637929999263802638126382263832638429999263852638626387263882638929999263902639126392263932639429999263952639626397263982639929999264002640126402264032640429999264052640626407264082640929999264102641126412264132641429999264152641626417264182641929999264202642126422264232642429999264252642626427264282642929999264302643126432264332643429999264352643626437264382643929999264402644126442264432644429999264452644626447264482644929999264502645126452264532645429999264552645626457264582645929999264602646126462264632646429999264652646626467264682646929999264702647126472264732647429999264752647626477264782647929999264802648126482264832648429999264852648626487264882648929999264902649126492264932649429999264952649626497264982649929999265002650126502265032650429999265052650626507265082650929999265102651126512265132651429999265152651626517265182651929999265202652126522265232652429999265252652626527265282652929999265302653126532265332653429999265352653626537265382653929999265402654126542265432654429999265452654626547265482654929999265502655126552265532655429999265552655626557265582655929999265602656126562265632656429999265652656626567265682656929999265702657126572265732657429999265752657626577265782657929999265802658126582265832658429999265852658626587265882658929999265902659126592265932659429999265952659626597265982659929999266002660126602266032660429999266052660626607266082660929999266102661126612266132661429999266152661626617266182661929999266202662126622266232662429999266252662626627266282662929999266302663126632266332663429999266352663626637266382663929999266402664126642266432664429999266452664626647266482664929999266502665126652266532665429999266552665626657266582665929999266602666126662266632666429999266652666626667266682666929999266702667126672266732667429999266752667626677266782667929999266802668126682266832668429999266852668626687266882668929999266902669126692266932669429999266952669626697266982669929999267002670126702267032670429999267052670626707267082670929999267102671126712267132671429999267152671626717267182671929999267202672126722267232672429999267252672626727267282672929999267302673126732267332673429999267352673626737267382673929999267402674126742267432674429999267452674626747267482674929999267502675126752267532675429999267552675626757267582675929999267602676126762267632676429999267652676626767267682676929999267702677126772267732677429999267752677626777267782677929999267802678126782267832678429999267852678626787267882678929999267902679126792267932679429999267952679626797267982679929999268002680126802268032680429999268052680626807268082680929999268102681126812268132681429999268152681626817268182681929999268202682126822268232682429999268252682626827268282682929999268302683126832268332683429999268352683626837268382683929999268402684126842268432684429999268452684626847268482684929999268502685126852268532685429999268552685626857268582685929999268602686126862268632686429999268652686626867268682686929999268702687126872268732687429999268752687626877268782687929999268802688126882268832688429999268852688626887268882688929999268902689126892268932689429999268952689626897268982689929999269002690126902269032690429999269052690626907269082690929999269102691126912269132691429999269152691626917269182691929999269202692126922269232692429999269252692626927269282692929999269302693126932269332693429999269352693626937269382693929999269402694126942269432694429999269452694626947269482694929999269502695126952269532695429999269552695626957269582695929999269602696126962269632696429999269652696626967269682696929999269702697126972269732697429999269752697626977269782697929999269802698126982269832698429999269852698626987269882698929999269902699126992269932699429999269952699626997269982699929999270002700127002270032700429999270052700627007270082700929999270102701127012270132701429999270152701627017270182701929999270202702127022270232702429999270252702627027270282702929999270302703127032270332703429999270352703627037270382703929999270402704127042270432704429999270452704627047270482704929999270502705127052270532705429999270552705627057270582705929999270602706127062270632706429999270652706627067270682706929999270702707127072270732707429999270752707627077270782707929999270802708127082270832708429999270852708627087270882708929999270902709127092270932709429999270952709627097270982709929999271002710127102271032710429999271052710627107271082710929999271102711127112271132711429999271152711627117271182711929999271202712127122271232712429999271252712627127271282712929999271302713127132271332713429999271352713627137271382713929999271402714127142271432714429999271452714627147271482714929999271502715127152271532715429999271552715627157271582715929999271602716127162271632716429999271652716627167271682716929999271702717127172271732717429999271752717627177271782717929999271802718127182271832718429999271852718627187271882718929999271902719127192271932719429999271952719627197271982719929999272002720127202272032720429999272052720627207272082720929999272102721127212272132721429999272152721627217272182721929999272202722127222272232722429999272252722627227272282722929999272302723127232272332723429999272352723627237272382723929999272402724127242272432724429999272452724627247272482724929999272502725127252272532725429999272552725627257272582725929999272602726127262272632726429999272652726627267272682726929999272702727127272272732727429999272752727627277272782727929999272802728127282272832728429999272852728627287272882728929999272902729127292272932729429999272952729627297272982729929999273002730127302273032730429999273052730627307273082730929999273102731127312273132731429999273152731627317273182731929999273202732127322273232732429999273252732627327273282732929999273302733127332273332733429999273352733627337273382733929999273402734127342273432734429999273452734627347273482734929999273502735127352273532735429999273552735627357273582735929999273602736127362273632736429999273652736627367273682736929999273702737127372273732737429999273752737627377273782737929999273802738127382273832738429999273852738627387273882738929999273902739127392273932739429999273952739627397273982739929999274002740127402274032740429999274052740627407274082740929999274102741127412274132741429999274152741627417274182741929999274202742127422274232742429999274252742627427274282742929999274302743127432274332743429999274352743627437274382743929999274402744127442274432744429999274452744627447274482744929999274502745127452274532745429999274552745627457274582745929999274602746127462274632746429999274652746627467274682746929999274702747127472274732747429999274752747627477274782747929999274802748127482274832748429999274852748627487274882748929999274902749127492274932749429999274952749627497274982749929999275002750127502275032750429999275052750627507275082750929999275102751127512275132751429999275152751627517275182751929999275202752127522275232752429999275252752627527275282752929999275302753127532275332753429999275352753627537275382753929999275402754127542275432754429999275452754627547275482754929999275502755127552275532755429999275552755627557275582755929999275602756127562275632756429999275652756627567275682756929999275702757127572275732757429999275752757627577275782757929999275802758127582275832758429999275852758627587275882758929999275902759127592275932759429999275952759627597275982759929999276002760127602276032760429999276052760627607276082760929999276102761127612276132761429999276152761627617276182761929999276202762127622276232762429999276252762627627276282762929999276302763127632276332763429999276352763627637276382763929999276402764127642276432764429999276452764627647276482764929999276502765127652276532765429999276552765627657276582765929999276602766127662276632766429999276652766627667276682766929999276702767127672276732767429999276752767627677276782767929999276802768127682276832768429999276852768627687276882768929999276902769127692276932769429999276952769627697276982769929999277002770127702277032770429999277052770627707277082770929999277102771127712277132771429999277152771627717277182771929999277202772127722277232772429999277252772627727277282772929999277302773127732277332773429999277352773627737277382773929999277402774127742277432774429999277452774627747277482774929999277502775127752277532775429999277552775627757277582775929999277602776127762277632776429999277652776627767277682776929999277702777127772277732777429999277752777627777277782777929999277802778127782277832778429999277852778627787277882778929999277902779127792277932779429999277952779627797277982779929999278002780127802278032780429999278052780627807278082780929999278102781127812278132781429999278152781627817278182781929999278202782127822278232782429999278252782627827278282782929999278302783127832278332783429999278352783627837278382783929999278402784127842278432784429999278452784627847278482784929999278502785127852278532785429999278552785627857278582785929999278602786127862278632786429999278652786627867278682786929999278702787127872278732787429999278752787627877278782787929999278802788127882278832788429999278852788627887278882788929999278902789127892278932789429999278952789627897278982789929999279002790127902279032790429999279052790627907279082790929999279102791127912279132791429999279152791627917279182791929999279202792127922279232792429999279252792627927279282792929999279302793127932279332793429999279352793627937279382793929999279402794127942279432794429999279452794627947279482794929999279502795127952279532795429999279552795627957279582795929999279602796127962279632796429999279652796627967279682796929999279702797127972279732797429999279752797627977279782797929999279802798127982279832798429999279852798627987279882798929999279902799127992279932799429999279952799627997279982799929999280002800128002280032800429999280052800628007280082800929999280102801128012280132801429999280152801628017280182801929999280202802128022280232802429999280252802628027280282802929999280302803128032280332803429999280352803628037280382803929999280402804128042280432804429999280452804628047280482804929999280502805128052280532805429999280552805628057280582805929999280602806128062280632806429999280652806628067280682806929999280702807128072280732807429999280752807628077280782807929999280802808128082280832808429999280852808628087280882808929999280902809128092280932809429999280952809628097280982809929999281002810128102281032810429999281052810628107281082810929999281102811128112281132811429999281152811628117281182811929999281202812128122281232812429999281252812628127281282812929999281302813128132281332813429999281352813628137281382813929999281402814128142281432814429999281452814628147281482814929999281502815128152281532815429999281552815628157281582815929999281602816128162281632816429999281652816628167281682816929999281702817128172281732817429999281752817628177281782817929999281802818128182281832818429999281852818628187281882818929999281902819128192281932819429999281952819628197281982819929999282002820128202282032820429999282052820628207282082820929999282102821128212282132821429999282152821628217282182821929999282202822128222282232822429999282252822628227282282822929999282302823128232282332823429999282352823628237282382823929999282402824128242282432824429999282452824628247282482824929999282502825128252282532825429999282552825628257282582825929999282602826128262282632826429999282652826628267282682826929999282702827128272282732827429999282752827628277282782827929999282802828128282282832828429999282852828628287282882828929999282902829128292282932829429999282952829628297282982829929999283002830128302283032830429999283052830628307283082830929999283102831128312283132831429999283152831628317283182831929999283202832128322283232832429999283252832628327283282832929999283302833128332283332833429999283352833628337283382833929999283402834128342283432834429999283452834628347283482834929999283502835128352283532835429999283552835628357283582835929999283602836128362283632836429999283652836628367283682836929999283702837128372283732837429999283752837628377283782837929999283802838128382283832838429999283852838628387283882838929999283902839128392283932839429999283952839628397283982839929999284002840128402284032840429999284052840628407284082840929999284102841128412284132841429999284152841628417284182841929999284202842128422284232842429999284252842628427284282842929999284302843128432284332843429999284352843628437284382843929999284402844128442284432844429999284452844628447284482844929999284502845128452284532845429999284552845628457284582845929999284602846128462284632846429999284652846628467284682846929999284702847128472284732847429999284752847628477284782847929999284802848128482284832848429999284852848628487284882848929999284902849128492284932849429999284952849628497284982849929999285002850128502285032850429999285052850628507285082850929999285102851128512285132851429999285152851628517285182851929999285202852128522285232852429999285252852628527285282852929999285302853128532285332853429999285352853628537285382853929999285402854128542285432854429999285452854628547285482854929999285502855128552285532855429999285552855628557285582855929999285602856128562285632856429999285652856628567285682856929999285702857128572285732857429999285752857628577285782857929999285802858128582285832858429999285852858628587285882858929999285902859128592285932859429999285952859628597285982859929999286002860128602286032860429999286052860628607286082860929999286102861128612286132861429999286152861628617286182861929999286202862128622286232862429999286252862628627286282862929999286302863128632286332863429999286352863628637286382863929999286402864128642286432864429999286452864628647286482864929999286502865128652286532865429999286552865628657286582865929999286602866128662286632866429999286652866628667286682866929999286702867128672286732867429999286752867628677286782867929999286802868128682286832868429999286852868628687286882868929999286902869128692286932869429999286952869628697286982869929999287002870128702287032870429999287052870628707287082870929999287102871128712287132871429999287152871628717287182871929999287202872128722287232872429999287252872628727287282872929999287302873128732287332873429999287352873628737287382873929999287402874128742287432874429999287452874628747287482874929999287502875128752287532875429999287552875628757287582875929999287602876128762287632876429999287652876628767287682876929999287702877128772287732877429999287752877628777287782877929999287802878128782287832878429999287852878628787287882878929999287902879128792287932879429999287952879628797287982879929999288002880128802288032880429999288052880628807288082880929999288102881128812288132881429999288152881628817288182881929999288202882128822288232882429999288252882628827288282882929999288302883128832288332883429999288352883628837288382883929999288402884128842288432884429999288452884628847288482884929999288502885128852288532885429999288552885628857288582885929999288602886128862288632886429999288652886628867288682886929999288702887128872288732887429999288752887628877288782887929999288802888128882288832888429999288852888628887288882888929999288902889128892288932889429999288952889628897288982889929999289002890128902289032890429999289052890628907289082890929999289102891128912289132891429999289152891628917289182891929999289202892128922289232892429999289252892628927289282892929999289302893128932289332893429999289352893628937289382893929999289402894128942289432894429999289452894628947289482894929999289502895128952289532895429999289552895628957289582895929999289602896128962289632896429999289652896628967289682896929999289702897128972289732897429999289752897628977289782897929999289802898128982289832898429999289852898628987289882898929999289902899128992289932899429999289952899628997289982899929999290002900129002290032900429999290052900629007290082900929999290102901129012290132901429999290152901629017290182901929999290202902129022290232902429999290252902629027290282902929999290302903129032290332903429999290352903629037290382903929999290402904129042290432904429999290452904629047290482904929999290502905129052290532905429999290552905629057290582905929999290602906129062290632906429999290652906629067290682906929999290702907129072290732907429999290752907629077290782907929999290802908129082290832908429999290852908629087290882908929999290902909129092290932909429999290952909629097290982909929999291002910129102291032910429999291052910629107291082910929999291102911129112291132911429999291152911629117291182911929999291202912129122291232912429999291252912629127291282912929999291302913129132291332913429999291352913629137291382913929999291402914129142291432914429999291452914629147291482914929999291502915129152291532915429999291552915629157291582915929999291602916129162291632916429999291652916629167291682916929999291702917129172291732917429999291752917629177291782917929999291802918129182291832918429999291852918629187291882918929999291902919129192291932919429999291952919629197291982919929999292002920129202292032920429999292052920629207292082920929999292102921129212292132921429999292152921629217292182921929999292202922129222292232922429999292252922629227292282922929999292302923129232292332923429999292352923629237292382923929999292402924129242292432924429999292452924629247292482924929999292502925129252292532925429999292552925629257292582925929999292602926129262292632926429999292652926629267292682926929999292702927129272292732927429999292752927629277292782927929999292802928129282292832928429999292852928629287292882928929999292902929129292292932929429999292952929629297292982929929999293002930129302293032930429999293052930629307293082930929999293102931129312293132931429999293152931629317293182931929999293202932129322293232932429999293252932629327293282932929999293302933129332293332933429999293352933629337293382933929999293402934129342293432934429999293452934629347293482934929999293502935129352293532935429999293552935629357293582935929999293602936129362293632936429999293652936629367293682936929999293702937129372293732937429999293752937629377293782937929999293802938129382293832938429999293852938629387293882938929999293902939129392293932939429999293952939629397293982939929999294002940129402294032940429999294052940629407294082940929999294102941129412294132941429999294152941629417294182941929999294202942129422294232942429999294252942629427294282942929999294302943129432294332943429999294352943629437294382943929999294402944129442294432944429999294452944629447294482944929999294502945129452294532945429999294552945629457294582945929999294602946129462294632946429999294652946629467294682946929999294702947129472294732947429999294752947629477294782947929999294802948129482294832948429999294852948629487294882948929999294902949129492294932949429999294952949629497294982949929999295002950129502295032950429999295052950629507295082950929999295102951129512295132951429999295152951629517295182951929999295202952129522295232952429999295252952629527295282952929999295302953129532295332953429999295352953629537295382953929999295402954129542295432954429999295452954629547295482954929999295502955129552295532955429999295552955629557295582955929999295602956129562295632956429999295652956629567295682956929999295702957129572295732957429999295752957629577295782957929999295802958129582295832958429999295852958629587295882958929999295902959129592295932959429999295952959629597295982959929999296002960129602296032960429999296052960629607296082960929999296102961129612296132961429999296152961629617296182961929999296202962129622296232962429999296252962629627296282962929999296302963129632296332963429999296352963629637296382963929999296402964129642296432964429999296452964629647296482964929999296502965129652296532965429999296552965629657296582965929999296602966129662296632966429999296652966629667296682966929999296702967129672296732967429999296752967629677296782967929999296802968129682296832968429999296852968629687296882968929999296902969129692296932969429999296952969629697296982969929999297002970129702297032970429999297052970629707297082970929999297102971129712297132971429999297152971629717297182971929999297202972129722297232972429999297252972629727297282972929999297302973129732297332973429999297352973629737297382973929999297402974129742297432974429999297452974629747297482974929999297502975129752297532975429999297552975629757297582975929999297602976129762297632976429999297652976629767297682976929999297702977129772297732977429999297752977629777297782977929999297802978129782297832978429999297852978629787297882978929999297902979129792297932979429999297952979629797297982979929999298002980129802298032980429999298052980629807298082980929999298102981129812298132981429999298152981629817298182981929999298202982129822298232982429999298252982629827298282982929999298302983129832298332983429999298352983629837298382983929999298402984129842298432984429999298452984629847298482984929999298502985129852298532985429999298552985629857298582985929999298602986129862298632986429999298652986629867298682986929999298702987129872298732987429999298752987629877298782987929999298802988129882298832988429999298852988629887298882988929999298902989129892298932989429999298952989629897298982989929999299002990129902299032990429999299052990629907299082990929999299102991129912299132991429999299152991629917299182991929999299202992129922299232992429999299252992629927299282992929999299302993129932299332993429999299352993629937299382993929999299402994129942299432994429999299452994629947299482994929999299502995129952299532995429999299552995629957299582995929999299602996129962299632996429999299652996629967299682996929999299702997129972299732997429999299752997629977299782997929999299802998129982299832998429999299852998629987299882998929999299902999129992299932999429999299952999629997299982999929999"
  },
  {
    "path": "src/test/resources/data/zstd/multiple-frames",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n"
  },
  {
    "path": "src/test/resources/data/zstd/with-checksum",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n"
  },
  {
    "path": "testdata/artificial/a.txt",
    "content": "a"
  },
  {
    "path": "testdata/artificial/aaa.txt",
    "content": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
  },
  {
    "path": "testdata/artificial/alphabet.txt",
    "content": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
  },
  {
    "path": "testdata/artificial/random.txt",
    "content": "wJcW5D5H6h5t1aLrDu UWVIBLQI8oPYMFXGTgOyLbpOs8p3iMrN8snWHyqCiIVZEUln jkIB9eepTaQ!Z8Ynw XhCeLNhvBYCpmqUZbEBjhd8LisYMYOxJqxTDN1JaBXiAOba7KfN8h2lCz6rkFc9Sq8CMftk7o!IH6ZkGzAd41W0n6wPI1ctHnPwtON2AZwIHk29msiWOrzKfqESKxHbQIW7Frxrm06FnCRd6m6IsERZDmTuN598wRF w0!Z0lDal2ArFWCl8vQShH7!xNwZj0TZp0FTAYxjkwU1S2It4mnTStm1OJrLZDxrnpR!DNN4Shp7KIKlaQVvSiIA6HiYdMyOr9JOlTie6Bxgu!9hggEsHwq4hPxRPp326HbDKoSN6vkT8s9JkSPFkf5yUElcmtX7lGibojIrHu2qqotY3MICtqemw0LKw dFMEMlU8Xt6bGDC5NdDLdkhKoADzBtNlhJp7PSpJjepRoxgupeK! 9SaJ7qRDQtxqJtVusVrRr2vU4kIf0X GSfEKzAGIbDlxZZnFTtbLZx4WraAnsb45c8YYdqLSpl3qUAfN4rxaAD SQr1!c mV59aFZ7Nenc1mPtcvQQsgrUmjYdP59tQ68H2wJEyt!7L4byuJDAAbZ8s!BqqMSx!OQYuoct7opM!bZBrBW3Dt6eyehCd9l!hZ4KBGLhKybueN38rbh8NedYUsiSo4xBFYInrWOpdpiD! 3h8XwlI1Unuu5GiCbBDUGFU2rMJEvUCumFrzdtg6fjjpr4odvtd0jPwX2Smc5lBuMJM fDRb P5h5ZeYxWVPQ7V7kUQ!g0iSfbzyhnzL5EtZxBv9EKHqh8wHwBe!stj5DDLmAurTNCm0SEKsIu4o9ACZqJLzIfiQsFvw loJXs!lqfhpRHBAp3PRXtEe6AsqDS7D1tJwE8V bTqXluWzH3esiaeySLXRxLAEesc!Uwdw1b9CEw3XMTUHeJzFDXqB1VRkMTAgpGpnGP7a7Ga9bKh8r!8 wtxuLOaqF!TIbztxICghR340oB8RHONn0f5jl0KxLGTesp6!B4tBCVnlDIOmvoa2zC4EXJ9M2hdzNhitkrynDjZKQl5WdCnwX7NWvuLFU k5ehf5Z1qVXhBvExR!TC9PbEga9Jje7YGWmbvWg5JUjCkBGcG!gWMLZnVpaSXYsu5dnNHzhrfPC0gQGbprv5M8NGIMRihI2xLDieIRvTRDbCfec1S1r05Gofxris5oyhX8cg!HXgnA8af49WJY9v0tZHRSIW8VH5CjvLSBPQ86YQ4Yhrs7pc2ptYyfjY6RuWOJ8mLUQloj1oFIgNq69SKMFnH7gm9pvkZM2LsK84WFUc!lPmlVttpUqUJju8plQ7NckU!rMMgWF6odGxgJ0Y5kWZgwNeoa4I80eEbIiEoI08WMIQVshYIc8wm0CjOQCLQA6yqV43hAnHjjPIta42uVWUHQ X4qa6K8ylp9MVlXV0OFoyj8LXRzVfVQf!yGoqW1EQWuz1C0jM5lJ9Zmg2d5L2FhD aBFRgi3COkf4huEi4f2CdF1arI971C6Iy2YexegrEYwMD1rVKAHohm6TtWNoBtxR!iuGRqRMZ902EOZC3tS1GUYpc3zAvyfeyvRmDGpnZA9BA!LQFWH8HxG2ou!JbPpmlUfjMiRodHQh6rmffKfrCj5RI5fmm27l4TP5VWPk5sG C85TXyViMqnN6yOrDW0QrKKOUGskCeWlSz6SKQpHORAWLMOuA7dJNEZZayli7mtKTV5yykKhIKWmSsT7bYRV9BaQt 4IOuMyomSvm4mx20dOLLdRY8mHuH6aR8cdPVGpI9x2ixvgvVhpbAoh!H8d8Xju7gtsfWuiVuuHBXqiutXMSmm3FYuXRvjs34HizRPoUnyxev9OnM9vYNflK8J2RMwoox nj9lbtElb57iIwvYdk3Uli7Hbr4zLnKa!J8rSnYpY!9szgL9!SvTLtTRq!HS0FwNMqrQ3fyTZp fchOgwU9YP4iCGpX09uXG2!us 85AOVRLIzqVd!fl35WqdTRg mEaHVvrT1MlSCTIg41nNq5Car3DwNDC3QtJCnsy2i54n4U52ymXLDWqlcjNriWZlQ8OxZRQrWJI6b4NqQNqye0AWjt0Hml96W7efWxBmmyizfIMJNpRleno9ZzHuHMdsYQWkc2tlaQBX8azJf6lXoPQ8j0riLf9soL69Mvyocv9tmWx6NomAoKUP0g5wWVLJl  e8WaXDX0RQmLQikXBaOoSDVQEhCamPqbKme4JoF0CRrr486vsttT6GNXTxbAeK5oDQ!Ne6Fg8XXBFMGMl2JkMaSdUW8JfKPT1GQGHlbUpitcz3V9xz7oL!qI9gBOsRtRDRfsxRlo8yeM47WKzRycVNExhII6hEZFwf9Qw lCQDFUKrUSajhOB0CDnIUvS5ycbcemTQW!A5dGb3mbdvX9wmgyP en89yI2hcfeFdowrwQAtXCp7kti4I5h5tprXpcwJsw8AplbRn1s2ixwBmeYLjbuXFzO2M3q9M8NezR2DNgOO9OJxVDRuTKFfiaxOG2VRdetDPyPgGA4U7UjSprxO2gx2LUwehjgvvHSciMCe5!pwI3CBhuf2C!O2eKx1jtPzJ6L85! BofRco3z9Yqc5oGnhedDyeC9ZryX120j6yO83ugB4LLnCEz5qBpJQ6h5VGD!NJcenwx7v0mREm5LsPDiRLMjKE4jhOi6y5LzP1xRm39KLEkSHeIeZdo2QQFmrWTvYGzBkLwM FEuPr5tyGbNzRd7MBh65xbpYtEgpatu6qYW3FUNS0GHy2leQO!Rt19fpOM64NKoWWpraiHb tHV8NXZFHJRZIU47R37OC77a1A4HHYdRT8lknmVRps7KS5Gvixnoh9T3eD6PrDl9 V2Ur!RWoCAztgLN1bBHKwIMsmd3ZkMCcm C1zX7Qwd548t2IosJqkl1RWi0qi4Rn6zqC4u Uk6ZBgtsUVKHAJVSzeBqJxTGrhcNt2apALrMEwaTYUT bqPwGrvesiAJarprBAo!6yo7lMR2w!P 24gS4bQcAfFVFPZfwnO9BfGrkwDzByccM6y3vTEHVr!TJ1rwtOW!mpT1k4RN2avwv2rqk0EZf4ofMw5opBo6TZAsg!OWGudImRklekA8bGhsJQG5QNWitAvaw!lVWAG4DqC7DFrlUCgUy61 UgJVEMphBzYxu4cpw7RqiARYMh7soEUW0FP5q9WnEcr3d8iLaLryJseh0nH yE5TqZuEipj77SlyzE47wLRr13TtG0Ck08kc4dqvHsD!UOHtkc MTUSoxfMwnwvJaVQKUZ0gs95mWxcdlVa5X1Acbx75kbtDrpYzgdQDrB ps2i BNsRXT5V71aZn2jhcllOd8RDUbKBM8EuoRzIcrF p3FeFiyCvLiXjU3cuOtv2zFb5r t5aN8ifJgvjP1c!aLk9O6I6BwaGfKAbkQXLC2iNN4V5YuLnT0oF54Sw9HPUsNOikIZn8uK3WvK25TEd9p6l9 BL6RQx1KFzrFTspU6W36QScnU6QD7Ck463vCOLTj7hn2i5tqV7l34pUgvOblpgC 2jyBKCMWFRNPpUMcoo2El5So91df9OoKrpFvPZHiBuqlukoLe7uX31e9u1ZboNmzf 0ZzU1F3EusjStvYNyFDNTVCIJWyn!E9dUnBsHw9m1FnJU98n7!2eXxkbZsYvXoUEDEFW58ipFFL6FTqaZG9mHJylDxDDs06j4BPrXlmNV KvJp5J3kmKZqW2jmrOtVqOcuIl52mawd4tFnwilRiRoJBlCxSNBcHk!pYyKmS3lLxccyV2JVeWHzUOPNssb3RGeV1fHpFXkVitFkJI8L!sUNPZUSjD0bFUMxce95zc4sZUuyNq icshOO8eX7lpvYzTgOjPX H4W8swZpyZJW7KhwgONZutsfdgVEfqTEfIq78YrQScsyq2K5RY4R1YhoXR7x18fkLuwFnHQpg8ZfqMdprtHr49nJQPyxHywsqELHQjsSvxV7KvrKksMik8kZ!VhJziPqOY ixMr8Pd4 2D0a5qCWI 5DUp7yYkmaJHuhfq!YG8CLFi 1p55O2erfrQam6!TZ6z2rUr8 A45uDQhhTuk8!fBZcs mbQaFlds7lRsL PuCN6!!jVucKCNqYF195x3c6K4azs xLAvdfYcUiIBX1TlBYO69n0JW4D4ISikqhEQbjLQ5Oei7QnduxnQ3xtViHxfaINKlxSEUfmAYmz58jzz6DWnnz7rFPRDYlZqHcv7lUoDMurvfUw2rieOD eU8oOOSwO8hfOMkDiHwLebd2apc7XoGgtOyBMsb5CSsc3EEwbjImmvooQWe7uJi5V2sTAw2KhW7cwTCH4zPnJPPlpHoqj9C!HgV6ZT2kbOoodlD2RLHbWdkmthXS8zcuraNpLC4D9yTH5WVrOXV RxnWJ4zKkkQ9rHwyprP u9N8QaQy7GRoVL1u97jDycfLdvy1cr!Eu20uZLj0xQ2pT1l2fiws A9N13AH M5o8QjMgX7tgxvT8x zYYu3ALb353z73S wgs6PQvrGxYFwmtq WJ7cdvWgp!YX5xsHYzzch1yTUrYIPpDbBfwIw8lT2N8g3B!66!y70x681Hh4x8ZzcpTYC!13wTBitP6ighohkbpsIhVe7 1WwKJ7MwlZNN7R72tLBc1BKUwg74T3nXJlvRr2C5K0CDOKcGlT6KpxolehsXk6JiXvNby7!8gMjCbBMJirO3Cx26HeR17oN4x kjExANltI3HoPEgV0SRxvmSTbCpQOvJ6MzzvI3zl0Ald2!G9XJA7bkcPbSwUEK6AKDaylPX!OS1ibZzGoAZyeH!W5AkKo1e7E vcrQ6oJKO0TAsuJ4IDUpbw3sS3Cpf3C6Kj4Ejk uMHSaYA1U7xBs MZbXnKmUSIO2RXzZ!52wxpM2bIwmMg ohq3WwItwM6XcRBQ2vIoTAVSoFdAmakfAQU3oK5fe3StaUPJo57tmR9T1ya0qM59Dt5L36yQqyJb2lciDIpkuH0oythe1JdIQ8dx3jTAlSipg63PPb2!b2HtM0DrzZIdS!hkUGSTQ nIqu8!gokO8DBk5MDQqqjYG W 1HTRmbc d!ZrusyJ1Med7mB8rB34 5ykYvRRlVjkr0!uGRsLn70G6AA9MS8bnt80D4K5b6DpNQedXyYCY jaagxmTEdbmcXA T!R43fhZ!N6Hac3gFv464g0yIBhTogWBGpu6uncy89zdYiqbydUyu5oRuhSYwWXOajd6HCeV9eNG3MOynwWFJYapshJInN 3EHcQNKzEB4qUTwx!q72sdZRoBL6SP9ykekB9sQ5MS XbsN951nOYoqToXf2aLrfjZobM5t8omZD5XpF79JfXIh6uwPxKBlwtx7cAPLEXxxPiBeG4WtuxzRIjByw0zhEIaF9wUcIdGW0L7a95IGTK9gl3DdLWRvf2PQFLf85RvrcGCyRS8sC828UqF8gYVLdgB9vOg8TFhJuz6xqQAGdTC3TlsUsUkR6JBP4B1W9zZj3Pr!509okU3GSmDnaamcNiyl5a4aBZOHm I7R5v2NEonHDkSKQsIl7xGFIDpI57AWNamOqQkp5tLOhH!IE97z0tumwM1mk3sr9I9L2RSLQT!TjVDgJX3CyFB3Jq9q5xlsZ14MjS7cDaRurUYAZdVgNowDWbB!Nmd8saRW65ZdXzZ6pEr1qvEqVQEklCX0h9zl3XXpwx6f5A6qHRbC3NcfyEGQPMTyGsRrSkWIGQiTquv77 sLuzYzI3 TlQXFCYPaUtqJjrlqA!NC1v6ux9x5ZrZR61hDruwYwmmvYPTZIRmoHy0BdcoJvCbEAVUj1tK9y!gQxnG5XJXkJZLL01i7i54C7fDWYz25i8iP9!cGcVyOkdtsFctaTGwqFx5Z2TNgpdu6U7yfutf7KJ2y6rhQOUoxqbUnP4!UhyQjbCS6cbWKRtG00KRjOVm7wpT5osHhnQb3SOege8mrhKQVjlxrGKI0DZte7HTfrLwHMC0br!rtDm!AOSiMh Mv5GgM2onnKgI1N AHXJ5UgGX9Gq6Yoztg INB94EgovzREnPAOp6DIdwCVdWO3u6DHogVGjt184miKarc8F5 YediIQi0tHKKzr3C8uvD noX8r1HgnMpD6wRhu5qKKrrVn3Jy5OVKpAyMAThplXu2rs!WdLhKfYwkk4Jm32701WTwG7m!qBCRJDaM44L8o81F!La75BumQJdrzuY1Jz9xt1mcxs3GbZmvPplSdQHqKgQICkZ2weZu4WZpTHSOiIRt6OSRohMQay9WfvPPpiiSTBOGUu86YDcCRnl7n9yFR6QiMtvNkde12sT7dqB4HCel2PJb7MtjVNqkNwkc6yczjMclN7wK1ZgrKzxJqI9RntD4DqcGhB sgDxyb2EU194pQrYeA6B3DrZ BRmOluTvWXgs74zD3kOaiRYLwNZCJDe5LgdgJxjof8 iCGtgv820RyvrESJgLYQanEmq bOO ir0PPOrQ77S3pdDjssBHbqXbXokr2n24Xgn4O2AIGHpsmPKWgadpsXCZn6!UgcnDQC9e5lRtf8zTVcX6MhJcA3kqFHVkKdC3VIjpmg03kTc2c6l8KEuWQmYX4a9ktqmZMOjSJXw55PK1HfvzXbflCFOomXyVJBnR9HZUAEm1CXiWQN4lsxm1PE0aKBRqOB02D0gpo5mRTRtrU3lJhYUKqGtJkg!i5Zy1RQjxGF6BR9lxv48e1tuEDdlv!nKAoywzbUwoHc!XfG 7v8VATmiVY5FwXXM36Kvwyg 5R1LUb1k C9xZn7Yhpt730Z6vhAPSE9Dh9R1807OcTnUFPWwWhkP8jaMVGrdcx9900NH41eBqdZJNMEwQp5 jDhpnsj3bItFy7BL 2 5s yZ6rUW6g6MnA0bXRr3Zc2qTHubJqIq6mOSxKaorQaxbhVbmOHDJSpRQJVoCpzVnKpKdGHpyWnTzLb!rP8pMTg6r3dxIis9EysLGaNYvp7zkDvhGxqPrrgGjuPyJ2spv3JfF RgwVHMcDrktCdad4gsHasQ1SJ!7rPL6V9!TiwlCWP30iIdvpWqsIP3p4bCFywCRvZV4xNSeJdokSGexhGmLRm 2AwKWe!ThVu2KtCutYtSUW!2fsXWC6C0j0I9dYrQRBHhEpJKi6g2eEdDQvXicySh1tM42Tl5Z1Jepro 1gy6yQTRoVOdaXpE AV4H2j8iJu48jym0xXApdzvxbrq4mF!OjlaSEdxCKdg13immTkjBzfPhkC5JiwrRoI1Dr!SGTof 3kyQe92n!MIc xqUlXtk tFM0mph3zSEoztXX!FBMWkrAW1aExMDZ4Ro2cTvA1ORCwjyrb!8rXtXD6KRS5Q429Xr5caCYbYreQUkWZrItoLsp6kjQWbEOThT2!Evfkr4Z2fRLTHhIdCUkWrQ869faSqqXbTEjaE4HCqJn3b2nZK5TZ2ClmwYUYmGIg1y iQbMjZeNBDDoHU0VMPjLLisHyMp6Cx7Q0m7a2JTzyCGRgGh2hiNgfXtNeNaAUNlp56mcmlKixlIxLFLNzA8yzMzUMOBjsN0sQW8PGF8DCffMhllS1bo! Yuy2OVs6PETmj4VkjHHd07L2hBqT3b!5Qkbz2 EmMHW2DY22ElCTPGegmn1O3L2MKnyur!AS5hWp1BibzHfza003gqX8BT0d SvdKrf7ZcgtvlqSOJhu8gknqcE15sXGZXoYbVrA5i3BVciS!84s4cqkTqmnJQV2FE4TTr1NlHke fkihkDbrDzwFjBFI44U P3u78kQbXJxRGUpmxjtQePUOoCwA7e0pnNqP4gkKA8Iu 2tA6Z69sroWnW91YW0OGWnoai580eBfxdil!eg8378zXDXXPHWzWHj!Z9LGuyBbUsc55Hp5zLeBTsc7 7cbjzjaLbBYZ2ZH5o58apfr7a3SCnZ0Zt!Nbo18ac6aBey3esQoXzq7NXf69O2yeTPwW D8Gdl8N65HuNh 34egi6ihUc2Ye6DEUSDLn6w3PfI4VOLcVd6uLDPt8JXhRi7HaM7WJIjYyQOcmQuzZepSgsKeyTVPnIQAO5fJg159MSkbkxV3fnhwjks B8TQu r7qMk6wnqDipkMyZffgajbro bnqzz31Bt9FVbFhb!fZbps0NnZfbAcFwwOeNKFcSHALS2RZinwPYpmkSDEn89NXEeBjS8UuKDyCGGMSNK4pDUVy4qB5EEZQYAcga1!QRqh5qYQpgU vOqaOIIbnP3ft25NAWwgoXCPXF0zH0pjnaH7SpNfN0!27oXEsMLENzqjlERNou9XLJawV0VKTI0klcmTsJfyo C!rEcLW9ViM0v6zxi9J0MafSMEnEdEp8EvTUD7JAIeZMkmoMuQ8KCXxmLZ2liqXVs5E5g3tWFHeZnU0wNm21TVC9p9gjQJ2Q1r TW2Y6fazzmpaQ WTb ZtzzvPXVvqbzusGlomfFSl0uDQWDFYMaoRqia3N8Pckw2CIc0X3ihoeRvb!xZzKyOfAViVSj1X TNDTaq441tZ9Yzz!MrOo0FT931wgdNXLV2p2EzI aX3rV0 wqhx6II99s4KHBSc78CZw2rsbjAFH7!NIyCuaimwD6AwvMKH1XpejSRSHBGQic60D9IUbRAY! T0mYQ3p0Oq1M7f5OHHUrNSrJhFVTcmUZukSPqP4ZBxarnAVVBgI RCSiASHsIfJbNoU!1Td4C1!OqJ6a0dMwAjn5mDPMlQ kkGoBERzhEKNz7CsHARkYTBhBohmKt4NMK08m2ZNxfFrMUAL47K4ZUa3e!1ACMgwo oadb6!rquh!JckheYV3bNMvnDQHFJsM1hz!MdqI8h3nol16ZcWIOIlgzSqRnWhJt4Phv58!2uLOngDv1weNLfPUEhSEfQ6v0t7BuXGEoA9un0Fi8N to4ZfVZNdXRrnWwA4wAq2Ed5wRIqOf SAuHnMXd0dUIfnvt1Djycpu8TLdkqSrs3VeRI7bf5mjpc0clkkMt1lxbSvRf1uf3Hr3IH!I2WSvpFy3cJH3Bi6S3F!spEHxFM6c4b5z hHWSDXUxT5dTqDpRC6Gn  OULsOhZpJghfdajRELj9q kMjTVR6AUy3lmbll Wlazl3rSSv27hzbL!TqhiaYKU7lyxbn7MvkSfGohB7okumSOX2QPa3EwG4l 5eiN8zRzw2ILJxE5C5vYFTPjJ6RQLGgntARkeP7uMRtKjbx!QNdD2U46f7RmxFyrxX2H3hL9gqxlEJt95!S6j4Of1WyNz4gmhlj1FekphlNkPZiQhpuoglgmQJEipiAnfbaGPbpYLbBUoGn8pOBcE4tc9lV8BDxYICFlctxRMgLcrfj1DJlR8clHPpoW1Tf8aEX3v7lBCs2Bc1JfdVl5UT416BAFKVkOGZtJz4nT3d!3RfVp2HhBZwKb9 5F4dhCX9tu9ft2IJyJ3jklIjrd3FcvCbLi!QvzdLD2fHCus4x ya8A7ddzLEbuRKLAOkIcUAo8kQTBXNjRlkpWxqg26Slkc9URy92Uim5YhHurA4yrNJf9eYlNVAXZZMsilpB1L4OvTlHXSTs6O9LjJnOc3nV80iKK0Hc8MXjhQRk1DgQFYFUdO aa1OmdCqg1NuseM1rkRkMXXFCU2rwYeQ54LX6!IlCa34vh5Gk1fngJRN Mf09VSYW26VNzmMXf KL3LOkJv!Q1btJCf7fSmTH1yLHvr4rvIZPXRvdydhEi7sq9gurG1!9jUAxQ2DqLmwIUQOjKpunSjwWqh8jMqsksHvaUhrqS6OHaXKvHnJwko7DnHDISR13pIsB7vFDDIDN1FC9!F3vXNN1T MOZvldpqcGScFeP3PfjzsY6ynaX3PadX jMXA8e4OX6hqDUuJVG4BVTvHOBBxDZE2RtQZNBcgSCe2jZpIebDNJn8jts LLXuIqcf9h9SwgAuM7BZteW3jhk!duqNHguYONfikBedwrRk58XlaSH37wL2RaS7UKFZS3hohLXECkLoUp6PeqXBkoaHNUMrIyTDot9Uw057LvNRoy!jdJ!ByIoZJRmQ76DC429bjRg wDdJh2Ev1l2QIjUlRAXC6!xZMjkXIFgWZbS3qNLNq9L!kQF4Tc26R!1llLmtsS8OcM8qFxfYzJcVyQGRgHxlL25123wcHWsIlUaZQxzbcdzBH!h115sTT!sSmigmEeuhpElPGzpZMPch2geihGze2 izd2fHzsWPiB53YLjYNgRr85nqFrWykU9UifwsPHnJq1qdBaiqYouPC!RAdxkVVdk!p1efgnmWe9owj4MIT 39n6nFtFCkC2rZAmYbRlAFiW3dgFP1yN2lZ6zEhC94VLJ1W1m6LzHJF!NNR EqBLuCVHjEU3XSjE7wk4nUYEZ1mYinHm8WhsHZ31CZ5Z41RKKHjWmQnV8kD!OHcy8SVi2GtVOBiorRt7uk9PlNnAJU!HFCtdSs5TnM0cKUuZfMjgAwJM8itZ7sqwMoUnaF5Zm!iYt9VmYEoOQPKtQq7NG5GsAYBkd78D2BIuG3XLpbpYIbpFkm3ts3xgdU6aZnWMq6pTyhLviTDsKBUe0xhrhG2k0qUsGY4uMYNoEONbu6z0bGzPiz5wsC66SFQkBLylL63zeQrt2ZtN6a8RFRHN9nhl1HCIPW1GToowBBtub8bFlnBrMK8rR1CtDnuKaANctzD6!rCq!lFRtTUgqf5Zo8BC!8U2Xg6dre9gs8WZonN!szJoDGOFQ9I6tfGCKZVJ 1aucbQoxvuvTc7sB ROlQB!e7HXbIl8n0X0bz4UKw7cLnbTIyPnrfKB2dHvTZsPbooCSad8EG77L mBarSM3vxSzbgducL9aVxW4zu0qM1N1amlvYTWeNUQ9q255OAyMRnnsAS1ENAi3qzuP76!00miUEfQSt8wJZHOIGpDQfHrH8bJpwYzRpTXv1ooL4iu 0dNQojDyXqpCcbuHSo5PAuYttoTZ38hslTlJDY1tT0JTE7AORcoA73Ou4MOJdmECjiIr3UkFF6XX29qnWDrnQUdrYfJUoHSLnfa8KC kdEjWGUvXfx3bH3tbmHhb E8MbdNu0siu0!jIwwIqaRvyGmc76VpeJNhinG9Hxw7nAvYuA!lgKDNdWraq8rctb3UWI0X5 Xn7 p53c3gBUUooGsw6IESm6EiW1ABtfNhrMP2VU4YFyUj 6obzwY7rz20nmqcTPNthMjLFmeV iv2Er6T0KPC3PzjweB3WuneYBgdSYbIFdQk8Mt0F2dVJQIqZN5FDGUOZIijNQtmdQ5lke0!MYwYJKYtN6!B7Iwn736DrBa!RiXM31nTlF7j5hCQGURI4xjTfW2u8utKGuOVUnhdpzJWxnjBfereL7c!5kC0IXU!fxglzVBuJk6ZKSBAfSW3nHU7kv39TIbtSuvCWfc2tOdqoK5H0c274dZoQJCDsm3DE8cMZYTo32ZFzjI68eZ0OIjremve7ftKCPfWBO0I7TJzfDThzdSs5HzChWyWCHIlRded4gXzte8vDUWW84h58tqpo!5LYGgS!HX0witrKPHCQLLVqiF2QGTvsq Ic2OgrwxVOFb7t2S g1wquTop! MdYSPCDZ7wbnIByRMe JKuhCm7K0SzINqRZF6PIGuFRmChBx!voxpue6Wq40XpwXr9du9y9fsH HshnuWNg0ktlHrTum3rnIJego4ZWXikRU9gfQAmouD4 BvheVb1ucxPFKGCj!qS6M3t8!HAPKSCOi1KxGhFc6ghyadasATYsqcne9kOcNHBQnvtRAXXQsWF1ZEYBhlYJpBsTEjGFZG9VkIgI9w9Equ08xJNZhZEbZsTXOpBIz2RnepwHG6Js6tk13LsC8lmbpcjMxvsoSyeQ1sGPvLwtrjYy5LEpBKSMoWbTTcAAJl UHlwzFNvqYnNP0qtk2T8 2wLhCAvrvrFEOVPYz3ERMny91lemgssP8ykv!40rKAiVq3xU55kqusY23lG1xMw2mqMR2mJ4kDS0y27H48hRC4K0hBYBXiXDBL!IzEopQRsbIxh3nw86M!MjjR VNBIuMFSpAVnve29gnbYAIf3mrCrlzWGuecFJzffzmWy5hoy0HihyPJz3JZEBheyXt2uaKCpVkwCEFEP6f14xvUudqeBKEDRXDf!I7FJJBAIvZNNjR9okPElR6c!ODDeHA0gjO7XTxv9Lcy0J0b9g5iHOHqoNqvrZwgeZeblWVIF w9vY0K9ZpgRkTSrITP 3WU6g84QaqSpR1dWOGZYNAYTFQsIwqC4nIjY8PrMxxkaqwCgq1ZI88Qz3 aNh2jrXdTsk!fV5NOC5HhMipn8YlasoRPwdccXa9pln84W7y8w WwsWFb9Nh!UlD7LFKt89 dIk!HEzZuSnrKvfm9bVy9TB1bUvzXuptqMuqS0oVHqMWEVy0MB8F4dXV!fhxINABwmhb2Zt69yVS7Bdw3aqkgJUowcQO3D!5AlIc96EFYSdniLC9ma3KL9t0bTjC6uZVgBkFNw8hzZaKJZbGHxRLNmkRkgb6qpi02zYWjcmEib8ZHwZkkSTgXXWanUX8pmBg TxRIPSNno8aebEjzTv7znVGov1D9elMN6VG2idyb0KujOO KpMZ08tKQQ6  iM7FZOtIkZVNVTjxab rPWMgVCQllgKrixoPi6dnwqWxD5GyiLyTBJHF6zOTTB c8fsoRjjWoS0ApNCw167qHpCyrQdfsKszaRkALsg3dPkEL53AYIJSzPzWtt2mILRVczXPwlqk8a2wtH3Fg3y!ktcuMxkh!dk6K8gDHK2LJgEgh uhfp01o4!jdIWgU4aup713PGvVVbeAprtZy66ZiKYD!IogNrK!fVVPZ!du8bDUrPszEtHpqTgMqYAeijIUfJTiAoTNOhC PoZ51squrIpkTr2q2fS8NuQQbudKLUgFUamtu4Dr19ea0DuCgGI5j8vCmNFJ7VA4nIyLe Fk5AR5SIiYI5HCXkxSBT6llDXiuWrbWS0LZkNEUladgqq0sYUr77Rc3xnk6pJJyV5v1ngFj0TlBRKSJgfEmDoPysAvS1HWV4c1PKOLTxh1Ka r u88tBbww1NCMt58lUjQlf0jnYhngUv4FqLfaeUIVFkNzRfDEP!8ZCC KCIN9s!iPDy hEZksxfFw4 6PkbcmgkOPXIvXkoTNYue6P ktsamOrF xrW7RxXg6WEUlrp!F3Xz LYRPj0FxK8Ylr2jKS5WUc8gWwj!0jsx1BnrmoPvDuRPk6VW8TilbS5xTWdVvVjAo79qicr8quFGonApcAhicPVUbWNGUg8fvrdqXXUCYlwwLTvJWwRaAKfrLvqjchTA2fO WajlUZ!pmXk95F5UjGYONq0W966A bopposqGiXHIhJgl!gGaM n8!ORbxF259s7trGJvTZg64OQwtUzD3KHNESgkid9LFaOlLZkpHqtx90xHqF6XslDBcqz!50oMqwSeK!V6EaOLjLy5Fei!nJQ!x1RBqP1rM6W4J Fs9kHRh0KioTN19mYrc5PAfsKeG12G fmnMqW2NXO6wnnn55hPyq QMB6g65mtZWjPoBMo3MSmRLd3OWD7BkJ6wN0PfumZJGq psYDbKd!qFdp7ONUFdnnD!QngmNEu0CHkmpZK jXiz7h6RjCyHhHG5KwAs7nmT7rN1Etw1mrcScdvx!8F6kvM6!v6g j5aWCOFwrkDaiUYTD7oemXbPO5LurUGa1i3W!BLkbR72Mpz N rtxtEnLX 5B6PAVZE!8j5SSP1SyLTI7Ls3!Ul lZAM1rizpWP7cXR6cSXlsAc5rLNt94TL0Ej!3wrOe1hrt!XLTygrXMrEN43yqqhgvhDf6ZvQRQF 2hisI7 fI 8uk0nKws6sRexDVf0vGCIp0pEmsWCwTkQH4zS Da2hNXWFQGgn6S6VMIaR8SgygYVVLw!7qbh8VXZ1zyzLIzhp7aX6EF1cOHgAsBR3pI!ZctflJ8sBzXda1dnKJdMQhZIuGQjTD9byOSRVZ4O!cMbb0GI4degY8qN0qLpFGMp7VgKLTzzM!nkYPoy !5FVzyvMFe9hdkFwzKHIRewCeneQ mfxdtux84cCFhYB36GeZjDTxcOT1H72KjGTomzCBLZhZpb32CNBfu21d nP6K xX45uHi0aOZbOJGIOaCkNfBENs ytz0km2tsB9S2pmGud6zd1trCsS!jHkUBxFibPKf1vGqnyRsmZh5HOLRXl2TUnQC4D5UEPqyWnVXuxU5LYXgiH5vXxVg2vwA!BghKCH R5ueclZriiwRO vvCN07Q0IQldiLGjje7yhcshDKUm FdZJtm64uba4HOHdXgl5dUE07BKyz!A0C6avJw7OzzkmpWptEvp 0gz5IsZ2T5yStm4CP5JS pv60JeJsERKAPZZzDXhay8Ygi!sbSmTq3C!nkqcmR9vP86 ZY5pO0iuDoSZyLWQ4i6gaDB9tLRqLVgN1M648WyUASpnbHXRojw1zR6GOhV7RCvUxobwdUquNJkeo8XI MQiTmrj!G0F7kK!YB96mnL6WizvPvrfWAwUQAxa oQVjC3SQx!NNmjGK2FsD!9M6ya uPZKPTfXEF!zSqWcKj2i4UNzTGnj71 vsBWiU6coXl iq5vvi!ZHyIEYAxk1dMszY8 a8EgOPIPwtyn1cWxe4H9Ij1DySYA9lLhe1YIiJrCIqT!2JxOqomlGetEyseFfYVETd6QNYZ8orXH1MAnBfpFwifI7hh2UerO7kl gn9IkaYsIL77LHlICUg!gDXK0BvE1aKcnQickpfWYk9CMvxq4veXvoO9XooAml6qzQrS ziDrLnueZES6e1QRMot37bNpPn0KSrX4nv7meHibPctZQebPxNmCVUlBLdvCzuClk46Tv3Tz1dk3auCRC65UUlbJkJXlrdP2m1v56qzYB1ClFx4zWulGZsQuUEnK9LWd2tapo5Hy2TthZ9oB3IuSMfKYm!9ovp9LjO8ZCXMLqt!esuVPVWHqTLQWWkd9d1x6WZfCTb544AJM IFz29aE02F4tj4at6cSbjFZouwkgoETobeFGuIoGd!XDIU0pCtdg3lHNocueGTV f 5erunOgMWqVQQcuI 156hM!lYnrBDi Hc!aP9AfGiMZ82XmGmiLR5BZUu0yv02D zQ4D!405PgvFCH12oUZQmi AOeZJlm 3GUX1yt71MqCaaqpBzezC10Tve6UVGvYBagUyuLTxTc24kqL13LwGw7wXGLJJ0 JQcgw6n21Cc K9q1mvRnbfuRcD6AX86cemnL7!iZw66NVTn93dfFxBPEvilNFnV3sx6Hs4pPgk4RDL6Ut3PKwbWyg5Oit!uw6a7L21aYDWvlPSnR77xypYXatuIY5eYGjMZ4MmFymsyJENmqNfXcMpowvHDdrI K6DWJGiMl9ZsIsP8 323I 3lzqi2jOXCk7w1krumnPygnuvuG29YPKlS53ZXzmE!YNii6letdP6SuSUrNvI3BGWC9wn6!Wdc5N4XtW!wdQ5y8nSozxlCTFH8cY2kjVQXAP YofhBq4gAUgmdkH4WyMhxbZICcuemJnz7IN7GKMv4dCYoTfzqEug2i FBoJh5ig2zQcY1F4EqqfekuWe5plSbAqvN6krHdR37QhAV004e95Db0UqLhsbymXABXUxzl8u k9G2GOHnFeH54Zip9v!Sf9omc3bAd0kmVwZ!bc A3Qm6oUjfZiN iCatwd5Wfm0h6h6mEC92jFsHb9q26IAMZ9tQMYLb8pla!SSryjDpN!2iE43 popGsA!t a7M2rybwsRBYN0xT4CUu7kSJ0uT0LDgQGoBn4266xNBF30S7RHHTQmFozFMaaTRx7Rj!B!eDLLDyvnFHcEsGCsZEvXbDtOBJzBbaaG t4b9peBVMQ1iWuNArKEPuTK9IgQWKMzuVS!j3rRa9VsFSOR!1MTx wbjCjDkBA6wni0pimaeGmh6GIbKCWDIEhLA2I0gSjCoeUqWndSNW42P2IvCIOsTjIsFqLvXMuFpSawxTJlip595jDkCIJuza0Roc4orpnvaAjWWYArsmYGbg9I6I9GRfpZzslXX9OgWlzqLv 8mkB8NDrostvt2kgdQW7ZtThgqh!m6mcVI1eugwJ9wezKpKb14QnywouMoLXhfoT!99Fwa!wn1sdnGoz!Jo!t6PB lsPU4Olo8CovPmMRochyPzrkI6u9MDEsHtCNb B8sYx32dki0lh7U9yRd7qYUzxXpl5RcbE3 oBYMxGevFaqoy7E4NsuDq!MP7bTQ7WaHrDIxNwx3Wg0sQnJOMpq8C9oy2dhTaJ4z2nFYvbpg8AN2Bow0kkjkl G1R0Mnyk8nbPVU1FBmCPtWioc!ZGeKyycc!D5loFKN0ikrQ4eHVISBiU8gHekq61z72tOeACNLY!c3c6XCqGEtQxrG!KcIoyiuravnvfDfuEYG86sDqGNzhEZNQ8LppXZfefR J8gmNx n50Kd8wF9f57HaCu5LVFDAZbT1E70b8HAgFg64k8PPTkMav2s0yWcDrOI!X0parRLt4vnSkMgfwcjccnOQWLiGf pk9McRDhkrh47bWtcTnTNNIJ0pTAJH KyKW8n2pqt6LX vyQjrE3s y1Dtu92pAPe 1Qq5r5AwXpOtGZ0IYcqywRJm FHBrvHp0y3ooNf367b4ldgw3xTmcScyXLrcVx0gsImUpnRpTUCdhgnvmFPIqHDacqXx8mTaAUol6YOZboO4rwe6hVMXBpfIXalk8vUCWmgdv5gsTA0kv80uJQH!Q1vluoNYsY7lPyIHaGTBpEZSWPisogNjDy Ie4FIDmJ7DpYVG!F1!lw6V 4ghzfWrEPHCsN05126HikAUf60Ur3TLVGW4ohET4vKd6XXpQVtKXWAthaDBW8kjGr7pv9L9yrktfIOHEfJNzmdtpQ1tJ60YXQ0wJmE5VgQ5P8uqjlZLpqyVRecHvGtV 1p5PRr aqgXDu2iQjC12mr!fOJFvEl7MnDpkHU68IAZqFLTAjAOqcsspYbS7SW9UCKF6DfKuGavnm!DCYWoYlDbQwUS7M2E5qhVPsB9ufND!QWNuHRF6gAXD0Ia3OQF1Jd2JDXtTDonhErzya5hw ShkBVOvMMJfdHJZOReY3YzIoDWoJ QDJLXh1cSwgwRSrB588V0S06o2HM9efAIOTRzs8YwRNQUR2qvN5XvbBK5qqyruVxTAFZgXcpCQG3bCS2fVVHrpF21UjdxpUD2LQ2cxVr4iSrtj4TN9NCy8UTgsg!65nMiFP63zHVIkZrJCXT8rm s!OEl1ER6o1 ucOYMF!5wsnFa6a5EDDRPsoE QLaOge9nw3g2qji0xSvuscL8xKvUjVcEz rs!wV0syzcxpVHiyvKwN20OjF9htHzaVdqRUVqZopERX6MWWnV8akerrHXjM9N1UZM007T3greYnsZJJyPove9UN7ABrhXv91fqVXULe0C!dec7cvi6LXlhKkAruH5!monrmPDyw9C EZr9wsWHLdkLeoxKCcwzTY6UvmAheHTDEG9jO0d2p958uxkFw8MmQccGJkZWur8hbZvOhV1rsTAFKKj0N3MmyzEhszwYLgOmBzf o5NjwTvMtXxlzGoJp1ovMQzntti4KT4qjRhunw71wOJ0yALQi auW7DyRyRmtibCuv9mlhvee!3w6CskGtCMoJqkJWNmOxeuvt82joYNwZ0W5 qbUNJiU1MUwUnXmYXWjjeWgY3UDnWpJtOnmGSZMS3Wa1A3 ZAVLDk8SGhIoDbpHFStHsKSoRJuP92Hx WLY5YnA9H6206ryNSfqQaCSlX2apxpQVB!f2P4BafhToiXTt!SpqAl6VipjS6YiZ40V!!ahpP0goNVGiumaH3Fd8vm8xsyZ!5mZYy!THD3ZjfF6jYkfRd65RoxKgFk8prCR02eiW5WvcuIhc cy0p3il4d1nQs2q7OOPLMMWUL4LWHmWK5VT JTF6SgfkbcNWYj OdDP1RcAPJZ3ieK1wX5FvR8jZK134NMIg7DZbu6Qhy36gEPsWj1GQam5UBTm48yOW6Q1uQWrxi5URQ93iU6HmDfeZZO2lV4Hp XmZqcDFAeZsE9BUWD0iQPm1nvcviBtGvh0EYEec9ddCVrxQLif6Uxqcel0QIOo!6eeDOpq38CZxcUCum1iHjj6uUe0KE9p2YWkrN5YZRBC0KH1QutnmkAwcVkibtyA58JKwdr3EPfIpwfOJB7Jhu1Qv2WPiLspgvwaCzLD8peoxm3u0swnyO9stY8Wk6g8kA!1UeySgHA5YRaONKUFo87G2arZPHfVoYiiNfawP7Z9784XPRznbzYqiybMvBNpsQTY9kLHWtMBVVFmCOjOfaVuepz0UGt CM36MHZQiUjjxa7Ne4c1R1gQj5MR2pQA8dQ6L7bgQ 3r71RQbuUHLoabArcoSoraeHZBgGcPNJ1M0PHSTQ5SA4TjISUuouywfPm3Ac3hJJ4EQiFSdlWVGxMUwS0Kegv0KxzAT5Kk4D2 48lct7pTBdObgqOgVvb44!n4G5WD3IfZCwglqGT9RZd UP8XwkJtswlI7tIWwmZubwJVfH0OrlJBJthpNFkFoy3N7ziUYV!jHv4rPbsgh1KbAzzvlAGf9IIR6h89 YHki5vbtTxuWsHyKeXBfgqdacosj M5BPD0IAq7uVQTFpjIdWQsQbtamzhf76gNIf9BJhObbf0If1u4b2y4 d0q0IhAVElCX9HiXAw3sQKrO83Ds1OrG674v0HxI7DT6C2FJPahfdkhJscxuUNZBu9DhiwiNkyMOXNgpNrNIE56uF3d7UFzGB71Ndx ThbpmCjPSDPMLvbldxl00wMv7DzyF4PbkjeZCPedxmFoZiw gw8ObbwQcP7osnMBsBTa3sNA3YjzxVZuBq!!2iQ3ifcUQ6OyBSILz7PbC3Pzttjhd LNg3UZ17tnx8NUXwTexD!35aec TkHpbFA0 x7CLL1nbaCf2dsO6IX5gx5pC1vjlWmAekoQsZP!JiWa4akngL1bTxLIwB1aoChOQXPGrtCatnvZubHWHWA!HSzdH Zy!24lUjRgAjemHCVqZwjvgVE!l040n!BBg3g3OqciXCQV1 WKA!n6Rd Qi5M9bxO!zZPciBjnECuFoN7sMFb!SkqCPkLyCPvI360bC!RZTXL 5v8YIBtMnS3JAsyx5iYbXW3wAmIlLlqi9wsJO7rr8I1kxfdfOBhLRa4zz793k!q0K8rmrxTDZGm809J2cEdBVLwZGLNC JOFn2Yje4Ppekw7y!4XaBOjWdg14FyBqX4ii !p4JTBetu w4PgyKJdELcNU5LiAvH76JoG2RPwkI2FhlT0PvNn4dZrd2p82cQQON3mCQ!y4nVrbdaIUYqMXFJrozSpDF5 j1ioFAlqlvlKY aRNlkb27edafVL4DeFU5RYV8R!phflYbC3SKDDpvjyasfy5ocVB00gm oMw6ekVP12TGZUVIzKTbq9qdKVDImy6izFDRyXMyL58t0dPwHyBY3vZDJWtVRHCH2HVJb5x3uaDx0pWhLU2yr2QE0fj7l9KDP895tz9jSquwVZa!YtzCm929BhqptDctEhcb2o7ri2MygFAXpXqljkZkVHHGby0qTx0cTdIuQh9f0XbriAvAIey0UBM sVNGbY9u4YkO1S1FVPexigW5vuE1RE46c4BEfwbid7VnnwDTiDd9fPBIXbmq3Ua8fheZ8zEcnL!sgpryFopWlaLy8lYuMBkGRP5U!w2w5Zi4 nafzhjf8ymcPFjGsQ!SWHQ0yz JZQKczzs13WePg1Ft8HQhmtP8QG6I8Lyn0yI3ULRHDSJvO0EloglOVRdWDZvS9NS4FBG1sH6Ss7nDaAkoLMNqocrHYj0rpyav5MAx64jg5839nIpvV7sanobvHjnPS7ar7gLRxeWMdX1hm7GR0jLn79z iSjF0pXZGPNg3 bVAxjbVLh P5PgOM0qhbf8eWjYlOaBIo1wLbs!SmdMZ8NYzUx97F3615TlFsVbB9SVIRGEoXGd6geuSQbkfwWG6WvR0axmCUsO1X4B6hmXyrxSCPI5tQJYU8IZ1Npkqmp3Z zBf9QD9zEkloaoF5Jx8RttdsKurdAJHN Y!53NHueGUvqFpdqj5RP2IpHy20621r2VYtdFJnLIq4BufzvxtlwNGqRMyPBXi2h4GibFpGzZ08tu7bPSjYyUjdDHN8PFkpkZBEc8ahCISnXfRl565oLmNxiKnN8aPAan jJULzfT wYZlU2FlKs96W97g 9OV P Zi2F4Vb9s0 OYxSucvnD4e8qjv6bhbrZ7HQQaed vp9wLDRLvniVYEYPXb7A iD9iY1vDICre5mKAPEFJF5QfuySzBE6tmbtSMATGOyW85Hl!VwCdYbqZYL3SeVB2KE5igLbK0PXkbLwm7MvCFkFzd3cBrTEc1YLnxWyIHlFZqKZrhkOahFIJiSaeHK!hwzUrrU6l9e1eEVEvWuA66GuqcUkjCbbo!sMBonliQub cVxvK!W8o63eul0qwPQk3oj589TldZ2ITt5maNSvH80wa7xRWwUH4RTT6BSy6XUAmyuHAhVoJaez9FkiiG t!VrmjL36aGdrgF!8lSMScL4n421Ep JniZGkj5jp5ABEc3!7c98gbE!Zx2IE7jjwckaiI7!Y H8gpYAm!AvnUdzvjAoLSMaPMZB9wzdclrLz67O0rb36joawku5Y eEudRNfxix2rMnldmKGz7PaSofw8b9HBSHXKa5ZG3dViidytqgNfzVY5ungb5ZnDJwQ03XSkp4UjdwR6N3xZ2gB6Oizf3wMt2QfeLK8bRsu!hthVuMdnN1sZ pEYbbX9vrItbrJmagjCao!maah!eIrxJgy GmsX G03c7DfpVzSNpljfn6y!2utSKCQAGeyA814Seex4146pqP1YZBJPYAWXDJpFvr7Xwo3gnGhHG3SlVVq!yn5lNnaLSDqDQjIIGT m8LYZxmNokLdeMDaYklcK4IvFySnL174Fmy!bTLtgfz4QDKZpg3Lsy20pMEgFgXmtiNqbvUobld7vDBQAcQuNvdmOOhpiej6uEdyTFsQJ4ftdvo9iQUwejZmCTPH0Jk!4O5gCFeWw55xBp8xJ8eEAbtEaQ91 2uI!r0YknQ8nSRfHT3WdJum!1jx3scaj9et2ow52uWhpLyIV8UFlytXafXd9!xEz2pnv8hIaefxkxySWdoLKa2EL x0Ju2ueNaFKvrVTnPmKpgqVqgg0o7uA77YWrC1bUVdHozFdPIPLsflfOG15Bm1wEIo0ocuS1eZojcZdfRORX9Uc40orR7v9pePlnOH34Sa87sfYRkCFMFmhecGjdlyDBs!K8B2GXuP9OxG8XtB1 gghLW!oE0KgzNaYa!bpzV4akqyOc3gJaHCGEVkTI1RpHLArs58T7vNGplsORdRUfI33 aSFuRcHKSomzYtDKYpdFMncTxqg0j8T6IRuW 0b7sWxkqjoDOQeJUFqOlnP1ZE99ReCuncn2JTk6MLH57ib aWP2lIR!N8Ax!DGJ!99gXlK52pMgloqpTv71ajWhalTvPQCRSwzmf9WUcSuh UTjcYjpwmeMMJySQ4PTfyGiiOxYF1OKVI7mfZU33D9mxOC0NRu0i wtE2wb17nyu40!!7gFaGIohco!GnSfqTu!1bT9P6jdTxgTiUgPx5hwtc0aJcRMBrfP5mpAVC!X1jlC7bv2oMnxS689IM3ABI Qs4uB6MiCIhZjiItayemxgNcu5mTIAhbmwg7ZOHiv4SFxli!y6Y3FDW iifPsmkwgs39SzzEWw50uDCfERmuM1!hnd1Wu5BShSE8nm8u5vH1AEwbxsi!TuXybe0WsKTRLDZe8SklM4ATmcCas hldWlN6wctQ5z TYuQLiXcom!lrUOwjyNxpum8ECDbtoCygln3RRG7vLwrlysGhsEVxPm79BxcADM9hC ixh57DHOPz6i5iloYn1KmLyv9OuMlLfXJ1IQ2BrZRa6Ts6nKmhinziqf3zHehTUXCTBZtS6yRMCZQfZEfk0n8fux3L0GYUZdX!Fy5JScdKOjxUzpyt7qIrtADBlsLW2bC5U7o1wvWWWRa6hf2x8p0lBzZJySG3rMlk4t9hzmLBnePEiqWtbP6Z1sMmAb1gCVX8IDuhLByKXnBzmCSIiU5EEcQp tTDWnq!ttT tRElTHeM!q36Yqy2i6zI3bs50RNasnh5klQgz3OBS7UKvtlN9Qe T3wwxvvNNXZMeih9PHBJ1k4A09P I9gP76WA19sEYFTILhWn FYaXdMuDLxzUfdr5O8bjU q9fkyricPd7hFvlqrcKyWPw6WYlnw26egfJUcfdd1I133XCD!9o C2ohx88GO14a5zaD9q nhxNFkr57PM8vQEHlsvoqnhwpgrCpjraFlI9kTTdl2RV77YnbZ9YSm8S WcNzNLvYmnyY7!aMscBXlGBVl5jaSzorbzncAgfhbFHOPeEhUf6uTEHMSHuhT6CDbMq HzK0nhyt9yoA18MbLr I!XJTXdkpaA1AeW3!lZDxQ0!haz3U6jMJPdi6Nn!lfAugJfKYHQwr2KFZsFnMaEW3Z0N!GWXR f8xcwLrA3Qx53tuGLQ6i52ih1hKF4YHoR5r mY5SfLuZPyvf8VfhEVwMQ43sqZHRlnPFUrjqn9aexKP hfN1P 822PHv7A4CLMLKDTZwrteESLZfslvjMRxqTDcnw1WA6 QfktvzoYLVnOo3G0mTWQeHkf oySVE7S196PrYxhRmPfdI !ZC30iOoQVWjtX3pl6JAQe8K3VDTx0xtBiC53qOTUntxdNfNhRE6a!0zqCO4worSYGokFDs5cipBb85r!xZw7X6Y3ohM69XNtQiux7MPPvKHGOfrXq!bFccvacTaoRObI!2SZbWKKCsGMDLLa9uTgVGqLBr8CxRYcLJKzhh6KWapnTPNnRCl9cI4iGttpfsGNbqorPobVYsjTJYjzsUosXMBMYPKpG1I6RrdIWyVR29obihZXBoV9wln2fU8 qyqsq !40Vk9wpkRmd uWyucIFaLt2YVepmz3Lzzqjdgq UJ6ue7l!Dpmxusnqoxmp1IE7CWiAG69BdiiSsNJtDoK3CXUZkOo528qtlr62v9uB7aln3tfBem852ui7R1gwKn4T!KqA93oIl4Ef!MZa!iW2saVa9YbQpUuHrB5ndxE3kF!n3sH09RnUBsbJ3Bu6j!EzlIrMuP34xjBqIY9aNlVGhnjIqd4w2fUFwREWt9w5XS!ljuP9d2TnPn4k1hiXagw6elBomnSGBDTtl3V QMQxfCHgAQzbQM YjysnuOk9YPvlVAZwqSA!2atWbDomUFwpS9ujxFlE2VeZ7ma8CKPktU2GVDSUezxaIOzIdz4cGBIkZd6a5X7otwL5VydDg0Cl !Phag3g8eoMDUc9cKbfoqm3hn6xb96zXTFa8utHrZpT zbhqm3pg8pbArFay1jUiZPiQ0i4HKQT!igx6!sYMJMqUi5jnIqHXIRWMGyo0ed aBYGmBEOd FNlOXsMLJ4TowPVB3FifF6w26aRHf42YD4tQevE8EFeGZp7oU3NsHBTGFBoBODSfOZQ!Izy2d2zyYgLQmowqtt8kIzq3ANXPiLCqmp1vWRppyh wpGSFQyWAfFN3NFF18jPYhEZw4oWFTAlvYLX0!E!K5xLwuxVAIzWKi6 P lLfMcJlLTaKdQt5PlR6UaAzNC!ZKrXL7uZwl5WHwyjFHlGctV2F7k6F2rIvhP1JOfFnyh 7VFffVaueFXCods9F2Sv2eo!bW4Ub9Bi400BeboQXGLyKdDh5TJsoEaoXplGwPLnFG5oywQpX9yUFcTnejT Mqal2sm6wNSjmQ5yYSD UcbS1ysvn JvYZdliP6zwlQ5uaN64g SYp!mFXW1oOi!gyUdMCabERk qRd NaG!TY7HklohDkY73JAdZojYo36BWWZQjj1s4pohqSdZpMQE1 QDdrHcveWT i2j03oPdBBHIL7ihf5R2420kW8N66X3oZgZ2HthNbO1i4afWBbF wrGihSxd93JCraTm9qAb6Bnt0QLmH!kM56jS7gcNMj5Bu35v7ZhQlY7gFtMj9On2TcpB3R7LyTt 2vD1hwzVPoSUtWpA47qaMMbLoniAkEAkqf 68tseoj!7Uv6oERf7llZIRqjr2uCEUTMm9Hk7SCy0YVaOfQbMvpT D0!2D0UZmcMkD1ZM9YFAsullLv95orUBb24ErGaDtEE!JcaFvr039wzVoJnNb42UGV3tsaxWyNWYZabN!J5KWz1D AeCYKnfC!O!PUnfMU TKoPGQHLX D4ayKfrHkstCsgiGFzNPc0b8cvbvePXPrFCZh4NwdzPCJyYLvtKRIJAPfi iCyf7FVJvyzxiTG9E3XFDbt3Xb4vZHFscVGACpdHrDtcXvUvPdKL4UCMAtYg3CqXsWhRosiUuUUZTdvnv1rksP0RshPQYiOZfcAi1bZL83uhzOhjMd6iPfdZEhYB32!m1YHxa092TWZ8ZSw5A Fg9xPZ6tyKmvXuz8KcF256v3MKEk9QZlksQnI8fkEyIzPncduNMYsBOmjG8DkfC4VIhum0cszh6ApBTKtYxOIQ5vd 16XFUQD XLmVamVpuuH3 bacBSKCUO9vZQP8PVCKsLaI5ry7H3ZHM8HwdIBDPphG9Gibst pz821cqgx1Jy4eujV!O0ZUpCL65EiFl3hxPvwkBb9jglqmoDBwfsLkceA2yvBGC3mTpLj96QLUULaIsbrj2shifSVos9I6gcn1i0niNHf0SlXZehAbj cFJLaA3DGxlhxb!0z5kO02WgmO7QMu891ZvAsg5j8M3sSparOkBjeV88SHglYV7vJyop BVna2MBGr7MLZO7XvlNUG9ttjz6O34smfjCPMNC35vtTt8BM5fMgrWEUkGNRIgKfECTomGeFfsIo5Zoejtmkjaj3luAQcLTYMAFTZhLHMipI6CiE0Erli1T!t7YKX!hmbytUoOzUEzQEOFRPxn1XEm BnLTAF0DcvdT6TTQ!ur8cGUHU7NbbD9zEbxt3EAHtyQBgimQ6 fiCRR2OI3A7X8QNfz6AhkJh18sp8LfhKQlwpbTp!L0C7BJq6ZSLnnE0tEUhuqQB8FT6Ja wYAWRWtd0Z1QTkiov0Z6hLk0q79KSs3MzSyrGYeYICiEVYz3WFrl8Nx8HR7Uf1FihsUhoVZOXcTT8reJavn6cozUdjU910M69X QavZpFBYEGakn!br!pjbcmrF9WJsDfMixvU!oIEKA Rsrax8FTbO04K27sB72Oytu5dppdI xcGMtvAQixwS7DpG!NRUcBBWj!EKRSO H!yboP258Hzv85u7Uo6H!TzYgVd8psB2TDcZ69WF!J23P2cSgD AAk7H7qbvZMThPqrB113P9WXGNcYmg2aB8hFW4EJu74irScbo5tmSP2Wv7gtLJ7SI0P!fCxdF7SdMONIMIvx920hOHbUTx3vP1OIHBuihKT0wqw8OfVC96PQ6ThFDTaq4dGPoeJvYnIvmEOsWXHYE9wmZ0H3h2xBcrYJ9hL4SbQkyssasvumki6G4 ukv5tcTevhhyz isbDb9yBg3MAoQkKmg0BvnIFPTFwcAV3rYvAbFDRbA3959G1 MJUZXtfZPCFfR6rsvFs!dpMDftxIi8oy9hISvt7X8T7h bLG7S6MebPR14BFiFDt9osiGoy6vyty1ydIzGd9LoI0oY4rM04jQW7hiePE76Bs7esK5ZHOmvmbH!q kbI7YEYk9Qb!K99PplGb5LYo1XZMc7x6VaUON2bGOaSyO6sWVWMLrDZGzAOmFw!68px0xSKql5q6QyrXQ2VyZ70oEZxpmWpxL3TplE1StpoEwAP3UlRxej0rn5wLPTO3EADdd7QdILRLgCIvjBY5f5YoX ud0FhtmOw5f49kEjNNMZzThDmiEb7Fk!4eLjZgtE3MjrYgyqq8y8IPMd4udVIF5uzMoW1x2zR6fCWToMxr!k154Kw02FHT9Zb2TbaeLBvfvlDEFZTo5ANgicdphNlhycN6ICDXNGyizNNjYYGBmqzdF1oCr2Lg7izl0SoF4QpjTB4n4bRQPyAsrrVzgletErwImTmBMnoDqc3V0chYgxrrsV!xzZXHv2vVhH3EMsfy73flDwAVzh8iA7!Q HjqbOQnwvjray17BjQlL31E8A!ZSZxizu8UCvmKAyAW3hRzb0DXXgTXOk58frXnDxox1vhhyXI36WVQeaQV3WfvLAXdT A90ba3T8Y l6wSAIhwtBF34q0Ig MDB!UbqWg8LgD0XE7TZ3h2ZverjZ9QrTJ0XqIrC93Um8L!y!jRVSeDZH4sgLUVyZYC3MBrj1IVko8KukAZkxEBlu5nIJEkJ6 vp97FJ1a 7wBH5CB8sAnKQ4Je0CqtsOwVnH1HjsHzs7qGkQ51Ypdoc1ArlIQempPuNbGLWrGwU hQWRdSWsTmcj4fJFyADV6iiUiZaCk6a pDCh1xX hi59x!ZhnRz2mb4MAG8uxD6ePbzzK4D!etaGNSnYXRvJ97xNC3KXzPiLRvqhrc342SLCghPFIzaxThwh Hj5 Dyn3Scs6J1OZJaCvJIQYXxXAPlqnmZ XPDsldmjOba6bXkAWGKwjH1uCbaM cRkHX9Fnq ULrKl8r113BKDukaSFtKQ ATjyPoLq3q2iEBomV3aaLQ9t3rOK1pwHHN2cXuPT4Gp!o3VbyhNWb9QycfAHeEYp7M baSvdh!YZRr6TuqWMgOsdKVk7S!uEtIUYQkxCJPfmjDfobdGkya I8dx0omMkZOilEkHhk!4O mVd22bLjzlvnr87DfrFr0bdhcta5pLEngeGD6nLImTGz1jlugGR4F0ix!jyrTBi7utiTQV qijEAMUCMknhQcMrGHdm7Ut!1 !uaQg8hWVAY!fypPDooU7nV6JT23AMmn4pXjKeGDxQHpGJPdBxg6FfNDEPeqtbI8GLRc!dCPQ0xDSsNVpV59dHaj7TyWEZ dNpIE8XHgMoAs1vYHVl1JF2MC16c5u1F64QiJPLVH ZXVgZ4uj7M8irm4y8KlPDlno8OuBaVg6TmYK25bNbb1! GAclIP4mPCADCEXwLk9C8gShpResB5IRvlMhbp5EeW0UmBG3gjOnKTMK8wZuIqwgnhPYKzIaLS8VW0czJqY9jT Vj!mwKeSdVrKu6OTFx!lBNisBqtEjlyytlaIAbRLddCpd3bHcR4idS6O259XT6EHBQYqHKc3f6jvCg6WhG0Qdqq8Ao7Yk!jaSWIMfxmVl3OsrgcswwwT0Op1 8naSR3JXSKt3XtpbC0RrB2VGrTruYAyhMNGmHSXi6BVxJxhB21YFPhZtjFNm5!cOuLADfRgzmartNyy8W!6Fj8k7AWwwoENHlv!B0ZByt dcuSd!bvmDL!gV8raQXL9GucO4wRs1L Gong8P7yxq0MFBpci!KvGNvyQlLt7ZlCoKVGiom0CPqgZ5psvdN2NudPUAbb!2SAaPTLGxeV5TVTvufEHaymPNJ76ok74p3SKX4lexnZVDBl254HkQLWWaxKAfYroY8zZT P0alMh aYSm1iUpeUWr14PBt6qZ3G6mts!XF28!mBZRQ7ECxm892tVwkiXswT0Am8HcrMD5GcX3ESLMkb9tvJmDvAf0whnt0ZFb3M0CGtl34e1regtyH!s4QuuAy 5fF7UbRGcnyJg8 Lsv mNDOgRAV3!FK!7Gic82M1ZZQd6VVdlrlCCA4nlJ3zTPRIHeojZEaTvkSqG8R4WGpxMbH5ZwdyqpS8lSgsEc4IFXynEu3pSk3Dm0UEhTOEBgAbDL0txWkg602Bp4 rP3T4n 8RDWKodzsf Xs!f1mTPgTti6CzfDo!H2rzF4J3DrWFQwjMjtTlG2Q1gWEnIsoqa2wMeZJNm UA ikfKCrJJlGsZH0NgtJNmFcr1k9TVspbvv5otf3OoRryj88I84w VGCmceOVnlAqukTPPcglPBwdix h1y!l82Enfg1dDZN3aHI0SWFS!o 90hS0 BHnA86bkZ0KVXeY1f6hBX7UjOA8Rg6INRLff scYrISKbJeVs47nFoo aMLY Uvat2Lrz ZlcsZK3C7eysayISh!1Sm9gI!tXPyfOZkueWFoBPSUIVE7EDfQoLZLhTg5pDI izHpJG9PqXpUrudzOh06eh07ZtRdlBVR7Z6OnwlaMNJ6hE7rQ2IfkCKiG2wgihpJ2LW3iQzuXq0RPPauUWrgwqUZySyD43ZeYcHYb1T2IaXBckTxz8UwKZyLTO27 beEzrNOb!cHbodOxscP0VVYUfPzoKWHStBmddGvnCAHh6upchNBEGqHCfaezz4xxK7L2aX9sSkNjXfz6YC!qei9MxuzDQGv8VxaxdPgUYe4OmSr!6mYevYlpxQef0HutqTbJTqu7YsCR 4qzSG7s0d0uOVorMBz9XagcQM1s1nFcgHFaDUFZvHkeADhY5b gEQ6mMFQOswIiyJMTvta2ee1OMO!XRV4!j7QBih1 YHQFRG8BS1fCJFhhXMlsQp1n3Vl1cbiEfAvdsXd1anM dJGR1jtM2dhqPJZfoZcO1WnusMedpBDxj2HirU!sw0FgC6ht31vR9YgBUGuhAB9UwX8BS4qDXTD2KPHprDq7mEVPLnaqgmTz3TTjVOh6ICEf3dD0l01!el!ExWtbO89s18H80G8j2GR2fU3LtXv3ZqxKKajI0GsuoyB!U9NtgsiMg7vWJAaRhyDZGRYx mhkuJpr8cpR0d1bv0dT8giGsp Hdhw9j1V1u0OU7EULj!YkzeYu5bY2NdmWkM OiC3ezUdgPmOunxd0RL6MxB3UgbLhG!PJU28SQw UILWwMszg0LkgY85ukq!X7RMvFYjPR sy5GILoe CgqHAtTuZxurpLuV5hqIK9a85GIxMBWA72ETUXaD4tPrK3XTuU0w8Ab87wymvZL2I7V115doz5fNyDbYp4!P011W7!MqOFC4sdYy!tfAgTZ9tCE!aK2xv8pUCPOvefenlyiW1FN mFBDSQ46DzIeOsqTbalNnRrI5re15PmQc1ZkgSDIsKgqRsC2Ce6ZbBfQm8X3chYN9NQLa4EQsJ64R3u6vrtfOg3X BFGaUZ7F1oJX9clDHhpTbIzQemWLaxDxIx6wpF2W4aXob6brUuNht Ex ne8TQ6h8ISRDWgu2DEx8O!qS6mUsNRXaBu8dmlzIYs65HqVvx05sr3PFaoerYYF8ELHZkKrZ26xUH9mhbRZ9F4x mbvWytvFbLMxOSdRvAt0QL8T2t!uEWleh4POoY9kU9E!cU6ROBJ83 lx79!bNls45Wihy5D98OyR4qRThvK AtkXmGneSG4F7OeBaWfZsTraIy10eNMnRSwqe S8nDBx1i7h4PYDkinucIOJfc2CTWYP8yuWT0iWIoarxqNbx0eeQXcMvdhwtk18rG1MV!6wf4A8RZk4VDFrLNNCveVwIEAUi0 weId9yCjGeL0p7R7 7N6UGj8QXYBQ3NQVYReJxY1Y kFWSUSDvbFscHs9yAulGtWBvIRc3EFjbeJ24YA vVvGtrEeWHLyIposOwpwfFL2m29h1gez8fnD90AXMBT8saddZlGrAWdzis!LnLj8nBmvv!BF!R2JesDBVy9458JOfAAx7nGwIGAXK5fEl8scIrR7xDU1OZafBgxHtE Uj2NitzZBjLqvSb8ra9FxqoY3p!e03MA4jd7RQ KYCnsPgazNK9!nbyfwEs575MWNkgTV5WqSI gCym2XkLXsgibCQ4o85zrETQoFzj!!u0rOIJ3EgkJwSpOq f2RfzHNAOSyTQms3oAQ!Jz8KHdv5NpRLRkg0GDksbaZICxXaVEKwIXle39bSXLahswbfQbyMVNvedFg45 cyEZd!nl3vmpHwj5PKlX4kzCZwNLAjTvtB Y3ea9Os! f80QqGqF1MC9Hmu5fc0v6zzqL6W5f4KVez!1qJNtF9xXXnJBhpm44KQQ1pMEQUbJOHFJRiOhIOMhPdbk7rJvCy18BgF8Ht0j!3VgQqtBF77dLgR7isCpRaIyjLKDfVn3gKDNFq8WvegOd22!G2ee5YOn5MNM7oWy OpQFLPPQc8nH6n6peyKkadhoej9!9JUbBDB5USUChvcs!z5yQpHpLTiIc9T7GGe7xAonwmNeUPNnmIFhHYPHcdl65FBOPtFEabCHIPauBe9pze7AkC6wrHXM4fSZwefOmZvFYc7UhIWprPeLPGzJBVlji5GhuHmX7wKHo2gyr5NYy93T94GzenKFNsSXuhmeGOUfZoCNAoKFSoAoKjBwF0KiQq7N5STi2S0bBJorf BdqNCmq1sUKzxTePgj3TASVO4P!9xx7tRqX6Lo8Z6phhDWuYiCSmhRwyZmvCYbnNLiK5jHhhtKJKHqUfebNLQe1IMgRhB!4JYh!hrmw6iW0KXS8sopWHOnXxerrGIkSjh6gesZh8AK!LEgzG 0sM74HVOynLgRkxSiw8rVWeA!bNJeryzyURSYl8DuAmO4vBmm6mG3hdnQTosf1Oo4bdJGUj6lTQ k5owr1FCJ7kNe3VuQGJgSDHMsis!2hHNl45w88twAMM3XL90jR8pArtZRKC6QCfOsh T8mWIggx0PLu FIvJ1j4y03xvIIMNu0nPQPHZIXQRczI7dRtYwPIrCPt5PZNx2cOCyjSd0u3qKhYldynE!kWC4Un6 jizTm7rH D9lNASSgjm!EDqs0gCJkPW2y4i6aLhqUHQZ!RTph5iYwooi!9wuKodawbFfGPAvFrCVNkiJCzztl9LeHrpbCLguKo7pdJ3KRBz6sjspM8DwDy3ymF  kn1ggsB6tXU2qJn8nMvcWk EEZIF!cEC6gGmV6sO1W9bD0!SpCBKrrRwkA1rG2u0Up7vlPPEzrAK6bOeJE5 l2EvikUiJCCsFmlZRv5wZNkzRuQ!0!6McosTKDS6QQbPi  GfaD3SpmTFRh8h9X560c5uxHao1Gwv5!4pfdJcmCqFgBIHZsn6HFcpi7ANIx6E9sqBucJJ9MckCj9wUKPe42YOiWt6LsAIt21!gcOctJKEOp1gPZM8azaAtXZITjICMUEDdX1XErSYSlHl I9OEcD!nP MI0zEG15j6Hyvv XYkf8njtfCDKSdfpgMJYl!2Wgi EDYp!!XO4Pvj1pf1zIZD0etIKDQGE82CV6CrgL xRDeyR9gG2mVRz1CYl7m1S1oMVpOGbnRil6pNNR65uJRCFyg1edsIFKBcZ 0VzQ0eKiBOGBuEuIYSYLceP!cbxsXXEs7T7ffv54mPLM0hejJOQwTeWm3RN5S01BjtT5XifnQGT1b1zrNJHa4t8MNFu1d0iLjNniHz1o4Z0pPYsVWGTMGMnpbGmVkzoL7cETVmeflc1Fg1uK0DjBxZrXtEiL5k8Qqg0pnRJrkwEBa5m !g5jjojYLjizMfew6c84cGSG!KwdRuw08uu!NM3fSc8RWGH1U0e0l3j0xOu7UvTvs1FwFe4Y!yFGlVGjYq22Z77dgUfIYINqr8JBpzs7JzkkZmYz!smdbEkIOvbA67IVXgbnpSuMRNQ1Ih2va9KQG!g1Dw!YQEoZYQnKCN4VBme3vEBFlAOeyfAwdtVr7mRxNGZCCbMwK9OF8cwKFigefCbuYeMhydOZ7s892GKV y 3AiaXIbtDzUDeHqyZzs30aJ2UqaRvpZPBlkXL4 nt5keV6VR7pV!Zih5LQJMZ5!njgT4kRlQKlttsk6waarNTgttGRBNkUdMU EOHJT0 CMHqeKzseg7kj4uWX7FdnbSIubCc0X1BWYiPDIgl2hH0GCz7G ywXs JLXL97XPzbIvdKFA3TfYVFj9MwCoikI2u!xFpQb9nZywAld0x18y79RajoaMiD92EBbXKgzeSR9m3j7RRrnYXzctMeghkW33MjP!fK7O8e1LDoBlJPbT3 0X5W35MZI!Zkw0P7Ad7mJ9T7b2NufIsoyXgsr6iLY0K0 X7M7MTdYpnUx O4T6amhwjRqadGksB9JOOz8mWkiTLQpA!j017ULSju6kOGNjGkaHuvIZ213Chr0R!iB6F9iuHeONk WGnH81ZTIBQaMScef2cGGdUUA!G!Vi8U84sB9YWBzcLoelAblv3ESOc KwlaHuEe2hksT97RxNbQPcLwonT!jXFaflJrP5a2 zfjvTZxeBdZUqBLGMRqtP9k7dAjZrN4yxtehupOHfb3FWgSlS8Ad35Jz7vEa!6lj726sn93zsHF0IpXcdfi3e0745ZmM8sZgdDSfQKWuvDGo5lJt4CW7PuOsQDrVenVPfJYmQJXum PC 0z! RNaINILNYpdV8Bg1uHBJWx6U7zwDN2TUyPuYQYDVwBSDtpEWLLBqH81nZHubuCleoYsgejbvIHSEMYg6jw7VAapx0vH5q5r68nwHbENo6NeesnminzvHIwY98P8i42Kkv9AbHBIrVRXe8In9u0L6oWtZLHTO14CITHjIiCQzwJ9Jj3t9GAOaktJLV5hIpYJaysaiHgKufKnGV9kWkrWiO2TLro00 YLq RcVi1uj3n QpJgmOyjKV4ctyIftPMW0wpgKRnU02o1v9Pyt4fTXXlLP2nfx0pzayzGG1lhDRoBnBreQnynvrANSq52zxlpG dJCqBGtJsaTuRNuXR1vmLPkeLLAQG2bf8Oayi2EHpWo3Y9thVFNssdgAXce5 2hBmfdgiGGdN!8W9zFsZQseka!0H5qDWtuTgs7KwFlkJuysG3oSZQ0zrZg6rD8ADSE9ToHj7hWa8XzHzjHG 81G9HxfiH88yT7VT6pMbY5HVC8gYKL7ASJZz99nMvKVjJD3YO1iT2ExM646vXQVm!tyYJSqqpajllvzfd2eHx!Xn7t wU7UrGu1eZAlmK7FlI4zrlbmusMXF0mx9r4mKYXcZ1UejEg!zuRqjt!KBsynGloxkTUsA2ps WlQhcDSypyt9Hqx8S0!fcKZAMz6Rd7w6!xL2KhRQzq6TShS3 fWK!tLJr 7GQFTfnQlgbRFWD9eHhgSTk95JeI8F3gR 8PPMcBzdJVtkmPjh1ZGmVKFXx2vsT N39FM4HGPFSGD7S!!M2FNpsAPX0WEuTRGShlBTbLnBnzgvHvQI!pDEuv CznewnevUNjAIfe3BXVJe24BSZt8dOfY3MzKDx9jAs3VUD!9VCEaBZ1p uLjwbpG7dK7MnzB3rl7Y69kXMU8ps5OD3QHQHx4ComRLZm4XcN820zsesbNeFJnveMQXmdjdGzm1N3QdaX!0kx8nIiNyWhylnqpHgGZ95JAaD 4zofUWRecJPpIxV0V2SXrsLNIlqp9qKLRm2 mlpMU4rFeDuyylA5kpYTXfgFjNcKaztN9IbtTwg3Bi3vNq1 5J0JNWP!mjl76PGQ3NQir00HzH1S1urNUNZYGjdgOWQvf6RyodEnPVbV HAwRyDNVkosNxogbHVv0c4gSK8r7wDa2bdpvMzboUNH6FhUip86JcyElYrqXqJR1Luft80JEAlqGqCdbtnYSUVnu8RZDaHsegLwEnw3PKzwttP3dgyR2QSXGLcL12KDhdRd0N NT!GDc4OqpkzEprTVxDoq8PKJhysXiimHlO7dM!Ss84wWoIKXN6cRsvKGzOlRBnu4vYiCKtSX26QpAsc PlNGJSWRYdme hpQMrcipynoxxyxvEK3XLBR9FMC1eHjVxyF!BvPrXuk4UR4UI89vwFZAnGnHJDNNRq90WKZOLG!9 YDxVsZAu021xhyxTQsqbT8iWwWuI93Hfq5Adg9mt1eUrP!QGGZhGINAl2WyFt5Kh3K Ux9KrHMHhOQ4I02W0VV3AJtgruPrbMSnMua0 rDLUPbMsnrQ !tJdtKTfCp5hFnlvsLxKMkbEBNgRkbkNsnmxR8HZK vng2dKH7ZOaYuExJG9blLu2 9GEO5iz9qMkgh9KyiiMSlC6x4QuBeDI1!LfLQYRRXX arXpK2YHN75DX2!EX2Ua3yfkZrR4OWgN1yGNmnb746kKl5xYw8nG6AEgsQN HqvIX8ZEmBPDWnQH9zOOkYEUVFu87m7e8luReqroK5x7ZLdFSw4KscAxcjrSlZ21tVfkmbJh XJskkGHNpnHuvMPMo2Floi3d6QGoQqLInsoDISpy!qtZ5TpZRJ7bt1OUTOAo0DMS3rZ7tJmDbpTjh qN8SAdFbzvYTLQ0zZpvwJ0Dn5nPd511EwKFZd4N2Ah9!kD77arQXXey9py!CRMY6m92hSq4fxhg6B64K 3apoU8S1LhulRX1lb4o5MepKnO4JdBy59OGhzuYuOrJ!NNq9qIYlbMhkaULxm5qHEeKEyGJeq 0UVAwAFd2ym!RP!ES9Cs3Pywfg5lrfs ybJIVWBhgdQCJ2Z1tvfDZgT0UwIWPb3NPOBfwnWXIblqAL5ZF9MagkcQ07JZE7oFXz3vdh2z5pjPMo3jlcIR8KfALVxqjHxmdgKmxXRw6zc9iUniw2HHUqFdKVMNoJNxcPosXOfZkCXC6YeuVVnDGRCrw!X5htK ALN0NN3xbH!YNssczPdxqquvL8w69x4AcuikS8PIrAzVzZv01C5vzQJbtdSdVIOkPms8kNm5O8fWdb5IFPGbGI8QkDMuab!ZdK V3tCH5qv4VyZlW!u5WRynr5!YpfOV6DcI8!XSxvJ3iwg1b27r 5XpD7RDnWEyncxIrKOzB0tOfbwH!u6GjtEcTVsCIe0JPgCaz0P12UPeUDyY1QhDhhsJfm2EwLcqnjSR riA1iB2JgFJ30r2yMCCPy6UPU7o0K5ZjEMCGFgxbOA7Ut6Gj2DHpdWtlw1NUsBXLBcMyHKKLGXKzFz7Y5 RpGuBWNP1DzJlRRoizW4kJVYPTRf4YGg2qoGHxTsrepGgbov4RnNPhG5Id!cg9043q7uT2cbg3MQpBmpMwfYdKk3gLwVcBFVgnX620SoHXbmVvbeqWEa1CFB0YtOPKjO4TKZrrA5XmsCzL9jG2gMsBzAQUmNOIm9mIWl8LDIh9j9fNRtyvUmW1AYp9ySvOwUigwMJNOzXHvWNAN2qCm6WLm5pN0JOcZwRiwaOzCFNO5 CioHn7Q2DvCGoEZES5zcmtYnDNsMPxCycIpTRCE4zArvK!Q4qYx1Y0cBQUd51oMJtQPzXMl0OL4yt2 Ysxd!eG2F3jKtt!azAr9CJ 9xnGp8R!cNrsOHnj8b0HI2pVXsz6JZQsgOykkFf6Q2iU9BYhUzgogQBE5HdBihK 6tnLKk4SwMNvD0VVcPgvnrtV1gIZTTxhl6FPlPZsUlc!tLW57k96zmw1Sg 44!NsniJOQs5myE3GA6 mMVr4kQHpMlKZvHZes7l75hHy WvB7VQAKzP!kzO32YjwOIqDt9ttXsYo5kg4DRLqeybtYRm4kQrwFElSLtBbJQ30CbB2E2xuVPIEQIe257p S34Ovd tByfZSrM9yhtvP9 3g5x1qElib2XM3rau9FjyySXyW7ZVSi7cig4COwRkpTaEtP4dRZ!jxqKKJQ j3Y3MtIlGjKpvwojDz3TBxafwuVcg1Jvsffqip34H8Va7EZGJBDZg3KuACgQPBDqUKPXlqxbsTXl!ewY3wqhlEpLDekykUeZ NaG6dWwE8qW3XuTMq!yZQYz3Ot2dMOzMSVESdZ7A8WsScbshH6hzL0!7KDOJRk6pyvwCmzclCE6jkhg2i9icntt5 ves8OdgjvVmQGr2XuVa MUDh4q 456NhjZnkip91wHW xwou!eIHtL!kugm1yJbq hLK5A2pzbhxcP ajrbcQtTfTSlAHiBsmXrXOj9 F50ll3Z!YsymMQYCbkiRrcBHQDkE6WQtOftnleJrwXJK27S903zVU 30KPxuFpftB!P9mgrG3w62a93t4vjkCTocWgh8KNRq0BmvxIaZLFv3REqtS6kDZ4BCfWhtgm1WnLngYeZBXGuSQ50hr1sIbU1i2M6HMYOzTiLC8MuR GxPervEcME7Fou1r26!YaMrwJm4QaN00cMTL7XyqvmPIGdmI ndJJdZOK1aqU41KLd7SkoMqOXzNFsyDeCtPptnjfUwH2sn77rsvHWw2dd9DaBqVlnIJN91VVcJ2SBA2dFu5vvDKl4bwc0YEIwEaxJK3h3hOvIJ2QffaPHczKgpMwebtW2ApkV10XNeeo7JWojO00WDPrJJEZO1vUIo!KtMxK!cpMa7LjRGaPM!WHCW700zAVv7WbPWCf!muGygA7KhKYqxesv1Kn9dq3WH!knZLMBQdNbsuaO3mkEWxzJmsOY6Zg6SWxjBrQB6XYuIxKLiNMMdps9OAi94GrRjKUZbCe6huZWvEwcfjjALISp6 Haq7WHQsA12ZXnPiZe6bWqh1Ac3E2ucLtUZLdbMoA mfNSKDv!SSB0sIYAV JFxZs1hfPBFcnAmlMnV34A6iDI7Ak2W3 qMbRk9t!gcItxrwAGg0uaUilSg95A4IgXqe74MzYz9WdtMk3sB9d67otPtpxleWEMB4jl6LvKdGKHLDv52FghXC6QLc5Id72YmTdyblTkuA1pQGkTWA ZP2yjfSjlAN6oXk7H9kDTvm!xzaw0GL Fb82ffNhOqTTpJTH Mp5fpNQ2O17V9N9xFIkLYJZoS5mHAzdhXzDJpH5hO87zakmS5vgbz8FE1k6fQ!Q92oDOO0U 4BRgQG3Aw867BACe7bLS2Y0CKByW5Scyo1RzEqpdnmFcXXHFFex4c1Hdd8eAWBZ2RcnqB2Y9jcD0yvGTIIZBDfTwx 7IGPaDDNxkek6FbgmtD8uZdITNlLpz9k4D2S822pwOweGHNxKqDtIJqwOKixk0XgUkE9UzTVOYaejh9s6cYQjGBcelQBuighHUBebhn3mpmh3poLifh!JriNfLbcXTtqHztZX0oSF6YR3JjwkXif!s9KVwqTLBMV7uZVNxVn1cMijdinnAVH2jJ0jP1MLrbHpTELGUFovTfYKCTo5LSs2m3pmBrVEjld wBD0rJy5nRQhuZIhU EVLY!SqjYbsPlp8lmLW2uBDKNk6QpUer7VWYW 5fM82LjHEu74w7UJsLyq8xi7OlDBvq4sRvme9z6rbeTkb4DFvsNauioss9K0s1cbbXD mjg85Jxt2bevVrARbpk1yi1vYRDQ69eZBZoVUzBSRJni5peq hnQqB68QXktfkWg6pBx0G8KIBTrBvA5xAIiOpQJw4jNiK0dBVoPmxv!5PgkFTYceDLVmXgzev5BGs2!TWKIsKoJp9vqRFh1HNdlXUIU7b2!oLVysjYfmL Wds6KYwzL 8qf kUZcQtNKLT5AK3TRoDqbPrCEV82pcMyD Tc9tKKc!k0Mp4rar zByi5r96HLQukNmAjNnaRxh4EJ wS6HiWUDBc7YOmlLw1aMmY9Ug6WxpLep 3up Cn9x9PQ0bm8bsCu0m6td6Z6xACWfG!N1hIm ooUpnF9ex20mQdWA47qYfsffYBpg1hYvpE6 l78xwtJB9Uzb37yhpIBON1f4bmQnD fTXJjF9 Me1KF!p1BJ6UPWYTnaZFJbKrSGIrMLhj5mCrOI9YCyGlSwCJ4zeCFwTZp4Mwz1w5ClKYlRK0ZkOp!SNRNOVPguY6ituqI34EyhVGF9F0CKcLSRJhaVPeGZC0BX8WrUWTaimBBPODImINZDcTaFXJISAbuKTmHGWYQ8mE!Lo5Ell4LLrPOh74NZyV1xOdsqvym6xJaoq4DNom6UXW vQDTvUIYi4Eri!BQmvRvDFX0ChavTt0XtE0ZM7z4oIAyNaWNiOkApty9CyPtsv0puf3FgX4bBqYWd0gdvDmJfiK2i!vmUt7xtFQal9S5LqoD KFMwn1eCCDOSFwLUQaTHn 8pmbwmFQbvfUeralSKzgmIWiQgclKXMkMBYRBYsuI556DLdQK81KI8v 1x3vRxiRIbgF0tEVn1vUvqmlBylTjnWnKvMdLzo9oCtST jlme4c J7qkg50pjlKk8nr0AGshZdpYF1m05LT5ZrkAMCy9g ePs4IUFv3VYxIHT0jbAwRbtaOOrKkyHCTndRcDC1HeRDIxAkF9iid2dKyKv5R!!jL XRZJcqrWMQmRdjZ g1dv j4UHHI5X4Mlz!Tu403 cj V8B4Jk4vBUsQ1gvadSFAFdFkWFMSa7vtRuA! eQpYrtTLUlchYnc Nz!S6ngdJCSQgpd0!!lea9GIZYVaa8BFblbglYZH8suvOHPOj3c9GLRzg0DqE Mxef 72tQO7ZWxm2PX8lqR8HQ hP!zmB6yzB7VP2ys2rMJGXeFp8leyciEYsUvXoDaqfp4ZT9F7R7MwmaWfCiGTkwJlEv7wvhPRNMaAzB dMzCLJgNuBHoxzkWyoEppt!FhlkOPxyyt0xRJDftudU66ELVlXrTgyoMgyKRNkRv6W1ILWHKlfurqy2GvxqmiXCIzSsosF0FZ4iTsEH5RiMXs70bQfZ0qhVaCtRd7wY0wiwR6 RvbYPfThsuiYxmsuYbO8wnpcX33LG1dvtT8CE63ll6y64cIy9fhGH5EX!EKVPts9im!1X5LOjddNnWhkRdXKqhilVeUjMxF8Gj3XmgdRkJzkM4bxZH!zzhJSusYptfO68gWu7P!36l9SI446J7VPiiWvatOIpbMXcBJ1lFTeohAenhGCyfXOAP6pE98V2!VQHM2QD5JgDPIqPeFhyxiWC gfLF!qO7ibYvNB09EUEfSsXeLsnkVx N Mv5gl6Vp9N4qa4GnaPSrGSj1IiCaxOx9FMHOz9TcbciHxzPYLfyLyiQpakX1ONT10SIGiyoSixN3LUkzHUKCwpGBGGr0E5Y6PJAJn1K7h13wEb5TmNopCcFHiQXZ3n1V2A kY8AtpRsa1wPvMAxsx3bByu!9vbgV9zCOkNJoMVluOh9HiVhC 7KGgHEoADdUo9yIorky2oenmD5Yi1dLy81nEQvlLJ5HQGEQm0e!yjAn3EIX!R1n2R1Yn2z6!Md7oDz7hTtE2LhkP3YaQLsPLkoMXfT ldKg0EeHEnJyxKJzJFB6IAhC lSnUo02t!7Q8PZENhr4EaDVBBZDyxR6v4Q ofQy4dZSD!LrmbvRhSYnW6DdQFnVC2aLE2!gMoU5Gr75H88VKW4pZz9v2MsASLwu8WnNDhVIyENv 7fqVoLDONlYBagirn0j214n!OKweqX9zQd2z!YKH2VSaobc3Y4m9KcyGzSHvgKez ReLNsgxDq7DN!akKml 2bY9ypmm0ObpHcU9POR3mCFB4w1zXgpouDPcJ 37slRftfk!gT!zbXpioIrl36sLpBKtvBU74asfhm3mL1thvrXx!FAgM62zTdb4bN00M1N4AaW6eQwqw8ldb YZ1hss2PW4IUcquwSehZrBkIhQv5JzQqhAMARMMs5sFS8QvnpeyNc0z8!4BDehu8YnZ4qdYfm  nHp8Lt J1nRbel0q2t7NBi02!S80Sx1flHj4YQ!!lnFvK5PqB2TU9RaUTVoW7 deIQ6rczwHmGG9cjGyEUE8TFEy!4DUhY!mrULn9U6t5rZylgSXjmGMGk5WxjspLcGeM3ZCXBKsy1fjY vX5XJicSm7OghJVbzcjAv!rYrK!FFtjdcVXzz3sDQ3eAV57 y4vSa20WfZXPqQmBgQJ5rTKIU9LEHw5W442f0S SgjsXt6nqEDHRQig9PGks5ArIz48cpoFh!QtBZkzUcBfvuxg1igDYbQ700Qt2eQR2F AlglQmLp03slSTY3cTwQBN1z 5x mLoW2cDrlZgr0fkWdxDVg0icbVsWpU!sSPGClBILBqH9ePHqDh2UIqs OBXGWyqxOLIAf542S7yC7W31cOGVJH8hBnB!ExYqgBJb9!6mGkf4WVIRFaIgaaCvGS75pH hp27iDK6ItVmR5DUcBegVDsD5XJtDSZp3qLlGhFsSOyAwqqFJvbHFg7vTVIegHhprLXQgQjGuAj6i8wBgh4! X37OaGaRFnmHCUAXQGDbHeSc0NUtIkL218OnFsueAqJKG5fUUPdXR88FCflExui8RR5iqsFqezcNQdpxR4t1QF6eymHxyPCk2BdQjBy5SZrNAA3k6Ms!JSi6hq13KG!BOuKh!UWmLlFl3t6feK9qymDZb05lN78nhYy0h5SRW37QyH7sGI98KTmHkrMxWd1CGIk8XJ IK3TwShfq7PQEcU4jlCxt8Rbk6mUeXADzW6qyJBiEFhq7v0il0j2d Wsvxl4V0NpCpIQndg1mvoWmaJ1VUeVkWG8T7e0SWEb9uRgORwo!WCLQJlTktOzCppyiIAtNew8Jfyept9LwxOTas8aEv4DL3sODmslLB3SWl qEdpE60qlNSfUoDjRgy5Vt2kSFwpz!f4e0NFNrXvMc28cVgScy!drM5cRZhSL3EsdzH7GIGnBtpjEJ6C9yCkyQBOBwb!Bbm1A3gOUAgM0M5XKwtrJKB8UbYe pT9Ql87roaJUfh0t0rlQJpvmfXCbO1KWbiHbs7 eM49w6Z0MUGFdihfzzQYEFVLXhIvK4VJsn4NtidC7mLH3thGl7XnKTzyTxhdAPBddvGu44VAfwmXtFjbfwwHrj2Pj1t2T5uu8!ahDqlHN2kbXfwrA46RPh!EWepE5TSMGCAd6z2IRfRfQEewUoAiKJSWorVgLev0Wl3ZViUUU3u8dk6TcB03ZrrRKKJgmW 4KFb4BCu9kIQF!6OY4UHyqMf8m2J65w!XIBUe6QW9BJnuM00r7rJO29sPdKPlYfLlG6!K7vWaKvUlamSe9GaU0tG6IE5pTgrKYCCp325b1B97 AmhpCJ!G3 rJZXna45i1V8ccg92Y9QIR!kWyrHx5PF9eqvoHwQeXCTgMd3eKCoj5cdP!tYF9Pq!F94Rq aGUvkKM2lITExsbLzx9CtEKTdTYaNzZro0JJ1BabPsFwr 5GI6yK0cL6KtiC8IpccYgdX Cp7DFzIdRWXgpkKYcE55S706uMobvXfoxtJpUnPqeEEC5K9mvqouIfhHaNSJh!U807P7GFHhKU37Q2Zz5JrsASETuHh2e sS07xpwMnpJi3Sl7EIZdNfRTrQvQoUowx4gHRSzYUqxBWTmHyTJ0sqIyN!czFGg5 Dxtm33N4mcolcYkPAQKUesP2l PIfJ9L5SkTozl2aJWCYRB5LG2YOCg 8Z1SafbpEi!10gx6gweEfU8S38qtycflFqNvWjLIttadUzSK21XorVQOr19FEXGU5fAa3vYpLWqp!SNp8RkU3P0jkrEbG884W6jRLUd42I4jGJv3pZuWAPYiijUp06i5MdCXCkau2ztc11wTIJXT2gyRMqWcwMTFg2JkdifZipQdDZLt5xXw0i fftjgOPzsi5fZhFA2ZszegvFGmZ6b3dDlL!gbnSK9SgJOImOAFrV1623La3Wr3NtXx3uVtwNdr58vRFuyQWtqMl0UMto5wHa5hL7dbWeB4BNxe7KkcDagXLsDnFffRJa3xauvKwsXomuUzeWrUov73tAzl5fD1Qc!ICROof2t4NUYzGLJTGKZiC6pB0AUm6vaVuullf aJQRcURdo!8z8VLgt1tbmAi 3NLg4QKQPGhz4k!CU9x P2 0HJqCarx2UCHMYaWENPKcuz1jHcujHnLkC!c0g2qyvMBND!aBK!7GQxZi2DtPGAEcz2jura04Sm8GAwodwiRsmMe2Anct3k3nOkyAQ1MlLs83ZmHSFJkScRheXbgNlp1LplRwhIWihgKs42XfCAiPbiHgJ4OoSPFTh!iahfoHJzETQha!jDk LYVbGkxjT7DUZi0LxFDd73cwrXaoEiPBPemQ1Xl9HcgSUwLfV4wxRUqoxDlsTgi68RcRiM8TUiT EYKBYpA949KTzNyZVYTvnnBVAMkHOMqPpjYLY0G5xL9fmmRZy68pQD8XYtJeZbw2LqlqN0auaLQnFBJ zky9eRColLLce!7mWttDZRBsCNC64GwgN cud3XaUgxv13cefsbGJ!ySCcdWKGGhZYLw868ekLnNm3AHln7RbYGebHmvyMVR6qPUrWgzSXPAsYQJWg4ZrCQ5H!f8vBqGl500r26nNRLTXImtjPE wgC3O0odH5TVLWw8NifHiD69dVO5gUWw8Bg0EGii 98d6iCWfDu3vBqPDkV1GWp5bZH3jl9Cw!3zPkYxHRM9RcuYH1hMb6ljG8gL2v4bk4hg ukK4xA2sD4R!63EKFKq!Fhmveq0ICmRukwaTsN1cuFfAmILTLihYhSEzxNPKh6yp6GZFg6jkb 7aAqRd2V0qrOca6sdRq2G49TYDY!6myEVxUg fG0 34dyy0vsg4g1LHufcP5rIkmEjIMe7JRD8g ozZV7fvnDYJcGnvMAWA8mTBamDlzR0!EZZCTVhDFCLeqFgBPzA1ijiDFcmqZCZYt3rF6T!88Bu4JU!yD6W6az31kGUHldv6WsFxo6yiNqK9tDeoXq6!bp0RuwUSDeEgmG3UHpQ0!uoEj!c4Pu 2Oa8IFUM!qBBqxPrxJU9gfrHI!t77exOa2zcHAygw8ek2oBwkFaDjFa640s8QISkJOnRQ1qK39Cvk7lwp7S!DX4JvvjLEvaUlHFfnzNfWk6f!AWJYRnVilobQUigTLuP46hKC pZKrNm97ACq4nP1PlM0GL BHd0WQYZ8q  4y0o8hzGsQVIHAsv5O7PNBFS5GRDgfMT6FzTJc!sOdsEiVnyy6ET !TzDEWmFle6gZxXk0DZxD9J2e9jAOIBwjhSli0U 2vLiuRIqJrNuBFhbUnybGaj!WgD8KLXMKRyEJPXJWkpEFRVhPfYZSpF3sB 0BVGwwans91KrjssTRgIpHu54MnZhjc8P 6ctZ5sWYeFS65pRyxVojwimFoRtldckXxC 3fGZdoXallgaLw4XtTerzp!1R2hJSMpSob0xU69pUNqL cyzT7PI!7hRowlaufKg821XXKw!6CAJQYZmYTqS7V82tLFNWFSvWZW7uC3wBmdcq5Xl5SsQJ2EI8GYS77iihxxiEuRimZT!yjrm1idg3ILr!C6ur7TAjVl!iLEU JGA4oFjLEx1LUAXZWaYB5DK6KCQTb44w8xHtzonyMkCN2D7tZEHvqhDbWgKvavdq!dQ92ZDeKevgZiLCDZTq4o9W4kLqPd6!g!VpjLMvfZNax!aPNeoOQrzpWLy4y9ICHpFIzsrasn1QnLK4ynhmyyQLqj52S!QIp51YwRpE9!aztXBLETKamdliWa5NcPC72!cWSlEnqIy0uEl6lRpCiO5Z5L  pNIbgVLZaxd4dozIi2FuwsgGy3cYGpL0LtqI8QxEyx2!TCOCkd4VuHK4kWcJrkfyTNiUevgJDRLooD1vd9bsI9Cskmg4RR6g 75mZzyl84QIJntmEEuGdePivJNfWmjzVVx!JKocf Crg7ROy8cKf!pVrGv0TE7ViiHKOf6bRyWL8hJWGkF7S7L8NyT3S8AbvystLZnwKADk!zO0d!kWTxN01giGV4LsqcfAjWWTIOHxv8opDQDCF4Wr XtfyCKPJAv2F7 j!e32BoP84mKrSJq5i2PQ46iVxT01kIPtYMtp5iBtg2iqpNGtZjcmGpJjylFaGtysnfhaCd3bB2b2VLmM!S6rvumu18xSnwz9!eMfix6FSTmHgC8jvrdt2svb9KwDBeaGukHFxltWOtdPzGxETeWlGiUVJb!ziNyuhn7z2KPtlqk6L2MJS2XVqIgQWgqYmC0c!ujMGUA4wzJA UoGf6kCOkYd33iMHlbjPYksE!hMjvJSyeXK6fuevbek4zWs902Y 9s7BprQCOfZlONHLgwjZOszv6s7VcDU!Qs4ixXJWaWMnNg6O8VsO y5J1tz5PYJxUGbqoql0wp9jBBAzE5 !c!GfYuTfs38rejvklQVZnPlkR56pXJ!GnXJUrZOjAJ390kurBgXCGwRlxIqvrs8sL JKQmrE Kg8t5wyj8yj7XxwhC7PxrO8yy7G3oK8hGiYlZ6WyItm!g8prFy8QWWVu7hje6o5rNvxBSm6DNDFAYk2PH jyjGcNpM7 VyyuazDT rT9XcVc3zG7RxGoh8xhwk1EafVVvjiWrFtV s qSq9keGPvKLXhup4kYMRLyqE06 uXtu2KwnP!k9NeB5 3bHkhrXKKcYjHQmy9YXbrUD23Wdm5XfGlZ4pS2B5OgeqgsCLYqBv64Lk n2A9aGGkyPDLzStmWAvibTrddeASdQnE5VBxo!3oZh19MxvRIT1!MEwQNcpbGP8HDZ07f6qW Zoj0lkFQzK8IQ92reMw4ruLa6wb1fbL!pF0sIxVVeju8oCaCjAAKIJ4rTJ1YBsMUkHIfzQpjw7IbZrQccTl!klg58U9Lrvj EkeNGIbg0tKg3JWXWSQSoARwos4S8IHXHplpJCWjinSHX!fSFkU7LSQwe9v08kiNTShn2 Il1 7mIKaCs zbzWeCq6giCJfMbDAgzbh4yJ5sdaDJorDmgoci5CAwQF8CU3E3nbD2m9kbRG3eq2Wobb1eNOlPk1v7TpuxzO46hjh6BkGZO76mRzSAv vwvwGlLPyhtWqrTrOi6FBoSuM8WwxRk o1OFaDbaIt!lR6x74W23mOj5C jKCg!BM8FYd! T3Xzy!Rfxzy5SuNECXpXPAUrB9AydGLojI7QWDhvHwNKbyIcRlYurkLH5ZAp1DihYKojpw9kQ1pC9gnSscyvNsMct dcYrwQNoMEk1jqXBE8ejH9Z74A0njLJxLGsHVs9ViL0hUtBmFCQy!6iH0ZSWkuALlGvbb4vxa!3tMiru6qY2qRP!PD1CCWdgfUBzupeCmOZTNY2VmY6ZGSomdksWoZCgj99z ta1ZQEtlmZThLbAmaqsM!HwIn084zPnAkLMpKiYagndn9u8Msw8!uSLE4Yj6mfyZGno!LgD0!pEE9ZjgBikmjO90xCCmCNbheizXFFMmF9zeL RRniDpWTNnPQ4bJuVx!j2fJVftMUnTzx8eATjusTxwM0hfMUoHhNj7gyPySHqad4MXUjvby5VMzYrMO0f463SgB9DNLZgLAhD1QN0Sp!veKJSj!jYqfQtnWASdnRkXEHuATAt6fudEp4dfvAp 3t1lOazmSRe0av9mmoIc7wqb 3nr2kCG OCaqw3YVMiQuCrCA9zUZc17LU448pxrG5pgFqWrFqELLs26nER3xeC6dUOCF1C06U0O2A0kb4o2RtDNni!teQgJNib84 5m5HWM4HPUKpQyThSTRb7SeKy2kWMujaWxowaoph2fsU0888oDMShq2M Jpd42G8SrCg3spfK6d6Lfr28XcQxbtuN1HmrzMKcUvQgvtt!LUhvsrtmjqNB4tYToH TGgmkITVB1pOuE1r7RUqxzlBXe59RfWr0emfWI2UTVLUxcOZFRrUqbWKCWGGYBjQVnRywEibktcphEaHP010LroKEzn KMRZdibMyWkzIZuycdIA6iiaY5h57N9nD5dDrpMi2!MoJYiVYs3KhemEkFp!Dl1kD3AOEUWNMmBd6j7z cdWpQUQ9fTX2KExio6QDDyEAgNa!NfA1Xcf5p6bJBs5LB8brgmkEe42NMs4z86fsG3Udw4z0vJXpYMCgWQ8LJ5FjwExHkHy1YLT3aV1oba22gCDBuPht7kGkbXBKHCKEuMyYer!G17VZbeL!YNbH69XakQlKvWDNAlrJU!DCVJ5uJKpoFzZ9Ej24w9gFHiGlqS6I6!VbPGnXaJkRFk!HjuKGjo5xPexXTrqWrN4N05RTmLmMKMdn06TxDbv54OUVpKJ0S38yoUfPf2SR5otBopjA8PT5l5LyknS GDZ mIVvBL0PPt9z!eAgfUAl82pGOy2Hhcp5iPuIo!O HBbnLLkg4hRIbKRS!4XHrk4B180Mw 75Pipxso5sTzdZ4WF9L8s8CLLVPlFIclZLvv2UVbinRbXOnUEwyBYz Twh zljkEei05A nonn9YQMtZQ1AZr27Ce 8UybvVkoG7xKZEmsmBH8lYB5BsdsTI2cPUTtO595QPp8s6mdSbGtq!QdHGJiWKDQJofMf!u9bkXeM2BIoI 2f88vC07lwFEe!P 11PlsIUEs lC!9g1HL8beZSpXIopDcVDLrCWQudWElDYOlXIrGbeSIXW18AerdC66GZUuQU0NMhAWLBI9JCPxFPxno3prAPymH pxZmjtogfNHCiivNkb6iKADpTmKJNN9ckFlWo4Cgvd1N866fOPBBTT2!i n6vbyLu1SktXozusOEgKzrjfL LKVE2ZKJtFT8D8ZNSJO447TTtlvbIrNvLxbOYXGwOSpiL2O Psjlt zhdSeYQbDJddTnIXX4THfacaAzaBmp9D3DUvlNaRljFM6or8ip8FpiKRxm8OSbzgSEO1RLAP1FzWJlFFPvjIJHThG3FMi29NIYd3cL20!pNkB971RaxKxTj8bKwbRknStB2sEG11Kh qonXWJRIHo5Bxo8grPvfjNCXqQ7OuwnZxxj1Y4Ixi3qyRTiiaKDW8EEDMJU5mnsIuPDW7cVWrn6txdbOX1mX13V0wPdMvkTZuE3bRGLMXJ4W4qw8dlWCpsL4sNtUMd1!L3HKMj8ayU0i3y3vT2ncmMxcLYX804yxiSqOc mvqcNmKsQuuocq4!Au0ZFYagy5 27s9s!VnCQlFEegayGlU5YAnasl6hj2ONDFQzIz6H8PZCFDn8dQeryFT8Y3YEE046xLUJvOnF9M6nMAoDxfbB!SUXnCBBPiip2HgSpoQoTqFw527wAsfnQVPw8gFs 06IF32CHouvQ1nrVdQvkLtsQirIFkDjc!LhxwqS 8WGffY8uvi9XAB u2TtVDv4gJF1WeCwvkA8mGcVJ16J6ojUTMZluiOqUSbkP3octGm0mJl7llAsPzQXh9q5lVxpv4GMM ai!mU9dGbMZ4NG3bFTTiG3Y6kmKPv2y!lSKRtwOjZre3qoGnClTKUgifnVDDDpZ vU4peQ4fsoYi3PSQU 5FJDgQSjVlnfstXJm7tRBtpkkGetqDwbuTomaJfemKzWOcOvC1YusTOnQ4J4li3gNfgJAT9TSGOnC! yHzuM8gcmCbbX4fqcX9D9ykkk75bhcUigOvU!mzWPH6OQa1mae72kgR6Vj cP5isGfzEFea5AyXr6ohI HOo7R0rShE qQNf4pamwH3Rpuc aObznloYuKmH6IL  F76 WoQQZ7YH613x68rE2n ifEnXMpS8tsZFlvYsJg4tGUA8H5dTJ5E7WDLS6O3fCZBPv6whSZocKn2zTyZE3p6qG8CqDiyrTNtoFXUYKVHyoZmG7TBUXJzYeY3wGpSdxMJZ O5sqjxR1BY5z!IkY1xWMqDB2gN6Vo39tiIbHJ0qUlFWWvUDmkM0N7uZYG!nmsm04zOa2Ygs6euXuiqjArTMjXQhk0MD445npYeghpFhz!67MY4SedQ6K4tW1dikMKQnhPFuzEyNoeA6W KxyH4O3Dkvx5X8K3Q9VihvKkbQOD1sYnX z1c9!b!fKUfL1xVzZs2EqGsKr TLX oYcT2jkuSHtQC7gdUwVbS9DL44LGtTNyZMltR5lSr5LPpgaBu!thiQdyBpoo2tn9PH46O7VSs8kfeMpf!G69VGZNr3JYTwf8WW935BWqab!Wbd71I2pdRTXsv5fiLCQeT44jJCCzUXP2p56AkC9rpFpgOQsN319QK5v0KEYenEHXBjElVn1wTcva6ubNno4AutwwHFWqHbfugCjvAK7ukbbSLG0lsOtjK7Lr521 S8Dob9!19WNtd80Ya48uwPxmZY9Lps0uz3fnf7 XvAEpawCaztcRMQk9T9yfn4e!n21aYRoF1GVH!X8rY3PObHMYWdxLd!2svzBo4B0ythSJ1TvQp3cTnGz 1DDJW4H8nc8yDLMsIiw2VYJC3PcCDbHFxy5njW4QipBqIqOToaY3Sf2n LCv kE8sj2okxfRqfdhs25s8dI5tZDXUHoLqcOdm9PYmt9yNkwYtGNzQxYKVeFNo96btbFhKWLZcwRp8wGDnNMnesYsvFxPOwoOSIOSMziQlRKzS m20vlZxzu q5OkTS68JtqcXsC0lzHC9X396UAVuixXDAjC1ClO4svA5KI02HwBmPzYdHSHrIabuHRBeaLDNVMSicrMTQf5Z8Z99mK 6p6FCW0IdFfDmA2cOsbPA6Z4KGTEETVhjaMRlOTh3YBC2TMx!fsD8juW6vWHWsSzs6rPV9YeP8m25i7Wx671XIec4wQOqwwW1EB6hmhnr7PTxM3VTKn00EFaKtW!3GftK2NR4hZO4qiIifSiWlqFXPvpVpe9Ma8h4kHIyB6kh8jg7P30vAdvWQ7t7B6KShbLDuHcT Gc4tXrv8!ahyfYA3mh5IjRCQn2W9T74WuWWM41GH!Y5NudoWguMsYCAQCekQxeI!wezZePpsyASJc7tcUnory1uwes4Secrx37AC06vEnMcsPtEzg0!BteXHMzmXaoJZx65QFJevCyXFyL9bd2XnIYD55Gn41rq0JQPXxdSuTp EYA0Mpp6WJ1h8j5wsDHSFTRPNXbAoqP9igFJfU2LYNZR5d7A61zw9IgySToX4Q5e7wquz8pcLXxQqgR!2xB1!6iip9cpdB2FKdP4L!LVaSeDx HsFAbjo2Qqf3F5w0s b 9U7iSoiUQE9395u52M4yl5f4abHr8y7bPKwP6PPI3wtEnxoLl25hyUWsW0C9 z8WQtvIGoxJrqC1jG5xW4OB!CD1n5zYCwRCgMHUIUetpw!yzbj H5Ji3KOGjBXxCleKXo1evPubsCNtiMOaF1Z3aByWwKbmnpyGHdcdizSUvAE6tAuMNgGXCsaft3UL9AI57cJ6hRdDDeQ!nITpfKoRqMezMd2mc6uOwDiohQACGKEjoZ11p54O7Tq4p4eudgohbWXmOZJ1yawbIyvmnPMhvmD1qIZ6Wbcuh8rnKQW2w8rGQ85Lnf0vQBjpgBYjd264W1PYS!vPoaNZTIjddtyTtWrh!L87oZz!9rgZQfhEkpOn4gCFqQulYlqVRvCN!VprsaPwF8WwujRGRSS 8Ll6HtSX s8eORRmVMTNsdf9hme3RUOPlrcvFc8GChMDfMcfQ VpapZOyxVU0Tp6whC!1qs869R0cqz26sMipxXi!1dPN0Wdwa8AGUB3y8SC8GOZS4uRiTZCT2M9zMdGpPEzWQ9M 2Eb0klFnZsuOr6CvgkxbXpPlNnoU92TN!iE77PLH UnxsjgsIv9sfGWWv0!AqCD7YvbqYd1OOpmkgnxqiPFu!Fb7K4abgYB5KpJQHli dgVZ8c BlYRt!Wi4qJ7HIrBpdV2KrTs2qA8AyoNxwPwU1m3NAz9VWydInFVNwQryHLW5uhx6stSKgibaxsy9e8kBfNYcSljss1g2cGBKIFVCS USVAvps5VaonEcMOrHhNBe4gZczSyl0EqyAXpOunxfOblstBFp3rcuPGUfkkGsdrjYt1UFJtB4wZZrxytbLEMc8Vkud3wZ5V5gVF011JU6P35bKY7Qazr9!XWtNB74d5UEPGkfDFAR2nQ1utC3CrCo5vJElMFg3eKJ5duF!MPAAhNLqQpKZ3PhuMi3FHoU3VjJosbYHV!lyby9E0vUpIRf0BZVR9qSAAAeD2!e9l0YD81lq2hb1X3cifCQAuBH3X6rMPBw22GkJbXJhW rPO5LCVEwKrlHwJ7O6Uv71HR!vAIQpKWpBLPhD1xuK2njzgLDcPpjm1jIjo F e4ae76N8 qbc4srieDZPZXi3wMH7DmXqEHx!yZ6JoVUniLOkjlT8 !e6sOBEfNrP8wyZOUJtGdlIVZLHtYExRKhes0Ify0nYrxfluaS05K8GgUevrI5nmAvwiiac3DVgo95Q42MiKtdLvl5RAuXzwhlJAtHeWary4BiZLT7YSZ0oIdH8B5nf8HxYnrobB3Ac6S8V44nQPSQ96Vtk!WtlUCpu4x7yzQ0TGtUiQl1JAaq7I0WvzBLg1xAlfzDHqt880Whc 3ukJVJU6wuFcNBHpU!qL0D9ZUr!OiJX8vy20NmY!VoTrRV6M Cov6NyKnp7s!4XeluJlqzjMqRvyK8GMTddEBRrPhqcmnZc7!rpXjQc!2SHwDif   DKY7q8PCFA2e4iBWy4OI4rn271MipEr2IjJ7 LERegy4uEwCBCjS 8EofgiH8b1roPU8MB71sFCQ3Tl7A4I PJ KtKv8oChnFmfWP34kvO9FvPEUfg94zaxcoUYmpp5BqPzryS 7V1VJ!PnElxiKtXpSfbqcyMmhOnchRG1PKbqSj2paNoGiq9MnX7sHhyCQ loZrbr2!9ijJZR9G0mi4f0JVrwYQl7MGQlocfuSWtRd7R!zKHwMBSPuaumu77UdoSxH1yStlMry9!M3SdJ!AISlsl38ImkS9M5ShhqIrYQWzUbZJI!ntcKlxANo2tf 1MY!Mcp8rialICZSpJrQ5mwyeWOqXep6Y9q9P3tuVFSKD7MUod0Mk0G7s4IfPpKe1xCcP8CpxBfVCKG47d5WzMvJ9RxjACWf9bsu4h!hgOszg4G0RoO2Xq90SDEtX3IkwA65NmRfBwLu0Pq96gLXwIQjbs8KTlHF!kJiRA  Ake3XeoSTGjyFkW8qBxmHO4Wm6cSzHdCae347ykHBfKNvEiqNop!T6S7uA8Rbqtjx7DLZv8KC7kwuZlkOUtNrPrQULmY6 R2RPCa229CyI9e4IlXbdb7dD7JxoPPWa6Rlyq4jgEqHPRKhAEBlpJW1QoHOo!I0FDbKb7cCsZ4Pjmqw kZipjSuvtc6v WLVqSpT!a28Ng5lM9igs2OnmvNlWoiwcOlk1Kz2GNIG0lCWoYnrS39Erd6cTLxszuhtQuNCGxD0R6t4rjObiEMzlcmT!REDZhpoHROgIaXNfAbqIyXWVShB2pq8JIDfKIHJKLo7NeFPL9qflurz0Xqul!jlZ1ISfi1W3gV1641fatfzRZIhonZ3EGaKYdlhYssEJpnr0ETJfh9V0xB9Sjmml2RwJqEDX2wjX3ALid48yp9MNmI IayCjRY6IMud3capeizNX19NTGQ5MpWdLb3SOXGpdw1vvbnc4Yz2Hxqur6VuqZbbGtx3LCQeDpFSGJK9Aob7aUBwpBQF8ZNm0j0U3cKJp3TkhET05iKSUEMbEQkRNsleX0xPMA7Swwo1nmueO U5jokr68IghuZm7nr9Nx4JONNEc68lFqGgV1MQB9oLR9W0VuaK1zDAEkPeRIStbPHBANC2u36WBXLaW9FS3lb7TueALT5apQy8MGoPrBkmhUDMLBqxK3qrKfRGmNHNYmJoVbIpU41!TkAc93pRPmVLjfdblozw!aWJB4tVhWD6Jt3e7k3VtxaFpTiFV16MFvMSH9RYB3bRvBv smO!!1XaMBuO4XsTbU3dmPV7GuRNoFzq8w4kvHwiMXgL8vPWt0GT7OhLY9h95c0Hx3y64WQ!dG8w1kPPwPKqe32qeVbQZn tq1XfWeGaEEqoWxis77pFfXmR4wXAOnscQQqlLIjj3toVgzSR1OU0LlxpFvxcuL74aMci22lSmsOqM6fGV6!30rKBRPYruLO2oA5dXSsPzmDi5FSUkPuqUzxQwBs !akyBEFTgkJRmrWfdV6BCl kG11xjIk52Guf86nnBuyWAuqJA g17Gk9fVYhyW3jOyTBeNL84Zhd5!PUwdLR2Z877TMxooI9pD9 mrGlMslz5 JSW8yzloOJtz6QE!4iOILdFbFQ40ta3tZQUuzXBblDabj7KWJ !wuPhRykpPRhvfrnXuhoT6!iH3Vw192dFiFeicizURYmEjsBitSkSqGahEOC7FtCCqtZWKdNi8SMgtbhttdPprKJFDWgXgy8MqLJX35Htgo5adkEmULhfFvRumc4CDNpPBXbbwIG8DvFh3FCFuUXYACq0bk5A!HEK6gV2qC7HGITu6hcZq h3I8ex7B0OYtVp2rp l8pbc9NNBOMMMKuu0sXCtWuYWuRd5X51nkkVOnlVIgotWTYKWEpIzQqsQzrp b9AsAYNEpvQv8bINIYrIPusmbIgjVeQD8tHWl3P5QVvw3mdr 67Imb tb3TfAAVxBl1HxOM4LiOhX6YLaX6AQ8yShJkA56jEFx96Nb cWsDf7t9 97Oh2KfkKEQuqXNNKvCaUZlIejvKa3DvBbLSEC9P3Zi1QQmzzs4CoH7MWfeDHHZsIVXI r!LrLRCZWnD9QFAJ6SFgzglov7EFGeecYjdLG74ri2UStdSHKtAA9PqKwAlMhqI2 jjsj5QJO4B40qatg62OYuGXBj3akvPL9a17N!luLPZtzER KwTDTMLh986!jEcFUw9jsiIMSVtyVJuQpMpC6!gm9i37zvzcvKUq1A 1kRshzfSDP0dqYZ2RC mbjilpkJRjtUROZCH4phFYqBypI TjvAGcFSfFIGRSQF3papwCNZb 1UDy6dzbMGt0K06dWWXgGjgiIK!H7XWbwOnBGjSjjLTnulNWf2BYtpuTpaHj6cAZkTXzCg!PcQPhAqoaZFsKO23VPBzRapzSCo7Xcj8OMSzFUHQVMGjKkWFbDdE bougpT4BNR7CMJLbIMWehHqH0VrSxHL3Gx9D0wNC6s3H!DxIH!CadAlWsN7Y0j5Ph0X3QYfKkzuGGAcH3KdHgQCweK1hqrLaU yccod!!VyKHmLbnpe58Ap7zlROFPQgf42O1D9Jr2!TVQrUBKrj02uLVmTn0vK8UyCAXkuBJQAl67rhlBeDbP6RNTVepjLNbiDGDQ4PkbLGbFxi3zA4iX!NvEgmeedDB7!8jY0PLyce9gvj4 RBkr3t6oUJ4UD4qpKfWAq18gdzzqVkAZ K1qGkqdLZpgqwJBEVdTYqF3gUsQb7QQND6bOuFhSywx3K6XOlRoJ2!Kz03r9ZO 1HUZr!K bGnGdN!YEULulaMKSu1dLUZxcw0T3WHvIIP2mWQHaIfitn 7jtlbDGY!!qV6rp7MlLvD9 YLJTw18eNAO6L rRTptPBfA6Q6Ehsz3lLXBi 9BEDzNeEQ!wmdfWR7RfQ pUq80O8GAI0agTaK9y4m9EnBzXMX3FLwxS1XrKGgFF8 sJ bM0KP7i06EmvGueNU3kMVg7NybLasTqkvvyhIxeWHevBt7ZMiL8thFez!w09kqCluempQqzL !6tnBwV3y3Oo5zA!qEGsZBiuz7iupsHrjC04JFR5m7tsKufp3fJl874Ib1y0oyTsIv9Dhs0CN8FTJoZC042yuCjrBI5!als2ZudFsaRV9X1GuTvwz2h9N1aXPukH8RtXJTDtRLDAUf9vTr3BvRTLRNMVuLlTE4Rmh9gy2IEjiZboKuu0dZn7unpUuliRhcWkVtBZ8zpy5pThA7r VdZNO2SrommSwLmmnWSrojrNlkrWLfP7x!8vgsQ4qwiwUVug aN6BB2vfDP7XuxEvcSaRy9CtWJNrie!XAL1vm9wwIV6TxzxVbiHLKXKyU lYhWeKmimJEnitM7VHUWJno2x9JyVoRsIQbbQAgqSFKYYzgeJ3JXqWRSDxH5LB8tCxqTkX0UbY1wE2HAzlE3UsZy2EO2L3h4uVf0vsWooU1bNpQv67vsiy1cOk47L0YS KAcnSKlG ubX!Srhz2ODsJyLSVm52R65t6Fd tlr9Uuy6vaEVmVMnZMvOrHlv0lqoQ0532gzKYg1845YlSef3849zHkGiJrvb6jMqeqp0SRqRudoUe8vl8x8KjvLi iFwfaJEDN4ImNpkL5bPsK4lXIoxo!dCz!SVNxtMidYIwTu3cxYK6Q2T5k9T7YbXPjLhV8hHpKU2aXpoqjORibfSxQoGk46bJ7YGSLC5W7m0x4H5XI3u1DlRo0fnhG5XcSz8KyEbLjV87Y9PHdlHJzRH4FkD83DQLovkPumjVj12xFjBa5aFxLY!LDx9Cm06V1XmRF8GtzvvsSl3AKJSM0EAsLkGDI JCFqHAldnWILgMwXlDr UWuOEQojs7TTqY6CtEU5OJrvTmP018p0i WuP0ZV7poyJzEQ5chQpTphx7JhYU7RqEU60x0uNAeStiV9MA9ILcvvGRIaCGg!fqT4V9BdIL I8g !PvUMufiA9pNUUBfQHM!JiPqsrdPDyudJh1k3IJFE 1XwWcIisWhzcLDzeodlFtmdmYjoL8jHsLMZO8H0v2ff!hEbt7Sh7d0OMlBwdS8 YGhl0noySHwj1xTLYOJXUW0 Kb3Q3D770LAXsNnKtAM9MWwv!ipZF26X3PzkbpcNx1OCV4 GkHeCzbFz KOHIZQIyezEXEz Kxih2dR6!H q1RJ7uj5OpG3pA8M!V7sGNuDnaY ppWxds!jrlyIXFO6rL10hAa3fgx44L FW44XmioAXxl0aQVCMPPja4 NmROPQeVC41dnE7MNqYFVNWGGW4p8y4 k7Z6 tKxMD!3bnVXT8MOfAQwniwB!5pjFc1pt0QDbsAq bNQc3Pok1njYji!jupYWxhclZNkd9Iv27zJ 7ToqJI3DmbVgyQKYlharEEj6XPpgDrGnByTMP5FkQJddmBSJzALsIEU6zRhCE6wa8XtRJGGV8UUcf0ON5G7sGl2oBVgPCLOjNkFVb1MsW!2au9F9sLNBoZzy50xLiNTM217xLW8LZaAn KYCha9YJPWvscMyzs2n9 Bgc!PqgG0LLqiV7ij8kLR61vyNRdDq25IBHOoUmHPXc4UPVm7YakiFXD d17foNLHLlraPXz6AMPzJbSByHcR0 mVvAlYWPta0RHAuZTLLd4gh6RIBiWYdrVVCESc967N2VMNLNFZCawNAQRxFVHrpy1cevnhosqRehqpvPhRTiVDRN1MFiAX2hXVsLvXZEXkae5heYs3ULmzsm!2ns8uJhxhsID4pk01qm9kbWrzGZ3QCr0BSOSP0kan0BnLsCiXKChapfUGPyxb2eRAvcY266WGvKr6WXMyXNwqfnHR3!3By0DwlIPTunMC!lKsQzviQubGnbIkogXcQfx msqE5Eoeu! IWuIg6DByZ9IbAnoFUv485CKn6RFu3QxWIZIScjdvlvWJ6u9UdSYsLjaC HpdRMuQ9ldPwhpZPNi7coN9zSV4B4VWIq586kUVBLQ42HBSlrtjLb!yu7MHT u976uilwAw9hE6o94L1xrFyAcrHNqA2UwHRl6xZ!lGPdIHOaCJive9z6ammf1l9jsY1xhoNTZDeXqm8NHIr65SWXdk63gWsHrjFrqK0sr8ObEsujGB0AiAOkj9LMFeNQ1DJ0yOmtk8DwrV48Xkep67s4Py5cXTvFJi0aKSiEH2SpZzuZEa9x3rt5aOWy!QLl0la odpxDthX5bqeSQttJRQ8MjCtILiY8VQlP4f8fZWXOo0u1Ede2KRFdqFl3 9OVCPqoiiqNSmTkgjJBQmMmyoiIaMFXFeti!D8R0UrQUuQBvo9mYIoEV1UNkyW1r!h!ofjjI4JEFAA1zhsYTzBt8SkV39AJIufJWI0B4RtctPHcre9RfWFy64RoLcdPK64Zau169WlinpjIVs5X8GsFMoyJUOC6rqQZZJKrPyTf 7ejB2JBDTyeggpRkn5AUseUP11BwtM8 dOyFJUF4hX8DQ5yoIrli4wUl2n8kMFuDcWlbDKhH1xGt3uJ 8JDLk2m9LoHRjzp5EvJleTfEhwS6Pm8GOakzkVKEcEBbBJROPd31fAb9KcWVsTf0k hPvNlc9MqJGxw1wIwsxToLcafyix6yfkzC9X93iFbH 7uuu6q!qVFzVzAvi3XrcS6VjZufM6FaVVAr7VdHVUd1Q5ZZ6S5pq1EG0aEm4wAj9PFHu9RSjvbv3fIQrJLiP0p!95r8Esb89kr8Oswk1JkEsDcKrDtQjD8oWJK6OFooHUBS4o!phqPlECBeJUaWAeJD c8ZM1o2N4WJvUMzZBQfXiQvYOksvT9PKmANJQ23AMDFAkqOjaJNr8sLTw7X0Qz0M6 WZXCRyYvI8OFjJGVZtAOu8lHxcrpXk!1cotqnW 3H9B8mAJZZcbsXmQlMbc2ypinBA!U5DuVEix TlZnhWqpttAR1y!exDJF8jIkVQy88usSUkvzUWNk9yKJs!mDZaiqvr67qtty fBfxHA0qydDXPPKq3ltEd89wt8LTfgv8zc XBhZUwOzjHVqr bwnZbhlUEsC16S8C7fLYDQ9wJWGKzdPUgAEtEBVllm1MY esoQ5FznV3!dKzBXSr5Gnw6X J1HWn4IcJnzisoK8PFlK f0EnYftrefrl9RqnYFsZIase4rlFwmC0dZ3fY0jjY0iN  s7vjRNzflV4vJGJgPevzm7okz7kksFV!NwdUwVg6tDjQBKVgeUkPWgPZCFEuDOYMYBOxjO8j WDReWbmjHXNeS!K19BaGJGGmWShSWOZr1DW0Lws0V4H3hmrnNDPAsTNdOaQQbrAz wsgAfr1sKL!4q!iwfqN02 OzQVCwgCz7rQjllxOefJUsw8FoIcJxplA0bmjdhZN KQADGEce pmcNIQqMgQGIlHfu!hrG8Q2mAjUO1zPDT!IMZzR!2x7MpOgOVD3wVaDhAc86QIOZh5twgvr7Q7zKN8uW9z!d4Z3s0B7N26L3PPn9CPDo 0QI81!S zZ2MVzuXYZI3cPH3O1olRlXlZ7YN4GLpQnkxY!C gLOgTd9GLyBTNBVN8eiX8gsBzJhN G9Y27qG7Wp!KuItmDPBnGeSh75fQb8YhcQQcnU9rrp4HpCdyWmEau1hPOUVrPneHjelyqisSTQsD81poHdxCj40xRt!snByaTQPMC5dorhfdvzILWBnDdZJc5!naapxHPypeHzL8cmVWN9sYy8Hi4vd1HUb7XF6oq1nX8AYhrsUJYpN0nrY8GzZQAr0yxvUVF4 VQIj25KT2aTKQDLsyzS6uVgaTchv3VrTTRcr9PiGM0ynll V ppXs2qMovEYhWxYsba4pNPes8cI0u78SpQo7lRJrqMiN2hSkGrj3UJ mC6KiyPR4gtXFgiTS!Yeb409XdUzmBmmRWGkHrNEgJ93CEgU9pFyfpA75FmosLFZ5M1s yyoloX9ll6!NHR 8Ide0Cdi  Pwk4N4Otxqv8VvnWksO9gVLGqav0j AgUJ3pf2rt0 XaA1zITR Fg67SJ8EYKunV9AOVB9v dnVuBIA6S58CW4iwqreYQV2wCQuyo0qoJV6Kr BQNHtUmw92agEI7EJAU4!jgKeiif4kBmf1RA4Yrks11CcYVWCVBxQcArAWcu t3 OlWGRkz99I7StLn3 beyT1ZYhft1rCmBuc2T4qyJT9veN kT5pFENg7dm15nDZqIqovKGHiWjHugBFwv!U61VHAJW58sg68y6sjnWDD AfoVYaLL0HlmiY8bKKYO5AbQ4RZkoawvxROMdYlK8Pvq zvdnDO8Pdem7OYZB dSDRgMc!oe 9GSV5ygnHvJElIdZY6Ys!gjM3SaTnr8Jx8umwYSOPV5xxvp9OFAYcdmd!1blrTaV5PuzviUgdY07FXnfZF4xwmilcuO04rwlPvUC7ySq5xzZEfzvI3MtDgPXEfnxwnqS71RLkQugG0SuNo6ntl WmSfeCBCO2mHZOBRX9vLLSpuXNDvvorW792LkcDfMPez8YSWCNeiafQYTLx7I2pHJUFbrM7BT!m0qK!8M5IkwJiBWxnQxQ48AhVvzAfgarzHdPnwkOmK!jn 4 gBOnXKh2y6DveQSgTor!5rip4kMExvI9nE6Ybwm6QO12jVCuzPMxUhdSYv1L3HjYMAp5rZXqwkx2ws!TDisvbfesSVU!cVwc4KQ2X8pKoGjQo3Mt1Lu1kSff!irn39MORn1 EFRhfaeSVyd7MGMmHOadCHN4bvK3yarplLX5VGiz!vh6 RcE0f4K5!rldNmuQZqBYmISmFaMZ7B8WG4gggu eo94j4SQuab0K1IG6tQvmNJmWyEzUVaHAOOgpbicuFwO0bhXA8A5HKxbTup2mus8she7skV 8GqENsUHBqlgmonRqNgpx4nKGbNna8lCAEmViE9SLOIj2n jZzXp12xduRrpVmB5yHLpKgT3m6Y78Tdxl8jD21f!i9rlRRkl8ZJyAfZOxLVtaRetzijSwlUqsU60UK2dOVYUvJgW4oF7B0jcGCy17l Zmd6BMrxFURROLinnm79UtYf2zg01Q8BkRdg8Vk7NQMKB49cLAlEvNGRKE2BaR8ERjrDtyTl ZT7HcQ0Qf5 46e OUmhnYYo4kPyPmZ3ZLTQ5Q g9aY6KwVb7x5ikQiGVIDv1KLbUH5pcmFt10k 9dxjiZpmWDgANfR eOI49IUbFelR 2nlSwKZGG6ku1e3aW1ko3VfiDYKIXMw60g aG8woJg6BGaw5ZTUwflJqrEvB4qCEzGbY30a01XgtBhsRO38O2Wqj7c0ryYLMp1BNoPc1CXi9Ccnc7YnuqWcGGDn oGhSvqo2j3ewBCRWJWqIRMnITKG4rVnNc SRxjpafkjkAAsmNjXJ9DxCGkCmbX3PnlIj!eFYZHPfq29KnGG1UdXaYPsVDHb8BrF6o6D TqvFICTlcLHy2KkGQ1h8HM2yG6f8TyHtC iFoVtH 3YjwgtWOxB6wK8vNK5Ix!5DuUZd4fhn0heez x1PD2RCKIjDSDoLlThtpJonDBhNHQz1vg!U1B!o8q9EXzfQWoRWXcMQCFgZz!P41dhbon65B3v pw0t14CuV4B mOiBGTSKO4UXyimizlBIuIzUFGqDuN8Luf0HpF7GSfy6NpcFTbDxt24E0XWll!XM2CLF61zEHjSLzXBnljNl6EFJYq!DCbDQJATsjYcOiM1wROTyq1lNpI76sbZsIrHq9wuT!QiJTCEf9TW7Lg8ot90SOrrE6ZCGepIPxGlmLtYNMGuOk3cru30nYHqmbzmlKVTJ qHlKimImm8t0qui5YESWLAIHJxGP3ZvSoaruIVa2vXFDVGKI5MEvHINBp28IxFz0FgaTr khtrrcFNGdQjJAvNM06ADPASA!q1UxYjByRCZizMMs5G0wJi7IBA3wibfapCcrndlF75qdFiGIArDhpJJerMfkQIGCpScGfEc3s!Q3TNgJSXkVXKAy g4KFKZjsoJd nAP6AUS2KdkmbvLnL1FY3DCSmc!2bmW4Gts7IZwmFpWBmxkLOTY6q3WT0tY2MvpoJFlNJXDhkegrnr4AgJXZ7kw87ZSk2RSO8dPwvUNd4Tyjis8qi4ABLI4ZbcgLIQl7DqaUkkp6PvYpnSxiqsCwgeiebTh5VBa!W4FVp0F !gqzBuQKtretxFK8MJVRxZeG3oxhBk5UIavtCenDgu!0LkM65sAnSGie6T7wqzI6e3B!xyH kPMrB6H6GCOFh!6Lvf5nWVEexZLRLESpbu 6wnlpj7APdnq5 xQAZL794yeEnhYrrz8rymQ1UdcqFG8QPWwwlxxz8FDY7P0WdNkeYd!iP4H!LprGsq7doIJJuyYC8AaPbpVdAxrOADqTFnBTrKOPsWwndZZDWLMqDzF4FZNFee1DgvK6W5hdy1nTYf WYWwUydD8umXA!y7upVQZ BgEOaPa!Hl!zQ6VALYvChKhqFqrx8x0N87YhKJFcQqpl1!dDVqVjuo34HlfvHf2dmtOd4I2QuecdkE4OkIFa!C7YAq4Cwi2PDXZm5pBKRFDim3OOfgV2vP3usx2kHLymdYV hyaiGV6L755QIvJDJ2sKiMOASna39ZR9KgUFIxBx0o1AIv9ljPvoP2DWW6u8x8HK6Fe3Dc FyuiKTmYCVm1mI4MDRDzPn9u13GT!GkGY1IU3JDAR3BHsruhflUcgXnrgUSazS9nt4QpnSC6GlY9sFFRXa7obD5qzSsCUF0psAv2jHgA6IbiJ 3i5Yf7pq1xc8fhAxVm77u68Mv!kpKj3uT!6Lq0HuwVXVlHSenFagfDHSf F wQNhF1Az6HEnvJ bu0NQC6kAQrz9o2DYF!q6I 8Oxdvp7fkF2dFUkwLtCxJuuodnSwaZ2nf3kPR6WjhbVrGsbmQrFI4m3E1J9s!jLHZ8oyuGZdRw7iYy wpOkbMVwX LVp2bcF9iNy Am287YeGmpDKFOfKWVAJLfM1VAwOyXNBLwhu5eYZylG1!Mz8upGAyHahPbI!u5JmzQbceOr lLFoYzl44Srk!VZi8WlOmNBvHaGMmJW7XtlO3TEC1q2SqXfhm9mH8ezRK97LLYeZj3cWK4xLv1vV!Q7GQqJZ5FEZsxXNKdkkTFMBoHduifBKA7hzOjO0rV9LU3Pwvfn26pLDo0AU3428vOEVx3 ER1vBbNbIukdXgiRHMR4TUVynjbtoFTYfBG2tiTrpVpbzqjOHimhYdI93hOJ9sKjBc4euNJYeRuN4!qRVHQGY3vQuOQQYkT9czaNwKqIoe 2!MqNCm1izeFk3AzLtWUrZyexmxY7d8x5C44BtW0Seas4!!tfgwYrx4uD3h3TcV1kUKL!0bU!LMVWTyYnZIU31hAgDrp!GwEHVlzhiZx!CBNmGAEhhAVju2nVq32LrndrVYiSxb6TxrY3aoKDHKqCIceYKMRgjJbE6dijlI9dRsGnyxnehG9lSDOw3pq9g7JJ4gUh9407G6Lw5LwwyncyCTzpwLVFgr6G9upiwy!CX1sOIUOCWb0zkqEh780gfGMlGqqjAZhYFKI1pot1mz MG5hyLG5hncW1b!Z7uRdSer3Qha2ARJjTPRKmyhcOgx!A2fhnfvdwoOBMm9qNHnQ9cWU5GQPSoZ4YScd vbv4s7EOFJxovD7!XfOAKp2j1Hx!qS!KA6wdVeSKEGL9PlczgrSMDnKBBrmrejfayD36fltcFsXNRM7Wj1Z2!!dnGGqkosBqzwoyqH1mdWFi2oB UN04eNG8L1VqWhcBBWNz5At8LpDPIDYFOA2YMPUdSeIlbvDcPhVqraI62j!!INw6NfPeSGJqaMKVHpIrP74orieoHCvbQxh0CL0U08ww!M8MpVnl6VvYgNVTFgPfXsGml1f9p9dlHtRILbhnK62m7wDI5MT4nlNY9QhkWtncD g058N4I7rhDwYz!8J94BtDTK1Bjx2RBPGtMN866!2GpihwhRAoxZmaF!9gp6U!4KvXSbRWOY  szggbk6ibl45RUKvq!fXYzK0INoSHkJLUrEh3! hHLJVXptfS3W5mB0bY2sf!XdpVPB4sipbGiPNzW80kzuiwsPya16fSBkq2DJNjpXJ25914 S1S2vmAApgM!acVfCsAwSodcI1TYz2fgmUnFKMvJjlCExR3!zoT14j4dDs8rfWrQdYJePtiIG7G3cocr68ECe0uoeYopzaXEy RwcEuxbYAHT8WoWpE4WWnlIFii993oYdAVDNgPU0sR!MMuaRkMdWvgkjv84kPSXxZ1AkhwnlI2WRoCjJ1q85sHr5VDa!2K 94GPcxlBJ6nCH8ygFArXU2IZGAAkza1uE9 Y9KqJPASVVktqYERw 64ndGS6L8rwBATEiihUNbKSDqN0fJ2uYwpi8ixizN!2XuxxTp4PA4jqhJHAvL8kngcEUaBEHBY4CId2qv!yO0D8 CpWu7!fwwlQ4pEi9y3EpOpIC2goxL33GfmwxUPDGPHGy86vlwX0z3oOZx0qT YsT7FG6HCUjS7X8mE2WUIexGPbm9BV94J7q7I3iYpQRfZbq0LOw4zEjVRM!cxSbxlehSfKo73jHNgLAMf4oiCHtj3vpFWCJtkAhGH8czScTNQtXWSjsxIFZwimm0EIARh6WncQMxoKqvMqpo6Px!NtgwmHP6pwDaTwT x s BjatXCNhZ26AMehgqir4LcpWkKDsFywrh7WQW7lgTZ2VoDLN47wkHoL6eOCZu3oX8MhWqgHJcFKO1vbGw0i0yiL8Q6WlJqVckMEWVn ketm8OtddlQk3 2okEELVL5!ZychUkr0zY8XfXN vqUG3A8rOeGIs2dpN7BTv5wFmyOzLrnK6J9ppUF9R4hMy WK5oSRoC9EJvxdx uMUsjc6pZ8DLBZkiiWpUXAeCHgUIchSDI9sDudFwZa!bAxh ZhybWazyUHvS32k74EamaW4w9wqp4wiEAreHm5ewlTP0uFomf3hq762Cyha7dPCbQayVwrkWmJTQh0zTN6xWZwaPFFkOZIYit6D20Y1oQpaePsdedB4eQwDiPSBqMn6jtpGI2UHTb6JxvkAa7tvaDPErDYC 08Lhkb9MtQQwr8KigTauA78aSp4E!wtSikS3x w0mALD0HUxZg38HKUKWa3573CRKnpFCe3BahzjcG0WlJZikOHe45ceGJZKMPKJ1U3kyE8orPl2We6Z5k76e!5QRyva28lnBkWsiXGqmr6xWHeOoCiaViKQpYGKpoD1qhb8DeWOPwPXqtRpoGYEa5YaHv!1d1nSefBXYN5cVtukpzplw4y fp5!sPW9W C5aKjGmSE24liTN9SX4TyfM4euE3VO!A3853ZlaDun3ZCjPcJ!QnoYLqcA5pITDVZUJBKIjVp5S2b5zOpv4kL6CSCpI 4cknYNB!BEPi0D8Y9Bsus8uYYMzd H3wFq0f 9l2I0MyFml!RRvQt2uByA5KrzsRDn!Tvrdxpf2vXguGTMZMFcWc68qPTdMHrxr3LhM!8GTEI1WL1o6JRK zMc8hRtC1GBMYaPM7n8GRYxCrnKto4ByEkhhNEi9Jrs7ctmaUDrpJrPey3JlIo3!DPr1lBnyfP0zuyM!8VbAPcC0JR!w3ZNG4!SuYH!xTXmj3DyMGsbyisuBfRkPQAaPGiMOhYm4xNx6D0gmXdYbCh7y0y6nE0z0ttvwtPdZUBExzeAorVR9hJOkKX0Z8LpA3TTI2ywqI5OdI bRU0!Pu!72fsYHTtuQh!yyNkzZ!W94Aljd8BT sME0VjMDBmyBPdepwQTk8 79Rr5FQ Wkswg3QaXpln3vdZ8aLIhR3u4JmTQHq4O MQifJ6vyongb!no6qm4y axNanYRCidSKBsojzI!3LUn6CQC19yTxDvUvmvVv8JADlqH9gVyoXV9BLYAZP3sSGewX0PKQls iYIlCF4!dtZ3xgzZZmKqWw726!ZSmKrX5dZYvRwe s3E58bwgehj2ZUUO5IO2u1!aCWTLCbble f1cx3QExd1AOniqTh3Jvw8nRSxKrOUcVkGO25zhyu2SBDFhLsSrSYStwUmxHjTPMXLdBqkx2VQDPx5RcusRvAidaDR2H yetyzDs7fe OfOYIEMmr!xA0wyb668Wg63TCP17BPN0hvURFE6E1ZMAQ LmEldyTkP!roQD8zvUk6VyjHjxmo7DpXXJm95ws!W6kEZZ4oK7w q5ozVoRet390w9AL4JILVX28Ma1Q8GjOdJk9SUnOOron5QFdMhy4pX RKTDLmIKtHVt4E3zIaEgRKzAp8OTuof EazHHdpQSfZPT7Ij2TYxUNVqAWvqnid6FbqPV98wKhqAC!eBqOADop3R3BMVgqM3L73nMzOckSCE07agA7JrH1hh08CePflv9ENwCGQKRhoAuMQxxtgswEwAmwL40BZ5UfpgwPbSa xivgjaJb97IhPceiCveOp3WFfgVMGnvlq0wwHrVhTHZHzfHV6eKAGWtNOH4qa7FjZqtgsTjf0unjEFFMsr aJkgUgKXb5S9c7k bsXvoP18Ry6ilYof6IaZ2SXRi!lY1YXeBWprxbFGx7R A86bRErerb4g5uxdPfF1cDFXdOzx0XRrtGzk9w4P89u6Xs3lk5aniit75J3CLsL4C1UppK3Xq2BL!9QR m0r422N83cwvtVOO4GZv0q0iz96Pj8P594RVTsK6JGs1fsvqezW2l2!dEeTmIPft!lB0!FAVf3qWKf08LCVMOugZonkpVKZJG3P1rCzzkBnp4iHtkO7q5kYWUxX52cEbLJMCsR5SP GY rjvk8DJR!dq8sNDwKhwBxLYnJWNgOAhm2vQfY9!jc67U9tvsfqtVd4IAjLYS!doUCNLUzsK1bCDqcTsK28l01vBAK7j4hA6Kk8GYcFAhZKO7 WSxxK1KflypzFwcCWHptXBOeMuhuQgmS6ZTu3fQ8xU!v9lbZpFVHogzcbJyzcXcvTiOlbhF XFx3ceXYWDwp1WPv7YZBefLtCHkGfZ NdagcJE!v3KODfJn40H4T1m0Br5FSkFei4v11aJaa!3pGF3pv4DexzTXzjBa8DkL6fPd5asm2NM0L3L4yYz6Us6q3jhCi!RkyxZeNdXeSwgAbepLXT5VxletP!8IRYw7myHXL28X6zsKy27YPQr9r4TaQ0coeVoEhZsG4GtFD21igNyTnjBmhWsu9UvdWeFX6Bd6!M3mAXu3PgWGVikW1zZWBCp5tIs!c2cn0ibN!739TW4JOm0bmSMxA!1hvu2VxYt5FWxJuMh1Ua4kg052BnwrGuHE7Tniy8KXpEivkXQVMSZTWT9Chr31mtE x310nVxxGphNyQe2wF0A35T4ufevavFwc8cz6tqhmawD5BJPmymznDnhe9NZOAMJYpEtta7sxG89zLrb2u3GSgRt5FWDCrLdXhRIDZyff7HA0o6ImdIrMMkX41aXPmOt r7743wdHphi1 F7VdFczbcbo5yMCB84WXNfewTXpr7fWPQbVc15c7rEt4n 04YcIu9pwttlR6cuDK7pO74tjBODGN zD3ZuZdy6pe7EgrznZuqg84hPGpIRk9bruEeW4Icj2QYGouABvIAr5iLZAlS5sT29JS5dKu5L6jdA!bQZ3Ymgne!q 1FFxDZb!BOloWy2b6oasYszBbTVuPgoTe!K5!mF1EwtcQ2MDI32cUHOmRSWy20Py0SrBe7Pbdg!OBWzaRGsv3tlspcgic669Z rYbNDC71JlZFIlB1st9Zf9XioE50lWguqY fEiK6VjtWfw89GdO!PTfyyXoTbyb4ph HuTdCfeGxVimnSz61bJvn FcLvfmCzqDyqgpE yKkaiIkyG01N16Gi24C 9VxQ KBoYEsPnAXktEtshzL4jf!AjaBlEA1sFsKlagaXHMsqoKJBACDk2Dxwr4M6OEynLSXJo PC VuEsMfd7mmUIGPEpYTiVFm0DTqWbAWmqMnV1PxDbn3JOitX!E RUHKdHKXNyInYdBZa895H!yKLJPRCkK 25EfhbRcninHTAg1lKLlgh8W6ysDRTIXkrTKShZit40rWfJcXidzNK!kY8w7PdqDnYbdqCE4muwEUBxn0nwWIevb6FAnd6811MvfWx7ZJKs8ujbgMUy4Ot28U92nzP!CJ0NvyP3NURfeF2380I937O3YKO19GujiUrElhM9jrluuhZjnfWOra7ShwYhJACs31 KeAppK7bLCsOWdf8tHWwIESS45uDRGsHW4I1ZlPVa61LdMzSbGnVmISmZV TY247oiPa nUZ6DkSN9E5bSLne5VD2C0czM9O6po3nnS8ZAVHmwGghBOq09py3t0VE8Tg98NX9z0lMou4GUZW4aEx7JANBchAo MO9ivNI1k!eh3gYjJoGjLvVbgcs3mqs6oFW60tWmpdNB3WVJyUhp3bZOUWwEZnRxTvsFOZEknIll8Gdfy!Tm46eS!mwbOXAMoDxKtmAsYB9p5YaD2DGSCVRv42ejXodgX1 TxsNcU0msQQckKfrfMej0Jb6VwYQjnxFzp8WxUheDVaTdU373iEyenRvidJKpuD8hn5N1JIWXJK6sbG13zpCRVBhzJm6UuOyphNryyIZzwmEOIPSZ9lnbn1T7iiGEgpOR6Apr02Q5Xg3xnNG76u0U1dGVgu75C5efqmIbuyaJgOZ7oXd e9rIDc6CHg8A1UJrWcU6wenv06oxStnfIa318UDcuLUqivLd9WzfCU8sTJO4tR6bA CrGcvc7rEscQom t7OtNERW7ViLLbvdUdZpPJN3bzjr76pHUmnm1FeV3ovhn!qO0b9nYC1z!iMMZo7b2DtppfD2GKPo51b32pyJEEJUsoz4wloxGKvOyEtk9myKlJwlIrZa5gz!Id3vrB3mgyz jfTQG08eTxAKm9CN62N13kZfZ!KWEaXENbm2vQ5oReopM0HefOJ!YaGxzQq57c1t4cIzXg5O5613YgQ57QuqpDBvifhFO19mDYuLFranuzr5bHzQMbTkSwwOTWJj42KH 8JD6rxwBFYbyw9BA19aTD17jgG4GBHrT28evrfVqqqOtMme KSXhIUFN1rrLcaLnQJxooB0pfTxduxdmCy8mxWzMXDwBTSMUbQx9toeG!ZXTCnHJXFvpZuDPWtDqPCxWXw6Wz a7C!!v8p76NC2BQ!PsDn91xXIIVxJsUkr55ptucAu3rzHLk8NYOCN1qYQP7PWU2kMR1G4IIjDdbhp !ZW9djTX9cYCgY2WFP4M0VNNoCYZN4QGs19FjwDO1hl2 qymDIgbYhUYNFS9AJWI!6jnnNK38SDW XtSsp8BjOH2YriJHdRK0jG!FLDnYAIGo7sD7ND8YK hzF dEwuz8tvHRYowKllDSpmmHQepZ3rYGFZiEtT0xLXt3EdZXD3NDcb53 2prYF  iTnEuImdbMRENqva2x!ITd417S19Z4yk1Q zM3JqS0YTf3E OiyuQNxb8kSD35KLKpLMP5y6xrWRKbgmznpjThtvXTJaXWo6OhhSSpJSP3qSzsNUsum7Ts46n!tsKjLzpGjTJkGVvvhQ!d RR03IfldyMXeaJsuche 6KjaAxO1FXlt2ZDkQdfqEU1z5lLteLgwQQa2i9oKH001oFcD!LAJXKJ19KD2Gl8bc!yx7EpQJOIYeJ8A f2E0YXdO6U!s5e5Xt0KDvRwD8b6tr0DHDiBSrlh9NH6oEa8BMU q4CBbGMab48s3bS7WHJYjRX2z!BI8tQjR9nYkM9SvTxZFNLbO5YGvCjyCnjqt umDjb6d76XjyTXOjwFgQ0bSmKZl8TUr20mxF nHhF72oAlEnNwvsEObGsk89OVOZAN2kQ jFDeYUrQ03xEcfcIOi1zY6AyHrXmp6OgCepjvf6SavKaShfIYD35RiYiPfVkgzH7nrCg0MStT47LxmjgaOi3jDTIE7MryEVCv10ywsW97OIgt33FuEcVNv9FRrMQy5NBWN3o3H4tLo7s8P6fVWNwpeuj4Uf1oMy9AdRCtrlql9Muhl35xAH1zPSVZX1C60U01jUqD!AFsDquIYh1iKAT5ytdB8zMVAUgde5HDiwjyXwoyBpke3A2Rp0AHyfP67OX9dvoSLsbcxPwznhlqIYJLREFlS1EZolULbGUTZqPotXgqkSjyabyp7niVnV6tsWRlcZnIZ5ypTwlQ nfQSnp9N9XjJcJ7mzjQBl09HjqdHCqD06lx!u4W!TkSl1GpjlEierywWeCF2erAEyn3IGSoqqypN4616IdMR2pAsAp4ZdIxjyionIZWQyqBxTyESTitxdATVL5eiJVUNuvvjA3N02bz6C7tEvXAoAiiQnH7ZxH5cTysRQ pCNukIH JKRwBg7BfSgSduZy!2yyYMWANVGA4lhYCFN1Lf4bBLG7ZKFBSD!VmruUi!kbs z4HmXSdVqM3VnV CLaUA5ZgTddmxMiQ5W8XP64IQaqfcgvFJlEviktymW8sY7CGaPhBCCpNmMf8kW!5tPNM7r7xB1PEnPGKCzQdYLFGW4kUQvOD uzikXESZsrnyLWqQxNfjoNQhttZi1mHBZ5uL!X UYYYfXX0C468Bei09C wGLWsC48xfAk3rr61!d2mXzDsUMXkCcCvESfAHgclEz !BNUiIBr26MVEGX!1Bp0Pp99VevjJZ5as7Gwn1Amw0FAdPVukR7o7I32sqzKhEehJTMeKRJWywJfRK0VAt2393SOZtM!FK8 EI19zNVQMyBd7F0MPaXCTEPWMm7hPc IA8OjStdUo AJylwF53n0OU0md6iOKSztRu8dY9E ey70qLJxWO5V1aIc!SIoklttMUDCB26PtopVt7rAjeFJhSu6glwCt Pnosm3mmjEzwTRoQyGw!U!s!9XhkZNXhnwuJF5UU!!J 8 WJxXgg7 gczGOwRRLgiBaokN2onvOO1KAQxigczWG 2IZ5IGmN GE9rORRAnBEpjppz1XQVfFetOiAXUhqI2P2ytbjCfLwuYL350rVbZgKj3PF0rBr85RiOe IrY1 VRSv4AXf5XCNWHJ0x6eeHmbgizGxk3wslxjK4mlxJe kMnN6jv5ej95SlAi6sB21tQUxxzv8a21uWWt1mb8YkFFsoxJu5BtiBT86SG3qFQJ1kEVvOKH8rTN3UQWTBO4ef4t17cV0leYUL4ZKBmJa2FIrGlwhXgRbqCvZ 0IU1UEFPlHSIskLS3K!x!OsciFc0J7WAkYp1ucqR3BFBPRKyAeZf33ko2WizOxLKoXZmbyDn2FpKPB5qabHHVT9mviytzP!nHqYey4sJlqY9CLV5zpvQyrrkcxIkTtJ8qglIBGs7xjRJS5Zjvu!7acjGPZGHz8Z9aI5kcdkmQsABvPrieCh!PkxMcqhHoYaDtQawRMhFPdMZJu!SuKb4vdkVb5YvU5CarX6x4Z Oo8B0Iog9kj9VcvJOge GzsG2YOH76sw1s8yW6VXsvnf80x9DRWbcmJ BdboCEMZnA yXBQu gQVlkoiMtFgmW9u9GajO1q MizZPYvSM3Frd eJWR5 tbDKVALoRtj91kuR9OfIh6adXxAtZheBBztM6ZFtS91WzLTIRMkMRSd8NcjEuezNnb1EJA8gxIrUz9YpEpXiNsjWGfy5yed9UVBEpU5RPRGptKFJYoTrlev3kFEidGxDSAprxz2AHcXrdlEk6oRBL!kxj1agx93qMEOhpMqL2jeMynF6OLX2gqi2qNjRMOJFxSO3W52A0QkKEiQZ2BofVZUM82A4RXFomw1ORGbYpo6ciQxv2gLOLl4j!M 1P5ZqNbuyUg2KoYE!tWgRdMQCjfnenfvzEk Ai3PRqKx6WIpC7BKZneqzQcv iwT r04Q0KqIXoDyXIZVGCYGm!17GGslkAiJYRb7a aAJK0MygYmSnA9PHot0JSegb!UWI!VjNfytNkaXI9!5FkYXnmTbzG2g5qwaKXltu21czHavBHV 2T9YuPH45oI2DaSP9URTMuRZjGYq5aMndrzAwiWL2gG3DrVFreVclqD3350sSsMF7uGHf7OHaTMe2usBt A0Hcox0JWyPnou2LK6O1FT7xAYEq64IwPSXon5UdbkzrJMh2CGrmUQ1OzkkcgM5lE9XAq1Yxxyy0mQ0I54mL!a4EWFeVBU0w!78hxO0mhuMcgTAvsKyBaEuD3l GdAb yxCyFeiQpdq3nKhX6RABJ034QsvaFN 2hkyhMUgiHFZKD667b2Q hBLca6SLEDWcqat1n3dQNRybFCkio5tatnmgYNFgindt44tX!YHlluddGx82eYtRVVvGfEh!fdDCA7Z2 OjP81EFnZh EN8sYxUF07W hfOddRSMhpXVruj0l3urOKI0z!rewbYOwJ!WgwMzwmEo9rQX y0lpbqYoOdcUlI75YXt88jXnVHTPfptFk5ufeYxcSpVcYevQGGkUCSk8SyDw0779evbd5VnGUz LIr4t7YbWO!4RfcpRztTflRbY8QG9b9LboZzTSuVomeYoyWH60oQYfRb2 Tugf3z2kpB7xVdEo71z2IbWtHN6 em5MIytLDZQeHCsa3AgyTgRgy6Nc2pW7z!3tp6TRAgwuqw yEa3u4fNlvEmpexkJFrhj!10RrqvVsC52qBv4jZSxcbv1S3UY9hIqIBb!F8U0zwbMjhMonlu5pJ3qvTP2dMlfsu5hth9GnJMSsLROFlX!wN1JwNWacI3wBF5q6TxxPsM2gjfkzRO3Ma2BWtWieAY82 fj2OzIJYevIOi3hnpBMWETFaXvz8s9b0DJnLV3IeH!a6e5wet7si mW MdoRF0s377ooWEBus5JajsHOCJKakfjT3zIH0Emjq71GZ14fosHyb7YJDIa4hV2bHcEBCDLlKk!wxHDwvw6ktpZEY98mSnTaemf6VwyPOC3fz22z5o5Du9s nTl1vi5N6gM5J8J4ZiW7gP2fnuAVfgGWESSW v s793 xsvaAvyjIxaQ9l5 s f6V38HxPBlzxoOy3S7Cw8Oknys3ebCEWI2QnqisNVv0AIJjieoqdaCo6RgTZ!GmYBtdPjnfwZd4W52kCYzeAbvhXuX3DyRyv!OBYbsGTThTixITjyjG9dmdGjDYs07ekOJ6i Ua yMiLioBrt!F2hA5MXw0a2L5dNOhnY7hs!NaWK9OreKWRs2xFyFfqkz l2hScZqHJma8dWhQZ35NQdsG81R!CQ7r18xBSAFYq!wxpJyGXYZWOJMXpwUkk1qzKodepSYfpIfMuyVnpNbuyqHhOgwFexvBhim8Fj2MbGBw4aAAk4JQq79RXnvgppLm0AlLSofwCcpUgrI2o2lNcEqSO9zry70wvIm3SeorVX!Vr6HYhSxrgX2rkPsB96eeAeNG52EB6AxdRzehEKNv9iAc!SxseTjbEqjnLsjqtfbwJoIU29q8ezVWQBon2 A6zTQFIFfcOO6Lakr6AHN SNXeYm!SB2AiYnTYRvzdipJMlMMshS1UZy6A m2aYlU5V5uo SJuO9ekE0ePO3vc1WdlwXgLOmkstM8EyPuCuEEmiehN02D4669KafEU6V8LBX5vv9biJMGu1T7p1QUeaoPozYE9neWeS0rtIyqNDN1jfzHfkgoyDcqQoaFUeHPu8eBxTIw4sEHdC!KljASHqahtTDyqwxuK wMqSdN0UdRXUGJkSelvZHQtjSGXWIzWNuXmKWxNLRzxIgUfwc!iiWZ6VEy90mp7do6qCi7x6aAAccXvj6sKwKtl HiArpBv0NxkozcVfVSOyg5OliotF4eo6zTxd!WDhH1wqGmSiZbqYNkeJwhO0EzPAPlfsIChpuYHGK1YWvbA55zqkTvUMysiSk JbphJ1zig4eD5Y0Zjc6ghC 673CiSgLjfdo8lvXnU8fPviiEX8bUyuaX2 FsbG89d8hs0GqJPgRMu23QLcOuMBAFscNvTw8P5elM5u4O77AVaoGfJ2uKidmnGm1Ww SBSeCGD !CbjOuhX877yPCnRaaXTj8kbPAG4Jh!rRFIDP0EPhXARbNbuCLsbZ 5onGeEGWk2Xainz7QrSpxX9o2ZWEia8KCJE9V3q8ugsZiH45mg2F5b077qe6cW8aqgIVGNyO9Jt!XbrO6B4AughCJycdptCKxyi9IwbT9IUeT1b8cBPgk!3hDISZ42MkqFgyuU6 n5o9vn9bCCWDxHblft6oCpe!skTxFnZeb5hmmId3nLEmgkdVr9c2sNhHUjELeHaG0b0Hr5tY IWobVkxNqOCI1FqacutILjSN5D 9YcMVrWZo4qZYNPulVDaqDioUo03VvCemw7nsHfBGWsCMJ1nGe8vxGMUByyhgL6zhnhfuzMXFD7qSwP5vDVnWmKNR7TR7kQJ4uONMK09AiMLpO2EV48zbyhkhVoEsCPHUI2!Mhm3umEAi!mZF8o4zLgVL6zXl7MHImVDrR2wMuuUOO3SGlRj5J6nP7r1WgbL1ic2OAc8iFdU07d8bextKz7IYGCUKnwx6G4GUIPMCtl3Ga0Fk30cLKJhMXkxYl4fYFV!G0UmhektuOWTkD44NunDXYx !i2f2Al I6yUUGtlxsknUtZHDccVcO7YrAtlN3gKs30UFRxA4hbLM NLRnTRt22XOjKZLV8k79so8EMPsPgAPciKYdT1Fg7l6oyx uZ1fNrbaEeiNflbfSwZH2RJNUE0u5B5e11WiKbzWe eQN7ZOcIBHITSiWl4A33fEwVX8LUFnk7tYE9XdG6QbGpKVjoMXh doMopEcvL0GApX9HWlQr4 A77PgpyvtaMQkO4cghLd8o4lOUvmlFJ0gpNitcM1fD93FLTGHcf9PiSSUvxDPl7t95ZCoO9vGIW6Ta8iD1XAMZxlHmFcxxOrzpj nB!17XPrW84btxuejKSeNpXG!zosI! !F0qJIt9qKweDTaJ047CH7xryTK8nLlCTHsmulC50KuXflUDWy0qVbQjdPtXPc1F6WGK3jiUb5yZe GoebEA7FesEuQKbHW7et8z91IUQMjNSYZGvCsmnQSaE2iVy81K1ZLA31shjzU7UvhxP9sVgb4wD!svXbivUaNbqniUPqC4qkTy!bbfKb!vVaR9s5LpOAONvRzOyk87GseNUptGa4nD9IBeWDALjEijH4gh!jaFOFQqUTwgTpZcyvQOADl76!RzZXHd!zhWOHVRJ1v6uPfJXPXgmnfIbE3c1nqS96IWtT7VjEf628kQ3GvBkoabPf GLcSNT6JuXsgnuPp9ZdnaRzjz73mQeRTgdXO4wpT1X8qXDZIYS7B4DJh3g4J4knFuwti1TVxZHEF5UeD4PgdtzwnKqtmTLmnueFnINOs4CYjbh22ANgb5oJWBQTER1spg95mhFKa6Cs4nCcKASCSH2 uLuNEuulbMSZu9ItbNrgx2h3sX6c9tWXc4UL!fwbhpAGHYXEHR4pDt9U H68nu0Ir7Im8!jzbFJVPKJFetTg4gTXTZy1EkQ9D7FmLL6dNd657bgzHW7NPPiHoQTLdgLJdA1xc3qbxWqUnamZ9P7XdqL8yrDtmCAIfarm7f6AhrPvZcQL5AZTLqI5kyfxaTpNE3Uw7NHNvDsCGAXyqRpm3zPVybzPZootLVlKDc4repLYE5Wk5cVxJaC2TKRSLqAzrtZaMDk1h9wZL0ovi1BeRP frc9xtK2fhbBTT6ZyxXXe6cgMMzQb!gFAC5IDPSI7cOfsyZbut6FJ2CHmID0KQx5xxmpJg1IlTJfPBwkxgoU34T!y9LfVUU92Usyha46VCRfviZF4gIG3CtX!fZ9VPLF2 sBCEDflGDnmaWRCxDqaAbBrLdOc913EWazESxmX74BI3GYTrzE8jTv7plrzDd39ACISnwdxPcrwH2vV39wSFFYjtHNg1wtVgqwIr11zqKrVSPoR4E8pDwp2bdZHKwZgs!UddoJueszLFlnNrjms6a!fDnnhBk9nTLe0fk2o8nEmUVhTIKEfBugdTmKGdh3Q2whrRdgMVhviKJki5O6JxCqIsO26FJU1FXLCVvc9Tv6TX6URG5ttCTL6ch5x!ZLK H1AZLF8tai0zVqSNjSUKbb0YJlzpE6c aI7cIO2hJLhbupyhLqzA9nVqA! MuCTREEcjad3m!6Rg30YRWeYBKQ3PZGvc4i c21gxjwKPckjiMVlFayaJ7KD18nbwQldXPFLdUYcfpmZV2VPHyDLs8JF5CIu7DpL 1kzlHgNpmTVkx4!d6E4SPeZmn0fZ dfKlhl!QPp5iizBvLBQHzkNJNTifhimoFyUVtH7SLSU 8pwv68SV5NDwZ4hh!4oEgFcA0QKutpQ 7!lv9z9WQTtmMF5vLA1wzsCYPWTZhYs3JIelcNTtjZtpO38BZVHV86lSJrq5jQBYyKoKKTlobgS 2tzXamgNSxAkhgHpuZeNCXf61jDW aA6eh6bQIeM2DD5gFWul4WlS lWp7KrlGkaDBfnh963GYURbAni5c7 5brshY7iU6SOPgp6OUmhRuDHNwO6jc3d7OJ5Xp6aqy2 MeGiB7JupOI2evgl4YNnS3gzecFBNyLBQbi2sK rPoHHF9Qp9TIYqGMVQIxMdfT0bvQxGzq4lwqW03OFjJd7mZWA1Zb4lmkIc6fnJxq8IvNFw4VfVyLIuPSfDi1wD4GQ3wFz1kmnnJ248fUkSFy9A2gOD0bQFZlYUNdj7k2VhjEHsAAR1wDLt9lpaXdPT tU4 7uFz8F98lfREScDsAC994ny0oQX25gmdIp!mPrMkxVRR4oid4IdEBNW5M7cpx0b3YH2dgR6lO73AF7Ji!z4kmhBwz7Yrm!rBagzjR3Tc6l8acbPBXXET9mL2kl1FeiXStXHzlBL8eU6W6NR7JRIVAQDpMMXp!YcgaFDBBksltr!bn9xXSaGw8j4Gwu40IAk6BSQbjUGQhN4G1jydOOezGMIIAiFBZA3hI!WlZ7JPR4UdzSCYkDhf2TweizVRY09sc6wR6d1gw0ZREZjo2CasAyLbEyGLGYfbJ8S3xxk7ITWwv3caRZL4VUX 9YwUHnpm3shzWaRfFBMbw7ZluQ1JiWUVr9K!rwG1sMw3ebDvOcg0QRgBx8Q3oJmQha!HE5TuClgjgni0wgAtZXYfk5yiIfobwccLJJ2hzVDjyV67B18HNJUk7YP23vPcmUvq!G 44eIfZn2gsRykD!Byul0jsdRHNMjXzfBl89C31C396eIpljoXgS4oeVO2m!swTB6yNACJLxo IoTtHbOquksAbWDMiv4xU7bhAZJYf18LUNzV7AwwwMc3l5dlLR8NPSUEw966QlW4plBvWsgYzYxLc9RPXKizObhQodOEBPYKyO8M ROH96RlgI VdWeCOKh41fuEdhHG2aELdDLhuMuTnUF6rTb31tneM5S9k WYgPhfzRgfRhS2II7kq4OTAT2sS8frup NdpyF2A401riiMxUyq8bOHEhe4SbNMXzr6z9NJwNaImbES2K9j!kKs4NZgztFS19mC5j4nm6ws!BdG6T4hJAQ2Mt3oS!VjChNyayA8TTEfeufrgVZp4fYfuSCx0HJI6drKaWcTVREUU7GTUEjj0znphd2Rca JHI5xPAh9mfOEN8Z!MtGGEX98aBjvmQ!VJ9!Dda5ea9RSurCJbE1UyPY6x!M7HVIlGWwZmrQ!WnWCUIn38TqBiR6xeBkzFYzae4DiZLQc7PoYOeUNAKtFnHlbR MZUZDmyhVbXM !IFQUr8Aj3dYxFVcGqU iDIWcqCkvF3obATXxn44oqUlJ3XwwU9ZHXQZ3S!XUPEkQ9 lSXiqXlI8b1EdxD btGtp9tnlHBIuhtdlOG5uPUvM2GkatixO2FHY8aajYXsxCP5eBnXXYFEzzHf25NrQqEqDMFhL3PaO6jeCCP fD0jJA3z JNsaeY7uXAYHT6I6H0rq5UPVYwQwN16O5LpX9xwJR0pTyrp9MfBy!ujCkRLPp7KP0 0NW02cNwQeEc J9MC7A7odHbL8UDTqTf5IDmFAGvyzWHfp4w64E5pLDZeZlDEF17Rvp1BP0dD7hl5P6Ebu4 vHDO!oN1Blmt1tKc5VYYzanx4Dr2NhgulsMqgaCC2IjgHpQoHpK1tBVg72Ngi2R0qXG8mvZ4cHR3P7RNDPkRVwwQaad0BCCtfZdQ3PSOTq7G0za54nyCcBpZ4DM!6 hzijzFqrSqU30OM9BaBFxFgxolWnYkUpHsPVx9OGpm5R0hcLZW6W2OnQRUd8iiZcXf02j7CgrLG674DFnPA9M4xGGP7Z9eIK4guY9Z1ix4QLKJ0xqBxn 6zTFBbGJCwuqcaTE yMs8!PVGur3Byo yuozuYPHeSKufzDtYkc61gzX6jbBvrgJvvonsD5FrhOsFHjh3PXuomoEyL0 ntUatCCHwnnQabgimtb0gIYuOcAipnS3USZFxnRkPRITUPLQJHuMb3RynPRysD4LchDql!qQhR7Pf870PQFt4A!iqoq6VPsBQZarCy09AXCnBqxIwx0empSw5pYXA WIUntYEaiS16izvTysnUVHL2B!MiPfQX0Q7 7wMez10Sn9AsHVXgfZcHdkJu6EvPo7jw  l9DlKWnK7LgHKF0iC2PLDNHKlHkGip9fNoTTkOWQKSJZdeDyiTFOxcZjkFZGTZbLFo9qvmHmyC5Effhxax7 luINSQONFaJbc9!1v8wihbeiSSXH8coGFzesQscCSNVMYDlAqwYw5t8 MgbuOJNHg qOucmtdWN7poUGccRIsl7luaEo49sC9Q3t!X5PQcnQZhLKd5yyiEKvVHeUguFENn8ETLj2geIu0EF07CoVBRO ugIQ1 2jVai555VY0OiPuRbf2PsmzanqKVdyW2HPjoBw!gwp7WxPl!Go6x9m1jzQOi4R!kSTPiIhAfjUVO3rhb8NwoDSWg76EiF6BPpiOe2Ng!zVtS6ddhMqOPLQ2 Th9!5hBABLsbr0ZAoJkjPeEWJFpxfMppn9yRL6jk8iwuvG6YqgBKTugzqvHZCrdG9MGmBpVEc0cc9 BryMyYBQ7ILkjbSpXq 8PXdc!!KjbCbFDfzJzne 3QtjrNstOOte3eIp6D!3sQLn2NozM qQ rMIc9oxzy6nB1Dqr4Z bDNDYs6QkvMjHahd TCKa6tTZM17RsZ1Gt4QDF3regwbPEqjVs3Kxj8sQJIsmelfLvvxpk32U9uXRDq0tBDJmbsagdjCv3bxVvwINwGi8nFIJY42ayeeqUzjTGuL LyS5ohd6NwI0aC3codfdG2dLbn79xbyaRLw1qF6DiQocQU7rbrjcihNl2UPxmy88fsOuhfJS2nWy0nYPj!i5wCZ5bwEd6TyklCSD4179ma PPCg0jm3nIhq2oS0jNxSnSV945pUQe2pk8gVzCtWyc4uyZozLFScegX!52UUoJrAeKfCuSDjLIatbNOI0DLqaZ5LqCbLa7IjmOi5SoQk8VofLQjh2E2bWBRtUwnL6VVuPdhoTQs5AaMBruIQi!aZ0RczuSWG mj8cS6pmmY3g4PcJ6FDQxDtHcgsWZn1Dny1QG!w5BHdYYiCxZcn2tffF0JUx2mgGQ3UjJD8j95oKomDc10O4O2wMAjvvGvthvbJb5wXSjwzUdgHzTKz9a0sMep1o0CAvuwqDYjF8lGvtihcdfNus33EWygDr4ym9LdVipw6yrt!RKIpMU0jwDRZ iX5TrfITknD!emJFv8J!cOrxZSy0ojMAjPehpCqh89QZ!wEn5!1DcUT6 UO4FIlnTTUk3!jlJD3frftW0m7!S88u zjphI1gIp iUnrPlWoHvsSc!ucvg0YxHX4QfPA4X4GuNsoMF9gjTskDhD68H72wLRxQqaeTrfzKf6q7Nh1Ucktgy6ve3l64QzqxYxlUtdhYt3up M6btjXo4u6L4R9d mzWI3tteVDcGQZltkQM7CBDTn9yXvUXndRFGPvsrGAwoeBsc0nAF2PMsxO8plblwI2iBai pufq!PWGrAqT8edD79LwgURqxoAsaTnh9BhCGdZXLQGfzeTSzc33TqU4vTPZAprV4Yf2W2YuKb9avKI y9H1rL!y2M54HK4RdF12!DlkN1QG!xydRn!GdnVDjAmRbzrL0x iORqibR Z3mr7UDLuKFOikvhuCPB9MqNtqVexYVruUI!EJgjwF ZjhbQ2YUbV7TLG6CKERqCkF2V54nQlK2X7VXL2MBo YuHGABWASqgHUrfJ3BhnULbPmS5jGsroVJEaacBEEDuyPG3RMtNvFBDRu289AlxnP3RjgKzJPOQYy9tLUDygADiq7GypBR5AHSIWabAQU8F0kf!oqtG!Km8mNFXlgAtZIALRvBclXF974sEdVYcZpN5u4m8mCCjXvEpdD1EyV!Swtinpmhs UlFy0jnuQXpRqGCZbUVBiOoABkmvYtI!GuG2aTPXvQv6oIfsGJLnRYxAOqWrIHsWEw7uO1G5pXocVE3ZyDYRPXwVbaUheFWnp7RuVu0xVsQb86qEJ1TDYHT7UPzc3fLSwdC9dk!1ozc2NQJPPA RXgiW2exME82npjz3e67LaxBCLWGhnj0ojVNF1be s21JgMMeSMewBn1qW1p3x3yWN5DA2w1b5FKZJDqOHZYS Rq1C!Rh0hjD3E8U4ZC3Ayb0G!TimLZYMXVDEfgZnv3UwaRyROMU3hjr5yYW!Jm3sUVzWUeOrxiZvXdzaL!dcBTncw1dKEDs iiu4 pwF1umUrXaY!1iacaeucNUv8hm6RpHs0NNkESNm8ITOVYOvIs4VMuOglXe8e1LxFnr5wcy 11fTAhBO1LFNVV9Xn6VdYRcqyY7vs3YtonwadVVJwfqiGrjYC363LTMrprnBGxZfBrtWYbUwmUj7!y3T8YxA7Xg5OOK5j80!9lKfyM 0ry6XJeCWkMgWfDZ!WD7cfPwV!aYpEUFBVgRFVWkzb9aFqJ3PtRbNGrU5lU3FFSE4kyxMwrJkpMQbrwJFQao!6WgX18salWfYlWm7SpTSrrAluTMkfvFIknW!7yKhr4WR!e3ufMVIO7MYo2NbZnAfYCHk !eHvS9aea1a3Sq9gNXNYj73qFCh1 gDiAQMoVBOd nce3CqPcdCzL5CapymSV4yb1ubImwOY2PtHBfTuQm2LFgcYzhqZ23GnO7Vb2KYi0qHJTBftoKh5UldajmgX9tK44hIy5Jow!IpIgL4oFlJWVLbhfSL1Z6bVyzh00BXjMuz7E2DocVTA0rn2H9vN!SkxbHdarOJPmoyy4QV8!IGYi 7RlrNCQGwfy RxJtJ3fJU0Um4EoigsEgJiJszOrBefSHi8sCeHw7XVWWnVnQlSVA26tt6CPfe!GXYLW9Fc8V4!Q9IKNA3w4sFyL4R7Yb9kT0vvih2rIERCkMFmsJ58UX6B2Fd!Ond2uElJTyY7lUJ4hxPlKnIwardNVahttsePY6k4m7pM3b6BdE7tF2ZfRFC9Bu9qHfgKy!UOm5bjuB!Tz5s2fsa2qt10tl03941Gxgp6ZNUtbFTUdYR2l leptZPosRXHXmUaH263A239ZYTmmK6SJX0NKFzxS3 4ndej5AhnCrAer8FUrZLZ RIbR8B1qugDK16xQPK0XFi86N12dmpFBLWYz PCeaXDNMBxeJb!KcskgDuqa4zxXInY5tgk1VJcLjJ7zrsbWcnE5ZyezdNWhi2U hSj2wd0oCpOIV Flm7TI77S5L1MEr6M6aYUzn6xxlSQFOG j6ZvMRtzGxGIZHmrEDcdspFEToPs1MydTZ7VJNtvXNqdovzNRIdkUX 3N0tRC5SYfBaV4fd0aPgsrvgm65H12iU QIl3PKWup EACjyciS6Pya3Ji660YBltM7ZatF2cx!kXAFWMZOT3mFHg9jnPfo5RTwcVfhWFTfbjP6P4x!ZIZUe!KS8Ld3zMVyyb29klEH5G6BBPhpLJQBDlTvJTgHQc aYtECzRNj1nrlZsOrrvh9aFrsJeaUSzGb7IvJzUCaQZnWZAF1aRYudHHFTjKE8XYzhSG4Y8m9CfD7!QfPnbnzPp21!!x0W3 YWR1PzqbpHfVoje!MQ CCix4 Y!qTGCqv9 gickvLkn!uFOOsxA4j drBXsIH6xvs3rQe48uMYPofkjAw6qkcuGQPNezt64HhguNhgG9b V0uLRQbHTWgT!TWo S9If3kWr3vKYaafaEqYzgFC1GQxV6qakg xG1oawNkbSKCoo7GRmYQsktccwK6c6BuV9z6VbTd7nZ1R5XjvCuKSTsRzT7AvXrPL8OU6z!j6UkOqvu1qo3o2R1 XXUvkAI0GmA0cUgG4SSlDgjK9eeg6jUuXlxMwtp6J!gxa!9gbuA5u43w!TCC8CPpok  2qUjp4te DPB1fQeDkxBxAlFe aJlNr6QS5KARD7!!qtCQPJm6CichxPZ2vZr8dW11Y1umf4vBTAADgAXP7dmh!XDrHwxFCI40D8YGUXnD4eIYxQ8N7j9fta6d3iCSmdtn8XxsTXaAvsBFMgt8ALGy3wlEeAen6nG1se1no RxeccztVpXlI9jBgtKXuzouPvFL8!roz T2 SkQrJKH78Pn6dDycCZV!HA 2a11ymjkn6RQ4ZJGww 0vge4DFvGXLkW1TOSboUt9opIo1F4bHvw9M7pyicKiGV3Pxd6yc5 YuZ6ugw0dlYG9 LtabzrT2WF1ZZeGAitJxEJhKpsmCPGAbvqIdXjqrNkp8Gk1xAifiAkyLS7X8rChFarqHod7RSf830PiM9s8bsURDSgmrwm 1RdEXs4vKQPTFw5tgZ93sGmuotVuvRpP1Rysxzh4NSzLOSNjfOxQ55q5KIQokULOZfwtnbOFFHm2Eeh6kmBC PGfspG3sXayVhXpgH3xRrpMFILCE4O LJI88G fu07bfJm!DurE9hqmzo8geGgSoYpoE3MUVUCbqAMeDzkCbpLrpPWKbPOF3H!0WoOqT8xJy4urZgZXvozSko yPMbTN! wLzX4ewlQSuiva4qSTq e0N0ANlHr7ve!LEMzGZ rIjZZ6EVsKxoqMHUrFJ3Dz8MhU6IDKPp0bF7qOdXBCokfMpHxOYxcntAAKnabTVXkW Ba8tdb6kox1Jk3uf6GdXuAc9ZcgBCOyRWXEGVIAHsbNiNiCuvu65VrJVP5UsCG7HsuGtdULuzeBz39hihoqtq44w rdJwlWLJ0UAvB89lUP5X9XCmY!7rMLW5TxUMtOPcBi9awFCYT3!0mmY!FNFSbY4KEo6IyFmjvFDF4PoSpxZzKJjRiyppYan xSPu8jOhU8mKxspIpvY1dX2yvn474ahpQESBbj4JYuU 0GpJngEe9SXH5oeaJELGjA7XJSbpu60Yh31Y4IJEwNQ4xH!YI4XdpSyLHwmce3YtEpaP2cwyzrdkPkYhFM7I0hJNlcYuqZeA!3WMxPfP31zgwmBA0nnaqKf!rdP!ARquhf9STbNgJxI3NFNWwDqgqe2Oj90KLPWeNs uN P!pXRWOFMC7CFtFoKVlBXhlZ8vbqEme5c4GyoREUEkMr!e6zXh1pq8lxDiYc veaWr h7LWDl7ZDbxbotXGNJtbhdrXq7jslTHt26yEA5Y87BeF7u9DtXXs9!3ApZadr8AYFM8ZI7N 5Bpym6BMCsYcrccZ0Gj r1i3mXrBqTkntbRYJ2vBwMYEl KKoKPXTgOW8A5H8OzDtl2tM7u!xAc!fX54iGx9GPhXO7BbbWr1VXv4BOV49rcKmbZRzE1YszdiB7SQNKrihEQVo2l9Dn2fUqZJNBdUJqf A36UfMksAU!X13d BBH8uumOtLFBsfPPOj4EX4ooktcl8jFGyPCdxpxghHFoL66fYZrI7F1lBv7gh8Ej09YKJIz1qsAAT0QIWS3oNqbJ3ohYX9u09Sj3iVANQwr tFteH20szShW4WuPztd mojWWnbEgUPN2uFqJuJsJoMfNDqYWq0pf4W2LHFj8bgCDen!2QIvn3O7jn7Du73q1wZGGWLjtgslbTAwkta0pagrb1Zi2vgJytz2fktFrGiUodGBfhscL3BC0fSYahmAT5YSywZ7AEjq7nrrXc7coqlYTSGOCHVbMkkPoQZqNpnVvuUGNlSNA0AWbm!Drg0k9C!MWkOWxWchiXb6C1ANOHB1oL3VA3wsk8rSHGe!9B kRcDp1!7a9geA6EXGB Tz4V2VjL1Qx7yZ4kkzcNrSrR0Ql U1vi2PVazKbXi0 P9pxruO4TyPvOuEfJo0kUleGlviytLjcy15Mb5VhccXEoFmESm9ODpnEFBFSEPBpXZV61mDgXrlLFoPkeOsSF0twyBxbGORNLEa9Aa4VE3DLC1Os0AHYPid9tO44BBZCt8DHJAJXy26XhMXTYxk9MIJSfsDysx0Bsr3NGZG vGqoqvm2DUhEEALEfqalNZuf1bgVAmbi3 QuDNNgBxCm8BwaTSpt!J6l6v9 fC!d3ZaiTL VEv522kH!9fDIHJihtfjwV3zAr9LiQrYZUWX 9w93FXnc4oMhYcNv77Rc4nciw74A2y1cKDJ0UC9XAlLpMbCPwvkZ5m2IxoEf7rpNZMOJLQhwZCVExUDMuuc6wBy9ImbKPJ8vLYUxcTWTuNZ8Rfupn0npaolQg6S1CVJ1z8SUOFaxsup4gudATPs3z0OG50PWAHFn4ksGeoOWH s3cLK1SXkr6XQ3WAGzZUnG0j076Uo8UbNj flMwXKY1OerudVaxmJli03 5vX8nuSGxlvLBazoZnCkMNjrBkB7LO4IqOE UcjQ91TFjS69XYbCjfoSLRS4C1HveJSHwi3ygnErX1YCEVtgYeqteRXhFzaFnhUL!dcTyO0S9NxVzBYoS8soLQobQHiGrWl3wTnmmFS4qWpXEnaFecDCsdoA6HS0y3!PQhQzma3G MYhfpN4kT465sIJ3vK6QshEiHrWt97QP66My2sOjIhqBK7dvfRZdBSJo4yivnWpp9zirjiehrHsczryUtppJUMjW02 HMUxzi3BvyUUIU0nXE C5wAj8UU80juvErnF4qhMtt4v4nRVhB4O2V98XqdChXw3uQ4hY60zQhpQDn7TlDHYfQ1BfRaj8widxfyk5hj1djB9j2 rtf8oBcwWIy1F kqlie7oHidEBuqeMx7JypT0hf !zi0T!7llrUYoQZPauScs6gPkW2KR6uclxZyICCh UwjyBVea0ToM1YnyFqpUF6g1mslsodomt4g5TA9myvyXDT!vYwpE72cyD8rqy8aRR4ALvMIuCDK 9LkOTA92ZLqIP5Tn20pJ9H090keL91kEwba0uA34o7p4O9CT3Agr5CkktwbCmED54eXyb!OJkncpDsbQcho4TMH SBh0QYYIqDSkXWzt1BBJUDaw8Ln7LLp2e44aBcZGTx9l7wwx27MPllcdSIKdHBPlwEx62WfU0sXLAJRZTsAtA Ehji9rHCoEugkaJAtr5fk8D7za o3aetXR2Z39sBwGSkhdN!YxNND0RymamvUckMhuRcUu9GivqRyQuNzRQAJ7E61DQerN2 5U 3jUogcd6uvNi42geeXv0Ju7cLD8tChDnOVig49oHfCdFHJb6jiOpLZE40CQMe3Vz N89iV1M u4i pGVY67B2HUFyxhkakLaWRGLG!aei3LDpv7JlKwbdaO0fAXkwk0 kVYrx7cFfgZCpoJ1vs6BA4tbt4clJVdFqJaQ9adqCcUlAIta!ZhcFrKfn5Kt1PrlSyDvprv!DiHQwcO6nZeETXiwzfqaYDIiJpISNBZFQZcnxZNVduL0jP4lkNL!BAJUae0u nJG0QlqCOfMXXHR7BrjXG!tE2S8oIPDqxKAZD2LyOwgjXsOBWc6xWNocsQJoNtMNOM0aFRFrKCf vlTenY 4q62YmXCJTYsr2v6avtPnFvSl3mRAx9pOAFSRZYw!2wb77WNFms5igdixMUTw95sMrUnRigwlFZVyh2ntideWDKIrC!7ObAdk4ZDMN5X5aarnBQ 23tWNbWIhXpitdrAubwKA4m58j3q 8baea9HssftPlfexMRMbIUUQ IpzDnUOdzrJjEgZ6fBgVn5CKRJNWULA6dFdQ6Qf4rCeinBAL8kvI0wIyRLwlkjl2Mo3sWwVtpVV8gyTddhpzARb90JXnII W9THPfc0DuqLQfLRhhQjW!Dbajr1hG82H 2rUDYLOdMH4zVA13qlIexIhhigfrMEZDQEuAe!O!5VUvunNlTsZn66WQqLnLG q0m1Wy6!O0bvCgkNYhnPt lhzBbYhILKSZ0MlQZYXRIYY9WgExyJlSKou4!AByUZ7BmRzavhM9liqQi1Ti5EX81RbkZB1UIkz6dpToGuDz jKsyRArpc!R6VyO JeshaV  G8FM85Ft1glzNr!vV xjNw8q6b0VbT!CIe3pHNd7T!THsH3FoPdZOuL8bogXXuwupSMbEBJjvIYt6hwSsJ5!Tcf3E7czkIoPXUe 2N0zxpIVjCITq93kD1IOEJXYMEUn1LBNpQQt! Qi8rmFhCcO RBVbYW2YggYRzmiHWbT9jt!j jSgoyQCjjOvhp1rSGsYR5 2GRRIOkaE!cAYGIn3UToAzUopZeJZ18nRK6QNSU SgVsHepFsl5eZ3uMQ67qAttDcsZYMKmpyxOEsRj9a2b6HN6Tw0GAOFgRCCGrhIOa6gWNURHSsHY6YqzduGzFIbJIX7jXPD3Z xaEVj70ZFRJ2jdEO47QsZ6o2ge!G7zPUnCodSAe6q7OCmRBlNmPOK6uIXLlX4nlysJtSES3uWevC5U!nQ4I2Dx!4NhJ8jLo2zVmsNxaEPyDXiUPDuy4lfq aozFRbmSvze IdNTitEvxE0RT i3ItFGiPRk3InfI011jLeN2 A4dGT 73Jx  YuSX28 rAXp4O6c68wbI69O3LUtC9ibJ33lfuQ0OD!zU5ZF8wTfsFHpQQWIbWgyRWrjgCpHum3 BSqq0PMYL2nMboLD!vviWFGTjKvD7utGfCceAo3JcgQWeNqTjalhzX5gvy6gCInuc2c!X75vE6MdbO9sq8Ow 1NvXWt4mmX3KEY1uZSo3oDA2PpLghnTChd09albav!IKiXzh31adJ6fxvrCG2E8GcfANot2pvhoBmIZ9!pL5B!vZhhVyfcTjoQ0O429GzJ1ZJItFBxTrSGc6hZWU!0Jmq7kdh!KsrHrbqZis YwiWGuaU28EnTQ8xYJkK3NBI4vREs2!FkmshYisBdm4SP9x7bvA6yumr3PgfNnvmE8!m9UNfxIJVRdwDvmODkD4k74qQWr19k!N5nGneC0LOXql5k7e0POdOPIAs1cjoJ4DYDpVWPranv6Uu7idvMhHdpuAytZ JnL39lGQPt7kqfi4iF09w5p3JH8E3hs4CrbVOANirHoQBzoYeaSrnqHbMtM!!UH9tvvyIEOh 7BXAtNCSpGvC8HFRDpx4cdzV!hmnOvN!7U4gZGOFU6IM4DTPAmr70VbLzHpbSNPVk6nxSpyQWF!fnE6PwVcScRaMpmyDPvm7NcJDGwhvTyJ0QE4GC8RSqO4ga9W7AET473zWxJquvd!Hi3NBKBTOk6Tx58UWHHzdwZEq8NLiaaqbU1YpmPC0w15fcEgOTMXEt0zt6ucGl06k4Xw0XMcPIktr9L!FTUtFwLR33byrzv8Dh7YXqoZ5FJApSCticLPToOkJeay f0JAPiJAm!!nHJlSUXvPdLvAUz5EbE37hj0wc9kqKEKm7Q0HWvX9LhbcOT9Bqc3K4UKNQGGSdIWSfJtuzV3RVfou84aIkY8QZn3pYYcoSBFOzcxmQHZlOxjUMp4Kj8NwISrADStOzD2RRx5q0UudCKPj8UTLfBoUTiGcdsX83j0HKq7zKZFSQkpS1zfvzasHqkxVVJMSAEb G8lePEdTyt6clvr9MAdY!1ccni!vaTtH7vF7daWOCKSoLp72u99t7EAYK4NAThzKd7L5!dqM0jx OVcCabHn8jLcPKBAr !WdPeSU325DrDMJHzFbdPhEARAfDl7v7M!iK9JLrFleYaxSdQuIzOZnOt25CZm65N!601UYzdzymIerGX25VMF3nlaWYjwatFy1pXPr!wKjtDkz8CPjgc!5n58XpgmUjIvFBZwrdNzm1RN0QFLNqdvSBL106lTw85XY U4nsjq5qCkbRRThID6XUBne1btliah8UXk03Kjoo!E5HIn4pWS7BDJoJ 0P6MIoCtHvFS5KEFoVqIZo1V2RhZ!5xqizZL48DvyUsUxKRbpBoeFXiaNTpyDJ8JhqVTXtALcAfN1jyW 0pSpIQbh3At4ooUnVLJPwe7hMBcb tYzcA8qlYbPbMim2Z0AljXFgveSKIBHr7hvapTebS7MViBIHTgMuquBua3Qnqcx6UZjjxJMK2w3QBKTbpIfd7ytJSfdHpywLhehAmbT6 hFb4lgDUVCp5Ol3esWGPao0JkPJq5i YKR sATBtgco6VmFWLA8sOLbqnPMbmSGcdPwQfGJ!uh2mTi2fN6RTNrhiBgvMB1uYiq8LTzn5r3o7vHcGG8eoYtLGdRNOQ!4O15iKqrKoxkjd5iznlvz5eISNQJ8AHozA4xO6yJsMF2N2OW308CaARBMG1n0PZxtGur30f4p3U4kLuLqE5tVzlmIlTSxCBK4DMfETF 4IRl5xEEApb2Om7nIApXZzyqo0UlxkB9KtOJN yOkU0n0ZFMYYHQ2YtB20ZoARUvj7kLQ8sSxpTQnhsdK0gXzBxu7saoYUUNi0F1zRpH9Qif1QTZ4Awy7j2yJMoF4IBYy0r4Vb6SqgQCcAUj75h545IPOto5rIXd4RMARq1VTkoMLAVvykPxPQB3HpdIsPn6BsNOMuBerPZS8qq pwaq3qB8Aa2RVYgSa!uJXPbzeUMDg5OF49N3YzkxekBskvNsu0i0ALppTVllRSN9cCBRvrtVfNz8bZzBK!cEhbMQtG 5YgMeH4qD6tVA0UNxHk7oQojmqsCpgSj5E5RdlPs6ZL2LksZ0T6pW1AkPREjGngOMAmBJTTOtfs!NfTMl21Lxa8DUaQoyDcxmkuiEg31gr8fyrglPPKLTVb5q2kn2XNLq2C3nNvBcDq8 z5K! 4PwLIGWHuREFAQ76jTgk75FTShFnn4Y231i8o8Q AdFDyKAePziCojPpDGH A5Q2!EcjvAi8jCRNg BY JKpidi!lhVkVwDAbqdet2RMlCVroskj7cBQz62tsf6Vqm8qyPD5YUOWSFAjYv6luKKfOv6OTmdwYM!gTCO9LZ7lx0l8lUA9S6duCe!HlxQrbtRC Wrsp2GI!8rNVWT2Fyabqh4F4RDVD6NSwrGpVeMhLUzaMMUAiijKxasO2CEg6uZR8rzdOlbRJXfnLO!u36JHHjZQXWsTN8t4TPjUmvIjBLivVm6JnNGhRc ujkbrTxzao0eFQT565Iul7ycMCu0VbVKKMzn6qOJzS422syUfzN6D2i55Qcg9NewY73nLyJiMrU9ixOfK9icSOXMBuJ9Lsq9wEUkowx1iOEJb7q9OXQGTPLgKo8KmLAQZrthWwwrZRUrUudlSQL9WDMNS2sWWgYwQzIo7eSelT10YLvpcNUUfVwuowPgOA03YNsQ!G9iB86mIRJPG8!YHNh9mrUrQT8pARQk2cRLNXBcJj3Xvp91Bd7RvBGzVnPudIIkifSjp2iGtGeAaa9y6DT1YNtgSPnI4odP63fApknjVuAsmXtP !Gi1zVu2flVieHkIo6!QU7C mE7rcKZYGTJykqPgGrxhSn7fFirAcelz!lkc4PP2OpMp3yvdnE1CZFj9f zatj9cud unIZ8HDJnhyf !ZJIUPHFG2ly6CiRTKV U!f2WdJ6IrY1iurzKSxpqipDI3TZ5Q3r2kVF1!wvwZ6A7xdby1xfxqPmAAFvXbVGqafie5fSb2SfLc  !GCoQtwyy75NtTKZYU4whcV2di209wgyksPuLni0PMiVRDh0kpZ1J5lRi7o!tLFI6jE!sEhLL2uQscb!61UI7AmYtBX4ibfsiTUMuZwutfMnO8Ypegrr 6BH1WS4xXSYzVZEURrl7ff20NyRs6y3Cka0GDfI01RXm!zxPIft5NQRakEKzJVYnUBnHOrrndrh3heS8oijkpf!VZg4mVCf4x1BjBExADKr02F1FaR1IdCVh6opZOszqgmWlHdjEL3AAcS9QnlSQmDSPMg4P4Ovy8ArfyN!94qCD!4H Srrjj0tHJ5o3UbaWG Db3bV7uSr2HNHJSJ4etkSb2XToPJ njeJXYysXYcp63J9xlAoSvRLQ3f2p3JfbeKryId6xypOxJzvUr4TmvCftbgZmY!ZhZnNFs3j ZuTuQWX!XB3VO0QTOTcTvWBchlI!ck1XIYLKRl0NfhHIiQqpsoSo8eZ6LupQk530yGVKLt8Sn a8fQd7F31psG1G7fXuT9ZoJK 61MB8zIh94l02g0H7e40BJLLudduf8 pAmjLSzUzL69ZjdThor0hdaBSoXCU YbdwEAR68ngDGvkvR9BN EyRjV0kCY!VOA2Sk7A27LOuoKegZj6vHtkkdhciggWy0uQpfgZD2FH8v!pK!q4aW8VLvW6MhURpKM6sOOXeR28V YIxXmjew60feuAE3clA8kKJ!iXzO8ZzOcXpws9TfYmjeWyu6jbmG1Yzyy2VPy0VmdYfkiVFKbJGx3Lu2MvkKx Lp2vr06MAVsYOq4zHM!kcK0uHT4NvcyBJhvlgNeUZyO4tnSWHvz!UtmNfgiehvGR5ZF6MZhCK3O1eP3T9VeNM8wnUGm0F5Fr0fTO936W45!9vXuORCNj4tupclpjdmAhvzhSFDPVwp9DHInyOEyINRWBjMr1kOdNhY!MZO3GCJvO0lifZr8Pp NutCkI8xr5VNoyeT!2xScbt8qrq4CQp5dg n0A36vFg7gr8pCkGTSFg7RqYtMgzVnwfjLY6W YsP YIrUqB40upcsRHYVraBMiWFStK hHU5 2D4Gab9 TbARKvnhAb!dg6jXEyfNRX2jeYv!5PU  RupTaYKQopEqw0omKEnSUCRt WJnc14w4M5uoA2b!hohqafWnsfVm CjB1DCpuM4MFQdsmI7MEHONPK3BL1zjRYAeWL Q1OGBia1u5PyHhcsYkJQvbH!rbKbCrWSsp5exNejCGBktEvC4yuX2iJH13 hlWg9tfDUy G80SiBrOXjHNfFW5ySOLlIGFNizJRIeUPN9NjT3Be8COxR4lzwkf ccYmeSTY2finGsE!P mjaJHGW!k2rPNT04q4Ss7F6Znt2N!qlcJenoQhEsg GFkp8JWmMdutINYQJiKHqum0BB4L8ABENuX5CCoYIGv2dAsvDBknsvzizR6nqk0MKxwJ8MM3jBKgLdzEV1 ES Bjvb2PY!6TU2mNdhdrOv13gmIo4cZNOb2WyVoZSsS19RdMhYARby1fxDinxe7Vg7INhTD1EK5d!rrShaQeX7Tvcle9kEtTTNSW!V9iCn8!jY750Vxp3b6pAPXQdms!2uhlZFS!o8O9BxNckCM8cKeCZoBXBhoOu0nhS pjLxhEVy5Jgtzps7U2EzH!Bx7hp7EBykzJyhLvTJwlAz6HZlOPHPzXBGeGJLZ!lAbrVCbwMACjbcrdGaycsIvCizrYcgQvbunH3WOg21WBWpmniLLCCSLHCsLeNCKX27J9OioMCFolyDh1KCgg!e!BrPh8wrO6MZcV5PEJn1tcnyAs3TJd09355suE9Ps5LsJYiAfzqWYEDNnLjbtcxFeTpMTEPXrerpGhHmXpqAchs96QDOHRTunWB5zQd5yjnVqKr3WXtlXRAAXfjC2JEdeMm8OPdo8oy0Sb04EUh8Ge3QA65vqcCT56tVxEvEU6Dg81nowH!iBZ7zMztad1LodVIGNBU6vjrXUncmApN9AKC9lBfZtksYzphEfaAtJ86GL5RG0m7bHniFVbq34NO0ENmu4bMrCNEMWubnRRkyKY3wOHKmW!FuQLEYiTDWl6B8Rdp2SoVS4l1v4JO86sDl6lB6eTigZrP5qVLaqXmyJeXQ6SdhQmlkvt5pb0cNaFBcknUUnbBK4lbrrsQK2YWkE7jA4fDrpNDzlzdiuWtU cYB38aw1DFr7lPTzi7DjBgY8OHHaauO!wP1VSRZJTOTP! azYE!6cs00Z42bkaXF13BpjfKI6aEKbULiuVx37tW35o0JK4 7VXGJ4wtckO1 16yDVJmV1hH34Z1PoI1jzVcmGAD5NquSBSP8sS4Rcf L8m7HZ2gBEHmwsjxI7GOOQTQyTmjEe04nUVFQD7xn!7ZNmZBvGQOvZaY6DgTzBq97ah0WTJO3OSRWyYKGJDw7CQKWACwLxQgW7Xtu6wadsJAATX55WqgtFnst1t!tUSIgbiHNCg6FEXkvp1bj5Tw52HVG!aZ5bkGng8CEqqGMCxVgCbSoDyTyGBLmHNev7gazoXDB!0cbQs7OSWHZtx 9jStZbqDvkFKmiKIO6O!DwqgDGLNpc5E5OfQPji!UNOXCJZy2TI9BRXEkvg3P0P XwpcVozT1zWYczOQ85NmYpAr1JDXKonIKGtUX2XVyij4q9B9wH2oWfRx44aQaVP0f6ViA zi0TTtOgUv1n1bObrICuUd3pWWkxuF1A0bOaoWHEIicsuULb74ZQZ7kms!r8spjZ91lQhRgzcERJ9Xn4gm1cWfti0HmShGJULJQ9IQXM8Ziyf8lFC8PlFDROJ2iMGNq1hgmYYYevgQKYz u1DRfXXSUneVSNIJxdE9616ShyChSBX9pZ4KG9NcxszbyQxGaSDkAwUYdm2OdhFnMnQfKOfSui3lFuxH9DJILcyj0!nkmA9h6ikfglvpGHEP3b9ZHlsUySaHdPphwgeEYks45!GoKYezR5OSO9S4Ye4cr2 uzhSHyo7Y2DJTgTnbiR7!kSOhSXmw9XbYiFgSvneSuSAEGlR3k3f m8IPpZ8oEgmkS032ND4kjzvtyHYqCXIXF4vMeUaXJ!z7nDfmbHERj1R4FD eJQ1gYM sHOAKftd6oSDJ7raSBvFINCeFdoJHAMC ZcNEYA2jybxt0pWtHLs4OTvyaxbaiHiQeI!O !oG0mxqc p7fhnvoD3jzs3sI8zgpPwwqnPPAB8uAGiCK!XDVrc!!VUZmzRrTRD3xa4psmiX6g72U6zu0FzY!0GhmOsrSFArl XBoOh4BR37zCZB23mJs0LGfuUiJ S7a65!M!ui46Mm F019J8VMRmgKeGRcEteGa9LpcSB5R9dR3e95lI !DlL51O 1 t575j2PZvpwkC6Wcl4Du0mAPCDGw0NO!d6asNxHG7E4vCqlPJEi FsUjTizyoOPEo3JGjpNY!ego2WWeQL22Nlvrvracg2tkF9PBgS1EjKg2kTCcBLUCDPgbtsyWtbLf HoQRKwQT1WrhElTmqIdTubJMgDgNW idQ904CVpuvmoQeJKznGvmyw oFp7gCXW7Ef6LAny8fWsc25USKp181mxQs0g8LFDNvw3usUVDaonMGa2Ch!Y9Fczdm55D5irQL3raT24!8O8 thKvpDgujzpcKybU5NRBPEKtoKGiDUfnUHHBwKAE6apgoATENE2wXp0pccptu5!YmrPwQBsG3QZuz3MDaRT7ocxUPvcAVS5muDb7YKLN9juA4YhWkZ6XowLTHy3dUomd2! vP2s0 ZVpxz3GeeVxlHBWnB2w0jhTrw5NMyajHVvin e5G5SS8XGQVqBfcy3N61maU7df43MTLR4v8LY!SAN11FFgbfEXZ2H6AheHbEdRKTCrv3sUlX VKQI6UA!bOP8HhBaVkP9umnmWwd!XjQc5cO47RaJAt5jiKZnh1Cs3JZ818vXrETatBgq57XaN2MSAo3UGismmvHQXX4XNfK2hCvy2STlJMb2uIFy4gnS5kT5!LppHr7mHMNtfoy sVzGSk69tXcMNH1ft3 JFJBrGvUn8KbNbmPVsj3lhby8G9fjH166HVwnRVkz57fo0epJ0s9FRfYbsLWiHkwC367JrC8uDZqctlm1Yn m U!fIarAnY6C7NAYn3JVeK0b60x8gIGaCUC907CfwnT0F8nlzOT9lVRlQOFUZFabKjmgsFjD3FcXrtaY0nCIW1fha6AIvROEPJcpPoz8osVTAfwUUtMQPqoV!O1U2j7q45LBGAdE7kuh  YGYcoYYCuAEdpewafdB9KX!wQhSX3woUa2i23TvtUot27f7kb9UcgjTh6NwlnphChSp0MlPW6hT7hunqLZ2IxIelLXU07iZ!yyYDDLi75R1H4Rbgakw8NlOtEwEfQ15JN9uBsmy1ln3cReV6FuxjLhFthjnfLZJ1DMPF7cXAcyP8iNyGQ!vfsJeaaEzEbChFwaTjZ1m8oFuLolYxOS4BpXy2K1WSMbqYfiUck4mUaMtdlyiui9Zwbs12nk3owuajSn9S54rr0wQgOZ!ooMRlovkQpF6wA2QMLN6nsGsKhbz5ErDUFrM7SkXzVIckccfbmBHl!h3K iNRf!A0h1GZntjgkzWinuQl1HYSi1YngCyznOjJ0ktkEfkH41Hpn2Vd3KbSEwDp J4D5Y8cYTTxFms6r0ICuihP056KowBn1gi0UyLPVX9NZ0wpkNu1Vak!665imYMQwDoObWi1RKj!WL9k7n9ocJ7EtTJQrtsX66sC8DL9V7a70VVibnJwdxnV9ywoOrrUV6wb63iy6a1g5pOVUSDjdYMSd4y0YijQ7vxT7tuy0bx3oHowSqIZjIiKkk1vU9Qa!vbm2TdHPr3p3C9kOmTSJAKCSST3ErWT!XvQsv3WSfP9DA4OeB5pcittkRz4VerMhUkyMUI0Fe6A2xc9MZje6YE20d1gccme!44c8h3YG3y ZcBYNN09ANveLaxlSzmadD6DhM5taJAZIs aZ0BrjTzmIHIbsCTYuQunKPiq 26KA!WYHQCZrzP2TvFWDMvpKyh3XYdpxJFl4YEyNnSuqfd!5K8jYej7pu29eVFz pepVuelbf2KaULnejzr6Vmx!wa4bUoDTDyfdt9JGOs2whzODMH9W4ZRVMNZVI05w18SPwDfrbxDHtduZmHH6LtBQbx3KmuF9GP1r8tQ9kjexNCYmJvezjfc5udbSqshvIxuiW7XEhlgCEVRdPf7c2lGAjkhTG7sZHM6JZVWFdG7SmfWD!Jt182HZpH5YLhJXYxyvTs6aldVhPRUOUvblQ8DbsppaZAatZdXOqNjxkl7dEkybQswWI2YURnKMw7N6HwR0cQg4n5PWjQdMbW2fE8TCqZtiGODjufx7SwrRAPZqHuhA31jV7nSWkvFDzkxdSd5MKAI28hU O5ThMyK4LeII7CM78M0gGENx2pFYduMfYf9dtl12AtJGt8HDH98XmexQN3hEhB8cK7L911Bd2xo3fzNR1Fph7H6lGh9DINyzwR!4sQX7hkvTe9Md!MLDGFZ vcPba1G0Op86tn!!UZn8KbB9PDzVVjEExXu0pSgjh9MG1dRanfitV2OA!cj08znA7PEMdikreTXW44xAxffd3cWPDOG79Lh3s6fHfizkr0ks XmsUiCUw7Ka 6Nvpbx52Hm0t y7eZ8jqHNWgD5ZiY10p79amACfhwKNtc2pAc7KnzjgDTZIqBekDP9ICnq0h8F6LYCpszIjfXRjMUPX!yksZrqNPlBHXRWdJen61GT!56Id!13j7E4Yyvi4JKRbEPRNmOtppHM3QFheiyIimTHHZevOmIeVEXQNMz0oDMwSPylxfSGyvWIXpLUUjlwRueLK5Qf PPk4WJ6Po!ilinle8tRbBq!giTKQRohUp97KkUpqIl5kFSWzi4RTtyyGBVboIYna7KPV EvbeGi65PmkIaG7u9u!VumV1MYb90Woxol7ySrAkAq3sWbSv3nVD9syhicLa5QCZsTni1Ct4LJ 1tsgzOyryvyC2BPjpDWUK7f5L!lgyyslYqi!cHTvrgjtRzpTg3e6YxXaHiwHHCkBLNAn8J3Ky8KxyjzjamqyzBUTBcVDMMi87!FSw6sMplm4069MIZgsSr4GYkSZnZbg0!cVEBfSeztHOwXWpZU9AOtUlcLjxPhwrRwdEYPs!6ia0!YCP4SKR3!qYOJk1xDjBbidLHvgeYGWeMJoQz3PzqEwDU8c8jvk19AZ9qs5liqsuWHzxOjgjoROFIJHWcVjMvcXQN4ER8hc0OEMWxLGjQ3I KI4Jp1eYxF02FLDh8Lswr2Gx4ndXOVwJNyLQHYG v8!!KYvt6I7540bGDlxuioI2e3apiAujPsIjE!7VFOUmUYzVqgG7S3CUehPAb5wKmOun7oteLWejQrgHcO6DjHBj8hSYsOnV085Iqq5nrDnfgYcXNcy Gt7zWIMDd4phY0DUNJVT9j0jDsyjYTejB8ztcpTBQQh!8P8NK!GKwd0EVj03Ul44GSxQ3pyyX!TiAotqv545XFciavHtjmFODJr7tQvgVsDMEdpCtk67OgfBfJj!pwnbpTbZFZZAg7kXE2DPQ8GBsl13MJL3 EtrNEqhYUQVEWRkrOycNeqgfxGKCAKLMjvWKDZ3UKFerjj6bYIUHhIjwW2PHCVh yuuBOlWdWDlxQKnMSUQRmCVqYlUBB0ClEGJu!XQwQOymzQji7dTnm5VjmGVqeshpnSx3rfvj5lq1nYCUgfMHlqeCKPTV8OmDvJVrM9jGnXrZsPmUfV3pMUa44vJl9AJHNXBFy0qGMk2BajPzKsj6sz6hLfD0jzw1u9HxQ3mGAO5Z1x5sW4YClIjEXy FQb66PADlQJTiLx8urR6fiyRMC2jcY6zcySEz0mCV DBKfIiUyW44I9pxHy5kFJuzrgHO3DKopG9cAVNk9fKkE4tQ1IGev2yXz60ft8YIhqvWtlerpmKAbkVSYj 15ei40sfJvHQaflTAV7Rf6Uceu9ZhC!OmPspzVmXRUje7SV0VU3sMtxWmArLQwQ786xmNRewW7L5ZWzqrw4mVhR95Sqtv6mBCbfb6rtMMs3poOBnYd9lwf1t9akg7fsuqtX0QoBLSQzKK9yThfRVaenVzj!CrM77vnXWd5WgT58ETIt qUMvM9hzkAKOxa7zEtqL6m3mLZG9ppS2E3FMu6QzbfuyZC 3vEXy YQV64BeCL9T0LsVnKJKlV AEnI0m0KmYiEo  MmF2nP9bUOcEt1SLmyb9SQKycptVSqLW8YN6!RNW9!E QaMSnF8sCPc9fGb26dI1wRcE3KobL3lswSLH4hTY!T2cuWRXVQSo5RfrUjMfkD3GePLH6h xlR3oE!O57 ybxZjTggoQ439fBzF5Nq2ZEOsZ6gIYuFeuP53pnVS XLOpsY5qS7grxkKNLA4BWztdlLZHanprPKmOmcik2RK5FZzOZwdCUOMff0dRmSMgw0553 5uN3kG3UjcUaNOBrct8r32T6XJe55zSsSao5Uz5LxN3dutkHv8MDGrnL9mUIzBclaJYi0SMMWZGwD8dThBBBYmS b5Azw342J6Azejp855grPBalWGHD4SDb LyBNERca8s4N!LdoT05VBDtfA4R9pGi3LnDnhFudaTezhW04qqZFt4zH7K3UZ!Yi3JULy!2sXY3s47M4NZn5caf1nn732pkApYGtokSg6N6v4dOkhZ32zFsAYyGb KyiN8om8XvcP9qtc0hFssOKYnEP6H!qezVdiQ4obbngjVTNNBM5gkL!Rd9sXESPr4t4RqokdnBV3HfrCChSFpjAqo3ookgM8VO4t7UfSQ2yID8OGhW4HAwlNrQT5AvtfyXhZtPIx8qKl1nJ!bhxFCleA4QXfcSXIStugb5JU71p9fyx i pY8Yj22HzxwCXpb LbPSCKs7mvMHrmZuoNbQiJ1SBnUx42EzjNzlQhBmkS1PdjrPLX22ivux6PAbH9EgKpD3JuKoJtUTb1L2GQ9vTPodekl10JWwPDvg00yvuB083!rgCzS8M6p!75JrC0WawZU5gTiHrD685ZQT5qSO9OMn9fpUShJKs7Urd7i9pYqQlSdSRVQayW9owOrjBEsKfj!ddOOorb4g116Y361qxqcKnbazgTsWfRFdBnCb!Ab9KJem8Hynlgc5thm G3eP4fWIhdoZkscq2DQlWjt akz9YOOSNcGaM8 WbE7v21X8r1D05Ev0feYz3dSk8L1!w8hGeJAQSwY3!M5Vf2B LCuiEE7YcqxImT62!ylyC6YtoE57RAxwveXQOPpNhuYBVXSQ4bTKRiVNZpE0wqj QXXYnOJIEDb3ATjPzwKtJPyEHgGuYokZyQrgM2ATvmnKYI51dL4oZUah0Nso4nd71LV 1usjjQYoBh!MIygHYz4soX571eiB461FC65v2cn!OAIPqj0nEA5NipwR0OxnqrIPJX8F3SBQUBec54GBijkGEKqMSyuM0g2LSFeTvZmXgF1qGw0aQMqADQMKHWmMdno1yBjbrpybqpe9t2UfDFxgmiXQRQotytzWzENEZ9JhipAlfRlp9wvy5wc7Y0xW7Nm04Nd9mmng4BKrxdd5CXAbDSgmAjA!H 9 SbhA37QUpHDrLz5toRLlr!K9zpYonhDhqPQXQ2LPO2oCAJ5iI08WC9DrioW2Ep9BhI0OffKxpaR7ACDhnz2CXOOnvtaPtiDaBGqLNxOPZ7zvl6A!p7tejjHUqfM7lC 5xLKNfQZDcaaNIhVe JuYDe8lAkNhOSD135a!xQcNPZ64ldi2PbBu8EsbjlA0KHpuXnT!v1zEbwkVOAqvlcCZhf6UQuleviB4 92b8fSyWURITrpKfVAQBsFlK!YvCxsZ!H1JS3am I hlDe0qOvdr6OfQU sluIxnJWyQ4pYWbet7!fMj ML3uvu8JVIytrjB5jCczYGTVKvvZik9QS9hsaDGsO3klOzyWcC0WoFIpo AhvRTFalNxCm6QlPBgxqkepoMhI2SPXztzJDch3KRqz!!J4AoZbJTKyQF!kVZrB6bWtZTFx0QecDzk3rmIy!04DiGFTBDnKV0cogohyV YyWIUf3auBM0HHziQAJSIyeGrJHWrUALm8soUOQZzEjqQlFVTQ96h0OCv!sVPUtzyjskLTwgroolLNf1XImKjqLVm5fZ2vZ2n2U 4db!x0GoVwGLd8CrpS6ALjEN98oAoynHmRHhsztYg9BcWqMjrcC2VghGk6iCzSXypacyxvCEinqN5c1IbNT!o0Fa7ZQAiTEj8mYBBrrMA8611TlgsVvVUKGU!iCPv7h QgxbuQMFtudf98qlCGk4w60bhap6DhLLDaCWp1oRK!YPeSvXnCwYcWXBRWDsE!SrtovUjELg4RedRP3GrQm37fnfqtosN!xDL8FW8JMNchnKY9WDRNIE8EIaEVAcYDFiKnlgeYrFEHmpYzZuUT1myuleCEWyuJJWhD4TSnqRdwptQc0lmeR4SVSOJh0V4GtH!9si5HvLSHzSQzIsSitNqDC6M11eCATQBST9!5!3cVUfeYE0ctIaUXvG3p6Bm1gehfHFtSg4ki Aq mb Z!sY pULK!DAusdzdYUACqqiGeWy6p5kb7RnURjq98oStvn4NrSrPdz263r!MkDjC9qpqtlrxg4toO 75MEr58edmKsZnna5Vxil7 QZQEgclsEF4hDRZyRzatq0p0IhQgFFJkcIT9m3HY2PHU8ke02NY0xz9qJ0s9WWCOgl4HCn3XE6qB6XPd8vYPo6WFtIR8YbY4lQlfiU6AsmIrMpzHMpFxFmT70sTj5JFiq0DQr0kX5VEXa0B8pPsNOQaWBXuGeI5Dv8ZSZk6HK9804cA8YY5F9oeUORdPCdouReb0mumVDcqj ukkmCl17bwaYQ7zz1QlPrQtDUBD hxpIGxj6lVZwsy!ye UBOTrawjijo deklCLFGEDQKyYFQiHYumq7ZwMaT99z0Tlp!cIcVYYqezjgSoy!Z9XbdEID1vt5Xw5EnkH!hJ4md5Ze0 oXAQOQ6NAGpsE 1dQSL80Uw69FEmcs99hGdENqtZME3kxjJUMLa3iDgJRNsxcHLpP57oSfOWZ9xowW0!qrWkeWIKHvwYXB!b0lxUgPQoOc0eqdTIDHr5gcrxv E7am3Agk6Ne3Eb!ClM8cy f1smgz6d6zLX2fVQme5J4 qvLMdfD4dBcv5zCXoqzPDJWxyX0A3MlJF  7grUwXTnOEcC !cBX79mB! SN bQeVeDWDjGK7M TMJEduPDCWbPKRipGq!OIrB0q3GpfYVJJQKcXaTAfqinOVcfzH3G1Bm6BWNJXELKrDeh!Cv9Of9aafa1GCsg53hwhT3lMvkIWOCCJVkm2oubwO9b396OyLW1BZBeW2XP8i4pwbGt0Da!gdOqMEqcSVsirq3nMUE52bBYmekOO8Z3MXha9ijiPJZ zbeb4YO2TRbGbVLAEE0EfywPP0ChFGVJZ1YVcblnzTDsFuAXE8hZDmie7vTMIKiZWdRcDzZshqEkW0lrdFBHViYhm7ggRY3UEGwnHpV!D3RQbM0tyT5CuvKWGLxxuXu4jGWcUZR9u9jOTM9L7Vhc7k!FvcaU0KCR6CIlEcGGMEr9Rl7PNoCKKpgaijPaLiRISIOMnp09W0fbe xpfZ4XWy032HLAN4LZRc8b0zP3X8NWm9sepqwXoTQHmCZ3jaPuxwIQxEtCsQ00g34UGFYK796zZi886Vbd6TqgHMgFLZt7JfUuLCAUGuDS!!NI!f4Tr4j7IOhtRN4YE2W3K6!MB7wNXmppxxZJyYU7!MMxIWsE FIodND3GGBL96!iB4eOA9eVdsJglzK8rRA1uaDxRNWIELoUvFKyNrSYpN1D98Oucdg n0iJN 1YIMOUl l 5L7jwmiKoqAJLjX140CmfOh1sGCAa!!jMq7!uPmUrWnoI2FmYzNKybiGRlZZUgy!AidpwFtGJchq4d5IiQGDexC3oBm8BqT4TGatpNyrbrmHQKT qcUXlxL6MHureGOcqTfOisZ!a20FHvlDt06adL!BnXswFR23BDJDz1sJbu7XTvBAGWsYx8NJoBVwvPY2kI9LnYzb0UdSffr!YqeGDgmZ 6wL6BZekLX1QrV3mq8SlvT5gjKwn2p19gsQKJJgxHDriza6QfVzzdEGf!LgaZErWGnj5n QxKx8mz8edSKpL!jp9tZ1C0Pojn5TsX S84vcFlbl2ROti9I7ZK lIfGHTBP29u P9JcuHKfkidUgGC0PH5J9aTI!YC8TSUJ 9Dsd0P6Fpun8xriHgQ31Ycy2rPig8DG!!z173oxYOojIBoEWTYvkKGVPRV1avLrpoL57SJYIG7Bivwm756HcGbjbB1cGyHjIZMBWnE6t33R8TMulavba54lBbXTwovKjP!1UoZ!0nPKWvVDLbkfvINGzfk0M5E qA4pWcAZ3D4YqjUcirrpcmZuqaC9pEDNnJLYUzMTj!zkk3ol7OJ3njFfFg!I9 cxUBEWVxcxEkio!MHS2QJWBFGGNFgHncsfMOvvKnhW4eUxLjjYvoIRPMHAmWdZcicniweySs5At4q0K6Y 45LACj4i6xAjRHM!jdaGFM5lg7YpFtDJu7QKQTDGZHBJ!2WEWI90G2h UAVopcYAdggrH1nrWbVipvqTQ20iein83H BR5blR37srImN492yomKuM rE5bbuIkvSod!4jjDLRK!s2qpITtrnOGFU GeUNSgY1z4E VibuHb A7QqK9QzSKawkrsyc feXZ9oAhr0sW8rnrjwjCV3YwRQWsnO3gPeKRoGfKRQ4k3NuGMl7htkzCdA37xIu SfmB8jIAySw9eXE4ackl4K 3FmzpqGE82CcFVFhOBqlnQSfzXvPa9bZyRfkpvK5qchut0gVg0ce4h BRhJL7A2VqHrJp t0ukHdBV2ACt2CxCgtYR4PBbWdujvxvAuF0WT4YMPtWAUXVDypK7zYvvIfiJZPZN xVnwhXvwBVmNZyxhxCtReg2VHPMeneZv4CKcaorCXeJQf981plj9IICBUQ8!Fis8QaVubILtqY1rbn8ObObn2vOaUqqGD0Ltk2AD6GPaneDrKxDlTc1Q HTW!2g! i!BWycRAkmf9ofdSdNw!vagRZNSg6os6u2ElogJSG!5EdMyUzLrUX7FRF33GVV6CscjjbGuLT1XcR90IsyrcieuxXARQifGbdf4XO11JOQiPOXogH3AP5bqUIFXvPmIimKW0Ny1FQLeepHXFVRA8VzWJV74nGDJh4HDg fuRZV8ijvFbWoNnEmF4ym4SeKU9SOMhugXZBogYaTrgIu0p0maxepWvI8xwkLERuPq 5K WgA4PpcdbGOYheEDU5zmBm1O6Pb72XJ0RMW1dfjSUlv7QAlUOfE7!wG3EEs!cGCNIHDETyPYK3jc5AKosBEx6FmPMLwnYyREq4qVsoTgXCGG81!3k21S!gi5OPNwv hXrfnhGCGT6q77lZbcQRTt4IIx9r1PzSmQqzDjOy8PukmsEGmvWfgTJfMZN!StIpIhuiS 9yeBJZZ5pY68OmeD!5JwmaHtM2jtA13TdJywrssupvv8l0a9bW6yiPZ!u8HyvLvnrPyfkW6N7dDvjTE0c4WAn6 XbPXMGHJK4x8AMbhdD0IPi!CxScP z5nHX9wO1Rp5sbmj6Duw1hO4iKgn2cjVwPqTSvMXMfkFyry!3XMewVojNqd90xhBzOzjFs7IA3fCHlGnpfv6xaZXoQq1glaoUpLHPoPwA!wThbYYaem3lvBxmV0ht1f3tKibTxDXw0b!Bdn7W38qEjhttPXYMTQhu52l3bmvqnLqRiKHmTLjJ7NnnqOvOb358BN4GO89FFay!Pn8s8duVDvUtDu3HIkfg47aWrdHef24n4qXFIIdXSnJV1uI19C0AO7ULOcOfU3PaNXLWJ4ntfd!1lUqxBoOINmsUVQk9woBiGkEvf31457vUPR01kl0I0OB3bY4QzcWtBTf2Qal9mS4HSiXcjqp87b!cdM7WkDH5QhpEYv JkISKVJC8vfqZUaaQ3yR2pf8H10inGN8oCPvT0"
  },
  {
    "path": "testdata/calgary/bib",
    "content": "%A Abdou, I.E.\n%A Wong, K.Y.\n%D 1982\n%T Analysis of linear interpolation schemes for bi-level image applications\n%J IBM J Research and Development\n%V 26\n%P 667-680\n\n%A Abell, R.\n%D 1981\n%T Implementation of a Telidon system using Unix file structures\n%B The Telidon book\n%E D.Godfrey and E.Chang\n%I Press Porcepic\n%C Toronto, ON\n%P 203-209\n\n%A Abut, H.\n%A Gray, R.M.\n%A Rebolledo, V.\n%D 1982\n%T Vector quantization of speech and speech-like waveforms\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V Acoustics, Speech, and Signal Processing -30\n%N 3\n%P 423-435 \n%O June\n%K *\n\n%A Achugbue, J.O.\n%D 1981\n%T On the line breaking problem in text formatting\n%J SIGOA Newsletter (Proc ACM Symposium on Text manipulation, Portland, Oregon)\n%V 2\n%N 1/2\n%P 117-121\n%O Spring/Summer\n\n%A Adams, D.N.\n%D 1979\n%T The hitchhiker's guide to the galaxy\n%I Pan\n%C London, England\n\n%A Adams, J.B.\n%D 1976\n%T A probability model of medical reasoning and the MYCIN model\n%J Mathematical Biosciences\n%V 32\n%P 177-186\n\n%A Aho, A.V.\n%A Corasick, M.J.\n%D 1975\n%T Efficient string matching: an aid to bibliographic search\n%J Comm ACM\n%V 18\n%N 6\n%P 333-340\n%O June\n\n%A Aikins, J.S.\n%D 1983\n%T Prototypical knowledge for expert systems\n%J Artificial Intelligence\n%V 20\n%N 2\n%P 163-210\n%O February\n%K *\n\n%A Akers, G.\n%A Lennig, M.\n%D 1984\n%T Intonation in text-to-speech synthesis: evaluation of algorithms\n%R Report\n%I Bell-Northern Research\n%C Verdun, QUE \n%K *\n\n%A Allebach, J.P.\n%A Liu, B.\n%D 1976\n%T Analysis of halftone dot profile and aliasing in the discrete binary representation of images\n%J Optical Society of America\n%V 67\n%N 9\n%K *\n\n%A Allen, B.P.\n%A Wright, J.M.\n%D 1983\n%T Integrating logic programs and schemata\n%J Proc 8th International Joint Conference on Artificial Intelligence\n%P 340-342\n\n%A Allen, E.M.\n%D 1983\n%T YAPS: yet another production system\n%R Report TR-1146\n%I Maryland Artificial Intelligence Group, Computer Science Department, University of Maryland\n%C Maryland, MD\n%O December\n%K *\n\n%A Allen, J.F.\n%A Perrault, C.R.\n%D 1980\n%T Analyzing intention in utterances\n%J Artificial Intelligence\n%V 15\n%P 143-178\n%K *\n\n%A Allen, J.F.\n%D 1984\n%T Towards a general theory of action and time\n%J Artificial Intelligence\n%V 23\n%P 123-154\n%K *\n\n%A Almes, G.T.\n%A Black, A.P.\n%A Lazowska, E.L.\n%A Noe, J.D.\n%D 1985\n%T The Eden system: a technical review\n%J IEEE Trans Software Engineering\n%V SE-11\n%N 1\n%P 43-59\n%O January\n%K *\n\n%A Alvey, P.\n%D 1983\n%T The problems of designing a medical expert system\n%J Proc Expert Systems 83\n%I Churchill College\n%C Cambridge, England\n%P 30-42\n%O December\n%K *\n\n%A Anderberg, M.R.\n%D 1973\n%T Cluster analysis for applications\n%I Academic Press\n%C New York, NY\n\n%A Anderson, D.P.\n%A Hedin, R.C.\n%D 1982\n%T Voice input/output module\n%J Voice Data Entry Systems Application Conference '82\n%C San Mateo, CA\n%O September 21\n%K *\n\n%A Anderson, J.R.\n%T Knowledge compilation: the general learning mechanism\n%K *\n\n%A Anderson, J.R.\n%A Reiser, B.J.\n%D 1985\n%T The LISP tutor\n%J Byte\n%V 10\n%N 4\n%P 159-175\n%O April\n\n%A Andreae, J.H.\n%D 1984\n%T Numbers in the head\n%R Man-Machine Studies Progress Report UC-DSE/24\n%P 5-28\n%I Department of Electrical Engineering, University of Canterbury\n%C New Zealand\n\n%A Andreae, P.M.\n%D 1984\n%T Constraint limited generalization: acquiring procedures from examples\n%J Proc American Association on Artificial Intelligence\n%C Austin, TX\n%O August\n%K *\n\n%A Andreae, P.M.\n%D 1984\n%T Justified generalization: acquiring procedures from examples\n%R PhD Thesis\n%I Department of Electrical Engineering and Computer Science, MIT\n\n%A Andreae, P.M.\n%D 1986\n%T Justified generalization\n%J Proc International Conference on Future Advances in Computing\n%C Christchurch, New Zealand\n%O February 17-21\n%K *\n\n%A Andreka, H.\n%A Nemeti, I.\n%A Sain, I.\n%D 1982\n%T A complete logic for reasoning about programs via nonstandard model theory I\n%J Theoretical Computer Science\n%V 17\n%P 193-212\n%K *\n\n%A Andreka, H.\n%A Nemeti, I.\n%A Sain, I.\n%D 1982\n%T A complete logic for reasoning about programs via nonstandard model theory II\n%J Theoretical Computer Science\n%V 17\n%P 259-278\n%K *\n\n%A Andrew, A.M.\n%D 1981\n%T Autopoiesis \\(em allopoiesis interplay\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 157-166\n\n%A Anon\n%D 1972\n%T Holography and computer generated holograms\n%I Mills and Boom\n%C London, England\n%K *\n\n%A ANSI\n%D 1983\n%T Videotex/Teletext presentation level protocol syntax (Draft)\n%I American National Standards Committee X3 -- Information Processing Systems, Technical Committee X3L2 -- Codes and character sets\n%C New York, NY\n%O June\n\n%A Anson, E.\n%D 1982\n%T The device model of interaction\n%J Computer Graphics\n%V 16\n%N 2\n%P 107-114\n%O July\n%K *\n\n%A Aoki, M.\n%D 1965\n%T Optimal control of partially observable markovian systems\n%J J Franklin Institute\n%V 280\n%N 5\n%O November\n%K *\n\n%A Ascher, R.N.\n%A Nagy, G.\n%D 1974\n%T A means for achieving a high degree of compaction on scan-digitized printed text\n%J IEEE Trans Computers\n%V C-23\n%N 11\n%P 1174-1179\n%O November\n%K *\n\n%A Ash, W.L.\n%D 1981\n%T MXEC: parallel processing with an advanced macro facility\n%J Comm ACM\n%V 24\n%N 8\n%P 502-509\n%K *\n\n%A Ashby, W.R.\n%D 1960\n%T Design for a brain: the origin of adaptive behavior\n%I Wiley\n%C New York, NY\n%O (second edition)\n\n%A Askwall, S.\n%D 1985\n%T Computer supported reading vs reading text on paper: a comparison of two reading situations\n%J IJMMS\n%V 22\n%N 4\n%P 425-439\n%O April\n\n%A Atkinson, H.H.\n%A Gargantini, I.\n%A Ramanath, M.V.S.\n%D 1984\n%T Determination of the 3D border by repeated elimination of internal surfaces\n%J Computing\n%V 32\n%P 279-295\n%K *\n\n%A Attardi, G.\n%A Simi, M.\n%D 1982\n%T Semantics of inheritance and attributions in the description system Omega\n%R AI Memo 642\n%I MIT Artificial Intelligence Laboratory\n%O January\n%K *\n\n%A Axelrod, R.\n%D 1984\n%T The evolution of cooperation\n%I Basic Books\n%C New York, NY\n\n%A Backer, D.\n%A Gano, S.\n%D 1982\n%T Dynamically alterable videodisk displays\n%J Proc Graphics Interface 82\n%C Toronto, ON\n%P 365-\n%O May 17-21\n\n%A Baecker, R.\n%A Marcus, A.\n%D 1983\n%T On enhancing the interface to the source code of computer programs\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 251-255\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Bailey, D.\n%D 1985\n%T University of Salford Lisp/Prolog system\n%J Software -- Practice and Experience\n%V 15\n%N 6\n%P 595-609\n%O June\n%K *\n\n%A Ball, G.H.\n%A Hall, D.J.\n%D 1965\n%T ISODATA, a novel method of data analysis and pattern classification\n%R Report AD 699616\n%I Stanford Research Institute\n%C Stanford, CA\n\n%A Bandyopadhyay, S.\n%A Hughes, J.G.\n%A Smith, F.J.\n%A Sen, K.\n%T A generalized scientific information system\n%R Report\n%I Computer Science Department, Queen's University of Belfast\n%C Belfast, Northern Ireland\n%K *\n\n%A Barber, G.R.\n%D 1981\n%T Record of the workshop on research in office semantics\n%R AI Memo 620\n%I MIT\n%O February\n%K *\n\n%A Barber, G.R.\n%D 1982\n%T Office semantics\n%R PhD Thesis\n%I MIT\n%O February\n\n%A Barber, G.R.\n%D 1983\n%T Supporting organizational problem solving with a workstation\n%J ACM Trans Office Information Systems\n%V 1\n%N 1\n%P 45-67\n%O January\n%K *\n\n%A Barber, G.R.\n%A de\\|Jong, P.S.\n%A Hewitt, C.\n%D 1983\n%T Semantic support for work in organizations\n%R AI Memo 719\n%I MIT Artificial Intelligence Laboratory\n%O April\n%K *\n\n%A Barnett, J.A.\n%D 1981\n%T Computational methods for a mathematical theory of evidence\n%J Proc 7th International Joint Conference on Artificial Intelligence\n%P 868-875\n%C Vancouver, BC\n%O August\n\n%A Barrow, H.G.\n%D 1979\n%T Artificial intelligence: state of the art\n%R Technical Note 198\n%I SRI International\n%C Menlo Park, CA\n%O October\n\n%A Barsky, B.A.\n%A Beatty, J.C.\n%D 1982\n%T Varying the betas in beta-splines\n%R Report CS-82-49\n%I University of Waterloo\n%O December\n%K *\n\n%A Barwise, J.\n%A Perry, J.\n%D 1983\n%T Situations and attitudes\n%I MIT Press\n%C Cambridge, MA\n\n%A Barwise, J.\n%D 1985\n%T The situation in logic II: conditionals and conditional information\n%R Report CSLI-85-21\n%I Center for the study of language and information, Stanford University\n%C Stanford, CA\n%O January\n%K *\n\n%A Bates, E.\n%D 1979\n%T The emergence of symbols\n%I Academic Press\n\n%A Beer, S.\n%D 1980\n%R Preface to \\fIAutopoiesis and cognition\\fR (Maturana and Varela, 1980)\n\n%A Bell, T.C.\n%D 1985\n%T Better OPM/L text compression\n%R Internal Report\n%I Computer Science Department, University of Canterbury\n%C Christchurch, New Zealand\n%K *\n\n%A Bell, T.C.\n%A Moffat, A.M.\n%D 1986\n%T A note on the DMC data compression scheme\n%R Internal Report\n%I Computer Science Department, University of Canterbury\n%C Christchurch, New Zealand\n\n%A Bell, T.C.\n%D 1986\n%T An introduction to text compression\n%R Internal Report\n%I Computer Science Department, University of Canterbury\n%C Christchurch, New Zealand\n\n%A Bellanger, M.G.\n%A Daguet, J.L.\n%A Lepagnol, G.P.\n%D 1974\n%T Interpolation, extrapolation, and reduction of computation speed in digital filters\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-22\n%N 4\n%P 231-235\n%O August\n%K *\n\n%A Benest, I.D.\n%A Jones, G.\n%D 1982\n%T Computer emulation of books\n%J Proc IEE Conference Man-Machine Systems\n%P 267-271\n%C Manchester, England\n%O July\n\n%A Benest, I.D.\n%A Potok, M.H.N.\n%D 1984\n%T Wayfinding: an approach using signposting techniques\n%J Behaviour and Information Technology\n%V 3\n%N 2\n%P 99-107\n%K *\n\n%A Bentley, J.L.\n%A Friedman, J.H.\n%D 1979\n%T Data structures for range searching\n%J Computing Surveys\n%V 11\n%N 4\n%P 397-409\n%O December\n%K *\n\n%A Bentley, J.L.\n%D 1980\n%T Multidimensional divide-and-conquer\n%J Comm ACM\n%V 23\n%N 4\n%P 214-229\n%K *\n\n%A Bentley, J.L.\n%A Sleator, D.D.\n%A Tarjan, R.E.\n%A Wei, V.K.\n%D 1986\n%T A locally adaptive data compression scheme\n%J Comm ACM\n%V 29\n%N 4\n%P 320-330\n%O April\n\n%A Berglund, E.J.\n%A Cheriton, D.R.\n%T Amaze -- A distributed multi-player game program using the Distributed V Kernel\n%K *\n\n%A Bewley, W.L.\n%A Roberts, T.L.\n%A Schroit, D.\n%A Verplank, W.L.\n%D 1983\n%T Human factors testing in the design of Xerox's 8010 `Star' office workstation\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 72-77\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Bezdek, J.C.\n%D 1980\n%T A convergence theorem for the fuzzy ISODATA clustering algorithms\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-2\n%N 1\n%P 1-8\n%O January\n%K *\n\n%A Bibel, W.\n%D 1983\n%T Matings in matrices\n%J Comm ACM\n%V 26\n%N 11\n%P 844-852\n%O November\n%K *\n\n%A Biederman, I. \n%D 1985\n%T Human image understanding: recent research and a theory\n%J Computer Vision, Graphics, and Image Processing\n%V 32\n%N 1\n%P 29-73\n%O October.\n\n%A Bigelow, C.\n%A Day, D.\n%D 1983\n%T Digital typography\n%J Scientific American\n%V 249\n%N 2\n%P 106-119\n%O August\n%K *\n\n%A Bigelow, C.\n%D 1984\n%T Principles of font design for the personal workstation\n%R Research Report\n%I Stanford University\n%K *\n\n%A Bigelow, C.\n%D 1986\n%T Notes on typeface protection\n%K *\n\n%A Birkhoff, G.\n%D 1967\n%T Lattice theory\n%I American Mathematical Society\n%C Providence, RI\n\n%A Birrell, A.D.\n%A Levin, R.\n%A Needham R.M.\n%A Schroeder, M.D.\n%D 1982\n%T Grapevine: an exercise in distributed computing\n%J Comm ACM\n%V 25\n%N 4\n%P 260-274\n%O April\n%K *\n\n%A Birtwistle, G.M.\n%A Dahl, O.J.\n%A Myhrhaug, B.\n%A Nygaard, K.\n%D 1973\n%T Simula Begin\n%I Auerbach\n%C Philadelphia, PA\n\n%A Birtwistle, G.\n%A Cleary, J.G.\n%A Joyce, J.\n%A Liblong, B.\n%A Unger, B.W.\n%A Witten, I.H.\n%A Wyvill, B.L.M.\n%D 1984\n%T A simulation environment\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 290-296\n%O May\n%K KConference\n\n%A Blakeslee, T.R.\n%D 1980\n%T The right brain\n%I MacMillan\n%C London, England\n\n%A Bobrow, D.G.\n%D 1985\n%T If Prolog is the answer, what is the question? or What it takes to support AI programming paradigms\n%J IEEE Trans Software Engineering\n%V SE-11\n%N 11\n%P 1401-1408\n%O November\n%K *\n\n%A Boehm-Davis, D.A.\n%A Fregly, A.M.\n%D 1983\n%T Documentation of concurrent programs\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 256-261\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Bonham, M.\n%A Witten, I.H.\n%D 1984\n%T Towards distributed document preparation with interactive and noninteractive viewing\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 365-372\n%O May\n%K KConference\n\n%A Bonham, M.\n%A Witten, I.H.\n%D 1985\n%T Towards distributed document preparation with interactive and noninteractive viewing\n%J Infor\n%V 23\n%N 4\n%P 365-388\n%O November\n%K KJournal\n\n%A Bonham, M.\n%A Witten, I.H.\n%D 1985\n%T More on `A large font virtual terminal interface: a software prosthesis for the visually impaired'\n%J Comm ACM\n%V 28\n%N 11\n%P 1236-1237\n%O November\n%K KCorrespondence\n\n%A Bonham, M.\n%A Witten, I.H.\n%D 1985\n%T Shape \\(em a unifying concept in document layout\n%J Proc PROTEXT II -- Second International Conference on Text Processing Systems\n%I Boole Press\n%C Dublin, Ireland\n%P 126-132\n%O October\n%K KConference\n\n%A Bonner, S.\n%A Shin, K.\n%D 1982\n%T A comparative study of robot languages\n%J IEEE Computer\n%V 15\n%N 12\n%P 82-96\n\n%A Boose, J.H.\n%D 1986\n%T Rapid acquisition and combination of knowledge from multiple experts in the same domain\n%J Proc International Conference on Future Advances in Computing\n%C Christchurch, New Zealand\n%O February 17-21\n%K *\n\n%A Booth, T.L.\n%D 1984\n%T Computer education\n%J IEEE Computer\n%V 17\n%N 10\n%P 57-68\n%O October\n%K *\n\n%A Borning, A.\n%D 1981\n%T The programming language aspects of ThingLab, a constraint-oriented simulation laboratory\n%J ACM Trans Programming Languages and Systems\n%V 3\n%N 4\n%P 353-387\n%O October\n%K *\n\n%A Bouachache, B.\n%D 1983\n%T Wigner analysis of time-varying signals\n%B Signal processing II: Theories and applications\n%E H.W.Schussler\n%I Elsevier Science Publishers B.V. (North Holland)\n%P 703-706\n%K *\n\n%A Bouachache, B.\n%A Rodriguez, F.\n%D 1984\n%T Recognition of time-varying signals in the time-frequency domain by means of the Wigner distribution\n%J Proc International Circuits and Systems Symposium\n%K *\n\n%A Bouachache, B.\n%A Whitehouse, H.J.\n%D 1985\n%T Seismic applications of the Wigner-Ville distribution\n%J Proc International Circuits and Systems Symposium\n%C San Jose, CA\n%O May 5\n%K *\n\n%A Boulton, P.I.P.\n%A Lee, E.S.\n%D 1983\n%T The performance of Hubnet\n%J Proc International Electrical, Electronics Conference\n%V 2\n%P 450-453\n%C Toronto, ON\n%O September 26-28\n%K *\n\n%A Bower, G.H.\n%A Black, J.B.\n%D 1979\n%T Scripts in memory for text\n%J Cognitive Psychology\n%V 11\n%P 177-220\n%K *\n\n%A Brachman, R.J.\n%D 1983\n%T What IS-A is and isn't: an analysis of taxonomic links in semantic networks\n%J IEEE Computer\n%V 16\n%N 10\n%P 30-36\n%O October\n%K *\n\n%A Brachman, R.J.\n%A Schmolze, J.G.\n%D 1985\n%T An overview of the KL-ONE knowledge representation scheme\n%J Cognitive Science\n%V 9\n%N ii\n%P 171-216\n%K *\n\n%A Bramer, M.A.\\0(Editor)\n%D 1985\n%T Research and development in expert systems\n%I Cambridge University Press\n%C Cambridge, England\n%O (Proc 4th Conference of BCS Group on Expert Systems, December 1984)\n\n%A Bramwell, B.\n%D 1984\n%T Browsing around a manual\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 438-442\n%O May\n%K *\n\n%A Britton, B.K.\n%A Black, J.B.\\0(Editors)\n%D 1985\n%T Understanding expository text: a theoretical and practical handbook for analyzing explanatory text\n%I Erlbaum\n%C Hillsdale, NJ\n\n%A Brown, K.Q.\n%D 1979\n%T Voroni diagrams from convex hulls\n%J Information Processing Letters\n%V 9\n%N 5\n%P 223-228\n%O December\n%K *\n\n%A Brown, P.J.\n%D 1984\n%T Interactive documentation\n%R Internal Report\n%I Computing Laboratory, University of Kent\n%O April\n%K *\n\n%A Brown, J.S.\n%A Burton, R.R.\n%D 1975\n%T Multiple representations of knowledge for tutorial reasoning\n%B Representation of Learning\n%E D.G. Bobrow and A. Collins\n%I Academic Press\n%C New York, NY\n\n%A Brownston, L.\n%A Farrell, R.\n%A Kant, E.\n%A Martin, N.\n%D 1985\n%T Programming expert systems in OPS-5: an introduction to rule-based programming\n%I Addison-Wesley\n%C Reading, MA\n\n%A Brunner, J.\n%D 1975\n%T The shockwave rider\n%I Ballantine\n%C New York, NY\n\n%A Bruynooghs, M.\n%D 1982\n%T Adding redundancy to obtain more reliable and more readable Prolog programs\n%J Proc 1st International Logic Programming Conference\n%C Marseille, France\n%P 129-133\n%O September 14-17\n%K *\n\n%A Bryant, J.\n%D 1979\n%T On the clustering of multidimensional pictorial data\n%J Pattern Recognition\n%V 11\n%P 115-125\n%K *\n\n%A Buchman, C.\n%A Berry, D.M.\n%T An adaptation of the Unix DITROFF for formatting bidirectional text\n%I Computer Science Department, University of California\n%C Los Angeles, CA\n%K *\n\n%A Bundy, A.\n%A Silver, B.\n%A Plummer, D.\n%D 1985\n%T An analytical comparison of some rule-learning programs\n%J Artificial Intelligence\n%V 27\n%P 137-181\n\n%A Bundy, A.\n%D 1983\n%T The computer modelling of mathematical reasoning\n%A Academic Press\n%C London, England\n\n%A Burton, R.R.\n%A Brown, J.S.\n%D 1979\n%T An investigation of computer coaching for informal learning activities\n%J IJMMS\n%V 11\n%N 1\n%P 5-24\n%O January\n\n%A Bush, V.\n%D 1945\n%T As we may think\n%J Atlantic Monthly\n%P 101\n%O July\n\n%A Byrd, R.J.\n%A Smith, S.E.\n%A de\\|Jong, S.P.\n%D 1982\n%T An actor-based programming system\n%J Proc SIGOA Conference on Office Information Systems\n%P 67-78\n%C Philadelphia, PA\n%O June 21-23\n%K *\n\n%A Campbell, F.W.\n%A Robson, J.G.\n%D 1967\n%T Application of fourier analysis to the visibility of gratings\n%J Physiol\n%N 197\n%P 551-566\n%I University of Cambridge\n%K *\n\n%A Cannon, W.B.\n%D 1932\n%T The wisdom of the body\n%I London\n\n%A Carroll, J.B.\n%D 1967\n%T On sampling from a lognormal model of word-frequency distribution\n%B Computational analysis of present-day American English\n%E Kucera, H. and Francis, W.N.\n%I Brown University Press\n%C Providence, RI\n%P 406-424\n%K *\n\n%A Carroll, J.B.\n%D 1966\n%T Word-frequency studies and the lognormal distribution\n%E E.M.Zale\n%B Proc Conference on Language and Language Behavior\n%I Appleton-Century-Crofts\n%C New York, NY\n%P 213-235\n%K *\n\n%A Carroll, J.M.\n%A Thomas, J.C.\n%D 1982\n%T Metaphor and the cognitive representation of computing systems\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-12\n%N 2\n%P 107-116\n%O March/April\n%K *\n\n%A Carter, K.A.\n%D 1984\n%T The Rainbow workstation in brief/A window manager for the Rainbow workstation\n%R Rainbow Group Note\n%I Computer Laboratory, University of Cambridge\n%O May\n%K *\n\n%A Casey, R.G.\n%A Friedman, T.D.\n%A Wong, K.Y.\n%D 1982\n%T Automatic scaling of digital fonts\n%J IBM J Research and Development\n%V 26\n%P 657-666\n\n%A Casey, R.G.\n%A Nagy, G.\n%D 1984\n%T Decision tree design using a probabilistic model\nTJ IEEE Trans Information Theory\n%V IT-30\n%N 1\n%P 93-99\n%O January\n%K *\n\n%A Cater, J.P.\n%D 1983\n%T Electronically speaking: computer speech generation\n%I Howard W. Sams\n%C Indianapolis, IN\n\n%A Catmull, E.\n%D 1981\n%T New frontiers in computer animation\n%J American Cinematographer\n%P 157-163\n%O October\n\n%A Cendrowska, J.\n%A Bramer, M.A.\n%D 1984\n%T A rational reconstruction of the Mycin consultation system\n%J IJMMS\n%V 20\n%P 229-317\n\n%A Chapanis, A.\n%D 1984\n%T Taming and civilizing computers\n%B Computer culture: the scientific, intellectual, and social impact of the computer\n%E Heinz R. Pagels\n%I New York Academy of Sciences\n%C New York, NY\n%P 202-219\n%K *\n\n%A Chazelle, B.\n%D 1983\n%T A decision procedure for optimal polyhedron partitioning\n%J Information Processing Letters\n%V 16\n%P 75-78\n%O February 26\n%K *\n\n%A Cheeseman, P.\n%D 1985\n%T In defense of probability\n%J Proc 10th International Joint Conference on Artificial Intelligence\n%P 100R2-1009\n\n%A Cheriton, D.R.\n%A Zwaenepoel, W.\n%D 1983\n%T The distributed V kernel and its performance for diskless workstations\n%R Report No STAN-CS-83-973\n%I Stanford University, Computer Science Department\n%C Stanford, CA\n%O July\n%K *\n\n%A Christodoulakis, S\n%A Faloutsos, C.\n%D 1984\n%T Design considerations for a message file server\n%J IEEE Trans Software Engineering\n%V SE-10\n%N 2\n%P 201-210\n%O March\n%K *\n\n%A Ciminiere, L.\n%A Valenzano, A.\n%D 1984\n%T iAPX 432 hardware fault handling mechanisms\n%K *\n\n%A Clancey, W.J.\n%D 1979\n%T Tutoring rules for guiding a case method dialogue\n%J IJMMS\n%V 11\n%P 25-49\n%K *\n\n%A Clancey, W.J.\n%D 1983\n%T The epistemology of a rule-based expert system \\(em a framework for explanation\n%J Artificial Intelligence\n%V 20\n%P 215-251\n%K *\n\n%A Clancey, W.J.\n%A Shortliffe, E.H. \\0(Editors)\n%D 1984\n%T Readings in medical artificial intelligence\n%I Addison-Wesley\n%C Reading, MA\n\n%A Clarkson, T.\n%T Eye position sensor\n%R Section 7 of a report\n%I King's College\n%C London, England\n%K *\n\n%A Cleary, J.G.\n%D 1979\n%T Analysis of an algorithm for finding nearest neighbors in Euclidean space\n%J ACM Trans Mathematical Software\n%V 5\n%N 2\n%P 183-192\n%O June\n%K *\n\n%A Cleary, J.G.\n%D 1984\n%T Compact hash tables using bidirectional linear probing\n%J IEEE Trans Computers\n%V C-33\n%N 9\n%P 828-834\n%O September\n\n%A Cleary, J.G.\n%A Darragh, J.J.\n%D 1984\n%T A fast compact representation of trees using hash tables\n%R Research Report 83/162/20\n%I Computer Science Department, University of Calgary\n%O Submitted to \\fIIEEE Trans Computers\\fP\n\n%A Cleary, J.G.\n%A Witten, I.H.\n%D in preparation\n%T Universal data compression\n\n%A Clocksin, W.A.\n%D 1984\n%T Introduction to Prolog\n%B Artificial Intelligence:  tools, techniques, and applications\n%E T.O'Shea and M.Eisenstadt\n%I Harper and Row\n%C New York, NY\n\n%A Codd, E.F.\n%D 1968\n%T Cellular automata\n%I Academic Press\n%C London, England\n\n%A Codd, E.F.\n%D 1978\n%T How about recently?\n%B Databases: Improving usability and responsiveness\n%E B. Shneiderman (Ed.)\n%I Academic Press\n%C New York, NY\n%P 3-28\n\n%A Cohen, E.S.\n%A Smith, E.T.\n%A Iverson, L.A.\n%D 1985\n%T Constraint-based tiled windows\n%R Research Report\n%I Computer Science Department, Carnegie-Mellon University\n\n%A Cohen, J.\n%D 1985\n%T Describing Prolog by its interpretation and compilation\n%J Comm ACM\n%V 28\n%N 12\n%P 1311-1324\n%O December\n%K *\n\n%A Colby, K.M.\n%D 1973\n%T Simulations of belief systems\n%E R.C.Schank and K.M.Colby\n%B Computer models of thought and language\n%I Freeman\n%C San Francisco, CA\n%P 251-286\n\n%A Colmaurer, A.\n%A Colmaurer, C.\n%D 1983\n%T Prolog en 10 figures\n%J TSI\n%V 2\n%N 4\n%O July-August\n%K *\n\n%A Colmerauer, A.\n%D 1985\n%T Prolog in 10 figures\n%J Comm ACM\n%V 28\n%N 12\n%P 1296-1310\n%O December\n%K *\n\n%A Colmaurer, A.\n%T An interesting subset of natural language\n%K *\n\n%A Comer, D.E.\n%A Peterson, L.L.\n%T Conversation-based mail\n%J ACM Transactions on computer systems\n%V 4\n%N 4\n%O November\n%K *\n\n%A Computer\\|Science\\|Department\n%D 1983\n%T CPSC Student Handbook\n%I University of Calgary\n\n%A Coombs, M.\n%A Alty, J.\n%D 1984\n%T Expert systems: an alternative paradigm\n%J IJMMS\n%V 20\n%N 1\n%P 21-43\n%O January\n%K *\n\n%A Corbett, C.\n%D 1983\n%T MC nroff/troff macros reference manual\n%R Report EES-MMS-1983-2\n%I Department of Electrical Engineering Science, University of Essex\n%C Colchester, Essex, UK\n%K *\n\n%A Corbett, C.\n%D 1983\n%T Figure processing within nroff\n%J Presented at EUUG Meeting\n%C Dublin, Ireland\n%O September\n%K *\n\n%A Cormack, G.V.\n%A Horspool, R.N.\n%D 1984\n%T Algorithms for adaptive Huffman codes\n%J Information Processing Letters\n%V 18\n%N 3\n%P 159-166\n%O March\n%K *\n\n%A Cormack, G.V.\n%A Horspool, R.N.\n%D 1985\n%T Data compression using dynamic Markov modelling\n%R Research Report\n%I Computer Science Department, University of Waterloo\n%O April; submitted to Comm ACM\n%K *\n\n%A Costigan, D.M.\n%D 1978\n%T Electronic delivery of documents and graphics\n%I Van Nostrand Reinhold\n%C New York, NY\n\n%A Coulon, D.\n%A Kayser, D.\n%D 1979\n%T Construction of natural language sentence acceptors by a supervised-learning technique\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-1\n%N 1\n%P 94-99\n%O January\n%K *\n\n%A Cove, J.F.\n%A Walsh, B.C.\n%D 1988\n%T A taxonomy of browsing\n%R Working Paper 85/2\n%I Computer Science Department, University of Liverpool\n%O April\n%K *\n\n%A Cox, B.J.\n%D 1986\n%T Object oriented programming\n%I Addison-Wesley\n%C Reading, MA\n\n%A Crochiere, R.E.\n%A Rabiner, L.R.\n%D 1975\n%T Optimum FIR digital filter implementations for decimation, interpolation, and narrow-band filtering\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-23\n%N 5\n%P 444-456\n%O October\n%K *\n\n%A Crochiere, R.E.\n%A Rabiner, L.R.\n%D 1976\n%T Further considerations in the design of decimators and interpolators\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-24\n%N 4\n%P 296-311\n%O August\n%K *\n\n%A Croft, W.B.\n%A Lefkowitz, L.S.\n%D 1984\n%T Task support in an office system\n%J ACM Trans Office Information Systems\n%V 2\n%N 3\n%P 197-212\n%O July\n%K *\n\n%A Croft, W.B.\n%D 1984\n%T The role of context and adaptation in user interfaces\n%J IJMMS\n%V 21\n%N 4\n%P 283-292\n%O October\n\n%A Csuri, C.\n%D 1974\n%T Computer graphics and art\n%J Proc IEEE\n%O April\n\n%A Cuff, R.N.\n%D 1982\n%T Database query using menus and natural language fragments\n%R PhD Thesis\n%I Man-Machine Systems Laboratory, Department of Electrical Engineering Science, University of Essex\n%C Colchester, Essex, UK\n\n%A Cuff, R.N.\n%D 1984\n%T HERCULES: database query using natural language fragments\n%J Proc 3rd British National Conference on Database Systems\n%C Leeds\n%O July\n%K *\n\n%A Cullingford, R.E.\n%D 1978\n%T Script application: computer understanding of newspaper stories\n%R PhD Thesis, Research Report 116\n%I Yale University\n\n%A Cullingford, R.E.\n%A Krueger, M.W.\n%A Selfridge, M.\n%A Bienkowski, M.A.\n%D 1982\n%T Automated explanations as a component of a computer-aided design system\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-12\n%N 2\n%P 168-181\n%O March/April\n%K *\n\n%A Cullingford, R.E.\n%A Pazzani, M.J.\n%D 1984\n%T Word-meaning selection in multiprocess language understanding programs\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-6\n%N 4\n%P 493-509\n%O July\n%K *\n\n%A Curry, G.\n%A Baer, L.\n%A Lipkie, D.\n%A Lee, B.\n%D 1982\n%T Traits: an approach to multiple-inheritance subclassing\n%J ACM Conference on Office Information Systems\n%P 1-9\n%O June\n%K *\n\n%A Damper, R.I.\n%A MacDonald, S.L.\n%D 1984\n%T Template adaptation in speech recognition\n%J Proc Institute of Acoustics\n%V 6\n%N 4\n%P 293-299\n%K *\n\n%A Damper, R.I.\n%A MacDonald, S.L.\n%D 1984\n%T Statistical clustering procedures applied to low-cost speech recognition\n%J J Biomed Engineering\n%V 6\n%P 265-271\n%O October\n%K *\n\n%A Darragh, J.J.\n%A Witten, I.H.\n%A Cleary, J.G.\n%D 1983\n%T Adaptive text compression to enhance a modem\n%R Research Report 83/132/21\n%I Computer Science Department, University of Calgary\n%K KReport\n\n%A Davis, R.\n%D 1979\n%T Interactive transfer of expertise: acquisition of new inference rules\n%J Artificial Intelligence\n%V 12\n%N 2\n%P 121-157\n%K *\n\n%A Davis, R.\n%A Lenat, D.B.\n%D 1982\n%T Knowledge-based systems in artificial intelligence\n%I McGraw Hill\n%C New York, NY\n\n%A Day, J.D.\n%A Zimmermann, H.\n%D 1983\n%T The OSI reference model\n%J Proc IEEE\n%V 71\n%N 12\n%P 1334-1340\n%O December\n\n%A Defude, B.\n%D 1984\n%T Knowledge based systems versus thesaurus: an architecture problem about expert systems design\n%J Proc 3rd Joint BCS and ACM Symposium (King's College, Cambridge)\n%I Cambridge University Press\n%P 267-280\n%O July\n%K *\n\n%A de\\|Beaugrande, R.\n%D 1980\n%T Text, discourse and process: towards a multidisciplinary science of texts\n%I Ablex Publishing Corporation\n%C Norwood, NJ\n\n%A de\\|Jong, G.\n%D 1979\n%T Prediction and substantiation: two processes that comprise understanding\n%J Proc International Joint Conference on Artificial Intelligence\n%C Tokyo, Japan\n%P 217-222\n%O August\n\n%A de\\|Jong, G.\n%D 1981\n%T Generalizations based on explanations\n%J Proc IJCAI 81\n%P 67-69\n%K *\n\n%A de\\|Jong, S.P.\n%D 1980\n%T The system for business automation (SBA): a unified application development system\n%B Information Processing 80\n%E S.H.Lavington\n%P 469-474\n%I North Holland\n%K *\n\n%A de\\|Leon, L.\n%A Harris, W.G.\n%A Evens, M.\n%D 1983\n%T Is there really trouble with Unix?\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 125-129\n%C Boston, MA\n%O December 12-15\n\n%A Dietterich, T.G.\n%A Michalski, R.S.\n%D 1983\n%T A comparative review of selected methods for learning from examples\n%B Machine learning\n%E R.S. Michalski, J.G. Carbonell, and T.M. Mitchell\n%I Tioga\n%P 41-81\n\n%A Denning, P.J.\n%D 1982\n%T Computer-based predictive writing\n%J Comm ACM\n%V 25\n%N 5\n%P 315-316\n%O May\n%K *\n\n%A Denning, P.J.\n%D 1984\n%T Educational ruminations\n%J Comm ACM\n%V 27\n%N 10\n%P 979-983\n%O October\n\n%A Denning, P.J.\n%D 1985\n%T The science of computing: what is Computer Science?\n%J American Scientist\n%V 73\n%O January/February\n%K *\n\n%A Dewdney, A.K.\n%D 1984\n%T Computer recreations\n%J Scientific American\n%V 250\n%N 5\n%P 14-22\n%O May\n\n%A Downs, T.\n%A Cook, A.S.\n%A Rogers, G.\n%D 1984\n%T A partitioning approach to yield estimation for large circuits and systems\n%J IEEE Trans Circuits and Systems\n%V CAS-31\n%N 5\n%P 472-485\n%O May\n%K *\n\n%A Downs, T.\n%D 1985\n%T An approach to the modeling of software testing with some applications\n%J IEEE Trans Software Engineering\n%V SE-11\n%N 4\n%P 375-386\n%O April\n%K *\n\n%A Drummond, M.\n%D 1983\n%T A proposal to study the cost-effectiveness of planning, acting, and sensing\n%R DAI Working paper\n%I Department of Artificial Intelligence, University of Edinburgh\n%K *\n\n%A Dubes, R.\n%A Jain, A.K.\n%D 1979\n%T Validity studies in clustering methodologies\n%J Pattern Recognition\n%V 11\n%P 225-254\n%K *\n\n%A Duda, R.\n%A Gaschnig, J.\n%A Hart, P.\n%D 1979\n%T Model design in the Prospector consultant system for mineral exploration\n%E D. Michie\n%B Expert systems in the microelectronic age\n%I Edinburgh University Press\n%K *\n\n%A Dumais, S.\n%A Landauer, T.\n%D 1982\n%T Psychological investigations of natural terminology for command and query languages\n%B Directions in human/computer interactions\n%E Badre and Shneiderman\n%I Ablex Publishing Corporation\n%C Norwood, NJ\n%P 95-110\n\n%A Dumais, S.\n%A Landauer, T.\n%D 1983\n%T Using examples to describe categories\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 112-115\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Dunham, M.O.\n%A Gray, R.M.\n%D 1985\n%T An algorithm for the design of labeled-transition finite-state vector quantization\n%J IEEE Trans Communications\n%V COM-33\n%N 1\n%P 83-89\n%O January\n%K *\n\n%A Dyer, M.G.\n%D 1983\n%T In-depth understanding\n%I MIT Press\n%C Cambridge, MA\n\n%A Dynkin, E.B.\n%D 1965\n%T Controlled random sequences\n%J Theoretical Probability and its Applications\n%V X\n%N 1\n%K *\n\n%A Eason, K.D.\n%A Damodaran, L\n%D 1979\n%T Design procedures for user involvement and user support\n%J Infotech - Man Computer Communications\n%C London, England\n\n%A Edelsbrunner, H.\n%A Maurer, H.A.\n%D 1985\n%T Finding extreme points in three dimensions and solving the post-office problem in the plane\n%J Information Processing Letters\n%V 21\n%P 39-47\n%O 10 July\n%K *\n\n%A Efron, B.\n%A Thisted, R.\n%D 1976\n%T Estimating the number of unseen species: how many words did Shakespeare know?\n%J Biometrika\n%V 63\n%N 3\n%P 435-447\n%K *\n\n%A Eisenstadt, E.\n%A Hasemar, T.\n%D 1985\n%T An improved user interface for Prolog\n%E B.Shackel\n%B Human-Computer Interaction: Proceedings INTERACT 84\n%I North Holland\n%P 109-113\n%K *\n\n%A Ekeberg, O.\n%D 1986\n%T Robust dictionary lookup using associative methods\n%R Research Report\n%I Computer Vision and Associative Pattern Processing Laboratory, Department of Computing Science, Royal Institute of Technology\n%C Stockholm, Sweden\n%K *\n\n%A Elias, P.\n%D 1955\n%T Predictive coding: Part I and Part II\n%J IRE Trans Information Theory\n%V IT-1\n%N 1\n%P 16-33\n%K *\n\n%A Elias, P.\n%D 1970\n%T Bounds on performance of optimum quantizers\n%J IEEE Trans Information Theory\n%V IT-16\n%N 2\n%P 172-184\n%O March\n%K *\n\n%A Elias, P.\n%D 1975\n%T Universal codeword sets and representations of the integers\n%J IEEE Trans Information Theory\n%V IT-21\n%N 2\n%P 194-203\n%O March\n%K *\n\n%A Elliott, S.J.\n%A Nelson, P.A.\n%D 1985\n%T An algorithm for multichannel LMS adaptive filtering\n%R Research Report\n%I Institute of Sound and Vibration Research, University of Southampton\n%C Southampton, England\n%K *\n\n%A Ellis, C.A.\n%A Nutt, G.J.\n%D 1979\n%T On the equivalence of office models\n%R Research Report SSL-79-8\n%I Xerox PARC\n%O December\n%K *\n\n%A Ellis, C.A.\n%T Formal and informal models of office activity\n%R Research Report\n%I Xerox PARC\n%K *\n\n%A Ellis, C.A.\n%A Bernal, M.\n%D 1982\n%T Officetalk-D: an experimental office information system\n%J Proc ACM Conference \n%P 131-140\n%K *\n\n%A Embley, D.W.\n%A Nagy, G.\n%D 1981\n%T Behavioral aspects of text editors\n%J Computing Surveys\n%V 13\n%N 1\n%P 33-70\n%O March\n%K *\n\n%A Engel F.L.\n%A Andriessen J.J.\n%A Schmitz, H.J.R.\n%D 1983\n%T What, where and whence: means for improving electronic data access\n%J IJMMS\n%V 18\n%P 145-160\n\n%A Englebart, D.C.\n%A English, W.K.\n%D 1968\n%T A research center for augmenting human intellect\n%J Proc Fall Joint Computer Conference\n%V 33\n%P 395-410\n%I AFIPS Press\n%C Arlington, VA\n\n%A Ernvall, J.\n%A Nevalainen, O.\n%D 1984\n%T Estimating the length of minimal spanning trees in compression of files\n%J BIT\n%V 24\n%P 19-32\n%K *\n\n%A Even, S.\n%A Rodeh, M.\n%D 1978\n%T Economical encodings of commas between strings\n%J Comm ACM\n%V 21\n%P 315-317\n%O April\n%K *\n\n%A Even, S.\n%A Pratt, V.\n%A Rodeh, M.\n%D 1981\n%T Linear algorithm for data compression via string matching\n%J J ACM\n%V 28\n%N 1\n%P 16-24\n%O January\n\n%A Everitt, B.\n%D 1974\n%T Cluster analysis\n%I Heineman\n%C London, England\n\n%A Fano, R.M.\n%D 1949\n%T The transmission of information\n%R Technical Report 65\n%I Research Laboratory of Electronics, MIT\n%C Cambridge, MA\n\n%A Feigenbaum, E.A.\n%A McCorduck, P.\n%D 1983\n%T The fifth generation\n%I Addison-Wesley\n%C Reading, MA\n\n%A Ferrans, J.C.\n%D 1982\n%T SEDL \\(em a language for specifying integrity constraints on office forms\n%J SIGOA Newsletter (Proc SIGOA Conference on Office Information Systems)\n%V 3\n%N 3/4\n%P 123-130\n%C Philadelphia, PA\n%O June 21-23\n%K *\n\n%A Fikes, R.\n%A Kehler, T.\n%D 1985\n%T The role of frame-based representation in reasoning\n%J Comm ACM\n%V 28\n%N 9\n%P 904-920\n%O September\n%K *\n\n%A Filipski, A.\n%A Hanko, J.\n%D 1986\n%T Making UNIX secure\n%J Byte\n%P 113-128\n%O April\n\n%A Fillmore, C.J.\n%D 1968\n%T The case for case\n%E E.Bach and R.T.Harms\n%B Universals in linguistic theory\n%P 1-88\n%I Holt, Reinhart and Winston\n%C Chicago, IL\n%K *\n\n%A Finkel, R.A.\n%A Bentley, J.L.\n%D 1974\n%T Quad trees -- a data structure for retrieval on composite keys\n%J Acta Informatica\n%V 4\n%N 1\n%P 1-9\n\n%A Fischer, G.\n%A Lemke, A.\n%A Schwab, T.\n%D 1985\n%T Knowledge-based help systems\n%J Proc Human Factors in Computer Systems\n%C San Francisco, CA\n%P 161-167\n%O April\n%K *\n\n%A Fitter, M.\n%D 1979\n%T Toward more natural interactive systems\n%J IJMMS\n%V 11\n%P 339-350\n\n%A Fogel, L.J.\n%A Owens, A.J.\n%A Walsh, M.J.\n%D 1966\n%T Artificial intelligence through simulated evolution\n%I Wiley\n\n%A Foley, J.D.\n%A Wallace, V.L.\n%A Chan, P.\n%D 1984\n%T The human factors of computer graphics interaction techniques\n%J IEEE Computer Graphics and Applications\n%V 4\n%N 11\n%P 13-48\n%O November\n%K *\n\n%A Foster, J.\n%A Gray, R.M.\n%A Dunham, M.O.\n%D 1985\n%T Finite-state vector quantization for waveform coding\n%J IEEE Trans Information Theory\n%V IT-31\n%O May\n\n%A Freij, G.J.\n%A Cheetham, B.M.G.\n%D 1985\n%T Improved sequential linear prediction by selective time-domain coefficient extraction\n%R Report\n%K *\n\n%A Friedman, J.H.\n%A Baskett, F.\n%A Shustek, L.J.\n%D 1975\n%T An algorithm for finding nearest neighbors\n%J IEEE Trans Computers\n%V C-24\n%P 1000-1006\n%O October\n%K *\n\n%A Friedman, J.H.\n%A Bentley, J.L.\n%A Finkel, R.A.\n%D 1977\n%T An algorithm for finding best matches in logarithmic expected time\n%J ACM Trans Mathematical Software\n%V 3\n%N 3\n%P 209-226\n%O September\n%K *\n\n%A Fukunaga, K.\n%A Narendra, P.M.\n%D 1975\n%T A branch and bound algorithm for computing \\fIk\\fP-nearest neighbors\n%J IEEE Trans Computers\n%V C-24\n%P 750-753\n%O July\n%K *\n\n%A Fulton, M.A.\n%T A social cognition research model for studying human-computer communication\n%R Research Report\n%I Oklahoma State University Business College\n%C Stillwater, OK\n%K *\n\n%A Gaines, B.R.\n%D 1976\n%T On a danger in the assumption of causality\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-6\n%P 56-59\n\n%A Gaines, B.R.\n%D 1981\n%T Autopoiesis: some questions\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 145-154\n\n%A Gaines, B.R.\n%D 1981\n%T The technology of interaction -- dialog programming rules\n%J IJMMS\n%V 14\n%N 1\n%P 133-150\n%O January\n\n%A Gaines, B.R.\n%D 1983\n%T From word processing to image processing in office systems\n%J Proc International Electrical, Electronics Conference\n%V 2\n%P 622-625\n%C Toronto, ON\n%O September 26-28\n%K *\n\n%A Gaines, B.R.\n%D 1984\n%T Fundamentals of decision: probabilistic, possibilistic and other forms of uncertainty in decision analysis\n%J Studies in the Management Sciences\n%V 20\n%P 47-65\n\n%A Gaines, B.R.\n%D 1985\n%T Expert systems and simulation in planning flexible manufacturing systems\n%J Proc Workshop on Coupling Symbolic and Numerical Computing in Expert Systems\n%I Boeing Computer Services AI Center\n%C Bellevue, WA\n%O August 27-29\n\n%A Gaines, B.R.\n%D 1985\n%T The design of expert systems for planning flexible manufacturing\n%R Research Report\n%I Computer Science Department, University of Calgary\n\n%A Gaines, B.R.\n%A Shaw, M.L.G\n%D 1986\n%T Foundations of dialog engineering: the development of human-computer interaction Part II\n%J IJMMS\n%V 24\n%N 2\n%P 101-123\n%O February\n\n%A Gaines, B.R.\n%D 1986\n%T An overview of knowledge acquisition and transfer\n%J Proc AAAI Workshop on Knowledge Acquisition for Knowledge-based Systems\n%C Banff, AL\n%O November\n\n%A Galitz, W.O.\n%D 1980\n%T Human factors in office automation\n%I Life Office Management Association\n%C Atlanta, GA \n\n%A Gardner, M.\n%T In which `monster' curves force redefinition of the word `curve'\n%J Scientific American\n%P 124-133\n%K*\n\n%A Gargantini, I.\n%A Atkinson, H.H.\n%D 1984\n%T Linear quadtrees: a blocking technique for contour filling\n%J Pattern Recognition\n%V 17\n%N 3\n%P 285-293\n%K *\n\n%A Gargantini, I.A.\n%D 1983\n%T Recent results on linear quadtrees and related techniques\n%R Report 111\n%I Computer Science Department, University of Western Ontario\n%C London, ON\n%O December (to appear in \\fIPattern recognition\\fP)\n%K *\n\n%A Garudadri, H.\n%A Beddoes, M.P.\n%A Gilbert, J.H.V.\n%A Benguerel, A.P.\n%T Identification of invariant acoustic cues in stop consonants using the Wigner distribution\n%J \n%K *\n\n%A Garvey, T.D.\n%A Lowrance, J.D.\n%A Fischler, M.A.\n%D 1981\n%T An inference technique for integrating knowledge from disparate sources\n%J Proc 7th International Joint Conference on Artificial Intelligence\n%P 319-325\n%C Vancouver, BC\n%O August\n%K *\n\n%A Gehani, N.H.\n%D 1983\n%T An electronic form system -- an experience in prototyping\n%J Software -- Practice and Experience\n%V 13\n%P 479-486\n%K *\n\n%A Gehani, N.H.\n%D 1983\n%T High level form definition in office information systems\n%J Computer J\n%V 26\n%N 1\n%P 52-59\n%K *\n\n%A Geller, V.J.\n%A Lesk, M.E.\n%D 1981\n%T How users search: a comparison of menu and attribute retrieval systems on a library catalog\n%R Internal Report\n%I Bell Laboratories\n%K *\n\n%A Genesereth, M.R.\n%A Ginsberg, M.L.\n%D 1985\n%T Logic programming\n%J Comm ACM\n%V 28\n%N 9\n%P 933-941\n%O September\n%K *\n\n%A Genesereth, M.R.\n%A Ginsberg, M.L.\n%A Rosenschein, J.S.\n%D 1985\n%T Solving the prisoner's dilemma\n%R Research Report STAN-CS-84-1032\n%I Computer Science Department, Stanford University\n%C Stanford, CA\n%K *\n\n%A Giles, R.\n%D 1976\n%T Lucasiewicz logic and fuzzy set theory\n%J IJMMS\n%V 8\n%P 313-327\n\n%A Ginsberg, M.L.\n%D 1985\n%T Does probability have a place in non-monotonic reasoning?\n%J Proc IJCAI\n%P 107-110\n%K *\n\n%A Georgeff, M.\n%A Lansky, A.L.\n%A Bessiere, P.\n%D 1985\n%T A procedural logic\n%J Proc International Joint Conference on Artificial Intelligence\n%C Los Angeles, CA\n%O August\n%K *\n\n%A Gersham, A.V.\n%D 1982\n%T A framework for conceptual analyzers\n%E W.G. Lenhert and M.H. Ringle\n%B Strategies for natural language processing\n%I Lawrence Erlbaum Associates\n%P 177-202\n\n%A Gersho, A.\n%D 1979\n%T Asymptotically optimal block quantization\n%J IEEE Trans Information Theory\n%V IT-25\n%N 4\n%P 373-380\n%O July\n%K *\n\n%A Gevarter, W.B.\n%D 1983\n%T An overview of computer-based natural language processing\n%R NASA Technical Memorandum 85635\n%C Washington, DC\n\n%A Gevarter, W.B.\n%D 1983\n%T Expert systems: limited but powerful\n%J IEEE Spectrum\n%P 39-45\n%O August\n\n%A Gibbon, D.\n%A Richter, H.\\0(Editors)\n%D 1984\n%T Intonation, Accent and Rhythm\n%I de Gruyter\n%C Berlin\n\n%A Gibbs, R.W.\n%A Tenney, Y.J.\n%D 1980\n%T The concept of scripts in understanding stories\n%J J Psycholinguistic Research\n%V 9\n%N 3\n%P 275-284\n%K *\n\n%A Gibson, B.\n%A Wittig, R.\n%D 1983\n%T The Develnet LAN: architecture and experience\n%J Proc International Electrical, Electronics Conference\n%V 1\n%P 26-29\n%C Toronto, ON\n%O September 26-28\n%K *\n\n%A Girill, T.R.\n%A Luk, C.H.\n%D 1983\n%T DOCUMENT: an interactive, online solution to four documentation problems\n%J Comm ACM\n%V 26\n%N 5\n%P 328-337\n%O May\n\n%A Glinert, E.P.\n%A Tanimoto, S.L.\n%D 1984\n%T Pict: an interactive graphical programming environment\n%J IEEE Computer\n%V 17\n%N 11\n%P 7-25\n%O November\n%K *\n\n%A Glinert, E.P.\n%A Ladner, R.E.\n%D 1984\n%T A large font virtual terminal interface\n%J Comm ACM\n%V 27\n%N 7\n%P 567-572\n%O June\n%K *\n\n%A Godfrey, D.\n%A Chang, E.\\0(Editors)\n%D 1981\n%T The Telidon book\n%I Press Porcepic\n%C Toronto, ON\n\n%A Goldshlager, L.M.\n%D 1980\n%T Short algorithms for space-filling curves\n%J Software -- Practice and Experience\n%V 11\n%P 99-100\n%O September\n%K *\n\n%A Good, D.I.\n%D 1982\n%T The proof of a distributed system in Gypsy\n%R Technical Report 30\n%I Institute for Computing Science, University of Texas at Austin\n%C Austin, TX\n%O September\n%K *\n\n%A Gordon, J.\n%A Shortliffe, E.H.\n%D 1984\n%T The Dempster-Shafer theory of evidence\n%B Rule-based expert systems\n%E B.G.Buchanan and E.H.Shortliffe\n%I Addison-Wesley\n%C Reading, MA\n%P 272-292\n\n%A Gordon, J.\n%A Shortliffe, E.H.\n%D 1985\n%T A method for managing evidential reasoning in a hierarchical hypothesis space\n%J Artificial Intelligence\n%V 26\n%P 323-357\n\n%A Gosling, J.A.\n%D 1981\n%T A redisplay algorithm\n%J SIGOA Newsletter (Proc ACM Symposium on Text manipulation)\n%C Portland, OR\n%V 2\n%N 1/2\n%P 123-129\n%O Spring/Summer\n\n%A Gosling, J.A.\n%A Rosenthal, D.S.H.\n%D 1983\n%T A network window-manager\n%R Report\n%I Information Technology Center, Carnegie-Mellon University\n%C Pittsburgh, PA\n%K *\n\n%A Grampp, F.T.\n%A Morris, R.H.\n%D 1984\n%T UNIX operating system security\n%J Bell System Technical J\n%V 62\n%N 8, part 2\n%P 1649-1672\n%O October\n\n%A Grasser, A.C.\n%D 1981\n%T Prose comprehension beyond the word\n%I Springer-Verlag\n%C New York, NY\n\n%A Gray, R.M.\n%A Kieffer, J.C.\n%A Linde, Y.\n%D 1980\n%T Locally optimal block quantizer design\n%J Information and Control\n%V 45\n%P 178-198\n%K *\n\n%A Gray, R.M.\n%D 1984\n%T Hardware realization of waveform vector quantizers\n%J IEEE Trans\n%V SAC-2\n%N 2\n\n%A Green, M.\n%D 1982\n%T Towards a user interface prototyping system\n%J Proc Graphics Interface 82\n%P 37-45\n%K *\n\n%A Greenberg, S.\n%D 1984\n%T User modeling in interactive computer systems\n%R MSc Thesis\n%I Computer Science Department, University of Calgary\n\n%A Greenberg, S.\n%A Witten, I.H.\n%D 1984\n%T Comparison of menu displays for ordered lists\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 464-469\n%O May\n%K KConference\n\n%A Greenberg, S.\n%A Witten, I.H.\n%D 1985\n%T Adaptive personalized interfaces -- a question of viability\n%J Behaviour and Information Technology\n%V 4\n%N 1\n%P 31-45\n%O January-March\n%K KJournal\n\n%A Greenberg, S.\n%A Witten, I.H.\n%D 1985\n%T Interactive end-user creation of workbench hierarchies within a window system\n%J Proc Canadian Information Processing Society Conference\n%C Montreal, QUE\n%P 408-416\n%O May\n%K KConference\n\n%A Greenberg, S.\n%A Peterson, M.\n%A Witten, I.H.\n%D 1986\n%T Issues and experiences in the design of a window management system\n%J Proc Canadian Information Processing Society Conference\n%C Edmonton, AL\n%P 33-44\n%K KConference\n\n%A Grice, H.P.\n%D 1957\n%T Meaning\n%J Philosophical Review\n%V LXVI\n%N 3\n%P 377-388\n%K *\n\n%A Grice, H.P.\n%D 1969\n%T Utterer's meaning and intentions\n%J Philosophical Review\n%V LXXVIII\n%N 2\n%P 147-177\n%K *\n\n%A Grossner, C.P.\n%A Radhakrishnan, T.\n%A Pospiech, A.\n%D 1983\n%T An integrated workstation for the visually handicapped\n%J IEEE Micro\n%P 8-16\n%O June\n%K *\n\n%A Gullichsen, E.\n%A Chang, E.\n%D 1985\n%T Generative design in architecture using an expert system\n%R Research Report\n%I Computer Science Department, University of Victoria\n%O February\n%K *\n\n%A Hagelbarger, D.W.\n%A Thompson, R.A.\n%D 1983\n%T Experiments in teleterminal design\n%J IEEE Spectrum\n%P 40-45\n%O October\n%K *\n\n%A Halbert, D.C.\n%D 1984\n%T Programming by example\n%R Technical Report\n%I Xerox PARC, (Office Products Division)\n%C Palo Alto, CA\n%O December\n\n%A Hammond, P.\n%A Sergot, M.\n%D 1983\n%T A Prolog shell for logic based expert systems\n%J Proc Expert Systems 83\n%I Churchill College\n%C Cambridge, England\n%P 95-104\n%O December\n%K *\n\n%A Hammond, P.\n%D 1984\n%T Representation of DHSS regulations as a logic program\n%J Proc Expert Systems 83\n%I Churchill College\n%C Cambridge, England\n%P 225-235\n%O December\n%K *\n\n%A Hanson, S.J.\n%A Kraut, R.E.\n%A Farber, J.M.\n%D 1984\n%T Interface design and multivariate analysis of UNIX command use\n%J ACM Trans Office Information Systems\n%V 2\n%N 1\n%O March\n\n%A Harrison, A.F.\n%A Bramson, R.M.\n%T The art of thinking\n%I Berkley Books\n%C New York, NY\n%K *\n\n%A Harth, E.\n%D 1982\n%T Windows on the mind\n%I Harvester Press\n%C Brighton, Sussex\n\n%A Hartigan, J.A.\n%D 1975\n%T Clustering algorithms\n%I Wiley\n\n%A Hartley, J.\n%D 1978\n%T Designing instructional text\n%I Kogan Page\n%C London, England\n\n%A Hartley, J.\n%D 1982\n%T Designing instructional text\n%E D.H. Jonassen\n%B The technology of text\n%I Educational Technology Publications\n%C Englewood Cliffs, NJ\n\n%A Hasling, D.W.\n%A Clancey, W.J.\n%A Rennels, G.\n%D 1984\n%T Strategic explanations for a diagnostic consultation system\n%J IJMMS\n%V 20\n%P 3-19\n%K *\n\n%A Haugeland, J.\n%D 1979\n%T Understanding natural language\n%V LXXVI\n%N 11\n%P 619-632\n%O November\n%K *\n\n%A Hayes, P.\n%T The naive physics manifesto\n%K *\n\n%A Hayes, P.J.\n%A Ball, E.\n%A Reddy, R.\n%D 1983\n%T Breaking the man-machine communication barrier\n%J IEEE Computer\n%P 19-30\n%O March\n%K *\n\n%A Hayes, P.J.\n%D 1984\n%T Executable interface definitions using form-based interface abstractions\n%R Report CMS-CS-84-110\n%I Computer Science Department, Carnegie-Mellon University\n%K *\n\n%A Hayes, P.J.\n%A Szekely, P.A.\n%A Lerner, R.A.\n%D 1985\n%T Design alternatives for user interface management systems based on experience with Cousin\n%J Proc Human Factors in Computer Systems\n%C San Francisco, CA\n%P 169-175\n%O April\n%K *\n\n%A Hayes, P.J.\n%A Lerner, R.A.\n%A Szekely, P.A.\n%T The COUSIN user interface project\n%K *\n\n%A Hayes-Roth, F.\n%D 1985\n%T Rule-based systems\n%J Comm ACM\n%V 28\n%N 9\n%P 921-932\n%O September\n%K *\n\n%A Hays, D.G.\n%D 1964\n%T Dependency theory -- a formalism and some observations\n%J Language\n%V 40\n%P 511-25\n\n%A Heath, F.G.\n%A Foulk, P.W.\n%A Li, D.Y.\n%D 1984\n%T Analysis and restructuring of concurrent systems using Prolog\n%J Proc IEEE Part E\n%V 131\n%N 5\n%P 169-176\n%O September\n%K *\n\n%A Heckbert, P.\n%D 1982\n%T Color image quantization for frame buffer display\n%J Proc SIGGRAPH 82\n%C Boston, MA\n%P 297-307\n%O July\n%K *\n\n%A Held, G.\n%D 1984\n%T Data compression: techniques and applications\n%I Wiley\n%C New York, NY\n\n%A Hendrix, G.G\n%A Sacerdoti, E.D.\n%A Sagalowicz, D.\n%A Slocum, J.\n%D 1978\n%T Developing a natural language interface to complex data\n%J ACM Trans Database Systems\n%V 3\n%N 2\n%O June\n\n%A Hester, J.H.\n%A Hirschberg, D.S.\n%D 1985\n%T Self-organizing linear search\n%J Computing Surveys\n%V 17\n%N 3\n%P 295-311\n%O September\n\n%A Hewitt, C.\n%D 1977\n%T Viewing control structures as patterns of passing messages\n%J Artificial Intelligence\n%V 8\n%P 323-364\n\n%A Hewitt, C.\n%A de\\|Jong, P.S.\n%D 1982\n%T Open systems\n%R AI Memo 691\n%I MIT Artificial Intelligence Laboratory\n%O December\n%K *\n\n%A Hewitt, C.\n%A de\\|Jong, P.S.\n%D 1983\n%T Analyzing the roles of descriptions and actions in open systems\n%R AI Memo 727\n%I MIT Artificial Intelligence Laboratory\n%O April\n%K *\n\n%A Hewitt, C.\n%A de\\|Jong, P.S.\n%D 1983\n%T Message passing semantics as a foundation for reasoning in open systems\n%R Research Report\n%I MIT Artificial Intelligence Laboratory\n%O May\n%K *\n\n%A Hibbard, P.\n%D 1983\n%T User manual for MINT -- the SPICE document preparation system\n%R Technical Report\n%I Computer Science Department, Carnegie-Mellon University\n%C Pittsburgh, PA\n\n%A Hilbert, D.\n%D 1891\n%T Ueber die stetige Abbildung einer Linie auf ein Flachenstuck\n%J Math Annalen\n%V 38\n%P 459-460\n%K *\n\n%A Hill, D.R.\n%A Dohrn, C.\n%A Darragh, J.\n%A Esau, R.\n%A Levinson, D.\n%A Unger, B.\n%A Witten, I.H.\n%D 1984\n%T Using speech output as a medium for human-computer dialogue\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 470-476\n%O May\n%K KConference\n\n%A Hill, D.R.\n%A Witten, I.H.\n%A Neal, R.\n%A Lomow, G.\n%D 1984\n%T Jecl and Hide: practical questions for the Jade user interface\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 373-380\n%O May\n%K KConference\n\n%A Hiltz, S.R.\n%A Turoff, M.\n%D 1985\n%T Structuring computer-mediated communication systems to avoid information overload\n%J CACM\n%V 28\n%N 7\n%P 680-689\n%O July\n\n%A Hintikka, K.J.\n%D 1975\n%T The intentions of intentionality\n%I D. Reidel\n%C Dordrecht, Holland\n\n%A Ho, C.S.\n%A Hong, Y.C.\n%A Kuo, T.S.\n%D 1986\n%T A society model for office information systems\n%J ACM Trans Office Information Systems\n%V 4\n%N 2\n%P 104-137\n%O April\n%K *\n\n%A Horspool, R.N.\n%A Cormack, G.V.\n%D 1984\n%T A general-purpose data compression technique with practical computer applications\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 138-141\n%O May\n%K *\n\n%A Horspool, R.N.\n%A Cormack, G.V.\n%D 1985\n%T Comments on `Data compression using static Huffman code-decode tables'\n%O submitted to CACM, November 1985\n%K *\n\n%A Horspool, R.N.\n%A Cormack, G.V.\n%D 1986\n%T Dynamic Markov modelling -- a prediction technique\n%J Proc International Conference on the System Sciences\n%C Honolulu, HA\n%O January\n%K *\n\n%A Hosticka, B.J.\n%D 1985\n%T Performance comparison of analog and digital circuits\n%J Proc IEEE\n%V 73\n%N 1\n%P 25-29\n%O January\n\n%A Hou, H.S.\n%A Andrews, H.C.\n%D 1978\n%T Cubic splines for image interpolation and digital filtering\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-26\n%N 6\n%P 508-517\n%O December\n%K *\n\n%A Hovy, E.H.\n%T Integrating text planning and production in generation\n%J Proc IJCAI\n%P 848-851\n%K *\n\n%A Hunter, R.\n%A Robinson, A.H.\n%D 1980\n%T International digital facsimile coding standards\n%J Proc IEEE\n%V 68\n%N 7\n%P 854-867\n%O July\n%K *\n\n%A Hutchings, E.\n%D 1983\n%T The autonomous Viking\n%J Science\n%V 219\n%P 803-808\n%O February 18\n\n%A Jackendoff, R.\n%D 1985\n%T Semantics and cognition\n%I MIT Press\n%C Cambridge, MA\n\n%A Jakobsson, M.\n%D 1985\n%T Compression of character strings by an adaptive dictionary\n%J BIT\n%V 25\n%N 4\n%P 593-603\n%K *\n\n%A Jantsch, E.\n%D 1981\n%T Autopoiesis: a central aspect of dissipative self-organization\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 65-88\n\n%A Jarvis, J.F.\n%D 1984\n%T Robotics\n%J IEEE Computer\n%P 283-292\n%O October\n%K *\n\n%A Jarvis, R.A.\n%D 1983\n%T Growing polyhedral obstacles for planning collision-free paths\n%J Australian Computer J\n%V 15\n%N 3\n%P 103-111\n%O August\n%K *\n\n%A Jaynes, J.\n%D 1976\n%T The origin of consciousness in the breakdown of the bicameral mind\n%I Houghton Mifflin\n%C Boston, MA\n\n%A Jefferson, D.R.\n%D 1985\n%T Virtual time\n%J ACM Trans Programming Languages and Systems\n%V 7\n%N 3\n%P 404-425\n%O July\n%K *\n\n%A Johnson, W.L.\n%A Soloway, E.\n%A Cutler, B.\n%A Draper, S.W.\n%D 1983\n%T Bug catalogue: I\n%R Research Report\n%I Cognition and Programming Project, Computer Science Department, Yale University\n%O October\n%K *\n\n%A Jones, H.\n%D 1976\n%T Stanley Morison displayed\n%I Frederick Muller\n%C London, England\n\n%A Jones, L.P.\n%A Iyengar, S.S.\n%D 1984\n%T Space and time efficient virtual quadtrees\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-6\n%N 2\n%P 244-247\n%O March\n%K *\n\n%A Kaczmarek, T.\n%A Mark, W.\n%A Sondheimer, N.\n%D 1983\n%T The Consul/CUE interface: an integrated interactive environment\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 98-102\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Kaehler, T.\n%A Patterson, D.\n%D 1986\n%T A taste of Smalltalk\n%I W.W. Norton\n%C New York, NY\n\n%A Kang, A.N.C.\n%A Lee, R.C.T.\n%A Chang, C-L.\n%A Chang, S-K.\n%D 1977\n%T Storage reduction through minimal spanning trees and spanning forests\n%J IEEE Trans Computers\n%V C-26\n%N 5\n%P 425-434\n%O May\n%K *\n\n%A Kawaguchi, E.\n%A Endo, T.\n%D 1980\n%T On a method of binary-picture representation and its application to data compression\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-2\n%N 1\n%P 27-35\n%O January\n%K *\n\n%A Kawaguchi, E.\n%A Endo, T.\n%A Matsunaga, J.I.\n%D 1983\n%T Depth-first picture expression viewed from digital picture processing\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-5\n%N 4\n%P 373-384\n%O July\n%K *\n\n%A Kelley, J.F.\n%A Chapanis, A.\n%D 1982\n%T How professional persons keep their calendars: implications for computerization\n%J J Occupational Psychology\n%V 55\n%P 241-256\n%K *\n\n%A Kennedy, H.C.\\0(Editor)\n%D 1980\n%T Selected works of Guiseppe Peano\n%I Allen and Unwin\n%C Winchester, MA\n\n%A Keye, M.\n%D 1984\n%T Technique for real time pitch period estimation\n%R Submitted to \\fIElectronics Letters\\fP\n%K *\n\n%A Kidd, A.L.\n%A Cooper, M.B.\n%D 1985\n%T Man-machine interface issues in the construction and use of an expert system\n%J IJMMS\n%V 22\n%P 91-102\n%K *\n\n%A Kigger, J.\n%D 1984\n%T The depth/breadth trade-off in the design of menu-driven user interfaces\n%J IJMMS\n%V 20\n\n%A Klir, G.J.\n%A Parviz, B.\n%D 1985\n%T General reconstruction characteristics of probabilistic and possibilistic systems\n%R Research Report\n%K *\n\n%A Knuth, D.E.\n%A Plass, M.F.\n%D 1981\n%T Breaking paragraphs into lines\n%J Software -- Practice and Experience\n%V 11\n%P 1119-1184\n\n%A Knuth, D.E.\n%D 1983\n%T The WEB system of structured documentation\n%R Report STAN-CS-83-980\n%I Computer Science Department, University of Stanford\n%C Stanford, CA\n\n%A Knuth, D.E.\n%D 1984\n%T Literate programming\n%J Computer J\n%V 27\n%N 2\n%P 97-111\n%K *\n\n%A Kolata, G.\n%D 1986\n%T Shakespeare's new poem: an ode to statistics\n%J Science\n%V 231\n%P 335-336\n%O 24 January\n\n%A Kolodner, J.\n%D 1983\n%T Towards an understanding of the role of experience from novice to expert\n%J IJMMS\n%V 19\n%K *\n\n%A Kolodner, J.L.\n%D 1983\n%T Reconstructive memory: a computer model\n%J Cognitive Science\n%V 7\n%P 281-328\n%K *\n\n%A Kolodner, J.L.\n%D 1983\n%T Maintaining organization in a dynamic long-term memory\n%J Cognitive Science\n%V 7\n%P 243-280\n%K *\n\n%A Konopasek, M.\n%A Jayaraman, S.\n%D 1984\n%T Expert systems for personal computers: the TK!Solver approach\n%J Byte\n%P 137-156\n%O May\n%K *\n\n%A Koontz, H.\n%A O'Donnell, C.\n%D 1972\n%T Principles of management: an analysis of managerial functions\n%I McGraw Hill\n\n%A Korein, J.\n%A Badler, N.\n%D 1983\n%T Temporal anti-aliasing in computer generated animation\n%J Computer Graphics\n%V 17\n%N 3\n%P 377-388\n%O July\n%K *\n\n%A Kornfeld, W.A.\n%A Hewitt, C.E.\n%D 1981\n%T The scientific community metaphor\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-11\n%N 1\n%P 24-33\n%O January\n%K *\n\n%A Kowalski, R.\n%D 1983\n%T Logic for expert systems\n%J Proc Expert Systems 83\n%I Churchill College\n%C Cambridge, England\n%P 80-93\n%O December\n%K *\n\n%A Kraut, R.E.\n%A Hanson, S.J.\n%A Farber, J.M.\n%D 1983\n%T Command use and interface design\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 120-123\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Klir, G.J.\n%D 1985\n%T Architecture of systems problem solving\n%I Plenum Press\n%C New York, NY\n\n%A Kunin, J.S.\n%D 1982\n%T Analysis and specification of office procedures\n%R PhD Thesis\n%I Department of Electrical Engineering and Computer Science, MIT\n%O February\n\n%A Lamb, M.\n%A Buckley, V.\n%D 1984\n%T New techniques for gesture-based dialogue\n%J Proc 1st IFIP Conference on Human-Computer Interaction\n%C London, England\n%O 4-7 September\n%K *\n\n%A Langdon, G.G\n%D 1981\n%T Tutorial on arithmetic coding\n%R Research Report RJ3128\n%I IBM Research Laboratory\n%C San Jose, CA\n%K *\n\n%A Langdon, G.G\n%D 1984\n%T An introduction to arithmetic coding\n%J IBM J Research and Development\n%V 28\n%N 2\n%P 135-149\n%O March\n%K *\n\n%A Langdon, G.G\n%D 1983\n%T A note on the Ziv-Lempel model for compressing individual sequences\n%J IEEE Trans Information Theory\n%V IT-30\n%P 284-287\n%O March\n%K *\n\n%A Langdon, G.G.\n%A Rissanen, J.J.\n%D 1983\n%T A doubly-adaptive file compression algorithm\n%J IEEE Trans Communications\n%V COM-31\n%N 11\n%P 1253-1255\n%O November\n%K *\n\n%A Langdon, G.G.\n%A Rissanen, J.J.\n%D 1982\n%T A simple general binary source code\n%J IEEE Trans Information Theory\n%V IT-28\n%P 800-803\n%O September\n\n%A Langley, P.\n%D 1983\n%T Learning search strategies through discrimination\n%J IJMMS\n%V 18\n%P 513-541\n%K *\n\n%A Lansky, A.L.\n%D 1985\n%T Behavioral planning for multi-agent domains\n%R NSF Proposal\n%I SRI International\n%K *\n\n%A Latremouille, S.\n%A Lee, E.\n%D 1981\n%T The design of videotex tree indexes: the use of descriptors and the enhancement of single index pages\n%J Telidon Behavioural Research\n%V 2\n%I Department of Communications\n%O May\n\n%A Lauer, H.C.\n%A Needham, R.M.\n%D 1977\n%T On the duality of operating system structures\n%J Operating Systems: Theory and Practice\n%K *\n\n%A Lazowska, E.D.\n%A Levy, H.M.\n%A Almes, G.T.\n%A Fischer, M.J.\n%A Fowler, R.J.\n%A Vestal, S.C.\n%D 1981\n%T The architecture of the Eden system\n%J Proc Eighth Symposium on Operating System Principles\n%P 148-159\n%C Pacific Grove, CA\n%O December\n%K *\n\n%A Lebowitz, M.\n%D 1980\n%T Generalization and memory in an integrated understanding system\n%R PhD Thesis\n%I Yale University\n%C New Haven, CT\n\n%A Lebowitz, M.\n%D 1981\n%T The nature of generalization in understanding\n%J Proc IJCAI 81\n%P 348-353\n%K *\n\n%A Lebowitz, M.\n%D 1983\n%T Generalization from natural language text\n%J Cognitive Science\n%V 7\n%P 1-40\n%K *\n\n%A Lee, A.\n%A Lochovsky, F.H.\n%D 1983\n%T Enhancing the usability of an office information system through direct manipulation\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 130-134\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Lee, D.T.\n%D 1982\n%T On \\fIk\\fP-nearest neighbor Voroni diagrams in the plane\n%J IEEE Trans Computers\n%V C-31\n%N 6\n%P 478-487\n%O June\n%K *\n\n%A Lee, D.T.\n%A Preparata, F.P.\n%D 1984\n%T Computational geometry -- a survey\n%J IEEE Trans Computers\n%V C-33\n%N 12\n%P 1072-1101\n%O December\n\n%A Lefebvre, V.A.\n%D 1977\n%T The structure of awareness\n%I Sage Publications\n%C Beverly Hills, CA\n%O (english translation by A.Rapoport)\n\n%A Lehar, A.F.\n%A Stevens, R.J.\n%D 1984\n%T High-speed manipulation of the color chromaticity of digital images\n%J IEEE Computer Graphics and Applications\n%P 34-39\n%O February\n%K *\n\n%A Lehnert, W.G.\n%D 1977\n%T A conceptual theory of question answering\n%J Proc International Joint Conference on Artificial Intelligence\n%I MIT\n%C Cambridge, MA\n%P 158-164\n%O August\n\n%A Lehnert, W.G.\n%D 1978\n%T The process of question answering\n%I Lawrence Erlbaum Associates\n%C Hillsdale, NJ\n%K *\n\n%A Lehnert, W.G.\n%A Dyer, M.G.\n%A Johnson, P.N.\n%A Yang, C.J.\n%A Harley, S.\n%D 1983\n%T BORIS: an experiment in in-depth understanding of narratives\n%J Artificial Intelligence\n%V 20\n%P 15-62\n%K *\n\n%A Lemer, L.\n%D 1974\n%T A.R.T.H.U.R. The life and opinions of a digital computer\n%I Harvester Press\n%C Sussex, England\n\n%A Lempel, A.\n%A Ziv, J.\n%T Compression of two-dimensional data\n%K *\n\n%A Lenat, D.\n%D 1983\n%T The role of heuristics in learning by discovery: three case studies\n%B Machine learning\n%E R.S. Michalski, J.G. Carbonell, and T.M. Mitchell\n%I Tioga\n%P 243-306\n\n%A Lenat, D.B.\n%A Sutherland, W.R.\n%A Gibbons, J.\n%D 1982\n%T Heuristic search for new microcircuit structures: an application of artificial intelligence\n%J AI Magazine\n%P 17-33\n%O Summer\n%K *\n\n%A Lenat, D.B.\n%D 1983\n%T EURISKO: a program that learns new heuristics and domain concepts\n%J Artificial Intelligence\n%V 21\n%P 61-98\n%K *\n\n%A Lenat, D.B.\n%A Brown, J.S.\n%D 1984\n%T Why AM and EURISKO appear to work\n%J Artificial Intelligence\n%V 23\n%P 269-294\n\n%A Lenat, D.B.\n%A Prakesh, M.\n%A Shepherd, M.\n%D 1986\n%T CYC: using common sense knowledge to overcome brittleness and knowledge acquisition bottlenecks\n%J The AI Magazine\n%P 65-85\n%O Winter\n%K *\n\n%A Lewis, J.\n%D 1963\n%T Typography: basic principles.  Influences and trends since the 19th century\n%I Van Nostrand Reinhold\n%C New York, NY\n\n%A Lewis, J.W.\n%D 1983\n%T An effective graphics user interface for rules\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 139-143\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Lewis, J.M.\n%T Analysing the action of UNIX-users\n%D 1986\n%O March\n%I University of Edinburgh, Department of Artificial Intelligence\n%K *\n\n%A Li, D.Y.\n%A Heath, F.G.\n%D 1983\n%T ILEX: an intelligent relational database system\n%J Proc ACM Conference on Personal and Small Computers\n%C San Diego, CA\n%P 245-252\n%O December\n%K *\n\n%A Liang, F.M.\n%D 1983\n%T Word hy-phen-a-tion by com-put-er\n%R PhD Thesis\n%I Computer Science Department, Stanford University\n%C Stanford, CA\n%K *\n\n%A Lieberman, H.\n%D 1978\n%T How to color in a coloring book\n%J Proc SIGGRAPH 78\n%P 111-116\n%K *\n\n%A Lieberman, H.\n%D 1984\n%T Seeing what your programs are doing\n%J IJMMS\n%V 21\n%N 4\n%P 311-331\n%O October\n\n%A Linde, Y.\n%A Buzo, A.\n%A Gray, R.M.\n%D 1980\n%T An algorithm for vector quantizer design\n%J IEEE Trans Communications\n%V COM-28\n%N 1\n%P 84-95\n%O January\n%K *\n\n%A Linington, P.F.\n%D 1983\n%T Fundamentals of the layer service definitions and protocol specifications\n%J Proc IEEE\n%V 71\n%N 12\n%P 1341-1345\n%O December\n\n%A Ljolje, A.\n%A Fallside, F.\n%D 1986\n%T Synthesis of natural sounding pitch contours in isolated utterances using hidden Markov models\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-34\n%N 5\n%P 1074-1079\n%O October\n%K *\n\n%A Lloyd, J.W.\n%D 1984\n%T Foundations of logic programming\n%I Springer-Verlag\n%C Berlin\n\n%A Lowrance, R.\n%A Wagner, R.A.\n%D 1975\n%T An extension of the string-to-string correction problem\n%J J ACM\n%V 22\n%N 2\n%P 177-183\n%O April\n%K *\n\n%A Lozano-Perez, T.\n%A Wesley, M.A.\n%D 1979\n%T An algorithm for planning collision-free paths among polyhedral obstacles\n%J Comm ACM\n%V 22\n%N 10\n%P 560-570\n%O October\n%K *\n\n%A Lozano-Perez, T.\n%D 1981\n%T Automatic planning of manipulator transfer movements\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-11\n%N 10\n%P 681-698\n%O October\n\n%A Lozano-Perez, T.\n%D 1983\n%T Robot programming\n%J Proc IEEE\n%V 71\n%N 7\n%P 821-841\n%O July\n\n%A Lu, M.I.\n%A Chen, C.F.\n%T Modified Huffman code\n%R Research Report\n%I Departmental of Electrical Engineering, Tatung Institute of Technology\n%C Taipei, Taiwan\n%K *\n\n%A Lynch, T.J.\n%D 1985\n%T Data compression -- techniques and applications\n%I Lifetime Learning Publications\n%C Belmont, CA\n\n%A MacMillan, S.A.\n%D 1984\n%T User models to personalize an intelligent agent\n%R PhD Thesis\n%I Stanford University\n\n%A MacQueen, J.B.\n%D 1967\n%T Some methods for classification and analysis of multivariate observations\n%J Proc 5th Berkeley Symposium on Mathematical Statistics and Probability\n%V 1\n%P 281-297\n\n%A Maguire, M.\n%D 1982\n%T An evaluation of published recommendations on the design of man-computer dialogues\n%J IJMMS\n%V 16\n%N 3\n%P 237-261\n%O April\n\n%A Malcolm, M.\n%A Dyment, D.\n%D 1983\n%T Experience designing the Waterloo Port user interface\n%J Proc ACM Conference on Personal and Small Computers\n%C San Diego, CA\n%P 168-175\n%O December\n%K *\n\n%A Mannos, J.L.\n%A Sakrison, D.J.\n%D 1974\n%T The effects of a visual fidelity criterion on the encoding of images\n%J IEEE Trans Information Theory\n%V IT-20\n%N 4\n%O July\n%K *\n\n%A Mantei, M.\n%D 1982\n%T Disorientation behavior in person-computer interactions\n%R PhD Thesis\n%I University of Southern California\n%C Los Angeles, CA\n\n%A Maragos, P.A.\n%A Schafer, R.W.\n%A Mersereau, R.M.\n%D 1984\n%T Two-dimensional linear prediction and its application to adaptive predictive coding of images\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-32\n%N 6\n%P 1213-1229\n%O December\n%K *\n\n%A Marchetti, C.\n%D 1980\n%T Society as a learning system: discovery, invention, and innovation cycles revisited\n%J Technological Forecasting and Social Change\n%V 18\n%P 267-282\n%K *\n\n%A Martin, T.\n%D 1980\n%T Information retrieval\n%B Human interaction with computers\n%E Smith and Green\n%I Academic Press\n%C London, England\n%P 161-175\n\n%A Maslow, A.H.\n%D 1954\n%T Motivation and personality\n%I Harper and Row\n%C New York, NY\n\n%A Maslow, A.H.\n%D 1968\n%T Toward a psychology of being\n%I Van Nostrand Reinhold\n%C New York, NY\n%O second edition\n\n%A Masrani, R.\n%A Keenan, T.P.\n%D 1984\n%T Security and privacy in cellular telephone systems\n%J Proc AFIPS Conference on Computer Security\n%C Toronto, ON\n%O September\n%K *\n\n%A Masrani, R.\n%A Witten, I.H.\n%D 1984\n%T Natural language processing in object-oriented Prolog\n%R Unpublished note\n%O September\n\n%A Mathews, M.V.\n%D 1969\n%T The technology of computer music\n%I MIT Press\n\n%A Maturana, H.R.\n%D 1975\n%T The organization of the living: a theory of the living organization\n%J IJMMS\n%V 7\n%P 313-332\n\n%A Maturana, H.R.\n%A Varela, F.J.\n%D 1980\n%T Autopoiesis and cognition\n%I D. Reidel\n%C Dordrecht, Holland\n\n%A Mazer, M.S.\n%A Lochovsky, F.H.\n%D 1984\n%T Logical routing specification in office information systems\n%J ACM Trans Office Information Systems\n%V 2\n%N 4\n%P 303-330\n%O October\n\n%A McCarthy, J.\n%D 1980\n%T Circumscription -- a form of non-monotonic reasoning\n%J Artificial Intelligence\n%V 13\n%P 27-39\n%K *\n\n%A McCracken, D.L.\n%A Akscyn, R.M.\n%D 1984\n%T Experience with the ZOG human-computer interface system\n%J IJMMS\n%V 21\n%N 4\n%P 293-310\n%O October\n\n%A McCulloch, W.S.\n%D 1954\n%T Through the den of the metaphysician\n%J British J Philosophy of Science\n%V 5\n%P 18-31\n\n%A McDermott, J.\n%A Steele, B.\n%D 1981\n%T Extending a knowledge-based system to deal with ad hoc constraints\n%J Proc 7th International Joint Conference on Artificial Intelligence\n%P 824-828\n\n%A McDermott, J.\n%T Artificial intelligence meets natural stupidity\n%B Mind Design\n%E J. Haugeland\n%I MIT Press\n%C Cambridge, MA\n%P 143-160\n%K *\n\n%A McDermott, J.\n%D 1982\n%T A temporal logic for reasoning about processes and plans\n%J Cognitive Science\n%V 6\n%P 101-155\n%K *\n\n%A McDonald, D.\n%D 1977\n%T Language generation: the linguistics component\n%J Proc International Joint Conference on Artificial Intelligence\n%P 142\n%K *\n\n%A McDonald, D.D.\n%A Pustejovsky, J.D.\n%D 1985\n%T Description-directed natural language generation\n%J Proc IJCAI\n%P 799-805\n%K *\n\n%A McKeown, K.R.\n%A Wish, M.\n%A Matthews, K.\n%T Tailoring explanations for the user\n%J Proc IJCAI\n%P 794-798\n%K *\n\n%A McLean, R.S.\n%D 1983\n%T Ontario Ministry of Education specifies its microcomputer\n%J Proc 4th Canadian Symposium on Instructional Technology\n%C Winnipeg, MN\n%O October 19-21\n%K *\n\n%A Meehan, J.R.\n%D 1977\n%T TALESPIN, an interactive program that writes stories\n%J Proc 5th International Joint Conference on Artificial Intelligence\n%P 91-98\n\n%A Mervis, C.B.\n%A Rosch, E.\n%D 1981\n%T Categorization of natural objects\n%J Annual Review of Psychology\n%V 32\n%P 89-115\n\n%A Michaelsen, R.H.\n%A Michie, D.\n%A Boulanger, A.\n%D 1985\n%T The technology of expert systems\n%J Byte\n%P 303-312\n%O April\n%K *\n\n%A Miller, P.L.\n%D 1983\n%T ATTENDING: critiquing a physician's management plan\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-5\n%N 5\n%P 449-461\n%O September\n%K *\n\n%A Mitchell, T.M.\n%D 1982\n%T Generalization as search\n%J Artificial Intelligence\n%V 18\n%P 203-226\n%K *\n\n%A Mitchell, T.M.\n%D 1983\n%T Learning and problem solving\n%J Proc IJCAI 83\n%P 1139-1151\n%C Karlsruhe, W.Germany\n%O August\n%K *\n\n%A Moffat, A.\n%D 1986\n%T Predictive text compression based on the future rather than the past\n%R Research Report\n%I Computer Science Department, University of Canterbury\n%C Christchurch, New Zealand\n%K *\n\n%A Moher, T.G.\n%D 1985\n%T Estimating the distribution of software complexity \\fIwithin\\fP a program\n%J Proc Human Factors in Computer Systems\n%C San Francisco, CA\n%P 61-64\n%O April\n%K *\n\n%A Mooney, R.\n%A de\\|Jong, G.\n%T Learning schemata for natural language processing\n%J Proc IJCAI\n%P 681-687\n%K *\n\n%A Morison, S.\n%D 1951\n%T First principles of typography\n%I Cambridge University Press\n%C Cambridge, England\n\n%A Morrin, T.H.\n%D 1974\n%T A black-white representation of a gray-scale picture\n%J IEEE Trans Computers\n%V C-23\n%P 184-186\n%O February\n%K *\n\n%A Morris, R.\n%A Cherry, L.L.\n%D 1975\n%T Computer detection of typographical errors\n%J IEEE Trans Professional Communications\n%V PC-18\n%N 1\n%P 54-56\n%O March\n%K *\n\n%A Morris, R.\n%A Thompson, K.\n%D 1979\n%T Password security: a case history\n%J Comm ACM\n%V 22\n%N 11\n%P 594-597\n%O November\n%K *\n\n%A Moses, J.\n%D 1971\n%T Symbolic integration: the stormy decade\n%J Comm ACM\n%V 14\n%N 8\n%P 548-560\n\n%A Mullen, J.\n%D 1984\n%T Unlimited vocabulary speech synthesis with low data rates\n%J Electronics and Power\n%P 850-852\n%O November/December\n%K *\n\n%A Mycielski, J.\n%D 1985\n%T Can mathematics explain natural intelligence?\n%R Research Report UC-32\n%I Los Alamos National Laboratory\n%C Los Alamos, NM\n%O July\n%K *\n\n%A Mycroft, A.\n%A O'Keefe, R.A.\n%D 1984\n%T A polymorphic type system for Prolog\n%J Artificial Intelligence\n%V 23\n%P 295-307\n%K *\n\n%A Myers, B.A\n%D 1986\n%T Visual programming, programming by example, and program visualization: a taxonomy\n%J Proc ACM CHI 86 Human Factors in Computing Systems\n%P 59-66\n%C Boston, MA\n%O April 13-17\n%K *\n\n%A Nagy, G.\n%A Wagle, S.\n%D 1979\n%T Geographic data processing\n%J Computing Surveys\n%V 11\n%N 2\n%P 139-181\n%O June\n%K *\n\n%A Nagy, G.\n%A Paton, K.\n%D 1982\n%T Intelligent facsimile\n%P Proc Harvard Computer Graphics Week\n%I Graduate School of Design, Harvard University\n%K *\n\n%A Nagy, G.\n%D 1983\n%T Candide's practical principles of experimental pattern recognition\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-5\n%N 2\n%P 199-200\n%O March\n%K *\n\n%A Nagy, G.\n%D 1983\n%T Optical scanning devices\n%J IEEE Computer\n%P 13-24\n%O May\n%K *\n\n%A Nagy, G.\n%A Seth, S.\n%T Hierarchical image representation with application to optically scanned documents\n%R Discussion paper\n%K *\n\n%A Nagy, G.\n%D 1984\n%T Advances in information extraction techniques\n%J Remote Sensing of Environment\n%V 15\n%P 167-175\n%K *\n\n%A Naiman, A.\n%D 1984\n%T Some new ingredients for the cookbook approach to anti-aliased text\n%J Proc Graphics Interface 84\n%I National Computer Graphics Association of Canada\n%P 99-108\n%O May\n\n%A Nakatani, L.H.\n%A Rohrlich, J.A.\n%D 1983\n%T Soft machines: A philosophy of user-computer interface design\n%J Proceedings Human Factors in Computer Systems\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Nasanen, R.\n%D 1984\n%T Visibility of halftone dot textures\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-14\n%N 6\n%P 920-924\n%O November/December\n%K *\n\n%A Nau, D.S.\n%D 1983\n%T Expert computer systems\n%J IEEE Computer\n%V 16\n%N 2\n%P 63-85\n%O February\n\n%A Neal, R.M.\n%A Lomow, G.A.\n%A Peterson, M.W.\n%A Unger, B.W.\n%A Witten, I.H.\n%D 1984\n%T Inter-process communication in a distributed programming environment\n%J Proc Canadian Information Processing Society Conference\n%C Calgary, AL\n%P 361-364\n%O May\n%K KConference\n\n%A Nelson, G.A.\n%A Pfeifer, L.L.\n%A Wood, R.C.\n%D 1972\n%T High-speed octave band digital filtering\n%J IEEE Trans Audio and Electroacoustics\n%V AU-20\n%P 58-65\n%O March\n%K *\n\n%A Niblett, B.\\0(Editor)\n%D 1980\n%T Computer science and law\n%I Cambridge University Press\n%C Cambridge, England\n\n%A Nicol, R.C.\n%A Fenn, B.A.\n%A Turkington, R.D.\n%D 1980\n%T Transmission techniques for picture viewdata\n%J Proc International Broadcasting Convention\n%K *\n\n%A Nicholson, R.T.\n%D 1985\n%T Usage patterns in an integrated voice and data communications system\n%J ACM Trans Office Information Systems\n%V 3\n%N 3\n%P 307-314\n%O July\n\n%A Nierstrasz, O.M.\n%D 1985\n%T An object-oriented system\n%E D.Tsichritzis\n%B Office automation\n%I Springer-Verlag\n%C Berlin\n%P 167-189\n\n%A Nilsson, N.J.\n%D 1986\n%T Probabilistic logic\n%J Artificial Intelligence\n%V 28\n%P 71-87\n\n%A Nilsson, N.J.\n%D 1980\n%T Principles of artificial intelligence\n%I Tioga\n%C Palo Alto, CA\n\n%A Nilsson, N.J.\n%D 1980\n%T The interplay between experimental and theoretical methods in artificial intelligence\n%R Technical Note 229\n%I SRI International\n%O September\n%K *\n\n%A Nilsson, N.J.\n%D 1981\n%T Artificial intelligence: engineering, science, or slogan?\n%R Technical Note 248\n%I SRI International\n%O July\n%K *\n\n%A Nix, R.\n%D 1983\n%T Editing by example\n%R PhD Dissertation\n%I Computer Science Department, Yale University\n%C New Haven, CT\n\n%A Nix, R.\n%D 1984\n%T Editing by example\n%J Proc 11th ACM Symposium on Principles of Programming Languages\n%C Salt Lake City, UT\n%P 186-195\n%O January\n\n%A Noakes, P.D.\n%A Aish, R.\n%D 1984\n%T A new peripheral for three-dimensional computer input\n%J IEEE Micro\n%V 4\n%N 5\n%P 26-35\n%O October\n\n%A Nooteboom, S.G.\n%D 1983\n%T The temporal organization of speech and the process of spoken-word recognition\n%J IPO Annual Progress Report\n%V 18\n%P 32-36\n%K *\n\n%A Norman, D.A.\n%D 1981\n%T The trouble about Unix\n%J Datamation\n%V 27\n%N 12\n%P 139-150\n\n%A Norman, D.A.\n%D 1984\n%T Stages and levels in human-machine interaction\n%J IJMMS\n%V 21\n%N 4\n%P 365-375\n%O October\n\n%A Norman, D.A.\n%A Draper, S.W.\\0(Editors)\n%D 1986\n%T User centered system design \\(em new perspectives on human-computer interaction\n%I Lawrence Erlbaum Associates\n%C Hillsdale, NJ\n\n%A Norman, K.L.\n%A Weldon, L.J.\n%A Shneiderman, B.\n%D 1985\n%T Cognitive representations of windows and multiple screen layouts of computer interfaces\n%R Research Report CAR-TR-123, CS-TR-1498\n%I Computer Science Department, University of Maryland\n%O May\n\n%A Null, A.\n%D 1971\n%T Space-filling curves or how to waste time with a plotter\n%J Software -- Practice and Experience\n%V 1\n%P 403-410\n%K *\n\n%A Oren, T.I.\n%A Brzozowski, J.A.\n%A Gilmore, P.C.\n%D 1982\n%T Crisis in Canadian academic Computer Science: facts and recommendations\n%R Report prepared by the Executive Committee of Canadian Computer Science Departments Chairmen\n%O January\n\n%A O'Shea, T.\n%A Self, J.\n%D 1983\n%T Learning and teaching with computers: artificial intelligence in education\n%I Prentice-Hall\n%C Englewood Cliffs, NJ\n\n%A O'Shea, T.\n%A Eisenstadt, M.\\0(Editors)\n%D 1984\n%T Artificial intelligence: tools, techniques, and applications\n%I Harper and Row\n%C New York, NY\n\n%A Ogawa, Y.\n%A Shima, K.\n%A Sugawara, T.\n%A Takagi, S.\n%D 1984\n%T Knowledge representation and inference environment: KRINE -- an approach to integration of frame, Prolog and graphics\n%J Proc International Conference on Fifth Generation Computer Systems\n%I ICOT\n%P 643-651\n%K *\n\n%A Pake, G.E.\n%D 1985\n%T Research at Xerox PARC: a founder's assessment\n%J IEEE Spectrum\n%V 22\n%N 10\n%P 54-61\n%O October\n\n%A Paliwal, K.K.\n%A Espeland, O.\n%D 1983\n%T Some considerations about the shape of the window filter in an adaptive gradient lattice algorithm\n%R Report\n%I Division of Telecommunications, University of Trondheim\n%C Trondheim-NTH, Norway\n%K *\n\n%A Papamichalis, P.E.\n%D 1985\n%T Markov-Huffman coding of LPC parameters\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%C ASSP-33\n%N 2\n%P 451-453\n%O April\n\n%A Park, O.C.\n%A Tennyson, R.D.\n%D 1983\n%T Computer-based instructional systems for adaptive education: a review\n%J Contemporary Education Review\n%V 2\n%N 2\n%P 121-135\n%O Fall\n%K *\n\n%A Parker-Rhodes, A.F.\n%D 1978\n%T Inferential semantics\n%I Harvester Press\n%C Brighton, Sussex\n\n%A Patil, R.S.\n%A Szolovits, P.\n%A Schwartz, W.B.\n%D 1981\n%T Causal understanding of patient illness in medical diagnosis\n%J Proc 7th International Joint Conference on Artificial Intelligence\n%P 893-899\n%K *\n\n%A Patil, R.S.\n%A Szolovits, P.\n%A Schwartz, W.B.\n%T Information acquisition in diagnosis\n%J Proc International Joint Conference on Artificial Intelligence\n%P 345-348\n%K *\n\n%A Patten, T.\n%D 1986\n%T Interpreting systemic grammar as a computational representation: a problem solving approach to text generation\n%R PhD Thesis\n%I University of Edinburgh\n\n%A Paulus, E.\n%D 1980\n%T The concept of the NN-error risk with respect to an arbitrary separating surface and its applications to clustering\n%J Proc IEEE Conference\n%K *\n\n%A Pavlidis, T.\n%D 1981\n%T Contour filling in raster graphics\n%J ACM Computer Graphics\n%V 15\n%N 3\n%P 29-36\n%O August\n%K *\n\n%A Pawlak, Z.\n%D 1982\n%T Rough sets\n%J Int J Computer and Information Systems\n%V 11\n%N 5\n%P 341-356\n%K *\n\n%A Pawlak, Z.\n%D 1985\n%T Rough sets and fuzzy sets\n%J Fuzzy Sets and Systems\n%P 99-103\n%K *\n\n%A Paxton, A.L\n%A Turner, E.J.\n%D 1984\n%T The application of human factors to the needs of the novice computer user\n%J IJMMS\n%V 20\n%N 2\n%P 137-156\n%O February\n\n%A Peano, G.\n%D 1890\n%T Sur une courbe, qui remplit toute une aire plane\n%J Math Annalen\n%V 36\n%P 157-160\n%K *\n\n%A Pearl, J.\n%D 1985\n%T Fusion, propagation, and structuring in Bayesian networks\n%R Technical Report CSD-850022 R-42, Revision I\n%I Cognitive Systems Laboratory, Computer Science Department, UCLA\n%O June\n\n%A Pearl, J.\n%D 1986\n%T Fusion, propagation, and structuring in belief networks\n%J Artificial Intelligence\n%V 29\n%N 3\n%P 241-288\n%O September\n\n%A Peng, X.T.\n%A Tu, X.C.\n%A Wang, P.Z.\n%D 1986\n%T Studies on parametric fuzzy controllers\n%R Research Report\n%K *\n\n%A Pereiro, L.M.\n%A Nagr, R.\n%D 1984\n%T Delta-Prolog: a distributed logic programming language\n%R Submitted to Int Conference on 5th Generation Systems\n%C Tokyo, Japan\n%O November \n%K *\n\n%A Perlman, G.\n%D 1981\n%T Two papers in cognitive engineering: The design of an interface to a programming system, and MENUNIX: a menu-based interface to Unix (user manual)\n%R Research Report 8105\n%I Center for Human Information Processing, University of California\n%C San Diego, CA\n%O November\n%K *\n\n%A Perlman, G.\n%D 1984\n%T Natural artificial languages: low-level processes\n%J IJMMS\n%V 20\n%N 4\n%P 373-419\n%O April\n\n%A Perry, T.S.\n%A Wallich, P.\n%D 1985\n%T Inside the PARC: the `information architects'\n%J IEEE Spectrum\n%V 22\n%N 10\n%P 62-75\n%O October\n\n%A Peters, A.M.\n%D 1983\n%T The units of language acquisition\n%I Cambridge University Press\n%C Cambridge, England\n\n%A Phillips, J.\n%D 1983\n%T Self-describing programming environments\n%R PhD Thesis\n%I Computer Science Department, Stanford University\n%C Stanford, CA\n\n%A Pierce, J.R.\n%D 1962\n%T Symbols, signals and noise\n%I Hutchinson\n%C London, England\n\n%A Pike, R.\n%D 1983\n%T Graphics in overlapping bitmap layers\n%J ACM Trans Graphics\n%V 2\n%N 2\n%P 135-160\n%O April\n%K *\n\n%A Poggio, A.\n%A Garcia Luna Aceves, J.J.\n%A Craighill, E.J.\n%A Moran, D.\n%A Aguilar, L.\n%A Worthington, D.\n%A Hight, J.\n%D 1985\n%T CCWS: a computer-based, multimedia information system\n%J IEEE Computer\n%V 18\n%N 10\n%P 92-103\n%O October\n\n%A Poritz, A.B.\n%D 1982\n%T Linear predictive hidden Markov models and the speech signal\n%J Proc \n%P 1291-1294\n%K *\n\n%A Post, E.\n%D 1983\n%T Real programmers don't use Pascal\n%J Datamation\n%P 263-265\n%O July\n%K *\n\n%A Postel, J.B.\n%D 1980\n%T Internetwork protocol approaches\n%J IEEE Trans Communications\n%V COM-28\n%N 4\n%P 604-611\n%O April\n%K *\n\n%A Potmesil, M.\n%A Chakravarty, I.\n%D 1983\n%T Modeling motion blur in computer-generated images\n%J ACM Computer Graphics\n%V 17\n%N 3\n%P 389-399\n%O July\n%K *\n\n%A Poulton, A.S.\n%D 1983\n%T Microcomputer speech synthesis and recognition\n%I Sigma Technical Press\n%C Wilmslow, Cheshire, UK\n\n%A Preucil, M.\n%A Sebela, Z.\n%D 1982\n%T Computer-assisted simulation of a coal-mine winding system\n%J Proc 4th Formator Symposium on Mathematical Methods for the Analysis of Large-scale Systems\n%C Prague\n%P 391-404\n%O May 18-21\n%K *\n\n%A Prusinkiewicz, P.\n%A Christopher, M.\n%D 1984\n%T Hologram-like transmission of pictures\n%R Technical Report CS-84-17\n%I Computer Science Department, University of Regina\n%O November\n%K *\n\n%A Purvy, R.\n%A Farrell, J.\n%A Klose, P.\n%D 1983\n%T The design of Star's records processing: data processing for the noncomputer professional\n%J ACM Trans Office Information Systems\n%V 1\n%N 1\n%P 3-24\n%O January\n%K *\n\n%A Quinlan, J.R.\n%D 1983\n%T Inferno: a cautious approach to uncertain inference\n%J Computer J\n%V 26\n%N 3\n%P 255-269\n\n%A Qureshi, S.U.H.\n%D 1985\n%T Adaptive equalization\n%J Proc IEEE\n%V 73\n%N 9\n%P 1349-1387\n%O September\n\n%A Rabiner, L.R.\n%A Crochiere, R.E.\n%D 1975\n%T A novel implementation for narrow-band FIR digital filters\n%J IEEE Trans Acoustics, Speech and Signal Processing\n%V ASSP-23\n%N 5\n%P 457-464\n%O October\n%K *\n\n%A Radhakrishnan, T.\n%A Grossner, C.P.\n%D 1985\n%T Cuenet \\(em a distributed computing facility\n%J IEEE Micro\n%P 42-52\n%O February\n%K *\n\n%A Raeder, G.\n%D 1985\n%T A survey of current graphical programming techniques\n%J IEEE Computer\n%V 18\n%N 8\n%P 11-25\n\n%A Rashid, R.F.\n%D 1980\n%T An interprocess communication facility for Unix\n%R Technical Report\n%I Computer Science Department, Carnegie-Mellon University\n%O February\n\n%A Rashid, R.F.\n%A Robertson, G.G.\n%D 1981\n%T Accent: a communication oriented network operating system kernel\n%J Proc Eighth Symposium on Operating System Principles\n%P 64-75\n%C Pacific Grove, CA\n%O December\n\n%A Rasmussen, J.\n%D 1983\n%T Skills, rules, and knowledge; signals, signs, and symbols, and other distinctions in human performance models\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-13\n%N 3\n%P 257-266\n%O May/June\n%K *\n\n%A Rassbach, M.E.\n%D 1980\n%T CLASSY: an adaptive clustering algorithm\n%J Proc IEEE Conference\n%P 442-444\n%K *\n\n%A Rawlings, C.\n%A Fox, J.\n%D 1983\n%T The UNIT package -- a critical appraisal of a frame-based knowledge representation system\n%J Proc Expert Systems 83\n%I Churchill College\n%C Cambridge, England\n%P 15-29\n%O December\n%K *\n\n%A Redell, D.D.\n%A White, J.E.\n%D 1983\n%T Interconnecting electronic mail systems\n%J IEEE Computer\n%V 16\n%N 9\n%P 55-63\n%O September\n%K *\n\n%A Reeds, J.A.\n%A Weinberger, P.J.\n%D 1984\n%T File security and the UNIX system \\fIcrypt\\fP command\n%J Bell System Technical J\n%V 63\n%N 8, part 2\n%P 1673-1684\n%O October\n\n%A Reichardt, J.\n%D 1971\n%T The computer in art\n%I Studio Vista\n%C London, England\n\n%A Reiter, R.\n%D 1980\n%T A logic for default reasoning\n%J Artificial Intelligence\n%V 13\n%P 81-132\n%K *\n\n%A Reynolds, J.K.\n%A Postel, J.B.\n%A Katz, A.R.\n%A Finn, G.C.\n%A DeSchon, A.L.\n%D 1985\n%T The DARPA experimental multimedia mail system\n%J IEEE Computer\n%V 18\n%N 10\n%P 82-89\n%O October\n\n%A Rich, C.\n%D 1982\n%T Knowledge representation languages and predicate calculus: how to have your cake and eat it too\n%J Proc National Conference on Artificial Intelligence\n%P 193-196\n\n%A Rich, E.\n%D 1984\n%T The gradual expansion of artificial intelligence\n%J IEEE Computer\n%V 17\n%N 5\n%P 4-12\n%O May\n\n%A Riesbeck, C.K.\n%D 1975\n%T Conceptual analysis\n%B Conceptual information processing\n%E R.C.Schank\n%I North Holland\n%C Amsterdam\n\n%A Riesbeck, C.K.\n%D 1981\n%T Failure-driven reminding for incremental learning\n%J Proc IJCAI 81\n%P 115-120\n%K *\n\n%A Riesbeck, C.K.\n%D 1982\n%T Realistic language comprehension\n%E W.G. Lenhert and M.H. Ringle\n%B Strategies for natural language processing\n%I Lawrence Erlbaum Associates\n%P 37-54\n\n%A Riesbeck, C.K.\n%D 1984\n%T Knowledge reorganization and reasoning style\n%J IJMMS\n%V 20\n%P 45-61\n%K *\n\n%A Rissanen, J.\n%A Langdon, G.G.\n%T Arithmetic coding\n%J IBM J Research and Development\n%D 1979\n%V 23\n%N 2\n%P 149-162\n%O March\n%K *\n\n%A Rissanen, J.\n%D 1984\n%T Complexity of strings in the class of Markov sources\n%R Research Report\n%I IBM Research Laboratory\n%C San Jose, CA\n%K *\n\n%A Rissanen, J.\n%D 1986\n%T Stochastic complexity and sufficient statistics\n%R Research Report\n\n%A Ritchie, D.M.\n%D 1981\n%T On the security of UNIX\n%R Programmers Manual for UNIX System III Volume II: Supplementary Documents\n%I Western Electric Corporation\n\n%A Ritchie, G.D.\n%A Hanna, F.K.\n%D 1984\n%T AM: a case study in AI methodology\n%J Artificial Intelligence\n%V 23\n%P 249-268\n%K *\n\n%A Roberts, M.G.\n%D 1982\n%T Local order estimating Markovian analysis for noiseless source coding and authorship identification\n%R PhD Thesis\n%I Stanford University\n\n%A Rogers, H.\n%D 1943\n%T Paragraphs on printing\n%I William E. Rudges\n%C New York, NY\n%O re-published by Dover Publications, New York, 1979\n\n%A Rosenthal, D.S.H.\n%D 1982\n%T Managing graphical resources\n%J Computer Graphics\n%V 16\n%N 4\n%P 38-45\n%O December\n%K *\n\n%A Ross, P.\n%A Jones, J.\n%A Millington, M.\n%D 1985\n%T User modelling in command-driven computer systems\n%R DAI Research Paper No 264\n%I Department of Artificial Intelligence, University of Edinburgh\n%K *\n\n%A Rouse, S.H.\n%A Rouse, W.B.\n%D 1980\n%T Computer-based manuals for procedural information\n%J IEEE Trans Systems, Man and Cybernetics\n%V SMC-10\n%N 8\n%P 506-510\n%O August\n\n%A Rowe, N.C.\n%D 1984\n%T Modelling degrees of item interest for a general database query system\n%J IJMMS\n%V 20\n%N 5\n%P 421-443\n%O May\n%K *\n\n%A Runciman, C.\n%A Thimbleby, H.\n%D 1986\n%T Equal opportunity interactive systems\n%R Report\n%I Computer Science Department, University of York\n%C York \n%K *\n\n%A Rychener, M.D.\n%D 1979\n%T A semantic network of production rules in a system for describing computer structures\n%J Proc 6th Joint Conference on Artificial Intelligence\n%P 738-743\n\n%A Ryman, R.\n%A Singh, B.\n%D 1982\n%T The Benesh notation computerized editor\n%J Proc Dance in Canada Conference\n%O June\n\n%A Sagan, H.\n%D 1986\n%T Approximating polygons for Lebesgue's and Schoenberg's space filling curves\n%J American Mathematical Monthly\n%P 361-368\n%O May\n%K *\n\n%A Sammut, C.\n%A Banerji, R.\n%D 1983\n%T Hierarchical memories: an aid to concept learning\n%J Proc International Machine Learning Workshop\n%P 74-80\n%I Allerton House\n%C Monticello, IL\n%O June 22-24\n%K *\n\n%A Sammut, C.\n%A Banerji, R.\n%D 1986\n%T Learning concepts by asking questions\n%B Machine learning Volume 2\n%E R.S. Michalski, J.G. Carbonell, and T.M. Mitchell\n%I Morgan Kaufmann Inc\n%C Los Altos, CA\n%P 167-191\n%K *\n\n%A Sandewall, E.\n%T A functional approach to non-monotonic logic\n%J Proc IJCAI\n%P 100-106\n%K *\n\n%A Sakata, S.\n%A Ueda, T.\n%D 1985\n%T A distributed interoffice mail system\n%J IEEE Computer\n%V 18\n%N 10\n%P 106-116\n%O October\n\n%A Samet, H.\n%D 1983\n%T A quadtree medial axis transform\n%J Comm ACM\n%V 26\n%N 9\n%P 680-693\n%O September\n\n%A Samet, H.\n%D 1984\n%T The quadtree and related hierarchical data structures\n%J Computing Surveys\n%V 16\n%N 4\n%P 187-260\n%O June\n\n%A Santisteban, A.\n%D 1983\n%T The perceptual color space of digital image display terminals\n%J IBM J Research and Development\n%V 27\n%N 2\n%P 127-132\n%O March\n%K *\n\n%A Sawaragi, Y.\n%A Yoshikawa\n%D 1970\n%T Discrete-time markovian decision processes with incomplete state observation\n%J The Annals of Mathematical Statistics\n%V 41\n%N 1\n%P 78-86\n%K *\n\n%A Schank, R.C.\\0(Editor)\n%D 1975\n%T Conceptual information processing\n%I North Holland\n\n%A Schank, R.C.\n%A Abelson, R.\n%D 1977\n%T Scripts, plans, goals and understanding\n%I Lawrence Erlbaum Associates\n\n%A Schank, R.C.\n%D 1980\n%T Language and memory\n%J Cognitive Science\n%V 4\n%P 243-284\n%K *\n\n%A Schank, R.C.\n%A Slade, S.\n%T Advisory systems\n%K *\n\n%A Scharf, T.F.\n%D 1984\n%T Sounding out speech synthesis\n%J Electronics and Power\n%P 847-849\n%O November/December\n%K *\n\n%A Schroeder, M.E.\n%D 1969\n%T Images from computers\n%J IEEE Spectrum\n%O March\n%K *\n\n%A Schulert, A.J.\n%A Rogers, G.T.\n%A Hamilton, J.A.\n%D 1985\n%T ADM \\(em a dialog manager\n%J Proc ACM CHI 85 Human Factors in Computing Systems\n%P 177-183\n%O April\n%K *\n\n%A Searle, J.R.\n%D 1980\n%T Minds, brains, and programs\n%J Behavioral and Brain Sciences\n%V 3\n%P 417-457\n%K *\n\n%A Searle, J.R.\n%D 1983\n%T Intentionality\n%I Cambridge University Press\n%C Cambridge, England\n\n%A Seely\\|Brown, J.\n%A Burton, R.R.\n%A Bell, A.G.\n%D 1975\n%T SOPHIE \\(em a step toward creating a reactive learning environment\n%J IJMMS\n%V 7\n%N 5\n%P 675-696\n%O September\n\n%A Segre, A.M.\n%A Sherwood, B.A.\n%A Dickerson, W.B.\n%D 1983\n%T An expert system for the production of phoneme strings from unmarked english text using machine induced rules\n%J Proc Association for Computational Linguistics\n%C Pisa, Italy\n%O September\n%K *\n\n%A Selim, S.Z.\n%A Ismail, M.A.\n%D 1984\n%T \\fIK\\fP-means-type algorithms: a generalized convergence theorem and characterization of local optimality\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-6\n%N 1\n%P 81-87\n%O January\n%K *\n\n%A Sergot, M.\n%T Prospects for representing the law as logic programs\n%B In Clark and Tarnlund's book\n%K *\n\n%A Seybold\n%D 1985\n%T Apple Laserwriter\n%J Seybold Report on Publishing Systems\n%V 14\n%N 9\n%O January 28\n%K *\n\n%A Shafer, G.\n%D 1976\n%T A mathematical theory of evidence\n%I Princeton University Press\n%C Princeton, NJ\n\n%A Shamos, M.I.\n%A Hoey, D.\n%D 1975\n%T Closest-point problems\n%J Proc 16th IEEE Symposium on Foundations of Computer Science\n%P 151-162\n%O October\n\n%A Shamos, M.I.\n%D 1977\n%T Computational geometry\n%I Springer-Verlag\n%C New York, NY\n%A Shannon, C.E.\n%D 1948\n%T A mathematical theory of communication\n%J Bell System Technical J\n%V 27\n%P 398-403\n%O July\n\n%A Shannon, C.E.\n%D 1951\n%T Presentation of a maze-solving machine\n%B Trans 8th Conference Josiah Macy Foundation\n%E H.von Foerster\n%C New York, NY\n%P 173-192\n\n%A Shannon, C.E.\n%D 1951\n%T Prediction and entropy of printed English\n%J Bell System Technical J\n%P 50-64\n%O January\n%K *\n\n%A Shapiro, E.\n%D 1983\n%T A subset of concurrent Prolog and its interpreter\n%R ICOT Technical Report TR-003\n%O January\n%K *\n\n%A Shapiro, E.\n%D 1983\n%T Systems programming in concurrent Prolog\n%R ICOT Technical Report TR-034\n%O November\n%K *\n\n%A Shapiro, E.\n%A Takeuchi, A.\n%D 1983\n%T Object oriented programming in concurrent Prolog\n%J New Generation Computing\n%V 1\n%P 25-48\n%K *\n\n%A Shaw, M.L.G.\n%A Gaines, B.R.\n%D 1983\n%T Does the human component in the network have a protocol?\n%J Proc International Electrical, Electronics Conference\n%V 2\n%P 546-549\n%C Toronto, ON\n%O September 26-28\n%K *\n\n%A Shaw, M.L.G\n%A Gaines, B.R.\n%D 1985\n%T Knowledge engineering tools for expert systems\n%B Computer models for decision making\n%E G.Mitra\n%I North Holland\n%C Amsterdam\n%K *\n\n%A Shneiderman, B.\n%D 1984\n%T Response time and display rate in human performance with computers\n%J Computing Surveys\n%V 16\n%N 3\n%P 265-285\n%O September\n\n%A Shneiderman, B.\n%A Norman, K.\n%A Rogers, J.\n%A Arifin, R.\n%A Weldon, L.\n%D 1985\n%T A multi-screen programmer work station based on the IBM PC\n%R Research Report\n%I Computer Science Department, University of Maryland\n%O April\n\n%A Shoch, J.F.\n%A Hupp, J.A.\n%D 1982\n%T The `worm' programs \\(em early experience with a distributed computation\n%J Comm ACM\n%V 25\n%N 3\n%P 172-180\n%O March\n%K *\n\n%A Shoemake, K.\n%T Animating rotation with quaternion curves\n%D 1985\n%J ACM\n%V 19\n%N 3\n%O July\n%K *\n\n%A Shortliffe, E.H.\n%A Buchanan, B.G.\n%D 1975\n%T A model of inexact reasoning in medicine\n%J Mathematical Biosciences\n%V 23\n%P 351-379\n\n%A Shortliffe, E.H.\n%D 1976\n%T Computer-based medical consultations: MYCIN\n%I Elsevier Science\n%C New York, NY\n%K *\n\n%A Shortliffe, E.H.\n%D 1980\n%T Consultation systems for physicians: the role of artificial intelligence techniques\n%J Proc Canadian Society for Computational Studies of Intelligence\n%I University of Victoria\n%C Victoria, BC\n%K *\n\n%A Shrager, J.C.\n%T Invoking a beginner's aid process by recognizing DCL goals\n%D 1981\n%R MSc Thesis\n%I University of Pennsylvania\n\n%A Shrager, J.C.\n%A Finin, T.\n%D 1982\n%T An expert system that volunteers advice\n%J Proc National Conference on Artificial Intelligence\n%P 339-340\n%K *\n%K *\n\n%A Shu, C.S.\n%D 1985\n%T FORMAL: A forms-oriented visual-directed application development system\n%J IEEE Computer\n%V 18\n%N 8\n%P 38-49\n\n%A Sierpinski, W.\n%D 1912\n%T Sur une nouvelle courbe qui remplit toute une aire plaine\n%J Bull Acad Sci Cracovie\n%V Serie A\n%P 462-478\n%K *\n\n%A Simons, G.L.\n%D 1980\n%T Robots in industry\n%I National Computing Centre\n%C Manchester, England\n\n%A Simpson, R.J.\n%A Terrell, T.J.\n%D 1984\n%T Digital filtering using the NEC PD7720 signal processor\n%J Microprocessing and Microprogramming\n%V 14\n%P 67-78\n%K *\n\n%A Sleeman, D.\n%D 1982\n%T Assessing aspects of competence in basic algebra\n%B Intelligent Tutoring Systems\n%E D. Sleeman and J.S. Brown\n%I Academic Press\n%C London, England\n%P 185-200\n\n%A Sloman, A.\n%A Croucher, M.\n%D 1981\n%T Why robots will have emotions\n%J Proc 7th International Joint Conference on Artificial Intelligence\n%V 1\n%P 197-202\n%C Vancouver, BC\n%K *\n\n%A Smith, K.\n%D 1985\n%T Watch out hackers, public encryption chips are coming\n%J Electronics Week\n%P 30-31\n%O May 20\n%K *\n\n%A Smith, R.\n%D 1979\n%T Tint fill\n%J Proc ACM Conference\n%P 276-284\n%K *\n\n%A Solomon, H.\n%D 1977\n%T Data dependent clustering techniques\n%B Classification and clustering\n%E J. Van Ryzin\n%I Academic Press\n%C New York, NY\n%P 155-173\n\n%A Southall, R.\n%D 1984\n%T First principles of typographic design for document production\n%J TUGBOAT (TEX Users Group Newsletter)\n%V 5\n%N 2\n%P 79-90\n%K *\n\n%A Sowa, J.F.\n%D 1983\n%T Generating language from conceptual graphs\n%B Computational Linguistics\n%E N.Cercone\n%P 29-43\n%I Pergamon\n%C Oxford, England\n%K *\n\n%A Sparck\\|Jones, K.\n%D 1984\n%T User models and expert systems\n%R Technical Report\n%I Computer Laboratory, University of Cambridge\n%C Cambridge, England\n%K *\n\n%A Spector, A.Z.\n%D 1982\n%T Performing remote operations efficiently on a local computer network\n%J Comm ACM\n%V 25\n%N 4\n%P 246-260\n%O April\n%K *\n\n%A Spencer, H.\n%D 1969\n%T The visible word\n%I Lund Humphries\n%C London, England\n\n%A Stankovic, J.A.\n%D 1982\n%T Software communication mechanisms: procedure call versus messages\n%J IEEE Computer\n%P 19-25\n%O April\n%K *\n\n%A Stankovic, J.A.\n%D 1984\n%T A perspective on distributed computer systems\n%J IEEE Trans Computers\n%V C-33\n%N 12\n%P 1102-1115\n%O December\n%K *\n\n%A Staunstrup, J.\n%D 1982\n%T Message passing communication versus procedure call communication\n%J Software -- Practice and Experience\n%V 12\n%P 223-234\n%K *\n\n%A Stefik, M.\n%D 1979\n%T An examination of a frame-structured representation system\n%J Proc 6th International Conference on Artificial Intelligence\n%P 265-270\n%K *\n\n%A Stefik, M.\n%A Conway, L.\n%D 1982\n%T Towards the principled engineering of knowledge\n%J AI Magazine\n%P 4-16\n%O Summer\n%K *\n\n%A Stefik, M.\n%A Bobrow, D.G.\n%A Mittal, S.\n%A Conway, L.\n%D 1983\n%T Knowledge programming in LOOPS: report on an experimental course\n%J AI Magazine\n%P 3-13\n%O Fall\n%K *\n\n%A Stefik, M.J.\n%A Bobrow, D.G.\n%A Kahn, K.M.\n%D 1986\n%T Integrating access-oriented programming into a multiparadigm environment\n%J IEEE Software\n%P 10-18\n%O January\n%K *\n\n%A Stefik, M.J.\n%A Bobrow, D.G.\n%D 1986\n%T Object-oriented programming: themes and variations\n%J AI Magazine\n%V 6\n%N 4\n%P 40-62\n%O Winter\n\n%A Stevens, M.E.\n%A Little, J.L.\n%D 1967\n%T Automatic typographic-quality typesetting techniques: a state-of-the-art review\n%I National Bureau of Standards\n\n%A Stevens, R.J.\n%A Lehar, A.F.\n%A Preston, F.H.\n%D 1983\n%T Manipulation and presentation of multi-dimensional image data using the Peano scan\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%P 520-\n%O September\n\n%A Stoffel, J.G.\n%A Moreland, J.F.\n%D 1981\n%T A survey of electronic techniques for pictorial image reproduction\n%J IEEE Trans Communications\n%V COM-17\n%N 12\n%P 1898-1925\n%O December\n%K *\n\n%A Stroustrup, B.\n%D 1984\n%T The C++ programming language\n%R Computing Science Technical Report 108\n%I Bell Laboratories\n%C Murray Hill, NJ\n%O January\n%K *\n\n%A Stroustrup, B.\n%D 1984\n%T Data abstraction in C\n%R Computing Science Technical Report 109\n%I Bell Laboratories\n%C Murray Hill, NJ\n%O January\n%K *\n\n%A Suchman, L.A.\n%D 1982\n%T Toward a sociology of human-machine interaction: pragmatics of instruction-following\n%R Working Paper\n%I Xerox PARC, (Intelligent Systems Laboratory)\n%C Palo Alto, CA\n\n%A Suchman, L.A.\n%D 1982\n%T Human-machine interaction and the idea of a self-explanatory machine\n%J Paper presented at the Annual Meeting of the American Anthropological Society\n%C Washington, DC\n%O December\n%K *\n\n%A Suchman, L.A.\n%D 1983\n%T The role of common sense in interface design\n%B Office Automation: Jekyll or Hyde\n%E D.Marschall and J.Gregory\n%I Working Women Education Fund\n%C Cleveland, OH\n%P 96-102\n\n%A Suchman, L.A.\n%D 1983\n%T Office procedure as practical action: models of work and system design\n%J ACM Trans Office Information Systems\n%V 1\n%N 4\n%P 320-328\n%O October\n%K *\n\n%A Suchman, L.A.\n%D 1985\n%T Plans and situated actions: the problem of human-machine communication\n%R PhD Thesis\n%I Xerox PARC\n%C Palo Alto, CA\n%K *\n\n%A Sugeno, M.\n%A Nishida, M.\n%D 1984\n%T Fuzzy control of model car\n%K *\n\n%A Summers, P.D.\n%A Grossman, D.D.\n%D 1984\n%T XPROBE: an experimental system for programming robots by example\n%J Int J Robotics Research\n%V 3\n%N 1\n%P 25-39\n%O Spring\n\n%A Sussman, G.J.\n%D 1975\n%T A computer model of skill acquisition\n%I American Elsevier\n%C New York, NY\n\n%A Tannenbaum, A.\n%T Political history of UNIX\n%R Report\n%I MASSCOMP\n%C Westford, MA \n%K *\n\n%A Tanner, W.\n%D 1979\n%T Industrial robots -- Volume 1: Fundamentals\n%I Society of Manufacturing Engineers\n%C Dearborn, MI\n\n%A Tennant, H.R.\n%A Ross, K.M.\n%A Thompson, C.W.\n%D 1983\n%T Usable natural language interfaces through menu-based natural language understanding\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 154-160\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Test, J.A.\n%D 1982\n%T The NUnix window system\n%R Internal Report\n%I Laboratory for Computer Science, MIT\n%C Cambridge, MA\n%K *\n\n%A Thimbleby, H.\n%D 1980\n%T Dialogue determination\n%J IJMMS\n%V 13\n%N 3\n%P 295-304\n%O October\n\n%A Thomsett, R.\n%D 1980\n%T People and project management\n%I Yourden Press\n%C New York, NY\n\n%A Thompson, B.A.\n%A Thompson, W.A.\n%D 1985\n%T Inside an expert system\n%J Byte\n%P 315-330\n%O April\n%K *\n\n%A Thompson, K.\n%D 1984\n%T Reflections on trusting trust\n%J Comm ACM\n%V 27\n%N 8\n%P 761-763\n%O August\n\n%A Ting, D.\n%A Prasada, B.\n%D 1980\n%T Digital processing techniques for encoding of graphics\n%J Proc IEEE\n%V 68\n%N 7\n%P 757-769\n%O July\n\n%A Tokuda, H.\n%A Manning, E.G.\n%D 1983\n%T An interprocess communication model for a distributed software testbed\n%J Proc ACM SIGCOMM 83\n%I University of Texas\n%C Austin, TX\n%O March\n%K *\n\n%A Tokuda, H.\n%A Radia, S.P.\n%A Manning. E.G.\n%D 1983\n%T Shoshin OS: a message-based operating system for a distributed software testbed\n%J Proc 16th Annual Hawaii International Conference on System Sciences\n%P 329-338\n%K *\n\n%A Tou, I.T.\n%A Gonzalez, R.C.\n%D 1974\n%T Pattern recognition principles\n%I Addison-Wesley\n%C Reading, MA\n\n%A Truin, P.G.M.\n%D 1983\n%T The `speaking tablet' as an aid in the acquisition of reading skills by dyslexic children\n%J IPO Annual Progress Report\n%V 18\n%P 79-84\n%K *\n\n%A Tsichritzis, D.\\0(Editor)\n%D 1983\n%T Beta Gamma\n%R Technical Report CSRG-150\n%I Computer Systems Research Group, University of Toronto\n%C Toronto, ON\n\n%A Tsichritzis, D.\n%D 1985\n%T Objectworld\n%E D.Tsichritzis\n%B Office automation\n%I Springer-Verlag\n%C Berlin\n%P 379-398\n\n%A Turkle, S.\n%D 1982\n%T The subjective computer: a study in the psychology of personal computation\n%J Social Studies of Science\n%V 12\n%N 2\n%P 173-205\n%K *\n\n%A Tyree, A.\n%D 1986\n%T Expert systems and the law\n%J Current Affairs Bulletin\n%P 13-18\n%P March\n%K *\n\n%A Ulichney, R.A.\n%A Troxel, D.E.\n%D 1982\n%T Scaling binary images with the telescoping template\n%J IEEE Trans Pattern Analysis and Machine Intelligence\n%V PAMI-4\n%N 3\n%P 331-335\n\n%A Umphress, D.\n%A Williams, G.\n%D 1985\n%T Identity verification through keyboard characteristics\n%J IJMMS (submitted)\n%K *\n\n%A Unger, B.\n%A Birtwistle, G.\n%A Cleary, J.\n%A Hill, D.\n%A Lomow, G.\n%A Neal, R.\n%A Peterson, M.\n%A Witten, I.H.\n%A Wyvill, B.\n%D 1984\n%T Jade: a simulation and software prototyping environment\n%J Proc Conference on Simulation in Strongly Typed Languages\n%C San Diego, CA\n%O February\n%K KConference\n\n%A Unger, B.W.\n%A Lomow, G.A.\n%A Birtwistle, G..\n%D 1984\n%T Simulation software and Ada\n%I Society for Computer Simulation\n%K *\n\n%A University\\|of\\|Chicago\\|Press\n%D 1969\n%T A manual of style\n%I University of Chicago \n\n%A Uribe, R.B.\n%D 1981\n%T Modeling autopoiesis\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 51-62\n\n%A Van\\|Dijk, T.A.\n%A Kintsch, W.\n%D 1983\n%T Strategies of discourse comprehension\n%I Academic Press\n%C New York, NY\n\n%A Van\\|Lehn, K.\n%D 1983\n%T Felicity conditions for human skill acquisition: validating an AI-based theory\n%R Research Report CIS-21\n%I Xerox PARC\n%C Palo Alto, CA\n%O November\n\n%A Varela, F.J.\n%A Maturana, H.R.\n%A Uribe, R.B.\n%D 1974\n%T Autopoiesis: the organization of living systems, its characterization and a model\n%J Biosystems\n%V 5\n%P 187-196\n\n%A Varela, F.J.\n%D 1979\n%T Principles of biological autonomy\n%I North Holland\n%C New York, NY\n\n%A Varela, F.J.\n%D 1981\n%T Describing the logic of the living\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 36-48\n\n%A Wade, N.\n%D 1985\n%T Literal pictures\n%J Word and  Image\n%V 1\n%N 3\n%P 242-272\n%O July-September\n%K *\n\n%A Wagner, R.A.\n%A Fischer, M.J.\n%D 1974\n%T The string-to-string correction problem\n%J J ACM\n%V 21\n%N 1\n%P 168-173\n%O January\n%K *\n\n%A Wall, R.S.\n%A Apon, A.W.\n%A Beal, J.\n%A Gately M.T.\n%A Oren, L.G.\n%D 1985\n%T An evaluation of commercial expert system building tools\n%R Computer Science Laboratory Technical Report 85-30\n%I Texas Instruments\n%C Dallas, TX\n%O November\n%K *\n\n%A Waltz, D.L.\n%D 1975\n%T Natural language access to a large data base\n%J Advance papers of the International Joint Conference on Artificial Intelligence\n%I MIT\n%C Cambridge, MA\n\n%A Waterman, D.A.\n%D 1978\n%T A rule-based approach to knowledge acquisition for man-machine interface programs\n%J IJMMS\n%V 10\n%P 693-711\n%K *\n\n%A Waters, R.C.\n%D 1985\n%T The programmer's apprentice: a session with KBEmacs\n%J IEEE Trans Software Engineering\n%V SE-11\n%N 11\n%P 1296-1320\n%O November\n%K *\n\n%A Webber, B.L.\n%A Nilsson, N.J.\n%D 1981\n%T Readings in artificial intelligence\n%I Tioga\n%C Palo Alto, CA\n\n%A Weinreb, D.\n%A Moon, D.\n%D 1981\n%T LISP machine manual\n%I Third edition\n%O March\n\n%A Weizenbaum, J.\n%D 1976\n%T Computer power and human reason\n%I Freeman\n%C San Francisco, CA\n\n%A Welch, T.A.\n%D 1984\n%T A technique for high-performance data compression\n%J IEEE Computer\n%V 17\n%N 6\n%P 8-19\n%O June\n%K *\n\n%A Weyer, S.A.\n%D 1982\n%T Searching for information in a dynamic book\n%R PhD Thesis\n%I School of Education, Stanford University\n%O (Also Report SCG-82-1, Xerox Parc)\n\n%A Whalen, T.\n%A Mason, C.\n%D 1981\n%T The use of tree-structured index which contains three types of design defects\n%J Telidon Behavioural Research\n%V 2\n%I Department of Communications\n%O May\n\n%A Whalen, T.\n%A Latremouille, S.\n%D 1981\n%T The effectiveness of a tree-structured index when the existence of information is uncertain\n%J Telidon Behavioural Research\n%V 2\n%I Department of Communications\n%O May\n\n%A Wijk, C.van\n%A Kempen, G.\n%D 1985\n%T From sentence structure to intonation contour\n%E B.S.Muller\n%T Sprachsynthese: zur Synthese von naturlich gesprochener Sprache aus Texten und Konzepten\n%I Georg Olms Verlag\n%C Hildesheim\n%K *\n\n%A Wilensky, R.\n%A Arens, Y.\n%A Chin, D.\n%D 1984\n%T Talking to Unix in English: an overview of UC\n%J Comm ACM\n%V 27\n%N 6\n%P 574-593\n%O June\n%K *\n\n%A Wilkes, A.J.\n%A Singer, D.W.\n%A Gibbons, J.J.\n%A King, T.R.\n%A Robinson, P.\n%A Wiseman, N.E.\n%D 1984\n%T The Rainbow workstation\n%J Computer J\n%V 27\n%N 2\n%O May\n%K *\n\n%A Wilkes, A.J.\n%A Wiseman, N.E.\n%D 1982\n%T A soft-edged character set and its derivation\n%J Computer J\n%V 25\n%N 1\n%P 140-147\n%O February\n%K *\n\n%A Wilkinson, W.\n%D 1980\n%T Viewdata: The Prestel System\n%B Videotext: the coming revolution in home/office information retrieval\n%E Sigel, E.\n%I Harmony Books\n%C New York, NY\n%P 57-86\n\n%A Wilks, Y.\n%D 1977\n%T Good and bad arguments about semantic primitives\n%R Research Report\n%I Department of Artificial Intelligence, University of Edinburgh\n%O May\n%K *\n\n%A Wilks, Y.\n%D 1984\n%T Beliefs, points of view and multiple environments\n%B Artificial and human intelligence\n%E A.Elithorn and R.Banerji\n%I Elsevier Science\n%P 147-171\n%K *\n\n%A Willems, NJ\n%D 1983\n%T STEP: A model of standard English intonation patterns\n%J IPO Annual Progress Report\n%V 18\n%P 37-42\n%K *\n\n%A Williams, G.\n%D 1984\n%T The Apple Macintosh computer\n%J Byte\n%V 9\n%N 2\n%P 30-54\n%O February\n\n%A Winograd, T.\n%D 1972\n%T Understanding natural language\n%I Academic Press\n%C New York, NY\n\n%A Winograd, T.\n%D 1984\n%T Moving the semantic fulcrum\n%R Report CSLI-84-18\n%I Center for the study of language and information, Stanford University\n%C Stanford, CA\n%O December\n%K *\n\n%A Witten, I.H.\n%D 1983\n%T The Department of Computer Science, University of Calgary\n%J Computer Science Association Newsletter\n%V 11\n%N 1\n%P 15-23\n%O December\n%K KArticle\n\n%A Witten, I.H.\n%A Cleary, J.G.\n%D 1986\n%T Foretelling the future by adaptive modeling\n%J Abacus\n%V 3\n%N 3\n%P 16-36\n%O Spring\n%K KArticle\n\n%A Witten, I.H.\n%A Fremont, D.\n%D 1984\n%T A student information service for a University Computer Science department\n%J Proc 15th Ontario Universities Computing Conference\n%I Lakehead University\n%C Thunder Bay, ON\n%O June\n%K KInvited\n\n%A Witten, I.H.\n%D 1985\n%T Elements of computer typography\n%J IJMMS\n%V 23\n%N 6\n%P 623-687\n%O December\n%K KJournal\n\n%A Witten, I.H.\n%A Bramwell, B.\n%D 1985\n%T A system for interactive viewing of structured documents\n%J Comm ACM\n%V 28\n%N 3\n%P 280-288\n%O March\n%K KJournal\n\n%A Witten, I.H.\n%D 1984\n%T Dynamic documents\n%J Proc PROTEXT I -- First International Conference on Text Processing Systems\n%I Boole Press\n%C Dublin, Ireland\n%P 234-239\n%O October\n%K KConference\n\n%A Witten, I.H.\n%A Greenberg, S.\n%D 1985\n%T User interfaces for office systems\n%B Oxford Surveys in Information Technology Volume 2\n%E P.I. Zorkoczy\n%I Oxford University Press\n%C Oxford, England\n%P 69-104\n%K KJournal\n\n%A Witten, I.H.\n%D 1986\n%T Making computers talk \\(em an introduction to speech synthesis\n%I Prentice-Hall\n%C Englewood Cliffs, NJ\n\n%A Witten, I.H.\n%D 1987\n%T Computer speech\n%B The Encyclopaedia of Physical Science and Technology, Volume 3\n%E Robert A Meyers\n%I Academic Press\n%P 482-506\n%K KInvited\n\n%A Witten, I.H.\n%A Bonham, M.\n%A Bramwell, B.\n%A Greenberg, S.\n%D in preparation\n%T Interacting with dynamic documents -- the new age of reading\n%R proposal submitted to MIT Press\n\n%A Witten, I.H.\n%D 1985\n%T Selected topics in computer science I\n%R Report\n%I Institute of Information Processing, Graz, Austria\n%O November\n%K KReport\n\n%A Witten, I.H.\n%D 1986\n%T Modeling behaviour sequences: principles, practice, prospects\n%J Proc International Conference on Future Advances in Computing\n%C Christchurch, New Zealand\n%O February 17-21\n%K KConference\n\n%A Witten, I.H.\n%D 1986\n%T In search of `autonomy'\n%J Proc International Conference on Future Advances in Computing\n%C Christchurch, New Zealand\n%O February 17-21\n%K KConference\n\n%A Witten, I.H.\n%D 1986\n%T Expert systems\n%J Man-Machine Studies\n%V UC-DSE\n%N 28\n%P 5-65\n%I University of Canterbury\n%C Christchurch, New Zealand\n%O May\n%K KArticle\n\n%A Witten, I.H.\n%D 1987\n%T Thoughts on artificial intentionality\n%J Man-Machine Studies\n%V UC-DSE\n%N 9\n%P 5-52\n%I University of Canterbury\n%C Christchurch, New Zealand\n%O January\n%K KArticle\n\n%A Witten, I.H.\n%A Neal, R.\n%A Cleary, J.G.\n%D 1987\n%T Arithmetic coding for data compression\n%J Comm ACM\n%V 30\n%N 6\n%P 520-540\n%O June; reprinted in \\fIC Gazette\\fP, December 1987\n%K KJournal\n\n%A Witten, I.H.\n%D 1987\n%T A course on `expert systems' for electrical engineering students\n%J Proc ACM SIGCSE Technical Symposium on Computer Science Education\n%C St Louis, MO\n%P 257-260\n%O February (published as SIGCSE Bulletin \\fI19\\fR(1))\n%K KConference\n\n%A Wong, S.K.M\n%A Ziarko, W.\n%A Ye, R. Li\n%D 1985\n%T Comparison of rough-set and statistical methods in inductive learning\n%R Technical Report CS-85-16\n%I Computer Science Department, University of Regina\n%K *\n\n%A Wood, R.J.\n%D 1982\n%T A window based display management system\n%R Internal Report\n%I University of Maryland\n\n%A Woods, W.A.\n%D 1973\n%T Progress in natural language understanding -- an application to lunar geology\n%J Proc National Computer Conference\n%C Montvale, NJ\n%I AFIPS Press\n\n%A Woolf, B.\n%A McDonald, D.D.\n%D 1983\n%T Human-computer discourse in the design of a Pascal tutor\n%J Proc ACM CHI 83 Human Factors in Computing Systems\n%P 230-234\n%C Boston, MA\n%O December 12-15\n%K *\n\n%A Woolf, B.\n%A McDonald, D.D.\n%D 1984\n%T Building a computer tutor: design issues\n%J IEEE Computer\n%V 17\n%N 9\n%P 61-73\n%O September\n\n%A Wright, W.E.\n%D 1977\n%T Gravitational clustering\n%J Pattern Recognition\n%V 9\n%P 151-166\n%K *\n\n%A Wu, X.\n%A Witten, I.H.\n%D 1985\n%T A fast \\fIk-\\fPmeans type clustering algorithm\n%R Research Report 85/197/10\n%I Computer Science Department, University of Calgary\n%O June\n\n%A Wupit, A.\n%D 1983\n%T Comparison of UNIX networks\n%J Proc ACM Conference on Personal and Small Computers\n%C San Diego, CA\n%P 99-108\n%O December\n\n%A Wyvill, B.L.M.\n%D 1984\n%T Three computer science plays:  \\fISquanderella\\fP, \\fIDigital Alice\\fP, and \\fITwenty eighty-four\\fP\n%R Research Report\n%I Computer Science Department, University of Calgary\n\n%A Wyvill, B.L.M.\n%A Witten, I.H.\n%D 1984\n%T Three computer science plays\n%R Research Report 84/184/42\n%I Computer Science Department, University of Calgary\n%O December\n%K KReport\n\n%A Xerox\\|Corp\n%D 1984\n%T The role of electronic printing in the office of the future\n%R Executive Presentation II\n%K *\n\n%A Yankelovich, N.\n%A Meyrowitz, N.\n%A van Dam, A.\n%D 1985\n%T Reading and writing the electronic book\n%J IEEE Computer\n%V 18\n%N 10\n%P 15-30\n%O October\n\n%A Yoeli, M.\n%A Brzozowski, J.A.\n%D 1984\n%T A mathematical model of digital CMOS networks\n%R Research Report CS-84-22\n%I Computer Science Department, University of Waterloo\n%O August\n%K *\n\n%A Young, J.Z.\n%D 1978\n%T Programs of the brain\n%I Oxford University Press\n%C Oxford, England\n\n%A Zaniolo, C.\n%D 1984\n%T Object-oriented programming in Prolog\n%J Proc International Symposium on Logic Programming\n%C Atlantic City, NJ\n%P 265-270\n%O February 6-9\n%K *\n\n%A Zeleny, M.\n%D 1977\n%T Self-organization of living systems: a formal model of autopoiesis\n%J Int J General Systems\n%V 4\n%N 1\n%P 13-28\n\n%A Zeleny, M.\n%D 1978\n%T Apl-autopoiesis: experiments in self-organization of complexity\n%B Progress in cybernetics and systems research III\n%E R.Trappl, G.J.Klir and L.Ricciardi\n%P 65-84\n%I Hemisphere\n%C Washington, DC\n\n%A Zeleny, M.\\0(Editor)\n%D 1981\n%T Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n\n%A Zeleny, M.\n%D 1981\n%T What is autopoiesis?\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York, NY\n%P 4-17\n\n%A Zimmermann, H.\n%D 1980\n%T OSI reference model \\(em the ISO model of architecture for open systems interconnection\n%J IEEE Trans Communications\n%P 425-432\n%O April\n\n%A Zisman, M.M.\n%D 1977\n%T Representation, specification, and automation of office procedures\n%R PhD Dissertation\n%I Wharton School, University of Pennsylvania\n\n%A Zissos, A.Y.\n%A Witten, I.H.\n%D 1985\n%T User modelling for a computer coach: a case study\n%J IJMMS\n%V 23\n%N 6\n%P 729-750\n%O December\n%K KJournal\n\n%A Ziv, J.\n%A Lempel, A.\n%D 1977\n%T A universal algorithm for sequential data compression\n%J IEEE Trans Information Theory\n%V IT-23\n%N 3\n%P 337-343\n%O May\n%K *\n\n%A Ziv, J.\n%A Lempel, A.\n%D 1978\n%T Compression of individual sequences via variable-rate coding\n%J IEEE Trans Information Theory\n%V IT-24\n%P 530-536\n%O September\n%K *\n"
  },
  {
    "path": "testdata/calgary/book1",
    "content": "<Y 1874>\n<A T. HARDY>\n<T Madding Crowd(Penguin 1978)>\n<C i>\n<P 51>\nDESCRIPTION OF FARMER OAK -- AN INCIDENT\nWhen Farmer Oak smiled, the corners of his mouth\nspread till they were within an unimportant distance of\nhis ears, his eyes were reduced to chinks, and diverging\nwrinkles appeared round them, extending upon his\ncountenance like the rays in a rudimentary sketch of\nthe rising sun.\nHis Christian name was Gabriel, and on working\ndays he was a young man of sound judgment, easy\nmotions, proper dress, and general good character. On\nSundays he was a man of misty views, rather given to\npostponing, and hampered by his best clothes and\numbrella : upon the whole, one who felt himself to\noccupy morally that vast middle space of Laodicean\nneutrality which lay between the Communion people\nof the parish and the drunken section, -- that is, he went\nto church, but yawned privately by the time the con+\ngegation reached the Nicene creed,- and thought of\nwhat there would be for dinner when he meant to be\nlistening to the sermon. Or, to state his character as\nit stood in the scale of public opinion, when his friends\nand critics were in tantrums, he was considered rather a\nbad man ; when they were pleased, he was rather a good\nman ; when they were neither, he was a man whose\nmoral colour was a kind of pepper-and-salt mixture.\nSince he lived six times as many working-days as\nSundays, Oak's appearance in his old clothes was most\npeculiarly his own -- the mental picture formed by his\nneighbours in imagining him being always dressed in\nthat way. He wore a low-crowned felt hat, spread out\nat the base by tight jamming upon the head for security\nin high winds, and a coat like Dr. Johnson's ; his lower\nextremities being encased in ordinary leather leggings\nand boots emphatically large, affording to each foot a\nroomy apartment so constructed that any wearer might\nstand in a river all day long and know nothing of\n<P 52>\ndamp -- their maker being a conscientious man who\nendeavoured to compensate for any weakness in his cut\nby unstinted dimension and solidity.\nMr. Oak 'carried 'about him, by way of watch,+\nwhat may be called a small silver clock; in other\nwords, it was a watch as to shape and intention, and\na small clock as to size. This instrument being several\nyears older than Oak's grandfather, had the peculiarity\nof going either too fast or not at all. The smaller\nof its hands, too, occasionally slipped round on the\npivot, and thus, though the minutes were told with\nprecision, nobody could be quite certain of the hour\nthey belonged to. The stopping peculiarity of his\nwatch Oak remedied by thumps and shakes, and he\nescaped any evil consequences from the other two\ndefects by constant comparisons with and observations\nof the sun and stars, and by pressing his face close\nto the glass of his neighbours' windows, till he could\ndiscern the hour marked by the green-faced timekeepers\nwithin. It may be mentioned that Oak's fob being\ndifficult of access, by reason of its somewhat high\nsituation in the waistband of his trousers (which also\nlay at a remote height under his waistcoat), the watch\nwas as a necessity pulled out by throwing the body to\none-side, compressing the- mouth and face to a mere\nmass of- ruddy flesh- on account -of the exertion, and\ndrawing up the watch by its chain, like a bucket from a\nwell.\nBut some thoughtfull persons, who had seen him\nwalking across one of his fields on a certain December\nmorning -- sunny and exceedingly mild -- might have\nregarded Gabriel Oak in other aspects than these. In\nhis face one might notice that many of the hues and\ncurves of youth had tarried on to manhood: there even\nremained in his remoter crannies some relics of the boy.\nHis height and breadth would have been sufficient to\nmake his presence imposing, had they been exhibited\nwith due consideration. But there is a way some men\nhave, rural and urban alike, for which the mind is more\nresponsible than flesh and sinew : it is a way of curtail+\ning their dimensions by their manner of showing them.\nAnd from a quiet modesty that would have become a\nvestal which seemed continually to impress upon him\n<P 53>\nthat he had no great claim on the world's room, Oak\nwalked unassumingly and with a faintly perceptible\nbend, yet distinct from a bowing of the shoulders.\nThis may be said to be a defect in an individual if he\ndepends for his valuation more upon his appearance\nthan upon his capacity to wear well, which Oak did not.\nHe had just reached the time of life at which \" young'\nis ceasing to be the prefix of \"man ' in speaking of one.\nHe was at the brightest period of masculine growth,\nfor his intellect and his emotions were clearly separated :\nhe had passed the time during which the influence of\nyouth indiscriminately mingles them in the character\nof impulse, and he had not yet arrived at the stage\nwherein they become united again, in the character of\nprejudice, by the influence of a wife and family. In\nshort, he was twenty-eight, and a bachelor.\nThe field he was in this morning sloped to a\nridge called Norcombe Hill. Through a spur of this\nhill ran the highway between Emminster and Chalk+\nNewton. Casually glancing over the hedge, Oak saw\ncoming down the incline before him an ornamental\nspring waggon, painted yellow and gaily marked,\ndrawn by two horses, a waggoner walking alongside\nbearing a whip perpendicularly. The waggon was\nladen with household goods and window plants, and\non the apex of the whole sat a woman, 'young-'and\nattractive. Gabriel had not beheld the sight for more\nthan half a minute, when the vehicle was brought to a\nstandstill just beneath his eyes.\n\" The tailboard of the waggon is gone, Miss,' said the\nwaggoner.\n\"Then I heard it fall,' said the girl, in a soft, though\nnot particularly low voice. \"I heard a noise I could\nnot account for when we were coming up the hill.'\n\"I'll run back.' +\n\" Do,' she answered. +\nThe sensible horses stood -- perfectly still, and the\nwaggoner's steps sank fainter and fainter in the distance.\nThe girl on the summit of the load sat motionless,\nsurrounded by tables and chairs with their legs upwards,\nbacked by an oak settle, and ornamented in front by\npots of geraniums, myrtles, and cactuses, together with\n<P 54>\na caged canary -- all probably from the windows of the\nhouse just vacated. There was also a cat in a willow\nbasket, from the partly-opened lid of which she gazed\nwith half-closed eyes, and affectionately-surveyed the\nsmall birds around.\nThe handsome girl waited for some time idly in her\nplace, and the only sound heard in the stillness-was -the\nhopping of the canary up-and down the perches of its\nprison. Then she looked attentively downwards. It\nwas not at the bird, nor at the cat; it was at an oblong\npackage tied in paper, and lying between them. She\nturned her head to learn if the waggoner were coming.\nHe was not yet in sight; and her-eyes crept back to\nthe package, her thoughts seeming to run 'upon what\nwas inside it. At length she drew the article into her\nlap, and untied the paper covering; a small swing\nlooking-glass was disclosed, in which she proceeded to\nsurvey herself attentively. She parted her lips and\nsmiled.\nIt was a fine morning, and the sun lighted up to a\nscarlet glow the crimson jacket she wore, and painted\na soft lustre upon her bright face and dark hair. The\nmyrtles, geraniums, and cactuses packed around her\nwere fresh and green, and at such a leafless season they\ninvested the whole concern of horses, waggon, furniture,\nand girl with a peculiar vernal charm. What possessed\nher to indulge in such a performance in the sight of the\nsparrows, blackbirds, and unperceived farmer who were\nalone its spectators, -- whether the smile began as a\nfactitious one, to test her capacity in that art, -- nobody\nknows ; it ended certainly in a real smile. She blushed\nat herself, and seeing her reflection blush, blushed the\nmore.\nThe change from the customary spot and necessary\noccasion of such an act -- from the dressing hour in a\nbedroom to a time of travelling out of doors -- lent to\nthe idle deed a novelty it did not intrinsically possess.\nThe picture was a delicate one. Woman's prescriptive\ninfirmity had stalked into the sunlight, which had\nclothed it in the freshness of an originality. A\ncynical inference was irresistitle by Gabriel Oak as he\nregarded the scene, generous though he fain would have\nbeen. There was no necessity whatever for her looking\nin the glass. She did not adjust her hat, or pat her\n<P 55>\nhair, or press a dimple into shape, or do one thing to\nsignify that any such intention had been her motive in\ntaking up the glass. She simply observed herself as a\nfair product of Nature in the feminine kind, her thoughts\nseeming to glide into far-off though likely dramas in\nwhich men would play a part -- vistas of probable\ntriumphs -- the smiles being of a phase suggesting that\nhearts were imagined as lost and won. Still, this was\nbut conjecture, and the whole series of actions was so\nidly put forth as to make it rash to assert that intention\nhad any part in them at all.\nThe waggoner's steps were heard returning. She\nput the glass in the paper, and the whole again into its\nplace.\nWhen the waggon had passed on, Gabriel withdrew\nfrom his point of espial, and descending into the road,\nfollowed the vehicle to the turnpike-gate some way\nbeyond the bottom of the hill, where the object of his\ncontemplation now halted for the payment of toll. About\ntwenty steps still remained between him and the gate,\nwhen he heard a dispute. lt was a difference con+\ncerning twopence between the persons with the waggon\nand the man at the toll-bar.\n\" Mis'ess's niece is upon the top of the things, and\nshe says that's enough that I've offered ye, you great\nmiser, and she won't pay any more.' These were the\nwaggoner's words.\n\"Very well ; then mis'ess's niece can't pass,' said the\nturnpike-keeper, closing the gate.\nOak looked from one to the other of the disputants,\nand fell into a reverie. There was something in the\ntone of twopence remarkably insignificant. Threepence\nhad a definite value as money -- it was an appreciable\ninfringement on a day's wages, and, as such, a higgling\nmatter ; but twopence --  -- \" Here,' he said, stepping\nforward and handing twopence to the gatekeeper ; \"let\nthe young woman pass.' He looked up at her then;\nshe heard his words, and looked down.\nGabriel's features adhered throughout their form so\nexactly to the middle line between the beauty of St.\nJohn and the ugliness of Judas Iscariot, as represented\nin a window of the church he attended, that not a single\nlineament could be selected and called worthy either of\ndistinction or notoriety. The redjacketed and dark+\n<P 56>\nhaired maiden seemed to think so too, for she carelessly\nglanced over him, and told her man to drive on. She\nmight have looked her thanks to Gabriel on a minute\nscale, but she did not speak them; more probably she\nfelt none, for in gaining her a passage he had lost her\nher point, and we know how women take a favour of\nthat kind.\nThe gatekeeper surveyed the retreating vehicle.\n\" That's a handsome maid ' he said to Oak\n\" But she has her faults,' said Gabriel.\n\" True, farmer. '\n\"And the greatest of them is -- well, what it is\nalways.'\n\" Beating people down ? ay, 'tis so.'\n\"O no.'\n\" What, then ? '\nGabriel, perhaps a little piqued by the comely\ntraveller's indifference, glanced back to where he had\nwitnessed her performance over the hedge, and said,\n\" Vanity.'\n<C ii>\n<P 57>\nNIGHT -- THE FLOCK -- AN INIERIOR -- ANOTHER INTERIOR\nIT was nearly midnight on the eve of St. Thomas\"s, the\nshortest day in the year. A desolating wind wandered\nfrom the north over the hill whereon Oak had watched\nthe yellow waggon and its occupant in the sunshine of\na few days earlier.\n  Norcombe Hill -- not far from lonely Toller-Down\n -- was one of the spots which suggest to a passer-by\nthat he is in the presence of a shape approaching the\nindestructible as nearly as any to be found on earth.\nIt was a featureless convexity of chalk and soil -- an\nordinary specimen of those smoothly-outlined protuber+\nances of the globe which may remain undisturbed on\nsome great day of confusion, when far grander heights\nand dizzy granite precipices topple down.\nThe hill was covered on its northern side by an\nancient and decaying plantation of beeches, whose\nupper verge formed a line over the crest, fringing its\narched curve against the sky, like a mane. To-night\nthese trees sheltered the southern slope from the keenest\nblasts, which smote the wood and floundered through\nit with a sound as of grumbling, or gushed over its\ncrowning boughs in a weakened moan. The dry leaves\nin the ditch simmered and boiled in the same breezes,\na tongue of air occasionally ferreting out a few, and\nsending them spinning across the grass. A group or\ntwo of the latest in date amongst the dead multitude\nhad remained till this very mid-winter time on the twigs\nwhich bore them and in falling rattled against the trunks\nwith smart taps:\nBetwenne this half-wooded, half naked hill, and the\nvague still horizon that its summit indistinctly com+\nmanded, was a mysterious sheet of fathomless shade\n -- the sounds from which suggested that what it con+\ncealed bore some reduced resemblance to features here.\n<P 58>\nThe thin grasses, more or less coating the hill, were\ntouched by the wind in breezes of differing powers, and\nalmost of differing natures -- one rubbing the blades\nheavily, another raking them piercingly, another brushing\nthem like a soft broom. The instinctive act of human+\nkind was to stand and listen, and learn how the trees\nto each other in the regular antiphonies of a cathedral\nchoir; how hedges and other shapes to leeward them\ncaught the note, lowering it to the tenderest sob; and\nhow the hurrying gust then plunged into the south, to\nbe heard no more.\nThe sky was clear -- remarkably clear -- and the\ntwinkling of all the stars seemed to be but throbs of\none body, timed by a common pulse. The North Star\nwas directly in the wind's eye, and since evening the\nBear had swung round it outwardly to the east, till he\nwas now at a right angle with the meridian. A\ndifference of colour in the stars -- oftener read of than\nseen in England-was really perceptible here. The\nsovereign brilliancy of Sirius pierced the eye with a steely\nglitter, the star called Capella was yellow, Aldebaran and\nBetelgueux shone with a fiery red.\nTo persons standing alone on a hill during a clear\nmidnight such as this, the roll of the world eastward is\nalmost a palpable movement. The sensation may be\ncaused by the panoramic glide of the stars past earthly\nobjects, which is perceptible in a few minutes of still+\nness, or by the better outlook upon space that a hill\naffords, or by the wind, or by the solitude ; but whatever\nbe its origin, the impression of riding along is vivid and\nabiding. The poetry of motion is a phrase much in\nuse, and to enjoy the epic form of that gratification it\nis necessary to stand on a hill at a small hour of the\nnight, and, having first expanded with a sense of differ+\nence from the mass of civilised mankind, who are\ndreamwrapt and disregardful of all such proceedings at\nthis time, long and quietly watch your stately progress\nthrough the stars. After such a nocturnal reconnoitre\nit is hard to get back to earth, and to believe that the\nconsciousness of such majestic speeding is derived from\na tiny human frame.\nSuddenly an unexpected series of sounds began to\n<P 59>\nbe heard\nin this place up against the sky. They had a\nclearness which was to be found nowhere in the wind,\nand a sequence which was to be found nowhere in\nnature. They were the notes of Farmer Oak's flute.\nThe tune was not floating unhindered into the open\nair : it seemed muffled in some way, and was altogether\ntoo curtailed in power to spread high or wide. It came\nfrom the direction of a small dark object under the\nplantation hedge -- a shepherd's hut -- now presenting\nan outline to which an uninitiated person might have\nbeen puzzled to attach either meaning or use.\nThe image as a whole was that of a small Noah's\nArk on a small Ararat, allowing the traditionary outlines\nand general form of the Ark which are followed by toy+\nmakers -- and by these means are established in men's\nimaginations among their firmest, because earliest im+\npressions -- to pass as an approximate pattern. The\nhut stood on little wheels, which raised its floor about a\nfoot from the ground. Such shepherds' huts are dragged\ninto the fields when the lambing season comes on, to\nshelter the shepherd in his- enforced nightly attendance.\nIt was only latterly that people had begun to call\nGabriel !Farmer' Oak. During the twelvemonth pre+\nceding this time he had been enabled by sustained\nefforts of industry and chronic good spirits to lease the\nsmall shepp farm of which Norcombe Hill was a portion,\nand stock it with two hundred sheep. Previously he\nhad been a bailiff for a short time, and earlier still a\nshepherd only, having from his childhood assisted his\nfather in tending the floeks of large proprietors, till old\nGabriel sank to rest.\nThis venture, unaided and alone, into the paths of\nfarming as master and not as man, with an advance of\nsheep not yet paid for, was a critical juncture with\nGabriel Oak, and he recognised his position clearly.\nThe first movement in his new progress was the lambing\nof his ewes, and sheep having been his speciality from\nhis \"youth, he wisely refrained from deputing -- the task\nof tending them at this season to a hireling or a novice.\nThe wind continued to beat-about the corners of the\nhut, but the flute-playing ceased. A rectangular space\nof light\n<P 60>\nappeared in the side of the hut, and in the\nopening the outline of Farmer Oak's figure. He carried\na lantern in his hand, and closing the door behind him,\ncame forward and busied himself about this nook of the\nfield for nearly twenty minutes, the lantern light appear+\ning and disappearing here and there, and brightening\nhim or darkening him as he stood before or behind it.\nOak's motions, though they had a quiet-energy, were\nslow, and their deliberateness accorded well with his\noccupation. Fitness being the basis of beauty, nobody\ncould-have denied that his steady swings and turns\"\nin and- about the flock had elements of grace, Yet,\nalthough if occasion demanded he could do or think a\nthing with as mercurial a dash as can the men of towns\nwho are more to the manner born, his special power,\nmorally, physically, and mentally, was static, owing\nlittle or nothing to momentum as a rule.\nA close examination of the ground hereabout, even\nby the wan starlight only, revealed how a portion of\nwhat would have been casually called a wild slope had\nbeen appropriated by Farmer Oak for his great purpose\nthis winter. Detached hurdles thatched with straw\nwere stuck into the ground at various scattered points,\namid and under which the whitish forms of his meek\newes moved and rustled. The ring of the sheep-bell,\nwhich had been silent during his absence, recommenced,\nin tones that had more mellowness than clearness, owing\nto an increasing growth of surrounding wool. This\ncontinued till Oak withdrew again from the flock. He\n --  returned to the hut, bringing in his arms a new-born\nlamb, consisting of four legs large enough for a full+\ngrown sheep, united by a seemingly inconsiderable mem+\nbrane about half the substance of the legs collectively,\nwhich constituted the animal's entire body just at present.\nThe little speck of life he placed on a wisp of hay\nbefore the small stove, where a can of milk was simmer+\ning. Oak extinguished the lantern by blowing into it\nand then pinching the snuff, the cot being lighted\nby a candle suspended by a twisted wire. A rather\nhard couch, formed of a few corn sacks thrown carelessly\ndown, covered half the floor of this little\n<P 61>\nhabitation, and\nhere the young man stretched himself along, loosened\nhis woollen cravat, and closed his eyes. In about the\ntime a person unaccustomed to bodily labour would have\ndecided upon which side to lie, Farmer Oak was asleep.\nThe inside of the hut, as it now presented itself, was\ncosy and alluring, and the scarlet handful of fire in\naddition to the candle, reflecting its own genial colour\nupon whatever it could reach, flung associations of\nenjoyment even over utensils and tools. In the corner\nstood the sheep-crook, and along a shelf at one side\nwere ranged bottles and canisters of the simple prepara+\ntions pertaining to ovine surgery and physic; spirits of\nwine, turpentine, tar, magnesia, ginger, and castor-oil\nbeing the chief. On a triangular shelf across the corner\nstood bread, bacon, cheese, and a cup for ale or cider,\nwhich was supplied from a flagon beneath. Beside the\nprovisions lay the flute whose notes had lately been\ncalled forth by the lonely watcher to beguile a tedious\nhour. The house was ventilated by two round holes,\nlike the lights of a ship's cabin, with wood slides+\nThe lamb, revived by the warmth' began to bleat'\ninstant meaning, as expected sounds will. Passing\nfrom the profoundest sleep to the most alert wakefulness\nwith the same ease that had accompanied the reverse\noperation, he looked at his watch, found that the hour+\nhand had shifted again, put on his hat, took the lamb\nin his arms, and carried it into the darkness. After\nplacing the little creature with its mother, he stood and\ncarefully examined the sky, to ascertain the time of\nnight from the altitudes of the stars.\nThe Dog-star and Aldebaran, pointing to the restless\nPleiades, were half-way up the Southern sky, and between\nthem hung Orion, which gorgeous constellation never\nburnt more vividly than now, as it soared forth above\nthe rim of the landscape. Castor and Pollux will\nthe north-west; far away through the plantation Vega\nand Cassiopeia's chair stood daintily poised on the\nuppermost boughs.\n<P 62>\n\"One o'clock,' said Gabriel.\nBeing a man not without a frequent consciousness\nthat there was some charm in this life he led, he stood\nstill after looking at the sky as a useful instrument, and\nregarded it in an appreciative spirit, as a work of art\nsuperlatively beautiful. For a moment he seemed\nimpressed with the speaking loneliness of the scene, or\nrather with the complete abstraction from all its compass\nof the sights and sounds of man. Human shapes,interferences,\ntroubles, and joys were all as if they were not, and there\nseemed to be on the shaded hemisphere of the globe no sentient being\nsave himself; he could fancy them all gone round to the sunny side.\n  Occupied this, with eyes stretched afar, Oak gradually per+\nceived that what he had previously taken to be a star low\ndown behind the outskirts of the plantation was in reality no\nsuch thing. It was an artificial light, almost close at hand.\n To find themselves utterly alone at night where company\nis desirable and expected makes some people fearful; but a\ncase more trying by far to the nerves is to discover some\nmysterious companionship when intuition, sensation, memory,\nanalogy, testimony, probability, induction -- every kind of\nevidence in the logician's list -- have united to persuade con+\nsciousness that it is quite in isolation.\n Farmer Oak went towards the plantation and pushed\nthrough its lower boughs to the windy side. A dim mass under\nthe slope reminded him that a shed occupied a place here,\nthe site being a cutting into the slope of the hill, so that at\nits back part the roof was almost level with the ground. In\nfront it was formed of board nailed to posts and covered with\ntar as apreservative. Through crevices in the roof and side\nspread streaks and spots of light, a combination of which made\nthe radiance that had attracted him. Oak stepped up behind,\nwhere,leaning down upon the roof and putting his eye close\nto a hole, he could see into the interior clearly.\n The place contained two women and two cows. By the side\nof the latter a steaming bran-mash stood in a bucket. One\nof the women was past middle age. Her companion was ap+\nparently young and graceful; he could form no decided opinion\n<P 63>\nupon her looks, her position being almost beneath his eye, so\nthat he saw her in a bird's-eye view, as Milton's Satan first saw\nParadise. She wore no bonnet or het, but had enveloped her+\nself in a large cloak, which was carelessly flung over her head\nas a covering.\n \"There, now we'll go home,\" said the elder of the two, resting\n her knuckles upon her hips, and looking at their goings-on as\na whole. \"I do hope Daisy will fetch round again now. I have\nnever been more frightened in my life, but I don't mind break+\ning my rest if she recovers.\"\n The young woman, whose eyelids were apparently inclined\nto fall together on the smallest provocation of silence,yawned\nin sympathy.\n \"I wish we were rich enough to pay a man to do these\nthings,\" she said.\n \"As we are not, we must do them ourselves,\" said the other;\n\"for you must help me if you stay.\"\n\"Well, my hat is gone, however,\" continued the younger. \"It\nwent over the hedge, I think. The idea of such a slight wind\ncatching it.\"\n The cow standing erect was of the Devon breed, and was\nencased in a tight warm hide of rich Indian red, as absolutely\nuniform from eyes to tail as if the animal had been dipped in\na dye of that colour, her long back being mathematically level.\nThe other was spotted,grey and white. Beside her Oak now\nnoticed a little calf about a day old, looking idiotically at\nthe two women, which showed that it had not long been\naccustomed to the phenomenon of eyesight, and often turn+\ning to the lantern, which it apparently mistook for the moon.\ninherited instinct having as yet had little time for correction\nby experience. Between the sheep and the cows Lucina had\nbeen busy on Norcombe hill lately.\n \"I think we had better send for some oatmeal,\" said the\n\"Yes, aunt; and I'll ride over for it as soon as it is\nlight. '\n\" But there's no side-saddle.'\n<P 64>\n\"I can ride on the other : trust me.'\nOak, upon hearing these remarks, became more\ncurious to observe her features, but this prospect being\ndenied him by the hooding efect of the cloak, and by his\naerial position, he felt himself drawing upon his fancy\nfor their details. In making even horizontal and clear\ninspections we colour and mould according to the warts\nwithin us whatever our eyes bring in. Had Gabriel\nbeen able from the first to get a distinct view of her +\ncountenance, his estimate of it as very handsome or\nslightly so would have been as his soul required a\ndivinity at the moment or was ready supplied with one.\nHaving for some time known the want of a satisfactory\nform to fill an increasing void within him, his position\nmoreover affording the widest scope for his fancy, he\npainted her a beauty.\nBy one of those whimsical coincidences in which\nNature, like a busy mother, seems to spare a moment\nfrom her unremitting labours to turn and make her\nchildren smile, the girl now dropped the cloak, and\nforth tumbled ropes of black hair over a red jacket.\nOak knew her instantly as the heroine of the yellow\nwaggon, myrtles, and looking-glass : prosily, as the\nwoman who owed him twopence.\nThey placed the calf beside its mother again, took\nup the lantern, and went out, the light sinking down\nthe hill till it was no more than a nebula. Gabriel\nOak returned to his flock.\n<C iii>\n<P 65>\nA GIRL ON HORSEBACK -- CONVERSATION\nTHE sluggish day began to break. Even its position\nterrestrially is one of the elements of a new interest,\nand for no particular reason save that the incident of\nthe night had occurred there, Oak went again into\nthe plantation. Lingering and musing here, he heard\nthe steps of a horse at the foot of the hill, and soon\nthere appeared in view an auburn pony with a girl on\nits back, ascending by the path leading past the cattle+\nshed. She was the young woman of the night before.\nGabriel instantly thought of the hat she had mentioned\nas having lost in the wind; possibly she had come to\nlook for it. He hastily scanned the ditch and after\nwalking about ten yards along it, found the hat among the\nleaves. Gabriel took it in his hand and returned to his\nhut. Here he ensconced himself, and peeped through\nthe loophole in the direction of the riders approach.\nShe came up and looked around -- then on the other\nside of the hedge. Gabriel was about to advance and\nrestore the missing article when an unexpected per+\nformance induced him to suspend the action for the\npresent. The path, after passing the cowshed, bisected\nthe plantation. It was not a bridle-path -- merely a\npedestrian's track, and the boughs spread horizontally\nat a height not greater than seven feet above the ground,\nwhich made it impossible to ride erect beneath them.\nThe girl, who wore no riding-habit, looked around for\na moment, as if to assure herself that all humanity was\nout of view, then dexterously dropped backwards flat\nupon the pony's back, her head over its tail, her feet\nagainst its shoulders, and her eyes to the sky. The\nrapidity of her glide into this position was that of a\nkingfisher -- its noiselessness that of a hawk. Gabriel's\neyes had scarcely been able to follow her. The tall lank\npony seemed used to such doings, and ambled\n<P 66>\nalong unconcerned. Thus she passed under the level boughs.\nThe performer seemed quite at home anywhere\nbetween a horse's head and its tail, and the necessity\nfor this abnormal attitude having ceased with the\npassage of the plantation, she began to adopt another,\neven more obviously convenient than the first. She had\nno side-saddle, and it was very apparent that a firm\nseat upon the smooth leather beneath her was un+\nattainable sideways. Springing to her accustomed\nperpendicular like a bowed sapling, and satisfying her,\nself that nobody was in sight, she seated herself in the\nmanner demanded by the saddle, though hardly expected\nof the woman, and trotted off in the direction of Tewnell\nMill.\nOak was amused, perhaps a little astonished, and\nhanging up the hat in his hut, went again among his\newes. An hour passed, the girl returned, properly\nseated now, with a bag of bran in front of her. On\nnearing the cattle-shed she was met by a boy bringing\na milking-pail, who held the reins of the pony whilst\nshe slid off. The boy led away the horse, leaving the\npail with the young woman.\nSoon soft spirts alternating with loud spirts came\nin regular succession from within the shed, the obvious\nsounds of a person milking a cow. Gabriel took the\nlost hat in his hand, and waited beside the path she\nwould follow in leaving the hill.\nShe came, the pail in one hand, hanging against her\nknee. The left arm was extended as a balance, enough\nof it being shown bare to make Oak wish that the event\nha happened in the summer, when the whole would\nhave been revealed. There was a bright air and manner\nabout her now, by which she seemed to imply that the\ndesirability of her existence could not be questioned;\nand this rather saucy assumption failed in being offensive,\nbecause a beholder felt it to be, upon the whole, true.\nLike exceptional emphasis in the tone of a genius, that\nwhich would have made mediocrity ridiculous was an\naddition to recognised power. It was with some\nsurprise that she saw Gabriel's face rising like the\nmoon behind the hedge.\nThe adjustment of the farmer's hazy conceptions of\nher\n<P 67>\ncharms to the portrait of herself she now presented\nhim with was less a diminuition than a difference. The\nstarting-point selected by the judgment was. her height\nShe seemed tall, but the pail was a small one, and the\nhedge diminutive; hence, making allowance for error\nby comparison with these, she could have been not\nabove the height to be chosen by women as best. All\nfeatures of consequence were severe and regular. It\nmay have been observed by persons who go about the\nshires with eyes for beauty, that in Englishwoman a\nclassically-formed face is seldom found to be united\nwith a figure of the same pattern, the highly-finished\nfeatures being generally too large for the remainder of\nthe frame ; that a graceful and proportionate figure of\neight heads usually goes off into random facial curves.\nWithout throwing a Nymphean tissue over a milkmaid,\nlet it be said that here criticism checked itself as out\nof place, and looked at her proportions with a long\nconsciousness of pleasure. From the contours of her\nfigure in its upper part, she must have had a beautiful\nneek and shoulders ; but since her infancy nobody had\never seen them. Had she been put into a low dress\nshe would have run and thrust her head into a bush.\nYet she was not a shy girl by any means; it was merely\nher instinct to draw the line dividing the seen from the\nunseen higher than they do it in towns.\nThat the girl's thoughts hovered about her face\nand form as soon as she caught Oak's eyes conning the\nsame page was natural, and almost certain. The self+\nconsciousness shown would have been vanity if a little\nmore pronounced, dignity if a little less. Rays of male\nvision seem to have a tickling effect upon virgin faces\nin rural districts ; she brushed hers with her hand, as if\nGabriel had been irritating its pink surface by actual\ntouch, and the free air of her previous movements was\nreduced at the same time to a chastened phase of\nitself. Yet it was the man who blushed, the maid not\nat all.\n\" I found a hat,' said Oak.\n\" It is mine,' said she, and, from a sense of proportion,\nkept down to a small smile an inclination to laugh dis+\ntinctly : \"it flew away last night.'\n\" One o'clock this morning ? '\n<P 68>\n\" Well -- it was.' She was surprised. \" How did you\nknow ? ' she said.\n\" I was here.'\n\" You are Farmer Oak, are you not ? '\n\" That or thereabouts. I'm lately come to this place.'\n\" A large farm ? ' she inquired, casting her eyes round,\nand swinging back her hair, which was black in the\nshaded hollows of its mass; but it being now an hour\npast sunrise, the rays touched its prominent curves with\na colour of their own.\n\" No ; not large. About a hundred.' (In speaking\nof farms the word \"acres ' is omitted by the natives, by\nanalogy to such old expressions as \"a stag of ten.')\n' \"I wanted my hat this morning,' she went on.\nhad to ride to Tewnell Mill.'\n\"Yes you had.'\n\"How do you know?'\n\"I saw you!\n\"Where?' she inquired, a misgiving bringing every\nmuscle of her lineaments and frame to a standstill.\n\"Here-going through the plantation, and all down\nthe hill,' said Farmer Oak, with an aspect excessively\nknowing with regard to some matter in his mind, as he\ngazed at a remote point in the direction named, and then\nturned back to meet his colloquist's eyes.\nA perception caused him to withdraw his own eyes\nfrom hers as suddenly as if he had been caught in a\ntheft. Recollection of the strange antics she had\nindulged in when passing through the trees, was suc+\nceeded in the girl by a nettled palpitation, and that' by\na hot face. It was a time to see a woman redden who\nwas not given to reddening s a rule; not a point in\nthe milkmaid but was of the deepest rose-colour. From\nthe Maiden's Blush, through all varieties of the Provence\ndown to the Crimson Tuscany, the countenance of Oak's\nacquaintance quickly graduated ; whereupon he, in con+\nsiderateness, turned away his head.\nThe sympathetic man still looked the other way, and\nwondered when she would recover coolness sufficient to\njustify him in facing her again. He heard what seemed\nto be the flitting of a\n<P 69>\ndead leaf upon the breeze, and\nlooked. She had gone away.\nWith an air between that of Tragedy and Comedy !\nGabriel returned to his work.\nFive mornings and evenings passed. The young\nwoman came regularly to milk the healthy cow or to\nattend to the sick one, but never allowed her vision to\nstray in the direction of Oak's person. His want of\ntact had deeply offended her -- not by seeing what he\ncould not help, but by letting her know that he had\nseen it. For, as without law there is no sin, without\neyes there is no indecorum; and she appeared to feel\nthat Gabriel's espial had made her an indecorous woman\nwithout her own connivance. It was food for great regret\nwith him; it was also a contretemps which touched into\nlife a latent heat he had experienced in that direction.\nThe acquaintanceship might, however, have ended in\na slow forgetting, but for an incident which occurred at\nthe end of the same week. One afternoon it began to\nfreeze, and the frost increased with evening, which drew\non like a stealthy tightening of bonds. It was a time\nwhen in cottages the breath of the sleepers freezes to\nthe sheets; when round the drawing-room fire of a\nthick-walled mansion the sitters' backs are cold, even\nwhilst their faces are all aglow. Many a small bird went\nto bed supperless that night among the bare boughs.\nAs the milking-hour drew near, Oak kept his usual\nwatch upon the cowshed. At last he felt cold, and\nshaking an extra quantity of bedding round the yeaning\newes he entered the hut and heaped more fuel upon\nthe stove. The wind came in at the bottom of the door,\nand to prevent it Oak laid a sack there and wheeled the\ncot round a little more to the south. Then the wind\nspouted in at a ventilating hole -- of which there was one\non each side of the hut.\nGabriel had always known that when the fire was\nlighted and the door closed one of these must be kept\nopen -- that chosen being always on the side away from\nthe wind. Closing the slide to windward, he turned to\nopen the other; on second -- -thoughts the farmer con+\nsidered that he would first sit down leaving both\nclosed for a minute or two, till the temperature of the\nhut was a little raised. He sat down.\n<P 70>\nHis head began to ache in an unwonted manner, and,\nfancying himself weary by reason of the broken rests of\nthe preceding nights, Oak decided to get up, open the\nslide, and then allow himself to fall asleep. He fell\nasleep, however, without having performed the necessary\npreliminary.\nHow long he remained unconseious Gabriel never\nknew. During the first stages of his return to percep+\ntion peculiar deeds seemed to be in course of enactment.\nHis dog was howling, his head was aching fearfully --\nsomebody was pulling him about, hands were loosening\nhis neckerchief.\nOn opening his eyes he found that evening had sunk\nto dusk in a strange manner of unexpectedness. The\nyoung girl with the remarkably pleasant lips and white\nteeth was beside him. More than this -- astonishingly\nmore -- his head was upon her lap, his face and neck\nwere disagreeably wet, and her fingers were unbuttoning\nhis collar.\n\"Whatever is the matter?' said Oak, vacantly.\nShe seemed to experience mirth, but of too insignifi+\ncant a kind to start enjoyment.\n\"Nothing now', she answered, \"since you are not\ndead It is a wonder you were not,suffocated in this\nhut of yours.'\n\"Ah, the hut ! ' murmured Gabriel. \"I gave ten\npounds for that hut. But I'll sell it, and sit under\nthatched hurdles as they did in old times, curl up\nto sleep in a lock of straw! It played me nearly the\nsame trick the other day .! ' Gabriel, by way of emphasis,\nbrought down his fist upon the floor.\n\"It was not exactly the fault of the hut,' she ob+\nserved in a tone which showed her to be that novelty\namong women -- one who finished a thought before\nbeginning the sentence which was to convey it. \" You\nshould I think, have considered, and not have been so\nfoolish as to leave the slides closed.'\n\"Yes I suppose I should,' said Oak, absently. He\nwas endeavouring to catch and appreciate the sensation\nof being thus with her, his head upon her dress, before\nthe event passed on into the heap of bygone things.\nHe wished she knew his impressions ; but he would as\nsoon have thought of carrying an odour in a net as of\nattempting to convey the intangibilities\n<P 71>\nof his feeling\nin the coarse meshes of language. So he remained\nsilent.\nShe made him sit up, and then Oak began wiping\nhis face and shaking himself like a Samson. \"How\ncan I thank 'ee ? ' he said at last, gratefully, some of the\nnatural rusty red having returned to his face.\n \" Oh, never mind that,' said the girl, smiling, and\nallowing her smile to hold good for Gabriel's next\nremark, whatever that might prove to be.\n\"How did you find me?\"\n\"I heard your dog howling and scratching at the\ndoor of the hut when I came to the milking (it was so\nlucky, Daisy's milking is almost over for the season, and\n I shall not come here after this week or the next). The\ndog saw me, and jumped over to me, and laid hold of\nmy skirt. I came across and looked round the hut the\nvery first thing to see if the slides were closed. My\nuncle has a hut like this one, and I have heard him tell\nhis shepherd not to go to sleep without leaving a slide\nopen. I opened the door, and there you were like\ndead. I threw the milk over you, as there was no\nwater, forgetting it was warm, and no use.'\n\"I wonder if I should have died ? ' Gabriel said, in a\nlow voice, which was rather meant to travel back to\nhimself than to her.\n\"O no,\" the girl replied. She seemed to prefer a\nless tragic probability ; to have saved a man from death\n'involved talk that should harmonise with the dignity of\nsuch a deed -- and she shunned it.\n\"I believe you saved my life, Miss --  -- I don!t know\nyour name. I know your aunt's, but not yours.'\n\" I would just as soon not tell it -- rather not. There\nis no reason either why I should, as you probably will\nnever have much to do with me.'\n \" Still, I should like to know.'\n\" You can inquire at my aunt's -- she will tell you.'\n'My name is Gabriel Oak.'\n\"And mine isn't. You seem fond of yours in\nspeaking it so decisively, Gabriel Oak.'\n<P 72>\n\" You see, it is the only one I shall ever have, and I\nmust make the most of it.'\n\" I always think mine sounds odd and disagreeable.'\n\"I should think you might soon get a new one.'\n\"Mercy ! -- how many opinions you keep about you\nconcerning other people, Gabriel Oak.\n\"Well Miss-excuse the words-I thought you\nwould like them But I can't match you I know in\nnapping out my mind upon my tongue. I never was\nvery clever in my inside. But I thank you. Come\ngive me your hand!'\nShe hesitated, somewhat disconcerted at Oak's old+\nfashioned earnest conclusion. to a dialogue lightly\ncarried on.\"Very well,' she said, and gave him her\nhand, compressing her lips to a demure impassivity.\nHe held it but an instant, and in his fear of being too\ndemonstrative, swerved to the opposite extreme, touching\nher fingers with the lightness of a small-hearted person.\n\" I am sorry,' he said, the instant after.\n\" What for?'\n\"You may have it again if you like; there it is.'\nShe gave him her hand again.\nOak held it longer this time -- indeed, curiously long.\n\"How soft it is -- being winter time, too -- not chapped\nor rough or anything!' he said.\n\"There -- that's long enough,' said she, though with+\nout pulling it away \"But I suppose you are thinking\nyou would like to kiss it? You may if you want to.'\n\"I wasn't thinking of any such thing,' said Gabriel,\nsimply ; \"but I will'\n\"That you won't!' She snatched back her hand.\nGabriel felt himself guilty of another want of tact.\n\"Now find out my name,' she said, teasingly; and\nwithdrew.\n<C iv>\n<P 73>\nGABRIEL'S RESOLVE -- THE VISIT -- THE MISTAKE\nTHE only superiority in women that is tolerable to the\nrival sex is, as a rule, that of the unconscious kind ; but\na superiority which recognizes itself may sometimes\nplease by suggesting possibilities of capture to the\nsubordinated man.\nThis well-favoured and comely girl soon made appre+\nciable inroads upon the emotional constitution of young\nFarmer Oak.\nLove, being an extremely exacting usurer (a sense of\nexorbitant profit, spiritually, by an exchange of hearts,\nbeing at the bottom of pure passions, as that of exorbi+\ntant profit, bodily or materially, is at the bottom of\nthose of lower atmosphere), every morning Oak's feelings\nwere as sensitive as the money-market in calculations\nupon his chances. His dog waited for his meals in a\nway so like that in which Oak waited for the girl's\npresence, that the farmer was quite struck with the\nresemblance, felt it lowering, and would not look at the\ndog. However, he continued to watch through the\nhedge for her regular coming, and thus his sentiments\ntowards her were ideepened without any corresponding\neffect being produced upon herself. Oak had nothing\nfinished and ready to say as yet, and not being able\nto frame love phrases which end where they begin ;\npassionate tales -- +\n     -- -Full of sound and fury\n   -- -signifting nothing -- +\nhe said no word at all.\nBy making inquiries he found that the girl's name\nwas Bathsheba Everdene, and that the cow would go\ndry in about seven days. He dreaded the eight day.\nAt last the eighth day came. The cow had ceased\nto give milk for that year, and Bathsheba Everdene\ncame up the hill no more. Gabriel had reached a\npitch of existence he never\n<P 74>\ncould have anticipated a\nshort time before. He liked saying 'Bathsheba' as a\nprivate enjoyment instead of whistling; turned over his\ntaste to black hair, though he had sworn by brown ever\nsince he was a boy, isolated himself till the space he\nfilled in a possible strength in an actual weakness. Marriage\ntransforms a distraction into a support, the power of\nwhich should be, and happily often is, in direct pro+\nportion to the degree of imbecility it supplants. Oak\nbegan now to see light in this direction, and said to\nhimself, \"I'll make her my wife, or upon my soul I shall\nbe good for nothing .! '\nAll this while he was perplexing himself about an\nerrand on which he might consistently visit the cottage\nof Bathsheba's aunt.\nHe found his opportunity in the death of a ewe,\nmother of a living lamb. On a day which had a\nsummer face and a winter constitution-a fine January\nmorning, when there was just enough blue sky visible to\nmake cheerfully-disposed people wish for more, and an\noccasional gleam of silvery sunshine, Oak put the lamb\ninto a respectable Sunday basket, and stalked across the\nfields to the house of Mrs. Hurst, the aunt -- George,\nthe dog walking behind, with a countenance of great\nconcern at the serious turn pastoral affairs seemed to be\ntaking.\nGabriel had watched the blue wood-smoke curling\nfrom the chimney with strange meditation. At evening\nhe had fancifully traced it down the chimney to the\nspot of its origin -- seen the hearth and Bathsheba\nbeside it -- beside it in her out-door dress; for the\nclothes she had worn on the hill were by association\nequally with her person included in the compass of his\naffection; they seemed at this early time of his love a\nnecessary ingredient of the sweet mixture called Bath+\nsheba Everdene.\nHe had made a toilet of a nicely-adjusted kind -- of a\nnature between the carefully neat and the carelessly\nornate -- of a degree between fine-market-day and wet+\nSunday selection. He thoroughly cleaned his silver\nwatch-chain with whiting, put new lacing straps to his\nboots, looked to the brass eyelet-holes,\n<P 75>\n went to the\ninmost heart of the plantation for a new walking-stick,\nand trimmed it vigorously on his way back; took a new\nhandkerchief from the bottom of his clothes-box, put\non the light waistcoat patterned all over with sprigs\nof an elegant flower uniting the beauties of both rose\nand lily without the defects of either, and used all the\nhair-oil he possessed upon his usually dry, sandy, and\ninextricably curly hair, till he had deepened it to a\nsplendidly novel colour, between that of guano and\nRoman cement, making it stick to his head like mace\nround a nutmeg, or wet seaweed round a boulder after\nthe ebb.\nNothing disturbed the stillness of the cottage save\n the chatter of a knot of sparrows on the eaves; one\nmight fancy scandal and rumour to be no less the\nstaple topic of these little coteries on roofs than of\nthose under them. It seemed that the omen was an\nunpropitious one, for, as the rather untoward commence+\nment of Oak's overtures, just as he arrived by the garden\ngate, he saw a cat inside, going into various arched shapes\nand fiendish convulsions at the sight of his dog George.\nThe dog took no notice , for he had arrived at an age\nat which all superfluous barking was cynically avoided\nas a waste of breath -- -in fact he never barked even\nat the sheep except to order, when it was done with\nan absolutely neutral countenance, as a sort of Com+\nmination-service, which, though offensive, had to be\ngone through once now and then to frighten the flock\nfor their own good.\nA voice came from behind some laurel-bushes into\nwhich the cat had run:\n\"Poor dear! Did a nasty brute of a dog want to\nkill it; -- did he poor dear !'\n\"I beg your pardon,' said Oak to the voice, 'but\nGeorge was walking on behind me with a temper as\nmild as milk.'\nAlmost before he had ceased speaking, Oak was\nseized with a misgiving as to whose ear was the recipient\nof his answer. Nobody appeared, and he heard the\nperson retreat among the bushes.\nGabriel meditated, and so deeply that he brought\nsmall furrows into his forehead by sheer force of\nreverie. Where the\n<P 76>\nissue of an interview is as likely\nto be a vast change for the worse as for the better,\nany initial difference from expectation causes nipping\nsensations of failure. Oak went up to the door a little\nabashed : his mental rehearsal and the reality had had\nno common grounds of opening.\nBathsheba's aunt was indoors. \" Will you tell Miss\nEverdene that somebody would be glad to speak to\nher ?'said Mr. Oak. (Calling one's self merely Some+\nbody, without giving a name, is not to be taken as\nan example of the ill-breeding of the rural world: it\nsprings from a refined modesty, of which townspeople,\nwith their cards and announcements, have no notion\nwhatever.)\nBathsheba was out. The voice had evidently been\nhers.\n\" Will you come in, Mr. Oak ? '\n\"Oh, thank 'ee, said Gabriel, following her to the\nfireplace. \"I've brought a lamb for Miss Everdene.\nI thought she might like one to rear; girls do.'\n\" She might,' said Mrs. Hurst, musingly ; \" though\nshe's only a visitor here. If you will wait a minute,\nBathsheba will be in.'\n\" Yes, I will wait,' said Gabriel, sitting down. \" The\nlamb isn't really the business I came about, Mrs. Hurst.\nIn short, I was going to ask her if she'd like to be\nmarried.'\n\"And were you indeed ?'\n\" Yes. Because if she would, I should be very glad\nto marry her. D'ye know if she's got any other young\nman hanging about her at all ?'\n\"Let me think,\" said Mrs. Hurst, poking the fire\nsuperfluously.... \" Yes -- bless you, ever so many young\nmen. You see, Farmer Oak, she's so good-looking, and\nan excellent scholar besides -- she was going to be a\ngoverness once, you know, only she was too wild. Not\nthat her young men ever come here -- but, Lord, in the\nnature of women, she must have a dozen ! '\n\" That's unfortunate,' said Farmer Oak, contemplating\na crack in the stone floor with sorrow. \"I'm only an\nevery-day sort of man, and my only chance was in being\nthe first comer... , Well, there's no use in my waiting,\nfor that was all I came about: so I'll take myself off\nhome-along, Mrs. Hurst.'\nWhen Gabriel had gone about two hundred yards\nalong the\n<P 77>\ndown, he heard a \"hoi-hoi .! \" uttered behind\nhim, in a piping note of more treble quality than that\nin which the exclamation usually embodies itself when\nshouted across a field. He looked round, and saw a girl\nracing after him, waving a white handkerchief.\nOak stood still -- and the runner drew nearer. It was\nBathsheba Everdene. Gabriel's colour deepened: hers\nwas already deep, not, as it appeared, from emotion,\nbut from running.\n\"Farmer Oak -- I -- ' she said, pausing for want of\nbreath pulling up in front of him with a slanted face\nand putting her hand to her side.\n\"I have just called to see you ' said Gabriel, pending\nher further speech.\n\"Yes-I know that,! she said panting like a robin,\nher face red and moist from her exertions, like a peony\npetal before the sun dries off the dew. \"I didn't know\nyou had come to ask to have me, or I should have come\nin from the garden instantly. I ran after you to say --\nthat my aunt made a mistake in sending you away from\ncourting me --  --  -- '\nGabriel expanded.\"I'm sorry to have made you\nrun so fast, my dear,' he said, with a grateful sense of\nfavours to come. \"Wait a bit till you've found your\nbreath.'\n\" -- It was quite a mistake-aunt's telling you I had\na young man \"already,'- Bathsheba went on. \" I haven't\na sweetheart at all -- and I never had one, and I thought\nthat, as times go with women, it was such a pity to send\nyou away thinking that I had several.'\n\"Really and truly I am glad to hear that.!' said .=\nFarmer Oak, smiling one of his long special smiles, and\nblushing with gladness. He held out his hand to take\nhers, which, when she had eased her side by pressing\nit there, was prettily extended upon her bosom to still\nher loud-beating heart. Directly he seized it she put\nit behind her, so that it slipped through his fingers like\nan eel. \"\n\"I have a nice snug little farm,' said Gabriel, with\nhalf a degree less assurance than when he had seized\nher hand.\n\"Yes ; you have.'\n\"A man has advanced me money to begin with, but\nstill, it\n<P 78>\nwill soon be paid off and though I am only an\nevery-day sort of man, I have got on a little since I was\na boy.' Gabriel uttered \"a little' in a tone to-show\nher that it was the complacent form of \"a great deal.'\nHe continued : \" When we be married, I am quite sure\nI can work twice as hard as I do now.'\n He went forward and stretched out his arm again.\nBathsheba had overtaken him at a point beside which\nstood a low stunted holly bush, now laden with red\nberries. Seeing his advance take the form of an attitude\nthreatening a possible enclosure, if not compression, of\nher person, she edged off round the bush.\n\" Why, Farmer Oak,' she said, over the top, looking\nat him with rounded eyes, \"I never said I was going to\nmarry you.'\n\" Well -- that is a tale .! ' said Oak,  with dismay. \" To\nrun after anybody like this, and then say you don\"t\nwant him ! '\n\"What I meant to tell you was only this,' she said\neagerly, and yet half conscious of the absurdity of the\nposition she had made for herself -- \"that nobody has\ngot me yet as a sweetheart, instead of my having a\ndozen, as my aunt said; I hate to be thought men's\nproperty in that way, though possibly I shall be had\nsome day. Why, if I'd wanted you I shouldn't have\nrun after you like this ; 'twould have'been the forwardest\nthing ! But there was no harm in 'hurrying to correct\na piece of false news that had been told you.'\n\"Oh, no -- no harm at all.\" But there is such a thing\nas being too generous in expressing a judgment impuls+\nively, and Oak added with a more appreciative sense\nof all the circumstances -- ' Well, I am not quite certain\nit was no harm.'\n\"Indeed, I hadn't time to think before starting\nwhether I wanted to marry or not, for you'd have been\ngone over the hill.'\n\" Come,' said Gabriel, freshening again ; \"think a\nminute or two. I'll wait a while, Miss Everdene. Will\nyou marry me? Do, Bathsheba. I love you far more\nthan common!'\n\"I'll try to think,' she observed, rather more timor+\nously ; \"if I can think out of doors; my mind spreads\naway so.'\n\"But you can give a guess.'\n<P 79>\n\"Then give me time.' Bathsheba looked thought+\nfully into the distance, away from the direction in which\nGabriel stood.\n\"I can make you happy,' said he to the back of her\nhead, across the bush. \"You shallo have as piano in a\nyear or two -- -farmers' wives are getting to have pianos\nnow --  and I'll practise up the flute right well to play\nwith you in the evenings.'\n\" Yes ; I should like that.'\n\"And have one of those little ten-pound\" gigs for\nmarket -- and nice flowers, and birds -- cocks and hens\nI mean, because they be useful,' continued Gabriel,\nfeeling balanced between poetry and practicality.\n\"I should like it very much.'\n\"And a frame for cucumbers -- like a gentlman and\nlady.'\n\"Yes.'\n\"And when the wedding was over, we'd have it put\nin the newspaper list of marriages.'\n\" Dearly I should like that ! '\n\"And the babies in the births -- every man jack of\n'em! And at home by the fire, whenever you look up,\nthere I shall be -- and whenever I look up' there will\nbe you.'\n\"Wait wait and don't be improper .!'\nHer countenance fell, and she was silent awhile.\nHe regarded the red berries between them over and\nover again, to such an extent, that holly seemed in\nhis after life to be a cypher signifying a proposal of\nmarriage. Bathsheba decisively turned to him.\n\"No;' 'tis no use,' she said. 'I don't want to marry\nyou. '\n' Try.'\n\"I have tried hard all the time I've been thinking;\nfor a marriage would be very nice in one sense.\nPeople would talk about me, and think I had won my\nbattle, and I should feel triumphant, and' all that,\nBut a husband --  -- ' - +\n\" Well .! '\n\" Why, he'd always be there, as you say; whenever\nI looked up, there he'd be.'\n\" Of course he would -- I, that is.'\n<P 80>\n\" Well, what I mean is that I shouldn't mind being\na bride at a wedding, if I could be one without having\na husband. But since a woman can't show off in that\nway by herself, I shan't marry -- at least yet.'\n' That's a terrible wooden story.'\nAt this criticism of her statement Bathsheba made\nan addition to her dignity by a slight sweep away\nfrom him.\n\"Upon my heart and soul, I don't know what a\nmaid can say stupider than that,' said Oak. \"But\ndearest,' he continued in a palliative voice, \"don't be\nlike it !.' Oak sighed a deep honest sigh -- none the\nless so in that, being like the sigh of a pine plantation,\nit was rather noticeable as a disturbance of the atmo+\nsphere. \" Why won't you have me ? ' he appealed,\ncreeping round the holly to reach her side.\n\" I cannot,' she said, retreating.\n\"But why ?' he persisted, standing still at last in\ndespair of ever reaching her, and facing over the\nbush.\n' Because I don't love you.'\n\" Yes, but --  -- '\nShe contracted a yawn to an inoffensive smallness,\nso that it was hardly ill-mannered at all. \"I don't love\nyou,' she said.'\n\"But I love you -- and, as for myself, I am content\nto be liked.'\n\" O Mr. Oak -- that's very fine ! You'd get to\ndespise me.'\n\"Never,' said Mr Oak, so earnestly that he seemed\nto be coming, by the forceof his words, straight\nthrough the bush and into her arms. \"I shall do one\nthing in this life -- one thing certain -- that is, love you,\nand long for you, and keep wanting you till I die.' His\nvoice had a genuine pathos now, and his large brown\nhands perceptibly trembled.\n\"It seems dreadfully wrong not to have you when\nyou feel so much!' she said with a little distress, and\nlooking hopeleely around for some means of escape\nfrom her moral dilemma. \" H(ow I wish I hadn't run\nafter you!' However she seemed to have a short cut\nfor getting back to cheerfulness, and set her face to\nsignify archness. \"It wouldn't do, Mr Oak. I want\nsomebody to tame me; I am too independent ; and\nyou would never be able to, I know.'\n<P 81>\nOak cast his eyes down the field in a way implying\nthat it was useless to attempt argument.\n\" Mr. Oak,' she said, with luminous distinctness and\ncommon sense, \" you are better off than I. I have\nhardly a penny in the world -- I am staying with my\naunt for my bare sustenance. I am better educated\nthan you -- and I don't love you a bit: that's my side\nof the case. Now yours: you are a farmer just begin+\ning; and you ought in common prudence, if you marry\nat all (which you should certainly not think of doing\nat present) to marry a woman with money, who would\nadmiration.\n\"That's the very thing I had been thinking myself !'\nhe naively said.\nFarmer Oak had one-and-a-half Christian character\nistics too many to succeed with Bathsheba : his humility,\nand a superfluous moiety of honesty. Bathsheba was\ndecidedly disconcerted,\n\"Well, then, why did you come and disturb me?'\nshe said, almost angrily, if not quite, an enlarging red\nspot rising in each cheek.\n\" I can't do what I think would be -- would be --  -- '\n\" Right ? '\n\" No : wise.'\n\" You have made an admission now, Mr. Oak,' she\nexclaimed, with even more hauteur, and rocking her\nhead disdainfully. 'After that, do you think I could\nmarry you? Not if I know it.'\nHe broke in passionately ! \"But don't mistake me\nlike that! Because I am open enough to own what\nevery man in my shoes would have thought of, you\nmake your colours come up your face, and get crabbed\nwith me. That about your not being good enough for\nme is nonsense. You speak like a lady -- all the parish\nnotice it, and your uncle at Weatherbury is, I have\nheerd, a large farmer -- much larger than ever I shall\nbe. May I call in the evening, or will you walk along\nwith me o' Sundays? I don't want you to make-up\nyour mind at once, if you'd rather not.'\n<P 82>\n\" No -- no -- I cannot. Don't press me any more --\ndon't. I don't love you -- so 'twould be ridiculous,'\nshe said, with a laugh.\nNo man likes to see his emotions the sport of a\nmerry-go-round of skittishness. \" Very well,' said Oak,\nfirmly, with the bearing of one who was going to give '\nhis days and nights to Ecclesiastes for ever. \"Then\nI'll ask you no more.'\n<C v>\n<P 83>\nDEPARTURE OF BATHSHEBA -- A PASTORAL TRAGEDY\nTHE news which one day reached Gabriel, that Bath+\nsheba Everdene had left the neighbourhood, had an\ninfluence upon him which might have surprised any\nwho never suspected that the more emphatic the renun+\nciation the less absolute its character.\nIt may have been observed that there is no regula\npath for getting out of love as there is for getting in.\nSome people look upon marriage as a short cut that way,\nbut it has been known to fail. Separation, which was\nthe means that chance offered to Gabriel Oak by\nBathsheba's disappearance though effectual with people\nof certain humours is apt to idealise the removcd object\nwith others -- notably those whose affection, placid and\nregular as it may be flows deep and long. Oak belonged\nto the even-tempered order of humanity, and felt the\nsecret fusion of himself in Bathsheba to be burning with\na finer flame now that she was gone -- that was all.\nHis incipient friendship with her aunt-had been\nnipped by the failure of his suit, and all that Oak learnt\nof Bathsheba's movements was done indirectly. It ap+\npeared that she had gone to a place called Weatherbury,\nmore than twenty miles off, but in what capacity --\nwhether as a visitor, or permanently, he could not\ndiscover.\nGabriel had two dogs. George, the elder, exhibited\nan ebony-tipped nose, surrounded by a narrow margin\nof pink flesh, and a coat marked in random splotches\napproximating in colour to white and slaty grey ; but the\ngrey, after years of sun and rain, had been scorched and\nwashed out of the more prominent locks, leaving them\nof a reddish-brown, as if the blue component of the grey\nhad faded, like the indigo from the same kind of colour in\nTurner's pictures. In substance it had originally been\nhair, but long contact with sheep seemed\n<P 84>\nto be turning\nit by degrees into wool of a poor quality and staple.\nThis dog had originally belonged to a shepherd of\ninferior morals and dreadful temper, and the result was\nthat George knew the exact degrees of condemnation\nsignified by cursing and swearing of all descriptions\nbetter than the wickedest old man in the neighbourhood.\nLong experience had so precisely taught the animal the\ndifference between such exclamations as 'Come in .! '\nand 'D --  --  ye, come in !.' that he knew to a hair's\nbreadth the rate of trotting back from the ewes' tails\nthat each call involved, if a staggerer with the sheep\ncrook was to be escaped. Though old, he was clever\nand trustworthy still.\nThe young dog, George's son, might possibly have\nbeen the image of his mother, for there was not much\nresemblance between him and George. He was learn+\ning the sheep-keeping business, so as to follow on at\nthe flock when the other should die, but had got no\nfurther than the rudiments as yet -- still finding an\ninsuperable difculty in distinguishing between doing a\nthing well enough and doing it too well. So earnest\nand yet so wrong-headed was this young dog (he had no,\nname in particular, and answered with perfect readiness\nto any pleasant interjection), that if sent behind the\nflock to help them on, he did it so thoroughly that he\nwould have chased them across the whole county with\nthe greatest pleasure if not called off or reminded when\nto step by the example of old George.\nThus much for the dogs. On the further side of\nNorcombe Hill was a chalk-pit, from which chalk had\nbeen drawn for generations, and spread over adjacent\nfarms. Two hcdges converged upon it in the form of\na V, but without quite meeting. The narrow opening\nleft, which was immediately over the brow of the pit,\nwas protected by a rough railing.\nOne night, when Farmer Oak had returned to, his\nhouse, believing there would be no further necessity for\nhis attendance on the down, he called as usual to the\ndogs, previously to shutting them up in the outhouse till\nnext morning. Only one responded -- old George ; the\nother-could not be found, either in the house, lane, or\ngarden. - Gabriel then remembered\n<P 85>\nthat he had left the\ntwo dogs on the hill eating a dead lamb (a kind of meat\nhe usually kept from them, except when other food-ran\nfinished his meal, he went indoors to the luxury of a bed,\nwhich latterly he had only enjoyed on Sundays.\nIt was a still, moist night. Just before dawn he was\nassisted in waking by the abnormal reverberation of\nfamiliar music. To the shepherd, the note of the sheep'\nchronic sound that only makes itself noticed by ceasing\never distant, that all is well in the fold. In the solemn\nThis exceptional ringing may be caused in two ways -- +\nby the rapid feeding of the sheep bearing the bell, as\nwhen the flock breaks into new pasture, which gives it\nan intermittent rapidity, or by the sheep starting off in\na run, when the sound has a regular palpitation. The\nexperieced ear of Oak knew the sound he now' heard\nto be caused by the running of the flock with great\nvelocity.\nHe jumped out of bed, dressed, tore down the lane\nthrough a foggy dawn, and ascended the hill. The\nforward ewes were kept apart from those among which\nthe fall of lambs would be later, there being two hundred\nof the latter class in Gabriel's flock. These two hundred\nseemed to have absolutely vanished from the hill. There\nwere the fifty with their lambs, enclosed at the other end\nas he had left them, but the rest, forming the bulk of\nthe flock, were nowhere. Gabriel called at the top of\nhis voice the shepherd's call.\n\" Ovey, ovey, ovey .! '\nNot a single bleat. He went to the hedge -- a gap\nhad been broken through it, and in the gap were the\nfootprints of the sheep. Rather surprised to find\nthem break fence at this season, yet putting it down\ninstantly to their great fondness for ivy in winter-time,\nof which a great deal grew in the plantation, he followed\nthrough the hedge. They were not in the plantation.\nHe called again : the valleys and farthest hills\n<P 86>\nresounded\nas when the sailors invoked the lost Hylas on the Mysian\nshore ; but no sheep. He passed through the trees and\nalong the ridge of the hill. On the extreme summit,\nwhere the ends of the two converging hedges of which\nwe have spoken were stopped short by meeting the brow\nof the chalk-pit, he saw the younger dog standing against\nthe sky -- dark and motionless as Napoleon at St.\nHelena.\nA horrible conviction darted through Oak. With\na sensation of bodily faintness he advanced : at one\npoint the rails were broken through, and there he saw\nthe footprints of his ewes. The dog came up, licked\nhis hand, and made signs implying that he expected\nsome great reward for signal services rendered. Oak\nlooked over the precipice. The ewes lay dead and dying\nat its foot -- a heap of two hundred mangled careases,\nrepresenting in their condition just now at least two\nhundred more.\nOak was an intensely humane man: indeed, his\nhumanity often tore in pieces any politic intentions of\nhis which bordered on strategy, and carried him on as\nby gravitation. A shadow in his life had always been\nthat his flock ended in mutton -- that a day came and\nfound every shepherd an arrant traitor to his defenceless\nsheep. His first feeling now was one of pity for the\nuntimely fate of these gentle ewes and their unborn\nlambs.\nIt was a second to remember another phase of the\nmatter. The sheep were not insured. All the savings\nof a frugal life had been dispersed at a blow ; his hopes\nof being an independent farmer were laid low -- possibly\nfor ever. Gabriel's energies, patience, and industry had\nbeen so severely taxed during the years of his life between\neighteen and eight-and-twenty, to reach his present stage\nof progress' that no more seemed to be left in him. He\nhands.\nStupors, however, do not last for ever, and Farmer\nOak recovered from his. It was as remarkable as it was\ncharacteristic that the one sentence he uttered was in\nthankfulness : --\n'Thank God I am not married : what would she have\ndone in the poverty now coming upon me ! '\n<P 87>\nOak raised his head, and wondering what he could\ndo listlessly surveyed the scene. By the outer margin\nof the Pit was an oval pond, and over it hung the\nattenuated skeleton of a chrome-yellow moon which\nhad only a few days to last -- the morning star dogging\nher on the left hand. The pool glittered like a dead\nman's eye, and as the world awoke a breeze blew,\nshaking and elongating the reflection of the moon\nwithout breaking it, and turning the image of the star\nto a phosphoric streak upon the water. All this Oak\nsaw and remembered.\nAs far as could be learnt it appeared that the poor\nyoung dog, still under the impression that since he was\nkept for running after sheep, the more he ran after\nthem the better, had at the end of his meal off the\ndead lamb, which may have given him additional energy\nand spirits, collected all the ewes into a corner, driven\nthe timid creatures through the hedge, across the upper\nfield, and by main force of worrying had given them\nmomentum enough to break down a portion of the\nrotten railing, and so hurled them over the edge.\nGeorge's son had done his work so thoroughly that\nhe was considered too good a workman to live, and was,\nin fact, taken and tragically shot at twelve o'clcck that\nsame day -- another instance of the untoward fate which\nso often attends dogs and other philosophers who\nfollow out a train of reasoning to its logical conclusion,\nand attempt perfectly consistent conduct in a world\nmade up so largely of compromise.\nGabriel's farm had been stocked by a dealer -- on the\nstrength of Oak's promising look and character -- who\nwas receiving a percentage from the farmer till such\ntime as the advance should be cleared off Oak found+\nthat the value of stock, plant, and implements which\nwere really his own would be about sufficient to pay his\ndebts, leaving himself a free man with the clothes he\nstood up in, and nothing more.\n<C vi>\n<P 88>\nTHE FAIR -- THE JOURNEY -- THE FIRE\nTWO months passed away. We are brought on to a\nday in February, on which was held the yearly statute\nor hiring fair in the county-town of Casterbridge.\nAt one end of the street stood from two to three\nhundred blithe and hearty labourers waiting upon Chance\n -- all men of the stamp to whom labour suggests nothing\nworse than a wrestle with gravitation, and pleasure\nnothing better than a renunciation of the same among\nthese, carters and waggoners were distinguished by\nhaving a piece of whip-cord twisted round their hats;\nthatchers wore a fragment of woven straw; shepherds\nheld their sheep-crooks in their hands; and thus the\nsituation required was known to the hirers at a\nglance.\nIn the crowd was an athletic young fellow of some+\nwhat superior appearance to the rest -- in fact, his\nsuperiority was marked enough to lead several ruddy\npeasants standing by to speak to him inquiringly, as to\na farmer, and to use 'Sir' as a finishing word. His\nanswer always was,\n'I am looking for a place myself -- a bailiff's. Do\nYe know of anybody who wants one ?'\nGabriel was paler now. His eyes were more medi+\ntative, and his expression was more sad. He had\npassed through an ordeal of wretchedness which had\ngiven him more than it had taken away. He had sunk\nfrom his modest elevation as pastoral king into the very\nslime-pits of Siddim ; but there was left to him a digni+\nfied calm he had never before known, and that indiffer+\nence to fate which, though it often makes a villain of\na man, is the basis of his sublimity when it does not.\nAnd thus the abasement had been exaltation, and the\nloss gain.\nIn the morning a regiment of cavalry had left the\ntown, and a sergeant and his party had been beating up\nfor recruits through the four streets. As the end of the\nday drew on, and\n<P 89>\nhe found himself not hired, Gabriel\nalmost wished that he had joined them, and gone off to\nserve his country. Weary of standing in the market+\nplace, and not much minding the kind of work he\nturned his hand to, he decided to offer himself in some\nother capacity than that of bailiff.\nAll the farmers seemed to be wanting shepherds.\nSheep-tending was Gabriel's speciality. Turning down\nan obscure street and entering an obscurer lane, he went\nup to a smith's shop.\n'How long would it take you to make a shepherd's\ncrook ? '\n'Twenty minutes.'\n'How much ? '\n'Two shillings.'\nHe sat on a bench and the crook was made, a stem\nbeing given him into the bargain.\nHe then went to a ready-made clothes' shop, the\nowner of which had a large rural connection. As the\ncrook had absorbed most of Gabriel's money, he\nattempted, and carried out, an exchange of his overcoat\nfor a shepherd's regulation smock-frock.\nThis transaction having been completed, he again\nhurried off to the centre of the town, and stood on the\nkerb of the pavement, as a shepherd, crook in hand.\nNow that Oak had turned himself into a shepherd, it\nseemed that bailifs were most in demand. However, two\nor three farmers noticed him and drew near. Dialogues\nfollowed, more or lessin the subjoined for: --\n'Where do you come from?'\n'Norcombe.'\n'That's a long way.\n'Fifteen miles.'\n'Who's farm were you upon last?'\n'My own.'\nThis reply invariably operated like a rumour of\ncholera. The inquring farmer would edge away and\nshake his head dubiously. Gabriel, like his dog, was\ntoo good to be trustworthy,. and he never made advance\nbeyond this point.\nIt is safer to accept any chance that offers itself, and\n \n \n<P 90>\nextemporize a procedure to fit it, than to get a good\nshepherd, but had laid himself out for anything in the\nwhole cycle of labour that was required in the fair. It\ngrew dusk. Some merry men were whistling and\nsinging by the corn-exchange. Gabriel's hand, which\nhad lain for some time idle in his smock-frock pocket,\ntouched his flute which he carried there. Here was\nan opportunity for putting his dearly bought wisdom\ninto practice.\nHe drew out his flute and began to play  Jockey to\nthe Fair' in the style of a man who had never known\nmoment's sorrow. Oak could pipe with Arcadian\nsweetness and the sound of the well-known notes\ncheered his own heart as well as those of the loungers.\nHe played on with spirit, and in half an hour had\nearned in pence what was a small fortune to a destitute\nman.\nBy making inquiries he learnt that there was another\nfair at Shottsford the next day.\n'How far is Shottsford?'\n'Ten miles t'other side of Weatherbury.'\nWeatherbury!. It was where Bathsheba had gone\ntwo months before. This information was like coming\nfrom night into noon.\n'How far is it to Weatherbury ?'\n'Five or six miles.'\nBathsheba had probably left Weatherbury long before\nthis time, but the place had enough interest attaching\nto it to lead Oak to choose Shottsford fair as his next\nfield of inquiry, because it lay in the Weatherbury\nquarter. Moreover, the Weatherbury folk were by no\nmeans uninteresting intrinsically. If report spoke truly\nthey were as hardy, merry, thriving, wicked a set as\nany in the whole county. Oak resolved to sleep at\nWeatherbury -- -that -- night on his way to Shottsford,\nand struck out at once -- into the -- high road which had\nbeen recommended as the direct route to the village in\nquestion.\nThe road stretched through water-meadows traversed\nby little brooks, whose quivering surfaces were braided\nalong their centres, and folded into creases at the sides;\nor, where the flow was more rapid, the stream was pied\nwith spots of white froth,\n<P 91>\nwhich rode on in undisturbed\nserenity. On the higher levels the dead and dry carcases\nof leaves tapped the ground as they bowled along helter+\nskelter upon the shoulders of the wind, and little birds\nin the hedges were rustling their feathers and tucking\nthemselves in comfortably for the night, retaining their\nplaces if Oak kept moving, but flying away if he\nstopped to look at them. He passed by Yalbury-Wood\nwhere the game-birds were rising to their roosts, and\nheard the crack-voiced cock-pheasants' 'cu-uck, cuck,'\nand the wheezy whistle of the hens.\nBy the time he had walked three or four miles every\nshape in the-landscape had assumed a uniform hue of\nblackness. He descended Yalbury Hill and could just\ndiscern ahead of him a waggon, drawn up under a great\nover-hanging tree by the roadside.\nOn coming close, he found there were no horses\nattached to it, the spot being apparently quite deserted.\nThe waggon, from its position, seemed to have been left\nthere for the night, for beyond about half a truss  of hay\nwhich was heaped in the bottom, it was quite empty.\nGabriel sat down on the shafts of the vehicle and con+\nsidered his position. He calculated that he had walked\na very fair proportion of the journey; and having been\non foot since daybreak, he felt tempted to lie down upon\nthe hay in the waggon instead of pushing on to the\nvillage of Weatherbury, and having to pay for a lodging.\nEating his las slices of bread and ham, and drinking\nfrom the bottle of cider he had taken the precaution to\nbring with him, he got into the lonely waggon. Here\nhe spread half of the hay as a bed, and, as well as he\ncould in the darkness, pulled the other half over him\nby way of bed-clothes, covering himself entirely, and\nfeeling, physically, as comfortable as ever he had been\nin his life. Inward melancholy it was impossible for\na man like Oak, introspective far beyond his neighbours,\nto banish quite, whilst conning the present. untoward\npage of his history. So, thinking of his misfortunes,\namorous and pastoral he fell asleep, shepherds enjoying,\nin common with sailors, the privilege of being able to\nsummon the god instead of having to wait for him.\n<P 92>\nOn somewhat suddenly awaking after a sleep of\nwhose length he had no idea, Oak found that the waggon\nwas in motion. He was being carried along the road\nat a rate rather considerable for a vehicle without\nsprings, and under circumstances of physical uneadiness,\nhis head being dandled up and down on the bed of\nthe waggon like a kettledrum-stick. He then dis+\ntinguished voices in conversation, comig from the\nforpart of the waggon. His concern at this dilemma\n(which would have been alarm, had he been a thriving\nman; but -- misfortune is a fine opiate to personal terror)\nled him to peer cautiously from the hay, and the first\nsight he beheld was the stars above him. Charles's\nWain was getting towards a right angle with the Pole\nstar, and Gabriel concluded that it must be about nine\no'clock -- in other words, that he had slept two hours.\nThis small astronomical calculation was made without\nany positive effort, and whilst he was stealthily turning\nto discover, if possible, into whose hands he had fallen.\nTwo figures were dimly visible in front, sitting with\ntheir legs outside the waggon, one of whom was driving.\nGabriel soon found that this was the waggoner, and it\nappeared they had come from Casterbridge fair, like\nhimself.\nA conversation was in progress, which continued\nthus : --\n'Be as 'twill, she's a fine handsome body as far's\nlooks be concerned. But that's only the skin of the\nwoman, and these dandy cattle be as-proud as a lucifer\nin their insides.'\n'Ay -- so 'a do seem, Billy Smallbury -- so 'a do seem.'\nThis utterance was very shaky by nature, and more so\nby circumstance, the jolting of the waggon not being+\nwithout its effect upon the speaker's larynx. It came\n'from the man who held the reins.\n'She's a very vain feymell -- so 'tis said here and\nthere.'\n'Ah, now. If so be 'tis like that, I can't look her in\nthe face. Lord, no : not I -- heh-heh-heh .! Such a shy\nman as I be.!'\n'Yes -- she's very vain. 'Tis said that every night at\ngoing to bed she looks in the glass to put on her night+\ncap properly.'\n'And not a married woman. Oh, the world .!\n\"And 'a can play the peanner, so 'tis said. Can\nplay so clever\n<P 93>\nthat 'a can make a psalm tune sound as\nwell as the merriest loose song a man can wish for.'\n'D'ye tell o't .! A happy time for us, and I feel quite\na new man! And how do she play?'\n'That I dson't know, Master Poorgrass.'\nOn hearing these and other similar remarks, a wild\nthought flashed into Gabriel's mind that they might\nbe speaking of Bathsheba. There were, however, no\nground for retaining such a supposition, for the waggon,\nthough going in the direction of Weatherbury, might be\ngoing beyond it, and the woman alluded to seemed to be\nthe mistress of some estate. They were now apparently\nclose upon Weatherbury and not to alarm the speakers\nunnecessarily, Gabriel slipped out of the waggon unseen.\nHe turned to an opening in the hedge, which he\nfound to be a gate, and mounting thereon, he sat\nmeditating whether to seek a cheap lodging in the\nvillage, or to ensure a cheaper one by lying under\nsome hay or corn-stack. The crunching jangle of the\nwaggon died upon his ear. He was about to walk on,\nwhen he noticed on his left hand an unusual light -- +\nappearing about half a mile distant. Oak watched it,\nand the glow increased. Something was on fire.\nGabriel again mounted the gate, and, leaping down\non the other side upon what he found to be ploughed\nsoil, made across the field in the exact direction of the\nfire. The blaze, enlarging in a  double ratio by his\napproach and its own increase, showed him as he drew\nnearer the outlines of ricks beside it, lighted up to great\ndistinctness. A rick-yard was the source of the fire.\nHis weary face now began to be painted over with a\nrich orange glow, and the whole front of his smock+\nfrock and gaiters was covered with a dancing shadow\npattern of thorn-twigs -- the light reaching him through\na leafless intervening hedge -- and the metallic curve of\nhis sheep-crook shone silver-bright in the same abound+\ning rays. He came up to the boundary fence, and\nstood to regain breath. It seemed as if the spot was\nunocupied by a living soul.\nThe fire was issuing from a long straw-stack, which\nwas so\n<P 94>\nfar gone as to preclude a possibility of saving it.\nA rick burns differently from a house. As the wind\nblows the fire inwards, the portion in flames completely\ndisappears like melting sugar, and the outline is lost\nto the eye. However, a hay or a wheat-rick, well put\ntogether, will resist combustion for a length of time, if\nit begins on the outside.\nThis before Gabriel's eyes was a- rick of straw, loosely\nput together, and the flames darted into it with lightning\nswiftness. It glowed on the windward side, rising and\nfalling in intensity, like the coal of a cigar. Then a\nsuperincumbent bundle rolled down, with a whisking\nnoise ; flames elongated, and bent themselves about\nwith a quiet roar, but no crackle. Banks of smoke\nwent off horizontally at the back like passing clouds,\nand behind these burned hidden pyres, illuminating\nthe semi-transparent sheet of smoke to a lustrous yellow\nuniformity. Individual straws in the foreground were\nconsumed in a creeping movement of ruddy heat, as\nif they were knots of red worms, and above shone\nimaginary fiery faces, tongues hanging from lips, glaring\neyes, and other impish forms, from which at intervals\nsparks flew in clusters like birds from a nest,\nOak suddenly ceased from being a mere spectator\nby discovering the case to be more serious than he had\nat first imagined. A scroll of smoke blew aside and\nrevealed to him a wheat-rick in startling juxtaposition\nwith the decaying one, and behind this a series of\nothers, composing the main corn produce of the farm;\nso that instead of the straw-stack standing, as he had\nimagined comparatively isolated, there was a regular\nconnection between it and the remaining stacks of the\ngroup.\nGabriel leapt over the hedge, and saw that he was\nnot alone. The first man he came to was running\nabout in a great hurry, as if his thoughts were several\nyards in advance of his body, which they could never\ndrag on fast enough.\n'O, man -- fire, fire ! A good master and a. bad\nservant is fire, fire .! -- I mane a bad servant and a good\nmaster O, Mark Clark -- come !- And you, Billy\nSmallbury -- and you, Maryann Money -- and you, Jan\nCoggan, and Matthew there!' Other figures now\nappeared behind this shouting man and among the\nsmoke, and\n<P 95>\nGabriel found that, far from being alone\nhe was in a great company -- whose shadows danced\nmerrily up and down, timed by the jigging of the\nflames, and not at all by their owners' movements.\nThe assemblage -- -belonging to that class of society\nwhich casts its thoughts into the form of feeling, and\nits feelings into the form of commotion -- set to work\nwith a remarkable confusion of purpose.\n'Stop the draught under the wheat-rick!' cried\nGabriel to those nearest to him. The corn stood on\nstone staddles, and between these, tongues of yellow\nhue from the burning straw licked and darted playfully.\nIf the fire once got under this stack, all would be\nlost.\n'Get a tarpaulin -- quick .! ' said Gabriel.\nA rick-cloth was brought, and they hung it like a\ncurtain across the channel. The flames immediately\nceased to go under the bottom of the corn-stack, and\nstood up vertical.\n'Stand here with a bucket of water and keep the\ncloth wet,' said Gabriel again.\nThe flames, now driven upwards, began to attack\nthe angles of the huge roof covering the wheat-stack.\n'A ladder,' cried Gabriel.\n'The ladder was against the straw-rick and is burnt\nto a cinder,' said a spectre-like form in the smoke.\nOak seized the cut ends of the sheaves, as if he\nwere going to engage in the operation of ' reed-drawing,'\nand digging in his feet, and occasionally sticking in the\nstem of his sheep-crook, he clambered up the beetling\nface. He at once sat astride the very apex, and began\nwith his crook to beat off the fiery fragments which had\nlodged thereon, shouting to the others to get him a\nbough and a ladder, and some water.\nBilly Smallbury -- one of the men who had been on\nthe waggon -- by this time had found a ladder, which\nMark Clark ascended, holding on beside Oak upon the\nthatch. The smoke at this corner was stifling, and\nClark, a nimble fellow, having been handed a bucket\nof water, bathed Oak's face and sprinkled him generally,\nwhilst Gabriel, now with a long beech-bough in one\nhand, in addition to his crook in the other, kept\nsweeping the stack and dislodging all fiery particles.\n<P 96>\nOn the ground the groups of villagers were still\noccupied in doing all they could to keep down the\nconflagration, which was not much. They were all\ntinged orange, and backed up by shadows of varying\npattern. Round the corner of the largest stack, out\nof the direct rays of the fire, stood a pony, bearing a\nyoung woman on its back. By her side was another\nwoman, on foot. These two seemed to keep at a\ndistance from the fire, that the horse might not beome\nrestive.\n'He's a shepherd,' said the woman on foot. 'Yes --\nhe is. See how his crook shines as he beats the rick\nwith it. And his smock-frock is burnt in two holes, I\ndeclare.! A fine young shepherd he is too, ma'am.'\n' Whose shepherd is he?' said the equestrian in a\nclear voice.\n'Don't know, ma'am.'\n \" Don't any of the others know ?'\n \" Nobody at all -- I've asked 'em. Quite a stranger,\n they say.'\n The young woman on the pony rode out from the\nshade and looked anxiously around.\n\"Do you think the barn is safe ?\" she said.\n\"D'ye think the barn is safe, Jan Coggan ?' said\nthe second woman, passing on the question to the\nnearest man in that direction.\n\"Safe -now -- leastwise I think so. If this rick had\ngone the barn would have followed. 'Tis- that bold\nshepherd up there that have done the most good -- he\nsitting on the top o' rick, whizzing his great long-arms\nabout like a windmill.'\n\" He does work hard,' said the young woman on\nhorseback, looking up at Gabriel through her thick\nwoollen veil. \"I wish he was shepherd here. Don't\nany of you know his name.'\n\"Never heard the man's name in my life, or seed\nhis form afore.'\nThe fire began to get worsted, and Gabriel's elevated\nposition being no longer required of him, he made as\nif to descend.\n\"Maryann,' said the girl on horseback, \"go to him\nas he comes down, and say that the farmer wishes to\nthank him for the great service he has done.'\nMaryann stalked off towards the rick and met\nOak at the foot of the ladder. She delivered ber\nmessage.\n<P 97>\n\" Where is your master the farmer ?' asked Gabriel,\nkindling with the idea of getting employment that\nseemed to strike him now.\n\" 'Tisn't a master ; 'tis a mistress, shepherd.'\n\" A woman farmer ? '\n\"Ay, 'a b'lieve, and a rich one too .!' said a by\"\nstander. \" Lately 'a came here from a distance. Took\non her uncle's farm, who died suddenly. Used to\nmeasure his money in half-pint cups. They say now\nthat she've business in every bank in Casterbridge, and\nthinks no more of playing pitch-and-toss sovereign than\nyou and I, do pitch-halfpenny -- not a bit in the world,\nshepherd.'\n\"That's she, back there upon the pony,' said Mary+\nann ;\"wi'her face a-covered up in that black cloth with\nholes in it.'\nOak, his features smudged, grimy, and undiscoverable\nfrom the smoke and heat, his smock-frock burnt-into\nholes and dripping with water, the ash stem of his sheep+\ncrook charred six inches shorter, advansed with the\nhumility stern adversity had thrust upon him up to\nthe slight female form in the saddle. He lifted his\nhat with respect, and not without galantry: stepping\nclose to her hanging feet he said in a hesitating voice, --\n\" Do you happen to want a shepherd, ma'am ? '\nShe lifted the wool veil tied round her face, and\nlooked all astonishment. Gabriel and his cold-hearted\ndarling, Bathsheba Everdene, were face to face.\nBathsheba did not speak, and he mechanically\nrepeated in an abashed and sad voice, --\n\" Do you want a shepherd, ma'am ? '\n<C vii>\n<P 98>\nRECOGNITION -- A TIMID GIRL\nBATHSHEBA withdrew into the shade. She scarcely\nknew whether most to be amused at the singularity of\nthe meeting, or to be concerned at its awkwardness.\nThere was room for a little pity, also for a very little\nexultation : the former at his position, the latter at her\nown. Embarrassed she was not, and she\" remembered\nGabriel's declaration of love to her at Norcombe only\nto think she had nearly forgotten it.\n\" Yes,' she murmured, putting on an air of dignity,\nand turning again to him with a little warmth of cheek ;\n\" I do want a shepherd. But --  -- '\n\" He's the very man, ma'am,' said one of the villagers,\nquietly.\nConviction breeds conviction. \" Ay, that 'a is,' said\na second, decisively.\n\"The man, truly .! ' said a third, with heartiness.\"\n\" He's all there ! ' said number four, fervidly.\"\nThen will you tell him to speak to the bailiff, said\nBathsheba.\nAll \"was practical again now. A summer eve and\nloneliness would have been necessary to give the\nmeeting its proper fulness of romance.\nthe palpitation within his breast at discovering that this\nAshtoreth of strange report was only a modification of\nVenus the well-known and admired, retired with him to\ntalk over the necessary preliminaries of hiring.\nThe fire before them wasted away. \"Men,' said\nBathsheba, \" you shall take a little refreshment after this\nextra work. Will you come to the house ?'\n\"We could knock in a bit and a drop a good deal\nfreer, Miss,\n<P 99>\nif so be ye'd send it to Warren's Malthouse,'\nreplied the spokesman.\nBathsheba then rode off into the darkness, and the\nmen straggled on to the village in twos and threes -- Oak\nand the bailiff being left by the rick alone.\n\"And now,' said the bailiff, finally, \"all is settled, I\nthink, about your coming, and I am going home-along.\nGood-night to ye, shepherd.'\n\" Can you get me a lodging ? ' inquired Gabriel.\n'That I can't, indeed,\" he said, moving past Oak as\na Christian edges past an offertory-plate when he does\nnot mean to contribute. \"If you follow on the road till\nyou come to Warren's Malthouse, where they are all\ngone to have their snap of victuals, I daresay some of\n'em will tell you of a place. Good-night to ye, shepherd.'\nThe bailiff who showed this nervous dread of loving\nhis neighbour as himself, went up the hill, and Oak\nwalked on to the village, still astonished at the ren+\ncounter with Bathsheba, glad of his nearness to her, and\nperplexed at the rapidity with which the unpractised girl\nof Norcombe had developed into the supervising and cool\nwoman here. But some women only require an emerg+\nency to make them fit for one.\nObligcd, to some extent, to forgo dreaming in order\nto find the way, he reachcd the churchyard, and passed\nround it under the wall where several ancient trees grew.\nThere was a wide margin of grass along here, and\nGabriel's footsteps were deadened by its softness, even\nat this indurating period of the year. When abreast of\na trunk which appeared to be the oldest of the old, he\nbecame aware that a figure was standing behind it.\nGabriel did not pause in his walk, and in another\nmoment he accidentally kicked a loose stone. The noise\nwas enough to disturb the motionless stranger, who\nstarted and assumed a careless position.\nIt was a slim girl, rather thinly clad.\n\" Good-night to you,' said Gabriel, heartily.\n\" Good-night,' said the girl to Gabriel.\nThe voice was unexpectedly attractive ; it was \"the\nlow and\n<P 100>\ndulcet note suggestive of romance ; common in\ndescriptions, rare in experience.\n'I'll thank you to tell me if I'm in the way for\nWarren's Malthouse ? ' Gabriel resumed, primarily to gain\nthe information, indirectly to get more of the music.\n\"Quite right. It's at the bottom of the hill. And\ndo you know --  -- ' The girl hesitated and then went\non again. \"Do you know how late they keep open\nthe Buck's Head Inn?' She seemed\" to be won by\nGabriel's heartiness, as Gabriel had been won by her\nmodulations.\n\" I don't know where the Buck's Head is, or anything\nabout it. Do you think of going there to-night ?'\n\" Yes --  -- ' The woman again paused. There was\nno necessity for any continuance of speech, and the fact\nthat she did add more seemed to proceed from an\nunconscious desire to show unconcern by making a\nremark, which is noticeable in the ingenuous when they\nare acting by stealth. \" You are not a Weatherbury man ? '\nshe said, timorously.\n' I am not. I am the new shepherd -- just arrived.'\n\"Only a shepherd -- and you seem almost a farmer by\nyour ways.'\n\" Only a shepherd,' Gabriel repeated, in a dull cadence\nof finality. \" His thoughts were directed to the past, his\neyes to the feet of the girl; and for the first time he\nsaw lying there a bundle of some sort. She may have\nperceived the direction of his face, for she said\ncoaxingly, --\n\" You won't say anything in the parish about having\nseen me here, will you -- at least, not for a day or two ?'\n\"I won't if you wish me not to,' said Oak.\n\"Thank you, indeed,' the other replied.'I am\nrather poor, and I don't want people to know anything\nabout me.'  Then she was silent and shivered.\n'You ought to have a cloak on such a cold night,'\nGabriel observed. \" I would advise 'ee to get indoors.\"\n\"O no! Would you mind going on and leaving\nme ? I thank you much for what you have told me.'\n\" I will go on,' he said ; adding hesitatingly, -- ' Since\nyou are\n<P 101>\nnot very well off, perhaps you would accept this\ntrifle from me. It is only a shilling, but'it is all I have\nto spare.'\n' Yes, I will take it,' said the stranger, gratefully.\nShe extended her hand ; Gabriel his. In feeling for\neach other's palm in the gloom before the money could\nbe passed, a minute incident occurred which told much.\nGabriel's fingers alighted on the young woman's wrist.\nIt was beating with a throb of tragic intensity. He had\nfrequently felt the same quick, hard beat in the femoral\nartery of -- his lambs when overdriven. It suggested a\nconsumption too great of a vitality which, to judge from\nher figure and stature, was already too little.\n\"What is the matter ?'\n\" Nothing.'\n'But there is?'\n\" No, no, no ! Let your having seen me be a.secret .! \"\n' Very well ; I will. Good-night, again.'\n\" Good-night.'\nThe young girl remained motionless by the tree, and\nGabriel descended into the village of Weatherbury, or\nLower Longpuddle as it was sometimes called. He\nfancied that he had felt himself in the penumbra of a\nvery deep sadness when touching that slight and fragile\ncreature. But wisdom lies in moderating mere impres+\nsions, and Gabriel endeavoured to think little of this.\n<C viii>\n<P 102>\nTHE MALTHOUSE -- THE CHAT -- NEWS\nWARREN'S Malthouse was enclosed by an old wall\ninwrapped with ivy, and though not much of the exterior\nwas visible at this hour, the character and purposes of\nthe building were clearly enough shown by its outline\nupon the sky. From the walls an overhanging thatched\nroof sloped up to a point in the centre, upon which rose\na small wooden lantern, fitted with louvre-boards on all\nthe four sides, and from these openings a mist was dimly\nperceived to be escaping into the night air. There was\nno window in front ; but a square hole in the door was\nglazed with a single pane, through which red, comfortable\nrays now stretched out upon the ivied wall in front.\nVoices were to be heard inside.\nOak's hand skimmed the surface of the door with\nfingers extended to an Elymas-the-Somerer pattern, till\nhe found a leathern strap, which he pulled. This lifted\na wooden latch, and the door swung open.\nThe room inside was lighted only by the, ruddy glow\nfrom the kiln mouth, which shone over ,the floor with\nthe streaming, horizontality of the setting sun, and threw\nupwards the shadows of all facial irregularities in those\nassembled around. The stone-flag floor was worn into\na path from the doorway to the kiln, and into undula+\ntions everywhere. A curved settle of unplaned oak\nstretched along one side, and in a remote corner was a\nsmall bed and bedstead, the owner and frequent occupier\nof which was the maltster.\nThis aged man was now sitting opposite the fire, his\nfrosty white hair and beard overgrowing his gnarled\nfigure like the grey moss and lichen upon a leafless\napple-tree. He wore breeches and the laced-up shoes\ncalled ankle-jacks; he kept his eyes fixed upon the\nfire.\n<P 103>\nGabriel's nose was greeted by an atmosphere laden\nwith the sweet smell of new malt. The conversation\n(which seemed to have been concerning the origin of the\nfire) immediately ceased, and every one ocularly criticised\nhim to the degree expressed by contracting the flesh of\ntheir foreheads and looking at him with narrowed eye+\nlids, as if he had been a light too strong for their sight.\nSeveral exclaimed meditatively, after this operation had\nbeen completed : --\n\"Oh, 'tis the new shepherd, 'a b'lieve.'\n\"We thought we heard a hand pawing about the\ndoor for the bobbin, but weren't sure 'twere not a dead\nleaf blowed across,' said another. \" Come in, shepherd ;\nsure ye be welcome, though we don't know yer name.'\n\" Gabriel Oak, that's my name, neighbours.'\nThe ancient maltster sitting in the midst turned up\nthis -- his turning being as the turning of a rusty\ncrane.\n\"That's never Gable Oak's grandson over at Nor+\ncombe -- never !. ' he said, as a formula expressive of\nsurprise, which nobody was supposed to take literally'.\n'My father and my grandfather were old men of the\nname of Gabriel,' said the shepherd, placidly.\n\"Thought I knowed the man's face as I seed him\non the rick ! -- thought I did.! And where be ye trading\no't to now, shepherd ? '\n\" I'm thinking of biding here,' said Mr. Oak.\n\"Knowed yer grandfather for years and years !'\ncontinued the maltster, the words coming forth of their\nown accord as if the momentum previously imparted\nhad been sufficient.\n'Ah -- and did you! '\n\" Knowed yer grandmother.'\n'And her too!'\n\"Likewise knowed yer father when he was a child.\nWhy, my boy Jacob there and your father were sworn\nbrothers -- that they were sure -- weren't ye, Jacob ? '\n\"Ay, sure,' said his son, a young man about sixty+\nfive, with a semi-bald head and one tooth in the left\ncentre of his upper jaw, which made much of itself by\nstanding prominent, like a\n<P 104>\nmilestone in a bank. 'But\n'twas Joe had most to do with him. However, my son\nWilliam must have knowed the very man afore us --\ndidn't ye, Billy, afore ye left Norcombe ? '\n\"No, 'twas Andrew,' said Jacob's son Billy, a child\nof forty, or thereabouts, who manifested the peculiarity\nof possessing a cheerful soul in a gloomy body, and\nwhose whiskers were assuming a chinchilla shade here\nand there.\n\"I can mind Andrew,' said Oak, 'as being a man in\nthe place when I was quite a child.'\n\"Ay -- the other day I and my youngest daughter,\nLiddy, were over at my grandson's christening,' continued\nBilly. ' We were talking about this very family, and\n'twas only last Purification Day in this very world, when\nthe use-money is gied away to the second-best poor\nfolk, you know, shepherd, and I can mind the day\nbecause they all had to traypse up to the vestry -- yes,\nthis very man's family.'\n' Come, shepherd, and drink. 'Tis gape and\nswaller with us -- a drap of sommit, but not of much\naccount,' said the maltster, removing from the fire his\neyes, which were vermilion-red and bleared by gazing\ninto it for so many years. \"Take up the God-forgive\"\nme, Jacob. See if 'tis warm, Jacoh.'\nJacob stooped to the God-forgive-me, which was a\ntwo-handled tall mug standing in the ashes, cracked\nand charred with heat : it was rather furred with ex\"\ntraneous matter about the outside, especially in the\ncrevices of the handles, the innermost curves of which\nmay not have seen daylight for several years by reason\nof this encrustation thereon -- formed of ashes accident+\nally wetted with cider and baked hard; but to the mind\nof any sensible drinker the cup was no worse for that,\nbeing incontestably clean on the inside and about the\nrim. It may be observed that such a class of mug is\ncalled a God-forgive-me in Weatherbury and its vicinity\nfor uncertain reasons ; probably because its size makes\nany given toper feel ashamed of himself when he sees\nits bottom in drinking it empty.\nJacob, on receiving the order to see if the liquor was\nwarm enough, placidly dipped his forefinger into it by\nway of thermometer, and having pronounced it nearly\nof the proper degree, raised the cup and very civilly\nattempted to dust some of the\n<P 105>\nashes from the bottom\nwith the skirt of his smock-frock, because Shepherd Oak\nwas a stranger.\n\"A clane cup for the shepherd,' said the maltster\ncommandingly.\n\"No -- not at all,\" said Gabriel, in a reproving tone\nof considerateness. \"I never fuss about dirt in its pure\nstate, and when I know what sort it is.' Taking the\nmug he drank an inch or more from the depth of its\ncontents, and duly passed it to the next man.\nwouldn't think of giving such trouble to neighbours in\nwashing up when there's so much work to be done in\nthe world already,' continued Oak in a moister tone,\nafter recovering from the stoppage of breath which is\noccasioned by pulls at large mugs.\n' A right sensible man,' said Jacob.\n\" True, true ; it can't be gainsaid!.' observed a brisk\nyoung man -- Mark Clark by name, a genial and pleasant\ngentleman, whom to meet anywhcre in your travels was\nto know, to know was to drink with, and to drink with\nwas, unfortunately, to pay for.\n\"And here's a mouthful of bread and bacon that\nmis'ess have sent, shepherd. The cider will go down\nbetter with a bit of victuals. Don't ye chaw quite close,\nshepherd, for I let the bacon fall in the road outside as\nI was bringing it along, and may be 'tis rather gritty.\nThere, 'tis clane dirt; and we all know what that is,\nas you say, and you bain't a particular man we see,\nshepherd.'\n\" True, true -- not at all,' said the friendly Oak.\n'Don't let your teeth quite meet, and you won't feel\nthe sandiness at all. Ah !. 'tis wonderful what can be\ndone by contrivance .! '\n\" My own mind exactly, neighbour.'\n\" Ah, he's his grandfer's own grandson .! -- his grandfer\nwere just such a nice unparticular man !.' said the maltster.\n\" Drink, Henry Fray -- drink,' magnanimously said\nJan Coggan, a person who held Saint-Simonian notions\nof share and share alike where liquor was concerned, as\nthe vessel showed signs of approaching him in its gradual\nrevolution among them.\nHaving at this moment reached the end of a wistful\ngaze\n<P 106>\ninto mid-air, Henry did not refuse. He was a man\nof more than middle age, with eyebrows high up in his\nforehead, who laid it down that the law of the world\nwas bad, with a long-suffering look through his listeners\nat the world alluded to, as it presented itself to his\nimagination. He always signed his name 'Henery' --\nstrenuously insisting upon that spelling, and if any\npassing schoolmaster ventured to remark that the second\n'e' was superfluous and old-fashioned, he received the\nreply that ' H-e-n-e-r-y' was the name he was christened\nand the name he 'would stick to -- in the tone of one\nto whom orthographical differences were matters which\nhad a great deal to do with personal character.\nMr. Jan Coggan, who had passed the cup to Henery,\nwas a crimson man with a spacious countenance, and\nprivate glimmer in his eye, whose name had appeared\non the marriage register of Weatherbury and neighbour+\ning parishes as best man and chief witness in countless\nunions of the previous twenty years; he also very\nfrequently filled the post of head godfather in baptisms\nof the subtly-jovial kind.\n\" Come, Mark Clark -- come. Ther's plenty more\nin the barrel,' said Jan.\n\"Ay -- that I will; 'tis my only doctor,' replied Mr.\nClark, who, twenty years younger than Jan Coggan,\nrevolved in the same orbit. He secreted mirth on all\noccasions for special discharge at popular parties.\n\" Why, Joseph Poorgrass, ye han't had a drop! ' said\nMr. Coggan to a self-conscious man in the background,\nthrusting the cup towards him.\n\" Such a modest man as he is !. ' said Jacob Smallbury.\n\" Why, ye've hardly had strength of eye enough to look\nin our young mis'ess's face, so I hear, Joseph ?'\nAll looked at Joseph Poorgrass with pitying reproach.\n\" No -- I've hardly looked at her at all,' simpered\nJoseph, reducing his body smaller whilst talking,\napparently from a meek sense of undue prominence.\n\"And when I seed her, 'twas nothing but blushes with\nme!'\n' Poor feller,' said Mr. Clark.\n\"'Tis a curious nature for a man,' said Jan Coggan.\n<P 107>\n\" Yes,' continued Jdseph Poorgrass -- his shyness,\nwhich was so painful as a defect, filling him with a\nmild complacency now that it was regarded as an\ninteresting study. \" 'Twere blush, blush, blush with\nme every minute of the time, when she was speaking\nto me.'\n\"I believe ye, Joseph Poorgrass, for we all know ye\nto be a very bashful man.'\n\"'Tis a' awkward gift for a man, poor soul,' said the\nmaltster. \"And ye have suffered from it a long time,\nwe know.'\n\"Ay ever since I was a boy. Yes -- mother was\nconcerned to her heart about it -- yes. But twas all\nnought.'\n\"Did ye ever go into the world to try and stop it,\nJoseph Poorgrass ? '\n\"Oh ay, tried all sorts o' company. They took me\nto Greenhill Fair, and into a great gay jerry-go-nimble\nshow, where there were women-folk riding round --\nstanding upon horses, with hardly anything on but their\nsmocks; but it didn't cure me a morsel. And then I\nwas put errand-man at the Women's Skittle Alley at the\nback of the Tailor's Arms in Casterbridge. 'Twas a\nhorrible sinful situation, and a very curious place for a\ngood man. I had to stand and look ba'dy people in\nthe face from morning till night; but 'twas no use -- I\nwas just as-bad as ever after all. Blushes hev been\nin the family for generations. There, 'tis a happy pro+\nvidence that I be no worse.'\n\" True,' said Jacob Smallbury, deepening his thoughts\nto a profounder view of the subject. \"'Tis a thought\nto look at, that ye might have been worse; but even\nas you be, 'tis a very bad affliction for 'ee, Joseph. For\nye see, shepherd, though 'tis very well for a woman,\ndang it all, 'tis awkward for a man like him, poor\nfeller ? '\n\" 'Tis -- 'tis,' said Gabriel, recovering from a medita+\ntion. \" Yes, very awkward for the man.'\n\" Ay, and he's very timid, too,' observed Jan Coggan.\n\"Once he had been working late at Yalbury Bottom,\nand had had a drap of drink, and lost his way as he was\ncoming home-along through Yalbury Wood, didn't ye,\nMaster Poorgrass ? '\n\" No, no, no ; not that story !' expostulated the\nmodest man, forcing a laugh to bury his concern.\n<P 108>\n\" --  --  And so 'a lost himself quite,' continued Mr\nCoggan, with an impassive face, implying that a true\nnarrative, like time and tide, must run its course and\nwould respect no man. \"And as he was coming along\nin the middle of the night, much afeared, and not able\nto find his way out of the trees nohow, 'a cried out,\n\" Man-a-lost!. man-a-lost !.\" A owl in a tree happened\nto be crying \"Whoo-whoo-whoo !\" as owls do, you\nknow, shepherd ' (Gabriel nodded), \" and Joseph, all\nin a tremble, said, \" Joseph Poorgrass, of Weatherbury,\nsir.!\"\n\"No, no, now -- that's too much! ' said the timid\nman, becoming a man of brazen courage all of a sudden.\n\"I didn't say sir. I'll tike my oath I didn't say \" Joseph\nPoorgrass o' Weatherbury, sir.\" No, no ; what's right\nis right, and I never said sir to the bird, knowing very\nwell that no man of a gentleman's rank would be\nhollering there at that time o' night. \" Joseph Poor+\ngrass of Weatherbury,\"  -- that's every word I said, and\nI shouldn't ha' said that if 't hadn't been for Keeper\nDay's metheglin.... There, 'twas a merciful thing it\nended where it did.'\nThe question of which was right being tacitly waived\nby the company, Jan went on meditatively : --\n\"And he's the fearfullest man, bain't ye, Joseph?\nAy, another time ye were lost by Lambing-Down Gate,\nweren't ye, Joseph ? '\n\"I was,' replied Poorgrass, as if there were some\nconditions too serious even for modesty to remember\nitself under, this being one.\n' Yes ; that were the middle of the night, too. The\ngate would not open, try how he would, and knowing\nthere was the Devil's hand in it, he kneeled down.'\n'Ay,' said Joseph, acquiring confidence from the\nwarmth of the fire, the cider, and a perception of the\nnarrative capabilities of the experience alluded to.\n\" My heart died within me, that time; but I kneeled\ndown and said the Lord's Prayer, and then the Belie\nTHE CHAT\nright through, and then the Ten Commandments, in\nearnest prayer. But no, the gate wouldn't open; and\nthen I went on with Dearly Beloved Brethren, and,\nthinks I, this makes four, and 'tis all I know out of\nbook, and if this don't do it nothing will, and I'm a\nlost man. Well, when I got to\n<P 109>\nSaying After Me, I\nrose from my knees and found the gate would open\n -- yes, neighbours, the gate opened the same as ever.'\n  A meditation on the obvious inference wsas indulged\nin by all, and during its continuance each directed his\nvision into the ashpit, which glowed like a desert in\nthe tropics under a vertical sun, shaping their eyes long\nand liny, partly because of the light, partly from the\ndepth of the subject discussed.\n  Gabriel broke the silence. \"What sort of a place\nis this to live at, and what sort of a mis'ess is she to\nwork under?' Gabriel's bosom thrilled gently as he\nthus slipped under the notice of the assembly the inner+\nmost subject of his heart.\n  \"We d' know little of her -- nothing. She only\nshowed herself a few days ago. Her uncle was took\nbad, and the doctor was called with his world-wide\nskill; but he couldn't save the man. As I take it,\nshe's going to keep on the farm.\n  \"That's abouyt the shape o't, 'a b'lieve,' said Jan\nuncle was a very fair sort of man. Did ye know en,\nbe under 'em as under one here and there. Her\nuncle was a very fair sort of man. Did ye know 'en,\nshepherd -- a bachelor-man ? '\n  \"Not at all.'\n  \"I used to go to his house a-courting my first wife,\nCharlotte, who was his dairymaid. Well, a very good+\nhearted man were Farmer Everdene, and I being a\nrespectable young fellow was allowed to call and see\nher and drink as much ale as I liked, but not to carry\naway any -- outside my skin I mane of course.'\n  \"Ay, ay, Jan Coggan; we know yer maning.'\n  \"And so you see 'twas beautiful ale, and I wished\nto value his kindness as much as I could, and not to\nbe so ill-mannered as to drink only a thimbleful, which\nwould have been insulting the man's generosity  --  -- '\n  \"True, Master Coggan, 'twould so,' corroborated\nMark Clark.\n  \" --  -- And so I used to eat a lot of salt fish afore\ngoing, and then by the time I got there I were as dry\nas a lime-basket -- so thorough dry that that ale would\nslip down  -- ah, 'twould slip down sweet! Happy\ntimes! heavenly times! Such lovely drunks as I\nused to have at that house! You can mind, Jacob?\nYou used to go wi' me sometimes.'\n<P 110>\n  \"I can -- I can,' said Jacob. \"That one, too, that\nwe had at Buck's Head on a White Monday was a\npretty tipple.'\n  \"'Twas. But for a wet of the better class, that\nbrought you no nearer to the horned man than you were\nafore you begun, there was none like those in Farmer\nEverdene's kitchen. Not a single damn allowed; no,\nnot a bare poor one, even at the most cheerful moment\nwhen all were blindest, though the good old word of\nsin thrown in here and there at such times is a great\nrelief to a merry soul.'\n  \"True,' said the maltster. \"Nater requires her\nswearing at the regular times, or she's not herself; and\nunholy exclamations is a necessity of life.'\n  \"But Charlotte,' continued Coggan -- \"not a word of\nthe sort would Charlotte allow, nor the smallest item of\ntaking in vain.... Ay, poor Charlotte, I wonder if she\nhad the good fortune to get into Heaven when 'a died!.\nBut 'a was never much in luck's way, and perhaps 'a\nwent downwards after all, poor soul.'\n  \"And did any of you know Miss Everdene's-father\nand mother?' inquired the shepherd, who found some\ndifficulty in keeping the conversation in the desired\nchannel.\nTHE CHAT\n  \"I knew them a little,' said Jacob Smallbury; \"but\nthey were townsfolk, and didn't live here. They've\nbeen dead for years. Father, what sort of people were\nmis'ess' father and mother?'\n  \"Well,' said the maltster, \"he wasn't much to look\nat; but she was a lovely woman. He was fond enough\nof her as his sweetheart.'\n  \"Used to kiss her scores and long-hundreds o times,\nso 'twas said,' observed Coggan.\n  \"He was very proud of her, too, when they were\nmarried, as I've been told,' said the maltster.\n  \"Ay,' said Coggan. \"He admired her so much that\nhe used to light the candle three time a night to look\nat her.'\n  \"Boundless love; I shouldn't have supposed it in the\nuniverse!' murmered Joseph Poorgrass, who habitually\nspoke on a large scale in his moral reflections.\n  \"Well, to be sure,' said Gabriel.\n  \"Oh, 'tis true enough. I knowed the man and\nwoman both well. Levi Everdene -- that was the man's\nname, sure. \"\"Man,''\n<P 111>\nsaith I in my hurry, but he were\nof a higher circle of life than that -- 'a was a gentleman+\ntailor really, worth scores of pounds. And he became\na very celebrated bankrupt two or three times.'\n  \"Oh, I thought he was quite a common man!.' said\nJoseph.\n  \"O no, no! That man failed for heaps of money;\nhundreds in gold and silver.'\n  The maltster being rather short of breath, Mr. Coggan,\nafter absently scrutinising a coal which had fallen among\nthe ashes, took up the narrative, with a private twirl of\nhis eye: --\n  \"Well, now, you'd hardly believe it, but that man --\nhusbands alive, after a while. Understand' 'a didn't\nwant to be fickle, but he couldn't help it. The poor\nfeller were faithful and true enough to her in his wish,\nbut his heart would rove, do what he would. He spoke\nto me in real tribulation about it once. \"\"Coggan,''\nhe said, \"\"I could never wish for a handsomer woman\nthan I've got, but feeling she's ticketed as my lawful\nwife, I can't help my wicked heart wandering, do what\nI will.'' But at last I believe he cured it by making her\ntake off her wedding-ring and calling her by her maiden\nname as they sat together after the shop was shut, and\nso 'a would get to fancy she was only his sweetheart, and\nnot married to him at all. And as soon as he could\nthoroughly fancy he was doing wrong and committing\nthe seventh, 'a got to like her as well as ever, and they\nlived on a perfect picture of mutel love.'\n  \"Well, 'twas a most ungodly remedy,' murmured\nJoseph Poorgrass; \"but we ought to feel deep cheerful+\nness that a 'happy Providence kept it from being any\nworse. You see, he might have gone the bad road and\ngiven his eyes to unlawfulness entirely -- yes, gross un+\nlawfulness, so to say it.'\n  \"You see,' said Billy Smallbury, \"The man's will was\nto do right, sure enough, but his heart didn't chime in.'\n  \"He got so much better, that he was quite godly\nin his later years, wasn't he, Jan ?' said Joseph Poor+\ngrass. \"He got himself confirmed over again in a more\nserious way, and took to saying \"\"Amen'' almost as loud\nas the clerk, and he liked to copy comforting verses\nfrom the tombstones. He used, too, to hold the money+\nplate at Let Your Light so Shine, and stand\n<P 112>\ngodfather\nto poor little come-by-chance children; and he kept a\nmissionary' box upon his table to nab folks unawares\nwhen they called; yes, and he would-box the charity+\nboys' ears, if they laughed in church, till they could\nhardly stand upright, and do other deeds of piety\nnatural to the saintly inclined.'\n  \"Ay, at that time he thought of nothing but high\nthings,' added Billy Smallbury. \"One day Parson Thirdly\nmet him and said, \"\"Good-Morning, Mister Everdene; 'tis\nTHE CHAT\na fine day!'' \"\"Amen'' said Everdene, quite absent+\nlike, thinking only of religion when he seed a parson+\n  \"Their daughter was not at all a pretty chiel at that\ntime,' said Henery Fray. \"Never should have. thought\nshe'd have growed up such a handsome body as she is.'\n  \"'Tis to be hoped her temper is as good as her face.'\n  \"Well, yes; but the baily will have most to do with\nthe business and ourselves. Ah!' Henery gazed into\nthe ashpit, and smiled volumes of ironical knowledge.\n  \"A queer Christian, like the Devil's head in a cowl,\n  \"He is,' said Henery, implying that irony must cease\nat a certain point. \"Between we two, man and man, I\nbelieve that man would as soon tell a lie Sundays as\nworking-days -- that I do so.'\n  \"Good faith, you do talk!' said Gabriel.\n  \"True enough,' said the man of bitter moods, looking\nround upon the company with the antithetic laughter\nthat comes from a keener appreciation of the miseries\nof life than ordinary men are capable of. 'Ah, there's\npeople of one sort, and people of another, but that man\n -- bless your souls!'\n  Gabriel thought fit to change the subject. \"You\nmust be a very aged man, malter, to have sons growed\nmild and ancient' he remarked.\n  \"Father's so old that 'a can't mind his age, can ye,\nfather?' interposed Jacob. \"And he growled terrible\ncrooked too, lately' Jacob continued, surveying his\nfather's figure, which\n<P 113>\nwas rather more bowed than his own.\n\"Really one may say that father there is three-double.'\n  \"Crooked folk will last a long while,' said the maltster,\ngrimly, and not in the best humour.\n  \"Shepherd would like to hear the pedigree of yer\nlife, father -- wouldn't ye, shepherd ?\n  \"Ay that I should,' said Gabriel with the heartiness\nof a man who had longed to hear it for several months.\n\"What may your age be, malter?'\n  The maltster cleared his throat in an exaggerated\nform for emphasis, and elongating his gaze to the\nremotest point of the ashpit! said, in the slow speech\njustifiable when the importance of a subject is so\ngenerally felt that any mannerism must be tolerated\nin getting at it, \"Well, I don't mind the year I were\nborn in, but perhaps I can reckon up the places I've\nlived at, and so get it that way. I bode at Upper Long+\npuddle across there' (nodding to the north) \"till I were\neleven. I bode seven at Kingsbere' (nodding to the\neast) \"where I took to malting. I went therefrom to\nNorcombe, and malted there two-and-twenty years, and+\ntwo-and-twenty years I was there turnip-hoeing and\nharvesting. Ah, I knowed that old place, Norcombe,\nyears afore you were thought of, Master Oak' (Oak smiled\nsincere belief in the fact). \"Then I malted at Dur+\nnover four year, and four year turnip-hoeing; and\nI was fourteen times eleven months at Millpond St.\nJude's ' (nodding north-west-by-north). \"Old Twills\nwouldn't hire me for more than eleven months at a\ntime, to keep me from being chargeable to the parish\nif so be I was disabled. Then I was three year at\nMellstock, and I've been here one-and-thirty year come\nCandlemas. How much is that?\"\n  \"Hundred and seventeen,' chuckled another old\ngentleman, given to mental arithmetic and little con+\nversation, who had hitherto sat unobserved in a corner.\n  \"Well, then, that's my age,' said the maltster, em+\nphatically.\n  \"O no, father!' said Jacob. \"Your turnip-hoeing\nwere in the summer and your malting in the winter of\nthe same years, and ye don't ought to count-both halves\nfather.'\n<P 114>\n  \"Chok' it all! I lived through the summers, didn't\nI? That's my question. I suppose ye'll say next I be\nno age at all to speak of?'\n  \"Sure we shan't,' said Gabriel, soothingly.\n  \"Ye be a very old aged person, malter,' attested Jan\nmust have a wonderful talented constitution to be able\nto live so long, mustn't he, neighbours?'\n  \"True, true; ye must, malter, wonderful;' said the\nmeeting unanimously.\n  The maltster, being know pacified, was even generous\nenough to voluntarily disparage in a slight degree the\nvirtue of having lived a great many years, by mentioning\nthat the cup they were drinking out of was three years\nolder than he.\n  While the cup was being examined, the end of\nGabriel Oak's flute became visible over his smock-frock\nI seed you blowing into a great flute by now at Caster+\nbridge?'\n  \"You did,' said Gabriel, blushingh faintly. \"I've been\nin great trouble, neighbours, and was driven to it.\ntake it careless-like, shepherd and your time will come\ntired?'\n  \"Neither drum nor trumpet have I heard since\nChristmas,' said Jan Coggan. \"Come, raise a tune,\nMaster Oak!'\n  \"That I will,' said Gabriel, pulling out his flute and\nputting it together. \"A poor tool, neighbours; but\nsuch as I can do ye shall have and welcome.'\n  Oak then struck up \"Jockey to the Fair,' and played\nthat sparkling melody three times through accenting the\nnotes in the third round in a most artistic and lively\nmanner by bending his body in small jerks and tapping\nwith his foot to beat time.\n  \"He can blow the flute very well -- that 'a can,' said\na young married man, who having no individuality worth\nmentioning was known as \"Susan Tall's husband.' He\ncontinued, \"I'd as lief as not be able to blow into a\nflute as well-as that.'\n<P 115>\n  \"He's a clever man, and 'tis a true comfort for us to\nhave such a shepherd,' murmured Joseph Poorgrass, in\na soft cadence. \"We ought to feel full o' thanksgiving\nthat he's not a player of ba'dy songs 'instead of these\nmerry tunes; for 'twould have been just as easy for God\nto have made the shepherd a loose low man -- a man of\niniquity, so to speak it -- as what he is. Yes, for our wives'\nand daughters' sakes we should feel real thanks giving.'\n  \"True, true, -- real thanksgiving!' dashed in Mark\nClark conclusively, not feeling it to be of any conse+\nquence to his opinion that he had only heard about a\nword and three-quarters of what Joseph had said.\n  \"Yes,' added Joseph, beginning to feel like a man in\nthe Bible; \"for evil do thrive so in these times that ye\nmay be as much deceived in the clanest shaved and\nwhitest shirted man as in the raggedest tramp upon the\nturnpike, if I may term it so.'\n  \"Ay, I can mind yer face now, shepherd,' said\nHenery Fray, criticising Gabriel with misty eyes as he\nentered upon his second tune. \"Yes -- now I see 'ee\nblowing into the flute I know 'ee to be the same man\nI see play at Casterbridge, for yer mouth were scrimped\nup and yer eyes a-staring out like a strangled man's --\njust as they be now.'\n  \"'Tis a pity that playing the flute should make a man\nlook such a scarecrow,' observed Mr. Mark Clark, with\nadditional criticism of Gabriel's countenance, the latter\nperson jerking out, with the ghastly grimace required by\nthe instrument, the chorus of \"Dame Durden!\n  \"I hope you don't mind that young man's bad\nmanners in naming your features?' whispered Joseph to\nGabriel.\n  \"Not at all,' said Mr. Oak.\n  \"For by nature ye be a very handsome man,\nshepherd,' continued Joseph Poorgrass, with winning\nsauvity.\n  \"Ay, that ye be, shepard,' said the company.\n  \"Thank you very much,' said Oak, in the modest\ntone good\n<P 116>\nmanners demanded, thinking, however, that\nhe would never let Bathsheba see him playing the\nflute; in this severe showing s discretion equal to that\nrelated to its sagacious inventress, the divine Minerva\nherself.\n  \"Ah, when I and my wife were married at Norcombe\nChurch,' said the old maltster, not pleased at finding\nhimself left out of the subject \"we were called the\nhandsomest couple in the neighbourhood -- everybody\nsaid so.'\n  \"Danged if ye bain't altered now, malter,' said a voice\nwith the vigour natural to the enunciation of a remark+\nably evident truism. It came from the old man in the\nbackground, whose offensiveness and spiteful ways were\nbarely atoned for by the occasional chuckle he con+\ntributed to general laughs.\n  \"O no, no,' said Gabriel.\n  \"Don't ye play no more shepherd ' said Susan Tall's\nhusband, the young married man who had spoken once\nbefore. \"I must be moving and when there's tunes\ngoing on I seem as if hung in wires. If I thought after\nI'd left that music was still playing, and I not there, I\nshould be quite melancholy-like.'\n  \"What's yer hurry then, Laban?' inquired Coggan+\n\"You used to bide as late as the latest.'\n  \"Well, ye see, neighbours, I was lately married to a\nwoman, and she's my vocation now, and so ye see --  -- '\nThe young man hated lamely.\n  \"New Lords new laws, as the saying is, I suppose,'\nremarked Coggan.\n  \"Ay, 'a b'lieve -- ha, ha!' said Susan Tall's husband,\nin a tone intended to imply his habitual reception of\njokes without minding them at all.   The young man\nthen wished them good-night and withdrew.\n  Henery Fray was the first to follow. Then Gabriel\narose and went off with Jan Coggan, who had offered\nhim a lodging. A few minutes later, when the remaining\nones were on their legs and about to depart, Fray came\nback again in a hurry. Flourishing his finger ominously\nhe threw a gaze teeming with tidings just -- where his eye\nalighted by accident, which happened to be in Joseph\nPoorgrass's face.\n<P 117>\n  \"O -- what's the matter, what's the matter, Henery?'\nsaid Joseph, starting back.\n  \"What's a-brewing, Henrey?' asked Jacob and Mark\nClark.\n  \"Baily Pennyways -- Baily Pennyways -- I said so; yes,\nI said so!'\n  \"What, found out stealing anything?'\n  \"Stealing it is. The news is, that after Miss\nEverdene got home she went out again to see all was\nsafe, as she usually do, and coming in found Baily\nPennyways creeping down the granary steps with half a\na bushel of barley. She fleed at him  like a cat -- never\nsuch a tomboy as she is -- of course I speak with closed\ndoors?'\n  \"You do -- you do, Henery.'\n  \"She fleed at him, and, to cut a long story short,\nhe owned to having carried off five sack altogether, upon\nher promising not to persecute him. Well, he's turned\nout neck and crop, and my question is, who's going to\nbe baily now?'\n  The question was such a profound one that Henery\nwas obliged to drink there and then from the large\ncup till the bottom was distinctly visible inside. Before\nhe had replaced it on the table, in came the young man,\nSusan Tall's husband, in a still greater hurry.\n  \"Have ye heard the news that's all over parish?'\n  \"About Baily Pennyways?'\n  \"But besides that?'\n  \"No -- not a morsel of it!' they replied, looking into\nthe very midst of Laban Tall as if to meet his words\nhalf-way down his throat.\n  \"What a night of horrors!' murmured Joseph Poor+\ngrass, waving his hands spasmodically. \"I've had the\nnews-bell ringing in my left ear quite bad enough for a\nmurder, and I've seen a magpie all alone!'\n  \"Fanny Robin -- Miss everdene's youngest servant --\ncan't be found. They've been wanting to lock up the\ndoor these two hours, but she isn't come in. And they\ndon't know what to do about going to hed for fear of\nlocking her out. They wouldn't be so concerned if she\nhadn't been noticed in such low spirits\n<P 118>\nthese last few\ndays, and Maryann d'think the beginning of a crowner's\ninquest has happened to the poor girl.'\n  \"O -- 'tis burned -- 'tis burned!' came from Joseph\nPoorgrass's dry lips.\n  \"No -- 'tis drowned!' said 'Tall.\n  \"Or 'tis her father's razor!' suggested Billy Smallbury,\nwith a vivid sense of detail.\n  \"Well -- Miss Everdene wants to speak to one or two\nof us before we go to bed. What with this trouble about\nthe baily, and now about the girl, mis'ess is almost wild.'\n  They all hastened up the lane to the farmhouse,\nexcepting the old maltster, whom neither news, fire,\nrain, nor thunder could draw from his hole. There, as\nthe others' footsteps died away he sat down again and\ncontinued gazing as usual into the furnace with his red,\nbleared eyes.\n  From the bedroom window above their heads Bath+\nsheba's head and shoulders, robed in mystic white, were\ndimly seen extended into the air.\n  \"Are any of my men among you?' she said anxiously.\n  \"Yes, ma'am, several,' said Susan Tall's husband.\n  \"Tomorrow morning I wish two or three of you to\nmake inquiries in the villages round if they have seen\nsuch a person as Fanny Robin. Do it quietly; there is\nno reason for alarm as yet. She must have left whilst\nwe were all at the fire.'\n  \"I beg yer pardon, but had she any young man court+\ning her in the parish, ma'am?\" asked Jacob Smallbury.\n  \"I don't know,' said Bathsheba.\n  \"I've never heard of any such thing, ma'am,' said\ntwo or three.\n  \"It is hardly likely, either,' continued Bathsheba.\n\"For any lover of hers might have come to the house if\nhe had been a respectable lad. The most mysterious\nmatter connected with her absence -- indeed, the only\nthing which gives me serious alarm -- is that she was\nseen to go out of the house by Maryann with only her\nindoor working gown on -- not even a bonnet.'\n  \"And you mean, ma'am, excusing my words, that a\nyoung\n<P 119>\nwoman would hardly go to see her young man\nwithout dressing up,' said Jacob, turning his mental\nvision upon past experiences. \"That's true -- she would\nnot, ma'am.'\n  \"She had, I think, a bundle, though I couldn't see\nvery well,' said a female voice from another window,\nwhich seemed that of Maryann. \"But she had no\nyoung man about here. Hers lives in Casterbridge, and\nI believe he's a soldier.'\n  \"Do you know his name?' Bathsheba said.\n  \"No, mistress; she was very close about it.'\n  \"Perhaps I might be able to find out if I went to\nCasterbridge barracks,' said William Smallbury.\n  \"Very well; if she doesn't return tomorrow, mind\nyou go there and try to discover which man it is, and\nsee him. I feel more responsible than I should if she\nhad had any friends or relations alive. I do hope she\nhas come to no harm through a man of that kind....\nAnd then there's this disgraceful affair of the bailiff --\nbut I can't speak of him now.'\n  Bathsheba had so many reasons for uneasiness that\nit seemed she did not think it worth while to dwell\nupon any particular one. \"Do as I told you, then'\nshe said in conclusion, closing the casement.\n  \"Ay, ay, mistress; we will,' they replied, and moved\naway.\n  That night at Coggan's, Gabriel Oak, beneath the\nscreen of closed eyelids, was busy with fancies, and full\nof movement, like a river flowing rapidly under its ice.\nNight had always been the time at which he saw Bath+\nsheba most vividly, and through the slow hours of\nshadow he tenderly regarded her image now. It is\nrarely that the pleasures of the imagination will compen+\nsate for the pain of sleeplessness, but they possibly did\nwith Oak to-night, for the delight of merely seeing her\neffaced for the time his perception of the great differ+\nence between seeing and possessing.\n  He also thought of Plans for fetching his few utensils\nand books from Norcombe. The Young Man's Best\nCompanion, The Farrier's Sure Guide, The Veterinary\nSurgeon, Paradise Lost, The Pilgrim's Progress, Robinson\nCrusoe, Ash's Dictionary, the Walkingame's Arithmetic,\nconstituted his library;\n<P 120>\nand though a limited series, it was\none from which he had acquired more sound informa+\ntion by diligent perusal than many a man of opportunities\nhas done from a furlong of laden shelves.\n<C ix>\n<P 121>\nTHE HOMESTEAD -- A VISITOR -- HALF-CONFIDENCES\nBy daylight, the Bower of Oak's new-found mistress,\nBathsheba Everdene, presented itself as a hoary build+\ning, of the early stage of Classic Renaissance as regards\nits architecture, and of 'a proportion which told at a\nglance that, as is so frequently the case, it had once\nbeen the memorial hall upon a small estate around it,\nnow altogether effaced as a distinct property, and merged\nin the vast tract of a non-resident landlord, which com+\nprised several such modest demesnes.\n  Fluted pilasters, worked from the solid stone,\ndecorated its front, and above the roof the chimneys\nwere panelled or columnar, some coped gables with\nfinials and like features still retaining traces of their\nGothic extraction. Soft Brown mosses, like faded\nvelveteen, formed cushions upon the stone tiling, and\ntufts of the houseleek or sengreen sprouted from the\neaves of the low surrounding buildings. A gravel walk\nleading from the door to the road in front was encrusted\nat the sides with more moss -- here it was a silver-green\nvariety, the nut-brown of the gravel being visible to the\nwidth of only a foot or two in the centre. This circum+\nstance, and the generally sleepy air of the whole prospect\nhere, together with the animated and contrasting state\nof the reverse facade, suggested to the imagination that\non the adaptation of the building for farming purposes\nthe vital principle' of the house had turned round inside\nits body to face the other way. Reversals of this kind,\nstrange deformities, tremendous paralyses, are often seen\nto be inflicted by trade upon edifices -- either individual\nor in the aggregate as streets and towns -- which were\noriginally planned for pleasure alone.\n  Lively voices were heard this morning in the upper\nrooms, the main staircase to which was of hard oak, the\nbalusters, heavy as bed-posts, being turned and moulded\nin the quaint\n<P 122>\nfashion of their century, the handrail as\nstout as a parapet-top, and the stairs themselves con+\ntinually twisting round like a person trying to look over\nhis shoulder. Going up, the floors above were found\nto have a very irregular surface, rising to ridges, sinking\ninto valley; and being just then uncarpeted, the face\nof the boards was seen to be eaten into innumerable\nthe opening and shutting of every door a tremble\nfollowed every bustling movement, and a creak accom+\npanied a walker about the house like a spirit, wherever+\nhe went.\n  In the room from which the conversation proceeded,\nBathsheba and her servant-companion, Liddy Small+\nbury were to be discovered sitting upon the floor, and\nsorting a complication of papers, books, bottles, and\nrubbish spread out thereon -- remnants from the house+\nhold stores of the late occupier. Liddy, the maltster's\ngreat-granddaughter, was about Bathsheba's equal in\nage, and her face was a prominent advertisement of the\nfeatures' might have lacked in form was amply made up\nfor by perfection  of hue, which at this winter-time was\nthe softened ruddiness on a surface of high rotundity\nand, like the presentations of those great colourists, it\nwas a face which kept well back from the boundary\nbetween comeliness and the ideal. Though elastic in\nnature she was less daring than Bathsheba, and occa+\nsionally showed some earnestness, which consisted half\nof genuine feeling, and half of mannerliness superadded\nby way of duty.\n  Through a partly-opened door the noise of a scrubbing+\nbrush led up to the charwoman, Maryann Money, a person\nwho for a face had a circular disc, furrowed less by age\nthan by long gazes of perplexity at distant objects. To\nthink of her was to get good-humoured; to speak of\nher was to raise the image of a dried Normandy\npippin.\n  \"Stop your scrubbing a moment,' said Bathsheba\nthrough the door to her. \"I hear something.'\n  Maryann suspended the brush.\n<P 123>\n  The tramp of a horse was apparent, approaching the\nfront of the building. The paces slackened, turned in\nat the wicket, and, what was most unusual, came up\nthe mossy path close to the door. The door was\ntapped with the end of a crop or stick.\n  \"What impertinence!' said Liddy, in a low voice.\n\"To ride up the footpath like that! Why didn't he\nstop at the gate? Lord! \"tis a gentleman! I see the\ntop of his hat.'\n  \"Be quiet!' said Bathsheba.\n  The further expression of Liddy's concern was con+\ntinued by aspect instead of narrative.\n  \"Why doesn't Mrs. Coggan go to the door?' Bath+\nsheba continued.\n  Rat-tat-tat-tat, resounded more decisively from Bath+\nsheba's oak.\n  \"Maryann, you go!' said she, fluttering under the\nonset ot a crowd of romantic possibilities.\n  \"O ma'am -- see, here's a mess!'\n  The argument was unanswerable after a glance at\nMaryann.\n  \"Liddy -- you must,' said Bathsheba.\n  Liddy held up her hands and arms, coated with dust\nfrom the rubbish they were sorting, and looked implor+\ningly at her mistress.\n  \"There -- -Mrs. Coggan is going!' said Bathsheba,\nexhaling her relief in the form of a long breath which\nhad lain in her bosom a minute or more.\n  The door opened, and a deep voice said --\n  \"Is Miss Everdene at home?'\n  \"I'll see, sir,' said Mrs. Coggan, and in a minute\nappeared in the room.\n  \"Dear, what a thirtover place this world is!' con+\ntinued Mrs. Coggan (a wholesome-looking lady who\nhad a voice for each class of remark according to the\nemotion involved; who could toss a pancake or twirl\na mop with the accuracy of pure mathematics, and\nwho at this moment showed hands shaggy with frag+\nments of dough and arms encrusted with flour). \"I\nam never up to my elbows, Miss, in making a pudding\nbut one of two things do happen -- either my nose must\nneeds begin\n<P 124>\ntickling, and I can't live without scratching\n  A woman's dress being a part of her countenance,\nand any disorder in the one being of the same nature\nwith a malformation or wound in the other, Bathsheba\nsaid at once --\n  \"I can't see him in this state. Whatever shall I do?'\n  Not-at-homes were hardly naturalized in Weatherbury\nfarmhouses, so Liddy suggested -- \"Say you're a fright\nwith dust, and can't come down.'\n  \"Yes -- that sounds very well,' said Mrs. Coggan,\ncritically.\n  \"Say I can't see him -- that will do.'\n  Mrs. Coggan went downstairs, and returned the\nanswer as requested, adding, however, on her own\nresponsibility, \"Miss is dusting bottles, sir, and is quite\na object -- that's why 'tis.'\n  \"Oh, very well,' said the deep voice,' indifferently.\n\"All I wanted to ask was, if anything had been heard\nof Fanny Robin?'\n  \"Nothing, sir -- but we may know to-night. William\nSmallbury is gone to Casterbridge, where her young\nman lives, as is supposed, and the other men be inquir+\ning about everywhere.'\n  The horse's tramp then recommenced and -retreated,\nand the door closed.\n  \"Who is Mr. Boldwood?' said Bathsheba.\n  \"A gentleman-farmer at Little Weatherbury.'\n  \"Married?'\n  \"No, miss.'\n  \"How old is he?'\n  \"Forty, I should say -- very handsome -- rather stern+\nlooking -- and rich.'\n  \"What a bother this dusting is!  I am always in\nsome unfortunate plight or other;' Bathsheba said,\ncomplainingly. \"Why should he inquire aboat Fanny?'\n  \"Oh, because, as she had no friends in her childhood,\nhe took her and put her to school, and got her her\nplace here under your uncle. He's a very kind man\nthat way, but Lord -- there!'\n  \"What?'\n  \"Never was such a hopeless man for a woman!\nHe's been\n<P 125>\ncourted by sixes and sevens -- all the girls,\ngentle and simple, for miles round, have tried him. Jane\nPerkins worked at him for two months like a slave,\nand the two Miss Taylors spent a year upon him,\nand he cost Farmer Ives's daughter nights of tears\nand twenty pounds' worth of new clothes; but Lord --\nthe money might as well have been thrown out of the\nwindow.'\n  A little boy came up at this moment and looked in\nupon them. This child was one of the Coggans who,\nwith the Smallburys, were as common among the\nfamilies of this district as the Avons and Derwents\namong our rivers. He always had a loosened tooth or\na cut finger to show to particular friends, which he did\nwith an air of being thereby elevated above the common\nherd of afflictionless humanity -- to which exhibition\nof congratulation as well as pity.\n  \"I've got a pen-nee!' said Master Coggan in a\nscanning measure.\n  \"Well -- who gave it you, Teddy?' said Liddy.\n  \"Mis-terr Bold-wood! He gave it to me for opening\nthe gate.'\n  \"What did he say?'\n  \"He said \"Where are you going, my little man?''\nand I said, \"To Miss Everdene's please;'' and he said,\n\"She is a staid woman, isn't she, my little man?' and\nI said, \"\"Yes.'''\n  \"You naughty child! What did you say that for?'\n  \"Cause he gave me the penny!'\n  \"What a pucker evrything is in!' said Bathsheba,\ndiscontentedly when the child had gone. 'Get away,\nthing! You ought to be married by this time, and not\nhere troubling me!'\n  \"Ay, mistress -- so I did. But what between the poor\nmen I won't have, and the rich men who won't have me,\nI stand as a pelicon in the wilderness!'\n  \"Did anybody ever want to marry you miss?' Liddy\nventured to ask when they were again alone. \"Lots of\n'em, i daresay.?'\n  Bathsheba paused, as if about to refuse a reply, but\nthe temptation to say yes, since it was really in her\npower was irresistible by aspiring virginity, in spite of\nher spleen at having been published as old.\n<P 126>\n  \"A man wanted to once,' she said, in a highly experi+\nenced tone and the image of Gabriel Oak, as the farmer,\nrose before her.\n  \"How nice it must seem!' said Liddy, with the fixed\nfeatures of mental realization. \"And you wouldn't have\nhim?'\n  \"He wasn't quite good enough for me.'\n  \"How sweet to be able to disdain, when most of us\nare glad to say, \"\"Thank you!'' I seem I hear it.\n\"\"No, sir -- I'm your better,'' or \"\"Kiss my foot, sir; my\nface is for mouths of consequence.'' And did you love\nhim, miss?'\n  \"Oh, no. But I rather liked him.'\n  \"Do you now?'\n  \"Of course not -- what footsteps are those I hear?'\n  Liddy looked from a back window into the courtyard\nbehind, which was now getting low-toned and dim with\nthe earliest films of night. A crooked file of men was\napproaching the back door. The whole string of trailing\nindividuals advanced in the completest balance of inten+\ntion, like the remarkable creatures known as Chain\nSalpae, which, distinctly organized in other respects, have\none will common to a whole family. Some were, as\nusual, in snow-white smock-frocks of Russia duck, and\nsome in whitey-brown ones of drabbet -- marked on the\nwrists, breasts, backs, and sleeves with honeycomb-work.\nTwo or three womcn in pattens brought up the rear.\n  \"The Philistines be upon us,' said Liddy, making her\nnose white against the glass.\n  \"Oh, very well. Maryann, go down and keep them\nin the kitchen till I am dressed, and then show them in\nto me in the hall.'\n<C x>\n<P 127>\nHALF-AN-HOUR later Bathsheba, in finished dress,\nand followed by Liddy, entered the upper end of the old\nhall to find that her men had all deposited themselves on\na long form and a settle at the lower extremity. She sat\ndown at a table and opened th e time-book, pen in her\nhand, with a canvas money-bag beside her. From this\nshe poured a small heap of coin. Liddy chose a\nposition at her elbow and began to sew, sometimes\npausing and looking round, or with the air of a privileged\nperson, taking up one of the half-sovereigns lying before\nher and surveying it merely as a work of art, while\nstrictly preventing her countenance from expressing any\nwish to possess it as money.\n  \"Now before I begin, men,' said Bathsheba, \"I have\ntwo matters to speak of. The first is that the bailiff is\ndismissed for thieving, and that I have formed a resolu+\ntion to have no bailiff at all, but to manage everything\nwith my own head and hands.'\n  The men breathed an audible breath of amazement.\n  \"The next matter is, have you heard anything of\nFanny?'\n  \"Nothing, ma'am.\n  \"Have you done anything?'\n  \"I met Farmer Boldwood,' said Jacob Smallbury, 'and\nI went with him and two of his men, and dragged New+\nmill Pond, but we found nothing.'\n  \"And the new shepherd have been to Buck's Head,\nby Yalbury, thinking she had gone there, but nobody\nhad seed her,' said Laban Tall.\n  \"Hasn't William Smallbury been to Casterbridge?'\n  \"Yes, ma'am, but he's not yet come home. He\npromised to be back by six.'\n  \"It wants a quarter to six at present,' said Bathsheba,\n \n<P 128>\nlooking at her watch. \"I daresay he'll be in directly.\nWell, now then' -- she looked into the book -- \"Joseph\nPoorgrass, are you there?'\n  \"Yes, sir -- ma'am I mane,' said the person addressed.\n\"I be the personal name of Poorgrass.'\n  \"And what are you?'\n  \"Nothing in my own eye. In the eye of other people\n -- well, I don't say it; though public thought will out.'\n  \"What do you do on the farm?'\n  \"I do do carting things all the year, and in seed time I\nshoots the rooks and sparrows, and helps at pig-killing, sir.'\n  \"How much to you ?'\n  \"Please nine and ninepence and a good halfpenny\nwhere 'twas a bad one, sir -- ma'am I mane.'\n  \"Quite correct. Now here are ten shillings in addi+\ntion as a small present, as I am a new comer.'\n  Bathsheba blushed slightly at the sense of being\ngenerous in public, and Henery Fray, who had drawn\nup towards her chair, lifted his eyebrows and fingers to\nexpress amazement on a small scale.\n  \"How much do I owe you -- that man in the corner --\nwhat's your name?' continued Bathsheba.\n  \"Matthew Moon, ma'am,' said a singular framework of\nclothes with nothing of any consequence inside them,\nwhich advanced with the toes in no definite direction\nforwards, but turned in or out as they chanced to swing.\n  \"Matthew Mark, did you say? -- speak out -- I shall\nnot hurt you,' inquired the young farmer, kindly.\n  \"Matthew Moon mem' said Henery Fray, correct+\ningly, from behind her chair, to which point he had\nedged himself.\n  \"Matthew Moon,' murmured Bathsheba, turning her\nbright eyes to the book. \"Ten and twopence halfpenny\nis the sum put down to you, I see?'\n  \"Yes, mis'ess,' said Matthew, as the rustle of wind\namong dead leaves.\n  \"Here it is and ten shillings. Now -the next -- Andrew\nRandle, you are a new man, I hear. How come you to\nleave your last farm?'\n<P 129>\n  \"P-p-p-p-p-pl-pl-pl-pl-l-l-l-l-ease, ma'am, p-p-p-p-pl-pl+\npl-pl-please, ma'am-please'm-please'm --  --  '\n  \"'A's a stammering man, mem,' said Henery Fray in\nan undertone, \"and they turned him away because the\nonly time he ever did speak plain he said his soul was\nhis own, and other iniquities, to the squire. \"A can cuss,\nmem, as well as you or I, but 'a can't speak a common\nspeech to save his life.'\n  \"Andrew Randle, here's yours -- finish thanking me\nin a day or two. Temperance Miller -- oh, here's another,\nSoberness -- both women I suppose?'\n  \"Yes'm. Here we be, 'a b'lieve,' was echoed in shrill\nunison.\n  \"What have you been doing?'\n  \"Tending thrashing-machine and wimbling haybonds,\nand saying \"\"Hoosh!'' to the cocks and hens when they\ngo upon your seeds and planting Early Flourballs and\nThompson's Wonderfuls with a dibble.'\n  \"Yes -- I see. Are they satisfactory women?' she\ninquired softly of Henery Fray.\n  \"O mem -- don't ask me! Yeilding women?' as\nscarlet a pair as ever was!' groaned Henery under his\nbreath.\n  \"Sit down.\n  \"Who, mem?'\n  \"Sit down,'\n  Joseph Poorgrass, in the background twitched, and\nhis lips became dry with fear of some terrible conse+\nquences, as he saw Bathsheba summarily speaking, and\nHenery slinking off to a corner.\n  \"Now the next. Laban Tall, you'll stay on working\nfor me?'\n  \"For you or anybody that pays me well, ma'am,'\nreplied the young married man.\n  \"True -- the man must live!' said a woman in the\nback quarter, who had just entered with clicking pattens.\n  \"What woman is that?\" Bathsheba asked.\n  \"I be his lawful wife!' continued the voice with\ngreater prominence of manner and tone. This lady\ncalled herself five-and-twenty, looked thirty, passed as\nthirty-five, and was forty. She was a woman who never,\nlike some newly married, showed\n<P 130>\nconjugal tenderness in\npublic, perhaps because she had none to show.\n  \"Oh, you are,' said Bathsheba. \"Well, Laban, will\nyou stay on ?'\n  \"Yes, he'll stay, ma'am!' said again the shrill tongue\nof Laban's lawful wife.\n  \"Well, he can speak for himself, I suppose.'\n  \"O Lord, not he, ma'am! A simple tool. Well\nenough, but a poor gawkhammer mortal,' the wife replied\n  \"Heh-heh-heh!' laughed the married man with a\nhideous effort of appreciation, for he was as irrepressibly\ngood-humoured under ghastly snubs as a parliamentary\ncandidate on the hustings.\n  The names remaining were called in the same\nmanner.\n  \"Now I think I have done with you,' said Bathsheba,\nclosing the book and shaking back a stray twine of hair.\n\"Has William Smallbury returned?'\n  \"No, ma'am.'\n  \"The new shepherd will want a man under him,'\nsuggested Henery Fray, trying to make himself official\nagain by a sideway approach towards her chair.\n  \"Oh -- he will. Who can he have?'\n  \"Young Cain Ball is a very good lad,' Henery said,\n\"and Shepherd Oak don't mind his youth?' he added,\nturning with an apologetic smile to the shepherd, who\nhad just appeared on the scene, and was now leaning\nagainst the doorpost with his arms folded.\n  \"No, I don't mind that,' said Gabriel.\n  \"How did Cain come by such a name?' asked\nBathsheba.\n  \"Oh you see, mem, his pore mother, not being a\nScripture-read woman made a mistake at his christening,\nthinking 'twas Abel killed Cain, and called en Cain,\nbut 'twas too late, for the name could never be got rid\nof in the parish. \"Tis very unfortunate for the boy.'\n  \"It is rather unfortunate.'\n  \"Yes. However, we soften it down as much as we\ncan, and call him Cainey. Ah, pore widow-woman!\nshe cried her heart\n<P 131>\nout about it almost. She was\nbrought up by a very heathen father and mother, who\nnever sent her to church or school, and it shows how\nthe sins of the parents are visited upon the children,\nmem.'\n  Mr. Fray here drew up his features to the mild degree\nof melancholy required when the persons involved in\nthe given misfortune do not belong to your own family.\n  \"Very well then, Cainey Ball to be under-shepherd\nAnd you quite understand your duties? -- you I mean,\nGabriel Oak?'\n  \"Quite well, I thank you Miss Everdene,' said\nShepard Oak from the doorpost. \"If I don't, I'll\ninquire.' Gabriel was rather staggered by the remark+\nable coolness of her manner. Certainly nobody without\nprevious information would have dreamt that Oak and\nthe handsome woman before whom he stood had ever\nbeen other than strangers. But perhaps her air was\nthe inevitable result of the social rise which had advanced\nher from a cottage to a large house and fields. The\ncase is not unexampled in high places. When, in the\nwritings of the later poets, Jove and his family are found\nto have moved from their cramped quarters on the peak\nof Olympus into the wide sky above it, their words show\na proportionate increase of arrogance and reserve.\nFootsteps were heard in the passage, combining in\ntheir character the qualities both of weight and measure,\nrather at the expense of velocity.\n(All.) 'Here's Billy Smallbury come from Caster+\nbridge.'\n' And what's the news ? ' said Bathsheba, as William,\nafter marching to the middle of the hall, took a hand+\nkerchief from his hat and wiped his forehead from its\ncentre to its remoter boundaries.\n'I should have been sooner, miss,' he said, 'if it\nhadn't been for the weather.' He then stamped with\neach foot severely, and on looking down his boots were\nperceived to be clogged with snow.\n'Come at last, is it ?' said Henery.\n\" Well, what about Fanny ? ' said Bathsheba.\n\"Well, ma'am, in round numbers, she's run away with\nthe soldiers,' said William.\n<P 132>\n\" No; not a steady girl like Fanny ! '\n\"I'll tell ye all particulars. When I got to Caster,\nbridge Barracks, they said, \" The Eleventh Dragoon+\nGuards be gone away, and new troops have come.\"\nThe Eleventh left last week for Melchester and onwards.\nThe Route came from Government like a thief in the\nnight, as is his nature to, and afore the Eleventh knew\nit almost, they wem on the march. They passed near\nhere.'\nGabriel had listened with interest. 'I saw them go,'\nhe said.\n' Yes,' continued William, ' they pranced down the\nstreet playing \"The Girl I Left Behind Me,' so 'tis\nsaid, in glorious notes of triumph. Every looker-on's\ninside shook with the blows of the great drum to his\ndeepest vitals, and there was not a dry eye throughout\nthe town among the public-house people and the name+\nless women !.'\n'But they're not gone to any war?'\n'No, ma'am; but they be gone to take the places\nof them who may, which is very close connected. And\nso I said to myself, Fanny's young man was one of the\nregiment, and she's gone after him. There, ma'am,\nthat's it in black and white.'\nGabriel remained musing and said nothing, for he\nwas in doubt.\n'Well, we are not likely to know more to-night, at\nany rate,' said Bathsheba. 'But one of you had better\nrun across to Farmer Boldwood's and tell him that\nmuch.'\nShe then rose; but before retiring, addressed a few\nwords to them with a pretty dignity, to which her\nmourning dress added a soberness that was hardly to\nbe found in the words themselves.\n'Now mind, you have a mistress instead of a master\nI don't yet know my powers or my talents in farming;\nbut I shall do my best, and if you serve me well, so\nshall I serve you. Don't any unfair ones among you\n(if there are any such, but I hope not) suppose that\nbecause I'm a woman I don't understand the difference\nbetween bad goings-on and good.'\n<P 133>\n(All.) 'Nom!.\n(Liddy.) 'Excellent well said.'\n'I shall be up before you are awake; I shall be\nafield before you are up ; and I shall have breakfasted\nbefore you are afield. In short, I shall astonish you all.\n(All.) 'Yes'm!'\n'And so good-night.'\n(All.) 'Good-night, ma'am.'\nThen this small-thesmothete stepped from the table,\nand surged out of the hall, her black silk dress licking\nup a few straws and dragging them along with a scratch+\ning noise upon the floor. biddy, elevating her feelings\nto the occasion from a sense of grandeur, floated off\nbehind Bathsheba with a milder dignity not entirely\nfree from travesty, and the door was closed.\n<C xi>\n<P 134>\nOUTSIDE THE BARRACKS -- SNOW -- A MEETING\nFOR dreariness nothing could surpass a prospect in the\noutskirts of a certain town and military station, many\nmiles north of Weatherbury, at a later hour on this\nsame snowy evening -- if that may be called a prospect\nof which the chief constituent was darkness.\nIt was a night when sorrow may come to the\nbrightest without causing any great sense of incongruity :\nwhen, with impressible persons, love becomes solicitous+\nness, hope sinks to misgiving, and faith to hope : when\nthe exercise of memory does not stir feelings of regret\nat opportunities for ambition that have been passed by,\nand anticipation does not prompt to enterprise.\nThe scene was a public path, bordered on the left\nhand by a river, behind which rose a high wall. On\nthe right was a tract of land, partly meadow'and partly\nmoor, reaching, at its remote verge, to a wide undulating\nuplan.\nThe changes of the seasons are less obtrusive on\nspots of this kind than amid woodland scenery. Still,\nto a close observer, they are just as perceptible ; the\ndifference is that their media of manifestation are less\ntrite and familiar than such well-known ones as the\nbursting of the buds or the fall of the leaf. Many are\nnot so stealthy and gradual as we may be apt to\nimagine in considering the general torpidity of a moor\nor waste. Winter, in coming to the country hereabout,\nadvanced in well-marked stages, wherein might have\nbeen successively observed the retreat of the snakes,\nthe transformation of the ferns, the filling of the pools,\na rising of fogs, the embrowning by frost, the collapse\nof the fungi, and an obliteration by snow.\nThis climax of the series had been reached to-night on\nthe aforesaid moor, and for the first time in the season\nits\n<P 135>\nirregularities were forms without features ; suggestive\nof anything, proclaiming nothing, and without more\ncharacter than that of being the limit of something\nelse -- the lowest layer of a firmament of snow. From\nthis chaotic skyful of crowding flakes the mead and\nmoor momentarily received additional clothing, only\nto appear momentarily more naked thereby. The vast\narch of cloud above was strangely low, and formed as\nit were the roof of a large dark cavern, gradually sinking\nin upon its floor; for the instinctive thought was that\nthe snow lining the heavens and that encrusting the\nearth would soon unite into one mass without any\nintervening stratum of air at all.\nWe turn our attention to the left-hand characteristics ;\nwhich were flatness in respect of the river, verticality\nin respect of the wall behind it, and darkness as to\nboth. These features made up the mass. If anything\ncould be darker than the sky, it was the wall, and if any\nthing could be gloomier than the wall it was the river\nbeneath. The indistinct summit of the facade was\nnotched and pronged by chimneys here and there, and\nupon its face were faintly signified the oblong shapes\nof windows, though only in the upper part. Below,\ndown to the water's edge, the flat was unbroken by\nhole or projection.\nAn indescribable succession of dull blows, perplexing\nin their regularity, sent their sound- with difficulty\nthrough the fluffy atmosphere. It was a neighbouring\nclock striking ten The bell was in the open air, and\nbeing overlaid with several inches of muffling snow, had\nlost its voiee for the time.\nAbout this hour the snow abated : ten flakes fell\nwhere twenty had fallen, then one had the room of\nten. Not long after a form moved by the brink of\nthe river.\nBy its outline upon the colourless background, a close\nobserver might have seen 'that it was small. This was\nall that was positively discoverable, though it seemed\nhuman.\nThe shape went slowly along, but without much\nexertion, for the snow, though sudden, was not as yet\nmore than two inches deep. At this time some words\nwere spoken aloud : --\n' One. Two. 'Three. Four. Five.'\n Between each utterance the little shape advanced\nabout half a dozen yards. It was evident now that\nthe windows high\n<P 136>\nin the wall were being counted.\nThe word 'Five' represented the fifth window from\nthe end of the wall.\nHere the spot stopped, and dwindled smaller. The\nfigure was stooping. Then a morsel of snow flew\nacross the river towards the fifth window. It smacked\nagainst the wall at a point several yards from its mark.\nThe throw was the idea of a man conjoined with the\nexecution of a woman. No man who had ever seen bird,\nrabbit, or squirrel in his childhood, could possibly have\nthrown with such utter imbecility as was shown here.\nAnother attempt, and another ; till by degrees the\nwall must have become pimpled with the adhering\nlumps of snow  At last one fragment struck the fifth\nwindow.\nThe river would have been; seen by day to be of\nthat deep smooth sort which races middle and' sides\nwith the same gliding precision, any irregularities of\nspeed being immediately corrected by a small whirl+\npool. Nothing was heard in reply to the signal but\nthe gurgle and cluck of one of these invisible wheels --\ntogether with a few small sounds which a sad man\nwould have called moans, and a happy man laughter --\ncaused by the flapping of the waters against trifling\nobjects in other parts of the stream.\nThe window was struck again in the same manner.\nThen a noise was heard, apparently produced by\nthe opening of the window. This was followed by a\nvoice from the same quarter.\n'Who's there ? '\nThe tones were masculine, and not those of surprise.\nThe high wall being that of a barrack, and marriage\nbeing looked upon with disfavour in the army, assigna+\ntions and communications had probably been made\nacross the river before tonight.\n\"Is it Sergeant Troy?' said the blurred spot in the\nsnow, tremulously.\nThis person was so much like a mere shade upon\nthe earth, and the other speaker so much a part of\nthe building, that one would have said the wall was\nholding a conversation with the snow.\n<P 137>\n'Yes,' came suspiciously from the shadow. ' What\ngirl are you ? '\n'O, Frank -- don't you know me ?' said the spot.\n'Your wife, Fanny Robin.'\n' Fanny !.' said the wall, in utter astonishment.\n'Yes,' said the girl, with a half-suppressed gasp of\nemotion.\nThere was something in the woman's tone which is\nnot that of the wife, and there was a mannerin the man\nwhich is rarely a husband's. The dialogue went on:\n'How did you come here ?'\n'I asked which was your window. Forgive me !. '\n\"I did not expect you to-night. Indeed, I did not\nthink you would come at all. It was a wonder you\nfound me here. I am orderly to-morrow.'\n'You said I was to come.'\n' Well -- I said that you might.'\n'Yes, I mean that I might. You are glad to see me,\nFrank ? '\n' O yes -- of course.'\n' Can you -- come to me !.'\n'My dear Fan, no .! The bugle has sounded, the\nbarrack gates are closed, and I have no leave. We are\nall of us as good as in the county gaol till to-morrow\nmorning.'\n' Then I shan't see you till then .! ' The words- were\nin a faltering tone of disappointment.\n' How did you get here from Weatherbury ? '\n'I walked -- some part of the way -- the rest by the\ncarriers.'\n' I am surprised.'\n' Yes -- so am I. And Frank, when will it 'be ? '\n' What ? '\n' That you promised.'\n\" I don't quite recollect.'\n'0 You do! Don't speak like that. It weighs me\nto the earth. It makes me say what ought to be said\nfirst by you.'\n' Never mind -- say it.'\n'0, must I? -- it is, when shall we be married,\nFrank ? '\n\" Oh, I \" see. Well --  you have to get proper\nclothes.'\n\"I have money. Will it be by banns or license ?'\n<P 138>\n\" Banns, I should think.'\n\" And we live in two parishes.'\n\"Do we ? What then?'\n\"My lodgings are in St. Mary's, and this is not. So\nthey will have to be published in both.'\n\"Is that the law?'\n\" Yes. O Frank -- you think me forward, I am\nafraid .! Don't, dear Frank -- will you -- for I love you so.\nAnd you said lots of times you would marry me, and\nand -- I -- I -- I --  -- '\n  \"Don't cry, now! It is foolish. If i said so, of\ncourse I will.'\n'And shall I put up the banns in my parish, and will\nyou in yours?'\n\"Yes'\n\"To-morrow?'\n\"Not tomorrow. We'll settle in a few days.'\n\"You have the permission of the officers?'\n\"No, not yet.'\n\"O -- how is it? You said you almost had before\nyou left Casterbridge.'\n\"The fact is, I forgot to ask. Your coming like this\nI'll go away now. Will you qoDe,and seq be to-morroy\nis so sudden and unexpected.'\n\"Yes -- yes -- it is. It was wrong of me to worry you.\nI'll go away now. Will you come and see me to-morrow,\nat Mrs. Twills's, in North Street? I don't like to come\nto the Barracks. There are bad women about, and they\nthink me one.'\n\"Quite,so. I'll come to you, my dean Good-night.'\n\"Good-night, Frank -- good-night!'\nAnd the noise was again heard of a window closing\nThe little spot moved away. When she passed the\ncorner a subdued exclamation was heard inside the\nwall.\n\"Ho -- ho -- Sergeant -- ho -- ho!' An expostulation\nfollowed, but it was indistinct; and it became lost amid\na low peal of laughter, which was hardly distinguishable\nfrom the gurgle of the tiny whirlpools outside.\n<C xii>\n<P 139>\nFARMERS -- A RULE -- IN EXCEPTION\nTHE first public evidence of Bathsheba's decision to\nbe a farmer in her own person and by proxy no more\nwas her appearance the following market-day in. the\ncornmarket at Casterbridge.\nThe low though extensive hall, supported by beams\nand pillars, and latterly dignified by-the name of Corn Ex+\nchange, was thronged with hot men who talked among\neach other in twos and threes, the speaker of the minute\nlooking sideways into his auditor's face and concentrating\nhis argument by a contraction of one eyelid during de+\nlivery. The greater number carried in their hands\nground-ash saplings, using them partly as walking-sticks\nand partly for poking up pigs, sheep, neighbours with\ntheir backs turned, and restful things in general, which\nseemed to require such treatment in the course of their\nperegrinations. During conversations each subjected\nhis sapling to great varieties of usage -- bending it round\nhis back, forming an\"arch of it between his two hands,\noverweighting it on the ground till it reached nearly a\nsemicircle; or perhaps it was hastily tucked under the\narm whilst the sample-bag was pulled forth and a hand+\nful of corn poured into the palm, which, after criticism,\nwas flung upon the floor, an issue of events perfectly\nwell known to half-a-dozen acute town-bred fowls which\nhad as usual crept into the building unobserved, and\nwaited the fulfilment of their anticipations with a high+\nstretched neck and oblique eye.\nAmong these heavy yeomen a feminine figure glided,\nthe single one of her sex that the room contained. She\nwas prettily and even daintily dressed. She moved\nbetween them as a chaise between carts, was heard after\nthem as a romance after sermons, was felt among them\nlike a breeze among furnaces. It had required a little\ndetermination -- far more than she had at\n<P 140>\nfirst imagined\n -- to take up a position here, for at her first entry the\nlumbering dialogues had ceased, nearly every face had\nbeen turned towards her, and those that were already\nturned rigidly fixed there.\nTwo or three only of the farmers were personally\nknown to Bathsheba, and to these she had made her\nway. But if she was to be the practical woman she had\nintended to show herself, business must be carried on,\nintroductions or none, and she ultimately acquired con+\nfidence enough to speak and reply boldly to men merely\nknown to her by hearsay. Bathsheba too had her\nsample-bags, and by degrees adopted the professional\npour into the hand -- holding up the grains in her narrow\npalm for inspection, in perfect Casterbridge manner.\nSomething in the exact arch of her upper unbroken\nrow of teeth, and in the keenly pointed corners of her\nred mouth when, with parted lips, she somewhat\ndefiantly turned up her face to argue a point with a\ntall man, suggested that there was potentiality enough\nin that lithe slip of humanity for alarming exploits of\nsex, and daring enough to carry them out. But her eyes\nhad a softness -- invariably a softness -- which, had they\nnot been dark, would have seemed mistiness; as they\nwere, it lowered an expression that might have been\npiercing to simple clearness,\nStrange to say of a woman in full bloom and vigor,\nshe always allowed her interlocutors to finish their state+\nments before rejoining with hers. In arguing on prices,\nhe held to her own firmly, as was natural in a dealer,\nand reduced theirs persistently, as was inevitable in a\noman. But there was an elasticity in her firmness\nwhich removed it from obstinacy, as there was a naivete\nin her cheapening which saved it from meanness.\nThose of the farmers with whom she had no dealings\nby far the greater part) were continually asking each\nother, \"Who is she?' The reply would be --\n\"Farmer Everdene's niece; took on Weatherbury\nUpper Farm; turned away the baily, and swears she'll do\nverything herself.'\nThe other man would then shake his head.\n<P 141>\n\"Yes, 'tis a pity she's so headstrong,' the first would\nsay. \"But we ought to be proud of her here -- she\nlightens up the old place. 'Tis such a shapely maid,\nhowever, that she'll soon get picked up.'\nIt would be ungallant to suggest that the novelty of\nher engagement in such an occupation had almost as\nmuch to do with the magnetism as had the beauty of\nher face and movements. However, te interest was\neneral, and this Saturday's debut in the forum, whatever\nit may have been to Bathsheba as the buying and selling\nfarmer, was unquestionably a triumph to her as the\nmaiden. Indeed, the sensation was so pronounced that\nher instinct on two or three occasions was merely to\nvalk as a queen among these gods of the fallow, like a\nlittle sister of a little Jove, and\"to neglect closing prices\naltogether.\nThe numerous evidences of-her power to attract were\nonly thrown into greater relief by a marked exception.\nWomen seem to have eyes in their ribbons for such\nmatters as these. Bathsheba, without looking within\na right angle of him, was conscious of a black sheep\namong the flock.\nIt perplexed her first. If there had been a respect+\nable minority on either side, the case would have been\nmost natural. If nobody had regarded her, she would\nhave -- -taken the matter indifferently -- such cases had\noccurred. If eveybody, this man included, she would\nhave taken it as a matter of course -- people had done\nso before. But the smallness of the exception made the\nmystery.\nShe soon knew thus much of the recusant's appear+\nance. He was a gentlemanly man, with full and\ndistinctly outlined Roman features, the prominences\nof which glowed in the sun with a bronze-like richness\nof tone. He was erect in attitude, and quiet in\ndemeanour. One characteristic pre-eminently marked\nhim -- dignity.\nApparently he had some time ago reached that\nentrance to middle age at which a man's aspect naturally\nceases to alter for the term of a dozen years or so; and,\nartificially, a woman't does likewise.   Thirty-five and\nfifiy were his limits of variation -- he might have been\neither, or anywhere between the two.\nIt may be said that married men of forty are usually\nready\n<P 142>\nand generous enough to fling passing glances at\nany specimen of moderate beauty they may discern by\nthe way. Probably, as with persons playing whist for\nlove, the consciousness of a certain immunity under\nany circumstances from that worst possible ultimate,\nthe having to pay, makes them unduly speculative.\nBathsheba was convinced that this unmoved person\nwas not a married man.\nWhen marketing was over, she rushed off to Liddy,\nwho was waiting for her -- beside the yellowing in which\nthey had driven to town. The horse was put in, and\non they trotted Bathsheba's sugar, tea, and drapery\nparcels being packed behind, and expeessing in some\nindescribable manner, by their colour, shape, and\ngeneral lineaments, that they were that youmg lady+\nfarmer's property, and the grocer's and drapers no\nmore.\n\" I've been through it, Liddy, and it is over. I shan't\nmind it again, for they will all have grown accustomed\nto seeing me there; but this morning it was as bad as\nbeing married -- eyes everywhere!'\n\"I knowed it would. be,' Liddy said \"Men be such\na terrible class of society to look at a body.'\n\"But there was one man who had more sense than\nto waste his time upon me.' The information was put\nin this form that Liddy might not for a moment suppose\nher mistress was at all piqued. \"A very good-looking\nman,' she continued, \"upright; about forty, I should\nthink. Do you know at all who he could be?'\nLiddy couldn't think.\n\"Can't you guess at all?' said Bathsheba with some\ndisappointment.\n\"I haven't a notion; besides, 'tis no difference, since\nhe took less notice of you than any of the rest. Now,\nif he'd taken more, it would have mattered a great deal.'\nBathsheba was suffering from the reverse feeling just\nthen, and they bowled along in silence. A low carriage,\nbowling along still more rapidly behind a horse of un+\nimpeachable breed, overtook and passed them.\n\"Why, there he is!' she said.\nLiddy looked. \"That! That's Farmer Boldwood --\nof course\n<P 143>\n'tis -- the man you couldn't see the other day\nwhen he called.'\n\"Oh, Farmer Boldwood,' murmured Bathsheba, and\nlooked at him as he outstripped them. The farmer had\nnever turned his head once, but with eyes fixed on the\nmost advanced point along the road, passed as uncon+\nsciously and abstractedly as if Bathshea and her charms\nwere thin air.\n\"He's an interesting man -- don't you think so?' she\nremarked.\n\"O yes, very. Everybody owns it,' replied Liddy.\n\"I wonder why he is so wrapt up and indifferent, and\nseemingly so far away from all he sees around him,'\n\"It is said -- but not known for certain -- that he met\nwith some bitter disappointment when he was a young\nman and merry. A woman jilted him, they say.'\n\"People always say that -- and we know very well\nwomen scarcely ever jilt men; 'tis the men who jilt us.\nI expect it is simply his nature to be so reserved.'\n\"Simply his nature -- I expect so, miss -- nothing else\nin the world.'\n\"Still, 'tis more romantic to think he has been served\ncruelly, poor thing'! Perhaps, after all, he has! I\n\"Depend upon it he has. O yes, miss, he has!\nfeel he must have.'\n\"However, we are very apt to think extremes of\npeople. I --  shouldn't wonder after all if it wasn't a\nlittle of both -- just between the two -- rather cruelly\nused and rather reserved.'\n\"O dear no, miss -- I can't think it between the\ntwo!'\n\"That's most likely.'\n\"Well, yes, so it is. I am convinced it is most likely.\nYou may --  take my word, miss, that that's what's the\nmatter with him.'\n<C xiii>\u001a\n<P 144>\nSORTES SANCTORUM -- THE VALENTINE\nIT was Sunday afternoon in the farmhouse, on the\nthirteenth of February. Dinner being over, Bathsheba,\nfor want of a better companion, had asked Liddy to\ncome and sit with her. The mouldy pile was dreary\nin winter-time before the candles were lighted and the\nshutters closed ; the atmosphere of the place seemed\nas old as the walls; every nook behind the furniture\nhad a temperature of its own, for the fire was not\nkindled in this part of the house early in the day;\nand Bathsheba's new piano, which was an old one\nin other annals, looked particularly sloping and out\nof level on the warped floor before night threw a\nshade over its less prominent angles and hid the\nunpleasantness. Liddy, like a little brook, though\nshallow, was always rippling; her presence had not so\nmuch weight as to task thought, and yet enough to\nexercise it.\nOn the table lay an old quarto Bible, bound in\nleather. Liddy looking at it said, --\n\"Did you ever find out, miss, who you are going to\nmarry by means of the Bible and key ?,\n\"Don't be so foolish, Liddy. As if such things\ncould be.'\n\" Well, there's a good deal in it, all the same.'\n' Nonsense, child.'\n\" And it makes your heart beat fearful. Some believe\nin it; some don't; I do.'\n\"Very well, let's try it,' said Bathsheba, bounding\nfrom her seat with that total disregard of consistency\nwhich can be indulged in towards a dependent, and\nentering into the spirit of divination at once. 'Go and\nget the front door key.'\nLiddy fetched it. 'I wish it wasn't Sunday,' she\nsaid, on returning. ' Perhaps 'tis wrong.'\n' What's right week days is right Sundays,' replied her\nmistress in a tone which was a proof in itself.\n<P 145>\nThe book was opened -- the leaves, drab with age,\nbeing quite worn away at much-read verses by the fore'\nfingers \"of unpractised readers in former days, where they\nwere moved along under the line as an aid to the vision.\nThe special verse in the Book of Ruth was sought out\nby Bathsheba, and the sublime words met her eye. They\nslightly thrilled and abashed her. It was Wisdom in\nthe abstract facing Folly in the concrete. Folly in the\nconcrete blushed, persisted in her intention, and placed\nthe key on -the book. A rusty patch immediately upon\nthe verse, caused by previous pressure of an iron\nsubstance thereon, told that this was not the first time\nthe old volume had been used for the purpose.\n'Now keep steady, and be silent,' said Bathsheba.\nThe 'verse was repeated; the book turned round ;\nBathsheba blushed guiltily.\n'Who did you try ?' said Liddy curiously.\n'I shall not tell you.'\n'Did you notice Mr. Boldwood's doings in church\nthis morning, miss ? 'Liddy continued, adumbrating by\nthe remark the track her thoughts had taken.\n'No, indeed,' said Bathsheba, with serene indifference\n\" His pew is exactly opposite yours, miss.'\n\"I know it.'\n\"And you did not see his goings on !,'\nCertainly I did not, I tell you.'\nLiddy assumed a smaller physiognomy, and shut\nher lips decisively.\nThis move was unexpected, and proportionately dis\nconcerting. \" What did he do?' Bathsheba said perforce.\n\"Didn't turn his head to look at you once all the\nservice.\n\"Why should he?' again demanded her mistress,\nwearing a nettled look. \"I didn't ask him to.\n'Oh no. But everybody else was noticing you ; and\nit was odd he didn't. There, 'tis like him. Rich and\ngentlemanly, what does he care ? '\nBathsheba dropped into a silence intended to ex+\npress that she had opinions on the matter too abstruse\nfor Liddy's comprehension, rather than that she had\nnothing to say.\n\"\n<P 146>\nDear me -- I had nearly forgotten the valentine\nI bought yesterday,' she exclaimed at length.\n\"Valentine ! who for, miss ? ' said Liddy. \" Farmer\nBoldwood ?'\nIt was the single name among all possible wrong\nones that just at this moment seemed to Bathsheba\nmore pertinent than the right.\n\"Well, no. It is only for little Teddy Coggan.\nhave promised him something, and this will be a pretty\nsurprise for him. Liddy, you may as well bring me\nmy desk and I'll direct it at once.'\nBathsheba took from her desk a gorgeously illumin+\nated and embossed design in post-octavo, which had\nbeen \"bought on the previous market-day at the chief\nstationer's in Casterbridge. In the eentre was a small\noval enclosure ; this was left blank, that the sender\nmight insert tender words more appropriate to the\nspecial occasion than any generalities by a printer\ncould possibly be.\n\" Here's a place for writing,' said Bathsheba. 'What\nshall I put ?'\n\" Something of this sort, I should think', returned\nLiddy promptly : --\n\" The rose is red,\n The violet blue,\n Camation's sweet,\n And so are you.'\n\" Yes, that shall be it. It just suits itself to a chubby+\nfaced child like him,' said Bathsheba. She ins.erted the\nwords in a small though legible handwriting; enelosed\nthe sheet in an envelope, and dipped her pen for the\ndirection.\n\"What fun it would be to send it to the stupid old\nBoldwood, and how he would wonder.! ' said the\nirrepressible Liddy, lifting her eyebrows, and indulging\nin an awful mirth on the verge of fear as she thought\nof the moral and social magnitude of the man contem+\nplated.\nBathsheba paused to regard the idea at full length.\nBoldwood's had begun to be a troublesome image -- a\nspecies of Daniel in her kingdom who persisted in\nkneeling eastward\n<P 147>\nwhen reason and common sense\nsaid that he might just as well follow suit with the\nrest, and afford her the official glance of admiration\nwhich cost nothing at all. She was far from being\nseriously concerned about his nonconformity. Still,\nit was faintly depressing that the most dignified and\nvaluable man in the parish should withhold his eyes,\nand that a girl like Liddy should talk about it. So\nLiddy's idea was at first rather harassing than piquant.\n\" No, I won't do that. He wouldn't see any humour\nin it.'\n\" He'd worry to death,' said the persistent Liddy.\n\" Really, I don't care particularly to send it to\nTeddy,' remarked her mistress. \" He's rather a naughty\nchild sometimes.'\n\" Yes -- that he is.'\n\" Let's toss as men do,' said Bathsheba, idly. 'Now\nthen, head, Boldwood ; tail, Teddy. No, we won't toss\nmoney on a Sunday that would be tempting the devil\nindeed.'\n\"Toss this hymn-book; there can't be no sinfulness\nin that, miss.'\n'Very well. Open, Boldwood -- shut, Teddy. No;\nit's more likely to fall open. Open, Teddy -- shut,\nBoldwood.'\nThe book went fluttering in the air and came down shut.\nBathsheba, a small yawn upon her mouth, took the\npen, and with off-hand serenity directed the missive to\nBoldwood.\n'Now light a candle, Liddy. Which seal shall we\nuse? Here's a unicorn's head --  there's nothing in\nthat. What's this ? -- two doves -- no. It ought to be\nsomething extraodinary, ought it not, Lidd? Here's\none with a motto -- I remember it is some funny one,\nbut I can't read it. We'll try this, and if it doen't\ndo we'll have another.'\nA large red seal was duly affixed. Bathsheba looked\nclosely at the hot wax to discover the words.\n'Capital!' she exclaimed, throwing down the letter\nfrolicsomely. \" 'Twould upset the solemnity of a parson\n \n<P 148>\nThe same evening the letter was sent, and was duly\nreturned to Weatherbury again in the morning.\nOf love as a spectacle Bathsheba had a fair knowledge;\nbut of love subjectively she knew nothing.\n<C xiv>\n<P 149>\nEFFECT OF THE LETTER -- SUNRISE\nAT dusk, on the evening of St. Valentine's Day, Bold+\nwood sat down to supper as usual, by a beaming fire\nof aged logs. Upon the matel-shelf before him was\na time-piece, surmounted by a spread eagle, and upon\nthe eagle's wings was the letter Bathsheba had sent.\nHere the bachelor's gaze was continually fastening\nitself, till the large red seal became as a blot of blood\non the retina of his eye; and as he ate and drank he\nstill read in fancy the words thereon, although they\nwere too remote for his sight --\n\" MARRY ME.'\nThe pert injunction was like those crystal substances\nwhich, colourless themselves, assume the tone of objects\nabout them. Here, in the quiet of Boldwood's parlour,\nwhere everything that ,was not grave was extraneous,\nand where the atmosphere was that of a Puritan Sunday\nlasting all the week, the letter and its dictum changed'\ntheir tenor from the thoughtlessness of their origin to\na deep solemnity, imbibed from their accessories\nnow.\nSince the receipt of the missive in the morning,\nBoldwood had felt the symmetry of his existence to\nbe slowly getting distorted in the direction of an ideal\npassion. The disturbance was as the first floating\nweed to Columbus -- the eontemptibly little suggesting\npossibilities of the infinitely great.\nThe letter must have had an origin and a motive.\nThat the latter was of the smallest magnitude com+\npatible with its existence at all, Boldwood, of course,\ndid not know. And such an explanation did not\nstrike him as a possibility even. It is foreign to a\nmystified condition of mind to realize of the mystifier\nthat the processes of approving a course suggested by\ncircumstance, and of striking out a course from inner\nimpulse, would look the same in the result. The vast\ndifference between\n<P 150>\nstarting a train of events, and direct+\ning into a particular groove a series already started, is\nrarely apparent to the person confounded by the\nissue.\nWhen Boldwood went to bed he placed the valen+\ntine in the corner of the looking-glass. He was\nconscious of its presence, even when his back was\nturned upon it. It was the first time in Boldwood's\nlife that such an event had occurred. The same\nfascination that caused him to think it an act which had\na deliberate motive prevented him from regarding it as\nan impertinence. He looked again at the direction.\nThe mysterious influences of night invested the writing\nwith the presence of the unknown writer. Somebody's\nsome woman's -- hand had travelled softly over the\npaper bearing his name ; her unrevealed eyes had\nwatched every curve as she formed it ; her brain had\nseen him in imagination the while. Why should\nshe have imagined him ? Her mouth -- were the lips\nred or pale, plump or creased? -- had curved itself to a\ncertain expression as the pen went on -- the corners had\nmoved with all their natural tremulousness : what had\nbeen the expression ?\nThe vision of the woman writing, as a supplement to\nthe words written, had no individuality. She was a\nmisty shape, and well she might be, considering that\nher original was at that moment sound asleep and\noblivious of all love and letter-writing under the sky.\nWhenever Boldwood dozed she took a form, and com+\nparatively ceased to be a vision : when he awoke there\nwas the letter justifying the dream.\nThe moon shone to-night, and its light was not of\na customary kind. His window admitted only a\nreflection of its rays, and the pale sheen had that\nreversed direction which snow gives, coming upward\nand lighting up his ceiling in an unnatural way, casting\nshadows in strange places, and putting lights where\nshadows had used to be.\nThe substance of the epistle had occupied him but\nlittle in comparison with the fact of its arrival. He\nsuddenly wondered if anything more might be found in\nthe envelope than what he had withdrawn. He jumped\nout of bed in the weird light, took the letter, pulled out\nthe flimsy sheet, shook the envelope -- searched it.\nNothing more was there. Boldwood looked, as he\n<P 151>\nhad a hundred times the preceding day, at the insistent red\nseal : \" Marry me,' he said aloud.\nThe solemn and reserved yeoman again closed the\nletter, and stuck it in the frame of the glass. In doing\nso he caught sight of his reflected features, wan in\nexpression, and insubstantial in form. He saw how\nclosely compressed was his mouth, and that his eyes\nwere wide-spread and vacant. Feeling uneasy and dis+\nsatisfied with himself for this nervous excitability, he\nreturned to bed.\nThen the dawn drew on. The full power of the\nclear heaven was not equal to that of a cloudy sky at\nnoon, when Boldwood arose and dressed himself. He\ndescended the stairs and went out towards the gate of\na field to the east, leaning over which he paused and\nlooked around.\nIt was one of the usual slow sunrises of this time of\nthe year, and the sky, pure violet in the zenith, was\nleaden to the northward, and murky to the east, where,\nover the snowy down or ewe-lease on Weatherbury\nUpper Farm, and apparently resting upon the ridge, the\nonly half of the sun yet visible burnt rayless, like a red\nand flameless fire shining over a white hearthstone.\nThe whole effect resembled a sunset as childhood\nresembles age.\nIn other directions, the fields and sky were so much\nof one colour by the snow, that it was difficult in a\nhasty glance to tell whereabouts the horizon occurred ;\nand in general there was here, too, that before-mentioned\npreternatural inversion of light and shade which attends\nthe prospect when the garish brightness commonly in\nthe sky is found on the earth, and the shades of earth\nare in the sky. Over the west hung the wasting moon,\nnow dull and greenish-yellow, like tarnished brass.\nBoldwood was listlessly noting how the frost had\nhardened and glazed the surface of the snow, till it\nshone in the red eastern light wit-h the polish of marble;\nhow, in some portions of the slope, withered grass-bents,\nencased in icicles, bristled through the smooth wan\ncoverlet in the twisted and curved shapes of old\nVenetian glass; and how the footprints of a few birds,\nwhich had hopped over the snow whilst it lay in the\nstate of a soft fleece, were now frozen to a short perma+\n<P 152>\nnency. A half-muffled noise of light wheels interrupted\nhim. Boldwood turned back into the road. It was\nthe mail-cart -- a crazy, two-wheeled vehicle, hardly\nheavy enough to resist a puff of wind. The driver held\nout a letter. Boldwood seized it and opened it, ex+\npecting another anonymous one -- so greatly are people's\nideas of probability a mere sense that precedent will\nrepeat itself.\n\"I don't think it is for you, sir,' said the man, when\nhe saw Boldwood's action. \"Though there is no name\nI think it is for your shepherd.'\nBoldwood looked then at the address --\nTo the New Shepherd,\nWeatherbury Farm,\nNear Casterbridge.\n\"Oh -- what a mistake !. -- it is not mine. Nor is it\nfor my shepherd. It is for Miss Everdene's.' You had\nbetter take it on to him -- Gabriel Oak -- and say I opencd\nit in mistake.\"\nAt this moment, on the ridge, up against the blazing\nsky, a figure was visible, like the black snuff in the\nmidst of a candle-flame. Then it moved and began to\nbustle about vigorously from place to place, carrying\nsquare skeleton masses, which were riddled by the same\nrays. A small figure on all fours followed behind. The\ntall form was that of Gabriel Oak ; the small one that\nof George ; the articles in course of transit were hurdles.\n'Wait, 'said Boldwood. \" That's the man on the hill.\nI'll take the letter to him myself.\"\nTo Boldwood it was now no longer merely a letter to\nI another man. It was an opportunity. Exhibiting a\nface pregnant with intention, he entered the snowy field.\nGabriel, at that minute, descended the hill towards\nthe right. The glow stretched down in this direction\nnow, and touched the distant roof of Warren's Malthouse\nwhither the shepherd was apparently bent :  Boldwood\nfollowed at a distance.\n<C xv>\n<P 153>\nTHE scarlet and orange light outside the malthouse did\nnot penetrate to its interior, which was, as usual, lighted\nby a rival glow of similar hue, radiating from the hearth.\nThe maltster, after having lain down in his clothes\nfor a few hours, was now sitting beside a three-leggcd\ntable, breakfasting of bread and bacon. This was\neaten on the plateless system, which is performed by\nplacing a slice of bread upon the table, the meat flat\nupon the bread, a mustard plaster upon the meat, and\na pinch of salt upon the whole, then cutting them\nvertically downwards with a large pocket-knife till wood\nis reached, when the severed lamp is impaled on the\nknife, elevated, and sent the proper way of food.\nThe maltster's lack of teeth appeared not to sensibly\ndiminish his powers as a mill. He had been without\nthem for so many years that toothlessness was felt less\nto be a defect than hard gums an acquisition. Indeed,\nhe seemed to approach the grave as a hyperbolic curve\napproaches a stmight line -- less directly as he got nearer,\ntill it was doubtful if he would ever reach it at all.\nIn the ashpit was a heap of potatoes roasting, and a\nboiling pipkin of charred bread, callcd 'coffee,' for the\nbenefit of whomsoever should call, for Warren's was a\nsort of clubhouse. used as an alternative to the in!.\n\"I say, says I, we get a fine day, and then down\ncomes a snapper at night,' was a remark now suddenly\nheard spreading into the malthouse from the door, which\nhad been opened the previous moment. The form of\nHenery Fray advanced to the fire, stamping the snow\nfrom his boots when about half-way there. The speech\nand entry had not seemed to be at all an abrupt begin+\nning to the maltster, introductoy matter being often\nomitted in this neighbourhood, both from word and\n<P 154>\ndeed, and the maltster having the same latitude allowed\nhim, did not hurry to reply. He picked up a fragment\nof cheese, by pecking upon it with his knife, as a butcher\npicks up skewers.\nHenery appeared in a drab kerseymere great-coat,\nbuttoned over his smock-frock, the white skirts of the\nlatter being visible to the distance of about a foot below\nthe coat-tails, which, when you got used to the style of\ndress, looked natural enough, and even ornamental -- it\ncertainly was comfortable.\nMatthew Moon, Joseph Poorgrass, and other carters\nand waggoners followed at his heels, with great lanterns\ndangling from their hands, which showed that they had\njust come from the cart-horse stables, where they had\nbeen busily engaged since four o'clock that morning.\n\"And how is she getting on without a baily?' the\nmaltster inquired.\nHenery shook his head, and smiled one of the bitter\nsmiles, dragging all the flesh of his forehead into a\ncorrugated heap in the centre.\n\" She'll rue it -- surely, surely ! ' he said \" Benjy\nPennyways were not a true man or an honest baily --\nas big a betrayer as Joey Iscariot himself. But to think\nshe can carr' on alone! ' He allowed his head to swing\nlaterally three or four times in silence. \" Never in all my\ncreeping up -- never! '\nThis was recognized by all as the conclusion of some\ngloomy speech which had been expressed in thought\nalone during the shake of the head; Henery meanwhile\nretained several marks of despair upon his face, to\nimply that they would be required for use again directly\nhe should go on speaking.\n'All will be ruined, and ourselves too, or there's no\nmeat in gentlemen's houses!' said Mark Clark.\n'A headstrong maid, that's what she is -- and won't\nlisten to no advice at all. Pride and vanity have ruined\nmany a cobbler's dog. Dear, dear, when I think o' it,\nI sorrows like a man in travel ! '\n'True, Henery, you do, I've heard ye,' said Joseph\nPoorgrass in a voice of thorough attestation, and with\na wire-drawn smile of misery.\n\"'Twould do a martel man no harm to have what's\nunder\n<P 155>\nher bonnet,' said Billy Smallbury, who had just\nentered, bearing his one tooth before him. \"She can\nspaik real language, and must have some sense some+\nwhere. Do ye foller me ?'\n\"I do: but no baily -- I deserved that place,' wailed\nHenery, signifying wasted genius by gazing blankly at\nvisions of a high destiny apparently visible to him on\nBilly Smallbury's smock-frock. \" There, 'twas to be, I\nsuppose. Your lot is your lot, and Scripture is nothing;\nfor if you do good you don't get rewarded according to\nyour works, but be cheated in some mean way out of\nyour recompense.'\n\"No, no; I don't agree with'ee there,' said Mark\nClark. God's a perfect gentleman in that respect.'\n\"Good works good pay, so to speak it,' attested\nJoseph Poorgrass.\nA short pause ensued, and as a sort of entr'acte\nHenery turned and blew out the lanterns, which the\nincrease of daylight rendered no longer necessary even\nin the malthouse, with its one pane of glass.\n\"I wonder what a farmer-woman can want with a\nharpsichord, dulcimer, pianner, or whatever 'tis they d'call\nit?' said the maltster. 'Liddy saith she've a new one.'\n\"Got a pianner?'\n\"Ay. Seems her old uncle's things were not good\nenough for her. She've bought all but everything new.\nThere's heavy chairs for the stout, weak and wiry ones\nfor the slender; great watches, getting on to the size\nof clocks, to stand upon the chimbley-piece.'\nPictures, for the most part wonderful frames.'\n\" And long horse-hair settles for the drunk, with horse+\nhair pillows at each end,' said Mr. Clark. \" Likewise\nlooking-glasses for the pretty, and lying books for the\nwicked.'\nA firm loud tread was now heard stamping outside;\nthe door was opened about six inches, and somebody on\nthe other side exclaimed --\n\"Neighbours, have ye got room for a few new-born\nlambs?'\n\" Ay, sure, shepherd,' said the conclave.\nThe door was flung back till it kicked the wall and\ntrembled from top to bottom with the blow. Mr.\nOak appeared in the\n<P 156>\nentry with a steaming face, hay+\nbands wound about his ankles to keep out the snow, a\nleather strap round his waist outside the smock-frock,\nand looking altogether an epitome of the world's health\nand vigour. Four lambs hung in various embarrassing\nattitudes over his shoulders, and the dog George, whom\nGabriel had contrived to fetch from Norcombe, stalked\nsolemnly behind.\n\" Well, Shepherd Oak, and how's lambing this year,\nif I mid say it?' inquired Joseph Poorgrass.\n\"Terrible trying,\" said Oak. \"I've been wet through\ntwice a-day, either in snow or rain, this last fortnight.\nCainy and I haven't tined our eyes to-night.'\n\"A good few twins, too, I hear ?'\n\"Too many by half. Yes ; 'tis a very queer lambing\nthis year. We shan't have done by Lady Day.'\n\"And last year 'twer all over by Sexajessamine\nSunday,' Joseph remarked.\n\"Bring on the rest Cain,' said Gabriel, \" and then run\nback to the ewes. I'll follow you soon.'\nCainy Ball -- a cheery-faced young lad, with a small\ncircular orifice by way of mouth, advanced and deposited\ntwo others, and retired as he was bidden. Oak lowered\nthe lambs from their unnatural elevation, wrapped them\nin hay, and placed them round the fire.\n\" We've no lambing-hut here, as I used to have at\nNorcombe,' said Gabriel, \" and 'tis such a plague to bring\nthe weakly ones to a house. If 'twasn't for your place\nhere, malter, I don't know what I should do! this keen\nweather. And how is it with you to-day, malter? '\n\" Oh, neither sick nor sorry, shepherd ; 'but no\nyounger.'\n\" Ay -- I understand.\n\"Sit down, Shepherd Oak', continued the ancient man\nof malt. \" And how was the old place at Norcombe,\nwhen ye went for your dog? I should like to see the\nold familiar spot ; but faith, I shouldn't\" know a soul\nthere now.'\n\" I suppose you wouldn't. 'Tis' altered very much.'\n\"Is it true that Dicky Hill's wooden cider-house is\npulled down?'\n<P 157>\n\" O yes -- years ago, and Dicky's cottage just above it.'\n\"Well, to be sure!,\n\" Yes ; and Tompkins's old apple-tree is rooted that\nused to bear two hogsheads of cider; and no help from\nother trees.'\n'Rooted? -- you don't say it! Ah! stirring times we\nlive in -- stirring times.'\n\"And you can mind the old well that used to be in\nthe middle of the place? That's turned into a solid\niron pump with a large stone trough, and all complete.'\n\"Dear, dear -- how the face of nations alter, and\nwhat we live to see nowadays! Yes -- and 'tis the same\nhere. They've been talking but now of the mis'ess's\nstrange doings.'\n\" What have you been saying about her?' inquired\nOak, sharply turning to the rest, and getting very\nwarm.\n\" These middle-aged men have been pulling her over\nthe coals for pride and vanity,' said Mark Clark; \"but\nI say, let her have rope enough. Bless her pretty face\nshouldn't I like to do so -- upon her cherry lips!'\nThe gallant Mark Clark here made a peculiar and well\nknown sound with his own.\n\" Mark,' said Gabriel, sternly, 'now you mind this !\nnone of that dalliance-talk -- that smack-and-coddle style\nof yours -- about Miss Everdene. I don't allow it. Do\nyou hear? '\n\" With all my heart, as I've got no chance,' replied\nMr. Clark, cordially.\n' I suppose you've been speaking against her? ' said\nOak, turning to Joseph Poorgrass with a very grim\nlook.\n\"No, no -- not a word I -- 'tis a real joyful thing that\nshe's no worse, that's what I say,' said Joseph, trembling\nand blushing with terror. \" Matthew just said --  -- '\n\" Matthew Moon, what have you been saying ? ' asked\nOak.\n'I? Why ye know I wouldn't harm a worm -- no,\nnot one underground worm ?' said Matthew Moon,\nlooking very uneasy.\n\"Well, somebody has -- and look here, neighbours.'\nGabriel, though one of the quietest and most gentle\nmen on earth, rose to the occasion, with martial\npromptness and vigour. \"That's my fist.' Here he\nplaced his fist, rather smaller in size than a common\nloaf, in the mathemarical centre of the maltster's little\ntable, and with it gave a bump or two thereon, as if\n<P 158>\nto ensure that their eyes all thoroughly took in the\nidea of fistiness before he went further. \"Now -- the\nfirst man in the parish that I hear prophesying bad of\nour mistress, why' (here the fist was raised and let fall\nas T'hor might have done with his hammer in assaying\nit) -- \"he'll smell and taste that -- or I'm a Dutchman.'\nAll earnestly expressed by their features that their\nminds did not wander to Holland for a moment on\naccount of this statement, but were deploring the\ndifference which gave rise to the figure ; and Mark\nClark cried \"Hear, hear; just what I should ha' said.'\nThe dog George looked up at the same time after the\nshepherd's menace, and though he understood English\nbut imperfectly, began to growl.\n\" Now, don't ye take on so, shepherd, and sit down!'\nsaid Henery, with a deprecating peacefulness equal to\nanything of the kind in Christianity.\n\"We hear that ye bc a extraordinary good and\nclever man, shepherd,' said Joseph Poorgrass with\nconsiderable anxiety from behind the maltster's bed+\nstead whither he had retired for safety. \"'Tis a great\nthing to be clever, I'm sure,' he added, making move+\nments associated with states of mind rather than body ;\n\" we wish we were, don't we, neighbours ? '\n\"Ay, that we do, sure,' said Matthew Moon, with\na small anxious laugh towards Oak, to show how very\nfriendly disposed he was likewise.\n\" Who's been telling you I'm clever?' said Oak.\n\"'Tis blowed about from pillar to post quite common,'\nsaid Matthew. \" We hear that ye can tell the t1me as\nwell by the stars as we can by the sun and moon,\nshepherd.'\n\" Yes, I can do a little that way,' said Gabriel, as a\nman of medium sentiments on the subject.\nnames upon their waggons almost like copper-plate,\nwith beautiful flourishes, and great long tails. A\nexcellent fine thing for ye to be such a clever man,\nshepherd. Joseph Poorgrass used to prent to Farmer\nJames Everdene's waggons before you came, and 'a\ncould never mind which way to turn the J's and E's\n -- could ye, Joseph?' Joseph shook his head to express\nhow absolute was\n<P 159>\nthe fact that he couldn't. \"And so\nyou used to do 'em the wrong way, like this, didn't ye,\nJoseph ?' Matthew marked on the dusty floor with his\nwhip-handle\nLAMES\n\"And how Farmer James would cuss, and call thee a\nfool, wouldn't he, Joseph, when 'a seed his name\nlooking so inside-out-like ?' continued Matthew Moon\nwith feeling.\n'Ay -- 'a would,' said Joseph, meekly. \" But, you see,\nI wasn't so much to blame, for them J's and E's be\nsuch trying sons o' witches for the memory to mind\nwhether they face backward or forward ; and I always\nhad such a forgetful memory, too.'\n\"'Tis a bad afiction for ye, being such a man of\ncalamities in other ways.'\n\" Well, 'tis ; but a happy Providence ordered that it\nshould be no worse, and I feel my thanks. As to\nshepherd, there, I'm sure mis'ess ought to have made\nye her baily -- such a fitting man for't as you be.'\n\"I don't mind owning that I expected it,' said Oak,\nfrankly. ' Indeed, I hoped for the place. At the same\ntime, Miss Everdene has a right to be own baily if\nshe choose -- and to keep me down to be a common\nshepherd only.' Oak drew a slow breath, looked sadly\ninto the bright ashpit, and seemed lost in thoughts not\nof the most hopeful hue.\nThe genial warmth of the fire now began to stimulate\nthe nearly lifeless lambs to bleat and move their limbs\nbriskly upon the hay, and to recognize for the first time\nthe fact that they were born. Their noise increased to a\nchorus of baas, upon which Oak pulled the milk-can from\nbefore the fire, and taking a small tea-pot from the pocket\nof his smock-frock, filled it with milk, and taught those of\nthe helpless creatures which were not to be restored to\ntheir dams how to drink from the spout -- a trick they\nacquired with astonishing aptitude.\n\"And she don't even let ye have the skins of the\ndead lambs, I hear?' resumed Joseph Poorgrass, his\neyes lingering on the operations of Oak with the neces+\nsary melancholy.\n\"I don't have them,' said Gabriel.\n\"Ye be very badly used, shepherd,' hazardcd Joseph\nagain, in\n<P 160>\nthe hope of getting Oak as an ally in lamenta+\ntion after all. \"I think she's took against ye -- that\nI do.'\n'O no -- not at all,' replied Gabriel, hastily, and a\nsigh escaped him, which the deprivation of lamb skins\ncould hardly have caused.\nBefore any further remark had been added a shade\ndarkened the door, and Boldwood entered the malthouse,\nbestowing upon each a nod of a quality between friendli+\nness and condescension.\n\"Ah! Oak, I thought you were here,' he said. 'I\nmet the mail-cart ten minutes ago, and a letter was put\ninto my hand, which I opened without reading the\naddress. I believe it is yours. You must excuse the\naccident please.'\n\"O yes -- not a bit of difference, Mr. Boldwood --\nnot a bit,' said Gabriel, readily. He had not a corre+\nspondent on earth, nor was there a possible letter coming\nto him whose contents the whole parish would not have\nbeen welcome to persue.\nOak stepped aside, and read the following in an\nunknown hand: --\n\" DEAR FRIEND, -- I do not know your name, but l think\nthese few lines will reach you, which I wrote to thank you\nfor your kindness to me the night I left Weatherbury in a\nreckless way. I also return the money I owe you, which\nyou will excuse my not keeping as a gift. All has ended\nwell, and I am happy to say I am going to be married to\nthe young man who has courted me for some time -- Sergeant\nTroy, of the 11th Dragoon Guards, now quartered in this\ntown. He would, I know, object to my having received\nanything except as a loan, being a man of great respecta+\nbility and high honour -- indeed, a nobleman by blood.\n \"I should be much obliged to you if you would keep the\ncontents of this letter a secret for the present, dear friend.\nWe mean to surprise Weatherbury by coming there soon\nas husband and wife, though l blush to state it to one nearly\na strangen The sergeant grew up in Weatherbury. Thank+\ning you again for your kindness,\n\"I am, your sincere well-wisher,\n\" FANNV ROBIN.'\n' Have you read it, Mr. Boldwood?' said Gabriel;\n\"if not, you had better do so. I know you are interested\nin Fanny Robin.'\n<P 161>\nBoldwood read the letter and looked grieved.\n\"Fanny -- poor Fanny! the end she is so confident\nof has not yet come, she should remember -- and may\nnever come. I see she gives no address.'\n\"What sort of a man is this Sergeant Troy?' said\nGabriel.\n\"H'm -- I'm afraid not one to build much hope upon\nin such a case as this,' the farmer murmured, \"though\nhe's a clever fellow, and up to everything. A slight\nromance attaches to him, too. His mother was a French\ngoverness, and it seems that a secret attachment existed\nbetween her and the late Lord Severn. She was married\nto a poor medical man, and soon after an infant was\nhorn; and while money was forthcoming all went on\nwell. Unfortunately for her boy, his best friends died;\nand he got then a situation as second clerk at a lawyer's\nin Casterbridge. He stayed there for some time, and\nmight have worked himself into a dignified position of\nsome sort had he not indulged in the wild freak of\nenlisting. I have much doubt if ever little Fanny will\nsurprise us in the way she mentions -- very much doubt\nA silly girl! -- silly girl!'\nThe door was hurriedly burst open again, and in\ncame running Cainy Ball out of breath, his mouth red\nand open, like the bell of a penny trumpet, from which\nhe coughed with noisy vigour and great distension of face.\n\"Now, Cain Ball,' said Oak, sternly, \"why will you\nrun so fast and lose your breath so? I'm always telling\nyou of it.'\n'Oh -- I -- a puff of mee breath -- went -- the -- wrong\nway, please, Mister Oak, and made me cough -- hok --\nhok!'\n\"Well --  what have you come for?'\n\"I've run to tell ye,' said the junior shepherd,\nsupporting his exhausted youthful frame against the\ndoorpost, ' that you must come directly'. Two more ewes\nhave twinned -- that's what's the matter, Shepherd Oak.'\n\" Oh, that's it,' said Oak, jumping up, and dimissing\nfor the present his thoughts on poor Fanny. \" You are\na good boy to run and tell me, Cain, and you shall\nsmell a large plum pudding some day as a treat. But,\nbefore we go, Cainy, bring the tarpot, and we'll mark\nthis lot and have done with 'em.'\n<P 162>\nOak took from his illimitable pockets a marking iron,\ndipped it into the pot, and imprintcd on the buttocks\nof the infant sheep the initials of her he delighted to\nmuse on -- \"B. E.,' which signified to all the region\nround that henceforth the lambs belonged to Farmer\nBathsheba Everdene, and to no one else.\n\" Now, Cainy, shoulder your two, and off Good\nmorning, Mr. Boldwood.' The shepherd lifted the\nsixteen large legs and four small bodies he had himself\nbrought, and vanished with them in the direction of\nthe lambing field hard by -- their frames being now in a\nsleek and hopeful state, pleasantly contrasting with their\ndeath's-door plight of hialf an hour before.\nBoldwood followed him a little way up the field,\nhesitated, and turned back. He followed him again\nwith a last resolve, annihilating return. On approaching\nthe nook in which the fold was constructed, the farmer\ndrew out-his pocket-book, unfastened-it, and allowed it\nto lie open on his hand. A letter was revealed -- Bath+\nsheba's.\n\"I was going to ask you, Oak,' he said, with unreal\ncarelessness, \"if you know whose writing this is? '\nOak glanced into the book, and replied instantly,\nwith a flushed face, \" Miss Everdene's.'\nOak had coloured simply at the consciousness of\nsounding her name. He now felt a strangely distressing\nqualm from a new thought. ' The letter could of course\nbe no other than anonymous, or the inquiry would not\nhave been necessary.\nBoldwood mistook his confusion : sensitive persons\nare always ready with their \"Is it I ? ' in prefercnce to\nobjective reasoning.\n\" The question was perfectly fair,' he returned -- and\nthere was something incongruous in the serious eamest+\nness with which he applied himself to an argument on\na valentine. \" You know it is always expected that\nprivy inquiries will be made : that's where the -- fun\nlies.' If the word \"fun' had been \"torture,' it could\nnot have been uttered with a more constrained and\nrestless countenance than was Boldwood's then.'\nSoon parting from Gabriel, the lonely and reserved\nman returned to his house to breakfast -- feeling twinges\nof shame and regret at having so far exposed his mood\nby those fevered\n<P 163>\nquestions to a stranger. He again\nplaced the letter on the mantelpiece, and sat down to\nthink of the circumstances attending it by the light of\nGabriel's information.\nALL SAINTS' AND ALL SOULS\"\n<C xvi>\n<P 164>\nALL SAINTS' AND ALL SOULS'\nON a week-day morning a small congregation, con+\nsisting mainly of women and girls, rose from its knees\nin the mouldy nave of a church called All Saints', in\nthe distant barrack-town before mentioned, at the end\nof a service without a sermon. They were about to\ndisperse, when a smart footstep, entering the porch and\ncoming up the central passage, arrested their attention.\nThe step echoed with a ring unusual in a church; it\nwas the clink of spurs. Everybody looked. A young\ncavalry soldier in a red uniform, with the three chevrons\nof a sergeant upon his sleeve, strode up the aisle, with\nan embarrassment which was only the more marked\nby the intense vigour of his step, and by the deter+\nmination upon his face to show none. A slight flush\nhad mounted his cheek by the time he had run the\ngauntlet between these women ; but, passing on through\nthe chancel arch, he never paused till he came close\nto the altar railing. Here for a moment he stood\nalone.\nThe officiating curate, who had not yet doffed his\nsurplice, perceived the new-comer, and followed him\nto the communion-space. He whispered to the soldier,\nand then beckoned to the clerk, who in his turn\nwhispered to an elderly woman, apparently his wife, and\nthey also went up the chancel steps.\n\"'Tis a wedding!' murmured some of the women,\nbrightening. \" Let's wait!'\nThe majority again sat down.\nThere was a creaking of machinery behind, and\nsome of the young ones turned their heads. From the\ninterior face of the west wall of the tower projected a\nlittle canopy with a quarter-jack and small bcll beneath\nit, the automaton being driven by the same clock\nmachinery that struck the large bell in the tower. Be+\ntween the tower and the church was a close sereen, the\ndoor of which was kept shut during services, hiding\nthis\n<P 165>\ngrotesque clockwork from sight. At present, how+\never, the door was open, and the egress of the jack, the\nblows on the bell, and the mannikin's retreat intc.the\nnook again, were visible to many, and audible through+\nout the church.\nThe jack had struck half-past eleven.\n\" Where's the woman ?\" whispered some of the\nspectators.\nThe young sergeant stood still with the abnormal\nrigidity of the old pillars around. He faced the south+\neast, and was as silent as he was still.\nThe silence grew to be a noticeable thing as the\nminutes went on, and nobody else appeared, and not a\nsoul moved. The rattle of the quarter-jack again from\nits niche, its blows for three-quarters, its fussy retreat,\nwere almost painfully abrupt, and caused many of the\ncongregation to start palpably.\n\"I wonder where the woman is!' a voice whispered\nagain.\nThere began now that slight shifting of feet, that\nartificial coughing among several, which betrays a\nnervous suspense. At length there was a titter. But\nthe soldier never moved. There he stood, his face to\nthe south-east, upright as a column, his cap in his hand.\nThe clock ticked on. The women threw off their\nnervousness, and titters and giggling became more\nfrequent. Then came a dead silence. Every one was\nwaiting for the end. Some persons may have noticed\nhow extraordinarily the striking of quarters. seems to\nquicken the flight of time. It was hardly credible that\nthe jack had not got wrong with the minutes when the\nrattle began again, the puppet emerged, and the four\nquarters were struck fitfully as before: One could al+\nmost be positive that there was a malicious leer upon\nthe hideous creature's face, and a mischievous delight\nin its twitchings. Then, followed the dull and remote\nresonance of the twelve heavy strokes in the tower\nabove. The women were impressed, and there was no\ngiggle this time.\nThe clergyman glided into the vestry, and the clerk\nvanished. The sergeant had not yet turned ; every\nwoman in the church was waiting to see his face, and\nhe appeared to know it. At last he did turn, and\nstalked resolutely down the nave, braving them all,\nwith a compressed lip. Two bowed and toothless old\n<P 166>\nalmsmen then looked at each other and chuckled,\ninnocently enough ; but the sound had a strange weird\neffect in that place.\nOpposite to the church was a paved square, around\nwhich several overhanging wood buildings of old time\ncast a picturesque shade. The young man on leaving\nthe door went to cross the square, when, in the middle,\nhe met a little woman. The expression of her face,\nwhich had been one of intense anxiety, sank at the\nsight of his nearly to terror.\n\" Well ? ' he said, in a suppressed passion, fixedly\nlooking at her.\n\" O, Frank -- I made a mistake! -- I thought that\nchurch with the spire was All Saints', and I was at the\ndoor at half-past eleven to a minute as you said.\nwaited till a quarter to twelve, and found then that I\nwas in All Souls'. But I wasn't much frightened, for\nI thought it could be to-morrow as well.'\n\"You fool, for so fooling me! But say no more.'\n\" Shall it be to-monow, Frank ? ' she asked blankly.\n\"To-morrow !' and he gave vent to a hoarse laugh.\n\"I don't go through that experience again for some\ntime, I warrant you ! '\n\" But after all,' she expostulated in a trembling voice,\n\"the mistake was not such a terrible thing! Now, dear\nFrank, when shall it be?'\n\"Ah, when ? God knows !' he said, with a light\nirony, and turning from her walked rapidly away.\n<C xvii>\n<P 167>\nIN THE MARKET-PLACE\nON Saturday Boldwood was in Casterbridge market\nhouse as usual, when the disturber of his dreams entered\nand became visible to him. Adam had awakened from\nhis deep sleep, and behold! there was Eve. The\nfarmer took courage, and for the first time really looked\nat her.\nMaterial causes and emotional effects are not to be\narranged in regular equation. The result from capital\nemployed in the production of any movement of a\nmental nature is sometimes as tremendous as the cause\nitself is absurdly minute. When women are in a freakish\nmood, their usual intuition, either from carelessness or\ninherent defect, seemingly fails to teaeh them this, and\nhence it was that Bathsheba was fated to be astonished\ntoday.\nBoldwood looked at her -- not slily, critically, or\nunderstandingly, but blankly at gaze, in the way a\nreaper looks up at a passing train -- as something foreign\nto his element, and but dimly understood. To Bold+\nwood women had been remote phenomena rather than\nnecessary complements -- comets of such uncertain\naspeet, movement, and permanence, that whether\ntheir orbits were as geometrical, unchangeable, and\nas subject to laws as his own, or as absolutely erratic\nas they superficially appeared, he had not deemed it\nhis duty to consider.\nHe saw her black hair, her correct facial curves\nand profile, and the roundness of her chin and throat.\nHe saw then the side of her eyelids, eyes, and lashes,\nand the shape of her ear. Next he noticed her figure,\nher skirt, and the very soles of her shoes.\nBoldwood thought her beautiful, but wondered\nwhether he was right in his thought, for it seemed\nimpossible that this romance in the flesh, if so sweet\nas he imagined, could have\n<P 168>\nbeen going on long without\ncreating a commotion of delight among men, and pro+\nvoking more inquiry than Bathsheba had done, even\nthough that was not a little. To the best of his judg+\nment neither nature nor art could improve this perfect\none of an imperfect many. His heart began to move\nwithin him. Boldwood, it must be remembered, though\nforty years of age, had never before inspected a woman\nwith the very centre and force of his glance; they had\nstruck upon all his senses at wide angles.\nWas she really beautiful? He could not assure\nhimself that his opinion was true even now. He fur+\ntively said to a neighbour, 'Is Miss Everdene considered\nhandsome?'\n\"0 yes; she was a good deal 'notied the first\ntime she came, if you remember. A very handsome\ngirl indeed.'\nA man is never more credulous than in receiving\nfavourable opinions on the beauty of a woman he is\nhalf, or quite, in love with; a mere child's word on the\npoint has the weight of an R.A.'s. Boldwood was\nsatisfied now.\nAnd this charming woman had in effect said to\nhim, \"Marry me.' Why should she have done that\nstrange thing ? Boldwood's blindness to the difference\nbetween approving of what circumstances suggest, and\noriginating what they do not suggest, was well matched\nby Bathsheba's insensibility to the possibly great issues\nof little beginnings.\nShe was at this moment coolly dealing with a dashing\nyoung farmer, adding up accounts with him as indiffer+\nently as if his face had been the pages of a ledger. It\nwas evident that such a nature as his had no attraction\nfor a woman of Bathsheba's taste. But Boldwood grew\nhot down to his hands with an incipient jealousy; he\ntrod for the first time the threshold of \"the injured\nlover's hell.' His first impulse was to go and thrust\nhimself between them. This could be done, but only\nin one way -- by asking to see a sample of her corn.\nBoldwood renounced the idea. He could not make\nthe request; it was debasing loveliness to ask it to\nbuy and sell, and jarred with his conceptions of her.\nAll this time Bathsheba was conscious of having\nbroken into that dignified stronghold at last. His\neyes, she knew, were\n<P 169>\nfollowing her everywhere. This\nwas a triumph; and had it come naturally, such a\ntriumph would have been the sweeter to her for this\npiquing delay. But it had been brought about by\nmisdirected ingenuity, and she valued it only as she\nvalued an artificial flower or a wax fruit.\nBeing a woman with some good sense in reasoning\non subjects wherein her heart was not involved, Bath+\nsheba genuinely repented that a freak which had owed\nits existence as much to Liddy as to herself, should\never have been undertaken, to disturb the placidity of\na man she respected too highly to deliberately tease.\nShe that day nearly formed the intention of begging\nhis pardon on the very next occasion of their meeting.\nThe worst features of this arrangement were that, if\nhe thought she ridiculed him, an apology would in+\ncrease the offence by being disbelieved; and if he\nthought she wanted him to woo her, it would read\nlike additional evidence of her forwardness.\n<C xviii>\n<P 170>\nBOLDWOOD IN MEDITATION -- REGRET\nBOLDWOOD was tenant of what was called Little\nWeatherbury Farm, and his person was the nearest ap+\nproach to aristocracy that this remoter quarter of the\nparish could boast of. Genteel strangers, whose god\nwas their town, who might happen to be compelled to\nlinger about this nook for a day, heard the sound of\nlight wheels, and prayed to see good society, to the\ndegree of a solitary lord, or squire at the very least,\nbut it was only Mr. Boldwood going out for the day.\nThey heard the sound of wheels yet once more, and\nwere re-animated to expectancy : it was only Mr. Bold+\nwood coming home again.\nHis house stood recessed from the road, and the\nstables, which are to a farm what a fireplace is to a\nroom, were behind, their lower portions being lost\namid bushes of laurel. Inside the blue door, open\nhalf-way down, were to be seen at this time the backs\nand tails of half-a-dozen warm and contented horses\nstanding in their stalls; and as thus viewed, they pre+\nsented alternations of roan and bay, in shapes like a\nMoorish arch, the tail being a streak down the midst\nof each. Over these, and lost to the eye gazing in\nfrom the outer light, the mouths of the same animals\ncould be heard busily sustaining the above-named\nwarmth and plumpness by quantities of oats and hay.\nThe restless and shadowy figure of a colt wandered\nabout a loose-box at the end, whilst the steady grind\nof all the eaters was occasionally diversified by the\nrattle of a rope or the stamp of a foot.\nPacing up and down at the heels of the animals was\nFarmer Boldwood himself. This place was his almonry\nand cloister in one : here, after looking to the feeding\nof his four-footed dependants, the celibate would walk\nand meditate of an evening till the moon's rays streamed\nin through the cobwebbed windows, or total darkness\nenveloped the scene.\n<P 171>\nHis square-framed perpendicularity showed more fully\nnow than in the crowd and bustle of the market-house.\nIn this meditative walk his foot met the floor with heel\nand toe simultaneously, and his fine reddish-fleshed face\nwas bent downwards just enough to render obscure the\nstill mouth and the well-rounded though rather prominent\nand broad chin. A few clear and thread-like horizontal\nlines were the only interruption to the otherwise smooth\nsurface of his large forehead.\nThe phases of Boldwood's life were ordinary enough,\nbut his was not an ordinary nature. That stillness,\nwhich struck casual observers more than anything else\nin his character and habit, and seemed so precisely\nlike the rest of inanition, may have been the perfect\nbalance of enormous antagonistic forces -- positives and\nnegatives in fine adjustment. His equilibrium disturbed,\nhe was in extremity at once. If an emotion possessed\nhim at all, it ruled him; a feeling not mastering him\nwas entirely latent. Stagnant or rapid, it was never\nslow. He was always hit mortally, or he was missed.\nHe had no light and careless touches in his constitu+\ntion, either for good or for evil. Stern in the outlines of\naction, mild in the details, he was serious throughout all.\nHe saw no absurd sides to the follies of life, and thus,\nthough not quite companionable in the eyes of merry\nmen and scoffers, and those to whom all things show\nlife as a jest, he was not intolerable to the earnest and\nthose acquainted with grief. Being a man -who read\nall the dramas of life seriously, if he failed to please\nwhen they were comedies, there was no frivolous treat+\nment to reproach him for when they chanced to end\ntragically.\nBathsheba was far from dreaming that the dark and\nsilent shape upon which she had so carelessly thrown a\nseed was a hotbed of tropic intensity. Had she known\nBoldwood's moods, her blame would have been fearful,\nand the stain upon her heart ineradicable. Moreover,\nhad she known her present power for good or evil over\nthis man, she would have trembled at her responsibility.\nLuckily for her present, unluckily for her future tran+\nquillity, her understanding had not yet told her what\nBoldwood was. Nobody knew entirely ; for though it\nwas possible to form guesses concerning his wild 'capa+\n<P 172>\nbilities from old floodmarks faintly visible, he had never\nbeen seen at the high tides which caused them.\nFarmer Boldwood came to the stable-door and looked\nforth across the level fields. Beyond the first enclosure\nwas a hedge, and on the other side of this a meadow\nbelonging to Bathsheba's farm.\nIt was now early spring -- the time of going to grass\nwith the sheep, when they have the first feed of the\nmeadows, before these are laid up for mowing. The\nwind, which had been blowing east for several weeks,\nhad veered to the southward, and the middle of spring\nhad come abruptly -- almost without a beginning. It\nwas that period in the vernal quarter when we map\nsuppose the Dryads to be waking for the season. The\nvegetable world begins to move and swell and the saps\nto rise, till in the completest silence of lone gardens\nand trackless plantations, where- everything seems -help+\nless and still after the bond and slavery of frost, there\nare bustlings, strainings, united thrusts, and pulls-all+\ntogether, in comparison with which the powerful tugs of\ncranes and pulleys in a noisy city are but.  pigmy efforts.\n\"Boldwood, looking into the distant meadows, saw\nthere three figures. They were those of Miss' Everdene,\nShepherd Oak, and Cainy Ball.\nWhen Bathsheba's figure shone upon the farmer's\neyes it lighted him up as the moon lights up a great\ntower. A man's body is as the shell; or the tablet, of\nhis soul, as he is reserved or ingenuous, overflowing or\nself-contained. There was a  change in Boldwood's\nexterior from its former impassibleness ; and his face\nshowed that he was now living outside his defences\nfor the first time, and with a fearful sense of exposure.\nIt is the usual experience of strong natures when they\nlove.\nAt last he arrived at a conclusion. It was to go\nacross and inquire boldly of her.\nThe insulation of his heart by reserve during these\nmany years, without a channel of any kind for disposable\nemotion, had worked its effect. It has been observed\nmore than once that the causes of love are chiefly\n<P 173>\nsubjective, and Boldwood was a living testimony to\nthe truth of the proposition. No mother existed to\nabsorb his devotion, no sister for his tenderness, no\nidle ties for sense. He became surcharged with the\ncompound, which was genuine lover's love.\nHe approached the gate of the meadow. Beyond\nit the ground was melodious with ripples, and the sky\nwith larks; the low bleating of the flock mingling with\nboth. Mistress and man were engaged in the operation\nof making a lamb \"take,' which is performed whenever\nan ewe has lost her own offspring, one of the twins of\nanother ewe being given her as a substitute. Gabriel\nhad skinned the dead lamb, and was tying the skin\nover the body of the live lamb, in the customary manner,\nwhilst Bathsheba was holding open a little pen of four\nhurdles, into which the Mother and foisted lamb were\ndriven, where they would remain till the old sheep\nconceived an affection for the young one.\nBathsheba looked up at the completion of the\nmanouvre, and saw the farmer by the gate, where he\nwas overhung by a willow tree in full bloom. Gabriel,\nto whom her face was as the uncertain glory of an April\nday, was ever regardful of its faintest changes, and\ninstantly discerned thereon the mark of some influence\nfrom without, in the form of a keenly self-conscious\nreddening. He also turned and beheld Boldwood.\nAt onee connecting these signs with the letter Bold+\nwood had shown him, Gabriel suspected her of some\ncoquettish procedure begun by that means, and carried\non since, he knew not how.\nFarmer Boldwood had read the pantomime denoting\nthat they were aware of his presence, and the perception\nwas as too much light turned upon his new sensibility.\nHe was still in the road, and by moving on he hoped\nthat neither would recognize that he had originally\nintended to enter the field. He passed by with an\nutter and overwhelming sensation of ignorance, shyness,\nand doubt. Perhaps in her manner there were signs\nthat she wished to see him -- perhaps not -- he could not\nread a woman. The cabala of this erotic philosophy\nseemed to consist of the subtlest meanings expressed in\nmisleading ways.\n<P 174>\nEvery turn, look, word, and accent\ncontained a mystery quite distinct from its obvious\nimport, and not one had ever been pondered by him\nuntil now.\nAs for Bathsheba, she was not deceived into the\nbelief that Farmer Boldwood had walked by on business\nor in idleness. She collected the probabilities of the\ncase, and concluded that she was herself responsible for\nBoldwood's appearance there. It troubled her much\nto see what a great flame a little Wildfire was likely to\nkindle. Bathsheba was no schemer for marriage, nor\nwas she deliberately a trifler with the affections of men,\nand a censor's experience on seeing an actual flirt after\nobserving her would have been a feeling of surprise\nthat Bathsheba could be so different from such a one,\nand yet so like what a flirt is supposed to be.\nShe resolved never again, by look or by sign, to\ninterrupt the steady flow of this man's life. But a\nresolution to avoid an evil is seldom framed till the evil\nis so far advanced as to make avoidance impossible.\n<C xix>\n<P 175>\nTHE SHEEP-WASHING -- THE OFFER\nBOLDWOOD did eventually call upon her. She was\nnot at home. \" Of course not,' he murmured. In con+\ntemplating Bathsheba as a woman, he had forgotten the\naccidents of her position as an agriculturist -- that being\nas much of a farmer, and as extensive a farmer, as\nhimself, her probable whereabouts was out-of-dooTs at\nthis time of the year. This, and the other oversights\nBoldwood was guilty of, were natural to the mood, and\nstill more natural to the circumstances. The great aids\nto idealization in love were present here : occasional\nobservation of her from a distance, and the absence of\nsocial intercourse with her -- visual familiarity, oral\nstrangeness. The smaller human elements were kept\nout of sight ; the pettinesses that enter so largely into\nall earthly living and doing were disguised by the\naccident of lover and loved-one not being on visiting\nterms ; and there was hardly awakened a thought in\nBoldwood that sorry household realities appertained to\nher, or that she, like all others, had moments of\ncommonplace, when to be least plainly seen was to be\nmost prettily remembered. Thus a mild sort of\napotheosis took place in his fancy, whilst she still lived\nand breathed within his own horizon, a troubled creature\nlike himself.\nIt was the end of May when the farmer determined\nto be no longer repulsed by trivialities or distracted by\nsuspense. He had by this time grown used to being in\nlove; the passion now startled him less even when it\ntortured him more, and he felt himself adequate to the\nsituation. On inquiring for her at her house they had\ntold him she was at the sheepwashing, and he went off\nto seek her there.\nThe sheep-washing pool was a perfectly circular basin\nof brickwork in the meadows, full of the clearest water.\nTo birds on the wing its glassy surface, reflecting the\nlight sky, must have been\n<P 176>\nvisible for miles around as a\nglistening Cyclops' eye in a green face. The grass\nabout the margin at this season was a sight to remember\nlong -- in a minor sort of way. Its activity in sucking\nthe moisture from the rich damp sod. was almost a pro+\ncess observable by the eye. The outskirts of this level\nwater-meadow were diversified by rounded and hollow\npastures, where just now every flower that was not a\nbuttercup was a daisy. The river slid along noiselessly\nas a shade, the swelling reeds and sedge forming a\nflexible palisade upon its moist brink. To the north\nof the mead were trees, the leaves of which were new,\nsoft, and moist, not yet having stiffened and darkened\nunder summer sun and drought, their colour being\nyellow beside a green -- green beside a yellow.\nFrom the recesses of this knot of foliage the loud\nnotes of three cuckoos were resounding through the\nstill air.\nBoldwood went meditating down the slopes with his\neyes on his boots, which the yellow pollen from the\nbuttercups had bronzed in artistic gradations. A tribu+\ntary of the main stream flowed through the basin of the\npool by an inlet and outlet at opposite points of its\ndiameter. Shepherd Oak, Jan Coggan, Moon, Poor+\ngrass, Cain Ball, and several others were assembled\nhere, all dripping wet to the very roots of their hair,\nand Bathsheba was standing by in a new riding-habit --\nthe most elegant she had ever worn -- the reins of her\nhorse being looped over her arm. Flagons of cider\nwere rolling about upon the green. The meek sheep\nwere pushed into the pool by Coggan and Matthew\nMoon, who stood by the lower hatch, immersed to their\nwaists; then Gabriel, who stood on the brink, thrust\nthem under as they swam along, with an instrument\nlike a crutch, formed for the purpose, and also for\nassisting the exhausted animals when the wool became\nsaturated and they began to sink. They were let out\nagainst the stream, and through the upper opening, all\nimpurities flowing away below. Cainy Ball and Joseph,\nwho performed this latter operation, were if possible\nwetter than the rest ; they resembled dolphins under a\nfountain, every protuberance and angle of their clothes\ndribbling forth a small rill.\n<P 177>\nBoldwood came close and bade her good-morning, with\nsuch constraint that she could not but think he had\nstepped across to the washing for its own sake, hoping\nnot to find her there ; more, she fancied his brow severe\nand his eye slighting. Bathsheba immediately contrived\nto withdraw, and glided along by the river till she was\na stone's throw off. She heard footsteps brushing the\ngrass, and had a consciousness that love was encircling\nher like a perfume. Instead of turning or waiting,\nBathsheba went further among the high sedges, but\nBoldwood seemed determined, and pressed on till they\nwere completely past the bend of the river. Here,\nwithout being seen, they could hear the splashing and\nshouts of the washers above.\n\"Miss Everdene!' said the farmer.\nShe trembled, turned, and said 'Good morning.'\nHis tone was so utterly removed from all she had\nexpected as a beginning. It was lowness and quiet\naccentuated : an emphasis of deep meanings, their form,\nat the same time, being scarcely expressed. Silence\nhas sometimes a remarkable power of showing itself as\nthe disembodied soul of feeling wandering without its\ncarcase, and it is then more impressive than speech.\nIn the same way, to say a little is often to tell more\nthan to say a great deal. Boldwood told everything in\nthat word.\nAs the conseiousness expands on learning that what\nwas fancied to be the rumble of wheels is the reverbera+\ntion of thunder, so did Bathsheba's at her intuitive\nconviction.\n'I feel -- almost too much -- to think,' he said, with a\nsolemn simplicity. \"I have come to speak to you with+\nout preface. My life is not my own since I have beheld\nyou clearly, Miss Everdene -- I come to make you an\noffer of marriage.'\nBathsheba tried to preserve an absolutely neutral\ncountenance, and all the motion she made was that of\nclosing lips which had previously been a little parted.\n\"I am now forty-one years old,' he went on. \"I may\nhave been called a confirmed bachelor, and I was a\nconfirmed bachelor. I had never any views of myself\nas a husband in my earlier days, nor have I made any\ncalculation on the subject since I have been older.\nBut we all change, and my change, in this matter,\n<P 178>\ncame\nwith seeing you. I have felt lately, more and more,\nthat my present way of living is bad in every respect.\nBeyond all things, I want you as my wife.'\n\"I feel, Mr. Boldwood, that though I respect you\nmuch, I do not feel -- what would justify me to -- in\naccepting your offer,' she stammered.\nThis giving back of dignity for dignity seemed to\nopen the sluices of feeling that Boldwood had as yet\nkept closed.\n\" My life is a burden without you,' he exclaimed, in\na low voice. \"I want you -- I want you to let me say\nI love you again and again!'\nBathsheba answered nothing, and the mare upon\nher arm seemed so impressed that instead of cropping\nthe herbage she looked up.\n\"I think and hope you care enough for me to listen\nto what I have to tell!\"\n   Bathsheba's momentary impulse at hearing this was\nto ask why he thought that, till she remembered that,\nfar from being a conceited assumption on Boldwood's\npart, it was but the natural conclusion of serious reflec+\ntion based on deceptive premises of her own offering.\n\"I wish I could say courteous flatteries to you,' the\nfarmer continued in an easier tone, \" and put my rugged\nfeeling into a graceful shape: but I have neither power\nnor patience to learn such things. I want you for my\nwife -- so wildly that no other feeling can abide in me;\nbut I should not have spoken out had I not been led\nto hope.'\n\"The valentine again! O that valentine!' she\nsaid to herself, but not a word to him.\n  \"If you can love me say so, Miss Everdene. If not\n -- don't say no!'\n  \"Mr. Boldwood, it is painful to have to say I am\nsurprised, so that I don't know how to answer you with\npropriety and respect -- but am only just able to speak\nout my feeling -- I mean my meaning; that I am afraid\nI can't marry you, much as I respect you. You are too\ndignified for me to suit you, sir.'\n  \"But, Miss Everdene!'\n\"I -- I didn't -- I know I ought never to have dreamt\nof sending\n<P 179>\nthat valentine -- forgive me, sir -- it was a\nwanton thing which no woman with any self-respect\nshould have done. If you will only pardon my thought+\nlessness, I promise never to --  -- '\n\" No, no, no. Don't say thoughtlessness! Make me\nthink it was something more -- that it was a sort of\nprophetic instinct -- the beginning of a feeling that you\nwould like me. You torture me to say it was done in\nthoughtlessness -- I never thought of it in that light, and\nI can't endure it. Ah ! I wish I knew how to win you!\nbut that I can't do -- I can only ask if I have already got\nyou. If I have not, and it is not true that you have\ncome unwittingly to me as I have to you, I can say no\nmore.'\n  \"I have not fallen in love with you, Mr. Boldwood --\ncertainly I must say that.' She allowed a very small\nsmile to creep for the first time over her serious face in\nsaying this, and the white row of upper teeth, and keenly+\ncut lips already noticed, suggested an idea of heartless+\nness, which was immediately contradicted by the pleasant\neyes.\n\"But you will just think -- in kindness and conde+\nscension think -- if you cannot bear with me as a husband!\nI fear I am too old for you, but believe me I will take\nmore care of you than would many a man of your own\nage. I will protect and cherish you with all my strength\n -- I will indeed! You shall have no cares -- be worried\nby no household affairs, and live quite at ease, Miss\nEverdene. The dairy superintendence shall be done by\na man -- I can afford it will -- you shall never have so\nmuch as to look out of doors at haymaking time, or to\nthink of weather in the harvest. I rather cling; to the\nchaise, because it is he same my poor father and mother\ndrove, but if you don't like it I will sell it, and you shall\nhave a pony-carriage of your own. I cannot say how\nfar above every other idea and object on earth you seem\nto me -- nobody knows -- God only knows -- how much\nyou are to me!'\nBathsheba's heart was young, and it swelled with\nsympathy for the deep-natured man who spoke so\nsimply.\n  \"Don't say it! don't! I cannot bear you to feel so\nmuch, and me to feel nothing. And I am afraid they\nwill notice us, Mr. Boldwood. Will you let the matter\nrest now? I cannot think\n<P 180>\ncollectedly. I did not know\nyou were going to say this to me. 0, I am wicked to\nhave made you suffer so!' She was frightened as well\nas agitated at his vehemence.\n  \"Say then, that you don't absolutely refuse. Do not\nquite refuse?'\n\"I can do nothing. I cannot answer.'\n\"I may speak to you again on the subject?'\n\"Yes.'\n\"I may think of you?'\n\"Yes, I suppose you may think of me.'\n\"And hope to obtain you?'\n\"No -- do not hope! Let us go on.'\n\"I will call upon you again to-morrow.'\n\"No -- please not. Give me time.'\n\"Yes -- I will give you any time,' he said earnestly and\ngratefully. \"I am happier now.'\n\"No -- I beg you! Don't be happier if happiness\nonly comes from my agreeing. Be neutral, Mr. Bold+\nwood! I must think.'\n\"I will wait,' he said.\nAnd then she turned away. Boldwood dropped his\ngaze to the ground, and stood long like a man who did not\nknow where he was. Realities then returned upon him\nlike the pain of a wound received in an excitement\nwhich eclipses it, and he, too, then went on.\n<C xx>\n<P 181>\nPERPLEXITy -- GRINDING THE SHEARS -- A QUARREL\n\"HE is so disinterested and kind to offer me all that I\ncan desire,' Bathsheba mused.\nYet Farmer Boldwood, whether by nature kind or\nthe reverse to kind, did not exercise kindness, here.\nThe rarest offerings of the purest loves are but a self+\nindulgence, and no generosity at all.\nBathsheba, not being the least in love with him, was\neventually able to look calmly at his offer. It was one\nwhich many women of her own station in the neighbour+\nhood, and not a few of higher rank, would have been\nwild to accept and proud to publish. In every point of\nview, ranging from politic to passionate, it was desirable\nthat she, a lonely girl, should marry, and marry this\nearnest, well-to-do, and respected man. He was close\nto her doors: his standing was sufficient: his qualities\nwere even supererogatory. Had she felt, which she did\nnot, any wish whatever for the married state in the\nabstract, she could not reasonably have rejected him,\nbeing a woman who frequently appealed to her under,\nstanding for deliverance from her whims. Boldwood as\na means to marriage was unexceptionable: she esteemed\nand liked him, yet she did not want him. It appears\nthat ordinary men take wives because possession is not\npossible without marriage, and that ordinary women\naccept husbands because marriage is not possible with,\nout possession; with totally differing aims the method is\nthe same on both sides. But the understood incentive\non the woman's part was wanting here. Besides, Bath+\nsheba's position as absolute mistress of a farm and house\nwas a novel one, and the novelty had not yet begun to\nwear off.\nBut a disquiet filled her which was somewhat to her\ncredit, for it would have affected few. Beyond the men+\ntioned reasons with which she combated her objections,\nshe had a strong\n<P 182>\nfeeling that, having been the one who\nbegan the game, she ought in honesty to accept the conse,\nquences. Still the reluctance remained. She said in the\nsame breath that it would be ungenerous not to marry\nBoldwood, and that she couldn't do it to save her life.\nBathsheba's was an impulsive nature under a delibera,\ntive aspect.  An Elizabeth in brain and a Mary Stuart\nin spirit, she often performed actions of the greatest\ntemerity with a manner of extreme discretion. Many of\nher thoughts were perfect syllogisms; unluckily they\nalways remained thoughts. Only a few were irrational\nassumptions; but, unfortunately, they were the ones\nwhich most frequently grew into deeds.\n  The next day to that of the declaration she found\nGabriel Oak at the bottom of her garden, grinding his\nshears for the sheep-shearing. All the surrounding\ncottages were more or less scenes of the same operation;\nthe scurr of whetting spread into the sky from all parts\nof the village as from an armury previous to a campaign.\nPeace and war kiss each other at their hours of prepara+\ntion -- sickles, scythes, shears, and pruning-hooks, ranking\nwith swords, bayonets, and lances, in their common\nnecessity for point and edge.\nCainy Ball turned the handle of Gabriel's grinstone,\nhis head performing a melancoly see-saw up and down\nwith each turn of the wheel. Oak stood somewhat as\nEros is represented when in the act of sharpening his\narrows: his figure slightly bent, the weight of his body\nthrown over on the shears, and his head balanced side+\nways, with a critical compression of the lips and contrac+\ntion of the eyelids to crown the attitude.\nHis mistress came up and looked upon them in\nsilence for a minute or two; then she said --\n\"Cain, go to the lower mead and catch the bay mare.\nI'll turn the winch of the grindstone. I want to speak\nto you, Gabriel.\nCain departed, and Bathsheba took the handle.\nGabriel had glanced up in intense surprise, quelled its\nexpression, and looked down again. Bathsheba turned\nthe winch, and Gabriel applied the shears.\nThe peculiar motion involved in turning a wheel\nhas a wonderful tendency to benumb the mind. It\nis a sort of\n<P 183>\nattenuated variety of Ixion's punishment,\nand contributes a dismal chapter to the history of\nheavy, and the body's centre of gravity seems to\nsettle by degrees in a leaden lump somewhere be+\ntween the eyebrows and the crown. Bathsheba felt\nthe unpleasant symptoms after two or three dozen\nturns.\n  \"Will you turn, Gabriel, and let me hold the shears?\"\nshe said. \"My head is in a'whirl, and I can't talk.\nGabriel turned. Bathsheba then began, with some\nawkwardness, allowing her thoughts to stray occasion+\nally from her story to attend to the shears, which\nrequired a little nicety in sharpening.\n  \"I wanted to ask you if the men made any observa+\ntions on my going behind the sedge with Mr. Boldwood\nyesterday?'\n  \"Yes, they did,' said Gabriel. \"You don't hold\nthe shears right, miss -- I knew you wouldn't know the\nway -- hold like this.'\nHe relinquished the winch, and inclosing her two\nhands completely i his own (taking each as we some+\ntimes slasp a child's hand in teaching him to write),\ngrasped the shears with her. \"Incline the edge so,'\nhe said.\n  Hands and shears were inclined to suit the words,\nand held thus for a peculiarly long time by the in+\nstructor as he spoke.\n  \"That will do,' exclaimed Bathsheba. \"Loose my\nhands. I won't have them held! Turn the winch.'\nGabriel freed her hands quietly, retired to his\nhandle, and the grinding went on.\n  \"Did the men think it odd?' she said again.\n\"Odd was not the idea, miss.'\n\"What did they say?'\n\"That Farmer Boldwood's name and your own\nwere likely to be flung over pulpit together before the\nyear was out.'\n\"I thought so by the look of them! Why, there's\nnothing in it. A more foolish remark was never made,\nand I want you to contradict it! that's what I came for.'\n  Gabriel looked incredulous and sad, but between\nhis moments of incredulity, relieved.\n\"They must have heard our conversation,' she\ncontinued.\n<P 184>\n\"Well, then, Bathsheba!' said Oak, stopping the\nhandle, and gazing into her face with astonishment.\n  \"Miss Everdene, you mean,\" she said, with dignity.\n  \"I mean this, that if Mr. Boldwood really spoke of\nmarriage, I bain't going to tell a story and say he\ndidn't to please you. I have already tried to please\nyou too much for my own good!'\nHathsheba regarded him with round-eyed perplexity.\nShe did not know whether to pity him for disappointed\nlove of her, or to be angry with him for having got\nover it -- his tone being ambiguous.\n  \"I said I wanted you just to mention that it was\nnot true I was going to be married to him,' she mur+\nmured, with a slight decline in her assurance.\n\"I can say that to them if you wish, Miss Everdene.\nAnd I could likewise give an opinion to 'ee on what\nyou have done.'\n\"I daresay. But I don't want your opinion.'\n\"I suppose not,' said Gabriel bitterly, and going on\nwith his turning, his words rising and falling in a\nregular swell and cadence as he stooped or rose with\nthe winch, which directed them, according to his\nposition, perpendiculary into the earth, or horizontally\nalong the garden, his eyes being fixed on a leaf upon\nthe ground.\n  With Bathsheba a hastened act was a rash act;\nbut, as does not always happen, time gained was\nprudence insured. It must be added, however, that\ntime was very seldom gained. At this period the\nsingle opinion in the parish on herself and her doings\nthat she valued as sounder than her own was Gabriel\nOak's. And the outspoken honesty of his character\nwas such- that on any subject even that of her love\nfor, or marriage with, another man, the same disinter+\nestedness of opinion might be calculated on, and be\nhad for the asking. Thoroughly convinced of the\nimpossibility of his own suit, a high resolve constrained\nhim not to injure that of another. This is a lover's\nmost stoical virtue, as the lack of it is a lover's most\nvenial sin. Hnowing he would reply truly, she asked\nthe question, painful as she must have known the sub+\nject would be. Such is the selfishness of some charm+\ning women. Perhaps it was some excuse for her thus\ntorturing honesty to her own advantage, that she had\n<P 185>\nabsolutely no other sound judgment within easy reach.\n\"Well, what is your opinion of my conduct,' she\nsaid, quietly.\n\"That it is unworthy of any thoughtful, and meek,\nand comely woman.'\nIn an instant Bathsheba's face coloured with the\nangry crimson of a danby sunset. But she forbore\nto utter this feeling, and the reticence of her tongue\nonly made the loquacity of her face the more notice+\nable.\nThe next thing Gabriel did was to make a mistake.\n\"Perhaps you don't like the rudeness of my repri+\nmanding you, for I know it is rudeness; but I thought\nit would do good.'\nShe instantly replied sarcastically --\n\"On the contrary, my opinion of you is so low, that\nI see in your abuse the praise of discerning people!'\n\"I am glad you don't mind it, for I said it honestly\nand with every serious meaning.'\n  \"I see. But, unfortunately, when you try not to\nspeak in jest you are amusing -- just as when you wish\nto avoid seriousness you sometimes say a sensible word\nIt was a hard hit, but Bathsheba had unmistakably\nlost her temper, and on that account Gabriel had\nnever in his life kept his own better. He said nothing.\nShe then broke out --\n  \"I may ask, I suppose, where in particular my\nunworthiness lies? In my not marrying you, perhaps!\n\"Not by any means,' said Gabriel quietly. \"I have\nlong given up thinking of that matter.'\n\"Or wishing it, I suppose,' she said; and it was\napparent that she expected an unhesitating denial of\nthis supposition.\nWhatever Gabriel felt, he coolly echoed her words --\n\"Or wishing it either.'\n  A woman may be treated with a bitterness which\nis sweet to her, and with a rudeness which is not\noffensive. Bathsheba would have submitted to an\nindignant chastisement for her levity had Gabriel pro+\ntested that he was loving her at the same time; the\nimpetuosity of passion unrequited is bearable, even if\nit stings and anathematizes there is a triumph in the\nhumiliation, and a tenderness in the strife. This was\nwhat she had been expecting, and what she had not\ngot. To be lectured\n<P 186>\nbecause the lecturer saw her in\nthe cold morning light of open-shuttered disillusion\nwas exasperating. He had not finished, either. He\ncontinued in a more agitated voice: --\n\"My opinion is (since you ask it) that you are\ngreatly to blame for playing pranks upon a man like\nMr. Boldwood, merely as a pastime. Leading on a\nman you don't care for is not a praiseworthy action.\nAnd even, Miss Everdene, if you seriously inclined\ntowards him, you might have let him find it out in\nsome way of true loving-kindness, and not by sending\nhim a valentine's letter.'\nBathsheba laid down the shears.\n \"I cannot allow any man to -- to criticise my private\nConduct!' she exclaimed. \"Nor will I for a minute.\nSo you'll please leave the farm at the end of the week!'\nIt may have been a peculiarity -- at any rate it was\na fact -- that when Bathsheba was swayed by an emotion\nof an earthly sort her lower lip trembled: when by a\nrefined emotion, her upper or heavenward one. Her\nnether lip quivered now.\n\"Very well, so I will,' said Gabriel calmly. He had\nbeen held to her by a beautiful thread which it pained\nhim to spoil by breaking, rather than by a chain he\ncould not break. \"I should be even better pleased to\ngo at once,' he added.\n\"Go at once then, in Heaven's name!' said she,her\neyes flashing at his, though never meeting them.\n\"Don't let me see your face any more.'\n\"Very well, Miss Everdene -- so it shall be.'\nAnd he took his shears and went away from her in\nplacid dignity, as Moses left the presence of Pharaoh.\n<C xxi>\n<P 187>\nTROUBLES IN THE FOLD -- A MESSAGE\nGABRIEL OAK had ceased to feed the Weatherbury\nflock for about four-and-twenty hours, when on Sunday\nafternoon the elderly gentlemen Joseph Poorgrass,\nMatthew Moon, Fray, and half-a-dozen others, came\nrunning up to the house of the mistress of the Upper\nFarm.\n \"Whatever is the matter, men?' she said, meeting\nthem at the door just as she was coming out on her\nway to church, and ceasing in a moment from the close\ncompression of her two red lips, with which she had\naccompanied the exertion of pelling on a tight glove.\n\"Sixty!' said Joseph Poorgrass.\n\"Seventy!' said Moon.\n\"Fifty-nine!' said Susan Tall's husband.\n\" -- Sheep have broke fence,' said Fray.\n\" -- And got into a field of young clover,' said Tall.\n\" -- Young clover!' said Moon.\n\" -- Clover!' said Joseph Poorgrass.\n\"And they be getting blasted,' said Henery Fray.\n\"That they be,' said Joseph.\n\"And will all die as dead as nits, if they bain't got\nout and cured!'said Tall.\nJoseph's countenance was drawn into lines and\npuckers by his concern. Fray's forehead was wrinkled\nboth perpendicularly and crosswise, after the pattern of\na portcullis, expressive of a double despair. Laban\nTall's lips were thin, and his face were rigid. Matthew's\njaws sank, and his eyes turned whichever way the\nstrongest muscle happened to pull them.\n  \"Yes,' said Joseph, \"and I was sitting at home,\nlooking for Ephesians, and says I to myself, \"'Tis\nnothing but Corinthians and Thessalonians in this\ndanged Testament,'' when\n<P 188>\nwho should come in but\nHenery there: \"\"Joseph,'' he said, \"\"the sheep have\nWith Bathsheba it was a moment when thought was\nblasted theirselves -- -'''\n  With Bathsheba it was a moment when thought was\nspeech and speech exclamation. Moreover, she had\nhardly recovered her equanimity since the disturbance\nwhich she had suffered from Oak's remarks.\n'Thats enought -- that's enough! -- oh, you fools!'\nshe cried, throwing the parasol and Prayer-book into\nthe passage, and running out of doors in the direction\nsignified. \"To come to me, and not go and get them\nout directly! Oh, the stupid numskulls!'\nHer eyes were at their darkest and brightest now.\nBathsheba's beauty belonged rather to the demonian\nthan to the angelic school, she never looked so well as\nwhen she was angry -- and particularly when the effect\nwas heightened by a rather dashing velvet dress, care+\nfully put on before a glass.\nAll the ancient men ran in a jumbled throng after\nher to the clover-field, Joseph sinking down in the\nmidst when about half-way, like an individual withering\nin a world which was more and more insupportable.\nHaving once received the stimulus that her presence\nalways gave them they went round among the sheep\nwith a will. The majority of the afflicted animals were\nlying down, and could not be stirred. These were\nbodily lifted out, and the others driven into the adjoining\nfield. Here, after the lapse of a few minutes, several\nmore fell down, and lay helpless and livid as the rest.\nBathsheba, with a sad, bursting heart, looked at these\nprimest specimens of her prime flock as they rolled\nthere --\nSwoln with wind and the rank mist they drew.\nMany of them foamed at the mouth, their breathing\nbeing quick and short, whilst the bodies of all were\nfearfully distended.\n\"O, what can I do, what can I do!' said Bathsheba,\nhelplessly. \"Sheep are such unfortunate animals! --\nthere's always something happening to them! I never\nknew a flock pass a year without getting into some scrape\nor other.'\n\"There's only one way of saving them,' said Tall.\n<P 189>\n\"What way? Tell me quick!'\n\"They must be pierced in the side with a thing made\non purpose.'\n\"Can you do it? Can I?'\n\"No, ma'am. We can't, nor you neither. It must\nbe done in a particular spot. If ye go to the right or\nleft but an inch you stab the ewe and kill her. Not\neven a shepherd can do it, as a rule.'\n\"Then they must die,' she said, in a resigned tone.\n\"Only one man in the neighbourhood knows the way,'\nsaid Joseph, now just come up. \"He could cure 'em\nall if he were here.'\n\"Who is he? Let's get him!'\n\"Shepherd Oak,\" said Matthew. \"Ah, he's a clever\nman in talents!'\n\"Ah, that he is so!' said Joseph Poorgrass.\n\"True -- he's the man,' said Laban Tall.\n\"How dare you name that man in my presence!' she\nsaid excitedly. \"I told you never to allude to him, nor\nshall you if you stay with me. Ah!' she added, brighten+\ning, \"Farmer Boldwood knows!'\n  \"0 no, ma'am' said Matthew. \"Two of his store\newes got into some vetches t'other day, and were just\nlike these. He sent a man on horseback here post-haste\nfor Gable, and Gable went and saved 'em, Farmer\nBoldwood hev got the thing they do it with. 'Tis a\nholler pipe, with a sharp pricker inside. Isn't it,\nJoseph?'\n  \"Ay -- a holler pipe,' echoed Joseph. \"That's what\n'tis.'\n\"Ay, sure -- that's the machine,' chimed in Henery\nFray, reflectively, with an Oriental indifference to the\nflight of time.\n\"Well,\" burst out Bathsheba, \"don't stand there with\nyour \"\"ayes'' and your \"\"sures,'' talking at me! Get\nsomebody to cure the sheep instantly!'\n  All then stalked or in eonsternation, to get some+\nbody as directed, without any idea of who it was to be.\nIn a minute they had vanished through the gate,.and\nshe stood alone with the dying flock.\n\"Never will I send for him never!' she said firmly.\n<P 190>\nOne of the ewes here contracted its muscles horribly,\nextended itself, and jumped high into the air. The\nleap was an astonishing one. The ewe fell heavily, and\nlay still.\nBathsheba went up to it. The sheep was dead.\n\"O, what shall I do -- what shall I do!' she again\nexclaimed, wringing her hands. \"I won't send for him.\nNo, I won't!'\nThe most vigorous expression of a resolution does\nnot always coinicide with the greatest vigour of the\nresolution itself. It is often flung out as a sort of prop\nto support a decaying conviction which, whilst strong,\nrequired no enunciation to prove it so. The \"No, I\nwon't' of Bathsheba meant virtually, \"I think I must.'\nShe followed her assistants through the gate, and\nlifted her hand to one of them. Laban answered to her\nsignal.\n\"Where is Oak staying?'\n\"Across the valley at Nest Cottage!'\n\"Jump on the bay mare, and ride across, and say he\nmust return instantly -- that I say so.'\nTall scrambled off to the field, and in two minutes\nwas on Poll, the bay, bare-backed, and with only a\nhalter by way of rein. He diminished down the\nhill.\nBathsheba watched. So did all the rest. Tall\ncantered along the bridle-path through Sixteen Acres,\nSheeplands, Middle Field The Flats, Cappel's Piece,\nshrank almost to a point, crossed the bridge, and\nascended from the valley through Springmead and\nWhitepits on the other side. The cottage to which\nGabriel had retired before taking his final departure\nfrom the locality was visible as a white spot on the\nopposite hill, backed by blue firs. Bathsheba walked\nup and down. The men entered the field and\nendeavoured to ease the anguish of the dumb creatures\nby rubbing them. Nothing availed.\nBathsheba continued walking. The horse was seen\ndescending the hill, and the wearisome series had to be\nrepeated in reverse order: Whitepits, Springmead,\nCappel's Piece, The Flats, Middle Field, Sheeplands,\nSixteen Acres. She hoped Tall had had presence of\nmind enough to give the mare up to Gabriel, and return\nhimself on foot. The rider neared them. It was Tall.\n<P 191>\n\"O, what folly!' said Bathsheba.\nGabriel was not visible anywhere.\n\"Perhaps he is already gone!' she said.\nTall came into the inclosure, and leapt off, his face\ntragic as Morton's after the battle of Shrewsbury.\n\"Well?' said Bathsheba, unwilling to believe that\nher verbal lettre-de-cachet could possibly have miscarried.\n\"He says beggars mustn't be choosers,' replied Laban.\n\"What!' said the young farmer, opening her eyes\nand drawing in her breath for an outburst. Joseph\nPoorgrass retired a few steps behind a hurdle.\n\"He says he shall not come onless you request en\nto come civilly and in a proper manner, as becomes any\n'ooman begging a favour.'\n\"Oh, oh, that's his answer! Where does he get his\nairs? Who am I, then, to be treated like that? Shall\nI beg to a man who has begged to me?'\nAnother of the flock sprang into the air, and fell\ndead.\nThe men looked grave, as if they suppressed opinion.\nBathsheba turned aside, her eyes full of tears. The\nstrait she was in through pride and shrewishness could\nnot be disguised longer: she burst out crying bitterly;\nthey all saw it; and she attempted no further concealment.\n\"I wouldn't cry about it, miss,' said William Small+\nbury, compassionately. \"Why not ask him softer like?\nI'm sure he'd come then. Gable is a true man in that\nway.'\nBathsheba checked her grief and wiped her eyes.\n\"O, it is a wicked cruelty to me -- it is -- it is!' she\nmurmured. \"And he drives me to do what I wouldn't;\nyes, he does ! -- Tall, come indoors.'\nAfter this collapse, not very dignified for the head\nof an establishment, she went into the house, Tall at\nher heels. Here she sat down and hastily scribbled a\nnote between the small convulsive sobs of convalescence\nwhich follow a fit of crying as a ground-swell follows a\nstorm. The note was none the less polite for being\nwritten in a hurry. She held it at a distance, was\nabout to fold it, then added these words at the\nbottom: --\n\"Do not desert me, Gabriel!'\n<P 193>\nShe looked a little redder in refolding it, and closed\nher lips, as if thereby to suspend till too late the action\nof conscience in examining whether such strategy were\njustifiable. The note was despatched as the message\nhad been, and Bathsheba waited indoors for the result.\nIt was an anxious quarter of an hour that intervened\nbetween the messenger's departure and the sound of the\nhorse's tramp again outside. She- could not watch this\ntime, but, leaning over the old bureau at which she had\nwritten the letter, closed her eyes, as if to keep out both\nhope and fear.\n  The case, however, was a promising one. Gabriel\nwas not angry: he was simply neutral, although her first\ncommand had been so haughty. Such imperiousness\nwould have damned a little less beauty; and on the\nother hand, such beauty would have redeemed a little\nless imperiousness.\nShe went out when the horse was heard, and looked\nup. A mounted figure passed between her and the\nsky, and drew on towards the fleld of sheep, the rider\nturning his face in receding. Gabriel looked at her.\nIt was a moment when a woman's eyes and tongue tell\ndistinctly opposite tales. Bathsheba looked full of\ngratitude, and she said: --\n  \"O, Gabriel, how could you serve me so unkindly!'\nSuch a tenderly-shaped reproach for his previous\ndelay was the one speech in the language that he could\npardon for not being commendation of his readiness\nnow.\nGabriel murmured a confused reply, and hastened\non. She knew from the look which sentence in her\nnote had brought him. Bathsheba followed to the\nfield.\nGabriel was already among the turgid, prostrate forms.\nHe had flung off his coat, rolled up his shirt-sleeves,\nand taken from his pocket the instrument of salvation.\nIt was a small tube or trochar, with a lance passing\ndown the inside; and Gabriel began to use it with a\ndexterity that would have graced a hospital surgeon.\nPassing his hand over the sheep's left flank, and\nselecting the proper point, he punctured the skin and\nrumen with the lance as it stood in the tube; then he\nsuddenly withdrew the lance, retaining the tube in its\nplace. A current of air rushed up the tube, forcible\nenough to have extinguished a candle held at the\norifice.\nIt has been said that mere ease after torment is de+\nlight for a time; and the countenances of these poor\ncreatures expressed it now. Forty-nine operations were\nsuccessfully performed. Owing to the great hurry\nnecessitated by the far-gone state of some of the flock,\nGabriel missed his aim in one case, and in one only --\nstriking wide of the mark, and inflicting a mortal blow\nat once upon the suffering ewe. Four had died; three\nrecovered without an operation. The total number of\nsheep which had thus strayed and injured themselves\nso dangerously was fifty-seven.\nWhen the love-led man had ceased from his labours,\nBathsheba came and looked him in the face.\n\"Gabriel, will you stay on with me?' she, said,\nsmiling winningly, and not troubling to bring her lips\nquite together again at the end, because there was going\nto be another smile soon.\n\"I will,' said Gabriel.\nAnd she smiled on him again.\n<C xxii>\n<P 194>\nTHE GREAT BARN AnD THE SHEEP-SHEARERS\nMEN thin away to insignificance and oblivion quite as\noften by not making the most of good spirits when they\nhave them as by lacking good spirits when they are\nindispensable. Gabriel lately, for the first time since\nhis prostration by misfortune, had been independent in\nthought and vigorous in action to a marked extent --\nconditions which, powerless without an opportunity as\nan opportunity without them is barren, would have\ngiven him a sure lift upwards when the favourable-con+\njunction should have occurred. But this incurable\nloitering beside Bathsheba Everdene stole his time\nruinously. The spring tides were going by without\nfloating him off, and the neap might soon come which\ncould not.\nIt was the first day of June, and the sheep-shearing\nseason culminated, the landscape, even to the leanest\npasture, being all health and colour. Every green was\nyoung, every pore was open, and every stalk was swollen\nwith racing currents of juice. God was palpably present\nin the country, and the devil had gone with the world\nto town. Flossy catkins of the later kinds, fern-sprouts\nlike bishops' croziers, the square-headed moschatel, the\nodd cuckoo-pint, -- like an apoplectic saint in a niche\nof malachite, -- snow-white ladies'-smocks, the toothwort,\napproximating to human flesh, the enchanter's night+\nshade, and the black-petaled doleful-bells, were among\nthe quainter objects of the vegetable world in and about\nWeatherbury at this teeming time; and of the animal,\nthe metamorphosed figures of Mr. Jan Coggan, the\nmaster-shearer; the second and third shearers, who\ntravelled in the exercise of their calling, and do not re+\nquire definition by name; Henery Fray the fourth\nshearer, Susan Tall's husband the fifth, Joseph Poorgrass\nthe sixth, young Cain Ball as assistant-shearer, and\nGabriel Oak as general supervisor. None of these were\nclothed\n<P 195>\nto any extent worth mentioning, each appearing\nto have hit in the matter of raiment the decent mean\nbetween a high and low caste Hindoo. An angularity\nof lineament, and a fixity of facial machinery in general,\nproclaimed that serious work was the order of the day.\nThey sheared in the great barn, called for the nonce\nthe Shearing-barn, which on ground-plan resembled a\nchurch with transepts. It not only emulated the form\nof the neighbouring church of the parish, but vied with\nit in antiquity. Whether the barn had ever formed one\nof a group of conventual buildings nobody seemed to be\naware; no trace of such surroundings remained. The\nvast porches at the sides, lofty enough to admit a waggon\nladen to its highest with corn in the sheaf, were spanned\nby heavy-pointed arches of stone, broadly and boldly cut,\nwhose very simplicity was the origin of a grandeur not\napparent in erections where more ornament has been\nattempted. The dusky, filmed, chestnut roof, braced\nand tied in by huge collars, curves, and diagonals, was\nfar nobler in design, because more wealthy in material,\nthan nine-tenths of those in our modern churches.\nAlong each side wall was a range of striding buttresses,\nthrowing deep shadows on the spaces between them,\nwhich were perforated by lancet openings, combining\nin their proportions the precise requirements both of\nbeauty and ventilation.\nOne could say about this barn, what could hardly\nbe said of either the church or the castle, akin to it in\nage and style, that the purpose which had dictated its\noriginal erection was the same with that to which it\nwas still applied. Unlike and superior to either of\nthose two typical remnants of mediaevalism, the old\nbarn embodied practices which had suffered no mutila+\ntion at the hands of time. Here at least the spirit of\nthe ancient builders was at one with the spirit of the\nmodern beholder. Standing before this abraded pile,\nthe eye regarded its present usage, the mind-dwelt upon\nits past history, with a satisfied sense of functional\ncontinuity throughout -- a feeling almost of gratitude,\nand quite of pride, at the permanence of the idea\nwhich had heaped it up. The fact that four centuries\nhad neither proved it to be founded on a mistake,\n<P 196>\ninspired any hatred of its purpose, nor given rise to\nany reaction that had battered it down, invested this\nsimple grey effort of old minds with a repose, if not a\ngrandeur, which a too curious reflection was apt to\ndisturb in its ecclesiastical and military compeers. For\nonce medievalism and modernism had a common stand+\npoint. The lanccolate windows, the time-eaten arch+\nstones and chamfers, the orientation of the axis, the\nmisty chestnut work of the rafters, referred to no exploded\nfortifying art or worn-out religious creed. The defence\nand salvation of the body by daily bread is still a study,\na religion, and a desire.\nTo-day the large side doors were thrown open\ntowards the sun to admit a bountiful light to the\nimmediate spot of the shearers' operations, which was\nthe wood threshing-floor in the centre, formed of thick\noak, black with age and polished by the beating of flails\nfor many generations, till it had grown as slippery and\nas rich in hue as the state-room floors of an Elizabethan\nmansion. Here the shearers knelt, the sun slanting in\nupon their bleached shirts, tanned arms, and the polished\nshears they flourished, causing these to bristle with a\nthousand rays strong enough to blind a weak-eyed man.\nBeneath them a captive sheep lay panting, quickening\nits pants as misgiving merged in terror, till it quivered\nlike the hot landscape outside.\nThis picture of to-day in its frame of four hundred\nyears ago did not produce that marked contrast between\nancient and modern which is implied by the contrast\nof date. In comparison with cities, Weatherbury was\nimmutable. The citizen's Then is the rustic's Now.\nIn London, twenty or thirty-years ago are old times;\nin Paris ten years, or five; in Weatherbury three or\nfour score years were included in the mere present,\nand nothing less than a century set a mark on its\nface or tone. Five decades hardly modified the cut of\na gaiter, the embroidery of a smock-frock, by the breadth\nof a hair. Ten generations failed to alter the turn of\na single phrase. In these Wessex nooks the busy out+\nsider's ancient times are only old; his old times are still\nnew; his present is futurity.\nSo the barn was natural to the shearers, and the\nshearers were in harmony with the barn.\nThe spacious ends of the building, answering ecclesi+\nastically\n<P 197>\nto nave and chancel extremities, were fenced\noff with hurdles, the sheep being all collected in a crowd\nwithin these two enclosures; and in one angle a catching+\npen was formed, in which three or four sheep were\ncontinuously kept ready for the shearers to seize without\nloss of time. In the background, mellowed by tawny\nshade, were the three women, Maryann Money, and\nTemperance and Soberness Miller, gathering up the\nfleeces and twisting ropes of wool with a wimble for\ntying them round. They were indifferently well assisted\nby the old maltster, who, when the malting season from\nOctober to April had passed, made himself useful upon\nany of the bordering farmsteads.\n\"Behind all was Bathsheba, carefully watching the\nmen to see that there was no cutting or wounding\nthrough carelessness, and that the animals were shorn\nclose. Gabriel, who flitted and hovered under her\nbright eyes like a moth, did not shear continuously,\nhalf his time being spent in attending to the others\nand selecting the sheep for them. At the present\nmoment he was engaged in handing round a mug of\nmild liquor, supplied from a barrel in the corner,\nand cut pieces of bread and cheese.\nBathsheba, after throwing a glance here, a caution\nthere, and lecturing one of the younger operators who\nhad allowed his last finished sheep to go off among\nthe flock without re-stamping it with her initials, came\nagain to Gabriel, as he put down the luncheon to drag\na frightened ewe to his shear-station, flinging it over\nupon its back with a dexterous twist of the arm\nHe lopped off the tresses about its head, and opened\nup the neck and collar, his mistress quietly looking\non:\n\"She blushes at the insult,' murmured Bathsheba,\nwatching the pink flush which arose and overspread\nthe neck and shoulders of the ewe where they were\nleft bare by the clicking shears -- a flush which was\nenviable, for its delicacy, by many queens of coteries,\nand would have been creditable, for its promptness, to\nany woman in the world.\nPoor Gabriel's soul was fed with a luxury of content\nby having her over him, her eyes critically regarding\nhis skilful shears, which apparently were going to gather\nup a piece of the flesh at every close, and yet never did\nso. Like Guildenstern,\n<P 198>\nOak was happy in that he was\nnot over happy. He had no wish to converse with her:\nthat his bright lady and himself formed one group,\nexclusively their own, and containing no others in the\nworld, was enough.\nSo the chatter was all on her side. There is a\nloquacity that tells nothing, which was Bathsheba's;\nand there is a silence which says much: that was\nGabriel's. Full of this dim and temperate bliss, he\nwent on to fling the ewe over upon her other side,\ncovering her head with his knee, gradually running\nthe shears line after line round her dewlap; thence\nabout her flank and back, and finishing over the tail.\n\"Well done, and done quickly!' said Bathsheba,\nlooking at her watch as the last snip resounded.\n\"How long, miss?' said Gabriel, wiping his brow.\n\"Three-and-twenty minutes and a half since you took\nthe first lock from its forehead. It is the first time that\nI have ever seen one done in less than half an hour.'\nThe clean, sleek creature arose from its fleece -- how\nperfectly like Aphrodite rising from the foam should\nhave been seen to be realized -- looking startled and\nshy at the loss of its garment, which lay on the floor\nin one soft cloud, united throughout, the portion visible\nbeing the inner surface only, which, never before exposed,\nwas white as snow, and without flaw or blemish of the\nminutest kind.\n\"Cain Ball!'\n\"Yes, Mister Oak; here I be!'\nCainy now runs forward with the tar-pot. \"B. E.' is\nnewly stamped upon the shorn skin, and away the simplc\ndam lcaps, panting, over the board into the shirtless\nflock outside. Then up comes Maryann; throws the\nloose locks into the middle of the fleece, rolls it up,\nand carries it into the background as three-and-a-half\npounds of unadulterated warmth for the winter enjoy+\nment of persons unknown and far away, who will,\nhowever, never experience the superlative comfort\nderivable from the wool as it here exists, new and pure\n -- before the unctuousness of its nature whilst in a\nliving state has dried, stiffened, and been washed out\n -- rendering it just now as superior to anything woollen\nas cream is superior to milk-and-water.\n<P 199>\nBut heartless circumstance could not leave entire\nGabriel's happiness of this morning. The rams, old\newes, and two-shear ewes had duly undergone their\nstripping, and the men were proceeding with the shear+\nlings and hogs, when Oak's belief that she was going to\nstand pleasantly by and time him through another\nperformance was painfully interrupted by Farmer Bold+\nwood's appearance in the extremest corner of the barn.\nNobody seemed to have perceived his entry, but there\nhe certainly was. Boldwood always carried with him a\nsocial atmosphere of his own, which everybody felt who\ncame near him; and the talk, which Bathsheba's\npresence had somewhat suppressed, was now totally\nsuspended.\n  He crossed over rowards Bathsheba, who turned to\ngreet him with a carriage of perfect ease. He spoke to\nher in low tones, and she instinctively modulated her\nown to the same pitch, and her voice ultimately even\ncaught the inflection of his. She was far from having\na wish to appear mysteriously connected with him; but\nwoman at the impressionable age gravitates to the larger\nbody not only in her choice of words, which is apparent\nevery day, but even in her shades of tone and humour,\nwhen the influence is great.\n  What they conversed about was not audible to\nGabriel, who was too independent to get near, though\ntoo concerned to disregard. The issue of their dialogue\nwas the taking of her hand by the courteous farmer to\nhelp her over the spreading-board into the bright June\nsunlight outside. Standing beside the sheep already\nshorn, they went on talking again. Concerning the\nflock? Apparently not. Gabriel theorized, not without\ntruth, that in quiet discussion of any matter within reach\nof the speakers' eyes, these are usually fixed upon it.\nBathsheba demurely regarded a contemptible straw lying\nupon the ground, in a way which suggested less ovine\ncriticism than womanly embarrassment. She became\nmore or less red in the cheek, the blood wavering in\nuncertain flux and reflux over the sensitive space between\nebb and flood. Gabriel sheared on, constrained and\nsad.\nShe left Boldwood's side, and he walked up and\ndown alone for nearly a quarter of an hour. Then she\nreappeared in her\n<P 200>\nnew riding-habit of myrtle-green, which\nfitted her to the waist as a rind fits its fruit; and young\nBob Coggan led -on -her mare, Boldwood fetching his\nown horse from the tree under which it had been tied.\n  Oak's eyes could not forsake them; and in en+\ndeavouring to continue his shearing at the same time\nthat he watched Boldwood's manner, he snipped the\nsheep in the groin. The animal plunged; Bathsheba\ninstantly gazed towards it, and saw the blood.\n\"O, Gabriel!' she exclaimed, with severe remon+\nstrance you who are so strict with the other men -- see\nwhat you are doing yourself!'\nTo an outsider there was not much to complain of\nin this remark ; but to Oak, who \"knew Bathsheba to be\nwell aware that she herself was the cause of the poor\newe's wound, because she had wounded the ewe's shearer\nin a -- still more vital part, it had a sting which the abiding\nsense of his inferiority to both herself and Boldwood was\nnot calculated to heal. But a manly resolve to recognize\nboldly that he had no longer a lover's interest in her,\nhelped him oceasionally to conceal a feeling.\n\" Bottle .! ' he shouted, in an unmoved voice of routine.\nCainy Ball ran up, the wound was anointed, and the\nshearing continued.\nBoldwood gently tossed Bathsheba into the saddle,\nand before they turned away she again spoke out to Oak\nwith the same dominative and tantalizing graciousness.\n\"I am going now to see Mr. Boldwood's Leicesters.\nTake my place in the barn, Gabriel, and keep the men\ncarefully to their work.'\nThe horses' heads were put about, and they trotted\naway.\nBoldwood's deep attachment was a matter of great\ninterest among all around him ; but, after having been\npointed out for so many years as the perfect exemplar\nof thriving bachelorship, his lapse was an anticlimax\nsomewhat resembling that of St. John Long's death by\nconsumption in the midst of his proofs that it was not\na fatal disease.\n<P 201>\n\" That means matrimony,' said Temperance Miller,\nfollowing them out of sight with her eyes.\n\"I reckon that's the size o't,' said Coggan, working\nalong without looking up.\n\" Well, better wed over the mixen than over the moor,'\nsaid Laban Tall, turning his sheep.\nHenery Fray spoke, exhibiting miserable eyes at the\nsame time: \"I don't see why a maid should take a\nhusband when she's bold enough to fight her own\nbattles, and don't want a home ; for 'tis keeping another\nwoman out. But let it be, for 'tis a pity he and she\nshould trouble two houses.'\nAs usual with decided characters, Bathsheba invari+\nably provoked the criticism of individuals like Henery\nFray. Her emblazoned fault was to be too pronounced\nin her objections, and not sufficiently overt in her\nlikings. We learn that it is not the rays which bodies\nabsorb, but those which they reject, that give them the\ncolours they are known by ; and win the same way people\nare specialized by their dislikes and antagonisms, whilst\ntheir goodwill is looked upon as no attribute at all.\nHenery continued in a more complaisant mood : \"I\nonce hinted my mind to her on a few things, as nearly\nas a battered frame dared to do 'so to such a froward\npiece. You all know, neighbours, what a man I be,\nand how I come down with my powerful words when\nmy pride is boiling wi' scarn ?'\n\" We do, we do, Henery.'\n\" So I said, \"\" Mistress Everdene, there's places empty,\nand there's gifted men willing ; but the spite '' -- no. not\nthe spite -- I didn't say spite -- \"\"but the villainy of the\ncontrarikind,'' I said (meaning womankind), \"\" keeps 'em\nout.'' That wasn't too strong for her, say ? '\n\" Passably well put.'\n\"Yes; and I would have said it, had death and\nsalvation overtook me for it. Such is my spirit when I\nhave a mind.'\n\"A true man, and proud as a lucifer.'\n\"You see the artfulness ? Why, 'twas about being\nbaily really; but I didn't put it so plain that she could\nunderstand my meaning, so I could lay it on all the\n<P 202>\nstronger. That was my depth .! ... However, let her\nmarry an she will. Perhaps 'tis high time. I believe\nFarmer Boldwood kissed her behind the spear-bed at the\nsheep-washing t'other day -- that I do.'\n\" What a lie !.' said Gabriel.\n\" Ah, neighbour Oak -- how'st know ? ' said, Henery,\nmildly.\n\" Because she told me all that passed,' said Oak, with\na pharisaical sense that he was not as other shearers in\nthis matter.\n\"Ye have a right to believe it,' said Henery, with\ndudgeon; \"a very true right. But I mid see a little\ndistance into things !. To be long-headed enough for a\nbaily's place is a poor mere trifle -- yet a trifle more than\nnothing. However, I look round upon life quite cool.\nDo you heed me, neighbours ? My words, though made\nas simple as I can, mid be rather deep for some heads.'\n\" O yes, Henery, we quite heed ye.'\n\" A strange old piece, goodmen -- whirled about from\nhere to yonder, as if I were nothing ! A little warped,\ntoo. But I have my depths; ha, and even my great\ndepths ! I might gird at a certain shepherd, brain to\nbrain. But no -- O no !.'\n\" A strange old piece, ye say .! ' interposed the maltster,\nin a querulous voice. \"At the same time ye be no old\nman worth naming -- no old man at all. Yer teeth\nbain't  half  gone  yet ; and what's a old  man's standing\nif se be his teeth bain't gone? Weren't I stale in\nwedlock afore ye were out  of arms ? 'Tis a poor thing\nto be sixty, when there's people far past four-score -- a\nboast'weak as water.'\nIt was the unvaying custom in Weatherbury to\nsink minor differences when the maltster had to be\npacified.\n\" Weak as-water .! yes,' said Jan Coggan.- \"Malter,\nwe feel ye to be a wonderful veteran man, and nobody\ncan gainsay it.'\n\" Nobody,' said Joseph Poorgrass. \"Ye be a very\nrare old  spectacle, malter, and we all admire ye for that\ngift. '\n\"Ay, and as a young man, when my senses were in\nprosperity, I was likewise liked by a good-few who\nknowed me,' said the maltster.\n\" 'Ithout doubt you was -- 'ithout doubt.'\nThe bent and hoary 'man was satisfied, and so\napparently was Henery Frag. That matters should\ncontinue pleasant Maryann\n<P 203>\nspoke, who, what with her\nbrown complexion, and the working wrapper of rusty\nlinsey, had at present the mellow hue of an old sketch\nin oils -- notably some of Nicholas Poussin's: --\n\" Do anybody know of a crooked man, or a lame, or\nany second-hand fellow at all that would do for poor\nme ?' said Maryann. \"A perfect one I don't expect to\n at my time of life. If I could hear of such a thing\ntwould do me more good thantoast and ale.'\n Coggan furnished a suitable reply. Oak went on\nwith his shearing, and said not another word. Pestilent\nmoods had come, and teased away his quiet. Bathsheba\nhad shown indications of anointing him above his\nfellows by installing him as the bailiff that the farm\nimperatively required. He did not covet the post\nrelatively to the farm : in relation to herself, as beloved\nby him and unmarried to another, he had coveted it.\nHis readings of her seemed now to be vapoury and\nindistinct. His lecture to her was, he thought, one of\nthe absurdest mistakes. Far from coquetting with\nBoldwood, she had trifled with himself in thus feigning\nthat she had trifled with another. He was inwardly\nconvinced that, in accordance with the anticipations of\nhis easy-going and worse-educated comrades, that day\nwould see Boldwood the accepted husband of Miss\nEverdene. Gabriel at this time of his life had out+\ngrown the instinctive dislike which every Christian\nboy has for reading the Bible, perusing it now quite\nfrequently, and he inwardly said, \" ''I find more bitter\nthan death the woman whose heart is snares and\nnets .! '' ' This was mere exclamation -- the froth of the\nstorm. He adored Bathsheba just the same.\n\" We workfolk shall have some lordly- junketing\nto-night,' said Cainy Ball, casting forth his thoughts in\na new direction. \"This morning I see'em making the\ngreat puddens in the milking-pails -- lumps of fat as big\nas yer thumb, Mister Oak ! I've never seed such\nsplendid large knobs of fat before in the days of my\nlife -- they never used to be bigger then a horse-bean.\nAnd there was a great black crock upon the brandise\nwith his legs a-sticking out, but I dont know what was\nin within.\"\n'And there's two bushels of biffins for apple-pies,'\nsaid Maryann.\n<P 204>\n\"Well, I hope to do my duty by it all,' said Joseph\nPoorgrass, in a pleasant, masticating manner of anticipa+\ntion. \" Yes ; victuals and drink is a cheerful thing,\nand gives nerves to the nerveless, if the form of words\nmay be used. 'Tis the gospel of the body, without\nwhich we perish, so to speak it.'\n<C xxiii>\n<P 205>\nEVENTIDE -- A SECOND DECLARATION\nFOR the shearing-supper a long table was placed on the\ngrass-plot beside the house, the end of the table being\nthrust over the sill of the wide parlour window and a\nfoot or two into the room. Miss Everdene sat inside\nthe window, facing down the table. She was thus at\nthe head without mingling with the men.\nThis evening Bathsheba was unusually excited, her\nred cheeks and lips contrasting lustrously with the mazy\nskeins of her shadowy hair. She seemed to expect\nassistance, and the seat at the bottom of the table was\nat her request left vacant until after they had begun\nand the duties appertaining to that end, which he did\nwith great readiness.\nAt this moment Mr. Boldwood came in at the gate,\nand crossed the green to Bathsheba at the window.\nHe apologized for his lateness : his arrival was evidently\nby arrangement.\n\" Gabriel,' said she, \" will you move again, please,\nand let Mr. Boldwood come there ?'\nOak moved in silence back to his original seat.\nThe gentleman-farmer was dressed in cheerful style,\nin a new coat and white waistcoat, quite contrasting\nwith his usual sober suits of grey. Inwardy, too, he\nwas blithe, and consequently chatty to an exceptional\ndegree. So also was Bathsheba now that he had come,\nthough the uninvited presence of Pennyways, the bailiff\nwho had been dismissed for theft, disturbed her equan+\nimity for a while.\nSupper being ended, Coggan began on his own\nprivate account, without reference to listeners : --\nl've lost my love and l care not,\nI've lost my love, and l care not;\nI shall soon have another\n<P 206>\nThat's better than t'other!\nI've lost my love, and I care not.\nThis lyric, when concluded, was received with a\nsilently appreciative gaze at the table, implying that the\nperformance, like a work by those established authors\nwho are independent of notices in the papers, was a\nwell-known delight which required no applause.\n\"Now, Master Poorgass, your song!' said Coggan.\n\"I be all but in liquor, and the gift is wanting in\nme,' said Joseph, diminishing himself.\n\"Nonsense; wou'st never be so ungrateful, Joseph --\nnever!' said Coggan, expressing hurt feelings by an\ninflection of voice. \"And mistress is looking hard at\nye, as much as to say, \"\"Sing at once, Joseph Poor+\ngrass.'' '\n\"Faith, so she is; well, I must suffer it! ... Just\neye my features, and see if the tell-tale blood overheats\nme much, neighbours?'\n\"No, yer blushes be quite reasonable,' said Coggan.\n\"I always tries to keep my colours from rising when\na beauty's eyes get fixed on me,' said Joseph, differently;\n\"but if so be 'tis willed they do, they must.'\n\"Now, Joseph, your song, please,' said Bathsheba,\nfrom the window.\n\"Well, really, ma'am,' he replied, in a yielding tone,\n\"I don't know what to say. It would be a poor plain\nballet of my own composure.'\n'Hear, hear! ' said the supper-party.\nPoorgrass, thus assured, trilled forth a flickering yet\ncommendable piece of sentiment, the tune of which\nconsisted of the key-note and another, the latter being\nthe sound chiefly dwelt upon. This was so successful\nthat he rashly plunged into a second in the same\nbreath, after a few false starts : --\nI sow'-ed th'-e\nI sow'-ed\nI sow'-ed the'-e seeds' of love',\nI-it was' all' i'-in the'-e spring',\nI-in A'-pril', Ma'-ay, a'-nd sun'-ny' June',\nWhen sma'-all bi'-irds they' do' sing.\n<P 207>\n\" Well put out of hand,' said Coggan, at the end of the\nverse. ' \"\" They do sing '' was a very taking paragraph.'\n\"Ay; and there was a pretty place at \"seeds of\nlove,'' and 'twas well heaved out. Though \"love '' is\na nasty high corner when a man's voice is getting\ncrazed. Next verse, Master Poorgrass.'\nBut during this rendering young Bob Coggan ex+\nhibited one of those anomalies which will afflict little\npeople when other persons are particularly serious : in\ntrying to check his laughter, he pushed down his throat\nas much of the tablecloth as he could get hold of, when,\nafter continuing hermetically sealed for a short time, his\nmirth burst out through his nose. Joseph perceived it,\nand with hectic cheeks of indignation instantly ceased\nsinging. Coggan boxed Bob's ears immediately.\n\"Go on, Joseph -- go on, and never mind the young\nscamp,' said Coggan. \"'Tis a very catching ballet.\nNow then again -- the next bar; I'll help ye to flourish\nup the shrill notes where yer wind is rather wheezy : --\nO the wi'-il-lo'-ow tree' will' twist',\nAnd the wil'-low' tre'-ee wi'ill twine'.\nBut the singer could not be set going again. Bob\nCoggan was sent home for his ill manners, and tran+\nquility was restored by Jacob Smallbury, who volunteered\na ballad as inclusive and interminable as that with which\nthe worthy toper old Silenus amused on a similar occasion\nthe swains Chromis and Mnasylus, and other jolly dogs\nof his day.\nIt' was still the beaming time .of evening, though\nnight was stealthily making itself visible low down upon\nthe ground, the western lines of light taking the earth\nwithout alighting upon it to any extent, or illuminating\nthe dead levels at all. The sun had crept round the\ntree as a last effort before death, and then began to\nsink, the shearers' lower parts becoming steeped in\nembrowning twilight, whilst their heads and shoulders\nwere still enjoying day, touched with a yellow of self+\nsustained brilliancy that seemed inherent rather than\nacquired.\nThe sun went down in an ochreous mist; but they\nsat, and\n<P 208>\ntalked on, and grew as merry as the gods in\nHomer's heaven. Bathsheba still remained enthroned\ninside the window, and occupied herself in knitting,\nfrom which she sometimes looked up to view the fading\nscene outside. The slow twilight expanded and enveloped\nthem completely before the signs of moving were shown.\nGabriel suddenly missed Farmer Boldwood from his\nplace at the bottom of the table. How long he had\nbeen gone Oak did not know; but he had apparently\nwithdrawn into the eneircling dusk. Whilst he was\nthinking of this, Liddy brought candles into the back\npart of the room overlooking the shearers, and their\nlively new flames shone down the table and over the\nmen, and dispersed among the green shadows behind.\nBathsheba's form, still in its original position, was now\nagain distinct between their eyes and the light, which\nrevealed that Boldwood had gone inside the room, and\nwas sitting near her.\nNext came the question of the evening. Would Miss\nEverdene sing to them the song she always sang so\ncharmingly -- \" The Banks of Allan Water ' -- before they\nwent home ?\nAfter a moment's consideration Bathsheba assented,\nbeckoning to Gabriel, who hastened up into the coveted\natmosphere.\n\" Have you brought your flute ? \" she whispered.\n\" Yes, miss.'\n\" Play to my singing, then.'\nShe stood up in the window-opening, facing the\nmen, the candles behind her, Gabriel on her right hand,\nimmediately outside the sash-frame. Boldwood had\ndrawn up on her left, within the room. Her singing\nwas soft and rather tremulous at first, but it soon swelled\nto a steady clearness. Subsequent events caused one\nof the verses to be remembered for many months, and\neven years, by more than one of those who were gathered\nthere : --\nFor his bride a soldier sought her,\nAnd a winning tongue had he :\nOn the banks of Allan Water\nNone was gay as she !.\n<P 209>\nIn addition to the dulcet piping of Gabriel's flute,\nBoldwood supplied a bass in his customary profound\nvoice, uttering his notes so softly, however, as to abstain\nentirely from making anything like an ordinary duet of\nthe song ; they rather formed a rich unexplored shadow,\nwhich threw her tones into relief. The shearers reclined\nagainst each other as at suppers in the early ages of the\nworld, and so silent and absorbed were they that her\nbreathing could almost be heard between the bars ; and\nat the end of the ballad, when the last tone loitered on\nto an inexpressible close, there arose that buzz of\npleasure which is the attar of applause.\nIt is scarcely necessary to state that Gabriel could\nnot avoid noting the farmer's bearing to-night towards\ntheir entertainer. Yet there was nothing exceptional in\nhis actions beyond what appertained to his time of\nperforming them. It was when the rest were all looking\naway that Boldwood observed her ; when they regarded\nher he turned aside; when they thanked or praised he\nwas silent; when they were inattentive he murmured\nhis thanks. The meaning lay in the difference between\nactions, none of which had any meaning of itself;\nand the necessity of being jealous, which lovers are\ntroubled with, did not lead Oak to underestimate these\nsigns.\nBathsheba then wished them good-night, withdrew\nfrom the window, and retired to the back part of the\nroom, Boldwood thereupon closing the sash and the\nshutters, and remaining inside with her. Oak wandered\naway under the quiet and scented trees. Recovering\nfrom the softer impressions produced by Bathsheba's\nvoice, the shearers rose to leave, Coggan turning to\nPennyways as he pushed back the bench to pass out : --\n\"I like to give praise where praise is due, and the\nman deserves it -- that 'a do so,' he remarked, looking at\nthe worthy thief, as if he were the masterpiece of some\nworld-renowned artist.\n<P 210>\n\"I'm sure I should never have believed it if we hadn t\nproved it, so to allude,' hiccupped Joseph Poorgrass, \" that\nevery cup, every one of the best knives and forks, and\nevery empty bottle be in their place as perfect now as\nat the beginning, and not one stole at all.\n\"I'm sure I don't deserve half the praise you give\nme,' said the virtuous thief, grimly.\n\" Well, I'll say this for Pennyways,' added Coggan,\n\"that whenever he do really make up his mind to do a\nnoble thing in the shape of a good action, as I could\nsee by his face he. did to-night afore sitting down, he's\ngenerally able to carry it out. Yes, I'm proud to say.\nneighbours, that he's stole nothing at all.\n\"Well,' -- 'tis an honest deed, and we thank ye for it,\nPennyways,' said Joseph; to which opinion the remainder\nof the company subscribed unanimously.\n  At this time of departure, when nothing more was\nvisible of the inside of the parlour than a thin and still\nchink of light between the shutters, a passionate scene\nwas in eourse of enactment there.'\nMiss Everdene and Boldwood were alone. Her\ncheeks had lost a great deal of their healthful fire from\nthe very seriousness of her position ; but her eye was\nbright with the excitement of a triumph -- though it was\na triumph which had rather been contemplated than\ndesired.\nShe was standing behind a low arm-chair, from which\nshe had just risen, and he was kneeling in it -- inclining\nhimself over its back towards her, and holding her hand\nin both his own. His body moved restlessly, and it was\nwith what Keats daintily calls a too happy happiness.\nThis unwonted abstraction by love of all dignity from\na man of whom it had ever seemed the chief component,\nwas, in its distressing incongruity, a pain to her which\nquenched much of the pleasure she derived from the\nproof that she was idolized.\n\" I will try to love you,' she was saying, in a trembling\nvoice quite unlike her usual self-confidence. \" And if I\ncan believe in any way that I shall make you a good\nwife I shall indeed be willing to marry you. But, Mr.\nBoldwood, hesitation on so high a matter is honourable\nin any woman, and I don't want to give a solemn\npromise to-night. I would rather ask you to wait a few\nweeks till I can see my situation better.'\n\"But you have every reason to believe that then --  -- '\n'I have every reason to hope that at the end of the\nfive or\n<P 211>\nsix weeks, between this time and harvest, that\nyou say you are going to be away from home, I shall be\nable to promise to be your wife,' she said, firmly. \"But\nremember this distinctly, I don't promise yet.'\n\"It is enough I don't ask more. I can wait on\nthose dear words. And now, Miss Everdene, good+\nnight!'\n\" Good-night,' she said, graciously -- almost tenderly;\nand Boldwood withdrew with a serene smile.\nBathsheba knew more of him now ; he had entirely\nbared his heart before her, even until he had almost\nworn in her eyes the sorry look of a grand bird without\nthe feathers that make it grand. She had been awe+\nstruck at her past temerity, and was struggling to make\namends without thinking whether the sin quite deserved\nthe penalty she was schooling herself to pay. To have\nbrought all this about her ears was terrible; but after a\nwhile the situation was not without a fearful joy. The\nfacility with which even the most timid woman some+\ntimes acquire a relish for the dreadful when that is\namalgamated with a little triumph, is marvellous.\n<C xxiv>\n<P 212>\nTHE SAME NIGHT -- THE FIR PLANTATION\nAMONG the multifarious duties which Bathsheba had\nvoluntarily imposed upon herself by dispensing with the\nservices of a bailiff, was the particular one of looking\nround the homestead before going to bed, to see that\nall was right and safe for the night. Gabriel had almost\nconstantly preceded her in this tour every evening,\nwatching her affairs as carefully as any specially appointed\nofficer of surveillance could have done; but this tender\ndevotion was to a great extent unknown to his mistress,\nand as much as was known was somewhat thanklessly\nreceived. Women are never tired of bewailing man's\nfickleness in love, but they only seem to snub his con+\nstancy.\nAs watching is best done invisibly, she usually carried\na dark lantern in her hand, and every now and then\nturned on the light to examine nooks and corners with\nthe coolness of a metropolitan policeman. This cool+\nness may have owed its existence not so much to her\nfearlessness of expected danger as to her freedom from\nthe suspicion of any; her worst anticipated discovery\nbeing that a horse might not be well bedded, the fowls\nnot all in, or a door not closed.\nThis night the buildings were inspected as usual,\nand she went round to the farm paddock. Here the\nonly sounds disturbing the stillness were steady munch+\nings of many mouths, and stentorian breathings from all\nbut invisible noses, ending in snores and puffs like the\nblowing of bellows slowly. Then the munching would\nrecommence, when the lively imagination might assist\nthe eye to discern a group of pink-white nostrils, shaped\nas caverns, and very clammy and humid on their sur+\nfaces, not exactly pleasant to the touch until one got\nused to them; the mouths beneath having a great\npartiality for closing upon any loose end of Bathsheba's\napparel which came within\n<P 213>\nreach of their tongues.\nAbove each of these a still keener vision suggested a\nbrown forehead and two staring though not unfriendly\neyes, and above all a pair of whitish crescent-shaped\nhorns like two particularly new moons, an occasional\nstolid \" moo!' proclaiming beyond the shade of a doubt\nthat these phenomena were the features and persons of\nDaisy, Whitefoot, Bonny-lass, Jolly-O, Spot, Twinkle-eye,\netc., etc. -- the respectable dairy of Devon cows belonging\nto Bathsheba aforesaid.\nHer way back to the house was by a path through a\nyoung plantation of tapering firs, which had been planted\nsome years earlier to shelter the premises from the north\nwind. By reason of the density of the interwoven foliage\noverhead, it was gloomy there at cloudless noontide,\ntwilight in the evening, dark as midnight at dusk, and\nblack as the ninth plague of Egypt at midnight. To\ndescribe the spot is to call it a vast, low, naturally formed\nhall, the plumy ceiling of which was supported by slender\npillars of living wood, the floor being covered with a soft\ndun carpet of dead spikelets and mildewed cones, with\na tuft of grass-blades here and there.\nThis bit of the path was always the crux of the\nnight's ramble, though, before starting, her apprehen+\nsions of danger were not vivid enough to lead her to\ntake a companion. Slipping along here covertly as\nTime, Bathsheba fancied she could hear footsteps enter+\ning the track at the opposite end. It was certainly a\nrustle of footsteps. Her own instantly fell as gently as\nsnowflakes. She reassured herself by a remembrance\nthat the path was public, and that the traveller was\nprobably some villager returning home ; regetting, at\nthe same time, that the meeting should be about to\noccur in' the darkest point of her route, even though\nonly just outside her own door.\nThe noise approached, came close, and a figure was\napparently on the point of gliding past her when some+\nthing tugged at her skirt and pinned it forcibly to the\nground. The instantaneous check nearly threw Bath+\nsheba off her balance. In recovering she struck against\nwarm clothes and buttons.\n'A rum start, upon my soul!' said a masculine voice,\na foot or so above her head. 'Have I hurt you, mate?'\n\"No,' said Bathsheba, attempting to shrink a way.\n<P 214>\n\" We have got hitched together somehow, I think.'\n\" Yes.'\n\"Are you a woman ?'\n'Yes.'\n\"A lady, I should have said.'\n\"It doesn't matter.'\n\"I am a man.'\n\"Oh!'\nBathsheba softly tugged again, but to no purpose.\n\"Is that a dark lantern you have ? I fancy so,' said\nthe man.\n'Yes.'\n\"If you'll allow me I'll open it, and set you free.'\nA hand seized the lantern, the door was opened, the\nrays burst out from their prison, and Bathsheba beheld\nher position with astonishment.\nThe man to whom she was hooked was brilliant in\nbrass and scarlet. He was a soldier. His sudden\nappearance was to darkness what the sound of a trumpet\nis to silense. Gloom, the genius loci at all times hitherto,\nwas now totally overthrown, less by the lantern-light\nthan by what the lantern lighted. The contrast of this\nrevelation with her anticipations of some sinister figure\nin sombre garb was so great that it had upon her the\neffect of a fairy transformation.\nIt was immediately apparent that the military man's\nspur had become entangled in the gimp which decorated\nthe skirt of her dress. He caught a view of her face.\n\"I'll unfasten you in one moment, miss,' he said,\nwith new-born gallantry.\n\" O no -- I can do it, thank you,' she hastily replied,\nand stooped for the performance.\nThe unfastening was not such a trifling affair. The\nrowel of the spur had so wound itself among the gimp\ncords in those few moments, that separation was likely\nto be a matter of time.\nHe too stooped, and the lantern standing on the\nground betwixt them threw the gleam from its open side\namong the fir-tree needles and the blades of long damp\ngrass with the effect of a large glowworm. It radiated\nupwards into their\n<P 215>\nfaces, and sent over half the planta+\ntion gigantic shadows of both man and woman, each\ndusky shape becoming distorted and mangled upon the\ntree-trunks till it wasted to nothing.\nHe looked hard into her eyes when she raised them\nfor a moment; Bathsheba looked down again, for his\ngaze was too strong to be received point-blank with her\nown. But she had obliquely noticed that he was young\nand slim, and that he wore three chevrons upon his\nsleeve.\nBathsheba pulled again.\n\" You are a prisoner, miss; it is no use blinking the\nmatter,' said the soldier, drily. \" I must cut your dress\nif you are in such a hurry.'\n\" Yes -- please do!' she exclaimed, helplessly. '\n\"It wouldn't be necessary if you could wait a\nmoment;' and he unwound a cord from the little\nwheel. She withdrew her own hand, but, whether by\naccident or design, he touched it. Bathsheba was\nvexed; she hardly knew why.\nHis unravelling went on, but it nevertheless seemed\ncoming to no end. She looked at him again.\n'Thank you for the sight of such a beautiful face!'\nsaid the young sergeant, without ceremony.\nShe coloured with embarrassment. \"'Twas un+\nwillingly shown,' she replied, stiffly, and with as much\ndignity -- which was very little -- as she could infuse into\na position of captivity\n\"I like you the better for that incivility, miss,' he\nsaid.\n\" I should have liked -- I wish -- you had never shown\nyourself to me by intruding here!' She pulled again,\nand the gathers of her dress began to give way like\nliliputian musketry.\n\" I deserve the chastisement your words give me.\nBut why should such a fair and dutiful girl have such\nan aversion to her father's sex ? '\n\"Go on your way, please.'\n' What, Beauty, and drag you after me ? Do but\nlook; I never saw such a tangle!'\n'O, 'tis shameful of you ; you have been making\nit worse on purpose to keep me here -- you have ! '\n\"Indeed, I don't think so,' said the sergeant, with a\nmerry twinkle.\n<P 216>\n\"I tell you you have!' she exclaimed, in high\ntemper. I insist upon undoing it. Now, allow me!'\n\"Certainly, miss; I am not of steel.' He added a\nsigh which had as much archness in it as a sigh could\npossess without losing its nature altogether. 'I am\nthankful for beauty, even when 'tis thrown to me like\na bone to a dog. These moments will be over too\nsoon!'\nShe closed her lips in a determined silence.\nBathsheba was revolving in her mind whether by a\nbold and desperate rush she could free herself at the\nrisk of leaving her skirt bodily behind her. The\nthought was too dreadful. The dress -- which she had\nput on to appear stately at the supper -- was the head\nand front of her wardrobe ; not another in her stock\nbecame her so well. What woman in Bathsheba's\nposition, not naturally timid, and within call of her\nretainers, would have bought escape from a dashing\nsoldier at so dear a price ?\n\"All in good time ; it will soon be done, I perceive,'\nsaid her cool friend.\n\" This trifling provokes, and -- and --  -- '\n\" Not too cruel!'\n\" --  Insults me.!'\n\"It is done in order that I may have the pleasure\nof apologizing to so charming a woman, which I\nstraightway do most humbly, madam,' he said, bowing\nlow.\nBathsheba really knew not what to say.\n\"I've seen a good many women in my time,\ncontinued the young man in a murmur, and more\nthoughtfully than hitherto, critically regarding her bent\nhead at the same time; \"but I've never seen a woman\nso beautiful as you. Take it or leave it -- be offended\nor like it -- I don't care.'\n\" Who are you, then, who can so well afford to\ndespise opinion ? '\n\" No stranger. Sergeant Troy. I am staying in\nthis place. -- There ! it is undone at last, you see.\nYour light fingers were more eager than mine. I wish it\nhad been the knot of knots, which there's no untying !. '\nThis was worse and worse. She started up, and so\ndid he.\n<P 217>\nHow to decently get away from him -- that\nwas her difficulty now. She sidled off inch by inch,\nthe lantern in her hand, till she could see the redness\nof his coat no longer.\n\" Ah, Beauty ; good-bye !. ' he said.\nShe made no reply, and, reaching a distance of\ntwenty or thirty yards, turned about, and ran indoors.\nLiddy had just retired to rest. In ascending to her\nown chamber, Bathsheba opened the girl's door an\ninch or two, and, panting, said --\n\" Liddy, is any soldier staying in the village --\nsergeant somebody -- rather gentlemanly for a sergeant,\nand good looking -- a red coat with blue facings ?'\n'No, miss ... No, I say; but really it might be\nSergeant Troy home on furlough, though I have not\nseen him. He was here once in that way when the\nregiment was at Casterbridge.'\n\" Yes; that's the name. Had he a moustache -- no\nwhiskers or beard ?'\n\" He had.'\n\" What kind of a person is he ?'\n\"O ! miss -- I blush to name it -- a gay man! But\nI know him to be very quick and trim, who might have\nmade his thousands, like a squire. Such a clever\nyoung dand as he is! He's a doctor's son by name,\nwhich is a great deal; and he's an earl's son by\nnature!'\n\" Which is a great deal more. Fancy! Is it true ? '\n\" Yes. And, he was brought up so well, and sent to\nCasterbridge Grammar School for years and years.\nLearnt all languages while he was there ; and it was\nsaid he got on so far that he could take down Chinese\nin shorthand ; but that I don't answer for, as it was\nonly reported. However, he wasted his gifted lot,\nand listed a soldier; but even then he rose to be a\nsergeant without trying at all. Ah! such a blessing it\nis to be high-born ; nobility of blood will shine out even\nin the ranks and files. And is he really come home,\nmiss ?\"\n' I believe so. Good-night, Liddy.'\nAfter all, how could a cheerful wearer of skirts\nbe permanently offended with the man ? There are\noccasions when girls like Bathsheba will put up with\na great deal of\n<P 218>\nunconventional behaviour. When they\nwant to be praised, which is often, when they want to\nbe mastered, which is sometimes ; and when they want\nno nonsense, which is seldom. Just now the first\nfeeling was in the ascendant with Bathsheba, with a dash\nof the second. Moreover, by chance or by devilry, the\nministrant was antecedently made interesting by being\na handsome stranger who had evidently seen better\ndays.\nSo she could not clearly decide whether it was her\nopinion that he had insulted her or not. '\n\"Was ever anything so odd! ' she at last exclaimed\nto herself, in her own room. \"And was ever anything\nso meanly done as what I did to to sulk away like that\nfrom a man who was only civil and kind!' Clearly she\ndid not think his barefaced praise of her person an\ninsult now.\nIt was a fatal omission of Boldwood's that he had\nnever once told her she was beautiful.\n<C xxv>\n<P 219>\nTHE NEW ACQUAINTANCE DESCRIBED\nIDIOSYNCRASY and vicissitude had combined to\nstamp Sergeant Troy as an exceptional being.\nHe was a man to whom memories were an in+\ncumbrance, and anticipations a superfluity. Simply\nfeeling, considering, and caring for what was before his\neyes, he was vulnerable only in the present. His out+\nlook upon time was as a transient flash of the eye now\nand then : that projection of consciousness into days\ngone by and to come, which makes the past a synonym\nfor the pathetic and the future a word for circum+\nspection, was foreign to Troy. With him the past\nwas yesterday ; the future, to-morrow ; never, the day\nafter.\nOn this account he might, in certain lights, have\nbeen regarded as one of the most fortunate of his\norder. For it may be argued with great plausibility\nthat reminiscence is less an endowment than a disease,\nand that expectation in its only comfortable form -- that\nof absolute faith -- is practically an impossibility; whilst\nin the form of hope and the secondary compounds,\npatience, impatience, resolve, curiosity, it is a constant\nfluctuation between pleasure and pain.\nSergeant Troy, being entirely innocent of the\npractice of expectation, was never disappointed. To\nset against this negative gain there may have been\nsome positive losses from a certain narrowing of the\nhigher tastes and sensations which it entailed. But\nlimitation of the capacity is never recognized as a loss\nby the loser therefrom : in this attribute moral or\naesthetic poverty contrasts plausibly with material, since\nthose who suffer do not mind it, whilst those who mind\nit soon cease to suffer. It is not a denial of anything\nto have been always without it, and what Troy had\nnever enjoyed he did not miss; but, being fully\nconscious that what sober\n<P 220>\npeople missed he enjoyed,\nhis capacity, though really less, seemed greater than\ntheirs.\nHe was moderately truthful towards men, but to\nwomen lied like a Cretan -- a system of ethics above all\nothers calculated to win popularity at the first flush of\nadmission into lively society ; and the possibility of the\nfavour gained being transitory had reference only to\nthe future.\nHe never passed the line which divides the spruce\nvices from the ugly ; and hence, though his morals had\nhardly been applauded, disapproval of them\" had fre+\nquently been tempered with a smile. This treatment\nhad led to his becoming a sort of regrater of other\nmen's gallantries, to his own aggrandizement as a\nCorinthian, rather than to the moral profit of his\nhearers.\nHis reason and his propensities had seldom any\nreciprocating influence, having separated by mutual\nconsent long ago : thence it sometimes happened that,\nwhile his intentions were as honourable as could be\nwished, any particular deed formed a dark background\nwhich threw them into fine relief. The sergeant's\nvicious phases being the offspring of impulse, and\nhis virtuous phases of cool meditation, the latter\nhad a modest tendency to be oftener heard of than\nseen.\nTroy was full of activity, but his activities were less of\na locomotive than a vegetative nature ; and, never being\nbased upon any original choice of foundation or direc+\ntion, they were exercised on whatever object chance\nmight place in their way. Hence, whilst he sometimes\nreached the brilliant in speech because that -was\nspontaneous, he fell below the commonplace in action,\nfrom inability to guide incipient effort. He had a\nquick comprehension and considerable force of char+\nacter ; but, being without the power to combine them,\nthe comprehension became engaged with trivialities\nwhilst waiting for the will to direct it, and the force\nwasted itself in useless grooves through unheeding the\ncomprehension.\nHe was a fairly well-educated man for one of middle\nclass -- exceptionally well educated for a common soldier.\nHe spoke fluently and unceasingly. He could in this\nway be one thing and seem another : for instance, he\ncould speak of love and\n<P 221>\nthink of dinner; call on the\nintend to owe.\nThe wondrous power of flattery in passados at woman\nis a perception so universal as to be remarked upon by\nmany people almost as automatically as they repeat a\nproverb, or say that they are Christians and the like,\nwithout thinking much of the enormous corollaries\nwhich spring from the proposition. Still less is it acted\nupon for the good of the complemental being alluded\nto. With the majority such an opinion is shelved with\nall those trite aphorisms which require some catastrophe\nto bring their tremendous meanings thoroughly home.\nWhen expressed with some amount of reflectiveness it\nseems co-ordinate with a belief that this flattery must\nbe reasonable to be effective. It is to the credit of\nmen that few attempt to settle the question by experi+\nment, and it is for their happiness, perhaps, that accident\nhas never settled it for them. Nevertheless, that a\nmale dissembler who by deluging her with untenable\nfictions charms the female wisely, may acquire powers\nreaching to the extremity of perdition, is a truth taught\nto many by unsought and wringing occurrences. And\nsome profess to have attained to the same knowledge\nby experiment as aforesaid, and jauntily continue their\nindulgence in such experiments with terrible effect.\nSergeant Troy was one.\nHe had been known to observe casually that in\ndealing with womankind the only alternative to flattery\nwas cursing and swearing. There was no third method.\n\" Treat them fairly, and you are a lost man,' he would\nsay.\nThis philosopher's public appearance in Weatherbury\npromptly followed his arrival there. A week or two\nafter the shearing, Bathsheba, feeling a nameless relief\nof spirits on account of Boldwood's absence, approached\nher hayfields and looked over the hedge towards the\nhaymakers. They consisted in about equal proportions\nof gnarled and flexuous forms, the former being the\nmen, the latter the women, who wore tilt bonnets\ncovered with nankeen, which hung in a curtain upon\ntheir shoulders. Coggan and Mark Clark were mowing\nin a less forward meadow, Clark humming a tune to\nthe strokes of his\n<P 222>\nscythe, to which Jan made no attempt\nto keep time with his. In the first mead they were\nalready loading hay, the women raking it into cocks\nand windrows, and the men tossing it upon the\nwaggon.\nFrom behind the waggon a bright scarlet spot\nemerged, and went on loading unconcernedly with the\nrest. It was the gallant sergeant, who had come hay+\nmaking for pleasure ; and nobody could deny that he\nwas doing the mistress of the farm real knight-service\nby this voluntary contribution of his labour at a busy\ntime.\nAs soon as she had entered the field Troy saw her,\nand sticking his pitchfork into the ground and picking\nup his crop or cane, he came forward. Bathsheba\nblushed with half-angry embarrassment, and adjusted\nher eyes as well as her feet to the direct line of her\npath.\n<C xxvi>\n<P 223>\nSCENE ON THE VERGE OF THE HAY-MEAD\n'AH, Miss Everdene!' said the sergeant, touching his\ndiminutive cap. \"Little did I think it was you I was\nspeaking to the other night. And yet, if I had reflected,\nthe \"Queen of the Corn-market\" (truth is truth at any\nhour of the day or night, and I heard you so named in\nCasterbridge yesterday), the \"Queen of the Corn-market,''\nI say, could be no other woman. I step across now to\nbeg your forgiveness a thousand times for having been\nled by my feelings to express myself too strongly for a\nstranger. To be sure I am no stranger to the place --\nI am Sergeant Troy, as I told you, and I have assisted\nyour uncle in these fields no end of times when I was a\nlad. I have been doing the same for you today.'\n\"I suppose I must thank you for that, Sergeant\nTroy,' said the Queen of the Corn-market, in an in+\ndifferently grateful tone.\nThe sergeant looked hurt and sad. \"Indeed you\nmust not, Miss Everdene,' he said. \" Why could you\nthink such a thing necessary ? '\n\"I am glad it is not.'\n\" Why ? if I may ask without offence.'\n\" Because I don't much want to thank you for any\"\nthing.'\n\"I am afraid I have made a hole with my tongue\nthat my heart will never mend. O these intolerable\ntimes: that ill-luck should follow a man for honestly\ntelling a woman she is beautiful.! 'Twas the most I\nsaid -- you must own that; and the least I could say --\nthat I own myself.'\n'There is some talk I could do without more easily\nthan money.'\n\"Indeed. That remark is a sort of digression.'\n\" No. It means that I would rather have your room\nthan your company.'\n<P 224>\n\"And I would rather have curses from you than\nkisses from any other woman ; so I'll stay here.'\nBathsheba was absolutely speechless. And yet she\ncould not help feeling that the assistance he was render+\ning forbade a harsh repulse.\n\" Well,' continued Troy, \"I suppose there is a praise\nwhich is rudeness, and that may be mine. At the\nsame time there is a treatment which is injustice, and\nthat may be yours. Because a plain blunt man, who\nhas never been taught concealment, speaks out his\nmind without exactly intending it, he's to be snapped\noff like the son of a sinner.'\n\"Indeed there's no such case between us,' she said,\nturning away. \"I don't allow strangers to be bold and\nimpudent -- even in praise of me.'\n\" Ah -- it is not the fact but the method which offends\nyou,' he said, carelessly. \"But I have the sad satis+\nfaction of knowing that my words, whether pleasing or\noffensive, are unmistakably true. Would you have had\nme look at you, and tell my acquaintance that you are\nquite a common-place woman, to save you the embar+\nrassment of being stared at if they come near you ?\nNot I. I couldn't tell any such ridiculous lie about\na beauty to encourage a single woman in England in\ntoo excessive a modesty.'\n\"It is all pretence -- what you are saying!' exclaimed\nBathsheba, laughing in spite of herself at the sergeant's\nsly method. \" You have a rare invention, Sergeant\nTroy. Why couldn't you have passed by me that\nnight, and said nothing ? -- that was all I meant to\nreproach you for.'\n\"Because I wasn't going to. Half the pleasure of\na feeling lies in being able to express it on the spur of\nthe moment, and I let out mine. It would have been\njust the same if you had been the reverse person -- ugly\nand old -- I should have exclaimed about it in the same\nway. '\n\" How long is it since you have been so afflicted with\nstrong feeling, then ? '\n\" Oh, ever since I was big enough to know loveliness\nfrom deformity.'\n<P 225>\n\"'Tis to be hoped your sense of the difference you\nspeak of doesn't stop at faces, but extends to morals as\nwell. '\n'I won't speak of morals or religion -- my own or\nanybody else's. Though perhaps I should have been a\nvery good Christian if you pretty women hadn't made\nme an idolater.'\nBathsheba moved on to hide the irrepressible dimp+\nlings of merriment. Troy followed, whirling his crop.\n'But -- Miss Everdene -- you do forgive me ? '\n\" Hardly. '\n\"Why ?'\n\" You say such things.'\n\"I said you were beautiful, and I'll say so still; for,\nby --  so you are !. The most beautiful ever I saw, or\nmay I fall dead this instant! Why, upon my --  -- '\n\" Don't -- don't! I won't listen to you -- you are so\nprofane!' she said, in a restless state between distress\nat hearing him and a penchant to hear more.\n\"I again say you are a most fascinating woman.\nThere's nothing remarkable in my saying so, is there?\nI'm sure the fact is evident enough. Miss Everdene,\nmy opinion may be too forcibly let out to please you,\nand, for the matter of that, too insignificant to convince\nyou, but surely it is honest, and why can't it be ex+\ncused? '\n\"Because it -- it isn't a correct one,' she femininely\nmurmured.\n\" 0, fie -- fie-! Am I any worse for breaking the\nthird of that Terrible Ten than you for breaking the\nninth ?\"\n\"Well, it doesn't seem quite true to me that I am\nfascinating,' she replied evasively.\n' Not so to you : then I say with all respect that, if\nso, it is owing to your modesty, Miss Everdene. But\nsurely you must have been told by everybody of what\neverybody notices ? and you should take their words\nfor it.'\n\" They don't say so exactly.'\n\" O yes, they must!'\n\"Well, I mean to my face, as you do,' she went on,\nallowing\n<P 226>\nherself to be further lured into a conversation\nthat intention had rigorously forbidden.\n\"But you know they think so ?'\n\"No -- that is -- I certainly have heard Liddy say\nthey do, but --  -- ' She paused.\nCapitulation -- that was the purport of the simple\nreply, guarded as it was -- capitulation, unknown to her+\nself. Never did a fragile tailless sentence convey a\nmore perfect meaning. The careless sergeant smiled\nwithin himself, and probably too the devil smiled from\na loop-hole in Tophet, for the moment was the turning+\npoint of a career. Her tone and mien signified beyond\nmistake that the seed which was to lift the foundation\nhad taken root in the chink : the remainder was a mere\nquestion of time and natural changes.\n\"There the truth comes out ! ' said the soldier, in\nreply. \"Never tell me that a young lady can live in a\nbuzz of admiration without knowing something about it.\nAh,' well, Miss Everdene, you are -- pardon my blunt\nway -- you are rather an injury to our race than other+\nwise.\n\" How -- indeed ? ' she said, opening her eyes.\n\"O, it is true enough. I may as well be hung for\na sheep as a lamb (an old country saying, not of much\naccount, but it will do for a rough soldier), and so I\nwill speak my mind, regardless of your pleasure, and\nwithout hoping or intending to get your pardon. Why,\nMiss Everdene, it is in this manner that your good\nlooks may do more. harm than good in the world.'\nThe sergeant looked down the mead in critical abstrac+\nion. \" Probably some one man on an average falls in'\nlove, with each ordinary woman. She can marry him :\nhe is content, and leads a useful life. Such women as\nyou a hundred men always covet -- your eyes will be+\nwitch scores on scores into an unavailing fancy for you\nyou can only marry one of that many. Out of these\nsay twenty will endeavour to. drown the bitterness of\nespised love in drink ; twenty more will mope away\ntheir lives without a wish or attempt to make a mark in\nhe world, because they have no ambition apart from\ntheir attachment to you ; twenty more -- the susceptible\nperson\n<P 227>\nmyself possibly among them -- will be always\ndraggling after you, getting where they may just see\nyou, doing desperate things. Men are such constant\nfools! The rest may try to get over their passion with\nmore or less success. But all these men will be\nsaddened. And not only those ninety-nine men, but\nthe ninety-nine women they might have married are\nsaddened with them. There's my tale. That's why I\nsay that a woman so charming as yourself, Miss Ever+\ndene, is hardly a blessing to her race.'\nThe handsome sergeant's features were during this\nspeech as rigid and stern as John Knox's in addressing\nhis gay young queen.\nSeeing she made no reply, he said, \"Do you read\nFrench ? '\n\"No; I began, but when I got to the verbs, father\ndied,' she said simply.\n'I do -- -when I have an opportunity, which latterly\nhas not been often (my mother was a Parisienne) -- -and\nthere's a proverb they have, Qui aime bien chatie bien\n -- \"He chastens who loves well.\" Do you understand\nme?\n'Ah!' she replied, and there was even a little tremu+\nlousness in the usually cool girl's voice; 'if you can\nonly fight half as winningly as you can talk, you are\nable to make a pleasure of a bayonet wound!' And\nthen poor Bathsheba instanly perceived her slip in\nmaking this admission: in hastily trying to retrieve it,\nshe went from bad to worse. 'Don't, however, suppose\nthat I derive any pleasure from what you tell me.'\n'I know you do not -- -I know it perfectly,' said Troy,\nwith much hearty conviction on the exterior of his face:\nand altering the expression to moodiness; 'when a\ndozen men arfe ready to speak tenderly to you, and\ngive the admiration you deserve without adding the\nwarning you need, it stands to reason that my poor\nrough-and-ready mixture of praise and blame cannot\nconvey much pleasure. Fool as I may be, I am not so\nconceited as to suppose that!'\n'I think you -- -are conceited, nevertheless,' said\nBathsheba, looking askance at a reed she was fitfully\npulling with one hand, having lately grown feverish\nunder the soldier's\n<P 228>\nsystem of procedure -- not because\nthe nature of his cajolery was entirely unperceived, but\nbecause its vigour was overwelming.\n'I would not own it to anybody esle -- nor do I\nexactly to you. Still, there might have been some self+\nconceit in my foolish supposition the other night. I\nknew that what I said in admiration might be an\nopinion too often forced upon you to give any pleasure\nbut I certainly did think that the kindness of your\nnature might prevent you judging an uncontrolled\ntongue harshly -- which you have done -- and thinking\nbadly of me and wounding me this morning, when I\nam working hard to save your hay.'\n'Well, you need not think more of that: perhaps you\ndid not mean to be rude to me by speaking out your\nmind: indeed, I believe you did not,' said the shrewd\nwoman, in painfully innocent earnest. 'And I thank\nyou for giving help here. But -- -but mind you don't\nspeak to me again in that way, or in any other, unless\nI speak to you.'\n'O, Miss Bathsheba! That is to hard!'\n'No, it isn't. Why is it?'\n'You will never speak to me; for I shall not be\nhere long. I am soon going back again to the miser+\nable monotony of drill -- and perhaps our regiment will\nbe ordered out soon. And yet you take away the one\nlittle ewe-lamb of plaesure that I have in this dull life\nof mine. Well, perhaps generosity is not a woman's\nmost marked characteristic.'\n'When are you going from here?' she asked, with\nsome interest.\n'In a month.'\n'But how can it give you pleasure to speak to me?'\n'Can you ask Miss Everdene -- knowing as you do\n -- what my offence is based on?'\n'I you do care so much for a silly trifle of that\nkind, then, I don't mind doing it,' she uncertainly and\ndoubtingly answered. 'But you can't really care for a\nword from me? you only say so -- I think you only\nsay so.'\n'that's unjust -- but I won't repeat the remark. I\nam too\n<P 229>\ngratified to get such a mark of your friendship\nat any price to cavil at the tone. I do Miss Everdene,\ncare for it. You may think a man foolish to want a\nmere word --  just a good morning. Perhaps he is -- I\ndon't know. But you have never been a man looking\nupon a woman, and that woman yourself.'\n\" Well.'\n\" Then you know nothing of what such an experience\nis like -- and Heaven forbid that you ever should!'\n\"Nonsense, flatterer! What is it like? I am\ninterested in knowing.\"\n\"Put shortly, it is not being able to think, hear, or\nlook in any direction except one without wretchedness,\nnor there without torture.'\n\" Ah, sergeant, it won't do -- you are pretending ! ' she\nsaid, shaking her head. ' Your words are too dashing\nto be true.'\n\"I am not, upon the honour of a soldier'\n\"But why is it so? -- Of course I ask for mere pas+\ntime.'\n\" Because you are so distracting -- and I am so\ndistracted. '\n\" You look like it.'\n\" I am indeed.'\n\" Why, you only saw me the other night!'\n\" That makes no difference. The lightning works in+\nstantaneously. I loved you then, at once -- as I do now.'\nBathsheba surveyed him curiously, from the feet\nupward, as high as she liked to venture her glance,\nwhich was not quite so high as his eyes.\n\" You cannot and you don\"t,' she said demurely.\n\"There is-no such sudden feeling in people. I won't\nlisten to you any longer. Hear me, I wish I knew what\no'clock it is -- I am going -- I have wasted too much time\nhere already!\"\nThe sergeant looked at his watch and told her.\n\" What, haven't you a watch, miss?' he inquired.\n\"I have not just at present -- I am about to get a\nnew one.'\n\"No. You shall be given one. Yes -- you  shall.\nA gift, Miss Everdene -- a gift.\"\nAnd before she knew what the young -- man was\nintending, a heavy gold watch was in her hand.\n<P 230>\n\"It is an unusually good one for a man like me to\npossess,' he quietly said. \"That watch has a history.\nPress the spring and open the back.'\nShe did so.\n'What do you see?'\n'A crest and a motto.'\n\" A coronet with five points, and beneath, Cedit amor\nrebus -- \"Love yields to circumstance.\" It's the motto\nof the Earls of Severn. That watch belonged to the\nlast lord, and was given to my mother's husband, a\nmedical man, for his use till I came of age, when it was\nto be given to me. It was all the fortune that ever I\ninherited. That watch has regulated imperial interests\nin its time -- the stately ceremonial, the courtly assigna+\ntion, pompous travels, and lordly sleeps. Now it is\nyours.\n\" But, Sergeant Troy, I cannot take this -- I cannot ! '\nshe exclaimed, with round-eyed wonder. \" A gold watch !\nWhat are you doing? Don't be such a dissembler!\"\nThe sergeant retreated to avoid receiving back his\ngift, which she held out persistently towards him.\nBathsheba followed as he retired.\n\"Keep it -- do, Miss Everdene -- keep it !' said the\nerratic child of impulse. \" The fact of your possessing\nit makes it worth ten times as much to me. A more\nplebeian one will answer my purpose just as well, and\nthe pleasure of knowing whose heart my old one beats\nagainst -- well, I won't speak of that. It is in far\nworthier hands than ever it has been in before.'\n\"But indeed I can't have it!' she said, in a perfect\nsimmer of distress. \" O, how can you do such a thing ;\nthat is if you really mean it! Give me your dead\nfather's watch, and such a valuable one! You should\nnot be so reckless, indeed, Sergeant Troy!'\n\"I loved my father: good; but better, I love you\nmore. That's how I can do it,' said the sergeant, with\nan intonation of such exquisite fidelity to nature that it.\nwas evidently not all acted now. Her beauty, which,\nwhilst it had been quiescent, he had praised in jest,\nhad in its animated phases moved him to\n<P 231>\nearnest; and\nthough his seriousness was less than she imagined, it\nwas probably more than he imagined himself.\nBathsheba was brimming with agitated bewilderment,\nand she said, in half-suspicious accents of feeling, \"Can\nit be! 0, how can it be, that you care for me, and\nso suddenly,! You have seen so little of me: I may\nnot be really so -- so nice-looking as I seem to you.\nPlease, do take it ; O, do! I cannot and will not have\nit. Believe me, your generosity is too great. I have\nnever done you a single kindness, and why should you\nbe so kind to me?'\nA factitious reply had been again upon his lips, but\nit was again suspended, and he looked at her with an\narrested eye. The truth was, that as she now stood --\nexcited, wild, and honest as the day --  her alluring\nbeauty bore out so fully the epithets he had bestowed\nupon it that he was quite startled at his temerity in\nadvancing them as false. He said mechanically, \"Ah,\nwhy ?' and continued to look at her.\n\"And my workfolk see me following you about the\nfield, and are wondering. O, this is dreadful!' she\nwent on, unconscious of the transmutation she was\neffecting.\n\"I did not quite mean you to accept it at first, for it\nas my one poor patent of nobility,' he broke out,\nbluntly; \"but, upon my soul, I wish you would now.\nWithout any shamming, come! Don't deny me the\nhappiness of wearing it for my sake ? But you are too\nlovely even to care to be kind as others are.'\n\" No, no ; don\"t say so !. I have reasons for reserve\nwhich I cannot explain.'\n\" bet it be, then, let it be,' he said, receiving back\nthe watch at last; \"I must be leaving you now. And\nwill you speak to me for these few weeks of my stay ? '\n'Indeed I will. Yet, I don't know if I will! O,\nwhy did you come and disturb me so !'\n\"Perhaps in setting a gin, I have caught myself.\nSuch things have happened. Well, will you let me\nwork in your fields ? ' he coaxed.\n\" Yes, I suppose so ; if it is any pleasure to you.'\n\" Miss Everdene, I thank you.\n\" No, no.'\n<P 232>\n'Good-bye!'\nThe sergeant brought his hand to the cap on the\nslope of his head, saluted, and returned to the distant\ngroup of haymakers.\nBathsheba could not face the haymakers now. Her\nheart erratically flitting hither and thither from per+\nplexed excitement, hot, and almost tearful, she retreated\nhomeward, murmuring, O, what have I done ! What\ndoes it mean ! I wish I knew how much of it was\ntrue!\n<C xxvii>\n<P 233>\nHIVING THE BEES\nTHE Weatherbury bees were late in their swarming this\nyear. It was in the latter part of June, and the day after\nthe interview with Troy in the hayfield, that Bathsheba\nwas standing in her garden, watching a swarm in the\nair and guessing their probable settling place. Not only\nwere they late this year, but unruly. Sometimes through+\nout a whole season all the swarms would alight on the\nlowest attainable bough -- such as part of a currant-bush\nor espalier apple-tree ; next year they would, with just\nthe same unanimity, make straight off to the uppermost\nmember of some tall, gaunt costard, or quarrenden,\nand there defy all invaders who did not come armed\nwith ladders and staves to take them.\nThis was the case at present. Bathsheba's eyes,\nshaded by one hand, were following the ascending\nmultitude against the unexplorable stretch of blue till\nthey ultimately halted by one of the unwieldy trees\nspoken of. A process somewhat analogous to that of\nalleged formations of the universe, time and times ago,\nwas observable. The bustling swarm had swept the sky\nin a scattered and uniform haze, which now thickened to\na nebulous centre: this glided on to a bough and grew\nstill denser, till it formed a solid black spot upon the\nlight.\nThe men and women being all busily engaged in\nsaving the hay -- even Liddy had left the house for the\npurpose of lending a hand -- Bathsheba resolved to hive\nthe bees herself, if possible. She had dressed the hive\nwith herbs and honey, fetched a ladder, brush, and\ncrook, made herself impregnable with armour of leather\ngloves, straw hat, and large gauze veil -- once green but\nnow faded to snuff colour -- and ascended a dozen rungs\nof the ladder. At once she heard, not ten yards off,\na voice that was beginning to have a strange power in\nagitating her.\n<P 234>\n\"Miss Everdene, let me assist you ; you should not\nattempt such a thing alone.'\nTroy was just opening the garden gate.\nBathsheba flung down the brush, crook, and empty\nhive, pulled the skirt of her dress tightly round her\nankles in a tremendous flurry, and as well as she could\nslid down the ladder. By the time she reached the\nbottom Troy was there also, and he stooped to pick\nup the hive.\n\"How fortunate I am to have dropped in at this\nmoment!' exclaimed the sergeant.\nShe found her voice in a minute. \"What! and will\nyou shake them in for me?' she asked, in what, for a\ndefiant girl, was a faltering way; though, for a timid\ngirl, it would have seemed a brave way enough.\n\" Will I ! ' said Troy. \" Why, of course I will. How\nblooming you are to-day ! ' Troy flung down his cane\nand put his foot on the ladder to ascend.\n\"But you must have on the veil and gloves, or you'll\nbe stung fearfully!'\n\"Ah, yes. I must put on the veil and gloves. Will\nyou kindly show me how to fix them properly?'\n'And you must have the broad-brimmed hat, too ;, for\nyour cap has no brim to keep the veil off, and they'd\nreach your face.'\n\" The broad-brimmed hat, too, by all means.'\nSo a whimsical fate ordered that her hat should be\ntaken off -- veil and all attached -- and placed upon his\nhead, Troy tossing his own into a gooseberry bush.\nThen the veil had to be tied at its lower edge round\nhis collar and the gloves put on him.\nHe looked such an extraordinary object in this guise\nthat, flurried as she was, she could not avoid laughing\noutright. It was the removal of yet another stake from\nthe palisade of cold manners which had kept him off\nBathsheba looked on from the g:-ound whilst he was\nbusy sweeping and shaking the bees from the tree,\nholding up the hive with the other hand for them to\nfall into. She made use of an unobserved minute\nwhilst his attention was absorbed in the\n<P 235>\noperation to\narrange her plumes a little. He came down holding\nthe hive at arm's length, behind which trailed a cloud\nof bees.\n' Upon my life,' said Troy, through the veil, ' holding\nup this hive makes one\"s arm ache worse than a week\nof sword-exercise.' When the manoeuvre was complete\nhe approached her. 'Would you be good enough to\nuntie me and let me out? I am nearly stifled inside\nthis silk cage.'\nTo hide her embarrassment during the unwonted\nprocess of untying the string about his neck, she said : --\n'I have never seen that you spoke of.'\n'What ?'\n'The sword-exercise.'\n'Ah ! would you like to ?' said Troy.\nBathsheba hesitated. She had heard wondrous\nreports from time to time by dwellers in Weatherbury,\nwho had by chance sojourned awhile in Casterbridge,\nnear the barracks, of this strange and glorious perform+\nance, tlie sword-exercise. Men and boys who had\npeeped through chinks or over walls into the barrack+\nyard returned with accounts of its being the most\nflashing affair conceivable ; accoutrements and weapons\nglistening like stars-here,there,around-yet all by rule\nand compass. So she said mildly what she felt strongly.\n'Yes ; I should like to see it very much.'\n'And so you shall; you shall see me go through it.'\n'No! How?'\n'Let me consider.'\n'Not with a walking-stick -- I don't care to see that.\nlt must be a real sword.'\n'Yes, I know; and I have no sword here; but I\nthink I could get one by the evening. Now, will you\ndo this?'\n'O no, indeed !' said Bathsheba, blushing. ' Thank\nyou very much, but I couldn't on any account.\n'Surely you might? Nobody would know.'\nShe shook her head, but with a weakened negation.\n' If I were to,' she said, 'I must bring Liddy too. Might\nI not?'\n<P 236>\nTroy looked far away. 'I don't see why you want\nto bring her,' he said coldly.\nAn unconscious look of assent in Bathsheba's eyes\nbetrayed that something more than his coldness had\nmade her also feel that Liddy Would be superfluous in\nthe suggested scene. She had felt it, even whilst making\nthe proposal.\n'Well, I won't bring Liddy -- and I'll come. But\nonly for a very short time,' she added; 'a very short\ntime.'\n'It will not take five minutes,' said Troy.\n<P 237>\n<C xxviii>\nTHE HOLLOW AMID THE FERNS\nTHE hill opposite Bathsheba's dwelling extended, a\nmile off, into an uncultivated tract of land, dotted at\nthis season with tall thickets of brake fern, plump and\ndiaphanous from recent rapid growth, and radiant in\nhues of clear and untainted green.\nAt eight o'clock this midsummer evening, whilst the\nbristling ball of gold in the west still swept the tips of\nthe ferns with its long, luxuriant rays, a soft brushing+\nby of garments might have been heard among them,\nand Bathsheba appeared in their midst, their soft,\nfeathery arms caressing her up to her shoulders. She\npaused, turned, went back over the hill and half-way\nto her own door, whence she cast a farewell glance upon\nthe spot she had just left, having resolved not to remain\nnear the place after all.\nShe saw a dim spot of artificial red moving round\nthe shoulder of the rise. It disappeared on the other\nside.\nShe waited one minute -- two minutes -- thought of\nTroy's disappointment at her non-fulfilment of a promised\nengagement, till she again ran along the field, clambered\nover the bank, and followed the original direction. She\nwas now literally trembling and panting at this her\ntemerity in such an errant undertaking; her breath\ncame and went quickly, and her eyes shone with an in+\nfrequent light. Yet go she must. She reached the\nverge of a pit in the middle of the ferns. Troy stood\nin the bottom, looking up towards her.\n'I heard you rustling through the fern before I saw\nyou,' he said, coming up and giving her his hand to help\nher down the slope.\nThe pit was a saucer-shaped concave, naturally\nformed, with a top diameter of about thirty feet, and\nshallow enough to allow the sunshine to reach their\nheads. Standing in the\n<P 238>\ncentre, the sky overhead was\nmet by a circular horizon of fern : this grew nearly to\nthe bottom of the slope and then abruptly ceased. The\nmiddle within the belt of verdure was floored with a\nthick flossy carpet of moss and grass intermingled, so\nyielding that the foot was half-buried within it.\n'Now,' said 'Troy, producing the sword, which, as he\nraised it into the sunlight, gleamed a sort of greeting,\nlike a living thing, 'first, we have four right and four\nleft cuts; four right and four left thrusts. Infantry cuts\nand guards are more interesting than ours, to my mind;\nbut they are not so swashing. They have seven cuts\nand three thrusts. So much as a preliminary. Well,\nnext, our cut one is as if you were sowing your corn --\nso.' Bathsheba saw a sort of rainbow, upside down in\nthe air, and Troy's arm was still again. 'Cut two, as if\nyou were hedging -- so. Three, as if you were reaping\n -- so.' Four, as if you were threshing -- in that way.\n'Then the same on the left. The thrusts are these : one,\ntwo, three, four, right ; one, two, three, four, left.' He\nrepeated them. 'Have 'em again ?' he said. 'One,\ntwo --  -- '\nShe hurriedly interrupted : 'I'd rather not; though\nI don't mind your twos and fours; but your ones and\nthrees are terrible !'\n'Very well. I'll let you off the ones and threes.\nNext, cuts, points and guards altogether.' Troy duly\nexhibited them. 'Then there's pursuing practice, in\nthis way.' He gave the movements as before. 'There,\nthose are the stereotyped forms. The infantry have\ntwo most diabolical upward cuts, which we are too\nhumane to use. Like this -- three, four.'\n'How murderous and bloodthirsty !'\n'They are rather deathy. Now I'll be more inter+\nesting, and let you see some loose play -- giving all the\ncuts and points, infantry and cavalry, quicker than\nlightning, and as promiscuously -- with just enough rule\nto regulate instinct and yet not to fetter it. You are\nmy antagonist, with this difference from real warfare,\nthat I shall miss you every time by one hair's breadth,\nor perhaps two. Mind you don't flinch, whatever you\ndo.'\n<P 239>\n'I'll be sure not to!' she said invincibly.\nHe pointed to about a yard in front of him.\nBathsheba's adventurous spirit was beginning to find\nsome grains of relish in these highly novel proceedings.\nShe took up her position as directed, facing Troy.\n'Now just to learn whether you have pluck enough\nto let me do what I wish, I'll give you a preliminary\ntest.'\nHe flourished the sword by way of introduction\nnumber two, and the next thing of which she was\nconscious was that the point and blade of the sword\nwere darting with a gleam towards her left side, just\nabove her hip; then of their reappearance on her right\nside, emerging as it were from between her ribs, having\napparently passed through her body. The third item\nof consciousness was that of seeing the same sword,\nperfectly clean and free from blood held vertically in\nTroy's hand (in the position technically called 'recover\nswords'). All was as quick as electricity.\n'Oh!' she cried out in affright, pressing her hand to\nher side. ' Have you run me through ? -- no, you have\nnot! Whatever have you done!'\n'I have not touched you,' said Troy, quietly. 'It\nwas mere sleight of hand. The sword passed behind\nyou. Now you are not afraid, are you ? Because if\nyou are l can't perform. I give my word that l will\nnot only not hurt you, but not once touch you.'\n'I don't think I am afraid. You are quite sure you\nwill not hurt me ?'\n'Quite sure.'\n\"Is the sWord very sharp ?'\n'O no -- only stand as still as a statue. Now !'\nIn an instant the atmosphere was transformed to\nBathsheba's eyes. Beams of light caught from the low\nsun's rays, above, around, in front of her, well-nigh shut\nout earth and heaven -- all emitted in the marvellous\nevolutions of Troy's reflecting blade, which seemed\neverywhere at once, and yet nowherre specially. These\ncircling gleams were accompanied by a keen rush that\nwas almost a whistling -- also springing\n<P 240>\nfrom all sides of\nher at once. In short, she was enclosed in a firmament\nof light, and of sharp hisses, resembling a sky-full of\nmeteors close at hand.\nNever since the broadsword became the national\nweapon had there been more dexterity shown in its\nmanagement than by the hands of Sergeant Troy, and\nnever had he been in such splendid temper for the\nperformance as now in the evening sunshine among the\nferns with Bathsheba. It may safely be asserted with\nrespect to the closeness of his cuts, that had it been\npossible for the edge of the sword to leave in the air a\npermanent substance wherever it flew past, the space\nleft untouched would have been almost a mould of\nBathsheba's figure.\nBehind the luminous streams of this aurora militaris,\nshe could see the hue of Troy's sword arm, spread in a\nscarlet haze over the space covered by its motions, like\na twanged harpstring, and behind all Troy himself,\nmostly facing her; sometimes, to show the rear cuts,\nhalf turned away, his eye nevertheless always keenly\nmeasuring her breadth and outline, and his lips tightly\nclosed in sustained effort. Next, his movements lapsed\nslower, and she could see them individually. The\nhissing of the sword had ceased, and he stopped\nentirely.\n'That outer loose lock of hair wants tidying, he\nsaid, before she had moved or spoken. 'Wait: I'll do\nit for you.'\nAn arc of silver shone on her right side: the sword\nhad descended. The lock droped to the ground.\n'Bravely borne!' said Troy. 'You didn't flinch a\nshade's thickness. Wonderful in a woman!'\n'It was because I didn't expect it. O, you have\nspoilt my hair!'\n'Only once more.'\n'No -- no! I am afraid of you -- indeed I am !' she\ncried.\n'I won't touch you at all -- not even your hair. I\nam only going to kill that caterpillar settling on you.\nNow: still!'\nIt appeared that a caterpillar had come from the\nfern and chosen the front of her bodice as his resting\nplace. She saw the point glisten towards her bosom,\nand seemingly enter it. Bathsheba closed her eyes in\nthe full persuasion that she was\n<P 241>\nkilled at last. How+\never, feeling just as usual, she opened them again.\n'There it is, look,' said the sargeant, holding his\nsword before her eyes.\nThe caterpillar was spitted upon its point.\n'Why, it is magic!' said Bathsheba, amazed.\n'O no -- dexterity. I merely gave point to your\nbosom where the caterpillar was, and instead of running\nyou through checked the extension a thousandth of an\ninch short of your surface.'\n'But how could you chop off a curl of my hair with\na sword that has no edge?'\nTHE HOLLOW AMID THE FERNS\n\"No edge .! This sword will shave like a razor.\nLook here.'\nHe touched the palm of his hand with the blade,\nand then, lifting it, showed her a thin shaving of scarf+\nskin dangling therefrom.\n\" But you said before beginning that it was blunt and\ncouldn't cut me .!'\n'That was to get you to stand still, and so make sure\nof your safety. The risk of injuring you through your\nmoving was too great not to force me to tell you a\nfib to escape it.'\nShe shuddered. 'I have been within an inch of my\nlife, and didn't know it! '\n'More precisely speaking, you have been within half\nan inch of being pared alive two hundred and ninety-five\ntinies.'\n\" Cruel, cruel, 'tis of you !. '\n\" You have been perfectly safe, nevertheless. My\nsword never errs.' And Troy returned the weapon to\nthe scabbard.\nBathsheba, overcome by a hundred tumultuous feel'\nings resulting from the scene, abstractedly sat down on\na tuft of heather.\n'I must leave you now,' said Troy, softly. \" And I'll\nventure to take and keep this in remembrance of you.'\nShe saw him stoop to the grass, pick up the winding\nlock which he had severcd from her manifold tresses,\ntwist it round his fingers, unfasten a button in the hreast\nof his coat, and carefully put it inside. She felt power+\nless to withstand or deny him. He was altogether too\nmuch for her, and Bathsheba\n<P 242>\nseemed as one who, facing\na reviving wind, finds it blow so strongly that it stops\nthe breath.\nHe drew near and said, 'I must be leaving you.'\nHe drew nearer still. A minute later and she saw his\nscarlet form disappear amid the ferny thicket, almost in\na flash, like a brand swiftly waved.\nThat minute's interval had brought the blood beating\ninto her face, set her stinging as if aflame to the very\nhollows oi her feet, and enlarged emotion to a compass\nwhich quite swamped thought. It had brought upon\nher a stroke resulting, as did that of Moses in Horeh, in\na liquid stream -- here a stream of tears. She felt like\none who has sinned a great sin.\nThe circumstance had been the gentle dip of Troy's\nmouth downwards upon her own. He had kissed her,\nPARTICULARS OF A TWILIGHT WALK\n<C xxix>\n<P 243>\nPARTICULARS OF A TWILIGHT WALK\nWE now see the element of folly distinctly mingling\nwith the many varying particulars which made up the\ncharacter of Bathsheba Everdene. It was almost foreign\nto her intrinsic nature. Introduced as lymph on the\ndart of Eros, it eventually permeated and coloured\nher whole constitution. Bathsheba, though she had too\nmuch understanding to be entirely governed by her\nwomanliness, had too much womanliness to use her\nunderstanding to the best advantage. Perhaps in no\nminor point does woman astonish her helpmate more\nthan in the strange power she possesses of believing\ncajoleries that she knows to be false -- except, indeed, in\nthat of being utterly sceptical on strictures that she\nknows to be true.\nBathsheba loved Troy in the way that only self-reliant\nwomen love when they abandon their self-reliance.\nWhen a strong woman recklessly throws away her\nstrength she is worse than a weak woman who has never\nhad any strength to throw away. One source of her\ninadequacy is the novelty of the occasion. She has\nnever had practice in making the best of such a\ncondition. Weakness is doubly weak by being new.\nBathsheba was not conscious of guile in this matter.\nThough in one sense a woman of the world, it was, after\nall, that world of daylight coteries and green carpets\nwherein cattle form the passing crowd and winds the\nbusy hum ; where a quiet family of rabbits or hares lives\non the other side of your party-wall, where your neigh+\nbour is everybody in the tything, and where calculation\nformulated self-indulgence of bad, nothing at all. Had\nher utmost thoughts in this direction been distinctly\nworded (and by herself they never were), they would\n<P 244>\nonly have amounted to such a matter as that she felt\nher impulses to be pleasanter guides than her discretion .\nHer love was entire as a child's, and though warm as\nsummer it was fresh as spring. Her culpability lay in\nher making no attempt to control feeling by subtle and\ncareful inquiry into consuences. She could show others\nthe steep and thorny way, but 'reck'd not her own rede,'\nAnd Troy's deformities lay deep down from a\nwoman's vision, whilst his embellishments were upon\nthe verysurface; thus contrasting with homely Oak,\nwhose defects were patent to the blindest, and whose\nvertues were as metals in a mine.\nThe difference between love and respect was mark+\nedly shown in her conduct. Bathsheba had spoken of\nher interest in Boldwood with the greatest freedom to\nLiddy, but she had only communed with her own heart\nconcerning 'Troy'.\nAll this infatuation Gabriel saw, and was troubled\nthereby from the time of his daily journey a-field to the\ntime of his return, and on to the small hours of many a\nnight. That he was not beloved had hitherto been his\ngreat that Bathsheba was getting into the toils\nwas now a sorrow greater than the first, and one which\nnearly olbscured it. It was a result which paralleled\nthe oft-quoted observation of Hippocrates concerning\nphysical pains.\nThat is a noble though perhaps an unpromising love\nPARTICULARS OF A TWILlGHT WALK\nwhich not even the fear of breeding aversion in the\nbosom of the one beloved can deter from combating his\nor her errors. Oak determined to speak to his mistress.\nHe would base his appeal on what he considered her\nunfair treatment of Farmer Boldwood, now absent from\nhome.\nAn opportunity occurred one evening when she had\ngone for a short walk by a path through the neighbour+\ning cornfields. It was dusk when Oak, who had not\nbeen far a-field that day, took the same path and met\nher returning, quite pensively, as he thought.\nThe wheat was now tall, and the path was narrow;\nthus the way was quite a sunken groove between the\nembowing thicket on either side. Two persons could\nnot walk abreast\n<P 245>\nwithout damaging the crop, and Oak\nstood aside to let her pass.\n'Oh, is it Gabriel?' she said. 'You are taking a\nwalk too. Good-night.'\n\"I thought I would come to meet you, as it is rather\nlate,\" said Oak, turning and following at her heels when\nshe had brushed somewhat quickly by him.\n\"Thank you, indeed, but I am not very fearful.'\n\" O no ; but there are bad characters about.'\n\"I never meet them.'\nNow Oak, with marvellous ingenuity, had been going\nto introduce the gallant sergeant through the channel of\n\"bad characters.' But all at once the scheme broke\ndown, it suddenly occurring to him that this was rather a\nclumsy way, and too barefaced to begin with. He tried\nanother preamble.\n\"And as the man who would naturally come to meet\nyou is away from home, too -- I mean Farmer Boldwood\n -- why, thinks I, I'll go,' he said.\n\"Ah, yes.' She walked on without turning her head,\nand for many steps nothing further was heard from her\nquarter than the rustle of her dress against the heavy\ncorn-ears. Then she resumed rather tartly --\n'I don't quite understand what you meant by saying\nthat Mr. Boldwood would naturally come to meet me.'\nI meant on account of the wedding which they say\nis likely to take place between you and him, miss. For+\ngive my speaking plainly.'\n\"They say what is not true,' she returned quickly.\nNo marriage is likely to take place between us.'\nGabriel now put forth his unobscured opinion, for\nthe moment had come. \" Well, Miss Everdene,' he\nsaid, \"putting aside what people say, I never in my life\nsaw any courting if his is not a courting of you.\"\nBathsheba would probably have terminated the con'\nversation there and then by flatly forbidding the subject,\nhad not her conscious weakness of position allured her\nto palter and argue in endeavours to better it.\n<P 246>\n\"Since this subject has been mentioned,' she said\nvery emphatically, 'I am glad of the opportunity of\nclearing up a mistake which is very common and very\nprovoking. I didn't definitely promise Mr. Boldwood\nanything. I have never cared for him. I respect him,\nand he has urged me to marry him. But I have given\nhim no distinct answer. As soon as he returns I shall\ndo so; and the answer will be that I cannot think of\nmarrying him.'\n'People are full of mistakes, seemingly.'\n' They are.'\nThe other day they said you were trifling with him,\nand you almost proved that you were not; lately they\nhave said that you be not, and you straightway begin\nto show --  -- '\nThat I am, I suppose you mean.'\n' Well, I hope they speak the truth.'\nThey do, but wrongly applied. I don't trifle with\nhim ; but then, I have nothing to do with him.'\nOak was unfortunately led on to speak of Boldwood's\nrival in a wrong tone to her after all. 'I wish you had\nnever met that young Sergeant Troy, miss,' he sighed.\nPARTlCULARS OF A TWILIGHT WALK\nBathsheba's steps became faintly spasmodic. \" Why?'\nshe asked.\n' He is not good enough for 'ee.'\n\"Did any one tell you to speak to me like this ?'\n\" Nobody at all.'\n\"Then it appears to me that Sergeant Troy does not\nconcern us here,' she said, intractably. ' Yet I must say\nthat Sergeant 'Troy is an educated man, and quite worthy\nof any woman. He is well born.'\n\"His being higher in learning and birth than the\nruck o' soldiers is anything but a proof of his worth. It\nshow's his course to be down'ard.'\n\"I cannot see what this has to do with our conversa+\ntion. Mr. Troy's course is not by any means downward;\nand his superiority <1is>1 a proof of his worth .! '\n\"I believe him to have no conscience at all. And I\ncannot help begging you, miss, to have nothing to do\nwith him. Listen to me this once -- only this once !.\nI don't say he's such\n<P 247>\na bad man as I have fancied -- I\npray to God he is not. But since we don't exactly\nknow what he is, why not behave as if he <1might>1 be bad,\nsimply for your own safety ? Don't trust him, mistress;\nI ask you not to trust him so.'\n\" Why, pray ? '\n\"I like soldiers, but this one I do not like,' he said,\nsturdily. \" His cleverness in his calling may have\ntempted him astray, and what is mirth to the neighbours\nis ruin to the woman. When he tries to talk to 'ee again,\nwhy not turn away with a short 'Good day' ; and when\nyou see him coming one way, turn the other. When\nhe says anything laughable, fail to see the point\nand don't smile, and speak of him before those who will\nreport your talk as \"that fantastical man,' or \" that\nSergeant What's-his-name.\" \"That man of a family\nthat has come to the dogs.' Don't be unmannerly\ntowards en, but harmless-uncivil, and so get rid of the\nman.'\nNo Christmas robin detained by a window-pane ever\npulsed as did Bathsheba now.\nI say -- I say again -- that it doesn't become you to\ntalk about him. Why he should be mentioned passes\nme quite . she exclaimed desperately. \" I know this,\nth-th-that he is a thoroughly conscientious man -- blunt\nsometimes even to rudeness -- but always speaking his\nmind about you plain to your face .! '\n\"Oh.'\n\"He is as good as anybody in this parish.! He is\nvery particular, too, about going to church -- yes, he\nis.!'\n'I am afraid nobody saw him there. I never\ndid certainly.'\n' The reason of that is,' she said eagerly, \" that he goes\nin privately by the old tower door, just when the service\ncommences, and sits at the back of the gallery. He\ntold me so.'\nThis supreme instance of Troy's goodness fell upon\nGabriel ears like the thirteenth stroke of crazy clock.\nIt was not only received with utter incredulity as re+\ngarded itself, but threw a doubt on all the assurances\nthat had preceded it.\nOak was grieved to find how entirely she trusted him.\nHe brimmed with deep feeling as he replied in a steady\nvoice, the\n<P 248>\nsteadiness of which was spoilt by the palpable+\nness of his great effort to keep it so : --\n' You know, mistress, that I love you, and shall love\nyou always. I only mention this to bring to your mind\nthat at any rate I would wish to do you no harm :\nbeyond that I put it aside. I have lost in the race for\nmoney and good things, and I am not such a fool as to\npretend to 'ee now I am poor, and you have got alto+\ngether above me. But Bathsheba, dear mistress, this\nI beg you to consider -- that, both to keep yourself well\nhonoured among the workfolk, and in common generosity\nto an honourable man who loves you as well as I, you\nPARTICULARS OF A TWILIGHT WALK\nshould be more discreet in your bearing towards this\nsoldier.'\n\" Don't, don't, don't !. ' she exclaimed, in a choking\nvoice.\n\"Are ye not more to me than my own affairs, and\neven life .! ' he went on. \"Come, listen to me.! I am\nsix years older than you, and Mr. Boldwood is ten years\nolder than I, and consider -- I do beg of 'ee to consider\nbefore it is too late -- how safe you would be in his\nhands .! '\nOak's allusion to his own love for her lessened, to\nsome extent, her anger at his interference ; but she\ncould not really forgive him for letting his wish to marry\nher be eclipsed by his wish to do her good, any more\nthan for his slighting treatment of Troy.\n\"I wish you to go elsewhere,' she commanded, a\npaleness of face invisible to the eye being suggested by\nthe trembling words. \" Do not remain on this farm any\nlonger. I don't want you -- I beg you to go !.'\n\"That's nonsense,' said Oak, calmly. \" This is the\nsecond time you have pretended to dismiss me; and\nwhat's the use o' it?'\n\" Pretended !. You shall go, sir -- your lecturing I\nwill not hear .! I am mistress here.'\n\" Go, indeed -- what folly will you say next ? Treating\nme like Dick, Tom and Harry when you know that a\nshort time ago my position was as good as yours !. Upon\nmy life, Bathsheba, it is too barefaced. You know, too,\nthat I can't go without putting things in such a strait as\nyou wouldn't get out of\n<P 249>\nI can't tell when. Unless, indeed,\nyou'll promise to have an understanding man as bailiff,\nor manager, or something. I'll go at once if you'll\npromise that.'\n'I shall have no bailiff; I shall continue to be my\nown manager,' she said decisively.\n\"Very well, then ; you should be thankful to me for\nbiding. How would the farm go on with nobody to\nmind it but a woman? But mind this, I don't wish\n'ee to feel you owe me anything. Not I. What I do,\nI do. Sometimes I say I should be as glad as a bird to\nleave the place -- for don't suppose I'm content to be a\nnobody. I was made for better things. However, I\ndon't like to see your concerns going to ruin, as they\nmust if you keep in this mind.... I hate taking my\nown measure so plain, but, upon my life, your provok+\ning ways make a man say what he wouldn't dream of\nat other times ! I own to being rather interfering. But\nyou know well enough how it is, and who she is that I\nlike too well, and feel too much like a fool about to be\ncivil to her ! '\nIt is more than probable that she privately and un+\nconsciously respected him a little for this grim fidelity,\nwhich had been shown in his tone even more than in\nhis words. At any rate she murmured something to the\neffect that he might stay if he wished. She said more\ndistinctly, \" Will you leave me alone now? I don't\norder it as a mistress -- I ask it as a woman, and I\nexpect you not to be so uncourteous as to refuse.'\n\" Certainly I will, Miss Everdene,' said Gabriel, gently.\nHe wondered that the request should have come at this\nmoment, for the strife was over, and they were on a\nmost desolate hill, far from every human habitation, and\nthe hour was getting late. He stood still and allowed\nher to get far ahead of him till he could only see her\nform upon the sky.\nA distressing explanation of this anxiety to be rid of\nhim at that point now ensued. A figure apparently rose\nfrom the earth beside her. The shape beyond all doubt\nwas Troy's. Oak would not be even a possible listener,\nand at once turned back till a good two hundred yards\nwere between the lovers and himself.\n<P 250>\nGabriel went home by way of the churchyard. In\npassing the tower he thought of what she had said about\nthe sergeant's virtuous habit of entering the church un+\nPARTICULARS OF A TWILIGHT WALK\nperceived at the beginning of service. Believing that\nthe little gallery door alluded to was quite disused, he\nascended the external flight of steps at the top of which\nit stood, and examined it. The pale lustre yet hanging\nin the north-western heaven was sufficient to show that\na sprig of ivy had grown from the wall across the door\nto a length of more than a foot, delicately tying the\npanel to the stone jamb. It was a decisive proof that\nthe door had not been opened at least since Troy came\nback to Weatherbury.\n<C xxx>\n<P 251>\nHOT CHEEKS AND TEARFUL EYES\nHALF an hour later Bathsheba entered her own house.\nThere burnt upon her face when she met the light of\nthe candles the flush and excitement which were little\nless than chronic with her now. The farewell words of\nTroy, who had accompanied her to the very door, still\nlingered in her ears. He had bidden her adieu for two\ndays, which were so he stated, to be spent at Bath in\nvisiting some friends. He had also kissed her a second\ntime.\nIt is only fair to Bathsheba to explain here a little\nfact which did not come to light till a long time after+\nwards : that Troy's presentation of himself so aptly at\nthe roadside this evening was not by any distinctly pre+\nconcerted arrangement. He had hinted -- she had\nforbidden; and it was only on the chance of his still\ncoming that she had dismissed Oak, fearing a meeting\nbetween them just then.\nShe now sank down into a chair, wild and perturbed\nby all these new and fevering sequences. Then she\njumped up with a manner of decision, and fetched her\ndesk from a side tahle.\nIn three minutes, without pause or modification, she\nhad written a letter to Boldwood, at his address beyond\nCasterbridge, saying mildly but firmly that she had well\nHOT CHEEKS AND TEARFUL EYES\nconsidered the whole subject he had brought before her\nand kindly given her time to decide upon; that her\nfinal decision was that she could not marry him. She\nhad expressed to Oak an intention to wait till Boldwood\ncame home before communicating to him her conclusive\nreply. But Bathsheba found that she could not wait.\nIt was impossible to send this letter till the next day;\nyet to quell her uneasiness by getting it out of her hands,\nand so, as it were, setting the act in motion at once, she\narose to take it to any one of the women who might be\nin the kitchen.\n<P 252>\nShe paused in the passage. A dialogue was going\non in the kitchen, and Bathsheba and Troy were the\nsubject of it.\n\"If he marry her, she'll gie up farming.'\n\"Twill be a gallant life, but may bring some trouble\nbetween the mirth -- so say I.'\n\"Well, I wish I had half such a husband.'\nBathsheba had too much sense to mind seriously\nwhat her servitors said about her ; but too much womanly\nredundance of speech to leave alone what was said till\nit died the natural death of unminded things. She\nburst in upon them.\n\"Who are you speaking of? ' she asked.\nThere was a pause before anybody replied. At last\nLiddy said frankly, ' What was passing was a bit of a\nword about yourself, miss.'\n\"I thought so .! Maryann and Liddy and Temper+\nance -- now I forbid you to suppose such things. You\nknow I don't care the least for Mr. Troy -- not I. Every+\nbody knows how much I hate him. -- Yes,' repeated the\nfroward young person, \"<1hate>1 him .! '\n\" We know you do, miss,' said Liddy; \"and so do we\nall.'\n\" I hate him too,' said Maryann.\n\" Maryann -- O you perjured woman !. How can you\nspeak that wicked story ! ' said Bathsheba, excitedly.\n\"You admired him from your heart only this morning\nin the very world, you did. Yes, Maryann, you know it ! '\n'Yes, miss, but so did you. He is a wild scamp\nnow, and you are right to hate him.\"\n\"He's <1not>1 a wild scamp.! How dare you to my face !.\nI have no right to hate him, nor you, nor anybody.\nBut I am a silly woman.! What is it to me what he is ?\nYou know it is nothing. I don't care for him ; I don\"t\nmean to defend his good name, not I. Mind this, if\nany of you say a word against him you'll be dismissed\ninstantly !. '\nShe flung down the letter and surged back into the\nparlour, with a big heart and tearful eyes, Liddy following\nher.\n'O miss.!' said mild Liddy, looking pitifully into\nBathsheba's face. \"I am sorry we mistook you so .!\ndid think you cared for him; but I see you don't now.'\n\" Shut the door, Liddy.'\n<P 253>\nLiddy closed the door, and went on : ' People always\nsay such foolery, miss. I'll make answer hencefor'ard,\n\"Of course a lady like Miss Everdene can't love him;'\nI'll say it out in plain black and white.'\nBathsheba burst out : 'O Liddy, are you such a\nsimpleton ? Can't you read riddles ? Can't you see?\nAre you a woman yourself ? '\nLiddy's clear eyes rounded with wonderment.\n' Yes; you must be a blind thing, Liddy .! ' she said,\nin reckless abandonment and grief. \"O, I love him\nto very distraction and misery and agony .! Don't be\nfrightened at me, though perhaps I am enough to frighten\nany innocent woman. Come closer -- closer.' She put\nher arms round Liddy's neck. \"I must let it out to\nsomebody; it is wearing me away !. Don't you yet know\nenough of me to see through that miserable denial of\nmine? O God, what a lie it was !. Heaven and my\nLove forgive me. And don't you know that a woman\nwho loves at all thinks nothing of perjury when it is\nHOT CHEEKS AND TEARFUL EYES\nbalanced against her love ? There, go out of the room ;\nI want to be quite alone.'\nLiddy went towards the door.\n' Liddy, come here. Solemnly swear to me that he's\nnot a fast man; that it is all lies they say about him !.'\n'Put, miss, how can I say he is not if --  -- '\n\"You graceless girl.! How can you have the cruel\nheart to repeat what they say? Unfeeling thing that\nyou are.... But <1I'll>1 see if you or anybody else in the\nvillage, or town either, dare do such a thing .! ' She\nstarted off, pacing from fireplace to door, and back\nagain.\n\"No, miss. I don't -- I know it is not true !. ' said\nLiddy, frightened at Bathsheba's unwonted vehemence.\nI suppose you only agree with me like that to please\nme. But, Liddy, he <1cannot be>1 had, as is said. Do you\nhear? \"\n' Yes, miss, yes.'\n\"And you don't believe he is?\"\n'I don't know what to say, miss,' said Liddy, be+\nginning to cry. \"If I say No, you don\"t believe me;\nand if I say Yes, you rage at me ! '\n\" Say you don't believe it -- say you don't ! '\n<P 254>\n'I don't believe him to be so had as they make out.'\n\"He is not had at all.... My poor life and heart,\nhow weak I am .! ' she moaned, in a relaxed, desultory\nway, heedless of Liddy's presence. \"O, how I wish I\nhad never seen him.! Loving is misery for women\nalways. I shall never forgive God for making me a\nwoman, and dearly am I beginning to pay for the honour\nof owning a pretty face.' She freshened and turned to\nLiddy suddenly. \" Mind this, Lydia Smallbury, if you\nrepeat anywhere a single word of what l have said to\nyou inside this closed door, I'll never trust you, or love\nyou, or have you with me a moment longer -- not a\nmoment ! '\n\" I don't want to repeat anything,' said Liddy, with\nwomanly dignity of a diminutive order; \"but I don't\nwish to stay with you. And, if you please, I'll go at the\nend of the harvest, or this week, or to-day.... I don't\nsee that I deserve to be put upon and stormed at for\nnothing ! ' concluded the small woman, bigly.\n\" No, no, Liddy ; you must stay ! ' said Bathsheba,\ndropping from haughtiness to entreaty with capricious\ninconsequence. \"You must not notice my being in a\ntaking just now. You are not as a servant -- -you are a\ncompanion to me. Dear, dear -- I don't know what I\nam doing since this miserable ache o'! my heart has\nweighted and worn upon me so .! What shall I come\nto ! I suppose I shall get further and further into\ntroubles. I wonder sometimes if I am doomed to die\nin the Union. I am friendless enough, God knows .! '\n'I won't notice anything, nor will I leave you ! \" sobbed\nLiddy, impulsively putting up her lips to Bathsheba's,\nand kissing her.\nThen Bathsheba kissed Liddy, and all was smooth\nagain.\n\"I don't often cry, do I, Lidd ? but you have made\ntears come into my eyes,' she said, a smile shining\nthrough the moisture. \"Try to think him a good man,\nwon't you, dear Liddy ? '\n\"I will, miss, indeed.'\n\"He is a sort of steady man in a wild way, you know.\nway. I am afraid that's how I am. And promise me\nto keep my secret -- do, Liddy.! And do not let them\nknow that I have been crying\n<P 255>\nabout him, because it will\nbe dreadful for me, and no good to him, poor thing .!'\n\"Death's head himself shan't wring it from me, mistress,\nif I've a mind to keep anything; and I'll always be your\nfriend,' replied Liddy, emphatically, at the same time\nbringing a few more tears into her own eyes, not from\nany particular necessity, but from an artistic sense of\nmaking herself in keeping with the remainder of the\nHOT CHEEKS AND TEARFUL EYES\npicture, which seems to influence women at such times.\n\"I think God likes us to be good friends, don't you ?'\n\"Indeed I do.'\n\"And, dear miss, you won\"t harry me and storm at\nme, will you ? because you seem to swell so tall as a\nlion then, and it frightens me !. Do you know, I fancy\nyou would be a match for any man when you are in one\n0' your takings.'\n\"Never.! do you ? ' said Bathsheba, slightly laughing,\nthough somewhat seriously alarmed by this Amazonian\npicture of herself. \"I hope I am not a bold sort of\nmaid -- mannish ? ' she continued with some anxiety.\n\"O no, not mannish; but so almighty womanish\nthat 'tis getting on that way sometimes. Ah ! miss,' she\nsaid, after having drawn her breath very sadly in and\nsent it very sadly out, \"I wish I had half your failing\nthat way. 'Tis a great protection to a poor maid in\nthese illegit'mate days !. '\n<C xxxi>\n<P 256>\nBLAME -- FURY\nTHE next evening Bathsheba, with the idea of getting\nout of the way of Mr. Boldwood in the event of his\nreturning to answer her note in person, proceeded to\nfulfil an engagement made with Liddy some few hours\nearlier. Bathsheba's companion, as a gage of their\nreconciliation, had heen granted a week's holiday to\nvisit her sister, who was married to a thriving hurdler\nand cattle-crib-maker living in a delightful labyrinth of\nhazel copse not far beyond Yalbury. The arrangement\nwas that Miss Everdene should honour them by coming\nthere for a day or two to inspect some ingenious con+\ntnvances which this man of the woods had introduced\ninto his wares.\nLeaving her instructions with Gabriel and Maryann,\nthat they were to see everything carefully locked up for\nthe night, she went out of the house just at the close of\na timely thunder-shower, which had refined the air, and\ndaintily bathed the coat of the land, though all beneath\nwas dry as ever. Freshness was exhaled in an essence\nfrom the varied contours of bank and hollow, as if the\nearth breathed maiden breath; and the pleased birds\nwere hymning to the scene. Before her, among the\nclouds, there was a contrast in the shape of lairs of\nfierce light which showed themselves in the neighbour+\nhood of a hidden sun, lingering on to the farthest north+\nwest corner of the heavens that this midsummer season\nallowed.\nShe had walked nearly two miles of her journey,\nwatching how the day was retreating, and thinking how\nthe time of deeds was quietly melting into the time of\nthought, to give place in its turn to the time of prayer\nand sleep, when she beheld advancing over Yalbury hill\nthe very man she sought so anxiously to elude. Boldwood\nwas stepping on, not with that quiet tread of reserved\nstrength which was his customary\n<P 257>\ngait, in which he\nalways seemed to be balancing two thoughts. His\nmanner was stunned and sluggish now.\nBoldwood had for the first time been awakened to\nwoman's privileges in tergiversation even when it involves\nanother person's possible blight. That Bathsheba was\na firm and positive girl, far less inconsequent than her\nfellows, had been the very lung of his hope ; for he had\nheld that these qualities would lead her to adhere to a\nstraight course for consistency's sake, and accept him,\nthough her fancy might not flood him with the iridescent\nhues of uncritical love. But the argument now came\nback as sorry gleams from a broken mirror. The dis+\ncovery was no less a scourge than a surprise.\nHe came on looking upon the ground, and did not\nsee Bathsheba till they were less than a stone's throw\napart. He looked up at the sound of her pit-pat, and\nhis changed appearance sufficiently denoted to her the\ndepth and strength of the feelings paralyzed by her\nletter.\n\" Oh ; is it you, Mr. Boldwood ? ' she faltered, a guilty\nwarmth pulsing in her face.\nThose who have the power of reproaching in silence\nmay find it a means more effective than words. There\nare accents in the eye which are not on the tongue, and\nmore tales come from pale lips than can enter an ear.\nIt is both the grandeur and the pain of the remoter\nmoods that they avoid the pathway of sound. Bold+\nwood's look was unanswerable.\nSeeing she turned a little aside, he said, 'What, are\nyou afraid of me?'\n\" Why should you say that ? ' said Bathsheba.\n\"I fancied you looked so,' said he. 'And it is most\nstrange, because of its contrast with my feeling for you.\nShe regained self-possession, fixed her eyes calmly,\nand waited.\n\" You know what that feeling is,' continued Boldwood,\ndeliberately. \"A thing strong as death. No dismissal\nby a hasty letter affects that.'\n'I wish you did not feel so strongly about me,' she\nmurmured. \"It is generous of you, and more than I\ndeserve, but I must not hear it now.'\n<P 258>\n\"Hear it? What do you think I have to say, then ?\nI am not to marry you, and thats enough. Your letter\nwas excellently plain. I want you to hear nothing --\nnot I.'\nBathsheba was unable to direct her will into any\ndefinite groove for freeing herself from this fearfully\nand was moving on. Boldwood walked up to her heavily\nand dully.\n\"Bathsheba -- -darling -- -is it final indeed?'\n\"Indeed it is.'\n\"O, Bathsheba -- -have pity upon me!' Boldwood\nburst out. \"God's sake, yes -- I am come to that low,\nlowest stage -- -to ask a woman for pity! Still, she is\nyou -- -she is you.'\nBathsheba commanded herself well. But she could\nhardly get a clear voice for what came instinctively to\nher lips: \"There is little honour to the woman in that\nspeech.' It was only whispered, for something unutter+\nably mournful no less than distressing in this spectacle\nof a man showing himself to be so entirely the vane of a\npassion enervated the feminine instinct for punctilios.\nBLAME\n\"I am beyond myself about this, and am mad,' he\nsaid. \"I am no stoic at all to he supplicating here ; but\nI do supplicate to you. I wish you knew what is in\nme of devotion to you ; but it is impossible, that. In\nbare human mercy to a lonely man, don't throw me off\nnow !'\n'I don't throw you off -- indeed, how can I ? I never\nhad you.' In her noon-clear sense that she had never\nloved him she forgot for a moment her thoughtless angle\non that day in February.\n'But there was a time when you turned to me,\nbefore I thought of you ! I don't reproach you, for\neven now I feel that the ignorant and cold darkness\nthat I should have lived in if you had not attracted me\nby that letter -- valentine you call it -- would have becn\nworse than my knowledge of you, though it has brought\nthis misery. But, I say, there was a time when I knew\nnothing of you, and cared nothing for you, and yet you\ndrew me on. And if you say you gave me no en+\ncouragement, I cannot but contradict you.'\n<P 259>\n\"What you call encouragement was the childish\ngame of an idle minute. I have bitterly repented of it\n -- ay, bitterly, and in tears. Can you still go on re+\nminding me ?'\n'I don't accuse you of it -- I deplore it. I took for\nearnest what you insist was jest, and now this that I\npray to be jest you say is awful, wretched earnest. Our\nmoods meet at wrong places. I wish your feeling was\nmore like mine, or my feeling more like yours.! O,\ncould I but have foreseen the torture that trifling trick\nwas going to lead me into, how I should have cursed\nyou ; but only having been able to see it since, I cannot\ndo that, for I love you too well.! But it is weak, idle\ndrivelling to go on like this.... Bathsheba, you are\nthe first woman of any shade or nature that I have ever\nlooked at to love, and it is the having been so near\nclaiming you for my own that makes this denial so hard\nto bear. How nearly you promised me ! But I don't\nspeak now to move your heart, and make you grieve\nbecause of my pain ; it is no use, that. I must bear it;\nmy pain would get no less by paining you.'\n\"But I do pity you -- deeply -- O so deeply .!' she\nearnestly said.\n\"Do no such thing -- do no such thing. Your dear\nlove, Bathsheba, is such a vast thing beside your pity,\nthat the loss of your pity as well as your love is no great\naddition to my sorrow, nor does the gain of your pity\nmake it sensibly less. O sweet -- how dearly you\nspoke to me behind the spear-bed at the washing-pool,\nand in the barn at the shearing, and that dearest last\ntime in the evening at your home.! Where are your\npleasant words all gone -- your earnest hope to be able\nto love me? Where is your firm conviction that you\nwould get to care for me very much ? Really forgotten ?\n -- really ? '\nShe checked emotion, looked him quietly and clearly\nin the face, and said in her low, firm voice, \" Mr. Bold+\nwood, I promised you nothing. Would you have had\nme a woman of clay when you paid me that furthest,\nhighest compliment a man can pay a woman -- telling\nher he loves her? I was bound to show some feeling,\nif l would not be a graceless shrew. Yet each of those\npleasures was just for the day -- the day just for the\n<P 260>\npleasure. How was I to know that what is a pastime\nto all other men was death to you ? Have reason, do,\nand think more kindly of me !'\n'Well, never mind arguing -- never mind. One\nthing is sure: you were all but mine, and now you are\nnot nearly mine. Everything is changed, and that by\nyou alone, remember. You were nothing to me once,\nand I was contented; you are now nothing to me again,\nand how different the second nothing is from the first .!\nWould to God you had never taken me up, since it was\nonly to throw me down .! '\nFURY\nBathsheba, in spite of her mettle, began to feel un+\nmistakable signs that she was inherently the weaker\nvessel. She strove miserably against this feminity\nwhich would insist upon supplying unbidden emotions\nin stronger and stronger current. She had tried to\nelude agitation by fixing her mind on the trees, sky, any\ntrivial object before her eyes, whilst his reproaches fell,\nbut ingenuity could not save her now.\n\"I did not take you up -- -surely I did not!' she\nanswered as heroically as she could. \" But don't be in\nthis mood with me. I can endure being told I am in\nthe wrong, if you will only tell it me gently! O sir,\nwill you not kindly forgive me, and look at it\ncheerfully ? '\n\"Cheerfully! Can a man fooled to utter heart+\nburning find a reason for being merry> If I have lost,\nhow can I be as if I had won? Heavens you must be\nheartless quite ! Had I known what a fearfully bitter\nsweet this was to be, how would I have avoided you,\nand never seen you, and been deaf of you. I tell you\nall this, but what do you care! You don't care.'\nShe returned silent and weak denials to his charges,\nand swayed her head desperately, as if to thrust away\nthe words as they came showering ahout her ears from\nthe lips of the trembling man in the climax of life, with\nhis bronzed Roman face and fine frame.\n\"Dearest, dearest, I am wavering even now between\nthe two opposites of recklessly renouncing you, and\nlabouring humbly for you again. Forget that you have\nsaid No, and let it be as it was !. Say, Bathsheba, that\nyou only wrote that refusal to me in fun -- -come, say it\nto me!'\n<P 261>\n\" It would be untrue, and painful to both of us. You\noverrate my capacity for love. I don't possess half\nthe warmth of nature you believe me to have. An un+\nprotected childhood in a cold world has beaten gentle+\nness out of me.'\nHe immediately said with more resentment: \"That\nmay be true, somewhat ; but ah, Miss Everdene, it won't\ndo as a reason! You are not the cold woman you\nwould have me believe. No, no .! It isn't because you\nhave no feeling in you that you don't love me. You\nnaturally would have me think so -- -you would hide from\nthat you have a burning heart like mine. You have\nlove enough, but it is turned into a new channel. I\nknow where.'\nThe swift music of her heart became hubbub now,\nand she throbbed to extremity. He was coming to\nTroy. He did then know what had occurred .! And\nthe name fell from his lips the next moment.\n\"Why did Troy not leave my treasure alone?' he\nasked, fiercely. \"When I had no thought of injuring\nhim, why did he force himself upon your notice.!\nBefore he worried you your inclination was to have me;\nwhen next I should have come to you your answer\nwould have been Yes. Can you deny it -- -I ask, can\nyou deny it?'\nShe delayed the reply, but was to honest to with\nhold it. ' I cannot,' she whispered.\n\"I know you cannot. But he stole in in my absence\nand robbed me. Why did't he win you away before,\nwhen nobody would have been grieved? -- -when nobody\nwould have been set tale-bearing. Now the people\nsneer at me -- -the very hills and sky seem to laugh at\nme till I blush shamefuly for my folly. I have lost my\nrespect, my good name, my standing -- -lost it, never to\nget it again. Go and marry your man -- go on .! '\n\"O sir -- -Mr. Boldwood!'\n\" You may as well. I have no further claim upon you.\nAs for me, I had better go somewhere alone, and hide --\nand pray. I loved a woman once. I am now ashamed.\nWhen I am dead they'll say, Miserable love-sick man\nthat he was. Heaven -- -heaven -- -if I had got jilted\nsecretly, and the dishonour not known, and my position\nFURY\nkept.! But no matter, it is\n<P 262>\ngone, and the woman not\ngained. Shame upon him -- shame .! '\nHis unreasonable anger terrified her, and she glided\nfrom him, without obviously moving, as she said, \"I am\nonly a girl -- do not speak to me so.!'\n\"All the time you knew -- how very well you knew --\nthat your new freak was my misery. Dazzled by brass\nand scarlet -- O, Bathsheba -- this is woman's folly\nindeed .! '\nShe fired up at once. \"You are taking too much\nupon yourself .! ' she said, veheniently. \" Everybody is\nupon me  -- everybody. It is unmanly to attack a\nwoman so ! I have nobody in the world to fight my\nbattles for me; but no mercy is shown. Yet if a\nthousand of you sneer and say things against me, I <1will>1\n<1not>1 be put down !.\"\n\" You'll chatter with him doubtless about me. Say to\nhim, \"Boldwood would have died for me.' Yes, and\nyou have given way to him, knowing him to be not the\nman for you. He has kissed you -- claimed you as his.\nDo you hear -- he has kissed you. Deny it .! '\nThe most tragic woman is cowed by a tragic man,\nand although Boldwood was, in vehemence and glow,\nnearly her own self rendered into another sex,\nBathsheba's cheek quivered. She gasped, ' Leave me,\nsir -- leave me !. I am nothing to you. Let me go on !.'\n\"Deny that he has kissed you.'\n\"I shall not.'\n\" Ha -- then he has ! ' came hoarsely from the farmer.\n\"He has,\" she said, slowly, and, in spite of her fear,\ndefiantly. 'I am not ashamed to speak the truth.'\n\"Then curse him; and curse him !. ' said Boldwood,\nbreaking into a whispered fury. ' Whilst I would have\ngiven worlds to touch your hand, you have let a rake come\nin without right or ceremony and -- kiss you .! Heaven's\nmercy -- kiss you ! ... Ah, a time of his life shall come\nwhen he will have to repent, and think wretchedly of\nthe pain he has caused another man ; and then may he\nache, and wish, and curse, and yearn -- as I do now .! \"\n'Don't, don't, O, don't pray down evil upon him.! '\nshe\n<P 263>\nimplored in a miserable cry. \"Anything but that --\nanything. O, be kind to him, sir, for I love him true .'\nBoldwood's ideas had reached that point of fusion at\nwhich outline and consistency entirely disappear. The\nimpending night appeared to concentrate in his eye.\nHe did not hear her at all now.\n\"I'll punish him -- -by my soul, that will I.! I'll meet\nhim, soldier or no, and I'll horsewhip the untimely\nstripling for this reckless theft of my one delight. If he\nwere a hundred men I'd horsewhip him --  -- ' He\ndropped his voice suddenly and unnaturally. \"Bath+\nsheba, sweet, lost coquette, pardon me .! I've been\nblaming you, threatening you, behaving like a churl to\nyou, when he's the greatest sinner. He stole your dear\nheart away with his unfathomable lies.! ... lt is a\nfortunate thing for him that he's gone back to his\nregiment -- -that he's away up the country, and not here!\nI hope he may not return here just yet. I pray God\nhe may not come into my sight, for I may be tempted\nbeyond myself. O, Bathsheba, keep him away -- yes,\nkeep him away from me.!\"\nFor a moment Boldwood stood so inertly after this\nthat his soul seemed to have been entirely exhaled with\nthe breath of his passionate words. He turned his face\naway, and withdrew, and his form was soon covered over\nby the twilight as his footsteps mixed in with the low\nhiss of the leafy trees.\nBathsheba, who had been standing motionless as a\nmodel all this latter time, flung her hands to her face,\nand wildly attempted to ponder on the exhibition which\nhad just passed away. Such astounding wells of fevered\nfeeling in a still man like Mr. Boldwood were incompre+\nhensible, dreadful. Instead of being a man trained to\nrepression he was -- what she had seen him.\nThe force of the farmer's threats lay in their relation to a\ncircumstance known at present only to herself: her lover was\ncoming back to Weatherby in the course of the very next\nday or two. Troy had not returned to his distant barracks as\nBoldwood and others supposed, but had merely gone to visit\n<P 264>\nsome acquaintance in Bath, and had yet a wek or more\nremaining to his furlough.\n She felt wretchedly certain that if he revisited her just at\nthis nick of time, and came into contact with Boldwood,a\nfierce quarrel would be the consequence. She panted with\nsolicitude when she thought of possible injury to Troy. The\nleast spark would kindle the farmer's swift feelings of rage\nand jealousy; he would lose his self-mastery as he had this\nevening; Troy's blitheness might become aggressive; it might\ntake the direction of derision, and Boldwood's anger might\nthen take the direction of revenge.\n With almost a morbid dread of being thought a gushing\ngirl, this guideless woman too well concealed from the world\nunder a manner of carelessness the warm depths of her strong\nemotions. But now there was no reserve. In fer\n \nher distraction,instead of advancing further she\nwalked up and down,beating\nthe air with her fingers,pressing on her brow, and sobbing\nbrokenly to herself. Then she sat down on a heap of stones by\nthe wayside to think. There she remained long. Above the\ndark margin of the earth appeared foreshores and promontor+\nies of coppery cloud,bounding a green and pellucid expanse\nin the western sky. Amaranthine glosses came over them then,\nand the unresting world wheeled her round to a contrasting\nprospect eastward, in the shape of indecisive and palpitating\nstars. She gazed upon their silent throes amid the shades of\nspace, but realised none at all. Her troubled spirit was far\naway with Troy.\n<C xxxii>\n<P 265>\nNIGHT -- HORSES TRAMPING\nTHE village of Weatherbury was quiet as the graveyard\nin its midst, and the living were lying welinigh as still\nas the dead. The church clock struck eleven. The\nair was so empty of other sounds that the whirr of the\nclock-work immediately before the strokes was distinct,\nand so was also the click of the same at their close.\nThe notes flew forth with the usual blind obtuseness\nof inanimate things -- flapping and rebounding among\nwalls, undulating against the scattered clouds, spreading\nthrough their interstices into unexplored miles of space.\nBathsheba's crannied and mouldy halls were to-night\noccupied only by Maryann, Liddy being, as was stated,\nwith her sister, whom Bathsheba had set out to visit.\nA few minutes after eleven had struck, Maryann turned\nin her bed with a sense of being disturbed. She was\ntotally unconscious of the nature of the interruption to\nher sleep. It led to a dream, and the dream to an\nawakening, with an uneasy sensation that something\nhad happened. She left her bed and looked out of\nthe window. The paddock abutted on this end of the\nbuilding, and in the paddock she could just discern by\nthe uncertain gray a moving figure approaching the\nhorse that was feeding there. The figure seized the\nhorse by the forelock, and led it to the corner of the\nfield. Here she could see some object which circum+\nstances proved to be a vehicle for after a few minutes\nthe horse down the road, mingled with the sound of\nlight wheels.\nTwo varieties only of humanity could have entered\nthe paddock with the ghostiike glide of that mysterious\nfigure. They were a woman and a gipsy man. A woman\nwas out of the question in such an occupation at this\nhour, and the comer could be no less than a thief, who\nmight probably have known the weakness of the house+\nhold on this particular night, and have\n<P 266>\nchosen it on\nthat account for his daring attempt. Moreover, to\nraise suspicion to conviction itself, there were gipsies in !\nWeatherbury Bottom.\nMaryann, who had been afraid to shout in the robber's\npresence, having seen him depart had no fear. She\nhastily slipped on her clothes, stumped down the dis+\njointed staircase with its hundred creaks, ran to Coggan's,\nthe nearest house, and raised an alarm. Coggan called\nGabriel, who now again lodged in his house as at first,\nand together they went to the paddock. Beyond all\ndoubt the horse was gone.\n\" Hark .! ' said Gabriel.\nThey listened. Distinct upon the stagnant air came\nthe sounds of a trotting horse passing up Longpuddle\nLane -- just beyond the gipsies' encampment in Weather+\nbury Bottom.\n\" That's our Dainty-i'll swear to her step,' said Jan.\n\" Mighty me ! Won't mis'ess storm and call us stupids\nwen she comes back ! ' moaned Maryann. \"How I\nwish it had happened when she was at home, and none\nof us had been answerable .! '\n\" We must ride after,' said Gabriel, decisively.\nbe responsible to Miss Everdene for what we do. Yes,\nwe'll follow. '\n\" Faith, I don't see how,' said Coggan. \" All our\nhorses are too heavy for that trick except little Poppet,\nand what's she between two of us?-if we only had that\n\" pair over the hedge we might do something.'\n'Which pair ? '\n'Mr Boldwood's Tidy and Moll.'\n\" Then wait here till I come hither again,' said Gabriel.\nHe ran down the hill towards Farmer Boldwood's.\n\" Farmer Boldwood is not at home,' said Maryann.\n\",All the better,' said Coggan. \"I know what he's\ngone for.'\nLess than five minutes brought up Oak again, running\nat the same pace, with two halters dangling from his hand,\n\"Where did you find 'em ?\" said Coggan, turning\nround and leaping upon the hedge without waiting for\nan answer.\n\"Under the eaves. I knew where they were kept,'\nsaid Gabriel, following him. \"Coggan, you can ride\nbare-backed ? there's no time to look for saddles.'\n<P 267>\n\" Like a hero .! ' said Jan.\n'Maryann, you go to hed,' Gabriel shouted to her\nfrom the top of the hedge.\nSpringing down into Boldwood's pastures, each\npocketed his halter to hide it from the horses, who,\nseeing the men empty-handed, docilely allowed them+\nselves to he seized by the mane, when the halters\nwere dexterously slipped on. Having neither bit nor\nbridle, Oak and Coggan extemporized the former by\npassing the rope in each case through the animal's\nmouth and looping it on the other side. Oak vaulted\nastride, and Coggan clambered up by aid of the hank,\nwhen they ascended to the gate and galloped off in the\ndirection taken by Bathsheha's horse and the robber.\nWhose vehicle the horse had been harnessed to was a\nmatter of some uncertainty.\nWeatherbury Bottom was reached in three or four\nminutes. They scanned the shady green patch by the\nroadside. The gipsies were gone.\n\"The villains .! ' said Gabriel. 'Which way have they\ngone, I wonder ? '\n'Straight on, as sure as God made little apples,'\nsaid Jan.\n\" Very well; we are better mounted, and must over+\ndiscovered. The road-metal grew softer and more\nrain had wetted its surface to a somewhat plastic, but\nnot muddy state. They came to cross-roads. Coggan\nsuddenly pulled up Moll and slipped off.\n\" What\"s the matter ? ' said Gabriel.\n\"We must try to track 'em, since we can't hear 'em,'\nsaid Jan, fumbling in his pockets. He struck a light,\nand held the match to the ground. The rain had been\nheavier here, and all foot and horse tracks made previous\nto the storm had been abraded and blurred by the drops,\nand they were now so many little scoops of water, which\nreflected the flame of the match like eyes. One set of\ntracks was fresh and had no water in them; one pair of\nruts was also empty, and not small canals, like the cthers.\nThe footprints forming this recent impression were full\n<P 268>\nof information as to pace ; they were in equidistant pairs,\nthree or four feet apart, the right and left foot of each\npair being exactly opposite one another.\n\"Straight on !. ' Jan exclaimed. \"Tracks like that\nmean a stiff gallop. No wonder we don't hear him.\nAnd the horse is harnessed-iook at the ruts. Ay,\n'How do you know ?'\n\"Old Jimmy Harris only shoed her last week, and\nI'd swear to his make among ten thousand.'\n\"The rest of the gipsies must ha\" gone on earlier,\nor some other way,' said Oak. \" 'You saw there were\nno other tracks ? '\n\"True.' They rode along silently for a long weary\ntime. Coggan carried an old pinchbeck repeater which\nhe had inherited from some genius in his family; and\nit now struck one. He lighted another match, and ex+\namined the ground again.\n\"'Tis a canter now,' he said, throwing away the light.\n'A twisty', rickety pace for a gig. The fact is, they over+\ndrove her at starting ; we shall catch \"em yet.'\nAgain they hastened on, and entered Blackmore\nVale. Coggan's watch struck one. When they looked\nagain the hoof-marks were so spaced as to form a sort\nof zigzag if united, like the lamps along a street.\n\" That's a trot, I know,' said Gabriel.\n\"Only a trot now,' said Coggan, cheerfully. \"We\nshall overtake him in time.'\nThey pushed rapidly on for yet two or three miles.\n\"Ah .! a moment,' said Jan. 'Let's see how she was\ndriven up this hill. \"Twill help us,' A light was\npromptly struck upon his gaiters as before, and the ex+\namination made,\n\" Hurrah .! ' said Coggan. \"She walked up here --\nand well she might. We shall get them in two miles,\nfor a crown.'\nThey rode three, and listened. No sound was to be\nheard save a milipond trickling hoarsely through a\nhatch, and suggesting gloomy possibilities of drowning\nby juraping in. Gabriel dismounted when they came\nto a turning. The tracks were ahsolutely the only guide\nas to the direction that they now had, and great caution\nwas necessary to avoid confusing them\n<P 269>\nwith some others\nwhich had made their appearance lately.\n\"What does this mean ? -- though I guess,' said\nGabriel, looking up at Coggan as he moved the match\nover the ground about the turning. Coggan, who, no\nless than the panting horses, had latterly shown signs\nof weariness, again scrutinized the mystic characters.\nThis time only three were of the regular horseshoe\nshape. Every fourth was a dot.\nHORSES TRAMPING\nHe screwed up his face and emitted a long\n\" whew-w-w !. '\n\" Lame,' said Oak.\n\" Yes Dainty is lamed ; the near-foot-afore,' said\nCoggan slowly staring still at the footprints.\n\" We'll push on,' said Gabriel, remounting his humid\nsteed.\nAlthough the road along its greater part had been as\ngood as any turnpike-road in the country, it was nomin+\nally only a byway. The last turning had brought them\ninto the high road leading to Bath. Coggan recollected\nhimself.\n\"We shall have him now ! ' he exclaimed.\n\" Where ? \"\n' Sherton Turnpike. The keeper of that gate is the\nsleepiest man between here and London -- Dan Randall.\nthat's his name -- knowed en for years, when he was at\nCasterbridge gate. Between the lameness and the gate\n'tis a done job.'\nwas said until, against a shady background of foliage,\nfive white bars were visible, crossing their route a little\nway ahead.\n\" Hush -- we are almost close !. ' said Gabriel.\n\"Amble on upon the grass,' said Coggan.\nThe white bars were blotted out in the midst by a\ndark shape in front of them. The silence of this lonely\ntime was pierced by an exclamation from that quarter.\n\" Hoy-a-hoy ! Gate .! '\nIt appeared that there had been a previous call which\nthey had not noticed, for on their close approach the\ndoor of the turnpike-house opened, and the keeper\ncame out half-dressed, with a candle in his hand. The\nrays illumined the whole group.\n\" Keep the gate close .! ' shouted Gabriel. \" He has\nstolen the horse !. '\n<P 270>\n\" Who ? ' said the turnpike-man.\nGabriel looked at the driver of the gig, and saw a\nwoman -- Bathsheba, his mistress.\nOn hearing his voice she had turned her face away\nfrom the light. Coggan had, however, caught sight of\nher in the meanwhile.\n\"Why, 'tis mistress-i'll take my oath .! ' he said,\namazed.\nBathsheba it certainly was, and she had by this time\ndone the trick she could do so well in crises not of love,\nnamely, mask a surprise by coolness of manner.\n' Well, Gabriel,' she inquired quietly, ' where are you\ngoing ? '\n' We thought --  -- ' began Gabriel.\nBath,' she said, taking for her own\nuse the assurance that Gahriel lacked. 'An important\nmatter made it necessary for me to give up my visit to\nliddy, and go off at once. What, then, were you\nfollowing me ?'\n' We thought the horse was stole.'\n\" Weli-what a thing .! How very foolish of you not\nto know that I had taken the trap and horse. I could\nneither wake Maryann nor get into the house, though\nI hammered for ten minutes against her window-sill.\nFortunately, I could get the key of the coach-house, so\nI troubled no one further. Didn't you think it might\nbe me?\"\n' Why should we, miss ? '\n\" Perhaps not Why, those are never Farmer Bold+\nwood's horses .! Goodness mercy .! what have you been\n\" doing bringing trouble upon me in this way? What.!\nmustn't a lady move an inch from her door without being\ndogged like a thief?'\n'But how was we to know, if you left no account of\nyour doings ? ' expostulated Coggan, \"and ladies don't\n\" drive at these hours, miss, as a jineral rule of society.'\n\"I did leave an account -- and you would have seen\nit in the morning. I wrote in chalk on the coach-house\ndoors that I had come back for the horse and gig, and\ndriven off; that I could arouse nobody, and should\nreturn soon.'\n\" But you'll consider, ma'am, that we couldn't see\nthat till it got daylight.'\n'True,' she said, and though vexed at first she had\ntoo much\n<P 271>\nsense to blame them long or seriously for a\ndevotion to her that was as valuable as it was rare.\nShe added with a very pretty grace, ' Well, I really thank\nyou heartily for taking all this trouble; but I wish you\nhad borrowed anybody's horses but Mr. Boldwood's.'\n'Dainty is lame, miss,' said Coggan. 'Can ye go\non?'\n'lt was only a stone in her shoe. I got down and\npulled it out a hundred yards back. I can manage\nvery well, thank you. I shall be in Bath by daylight.\nWill you now return, please?'\nShe turned her head -- the gateman's candle\nshimmering upon her quick, clear eyes as she did so --\npassed through the gate, and was soon wrapped in the\nembowering shades of mysterious summer boughs.\nCoggan and Gabriel put about their horses, and, fanned\nby the velvety air of this July night, retraced the road\nby which they had come.\n'A strange vagary, this of hers, isn't it, Oak?' said\nCoggan, curiously.\n'Yes,' said Gabriel, shortly.\n'She won't be in Bath by no daylight!.'\n'Coggan, suppose we keep this night's work as quiet\nas we can?'\n'I am of one and the same mind.'\n'Very well. We shall be home by three o'clock or\nso, and can creep into the parish like lambs.'\nBathsheba's perturbed meditations by the roadside\nhad ultimately evolved a conclusion that there were only\ntwo remedies for the present desperate state of affairs.\nThe first was merely to keep Troy away from Weather+\nbury till Boldwood's indignation had cooled; the second\nto listen to Oak's entreaties, and Boldwood's denuncia+\ntions, and give up Troy altogether.\nAlas! Could she give up this new love -- induce\nhim to renounce her by saying she did not like him --\ncould no more speak to him, and beg him, for her good,\nto end his furlough in Bath, and see her and Weather'\nbury no niore?\nIt was a picture full of misery, but for a while she\ncontemplated it firmly, allowing herself, nevertheless,\nas girls will, to\n<P 272>\ndwell upon the happy life she would\nhave enjoyed had Troy been Boldwood, and the path\nof love the path of duty -- inflicting upon herself gratuit+\nous tortures by imagining him the lover of another\nwoman after forgetting her; for she had penetrated\nTroy's nature so far as to estimate his tendencies pretty\naccurately, hut unfortunately loved him no less in\nthinking that he might soon cease to love her -- indeed,\nconsiderably more.\nShe jumped to her feet. She would see him at once.\nYes, she would implore him by word of mouth to assist\nher in this dilemma. A letter to keep him away could\nnot reach him in time, even if he should be disposed to\nlisten to it.\nWas Bathsheba altogether blind to the obvious fact\nthat the support of a lover's arms is not of a kind best\ncalculated to assist a resolve to renounce him? Or was\nshe sophistically sensible, with a thrill of pleasure, that\nby adopting this course for getting rid of him she was\nensuring a meeting with him, at any rate, once more?\nIt was now dark, and the hour must have been nearly\nten. The only way to accomplish her purpose was to\ngive up her idea of visiting Liddy at Yalbury, return to\nWeatherbury Farm, put the horse into the gig, and drive\nat once to Bath. The scheme seemed at first impossible :\nthe journey was a fearfully heavy one, even for a strong\nhorse, at her own estimate; and she much underrated\nthe distance. It was most venturesome for a woman,\nat night, and alone.\nBut could she go on to Liddy's and leave things to\ntake their course? No, no; anything but that. Bath+\nsheba was full of a stimulating turbulence, beside which\ncaution vainly' prayed for a hearing. she turned back\ntowards the village.\nHer walk was slow, for she wished not to enter\nWeatherbury till the cottagers were in bed, and, par+\nticularly, till Boldwood was secure. Her plan was now\nto drive to Bath during the night, see Sergeant 'Troy in\nthe morning before he set out to come to her, bid him\nfarewell, and dismiss him: then to rest the horse\nthoroughly (herself to weep the while, she thought),\nstarting early the next morning on her return journey.\nBy this arrangement she could trot Dainty gently all\nthe day, reach\n<P 273>\nLiddy at Yalbury in the evening, and\ncome home to Weatherbury with her whenever they\nchose -- so nobody would know she had been to Bath\nat all.\nSuch was Bathsheba's scheme. But in her topo+\ngraphical ignorance as a late comer to the place, slie\nmisreckoned the distance of her journey as not much\nmore than half what it really was. Her idea, however,\nshe proceeded to carry out, with what initial success we\nhave already seen.\n<C xxxiii>\n<P 274>\nIN THE SUN -- A HARBINGER\nA WEEK passed, and there were no tidings of Bath+\nsheba; nor was there any explanation of her Gilpin's\nrig.\nThen a note came for Maryann, stating that the\nbusiness which had called her mistress to Bath still\ndetained her there; but that she hoped to return\nin the course of another week.\nAnother week passed. The oat-harvest began, and\nall the men were a-field under a monochromatic Lammas\nsky, amid the trembling air and short shadows of noon.\nIndoors nothing was to be heard save the droning of\nblue-bottle flies; out-of-doors the whetting of scythes\nand the hiss of tressy oat-ears rubbing together as their\nperpendicular stalks of amber-yellow fell heavily to each\nswath. Every drop of moisture not in the men's bottles\nand flagons in the form of cider was raining as perspira+\ntion from their foreheads and cheeks. Drought was\neverywhere else.\nThey were about to withdraw for a while into the\ncharitable shade of a tree in the fence, when Coggan\nsaw a figure in a blue coat and brass buttons running\nto them across the field.\n'I wonder who that is?' he said.\n'I hope nothing is wrong about mistress,' said\nMaryann, who with some other women was tying the\nbundles (oats being always sheafed on this farm), 'but\nan unlucky token came to me indoors this morning.\nl went to unlock the door and dropped the key, and it\nfell upon the stone floor and broke into two pieces.\nBreaking a key is a dreadful bodement. I wish mis'ess\nwas home.'\n''Tis Cain Ball,' said Gabriel, pausing from whetting\nhis reaphook.\nOak was not bound by his agreement to assist in the\ncorn-field; but the harvest month is an anxious time for\n<P 275>\na farmer, and the corn was Bathsheba's, so he lent a\nhand.\n'He's dressed up in his best clothes,' said Matthew\nMoon. 'He hev been away from home for a few days,\nsince he's had that felon upon his finger; for 'a said,\nsince I can't work I'll have a hollerday.'\n  'A good time for one -- a\" excellent time,' said Joseph\nPoorgrass, straightening his back; for he, like some of\nthe others, had a way of resting a while from his labour\non such hot days for reasons preternaturally small; of\nwhich Cain Pall's advent on a week-day in his Sunday+\nclothes was one of the first magnitude. ''Twas a bad leg\nallowed me to read the Pilgrim's Progress, and Mark\nClark learnt AliFours in a whitlow.'\n'Ay, and my father put his arm out of joint to have\ntime to go courting,' said Jan Coggan, in an eclipsing\ntone, wiping his face with his shirt-sleeve and thrusting\nback his hat upon the nape of his neck.\nBy this time Cainy was nearing the group of harvesters,\nand was perceived to be carrying a large slice of bread\nand ham in one hand, from which he took mouthfuls\nas he ran, the other being wrapped in a bandage.\nWhen he came close, his mouth assumed the bell shape,\nand he began to cough violently.\n   'Now, Cainy!.' said Gabriel, sternly.  'How many\nmore times must I tell you to keep from running so fast\nwhen you be eating? You'll choke yourself some day,\nthat's what you'll do, Cain Ball.'\n 'Hok-hok-hok.!  'replied Cain. 'A crumb of my\nvictuals went the wrong way -- hok-hok!, That's what\n'tis, Mister Oak.! And I've been visiting to Bath\nbecause I had a felon on my thumb; yes, and l've\nseen -- ahok-hok!'\nDirectly Cain mentioned Bath, they all threw down\ntheir hooks and forks and drew round him. Un+\nfortunately the erratic crumb did not improve his\nnarrative powers, and a supplementary hindrance was\nthat of a sneeze, jerking from his pocket his rather large\nwatch, which dangled in front of the young man\npendulum-wise.\n<P 276>\n 'Yes,' he continued, directing his thoughts to Bath\nand letting his eyes follow, 'l've seed the world at last\n -- yes -- and I've seed our mis'ess -- ahok-hok-hok ! '\n' Bother the boy! ' said Gabriel. ' Something is\nalways going the wrong way down your throat, so that\nyou can't tell what's necessary to be told.'\n\"Ahok !. there ! Please, Mister Oak, a gnat have\njust fleed into my stomach and brought the cough on\nagain !. '\n'Yes, that's just it. Your mouth is always open, you\nyoung rascal .! '\n''Tis terrible bad to have a gnat fly down yer throat,\npore boy !. ' said Matthew Moon.\n' Well, at Bath you saw --  -- ' prompted Gabriel.\n'I saw our mistress,' continued the junior shepherd,\n'and a sojer, walking along. And bymeby they got\ncloser and closer, and then they went arm-in-crook, like\ncourting complete -- hok-hok ! like courting complete --\nhok .! -- courting complete --  -- \" Losing the thread of his\nnarrative at this point simultaneously with his loss of\nbreath, their informant looked up and down the field\napparently for some clue to it. 'Well, I see our mis'ess\nand a soldier -- a-ha-a-wk .! '\nA HARBlNGER\n!Damn the boy !' said Gabriel.\n!'Tis only my manner, Mister Oak, if ye'll excuse it,'\nsaid Cain Ball, looking reproachfully at Oak, with eyes\ndrenched in their own dew.\n!Here's some cider for him -- that'll cure his throat,'\nsaid Jan Coggan, lifting a flagon of cider, pulling out\nthe cork, and applying the hole to Cainy's mouth;\nJoseph Poorgrass in the meantime beginning to think\napprehensively of the serious consequences that would\nfollow Cainy Ball's strangulation in his cough, and the\nhistory of his Bath adventures dying with him.\n\"For my poor self, I always say \"please God ' afore\nI do anything,' said Joseph, in an unboastful voice ; \" and\nso should you, Cain Ball. \"Tis a great safeguard, and\nmight perhaps save you from being choked to death\nsome day.'\nMr. Coggan poured the liquor with unstinted liber+\nality at the suffering Cain's circular mouth; half of it\nrunning down the\n<P 277>\nside of the flagon, and half of what\nreached his mouth running down outside his throat,\nand half of what ran in going the wrong way, and being\ncoughed and sneezed around the persons of the gathered\nreapers in the form of a cider fog, which for a moment\nhung in the sunny air like a small exhalation.\n\"There's a great clumsy sneeze ! Why can't ye have\nbetter manners, you young dog ! ' said Coggan, with+\ndrawing the flagon.\n\"The cider went up my nose ! ' cried Cainy, as soon\nas he could speak; \"and now 'tis gone down my neck,\nand into my poor dumb felon, and over my shiny\nbuttons and all my best cloze ! '\n\"The poor lad's cough is terrible onfortunate,' said\nMatthew Moon. 'And a great history on hand, too.\nBump his back, shepherd.'\n\"'Tis my nater,' mourned Cain. \"Mother says I\nalways was so excitable when my feelings were worked\nup to a point!'\n\" True, true,' said Joseph Poorgrass. \"The Balls\nwere always a very excitable family. I knowed the\nboy's grandfather -- a truly nervous and modest man,\neven to genteel refinery. 'Twas blush, blush with him,\nalmost as much as 'tis with me -- not but that 'tis a\nfault in me !'\n\"Not at all, Master Poorgrass,' said Coggan. \" 'Tis\na very noble quality in ye.'\n\"Heh-heh ! well, I wish to noise nothing abroad --\nnothing at all,' murmured Poorgrass, diffidently. \" But\nwe be born to things -- that's true. Yet I would rather\nmy trifle were hid ; though, perhaps, a high nater is a\nlittle high, and at my birth all things were possible to\nmy Maker, and he may have begrudged no gifts....\nBut under your bushel, Joseph ! under your bushel with\n'ee ! A strange desire, neighbours, this desire to hide,\nand no praise due. Yet there is a Sermon on the\nMount with a calendar of the blessed at the head, and\ncertain meek men may be named therein.'\n\"Cainy's grandfather was a very clever man,' said\nMatthew Moon. \"Invented a' apple-tree out of his own\nhead, which is called by his name to this day -- the Early\nBall. You know 'em,\n<P 278>\nJan ? A Quarrenden grafted on\na Tom Putt, and a Rathe-ripe upon top o' that again.\n'Tis trew 'a used to bide about in a public-house wi' a\n'ooman in a way he had no business to by rights, but\nthere -- 'a were a clever man in the sense of the term.'\n\" Now then,' said Gabriel, impatiently, \" what did you\nsee, Cain ? '\n\"I seed our mis'ess go into a sort of a park place,\nwhere there's seats, and shrubs and flowers, arm-in-crook\nwith a sojer,' continued Cainy, firmly, and with a dim\nsense that his words were very effective as regarded\nGabriel's emotions. \"And I think the sojer was\nSergeant Troy. And they sat there together for more\nthan half-an-hour, talking moving things, and she once\nwas crying a'most to death. And when they came out\nher eyes were shining and she was as white as a lily;\nand they looked into one another's faces, as far-gone\nfriendly as a man and woman can be.'\nGabriel's features seemed to get thinner. \" Well,\nwhat did you see besides ? '\n\" Oh, all sorts.\"\n\"White as a lily? You are sure 'twas she?\n\" Yes.\"\n\" Well, what besides ? '\n\"Great glass windows to the shops, and great clouds\nin the sky, full of rain, and old wooden trees in the\ncountry round.'\n\" You stun-poll! What will ye say next?' said\nCoggan.\n\" Let en alone,' interposed Joseph Poorgrass. \"The\nboy's maning is that the sky and the earth in the\nkingdom of Bath is not altogether different from ours\nhere. 'Tis for our good to gain knowledge of strange\ncities, and as such the boy's words should be suffered,\nso to speak it.'\n\" And the people of Bath,' continued Cain, \"never\nneed to light their fires except as a luxury, for the\nwater springs up out of the earth ready boiled for\nuse.'\n\" 'Tis true as the light,' testified Matthew Moon. ' I've\nheard other navigators say the same thing.'\n\" They drink nothing else there,' said Cain, ' and seem\nto enjoy it, to see how they swaller it down.'\n<P 279>\n\"Well, it seems a barbarian practice enough to us,\nbut I daresay the natives think nothing o' it,' said\nMatthew.\n\"And don't victuals spring up as well as drink?'\nasked Coggan, twirling his eye.\n\"No-i own to a blot there in Bath -- a true blot.\nGod didn't proride 'em with victuals as well as (+\nand 'twas a drawback I couldn't get over at all.'\n\" Well, 'tis a curious place, to say the least,' observed\nMoon; \"and it must be a curious people that live\ntherein. '\n\"Miss Everdene and the soldier were walking about\ntogether, you say ? ' said Gabriel, returning to the\ngroup.\n\"Ay, and she wore a beautiful gold-colour silk\ngown, trimmed with black lace, that would have stood\nalone 'ithout legs inside if required. 'Twas a very\nwinsome sight; and her hair was brushed splendid.\nAnd when the sun shone upon the bright gown and his\nred coat -- my ! how handsome they looked. You\ncould see 'em all the length of the street.'\n\" And what then ? ' murmured Gabriel.\n\"And then I went into Griffin's to hae my boots\nhobbed, and then I went to Riggs's batty-cake shop,\nand asked 'em for a penneth of the cheapest and nicest\nstales, that were all but blue-mouldy, but not quite.\nAnd whilst I was chawing 'em down I walked on and\nseed a clock with a face as big as a baking trendle --  -- '\n\"But that's nothing to do with mistress ! '\n\"I'm coming to that, if you'll leave me alone, Mister\nOak ! ' remonstrated Cainy. \"If you excites me,\nperhaps you'll bring on my cough, and then I shan't be\nable to tell ye nothing.'\n\" Yes-iet him tell it his own way,' said Coggan.\nGabriel settled into a despairing attitude of patience,\nand Cainy went on : --\n\"And there were great large houses, and more\npeople all the week long than at Weatherbury club+\nwalking on White Tuesdays. And I went to grand\nchurches and chapels. And how the parson would pray !\nYes; he would kneel down and put up his hands\ntogether, and make the holy gold rings on his fingers\ngleam and twinkle in yer eyes, that he'd earned\nby praying so excellent well ! -- Ah yes, I wish I lived\nthere.'\n<P 280>\n\"Our poor Parson Thirdly can't get no money to\nbuy such rings,' said  Matthew Moon, thoughtfully.\n\"And as good a man as ever walked. I don't believe\npoor Thirdly have a single one, even of humblest tin or\ncopper. Such a great ornament as they'd be to him on\na dull a'ternoon, when he's up in the pulpit lighted by\nthe wax candles ! But 'tis impossible, poor man. Ah,\nto think how unequal things be.'\n\"Perhaps he's made of different stuff than to wear\n'em,' said Gabriel, grimly. ' Well, that's enough of this.\nGo on, Cainy -- quick.'\n' Oh -- and the new style of pa'sons wear moustaches\nand long beards,' continued the illustrious traveller,\n'and look like Moses and Aaron complete, and make\nwe fokes in the congregation feel all over like the\nchildren of Israel.'\n\"A very right feeling -- very,' said Joseph Poorgrass.\n\"And there's two religions going on in the nation\nnow -- High Church and High Chapel. And, thinks I,\nI'll play fair; so I went to High Church in the morning,\nand High Chapel in the afternoon.'\n' A right and proper boy,' said Joseph Poorgrass.\n\"Well, at High Church they pray singing, and worship\nall the colours of the rainbow; and at High Chapel they\npray preaching, and worship drab and whitewash only.\nAnd then-i didn't see no more of Miss Everdene at\nall.'\n'Why didn't you say so afore, then ? ' exclaimed Oak,\nwith much disappointment.\n' Ah,' said Matthew Moon, 'she'll wish her cake\ndough if so be she's over intimate with that man.'\n'She's not over intimate with him,' said Gabriel,\nindignantly.\n'She would know better,' said Coggan. \"Our\nmis'ess has too much sense under they knots of black\nhair to do such a mad thing.'\n\"You see, he's not a coarse, ignorant man, for he\nwas well brought up,' said Matthew, dubiously. \" 'Twas\nonly wildness that made him a soldier, and maids rather\nlike your man of sin.'\n\"Now, Cain Ball,' said Gabriel restlessly, \"can you\nswear in the most\n<P 281>\nawful form that the woman you saw\nwas Miss Everdene ? '\n'Cain Ball, you be no longer a babe and suckling,'\nsaid Joseph in the sepulchral tone the circumstances\ndemanded, \"and you know what taking an oath is.\n'Tis a horrible testament mind ye, which you say and\nseal with your blood-stone, and the prophet Matthew\ntells us that on whomsoever it shall fall it will grind\nhim to powder. Now, before all the work-folk here\nassembled, can you swear to your words as the shep+\nherd asks ye ?'\n\" Please no, Mister Oak ! ' said Cainy, looking from\none to the other with great uneasiness at the spiritual\nmagnitude of the position. \"I don't mind saying 'tis\ntrue, but I don't like to say 'tis damn true, if that's\nwhat you mane.'\n'Cain, Cain, how can you ! ' asked Joseph sternly.\n\"You be asked to swear in a holy manner, and you\nswear like wicked Shimei, the son of Gera, who cursed\nas he came. Young man, fie ! '\n\"No, I don't ! 'Tis you want to squander a pore\nboy's soul, Joseph Poorgrass -- that's what 'tis ! ' said\nCain, beginning to cry. \"All I mane is that in common\ntruth 'twas Miss Everdene and Sergeant Troy, but in\nthe horrible so-help-me truth that ye want to make of\nit perhaps 'twas somebody else ! '\n'There's no getting at the rights of it,' said Gabriel,\nturning to his work.\n\"Cain Ball, you'll come to a bit of bread ! ' groaned\nJoseph Poorgrass.\nThen the reapers' hooks were flourished again, and\nthe old sounds went on. Gabriel, without making any\npretence of being lively, did nothing to show that he\nwas particularly dull. However, Coggan knew pretty\nnearly how the land lay, and when they were in a nook\ntogether he said --\n' Don't take on about her, Gabriel. What difference\ndoes it make whose sweetheart she is, since she can't be\nyours ? '\n\"That's the very thing I say to myself,' said Gabriel.\n\u0000<C xxxiv>\n<P 282>\nHOME AGAIN -- A TRICKSTER\nTHAT same evening at dusk Gabriel was leaning over\nCoggan's garden-gate, taking an up-and-down survey\nbefore retiring to rest.\nA vehicle of some kind was softly creeping along\nthe grassy margin of the lane. From it spread the\ntones of two women talking. The tones were natural\nand not at all suppressed. Oak instantly knew the\nvoices to he those of Bathsheba and Liddy.\nThe carriage came opposite and passed by. It was\nMiss Everdene's gig, and Liddy and her mistress were\nthe only occupants of the seat. Liddy was asking\nquestions about the city of Bath, and her companion\nwas answering them listlessly and unconcernedly. Both\nBathsheba and the horse seemed weary.\nThe exquisite relief of finding that she was here\nagain, safe and sound, overpowered all reflection, and\nOak could only luxuriate in the sense of it. All grave\nreports were forgotten.\nHe lingered and lingered on, till there was no\ndifference between the eastern and western expanses\nof sky, and the timid hares began to limp courageously\nround the dim hillocks. Gabriel might have been\nthere an additional half-hour when a dark form walked\nslowly by. \" Good-night, Gabriel,' the passer said.\nIt was Boldwood. \" Good-night, sir,' said Gabriel.\nBoldwood likewise vanished up the road, and Oak\nshortly afterwards turned indoors to bed.\nFarmer Boldwood went on towards Miss Everdene's\nhouse. He reached the front, and approaching the\nentrance, saw a light in the parlour. The blind was\nnot drawn down, and inside the room was Bathsheba,\nlooking over some papers or letters. Her back was\ntowards Boldwood. He went to the door,\n<P 283>\nknocked,\nand waited with tense muscles and an aching brow.\nBoldwood had not been outside his garden since\nhis meeting with Bathsheba in the road to Yalbury.\nSilent and alone, he had remained in moody medita+\ntion on woman's ways, deeming as essentials of the\nwhole sex the accidents of the single one of their\nnumber he had ever closely beheld. By degrees a\nmore charitable temper had pervaded him, and this\nwas the reason of his sally to-night. He had come to\napologize and beg forgiveness of Bathsheba with some+\nthing like a sense of shame at his violence, having but\njust now learnt that she had returned -- only from a\nvisit to Liddy, as he supposed, the Bath escapade\nbeing quite unknown to him.\nHe inquired for Miss Everdene. Liddy's manner\nwas odd, but he did not notice it. She went in, leaving\nhim standing there, and in her absence the blind of the\nroom containing Bathsheba was pulled down. Bold+\nwood augured ill from that sign. Liddy came out.\n\"My mistress cannot see you, sir,' she said.\nThe farmer instantly went out by the gate. He\nas unforgiven -- that was the issue of it all. He had\nseen her who was to him simultaneously a delight and\na torture, sitting in the room he had shared with her\nas a peculiarly privileged guest only a little earlier in\nhe summer, and she had denied him an entrance\nthere now.\nBoldwood did not hurry homeward. It was ten\no'clock at least, when, walking deliberately through the\nlower part of Weatherbury, he heard the carrier's spring\nvan entering the village. The van ran to and from a\ntown in a northern direction, and it was owned and\ndriven by a Weatherbury man, at the door of whose\nhouse it now pulled up. The lamp fixed to the head\nof the hood illuminated a scarlet and gilded form, who\nwas the first to alight.\n'Ah ! ' said Boldwood to himself, \"come to see her\nagain.'\nTroy entered the carrier's house, which had been\nthe place of his lodging on his last visit to his native\nplace. Boldwood was moved by a sudden determina+\ntion. He hastened home. In ten minutes he was\nback again, and made as if he were going to call upon\nTroy at the carrier's. But as he approached, some\n<P 284>\none opened the door and came out. He heard this\nperson say \" Good-night ' to the inmates, and the voice\nwas Troy's. 'This was strange, coming so immediately\nafter his arrival. Boldwood, however, hastened up\nto him. Troy had what appeared to be a carpet-bag\nin his hand -- the same that he had brought with him.\nIt seemed as if he were going to leave again this very\nnight.\nTroy turned up the hill and quickened his pace.\nBoldwood stepped forward.\n\" Sergeant Troy ? '\n\" Yes-i'm Sergeant Troy.'\n\" Just arrived from up the country, I think ?'\n\" Just arrived from Bath.'\n\" I am William Boldwood.'\n\" Indeed.'\nThe tone in which this word was uttered was all\nthat had been wanted to bring Boldwood to the\npoint.\n\" I wish to speak a word with you,' he said.\n\" What about ? '\n\" About her who lives just ahead there -- and about\na woman you have wronged.'\n\" I wonder at your impertinence,' said Troy, moving\non.\n\" Now look here,' said Boldwood, standing in front\nof him, \" wonder or not, you are going to hold a conver+\nsation with me.'\nTroy heard the dull determination in Boldwood's\nvoice, looked at his stalwart frame, then at the thick\ncudgel he carried in his hand. He remembered it was\npast ten o'clock. It seemed worth while to be civil to\nBoldwood.\n\" Very well, I'll listen with pleasure,' said Troy,\nplacing his bag on the ground, \"only speak low, for\nsomebody or other may overhear us in the farmhouse\nthere.'\n\" Well then -- I know a good deal concerning your\nFanny Robin's attachment to you. I may say, too, that\nI believe I am the only person in the village, excepting\nGabriel Oak, who does know it. You ought to marry\nher.'\n\" I suppose I ought. Indeed, l wish to, but I\ncannot.'\n\" Why ? '\nTroy was about to utter something hastily; he then\nchecked\n<P 285>\nhimself and said, \"I am too poor.' His voice\nwas changed. Previously it had had a deviimay-care\ntone. It was the voice of a trickster now.\nBoldwood's present mood was not critical enough to\nnotice tones. He continued, \"I may as well speak\nplainly; and understand, I don't wish to enter into the\nquestions of right or wrong, woman's honour and shame,\nor to express any opinion on your conduct. I intend a\nbusiness transaction with you.'\n\" I see,' said Troy. \" Suppose we sit down here.'\nAn old tree trunk lay under the hedge immediately\nopposite, and they sat down.\nThe tone in which this word was uttered was all\nTroy heard the dull determination in Boldwood's\nvoice, looked at his stalwart frame, then at the thick\nplainly ; and understand, I don't wish to enter into the\n\" I was engaged to be married to Miss Everdene,'\nsaid Boldwood, \"but you came and --  -- '\n\" Not engaged,' said Troy.\n\" As good as engaged.'\n\" If I had not turned up she might have become en+\ngaged to you.'\n\" Hang might ! '\n\" Would, then.'\n\" If you had not come I should certainly -- yes,\ncertainly -- have been accepted by this time. If you had\nnot seen her you might have been married to Fanny.\nWell, there's too much difference between Miss Ever+\ndene's station and your own for this flirtation with her\never to benefit you by ending in marriage. So all I ask\nis, don't molest her any more. Marry Fanny.\nmake it worth your while.'\n\" How will you ?'\n\" I'll pay you well now, I'll settle a sum of money\nupon her, and I'll see that you don't suffer from poverty\nin the future. I'll put it clearly. Bathsheba is only\nplaying with you: you are too poor for her as I said;\nso give up wasting your time about a great match you'll\nnever make for a moderate and rightful match you may\nmake to-morrow; take up your carpet-bag, turn about,\nleave Weatherbury now, this night, and you shall take\nfifty pounds with you. Fanny shall have fifty to enable\nher to prepare for the wedding, when you have told me\nwhere she is living, and she shall have five hundred\npaid down on her wedding-day.'\n<P 286>\nIn making this statement Boldwood's voice revealed\nonly too clearly a consciousness of the weakness of his\nposition, his aims, and his method. His manner had\nlapsed quite from that of the firm and dignified Bold+\nwood of former times; and such a scheme as he had\nnow engaged in he would have condemned as childishly\nimbecile only a few months ago. We discern a grand\nforce in the lover which helacks whilst a free man; but\nthere is a breadth of vision in the free man which in\nthe lover we vainly seek. Where there is much bias\nthere must be some narrowness, and love, though added\nemotion, is subtracted capacity. Boldwood exemplified\nthis to an abnormal degree: he knew nothing of Fanny\nRobin's circumstances or whereabouts, he knew nothing\nof Troy's possibilities, yet that was what he said.\n\" I like Fanny best,' said Troy; \"and if, as you say,\nMiss Everdene is out of my reach, why I have all to\ngain by accepting your money, and marrying Fan. But\nshe's only a servant.'\n\" Never mind -- do you agree to my arrangement ?'\n\" I do.'\n\" Ah ! ' said Boldwood, in a more elastic voice. \"O,\nTroy, if you like her best, why then did you step in here\nand injure my happiness ? '\n\" I love Fanny best now,' said Troy. \"But\nBathsh --  -- Miss Everdene inflamed me, and displaced\nFanny for a time. It is over now.'\n\" Why should it be over so soon? And why then\ndid you come here again ? '\n\" There are weighty reasons. Fifty pounds at once,\nyou said !'\n\" I did,' said Boldwood, \" and here they are -- fifty\nsovereigns.' He handed Troy a small packet.\n\" You have everything ready -- it seems that you\ncalculated on my accepting them,' said the sergeant,\ntaking the packet.\n\" I thought you might accept them,' said Boldwood.\n\" You've only my word that the programme shall be\nadhered to, whilst I at any rate have fifty pounds.'\n\" l had thought of that, and l have considered that\nif I can't appeal to your honour I can trust to your --\nwell, shrewdness we'll call it -- not to lose five hundred\npounds in prospect, and\n<P 287>\nalso make a bitter enemy of a\nman who is willing to be an extremely useful friend.'\n\" Stop, listen ! ' said Troy in a whisper.\nA light pit-pat was audible upon the road just above\nthem.\n'By George -- 'tis she,' he continued. 'I must go\non and meet her.'\n'She -- who ? '\n'Bathsheba.'\n'Bathsheba -- out alone at this time o' night .! ' said\nBoldwood in amazement, and starting up. ' Why must\nyou meet her ?'\n'She was expecting me to-night -- and I must now\nspeak to her, and wish her good-bye, according to your\nwish. '\n'I don't see the necessity of speaking.'\n'It can do no harm -- and she'll be wandering about\nlooking for me if I don't. You shall hear all I say to her.\nIt will help you in your love-making when I am gone.'\n'Your tone is mocking.'\n'O no. And renaember this, if she does not know\nwhat has become of me, she will think more about me\nthan if I tell her flatly I have come to give her up.'\n'Will you confine your words to that one point ? -- +\nShall I hear every word you say ? '\n'Every word. Now sit still there, and hold my'\ncarpet bag for me, and mark what you hear.'\nThe light footstep came closer, halting occasionally,\nas if the walker listened for a sound. Troy whistled a\ndouble note in a soft, fluty tone.\n'Come to that, is it ! ' murmured Boldwood, uneasily.\n'You promised silence,' said Troy.\n'I promise again.'\nTroy stepped forward.\n'Frank, dearest, is that you ? ' The tones were\nBathsheba's.\n'O God .! ' said Boldwood.\n'Yes,' said Troy to her.\n'How late you are,' she continued, tenderly. 'Did\nyou come by the carrier ? I listened and heard his\nwheels entering the village, but it was some time ago,\nand I had almost given you up, Frank.'\n<P 288>\n'I was sure to come,' said Frank. 'You knew I\nshould, did you not ? '\n'Well, I thought you would,' she said, playfully ;\n'and, Frank, it is so lucky .! There's not a soul in my\nhouse but me to-night. I've packed them all off so\nnobody on earth will know of your visit to your lady's\nbower. Liddy wanted to go to her grandfather's to\ntell him about her holiday, and I said she might stay\nwith them till to-morrow -- when you'll be gone again.'\n'Capital,' said Troy. ' But, dear me, I. had better\ngo back for my bag, because my slippers and brush and\ncomb are in it; you run home whilst I fetch it, and I'll\npromise to be in your parlour in ten minutes.'\n'Yes.' She turned and tripped up the hill again.\nDuring the progress of this dialogue there was a\nnervous twitching of Boldwood's tightly closed lips, and\nhis face became bathed in a clammy dew. He now\nstarted forward towards Troy. Troy turned to him and\ntook up the bag.\n'Shall I tell her I have come to give her up and\ncannot marry her ? ' said the soldier, mockingly.\n'No, no; wait a minute. I want to say more to\nyou -- more to you !. ' said Boldwood, in a hoarse whisper.\n'Now,' said Troy, ' you see my dilemma. Perhaps\nI am a bad man -- the victim of my impulses -- led away\nto do what I ought to leave undone. I can't, however,\nmarry them both. And I have two reasons for- choosing\nFanny. First, I like her best upon the whole, and\nsecond, you make it worth my while.'\nAt the same instant Boldwood sprang upon him, and\nheld him by the neck. Troy felt Boldwood's grasp slowly\ntightening. The move was absolutely unexpected.\n'A moment,' he gasped. 'You are injuring her you\nlove .! '\n'Well, what do you mean ? ' said the farmer.\nGive me breath,' said Troy.\nBoldwood loosened his hand, saying, 'By Heaven,\nI've a mind to kill you .!'\n'And ruin her.'\n'Save her.'\n'Oh, how can she be saved now, unless I marry her ? '\n<P 289>\nBoldwood groaned. He reluctantly released the\nsoldier, and flung him back against the hedge. 'Devil,\nyou torture me .! ' said he.\nTroy rebounded like a ball, and was about to make\na dash at the farmer; but he checked himself, saying\nlightly --\n'It is not worth while to measure my strength with\nyou. Indeed it is a barbarous way of settling a quarrel.\nI shall shortly leave the army because of the same\nconviction. Now after that revelation of how the land\nlies with Bathsheba, 'twould be a mistake to kill me,\nwould it not?'\n''Twould be a mistake to kill you,' repeated Boldwood,\nmechanically, with a bowed head.\n'Better kill yourself.'\n' Far better.'\n'I'm glad you see it.'\n'Troy, make her your wife, and don't act upon what\nI arranged just now. The alternative is dreadful, but\ntake Bathsheba; I give her up .! She must love you\nindeed to sell soul and body to you so utterly as she\nhas done. Wretched woman -- deluded woman -- you\nare, Bathsheba .! '\n'But about Fanny ? '\n'Bathsheba is a woman well to do,' continued Bold+\nwood, in nervous anxiety, 'and, Troy, she will make a\ngood wife ; and, indeed, she is worth your hastening\non your marriage with her .! '\n'But she has a wili-not to say a temper, and I shall\nbe a mere slave to her. I could do anything with poor\nFanny Robin.'\n'Troy,' said Boldwood, imploringly, ' I'll do anything\nfor you, only don't desert her; pray don't desert her,\nTroy.'\n'Which, poor Fanny ? '\n'No ; Bathsheba Everdene. Love her best .! Love\nher tenderly !. How shall I get you to see how advan+\ntageous it will be to you to secure her at once ?'\n'I don't wish to secure her in any new way.'\nBoldwood's arm moved spasmodically towards Troy's\nperson again. He repressed the instinct, and his form\ndrooped as with pain.\nTroy went on --\n<P 290>\n\"I shall soon purchase my discharge, and then --  -- '\n'But I wish you to hasten on this marriage !. It will\nbe better for you both. You love each other, and you\nmust let me help you to do it.'\n'How ? '\n'Why, by settling the five hundred on Bathsheba\ninstead of Fanny, to enable you to marry at once.\nNo ; she wouldn't have it of me. I'll pay it down to\nyou on the wedding-day.'\nTroy paused in secret amazement at Boldwood's\nwild infatuation. He carelessly said, 'And am I to\nhave anything now ? '\n'Yes, if you wish to. But I have not much additional\nmoney with me. I did not expect this; but all I have\nis yours.'\nBoldwood, more like a somnambulist than a wakeful\nman, pulled out the large canvas bag he carried by way\nof a purse, and searched it.\n'I have twenty-one pounds more with me,' he said.\n'Two notes and a sovereign. But before I leave you\nI must have a paper signed --  -- '\n'Pay me the money, and we'll go straight to her\nparlour, and make any arrangement you please to secure\nmy compliance with your wishes. But she must know\nnothing of this cash business.'\n' Nothing, nothing,' said Boldwood, hastily. 'Here\nis the sum, and if you'll come to my house we'll write\nout the agreement for the remainder, and the terms\nalso.'\n' First we'll call upon her.'\n'But why? Come with me to-night, and go with\nme to-morrow to the surrogate's.'\n'But she must be consulted; at any rate informed.'\n'Very well; go on.'\nThey went up the hill to Bathsheba's house. When\nthey stood at the entrance, Troy said, 'Wait here a\nmoment.' Opening the door, he glided inside, leaving\nthe door ajar.\nBoldwood waited. In two minutes a light appeared\nin the passage. Boldwood then saw that the chain\nhad been fastened across the door. Troy appeared\ninside, carrying a bedroom candlestick.\n<P 291>\n'What, did you think I should break in ?' said\nBoldwood, contemptuously.\n'Oh, no; it is merely my humour to secure things.\nWill you read this a moment ? I'll hold the light.'\nTroy handed a folded newspaper through the slit\nbetween door and doorpost, and put the candle close.\n'That's the paragraph,' he said, placing his finger on\na line.\nBoldwood looked and read --\n'MARRIAGES.\n'On the 17th inst., at St. Ambrose's Church, Bath,\nby the Rev. G. Mincing, B.A., Francis Troy, only son\nof the late Edward Troy, Esq., H.D., of Weatherbury,\nand sergeant iith Dragoon Guards, to Bathsheba, only\nsurviving daughter of the late Mr, John Everdene, of\nCasterbridge.'\n'This may be called Fort meeting Feeble, hey,\nBoldwood ?' said Troy. A low gurgle of derisive\nlaughter followed the words.\nThe paper fell from Boldwood's hands. Troy\ncontinued --\n'Fifty pounds to marry Fanny, Good. Twenty-+\none pounds not to marry Fanny, but Bathsheba. Good.\nFinale : already Bathsheba's husband. Now, Boldwood,\nyours is the ridiculous fate which always attends inter+\nference between a man and his wife. And another\nword. Bad as I am, I am not such a villain as to\nmake the marriage or misery of any woman a matter\nof huckster and sale. Fanny has long ago left me.\ndon't know where she is. I have searched everywhere.\nAnother word yet. You say you love Bathsheba ; yet\non the merest apparent evidence you instantly believe\nin her dishonour. A fig for such love !. Now that I've\ntaught you a lesson, take your money back again.'\n'I will not ; I will not !. ' said Boldwood, in a hiss.\n'Anyhow I won't have it,' said Troy, contemptuously.\nHe wrapped the packet of gold in the notes, and threw\nthe whole into the road.\nBoldwood shook his clenched fist at him. 'You\njuggler of Satan .! You black hound .! But I'll punish\nyou yet ; mark me, I'll punish you yet !. '\n<P 292>\nAnother peal of laughter. Troy then closed the\ndoor, and locked himself in.\nThroughout the whole of that night Boldwood's dark\ndowns of Weatherbury like an unhappy Shade in the\nMournful Fields by Acheron.\n<C xxxv>\n<P 293>\nCHAPTER XXXV\nAT AN UPPER WINDOW\nIT was very early the next morning -- a time of sun and\ndew. The confused beginnings of many birds' songs\nspread into the healthy air, and the wan blue of the\nheaven was here and there coated with thin webs of\nincorporeal cloud which were of no efect in obscuring\nday. All the lights in the scene were yellow as to\ncolour, and all the shadows were attenuated as to form.\nThe creeping plants about the old manor-house were\nbowed with rows of heavy water drops, which had upon\nobjects behind them the effect of minute lenses of high\nmagnifying power.\nJust before the clock struck five Gabriel Oak and\nCoggan passed the village cross, and went on together\nto the fields. They were yet barely in view of their\nmistress\"s house, when Oak fancied he saw the opening\nof a casement in one of the upper windows. The two\nmen were at this moment partially screened by an elder\nbush, now beginning to be enriched with black bunches\nof fruit, and they paused before emerging from its\nshade.\nA handsome man leaned idly from the lattice. He\nlooked east and then west, in the manner of one who\nmakes a first morning survey. The man was Sergeant\nTroy. His red jacket was loosely thrown on, but not\nbuttoned, and he had altogether the relaxed bearing of\na soldier taking his ease.\nCoggan spoke first, looking quietly at the window.\n'She has married him ! ' he said.\nGabriel had previously beheld the sight, and he now\nstood with his back turned, making no reply.\n'I fancied we should know something to-day,' con+\ntinued Coggan. 'I heard wheels pass my door just\nafter dark -- you were out somewhere.'He glanced\nround upon Gabriel. 'Good\n<P 294>\nheavens above us, Oak,\nhow white your face is; you look like a corpse !.'\n'Do I?' said Oak, with a faint smile.\n'Lean on the gate: I'll wait a bit.'\n',All right, all right. '\nThey stood by the gate awhile, Gabriel listlessly\nstaring at the ground. His mind sped into the future,\nand saw there enacted in years of leisure the scenes o\nrepentance that would ensue from this work of haste\nThat they were married he had instantly decided. Why\nhad it been so mysteriously managed ? It had become\nknown that she had had a fearful journey to Bath, owing\nto her miscalculating the distance : that the horse had\nbroken down, and that she had been more than two\ndays getting there. It was not Bathsheba's way to do\nthings furtively. With all her faults, she was candour\nitself. Could she have been entrapped ? The union\nwas not only an unutterable grief to him: it amazed\nhim, notwithstanding that he had passed the preceding\nweek in a suspicion that such might be the issue of\nTroy's meeting her away from home. Her quiet return\nwith liddy had to some extent dispersed the dread.\nJust as that imperceptible motion which appears like\nstillness is infinitely divided in its properties from stili\nness itself, so had his hope undistinguishable from\ndespair differed from despair indeed.\nIn a few minutes they moved on again towards the\nhouse. The sergeant still looked from the window.\n'Morning, comrades .! ' he shouted, in a cheery voice,\nwhen they came up.\nCoggan replied to the greeting. ' Bain't ye going to\nanswer the man ?' he then said to Gabriel. 'I'd say\ngood morning -- you needn't spend a hapeth of meaning\nupon it, and yet keep the man civil.'\nGabriel soon decided too that, since the deed was\ndone, to put the best face upon the matter would be the\ngreatest kindness to her he loved.\n'Good morning, Sergeant Troy,' he returned, in a\nghastly voice.\n'A rambling, gloomy house this,' said Troy, smiling.\n<P 295>\n' Why -- they may not be married .! ' suggested Coggan.\n' Perhaps she's not there.'\nGabriel shook his head. The soldier turned a little\ntowards the east, and the sun kindled his scarlet coat\nto an orange glow.\n'But it is a nice old house,' responded Gabriel.\n'Yes-i suppose so; but I feel like new wine in an\nold bottle here. My notion is that sash-windows should\nbe put throughout, and these old wainscoted walls\nbrightened up a bit ; or the oak cleared quite away, and\nthe walls papered.'\n'It would be a pity, I think.'\n'Well, no. A philosopher once said in my hearing\nthat the old builders, who worked when art was a living\nthing, had no respect for the work of builders who went\nbefore them, but pulled down and altered as they\nthought fit; and why shouldn't we ? ''Creation and\npreservation don't do well together,'' says he, ''and a\nmillion of antiquarians can't invent a style.'' My mind\nexactly. I am for niaking this place more modern, that\nwe may be cheerful whilst we can.'\nThe military man turned and surveyed the interior\nof the room, to assist his ideas of improvement in this\ndirection. Gabriel and Coggan began to move on.\n' Oh, Coggan,' said Troy, as if inspired by a recollec+\ntion ' do you know if insanity has ever appeared in Mr.\nBoldwood's family ? '\nJan reflected for a moment.\n'I once heard that an uncle of his was queer in his\nhead, but I don't know the rights o't,' he said.\n'It is of no importance,' said Troy, lightly. 'Well,\nI shall be down in the fields with you some time this\nweek ; but I have a few matters to attend to first. So\ngood-day to you. We shall, of course, keep on just as\nfriendly terms as usual. I'm not a proud man : nobody\nis ever able to say that of Sergeant Troy. However,\nwhat is must be, and here's half-a-crown to drink my\nhealth, men.'\nTroy threw the coin dexterously across the front plot\nand over the fence towards Gabriel, who shunned it in\nits fall, his face turning to an angry red. Coggan\ntwirled his eye, edged\n<P 296>\nforward, and caught the money\nin its ricochet upon the road.\n' very weli-you keep it, Coggan,' said Gabriel with\ndisdain and almost fiercely. 'As for me, I'll do with+\nout gifts from him !'\n'Don't show it too much,' said Coggan, musingly.\n'For if he's married to her, mark my words, he'll buy\nhis discharge and be our master here. Therefore 'tis\nwell to say '' Friend '' outwardly, though you say\n''Troublehouse '' within. '\n' Weli-perhaps it is best to be silent; but I can't\ngo further than that. I can't flatter, and if my place\nhere is only to be kept by smoothing him down, my\nplace must be lost.'\nA horseman, whom they had for some time seen in\nthe distance, now appeared close beside them.\n' There's Mr. Boldwood,' said Oak. ' I wonder what\nTroy meant by his question.'\nCoggan and Oak nodded respectfully to the farmer,\njust checked their paces to discover if they were wanted,\nand finding they were not stood back to let him pass on.\nThe only signs of the terrible sorrow Boldwood had\nbeen combating through the night, and was combating\nnow, were the want of colour in his welidefined face,\nthe enlarged appearance of the veins in his forehead\nand temples, and the sharper lines about his mouth.\nThe horse bore him away, and the very step of the\nanimal seemed significant of dogged despair. Gabriel, for\na minute, rose above his own grief in noticing Boldwood's.\nHe saw the square figure sitting erect upon the horse,\nthe head turned to neither side, the elbows steady by\nthe hips, the brim of the hat level and undisturbed in\nits onward glide, until the keen edges of Boldwood's\nshape sank by degrees over the hill. To one who knew\nthe man and his story there was something more striking\nin this immobility than in a collapse. The clash of\ndiscord between mood and matter here was forced\npainfully home to the heart ; and, as in laughter there are\nmore dreadful phases than in tears, so was there in the\nsteadiness of this agonized man an expression deeper\nthan a cry.\n<C xxxvi>\n<P 297>\nWEALTH IN JEOPARDY -- THE RVEEL\nONE night, at the end of August, when Bathsheba's\nexperiences as a married woman were still new, and\nwhen the weather was yet dry and sultry, a man stood\nmotionless in the stackyard of Weatherbury Upper\nFarm, looking at the moon and sky.\nThe night had a sinister aspect. A heated breeze\nfrom the south slowly fanned the summits of lofty\nobjects, and in the sky dashes of buoyant cloud were\nsailing in a course at right angles to that of another\nstratum, neither of them in the direction of the breeze\nbelow. The moon, as seen through these films, had\na lurid metallic look. The fields were sallow with the\nimpure light, and all were tinged in monochrome, as\nif beheld through stained glass. The same evening\nthe sheep had trailed homeward head to tail, the\nbehaviour of the rooks had heen confused, and the\nhorses had moved with timidity and caution.\nThunder was imminent, and, taking some secondary\nappearances into consideration, it was likely to be\nfollowed by one of the lengthened rains which mark\nthe close of dry weather for the season. Before twelve\nhours had passed a harvest atmosphere would be a\nbygone thing.\nOak gazed with misgiving at eight naked and un'\nprotected ricks, massive and heavy with the rich\nproduce of one-half the farm for that year. He went\non to the barn.\nThis was the night which had been selected by\nSergeant Troy -- ruling now in the room of his wife --\nfor giving the harvest supper and dance. As Oak\napproached the building the sound of violins and a\ntambourine, and the regular jigging of many feet, grew\nmore distinct. He came close to the large doors, one\nof which stood slightly ajar, and looked in.\nThe central space, together with the recess at one\nend, was\n<P 298>\nemptied of all incumbrances, and this area,\ncovering about two-thirds of the whole, was appropriated\nfor the gathering, the remaining end, which was piled\nto the ceiling with oats, being screened off with sail'\ncloth. Tufts and garlands of green foliage decomted\nthe walls, beams, and extemporized chandeliers, and\nimmediately opposite to Oak a rostrum had been\nerected, bearing a table and chairs. Here sat three\nfiddlers, and beside them stood a frantic man with his\nhair on end, perspiration streaming down his cheeks,\nand a tanabourine quivering in his hand.\nThe dance ended, and on the black oak floor in the\nmidst a new row of couples formed for another.\n'Now, ma'am, and no offence I hope, I ask what\ndance you would like next ?' said the first violin.\n'Really, it makes no difference,' said the clear voice\nof Bathsheba, who stood at the inner end of the build+\ning, observing the scene from behind a table covered\nwith cups and viands. Troy was lolling beside her.\n'Then,' said the fiddler, 'I'll venture to name that\nthe right and proper thing is ''The Soldier's Joy'' --\nthere being a gallant soldier married into the farm --\nhey, my sonnies, and gentlemen all ? '\n'It shall be ''The Soldier's Joy,''' exclaimed a\nchorus.\n'Thanks for the compliment,' said the sergeant\nTHE REVEL\ngaily, taking Bathsheba by the hand and leading her\nto the top of the dance. 'For though I have pur+\nchased my discharge from Her Most Gracious Majesty's\nregiment of cavalry the 11th Dragoon Guards, to attend\nto the new duties awaiting me here, I shall continue a\nsoldier in spirit and feeling as long as I live.'\nSo the dance began. As to the merits of 'The\nSoldier's Joy,' there cannot be, and never were, two\nopinions. It has been observed in the musical circles\nof Weatherbury and its vicinity that this melody, at\nthe end of three-quarters of an hour of thunderous\nfooting, still possesses more stimulative properties for\nthe heel and toe than the majority of other dances at\ntheir first opening. 'The Soldier's Joy' has, too, an\nadditional charm, in being so admirably adapted to\nthe tambourine aforesaid -- no mean instrument in the\nhands of a performer\n<P 299>\nwho understands the proper\nconvulsions, spasms, St. vitus's dances, and fearful\nfrenzies necessary when exhibiting its tones in their\nhighest perfection.\nThe immortal tune ended, a fine DD rolling forth\nfrom the bass-viol with the sonorousness of a cannonade,\nand Gabriel delayed his entry no longer. He avoided\nBathsheba, and got as near as possible to the platform,\nwhere Sergeant Troy was now seated, drinking brandy+\nand-water, though the others drank without exception\ncider and ale. Gabriel could not easily thrust himself\nwithin speaking distance of the sergeant, and he sent\na message, asking him to come down for a moment.\n'The sergeant said he could not attend.\n'Will you tell him, then,' said Gabriel, 'that I only\nstepped ath'art to say that a heavy rain is sure to fall\nsoon, and that something should be done to protect\nthe ricks ?'\n'M. Troy says it will not rain,' returned the\nmessenger, 'and he cannot stop to talk to you about\nsuch fidgets.'\nIn Juxtaposition with Troy, Oak had a melancholy\ntendency to look like a candle beside gas, and ill at\nease, he went out again, thinking he would go home ;\nfor, under the circumstances, he had no heart for the\nscene in the barn. At the door he paused for a\nmoment : Troy was speaking.\n'Friends, it is not only the harvest home that we\nare celebrating to-night; but this is also a Wedding\nFeast. A short time ago I had the happiness to lead\nto the altar this lady, your mistress, and not until now\nhave we been able to give any public flourish to the\nevent in Weatherbury. That it may be thoroughly\nwell done, and that every man may go happy to bed,\nI have ordered to be brought here some bottles of\nbrandy and kettles of hot water. A treble-strong\ngoblet will he handed round to each guest.'\nBathsheba put her hand upon his arm, and, with\nupturned pale face, said imploringly, ' No -- don't give\nit to them -- pray don't, Frank .! It will only do them\nharm : they have had enough of everything.'\n'True -- we don't wish for no more, thank ye,' said\none or two.\n'Pooh .! ' said the sergeant contemptuously, and\nraised his\n<P 300>\nvoice as if lighted up by a new idea.\n' Friends,' he said, ' we'll send the women-folk home .!\n'Tis time they were in bed. Then we cockbirds will\nhave a jolly carouse to ourselves .! If any of the men\nshow the white feather, let them look elsewhere for a\nwinter's work.'\nBathsheba indignantly left the barn, followed by\nall the women and children. The musicians, not\nlooking upon themselves as ' company,' slipped quietly\naway to their spring waggon and put in the horse.\nThus Troy and the men on the farm were left sole\noccupants of the place. Oak, not to appear unneces+\nsarily disagreeable, stayed a little while ; then he, too,\narose and quietly took his departure, followed by a\nfriendly oath from the sergeant for not staying to a\nsecond round of grog.\nGabriel proceeded towards his home. In approach+\ning the door, his toe kicked something which felt and\nsounded soft, leathery, and distended, like a boxing+\nglove. It was a large toad humbly travelling across\nthe path. Oak took it up, thinking it might be better\nto kill the creature to save it from pain; but finding\nit uninjured, he placed it again among the grass. He\nknew what this direct message from the Great Mother\nmeant. And soon came another.\nWhen he struck a light indoors there appeared upon\nthe table a thin glistening streak, as if a brush of varnish\nhad been lightly dragged across it. Oak's eyes followed\nthe serpentine sheen to the other side, where it led up\nto a huge brown garden-slug, which had come indoors\nto-night for reasons of its own. It was Nature's second\nway of hinting to him that he was to prepare for foul\nweather.\nOak sat down meditating for nearly an hour.\nDuring this time two black spiders, of the kind common\nin thatched houses, promenaded the ceiling, ultimately\ndropping to the floor. This reminded him that if there\nwas one class of manifestation on this matter that he\nthoroughly understood, it was the instincts of sheep.\nHe left the room, ran across two or three fields towards\nthe flock, got upon a hedge, and looked over among\nthem.\nThey were crowded close together on the other side\naround some\n<P 301>\nfurze bushes, and the first peculiarity ob+\nservable was that, on the sudden appearance of Oak's\nhead over the fence, they did not stir or run away.\nThey had now a terror of something greater than their\nterror of man. But this was not the most noteworthy\nfeature : they were all grouped in such a way that their\ntails, without a single exception, were towards that half\nof the horizon from which the storm threatened. There\nwas an inner circle closely huddled, and outside these\nthey radiated wider apart, the pattern formed by the\nflock as a whole not being unlike a vandyked lace\ncollar, to which the clump of furze-bushes stood in the\nposition of a wearer's neck.\nopinion. He knew now that he was right, and that\nTroy was wrong. Every voice in nature was unanimous\nin bespeaking change. But two distinct translations\nattached to these dumb expressions. Apparently there\nwas to be a thunder-storm, and afterwards a cold con+\ntinuous rain. The creeping things seemed to know all\nabout the later rain, hut little of the interpolated\nthunder-storm ; whilst the sheep knew all about the\nthunder-storm and nothing of the later rain.\nThis complication of weathers being uncommon,\nwas all the more to be feared. Oak returned to the\nstack-yard. All was silent here, and the conical tips of\nthe ricks jutted darkly into the sky. There were five\nwheat-ricks in this yard, and three stacks of barley.\nThe wheat when threshed would average about thirty\nquarters to each stack ; the barley, at least forty. Their\nvalue to Bathsheba, and indeed to anybody, Oak\nmentally estimated by the following simple calcula+\ntion : --\n5 x 30 = 150 quarters= 500fl.\n3 x 40=120 quarters= 250l.\nTotal . . 750l.\nSeven hundred and fifty pounds in the divinest form\nthat money can wear -- that of necessary food for man\nand beast : should the risk be run cf deteriorating this\nbulk of corn to less than half its value, because of the\ninstability of a woman ? 'Never, if I can prevent it.! '\nsaid Gabriel.\n<P 302>\nSuch was the argument that Oak set outwardly before\nhim. But man, even to himself, is a palimpsest, having\nan ostensible writing, and another beneath the lines.\nIt is possible that there was this golden legend under\nthe utilitarian one: 'I will help to my last effort the\nwoman I have loved so dearly.'\nHe went back to the barn to endeavour to obtain\nassistance for covering the ricks that very\n<P 303>\nnight. All\nwas silent within, and he would have passed on in the\nbelief that the party had broken up, had not a dim\nlight, yellow as saffron by contrast with the greenish\nwhiteness outside, streamed through a knot-hole in the\nfolding doors.\nGabriel looked in. An unusual picture met his\neye.\nThe candles suspended among the evergreens had\nburnt down to their sockets, and in some cases the\nleaves tied about them were scorched. Many of the\nlights had quite gone out, others smoked and stank,\ngrease dropping from them upon the floor. Here,\nunder the table, and leaning against forms and chairs\nin every conceivable attitude except the perpendicular, !'\nwere the wretched persons of all the work-folk, the hair\nof their heads at such low levels being suggestive of\nmops and brooms. In the midst of these shone red\nand distinct the figure of Sergeant Troy, leaning back\nin a chair. Coggan was on his back, with his mouth\nopen, huzzing forth snores, as were several others ; the\nunited breathings of the horizonal assemblage forming\na subdued roar like London from a distance. Joseph\nPoorgrass was curled round in the fashion of a hedge+\nhog, apparently in attempts to present the least possible\nportion of his surface to the air; and behind him was\ndimly visible an unimportant remnant of William Smali\nbury. The glasses and cups still stood upon the table,\na water-jug being overturned, from which a small rill,\nafter tracing its course with marvellous precision down\nthe centre of the long table, fell into the neck of the\nunconscious Mark Clark, in a steady, monotonous drip,\nlike the dripping of a stalactite in a cave.\nGabriel glanced hopelessly at the group, which, with\none or two exceptions, composed all the able-bodied\nmen upon the farm. He saw at once that if the ricks\nwere to be saved that night, or even the next morning,\nhe must save them with his own hands.\nA faint ' ting-ting ' resounded from under Coggan's\nwaistcoat. It was Coggan's watch striking the hour of\ntwo.\nOak went to the recumbent form of Matthew Moon,\nwho usually undertook the rough thatching of the home+\nstead, and shook him. The shaking was without effect.\nGabriel shouted in his ear, ' where's your thatching+\nbeetle and rick-stick and spars ? '\n' Under the staddles,' said Moon, mechanically, with\nthe unconscious promptness of a medium.\nGabriel let go his head, and it dropped upon the\nfloor like a bowl. He then went to Susan Tall's\nhusband.\n' where's the key of the granary ? '\nNo answer. The question was repeated, with the\nsame result. To be shouted to at night was evidently\nless of a novelty to Susan Tall's husband than to\nMatthew Moon. Oak flung down Tall's head into the\ncorner again and turned away.\nTo be just, the men were not greatly to blame for\nthis painful and demoralizing termination to the\nevening's entertainment. Sergeant Troy had so strenu+\nously insisted, glass in hand, that drinking should be\nthe bond of their union, that those who wished to refuse\nhardly liked to be so unmannerly under the circum+\nstances. Having from their youth up been entirely un+\naccustomed to any liquor stronger than cider or mild\nale, it was no wonder that they had succumbed, one\nand all, with extraordinary uniformity, after the lapse of\nabout an hour.\nGabriel was greatly depressed. This debauch boded\nill for that wilful and fascinating mistress whom the\nfaithful man even now felt within him as the embodi+\nment of all that was sweet and bright and hopeless.\nHe put out the expiring lights, that the barn might\nnot be endangered, closed the door upon the men in\ntheir deep and oblivious sleep, and went again into the\nlone night. A hot breeze, as if breathed from the\nparted lips of some dragon about to swallow the globe,\nfanned him from the south, while directly opposite in\nthe north rose a grim misshapen body of\n<P 304>\ncloud, in the\nvery teeth of the wind. So unnaturally did it rise that\none could fancy it to be lifted by machinery from below.\nMeanwhile the faint cloudlets had flown back into the\nsouth-east corner of the sky, as if in terror of the large\ncloud, like a young brood gazed in upon by some\nmonster.\nGoing on to the village, Oak flung a small stone\nagainst the window of Laban Tall's bedroom, expecting\nSusan to open it ; but nobody stirred. He went round\nto the back door, which had been left unfastened for\nLaban's entry, and passed in to the foot of the stair+\ncase.\n'Mrs. Tall, I've come for the key of the granary,\nto get at the rick-cloths,' said Oak, in a stentorian\nvoice.\n'Is that you ? ' said Mrs. Susan Tall, half awake.\n' Yes,' said Gabriel.\n'Come along to bed, do, you drawlatching rogue --\nkeeping a body awake like this .'\n'It isn't Laban -- 'tis Gabriel Oak. I want the key\nof the granary.'\n'Gabriel. what in the name of fortune did you\npretend to be Laban for ?'\n' I didn't. I thought you meant --  -- '\n'yes you did !. what do you want here ?'\n'The key of the granary.'\n\"Take it then. 'Tis on the nail. People coming\ndisturbing women at this time of night ought --  -- '\nGabriel took the key, without waiting to hear the\nconclusion of the tirade. Ten minutes later his lonely\nfigure might have been seen dragging four large water+\nproof coverings across the yard, and soon two of these\nheaps of treasure in grain were covered snug -- two cloths\nto each. Two hundred pounds were secured. Three\nwheat-stacks remained open, and there were no more\ncloths. Oak looked under the staddles and found a\nfork. He mounted the third pile of wealth and began\noperating, adopting the plan of sloping the upper\nsheaves one over the other; and, in addition, filling\nthe interstices with the material of some untied sheaves.\nSo far all was well. By this hurried contrivance\nBathsheba's\n<P 305>\nproperty in wheat was safe for at any rate\na week or two, provided always that there was not\nmuch wind.\nNext came the barley. This it was only possible to\nprotect by systematic thatching. Time went on, and\nthe moon vanished not to reappear. It was the\nfarewell of the ambassador previous to war. The\nnight had a haggard look, like a sick thing; and there\ncame finally an utter expiration of air from the whole\nheaven in the form of a slow breeze, which might have\nbeen likened to a death. And now nothing was heard\nin the yard but the dull thuds of the beetle which drove\nin the spars, and the rustle of thatch in the intervals.\nTHE STORM\n<C xxxvii>\n<P 306>\nTHE STORM -- THE TWO TOGETHER\nA LIGHT flapped over the scene, as if reflected from\nphosphorescent wings crossing the sky, and a rumble\nfilled the air. It was the first move of the approaching\nstorm.\nThe second peal was noisy, with comparatively little\nvisible lightning. Gabriel saw a candle shining in Bath+\nsheba's bedroom, and soon a shadow swept to and fro\nupon the blind.\nThen there came a third flash. Manoeuvres of a\nmost extraordinary kind were going on in the vast\nfirmamental hollows overhead. The lightning now was\nthe colour of silver, and gleamed in the heavens like a\nmailed army. Rumbles became rattles. Gabriel from\nhis elevated position could see over the landscape at\nleast half-a-dozen miles in front. Every hedge, bush,\nand tree was distinct as in a line engraving. In a\npaddock in the same direction was a herd of heifers,\nand the forms of these were visible at this moment in\nthe act of galloping about in the wildest and maddest\nconfusion, flinging their heels and tails high into the air,\ntheir heads to earth. A poplar in the immediate fore+\nground was like an ink stroke on burnished tin. Then\nthe picture vanished, leaving the darkness so intense\nthat Gabriel worked entirely by feeling with his hands.\nHe had stuck his ricking-rod, or poniard, as it was\nindifferently called -- a long iron lance, polished by\nhandling -- into the stack, used to support the sheaves\ninstead of the support called a groom used on houses,\nA blue light appeared in the zenith, and in some in+\ndescribable manner flickered down near the top of the\nrod. It was the fourth of the larger flashes. A moment\nlater and there was a smack -- smart, clear, and short,\nGabriel felt his position to be anything but a safe one,\nand he resolved to descend.\nNot a drop of rain had fallen as yet. He wiped his\nweary brow, and looked again at the black forms of\nthe unprotected\n<P 307>\nstacks. Was his life so valuable to\nhim after all? What were his prospects that he\nshould be so chary of running risk, when important\nand urgent labour could not be carried on without\nsuch risk ? He resolved to stick to the stack. How+\never, he took a precaution. Under the staddles was\na long tethering chain, used to prevent the escape of\nerrant horses. This he carried up the ladder, and\nsticking his rod through the clog at one end, allowed\nthe other end of the chain to trail upon the ground\nThe spike attached to it he drove in. Under the\nshadow of this extemporized lightning-conductor he\nfelt himself comparatively safe.\nBefore Oak had laid his hands upon his tools again\nout leapt the fifth flash, with the spring of a serpent\nand the shout of a fiend. It was green as an\nemerald, and the reverberation was stunning. What\nwas this the light revealed to him? In the open\nground before him, as he looked over the ridge of\nthe rick, was a dark and apparently female form.\nCould it be that of the only venturesome woman in\nthe parish -- Bathsheba ? The form moved on a step :\nthen he could see no more.\n\"Is that you, ma'am ? ' said Gabriel to the darkness.\n\"Who is there ?' said the voice of Bathsheba,\nTHE TWO TOGETHER\n\"Gabriel. I am on the rick, thatching.'\n\"O, Gabriel ! -- and are you ? I have come about\nthem. The weather awoke me, and I thought of the\ncorn. I am so distressed about it -- can we save it any+\nhow ? I cannot find my husband. Is he with you ?'\n\"He is not here.'\n\"Do you know where he is ?'\n\"Asleep in the barn.'\n\"He promised that the stacks should be seen to,\nand now they are all neglected ! Can I do anything\nto help ? Liddy is afraid to come out. Fancy finding\nyou here at such an hour ! Surely I can do something ? '\n\"You can bring up some reed-sheaves to me, one by\none, ma'am; if you are not afraid to come up the ladder\nin the dark,' said Gabriel. \"Every moment is precious\nnow, and that would save a good deal of time. It is\nnot very dark when the lightning has been gone a bit.'\n<P 308>\n\"I'll do anything ! ' she said, resolutely. She instantly\ntook a sheaf upon her shoulder, clambered up close to\nhis heels, placed it behind the rod, and descended for\nanother. At her third ascent the rick suddenly brightened\nwith the brazen glare of shining majolica -- every knot\nin every straw was visible. On the slope in front of him\nappeared two human shapes, black as jet. The rick\nlost its sheen -- -the shapes vanished. Gabriel turned his\nhead. It had been the sixth flash which had come from\nthe east behind him, and the two dark forms on the\nslope had been the shadows of himself and Bathsheba.\nThen came the peal. It hardly was credible that\nsuch a heavenly light could be the parent of such a\ndiabolical sound.\n\"How terrible ! ' she exclaimed, and clutched him by\nthe sleeve. Gabriel turned, and steadied her on her\naerial perch by holding her arm. At the same moment,\nwhile he was still reversed in his attitude, there was\nmore light, and he saw, as it were, a copy of the tall\npoplar tree on the hill drawn in black on the wall of\nthe barn. It was the shadow of that tree, thrown across\nby a secondary flash in the west.\nThe next flare came. Bathsheba was on the ground\nnow, shouldering another sheaf, and she bore its dazzle\nwithout flinching -- thunder and ali-and again ascended\nwith the load. There was then a silence everywhere\nfor four or five minutes, and the crunch of the spars,\nas Gabriel hastily drove them in, could again be distinctly\nheard. He thought the crisis of the storm had passed.\nBut there came a burst of light.\n\"Hold on ! ' said Gabriel, taking the sheaf from her\nshoulder, and grasping her arm again.\nHeaven opened then, indeed. The flash was almost\ntoo novel for its inexpressibly dangerous nature to be\nat once realized, and they could only comprehend the\nmagnificence of its beauty. It sprang from east, west,\nnorth, south, and was a perfect dance of death. The\nforms of skeletons appeared in the air, shaped with\nblue fire for bones -- dancing, leaping, striding, racing\naround, and mingling altogether in unparalleled con+\nfusion. With these were intertwined undulating snakes of\ngreen, and behind these was a broad mass of lesser light.\nSimultaneously came from every part of the tumbling\n<P 309>\nsky what may be called a shout ; since, though no shout\never came near it, it was more of the nature of a shout\nthan of anything eise earthly. In the meantime one of\nthe grisly forms had alighted upon the point of Gabriel's\nrod, to run invisibly down it, down the chain, and into\nthe earth. Gabriel was almost blinded, and he could\nfeel Bathsheba's warm arm tremble in his hand -- a\nsensation novel and thrilling enough ; but love, life,\neverything human, seemed small and trifling in such\nclose juxtaposition with an infuriated universe.\nOak had hardly time to gather up these impressions\ninto a thought, and to see how strangely the red feather\nof her hat shone in this light, when the tall tree on the\nhill before mentioned seemed on fire to a white heat,\nand a new one among these terrible voices mingled with\nthe last crash of those preceding. It was a stupefying\nblast, harsh and pitiless, and it fell upon their ears in a\ndead, flat blow, without that reverberation which lends\nthe tones of a drum to more distant thunder. By the\nlustre reflected from every part of the earth and from the\nwide domical scoop above it, he saw that the tree was\nsliced down the whole length of its tall, straight stem, a\nhuge riband of bark being apparently flung off. The\nother portion remained erect, and revealed the bared\nsurface as a strip of white down the front. The\nlightning had struck the tree. A sulphurous smell\nfilled the air; then all was silent, and black as a cave\nin Hinnom.\n\" We had a narrow escape ! ' said Gabriel, hurriedly.\n\" You had better go down.'\nBathsheba said nothing ; but he could distinctly hear\nher rhythmical pants, and the recurrent rustle of the\nsheaf beside her in response to her frightened pulsations.\nShe descended the ladder, and, on second thoughts, he\nfollowed her. The darkness was now impenetrable by\nthe sharpest vision. They both stood still at the\nbottom, side by side. Bathsheba appeared to think\nonly of the weather -- Oak thought only of her just then.\nAt last he said --\n\"The storm seems to have passed now, at any\nrate.'\n\" I think so too,' said Bathsheba. \" Though there\nare multitudes of gleams, look ! '\n<P 310>\nThe sky was now filled with an incessant light,\nfrequent repetition melting into complete continuity, as\nan unbroken sound results from the successive strokes\non a gong.\n\" Nothing serious,' said he. \" I cannot understand\nno rain falling. But Heaven be praised, it is all the\nbetter for us. I am now going up again.'\n\" Gabriel, you are kinder than I deserve ! I will stay\nand help you yet. O, why are not some of the others\nhere ! '\n\" They would have been here if they could,' said Oak,\nin a hesitating way.\n'O, I know it ali-all,' she said, adding slowly :\n\" They are all asleep in the barn, in a drunken sleep, and\nmy husband among them. That's it, is it not ? Don't\nthink I am a timid woman and can't endure things.'\n\"I am not certain,' said Gabriel. 'I will go and see,'\nHe crossed to the barn, leaving her there alone. He\nlooked through the chinks of the door. All was in\ntotal darkness, as he had left it, and there still arose, as\nat the former time, the steady buzz of many snores.\nHe felt a zephyr curling about his cheek, and turned.\nIt was Bathsheba's breath -- she had followed him, and\nwas looking into the same chink.\nHe endeavoured to put off the immediate and pain+\nful subject of their thoughts by remarking gently, \"lf\nyou'll come back again, miss -- ma'am, and hand up a\nfew more; it would save much time.'\nThen Oak went back again, ascended to the top,\nstepped off the ladder for greater expedition, and went\non thatching. She followed, but without a sheaf\n\" Gabriel,' she said, in a strange and impressive voice.\nOak looked up at her. She had not spoken since\nhe left the barn. The soft and continual shimmer of\nthe dying lightning showed a marble face high against\nthe black sky of the opposite quarter. Bathsheba was\nsitting almost on the apex of the stack, her feet gathered\nup beneath her, and resting on the top round of the\nladder.\n\" Yes, mistress,' he said.\n<P 311>\n\"I suppose you thought that when I galloped away\nto Bath that night it was on purpose to be married ?\"\n'I did at last -- not at first,' he answered, somewhat\nsurprised at the abruptness with which this new subject\nwas broached.\n\" And others thought so, too ? '\n\" Yes.'\n\"And you blamed me for it ?'\n\" Weli-a little.'\n\"I thought so. Now, I care a little for your good\nopinion, and I want to explain something-i have\nlonged to do it ever since I returned, and you looked so\ngravely at me. For if I were to die -- and I may die\nsoon -- it would be dreadful that you should always think\nmistakenly of me. Now, listen.'\nGabriel ceased his rustling.\n'I went to Bath that night in the full intention of\nbreaking off my engagement to Mr. Troy. It was owing\nto circumstances which occurred after I got there that\n -- that we were married. Now, do you see the matter\nin a new light?'\n\" I do -- somewhat.'\n\" I must, I suppose, say more, now that I have\nbegun. And perhaps it's no harm, for you are certainly\nunder no delusion that I ever loved you, or that I can\nhave any object in speaking, more than that object I\nhave mentioned. Well, I was alone in a strange city,\nand the horse was lame. And at last I didn't know\nwhat to do. I saw, when it was too late, that scandal\nmight seize hold of me for meeting him alone in that\nway. But I was coming away, when he suddenly said\nhe had that day seen a woman more beautiful than I,\nand that his constancy could not be counted on unless\nI at once became his.... And I was grieved and\ntroubled --  -- ' She cleared her voice, and waited a\nmoment, as if to gather breath. \" And then, between\njealousy and distraction, I married him ! ' she whispered\nwith desperate impetuosity.\nGabriel made no reply.\n\"He was not to blame, for it was perfectly true about\n -- about his seeing somebody else,' she quickly added.\n\"And now I don't wish for a single remark from you\nupon the subject --\n<P 312>\nindeed, I forbid it. I only wanted\nyou to know that misunderstood bit of my history before\na time comes when you could never know it. -- You want\nsome more sheaves ? '\nShe went down the ladder, and the work proceeded.\nGabriel soon perceived a languor in the movements of\nhis mistress up and down, and he said to her, gently as\na mother --\n\"I think you had better go indoors now, you are\ntired. I can finish the rest alone. If the wind does\nnot change the rain is likely to keep off.'\n\"If I am useless I will go,' said Bathsheba, in a\nflagging cadence. 'But O, if your life should be lost !'\n\" You are not useless; but I would rather not tire\nyou longer. You have done well.'\n\"And you better ! ' she said, gratefully. ! Thank you\nfor your devotion, a thousand times, Gabriel ! Good+\nnight-i know you are doing your very best for me.'\nShe diminished in the gloom, and vanished, and he\nheard the latch of the gate fall as she passed through.\nHe worked in a reverie now, musing upon her story, and\nupon the contradictoriness of that feminine heart which\nhad caused her to speak more warmly to him to-night\nthan she ever had done whilst unmarried and free to\nspeak as warmly as she chose.\nHe was disturbed in his meditation by a grating\nnoise from the coach-house. It was the vane on the\nroof turning round, and this change in the wind was the\nsignal for a disastrous rain.\nRAIN\n<C xxxviii>\n<P 313>\nRAIN -- ONE SOLITARY MEETS ANOTHER\nIT was now five o'clock, and the dawn was promising\nto break in hues of drab and ash.\nThe air changed its temperature and stirred itself\nmore vigorously. Cool breezes coursed in transparent\neddies round Oak's face. The wind shifted yet a point\nor two and blew stronger. In ten minutes every wind\nof heaven seemed to be roaming at large. Some of the\nthatching on the wheat-stacks was now whirled fantas+\ntically aloft, and had to be replaced and weighted with\nsome rails that lay near at hand. This done, Oak slaved\naway again at the barley. A huge drop of rain smote\nhis face, the wind snarled round every corner, the trees\nrocked to the bases of their trunks, and the twigs clashed\nin strife. Driving in spars at any point and on any\nsystem, inch by inch he covered more and more safely\nfrom ruin this distracting impersonation of seven hundred\npounds. 'The rain came on in earnest, and Oak soon felt\nthe water to be tracking cold and clammy routes down\nhis back. Ultimately he was reduced welinigh to a\nhomogeneous sop, and the dyes of his clothes trickled\ndown and stood in a pool at the foot of the ladder.\nThe rain stretched obliquely through the dull atmo+\nsphere in liquid spines, unbroken in continuity between\ntheir beginnings in the clouds and their points in him.\nOak suddenly remembered that eight months before\nthis time he had been fighting against fire in the same\nspot as desperately as he was fighting against water\nnow -- and for a futile love of the same woman. As for\nher --  --  But Oak was generous and true, and dis+\nmissed his reflections.\nIt was about seven o'clock in the dark leaden\nmorning when Gabriel came down from the last stack,\nand thankfully exclaimed, \"It is done .! ' He was\n<P 314>\ndrenched, weary, and sad, and yet not so sad as drenched\nand weary, for he was cheered by a sense of success in\na good cause.\nFaint sounds came from the barn, and he looked\nthat way. Figures stepped singly and in pairs through\nthe doors -- all walking awkwardly, and abashed, save\nthe foremost, who wore a red jacket, and advanced\nwith his hands in his pockets, whistling. The others\nshambled after with a conscience-stricken air : the whole\nprocession was not unlike Flaxman's group of the suitors\ntottering on towards the infernal regions under the\nconduct of Mercury. The gnarled shapes passed into\nthe village, Troy, their leader, entering the farmhouse.\nNot a single one of them had turned his face to the\nricks, or apparently bestowed one thought upon their\ncondition.\nSoon Oak too went homeward, by a different route\nfrom theirs. In front of him against the wet glazed\nsurface of the lane he saw a person walking yet more\nslowly than himself under an umbrella. The man\nturned and plainly started; he was Boldwood.\n\" How are you this morning, sir ?' said Oak.\n\"Yes, it is a wet day. -- Oh, I am well, very well, I\nthank you ; quite well.'\n\"I am glad to hear it, sir.'\nBoldwood seemed to awake to the present by degrees.\n\" You look tired and ill, Oak,' he said then, desultorily\nregarding his companion.\n\" I am tired. You look strangely altered, sir.'\n\"I? Not a bit of it : I am well enough. What put\nthat into your head ?'\n\"I thought you didn't look quite so topping as you\nused to, that was all.'\n\" Indeed, then you are mistaken,' said Boldwood,\nshortly. \"Nothing hurts me. My constitution is an\niron one.'\n\"I've been working hard to get our ricks covered,\nand was barely in time. Never had such a struggle in\nmy life.... Yours of course are safe, sir.'\n\" O yes.' Boldwood added, after an interval of\nsilence : \" What did you ask, Oak ? '\n\" Your ricks are all covered before this time ? '\n<P 315>\n\"No.'\n\" At any rate, the large ones upon the stone staddles ?'\n\" They are not.'\n\"Them under the hedge ?'\n\" No. I forgot to tell the thatcher to set about it.'\n\" Nor the little one by the stile ?'\n\"Nor the little one by the stile. I overlooked the\nricks this year.'\n'Then not a tenth of your corn will come to measure,\nsir.'\n\" Possibly not.\n\" Overlooked them,' repeated Gabriel slowly to him+\nself. It is difficult to describe the intensely dramatic\neffect that announcement had upon Oak at such a\nmoment. All the night he had been feeling that the\nneglect he was labouring to repair was abnormal and\nisolated -- the only instance of the kind within the circuit\nof the county. Yet at this very time, within the same\nparish, a greater waste had been going on, uncomplained\nof and disregarded. A few months earlier Boldwood's\nforgetting his husbandry would have been as preposter+\nous an idea as a sailor forgetting he was in a ship. Oak\nwas just thinking that whatever he himself might have\nsuffered from Bathsheba's marriage, here was a man\nwho had suffered more, when Boldwood spoke in a\nchanged voice -- that of one who yearned to make a\nconfidence and relieve his heart by an outpouring.\n\"Oak, you know as well as I that things have gone\nwrong with me lately. I may as well own it. I was\ngoing to get a little settled in life; but in some way my\nplan has come to nothing.'\n\"I thought my mistress would have married you,'\nsaid Gabriel, not knowing enough of the full depths of\nBoldwood's love to keep silence on the farmer's account,\nand determined not to evade discipline by doing so on\nhis own. 'However, it is so sometimes, and nothing\nhappens that we expect,' he added, with the repose of\na man whom misfortune had inured rather than sub+\ndued.\n'I daresay I am a joke about the parish,' said Bold+\nwood, as if the subject came irresistibly to his tongue,\nand with a miserable lightness meant to express his\nindifference.\n<P 316>\n\" O no -- I don't think that.'\n -- But the real truth of the matter is that there was\nnot, as some fancy, any jilting on -- her part. No\nengagement ever existed between me and Miss Ever+\ndene. People say so, but it is untrue: she never\npromised me .! ' Boldwood stood still now and turned\nhis wild face to Oak. 'O, Gabriel,' he continued, \"I\nam weak and foolish, and I don't know what, and I\ncan't fend off my miserable grief ! ... I had some faint\nbelief in the mercy of God till I lost that woman. Yes,\nHe prepared a gourd to shade me, and like the prophet\nI thanked Him and was glad. But the next day He\nprepared a worm to smite the gourd and wither it; and\nI feel it is better to die than to live.!\"\nA silence followed. Boldwood aroused himself from\nthe momentary mood of confidence into which he had\ndrifted, and walked on again, resuming his usual reserve,\n\" No, Gabriel,' he resumed, with a carelessness which\nwas like the smile on the countenance of a skull: \"it\nwas made more of by other people than ever it was by\nus. I do feel a little regret occasionally, but no woman\never had power over me for any length of time. Well,\ngood morning ; I can trust you not to mention to others\nwhat has passed between us two here.'\n<C xxxix>\n<P 317>\nCOMING HOME -- A CRY\nON the turnpke road, between Casterbridge and\nWeatherbury, and about three miles from the former\nwhich pervade the highways of this undulating part of\nSouth Wessex. I returning from market it is usual\nfor the farmers and other gig-gentry to alight at the\nbottom and walk up.\nOne Saturday evening in the month of October\nBathsheba's vehicle was duly creeping up this incline.\nShe was sitting listlessly in the second seat of the gig,\nwhilst walking beside her in farmer's marketing suit\nof unusually fashionable cut was an erect, welimade\nyoung man. Though on foot, he held the reins and\nwhip, and occasionally aimed light cuts at the horse's\near with the end of the lash, as a recreation. This\nman was her husband, formerly Sergeant Troy, who,\nhaving bought his discharge with Bathsheba's money,\nwas gradually transforming himself into a farmer of a\nspirited and very modern school. People of unalter+\nable ideas still insisted upon calling him 'Sergeant'\nwhen they met him, which was in some degree owing\nto his having still retained the welishaped moustache\nof his military days, and the soldierly bearing insepar+\nable from his form and training.\n\"Yes, if it hadn't been for that wretched rain I\nshould have cleared two hundred as easy as looking,\nmy love,' he was saying. \"Don't you see, it altered\nall the chances? To speak like a book I once read,\nwet weather is the narrative, and fine days are the\nepisodes, of our country's history; now, isn't that\ntrue?'\n' But the time of year is come for changeable weather.'\n\"Well, yes. The fact is, these autumn races are the\nruin of everybody. Never did I see such a day as 'twas .!\n'Tis a wild open place, just out of Budmouth, and a\ndrab sea rolled in\n<P 318>\ntowards us like liquid misery. Wind\nand rain -- good Lord !. Dark ? Why, 'twas as black\nas my hat before the last race was run. 'Twas five\no'clock, and you couldn't see the horses till they were\nalmost in, leave alone colours. The ground was as\nheavy as lead, and all judgment from a fellow's experi+\nence went for nothing. Horses, riders, people, were\nall blown about like ships at sea. Three booths were\nblown over, and the wretched folk inside crawled out\nupon their hands and knees; and in the next field\nwere as many as a dozen hats at one time. Aye,\nPimpernel regularly stuck fast, when about sixty yards\noff, and when I saw Policy stepping on, it did knock\nmy heart against the lining of my ribs, I assure you,\nmy love.!'\n\" And you mean, Frank,' said Bathsheba, sadly --\nher voice was painfully lowered from the fulness and\nvivacity of the previous summer -- \"that you have lost\nmore than a hundred pounds in a month by this\ndreadful horse-racing ? O, Frank, it is cruel; it is\nfoolish of you to take away my money so. We shall\nhave to leave the farm; that will be the end of it !.'\n' Humbug about cruel. Now, there 'tis again --\nturn on the waterworks ; that's just like you.'\n\"But you'll promise me not to go to Budmouth\nsecond meeting, won't you ? ' she implored. Bathsheba\nwas at the full depth for tears, but she maintained a\ndry eye.\n\"I don't see why I should; in fact, if it turns out to\nbe a fine day, I was thinking of taking you.'\n\"Never, never.! I'll go a hundred miles the other\nway first. I hate the sound of the very word.!'\n\"But the question of going to see the race or staying\nat home has very little to do with the matter. Bets are\nall booked safely enough before the race begins, you\nmay depend. Whether it is a bad race for me or a\ngood one, will have very little to do with our going\nthere next Monday.'\n\"But you don't mean to say that you have risked\nanything on this one too .! ' she exclaimed, with an\nagonized look.\n\"There now, don't you be a little fool. Wait till you\nare told. Why, Bathsheba, you have lost all the pluck\nand sauciness you formerly had, and upon my life if I\nhad known what a\n<P 319>\nchicken-hearted creature you were\nunder all your boldness, I'd never have-i know what.'\nA flash of indignation might have been seen in\nBathsheba's dark eyes as she looked resolutely ahead\nafter this reply. They moved on without further\nspeech, some early-withered leaves from the trees which\nhooded the road at this spot occasionally spinning\ndownward across their path to the earth.\nA woman appeared on the brow of the hill. The\nridge was in a cutting, so that she was very near the\nhusband and wife before she became visible. Troy had\nturned towards the gig to remount, and whilst putting\nhis foot on the step-the woman passed behind him.\nThough the overshadowing trees and the approach\nof eventide enveloped them in gloom, Bathsheba could\nsee plainly enough to discern the extreme poverty of\nthe woman's garb, and the sadness of her face.\n\"Please, sir, do you know at what time Casterbridge\nUnion-house closes at night ? '\nA CRY\nThe woman said these words to Troy over his\nshoulder.\nTroy started visibly at the sound of the voice; yet\nhe seemed to recover presence of mind sufficient to\nprevent himself from giving way to his impulse to\nsuddenly turn and face her. He said, slowly --\n\" I don't know.\"\nThe woman, on hearing him speak, quickly looked\nup, examined the side of his face, and recognized the\nsoldier under the yeoman's garb. Her face was drawn\ninto an expression which had gladness and agony both\namong its elements. She uttered an hysterical cry,\nand fell down.\n\" O, poor thing.!' exclaimed Bathsheba, instantly\npreparing to alight.\n\"Stay where you are, and attend to the horse!'\nsaid Troy, peremptorily throwing her the reins and\nthe whip. \"Walk the horse to the top: I'll see to\nthe woman.'\n\" But i -- -'\n\" Do you hear? Clk -- Poppet.!'\n<P 320>\nThe horse, gig, and Bathsheba moved on.\n\"How on earth did you come here? I thought\nyou were miles away, or dead.! Why didn't you\nwrite to me?' said Troy to the woman, in a strangely\ngentle, yet hurried voice, as he lifted her up.\n\" I feared to.\"\n'Have you any money?'\n\"None.\"\n\"Good Heaven -- I wish I had more to give you!.\nHere's  --  wretched  --  the merest trifle. It is every\nfarthing I have left. I have none but what my wife\ngives me, you know, and I can't ask her now.'\nThe woman made no answer.\n\"I have only another moment,' continued Troy;\n'and now listen. Where are you going to-night?\nCasterbridge Union?'\n\"Yes; I thought to go there.'\n\" You shan't go there; yet, wait. Yes, perhaps for\nto-night ; I can do nothing better -- worse luck.! Sleep\nthere to-night, and stay there to-morrow. Monday is\nthe first free day I have; and on Monday morning,\nat ten exactly, meet me on Grey's Bridge just out of the\ntown. I'll bring all the money I can muster. You\nshan't want-i'll see that, Fanny; then I'll get you a\nlodging somewhere. Good-bye till then. I am a brute\n -- but good-bye.!'\nAfter advancing the distance which completed the\nascent of the hill, Bathsheba turned her head. The\nwoman was upon her feet, and Bathsheba saw her\nwithdrawing from Troy, and going feebly down the\nhill by the third milestone from Casterbridge. Troy\nthen came on towards his wife, stepped into the gig,\ntook the reins from her hand, and without making any\nobservation whipped the horse into a trot. He was\nrather agitated.\n\"Do you know who that woman was?' said Bath+\nsheba, looking searchingly into his face.\n\"I do,' he said, looking boldly back into hers.\n\"I thought you did,' said she, with angry hauteur,\nand still regarding him. \" Who is she?'\n<P 321>\nHe suddenly seemed to think that frankness would\nbenefit neither of the women.\n'Nothing to either of us,' he said. \"I know her\nby sight.\"\n'What is her name?'\n\"How should I know her name ?'\n\"I think you do.'\n\"Think if you will, and be --  -- \" The sentence was\ncompleted by a smart cut of the whip round Poppet's\nflank, which caused the animal to start forward at a\nwild pace. No more was said.\nON CASTERBRIDGE HIGHWAY\n<C xl>\n<P 322>\nFOR a considerable time the woman walked on. Her\nsteps became feebler, and she strained her eyes to look\nafar upon the naked road, now indistinct amid the\npenumbrae of night. At length her onward walk\ndwindled to the merest totter, and she opened a gate\nwithin which was a haystack. Underneath this she sat\ndown and presently slept.\nWhen the woman awoke it was to find herself in the\ndepths of a moonless and starless night. A heavy un+\nbroken crust of cloud stretched across the sky, shutting\nout every speck of heaven ; and a distant halo which\nhung over the town of Casterbridge was visible against\nthe black concave, the luminosity appearing the\nbrighter by its great contrast with the circumscribing\ndarkness. Towards this weak, soft glow the woman\nturned her eyes.\n\"If I could only get there.!' she said. \"Meet him\nthe day after to-morrow: God help me! Perhaps I\nshall be in my grave before then.'\nA manor-house clock from the far depths of shadow\nstruck the hour, one, in a small, attenuated tone. After\nmidnight the voice of a clock seems to lose in breadth\nas much as in length, and to diminish its sonorousness\nto a thin falsetto.\nAfterwards a light -- two lights -- arose frona the re+\nmote shade, and grew larger. A carriage rolled along\nthe toad, and passed the gate. It probably contained\nsome late diners-out. The beams from one lamp shone\nfor a moment upon the crouching woman, and threw\nher face into vivid relieff. The face was young in the\ngroundwork, old in the finish ; the general contours\nwere flexuous and childlike, but the finer lineaments\nhad begun to be sharp and thin.\nThe pedestrian stood up, apparently with revived\ndetermination, and looked around. The road appeared\nto be\n<P 323>\nfamiliar to her, and she carefully scanned the fence\nas she slowly walked along. Presently there became\nvisible a dim white shape; it was another milestone.\nShe drew her fingers across its face to feel the marks.\n\"Two more!' she said.\nShe leant against the stone as a means of rest for a\n short interval, then bestirred herself, and again pursued\nher way. For a slight distance she bore up bravely,\nafterwards flagging as before. This was beside a lone\ncopsewood, wherein heaps of white chips strewn upon\nthe leafy ground showed that woodmen had been\nfaggoting and making hurdles during the day. Now\nthere was not a rustle, not a breeze, not the faintest\nclash of twigs to keep her company. The woman\nlooked over the gat, opened it, and went in. Close\nto the entrance stood a row of faggots, bound and un+\nbound, together with stakes of all sizes.\nFor a few seconds the wayfarer stood with that tense\nstillness which signifies itself to be not the end but\nmerely the suspension, of a previous motion. Her\nattitude was that of a person who listens, either to the\nexternal world of sound, or to the imagined discourse of\nthought. A close criticism might have detected signs\nproving that she was intent on the latter alternative.\nMoreover, as was shown by what followed, she was\noddly exercising the faculty of invention upon the spe+\nciality of the clever Jacquet Droz, the designer of auto+\nmatic substitutes for human limbs.\nBy the aid of the Casterbridge aurora, and by feeling\nwith her hands, the woman selected two sticks from the\nheaps. These sticks were nearly straight to the height\nof three or four feet, where each branched into a fork\nlike the letter Y. She sat down, snapped off the small\nupper twigs, and carried the remainder with her into\nthe road. She placed one of these forks under each\narm as a crutch, tested them, timidly threw her whole\nweight upon them -- so little that it was -- and swung\nherself forward. The girl had made for herself a\nmaterial aid.\nThe crutches answered well. The pat of her feet,\nand the tap of her sticks upon the highway, were all the\nsounds that\n<P 324>\ncame from the traveller now. She had\npassed the last milestone by a good long distance, and\nbegan to look wistfully towards the bank as if calculating\nupon another milestone soon. The crutches, though\nso very useful, had their limits of power. Mechanism\nonly transfers labour, being powerless to supersede it,\nand the original amount of exertion was not cleared\naway; it was thrown into the body and arms. She was\nexhausted, and each swing forward became fainter. At\nlast she swayed sideways, and fell.\nHere she lay, a shapeless heap, for ten minutes and\nmore. The morning wind began to boom dully over\nthe flats, and to move afresh dead leaves which had\nlain still since yesterday. The woman desperately\nturned round upon her knees, and next rose to her\nfeet. Steadying herself by the help of one crutch, she\nessayed a step, then another, then a third, using the\ncrutches now as walking-sticks only. Thus she pro+\ngressed till descending Mellstock Hill another milestone\nappeared, and soon the beginning of an iron-railed fence\ncame into view. She staggered across to the first post,\nclung to it, and looked around.\nThe Casterbridge lights were now individually visible,\nIt was getting towards morning, and vehicles might be\nhoped for, if not expected soon. She listened. There\nwas not a sound of life save that acme and sublimation\nof all dismal sounds, the hark of a fox, its three hollow\nnotes being rendered at intervals of a minute with the\nprecision of a funeral bell.\nLess than a mile.!' the woman murmured. \"No;\nmore,' she added, after a pause. 'The mile is to the\ncounty hall, and my resting-place is on the other side\nCasterbridge. A little over a mile, and there I am! '\nAfter an interval she again spoke. \"Five or six steps to\na yard -- six perhaps. I have to go seventeen hundred\nyards. A hundred times six, six hundred. Seventeen\ntimes that. O pity me, Lord.!'\nHolding to the rails, she advanced, thrusting one\nhand forward upon the rail, then the other, then leaning\nover it whilst she dragged her feet on beneath.\nThis woman was not given to soliloquy; but ex,\ntremity of feeling lessens the individuality of the weak,\nas it increases\n<P 325>\nthat of the strong. She said again in the\nsame tone, \"I'll believe that the end lies five posts for+\nward, and no further, and so get strength to pass them.'\nThis was a practical application of the principle that\na half-feigned and fictitious faith is better than no faith\nat all.\nShe passed five posts and held on to the fifth.\n\"I'll pass five more by believing my longed-for spot\nis at the next fifth. I can do it.'\nshe passed five more.\n\"It lies only five further.'\nshe passed five more.\n\"But it is five further.'\nShe passed them.\n'That stone bridge is the end of my journey,' she\nsaid, when the bridge over the Froom was in view.\nShe crawled to the bridge. During the effort each\nbreath of the woman went into the air as if never to\nreturn again.\n\"Now for the truth of the matter,' she said, sitting\ndown. \"The truth is, that I have less than half a mile.'\nSelf-beguilement with what she had known all the time\nto be false had given her strength to come over half\na mile that she would have been powerless to face in\nthe lump. The artifice showed that the woman, by\nsome mysterious intuition, had grasped the paradoxical\ntruth that blindness may operate more vigorously than\nprescience, and the short-sighted effect more than the\nfar-seeing ; that limitation, and not comprehensiveness,\nis needed for striking a blow.\nThe half-mile stood now before the sick and weary\nwoman like a stolid Juggernaut. It was an impassive\nKing of her world. The road here ran across Durnover\nMoor, open to the road on either side. She surveyed\nthe wide space, the lights, herself, sighed, and lay down\nagainst a guard-stone of the bridge.\nNever was ingenuity exercised so sorely as the\ntraveller here exercised hers. Every conceivable aid,\nm&thod, stratagem, mechanism, by which these last\ndesperate eight hundred yards could be overpasscd by a\nhuman being unperceived, was revolved in her busy\nbrain, and dismissed as impracticable. She thought of\n<P 326>\nsticks, wheels, crawling -- she even thought of rolling.\nBut the exertion demanded by either of these latter two\nwas greater than to walk erect. The faculty of con+\ntrivance was worn out, Hopelessness had come at\nlast.\n\" No further.!' she whispered, and closed her eyes.\nFrom the stripe of shadow on the opposite side of\nthe bridge a portion of shade seemed to detach itself\nand move into isolation upon the pale white of the road.\nIt glided noiselessly towards the recumbent woman.\nShe became conscious of something touching her\nhand; it was softness and it was warmth. She\nopened her eye's, and the substance touched her face.\nA dog was licking her cheek.\nHe was huge, heavy, and quiet creature, standing\ndarkly against the low horizon, and at least two feet\nhigher than the present position of her eyes. Whether\nNewfoundland, mastiff, bloodhound, or what not, it was\nimpossible to say. He seemed to be of too strange and\nmysterious a nature to belong to any variety among those\nof popular nomenclature. Being thus assignable to no\nbreed, he was the ideal embodiment of canine greatness\n -- a generalization from what was common to all. Night,\nin its sad, solemn, and benevolent aspect, apart from its\nstealthy and cruel side, was personified in this form\nDarkness endows the small and ordinary ones among\nmankind with poetical power, and even the suffering\nwoman threw her idea nto figure.\nIn her reclining position she looked up to him just\nas in earlier times she had, when standing, looked up\nto a man. The animal, who was as homeless as she,\nrespectfully withdrew a step or two when the woman\nmoved, and, seeing that she did not repulse him, he\nlicked her hand again.\nA thought moved within her like lightning. \"Perhaps\nI can make use of him-i might do it then!'\nShe pointed in the direction of Casterbridge, and\nthe dog seemed to misunderstand : he trotted on. Then,\nfinding she could not follow, he came back and whined.\nThe ultimate and saddest singularity of woman's effort\nand invention was reached when, with a quickened breath+\ning, she rose to a stooping posture, and, resting her two\nlittle arms\n<P 327>\nupon the shoulders of the dog, leant firmly\nthereon, and murmured stimulating words. Whilst she\nsorrowed in her heart she cheered with her voice, and\nwhat was stranger than that the strong should need\nencouragement from the weak was that cheerfulness\nshould be so well stimulated by such utter dejection.\nHer friend moved forward slowly, and she with small\nmincing steps moved forward beside him, half her\nweight being thrown upon the animal. Sometimes\nshe sank as she had sunk from walking erect, from\nthe crutches, from the rails. The dog, who now\nthoroughly understood her desire and her incapacity,\nwas frantic in his distress on these occasions ; he would\ntug at her dress and run forward. She always called\nhim back, and it was now to be observed that the\nwoman listened for human sounds only to avoid them.\nIt was evident that she had an object in keeping her\npresence on the road and her forlorn state unknown.\nTheir progress was necessarily very slow. They\nreached the bottom of the town, and the Casterbridge\nlamps lay before them like fallen Pleiads as they turned\nto the left into the dense shade of a deserted avenue of\nchestnuts, and so skirted the borough. Thus the town\nwas passed, and the goal was reached.\nOn this much-desired spot outside the town rose a\npicturesque building. Originally it had been a mere\ncase to hold people. The shell had been so thin, so\ndevoid of excrescence, and so closely drawn over the\naccommodation granted, that the grim character of\nwhat was beneath showed through it, as the shape of\na body is visible under a winding-sheet.\nThen Nature, as if offended, lent a hand. Masses\nof ivy grew up, completely covering the walls, till the\nplace looked like an abbey; and it was discovered that\nthe view from the front, over the Casterbridge chimneys,\nwas one of the most magnificent in the county. A\nneighbouring earl once said that he would give up a\nyear's rental to have at his own door the view enjoyed\nby the inmates from theirs -- and very probably the\ninmates would have given up the view for his year's\nrental.\nThis stone edifice consisted of a central mass and\n<P 328>\ntwo wings, whereon stood as sentinels a few slim\nchimneys, now gurgling sorrowfully to the slow wind.\nIn the wall was a gate, and by the gate a belipull\nformed of a hanging wire. The woman raised herself\nas high as possible upon her knees, and could just\nreach the handle. She moved it and fell forwards in\na bowed attitude, her face upon her bosom.\nIt was getting on towards six o'clock, and sounds of\nmovement were to be heard inside the building which\nwas the haven of rest to this wearied soul. A little door\nby the large one was opened, and a man appeared inside.\nHe discerned the panting heap of clothes, went back\nfor a light, and came again. He entered a second\ntime, and returned with two women.\nThese lifted the prostrate figure and assisted her in\nthrough the doorway. The man then closed the door.\nHow did she get here ?\" said one of the women.\n\"The Lord knows,' said the other.\nThere is a dog outside,\" murmured the overcome\ntraveller. \" Where is he gone ? He helped me.'\nI stoned him away,' said the man.\nThe little procession then moved forward -- the man\nin front bearing the light, the two bony women next,\nsupporting between them the small and supple one.\nThus they entered the house and disappeared.\nSUSPICION\n<C xli>\n<P 329>\nSUSPICION -- FANNY IS SENT FOR\nBATHSHEBA said very little to her husband all that\nevening of their return from market, and he was not\ndisposed to say much to her. He exhibited the un+\npleasant combination of a restless condition with a\nsilent tongue. The next day, which was Sunday, passed\nnearly in the same manner as regarded their taciturnity,\nBathsheba going to church both morning and afternoon.\nThis was the day before the Budmouth races. In the\nevening Troy said, suddenly --\n\" Bathsheba, could you let me have twenty pounds ?\"\nHer countenance instantly sank. ' Twenty pounds ?\nshe said.\n'The fact is, I want it badly.' The anxiety upon\nTroy's face was unusual and very marked. lt was a\nculmination of the mood he had been in all the day.\n\"Ah !. for those races to-morrow.'\nTroy for the moment made no reply. Her mistake\nhad its advantages to a man who shrank from having\nhis mind inspected as he did now. \"Well, suppose I\ndo want it for races ?' he said, at last.\n\"O, Frank.!' Bathsheba replied, and there was such\na volume of entreaty in the words. \"Only such a few\nweeks ago you said that I was far sweeter than all your\nother pleasures put together, and that you would give\nthem all up for me; and now, won't you give up this\none, which is more a worry than a pleasure? Do,\nFrank. Come, let me fascinate you by all I can do\n -- by pretty words and pretty looks, and everything I\ncan think of -- to stay at home. Say yes to your wife --\nsay yes.!'\nThe tenderest and softest phases of Bathsheba's\nnature were prominent now -- advanced impulsively for\nhis acceptance, without any of the disguises and defences\nwhich the wariness of her character when she was cool\ntoo frequently threw\n<P 330>\nover them. Few men could have\nresisted the arch yet dignified entreaty of the beautiful\nface, thrown a little back and sideways in the weli\nknown attitude that expresses more than the words it\naccompanies, and which seems to have heen designed\nfor these special occasions. Had the woman not been\nhis wife, Troy would have succumbed instantly ; as it\nwas, he thought he would not deceive her longer.\n\"The money is not wanted for racing debts at all,'\nhe said.\n\" What is it for ?' she asked. \" You worry me a great\ndeal by these mysterious responsibilities, Frank.\"\nTroy hesitated. He did not now love her enough\nto allow himself to be carried too far by her ways. Yet\nit was necessary to be civil. \"You wrong me by such\na suspicious manner, he said. \" Such strait-waistcoating\nas you treat me to is not becoming in you at so early a\ndate.'\n\"I think that I have a right to grumble a little if I\npay,' she said, with features between a smile and a\npout.\nExactly; and, the former being done, suppose we\nproceed to the latter. Bathsheba, fun is all very well,\nbut don't go too far, or you may have cause to regret\nsomething.'\nShe reddened. \" I do that already,' she said, quickly\n\" What do you regret ? '\nSUSPICION\n\"That my romance has come to an end.'\n\" All romances end at marriage.'\n'I wish you wouldn't talk like that. You grieve me\nto my soul by being smart at my expense.'\n\" You are dull enough at mine. I believe you hate\nme.'\n\" Not you -- only your faults. I do hate them.'\n\"'Twould be much more becoming if you set your+\nself to cure them. Come, let's strike a balance with\nthe twenty pounds, and be friends.'\nShe gave a sigh of resignation. 'I have about that\nsum here for household expenses. If you must have it,\ntake it.'\n\"Very good. Thank you. I expect I shall have\ngone away before you are in to breakfast to-morrow.'\n\"And must you go ? Ah !. there was a time, Frank,\nwhen it would have taken a good many promises to\nother people to drag you away from me. You used to\ncall me darling, then.\n<P 331>\nBut it doesn't matter to you how\nmy days are passed now.'\n\"I must go, in spite of sentiment.' Troy, as he\nspoke, looked at his watch, and, apparently actuated by\n<1non lucendo>1 principles, opened the case at the back,\nrevealing, snugly stowed within it, a small coil of hair.\nBathsheba's eyes had been accidentally lifted at that\nmoment, and she saw the action and saw the hair. She\nflushed in pain and surprise, and some words escaped\nher before she had thought whether or not it was wise\nto utter them. \"A woman's curl of hair !' she said.\n\"O, Frank, whose is that ?'\nTroy had instantly closed his watch. He carelessly\nreplied, as one who cloaked some feelings that the sight\nhad stirred. ' Why, yours, of course. Whose should it\nbe ? I had quite forgotten that I had it.'\n' What a dreadful fib, Frank.!'\n\" I tell you I had forgotten it.!' he said, loudly.\n'I don't mean that -- it was yellow hair.'\n\"Nonsense.'\n\"That's insulting me. I know it was yellow. Now\nwhose was it ? I want to know.'\n\"Very welii'll tell you, so make no more ado. It\nis the hair of a young woman I was going to marry\nbefore I knew you.'\n\" You ought to tell me her name, then.'\n\"I cannot do that.'\n\"Is she married yet?'\n\"No.'\n\"Is she alive?'\n\" Yes.'\n\"Is she pretty ?'\n\" Yes.'\n'It is wonderful how she can be, poor thing, under\nsuch an awful affliction!'\n\" Affliction -- what affliction ? ' he inquired, quickly.\n\" Having hair of that dreadful colour.'\n\" Oh -- ho-i like that.!' said Troy, recovering him+\nself. \"Why, her hair has been admired by everybody\nwho has seen her since she has worn it loose, which has\nnot been long. It is\n<P 332>\nbeautiful hair. People used to\nturn their heads to look at it, poor girl.!'\n\"Pooh! that's nothing -- that's nothing!' she ex+\nclaimed, in incipient accents of pique. 'If I cared for\nyour love as much as I used to I could say people had\nturned to look at mine.'\n\"Bathsheba, don't be so fitful and jealous. You\nknew what married life would be like, and shouldn't\nhave entered it if you feared these contingencies.'\nTroy had by this time driven her to bitterness: her\nheart was big in her throat, and the ducts to her eyes\nwere painfully full. Ashamed as she was to show\nemotion, at last she burst out: --\n\"This is all I get for loving you so well! Ah! when\nI married you your life was dearer to me than my own.\nI would have died for you -- how truly I can say that I\nwould have died for you.! And now you sneer at my\nfoolishness in marrying you. O! is it kind to me to\nthrow my mistake in my face ? Whatever opinion you\nmay have of my wisdom, you should not tell me of it so\nmercilessly, now that I am in your power.'\n\" I can't help how things fall out,' said Troy; \"upon\nmy heart, women will be the death of me.!'\n\"Well you shouldn't keep people's hair. You'll\nburn it, won't you, Frank?'\nFrank went on as if he had not heard her. \"There\nare considerations even before my consideration for you;\nreparations to be made -- ties you know nothing of If\nyou repent of marrying, so do I.'\nTrembling now, she put her hand upon his arm,\nsaying, in mingled tones of wretchedness and coaxing,\n\"I only repent it if you don't love me better than any\nwoman in the world.! I don't otherwise, Frank. You\ndon't repent because you already love somebody better\nthan you love me, do you ?'\n\"I don't know. Why do you say that?'\n\"You won't burn that curl. You like the woman\nwho owns that pretty hair -- yes; it is pretty -- more\nbeautiful than my miserable black mane! Well, it is\nno use; I can't help being ugly. You must like her\nbest, if you will!'\n\"Until to-day, when I took it from a drawer, I have\n<P 333>\nnever looked upon that bit of hair for several months --\nthat I am ready to swear.'\n\"But just now you said \"ties;\" and then -- that\nwoman we met?'\n\"'Twas the meeting with her that reminded me of\nthe hair.'\n\"Is it hers, then ?'\n\"Yes. There, now that you have wormed it out of\nme, I hope you are content.'\n\"And what are the ties ?'\n\"Oh! that meant nothing -- a mere jest.'\n\"A mere jest ! ' she said, in mournful astonishment.\n\"Can you jest when I am so wretchedly in earnest ?\nTell me the truth, Frank. I am not a fool, you know,\nalthough I am a woman, and have my woman's moments.\nCome! treat me fairly,' she said, looking honestly and\nfearlessly into his face. \"I don't want much; bare\njustice -- that's all! Ah! once I felt I could be content\nwith nothing less than the highest homage from the\nhusband I should choose. Now, anything short of\ncruelty will content me. Yes! the independent and\nspirited Bathsheba is come to this.!'\n\"For Heaven's sake don't be so desperate! \"Troy\nsaid, snappishly, rising as he did so, and leaving the\nroom.\nDirectly he had gone, Bathsheba burst into great\nsobs -- dry-eyed sobs, which cut as they came, without\nany softening by tears. But she determined to repress\nall evidences of feeling. She was conquered; but she\nwould never own it as long as she lived. Her pride\nwas indeed brought low by despairing discoveries of her\nspoliation by marriage with a less pure nature than her\nown. She chafed to and fro in rebelliousness, like a\ncaged leopard; her whole soul was in arms, and the\nblood fired her face. Until she had met Troy, Bath+\nsheba had heen proud of her position as a woman; it\nhad been a glory to her to know that her lips had been\ntouched hy no man's on earth -- that her waist had\nnever been encircled by a lover's arm. She hated\nherself now. In those earlier days she had always\nnourished a secret contempt for girls who were the\nslaves of the first goodiooking young fellow who should\nchoose to salute them. She had never taken kindly to\nthe idea of\n<P 334>\nmarriage in the abstract as did the majority\nof women she saw about her. In the turmoil of her\nanxiety for her lover she had agreed to marry him; but\nthe perception that had accompanied her happiest hours\non this account was rather that of self-sacrifice than of\npromotion and honour. Although she scarcely knew\nthe divinity's name, Diana was the goddess whom\nBathsheba instinctively adored. That she had never,\nby look, word, or sign, encouraged a man to approach\nher -- that she had felt herself sufficient to herself, and\nhad in the independence of her girlish heart fancied\nthere was a certain degradation in renouncing the\nsimplicity of a maiden existence to become the humbler\nhalf of an indifferent matrimonial whole -- were facts\nnow bitterly remembered. O, if she had never\nstooped to folly of this kind, respectable as it was, and\ncould only stand again, as she had stood on the hill at\nNorcombe, and dare Troy or any other man to pollute\na hair of her head by his interference!.\nThe next morning she rose earlier than usual, and\nhad the horse saddled for her ride round the farm in\nthe customary way. When she came in at half-past\neight -- their usual hour for breakfasting -- she was in+\nformed that her husband had risen, taken his breakfast,\nand driven off to Casterbridge with the gig and Poppet.\nAfter breakfast she was cool and collected -- quite\nherself in fact -- and she rambled to the gate, intending\nto walk to another quarter of the farm, which she still\npersonally superintended as well as her duties in the\nhouse would permit, continually, however, finding her+\nself preceded in forethought by Gabriel Oak, for whom\nshe began to entertain the genuine friendship of a sister.\nOf course, she sometimes thought of him in the light of\nan old lover, and had momentary imaginings of what\nlife with him as a husband would have been like; also\nof life with Boldwood under the same conditions. But\nBathsheba, though she could feel, was not much given\nto futile dreaming, and her musings under this head\nwere short and entirely confined to the times when\nTroy's neglect was more than ordinarily evident.\nShe saw coming up the road a man like Mr. Boldwood.\n<P 335>\nIt was Mr. Boldwood. Bathsheba blushed painfully,\nand watched. The farmer stopped when still a long\nway off, and held up his hand to Gabriel Oak, who was\nin a footpath across the field. The two men then\napproached each other and seemed to engage in\nearnest conversation.\nThus they continued for a long time. Joseph Poor+\ngrass now passed near them, wheeling a barrow of apples\nup the hill to Bathsheba's residence. Boldwood and\nGabriel called to him, spoke to him for a few minutes,\nand then all three parted, Joseph immediately coming\nup the hill with his barrow.\nBathsheba, who had seen this pantomime with some\nsurprise, experienced great relief when Boldwood turned\nback again. 'Well, what's the message, Joseph ? ' she\nsaid.\nHe set down his barrow, and, putting upon himself\nthe refined aspect that a conversation with a lady re+\nquired, spoke to Bathsheba over the gate.\n\"You'll never see Fanny Robin no more -- use nor\nprincipai-ma'am.'\n\" Why ?'\n\"Because she's dead in the Union.'\n\" Fanny dead -- never.!'\n\" Yes, ma'am.'\n\" What did she die from ?\"\n\"I don't know for certain; but I should be inclined\nto think it was from general neshness of constitution.\nShe was such a limber maid that 'a could stand no\nhardship, even when I knowed her, and 'a went like a\ncandle-snoff, so 'tis said. She was took bad in the\nmorning, and, being quite feeble and worn out, she\ndied in the evening. She belongs by law to our parish;\nand Mr. Boldwood is going to send a waggon at three\nthis afternoon to fetch her home here and bury her.'\n\"Indeed I shall not let Mr. Boldwood do any such\nthing-i shall do it! Fanny was my uncle's servant,\nand, although I only knew her for a couple of days,\nFANNY IS SENT FOR\nshe belongs to me. How very, very sad this is.! --\nthe idea of Fanny being in a workhouse.' Bathsheba\nhad begun to know what suffering was, and she spoke\nwith real feeling.... \"Send across to Mr. Boldwood's,\nand say that Mrs. Troy will take upon herself the duty\n<P 336>\nof fetching an old servant of the family.... We\nought not to put her in a waggon; we'll get a hearse.'\n\" There will hardly be time, ma'am, will there?'\n\" Perhaps not,' she said, musingly. \" When did you\nsay we must be at the door -- three o'clock?'\n\" Three o'clock this afternoon, ma'am, so to speak it.'\n\"Very weli-you go with it. A pretty waggon is\nbetter than an ugly hearse, after all. Joseph, have the\nnew spring waggon with the blue body and red wheels,\nand wash it very clean. And, Joseph --  -- '\n\" Yes, ma'am.'\n' Carry with you some evergreens and flowers to put\nupon her coffin  -- indeed, gather a great many, and\ncompletely bury her in them. Get some boughs of\nlaurustinus, and variegated box, and yew, and boy'siove;\nay, and some hunches of chrysanthemum. And let old\nPleasant draw her, because she knew him so well.'\n'I will, ma'am. I ought to have said that the\nUnion, in the form of four labouring men, will meet me\nwhen I gets to our churchyard gate, and take her and\nbury her according to the rites of the Board of Guardians,\nas by law ordained.'\n\" Dear me -- Casterbridge Union -- and is Fanny come\nto this?' said Bathsheba, musing. \"I wish I had known\nof it sooner. I thought she was far away. How long\nhas she lived there?'\n\"On'y been there a day or two.'\n\"Oh.! -- then she has not been staying there as a\nregular inmate?'\n\" No. She first went to live in a garrison-town t'other\nside o' Wessex, and since then she's been picking up a\nliving at seampstering in Melchester for several months,\nat the house of a very respectable widow-woman who\ntakes in work of that sort. She only got handy the\nUnion-house on Sunday morning 'a b'lieve, and 'tis sup+\nposed here and there that she had traipsed every step\nof the way from Melchester. Why she left her place,\nI can't say, for I don't know; and as to a lie, why, I\nwouldn't tell it. That's the short of the story, ma'am.'\n\"Ah-h .! '\n<P 337>\nNo gem ever flashed from a rosy ray to a white one\nmore rapidly than changed the young wife's counten+\nance whilst this word came from her in a long-drawn\nbreath. \"Did she walk along our turnpike-road?' she\nsaid, in a suddenly restless and eager voice.\n\"I believe she did.... Ma'am, shall I call Liddy?\nYou bain't well, ma'am, surely ? You look like a lily --\nso pale and fainty.!'\n\"No; don't call her; it is nothing. When did she\npass Weatherbury?'\n\"Last Saturday night.'\n\"That will do, Joseph; now you may go.'\n\" Certainly, ma'am.'\n\" Joseph, come hither a moment. What was the\ncolour of Fanny Robin's hair?'\n\"Really, mistress, now that 'tis put to me so judge+\nand-jury like, I can't call to mind, if ye'll believe me.!'\n\"Never mind; go on and do what I told you. Stop\n -- well no, go on.'\nShe turned herself away from him, that he might no\nlonger notice the mood which had set its sign so visibly\nupon her, and went indoors with a distress:ng sense of\nfaintness and a beating brow. About an hour after, she\nheard the noise of the waggon and went out, still with a\npainful consciousness of her bewildered and troubled\nlook. Joseph, dressed in his best suit of clothes, was\nputting in the horse to start. The shrubs and flowers\nwere all piled in the waggon, as she had directed\nBathsheba hardly saw them now.\n\" Whose sweetheart did you say, Joseph?'\n'I don't know, ma'am.'\n\"Are you quite sure?'\n\" Yes, ma'am, quite sure.'\n\"Sure of what?'\n\"I'm sure that all I know is that she arrived in the\nmorning and died in the evening without further parley.\nWhat Oak and Mr. Boldwood told me was only these\nfew words. \"Little Fanny Robin is dead, Joseph,'\nGabriel said, looking in my face in his steady old way.\nI was very sorry, and I said, \"Ah!. -- and how did she\n<P 338>\ncome to die?' \"Well, she's dead in Casterhridge\nUnion,\" he said; \"and perhaps 'tisn't much matter\nabout how she came to die. She reached the Union\nearly Sunday morning, and died in the afternoon -- that's\nclear enough.\" Then I asked what she'd been doing\nlately, and Mr. Boldwood turned round to me then, and\nleft off spitting a thistle with the end of his stick. He\ntold me about her having lived by seampstering in\nMelchester, as I mentioned to you, and that she walked\ntherefrom at the end of last week, passing near here\nSaturday night in the dusk. They then said I had\nbetter just name a hent of her death to you, and away\nthey went. Her death might have been brought on by\nbiding in the night wind, you know, ma'am; for people\nused to say she'd go off in a decline: she used to cough\na good deal in winter time. However, 'tisn't much\nodds to us about that now, for 'tis all over.'\n\"Have you heard a different story at all?' She\nlooked at him so intently that Joseph's eyes quailed.\n\"Not a word, mistress, I assure 'ee.!\" he said.\n\"Hardly anybody in the parish knows the news yet.'\n\"I wonder why Gabriel didn't bring the message to\nme himself. He mostly makes a point of seeing me\nupon the most trifling errand.' These words were\nmerely murmured, and she was looking upon the ground.\n\"Perhaps he was busy, ma'am,' Joseph suggested.\n\"And sometimes he seems to suffer from things upon\nhis mind, connected with the time when he was better\noff than 'a is now. 'A's rather a curious item, but a\nvery understanding shepherd, and learned in books.'\n'Did anything seem upon his mind whilst he was\nspeaking to you about this?'\n'I cannot but say that there did, ma'am. He was\nterrible down, and so was Farmer Boldwood.'\n'Thank you, Joseph. That will do. Go on now,\nor you'll be late.'\nBathsheba, still unhappy, went indoors again. In\nthe course of the afternoon she said to Liddy, Who had\nbeen informed of the occurrence, \" What was the colour\n<P 339>\nof poor Fanny Robin's hair? Do you know? I cannot\nrecollect-i only saw her for a day or two.'\n\"It was light, ma'am; but she wore it rather short,\nand packed away under her cap, so that you would\nhardly notice it. But I have seen her let it down when\nshe was going to bed, and it looked beautiful then.\nReal golden hair.'\n\" Her young man was a soldier, was he not?'\n\"Yes. In the same regiment as Mr. Troy. He says\nhe knew him very well.'\n\" What, Mr. Troy says so? How came he to say\nthat?'\n\"One day I just named it to him, and asked him if\nhe knew Fanny's young man. He said, \"O yes, he\nknew the young man as well as he knew himself, and\nthat there wasn't a man in the regiment he liked\nbetter.\"'\n\"Ah! Said that, did he ?'\n\"Yes; and he said there was a strong likeness be+\ntween himself and the other young man, so that some+\ntimes people mistook them --  -- '\n' Liddy, for Heaven's sake stop your talking.!' said\nBathsheba, with the nervous petulance that comes from\nworrying perceptions.\nJOSEPH AND HIS BURDEN\n<P 340>\n<C xlii>\nJOSEPH AND HIS BURDEN -- BUCK'S HEAD\nA WALL bounded the site of Casterbridge Union+\nhouse, except along a portion of the end. Here a high\ngable stood prominent, and it was covered like the front\nwith a mat of ivy. In this gable was no window,\nchimney, ornament, or protuberance of any kind. The\nsingle feature appertaining to it, beyond the expanse of\ndark green leaves, was a small door.\nThe situation of the door was peculiar. The sill\nwas three or four feet above the ground, and for a\nmoment one was at a loss for an explanation of this\nexceptional altitude, till ruts immediately beneath sug+\ngested that the door was used solely for the passage of\narticles and persons to and from the level of a vehicle\nstanding on the outside. Upon the whole, the door\nseemed to advertise itself as a species of Traitor's Gate\ntranslated to another sphere. That entry and exit\nhereby was only at rare intervals became apparent on\nnoting that tufts of grass were allowed to flourish undis+\nturbed in the chinks of the sill.\nAs the clock over the South-street Alms-house pointed\nto five minutes to three, a blue spring waggon, picked\nout with red, and containing boughs and flowers, passed\nthe end of the street, and up towards this side of the\nbuilding. Whilst the chimes were yet stammering out\na shattered form of \"Malbrook,' Joseph Poorgrass rang\nthe bell, and received directions to back his waggon\nagainst the high door under the gable. The door then\nopened, and a plain elm coffin was slowly thrust forth,\nand laid by two men in fustian along the middle of the\nvehicle.\nOne of the men then stepped up beside it, took from\nhis pocket a lump of chalk, and wrote upon the cover\nthe name and a few other words in a large scrawling\nhand. (We believe that they do these things more\ntenderly now, and provide a\n<P 341>\nplate.) He covered the\nwhole with a black cloth, threadbare, but decent, the\ntaiiboard of the waggon was returned to its place, one\nof the men handed a certificate of registry to Poorgrass,\nand both entered the door, closing it hehind them.\nTheir connection with her, short as it had been, was\nover for ever.\nJoseph then placed the flowers as enjoined, and the\nevergreens around the flowers, till it was difficult to\ndivine what the waggon contained; he smacked his\nwhip, and the rather pleasing funeral car crept down\nthe hill, and along the road to Weatherbury.\nThe afternoon drew on apace, and, looking to the\nright towards the sea as he walked beside the horse, Poor+\ngrass saw strange clouds and scrolls of mist rolling over\nthe long ridges which girt the landscape in that quarter.\nThey came in yet greater volumes, and indolently crept\nacross the intervening valleys, and around the withered\npapery flags of the moor and river brinks. Then their\ndank spongy forms closed in upon the sky. It was\na sudden overgrowth of atmospheric fungi which had\ntheir roots in the neighbouring sea, and by the time\nthat horse, man, and corpse entered Yalbury Great\nWood, these silent workings of an invisible hand had\nreached them, and they were completely enveloped,\nthis being the first arrival of the autumn fogs, and the\nfirst fog of the series.\nThe air was as an eye suddenly struck blind. The\nwaggon and its load rolled no longer on the horizontal\ndivision between clearness and opacity, but were\nimbedded in an elastic body of a monotonous pallor\nthroughout. There was no perceptible motion in the\nair, not a visible drop of water fell upon a leaf of the\nbeeches, birches, and firs composing the wood on either\nside. The trees stood in an attitude of intentness, as if\nthey waited longingly for a wind to come and rock\nthem. A startling quiet overhung all surrounding things\n -- so completely, that the crunching of the waggon+\nwheels was as a great noise, and small rustles, which\nhad never ohtained a hearing except by night, were dis+\ntinctly individualized.\nJoseph Poorgrass looked round upon his sad burden\nas it loomed faintly through the flowering laurustinus,\nthen at the\n<P 342>\nunfathomable gloom amid the high trees on\neach hand, indistinct, shadowless, and spectreiike in\ntheir monochrome of grey. He felt anything but cheer+\nful, and wished he had the company even of a child or\ndog. Stopping the home, he listened. Not a footstep\nor wheel was audible anywhere around, and the dead\nsilence was broken only by a heavy particle falling from\na tree through the evergreens and alighting with a smart\nrap upon the coffin of poor Fanny. The fog had by\nthis time saturated the trees, and this was the first\ndropping of water from the overbrimming leaves. The\nhollow echo of its fall reminded the waggoner painfully\nof the grim Leveller. Then hard by came down another\ndrop, then two or three. Presently there was a continual\ntapping of these heavy drops upon the dead leaves, the\nroad, and the travellers. The nearer boughs were beadcd\nwith the mist to the greyness of aged men, and the rusty+\nred leaves of the beeches were hung with similar drops,\nlike diamonds on auburn hair.\nAt the roadside hamlet called Roy-Town, just beyond\nthis wood, was the old inn Buck's Head. It was about\na mile and a half from Weatherbury, and in the meridian\ntimes of stage-coach travelling had been the place\nwhere many coaches changed and kept their relays\nof horses. All the old stabling was now pulled down,\nand little remained besides the habitable inn itself,\nwhich, standing a little way back from the road, sig+\nnified its existence to people far up and down the\nhighway by a sign hanging from the horizontal bough\nof an elm on the opposite side of the way.\nTravellers  -- for the variety <1tourist>1 had hardly\ndeveloped into a distinct species at this date -- some+\ntimes said in passing, when they cast their eyes up to\nthe sign-bearing tree, that artists were fond of repre+\nsenting the signboard hanging thus, but that they\nthemselves had never before noticed so perfect an\ninstance in actual working order. It was near this tree\nthat the waggon was standing into which Gabriel Oak\ncrept on his first journey to Weatherbury; but, owing\nto the darkness, the sign and the inn had been un+\nobserved.\nThe manners of the inn were of the old-established\n<P 343>\ntype. Indeed, in the minds of its frequenters they\nexisted as unalterable formule : <1e.g.>1 --\nRap with the bottom of your pint for more liquor.\nFor tobacco, shout.\nIn calling for the girl in waiting, say, \"Maid.!'\nDitto for the landlady, 'Old Soul.!' etc., etc.\nIt was a relief to Joseph's heart when the friendly\nsignboard came in view, and, stopping his horse\nimmediately beneath it, he proceeded to fulfil an\nintention made a long time before. His spirits were\noozing out of him quite. He turned the horse's head\nto the green bank, and entered the hostel for a mug\nof ale.\nGoing down into the kitchen of the inn, the floor\nof which was a step below the passage, which in its\nBUCK'S HEAD\nturn was a step below the road outside, what should\nJoseph see to gladden his eyes but two copper-coloured\ndiscs, in the form of the countenances of Mr. Jan\nCoggan and Mr. Mark Clark. These owners of the\ntwo most appreciative throats in the neighbourhood,\nwithin the pale of respectability, were now sitting face\nto face over a threeiegged circular table, having an\niron rim to keep cups and pots from being accidentally\nelbowed off; they might have been said to resemble\nthe setting sun and the full moon shining <1vis-a*-vis>1\nacross the globe.\n\" Why, 'tis neighbour Poorgrass.!' said Mark Clark.\n\"I'm sure your face don't praise your mistress's table,\nJoseph.'\n\"I've had a very pale companion for the last four\nmiles,' said Joseph, indulging in a shudder toned\ndown by resignation. 'And to speak the truth, 'twas\nbeginning to tell upon me. I assure ye, I ha'n't seed\nthe colour of victuals or drink since breakfast time\nthis morning, and that was no more than a dew-bit\nafield.'\n\"Then drink, Joseph, and don't restrain yourself!.'\nsaid Coggan, handing him a hooped mug three+\nquarters full.\nJoseph drank for a moderately long time, then for\na longer time, saying, as he lowered the jug, \"'Tis\npretty drinking -- very\n<P 344>\npretty drinking, and is more\nthan cheerful on my melancholy errand, so to speak it.'\n\"True, drink is a pleasant delight,' said Jan, as one\nwho repeated a truism so familiar to his brain that he\nhardly noticed its passage over his tongue ; and,\nlifting the cup, Coggan tilted his head gradually\nbackwards, with closed eyes, that his expectant soul\nmight not be diverted for one instant from its bliss\nby irrelevant surroundings.\n\"Well, I must be on again,' said Poorgmss. \"Not\nbut that I should like another nip with ye; but the\nparish might lose confidence in me if I was seed\nhere.'\n\" Where be ye trading o't to to-day, then, Joseph ?'\n\"Back to Weatherbury. I've got poor little Fanny\nRobin in my waggon outside, and I must be at the\nchurchyard gates at a quarter to five with her.'\n'Ay-i've heard of it. And so she's nailed up in\nparish boards after all, and nobody to pay the bell\nshilling and the grave half-crown.'\n\"The parish pays the grave half-crown, but not the\nbell shilling, because the bell's a luxery: but 'a can\nhardly do without the grave, poor body. However, I\nexpect our mistress will pay all.'\n\"A pretty maid as ever I see.! But what's yer hurry,\nJoseph ? The pore woman's dead, and you can't bring\nher to life, and you may as well sit down comfortable,\nand finish another with us.'\n\"I don't mind taking just the least thimbleful ye\ncan dream of more with ye, sonnies. But only a few\nminutes, because 'tis as 'tis.'\n\"Of course, you'll have another drop. A man's\ntwice the man afterwards. You feel so warm and\nglorious, and you whop and slap at your work without\nany trouble, and everything goes on like sticks a+\nbreaking. Too much liquor is bad, and leads us to\nthat horned man in the smoky house ; but after all,\nmany people haven't the gift of enjoying a wet, and\nsince we be highly favoured with a power that way,\nwe should make the most o't.'\n\"True,' said Mark Clark. \"'Tis a talent the Lord\n<P 345>\nhas mercifully bestowed upon us, and we ought not\nto neglect it. But, what with the parsons and clerks\nand schooipeople and serious tea-parties, the merry\nold ways of good life have gone to the dogs -- upon\nmy carcase, they have.!'\n\" Well, really, I must be onward again now,' said\nJoseph.\n'Now, now, Joseph; nonsense.! The poor woman\nis dead, isn't she, and what's your hurry?'\n\"Well, I hope Providence won't be in a way with\nme for my doings,' said Joseph, again sitting down.\n'I've been troubled with weak moments lately, 'tis\ntrue. I've been drinky once this month already, and\nI did not go to church a-Sunday, and I dropped a\ncurse or two yesterday; so I don't want to go too far\nfor my safety. Your next world is your next world,\nand not to be squandered offhand.'\n'I believe ye to be a chapeimember, Joseph. That\nI do.'\n'Oh, no, no.! I don't go so far as that.'\n\" For my part,' said Coggan, \"I'm staunch Church\nof England.'\n\" Ay, and faith, so be I,' said Mark Clark.\n\"I won't say much for myself; I don't wish to,'\nCoggan continued, with that tendency to talk on\nprinciples which is characteristic of the barley-corn.\n\"But I've never changed a single doctrine : I've stuck\nlike a plaster to the old faith I was born in. Yes;\nthere's this to be said for the Church, a man can\nbelong to the Church and bide in his cheerful old\ninn, and never trouble or worry his mind about\ndoctrines at all. But to be a meetinger, you must\ngo to chapel in all winds and weathers, and make\nyerself as frantic as a skit. Not but that chapei\nmembers be clever chaps enough in their way. They\ncan lift up beautiful prayers out of their own heads, all\nabout their families and shipwmcks in the newspaper.'\n\"They can -- they can,' said Mark Clark, with cor+\nroborative feeling ; \"but we Churchmen, you see, must\nhave it all printed aforehand, or, dang it all, we should\nno more know what to say to a great gaffer like the\nLord than babes unborn,'\n\" Chapeifolk be more hand-in-glove with them above\nthan we,' said Joseph, thoughtfully.\n\" Yes,' said Coggan. \" We know very well that if\nanybody do go to heaven, they will. They've worked\nhard for it, and they\n<P 346>\ndeserve to have it, such as 'tis.\nI bain't such a fool as to pretend that we who stick\nto the Church have the same chance as they, because\nwe know we have not. But I hate a feller who'll\nchange his old ancient doctrines for the sake of getting\nto heaven. I'd as soon turn king's-evidence for the\nfew pounds you get. Why, neighbours, when every\none of my taties were frosted, our Parson Thirdly\nwere the man who gave me a sack for seed, though\nhe hardly had one for his own use, and no money to\nbuy 'em. If it hadn't been for him, I shouldn't hae\nhad a tatie to put in my garden. D'ye think I'd\nturn after that? No, I'll stick to my side; and if we\nbe in the wrong, so be it : I'll fall with the fallen .! '\n\" Well said -- very well said,' observed Joseph. --\n\" However, folks, I must be moving now: upon my life\nI must. Pa'son Thirdly will be waiting at the church\ngates, and there's the woman a-biding outside in the\nwaggon.'\n\" Joseph Poorgmss, don't be so miserable.! Pa'son\nThirdly won't mind. He's a generous man ; he's found\nme in tracts for years, and I've consumed a good many\nin the course of a long and shady life; but he's never\nbeen the man to cry out at the expense. Sit down.'\nThe longer Joseph Poorgrass remained, the less his\nspirit was troubled by the duties which devolved upon\nhim this afternoon. The minutes glided by uncounted,\nuntil the evening shades began perceptibly to deepen,\nand the eyes of the three were but sparkling points\non the surface of darkness. Coggan's repeater struck\nsix from his pocket in the usual still small tones.\nAt that moment hasty steps were heard in the entry,\nand the door opened to admit the figure of Gabriel Oak,\nfollowed by the maid of the inn bearing a candle. He\nstared sternly at the one lengthy and two round faces\nof the sitters, which confronted him with the expressions\nof a fiddle and a couple of warming-pans. Joseph Poor+\ngrass blinked, and shrank several inches into the back+\nground.\n' Upon my soul, I'm ashamed of you ; 'tis disgraceful,\nJoseph, disgraceful!. \" said Gabriel, indignantly. \" Coggan,\nyou call yourself a man, and don't know better than this.'\n<P 347>\nCoggan looked up indefinitely at Oak, one or other\nof his eyes occasionally opening and closing of its own\naccord, as if it were not a member, but a dozy individual\nwith a distinct personality.\n\" Don't take on so, shepherd!' said Mark Clark,\nlooking reproachfully at the candle, which appeared\nto possess special features of interest for his eyes.\n'Nobody can hurt a dead woman,' at length said\nCoggan, with the precision of a machine. \"All that\ncould be done for her is done -- she's beyond us : and\nwhy should a man put himself in a tearing hurry for\nlifeless clay that can neither feel nor see, and don't\nknow what you do with her at all? If she'd been\nalive, I would have been the first to help her. If she\nnow wanted victuals and drink, I'd pay for it, money\ndown. But she's dead, and no speed of ours will\nbring her to life. The woman's past us -- time spent\nupon her is throwed away: why should we hurry to\ndo what's not required ? Drink, shepherd, and be\nfriends, for to-morrow we may be like her.'\n\" We may,' added Mark Clark, emphatically, at once\ndrinking himself, to run no further risk of losing his\nchance by the event alluded to, Jan meanwhile merging\nhis additional thoughts of to-morrow in a song : --\nTo-mor-row, to-mor-row !\nAnd while peace and plen-ty I find at my board,\nWith a heart free from sick-ness and sor-row,\nWith my friends will I share what to-day may af-ford,\nAnd let them spread the ta-ble to-mor-row.\nTo-mor -- row', to-mor -- +\n\"Do hold thy horning, Jan.!' said Oak; and turning\nupon Poorgrass, \" as for you, Joseph, who do your wicked\ndeeds in such confoundedly holy ways, you are as drunk\nas you can stand.'\n\"No, Shepherd Oak, no! Listen to reason, shepherd.\nAll that's the matter with me is the affliction called a\nmultiplying eye, and that's how it is I look double to\nyou-i mean, you look double to me.'\nA multiplying eye is a very bad thing,' said Mark\nClark.\n<P 348>\nIt always comes on when I have been in a public --\nhouse a little time,' said Joseph Poorgrass, meekly.\n\"Yes; I see two of every sort, as if I were some holy\nman living in the times of King Noah and entering\ninto the ark.... Y-y-y-yes,' he added, becoming much\naffected by the picture of himself as a person thrown\naway, and shedding tears; \"I feel too good for England :\nI ought to have lived in Genesis by rights, like the other\nmen of sacrifice, and then I shouldn't have b-b-been\ncalled a d-d-drunkard in such a way.!'\n\"I wish you'd show yourself a man of spirit, and not\nsit whining there.!'\n\"Show myself a man of spirit ? ... Ah, well! let\nme take the name of drunkard humbly-iet me be a\nman of contrite knees-iet it be .! l know that I always\ndo say \"Please God' afore I do anything, from my\ngetting up to my going down of the same, and I be\nwilling to take as much disgrace as there is in that\nholy act. Hah, yes.! ... But not a man of spirit ?\nHave I ever allowed the toe of pride to be lifted\nagainst my hinder parts without groaning manfully that\nI question the right to do so? I inquire that query\nboldly?'\n\" We can't say that you have, Hero Poorgrass,'\nadmitted Jan.\n\"Never have I allowed such treatment to pass un+\nquestioned!. Yet the shepherd says in the face of that\nrich testimony that I be not a man of spirit! Well,\nlet it pass by, and death is a kind friend !.'\nGabriel, seeing that neither of the three was in a fit\nstate to Cake charge of the waggon for the remainder of\nthe journey, made no reply, but, closing the door again\nupon them, went across to where the vehicle stood, now\ngetting indistinct in the fog and gloom of this mildewy\ntime. He pulled the horse's head from the large patch\nof turf it had eaten bare, readjusted the boughs over\nthe coffin, and drove along through the unwholesome\nnight.\nIt had gradually become rumoured in the village\nthat the body to be brought and buried that day was\nall that was left of the unfortunate Fanny Robin who\nhad followed the Eleventh from Casterbridge through\nMelchester and onwards. But,\n<P 349>\nthanks to Boldwood's\nreticence and Oak's generosity, the lover she had followed\nhad never been individualized as Troy. Gabriel hoped\nthat the whole truth of the matter might not be published\ntill at any rate the girl had been in her grave for a few\ndays, when the interposing barriers of earth and time,\nand a sense that the events had been somewhat shut\ninto oblivion, would deaden the sting that revelation and\ninvidious remark would have for Bathsheba just now.\nBy the time that Gabriel reached the old manor+\nhouse, her residence, which lay in his way to the church,\nit was quite dark. A man came from the gate and said\nthrough the fog, which hung between them like blown\nflour --\n\"Is that Poorgrass with the corpse?'\nGabriel recognized the voice as that of the parson.\n\" The corpse is here, sir,' said Gabriel.\n\"I have just been to inquire of Mrs. Troy if she could\ntell me the reason of the delay. I am afraid it is too\nlate now for the funeral to be performed with proper\ndecency. Have you the registrar's certificate ? '\n\" No,' said Gabriel. \"I expect Poorgrass has that ;\nand he's at the Buck's Head. I forgot to ask him\nfor it.'\n\"Then that settles the matter. We'll put off the\nfuneral till to-morrow morning. The body may be\nbrought on to the church, or it may be left here at\nthe farm and fetched by the bearers in the morning.\nThey waited more than an hour, and have now gone\nhome.'\nGabriel had his reasons for thinking the latter a\nmost objectionable plan, notwithstanding that Fanny\nhad been an inmate of the farm-house for several years\nin the lifetime of Bathsheba's uncle. Visions of several\nunhappy contingencies which might arise from this delay\nflitted before him. But his will was not law, and he\nwent indoors to inquire of his mistress what were her\nwishes on the subject. He found her in an unusual\nmood : her eyes as she looked up to him were suspicious\nand perplexed as with some antecedent thought. Troy\nhad not yet returned. At first Bathsheba assented with\na mien of indifference to his proposition that they should\ngo on to the church at once with their burden; but\nimmediately\n<P 350>\nafterwards, following Gabriel to the gate,\nshe swerved to the extreme of solicitousness on Fanny's\naccount, and desired that the girl might be brought into\nthe house. Oak argued upon the convenience of leaving\nher in the waggon, just as she lay now, with her flowers\nand green leaves about her, merely wheeling the vehicle\ninto the coach-house till the morning, but to no purpose,\n\"It is unkind and unchristian,' she said, 'to leave the\npoor thing in a coach-house all night.'\nVery well, then,' said the parson. \"And I will\narrange that the funeral shall take place early to+\nmorrow. Perhaps Mrs. Troy is right in feeling that we\ncannot treat a dead fellow-creature too thoughtfully\nWe must remember that though she may have erred\ngrievously in leaving her home, she is still our sister :\nand it is to be believed that God's uncovenanted\nmercies are extended towards her, and that she is a\nmember of the flock of Christ.'\nThe parson's words spread into the heavy air with a\nsad yet unperturbed cadence, and Gabriel shed an\nhonest tear. Bathsheba seemed unmoved. Mr.\nThirdly then left them, and Gabriel lighted a lantern.\nFetching three other men to assist him, they bore the\nunconscious truant indoors, placing the coffin on two\nbenches in the middle of a little sitting-room next the\nhall, as Bathsheba directed.\nEvery one except Gabriel Oak then left the room.\nHe still indecisively lingered beside the body. He was\ndeeply troubled at the wretchedly ironical aspect that\ncircumstances were putting on with regard to Troy's\nwife, and at his own powerlessness to counteract them,\n(n spite of his careful manoeuvring all this day, the very\nworst event that could in any way have happened in\nconnection with the burial had happened now. Oak\nimagined a terrible discovery resulting from this after+\nnoon's work that might cast over Bathsheba's life a shade\nwhich the interposition of many lapsing years might but\nindifferently lighten, and which nothing at all might\naltogether remove.\nSuddenly, as in a last attempt to save Bathsheba\nfrom, at any rate, immediate anguish, he looked again,\nas he had looked before, at the chalk writing upon the\n<P 351>\ncoffinlid. The scrawl was this simple one, \" Fanny\nRobin and child.' Gabriel took his handkerchief and\ncarefully rubbed out the two latter words, leaving visible\nthe inscription \" Fanny' Robin ' only. He then left the\nroom, and went out quietly by the front door.\n<C xliii>\n<P 352>\nFANNY'S REVENGE\n! DO you want me any longer ma'am ? \" inquired Liddy,\nat a later hour the same evening, standing by the door\nwith a chamber candlestick in her hand and addressing\nBathsheba, who sat cheerless and alone in the large\nparlour beside the first fire of the season.\n\" No more to-night, Liddy.'\n\"l'll sit up for master if you like, ma'am. I am not\nat all afraid of Fanny, if I may sit in my own room and '\nhave a candle. She was such a childlike, nesh young\nthing that her spirit couldn't appear to anybody if it\ntried, I'm quite sure.'\n\"O no, no! You go to bed. I'll sit up for him\nmyself till twelve o'clock, and if he has not arrived by\nthat time, I shall give him up and go to bed too.'\nIt is half-past ten now.'\n'Oh! is it?'\nWhy don't you sit upstairs, ma'am ? '\n\" Why don't I ? ' said Bathsheba, desultorily. 'It\nisn t worth while -- there's a fire here, Liddy.' She\nsuddenly exclaimed in an impulsive and excited whisper,\nHave you heard anything strange said of Fanny?'\nThe words had no sooner escaped her than an expres+\nsion of unutterable regret crossed her face, and she\nburst into tears.\n\"No -- not a word !' said Liddy, looking at the\nweeping woman with astonishment. 'What is it makes\nyou cry so, ma'am; has anything hurt you ? ' She came\nto Bathsheba's side with a face full of sympathy.\n\" No, Liddy-i don't want you any more. I can\nhardly say why I have taken to crying lately: I never\nused to cry. Good-night.'\nLiddy then left the parlour and closed the door.\n<P 353>\nBathsheba was lonely and miserable now ; not lone+\nlier actually than she had heen before her marriage;\nbut her loneliness then was to that of the present time\nas the solitude of a mountain is to the solitude of a\ncave. And within the last day or two had come these\ndisquieting thoughts about her husband's past. Her\nwayward sentiment that evening concerning Fanny's\ntemporary resting-place had been the result of a strange\ncomplication of impulses in Bathsheba's bosom. Per+\nhaps it would be more accurately described as a\ndetermined rebellion against her prejudices, a revulsion\nfrom a lower instinct of uncharitableness, which would\nhave withheld all sympathy from the dead woman, be+\ncause in life she had preceded Bathsheba in the atten+\ntions of a man whom Bathsheba had by no means\nceased from loving, though her love was sick to death\njust now with the gravity of a further misgiving.\nIn five or ten minutes there was another tap at the\ndoor. Liddy reappeared, and coming in a little way\nstood hesitating, until at length she said, !Maryann has\njust heard something very strange, but I know it isn't\ntrue. And we shall be sure to know the rights of it in\na day or two.'\n\"What is it ?'\n\" Oh, nothing connected with you or us, ma'am. It\nis about Fanny. That same thing you have heard.'\n\"I have heard nothing.'\n\"I mean that a wicked story is got to Weatherbury\nwithin this last hour -- that --  -- ' Liddy came close to\nher mistress and whispered the remainder of the sentence\nslowly into her ear, inclining her head as she spoke in\nthe direction of the room where Fanny lay.\nBathsheba trembled from head to foot.\n\"I don't believe it ! ' she said, excitedly. 'And\nthere's only one name written on the coffin-cover.'\n\"Nor I, ma'am. And a good many others don't;\nfor we should surely have been told more about it if it\nhad been true -- don't you think so, ma'am ? '\n\"We might or we might not.'\nBathsheba turned and looked into the fire, that\nLiddy might not see her\n<P 354>\nface. Finding that her mistress\nwas going to say no more, Liddy glided out, closed the\ndoor softly, and went to bed.\nBathsheba's face, as she continued looking into the\nfire that evening, might have excited solicitousness on\nher account even among those who loved her least.\nThe sadness of Fanny Robin's fate did not make Bath+\nsheba's glorious, although she was the Esther to this\npoor Vashti, and their fates might be supposed to stand\nin some respects as contrasts to each other. When\nLiddy came into the room a second time the beautiful\neyes which met hers had worn a listless, weary look+\nWhen she went out after telling the story they had ex+\npressed wretchedness in full activity. Her simple\ncountry nature, fed on old-fashioned principles, was\ntroubled by that which would have troubled a woman\nof the world very little, both Fanny and her child, if she\nhad one, being dead.\nBathsheba had grounds for conjecturing a connection\nbetween her own history and the dimly suspected\ntragedy of Fanny's end which Oak and Boldwood never\nfor a moment credited her with possessing. The\nmeeting with the lonely woman on the previous Saturday\nnight had been unwitnessed and unspoken of. Oak\nmay have had the best of intentions in withholding for\nas many days as possible the details of what had\nhappened to Fanny ; but had he known that Bathsheba's\nperceptions had already been exercised in the matter,\nhe would have done nothing to lengthen the minutes of\nsuspense she was now undergoing, when the certainty\nwhich must terminate it would be the worst fact suspected\nafter all.\nShe suddenly felt a longing desire to speak to some\none stronger than herself, and so get strength to sustain\nher surmised position with dignity and her carking\ndoubts with stoicism. Where could she find such a\nfriend? nowhere in the house. She was by far the\ncoolest of the women under her roof. Patience and\nsuspension of judgement for a few hours were what she\nwanted to learn, and there was nobody to teach her.\nMight she but go to Gabriel Oak ! -- but that could not\nbe. What a way Oak had, she thought, of enduring\nthings. Boldwood, who seemed so much deeper and\nhigher and stronger in\n<P 355>\nfeeling than Gabriel, had not\nyet learnt, any more than she herself, the simple\nlesson which Oak showed a mastery of by every turn\nand look he gave -- that among the multitude of interests\nby which he was surrounded, those which affected his\npersonal welibeing were not the most absorbing and\nimportant in his eyes. Oak meditatively looked upon\nthe horizon of circumstances without any special regard\nto his own standpoint in the midst. That was how\nshe would wish to be. But then Oak was not racked\nby incertitude upon the inmost matter of his bosom, as\nshe was at this moment. Oak knew all about Fanny\nthat he wished to know -- she felt convinced of that.\nIf she were to go to him now at once and say no more\nthan these few words, !What is the truth of the story?'\nhe would feel bound in honour to tell her. It would\nbe an inexpressible relief. No further speech would\nneed to be uttered. He knew her so well that no\neccentricity of behaviour in her would alarm him.\nShe flung a cloak roundher, went to the door and\nopened it. Every blade, every twig was still. The air\nwas yet thick with moisture, though somewhat less dense\nthan during the afternoon, and a steady smack of drops\nupon the fallen leaves under the boughs was almost\nmusical in its soothing regularity. lt seemed better to\nbe out of the house than within it, and Bathsheba closed\nthe door, and walked slowly down the lane till she came\nopposite to Gabriel's cottage, where he now lived alone,\nhaving left Coggan's house through being pinched for\nroom. There was a light in one window only', and that\nwas downstairs. The shutters were not closed, nor was\nany blind or curtain drawn over the window, neither\nrobbery nor observation being a contingency which could\ndo much injury to the occupant of the domicile. Yes,\nit was Gabriel himself who was sitting up : he was reading,\nFrom her standing-place in the road she could see him\nplainly, sitting quite still, his light curly head upon his\nhand, and only occasionally looking up to snuff the\ncandle which stood beside him. At length he looked\nat the clock, seemed surprised at the lateness of the\nhour, closed his book, and arose. He was going to bed,\nshe knew, and if she tapped it must be done at once.\n<P 356>\nAlas for her resolve ! She felt she could not do it,\nNot for worlds now could she give a hint about her\nmisery to him, much less ask him plainly for information\non the cause of Fanny's death. She must suspect, and\nguess, and chafe, and bear it all alone.\nLike a homeless wanderer she lingered by the bank,\nas if lulled and fascinated by the atmosphere of content\nwhich seemed to spread from that little dwelling, and\nwas so sadly lacking in her own. Gabriel appeared in\nan upper room, placed his light in the window-bench,\nand then -- knelt down to pray. The contrast of the\npicture with her rebellious and agitated existence at this\nsame time was too much for her to bear to look upon\nlonger. It was not for her to make a truce with\ntrouble by any such means. She must tread her giddy\ndistracting measure to its last note, as she had begun it.\nWith a swollen heart she went again up the lane, and\nentered her own door.\nMore fevered now by a reaction from the first feelings\nwhich Oak's example had raised in her, she paused in\nthe hall, looking at the door of the room wherein Fanny\nlay. She locked her fingers, threw back her head, and\nstrained her hot hands rigidly across her forehead, saying,\nwith a hysterical sob, 'Would to God you would speak\nand tell me your secret, Fanny .! . , . O, I hope, hope\nit is not true that there are two of you ! ... If I could\nonly look in upon you for one little minute, I should\nknow all !. '\nA few moments passed, and she added, slowly, 'And\nI will'\nBathsheba in after times could never gauge the mood\nwhich carried her through the actions following this\nmurmured resolution on this memorable evening of her\nlife. She went to the lumber-closet for a screw-driver.\nAt the end of a short though undefined time she found\nherself in the small room, quivering with emotion, a mist\nbefore her eyes, and an excruciating pulsation in her\nbrain, standing beside the uncovered coffin of the girl\nwhose conjectured end had so entirely engrossed her, and\nsaying to herself in a husky voice as she gazed within --\n'It was best to know the worst, and I know it now.!'\n<P 357>\nShe was conscious of having brought about this\nsituation by a series of actions done as by one in an\nextravagant dream ; of following that idea as to method,\nwhich had burst upon her in the hall with glaring\nobviousness, by gliding to the top of the stairs, assuring\nherself by listening to the heavy breathing of her maids\nthat they were asleep, gliding down again, turning the\nhandle of the door within which the young girl lay, and\ndeliberately setting herself to do what, if she had antici+\npated any such undertaking at night and alone, would\nhave horrified her, but which, when done, was not so\ndreadful as was the conclusive proof of her husband's\nconduct which came with knowing beyond doubt the\nlast chapter of Fanny's story.\nBathsheba's head sank upon her bosom, and the\nbreath which had been bated in suspense, curiosity, and\ninterest, was exhaled now in the form of a whispered\nwail: 'Oh-h-h!' she said, and the silent room added\nlength to her moan.\nHer tears fell fast beside the unconscious pair in the\ncoffin: tears of a complicated origin, of a nature inde+\nscribable, almost indefinable except as other than those\nof simple sorrow. Assuredly their wonted fires must\nhave lived in Fanny's ashes when events were so shaped\nas to chariot her hither in this natural, unobtrusive, yet\neffectual manner. The one feat alone -- that of dying --\nby which a mean condition couId be resolved into a\ngrand one, Fanny had achieved. And to that had\ndestiny subjoined this rencounter to-night, which had,\nin Bathsheba's wild imagining, turned her companion's\nfailure to success, her humiliation to triumph, her luck\nlessness to ascendency; et had thrown over herself a\ngarish light of mockery, and set upon all things about\nher an ironical smile.\nFanny's face was framed in by that yeIIow hair of\nhers; and there was no longer much room for doubt as\nto the origin of the curl owned by Troy. In Bath+\nsheba's heated fancy the innocent white countenance\nexpressed a dim triumphant consciousness of the pain\nshe was retaliating for her pain with all the merciless\nrigour of the Mosaic law: 'Burning for burning; wound\nfor wound: strife for strife.\nBathsheba indulged in contempIations of escape from\nher position by immediate death, which thought she,\n<P 358>\nthough it was an inconvenient and awful way, had limits\nto its inconvenience and awfulness that could not be\noverpassed ; whilst the shames of life were measureless.\nYet even this scheme of extinction by death was out\nFANNY'S REVENGE\ntamely copying her rival's method without the reasons\nwhich had glorified it in her rival's case. She glided\nrapidly up and down the room, as was mostly her habit\nhen excited, her hands hanging clasped in front of her,\nas she thought and in part expressed in brocken words :\nO, I hate her, yet I don't mean that I hate her, for\nit is grievous and wicked; and yet I hate her a little !\nyes, my flesh insists upon hating her, whether my spirit\nis willing or no !.... If she had only lived, I could\nave been angry and cruel towards her with some justifi+\ncation ; but to be vindictive towards a poor dead woman\nrecoils upon myself. O God, have mercy,! I am\nmiserable at all this !. '\nBathsheba became at this moment so terrified at her\nown state of mind that she looked around for some sort\nof refuge from herself. The vision of Oak kneeling\ndown that night recurred to her, and with the imitative\ninstinct which animates women she seized upon the idea,\nresolved to kneel, and, if possible, pray. Gabriel had\nprayed ; so would she.\nShe knelt beside the coffin, covered her face with her\nhands, and for a time the room was silent as a tomb.\nwhether from a purely mechanical, or from any other\ncause, when Bathsheba arose it was with a quieted spirit,\nand a regret for the antagonistic instincts which had\nseized upon her just before.\nIn her desire to make atonement she took flowers\nfrom a vase by the window, and began laying them\naround the dead girl's head. Bathsheba knew no other\nway of showing kindness to persons departed than by\ngiving them flowers. She knew not how long she\nremained engaged thus. She forgot time, life, where\nshe was, what she was doing. A slamming together of\nthe coach-house doors in the yard brought her to her+\nself again. An instant after, the front door opened and\nclosed, steps crossed the hall, and her husband appeared\nat the entrance to the room, looking in upon her.\nHe beheld it all by degrees, stared in stupefaction at\nthe scene, as if he thought it an illusion raised by some\nfiendish\n<P 359>\nincantation. Bathsheba, pallid as a corpse on\nend, gazed back at him in the same wild way.\nSo little are instinctive guesses the fruit of a legitimate\ninduction, that at this moment, as he stood with the\ndoor in his hand, Troy never once thought of Fanny in\nconnection with what he saw. His first confused idea\nwas that somebody in the house had died.\n'Weli-what ? ' said Troy, blankly.\n'I must go ! I must go ! ' said Bathsheba, to herself\nmore than to him. She came with a dilated eye towards\nthe door, to push past him.\n' What's the matter, in God's name ? who's dead ?'\nsaid Troy.\n'I cannot say; let me go out. I want air.! ' she\ncontinued.\n'But no; stay, I insist ! ' He seized her hand, and\nthen volition seemed to leave her, and she went off into\na state of passivity. He, still holding her, came up the\nroom, and thus, hand in hand, Troy and Bathsheba\napproached the coffin's side.\nThe candle was standing on a bureau close by them,\nand the light slanted down, distinctly enkindling the\ncold features of both mother and babe. Troy looked\nin, dropped his wife's hand, knowledge of it all came\nover him in a lurid sheen, and he stood still.\nSo still he remained that he could be imagined to\nhave left in him no motive power whatever. The\nclashes of feeling in all directions confounded one\nanother, produced a neutrality, and there was motion in\nnone.\n'Do you know her?' said Bathsheba, in a small\nenclosed echo, as from the interior of a cell.\n'I do,' said Troy.\n'Is it she?'\n'It is.'\nHe had originally stood perfectly erect. And now,\nin the welinigh congealed immobility of his frame\ncould be discerned an incipient movement, as in the\ndarkest night may be discerned light after a while.\nHe was gradually sinking forwards. The lines of his\nfeatures softened, and dismay modulated to illiimitable\nsadness. Bathsheba was regarding him from the other\nside, still with parted lips and distracted eyes.\n<P 360>\nCapacity\nfor intense feeling is proportionate to the general\nintensity of the nature ,and perhaps in all Fanny's\nsufferings, much greater relatively to her strength, there\nnever was a time she suffered in an absolute sense\nwhat Bathsheba suffered now.\nWhat Troy did was to sink upon  his knees with\nan indefinable union of remorse and reverence upon\nhis face, and, bending over Fanny Robin, gently kissed\nher, as one would kiss an infant asleep to avoid\nawakening it.\nAt the sight and sound of that, to her, unendurable\nact, Bathsheba sprang towards him. All the strong\nfeelings which had been scattered over her existence\nsince she knew what feeling was, seemed gathered\ntogether into one pulsation now. The revulsion from\nher indignant mood a little earlier, when she had\nmeditated upon compromised honour, forestalment,\neclipse in maternity by another, was violent and entire.\nAll that was forgotten in the simple and still strong\nattachment of wife to husband. She had sighed for\nher self-completeness then, and now she cried aloud\nagainst the severance of the union she had deplored.\nShe flung her arms round Troy's neck, exclaiming wildly\nfrom the deepest deep of her heart --\n' Don't -- don't kiss them !. O, Frank, I can\"t bear\nit-i can't ! I love you better than she did: kiss me\ntoo, Frank -- kiss me ! You will, Frank, kiss me too !'\nThere was something so abnormal and startling in\nthe childlike pain and simplicity of this appeal from a\nwoman of Bathsheba's calibre and independence, that\nTroy, loosening her tightly clasped arms from his neck,\nlooked at her in bewilderment. It was such and unex+\npected revelation of all women being alike at heart, even\nthose so different in their accessories as Fanny and this\none beside him, that Troy could hardly seem to believe\nher to be his proud wife Bathsheba. Fanny's own\nspirit seemed to be animating her frame. But this was\nthe mood of a few instants only. When the momentary\n'I will not kiss you!' he said pushing her away.\nHad the wife now but gone no further. Yet,\nperhaps. under the harrowing circumstances, to speak\nout was the one wrong\n<P 361>\nact which can be better under+\nstood, if not forgiven in her, than the right and politic\none, her rival being now but a corpse. All the feeling\nshe had been betrayed into showing she drew back to\nherself again by a strenuous effort of self-command.\n'What have you to say as your reason ?' she asked\nher bitter voice being strangely low -- quite that of\nanother woman now.\n'I have to say that I have been a bad, black-hearted\nman,' he answered.\nless than she.'\n'Ah! don't taunt me, madam. This woman is more\nto me, dead as she is, than ever you were, or are, or can\nbe.  If Satan had not tempted me with that face of\nyours, and those cursed coquetries, I should have\nHe turned to Fanny then. 'But never mind, darling,'\nwife.!'\nAt these words there arose from Bathsheba's lips a\nlong, low cry of measureless despair and indignation,\nsuch a wail of anguish as had never before been heard\nwithin those old-inhabited walls. It was the ??????????\nof her union with Troy.\n\"If she's  --  that, -- what -- am I ? ' she added, as a\ncontinuation of the same cry, and sobbing pitifully:\nand the rarity with her of such abandonment only made\nthe condition more dire.\n\" You are nothing to me  --  nothing,' said Troy,\nheartlessly. 'A ceremony before a priest doesn't make\na marriage. I am not morally yours.'\nA vehement impulse to flee from him, to run from\nthis place, hide, and escape his words at any price, not\nstopping short of death itself, mastered Bathsheba now.\nShe waited not an instant, but turned to the door and\nran out.\n<C xliv>\n<P 362>\nUNDER A TREE -- REACTION\nBATHSHEBA went along the dark road, neither know'\ning nor caring about the direction or issue of her flight.\nThe first time that she definitely noticed her position\nwas when she reached a gate leading into a thicket over+\nhung by some large oak and beech trees. On looking\ninto the place, it occurred to her that she had seen it\nby daylight on some previous occasion, and that what\nappeared like an impassable thicket was in reality a\nbrake of fern now withering fast. She could think of\nnothing better to do with her palpitating self than to go\nin here and hide; and entering, she lighted on a spot\nsheltered from the damp fog hy a reclining trunk, where\nshe sank down upon a tangled couch of fronds and\nstems. She mechanically pulled some armfuls round\nher to keep off the breezes, and closed her eyes.\nWhether she slept or not that night Bathsheba was\nnot clearly aware. But it was with a freshened exist+\nence and a cooler brain that, a long time afterwards, she\nbecame conscious of some interesting proceedings which\nwere going on in the trees above her head and around.\nA coarse-throated chatter was the first sound.\nIt was a sparrow just waking.\nNext : ' Chee-weeze-weeze-weeze .! ' from another\nretreat.\nIt was a finch.\nThird : ' Tink-tink-tink-tink-a-chink ! ' from the hedge,\nIt was a robin.\n' Chuck-chuck-chuck !. ' overhead.\nA squirrel.\nThen, from the road, 'With my ra-ta-ta, and my\nrum-tum-tum ! '\nIt was a ploughboy. Presently he came opposite,\nand she believed from his voice that he was one of\nthe boys on her own farm. He was followed by a\nshambling tramp of heavy feet, and\n<P 363>\nlooking through\nthe ferns Bathsheba could just discern in the wan light\nof daybreak a team of her own horses. They stopped\nto drink at a pond on the other side of the way'. She\nwatched them flouncing into the pool, drinking, tossing\nup their heads, drinking again, the water dribbling\nfrom their lips in silver threads. There was another\nflounce, and they came out of the pond, and turned\nback again towards the farm.\nShe looked further around. Day was just dawning,\nand beside its cool air and colours her heated actions\nand resolves of the night stood out in lurid contrast.\nShe perceived that in her lap, and clinging to her\nhair, were red and yellow leaves which had come\ndown from the tree and settled silently upon her\nduring her partial sleep. Bathsheba shook her dress to\nget rid of them, when multitudes of the same family lying\nround about her rose and fiuttered away in the breeze\nthus created, 'like ghosts from an enchanter fleeing.'\nThere was an opening towards the east, and the\nglow from the as yet unrisen sun attracted her eyes\nthither. From her feet, and between the beautiful\nyellowing ferns with their feathery arms, the ground\nsloped downwards to a hollow, in which was a species\nof swamp, dotted with fungi. A morning mist hung\nover it now -- a fulsome yet magnificent silvery veil,\nfull of light from the sun, yet semi-opaque -- the hedge\nbehind it being in some measure hidden by its hazy\nluminousness. Up the sides of this depression grew\nsheaves of the common rush, and here and there a\npeculiar species of flag, the blades of which glistened\nin the enaerging sun, like scythes. But the general\naspect of the swamp was malignant. From its moist\nand poisonous coat seemed to be exhaled the essences\nof evil things in the earth, and in the waters under\nthe earth. The fungi grew in all manner of positions\nfrom rotting leaves and tree stumps, some exhibiting\nto her listless gaze their clammy tops, others their\noozing gills. Some were marked with great splotches,\nred as arterial blood, others were saffron yellow, and\nothers tall and attenuated, with stems like macaroni.\nSome were leathery and of richest browns. The\nhollow seemed a nursery of pestilences small and\ngreat, in the immediate neighbourhood of comfort\nand health, and Bathsheba arose with a tremor at the\nthought of having\n<P 364>\npassed the night on the brink of\nso dismal a place.\n'l'here were now other footsteps to be heard along\nthe road. Bathsheba's nerves were still unstrung :\nshe crouchcd down out of sight again, and the pedes+\ntrian came into view. He was a schoolboy, with a\nbag slung over his shoulder containing his dinner,\nand a hook in his hand. He paused by the gate,\nand, without looking up, continued murmuring words\nin tones quite loud enough to reach her ears.\n'''O Lord, O Lord, O Lord, O Lord, O Lord'': --\nthat I know out o' book. ''Give us, give us, give us,\ngive us, give us '' : -- that I know. ''Grace that, grace that,\ngrace that, grace that '' : -- that I know.' Other words\nfollowed to the same effect. The boy was of the\ndunce class apparently; the book was a psalter, and\nthis was his way of learning the collect. In the worst\nattacks of trouble there appears to be always a super+\nficial film of consciousness which is left disengaged\nand open to the notice of trifles, and Bathsheba was\nfaintly amused at the boy's method, till he too passed on.\nBy this time stupor had given place to anxiety, and\nanxiety began to make room for hunger and thirst.\nA form now appeared upon the rise on the other side\nof the swamp, half-hidden by the mist, and came\ntowards Bathsheba. The woman -- for it was a woman\n -- approached with her face askance, as if looking\nearnestly on all sides of her. When she got a little\nfurther round to the left, and drew nearer, Bathsheba\ncould see the newcomer's profile ngainst the sunny\nsky', and knew the wavy sweep from forehead to chin,\nwith neither angle nor decisive line anywhere about\nit, to be the familiar contour of Liddy Smallbury.\nBathsheba's heart bounded with gratitude in the\nthought that she was not altogether deserted, and she\njumped up. ' O, Liddy .! ' she said, or attempted to say;\nbut the words had only been framed hy her lips; there\ncame no sound. She had lost her voice by exposure\nto the clogged atmosphere all these hours of night.\n'O, ma'am.! I am so glad I have found you,' said\nthe girl, as soon as she saw Bathsheba.\n' You can't come across,' Bathsheba said in a whisper,\nwihich she\n<P 365>\nvainly endeavoured to make loud enough to\nreach Liddy's ears. Liddy, not knowing this, stepped\ndown upon the swamp, saying, as she did so, 'It will\nbear me up, I think.'\nBathsheba never forgot that transient little picture\nof Liddy crossing the swamp to her there in the\nmorning light. Iridescent bubbles of dank subter+\nranean breath rose from the sweating sod beside the\nwaiting maid's feet as she trod, hissing as they burst\nand expanded away to join the vapoury firmament above.\nLiddy did not sink, as Bathsheba had anticipated.\nShe landed safely on the other side, and looked up\nat the beautiful though pale and weary face of her\nyoung mistress.\n'Poor thing ! ' said Liddy, with tears in her eyes,\nDo hearten yourself up a little, ma'am. However\ndid --  -- '\n'I can't speak above a whisper -- my voice is gone\nfor the present,' said Bathsheba, hurriedly. ' I suppose\nthe damp air from that hollow has taken it away\nLiddy, don't question me, mind. Who sent you --\nanybody ? '\n' Nobody. I thought, when I found you were not\nat home, that something cruel had happened. I fancy\nI heard his voice late last night; and so, knowing\nsomething was wrong --  -- '\n'Is he at home?'\n'No ; he left just before I came out.'\n'Is Fanny taken away ? '\n' Not yet. She will soon be -- at nine o'clock.'\n'we won't go home at present, then. Suppose we\nwalk about in this wood ?'\nLiddy, without exactly understanding everything, or\nanything, in this episode, assented, and they walked\ntogether further among the trees.\n'But you had better come in, ma'am, and have\nsomething to eat. You will die of a chill! '\n'I shall not come indoors yet -- perhaps never.'\n'Shall I get you something to eat, and something\nelse to put over your head besides that little shawl?'\n'If you will, Liddy.'\nLiddy vanished, and at the end of twenty minutes\nreturned with a cloak, hat, some slices of bread and\nbutter, a tea-cup, and some hot tea in a little china jug\n<P 366>\n\"Is Fanny gone ? ' said Bathsheba.\n' No,' said her companion, pouring out the tea.\nBathsheba wrapped herself up and ate and drank\nsparingly. Her voice was then a little clearer, and\ntrifling colour returned to her face. 'Now we'll walk\nabout again,' she said.\nThey wandered about the wood for nearly two\nREACTION\nhours, Bathsheba replying in monosyllables to Liddy's\nprattle, for her mind ran on one subject, and one only.\nShe interrupted with --\n'l wonder if Fanny is gone by this time ? '\n'I will go and see.'\nShe came back with the information that the\nmen were just taking away the corpse; that Bathsheba\nhad been inquired for; that she had replied to the\neffect that her mistress was unwell and could not be\nseen.\n'Then they think I am in my bedroom ?'\n' Yes.' Liddy then ventured to add: ' You said\nwhen I first found you that you might never go home\nagain -- you didn't mean it, ma'am ? '\n'No; I've altered my mind. It is only women with\nno pride in them who run away from their husbands.\nThere is one position worse than that of being found\ndead in your husband's house from his iliusage, and\nthat is, to be found alive through having gone away to\nThe house of somebody else. l've thought of it all this\nmorning, and I've chosen my course. A runaway wife\nis an encumbrance to everybody, a burden to herself and\na byword -- all of which make up a heap of misery\ngreater than any that comes by staying at home --\nthough this may include the trifling items of insult,\nbeating, and starvation. Liddy, if ever you marry --\nGod forbid that you ever should ! -- you'll find yourself\nin a fearful situation ; but mind this, don't you flinch.\nStand your ground, and be cut to pieces. That's\nwhat I'm going to do.'\n' O, mistress, don't talk so .! ' said Liddy,-taking her\nhand; 'but I knew you had too much sense to bide\naway. May I ask what dreadful thing it is that has\nhappened between you and him ?'\n' You may ask; but I may not tell.'\nIn about ten minutes they returned to the house by\na cimuitous route, entering at the rear. Bathsheba\nglided up the\n<P 367>\nback stairs to a disused attic, and her\ncompanion followed.\n'Liddy,' she said, with a lighter heart, for youth an\nhope had begun to reassert themselves; ' you are to b\nmy confidante for the present -- somebody must be -- and\nI choose you. Well, I shall take up my abode here fo\na while. Will you get a fire lighted, put down a piece\nof carpet, and help me to make the place comfortable.\nAfterwards, I want you and Maryann to bring up that\nlittle stump bedstead in the small room, and the be\nbelonging to it, and a table, and some other things.\nWhat shall I do to pass the heavy time away ?'\n'Hemming handkerchiefs is a very good thing,' said\nLiddy.\n'O no, no .! I hate needlework-i always did.'\n'knitting ? '\n' And that, too.'\n'You might finish your sampler. Only the carn\ntions and peacocks want filling in; and then it could\nbe framed and glazed, and hung beside your aunt'\nma'am.'\n' Samplers are out of date -- horribly countrified. No\nLiddy, I'll read. Bring up some books -- not new ones.\nI haven't heart to read anything new.'\n'Some of your uncle's old ones, ma'am ? '\n' Yes. Some of those we stowed away in boxes.' ,\nfaint gleam of humour passed over her face as she said:\n'Bring Beaumont and Fletcher's Mai'd's Tragedy,- an\nthe Mourning Bride ,- and-iet me see -- Niht Thoghts,\nand the Vanity of Human Wishes.'\n'And that story of the black man, who murdered his\nwife Desdemona? It is a nice dismal one that would\nsuit you excellent just now.'\n' Now, Liddy, you've been looking into my book\nwithout telling me; and I said you were not to ! How\ndo you know it would suit me? It wouldn't suit me a\nall.'\n'But if the others do --  -- '\n' No, they don't ; and I won't read dismal books.\nWhy should I read dismal books, indeed ? Bring me\nLove in a Village, and Maid of the Mill, and Doctor\nSyntax, and some volumes of the Spectator.'\nAll that day Bathsheba and Liddy lived in the attic\nin a state of\n<P 368>\nbarricade ; a precaution which proved to be\nneedless as against Troy, for he did not appear in the\nneighbourhood or trouble them at all. Bathsheba sat\nat the window till sunset, sometimes attempting to read,\nat other times watching every movement outside without\nmuch purpose, and listening without much interest to\nevery sound.\nThe sun went down almost blood-red that night, and\na livid cloud received its rays in the east. Up against\nthis dark background the west front of the church\ntower -- the only part of the edifice visible from the\nfarm-house windows -- rose distinct and lustrous, the\nvane upon the summit bristling with rays. Hereabouts,\nat six o'clock, the young men of the village gathered,\nas was their custom, for a game of Prisoners' base. The\nspot had been consecrated to this ancient diversion from\ntime immemorial, the old stocks conveniently forming\na base facing the boundary of the churchyard, in front\nof which the ground was trodden hard and bare as a\npavement by the players. She could see the brown\nand black heads of the young lads darting about right\nand left, their white shirt-sleeves gleaming in the sun;\nwhilst occasionally a shout and a peal of hearty laughter\nvaried the stillness of the evening air. They continued\nplaying for a quarter of an hour or so, when the game\nconcluded abruptly, and the players leapt over the wall\nand vanished round to the other side behind a yew-tree,\nwhich was also half behind a beech, now spreading in\none mass of golden foliage, on which the branches\ntraced black lines.\n'Why did the base-players finish their game so\nsuddenly?' Bathsheba inquired, the next time that\nLiddy entered the room.\n' I think 'twas because two men came just then from\nCasterbridge and began putting up grand carved\ntombstone,' said Liddy.  'The lads went to see whose\nit was.'\n' Do you know ? ' Bathsheba asked.\n' I don't,' said Liddy.\n<C xlv>\n<P 369>\nTROY'S ROMANTICISM\nWHEN Troy's wife had left the house at the previous\nmidnight his first act was to cover the dead from sight.\nThis done he ascended the stairs, and throwing himself\ndown upon the bed dressed as he was, he waited miser+\nably for the morning.\nFate had dealt grimly with him through the last four+\nand-twenty hours. His day had been spent in a way\nwhich varied very materially from his intentions regard+\ning it. There is always an inertia to be overcome in\nstriking out a new line of conduct -- not more in our+\nselves, it seems, than in circumscribing events, which\nappear as if leagued together to allow no novelties in\nthe way of amelioration.\nTwenty pounds having been secured from Bathsheba,\nhe had managed to add to the sum every farthing he\ncould muster on his own account, which had been seven\npounds ten. With this money, twenty-seven pounds ten\nin all, he had hastily driven from the gate that morning\nto keep his appointment with Fanny Robin.\nOn reaching Casterbridge he left the horse and trap\nat an inn, and at five minutes before ten came back to\nthe bridge at the lower end of the town, and sat himself\nupon the parapet. The clocks struck the hour, and no\nFanny appeared. In fact, at that moment she was being\nrobed in her grave-clothes by two attendants at the\nUnion poorhouse -- the first and last tiring-women the\ngentle creature had ever been honoured with. The\nquarter went, the half hour. A rush of recollection\ncame upon Troy as he waited: this was the second\ntime she had broken a serious engagement with him\nIn anger he vowed it should be the last, and at eleven\no'clock, when he had lingered and watched the stone\nof the bridge till he knew every lichen upon their face\nand heard the chink of the ripples underneath till they\noppressed him, he jumped from his seat, went to the inn\n<P 370>\nfor his gig, and in a bitter mood of indifference con+\ncerning the past, and recklessness about the future,\ndrove on to Budmouth races.\nHe reached the race-course at two o'clock, and re+\nmained either there or in the town till nine, But\nFanny's image, as it had appeared to him in the sombre\nshadows of that Saturday evening, returned to his mind,\nbacked up by Bathsheba's reproaches. He vowed he\nwould not bet, and he kept his vow, for on leaving the\ntown at nine o'clock in the evening he had diminish\nhis cash only to the extent of a few shillings.\nHe trotted slowly homeward, and it was now that\nwas struck for the first time with a thought that Fanny\nhad been really prevented by illness from keeping her\npromise. 'This time she could have made no mistake\nHe regretted that he had not remained in Casterbridge\nand made inquiries. Reaching home he quietly un+\nharnessed the horse and came indoors, as we have seen,\nto the fearful shock that awaited him.\nAs soon as it grew light enough to distinguish objects,\nTroy arose from the coverlet of the bed, and in a mood\nof absolute indifference to Bathsheba's whereabouts, a\nalmost oblivious of her existence, he stalked downstairs\nand left the house by the back door. His walk was\ntowards the churchyard, entering which he searched\naround till he found a newly dug unoccupied grave --\nthe grave dug the day before for Fanny. The position\nof this having been marked, he hastened on to Caster+\nbridge, only pausing\nwhereon he had last seen Fanny alive.\nReaching the town, Troy descended into a side\nstreet and entered a pair of gates surmounted by a board\nbearing the words, 'Lester, stone and marble mason.'\nWithin were lying about stones of all sizes and designs,\ninscribed as being sacred to the memory of unnamed\npersons who had not yet died.\nTroy was so unlike himself now in look, word, and\ndeed, that the want of likeness was perceptible even to\nhis own consciousness. His method of engaging himself\nin this business of purchasing a tomb was that of an\nabsolutely unpractised man. He could not bring him+\nself to consider, calculate, or\n<P 371>\neconomize. He waywardly\nwished for something, and he set about obtaining it like\na child in a nursery. 'I want a good tomb,' he said to\nthe man who stood in a little office within the yard.\n'I want as good a one as you can give me for twenty+\nseven pounds,'\nIt was all the money he possessed.\n'That sum to include everything?'\n' Everything. Cutting the name, carriage to Weather+\nbury, and erection. And I want it now at once .'\n' We could not get anything special worked this\nweek.\n'If you would like one of these in stock it could be\ngot ready immediately.'\n'Very well,' said Troy, impatiently.  'Let's see what\nyou have.'\n'The best I have in stock is this one, 'said the stone+\ncutter, going into a shed. ' Here's a marble headstone\nbeautifully crocketed, with medallions beneath of typical\nsubjects ; here's the footstone after the same pattern,\nand here's the coping to enclose the- grave. The\nslabs are the best of their kind, and I can warrant them\n'Well, I couId add the name, and put it up at\nvisitor who wore not a shred of mourning. Troy then\nsettled the account and went away. In the afternoon\nalmost done. He waited in the yard till the tomb was\nway to Weatherbury, giving directions to the two men\nthe grave of the person named in the inscription.\nbridge. He carried rather a heavy basket upon his\noccasionally at bridges and\n<P 372>\ngates, whereon he deposited\nreturning in the darkness, the men and the waggon\nthe work was done, and, on being assured that it was,\nTroy entered Weatherbury churchyard about ten\nhad marked the vacant grave early in the morning. It\nextent from the view of passers along the road -- a spot\nand bushes of alder, but now it was cleared and made\nthe ground elsewhere.\nHere now stood the tomb as the men had stated, snow+\nwhite and shapely in the gloom, consisting of head and\nfoot-stone, and enclosing border of marble-work uniting\nthem. In the midst was mould, suitable for plants.\nTroy deposited his basket beside the tomb, and\nvanished for a few minutes. When he returned he\ncarried a spade and a lantern, the light of which he\ndirected for a few moments upon the marble, whilst he\nread the inscription. He hung his lantern on the lowest\nbough of the yew-tree, and took from his basket flower+\nroots of several varieties. There were bundles of snow+\ndrop, hyacinth and crocus bulbs, violets and double\ndaisies, which were to bloom in early spring, and of\ncarnations, pinks, picotees, lilies of the valley, forget-me+\nnot, summer's-farewell, meadow-saffron and others, for\nthe later seasons of the year.\nTroy laid these out upon the grass, and with an im+\npassive face set to work to plant them. The snowdrops\nwere arranged in a line on the outside of the coping,\nthe remainder within the enclosure of the grave. The\ncrocuses and hyacinths were to grow in rows; some of\nthe summer flowers he placed over her head and feet,\nthe lilies and forget-me-nots over her heart. The\nremainder were dispersed in the spaces between these.\nTroy, in his prostration at this time, had no percep+\ntion that in the futility of these romantic doings, dictated\nby a remorseful reaction from previous indifference, there\nwas any element\n<P 373>\nof absurdity. Deriving his idiosyn+\ncrasies from both sides of the Channel, he showed at\nsuch junctures as the present the inelasticity of the\nEnglishman, together with that blindness to the line\nwhere sentiment verges on mawkishness, characteristic\nof the French.\nlt was a cloudy, muggy, and very dark night, and\nthe rays from Troy's lantern spread into the two old\nyews with a strange illuminating power, flickering, as it\nseemed, up to the black ceiling of cloud above. He\nfelt a large drop of rain upon the back of his hand, and\npresently one came and entered one of the holes of the\nlantern, whereupon the candle sputtered and went out+\nTroy was weary and it being now not far from midnight,\nand the rain threatening to increase, he resolved to leave\nthe finishing touches of his labour until the day should\nbreak. He groped along the wall and over the graves\nin the dark till he found himself round at the north side.\nHere he entered the porch, and, reclining upon the\nbench within, fell asleep.\n<C xlvi>\n<P 374>\nTHE GURGOYLE : ITS DOINGS\nTHE tower of Weatherbury Church was a square\nerection of fourteenth-century date, having two stone\ngurgoyles on each of the four faces of its parapet. Of\nthese eight carved protuberances only two at this time\ncontinued to serve the purpose of their erection -- that\nof spouting the water from the lead roof within. One\nmouth in each front had been closed hy bygone church+\nwardens as superfluous, and two others were broken\naway and choked -- a matter not of much consequence\nto the welibeing of the tower, for the two mouths which\nstill remained open and active were gaping enough to do\nall the work.\nIt has been sometimes argued that there is no truer\ncriterion of the vitality of any given art-period than the\npower of the master-spirits of that time in grotesque ;\nand certainly in the instance of Gothic art there is no\ndisputing the proposition. Weatherbury tower was a\nsomewhat early instance of the use of an ornamental\nparapet in parish as distinct from cathedral churches,\nand the gurgoyles, which are the necessary correlatives\nof a parapet, were exccptionally prominent -- of the\nboldest cut that the hand could shape, and of the most\noriginal design that a human brain could conceive.\nThere was, so to speak, that symmetry in their distortion\nwhich is less the characteristic of British than of\nContinental grotesques of the period. All the eight\nwere different from each other. A beholder was con+\nvinced that nothing on earth could be more hideous\nthan those he saw on the north side until he went\nround to the south. Of the two on this latter face, only\nthat at the south-eastern corner concerns the story. It\nwas too human to be called like a dragon, too impish\nto be like a man, too animal to be like a fiend, and not\nenough like a bird to be called a griffin. This horrible\nstone entity was fashioned as if covered with a\n<P 375>\nwrinkled\nhide; it had short, erect ears, eyes starting from their\nsockets, and its fingers and hands were seizing the\ncorners of its mouth, which they thus seemed to pull\nopen to give free passage to the water it vomited. The\nlower row of teeth was quite washed away, though the\nupper still remained. Here and thus, jutting a couple\nof feet from the wall against which its feet rested as a\nsupport, the creature had for four hundred years\nlaughed at the surrounding landscape, voicelessly in\ndry weather, and in wet with a gurgling and snorting\nsound.\nTroy slept on in the porch, and the rain increased\noutside. Presently the gurgoyle spat. In due time a\nsmall stream began to trickle through the seventy feet\nof aerial space between its mouth and the ground, which\nthe water-drops smote like duckshot in their accelerated\nvelocity. The stream thickened in substance, and in+\ncreased in power, gradually spouting further and yet\nfurther from the side of the tower. When the rain fell\nin a steady and ceaseless torrent the stream dashed\ndownward in volumes.\nWe follow its course to the ground at this point of\ntime. The end of the liquid parabola has come forward\nfrom the wall, has advanced over the plinth mouldings,\nover a heap of stones, over the marble border, into the\nmidst of Fanny Robin's grave.\nThe force of the stream had, until very lately, been\nreceived upon some loose stones spread thereabout,\nwhich had acted as a shield to the soil under the onset.\nThese during the summer had been cleared from the\nground, and there was now nothing to resist the down+\nfall but the bare earth. For several years the stream\nhad not spouted so far from the tower as it was doing\non this night, and such a contingency had been over+\nlooked. Sometimes this obscure corner received no\ninhabitant for the space of two or three years, and\nthen it was usually but a pauper, a poacher, or other\nsinner of undignified sins.\nThe persistent torrent from the gurgoyle's jaws\ndirected all its vengeance into the grave. The rich\ntawny mould was stirred into motion, and boiled like\nchocolate. The water accumulated and washed deeper\ndown, and the roar of the pool thus formed spread into\nthe night as the head and chief among other noises of\n<P 376>\nthe kind created by the deluging rain. The flowers so\ncarefully planted by Fanny's repentant lover began to\nmove and writhe in their bed. The winter-violets\nturned slowly upside down, and became a mere mat of\nmud. Soon the snowdrop and other bulbs danced in\nthe boiling mass like ingredients in a cauldron. Plants\nof the tufted species were loosened, rose to the surface,\nand floated of.\nTroy did not awake from his comfortless sleep till it\nwas broad day. Not having been in bed for two nights\nhis shouldrrs felt stiff his feet tender, and his head\nheavy. He remembered his position, arose, shivered,\ntook the spade, and again went out.\nThe rain had quite ceased, and the sun was shining\nthrough the green, brown, and yellow leaves, now\nsparkling and varnished by the raindrops to the bright+\nness of similar effects in the landscapes of Ruysdael and\nHobbema, and full of all those infinite beauties that\narise from the union of water and colour with high\nlights. The air was rendered so transparent by the\nheavy fall of rain that the autumn hues of the middle\ndistance were as rich as those near at hand, and the\nremote fields intercepted by the angle of the tower ap+\npeared in the same plane as the tower itself.\nHe entered the gravel path which would take him\nbehind the tower. The path, instead of being stony as\nit had been the night before, was browned over with a\nthin coating of mud. At one place in the path he saw\na tuft of stringy roots washed white and clean as a\nbundle of tendons. He picked it up -- surely it could\nnot be one of the primroses he had planted? He saw\na bulb, another, and another as he advanced. Beyond\ndoubt they were the crocuses. With a face of perplexed\ndismay Troy turned the corner and then beheld the\nwreck the stream had made.\nThe pool upon the grave had soaked away into the\nground, and in its place was a hollow. The disturbed\nearth was washed over the grass and pathway in the\nguise of the brown mud he had already seen, and it\nspotted the marble tombstone with the same stains.\nNearly all the flowers were washed clean out of the\nground, and they lay, roots upwards, on the spots whither\nthey had been splashed by the stream.\n<P 377>\nTroy's brow became heavily contracted. He set his\nteeth closely, and his compressed lips moved as those of\none in great pain. This singular accident, by a strange\nconfluence of emotions in him, was felt as the sharpest\nsting of all. Troy's face was very expressive, and any\nobserver who had seen him now would hardly have\nbelieved him to be a man who had laughed, and sung,\nand poured love-trifles into a woman's ear. To curse\nhis miserable lot was at first his impulse, but even that\nlowest stage of rebellion needed an activity whose\nabsence was necessarily antecedent to the existence of the\nmorbid misery which wrung him. The sight, coming\nas it did, superimposed upon the other dark scenery of\nthe previous days, formed a sort of climax to the whole\npanorama, and it was more than he could endure.\nSanguine by nature, Troy had a power of eluding\ngrief by simply adjourning it. He could put off the\nconsideration of any particular spectre till the matter\nhad become old and softened by time. The planting\nof flowers on Fanny's grave had been perhaps but a\nspecies of elusion of the primary grief, and now it was\nas if his intention had been known and circumvented.\nAlmost for the first time in his life, Troy, as he stood\nby this dismantled grave, wished himself another man.\nlt is seldom that a person with much animal spirit does\nnot feel that the fact of his life being his own is the one\nqualification which singles it out as a more hopeful life\nthan that of others who may actually resemble him in\nevery particular. Troy had felt, in his transient way,\nhundreds of times, that he could not envy other people\ntheir condition, because the possession of that condition\nwould have necessitated a different personality, when he\ndesired no other than his own. He had not minded\nthe peculiarities of his birth, the vicissitudes of his life,\nthe meteoriike uncertainty of all that related to him,\nbecause these appertained to the hero of his story,\nwithout whom there would have been no story at all for\nhim; and it seemed to be only in the nature of things\nthat matters would right themselves at some proper date\nand wind up well. This very morning the illusion\ncompleted its disappearance, and, as it were, all of a\nsudden, Troy hated himself. The suddenness was\nprobably more\n<P 378>\napparent than real. A coral reef which\njust comes short of the ocean surface is no more to the\nhorizon than if it had never been begun, and the mere\nfinishing stroke is what often appears to create an event\nwhich has long been potentially an accomplished thing.\nHe stood and mediated -- a miserable man. Whither\nshould he go ? \" He that is accursed, let him be accursed\nstill,' was the pitiless anathema written in this spoliated\neffort of his new-born solicitousness. A man who has\nspent his primal strength in journeying in one direction\nhas not much spirit left for reversing his course. Troy\nhad, since yesterday, faintly reversed his ; but the merest\nopposition had disheartened him. To turn about would\nhave been hard enough under the greatest providential\nencouragement; but to find that Providence, far from\nhelping him into a new course, or showing any wish\nthat he might adopt one, actuallyjeered his first trembling\nand critical attempt in that kind, was more than nature\ncould bear.\nHe slowly withdrew from the grave. He did not\nattempt to fill up the hole, replace the flowers, or do\nanything at all. He simply threw up his cards and\nforswore his game for that time and always. Going out\nof the churchyard silently and unobserved -- none of the\nvillagers having yet risen -- he passed down some fields\nat the back, and emerged just as secretly upon the high\nroad. Shortly afterwards he had gone from the village.\nMeanwhile, Bathsheba remained a voluntary prisoner\nin the attic. The door was kept locked, except during\nthe entries and exits of Liddy, for whom a bed had\nbeen arranged in a small adjoining room. The light\nof Troy's lantern in the churchyard was noticed about\nten o'clock by the maid-servant, who casually glanced\nfrom the window in that direction whilst taking her\nsupper, and she called Bathsheba's attention to it.\nThey looked curiously at the phenomenon for a time,\nuntil Liddy was sent to bed.\nbathsheba did not sleep very heavily that night.\nWhen her attendant was unconscious and softly breath+\ning in the next room, the mistress of the house was\nstill looking out of the window at the faint gleam\nspreading from among the trees --\n<P 379>\nnot in a steady shine,\nbut blinking like a revolving coastiight, though this\nappearance failed to suggest to her that a person was\npassing and repassing in front of it. Bathsheba sat\nhere till it began to rain, and the light vanished, when\nshe withdrew to lie restlessly in her bed and re-enact\nin a worn mind the lurid scene of yesternight.\nAlmost before the first faint sign of dawn appeared\nshe arose again, and opened the window to obtain a full\nbreathing of the new morning air, the panes being now\nwet with trembling tears left by the night rain, each\none rounded with a pale lustre caught from primrose+\nhued slashes through a cloud low down in the awaken+\ning sky. From the trees came the sound of steady\ndripping upon the drifted leaves under them, and from\nthe direction of the church she could hear another noise\n -- peculiar, and not intermittent like the rest, the purl\nof water falling into a pool.\nLiddy knocked at eight o'clock, and Bathsheba un+\nlocked the door.\n\" What a heavy rain we've had in the night, ma'am!.'\nsaid Liddy, when her inquiries about breakfast had been\nmade.\n\" Yes ; very heavy.'\n\"Did you hear the strange noise from the church\nyard?'\n\"I heard one strange noise. I've been thinking it\nmust have been the water from the tower spouts.'\n\"Well, that's what the shepherd was saying, ma'am.\nHe's now gone on to see.\n\"Oh!. Gabriel has been here this morning!.'\n\"Only just looked in in passing -- quite in his old way,\nwhich I thought he had left off lately. But the tower\nspouts used to spatter on the stones, and we are puzzled,\nfor this was like the boiling of a pot.'\nNot being able to read, think, or work, Bathsheba asked\nLiddy to stay and breakfast with her. The tongue of the\nmore childish womian still ran upon recent events. \"Are\nyou going across to the church, ma'am?' she asked.\n\"Not that I know of,' said Bathsheba.\n\"I thought you might like to go and see where they\nhave put Fanny. The trees hide the place from your\nwindow.'\n<P 380>\nBathsheba had all sorts of dreads about meeting her\nhusband. \"Has Mr. Troy been in to-night?' she said\n\" No, ma'am ; I think he's gone to Budmouth.\nBudmouth! The sound of the word carried with\nit a much diminished perspective of him and his deeds;\nthere were thirteen miles interval betwixt them now.\nShe hated questioning Liddy about her husband's\nmovements, and indeed had hitherto sedulously avoided\ndoing so; but now all the house knew that there had\nbeen some dreadful disagreement between them, and\nit was futile to attempt disguise. Bathsheba had\nreached a stage at which people cease to have any\nappreciative regard for public opinion.\n\"What makes you think he has gone there?' she said.\n\"Laban Tall saw him on the Budmouth road this\nmorning before breakfast.'\nBathsheba was momentarily relieved of that wayward\nheaviness of the past twenty-four hours which had\nquenched the vitality of youth in her without sub+\nstituting the philosophy of maturer years, and the\nresolved to go out and walk a little way. So when\nbreakfast was over, she put on her bonnet, and took\na direction towards the church. It was nine o'clock,\nand the men having returned to work again from their\nfirst meal, she was not likely to meet many of them in\nthe road. Knowing that Fanny had been laid in the\nreprobates' quarter of the graveyard, called in the parish\n'behind church,' which was invisible from the road, it\nwas impossible to resist the impulse to enter and look\nupon a spot which, from nameless feelings, she at the\nsame time dreaded to see. She had been unable to\novercome an impression that some connection existed\nbetween her rival and the light through the trees.\nBathsheba skirted the buttress, and beheld the hole\nand the tomb, its delicately veined surface splashed and\nstained just as Troy had seen it and left it two hours\nearlier. On the other side of the scene stood Gabriel.\nHis eyes, too, were fixed on the tomb, and her arrival\nhaving been noiseless, she had not as yet attracted his\nattention. Bathsheba did not at once perceive that the\ngrand tomb and the disturbed grave were Fanny's, and\nshe looked on both sides and around for some humbler\nmound,\n<P 381>\nearthed up and clodded in the usual way. Then\nher eye followed Oak's, and she read the words with\nwhich the inscription opened : --\n\"Erected by Francis Troy in Beloved Memory of\nFanny Robin.'\nOak saw her, and his first act was to gaze inquiringly\nand learn how she received this knowledge of the\nauthorship of the work, which to himself had caused\nconsiderable astonishment. But such discoveries did\nnot much affect her now. Emotional convulsions seemed\nto have become the commonplaces of her history, and\nshe bade him good morning, and asked him to fill in\nthe hole with the spade which was standing by. Whilst\nOak was doing as she desired, Bathsheba collected the\nflowers, and began planting them with that sympathetic\nmanipulation of roots and leaves which is so conspicuous\nin a woman's gardening, and which flowers seem to\nunderstand and thrive upon. She requested Oak to\nget the churchwardens to turn the leadwork at the\nmouth of the gurgoyle that hung gaping down upon\nthem, that by this means the stream might be directed\nsideways, and a repetition of the accident prevented.\nFinally, with the superfluous magnanimity of a woman\nwhose narrower instincts have brought down bitterness\nupon her instead of love, she wiped the mud spots from\nthe tomb as if she rather liked its words than otherwise,\n<C xlvii>\n<P 382>\nADVENTURES BY THE SHORE\nTROY wandered along towards the south. A composite\nfeeling, made up of disgust with the, to him, humdrum\ntediousness of a farmer's life, gloomly images of her who\nlay in the churchyard, remorse, and a general averseness\nto his wife's society, impelled him to seek a home in any\nplace on earth save Weatherbury. The sad accessories\nof Fanny's end confronted him as vivid pictures which\nthreatened to be indelible, and made life in Bathsheba's\nhouse intolerable. At three in the afternoon he found\nhimself at the foot of a slope more than a mile in length,\nwhich ran to the ridge of a range of hills lying parallel\nwith the shore, and forming a monotonous barrier between\nthe basin of cultivated country inland and the wilder\nscenery of the coast. Up the hill stretched a road\nnearly straight and perfectly white, the two sides\napproaching each other in a gradual taper till they\nmet the sky at the top about two miles off. Through+\nout the length of this narrow and irksome inclined plane\nnot a sign of life was visible on this garish afternoon\nTroy toiled up the road with a languor and depression\ngreater than any he had experienced for many a day\nand year before. The air was warm and muggy, and\nthe top seemed to recede as he approached.\nAt last he reached the summit, and a wide and\nnovel prospect burst upon him with an effect almost like\nthat of the Pacific upon Balboa's gaze. The broad\nsteely sea, marked only by faint lines, which had a\nsemblance of being etched thereon to a degree not deep\nenough to disturb its general evenness, stretched the\nwhole width of his front and round to the right, where,\nnear the town and port of Budmouth, the sun bristled\ndown upon it, and banished all colour, to substitute in\nits place a clear oily polish. Nothing moved in sky,\nland, or sea, except a frill of milkwhite foam along the\nnearer angles of the\n<P 383>\nshore, shreds of which licked the\ncontiguous stones like tongues.\nHe descended and came to a small basin of sea\nenclosed by the cliffs. Troy's nature freshened within\nhim ; he thought he would rest and bathe here before\ngoing farther. He undressed and plunged in. Inside\nthe cove the water was uninteresting to a swimmer,\nbeing smooth as a pond, and to get a little of the ocean\nswell, Troy presently swam between the two projecting\nspurs of rock which formed the pillars of Hercules to\nthis miniature Mediterranean. Unfortunately for Troy\na current unknown to him existed outside, which, un+\nimportant to craft of any burden, was awkward for a\nswimmer who might be taken in it unawares. Troy\nfound himself carried to the left and then round in a\nswoop out to sea.\nHe now recollected the place and its sinister\ncharacter. Many bathers had there prayed for a dry\ndeath from time to time, and, like Gonzalo also, had\nbeen unanswered ; and Troy began to deem it possible\nthat he might be added to their number. Not a boat\nof any kind was at present within sight, but far in the\ndistance Budmouth lay upon the sea, as it were quietly\nregarding his efforts, and beside the town the harbour\nshowed its position by a dim meshwork of ropes and\nspars. After welinigh exhausting himself in attempts\nto get back to the mouth of the cove, in his weakness\nswimming several inches deeper than was his wont,\nkeeping up his breathing entirely by his nostrils, turning\nupon his back a dozen times over, swimming <1en papillon>1\nand so on, Troy resolved as a last resource to tread\nwater at a slight incline, and so endeavour to reach the\nshore at any point, merely giving himself a gentle\nimpetus inwards whilst carried on in the general direc+\ntion of the tide. This, necessarily a slow process, he\nfound to be not altogether so difficult, and though there\nwas no choice of a landing-place -- the objects on shore\npassing by him in a sad and slow procession -- he per+\nceptibly approached the extremity of a spit of land yet\nfurther to the right, now well defined against the sunny\nportion of the horizon- While the swimmer s eye's were\nfixed upon the spit as his only means of salvation on\nthis side of the\n<P 384>\nUnknown, a moving object broke the\noutline of the extremity, and immediately a ship's boat\nappeared manned with several sailor lads, her bows\ntowards the sea.\nAll Troy's vigour spasmodically revived to prolong\nthe struggle yet a little further. Swimming with his\nright arm, he held up his left to hail them, splashing\nupon the waves, and shouting with all his might. From\nthe position of the setting sun his white form was\ndistinctly visible upon the now deep-hued bosom of the\nsea to the east of the boat, and the men saw him at\nonce. Backing their oars and putting the boat about,\nthey pulled towards him with a will, and in five or six\nminutes from the time of his first halloo, two of the\nsailors hauled him in over the stern.\nThey formed part of a brig's crew, and had come\nashore for sand. Lending him what little clothing they\ncould spare among them as a slight protection against\nlate they made again towards the roadstead where their\nAnd now night drooped slowly upon the wide watery\nlevels in front; and at no great distance from them,\nwhere the shoreiine curved round, and formed a long\nriband of shade upon the horizon, a series of points of\nyellow light began to start into existence, denoting the\nspot to be the site of Budmouth, where the lamps were\nbeing lighted along the parade. The cluck of their\noars was the only sound of any distinctness upon the\nsea, and as they laboured amid the thickening shades\nthe lampiights grew larger, each appearing to send a\nflaming sword deep down into the waves before it, until\nthere arose, among other dim shapes of the kind, the\nform of the vessel for which they were bound.\n<C xlviii>\n<P 385>\nDOUBTS ARISE -- DOUBTS LINGER\nBATHSHEBA underwent the enlargement of her\nHusband's absence from hours to days with a slight\nfeeling of suprise, and a slight feeling of relief; yet\nneither sensation rose at any time far above the level\ncommonly designated as indifference. She belonged to\nhim : the certiinties of that position were so well defined,\nand the reasonable probabilies of its issue so bounded\nthat she could not speculate on contingenciezs. Taking\nno further interest in herself as a splendid woman, she\nacquired the indifferent feelings of an outsider in contem+\nplating her probable fate as a singular wretch ; for Bath+\nsheba drew herself and her future in colours that no\nreality could exceed for darkness. Her original vigorous\npride of youth had sickened, and with it had declined\nall her anzieties about coming years, since anxiety\nrecognizes a better and a worse alternative, and Bath+\nsheba had made up her mind that alternatives on any\nnoteworthy scale had ceased for her. Soon, or later --\nand that not very late -- her husband would be home\nagain. And then the days of their tenancy of the\nUpper Farm would be numbered. There had origin+\nally been shown by the agent to the estate some distrust\nof Bathsheba's tenure as James Everdene's successor,\non the score of her sex, and her youth, and her beauty ;\nbut the peculiar nature of her uncle's will, his own\nfrequent testimony before his death to her cleverness\nin such a pursuit, and her vigorous marshalling of the\nnumerous flocks and herds which came suddenly into\nher hands before negotiations were concluded, had won\nconfidence in her powers, and no further objections had\nbeen raised. She had latterly been in great doubt as\nto what the legal effects of her marriage would be upon\nher position; but no notice had been taken as yet of\nher change of name, and only one point was clear -- that\nin the event of her own or her husband's inability to\nmeet the agent at the\n<P 386>\nforthcoming January rent-day,\nvery little consideration would be shown, and, for that\nmatter, very little would be deserved. Once out of the\nfarm, the approach of poverty would be sure.\nHence Bathsheba lived in a perception that her\npurposes were broken of. She was not a woman who\ncould hope on without good materials for the process,\ndiffering thus from the less far-Sighted and energetic,\nthough more petted ones of the sex, with whom hope\ngoes on as a sort of clockwork which the merest food\nand shelter are sufficient to wind up; and perceiving\nclearly that her mistake had been a fatal one, she\naccepted her position, and waited coldly for the end.\nThe first Saturday after Troy's departure she went\nto Casterbridge alone, a journey she had not before\ntaken since her marriage. On this Saturday Bathsheba\nwas passing slowly on foot through the crowd of rural\nbusiness-men gathered as usual in front ot the market+\nhouse, who were as usual gazed upon by the burghers\nwith feelings that those healthy lives were dearly paid\nfor by exclusion from possible aldermanship, when a\nman, who had apparently been following her, said some\nwords to another on her left hand. Bathsheba's ears\nwere keen as those of any wild animal, and she dis+\ntinctly heard what the speaker said, though her back\nwas towards him\n\"I am looking for Mrs. Troy. Is that she there?'\n\" Yes ; that's the young lady, I believe,' said the\nthe person addressed.\n\"I have some awkward news to break to her. Her\nhusband is drowned.'\nAs if endowed with the spirit of prophecy, Bathsheba\ngasped out, \"No, it is not true; it cannot be true!'\nThen she said and heard no more. The ice of self+\ncommand which had latterly gathered over her was\nbroken, and the currents burst forth again, and over\nwhelmed her. A darkness came into her eyes, and she\nfell.\nBut not to the ground. A gloomy man, who had\nbeen observing her from under the portico of the old\ncorn-exchange when she passed through the group\nwithout, stepped quickly to her side at the moment of\nher exclamation, and caught her in his arms as she sank\ndown.\n<P 387>\n\"What is it?' said Boldwood, looking up at the\nbringer of the big news, as he supported her.\n\"Her husband was drowned this week while bathing\nin Lulwind Cove. A coastguardsman found his clothes,\nand brought them into Budmouth yestersay.'\nThereupon a strange fire lighted up Boldwood's eye,\nand his face flushed with the suppressed excitement of\nan unutterable thought. Everybody's glance was now\ncentred upon him and the unconsious Bathsheba. He\nlifted her bodily off the ground, and smoothed down\nthe folds of her dress as a child might have taken a\nstorm-beaten bird and arranged its ruffled plumes, and\nbore her along the pavement to the King's Arms Inn.\nHere he passed with her under the archway into a\nprivate room; and by the time he had deposited -- so\nlothly -- the precious burden upon a sofa, Bathsheba had\nopened her eyes. Remembering all that had occurred,\nshe murmured, 'I want to go home .! '\nBoldwood left the room. He stood for a moment in\nthe passage to recover his senses. The experience had\nbeen too much for his consciousness to keep up with,\nand now that he had grasped it it had gone again. For\nthose few heavenly, golden moments she had been in his\narms. What did it matter about her not knowing it? She\nhad been close to his breast ; he had been close to hers.\nHe started onward again, and sending a woman to\nher, went out to ascertain all the facts of the case.\nThese appeared to be limited to what he had already\nheard. He then ordered her horse to be put into the\ngig, and when all was ready returned to inform her.\nHe found that, though still pale and unwell, she had in\nthe meantime sent for the Budmouth man who brought\nthe tidings, and learnt from him all there was to know.\nBeing hardly in a condition to drive home as she\nhad driven to town, Boldwood, with every delicacy of\nmanner and feeling, offered to get her a driver, or to\ngive her a seat in his phaeton, which was more com+\nfortable than her own conveyance. These proposals\nBathsheba gently declined, and the farmer at once de+\nparted.\nAbout half-an-hour later she invigorated herself by\nan effort, and took her seat and the reins as usuai-in\nexternal\n<P 388>\nappearance much as if nothing had happened.\nShe went out of the town by a tortuous back street, and\ndrove slowly along, unconscious of the road and the\nscene. The first shades of evening were showing them+\nselves when Bathsheba reached home, where, silently\nalighting and leaving the horse in the hands of the boy,\nshe proceeded at once upstairs. Liddy met her on the\nlanding. The news had preceded Bathsheba to Weather+\nbury by half-an-hour, and Liddy looked inquiringly into\nher mistress's face. Bathsheba had nothing to say.\nShe entered her bedroom and sat by the window, and\nthought and thought till night enveloped her, and the\nextreme lines only of her shape were visible. Somebody\ncame to the door, knocked, and opened it.\n' Well, what is it, Liddy ? ' she said.\n'I was thinking there must be something got for you\nto wear,' said Liddy, with hesitation.\n'What do you mean ?'\n' Mourning.'\n' No, no, no,' said Bathsheba, hurriedly.\n'But I suppose there must be something done for\npoor --  -- '\n' Not at present, I think. It is not necessary.'\n' Why not, ma'am ? '\n' Because he's still alive.'\n' How do you know that ? ' said Liddy, amazed.\n' I don't know it. But wouldn't it have heen different,\nor shouldn't I have heard more, or wouldn't they have\nfound him, Liddy ? -- or-i don't know how it is, but\ndeath would have been different from how this is. I am\nperfectly convinced that he is still alive .! '\nBathsheba remained firm in this opinion till Monday,\nwhen two circumstances conjoined to shake it. The\nfirst was a short paragraph in the local newspaper, which,\nbeyond making by a methodizing pen formidable pre+\nsumptive evidence of Troy's death by drowning, con+\ntained the important testimony of a young Mr. Barker,\nM.D., of Budmouth, who spoke to being an eyewitness\nof the accident, in a letter to the editor. In this he\nstated that he was passing over the cliff on the remoter\nside of the\n<P 389>\ncove just as the sun was setting. At that\ntime he saw a bather carried along in the current outside\nthe mouth of the cove, and guessed in an instant that\nthere was but a poor chance for him unless he should\nbe possessed of unusual muscular powers. He drifted\nbehind a projection of the coast, and Mr. Barker followed\nalong the shore in the same direction. But by the time\nthat he could reach an elevation sufficiently great to\ncommand a view of the sea beyond, dusk had set in, and\nnothing further was to be seen.\nThe other circumstance was the arrival of his clothes,\nwhen it became necessary for her to examine and identify\nthem -- though this had virtually been done long before\nby those who inspected the letters in his pockets. It\nwas so evident to her in the midst of her agitation that\nTroy had undressed in the full conviction of dressing\nagain almost immediately, that the notion that anything\nbut death could have prevented him was a perverse one\nto entertain.\nThen Bathsheba said to herself that others were\nassured in their opinion; strange that she should not\nbe. A stmnge reflection occured to her, causing her\nface to flush. Suppose that Troy had followed Fanny\ninto another world. Had he done this intentionally, yet\ncontrived to make his death appear like an accident ?\nNevertheless, this thought of how the apparent might\ndiffer from the reai-made vivid by her bygone jealousy\nof Fanny, and the remorse he had shown that night\n -- did not blind her to the perception of a likelier\ndifference, less tragic, but to herself far more disastrous.\nWhen alone late that evening beside a small fire, and\nmuch calmed down, Bathsheba took Troy's watch into\nher hand, which had been restored to her with the rest\nof the articles belonging to him. She opened the case\nas he had opened it before her a week ago. There was\nthe little coil of pale hair which had been as the fuze to\nthis great explosion.\n'He was hers and she was his; they should be gone\ntogether,' she said. 'I am nothing to either of them,\nand why should I keep her hair?' She took it in her\nhand, and held it over the fire. ' No-i'll not burn it\n-i'll keep it in memory of her, poor thing !. ' she added,\nsnatching back her hand.\n<C xlix>\n<P 390>\nOAK'S ADVANCEMENY -- A GREAT HOPE\nTHE later autumn and the winter drew on apace,\nand the leaves lay thick upon the turf of the glades\nand the mosses of the woods. Bathsheba, having\npreviously been living in a state of suspended feeling\nwhich was not suspense, now lived in a mood of\nquietude which was not precisely peacefulness. While\nshe had known him to be alive she could have thought\nof his death with equanimity; but now that it might be\nshe had lost him, she regretted that he was not hers\nstill. She kept the farm going, raked in her profits\nwithout caring keenly about them, and expended\nmoney on ventures because she had done so in bygone\ndays, which, though not long gone by, seemed infinitely\nremoved from her present. She looked back upon that\npast over a great gulf, as if she were now a dead person,\nhaving the faculty of meditation still left in her, by\nmeans of which, like the mouldering gentlefolk of the\npoet's story, she could sit and ponder what a gift life\nused to be.\nHowever, one excellent result of her general apathy\nwas the long-delayed installation of Oak as bailiff; but\nhe having virtually exercised that function for a long\ntime already, the change, beyond the substantial in+\ncrease of wages it brought, was little more than a\nnominal one addressed to the outside world.\nBoldwood lived secluded and inactive. Much of\nhis wheat and all his barley of that season had been\nspoilt by the rain. It sprouted, grew into intricate\nmats, and was ultimately thrown to the pigs in armfuls.\nThe strange neglect which had produced this ruin\nand waste became the subject of whispered talk among\nall the people round; and it was elicited from one of\nBoldwood's men that forgetfulness had nothing to do\nwith it, for he had been reminded of the danger to\nhis corn as many times and as persistently as inferiors\ndared to do. The sight of the\n<P 391>\npigs turning in disgust\nfrom the rotten ears seemed to arouse Boldwood, and\nhe one evening sent for Oak. Whether it was sug+\ngested by Bathsheba's recent act of promotion or not,\nthe farmer proposed at the interview that Gabriel\nshould undertake the superintendence of the Lower\nFarm as well as of Bathsheba's, because of the necessity\nBoldwood felt for such aid, and the impossibility of\ndiscovering a more trustworthy man. Gabriel's malig+\nnant star was assuredly setting fast.\nBathsheba, when she learnt of this proposai-for\nOak was obliged to consult her -- at first languidly\nobjected. She considered that the two farms together\nwere too extensive for the observation of one man.\nBoldwood, who was apparently determined by personal\nrather than commercial reasons, suggested that Oak\nshould be furnished with a horse for his sole use,\nwhen the plan would present no difficulty, the two\nfarms lying side by side. Boldwood did not directly\ncommunicate with her during these negotiations, only\nspeaking to Oak, who was the go-between throughout.\nAll was harmoniously arranged at last, and we now\nsee Oak mounted on a strong cob, and daily trotting\nthe length breadth of about two thousand acres\nin a cheerful spirit of surveillance, as if the crops\nbelonged to him -- the actual mistress of the one-half\nand the master of the other, sitting in their respective\nhomes in gloomy and sad seclusion.\nOut of this there arose, during the spring succeeding,\na talk in the parish that Gabriel Oak was feathering his\nnest fast.\n' Whatever d'ye think,' said Susan Tall, ' Gable Oak\nis coming it quite the dand. He now wears shining\nboots with hardly a hob in 'em, two or three times\na-week, and a tall hat a-Sundays, and 'a hardly knows\nthe name of smockfrock. When I see people strut\nenough to he cut up into bantam cocks, I stand\ndormant with wonder, and says no more .! '\nIt was eventually known that Gabriel, though paid\na fixed wage by Bathslieba independent of the fluctua+\ntions of agricultural profits, had made an engagement\nwith Boldwood by which Oak was to receive a share\nof the receipts -- a small share certainly, yet it was\nmoney of a higher quality than mere wages, and\ncapable of expansion in a way that wages were not.\n<P 392>\nSome were beginning to consider Oak a 'near' man,\nfor though his condition had thus far improved, he\nlived in no better style than hefore, occupying the\nsame cottage, paring his own potatoes, mending his\nstockings, and sometimes even making his bed with\nhis own hands. But as Oak was not only provokingly\nindifferent to public opinion, but a man who clung\npersistently to old habits and usages, simply because\nthey were old, there was room for doubt as to his\nmotives.\nA great hope had latterly germinated in Boldwood,\nwhose unreasoning devotion to Bathsheba could only\nbe characterized as a fond madness which neither\ntime nor circumstance, evil nor good report, could\nweaken or destroy. This fevered hope had grown up\nagain like a grain of mustard-seed during the quiet\nwhich followed the hasty conjecture that Troy was\ndrowned. He nourished it fearfully, and almost\nshunned the contemplation of it in earnest, lest facts\nshould reveal the wildness of the dream. Bathsheba\nhaving at last been persuaded to wear mourning, her\nappearance as she entered the church in that guise\nwas in itself a weekly addition to his faith that a\ntime was coming -- very far off perhaps, yet surely\nnearing -- when his waiting on events should have\nits reward. How long he might have to wait he had\nnot yet closely considered. what he would try to\nrecognize was that the severe schooling she had been\nsubjected to had made Bathsheba much more con+\nsiderate than she had formerly been of the feelings of\nothers, and he trusted that, should she be willing at\nany time in the future to marry any man at all, that\nman would be himself. There was a substratum of\ngood feeling in her: her self-reproach for the injury\nshe had thoughtlessly done him might be depended\nupon now to a much greater extent than before her\ninfatuation and disappointment. It would be possible\nto approach her by the channel of her good nature,\nand to suggest a friendly businessiike compact between\nthem for fulfilment at some future day, keeping the\npassionate side of his desire entirely out of her sight.\nSuch was Boldwood's hope.\nTo the eyes of the middle-aged, Bathsheba was\nperhaps additionally charming just now. Her exuber+\nance cf spirit was pruned down ; the original phantom\nof delight had shown\n<P 393>\nherself to be not too bright for\nhuman nature's daily food, and she had been able to\nenter this second poetical phase without losing much\nof the first in the process.\nBathsheba's return from a two months' visit to her\nold aunt at Norcombe afforded the impassioned and\nyearning farmer a pretext for inquiring directly after\nher -- now possibly in the ninth month of her\nwidowhood -- and endeavouring to get a notion of her\nmiddle of the haymaking, and Boldwood contrived to\n'I am glad to see you out of doors, Lydia,' he said\nShe simpered, and wondered in her heart why he\n'I hope Mrs. Troy is quite well after her long\nthe coldest-hearted neighbour could scarcely say less\n'She is quite well, sir.\n'Yes, cheerful.\n'Fearful, did you say?'\n'O no. I merely said she was cheerful.'\n'Tells you all her affairs?'\n'No, sir.\n'Some of them?'\n'Yes, sir.\n'Mrs Troy puts much confidence in you, Lydia;\nand very wisely, perhaps.'\n'She do, sir. I've been with her all through her\ntroubles, and was with her at the time of Mr.Troy's\ngoing and all. And if she were to marry again I\nexpect I should bide with her.'\n'She promises that you shali -- quite natural,' said\nthe strategic lover, throbbing throughout him at the\npresumption which Liddy's words appeared to warrant\n -- that his darling had thought of re-marriage.\n'No -- -she doesn't promise it exactly. I merely\njudge on my own account.\n'Yes       yes, I understand. When she alludes to the\npossibility of marrying again, you conclude --  -- '\n<P 394>\n'She never do allude to it, sir,' said Liddy, thinking\nhow very stupid Mr. Boldwood was getting.\n'Of course not,' he returned hastily, his hope falling\nagain. ' You needn't take quite such long reaches with\nyour rake, Lydia -- short and quick ones are best. Well,\nperhaps, as she is absolute mistress again now, it is wise\nof her to resolve never to give up her freedom.'\n' My mistress did certainly once say, though not\nseriously, that she supposed she might marry again at\nthe end of seven years from last year, if she cared to\nrisk Mr. Troy's coming back and claiming her.'\n' Ah, six years from the present time. Said that she\nmight. She might marry at once in every reasonable\nperson's opinion, whatever the lawyers may say to the\ncontrary.'\n'Have you been to ask them?' said Liddy, innocently.\n' Not I,' said Boldwood, growing red. ' Liddy, you\nneedn't stay here a minute later than you wish, so Mr,\nOak says. I am now going on a little farther. Good'\nafternoon.'\nHe went away vexed with himself, and ashamed of\nhaving for this one time in his life done anything which\ncould be called underhand. Poor Boldwood had no\nmore skill in finesse than a battering-ram, and he was\nuneasy with a sense of having made himself to appear\nstupid and, what was worse, mean. But he had, after\nall, lighted upon one fact by way of repayment. It was\na singularly fresh and fascinating fact, and though not\nwithout its sadness it was pertinent and real. In little\nmore than six years from this time Bathsheba might\ncertainly marry him. There was something definite in\nthat hope, for admitting that there might have been no\ndeep thought in her words to Liddy about marriage,\nthey showed at least her creed on the matter.\nThis pleasant notion was now continually in his mind.\nSix years were a long time, but how much shorter than\nnever, the idea he had for so long been obliged to\nendure .! Jacob had served twice seven years for\nRachel: what were six for such a woman as this ? He\ntried to like the notion of waiting for her better than\nthat of winning her at once. Boldwood felt his love\nto be so deep and strong and eternal, that it was pos+\nsible she\n<P 395>\nhad never yet known its full volume, and this\npatience in delay would afford him an opportunity of\ngiving sweet proof on the point. He would annihilate\nthe six years of his life as if they were minutes -- so little\ndid he value his time on earth beside her love. He\nwould let her see, all those six years of intangible ether+\neal courtship, how little care he had for anything but as\nit bore upon the consummation.\nMeanwhile the early and the late summer brought\nround the week in which Greenhill Fair was held.\nThis fair was frequently attended by the folk of Weather+\nbury.\n<C l>\n<P 396>\nTHE SHEEP FAIR -- TROY TOUCHES HIS WIFE'S HAND\nGREENHILL was the Nijni Novgorod of South\nWessex; and the busiest, merriest, noisiest day of the\nwhole statute number was the day of the sheep fair.\nThis yearly gathering was upon the summit of a hill\nwhich retained in good preservation the remains of an\nancient earthwork, consisting of a huge rampart and\nentrenchnaent of an oval form encircling the top of\nthe hill, though somewhat broken down here and there.\nTo each of the two chief openings on opposite sides a\nwinding road ascended, and the level green space of\nten or fifteen acres enclosed by the bank was the\nsite of the fair. A few permanent erections dotted the\nspot, but the majority of visitors patronized canvas alone\nfor resting and feeding under during the time of their\nsojourn here.\nShepherds who attended with their flocks from long\ndistances started from home two or three days, or even\na week, before the fair, driving their charges a few miles\neach day -- not more than ten or twelve -- and resting\nthem at night in hired fields by the wayside at pre+\nviously chosen points, where they fed, having fasted since\nmorning. The shepherd of each flock marched behind,\na bundle containing his kit for the week strapped upon\nhis shoulders, and in his hand his crook, which he used\nas the staff of his pilgrimage. Several of the sheep\nwould get worn and lame, and occasionally a lambing\noccurred on the road. To meet these contingencies,\nthere was frequently provided, to accompany the flocks\nfrom the remoter points, a pony and waggon into which\nthe weakly ones were taken for the remainder of the\njourney.\nThe Weatherbury Farms, however, were no such\nlong distance from the hill, and those arrangements\nwere not necessary in their case. But the large united\nflocks of Bathsheba and Farmer Boldwood formed a\nvaluable and imposing multitude which\n<P 397>\ndemanded much\nattention, and on this account Gabriel, in addition to\nBoldwood's shepherd and Cain Ball, accompanied them\nalong the way, through the decayed old town of Kings'\nbere, and upward to the plateau, -- old George the dog\nof course behind them.\nWhen the autumn sun slanted over Greenhill this\nmorning and lighted the dewy flat upon its crest, nebu+\nlous clouds of dust were to be seen floating between\nthe pairs of hedges which streaked the wide prospect\naround in all directions. These gradually converged\nupon the base of the hill, and the flocks became\nindividually visible, climbing the serpentine ways which\nled to the top. Thus, in a slow procession, they entered\nthe opening to which the roads tended, multitude after\nmultitude, horned and hornless -- blue flocks and red\nflocks, buff flocks and brown flocks, even green and\nsalmon-tinted flocks, according to the fancy of the\ncolourist and custom of the farm. Men were shouting,\ndogs were barking, with greatest animation, but the\nthronging travellers in so long a journey had grown\nnearly indifferent to such terrors, though they still\nbleated piteously at the unwontedness of their experi+\nences, a tall shepherd rising here and there in the midst\nof them, like a gigantic idol amid a crowd of prostrate\ndevotees.\nThe great mass of sheep in the fair consisted of\nSouth Downs and the old Wessex horned breeds, to\nthe latter class Bathsheba's and Farmer Boldwood's\nmainly belonged. These filed in about nine o'clock,\ntheir vermiculated horns lopping gracefully on each side\nof their cheeks in geometrically perfect spirals, a small\npink and white ear nestling under each horn. Before\nand behind came other varieties, perfect leopards as to\nthe full rich substance of their coats, and only lacking the\nspots. There were also a few of the Oxfordshire breeed,\nwhose wool was beginning to curl like a child's flaxen\nhair, though surpassed in this respect by the effeminate\nLeicesters, which were in turn less curly than the Cots+\nwolds. But the most picturesque by far was a small\nflock of Exmoors, which chanced to be there this year.\nTheir pied faces and legs, dark and heavy horns, tresses\nof wool hanging round their swarthy\n<P 398>\nforeheads, quite\nrelieved the monotony of the flocks in that quarter.\nAll these bleating, panting, and weary thousands had\nentered and were penned before the morning had far\nadvanced, the dog belonging to each flock being tied to\nthe corner of the pen containing it. Alleys for pedes+\ntrians intersected the pens, which soon became crowded\nwith buyers and sellers from far and near.\nIn another part of the hill an altogether different\nscene began to force itself upon the eye towards mid+\nday. A circular tent, of exceptional newness and size,\nwas in course of erection here. As the day drew on,\nthe flocks began to change hands, lightening the shep+\nherd's responsibilities ; and they turned their attention\nto this tent and inquired of a man at work there, whose\nsoul seemed concentrated on tying a bothering knot in\nno time, what was going on.\n' The Royal Hippodrome Performance of Turpin's\nRide to York and the Death of Black Bess,' replied the\nman promptly, without turning his eyes or leaving off\ntying.\nAs soon as the tent was completed the band struck\nup highly stimulating harmonies, and the announce+\nment was publicly made, Black Bess standing in a con+\nspicuous position on the outside, as a living proof, If\nproof were wanted, of the truth of the oracular utterances\nfrom the stage over which the people were to enter.\nThese were so convinced by such genuine appeals to\nheart and understanding both that they soon began to\ncrowd in abundantly, among the foremost being visible\nJan Coggan and Joseph Poorgrass, who were holiday\nkeeping here to-day,\n''That's the great ruffen pushing me .! ' screamed a\nwoman in front of Jan over her shoulder at him when\nthe rush was at its fiercest.\n'How can I help pushing ye when the folk behind\npush me ?' said Coggan, in a deprecating tone, turning\nwithout turning his body, which was jammed as in a vice.\nTjere was a silence ; then the drums and trumpets\nagain sent forth their echoing notes. The crowd was\nagain ectasied,\n<P 399>\nand gave another lurch in which Coggan\nand Poorgrass were again thrust by those behind upon\nthe women in front.\n'O that helpless feymels should be at the mercy of\nshe swayed like a reed shaken by the wind.\nNow,' said Coggan, appealing in an earnest voice\nto the public at large as it stood clustered about his\nshoulder-blades,'ded ye ever hear such onreasonable\nwoman as that ? Upon my carcase, neighbours, if I\ncould onlyu get out of this cheesewring, the damn women\nmight eat the show for me.! '\n'Don't ye lose yer temper, Jan!' implored Joseph\nPoorgrass, in a whisper. ' They might get their men to\nmurder us, for I think by the shine of their eyes that\nthey be a sinful form of womankind.'\nJan held his tongue, as if he had no objection to be\npacified to please a friend, and they gradually reached\nthe foot of the ladder, Poorgrass being flattened like a\njumping-jack, and the sixpence, for admission, which he\nhad got ready half-an-hour earlier, having become so\nreeking hot in the tight squeeze of his excited hand that\nthe woman in spangles, brazen rings set with glass\ndiamonds, and with chalked face and shoulders, who\ntook the money of him, hastily dropped it again from\na fear that some trick had been played to burn her\nfingers. So they all entered, and the cloth of the\ntent, to the eyes of an observer on the outside, became\nbulged into innumerable pimples such as we observe on\na sack of potatoes, caused by the various human heads,\nbacks, and elbows at high pressure within.\nAt the rear of the large tent there were two small\ndressing-tents. One of these, alloted to the male per+\nformers, was partitioned into halves by a cloth ; and in\none of the divisions there was sitting on the grass, puli\ning on a pair of jack-boots, a young man whom we\ninstantly recognise as Sergeant Troy.\nTroy's appearance in this position may be briefly\naccounted for. The brig aboard which he was taken in\nBudmouth Roads was about to start on a voyage, though\nsomewhat short of hands. Troy read the articles and\njoined, but before they sailed a boat was despatched\nacross the bay to Lulwind cove; as he\n<P 400>\nhad half expected,\nhis clothes were gone. He ultimately worked his passage\nto the United States, where he made a precarious living\nin various towns as Professor of Gymnastics, Sword\nExercise, Fencing, and Pugilism. A few months were\nsufficient to give him a distaste for this kind of life.\nThere was a certain animal form of refinement in his\nnature; and however pleasant a strange condition might\nbe whilst privations were easily warded off, it was dis+\nadvantageously coarse when money was short. There\nwas ever present, too, the idea that he could claim a\nhome and its comforts did he but chose to return to\nEngland and Weatherbury Farm. Whether Bathsheba\nthought him dead was a frequent subject of curious\nconjecture. To England he did return at last ; but the\nbut the fact of drawing nearer to Weatherbury abstracted its\nfascinations, and his intention to enter his old groove at\nthe place became modified. It was with gloom he con+\nsidered on landing at Liverpool that if he were to go home\nhis reception would be of a kind very unpleasant to con+\ntemplate ; for what Troy had in the way of emotion was\nan occasional fitful sentiment which sometimes caused\nhim as much inconvenience as emotion of a strong and\nhealthy kind. Bathsheba was not a women to be made\na fool of, or a woman to suffer in silence; and how\ncould he endure existence with a spirited wife to whom\nat first entering he would be beholden for food and\nlodging ? Moreover, it was not at all unlikely that his\nwife would fail at her farming, if she had not already\ndone so; and he would then become liable for her\nmaintenance : and what a life such a future of poverty\nwith her would be, the spectre of Fanny constantly be+\ntween them, harrowing his temper and embittering her\nwords! Thus, for reasons touching on distaste, regret,\nand shame commingled, he put off his return from day\nto day, and would have decided to put it off altogether\nif he could have found anywhere else the ready-made\nestablishment which existed for him there.\nAt this time -- the July preceding the September in\nwhich we find at Greenhill Fair -- he fell in with a\ntravelling circus which was performing in the outskirts of\na northern town. Troy introduced himself to the\nmanager by taming a restive horse of the troupe, hitting\na suspended apple with pistol-+\n<P 401>\nbullet fired from the\nanimal's back when in full gallop, and other feats. For\nhis merits in these -- all more or less based upon his ex+\nperiences as a dragoon-guardsman -- Troy was taken into\nthe company, and the play of Turpin was prepared with\na view to his personation of the chief character. Troy\nwas not greatly elated by the appreciative spirit in which\nhe was undoubtedly treated, but he thought the engage+\nment might afford him a few weeks for consideration.\nIt was thus carelessly, and without having formed any\ndefinite plan for the future, that Troy found himself\nat Greenhill Fair with the rest of the company on this\nday.\nAnd now the mild autumn sun got lower, and in\nfront of the pavilion the following incident had taken\nplace. Bathsheba -- who was driven to the fair that day\nby her odd man Poorgrass -- had, like every one else,\nread or heard the announcement that Mr. Francis, the\nGreat Cosmopolitan Equestrian and Roughrider, would\nenact the part of Turpin, and she was not yet too old\nand careworn to be without a little curiosity to see him.\nThis particular show was by far the largest and grandest\nin the fair, a horde of little shows grouping themselves\nunder its shade like chickens around a hen. The crowd\nhad passed in, and Boldwood, who had been watching\nall the day for an opportunity of speaking to her, seeing\nher comparatively isolated, came up to her side.\n\"I hope the sheep have done well to-day, Mrs. Troy?'\nhe said, nervously.\n\"O yes, thank you,' said Bathsheba, colour springing\nup in the centre of her cheeks. \"I was fortunate\nenough to sell them all just as we got upon the hill, so\nwe hadn't to pen at all.'\n\"And now you are entirely at leisure ?'\n\"Yes, except that I have to see one more dealer in\ntwo hours' time : otherwise I should be going home.\nwas looking at this large tent and the announcement.\nHave you ever seen the play of \"Turpin's Ride to\nYork?\" Turpin was a real man, was he not ?'\n\"O yes, perfectly true -- all of it. Indeed, I think\nI've heard Jan Coggan say that a relation of his knew\nTom King, Turpin's friend, quite well.'\n<P 402>\n\"Coggan is rather given to strange stories connected\nwith his relations, we must remember. I hope they\ncan all be believed.'\n\"Yes, yes; we know Coggan. But Turpin is true\nenough. You have never seen it played, I suppose?'\n\"Never. I was not allowed to go into these places\nwhen I was young. Hark.! What's that prancing?\nHow they shout!'\n\"Black Bess just started off, I suppose. Am I right\nin supposing you would like to see the performance,\nMrs. Troy ? Please excuse my mistake, if it is one;\nbut if you would like to, I'll get a seat for you with\npleasure.' Perceiving that she hesitated, he added, 'I\nmyself shall not stay to see it: I've seen it before.'\nNow Bathsheba did care a little to see the show, and\nhad only withheld her feet from the ladder because she\nfeared to go in alone. She had been hoping that Oak\nmight appear, whose assistance in such cases was always\naccepted as an inalienable right, but Oak was nowhere\nto be seen; and hence it was that she said, \"Then if\nyou will just look in first, to see if there's room, I think\nI will go in for a minute or two.'\nAnd so a short time after this Bathsheba appeared\nin the tent with Boldwood at her elbow, who, taking\nher to a \" reserved ' seat, again withdrew.\nThis feature consisted of one raised bench in very\nconspicuous part of the circle, covered with red cloth,\nand floored with a piece of carpet, and Bathsheba\nimmediately found, to her confusion, that she was the\nsingle reserved individual in the tent, the rest of the\ncrowded spectators, one and all, standing on their legs\non the borders of the arena, where they got twice as\ngood a view of the performance for half the money.\nHence as many eyes were turned upon her, enthroned\nalone in this place of honour, against a scarlet back+\nground, as upon the ponies and clown who were\nengaged in preliminary exploits in the centre, Turpin\nnot having yet appeared. Once there, Bathsheba was\nforced to make the best of it and remain: she sat\ndown, spreading her skirts with some dignity over the\nunoccupied space on each side of her, and giving a\nnew and feminine aspect to the pavilion. In a few\nminutes she noticed the fat red nape of Coggan's neck\namong those standing just\n<P 403>\nbelow her, and Joseph Poor+\ngrass's saintly profile a little further on.\nThe interior was shadowy with a peculiar shade.\nThe strange luminous semi-opacities of fine autumn\nafternoons and eves intensified into Rembrandt effects\nthe few yellow sunbeams which came through holes\nand divisions in the canvas, and spirted like jets of\ngold-dust across the dusky blue atmosphere of haze\npervading the tent, until they alighted on inner surfaces\nof cloth opposite, and shone like little lamps suspended\nthere.\nTroy, on peeping from his dressing-tent through a\nslit for a reconnoitre before entering, saw his unconscious\nwife on high before him as described, sitting as queen\nof the tournament. He started back in utter confusion,\nfor although his disguise efectually concealed his person+\nality, he instantly felt that she would be sure to recognize\nhis voice. He had several times during the day thought\nof the possibility of some Weatherbury person or other\nappearing and recognizing him; but he had taken the\nrisk carelessly. If they see me, let them, he had said.\nBut here was Bathsheba in her own person; and the\nreality of the scene was so much intenser than any of\nhis prefigurings that he felt he had not half enough\nconsidered the point.\nShe looked so charming and fair that his cool mood\nabout Weatherbury people was changed. He had not\nexpected her to exercise this power over him in the\ntwinkling of an eye. Should he go on, and care nothing ?\nHe could not bring himself to do that. Beyond a politic\nwish to remain unknown, there suddenly arose in him\nnow a sense of shame at the possibility that his\nattractive young wife, who already despised him, should\ndespise him more by discovering him in so mean a\ncondition after so long a time. He actually blushed\nat the thought, and was vexed beyond measure that\nhis sentiments of dislike towards Weatherbury should\nhave led him to dally about the country in this way.\nBut Troy was never more clever than when absolutely\nat his wit's end. He hastily thrust aside the curtain\ndividing his own little dressing space from that of the\nmanager and proprietor, who now appeared as the\nindividual called Tom King as far\n<P 404>\ndown as his waist, and\nas the aforesaid respectable manager thence to his toes.\n\"Here's the devil to pay!' said Troy.\n\"How's that ?'\n\"Why, there's a blackguard creditor in the tent I don't\nwant to see, who'll discover me and nab me as sure as\nSatan if I open my mouth. What's to be done?'\nYou must appear now, I think.'\n\"I can't.'\nBut the play must proceed.'\n\"Do you give out that Turpin has got a bad cold,\nand can't speak his part, but that he'll perform it just\nthe same without speaking.'\nThe proprietor shook his head.\n\"Anyhow, play or no play, I won't open my mouth,\nsaid Troy, firmly.\n\"Very well, then let me see. I tell you how we'll\nmanage,' said the other, who perhaps felt it would be\nextremely awkward to offend his leading man just at\nthis time. \"I won't tell 'em anything about your\nkeeping silence; go on with the piece and say nothing,\ndoing what you can by a judicious wink now and then,\nand a few indomitable nods in the heroic places, you\nknow. They'll never find out that the speeches are\nomitted.'\nThis seemed feasible enough, for Turpin's speeches\nwere not many or long, the fascination of the piece\nlying entirely in the action ; and accordingly the play\nbegan, and at the appointed time Black Bess leapt\ninto the grassy circle amid the plaudits of the spectators.\nAt the turnpike scene, where Bess and Turpin are hotly\npursued at midnight by the officers, and half-awake\ngatekeeper in his tasselled nightcap denies that any\nhorseman has passed, Coggan uttered a broad-chested\n\"Well done!' which could be heard all over the fair\nabove the bleating, and Poorgrass smiled delightedly\nwith a nice sense of dramatic contrast between our\nhero, who coolly leaps the gate, and halting justice in\nthe form of his enemies, who must needs pull up\ncumbersomely and wait to be let through. At the\ndeath of Tom King, he could not refrain from seizing\nCoggan by the hand, and whispering, with tears in his\neyes, \"Of\n<P 405>\ncourse he's not really shot, Jan  --  only\nseemingly!' And when the last sad scene came on,\nand the body of the gallant and faithful Bess had to\nbe carried out on a shutter by twelve volunteers from\namong the spectators, nothing could restrain Poorgrass\nfrom lending a hand, exclaiming, as he asked Jan to\njoin him, \"Twill be something to tell of at Warren's in\nfuture years, Jan, and hand down to our children.' For\nmany a year in Weatherbury, Joseph told, with the air\nof a man who had had experiences in his time, that he\ntouched with his own hand the hoof of Bess as she lay\nupon the board upon his shoulder. If, as some thinkers\nhold, immortality consists in being enshrined in others'\nmemories, then did Black Bess become immortal that\nday if she never had done so before.\nMeanwhile Troy had added a few touches to his\nordinary make-up for the character, the more effectually\nto disguise himself, and though he had felt faint qualms\non first entering, the metamorphosis effected by judici+\nously \"lining' his face with a wire rendered him safe from\nthe eyes of Bathsheba and her men. Nevertheless, he\nwas relieved when it was got through.\nThere a second performance in the evening, and\nthe tent was lighted up. Troy had taken his part very\nquietly this time, venturing to indroduce a few speeches\non occasion ; and was just concluding it when, whilst\nstanding at the edge of the circle contiguous to the first\nrow of spectators, he observed within a yard of him the\neye of a man darted keenly into his side features. Troy\nhastily shifted his position, after having recognized in\nsworn enemy, who still hung about the outskirts of\nAt first Troy resolved to take no notice and abide\nby circumstances. That he had been recongnized by\nthis man was highly probable; yet there was room for\na doubt. Then the great objection he had felt to\nallowing news of his proximity to precede him to\nWeatherbury in the event of his return, based on a\nfeeling that knowledge of his present occupation would\ndiscredit him still further in his wife's eyes, returned\nin full force. Moreover, should he resolve not to\nreturn at all, a tale of his being alive and being in\nthe neighbourhood would be\n<P 406>\nawkward ; and he was\nanxious to acquire a knowledge of his wife's temporal\naffairs before deciding which to do.\nIn this dilemma Troy at once went out to recon+\nnoitre. It occurred to him that to find Pennyways, and\nmake a friend of him if possible, would be a very wise\nact. He had put on a thick beard borrowed from the\nestablishment, and this he wandered about the fair+\nfield. It was now almost dark, and respectable people\nwere getting their carts and gigs ready to go home\nThe largest refreshment booth in the fair was provided\nby an innkeeper from a neighbouring town. This was\nconsidered an unexceptionable place for obtaining the\nnecessary food and rest: Host Trencher (as he was\njauntily called by the local newspaper) being a sub+\nstantial man of high repute for catering through all the\ncounty round. The tent was divided into first and\nsecond-class compartments, and at the end of the first+\nclass division was a yet further enclosure for the most\nexclusive, fenced of from the body of the tent by a\nluncheon-bar, behind which the host himself stood\nbustling about in white apron and shirt-sleeves, and look+\ning as if he had never lived anywhere but under canvas\nall his life. In these penetralia were chairs and a table,\nwhich, on candles being lighted, made quite a cozy and\nluxurious show, with an urn, plated tea and coffee pots,\nchina teacups, and plum cakes.\nTroy stood at the entrance to the booth, where a\ngipsy-woman was frying pancakes over a little fire of\nsticks and selling them at a penny a-piece, and looked\nover the heads of the people within. He could see\nnothing of Pennyways, but he soon discerned Bathsheba\nthrough an opening into the reserved space at the\nfurther end. Troy thereupon retreated, went round the\ntent into the darkness, and listened. He could hear\nBathsheba's voice immediately inside the canvas ; she\nwas conversing with a man. A warmth overspread his\nface: surely she was not so unprincipled as to flirt in\na fair! He wondered if, then, she reckoned upon his\ndeath as an absolute certainty. To get at the root of\nthe matter, Troy took a penknife from his pocket and\nsoftly made two little cuts crosswise in the cloth, which,\nby folding back the corners left a hole the size of a\n<P 407>\nwafer. Close to this he placed his face, withdrawing\nit again in a movement of surprise; for his eye had\nbeen within twelve inches of the top of Bathsheba's\nhead. lt was too near to be convenient. He made\nanother hole a little to one side and lower down, in a\nshaded place beside her chair, from which it was easy\nand safe to survey her by looking horizontally'.\nTroy took in the scene completely now. She was\nleaning back, sipping a cup of tea that she held in her\nhand, and the owner of the male voice was Boldwood,\nwho had apparently just brought the cup to her,\nBathsheba, being in a negligent mood, leant so idly\nagainst the canvas that it was pressed to the shape of\nher shoulder, and she was, in fact, as good as in 'rioy's\narms; and he was obliged to keep his breast carefully\nbackward that she might not feel its warmth through the\ncloth as he gazed in.\nTroy found unexpected chords of feeling to be stirred\nagain within him as they had been stirred earlier in the\nday. She was handsome as ever, and she was his. It\nwas some minutes before he could counteract his sudden\nwish to go in, and claim her. Then he thought how\nthe proud girl who had always looked down upon him\neven whilst it was to love him, would hate him on dis+\ncovering him to be a strolling player. Were he to make\nhimself known, that chapter of his life must at all risks\nbe kept for ever from her and from the Weatherbury\npeople, or his name would be a byword throughout the\nparish. He would be nicknamed 'Turpin' as long as\nhe lived. Assuredly before he could claim her these few\npast months of his existence must be entirely blotted out.\n\"Shall I get you another cup before you start,\nma'am?' said Farmer Boldwood.\nI thank you,\" said Bathsheba. \" But I must be going\nat once. It was great neglect in that man to keep me\nwaiting here till so late. I should have gone two hours\nago, if it had not been for him. I had no idea of\ncoming in here; but there's nothing so refreshing as a\ncup of tea, though I should never have got one if you\nhadn't helped me.'\nTroy scrutinized her cheek as lit by the candles,\nand watched each varying shade thereon, and the\nwhite shell-like sinuosities\n<P 408>\nof her little ear. She took\nout her purse and was insisting to Boldwood on paying\nfor her tea for herself, when at this moment Pennyways\nentered the tent. Troy trembled : here was his scheme\nfor respectability endangered at once. He was about\nto leave his hole of espial, attempt to follow Pennyways,\nand find out if the ex-bailiff had recognized him, when\nhe was arrested by the conversation, and found he was\ntoo late.\n\"Excuse me, ma'am,' said Pennyways ; \"I've some\nprivate information for your ear alone.'\n\"I cannot hear it now,' she said, coldly. That\nBathsheba could not endure this man was evident; in\nfact, he was continually coming to her with some tale\nor other, by which he might creep into favour at the\nexpense of persons maligned.\n\"I'll write it down,' said Pennyways, confidently. He\nstooped over the table, pulled a leaf from a warped\npocket-book, and wrote upon the paper, in a round\nhand --\n\" <1Your husband is here. I've seen him. Who's the fool\nnow?'\nThis he folded small, and handed towards her.\nBathsheba would not read it ; she would not even put\nout her hand to take it. Pennyways, then, with a laugh\nof derision, tossed it into her lap, and, turning away,\nleft her.\nFrom the words and action of Pennyways, Troy,\nthough he had not been able to see what the ex-bailiff\nwrote, had not a moment's doubt that the note referred\nto him. Nothing that he could think of could be done\nto check the exposure. \" Curse my luck.!' he whispered,\nand added imprecations which rustled in the gloom like\na pestilent wind. Meanwhile Boldwood said, taking up\nthe note from her lap --\n\"Don't you wish to read it, Mrs. Troy? If not,\nI'll destroy it.\"\n\" Oh, well,' said Bathsheba, carelessly, \"perhaps it is\nunjust not to read it; but I can guess what it is about.\nHe wants me to recommend him, or it is to tell me of\nsome little scandal or another connected with my work+\npeople. He's always doing that.'\nBathsheba held the note in her right hand. Bold+\nwood handed towards her a plate of cut bread-and+\nbutter; when, in order to take a slice, she put the note\ninto her left hand, where she was still holding the purse,\nand then allowed her hand to drop\n<P 409>\nbeside her close to\nthe canvas. The moment had come for saving his game,\nand Troy impulsively felt that he would play the card,\nFor yet another time he looked at the fair hand, and\nsaw the pink finger-tips, and the blue veins of the\nwrrist, encircled by a bracelet of coral chippings which\nshe wore: how familiar it all was to him.! Then, with\nthe lightning action in which he was such an adept, he\nnoiselessly slipped his hand under the bottom of the\ntent-cloth, which was far from being pinned tightly down,\nlifted it a little way, keeping his eye to the hole,\nsnatched the note from her fingers, dropped the canvas,\nand ran away in the gloom towards the bank and ditch,\nsmiling at the scream of astonishment which burst from\nher. Troy then slid down on the outside of the rampart,\nhastened round in the bottom of the entrenchment to\na distance of a hundred yards, ascended again, and\ncrossed boldly in a slow walk towards the front entrance\nof the tent. His object was now to get to Pennyways,\nand prevent a repetition of the announcement until\nsuch time as he should choose.\nTroy reached the tent door, and standing among the\ngroups there gathered, looked anxiously for Pennyways,\nevidently not wishing to make himself prominent by\ninquiring for him. One or two men were speaking of\na daring attempt that had just been made to rob a\nyoung lady by lifting the canvas of the tent beside her.\nIt was supposed that the rogue had imagined a slip of\npaper which she held in her hand to he a bank note,\nfor he had seized it, and made off with it, leaving her\npurse behind. His chagrin and disappointment at dis+\ncovering its worthlessness would be a good joke, it was\nsaid. However, the occurrence seemed to have become\nknown to few, for it had not interrupted a fiddler, who\nhad lately begun playing by the door of the tent, nor\nthe four bowed old men with grim countenances and\nwalking-sticks in hand, who were dancing \"Major\nMalley's Reel' to the tune. Behind these stood\nPennyways. Troy glided up to him, beckoned, and\nwhispered a few words ; and with a mutual glance of\nconcurrence the two men went into the night together.\n<C li>\n<P 410>\nBATHSHEBA TALKS WITH HER OUTRIDER\nTHE arrangement for getting back again to Weather+\nbury had been that Oak should take the place of Poor+\ngrass in Bathsheba's conveyance and drive her home,\nit being discovered late in the afternoon that Joseph\nwas suffering from his old complaint, a multiplying eye,\nand was, therefore, hardly trustworthy as coachman and\nprotector to a woman. But Oak had found himself so\noccupied, and was full of so many cares relative to\nthose portions of Boldwood's flocks that were not\ndisposed of, that Bathsheba, without telling Oak or\nanybody, resolved to drive home herself, as she had\nmany times done from Casterbridge Market, and trust\nto her good angel for performing the journey un+\nmolested. But having fallen in with Farmer Boldwood\naccidentally (on her part at least) at the refreshment+\ntent, she found it impossible to refuse his offer to ride\non horseback beside her as escort. It had grown\ntwilight before she was aware, but Boldwood assured\nher that there was no cause for uneasiness, as the\nmoon would be up in half-an-hour.\nImmediately after the incident in the tent, she had\nrisen to go -- now absolutely alarmed and really grateful\nfor her old lover's protection -- though regretting Gabriel's\nabsence, whose company she would have much preferred,\nas being more proper as well as more pleasant, since he\nwas her own managing-man and servant. This, how+\never, could not be helped; she would not, on any\nconsideration, treat Boldwood harshly, having once\nalready iliused him, and the moon having risen, and\nthe gig being ready, she drove across the hilitop in\nthe wending way's which led downwards -- to oblivious\nobscurity, as it seemed, for the moon and the hill it\nflooded with light were in appearance on a level, the\nrest of the world lying as a vast shady concave between\nthem. Boldwood mounted his horse, and\n<P 411>\nfollowed in\nclose attendance behind. Thus they descended into\nthe lowlands, and the sounds of those left on the\nhill came like voices from the sky, and the lights were\nas those of a camp in heaven. They soon passed the\nmerry stragglers in the immediate vicinity of the hill,\ntraversed Kingsbere, and got upon the high road.\nThe keen instincts of Bathsheba had perceived that\nthe farmer's staunch devotion to herself was still un+\ndiminished, and she sympathized deeply. The sight\nhad quite depressed her this evening; had reminded\nher of her folly; she wished anew, as she had wished\nmany months ago, for some means of making repara+\ntion for her fault. Hence her pity for the man who\nso persistently loved on to his own injury and per+\nmanent gloom had betrayed Bathsheba into an injudi+\ncious considerateness of manner, which appeared\nalmost like tenderness, and gave new vigour to the\nexquisite dream of a Jacob's seven years service in\npoor Boldwood's mind.\nHe soon found an excuse for advancing from his\nposition in the rear, and rode close by her side. They\nhad gone two or three miles in the moonlight, speaking\ndesultorily across the wheel of her gig concerning the\nfair, farming, Oak's usefulness to them both, and other\nindifferent subjects, when Boldwood said suddenly\nand simply --\n\"Mrs. Troy, you will marry again some day?'\nThis point-blank query unmistakably confused her,\nit was not till a minute or more had elapsed that\nshe said, \"I have not seriously thought of any such\nsubject.'\n\"I quite understand that. Yet your late husband\nhas been dead nearly one year, and -- '\n\" You forget that his death was never absolutely\nproved, and may not have taken place; so that I may\nnot be really a widow,' she said, catching at the straw of\nescape that the fact afforded\n\"Not absolutely proved, perhaps, but it was proved\ncircumstantially. A man saw him drowning, too. No\nreasonable person has any doubt of his death; nor\nhave you, ma'am, I should imagine.\n\"O yes I have, or I should have acted differently,'\nshe said, gently. \"From the first, I have had a strange\nuaccountable\n<P 412>\nfeeling that he could not have perished,\nbut I have been able to explain that in several ways\nsince. Even were I half persuaded that I shall see\nhim no more, I am far from thinking of marriage with\nanother. I should be very contemptible to indulge in\nsuch a thought.'\nThey were silent now awhile, and having struck into\nan unfrequented track across a common, the creaks of\nBoldwood's saddle and gig springs were all the\nsounds to be heard. Boldwood ended the pause.\n\"Do you remember when I carried you fainting in\nmy arms into the King's Arms, in Casterbridge? Every\ndog has his day: that was mine.'\n\"I know-i know it all,' she said, hurriedly.\n\"I, for one, shall never cease regretting that events\nso fell out as to deny you to me.'\n\"I, too, am very sorry,' she said, and then checked\nherself. \"I mean, you know, I am sorry you thought\ni -- '\n\"I have always this dreary pleasure in thinking over\nthose past times with you -- that I was something to\nyou before <1he>1 was anything, and that you belonged\n<1almost>1 to me. But, of course, that's nothing. You\nnever liked me.'\n\" I did ; and respected you, too.'\n\"Do you now?'\n\"Yes.'\n\"Which?'\n\"How do you mean which?'\n\"Do you like me, or do you respect me?'\n\"I don't know -- at least, I cannot tell you. It is\ndifficult for a woman to define her feelings in language\nwhich is chiefly made by men to express theirs. My\ntreatment of you was thoughtless, inexcusable, wicked.!\nI shall eternally regret it. If there had been anything\nI could have done to make amends I would most\ngladly have done it -- there was nothing on earth I so\nlonged to do as to repair the error. But that was not\npossible.'\n\"Don't blame yourself -- you were not so far in the\nwrong as you suppose. Bathsheba, suppose you had\nreal complete proof\n<P 413>\nthat you are what, in fact, you are\n -- a widow -- would you repair the old wrong to me by\nmarrying me?'\n\"I cannot say. I shouldn't yet, at any rate.'\n\"But you might at some future time of your life?'\n\"O yes, I might at some time.'\n\"Well, then, do you know that without further proof\nof any kind you may marry again in about six years\nfrom the present -- subject to nobody's objection or\nblame?'\n\"O yes,' she said, quickly. \" I know all that. But\ndon't talk of it -- seven or six years -- where may we all\nbe by that time?'\n\"They will soon glide by, and it will seem an\nastonishingly short time to look back upon when they\nare past -- much less than to look forward to now.'\n\"Yes, yes; I have found that in my own experience.'\n\" Now listen once more,' Boldwood pleaded. \"If I\nwait that time, will you marry me? You own that you\nowe me amends-iet that be your way of making them.'\n\"But, Mr. Boldwood -- six years -- '\n\"Do you want to be the wife of any other man?'\n\"No indeed! I mean, that I don't like to talk\nabout this matter now. Perhaps it is not proper, and\nI ought not to allow it. Let us drop it. My husband\nmay be living, as I said.'\n\"Of course, I'll drop the subject if you wish. But\npropriety has nothing to do with reasons. I am a\nmiddle-aged man, willing to protect you for the\nremainder of our lives. On your side, at least, there\nis no passion or blamable haste -- on mine, perhaps,\nthere is. But I can't help seeing that if you choose\nfrom a feeling of pity, and, as you say, a wish to make\namends, to make a bargain with me for a far-ahead\ntime -- an agreement which will set all things right\nand make me happy, late though it may be -- there is\nno fault to be found with you as a woman. Had'nt\nI the first place beside you? Haven't you been\nalmost mine once already? Surely you can say to\nme as much as this, you will have me back again\nshould circumstances permit ? Now, pray speak ! O\nBathsheba, promise -- it is only a little promise -- that\nif you marry again, you will marry me.!'\nHis tone was so excited that she almost feared him\nat this\n<P 414>\nmoment, even whilst she sympathized. It was\na simple physical fear -- the weak of the strong; there\nno emotional aversion or inner repugnance. She\nsaid, with some distress in her voice, for she remembered\nvividly his outburst on the Yalbury Road, and shrank\nfrom a repetition of his anger: --\n\"I will never marry another man whilst you wish me\nto be your wife, whatever comes -- but to say more -- you\nhave taken me so by surprise -- -'\n\"But let it stand in these simple words -- that in six\nyears' time you will be my wife ? Unexpected accidents\nwe'll not mention, because those, of course, must be\ngiven way to. Now, this time I know you will keep\nyour word.'\n\"That's why I hesitate to give it.'\n\"But do give it ! Remember the past, and be kind.'\nShe breathed; and then said mournfully : \"O what\nshall I do ? I don't love you, and I much fear that I\nnever shall love you as much as a woman ought to love\na husband. If you, sir, know that, and I can yet give\nyou happiness by a mere promise to marry at the end of\nsix years, if my husband should not come back, it is a\ngreat honour to me. And if you value such an act of\nfriendship from a woman who doesn't esteem her+\nself as she did, and has little love left, why it\nwili -- '\n\"Promise!.'\n\" -- Consider, if I cannot promise soon.'\n\"But soon is perhaps never?'\n\"O no, it is not.! I mean soon. Christmas, we'll\nsay.'\n\"Christmas.!' He said nothing further till he\nadded : \"Well, I'll say no more to you about it till that\ntime.'\nBathsheba was in a very peculiar state of mind,\nwhich showed how entirely the soul is the slave of the\nbody, the ethereal spirit dependent for its quality upon\nthe tangible flesh and blood. It is hardly too much to\nsay that she felt coerced by a force stronger than her\nown will, not only into the act of promising upon this\nsingularly remote and vague matter, but into the emo+\ntion of fancying that she ought to promise. When the\nweeks intervening between the night of this conversa+\n<P 415>\ntion and Christmas day began perceptibly to diminish,\nher anxiety and perplexity increased.\nOne day she was led by an accident into an oddly\nconfidential dialogue with Gabriel about her difficulty\nIt afforded her a little relief -- of a dull and cheerless\nkind. They were auditing accounts, and something\noccurred in the course of their labours which led Oak\nto say, speaking of Boldwood, \" He'll never forget you,\nma'am, never.'\nThen out came her trouble before she was aware ;\nand she told him how she had again got into the toils;\nwhat Boldwood had asked her, and how he was ex+\npecting her assent. \"The most mournful reason of all\nfor my agreeing to it,' she said sadly, 'and the true\nreason why I think to do so for good or for evil, is this\n -- it is a thing I have not breathed to a living soul as\nyet-i believe that if I don't give my word, he'll go out\nof his mind.'\n\"Really, do ye?' said Gabriel, gravely.\n'I believe this,' she continued, with reckless frank+\nness; \"and Heaven knows I say it in a spirit the very\nreverse of vain, for I am grieved and troubled to my\nsoul about it-i believe I hold that man's future in my\nhand. His career depends entirely upon my treatment\nof him. O Gabriel, I tremble at my responsibility, for\nit is terrible.!'\n\"Well, I think this much, ma'am, as I told you years\nago,' said Oak, 'that his life is a total blank whenever\nhe isn't hoping for 'ee; but I can't suppose-i hope\nthat nothing so dreadful hangs on to it as you fancy.\nHis natural manner has always been dark and strange,\nyou know. But since the case is so sad and oddiike,\nwhy don't ye give the conditional promise? I think I\nwould.'\n\"But is it right? Some rash acts of my past life\nhave taught me that a watched woman must have very\nmuch circumspection to retain only a very little credit,\nand I do want and long to be discreet in this! And\nsix years -- why we may all be in our graves by that\nBATHSHEBA TALKS WITH OAK\ntime, even if Mr. Troy does not come back again, which\nhe may not impossibly do.! Such thoughts give a sort\nof absurdity to the scheme. Now, isn't it preposterous,\n<P 416>\nGabriel? However he came to dream of it, I cannot think.\nBut is it wrong? You know -- you are older than I.'\n\"Eight years older, ma'am.'\n\"Yes, eight years -- and is it wrong?'\n\"Perhaps it would be an uncommon agreement for a\nman and woman to make : I don't see anything really\nwrong about it,' said Oak, slowly. \"In fact the very\nthing that makes it doubtful if you ought to marry en\nunder any condition, that is, your not caring about him\n -- for I may suppose --  -- '\n\"Yes, you may suppose that love is wanting,' she\nsaid shortly. \"Love is an utterly bygone, sorry, worn+\nout, miserable thing with me -- for him or any one else.'\n\"Well, your want of love seems to me the one thing\nthat takes away harm from such an agreement with him.\nIf wild heat had to do wi' it, making ye long to over+\ncome the awkwardness about your husband's vanishing,\nit mid be wrong ; but a cold-hearted agreement to oblige\na man seems different, somehow. The real sin, ma'am\nin my mind, lies in thinking of ever wedding wi' a man\nyou don't love honest and true.'\n\"That I'm willing to pay the penalty of,' said Bath+\nsheba, firmly. \" You know, Gabriel, this is what I can+\nnot get off my conscience -- that I once seriously injured\nhim in sheer idleness. If I had never played a trick\nupon him, he would never have wanted to marry me.\nO if I could only pay some heavy damages in money\nto him for the harm I did, and so get the sin off my\nsoul that way!... Well, there's the debt, which can\nonly be discharged in one way, and I believe I am\nbound to do it if it honestly lies in my power, without\nany consideration of my own future at all. When a\nrake gambles away his expectations, the fact that it is\nan inconvenient debt doesn't make him the less liable.\nI've been a rake, and the single point I ask you is, con+\nsidering that my own scruples, and the fact that in the\neye of the law my husband is only missing, will keep\nany man from marrying me until seven years have\npassed -- am I free to entertain such an idea, even\nthough 'tis a sort of penance -- for it will be that? I\nhate the act of marriage under such circumstances, and\nthe class of women I should seem to belong to by doing\nit!'\n<P 417>\n\"It seems to me that all depends upon whe'r you\nthink, as everybody else do, that your husband is\ndead.'\n\"I shall get to, I suppose, because I cannot help\nfeeling what would have brought him back long before\nthis time if he had lived.'\n\"Well, then, in religious sense you will be as free\nto <1think>1 o' marrying again as any real widow of one\nyear's standing. But why don't ye ask Mr. Thirdly's\nadvice on how to treat Mr. Boldwood?'\n\"No. When I want a broad-minded opinion for\ngeneral enlightenment, distinct from special advice, I\nnever go to a man who deals in the subject pro+\nfessionally. So I like the parson's opinion on law, the\nlawyer's on doctoring, the doctor's on business, and my\nbusiness-man's -- that is, yours -- on morals.'\n'And on love --  -- '\n\"My own.'\n\"I'm afraid there's a hitch in that argument,' said\nOak, with a grave smile.\nShe did not reply at once, and then saying, 'Good\nevening Mr. Oak,' went away.\nShe had spoken frankly, and neither asked nor ex+\npected any reply from Gabriel more satisfactory than\nthat she had obtained. Yet in the centremost parts of\nher complicated heart there existed at this minute a\nlittle pang of disappointment, for a reason she would\nnot allow herself to recognize. Oak had not once\nwished her free that he might marry her himself -- had\nnot once said, \"I could wait for you as well as he.'\nThat was the insect sting. Not that she would have\nlistened to any such hypothesis. O no -- for wasn't\nshe saying all the time that such thoughts of the future\nwere improper, and wasn't Gabriel far too poor a man\nto speak sentiment to her? Yet he might have just\nhinted about that old love of his, and asked, in a playful\noff-hand way, if he might speak of it. It would have\nseemed pretty and sweet, if no more; and then she\nwould have shown how kind and inoffensive a woman's\n\"No' can sometimes be. But to give such cool advice\n -- the very advice she had asked for -- it ruffled our\nheroine all the afternoon.\n<C lii>\n<P 418>\nCONVERGING COURSES\n        I\nCHRISTMAS-EVE came, and a party that Boldwood\nwas to give in the evening was the great subject of talk\nin Weatherbury. It was not that the rarity of Christmas\nparties in the parish made this one a wonder, but that\nBoldwood should be the giver. The announcement\nhad had an abnormal and incongruous sound, as if one\nshould hear of croquet-playing in a cathedral aisle, or\nthat some much-respected judge was going upon the\nstage. That the party was intended to be a truly jovial\none there was no room for doubt. A large bough of\nmistletoe had been brought from the woods that day, and\nsuspended in the hall of the bachelor's home. Holly\nand ivy had followed in armfuls. From six that morning\ntill past noon the huge wood fire in the kitchen roared\nand sparkled at its highest, the kettle, the saucepan, and\nthe threeiegged pot appearing in the midst of the flames\nlike Shadrach, Meshach, and Abednego ; moreover,\nroasting and basting operations were continually\ncarried on in front of the genial blaze.\nAs it grew later the fire was made up in the large\nlong hall into which the staircase descended, and all\nencumbrances were cleared out for dancing. The log\nwhich was to form the back-brand of the evening fire\nwas the uncleft trunk of a tree, so unwieldy that it could\nbe neither brought nor rolled to its place ; and accord+\ningly two men were to be observed dragging and heaving\nit in by chains and levers as the hour of assembly drew\nnear.\nIn spite of all this, the spirit of revelry was wanting\nIn the atmosphere of the house. Such a thing had\nnever been attempted before by its owner, and it was\nnow done as by a wrench. Intended gaieties would\ninsist upon appearing like solemn grandeurs, the organ+\nization of the whole effort was\n<P 419>\ncarried out coldly,by\nhirelings, and a shadow seemed to move about the\nrooms, saying that the proceedings were unnatural to\nthe place and the lone man who lived therein, and hence\nnot good.\nBathsheba was at this time in her room, dressing for\nthe event. She had called for candles, and Liddy\nentered and placed one on each side of her mistress's\nglass.\n\"Don't go away, Liddy,' said Bathsheba, almost\ntimidly.' I am foolishly agitated-i cannot tell why.\nI wish I had not been obliged to go to this dance; but\nthere's no escaping now. I have not spoken to Mr.\nBoldwood since the autumn, when I promised to see\nhim at Christmas on business, but I had no idea there\nwas to be anything of this kind.'\n\"But I would go now,' said Liddy, who was going\nwith her; for Boldwood had been indiscriminate in his\ninvitations.\n\"Yes, I shall make my appearance, of course,' said\nBathsheba. ' But I am <1the cause>1 of the party, and that\nupsets me! -- Don't tell, Liddy.'\n\"O no, ma'am, You the cause of it, ma'am ?'\n\"Yes. I am the reason of the party-i. If it had\nnot been for me, there would never have been one. I\ncan't explain any more -- there's no more to be explained.\nI wish I had never seen Weatherbury.'\n\"That's wicked of you -- to wish to be worse off than\nyou are.'\n\"No, Liddy. I have never been free from trouble\nsince I have lived here, and this party is likely to bring\nme more. Now, fetch my black silk dress, and see how\nit sits upon me.'\n\"But you will leave off that, surely, ma'am? You\nhave been a widowiady fourteen months, and ought to\nbrighten up a little on such a night as this.'\n\"Is it necessary? No; I will appear as usual, for if\nI were to wear any light dress people would say things\nabout me, and I should seem to he rejoicing when I am\nsolemn all the time. The party doesn't suit me a bit;\nbut never mind, stay and help to finish me off.'\n                     III\n<P 420>\nBoldwood was dressing also at this hour. A tailor\nfrom Casterbridge was with him, assisting him in the\noperation of trying on a new coat that had just beem\nbrought home.\nNever had Boldwood been so fastidious, unreasonable\nabout the fit, and generally difficult to please. The\ntailor walked round and round him, tugged at the waist,\npulled the sleeve, pressed out the collar, and for the\nfirst time in his experience Boldwood was not bored+\nTimes had been when the farmer had exclaimed against\nall such niceties as childish, but now no philosophic or\nhasty rebuke whatever was provoked by this man for\nattaching as much importance to a crease in the coat\nas to an earthquake in South America. Boldwood at\nlast expressed himself nearly satisfied, and paid the bill,\nthe tailor passing out of the door just as Oak came in\nto report progress for the day.\n\"Oh, Oak,' said Boldwood. \"I shall of course see\nyou here to-night. Make yourself merry. I am deter+\nmined that neither expense nor trouble shall be spared.'\n\"I'll try to be here, sir, though perhaps it may not\nbe very early,' said Gabriel, quietly. \"I am glad indeed\nto see such a change in 'ee from what it used to be.'\n\" Yes-i must own it-i am bright to-night : cheerful\nand more than cheerfui-so much so that I am almost\nsad again with the sense that all of it is passing away.\nAnd sometimes, when I am excessively hopeful and\nblithe, a trouble is looming in the distance : so that I\noften get to look upon gloom in me with content, and\nto fear a happy mood. Still this may be absurd-i feel\nthat it is absurd. Perhaps my day is dawning at last.'\n\"I hope it 'ill be a long and a fair one.'\n\"Thank you -- thank you. Yet perhaps my cheerfui\nmess rests on a slender hope. And yet I trust my hope.\nIt is faith, not hope. I think this time I reckon with\nmy host. -- Oak, my hands are a little shaky, or some+\nthing; I can't tie this neckerchief properly. Perhaps\nyou will tie it for me. The fact is, I have not been well\nlately, you know.'\n\"I am sorry to hear that, sir.'\n<P 421>\n\"Oh, it's nothing. I want it done as well as you can,\nplease. Is there any late knot in fashion, Oak?'\n\"I don't know, sir,' said Oak. His tone had sunk to\nsadness.\nBoldwood approached Gabriel, and as Oak tied the\nneckerchief the farmer went on feverishly --\n\"Does a woman keep her promise, Gabriel?'\n\"If it is not inconvenient to her she may.'\n\" -- Or rather an implied promise.'\n\"I won't answer for her implying,' said Oak, with\nfaint bitterness. \"That's a word as full o' holes as a\nsieve with them.'\n\"Oak, don't talk like that. You have got quite\ncynical lately -- how is it? We seem to have shifted our\npositions: I have become the young and hopeful man,\nand you the old and unbelieving one. However, does\na woman keep a promise, not to marry, but to enter on\nan engagement to marry at some time? Now you\nknow women better than i-tell me.'\n\"I am afeard you honour my understanding too much.\nHowever, she may keep such a promise, if it is made\nwith an honest meaning to repair a wrong.'\n\"It has not gone far yet, but I think it will soon --\nyes, I know it will,' he said, in an impulsive whisper.\n\"I have pressed her upon the subject, and she inclines\nto be kind to me, and to think of me as a husband at\na long future time, and that's enough for me. How\ncan I expect more? She has a notion that a woman\nshould not marry within seven years of her husband's\ndisappearance -- that her own self shouldn't, I mean --\nbecause his body was not found. It may be merely\nthis legal reason which influences her, or it may be a\nreligious one, but she is reluctant to talk on the point+\nYet she has promised -- implied -- that she will ratify an\nengagement to-night.'\n\"Seven years,' murmured Oak.\n\"No, no -- it's no such thing!' he said, with im+\npatience. Five years, nine months, and a few days.\nFifteen months nearly have passed since he vanished,\nand is there anything so wonderful in an engagement of\nlittle more than five years?'\n\"It seems long in a forward view. Don't build too\nmuch upon such promises, sir. Remember, you have\nonce be'n deceived. Her meaning may be good; but\nthere -- she's young yet.'\n<P 422>\n\"Deceived? Never! ' said Boldwood, vehemently.\n\"She never promised me at that first time, and hence\nshe did not break her promise! If she promises me,\nshe'll marry me, Bathsheba is a woman to her word.'\n                     IV\nTroy was sitting in a corner of The White Hart\ntavern at Casterbridge, smoking and drinking a steaming\nmixture from a glass. A knock was given at the door,\nand Pennyways entered.\n\"Well, have you seen him?' Troy inquired, pointing\nto a chair.\n\"Boldwood?'\n\"No -- Lawyer Long.'\n\"He wadn' at home. I went there first, too.'\n\"That's a nuisance.'\n\"'Tis rather, I suppose.'\n\"Yet I don't see that, because a man appears to be\ndrowned and was not, he should be liable for anything.\nI shan't ask any lawyer -- not I.'\n\"But that's not it, exactly. If a man changes his\nname and so forth, and takes steps to deceive the world\nand his own wife, he's a cheat, and that in the eye of\nthe law is ayless a rogue, and that is ayless a lammocken\nvagabond; and that's a punishable situation.'\n\"Ha-ha! Well done, Pennyways.' Troy had laughed,\nbut it was with some anxiety that he said, \"Now, what\nI want to know is this, do you think there's really\nanything going on between her and Boldwood? Upon\nmy soul, I should never have believed it! How she.\nmust detest me! Have you found out whether she\nhas encouraged him?'\n\"I haen't been able to learn. There's a deal of\nfeeling on his side seemingly, but I don't answer for\nher. I didn't know a word about any such thing till\nyesterday, and all I heard then was that she was gwine\nto the party at his house to-night. This is the first\ntime she has ever gone there, they say. And they say\nthat she've not so much as spoke to him since they were\nat Greenhill Fair: but what can folk believe o't ? How+\never, she's not fond of him -- quite offish and quite care\nless, I know.'\n<P 423>\n\"I'm not so sure of that.... She's a handsome\nwoman, Pennyways, is she not? Own that you never\nsaw a finer or more splendid creature in your life.\nUpon my honour, when I set eyes upon her that day\nI wondered what I could have been made of to be able\nto leave her by herself so long. And then I was\nhampered with that bothering show, which I'm free of\nat last, thank the stars.' He smoked on awhile, and\nthen added, \"How did she look when you passed by\nyesterday?'\n\"Oh, she took no great heed of me, ye may well\nfancy; but she looked well enough, far's I know. Just\nflashed her haughty eyes upon my poor scram body, and\nthen let them go past me to what was yond, much as if\nI'd been no more than a leafless tree. She had just got\noff her mare to look at the last wring-down of cider for\nthe year; she had been riding, and so her colours were\nup and her breath rather quick, so that her bosom\nplimmed and feli-plimmed and feli-every time plain\nto my eye. Ay, and there were the fellers round her\nwringing down the cheese and bustling about and\nsaying, Ware o' the pommy, ma'am : 'twill spoil yer\ngown. \"Never mind me,\" says she. Then Gabe\nbrought her some of the new cider, and she must\nneeds go drinking it through a strawmote, and not in\na nateral way at all. \"Liddy,\" says she, \"bring indoors\na few gallons, and I'll make some cider-wine.\" Sergeant,\nI was no more to her than a morsel of scroffin the fuei\nhouse!'\n\"I must go and find her out at once -- O yes, I see\nthat-i must go. Oak is head man still, isn't he?'\n\"Yes, 'a b'lieve. And at Little Weatherbury Farm\ntoo. He manages everything.'\n\"Twill puzzle him to manage her, or any other man\nof his compass!'\n\"I don't know about that. She can't do without\nhim, and knowing it well he's pretty independent.\nAnd she've a few soft corners to her mind, though\nI've never been able to get into one, the devil's in't!'\n\"Ah baily she's a notch above you, and you must\nown it: a higher class of animai-a finer tissue. How+\never, stick to me, and neither this haughty goddess,\ndashing piece of womanhood, Juno-wife of mine (Juno\nwas a goddess, you know), nor\n<P 424>\nanybody else shall hurt\nyou. But all this wants looking into, I perceive.\nWhat with one thing and another, I see that my work\nis well cut out for me.'\n                    v\n\"How do I look to-night, Liddy?' said Bathsheba,\ngiving a final adjustment to her dress before leaving the\nglass.\n\"I never saw you look so well before. Yes-i'll tell\nyou when you looked like it -- that night, a year and a\nhalf ago, when you came in so wildiike, and scolded us\nfor making remarks about you and Mr. Troy.'\n\"Everybody will think that I am setting myself to\ncaptivate Mr. Boldwood, I suppose,' she murmured.\n\"At least they'll say so. Can't my hair be brushed\ndown a little flatter? I dread going -- yet I dread the\nrisk of wounding him by staying away.'\n\"Anyhow, ma'am, you can't well be dressed plainer\nthan you are, unless you go in sackcloth at once. 'Tis\nyour excitement is what makes you look so noticeable\nto-night.'\n\"I don't know what's the matter, I feel wretched at\none time, and buoyant at another. I wish I could have\ncontinued quite alone as I have been for the last year\nor so, with no hopes and no fears, and no pleasure and\nno grief.\n\"Now just suppose Mr. Boldwood should ask you\n -- only just suppose it -- to run away with him, what\nwould you do, ma'am?'\n\"Liddy -- none of that,' said Bathsheba, gravely.\n\"Mind, I won't hear joking on any such matter. Do\nyou hear?'\n\"I beg pardon, ma'am. But knowing what rum\nthings we women be, I just said -- however, I won't\nspeak of it again.'\n\"No marrying for me yet for many a year; if ever,\n'twill be for reasons very, very different from those you\nthink, or others will believe! Now get my cloak, for it\nis time to go.'\n                        VI\n\"Oak, said Boldwood, \"before you go I want to\nmention what has been passing in my mind lately --\nthat little arrangement we made about your share in the\nfarm I mean. That share is small, too small, consider+\ning how little I attend to business now, and how much\ntime and thought you give to it. Well,\n<P 425>\nsince the world\nis brightening for me, I want to show my sense of it\nby increasing yopur proportion in the partnership. I'll\nmake a memorandum of the arrangement which struck\nme as likely to be convenient, for I haven't time to talk\nabout it now; and then we'll discuss it at our leisure.\nMy intention is ultimately to retire from the manage+\nment altogether, and until you can take all the expendi+\nture upon your shoulders, I'll be a sleeping partner in\nthe stock. Then, if I marry her -- and I hope-i feel I\nshall, why --  -- '\n\"Pray don't speak of it, sir,' said Oak, hastily. \"We\ndon't know what may happen. So many upsets may\nbefall 'ee. There's many a slip, as they say -- and I\nwould advise you-i know you'll pardon me this once --\nnot to be <1too sure>1.'\n\"I know, I know. But the feeling I have about in+\ncreasing your share is on account of what I know of you\nOak, I have learnt a little about your secret: your\ninterest in her is more than that of bailiff for an em+\nployer. But you have behaved like a man, and I, as a\nsort of successful rivai-successful partly through your\ngoodness of heart -- should like definitely to show my\nsense of your friendship under what must have been a\ngreat pain to you.'\n\"O that's not necessary, thank 'ee,' said Oak,\nhurriedly. \"I must get used to such as that; other\nmen have, and so shall I.'\nOak then left him. He was uneasy on Boldwood's\naccount, for he saw anew that this constant passion\nof the farmer made him not the man he once had\nbeen.\nAs Boldwood continued awhile in his room alone --\nready and dressed to receive his company -- the mood of\nanxiety about his appearance seemed to pass away, and\nto be succeeded by a deep solemnity. He looked out\nof the window, and regarded the dim outline of the trees\nupon the sky, and the twilight deepening to darkness.\nThen he went to a locked closet, and took from\na locked drawer therein a small circular case the size of\na pilibox, and was about to put it into his pocket. But\nhe lingered to open the cover and take a momentary\nglance inside. It contained a woman's finger-ring, set\nall the way round with small\n<P 426>\ndiamonds, and from its\nappearance had evidently been recently purchased.\nBoldwood's eyes dwelt upon its many sparkles a long\ntime, though that its material aspect concerned him\nlittle was plain from his manner and mien, which were\nthose of a mind following out the presumed thread of\nthat jewel's future history.\nThe noise of wheels at the front of the house became\naudible. Boldwood closed the box, stowed it away\ncarefully in his pocket, and went out upon the landing.\nThe old man who was his indoor factotum came at the\nsame moment to the foot of the stairs.\n\"They be coming, sir-iots of 'em -- a-foot and a+\ndriving!'\n\"I was coming down this moment. Those wheels I\nheard -- is it Mrs. Troy?'\n\"No, sir -- 'tis not she yet.'\nA reserved and sombre expression had returned to\nBoldwood's face again, but it poorly cloaked his feei\nings when he pronounced Bathsheba's name; and his\nfeverish anxiety continued to show its existence by a\ngalloping motion of his fingers upon the side of his thigh\nas he went down the stairs.\n                   VII\n\"How does this cover me?' said Troy to Pennyways,\n\"Nobody would recognize me now, I'm sure.'\nHe was buttoning on a heavy grey overcoat of\nNoachian cut, with cape and high collar, the latter being\nerect and rigid, like a girdling wall, and nearly reaching\nto the verge of travelling cap which was pulled down\nover his ears.\nPennyways snuffed the candle, and then looked up\nand deliberately inspected Troy\n\"You've made up your mind to go then?' he\nsaid.\n\"Made up my mind? Yes; of course I have.'\n\"Why not write to her? 'Tis a very queer corner\nthat you have got into, sergeant. You see all these things\nwill come to light if you go back, and they won't sound\nwell at all. Faith, if I was you I'd even bide as you be\n -- a single man of the name of Francis. A good wife is\ngood, but the best wife is not so good\n<P 427>\nas no wife at all.\nNow that's my outspoke mind, and I've been called a\nlong-headed feller here and there.'\n\"All nonsense!' said Troy, angrily. \"There she is\nwith plenty of money, and a house and farm, and\nhorses, and comfort, and here am I living from hand to\nmouth -- a needy adventurer. Besides, it is no use\ntalking now; it is too late, and I am glad of it ; I've been\nseen and recognized here this very afternoon. I should\nhave gone back to her the day after the fair, if it hadn't\nbeen for you talking about the law, and rubbish about\ngetting a separation; and I don't put it off any longer.\nWhat the deuce put it into my head to run away at all,\nI can't think! Humbugging sentiment -- that's what it\nwas. But what man on earth was to know that his wife\nwould be in such a hurry to get rid of his name!'\n\"I should have known it. She's bad enough for\nanything.'\n\"Pennyways, mind who you are talking to.'\n\"Well, sergeant, all I say is this, that if I were you I'd\ngo abroad again where I came from -- 'tisn't too late to do\nit now. I wouldn't stir up the business and get a bad\nname for the sake of living with her -- for all that about\nyour play-acting is sure to come out, you know, although\nyou think otherwise. My eyes and limbs, there'll be a\nracket if you go back just now -- in the middle of Bold+\nwood's Christmasing!'\n\"H'm, yes. I expect I shall not be a very welcome\nguest if he has her there,' said the sergeant, with a slight\nlaugh. \"A sort of Alonzo the Brave; and when I go in\nthe guests will sit in silence and fear, and all laughter\nand pleasure will be hushed, and the lights in the\nchamber burn blue, and the worms -- Ugh, horrible! --\nRing for some more brandy, Pennyways, I felt an\nawful shudder just then! Well, what is there besides?\nA stick-i must have a walking-stick.'\nPennyways now felt himself to be in something of a\ndifficulty, for should Bathsheba and Troy become recon+\nciled it would be necessary to regain her good opinion\nif he would secure the patronage of her husband. I\nsometimes think she likes you yet, and is a good woman\nat bottom,' he said, as a saving sentence. \"But there's\nno telling to a certainty from a body's outside. Well,\n<P 428>\nyou'll do as you like about going, of course, sergeant,\nand as for me, I'll do as you tell me.'\n\"Now, let me see what the time is,' said Troy, after\nemptying his glass in one draught as he stood. 'Half+\npast six o'clock. I shall not hurry along the road, and\nshall be there then before nine.'\nCONCURRITUR\n<C liii>\n<P 429>\nCONCURRITUR -- HORAE MOMENTO\nOUTSIDE the front of Boldwood's house a group of\nmen stood in the dark, with their faces towards the door,\nwhich occasionally opened and closed for the passage of\nsome guest or servant, when a golden rod of light would\nstripe the ground for the moment and vanish again,\nleaving nothing outside but the glowworm shine of the\npale lamp amid the evergreens over the door.\n\"He was seen in Casterbridge this afternoon -- so the\nboy said,' one of them remarked in a whisper. \"And l\nfor one believe it. His body was never found, you know.'\n\"'Tis a strange story,' said the next. \"You may\ndepend upon't that she knows nothing about it.'\n\"Not a word.'\n\"Perhaps he don't mean that she shall,' said another\nman.\n\"If he's alive and here in the neighbourhood, he\nmeans mischief,' said the first. \"Poor young thing:\nI do pity her, if 'tis true. He'll drag her to the dogs.'\n\"O no; he'll settle down quiet enough,' said one\ndisposed to take a more hopeful view of the case.\n\"What a fool she must have been ever to have had\nanything to do with the man! She is so self-willed and\nindependent too, that one is more minded to say it\nserves her right than pity her.'\n\"No, no. I don't hold with 'ee there. She was no\notherwise than a girl mind, and how couid she tell what\nthe man was made of? If 'tis really true, 'tis too hard\na punishment, and more than she ought to hae. -- Hullo,\nwho's that?' This was to some footsteps that were\nheard approaching.\n\"William Smallbury,' said a dim figure in the shades,\ncoming up and joining them. 'Dark as a hedge, to+\nnight, isn't it? I all but missed the plank over the river\nath'art there in the bottom --\n<P 430>\nnever did such a thing\nbefore in my life. Be ye any of Boldwood's workfolk?'\nHe peered into their faces.\n\"Yes -- all o' us. We met here a few minutes ago.'\n\"Oh, I hear now -- that's Sam Samway : thought I\nknowed the voice, too. Going in?'\n\"Presently. But I say, William,' Samway whispered,\n\"have ye heard this strange tale?'\n\"What -- that about Sergeant Troy being seen, d'ye\nmean, souls?' said Smallbury, also lowering his voice.\n\"Ay: in Casterbridge.'\n\"Yes, I have. Laban Tall named a hint of it to me\nbut now -- but I don't think it. Hark, here Laban\ncomes himself, 'a b'lieve.' A footstep drew near.\n\"Laban?'\n\"Yes, 'tis I,' said Tall.\n\"Have ye heard any more about that?'\n\"No,' said Tall, joining the group. \"And I'm in+\nclined to think we'd better keep quiet. If so be 'tis not\ntrue, 'twill flurry her, and do her much harm to repeat\nit; and if so be 'tis true, 'twill do no good to forestall\nher time o' trouble. God send that it mid be a lie, for\nthough Henery Fray and some of 'em do speak against\nher, she's never been anything but fair to me. She's\nhot and hasty, but she's a brave girl who'll never tell a\nlie however much the truth may harm her, and I've no\ncause to wish her evil.'\n\"She never do tell women's little lies, that's true ; and\n'tis a thing that can be said of very few. Ay, all the\nharm she thinks she says to yer face: there's nothing\nunderhand wi' her.'\nThey stood silent then, every man busied with his\nown thoughts, during which interval sounds of merri+\nment could be heard within. Then the front door again\nopened, the rays streamed out, the weliknown form of\nBoldwood was seen in the rectangular area of light, the\ndoor closed, and Boldwood walked slowly down the path.\n\"'Tis master,' one of the men whispered, as he neared\nthem. \"We'd better stand quiet -- he'll go in again\ndirectly. He would think it unseemly o' us to be\nloitering here.\nBoldwood came on, and passed by the men without\n<P 431>\nseeing them, they being under the bushes on the grass.\nHe paused, leant over the gate, and breathed a long\nbreath. They heard low words come from him.\n\"I hope to God she'll come, or this night will be\nnothing but misery to me! O my darling, my darling,\nwhy do you keep me in suspense like this?'\nHe said this to himself, and they all distinctly heard\nit. Boldwood remained silent after that, and the noise\nfrom indoors was again just audible, until, a few minutes\nlater, light wheels could be distinguished coming down\nthe hill. They drew nearer, and ceased at the gate.\nBoldwood hastened back to the door, and opened it;\nand the light shone upon Bathsheba coming up the\npath.\nBoldwood compressed his emotion to mere welcome:\nthe men marked her light laugh and apology as she met\nhim: he took her into the house; and the door closed\nagain.\n\"Gracious heaven, I didn't know it was like that with\nhim!' said one of the men. \"I thought that fancy of\nhis was over long ago.\n\"You don't know much of master, if you thought\nthat,' said Samway.\n\"I wouldn't he should know we heard what 'a said\nfor the world,' remarked a third.\n\"I wish we had told of the report at once,' the first\nuneasily continued. \"More harm may come of this than\nwe know of. Poor Mr. Boldwood, it will, be hard upon\nen. I wish Troy was in  --  --  Well, God forgive me\nfor such a wish! A scoundrel to play a poor wife such\ntricks. Nothing has prospered in Weatherbury since he\ncame here. And now I've no heart to go in. Let's\nlook into Warren's for a few minutes first, shall us,\nneighbours?'\nSamway, Tall, and Smallbury agreed to go to Warren's,\nand went out at the gate, the remaining ones entering\nthe house. The three soon drew near the malt-house,\napproaching it from the adjoining orchard, and not by\nway of the street. The pane of glass was illuminated\nas usual. Smallbury was a little in advance of the rest\nwhen, pausing, he turned suddenly to his companions\nand said, \"Hist! See there.'\n<P 432>\nThe light from the pane was now perceived to be\nshining not upon the ivied wall as usual, but upon some\nobject close to the glass. It was a human face.\n\"Let's come closer,' whispered Samway; and they\napproached on tiptoe. There was no disbelieving the\nreport any longer. Troy's face was almost close to the\npane, and he was looking in. Not only was he looking in,\nbut he appeared to have been arrested by a conversation\nwhich was in progress in the malt-house, the voices of\nthe interlocutors being those of Oak and the maltster.\n\"The spree is all in her honour, isn't it -- hey?' said\nthe old man. \"Although he made believe 'tis only\nkeeping up o' Christmas?'\n\"I cannot say,' replied Oak.\n\"O 'tis true enough, faith. I cannot understand\nFarmer Boldwood being such a fool at his time of life\nas to ho and hanker after thik woman in the way 'a do,\nand she not care a bit about en.'\nThe men, after recognizing Troy's features, withdrew\nacross the orchard as quietly as they had come. The\nair was big with Bathsheba's fortunes to-night : every\nword everywhere concerned her. When they were quite\nout of earshot all by one instinct paused.\n\"It gave me quite a turn -- his face,' said Tall,\nbreathing.\n\"And so it did me,' said Samway. \"What's to be\ndone?'\n\"I don't see that 'tis any busincss of ours,' Smallbury\nmurmured dubiously.\n\"But it is! 'Tis a thing which is everybody's business,\nsaid Samway. \"We know very well that master's on a\nwrong tack, and that she's quite in the dark, and we\nshould let 'em know at once. Laban, you know her\nbest -- you'd better go and ask to speak to her.'\n\"I bain't fit for any such thing,' said Laban, nervously.\n\"I should think William ought to do it if anybody. He's\noldest.'\n\"I shall have nothing to do with it,' said Smallbury.\n\"'Tis a ticklish business altogether. Why, he'll go on\nto her himself in a few minutes, ye'll see.'\n\"We don't know that he will. Come, Laban.'\n<P 433>\n\"Very well, if I must I must, I suppose,' Tall reluct+\nantly answered. \"What must I say?'\n\"Just ask to see master.'\n\"O no; I shan't speak to Mr. Boldwood. If I tell\nanybody, 'twill be mistress.'\n\"Very well,' said Samway.\nLaban then went to the door. When he opened it\nthe hum of bustle rolled out as a wave upon a still\nstrand -- the assemblage being immediately inside the\nhali-and was deadened to a murmur as he closed it\nagain. Each man waited intently, and looked around at\nthe dark tree tops gently rocking against the sky and\noccasionally shivering in a slight wind, as if he took\ninterest in the scene, which neither did. One of them\nbegan walking up and down, and then came to where\nhe started from and stopped again, with a sense that\nwalking was thing not worth doing now.\n\"I should think Laban must have seen mistress by\nthis time,' said Smallbury, breaking the silence. \"Per+\nhaps she won't come and speak to him.'\nThe door opened. Tall appeared, and joined them\n\"Well?' said both.\n\"I didn't like to ask for her after all,' Laban faltered\nout. \"They were all in such a stir, trying to put a little\nspirit into the party. Somehow the fun seems to hang\nfire, though everything's there that a heart can desire,\nand I couldn't for my soul interfere and throw damp\nupon it -- if 'twas to save my life, I couldn't!'\n\"I suppose we had better all go in together,' said\nSamway, gloomily. \"Perhaps I may have a chance of\nsaying a word to master.'\nSo the men entered the hall, which was the room\nsellected and arranged for the gathering because of its\nsize. The younger men and maids were at last just\nbeginning to dance. Bathshesba had been perplexed\nhow to act, for she was not much more than a slim\nyoung maid herself, and the weight of stateliness sat\nheavy upon her. Sometimes she thought she ought\nnot to have come under any circumstances; then she\nconsidered what cold unkindness that would have been,\nand finally resolved\n<P 434>\nupon the middle course of staying\nfor about an hour only, and gliding off unobserved,\nhaving from the first made up her mind that she could\non no account dance, sing, or take any active part in\nthe proceedings.\nHer allotted hour having been passed in chatting\nand looking on, Bathsheba told Liddy not to hurry her+\nself, and went to the small parlour to prepare for\ndeparture, which, like the hall, was decorated with holly\nand ivy, and well lighted up.\nNobody was in the room, but she had hardly\nHORAE MOMENTO\nbeen there a moment when the master of the house\nentered.\n\"Mrs. Troy -- you are not going?' he said. \"We've\nhardly begun!'\n\"If you'll excuse me, I should like to go now.' Her\nmanner was restive, for she remembered her promise,\nand imagined what he was about to say. \"But as it is\nnot late,' she added, \"I can walk home, and leave my\nman and Liddy to come when they choose.'\n\"I've been trying to get an opportunity of speaking\nto you,' said Boldwood. \"You know perhaps what I\nlong to say?'\nBathsheba silently looked on the floor.\n\"You do give it?' he said, eagerly.\n\"What?' she whispered.\n\"Now, that's evasion! Why, the promise. I don't\nwant to intrude upon you at all, or to let it become\nknown to anybody. But do give your word! A\nmere business compact, you know, between two people\nwho are beyond the influence of passicn.' Boldwood\nknew how false this picture was as regarded himself;\nbut he had proved that it was the only tone in which\nshe would allow him to approach her. \"A promise to\nmarry me at the end of five years and three-quarters.\nYou owe it to me!'\n\"I feel that I do,' said Bathsheba ; \"that is, if you\ndemand it. But I am a changed woman -- an unhappy\nwoman -- and not -- not --  -- \"\n\" You are still a very beautiful woman, said Boldwood.\nHonesty and pure conviction suggested the remark,\nunaccompanied by any perception that it might have\nbeen adopted by blunt flattery to soothe and win her.\nHowever, it had not much effect now, for for she said,\nin a\n<P 435>\npassionless murmur which was in itself a proof of\nher words: \"I have no feeling in the matter at all.\nAnd I don't at all know what is right to do in my\ndiddicult Position, and I have nobody to advise me. But\nI give my promise, if I must. I give it as the rendering of\na debt, conditionally, of course, on my being a widow.'\n\"You'll marry me between five and six years hence ? '\n\"Don't press me too hard. I'll marry nobody\nelse.'\n\" But surely you will name the time, or there's nothing\nin the promise at all?'\n\"O, I don't know, pray let me go!' she said, her\nbosom beginning to rise. \"I am afraid what to do.!\nwant to be just to you, and to be that seems to be wrong+\ning myself, and perhaps it is breaking the commandments.\nThere is considerable doubt of his death, and then it\nis dreadful; let me ask a solicitor, Mr. Boldwood, if I\nought or no!'\n\"Say the words, dear one, and the subject shall be\ndismissed ; a blissrul loving intimacy of six years, and\nthen marriage -- O Bathsheba, say them!' he begged in\na husky voice, unable to sustain the forms of mere\nfriendship any longer. \"Promise yourself to me; I\ndeserve it, indeed I do, for I have loved you more than\nanybody in the world! And if I said hasty words and\nshowed uncalled-for heat of manner towards you, believe\nme, dear, I did not mean to distress you ; I was in\nagony, Bathsheba, and I did not know what I said.\nYou wouldn't let a dog suffer what I have suffered,\ncould you but know it! Sometimes I shrink from your\nknowing what I have felt for you, and sometimes I am\ndistressed that all of it you never will know. Be\ngracious, and give up a little to me, when I would give\nup mylife for you!'\nThe trimmings of her dress, as they quivered against\nthe light, showed how agitated she was, and at last she\nburst out crying. 'And you'll not -- press me -- about\nanything more -- if I say in five or six years?' she\nsobbed, when she had power to frame the words.\n\"Yes, then I'll leave it to time.'\n\"Very well. If he does not return, I'll marry you\nin six years from this day, if we both live,' she said\nsolemnly.\n<P 436>\n\"And you'll take this as a token from me.'\nBoldwood had come close to her side, and now he\nclasped one of her hands in both his own, and lifted it\nto his breast.\n\"What is it? Oh I cannot wear a ring!' she ex+\nclaimed, on seeing what he held; \"besides, I wouldn't\nhave a soul know that it's an engagement! Perhaps it\nis improper? Besides, we are not engaged in the usual\nsense, are we ? Don't insist, Mr. Boldwood -- don't!'\nIn her trouble at not being able to get her hand away\nfrom him at once, she stamped passionately on the floor\nwith one foot, and tears crowded to her eyes again.\n\"It means simply a pledge -- no sentiment -- the seal\nof a practical compact,' he said more quictly, but still\nretaining her hand in his firm grasp. \"Come, now!'\nAnd Boldwood slipped the ring on her finger.\n\"I cannot wear it,' she said, weeping as if her heart\nwould break. \" You frighten me, almost. So wild a\nscheme! Please let me go home!'\n\" Only to-night : wear it just to-night, to please me!.'\nBathsheba sat down in a chair, and buried her face\nin her handkerchief, though Boldwood kept her hand\nyet. At length she said, in a sort of hopeless whisper --\n\"Very well, then, I will to-night, if you wish it so\nearnestly. Now loosen my hand; I will, indeed I will\nwear it to-night.'\n\"And it shall be the beginning of a pleasant secret\ncourtship of six years, with a wedding at the end?'\n\"It must be, I suppose, since you will have it so!'\nshe said, fairly beaten into non-resistance.\nBoldwood pressed her hand, and allowed it to drop\nin her lap. \"I am happy now,' he said. \"God bless\nyou!'\nHe left the room, and when he thought she might\nbe sufficiently composed sent one of the maids to her\nBathsheba cloaked the effects of the late scene as she\nbest could, followed the girl, and in a few moments\ncame downstairs with her hat and cloak on, ready to go.\nTo get to the door it was necessary to pass through the\nhall, and before doing so she paused on the bottom of\nthe staircase which descended into one corner, to take\na last look at the gathering.\nThere was no music or dancing in progress just now.\nAt the\n<P 437>\nlower end, which had been arranged for the work+\nfolk specially, a group conversed in whispers, and with\nclouded looks. Boldwood was standing by the fireplace,\nand he, too, though so absorbed in visions arising from\nher promise that he scarcely saw anything, seemed at\nthat moment to have observed their peculiar manner,\nand their looks askance.\n\"What is it you are in doubt about, men?' he said.\nOne of them turned and replied uneasily: 'It was\nsomething Laban heard of, that's all, sir.'\n\"News? Anybody married or engaged, born or\ndead?' inquired the farmer, gaily. \"Tell it to us, Tall.\nOne would think from your looks and mysterious ways\nthat it was something very dreadful indeed.'\n\"O no, sir, nobody is dead,' said Tall.\n\"I wish somebody was,' said Samway, in a whisper.\n\"What do you say, Samway?' asked Boldwood, some+\nwhat sharply. \"If you have anything to say, speak out;\nif not, get up another dance.'\n\"Mrs. Troy has come downstairs,' said Samway to\nTall. \"If you want to tell her, you had better do it now.'\n\"Do you know what they mean?' the farmer asked\nBathsheba, across the room.\n\"I don't in the least,\" said Bathsheba.\nThere was a smart rapping at the door. One of\nthe men opened it instantly, and went outside.\n\"Mrs. Troy is wanted,' he said, on returning.\n\"Quite ready,' said Bathsheba. \"Though I didn't\ntell them to send.'\n\"It is a stranger, ma'am,' said the man by the door.\n\"A stranger?' she said.\n\"Ask him to come in,' said Boldwood.\nThe message was given, and Troy, wrapped up to\nhis eyes as we have seen him, stood in the doorway.\nThere was an unearthly silence, all looking towards\nthe newcomer. Those who had just learnt that he\nwas in the neighbourhood recognized him instantly;\nthose who did not were perplexed. Nobody noted\nBathsheba. She was leaning on the stairs. Her brow\nhad heavily contracted; her whole face was\n<P 438>\npallid, her\nlips apart, her eyes rigidly staring at their visitor.\nBoldwood was among those who did not notice that\nhe was Troy. \"Come in, come in!' he repeated,\ncheerfully, \"and drain a Christmas beaker with us,\nstranger!'\nTroy next advanced into the middle of the room,\ntook off his cap, turned down his coat-collar, and looked\nBoldwood in the face. Even then Boldwood did not\nrecognize that the impersonator of Heaven's persistent\nirony towards him, who had once before broken in\nupon his bliss, scourged him, and snatched his delight\naway, had come to do these things a second time.\nTroy began to laugh a mechanical laugh: Boldwood\nrecognized him now.\nTroy turned to Bathsheba. The poor girl's wretched+\nness at this time was beyond all fancy or narration.\nShe had sunk down on the lowest stair; and there\nshe sat, her mouth blue and dry, and her dark eyes\nfixed vacantly upon him, as if she wondered whether it\nwere not all a terrible illusion.\nThen Troy spoke. \"Bathsheba, I come here for\nyou!'\nShe made no reply.\n\" Come home with me: come!\nBathsheba moved her feet a little, but did not rise.\nTroy went across to her.\n\"come, madam, do you hear what I say?' he said,\nperemptorily.\nA strange voice came from the fireplace -- a voice\nsounding far off and confined, as if from a dungeon.\nHardly a soul in the assembly recognized the thin tones\nto be those of Boldwood. Sudden dispaire had trans+\nformed him.\n\"Bathsheba, go with your husband!'\nNevertheless, she did not move. The truth was\nthat Bathsheba was beyond the pale of activity -- and\nyet not in a swoon. She was in a state of mental <1gutta>1\n<1serena>1; her mind was for the minute totally deprived of\nlight at the same time no obscuration was apparent\nfrom without.\nTroy stretched out his hand to pull her her towards him,\nwhen she quickly shrank back. This visible dread of\nhim seemed to irritate Troy, and he seized her arm and\npulled it sharply.\n<P 439>\nWhether his grasp pinched her, or\nwhether his mere touch was the ccause, was never known,\nbut at the moment of his seizure she writhed, and gave\na quick, low scream.\nThe scream had been heard but a few seconds When\nit was followed by sudden deafening report that\nechoed through the room and stupefied them all. The\noak partition shook with the concussion, and the place\nwas filled with grey smoke.\nIn bewilderment they turned their eyes to Boldwood.\nat his back, as stood before the fireplace, was a gun+\nrack, as is usual in farmhouses, constructed to hold two\nguns. When Bathsheba had cried out in her husband's\ngrasp, Boldwood's face of gnashing despair had changed.\nThe veins had swollen, and a frenzied look had gleamed\nin his eye. He had turned quickly, taken one of the\nguns, cocked it, and at once discharged it at Troy.\nTroy fell. The distance apart of the two men was\nso small that the charge of shot did not spread in the\nleast, but passed like a bullet into his body. He uttered\na long guttural sigh -- there was a contraction -- an exten+\nsion -- then his muscles relaxed, and he lay still.\nBoldwood was seen through the smoke to be now\nagain engaged with the gun. It was double-barrelled,\nand he had, meanwhile, in some way fastened his hand+\nkerchief to the trigger, and with his foot on the other\nend was in the act of turning the second barrel upon\nhimself. Samway his man was the first to see this, and\nin the midst of the general horror darted up to him.\nBoldwood had already twitched the handkerchief, and\nthe gun exploded a second time, sending its contents,\nby a timely blow from Samway, into the beam which\ncrossed the ceiling.\n\"Well, it makes no difference!' Boldwood gasped.\n\"There is another way for me to die.'\nThen he broke from Samway, crossed the room to\nBathsheba, and kissed her hand. He put on his hat,\nopened the door, and went into the darkness, nobody\nthinking of preventing him.\n<C liv>\n<P 440>\nAFTER THE SHOCK\nBOLDWOOD passed into the high road and turned\nin the direction of Casterbridge. Here he walked at\nan even, steady pace over Yalbury Hill, along the dead\nlevel beyond, mounted Mellstock Hill, and between\neleven and twelve o'clock crossed the Moor into the town.\nThe streets were nearly deserted now, and the waving\nlamp-flames only lighted up rows of grey shop-shutters,\nand strips of white paving upon which his step echoed\nas his passed along. He turned to the right, and halted\nbefore an archway of heavy stonework, which was closed\nby an iron studded pair of doors. This was the entrance\nto the gaol, and over it a lamp was fixed, the light en+\nabling the wretched traveller to find a belipull.\nThe small wicket at last opened, and a porter\nappeared. Boldwood stepped forward, and said some+\nthing in a low tone, when, after a delay, another man\ncame. Boldwood entered, and the door was closed\nbehind him, and he walked the world no more.\nLong before this time Weatherbury had been\nthoroughly aroused, and the wild deed which had ter+\nminated Boldwood's merrymaking became known to\nall. Of those out of the house Oak was one of the\nfirst to hear of the catastophe, and when he entered\nthe room, which was about five minutes after Boldwood's\nexit, the scene was terrible. All the female guests were\nhuddled aghast against the walls like sheep in a storm,\nand the men were bewildered as to what to do. As for\nBathsheba, she had changed. She was sitting on the\nfloor beside the body of Troy, his head pillowed in her\nlap, where she had herself lifted it. With one hand she\nheld her handkerchief to his breast and covered the\nwound, though scarcely a single drop of blood had\nflowed, and with the other she tightly clasped one of\nhis. The household convulsion had made her herself\nagain. The\n<P 441>\ntemporary coma had ceased, and activity\nhad come with the necessity for it. Deeds of endur+\nance, which seem ordinary in philosophy, are rare in\nconduct, and Bathsheba was astonishing all around her\nnow, for her philosophy was her conduct, and she\nseldom thought practicable what she did not practise.\nShe was of the stuff of which great men's mothers\nare made. She was indispensable to high generation,\nhated at tea parties, feared in shops, and loved at crises.\nTroy recumbent in his wife's lap formed now the sole\nspectacle in the middle of the spacious room.\n\"Gabriel,' she said, automatically, when he entered,\nturning up a face of which only the weliknown lines\nremained to tell him it was hers, all else in the picture\nhaving faded quite. \"Ride to Casterbridge instantly\nfor a surgeon. It is, I believe, useless, but go. Mr.\nBoldwood has shot my husband.'\nHer statement of the fact in such quiet and simple\nwords came with more force than a tragic declamation,\nand had somewhat the effect of setting the distorted\nimages in each mind present into proper focus. Oak,\nalmost before he had comprehended anything beyond\nthe briefest abstract of the event, hurried out of the\nroom, saddled a horse and rode away. Not till he had\nridden more than a mile did it occur to him that he\nwould have done better by sending some other man\non this errand, remaining himself in the house. What\nhad become of Boldwood? He should have been\nlooked after. Was he mad -- had there been a quarrel?\nThen how had Troy got there? Where had he come\nfrom? How did this remarkable reappearance effect\nitself when he was supposed by many to be at the\nbottom of the sea? Oak had in some slight measure\nbeen prepared for the presence of Troy by hearing a\nrumour of his return just before entering Boldwood's\nhouse ; but before he had weighed that information, this\nfatal event had been superimposed. However, it was too\nlate now to think of sending another messenger, and\nhe rode on, in the excitement of these self-inquiries\nnot discerning, when about three miles from Caster+\nbridge, a square-figured pedestrian passing along\nunder the dark hedge in the same direction as his\nown.\nThe miles necessary to be traversed, and other\nhindrances\n<P 442>\nincidental to the lateness of the hour and\nthe darkness of the night, delayed the arrival of Mr,\nAldritch, the surgeon ; and more than three hours\npassed between the time at which the shot was fired\nand that of his entering the house. Oak was addition+\nally detained in Casterbridge through having to give\nnotice to the authorities of what had happened; and\nhe then found that Boldwood had also entered the\ntown, and delivercd himself up.\nIn the meantime the surgeon, having hastened into\nthe hall at Boldwood's, found it in darkness and quite\ndeserted. He went on to the back of the house,\nwhere he discovered in the kitchen an old man, of\nwhom he made inquiries.\n\"She's had him took away to her own house, sir,'\nsaid his informant.\n\"Who has?' said the doctor.\n\"Mrs. Troy. 'A was quite dead, sir.'\nThis was astonishing information. \"She had no\nright to do that,' said the doctor. \"There will have\nto be an inquest, and she should have waited to know\nwhat to do.'\n\"Yes, sir; it was hinted to her that she had better\nwait till the law was known. But she said law was\nnothing to her, and she wouldn't let her dear husband's\ncorpse bide neglected for folks to stare at for all the\ncrowners in England.'\nMr. Aldritch drove at once back again up the\nhill to Bathsheba's. The first person he met was\npoor Liddy, who seemed literally to have dwindled\nsmaller in these few latter hours. \"What has been\ndone?' he said.\n\"I don't know, sir,' said Liddy, with suspended\nbreath. \"My mistress has done it all.'\n\"Where is she?'\n\" Upstairs with him, sir. When he was brought\nhome and taken upstairs, she said she wanted no\nfurther help from the men. And then she called me,\nand made me fill the bath, and after that told me I\nhad better go and lie down because I looked so ill.\nThen she locked herself into the room alone with him,\nand would not let a nurse come in, or anybody at all.\nBut I thought l'd wait in the next room in case she\nshould want me. I heard her moving about inside\nfor more than an \n<P 443>\nhour, but she only came out once,\nand that was for more candles, because hers had burnt\ndown into the socket. She said we were to let her\nknow when you or Mr. Thirdly came, sir.'\nOak entered with the parson at this moment, and\nthey all went upstairs together, preceded by Liddy\nSmallbury. Everything was silent as the grave when\nthey paused on the landing. Liddy knocked, and\nBathsheba's dress was heard rustling across the room:\nthe key turned in the lock, and she opened the door.\nHer looks were calm and nearly rigid, like a slightly\nanimated bust of Melpomene.\n\"Oh, Mr. Aldritch, you have come at last,' she\nmurmured from her lips merely, and threw back the\ndoor. \"Ah, and Mr. Thirdly. Well, all is done, and\nanybody in the world may see him now.' She then\npassed by him, crossed the landing, and entered\nanother room.\nLooking into the chamber of death she had vacated\nthey saw by the light of the candles which were on the\ndrawers a tall straight shape lying at the further end\nof the bedroom, wrapped in white. Everything around\nwas quite orderly. The doctor went in, and after a\nfew minutes returned to the landing again, where\nOak and the parson still waited.\n\"It is all done, indeed, as she says,' remarked Mr.\nAldritch, in a subdued voice. \"The body has been\nundressed and properly laid out in grave clothes.\nGracious Heaven -- this mere girl! She must have the\nnerve of a stoic!'\n\"The heart of a wife merely,' floated in a whisper\nabout the ears of the three, and turning they saw\nBathsheba in the midst of them. Then, as if at that\ninstant to prove that her fortitude had been more of\nwill than of spontaneity, she silently sank down between\nthem and was a shapeless heap of drapery on the floor.\nThe simple consciousness that superhuman strain was\nno longer required had at once put a period to her\npower to continue it.\nThey took her away into a further room, and the\nmedical attendance which had been useless in Troy's\ncase was invaluable in Bathsheba's, who fell into a\nseries of fainting-fits that had a serious aspect for a\ntime. The sufferer was got to bed, \n<P 444>\nand Oak, finding\nfrom the bulletins that nothing really dreadful was to\nbe apprehended on her score, left the house. Liddy\nkept watch in Bathsheba's chamber, where she heard\nher mistress, moaning in whispers through the dull\nslow hours of that wretched night: \"O it is my fault\n -- how can I live! O Heaven, how can I live!'\n<C lv>\n<P 445>\nTHE MARCH FOLLOWING -- \"BATHSHEBA BOLDWOOD'\nWE pass rapidly on into the month of March, to a\nbreezy day without sunshine, frost, or dew. On Yai\nbury Hill, about midway between Weatherbury and\nCasterbridge, where the turnpike road passes over\nthe crest, a numerous concourse of people had\ngathered, the eyes of the greater number being fre+\nquently stretched afar in a northerly direction. The\ngroups consisted of a throng of idlers, a party of\njavelin-men, and two trumpeters, and in the midst\nwere carriages, one of which contained the high\nsheriff. With the idlers, many of whom had mounted\nto the top of a cutting formed for the road, were several\nWeatherbury men and boys -- among others Poorgrass,\nCoggan, and Cain Ball.\nAt the end of half-an-hour a faint dust was seen in\nthe expected quarter, and shortly after a travelling+\ncarriage, bringing one of the two judges on the Western\nCircuit, came up the hill and halted on the top. The\njudge changed carriages whilst a flourish was blown\nby the big-cheeked trumpeters, and a procession being\nformed of the vehicles and javelin-men, they all pro+\nceeded towards the town, excepting the Weatherbury\nmen, who as soon as they had seen the judge move\noff returned home again to their work.\n\" Joseph, I zeed you squeezing close to the carriage,\"\nsaid Coggan, as they walked. \"Did ye notice my lord\njudge's face ?'\n\"I did,' said Poorgrass. \"I looked hard at en, as\nif I would read his very soul; and there was mercy\nin his eyes -- or to speak with the exact truth required\nof us at this solemn time, in the eye that was towards\nme.'\n\"Well, I hope for the best,' said Coggan, though\nbad that must be. However, I shan't go to the trial,\nand I'd advise the rest of ye that bain't wanted to bide\naway. 'Twill disturb his \n<P 446>\nmind more than anything to\nsee us there staring at him as if he were a show.'\n\" The very thing I said this morning,' observed Joseph,\n\"Justice is come to weigh him in the balances,\" I said\nin my reflectious way, \"and if he's found wanting, so\nbe it unto him,\" and a bystander said \"Hear, hear,\nA man who can talk like that ought to be heard.'\nBut I don't like dwelling upon it, for my few words\nare my few words, and not much; though the speech\nof some men is rumoured abroad as though by nature\nformed for such.'\n\"So 'tis, Joseph. And now, neighbours, as I said,\nevery man bide at home.'\nThe resolution was adhered to ; and all waited\nanxiously for the news next day. Their suspense\nwas diverted, however, by a discovery which was made\nin the afternoon, throwing more light on Boldwood's\nconduct and condition than any details which had\npreceded it.\nThat he had been from the time of Greenhill Fair\nuntil the fatal Christmas Eve in excited and unusual\nmoods was known to those who had been intimate\nwith him; but nobody imagined that there had shown\nin him unequivocal symptoms of the mental derange+\nment which Bathsheha and Oak, alone of all others\nand at different times, had momentarily suspected.\nIn a locked closet was now discovered an extraordinary\ncollection of articles. There were several sets of ladies'\ndresses in the piece, of sundry expensive materials;\nsilks and satins, poplins and velvets, all of colours\nwhich from Bathsheba's style of dress might have been\njudged to be her favourites. There were two muffs,\nsable and ermine. Above all there was a case of\njewellery, containing four heavy gold bracelets and\nseveral lockets and rings, all of fine quality and manu+\nfacture. These things had been bought in Bath and\nother towns from time to time, and brought home by\nstealth. They were all carefully packed in paper, and\neach package was labelled \" Bathsheba Boldwood,' a\ndate being subjoined six years in advance in every\ninstance.\nThese somewhat pathetic evidences of a mind crazed\nwith care and love were the subject of discourse in\n<P 447>\nWarren's malt-house when Oak entered from Caster+\nbridge with tidings of the kiln glow shone upon\nit, told the tale sufficiently well. Boldwood, as every\none supposed he would do, had pleaded guilty, and\nhad been sentenced to death.\nThe conviction that Boldwood had not been morally\nresponsible for his later acts now becam general. Facts\nelicited previous to the trial had pointed strongly in the\nsame direction, but they had not been of sufficient weight\nto lead to an order for an examination into the state\nof Boldwood's mind. It was astonishing, now that a\npresumption of insanity was raised, how many collateral\ncircumstances were remembered to which a condition\nof mental disease seemed to afford the only explanation\n -- among others, the unprecedented neglect of his corn\nstacks in the previous summer.\nA petition was addressed to the Home Secretary,\nadvancing the circumstances which appeared to justify\na request for a reconsideration of the sentence. It was\nnot \"numerously signed ' by the inhabitants of Caster+\nbridge, as is usual in such cases, for Boldwood had\nnever made many friends over the counter. The shops\nthought it very natural that a man who, by importing\ndirect from the producer, had daringly set aside the\nfirst great principle of provincial existence, namely\nthat God made country villages to supply customers\nto county towns, should have confused ideas about\nthe Decalogue. The prompters were a few merciful\nmen who had perhaps too feelingly considered the\nfacts latterly unearthed, and the result was that evidence\nwas taken which it was hoped might remove the crime\nin a moral point of view, out of the category of wilful\nmurder, and lead it to be regarded as a sheer outcome\nof madness.\nThe upshot of the petition was waited for in Weather+\nbury with solicitous interest. The execution had been\nfixed for eight o'clock on a Saturday morning about a\nfortnight after the sentence was passed, and up to\nFriday afternoon no answer had been recieved. At\nthat time Gabriel came from Casterbridge Gaol, whither\nhe had been to wish Boldwood good-bye, and turned\ndown a by-street to avoid the town. When past the last\n<P 448>\nhouse he heard a hammering, and lifting his bowed\nhead he looked back for a moment. Over the chimneys\nhe could see the upper part of the gaol entrance, rich\nand glowing in the afternoon sun, and some moving\nfigures were there. They were carpenters lifting a post\ninto a vertical position within the parapet. He with+\ndrew his eyes quickly, and hastened on.\nIt was dark when he reached home, and half the\nvillage was out to meet him.\n\"No tidings,' Gabriel said, wearily. \"And I'm afraid\nthere's no hope. I've been with him more than two\nhours.'\n\"Do ye think he <1really>1 was out of his mind when he\ndid it?' said Smallbury.\n\" I can't honestly say that I do,' Oak replied. \" How+\never, that we can talk of another time. Has there been\nany change in mistress this afternoon?'\n\"None at all.'\n\"Is she downstairs?'\n\"No. And getting on so nicely as she was too.\nShe's but very little better now again than she was at\nChristmas. She keeps on asking if you be come, and\nif there's news, till one's wearied out wi' answering her.\nShall I go and say you've come?'\n\"No,' said Oak. \"There's a chance yet; but I\ncouldn't stay in town any longer -- after seeing him too,\nSo Laban -- Laban is here, isn't he ? '\n\" Yes,' said Tall.\n\"What I've arranged is, that you shall ride to town\nthe last thing to-night ; leave here about nine, and wait\na while there, getting home about twelve. If nothing\nhas been received by eleven to-night, they say there's\nno chance at all.'\n\"I do so hope his life will be spared,' said Liddy.\n\"If it is not, she'll go out of her mind too. Poor thing;\nher sufferings have been dreadful; she deserves any+\nbody's pity.'\n\"Is she altered much ? ' said Coggan.\n\"If you haven't seen poor mistress since Christmas,\nyou wouldn't know her,' said Liddy. \" Her eyes are so\nmiserable that she's not the same woman. Only two\nyears ago she was a romping girl, and now she's this!'\nLaban departed as directed, and at eleven o'clock\nthat night \n<P 449>\nseveral of the villagers strolled along the\nroad to Casterbridge and awaited his arrivai-among\nthem Oak, and nearly all the rest of Bathsheba's men.\nGabriel's anxiety was great that Boldwood might be\nsaved, even though in his conscience he felt that he\nought to die; for there had been qualities in the farmer\nwhich Oak loved. At last, when they all were weary\nthe tramp of a horse was heard in the distance --\nFirst dead, as if on turf it trode,\nThen, clattering  on the village road\nIn other pace than forth he yode.\n'We shall soon know now, one way or other,' said\nCoggan, and they all stepped down from the bank on\nwhich they had been standing into the road, and the\nrider pranced into the midst of them.\n\"Is that you, Laban ? ' said Gabriel.\n\"Yes -- 'tis come. He's not to die. 'Tis confine+\nment during her Majesty's pleasure.'\n\"Hurrah!' said Coggan, with a swelling heart. \"God's\nabove the devil yet!'\n<C lvi>\n<P 450>\nBEAUTY IN LONELINESS -- AFTER ALL\nBATHSHEBA revived with the spring. The utter\nprostration that had followed the low fever from which\nshe had sufered diminished perceptibly when all un+\ncertainty upon every subject had come to an end.\nBut she remained alone now for the greater part of\nher time, and stayed in the house, or at furthest went\ninto the garden. She shunned every one, even Liddy,\nand could be brought to make no confidences, and to\nask for no sympathy.\nAs the summer drew on she passed more of her time\nin the open air, and began to examine into farming\nmatters from sheer necessity, though she never rode\nout or personally superintended as at former times.\nOne Friday evening in August she walked a little way\nalong the road and entered the village for the first time\nsince the sombre event of the preceding Christmas.\nNone of the old colour had as yet come to her cheek,\nand its absolute paleness was heightened by the jet black\nof her gown, till it appeared preternatural. When she\nreached a little shop at the other end of the place,\nwhich stood nearly opposite to the churchyard, Bath+\nsheba heard singing inside the church, and she knew\nthat the singers were practising. She crossed the road,\nopened the gate, and entered the graveyard, the high\nsills of the church windows effectually screening her\nfrom the eyes of those gathered within. Her stealthy\nwalk was to the nook wherein Troy had worked at\nplanting flowers upon Fanny Robin's grave, and she\ncame to the marble tombstone.\nA motion of satisfaction enlivened her face as she\nread the complete inscription. First came the words of\nTroy himself: --\n<P 451>\nERECTED BY FRANCIS TROY\nIN BELOVEO MEMORY OF\nFANNY ROBIN,\nWHO DIED OCTOBER 9, 18 -- ,\nAGED 20 YEARS.\nUnerneath this was now inscribed in new letters: --\nIN THE SAME GRAVE LIE\nTHE REMAINS OF THE AFORESAID\nFRANCIS TROY,\nWHO DIED DECEMBER 24TH, 18 -- ,\nWhilst she stood and read and meditated the tones of\nthe organ began again in the church, and she went\nwith the same light step round to the porch and listened.\nThe door was closed, and the coir was learning a new\nhymn. Bathsheba was stirred by emotions which\nlatterly she had assumed to be altogether dead within\nher. The little attenuated voices of the children\nbrought to her ear in destinct utterance the words they\nsang without thought or comprehension --\nLead, kindly Light, amid the encircling gloom,\nLead Thou me on.\nBathsheba's feeling was always to some extent de+\npendent upon her whim, as is the case with many other\nwomen. Something big came into her throat and an\nuprising to her eyes -- and she thought that she would\nallow the imminent tears to flow if they wished. They\ndid flow and plenteously, and one fell upon the stone\nbench beside her. Once that she had begun to cry for\nshe hardly knew what, she could not leave off for crowd+\ning thoughts she knew too well. She would have given\nanything in the world to be, as those children were, un+\nconcerned at the meaning of their words, because too\ninnocent to feel the necessity for any such expression.\nAll the impassioned scenes of her brief expenence\nseemed to revive with added emotion at that moment,\nand those scenes which had been without emotion\n<P 452>\nduring enactment had emotion then. Yet grief came\nto her rather as a luxury than as the scourge of former\ntimes.\nOwing to Bathsheba's face being buried in her hands\nshe did not notice a form which came quietly into the\nporch, and on seeing her, first moved as if to retreat,\nthen paused and regarded her. Bathsheba did not raise\nher head for some time, and when she looked round\nher face was wet, and her eyes drowned and dim. \"Mr.\nOak,' exclaimed she, disconcerted, \" how long have you\nbeen here ?'\n\"A few minutes, ma'am,' said Oak, respectfully.\n\"Are you going in?' said Bathsheba; and there came\nfrom within the church as from a prompter --\nl loved the garish day, and, spite of fears,\npride ruled my will: remember not past years.\n\"I was,' said Gabriel. \" I am one of the bass singers,\nyou know. I have sung bass for several months.\n\"Indeed: I wasn't aware of that. I'll leave you, then.'\nWhich I have loved long since, and lost awhile,\nsang the children.\n\"Don't let me drive you away, mistress. I think I\nwon't go in to-night.'\n\"O no -- you don't drive me away.\nThen they stood in a state of some embarrassment\nBathsheba trying to wipe her dreadfully drenched and\ninflamed face without his noticing her. At length Oak\nsaid, I've not seen you-i mean spoken to you -- since\never so long, have I?' But he feared to bring distress+\ning memories back, and interrupted himself with: \"Were\nyou going into church ?'\n\"No,' she said. I came to see the tombstone\nprivately -- to see if they had cut the inscription as I\nwished Mr. Oak, you needn't mind speaking to me, if\nyou wish to, on the matter which is in both our minds\nat this moment.'\n\"And have they done it as you wished ?' said Oak.\n\"Yes. Come and see it, if you have not already.'\nSo together they went and read the tomb. \"Eight\nmonths \n<P 453>\nago!' Gabriel murmured when he saw the date.\n'It seems like yesterday to me.'\nAnd to me as if it were years ago-iong years, and\nI had been dead between. And now I am going home,\nMr. Oak.'\nOak walked after her. 'I wanted to name a small\nmatter to you as soon as I could,' he said, with hesitation.\n\"Merrly about business, and I think I may just mention it\nnow, if you'll allow me.'\n\" O yes, certainly.'\nIt is that I may soon have to give up the manage+\nment of your farm, Mrs. Troy. The fact is, I am think+\ning of leaving England -- not yet, you know -- next\nspring. '\n\"Leaving England!' she said, in surprise and\ngenuine disappointment.' Why, Gabriel, what are you\ngoing to do that for?'\n\"Well, I've thought it best,' Oak stammered out.\n\"California is the spot I've had in my mind to try.'\n\"But it is understood everywhere that you are going\nto take poor Mr. Boldwood's farm on your own account.'\n\"I've had the refusal o' it 'tis true; but nothing is\nsettled yet, and I have reasons for gieing up. I shall\nfinish out my year there as manager for the trustees,\nbut no more.'\n\"And what shall I do without you? Oh, Gabriel, I\ndon't think you ought to go away. You've been with\nme so long -- through bright times and dark times -- such\nold friends that as we are -- that it seems unkind almost. I\nhad fancied that if you leased the other farm as master,\nyou might still give a helping look across at mine. And\nnow going away!'\n\"I would have willingly.'\n\" Yet now that I am more helpless than ever you go\naway!'\n\"Yes, that's the ill fortune o' it,' said Gabriel, in a\ndistressed tone. \"And it is because of that very help+\nlessness that I feel bound to go. Good afternoon,\nma'am ' he concluded, in evident anxiety to get\naway, and at once went out of the churchyard by a\npath she could follow on no pretence whatever.\nBathsheba went home, her mind occupied with a\nnew trouble, which being rather harassing than deadly\nwas calculated to do good by diverting her from the\nchronic gloom of \n<P 454>\nher life. She was set thinking a great\ndeal about Oak and of his wich to shun her; and there\noccurred to Bathsheba several incidents of latter in+\ntercourse with him, which, trivial when singly viewed\namounted together to a perceptible disinclination for\nher society. It broke upon her at length as a great\npain that her last old disciple was about to forsake her\nand flee. He who had believed in her and argued on\nher side when all the rest of the world was against her,\nhad at last like the others become weary and neglectful\nof the old cause, and was leaving her to fight her battles\nalone.\nThree weeks went on, and more evidence of his\nwant of interest in her was forthcoming. She noticed\nthat instead of entering the small parlour or office\nwhere the farm accounts were kept, and waiting, or\nleaving a memorandum as he had hitherto done during\nher seclusion, Oak never came at all when she was likely\nto be there, only entering at unseasonable hours when\nher presence in that part of the house was least to be\nexpected. Whenever he wanted directions he sent a\nmessage, or note with neither heading nor signature, to\nwhich she was obliged to reply in the same off-hand\nstyle. Poor Bathsheba began to suffer now from the\nmost torturing sting of ali-a sensation that she was\ndespised.\nThe autumn wore away gloomily enough amid these\nmelancholy conjectures, and Christmas-day came, com+\npleting a year of her legal widowhood, and two years\nand a quarter of her life alone. On examining her\nheart it appeared beyond measure strange that the sub+\nject of which the season might have been supposed\nsuggestive -- the event in the hall at Boldwood's -- was\nnot agitating her at all; but instead, an agonizing con+\nviction that everybody abjured her -- for what she could\nnot teli-and that Oak was the ringleader of the\nrecusants. Coming out of church that day she looked\nround in hope that Oak, whose bass voice she had\nheard rolling out from the gallery overhead in a most\nunconcerned manner, might chance to linger in her path\nin the old way. There he was, as usual, coming down\nthe path behind her. But on seeing Bathsheba turn, he\nlooked aside, and as soon as he got beyond the gate,\n<P 455>\nand there was the barest excuse for a divergence, he\nmade one, and vanished.\nThe next morning brought the culminating stroke;\nshe had been expecting it long. It was a formal notice\nby letter from him that he should not renew his engage+\nment with her for the following Lady-day.\nBathsheba actually sat and cried over this letter most\nbitterly. She was aggrieved and wounded that the\npossession of hopeless love from Gabriel, which she had\nAFTER ALL\ngrown to regard as her inalienable right for life, should\nhave been withdrawn just at his own pleasure in this\nway. She was bewildered too by the prospect of having\nto rely on her own resources again: it seemed to herself\nthat she never could again acquire energy sufficient to\ngo to market, barter, and sell. Since Troy's death Oak\nhad attended all sales and fairs for her, transacting her\nbusiness at the same time with his own. What should\nshe do now? Her life was becoming a desolation.\nSo desolate was Bathsheba this evening, that in an\nabsolute hunger for pity and sympathy, and miserable in\nthat she appeared to have outlived the only true friend+\nship she had ever owned, she put on her bonnet and\ncloak and went down to Oak's house just after sunset,\nguided on her way by the pale primrose rays of a\ncrescent moon a few days old.\nA lively firelight shone from the window, but nobody\nwas visible in the room. She tapped nervously, and\nthen thought it doubtful if it were right for a single\nwoman to call upon a bachelor who lived alone, although\nhe was her manager, and she might be supposed to call\non business without any real impropriety. Gabriel\nopened the door, and the moon shone upon his fore+\nhaad.\n\"Mr. Oak,' said Bathsheba, faintly.\n\"Yes; I am Mr. Oak,' said Gabriel. \"Who have I\nthe honour -- O how stupid of me, not to know you,\nmistress!'\n\"I shall not be your mistress much longer, shall I\nGabriel?' she said, in pathetic tones.\n\"Well, no. I suppose -- But come in, ma'am. Oh --\nand I'll get a light,' Oak replied, with some awkwardness.\n<P 456>\n\"No; not on my account.'\n\"It is so seldom that I get a lady visitor that I'm\nafraid I haven't proper accommodation. Will you sit\ndown, please ? Here's a chair, and there's one, too.\nI am sorry that my chairs all have wood scats, and are\nrather hard, but i-was thinging of getting some new\nones.' Oak placed two or three for her.\n\"They are quite easy enough for me.'\nSo down she sat, and down sat he, the fire dancing\nin their faces, and upon the old furniture\nall a-sheenen\nWi' long years o' handlen,\nthat formed Oak's array of household possessions, which\nsent back a dancing reflection in reply. It was very\nodd to these two persons, who knew each other passing\nwell, that the mere circumstance of their meeting in a\nnew place and in a new way should make them so\nawkward and constrained. In the fields, or at her house,\nthere had never been any embarrassment; but now that\nOak had become the entertainer their lives seemed to be\nmoved back again to the days when they were strangers.\n\"You'll think it strange that I have come, but -- -'\n\"O no; not at all.'\n\"But I thought -- Gabriel, I have been uneasy in the\nbelief that I have offended you, and that you are going\naway on that account. It grieved me very much and\nI couldn't help coming.'\n\"Offended me! As if you could do that, Bathsheba!'\n\"Haven't I?' she asked, gladly. \" But, what are you\ngoing away for else?'\n\"I am not going to emigrate, you know; I wasn't\naware that you would wish me not to when I told 'ee or I\nshouldn't ha' thought of doing it,' he said, simply. \"I\nhave arranged for Little Weatherbury Farm and shall\nhave it in my own hands at Lady-day. You know I've\nhad a share in it for some time. Still, that wouldn't\nprevent my attending to your business as before, hadn't\nit been that things have been said about us.'\n<P 457>\n\"What?' said Bathsheba, in surprise. \"Things said\nabout you and me! What are they?'\n\"I cannot tell you.'\n\"It would be wiser if you were to, I think. You have\nplayed the part of mentor to me many times, and I don't\nsee why you should fear to do it now.'\n\"It is nothing that you have done, this time. The\ntop and tail o't is this -- that I am sniffing about here,\nand waiting for poor Boldwood's farm, with a thought\nof getting you some day.'\n\"Getting me! What does that mean?'\n\"Marrying o' 'ee, in plain British. You asked me to\ntell, so you mustn't blame me.'\nBathsheba did not look quite so alarmed as if a\ncannon had been discharged by her ear, which was what\nOak had expected. \"Marrying me! I didn't know it\nwas that you meant,' she said, quietly. \"Such a thing\nas that is too absurd -- too soon -- to think of, by far!'\n\"Yes; of course, it is too absurd. I don't desire any\nsuch thing; I should think that was plain enough by\nthis time. Surely, surely you be the last person in the\nworld I think of marrying. It is too absurd, as you say\n\"\"Too -- s-s-soon\" were the words I used.'\n\"I must beg your pardon for correcting you, but you\nsaid, \"\"too absurd,\"' and so do I.'\n\"I beg your pardon too! she returned, with tears\nin her eyes. \"\"\"Too soon\"' was what I said. But it\ndoesn't matter a bit -- not at ali-but I only meant,\n\"\"too soon\"' Indeed, I didn't, Mr. Oak, and you must\nbelieve me!'\nGabriel looked her long in the face, but the firelight\nbeing faint there was not much to be seen. \" Bathsheba,'\nhe said, tenderly and in surprise, and coming closer:\n\"if I only knew one thing -- whether you would allow me\nto love you and win you, and marry you after ali-if I\nonly knew that!'\n\"But you never will know,' she murmured.\n\"Why?'\n\"Because you never ask.\n\"Oh -- Oh!' said Gabriel, with a low laugh of joyous+\nness. \"My own dear -- -'\n<P 458>\n\"You ought not to have sent me that harsh letter\nthis morning,' she interrupted. \"It shows you didn't\ncare a bit about me, and were ready to desert me like\nall the rest of them! It was very cruel of you, consider+\ning I was the first sweetheart that you ever had, and\nyou were the first I ever had; and I shall not forget it!'\n\"Now, Bathsheba, was ever anybody so provoking\nhe said, laughing. \" You know it was purely that I, as\nan unmarried man, carrying on a business for you as a\nvery taking young woman, had a proper hard part to\nplay -- more particular that people knew I had a sort\nof feeling for'ee; and I fancied, from the way we were\nmentioned together, that it might injure your good name.\nNobody knows the heat and fret I have been caused\nby it.'\n\"And was that all?'\n\"All.'\n\"Oh, how glad I am I came!' she exclaimed, thank+\nfully, as she rose from her seat. \"I have thought so\nmuch more of you since I fancied you did not want\neven to see me again. But I must be going now, or I\nshall be missed. Why Gabriel,' she said, with a slight\nlaugh, as they went to the door, \"it seems exactly as if\nI had come courting you -- how dreadful!'\n\"And quite right too,' said Oak. \"I've danced at\nyour skittish heels, my beautiful Bathsheba, for many a\nlong mile, and many a long day; and it is hard to be+\ngrudge me this one visit.'\nHe accompanied her up the hill, explaining to her\nthe details of his forthcoming tenure of the other farm.\nThey spoke very little of their mutual  feeling; pretty\nphrases and warm expressions being probably un+\nnecessary between such tried friends. Theirs was that\nsubstantial affection which arises (if any arises at all)\nwhen the two who are thrown together begin first by\nknowing the rougher sides of each other's character,\nand not the best till further on, the romance growing\nup in the interstices of a mass of hard prosaic reality.\nThis good-fellowship -- <1camaraderie>1 --  usually occurring\nthrough similarity of pursuits, is unfortunately seldom\nsuperadded to love between the sexes, because men and\nwomen associate, not in their lahours, but in their\npleasures merely. Where, however, happy circumstance\n<P 459>\npermits its development, the compounded feeling proves\nitself to be the only love which is strong as death -- that\nlove which many waters cannot quench, nor the floods\ndrown, beside which the passion usually called by the\nname is evanescent as steam.\n<C lvii>\n<P 460>\nA FOGGY NIGHT AND MORNING -- CONCLUSION\n\"THE most private, secret, plaines wedding that it is\npossible to have.'\nThose had been Bathsheba's words to Oak one\nevening, some time after the event of the preceding\nchapter, and he meditated a full hour by the clock upon\nhow to carry out her wishes to the letter.\n\"A licence -- O yes, it must be a licence,' he said\nto himself at last. \"Very well, then; first, a license.'\nOn a dark night, a few days later, Oak came with\nmysterious steps from the surrogate's door, in Caster+\nbridge. On the way home he heard a heavy tread in\nfront of him, and, overtaking the man, found him to be\nCoggan. They walked together into the village until\nthey came to a little lane behind the church, leading\ndown to the cottage of Laban Tall, who had lately been\ninstalled as clerk of the parish, and was yet in mortal\nterror at church on Sundays when he heard his lone\nvoice among certain hard words of the Psalms, whither\nno man ventured to follow him.\n\"Well, good-night, Coggan,' said Oak, \"I'm going\ndown this way.'\n\"Oh!' said Coggan, surprised; \"what's going on to+\nnight then, make so bold Mr. Oak?'\nIt seemed rather ungenerous not to tell Coggan,\nunder the circumstances, for Coggan had been true as\nsteel all through the time of Gabriel's unhappiness about\nBathsheba, and Gabriel said, \" You can keep a secret,\nCoggan?'\n\"You've proved me, and you know.'\n\"Yes, I have, and I do know. Well, then, mistress\nand I mean to get married to-morrow morning.'\n\"Heaven's high tower! And yet I've thought of\nsuch a thing \n<P 461>\nfrom time to time; true, I have. But\nkeeping it so close! Well, there, 'tis no consarn of\namine, and I wish 'ee joy o' her.'\n\"Thank you, Coggan. But I assure 'ee that this\ngreat hush is not what I wished for at all, or what\neither of us would have wished if it hadn't been for\ncertain things that would make a gay wedding seem\nhardly the thing. Bathsheba has a great wish that all\nthe parish shall not be in church, looking at her -- she's\nshyiike and nervous about it, in fact -- so I be doing\nthis to humour her.'\n\"Ay, I see: quite right, too, I suppose I must say.\nAnd you be now going down to the clerk.'\n\"Yes; you may as well come with me.'\n\"I am afeard your labour in keeping it close will be\nthrowed away,' said Coggan, as they walked along.\n\"Labe Tall's old woman will horn it all over parish in\nhalf-an-hour. '\n\"So she will, upon my life; I never thought of\nthat,' said Oak, pausing. \"Yet I must tell him to+\nnight, I suppose, for he's working so far off, and leaves\nearly.'\n\"I'll tell 'ee how we could tackle her,' said Coggan.\n\"I'll knock and ask to speak to Laban outside the door,\nyou standing in the background. Then he'll come out,\nand you can tell yer tale. She'll never guess what I\nwant en for; and I'll make up a few words about the\nfarm-work, as a blind.'\nThis scheme was considered feasible; and Coggan\nadvanced boldly, and rapped at Mrs. Tall's door. Mrs.\nTall herself opened it.\n\"I wanted to have a word with Laban.'\n\"He's not at home, and won't be this side of eleven\no'clock. He've been forced to go over to Yalbury since\nshutting out work. I shall do quite as well.'\n\"I hardly think you will. Stop a moment;' and\nCoggan stepped round the corner of the porch to consult\nOak.\n\"Who's t'other man, then?' said Mrs. Tall.\n\"Only a friend,' said Coggan.\n\"Say he's wanted to meet mistress near church-hatch\nto-morrow morning at ten,' said Oak, in a whisper.\n\"That he must come without fail, and wear his best\nclothes.'\n<P 462>\n\"The clothes will floor us as safe as houses!' said\nCoggan.\n\"It can't be helped said Oak. \"Tell her.'\nSo Coggan delivered the message. \"Mind, het or\nwet, blow or snow, he must come, added Jan. \"'Tis\nvery particular, indeed. The fact is, 'tis to witness her\nsign some law-work about taking shares wi' another\nfarmer for a long span o' years. There, that's what 'tis,\nand now I've told 'ee, Mother Tall, in a way I shouldn't\nha' done if I hadn't loved 'ee so hopeless well.'\nCoggan retired before she could ask any further;\nand next they called at the vicar's in a manner which\nexcited no curiosity at all. Then Gabriel went home,\nand prepared for the morrow.\n\"Liddy,' said Bathsheba, on going to bed that night,\n\"I want you to call me at seven o'clock to-morrow, In\ncase I shouldn't wake.'\n\"But you always do wake afore then, ma'am.'\n\"Yes, but I have something important to do, which\nI'll tell you of when the time comes, and it's best to\nmake sure.'\nCONCLUSION\nBathsheba, however, awoke voluntarily at four, nor\ncould she by any contrivance get to sleep again. About\nsix, being quite positive that her watch had stopped\nduring the night, she could wait no longer. She went\nand tapped at Liddy's door, and after some labour awoke\nher.\n\"But I thought it was I who had to call you?' said\nthe bewildered Liddy. \"And it isn't six yet.'\n\"Indeed it is; how can you tell such a story, Liddy?\nI know it must be ever so much past seven. Come to\nmy room as soon as you can; I want you to give my\nhair a good brushing.'\nWhen Liddy came to Bathsheba's room her mistress\nwas already waiting. Liddy could not understand\nthis extraordinary promptness. \" Whatever <1is>1 going on,\nma'am?' she said.\n\"Well, I'll tell you,' said Bathsheba, with a mischiev+\nous smile in her bright eyes. \"Farmer Oak is coming\nhere to dine with me to-day!'\n\"Farmer Oak -- and nobody else ? -- you two alone?'\n\"Yes.'\n<P 463>\n\"But is it safe, ma'am, after what's been said?' asked\nher companion, dubiously. \"A woman's good name is\nsuch a perishable article that --  -- '\nBathsheba laughed with a flushed cheek, and\nwhispered in Liddy's ear, although there was nobody\npresent. Then Liddy stared and exclaimcd, \" Souls\nalive, what news! It makes my heart go quite\nbumpity-bump\"\n\"It makes mine rather furious, too,' said Bathsheba.\n\"However, there's no getting out of it now!'\nIt was a damp disagreeable morning. Nevertheless,\nat twenty minutes to ten o'clock, Oak came out of his\nhouse, and\nWent up the hill side\nWith that sort of stride\nA man puts out when walking in search of a bride,\nand knocked Bathsheba's door. Ten minutes later\na large and a smaller umbrella might have been seen\nmoving from the same door, and through the mist along\nthe road to the church. The distance was not more\nthan a quarter of a mile, and these two sensible persons\ndeemed it unnecessary to drive. An observer must have\nbeen very close indeed to discover that the forms under\nthe umbrellas were those of Oak and Bathsheba, arm-in+\narm for the first time in their lives, Oak in a greatcoat\nextending to his knees, and Bathsheba in a cloak that\nreached her clogs. Yet, though so plainly dressed\nthere was a certain rejuvenated appearance about her : --\n  As though a rose should shut and be a bud again.\nRepose had again incarnadined her cheeks; and having,\nat Gabriel's request, arranged her hair this morning as\nshe had worn it years ago on Norcombe Hill, she seemed\nin his eyes remarkably like a girl of that fascinating\ndream, which, considering that she was now only three\nor four-and-twenty, was perhaps not very wonderful. In\nthe church were Tall, Liddy, and the parson, and in a\nremarkably short space of time the deed was done.\nThe two sat down very quietly to tea in Bathsheba's\nparlour in the evening of the same day, for it had been\narranged that \n<P 464>\nFarmer Oak should go there to live, since\nhe had as yet neither money, house, nor furniture worthy\nof the name, though he was on a sure way towards them,\nwhilst Bathsheba was, comparatively, in a plethora of all\nthree.\nJust as Bathsheba was pouring out a cup of tea,\ntheir ears were greeted by the firing of a cannon,\nfollowed by what seemed like a tremendous blowing of\ntrumpets, in the front of the house.\n\"There!' said Oak, laughing, \"I knew those fellows\nwere up to something, by the look on their face; '\nOak took up the light and went into the porch,\nfollowed by Bathsheba with a shawl over her head. The\nrays fell upon a group of male figures gathered upon the\ngravel in front, who, when they saw the newly-married\ncouple in the porch, set up a loud \"Hurrah!' and at\nthe same moment bang again went the cannon in the\nbackground, followed by a hideous clang of music from\na drum, tambourine, clarionet, serpent, hautboy, tenor+\nviol, and double-bass -- the only remaining relics of the\ntrue and original Weatherbury band -- venerable worm+\neaten instruments, which had celebrated in their own\npersons the victories of Marlhorough, under the fingers\nof the forefathers of those who played them now. The\nperformers came forward, and marched up to the\nfront.\n\"Those bright boys, Mark Clark and Jan, are at the\nbottom of all this,' said Oak. \" Come in, souls, and\nhave something to eat and drink wi' me and my wife.'\n\"Not to-night,' said Mr. Clark, with evident self+\ndenial. \"Thank ye all the same; but we'll call at a\nmore seemly time. However, we couldn't think of\nletting the day pass without a note of admiration of\nsome sort. If ye could send a drop of som'at down to\nWarren's, why so it is. Here's long life and happiness\nto neighbour Oak and his comely bride!'\n\"Thank ye; thank ye all,' said Gabriel. \"A bit and\na drop shall be sent to Warren's for ye at once. I had\na thought that we might very likely get a salute of some\nsort from our old friends, and I was saying so to my\nwife but now.'\n\"Faith,' said Coggan, in a critical tone, turning to his\ncompanions, \"the man hev learnt to say \"\"my wife\"'\nin a wonderful \n<P 465>\nnaterel way, considering how very youth+\nful he is in wedlock as yet -- hey, neighbours all?'\n\"I never heerd a skilful old married feller of twenty\nyears' standing pipe \"\"my wife\"' in a more used note\nthan 'a did,' said Jacob Smallbury. \"It might have been\na little more true to nater if't had been spoke a little\nchillier, but that wasn't to be expected just now.\n\"That improvement will come wi' time,' said Jan,\ntwirling his eye.\nThen Oak laughed, and Bathsheba smiled (for she\nnever laughed readily now), and their friends turned to\ngo.\n\"Yes; I suppose that's the size o't,' said Joseph\nPoorgrass with a cheerful sigh as they moved away;\n\"and I wish him joy o' her; though I were once or\ntwice upon saying to-day with holy Hosea, in my\nscripture manner, which is my second nature. \"\"Ephraim\nis joined to idols: let him alone.\"' But since 'tis as 'tis\nwhy, it might have been worse, and I feel my thanks\naccordingly.'\nTHE END\n"
  },
  {
    "path": "testdata/calgary/book2",
    "content": ".EQ\ndelim $$\n.EN\n.CH \"1  WHY SPEECH OUTPUT?\"\n.ds RT \"Why speech output?\n.ds CX \"Principles of computer speech\n.pp\nSpeech is our everyday, informal, communication medium.  But although we use\nit a lot, we probably don't assimilate as much information through our\nears as we do through our eyes, by reading or looking at pictures and diagrams.\nYou go to a technical lecture to get the feel of a subject \\(em the overall\narrangement of ideas and the motivation behind them \\(em and fill in the details,\nif you still want to know them, from a book.  You probably find out more about\nthe news from ten minutes with a newspaper than from a ten-minute news broadcast.\nSo it should be emphasized from the start that speech output from computers is\nnot a panacea.  It doesn't solve the problems of communicating with computers;\nit simply enriches the possibilities for communication.\n.pp\nWhat, then, are the advantages of speech output?  One good reason for listening\nto a radio news broadcast instead of spending the time with a newspaper\nis that you can listen while shaving, doing the housework, or driving the car.\nSpeech leaves hands and eyes free for other tasks.\nMoreover, it is omnidirectional, and does not require a free line of sight.\nRelated to this is the\nuse of speech as a secondary medium for status reports and warning messages.\nOccasional interruptions by voice do not interfere with other activities,\nunless they demand unusual concentration, and people can assimilate spoken messages\nand queue them for later action quite easily and naturally.\n.pp\nThe second key feature of speech communication stems from the telephone.\nIt is the universality of the telephone receiver itself that is important\nhere, rather than the existence of a world-wide distribution network;\nfor with special equipment (a modem and a VDU) one does not need speech to take advantage of\nthe telephone network for information transfer.\nBut speech needs no tools other than the telephone, and this gives\nit a substantial advantage.  You can go into a phone booth anywhere in the world,\ncarrying no special equipment, and have access to your computer within seconds.\nThe problem of data input is still there:  perhaps your computer\nsystem has a limited word recognizer, or you use the touchtone telephone\nkeypad (or a portable calculator-sized tone generator).  Easy remote access\nwithout special equipment is a great, and unique, asset to speech communication.\n.pp\nThe third big advantage of speech output is that it is potentially very cheap.\nBeing all-electronic, except for the loudspeaker, speech systems are well\nsuited to high-volume, low-cost, LSI manufacture.  Other computer output\ndevices are at present tied either to mechanical moving parts or to the CRT.\nThis was realized quickly by the computer hobbies market, where speech output\nperipherals have been selling like hot cakes since the mid 1970's.\n.pp\nA further point in favour of speech is that it is natural-seeming and\nsomehow cuddly when compared with printers or VDU's.  It would have been much\nmore difficult to make this point before the advent of talking toys like\nTexas Instruments' \"Speak 'n Spell\" in 1978, but now it is an accepted fact that friendly\ncomputer-based gadgets can speak \\(em there are talking pocket-watches\nthat really do \"tell\" the time, talking microwave ovens, talking pinball machines, and,\nof course, talking calculators.\nIt is, however, difficult to assess whether the appeal stems from\nmechanical speech's novelty \\(em it\nis still a gimmick \\(em and also to what extent it is tied up with\neconomic factors.\nAfter all, most of the population don't use high-quality VDU's, and their major\nexperience of real-time interactive computing is through the very limited displays\nand keypads provided on video games and teletext systems.\n.pp\nArticles on speech communication with computers often list many more advantages of voice output\n(see Hill 1971, Turn 1974, Lea 1980).\n.[\nHill 1971 Man-machine interaction using speech\n.]\n.[\nLea 1980\n.]\n.[\nTurn 1974 Speech as a man-computer communication channel\n.]\nFor example, speech\n.LB\n.NP\ncan be used in the dark\n.NP\ncan be varied from a (confidential) whisper to a (loud) shout\n.NP\nrequires very little energy\n.NP\nis not appreciably affected by weightlessness or vibration.\n.LE\nHowever, these either derive from the three advantages we have discussed above,\nor relate\nmainly to exotic applications in space modules and divers' helmets.\n.pp\nUseful as it is at present, speech output would be even more attractive if it could\nbe coupled with speech input.  In many ways, speech input is its \"big brother\".\nMany of the benefits of speech output are even more striking for speech input.\nAlthough people can assimilate information faster through the eyes than the\nears, the majority of us can generate information faster with the mouth than\nwith the hands.  Rapid typing is a relatively uncommon skill, and even high\ntyping rates are much slower than speaking rates (although whether we can\noriginate ideas quickly enough to keep up with fast speech is another matter!)  To\ntake full advantage of the telephone for interaction with machines, machine\nrecognition of speech is obviously necessary.  A microwave oven, calculator,\npinball machine, or alarm clock that responds to spoken commands is certainly\nmore attractive than one that just generates spoken status messages.  A book\nthat told you how to recognize speech by machine would undoubtedly be more\nuseful than one like this that just discusses how to synthesize it!  But the\ntechnology of speech recognition is nowhere near as advanced as that of\nsynthesis \\(em it's a much more difficult problem.  However, because speech input\nis obviously complementary to speech output, and even very limited input\ncapabilities will greatly enhance many speech output systems, it is worth\nsummarizing the present state of the art of speech recognition.\n.pp\nCommercial speech recognizers do exist.  Almost invariably, they accept\nwords spoken in isolation, with gaps of silence between them, rather than\nconnected utterances.\nIt is not difficult to discriminate with high accuracy up to a hundred\ndifferent words spoken by the same speaker, especially if the vocabulary\nis carefully selected to avoid words which sound similar.  If several\ndifferent speakers are to be comprehended, performance can be greatly improved\nif the machine is given an opportunity to calibrate their voices in a training\nsession, and is informed at recognition time which one is to speak.\nWith a large population of unknown speakers, accurate recognition is difficult\nfor vocabularies of more than a few carefully-chosen words.\n.pp\nA half-way house between isolated word discrimination and recognition of connected\nspeech is the problem of spotting known words in continuous speech.  This\nallows much more natural input, if the dialogue is structured as keywords\nwhich may be\ninterspersed by unimportant \"noise words\".  To speak in truly isolated\nwords requires a great deal of self-discipline and concentration \\(em it is\nsurprising how much of ordinary speech is accounted for by vague sounds\nlike um's and aah's, and false starts.  Word spotting disregards these and so\npermits a more relaxed style of speech.  Some progress has been made on it in\nresearch laboratories, but the vocabularies that can be accomodated are still\nvery small.\n.pp\nThe difficulty of recognizing connected speech depends crucially on what is\nknown in advance about the dialogue:  its pragmatic, semantic, and syntactic\nconstraints.  Highly structured dialogues constrain very heavily the choice of\nthe next word.  Recognizers which can deal with vocabularies of over 1000 words\nhave been built in research laboratories, but the structure of the input has\nbeen such that the average \"branching factor\" \\(em the size of the set out of\nwhich the next word must be selected \\(em is only around 10 (Lea, 1980).\n.[\nLea 1980\n.]\nWhether such\nhighly constrained languages would be acceptable in many practical applications\nis a moot point.  One commercial recognizer, developed in 1978, can cope with\nup to five words spoken continuously from a basic 120-word vocabulary.\n.pp\nThere has been much debate about whether it will ever be possible for a speech\nrecognizer to step outside rigid constraints imposed on the utterances it can\nunderstand, and act, say, as an automatic dictation machine.  Certainly the most\nadvanced recognizers to date depend very strongly on a tight context being\navailable.  Informed opinion seems to accept that in ten years' time,\nvoice data entry in the office will be an important and economically feasible\nprospect, but that it would be rash to predict the appearance of unconstrained\nautomatic dictation by then.\n.pp\nLet's return now to speech output and take a look at some systems which use it,\nto illustrate the advantages and disadvantages of speech in practical\napplications.\n.sh \"1.1  Talking calculator\"\n.pp\nFigure 1.1 shows a calculator that speaks.\n.FC \"Figure 1.1\"\nWhenever a key is pressed,\nthe device confirms the action by saying the key's name.\nThe result of any computation is also spoken aloud.\nFor most people, the addition of speech output to a calculator is simply a\ngimmick.\n(Note incidentally that speech\n.ul\ninput\nis a different matter altogether.  The ability to dictate lists of numbers and\ncommands to a calculator, without lifting one's eyes from the page, would have\nvery great advantages over keypad input.)  Used-car\nsalesmen find that speech output sometimes helps to clinch a deal:  they key in\nthe basic car price and their bargain-basement deductions, and the customer is so\nbemused by the resulting price being spoken aloud to him by a machine that he\nsigns the cheque without thinking!  More seriously, there may be some small\nadvantage to be gained when keying a list of figures by touch from having their\nvalues read back for confirmation.  For blind people, however, such devices\nare a boon \\(em and there are many other applications, like talking elevators\nand talking clocks, which benefit from even very restricted voice output.\nMuch more sophisticated is a typewriter with audio feedback, designed by\nIBM for the blind.  Although blind typists can remember where the keys on a\ntypewriter are without difficulty, they rely on sighted proof-readers to help\ncheck\ntheir work.  This device could make them more useful as office typists and\nsecretaries.  As well as verbalizing the material (including punctuation)\nthat has been typed, either by attempting to pronounce the words or by spelling\nthem out as individual letters, it prompts the user through the more complex action sequences\nthat are possible on the typewriter.\n.pp\nThe vocabulary of the talking calculator comprises the 24 words of Table 1.1.\n.RF\n.nr x1 2.0i+\\w'percent'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta 2.0i\nzero\tpercent\none\tlow\ntwo\tover\nthree\troot\nfour\tem (m)\nfive\ttimes\nsix\tpoint\nseven\toverflow\neight\tminus\nnine\tplus\ntimes-minus\tclear\nequals\tswap\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 1.1  Vocabulary of a talking calculator\"\nThis represents a total of about 13 seconds of speech.  It is stored\nelectronically in read-only memory (ROM), and Figure 1.2 shows the circuitry\nof the speech module inside the calculator.\n.FC \"Figure 1.2\"\nThere are three large integrated circuits.\nTwo of them are ROMs, and the other is a special synthesis chip which decodes the\nhighly compressed stored data into an audio waveform.\nAlthough the mechanisms used for storing speech by commercial devices are\nnot widely advertised by the manufacturers, the talking calculator almost\ncertainly uses linear predictive coding \\(em a technique that we will examine\nin Chapter 6.\nThe speech quality is very poor because of the highly compressed storage, and\nwords are spoken in a grating monotone.\nHowever, because of the very small vocabulary, the quality is certainly good\nenough for reliable identification.\n.sh \"1.2  Computer-generated wiring instructions\"\n.pp\nI mentioned earlier that one big advantage of speech over visual output is that\nit leaves the eyes free for other tasks.\nWhen wiring telephone equipment during manufacture, the operator needs to use\nhis hands as well as eyes to keep his place in the task.\nFor some time tape-recorded instructions have been used for this in certain\nmanufacturing plants.  For example, the instruction\n.LB\n.NI\nRed 2.5    11A terminal strip    7A tube socket\n.LE\ndirects the operator to cut 2.5\" of red wire, attach one end to a specified point\non the terminal strip, and attach the other to a pin of the tube socket.  The\ntape recorder is fitted with a pedal switch to allow a sequence of such instructions\nto be executed by the operator at his own pace.\n.pp\nThe usual way of recording the instruction tape is to have a human reader\ndictate them from a printed list.\nThe tape is then checked against the list by another listener to ensure that\nthe instructions are correct.  Since wiring lists are usually stored and\nmaintained in machine-readable form, it is natural to consider whether speech\nsynthesis techniques could be used to generate the acoustic tape directly by\na computer (Flanagan\n.ul\net al,\n1972).\n.[\nFlanagan Rabiner Schafer Denman 1972\n.]\n.pp\nTable 1.2 shows the vocabulary needed for this application.\n.RF\n.nr x1 2.0i+2.0i+\\w'tube socket'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta 2.0i +2.0i\nA\tgreen\tseventeen\nblack\tleft\tsix\nbottom\tlower\tsixteen\nbreak\tmake\tstrip\nC\tnine\tten\ncapacitor\tnineteen\tterminal\neight\tone\tthirteen\neighteen\tP\tthirty\neleven\tpoint\tthree\nfifteen\tR\ttop\nfifty\tred\ttube socket\nfive\trepeat coil\ttwelve\nforty\tresistor\ttwenty\nfour\tright\ttwo\nfourteen\tseven\tupper\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 1.2  Vocabulary needed for computer-generated wiring instructions\"\nIt is rather larger\nthan that of the talking calculator \\(em about 25 seconds of speech \\(em but well\nwithin the limits of single-chip storage in ROM, compressed by the linear\npredictive technique.  However, at the time that the scheme was investigated\n(1970\\-71) the method of linear predictive coding had not been fully developed,\nand the technology for low-cost microcircuit implementation was not available.\nBut this is not important for this particular application, for there is\nno need to perform the synthesis on a miniature low-cost computer system,\nnor need it\nbe accomplished in real time.  In fact a technique of concatenating\nspectrally-encoded words was used (described in Chapter 7), and it was\nimplemented on a minicomputer.  Operating much slower than real-time, the system\ncalculated the speech waveform and wrote it to disk storage.  A subsequent phase\nread the pre-computed messages and recorded them on a computer-controlled analogue\ntape recorder.\n.pp\nInformal evaluation showed the scheme to be quite successful.  Indeed, the\nsynthetic speech, whose quality was not high, was actually preferred to\nnatural speech in the noisy environment of the production line, for each\ninstruction was spoken in the same format, with the same programmed pause\nbetween the items.\nA list of 58 instructions of the form shown above was recorded and used\nto wire several pieces of apparatus without errors.\n.sh \"1.3  Telephone enquiry service\"\n.pp\nThe computer-generated wiring scheme illustrates how speech can be used to give\ninstructions without diverting visual attention from the task at hand.\nThe next system we examine shows how speech output can make the telephone\nreceiver into a remote computer terminal for a variety of purposes\n(Witten and Madams, 1977).\n.[\nWitten Madams 1977 Telephone Enquiry Service\n.]\nThe caller employs the touch-tone keypad shown in Figure 1.3 for input, and the\ncomputer generates\na synthetic voice response.\n.FC \"Figure 1.3\"\nTable 1.3 shows the process of making\ncontact with the system.\n.RF\n.fi\n.nh\n.na\n.in 0.3i\n.nr x0 \\w'COMPUTER:  '\n.nr x1 \\w'CALLER:  '\n.in+\\n(x0u\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Dials the service.\n.ti-\\n(x0u\nCOMPUTER:  Answers telephone.\n\"Hello, Telephone Enquiry Service.  Please\nenter your user number\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters user number.\n.ti-\\n(x0u\nCOMPUTER:  \"Please enter your password\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters password.\n.ti-\\n(x0u\nCOMPUTER:  Checks validity of password.\nIf invalid, the user is asked to re-enter\nhis user number.\nOtherwise,\n\"Which service do you require?\"\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters service number.\n.in 0\n.nf\n.FG \"Table 1.3  Making contact with the telephone enquiry system\"\n.pp\nAdvantage is taken of the disparate speeds of input (keyboard) and\noutput (speech) to hasten the dialogue by imposing a question-answer structure\non it, with the computer taking the initiative.  The machine can\nafford to be slightly verbose if by so doing it makes the caller's\nresponse easier, and therefore more rapid.  Moreover, operators who\nare experienced enough with the system to anticipate questions can\neasily forestall them just by typing ahead, for the computer is programmed\nto examine its input buffer before issuing prompts and to suppress them if\ninput has already been provided.\n.pp\nAn important aim of the system is to allow application programmers with no\nspecial knowledge of speech to write independent services for it.\nTable 1.4 shows an example of the use of one such application program,\n.RF\n.fi\n.nh\n.na\n.in 0.3i\n.nr x0 \\w'COMPUTER:  '\n.nr x1 \\w'CALLER:  '\n.in+\\n(x0u\n.ti-\\n(x0u\nCOMPUTER:  \"Stores Information Service.  Please enter\ncomponent name\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"SN7406#\".\n.ti-\\n(x0u\nCOMPUTER:  \"The component name is SN7406.  Is this correct?\"\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*1#\" (system convention for \"yes\").\n.ti-\\n(x0u\nCOMPUTER:  \"This component is in stores\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*7#\" (command for \"price\").\n.ti-\\n(x0u\nCOMPUTER:  \"The component price is 35 pence\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*8#\" (command for \"minimum number\").\n.ti-\\n(x0u\nCOMPUTER:  \"The minimum number of this component kept\nin stores is 10\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"SN7417#\".\n.ti-\\n(x0u\nCOMPUTER:  \"The component name is SN7417.  Is this correct?\"\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*1#\".\n.ti-\\n(x0u\nCOMPUTER:  \"This component is not in stores\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*9#\" (command for \"delivery time\").\n.ti-\\n(x0u\nCOMPUTER:  \"The expected delivery time is 14 days\".\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Enters \"*0#\".\n.ti-\\n(x0u\nCOMPUTER:  \"Which service do you require?\"\n.in 0\n.nf\n.FG \"Table 1.4  The Stores Information Service\"\nthe\nStores Information Service, which permits enquiries to be made of a database\nholding information on electronic components kept in stock.\nThis subsystem is driven by\n.ul\nalphanumeric\ndata entered on the touch-tone keypad.  Two or three letters are associated\nwith each digit, in a manner which is fairly standard in touch-tone telephone\napplications.  These are printed on a card overlay\nthat fits the keypad (see Figure 1.3).  Although true alphanumeric data entry\nwould require a multiple key press for each character,\nthe ambiguity inherent in\na single-key-per-character convention can usually be resolved by the computer,\nif it has a list of permissible entries.  For example, the component names\nSN7406 and ZTX300 are read by the machine as \"767406\" and \"189300\", respectively.\nConfusion rarely occurs if the machine is expecting a valid component code.\nThe same holds true of people's names, and file names \\(em although with these\none must take care not to identify a series of files by similar names, like\nTX38A, TX38B, TX38C.  It is easy for the machine to detect the rare cases\nwhere ambiguity occurs, and respond by requesting further information:  \"The\ncomponent name is SN7406.  Is this correct?\"  (In fact, the Stores Information\nService illustrated in Table 1.4 is defective in that it\n.ul\nalways\nrequests confirmation of an entry, even when no ambiguity exists.)  The\nuse of a telephone keypad for data entry will be taken up again in Chapter 10.\n.pp\nA distinction is drawn throughout the system between data entries and\ncommands, the latter being prefixed by a \"*\".  In this example, the\nprogrammer chose to define a command for each possible question about a\ncomponent, so that a new component name can be entered at any time\nwithout ambiguity.  The price paid for the resulting brevity of dialogue\nis the burden of memorizing the meaning of the commands.  This is an\ninherent disadvantage of a one-dimensional auditory display over the\nmore conventional graphical output:   presenting menus by speech is tedious and\nlong-winded.  In practice, however, for a simple task such as the\nStores Information Service it is quite convenient for the caller to\nsearch for the appropriate command by trying out all possibilities \\(em there\nare only a few.\n.pp\nThe problem of memorizing commands is alleviated by establishing some\nsystem-wide conventions.  Each input is terminated by a \"#\", and\nthe meaning of standard commands is given in Table 1.5.\n.RF\n.fi\n.nh\n.na\n.in 0.3i\n.nr x0 \\w'# alone  '\n.nr x1 \\w'\\(em  '\n.ta \\n(x0u +\\n(x1u\n.nr x2 \\n(x0+\\n(x1\n.in+\\n(x2u\n.ti-\\n(x2u\n*#\t\\(em\tErase this input line, regardless of what has\nbeen typed before the \"*\".\n.ti-\\n(x2u\n*0#\t\\(em\tStop.  Used to exit from any service.\n.ti-\\n(x2u\n*1#\t\\(em\tYes.\n.ti-\\n(x2u\n*2#\t\\(em\tNo.\n.ti-\\n(x2u\n*3#\t\\(em\tRepeat question or summarize state of current\ntransaction.\n.ti-\\n(x2u\n# alone\t\\(em\tShort form of repeat.  Repeats or summarizes\nin an abbreviated fashion.\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.nf\n.FG \"Table 1.5  System-wide conventions for the service\"\n.pp\nA summary of services available on the system is given in\nTable 1.6.\n.RF\n.fi\n.na\n.in 0.3i\n.nr x0 \\w'000  '\n.nr x1 \\w'\\(em  '\n.nr x2 \\n(x0+\\n(x1\n.in+\\n(x2u\n.ta \\n(x0u +\\n(x1u\n.ti-\\n(x2u\n\\0\\01\t\\(em\ttells the time\n.ti-\\n(x2u\n\\0\\02\t\\(em\tBiffo (a game of NIM)\n.ti-\\n(x2u\n\\0\\03\t\\(em\tMOO (a game similar to that marketed under the name \"Mastermind\")\n.ti-\\n(x2u\n\\0\\04\t\\(em\terror demonstration\n.ti-\\n(x2u\n\\0\\05\t\\(em\tspeak a file in phonetic format\n.ti-\\n(x2u\n\\0\\06\t\\(em\tlistening test\n.ti-\\n(x2u\n\\0\\07\t\\(em\tmusic (allows you to enter a tune and play it)\n.ti-\\n(x2u\n\\0\\08\t\\(em\tgives the date\n.sp\n.ti-\\n(x2u\n100\t\\(em\tsquash ladder\n.ti-\\n(x2u\n101\t\\(em\tstores information service\n.ti-\\n(x2u\n102\t\\(em\tcomputes means and standard deviations\n.ti-\\n(x2u\n103\t\\(em\ttelephone directory\n.sp\n.ti-\\n(x2u\n411\t\\(em\tuser information\n.ti-\\n(x2u\n412\t\\(em\tchange password\n.ti-\\n(x2u\n413\t\\(em\tgripe (permits feedback on services from caller)\n.sp\n.ti-\\n(x2u\n600\t\\(em\tfirst year laboratory marks entering service\n.sp\n.ti-\\n(x2u\n910\t\\(em\trepeat utterance (allows testing of system)\n.ti-\\n(x2u\n911\t\\(em\tspeak utterance (allows testing of system)\n.ti-\\n(x2u\n912\t\\(em\tenable/disable user 100 (a no-password guest user number)\n.ti-\\n(x2u\n913\t\\(em\tmount a magnetic tape on the computer\n.ti-\\n(x2u\n914\t\\(em\tset/reset demonstration mode (prohibits access by low-priority users)\n.ti-\\n(x2u\n915\t\\(em\tinhibit games\n.ti-\\n(x2u\n916\t\\(em\tinhibit the MOO game\n.ti-\\n(x2u\n917\t\\(em\tdisable password checking when users log in\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.nf\n.FG \"Table 1.6  Summary of services on a telephone enquiry system\"\nThey range from simple games and demonstrations, through serious database\nservices, to system maintenance facilities.\nA priority structure is imposed upon them, with higher\nservice numbers being available only to higher priority users.\nServices in the lowest range (1\\-99) can be obtained by all, while\nthose in the highest range (900\\-999) are maintenance services,\navailable only to the system designers.  Access to the lower-numbered\n\"games\" services can be inhibited by a priority user \\(em this was\nfound necessary to prevent over-use of the system!  Another advantage\nof telephone access to an information retrieval system is that some\nday-to-day maintenance can be done remotely, from the office telephone.\n.pp\nThis telephone enquiry service, which was built in 1974, demonstrated that\nspeech synthesis had moved from a specialist phonetic discipline into the\nprovince of engineering practicability.  The speech was generated \"by rule\"\nfrom a phonetic input (the method is covered in Chapters 7 and 8), which\nhas very low data storage requirements of around 75\\ bit/s of speech.\nThus an enormous vocabulary and range of services could be accomodated on a\nsmall computer system.\nDespite the fairly low quality of the speech, the response from callers was\nmost encouraging.  Admittedly the user population was a self-selected body of\nUniversity staff, which one might suppose to have high tolerance to new ideas,\nand a system designed for the general public would require more effort to be\nspent on developing speech of greater intelligibility.  Although it was\nobserved that some callers failed to understand parts of the responses, even\nafter repetition, communication was largely unhindered in most cases; users\nbeing driven by a high motivation to help the system help them.\n.pp\nThe use of speech output in conjunction with a simple input device requires\ncareful thought for interaction to be successful and comfortable.  It is\nnecessary that the computer direct the conversation as much as possible,\nwithout seeming to be taking charge.  Provision for eliminating prompts\nwhich are unwanted by sophisticated users is essential to avoid frustration.\nWe will return to the topic of programming techniques for speech interaction\nin Chapter 10.\n.pp\nMaking a computer system available over the telephone results in a sudden\nvast increase in the user population.  Although people's reaction to a new\ncomputer terminal in every office was overwhelmingly favourable, careful\nresource allocation was essential to prevent the service being hogged by a\npersistent few.  As with all multi-access computer systems, it is particularly\nimportant that error recovery is effected automatically and gracefully.\n.sh \"1.4  Speech output in the telephone exchange\"\n.pp\nThe telephone enquiry service was an experimental vehicle for research on speech\ninteraction, and was developed in 1974.\nSince then, speech has begun to be used in real commercial applications.\nOne example is System\\ X, the British Post Office's computer-controlled\ntelephone exchange.  This incorporates many features\nnot found in conventional telephone exchanges.\nFor example, if a number is found to be busy, the call can be attempted\nagain by a \"repeat last call\" command, without having to re-dial the full number.\nAlternatively, the last number can be stored for future re-dialling, freeing\nthe phone for other calls.\n\"Short code\ndialling\" allows a customer to associate short codes with commonly-dialled\nnumbers.\nAlarm calls can be booked at specified times, and are made automatically\nwithout human intervention.\nIncoming calls can be barred, as can outgoing ones.  A diversion service\nallows all incoming calls to be diverted to another telephone, either\nimmediately, or if a call to the original number remains unanswered for\na specified period of time, or if the original number is busy.\nThree-party calls can be set up automatically, without involving the\noperator.\n.pp\nMaking use of these facilities presents the caller with something of a problem.\nWith conventional telephone exchanges, feedback is provided on what is happening\nto a call by the use of four tones \\(em the dial tone, the busy tone,\nthe ringing tone, and the number unavailable tone.\nFor the more sophisticated interaction which is expected on the advanced\nexchange, a much greater variety of status signals is required.\nThe obvious solution is to use\ncomputer-generated spoken\nmessages to inform the caller when these services are invoked, and to guide him\nthrough the sequences of actions needed to set up facilities like call\nre-direction.  For example, the messages used by the exchange when a user\naccesses the alarm call\nservice are\n.LB\n.NI\nAlarm call service.\nDial the time of your alarm call followed by square\\u\\(dg\\d.\n.FN 1\n\\(dg\\d\"Square\" is the term used for the \"#\" key on the touch-tone telephone.\\u\n.EF\n.NI\nYou have booked an alarm call for seven thirty hours.\n.NI\nAlarm call operator.  At the third stroke it will be seven thirty.\n.LE\n.pp\nBecause of the rather small vocabulary, the number of messages that can be\nstored in their entirety rather than being formed by concatenation of\nsmaller units, and the short time which was available for development,\nSystem\\ X stores speech as a time waveform, slightly compressed by a time-domain\nencoding operation (such techniques are described in Chapter 3).\nUtterances which contain variable parts, like the time of alarm in the messages\nabove, are formed by inserting separately-recorded digits in a fixed \n\"carrier\" message.  No attempt is made to apply uniform intonation\ncontours to the synthetic utterances.  The resulting speech is of excellent\nquality (being a slightly compressed recording of a human voice), but sometimes\nexhibits somewhat anomalous pitch contours.\nFor example, the digits comprising numbers often sound rather jerky and\nout-of-context \\(em which indeed they are.\n.pp\nEven more advanced facilities can be expected on telephone exchanges in\nthe future.  A message storage capability is one example.  Although\nautomatic call recording machines have been available for years, a centralized\nfacility could time and date a message, collect the caller's identity\n(using the telephone keypad), and allow the recipient to select messages left\nfor him through an interactive dialogue so that he could control the order\nin which he listens to them.  He could choose to leave certain messages to be\ndealt with later, or re-route them to a colleague.  He may even wish to leave\nreminders for himself, to be dialled automatically at specified times (like\nalarm calls with user-defined information attached).  The sender of a message\ncould be informed automatically by the system when it is delivered.  None of\nthis requires speech recognition, but it does need economical speech\n.ul\nstorage,\nand also speech\n.ul\nsynthesis\n(for time and date tags).\n.sh \"1.5  Travel consultant\"\n.pp\nSome current research in speech communication with computers is aimed at\nembedding the dialogue in a task environment which provides it with an overall\ncontextual framework.\nThis in fact was the motivation for the experimental telephone enquiry service\ndescribed above, and it was observed that people are able to tolerate rather\nlow quality speech if they feel that the interaction is worthwhile.  One step\nfurther is the use of speech\n.ul\ninput\nas well as output, and here the context of the conversation which is provided\nby the task environment can be used to improve recognition accuracy\nsignificantly.\nA system set up at Bell Telephone Laboratories indicates what we can expect\nto find operating commercially in the future (Levinson and Shipley, 1980).\n.[\nLevinson Shipley 1980\n.]\nIt provides timetable information about airline flights, and allows the user\nto make reservations.\n.pp\nAn example dialogue is given in Table 1.7.\n.RF\n.fi\n.nh\n.na\n.in 0.3i\n.nr x0 \\w'COMPUTER:  '\n.nr x1 \\w'CALLER:  '\n.in+\\n(x0u\n.ti-\\n(x0u\nCOMPUTER:  This is the Bell Laboratories flight information system.  May I help you?\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  I would like to go to Chicago.\n.ti-\\n(x0u\nCOMPUTER:  Please specify the day of your departure.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  I want to leave at four p.m..\n.ti-\\n(x0u\nCOMPUTER:  Please specify the day of your departure.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  I want to depart on the two five May.\n.ti-\\n(x0u\nCOMPUTER:  Flight number nine two leaves New York at four p.m. arrives in Chicago at five twenty five p.m..\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  What plane is on the flight?\n.ti-\\n(x0u\nCOMPUTER:  The aircraft is a Boeing seven twenty seven.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  How much is the fare?\n.ti-\\n(x0u\nCOMPUTER:  The round trip coach fare is one hundred forty two dollars.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  I want a first class seat.\n.ti-\\n(x0u\nCOMPUTER:  One seat thank you.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  What is the fare?\n.ti-\\n(x0u\nCOMPUTER:  The round trip first class fare is one hundred eighty four dollars.\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  Please repeat the arrival time.\n.ti-\\n(x0u\nCOMPUTER:  The arrival time is five twenty five p.m..\n.ti-\\n(x0u\nCALLER:\\h'\\n(x0u-\\n(x1u'  I will take the flight.\n.ti-\\n(x0u\nCOMPUTER:  Your reservation on flight number nine two to Chicago on Friday is confirmed.  Thank you.\n.in 0\n.nf\n.MT 2\nTable 1.7  A conversation with an airline flight information service\n(from Levinson and Shipley, 1980)\n.TE\n.[\nLevinson Shipley 1980\n.]\nThe user dials the system from an\nordinary telephone.  The recognition side must be trained by each user, and\naccepts isolated words spoken with brief pauses between them.\nThe voice response unit has a vocabulary of around 200 words, and\nsynthesizes its answers by slotting words into \"templates\" evoked by the speech\nunderstanding part in response to a query.  For example,\n.LB\n.NI\nThis flight makes \\(em stops\n.NI\nFlight number \\(em leaves \\(em at \\(em , arrives in \\(em at \\(em\n.LE\nare templates which when called with specific slot fillers could produce the\nutterances\n.LB\n.NI\nThis flight makes three stops\n.NI\nFlight number nine two leaves New York at four p.m.,\narrives in Chicago at five twenty-five p.m.\n.LE\nThe chief research interest of the system is in its speech understanding\ncapabilities, and the method used for speech output is relatively\nstraightforward.  The templates and words are recorded, digitized, compressed\nslightly, and stored on disk files (totalling a few hundred thousand bytes of\nstorage), using techniques similar to those of System\\ X.\nAgain, no independent manipulation of pitch is possible, and so the utterances\nsound intelligible but the transition between templates and slot fillers is not\ncompletely fluent.  However, the overall context of the interaction means that\nthe communication is not seriously disrupted even if the machine occasionally\nmisunderstands the man or vice versa.  The user's attention is drawn away from\nrecognition accuracy and focussed on the exchange of information with the machine.\nThe authors conclude that progress in speech recognition can best be made by\nstudying it in the context of communication rather than in a vacuum or as part\nof a one-way channel, and the same is undoubtedly true of speech synthesis as\nwell.\n.sh \"1.6  Reading machine for the blind\"\n.pp\nPerhaps the most advanced attempt to provide speech output from a computer\nis the Kurzweil reading machine for the blind, first marketed in the late\n1970's (Figure 1.4).\n.FC \"Figure 1.4\"\nThis device reads an ordinary book aloud.  Users adjust the reading\nspeed according to the content of the material and their familiarity with\nit, and the maximum rate has recently been improved to around 225 words per\nminute \\(em perhaps half as fast again as normal human speech rates.\n.pp\nAs well as generating speech from text, the machine has to scan the document\nbeing read and identify the characters presented to it.  A scanning camera\nis used, controlled by a program which searches for and tracks the lines of\ntext.  The output of the camera is digitized, and the image is enhanced\nusing signal-processing techniques.  Next each individual letter must be\nisolated, and its geometric features identified and compared with a pre-stored\ntable of letter shapes.  Isolation of letters is not at all trivial, for\nmany type fonts have \"ligatures\" which are combinations of characters joined\ntogether (for example, the letters \"fi\" are often run together.)  The\nmachine must cope with many printed type fonts, as well as typewritten ones.\nThe text-recognition side of the Kurzweil reading machine is in fact one of\nits most advanced features.\n.pp\nWe will discuss the problem of speech generation from text in Chapter 9.\nIt has many facets.  First there is pronunciation, the\ntranslation of letters to sounds.  It is important to take into account\nthe morphological structure of words, dividing them into \"root\" and \"endings\".\nMany words have concatenated suffixes (like \"like-li-ness\").  These are\nimportant to detect, because a final \"e\" which appears on a root word\nis not pronounced itself but affects the pronunciation of the previous\nvowel.  Then there is the difficulty that some words look the same\nbut are pronounced differently, depending on their meaning or on the syntactic\npart that they play in the sentence.\nAppropriate intonation is extremely difficult to generate from a plain textual\nrepresentation, for it depends on the meaning of the text and the way in which\nemphasis is given to it by the reader.  Similarly the rhythmic structure is\nimportant, partly for correct pronunciation and partly for purposes of\nemphasis.\nFinally the sounds that have been deduced from the text need to be synthesized\ninto acoustic form, taking due account of the many and varied contextual effects\nthat occur in natural speech.  This by itself is a challenging problem.\n.pp\nThe performance of the Kurzweil reading machine is not good.  While it seems\nto be true that some blind people can make use of it, it is far from\ncomprehensible to an untrained listener.  For example,\nit will miss out words and even whole phrases, hesitate in a\nstuttering manner, blatantly mis-pronounce many words, fail to detect\n\"e\"s which should be silent, and give completely wrong rhythms\nto words, making them impossible to understand.\nIts intonation is decidedly unnatural, monotonous, and often downright\nmisleading.  When it reads completely new text to people unfamiliar with its\nquirks,\nthey invariably fail to understand more than an odd word here and there,\nand do not improve significantly when the text is repeated more than once.\nNaturally performance improves if the material is familiar or expected\nin some way.\nOne useful feature is the machine's ability to spell out difficult words\non command from the user.\n.pp\nWhile not wishing to denigrate the Kurzweil machine, which is a remarkable\nachievement in that it integrates together many different advanced\ntechnologies, there is no doubt that the state of the art in speech synthesis\ndirectly from unadorned text is extremely primitive, at present.\nIt is vital not to overemphasize the potential usefulness of abysmal speech,\nwhich takes a great deal of training on the part of the user before\nit becomes at all intelligible.  To make a rather extreme analogy,\nMorse code could be used as\naudio output, requiring a great deal of training, but capable of being understood\nat quite high rates by an expert.\nIt could be generated very cheaply.\nBut clearly the man in the street would find it quite unacceptable as\nan audio output medium, because of the excessive effort required to learn to use\nit.  In many applications, very bad synthetic speech is just as useless.\nHowever, the issue is complicated by the fact that for people who use\nsynthesizers regularly, synthetic speech becomes quite easily comprehensible.\nWe will return to the problem of evaluating the quality of artificial speech\nlater in the book (Chapter 8).\n.sh \"1.7  System considerations for speech output\"\n.pp\nFortunately, very many of the applications of speech output from computers\ndo not need to read unadorned text.\nIn all the example systems described above (except the reading machine),\nit is enough to be able to store utterances in some representation which can\ninclude pre-programmed cues for pronunciation, rhythm, and intonation in\na much more explicit way than ordinary text does.\n.pp\nOf course, techniques\nfor storing audio information have been in use for decades.\nFor example, a domestic cassette tape recorder stores speech at much better\nthan telephone quality at very low cost.  The method of direct\nrecording of an analogue waveform is currently used for announcements in\nthe telephone network to provide information such as the time, weather\nforecasts, and even bedtime stories.\nHowever, it is difficult to provide rapid access to messages stored in\nanalogue form, and although some computer peripherals which use analogue\nrecordings for voice-response applications have been marketed \\(em they are\ndiscussed briefly at the beginning of Chapter 3 \\(em they have been\nsuperseded by digital storage techniques.\n.pp\nAlthough direct storage of a digitized audio waveform is used in some\nvoice-response systems, the approach has certain limitations.  The most\nobvious one is the large storage requirement:  suitable coding can reduce\nthe data-rate of speech to as little as one hundredth of that needed by\ndirect digitization, and textual representations reduce it by another factor\nof ten or twenty.  (Of course, the speech quality is inevitably compromised\nsomewhat by data-compression techniques.)  However, the cost of storage is\ndropping so fast that this is not necessarily an overriding factor.\nA more fundamental limitation is that utterances stored directly cannot sensibly\nbe modified in any way to take account of differing contexts.\n.pp\nIf the results of certain kinds of analyses\nof utterances are stored, instead of simply the digitized waveform,\na great deal more flexibility can be gained.\nIt is possible to separate out the features of intonation and amplitude from\nthe articulation of the speech, and this raises the attractive possibility\nof regenerating utterances with pitch contours different from those with which they were\nrecorded.\nThe primary analysis technique used for this purpose is\n.ul\nlinear prediction\nof speech, and this is treated in some detail in Chapter 6.  It also reduces drastically the\ndata-rate of speech, by a factor of around 50.\nIt is likely that many voice-response systems in the short- and medium-term\nfuture will use linear predictive representations for utterance storage.\n.pp\nFor maximum flexibility, however, it is preferable to store a textual\nrepresentation of the utterance.\nThere is an important distinction between speech\n.ul\nstorage,\nwhere an actual human utterance is recorded, perhaps processed to lower\nthe data-rate, and stored for subsequent regeneration when required,\nand speech\n.ul\nsynthesis,\nwhere the machine produces its own individual utterances which are not based\non recordings of a person saying the same thing.  The difference is summarized\nin Figure 1.5.\n.FC \"Figure 1.5\"\nIn both cases something is stored:  for the first it is\na direct representation of an actual human utterance, while for the second\nit is a typed\n.ul\ndescription\nof the utterance in terms of the sounds, or phonemes, which constitute it.\nThe accent and tone of voice of the human speaker will be apparent in\nthe stored speech output, while for synthetic speech the accent is the\nmachine's and the tone of voice is determined by the synthesis program.\n.pp\nProbably the most attractive representation of utterances in man-machine\nsystems is ordinary English text, as used by the Kurzweil reading machine.\nBut, as noted above, this poses extraordinarily difficult problems for the\nsynthesis procedure, and these inevitably result in severely degraded speech.\nAlthough in the very long term these problems may indeed be solved,\nmost speech output systems can adopt as their representation of an utterance\na description of it which explicitly conveys the difficult features of\nintonation, rhythm, and even pronunciation.\nIn the kind of applications described above (barring the reading machine),\ninput will be prepared by a\nprogrammer as he builds the software system which supports the interactive\ndialogue.\nAlthough it is important that the method of specifying utterances be easily\nlearned, it is not necessary that plain English\nis used.  It should be simple for the programmer to enter new\nutterances and modify them on-line in cut-and-try attempts to render the\nman-machine dialogue as natural as possible.  A phonetic input\ncan be quite adequate for this, especially if the system allows the\nprogrammer to hear immediately the synthesized version of the message\nhe types.  Furthermore, markers which indicate rhythm and intonation can\nbe added to the message so that the system does not have to deduce these features\nby attempting to \"understand\" the plain text.\n.pp\nThis brings us to another disadvantage of speech storage as compared with\nspeech synthesis.  To provide utterances for a voice response system using\nstored human speech, one must assemble together special input hardware,\na quiet room, and (probably) a dedicated computer.  If the speech is to be\nheavily encoded, either expensive special hardware is required or the encoding\nprocess, if performed by software on a general-purpose computer, will take\na considerable length of time (perhaps hundreds of times real-time).  In\neither case, time-consuming editing of the speech will be necessary, with\nfollow-up recordings to clarify sections of speech which turn out to be\nunsuitable or badly recorded.  If at a later date the voice response\nsystem needs modification, it will be necessary to recall the same speaker,\nor re-record the entire utterance set.  This discourages the application\nprogrammer from adjusting his dialogue in the light of experience.\nSynthesizing from a textual representation, on the other hand, allows him\nto change a speech prompt as simply as he could a VDU one, and evaluate\nits effect immediately.\n.pp\nWe will return to methods of digitizing and compacting speech in Chapters 3\nand 4, and carry on to consider speech synthesis in subsequent chapters.\nFirstly, however, it is necessary to take a look at what speech is and how\npeople produce it.\n.sh \"1.8  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"1.9  Further reading\"\n.pp\nThere are remarkably few general books on speech output, although a\nsubstantial specialist literature exists for the subject.\nIn addition to the references listed above, I suggest that you look\nat the following.\n.LB \"nn\"\n.\\\"Ainsworth-1976-1\n.]-\n.ds [A Ainsworth, W.A.\n.ds [D 1976\n.ds [T Mechanisms of speech recognition\n.ds [I Pergamon\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nA nice, easy-going introduction to speech recognition, this book covers\nthe acoustic structure of the speech signal in a way which makes\nit useful as background reading for speech synthesis as well.\nIt complements Lea, 1980, cited above; which presents more recent results\nin greater depth.\n.in-2n\n.\\\"Flanagan-1973-2\n.]-\n.ds [A Flanagan, J.L.\n.as [A \" and Rabiner, L.R. (Editors)\n.ds [D 1973\n.ds [T Speech synthesis\n.ds [I Wiley\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is a collection of previously-published research papers on speech\nsynthesis, rather than a unified book.\nIt contains many of the classic papers on the subject from 1940\\ -\\ 1972,\nand is a very useful reference work.\n.in-2n\n.\\\"LeBoss-1980-3\n.]-\n.ds [A LeBoss, B.\n.ds [D 1980\n.ds [K *\n.ds [T Speech I/O is making itself heard\n.ds [J Electronics\n.ds [O May\\ 22\n.ds [P 95-105\n.nr [P 1\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\nThe magazine\n.ul\nElectronics\nis an excellent source of up-to-the-minute news, product announcements,\ntitbits, and rumours in the commercial speech technology world.\nThis particular article discusses the projected size of the voice\noutput market and gives a brief synopsis of the activities of several\ninterested companies.\n.in-2n\n.\\\"Witten-1980-5\n.]-\n.ds [A Witten, I.H.\n.ds [D 1980\n.ds [T Communicating with microcomputers\n.ds [I Academic Press\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nA recent book on microcomputer technology, this is unusual in that\nit contains a major section on speech communication\nwith computers (as well as ones\non computer buses, interfaces, and graphics).\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"2  WHAT IS SPEECH?\"\n.ds RT \"What is speech?\n.ds CX \"Principles of computer speech\n.pp\nPeople speak by using their vocal cords as a sound source, and making rapid\ngestures of the articulatory organs (tongue, lips, jaw, and so on).\nThe resulting changes in shape of the vocal tract allow production\nof the different sounds that we know as the vowels and consonants of\nordinary language.\n.pp\nWhat is it necessary to learn about this process for the purposes of\nspeech output from computers?\nThat depends crucially upon how speech is represented in the system.\nIf utterances are stored as time waveforms \\(em and this is what we will be\ndiscussing in the next chapter \\(em the structure of speech is not important.\nIf frequency-related parameters of particular natural utterances are\nstored, then it is advantageous to take into account some of the\nacoustic properties of the speech waveform.\n.pp\nThis point can be brought into focus by contrasting the transmission\n(or storage) of speech with that of real-life television pictures,\nas has been proposed for a videophone service.\nMassive data reductions, of the order of 50:1, can be achieved for speech,\nusing techniques that are described in later chapters.  For pictures,\ndata reduction is still an important issue \\(em even more so for the\nvideophone than for the telephone, because of the vastly higher\ninformation rates involved.\nUnfortunately, the potential for data reduction is much\nsmaller \\(em nothing like the 50:1 figure quoted above.\nThis is because speech sounds have definite characteristics, imparted\nby the fact that they are produced by a human vocal tract, which\ncan be exploited for data reduction.\nTelevision pictures have no equivalent generative structure, for\nthey show just those things that the camera points at.\n.pp\nMoving up from frequency-related parameters of\n.ul\nparticular\nutterances, it\nis possible to store such parameters in a\n.ul\ngeneral\nform which characterizes the sound segments that appear in spoken language.\nThis immediately raises the issue of\n.ul\nclassification\nof sound segments, to form a basis for storing generalized acoustic\ninformation and for retrieval of the information needed to synthesize\nany particular utterance.\nSpeech is by nature continuous, and any synthesis system based upon\ndiscrete classification must come to terms with this by tackling\nthe problems of transition from one segment to another,\nand local modification of sound segments as a function of their context.\n.pp\nThis brings us to another level of representation.\nSo far we have talked of the\n.ul\nacoustic\nnature of speech, but when we have to cope with transitions between\ndiscrete sound segments it may be fruitful to consider\n.ul\narticulatory\nproperties as well.\nAny model of the speech production process\nis in effect a model of the articulatory process that generates the speech.\nSome speech research is concerned with\nmodelling\nthe vocal tract directly, rather than modelling the acoustic output from it.\nOne might specify, for example, position of tongue and posture of jaw and lips\nfor a vowel, instead of giving frequency-related\ncharacteristics of it.  This is a potent\ntool in linguistic research, for it brings one closer to human production of\nspeech \\(em in particular to the connection between brain and articulators.\n.pp\nArticulatory\nsynthesis holds a promise of high-quality speech, for the transitional\neffects caused by tongue and jaw inertia can be modelled directly.\nHowever, this potential has\nnot yet been realized.\nSpeech from current articulatory models is of much poorer quality than\nthat from acoustically-based synthesis methods.\nThe major problem is in gaining data about articulatory\nbehaviour during running speech \\(em it is much easier to perform acoustic\nanalysis on the resulting sound than it is to examine the vocal organs in\naction.  Because of this, the subject is not treated in this book.\nWe will only look at articulatory properties insofar as they help us\nto understand, in a qualitative way, the acoustic nature of speech.\n.pp\nSpeech, however, is much more than mere articulation.\nConsider \\(em admittedly a rather extreme and chauvinistic example \\(em the\nnumber of ways a girl can say \"yes\".\nBreathy voice, slow tempo, low pitch \\(em these are all characteristics which\naffect the utterance as a whole, rather than being classifiable into\nindividual sound segments.  Linguists call them \"prosodic\" or\n\"suprasegmental\" features, for they relate to overall aspects of the\nutterance, and distinguish them from \"segmental\" ones which concern\nthe articulation of individual segments of syllables.\nThe most important prosodic features are pitch, or fundamental frequency\nof the voice, and rhythm.\n.pp\nThis chapter provides a brief introduction to the nature of the speech\nsignal.  Depending upon what speech output techniques we use, it may be\nnecessary to understand something of the acoustic nature of the speech\nsignal; the system that generates it (the vocal tract); commonly-used\nclassifications of sound segments; and the prosodic aspects of speech.\nThis material is little used in the early chapters of the book, but\nbecomes increasingly important as the story unfolds.\nHence you may skip the remainder of this chapter if you wish, but\nshould return to it later to pick up more background whenever it\nbecomes necessary.\n.sh \"2.1  The anatomy of speech\"\n.pp\nThe so-called \"voiced\" sounds of speech \\(em like the sound you make when\nyou say \"aaah\" \\(em are produced by passing air up from the lungs through\nthe larynx or voicebox, which is situated just behind the Adam's apple.\nThe vocal tract from the larynx to the lips acts as a resonant cavity,\namplifying certain frequencies and attenuating others.\n.pp\nThe waveform generated by the larynx, however, is not simply sinusoidal.\n(If it were, the vocal tract resonances would merely\ngive a sine wave of the same frequency but amplified or\nattenuated according to how close it was to the nearest resonance.)  The\nlarynx contains two folds of skin \\(em the vocal cords \\(em which blow apart and flap\ntogether again in each cycle of the pitch period.\nThe pitch of a male voice in speech varies from as low as 50\\ Hz\n(cycles per second) to perhaps\n250\\ Hz, with a typical median value of 100\\ Hz.\nFor a female voice the range is higher, up to about 500\\ Hz in speech.\nSinging can go much higher:  a top C sung by a soprano has a frequency\nof just over 1000\\ Hz, and some opera singers can reach\nsubstantially higher than this.\n.pp\nThe flapping action of the vocal cords\ngives a waveform which can be approximated by a\ntriangular pulse (this and other approximations will be discussed in\nChapter 5).\nIt has a rich spectrum of harmonics,\ndecaying at around 12\\ dB/octave, and each harmonic is affected\nby the vocal tract resonances.\n.rh \"Vocal tract resonances.\"\nA simple model of the vocal tract is an organ-pipe-like cylindrical tube\n(Figure 2.1),\nwith a sound source at one end (the larynx) and open at the other (the lips).\n.FC \"Figure 2.1\"\nThis has resonances at wavelengths $4L$, $4L/3$, $4L/5$, ..., where $L$\nis the length of the tube;\nand these correspond to frequencies $c/4L$, $3c/4L$, $5c/4L$, ...\\ Hz, $c$\nbeing the speed of\nsound in air.\nCalculating these frequencies, using a typical figure for the\ndistance between larynx and lips of 17\\ cm,\nand $c = 340$\\ m/s for the speed of sound, leads to resonances at\napproximately 500\\ Hz, 1500\\ Hz, 2500\\ Hz, ... .\n.pp\nWhen excited by the harmonic-rich waveform of the larynx,\nthe vocal tract resonances produce\npeaks known as\n.ul\nformants\nin the energy spectrum of the speech wave (Figure 2.2).\n.FC \"Figure 2.2\"\nThe lowest formant, called formant one, varies from around 200\\ Hz\nto 1000\\ Hz during speech, the exact range depending on the size\nof the vocal tract.\nFormant two varies from around 500 to 2500\\ Hz, and formant three\nfrom around 1500 to 3500\\ Hz.\n.pp\nYou can easily hear the lowest formant by whispering the vowels in\nthe words \"heed\", \"hid\", \"head\", \"had\", \"hod\", \"hawed\", and \"who'd\".\nThey appear to have a steadily descending pitch, yet since you are\nwhispering there is no fundamental frequency.\nWhat you hear is the lowest resonance of the vocal tract \\(em formant one.\nSome masochistic people can play simple tunes with this formant by putting\ntheir mouth in successive vowel shapes and knocking the top of their head\nwith their knuckles \\(em hard!\n.pp\nA difficulty occurs when trying to identify the lower formants for speakers\nwith high-pitched voices.\nWhen a formant frequency falls below the fundamental excitation frequency\nof the voice, its effect is diminished \\(em although it is still present.\nThe vibrato used by opera singers provides a very low-frequency excitation\n(at the vibrato rate) which helps to illuminate the lower formants even\nwhen the pitch of the voice is very high.\n.pp\nOf course, speech is not a static phenomenon.\nThe organ-pipe model describes the speech spectrum during a continuously\nheld vowel with the mouth in a neutral position such as for \"aaah\".\nBut in real speech the tongue and lips are in continuous motion,\naltering the shape of the vocal tract and hence the positions of the resonances.\nIt is as if the organ-pipe were being squeezed and expanded in\ndifferent places all the time.\nSay\n.ul\nee\nas in \"heed\" and feel how close your tongue is to the roof of your mouth,\ncausing a constriction near the front of the vocal cavity.\n.pp\nLinguists and speech engineers use a special frequency analyser called a\n\"sound spectrograph\" to make a three-dimensional plot of the variation\nof the speech energy spectrum with time.\nFigure 2.3 shows a spectrogram of the\nutterance \"go away\".\n.FC \"Figure 2.3\"\nFrequency is given on the vertical axis,\nand bands are shown at the beginning to indicate the scale.\nTime is plotted horizontally,\nand energy is given by the darkness of any particular area.\nThe lower few formants can be seen as dark bands extending horizontally,\nand they are in continuous motion.\nIn the neutral first vowel of \"away\", the formant frequencies\npass through\napproximately the 500\\ Hz, 1500\\ Hz, and 2500\\ Hz that we calculated earlier.\n(In fact, formants two and three are somewhat lower than these values.)\n.pp\nThe\nfine vertical striations in the spectrogram correspond to single openings of the vocal cords.\nPitch changes continuously throughout an utterance,\nand this can be seen on the spectrogram by the differences in spacing\nof the striations.\nPitch change, or\n.ul\nintonation,\nis singularly important in\nlending naturalness to speech.\n.pp\nOn a spectrogram, a continuously held vowel shows up as a static energy spectrum.\nBut beware \\(em what we call a vowel in everyday language is not the same thing as a\n\"vowel\" in phonetic terms.\nSay \"I\" and feel how the tongue moves continuously while you're speaking.\nTechnically, this is a\n.ul\ndiphthong\nor slide between two vowel positions,\nand not a single vowel.\nIf you say\n.ul\nar\nas in \"hard\",\nand change slowly to\n.ul\nee\nas in \"heed\", you will obtain a diphthong not unlike that in \"I\".\nAnd there are many more phonetically different vowel sounds\nthan the a, e, i, o, and u that we normally think of.\nThe words \"hood\" and \"mood\" have different vowels, for example, as do \"head\" and \"mead\".\nThe principal acoustic difference between the various vowel sounds\nis in the frequencies of the first two formants.\n.pp\nA further complication is introduced by the nasal tract.  This is\na large cavity which is coupled to the oral tract by a passage at the\nback of the mouth.\nThe passage is guarded by a flap of skin called the \"velum\".\nYou know about this because inadvertent opening of the velum while\nswallowing causes food or drink to go up your nose.\nThe nasal cavity is switched in and out of the vocal tract\nby the velum during speech.\nIt is used for consonants\n.ul\nm,\n.ul\nn,\nand the\n.ul\nng\nsound in the word\n\"singing\".\nVowels are frequently nasalized too.\nA very effective demonstration of the amount of nasalization in ordinary\nspeech can be obtained by cutting a nose-shaped hole in a large\nbaffle which divides a room, speaking normally with one's nose in the hole,\nand having someone listen on the other side.\nThe frequency of occurrence of\nnasal sounds, and the volume of sound that is emitted\nthrough the nose, are both surprisingly large.\nInterestingly enough, when we say in conversation that someone sounds\n\"nasal\", we usually mean \"non-nasal\".  When the nasal passages are\nblocked by a cold, nasal sounds are missing \\(em\n.ul\nn\\c\n\\&'s turn into\n.ul\nd\\c\n\\&'s,\nand\n.ul\nm\\c\n\\&'s to\n.ul\nb\\c\n\\&'s.\n.pp\nWhen the nasal cavity is switched in to the vocal tract, it introduces\nformant resonances, just as the oral cavity does.\nAlthough we cannot\nalter the shape of the nasal tract significantly, the nasal formant\npattern is not fixed, because the oral tract does play a part in nasal\nresonances.\nIf you say\n.ul\nm,\n.ul\nn,\nand\n.ul\nng\ncontinuously, you can hear the difference and feel how it is produced by\naltering the combined nasal/oral tract resonances with your tongue position.\nThe nasal cavity operates in parallel with\nthe oral one:  this causes the two resonance patterns to be summed\ntogether, with resulting complications which will be discussed in Chapter 5.\n.rh \"Sound sources.\"\nSpeech involves sounds other than those caused by regular vibration of\nthe larynx.\nWhen you whisper, the folds of the larynx are held slightly\napart so that the air passing between them becomes turbulent, causing a noisy excitation\nof the resonant cavity.\nThe formant peaks are still present, superimposed on the noise.  Such\n\"aspirated\" sounds occur in the\n.ul\nh\nof \"hello\", and for a very short time\nafter the lips are opened at the beginning of \"pit\".\n.pp\nConstrictions made in the mouth produce hissy noises such as\n.ul\nss,\n.ul\nsh,\nand\n.ul\nf.\nFor example, in\n.ul\nss\nthe tip of the tongue is high up,\nvery close to the roof of the mouth.\nTurbulent air passing through this constriction causes a\nrandom noise excitation, known as \"frication\".\nActually, the roof of the mouth is quite a complicated object.\nYou can feel with your tongue a bony hump or ridge just behind the front\nteeth, and it is this that forms a constriction with the tongue for\n.ul\ns.\nIn\n.ul\nsh,\nthe tongue is flattened close to the roof of the mouth slightly farther back,\nin a position rather similar to that for\n.ul\nee\nbut with a narrower\nconstriction,\nwhile\n.ul\nf\nis produced with the upper teeth and lower lip.\nBecause they are made near the front of the mouth,\nthe resonances of the vocal tract have little effect on these fricative\nsounds.\n.pp\nTo distinguish them from aspiration and frication, the ordinary speech\nsounds (like \"aaah\") which have their source in larynx vibration are\nknown technically as \"voiced\".  Aspirated and fricative sounds are called\n\"unvoiced\".  Thus the three different sound types can be classified as\n.LB\n.NP\nvoiced\n.NP\nunvoiced (fricative)\n.NP\nunvoiced (aspirated).\n.LE\nCan any of these three types occur together?\nIt would seem that voicing and aspiration can not, for the former requires\nthe larynx to be vibrating regularly, but for the latter it must be\ngenerating turbulent noise.\nHowever, there is a condition known technically as \"breathy voice\"\nwhich occurs when the vocal cords are slightly apart, still vibrating,\nbut with a large volume of air passing between to create turbulence.\nVoicing can easily occur in conjunction with frication.\nCorresponding to\n.ul\ns,\n.ul\nsh,\nand\n.ul\nf\nwe get the\n.ul\nvoiced\nfricatives\n.ul\nz,\nthe sound in the middle of words like \"vision\" which I will call\n.ul\nzh,\nand\n.ul\nv.\nA simple illustration of voicing is to say \"ffffvvvvffff\\ ...\".\nDuring the voiced part you can feel the larynx vibrations with a finger\non your Adam's apple, and it can be heard quite clearly if you stop up\nyour ears.\nTechnically, there is nothing to prevent frication and aspiration\nfrom occurring together \\(em they do, for example, when a voiced fricative\nis whispered \\(em but the combination is not an important one.\n.pp\nThe complicated acoustic effects of noisy excitations in speech can be\nseen in the spectrogram in Figure 2.4 of\n\"high altitude jets whizz past screaming\".\n.FC \"Figure 2.4\"\n.rh \"The source-filter model of speech production.\"\nWe have been talking in terms of a sound source (be it voiced or unvoiced)\nexciting the resonances of the oral (and possible the nasal) tract.\nThis model, which is used extensively in speech analysis and synthesis,\nis known as\nthe source-filter model of speech production.  The reason for its success\nis that the effect of the resonances can be modelled as a frequency-selective\nfilter, operating on an input which is the source excitation.\nThus the frequency spectrum of the source is modified by multiplying it\nby the frequency characteristic of the filter (or adding it, if amplitudes\nare expressed logarithmically).\nThis can be seen in Figure 2.5, which shows a source\nspectrum and filter characteristic which combine to give the overall\nspectrum of Figure 2.2.\n.FC \"Figure 2.5\"\n.pp\nAlthough, as mentioned above, the various fricatives are not subjected\nto the resonances of the vocal tract to the same extent\nthat voiced and aspirated\nsounds are, they can still be modelled as a noise source followed by\na filter to give them their different sound qualities.\n.pp\nThe source-filter model is an oversimplification of the actual speech\nproduction system.  There is inevitably some coupling between the vocal\ntract and the lungs, through the glottis, during the period when\nit is open.  This effectively makes the filter characteristics\nchange during each individual cycle of the excitation.\nHowever, although the effect is of interest to speech researchers,\nit is probably not of great significance for practical speech output.\n.pp\nOne very interesting implication of the\nsource-filter model is that the prosodic features of\npitch and amplitude are largely properties of the source; while\nsegmental ones are introduced by the filter.  This makes it possible to\nseparate some aspects of\noverall prosody from the actual segmental content of an\nutterance, so that, for example, a human utterance can be stored initially\nand then spoken by a machine with a variety of different intonations.\n.sh \"2.2  Classification of speech sounds\"\n.pp\nThe need to classify sound segments as a basis for storing generalized acoustic\ninformation and retrieving it was mentioned earlier.  There is a real\ndifficulty here because speech is by nature continuous and classifications are\ndiscrete.\nIt is important to remember this difficulty because it is all too easy\nto criticize the complex and often confusing attempts of linguists to\ntackle the classification task.\n.pp\nLinguists call a written representation of the\n.ul\nsounds\nof an utterance a \"phonetic\ntranscription\" of it.  The same utterance can be transcribed at\ndifferent levels of detail:  simple transcriptions are called \"broad\"\nand more specific ones are called \"narrow\".\nPerhaps the most logically satisfying kind of transcription employs units\ntermed \"phonemes\".  This is the broadest transcription,\nand is sometimes called a\n.ul\nphonemic\ntranscription to emphasize that that it is in terms of phonemes.\nUnfortunately, the word \"phoneme\" is often used somewhat loosely.\nIn its true sense, a phoneme is a\n.ul\nlogical\nunit, rather than a physical, acoustic, one,\nand is defined in relation to a particular language by reference\nto its use in discriminating different words.\nClassifications of sounds which are based on their\nsemantic\nrole as word-discriminators are called\n.ul\nphonological\nclassifications:  we could ensure that there is no ambiguity in the sense\nwith which we use the term \"phoneme\" by calling it a phonological unit, and\nthe phonemic transcription could be called a phonological one.\n.rh \"Broad phonetic transcription.\"\nA phoneme is an abstract unit representing a set of different sounds.\nThe issue is confused by the fact that the members of the set actually\nsound very similar, if not identical, to the untrained ear \\(em precisely because\nthe difference between them plays no part in distinguishing words from\neach other in the particular language concerned.\n.pp\nTake the words \"key\" and \"caw\", for example.  Despite the difference in\nspelling, both of them begin with a\n.ul\nk\nsound that belongs (in English)\nto the same phoneme set, called\n.ul\nk.\nHowever, say them two or three times each, concentrating on the position of\nthe tongue during the\n.ul\nk.\nIt is quite different in each case.  For \"key\", it\nis raised, close to the roof of the mouth, in preparation for the\n.ul\nee,\nwhereas in \"caw\" it is much lower down.\nThe sound of the\n.ul\nk\nis actually quite different in the two cases.\nYet they belong to the same phoneme, for there is no pair of words which\nrelies on this difference to distinguish them \\(em \"key\" and \"caw\" are\nobviously distinguished by their vowels, not by the initial\nconsonant.\nYou probably cannot hear clearly the difference between the two\n.ul\nk\\c\n\\&'s,\nprecisely because they belong to the same phoneme and so the difference\nis not important (for English).\n.pp\nThe point is sharpened by considering another language where we make a\ndistinction \\(em and hence can hear the difference \\(em between two sounds\nthat belong, in the language, to the same phoneme.\nJapanese does not distinguish\n.ul\nr\nfrom\n.ul\nl.\nJapanese people\n.ul\ndo not hear\nthe difference between \"lice\" and \"rice\", in the same way that you do\nnot hear the difference between the two\n.ul\nk\\c\n\\&'s above.\nCockneys do not hear, except with a special effort, the difference\nbetween \"has\" and \"as\", or \"haitch\" and \"aitch\", for the Cockney dialect\ndoes not recognize initial\n.ul\nh\\c\n\\&'s.\n.pp\nSo what is a phoneme?  It is a set of sounds whose members do not\ndiscriminate between any words in the language under consideration.\nIf you are mathematically minded you could think of it as an equivalence\nclass of sounds, determined by the relationship\n.LB\n$sound sub 1$ is related to $sound sub 2$ if $sound sub 1$ and $sound sub 2$\ndo not discriminate any pair of words in the language.\n.LE\nThe\n.ul\np\nand\n.ul\nd\nin\n\"pig\" and \"dig\" belong to different phonemes (in English),\nbecause they discriminate\nthe two words.\n.ul\nb,\n.ul\nf,\nand\n.ul\nj\nbelong to different phonemes again.\n.ul\ni\nand\n.ul\na\nin \"hid\" and \"had\" belong to different phonemes too.\nProceeding like this, a list of phonemes can be drawn up.\n.pp\nSuch a list is shown in Table 2.1, for British English.\n(The layout of the list does have some significance in terms of different\ncategories of phonemes, which will be explained later.)  In fact,\nlinguists use an\nassortment of English letters, foreign letters, and special\nsymbols to represent phonemes.  In this book we use one- or two-letter\ncodes, partly because they are more mnemonic, and partly because\nthey are more suitable for communication to computers using standard\nperipheral devices.\nThey are\na direct transliteration of linguists' standard International Phonetic\nAssociation symbols.\n.RF\n.nr x1 3m+1.0i+0.5i+0.5i+0.5i+\\w'y'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta 3m +1.0i +0.5i +0.5i +0.5i +0.5i +0.5i\n\\fIuh\\fR\t(the)\t\\fIp\\fR\t\\fIt\\fR\t\\fIk\\fR\n\\fIa\\fR\t(bud)\t\\fIb\\fR\t\\fId\\fR\t\\fIg\\fR\n\\fIe\\fR\t(head)\t\\fIm\\fR\t\\fIn\\fR\t\\fIng\\fR\n\\fIi\\fR\t(hid)\n\\fIo\\fR\t(hod)\t\\fIr\\fR\t\\fIw\\fR\t\\fIl\\fR\t\\fIy\\fR\n\\fIu\\fR\t(hood)\n\\fIaa\\fR\t(had)\t\\fIs\\fR\t\\fIz\\fR\n\\fIee\\fR\t(heed)\t\\fIsh\\fR\t\\fIzh\\fR\n\\fIer\\fR\t(heard)\t\\fIf\\fR\t\\fIv\\fR\n\\fIuu\\fR\t(food)\t\\fIth\\fR\t\\fIdh\\fR\n\\fIar\\fR\t(hard)\t\\fIch\\fR\t\\fIj\\fR\n\\fIaw\\fR\t(hoard)\t\\fIh\\fR\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 2.1 The phonemes of British English\"\n.pp\nWe will discuss the sounds which make up each of these phoneme classes\nshortly.  First, however, it is worthwhile pointing out some rather\ntricky points in the definition of these phonemes.\n.rh \"Phonological difficulties.\"\nThere are snags with phonological classification, as there are\nin any area where attempts are made to make completely logical\nstatements about human activity.\nConsider\n.ul\nh\nand the\n.ul\nng\nin \"singing\".\n(\\c\n.ul\nng\nis certainly not an\n.ul\nn\nsound followed by a\n.ul\ng\nsound, although\nit is true that in some English accents \"singing\" is rendered with\nthe\n.ul\nng\nfollowed by a\n.ul\ng\nat each of its two occurrences.)  No words\nend with\n.ul\nh,\nand none begin with\n.ul\nng.\n(Notice that we are still talking about British English.\nIn Chinese, the sound\n.ul\nng\nis a word in its own right, and is a common\nfamily name.\nBut we must stick with one language for phonological classification.)  Hence\nit follows that there is no pair of words which is distinguished\nby the difference between\n.ul\nh\nand\n.ul\nng.\nTechnically,\nthey belong to the same phoneme.  However, technical considerations\nin this case must take second place to common sense!\n.pp\nThe\n.ul\nj\nin \"jig\" is another interesting case.  It can be considered\nto belong to a\n.ul\nj\nphoneme, or to be a sequence of two\nphonemes,\n.ul\nd\nfollowed by\n.ul\nzh\n(the sound in \"vision\").  There is\ndisagreement on this point in phonetics textbooks, and we do not\nhave the time (nor, probably, the inclination!) to consider the\npros and cons of this moot point.\nI have resolved the matter arbitrarily by writing it as a separate\nphoneme.  The\n.ul\nch\nin \"choose\" is a similar case\n(\\c\n.ul\nt\nfollowed by the\n.ul\nsh\nin \"shoes\").\n.pp\nAnother difficulty, this time where Table 2.1 does not show how to\ndistinguish between two sounds which\n.ul\ndo\ndiscriminate words in many people's English, is the\n.ul\nw\nin \"witch\"\nand that in \"which\".  The latter is conventionally transcribed\nas a sequence of two phonemes,\n.ul\nh w.\n.pp\nThe last few difficulties are all to do with deciding whether a\nsound belongs to a single phoneme class, or comprises a sequence\nof sounds each of which belongs to a phoneme.\nAre the\n.ul\nj\nin \"jug\", the\n.ul\nch\nin \"chug\", and the\n.ul\nw\nin \"which\",\nsingle phonemes or not?  The definition above of a phoneme\nas a \"set of sounds whose members do not discriminate any words\nin the language\" does not help us to answer this question.\nAs far as this definition is concerned, we could go so far as\nto call each and every word of the language an individual phoneme!\nIt is clear that some acoustic evidence, and quite a lot of judgement,\nis being used when phonemes such as those of Table 2.1 are defined.\n.pp\nSo much for the consonants.  This same problem occurs in vowel sounds,\nparticularly in diphthongs, which are sequences of two vowel-like sounds.\nDo the vowels of \"main\" and \"man\" belong to different phonemes?\nClearly so, if they are both transcribed as single units, for they\ndistinguish the two words.\nNotwithstanding the fact that they are sequences of separate sounds,\na logically consistent system could be constructed which gave separate,\nunitary, symbols to each diphthong.\nHowever, it is usual to employ a compound symbol which indicates explicitly\nthe character of the two vowel-like sounds involved.\nWe will transcribe the diphthong of \"main\" as a sequence of two\nvowels,\n.ul\ne\n(as in \"head\") and\n.ul\ni\n(as in \"hid\", not \"I\").\nThis is done primarily for economy of symbols, choosing the constituent\nsounds on the basis of the closest match to existing vowel sounds.\n(Note that this again violates purely\n.ul\nlogical\ncriteria for identifying phonemes.)\n.rh \"Categories of speech sounds.\"\nA phoneme is defined as a set of sounds whose members to not discriminate\nbetween any words in the language under consideration.\nThe phonemes themselves can be classified into groups which reflect\nsimilarities between them.\nThis can be done in many different ways, using various criteria\nfor classification.  In fact, one branch of linguistic research\nis concerned with defining a set of \"distinctive\nfeatures\" such that a phoneme class is uniquely identified by\nthe values of the features.  Distinctive features are binary,\nand include such things as voiced\\(emunvoiced, fricative\\(emnot\\ fricative,\naspirated\\(emunaspirated.  We will not be concerned here with such\ndetailed classifications, but it is as well to know that they exist.\n.pp\nThere is an everyday distinction between vowels and consonants.\nA vowel forms the nucleus of every syllable, and one or more consonants\nmay optionally surround the vowel.\nBut the distinction sometimes becomes a little ambiguous.\nSyllables like\n.ul\nsh\nare commonly uttered and certainly do not\ncontain a vowel.  Furthermore, when we say \"vowel\" in everyday\nlanguage we usually refer to the\n.ul\nwritten\nvowels a, e, i, o, and u; there are many more vowel sounds.\nA vowel in orthography is different to a vowel as a phoneme.\nIs a diphthong a phonetic vowel?  \\(em certainly, by the syllable-nucleus\ncriterion; but it is a little different from ordinary vowels because\nit is a changing sound rather than a constant one.\n.pp\nTable 2.2 shows one classification of the phonemes of Table 2.1, which\nwill be useful in our later studies of speech synthesis from phonetics.\nIt shows twelve vowels, including the rather peculiar one\n.ul\nuh\n(which corresponds to the first vowel in the word \"above\").\nThis is the sound produced by the vocal tract when it is in a relaxed,\nneutral position; and it never occurs in prominent, stressed,\nsyllables.  The vowels later in the list are almost always longer\nthan the earlier ones.  In fact, the first six\n(\\c\n.ul\nuh, a, e, i, o, u\\c\n)\nare often called \"short\" vowels, and the last five\n(\\c\n.ul\nee, er, uu, ar, aw\\c\n)\n\"long\" ones.  The shortness or longness of the one in the middle\n(\\c\n.ul\naa\\c\n)\nis rather ambiguous.\n.RF\n.nr x0 \\w'000unvoiced fricative    'u\n.nr x1 \\n(x0+\\w'[not classified as individual phonemes]'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta \\n(x0u\n.fi\nvowel\t\\c\n.ul\nuh  a  e  i  o  u  aa  ee  er  uu  ar  aw\n.br\ndiphthong\t[not classified as individual phonemes]\n.br\nglide (or liquid)\t\\c\n.ul\nr  w  l  y\n.br\nstop\n.br\n\\0\\0\\0unvoiced stop\t\\c\n.ul\np  t  k\n.br\n\\0\\0\\0voiced stop\t\\c\n.ul\nb  d  g\n.br\nnasal\t\\c\n.ul\nm  n  ng\n.br\nfricative\n.br\n\\0\\0\\0unvoiced fricative\t\\c\n.ul\ns  sh  f  th\n.br\n\\0\\0\\0voiced fricative\t\\c\n.ul\nz  zh  v  dh\n.br\naffricate\n.br\n\\0\\0\\0unvoiced affricate\t\\c\n.ul\nch\n.br\n\\0\\0\\0voiced affricate\t\\c\n.ul\nj\n.br\naspirate\t\\c\n.ul\nh\n.nf\n.in 0\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 2.2 Phoneme categories\"\n.pp\nDiphthongs pose no problem here because we have not classified them\nas single phonemes.\n.pp\nThe remaining categories are consonants.  The glides are quite\nsimilar to vowels and diphthongs, though; for they are voiced,\ncontinuous sounds.  You can say them and prolong them.\n(This is also true of the fricatives.) \n.ul\nr\nis interesting\nbecause it can be realized acoustically in very different ways.\nSome people curl the tip of the tongue\nback \\(em a so-called retroflex action of the tongue.  Many people\ncannot do this, and their\n.ul\nr\\c\n\\&'s sound like\n.ul\nw\\c\n\\&'s.\nThe stage Scotsman's\n.ul\nr\nis a trill where the tip of the tongue vibrates against the roof of the mouth.\n.ul\nl\nis also\nslightly unusual, for it is the only English phoneme which is \"lateral\" \\(em\nair passes either side of it, in two separate passages.  Welsh\nhas another lateral sound, a fricative, which is written \"ll\" as\nin \"Llandudno\".\n.pp\nThe next category is the stops.  These are formed by stopping up\nthe mouth, so that air pressure builds up behind the lips, and\nreleasing this pressure suddenly.  The result is a little\nexplosion (and the stops are often called \"plosives\"), which\nusually creates a very short burst of fricative noise (and, in some cases,\naspiration as well).  They are further subdivided into voiced and\nunvoiced stops, depending upon whether voicing starts as soon as\nthe plosion occurs (sometimes even before) or well after it.\nIf you put your hand in front of your mouth when saying \"pit\" you\ncan easily feel the puff of air that signals the plosion on the\n.ul\np,\nand probably on the\n.ul\nt\nas well.\n.pp\nIn a sense, nasals are really stops as well (and they are often\ncalled stops), for the oral tract is blocked although the nasal\none is not.  The peculiar fact that the nasal\n.ul\nng\nnever occurs at the beginning of a word (in English) was mentioned\nearlier.  Notice that for stops and nasals there is a similarity in the\n.ul\nvertical\ndirection of Table 2.2, between\n.ul\np,\n.ul\nb,\nand\n.ul\nm;\n.ul\nt,\n.ul\nd,\nand\n.ul\nn;\nand\n.ul\nk,\n.ul\ng,\nand\n.ul\nng.\n.ul\np\nis an unvoiced version of\n.ul\nb\n(try saying them),\nand\n.ul\nm\nis a nasalized version (for\n.ul\nb\nis what you get when you\nhave a cold and try to say\n.ul\nm\\c\n).\nThese three sounds are all made\nat the front of the mouth, while\n.ul\nt,\n.ul\nd,\nand\n.ul\nn,\nwhich bear the\nsame resemblance to each other, are made in the middle; and\n.ul\nk,\n.ul\ng,\nand\n.ul\nng\nare made at the back.  This introduces another\npossible classification, according to\n.ul\nplace of articulation.\n.pp\nThe unvoiced fricatives are quite straightforward, except perhaps\nfor\n.ul\nth,\nwhich is the sound at the beginning of \"thigh\".\nThey are paired with the voiced fricatives on the basis of place\nof articulation.  The voiced version of\n.ul\nth\nis the\n.ul\ndh\nat\nthe beginning of \"thy\".\n.ul\nzh\nis a fairly rare phoneme, which\nis heard in the middle of \"vision\".  Affricates are similar to\nfricatives but begin with a stopped posture, and we mentioned earlier\nthe controversy as to whether they should be considered to be\nsingle phonemes, or\nsequences of stop phonemes and fricatives.\nFinally comes the lonely aspirate,\n.ul\nh.\nAspiration does occur\nelsewhere in speech, during the plosive burst of unvoiced stops.\n.rh \"Narrow phonetic transcription.\"\nThe phonological classification outlined above is based upon a clear\nrationale for distinguishing between sounds according to how\nthey affect meaning \\(em although the rationale does become\nsomewhat muddied in difficult cases.\nNarrower transcriptions are not so systematic.\nThey use units called\n.ul\nallophones,\nwhich are defined by reference to physical, acoustic, criteria rather\nthan purely logical ones.\n(\"Phone\" is a more old-fashioned term for the same thing,\nand the misused word \"phoneme\" is often employed where allophone is\nmeant, that is, as a physical rather than a logical\nunit.)  Each phoneme has several allophones,\nmore or less depending on how narrow or broad the transcription is,\nand the allophones are different acoustic realizations of the same\nlogical unit.\nFor example, the\n.ul\nk\\c\n\\&'s in \"key\" and \"caw\" may be considered as different\nallophones (in a slightly narrow transcription).\nAlthough we will not use symbols for allophones here,\nthey are often indicated by diacritical marks in a text\nwhich modify the basic phoneme classes.\nFor example, a tilde (~) over a vowel means that it is nasalized, while a small\ncircle underneath a consonant means that it is devoiced.\n.pp\nAllophonic variation in speech is governed by a mechanism called\n.ul\ncoarticulation,\nwhere a sound is affected by those that come either side of it.\n\"Key\"\\-\"caw\" is a clear example of this, where the tongue\nposition in the\n.ul\nk\nanticipates that of the following vowel \\(em high\nin the first case, low in the second.\nMost allophonic variation in English is anticipatory, in that the sound\nis influenced by the following articulation rather than by\npreceding ones.\n.pp\nNasalization is a feature which applies to vowels in English through\nanticipatory coarticulation.\nIn many languages (for example, French) it is a\n.ul\ndistinctive\nfeature for vowels in that it serves to distinguish one vowel phoneme class\nfrom another.\nThat this is not so in English sometimes tempts us to assume,\nincorrectly, that nasalization does not occur in vowels.\nIt does, typically when the vowel is followed by a nasal consonant, and it is\nimportant for synthesis that nasalized vowel allophones are recognized and\ntreated accordingly.\n.pp\nCoarticulation can be predicted by phonological rules, which show\nhow a phonemic sequence will be realized by allophones.\nSuch rules have been studied extensively by linguists.\n.pp\nThe reason for coarticulation, and for the existence of allophones,\nlies in the physical constraints imposed by the motion\nof the articulatory organs \\(em particularly their acceleration and deceleration.\nAn immensely crude model is that the brain decides what phonemes to\nsay (for it is concerned with semantic things, and the definition\nof a phoneme is a semantic one).\nIt then takes this sequence and translates it into neural commands\nwhich actually move the articulators into target positions.\nHowever, other commands may be issued, and executed, before these targets\nare reached, and this accounts for coarticulation effects.\nPhonological rules for converting a phonemic sequence to an\nallophonic one are a sort of discrete model of the process.\nParticularly for work involving computers, it is possible that this\nrule-based approach will be overtaken by potentially more accurate\nmethods which attempt to model the continuous articulatory phenomena\ndirectly.\n.sh \"2.3  Prosody\"\n.pp\nThe phonetic classification introduced above divides speech into\nsegments and classifies these into phonemes or allophones.\nRiding on top of this stream of segments are other, more global,\nattributes that dictate the overall prosody of the utterance.\nProsody is defined by the Oxford English Dictionary as the\n\"science of versification, laws of metre,\"\nwhich emphasizes the aspects of stress and rhythm that are central\nto classical verse.\nThere are, however, many other features which are more or less\nglobal.\nThese are collectively called prosodic or, equivalently, suprasegmental,\nfeatures, for they lie above the level of phoneme or syllable segments.\n.pp\nProsodic features can be split into two basic categories:  features\nof voice quality and features of voice dynamics.\nVariations in voice quality, which are sometimes called\n\"paralinguistic\" phenomena, are accounted for by anatomical\ndifferences and long-term muscular idiosyncrasies (like a sore\nthroat), and have little part to play in the kind of applications\nfor speech output that have been sketched in Chapter 1.\nVariations in voice dynamics occur in three dimensions:  pitch\nor fundamental frequency of the voice, time, and amplitude.\nWithin the first, the pattern of pitch variation, or\n.ul\nintonation,\ncan be distinguished from the overall range within which that variation\noccurs.\nThe time dimension encompasses the rhythm of the speech, pauses, and the\noverall tempo \\(em whether it is uttered quickly or slowly.\nThe third dimension, amplitude, is of relatively minor importance.\nIntonation and rhythm work together to produce an effect commonly called\n\"stress\", and we will elaborate further on the nature of stress and discuss\nalgorithms for synthesizing intonation and rhythm in Chapter 8.\n.pp\nThese features have a very important role to play in communicating meaning.\nThey are not fancy, optional components.\nIt is their neglect which is largely responsible for the layman's\nstereotype of computer speech,\na caricature of living speech \\(em abrupt, arhythmic, and in a grating\nmonotone \\(em\nwhich was well characterized by Isaac Asimov when he wrote of speaking\n\"all in capital letters\".\n.pp\nTiming has a syntactic function in that it sometimes helps to\ndistinguish nouns from\nverbs\n(\\c\n.ul\nex\\c\ntract versus ex\\c\n.ul\ntract\\c\n).\nand adjectives from verbs (app\\c\n.ul\nrox\\c\nimate versus approxi\\c\n.ul\nmate\\c\n) \\(em although segmental aspects play a part here too, for the vowel\nqualities differ in each pair of words.\nNevertheless, if you make a mistake when assigning stress to words\nlike these in conversation you are very likely to be queried as\nto what you actually said.\n.pp\nIntonation has a big effect on meaning too.\nPitch often \\(em but by no means always \\(em rises on a question,\nthe extent and abruptness of the rise depending on features like whether\na genuine information-bearing reply or merely confirmation is expected.\nA distinctive pitch pattern accompanies the introduction of a new topic.\nIn conjunction with rhythm, intonation can be used to bring out contrasts\nas in\n.LB\n.NI\n\"He didn't have a\n.ul\nred\ncar, he had a\n.ul\nblack\none.\"\n.LE\nIn general, the intonation patterns used by a reader depend not only on\nthe text itself, but on his interpretation of it, and also on his\nexpectation of the listener's interpretation of it.\nFor example:\n.LB\n.NI\n\"He had a\n.ul\nred\ncar\" (I think you thought it was black),\n.NI\n\"He had a red\n.ul\nbi\\c\ncycle\" (I think you thought it was a car).\n.LE\n.pp\nIn natural speech, prosodic features are significantly influenced by\nwhether the utterance is generated spontaneously or read aloud.\nThe variations in spontaneous speech are enormous.\nThere are all sorts of emotions which are plainly audible in\neveryday speech:  sarcasm, excitement, rudeness, disagreement,\nsadness, fright, love.\nVariations in voice quality certainly play a part here.\nEven with \"ordinary\" cooperative friendly conversation, the need to find\nwords and somehow fit them into an overall utterance produces great\ndiversity of prosodic structures.\nApplications for speech output from computers do not, however, call for\nspontaneous conversation, but for a controlled delivery which is\nlike that when reading aloud.\nHere, the speaker is articulating utterances which have been set out for\nhim, reducing his cognitive load to one of understanding and interpreting\nthe text rather than generating it.\nUnfortunately for us, linguists are (quite rightly)\nprimarily interested in living,\nspontaneous speech rather than pre-prepared readings.\n.pp\nNevertheless, the richness of prosody in speech even when reading from\na book should not be underestimated.\nRead aloud to an audience and listen to the contrasts in voice dynamics\ndeliberately introduced for variety's sake.\nIf stories are to be read there is even a case for controlling voice\n.ul\nquality\nto cope with quotations and affective imitations.\n.pp\nWe saw earlier that the source-filter model is particularly\nhelpful in distinguishing prosodic features, which are largely\nproperties of the source, from segmental ones, which belong to\nthe filter.\nPitch and amplitude are primarily source properties.\nRhythm and speed of speaking are not, but neither are they filter\nproperties, for they belong to the source-filter system as a whole\nand not specifically to either part of it.\nThe difficult notion of stress is, from an acoustic point of view,\na combination of pitch, rhythm, and amplitude.\nEven some features of voice quality can be attributed to the source\n(like laryngitis), although others \\(em cleft palate, badly-fitting\ndentures \\(em affect segmental features as well.\n.sh \"2.4  Further reading\"\n.pp\nThis chapter has been no more than a cursory introduction to some\nof the difficult problems of linguistics and phonetics.\nHere are some readable books which discuss these problems further.\n.LB \"nn\"\n.\\\"Abercrombie-1967-1\n.ds [F 1\n.]-\n.ds [A Abercrombie, D.\n.ds [D 1967\n.ds [T Elements of general phonetics\n.ds [I Edinburgh Univ Press\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is an excellent book which covers all of the areas of this\nchapter, in much more detail than has been possible here.\n.in-2n\n.\\\"Brown-1980-2\n.ds [F 2\n.]-\n.ds [A Brown, Gill\n.as [A \", Currie, K.L.\n.as [A \", and Kenworthy, J.\n.ds [D 1980\n.ds [T Questions of intonation\n.ds [I Croom Helm\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nAn intensive study of the prosodics of colloquial, living speech\nis presented, with particular reference to intonation.  Although\nnot particularly relevant to speech output from computers,\nthis book gives great insight into how conversational speech\ndiffers from reading aloud.\n.in-2n\n.\\\"Fry-1979-1\n.ds [F 1\n.]-\n.ds [A Fry, D.B.\n.ds [D 1979\n.ds [T The physics of speech\n.ds [I Cambridge University Press\n.ds [C Cambridge, England\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is a simple and readable account of speech science, with a good\nand completely non-mathematical introduction to frequency analysis.\n.in-2n\n.\\\"Ladefoged-1975-4\n.ds [F 4\n.]-\n.ds [A Ladefoged, P.\n.ds [D 1975\n.ds [T A course in phonetics\n.ds [I Harcourt Brace and Johanovich\n.ds [C New York\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nUsually books entitled \"A course on ...\" are dreadfully dull, but\nthis is a wonderful exception.  An exciting, readable, almost racy\nintroduction to phonetics, full of little experiments you can try\nyourself.\n.in-2n\n.\\\"Lehiste-1970-5\n.ds [F 5\n.]-\n.ds [A Lehiste, I.\n.ds [D 1970\n.ds [T Suprasegmentals\n.ds [I MIT Press\n.ds [C Cambridge, Massachusetts\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis fairly comprehensive study of the prosodics of speech\ncomplements Ladefoged's book, which is mainly concerned with segmental\nphonetics.\n.in-2n\n.\\\"O'Connor-1973-1\n.ds [F 1\n.]-\n.ds [A O'Connor, J.D.\n.ds [D 1973\n.ds [T Phonetics\n.ds [I Penguin\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is another introductory book on phonetics.\nIt is packed with information on all aspects of the subject.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"3  SPEECH STORAGE\"\n.ds RT \"Speech storage\n.ds CX \"Principles of computer speech\n.pp\nThe most familiar device that produces speech output is the ordinary tape\nrecorder, which stores information in analogue form on magnetic tape.\nHowever, this is unsuitable for speech output from computers.\nOne reason is that it is difficult to access different utterances quickly.\nAlthough random-access tape recorders do exist, they are expensive and\nsubject to mechanical breakdown because of the stresses associated with\nfrequent starting and stopping.\n.pp\nStoring speech on a rotating drum instead of\ntape offers the possibility of access to any track within one revolution time.\nFor example, the IBM 7770 Audio Response Unit employs drums rotating twice\na second which are able to store up to 32 500-msec words.  These can be accessed\nrandomly, within half a second at most.\nAlthough one can\narrange to store longer words by allowing overflow on to an adjacent track at\nthe end of the rotation period, the discrete time-slots provided by this\nsystem make it virtually impossible for it to generate connected utterances\nby assembling appropriate words from the store.\n.pp\nThe Cognitronics Speechmaker has a similar structure, but with\nthe analogue speech waveform recorded on photographic film.\nStoring audio waveforms optically is not an unusual technique, for this is how\nsoundtracks are recorded on ordinary movie films.  The original version of\nthe \"speaking clock\" of the British Post Office used optical storage in\nconcentric tracks on flat glass discs.\nIt is described by Speight and Gill (1937),\nwho include a fascinating account of how the utterances are synchronized.\n.[\nSpeight Gill 1937\n.]\nA 4\\ Hz signal from a pendulum clock was used to supply current to an electric\nmotor, which drove a shaft equipped with cams and gears that rotated\nthe glass discs containing utterances for seconds, minutes, and hours\nat appropriate speeds!\n.pp\nA second reason for avoiding analogue storage is price.  It is difficult to see how a random-access\ntape recorder could be incorporated into a talking pocket calculator or\nchild's toy without considerably inflating the cost.\nSolid-state electronics is much cheaper than mechanics.\n.pp\nBut the best reason is that, in many of the applications we have discussed,\nit is necessary to form utterances by concatenating separately-recorded\nparts.  It is totally infeasible, for example, to store each and every\npossible telephone number as an individual recording!  And\nutterances that are formed by concatenating individual words which were\nrecorded in isolation, or in a different context, do not sound completely\nnatural.  For example, in an early experiment, Stowe and Hampton (1961) recorded\nindividual words on acoustic tape, spliced the tape with the words in a different\norder to make sentences, and played the result to subjects who were scored on\nthe number of key words which they identified correctly.\n.[\nStowe Hampton 1961\n.]\nThe overall conclusion was that while embedding a word in normally-spoken sentences\n.ul\nincreases\nthe probability of recognition (because the extra context gives clues about the\nword), embedding a word in a constructed sentence, where intonation and rhythm\nare not properly rendered,\n.ul\ndecreases\nthe probability of recognition.  When the speech was uttered slowly,\nhowever, a considerable improvement was noticed, indicating that if the\nlistener has more processing time he can overcome the lack of proper intonation\nand rhythm.\n.pp\nNevertheless, many present-day voice response systems\n.ul\ndo\nstore what amounts to a direct recording of the acoustic wave.\nHowever, the storage medium is digital rather than analogue.\nThis means that standard computer storage devices can be used, providing\nrapid access to any segment of the speech at relatively low cost \\(em for\nthe economics of mass-production ensures a low price for random-access\ndigital devices compared with random-access analogue ones.\nFurthermore, it reduces the amount of special equipment needed for speech\noutput.  One can buy very cheap speech input/output interfaces for home computers\nwhich connect to standard hobby buses.\nAnother advantage of digital over analogue recording is that\nintegrated circuit read-only memories (ROMs)\ncan be used for hand-held devices which need small quantities of speech.\nHence this chapter begins by showing how waveforms are stored digitally,\nand then describes some techniques for reducing the data needed for a given\nutterance.\n.sh \"3.1  Storing waveforms digitally\"\n.pp\nWhen an analogue signal is converted to digital form, it is made discrete\nboth in time and in amplitude.  Discretization in time is the operation of\n.ul\nsampling,\nwhilst in amplitude it is\n.ul\nquantizing.\nIt is worth pointing out that the transmission of analogue information by\ndigital means is called \"PCM\" (standing for \"pulse code modulation\") in\ntelecommunications jargon.\nMuch of the theory of digital signal processing investigates signals which\nare sampled but not quantized (or quantized into sufficiently many levels to\navoid inaccuracies).  The operation of quantization, being non-linear,\nis not very amenable to theoretical analysis.  Quantization introduces issues\nsuch as accumulation of round-off noise in arithmetic operations,\nwhich, although they are very important in practical implementations, can only\nbe treated theoretically under certain somewhat unrealistic assumptions\n(in particular, independence of the quantization error from sample to sample).\n.rh \"Sampling.\"\nA fundamental theorem of telecommunications states that a signal can only be\nreconstructed accurately from a sampled version if it does not contain\ncomponents whose frequency is greater than half the frequency at which the\nsampling takes place.  Figure 3.1(a) shows how a component of slightly greater\nthan half the sampling frequency can masquerade, as far as an observer with\naccess only to the sampled data can tell, as a component at slightly less\nthan half the sampling frequency.\n.FC \"Figure 3.1\"\nCall the sampling interval $T$ seconds, so that the\nsampling frequency is $1/T$\\ Hz.\nThen components at $1/2T+f$, $3/2T-f$, $3/2T+f$ and so on all masquerade\nas a component at $1/2T-f$.  Similarly, components at frequencies just under\nthe sampling frequency masquerade as very low-frequency components, as shown\nin Figure 3.1(b).  This phenomenon is often called \"aliasing\".\n.pp\nThus the continuous, infinite, frequency axis for the unsampled signal, where\ntwo components at different frequencies can always be distinguished, maps\ninto a repetitive frequency axis when the signal is sampled.  As depicted\nin Figure 3.2, the frequency\ninterval $[1/T,~ 2/T)$ \\u\\(dg\\d\n.FN 3\n.sp\n\\u\\(dg\\dIntervals are specified in brackets, with a square bracket representing\na closed end of the interval and a round one representing an open one.\nThus the interval $[1/T,~ 2/T)$ specifies the range $1/T ~ <= ~ frequency\n~ < ~ 2/T$.\n.EF\nis mapped back into the band $[0,~ 1/T)$, as are the\nintervals $[2/T,~ 3/T)$,  $[3/T,~ 4/T)$, and so on.\n.FC \"Figure 3.2\"\nFurthermore, the interval $[1/2T,~ 1/T)$ between half the sampling frequency and the sampling\nfrequency, is mapped back into the interval\nbelow half the sampling frequency; but this time the mapping is backwards,\nwith frequencies at just under $1/T$ being mapped to frequencies slightly greater\nthan zero, and frequencies just over $1/2T$ being mapped to ones\njust under $1/2T$.\nThe best way to represent a repeating frequency axis like this is as a circle.\nFigure 3.3 shows how the linear frequency axis for continuous systems maps\non to a circular axis for sampled systems.\n.FC \"Figure 3.3\"\nFor present purposes it is\neasiest to imagine the bottom half of the circle as being reflected into\nthe top half, so that traversing the upper semicircle in the anticlockwise direction\ncorresponds to frequencies increasing from 0 to $1/2T$ (half the sample frequency),\nand returning along the lower semicircle is actually the same as coming\nback round the upper one, and corresponds to frequencies from $1/2T$ to $1/T$\nbeing mapped into the range $1/2T$ to 0.\n.pp\nAs far as speech is concerned, then, we must ensure that before sampling a\nsignal no significant components at greater than half the sample frequency\nare present.  Furthermore, the sampled signal will only contain information\nabout frequency components less than this, so the sample frequency must be\nchosen as twice the highest frequency of interest.\nFor example, consider telephone-quality speech.\nTelephones provide a familiar standard of speech quality which,\nalthough it can only be an approximate \"standard\",\nwill be much used throughout this book.\nThe telephone network\naims to transmit only frequencies lower than 3.4\\ kHz.  We saw in the\nprevious chapter that this region will contain the information-bearing formants,\nand some \\(em but not all \\(em of the fricative and aspiration energy.\nActually, transmitting speech through the telephone system degrades its\nquality very significantly, probably more than you realize since everyone is\nso accustomed to telephone speech.  Try the dial-a-disc service and compare\nit with high-fidelity music for a striking example of the kind of degradation\nsuffered.\n.pp\nFor telephone speech, the sampling frequency must be chosen to be\nat least 6.8\\ kHz.\nSince speech contains significant amounts of energy above 3.4\\ kHz, it should be\nfiltered before sampling to remove this; otherwise the higher components\nwould be mapped back into the baseband and distort the low-frequency information.\nBecause it is difficult to make filters that cut off very sharply, the\nsampling frequency is chosen rather greater than twice the highest frequency of\ninterest.  For example, the digital telephone network samples at 8\\ kHz.\nThe pre-sampling filter should have a cutoff frequency of 4\\ kHz; aim for\nnegligible distortion below 3.4\\ kHz; and transmit negligible components\nabove 4.6\\ kHz \\(em for these are reflected back into the band of interest,\nnamely 0 to 3.4\\ kHz.  Figure 3.4 shows a block diagram for the input hardware.\n.FC \"Figure 3.4\"\n.rh \"Quantization.\"\nBefore considering specifications for the pre-sampling filter, let us turn\nfrom discretization in time to discretization in amplitude, that is,\nquantization.\nThis is performed by an A/D converter (analogue-to-digital), which takes as input\na constant analogue voltage (produced by the sampler) and generates a\ncorresponding binary value as output.  The simplest correspondence is\n.ul\nuniform\nquantization, where the amplitude range is split into equal regions by points\ntermed \"quantization levels\", and the output is a binary representation of\nthe nearest quantization level to the input voltage.\nTypically, 11-bit conversion is used for speech, giving 2048 quantization\nlevels, and the signal is adjusted to have zero mean so that half the\nlevels correspond to negative input voltages and the other half to positive\nones.\n.pp\nIt is, at first sight, surprising that as many as 11 bits are needed for\nadequate representation of speech signals.  Research on the digital telephone\nnetwork, for example, has concluded that a signal-to-noise ratio of\nsome 26\\-27\\ dB is enough to avoid undue harshness of quality, loss\nof intelligibility, and listener fatigue for speech at a comfortable\nlevel in an otherwise reasonably good channel.\nRabiner and Schafer (1978) suggest that about 36\\ dB signal-to-noise ratio\nwould \"most likely provide adequate quality in a communications system\".\n.[\nRabiner Schafer 1978 Digital processing of speech signals\n.]\nBut 11-bit quantization seems to give a very much better signal-to-noise\nratio than these figures.  To estimate its magnitude, note that for N-bit quantization\nthe error for each sample will lie between\n.LB\n$\n- ~ 1 over 2 ~. 2 sup -N$    and    $+ ~ 1 over 2 ~. 2 sup -N .\n$\n.LE\nAssuming that it is uniformly distributed in this range \\(em an assumption\nwhich is likely to be justified if the number of levels is sufficiently\nlarge \\(em leads to a mean-squared error of\n.LB\n.EQ\nintegral from {-2 sup -N-1} to {2 sup -N-1} ~e sup 2 p(e) de,\n.EN\n.LE\nwhere $p(e)$, the probability density function of the error $e$, is a constant\nwhich satisfies the usual probability normalization constraint, namely\n.LB\n.EQ\nintegral from {-2 sup -N-1} to {2 sup -N-1} ~ p(e) de ~~=~ 1.\n.EN\n.LE\nHence $p(e)=2 sup N $, and so the mean-squared error is  $2 sup -2N /12$.\nThis is  $10 ~ log sub 10 (2 sup -2N /12)$\\ dB, or around \\-77\\ dB for 11-bit\nquantization.\n.pp\nThis noise level is relative to the maximum amplitude range of the conversion.\nA maximum-amplitude sine wave has a power of \\-9\\ dB relative to the same\nreference, giving a signal-to-noise ratio of some 68\\ dB.  This is far in excess\nof that needed for telephone-quality speech.  However, look at the very peaky\nnature of the typical speech waveform given in Figure 3.5.\n.FC \"Figure 3.5\"\nIf clipping is to be avoided, the maximum amplitude level of the A/D converter\nmust be set at a value which makes the power of the speech signal very much\nless than a maximum-amplitude sine wave.  Furthermore, different people\nspeak at very different volumes, and the overall level fluctuates constantly\nwith just one speaker.  Experience shows that while 8- or 9-bit quantization\nmay provide sufficient signal-to-noise ratio to preserve telephone-quality\nspeech if the overall speaker levels are carefully controlled, about 11 bits\nare generally required to provide high-quality representation of speech with\na uniform quantization.  With 11 bits, a sine wave whose amplitude is only 1/32\nof the full-scale value would be digitized with a signal-to-noise ratio\nof around 36\\ dB, the most pessimistic figure quoted above for adequate quality.\nEven then it is useful if the speaker is provided\nwith an indication of the amplitude of his speech:  a traffic-light\nindicator with red signifying clipping overload, orange a suitable level,\nand green too low a value, is often convenient for this.\n.rh \"Logarithmic quantization.\"\nFor the purposes of speech\n.ul\nprocessing,\nit is essential to have the signal quantized uniformly.  This is because\nall of the theory applies to linear systems, and nonlinearities introduce\ncomplexities which are not amenable to analysis.\nUniform quantization, although a nonlinear operation, is linear in the\nlimiting case as the number of levels becomes large, and for most purposes\nits effect can be modelled by assuming that the quantized signal is obtained\nfrom the original analogue one by the addition of a small amount of\nuniformly-distributed quantizing noise, as in fact was done above.\nUsually the quantization noise is disregarded in subsequent analysis.\n.pp\nHowever, the peakiness of the speech signal illustrated in Figure 3.5 leads\none to suspect that a non-linear representation, for example a logarithmic one,\ncould provide a better signal-to-noise ratio over a wider range of input\namplitudes, and hence be more useful than linear quantization \\(em at least\nfor speech storage (and transmission).\nAnd indeed this is the case.  Linear quantization has the unfortunate effect\nthat the absolute noise level is independent of the signal level, so that an excessive\nnumber of bits must be used if a reasonable ratio is to be achieved for peaky\nsignals.  It can be shown that a logarithmic representation like\n.LB\n.EQ\ny ~ = ~ 1 ~ + ~ k ~ log ~ x,\n.EN\n.LE\nwhere $x$ is the original signal and $y$ is the value which is to be quantized,\ngives a\nsignal-to-noise\n.ul\nratio\nwhich is independent of the input signal level.\nThis relationship cannot be realized physically, for it is undefined when the signal\nis negative and diverges when it is zero.\nHowever, realizable approximations to it can be made which retain the advantages\nof constant signal-to-noise ratio within a useful range of signal amplitudes.\nFigure 3.6 shows the logarithmic relation with one widely-used approximation to it,\ncalled the A-law.\n.FC \"Figure 3.6\"\nThe idea of non-linearly quantizing a signal to achieve adequate signal-to-noise\nratios for a wide variety of amplitudes is called \"companding\", a contraction\nof \"compressing-expanding\".  The original signal can be retrieved from\nits A-law compression by antilogarithmic expansion.\n.pp\nFigure 3.6 also\nshows one common coding scheme which is a piecewise linear approximation\nto the A-law.  This provides an 8-bit code, and gives the equivalent\nof 12-bit linear quantization for small signal levels.  It approximates\nthe A-law in 16 linear segments, 8 for positive and 8 for negative\ninputs.\nConsider the positive part of the curve.  The first two segments, which\nare actually collinear, correspond exactly to 12-bit linear conversion.\nThus the output codes 0 to 31 correspond to inputs from 0 to 31/2048,\nin equal steps.  (Remember that both positive and negative signals\nmust be converted, so a 12-bit linear converter will allocate 2048 levels\nfor positive signals and 2048 for negative ones.)  The next\nsegment provides 11-bit linear quantization,\noutput codes 32 to 47 corresponding to inputs from 16/1024 to 31/1024.\nSimilarly, the next segment corresponds to 10-bit quantization, covering\ninputs from 16/512 to 31/512.  And so on, the last section giving 6-bit\nquantization of inputs from 16/32 to 31/32, the full-scale positive value.\nNegative inputs are converted similarly.\nFor signal levels of less than 32/2048, that is, $2 sup -8$, this implementation\nof the A-law provides full 12-bit precision.\nAs the signal level increases, the precision decreases gradually to 6 bits\nat maximum amplitudes.\n.pp\nLogarithmic encoding provides what is in effect a floating-point representation\nof the input.  The conventional floating-point format, however, is not used\nbecause many different codes can represent the same value.  For example, with\na 4-bit exponent preceding a 4-bit mantissa, the words 0000:1000,\n0001:0100, 0010:0010, and 0011:0001 represent the numbers\n$0.1 ~ times ~ 2 sup 0$,  $0.01 ~ times ~ 2 sup 1\n$,  $0.001 ~ times ~ 2 sup 2$,  \\c\nand  $0.0001 ~ times ~ 2 sup 3$  respectively,\nwhich are the same.  (Some floating-point conventions assume that an unwritten\n\"1\" bit precedes the mantissa, except when the whole word is zero; but this\ngives decreased resolution around zero \\(em which is exactly where we want the\nresolution to be greatest.)  Table 3.1 shows the 8-bit A-law codes,\n.RF\n.in+0.7i\n.ta 1.6i +\\w'bits 1-3   'u\n8-bit codeword:\tbit 0\tsign bit\n\tbits 1-3\t3-bit exponent\n\tbits 4-7\t4-bit mantissa\n.sp2\n.ta 1.6i 3.5i\n.ul\n codeword\t   interpretation\n.sp\n0000 0000\t\\h'\\w'\\0-\\0  +  'u'$.0000 ~ times ~ 2 sup -7$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0000 1111\t\\h'\\w'\\0-\\0  +  'u'$.1111 ~ times ~ 2 sup -7$\n0001 0000\t$2 sup -7 ~~ + ~~ .0000 ~ times ~ 2 sup -7$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0001 1111\t$2 sup -7 ~~ + ~~ .1111 ~ times ~ 2 sup -7$\n0010 0000\t$2 sup -6 ~~ + ~~ .0000 ~ times ~ 2 sup -6$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0010 1111\t$2 sup -6 ~~ + ~~ .1111 ~ times ~ 2 sup -6$\n0011 0000\t$2 sup -5 ~~ + ~~ .0000 ~ times ~ 2 sup -5$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0011 1111\t$2 sup -5 ~~ + ~~ .1111 ~ times ~ 2 sup -5$\n0100 0000\t$2 sup -4 ~~ + ~~ .0000 ~ times ~ 2 sup -4$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0100 1111\t$2 sup -4 ~~ + ~~ .1111 ~ times ~ 2 sup -4$\n0101 0000\t$2 sup -3 ~~ + ~~ .0000 ~ times ~ 2 sup -3$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0101 1111\t$2 sup -3 ~~ + ~~ .1111 ~ times ~ 2 sup -3$\n0110 0000\t$2 sup -2 ~~ + ~~ .0000 ~ times ~ 2 sup -2$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0110 1111\t$2 sup -2 ~~ + ~~ .1111 ~ times ~ 2 sup -2$\n0111 0000\t$2 sup -1 ~~ + ~~ .0000 ~ times ~ 2 sup -1$\n\\0\\0\\0...\t\\0\\0\\0\\0...\n0111 1111\t$2 sup -1 ~~ + ~~ .1111 ~ times ~ 2 sup -1$\n\n1000 0000\t\\h'\\w'\\0-\\0  'u'$- ~~ .0000 ~ times ~ 2 sup -7$\tnegative numbers treated as\n\\0\\0\\0...\t\\0\\0\\0\\0...\tabove, with a sign bit of 1\n1111 1111\t\\h'-\\w'\\- 'u'\\- $2 sup -1 ~~ - ~~ .1111 ~ times ~ 2 sup -1$\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 3.1  8-bit A-law codes, with their floating-point equivalents\"\naccording\nto the piecewise linear approximation of Figure 3.6, written in a notation which\nsuggests floating point.  Each linear segment has a different exponent except\nthe first two segments, which as explained above are collinear.\n.pp\nLogarithmic encoders and decoders are available from many semiconductor\nmanufacturers as single-chip devices\ncalled \"codecs\" (for \"coder/decoder\").  Intended for use on digital communication\nlinks, these generally provide a serial output bit-stream, which\nshould be converted to parallel by a shift register if the data is intended\nfor a computer.\nBecause of the potentially vast market for codecs in telecommunications,\nthey are made in great quantities and are consequently very cheap.\nEstimates of the speech quality necessary for telephone applications indicate\nthat somewhat less than this accuracy is needed \\(em 7-bit logarithmic encoding\nwas used in early digital communications links, and it may be that even 6 bits\nare adequate.  However, during the transition period when digital\nnetworks must coexist with the present analogue one, it is anticipated that\na particular telephone call may have to pass through several links, some\nusing analogue technology and some being digital.  The possibility of\nseveral successive encodings and decodings has led telecommunications\nengineers to standardize on 8-bit representations, leaving some margin\nbefore additional degradation of signal quality becomes unduly distracting.\n.pp\nUnfortunately, world telecommunications authorities cannot agree on a single\nstandard for logarithmic encoding.  The A-law, which we have described,\nis the European standard, but there is another system, called\nthe $mu$-law, which is used universally in North America.  It also is available\nin single-chip form with an 8-bit code.  It has very similar\nquantization error characteristics to the A-law, and would be indistinguishable\nfrom it on the scale of Figure 3.6.\n.rh \"The pre-sampling filter.\"\nNow that we have some idea of the accuracy requirements for quantization,\nlet us discuss quantitative specifications for the pre-sampling filter.\nFigure 3.7 sketches the characteristics of this filter.\n.FC \"Figure 3.7\"\nAssume a\nsampling frequency of 8\\ kHz and a range of interest from 0 to 3.4\\ kHz.\nAlthough all components at frequencies above 4\\ kHz will fold back into\nthe 0\\ \\-\\ 4\\ kHz baseband, those below 4.6\\ kHz fold back above 3.4\\ kHz and are\ntherefore outside the range of interest.  This gives a \"guard band\" between\n3.4 and 4.6\\ kHz which separates the passband from the stopband.  The filter\nshould transmit negligible components in the stopband above 4.6\\ kHz.\nTo reduce the harmonic distortion caused by aliasing to the same level\nas the quantization noise in 11-bit linear conversion, the stopband\nattenuation should be around \\-68\\ dB (the signal-to-noise ratio for a full-scale\nsine wave).  Passband ripple is not so critical,\nfor two reasons.  Whilst the presence of aliased components means that\ninformation has been lost about the frequency components within the range of\ninterest, passband ripple does not actually cause a loss of information but\nonly a distortion, and could, if necessary, be compensated by a suitable\nfilter acting on the digitized waveform.  Secondly, distortion of the\npassband spectrum is not nearly so audible as the frequency images caused\nby aliasing.  Hence one usually aims for a passband ripple of around 0.5\\ dB.\n.pp\nThe pass and stopband targets we have mentioned above can be achieved with\na 9'th order elliptic filter.  While such a filter is often used in\nhigh-quality signal-processing systems, for telephone-quality speech\nmuch less stringent specifications seem to be sufficient.  Figure 3.8, for\nexample, shows a template which has been recommended by telecommunications\nauthorities.\n.FC \"Figure 3.8\"\nA 5'th order elliptic filter can easily meet this specification.\nSuch filters, implemented by switched-capacitor means, are available in\nsingle-chip form.  Integrated CCD (charge-coupled device)\nfilters which meet the same specification\nare also marketed.  Indeed, some codecs provide input filtering on the same\nchip as the A/D converter.\n.pp\nInstead of implementing a filter by analogue means to meet the aliasing\nspecifications, digital filtering can be used.  A high sample-rate A/D\nconverter, operating at, say, 32\\ kHz, and preceded by a very simple low-pass\npre-sampling filter, is followed by a digital filter which meets the\ndesired specification, and its output is subsampled to provide an 8\\ kHz sample\nrate.  While such implementations may be economic where a multichannel digitizing\ncapability is required, as in local telephone exchanges where the subscriber\nconnection is an analogue one, they are unlikely to prove cost-effective for\na single channel.\n.rh \"Reconstructing the analogue waveform.\"\nHaving digitized and stored a signal, it needs to be passed though a D/A\nconverter (digital-to-analogue) and low-pass filter when replayed.\nD/A converters are cheaper than A/D converters, and the characteristics of the\nlow-pass filter for output can be the same as those for input.\nHowever, the desampling operation introduces an additional distortion, which\nhas an effect on the component at frequency $f$ of\n.LB\n.EQ\n{ sin ( pi f/f sub s )} over { pi f/f sub s } ~ ,\n.EN\n.LE\nwhere $f sub s$ is the sampling frequency.  An \"aperture correction\" filter is\nneeded to compensate for this, although many systems simply do without it.\nSuch a filter is sometimes incorporated into the codec chip.\n.rh \"Summary.\"\nFor telephone-quality speech, existing codec chips,\ncoupled if necessary with integrated pre-sampling filters, can\nbe used, at a remarkably low cost.\nFor higher-quality speech storage the analogue interface can become quite complex.\nA comprehensive study of the problems as they relate to digitization of audio,\nwhich demands much greater fidelity than speech, has been made by Blesser (1978).\n.[\nBlesser 1978\n.]\nHe notes the following sources of error (amongst others):\n.LB\n.NP\nslew-rate distortion in the pre-sampling filter for signals at the upper end\nof the audio band;\n.NP\ninsufficient filtering of high-frequency input signals;\n.NP\nnoise generated by the sample-and-hold amplifier or pre-sampling filter;\n.NP\nacquisition errors because of the finite settling time of the sample-and-hold\ncircuit;\n.NP\ninsufficient settling time in the A/D conversion;\n.NP\nerrors in the quantization levels of the A/D and D/A converters;\n.NP\nnoise in the converters;\n.NP\njitter on the clock used for timing input or output samples;\n.NP\naperture distortion in the output sampler;\n.NP\nnoise in the output filter as a result of limited dynamic range of the\nintegrated circuits;\n.NP\npower-supply noise injection or ground coupling;\n.NP\nchanges in characteristics as a result of temperature or ageing.\n.LE\nCare must be taken with the analogue interface to ensure that the precision\nimplied by the resolution of the A/D and D/A converters is not compromised\nby inadequate analogue circuitry.  It is especially important to eliminate\nhigh-frequency noise caused by fast edges on nearby computer buses.\n.sh \"3.2  Coding in the time domain\"\n.pp\nThere are several methods of coding the time waveform of a speech signal to\nreduce the data rate for a given signal-to-noise ratio, or alternatively to\nreduce the signal-to-noise ratio for a given data rate.  They almost all require\nmore processing, both at the encoding (for storage) and decoding (for\nregeneration) ends of the digitization process.  They are sometimes used to\neconomize on memory in systems using stored speech,\nfor example the System\\ X telephone exchange and the travel consultant described\nin Chapter 1, and so will be described here.  However, it is to be expected\nthat simple time-domain coding techniques will be superseded by the more complex\nlinear predictive method, which is covered in Chapter 6, because this\ncan give a much more substantial reduction in the data rate for only a small\ndegradation in speech quality.  Hence the aim of this section is to introduce\nthe ideas in a qualitative way:  theoretical development and summaries of\nresults of listening tests can be found elsewhere (eg Rabiner and Schafer, 1978).\n.[\nRabiner Schafer 1978 Digital processing of speech signals\n.]\nThe methods we will examine are summarized in Table 3.2.\n.RF\n.nr x0 \\w'linear PCM      'u\n.nr x1 \\n(x0+\\w'    adaptive quantization, or adaptive prediction,'u\n.nr x2 (\\n(.l-\\n(x1)/2\n.in \\n(x2u\n.ta \\n(x0u\n\\l'\\n(x1u\\(ul'\n.sp\nlinear PCM\tlinearly-quantized pulse code modulation\n.sp\nlog PCM\tlogarithmically-quantized pulse code modulation\n\t    (instantaneous companding)\n.sp\nAPCM\tadaptively quantized pulse code modulation\n\t    (usually syllabic companding)\n.sp\nDPCM\tdifferential pulse code modulation\n.sp\nADPCM\tdifferential pulse code modulation with either\n\t    adaptive quantization, or adaptive prediction,\n\t    or both\n.sp\nDM\tdelta modulation (1-bit DPCM)\n.sp\nADM\tdelta modulation with adaptive quantization\n\\l'\\n(x1u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 3.2  Time-domain encoding techniques\"\n.rh \"Syllabic companding.\"\nWe have already studied one time-domain encoding technique, namely logarithmic\nquantization, or log PCM (sometimes called \"instantaneous companding\").  A more\nsophisticated encoder could track slowly varying trends in the overall amplitude\nof the speech signal and use this information to adjust the quantization\nlevels dynamically.  Speech coding methods based on this principle are called\nadaptive pulse code modulation systems (APCM).  Because the overall amplitude\nchanges slowly, it is sufficient to adjust the quantization relatively infrequently\n(compared with the sampling rate), and this is often done at rates approximating\nthe syllable rate of running speech, leading to the term \"syllabic companding\".\nA block floating-point format can be used, with a common exponent being\nstored every M samples (with M, say, 125 for a 100\\ msec block rate at 8\\ kHz\nsampling), but the mantissa being stored at the regular sample rate.  The overall\nenergy in the block,\n.LB\n$sum from n=h to h+M-1 ~x(n) sup 2$    ($M = 125$, say),\n.LE\nis used to determine a suitable exponent, and every sample\nin the block \\(em namely\n$x(h)$, $x(h+1)$, ..., $x(h+M-1)$ \\(em is scaled according to that exponent.\nNote that for speech transmission systems this method necessitates a delay of\n$M$ samples at the encoder, and indeed some methods base the exponent on the\nenergy in the last block to avoid this.  For speech storage, however, the delay\nis irrelevant.  A rather different, nonsyllabic, method of adaptive PCM is\ncontinually to change the step size of a uniform quantizer, by multiplying it by\na constant at each sample which is based on the magnitude of the previous code\nword.\n.pp\nAdaptive quantization exploits information about the amplitude of the signal,\nand, as a rough generalization, yields a reduction of one bit per sample\nin the data rate for telephone-quality speech over ordinary logarithmic\nquantization, for a given signal-to-noise ratio.  Alternatively, for the\nsame data rate an improvement of 6\\ dB in signal-to-noise ratio can be obtained.\nSome results for actual schemes are given by Rabiner and Schafer (1978).\n.[\nRabiner Schafer 1978 Digital processing of speech signals\n.]\nHowever, there is other information in the time waveform of speech, namely, the\nsample-to-sample correlation, which can be exploited to give further reductions.\n.rh \"Differential coding.\"\nDifferential pulse code modulation (DPCM), in its simplest form, uses the\npresent speech sample as a prediction of the next one,\nand stores the prediction error \\(em that is, the sample-to-sample difference.\nThis is a simple case of predictive encoding.\nReferring back to the speech waveform displayed in Figure 3.5,\nit seems plausible that the data rate can be reduced by transmitting the difference\nbetween successive samples instead of their absolute values:  less bits are\nrequired for the difference signal for a given overall accuracy because it\ndoes not assume such extreme values as the absolute signal level.\nActually, the improvement is not all that great \\(em about 4\\ \\-\\ 5\\ dB in\nsignal-to-noise ratio, or just under one bit per sample for a given\nsignal-to-noise ratio \\(em for the difference signal can be nearly as large as\nthe absolute signal level.\n.pp\nIf DPCM is used in conjunction with adaptive quantization, giving one form of\nadaptive differential pulse code modulation (ADPCM), both the overall amplitude\nvariation and the sample-to-sample correlation are exploited, leading to a\ncombined gain of 10\\ \\-\\ 11\\ dB in signal-to-noise ratio (or just under two bits\nreduction per sample for telephone-quality speech).  Another form of adaptation\nis to alter the predictor by multiplying the previous sample value by a\nparameter which is adjusted for best performance.\nThen the transmitted signal at time $n$ is\n.LB\n.EQ\ne(n) ~~ = ~~ x(n)~ - ~ax(n-1),\n.EN\n.LE\nwhere the parameter $a$ is adapted (and stored) on a syllabic time-scale.  This\nleads to a slight improvement in signal-to-noise ratio, which can be combined\nwith that achieved by adaptive quantization.  Much more substantial benefits\ncan be realized by using a weighted sum of the past several (up to 15) speech\nsamples, and adapting all the weights.  This is the basic idea of linear\nprediction, which is developed in Chapter 6.\n.rh \"Delta modulation.\"\nThe coding methods presented so far all increase the complexity of the\nanalogue-to-digital interface (or, if the sampled waveform is coded\ndigitally, they increase the processing required before and after storage).\nOne method which considerably\n.ul\nsimplifies\nthe interface is the limiting case\nof DPCM with just 1-bit quantization.  Only the sign of the difference between\nthe current and last values is transmitted.  Figure 3.9 shows the conversion\nhardware.\n.FC \"Figure 3.9\"\nThe encoding part is essentially the same as a tracking D/A,\nwhere the value in a counter is forced to track the analogue input by\nincrementing or decrementing the counter according as the input exceeds or\nfalls short of the analogue equivalent of the counter's contents.  However,\nfor this encoding scheme, called \"delta modulation\", the increment-decrement\nsignal itself forms the discrete representation of the waveform, instead of the counter's\ncontents.  The analogue waveform can be reconstituted from the bit stream with\nanother counter and D/A converter.  Alternatively, an all-analogue implementation\ncan be used, both for the encoder and decoder, with a capacitor as integrator\nwhose charging current is controlled digitally.  This is a much cheaper realization.\n.pp\nIt is fairly obvious that the sampling frequency for delta modulation will need\nto be considerably higher than for straightforward PCM.  Figure 3.10 shows\nan effect called \"slope overload\" which occurs when the sampling rate is too low.\n.FC \"Figure 3.10\"\nEither a higher sample rate or a larger step size will reduce the overload;\nhowever, larger steps increase the noise level of the alternate 1's and \\-1's\nthat occur when no input is present \\(em called \"granular noise\".  A compromise\nis necessary between slope overload and granular noise for a given bit rate.\nDelta modulation results in lower data rates than logarithmic quantization\nfor a given signal-to-noise ratio if that ratio is low (poor-quality speech).\nAs the desired speech quality is increased its data rate grows faster than\nthat of logarithmic PCM.  The crossover point occurs at much lower than\ntelephone quality speech, and so although delta modulation is used for some\napplications where the permissible data rate is severely constrained,\nit is not really suitable for speech output from computers.\n.pp\nIt is profitable to adjust the step size, leading to\n.ul\nadaptive\ndelta modulation.\nA common strategy is to increase or decrease the step size by a multiplicative\nconstant, which depends on whether the new transmitted bit will be equal to\nor different from the last one.  That is,\n.LB \"nnnn\"\n.NI \"nn\"\n$stepsize(n+1)  =  stepsize(n) times 2$  if $x(n+1)<x(n)<x(n-1)$\nor $x(n+1)>x(n)>x(n-1)$\n.br\n(slope overload condition);\n.NI \"nn\"\n$stepsize(n+1) = stepsize(n)/2$  if $x(n+1),~x(n-1)<x(n)$\nor $x(n+1),~x(n-1)>x(n)$\n.br\n(granular noise condition).\n.LE \"nnnn\"\nDespite these adaptive equations, the step size should be constrained to\nlie between a predetermined fixed maximum and minimum, to prevent it from\nbecoming so large or so small that rapid accomodation to changing input signals is\nimpossible.\nThen, in a period of potential slope overload the step size will grow, preventing\noverload, possibly to its maximum value when overload may resume.  In a quiet\nperiod it will decrease to its minimum value which determines the granular\nnoise in the idle condition.  Note that the step size need not be stored, for\nit can be deduced from the bit changes in the digitized data.  Although\nadaptation improves the performance of delta modulation, it is still inferior to\nPCM at telephone qualities.\n.rh \"Summary.\"\nIt seems that ADPCM, with\nadaptive quantization and adaptive prediction, can provide a worthwhile\nadvantage for speech storage, reducing the number of bits needed per sample of\ntelephone-quality speech from 7 for logarithmic PCM to perhaps 5, and the data\nrate from 56\\ Kbit/s to 40\\ Kbit/s.  Disadvantages are additional complexity\nin the encoding and decoding processes, and the fact that byte-oriented storage,\nwith 8 bits/sample in logarithmic PCM, is more convenient for computer use.\nFor low quality speech where hardware complexity is to be minimized,\nadaptive delta modulation could provide worthwhile \\(em although the ready\navailability of PCM codec chips reduces the cost advantage.\n.sh \"3.3  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"3.4  Further reading\"\n.pp\nProbably the best single reference on time-domain coding of speech is\nthe book by Rabiner and Schafer (1978), cited above.\nHowever, this does not contain a great deal of information on practical\naspects of the analogue-to-digital conversion process; this is\ncovered by Blesser (1978) above, who is especially interested in\nhigh-quality conversion for digital audio applications,\nand Garrett (1978) below.\nThere are many textbooks in the telecommunications area which\nare relevant to the subject of the chapter,\nalthough they concentrate primarily on fundamental theoretical aspects rather\nthan the practical application of the technology.\n.LB \"nn\"\n.\\\"Cattermole-1969-1\n.]-\n.ds [A Cattermole, K.W.\n.ds [D 1969\n.ds [T Principles of pulse code modulation\n.ds [I Iliffe\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is a standard, definitive, work on PCM, and provides a good grounding\nin the theory.\nIt goes into the subject in much more depth than we have been able to here.\n.in-2n\n.\\\"Garrett-1978-1\n.]-\n.ds [A Garrett, P.H.\n.ds [D 1978\n.ds [T Analog systems for microprocessors and minicomputers\n.ds [I Reston Publishing Company\n.ds [C Reston, Virginia\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nGarrett discusses the technology of data conversion systems, including\nA/D and D/A converters and basic analogue filter design, in a\nclear and practical manner.\n.in-2n\n.\\\"Inose-1979-2\n.]-\n.ds [A Inose, H.\n.ds [D 1979\n.ds [T An introduction to digital integrated communications systems\n.ds [I Peter Peregrinus\n.ds [C Stevenage, England\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nInose's book is a recent one which covers the whole area of digital\ntransmission and switching technology.\nIt gives a good idea of what is happening to the telephone networks\nin the era of digital communications.\n.in-2n\n.\\\"Steele-1975-3\n.]-\n.ds [A Steele, R.\n.ds [D 1975\n.ds [T Delta modulation systems\n.ds [I Pentech Press\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nAgain a standard work, this time on delta modulation techniques.\nSteele gives an excellent and exhaustive treatment of the subject from a\ncommunications viewpoint.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"4  SPEECH ANALYSIS\"\n.ds RT \"Speech analysis\n.ds CX \"Principles of computer speech\n.pp\nDigital recordings of speech provide a jumping-off point for\nfurther processing of the audio waveform, which is usually necessary for\nthe purpose of speech output.\nIt is difficult to synthesize natural sounds by concatenating\nindividually-spoken words.\nPitch is perhaps the most perceptually significant contextual effect\nwhich must be\ntaken into account when forming connected speech out of isolated words.\nThe intonation of an utterance, which manifests itself as a\ncontinually changing pitch, is a holistic property of the utterance\nand not the sum of components determined by the individual words alone.\nHappily, and quite coincidentally, communications engineers in their quest\nfor reduced-bandwidth telephony have invented methods of coding speech that\nseparate the pitch information from that carried by the articulation.\n.pp\nAlthough these analysis techniques, which were first introduced in the late\n1930's (Dudley, 1939), were originally implemented by analogue means \\(em and\nin many systems still are (Blankenship, 1978, describes a recent\nswitched-capacitor realization) \\(em there is a continuing trend\ntowards digital implementations, particularly for the more sophisticated coding\nschemes.\n.[\nDudley 1939\n.]\n.[\nBlankenship 1978\n.]\nIt is hard to see how the technique of linear prediction of speech,\nwhich is described in detail in Chapter 6, could be accomplished in the\nabsence of digital processing.\nSome groundwork is laid for the theory of digital signal analysis in this\nchapter.\nThe ideas are not presented in a formal, axiomatic way; but are developed as\nand when they are needed to examine some of the structures that turn out to be\nuseful in speech processing.\n.pp\nMost speech analysis views speech according to the source-filter model which\nwas introduced in Chapter 2, and aims to separate the effects of the source from\nthose of the filter.  The frequency spectrum of the vocal tract filter is of\ngreat interest, and the technique of discrete Fourier transformation is\ndiscussed in this chapter.  For many purposes it is better to extract the formant\nfrequencies from the spectrum and use these alone (or in conjunction with their\nbandwidths) to characterize it.  As far as the signal source in the source-filter\nmodel is concerned, its most interesting features are pitch and amplitude \\(em the\nlatter being easy to estimate.  Hence we go on to look at pitch extraction.\nRelated to this is the problem of deciding whether a segment of speech has\nvoiced or unvoiced excitation, or both.\n.pp\nEstimating formant and pitch parameters is one of the messiest areas of\nspeech processing.  There is a delightful paper which points this out\n(Schroeder, 1970), entitled \"Parameter estimation in speech: a lesson in unorthodoxy\".\n.[\nSchroeder 1970\n.]\nIt emphasizes that the most successful estimation procedures \"have often relied\non intuition based on knowledge of speech signals and their production in the\nhuman vocal apparatus rather than routine applications of well-established\ntheoretical methods\".\nFortunately, the emphasis of the present book is on speech\n.ul\noutput,\nwhich involves parameter estimation only in so far as it is needed to produce\ncoded speech for storage, and to illuminate the acoustic nature of speech\nfor the development of synthesis by rule from phonetics or text.\nHence the many methods of formant and pitch estimation are treated rather\ncursorily and qualitatively here:  our main interest is in how to\n.ul\nuse\nsuch information for speech output.\n.pp\nIf the incoming speech can be analysed into its formant frequencies, amplitude,\nexcitation mode, and pitch (if voiced), it is quite easy to resynthesize\nit directly from these parameters.  Speech synthesizers are described in the\nnext chapter.  They can be realized in either analogue or digital\nhardware, the former being predominant in production systems and the latter\nin research systems \\(em although, as in other areas of electronics, the balance\nis changing in favour of digital implementations.\n.sh \"4.1  The channel vocoder\"\n.pp\nA direct representation of the frequency spectrum of a signal can be obtained\nby a bank of bandpass filters.  This is the basis of\nthe\n.ul\nchannel vocoder,\nwhich was the first device that attempted to take advantage of the source-filter\nmodel for speech coding (Dudley, 1939).\n.[\nDudley 1939\n.]\nThe word \"vocoder\" is a contraction\nof\n.ul\nvo\\c\nice\n.ul\ncoder.\nThe energy in each filter band is\nestimated by rectification and smoothing, and the resulting approximation to\nthe frequency spectrum is transmitted or stored.  The source properties are\nrepresented by the type of excitation (voiced or unvoiced), and if voiced,\nthe pitch.  It is not necessary to include the overall amplitude of the speech\nexplicitly, because this is conveyed by the energy levels from the separate\nbandpass filters.\n.pp\nFigure 4.1 shows the encoding part of a channel vocoder which has been used\nsuccessfully for many years (Holmes, 1980).\n.[\nHolmes 1980 JSRU channel vocoder\n.]\n.FC \"Figure 4.1\"\nWe will discuss the block labelled \"pre-emphasis\" shortly.\nThe shape of the spectrum is estimated by 19 bandpass filters, whose spacing\nand bandwidth decrease slightly with decreasing frequency to obtain the rather\ngreater resolution that is needed in the lower frequency region,\nas shown in Table 4.1.\n.RF\n.nr x0 4n+2.6i+\\w'\\0\\0'u+(\\w'bandwidth'/2)\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 4n +1.3i +1.3i\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'channel'/2)\n.nr x2 (\\w'centre'/2)\n.nr x3 (\\w'analysis'/2)\n\t\\0\\h'-\\n(x1u'channel\t\\0\\h'-\\n(x2u'centre\t\\0\\0\\h'-\\n(x3u'analysis\n.nr x1 (\\w'number'/2)\n.nr x2 (\\w'frequency'/2)\n.nr x3 (\\w'bandwidth'/2)\n\t\\0\\h'-\\n(x1u'number\t\\0\\0\\h'-\\n(x2u'frequency\t\\0\\0\\h'-\\n(x3u'bandwidth\n.nr x2 (\\w'(Hz)'/2)\n\t\t\\0\\h'-\\n(x2u'(Hz)\t\\0\\0\\h'-\\n(x2u'(Hz)\n\\l'\\n(x0u\\(ul'\n.sp\n\t\\01\t\\0240\t\\0120\n\t\\02\t\\0360\t\\0120\n\t\\03\t\\0480\t\\0120\n\t\\04\t\\0600\t\\0120\n\t\\05\t\\0720\t\\0120\n\t\\06\t\\0840\t\\0120\n\t\\07\t1000\t\\0150\n\t\\08\t1150\t\\0150\n\t\\09\t1300\t\\0150\n\t10\t1450\t\\0150\n\t11\t1600\t\\0150\n\t12\t1800\t\\0200\n\t13\t2000\t\\0200\n\t14\t2200\t\\0200\n\t15\t2400\t\\0200\n\t16\t2700\t\\0200\n\t17\t3000\t\\0300\n\t18\t3300\t\\0300\n\t19\t3750\t\\0500\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 4.1  Filter specifications for a vocoder analyser (after Holmes, 1980)\"\n.[\nHolmes 1980 JSRU channel vocoder\n.]\nThe 3\\ dB points\nof adjacent filters are halfway between their centre frequencies, so that there\nis some overlap between bands.\nThe filter characteristics do not need to have very sharp edges, because the energy\nin neighbouring bands is fairly highly correlated.  Indeed, there is a\ndisadvantage in making them too sharp, because the phase delays associated\nwith sharp cutoff filters induce \"smearing\" of the spectrum in the time domain.\nThis particular channel vocoder uses second-order Butterworth bandpass filters.\n.pp\nFor regenerating speech stored in this way, an excitation of unit impulses\nat the specified pitch period (for voiced sounds) or white noise (for unvoiced\nsounds) is produced and passed through a bank of bandpass filters similar\nto the analysis ones.  The excitation has a flat spectrum, for regular impulses\nhave harmonics at multiples of the repetition frequency which are all of the\nsame size, and so the spectrum of the output signal is completely determined\nby the filter bank.  The gain of each filter is controlled by the stored\nmagnitude of the spectrum at that frequency.\n.pp\nThe frequency spectrum and voicing pitch of speech change at much slower rates\nthan the time waveform.  The changes are due to movements of the articulatory\norgans (tongue, lips, etc) in the speaker, and so are limited in their speed\nby physical constraints.  A typical rate of production of phonemes is 15 per\nsecond, but in fact the spectrum can change quite a lot within a single\nphoneme (especially a stop sound).\nBetween 10 and 25\\ msec (100\\ Hz and 40\\ Hz)\nis generally thought to be a satisfactory interval for transmitting or storing\nthe spectrum, to preserve a reasonably faithful representation of the speech.\nOf course, the entire spectrum, as well as the source characteristics, must\nbe stored at this rate.\nThe channel vocoder described by Holmes (1980) uses 48 bits to encode\nthe information.\n.[\nHolmes 1980 JSRU channel vocoder\n.]\nRepeated every 20\\ msec, this gives a data rate of 2400\\ bit/s \\(em very\nconsiderably less than any of the time-domain encoding techniques.\n.pp\nIt needs some care to encode the output of 19 filters, the excitation type,\nand the pitch into 48 bits of information.  Holmes uses 6 bits for pitch,\nlogarithmically encoded,\nand one bit for excitation type.\nThis leaves 41 bits to encode the output of the 19 filters, and so a differential\ntechnique is used which transmits just the difference between adjacent\nchannels \\(em for the spectrum does not change abruptly in the frequency domain.\nThree bits are used for the absolute level in channel 1, and two bits\nfor each channel-to-channel difference, giving a total of 39 bits for the whole\nspectrum.  The remaining two bits per frame are reserved for signalling or\nmonitoring purposes.\n.pp\nA 2400 bit/s channel vocoder degrades the speech in a telephone channel quite\nperceptibly.  It is sufficient for interactive communication, where\nif you do not understand something you can always ask for it to be repeated.\nIt is probably not good enough for most voice response applications.\nHowever, the vocoder principle can be used with larger filter banks and much\nhigher bit rates, and still reduce the data rate substantially below that\nrequired by log PCM.\n.sh \"4.2  Pre-emphasis\"\n.pp\nThere is an\noverall \\-6\\ dB/octave trend in speech radiated from the lips,\nas frequency increases.\nWe will discuss why this is so in the next chapter.\nNotice that this trend means that the signal power is reduced\nby a factor of 4, or the signal amplitude by a factor of 16, for each\ndoubling in frequency.\nFor vocoders, and indeed for other methods of spectral analysis of speech,\nit is usually desirable to equalize this by a +6\\ dB/octave lift prior to\nprocessing, so that the channel outputs occupy a similar range of levels.\nOn regeneration, the output speech is passed through an inverse filter which\nprovides 6\\ dB/octave of attenuation.\n.pp\nFor a digital system, such pre-emphasis\ncan either be implemented as an analogue circuit which precedes the presampling\nfilter and digitizer, or as a digital operation on the sampled and quantized\nsignal.  In the former case, the characteristic is usually flat up to a certain\nbreakpoint, which occurs somewhere between 100\\ Hz and 1\\ kHz \\(em the exact\nposition does not seem to be critical \\(em at which point the +6\\ dB/octave lift\nbegins.  Although de-emphasis on output ought to have an exactly inverse\ncharacteristic, it is sometimes modified or even eliminated altogether in an\nattempt to counteract approximately\nthe  $sin( pi f/f sub s )/( pi f/f sub s )$  distortion\nintroduced by the desampling operation, which was discussed in an earlier\nsection.  Above half the sampling frequency, the characteristic of the\npre-emphasis is irrelevant because any effect will be suppressed by the presampling\nfilter.\n.pp\nThe effect of a 6\\ dB/octave lift can also be achieved digitally, by differencing\nthe input.  The operation\n.LB\n.EQ\ny(n)~~ = ~~ x(n)~ -~ ax(n-1)\n.EN\n.LE\nis suitable, where the constant parameter $a$ is usually chosen between 0.9 and 1.\nThe latter value gives straightforward differencing, and this amounts to\ncreating a DPCM signal as input to the spectral analysis.  Figure 4.2 plots\nthe frequency response of this operation, with a sample frequency of 8\\ kHz,\nfor two values of the parameter; together with that of a 6\\ dB/octave lift\nabove 100\\ Hz.\n.FC \"Figure 4.2\"\nThe vertical positions of the plots have been adjusted to give\nthe same gain, 20\\ dB, at 1\\ kHz.\nThe difference at 3.4\\ kHz, the upper end of the telephone spectrum, is just\nover 2\\ dB.  At frequencies below the breakpoint, in this case 100\\ Hz, the\ndifference between analogue and digital pre-emphasis can be very great.  For\n$a=0.9$ the attenuation at DC (zero frequency) is 18\\ dB below that at 1\\ kHz,\nwhich happens to be close to that of the analogue filter for frequencies below the\nbreakpoint.  However, if the breakpoint had been at 1\\ kHz there would have been\n20\\ dB difference between the analogue and $a=0.9$ plots at DC.  And of course\nthe $a=1$ characteristic has infinite attenuation at DC.\nIn practice, however, the exact form of the pre-emphasis does not seem to be at all\ncritical.\n.pp\nThe above remarks apply only to voiced speech.  For unvoiced speech there appears\nto be no real need for pre-emphasis; indeed, it may do harm by reinforcing\nthe already large high-frequency components.  There is a case for altering the\nparameter $a$ according to the excitation mode of the speech:  $a=1$ for voiced\nexcitation and $a=0$ for unvoiced gives pre-emphasis just when it is needed.\nThis can be achieved by expressing the parameter in terms of the autocorrelation\nof the incoming signal, as\n.LB\n.EQ\na ~~ = ~~ R(1) over R(0) ~ ,\n.EN\n.LE\nwhere $R(1)$ is the correlation of the signal with itself delayed by one sample,\nand $R(0)$ is the correlation without delay (that is, the signal variance).\nThis is reasonable intuitively because high sample-to-sample correlation\nis to be expected in voiced speech, so that $R(1)$ is very nearly as great as\n$R(0)$ and the ratio becomes 1; whereas little or no sample-to-sample correlation\nwill be present in unvoiced speech, making the ratio close to 0.  Such a\nscheme is reminiscent of ADPCM with adaptive prediction.\n.pp\nHowever, this sophisticated pre-emphasis method does not seem to be worthwhile\nin practice.  Usually the breakpoint in an analogue pre-emphasis filter is\nchosen to be rather greater than 100\\ Hz to limit the amplification of fricative\nenergy.  In fact, the channel vocoder described by Holmes (1980) has the\nbreakpoint at 1\\ kHz, limiting the gain to 12\\ dB at 4\\ kHz, two octaves above.\n.[\nHolmes 1980 JSRU channel vocoder\n.]\n.sh \"4.3  Digital signal analysis\"\n.pp\nYou may be wondering how the frequency response for the digital pre-emphasis\nfilters, displayed in Figure 4.2, can be calculated.  Suppose a digitized\nsinusoid is applied as input to the filter\n.LB\n.EQ\ny(n) ~~ = ~~ x(n)~ - ~ax(n-1).\n.EN\n.LE\nA sine wave of frequency $f$ has equation  $x(t) ~ = ~ sin ~ 2 pi ft$, and when\nsampled at $t=0,~ T,~ 2T,~ ...$ (where $T$ is the sampling interval, 125\\ msec for\nan 8\\ kHz sample rate), this becomes  $x(n) ~ = ~ sin ~ 2 pi fnT.$  It is much\nmore convenient to consider a complex exponential\ninput,  $e sup { j2 pi fnT}$  \\(em the response to a sinusoid can then be derived\nby taking imaginary parts, if necessary.  The output for this input is\n.LB\n.EQ\ny(n) ~~ = ~~ e sup {j2 pi fnT} ~~-~ae sup {j2 pi f(n-1)T} ~~ = ~~\n(1~-~ae sup {-j2 pi fT} )~e sup {j2 pi fnT} ,\n.EN\n.LE\na sinusoid at the same frequency as the input.  The\nfactor  $1~-~ae sup {-j2 pi fT}$  is complex, with both amplitude and phase\ncomponents.  Thus the output will be a phase-shifted and amplified version\nof the input.  The amplitude response at frequency $f$ is therefore\n.LB\n.EQ\n|1~ - ~ ae sup {-j2 pi fT} | ~~ = ~~\n[1~ +~ a sup 2 ~-~ 2a~cos~2 pi fT ] sup 1/2 ,\n.EN\n.LE\nor\n.LB\n.EQ\n10 ~ log sub 10 (1~ +~ a sup 2 ~ - ~ 2a~ cos 2 pi fT)\n.EN\ndB.\n.LE\nNormalizing to 20\\ dB at 1\\ kHz, and assuming 8\\ kHz sampling, yields\n.LB\n.EQ\n20~ + ~~ 10~ log sub 10 (1~ +~ a sup 2 ~-~ 2a~ cos ~ { pi f} over 4000 )\n~~ -~ 10~ log sub 10 (1~ +~ a sup 2 ~-~ 2a~ cos ~ pi over 4 )\n.EN\ndB.\n.LE\nWith $a=0.9$ and 1 this gives the graphs of Figure 4.2.\n.pp\nFrequency responses for analogue filters are often plotted with a logarithmic\nfrequency scale, as well as a logarithmic amplitude one, to bring out the\nasymptotes in dB/octave as straight lines.  For digital filters the response\nis usually drawn on a\n.ul\nlinear\nfrequency axis extending to half the sampling frequency.  The response is\nsymmetric about this point.\n.pp\nAnalyses like the above are usually expressed in terms of the $z$-transform.\nDenote the unit delay operation by $z sup -1$.  The choice of the inverse rather\nthan $z$ itself is of course an arbitrary matter, but the convention has stuck.\nThen the filter can be characterized\nby Figure 4.3, which signifies that the output is the input minus a delayed\nand scaled version of itself.\n.FC \"Figure 4.3\"\nThe transfer function of the filter is\n.LB\n.EQ\nH(z) ~~ = ~~ 1~ -~ az sup -1 ,\n.EN\n.LE\nand we have seen that the effect of the system on a (complex) exponential of\nfrequency $f$ is to multiply it by\n.LB\n.EQ\n1~ -~ ae sup {-j2 pi fT}.\n.EN\n.LE\nTo get the frequency response from the transfer function, replace $z sup -1$\nby $e sup {-j2 pi fT}$.  Amplitude and phase responses can then be found by\ntaking the modulus and angle of the complex frequency response.\n.pp\nIf $z sup -1$ is treated as an\n.ul\noperator,\nit is quite in order to summarize the action of the filter by\n.LB\n.EQ\ny(n) ~~ = ~~ x(n)~ - ~az sup -1 x(n) ~~ = ~~ (1~ -~ az sup -1 )x(n).\n.EN\n.LE\nHowever, it is usual to derive from the sequence $x(n)$ a\n.ul\ntransform\n$X(z)$ upon which $z sup -1$ acts as a\n.ul\nmultiplier.\nIf the transform of $x(n)$ is defined as\n.LB\n.EQ\nX(z) ~~ = ~~ sum from {n=- infinity} to infinity ~x(n) z sup -n ,\n.EN\n.LE\nthen on multiplication by $z sup -1$ we get a new transform, say $V(z)$:\n.LB\n.EQ\nV(z) ~~ = ~~ z sup -1 X(z) ~~ =\n~~ z sup -1 sum from {n=- infinity} to infinity ~x(n) z sup -n ~~ =\n~~ sum ~x(n)z sup -n-1 ~~ =\n~~ sum ~x(n-1)z sup -n .\n.EN\n.LE\n$V(z)$ can also be expressed as the transform of a new sequence, say $v(n)$, by\n.LB\n.EQ\nV(z) ~~ = ~~ sum from {n=- infinity} to infinity ~v(n) z sup -n ,\n.EN\n.LE\nfrom which it becomes apparent that\n.LB\n.EQ\nv(n) ~~ = ~~ x(n-1).\n.EN\n.LE\nThus $v(n)$ is a delayed version of $x(n)$, and we have accomplished what we\nset out to do, namely to show that the delay\n.ul\noperator\n$z sup -1$ can be treated as an ordinary\n.ul\nmultiplier\nin the $z$-transform domain, where $z$-transforms are defined as the infinite\nsums given above.\n.pp\nIn terms of $z$-transforms, the filter can be written\n.LB\n.EQ\nY(z) ~~ = ~~ (1~ -~ az sup -1 )X(z),\n.EN\n.LE\nwhere $z sup -1$ is now treated as a multiplier.\nThe transfer function of the filter is\n.LB\n.EQ\nH(z) ~~ = ~~ Y(z) over X(z) ~~ = ~~ 1 - az sup -1 ,\n.EN\n.LE\nthe ratio of the output to the input transform.\n.pp\nIt may seem that little has been gained by inventing this rather abstract\nnotion of transform, simply to change an operator to a multiplier.  After\nall, the equation of the filter is no simpler in the transform domain than\nit was in the time domain using $z sup -1$ as an operator.  However, we will\nneed to go on to examine more complex filters.  Consider, for example, the\ntransfer function\n.LB\n.EQ\nH(z) ~~ = ~~ {1~+~az sup -1 ~+~bz sup -2} over {1~+~cz sup -1 ~+~dz sup -2} ~ .\n.EN\n.LE\nIf $z sup -1$ is treated as an operator, it is not immediately obvious how\nthis transfer function can be realized by a time-domain recurrence relation.\nHowever, with $z sup -1$ as an ordinary multiplier in the transform domain, we can\nmake purely mechanical manipulations with infinite sums to see what the transfer\nfunction means as a recurrence relation.\n.pp\nIt is worth noting the similarity between the $z$-transform in the discrete\ndomain and the Fourier and Laplace transforms in the continuous domains.\nIn fact, the $z$-transform plays an analogous role in digital signal processing\nto the Laplace transform in continuous theory, for the delay operator\n$z sup -1$\nperforms a similar service to the differentiation operator $s$.\nRecall first the continuous Fourier transform,\n.LB\n$\nG(f) ~~ = ~~\nintegral from {- infinity} to infinity ~g(t)~e sup {-j2 pi ft} dt\n$,    where $f$ is real,\n.LE\nand the Laplace transform,\n.LB\n$\nF(s) ~~ = ~~\nintegral from 0 to infinity ~f(t)~e sup -st dt\n$,    where $s$ is complex.\n.LE\nThe main difference between these two transforms is that the range of integration\nbegins at -$infinity$ for the Fourier transform and at 0 for the Laplace.\nAdvocates of the Fourier transform, which typically include people involved with\ntelecommunications, enjoy the freedom from initial conditions which is bestowed\nby an origin way back in the mists of time.  Advocates of Laplace, including\nmost analogue filter theorists, invariably\nconsider systems where all is quiet before $t=0$ \\(em altering the origin\nof measurement of time to achieve this if necessary \\(em and welcome the opportunity\nto include initial conditions explicitly\n.ul\nwithout\nhaving to worry about what happens in the mists of time.\nAlthough there is a two-sided Laplace transform where the integration begins\nat -$infinity$, it is not generally used because it causes some convergence\ncomplications.  Ignoring this difference between the transforms (by considering\nsignals which are zero when $t<0$), the Fourier spectrum can be found from the\nLaplace transform by writing  $s=j2 pi f$; that is, by considering values\nof $s$ which lie on the imaginary axis.\n.pp\nThe $z$-transform is\n.LB\n$\nH(z) ~~ = ~~ sum from n=0 to infinity ~h(n)~z sup -n\n$,    or    $\nH(z) ~~ = ~~ sum from {n=- infinity} to infinity ~h(n)~z sup -n ,\n$\n.LE\ndepending on whether a one-sided or two-sided transform is used.  The advantages\nand disadvantages of one- and two-sided transforms are the same as in the\nanalogue case.\n$z$ plays the role of $e sup sT $, and so it is not surprising that the response\nto a (sampled) sinusoid input can be found by setting\n.LB\n.EQ\nz ~~ = ~~ e sup {j2 pi fT}\n.EN\n.LE\nin $H(z)$, as we proved explicitly above for the pre-emphasis filter.\n.pp\nThe above relation between $z$ and $f$ means that real-valued frequencies correspond\nto points where $|z|=1$, that is, the unit circle in the complex $z$-plane.\nAs you travel anticlockwise around this unit circle, starting from the\npoint $z=1$, the corresponding frequency increases from 0, to $1/2T$ half-way\nround ($z=-1$), to $1/T$ when you get back to the beginning ($z=1$) again.\nFrequencies greater than the sampling frequency are aliased back into the\nsampling band, corresponding to further circuits of $|z|=1$ with frequency\ngoing from $1/T$ to $2/T$, $2/T$ to $3/T$, and so on.  In fact, this is the circle\nof Figure 3.3 which was used earlier to explain how sampling affects the frequency\nspectrum!\n.sh \"4.4  Discrete Fourier transform\"\n.pp\nLet us return from this brief digression into techniques of digital signal\nanalysis to the problem of determining the frequency spectrum of speech.\nAlthough a bank of bandpass filters such as is used in the channel vocoder\nis the perhaps most straightforward way to obtain a frequency spectrum,\nthere are other techniques which are in fact more commonly used in digital speech\nprocessing.\n.pp\nIt is possible to define the Fourier transform of a discrete sequence of\npoints.  To motivate the definition, consider first the\nordinary Fourier transform (FT), which is\n.LB\n$\ng(t) ~~ = ~~\nintegral from {- infinity} to infinity ~G(f)~e sup {+j2 pi ft} df\n~~~~~~~~~~~~~~~~\nG(f) ~~ = ~~\nintegral from {- infinity} to infinity ~g(t)~e sup {-j2 pi ft} dt .\n$\n.LE\nThis takes a continuous time domain into a continuous frequency domain.\nSometimes you see a normalizing factor $1/2 pi$ multiplying the integral in\neither the forward or the reverse transform.  This is only needed\nwhen the frequency variable is expressed in radians/s, and we will find it\nmore convenient to express frequencies in\\ Hz.\n.pp\nThe Fourier series (FS), which should also be familiar to you,\noperates on a periodic time waveform (or, equivalently,\none that only exists for a finite period of time, which is notionally extended\nperiodically).  If a period lies in the time range $[0,b)$, then the transform is\n.LB\n$\ng(t) ~~ = ~~\nsum from {r = - infinity} to infinity ~G(r)~e sup {+j2 pi rt/b}\n~~~~~~~~~~~~~~~~\nG(r) ~~ = ~~ 1 over b ~ integral from 0 to b ~g(t)~e sup {-j2 pi rt/b} dt .\n$\n.LE\nThe Fourier series takes a periodic time-domain function into a discrete frequency-domain one.\nBecause of the basic duality between the time and frequency domains in the\nFourier transforms, it is not surprising that another version of the transform\ncan be defined which takes a periodic\n.ul\nfrequency\\c\n-domain function into a\ndiscrete\n.ul\ntime\\c\n-domain one.\n.pp\nFourier transforms can only deal with a finite stretch of a time signal\nby assuming that the signal is periodic, for if $g(t)$ is evaluated from\nits transform $G(r)$ according to the formula above, and $t$ is chosen outside\nthe interval $[0,b)$, then a periodic extension of the function $g(t)$ is obtained\nautomatically.\nFurthermore, periodicity in one domain implies discreteness in the other.\nHence if we transform a\n.ul\nfinite\nstretch of a\n.ul\ndiscrete\ntime waveform,\nwe get a frequency-domain representation which is also finite (or, equivalently,\nperiodic), and discrete.\nThis is the discrete Fourier transform (DFT),\nand takes a discrete periodic time-domain function into a discrete\nperiodic frequency-domain one as illustrated in Figure 4.4.\n.FC \"Figure 4.4\"\nIt is defined by\n.LB\n$\ng(n) ~~ = ~~\n1 over N ~ sum from r=0 to N-1~G(r)~e sup { + j2 pi rn/N}\n~~~~~~~~~~~~~~~~\nG(r) ~~ = ~~ sum from n=0 to N-1 ~g(n)~e sup { - j2 pi rn/N} ,\n$\n.LE\nor, writing  $W=e sup {-j2 pi /N}$,\n.LB\n$\ng(n) ~~ = ~~\n1 over N ~ sum from r=0 to N-1~G(r)~W sup -rn\n~~~~~~~~~~~~~~~~\nG(r) ~~ = ~~ sum from n=0 to N-1 ~g(n)~W sup rn .\n$\n.LE\n.sp\nThe $1/N$ in the first equation is the same normalizing\nfactor as the $1/b$ in the Fourier series,\nfor the finite time domain is $[0,N)$\nin the discrete case and $[0,b)$ in the Fourier series case.\nIt does not matter\nwhether it is written into the forward or the reverse transform, but it is usually\nplaced as shown above as a matter of convention.\n.pp\nAs illustrated by Figure 4.5, discrete Fourier transforms\ntake an input of $N$ real values, representing equally-spaced time samples\nin the interval $[0,b)$, and produce as output $N$ complex values, representing\nequally-spaced frequency samples in the interval $[0,N/b)$.\n.FC \"Figure 4.5\"\nNote that the end-point of this frequency interval is the sampling frequency.\nIt seems odd that the input is real and the output is the same number of\n.ul\ncomplex\nquantities:  we seem to be getting some numbers for nothing!\nHowever, this isn't so, for it is easy to show that if the input sequence is\nreal, the output frequency\nspectrum has a symmetry about its mid-point (half the sampling frequency).\nThis can be expressed as\n.LB\nDFT symmetry:\\0\\0\\0\\0\\0\\0 $\n~ mark G( half N +r) ~=~ G( half N -r) sup *$  if $g$ is real-valued,\n.LE\nwhere $*$ denotes the conjugate of a complex quantity\n(that is, $(a+jb) sup * = a-jb$).\n.pp\nIt was argued above that the frequency spectrum in the DFT is periodic, with\nthe spectrum from 0 to the sampling frequency being repeated regularly up and\ndown the frequency axis.  It can easily be seen from the DFT equation that\nthis is so.  It can be written\n.LB\nDFT periodicity:$ lineup G(N+r) ~=~ G(r)$  always.\n.LE\nFigure 4.6 illustrates the properties of symmetry and periodicity.\n.FC \"Figure 4.6\"\n.sh \"4.5  Estimating the frequency spectrum of speech using the DFT\"\n.pp\nSpeech signals are not exactly periodic.  Although the waveform in a particular\npitch period will usually resemble those in the preceding and following pitch\nperiods, it will certainly not be identical to them.\nAs the articulation of the speech changes, the formant positions will alter.\nAs we saw in Chapter 2, the pitch itself is certainly not constant.\nHence the fundamental assumption of the DFT, that the waveform is periodic,\nis not really justified.  However, the signal is quasi-periodic, for changes\nfrom period to period will not usually be very great.  One way of computing\nthe short-term frequency spectrum of speech is to use\n.ul\npitch-synchronous\nFourier transformation, where single pitch periods are isolated from the\nwaveform and processed with the DFT.  This gives a rather accurate estimate\nof the spectrum.  Unfortunately, it is difficult to determine the beginning\nand end of each pitch cycle, as we shall see later in this chapter when\ndiscussing pitch extraction techniques.\n.pp\nIf a finite stretch of a speech waveform is isolated and Fourier transformed,\nwithout regard to pitch of the speech, then the periodicity assumption will\nbe grossly violated.  Figure 4.7 illustrates that the effect is the same\nas\nmultiplying the signal by a rectangular\n.ul\nwindow function,\nwhich is 0 except during the period to be analysed, where it is 1.\n.FC \"Figure 4.7\"\nThe windowed sequence will almost certainly have discontinuities at its edges,\nand these will affect the resulting spectrum.  The effect can be analysed\nquite easily, but we will not do so here.  It is enough to say that the\nhigh frequencies associated with the edges of the window cause considerable\ndistortion of the spectrum.  The effect can be alleviated by\nusing a smoother window than a rectangular one,\nand several have been investigated extensively.  The commonly-used windows of\nBartlett, Blackman, and Hamming are illustrated in Figure 4.8.\n.FC \"Figure 4.8\"\n.pp\nBecause the DFT produces the same number of frequency samples, equally spaced,\nas there were points in the time waveform, there is a tradeoff between\nfrequency resolution and time resolution (for a given sampling rate).\nFor example, a 256-point transform with a sample rate of 8\\ kHz gives the 256\nequally-spaced frequency components between 0 and 8\\ kHz that are shown in Table\n4.2.\n.RF\n.nr x0 (\\w'time domain'/2)\n.nr x1 (\\w'frequency domain'/2)\n.in+1.0i\n.ta 1.0i 3.0i 4.0i\n\\h'0.5i+2n-\\n(x0u'time domain\\h'|3.5i+2n-\\n(x1u'frequency domain\n.sp\nsample\ttime\tsample\t\\h'-3n'frequency\nnumber\t\tnumber\n.nr x0 1i+\\w'00000'\n\\l'\\n(x0u\\(ul'\t\\l'\\n(x0u\\(ul'\n.sp\n\\0\\0\\00\t\\0\\0\\0\\00 $mu$sec\t\\0\\0\\00\t\\0\\0\\0\\00 Hz\n\\0\\0\\01\t\\0\\0125\t\\0\\0\\01\t\\0\\0\\031\n\\0\\0\\02\t\\0\\0250\t\\0\\0\\02\t\\0\\0\\062\n\\0\\0\\03\t\\0\\0375\t\\0\\0\\03\t\\0\\0\\094\n\\0\\0\\04\t\\0\\0500\t\\0\\0\\04\t\\0\\0125\n.nr x2 (\\w'...'/2)\n\\h'0.5i+4n-\\n(x2u'...\\h'|3.5i+4n-\\n(x2u'...\n\\h'0.5i+4n-\\n(x2u'...\\h'|3.5i+4n-\\n(x2u'...\n\\h'0.5i+4n-\\n(x2u'...\\h'|3.5i+4n-\\n(x2u'...\n.sp\n\\0254\t31750\t\\0254\t\\07938\n\\0255\t31875 $mu$sec\t\\0255\t\\07969 Hz\n\\l'\\n(x0u\\(ul'\t\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.MT 2\nTable 4.2  Time domain and frequency domain samples for a 256-point DFT,\nwith 8\\ kHz sampling\n.TE\nThe top half of the frequency spectrum is of no interest, because\nit contains the complex conjugates of the bottom half (in reverse order),\ncorresponding to frequencies greater than half the sampling frequency.\nThus for a 30\\ Hz resolution in the frequency domain,\n256 time samples, or a 32\\ msec stretch of speech, needs to be transformed.\nA common technique is to take overlapping periods in the time domain to\ngive a new frequency spectrum every 16\\ msec.  From the acoustic point\nof view this is a reasonable rate to re-compute the spectrum, for as noted\nabove when discussing channel vocoders the rate of change in the spectrum\nis limited by the speed that the speaker can move his vocal organs, and\nanything between 10 and 25\\ msec is a reasonable figure for transmitting\nor storing the spectrum.\n.pp\nThe DFT is a complex transform, and speech is a real signal.  It is possible\nto do two DFT's at once by putting one time waveform into the real parts\nof the input and another into the imaginary parts.  This destroys the DFT\nsymmetry property, for it only holds for real inputs.  But given the DFT\nof a complex sequence formed in this way, it is easy to separate out the\nDFT's of the two real time sequences.  If the two time sequences are\n$x(n)$ and $y(n)$, then the transform of the complex sequence\n.LB\n.EQ\ng(n) ~~ = ~~ x(n) ~+~ jy(n)\n.EN\n.LE\nis\n.LB\n.EQ\nG(r) ~~ = ~~ sum from n=0 to N-1 ~[x(n)W sup rn ~+~ y(n)W sup rn ] .\n.EN\n.LE\nIt follows that the complex conjugate of the aliased parts of the spectrum,\nin the upper frequency region, are\n.LB\n.EQ\nG(N-r) sup * ~~ = ~~ sum from n=0 to N-1 ~[x(n)W sup -(N-r)n\n~-~ y(n)W sup -(N-r)n ] ,\n.EN\n.LE\nand this is the same as\n.LB\n.EQ\nG(N-r) sup * ~~ = ~~ sum from n=0 to N-1 ~[x(n)W sup rn\n~-~ y(n)W sup rn ] ,\n.EN\n.LE\nbecause $W sup N$ is 1 (recall the definition of $W$),\nand so $W sup -Nn$ is 1 for any $n$.\nThus\n.LB\n.EQ\nX(r) ~~ = ~~ {G(r) ~+~ G(N-r) sup * } over 2\n~~~~~~~~~~~~~~~~\nY(r) ~~ = ~~ {G(r) ~-~ G(N-r) sup * } over 2\n.EN\n.LE\nextracts the transforms $X(r)$ and $Y(r)$ of the original sequences\n$x$ and $y$.\n.pp\nWith speech, this trick is frequently used to calculate two spectra at once.\nUsing 256-point transforms, a new estimate of the spectrum can be obtained\nevery 16\\ msec by taking overlapping 32\\ msec stretches of speech, with a\ncomputational requirement of one 256-point transform every 32\\ msec.\n.sh \"4.6  The fast Fourier transform\"\n.pp\nStraightforward calculation of the DFT, expressed as\n.LB\n.EQ\nG(r) ~~ = ~~ sum from n=0 to N-1 ~g(n)~W sup nr ,\n.EN\n.LE\nfor $r=0,~ 1,~ 2,~ ...,~ N-1$, takes $N sup 2$ operations, where each operation\nis a complex multiply and add (for $W$ is, of course, a complex number).\nThere is a better way, invented in the early sixties, which reduces this to\n$N ~ log sub 2 N$ operations \\(em a very considerable improvement.\nDubbed the \"fast Fourier transform\" (FFT) for historical reasons, it would actually\nbe better called the \"Fourier transform\", with the straightforward method above\nknown as the \"slow Fourier transform\"!  There\nis no reason nowadays to use the slow method, except for tiny transforms.\nIt is worth describing the basic principle of the FFT, for it is surprisingly\nsimple.  More details on actual implementations can be found in Brigham (1974).\n.[\nBrigham 1974\n.]\n.pp\nIt is important to realize that the FFT involves no approximation.\nIt is an\n.ul\nexact\ncalculation of the values that would be obtained by the slow method\n(although it may be affected differently by round-off errors).\nProblems of aliasing and windowing occur in all discrete Fourier transforms,\nand they are neither alleviated nor exacerbated by the FFT.\n.pp\nTo gain insight into the working of the FFT, imagine the sequence $g(n)$ split\ninto two halves, containing the even and odd points\nrespectively.\n.LB\neven half $e(n)$ is $g(0)~ g(2)~ .~ .~ .~ g(N-2)$\n.br\nodd  half $o(n)$ is $g(1)~ g(3)~ .~ .~ .~ g(N-1)$.\n.LE\nThen it is easy to show that if $G$ is the transform of $g$,\n$E$ the transform of $e$,\nand $O$ that of $o$, then\n.LB\n$\nG(r) ~~ = ~~ E(r) ~+~ W sup r O(r)$  for  $r=0,~ 1,~ ...,~ half N -1$,\n.LE\nand\n.LB\n$\nG( half N +r ) ~~ = ~~ E(r) ~+~ W sup { half N +r} O(r)$  for  $\nr = 0,~ 1,~ ...,~ half N -1$.\n.LE\nCalculation of the $E$ and $O$ transforms involves $( half N) sup 2$ operations each,\nwhile combining them together according to the above relationship occupies\n$N$ operations.  Thus the total is  $N + half N sup 2 $  operations, which is considerably\nless than $N sup 2$.\n.pp\nBut don't stop there!  The even half can itself be broken down into\neven and odd parts to expedite its calculation, and the same with the odd half.\nThe only constraint is that the number of elements in the sequences splits\nexactly into two at each stage.\nProviding $N$ is a power of 2, then, we are left at the end with some 1-point\ntransforms to do.  But transforming a single point leaves it unaffected!  (Check\nthe definition of the DFT.)  A quick calculation shows that the number of operations\nneeded is not  $N + half N sup 2$, but $N~ log sub 2 N$.\nFigure 4.9 compares this with $N sup 2$, the number of operations for\nstraightforward DFT calculation, and it can be seen that the FFT is very much\nfaster.\n.FC \"Figure 4.9\"\n.pp\nThe only restriction on the use of the FFT is that $N$ must be a power of two.\nIf it is not, alternative, more complicated, algorithms can be used which\ngive comparable computational advantages.  However, for speech processing\nthe number of samples that are transformed is usually arranged to be a power\nof two.  If a pitch synchronous analysis is undertaken, the\ntime stretch that is to be transformed is dictated by the length of the pitch\nperiod, and will vary from time to time.  Then, it is usual to pad out the\ntime waveform with zeros to bring the number of samples up to a power of two;\notherwise, if different-length time stretches were transformed the scale\nof the resulting frequency components would vary too.\n.pp\nThe FFT provides very worthwhile cost savings over the use of a bank of\nbandpass filters for spectral analysis.  Take the example of a 256-point\ntransform with 8\\ kHz sampling, giving 128 frequency components spaced\nby 31.25\\ Hz from 0 up to almost 4\\ kHz.  This can be computed on overlapping\n32\\ msec stretches of the time waveform, giving a new spectrum every 16\\ msec,\nby a single FFT calculation every 32\\ msec (putting successive pairs of\ntime stretches in the real and imaginary parts of the complex input sequence,\nas described earlier).  The FFT algorithm requires $N~ log sub 2 N$ operations,\nwhich is 2048 when $N=256$.  An additional 512 operations are required\nfor the windowing calculation.  Repeated every 32\\ msec, this gives\na rate of 80,000 operations per second.  To achieve a much lower frequency\nresolution with 20 bandpass filters, each of which are fourth-order,\nwill need a great deal more operations.  Each filter will need between 4 and 8\nmultiplications per sample, depending on its exact digital implementation.  But new\nsamples appear every 125\n.ul\nmicro\\c\nseconds, and so somewhere around a million\noperations will be required every second.\nIf we increased the frequency resolution to that obtained by the FFT, 128\nfilters would be needed, requiring between 4 and 8 million operations!\n.sh \"4.7  Formant estimation\"\n.pp\nOnce the frequency spectrum of a speech signal has been calculated, it may\nseem a simple matter to estimate the positions of the formants.  But it is\nnot!  Spectra obtained in practice are not usually like the idealized ones\nof Figure 2.2.  One reason for this is that, unless the analysis is\npitch-synchronous, the frequency spectrum of the excitation source is mixed\nin with that of the vocal tract filter.  There are other reasons, which will\nbe discussed later in this section.  But first, let us consider how to\nextract the vocal tract filter characteristics from the combined spectrum\nof source and filter.  To do so we must begin to explore the theory of linear\nsystems.\n.rh \"Discrete linear systems.\"\nFigure 4.10 shows an input signal exciting a filter to produce an output\nsignal.\n.FC \"Figure 4.10\"\nFor present purposes, imagine the input to be a glottal\nwaveform, the filter a vocal tract one, and the output a\nspeech signal (which is then subjected to high-frequency de-emphasis\nby radiation from the lips).\nWe will consider here\n.ul\ndiscrete\nsystems, so that the input $x(n)$ and output $y(n)$ are sampled signals,\ndefined only when $n$ is integral.  The theory is quite similar for continuous\nsystems.\n.pp\nAssume that the system is\n.ul\nlinear,\nthat is, if input $x sub 1 (n)$ produces output $y sub 1 (n)$ and\ninput $x sub 2 (n)$ produces output $y sub 2 (n)$,\nthen the sum of $x sub 1 (n)$ and\n$x sub 2 (n)$ will produce the sum of $y sub 1 (n)$ and $y sub 2 (n)$.\nIt is easy to show from this that, for any constant multiplier $a$,\nthe input $ax(n)$ will produce output $ay(n)$ \\(em it is pretty obvious\nwhen $a=2$,\nor indeed any positive integer; for then $ax(n)$ can be written as\n$x(n)+x(n)+...$ .\nAssume further that the system is\n.ul\ntime-invariant,\nthat is, if input $x(n)$\nproduces output $y(n)$ then a time-shifted version of $x$,\nsay $x(n+n sub 0 )$ for\nsome constant $n sub 0$, will produce the same output, only time-shifted; namely\n$y(n+n sub 0)$.\n.pp\nNow consider the discrete delta function $delta (n)$, which is 0 except at\n$n=0$ when it is 1.\nIf this single impulse is presented as input to the system, the output is called\nthe\n.ul\nimpulse response,\nand will be denoted by $h(n)$.\nThe fact that the system is time-invariant guarantees that the response does\nnot depend upon the particular time at which the impulse occurred, so that,\nfor example, the impulsive input $delta (n+n sub 0 )$ will produce output\n$h(n+n sub 0 )$.\nA delta-function input and corresponding impulse response are shown in Figure\n4.10.\n.pp\nThe impulse response of a linear, time-invariant system is an extremely useful\nthing to\nknow, for it can be used to calculate the output of the system for any input\nat all!  Specifically, an input signal $x(n)$ can be written\n.LB\n.EQ\nx(n)~ = ~~ sum from {k=- infinity} to infinity ~ x(k) delta (n-k) ,\n.EN\n.LE\nbecause $delta (n-k)$ is non-zero only when $k=n$, and so for any\nparticular value of $n$, the summation contains only\none non-zero term \\(em that is, $x(n)$.\nThe action of the system on each term of the sum is to produce an output\n$x(k)h(n-k)$, because $x(k)$ is just a constant, and\nthe system is linear.\nFurthermore, the complete input $x(n)$ is just the sum of such terms, and since\nthe system is linear, the output is the sum of $x(k)h(n-k)$.\nHence the response of the system to an arbitrary input is\n.LB\n.EQ\ny(n)~ = ~~ sum from {k=- infinity} to infinity ~ x(k) h(n-k) .\n.EN\n.LE\nThis is called a\n.ul\nconvolution sum,\nand is sometimes written\n.LB\n.EQ\ny(n)~ =~ x(n) ~*~ h(n).\n.EN\n.LE\n.pp\nLet's write this in terms of $z$-transforms.  The (two-sided) $z$-transform of y(n)\nis\n.LB\n.EQ\nY(z)~ = ~~ sum from {n=- infinity} to infinity ~y(n)z sup -n ~~ =\n~~ sum from n ~ sum from k ~x(k)h(n-k) ~z sup -n ,\n.EN\n.LE\nWriting $z sup -n$ as  $z sup -(n-k) z sup -k$,  and interchanging the order\nof summation, this becomes\n.LB\n.EQ\nY(z)~ mark = ~~ sum from k ~[~ sum from n ~ h(n-k)z sup -(n-k) ~]~x(k)z sup -k\n.EN\n.br\n.EQ\nlineup = ~~ sum from k ~H(z)~z sup -k ~~ = ~~ H(z)~ sum from k ~x(k)z sup\n-k ~~=~~H(z)X(z) .\n.EN\n.LE\nThus convolution in the time domain is the same as multiplication in the\n$z$-transform domain; a very important result.  Applied to the linear system of\nFigure 4.10, this means that the output $z$-transform is the input $z$-transform\nmultiplied by the $z$-transform of the system's impulse response.\n.pp\nWhat we really want to do is to relate the frequency spectrum of\nthe output to the response of the system and the spectrum of the\ninput.\nIn fact, frequency spectra are very closely connected with $z$-transforms.  A\nperiodic signal $x(n)$ which repeats every $N$ samples has DFT\n.LB\n.EQ\nsum from n=0 to N-1 ~x(n)~e sup {-j2 pi rn/N} ,\n.EN\n.LE\nand its $z$-transform is\n.LB\n.EQ\nsum from {n=- infinity} to infinity ~x(n) ~z sup -n .\n.EN\n.LE\nHence the DFT is the same as the $z$-transform of a single cycle of the signal,\nevaluated at the points  $z= e sup {j2 pi r/N}$  for $r=0,~ 1,~ ...~ ,~ N-1$.\nIn other\nwords, the frequency components are samples of the $z$-transform at $N$\nequally-spaced points around the unit circle.\nHence the frequency spectrum at the output of a linear system is the product of\nthe\ninput spectrum and the frequency response of the system itself (that is, the\ntransform of its impulse response function).\nIt should be admitted that this statement is somewhat questionable,\nbecause to get from $z$-transforms to DFT's we have assumed that\na single cycle only is transformed \\(em and the impulse response function of\na system is not necessarily periodic.  The real action of the system is\nto multiply $z$-transforms, not DFT's.  However, it is useful in imagining\nthe behaviour of the system to think in terms of products of DFT's; and in\npractice it is always these rather than $z$-transforms which are computed\nbecause of the existence of the FFT algorithm.\n.pp\nFigure 4.11 shows the frequency spectrum of a typical voiced speech signal.\n.FC \"Figure 4.11\"\nThe overall shape shows humps at the formant positions, like those in the\nidealized Figure 2.2.  However, superimposed on this is an \"oscillation\"\n(in the frequency domain!) at the pitch frequency.  This occurs because the\ntransform of the vocal tract filter has been multiplied by that of the\npitch pulse, the latter having components at harmonics of the pitch frequency.\nThe oscillation must be suppressed before the formants\ncan be estimated to any degree of accuracy.\n.pp\nOne way of eliminating the oscillation is to perform pitch-synchronous\nanalysis.\nThis removes the influence of pitch from the frequency domain by dealing with\nit in the time domain!  The snag is, of course, that it is not easy to estimate\nthe pitch frequency:  some techniques for doing so are discussed in the next\nmain section.\nAnother way is to use linear predictive analysis, which really does get rid\nof pitch information without having to estimate the pitch period first.  A\nsmooth\nfrequency spectrum can be produced using the analysis techniques described in\nChapter 6, which provides\na suitable starting-point for formant frequency estimation.\nThe third method is to remove the pitch ripple from the frequency spectrum\ndirectly.  This will be discussed in an intuitive rather than a\ntheoretical way, because linear predictive methods are becoming dominant\nin speech processing.\n.rh \"Cepstral processing of speech.\"\nSuppose the frequency spectrum of Figure 4.11 were actually a time waveform.\nTo remove the high-frequency pitch ripple is easy:  just filter it out!\nHowever,\nfiltering removes\n.ul\nadditive\nripples, whereas this is a\n.ul\nmultiplicative\nripple.  To turn multiplication into addition, take logarithms.  Then the\nprocedure would be\n.LB\n.NP\ncompute the DFT of the speech waveform (windowed, overlapped);\n.NP\ntake the logarithm of the transform;\n.NP\nfilter out the high-frequency part, corresponding to pitch ripple.\n.LE\n.pp\nFiltering is often best done using the DFT.  If the rippled waveform of Figure\n4.11 is transformed, a strong component could be expected at the ripple\nfrequency, with weaker ones at its harmonics.  These components can be\nsimply removed by setting them to zero, and inverse-transforming the result\nto give a smoothed version of the original frequency spectrum.\nA spectrum of the logarithm of a frequency spectrum is often called a\n.ul\ncepstrum\n\\(em a sort of backwards spectrum.  The horizontal axis of the cepstrum,\nhaving the dimension of time, is called \"quefrency\"!  Note that high-frequency\nsignals have low quefrencies and vice versa.  In practice,\nbecause the pitch ripple is usually well above the quefrency of interest for\nformants, the upper end of the cepstrum is often simply cut off from a fixed\nquefrency which corresponds to the maximum pitch expected.  However, identifying\nthe pitch peaks of the cepstrum has the useful byproduct of giving the pitch\nperiod of the original speech.\n.pp\nTo summarize, then, the procedure for spectral smoothing by the cepstral method\nis\n.LB\n.NP\ncompute the DFT of the speech waveform (windowed, overlapped);\n.NP\ntake the logarithm of the transform;\n.NP\ntake the DFT of this log-transform, calling it the cepstrum;\n.NP\nidentify the lowest-quefrency peak in the spectrum as the pitch,\nconfirming it by examining its harmonics, which should be\nequally spaced at the pitch quefrency;\n.NP\nremove pitch effects from the cepstrum by cutting off its high-quefrency\npart above either the pitch quefrency or some constant representing the maximum\nexpected pitch (which is the minimum expected pitch quefrency);\n.NP\ninverse DFT the resulting cepstrum to give a smoothed spectrum.\n.LE\n.rh \"Estimating formant frequencies from smoothed spectra.\"\nThe difficulties of formant extraction are not over even when a smooth frequency\nspectrum has been obtained.  A simple peak-picking algorithm which identifies\na peak at the $k$'th frequency component whenever\n.LB\n$\nX(k-1) ~<~ X(k)\n$  and  $\nX(k) ~>~ X(k+1)\n$\n.LE\nwill quite often identify formants incorrectly.\nIt helps to specify in advance minimum and maximum formant frequencies \\(em say\n100\\ Hz and 3\\ kHz for three-formant identification, and ignore peaks lying\noutside these limits.  It helps to estimate\nthe bandwidth of the peaks and reject those with bandwidths greater than\n500\\ Hz \\(em for real formants are never this wide.  However, if two formants are\nvery close, then they may appear as a single, wide, peak and be rejected by\nthis criterion.  It is usual to take account of formant positions identified\nin previous frames under these conditions.\n.pp\nMarkel and Gray (1976) describe in detail several estimation algorithms.\n.[\nMarkel Gray 1976 Linear prediction of speech\n.]\nTheir simplest uses the number of peaks identified in the raw spectrum\n(under 3\\ kHz, and with\nbandwidths greater than 500\\ Hz), to determine what to do.  If exactly three\npeaks are found, they are used as the formant positions.  It is claimed that\nthis happens about 85% to 90% of the time.\nIf only one peak is found, the present frame is ignored and the\npreviously-identified\nformant positions are used (this happens less than 1% of the time).\nThe remaining cases are two peaks \\(em corresponding to omission of one formant \\(em\nand four peaks \\(em corresponding to an extra formant being included.  (More\nthan\nfour peaks never occurred in their data.)  Under these conditions,\na nearest-neighbour measure is used for disambiguation.  The measure is\n.LB\n.EQ\nv sub ij ~ = ~ |{ F sup * } sub i (k) ~-~ F sub j (k-1)| ,\n.EN\n.LE\nwhere $F sub j sup (k-1)$ is the $j$'th formant frequency defined\nin the previous frame\n$k-1$ and ${ F sup * } sub i (k)$ is the $i$'th raw data frequency estimate\nfor frame $k$.\nIf two peaks only are found, this measure is used to identify\nthe closest peaks in the previous frame; and then the\nthird peak of that frame is taken to be the missing formant\nposition.  If four peaks are found, the measure is used to\ndetermine which of them is furthest from the previous formant\nvalues, and this one is discarded.\n.pp\nThis procedure works forwards, using the previous frame to\ndisambiguate peaks given in the current one.  More sophisticated\nalgorithms work backwards as well, identifying\n.ul\nanchor points\nin the data which have clearly-defined formant positions, and\nmoving in both directions from these to disambiguate\nneighbouring frames of data.  Finally, absolute limits can be\nimposed upon the magnitude of formant movements between frames\nto give an overall smoothing to the formant tracks.\n.pp\nVery often, people will refine the result of such automatic formant\nestimation procedures by hand, looking at the tracks, knowing\nwhat was said, and making adjustments in the light of their\nexperience of how formants move in speech.  Unfortunately, it is difficult to\nobtain high-quality formant tracks by completely automatic\nmeans.\n.pp\nOne of the most difficult cases in formant estimation is where\ntwo formants are so close together that the individual peaks\ncannot be resolved.  One simple solution to this problem is to\nemploy \"analysis-by-synthesis\", whereby once a formant is\nidentified, a standard formant shape at this position is\nsynthesized and\nsubtracted from the\nlogarithmic spectrum (Coker, 1963).\n.[\nCoker 1963\n.]\nThen, even if two formants\nare right on top of each other, the second is not missed because\nit remains after the first one has been subtracted.\n.pp\nUnfortunately, however, the single peak which appears when\ntwo formants are close together usually does not correspond exactly with the\nposition of either one.\nThere is one rather advanced signal-processing technique that\ncan help in this case.\nThe frequency spectrum of\nspeech is determined by\n.ul\npoles\nwhich lie in the complex $z$-plane inside the unit circle.  (They\nmust be inside the unit circle if the system is stable.  Those\nfamiliar with Laplace analysis of analogue systems may like to note that the\nleft half of the $s$-plane corresponds with the inside of the unit\ncircle in the $z$-plane.)  As shown earlier, computing a DFT is tantamount to\nevaluating the $z$-transform at equally-spaced points around the\nunit circle.  However, better resolution is obtained by\nevaluating around a circle which lies\n.ul\ninside\nthe unit circle, but\n.ul\noutside\nthe outermost pole position.  Such a circle is sketched in\nFigure 4.12.\n.FC \"Figure 4.12\"\n.pp\nRecall that the FFT is a fast way of calculating the DFT of a\nsequence.  Is there a similarly fast way of evaluating the\n$z$-transform inside the unit circle?  The answer is yes, and the\ntechnique is known as the \"chirp $z$-transform\", because it\ninvolves considering a signal whose frequency increases\nlinearly \\(em just like a radar chirp signal.  The chirp method\nallows the $z$-transform to be computed quickly at equally-spaced\npoints along spirally-shaped contours around the origin of the\n$z$-plane \\(em corresponding to signals of linearly increasing\ncomplex frequency.  The spiral nature of these curves is not of\nparticular interest in speech processing.  What\n.ul\nis\nof interest, though, is that the spiral can begin at any point\non\nthe $z=0$ axis, and its pitch can be set arbitrarily.\nIf we begin spiralling at $z=0.9$, say, and set the pitch\nto zero, the contour becomes a circle inside the unit one, with\nradius 0.9.  Such a circle is exactly what is needed to refine\nformant resolution.\n.sh \"4.8  Pitch extraction\"\n.pp\nThe last section discussed how to characterize the vocal tract filter\nin the source-filter model of speech production:  this one looks\nat how the most important property of the source \\(em that is, the\npitch period \\(em can be derived.  In many ways pitch extraction\nis more important from a practical point of view than is formant\nestimation.  In a voice-output system, formant estimation is\nonly necessary if speech is to be stored in formant-coded form.\nFor linear predictive storage of speech, or for speech synthesis\nfrom phonetics or text, formant extraction is unnecessary \\(em\nalthough of course general information about formant\nfrequencies and formant tracks in natural speech is needed\nbefore a synthesis-from-phonetics system can be built.\nHowever, knowledge of the pitch contour is needed for\nmany different purposes.  For example, compact encoding of\nlinearly predicted speech relies on the pitch being estimated and\nstored as a parameter separate from the articulation.\nSignificant improvements in frequency analysis can be made by\nperforming pitch-synchronous Fourier transformations,\nbecause the need to window is eliminated.\nMany synthesis-from-phonetics systems require the pitch contour\nfor utterances to be stored rather computed from markers in the\nphonetic text.\n.pp\nAnother issue which is closely bound up with pitch extraction is\nthe voiced-unvoiced distinction.   A good pitch estimator ought to\nfail when presented with aperiodic input such as an unvoiced\nsound, and so give a reliable indication of whether the frame of\nspeech is voiced or not.\n.pp\nOne method of pitch estimation, which uses the cepstrum, has been outlined\nabove.  It involves a substantial amount of computation,\nand has a high degree of complexity.  However, if implemented\nproperly it gives excellent results, because the source-filter\nstructure of the speech is fully utilized.\nAnother method, using the\nlinear prediction residual, will be described in Chapter 6.\nAgain, this requires a great deal of computation of a fairly sophisticated\nnature, and gives good results \\(em although it relies on a\nsomewhat more\nrestricted version of the source-filter model than cepstral\nanalysis.\n.rh \"Autocorrelation methods.\"\nThe most reliable way of estimating the pitch of a periodic\nsignal which is corrupted by noise is to examine its\nshort-time autocorrelation function.\nThe autocorrelation of a signal $x(n)$ with lag $k$ is defined as\n.LB\n.EQ\nphi (k) ~~ = ~~ sum from {n=- infinity} to infinity ~ x(n)x(n+k) .\n.EN\n.LE\nIf the signal is quasi-periodic, with slowly varying period,\na finite stretch of it can be isolated with a window\n$w(i)$, which is 0 when $i$ is outside the range $[0,N)$.\nBeginning this window at sample $m$ gives the windowed signal\n.LB\n.EQ\nx(n)w(n-m),\n.EN\n.LE\nwhose autocorrelation,\nthe\n.ul\nshort-time\nautocorrelation of the signal $x$ at point $m$ is\n.LB\n.EQ\nphi sub m (k)~ = ~~ sum from n ~ x(n)w(n-m)x(n+k)w(n-m+k) .\n.EN\n.LE\n.pp\nThe autocorrelation function exhibits peaks at lags which correspond to\nthe pitch periods and multiples of it.  At such lags, the signal is in\nphase with a delayed version of itself, giving high correlation.\nThe pitch of natural speech ranges about three octaves, from 50\\ Hz (low-pitched men) to around\n400\\ Hz (children).  To ensure that at least two pitch cycles are seen, even at\nthe\nlow end, the window needs to be at least 40\\ msec long, and the autocorrelation\nfunction calculated for lags up to 20\\ msec.  The peaks which occur at lags\ncorresponding to multiples of the pitch become smaller as the multiple\nincreases, because the speech waveform will change slightly and the pitch\nperiod is not perfectly constant.  If signals at the high end of the pitch\nrange, 400\\ Hz, are\nviewed through a 40\\ msec autocorrelation window, considerable smearing of\npitch resolution in the time domain is to be expected.  Finally, for unvoiced\nspeech, no substantial peaks of autocorrelation will occur.\n.pp\nIf all deviations from perfect periodicity can be attributed to\nadditive, white, Gaussian noise, then it can be shown from\nstandard detection theory that autocorrelation methods are\nappropriate for pitch identification.  Unfortunately, this is\ncertainly not the case for speech signals.  Although the\nshort-time autocorrelation of voiced speech exhibits peaks at\nmultiples of the pitch period, it is not clear that it is any\neasier to detect these peaks in the autocorrelation function\nthan it is in the original time waveform!  To take a simple\nexample, if a signal contains a fundamental and in-phase first\nand second harmonics,\n.LB\n.EQ\nx(n)~ =~ a sin 2 pi fnT ~+~ b sin 4 pi fnT ~+~ c sin 6 pi fnT ,\n.EN\n.LE\nthen its autocorrelation function is\n.LB\n.EQ\nphi (k) ~=~~ {a sup 2 ~cos~2 pi fkT~+~b sup 2 ~cos~2 pi\nfkT~+~c sup 2 ~cos 2 pi fkT} over 2 ~ .\n.EN\n.LE\nThere is no reason to believe that detection of the fundamental\nperiod of this signal will be any easier in the autocorrelation\ndomain than in the time domain.\n.pp\nThe most common error of pitch detection by autocorrelation\nanalysis is that the periodicities of the formants are confused\nwith the pitch.  This typically leads to the repetition time\nbeing identified as  $T sub pitch ~ +- ~ T sub formant1$,  where the\n$T$'s are the periods of the pitch and first formant.  Fortunately,\nthere are simple ways of processing the signal non-linearly to\nreduce the effect of formants on pitch estimation using autocorrelation.\n.pp\nOne way\nis to low-pass filter the\nsignal with a cut-off above the maximum pitch period, say 600\nHz.  However, formant 1 is often below this value.  A different\ntechnique, which may be used in conjunction with filtering, is\nto \"centre-clip\" the signal as shown in Figure 4.13.\n.FC \"Figure 4.13\"\nThis\nremoves many of\nthe ripples which are associated with formants.  However, it\nentails the use of an adjustable clipping threshold to cater for\nspeech of varying amplitudes.  Sondhi (1968), who introduced the\ntechnique, set the clipping level at 30% of the maximum\namplitude.\n.[\nSondhi 1968\n.]\nAn alternative which achieves\nmuch the same effect without the need to fiddle with thresholds,\nis to cube the signal, or raise it to some other high (odd!)\npower, before taking the autocorrelation.  This highlights the\npeaks and suppresses the effect of low-amplitude parts.\n.pp\nFor very accurate pitch detection, it is best to combine the evidence\nfrom several different methods of analysis of the time waveform.\nThe autocorrelation function provides one source of evidence;\nand the cepstrum provides another.\nA third source comes from the time waveform itself.\nMcGonegal\n.ul\net al\n(1975) have described a semi-automatic method of pitch\ndetection which uses human judgement to make a final decision based upon these\nthree sources of evidence.\n.[\nMcGonegal Rabiner Rosenberg 1975 SAPD\n.]\nThis appears to provide highly accurate pitch contours at the expense of\nconsiderable human effort \\(em it takes an experienced user 30 minutes to\nprocess each second of speech.\n.rh \"Speeding up autocorrelation.\"\nCalculating the autocorrelation function is an\narithmetic-intensive procedure.  For large lags, it can best be\ndone using FFT methods; although there are simpler arithmetic\ntricks which speed it up without going to such complexity.\nHowever, with the availability of analogue delay lines using\ncharge-coupled devices, autocorrelation can now be done\neffectively and cheaply by analogue, sampled-data, hardware.\n.pp\nNevertheless, some techniques to speed up digital\ncalculation of short-time autocorrelations are in wide use.  It\nis tempting to hard-limit the signal so that it becomes binary\n(Figure 4.14(a)), thus eliminating multiplication.\n.FC \"Figure 4.14\"\nThis can be\ndisastrous, however, because hard-limited speech is known to\nretain considerable intelligibility and therefore the formant\nstructure is still there.  A better plan is to take\ncentre-clipped speech and hard-limit that to a ternary signal\n(Figure 4.14(b)).  This simplifies the computation considerably\nwith essentially no degradation in performance (Dubnowski\n.ul\net al,\n1976).\n.[\nDubnowski Schafer Rabiner 1976 Digital hardware pitch detector\n.]\n.pp\nA different approach to reducing the amount of calculation is to\nperform a kind of autocorrelation which does not use\nmultiplications.  The\n\"average magnitude difference function\",\nwhich is defined by\n.LB\n.EQ\nd(k)~ = ~~ sum from {n=- infinity} to infinity ~ |x(n)-x(n+k)| ,\n.EN\n.LE\nhas been used for this purpose with some success (Ross\n.ul\net al,\n1974).\n.[\nRoss Schafer Cohen Freuberg Manley 1974\n.]\nIt exhibits dips at pitch periods (instead of the peaks of the\nautocorrelation function).\n.rh \"Feature-extraction methods.\"\nAnother possible way of extracting pitch in the time domain is to try to\nintegrate information from different sources to give reliable\npitch estimates.  Several features of the time\nwaveform can be defined, each of which provides an estimate of the pitch period,\nand\nan overall estimate can be obtained by majority vote.\n.pp\nFor example, suppose that the only feature of the speech\nwaveform which is retained is the height and position of the\npeaks, where a \"peak\" is defined by the simplistic criterion\n.LB\n$\nx(n-1) ~<~ x(n)\n$  and  $\nx(n) $>$ x(n+1) .\n$\n.LE\nHaving found a peak which is thought to represent a pitch pulse,\none could define a \"blanking period\", based upon the current\npitch estimate, within which the next pitch pulse could not\noccur.  When this period has expired, the next pitch pulse is\nsought.  At first, a stringent criterion should be used for\nidentifying the next peak as a pitch pulse; but it can gradually be\nrelaxed if time goes on without a suitable pulse being\nlocated.  Figure 4.15 shows a convenient way of doing this:  a\ndecaying exponential is begun at the end of the blanking period\nand when a peak shows above, it is identified as a pitch pulse.\n.FC \"Figure 4.15\"\nOne big advantage of this type of algorithm is that the data is\ngreatly reduced by considering peaks only \\(em which can be\ndetected by simple hardware.  Thus it can permit real-time\noperation on a small processor with minimal special-purpose\nhardware.\n.pp\nSuch a pitch pulse detector is exceedingly simplistic, and will\noften identify the pitch incorrectly.  However, it can be used\nin conjunction with other features to produce good pitch\nestimates.  Gold and Rabiner (1969), who pioneered the\napproach, used six features:\n.[\nGold Rabiner 1969 Parallel processing techniques for pitch periods\n.]\n.LB\n.NP\npeak height\n.NP\nvalley depth\n.NP\nvalley-to-peak height\n.NP\npeak-to-valley depth\n.NP\npeak-to-peak height (if greater than 0)\n.NP\nvalley-to-valley depth (if greater than 0).\n.LE\nThe features are symmetric with regard to peaks and valleys.\nThe first feature is the one described above, and the second one works in\nexactly the same way.\nThe third feature records the\nheight between each valley and the succeeding peak, and fourth\nuses the depth between each peak and the succeeding valley.  The\npurpose of the final two detectors is to eliminate secondary,\nbut rather large, peaks from consideration.  Figure 4.16 shows\nthe kind of waveform on which the other features might\nincorrectly double the pitch, but the last two features identify\ncorrectly.\n.FC \"Figure 4.16\"\n.pp\nGold and Rabiner also included the last two pitch estimates from each\nfeature detector.\nFurthermore, for each feature, the present estimate\nwas added to the previous one to make a fourth, and the previous one to\nthe one before that to make a fifth, and all three were added together\nto make a sixth; so that for each feature there were 6 separate estimates of\npitch.  The reason for this is that if three consecutive estimates of the\nfundamental period are $T sub 0$, $T sub 1$ and $T sub 2$; then if some peaks are\nbeing falsely identified, the actual period could be any of\n.LB\n.EQ\nT sub 0 ~+~ T sub 1 ~~~~ T sub 1 ~+~ T sub 2 ~~~~\nT sub 0 ~+~ T sub 1 ~+~ T sub 2 .\n.EN\n.LE\nIt is essential to do this, because\na feature of a given type can occur more than once in a pitch period \\(em\nsecondary peaks usually exist.\n.pp\nSix features, each contributing six separate estimates, makes 36 estimates\nof pitch in all.\nAn overall figure was obtained from this\nset by selecting the most popular estimate (within some\npre-specified tolerance).  The complete scheme has been\nevaluated extensively (Rabiner\n.ul\net al,\n1976) and compares\nfavourably with other methods.\n.[\nRabiner Cheng Rosenberg McGonegal 1976\n.]\n.pp\nHowever, it must be admitted that this procedure seems to be rather\n.ul\nad hoc\n(as are many other successful speech parameter estimation\nalgorithms!).  Specifically, it is not easy to predict what\nkinds of waveforms it will fail on, and evaluation of it can\nonly be pragmatic.  When used to\nestimate the pitch of musical\ninstruments and singers over a 6-octave range (40\\ Hz to 2.5\\ kHz),\ninstances were found where it failed dramatically (Tucker and Bates, 1978).\n.[\nTucker Bates 1978\n.]\nThis is, of\ncourse, a much more difficult problem than pitch estimation for\nspeech, where the range is typically 3 octaves.\nIn fact, for speech the feature\ndetectors are usually preceded by\na low-pass filter to attenuate the myriad\nof peaks\ncaused by higher formants, and this\nis inappropriate for\nmusical applications.\n.pp\nThere is evidence which shows that additional features can\nassist with pitch identification.  The above features are all\nbased upon the signal amplitude, and could be described as\n.ul\nsecondary\nfeatures derived from a single\n.ul\nprimary\nfeature.  Other primary features can easily be defined.\nTucker and Bates (1978) used a centre-clipped waveform, and considered only\nthe peaks rising above the central region.\n.[\nTucker Bates 1978\n.]\nThey defined two\nfurther primary features, in addition to the peak amplitude:  the\n.ul\ntime width\nof a peak (period for which it is\noutside the clipping level), and its\n.ul\nenergy\n(again, outside the clipping level).  The primary\nfeatures are shown in Figure 4.17.\n.FC \"Figure 4.17\"\nSecondary features are\ndefined, based on these three primary ones, and pitch estimates\nare made for each one.  A further innovation was to combine the\nindividual estimates on a way which is based upon\nautocorrelation analysis, reducing to some degree the\n.ul\nad-hocery\nof the pitch detection process.\n.sh \"4.9  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"4.10  Further reading\"\n.pp\nThere are a lot of books on digital signal analysis, although in general\nI find them rather turgid and difficult to read.\n.LB \"nn\"\n.\\\"Ackroyd-1973-1\n.]-\n.ds [A Ackroyd, M.H.\n.ds [D 1973\n.ds [T Digital filters\n.ds [I Butterworths\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nHere is the exception to prove the rule.\nThis book\n.ul\nis\neasy to read.\nIt provides a good introduction to digital signal processing,\ntogether with a wealth of practical design information on digital filters.\n.in-2n\n.\\\"Committee.I.D.S.P-1979-3\n.]-\n.ds [A IEEE Digital Signal Processing Committee\n.ds [D 1979\n.ds [T Programs for digital signal processing\n.ds [I Wiley\n.ds [C New York\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is a remarkable collection of tried and tested Fortran programs\nfor digital signal analysis.\nThey are all available from the IEEE in machine-readable form on magnetic\ntape.\nIncluded are programs for digital filter design, discrete Fourier transformation,\nand cepstral analysis, as well as others (like linear predictive analysis;\nsee Chapter 6).\nEach program is accompanied by a concise, well-written description of how\nit works, with references to the relevant literature.\n.in-2n\n.\\\"Oppenheim-1975-4\n.]-\n.ds [A Oppenheim, A.V.\n.as [A \" and Schafer, R.W.\n.ds [D 1975\n.ds [T Digital signal processing\n.ds [I Prentice Hall\n.ds [C Englewood Cliffs, New Jersey\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is one of the standard texts on most aspects of digital signal processing.\nIt treats the $z$-transform, digital filters, and discrete Fourier transformation\nin far more detail than we have been able to here.\n.in-2n\n.\\\"Rabiner-1975-5\n.]-\n.ds [A Rabiner, L.R.\n.as [A \" and Gold, B.\n.ds [D 1975\n.ds [T Theory and application of digital signal processing\n.ds [I Prentice Hall\n.ds [C Englewood Cliffs, New Jersey\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is the other standard text on digital signal processing.\nIt covers the same ground as Oppenheim and Schafer (1975) above,\nbut with a slightly faster (and consequently more difficult) presentation.\nIt also contains major sections on special-purpose hardware for\ndigital signal processing.\n.in-2n\n.\\\"Rabiner-1978-1\n.]-\n.ds [A Rabiner, L.R.\n.as [A \" and Schafer, R.W.\n.ds [D 1978\n.ds [T Digital processing of speech signals\n.ds [I Prentice Hall\n.ds [C Englewood Cliffs, New Jersey\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nProbably the best single reference for digital speech analysis,\nas it is for the time-domain encoding techniques of the last chapter.\nUnlike the books cited above, it is specifically oriented to speech processing.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"5  RESONANCE SPEECH SYNTHESIZERS\"\n.ds RT \"Resonance speech synthesizers\n.ds CX \"Principles of computer speech\n.pp\nThis chapter considers the design of speech synthesizers which\nimplement a direct electrical analogue of\nthe resonance properties of the vocal tract by providing a filter for each\nformant whose resonant frequency is to be controlled.  Another method is the\nchannel vocoder, with a bank of fixed filters whose gains are varied to match\nthe spectrum of the speech as described in Chapter 4.  This is not generally\nused for synthesis from a written representation, however, because it is hard\nto get good quality speech.  It\n.ul\nis\nused sometimes for low-bandwidth\ntransmission and storage, for\nit is fairly easy to analyse natural speech into fixed frequency bands.\nA second alternative to the resonance synthesizer is the linear predictive\nsynthesizer, which at present is used quite extensively and is likely to become\neven more popular.  This is covered in the next chapter.\nAnother alternative is the articulatory synthesizer, which\nattempts to model the vocal tract directly, rather than\nmodelling the acoustic output from it.\nAlthough, as noted in Chapter 2, articulatory synthesis holds a promise of\nhigh-quality speech \\(em for the coarticulation effects caused by tongue\nand jaw inertia can be modelled directly \\(em this has not yet been realized.\n.pp\nThe source-filter model of speech production indicates that an electrical\nanalogue of the vocal tract can be obtained by considering the source\nexcitation and the filter that produces the formant frequencies separately.\nThis approach was pioneered by Fant (1960), and we shall present much of his\nwork in this chapter.\n.[\nFant 1960 Acoustic theory of speech production\n.]\nThere has been some discussion over whether the source-filter model really\nis a good one, and some\nsynthesizers\nexplicitly introduce an element of\n\"sub-glottal coupling\", which simulates the effect of the lung cavity\non the vocal tract transfer function during the periods when the glottis is\nopen (for an example see Rabiner, 1968).\n.[\nRabiner 1968 Digital formant synthesizer JASA\n.]\nHowever, this is very much a low-order effect when considering\nspeech synthesized by rule from a written representation, for the software\nwhich calculates parameter values to drive the synthesizer is a far greater\nsource of degradation in speech quality.\n.sh \"5.1  Overall spectral considerations\"\n.pp\nFigure 5.1 shows the source-filter model of speech production.\n.FC \"Figure 5.1\"\nFor voiced speech, the excitation source produces a waveform whose frequency\ncomponents decay at about 12\\ dB/octave, as we shall see in a later section.\nThe excitation passes into the vocal tract filter.  Conceptually, this can best\nbe viewed as an infinite series of formant filters, although for implementation\npurposes only the first few are modelled explicitly and the effect of the rest\nis lumped together into a higher-formant compensation network.  In either case\nthe overall frequency profile of the filter is a flat one, upon which humps are\nsuperimposed at the various formant frequencies.  Thus the output of the\nvocal tract filter falls off at 12\\ dB/octave just as the input does.\nHowever, measurements of actual speech show a 6\\ dB/octave decay with increasing\nfrequency.  This is explained by the effect of radiation of speech from the\nlips, which in fact has a \"differentiating\" action, producing a 6\\ dB/octave\nrise in the frequency spectrum.  This 6\\ dB/octave lift is similar to that\nprovided by a treble boost control on a radio or amplifier.  Speech synthesized\nwithout it sounds unnaturally heavy and bassy.\n.pp\nThese overall spectral shapes, which are derived from considering the human\nvocal tract, are summarized in the upper annotations in Figure 5.1.  But there\nis no real necessity for a synthesizer to model the frequency characteristics\nof the human vocal tract at intermediate points:  only the output speech is of\nany concern.  Because the system is a linear one, the filter blocks in the\nfigure can be shuffled around to suit engineering requirements.  One such\nrequirement is the desire to minimize internally-generated noise in the\nelectrical implementation, most of which will arise in the vocal tract filter\n(because it is much more complicated than the other components).  For this\nreason an excitation source with a flat spectrum is often preferred, as shown\nin the lower annotations.  This can be generated either by taking the desired\nglottal pulse shape, with its 12\\ dB/octave fall-off, and passing it through a\nfilter giving 12\\ dB/octave lift at higher frequencies; or, if the pulse shape\nis to be stored digitally, by storing its second derivative instead.\nThen the radiation compensation, which is now more properly called\n\"spectral equalization\", will comprise a 6\\ dB/octave fall-off to give the\nrequired trend in the output spectrum.\n.pp\nFor a given pitch period, this scheme yields exactly the same spectral\ncharacteristics as the original system which modelled the human vocal tract.\nHowever, when the pitch varies there will be a difference, for sounds with\nhigher excitation frequencies will be attenuated by \\-6\\ dB/octave in the new\nsystem and +6\\ dB/octave in the old by the final spectral equalization.\nIn practice, the pitch of the human voice lies quite low in the frequency\nregion \\(em usually below 400\\ Hz \\(em and if all filter characteristics begin\ntheir roll-off at this frequency the two systems will be the same.  This\nsimplifies the implementation with a slight compromise in its accuracy in\nmodelling the spectral trend of human speech, for the overall \\-6\\ dB/octave\ndecay actually begins at a frequency of around 100\\ Hz.  If this is\nimplemented, some adjustment will need to be made to the amplitudes to ensure\nthat high-pitched sounds are not attenuated unduly.\n.pp\nThe discussion so far pertains to voiced speech only.  The source spectrum of\nthe random excitation in unvoiced sounds is substantially flat, and combines\nwith the radiation from the lips to give a +6\\ dB/octave rise in the output\nspectrum.  Hence if spectral equalization is changed to \\-6\\ dB/octave to\naccomodate a voiced excitation with flat spectrum, the noise source should\nshow a 12\\ dB/octave rise to give the correct overall effect.\n.sh \"5.2  The excitation sources\"\n.pp\nIn human speech, the excitation source for voiced sounds is produced by two\nflaps of skin called the \"vocal cords\".  These are blown apart by pressure from\nthe lungs.  When they come apart the pressure is relieved, and the muscles\ntensioning the skin cause the flaps to come together again.  Subsequently, the\nlung pressure \\(em called \"sub-glottal pressure\" \\(em builds up once more and the\nprocess is repeated.  The factors which influence the rate and nature of\nvibration are muscular tension of the cords and the sub-glottal pressure.  The detail\nof the excitation has considerable importance to speech synthesis because it\ngreatly influences the apparent naturalness of the sound produced.  For example,\nif you have inflamed vocal cords caused by laryngitis the sound quality\nchanges dramatically.  Old people who do not have proper muscular control over\ntheir vocal cord tension produce a quavering sound.  Shouted speech can easily\nbe distinguished from quiet speech even when the volume cue is absent \\(em you\ncan verify this by fiddling with the volume control of a tape recorder \\(em because\nwhen shouting, the vocal cords stay apart for a much smaller fraction of the\npitch cycle than at normal volumes.\n.rh \"Voiced excitation in natural speech.\"\nThere are two basic ways to examine the shape of the excitation source in\npeople.  One is to use a dentist's mirror and high-speed photography to observe\nthe vocal cords directly.  Although it seems a lot to ask someone to speak\nnaturally with a mirror stuck down the back of his throat, the method has been\nused and photographs can be found, for example, in Flanagan (1972).\n.[\nFlanagan 1972 Speech analysis synthesis and perception\n.]\nThe second\ntechnique is to process the acoustic waveform digitally, identifying the\nformant positions and deducting the formant contributions from the waveform by\nfiltering.  This leaves the basic excitation waveform, which can then be\ndisplayed.  Such techniques lead to excitation shapes like those sketched in\nFigure 5.2, in which the gradual opening and abrupt closure of the vocal cords\ncan easily be seen.\n.FC \"Figure 5.2\"\n.pp\nIt is a fact that if a periodic function has one or more discontinuities, its frequency\nspectrum will decay at sufficiently high frequencies at the rate of 6\\ dB/octave.\nFor example, the components of the square wave\n.LB\n$\ng(t) ~~ = ~~ mark 0\n$  for $\n0 <= t < h\n$\n.br\n$\nlineup 1\n$  for $\nh <= t < b\n$\n.LE\ncan be calculated from the Fourier series\n.LB\n.EQ\nG(r) ~~ = ~~ 1 over b ~ integral from 0 to b ~g(t)~e sup {-j2 pi rt/b} ~dt\n~~ = ~~ j over {2 pi r} ~e sup {-j2 pi rh/b} ,\n.EN\n.LE\nso $|G(r)|$ is proportional to $1/r$, and the change in one octave is\n.LB\n.EQ\n20~log sub 10 ~ |G(2r)| over |G(r)|\n~~=~~20~log sub 10 ~ 1 over 2\n~~ = ~ \n.EN\n\\-6\\ dB.\n.LE\nHowever, if the discontinuities are ones of slope only, then the asymptotic decay\nat high frequencies is 12\\ dB/octave.  Thus the glottal excitation of Figure 5.2\nwill decay at this rate.\nNote that it is not the\n.ul\nnumber\nbut the\n.ul\ntype\nof discontinuities which are important in determining the asymptotic spectral\ntrend.\n.rh \"Voiced excitation in synthetic speech.\"\nThere are several ways that glottal excitation can be simulated in a synthesizer,\nfour of which are shown in Figure 5.3.\n.FC \"Figure 5.3\"\nThe square pulse and the sawtooth pulse\nboth exhibit discontinuities, and so will have the wrong asymptotic rate of\ndecay (6\\ dB/octave instead of 12\\ dB/octave).  A better bet is the triangular\npulse.  This has the correct decay, for there are only discontinuities of slope.\nHowever, although the asymptotic rate of decay is of first importance, the fine\nstructure of the frequency spectrum at the lower end is also significant, and\nthe fact that there are two discontinuities of slope instead of just one in the\nnatural waveform means that the spectra cannot match closely.\n.pp\nRosenberg (1971) has investigated several different shapes using listening\ntests, and he found that the polynomial approximation sketched in Figure 5.3\nwas preferred by listeners.\n.[\nRosenberg 1971\n.]\nThis has one slope discontinuity, and comprises\nthree sections:\n.LB\n$g(t) ~~ = ~~ 0$  for $0 <= t < t sub 1$    (flat during the period of closure)\n.sp\n$g(t) ~~ = ~~ A~ u sup 2 (3 - 2u) $,\twhere\n$u ~=~ {t-t sub 1} over {t sub 2 -t sub 1} $ ,    for\n$t sub 1 <= t < t sub 2$  (opening phase)\n.sp\n.sp\n$g(t) ~~ = ~~ A~ (1 - v sup 2 )$,\twhere\n$v ~=~ {t-t sub 2} over {b-t sub 2} $ ,    for\n$t sub 2 <= t < b$    (closing phase).\n.LE\nIt is easy to see that the joins between the first and second section, and\nbetween the second and third section, are smooth; but that the slope of the third\nsection at the end of the cycle when $t=b$ is\n.LB\n.EQ\ndg over dt ~~ = ~~ -~ 2A.\n.EN\n.LE\n$A$ is the maximum amplitude of the pulse, and is reached when $t=t sub 2$.\n.pp\nA much simpler glottal pulse shape to implement is the filtered impulse.\nPassing an impulse through a filter with characteristic\n.LB\n.EQ\n1 over {(1+sT) sup 2}\n.EN\n.LE\nimparts a 12\\ dB/octave decay after frequency $1/T$.  This gives a pulse shape of\n.LB\n.EQ\ng(t) ~~ = ~~ A~ t over T ~e sup {1-t/T} ,\n.EN\n.LE\nwhich is sketched in Figure 5.4.\n.FC \"Figure 5.4\"\nThe pulse is the wrong way round in time\nwhen compared with the desired one; but this is not important under most\nlistening conditions because phase differences are not noticeable (this\npoint is discussed further below).\nThe maximum is reached when $t=T$ and has\nheight $A$.  The value zero is never actually attained, for the decay to it\nis asymptotic, and if the slight discontinuity between pulses shown in the\nFigure is left, the asymptotic rate of decay of the frequency spectrum will\nbe 6\\ dB/octave rather than 12\\ dB/octave.  However, in a real implementation\ninvolving filtering an impulse there will be no such discontinuity, for the\nnext pulse will start off where the last one ended.\n.pp\nThis seems to be an attractive scheme because of its simplicity,\nand indeed is sometimes used in speech synthesis.  However, it does not have\nthe right properties when the pitch is varied, for in real glottal\nwaveforms the maximum occurs at a fixed\n.ul\nfraction\nof the period, whereas the filtered impulse's maximum is at a fixed time, $T$.\nIf $T$ is chosen to make the system correct at high pitch frequencies (say\n400\\ Hz), then the pulse will be much too narrow at low pitches and sound rather\nharsh.  The only solution is to vary the filter parameters with the pitch,\nleading to complexity again.\n.pp\nHolmes (1973) has made an extensive study of the effect of the glottal\nwaveshape on the naturalness of high-quality synthesized speech.\n.[\nHolmes 1973 Influence of glottal waveform on naturalness\n.]\nHe employed a rather special speech synthesizer, which provides far more\ncomprehensive and sophisticated control than most.  It was driven by parameters\nwhich were extracted from natural utterances by hand \\(em but the process of\ngenerating and tuning them took many months of a skilled person's time.\nBy using the pulse shape\nextracted from the natural utterance, he found that synthetic and natural\nversions could actually be made indistinguishable to most people, even under high-quality\nlistening conditions using headphones.  Performance dropped quite drastically\nwhen one of Rosenberg's pulse shapes, similar to the three-section one given\nabove, was used.  Holmes also investigated phase effects and found that whilst\ndifferent pulse shapes with identical frequency spectra could easily be\ndistinguished when listening over headphones, there was no perceptible difference\nif the listener was placed at a comfortable distance from a loudspeaker in\na room.  This is attributable to the fact that the room itself imposes a\ncomplex modification to the phase characteristics of the speech signal.\n.pp\nAlthough a great deal of care must be taken with the glottal pulse shape for very\nhigh-quality synthetic speech, for speech synthesized by rule from a written\nrepresentation the degradation which stems from incorrect control of the\nsynthesizer parameters is much greater than that caused by using a slightly\ninferior glottal pulse.  The triangular pulse illustrated in Figure 5.3\nhas been found quite satisfactory for speech synthesis by rule.\n.rh \"Unvoiced excitation.\"\nSpeech quality is much less sensitive to the characteristics of the unvoiced\nexcitation.  Broadband white noise will serve admirably.  It is quite\nacceptable to generate this digitally, using a pseudo-random feedback shift\nregister.  This gives a bit sequence whose autocorrelation is zero except at\nmultiples of the repetition length.  The repetition length\ncan easily be made as long as the number of states in the shift\nregister (less one) \\(em in this case, the configuration is called\n\"maximal length\" (Gaines, 1969).\n.[\nGaines 1969 Stochastic computing advances in information science\n.]\nFor example, an 18-bit maximal-length shift register will repeat\nevery $2 sup 18 -1$ cycles.  If the bit-stream is used as a source of analogue\nnoise, the autocorrelation function will have triangular parts whose width is\ntwice the clock period, as shown in Figure 5.5.\n.FC \"Figure 5.5\"\nAccording to a well-known\nresult (the Weiner-Kinchine theorem; see for example Chirlian, 1973)\nthe power density of the frequency\nspectrum is the same as the Fourier transform of the autocorrelation function.\n.[\nChirlian 1973\n.]\nSince the feedback shift register gives a periodic autocorrelation function,\nits transform is a Fourier series.  The $r$'th frequency component is\n.LB\n.EQ\nG(r) ~~ = ~~ {R sup 2} over {4 pi sup 2 r sup 2 T}\n~(1~-~~cos~{{2 pi rT} over R}) ~ .\n.EN\n.LE\nHere, $T$ is the clock period and  $R=(2 sup N -1)T$  is the repetition time of\nan $N$-bit shift register.\n.pp\nThe spectrum is a bar spectrum, with components spaced\nat\n.LB\n$\n{1 over R}~~=~~{1 over {(2 sup N -1)T}}$   Hz.\n.LE\nThese are very close together \\(em with $N=18$ and\nsampling at 20\\ kHz (50\\ $mu$sec)\nthe spacing becomes under 0.1\\ Hz \\(em and so it is reasonable to treat the\nspectrum as continuous, with\n.LB\n.EQ\nG(f) ~~ = ~~ 1 over {4 pi sup 2 f sup 2 T}~~(1~-~cos 2 pi fT) .\n.EN\n.LE\nThis spectrum is sketched in Figure 5.6(a), and the measured result of an actual\nimplementation in Figure 5.6(b).\n.FC \"Figure 5.6\"\nThe 3\\ dB point occurs when\n.LB\n.EQ\n{G(f) over G(0)} ~~=~~{1 over 2} ~ ,\n.EN\n.LE\nand $G(0)$ is $T/2$.  Hence, at the 3\\ dB point,\n.LB\n.EQ\n{1~-~cos 2 pi fT} over {2 pi sup 2 f sup 2 T sup 2}\n~~ = ~~ 1 over 2 ~ ,\n.EN\n.LE\nwhich has solution  $f=0.45/T$.\nThus a pseudo-random shift register generates\nnoise whose spectrum is substantially flat up to half the clock frequency.\nAnything over 10\\ kHz is therefore a suitable clocking rate for speech-quality\nnoise.  Choose 20\\ kHz to err on the conservative side.  If the repetition occurs\nin less than 3 or 4 seconds, it can be heard quite clearly; but above this figure\nit is not noticeable.  An 18-bit shift register clocked at 20\\ kHz repeats\nevery  $(2 sup 18 -1)/20000 ~ = ~ 13$ seconds, which is more than adequate.\n.sh \"5.3  Simulating vocal tract resonances\"\n.pp\nThe vocal tract, from glottis to lips, can be modelled as an unconstricted\ntube of varying cross-section with no side branches and no sub-glottal coupling.\nThis has an all-pole transfer function, which can be written in the form\n.LB\n.EQ\nH(s) ~~ = ~~\n{w sub 1 sup 2} over {s sup 2 ~+~ b sub 1 s ~+~ w sub 1 sup 2}\n~.~{w sub 2 sup 2} over {s sup 2 ~+~ b sub 2 s ~+~ w sub 2 sup 2} ~~ .~ .~ .\n.EN\n.LE\nThere is an unspecified (conceptually infinite) number of terms in the\nproduct.  Each of them produces a peak in the energy spectrum,\nand these are the formants we observed in Chapter 2.\n.pp\nFormants appear even in an over-simplified\nmodel of the tract as a tube of uniform cross-section, with a sound source\nat one end (the larynx) and open at the other (the lips).\nThis extremely crude model was discussed in Chapter 2, and surprisingly,\nperhaps, it gives a good approximation to the observed formant frequencies\nfor a neutral, relaxed vowel such as that in\n.ul\n\"a\\c\nbove\".\n.pp\nSpeech is made by varying the postures of the various organs of the vocal tract.\nDifferent vowels, for example, result largely from different tongue positions\nand lip postures.  Naturally, such physical changes alter the frequencies of the\nresonances, and successful automatic speech synthesis depends upon\nsuccessful movement of the formants.  Fortunately, only the first three or\nfour resonances need to be altered even for extremely realistic synthesis, and\nvirtually all existing synthesizers provide control over these formants only.\n.rh \"Analysis of a single formant.\"\nEach formant is modelled as a second-order resonance, with transfer function\n.LB\n.EQ\nH(s) ~~ = ~~ {w sub c sup 2} over {s sup 2 ~+~ b s ~+~ w sub c sup 2} ~ .\n.EN\n.LE\nAs will be shown below, $w sub c$ is the nominal resonant frequency in\nradians/s, and $b$ is the\napproximate 3\\ dB bandwidth of the resonance.  The term $w sub c sup 2$ in the\nnumerator adjusts the gain to be unity at DC ($s=0$).\n.pp\nTo calculate the frequency response of the formant, write  $s=jw$.  Then the\nenergy spectrum is\n.LB\n.EQ\n|H(jw)| sup 2 ~~ mark = ~~\n{w sub c sup 4} over {(w sup 2 - w sub c sup 2 ) sup 2 ~+~ b sup 2 w sup 2}\n.EN\n.sp\n.sp\n.EQ\nlineup = ~~\n{w sub c sup 4} over\n{[w sup 2 ~-~(w sub c sup 2 -~ {b sup 2} over 2 )] sup 2 ~~\n+~~b sup 2 (w sub c sup 2~-~{{b sup 2} over 4})} ~ .\n.EN\n.sp\n.LE\nThis reaches a maximum when the squared term in the denominator of the second\nexpression is zero, namely when  $w=(w sub c sup 2 ~-~ b sup 2 /2) sup 1/2$.\nHowever,\nformant bandwidths are low compared with their centre frequencies, and so to\na good approximation the peak occurs\nat  $w=w sub c$  and is of amplitude  $w sub c /b$,  that\nis,  $10~log sub 10 w sub c /b$\\ dB above the DC gain.\nAt frequencies higher than the peak the energy falls off as $1/w sup 4$,\na factor of 1/16 for each doubling\nin frequency, and so the asymptotic decay is 12\\ dB/octave.\n.pp\nAt the points which are 3\\ dB below the peak,\n.LB\n.EQ\n|H(jw sub 3dB )| sup 2 ~~ = ~~\n1 over 2 ~|H(jw sub max )| sup 2 ~~ = ~~\n1 over 2 ~ times ~ {w sub c sup 2} over {b sup 2} ~ ,\n.EN\n.LE\nand it is easy to show that\nthis is satisfied by  $w sub 3dB ~ = ~ w sub c ~ +- ~ b/2$  to a\ngood approximation (neglecting higher powers of $b/w sub c )$.  Figure 5.7\nsummarizes the shape of an individual formant resonance.\n.FC \"Figure 5.7\"\n.pp\nThe bandwidth of a formant is fairly constant, regardless of the formant\nfrequency.  This makes the formant filter a slightly unusual one:  most\nengineering applications which use variable-frequency resonances require\nthe bandwidth to be a constant proportion of the resonant\nfrequency \\(em the ratio\n$w sub c /b$, often called the \"$Q$\" of the filter, is to be constant.\nFor formants, we wish the Q to increase linearly with resonant frequency.\nSince the amplitude gain of the formant at resonance is $w sub c /b$,\nthis peak gain increases as the formant frequency is increased.\n.pp\nAlthough it is easy to measure formant frequencies on a spectrogram\n(cf Chapter 2),\nit is not so easy to measure bandwidths accurately.  One rather unusual method\nwas reported by van den Berg (1955), who took a subject who had had a partial\nlaryngectomy, an operation which left an opening into the vocal tract near\nthe larynx position.  Into this he inserted a sound source and made a\nswept-frequency calibration of the vocal tract!\n.[\nBerg van den 1955\n.]\nAlmost as bizarre is a\ntechnique which involves setting off a spark inside the mouth of a subject\nas he holds his articulators in a given position.\n.pp\nThe results of several different kinds of experiment are reported by Dunn (1961),\nand are summarized in Table 5.1, along with the formant frequency ranges.\n.[\nDunn 1961\n.]\n.RF\n.in+0.5i\n.ta 1.7i +2.5i\n.nr x1 (\\w'range of formant'/2)\n.nr x2 (\\w'range of bandwidths'/2)\n\t\\h'-\\n(x1u'range of formant\t\\h'-\\n(x2u'range of bandwidths\n.nr x1 (\\w'frequencies (Hz)'/2)\n.nr x2 (\\w'as measured in different'/2)\n\t\\h'-\\n(x1u'frequencies (Hz)\t\\h'-\\n(x2u'as measured in different\n.nr x1 (\\w'experiments (Hz)'/2)\n\t\t\\h'-\\n(x1u'experiments (Hz)\n.nr x1 (\\w'0000 \\- 0000'/2)\n.nr x2 (\\w'000 \\- 000'/2)\n.nr x0 2.5i+(\\w'range of formant'/2)+(\\w'as measured in different'/2)\n.nr x3 (\\w'range of formant'/2)\n\t\\h'-\\n(x3u'\\l'\\n(x0u\\(ul'\n.sp\nformant 1\t\\h'-\\n(x1u'\\0100 \\- 1100\t\\h'-\\n(x2u'\\045 \\- 130\nformant 2\t\\h'-\\n(x1u'\\0500 \\- 2500\t\\h'-\\n(x2u'\\050 \\- 190\nformant 3\t\\h'-\\n(x1u'1500 \\- 3500\t\\h'-\\n(x2u'\\070 \\- 260\n\t\\h'-\\n(x3u'\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in-0.5i\n.MT 2\nTable 5.1  Different estimates of formant bandwidths, with range of\nformant frequencies for reference\n.TE\nNote that the bandwidths really are narrow compared with the resonant frequencies\nof the filters, except at the lower end of the formant 1 range.  Choosing the\nlowest bandwidth estimate leads to an amplification factor at resonance of 50 for formant 2\nwhen its frequency is at the top of its range; and formant 3 happens to give\nthe same value.\n.rh \"Series synthesizers.\"\nThe simplest realization of the vocal tract filter is a chain of formant\nfilters in series, as illustrated in Figure 5.8.\n.FC \"Figure 5.8\"\nThis leads to particular difficulties if the frequencies of two formants\nstray close together.  The worst case occurs if formants 2 and 3 have the\nsame resonant frequencies, at the top of the range of formant 2, namely 2500\\ Hz.\nIn this case, and if the bandwidths of the formants are set to the lowest\nestimates, a combined amplification factor\nof  $(2500/50) times (2500/70)=1800$  is\nobtained at the point of resonance \\(em that is,\n65\\ dB above the DC value.  This is enough\nto tax most analogue implementations, and can evoke clipping in the formant\nfilters, with a very noticeable effect on speech quality.  This\nextreme case will not occur during synthesis of realistic speech, for\nalthough the formant\n.ul\nranges\noverlap, the values for any particular (human) sound will not coincide exactly.  However,\nit illustrates the difficulty of designing a series synthesizer which copes\nsensibly with arbitrary parameter settings, and explains why designers often\nchoose formant bandwidths in the top half of the ranges given in Table 5.1.\n.pp\nThe problem of excessive amplification within a series synthesizer can be\nalleviated to a small extent by choosing carefully the order in which the\nfilters are placed in the chain.  In a linear system, of course, the order in\nwhich the components occur does not matter.\nIn physical implementations, however, it is advantageous to minimize extreme\namplification at intermediate points.  By placing the formant 1 filter between\nformants 2 and 3, the formant 2 resonance is attenuated somewhat before it\nreaches formant 3.  Continuing with the extreme example above, where both\nformants 2 and 3 were set to 2500\\ Hz; assume that formant 1 is at its\nnominal value of 500\\ Hz.  It provides attenuation at approximately 12\\ dB/octave\nabove this, and so at the formant 2 peak, 2.3\\ octaves higher, the attenuation\nis 28\\ dB.  Thus the gain at 2500\\ Hz,\nwhich is $20 ~ log sub 10 ~ 2500/50 ~ = ~ 34$\\ dB after\npassing through the formant 2 filter, is reduced to 6\\ dB by formant 1, only\nto be increased by $20 ~ log sub 10 ~ 2500/70 ~ = ~ 31$\\ dB to\na value of 37\\ dB by formant 3.\nThis avoids the extreme 65\\ dB gain of formants 2 and 3 combined.\n.pp\nFigure 5.8 shows only three formant filters modelled explicitly.\nThe effect of the rest \\(em and they do have an effect, although it is small\nat low frequencies \\(em is\nincorporated by lumping them together into the \"higher-formant correction\" filter.\nTo calculate the characteristics of this filter, assume that the lumped\nformants have the values given by the simple uniform-tube model of Chapter 2,\nnamely 3500\\ Hz for formant 4, 4500\\ Hz for formant 5, and, in general,\n$500(2n-1)$\\ Hz for formant $n$.  The effect of each of these on the spectrum is\n.LB\n.EQ\n10~ log sub 10  {w sub n sup 4} over {(w sup 2 ~-~w sub n sup 2 ) sup 2\n~~+~~b sub n sup 2 w sup 2}\n~~ = ~~ -~ 10~ log sub 10 ~[(1~-~~{{w sup 2} over {w sub n sup 2}}) sup 2\n~~+~~ {{b sub n sup 2 w sup 2} over {w sub n sup 4}}]\n.EN\ndB,\n.LE\nfollowing from what was calculated above.\nWe will have to approximate this by assuming that\n$b sub n sup 2 /w sub n sup 2$ is\nnegligible \\(em this is quite reasonable for these higher formants because\nTable 5.1 shows that the bandwidth does not increase in proportion to the\nformant frequency range \\(em and approximate the logarithm by the first\nterm of its series expansion:\n.LB\n.EQ\n-10 ~ log sub 10 ~ (1~-~~{{w sup 2} over {w sub n sup 2}}) sup 2\n~~ = ~~ -20~ log sub 10 ~ e ~ log sub e \n(1~-~~{{w sup 2} over {w sub n sup 2}})\n~~ = ~~ 20~ log sub 10 ~ e ~ times ~ {w sup 2} over {w sub n sup 2} ~ .\n.EN\n.LE\n.pp\nNow the total effect of formants 4, 5, ... at frequency $f$\\ Hz (as distinct\nfrom $w$\\ radians/s) is\n.LB\n.EQ\n20~ log sub 10 ~ e ~ times ~ sum from n=4 to infinity\n~{{f sup 2} over {500 sup 2 (2n-1) sup 2}} ~ .\n.EN\n.LE\nThis expression is\n.LB\n.EQ\n20~ log sub 10 ~ e ~ times ~\n{{f sup 2} over {500 sup 2}}~~(~sum from n=1 to infinity\n~{1 over {(2n-1) sup 2}} ~~-~~ sum from n=1 to 3 ~{1 over {(2n-1) sup 2}}~)\n~ .\n.EN\n.LE\nThe infinite sum can actually be calculated in closed form, and is equal\nto  $pi sup 2 /8$.  Hence the total correction is\n.LB\n.EQ\n20~ log sub 10 ~ e ~ times {{f sup 2} over {500 sup 2}}\n~~(~{pi sup 2} over 8 ~~-~~ sum from n=1 to 3 ~{1 over {(2n-1) sup 2}}~)\n~~ = ~~ 2.87 times 10 sup -6 f sup 2\n.EN\ndB.\n.LE\n.pp\nAlthough this may at first seem to be a rather small correction,\nit is in fact 72\\ dB when\n$f=5$\\ kHz!  On further reflection this is not an unreasonable figure, for the\n12\\ dB/octave decays contributed by formants 1, 2, and 3 must all be annihilated\nby the higher-formant correction to give an overall flat spectral trend.\nIn fact, formant 1 will contribute\n12\\ dB/octave from 500\\ Hz (3.3\\ octaves to 5\\ kHz, representing 40\\ dB); formant\n2 will contribute 12\\ dB/octave from 1500\\ Hz (1.7\\ octaves to 5\\ kHz, representing\n21\\ dB); and formant 3 will contribute 12\\ dB/octave from 2500\\ Hz (1\\ octave to 5\\ kHz,\nrepresenting 12\\ dB).\nThese sum to 73\\ dB.\n.pp\nIf the first five formants are synthesized explicitly instead of just the\nfirst three, the correction is\n.LB\n.EQ\n20~ log sub 10 ~ e ~ times ~ {{f sup 2} over {500 sup 2}}\n~~(~{pi sup 2} over 8 ~-~~ sum from n=1 to 5 ~{1 over {(2n-1) sup 2}}~)\n~~ = ~~ 1.73 times 10 sup -6  f sup 2\n.EN\ndB,\n.LE\ngiving a rather more reasonable value of 43\\ dB when $f=5$\\ kHz.  In actual\nimplementations, fixed filters are sometimes included explicitly for\nformants 4 and 5.  Although this lowers the gain of the higher-formant\ncorrection filter, the total amplification at 5\\ kHz of the combined correction\nis still 72\\ dB.  If one is less demanding and aims for a synthesizer that\nproduces a correct spectrum only up to 3.5\\ kHz, it is 35\\ dB.\nThis places quite stringent requirements on the preceding formant filters if\nthe stray noise that they generate internally is not to be amplified to\nperceptible magnitudes by the correction filter at high frequencies.\n.pp\nExplicit inclusion of fixed filters for formants 4 and 5 undoubtedly improves\nthe accuracy of the higher-formant correction.  Recall that the above derivation\nof the correction filter characteristic used the first-order approximation\n.LB\n.EQ\nlog sub e (1~-~{{w sup 2} over {w sub n sup 2}})\n~~ = ~~ -~ {w sup 2} over {w sub n sup 2} ~ ,\n.EN\n.LE\nwhich is only valid if $w << w sub n$.\nThus it only holds at frequencies less than\nthe highest explicitly synthesized formant,\nand so with formants 4 (3.5\\ kHz) and\n5 (4.5\\ kHz) included a reasonable correction should be obtained for\ntelephone-quality speech.  However, detailed analysis with a second-order\napproximation shows that the coefficient of the neglected term is in fact\nsmall (Fant, 1960).\n.[\nFant 1960 Acoustic theory of speech production\n.]\nA second, perhaps more compelling, reason for explicitly\nincluding a couple of fixed formants is that the otherwise enormous amplification\nprovided by the correction can be distributed throughout the formant chain.\nWe saw earlier why there is reason to prefer the\norder F3\\(emF1\\(emF2 over F1\\(emF2\\(emF3.\nWith explicit formants 4 and 5, a suitable order which helps\nto keep the amplification at intermediate points in the chain within reasonable\nbounds is F3\\(emF5\\(emF2\\(emF4\\(emF1.\n.rh \"Parallel synthesizers.\"\nA series synthesizer models the vocal tract resonances by a chain of formant\nfilters in series.  A parallel synthesizer utilizes a parallel connection of\nfilters as illustrated in Figure 5.9.\n.FC \"Figure 5.9\"\n.pp\nConsider a parallel combination of two formants with individually-controllable\namplitudes.  The combined transfer function is\n.LB\n.EQ\nH(s) ~~ mark = ~~ {A sub 1 w sub 1 sup 2} over\n{s sup 2 ~+~ b sub 1 s ~+~ w sub 1 sup 2}\n~~+~~{A sub 2 w sub 2 sup 2} over {s sup 2 ~+~ b sub 2 s ~+~ w sub 2 sup 2}\n.EN\n.sp\n.sp\n.EQ\nlineup = ~~ { (A sub 1 w sub 1 sup 2 + A sub 2 w sub 2 sup 2 )s sup 2\n~+~(A sub 1 b sub 2 w sub 1 sup 2 + A sub 2 b sub 1 w sub 2 sup 2 )s\n~+~ (A sub 1 +A sub 2 )w sub 1 sup 2 w sub 2 sup 2 }\nover\n{ (s sup 2 ~+~b sub 1 s~+~w sub 1 sup 2 )\n(s sup 2 ~+~b sub 2 s~+~w sub 2 sup 2 ) }\n.EN\n.LE\nIf the formant bandwidths $b sub 1$ and $b sub 2$\nare equal and the amplitudes are\nchosen as\n.LB\n.EQ\nA sub 1 ~~=~~ {w sub 2 sup 2} over {w sub 2 sup 2 -w sub 1 sup 2}\n~~~~~~~~\nA sub 2 ~~=~~-~ {w sub 1 sup 2} over {w sub 2 sup 2 -w sub 1 sup 2} ~ ,\n.EN\n.LE\nthen the transfer function becomes the same as that of a two-formant series synthesizer,\nnamely\n.LB\n.EQ\nH(s) ~~ = ~~ {w sub 1 sup 2} over {s sup 2 ~+~ b sub 1 s ~+~ w sub 1 sup 2}\n~ . ~{w sub 2 sup 2} over {s sup 2 ~+~ b sub 2 s ~+~ w sub 2 sup 2} ~ .\n.EN\n.LE\nThe argument can be extended to any number of formants, under the assumption\nthat the formant bandwidths are equal.  Note that the signs of $A sub 1$\nand $A sub 2$\ndiffer:  in general the formant amplitudes for a parallel synthesizer alternate\nin sign.\n.pp\nIn theory, therefore, it would be possible to use five parallel formants to\nmodel a five-formant series synthesizer exactly.  Then the same higher-formant\ncorrection filter would be needed for the parallel synthesizer as for the\nseries one.  If the formant amplitudes were set slightly incorrectly, however,\nthe five filters would not combine to give a total of 60\\ dB/octave high-frequency\ndecay above the resonances.  It is easy to see this in the context of the\nsimplified two-formant combination above:  if the amplitudes were not chosen\nexactly right then the $s sup 2$\nterm in the numerator would not be quite zero.\nThen, the decay in the two-formant combination would be \\-12\\ dB/octave instead\nof \\-24\\ dB/octave, and in the five-formant case the decay would in fact still be\n\\-12\\ dB/octave.  Advantage can be taken of this to equalize the levels\nwithin the synthesizer so that large amplitude variations do not occur.\nThis can best be done by associating relatively low-gain fixed correction filters\nwith each formant instead of providing one comprehensive correction to the\ncombined spectrum:  these are shown in Figure 5.9.\nSuitable correction filters\nhave been determined empirically by Holmes (1972).\n.[\nHolmes 1972 Speech synthesis\n.]\nThey provide a 6\\ dB/octave\nlift above 640\\ Hz for formant 1, and 6\\ dB/octave lift above 300\\ Hz for formant\n2.  Formants 3 and 4 are uncorrected, whilst for formant 5 the correction begins\nas a 6\\ dB/octave decay above 600\\ Hz and increases to an 18\\ dB/octave decay\nabove 5.5\\ kHz.\n.pp\nThe disadvantage of a parallel synthesizer is that the amplitudes of the\nformants must be specified as well as their frequencies.  (Furthermore, the\nformant bandwidths should all be equal, but they are often chosen to be such\nin series synthesizers because of the uncertainty as to their exact\nvalues.)  However, the extra amplitude parameters clearly give greater\ncontrol over the frequency spectrum of the synthesized speech.\n.pp\nA good example of how this extra control can usefully be exploited is the\nsynthesis of nasal sounds.\nNasalization introduces a cavity parallel to the oral tract, as illustrated\nin Figure 5.10, and this causes zeros in the transfer function.\n.FC \"Figure 5.10\"\nIt is as if two different copies of the vocal tract transfer function, one for\nthe oral and the other for the nasal passage, were added\ntogether.  We have seen the effect of this above when considering parallel\nsynthesis.  The combination\n.LB\n.EQ\nH(s) ~~ = ~~ {A sub 1 w sub o sup 2} over\n{s sup 2 ~+~ b sub o s ~+~ w sub o sup 2}\n~~+~~{A sub 2 w sub n sup 2}\nover {s sup 2 ~+~ b sub n s ~+~ w sub n sup 2} ~ ,\n.EN\n.LE\nwhere the subscript \"$o$\" stands for oral and \"$n$\" for nasal,\nproduces zeros in the\nnumerator (unless the amplitudes are carefully adjusted to avoid them).\nThese cannot be modelled by a series synthesizer, but they obviously can be\nby a parallel one.\n.pp\nAlthough they are certainly needed for accurate imitation of human speech,\ntransfer function zeros to simulate nasal sounds are not essential for\nsynthesis of intelligible English.  It is not difficult to get a sound\nlike a nasal consonant\n(\\c\n.ul\nn,\nor\n.ul\nm\\c\n)\nwith an all-pole synthesizer.\nNevertheless, it is certainly true that a parallel synthesizer gives better\n.ul\npotential\ncontrol over the spectrum than a series one.  Whether the added flexibility\ncan be used properly by a synthesis-by-rule computer program is another matter.\n.rh \"Implementation of formant filters.\"\nFormant filters can be built in either analogue or digital form.  A\nsecond-order resonance is needed, whose centre frequency can be controlled\nbut whose bandwidth is fixed.  If the control can be arranged as two\ntracking resistors, then the simple analogue configuration of Figure 5.11,\nwith two operational amplifiers, will suffice.\n.FC \"Figure 5.11\"\n.pp\nThe transfer function of this arrangement is\n.LB\n.EQ\n- ~~ { 1/C sub 1 R sub 1 C sub 2 R sub 2 } over\n{ s sup 2 ~~+~~ {1 over {C sub 2 R sub 2}}~s\n~~+~~{1 over {C sub 1 R' sub 1 C sub 2 R sub 2 }}} ~ ,\n.EN\n.LE\nwhich characterizes it as a low-pass resonator with DC gain\nof  $- R' sub 1 /R sub 1 $,  bandwidth of  $1/2 pi C sub 2 R sub 2$\\ Hz,  and\ncentre frequency of  $1/2 pi (C sub 1 R' sub 1 C sub 2 R sub 2 ) sup 1/2$\\ Hz.\nTracking $R' sub 1$ with $R sub 1$ ensures that the DC gain remains constant,\nand that the centre frequency follows  $R sub 1 sup -1/2$.  Moreover,\nneither is especially sensitive to slight departures from exact tracking\nof $R' sub 1$ with $R sub 1$.\nSuch a filter has been used in a simple hand-controlled speech synthesizer,\nbuilt for demonstration and amusement (Witten and Madams, 1978).\n.[\nWitten Madams 1978 Chatterbox\n.]\nHowever, the need for tracking resistors, and the inverse square root variation\nof the formant frequency with $R sub 1$, makes it rather unsuitable for serious\napplications.\n.pp\nA better analogue filter is the ring-of-three configuration\nshown in Figure 5.12.\n.FC \"Figure 5.12\"\n(Ignore the secondary output for now.)  Control\nis achieved over the centre frequency by two multipliers, driven from\nthe same control input $k$.  These have a high-impedance output, producing a\ncurrent $kx$ if the input voltage is $x$.\nIt is not too difficult to show that the transfer function of the circuit is\n.LB\n.EQ\n- ~~ { {k sup 2} over {C sup 2} } over\n{ s sup 2 ~~+~~ 2 over RC ~s\n~~+~~{1+k sup 2 R sup 2} over {R sup 2 C sup 2} } ~ .\n.EN\n.LE\nSuppose that $R$ is chosen so that  $k sup 2 R sup 2 ~ >>~ 1$.  Then this is a\nunity-gain resonator with constant bandwidth  $1/ pi RC$\\ Hz  and centre\nfrequency  $k/2 pi C$\\ Hz.  Note that it is the combination of both multipliers that\nmakes the centre frequency grow linearly with $k$:  with one multiplier there\nwould be a square-root relationship.\n.pp\nThe ring-of-three filter of Figure 5.12 is arranged in a slightly unusual\nway, with an inverting stage at the beginning and the two resonant stages\nfollowing it.  This ensures that the signal level at intermediate\npoints in the filter does not exceed that at the output, and gives the filter\nthe best chance of coping with a wide range of input amplitudes without\nclipping.  This contrasts markedly with the resonator of Figure 5.11, where\nthe voltage at the output of the first integrator is $w/b$ times the final output \\(em a\nfactor of 50 in the worst case.\n.pp\nFor a digital implementation of a formant, consider the recurrence relation\n.LB\n.EQ\ny(n)~ = ~~ a sub 1 y(n-1) ~-~ a sub 2 y(n-2) ~+~ a sub 0 x(n) ,\n.EN\n.LE\nwhere $x(n)$ is the input and $y(n)$ the output at time $n$,\n$y(n-1)$ and $y(n-2)$ are the previous two values of the output,\nand $a sub 0$, $a sub 1$, and $a sub 2$ are (real) constants.\nThe minus sign is in front of the second term because it makes $a sub 2$\nturn out to be\npositive.  To calculate the $z$-transform version of this relationship, multiply\nthrough by $z sup -n$ and sum from $n=- infinity$ to $infinity$ :\n.LB \"nn\"\n.EQ\nsum from {n=- infinity} to infinity ~y(n)z sup -n ~~ mark =~~\na sub 1 sum from {n=- infinity} to infinity ~y(n-1)z sup -n ~~-~\na sub 2 sum from {n=- infinity} to infinity ~y(n-2)z sup -n ~~+~\na sub 0 sum from {n=- infinity} to infinity ~x(n)z sup -n\n.EN\n.sp\n.EQ\nlineup = ~~ a sub 1 z sup -1 ~ sum ~y(n-1)z sup -(n-1) ~~-~~\na sub 2 z sup -2 ~ sum ~y(n-2)z sup -(n-2)\n~~+~~ a sub 0 ~ sum ~x(n)x sup -n ~ .\n.EN\n.LE \"nn\"\nWriting this in terms of $z$-transforms,\n.LB\n.EQ\nY(z)~ = ~~ a sub 1 z sup -1 Y(z) ~-~ a sub 2 z sup -2 Y(z) ~+~ a sub 0 X(z) .\n.EN\n.LE\nThus the input-output transfer function of the system is\n.LB\n.EQ\nH(z)~ = ~~ Y(z) over X(z)\n~~=~~ {a sub 0 } over {1~-~a sub 1 z sup -1 ~+~a sub 2 z sup -2} ~ .\n.EN\n.LE\n.pp\nWe learned in the previous chapter that the frequency response is obtained\nfrom the $z$-transform of a system by replacing $z sup -1$\nby  $e sup {-j2 pi fT}$,  where $f$ is the frequency variable in\\ Hz.\nHence the amplitude response of the digital formant filter is\n.LB\n.EQ\n|H(e sup {j2 pi fT} )| sup 2\n~~ = ~~ left [ {a sub 0} over {1~-~a sub 1 e sup {-j2 pi fT}\n~+~a sub 2 e sup {-j4 pi fT} } ~ right ] sup 2 ~ .\n.EN\n.sp\n.LE\nIt is fairly obvious from this that a DC gain of 1 is obtained if\n.LB\n.EQ\na sub 0 ~ = ~~ 1 ~-~ a sub 1  ~+~ a sub 2 ,\n.EN\n.LE\nfor  $e sup {-j2 pi fT}$  is 1 at a frequency of 0\\ Hz.  Some manipulation is\nrequired to show that, under the usual assumption that the bandwidth is\nsmall, the centre frequency is\n.LB\n.EQ\n1 over {2 pi T} ~~ cos sup -1 ~ {a sub 1} over {2 a sub 2 sup 1/2} ~\n.EN\nHz.\n.LE\nFurthermore, the 3\\ dB bandwidth of the resonance is given approximately by\n.LB\n.EQ\n-~ 1 over {2 pi T} ~~ log sub e a sub 2 ~\n.EN\nHz.\n.LE\n.pp\nAs an example, Figure 5.13 shows an amplitude response for this digital filter.\n.FC \"Figure 5.13\"\nThe parameters $a sub 0$, $a sub 1$ and $a sub 2$\nwere generated from the above\nrelationships for a sampling frequency of 8\\ kHz, centre frequency of 1\\ kHz,\nand bandwidth of 75\\ Hz.\nIt exhibits a peak of approximately the right bandwidth at the correct\nfrequency, 1\\ kHz.  Note that the response is flat at half the sampling\nfrequency, for the frequency response from 4\\ kHz to 8\\ kHz is just a reflection of\nthat up to 4\\ kHz.\nThis contrasts sharply with that of an analogue formant filter, also shown\nin Figure 5.13, which slopes\nat \\-12\\ dB/octave at frequencies above resonance.\n.pp\nThe behaviour of a digital formant filter at frequencies above\nresonance actually makes it preferable to an analogue implementation.\nWe saw earlier that considerable trouble must be taken with the latter to\ncompensate for the cumulative effect of \\-12\\ dB/octave at higher frequencies for\neach of the formants.\nThis is not necessary with digital implementations, for the response of\na digital formant filter is flat at half the sampling frequency.  In fact, further\nstudy shows that digital synthesizers without any higher-pole correction\ngive a closer approximation to the vocal tract than analogue ones with higher-pole\ncorrection (Gold and Rabiner, 1968).\n.[\nGold Rabiner 1968 Analysis of digital and analogue formant synthesizers\n.]\n.rh \"Time-domain methods.\"\nAn interesting alternative to frequency-domain speech synthesis is to construct\nthe formants in the time domain.  When a second-order resonance is excited by\nan impulse, an exponentially decaying sinusoid is produced, as illustrated by\nFigure 5.14.\n.FC \"Figure 5.14\"\nThe oscillation occurs at the resonant frequency of the filter,\nwhile the decay is related to the bandwidth.  In fact, if the formant filter\nhas transfer function\n.LB\n.EQ\n{w sup 2} over {s sup 2 ~+~ b s ~+~ w sup 2} ~ ,\n.EN\n.LE\nthe time waveform for impulsive excitation is\n.LB\n.EQ\nx(t)~ = ~~ w~ e sup -bt/2 ~ sin ~ wt ~~~~~~~~\n.EN\n(neglecting  $b sup 2 /w sup 2$).\n.LE\nIt is the combination of several such time waveforms, coupled with the regular\nreappearance of excitation at the pitch period, that produces the characteristic\nwiggly waveform of voiced speech.\n.pp\nNow suppose we take a sine wave of frequency $w$ and multiply it by a\ndecaying exponential  $e sup -bt/2$.  This gives a signal\n.LB\n.EQ\nx(t)~ = ~~ e sup -bt/2 ~ sin ~ wt ,\n.EN\n.LE\nwhich is identical with the filtered impulse except for a factor $w$.\nIf there are several formants in parallel, all with the same bandwidth,\nthe exponential factor is the same for each:\n.LB\n.EQ\nx(t)~ = ~~ e sup -bt/2 ~ (A sub 1 ~ sin ~ w sub 1 t\n~~+ ~~ A sub 2 ~ sin ~ w sub 2 t ~~ + ~~ A sub 3 ~  sin ~ w sub 3 t) .\n.EN\n.LE\n$A sub 1$, $A sub 2$, and $A sub 3$ control the formant amplitudes,\nas in an ordinary parallel synthesizer;\nexcept that they need adjusting to account for the missing\nfactors $w sub 1$, $w sub 2$, and $w sub 3$.\n.pp\nA neat way of implementing such a synthesizer digitally is to store one cycle of a\nsine wave in a read-only memory (ROM).  Then, the formant frequencies can be\ncontrolled by reading the ROM at different rates.  For example, if twice the\nbasic frequency is desired, every second value should be read.\nMultiplication is needed for amplitude control of each formant:  this can be\naccomplished by shifting the digital word (each place shifted accounts for\n6\\ dB of attenuation).  Finally, the exponential damping factor can be\nprovided in analogue hardware by a single capacitor after the D/A converter.\nThis implementation gives a system for hardware-software synthesis which\ninvolves an absolutely minimal amount of extra hardware apart from the computer,\nand does not need hardware multiplication for real-time operation.\nIt could easily be made to work in real time with a microprocessor coupled\nto a D/A converter, damping capacitor, and fixed tone-control filter to give\nthe required spectral equalization.\n.pp\nBecause the overall spectral decay of an impulse exciting a second-order\nformant filter is 12\\ dB/octave, the appropriate equalization is +6\\ dB/octave\nlift at high frequencies, to give an overall \\-6\\ dB/octave spectral trend.\n.pp\nNote, however, that this synthesis model is an extremely basic one.  Only\nimpulsive excitation can be accomodated.  For fricatives, which we will\ndiscuss in more detail below, a different implementation is needed.  A\nhardware noise generator, with a few fixed filters \\(em one\nfor each fricative type \\(em will suffice for a simple system.  More damaging\nis the lack of aspiration, where random noise excites the vocal tract resonances.\nThis cannot be simulated in the model.  The\n.ul\nh\nsound can be provided by\ntreating it as a fricative, and although it will not sound completely realistic,\nbecause there will be no variation with the formant positions of adjacent phonemes,\nthis can be tolerated because\n.ul\nh\nis not too important for speech intelligibility.\nA bigger disadvantage is the lack of proper aspiration control for producing\nunvoiced stops, which as mentioned in Chapter 2 consist of an silent phase\nfollowed by a burst of aspiration.\nExperience has shown that although it is difficult to drive such a synthesizer\nfrom a software synthesis-by-rule system, quite intelligible output can\nbe obtained if parameters are derived from real speech and tweaked by hand.\nThen, for each aspiration burst the most closely-matching fricative sound\ncan be used.\n.sh \"5.4  Aspiration and frication\"\n.pp\nThe model of the vocal tract as a filter which affects the frequency spectrum\nof the basic voiced excitation breaks down if there are constrictions in it,\nfor these introduce new sound sources caused by turbulent air.\nThe generation of unvoiced excitation has been discussed earlier in this\nchapter:  now we must consider how to simulate the filtering action of\nthe vocal tract for unvoiced sounds.\n.pp\nAspiration and frication need to be dealt with separately.  The former\nis caused by excitation at the vocal cords \\(em the cords are held\nso close together that turbulent noise is produced.\nThis noise passes through the same vocal tract filter that modifies voiced\nsounds, and the same kind of formant structure can be observed.\nAll that is needed to simulate it is to replace the voiced excitation\nsource by white noise, as shown in the upper part of Figure 5.15.\n.FC \"Figure 5.15\"\n.pp\nSpeech can be whispered by substituting aspiration for voicing throughout.\nOf course, there is no fundamental frequency associated with aspiration.\nAn interesting way of assessing informally the degradation caused by inadequate\npitch control in a speech synthesis-by-rule system is to listen to\nwhispered speech, in which pitch variations play no part.\n.pp\nVoiced and aspirative excitation are rarely produced at the same time\nin natural speech (but see the discussion in Chapter 2 about breathy voice).\nHowever, the excitation can change from one to the other quite quickly, and\nwhen this happens there is no discontinuity in the formant structure.\n.pp\nFricative, or sibilant, excitation is quite different from aspiration,\nbecause it introduces a new sound source at a different place from the vocal\ncords.  The constriction which produces the sound may be at the lips,\nthe teeth, the hard ridge just behind the top front teeth, or further\nback along the palate.\nThese positions each produce a different sound\n(\\c\n.ul\nf,\n.ul\nth,\n.ul\ns,\nand\n.ul\nsh\nrespectively).  However, smooth transitions from one of these sounds to another\ndo not occur in natural speech; and dynamical movement of the frequency\nspectrum during a fricative is unnecessary for speech synthesis.\n.pp\nIt is necessary, however, to be able to produce an approximation to the\nnoise spectrum for each of these sound types.  This is commonly achieved\nby a single high-pass resonance whose centre frequency can be controlled.\nThis is the purpose of the secondary output\nof the formant filter of Figure 5.12.\nTaking the output from this point gives a high-pass instead of a low-pass\nresonance, and this same filter configuration is quite acceptable for\nfricatives.  Figure 5.15 shows the fricative sound path as a noise generator\nfollowed by such a filter.\n.pp\nUnlike aspiration, fricative excitation is frequently combined with voicing.\nThis gives the voiced fricative sounds\n.ul\nv,\n.ul\ndh,\n.ul\nz,\nand\n.ul\nzh.\nIt is possible to produce frication and aspiration together, and although\nthere are no examples of this in English, speech synthesis-by-rule\nprograms often use a short burst of aspiration\n.ul\nand\nfrication when simulating the opening of unvoiced stops.\nSeparate amplitude controls are therefore needed for voicing and frication,\nbut the former can be used for aspiration as well, with a \"glottal excitation\ntype\" switch to indicate aspiration rather than voicing.\n.sh \"5.5  Summary\"\n.pp\nA resonance speech synthesizer consists of a vocal tract filter, excited by\neither a periodic pitch pulse or aspiration noise.  In addition, a set of\nsibilant sounds must be provided.  The vocal tract filter is dynamic, with\nthree controllable resonances.  These, coupled with some fixed spectral\ncompensation, give it a fairly high order \\(em about 10 complex poles are\nneeded.  Although several different sibilant sound types must be simulated,\ndynamical movement is less important in fricative sound spectra than\nfor voiced and aspirated sounds because\nsmooth transitions between one fricative and another are not important\nin speech.\nHowever, fricative timing and amplitude must be controlled rather precisely.\n.pp\nThe speech synthesizer is controlled by several parameters.\nThese include fundamental frequency (if voiced), amplitude of voicing,\nfrequency of the first few \\(em typically three \\(em formants,\naspiration amplitude, sibilance amplitude, and frequency of one (or more)\nsibilance filters.\nAdditionally, if the synthesizer is a parallel one, parameters for the\namplitudes of individual formants will need to be included.\nIt may be that some control over formant bandwidths is provided too.\nThus synthesizers have from eight up to about 20 parameters (Klatt, 1980,\ndescribes one with 20 parameters).\n.[\nKlatt 1980 Software for a cascade/parallel formant synthesizer\n.]\n.pp\nThe parameters are supplied to the synthesizer at regular intervals of time.\nFor a 10-parameter synthesizer, the control can be thought of as a set of\n10 graphs, each representing the time evolution of one parameter.\nThey are usually called parameter\n.ul\ntracks,\nthe terminology dating from the days when a track was painted on a glass\nslide for each parameter to provide dynamic control of the synthesizer\n(Lawrence, 1953).\n.[\nLawrence 1953\n.]\nThe pitch track is often called a pitch\n.ul\ncontour;\nthis is a common phonetician's usage.\nDo not confuse this with the everyday meaning of \"contour\"\nas a line joining points of equal height on a map \\(em a pitch contour is\njust the time evolution of the pitch frequency.\n.pp\nFor computer-controlled synthesizers, of course, the parameter tracks\nare sampled, typically every 5 to 20\\ msec.\nThe rate is determined by the need to generate fast amplitude transitions\nfor nasals and stop consonants.\nContrast it with the 125\\ $mu$sec sampling period needed to digitize\ntelephone-quality speech.\nThe raw data rate for a 10-parameter synthesizer updated every 10 msec\nis 1,000 parameters/sec, or 6\\ Kbit/s if each parameter is represented\nby 6\\ bits.\nThis is a substantial reduction over the 56\\ Kbit/s needed for PCM representation.\nFor speech synthesis by rule (Chapter 7), these parameter tracks\nare generated by a computer program from a phonetic (or English)\nversion of the utterance, lowering the data rate by a further one or two\norders of magnitude.\n.pp\nFilters for speech\nsynthesizers can be implemented in either analogue or digital form.\nHigh-order filters are usually broken down into second-order sections in\nparallel or in series.  A third possibility, which has not been discussed\nabove, is to implement a single high-order filter directly.  Finally, the\naction of formant filters can be synthesized in the time domain.  This gives\neight possibilities which are summarized in Table 5.2.\n.RF\n.in +0.5i\n.ta 2.1i +2.0i\n.nr x1 (\\w'Analogue'/2)\n.nr x2 (\\w'Digital'/2)\n\t\\h'-\\n(x1u'Analogue\t\\h'-\\n(x2u'Digital\n.nr x0 2.0i+(\\w'Liljencrants (1968)'/2)+(\\w'Morris and Paillet (1972)'/2)\n.nr x3 (\\w'Liljencrants (1968)'/2)\n\t\\h'-\\n(x3u'\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'Rice (1976)'/2)\n.nr x2 (\\w'Rabiner \\fIet al\\fR'/2)\nSeries\t\\h'-\\n(x1u'Rice (1976)\t\\h'-\\n(x2u'Rabiner \\fIet al\\fR\n.nr x1 (\\w'Liljencrants (1968)'/2)\n.nr x2 (\\w'Holmes (1973)'/2)\nParallel\t\\h'-\\n(x1u'Liljencrants (1968)\t\\h'-\\n(x2u'Holmes (1973)\n.nr x1 (\\w'unpublished'/2)\n.nr x2 (\\w'unpublished'/2\nTime-domain\t\\h'-\\n(x1u'unpublished\t\\h'-\\n(x2u'unpublished\n.nr x1 (\\w'\\(em'/2)\n.nr x2 (\\w'Morris and Paillet (1972)'/2)\nHigh-order filter\t\\h'-\\n(x1u'\\(em\t\\h'-\\n(x2u'Morris and Paillet (1972)\n\t\\h'-\\n(x3u'\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in-0.5i\n.FG \"Table 5.2  Implementation options for resonance speech synthesizers\"\n.[\nRice 1976 Byte\n.]\n.[\nRabiner Jackson Schafer Coker 1971\n.]\n.[\nLiljencrants 1968\n.]\n.[\nHolmes 1973 Influence of glottal waveform on naturalness\n.]\n.[\nMorris and Paillet 1972\n.]\nAll but one have certainly been used as the basis for synthesis, and\nthe table includes reference to published descriptions.\n.pp\nEach method has advantages and disadvantages.  Series decomposition obviates\nthe need for control over the amplitudes of individual formants, but does\nnot allow synthesis of sounds which use the nasal tract as well as the oral\none; for these are in parallel.  Analogue implementation of series synthesizers\nis complicated by the need for higher-pole correction, and the fact that\nthe gains at different frequencies can vary widely throughout the system.\nHigher-pole correction is not so important for digital synthesizers.\nParallel decomposition eliminates some of these problems:  higher-pole correction\ncan be implemented individually for each formant.  However, the formant\namplitudes must be controlled rather precisely to simulate the vocal tract,\nwhich is essentially serial.\nTime-domain synthesis is associated with low hardware costs but does not\neasily allow proper control over the excitation sources.  In particular,\nit cannot simulate dynamical movement of the spectrum during aspiration.\nImplementation of the entire vocal tract model as a single high-order filter,\nwithout breaking it down into individual formants in series or parallel,\nis attractive from the computational point of view because less arithmetic\noperations are required.  It is best analysed in terms of linear predictive\ncoding, which is the subject of the next chapter.\n.sh \"5.6  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"5.7  Further reading\"\n.pp\nHistorically-minded readers should look at the early speech synthesizer\ndesigned by Lawrence (1953).\nThis and other classic papers on the subject\nare reprinted in Flanagan and Rabiner (1973).\nA good description of a quite sophisticated parallel synthesizer can\nbe found in Holmes (1973), above, and another of a switchable\nseries/parallel one in Klatt (1980), who even includes a listing of\nthe Fortran program that implements it.\nHere are some useful books on speech synthesizers.\n.LB \"nn\"\n.\\\"Fant-1960-1\n.]-\n.ds [A Fant, G.\n.ds [D 1960\n.ds [T Acoustic theory of speech production\n.ds [I Mouton\n.ds [C The Hague\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nFant really started the study of the vocal tract as an acoustic system,\nand this book marks the beginning of modern speech synthesis.\n.in-2n\n.\\\"Flanagan-1972-1\n.]-\n.ds [A Flanagan, J.L.\n.ds [D 1972\n.ds [T Speech analysis, synthesis, and perception (2nd, expanded, edition)\n.ds [I Springer Verlag\n.ds [C Berlin\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis book is the speech researcher's bible, and like the bible, it's not\nall that easy to read.\nHowever, it is an essential reference source for speech acoustics and\nspeech synthesis (as well as for human speech perception).\n.in-2n\n.\\\"Flanagan-1973-2\n.]-\n.ds [A Flanagan, J.L.\n.as [A \" and Rabiner, L.R.(Editors)\n.ds [D 1973\n.ds [T Speech synthesis\n.ds [I Dowsen, Hutchinson and Ross\n.ds [C Stroudsburg, Pennsylvania\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nI recommended this book at the end of Chapter 1 as a collection of\nclassic papers on the subject of speech synthesis and synthesizers.\n.in-2n\n.\\\"Holmes-1972-3\n.]-\n.ds [A Holmes, J.N.\n.ds [D 1972\n.ds [T Speech synthesis\n.ds [I Mills and Boom\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis little book, by one of Britain's foremost workers in the field,\nintroduces the subject of speech synthesis and speech synthesizers.\nIt has a particularly good discussion of parallel synthesizers.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"6  LINEAR PREDICTION OF SPEECH\"\n.ds RT \"Linear prediction of speech\n.ds CX \"Principles of computer speech\n.pp\nThe speech coding techniques which were discussed in Chapter 3 operate\nin the time domain, while the analysis and synthesis techniques\nof Chapters 4 and 5 are\nbased in the frequency domain.  Linear prediction is a relatively\nnew method of speech analysis-synthesis,\nintroduced in the early 1970's and used\nextensively since then, which is primarily a time-domain coding method\nbut can be used to give frequency-domain parameters like formant\nfrequency, bandwidth, and amplitude.\n.pp\nIt has several advantages over other speech analysis techniques, and is\nlikely to become increasingly dominant in speech output systems.\nAs well as bridging the gap between time- and frequency-domain techniques, it\nis of equal value for both speech storage and speech synthesis, and forms\nan extremely convenient basis for speech-output systems which use high-quality\nstored speech for routine messages and synthesis from phonetics or text\nfor unusual or exceptional conditions.  Linear prediction can be used to\nseparate the excitation source properties of pitch and amplitude from the\nvocal tract filter which governs phoneme articulation, or, in other words,\nto separate much of the prosodic from the segmental information.\nHence it makes it easy to use stored segmentals with synthetic prosody,\nwhich is just what is needed to enhance the flexibility of stored speech by\nproviding overall intonation contours for utterances formed by word\nconcatenation (see Chapter 7).\n.pp\nThe frequency-domain analysis technique\nof Fourier transformation necessarily involves approximation because it\napplies only to periodic waveforms, and so the artificial operation\nof windowing is required to suppress the aperiodicity of real\nspeech.  In contrast, the linear predictive technique, being a time-domain\nmethod, can \\(em in certain forms \\(em deal more rationally with aperiodic\nsignals.\n.pp\nThe basic idea of linear predictive coding is exactly the same as\none form of adaptive differential pulse code modulation which\nwas introduced briefly in Chapter 3.  There it was noted that a speech\nsample $x(n)$ can be predicted quite closely by the previous sample\n$x(n-1)$.  The prediction can be improved by multiplying the previous\nsample by a number, say $a sub 1$, which is adapted on a syllabic\ntime-scale.  This can be utilized for speech coding by transmitting\nonly the prediction error\n.LB\n.EQ\ne(n)~=~~x(n)~-~a sub 1 x(n-1),\n.EN\n.LE\nand using it (and the value of $a sub 1$) to reconstitute the signal\n$x(n)$ at the receiver.  It is worthwhile noting that\nexactly the same relationship was used for digital\npreemphasis in Chapter 4, with the value of $a sub 1$\nbeing constant at about 0.9 \\(em although\nthe possibility of adapting it to take into account the difference\nbetween voiced and unvoiced speech was discussed.\n.pp\nAn obvious extension is to use several past values of the signal to form\nthe prediction, instead of just one.  Different multipliers for each would\nbe needed, so that the prediction error could be written as\n.LB\n.EQ\ne(n)~~ mark =~~x(n)~-~a sub 1 x(n-1)~-~a sub 2 x(n-2)~-~...~-~a sub p x(n-p)\n.EN\n.sp\n.EQ\nlineup =~~x(n)~-~~sum from k=1 to p ~a sub k x(n-k).\n.EN\n.LE\nThe multipliers $a sub k$ should be adapted to minimize the error signal,\nand we will consider how to do this in the next section.  It turns out\nthat they must be re-calculated and transmitted on a time-scale that is\nrather faster than syllabic but much slower than\nthe basic sampling rate:  intervals\nof 10\\-25\\ msec are usually used (compare this with the 125\\ $mu$sec sampling\nrate for telephone-quality speech).\nA configuration for high-order adaptive differential\npulse code modulation is shown in Figure 6.1.\n.FC \"Figure 6.1\"\n.pp\nFigure 6.2 shows typical time waveforms for each of the ten coefficients\nover a 1-second stretch of speech.\n.FC \"Figure 6.2\"\nNotice that they vary much more slowly than, say, the speech waveform of\nFigure 3.5.\n.pp\nTurning the above relationship into $z$-transforms gives\n.LB\n.EQ\nE(z)~~=~~X(z)~-~~sum from k=1 to p ~a sub k z sup -k ~X(z)~~=~~(1~-~~\nsum from k=1 to p ~a sub k z sup -k )~X(z).\n.EN\n.LE\nRewriting the speech signal in terms of the error,\n.LB\n.EQ\nX(z)~~=~~1 over {1~-~~ sum ~a sub k z sup -k }~.~E(z) .\n.EN\n.LE\n.pp\nNow let us bring together some facts from the previous chapter which will\nallow the time-domain technique of linear prediction to be interpreted\nin terms of the frequency-domain formant model of speech.  Recall that speech\ncan be viewed as an excitation source passing through a vocal tract filter,\nfollowed by another filter to model the effect of radiation from the lips.\nThe overall spectral levels can be reassigned as in Figure 5.1 so that\nthe excitation source has a 0\\ dB/octave spectral profile, and hence is\nessentially impulsive.\nConsidering the vocal tract filter as a series connection\nof digital formant filters, its transfer function is the product of terms like\n.LB\n.EQ\n1 over {1~-~b sub 1 z sup -1 ~+~b sub 2 z sup -2}~ ,\n.EN\n.LE\nwhere $b sub 1$ and $b sub 2$ control the position and bandwidth of the formant resonances.\nThe \\-6\\ dB/octave spectral compensation can be modelled by the\nfirst-order digital filter\n.LB\n.EQ\n1 over {1~-~bz sup -1}~ .\n.EN\n.LE\nThe product of all these terms, when multiplied out, will have the\nform\n.LB\n.EQ\n1 over {1~-~c sub 1 z sup -1 ~-~c sub 2 z sup -2 ~-~...~-~\nc sub q z sup -q }~ ,\n.EN\n.LE\nwhere $q$ is twice the number of formants plus one, and the $c$'s are calculated\nfrom the positions and bandwidths of the formant resonances and the spectral\ncompensation parameter.  Hence\nthe $z$-transform of the speech is\n.LB\n.EQ\nX(z)~=~~1 over {1~-~~ sum from k=1 to q ~c sub k z sup -k }~.~I(z) ,\n.EN\n.LE\nwhere $I(z)$ is the transform of the impulsive excitation.\n.pp\nThis is remarkably similar to the linear prediction relation given earlier!  If\n$p$ and $q$ are the same, then the linear predictive coefficients $a sub k$\nform a $p$'th order polynomial which is the same as that obtained by multiplying\ntogether the second-order polynomials representing the individual formants\n(together with the first-order one for spectral compensation).\nFurthermore, the predictive error $E(z)$ can be identified with the\nimpulsive excitation $I(z)$.  This raises the very interesting\npossibility of parametrizing the error signal by its frequency and\namplitude \\(em two relatively slowly-varying quantities \\(em instead of\ntransmitting it sample-by-sample (at an 8\\ kHz rate).  This is how\nlinear prediction separates out the excitation properties of the source\nfrom the vocal tract filter:  the source parameters can be derived\nfrom the error signal and the vocal tract filter is represented by\nthe linear predictive coefficients.\nFigure 6.3 shows how this can be used for speech transmission.\n.FC \"Figure 6.3\"\nNote that\n.ul\nno\nsignals need now be transmitted at the speech sampling rate; for the\nsource parameters vary relatively slowly.  This leads to an extremely\nlow data rate.\n.pp\nPractical linear predictive coding schemes operate with a value of $p$ between\n10 and 15, corresponding approximately to 4-formant and 7-formant synthesis\nrespectively.  The $a sub k$'s are re-calculated every 10 to 25\\ msec, and\ntransmitted to the receiver.  Also, the pitch and amplitude\nof the speech are estimated and transmitted at the same rate.\nIf the speech\nis unvoiced, there is no pitch value:  an \"unvoiced flag\" is\ntransmitted instead.\nBecause the linear predictive coefficients are intimately related to\nformant frequencies and bandwidths, a \"frame rate\" in the region\nof 10 to 25\\ msec is appropriate because this approximates the maximum rate\nat which acoustic events happen in speech production.\n.pp\nAt the receiver, the excitation waveform\nis reconstituted.\nFor voiced speech, it is impulsive at the specified\nfrequency and with the specified amplitude, while for unvoiced speech it\nis random, with the specified amplitude.  This signal $e(n)$, together\nwith the transmitted parameters $a sub 1$, ..., $a sub p$, is used\nto regenerate the speech waveform by\n.LB\n.EQ\nx(n)~=~~e(n)~+~~sum from k=1 to p ~a sub k x(n-k) ,\n.EN\n.LE\n\\(em which is the inverse of the transmitter's formula for calculating $e(n)$,\nnamely\n.LB\n.EQ\ne(n)~=~~x(n)~-~~sum from k=1 to p ~a sub k x(n-k) .\n.EN\n.LE\nThis relies on knowing the past $p$ values of the speech samples.\nMany systems set these past values to zero at the beginning of each pitch\ncycle.\n.pp\nLinear prediction can also be used for speech analysis, rather than\nfor speech coding, as shown in Figure 6.4.\n.FC \"Figure 6.4\"\nInstead of transmitting the coefficients $a sub k$,\nthey are used to determine the formant positions and bandwidths.\nWe saw above that the polynomial\n.LB\n.EQ\n1~-~a sub 1 z sup -1 ~-~a sub 2 z sup -2 ~-~...~-~a sub p z sup -p ,\n.EN\n.LE\nwhen factored into a product of second-order terms, gives the formant\ncharacteristics (as well as the spectral compensation term).\nFactoring is equivalent to finding the complex roots of the polynomial,\nand this is fairly demanding computationally \\(em especially if done at\na high rate.  Consequently, peak-picking algorithms are sometimes\nused instead.  The absolute value of the polynomial gives the\nfrequency spectrum of the vocal tract filter, and the formants\nappear as peaks \\(em just as they do in cepstrally smoothed speech\n(see Chapter 4).\n.pp\nThe chief deficiency in the linear predictive method, whether it\nis used for speech coding or for speech analysis, is that \\(em like a series\nsynthesizer \\(em it\nimplements an all-pole model of the vocal tract.\nWe mentioned in Chapter 5 that this is rather simplistic,\nespecially for nasalized sounds which involve a cavity in parallel\nwith the oral one.  Some research has been done on incorporating zeros\ninto a linear predictive model, but it complicates the problem of\ncalculating the parameters enormously.  For most purposes people seem\nto be able to live with the limitations of the all-pole model.\n.sh \"6.1  Linear predictive analysis\"\n.pp\nThe key problem in linear predictive coding is to determine the values\nof the coefficients $a sub 1$, ..., $a sub p$.\nIf the error signal is to be transmitted on a sample-by-sample basis,\nas it is in adaptive differential pulse code modulation, then it can be most\neconomically encoded if its mean power is as small as possible.\nThus the coefficients are chosen to minimize\n.LB\n.EQ\nsum ~e(n) sup 2\n.EN\n.LE\nover some period of time.\nThe period of time used is related to the frame rate at which the\ncoefficients are transmitted or stored, although there is no need\nto make it exactly the same as one frame interval.  As mentioned above,\nthe frame size\nis usually chosen to be in the region of 10 to 25\\ msec.  Some\nschemes minimize the error signal over as few as 30 samples\n(corresponding to 3\\ msec at a 10\\ kHz sampling rate).  Others take\nlonger; up to 250 samples (25\\ msec).\n.pp\nHowever, if the error signal is to be considered as impulsive and\nparametrized by its frequency and amplitude before transmission,\nor if the coefficients $a sub k$ are to be used for spectral calculations,\nthen it is not immediately obvious how the coefficients should be\ncalculated.\nIn fact, it is still best to choose them to minimize the above sum.\nThis is at least plausible, for an impulsive excitation will have a\nrather small mean power \\(em most of the samples are zero.\nIt can be justified theoretically in terms of\n.ul\nspectral whitening,\nfor it can be shown that minimizing the mean-squared error\nproduces an error signal whose spectrum is maximally flat.\nNow the only two waveforms whose spectra are absolutely flat\nare a single impulse and white noise.  Hence if\nthe speech is voiced, minimizing the mean-squared error\nwill lead to an error signal which is as nearly impulsive\nas possible.  Provided the time-frame for minimizing is short enough,\nthe impulse will correspond to a single excitation pulse.\nIf the speech is unvoiced, minimization will lead to an error\nsignal which is as nearly white noise as possible.\n.pp\nHow does one choose the linear predictive coefficients to minimize\nthe mean-squared error?  The total squared prediction error is\n.LB\n.EQ\nM~=~~sum from n ~e(n) sup 2~~=~~sum from n\n~[x(n)~-~ sum from k=1 to p ~a sub k x sub n-k ] sup 2 ,\n.EN\n.LE\nleaving the range of summation unspecified for the moment.\nTo minimize $M$ by choice of the coefficients $a sub j$, differentiate\nwith respect to each of them and set the resulting derivatives\nto zero.\n.LB\n.EQ\ndM over {da sub j} ~~=~~-2 sum from n ~x(n-j)[x(n)~-~~\nsum from k=1 to p ~a sub k x(n-k)]~~=~0~,\n.EN\n.LE\nso\n.LB\n.EQ\nsum from k=1 to p ~a sub k ~ sum from n ~x(n-j)x(n-k)~~=~~\nsum from n ~x(n)x(n-j)~~~~j~=~1,~2,~...,~p.\n.EN\n.LE\n.pp\nThis is a set of $p$ linear equations for the $p$ unknowns $a sub 1$, ...,\n$a sub p$.\nSolving it is equivalent to inverting a $p times p$ matrix.\nThis job must be repeated at the frame rate, and so if\nreal-time operation is desired quite a lot of calculation is needed.\n.rh \"The autocorrelation method.\"\nSo far, the range of the $n$-summation has been left open.  The\ncoefficients of the matrix equation have the form\n.LB\n.EQ\nsum from n ~x(n-j)x(n-k).\n.EN\n.LE\nIf a doubly-infinite summation were made, with $x(n)$ being defined\nas zero whenever $n<0$, we could make use of the fact that\n.sp\n.ce\n.EQ\nsum from {n=- infinity} to infinity ~x(n-j)x(n-k)~=~~\nsum from {n=- infinity} to infinity ~x(n-j+1)x(n-k+1)~=~...~=~~\nsum from {n=- infinity} to infinity ~x(n)x(n+j-k)\n.EN\n.sp\nto simplify the matrix equation.  This just states that the\nautocorrelation of an infinite sequence depends only on the lag at which\nit is computed, and not on absolute time.\n.pp\nDefining $R(m)$ as the\nautocorrelation at lag $m$, that is,\n.LB\n.EQ\nR(m)~=~ sum from n ~x(n)x(n+m),\n.EN\n.LE\nthe matrix equation becomes\n.LB\n.ne7\n.nf\n.EQ\nR(0)a sub 1 ~+~R(1)a sub 2 ~+~R(2)a sub 3 ~+~...~~=~R(1)\n.EN\n.EQ\nR(1)a sub 1 ~+~R(0)a sub 2 ~+~R(1)a sub 3 ~+~...~~=~R(2)\n.EN\n.EQ\nR(2)a sub 1 ~+~R(1)a sub 2 ~+~R(0)a sub 3 ~+~...~~=~R(3)\n.EN\n.EQ\netc\n.EN\n.fi\n.LE\nAn elegant method due to Durbin and Levinson exists for solving this\nspecial system of equations.  It requires much less computational\neffort than is generally needed for symmetric matrix equations.\n.pp\nOf course, an infinite range of summation can not be used in\npractice.  For one thing, the power spectrum is changing, and\nonly the data from a short time-frame should be used for\na realistic estimate of the optimum linear predictive coefficients.\nHence a windowing procedure,\n.LB\n.EQ\nx(n) sup * ~=~w sub n x(n),\n.EN\n.LE\nis used to reduce the signal to zero outside a finite range of\ninterest.  Windows were discussed in Chapter 4 from the\npoint of view of Fourier analysis of speech signals, and the same\nsort of considerations apply to choosing a window for linear\nprediction.\n.pp\nThis is known as the\n.ul\nautocorrelation method\nof computing prediction parameters.  Typically a window of\n100 to 250 samples is used for analysis of one frame of speech.\n.rh \"Algorithm for the autocorrelation method.\"\nThe algorithm for obtaining linear prediction coefficients\nby the autocorrelation method is quite simple.  It is\nstraightforward to compute the matrix coefficients\n$R(m)$ from the speech samples and window coefficients.\nThe Durbin-Levinson method of solving matrix equations operates\ndirectly on this $R$-vector to produce the coefficient vector $a sub k$.\nThe complete procedure is given as Procedure 6.1, and is shown\ndiagrammatically in Figure 6.5.\n.FC \"Figure 6.5\"\n.RF\n.fi\n.na\n.nh\n.ul\nconst\nN=256; p=15;\n.ul\ntype\nsvec =\n.ul\narray\n[0..N\\-1]\n.ul\nof\nreal;\ncvec =\n.ul\narray\n[1..p]\n.ul\nof\nreal;\n.sp\n.ul\nprocedure\nautocorrelation(signal: vec; window: svec;\n.ul\nvar\ncoeff: cvec);\n.sp\n{computes linear prediction coefficients by autocorrelation method\nin coeff[1..p]}\n.sp\n.ul\nvar\nR, temp:\n.ul\narray\n[0..p]\n.ul\nof\nreal;\nn: [0..N\\-1]; i,j: [0..p]; E: real;\n.sp\n.ul\nbegin\n{window the signal}\n.in+6n\n.ul\nfor\nn:=0\n.ul\nto\nN\\-1\n.ul\ndo\nsignal[n] := signal[n]*window[n];\n.sp\n{compute autocorrelation vector}\n.br\n.ul\nfor\ni:=0\n.ul\nto\np\n.ul\ndo begin\n.in+2n\nR[i] := 0;\n.br\n.ul\nfor\nn:=0\n.ul\nto\nN\\-1\\-i\n.ul\ndo\nR[i] := R[i] + signal[n]*signal[n+i]\n.in-2n\n.ul\nend;\n.sp\n{solve the matrix equation by the Durbin-Levinson method}\n.br\nE := R[0];\n.br\ncoeff[1] := R[1]/E;\n.br\n.ul\nfor\ni:=2\n.ul\nto\np\n.ul\ndo begin\n.in+2n\nE := (1\\-coeff[i\\-1]*coeff[i\\-1])*E;\n.br\ncoeff[i] := R[i];\n.br\n.ul\nfor\nj:=1\n.ul\nto\ni\\-1\n.ul\ndo\ncoeff[i] := coeff[i] \\- R[i\\-j]*coeff[j];\n.br\ncoeff[i] := coeff[i]/E;\n.br\n.ul\nfor\nj:=1\n.ul\nto\ni\\-1\n.ul\ndo\ntemp[j] := coeff[j] \\- coeff[i]*coeff[i\\-j];\n.br\n.ul\nfor\nj:=1\n.ul\nto\ni\\-1\n.ul\ndo\ncoeff[j] := temp[j]\n.in-2n\n.ul\nend\n.in-6n\n.ul\nend.\n.nf\n.FG \"Procedure 6.1  Pascal algorithm for the autocorrelation method\"\n.pp\nThis algorithm is not quite as efficient as it might be, for some\nmultiplications are repeated during the calculation of the\nautocorrelation vector.  Blankinship (1974) shows how\nthe number of multiplications can be reduced by about half.\n.[\nBlankinship 1974\n.]\n.pp\nIf the algorithm is performed in fixed-point arithmetic\n(as it often is in practice because of speed considerations),\nsome scaling must be done.  The maximum and minimum values of\nthe windowed signal can be determined within the window\ncalculation loop, and one extra pass over the vector will\nsuffice to scale it to maximum significance.\n(Incidentally, if all sample values are the same the procedure\ncannot produce a solution because $E$ becomes zero, and this\ncan easily be checked when scaling.)\n.pp\nThe absolute value of the $R$-vector has no significance, and since\n$R(0)$ is always the greatest element, this can be set to the largest\nfixed-point number and the other $R$'s scaled down appropriately\nafter they have been calculated.\nThese scaling operations are shown as dashed boxes in Figure 6.5.\n$E$ decreases monotonically\nas the computation proceeds, so it is safe to initialize it to $R(0)$\nwithout extra scaling.  The remainder of the scaling is straightforward,\nwith the linear prediction coefficients $a sub k$ appearing as fractions.\n.rh \"The covariance method.\"\nOne of the advantages of linear predictive methods that was\npromised earlier was that it allows us to escape from\nthe problem of windowing.  To do this, we must abandon the\nrequirement that the coefficients of the matrix equation have\nthe symmetry property of autocorrelations.  Instead, suppose\nthat the range of $n$-summation uses a fixed number of\nelements, say N, starting at $n=h$, to estimate the prediction\ncoefficients between sample number $h$ and sample number $h+N$.\n.pp\nThis leads to the matrix equation\n.LB\n.EQ\nsum from k=1 to p ~a sub k sum from n=h to h+N-1 ~x(n-j)x(n-k) ~~=~~\nsum from n=h to h+N-1 ~x(n)x(n-j)~~~~j~=~1,~2,~...,~p.\n.EN\n.LE\nAlternatively, we could write\n.LB\n.EQ\nsum from k=1 to p ~a sub k ~ Q sub jk sup h~~=~~Q sub 0j sup h\n~~~~j~=~1,~2,~...,~p;\n.EN\n.LE\nwhere\n.LB\n.EQ\nQ sub jk sup h~~=~~sum from n=h to h+N-1 ~x(n-j)x(n-k).\n.EN\n.LE\nNote that some values of $x(n)$ outside the range  $h ~ <= ~ n ~ < ~ h+N$  are\nrequired:  these are shown diagrammatically in Figure 6.6.\n.FC \"Figure 6.6\"\n.pp\nNow  $Q sub jk sup h ~=~ Q sub kj sup h$,  so the equation has\na diagonally symmetric matrix; and in fact the matrix $Q sup h$ can\nbe shown to be positive semidefinite \\(em and is almost always positive\ndefinite in practice.  Advantage can be taken of these facts\nto provide a computationally efficient method for solving the\nequation.  According to a result called Cholesky's theorem, a\npositive definite symmetric matrix $Q$ can be factored into the form\n$Q ~ = ~ LL sup T$, where $L$ is a lower triangular matrix.\nThis leads to an efficient\nsolution algorithm.\n.pp\nThis method of computing prediction coefficients has become known\nas the\n.ul\ncovariance method.\nIt does not use windowing of the speech signal, and can give accurate\nestimates of the prediction coefficients with a smaller analysis\nframe than the autocorrelation method.  Typically, 50 to 100 speech samples\nmight be used to estimate the coefficients, and they are re-calculated\nevery 100 to 250 samples.\n.rh \"Algorithm for the covariance method.\"\nAn algorithm for the covariance method is given in Procedure 6.2,\n.RF\n.fi\n.na\n.nh\n.ul\nconst\nN=100; p=15;\n.ul\ntype\nsvec =\n.ul\narray\n[\\-p..N\\-1]\n.ul\nof\nreal;\ncvec =\n.ul\narray\n[1..p]\n.ul\nof\nreal;\n.sp\n.ul\nprocedure\ncovariance(signal: svec;\n.ul\nvar\ncoeff: cvec);\n.sp\n{computes linear prediction coefficients by covariance method\nin coeff[1..p]}\n.sp\n.ul\nvar\nQ:\n.ul\narray\n[0..p,0..p]\n.ul\nof\nreal;\nn: [0..N\\-1]; i,j,r: [0..p]; X: real;\n.sp\n.ul\nbegin\n{calculate upper-triangular covariance matrix in Q}\n.in+6n\n.ul\nfor\ni:=0\n.ul\nto\np\n.ul\ndo\n.in+2n\n.ul\nfor\nj:=i\n.ul\nto\np\n.ul\ndo begin\n.in+2n\nQ[i,j]:=0;\n.br\n.ul\nfor\nn:=0\n.ul\nto\nN\\-1\n.ul\ndo\n.in+2n\nQ[i,j] := Q[i,j] + signal[n\\-i]*signal[n\\-j]\n.in-2n\n.in-2n\n.ul\nend;\n.in-2n\n.sp\n{calculate the square root of Q}\n.br\n.ul\nfor\nr:=2\n.ul\nto\np\n.ul\ndo\n.in+2n\n.ul\nbegin\n.in+2n\n.ul\nfor\ni:=2\n.ul\nto\nr\\-1\n.ul\ndo\n.in+2n\n.ul\nfor\nj:=1\n.ul\nto\ni\\-1\n.ul\ndo\n.in+2n\nQ[i,r] := Q[i,r] \\- Q[j,i]*Q[j,r];\n.in-2n\n.ul\nfor\nj:=1\n.ul\nto\nr\\-1\n.ul\ndo\n.in+2n\n.ul\nbegin\n.in+2n\nX := Q[j,r];\n.br\nQ[j,r] := Q[j,r]/Q[j,i];\n.br\nQ[r,r] := Q[r,r] \\- Q[j,r]*X\n.in-2n\n.ul\nend\n.in-2n\n.in-2n\n.in-2n\n.ul\nend;\n.in-2n\n.sp\n{calculate coeff[1..p]}\n.br\n.ul\nfor\nr:=2\n.ul\nto\np\n.ul\ndo\n.in+2n\n.ul\nfor\ni:=1\n.ul\nto\nr\\-1\n.ul\ndo\nQ[0,r] := Q[0,r] \\- Q[i,r]*Q[0,i];\n.in-2n\n.ul\nfor\nr:=1\n.ul\nto\np\n.ul\ndo\nQ[0,r] := Q[0,r]/Q[r,r];\n.br\n.ul\nfor\nr:=p\\-1\n.ul\ndownto\n1\n.ul\ndo\n.in+2n\n.ul\nfor\ni:=r+1\n.ul\nto\np\n.ul\ndo\nQ[0,r] := Q[0,r] \\- Q[r,i]*Q[0,i];\n.in-2n\n.ul\nfor\nr:=1\n.ul\nto\np\n.ul\ndo\ncoeff[r] := Q[0,r]\n.in-6n\n.ul\nend.\n.nf\n.FG \"Procedure 6.2  Pascal algorithm for the covariance method\"\nand is shown diagrammatically in Figure 6.7.\n.FC \"Figure 6.7\"\nThe algorithm shown is not terribly efficient from a computation\nand storage point of view, although it is workable.  For one thing,\nit uses the obvious method for computing the covariance matrix\nby calculating\n.EQ\nQ sub 01 sup h ,\n.EN\n.EQ\nQ sub 02 sup h , ~ ...,\n.EN\n.EQ\nQ sub 0p sup h ,\n.EN\n.EQ\nQ sub 11 sup h , ...,\n.EN\nin turn, which repeats most of the multiplications $p$ times \\(em not\nan efficient procedure.  A simple alternative is to precompute the necessary\nmultiplications and store them in a  $(N+h) times (p+1)$ diagonally symmetric\ntable, but even apart from the extra storage required for this, the number\nof additions which must be performed subsequently to give the $Q$'s is far\nlarger than necessary.  It is possible, however, to write a procedure which is\nboth time- and space-efficient (Witten, 1980).\n.[\nWitten 1980 Algorithms for linear prediction\n.]\n.pp\nThe scaling problem is rather more tricky for the covariance\nmethod than for the autocorrelation method.  The $x$-vector\nshould be scaled initially in the same way as before, but now there\nare $p+1$ diagonal elements of the covariance matrix, any of which could\nbe the greatest element.  Of course,\n.LB\n.EQ\nQ sub jk ~~ <= ~~ Max ( Q sub 11 , Q sub 22 , ..., Q sub pp ),\n.EN\n.LE\nbut despite the considerable communality in the summands of the diagonal\nelements, there are no\n.ul\na priori\nbounds on the ratios between them.\n.pp\nThe only way to scale the $Q$ matrix properly is to calculate each of its $p$\ndiagonal elements and use the greatest as a scaling factor.\nAlternatively, the fact that\n.LB\n.EQ\nQ sub jk ~~ <= ~~ N times Max( x sub n sup 2 )\n.EN\n.LE\ncan be used to give a bound for scaling purposes; however, this\nis usually a rather conservative bound, and as $N$ is often around 100, several\nbits of significance will be lost.\n.pp\nScaling difficulties do not cease when $Q$ has been determined.  It is possible\nto show that the elements of the lower-triangular matrix $L$ which represents\nthe square root of $Q$ are actually\n.ul\nunbounded.\nIn fact there is a slightly different variant of the Cholesky decomposition\nalgorithm which guarantees bounded coefficients but suffers from the\ndisadvantage that it requires square roots to be taken (Martin\n.ul\net al,\n1965).\n.[\nMartin Peters Wilkinson 1965\n.]\nHowever, experience with the method indicates that it is rare for the elements\nof $L$ to exceed 16 times the maximum element of $Q$, and the possibility of\noccasional failure to adjust the coefficients may be tolerable in a practical\nlinear prediction system.\n.rh \"Comparison of autocorrelation and covariance analysis.\"\nThere are various factors which should be taken into account when\ndeciding whether to use the autocorrelation or covariance method for linear\npredictive analysis.  Furthermore, there is a rather different technique,\ncalled the \"lattice method\", which will be discussed shortly.\nThe autocorrelation method involves windowing, which means that in\npractice a rather longer stretch of speech should be used\nfor analysis.  We have illustrated this by setting $N$=256 in the\nautocorrelation algorithm and 100 in the covariance one.\nOffsetting the extra calculation that this entails is the\nfact that the Durbin-Levinson method of inverting a matrix is much more\nefficient than Cholesky decomposition.  In practice, this means\nthat similar amounts of computation are needed for each method \\(em a\ndetailed comparison is made in Witten (1980).\n.[\nWitten 1980 Algorithms for linear prediction\n.]\n.pp\nA factor which weighs against the covariance method is the\ndifficulty of scaling intermediate quantities within the algorithm.\nThe autocorrelation method can be implemented quite satisfactorily\nin fixed-point arithmetic, and this makes it more suitable for\nhardware implementation.  Furthermore, serious instabilities sometimes\narise with the covariance method, whereas it can be shown that\nthe autocorrelation one is always stable.  Nevertheless, the approximations\ninherent in the windowing operation, and the smearing effect of taking a\nlarger number of sample points, mean that covariance-method coefficients\ntend to represent the speech more accurately, if they can be obtained.\n.pp\nOne way of using the covariance method which has proved to be rather\nsatisfactory in practice is to synchronize the analysis frame with\nthe beginning of a pitch period, when the excitation is strongest.\nPitch synchronous techniques were discussed in Chapter 4 in the context\nof discrete Fourier transformation of speech.  The snag, of course, is that\npitch peaks do not occur uniformly in time, and furthermore it is difficult\nto estimate their locations precisely.\n.sh \"6.2  Linear predictive synthesis\"\n.pp\nIf the linear predictive coefficients and the error signal are available,\nit is easy to regenerate the original speech by\n.LB\n.EQ\nx(n)~=~~e(n)~+~~ sum from k=1 to p ~a sub k x(n-k) .\n.EN\n.LE\nIf the error signal is parametrized into the sound source type\n(voiced or unvoiced), amplitude, and pitch (if voiced), it can be\nregenerated by an impulse repeated at the appropriate pitch\nfrequency (if voiced), or white noise (if unvoiced).\n.pp\nHowever, it may be that the filter represented by the coefficients $a sub k$ is\nunstable, causing the output speech signal to oscillate wildly.\nIn fact, it is only possible for the covariance method to produce an\nunstable filter, and not the autocorrelation method \\(em although even\nwith the latter, truncation of the $a sub k$'s for transmission may turn\na stable filter into an unstable one.  Furthermore, the coefficients\n$a sub k$ are not suitable candidates for quantization, because small\nchanges in them can have a dramatic effect on the characteristics of\nthe synthesis filter.\n.pp\nBoth of these problems can be solved by using a different set of numbers,\ncalled\n.ul\nreflection coefficients,\nfor quantization and transmission.  Thus, for example, in Figures 6.1\nand 6.3 these reflection coefficients could be derived at the\ntransmitter, quantized, and used by the receiver to reproduce\nthe speech waveform.  They can be related to reflection and transmission\nparameters at the junctions of an acoustic tube model of the vocal tract;\nhence the name.  Procedure 6.3 shows an algorithm for calculating the\nreflection coefficients from the filter coefficients $a sub k$.\n.RF\n.fi\n.na\n.nh\n.ul\nconst\np=15;\n.ul\ntype\ncvec =\n.ul\narray\n[1..p]\n.ul\nof\nreal;\n.sp\n.ul\nprocedure\nreflection(coeff: cvec;\n.ul\nvar\nrefl: cvec);\n.sp\n{computes reflection coefficients in refl[1..p] corresponding\nto linear prediction coefficients in coeff[1..p]}\n.sp\n.ul\nvar\ntemp: cvec;  i, m: 1..p;\n.sp\n.ul\nbegin\n.in+6n\n.ul\nfor\nm:=p\n.ul\ndownto\n1\n.ul\ndo begin\n.in+2n\nrefl[m] := coeff[m];\n.br\n.ul\nfor\ni:=1\n.ul\nto\nm\\-1\n.ul\ndo\ntemp[i] := coeff[i];\n.br\n.ul\nfor\ni:=1\n.ul\nto\nm\\-1\n.ul\ndo\n.ti+2n\ncoeff[i] :=\n.ti+4n\n(coeff[i] + refl[m]*temp[m\\-i]) / (1 \\- refl[m]*refl[m]);\n.in-2n\n.ul\nend\n.in-6n\n.ul\nend.\n.nf\n.MT 2\nProcedure 6.3  Pascal algorithm for producing reflection coefficients\nfrom filter coefficients\n.TE\n.pp\nAlthough we will not go into the theoretical details here,\nreflection coefficients are bounded by $+-$1 for stable filters,\nand hence form a useful test for stability.  Having a limited\nrange makes them easy to quantize for transmission, and in fact\nthey behave better under quantization than do the filter coefficients.\nOne could resynthesize speech from reflection coefficients by first\nconverting them to filter coefficients and using the synthesis\nmethod described above.  However, it is natural to seek a single-stage\nprocedure which can regenerate speech directly from reflection\ncoefficients.\n.pp\nSuch a procedure does exist, and is called a\n.ul\nlattice filter.\nFigure 6.8 shows one form of lattice for speech synthesis.\n.FC \"Figure 6.8\"\nThe error signal (whether transmitted or synthesized)\nenters at the upper left-hand corner, passes along the top forward\nsignal path, being modified on the way, to give the output signal\nat the right-hand side.\nThen it passes back through a chain of delays along the bottom,\nbackward, path, and is used to modify subsequent forward signals.\nFinally it is discarded at the lower left-hand corner.\n.pp\nThere are $p$ stages in the lattice structure of Figure 6.8, where $p$ is the\norder of the linear predictive filter.\nEach stage involves two multiplications by the appropriate\nreflection coefficients, one by the backward signal \\(em the\nresult of which is added into the forward path \\(em and the other by\nthe forward signal \\(em the result of which is subtracted from the\nbackward path.  Thus the number of multiplications is twice\nthe order of the filter, and hence twice as many as for the\nrealization using coefficients $a sub k$.  If the labour necessary\nto turn the reflection coefficients into $a sub k$'s is included,\nthe computational load becomes the same.  Moreover, since the\nreflection coefficients need fewer quantization bits than the $a sub k$'s\n(for a given speech quality), the word lengths are smaller in the\nlattice realization.\n.pp\nThe advantages of the lattice method of synthesis over direct evaluation\nof the prediction using filter coefficients $a sub k$, then, are:\n.LB\n.NP\nthe reflection coefficients are used directly\n.NP\nthe stability of the filter is obvious from the reflection coefficient\nvalues\n.NP\nthe system is more tolerant to quantization errors in fixed-point\nimplementations.\n.LE\nAlthough it may seem unlikely that an unstable filter would be produced\nby linear predictive analysis, instability is in fact a real problem\nin non-lattice implementations.  For example,\ncoefficients are often interpolated at the receiver, to allow longer\nframe times and smooth over sudden transitions, and it is quite likely that\nan unstable configuration is obtained when interpolating filter coefficients\nbetween two stable configurations.\nThis cannot happen with reflection coefficients, however, because a\nnecessary and sufficient condition for stability is that all\ncoefficients lie in the interval $(-1,+1)$.\n.sh \"6.3  Lattice filtering\"\n.pp\nLattice filters are an important new method of linear predictive\n.ul\nanalysis\nas well as synthesis, and so\nit is worth considering the theory behind them a little further.\n.rh \"Theory of the lattice synthesis filter.\"\nFigure 6.9 shows a single stage of the synthesis lattice given earlier.\n.FC \"Figure 6.9\"\nThere are two signals at each side of the lattice, and the $z$-transforms\nof these have been labelled $X sup +$ and $X sup -$ at the left-hand side\nand $Y sup +$ and $Y sup -$ at the right-hand side.\nThe direction of signal flow is forwards along the upper (\"positive\") path\nand backwards along the lower (\"negative\") one.\n.pp\nThe signal flows show that the following two relationships hold:\n.LB\n.EQ\nY sup + ~=~~ X sup + ~+~ k z sup -1 Y sup - ~~~~~~\n.EN\nfor the forward (upper) path\n.br\n.EQ\nX sup - ~ =~ -kY sup + ~+~ z sup -1 Y sup - ~~~~~~~\n.EN\n\\h'-\\w'\\-'u'for the backward (lower) path.\n.LE\nRe-arranging the first equation yields\n.LB\n.EQ\nX sup + ~ =~~ Y sup + ~-~ k z sup -1 Y sup - ,\n.EN\n.LE\nand so we can describe the function of the lattice by a single matrix\nequation:\n.LB\n.ne4\n.EQ\nleft [ matrix {ccol {X sup + above X sup -}} right ] ~~=~~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {Y sup + above Y sup -}} right ] ~ .\n.EN\n.LE\nIt would be nice to be able to\ncall this an input-output equation, but it is not;\nfor the input signals to the lattice stage are $X sup +$ and $Y sup -$,\nand the outputs are $X sup -$ and $Y sup +$.\nWe have written it in this form because it allows a multi-stage lattice to\nbe described by cascading these matrix equations.\n.pp\nA single-stage lattice filter has $Y sup +$ and $Y sup -$ connected together,\nforming its output (call this $X sub output$), while the input is $X sup +$\n($X sub input$).\nHence the input is related to the output by\n.LB\n.EQ\nleft [ matrix {ccol {X sub input above \\(sq }} right ] ~~ =\n~~ left [ matrix {ccol {1 above -k} ccol {-k z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {X sub output above X sub output}} right ] ~ ,\n.EN\n.LE\nso\n.LB\n.EQ\nX sub input ~ = ~~ (1~-~ k z sup -1 )~X sub output ,\n.EN\n.LE\nor\n.LB\n.EQ\n{X sub output} over {X sub input} ~~=~~ 1 over {1~-~ k sub 1 z sup -1} ~ .\n.EN\n.LE\n(The symbol \\(sq is used here and elsewhere\nto indicate an unimportant element of a vector\nor matrix.)  This certainly has the form of a linear predictive\nsynthesis filter, which is\n.LB\n.EQ\nX(z) over E(z) ~~=~~ 1 over {1~-~~ sum from k=1 to p ~a sub k\nz sup -k}~~=~~ 1 over {1~-~a sub 1 z sup -1 } ~~~~~~\n.EN\nwhen $p=1$.\n.LE\n.pp\nThe behaviour of a second-order lattice filter, shown in Figure 6.10,\ncan be described by\n.LB\n.ne4\n.EQ\nleft [ matrix {ccol {X sub 3 sup + above X sub 3 sup -}} right ] ~~ =\n~~ left [ matrix {ccol {1 above -k sub 2 } ccol {-k sub 2 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {X sub 2 sup + above X sub 2 sup -}} right ]\n.EN\n.sp\n.ne4\n.EQ\nleft [ matrix {ccol {X sub 2 sup + above X sub 2 sup -}} right ] ~~ =\n~~ left [ matrix {ccol {1 above -k sub 1 } ccol {-k sub 1 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {X sub 1 sup + above X sub 1 sup -}} right ]\n.EN\n.LE\nwith\n.LB\n.ne3\n.EQ\nX sub 3 sup + ~=~X sub input\n.EN\n.br\n.EQ\nX sub 1 sup + ~=~ X sub 1 sup - ~=~ X sub output .\n.EN\n.LE\n.FC \"Figure 6.10\"\n$X sub 2 sup +$ and $X sub 2 sup -$ can be eliminated by substituting the\nsecond equation into the first, which yields\n.LB\n.EQ\nleft [ matrix {ccol {X sub input above \\(sq }} right ] ~~ mark =\n~~ left [ matrix {ccol {1 above -k sub 2 } ccol {-k sub 2 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {1 above -k sub 1 } ccol {-k sub 1 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {X sub output above X sub output}} right ]\n.EN\n.sp\n.sp\n.EQ\nlineup = ~~ left [ matrix {ccol {1+k sub 1 k sub 2 z sup -1 above \\(sq }\nccol { -k sub 1 z sup -1 -k sub 2 z sup -2 above \\(sq }} right ]\n~ left [ matrix {ccol {X sub output above X sub output}} right ] ~ .\n.EN\n.LE\nThis leads to an input-output relationship\n.LB\n.EQ\n{X sub output} over {X sub input} ~~ = ~~\n1 over {1~+~k sub 1 (k sub 2 -1)z sup -1 ~-~k sub 2 z sup -2} ~ ,\n.EN\n.LE\nwhich has the required form, namely\n.LB\n.EQ\n1 over {1~-~~ sum from k=1 to p ~a sub k z sup -k } ~~~~~~ (p=2)\n.EN\n.LE\nwhen\n.LB\n.EQ\na sub 1 ~=~-k sub 1 (k sub 2 -1)\n.EN\n.br\n.EQ\na sub 2 ~=~k sub 2.\n.EN\n.LE\n.pp\nA third-order filter is described by\n.LB\n.EQ\nleft [ matrix {ccol {X sub input above \\(sq }} right ] ~~ =\n~~ left [ matrix {ccol {1 above -k sub 3 } ccol {-k sub 3 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {1 above -k sub 2 } ccol {-k sub 2 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {1 above -k sub 1 } ccol {-k sub 1 z sup -1\nabove z sup -1}} right ]\n~ left [ matrix {ccol {X sub output above X sub output}} right ] ~ ,\n.EN\n.LE\nand brave souls can verify that this gives an input-output\nrelationship\n.LB\n.EQ\n{X sub output} over {X sub input} ~~ = ~~ \n1 over {1~+~[k sub 2 k sub 3 + k sub 1 (1-k sub 2 )] z sup -1 ~+~\n[k sub 1 k sub 3 (1-k sub 2 ) -k sub 2 ] z sup -2 ~-~ k sub 3 z sup -3 } ~ .\n.EN\n.LE\nIt is fairly obvious that a $p$'th order lattice filter will give the\nrequired all-pole $p$'th order synthesis form,\n.LB\n.EQ\n1 over { 1~-~~ sum from k=1 to p ~a sub k z sup -k } ~ .\n.EN\n.LE\n.pp\nWe have not shown that the algorithm given in Procedure 6.3 for producing\nreflection coefficients from filter coefficients gives those values\nfor $k sub i$ which are necessary to make the lattice filter equivalent\nto the ordinary synthesis filter.  However, this is the case, and it is\neasy to verify by hand for the first, second, and third-order cases.\n.rh \"Different lattice configurations.\"\nThe lattice filters of Figures 6.8, 6.9, and 6.10 have two multipliers\nper section.\nThis is called a \"two-multiplier\" configuration.\nHowever, there are other configurations which achieve\nthe same effect, but require different numbers of multiplies.\nFigure 6.11 shows one-multiplier and four-multiplier configurations,\nalong with the familiar two-multiplier one.\n.FC \"Figure 6.11\"\nIt is easy to verify that the three configurations can be modelled in\nmatrix terms by\n.LB\n.ne4\n$\nleft [ matrix {ccol {X sup + above X sup -}} right ] ~~ = ~~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {Y sup + above Y sup -}} right ]\n$\t\ttwo-multiplier configuration\n.sp\n.sp\n.ne4\n$\nleft [ matrix {ccol {X sup + above X sup -}} right ] ~~ = ~~\nleft [ {1-k over 1+k} right ] sup 1/2 ~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {Y sup + above Y sup -}} right ]\n$\tone-multiplier configuration\n.sp\n.sp\n.ne4\n$\nleft [ matrix {ccol {X sup + above X sup -}} right ] ~~ = ~~\n1 over {(1-k sup 2) sup 1/2} ~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {Y sup + above Y sup -}} right ]\n$\tfour-multiplier configuration.\n.LE\nEach of the three has the same frequency-domain response, although\na different constant factor is involved in each case.\nThe effect of this can be annulled by performing a single multiply\noperation on the output of a complete lattice chain.\nThe multiplier has the form\n.LB\n.EQ\nleft [ {1 - k sub p} over {1 + k sub p} ~.~\n{1 - k sub p-1} over {1 + k sub p-1} ~.~...~.~\n{1 - k sub 1} over {1 + k sub 1} right ] sup 1/2\n.EN\n.sp\n.LE\nfor single-multiplier lattices, and\n.LB\n.EQ\nleft [ 1 over {1 - k sub p sup 2} ~.~\n1 over {1 - k sub p-1 sup 2} ~.~...~.~\n1 over {1 - k sub 1 sup 2} right ] sup 1/2\n.EN\n.LE\nfor four-multiplier lattices, where the reflection coefficients\nin the lattice are $k sub p$, $k sub p-1$, ..., $k sub 1$.\n.pp\nThere are important differences between these three configurations.\nIf multiplication is time-consuming, the one-multiplier model has obvious\ncomputational advantages over the other two methods.\nHowever, the four-multiplier structure behaves substantially better\nin finite word-length implementations.  It is easy to show that, with this\nconfiguration,\n.LB\n.EQ\n(X sup - ) sup 2 ~+~ (Y sup + ) sup 2 ~~ = ~~\n(X sup + ) sup 2 ~+~ (z sup -1 Y sup - ) sup 2 ,\n.EN\n.LE\n\\(em a relationship which suggests that the \"energy\" in the\nthe input signals, namely  $X sup +$ and $Y sup -$,  is preserved in the output\nsignals,  $X sup -$ and $Y sup +$.\nNotice that care must be taken with the $z$-transforms, since squaring is a\nnon-linear operation.  $(z sup -1 Y sup - ) sup 2$  means the square of\nthe previous value of  $Y sup -$,  which is not the same\nas  $z sup -2 (Y sup - ) sup 2$.\n.pp\nIt has been shown (Gray and Markel, 1975) that the four-multiplier\nconfiguration has some stability properties which are not shared by other\ndigital filter structures.\n.[\nGray Markel 1975 Normalized digital filter structure\n.]\nWhen a linear predictive filter is used for synthesis, the parameters\nof the filter \\(em the $k$-parameters in the case of lattice filters,\nand the $a$-parameters in the case of direct ones \\(em change with time.\nIt is usually rather difficult to guarantee stability in the case of\ntime-varying filter parameters, but some guarantees can be made for a\nchain of four-multiplier lattices.  Furthermore, if the input is a\ndiscrete delta function, the cumulative energies at each stage of the\nlattice are the same, and so maximum dynamic range will be achieved\nfor the whole filter if each section is implemented with the same\nword size.\n.rh \"Lattice analysis.\"\nIt is quite easy to construct a filter which is inverse to\na single-stage lattice.\nThe structure of Figure 6.12(a) does the job.\n(Ignore for a moment\nthe dashed lines connecting Figure 6.12(a) and (b).)  Its matrix transfer\nfunction is\n.FC \"Figure 6.12\"\n.LB\n.ne4\n$\nleft [ matrix {ccol {Y sup + above Y sup -}} right ] ~~=~~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {X sup + above X sup -}} right ]\n$\tanalysis lattice (Figure 6.12(a)).\n.LE\nNotice that this is exactly the same as the transfer function of the\nsynthesis lattice of Figure 6.9, which is reproduced\nin Figure 6.12(b), except that the $X$'s and $Y$'s are reversed:\n.LB\n.ne4\n$\nleft [ matrix {ccol {X sup + above X sup -}} right ] ~~=~~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}} right ]\n~ left [ matrix {ccol {Y sup + above Y sup -}} right ]\n$\tsynthesis lattice (Figure 6.12(b)),\n.LE\nor, in other words,\n.LB\n.ne4\n$\nleft [ matrix {ccol {Y sup + above Y sup -}} right ] ~~ = ~~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}}\nright ] sup -1\n~ left [ matrix {ccol {X sup + above X sup -}} right ]\n$\tsynthesis lattice (Figure 6.12(b)).\n.LE\nHence if the filters of Figures 6.12(a) and (b) were connected together\nas shown by the dashed lines, they\nwould cancel each other out, and the overall transfer would be unity:\n.LB\n.ne4\n.EQ\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}}\nright ] ~\nleft [ matrix {ccol {1 above -k} ccol {-kz sup -1 above z sup -1}}\nright ] sup -1 ~~ = ~~\nleft [ matrix {ccol {1 above 0} ccol {0 above 1}} right ] ~ .\n.EN\n.LE\nActually, such a connection is not possible in physical terms,\nfor although the upper paths can be joined together the lower ones can not.\nThe right-hand lower point of Figure 6.12(a) is an\n.ul\noutput\nterminal, and so is the left-hand lower one of Figure 6.12(b)!  However,\nthere is no need to envisage a physical connection of the lower paths.\nIt is sufficient for cancellation just to assume that the signals at both\nof the points turn out to be the same.\n.pp\nAnd they do.\nThe general case of a $p$-stage analysis lattice\nconnected to a $p$-stage synthesis\nlattice is shown in Figure 6.13.\n.FC \"Figure 6.13\"\nNotice that the forward and backward paths are connected together at both\nof the extreme ends of the system.\nIt is not difficult to show that under these\nconditions the signal at the lower righthand\nterminal of the analysis chain will equal that at the lower lefthand\nterminal of the synthesis chain, even though they are not connected,\nprovided the upper terminals are connected together as shown by the dashed\nline.\nOf course, the reflection coefficients  $k sub 1$, $k sub 2$, ...,\n$k sub p$  in the analysis lattice must equal those in the synthesis\nlattice, and as Figure 6.13 shows the order is reversed in the synthesis\nlattice.\nSuccessive analysis and synthesis sections pair off, working from\nthe middle outwards.  At each stage the sections cancel each other out,\ngiving a unit transfer function as demonstrated above.\n.rh \"Estimating reflection coefficients.\"\nAs stated earlier in this chapter, the key problem in linear prediction is to\ndetermine the values of the predictive coefficients \\(em in this case, the\nreflection coefficients.\nIf this is done correctly, we have shown using Procedure 6.3 that\nthe the synthesis part of Figure 6.13 performs the same calculation that\na conventional direct-form linear predictive synthesizer would, and hence\nthe signal that excites it \\(em that is, the signal represented by the\ndashed line \\(em must be the prediction residual, or error signal, discussed\nearlier.  The system is effectively the same as the high-order adaptive\ndifferential pulse code modulation one of Figure 6.1.\n.pp\nOne of the most interesting features of the lattice structure for\nanalysis filters is that calculation of suitable values for the\nreflection coefficients can be done locally at each stage of the lattice.\nFor example, consider the $i$'th section of the analysis lattice in\nFigure 6.13.  It is possible to determine a suitable value of $k sub i$\nsimply by performing a calculation on the inputs to the $i$'th\nsection (ie $X sup +$ and $X sup -$ in Figure 6.12).\nNo longer need the complicated global optimization technique of matrix\ninversion be used, as in the autocorrelation and covariance methods discussed\nearlier.\n.pp\nA suitable value for $k$ in the single lattice section of Figure 6.12 is\n.LB\n.EQ\nk~ = ~~ {E[ x sup + (n) x sup - (n-1)]} over\n{( E[ x sup + (n) sup 2 ] E[ x sup - (n-1) sup 2 ] ) sup 1/2} ~~ ;\n.EN\n.LE\nthat is, the statistical correlation between $x sup + (n)$ and\n$x sup - (n-1)$.\nHere, $x sup + (n)$ and $x sup - (n)$ represent the input signals to the\nupper and lower paths (recall that $X sup +$ and $X sup -$\nare their $z$-transforms).\n$x sup - (n-1)$ is just $x sup - (n)$ delayed by one time unit, that is,\nthe output of the $z sup -1$ box in the Figure.\n.pp\nThe criterion of optimality for the autocorrelation and covariance methods\nwas that the prediction error, that is, the signal which emerges from\nthe right-hand end of the upper path of a lattice analysis filter,\nshould be minimized in a mean-square sense.\nThe reflection coefficients obtained from the above formula do not necessarily\nsatisfy any such global minimization criterion.\nNevertheless, they do keep the error signal small, and have been used with\nsuccess in speech analysis systems.\n.pp\nIt is easy to minimize the output from either the upper or the lower path\nof the lattice filter at each stage.  For example, the $z$-transform of the\nupper output is given by\n.LB\n.EQ\nY sup + ~~=~~ X sup + ~-~ k z sup -1 X sup - ,\n.EN\n.LE\nor\n.LB\n.EQ\ny sup + (n) ~~=~~ x sup + (n) ~-~ k x sup - (n-1) .\n.EN\n.LE\nHence\n.LB\n.EQ\nE[y sup + (n) sup 2 ] ~~ = ~~ E[x sup + (n) sup 2 ] ~-~\n2kE[x sup + (n) x sup - (n-1) ] ~+~ k sup 2 E [x sup - (n-1) sup 2 ] ,\n.EN\n.LE\nwhere $E$ stands for expected value, and this reaches a minimum when the\nderivative with respect to $k$ becomes zero:\n.LB\n.EQ\n-2E[x sup + (n) x sup - (n-1) ] ~+~ 2kE[x sup - (n-1) sup 2 ] ~~=~0 ,\n.EN\n.LE\nthat is, when\n.LB\n.EQ\nk~ = ~~ {E[x sup + (n) x sup - (n-1) ]} over {E[x sup - (n-1) sup 2 ]\n} ~ .\n.EN\n.LE\nA similar calculation shows that the output of the lower path is minimized\nwhen\n.LB\n.EQ\nk~ = ~~ {E[x sup + (n) x sup - (n-1) ]} over {E[x sup + (n-1) sup 2 ]\n} ~ .\n.EN\n.LE\nUnfortunately, either of these expressions can exceed 1, leading to an\nunstable filter.\nThe value of $k$ cited earlier is the geometric mean of these two\nexpressions, and since it is a correlation coefficient, must be less than 1.\n.pp\nAnother possibility is to minimize the expected value of the sum of the\nsquares of the upper and lower outputs:\n.LB\n.EQ\ny sup + (n) sup 2 ~+~ y sup - (n) sup 2 ~~ = ~~\n(1+k sup 2 )x sup + (n) sup 2 ~-~ 2kx sup + (n) x sup - (n-1) ~+~\n(1+k sup 2 )x sup - (n) sup 2 .\n.EN\n.LE\nTaking expected values and setting the derivative with respect to k to zero\nleads to\n.LB\n.EQ\nk~ = ~~ {E[x sup + (n) x sup - (n-1) ]} over\n{ half ~ E[x sup + (n) sup 2 ~+~ x sup - (n-1) sup 2 ]} ~.\n.EN\n.LE\nThis also is guaranteed to be less than 1, and has given good results\nin speech analysis systems.\n.pp\nFigure 6.14 shows the implementation of a single section of an analysis\nlattice.\n.FC \"Figure 6.14\"\nThe signals $x sup + (n)$ and $x sup - (n-1)$ are fed to a\ncorrelator, which produces a suitable value for $k$.\nThis value is used to calculate the output of the lattice section,\nand hence the input to the next lattice section.\nThe reflection coefficient needs to be low-pass filtered, because it will\nonly be transmitted to the synthesizer occasionally (say every 20\\ msec) and so a\nshort-term average is required.\n.pp\nOne implementation of the correlator is shown in Figure 6.15 (Kang, 1974).\n.[\nKang 1974\n.]\n.FC \"Figure 6.15\"\nThis calculates the value of $k$ given by the last equation above, and does it\nby summing and differencing the two\nsignals $x sup + (n)$ and $x sup - (n-1)$, squaring the results to give\n.LB\n.EQ\nx sup + (n) sup 2 + 2x sup + (n mark ) x sup - (n-1) +x sup - (n-1) sup 2\n~~~~~~~~ x sup + (n) sup 2 - 2x sup + (n) x sup - (n-1) +x sup - (n-1) sup 2\n~ ,\n.EN\n.LE\nand summing and differencing these, to yield\n.LB\n.EQ\nlineup 2x sup + (n) sup 2 + 2x sup - (n-1) sup 2 ~~~~~~~~\n4x sup + (n) x sup - (n-1) ~ .\n.EN\n.LE\n.sp\nBefore these are divided to give the final coefficient $k$, they are\nindividually low-pass filtered.\nWhile some rather complex schemes have been proposed,\nbased upon Kalman filter theory (eg Matsui\n.ul\net al,\n1972),\n.[\nMatsui Nakajima Suzuki Omura 1972\n.]\na simple exponential weighted past average has been found to be\nsatisfactory.  This has $z$-transform\n.LB\n.EQ\n1 over {64 - 63 z sup -1} ~ ,\n.EN\n.LE\nthat is, in the time domain,\n.LB\n.EQ\ny(n)~ = ~~ 63 over 64 ~ y(n-1) ~+~ 1 over 64 ~ y(n) ~ .\n.EN\n.LE\nThis filter exponentially averages past sample values\nwith a time-constant of 64 sampling intervals\n\\(em that is, 8\\ msec at an 8\\ kHz sampling rate.\n.sh \"6.4  Pitch estimation\"\n.pp\nIt is sometimes useful to think of linear prediction as a kind of\ncurve-fitting technique.\nFigure 6.16 illustrates how four samples of a speech signal can predict\nthe next one.\n.FC \"Figure 6.16\"\nIn essence, a curve is drawn through four points\nto predict the position of the fifth, and only the prediction error\nis actually transmitted.  Now if the order of linear prediction\nis high enough (at least 10), and if the coefficients are chosen\ncorrectly, the prediction will closely model the resonances of the\nvocal tract.  Thus the error will actually be zero, except at pitch\npulses.\n.pp\nFigure 6.17 shows a segment of voiced speech together with the prediction\nerror (often called the prediction residual).\n.FC \"Figure 6.17\"\nIt is apparent that the\nerror is indeed small, except at pitch pulses.\nThis suggests that a good way to determine the pitch period is to examine\nthe error signal, perhaps by looking at its autocorrelation function.\nAs with all pitch detection methods, one must be\ncareful:  spurious peaks can occur, especially in nasal sounds when\nthe all-pole model provided by linear prediction fails.  Continuity\nconstraints, which use previous values of pitch period when determining\nwhich peak to accept as a new pitch impulse, can eliminate many of these\nspurious peaks.  Unvoiced speech should produce an error signal with no\nprominent peaks, and this needs to be detected.\nVoiced fricatives are a difficult case:  peaks should be present\nbut the general noise level of the error signal will be greater than\nit is in\npurely voiced speech.\nSuch considerations have been taken into account in a practical pitch\nestimation system based upon this technique (Markel, 1972).\n.[\nMarkel 1972 SIFT\n.]\n.pp\nThis method of pitch detection highlights another advantage of the lattice\nanalysis technique.  When using autocorrelation or covariance analysis to\ndetermine the filter (or reflection) coefficients, the error signal is not\nnormally produced.  It can, of course, be found by taking the speech samples\nwhich constitute the current frame and running them through an analysis\nfilter whose parameters are those determined by the analysis, but this\nis a computationally demanding exercise, for the filter must run at the\nspeech sampling rate (say 8\\ kHz) instead of at the frame rate (say 50\\ Hz).\nUsually, pitch is estimated by other methods, like those discussed in\nChapter 4, when using autocorrelation or covariance linear prediction.\nHowever, we have seen above that with the lattice method, the error\nsignal is produced as a byproduct:  it appears at the right-hand end\nof the  upper path of the lattice chain.  Thus it is already available\nfor use in determining pitch periods.\n.sh \"6.5  Parameter coding for linear predictive storage or transmission\"\n.pp\nIn this section, the coding requirements of linear predictive parameters\nwill be examined.  The parameters that need to be stored or transmitted\nare:\n.LB\n.NP\npitch\n.NP\nvoiced-unvoiced flag\n.NP\noverall amplitude level\n.NP\nfilter coefficients or reflection coefficients.\n.LE\nThe first three are parameters of the excitation source.\nThey can be derived directly from the error signal as indicated above, if\nit is generated (as it is in lattice implementations); or by other\nmethods if no error signal is calculated.\nThe filter or reflection coefficients are, of course, the main product\nof linear predictive analysis.\n.pp\nIt is generally agreed that around 60 levels, logarithmically spaced,\nare needed to represent pitch for telephone quality speech.\nThe voiced-unvoiced indication requires one bit, but since pitch is\nirrelevant in unvoiced speech it can be coded as one of the pitch\nlevels.  For example, with 6-bit coding of pitch, the value 0 can be\nreserved to indicate unvoiced speech, with values 1\\-63 indicating the\npitch of voiced speech.\nThe overall gain has not been discussed above:  it is simply the average\namplitude of the error signal.  Five bits on a logarithmic scale\nare sufficient to represent it.\n.pp\nFilter coefficients are not very amenable to quantization.  At least\n8\\-10\\ bits are required for each one.  However, reflection coefficients\nare better behaved, and 5\\-6\\ bits each seems adequate.  The number of\ncoefficients that must be stored or transmitted is the same as the\norder of the linear prediction:  10 is commonly used for low-quality\nspeech, with as many as 15 for higher qualities.\n.pp\nThese figures give around 100\\ bits/frame for a 10'th order system using\nfilter coefficients, and around 65\\ bits/frame for a 10'th order system\nusing reflection coefficients.  Frame lengths vary between 10\\ msec\nand 25\\ msec, depending on the quality desired.  Thus for 20\\ msec frames,\nthe data rates work out at around 5000\\ bit/s using filter coefficients,\nand 3250\\ bit/s using reflection coefficients.\n.pp\nSubstantially lower data rates can be achieved by more careful\ncoding of parameters.  In 1976, the US Government defined a standard\ncoding scheme for 10-pole linear prediction with a data rate of\n2400\\ bit/s \\(em conveniently chosen as one of the\ncommonly-used rates for serial data transmission.\nThis standard, called LPC-10, tackles the difficult problem of\nprotection against transmission errors (Fussell\n.ul\net al,\n1978).\n.[\nFussell Boudra Abzug Cowing 1978\n.]\n.pp\nWhenever data rates are reduced, redundancy inherent in the signal is\nnecessarily lost and so the effect of transmission errors becomes\ngreatly magnified.\nFor example, a single corrupted sample in PCM transmission of speech\nwill probably not be noticed, and even a short burst of errors will be\nperceived as a click which can readily be distinguished from the speech.\nHowever, any error in LPC transmission will last for one entire\nframe \\(em say 20\\ msec \\(em and worse still, it will be integrated into the\nspeech signal and not easily discriminated from it by the listener's brain.\nA single corruption may, for example, change a voiced frame into an\nunvoiced one, or vice versa.  Even if it affects only \na reflection coefficient it will change the resonance characteristics\nof that frame, and change them in a way that does not simply sound like\nsuperimposed noise.\n.pp\nTable 6.1 shows the LPC-10 coding scheme.\n.RF\n.in+0.1i\n.ta 2.0i +1.8i +0.6i\n.nr x1 (\\w'voiced sounds'/2)\n.nr x2 (\\w'unvoiced sounds'/2)\n.ul\n\t\\h'-\\n(x1u'voiced sounds\t\\h'-\\n(x2u'unvoiced sounds\n.sp\npitch/voicing\t7\t7\t60 pitch levels, Hamming\n\t\t\t\\h'\\w'00 'u'and Gray coded\nenergy\t5\t5\tlogarithmically coded\n$k sub 1$\t5\t5\tcoded by table lookup\n$k sub 2$\t5\t5\tcoded by table lookup\n$k sub 3$\t5\t5\n$k sub 4$\t5\t5\n$k sub 5$\t4\t\\-\n$k sub 6$\t4\t\\-\n$k sub 7$\t4\t\\-\n$k sub 8$\t4\t\\-\n$k sub 9$\t3\t\\-\n$k sub 10$\t2\t\\-\nsynchronization\t1\t1\talternating 1,0 pattern\nerror detection/\t\\-\t\\h'-\\w'0'u'21\ncorrection\n\t\\h'-\\w'__'u+\\w'0'u'__\t\\h'-\\w'__'u+\\w'0'u'__\n.sp\n\t\\h'-\\w'0'u'54\t\\h'-\\w'0'u'54\n.sp\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n\tframe rate: 44.4\\ Hz (22.5\\ msec frames)\n.in 0\n.FG \"Table 6.1  Bit requirements for each parameter in LPC-10 coding scheme\"\nDifferent coding is used for voiced and unvoiced frames.\nOnly four reflection coefficients are transmitted for unvoiced frames,\nbecause it has been determined that no perceptible increase in speech quality\noccurs when more are used.\nThe bits saved are more fruitfully employed to provide error detection\nand correction for the other parameters.\nSeven bits are used for pitch and the voiced-unvoiced flag, and they are\nredundant in that only 60 possible pitch values are\nallowed.\nMost transmission errors in this field will be detected by the receiver;\nwhich can then use an estimate of pitch based on previous values and\ndiscard the erroneous one.  Pitch values are also Gray coded so that\neven if errors are not detected, there is a good chance that an adjacent\npitch value is read instead.\nDifferent numbers of bits are allocated to the various reflection\ncoefficients:  experience shows that the lower-numbered ones contribute\nmost highly to intelligibility and so these are quantized most finely.\nIn addition, a table lookup operation is performed on the code\ngenerated for the first two, providing a non-linear quantization which is\nchosen to minimize the error on a statistical basis.\n.pp\nWith 54\\ bits/frame and 22.5\\ msec frames, LPC-10 requires a 2400\\ bit/s\ndata rate.  Even lower rates have been used successfully for lower-quality\nspeech.  The Speak 'n Spell toy, described in Chapter 11, has an\naverage data rate of 1200\\ bit/s.  Rates as low as 600\\ bit/s have\nbeen achieved (Kang and Coulter, 1976) by pattern recognition techniques operating\non the reflection coefficients:  however, the speech quality is not good.\n.[\nKang Coulter 1976\n.]\n.sh \"6.6  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"6.7  Further reading\"\n.pp\nMost recent books on digital signal processing contain some information\non linear prediction (see Oppenheim and Schafer, 1975; Rabiner and Gold, 1975;\nand Rabiner and Schafer, 1978; all referenced at the end of Chapter 4).\n.LB \"nn\"\n.\\\"Atal-1971-1\n.]-\n.ds [A Atal, B.S.\n.as [A \" and Hanauer, S.L.\n.ds [D 1971\n.ds [T Speech analysis and synthesis by linear prediction of the acoustic wave\n.ds [J JASA\n.ds [V 50\n.ds [P 637-655\n.nr [P 1\n.ds [O August\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\nThis paper is of historical importance because it introduced the idea\nof linear prediction to the speech processing community.\n.in-2n\n.\\\"Makhoul-1975-2\n.]-\n.ds [A Makhoul, J.I.\n.ds [D 1975\n.ds [K *\n.ds [T Linear prediction: a tutorial review\n.ds [J Proc IEEE\n.ds [V 63\n.ds [N 4\n.ds [P 561-580\n.nr [P 1\n.ds [O April\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\nAn interesting, informative, and readable survey of linear prediction.\n.in-2n\n.\\\"Markel-1976-3\n.]-\n.ds [A Markel, J.D.\n.as [A \" and Gray, A.H.\n.ds [D 1976\n.ds [T Linear prediction of speech\n.ds [I Springer Verlag\n.ds [C Berlin\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is the only book which is entirely devoted to linear prediction of speech.\nIt is an essential reference work for those interested in the subject.\n.in-2n\n.\\\"Wiener-1947-4\n.]-\n.ds [A Wiener, N.\n.ds [D 1947\n.ds [T Extrapolation, interpolation and smoothing of stationary time series\n.ds [I MIT Press\n.ds [C Cambridge, Massachusetts\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nLinear prediction is often thought of as a relatively new technique,\nbut it is only its application to speech processing that is novel.\nWiener develops all of the basic mathematics used in linear prediction\nof speech, except the lattice filter structure.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"7  JOINING SEGMENTS OF SPEECH\"\n.ds RT \"Joining segments of speech\n.ds CX \"Principles of computer speech\n.pp\nThe obvious way to provide speech output from computers\nis to select the basic acoustic units to be used; record them;\nand generate utterances by concatenating together appropriate segments\nfrom this pre-stored inventory.\nThe crucial question then becomes, what are the basic units?\nShould they be whole sentences, words, syllables, or phonemes?\n.pp\nThere are several trade-offs to be considered here.\nThe larger the units, the more utterances have to be stored.\nIt is not so much the length of individual utterances that is of concern,\nbut rather their variety, which tends to increase exponentially instead\nof linearly with the size of the basic unit.  Numbers provide an\neasy example:  there are $10 sup 7$ 7-digit telephone numbers, and it is\ncertainly infeasible to record each one individually.\nNote that as storage technology improves the limitation is becoming\nmore and more one of recording the utterances in the first place rather\nthan finding somewhere to store them.\nAt a PCM data rate of 50\\ Kbit/s, a 100\\ Mbyte disk can hold over 4\\ hours\nof continuous speech.\nWith linear predictive coding at 1\\ Kbit/s it holds 0.8 of a\nmegasecond \\(em well over a week.  And this is a 24-hour 7-day week,\nwhich corresponds to a working month; and continuous speech \\(em without\npauses \\(em which probably requires another factor of five for\nproduction by a person.\nSetting up a recording session to fill the disk would be a formidable\ntask indeed!\nFurthermore, the use of videodisks \\(em which will be common domestic items\nby the end of the decade \\(em could increase these figures by a factor of 50.\n.pp\nThe word seems to be a sensibly-sized basic unit.\nMany applications use a rather limited vocabulary \\(em 190 words\nfor the airline reservation system described in Chapter 1.\nEven at PCM data rates, this will consume less than 0.5\\ Mbyte of\nstorage.\nUnfortunately, coarticulation and prosodic factors now come into play.\n.pp\nReal speech is connected \\(em there are few gaps between words.\nCoarticulation, where sounds are affected by those on either side,\nnaturally operates across word boundaries.\nAnd the time constants of coarticulation are associated with the\nmechanics of the vocal tract and hence measure tens or hundreds\nof msec.  Thus the effects straddle several pitch periods (100\\ Hz pitch\nhas 10\\ msec period) and cannot be simulated by simple interpolation of the\nspeech waveform.\n.pp\nProsodic features \\(em notably pitch and rhythm \\(em span much longer\nstretches of speech than single words.  As far as most speech output\napplications are concerned, they operate at the utterance level of\na single, sentence-sized, information unit.  They cannot be\naccomodated if speech waveforms of individual words of\nthe utterance are stored,\nfor it is rarely feasible to alter the fundamental\nfrequency or duration of a time waveform without changing all the formant\nresonances as well.\nHowever, both word-to-word coarticulation and the essential features\nof rhythm and intonation can be incorporated if the stored words are\ncoded in source-filter form.\n.pp\nFor more general applications of speech output, the limitations of\nword storage soon become apparent.  Although people's daily\nvocabularies are not large, most words have a variety\nof inflected forms which need to be treated separately if a strict\npolicy is adopted of word storage.  For instance, in this book\nthere are 84,000 words, and 6,500 (8%) different ones (counting\ninflected forms).\nIn Chapter 1 alone, there are 6,800 words and 1,700 (25%) different ones.\n.pp\nIt seems crazy to treat a simple inflection like \"$-s$\" or its voiced\ncounterpart, \"$-z$\" (as in \"inflection\\c\n.ul\ns\\c\n\"),\nas a totally different word from the base form.\nBut once you consider storing roots and endings separately,\nit becomes apparent\nthat there is a vast number of different endings, and it is difficult to know\nwhere to draw the line.  It is natural to think instead of simply\nusing the syllable as the basic unit.\n.pp\nA generous estimate of the number of different syllables in English is 10,000.\nAt three a second, only about an\nhour's storage is required for them all.  But waveform storage\nwill certainly not do.\nAlthough coarticulation effects between words are needed to make\nspeech sound fluent, coarticulation between syllables is necessary\nfor it even to be\n.ul\ncomprehensible.\nAdopting a source-filter form of representation is essential, as is\nsome scheme of interpolation between syllables which simulates\ncoarticulation.\nUnfortunately, a great deal of acoustic action occurs at syllable\nboundaries \\(em stops are exploded, the sound source changes\nbetween voicing and frication, and so on.  It may be more appropriate\nto consider inverse syllables, comprising a vowel-consonant-vowel sequence\ninstead of consonant-vowel-consonant.\n(These have jokingly been dubbed \"lisibles\"!)\n.pp\nThere is again some considerable practical difficulty in creating\nan inventory of syllables, or lisibles.\nNow it is not so much the recording that is impractical, but\nthe editing needed to ensure that the cuts between syllables are made\nat exactly the right point.  As units get smaller, the exact\nplacement of the boundaries becomes ever more critical; and several thousand\nsensitive editing jobs is no easy task.\n.pp\nSince quite general effects of coarticulation must be accomodated\nwith syllable synthesis, there will not necessarily be significant\ndeterioration if smaller, demisyllable, units are employed.\nThis reduces the segment inventory to an estimated 1000\\-2000 entries,\nand the tedious job of editing each one individually becomes at\nleast feasible, if not enviable.\nAlternatively, the segment inventory could be created by artificial\nmeans involving cut-and-try experiments with resonance parameters.\n.pp\nThe ultimate in economy of inventory size, of course, is to use\nphonemes as the basic unit.  This makes the most critical\npart of the task interpolation between units, rather than their\nconstruction or recording.  With only about 40 phonemes\nin English, each one can be examined in many different contexts to\nascertain the best data to store.\nThere is no need to record them directly from a human voice \\(em it\nwould be difficult anyway for most cannot be produced in isolation.\nIn fact, a phoneme is an abstract unit, not a particular sound\n(recall the discussion of phonology in Chapter 2), and so it is\nmost appropriate that data be abstracted from several different\nrealizations rather than an exact record made of any one.\n.pp\nIf information is stored about phonological units of\nspeech \\(em phonemes \\(em the difficult task of phonological-to-phonetic\nconversion must necessarily be performed automatically.\nAllophones are created by altering the transitions between units,\nand to a lesser extent by modifying the central parts of the units\nthemselves.\nThe rules for making transitions will have a big effect on the\nquality of the resulting speech.\nInstead of trying to perform this task automatically by a computer\nprogram, the allophones themselves could be stored.  This will\nease the job of generating transitions between segments, but\nwill certainly not eliminate it.\nThe total number of allophones will depend on the narrowness of the\ntranscription system:  60\\-80 is typical, and it is unlikely to exceed\none or two hundred.  In any case there will not be a storage problem.\nHowever, now the burden of producing an allophonic transcription\nhas been transferred to the person who codes the utterance prior\nto synthesizing it.  If he is skilful and patient, he should\nbe able to coax the system into producing fairly understandable\nspeech, but the effort required for this on a per-utterance basis\nshould not be underestimated.\n.RF\n.nr x0 \\w'sentences  '\n.nr x1 \\w'  '\n.nr x2 \\w'depends on  '\n.nr x3 \\w'generalized or  '\n.nr x4 \\w'natural speech  '\n.nr x5 \\w'author of segment'\n.nr x6 \\n(x0u+\\n(x1u+\\n(x2u+\\n(x3u+\\n(x4u+\\n(x5u\n.nr x7 (\\n(.l-\\n(x6)/2\n.in \\n(x7u\n.ta \\n(x0u +\\n(x1u +\\n(x2u +\\n(x3u +\\n(x4u\n\t|\tsize of\tstorage\tsource of\tprincipal\n\t|\tutterance\tmethod\tutterance\tburden is\n\t|\tinventory\t\tinventory\tplaced on\n\t|\\h'-1.0i'\\l'\\n(x6u\\(ul'\n\t|\nsentences\t|\tdepends on\twaveform or\tnatural speech\trecording artist,\n\t|\tapplication\tsource-filter\t\tstorage medium\n\t|\t\tparameters\n\t|\nwords\t|\tdepends on\tsource-filter\tnatural speech\trecording artist\n\t|\tapplication\tparameters\t\tand editor,\n\t|\t\t\t\tstorage medium\n\t|\nsyllables/\t|\t\\0\\0\\010000\tsource-filter\tnatural speech\trecording editor\n  lisibles\t|\t\tparameters\n\t|\ndemi-\t|\t\\0\\0\\0\\01000\tsource-filter\tnatural speech\trecording editor\n  syllables\t|\t\tparameters\tor artificially\tor inventory\n\t|\t\t\tgenerated\tcompiler\n\t|\nphonemes\t|\t\\0\\0\\0\\0\\0\\040\tgeneralized\tartificially\tauthor of segment\n\t|\t\tparameters\tgenerated\tconcatenation\n\t|\t\t\t\tprogram\n\t|\nallophones\t|\t\\0\\050\\-100\tgeneralized or\tartificially\tcoder of\n\t|\t\tsource-filter\tgenerated or\tsynthesized\n\t|\t\tparameters\tnatural speech\tutterances\n\t|\\h'-1.0i'\\l'\\n(x6u\\(ul'\n.in 0\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 7.1  Some issues relevant to choice of basic unit\"\n.pp\nTable 7.1 summarizes in broad brush-strokes the issues which relate to the\nchoice of basic unit for concatenation.\nThe sections which follow provide more detail about the different\nmethods of joining segments of speech together.\nOnly segmental aspects are considered, for the important problems of\nprosody will be treated in the next chapter.\nAll of the methods rely to some extent on the acoustic properties of speech,\nand as smaller basic units are considered the role of speech acoustics\nbecomes more important.\nIt is impossible in a book like this to give a detailed account of acoustic\nphonetics, for it would take several volumes!\nWhat I aim to do in the following pages is to highlight some salient features\nwhich are relevant to segment concatenation, without attempting to be\ncomplete.\n.sh \"7.1  Word concatenation\"\n.pp\nFor general speech output, word concatenation is an inherently limited\ntechnique because of the large number of phonetically different words.\nDespite this fact, it is at present the most widely-used synthesis\nmethod, and is likely to remain so for several years.\nWe have seen that the primary problems are word-to-word\ncoarticulation and prosody; and both can be overcome, at least to a useful\napproximation, by coding the words in source-filter form.\n.rh \"Time-domain techniques.\"\nNevertheless, a surprising number of applications simply store\nthe time waveform, coded, usually, by one of the techniques described in\nChapter 3.\nFrom an implementation point of view there are many advantages to this.\nSpeech quality can easily be controlled by selecting a suitable sampling\nrate and coding scheme.\nA natural-sounding voice is guaranteed; male or female as desired.\nThe equipment required is minimal \\(em a digital-to-analogue\nconverter and post-sampling filter will do for synthesis if\nPCM coding is used, and\nDPCM, ADPCM, and delta modulation decoders are not much more complicated.\n.pp\nFrom a speech point of view, the resulting utterances can never be made\nconvincingly fluent.\nWe discussed the early experiments of Stowe and Hampton (1961)\nat the beginning of Chapter 3.\n.[\nStowe Hampton 1961\n.]\nA major drawback to word concatenation in the\nanalogue domain is the introduction of clicks and other interference\nbetween words:  it is difficult to prevent the time waveform transitions\nfrom adding extraneous sounds.\nThis poses no problem with digital storage, however, for the waveforms\ncan be edited accurately prior to storage so that they start\nand finish at an exactly\nzero level.\nRather, the lack of fluency stems from the absence of proper control\nof coarticulation and prosody.\n.pp\nBut this is not necessarily a serious drawback if the application is\na sufficiently limited one.  Complete, invariant utterances can be\nstored as one unit.  Often they must contain data-dependent\nslot-fillers, as in\n.LB\nThis flight makes \\(em stops\n.LE\nand\n.LB\nFlight number \\(em leaves \\(em at \\(em , arrives in \\(em at \\(em\n.LE\n(taken from the airline reservation system of Chapter 1\n(Levinson and Shipley, 1980)).\n.[\nLevinson Shipley 1980\n.]\nThen, each slot-filling word is recorded in an intonation consistent\nboth with its position in the template utterance and with the\nintonation of that utterance.\nThis could be done by embedding the word in the utterance\nfor recording, and excising it by digital editing before storage.\nIt would be dangerous to try to take into account coarticulation effects,\nfor the coarticulation could not be made consistent with both the\nseveral slot-fillers and the single template.\nThis could be overcome if several versions of the template were stored,\nbut then the scheme becomes subject to combinatorial explosion\nif there is more than one slot in a single utterance.\nBut it is not really necessary, for the lack of fluency will probably\nbe interpreted by a benevolent listener as an attempt to convey the\ninformation as clearly as possible.\n.pp\nDifficulties will occur if the same slot-filler is used in different\ncontexts.  For instance, the first gap in each of the sentences above\ncontains a number; yet the intonation of that number is different.\nMany systems simply ignore this problem.\nThen one does notice anomalies, if one is attentive:  the words come,\nas it were, from different mouths, without fluency.\nHowever, the problem is not necessarily acute.  If it is, two or more\nversions of each slot-filler can be recorded, one for each context.\n.pp\nAs an example, consider the synthesis of 7-digit telephone numbers,\nlike 289\\-5371.  If one version only of each digit is stored,\nit should be recorded in a level tone of voice.  A pause should be\ninserted after the third digit of the synthetic number, to accord\nwith common elocution.  The result will certainly be unnatural, although\nit should be clear and intelligible.\nAny pitch errors in the recordings will make certain numbers\naudibly anomalous.\nAt the other extreme, 70 single digits could be stored, one version of\neach digit for each position in the number.  The recording will be\ntedious and error-prone, and the synthetic utterances will still not\nbe fluent \\(em for coarticulation is ignored \\(em but instead\nunnaturally clearly enunciated.  A compromise is to record only\nthree versions of each digit, one for any of the\nfive positions\n.nr x1 \\w'\\(ul'\n.nr x2 (8*\\n(x1)\n.nr x3 0.2m\n\\zx\\h'\\n(x1u'\\zx\\h'\\n(x1u'\\h'\\n(x1u'\\z\\-\\h'\\n(x1u'\\zx\\h'\\n(x1u'\\zx\\h'\\n(x1u'\\c\n\\zx\\h'\\n(x1u'\\h'\\n(x1u'\\v'\\n(x3u'\\l'-\\n(x2u\\(ul'\\v'-\\n(x3u' ,\nanother one for the third position\n\\h'\\n(x1u'\\h'\\n(x1u'\\zx\\h'\\n(x1u'\\z\\-\\h'\\n(x1u'\\h'\\n(x1u'\\c\n\\h'\\n(x1u'\\h'\\n(x1u'\\h'\\n(x1u'\\v'\\n(x3u'\\l'-\\n(x2u\\(ul'\\v'-\\n(x3u' ,\nand the last for the final position\n\\h'\\n(x1u'\\h'\\n(x1u'\\h'\\n(x1u'\\z\\-\\h'\\n(x1u'\\h'\\n(x1u'\\c\n\\h'\\n(x1u'\\h'\\n(x1u'\\zx\\h'\\n(x1u'\\v'\\n(x3u'\\l'-\\n(x2u\\(ul'\\v'-\\n(x3u' .\nThe first version will be in a level voice, the second an\nincomplete, rising tone; and the third a final, dropping pitch.\n.rh \"Joining formant-coded words.\"\nThe limitations of the time-domain method are lack of\nfluency caused by unnatural transitions between words, and the\ncombinatorial explosion created by recording slot-fillers several times\nin different contexts.\nBoth of these problems can be alleviated by storing formant tracks,\nconcatenating them with suitable interpolation, and applying a complete\npitch contour suitable for the whole utterance.\nBut one can still not generate conversational speech, for natural speech\nrhythms cause non-linear warpings of the time axis which cannot reasonably\nbe imitated by this method.\n.pp\nSolving problems often creates others.\nAs we saw in Chapter 4, it is not easy to obtain reliable formant tracks\nautomatically.  Yet hand-editing of formant parameters adds a whole new\ndimension to the problem of vocabulary construction, for it is\nan exceedingly tiresome and time-consuming task.\nEven after such tweaking, resynthesized utterances will be degraded\nconsiderably from the original, for the source-filter model is by no means\na perfect one.\nA hardware or real-time software formant synthesizer must be added\nto the system, presenting design problems and creating extra cost.\nShould a serial or parallel synthesizer be used? \\(em the latter offers\npotentially better speech (especially in nasal sounds), but requires\nadditional parameters, namely formant amplitudes, to be estimated.\nFinally, as we will see in the next chapter, it is not an easy matter to\ngenerate a suitable pitch contour and apply it to the utterance.\n.pp\nStrangely enough, the interpolation itself does not present any great\ndifficulty, for there is not enough information in the formant-coded\nwords to make possible sophisticated coarticulation.\nThe need for interpolation is most pressing when one word ends with\na voiced sound and the next begins with one.\nIf either the end of the first or the beginning of the second word\n(or both) is unvoiced, unnatural formant transitions do not matter\nfor they will not be heard.\nActually, this is only strictly true for fricative transitions:  if\nthe juncture is aspirated then formants will be perceived in the\naspiration.  However,\n.ul\nh\nis the only fully aspirated sound in English,\nand it is relatively uncommon.\nIt is not absolutely necessary to interpolate the fricative filter resonance,\nbecause smooth transitions from one fricative sound to another are rare\nin natural speech.\n.pp\nHence unless both sides of the junction are voiced, no interpolation\nis needed:  simple abuttal of the stored parameter tracks will do.\nNote that this is\n.ul\nnot\nthe same as joining time waveforms, for the synthesizer\nwill automatically ensure a relatively smooth transition from one\nsegment to another because of energy storage in the filters.\nA new set of resonance parameters for the formant-coded words will be stored\nevery 10 or 20 msec (see Chapter 5), and so the transition will automatically\nbe smoothed over this time period.\n.pp\nFor voiced-to-voiced transitions, some interpolation is needed.\nAn overlap period of duration, say, 50\\ msec, is established, and\nthe resonance parameters in the final 50\\ msec of the first word are\naveraged with those in the first 50\\ msec of the second.\nThe average is weighted, with the first word's formants dominating\nat the beginning and their effect progressively dying out\nin favour of the second word.\n.pp\nMore sophisticated than a simple average is to weight the components\naccording to how rapidly they are changing.\nIf the spectral change in one word is much greater than that in the\nother, we might expect that this will dominate the transition.\nA simple measure of spectral derivative at any given time can be found\nby adding the magnitude of the discrepancies in each formant frequency\nbetween one sample and the next.\nThe spectral change in the transition region can be obtained by summing\nthe spectral derivatives at each sample in the region.\nSuch a measure can perhaps be made more accurate by taking into\naccount the relative importance of the formants, but will probably\nnever be more than a rough and ready yardstick.\nAt any rate, it can be used to load the average in favour of the\ndominant side of the junction.\n.pp\nMuch more important for naturalness of the speech are the effects\nof rhythm and intonation, discussed in the next chapter.\n.pp\nSuch a scheme has been implemented and tested on \\(em guess what! \\(em 7-digit\ntelephone numbers (Rabiner\n.ul\net al,\n1971).\n.[\nRabiner Schafer Flanagan 1971\n.]\nSignificant improvement (at the 5% level of statistical\nsignificance) in people's\nability to recall numbers was found for this method over direct\nabuttal of either natural or synthetic versions of the digits.\nAlthough the method seemed, on balance, to produce utterances that were\nrecalled less accurately than completely natural spoken\ntelephone numbers, the difference was not significant (at the 5% level).\nThe system was also used to generate wiring instructions by computer\ndirectly from the connection list, as described in Chapter 1.\nAs noted there, synthetic speech was actually preferred to natural speech\nin the noisy environment of the production line.\n.rh \"Joining linear predictive coded words.\"\nBecause obtaining accurate formant tracks for natural utterances\nby Fourier transform methods is difficult, it is worth considering\nthe use of linear prediction as the source-filter model.\nActually, formant resonances can be extracted from linear predictive\ncoefficients quite easily, but there is no need to do this because\nthe reflection coefficients themselves are quite suitable\nfor interpolation.\n.pp\nA slightly different interpolation scheme from that described in the\nprevious section has been reported (Olive, 1975).\n.[\nOlive 1975\n.]\nThe reflection coefficients were spliced during an overlap region of\nonly 20\\ msec.\nMore interestingly, attempts were made to suppress the plosive bursts\nof stop sounds in cases where they were followed by another stop at\nthe beginning of the next word.\nThis is a common coarticulation, occurring, for instance, in the phrase\n\"stop burst\".  In running speech, the plosion on the\n.ul\np\nof \"stop\" is\nnormally suppressed because it is followed by another stop.\nThis is a particularly striking case because the place of articulation\nof the two stops\n.ul\np\nand\n.ul\nb\nis the same:  complete suppression is not as likely\nto happen in \"stop gap\", for example (although it may occur).\nHere is an instance of how extra information could improve the\nquality of the synthetic transitions considerably.\nHowever, automatically identifying the place of articulation of stops is\na difficult job, of a complexity far above what is appropriate for\nsimply joining words stored in source-filter form.\n.pp\nAnother innovation was introduced into the transition between two\nvowel sounds, when the second word began with an accented syllable.\nA glottal stop was placed at the juncture.\nAlthough the glottal stop was not described in Chapter 2, it is a sound\nused in many dialects of English.  It frequently occurs\nin the utterance \"uh-uh\", meaning \"no\".  Here it\n.ul\nis\nused to separate two vowel sounds, but in fact this is not particularly\ncommon in most dialects.\nOne could say \"the apple\", \"the orange\", \"the onion\" with a neutral vowel\nin \"the\" (to rhyme with \"\\c\n.ul\na\\c\nbove\") and a glottal stop as separator,\nbut it is much more usual to rhyme \"the\" with \"he\" and introduce a\n.ul\ny\nbetween the words.\nSimilarly, even speakers who do not normally pronounce an\n.ul\nr\nat the\nend of words will introduce one in \"bigger apple\", rather than\nusing a glottal stop.\nNote that it would be wrong to put an\n.ul\nr\nin \"the apple\", even\nfor speakers who usually terminate \"the\" and \"bigger\" with the same sound.\nSuch effects occur at a high level of processing, and are practically\nimpossible to simulate with word-interpolation rules.\nHence the expedient of introducing a glottal stop is a good one, although\nit is certainly unnatural.\n.sh \"7.2  Concatenating whole or partial syllables\"\n.pp\nThe use of segments larger than a single phoneme or allophone but smaller\nthan a word as the basic unit for speech synthesis has an interesting\nhistory.\nIt has long been realized that transitions between phonemes are\nextremely sensitive and critical components of speech, and thus are\nessential for successful synthesis.\nConsider the unvoiced stop sounds\n.ul\np, t,\nand\n.ul\nk.\nTheir central portion is actually silence!  (Try saying a word like\n\"butter\" with a very long\n.ul\nt.\\c\n)  Hence\nin this case it is\n.ul\nonly\nthe transitional information which can distinguish these sounds from\neach other.\n.pp\nSound segments which comprise the transition from the centre of one phoneme\nto the centre of the next are called\n.ul\ndyads\nor\n.ul\ndiphones.\nThe possibility of using them as the basic units for concatenation\nwas first mooted in the mid 1950's.\nThe idea is attractive because there is relatively little spectral\nmovement in the central, so-called \"steady-state\", portion of many\nphonemes \\(em in the extreme case of unvoiced stops there is not only\nno spectral movement, but no spectrum at all in the steady state!\nAt that time the resonance synthesizer was in its infancy, and\nso recorded segments of live speech were used.  The early experiments\nmet with little success because of the technical difficulties\nof joining analogue waveforms and inevitable discrepancies between\nthe steady-state parts of a phoneme recorded in different contexts \\(em not\nto mention the problems of coarticulation and prosody which effectively\npreclude the use of waveform concatenation at such a low level.\n.pp\nIn the mid 1960's, with the growing use of resonance synthesizers,\nit became possible to generate diphones by copying resonance parameters\nmanually from a spectrogram, and improving the result by trial and error.\nIt was not feasible to extract formant frequencies automatically from real\nspeech, though, because the fast Fourier transform was not yet widely\nknown and the computational burden of slow Fourier transformation was\nprohibitive.\nFor example, a project at IBM stored manually-derived parameter tracks\nfor diphones, identified by pairs of phoneme names (Dixon and Maxey, 1968).\n.[\nDixon Maxey 1968\n.]\nTo generate a synthetic utterance it was coded in\nphonetic form and used to access\nthe diphone table to give a set of parameter tracks for the complete\nutterance.  Note that this is the first system we have encountered\nwhose input is a phonetic transcription which relates to an inventory\nof truly synthetic character:  all previous schemes used recordings of\nlive speech, albeit processed in some form.\nSince the inventory was synthetic, there was no difficulty in ensuring\nthat discontinuities did not arise between segments beginning and ending with\nthe same phoneme.  Thus interpolation was irrelevant, and the synthesis\nprocedure concentrated on prosodic questions.  The resulting speech\nwas reported to be quite impressive.\n.pp\nStrictly speaking, diphones are not demisyllables but phoneme pairs.\nIn the simplest case they happen to be similar, for two primary diphones\ncharacterize a consonant-vowel-consonant syllable.\nThere is an advantage to using demisyllables rather than diphones as the basic\nunit, for many syllables begin or end with complicated consonant clusters\nwhich are not easy to produce convincingly by diphone\nconcatenation.\nBut they are not easy to produce by hand-editing resonance parameters\neither!\nNow that speech analysis methods have been developed and refined,\nresonance parameters or linear predictive coefficients\ncan be extracted automatically\nfrom natural utterances, and there has been a resurgence of interest in\nsyllabic and demisyllabic synthesis methods.  The wheel has turned\nfull circle, from segments of natural speech to hand-tailored parameters\nand back again!\n.pp\nThe advantage of storing demisyllables over syllables (or lisibles) from\nthe point of view of storage capacity has already been pointed out\n(perhaps 1,000\\-2,000 demisyllables as opposed to 4,000\\-10,000 syllables).\nBut it is probably not too significant with the continuing decline\nof storage costs.\nThe requirements are of the order of 25\\ Kbyte versus 0.5\\ Mbyte\nfor 1200\\ bit/s linear predictive coding, and the latter could\nalmost be accomodated today \\(em 1981 \\(em on a state-of-the-art\nread-only memory chip.\nA bigger advantage comes from rhythmic considerations.\nAs we will see in the next chapter, the rhythms of fluent speech cause\ndramatic variations in syllable duration, but these seem to affect\nthe vowel and closing consonant cluster much more than the initial consonant\ncluster.  Thus if a demisyllable is deemed to begin shortly (say 60\\ msec)\nafter onset of the vowel, when the formant structure has settled down,\nthe bulk of the vowel and the closing consonant cluster will form a\nsingle demisyllable.  The opening cluster of the next syllable will lie\nin the next demisyllable.  Then differential lengthening can be applied\nto that part of the syllable which tends to be stretched in live speech.\n.pp\nOne system for demisyllable concatenation has produced excellent results\nfor monosyllabic English words (Lovins and Fujimura, 1976).\n.[\nLovins Fujimura 1976\n.]\nComplex word-final consonant clusters are excluded from the inventory by\nusing syllable affixes\n.ul\ns, z, t,\nand\n.ul\nd;\nthese are attached to the\nsyllabic core as a separate exercise (Macchi and Nigro, 1977).\n.[\nMacchi Nigro 1977\n.]\nProsodic rather than segmental considerations are likely to prove the major\nlimiting factor when this scheme is extended to running speech.\n.pp\nMonosyllabic words spoken in isolation are coded as linear predictive\nreflection coefficients, and segmented by digital editing into the initial\nconsonant cluster and the vocalic nucleus plus final cluster.\nThe cut is made 60\\ msec into the vowel, as suggested above.\nThis minimizes the difficulty of interpolation when concatenating\nsegments, for there is ample voicing on either side of the juncture.\nThe reflection coefficients should not differ radically because the\nvowel is the same in each demisyllable.\nA 40\\ msec overlap is used, with the usual linear interpolation.\nAn alternative smoothing rule applies when the second segment has\na nasal or glide after the vowel.  In this case anticipatory coarticulation\noccurs, affecting even the early part of the vowel.  For example, a vowel\nis frequently nasalized when followed by a nasal sound \\(em even in English\nwhere nasalization is not a distinctive feature in vowels (see Chapter 2).\nUnder these circumstances the overlap area is moved forward in time so\nthat the colouration applies throughout almost the whole vowel.\n.sh \"7.3  Phoneme synthesis\"\n.pp\nAcoustic phonetics is the study of how the acoustic\nsignal relates to the phonetic sequence which was spoken or heard.\nPeople \\(em especially engineers \\(em often ask, how could phonetics not\nbe acoustic?  In fact it can be articulatory, auditory, or linguistic\n(phonological), for example, and we have touched on the first and last\nin Chapter 2.\nThe invention of the sound spectrograph in the late 1940's was an\nevent of colossal significance for acoustic phonetics, for it somehow\nseemed to make the intricacies of speech visible.\n(This was thought to be a greater advance than actually turned\nout:  historically-minded readers should refer to Potter\n.ul\net al,\n1947,\nfor an enthusiastic contemporary appraisal of the invention.)  A\n.[\nPotter Kopp Green 1947\n.]\nresult of several years of research at Haskins Laboratories in New York\nduring the 1950's was a set of \"minimal rules for synthesizing speech\",\nwhich showed how stylized formant patterns could generate cues for\nidentifying vowels and, particularly, consonants\n(Liberman, 1957; Liberman\n.ul\net al,\n1959).\n.[\nLiberman 1957 Some results of research on speech perception\n.]\n.[\nLiberman Ingemann Lisker Delattre Cooper 1959\n.]\n.pp\nThese were to form the basis of many speech synthesis-by-rule computer\nprograms in the ensuing decades.  Such programs take as input a\nphonetic transcription of the utterance and generate a spoken version\nof it.  The transcription may be broad or narrow, depending on the\nsystem.  Experience has shown that the Haskins rules really are\nminimal, and the success of a synthesis-by-rule program depends on\na vast collection of minutia, each seemingly insignificant in isolation\nbut whose effects combine to influence the speech quality dramatically.\nThe best current systems produce clearly understandable\nspeech which is nevertheless something of a strain to listen to for\nlong periods.\nHowever, many are not good; and some are execrable.\nIn recent times commercial influences have unfortunately restricted\nthe free exchange of results and programs between academic researchers,\nthus slowing down progress.\nResearch attention has turned to prosodic factors,\nwhich are certainly less well understood than segmental ones, and\nto synthesis from plain English text rather than from phonetic transcriptions.\n.pp\nThe remainder of this chapter describes the techniques of segmental\nsynthesis.  First it is necessary to introduce some\nelements of acoustic phonetics.\nIt may be worth re-reading Chapter 2 at this point, to refresh\nyour memory about the classification of speech sounds.\n.sh \"7.4  Acoustic characterization of phonemes\"\n.pp\nShortly after the invention of the sound spectrograph an inverse\ninstrument was developed, called the \"pattern playback\" synthesizer.\nThis took as input a spectrogram, either in its original form or\npainted by hand.\nAn optical arrangment was used to modulate the amplitude of some\nfifty harmonically-related oscillators by the lightness or darkness\nof each point on the frequency axis of the spectrogram.\nAs it was drawn past the playing head, sound was produced which\nhad approximately the frequency components shown on the spectrogram,\nalthough the fundamental frequency was constant.\n.pp\nThis device allowed the complicated\nacoustic effects seen on a spectrogram (see for example Figures 2.3 and 2.4)\nto be replayed in either original or simplified form.\nHence the features which are important for perception of the different sounds\ncould be isolated.  The procedure was to copy from an actual spectrogram\nthe features which were most prominent visually, and then to make further\nchanges by trial and error until the result was judged to have\nreasonable intelligibility when replayed.\n.pp\nFor the purpose of acoustic characterization of particular phonemes,\nit is useful to consider the central, steady-state part separately from\ntransitions into and out of the segment.\nThe steady-state part is that sound which is heard when the phoneme\nis prolonged.  The term \"phoneme\" is being used in a rather loose sense\nhere:  it is more appropriate to think of a \"sound segment\" rather than\nthe abstract unit which forms the basis of phonological classification,\nand this is the terminology I will adopt.\n.pp\nThe essential auditory characteristics of some sound segments are inherent in\ntheir steady states.\nIf a vowel, for example, is spoken and prolonged, it can readily be\nidentified by listening to any part of the utterance.\nThis is not true for diphthongs:  if you say \"I\" very slowly and freeze\nyour vocal tract posture at any time, the resulting steady-state sound\nwill not be sufficient to identify the diphthong.  Rather, it will be\na vowel somewhere between\n.ul\naa\n(in \"had\") or\n.ul\nar\n(in \"hard\") and\n.ul\nee\n(in \"heed\").\nNeither is it true for glides, for prolonging\n.ul\nw\n(in \"want\") or\n.ul\ny\n(in \"you\") results in vowels resembling respectively\n.ul\nu\n(\"hood\") or\n.ul\nee\n(\"heed\").\nFricatives, voiced or unvoiced, can be identified from the steady state;\nbut stops can not, for their's is silent (or \\(em in the case\nof voiced stops \\(em something close to it).\n.pp\nSegments which are identifiable from their steady state are easy to synthesize.\nThe difficulty lies with the others, for it must be the transitions which\ncarry the information.  Thus \"transitions\" are an essential part of speech,\nand perhaps the term is unfortunate for it calls to mind an unimportant\nbridge between one segment and the next.\nIt is tempting to use the words \"continuant\" and \"non-continuant\" to distinguish\nthe two categories; unfortunately they are used by phoneticians in a different\nsense.\nWe will call them \"steady-state\" and \"transient\" segments.  The latter term\nis not particularly appropriate, for even sounds in this class\n.ul\ncan\nbe prolonged:  the point is that the identifying information is in the\ntransitions rather than the steady state.\n.RF\n.nr x1 (\\w'excitation'/2)\n.nr x2 (\\w'formant resonance'/2)\n.nr x3 (\\w'fricative'/2)\n.nr x4 (\\w'frequencies (Hz)'/2)\n.nr x5 (\\w'resonance (Hz)'/2)\n.nr x0 4n+1.7i+0.8i+0.6i+0.6i+1.0i+\\w'00'+\\n(x5\n.nr x6 (\\n(.l-\\n(x0)/2\n.in \\n(x6u\n.ta 4n +1.7i +0.8i +0.6i +0.6i +1.0i\n\t\t\\h'-\\n(x1u'excitation\t\t\\0\\0\\h'-\\n(x2u'formant resonance\t\\0\\0\\h'-\\n(x3u'fricative\n\t\t\t\t\\0\\0\\h'-\\n(x4u'frequencies (Hz)\t\\0\\0\\c\n\\h'-\\n(x5u'resonance (Hz)\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'voicing'/2)\n\\fIuh\\fR\t(the)\t\\h'-\\n(x1u'voicing\t\\0500\t1500\t2500\n\\fIa\\fR\t(bud)\t\\h'-\\n(x1u'voicing\t\\0700\t1250\t2550\n\\fIe\\fR\t(head)\t\\h'-\\n(x1u'voicing\t\\0550\t1950\t2650\n\\fIi\\fR\t(hid)\t\\h'-\\n(x1u'voicing\t\\0350\t2100\t2700\n\\fIo\\fR\t(hod)\t\\h'-\\n(x1u'voicing\t\\0600\t\\0900\t2600\n\\fIu\\fR\t(hood)\t\\h'-\\n(x1u'voicing\t\\0400\t\\0950\t2450\n\\fIaa\\fR\t(had)\t\\h'-\\n(x1u'voicing\t\\0750\t1750\t2600\n\\fIee\\fR\t(heed)\t\\h'-\\n(x1u'voicing\t\\0300\t2250\t3100\n\\fIer\\fR\t(heard)\t\\h'-\\n(x1u'voicing\t\\0600\t1400\t2450\n\\fIar\\fR\t(hard)\t\\h'-\\n(x1u'voicing\t\\0700\t1100\t2550\n\\fIaw\\fR\t(hoard)\t\\h'-\\n(x1u'voicing\t\\0450\t\\0750\t2650\n\\fIuu\\fR\t(food)\t\\h'-\\n(x1u'voicing\t\\0300\t\\0950\t2300\n.nr x1 (\\w'aspiration'/2)\n\\fIh\\fR\t(he)\t\\h'-\\n(x1u'aspiration\n.nr x1 (\\w'frication'/2)\n.nr x2 (\\w'frication and voicing'/2)\n\\fIs\\fR\t(sin)\t\\h'-\\n(x1u'frication\t\t\t\t6000\n\\fIz\\fR\t(zed)\t\\h'-\\n(x2u'frication and voicing\t\t\t\t6000\n\\fIsh\\fR\t(shin)\t\\h'-\\n(x1u'frication\t\t\t\t2300\n\\fIzh\\fR\t(vision)\t\\h'-\\n(x2u'frication and voicing\t\t\t\t2300\n\\fIf\\fR\t(fin)\t\\h'-\\n(x1u'frication\t\t\t\t4000\n\\fIv\\fR\t(vat)\t\\h'-\\n(x2u'frication and voicing\t\t\t\t4000\n\\fIth\\fR\t(thin)\t\\h'-\\n(x1u'frication\t\t\t\t5000\n\\fIdh\\fR\t(that)\t\\h'-\\n(x2u'frication and voicing\t\t\t\t5000\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 7.2  Resonance synthesizer parameters for steady-state sounds\"\n.rh \"Steady-state segments.\"\nTable 7.2 shows appropriate values for the resonance parameters and\nexcitation sources of a resonance synthesizer, for steady-state\nsegments only.\nThere are several points to note about it.\nFirstly, all the frequencies involved obviously depend upon the\nspeaker \\(em the size of his vocal tract, his accent and speaking habits.\nThe values given are nominal ones for a male speaker with a dialect of\nBritish English called \"received pronunciation\" (RP) \\(em for it is what\nused to be \"received\" on the wireless in the old days\nbefore the British Broadcasting Corporation\nadopted a policy of more informal, more regional, speech.\nFemale speakers have formant frequencies approximately 15% higher\nthan male ones.\nSecondly, the third formant is relatively unimportant for vowel\nidentification; it is\nthe first and second that give the vowels their character.\nThirdly, formant values for\n.ul\nh\nare not given, for they would be meaningless.\nAlthough it is certainly a steady-state sound,\n.ul\nh\nchanges radically\nin context.  If you say \"had\", \"heed\", \"hud\", and so on, and freeze\nyour vocal tract posture on the initial\n.ul\nh,\nyou will find it\nalready configured for the following vowel \\(em an excellent\nexample of anticipatory coarticulation.\nFourthly, amplitude values do play some part in identification,\nparticularly for fricatives.\n.ul\nth\nis the weakest sound, closely followed by\n.ul\nf,\nwith\n.ul\ns\nand\n.ul\nsh\nthe\nstrongest.  It is necessary to get a reasonable mix of excitation in\nthe voiced fricatives; the voicing amplitude is considerably less than\nin vowels.  Finally, there are other sounds that might be considered\nsteady state ones.  You can probably identify\n.ul\nm, n,\nand\n.ul\nng\njust by\ntheir steady states.  However, the difference is not particularly\nstrong; it is the transitional parts which discriminate most effectively\nbetween these sounds.  The steady state of\n.ul\nr\nis quite distinctive, too,\nfor most speakers, because the top of the tongue is curled back in a\nso-called \"retroflex\" action and this causes a radical change in the\nthird formant resonance.\n.rh \"Transient segments.\"\nTransient sounds include diphthongs, glides,\nnasals, voiced and unvoiced stops, and affricates.\nThe first two are relatively easy to characterize, for they are\nbasically continuous, gradual transitions from one vocal tract posture\nto another \\(em sort of dynamic vowels.  Diphthongs and glides are\nsimilar to each other.  In fact \"you\" could be transcribed as\na triphthong,\n.ul\ni e uu,\nexcept that in the initial posture the tongue\nis even higher, and the vocal tract correspondingly more constricted,\nthan in\n.ul\ni\n(\"hid\") \\(em though not as constricted as in\n.ul\nsh.\nBoth categories can be represented in terms of target formant\nvalues, on the understanding that these are not to be\ninterpreted as steady state configurations but strictly as\nextreme values at the beginning or end of the formant motion (for\ntransitions out of and into the segment, respectively).\n.pp\nNasals have a steady-state portion comprising a strong nasal formant\nat a fairly low frequency, on account of the large size of the\ncombined nasal and oral cavity which is resonating.\nHigher formants are relatively weak, because of attenuation effects.\nTransitions into and out of nasals are strongly nasalized,\nas indeed are adjacent vocalic segments, with\nthe oral and nasal tract operating in parallel.  As discussed in\nChapter 5, this cannot be simulated on a series synthesizer.\nHowever, extremely fast motions of the formants occur on account of\nthe binary switching action of the velum, and it turns out that\nfast formant transitions are sufficient to simulate nasals because\nthe speech perception mechanism is accustomed to hearing them only\nin that context!  Contrast this with the extremely slow transitions\nin diphthongs and glides.\n.pp\nStops form the most interesting category, and research using the pattern\nplayback synthesizer was instrumental in providing adequate acoustic\ncharacterizations for them.  Consider unvoiced stops.\nThey each have three phases:  transition in, silent central portion,\nand transition out.  There is a lot of action on the transition out\n(and many phoneticians would divide this part alone into several \"phases\").\nFirst, as the release occurs, there is a small burst of fricative noise.\nSay \"t\\ t\\ t\\ ...\" as in \"tut-tut\", without producing any voicing.\nActually, when used as an admonishment this is accompanied by\nan ingressive, inhaling air-stream instead of the normal egressive,\nexhaling one used in English speech (although some languages\ndo have ingressive sounds).\nIn any case, a short fricative somewhat resembling a tiny\n.ul\ns\ncan be heard as the tongue leaves the roof of the mouth.\nFrication is produced when the gap is very narrow, and ceases\nrapidly as it becomes wider.\nNext, when an unvoiced stop is released, a significant amount of aspiration\nfollows the release.\nSay \"pot\", \"tot\", \"cot\" with force and you will hear the\n.ul\nh\\c\n-like\naspiration quite clearly.\nIt doesn't always occur, though; for example you will hear little\naspiration when a fricative like\n.ul\ns\nprecedes the stop in the\nsame syllable, as in \"spot\", \"scot\".  The aspiration is a distinguishing\nfeature between \"white spot\" and the rather unlikely \"White's pot\".\nIt tends to increase as the emphasis on the syllable increases,\nand this in an example of a prosodic feature influencing segmental\ncharacteristics.  Finally, at the end of the segment,\nthe aspiration \\(em if any \\(em will turn to voicing.\n.pp\nWhat has been described applies to\n.ul\nall\nunvoiced stops.\nWhat distinguishes one from another?\nThe tiny fricative burst will be different because the noise is produced\nat different places in the vocal tract \\(em at the lips for\n.ul\np,\ntongue and front of palate for\n.ul\nt,\nand tongue and back of palate for\n.ul\nk.\nThe most important difference, however, is the formant motion illuminated\nby the last vestiges of voicing at closure and by both aspiration and the\nonset of voicing at opening.\nEach stop has target formant values which, although\nthey cannot be heard during the stopped portion (for there is no\nsound there), do affect the transitions in and out.\nAn added complexity is that the target positions themselves vary to some\nextent depending on the adjacent segments.\nIf the stop is heavily aspirated, the vocal posture will have almost\nattained that for the following vowel before voicing begins, but\nthe formant transitions will be perceived because they affect\nthe sound quality of aspiration.\n.pp\nThe voiced stops\n.ul\nb, d,\nand\n.ul\ng\nare quite similar to their unvoiced analogues\n.ul\np, t,\nand\n.ul\nk.\nWhat distinguishes them from each other are the formant transitions to\ntarget positions, heard during closure and opening.\nThey are distinguished from their unvoiced counterparts by the fact\nthat more voicing is present:  it lingers on longer at closure\nand begins earlier on opening.  Thus little or no aspiration appears\nduring the opening phase.  If an unvoiced stop is uttered in a context\nwhere aspiration is suppressed, as in \"spot\", it is almost identical to the\ncorresponding voiced stop, \"sbot\".  Luckily no words in English require\nus to make a distinction in such contexts.\nVoicing sometimes pervades the entire stopped portion of a voiced stop,\nespecially when it is surrounded by other voiced segments.\nWhen saying a word like \"baby\" slowly you can choose whether or not to\nprolong voicing throughout the second\n.ul\nb.\nIf you do, creating what is\ncalled a \"voice bar\" in spectrograms,\nthe sound escapes through the cheeks, for\nthe lips are closed \\(em try doing it for a very long time and your cheeks\nwill fill up with air!\nThis severely attenuates high-frequency components, and can\nbe simulated with a weak first formant at a low resonant frequency.\n.RF\n.nr x0 \\w'unvoiced stops:    'u\n.nr x1 4n\n.nr x2 \\n(x0+\\n(x1+\\w'aspiration burst (context- and emphasis-dependent)'u\n.nr x3 (\\n(.l-\\n(x2)/2\n.in \\n(x3u\n.ta \\n(x0u +\\n(x1u\nunvoiced stops:\tclosure (early cessation of voicing)\n\tsilent steady state\n\topening, comprising\n\t\tshort fricative burst\n\t\taspiration burst (context- and emphasis-dependent)\n\t\tonset of voicing\n.sp\nvoiced stops:\tclosure (late cessation of voicing)\n\tsteady state (possibility of voice bar)\n\topening, comprising\n\t\tpre-voicing\n\t\tshort fricative burst\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 7.3  Acoustic phases of stop consonants\"\n.pp\nTable 7.3 summarizes some of the acoustic phases of voiced and unvoiced\nstops.  There are many variations that have not been mentioned.\nNasal plosion (\"good news\") occurs (at the word boundary, in this case)\nwhen the nasal formant pervades the\nopening phase.  Stop bursts are suppressed when the next sound is a stop\ntoo (the burst on the\n.ul\np\nof \"apt\", for example).\nIt is difficult to distinguish a voiced stop from an unvoiced one\nat the end of a word (\"cab\" and \"cap\"); if the speaker is trying to\nmake himself particularly clear he will put a short neutral vowel\nafter the voiced stop to emphasize its early onset of voicing.\n(If he is Italian he will probably do this anyway, for it is the norm\nin his own language.)\n.pp\nFinally, we turn to affricates, of which there are only two\nin English:\n.ul\nch\n(\"chin\") and\n.ul\nj\n(\"djinn\").\nThey are very similar to the stops\n.ul\nt\nand\n.ul\nd\nfollowed by the fricatives\n.ul\nsh\nand\n.ul\nzh\nrespectively, and their acoustic characterization is similar to that\nof the phoneme pair.\n.ul\nch\nhas a closing phase, a stopped phase, and a long fricative burst.\nThere is no aspiration,\nfor the vocal cords are not involved.\n.ul\nj\nis the same except that voicing extends further into the stopped\nportion, and the terminating fricative is also voiced.\nIt may be pronounced with a voice bar if the preceding segment is voiced\n(\"adjunct\").\n.sh \"7.5  Speech synthesis by rule\"\n.pp\nGeneration of speech by rules acting upon a phonetic transcription\nwas first investigated in the early 1960's (Kelly and Gerstman, 1961).\n.[\nKelly Gerstman 1961\n.]\nMost systems employ a hardware resonance synthesizer, analogue or digital,\nseries or parallel,\nto reduce the load on the computer which operates the rules.\nThe speech-by-rule program, rather than the\nsynthesizer, inevitably contributes by far the greater part of the\ndegradation in the resulting speech.\nAlthough parallel synthesizers offer greater potential control over\nthe spectrum, it is not clear to what extent a synthesis program can take\nadvantage of this.  Parameter tracks for a series synthesizer can\neasily be converted into linear predictive coefficients, and systems\nwhich use a linear predictive synthesizer will probably become popular\nin the near future.\n.pp\nThe phrase \"synthesis by rule\", which is in common use, does not\nmake it clear just what sort of features the rules are supposed to\naccomodate, and what information must be included explicitly in the\ninput transcription.\nEarly systems made no attempt to simulate prosodics.\nPitch and rhythm could be controlled, but only by inserting\npitch specifiers and duration markers in the input.\nSome kind of prosodic control was often incorporated later,\nbut usually as a completely separate phase from segmental synthesis.\nThis does not allow interaction effects (such as the extra\naspiration for voiceless stops in accented syllables) to be taken\ninto account easily.\nEven systems which perform prosodic operations invariably need to have\nprosodic specifications embedded explicitly in the input.\n.pp\nGenerating parameter tracks for a synthesizer from a phonetic transcription\nis a process of data\n.ul\nexpansion.\nSix bits are ample to specify a phoneme, and a speaking rate of 12 phonemes/sec\nleads to an input data rate of 72 bit/s.\nThe data rate required to control the synthesizer will depend upon the number\nof parameters and the rate at which they are sampled,\nbut a typical figure is 6 Kbit/s (Chapter 5).\nHence there is something like a hundredfold data expansion.\n.pp\nFigure 7.1 shows the parameter tracks for a series synthesizer's rendering\nof the utterance\n.ul\ns i k s.\n.FC \"Figure 7.1\"\nThere are eight parameters.\nYou can see the onset of frication at the beginning and end (parameter 5),\nand the amplitude of voicing (parameter 1) come on for the\n.ul\ni\nand off again before the\n.ul\nk.\nThe pitch (parameter 0) is falling slowly throughout the utterance.\nThese tracks are stylized:  they come from a computer synthesis-by-rule\nprogram and not from a human utterance.\nWith a parameter update rate of 10 msec, the graphs can be represented\nby 90 sets of eight parameter values, a total of 720 values or 4320 bits\nif a 6-bit representation is used for each value.\nContrast this with the input of only four phoneme segments, or say 24 bits.\n.rh \"A segment-by-segment system.\"\nA seminal paper appearing in 1964 was the first comprehensive\ndescription of a computer-based synthesis-by-rule system\n(Holmes\n.ul\net al,\n1964).\n.[\nHolmes Mattingly Shearme 1964\n.]\nThe same system is still in use and has been reimplemented in a more\nportable form (Wright, 1976).\n.[\nWright 1976\n.]\nThe inventory of sound segments\nincludes the phonemes listed in Table 2.1, as well as diphthongs and\na second allophone of\n.ul\nl.\n(Many British speakers use quite a different vocal posture for\npre- and post-vocalic\n.ul\nl\\c\n\\&'s, called clear and dark\n.ul\nl\\c\n\\&'s\nrespectively.)  Some phonemes are expanded into sub-phonemic\n\"phases\" by the program.  Stops have three phases, corresponding to\nthe closure, silent steady state, and opening.\nDiphthongs have two phases.  We will call individual phases and\nsingle-phase phonemes \"segments\", for they are subject to exactly\nthe same transition rules.\n.pp\nParameter tracks are constructed out of linear pieces.\nConsider a pair of adjacent segments in an utterance to be synthesized.\nEach one has a steady-state portion and an internal transition.\nThe internal transition of one phoneme is dubbed \"external\"\nas far as the other is concerned.\nThis is important because instead of each segment being responsible\nfor its own internal transition, one of the pair is identified\nas \"dominant\" and it controls the duration of both transitions \\(em its\ninternal one and its external (the other's internal) one.\nFor example, in Figure 7.2 the segment\n.ul\nsh\ndominates\n.ul\nee\nand so it\ngoverns the duration of both transitions shown.\n.FC \"Figure 7.2\"\nNote that each\nsegment contributes as many as three linear pieces to the parameter track.\n.pp\nThe notion of domination is similar to that discussed earlier for\nword concatenation.\nThe difference is that for word concatenation the dominant segment was\ndetermined by computing the spectral derivative over the transition\nregion, whereas for synthesis-by-rule\nsegments are ranked according to a static precedence,\nand the higher-ranking segment dominates.\nSegments of stop consonants have the highest rank (and also\nthe greatest spectral derivative), while fricatives, nasals, glides,\nand vowels follow in that order.\n.pp\nThe concatenation procedure is controlled by a table which associates\n25 quantities with each segment.  They are\n.LB\n.NI\nrank\n.NI\n2\\ \\ overall durations (for stressed and unstressed occurrences)\n.NI\n4\\ \\ transition durations (for internal and external transitions of\nformant frequencies and amplitudes)\n.NI\n8\\ \\ target parameter values (amplitudes and frequencies of three\nformant resonances, plus fricative information)\n.NI\n5\\ \\ quantities which specify how to calculate boundary values for\nformant frequencies (two for each formant except the third,\nwhich has only one)\n.NI\n5\\ \\ quantities which specify how to calculate boundary values for\namplitudes.\n.LE\nThis table is rather large.  There are 80 segments in all (remember\nthat many phonemes are represented by more than one segment),\nand so it has 2000 entries.  The system was an offline one which ran on\nwhat was then \\(em 1964 \\(em a large computer.\n.pp\nThe advantage of such a large table of \"rules\" is the\nflexibility it affords.\nNotice that transition durations are specified independently for\nformant frequency and amplitude parameters \\(em this permits\nfine control which is particularly useful for stops.\nFor each parameter the boundary value between segments is calculated\nusing a fixed contribution from the dominant one\nand a proportion of the steady state value of the other.\n.pp\nIt is possible that the two transition durations which are\ncalculated for a segment actually exceed the overall duration specified\nfor it.  In this case, the steady-state target values will be approached\nbut not actually attained, simulating a situation where coarticulation\neffects prevent a target value from being reached.\n.rh \"An event-based system.\"\nThe synthesis system described above, in common with many others, takes\nan uncompromisingly segment-by-segment view of speech.\nThe next phoneme is read, perhaps split into a few segments, and\nthese are synthesized one by one with due attention being paid\nto transitions between them.\nSome later work has taken a more syllabic view.\nMattingly (1976) urges a return to syllables for both practical and\ntheoretical reasons.\n.[\nMattingly 1976 Syllable synthesis\n.]\nTransitional effects are particularly strong\nwithin a syllable and comparatively weak (but by no means negligible)\nfrom one syllable to the next.  From a theoretical viewpoint,\nthere are much stronger phonetic restrictions on phoneme sequences\nthan there are on syllable sequences:  pretty well any syllable can\nfollow another (although whether the pair makes sense is\na different matter), but the linguistically\nacceptable phoneme sequences are only a fraction\nof those formed by combining phonemes in all\npossible ways.\nHill (1978) argues against what be calls the \"segmental assumption\"\nthat progress through the utterance should be made one segment at a time,\nand recommends a description of speech based upon perceptually relevant\n\"events\".\n.[\nHill 1978 A program structure for event-based speech synthesis by rules\n.]\nThis framework is interesting because it provides an opportunity for prosodic\nconsiderations to be treated as an integral part of the synthesis\nprocess.\n.pp\nThe phonetic segments and other information that specify an utterance\ncan be regarded as a list of events which describes it\nat a relatively high level.\nSynthesis-by-rule is the act of taking this list and elaborating on it\nto produce lower-level events which are realized by the vocal tract,\nor acoustically simulated by a resonance synthesizer, to give a speech\nwaveform.\nIn articulatory terms, an event might be \"begin tongue motion towards\nupper teeth with a given effort\", while in resonance terms it could be\n\"begin second formant transition towards 1500\\ Hz at a given rate\".\n(These two examples are\n.ul\nnot\nintended to describe the same event:  a tongue motion causes much more\nthan the transition of a single formant.)  Coarticulation\nissues such as stop burst suppression and nasal plosion should\nbe easier to imitate within an event-based scheme than a segment-to-segment\none.\n.pp\nThe ISP system (Witten and Abbess, 1979) is event-based.\n.[\nWitten Abbess 1979\n.]\nThe key to its operation is the\n.ul\nsynthesis list.\nTo prepare an utterance for synthesis, the lexical items which specify\nit are joined into a linked list.  Figure 7.3 shows the start of\nthe list created for\n.LB\n1\n.ul\ndh i z  i z  /*d zh aa k s  /h aa u s\n.LE\n(this is Jack's house); the \"1\\ ...\\ /*\\ ...\\ /\\ ...\" are\nprosodic markers which will be discussed in the next chapter.\n.FC \"Figure 7.3\"\nNext, the rhythm and pitch assignment routines\naugment the list with syllable boundaries, phoneme\ncluster identifiers, and duration and pitch specifications.\nThen it is passed to the segmental synthesis routine\nwhich chains events into the appropriate places and, as it\nproceeds, removes the no longer useful elements (phoneme names,\npitch specifiers, etc) which originally constituted the synthesis list.\nFinally, an interrupt-driven speech synthesizer handler removes\nevents from the list as they become due and uses them to control\nthe hardware synthesizer.\n.pp\nBy adopting the synthesis list as a uniform data structure for\nholding utterances at every stage of processing, the problems of storage\nallocation and garbage collection are minimized.\nEach list element has a forward pointer and five data words, the first\nindicating what type of element it is.\nLexical items which may appear in the input are\n.LB\n.NI\nend of utterance (\".\", \"!\", \",\", \";\")\n.NI\nintonation indicator (\"1\", ...)\n.NI\nrhythm indicator (\"/\", \"/*\")\n.NI\nword boundary (\"  \")\n.NI\nsyllable boundary (\"'\")\n.NI\nphoneme segment\n(\\c\n.ul\nar, b, ng, ...\\c\n)\n.NI\nexplicit duration or pitch information.\n.LE\nSeveral of these have to do with prosodic features \\(em a prime\nadvantage of the structure is that it does not create an artificial\ndivision between segmentals and prosody.\nSyllable boundaries and duration and pitch information are optional.\nThey will normally be computed by ISP, but the user can override them in the\ninput in a natural way.\nThe actual characters which identify lexical items are not fixed\nbut are taken from the rule table.\n.pp\nAs synthesis\nproceeds, new elements are chained in to the synthesis list.\nFor segmental purposes, three types of event are defined \\(em\ntarget events, increment events, and aspiration events.\nWith each event is associated a time at which the event becomes due.\nFor a target event, a parameter number, target parameter value,\nand time-increment are specified.\nWhen it becomes due, motion of the parameter towards the\ntarget is begun.  If no other event for that parameter intervenes,\nthe target value will be reached after the given time-increment.\nHowever, another target event for the parameter may change its motion\nbefore the target has been attained.\nIncrement events contain a parameter number, a parameter increment,\nand a time-increment.  The fixed increment is added to the parameter value\nthroughout the time specified.  This provides an easy way to make a\nfricative burst during the opening phase of a stop consonant.\nAspiration events switch the mode of excitation from voicing to aspiration\nfor a given period of time.  Thus the aspirated part of unvoiced stops\ncan be accomodated in a natural manner, by changing the mode of excitation\nfor the duration of the aspiration.\n.RF\n.nr x1 (\\w'excitation'/2)\n.nr x2 (\\w'formant resonance'/2)\n.nr x3 (\\w'fricative'/2)\n.nr x4 (\\w'type'/2)\n.nr x5 (\\w'frequencies (Hz)'/2)\n.nr x6 (\\w'resonance (Hz)'/2)\n.nr x0 1.0i+0.7i+0.6i+0.6i+1.0i+1.2i+(\\w'long vowel'/2)\n.nr x7 (\\n(.l-\\n(x0)/2\n.in \\n(x7u\n.ta 1.0i +0.7i +0.6i +0.6i +1.0i +1.2i\n\t\\h'-\\n(x1u'excitation\t\t\\0\\0\\h'-\\n(x2u'formant resonance\t\\0\\0\\h'-\\n(x3u'fricative\t\\h'-\\n(x4u'type\n\t\t\t\\0\\0\\h'-\\n(x5u'frequencies (Hz)\t\\0\\0\\h'-\\n(x6u'resonance (Hz)\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'voicing'/2)\n.nr x2 (\\w'vowel'/2)\n\\fIuh\\fR\t\\h'-\\n(x1u'voicing\t\\0490\t1480\t2500\t\t\\c\n\\h'-\\n(x2u'vowel\n\\fIa\\fR\t\\h'-\\n(x1u'voicing\t\\0720\t1240\t2540\t\t\\h'-\\n(x2u'vowel\n\\fIe\\fR\t\\h'-\\n(x1u'voicing\t\\0560\t1970\t2640\t\t\\h'-\\n(x2u'vowel\n\\fIi\\fR\t\\h'-\\n(x1u'voicing\t\\0360\t2100\t2700\t\t\\h'-\\n(x2u'vowel\n\\fIo\\fR\t\\h'-\\n(x1u'voicing\t\\0600\t\\0890\t2600\t\t\\h'-\\n(x2u'vowel\n\\fIu\\fR\t\\h'-\\n(x1u'voicing\t\\0380\t\\0950\t2440\t\t\\h'-\\n(x2u'vowel\n\\fIaa\\fR\t\\h'-\\n(x1u'voicing\t\\0750\t1750\t2600\t\t\\h'-\\n(x2u'vowel\n.nr x2 (\\w'long vowel'/2)\n\\fIee\\fR\t\\h'-\\n(x1u'voicing\t\\0290\t2270\t3090\t\t\\h'-\\n(x2u'long vowel\n\\fIer\\fR\t\\h'-\\n(x1u'voicing\t\\0580\t1380\t2440\t\t\\h'-\\n(x2u'long vowel\n\\fIar\\fR\t\\h'-\\n(x1u'voicing\t\\0680\t1080\t2540\t\t\\h'-\\n(x2u'long vowel\n\\fIaw\\fR\t\\h'-\\n(x1u'voicing\t\\0450\t\\0740\t2640\t\t\\h'-\\n(x2u'long vowel\n\\fIuu\\fR\t\\h'-\\n(x1u'voicing\t\\0310\t\\0940\t2320\t\t\\h'-\\n(x2u'long vowel\n.nr x1 (\\w'aspiration'/2)\n.nr x2 (\\w'h'/2)\n\\fIh\\fR\t\\h'-\\n(x1u'aspiration\t\t\t\t\t\\h'-\\n(x2u'h\n.nr x1 (\\w'voicing'/2)\n.nr x2 (\\w'glide'/2)\n\\fIr\\fR\t\\h'-\\n(x1u'voicing\t\\0240\t1190\t1550\t\t\t \\h'-\\n(x2u'glide\n\\fIw\\fR\t\\h'-\\n(x1u'voicing\t\\0240\t\\0650\t\t\t\\h'-\\n(x2u'glide\n\\fIl\\fR\t\\h'-\\n(x1u'voicing\t\\0380\t1190\t\t\t\\h'-\\n(x2u'glide\n\\fIy\\fR\t\\h'-\\n(x1u'voicing\t\\0240\t2270\t\t\t\\h'-\\n(x2u'glide\n.nr x2 (\\w'nasal'/2)\n\\fIm\\fR\t\\h'-\\n(x1u'voicing\t\\0190\t\\0690\t2000\t\t\\h'-\\n(x2u'nasal\n.nr x1 (\\w'none'/2)\n.nr x2 (\\w'stop'/2)\n\\fIb\\fR\t\\h'-\\n(x1u'none\t\\0100\t\\0690\t2000\t\t\\h'-\\n(x2u'stop\n\\fIp\\fR\t\\h'-\\n(x1u'none\t\\0100\t\\0690\t2000\t\t\\h'-\\n(x2u'stop\n.nr x1 (\\w'voicing'/2)\n.nr x2 (\\w'nasal'/2)\n\\fIn\\fR\t\\h'-\\n(x1u'voicing\t\\0190\t1780\t3300\t\t\\h'-\\n(x2u'nasal\n.nr x1 (\\w'none'/2)\n.nr x2 (\\w'stop'/2)\n\\fId\\fR\t\\h'-\\n(x1u'none\t\\0100\t1780\t3300\t\t\\h'-\\n(x2u'stop\n\\fIt\\fR\t\\h'-\\n(x1u'none\t\\0100\t1780\t3300\t\t\\h'-\\n(x2u'stop\n.nr x1 (\\w'voicing'/2)\n.nr x2 (\\w'nasal'/2)\n\\fIng\\fR\t\\h'-\\n(x1u'voicing\t\\0190\t2300\t2500\t\t\\h'-\\n(x2u'nasal\n.nr x1 (\\w'none'/2)\n.nr x2 (\\w'stop'/2)\n\\fIg\\fR\t\\h'-\\n(x1u'none\t\\0100\t2300\t2500\t\t\\h'-\\n(x2u'stop\n\\fIk\\fR\t\\h'-\\n(x1u'none\t\\0100\t2300\t2500\t\t\\h'-\\n(x2u'stop\n.nr x1 (\\w'frication'/2)\n.nr x2 (\\w'voice + fric'/2)\n.nr x3 (\\w'fricative'/2)\n\\fIs\\fR\t\\h'-\\n(x1u'frication\t\t\t\t6000\t\\h'-\\n(x3u'fricative\n\\fIz\\fR\t\\h'-\\n(x2u'voice + fric\t\\0190\t1780\t3300\t6000\t\\h'-\\n(x3u'fricative\n\\fIsh\\fR\t\\h'-\\n(x1u'frication\t\t\t\t2300\t\\h'-\\n(x3u'fricative\n\\fIzh\\fR\t\\h'-\\n(x2u'voice + fric\t\\0190\t2120\t2700\t2300\t\\h'-\\n(x3u'fricative\n\\fIf\\fR\t\\h'-\\n(x1u'frication\t\t\t\t4000\t\\h'-\\n(x3u'fricative\n\\fIv\\fR\t\\h'-\\n(x2u'voice + fric\t\\0190\t\\0690\t3300\t4000\t\\h'-\\n(x3u'fricative\n\\fIth\\fR\t\\h'-\\n(x1u'frication\t\t\t\t5000\t\\h'-\\n(x3u'fricative\n\\fIdh\\fR\t\\h'-\\n(x2u'voice + fric\t\\0190\t1780\t3300\t5000\t\\h'-\\n(x3u'fricative\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 7.4  Rule table for an event-based synthesis-by-rule program\"\n.pp\nNow the rule table, which is shown in Table 7.4,\nholds simple target positions for each phoneme segment, as well as\nthe segment type.  The latter is used to trigger events by computer\nprocedures which have access to the context of the segment.\nIn principle, this allows considerably more sophistication to be\nintroduced than does a simple segment-by-segment approach.\n.RF\n.nr x1 0.5i+0.5i+\\w'preceding consonant in this syllable (suppress burst if fricative)'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta 0.5i +0.5i\nfricative bursts on stops\naspiration bursts on unvoiced stops, affected by\n\tpreceding consonant in this syllable (suppress burst if fricative)\n\tfollowing consonant (suppress burst if another stop; introduce\n\t\tnasal plosion if a nasal)\n\tprosodics (increase burst if syllable is stressed)\nvoice bar on voiced stops (in intervocalic position)\npost-voicing on terminating voiced stops, if syllable is stressed\nanticipatory coarticulation for \\fIh\\fR\nvowel colouring when a nasal or glide follows\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 7.5  Some coarticulation effects\"\n.pp\nFor example, Table 7.5 summarizes some of the subtleties of the\nspeech production process which have been mentioned earlier in this\nchapter.  Most of them are context-dependent, with the prosodic\ncontext (whether two segments are in the same syllable; whether a\nsyllable is stressed) playing a significant role.  A scheme where\ndata-dependent \"demons\" fire on particular patterns in a linked list\nseems to be a sensible approach towards incorporating such rules.\n.rh \"Discussion.\"\nThere are two opposing trends in speech synthesis by rule.\nOn the one hand larger and larger segment inventories can be used,\ncontaining more and more allophones explicitly.\nThis is the approach of the Votrax sound-segment synthesizer,\ndiscussed in Chapter 11.\nIt puts an increasing burden on the person who codes the utterances\nfor synthesis, although, as we shall see, computer programs can assist with\nthis task.\nOn the other hand the segment inventory can be kept small, perhaps\ncomprising just the logical phonemes as in the ISP system.\nThis places the onus on the computer program to accomodate allophonic variations,\nand to do so it must take account of the segmental and prosodic\ncontext of each phoneme.\nAn event-based approach seems to give the best chance of incorporating\ncontextual modification whilst avoiding undesired interactions.\n.pp\nThe second trend brings synthesis closer to the articulatory process\nof speech production.  In fact an event-based system would be\nan ideal way of implementing an articulatory model for speech synthesis\nby rule.  It would be much more satisfying to have the rule table\ncontain articulatory target positions instead of resonance ones,\nwith events like \"begin tongue motion towards upper teeth with a given\neffort\".  The problem is that hard data on articulatory postures and\nconstraints is much more difficult to gather than resonance information.\n.pp\nAn interesting question that relates to articulation is whether formant\nmotion can be simulated adequately by a small number of linear pieces.\nThe segment-by-segment system described above had as many as nine\npieces for a single phoneme, for some phonemes had three phases\nand each one contributes up to three pieces (transition in,\nsteady state, and transition out).\nAnother system used curves of decaying exponential\nform which ensured that all transitions started rapidly towards\nthe target position but slowed down as it was approached (Rabiner, 1968, 1969).\n.[\nRabiner 1968 Speech synthesis by rule Bell System Technical J\n.]\n.[\nRabiner 1969 A model for synthesizing speech by rule\n.]\nThe time-constant of decay was stored with each segment in the rule\ntable.  The rhythm of the synthetic speech was controlled at this level,\nfor the next segment was begun when all the formants had attained\nvalues sufficiently close to the current targets.\nThis is a poor model of the human speech production process, where rhythm\nis dictated at a relatively high level and the next phoneme is not\nsimply started when the current one happens to end.\nNevertheless, the algorithm produced smooth, continuous formant motions\nnot unlike those found in spectrograms.\n.pp\nThere is, however, by no means universal agreement on decaying exponential formant\nmotions.  Lawrence (1974) divided segments into \"checked\" and \"free\"\ncategories, corresponding roughly to consonants and vowels; and postulated\n.ul\nincreasing\nexponential transitions into checked segments, and decaying transitions into\nfree ones.\n.[\nLawrence 1974\n.]\nThis is a reasonable supposition if you consider the mechanics of\narticulation.  The speed of movement of the tongue (for example) is likely\nto increase until it is physically stopped by reaching the roof of the\nmouth.\nWhen moving away from a checked posture into a free one the transition will\nbe rapid at first but slow down to approach the target asymptotically,\ngoverned by proprioceptive feedback.\n.pp\nThe only thing that seems to be agreed is that the formant tracks should\ncertainly\n.ul\nnot\nbe piecewise linear.  However, in the face of\nconflicting opinions as to whether exponentials should be decaying\nor increasing, piecewise linear motions seem to be a reasonable\ncompromise!  It is likely that the precise shape of formant\ntracks is unimportant so long as the gross features are imitated\ncorrectly.\nNevertheless, this is a question which an articulatory model\ncould help to answer.\n.sh \"7.6  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"7.7  Further reading\"\n.pp\nThere are unfortunately few books to recommend on the subject of\njoining segments of speech.\nThe references form a representative and moderately comprehensive bibliography.\nHere is some relevant background reading in linguistics.\n.LB \"nn\"\n.\\\"Fry-1976-1\n.]-\n.ds [A Fry, D.B.(Editor)\n.ds [D 1976\n.ds [T Acoustic phonetics\n.ds [I Cambridge Univ Press\n.ds [C Cambridge, England\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nThis book of readings contains many classic papers on acoustic phonetics\npublished from 1922\\-1965.\nIt covers much of the history of the subject, and is intended\nprimarily for students of linguistics.\n.in-2n\n.\\\"Lehiste-1967-2\n.]-\n.ds [A Lehiste, I.(Editor)\n.ds [D 1967\n.ds [T Readings in acoustic phonetics\n.ds [I MIT Press\n.ds [C Cambridge, Massachusetts\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nAnother basic collection of references which covers much the same ground\nas Fry (1976), above.\n.in-2n\n.\\\"Sivertsen-1961-3\n.]-\n.ds [A Sivertsen, E.\n.ds [D 1961\n.ds [K *\n.ds [T Segment inventories for speech synthesis\n.ds [J Language and Speech\n.ds [V 4\n.ds [P 27-89\n.nr [P 1\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\nThis is a careful early study of the quantitative implications of using\nphonemes, demisyllables, syllables, and words as the basic building\nblocks for speech synthesis.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"8  PROSODIC FEATURES IN SPEECH SYNTHESIS\"\n.ds RT \"Prosodic features\n.ds CX \"Principles of computer speech\n.pp\nProsodic features are those which characterize an utterance as a whole,\nrather than having a local influence on individual sound segments.\nFor speech output from computers, an \"utterance\" usually comprises a\nsingle unit of information which stretches over several words \\(em a clause\nor sentence.  In natural speech an utterance can be very much longer, but\nit will be broken into prosodic units which are again roughly the size of a\nclause or sentence.  These prosodic units are certainly closely related\nto each other.  For example, the pitch contour used when introducing a new\ntopic is usually different from those employed to develop it subsequently.\nHowever, for the purposes of synthesis the successive prosodic units can\nbe treated independently, and information about pitch contours to be used\nwill have to be specified in the input for each one.\nThe independence between them is not complete, however, and\nlower-level contextual effects, such as interpolation of pitch between\nthe end of one prosodic unit and the start of the next, must still be\nimitated.\n.pp\nProsodic features were introduced briefly in Chapter 2.\nVariations in voice dynamics occur in three dimensions:  pitch of the voice,\ntime, and amplitude.\nThese dimensions are inextricably twined together in living speech.\nVariations in voice quality are much less important for the factual\nkind of speech usually sought in voice response applications,\nalthough they can play a considerable in conveying emotions\n(for a discussion of the acoustic manifestations of emotion in speech,\nsee Williams and Stevens, 1972).\n.[\nWilliams Stevens 1972\n.]\n.pp\nThe distinction between prosodic and segmental effects is a traditional one,\nbut it becomes rather fuzzy when examined in detail.\nIt is analogous to the distinction between hardware and\nsoftware in computer science:  although useful from some points of view\nthe borderline becomes blurred as one gets closer to actual systems \\(em with\nmicrocode, interrupts, memory management, and the like.\nAt a trivial level, prosodics\ncannot exist without segmentals, for there must be some vehicle to carry the\nprosodic contrasts.\nTiming \\(em a prosodic feature \\(em is actually realized by the durations of\nindividual segments.  Pauses are tantamount to silent segments.\n.pp\nWhile pitch may seem to be relatively independent of segmentals \\(em and\nthis view is reinforced by the success of the source-filter model\nwhich separates the frequency of the\nexcitation source from the filter characteristics \\(em there\nare some subtle phonetic effects of pitch.\nIt has been observed that it drops on the transition into certain\nconsonants, and rises again on the transition out (Haggard\n.ul\net al,\n1970).\n.[\nHaggard Ambler Callow 1970\n.]\nThis can be explained in terms of variations in pressure from the\nlungs on the vocal cords (Ladefoged, 1967).\n.[\nLadefoged 1967\n.]\nBriefly, the increase in mouth pressure which occurs during some consonants\ncauses a reduction in the pressure difference across the vocal cords\nand in the rate of flow of air between them.\nThis results in a decrease in their frequency of vibration.\nWhen the constriction is released, there is a temporary increase in the air\nflow which increases the pitch again.\nThe phenomenon is called \"microintonation\".\nIt is particularly noticeable in voiced stops, but also occurs in voiced\nfricatives and unvoiced stops.\nSimulation of the effect in synthesis-by-rule has often been found to give\nnoticeable improvements in the speech quality.\n.pp\nLoudness also has a segmental role.  For example, we noted in the last chapter\nthat amplitude values play a small part in identification of fricatives.\nIn fact loudness is a very\n.ul\nweak\nprosodic feature.  It contributes little to the perception of stress.\nEven for shouting the distinction from normal speech is as much in the voice\nquality as in amplitude\n.ul\nper se.\nIt is not necessary to consider varying loudness on a prosodic basis\nin most speech synthesis systems.\n.pp\nThe above examples show how prosodic features have segmental influences\nas well.\nThe converse is also true:  some segmental features have a prosodic effect.\nThe last chapter described how stress is associated with increased aspiration\nof syllable-initial unvoiced stops.  Furthermore, stressed syllables\nare articulated with greater effort than unstressed ones, and hence the formant\ntransitions are more likely to attain their target values\nunder circumstances which would otherwise cause them to fall short.\nIn unstressed syllables, extreme vowels (like\n.ul\nee, aa, uu\\c\n)\ntend to more centralized sounds\n(like\n.ul\ni, uh, u\nrespectively).\nAlthough all British English vowels\n.ul\ncan\nappear in unstressed syllables, they often become \"reduced\" into a\ncentralized form.\nConsider the following examples.\n.LB\n.NI\ndiplomat\t\\ \n.ul\nd i p l uh m aa t\n.NI\ndiplomacy\t\\ \n.ul\nd i p l uh u m uh s i\n.NI\ndiplomatic\t\\ \n.ul\nd i p l uh m aa t i k.\n.LE\nThe vowel of the second syllable is reduced to\n.ul\nuh\nin \"diplomat\" and \"diplomatic\", whereas the root form \"diploma\", and also\n\"diplomacy\", has a diphthong\n(\\c\n.ul\nuh u\\c\n)\nthere.  The third syllable has an\n.ul\naa\nin \"diplomat\" and \"diplomatic\" which is reduced to\n.ul\nuh\nin \"diplomacy\".\nIn these cases the reduction is shown explicitly in the phonetic transcription;\nbut in more marginal examples where it is less extreme it will not be.\n.pp\nI have tried to emphasize in previous chapters that prosodic features are\nimportant in speech synthesis.\nThere is something very basic about them.\nRhythm is an essential part of all bodily activity \\(em of breathing,\nwalking, working and playing \\(em and so it pervades speech too.\nMothers and babies communicate effectively using intonation alone.\nSome experiments have indicated that the language environment of\nan infant affects his babbling at an early age, before he has effective\nsegmental control.\nThere is no doubt that \"tone of voice\" plays a large part in human\ncommunication.\n.pp\nHowever, early attempts at synthesis did not pay too\nmuch attention to prosodics, perhaps because it was thought sufficient to get the\nmeaning across by providing clear segmentals.\nAs artificial speech grows more widespread, however, it is becoming\napparent that its acceptability to users, and hence its ultimate\nsuccess, depends to a large extent on incorporating natural-sounding\nprosodics.  Flat, arhythmic speech may be comprehensible in short stretches,\nbut it strains the concentration in significant discourse and people\nare not usually prepared to listen to it.\nUnfortunately, current commercial speech output systems do not really tackle\nprosodic questions, which indicates our present rather inadequate\nstate of knowledge.\n.pp\nThe importance of prosodics for automatic speech\n.ul\nrecognition\nis beginning to be appreciated too.  Some research projects\nhave attended to the automatic identification of points of stress,\nin the hope that the clear articulation of stressed syllables can be used\nto provide anchor points in an unknown utterance (for example, see Lea\n.ul\net al,\n1975).\n.[\nLea Medress Skinner 1975\n.]\n.pp\nBut prosodics and segmentals are closely intertwined.\nI have chosen to\ntreat them in separate chapters in order to split the material up into\nmanageable chunks rather than to enforce a deep division between them.\nIt is also true that synthesis of prosodic features is an uncharted and\ncontroversial area, which gives this chapter rather a different\nflavour from the last.\nIt is hard to be as definite about alternative strategies\nand methods as you can for segment concatenation.\nIn order to make the treatment as concrete and down-to-earth as possible,\nI will describe in some detail two example projects in prosodic synthesis.\nThe first treats the problem of transferring pitch from one utterance to\nanother, while the second considers how artificial timing and pitch can be\nassigned to synthetic speech.\nThese examples illustrate quite different problems, and are reasonably\nrepresentative of current research activity.\n(Other systems are described by Mattingly, 1966; Rabiner\n.ul\net al,\n1969.)  Before\n.[\nMattingly 1966\n.]\n.[\nRabiner Levitt Rosenberg 1969\n.]\nlooking at the two examples, we will discuss\na feature which is certainly prosodic but does not appear in the\nlist given earlier \\(em stress.\n.sh \"8.1  Stress\"\n.pp\nStress is an everyday notion, and when\nlistening to natural speech people can usually agree on which syllables\nare stressed.  But it is difficult to characterize in acoustic terms.\nFrom the speaker's point of view, a stressed syllable is produced by\npushing more air out of the lungs.  For a listener, the points of stress\nare \"obvious\".\nYou may think that stressed syllables are louder than the others:  however,\ninstrumental studies show that this is not necessarily (nor even usually)\nso (eg Lehiste and Peterson, 1959).\n.[\nLehiste Peterson 1959\n.]\nStressed syllables frequently have a longer vowel than unstressed\nones, but this is by no means universally true \\(em if you say \"little\"\nor \"bigger\" you will find that the vowel in the first, stressed, syllable\nis short and shows little sign of lengthening as you increase the emphasis.\nMoreover, experiments using bisyllabic nonsense words have indicated\nthat some people consistently judge the\n.ul\nshorter\nsyllable to be stressed in the absence of other clues (Morton and Jassem,\n1965).\n.[\nMorton Jassem 1965\n.]\nPitch often helps to indicate stress.\nIt is not that stressed syllables are always higher- or lower-pitched\nthan neighbouring ones, or even that they are uttered with a rising or\nfalling pitch.  It is the\n.ul\nrate of change\nof pitch that tends to be greater\nfor stressed syllables:  a sharp rise or fall,\nor a reversal of direction, helps to give emphasis.\n.pp\nStress is acoustically manifested in timing and pitch,\nand to a much lesser extent in loudness.\nHowever it is a rather subtle feature and does\n.ul\nnot\ncorrespond simply to duration increases or pitch rises.\nIt seems that listeners unconsciously put together all the clues\nthat are present in an utterance in order to deduce which syllables are\nstressed.\nIt may be that speech is perceived by a listener with reference to how\nhe would have produced it himself, and that this is how he detects which syllables\nwere given greater vocal effort.\n.pp\nThe situation is confused by the fact that certain syllables in words are\noften said in ordinary language to be \"stressed\" on account of their\nposition in the word.  For example, the words\n\"diplomat\", \"diplomacy\", and \"diplomatic\" have stress on the first,\nsecond, and third syllables respectively.\nBut here we are talking about the word itself rather than\nany particular utterance of it.  The \"stress\" is really\n.ul\nlatent\nin the indicated syllables and only made manifest upon uttering them,\nand then to a greater or lesser degree depending on exactly how\nthey are uttered.\n.pp\nSome linguists draw a careful distinction between salient syllables,\naccented syllables, and stressed syllables,\nalthough the words are sometimes used differently by different authorities.\nI will not adopt a precise terminology here,\nbut it is as well to be aware of the subtle distinctions involved.\nThe term \"salience\" is applied to actual utterances, and salient\nsyllables are those that are perceived as being more prominent than their\nneighbours.\n\"Accent\" is the potential for salience, as marked, for example,\nin a dictionary or lexicon.\nThus the discussion of the \"diplo-\" words above is about accent.\nStress is an articulatory phenomenon associated with increased\nmuscular activity.\nUsually, syllables which are perceived as salient were produced with stress,\nbut in shouting, for example, all syllables can be stressed \\(em even\nnon-salient ones.\nFurthermore, accented syllables may not be salient.\nFor instance, the first syllable of the word \"very\" is accented,\nthat is, potentially salient, but in a sentence as uttered it may or may not be\nsalient.  One can say\n.LB\n\"\\c\n.ul\nhe's\nvery good\"\n.LE\nwith salience on \"he\" and possibly \"good\", or\n.LB\n\"he's\n.ul\nvery\ngood\"\n.LE\nwith salience on the first syllable of \"very\", and possibly \"good\".\n.pp\nNon-standard stress patterns are frequently used to bring out contrasts.\nWords like \"a\" and \"the\" are normally unstressed, but can be stressed\nin contexts where ambiguity has arisen.\nThus factors which operate at a much higher level than the phonetic structure\nof the utterance must be taken into account when deciding where stress\nshould be assigned.  These include syntactic and semantic considerations,\nas well as the attitude of the speaker and the likely attitude of\nthe listener to the material being spoken.\nFor example, I might say\n.LB\n\"Anna\n.ul\nand\nNikki should go\",\n.LE\nwith emphasis on the \"and\" purely because I was aware that my listener\nmight quibble about the expense of sending them both.\nClearly some notation is needed to communicate to the synthesis process\nhow the utterance is supposed to be rendered.\n.sh \"8.2  Transferring pitch from one utterance to another\"\n.pp\nFor speech stored in source-filter form and concatenated on a\nslot-filling basis, it would be useful to\nhave stored typical pitch contours which can be applied to the\nsynthetic utterances.\nFrom a practical point of view it is important to be able to generate\nnatural-sounding pitch for high-quality artificial speech.\nAlthough several algorithms for creating completely synthetic contours\nhave been proposed \\(em and we will examine one later in this chapter \\(em\nthey are unsuitable for high-quality speech.\nThey are generally designed for use with synthesis-by-rule from phonetics,\nand the rather poor quality of articulation does not encourage the\ndevelopment of excellent pitch assignment procedures.  With speech\nsynthesized by rule there is generally an emphasis on keeping the\ndata storage requirements to a minimum, and so it is not appropriate\nto store complete contours.\nMoreover, if speech is entered in textual\nform as phoneme strings, it is natural to attach pitch information as markers\nin the text rather than by entering a complete and detailed contour.\n.pp\nThe picture is rather different for concatenated segments of natural speech.\nIn the airline reservation system, with utterances formed from templates like\n.LB\nFlight number \\(em leaves \\(em at \\(em , arrives in \\(em at \\(em ,\n.LE\nit is attractive to store the pitch contour of one complete instance of the\nutterance and apply it to all synthetic versions.\n.pp\nThere is an enormous literature on the anatomy of intonation, and much of it\nrests upon the notion of a pitch contour as a descriptive aid to analysis.\nUnderlying this is the assumption, usually unstated, that a contour can be\ndiscussed independently of the particular stream of words that manifests it;\nthat a single contour can somehow be bound to any sentence (or phrase, or\nclause) to produce an acceptable utterance.  But the contour, and its binding,\nare generally described only at the grossest level, the details being left\nunspecified.\n.pp\nThere are phonetic influences on pitch \\(em the characteristic lowering\nduring certain consonants was mentioned above \\(em and these are\nnot normally considered as part of intonation.\nSuch effects will certainly spoil attempts to store contours extracted\nfrom living speech and apply them to different utterances, but the impairment\nmay not be too great, for pitch is only one of many segmental clues to\nconsonant identification.\n.pp\nIn the system mentioned earlier which generated 7-digit telephone numbers\nby concatenating formant-coded words, a single natural pitch contour\nwas applied to all utterances.\nIt was taken to match as well as possible the general shape of the\ncontours measured in naturally-spoken telephone numbers.  However, this is a very\nrestricted environment, for telephone numbers exhibit almost no variety in\nthe configuration of stressed and unstressed syllables \\(em\nthe only digit which is not a monosyllable is \"seven\".\nSignificant problems arise when more general utterances are considered.\n.pp\nSuppose the pitch contour of one utterance (the \"source\")\nis to be transferred to another (the \"target\").\nAssume that the utterances are encoded in source-filter form,\neither as parameter tracks for a formant synthesizer or as linear predictive\ncoefficients.\nThen there are no technical obstacles to combining pitch and segmentals.\nThe source must be available as a complete utterance, while the target\nmay be formed by concatenating smaller units such as words.\n.pp\nFor definiteness, we will consider utterances of the form\n.LB\nThe price is \\(em dollars and \\(em cents,\n.LE\nwhere the slots are filled by numbers less than 100;\nand of the form\n.LB\nThe price is \\(em cents.\n.LE\nThe domain of prices encompasses a wide range of syllable\nconfigurations.\nThere are between one and five syllables in each variable part,\nif the numbers are restricted to be less than 100.\nThe sentences have a constant pragmatic, semantic, and syntactic structure.\nAs in the vast majority of real-life situations,\nminimal phonetic distinctions between utterances do not occur.\n.pp\nPitch transfer is complicated by the fact that values of the source pitch\nare only known during the voiced parts of the utterance.\nAlthough it would certainly be possible to extrapolate pitch\nover unvoiced parts, this would introduce some artificiality into\nthe otherwise completely natural contours.\nLet us assume, therefore, that the pitch contour\nof the voiced nucleus of each syllable in the source is applied to the\ncorresponding syllable nucleus in the target.\n.pp\nThe primary factors which might tend to inhibit successful transfer\nare\n.LB\n.NP\ndifferent numbers of syllables in the utterances;\n.NP\nvariations in the pattern of stressed and unstressed syllables;\n.NP\ndifferent syllable durations;\n.NP\npitch discontinuities;\n.NP\nphonetic differences between the utterances.\n.LE\n.rh \"Syllabification.\"\nIt is essential to take into account the syllable structures\nof the utterances, so that pitch is transferred between\ncorresponding syllables rather than over the utterance\nas a whole.\nFortunately, syllable boundaries can be detected automatically\nwith a fair degree of accuracy, especially if the speech is carefully\nenunciated.\nIt is worth considering briefly how this can be done, even though it takes\nus off the main topic of synthesis and into speech analysis.\n.pp\nA procedure developed by Mermelstein (1975)\ninvolves integrating the spectral energy\nat each point in the utterance.\n.[\nMermelstein 1975 Automatic segmentation of speech into syllabic units\n.]\nFirst the low (<500\\ Hz) and high (>4000\\ Hz) ends are filtered out\nwith 12\\ dB/octave cutoffs.\nThe resulting energy signal is smoothed\nby a 40\\ Hz lowpass filter, giving a so-called \"loudness\"\nfunction.\nAll this can be accomplished with simple recursive digital filters.\n.pp\nThen, the loudness function is compared with its convex hull.\nThe convex hull is the shape a piece of elastic would assume if\nstretched over the top of the loudness function and anchored down at\nboth ends, as illustrated in Figure 8.1.\n.FC \"Figure 8.1\"\nThe point of maximum difference between the hull and loudness function\nis taken to be a tentative syllable\nboundary.\nThe hull is recomputed, but anchored to the actual loudness function\nat the tentative boundary,\nand the points of maximum hull-loudness difference in each of the\ntwo halves  are selected as further tentative\nboundaries.\nThe procedure continues recursively until the maximum hull-loudness\ndifference, with the hull anchored at each tentative boundary,\nfalls below a certain minimum (say 4\\ dB).\n.pp\nAt this stage, the number of tentative boundaries will greatly exceed\nthe actual number of syllables (by a factor of around 5).\nMany of the extraneous boundaries are eliminated by the following\nconstraints:\n.LB\n.NP\nif two boundaries lie within a certain time of each other\n(say 120\\ msec), one of them is discarded;\n.NP\nif the maximum loudness within a tentative syllable falls too\nfar short of the overall maximum for the utterance\n(more than 20\\ dB), one boundary is discarded.\n.LE\nThe question of which boundary to discard can be decided by\nexamining the voicing continuity of the utterance.\nIf possible, voicing across a syllable boundary should be avoided.\nOtherwise, the boundary with the smallest hull-loudness\ndifference should be rejected.\n.RF\n.nr x0 \\w'boundaries moved slightly to correspond better with voicing:'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 3.4i +0.5i\n\\l'\\n(x0u\\(ul'\n.sp\ntotal syllable count:\t332\nboundaries missed by algorithm:\t\\0\\09\t(3%)\nextra boundaries inserted by algorithm:\t\\029\t(9%)\nboundaries moved slightly to correspond better with voicing:\n\t\\0\\03\t(1%)\n.sp\ntotal errors:\t\\041\t(12%)\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 8.1  Success of the syllable segmentation procedure\"\n.pp\nTable 8.1 illustrates the success of this syllabification\nprocedure, in a particular example.\nSegmentation is performed with less than 10% of extraneous\nboundaries being inserted,\nand much less than 10% of actual boundaries being missed.\nThese figures are rather sensitive to the values of the\nthree thresholds.\nThe values were chosen to err on the side\nof over-zealous syllabification, because all the boundaries need to be checked\nby ear and eye and it is easier to delete\na boundary by hand than to insert one at an appropriate place.\nIt may well be that with careful optimization of thresholds,\nbetter figures could be\nachieved.\n.rh \"Stressed and unstressed syllables.\"\nIf the source and target utterances have the same number of\nsyllables, and the same pattern of stressed and unstressed syllables,\npitch can simply be transferred from a syllable in the source\nto the corresponding one in the target.\nBut if the pattern differs \\(em even though the\nnumber of syllables may be the same, as in \"eleven\" and \"seventeen\" \\(em\nthen a one-to-one mapping will conflict with the stress points,\nand certainly sound unnatural.\nHence an attempt should be made to ensure that the pitch is mapped in a\nplausible way.\n.pp\nThe syllables of each utterance can be classified as \"stressed\"\nand \"unstressed\".\nThis distinction could be made automatically by\ninspection of the pitch contour, within the domain of utterances used,\nand possibly even in general (Lea\n.ul\net al,\n1975).\n.[\nLea Medress Skinner 1975\n.]\nHowever, in many cases it is expedient to perform the job by hand.\nIn our example, the sentences have fixed \"carrier\" parts and\nvariable \"number\" parts.\nThe stressed carrier syllables, namely\n.LB\n\"... price ... dol\\- ... cents\",\n.LE\ncan be marked as such, by hand,\nto facilitate proper alignment between the source and target.\nThis marking would be difficult to do automatically\nbecause it would be hard to distinguish the carrier from the numbers.\n.pp\nEven after classifying the syllables as \"carrier stressed\",\n\"stressed\", and \"unstressed\", alignment still presents problems,\nbecause the configuration of syllables in the variable parts\nof the utterances may differ.\nSyllables in the source which have no\ncorrespondence in the target can be ignored.\nThe pitch track of\nthe source syllable can be replicated for each\nadditional syllable in corresponding\nposition in the target.\nOf course, a stressed syllable should be selected for copying\nif the unmatched target syllable is stressed,\nand similarly for unstressed ones.\nIt is rather dangerous to copy exactly a part of a pitch\ncontour, for the ear is very sensitive to the juxtaposition of\nidentically intoned segments of speech \\(em especially when the segment is stressed.\nTo avoid this, whenever a stressed syllable is replicated the\npitch values should be decreased by, say, 20%, on the second copy.\nIt sometimes happens that a single stressed syllable in the source\nneeds to cover a stressed-unstressed pair in the target:  in\nthis case the first part of the source pitch track can be used\nfor the stressed syllable, and the remainder for the\nunstressed one.\n.pp\nThe example of Figure 8.2 will help to make these rules clear.\n.FC \"Figure 8.2\"\nNote that the marking alone is done by hand.\nThe detailed mapping decisions can be left to the computer.\nThe rules were derived intuitively, and do not have any sound theoretical\nbasis.\nThey are intended to give reasonable results in the majority of cases.\n.pp\nFigure 8.3 shows the result of transferring the pitch from \"the price is ten\ncents\" to \"the price is seventy-seven cents\".\n.FC \"Figure 8.3\"\nThe syllable boundaries which are marked were determined automatically.\nThe use of the last 30% of the\n\"ten\" contour to cover the first \"-en\" syllable, and its replication\nto serve the \"-ty\" syllable, can be seen.\nHowever, the 70%\\(em30% proportion is applied to the source contour,\nand the linear distortion (described next) upsets the proportion in the\ntarget utterance.\nThe contour of the second \"seven\" can be seen to be a\nreplication of that of the first one, lowered by 20%.\nNotice that the pitch extraction procedure has introduced an artifact into the final\npart of one of the \"cents\" contours by doubling the pitch.\n.rh \"Stretching and squashing.\"\nThe pitch contour over a source syllable nucleus must be stretched\nor squashed to match the duration\nof the target nucleus.\nIt is difficult to see how anything other than linear stretching\nand squashing could be done without considerably increasing the\ncomplexity of the procedure.\nThe gross non-linearities will have been accounted for\nby the syllable alignment process, and so simple linear time-distortion\nshould not cause too much degradation.\n.rh \"Pitch discontinuities.\"\nSudden jumps in pitch during voiced speech sound peculiar,\nalthough they can in fact be produced naturally (by yodelling).\nPeople frequently burst into laughter on hearing them in synthetic speech.\nIt is particularly important to avoid this diverting effect in\nvoice response applications,\nfor the listener's attention is instantly directed\naway from what is said to the voice that speaks.\n.pp\nDiscontinuities can arise in the pitch-transfer procedure either by a\nvoiced-unvoiced-voiced transition between syllables mapping on to\na voiced-voiced transition in the target,\nor by voicing continuity being broken when the syllable\nalignment procedure drops or replicates a syllable.\nThere are several ways in which at least some of the possibilities can\nbe avoided.\nFor example, one could hold unstressed syllables at a constant pitch\nwhose value coincides with either the end of the previous\nsyllable's contour or the beginning of the next syllable's contour,\ndepending on which transition is voiced.\nAlternatively, the policy of reserving the trailing part\nof a stressed syllable in the source to cover an unmatched following\nunstressed syllable in the target could be generalized to allow use of the leading 30%\nof the next stressed syllable's contour instead,\nif that maintained voicing continuity.\nA third solution is simply to merge the pitch contours\nat a discontinuity by mixing the average pitch value at the break\nwith the pitch contour on either side of it in a proportion which\nincreases linearly from the edges of the domain of influence to the discontinuity.\nFigure 8.4 shows the effect of this merging,\nwhen the pitch contour of \"the price is seven cents\"\nis transferred to \"the price is eleven cents\".\n.FC \"Figure 8.4\"\nOf course, the\ninterpolated part will not necessarily be linear.\n.rh \"Results of an experiment on pitch transfer.\"\nSome experiments have been conducted to evaluate the performance\nof this pitch transfer method on the kind of utterances discussed above\n(Witten, 1979).\n.[\nWitten 1979 On transferring pitch from one utterance to another\n.]\nFirst, the source and target sentences\nwere chosen to be lexically identical, that is, the same words were spoken.\nFor this experiment alone,\nexpert judges were employed.\nEach sentence was recorded twice (by the same person),\nand pitch was transferred from copy A\nto copy B and vice versa.  Also, the originals were resynthesized from their linear\npredictive coefficients with their own pitch contours.\nAlthough all four often sounded extremely similar, sometimes the pitch\ncontours of originals A and B were quite different,\nand in these cases it was immediately obvious to the ear that two of\nthe four utterances shared the same intonation,\nwhich was different to that shared by the other two.\n.pp\nExperienced researchers in speech analysis-synthesis served as\njudges.\nIn order to make the test as stringent as possible it was explained\nto them exactly what had been done,\nexcept that the order of the utterances in each quadruple was kept secret.\nThey were asked to identify which two of the four sentences did not have their\noriginal contours,\nand were allowed to listen to each quadruple as often as they liked.\nOn occasion they were prepared to identify only one, or even none,\nof the sentences as artificial.\n.pp\nThe result was that an utterance with pitch transferred\nfrom another, lexically identical, one is indistinguishable from\na resynthesized version of the original, even to a skilled ear.\n(To be more precise, this hypothesis\ncould not be rejected even at the 1% level of statistical significance.)  This\ngave confidence in the transfer procedure.\nHowever, one particular judge was quite successful at identifying the bogus contours,\nand he attributed his success to the fact that\non occasion the segmental durations did not accord with the\npitch contour.\nThis casts a shadow of suspicion on the linear stretching and\nsquashing mechanism.\n.pp\nThe second experiment examined pitch transfers between utterances having only one variable part\neach (\"the price is ... cents\") to test the transfer\nmethod under relatively controlled conditions.\nTen sentences of the form\n.LB\n\"The price is \\(em cents\"\n.LE\nwere selected to cover\na wide range of syllable structures.\nEach one was regenerated with pitch transferred from each of\nthe other nine,\nand these nine versions were paired with the original resynthesized\nwith its natural pitch.\nThe $10 times 9=90$ resulting pairs were recorded on tape in random order.\n.pp\nFive males and five females, with widely differing occupations\n(secretaries, teachers, academics, and students), served as judges.\nWritten instructions explained that the tape contained pairs of\nsentences which were lexically identical but had a slight difference\nin \"tone of voice\", and that the subjects were to judge which of\neach pair sounded \"most natural and intelligible\".  The\nresponse form gave the price associated with each pair \\(em\na preliminary experiment had shown that there was never\nany difficulty in identifying this \\(em and a column for decision.\nWith each decision, the subjects recorded their confidence in the decision.\nSubjects could rest at any time during the test, which lasted for about\n30 minutes, but they were not permitted to hear any pair a second time.\n.pp\nDefining a \"success\" to be a choice of the utterance with\nnatural pitch as the best of a pair,\nthe overall success rate was about 60%.\nIf choices were random, one would of course expect only a 50% success rate,\nand the figure obtained was significantly different from this.\nAlmost half the choices were correct and made with high confidence;\nhigh-confidence but incorrect choices accounted for a quarter of the\njudgements.\n.pp\nTo investigate structural effects in the pitch transfer process,\nlow confidence decisions were ignored to eliminate noise, and the others\nlumped together and tabulated by source and target utterance.\nThe number of stressed and unstressed syllables does not appear to play\nan important part in determining whether a particular utterance is an\neasy target.\nFor example, it proved to be particularly difficult to tell\n.EQ\ndelim @@\n.EN\nnatural from transferred contours with utterances $0.37 and $0.77.\n.EQ\ndelim $$\n.EN\nIn fact, the results showed no better than random discrimination for them,\neven though the decisions in which listeners expressed little confidence\nhad been discarded.\nHence it seems that the syllable alignment procedure and the policy\nof replication were successful.\n.pp\n.EQ\ndelim @@\n.EN\nThe worst target scores were for utterances $0.11 and $0.79.\n.EQ\ndelim $$\n.EN\nBoth of these contained large unbroken voiced periods\nin the \"variable\" part \\(em almost twice as long as the next longest\nvoiced period.\nThe first has an unstressed syllable followed by\na stressed one with no break in voicing,\ninvolving, in a natural contour,\na fast but continuous climb in pitch over the juncture,\nand it is not surprising that it proved to be the most difficult target.\nA more sophisticated \"smoothing\" algorithm than the\none used may be worth investigating.\n.pp\nIn a third experiment, sentences with two variable parts were used to check\nthat the results of the second experiment extended to more complex\nutterances.\nThe overall success rate was 75%, significantly different from chance.\nHowever, a breakdown of the results by source and target utterance\nshowed that there was one contour (for the utterance\n\"the price is 19 dollars and 8 cents\") which exhibited very successful\ntransfer, subjects identifying the transferred-pitch utterances at only\na chance level.\n.pp\nFinally, transfers of pitch from utterances with two variable parts\nto those with one variable part were tested.\nPitch contours were transferred to sentences with the same \"cents\"\nfigure but no \"dollars\" part; for example,\n\"the price is five dollars and thirteen cents\"\nto\n\"the price is thirteen cents\".  The\ncontour was simply copied between the corresponding\nsyllables, so that no adjustment needed to be made\nfor different syllable structures.\nThe overall score was 60 successes in 100 judgements \\(em\nthe same percentage as in the second experiment.\n.pp\nTo summarize the results of these four experiments,\n.LB\n.NP\neven accomplished linguists cannot distinguish an utterance from one with\npitch transferred from a different recording of it;\n.NP\nwhen the utterance contained only one variable part embedded in a\ncarrier sentence,\nlay listeners identified the original correctly in 60% of cases,\nover a wide variety of syllable structures:  this\nfigure differs significantly from the chance value of 50%;\n.NP\nlay listeners identified the original confidently and correctly in\n50% of cases; confidently but incorrectly in 25% of cases;\n.NP\nthe greatest hindrance to successful transfer was the presence of\na long uninterrupted period of voicing in the target utterance;\n.NP\nthe performance of the method deteriorates as the number\nof variable parts in the utterances increases;\n.NP\nsome utterances seemed to serve better than others as the pitch source for\ntransfer, although this was not correlated with complexity of syllable structure;\n.NP\neven when the utterance contained two variable parts,\nthere was one source utterance whose pitch contour was\ntransferred to all the others so successfully that listeners could not identify\nthe original.\n.LE\n.pp\nThe fact that only 60% of originals in the second experiment were\nspotted by lay listeners in a stringent\npaired-comparison test \\(em many of them being identified without confidence \\(em\ndoes encourage the use of the procedure for generating stereotyped,\nbut different, utterances of high quality in voice-response systems.\nThe experiments indicate that although different syllable patterns\ncan be handled satisfactorily by this procedure,\nlong voiced periods should be avoided if possible when designing\nthe message set,\nand that if individual utterances must contain multiple variable parts\nthe source utterance should be chosen with the aid of listening tests.\n.sh \"8.3  Assigning timing and pitch to synthetic speech\"\n.pp\nThe pitch transfer method can give good results within a fairly narrow\ndomain of application.\nBut like any speech output technique which treats complete utterances\nas a single unit, with provision for a small number of slot-fillers to\naccomodate data-dependent messages, it becomes unmanageable in more general\nsituations with a large variety of utterances.\nAs with segmental synthesis it becomes necessary to consider methods\nwhich use a textual rather than an acoustically-based representation\nof the prosodic features.\n.pp\nThis raises a problem with prosodics that was not there for segmentals:  how\n.ul\ncan\nprosodic features be written in text form?\nThe standard phonetic transcription method does not give much help with\nnotation for prosodics.  It does provide a diacritical mark to indicate\nstress, but this is by no means enough information for synthesis.\nFurthermore, text-to-speech procedures (described in the next chapter)\npromise to allow segmentals to be specified by an ordinary orthographic\nrepresentation of the utterance; but we have seen that considerable\nintelligence is required to derive prosodic features from text.\n(More than mere intelligence may be needed:  this is underlined by a paper\n(Bolinger, 1972)\ndelightfully entitled\n\"Accent is predictable \\(em if you're a mind reader\"!)\n.[\nBolinger 1972 Accent is predictable \\(em if you're a mind reader\n.]\n.pp\nIf synthetic speech is to be used as a computer output medium rather\nthan as an experimental tool for linguistic research, it is important\nthat the method of specifying utterances is natural and easy to learn.\nProsodic features must be communicated to the computer in a manner\nconsiderably simpler than individual duration and pitch specifications\nfor each phoneme, as was required in early synthesis-by-rule systems.\nFortunately, a notation has been developed for conveying some of the\nprosodic features of utterances, as a by-product of the linguistically\nimportant task of classifying the intonation contours used in\nconversational English (Halliday, 1967).\n.[\nHalliday 1967\n.]\nThis system has even been used to help foreigners speak English\n(Halliday, 1970) \\(em which emphasizes the fact that it was designed for use\nby laymen, not just linguists!\n.[\nHalliday 1970 Course in spoken English: Intonation\n.]\n.pp\nHere are examples of the way utterances can be conveyed to the ISP\nspeech synthesis system which was described in the previous chapter.\nThe notation is based upon Halliday's.\n.LB\n.NI\n3\n.ul\n^  aw\\ t\\ uh/m\\ aa\\ t\\ i\\ k  /s\\ i\\ n\\ th\\ uh\\ s\\ i\\ s  uh\\ v  /*s\\ p\\ ee\\ t\\ sh,\n.NI\n1\n.ul\n^  f\\ r\\ uh\\ m  uh  f\\ uh/*n\\ e\\ t\\ i\\ k  /r\\ e\\ p\\ r\\ uh\\ z\\ e\\ n/t\\ e\\ i\\ sh\\ uh\\ n.\n.LE\n(Automatic synthesis of speech, from a phonetic representation.)  Three\nlevels of stress are distinguished:  tonic or \"sentence\" stress,\nmarked by \"*\" before the syllable; foot stress (marked by \"/\");\nand unstressed syllables.\nThe notion of a \"foot\" controls the rhythm of the speech in a way that\nwill be described shortly.\nA fourth level of stress is indicated on a segmental basis when a syllable\ncontains a reduced vowel.\n.pp\nUtterances are divided by punctuation into\n.ul\ntone groups,\nwhich are the basic prosodic unit \\(em there are two in the example.\nThe shape of the pitch contour is governed by a numeral at the start of\neach tone group.\nCrude control over pauses is achieved by punctuation marks:  full stop, for\nexample, signals a pause while comma does not.\n(Longer pauses can be obtained by several full stops as in \"...\".)  The\n\"^\" character stands for a so-called \"silent stress\" or breath point.\nWord boundaries are marked by two spaces between phonemes.\nAs mentioned in the previous chapter, syllable boundaries and explicit\npitch and duration specifiers can also be included in the input.\nIf they are not, the ISP system will attempt to compute them.\n.rh \"Rhythm.\"\nOur understanding of speech rhythm knows many laws but little order.\nIn the mid 1970's there was a spate of publications reporting new data\non segmental duration in various contexts, and there is a growing\nawareness that segmental duration is influenced by a great many factors,\nranging from the structure of a discourse, through semantic and syntactic\nattributes of the utterances, their phonemic and phonetic make-up,\nright down to physiological constraints\n(these multifarious influences are ably documented and reviewed by\nKlatt, 1976).\n.[\nKlatt 1976 Linguistic uses of segment duration in English\n.]\nWhat seems to be lacking in this work is a conceptual framework on to\nwhich new information about segmental duration can be nailed.\n.pp\nOne starting-point for imitating the rhythm of English speech is the\nhypothesis of regularly recurring stresses.\nThese stresses are primarily\n.ul\nrhythmic\nones, and should be distinguished from the tonic stress mentioned above which\nis primarily an\n.ul\nintonational\none.\nRhythmic stresses are marked in the transcription by a \"/\".\nThe stretch between one and the next is called a \"foot\",\nand the hypothesis above is often referred to as that of isochronous feet\n(\"isochronous\" means \"of equal time\").\nThere is considerable controversy about this hypothesis.\nIt is most popular among British linguists and, it must be admitted,\namongst those who work by introspection and intuition and do not actually\n.ul\nmeasure\nthings.\nAlthough the question of isochrony of feet has long been debated, there\nseems to be general agreement\n\\(em even amongst American linguists \\(em\nthat there is at least a tendency towards\nequal spacing of foot boundaries.\nHowever, little is known about the strength of this tendency and the extent\nof deviations from it (see Hill\n.ul\net al,\n1979, for an attempt\nto quantify it) \\(em and there is even evidence to suggest that it may in part\nbe a\n.ul\nperceptual\nphenomenon (Lehiste, 1973).\n.[\nHill Jassem Witten 1979\n.]\n.[\nLehiste 1973\n.]\nOn this basic point, as on many others, the designer of a prosodic synthesis\nstrategy must needs make assumptions which cannot be properly justified.\n.pp\nFrom a pragmatic point of view there are two advantages to basing\na synthesis strategy on this hypothesis.\nFirstly, it provides a way to represent the many influences of higher-level\nprocesses (like syntax and semantics) on rhythm using a simple notation which\nfits naturally into the phonetic utterance representation,\nand which people find quite easy to understand and generate.\nSecondly, it tends to produce a heavily accentuated, but not unnatural,\nspeech rhythm which can easily be moderated into a more acceptable rhythm\nby departing from isochrony in a controlled manner.\n.pp\nThe ISP procedure does not make feet exactly isochronous.\nIt starts with a standard foot time and attempts to fit the syllables of the\nfoot into this time.\nIf doing so would result in certain syllables having less than a preset minimum\nduration, the isochrony constraint is relaxed and the foot is expanded.\nThere is no preset\n.ul\nmaximum\nsyllable length.\nHowever, when the durations of individual phoneme postures are adjusted\nto realize the calculated syllable durations,\nlimits are imposed on the amount by which individual phonemes can be expanded\nor contracted.\nThus a hierarchy of limits exists.\n.pp\nThe rate of talking is determined by the standard foot time.\nIf this time is short, many feet will be forced to have durations longer than\nthe standard, and the speech will be \"less isochronous\".\nThis seems to accord with common human experience.\nIf the standard time is longer, however, the minimum syllable limit\nwill always be exceeded and the speech will be completely isochronous.\nIf it is too long, the above-mentioned limits to phoneme expansion will\ncome into play and again partially destroy the isochrony.\n.pp\nIt has often been observed that the final foot of an utterance tends to be\nlonger than others; as does the tonic foot \\(em that which bears the\nmajor stress.\nThis is easy to accomodate, simply by making the target duration\nlonger for these feet.\n.rh \"From feet to syllables.\"\nA foot is a succession of syllables, one or more.\nAnd it is obvious that since there are more syllables in some feet than\nin others, some syllables must occupy less time than others in order to preserve\nthe tendency towards isochrony of feet.\n.pp\nHowever, the duration of a foot is not divided evenly between its constituent\nsyllables.  The syllables have a definite rhythm of their own, which seems\nto be governed by\n.LB\n.NP\nthe nature of the salient (that is, the first) syllable of the foot\n.NP\nthe presence of word boundaries within the foot.\n.LE\nA salient syllable tends to be long either if it contains one of\na class of so-called \"long\" vowels, or if there is a cluster of two or more\nconsonants following the vowel.\nThe pattern of syllables and word boundaries governs the rhythm of the foot,\nand Table 8.2 shows the possibilities for one-, two-, and three-syllable feet.\nThis theory of speech rhythm is due to Abercrombie (1964).\n.[\nAbercrombie 1964 Syllable quantity and enclitics in English\n.]\n.RF\n.nr x2 \\w'three-syllable feet  'u\n.nr x3 \\w'sal-short  'u\n.nr x4 \\w'weak [#]  'u\n.nr x5 \\w'weak      'u\n.nr x6 \\w'/\\fIit s incon\\fR/ceivable    'u\n.nr x1 (\\w'syllable rhythm'/2)\n.nr x7 \\n(x2+\\n(x3+\\n(x4+\\n(x5+\\n(x6+\\n(x1+\\n(x1\n.nr x7 (\\n(.l-\\n(x7)/2\n.in \\n(x7u\n.ta \\n(x2u +\\n(x3u +\\n(x4u +\\n(x5u +\\n(x6u\n.ul\n\tsyllable pattern\t\texample\t\\0\\0\\h'-\\n(x1u'syllable rhythm\n.sp\none-syllable feet\tsalient\t\t\t/\\fIgood\\fR /show\t1\n\t^\tweak\t\t/\\fI^ good\\fR/bye\t2:1\n.sp\ntwo-syllable feet\tsal-long\tweak\t\t/\\fIcentre\\fR /forward\t1:1\n\tsal-short\tweak\t\t/\\fIatom\\fR /bomb\t1:2\n\tsalient  #\tweak\t\t/\\fItea for\\fR /two\t2:1\n.sp\nthree-syllable feet\tsalient  #\tweak [#]\tweak\t/\\fIone for the\\fR /road\t2:1:1\n\t\t\t\t/\\fIit's incon\\fR/ceivable\n\tsal-long\tweak #\tweak\t/\\fIafter the\\fR /war\t2:3:1\n\tsal-short\tweak #\tweak\t/\\fImiddle to\\fR /top\t1:3:2\n\tsal-long\tweak\tweak\t/\\fInobody\\fR /knows\t3:1:2\n\tsal-short\tweak\tweak\t/\\fIanything\\fR /more\t1:1:1\n.sp\n\t# denotes a word boundary;\n\t[#] is an optional word boundary\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 8.2  Syllable patterns and rhythms\"\n.pp\nA foot may have the rhythmical characteristics of a two-syllable foot\nwhile having only one syllable, if the first place in it is filled by a\nsilent stress (marked by \"^\").\nThis is shown in the second one-syllable example of\nTable 8.2.\nA similar effect may occur with two- and three-syllable feet,\nalthough examples are not given in the table.\nFeet of four and five syllables \\(em with or without a silent stress \\(em are\nconsiderably rarer.\n.pp\nSyllabification \\(em splitting an utterance into syllables \\(em is a job\nwhich had to be done for the pitch-transfer procedure described earlier,\nand the nature of syllable rhythms calls for it here too.\nEven though the utterance is now specified phonetically instead of\nacoustically, the same basic principle applies.\nSyllables normally coincide with peaks of sonority,\nwhere \"sonority\" measures the inherent loudness of a sound relative to\nother sounds of the same duration and pitch.\nHowever, difficult cases exist where it seems to be unclear how many syllables\nthere are in a word.  (Ladefoged, 1975, discusses this problem with examples\nsuch as \"real\", \"realistic\", and \"reality\".)  Furthermore,\n.[\nLadefoged 1975\n.]\ncare must be taken to avoid counting two syllables in a word like \"sky\"\nbecause of its two peaks of sonority \\(em for the stop\n.ul\nk\nhas lower\nsonority than the fricative\n.ul\ns.\n.pp\nThree levels of notional sonority are enough for syllabification.\nDividing phoneme segments into\n.ul\nsonorants\n(glides and nasals),\n.ul\nobstruents\n(stops and fricatives), and vowels; a general syllable has the form\n.LB\n.EQ\n<obstruent> sup * ~ <sonorant> sup * ~ <vowel> sup * ~ <sonorant> sup * ~\n<obstruent> sup * ~ ,\n.EN\n.LE\nwhere \"*\" means repetition, that is, occurrence zero or more times.\nThis sidesteps the \"sky\" problem by giving fricatives the same\nsonority as stops.\nIt is easy to use the above structure to count the number\nof syllables in a given utterance by counting the sonority\npeaks.\n.pp\nHowever, what is required is an indication of syllable\n.ul\nboundaries\nas well as a syllable count.\nFor slow conversational speech, these can be approximated as follows.\nWord divisions obviously form syllable boundaries, as should\nfoot markers \\(em but it may be wise not to assume that the latter do if the\nutterance has been prepared by someone with little knowledge of linguistics.\nSyllable boundaries should be made to coincide with sonority minima.\nAs an\n.ul\nad hoc\npragmatic\nrule, if only one segment has the minimum sonority the boundary is placed\nbefore it.\nIf there are two segments, each with the minimum sonority, it is placed between\nthem, while for three or more it is placed after the first two.\n.pp\nThese rules produce obviously acceptable divisions in many cases\n(to'day, ash'tray, tax'free), with perhaps unexpected positioning of the\nboundary in others (ins'pire, de'par'tment).\nActually, people do differ in placement of syllable boundaries\n(Abercrombie, 1967).\n.[\nAbercrombie 1967\n.]\n.rh \"From syllables to segments.\"\nThe theory of isochronous feet (with the caveats noted earlier)\nand that of syllable rhythms provide a way of producing durations for\nindividual syllables.  But where are these durations supposed to be measured?\nThere is a beat point, or tapping point, near the beginning of each syllable.\nThis is the place where a listener will tap if asked to give one tap to each\nsyllable; it has been investigated experimentally by Allen (1972).\n.[\nAllen 1972 Location of rhythmic stress beats in English One\n.]\nIt is not necessarily at the very beginning of the syllable.\nFor example, in \"straight\", the tapping point is certainly after the\n.ul\ns\nand the stopped part of the\n.ul\nt.\n.pp\nAnother factor which relates to the division of the syllable duration\namongst phonetic segments is the often-observed fact that the length of the\nvocalic nucleus is a strong clue to the degree of voicing of the terminating\ncluster (Lehiste, 1970).\n.[\nLehiste 1970 Suprasegmentals\n.]\nIf you say in pairs words like \"cap\", \"cab\"; \"cat\", \"cad\"; \"tack\", \"tag\"\nyou will find that the vowel in the first word of each pair is significantly\nshorter than that in the second.\nIn fact, the major difference between such pairs is the vowel length,\nnot the final consonant.\n.pp\nSuch effects can be taken into account by considering a syllable to comprise\nan initial consonant cluster, followed by a vocalic nucleus and a final\nconsonant cluster.\nAny of these elements can be missing \\(em the most unusual case where the\nnucleus is absent occurs, for example, in so-called syllabic\n.ul\nn\\c\n\\&'s\n(as in renderings of \"button\", \"pudding\" which might be written\n\"butt'n\", \"pudd'n\").\nHowever, it is convenient to modify the definition of the nucleus\nso as to rule out the possibility of it being empty.\nUsing the characterization of the syllable given above, the clusters can\nbe defined as\n.LB\n.NI\ninitial cluster\t=  <obstruent>\\u*\\d <sonorant>\\u*\\d\n.NI\nnucleus\t=  <vowel>\\u*\\d <sonorant>\\u*\\d\n.NI\nfinal cluster\t=  <obstruent>\\u*\\d.\n.LE\nSonorants are included in the nucleus so that it is always present,\neven in the case of a syllabic consonant.\n.pp\nThen, rules can be used to divide the syllable duration between the\ninitial cluster, nucleus, and final cluster.\nThese must distinguish between situations where the terminating cluster\nis voiced or unvoiced so that the characteristic differences in vowel lengths\ncan be accomodated.\n.pp\nFinally, the cluster durations must be apportioned amongst their constituent\nphonetic segments.  There is little published data on which to base this.\nTwo simple schemes which have been used in ISP are described in\nWitten (1977) and Witten & Smith (1977).\n.[\nWitten 1977 A flexible scheme for assigning timing and pitch to synthetic speech\n.]\n.[\nWitten Smith 1977 Synthesizing British English rhythm\n.]\n.rh \"Pitch.\"\nThere are two basically different ways of looking at the pitch of an\nutterance.\nOne is to imagine pitch\n.ul\nlevels\nattached to individual syllables.\nThis has been popular amongst American linguists, and some people\nhave even gone so far as to associate pitch levels with levels of\nstress.\nThe second approach is to consider pitch\n.ul\ncontours,\nas we did earlier when examining how to transfer pitch from one utterance\nto another.\nThis seems to be easier for the person who transcribes the utterances\nto produce, for the information required is much less detailed than levels\nattached to each syllable.  Some indication needs to be given of how\nthe contour is to be bound to the utterance, and in the notation introduced above\nthe most prominent, or \"tonic\", syllable is indicated in the transcription.\n.pp\nHalliday's (1970) classification identifies five different primary intonation\ncontours, each hinging on the tonic syllable.\n.[\nHalliday 1970 Course in spoken English: Intonation\n.]\nThese are sketched in Figure 8.5, in the style of Halliday.\n.FC \"Figure 8.5\"\nSeveral secondary contours, which are variations on the primary ones,\nare defined as well.\nHowever, this classification scheme is intended for consumption by people,\nwho bring to the problem a wealth of prior knowledge of speech and years\nof experience with it!  It captures only the gross features\nof the infinite variety of pitch contours found in living speech.\nIn a sense, the classification is\n.ul\nphonological\nrather than\n.ul\nphonetic,\nfor it attempts to distinguish the features which make a logical difference\nto the listener instead of the acoustic details of the pitch contours.\n.pp\nIt is necessary to take these contours and subject them to a sort of\nphonological-to-phonetic embellishment before applying them in synthetic\nspeech.\nFor example, the stretches with constant pitch which precede the tonic\nsyllable in tone groups 1, 2, and 3 sound\nmost unnatural when synthesized \\(em for pitch is hardly ever\nexactly constant in living speech.\nSome pretonic pitch variation is necessary,\nand this can be made to emphasize the salient syllable\nof each foot.  A \"lilting\" effect which reaches a peak at each foot\nboundary, and drops rather faster at the beginning of the foot than it\nrises at the end, sounds more natural.  The magnitude of this inflection\ncan be altered slightly to add interest, but a considerable increase in it\nproduces a semantic change by making the utterance sound more emphatic.\nIt is a major problem to pin down exactly the turning points of pitch in\nthe falling-rising and rising-falling contours (4 and 5 in Figure 8.5).\nAnd even deciding on precise values for the pitch frequencies involved is not\nalways easy.\n.pp\nThe aim of the pitch assignment method of ISP is to allow the person\n(or program) which originates a spoken message to exercise a great deal\nof control over its intonation, without having to concern himself with\nfoot or syllable structure.  The message to be spoken must be broken down\ninto tone groups,\nwhich correspond roughly to Halliday's tone groups.\nEach one comprises a\n.ul\ntonic\nof one or more feet, which is optionally preceded by a\n.ul\npretonic,\nalso with a number of feet.  It is advantageous to allow a tone group\nboundary to occur in the middle of a foot (whereas Halliday's scheme\ninsists that it occurs at a foot boundary).\nThe first foot of the tonic, the\n.ul\ntonic foot,\nis marked by an asterisk at the beginning.\nIt is on the first syllable of this foot \\(em the\n\"tonic\" or \"nuclear\"\nsyllable \\(em that the major stress of the tone group occurs.\nIf there is no asterisk in a tone group,\nISP takes the final foot as the tonic\n(since this is the most common case).\n.pp\nThe pitch contour on a tone group is specified by an array of ten numbers.\nOf course, the system cannot generate all conceivable contours for a tone\ngroup, but the definitions of the ten specifiable quantities have been\nchosen to give a useful range of contours.\nIf necessary, more precise control over the pitch of an utterance can\nbe achieved by making the tone groups smaller.\n.pp\nThe overall pitch movement is controlled by specifying the pitch at three\nplaces:  the beginning of the tone group, the beginning of the tonic syllable,\nand the end of the tone group.\nProvision is made for an abrupt pitch break at the start of the tonic\nsyllable in order to simulate tone groups 2 and 3, and, to a lesser\nextent, tone groups 4 and 5.\nThe pitch is interpolated linearly over the first part of the\ntone group (up to the tonic syllable) and over the last part (from there to\nthe end), except that it is possible to specify a non-linearity on the tonic\nsyllable, for emphasis, as shown in Figure 8.6.\n.FC \"Figure 8.6\"\n.pp\nOn this basic shape are superimposed two finer pitch patterns.\nOne of these is an initialization-continuation option which allows\nthe pitch to rise (or fall) independently on the initial and final feet\nto specified values, without affecting the contour on the rest\nof the tone group (Figure 8.7).\n.FC \"Figure 8.7\"\nThe other is a foot pattern which is superimposed on each pretonic foot,\nto give the stressed syllables of the pretonic added prominence and avoid\nthe monotony of constant pitch.\nThis is specified by a\n.ul\nnon-linearity\nparameter which distorts the contour on the foot at a pre-determined\npoint along it.\nFigure 8.8 shows the effect.\n.FC \"Figure 8.8\"\n.pp\nThe ten quantities that define a pitch contour are summarized in\nTable 8.3, and shown diagrammatically in Figure 8.9.\n.FC \"Figure 8.9\"\n.RF\n.nr x0 \\w'H:    'u\n.nr x1 \\n(x0+\\w'fraction along foot of the non-linearity position, for the tonic foot'u\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta \\n(x0u +4n\nA:\tcontinuation from previous tone group\n\t\tzero gives no continuation\n\t\tnon-zero gives pitch at start of tone group\nB:\tnotional pitch at start\nC:\tpitch range on whole of pretonic\nD:\tdeparture from linearity on each foot of pretonic\nE:\tpitch change at start of tonic\nF:\tpitch range on tonic\nG:\tdeparture from linearity on tonic\nH:\tcontinuation to next tone group\n\t\tzero gives no continuation\n\t\tnon-zero gives pitch at end of tone group\nI:\tfraction along foot of the non-linearity position, for pretonic feet\nJ:\tfraction along foot of the non-linearity position, for the tonic foot\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 8.3  The quantities that define a pitch contour\"\n.pp\nThe intention of this parametric method of specifying contours\nis that the parameters should be easily derivable from semantic variables\nlike emphasis, novelty of idea, surprise, uncertainty, incompleteness.\nHere we really are getting into controversial, unresearched areas.\nRoughly speaking, parameters D and G control emphasis, G by itself\ncontrols novelty and surprise, and H and the relative sizes of E and F\ncontrol uncertainty and incompleteness.\nCertain parameters (notably I and J) are defined because although they\ndo not appear to correspond to semantic distinctions, we do not yet know\nhow to generate them automatically.\n.RF\n.nr x0 0.6i+0.5i+0.5i+0.5i+0.5i+0.5i+0.5i+0.5i+0.5i+0.5i+0.5i+\\w'0000'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 0.6i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\nHalliday's\ntone group\t\\0\\0A\t\\0\\0B\t\\0\\0C\t\\0\\0D\t\\0\\0E\t\\0\\0F\t\\0\\0G\t\\0\\0H\t\\0\\0I\t\\0\\0J\n\\l'\\n(x0u\\(ul'\n.sp\n\t1\t\\0\\0\\00\t\\0175\t\\0\\0\\00\t\\0\\-40\t\\0\\0\\00\t\\-100\t\\0\\-40\t\\0\\0\\00\t0.33\t\\00.5\n\t2\t\\0\\0\\00\t\\0280\t\\0\\0\\00\t\\0\\-40\t\\-190\t\\0100\t\\0\\0\\00\t\\0\\0\\00\t0.33\t\\00.5\n\t3\t\\0\\0\\00\t\\0175\t\\0\\0\\00\t\\0\\-40\t\\0\\-70\t\\0\\045\t\\0\\-10\t\\0\\0\\00\t0.33\t\\00.5\n\t4\t\\0\\0\\00\t\\0280\t\\-100\t\\0\\-40\t\\0\\020\t\\0\\045\t\\0\\-45\t\\0\\0\\00\t0.33\t\\00.5\n\t5\t\\0\\0\\00\t\\0175\t\\0\\060\t\\0\\-40\t\\0\\-20\t\\0\\-45\t\\0\\045\t\\0\\0\\00\t0.33\t\\00.5\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 8.4  Pitch contour table for Halliday's primary tone groups\"\n.pp\nOne basic requirement of the pitch assignment scheme was the ability to\ngenerate contours which approximate Halliday's five primary tone groups.\nValues of the ten specifiable quantities are given in Table 8.4, for each\ntone group.\nAll pitches are given in\\ Hz.\nA distinctly dipping pitch movement has been given to each pretonic foot\n(parameter D),\nto lend prominence to the salient syllables.\n.sh \"8.4  Evaluating prosodic synthesis\"\n.pp\nIt is extraordinarily difficult to evaluate schemes for prosodic synthesis,\nand this is surely a large part of the reason why prosodics are among the\nleast advanced aspects of artificial speech.\nSegmental synthesis can be tested by playing people minimal pairs of\nwords which differ in just one feature that is being investigated.\nFor example, one might experiment with \"pit\", \"bit\"; \"tot\", \"dot\";\n\"cot\", \"got\" to test the rules which discriminate unvoiced from voiced stops.\nThere are standard word-lists for intelligibility tests which can be\nused to compare systems, too.\nNo equivalent of such micro-level evaluation exists for prosodics,\nfor they by definition have a holistic effect on utterances.\nThey are most noticeable, and most important, in longish stretches of speech.\nEven monotonous, arhythmic speech will be intelligible in\nsufficiently short samples provided the segmentals are good enough;\nbut it is quite impossible to concentrate on such speech in quantity.\nSome attempts at evaluation appear in Ainsworth (1974) and McHugh (1976),\nbut these are primarily directed at assessing the success of pronunciation\nrules, which are discussed in the next chapter.\n.[\nAinsworth 1974 Performance of a speech synthesis system\n.]\n.[\nMcHugh 1976 Listener preference and comprehension tests\n.]\n.pp\nOne evaluation technique is to compare synthetic with natural versions\nof utterances, as was done in the pitch transfer experiment.\nThe method described earlier used a sensitive paired-comparison test,\nwhere subjects heard both versions in quick succession and were asked\nto judge which was \"most natural and intelligible\".\nThis is quite a stringent test, and one that may not be so useful\nfor inferior, completely synthetic, contours.\nIt is essential to degrade the \"natural\" utterance so that it is\ncomparable segmentally to the synthetic one:  this was done in the\nexperiment described by extracting its pitch and resynthesizing it\nfrom linear predictive coefficients.\n.pp\nSeveral other experiments could be undertaken to evaluate artificial\nprosody.\nFor example, one could compare\n.LB\n.NP\nnatural and artificial rhythms, using artificial segmental synthesis\nin both cases;\n.NP\nnatural and artificial pitch contours, using artificial segmental synthesis\nin both cases;\n.NP\nnatural and artificial pitch contours, using segmentals extracted from\nnatural utterances.\n.LE\nThere are many other topics which have not yet been fully investigated.\nIt would be interesting, for example, to define rules for generating speech\nat different tempos.\nElisions, where phonemes or even whole syllables are suppressed,\noccur in fast speech; these have been analyzed by linguists\nbut not yet incorporated into synthetic models.\nIt should be possible to simulate emotion by altering parameters such as\npitch range and mean pitch level; but this seems exceptionally difficult\nto evaluate.  One situation where it would perhaps be possible to\nmeasure emotion is in the reading of sports results \\(em in fact a study\nhas already been made of intonation in soccer results (Bonnet, 1980)!\n.[\nBonnet 1980\n.]\nEven the synthesis of voices with different pitch ranges requires\ninvestigation, for, as noted earlier, it is difficult to place\nprecise frequency specifications on phonological contours such as\nthose sketched in Figure 8.5.\nClearly the topic of prosodic synthesis is a rich and potentially\nrewarding area of research.\n.sh \"8.5  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"8.6  Further reading\"\n.pp\nThere are quite a lot of books in the field of linguistics which\ndescribe prosodic features.\nHere is a small but representative sample from both sides of the Atlantic.\n.LB \"nn\"\n.\\\"Abercrombie-1965-1\n.]-\n.ds [A Abercrombie, D.\n.ds [D 1965\n.ds [T Studies in phonetics and linguistics\n.ds [I Oxford Univ Press\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nAbercrombie is one of the leading English authorities on phonetics,\nand this is a collection of essays which he has written over the years.\nSome of them treat prosodics explicitly, and others show the influence\nof verse structure on Abercrombie's thinking.\n.in-2n\n.\\\"Bolinger-1972-2\n.]-\n.ds [A Bolinger, D.(Editor)\n.ds [D 1972\n.ds [T Intonation\n.ds [I Penguin\n.ds [C Middlesex, England\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nA collection of papers that treat a wide variety of different aspects\nof intonation in living speech.\n.in-2n\n.\\\"Crystal-1969-3\n.]-\n.ds [A Crystal, D.\n.ds [D 1969\n.ds [T Prosodic systems and intonation in English\n.ds [I Cambridge Univ Press\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis book attempts to develop a theoretical basis for the study of British\nEnglish intonation.\n.in-2n\n.\\\"Gimson-1966-3\n.]-\n.ds [A Gimson, A.C.\n.ds [D 1966\n.ds [T The linguistic relevance of stress in English\n.ds [B Phonetics and linguistics\n.ds [E W.E.Jones and J.Laver\n.ds [P 94-102\n.nr [P 1\n.ds [I Longmans\n.ds [C London\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 3 article-in-book\n.in+2n\nHere is a careful discussion of what is meant by \"stress\", with much more\ndetail than has been possible in this chapter.\n.in-2n\n.\\\"Lehiste-1970-4\n.]-\n.ds [A Lehiste, I.\n.ds [D 1970\n.ds [T Suprasegmentals\n.ds [I MIT Press\n.ds [C Cambridge, Massachusetts\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis is a comprehensive study of suprasegmental phenomena in natural speech.\nIt is divided into three major sections:  quantity (timing), tonal features\n(pitch), and stress.\n.in-2n\n.\\\"Pike-1945-5\n.]-\n.ds [A Pike, K.L.\n.ds [D 1945\n.ds [T The intonation of American English\n.ds [I Univ of Michigan Press\n.ds [C Ann Arbor, Michigan\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nA classic, although somewhat dated, study.\nNotice that it deals specifically with American English.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"9  GENERATING SPEECH FROM TEXT\"\n.ds RT \"Generating speech from text\n.ds CX \"Principles of computer speech\n.pp\nIn the preceding two chapters I have described how artificial speech\ncan be produced from a written phonetic representation with additional\nmarkers indicating intonation contours, points of major stress, rhythm,\nand pauses.\nThis representation is substantially the same as that used by linguists\nwhen recording natural utterances.\nWhat we will discuss now are techniques for generating this information,\nor at least some of it, from text.\n.pp\nFigure 9.1 shows various levels of the speech synthesis process.\n.FC \"Figure 9.1\"\nStarting from the top with plain text, the first box splits it into\nintonation units (tone groups), decides where the major emphases\n(tonic stresses) should be placed,\nand further subdivides the tone group into rhythmic units (feet).\nFor intonation analysis it is necessary to decide on an \"interpretation\"\nof the text, which in turn, as was emphasized at the beginning of the\nprevious chapter, depends both on the semantics of what is being said and\non the attitude of the speaker to his material.\nThe resulting representation will be at the level of Halliday's notation\nfor utterances, with the words still in English rather than phonetics.\nTable 9.1 illustrates the utterance representation at the various levels\nof the Figure.\n.RF\n.nr x0 \\w'pitch and duration    '+\\w'at 8 kHz sampling rate a 4-second utterance'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\w'pitch and duration    'u +\\w'pause  'u +\\w'00 msec   'u\nrepresentation\texample\n\\l'\\n(x0u\\(ul'\n.sp\nplain text\tAutomatic synthesis of speech,\n\tfrom a phonetic representation.\n.sp\ntext adorned with\t3\\0^ auto/matic /synthesis of /*speech,\nprosodic markers\t1\\0^ from a pho/*netic /represen/tation.\n.sp\nphonetic text with\t3\\0\\fI^  aw t uh/m aa t i k  /s i n th uh s i s\\fR\nprosodic markers\t\\0\\0\\fIuh v  /*s p ee t sh\\fR ,\n\t1\\0\\fI^  f r uh m  uh  f uh/*n e t i k\\fR\n\t\\0\\0\\fI/r e p r uh z e n/t e i sh uh n\\fR .\n.sp\nphonemes with\tpause\t80 msec\npitch and duration\t\\fIaw\\fR\t70 msec\t105 Hz\n\t\\fIt\\fR\t40 msec\t136 Hz\n\t\\fIuh\\fR\t50 msec\t148 Hz\n\t\\fIm\\fR\t70 msec\t175 Hz\n\t\\fIaa\\fR\t90 msec\t140 Hz\n\t\t...\n\t\t...\n\t\t...\n.sp\nparameters for\t10 parameters, each updated at a frame\nformant or linear\trate of 10 msec\npredictive\t(4 second utterance gives 400 frames,\nsynthesizer\tor 4,000 data values)\n.sp\nacoustic wave\tat 8 kHz sampling rate a 4-second utterance\n\thas 32,000 samples\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.1  Utterance representations at various levels in speech synthesis\"\n.pp\nThe next job is to translate the plain text into a broad phonetic\ntranscription.\nThis requires knowledge of letter-to-sound pronunciation\nrules for the language under consideration.\nBut much more is needed.  The structure of each word must be examined for\nprefixes and suffixes, because they \\(em especially the latter \\(em have a\nstrong influence on pronunciation.\nThis is called \"morphological\" analysis.\nActually it is also required for rhythmical purposes, because prefixes\nare frequently unstressed (note that the word \"prefix\" is itself an\nexception to this!).\nThus the appealing segmentation of the overall problem shown in Figure 9.1\nis not very accurate, for the individual processes cannot be rigidly\nseparated as it implies.  In fact, we saw earlier how this intermixing of\nlevels occurs with prosodic and segmental features.\nNevertheless, it is helpful to structure discussion of the problem by\nseparating levels as a first approximation.\nFurther influences on pronunciation come from the semantics and syntax\nof the utterance \\(em and both also play a part in intonation and rhythm analysis.\nThe result of this second process is a phonetic representation, still\nadorned with prosodic markers.\n.pp\nNow we move down from higher-level intonation and rhythm considerations\nto the details of the pitch contour and segment durations.\nThis process was the subject of the previous chapter.\nThe problems are twofold:  to map an appropriate acoustic pitch contour\non to the utterance, using tonic stress point and foot boundaries as\nanchor points; and to assign durations to segments using the\nfoot\\(emsyllable\\(emcluster\\(emsegment hierarchy.\nIf it is accepted that the overall rhythm can be captured adequately by foot\nmarkers, this process does not interact with earlier ones.\nHowever, many researchers do not, believing instead that rhythm is\nsyntactically determined at a very detailed level.\nThis will, of course, introduce strong interaction between the duration\nassignment process and the levels above.\n(Klatt, 1975, puts it into his title \\(em\n\"Vowel lengthening is syntactically determined in a connected discourse\".\n.[\nKlatt 1975 Vowel lengthening is syntactically determined\n.]\nContrast this with the paper cited earlier (Bolinger, 1972) entitled\n\"Accent is predictable \\(em if you're a mind reader\".\n.[\nBolinger 1972 Accent is predictable \\(em if you're a mind reader\n.]\nNo-one would disagree that \"accent\" is an influential factor in vowel length!)\n.pp\nNotice incidentally that the representation of the result of the pitch\nand duration assignment process in Table 9.1 is inadequate, for each segment\nis shown as having just one pitch.\nIn practice the pitch varies considerably throughout every segment,\nand can easily rise and fall on a single one.  For example,\n.LB\n\"he's\n.ul\nvery\ngood\"\n.LE\nmay have a rise-fall on the vowel of \"very\".\nThe linked event-list data-structure of ISP is much more suitable\nthan a textual string for utterance representation at this level.\n.pp\nThe fourth and fifth processes of Figure 9.1 have little interaction with\nthe first two, which are the subject of this chapter.  Segmental\nconcatenation, which was treated in Chapter 7, is affected by prosodic\nfeatures like stress; but a notation which indicates stressed syllables\n(like Halliday's) is sufficient to capture this influence.\nContextual modification of segments, by which I mean\nthe coarticulation effects which govern allophones of phonemes,\nis included explicitly in the fourth process to emphasize that the upper levels\nneed only provide a broad phonemic transcription rather than a detailed\nphonetic one.\nSignal synthesis can be performed by either a formant synthesizer or a\nlinear predictive one (discussed in Chapters 5 and 6).\nThis will affect the details of the segmental concatenation process but should have no\nimpact at all on the upper levels.\n.pp\nFigure 9.1 performs a useful function by summarizing where we have\nbeen in earlier chapters \\(em the lower three boxes \\(em and introducing the\nremaining problems that must be faced by a full text-to-speech system.\nIt also serves to illustrate an important point:  that a speech output system\ncan demand that its utterances be entered in any of a wide range of\nrepresentations.\nThus one can enter at a low level with a digitized waveform or linear\npredictive parameters; or higher up with a phonetic representation\nthat includes detailed pitch and duration specification at the phoneme level;\nor with a phonetic text or plain text adorned with prosodic markers;\nor at the very top with plain text as it would appear in a book.\nA heavy price in naturalness and intelligibility is paid by moving up\n.ul\nany\nof these levels \\(em and this is just as true at the top of the Figure as\nat the bottom.\n.sh \"9.1  Deriving prosodic features\"\n.pp\nIf you really need to start with plain text,\nsome very difficult problems present themselves.\nThe text should be understood, first of all, and then decisions need to be\nmade about how it is to be interpreted.\nFor an excellent speaker \\(em like an actor \\(em these decisions will be artistic,\nat least in part.\nThey should certainly depend upon the opinion and attitude of the speaker,\nand his perception of the structure and progress of the dialogue.\nVery little is known about this upper level of speech synthesis from text.\nIn practice it is almost completely ignored \\(em and the speech is at most\nbarely intelligible, and certainly uncomfortable to listen to.\nHence anybody contemplating building or using a speech output system which\nstarts from something close to plain text should consider carefully whether some extra\nsemantic information can be coded into the initial utterances to help with\nprosodic interpretation.\nOnly rarely is this impossible \\(em and reading machines for the blind are\na prime example of a situation where arbitrary, unannotated, texts\nmust be read.\n.rh \"Intonation analysis.\"\nOne distinction which a program can usefully try\nto make is between basically rising\nand basically falling pitch contours.  It is often said that pitch rises on\na question and falls on a statement, but if you listen to speech you will\nfind this to be a gross oversimplification.  It normally\nfalls on statements, certainly; but it falls as often as it rises on questions.\nIt is more accurate to say that pitch rises on \"yes-no\" questions\nand falls on other utterances, although this rule is still only a rough guide.\nA simple test which operates lexically on the input text is to determine\nwhether a sentence is a question by looking at the \npunctuation mark at its end, and then to examine the first word.\nIf it is a \"wh\"-word like \"what\", \"which\", \"when\", \"why\" (and also \"how\")\na falling contour is likely to fit.\nIf not, the question is probably a yes-no one, and the contour\nshould rise.\nSuch a crude rule will certainly not be very accurate\n(it fails, for example, when the \"wh\"-word is embedded in a phrase as in\n\"at what time are you going?\"), but at least it provides a starting-point.\n.pp\nAn air of finality is given to an utterance when it bears a definite\nfall in pitch, dropping to a rather low value at the end.\nThis should accompany the last intonation unit in an utterance\n(unless it is a yes-no question).\nHowever, a rise-fall contour such as Halliday's tone group 5 (Figure 8.5)\ncan easily be used in utterance-final position by one person\nin a conversation \\(em\nalthough it would be unlikely to terminate the dialogue altogether.\nA new topic is frequently introduced by a fall-rise contour \\(em such as\nHalliday's tone group 4 \\(em and this often begins a paragraph.\n.pp\nDetermining the type of pitch contour is only one part of\nintonation assignment.  There are really three separate problems:\n.LB\n.NP\ndividing the utterance into tone groups\n.NP\nchoosing the tonic syllable, or major stress point, of each one\n.NP\nassigning a pitch contour to each tone group.\n.LE\nLet us continue to use the Halliday notation for intonation, which was introduced\nin simplified form in the previous chapter.\nMoreover, assume that the foot boundaries can be placed correctly \\(em\nthis problem will be discussed in the next subsection.\nThen a scheme which considers only the lexical form of the utterance\nand does not attempt to \"understand\" it (whatever that means) is as follows:\n.LB\n.NP\nplace a tone group boundary at every punctuation mark\n.NP\nplace the tonic at the first syllable of the last foot in a tone group\n.NP\nuse contour 4 for the first tone group in a paragraph and contour 1\nelsewhere, except for a yes-no question which receives contour 2.\n.LE\n.RF\n.nr x0 \\w'From Scarborough to Whitby\\0\\0\\0\\0'+\\w'4  ^  from /Scarborough to /*Whitby is a'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\w'From Scarborough to Whitby\\0\\0\\0\\0\\0\\0'u\nplain text\ttext adorned with prosodic markers\n\\l'\\n(x0u\\(ul'\n.sp\nFrom Scarborough to Whitby is a\t4 ^ from /Scarborough to /*Whitby is a\nvery pleasant journey, with\t1\\- very /pleasant /*journey with\nvery beautiful countryside.\t1\\- very /beautiful /*countryside ...\nIn fact the Yorkshire coast is\t1+ ^ in /fact the /Yorkshire /coast is\n\\0\\0\\0\\0lovely,\t\\0\\0\\0\\0/*lovely\nall along, ex-\t1+ all a/*long ex\ncept the parts that are covered\t_4 cept the /parts that are /covered\n\\0\\0\\0\\0in caravans of course; and\t\\0\\0\\0\\0in /*caravans of /course and\nif you go in spring,\t4 if you /go in /*spring\nwhen the gorse is out,\t4 ^ when the /*gorse is /out\nor in summer,\t4 ^ or in /*summer\nwhen the heather's out,\t4 ^ when the /*heather's /out\nit's really one of the most\t13 ^ it's /really /one of the /most\n\\0\\0\\0\\0delightful areas in the\t\\0\\0\\0\\0de/*lightful /*areas in the\nwhole country.\t1 whole /*country\n.sp\nThe moorland is\t4 ^ the /*moorland is\nrather high up, and\t1 rather /high /*up and\nfairly flat \\(em a\t1 fairly /*flat a\nsort of plateau.\t1 sort of /*plateau ...\nAt least,\t1 ^ at /*least\nit isn't really flat,\t13 ^ it /*isn't /really /*flat\nwhen you get up on the top;\t\\-3 ^ when you /get up on the /*top\nit's rolling moorland\t1 ^ it's /rolling /*moorland\ncut across by steep valleys.  But\t1 cut across by /steep /*valleys but\nseen from the coast it's\t4 seen from the /*coast it's ...\n\"up there on the moors\", and you\t1 up there on the /*moors and you\nalways think of it as a\t_4 always /*think of it as a\nkind of tableland.\t1 kind of /*tableland\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.2  Example of intonation and rhythm analysis (from Halliday, 1970)\"\n.[\nHalliday 1970 Course in spoken English: Intonation\n.]\n.pp\nThese extremely crude and simplistic rules are really the most that one can do\nwithout subjecting the utterance to a complicated semantic analysis.\nIn statistical terms, they are actually remarkably effective.\nTable 9.2 shows part of a spontaneous monologue which was transcribed by\nHalliday and appears in his teaching text on intonation\n(Halliday, 1970, p 133).\n.[\nHalliday 1970 Course in Spoken English: Intonation\n.]\nAmong the prosodic markers are some that were not introduced in Chapter 8.\nFirstly, each tone group has secondary contours which are identified\nby \"1+\", \"1\\-\" (for tone group 1), and so on.\nSecondly, the mark \"...\" is used to indicate a pause which disrupts\nthe speech rhythm.\nNotice that its positioning belies the advice of the old elocutionists:\n.br\n.ev2\n.in 0\n.LB\n.fi\nA Comma stops the Voice while we may privately tell\n.NI\n.ul\none,\na Semi-colon\n.ul\ntwo;\na Colon\n.ul\nthree:\\c\n  and a Period\n.ul\nfour.\n.br\n.nr x0 \\w'\\fIone,\\fR a Semi-colon \\fItwo;\\fR a Colon \\fIthree:\\fR  and a Period \\fIfour.'-\\w'(Mason,\\fR 1748)'\n.NI\n\\h'\\n(x0u'(Mason, 1748)\n.nf\n.LE\n.br\n.ev\nThirdly, compound tone groups such as \"13\" appear which contain\n.ul\ntwo\ntonic syllables.\nThis differs from a simple concatenation of tone groups\n(with contours 1 and 3 in this case) because the second is in some sense subsidiary to\nthe first.\nTypically it forms an adjunct clause, while the first clause gives the\nmain information.  Halliday provides many examples, such as\n.LB\n.NI\n/Jane goes /shopping in /*town /every /*Friday\n.NI\n/^ I /met /*Arthur on the /*train.\n.LE\nBut he does not comment on the\n.ul\nacoustic\ndifference between a compound tone group and a concatenation of simple ones \\(em\nwhich is, after all, the information needed for synthesis.\nA final, minor, difference between Halliday's scheme and that outlined earlier\nis that he compels tone group boundaries to occur at the beginning\nof a foot.\n.RF\n.nr x0 3.3i+1.3i+\\w'complete'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 3.3i +1.3i\n\texcerpt in\tcomplete\n\tTable 9.2\tpassage\n\\l'\\n(x0u\\(ul'\n.sp\nnumber of tone groups\t25\t74\n.sp\nnumber of boundaries correctly\t19 (76%)\t47 (64%)\nplaced\n.sp\nnumber of boundaries incorrectly\t\\00\t\\01 (\\01%)\nplaced\n.sp\nnumber of tone groups having a\t22 (88%)\t60 (81%)\ntonic syllable at the beginning\nof the final foot\n.sp\nnumber of tone groups whose\t17 (68%)\t51 (69%)\ncontours are correctly assigned\n\\l'\\n(x0u\\(ul'\n.sp\nnumber of compound tone groups\t\\02 (\\08%)\t\\06 (\\08%)\n.sp\nnumber of secondary intonation\t\\07 (28%)\t13 (17%)\ncontours\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.3  Success of simple intonation assignment rules\"\n.pp\nApplying the simple rules given above to the text of Table 9.2 leads to\nthe results in the first column of Table 9.3.\nThree-quarters of the foot boundaries are flagged by\npunctuation marks, with no extraneous ones being included.\n88% of tone groups have a tonic syllable at the start of the final foot.\nHowever, the compound tone groups each have two tonic syllables,\nand of course only the second one is predicted by the final-foot rule.\nAssigning intonation contours on the extremely simple basis of using\ncontour 4 for the first tone group in a paragraph, and contour 1 thereafter,\nalso seems to work quite well.  Secondary contours such as \"1+\" and \"1\\-\"\nhave been mapped into the appropriate primary contour (1, in this case)\nfor the present purpose, and compound tone groups have been assigned the first\ncontour of the pair.\nThe result is that 68% of contours are given correctly.\n.pp\nIn order to give some idea of the reliability of these figures, the results\nfor the whole passage transcribed by Halliday \\(em of which Table 9.2 is an\nexcerpt \\(em are shown in the second column of Table 9.3.  Although it\nlooks as though the rules may have been slightly lucky with the excerpt,\nthe general trends are the same, with 65% to 80% of features being assigned\ncorrectly.\nIt could be argued, though, that the complete text is punctuated fairly liberally by\npresent-day standards, so that the tone-group boundary rule is unusually\nsuccessful.\n.pp\nThese results are really astonishingly good, considering the crudeness of\nthe rules.  However, they should be interpreted with caution.\nWhat is missed by the rules, although appearing to comprise only\n20% to 35% of the features, is certain to include the important,\ninformation-bearing, and variety-producing features that give the utterance\nits liveliness and interest.\nIt would be rash to assume that all tone-group boundaries,\nall tonic positions, and all intonation contours, are equally\nimportant for intelligibility and naturalness.\nIt is much more likely that the rules predict a\ndefault pattern, while most information is borne by deviations from\nthem.\nTo give an engineering analogy, it may be as though the carrier waveform\nof a modulated transmission is being simulated, instead of the\ninformation-bearing signal!\nCertainly the utterance will, if synthesized with intonation given by these\nrules, sound extremely dull and repetitive, mainly because of the\noverwhelming predominance of tone group 1 and the universal placement\nof tonic stress on the final foot.\n.pp\nThere are certainly many different ways to orate any particular text,\nand that given by Halliday and reproduced in Table 9.2 is only one possible\nversion.\nHowever, it is fair to say that the default intonation discussed above\ncould only occur naturally under very unusual circumstances \\(em such as\na petulant child, unwilling and sulky, having been forced to read aloud.\nThis is hardly how we want our computers to speak!\n.rh \"Rhythm analysis.\"\nConsider now how to decide where foot boundaries should be placed\nin English text.\nClearly semantic considerations sometimes play a part in this \\(em one could\nsay\n.LB\n/^ is /this /train /going /*to /London\n.LE\ninstead of the more usual\n.LB\n/^ is /this /train /going to /*London\n.LE\nin circumstances where the train might be going\n.ul\nto\nor\n.ul\nfrom\nLondon.\nSuch effects are ignored here, although it is worth noting in passing that the\nrogue words will often be marked by underscoring or italicizing\n(as in the previous sentence).\nIf the text is liberally underlined, semantic analysis may\nbe unnecessary for the purposes of rhythm.\n.pp\nA rough and ready rule for placing foot boundaries is to insert one before\neach word which is not in a small closed set of \"function words\".\nThe set includes, for example, \"a\", \"and\", \"but\", \"for\", \"is\", \"the\", \"to\".\nIf a verb or adjective begins with a prefix, the boundary should be moved\nbetween it and the root \\(em but not for a noun.\nThis will give the distinction between\n.ul\ncon\\c\nvert (noun) and con\\c\n.ul\nvert\n(verb),\n.ul\nex\\c\ntract and ex\\c\n.ul\ntract,\nand for many North American speakers,\nwill help to distinguish\n.ul\nin\\c\nquiry from in\\c\n.ul\nquire.\nHowever, detecting prefixes by a simple splitting algorithm is dangerous.\nFor example, \"predate\" is a verb with stress on what appears to be a prefix,\ncontrary to the rule; while the \"pre\" in \"predator\" is not a prefix \\(em at\nleast, it is not pronounced as the prefix \"pre\" normally is.\nMoreover, polysyllabic words like \"/diplomat\", \"dip/lomacy\", \"diplo/matic\";\nor \"/telegraph\", \"te/legraphy\", \"tele/graphic\" cannot be handled on such a simple\nbasis.\n.pp\nIn 1968, a remarkable work on English sound structure was published\n(Chomsky and Halle, 1968) which proposes a system of rules to transform\nEnglish text into a phonetic representation in terms of distinctive features,\nwith the aid of a lexicon.\n.[\nChomsky Halle 1968\n.]\nA great deal of attention is paid to stress, and rules are given which\nperform well in many tricky cases.\n.pp\nIt uses the American system of levels of stress, marking\nso-called primary stress with a superscript 1, secondary stress with a\nsuperscript 2, and so on.\nThe superscripts are written on the vowel of the stressed\nsyllable:  completely unstressed syllables receive no annotation.\nFor example, the sentence \"take John's blackboard eraser\" is written\n.LB\nta\\u2\\dke Jo\\u3\\dhn's bla\\u1\\dckboa\\u5\\drd era\\u4\\dser.\n.LE\nIn foot notation this utterance\nis\n.LB\n/take /John's /*blackboard e/raser.\n.LE\nIt undoubtedly contains less information than the stress-level version.\nFor example, the second syllable of \"blackboard\" and the first one of \"erase\"\nare both unstressed, although the rhythm rules given in Chapter 8\nwill cause them\nto be treated differently because they occupy different places in the\nsyllable pattern of the foot.\n\"Take\", \"John's\", and the second syllable of \"erase\" are all non-tonic\nfoot-initial syllables and hence are not distinguished in the notation;\nalthough the pitch contours schematized in Figure 8.9 will give them different\nintonations.\n.pp\nAn indefinite number of levels of stress can be used.  For example, according\nto the rules given by Chomsky and Halle, the word \"sad\" in\n.LB\nmy friend can't help being shocked at anyone who would fail to consider\nhis sad plight\n.LE\nhas level-8 stress, the final two words being annotated\nas \"sa\\u8\\dd pli\\u1\\dght\".\nHowever, only the first few levels are used regularly, and\nit is doubtful whether acoustic distinctions are made in speech\nbetween the weaker ones.\n.pp\nChomsky and Halle are concerned to distinguish between such utterances as\n.LB\n.NI\nbla\\u2\\dck boa\\u1\\drd-era\\u3\\dser    (\"board eraser that is black\")\n.NI\nbla\\u1\\dckboa\\u3\\drd era\\u2\\dser     (\"eraser for a blackboard\")\n.NI\nbla\\u3\\dck boa\\u1\\drd era\\u2\\dser    (\"eraser of a black board\"),\n.LE\nand their stress assignment rules do indeed produce each version when\nappropriate.\nIn foot notation the distinctions can still be made:\n.LB\n.NI\n/black /*board-eraser/\n.NI\n/*blackboard e/raser/\n.NI\n/black /*board e/raser/\n.LE\n.pp\nThe rules operate on a grammatical derivation tree\nof the text.\nFor instance, input for the three examples would be written\n.LB\n.NI\n[\\dNP\\u[\\dA\\u black ]\\dA\\u [\\dN\\u[\\dN\\u board]\\dN\\u\n[\\dN\\u eraser ]\\dN\\u]\\dN\\u]\\dNP\\u\n.NI\n[\\dN\\u[\\dN\\u[\\dA\\u black ]\\dA\\u [\\dN\\u board ]\\dN\\u]\\dN\\u [\\dN\\u eraser ]\\dN\\u]\\dN\\u\n.NI\n[\\dN\\u[\\dNP\\u[\\dA\\u black ]\\dA\\u [\\dN\\u board ]\\dN\\u]\\dNP\\u [\\dN\\u eraser ]\\dN\\u]\\dN\\u,\n.LE\nrepresenting the trees shown in Figure 9.2.\n.FC \"Figure 9.2\"\nHere, N stands for a noun, NP for a noun phrase, and A for an adjective.\nThese categories appear explicitly as nodes in the tree.\nIn the linearized textual representation they are used to label\nbrackets which represent the tree structure.\nAn additional piece of information which is needed is the lexical entry for\n\"eraser\", which would show that it has only one accented\n(that is, potentially stressed) syllable, namely, the second.\n.pp\nConsider now how to account for stress in prefixed and\nsuffixed words, and those polysyllabic ones with more than one potential\nstress point.\nFor these, the morphological structure must appear in the input.\n.pp\nNow\n.ul\nmorphemes\nare well-defined minimal units of grammatical analysis from which a word\nmay be composed.\nFor example,  [went]\\ =\\ [go]\\ +\\ [ed]  is\na morphemic decomposition, where \"[ed]\" denotes the\npast-tense morpheme.\nThis representation is not particularly suitable for speech synthesis\nfor the obvious reason that the result bears no phonetic resemblance to\nthe input.\nWhat is needed is a decomposition into\n.ul\nmorphs,\nwhich occur only when the lexical or phonetic representation of a word may\neasily be segmented into parts.\nThus  [wanting]\\ =\\ [want]\\ +\\ [ing]  and  [bigger]\\ =\\ [big]\\ +\\ [er]  are\nsimultaneously morphic and morphemic decompositions.\nNotice that in the second example, a rule about final consonant doubling has\nbeen applied at the lexical level (although it is not needed in\na phonetic representation):  this comes into the sphere\nof \"easy\" segmentation.\nContrast this with  [went]\\ =\\ [go]\\ +\\ [ed]  which\nis certainly not an easy segmentation and hence a\nmorphemic but not a morphic decomposition.\nBut between these extremes there are some difficult\ncases:  [specific]\\ =\\ [specify]\\ +\\ [ic]  is probably morphic\nas well as morphemic, but it is not clear\nthat  [galactic]\\ =\\ [galaxy]\\ +\\ [ic]  is.\n.pp\nAssuming that the input is given as a derivation tree with morphological\nstructure made explicit, Chomsky and Halle present rules which assign stress\ncorrectly in nearly all cases.  For example, their rules give\n.LB\n.NI\n[\\dA\\u[\\dN\\u incident ]\\dN\\u + al]\\dA\\u  \\(em>  i\\u2\\dncide\\u1\\dntal;\n.LE\nand if the stem is marked by  [\\dS\\u\\ ...\\ ]\\dS\\u  in prefixed words,\nthey can deduce\n.LB\n.NI\n[\\dN\\u tele [\\dS\\u graph ]\\dS\\u]\\dN\\u\t\t\\(em>  te\\u1\\dlegra\\u3\\dph\n.NI\n[\\dN\\u[\\dN\\u tele [\\dS\\u graph ]\\dS\\u]\\dN\\u y ]\\dN\\u\t\\(em>  tele\\u1\\dgraphy\n.NI\n[\\dA\\u[\\dN\\u tele [\\dS\\u graph ]\\dS\\u]\\dN\\u ic ]\\dA\\u\t\\(em>  te\\u3\\dlegra\\u1\\dphi\\u2\\dc.\n.LE\n.pp\nThere are two rules which account for the word-level stress\non such examples:  the \"main stress\"\nrule and the \"alternating stress\" rule.\nIn essence, the main stress rule emphasizes the last strong syllable\nof a stem.\nA syllable is \"strong\" either if it contains one of a class of so-called\n\"long\" vowels, or if there is a cluster of two or more consonants\nfollowing the vowel; otherwise it is \"weak\".\n(If you are exceptionally observant you will notice that this strong\\(emweak\ndistinction has been used before, when discussing the rhythm of feet in\nsyllables.)  Thus the verb \"torment\" receives stress on the second syllable,\nfor it is a strong one.\nA noun like \"torment\" is treated as being derived from the corresponding verb,\nand the rule assigns stress to the verb first and then modifies it for the noun.\nThe second, \"alternating stress\", rule gives some stress to alternate\nsyllables of polysyllabic words like \"form\\c\n.ul\nal\\c\nde\\c\n.ul\nhyde\\c\n\".\n.pp\nIt is quite easy to incorporate the word-level rules into a computer\nprogram which uses feet rather than stress levels as the basis for prosodic\ndescription.\nA foot boundary is simply placed before the primary-stressed (level-1) syllable,\nexcept for function words, which do not begin a foot.\nThe other stress levels should be ignored,\nexcept that for slow, deliberate speech, secondary (level-2) stress is\nmapped into a foot boundary too, if it precedes the primary stress.\nThere is also a rule which reduces vowels in unstressed\nsyllables.\n.pp\nThe stress assignment rules can work on phonemic script, as well as English.\nFor example, starting from the phonetic\nform  [\\d\\V\\u\\ \\c\n.ul\naa\\ s\\ t\\ o\\ n\\ i\\ sh\\ \\c\n]\\dV\\u,\nthe stress assignment rules\nproduce  \\c\n.ul\naa\\ s\\ t\\ o\\u1\\d\\ n\\ i\\ sh\\ ;\\c\n  the\nvowel reduction rule\ngenerates  \\c\n.ul\nuh\\ s\\ t\\ o\\u1\\d\\ n\\ i\\ sh\\ ;\\c\n  and\nthe foot conversion process\ngives  \\c\n.ul\nuh\\ s/t\\ o\\ n\\ i\\ sh.\nThis appears to provide a fairly reliable algorithm for foot boundary\nplacement.\n.rh \"Speech synthesis from concept.\"\nI argued earlier that in order to derive prosodic features\nof an utterance from text it\nis necessary to understand its role in the dialogue, its semantics,\nits syntax, and \\(em as we have just seen \\(em its morphological structure.\nThis is a very tall order, and the problem of natural language comprehension\nby machine is a vast research area in its own right.\nHowever, in many applications requiring speech output,\nutterances are generated by the computer from internally stored data\nrather than being read aloud from pre-prepared text.\nThen the problem of comprehending text may be evaded, for\npresumably the language-generation module can provide a semantic,\nsyntactic, and even morphological decomposition of the utterance,\nas well as some indication of its role in the dialogue\n(that is, why it is necessary to say it).\n.pp\nThis forms the basis of the appealing notion of \"speech synthesis from concept\".\nIt has some advantages over speech generation from text, and in principle\nshould provide more natural-sounding speech.\nEvery word produced by the system can have a complete lexical entry which\nshows its morphological decomposition and potential stress points.\nThe full syntactic history of each utterance is known.\nThe Chomsky-Halle rules described above can therefore be used to place\nfoot boundaries accurately, without the need for a complex parsing program\nand without the risk of having to make guesses about unknown words.\n.pp\nHowever, it is not clear how to take advantage of any semantic information\nwhich is available.  Ideally, it should be possible to place tone group\nboundaries and tonic stress points, and assign intonation contours, in\na natural-sounding way.\nBut look again at the example text of Table 9.2 and imagine that you have\nat your disposal as much semantic information as is needed.\nIt is\n.ul\nstill\nfar from obvious how the intonation features could be assigned!\nIt is, in the ultimate analysis, interpretive and stylistic\n.ul\nchoices\nthat add variety and interest to speech.\n.pp\nTake the problem of determining pitch contours, for instance.\nSome of them may be explicable.\nContour 4 on\n.LB\n.NI\nexcept the parts that are covered in caravans of course\n.LE\nis due to its being a contrastive clause, for it presents\nessentially new information.\nSimilarly, the succession\n.LB\n.NI\nif you go in spring\n.NI\nwhen the gorse is out\n.NI\nor in summer\n.NI\nwhen the heather's out\n.LE\ncould be considered contrastive, being in the subjunctive voice, and\nthis could explain why contour 4's were used.\nBut this is all conjecture, and it is difficult to apply throughout the\npassage.\nHalliday (1970) explains the contexts in which each tone group is typically\nused, but in an extremely high-level manner which would be impossible\nto embody directly in a computer program.\n.[\nHalliday 1970 Course in spoken English: Intonation\n.]\nAt the other end of the spectrum, computer systems for written\ndiscourse production do not seem to provide the subtle information needed\nto make intonation decisions (see, for example, Davey, 1978, for a fairly\ncomplete description of such a system).\n.[\nDavey 1978\n.]\n.pp\nOne project which uses such a method for generating speech has been\ndescribed (Young and Fallside, 1980).\n.[\nYoung Fallside 1980\n.]\nAlthough some attention is paid to rhythm, the intonation contours\nwhich are generated are disappointingly repetitive and lacking in\nrichness.\nIn fact, very little semantic information is used to assign contours; really\njust that inferred by the crude punctuation-driven method described\nearlier.\n.pp\nThe higher-level semantic problems associated with speech output were\nstudied some years go under the\ntitle \"synthetic elocution\" (Vanderslice, 1968).\n.[\nVanderslice 1968\n.]\nA set of rules was generated and tested by hand on a sample passage,\nthe first part of which is shown in Table 9.4.\nHowever, no attempt was made to formalize the rules in a computer program,\nand indeed it was recognized that a number of important questions,\nsuch as the form of the semantic information assumed at the input,\nhad been left unanswered.\n.RF\n.nr x0 \\w'\\0\\0  psychologist   '+\\w'emphasis assigned because of antithesis with  '\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\w'\\0\\0  psychologist   'u\n\\l'\\n(x0u\\(ul'\n.sp\nHuman experience and human behaviour are accessible to\nobservation by everyone.  The psychologist tries to bring\nthem under systematic study.  What he perceives, however,\nanyone can perceive; for his task he requires no microscope\nor electronic gear.\n.sp2\n\\0\\0  word\tcomments\n\\l'\\n(x0u\\(ul'\n.sp\n\\01  Human\tspecial treatment because paragraph-initial\n\\04  human\taccent deleted because it echoes word 1\n13  psychologist\temphasis assigned because of antithesis with\n\t\"everyone\"\n17  them\tanaphoric to \"Human experience and human\n\tbehaviour\"\n19  systematic\temphasis assigned because of contrast with\n\t\"observation\"\n20  study\temphasis? \\(em text is ambiguous whether\n\t\"observation\" is a kind of study that is\n\tnonsystematic, or an activity contrasting\n\twith the entire concept of \"systematic study\"\n21  What\tincrease in pitch for \"What he perceives\"\n\tbecause it is not the subject\n22  he\taccented although anaphoric to word 13\n\tbecause of antithesis with word 25\n24  however\tdecrease in pitch because it is parenthetical\n25  anyone\temphasized by antithesis with word 22\n27  perceive\tunaccented because it echoes word 23,\n\t\"perceives\"\n\\0\\0  ;\tsemicolon assigns falling intonation\n30  task\tunaccented because it is anaphoric with\n\t\"tries to bring them under systematic study\"\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.4  Sample passage and comments pertinent to synthetic elocution\"\n.pp\nThe comments in the table, which are selected and slightly edited versions\nof those appearing in the original work (Vanderslice, 1968), are intended\nas examples of the nature and subtlety of the prosodic influences which\nwere examined.\n.[\nVanderslice 1968\n.]\nThe concepts of \"accent\" and \"emphasis\" are used; these relate to stress\nbut are not easy to define precisely in our tone-group terminology.\nFortunately we do not need an exact characterization of them for the present\npurpose.\nRoughly speaking, \"accent\" encompasses both foot-initial stress and\ntonic stress, whereas \"emphasis\" is something more than this,\ntypically being realized by the fall-rise or rise-fall contours of\nHalliday's tone groups 4 and 5 (Figure 8.5).\n.pp\nParticular attention is paid to anaphora and antithesis (amongst other things).\nThe first term means the repetition of a word or phrase in the text,\nand is often applied to pronoun references.\nIn the example, the word \"human\" is repeated in the first few words;\n\"them\" in the second sentence refers to \"human experience and human\nbehaviour\"; \"he\" in the third sentence is the previously-mentioned\npsychologist; and \"task\" is anaphoric with \"tries to bring them under\nsystematic study\".\nOther things being equal, anaphoric references are unaccented.\nIn our terms this means that they certainly do not receive tonic stress\nand may not even receive foot stress.\n.pp\nAntithesis is defined as the contrast of ideas expressed by parallelism of\nstrongly contrasting words or phrases; and the second element taking part\nin it is generally emphasized.\n\"Psychologist\" in the passage is an antithesis of \"everyone\";\n\"systematic\" and possibly \"study\" of \"observation\".\nThus\n.LB\n.NI\n/^ the psy/*chologist\n.LE\nwould probably receive intonation contour 4, since it is also introducing\na new actor; while\n.LB\n.NI\n/tries to /bring them /under /system/*matic /study\n.LE\ncould receive contour 5.\n\"He\" and \"everyone\" are antithetical; not only does the latter receive\nemphasis but the former has its accent restored \\(em for otherwise\nit would have been removed because of anaphora with \"psychologist\".\nHence it will certainly begin a foot, possibly a tonic foot.\n.pp\nA factor that does not affect the sample passage is the accentuation\nof unusual syllables of similar words to bring out a contrast.\nFor example,\n.LB\n.NI\nhe went\n.ul\nout\\c\nside, not\n.ul\nin\\c\nside.\n.LE\nAlthough this may seem to be just another facet of antithesis,\nVanderslice points out that it is phonetic rather than structural\nsimilarity that is contrasted:\n.LB\n.NI\nI said\n.ul\nde\\c\nplane, not\n.ul\ncom\\c\nplain.\n.LE\nThis introduces an interesting interplay between the phonetic and\nprosodic levels.\n.pp\nAnaphora and antithesis provide an ideal domain for speech synthesis from\nconcept.\nDetermining them from plain text is a very difficult problem,\nrequiring a great deal of real-world knowledge.\nThe first has received some attention in the field of natural language\nunderstanding.\nFinding pronoun referents is an important problem for language translation,\nfor their gender is frequently distinguished in, say, French where it is not\nin English.\nExamples such as\n.LB\n.NI\nI bought the wine, sat on a table, and drank it\n.NI\nI bought the wine, sat on a table, and broke it\n.LE\nhave been closely studied (Wilks, 1975); for if they were to be translated\ninto French the pronoun \"it\" would be rendered differently in each case\n(\\c\n.ul\nle\nvin,\n.ul\nla\ntable).\n.[\nWilks 1975 An intelligent analyzer and understander of English\n.]\n.pp\nIn spoken language, emphasis is used to indicate the referent of a pronoun\nwhen it would not otherwise be obvious.\nVanderslice gives the example\n.LB\n.NI\nBill saw John across the room and he ran over to him\n.NI\nBill saw John across the room and\n.ul\nhe\nran over to\n.ul\nhim,\n.LE\nwhere the emphasis reverses the pronoun referents\n(so that John did the running).\nHe suggests accenting a personal pronoun whenever the true\nantecedent is not the same as the \"unmarked\" or default one.\nUnfortunately he does not elaborate on what is meant by \"unmarked\".\nDoes it mean that the referent cannot be predicted from\nknowledge of the words alone \\(em as in the second example above?\nIf so, this is a clear candidate for speech synthesis from concept,\nfor the distinction cannot be made from text! \n.sh \"9.2  Pronunciation\"\n.pp\nEnglish pronunciation is notoriously irregular.\nA poem by Charivarius, the pseudonym of a Dutch high school teacher\nand linguist G.N.Trenite (1870\\-1946), surveys the problems in an amusing\nway and is worth quoting in full.\n.br\n.ev2\n.in 0\n.LB \"nnnnnnnnnnnnnnnn\"\n.ul\n              The Chaos\n.sp2\n.ne4\nDearest creature in Creation\nStudying English pronunciation,\n.in +5n\nI will teach you in my verse\nSounds like corpse, corps, horse and worse.\n.ne4\n.in -5n\nIt will keep you, Susy, busy,\nMake your head with heat grow dizzy;\n.in +5n\nTear in eye your dress you'll tear.\nSo shall I!  Oh, hear my prayer:\n.ne4\n.in -5n\nPray, console your loving poet,\nMake my coat look new, dear, sew it.\n.in +5n\nJust compare heart, beard and heard,\nDies and diet, lord and word.\n.ne4\n.in -5n\nSword and sward, retain and Britain,\n(Mind the latter, how it's written).\n.in +5n\nMade has not the sound of bade,\nSay \\(em said, pay \\(em paid, laid, but plaid.\n.ne4\n.in -5n\nNow I surely will not plague you\nWith such words as vague and ague,\n.in +5n\nBut be careful how you speak:\nSay break, steak, but bleak and streak,\n.ne4\n.in -5n\nPrevious, precious; fuchsia, via;\nPipe, shipe, recipe and choir;\n.in +5n\nCloven, oven; how and low;\nScript, receipt; shoe, poem, toe.\n.ne4\n.in -5n\nHear me say, devoid of trickery;\nDaughter, laughter and Terpsichore;\n.in +5n\nTyphoid, measles, topsails, aisles;\nExiles, similes, reviles;\n.ne4\n.in -5n\nWholly, holly; signal, signing;\nThames, examining, combining;\n.in +5n\nScholar, vicar and cigar,\nSolar, mica, war and far.\n.ne4\n.in -5n\nDesire \\(em desirable, admirable \\(em admire;\nLumber, plumber; bier but brier;\n.in +5n\nChatham, brougham; renown but known,\nKnowledge; done, but gone and tone,\n.ne4\n.in -5n\nOne, anemone; Balmoral,\nKitchen, lichen; laundry, laurel;\n.in +5n\nGertrude, German; wind and mind;\nScene, Melpemone, mankind;\n.ne4\n.in -5n\nTortoise, turquoise, chamois-leather,\nReading, Reading; heathen, heather.\n.in +5n\nThis phonetic labyrinth\nGives:  moss, gross; brook, brooch; ninth, plinth.\n.ne4\n.in -5n\nBillet does not end like ballet;\nBouquet, wallet, mallet, chalet;\n.in +5n\nBlood and flood are not like food,\nNor is mould like should and would.\n.ne4\n.in -5n\nBanquet is not nearly parquet,\nWhich is said to rime with darky\n.in +5n\nViscous, viscount; load and broad;\nToward, to forward, to reward.\n.ne4\n.in -5n\nAnd your pronunciation's O.K.\nWhen you say correctly:  croquet;\n.in +5n\nRounded, wounded; grieve and sieve;\nFriend and fiend, alive and live\n.ne4\n.in -5n\nLiberty, library; heave and heaven;\nRachel, ache, moustache; eleven.\nWe say hallowed, but allowed;\nPeople, leopard; towed, but vowed.\n.in +5n\nMark the difference moreover\nBetween mover, plover, Dover;\n.ne4\n.in -5n\nLeeches, breeches; wise, precise;\nChalice, but police and lice.\n.in +5n\nCamel, constable, unstable,\nPrinciple, discipline, label;\n.ne4\n.in -5n\nPetal, penal and canal;\nWait, surmise, plait, promise; pal.\n.in +5n\nSuit, suite, ruin; circuit, conduit,\nRime with:  \"shirk it\" and \"beyond it\";\n.ne4\n.in -5n\nBut it is not hard to tell\nWhy it's pall, mall, but Pall Mall.\n.in +5n\nMuscle, muscular; goal and iron;\nTimber, climber; bullion, lion;\n.ne4\n.in -5n\nWorm and storm; chaise, chaos, chair;\nSenator, spectator, mayor.\n.in +5n\nIvy, privy; famous, clamour\nand enamour rime with \"hammer\".\n.ne4\n.in -5n\nPussy, hussy and possess,\nDesert, but dessert, address.\n.in +5n\nGolf, wolf; countenants; lieutenants\nHoist, in lieu of flags, left pennants.\n.ne4\n.in -5n\nRiver, rival; tomb, bomb, comb;\nDoll and roll, and some and home.\n.in +5n\nStranger does not rime with anger,\nNeither does devour with clangour.\n.ne4\n.in -5n\nSoul, but foul; and gaunt, but aunt;\nFont, front, won't; want, grand and grant;\n.in +5n\nShoes, goes, does.  Now first say:  finger,\nAnd then; singer, ginger, linger.\n.ne4\n.in -5n\nReal, zeal; mauve, gauze and gauge;\nMarriage, foliage, mirage, age.\n.in +5n\nQuery does not rime with very,\nNor does fury sound like bury.\n.ne4\n.in -5n\nDost, lost, post; and doth, cloth, loth;\nJob, Job; blossom, bosom, oath.\n.in +5n\nThough the difference seems little\nWe say actual, but victual;\n.ne4\n.in -5n\nSeat, sweat; chaste, caste; Leigh, eight, height;\nPut, nut; granite but unite.\n.in +5n\nReefer does not rime with deafer,\nFeoffer does, and zephyr, heifer.\n.ne4\n.in -5n\nDull, bull; Geoffrey, George; ate, late;\nHint, pint; senate, but sedate.\n.in +5n\nScenic, Arabic, Pacific;\nScience, conscience, scientific.\n.ne4\n.in -5n\nTour, but our, and succour, four;\nGas, alas and Arkansas!\n.in +5n\nSea, idea, guinea, area,\nPsalm, Maria, but malaria.\n.ne4\n.in -5n\nYouth, south, southern; cleanse and clean;\nDoctrine, turpentine, marine.\n.in +5n\nCompare alien with Italian.\nDandelion with battalion,\n.ne4\n.in -5n\nSally with ally, Yea, Ye,\nEye, I, ay, aye, whey, key, quay.\nSay aver, but ever, fever,\nNeither, leisure, skein, receiver.\n.in +5n\nNever guess \\(em it is not safe;\nWe say calves, valves, half, but Ralf.\n.ne4\n.in -5n\nHeron, granary, canary;\nCrevice and device and eyrie;\n.in +5n\nFace, preface, but efface,\nPhlegm, phlegmatic; ass, glass, bass;\n.ne4\n.in -5n\nLarge, but target, gin, give, verging;\nOught, out, joust and scour, but scourging;\n.in +5n\nEar, but earn; and wear and tear\nDo not rime with \"here\", but \"ere\".\n.ne4\n.in -5n\nSeven is right, but so is even;\nHyphen, roughen, nephew, Stephen;\n.in +5n\nMonkey, donkey; clerk and jerk;\nAsp, grasp, wasp; and cork and work.\n.ne4\n.in -5n\nPronunciation \\(em think of psyche -\nIs a paling, stout and spikey;\n.in +5n\nWon't it make you lose your wits,\nWriting groats and saying \"groats\"?\n.ne4\n.in -5n\nIt's a dark abyss or tunnel,\nStrewn with stones, like rowlock, gunwale,\n.in +5n\nIslington and Isle of Wight,\nHousewife, verdict and indict.\n.ne4\n.in -5n\nDon't you think so, reader, rather\nSaying lather, bather, father?\n.in +5n\nFinally:  which rimes with \"enough\",\nThough, through, plough, cough, hough or tough?\n.ne4\n.in -5n\nHiccough has the sound of \"cup\",\nMy advice is ... give it up!\n.LE \"nnnnnnnnnnnnnnnn\"\n.br\n.ev\n.rh \"Letter-to-sound rules.\"\nDespite such irregularities, it is surprising how much can be done\nwith simple letter-to-sound rules.\nThese specify phonetic equivalents of word fragments and single letters.\nThe longest stored fragment which matches the current word is translated,\nand then the same strategy is adopted on the remainder of the word.\nTable 9.5 shows some English fragments and their pronunciations.\n.RF\n.nr x0 1.5i+\\w'pronunciation  '\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 1.5i\nfragment\tpronunciation\n\\l'\\n(x0u\\(ul'\n.sp\n-p-\t\\fIp\\fR\n-ph-\t\\fIf\\fR\n-phe|\t\\fIf ee\\fR\n-phe|s\t\\fIf ee z\\fR\n-phot-\t\\fIf uh u t\\fR\n-place|-\t\\fIp l e i s\\fR\n-plac|i-\t\\fIp l e i s i\\fR\n-ple|ment-\t\\fIp l i m e n t\\fR\n-plie|-\t\\fIp l aa i y\\fR\n-post\t\\fIp uh u s t\\fR\n-pp-\t\\fIp\\fR\n-pp|ly-\t\\fIp l ee\\fR\n-preciou-\t\\fIp r e s uh\\fR\n-proce|d-\t\\fIp r uh u s ee d\\fR\n-prope|r-\t\\fIp r o p uh r\\fR\n-prov-\t\\fIp r uu v\\fR\n-purpose-\t\\fIp er p uh s\\fR\n-push-\t\\fIp u sh\\fR\n-put\t\\fIp u t\\fR\n-puts\t\\fIp u t s\\fR\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.5  Word fragments and their pronunciations\"\n.pp\nIt is sometimes important to specify that a rule applies only when\nthe fragment is matched at the beginning or end of a word.\nIn the Table \"-\" means that other fragments can precede or follow this\none.\nThe \"|\" sign is used to separate suffixes from a word stem,\nas will be explained\nshortly.\n.pp\nAn advantage of the longest-string search strategy is that it is easy\nto account for exceptions simply by incorporating them into the fragment\ntable.\nIf they occur in the input, the complete word will automatically be\nmatched first, before any fragment of it is translated.\nThe exception list of complete words can be surprisingly small for\nquite respectable performance.\nTable 9.6 shows the entire dictionary for an excellent early pronunciation\nsystem written at Bell Laboratories (McIlroy, 1974).\n.[\nMcIlroy 1974\n.]\nSome of the words are notorious exceptions in English, while others are\nincluded simply because the rules would run amok on them.\nNotice that the exceptions are all quite short, with only a few of them\nhaving more than two syllables.\n.RF\n.nr x1 0.9i+0.9i+0.9i+0.9i+0.9i+0.9i\n.nr x1 (\\n(.l-\\n(x1)/2\n.in \\n(x1u\n.ta 0.9i +0.9i +0.9i +0.9i +0.9i\na\tdoesn't\tguest\tmeant\treader\tthose\nalkali\tdoing\thas\tmoreover\trefer\tto\nalways\tdone\thave\tmr\tsays\ttoday\nany\tdr\thaving\tmrs\tseven\ttomorrow\napril\tearly\theard\tnature\tshall\ttuesday\nare\tearn\this\tnone\tsomeone\ttwo\nas\televen\timply\tnothing\tsomething\tupon\nbecause\tenable\tinto\tnowhere\tthan\tvery\nbeen\tengine\tis\tnuisance\tthat\twater\nbeing\tetc\tisland\tof\tthe\twednesday\nbelow\tevening\tjohn\ton\ttheir\twere\nbody\tevery\tjuly\tonce\tthem\twho\nboth\teveryone\tlive\tone\tthere\twhom\nbusy\tfebruary\tlived\tonly\tthereby\twhose\ncopy\tfinally\tliving\tover\tthese\twoman\ndo\tfriday\tmany\tpeople\tthey\twomen\ndoes\tgas\tmaybe\tread\tthis\tyes\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.6  Exception table for a simple pronunciation program\"\n.pp\nSpecial action has to be taken with final \"e\"'s.\nThese lengthen and alter the quality\nof the preceding vowel, so that \"bit\" becomes \"bite\" and so on.\nUnfortunately, if the word has a suffix the \"e\" must be detected even though\nit is no longer final, as in \"lonely\", and it is even dropped sometimes\n(\"biting\") \\(em otherwise these would be pronounced \"lonelly\", \"bitting\".\nTo make matters worse the suffix may be another word:  we do not\nwant \"kiteflying\" to have an extra syllable which rhymes with \"deaf\"!\nAlthough simple procedures can be developed to take care of common\nword endings like \"-ly\", \"-ness\", \"-d\", it is difficult to decompose\ncompound words like \"wisecrack\" and \"bumblebee\" reliably \\(em but this must\nbe done if they are not to be articulated with three syllables instead of two.\nOf course, there are exceptions to the final \"e\" rule.\nMany common words (\"some\", \"done\", \"[live]\\dV\\u\") disobey the rule by not\nlengthening the main vowel, while in other, rarer, ones (\"anemone\",\n\"catastrophe\", \"epitome\") the final \"e\" is actually pronounced.\nThere are also some complete anomalies (\"fete\").\n.pp\nMcIlroy's (1974) system is a superb example of a robust program which takes\na pragmatic approach to these problems, accepting that they will never be\nfully solved, and which is careful to degrade\ngracefully when stumped.\n.[\nMcIlroy 1974\n.]\nThe pronunciation of each word is found by a succession of increasingly\ndesperate trials:\n.LB\n.NP\nreplace upper- by lower-case letters, strip punctuation, and try again;\n.NP\nremove final \"-s\", replace final \"ie\" by \"y\", and try again;\n.NP\nreject a word without a vowel;\n.NP\nrepeatedly mark any suffixes with \"|\";\n.NP\nmark with \"|\" probable morph divisions in compound words;\n.NP\nmark potential long vowels indicated by \"e|\",\nand long vowels elsewhere in the word;\n.NP\nmark voiced medial \"s\" as in \"busy\", \"usual\";\nreplace final \"-s\" if stripped;\n.NP\nscanning the word from left to right, apply letter-to-sound rules\nto word fragments;\n.NP\nwhen all else fails spell the word, punctuation and all\n(burp on letters for which no spelling rule exists).\n.LE\n.RF\n.nr x0 \\w'| ment\\0\\0\\0'+\\w'replace final ie by y\\0\\0\\0'+\\w'except when no vowel would remain in  '\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\w'| ment\\0\\0\\0'u +\\w'replace final ie by y\\0\\0\\0'u\nsuffix\taction\tnotes and exceptions\n\\l'\\n(x0u\\(ul'\n.sp\ns\tstrip off final s\texcept in context us\n\\&'\tstrip off final '\nie\treplace final ie by y\ne\treplace final e by E\twhen it is the only vowel in a word\n\t(long \"e\")\n\n| able\tplace suffix mark as\texcept when no vowel would remain in\n| ably\tshown\tthe rest of the word\ne | d\ne | n\ne | r\ne | ry\ne | st\ne | y\n| ful\n| ing\n| less\n| ly\n| ment\n| ness\n| or\n\n| ic\tplace suffix mark as\n| ical\tshown and terminate\ne |\tfinal e processing\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 9.7  Rules for detecting suffixes for final 'e' processing\"\n.pp\nTable 9.7 shows the suffixes which the program recognizes, with some comments\non their processing.\nMultiple suffixes are detected and marked in words like\n\"force|ful|ly\" and \"spite|ful|ness\".\nThis allows silent \"e\"'s to be spotted even when they occur far back in a\nword.\nNotice that the suffix marks are available to the word-fragment\nrules of Table 9.5, and are frequently used by them.\n.pp\nThe program has some\n.ul\nad hoc\nrules for dealing with compound words like \"race|track\", \"house|boat\";\nthese are applied as well as normal suffix splitting so that multiple\ndecompositions like \"pace|make|r\" can be accomplished.\nThe rules look for short letter sequences which do not\nusually appear in monomorphemic words.\nIt is impossible, however, to detect every morph boundary\nby such rules, and the program inevitably makes mistakes.\nExamples of boundaries which go undetected are\n\"edge|ways\", \"fence|post\", \"horse|back\", \"large|mouth\", \"where|in\";\nwhile boundaries are incorrectly inserted into \"comple|mentary\",\n\"male|volent\", \"prole|tariat\", \"Pame|la\".\n.pp\nWe now seem to have presented two opposing points of view on the pronunciation\nproblem.\nCharivarius, the Dutch poet, shows that an enormous number of\nexceptional words exist; whereas McIlroy's program makes do with a tiny\nexception dictionary.\nThese views can be reconciled by noting that most of Charivarius' words\nare relatively uncommon.\nMcIlroy tested his program against the 2000 most frequent words in a large\ncorpus (Kucera and Francis, 1967),\nand found that 97% were pronounced correctly if word frequencies were\ntaken into account.\n.[\nKucera Francis 1967\n.]\n(The notion of \"correctness\" is of course a rather subjective one.)  However,\nhe estimated that on the remaining words the success rate was only 88%.\n.pp\nThe system is particularly impressive in that it is prepared to say\nanything:  if used, for example, on source programs in a high-level\ncomputer language it will say the keywords and pronouncable\nidentifiers, spell the other identifiers, and even give the names of special\nsymbols (like +, <, =) correctly!\n.rh \"Morphological analysis.\"\nThe use of letter-to-sound rules provides a cheap and fast technique\nfor pronunciation \\(em the fragment table and exception dictionary for the\nprogram described above occupy only 11 Kbyte of storage, and can easily\nbe kept in solid-state read-only memory.\nIt produces reasonable results if careful attention is paid to rules\nfor suffix-splitting.\nHowever, it is inherently limited because it is not possible in general\nto detect compound words by simple rules which operate on the lexical\nstructure of the word.\n.pp\nCompounds can only be found reliably by using a morph dictionary.\nThis gives the added advantage that syntactic information\ncan be stored with the morphs to assist with rhythm assignment according\nto the Chomsky-Halle theory.\nHowever, it was noted earlier that morphs, unlike the grammatically-determined\nmorphemes, are not very well defined from a linguistic point of view.\nSome morphemic decompositions are obviously not morphic because the\nconstituents do not in any way resemble the final word;\nwhile others, where the word is simply a concatenation\nof its components, are clearly morphic.\nBetween these extremes lies a hazy region where what one considers\nto be a morph depends upon how complex one is prepared to make the\nconcatenation rules.\nThe following description draws on techniques used in a project at MIT\nin which a morph-based pronunciation system has been implemented\n(Lee, 1969; Allen, 1976).\n.[\nLee 1969\n.]\n.[\nAllen 1976 Synthesis of speech from unrestricted text\n.]\n.pp\nEstimates of the number of morphs in English vary from 10,000 to 30,000.\nAlthough these seem to be very large numbers, they are considerably less\nthan the number of words in the language.\nFor example, Webster's\n.ul\nNew Collegiate Dictionary\n(7'th edition) contains about 100,000 entries.\nIf all forms of the words were included, this number would probably\ndouble.\n.pp\nThere are several classes of morphs, with restrictions on the combinations\nthat occur.\nA general word has prefixes, a root, and suffixes, as shown in Figure 9.3;\nonly the root is mandatory.\n.FC \"Figure 9.3\"\nSuffixes usually perform a grammatical role, affecting the\nconjugation of a verb or declension of a noun; or transforming one\npart of speech into another\n(\"-al\" can make a noun into an adjective, while \"-ness\" performs the reverse\ntransformation.)  Other\nsuffixes, such as \"-dom\" or \"-ship\", only apply to certain parts of\nspeech (nouns, in this case), but do not change the grammatical\nrole of the word.  Such suffixes, and all prefixes, alter the meaning\nof a word.\n.pp\nSome root morphs cannot combine with other morphs but always stand\nalone \\(em for instance, \"this\".\nOthers, called free morphs, can either occur on their own or combine\nwith further morphs to form a word.\nThus the root \"house\" can be joined on either side by another root,\nsuch as \"boat\",\nor by a suffix such as \"ing\".\nA third type of root morph is one which\n.ul\nmust\ncombine with another morph, like \"crimin-\", \"-ceive\".\n.pp\nEven with a morph dictionary, decomposing a word into a sequence\nof morphs is not a trivial operation.\nThe process of lexical concatenation often results in a\nminor change in the constituents.\nHow big this change is allowed to be governs the morph system being used.\nFor example, Allen (1976) gives three concatenation rules:  a\nfinal \"e\" can be omitted, as in\n.ta 1.1i\n.LB\n.NI\ngive + ing\t\\(em>  giving;\n.LE\nthe last consonant of the root can be doubled, as in\n.LB\n.NI\nbid + ing\t\\(em>  bidding;\n.LE\nor a final \"y\" can change to an \"i\", as in\n.LB\n.NI\nhandy + cap\t\\(em>  handicap.\n.[\nAllen 1976 Synthesis of speech from unrestricted text\n.]\n.LE\nIf these are the only rules permitted, the morph dictionary will\nhave to include multiple versions of some suffixes.\nFor example, the plural morpheme [-s] needs to be represented both by\n\"-s\" and \"-es\", to account for\n.LB\n.NI\npea + s\t\\(em>  peas\n.LE\nand\n.LB\n.NI\nbaby + es\t\\(em>  babies  (using the \"y\" \\(em> \"i\" rule).\n.LE\nThis would not be necessary if a  \"y\" \\(em> \"ie\"  rule were included too.\nSimilarly, the morpheme [-ic] will include morphs\n\"-ic\" and \"-c\"; the latter to cope with\n.LB\n.NI\nspecify + c\t\\(em>  specific    (using the \"y\" \\(em> \"i\" rule).\n.LE\nFurthermore, non-morphemic roots such as \"galact\" need to be included because\nthe concatenation rules do not capture the transformation\n.LB\n.NI\ngalaxy + ic\t\\(em>  galactic.\n.LE\nThere is clearly a trade-off between the size of the morph dictionary\nand the complexity of the concatenation rules.\n.pp\nSince a text-to-speech system is presented with already-concatenated\nmorphs, it must be prepared to reverse the effects of the concatenation\nrules to deduce the constituents of a word.\nWhen two morphs combine with any of the three rules given above,\nthe changes in spelling occur only in the lefthand one.\nTherefore the word is best scanned in a right-to-left direction to\nsplit off the morphs starting with suffixes, as McIlroy's program does.\nIf the procedure fails at any point, one of the three rules is\nhypothesized, its effect is undone, and splitting continues.\nFor example, consider the word\n.LB\n.NI\ngrasshoppers\t<\\(em  grass + hop + er + s\n.LE\n(Lee, 1969).\n.[\nLee 1969\n.]\nThe \"-s\" is detected first, then \"-er\"; these are both stored in\nthe dictionary as suffixes.\nThe remainder, \"grasshopp\", cannot be decomposed and does not appear\nin the dictionary.\nSo each of the rules above is hypothesized in turn, and the\nresult investigated.  (The \"y\" \\(em> \"i\" rule is obviously not\napplicable.)  When\nthe final-consonant-doubling rule is considered, the sequence\n\"grasshop\" is investigated.\n\"Shop\" could be split off this, but then the unknown morph \"gras\"\nwould result.\nThe alternative, to remove \"hop\", leaves a remainder \"grass\" which\n.ul\nis\na free morph, as desired.\nThus a unique and correct decomposition is obtained.\nNotice that the procedure would fail if, for example, \"grass\" had\nbeen inadvertently omitted from the dictionary.\n.pp\nSometimes, several seemingly valid decompositions present themselves\n(Allen, 1976).\n.[\nAllen 1976 Synthesis of speech from unrestricted text\n.]\nFor example:\n.LB\n.NI\nscarcity\t<\\(em  scar + city\n.NI\n\t<\\(em  scarce + ity  (using final-\"e\" deletion)\n.NI\n\t<\\(em  scar + cite + y  (using final-\"e\" deletion)\n.NI\nresting\t<\\(em  rest + ing\n.NI\n\t<\\(em  re + sting\n.NI\nbiding\t<\\(em  bide + ing  (using final-\"e\" deletion)\n.NI\n\t<\\(em  bid + ing\n.NI\nunionized\t<\\(em  un + ion + ize + d\n.NI\n\t<\\(em  union + ize + d\n.NI\nwinding\t<\\(em  [wind]\\dN\\u + ing\n.NI\n\t<\\(em  [wind]\\dV\\u + ing.\n.LE\nThe last distinction is important because the pronunciation of \"wind\"\ndepends on whether it is a noun or a verb.\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.pp\nSeveral sources of information can be used to resolve these ambiguities.\nThe word structure of Figure 9.3, together with the division of root\nmorphs into bound and free ones, may eliminate some possibilities.\nCertain letter sequences (such as \"rp\") do not appear at the beginning\nof a word or morph, and others never occur at the end.\nKnowledge of these sequences can reject some unacceptable\ndecompositions \\(em or perhaps more importantly, can enable intelligent guesses\nto be made in cases where a constituent morph has been omitted from the\ndictionary.\nThe grammatical function of suffixes allows suffix sequences to be\nchecked for compatibility.\nThe syntax of the sentence, together with suffix knowledge, can\nrule out other combinations.\nSemantic knowledge will occasionally be necessary (as in the \"unionized\"\nand \"winding\" examples above \\(em compare a \"winding road\" with a \"winding\nblow\").\nFinally, Allen (1976) suggests that a preference structure on composition\nrules can be used to resolve ambiguity.\n.[\nAllen 1976 Synthesis of speech from unrestricted text\n.]\n.pp\nOnce the morphological structure has been determined,\nthe rest of the pronunciation\nprocess is relatively easy.\nA phonetic transcription of each morph may be stored in the morph dictionary,\nor else letter-to-sound rules can be used on individual morphs.\nThese are likely to be quite successful because final-\"e\" processing can be\nnow be done with confidence:  there are no hidden final \"e\"'s in the middle\nof morphs.\nIn either case the resulting phonetic transcriptions of the individual morphs\nmust be concatenated to give the transcription of the complete word.\nAlthough some contextual modification has to be accounted for,\nit is relatively straightforward and easy to predict.\nFor example, the plural morphs \"-s\" and \"-es\" can be realized phonetically\nby\n.ul\nuh\\ z,\n.ul\ns,\nor\n.ul\nz\ndepending on context.\nSimilarly the past-tense suffix \"-ed\" may be rendered as\n.ul\nuh\\ d,\n.ul\nt,\nor\n.ul\nd.\nThe suffixes \"-ion\" and \"-ure\" sometimes cause modification of the previous\nmorph:  for example\n.LB\n.NI\nact + ion  \\(em>  \\c\n.ul\na k t\\c\n  + ion  \\(em>  \\c\n.ul\na k sh uh n.\n.LE\n.pp\nThe morph dictionary does not remove the need for a lexicon of exceptional\nwords.\nThe irregular final-\"e\" words mentioned earlier (\"done\", \"anemone\", \"fete\")\nneed to be treated on an individual basis,\nas do words such as \"quadruped\" which have misleading endings\n(it should not be decomposed as \"quadrup|ed\").\n.rh \"Pronunciation of languages other than English.\"\nText-to-speech systems for other languages have been reported in\nthe literature.\n(For example, French, Esperanto,\nItalian, Russian, Spanish, and German are covered\nby Lesmo\n.ul\net al,\n1978; O'Shaughnessy\n.ul\net al,\n1981; Sherwood, 1978;\nMangold and Stall, 1978).\n.[\nLesmo 1978\n.]\n.[\nO'Shaughnessy Lennig Mermelstein Divay 1981\n.]\n.[\nSherwood 1978\n.]\n.[\nMangold Stall 1978\n.]\nGenerally speaking, these present fewer difficulties than does English.\nEsperanto is particularly easy because each letter in its orthography\nhas only one sound, making the pronunciation problem trivial.\nMoreover, stress in polysyllabic words always occurs on the penultimate\nsyllable.\n.pp\nIt is tempting and often sensible when designing a synthesis system for\nEnglish to use an utterance representation somewhere between phonetics and\nordinary spelling.\nThis may happen in practice even if it is not intended:  a user, finding\nthat a given word is pronounced incorrectly, will alter the spelling to\nmake it work.\nThe Word English Spelling alphabet (Dewey, 1971), amongst others (Haas, 1966),\nis a simplified and apparently natural scheme which was developed by the\nspelling reform movement.\n.[\nDewey 1971\n.]\n.[\nHaas 1966\n.]\nIt maps very simply on to a phonetic representation, just like Esperanto.\nHowever, it can provide little help with the crucial problem of stress\nassignment, except perhaps by explicitly indicating reduced vowels.\n.sh \"9.3  Discussion\"\n.pp\nThis chapter has really only touched the tip of a linguistic iceberg.\nI have given some examples of representations, rules, algorithms,\nand exceptions, to make the concepts more tangible; but a whole mass of\ndetail has been swept under the carpet.\n.pp\nThere are two important messages that are worth reiterating once more.\nThe first is that the representation of the input \\(em that is,\nwhether it be a \"concept\"\nin some semantic domain, a syntactic description of an utterance, a\ndecomposition into morphs, plain text or some contrived re-spelling of it \\(em\nis crucial to the quality of the output.\nAlmost any extra information about the utterance can be taken into account\nand used to improve the speech.\nIt is difficult to derive such information if it is not provided explicitly,\nfor the process of climbing the tree from text to semantic representation is\nat least as hard as descending it to a phonetic transcription.\n.pp\nSecondly, simple algorithms perform remarkably well \\(em witness the\npunctuation-driven intonation assignment scheme, and word fragment rules\nfor pronunciation.\nHowever, the combined degradation contributed by several imperfect\nprocesses is likely to impair speech quality very seriously.\nAnd great complexity is introduced when these simple algorithms are\ndiscarded in favour of more sophisticated ones.\nThere is, for example, a world of difference between a pronunciation\nprogram that copes with 97% of common words and one that deals correctly\nwith 99% of a random sample from a dictionary.\n.pp\nSome of the options that face the system designer are recapitulated in\nFigure 9.4.\n.FC \"Figure 9.4\"\nStarting from text, one can take the simple approach of lexically-based\nsuffix-splitting, letter-to-sound rules, and prosodics derived\nfrom punctuation, to generate a phonetic transcription.\nThis will provide a cheap system which is relatively easy to implement\nbut whose speech quality will probably not be acceptable to any but the\nmost dedicated listener\n(such as a blind person with no other access to reading material).\n.pp\nThe biggest improvement in speech quality from such a system would\nalmost certainly come from more intelligent prosodic\ncontrol \\(em particularly of intonation.\nThis, unfortunately, is also by far the most difficult to make unless\nintonation contours, tonic stresses, and tone-group boundaries are hand-coded\ninto the input.\nTo generate the appropriate information from text one has to climb to the\nupper levels in Figure 9.4 \\(em and even when these are reached, the problems\nare by no means over.\nStill, let us climb the tree.\n.pp\nFor syntax analysis, part-of-speech information is needed; and for this\nthe grammatical roles of individual words in the text must be ascertained.\nA morph dictionary is the most reliable way to do this.\nA linguist may prefer to go from morphs to syntax by way of morphemes;\nbut this is not necessary for the present purpose.\nJust the information that\nthe morph \"went\" is a verb can be stored in the dictionary, instead\nof its decomposition  [went]\\ =\\ [go]\\ +\\ [ed].\n.pp\nNow that we have the morphological structure of the text, stress assignment rules\ncan be applied to produce more accurate speech rhythms.\nThe morph decomposition will also allow improvements to be made to the\npronunciation, particularly in the case of silent \"e\"'s in compound words.\nBut the ability to assign intonation has hardly been improved at all.\n.pp\nLet us proceed upwards.\nNow the problems become really difficult.\nA semantic representation of the text is needed; but what exactly does this\nmean?\nWe certainly must have\n.ul\nmorphemic\nknowledge, for now the fact that \"went\" is a derivative of \"go\"\n(rather than any other verb) becomes crucial.\nVery well, let us augment the morph dictionary with morphemic information.\nBut this does not attack the problem of semantic representation.\nWe may wish to resolve pronoun references to help assign stress.\nParts of the problem are solved in principle\nand reported in the artificial intelligence\nliterature, but if such an ability is incorporated into the speech\nsynthesis system it will become enormously complicated.\nIn addition, we have seen that knowledge of antitheses in the text will greatly\nassist intonation assignment, but procedures for extracting this\ninformation constitute a research topic in their own right.\n.pp\nNow step back and take a top-down approach.\nWhat could we do with this semantic understanding and knowledge of the structure\nof the discourse if we had it?\nSuppose the input were a \"concept\" in some as yet undetermined representation.\nWhat are the\n.ul\nacoustic\nmanifestations of such high-level features as anaphoric references or\nantithetical comparisons,\nof parenthetical or satirical remarks,\nof emotions:  warmth, sarcasm, sadness and despair?\nCan we program the art of elocution?\nThese are good questions. \n.sh \"9.4  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"9.5  Further reading\"\n.pp\nBooks on pronunciation give surprisingly little help in designing\na text-to-speech procedure.\nThe best aid is a good on-line dictionary and flexible software to\nsearch it and record rules, examples, and exceptions.\nHere are some papers that describe existing systems.\n.LB \"nn\"\n.\\\"Ainsworth-1974-1\n.]-\n.ds [A Ainsworth, W.A.\n.ds [D 1974\n.ds [T A system for converting text into speech\n.ds [J IEEE Trans Audio and Electroacoustics\n.ds [V AU-21\n.ds [P 288-290\n.nr [P 1\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.\\\"Colby-1978-2\n.]-\n.ds [A Colby, K.M.\n.as [A \", Christinaz, D.\n.as [A \", and Graham, S.\n.ds [D 1978\n.ds [K *\n.ds [T A computer-driven, personal, portable, and intelligent speech prosthesis\n.ds [J Computers and Biomedical Research\n.ds [V 11\n.ds [P 337-343\n.nr [P 1\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.\\\"Elovitz-1976-3\n.]-\n.ds [A Elovitz, H.S.\n.as [A \", Johnson, R.W.\n.as [A \", McHugh, A.\n.as [A \", and Shore, J.E.\n.ds [D 1976\n.ds [K *\n.ds [T Letter-to-sound rules for automatic translation of English text to phonetics\n.ds [J IEEE Trans Acoustics, Speech and Signal Processing\n.ds [V ASSP-24\n.ds [N 6\n.ds [P 446-459\n.nr [P 1\n.ds [O December\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.\\\"Kooi-1978-4\n.]-\n.ds [A Kooi, R.\n.as [A \" and Lim, W.C.\n.ds [D 1978\n.ds [T An on-line minicomputer-based system for reading printed text aloud\n.ds [J IEEE Trans Systems, Man and Cybernetics\n.ds [V SMC-8\n.ds [P 57-62\n.nr [P 1\n.ds [O January\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.\\\"Umeda-1975-5\n.]-\n.ds [A Umeda, N.\n.as [A \" and Teranishi, R.\n.ds [D 1975\n.ds [K *\n.ds [T The parsing program for automatic text-to-speech synthesis developed at the Electrotechnical Laboratory in 1968\n.ds [J IEEE Trans Acoustics, Speech and Signal Processing\n.ds [V ASSP-23\n.ds [N 2\n.ds [P 183-188\n.nr [P 1\n.ds [O April\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.\\\"Umeda-1976-6\n.]-\n.ds [A Umeda, N.\n.ds [D 1976\n.ds [K *\n.ds [T Linguistic rules for text-to-speech synthesis\n.ds [J Proc IEEE\n.ds [V 64\n.ds [N 4\n.ds [P 443-451\n.nr [P 1\n.ds [O April\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 1 journal-article\n.in+2n\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"10  DESIGNING THE MAN-COMPUTER DIALOGUE\"\n.ds RT \"The man-computer dialogue\n.ds CX \"Principles of computer speech\n.pp\nInteractive computers are being used more and more by non-specialist people\nwithout much previous computer experience.\nAs processing costs continue to decline, the overall expense of providing\nhighly interactive systems\nbecomes increasingly dominated by terminal and communications equipment.\nTaken together, these two factors highlight the need for easy-to-use,\nlow-bandwidth interactive terminals that make maximum use of the existing\ntelephone network for remote access.\n.pp\nSpeech output can provide versatile feedback from a computer at very low\ncost in distribution and terminal equipment.  It is attractive from several\npoints of view.\nTerminals \\(em telephones \\(em are invariably in place already.\nPeople without experience of computers are accustomed to their use,\nand are not intimidated by them.\nThe telephone network is cheap to use and extends all over the world.\nThe touch-tone keypad (or a portable tone generator)\nprovides a complementary data input device which will do for many\npurposes until the technology of speech recognition becomes better developed\nand more widespread.\nIndeed, many applications \\(em especially information retrieval ones \\(em need\na much smaller bandwidth from user to computer than in the reverse direction,\nand voice output combined with restricted keypad entry provides a good match\nto their requirements.\n.pp\nThere are, however, severe problems in implementing natural and useful\ninteractive systems using speech output.\nThe eye can absorb information at a far greater rate than can the ear.\nYou can scan a page of text in a way which has no analogy in auditory terms.\nEven so, it is difficult to design a dialogue which allows you to search\ncomputer output visually at high speed.\nIn practice, scanning a new report is often better done at your desk\nwith a printed copy than at a computer terminal with a viewing program\n(although this is likely to change in the near future).\n.pp\nWith speech, the problem of organizing output becomes even harder.\nMost of the information we learn using our ears is presented in a\nconversational way, either in face-to-face discussions or over the telephone.\nVerbal but non-conversational presentations, as in the\nuniversity lecture theatre, are known to be a rather inefficient way\nof transmitting information.\nThe degree of interaction is extremely high even in a telephone conversation,\nand communication relies heavily on speech gestures such as hesitations,\ngrunts, and pauses; on prosodic features such as intonation, pitch range,\ntempo, and voice quality; and on conversational gambits such as interruption\nand long silence.\nI emphasized in the last two chapters the rudimentary state of knowledge\nabout how to synthesize\nprosodic features, and the situation is even worse\nfor the other, paralinguistic, phenomena.\n.pp\nThere is also a very special problem with voice output, namely, the transient\nnature of the speech signal.\nIf you miss an utterance, it's gone.\nWith a visual display unit, at least the last few interactions usually remain\navailable.\nEven then, it is not uncommon to look up beyond the top of the screen and\nwish that more of the history was still visible!\nThis obviously places a premium on a voice response system's\nability to repeat utterances.\nMoreover, the dialogue designer must do his utmost to ensure that the user\nis always aware of the current state of the interaction,\nfor there is no opportunity to refresh the memory by glancing at earlier\nentries and responses.\n.pp\nThere are two separate aspects to the man-computer interface in a voice\nresponse system.\nThe first is the relationship between the system and the end user,\nthat is, the \"consumer\" of the synthesized dialogue.\nThe second is the relationship between the system and the applications\nprogrammer who creates the dialogue.\nThese are treated separately in the next two sections.\nWe will have more to say about the former aspect,\nfor it is ultimately more important to more people.\nBut the applications programmer's view is important, too; for without him\nno systems would exist!\nThe technical difficulties in creating synthetic dialogues\nfor the majority of voice systems probably\nexplain why speech output technology is still greatly under-used.\nFinally we look at techniques for using small keypads such as those on\ntouch-tone telephones,\nfor they are an essential part of many voice response systems.\n.sh \"10.1  Programming principles for natural interaction\"\n.pp\nSpecial attention must be paid to be details of the man-machine interface\nin speech-output systems.\nThis section summarizes experience of human factors considerations\ngained in developing the remote\ntelephone enquiry service described in Chapter 1 (Witten and Madams, 1977),\nwhich employs an ordinary touch-tone keypad for input in conjunction with\nsynthetic voice response.\n.[\nWitten Madams 1977 Telephone Enquiry Service\n.]\nMost of the principles which emerged were the result of natural evolution\nof the system, and were not clear at the outset.\nBasically, they stem from the fact that speech is both more intrusive\nand more ephemeral than writing, and so they are applicable in general to\nspeech output information retrieval systems with keyboard or even voice\ninput.\nBe warned, however, that they are based upon casual observation and\nspeculation rather than empirical research.\nThere is a desperate need for proper studies of user psychology in speech\nsystems.\n.rh \"Echoing.\"\nMost alphanumeric input peripherals echo on a character-by-character basis.\nAlthough one can expect quite a high proportion of mistakes with\nunconventional keyboards, especially when entering alphabetic data on a\nbasically numeric keypad, audio character echoing is distracting and annoying.\nIf you type \"123\" and the computer echoes\n.LB\n.NI\n\"one ... two ... three\"\n.LE\nafter the individual key-presses, it is liable to divert your\nattention, for voice output is much more intrusive than a purely visual \"echo\".\n.pp\nInstead, an immediate response to a completed input line is preferable.\nThis response can take the form or a reply to a query, or, if successive\ndata items are being typed, confirmation of the data entered.\nIn the latter case, it is helpful if the information can be generated in\nthe same way that the user himself would be likely to verbalize it.\nThus, for example, when entering numbers:\n.LB\n.nr x0 \\w'COMPUTER:'\n.nr x1 \\w'USER:'\n.NI\nUSER:\\h'\\n(x0u-\\n(x1u' \"123#\"\t(# is the end-of-line character)\n.NI\nCOMPUTER: \"One hundred and twenty-three.\"\n.LE\nFor a query which requires lengthy processing, the input should be\nrepeated in a neat, meaningful format to give the user a chance to abort\nthe request.\n.rh \"Retracting actions.\"\nBecause commands are entered directly without explicit confirmation,\nit must always be easy for the user to revoke his actions.\nThe utility of an \"undo\" command is now commonly recognized for\nany interactive system, and it becomes even more important in speech\nsystems because it is easier for the user to lose his place in the\ndialogue and so make errors.\n.rh \"Interrupting.\"\nA command which interrupts output and returns to a known state\nshould be recognized at every level of the system.\nIt is essential that voice output be terminated immediately,\nrather than at the end of the utterance.\nWe do not want the user to live in fear of the system embarking on\na long, boring monologue that is impossible to interrupt!\nAgain, the same is true of interactive dialogues which do not use speech,\nbut becomes particularly important with voice response because it takes\nlonger to transmit information.\n.rh \"Forestalling prompts.\"\nComputer-generated prompts must be explicit and frequent enough\nto allow new users to understand what they are expected to do.\nExperienced users will \"type ahead\" quite naturally,\nand the system should suppress unnecessary prompts under these conditions\nby inspecting the input buffer before prompting.\nThis allows the user to concatenate frequently-used commands into chunks whose\nsize is entirely at his own discretion.\n.pp\nWith the above-mentioned telephone enquiry service, for example,\nit was found that people often took advantage of the prompt-suppression\nfeature to enter their\nuser number, password, and required service number as a single keying\nsequence.\nAs you becomes familiar with a service you quickly and easily learn to\nforestall expected prompts by typing ahead.\nThis provides a very natural way for the system to adapt itself automatically\nto the experience of the user.\nNew users will naturally wait to be prompted, and proceed through the dialogue\nat a slower and more relaxed pace.\n.pp\nSuppressing unnecessary prompts is a good idea in any interactive system,\nwhether or not it uses the medium of speech \\(em although it is hardly ever done\nin conventional systems.\nIt is particularly important with speech, however, because an unexpected\nor unwanted\nprompt is quite distracting, and it is not so easy to ignore it as it is\nwith a visual display.\nFurthermore, speech messages usually take longer to present\nthan displayed ones, so that the user is distracted for more time.\n.rh \"Information units.\"\nLengthy computer voice responses are inappropriate for conveying information,\nbecause attention wanders if one is not actively involved in the conversation.\nA sequential exchange of terse messages, each designed to dispense one\nsmall unit of information, forces the user to take a meaningful part in the\ndialogue.\nIt has other advantages, too, allowing a higher degree of input-dependent\nbranching, and permitting rapid recovery from errors.\n.pp\nThe following example from the \"Acidosis program\", an audio response system\ndesigned to help physicians to diagnose acidosis, is a good example\nof what\n.ul\nnot\nto do.\n.LB\n\"(Chime) A VALUE OF SIX-POINT-ZERO-ZERO HAS BEEN ENTERED FOR PH.\nTHIS VALUE IS IMPOSSIBLE.\nTO CONTINUE THE PROGRAM, ENTER A NEW VALUE FOR PH IN THE RANGE\nBETWEEN SIX-POINT-SIX AND EIGHT-POINT-ZERO\n(beep dah beep-beep)\"  (Smith and Goodwin, 1970).\n.[\nSmith Goodwin 1970\n.]\n.LE\nThe use of extraneous noises (for example, a \"chime\" heralds an error message,\nand a \"beep dah beep-beep\" requests data input in the form\n<digit><point><digit><digit>)\nwas thought necessary in the Acidosis program to keep the user awake\nand help him with the format of the interaction.\nRather than a long monologue like this,\nit seems much better to design a sequential interchange of terse messages,\nso that the caller can be guided into a state where he can rectify his error.\nFor example,\n.LB\n.nf\n.ne11\n.nr x0 \\w'COMPUTER:'\n.nr x1 \\w'CALLER:'\nCALLER:\\h'\\n(x0u-\\n(x1u' \"6*00#\"\nCOMPUTER: \"Entry out of range\"\nCALLER:\\h'\\n(x0u-\\n(x1u' \"6*00#\"  (persists)\nCOMPUTER: \"The minimum acceptable pH value is 6.6\"\nCALLER:\\h'\\n(x0u-\\n(x1u' \"9*03#\"\nCOMPUTER: \"The maximum acceptable pH value is 8.0\"\n.fi\n.LE\nThis dialogue allows a rapid exit from the error situation in the likely\nevent that the entry has simply been mis-typed.\nIf the error persists, the caller is given just one piece of information\nat a time, and forced to continue to play an active role in the interaction.\n.rh \"Input timeouts.\"\nIn general, input timeouts are dangerous, because they introduce apparent\nacausality in the system seen by the user.\nA case has been reported where a user became \"highly agitated and refused\nto go near the terminal again after her first timed-out prompt.\nShe had been quietly thinking what to do and the terminal suddenly\ninterjecting and making its\nown suggestions was just too much for her\" (Gaines and Facey, 1975).\n.[\nGaines Facey 1975\n.]\n.pp\nHowever, voice response systems lack the satisfying visual feedback\nof end-of-line on termination of an entry.\nHence a timed-out reminder is appropriate if a delay occurs after some\ncharacters have been entered.\nThis requires the operating system to support a character-by-character mode\nof input, rather than the usual line-by-line mode.\n.rh \"Repeat requests.\"\nAny voice response system must support a universal \"repeat last utterance\"\ncommand, because old output does not remain visible.\nA fairly sophisticated facility is desirable, as repeat requests are\nvery frequent in practice.\nThey may be due to a simple inability to understand a response,\nto forgetting what was said, or to distraction of attention \\(em which is\nespecially common with office terminals.\n.pp\nIn the telephone enquiry service two distinct commands were employed,\none to repeat the last utterance in case of misrecognition,\nand the other to summarize the current state of the interaction\nin case of distraction.\nFor the former, it is essential to avoid simply regenerating an utterance\nidentical with the last.\nSome variation of intonation and rhythm is needed to prevent an annoying,\nstereotyped response.\nA second consecutive repeat request should trigger a paraphrased reply.\nAn error recovery sequence could be used which presented the misunderstood\ninformation in a different way with more interaction, but experience\nindicates that this is of minor importance, especially if information units\nare kept small anyway.\nTo summarize the current state of the interaction in response to the second\ntype of repeat command necessitates the system maintaining a model of\nthe user.\nEven a poor model, like a record of his last few transactions and their\nresults, is well worth having.\n.rh \"Varied speech.\"\nSynthetic speech is usually rather dreary to listen to.\nSuccessive utterances with identical intonations should be carefully avoided.\nSmall changes in speaking rate, pitch range, and mean pitch level,\nall serve to add variety.\nUnfortunately, little is known at present about the role of intonation in\ninteractive dialogue, although this is an active research area and\nnew developments can be expected (for a detailed report of a recent\nresearch project relevant to this topic see Brown\n.ul\net al,\n1980).\n.[\nBrown Currie Kenworthy 1980\n.]\nHowever, even random variations in certain parameters of the pitch contour\nare useful to relieve the tedium of repetitive intonation patterns.\n.sh \"10.2  The applications programming environment\"\n.pp\nThe comments in the last section are aimed at the applications programmer\nwho is designing the dialogue and constructing the interactive system.\nBut what kind of environment should\n.ul\nhe\nbe given to assist with this work?\n.pp\nThe best help the applications programmer can have is a speech generation\nmethod which makes it easy for him to enter new utterances and modify\nthem on-line in cut-and-try attempts to render the man-machine dialogue\nas natural as possible.\nThis is perhaps the most important advantage of synthesizing speech by rule\nfrom a textual representation.\nIf encoded versions of natural utterances are stored, it becomes quite\ndifficult to make minor modifications to the dialogue in the light of\nexperience with it, for a recording session must be set up\nto acquire new utterances.\nThis is especially true if more than one voice is used, or if the\nvoice belongs to a person who cannot be recalled quickly by the programmer\nto augment the utterance library.\nEven if it is his own voice there will still be delays, for recording\nspeech is a real-time job which usually needs a stand-alone processor,\nand if data compression is used a substantial amount of computation will\nbe needed before the utterance is in a useable form.\n.pp\nThe broad phonetic input required by segmental speech synthesis-by-rule\nsystems is quite suitable for utterance representation.\nUtterances can be entered quickly from a standard computer terminal,\nand edited as text files.\nProgrammers must acquire skill in phonetic transcription,\nbut this is a small inconvenience.\nThe art is easily learned in an interactive situation where the effect\nof modifications to the transcription can be heard immediately.\nIf allophones must be represented explicitly in the input then the\nprogrammer's task becomes considerably more complicated because of the\ncombinatorial explosion in trial-and-error modifications.\n.pp\nPlain text input is also quite suitable.\nA significant rate of error is tolerable if immediate audio feedback\nof the result is available, so that the operator can adjust his text\nto suit the pronunciation idiosyncrasies of the program.\nBut it is acceptable, and indeed preferable, if prosodic features are\nrepresented explicitly in the input rather than being assigned automatically\nby a computer program.\n.pp\nThe application of voice response to interactive computer dialogue is\nquite different to the problem of reading aloud from text.\nWe have seen that a major concern with reading machines is how to glean\ninformation about intonation, rhythm, emphasis, tone of voice, and so on,\nfrom an input of ordinary English text.\nThe significant problems of semantic processing, utilization of pragmatic\nknowledge, and syntactic analysis do not, fortunately, arise in interactive\ninformation retrieval systems.\nIn these, the end user is communicating with a program which has been\ncreated by a person who knows what he wants it to say.\nThus the major difficulty is in\n.ul\ndescribing\nthe prosodic features rather than\n.ul\nderiving\nthem from text.\n.pp\nSpeech synthesis by rule is a subsidiary process to the main interactive\nprocedure.\nIt would be unwise to allow\nthe updating of resonance parameter tracks to be interrupted by\nother calls on the system, and so the synthesis process needs to be executed\nin real time.\nIf a stand-alone processor is used for the interactive dialogue, it may\nbe able to handle the synthesis rules as well.\nIn this case the speech-by-rule program could be a library procedure,\nif the system is implemented in a compiled language.\nAn interesting alternative with an interpretive-language implementation,\nsuch as Basic, is to alter the language interpreter to add a new\ncommand, \"speak\", which simply transfers a string representing an utterance\nto an asynchronous process which synthesizes it.\nHowever, there must be some way for an intepreted program to abort the\ncurrent synthesis in the event of an interrupt signal from the user.\n.pp\nIf the main computer system is time-shared, the synthesis-by-rule\nprocedure is best executed by an independent processor.\nFor example, a 16-bit microcomputer controlling a hardware\nformant synthesizer has been used to run the\nISP system in real time without too much difficulty (Witten and Abbess, 1979).\n.[\nWitten Abbess 1979\n.]\nAn important task is to define an interface between the two which\nallows the main process to control relevant aspects of the prosody of\nthe speech in a way which is appropriate to the state of the interaction,\nwithout having to bother about such things as matching the intonation contour\nto the utterance and the details of syllable rhythm.\nHalliday's notation appears to be quite suitable for this purpose.\n.pp\nIf there is only one synthesizer on the system, there will be no\ndifficulty in addressing it.\nOne way of dealing with multiple synthesizers is to treat them as\nassignable devices in the same way that non-spooling peripherals\nare in many operating systems.\nNotice that the data rate to the synthesizer is quite low\nif the utterance is represented as text with prosodic markers,\nand can easily be handled by a low-speed asynchronous serial line.\n.pp\nThe Votrax ML-I synthesizer which is discussed in the next chapter has an\ninterface which interposes it between a visual display unit and the serial\nport that connects it to the computer.\nThe VDU terminal can be used quite normally, except that a special sequence\nof two control characters will cause Votrax to intercept the following\nmessage up to another control character, and interpret it as speech.\nThe fact that the characters which specify the spoken message do not appear\non the VDU screen means that the operation is invisible to the user.\nHowever, this transparency can be inhibited by a switch on the synthesizer\nto allow visual checking of the sound-segment character sequence.\n.pp\nVotrax buffers up to 64 sound segments, which is sufficient to generate\nisolated spoken messages.\nFor longer passages, it can be synchronized with the constant-rate\nserial output using the modem control lines of the serial interface,\ntogether with appropriate device-driving software.\n.pp\nThis is a particularly convenient interfacing technique in cases when the\nsynthesizer should always be associated with a certain terminal. \nAs an example of how it can be used,\none can arrange files each of whose lines contain a printed message,\ntogether with its Votrax equivalent bracketed by the appropriate\ncontrol characters.\nWhen such a file is listed, or examined with an editor program, the lines\nappear simultaneously in spoken and typed English.\n.pp\nIf a phonetic representation is used for utterances, with real-time\nsynthesis using a separate process (or processor), it is easy for\nthe programmer to fiddle about with the interactive dialogue to get\nit feeling right.\nFor him, each utterance is just a textual string which\ncan be stored as a string constant within his program just as a VDU prompt\nwould be.  He can edit it as part of his program, and \"print\" it to\nthe speech synthesis device to hear it.\nThere are no more technical problems to developing an interactive dialogue\nwith speech output than there are for a conventional interactive program.\nOf course, there are more human problems, and the points discussed\nin the last section should always be borne in mind.\n.sh \"10.3  Using the keypad\"\n.pp\nOne of the greatest advantages of speech output from computers is the\nubiquity of the telephone network and the possibility of using it without\nthe need for special equipment at the terminal.\nThe requirement for input as well as output obviously presents something of a problem\nbecause of the restricted nature of the telephone keypad.\n.pp\nFigure 10.1 shows the layout of the keypad.\n.FC \"Figure 10.1\"\nSignalling is achieved by dual-frequency tones.\nFor example, if key 7 is pressed, sinusoidal components at 852\\ Hz and 1209\\ Hz\nare transmitted down the line.\nDuring the process of dialling these are received by the telephone exchange\nequipment, which assembles the digits that form a number and attempts to route\nthe call appropriately.\nOnce a connection is made, either party is free to press keys if desired\nand the signals will be transmitted to the other end,\nwhere they can be decoded by simple electronic circuits.\n.pp\nDial telephones signal with closely-spaced dial pulses.\nOne pulse is generated for a \"1\", two for a \"2\", and so on.\n(Obviously, ten pulses are generated for a \"0\", rather than none!)  Unfortunately,\nonce the connection is made it is difficult to signal with dial pulses.\nThey cannot be decoded reliably at the other end because the telephone\nnetwork is not designed to transmit such low frequencies.\nHowever, hand-held tone generators can be purchased for use with dial\ntelephones.\nAlthough these are undeniably extra equipment, and one purpose of using speech\noutput is to avoid this, they are very cheap and portable compared with other\ncomputer terminal equipment.\n.pp\nThe small number of keys on the telephone pad makes it rather difficult\nto use for communicating with computers.\nProvision is made for 16 keys, but only 12 are implemented \\(em the others\nmay be used for some military purposes.\nOf course, if a separate tone generator is used then advantage can be taken\nof the extra keys, but this will introduce incompatibility with those\nwho use unmodified touch-tone phones.\nMore sophisticated terminals are available which extend the keypad \\(em such\nas the Displayphone of Northern Telecommunications.\nHowever, they are designed as a complete communications terminal and\ncontain their own visual display as well.\n.rh \"Keying alphabetic data.\"\nFigure 10.2 shows the near-universal scheme for overlaying alphabetic letters\non to the telephone keypad.\n.FC \"Figure 10.2\"\nSince more than one symbol occupies each key, it is obviously necessary\nto have multiple keystrokes per character if the input sequence is to be\ndecodable as a string of letters.\nOne way of doing this is to depress the appropriate button the number of\ntimes corresponding to the position of the letter on it.\nFor example, to enter the letter \"L\" the user would key the \"5\" button\nthree times in rapid succession.\nKeying rhythm must be used to distinguish the four entries \"J\\ J\\ J\",\n\"J\\ K\", \"K\\ J\", and \"L\", unless one of the bottom three buttons is used\nas a separator.\nA different method is to use \"*\", \"0\", and \"#\" as shift keys to indicate whether\nthe first, second, or third letter on a key is intended.\nThen \"#5\" would represent \"L\".\nAlternatively, the shift could follow the key instead of preceding it,\nso that \"5#\" represented \"L\".\n.pp\nIf numeric as well as alphabetic information may be entered, a mode-shift\noperation is commonly used to switch between numeric and alphabetic modes.\n.pp\nThe relative merits of these three methods, multiple depressions, shift\nkey prefix, and shift key suffix, have been investigated\nexperimentally (Kramer, 1970).\n.[\nKramer 1970\n.]\nThe results were rather inconclusive.\nThe first method seemed to be slightly inferior in terms of user accuracy.\nIt seemed that preceding rather than following shifts gave higher accuracy,\nalthough this is perhaps rather counter-intuitive and may have been\nfortuitous.\nThe most useful result from the experiments was that users exhibited\nsignificant learning behaviour, and a training period of at least two hours\nwas recommended.\nOperators were found able to key at rates of at least three to four\ncharacters per second, and faster with practice.\n.pp\nIf a greater range of characters must be represented then the coding problem\nbecomes more complex.\nFigure 10.3 shows a keypad which can be used for entry of the full 64-character\nstandard upper-case ASCII alphabet (Shew, 1975).\n.[\nShew 1975\n.]\n.FC \"Figure 10.3\"\nThe system is intended for remote vocabulary updating in a phonetically-based\nspeech synthesis system.\nThere are three modes of operation:  numeric, alphabetic, and symbolic.\nThese are entered by \"##\", \"**\", and \"*0\" respectively.\nTwo function modes, signalled by \"#0\" and \"#*\", allow some\nrudimentary line-editing and monitor facilities to be incorporated.\nLine-editing commands include character and line delete, and two kinds of\nread-back commands \\(em one tries to pronounce the words in a line\nand the other spells out the characters.\nThe monitor commands allow the user to repeat the effect of the last input line\nas though he had entered it again, to order the system to read back the\nlast complete output line, and to query time and system status.\n.rh \"Incomplete keying of alphanumeric data.\"\nIt is obviously going to be rather difficult for the operator to key\nalphanumeric information unambiguously on a 12-key pad.\nIn the description of the telephone enquiry service in Chapter 1,\nit was mentioned that single-key entry can be useful for alphanumeric data\nif the ambiguity can be resolved by the computer.\nIf a multiple-character entry is known to refer to an item on a given\nlist, the characters can be keyed directly according to the coding scheme\nof Figure 10.2.\n.pp\nUnder most circumstances no ambiguity will arise.\nFor example, Table 10.1 shows the keystrokes that would be entered for the\nfirst 50 5-letter words in an English dictionary.\nOnly two clashes occur \\(em between \" adore\" and \"afore\", and\n\"agate\" and \"agave\".\n.RF\n.nr x2 \\w'abeam  'u\n.nr x3 \\w'00000#    'u\n.nr x0 \\n(x2u+\\n(x3u+\\n(x2u+\\n(x3u+\\n(x2u+\\n(x3u+\\n(x2u+\\n(x3u+\\n(x2u+\\w'00000#'u\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\n(x2u +\\n(x3u +\\n(x2u +\\n(x3u +\\n(x2u +\\n(x3u +\\n(x2u +\\n(x3u +\\n(x2u\n\\l'\\n(x0u\\(ul'\n.sp\naback\t22225#\tabide\t22433#\tadage\t23243#\tadore\t23673#\tafter\t23837#\nabaft\t22238#\tabode\t22633#\tadapt\t23278#\tadorn\t23676#\tagain\t24246#\nabase\t22273#\tabort\t22678#\tadder\t23337#\tadult\t23858#\tagape\t24273#\nabash\t22274#\tabout\t22688#\taddle\t23353#\tadust\t23878#\tagate\t24283#\nabate\t22283#\tabove\t22683#\tadept\t23378#\taeger\t23437#\tagave\t24283#\nabbey\t22239#\tabuse\t22873#\tadieu\t23438#\taegis\t23447#\tagent\t24368#\nabbot\t22268#\tabyss\t22977#\tadmit\t23648#\taerie\t23743#\tagile\t24453#\nabeam\t22326#\tacorn\t22676#\tadmix\t23649#\taffix\t23349#\taglet\t24538#\nabele\t22353#\tacrid\t22743#\tadobe\t23623#\tafoot\t23668#\tagony\t24669#\nabhor\t22467#\tactor\t22867#\tadopt\t23678#\tafore\t23673#\tagree\t24733#\n\\l'\\n(x0u\\(ul'\n.in 0\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 10.1  Keying equivalents of some words\"\nAs a more extensive example, in a dictionary of 24,500 words, just under 2,000\nambiguities (8% of words) were discovered.\nSuch ambiguities would have to be resolved interactively by the system explaining\nits dilemma, and asking the user for a choice.\nNotice incidentally that although the keyed sequences do not have the same\nlexicographic order as the words,\nno extra cost will be associated with the table-searching\noperation if the dictionary is stored in inverted form, with each legal\nnumber pointing to its English equivalent or equivalents.\n.pp\nA command language syntax is also a powerful way of disambiguating\nkeystrokes entered.\nFigure 10.4 shows the keypad layout for a telephone voice calculator\n(Newhouse and Sibley, 1969).\n.[\nNewhouse Sibley 1969\n.]\n.FC \"Figure 10.4\"\nThis calculator provides the standard arithmetic operators,\nten numeric registers, a range of pre-defined mathematical functions,\nand even the ability for a user to enter his own functions over the\ntelephone.\nThe number representation is fixed-point, with user control (through a system\nfunction) over the precision.\nInput of numbers is free format.\n.pp\nDespite the power of the calculator language, the dialogue is defined\nso that each keystroke is unique in context and never has to be disambiguated\nexplicitly by the user.\nTable 10.2 summarizes the command language syntax in an informal and rather\nheterogeneous notation.\n.RF\n.nr x0 1.3i+1.7i+\\w'some functions do not need the <value> part'u\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta 1.3i +1.7i\n\\l'\\n(x0u\\(ul'\nconstruct\tdefinition\texplanation\n\\l'\\n(x0u\\(ul'\n.sp\n<calculation>\t\ta sequence of <operation>s followed by a\n\t\tcall to the system function  \\fIE  X  I  T\\fR\n.sp\n<operation>\t<add> OR <subtract> OR\n\t<multiply> OR <divide> OR\n\t<function> OR <clear> OR\n\t<erase> OR <answer> OR\n\t<display-last> OR <display> OR\n\t<repeat> OR <cancel>\n.sp\n<add>\t+  <value>  #  OR  +  #  <function>\n.sp\n<subtract>\n<multiply>\t\tsimilar to <add>\n<divide>\n.sp\n<value>\t<numeric-value>  OR  \\fIregister\\fR <single-digit>\n.sp\n<numeric-value>\t\ta sequence of keystrokes like\n\t\t1  .  2  3  4  or  1  2  3  .  4  or  1  2  3  4\n.sp\n<function>\t\\fIfunction\\fR <name>  #  <value>  #\n\t\tsome functions do not need the <value> part\n.sp\n<name>\t\ta sequence of keystrokes like\n\t\t\\fIS  I  N\\fR  or  \\fIE  X  I  T\\fR  or  \\fIM  Y  F  U  N  C\\fR\n.sp\n<clear>\t\\fIclear register\\fR <single-digit>  #\n\t\tclears one of the 10 registers\n.sp\n<erase>\t\\fIerase\\fR  #\tundoes the effect of the last operation\n.sp\n<answer>\t\\fIanswer register\\fR <single-digit>  #\n\t\treads the contents of a register\n.sp\n<display-last>\n<display>\t\tthese provide \"repeat\" facilities\n<repeat>\n.sp\n<cancel>\t\taborts the current utterance\n\\l'\\n(x0u\\(ul'\n.in 0\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 10.2  Syntax for a telephone calculator\"\nA calculation is a sequence of operations followed by an EXIT function call.\nThere are twelve different operations, one for each button on the keypad.\nActually, two of them \\(em\n.ul\ncancel\nand\n.ul\nfunction\n\\(em share the same key so that \"#\" can be reserved for use as a\nseparator; but the context ensures that they cannot be confused by the system.\n.pp\nSix of the operations give control over the dialogue.\nThere are three different \"repeat\" commands; a command (called\n.ul\nerase\\c\n)\nwhich undoes the effect of the last operation;\none which reads out the value of a register;\nand one which aborts the current utterance.\nFour more commands provide the basic arithmetic operations of add,\nsubtract, multiply, and divide.\nThe operands of these may be keyed literal numbers, or register values,\nor function calls.\nA further command clears a register.\n.pp\nIt is through functions that the extensibility of the language is achieved.\nA function has a name (like SIN, EXIT, MYFUNC) which is keyed with an\nappropriate single-key-per-character sequence (namely 746, 3948, 693862\nrespectively).\nOne function, DEFINE, allows new ones to be entered.\nAnother, LOOP, repeats sequences of operations.\nTEST incorporates arithmetic testing.\nThe details of these are not important:  what is interesting is the evident\npower of the calculator.\n.pp\nFor example, the keying sequence\n.LB\n.NI\n5  #  1  1  2  3  #  2  1  .  2  #  9  #  6  #  2  1  .  4  #\n.LE\nwould be decoded as\n.LB\n.NI\n.ul\nclear\\c\n  +  123  \\-  1.2  \\c\n.ul\ndisplay  erase\\c\n  \\-  1.4.\n.LE\nOne of the difficulties with such a tight syntax is that almost any sequence\nwill be intepreted as a valid calculation \\(em syntax errors are nearly\nimpossible.\nThus a small mistake by the user can have a catastrophic effect on the\ncalculation.\nHere, however, speech output gives an advantage over conventional\ncharacter-by-character echoing\non visual displays.\nIt is quite adequate to echo syntactic units as they are decoded, instead\nof echoing keys as they are entered.\nIt was suggested earlier in this chapter that confirmation of entry\nshould be generated in the same way that the user would be likely to\nverbalize it himself.\nThus the synthetic voice could respond to the above keying sequence as\nshown in the second line, except that the\n.ul\ndisplay\ncommand would also state the result\n(and possibly summarize the calculation so far).\nNumbers could be verbalized as \"one hundred and twenty-three\"\ninstead of as \"one ... two ... three\".\n(Note, however, that this will make it necessary to await the \"#\" terminator\nafter numbers and function names before they can be echoed.)\n.sh \"10.4  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.sh \"10.5  Further reading\"\n.pp\nThere are no books which relate techniques of man-computer dialogue\nto speech interaction.\nThe best I can do is to guide you to some of the standard works on\ninteractive techniques.\n.LB \"nn\"\n.\\\"Gilb-1977-1\n.]-\n.ds [A Gilb, T.\n.as [A \" and Weinberg, G.M.\n.ds [D 1977\n.ds [T Humanized input\n.ds [I Winthrop\n.ds [C Cambridge, Massachusetts\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nThis book is subtitled \"techniques for reliable keyed input\",\nand considers most aspects of the problem of data entry by\nprofessional key operators.\n.in-2n\n.\\\"Martin-1973-2\n.]-\n.ds [A Martin, J.\n.ds [D 1973\n.ds [T Design of man-computer dialogues\n.ds [I Prentice-Hall\n.ds [C Englewood Cliffs, New Jersey\n.nr [T 0\n.nr [A 1\n.nr [O 0\n.][ 2 book\n.in+2n\nMartin concerns himself with all aspects of man-computer dialogue,\nand the book even contains a short chapter on  the use of\nvoice response systems.\n.in-2n\n.\\\"Smith-1980-3\n.]-\n.ds [A Smith, H.T.\n.as [A \" and Green, T.R.G.(Editors)\n.ds [D 1980\n.ds [T Human interaction with computers\n.ds [I Academic Press\n.ds [C London\n.nr [T 0\n.nr [A 0\n.nr [O 0\n.][ 2 book\n.in+2n\nA recent collection of contributions on man-computer systems and programming\nresearch.\n.in-2n\n.LE \"nn\"\n.EQ\ndelim $$\n.EN\n.CH \"11  COMMERCIAL SPEECH OUTPUT DEVICES\"\n.ds RT \"Commercial speech output devices\n.ds CX \"Principles of computer speech\n.pp\nThis chapter takes a look at four speech output peripherals that are\navailable today.\nIt is risky in a book of this nature to descend so close to the technology\nas to discuss particular examples of commercial products,\nfor such information becomes dated very quickly.\nNevertheless, having covered the principles of various types of speech\nsynthesizer, and the methods of driving them from widely differing utterance\nrepresentations, it seems worthwhile to see how these principles are\nembodied in a few products actually on the market.\n.pp\nDevelopments in electronic speech devices are moving so fast that it is\nhard to keep up with them, and the newest technology today will undoubtedly\nbe superseded next year.\nHence I have not tried to choose examples from the very latest technology.\nInstead, this chapter discusses synthesizers which exemplify rather different\nprinciples and architectures, in order to give an idea of the range of options\nwhich face the system designer.\n.pp\nThree of the devices are landmarks in the commercial adoption of speech\ntechnology, and have stood the test of time.\nVotrax was introduced in the early 1970's, and has been re-implemented\nseveral times since in an attempt to cover different market sectors.\nThe Computalker appeared in 1976.\nIt was aimed primarily at the burgeoning computer hobbies market.\nOne of its most far-reaching effects was to stimulate the interest of\nhobbyists, always eager for new low-cost peripherals, in speech synthesis;\nand so provide a useful new source of experimentation and expertise\nwhich will undoubtedly help this heretofore rather esoteric discipline to\nmature.\nComputalker is certainly the longest-lived and probably still the most\npopular hobbyist's speech synthesizer.\nThe Texas Instruments speech synthesis chip brought speech output technology to the\nconsumer.\nIt was the first single-chip speech synthesizer, and is still the biggest\nseller.\nIt forms the heart of the \"Speak 'n Spell\" talking toy which appeared in\ntoyshops in the summer of 1978.\nAlthough talking calculators had existed several years before, they were\nexotic gadgets rather than household toys.\n.sh \"11.1  Formant synthesizer\"\n.pp\nThe Computalker is a straightforward implementation of a serial formant\nsynthesizer.\nA block diagram of it is shown in Figure 11.1.\n.FC \"Figure 11.1\"\nIn the centre is the main vocal tract path, with three formant filters\nwhose resonant frequencies can be controlled individually.\nA separate nasal branch in parallel with the oral one is provided,\nwith a nasal formant of fixed frequency.\nIt is less important to allow for variation of the nasal formant\nfrequency than it is for the oral ones, because the size and\nshape of the nasal tract is relatively fixed.\nHowever, it is essential to control the nasal amplitude, in particular to turn\nit off during non-nasal sounds.\nComputalker provides independent oral and nasal amplitude parameters.\n.pp\nUnvoiced excitation can be passed through the main vocal tract\nthrough the aspiration amplitude control AH.\nIn practice, the voicing amplitudes AV and AN will probably always be zero when AH\nis non-zero, for physiological constraints prohibit simultaneous voicing\nand aspiration.\nA second unvoiced excitation path passes through a fricative formant filter\nwhose resonant frequency can be varied, and has its amplitude independently\ncontrolled by AF.\n.rh \"Control parameters.\"\nTable 11.1 summarizes the nine parameters which drive Computalker.\n.RF\n.nr x0 \\w'address0'+\\w'fundamental frequency of voicing00'+\\w'0 bits0'+\\w'logarithmic00'+\\w'0000\\-00000 Hz'\n.nr x1 (\\n(.l-\\n(x0)/2\n.in \\n(x1u\n.ta \\w'000'u \\w'address0'u +\\w'fundamental frequency of voicing00'u +\\w'0 bits0'u +\\w'logarithmic00'u\naddress\tmeaning\twidth\t\t\\0\\0\\0range\n\\l'\\n(x0u\\(ul'\n.sp\n\\00\tAV\tamplitude of voicing\t8 bits\n\\01\tAN\tnasal amplitude\t8 bits\n\\02\tAH\tamplitude of aspiration\t8 bits\n\\03\tAF\tamplitude of frication\t8 bits\n\\04\tFV\tfundamental frequency of voicing\t8 bits\tlogarithmic\t\\0\\075\\-\\0\\0470 Hz\n\\05\tF1\tformant 1 resonant frequency\t8 bits\tlogarithmic\t\\0170\\-\\01450 Hz\n\\06\tF2\tformant 2 resonant frequency\t8 bits\tlogarithmic\t\\0520\\-\\04400 Hz\n\\07\tF3\tformant 3 resonant frequency\t8 bits\tlogarithmic\t1700\\-\\05500 Hz\n\\08\tFF\tfricative resonant frequency\t8 bits\tlogarithmic\t1700\\-14000 Hz\n\\09\t\tnot used\n10\t\tnot used\n11\t\tnot used\n12\t\tnot used\n13\t\tnot used\n14\t\tnot used\n15\tSW\taudio on-off switch\t1 bit\n\\l'\\n(x0u\\(ul'\n.in 0\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.FG \"Table 11.1  Computalker control parameters\"\nFour of them control amplitudes, while the others control frequencies.\nIn the latter case the parameter value is logarithmically related to\nthe actual frequency of the excitation (FV) or resonance (F1, F2, F3, FF).\nThe ranges over which each frequency can be controlled is shown in the Table.\nAn independent calibration of one particular Computalker has shown that\nthe logarithmic specifications are met remarkably well.\n.pp\nEach parameter is specified to Computalker as an 8-bit number.\nParameters are addressed by a 4-bit code, and so a total of 12 bits\nis transferred in parallel to Computalker from the computer\nfor each parameter update.\nParameters 9 to 14 are unassigned (\"reserved for future expansion\" is\nthe official phrase), and the last parameter, SW, governs the position of\nan audio on-off switch.\n.pp\nComputalker does not contain a clock that is accessible to the user,\nand so the timing of parameter updates is entirely up to the host computer.\nTypically, a 10\\ msec interval between frames is used,\nwith interrupts generated by a separate timer.\nIn fact the frame interval can be anywhere between 2\\ msec and 50\\ msec,\nand can be changed to alter the rate of speaking.\nHowever, it is rather naive to view fast speech as slow\nspeech speeded up by a linear time compression, for in human\nspeech production the rhythm changes and elisions occur in a rather\nmore subtle way.\nThus it is not particularly useful to be able to alter the frame rate.\n.pp\nAt each interrupt, the host computer transfers values for all of the nine\nparameters to Computalker, a total of 108 data bits.\nIn theory, perhaps, it is only necessary to transmit those parameters\nwhose values have changed; but in practice all of them should be updated\nregardless.\nThis is because the parameters are stored for the duration of the frame\nin analogue sample-and-hold devices.  Essentially, the parameter value\nis represented as the charge on a capacitor.\nIn time \\(em and it takes only a short time \\(em the values drift.\nAlthough the drift over 10\\ msec is insignificant, it becomes very\nnoticeable over longer time periods.\nIf parameters are not updated at all, the result is a\n\"whooosh\" sound up to maximum amplitude, in a period of a second or two.\nHence it is essential that Computalker be serviced by the computer regularly,\nto update all its parameters.\nThe audio on-off switch is provided so that the computer can turn off\nthe sound directly if another program, which does not use the device,\nis to be run.\n.rh \"Filter implementation.\"\nIt is hard to get definite information on the implementation\nof Computalker.\nBecause it is a commercial device, circuit diagrams are not published.\nIt is certainly an analogue rather than a digital implementation.\nThe designer suggests that a configuration like that of Figure 11.2 is used\nfor the formant filters (Rice, 1976).\n.[\nRice 1976 Byte\n.]\n.FC \"Figure 11.2\"\nControl is obtained over the resonant frequency by varying the resistance\nat the bottom in sympathy with the parameter value.\nThe middle two operational amplifiers can be modelled by a resistance\n$-R/k$ in the forward path, where k is the digital control value.\nThis gives the circuit in Figure 11.3, which can be analysed to obtain\nthe transfer function\n.LB\n.EQ\n- ~ k over {R~R sub 1 C sub 2 C sub 3} ~ . ~ {R sub 2 C sub 2 ~s ~+~1} over\n{ s sup 2 ~+~~\n( 1 over {R sub 3 C sub 3} ~+~ {k R sub 2} over {R~R sub 1 C sub 3})~s ~~+~\nk over {R~R sub 1 C sub 2 C sub 3}} ~ .\n.EN\n.LE\n.FC \"Figure 11.3\"\n.pp\nThis expression has a DC gain of \\-1, and the denominator is similar to those\nof the analogue formant resonators discussed in Chapter 5.\nHowever, unlike them the transfer function has a numerator which creates\na zero at\n.LB\n.EQ\ns~~=~~-~ 1 over {R sub 2 C sub 2} ~ .\n.EN\n.LE\nIf  $R sub 2 C sub 2$  is sufficiently small, this zero will have\nnegligible effect at audio frequencies, and the filter has\nthe following parameters:\n.LB\ncentre frequency:    $~ mark\n1 over {2 pi}~~( k over {R~R sub 1 C sub 2 C sub 3} ~ ) sup 1/2$  Hz\n.sp\nbandwidth:$lineup\n1 over {2 pi}~~( 1 over {R sub 3 C sub 3}~+~\n{k R sub 2} over {R~R sub 1 C sub 3} ~ )$  Hz.\n.LE\n.pp\nNote first that the centre frequency is proportional to the square root of\nthe control value $k$.\nHence a non-linear transformation must be implemented on the control\nsignal, after D/A conversion, to achieve the required logarithmic relationship\nbetween parameter value and resonant frequency.\nThe formant bandwidth is not constant, as it should be (see Chapter 5),\nbut depends upon the control value $k$.\nThis dependency can be minimized by selecting component values such that\n.LB\n.EQ\n{k R sub 2} over {R~R sub 1 C sub 3}~~<<~~1 over {R sub 3 C sub 3}\n.EN\n.LE\nfor the largest value of $k$ which can occur.\nThen the bandwidth is solely determined by the time constant  $R sub 3 C sub 3$.\n.pp\nThe existence of the zero can be exploited for the fricative resonance.\nThis should have zero DC gain, and so the component values for the fricative\nfilter should make the time-constant  $R sub 2 C sub 2$  large enough to place\nthe zero sufficiently near the frequency origin.\n.rh \"Market orientation.\"\nAs mentioned above, Computalker is designed for the computer hobbies market.\nFigure 11.4 shows a photograph of the device.\n.FC \"Figure 11.4\"\nIt plugs into the S\\-100 bus which has been a\n.ul\nde facto\nstandard for hobbyists for several years, and has recently been adopted\nas a standard by the Institute of Electrical and Electronic Engineers.\nThis makes it immediately accessible to many microcomputer systems.\n.pp\nAn inexpensive synthesis-by-rule program, which runs on\nthe popular 8080 microprocessor, is available to drive Computalker.\nThe input is coded in a machine-readable version of the standard phonetic\nalphabet, similar to that which was introduced in Chapter 2 (Table 2.1).\nStress digits may appear in the transcription, and the program caters for\nfive levels of stress.\nThe punctuation mark at the end of an utterance has some effect on pitch.\nThe program is perhaps remarkable in that it occupies only 6\\ Kbyte of storage\n(including phoneme tables), and runs on an 8-bit microprocessor\n(but not in real time).\nIt is, however,\n.ul\nun\\c\nremarkable in that it produces rather poor speech.\nAccording to a demonstration cassette,\n\"most people find the speech to be readily intelligible,\nespecially after a little practice listening to it,\"\nbut this seems extremely optimistic.\nIt also cunningly insinuates that if you don't understand it, you yourself\nmay share the blame with the synthesizer \\(em after all,\n.ul\nmost\npeople do!\nNevertheless, Computalker has made synthetic speech accessible to a large\nnumber of home computer users.\n.sh \"11.2  Sound-segment synthesizer\"\n.pp\nVotrax was the first fully commercial speech synthesizer, and at the time of\nwriting is still the only off-the-shelf speech output\nperipheral (as distinct from reading machine) which is aimed\nspecifically at synthesis-by-rule rather than storage of parameter tracks\nextracted from natural utterances.\nFigure 11.5 shows a photograph of the Votrax ML-I.\n.FC \"Figure 11.5\"\n.pp\nVotrax accepts as input a string of codes representing sound segments,\neach with additional bits to control the duration and pitch of the segment.\nIn the earlier versions (eg model VS-6) there are 63 sound segments, specified\nby a 6-bit code, and two further bits accompany each segment to provide a\n4-level control over pitch.\nFour pitch levels are quite inadequate to generate acceptable intonation\ncontours for anything but isolated words spoken in citation form.\nHowever, a later model (ML-I) uses an 8-level pitch specification,\nas well as a 4-level duration qualifier,\nassociated with each sound segment.\nIt provides a vocabulary of 80 sound segments, together with an additional\ncode which allows local amplitude modifications and extra duration alterations\nto following segments.\nA further, low-cost model (VS-K) is now available which plugs in to the S\\-100\nbus, and\nis aimed primarily at\ncomputer hobbyists.\nIt provides no pitch control at all and is therefore\nquite unsuited to serious voice response applications.\nThe device has recently been packaged as an LSI circuit (model SC\\-01),\nusing analogue switched-capacitor filter technology.\n.pp\nOne point where the ML-I scores favourably over other speech synthesis\nperipherals is the remarkably convenient engineering of its\ncomputer interface, which was outlined in the previous chapter.\n.pp\nThe internal workings of Votrax are not divulged by the manufacturer.\nFigure 11.6 shows a block diagram at the level of detail that they supply.\n.FC \"Figure 11.6\"\nIt seems to be essentially a formant synthesizer with analogue function\ngenerators and parameter smoothing circuits that provide transitions between\nsound segments.\n.rh \"Sound segments.\"\nThe 80 segments of the high-range ML-I model\nare summarized in Table 11.2.\n.FC \"Table 11.2\"\nThey are divided into phoneme classes according to the\nclassification discussed in Chapter 2.\nThe segments break down into the following categories.\n(Numbers in parentheses are the corresponding figures for VS-6.)\n.LB \"00 (00) \"\n.NI \"00 (00) \"\n11 (11) vowel sounds which are representative of the phonological\nvowel classes for English\n.NI \"00 (00) \"\n\\09 \\0(7) vowel allophones, with slightly different sound qualities from the\nabove\n.NI \"00 (00) \"\n20 (15) segments whose sound qualities are identical to the segments above, but with\ndifferent durations\n.NI \"00 (00) \"\n22 (22) consonant sounds which are representative of the phonological\nconsonant classes for English\n.NI \"00 (00) \"\n11 \\0(6) consonant allophones\n.NI \"00 (00) \"\n\\04 \\0(0) segments to be used in conjunction with unvoiced plosives to increase\ntheir aspiration\n.NI \"00 (00) \"\n\\02 \\0(2) silent segments, with different pause durations\n.NI \"00 (00) \"\n\\01 \\0(0) very short silent segment (about 5\\ msec).\n.LE \"00 (00) \"\nSomewhat under half of the 80 elements\ncan be put into one-to-one correspondence with the phonemes of English;\nthe rest are either allophonic variations or additional sounds which can\nsensibly be combined with certain phonemes in certain contexts.\nThe Votrax literature, and consequently Votrax users, persists in calling\nall elements \"phonemes\", and this can cause considerable confusion.\nI prefer to use the term \"sound segment\" instead, reserving \"phoneme\" for its\nproper linguistic use.\n.pp\nThe rules which Votrax uses for transitions between sound segments are not\nmade public by the manufacturer, and are embedded in encapsulated circuits\nin the hardware.\nThey are clearly very crude.\nThe key to successful encoding of utterances is to use the many\nnon-phonemic segments in an appropriate way as transitions between the main\nsegments which represent phonetic classes.  This is a tricky process, and\nI have heard of one commercial establishment giving up in despair at the\nextreme difficulty of generating the utterances it wanted.\nIt probably explains the proliferation of letter-to-sound rules for\nVotrax which have been developed in research laboratories\n(Colby\n.ul\net al,\n1978; Elovitz\n.ul\net al,\n1976; McIlroy, 1974; Sherwood, 1978).\n.[\nColby Christinaz Graham 1978\n.]\n.[\nElovitz 1976 IEEE Trans Acoustics Speech and Signal Processing\n.]\n.[\nMcIlroy 1974\n.]\n.[\nSherwood 1978\n.]\nNevertheless, with luck, skill, and especially persistence,\nexcellent results can be\nobtained.  The ML-I manual (Votrax, 1976) contains a list of about 625 words and short phrases,\nand they are usually clearly recognizable.\n.[\nVotrax 1976\n.]\n.rh \"Duration and pitch qualifiers.\"\nEach sound segment has a different duration.\nTable 11.2 shows the measured duration of the segments, although no\ncalibration data is given by Votrax.\nAs mentioned earlier, a 2-bit number accompanies each segment to modify\nits duration, and\nthis was set to 3 (least duration) for the measurements.\nThe qualifier has a multiplicative effect, shown in Table 11.3.\n.RF\n.nr x1 (\\w'rate qualifier'/2)\n.nr x2 (\\w'in Table 11.2 by'/2)\n.nr x0 \\n(x1+2i+\\w'00'+\\n(x2\n.nr x3 (\\n(.l-\\n(x0)/2\n.in \\n(x3u\n.ta \\n(x1u +2i\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x2 (\\w'multiply duration'/2)\nrate qualifier\t\t\\0\\0\\h'-\\n(x2u'multiply duration\n.nr x2 (\\w'in Table 11.2 by'/2)\n\t\t\\0\\0\\h'-\\n(x2u'in Table 11.2 by\n\\l'\\n(x0u\\(ul'\n.sp\n\t3\t1.00\n\t2\t1.11\n\t1\t1.22\n\t0\t1.35\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 11.3  Effect of the 2-bit per-segment rate qualifier\"\n.pp\nAs well as the 2-bit rate qualifier, each sound segment is accompanied by\na 3-bit pitch specification.  This provides a linear control over fundamental\nfrequency, and Table 11.4 shows the measured values.\n.RF\n.nr x1 (\\w'pitch specifier'/2)\n.nr x2 (\\w'pitch (Hz)'/2)\n.nr x0 \\n(x1+1.5i+\\n(x2\n.nr x3 (\\n(.l-\\n(x0)/2\n.in \\n(x3u\n.ta \\n(x1u +1.5i\n\\l'\\n(x0u\\(ul'\n.sp\npitch specifier\t\\h'-\\n(x2u'pitch (Hz)\n\\l'\\n(x0u\\(ul'\n.sp\n\t0\t\\057.5\n\t1\t\\064.1\n\t2\t\\069.4\n\t3\t\\075.8\n\t4\t\\080.6\n\t5\t\\087.7\n\t6\t\\094.3\n\t7\t100.0\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 11.4  Effect of the 3-bit per-segment pitch specifier\"\nThe quantization interval varies from\none to two semitones.\nVotrax interpolates pitch from phoneme to phoneme in a highly satisfactory\nmanner, and this permits surprisingly sophisticated intonation contours\nto be generated considering the crude 8-level quantization.\n.pp\nThe notation in which the Votrax manual defines utterances\ngives duration qualifiers and pitch specifications as digits\npreceding the sound segment, and separated from it by a slash (/).\nThus, for example,\n.LB\n14/THV\n.LE\ndefines the sound segment THV with duration qualifier 1 (multiplies the\n70\\ msec duration of Table 11.2 by 1.22 \\(em from Table 11.3 \\(em to give 85\\ msec)\nand pitch specification 4 (81 Hz).\nThis representation of a segment is transformed into two ASCII characters before transmission\nto the synthesizer.\n.rh \"Converting a phonetic transcription to sound segments.\"\nIt would be useful to have a computer procedure to produce a specification for\nan utterance in terms of Votrax sound segments from a standard phonetic\ntranscription.\nThis could remove much of the tedium from utterance preparation\nby incorporating the contextual rules given in the Votrax manual.\nStarting with a phonetic transcription, each phoneme should be converted\nto its default Votrax representative.\nThe resulting \"wide\" Votrax transcription must be\ntransformed into a \"narrow\" one by application of contextual rules.\nSeparate rules are needed for\n.LB\n.NP\nvowel clusters (diphthongs)\n.NP\nvowel transitions (ie consonant-vowel and vowel-consonant,\nwhere the vowel segment is altered)\n.NP\nintervocalic consonants\n.NP\nconsonant transitions (ie consonant-vowel and vowel-consonant,\nwhere the consonant segment is altered)\n.NP\nconsonant clusters\n.NP\nstressed-syllable effects\n.NP\nutterance-final effects.\n.LE\nStressed-syllable effects (which include\nextra aspiration for unvoiced stops beginning stressed syllables)\ncan be applied only if stress markers are included in the phonetic\ntranscription.\n.pp\nTo specify a rule, it is necessary to give a\n.ul\nmatching part\nand a\n.ul\ncontext,\nwhich define at what points in an utterance it is applicable, and a\n.ul\nreplacement part\nwhich is used to replace the matching part.\nThe context can be specified in mathematical set notation using curly brackets.\nFor example,\n.LB\n{G SH W K} OO\t\tIU OO\n.LE\nstates that the matching part OO is replaced by IU OO, after a G, SH, W, or K.\nIn fact, allophonic variations of each sound segment\nshould also be accepted as valid context, so this rule will also replace OO\nafter .G, CH, .W, .K, or .X1 (Table 11.2 gives allophones of each segment).\n.pp\nTable 11.5 gives some rules that have been used for this purpose.\n.FC \"Table 11.5\"\nThey were derived from careful study of the hints given in the\nML-I manual (Votrax, 1976).\n.[\nVotrax 1976\n.]\nClasses such as \"voiced\" and \"stop-consonant\" in the context specify sets\nof sound segments in the obvious way.\nThe beginning of a stressed syllable is marked in the input by \".syll\".\nParentheses in the replacement part have a significance which is explained in\nthe next section.\n.rh \"Handling prosodic features.\"\nWe know from Chapter 8 the vital importance of prosodic features\nin synthesizing lifelike speech.\nTo allow them to be assigned to Votrax utterances, an intermediate\noutput from a prosodic analysis program like ISP can be used.\nFor example,\n.LB\n1  \\c\n.ul\ndh i s  i z  /*d zh aa k s  /h aa u s;\n.LE\nwhich specifies \"this is Jack's house\" in a declarative intonation with\nemphasis on the \"Jack's\", can be intercepted in the following form:\n.LB\n\\&.syll\n.ul\ndh\\c\n\\ 50\\ (0\\ 110)\n.ul\ni\\c\n\\ 60\n.ul\ns\\c\n\\ 90\\ (0\\ 99)\n.ul\ni\\c\n\\ 60\n.ul\nz\\c\n\\ 60\\ (50\\ 110)\n\\&.syll\n.ul\nd\\c\n\\ 50\\ (0\\ 110)\n.ul\nzh\\c\n\\ 50\n.ul\naa\\c\n\\ 90\n.ul\nk\\c\n\\ 120\\ (10\\ 90)\n.ul\ns\\c\n\\ 90\n\\&.syll\n.ul\nh\\c\n\\ 60\n.ul\naa\\c\n\\ 140\n.ul\nu\\c\n\\ 60\n.ul\ns\\c\n\\ 140\n^\\ 50\\ (40\\ 70) .\n.LE\nSyllable boundaries, pitches, and durations have been assigned by the\nprocedures given earlier (Chapter 8).\nA number always follows each phoneme to specify its duration\n(in msec).\nPairs of numbers in parentheses define a pitch specification at some\npoint during the preceding phoneme:  the first number of the pair defines\nthe time offset of the specification from the beginning\nof the phoneme, while the second gives the pitch itself (in Hz).\nThis form of utterance specification can then be passed to a Votrax\nconversion procedure.\n.pp\nThe phonetic transcription is converted\nto Votrax sound segments using the method described above.  The \"wide\" Votrax\ntranscription is\n.LB\n\\&.syll THV I S I Z .syll D ZH AE K S .syll H AE OO S PA0 ;\n.LE\nwhich is transformed to the following \"narrow\" one according to the rules\nof Table 11.5:\n.LB\n\\&.syll THV I S I Z .syll D J (AE EH3) K S .syll H1 (AH1 .UH2) (O U)\nS PA0 .\n.LE\nThe duration and pitch specifications are preserved by the transformation\nin their original positions in the string, although they are not shown above.\nThe next stage uses them to expand the transcription by adjusting\nthe segments to have durations as close as possible to the specifications, and\ncomputing pitch numbers to be associated with each phoneme.\n.pp\nCorrect duration-expansion can, in general, require a great amount of\ncomputation.\nAssociated with each sound segment is a set of elements with the same sound quality\nbut different durations, formed by attaching each of the four duration\nqualifiers of Table 11.3 to the segment and any others which are\nsound-equivalents to it.  For example, the segment Z has the duration-set\n.LB\n{3/Z   2/Z   1/Z   0/Z}\n.LE\nwith durations\n.LB\n{ 70   78   85   95}\n.LE\nmsec respectively, where the initial numerals denote the duration qualifier.\nThe segment I has the much larger duration-set\n.LB\n{3/I2   2/I2   1/I2   0/I2   3/I1   2/I1   1/I1   0/I1   3/I   2/I   1/I   0/I}\n.LE\nwith durations\n.LB\n{ 58   64   71   78   83   92   101   112   118   131   144   159},\n.LE\nbecause segments I1 and I2 are sound-equivalents to it.\nDuration assignment is a matter of selecting elements from the\nduration-set whose total duration is as close as possible to that desired\nfor the segment.\nIt happens that Votrax deals sensibly with concatenations of more than one\nidentical plosive, suppressing the stop burst on all but the last.\nAlthough the general problem of approximating durations in\nthis way is computationally demanding, a simple recursive exhaustive search\nworks in a reasonable amount of time because the desired duration is usually\nnot very much greater than the longest member of the duration-set, and so\nthe search terminates quite quickly.\n.pp\nAt this point, the role of the parentheses which appear on the right-hand side\nof Table 11.5 becomes apparent.  Because durations are only associated with\nthe input phonemes, which may each be expanded into several Votrax\nsegments, it is necessary to keep track of the segments which have descended\nfrom a single phoneme.\nTarget durations are simply spread equally across any parenthesized groups\nto which they apply.\n.pp\nHaving expanded durations, mapping pitches on to the sound segments is\na simple matter.  The ISP system for formant synthesizers (Chapters 7 and 8)\nuses linear interpolation between pitch specifications, and the frequency which\nresults for each sound segment needs to be converted to a Votrax specification\nusing the information in Table 11.4.\n.pp\nAfter applying these procedures to the example utterance, it becomes\n.LB\n14/THV  14/I1  03/S  14/I1  04/Z  04/D  04/J  33/AE  33/EH3  \\c\n02/K  02/K  02/S  02/H1  01/AH2  01/.UH2  31/O2  31/U1  01/S  \\c\n10/S  30/PA0  30/PA0  .\n.LE\nIn several places, shorter sound-equivalents have been substituted\n(I1 for I, AH2 for AH1, O2 for O, and U1 for U), while doubling-up also occurs\n(in the K, S, and PA0 segments).\n.pp\nThe speech which results from the use of these procedures with the\nVotrax synthesizer sounds remarkably similar to that generated by the\nISP system which uses\nparametrically-controlled synthesizers.  Formal evaluation experiments have\nnot been undertaken, but it seems clear from careful listening that it would\nbe rather difficult, and probably pointless, to evaluate the Votrax conversion\nalgorithm, for the outcome would be completely dominated by the success of the\noriginal pitch and rhythm assignment procedures.\n.sh \"11.3  Linear predictive synthesizer\"\n.pp\nThe first single-chip speech synthesizer was introduced by\nTexas Instruments (TI) in the summer of 1978 (Wiggins and Brantingham, 1978).\n.[\nWiggins Brantingham 1978\n.]\nIt was a remarkable development, combining recent advances in signal processing\nwith the very latest in VLSI technology.\nPackaged in the Speak 'n Spell toy (Figure 11.7), it was a striking demonstration\nof imagination and prowess in integrated electronics.\n.FC \"Figure 11.7\"\nIt gave TI a long lead over its competitors and surprised many experts\nin the speech field.\n.EQ\ndelim @@\n.EN\nOvernight, it seemed, digital speech technology had descended from\nresearch laboratories with their expensive and specialized equipment into\na $50.00 consumer item.\n.EQ\ndelim $$\n.EN\nNaturally TI did not sell the chip separately but only as part of their\nmass-market product; nor would they make available information on how to\ndrive it directly.\nOnly recently when other similar devices appeared on the market did they\nunbundle the package and sell the chip.\n.rh \"The Speak 'n Spell toy.\"\nThe TI chip (TMC0280) uses the linear predictive method of synthesis,\nprimarily because of the ease of the speech analysis procedure and the known\nhigh quality at low data rates.\nSpeech researchers, incidentally, sometimes scoff at what they perceive to be\nthe poor quality of the toy's speech; but considering the data rate\nused (which averages 1200 bits per second of speech) it is remarkably good.\nAnyway, I have never heard a child complain! \\(em although it is not uncommon\nto misunderstand a word.\nTwo 128\\ Kbit read-only memories are used in the toy to hold data for about\n330 words and phrases \\(em lasting between 3 and 4 minutes \\(em of speech.\nAt the time (mid-1978) these memories were the largest that were available\nin the industry.\nThe data flow and user dialogue are handled by a microprocessor,\nwhich is the fourth LSI circuit in the photograph of Figure 11.8.\n.FC \"Figure 11.8\"\n.pp\nA schematic diagram of the toy is given in Figure 11.9.\n.FC \"Figure 11.9\"\nIt has a small display which shows upper-case letters.\n(Some teachers of spelling hold that the lack of lower case destroys\nany educational value that the toy may have.)  It\nhas a full 26-key alphanumeric keyboard with 14 additional control keys.\n(This is the toy's Achilles' heel, for the keys fall out after extended use.\nMore recent toys from TI use an improved keyboard.)  The\nkeyboard is laid out alphabetically instead of in QWERTY order; possibly\nmissing an opportunity to teach kids to type as well as spell.\nAn internal connector permits vocabulary expansion with up to 14 more\nread-only memory chips.\nControlling the toy is a 4-bit microprocessor (a modified TMS1000).\nHowever, the synthesizer chip does not receive data from the processor.\nDuring speech, it accesses the memory directly and only returns control\nto the processor when an end-of-phrase marker is found in the data stream.\nMeanwhile the processor is idle, and cannot even be interrupted from the\nkeyboard.\nMoreover, in one operational mode (\"say-it\") the toy embarks upon a long\nmonologue and remains deaf to the keyboard \\(em it cannot even be turned off.\nAny three-year-old will quickly discover that a sharp slap solves the problem!\nA useful feature is that the device switches itself off if unused for more\nthan a few minutes.\nA fascinating account of the development of the toy from the point of view\nof product design and market assessment has been published\n(Frantz and Wiggins, 1981).\n.[\nFrantz Wiggins 1981\n.]\n.rh \"Control parameters.\"\nThe lattice filtering method of linear predictive synthesis (see Chapter 6)\nwas selected because of its good stability properties and guaranteed\nperformance with small word sizes.\nThe lattice has 10 stages.\nAll the control parameters are represented as 10-bit fixed-point numbers,\nand the lattice operates with an internal precision of 14 bits (including\nsign).\n.pp\nThere are twelve parameters for the device:  ten reflection coefficients,\nenergy, and pitch.\nThese are updated every 20\\ msec.\nHowever, if 10-bit values were stored for each, a data rate of 120 bits\nevery 20\\ msec, or 6\\ Kbit/s, would be needed.\nThis would reduce the capacity of the two read-only memory chips to well\nunder a minute of speech \\(em perhaps 65 words and phrases.\nBut one of the desirable properties of the reflection coefficients\nwhich drive the lattice filter is that they are amenable to quantization.\nA non-linear quantization scheme is used, with the parameter data addressing\nan on-chip quantization table to yield a 10-bit coefficient.\n.pp\nTable 11.6 shows the number of bits devoted to each parameter.\n.RF\n.in+0.3i\n.ta \\w'repeat flag00'u +1.3i +0.8i\n.nr x0 \\w'repeat flag00'+1.3i+\\w'00'+(\\w'size (10-bit words)'/2)\n\\l'\\n(x0u\\(ul'\n.nr x1 (\\w'bits'/2)\n.nr x2 (\\w'quantization table'/2)\n.nr x3 0.2m\nparameter\t\\0\\h'-\\n(x1u'bits\t\\0\\0\\h'-\\n(x2u'quantization table\n.nr x2 (\\w'size (10-bit words)'/2)\n\t\t\\0\\0\\h'-\\n(x2u'size (10-bit words)\n\\l'\\n(x0u\\(ul'\n.sp\nenergy\t\\04\t\\016\t\\v'\\n(x3u'_\\v'-\\n(x3u'\\z4\\v'\\n(x3u'_\\v'-\\n(x3u'  energy=0 means 4-bit frame\npitch\t\\05\t\\032\nrepeat flag\t\\01\t\\0\\(em\t\\z1\\v'\\n(x3u'_\\v'-\\n(x3u'\\z0\\v'\\n(x3u'_\\v'-\\n(x3u'  repeat flag =1 means 10-bit frame\nk1\t\\05\t\\032\nk2\t\\05\t\\032\nk3\t\\04\t\\016\nk4\t\\04\t\\016\t\\z2\\v'\\n(x3u'_\\v'-\\n(x3u'\\z8\\v'\\n(x3u'_\\v'-\\n(x3u'  pitch=0 (unvoiced) means 28-bit frame\nk5\t\\04\t\\016\nk6\t\\04\t\\016\nk7\t\\04\t\\016\nk8\t\\03\t\\0\\08\nk9\t\\03\t\\0\\08\nk10\t\\03\t\\0\\08\t\\z4\\v'\\n(x3u'_\\v'-\\n(x3u'\\z9\\v'\\n(x3u'_\\v'-\\n(x3u'  otherwise 49-bit frame\n\t__\t___\n.sp\n\t49 bits\t216 words\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in-0.3i\n.FG \"Table 11.6  Bit allocation for Speak 'n Spell chip\"\nThere are 4 bits for energy, and 5 bits for pitch and the first two\nreflection coefficients.\nThereafter the number of bits allocated to reflection coefficients decreases\nsteadily, for higher coefficients are less important for intelligibility\nthan lower ones.\n(Note that using a 10-stage filter is tantamount to allocating\n.ul\nno\nbits to coefficients higher than the tenth.)  With a\n1-bit \"repeat\" flag, whose role is discussed shortly, the frame size\nbecomes 49 bits.\nUpdated every 20\\ msec, this gives a data rate of just under 2.5\\ Kbit/s.\n.pp\nThe parameters are expanded into 10-bit numbers by a separate quantization\ntable for each one.\nFor example, the five pitch bits address a 32-word look-up table which\nreturns a 10-bit value.\nThe transformation is logarithmic in this case, the lowest pitch being\naround 50 Hz and the highest 190 Hz.\nAs shown in Table 11.6, a total of 216 10-bit words suffices to hold all\ntwelve quantization tables; and they are implemented on the synthesizer\nchip.\nTo provide further smoothing of the control parameters,\nthey are interpolated linearly from one frame to the next at eight points\nwithin the frame.\n.pp\nThe raw data rate of 2.5\\ Kbit/s is reduced to an average of 1200\\ bit/s\nby further coding techniques.\nFirstly, if the energy parameter is zero the frame is silent,\nand no more parameters are transmitted (4-bit frame).\nSecondly, if the \"repeat\" flag is 1 all reflection coefficients are held\nover from the previous frame, giving a constant filter but with the ability\nto vary amplitude and pitch (10-bit frame).\nFinally, if the frame is unvoiced (signalled by the pitch value being zero)\nonly four reflection coefficients are transmitted, because the ear is\nrelatively insensitive to spectral detail in unvoiced speech (28-bit frame).\nThe end of the utterance is signalled by the energy bits all being 1.\n.rh \"Chip organization.\"\nThe configuration of the lattice filter is shown in Figure 11.10.\n.FC \"Figure 11.10\"\nThe \"two-multiplier\" structure (Chapter 6) is used, so the 10-stage filter\nrequires 19 multiplications and 19 additions\nper speech sample.\n(The last operation in the reverse path at the bottom is not needed.)  Since\na 10\\ kHz sample rate is used, just 100\\ $mu$sec are available for each\nspeech sample.\nA single 5\\ $mu$sec adder and a pipelined multiplier are implemented on\nthe chip, and multiplexed among the 19 operations.\nThe latter begins a new multiplication every 5\\ $mu$sec, and finishes it\n40\\ $mu$sec later.\nThese times are within the capability of p-channel MOS technology,\nallowing the chip to be produced at low cost.\nThe time slot for the 20'th, unnecessary, filter multiplication is used\nfor an overall gain adjustment.\n.pp\nThe final analogue signal is produced by an 8-bit on-chip D/A converter\nwhich drives a 200 milliwatt speaker through an impedance-matching\ntransformer.\nThese constitute the necessary analogue low-pass desampling filter.\n.pp\nFigure 11.11 summarizes the organization of the synthesis chip.\n.FC \"Figure 11.11\"\nSerial data enters directly from the read-only memories, although a control\nsignal from the processor begins synthesis and another signal is returned\nto it upon termination.\nThe data is decoded into individual parameters, which are used to address\nthe quantization tables to generate the full 10-bit parameter\nvalues.\nThese are interpolated from one frame to the next.\nThe lower part of the Figure shows the speech generation subsystem.\nAn excitation waveform for voiced speech is stored in read-only\nmemory and read out repeatedly at a rate determined by the pitch.\nThe source for unvoiced sounds is hard-limited noise provided by a digital\npseudo-random bit generator.\nThe sound source that is used depends on whether the pitch value is zero\nor not:  notice that this precludes mixed excitation for voiced fricatives\n(and the sound is noticeably poor in words like \"zee\").\nA gain multiplication is performed before the signal is passed through the\nlattice synthesis filter, described earlier.\n.sh \"11.4  Programmable signal processors\"\n.pp\nThe TI chip has a fixed architecture, and is destined forever\nto implement the same vocal tract model \\(em a 10'th order lattice filter.\nA more recent device, the Programmable Digital Signal Processor\n(Caldwell, 1980) from Telesensory Systems allows more flexibility\nin the type of model.\n.[\nCaldwell 1980\n.]\nIt can serve as a digital formant synthesizer or a linear predictive\nsynthesizer, and the order of model (number of formants, in the former case)\ncan be changed.\n.pp\nBefore describing the PDSP, it is worth looking at an earlier microprocessor\nwhich was designed for digital signal processing.\nSome industry observers have said that this processor, the Intel 2920,\nis to the analogue design engineer what the first microprocessor was to\nthe random logic engineer way back in the mists of time (early 1970's).\n.rh \"The 'analogue microprocessor'.\"\nThe 2920 is a digital microprocessor.\nHowever, it contains an on-chip D/A converter, which can be used in\nsuccessive approximation fashion for A/D conversion under program control,\nand its architecture is designed to aid digital signal processing calculations.\nAlthough the precision of conversion is 9 bits, internal arithmetic is\ndone with 25 bits to accomodate the accumulation of round-off errors in\narithmetic operations.\nAn on-chip programmable read-only memory holds a 192-instruction program,\nwhich is executed in sequence with no program jumps allowed.\nThis ensures that each pass through the program takes the same time,\nso that the analogue waveform is regularly sampled and processed.\n.pp\nThe device is implemented in n-channel MOS technology, which makes it\nslightly faster than the pMOS Speak 'n Spell chip.\nAt its fastest operating speed each instruction takes 400 nsec.\nThe 192-instruction program therefore executes in 78.6\\ $mu$sec, corresponding\nto a sampling rate of almost 13\\ kHz.\nThus the processor can handle signals with a bandwidth of 6.5\\ kHz \\(em ample\nfor high-quality speech.\nHowever, a special EOP (end of program) instruction is provided which\ncauses an immediate jump back to the beginning.\nHence if the program occupies less than 192 instructions, faster sampling\nrates can be used.\nFor example, a single second-order formant resonance\nrequires only 14 instructions and so can\nbe executed at over 150\\ kHz.\n.pp\nDespite this speed, the 2920 is only marginally capable of synthesizing\nspeech.\nTable 11.7 gives approximate numbers of instructions needed to do some\nsubtasks for speech generation (Hoff and Li, 1980).\n.[\nHoff Li 1980 Software makes a big talker\n.]\n.RF\n.nr x0 \\w'parameter entry and data distribution0000'+\\w'00000'\n.nr x1 \\w'instructions'\n.nr x2 (\\n(.l-\\n(x0)/2\n.in \\n(x2u\n.ta \\w'parameter entry and data distribution0000'u\n\\l'\\n(x0u\\(ul'\n.sp\ntask\t\\0\\0\\0\\0\\0\\h'-\\n(x1u'instructions\n\\l'\\n(x0u\\(ul'\n.sp\nparameter entry and data distribution\t35\\-40\nglottal pulse generation\t\\0\\0\\0\\08\nnoise generation\t\\0\\0\\011\nlattice section\t\\0\\0\\020\nformant filter\t\\0\\0\\014\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.in 0\n.FG \"Table 11.7  2920 instruction counts for typical speech subsystems\"\nThe parameter entry and data distribution procedure\ncollects 10 8-bit parameters from a serial input stream, at a frame rate of\n100 frames/s.\nThe parameter data rate is 8\\ Kbit/s, and the routine assumes that the\n2920 performs each complete cycle in 125\\ $mu$sec to generate sampled speech\nat 8\\ kHz.\nTherefore one bit of parameter data is accepted on every cycle.\nThe glottal pulse program generates an asymmetrical triangular waveform\n(Chapter 5), while the noise generator uses a 17-bit pseudo-random feedback\nshift register.\nAbout 30% of the 192-instruction program memory is consumed by these\nessential tasks.\nA two-multiplier lattice section takes 20 instructions,\nand so only six sections can fit into the remaining program space.\nIt may be possible to use two 2920's to implement a complete 10 or 12'th\norder lattice, but the results of the first stage must be passed to the\nsecond by transmitting analogue or digital data between each of the\n2920's analogue ports \\(em not a terribly satisfactory method.\n.pp\nSince a formant filter occupies only 14 instructions, up to nine of them\nwould fit in the program space left after the above-mentioned essential\nsubsystems.\nAlthough other necessary house-keeping tasks may reduce this number\nsubstantially,\nit does seem possible to implement a formant synthesizer on a single 2920.\n.rh \"The Programmable Digital Signal Processor.\"\nWhereas the 2920 is intended for general signal-processing jobs,\nTelesensory Systems' PDSP\n(Programmable Digital Signal Processor) is aimed specifically at speech\nsynthesis.\nIt comprises two separate chips, a control unit and an arithmetic unit.\nTo build a synthesizer these must be augmented with external memory\nand a D/A converter, arranged in a configuration like that of Figure 11.12.\n.FC \"Figure 11.12\"\n.pp\nThe control unit accepts parameter data from a host computer, one byte at a time.\nThe data is temporarily held in buffer memory before being serialized and passed\nto the arithmetic unit.\nNotice that for the 2920 we assumed that parameters were presented\nto the chip already serialized and precisely timed:  the PDSP control unit\neffectively releases the host from this high-speed real-time operation.\nBut it does more.\nIt generates both a voiced and an unvoiced excitation source and passes them\nto the arithmetic unit, to relieve the latter of the general-purpose\nprogramming required for both these tasks and allow its instruction set\nto be highly specialized for digital filtering.\n.pp\nThe arithmetic unit has rather a peculiar structure.\nIt accomodates only 16 program steps and can execute the full 16-instruction\nprogram at a rate of 10\\ kHz.\nThe internal word-length is 18 bits, but coefficients and the digital output\nare only 10 bits.\nEach instruction can accomplish quite a lot of work.\nFigure 11.13 shows that there are four separate blocks of store in addition\nto the program memory.\n.FC \"Figure 11.13\"\nOne location of each block is automatically associated with each program step.\nThus on instruction 2, for example, two 18-bit scratchpad registers MA(2)\nand MB(2), and two 10-bit coefficient registers A1(2) and A2(2), are\naccessible.\nIn addition five general registers, curiously numbered R1, R2, R5, R6, R7,\nare available to every program step.\n.pp\nEach instruction has five fields.\nA single instruction loads all the general registers and simultaneously\nperforms two multiplications and up to three additions.\nThe fields specify exactly which operands are involved in these operations.\n.pp\nThe instructions of the PDSP arithmetic unit are really very powerful.\nFor example, a second-order digital formant resonator requires only\ntwo program steps.\nA two-multiplier lattice stage needs only one step, and\na complete 12-stage lattice filter can be implemented in the 16 steps available.\nAn important feature of the architecture is that it\nis quite easy to incorporate more than one\narithmetic unit into a system, with a single control unit.\nIntermediate data can be transferred digitally between arithmetic units\nsince the D/A converter is off-chip.\nA four-multiplier normalized lattice (Chapter 6) with 12 stages can be implemented\non two arithmetic units, as can a lattice filter which incorporates zeros\nas well as poles, and a complex series/parallel formant synthesizer\nwith a total of 12 resonators whose centre frequencies and bandwidths\ncan be controlled independently (Klatt, 1980).\n.[\nKlatt 1980\n.]\n.pp\nHow this device will fare in actual commercial products is yet to be seen.\nIt is certainly much more sophisticated than the TI Speak 'n Spell chip,\nand a complete system will necessitate a much higher chip count and consequently\nmore expense.\nTelesensory Systems are committed to producing a text-to-speech\nsystem based upon it\nfor use both in a reading machine for the blind and as a text-input\nspeech-output computer peripheral.\n.sh \"11.5  References\"\n.LB \"nnnn\"\n.[\n$LIST$\n.]\n.LE \"nnnn\"\n.bp\n.ev2\n.ta \\w'\\fIsilence\\fR 'u +\\w'.EH100'u +\\w'(used to change amplitude and duration)00'u +\\w'00000000000test word'u\n.nr x0 \\w'\\fIsilence\\fR '+\\w'.EH100'+\\w'(used to change amplitude and duration)00'+\\w'00000000000test word'\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'Votrax'/2)\n.nr x2 (\\w'duration (msec)'/2)\n.nr x3 \\w'test word'\n\t\\h'-\\n(x1u'Votrax\t\t\\0\\h'-\\n(x2u'duration (msec)\t\\h'-\\n(x3u'test word\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x3 \\w'hid'\n\\fIi\\fR\tI\t\t118\t\\h'-\\n(x3u'hid\n\tI1\t(sound equivalent of I)\t\\083\n\tI2\t(sound equivalent of I)\t\\058\n\tI3\t(allophone of I)\t\\058\n\t.I3\t(sound equivalent of I3)\t\\083\n\tAY\t(allophone of I)\t\\065\n.nr x3 \\w'head'\n\\fIe\\fR\tEH\t\t118\t\\h'-\\n(x3u'head\n\tEH1\t(sound equivalent of EH)\t\\070\n\tEH2\t(sound equivalent of EH)\t\\060\n\tEH3\t(allophone of EH)\t\\060\n\t.EH2\t(sound equivalent of EH3)\t\\070\n\tA1\t(allophone of EH)\t100\n\tA2\t(sound equivalent of A1)\t\\095\n.nr x3 \\w'had'\n\\fIaa\\fR\tAE\t\t100\t\\h'-\\n(x3u'had\n\tAE1\t(sound equivalent of AE)\t100\n.nr x3 \\w'hod'\n\\fIo\\fR\tAW\t\t235\t\\h'-\\n(x3u'hod\n\tAW2\t(sound equivalent of AW)\t\\090\n\tAW1\t(allophone of AW)\t143\n.nr x3 \\w'hood'\n\\fIu\\fR\tOO\t\t178\t\\h'-\\n(x3u'hood\n\tOO1\t(sound equivalent of OO)\t103\n\tIU\t(allophone of OO)\t\\063\n.nr x3 \\w'hud'\n\\fIa\\fR\tUH\t\t103\t\\h'-\\n(x3u'hud\n\tUH1\t(sound equivalent of UH)\t\\095\n\tUH2\t(sound equivalent of UH)\t\\050\n\tUH3\t(allophone of UH)\t\\070\n\t.UH3\t(sound equivalent of UH3)\t103\n\t.UH2\t(allophone of UH)\t\\060\n.nr x3 \\w'hard'\n\\fIar\\fR\tAH1\t\t143\t\\h'-\\n(x3u'hard\n\tAH2\t(sound equivalent of AH1)\t\\070\n.nr x3 \\w'hawed'\n\\fIaw\\fR\tO\t\t178\t\\h'-\\n(x3u'hawed\n\tO1\t(sound equivalent of O)\t118\n\tO2\t(sound equivalent of O)\t\\083\n\t.O\t(allophone of O)\t178\n\t.O1\t(sound equivalent of .O)\t123\n\t.O2\t(sound equivalent of .O)\t\\090\n.nr x3 \\w'who d'\n\\fIuu\\fR\tU\t\t178\t\\h'-\\n(x3u'who'd\n\tU1\t(sound equivalent of U)\t\\090\n.nr x3 \\w'heard'\n\\fIer\\fR\tER\t\t143\t\\h'-\\n(x3u'heard\n.nr x3 \\w'heed'\n\\fIee\\fR\tE\t\t178\t\\h'-\\n(x3u'heed\n\tE1\t(sound equivalent of E)\t118\n\\fIr\\fR\tR\t\t\\090\n\t.R\t(allophone of R)\t\\050\n\\fIw\\fR\tW\t\t\\083\n\t.W\t(allophone of W)\t\\083\n\\l'\\n(x0u\\(ul'\n.sp3\n.ce\nTable 11.2  Votrax sound segments and their durations\n.bp\n\\l'\\n(x0u\\(ul'\n.sp\n.nr x1 (\\w'Votrax'/2)\n.nr x2 (\\w'duration (msec)'/2)\n.nr x3 \\w'test word'\n\t\\h'-\\n(1u'Votrax\t\t\\0\\h'-\\n(x2u'duration (msec)\t\\h'-\\n(x3u'test word\n\\l'\\n(x0u\\(ul'\n.sp\n\\fIl\\fR\tL\t\t105\n\tL1\t(allophone of L)\t105\n\\fIy\\fR\tY\t\t103\n\tY1\t(allophone of Y)\t\\083\n\\fIm\\fR\tM\t\t105\n\\fIb\\fR\tB\t\t\\070\n\\fIp\\fR\tP\t\t100\n\t.PH\t(aspiration burst for use with P)\t\\088\n\\fIn\\fR\tN\t\t\\083\n\\fId\\fR\tD\t\t\\050\n\t.D\t(allophone of D)\t\\053\n\\fIt\\fR\tT\t\t\\090\n\tDT\t(allophone of T)\t\\050\n\t.S\t(aspiration burst for use with T)\t\\070\n\\fIng\\fR\tNG\t\t120\n\\fIg\\fR\tG\t\t\\075\n\t.G\t(allophone of G)\t\\075\n\\fIk\\fR\tK\t\t\\075\n\t.K\t(allophone of K)\t\\080\n\t.X1\t(aspiration burst for use with K)\t\\068\n\\fIs\\fR\tS\t\t\\090\n\\fIz\\fR\tZ\t\t\\070\n\\fIsh\\fR\tSH\t\t118\n\tCH\t(allophone of SH)\t\\055\n\\fIzh\\fR\tZH\t\t\\090\n\tJ\t(allophone of ZH)\t\\050\n\\fIf\\fR\tF\t\t100\n\\fIv\\fR\tV\t\t\\070\n\\fIth\\fR\tTH\t\t\\070\n\\fIdh\\fR\tTHV\t\t\\070\n\\fIh\\fR\tH\t\t\\070\n\tH1\t(allophone of H)\t\\070\n\t.H1\t(allophone of H)\t\\048\n\\fIsilence\\fR\tPA0\t\t\\045\n\tPA1\t\t175\n\t.PA1\t\t\\0\\05\n\n\t.PA2 (used to change amplitude and duration)\t\\0\\0\\-\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.sp3\n.ce\nTable 11.2  (continued)\n.bp\n.ta 0.8i +2.6i +\\w'(AH1 .UH2)  (O U)000'u\n.nr x0 0.8i+2.6i+\\w'(AH1 .UH2)  (O U)000'+\\w'; i uh  \\- here'\n\\l'\\n(x0u\\(ul'\n.sp\nvowel clusters\n\tEH I\tA1 AY\t; e i  \\- hey\n\tUH OO\tO U\t; uh u  \\- ho\n\tAE I\t(AH1 EH3) I\t; aa i  \\- hi\n\tAE OO\t(AH1 .UH2) (O U)\t; aa u  \\- how\n\tAW I\t(O UH) E\t; o i  \\- hoi\n\tI UH\tE I\t; i uh  \\- here\n\tEH UH\t(EH A1) EH\t; e uh  \\- hair\n\tOO UH\tOO UH\t; u uh  \\- poor\n\tY U\tY1 (IU U)\n.sp\nvowel transitions\n\t{F M B P} O\t(.O1 O)\n\t{L R} EH\t(EH3 EH)\n\t{B K T D R} UH\t(UH3 UH)\n\t{T D} A1\t(EH3 A1)\n\t{T D} AW\t(AH1 AW)\n\t{W} I\t(I3 I)\n\t{G SH W K} OO\t(IU OO)\n\tAY {K G T D}\t(AY Y)\n\tE {M T}\t(E Y)\n\tI {M T}\t(I Y)\n\tE {L}\t(I3 UH)\n\tEH {R N S D T}\t(EH EH3)\n\tI {R T}\t(I I3)\n\tAE {S N}\t(AE EH)\n\tAE {K}\t(AE EH3)\n\tA1 {R}\t(A1 EH1)\n\tAH1 {R P K}\t(AH1 UH)\n\tAH1 {ZH}\t(AH1 EH3)\n.sp\nintervocalics\n\t{voiced} T {voiced}\tDT\n.sp\nconsonant transitions\n\tL {EH}\tL1\n\tH {U OO IU}\tH1\n\\l'\\n(x0u\\(ul'\n.sp3\n.ce\nTable 11.5  Contextual rules for Votrax sound segments\n.bp\n\\l'\\n(x0u\\(ul'\n.sp\nconsonant clusters\n\tB {stop-consonant}\t(B PA0)\n\tP {stop-consonant}\t(P PA0)\n\tD {stop-consonant}\t(D PA0)\n\tT {stop-consonant}\t(T PA0)\n\tDT {stop-consonant}\t(T PA0)\n\tG {stop-consonant}\t(G PA0)\n\tK {stop-consonant}\t(K PA0)\n\t{D T} R\t(.X1 R)\n\tK R\t.K (.X1 R)\n\t{consonant} R\t.R\n\t{consonant} L\tL1\n\tK W\t.K .W\n\tD ZH\tD J\n\tT SH\tT CH\n.sp\ninitial effects\n\t{.syll} P {vowel}\t(P .PH)\n\t{.syll} K {vowel}\t(K .H1)\n\t{.syll} T {vowel}\t(T .S)\n\t{.syll} L\tL1\n\t{.syll} H {U OO O AW AH1}\tH1\n.sp\nterminal effects\n\tE {PA0}\t(E Y)\n\\l'\\n(x0u\\(ul'\n.ta 0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i +0.8i\n.sp3\n.ce\nTable 11.5  (continued)\n.ev\n"
  },
  {
    "path": "testdata/calgary/news",
    "content": "#! rnews 1312\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!strath-cs!jml\nFrom: jml@cs.strath.ac.uk (Joseph McLean)\nNewsgroups: sci.math\nSubject: the extendability of digit sequences into primes\nMessage-ID: <753@stracs.cs.strath.ac.uk>\nDate: 2 Dec 87 10:36:33 GMT\nReply-To: jml@cs.strath.ac.uk (Joseph McLean)\nOrganization: Comp. Sci. Dept., Strathclyde Univ., Scotland.\nLines: 19\n\nIs the following conjecture reasonable and/or provable? :\n\nGiven a sequence of digits, starting with a non-zero digit, of arbitrary\nbut finite length, is it always possible to extend this sequence by\nappending more digits, in such a way as to form a prime?\n\ne.g. the sequence 1 can be extended into a prime in an infinite number\nof ways, as in 13, 17, 19, 101, 1231, 1579, etc (there an infinite\nnumber of primes beginning with a 1 by Bertrand's postulate).\nHowever, it is far more difficult to try and locate a prime which\nstarts with the sequence 1528296922945708 (although at least one is known).\n\nMy personal opinion is that the conjecture is reasonable, simply because\none can keep adding digits at the end and checking for primality ad\ninfinitum, and the law of averages will do the rest. Of course this is\ntotally groundless mathematically, so can anyone provide a heuristic\nargument with more weight?\n\n        jml, the mad mathematician.\n#! rnews 3077\nPath: alberta!mnetor!uunet!husc6!psuvax1!burdvax!bigburd!fritzson\nFrom: fritzson@bigburd.PRC.Unisys.COM (Richard Fritzson)\nNewsgroups: comp.editors\nSubject: Re: lisp environments (Structure vs. text editors)\nMessage-ID: <3375@bigburd.PRC.Unisys.COM>\nDate: 14 Dec 87 02:11:18 GMT\nReferences: <487@PT.CS.CMU.EDU> <460@cresswell.quintus.UUCP> <499@PT.CS.CMU.EDU>\nSender: news@bigburd.PRC.Unisys.COM\nOrganization: Unisys Corporation, Paoli Research Center; Paoli, PA\nLines: 56\n\nIn article <499@PT.CS.CMU.EDU> ralphw@IUS2.CS.CMU.EDU (Ralph Hyre) writes:\n>In article <460@cresswell.quintus.UUCP> pds@quintus.UUCP (Peter Schachte) writes:\n>>Text editors CANNOT simulate structure editors.  They can do a rather\n>>feeble job of it.  Text editors fall down when context information is\n>\n>I disagree - a PROGRAMMABLE text editor can do anything you want.  This is\n>because it's programmable.  Whether you're happy with the performance or a\n\nSure it can do anything. The best way for a programmable text editor to\nsimulate a structure editor would be for it to build an internal \nrepresentation (or structure) or what was really being edited and then \nuse its text manipulating primitives to show the user the effect of his \nediting commands on the structure that is \"really\" being edited. Now you've\nshown that mocklisp (for example) is a language in which you can implement\na structure editor. I doubt if it is the best way to do it though.\n\n>>...For example:  a structure editor can supply different commands, different\n>>facilities, for editing comments and code.\n>Seems like there's the potential here for moby modefulness.  I can't see\n>why I would want different commands when I edit code compared with comments.\n\nI don't know about \"commands\", but Common Lisp comments are nothing\nlike Common Lisp code (much to the shame of Common Lisp). I want the\ncharacters I type in as comments treated differently than those I type in \nas parts of S-expressions.\n\n>My interest is in an pseudo-WYSIWYG editor which gives you the option\n>of entering/editing text without formatting attributes, then optionally \n>displaying the text with them. <...>This sort of decoupling between editing a\n>document and a representation of a document could even be used to great\n>advantage in many environments:\n\nYou're right. An editor which is really editing the structure underlying\nthe visual presentation of it IS a useful thing. \n\n>\tA program code editor might actually be showing you variable names,\n>\tstatements, and S-expressions while it is really writing the P-code\n>\t(or .lbin file) on the fly.\n>\tThis could result in 'instant' language interpreter facilities and \n>\tfast compilers.\n>\t[I admit that this might be hairy to program in MockLisp.]\n\nBut it is one of the reasons Xerox structure editor fans are fans.\n\n>[disclaimer: I've never used a 'structure editor' \n\nNo offense intended, but I could tell. If you write any Lisp you should\nlook for an opportunity to try SEdit on a D-machine.\n\n\n\n\n-- \n\t-Rich Fritzson\n\t ARPA: fritzson@prc.unisys.com\n\t UUCP: {sdcrdcf,psuvax1,cbmvax}!burdvax!fritzson\n#! rnews 3135\nPath: alberta!mnetor!uunet!husc6!cmcl2!brl-adm!umd5!ames!sdcsvax!sdcc6!loral!dml\nFrom: dml@loral.UUCP (Dave Lewis)\nNewsgroups: rec.arts.movies\nSubject: Re: Live Action Amber Films\nSummary: Use Zelazny's descriptions!\nMessage-ID: <1496@loral.UUCP>\nDate: 14 Dec 87 06:41:04 GMT\nReferences: <349@morningdew.BBN.COM> <2620001@hpcvlx.HP.COM>\nReply-To: dml@loral.UUCP (Dave Lewis)\nFollowup-To: rec.arts.movies\nDistribution: na\nOrganization: Loral Instrumentation, San Diego\nLines: 59\n\nIn article <2620001@hpcvlx.HP.COM> markc@hpcvlx.HP.COM (Mark Cook) writes:\n>>/ hpcvlx:rec.arts.movies / dkovar@lf-server-2.BBN.COM (David Kovar) /  7:07 am  Dec  9, 1987 /\n>>\n>>  Well, someone else was wondering who would be the actors in a Tolkien\n>>film which brought to mind a favorite question of mine from a few years\n>>back: Who would play the parts of a Amber film? I used to have the\n\n>>Corwin: Mel Gibson\n\nJonathan Pryce. From \"Something Wicked This Way Comes\".\n\n>  even better, how about Timothy Dalton (James Bond isn't the only thing he\n\n>>Brand: (Who's the guy from Kiss who was in Runaway?)\n\n>  You mean Gene Simmons.  Well, he could play the part but he has to look like\n\n  No way. Brand is \"a figure both like Bleys and myself. My features, though\nsmaller, my eyes, Bleys' hair. There was a quality of both strength and weak-\nness, questing and abandonment about him.\" This is Corwin speaking, of course.\n\n  And Bleys is \"a fiery bearded, flame-crowned man, dressed all in red and\norange, mainly of silk stuff, and he held a sword in his right hand and a\nglass of wine in his left, and the devil himself danced behind his eyes, as\nblue as Flora's, or Eric's. His chin was slight, but the beard covered it.\"\n\n  I can't think of anyone offhand for either part, but I nominate Gene Simmons\nto play Caine: \"Then came the swarthy, dark-eyed countenance of Caine, dressed\nall in satin that was black and green, wearing a dark three-cornered hat set\nat a rakish angle, a green plume of feathers trailing down the back.\" (Yeah,\nI got \"Nine Princes in Amber\" lying right next to the keyboard here)\n\n  Random: \"a wily-looking little man, with a sharp nose and a laughing mouth\nand a shock of straw-colored hair.\" How about Dudley Moore (with his hair\nbleached, of course).\n\n  Dierdre: \"a black-haired girl with [Flora's] blue eyes, and her hair hung\nlong and she was dressed all in black, with a girdle of silver about her\nwaist.\" Lee Meriwether or Kate Jackson.\n\n  Fiona: \"with hair like Bleys or Brand, [Corwin's] eyes, and a complexion\nlike mother of pearl.  Ann-Margret!\n\n  That's all for now; if people are interested I can type in the whole 2-1/2\npages of descriptions so we'll REALLY have something to argue over.\n\n-------------------------------\n          Dave Lewis    Loral Instrumentation   San Diego\n\n  hp-sdd --\\     ihnp4 --\\\n  sdcrdcf --\\      bang --\\   kontron -\\\n  csndvax ---\\   calmasd -->-->!crash --\\\n  celerity --->------->!sdcsvax!sdcc3 --->--->!loral!dml  (uucp)\n  dcdwest ---/                 gould9 --/\n\n  \"I'm alive and he's dead and that's the way I wanted it.\"\n   -- Corwin, about Borel\n\n-------------------------------\n#! rnews 2421\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!strath-cs!jim\nFrom: jim@cs.strath.ac.uk (Jim Reid)\nNewsgroups: comp.mail.headers\nSubject: Re: RFC976 vs. the real world...\nMessage-ID: <754@stracs.cs.strath.ac.uk>\nDate: 2 Dec 87 12:51:51 GMT\nReferences: <18533@amdahl.amdahl.com>\nReply-To: jim@cs.strath.ac.uk\nOrganization: Comp. Sci. Dept., Strathclyde Univ., Scotland.\nLines: 40\n\nIn article <18533@amdahl.amdahl.com> tron@uts.amdahl.com (Ronald S. Karr) writes:\n>Some Introduction:\n>However, we have conflicting ideas concerning what to do with sender\n>addresses in headers.  We do, now, support the idea that a pure !-path\n>coming in can be left as a !-path, with the current hostname prepended\n>(this is optional and is a function of the destination).  However,\n>should I ever produce, in mail originated locally, a From: line in the\n>following form?\n>\n>\tFrom: localhost!username\n\nThe answer is perhaps. In an ideal world, everyone will adhere to one\nstandard for mail headers - RFC822 possibly, but X.400 is more likely.\nUntil that glorious day arrives (if it ever does), mailers at the mail\n'gateways' between networks will have little option but to munge\naddresses because of incompatible mail headers and addressing formats.\n\nWhat you mail system should do is rewrite mail headers into the\nappropriate form for transmission to a given host. In short, if your\nuucp neighbours only understand bang-style addresses, you mailer should\nonly present bang-style paths to these sites. If some sites understand\nRFC822 (user@host.domain), then you should send them RFC822 style mail.\nWhat would be less easy for the mailer is separating your bang-stlye\nuucp neighbours from those who understand RFC822.\n\nThe best mailers (MMDF or sendmail - no flames please!) take an input\naddress, convert it to a canonical form and then rewrite the address in\nthe appropriate style for the message transfer agent. This is the most\nsensible way of dealing with hybrid addresses like A!B@C. [Does that\nmean send by uucp to A for relaying to user B on host C or does it mean\nsend to C for them to relay to user B on uucp host A? Then what if C\n(or A) doesn't like addresses with '!' (or '@') signs in them?]\n\n\t\tJim\n-- \nARPA:\tjim%cs.strath.ac.uk@ucl-cs.arpa, jim@cs.strath.ac.uk\nUUCP:\tjim@strath-cs.uucp, ...!seismo!mcvax!ukc!strath-cs!jim\nJANET:\tjim@uk.ac.strath.cs\n\n\"JANET domain ordering is swapped around so's there'd be some use for rev(1)!\"\n#! rnews 3873\nPath: alberta!mnetor!uunet!husc6!cmcl2!brl-adm!umd5!ames!sdcsvax!sdcc6!loral!dml\nFrom: dml@loral.UUCP (Dave Lewis)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: One more long-gone show\nSummary: What S. F. movies should be\nKeywords: Questor\nMessage-ID: <1497@loral.UUCP>\nDate: 14 Dec 87 06:45:22 GMT\nReferences: <1672@bsu-cs.UUCP>\nReply-To: dml@loral.UUCP (Dave Lewis)\nFollowup-To: rec.arts.sf-lovers\nDistribution: na\nOrganization: Loral Instrumentation, San Diego\nLines: 64\n\nIn article <1672@bsu-cs.UUCP> cfchiesa@bsu-cs.UUCP (Christopher F. Chiesa) writes:\n>Anyone remember a movie called _The_Questor_Tapes_ ?  Basic premise: gov't\n>project constructs an android according to eccentric scientist's specs; and-\n\n>C.Chiesa\n\n  Yea, verily, I recall The Questor Tapes. I've forgotten the scientist's\nname, but he was a very rich and secretive genius known for several major\nadvances in robotics and cybernetics. About 2 years previous to the start\nof the movie, he had disappeared, leaving only a partially completed project\nhe called Questor. Much of the work was complete, including a small fusion\nreactor, most of the brain, and a lot of the support machinery. He also left\na BIG mag tape of programs, which some government idiot had partially erased\nwhile trying to decode it. Questor, when activated, did nothing; the team\nthat assembled him figured it was because of the bad tape.\n\n  Late that night, Questor got up, used the 'finishing' molds to give himself\nhuman features, and walked out. The scientist had known one member of the\nQuestor-assembly team and put his name and address on the program tape; by\ngood fortune it had survived the attempted decoding. Questor knows only that\nhe must find `a boat' -- other details have been erased.\n\n  The government catches up with them in a playground and some fool shoots\nQuestor. Apparently the shock knocks some bits loose because when he sees\na jungle gym that looks like Noah's Ark he remembers, \"the boat, the boat\nof legend. [whatsisname] is waiting for me there.\" He also remembers that\nif he doesn't find the scientist within about two days, his fusion power\nsupply is programmed to overload and blow up.\n\n  They patch him up and he leads them a merry chase to Mt. Ararat where he\nfinds his creator in a cave hidden by a force barrier/hologram projection.\nThere is a long row of metallic slabs suspended about a meter above the\nfloor; on each lies a defunct robot. Each one wears clothing from a time\nfar earlier than the next. Questor's creator lies on the second to last\nslab, still conscious but unable to move.\n\n  These robots have been watching over the human race for more than ten\nthousand years. Each one lasts two hundred years, then builds his successor.\nQuestor's predecessor was brought to an early end by some combination of\npollution and radiation exposure; he has provided Questor with extra\nshielding so he will last the full two centuries.\n\n  Questor is the last. By the end of his term, the human race will have\nreached a point where we can make our own decisions without guidance.\nThe robots were placed here by some advanced aliens to see us through our\nracial childhood, to allow us a chance to mature and achieve whatever\npotential we have.\n\n  The Questor Tapes was an excellent movie, one makers of more recent films\nshould take a lesson from. Very few other movies have impressed me as much\nas \"2001: A Space Odyssey\" and \"The Questor Tapes\". They show up the likes\nof\"Close Encounters of the Third Kind\" and \"E.T.\" for the vapid silliness\nthey are.\n\n-------------------------------\n          Dave Lewis    Loral Instrumentation   San Diego\n\n  hp-sdd --\\     ihnp4 --\\\n  sdcrdcf --\\      bang --\\   kontron -\\\n  csndvax ---\\   calmasd -->-->!crash --\\\n  celerity --->------->!sdcsvax!sdcc3 --->--->!loral!dml  (uucp)\n  dcdwest ---/                 gould9 --/\n\n-------------------------------\n#! rnews 1384\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: M. John Harrison\nMessage-ID: <1560@brahma.cs.hw.ac.uk>\nDate: 2 Dec 87 18:20:17 GMT\nReferences: <1950@charon.unm.edu>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 23\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n\n[ignore the above address and use my signature]\n\n\nBy far the best thing I have read by MJH is a long short story called\n\"Running Down\", about a man with unwanted psychic powers that cause things\nto malfunction, decay and fall apart around him. It is set in a Britain\nin the near future of when the story was written (i.e. about now) in which\nthe whole society reflects a similar dingy, pointless chaos - remarkably\nlike Britain after 8 years of Thatcher, in fact.\nHe's very good at describing that sort of situation - his novel \"The Centauri\nDevice\" does it at length, though his suggested political solution is bloody\nstupid. His understanding of anarchism is about on a level with Robert Anton\nWilson's.\n\n- jack\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1188\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: rec.music.classical\nSubject: Re: Tippett\nMessage-ID: <1561@brahma.cs.hw.ac.uk>\nDate: 2 Dec 87 18:38:20 GMT\nReferences: <1950@bath63.ux63.bath.ac.uk>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 15\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n[ignore the above email address and use my signature]\nTippett moved on a LONG way musically after \"A Child Of Our Time\".\nI believe his masterpiece is the Triple Concerto for violin, viola and cello.\nThere is a wonderful recording of it by Pauk, Imai and Kirschbaum with the LSO\nunder Davis.\nA problem I find with a lot of his music is the silly words. The man really\nshouldn't have tried writing his own libretti that often.\nI believe he's got another opera in the pipeline, due for its premiere in the\nnext few months.\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 894\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!jg\nFrom: jg@eagle.ukc.ac.uk (J.Grant)\nNewsgroups: comp.sys.mac\nSubject: The Spinning watch cursor\nMessage-ID: <4023@eagle.ukc.ac.uk>\nDate: 3 Dec 87 14:59:09 GMT\nReply-To: jg@ukc.ac.uk (J.Grant)\nOrganization: Computing Lab, University of Kent at Canterbury, UK.\nLines: 11\n\nOK - I've changed my spinning watch back into the lovely sand-timer\n(remember the good old days?);  I've changed the CURS resource in the\nFinder and also in the System so that I have various quantities\nof sand in the top & bottom, but there is still a watch lurking!\n\nMore precisely, where does the watch that says 9 o'clock live, as\nnow I get the magic watch followed by the sand1->7, then the watch\nagain as the cycle repeats.  This only happens in the Finder, so I\nsuspect that there must be a watch lurking elsewhere, but where?\n\nPs. system 4.2b(5?) & Finder 6.0 (Mac 512Ke)\n#! rnews 3539\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csnjr\nFrom: csnjr@its63b.ed.ac.uk (Nick Rothwell)\nNewsgroups: rec.music.synth,rec.music.makers\nSubject: Casio MG500, Roland MT-32, MIDI bug? [LONG]\nSummary: Where's the MIDI bug in this lot?:\nKeywords: MG500 MT-32 MIDI\nMessage-ID: <805@its63b.ed.ac.uk>\nDate: 3 Dec 87 13:10:56 GMT\nReply-To: nick%ed.lfcs@uk.ac.ucl.cs.nss (Nick Rothwell)\nOrganization: LFCS, University of Edinburgh\nLines: 46\nXref: alberta rec.music.synth:1879 rec.music.makers:1070\n\nLast weekend a friend and I strolled into a music shop and ended up playing\nwith the new Casio MG500 MIDI guitar linked into a Roland MT-32. I don't\nplay guitar, and was just along for the curiosity, but I've got a few comments\nto make and a question about what I consider to be a MIDI bug in one of the\ninstruments.\n   Firstly - the performance of the MG500. I wasn't actually playing it (I was\njust pushing buttons on the MT-32 instead), but I was impressed with its\nspeed and tracking ability - it was fast and followed pitch accurately,\nresponding to pitch bend and so on; it generally sounded pretty tight.\nThere were a couple of things I didn't like - but maybe it's a generic\nweakness of all guitar-to-MIDI systems. Firstly, the guitar transmits\nvelocity information (hit the string harder -> louder/brighter note), but\ngives no control (other than pitch-bend) once a note's sounding - there's\nnothing equivalent to aftertouch/modulation so once a note sounds you're\nat the mercy of the synth until you stop the string.\nPoint two - You've got six strings, so you can only sound six synth voices.\nThis is probably obvious, but playing a guitar patch through MIDI doesn't\nsound like a real guitar, because each touch of a string retriggers the voice\non that string, sometimes in a rather distracting way. On a real (classical)\nguitar you have the resonance of the soundbox to hang on to notes so you\naren't aware of this (I presume - comments?)\nNow for what is (in my opinion) a MIDI Bug! Play two different notes on\ntwo strings and you get two voices - ok so far. Play the same note on two\ndifferent strings and you get one voice. Humm. Play two different notes on\ntwo strings and slide one note up to the other, and one of the voices is\nchopped off. I think this is a bug - something somewhere doesn't want to\nthe same note more than once. Needless to say, this completely screws up\na number of guitar chords.\n   We mentioned this to the guy in the shop. He seemed convinced that it's\na problem with the MIDI spec. itself - if you play a keyboard synth, you\nhave to release the middle C key to play it again, don't you? I think this\nis a load of dingos kidneys - if I send my D-50 two separate middle C\nnote on messages, then I'll get two voices cycling through the envelopes at\nmiddle C pitch. This is what happens with the sustain pedal on, as well.\n   What's the verdict, net people? I think the guy was wrong (quite adamant,\nbut wrong...) and there's a bug in one of the boxes. I suspect the MG500.\nIf the MT-32 is anything like the D-50, then it doesn't care about playing\nthe same note twice. (A quick note in passing that synths with less voices\n(Juno106 for instance) often won't double a voice, in an attempt to play\nchords properly without running out.)\n-- \nNick Rothwell,\tLaboratory for Foundations of Computer Science, Edinburgh.\n\t\tnick%lfcs.ed.ac.uk@nss.cs.ucl.ac.uk\n\t\t<Atlantic Ocean>!mcvax!ukc!lfcs!nick\n~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~\n\"Nothing's forgotten. Nothing is ever forgotten.\"   - Herne\n#! rnews 1505\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!bath63!pes\nFrom: pes@ux63.bath.ac.uk (Smee)\nNewsgroups: comp.sys.atari.st\nSubject: Re: Resource file question\nKeywords: resource mwc rcs .rsc dri c\nMessage-ID: <1963@bath63.ux63.bath.ac.uk>\nDate: 3 Dec 87 10:33:26 GMT\nReferences: <1592@wiley.UUCP>\nReply-To: pes@ux63.bath.ac.uk (Smee)\nOrganization: AUCC c/o University of Bath\nLines: 19\n\n\nYou might try looking to see if K-Resource is still available (by Kuma Software,\nwho else?).  It's been out a long while.  It's now available bundled with some\nof the MetaComCo stuff (in particular the new Lattice C) but I believe that\nKuma still do it separately as well.  Don't have a clue what it costs, but\nmust be cheaper than a new compiler.\n\nIt produces (by switch option) appropriate 'include' type files for C,\nFORTRAN, and 2 other languages which I've conveniently forgotten -- in\naddition to the expected .RSC file.  Will also produce a 'non-specific\nstructured description' file (they say, I've never tried this) which is\nalleged to be pretty easy to massage into an appropriate 'include' for\nany unsupported language you might like.\n\nThe documentation is written in a bit of a 'too-folksy' style for my liking,\nbut the program is pretty intuitive to use which makes up for some of that.\nIt does, however, assume that you have some sort of a clue as to what the\nvarious resource items/flags mean and do -- it doesn't teach you how to use\nRSC files or what they mean, but rather gives a handle for making them.\n#! rnews 1258\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!neil\nFrom: neil@cs.hw.ac.uk (Neil Forsyth)\nNewsgroups: comp.sys.atari.st\nSubject: Bug in bets test Gulam\nKeywords: none\nMessage-ID: <1562@brahma.cs.hw.ac.uk>\nDate: 3 Dec 87 09:46:32 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 28\n\n\nI think I have found a bug in the latest version of Gulam.\n\n         alias test 'echo $<'\n\nproduces a couple of spurious charcters on the input line.\n\n         $<%&\n\nThe characters are usually above $80. The alpha version didn't do this.\nI just delete them by backspacing anyway.\n\n         echo $<\n\nby itself works fine.\n\n-------------------------------------------------------------------------------\n\"I think all right thinking people in this country are sick and tired of being\ntold that ordinary decent people are fed up in this country with being sick and\ntired. I'm certainly not and I'm sick and tired of being told that I am!\"\n- Monty Python\n\n Neil Forsyth                           JANET:  neil@uk.ac.hw.cs\n Dept. of Computer Science              ARPA:   neil@cs.hw.ac.uk\n Heriot-Watt University                 UUCP:   ..!ukc!cs.hw.ac.uk!neil\n Edinburgh\n Scotland\n-------------------------------------------------------------------------------\n#! rnews 1009\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: comp.sys.mac\nSubject: Re: how strong of a magnet?\nMessage-ID: <1564@brahma.cs.hw.ac.uk>\nDate: 3 Dec 87 18:59:42 GMT\nReferences: <9554@shemp.UCLA.EDU>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 12\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n[ignore the above email address and use my signature]\nThis may be an FOAF story (urban folklore) but I have heard that the mag-lev\ntrain at Birmingham Airport lets enough field into the passenger compartment\nto wipe floppies.\nThen again, I have also heard that story about ordinary underground railways\nand it certainly isn't true of them.\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 988\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csan\nFrom: csan@its63b.ed.ac.uk (Andie)\nNewsgroups: comp.sys.atari.st\nSubject: Re: Resource file question\nKeywords: Kuma\nMessage-ID: <808@its63b.ed.ac.uk>\nDate: 3 Dec 87 23:08:12 GMT\nReferences: <1592@wiley.UUCP> <1298@saturn.ucsc.edu>\nReply-To: csan@its63b.ed.ac.uk (Andie)\nOrganization: Computer Science Department, Edinburgh University\nLines: 14\n\nIn article <1298@saturn.ucsc.edu> koreth@ssyx.ucsc.edu (Steven Grimm) writes:\n>\n>Kuma Software makes the best resource editor I've seen.  It's called\n>\"K-Resource\" and is a really friendly, well-thought-out piece of software.\n>\nI am in total agreement here. I use it in preference to any others I have.\n\nAndie Ness . Department of Computer Science ,Edinburgh University.\n\nARPA:  csan%ed.itspna@nss.cs.ucl.ac.uk   UUCP:  ...!uunet!mcvax!ukc!itspna!csan\n                   \tJANET: csan@uk.ac.ed.itspna\n\n% These are my own views and any resemblance to any coherent reasoning is\n% probably a typo.\n#! rnews 852\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!idec!howellg\nFrom: howellg@idec.stc.co.uk (Gareth Howell)\nNewsgroups: rec.ham-radio.packet,comp.protocols.tcp-ip\nSubject: NEEDED: KISS for TNC220\nMessage-ID: <869@idec.stc.co.uk>\nDate: 1 Dec 87 09:05:59 GMT\nOrganization: ICL Network Systems, Stevenage, Herts. UK\nLines: 12\nXref: alberta rec.ham-radio.packet:767 comp.protocols.tcp-ip:1918\n\nI have a Pacomm TNC220 on which I want to run KISS and thence the KA9Q\ntcp/ip package.  Unfortunately I don't have a KISS for the TNC.\nCan anybody help.  I would prefer the co-resident bootstrap with a\ndownloaded KISS module if possible.\nta Gareth\n====\n\n-- \nGareth Howell  <howellg@idec.stc.co.uk>  G6KVK @ IO91VX\nICL NS PNBC, England, SG1 1YB    Tel:+44 (0)438 738294\nhowellg%idec%ukc@mcvax.uucp, mcvax!ukc!idec!howellg@uunet.uu.net\nG6KVK @ G4SPV (uk packet 144.650MHz)\n#! rnews 710\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!hilda\nFrom: hilda@tcom.stc.co.uk ( Jeff Tracey )\nNewsgroups: rec.arts.sf-lovers\nSubject: Thunderbirds are GO!!!\nKeywords: FAB\nMessage-ID: <1503@arran.tcom.stc.co.uk>\nDate: 2 Dec 87 10:54:39 GMT\nOrganization: STC Telecoms, London N11 1HB.\nLines: 14\n\nA few quick trivia questions on Thunderbirds :-\n\n1) Does anybody know what the phrase 'FAB' stands for ??? \n\n2) What's the first mission that International Rescue accomplished ?\n\n3) What's the Butler's name on the Island AND who is his daughter ? \n\n\nRegards,\n\nSteve Hillyer.  <hilda@tcom.stc.co.uk> || ...uunet!mcvax!ukc!stc!hilda\nSTC Telecommunications, Oakleigh Rd South, London N11 1HB. \nPhone : +44 1 368 1234 x3358\n#! rnews 1159\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!btnix!crouch\nFrom: crouch@btnix.axion.bt.co.uk (Chris Rouch)\nNewsgroups: comp.os.vms\nSubject: callable TPU?\nKeywords: TPU callable editor\nMessage-ID: <632@btnix.axion.bt.co.uk>\nDate: 3 Dec 87 11:33:58 GMT\nOrganization: British Telecom Research Labs, Martlesham Heath, IPSWICH, UK\nLines: 17\n\nI read somewhere that there is a callable version of EDT, available by using\nEDT$EDIT(...). Does anyone know if there is a similar function for the TPU\neditor and/or other commands such as MAIL, PRINT etc. If somebody could\nalso point me in the direction of the VMS manual which contains this\ninformation (assuming there is one), I would be very grateful.\n\n\t\tChris Rouch\n\n--------------------------------------------------------------------------------\nvax to vax (UUCP)       CRouch@axion.bt.co.uk (...!ukc!btnix!crouch)\ndesk to desk            RT3124, 310 SSTF,\n\t\t\tBritish Telecom Research Laboratories,\n\t\t\tMartlesham Heath, IPSWICH, IP5 7RE, UK.\nvoice to voice          +44 473 646093\n\n\t\"Ours is not to look back, ours to continue the crack.\"\n--------------------------------------------------------------------------------\n#! rnews 1090\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!pete\nFrom: pete@tcom.stc.co.uk (Peter Kendell)\nNewsgroups: rec.music.classical\nSubject: Durufle virgin seeks advice\nMessage-ID: <483@stc-f.tcom.stc.co.uk>\nDate: 3 Dec 87 11:50:35 GMT\nOrganization: STC Telecoms, London N11 1HB.\nLines: 25\n\n\n\tBeing curious, as the name was completely new to me, I borrowed \n\tthe Hyperion CD of Durufle's Requiem from my local public \n\tlibrary. I enjoyed it very much and would like to find out more\n\tabout him, so :-\n\n\t- What else has he written? (I believe he's not been very prolific)\n\t\n\t- What else has been recorded?\n\t\n\t- Is his other work similar to the Requiem; it is better, worse or\n\t  just different?\n\n\t- I thought I heard a Holst influence; is this typical?\n\n\t- Are there other 20th Century composers in a similar vein that I\n\t  should try?\n\n\t\n\t\n-- \n------------------------------------------------------------------------------\n|\t\t  Peter Kendell <pete@tcom.stc.co.uk>\t        \t     |\n|\t\t\t\t...{uunet!}mcvax!ukc!stc!pete\t\t     |\n------------------------------------------------------------------------------\n#! rnews 1235\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!praxis!gauss!drb\nFrom: drb@praxis.co.uk (David Brownbridge)\nNewsgroups: comp.unix.wizards\nSubject: Re: //host vs \"mount point\"\nMessage-ID: <1606@newton.praxis.co.uk>\nDate: 3 Dec 87 12:42:36 GMT\nReferences: <648@tut.cis.ohio-state.edu> <1668@tut.cis.ohio-state.edu> <38c15248.4580@hi-csc.UUCP> <9559@mimsy.UUCP> <411@PT.CS.CMU.EDU>\nSender: nobody@praxis.co.uk\nReply-To: drb%praxis.uucp@ukc.ac.uk(David Brownbridge)\nOrganization: Praxis Systems plc, Bath, UK\nLines: 19\n\nIn article <411@PT.CS.CMU.EDU> jgm@K.GP.CS.CMU.EDU (John Myers) writes:\n>Just to add to the confusion, let me put in a plug in for the Carnegie-Mellon\n>University Computer Science Department's syntax:\n>\n>/../host\n\nWe built a system which also allowed super-super-roots and so on ad infinitum.\n\n /../NearbyHost\n /../../OtherSite/host\n /../../../OtherCountry/AnotherSite/host\n\n\"/..\" makes sense to me which is why I promoted it as the \"University of\nNewcastle upon Tyne Computing Laboratory's syntax\" :-) Some old-timers must\nremember the \"Newcastle Connection\" distributed UNIX system which Lindsay\nMarshall and I wrote in 1981-2.\n\n\"Not for the iron fist but for the helping hand\" \n[Billy Bragg/Oyster Band \"Between The Wars\"]\n#! rnews 1785\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!datlog!slxsys!jpp\nFrom: jpp@slxsys.specialix.co.uk (John Pettitt)\nNewsgroups: comp.unix.xenix\nSubject: Re: smail2.5\nSummary: smail on xenix without writing new programs\nKeywords: At last, a 'real' mailer for Xenix (are you listening SCO) :-)\nMessage-ID: <106@slxsys.specialix.co.uk>\nDate: 3 Dec 87 06:44:07 GMT\nReferences: <484@rel.eds.com>\nReply-To: jpp@slxsys.UUCP (John Pettitt)\nOrganization: Specialix International, London, UK.\nLines: 27\n\nIn article <484@rel.eds.com> bob@rel.eds.com (Bob Leffler) writes:\n>During the last several weeks there have been numerous solutions posted to\n>the net to resolved the interface problem with Xenix and smail 2.5.  I\n>have tried all the solutions that I am aware of and my conclusion for the\n>best approach is a combination of two.\n\n\tlots of stuff about how to install smail deleted.\n\nI have just installed smail 2.5 on Xenix 386.  The solution I used\nhere was to replace /usr/lib/mail/execmail with a link to (copy of)\n/bin/smail.  I also moved the old sco execmail to execmail.sco and used\nit as the local delivery agent.  The above will not work as it stands\nbecause the command syntax for execmail is not the same as smail. This\ncan be corrected by swapping the meaning of the -F and -f switches in\nsmail (main.c and defs.h).   The local delivery macro in defs.h should\nbe set to give /usr/lib/mail/execmail.com -f from to.   With this\nsetup you get the sco mailer (mailx) and smail with both From and From:\nlines correct.  Also as execmail is still used for 'local' delivery\nmicnet (sco's RS232 \"LAN\") still works.\n\n\n\n\n-- \nJohn Pettitt G6KCQ, CIX jpettitt, Voice +44 1 398 9422\nUUCP:  ...uunet!mcvax!ukc!pyrltd!slxsys!jpp  (jpp@slxsys.co.uk)\nDisclaimer: I don't even own a cat to share my views !\n#! rnews 1287\nPath: alberta!mnetor!uunet!mcvax!lambert\nFrom: lambert@cwi.nl (Lambert Meertens)\nNewsgroups: sci.math\nSubject: Re: Least-squares fitting\nMessage-ID: <135@piring.cwi.nl>\nDate: 5 Dec 87 14:41:10 GMT\nReferences: <1823@culdev1.UUCP>\nOrganization: CWI, Amsterdam\nLines: 28\n\nIn article <1823@culdev1.UUCP> drw@culdev1.UUCP (Dale Worley) writes:\n) Is is known how to perform least-squares fitting where the \"error\" is\n) the perpendicular distance between the point and the line?\n\nThis least-squares fit still passes through the \"center of gravity\" of the\ndata points, so assume that the data has been reduced such that the\naverages of the x- and y-coordinates are both zero.  Let the equation of\nthe line to be determined be\n\n    x*(sin phi) - y*(cos phi) = 0,\n\nthat is, it is the line making an angle phi with the x-axis.  Put\n\n    XX = SUM_i x[i]^2,\n    XY = SUM_i x[i]*y[i],\n    YY = SUM_i y[i]^2.\n\nThen tan(2*phi) = 2*XY/(XX-YY).\n\nThis gives two solutions for phi.  Take the one such that the point\n(XX-YY, 2*XY) lies on the ray through the origin with angle 2*phi.\n(Remark.  It is possible to solve the coefficients for x and y\nalgebraically, without going through the arctan routine, but it is harder\nthen to get the signs correct.)\n\n-- \n\nLambert Meertens, CWI, Amsterdam; lambert@cwi.nl\n#! rnews 852\nPath: alberta!mnetor!uunet!mcvax!inria!imag!bordier\nFrom: bordier@imag.UUCP (Jerome Bordier)\nNewsgroups: comp.sys.mac\nSubject: Re: Arabic Wordprocessing / Publishing\nMessage-ID: <2285@imag.UUCP>\nDate: 4 Dec 87 10:24:35 GMT\nReply-To: bordier@imag.UUCP (Jerome Bordier)\nOrganization: IMAG, University of Grenoble, France\nLines: 14\n\n\"Winsoft\", a small firm developping and selling software for the Macintosh,\nhas made \"Wintext\", a word processor fully compatible with the \"Arabic\nMacintosh+\" (you have to obtain the Arabic keyboard distributed by Apple).\nTheir address is:\n\tWinsoft\n\t34 boulevard de l'Esplanade\n\t38000 GRENOBLE   France\nPhone no.:   76.87.56.01\n\n-- \nJerome BORDIER   Laboratoire Structures Discretes  Institut IMAG\n\t\t B.P.68 - 38402 SAINT MARTIN D'HERES CEDEX   France\nE.Mail:\nbordier@imag.imag.fr   or   {uunet.uu.net|mcvax}!imag!bordier\n#! rnews 1182\nPath: alberta!mnetor!uunet!mcvax!inria!rouaix\nFrom: rouaix@inria.UUCP (Francois Rouaix)\nNewsgroups: comp.sys.amiga\nSubject: POPCLI III Another Bug\nKeywords: left-amiga-esc timing\nMessage-ID: <587@inria.UUCP>\nDate: 5 Dec 87 17:45:19 GMT\nOrganization: INRIA, Rocquencourt. France\nLines: 20\n\n\n\tWell, it seems there is another bug in Popcli III.\n\tJust try \n\t\t1> run popcli 30\n\tand then press Left-Amiga-Esc: the drive (where c: is) spins for\n\ta moment and nothing happens.\n\tThe new 'screen-blanker' works all right but the automatic launch\n\tis defeated.\n\tSame for values of 10 and 40 seconds.\n\tI didn't have time to figure out the limit value for which Popcli will\n\twork (it works with default value and 240s).\n\tAnyway, despite I *love* the new feature (let's keep the secret :-),\n\tI'd rather have the old screen-blanker : at least I can sleep while\n\tthe Amiga is still on and working, and also it won't eat CPU-time I\n\tneed for Ray-tracing !!\n-- \n\n*- Francois Rouaix                    /       When the going gets tough,     *\n*- USENET:rouaix@inria.inria.fr     \\/            the guru goes meditating...*\n*  SYSOP of Sgt. Flam's Lonely Amigas Club. (33) (1) 39-55-84-59 (Videotext) *\n#! rnews 539\nPath: alberta!mnetor!uunet!husc6!uwvax!rutgers!lll-lcc!ames!sdcsvax!ucsdhub!hp-sdd!ncr-sd!crash!pnet01!hhaller\nFrom: hhaller@pnet01.cts.com (Harry Haller)\nNewsgroups: comp.dcom.modems\nSubject: Re: Facsimile on PC\nMessage-ID: <2140@crash.cts.com>\nDate: 14 Dec 87 04:36:13 GMT\nSender: news@crash.cts.com\nOrganization: People-Net [pnet01], El Cajon, CA\nLines: 4\n\nThere is a board you can plug into the backplane that purports to give you\nfull FAX capability with editing. Of course, I forget the name, but if you\nlook in the literature...\n()\n#! rnews 1436\nPath: alberta!mnetor!uunet!husc6!uwvax!rutgers!lll-lcc!ames!sdcsvax!ucsdhub!hp-sdd!ncr-sd!crash!pnet01!dm\nFrom: dm@pnet01.cts.com (Dan Melson)\nNewsgroups: rec.aviation\nSubject: Re: ARSA transition phraseology\nMessage-ID: <2141@crash.cts.com>\nDate: 14 Dec 87 06:16:11 GMT\nSender: news@crash.cts.com\nOrganization: People-Net [pnet01], El Cajon, CA\nLines: 21\n\nThe question was asked why an ARSA controller might want to know your\ndestination.\n\nActually, what they really want to know is where you're going *now*, like\n'direct PMD' or 'following I5 northbound' (I have *no* idea of what type of\nairspace that will take you through at any given altitude) or whatever course,\nheading, or whatever you intend to take through the ARSA.\n\nNow, if you're going to get flight following, the controller is going to want\nto know your complete route of flight for which you want flight following,\nso that it can be entered into the machine and the autumated handoffs can be\nused between sectors and facilities.\n\nAs for why, that's very simple.  For purposes of calling traffic, which I\nconsider to be sufficient, if no one else does.  The same reason the\ncontroller at the VFR tower asks your direction of departure.  If nothing\nelse, the controller can always tell the left downwind departures 'traffic a\n(whatever) reported 6 SE for a left base entry', or whatever is appropriate.\n\nMY opinions ONLY!\n                                              DM\n#! rnews 2759\nPath: alberta!mnetor!uunet!mcvax!diku!iesd!jacob\nFrom: jacob@iesd.uucp (Jacob stergaard B{kke)\nNewsgroups: comp.ai\nSubject: job search, Comp. eng.\nSummary: I'm looking for a job\nKeywords: Job, Computer. eng., Computer. sci., M.S.\nMessage-ID: <152@iesd.uucp>\nDate: 2 Dec 87 13:20:07 GMT\nReply-To: jacob@iesd.UUCP (Jacob \\stergaard B{kke)\nOrganization: Dept. of Comp. Sci., Aalborg University, Denmark (student)\nLines: 69\n\nI'm looking for a job in Computer Engineering to begin around July\n1988. I'm getting my Master of Science in Computer Engineering June\n1988 and at present holding a degree equal to BS in Electronic\nEngineering. My BS studies have included:\n\t\n\tComputer hardware (hands-on knowledge with mc68k),\n\tAnalog electronic \n\tControl engineering (analog and digital control)\n\nMy MS studies have included:\n\n\tSoftware development (man-machine interface, what people want\n\t\t\t      from programs) \n\tCompiler construction (an expertsystem shell) \n\tProgram environment (for CCS programming) \n\tDistributed operating systems (in UNIX)\n \tCompiler mapping object-orinted language on parallel computers\n\nFurthermore I do have experience in conventional programming (PASCAL,\nC, postscript, UNIX (awk, shell-scripts(C-shell) and yacc/lex) (and Basic)),\nfunctional programming (LISP and ML) and logical programming (Prolog)\nand knowledge about object-oriented programming. And I\nhave also attended courses in VLSI design, databases, etc. I have been\nworking with CDC under NOS/Telex, VAX 11/750 under Ultrix, SUN 3 under\nSun OS 4.3 (UNIX), MacIntosh (LISA) under Finder and IBM S36 under IBM\nproperty operating system.  \n\nMy spoken English is excellent and my written English is satisfactory,\ngood knowledge of the Scandinavian languages (Danish (of course),\nSwedish and Norwegian), some speaking and reading knowledge of German\nand limited knowledge of French and Spanish (and Latin). \n\nI have 5 years experience in group project work in engineering and\ncomputer scinence areas, broad social interest, good health.\n\nMy interest include computer hardware and software, operating system\ndesign, expertsystems, distributed, concurrency and teaching.\n\nI'm open on location (outside Denmark) but I have relatives or other\nreasons to be especially intereted in:\n\n\tCanada (British Colombia or Toronto)\n\tUSA (New England or Pacific Coast)\n\tPacific (New Zealand or Oceania)\n\tThailand\n\tScotland (Highlands)\n\nI'll look forward to any reponds.\n\n\t\tYours sincerely\n\t\t\t\n\t\t\tJacob Baekke, Denmark\n\nFor further information:\n\nReply to:     \tjacob@iesd.uucp, {...}!mcvax!diku!ised!jacob  or\n\t\t \nat Univ:\tJacob Baekke \n\t\tS9D (in spring S10)\n\t\tStrandvejen 19\n\t\tAUC\n\t\tDK--9000 Aalborg\n\t\tDenmark\n\nprivate:\tJacob Baekke\n\t\tDavids Alle 48\n\t\tDK--9000 Aalborg\n\t\tDenmark\n\t\tTel. 45-(0)8102673\n#! rnews 2425\nPath: alberta!mnetor!uunet!husc6!bbn!rochester!cornell!uw-beaver!uw-june!uw-entropy!dataio!suvax1!hirayama\nFrom: hirayama@suvax1.UUCP (Pat Hirayama)\nNewsgroups: rec.arts.anime\nSubject: Re: Speed Racer and the Mach 5\nMessage-ID: <810@suvax1.UUCP>\nDate: 14 Dec 87 05:28:25 GMT\nReferences: <1103@jumbo.dec.com>\nOrganization: Seattle University, Seattle, WA.\nLines: 45\n\nin article <1103@jumbo.dec.com>, schubert@jumbo.dec.com (Ann Schubert) says:\n> Posted: Thu Dec 10 15:26:21 1987\n> \n> \n>       THIS IS A RE-POST FROM REC.ARTS.TV\n> \n> \n> In article <4540011@wdl1.UUCP> (James Y. Nakamura) writes:\n> \n> I have a question about Speed.  We can't figure out all the neato gadgets his\n> car had I think it went like:\n> \t1:\tJacks that also made the car able to jump.\n> \t2:\t???\n> \t3:\tSaw blades that cut through stuff\t\n> \t4:\tCloses off the top so the Mach 5 becomes a sub..\n> \t5:\tHoming pidgeon on a rope.\n> \n\n        Don't forget the special treads which would appear on his tires\n        to allow for climbing up rough ground or driving near vertical.\n        \n        Every now and then, I remember that they would add a new option\n        (boy, don't you wish your friendly neighborhood dealership would\n         offer some of these for your car?).  Unfortunately, it has been\n        many years since I last saw Speed Racer, but I do remember one \n        episode which added little winglets which would come out from under-\n        neath the doors.  This added a little gliding ability.  Any one\n        else remember any?\n        \n\n> Also why did Speed have a G on his shirt?  Go doesn't really wash with me and\n> I don't know enough Japanese to equate letters. \n> \n\n        I used to know this but I can't remember anymore, though I\n        suspect that it might have to do with the original name of\n        the character/title of the show in Nihongo.  Help anyone?\n\n*******************************************************************************\n*                                          --Pat Hirayama                     *\n*                                          --Seattle University               *\n*                                                                             *\n* \"Yamato Hasshin!\" - Kodai Susumu                                            *\n*                                                                             *\n*******************************************************************************\n#! rnews 684\nPath: alberta!mnetor!uunet!mcvax!inria!axis!matra!godefroy\nFrom: godefroy@matra.UUCP (Eric Godefroy)\nNewsgroups: comp.unix.wizards\nSubject: 8 bits on a pseudo-tty\nMessage-ID: <252@matra.matra.UUCP>\nDate: 3 Dec 87 13:33:27 GMT\nReply-To: godefroy@matra.UUCP (Eric Godefroy)\nOrganization: Matra Datasysteme\nLines: 9\n\nOn 4.2 bsd, it seems difficult to set a pseudo-tty (ptyp / ttyp) in\nthe pass8 mode. Is it impossible really or how can I do that ?\n\n----------------------------------------------------------\n\n Eric Godefroy\t\t\t\tUUCP: mcvax!inria!matra!godefroy\n Matra Datasysteme\t\t\tTel:  (33-1) 30 58 98 00\n 1, av Niepce\t\t\t\tFax:  (33-1) 30 45 41 59\n 78180 Montigny-le-Bretonneux   France\n#! rnews 2663\nPath: alberta!mnetor!uunet!husc6!bbn!rochester!cornell!uw-beaver!uw-june!uw-entropy!dataio!suvax1!hirayama\nFrom: hirayama@suvax1.UUCP (Pat Hirayama)\nNewsgroups: rec.arts.sf-lovers,rec.arts.anime\nSubject: Re: Old TV shows\nMessage-ID: <811@suvax1.UUCP>\nDate: 14 Dec 87 05:54:39 GMT\nReferences: <4254@dandelion.CI.COM>\nOrganization: Seattle University, Seattle, WA.\nLines: 40\nXref: alberta rec.arts.sf-lovers:9224 rec.arts.anime:249\n\nin article <4254@dandelion.CI.COM>, david@dandelion.CI.COM (David M. Watson) says:\n> Xref: suvax1 rec.arts.sf-lovers:7102 rec.arts.anime:235\n> \n> \n> I have foggy but pleasant memories of three other converted Japanese\n> \t- (not anime, but...) Ultraman! (Was it: \"Hiyata! The beta capsule!\"?)\n> \t\tHe was a large silver \"good-monster\" with a red light\n> \t\tmounted on his chest that would blink whenever his batteries\t\n> \t\twere getting low.  And in his valiant, exhausting fights\n> \t\tagainst the dinosaur types that frequently showed up to\n> \t\tmenace the World, he almost always came close to running out!\n> \t\tAnd I remember a obligatory post-crisis trip to the jewelery\n> \t\tstore for Hiyata and friend!\n> \n> Would anyone like to refresh my memory about any of these three?\n> \n       - Ultraman was one of several incredibly popular shows in Japan during\n         the late 60s/early 70s/early 80s.  Actually, there were several shows\n         each featuring one or more of the \"Ultra\" brothers, of whom Ultraman\n         was the \"leader/head/eldest (you get the idea)\".  There was also\n         Ultra 5 and a bunch of others which I can't remember and it would \n         take a long time to dig out the books.  There was something of a\n         revival when UltraMan 80 (?) was released in Japan.  \n\n         Of these, I believe that only the original Ultraman was released\n         and dubbed for the American market.\n\n       - By the way, Hayata would be the way to spell his name (though it\n         would be more accurately pronounced by you gaijin as \"Hiyata\".\n         \n       - Of course, there is nary a trace of him now in Japan.  Programs\n         have this incredible tendency of grabbing hold of everyone, then\n         they drop it for something new.  \n\n*****************************************************************************\n*                                          -Pat Hirayama                    *\n*                                          -Seattle University              *\n*                                                                           *\n* > No messages or quotes right now <                                       *\n*****************************************************************************\n#! rnews 1910\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!nispa\nFrom: nispa@hutcs.hut.fi (Tapani Lindgren)\nNewsgroups: comp.unix.wizards,comp.unix.questions\nSubject: Unattended dumps (BSD4.3)\nMessage-ID: <9032@santra.UUCP>\nDate: 4 Dec 87 15:19:19 GMT\nSender: news@santra.UUCP\nFollowup-To: comp.unix.wizards\nOrganization: Helsinki University of Technology, Finland\nLines: 28\nXref: alberta comp.unix.wizards:5739 comp.unix.questions:4767\n\nI have encountered a problem trying to make a shell script that would\nmake incremental backups at nighttime without operator attendance.\nThe problem results from dump(8) program requiring occasional\nresponses from the operator through /dev/tty.  The script is\nrun from another script, /usr/adm/daily, under cron control and has no\ncontrolling terminal, so it just hangs trying to read /dev/tty.  It would\nbe ok if dump just aborted when facing a situation that would require\noperator intervention. The script should never hang in a loop under\nany circumstances, because /usr/adm/daily must do other things too\nand finish after a reasonable time.\n\nCurrently I have the dump script run a background subshell that sleeps for\nan hour and then kills the dump script (if it still runs) and all dump\nprocesses.  This is very complicated, however, and the watchdog process\nis almost 50% of the whole script.  It is also very slow - I would\nlike it to stop immediately if it finds an error, report it to log file,\nrewind the tape, and let /usr/adm/daily continue its work.\n\nHas anyone out there in the Netland have any suggestions of what to do?\nCan yes(1) somehow be piped to a program that reads /dev/tty?\nCould dump(8) be modified to abort at errors without any questions?\nWhat kind of unattended backup systems do you have?\n\n---\nTapani Lindgren, Helsinki Univ. of Technology, CS dept.\nINTERNET:\tnispa@hutcs.hut.fi\nUUCP:\t\tmcvax!santra!hutcs!nispa\nBITNET:\t\tnispa%hutcs.UUCP@fingate.BITNET\n#! rnews 2315\nPath: alberta!mnetor!uunet!husc6!bbn!oberon!pollux.usc.edu!kurtzman\nFrom: kurtzman@pollux.usc.edu (Stephen Kurtzman)\nNewsgroups: rec.food.cooking\nSubject: Re: Cooking Wines\nMessage-ID: <5698@oberon.USC.EDU>\nDate: 14 Dec 87 11:38:44 GMT\nReferences: <4628@pyr.gatech.EDU> <10722@sri-unix.ARPA> <2028@ttrdc.UUCP>\nSender: nobody@oberon.USC.EDU\nReply-To: kurtzman@pollux.usc.edu (Stephen Kurtzman)\nOrganization: University of Southern California, Los Angeles, CA\nLines: 37\n\nIn article <2028@ttrdc.UUCP> levy@ttrdc.UUCP (Daniel R. Levy) writes:\n>\n>2) (more seriously) I've seen bottles of \"wine for cooking\" that have had\n>   salt (and vinegar?) added.  These might be OK for sauces (yeah, the\n>   snootier gourmets wouldn't want anything to do with them) but they\n>   would obviously be horrible to drink.\n\nI think that these wines would be particularly bad for sauces that require\nwine as a major component and require reducing the wine. There are two\nreasons that come to mind:\n\n1) What is normally labeled as cooking wine is usually wine that is not good\nenough to sell as table wine. If the taste is not the best, reducing it will\nonly concentrate its flaws.\n\n2) Cooking wines contain salt. Reducing a cooking wine will concentrate the\nsalt. This could really ruin the sauce. \n\nThere best reason I have seen for using a good wine to cook with was given\nby Alexis Bespaloff in the \"New Signet Book of Wine\", which states\n\n \"Furthermore, it is actually uneconomical to buy cheap wine for cooking.\n  Say that an elaborate lobster dish calls for a spoonful or two of sherry\n  to heighten its flavor. A cook who runs out to buy a bottle of cheap\n  sherry will diminish the taste of an expensive and time-consuming dish with\n  a quarter's worth of wine. What's more, because the wine is a poor example\n  of its type, it may not be enjoyable to drink, so the spoonful of wine has,\n  in fact, cost the full price of the bottle.\"\n\nThat is fairly sound reasoning. Of course, the last sentence does not\nnecessarily follow. You could keep the cheap wine around to diminish several\nmeals.\n\nBTW, I recommend the \"New Signet Book of Wine\" to anyone who wants to learn\nmore about wine. It is available for $4.50 as a paperback. Quite a value\nwhen you compare it to the $20-or-more, glossy coffee-table wine books out\non the market.\n#! rnews 1809\nPath: alberta!mnetor!uunet!mcvax!enea!luth!d2c-usg\nFrom: d2c-usg@sm.luth.se (Ulrik\"Rick\"Sandberg)\nNewsgroups: rec.music.misc\nSubject: Re: Yes and ELP questions......\nKeywords: Tales from Topographic Oceans\nMessage-ID: <435@psi.luth.se>\nDate: 4 Dec 87 18:28:34 GMT\nReferences: <748@augusta.UUCP> <434@psi.luth.se>\nReply-To: Ulrik\"Rick\"Sandberg <d2c-usg@psi.luth.se>\nOrganization: University of Lulea, Sweden\nLines: 28\nUUCP-Path: {uunet,mcvax}!enea!psi.luth.se!d2c-usg\n\n\nIn article <434@psi.luth.se> I wrote:\n>In article <748@augusta.UUCP> bs@augusta.UUCP (Burch Seymour) writes:\n>>been looking for Tales on CD without success. To get to the point, is\n>>it (Tales) on CD?  \n>\n>One of my friends ordered it from a Recordshop in Gothenburg, but got\n>the answer that it was sold out. However, they didn't say that the\n>record isn't existing on CD. He was supposed to recieve it later.\n>Any wiser of that?\n>\n\nCorrection:\n\nReceived is spelled received, not recieved. :-)\n\nMy friend told me that they said \"Tales.. is not on CD.\" That's why he didn't\nget it. Sorry for the confusing information.\n\n\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n~                                                                             ~\n~  Ulrik 'Rick' Sandberg  d2c-usg@luth.UUCP (or)                              ~\n~  Computer Technology\t  d2c-usg@psi.luth.se (or)                            ~\n~  University of Lulea    {uunet,mcvax}!enea!psi.luth.se!d2c-usg              ~\n~  Sweden                                                                     ~\n~  phone: (0920)-977 90 (home)       \"I feel lost in the city...\"             ~\n~                                       --  Jon Anderson  --                  ~\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n#! rnews 1128\nPath: alberta!mnetor!uunet!husc6!rutgers!lll-lcc!pyramid!decwrl!cssaus.dec.com!bell\nFrom: bell@cssaus.dec.com (Peter Bell, SNA-2, Sydney)\nNewsgroups: rec.music.classical\nSubject: Hogwood\nMessage-ID: <8712141101.AA04882@decwrl.dec.com>\nDate: 15 Dec 87 05:23:00 GMT\nOrganization: Digital Equipment Corporation\nLines: 15\n\nI have just finished singing (in choir) under Hogwood, it was an experience. We\nsang Schuberts Mass in G, (as Schubert wrote it, missing a few phrases of the\nCredo). Hogwood knew exactly what he wanted, and worked till we did it right.\nThen as we tidied up the last few problems, he would let us sing through whole\nsections, then go back and point out all the problems.\n\nWe also sang the Messiah (not with Hogwood unfortunately) the delight of\nthose performances was Elizabeth Cambells singing \"He was despised...\"\n\nIn this performance the two trumpeters waited off stage until just before their\nappearances in each half, the first trumpet parts were played by a large\ntrumpeter (in nice to see that Sydney musicains are not starving) on what\nlooked like a very small valved trumpet (trumpet in F??).\n\nPeter.\n#! rnews 1252\nPath: alberta!mnetor!uunet!mcvax!dutrun!winffhp\nFrom: winffhp@dutrun.UUCP (Frits Post and/or Andrew Glassner)\nNewsgroups: comp.graphics\nSubject: abstracts wanted\nKeywords: ray tracing, abstracts\nMessage-ID: <190@dutrun.UUCP>\nDate: 2 Dec 87 09:14:55 GMT\nOrganization: Delft University of Technology,The Netherlands\nLines: 21\n\nI am preparing a list of technical memos, technical notes,\ninternal reports, and other such low-circulation documents\nthat deal with ray tracing.  I'm interested in documents\nboth large and small.  The documents need not be expressly\nabout ray tracing; the criterion is that the information in\nthe document be useful to ray tracing researchers in some way.\n\nIf you have prepared such a document, please send me enough\ninformation to digest it.  That would at least include your\nname and organization, the document's title, perhaps a reference\nnumber, and (very important!) an abstract.  \n\nAll contributors will receive a complete copy of the final list.\n\n-Andrew Glassner\n  email until 15 December: uunet!mcvax!dutrun!frits\n  email after 15 December: glassner@unc.cs.edu  ,  unc!glassner\n-- \n             ...mcvax!dutrun!frits    \n             Faculty of Mathematics and Informatics\n             Delft University of Technology\n#! rnews 593\nPath: alberta!mnetor!uunet!mcvax!lambert\nFrom: lambert@cwi.nl (Lambert Meertens)\nNewsgroups: sci.lang\nSubject: Re: Acquiring native accents\nMessage-ID: <136@piring.cwi.nl>\nDate: 5 Dec 87 22:56:44 GMT\nOrganization: CWI, Amsterdam\nLines: 8\n\nWhen I speak English I hear no Dutch accent in my voice.  But if my voice\nis recorded and played back to me I find the Dutch accent unmistakable.  If\nthis phenomenon is a general one, it goes a good deal towards explaining\nwhy adult learners of a new language do not fully master the native accent.\n\n-- \n\nLambert Meertens, CWI, Amsterdam; lambert@cwi.nl\n#! rnews 6735\nPath: alberta!mnetor!uunet!mcvax!philmds!leffe!janpo\nFrom: janpo@leffe.UUCP (janpo)\nNewsgroups: rec.music.misc\nSubject: Re: Ideas for improving the debate (was: Digital vs. Analog music)\nSummary: Digital versus Analog\nKeywords: CDs expensive audiophile equip. fourier analysis\nMessage-ID: <43@leffe.UUCP>\nDate: 4 Dec 87 13:55:04 GMT\nReferences: <574@ucdavis.ucdavis.edu> <522@altura.srcsip.UUCP> <3051@batcomputer.tn.cornell.edu>\nOrganization: Philips I&E DTS Eindhoven\nLines: 123\n\n\n\n1) Mr. Konar, press the 'n' key immediately! There's another arrogant\n   audiophile going to pollute the net with his view on the Digital vs.\n   Analog issue.\n\n2) I'm not very much acquainted with the news stuff on the net, but it\n   seems we don't receive the rec.audio newsgroup here in Europe. Can\n   something be done about that?\n\n3) Now let me come to the point.\n   In article <3051@batcomputer.tn.cornell.edu> eacj@batcomputer.tn.cornell\n   (Julian Vrieslander) he writes:\n>Konar than goes on to comment about the \"arrogance\" of audiophiles who still\n>prefer analog recordings to digital.  He says the issue should be laid to rest\n>, the implicit assumption being that the case has been proven that analog \n>recording is obsolete.\n\n>I for one think that the issue is still an open (and interesting) one, but I\n>am a bit surprised at how polarized and closed the recent comments to this\n>thread have been.  \n\nI agree with him, so let me do my bit now. A technology not being perfect\n, or getting close to that, is still worth a discussion. Remember that it\ntook about a 100 years of thorough research from Edison's first grammophone\nto the modern high quality turntables. Don't expect digital audio to be\nperfect now only a few years after its introduction, no matter what the\ncommercial guys say. They are only interested in your hard-earned $$$$.\n\nUntil now I have only been in the opportunity to make a good comparison\nbetween a high-end turntable and some first genaration. I'll summarize\nthe pros and cons of which I think are important and which I can think of\nnow. Many of them are well known, others may not.\n\nPROS OF ANALOG:\n- Cheap records.\n- As John Vrieslander mentioned: More real, more spatious, more delicate,\n  more emotionally involving. I won't try to find other words for this\n  description 'cause I can't think of a better one. Unfortunately, this\n  can only be heard on good, say > $2k-$3k systems without an infinite\n  number of knobs, lights and other gadgets normally found in aeroplane\n  cockpits.\n\nCONS OF ANALOG:\n- More hissy, rumble,scratches,sound degrading after many times of\n  playing the record. This counts less when you have good records\n  (Japanese ones are most often excellent but hard to get now.) and take\n  good care of them.\n- No flat frequency response, especially at the low and high end.\n- Phase distortion.\n- Harmonic distortion increases with amplitude.\n\nPROS OF DIGITAL:\n- Longer durability than records (?). Less hissy, no rumble or ticks of\n  scratches.\n- Almost no phase distortion, flat frequency response within the audio\n  range.\n- Easy to use.\n- Slightly (!) more dynamic. Why only slightly? Well, the 96 dB dynamic\n  range theoretically possible with a CD is not very practical. In reality\n  it is compressed, as far as I know, to some 40-60 dB depending on the\n  music (Pop, Jazz, Classic) because:\n  a) No one wants to run continuously to his volume knob to adjust the\n     volume.If not compressed the music will either be banging through your \n     living room and of your neighbours or it will drown in the inevitable \n     background noise.\n  b) Studio equipment has a dynamic range of less than, say, 70 to 80 dB\n     when you assume the Signal to Noise ratio being equal to the dynamic\n     range.\n  c) Sound gets to distorted at low levels. (See also cons)\n  d) A dynamic headroom of 10 dB is desired.\n  With all this limitations the dynamic range of CD's is not much different\n  with that of a good record.\n- Excellent bass response. Deep and well defined.\n- Very stable stereo image.\n\nCONS OF DIGITAL:\n- Expensive records.\n- When listening to a CD, it seems as if there is no \"space\" around around\n  the instruments and voices. It sounds cold and not very lively.\n- First generation players and the cheaper CD players nowadays suffer from\n  very distorted high tones. They sound harsh. Cymbals for instance sound\n  like someone is sawing them into pieces instead giving it a gentle hit\n  with a drum-stick. They do not sound crisp and clear.\n- Distortion increases dramatically with lower amplitudes (!). It can be\n  more than 1.5 % at low levels. And it's a very nasty kind of distortion.\n- CD players produce (digital) noise above the audio range. This noise itself\n  can not be heard but other audio equipment may suffer from intermodulation\n  distortion which brings this noise back in the audio range. \n- Many CD players, especially the first ones, do not seem to be very reliable\n  mechanically.\n- I've heard that digital audio recording is quite different from analog.\n  I mean in terms of how it has to be done properly. I don't mean the\n  equipment needed, that's quite obvious. Not all studio crew seem to know\n  how to make a good digital recording. Does anyone know more about that?\n\nWell, this must be enough stuff to think and talk about.\n\nThe above mentioned cons of digital audio may be overcome in the latest\nplayers but I have not had the opportunity until now to carefully listen\nto them and to compare them. According to some serious audio magazines\navailable here in Holland they seem to be improved. Many top-of-the-line\nmodels now have separated power supplys for the digital and analog\ncircuitry, opto-couplers between those circuits, an additional analog filter\nto filter out > 20 kHz noise, 16 bit with with n times oversampling, stable\nand rigid chassis and improved error correction. All this may have solved\n(some) of the cons I mentioned but I'm not sure. Players which have one or\nmore of these improvements and thus may be of interest (At least for Julian\nVrieslander and me) are: Philips (Magnavox in the USA I believe) CD 650 and\nCD 960, Nakamichi, Mission, Meridian and if memory serves me well, Acoustical\nResearch (Or Audio Research. Don't know anymore). The latter two may be\ndifficult to get in the USA, they are made in the UK. No doubt that there\nare more good CD players but can't think of others now. These are the\nplayers I consider buying when normal LP's are no longer available.\n\nPooh! That was more than I intended to write but still far less than I can\ntell about this stuff.\n\n                                        Kind regards from\n                                        Jan Postma\n\n\nAnd on the seventh day, God went surfing!\n#! rnews 1424\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!heiser\nFrom: heiser@ethz.UUCP (Gernot Heiser)\nNewsgroups: comp.emacs\nSubject: Setting terminal-emulator's environment\nKeywords: GNU Emacs function `terminal-emulator'\nMessage-ID: <261@bernina.UUCP>\nDate: 5 Dec 87 13:42:37 GMT\nReply-To: heiser@ethz.UUCP (Gernot Heiser)\nOrganization: ETH Zuerich, Switzerland\nLines: 18\n\n\nUsing the  GNU emacs terminal-emulator   to run interactive  programs  would be\nquite limited if the parent emacs  can't be used  for editing (when the program\nrun under the emulator starts up an editor).  While some  programs  (like `rn')\nallow to explicitely specify the  editor, a general  solution would require  to\nspecify `emacsclient'  in the `EDITOR'   environment  variable of  the  process\nrunning under the terminal emulator.\n\nNaturally this could be done by running  the  shell under the emulator, setting\nthe   environment of  the shell, and  then running   the program  we are really\ninterested  in.  A  better way  would be    to set  the   environment from  the\n`terminal-mode-hook'. Is there any means to achieve this???? (I'm running GNU\nEmacs version 18.49.)\n-- \nGernot Heiser                   Phone:       +41 1/256 23 48\nIntegrated Systems Laboratory   CSNET/ARPA:  heiser%ifi.ethz.ch@relay.cs.net\nETH Zuerich                     EARN/BITNET: GRIDFILE@CZHETH5A\nCH-8092 Zuerich, Switzerland    EUNET/UUCP:  {uunet,...}!mcvax!ethz!heiser\n#! rnews 1617\nPath: alberta!mnetor!uunet!mcvax!enea!sommar\nFrom: sommar@enea.UUCP (Erland Sommarskog)\nNewsgroups: rec.music.misc\nSubject: Re: another net.question\nMessage-ID: <2496@enea.UUCP>\nDate: 5 Dec 87 16:46:48 GMT\nReferences: <251@ho7cad.ATT.COM>\nReply-To: sommar@enea.UUCP(Erland Sommarskog)\nFollowup-To: rec.music.misc\nOrganization: ENEA DATA Svenska AB, Sweden\nLines: 27\n\nP.CLARK (prc@ho7cad.ATT.COM) writes:\n>\tShould a band play the entire new album when they do a concert?\n\n\nNo, why should they? There may be songs on the album that are \nvery good listening to at home, but just doesn't make it live,\njust as there are songs with the opposite character; good live, \nbut just a bore on disc.\n\nDeep Purple and Marillion and good example of extremes in both\nends. When I saw D.P. in February this year, they played three \nof the ten songs from \"The House of Blue Light\", their latest \nalbum. That is a quite decent product, but I didn't miss those\nsongs anyway. (I, and everyone else, would have been much more \ndisappointed if they had left out \"Smoke on the Water\".) \n  Marillion on the other hand; on the two tours they made after\n\"Misplaced Childhood\", they insisted on playing entire album\nas one long song. There are many parts on that album that just\nbecomes dead passages where nothing happens when they are played\nlive. (\"Bitter Suite\" and \"Blind Curve\" for instance.) Marillion\nis no good live band, and playing obsolete material does not\nmake things better.\n-- \nErland Sommarskog       \nENEA Data, Stockholm    \nsommar@enea.UUCP        \n                   C, it's a 3rd class language, you can tell by the name.\n#! rnews 4410\nPath: alberta!mnetor!uunet!mcvax!enea!sommar\nFrom: sommar@enea.UUCP (Erland Sommarskog)\nNewsgroups: rec.music.misc\nSubject: Re: More than Yes\nMessage-ID: <2502@enea.UUCP>\nDate: 5 Dec 87 19:18:59 GMT\nReferences: <22034@ucbvax.BERKELEY.EDU>\nReply-To: sommar@enea.UUCP(Erland Sommarskog)\nFollowup-To: rec.music.misc\nOrganization: ENEA DATA Svenska AB, Sweden\nLines: 72\n\nGrady Toss (ebm@ernie.Berkeley.EDU) writes:\n>Whenever this newsgroup gets around to discussing 70's/80's fusion (the\n>current go-round sparked by the proof that Yes is Best), the content\n>seems to be limited to the same 5 or 6 groups (Yes, Rush, ELP, King\n>Crimson, Pink Floyd, Genesis, etc.).  \n\nGrady seems to be confusing the issue a bit here. He talks about fusion and \nthe mentions groups that belong(ed) to the symphonic-rock genre. (I prefer\nthat term instead of \"progressive\") For me \"fusion\" is a synonym with \njazz-rock. Anyway, that is more of question of semantics, the two genres \nhave a lot in common. (The main difference maybe being that symphony-rock \nis European and fusion American.)\n\nThe reason why these groups are being discussed the most is probably that\nthey have gained the greatest commercial succes. This may or may not \nbe correlated to the fact they are the best. \n\n>Doesn't (didn't) anyone listen to\n>some of the (apparently) lesser-known fusion greats?  Bands and artists\n>like Arti + Mestieri, Brand X, Arthur Brown & Kingdom Come, Egg, Gilgamesh,\n>Hatfield & The North, Henry Cow, Alain Markusfeld, National Health, PFM,\n>Quiet Sun, Return to Forever, Seventh Wave, The Soft Machine, UK and\n>Weather Report.  \n\nBeing quite fond of this kind of music, I feel obliged to comment. It's\na real mixture Grady presents and I must admit there are names I have \nnever heard. Anyway, I think he is a bit unfair, some of them have \ncertainly been discussed on the net. For instance, I posted a discograhpy \non Brand X some month ago. Some comments to the other names:\n  PFM (Premiata Forneria Marconi) have been mentioned from time to time,\nthe Italian answer on Genesis, which developed in a different way. Now\ndisbanded, I believe. One day or another may be I'll post a discography.\n  Quiet Sun. The band in which Phil Manzanera played before he joined\nRoxy Music. Their \"Mainstream\" is rather like jazz, but not mainstream.\n  Seventh Wave. This is the name I never expected to see on the net! I\nbought their \"Things to Come\" when I was 15 and I was really fond of it\nthen. These days I don't find that amount of synthesizers so exciting as\nI did then.\n  Wheather Report. Quite well-known. But really, you do only need \"Heavy\nWheather\", the one with \"Birdland\". May be some more, \"Mysterious Traveller\"\nperhaps, but then you'll find that they all sound the same.\n\n>As I said before, I find much of Yes and ELP to be very dull, and un-\n>affecting.  I like Rush, though more live than on record.  \n\nAs you can guess, I don't share Grady's view here. Yes has made good\nmusic, yet never really touched my soul, probably due to their utterly\nstupid and semi-religious lyrics. \"Brain Salad Surgery\" is a very good\nrecord, the rest of what ELP have done is so-so. Rush don't turn me on \nat all, on the other hand. The net discussion inspired me to try \n\"A Farewell to Kings\" (A random choice). May be I would have liked them \n10 years ago, but not today with those lyrics and that voice.\n\n>So, were Yes, ELP, Pink Floyd, King Crimson, Genesis and Rush really \"it\"\n>as far as most progrock fans go, or did some of these \"lesser known\" artists\n>(and all the others I forgot or never knew) filter out to larger audiences?\n\nDepends on how you define your terms here, but I can easily think \nof more groups, some of them succesful, some of them not, some of them\ngood, some them not so good:\nKansas, Saga, Asia, Jethro Tull, Roxy Music, Gentle Giant, Van Der Graaf\nGenerator, George Duke, Billy Cobham, Al DiMeola, Herbie Hancock, Dixie\nDregs, Ange, (Mahavishnu) John McLaughlin, Santana, Bill Bruford etc\n  I think that most of these people have had their share of the discussion\non the net. So to conclude, I do not really share Grady's initial obser-\nvation. However some particular groups are certainly being over-discussed,\nnamely Rush, Yes and recently also Pink Floyd.\n-- \nErland Sommarskog       \nENEA Data, Stockholm    \nsommar@enea.UUCP        \n                   C, it's a 3rd class language, you can tell by the name.\n#! rnews 916\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!clinet!waldo\nFrom: waldo@clinet.FI (Tuomas Siltala)\nNewsgroups: rec.music.synth\nSubject: Siel DK80 sequenceer\nKeywords: How to use?\nMessage-ID: <553@clinet.FI>\nDate: 5 Dec 87 21:36:23 GMT\nReply-To: waldo@clinet.UUCP (Tuomas Siltala)\nOrganization: City Lines Oy, Helsinki, Finland\nLines: 17\n\nMy friend bought a Siel DK80 synthesizer and now he is wondering how\nthe sequencer in that machine works.\n \n \nUnfortunately we don't have any manuals for it.\n \nCould somebody kindly send me information concerning this problem?\n \nThank you!\n \n------------------------------------------------------------------------------\n \n  Tuomas Siltala                                 Internet: waldo@clinet.FI\n  Kalevankatu 51 B 37\n  SF-00180 Helsinki, Finland                     Telephone: +358-0-6947735\n \n------------------------------------------------------------------------------\n#! rnews 1655\nPath: alberta!mnetor!uunet!mcvax!enea!luth!d2c-czl\nFrom: d2c-czl@sm.luth.se (Caj Zell)\nNewsgroups: rec.music.misc\nSubject: Re: Black Sabbath songs\nMessage-ID: <437@psi.luth.se>\nDate: 6 Dec 87 01:38:40 GMT\nReferences: <1208@gumby.wisc.edu> <3590@h.cc.purdue.edu>\nReply-To: Caj Zell <d2c-czl@psi.luth.se>\nOrganization: University of Lulea, Sweden\nLines: 25\nUUCP-Path: {uunet,mcvax}!enea!psi.luth.se!d2c-czl\n\n\nIn article <3590@h.cc.purdue.edu> acu@h.cc.purdue.edu.UUCP (Floyd McWilliams)\nwrites:\n\n>\tWhile we're talking about Sabbath, does anyone know who does the\n>vocals on \"Solitute\" (from the Master of Reality album) and \"It's All Right\"\n>(from Technical Ecstasy)?  It sure doesn't sound like the Oz...\n\nI would like to add another song:\"Swinging The Chain\" on _Never Say Die!_.\nWho the hell does the vocals here?\n\nBy the way,has anybody heard the new album?\n\n\n      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n      X                                                            X\n      X                                                            X\n      X   Caj Zell                 \t ________________________  X\n      X   University of Lulea            :                      :  X\n      X   Sweden                         : Jazz is not dead,    :  X\n      X  \t\t\t\t : it just smells funny :  X\n      X   mail: d2c-czl@psi.luth.se\t : -Frank Zappa         :  X\n      X                                  :                      :  X\n      X                                  -----------------------:  X\n      X                                                            X\n      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n#! rnews 760\nPath: alberta!mnetor!uunet!mcvax!unido!gmdka!florin\nFrom: florin@gmdka.UUCP\nNewsgroups: comp.windows.x\nSubject: C++ re-hacks of X11 include files - (nf)\nMessage-ID: <2800001@gmdka.UUCP>\nDate: 3 Dec 87 13:16:00 GMT\nLines: 14\nNf-ID: #N:gmdka:2800001:000:458\nNf-From: gmdka!florin    Dec  3 14:16:00 1987\n\nHi there,\n\nI'm actually working on C++ re-hacks of the X11 include files.\nThere are some problems with Xlib.h. In structures\nVisual, XWindowAttributes and XColormapEvent there are variables named\n``class'' and ``new'' which cause serious problems (C++ keywords) !\n\nFor the moment I've changed the names, but this is an awful hack. Does anybody\nknow a better solution ?\n\n     -- Florin\n\nUUCP:  ...!uunet!unido!gmdka!florin\nX.400: florin@karlsruhe.gmd.dbp.de\n#! rnews 4069\nPath: alberta!mnetor!uunet!mcvax!ukc!reading!onion!riddle!domo\nFrom: domo@riddle.UUCP (Dominic Dunlop)\nNewsgroups: comp.unix.xenix,comp.sys.att,comp.sys.intel\nSubject: How to load AT&T 6300 Plus packages to generic UNIX V.3\nSummary: Here's a shell script to do it for you\nKeywords: Intel, 386/ix, Microport, Prime\nMessage-ID: <522@riddle.UUCP>\nDate: 4 Dec 87 17:47:52 GMT\nReply-To: domo@riddle.UUCP (Dominic Dunlop)\nFollowup-To: comp.unix.xenix\nOrganization: Sphinx Ltd., Maidenhead, England\nLines: 106\nXref: alberta comp.unix.xenix:1170 comp.sys.att:1825 comp.sys.intel:379\n\n[If there's a Microport newsgroup, it doesn't come here]\n\n\t\t\t\tBackground\n\nAT&T's generic UNIX V.3 for the 80386 (as sold in binary form by AT&T,\nBell Technologies, Intel, Interactive Systems, Microport, Prime etc.)\nwill run binaries created for UNIX V.2 on the 80286.  A large number of\npackages exists for AT&T's 6300 Plus, an 80286-based system running V.2.\nThese can be run on 80386-based systems while you're waiting for\nsoftware authors to come up with native 80386 ports of their products.\n\n\t\t\t\tProblem\n\nYou are supposed to load packages onto your 6300 Plus using the system's\nadministration procedures.  These handle weird multi-volume cpio diskette\nsets, which are a pig to load unless you have the installation software.\nWhich you don't if you're trying to load the software onto an 80386-based\nsystem running 386/ix, Microport, or whatever.\n\n\t\t\t\tSolution\n\nHere's a shell script which does the job.  If you want to know the details,\nit reads 350k, starting at offset 9k, from each 360k diskette in the\ninstallation set, piping the result into cpio -c.  It the fires off the\nInstall program which should be part of the application package.  As the\ncomments remark, there's not a lot of error checking, as it's essentially\na quick hack.  Also, testing is about at the ``worked twice in a row''\nlevel.  Despite all that, I hope it's useful to somebody out there.\n\nDominic Dunlop\ndomo@sphinx.co.uk  domo@riddle.uucp\n\n++++cut here++++++++cut here++++++++cut here++++++++cut here++++\n:\n# load_script\n#\n#   Shell script to load software packages delivered in AT&T PC\n#   6300+ UNIX V.2 format on systems where the PC 6300+\n#   installation procedure is not available (eg 386/ix).\n#   The script can be executed by any user who can read the raw\n#   diskette device.  However, the root password is requested\n#   before files are moved to their final destinations if this\n#   script is not run by the super-user.\n#\n#   Note that this script does NOT check that sufficient space is\n#   available to load the package.  In general, your /usr file\n#   system should have at least (700 * diskettes_in_package)\n#   blocks free before installation.  Note also that there is no\n#   check that the diskettes are in the correct format, or that\n#   they are inserted in the correct order.\n#\n# 871204 DFD\tCreated\n\n# Change the following device assignment if the 360kB raw\n# diskette device on your system has a different name.\nDEV=${DEV-/dev/rdsk/f0d9dt}\n\nif [ ! -r $DEV -o ! -c $DEV ]\nthen\n\t cat << E_O_F\nCan't read $DEV.  Check raw diskette device name and/or your\naccess permissions.\nE_O_F\nexit 1\nfi\n\ncd /usr/tmp\nmkdir install 2>/dev/null\ncd install\nIT=\"the first diskette of the package\"\n\ntrap \"echo Installation aborted.; rm -r /usr/tmp/install; exit 1\" 2 15\n(\n\twhile echo \"Insert $IT and hit return >\\c\" 1>&2  \\\n\t\t&& read ANS\n\tdo\n\t\tIT=\"next diskette\"\n\t\techo \"The following files are being loaded:\" 1>&2\n\t\tdd if=$DEV ibs=1k obs=5k skip=9 count=350 2>/dev/null\n\tdone\n) | cpio -icvmudB 1>&2\n\nchmod +x Install\n\ntrap 2 15\n\ncat << E_O_F\nFiles read from diskettes.  You may remove the last diskette from\nthe drive.  If you are not already logged in as the super-user,\nPlease enter the root password to continue with installation.\nE_O_F\nif su root -c ./Install\nthen\n\tcat << E_O_F\nInstallation complete.  You should execute\n\trm -r /usr/tmp/install\nto remove installation scratch files at a convenient time.\nE_O_F\nelse\n\tcat << E_O_F\nInstallation failed.  To retry,\n\tsu\n\tcd /usr/tmp/install\n\t./Install\nE_O_F\nfi\n#! rnews 1801\nPath: alberta!mnetor!uunet!mcvax!ukc!reading!onion!bru-me!ralph\nFrom: ralph@me.brunel.ac.uk (Ralph Mitchell)\nNewsgroups: comp.graphics,sci.space,sci.space.shuttle\nSubject: Re: 3d digitized shuttle data\nMessage-ID: <338@Pluto.me.brunel.ac.uk>\nDate: 4 Dec 87 09:49:43 GMT\nReferences: <509@otto.cvedc.UUCP>\nReply-To: ralph@me.brunel.ac.uk (Ralph Mitchell)\nOrganization: Brunel University, Uxbridge, UK\nLines: 26\nXref: alberta comp.graphics:1381 sci.space:3674 sci.space.shuttle:445\n\nIn article <509@otto.cvedc.UUCP> billa@otto.UUCP (Bill Anderson) writes:\n>In article <> apollo@ecf.toronto.edu (Vince Pugliese) writes:\n>>\n>>As well I will be include a very simple C program, hacked together by fellow group member\n>> [...]\n>\n>If anyone out there in netland converts this C program so that it can be\n>run on suns, please post the results of your work to the net.\n\nIt has already been done.  The program should be in /usr/demo/SRC/shaded.c,\nthe shuttle data is in /usr/demo/DATA/space.dat.  There are notes on running\nit in /usr/demo/README.  The program displays 2 windows with cursor lines, to\nenable you to select the 3d viewpoint, and there's a pop-up menu for setting\nfill style and colour, &c.  For monochrome you need to select the \"edges\" (I\nthink) fill style or it'll look pretty wierd.  Also, if your display surface\ndoesn't support hidden surface removal, you'll get a wireframe effect that\ncan be confusing to the eye.\n\n/usr/demo/DATA also contains data files for an icosahedron, a pyramid, a\nball and a Klein bottle.\n\n--\n From:  Ralph Mitchell at Brunel University, Uxbridge, UB8, 3PH, UK\n JANET: ralph@uk.ac.brunel.cc\t  ARPA:  ralph%cc.brunel.ac.uk@cwi.nl\n UUCP:  ...ukc!cc.brunel!ralph   PHONE: +44 895 74000 x2561\n \"There's so many different worlds, so many different Suns\" -- Dire Straits\n#! rnews 1156\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: SPACE WAR BLUES (was Re: Gibson)\nMessage-ID: <809@its63b.ed.ac.uk>\nDate: 4 Dec 87 12:49:58 GMT\nReferences: <8711211710.AA02986@decwrl.dec.com>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 17\n\nIn article <8711211710.AA02986@decwrl.dec.com> boyajian@akov68.dec.com (JERRY BOYAJIAN) writes:\n>(Oh, before anyone asks the obvious question, the author was Richard\n>Lupoff, who is one of the best unknown science fiction writers around.)\n\nI find this statement hard to believe, based on the quality\nof his book \"Circumpolar\". It is full of characters which\nbarely qualify as two dimensional, offensive racial stereotypes\nand various other assorted characters whose collective IQ doesn't get\ninto double figures. I rated this book as -****.\n\nI cannot believe that someone who turned out such complete\ndrivel could improve enough in other books to even qualify\nas average.\n\nI am however, willing to be surprised. What other books of\nhis would people recommend?\n\tBob.\n#! rnews 1599\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: sci.misc\nSubject: Re: Grey Goo that's too smart for its own good\nKeywords: nanotechnology foresight drexler\nMessage-ID: <810@its63b.ed.ac.uk>\nDate: 4 Dec 87 13:10:07 GMT\nReferences: <799@sbcs.sunysb.edu> <2698@drivax.UUCP> <1063@sugar.UUCP> <2411@watcgl.waterloo.edu> <1445@m-net.UUCP> <1526@mmm.UUCP> <2783@drivax.UUCP>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 23\n\nIn article <2783@drivax.UUCP> macleod@drivax.UUCP (MacLeod) writes:\n>In article <1526@mmm.UUCP> cipher@mmm.UUCP (Andre Guirard) writes:\n>>In article <1445@m-net.UUCP> russ@m-net.UUCP (Russ Cage) writes:\n>>>In <2411@watcgl.waterloo.edu> kdmoen@watcgl.waterloo.edu (Doug Moen) writes:\n>>>>[...]  If it *does* turn out to be possible to build Grey Goo,\n>>>>then by the time fabrication technology catches up, perhaps we can have\n>>>>a wide spectrum of Goo killing techniques already available.\n>\n>Goo seems almost inevitable. It should not be a big problem, of itself;\n>the definition of Goo (for those not familiar with the problem) is that\n>of a nanomachine that will use any available energy and raw material to\n>reproduce itself periodically.  If it reproduces at 2x per year you have\n>one problem, relatively minor; if it reproduces at 512x per minute, you have \n>quite another.\n\nI can hear the squeals from the anti-nuclear type lobby already\n\n\tCan you PROVE it is safe?\n\tCampaign against the Grey Goo!\n\tprevent Nano-technology!\n\nand not a :-> in sight.\n\tBob.\n#! rnews 3115\nPath: alberta!mnetor!uunet!mcvax!ukc!cheviot!robert\nFrom: robert@cheviot.newcastle.ac.uk (Robert Stroud)\nNewsgroups: comp.unix.wizards\nSubject: Re: //host vs \"mount point\"\nMessage-ID: <2584@cheviot.newcastle.ac.uk>\nDate: 4 Dec 87 16:22:51 GMT\nReferences: <648@tut.cis.ohio-state.edu> <1668@tut.cis.ohio-state.edu> <38c15248.4580@hi-csc.UUCP> <9559@mimsy.UUCP> <411@PT.CS.CMU.EDU> <6769@brl-smoke.ARPA>\nReply-To: robert@cheviot (Robert Stroud)\nOrganization: Computing Laboratory, U of Newcastle upon Tyne, UK NE17RU\nLines: 62\n\nIn article <6769@brl-smoke.ARPA> gwyn@brl.arpa (Doug Gwyn (VLD/VMB) <gwyn>) writes:\n>In article <411@PT.CS.CMU.EDU> jgm@K.GP.CS.CMU.EDU (John Myers) writes:\n>>Just to add to the confusion, let me put in a plug in for the Carnegie-Mellon\n>>University Computer Science Department's syntax:\n>>/../host\n>\n>Stolen from the Newcastle Connection.\n>\n>>\"/..\" is known as the \"super-root\".  It seems logically consistent to me...\n>\n>So, what is the result of\n>\t$ cd /..\n>\t$ pwd\n\n/.. of course!!\n\nIf you add directories above root (and remember that with the Newcastle\nConnection, /.. was just a directory rather than some mysterious \n\"super-root\") so that it is possible for your current directory to\nbe in an uncle or cousin relationship with root (rather than a direct\ndescendent), then you have to modify the pwd algorithm accordingly.\n\npwd assumes that if you go up the tree with \"..\" enough times you will\nget to root. If your current directory is in a sideways relationship\nto root, this assumption will no longer be valid.\n\nThe modified pwd algorithm should work like this:\n\n(1) Go up the tree with .. from your current directory until you\nfind / or reach the base of the tree (a directory which is its own\nparent).\n\n(2) If you didn't reach / in (1), then starting from / go up to\nthe base of the tree with .. and prefix the appropriate number of\n/..'s to the string from (1).\n\nFor example, after cd /../../C/D, step (1) will give /C/D and step (2)\nwill give /../.. so the answer is /../../C/D.\n\nThis is relatively straightforward to implement. I've made the necessary\nmodifications to the System V /bin/pwd and sh (which has a built-in pwd)\nfor use with a kernel implementation of the Newcastle Connection.\n\nThe tricky bit is getting the shortest possible pathname. For example,\nif / corresponds to /../../A/B in the global naming tree, then after\ncd /../C, the modified pwd algorithm would give /../../A/C which is\ncorrect but redundant. (/../../A is the same as /.. if / is /../../A/B).\n\nThis can be fixed if you keep a record of everywhere you visit in (1) and\nstop in (2) when you reach somewhere you've visited before, but since in\nan infinite naming tree this would require an infinite amount of storage\nand isn't very efficient in any case, it is easier to simply implement\nthe algorithm given (which also requires an infinite amount of storage\nin the general case of course!) and ignore this problem.\n\nRobert J Stroud,\nComputing Laboratory,\nUniversity of Newcastle upon Tyne.\n\nARPA robert%cheviot.newcastle@nss.cs.ucl.ac.uk\nUUCP ...!ukc!cheviot!robert\nJANET robert@newcastle.cheviot\n#! rnews 835\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!pyr1.cs.ucl.ac.uk!awylie\nFrom: awylie@pyr1.cs.ucl.ac.uk\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: Standard date bug\nMessage-ID: <39500002@pyr1.cs.ucl.ac.uk>\nDate: 4 Dec 87 13:58:00 GMT\nReferences: <7457@eddie.MIT.EDU>\nLines: 12\nNf-ID: #R:eddie.MIT.EDU:7457:pyr1.cs.ucl.ac.uk:39500002:000:432\nNf-From: pyr1.cs.ucl.ac.uk!awylie    Dec  4 13:58:00 1987\n\n\nI have a Taiwanese XT clone with some strange BIOS and MSDOS 3.2 and the\nbug has annoyed me some time. This is NOT the 'subtle' bug mentioned in\nanother reply, but a simple non-increment of the date at midnight. This\nwreaks havoc with MAKE!\n   I shall try CLOCKFIX.SYS tonight. Thanks very much to the poster, his\nwas the only really useful solution proposed.\n\nAndrew Wylie\nUniversity of London Computer Centre\n\nawylie@uk.ac.ucl.cs\n#! rnews 847\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!bath63!sc_dra\nFrom: sc_dra@ux63.bath.ac.uk (Dave Allum)\nNewsgroups: comp.sys.atari.st\nSubject: Hard Disk Optimisers\nSummary: Recommendations wanted\nMessage-ID: <1972@bath63.ux63.bath.ac.uk>\nDate: 4 Dec 87 15:53:49 GMT\nReply-To: sc_dra@ux63.bath.ac.uk (Dave Allum)\nOrganization: SWURCC, University of Bath, U.K.\nLines: 13\n\n\nDoes anyone have any recommendations for and/or experience of hard disk\noptimisers for the ST?\n\nThe only ones I have come across are Simon Poole's DLII and Michtron's\nTune Up! (their exclamation mark, not mine).\n\nI have tried neither (DLII did some strange things with a ram disk I \ntested it on, and I'd rather not pay for Tune Up! until I have some\nfavorable reports on it) and would be very interested in  anyone's\nexperiences with the above or any other such beasts.\n\nThanks.\n#! rnews 1573\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: sci.physics\nSubject: Re: GR question\nMessage-ID: <811@its63b.ed.ac.uk>\nDate: 4 Dec 87 17:31:49 GMT\nReferences: <4688@cit-vax.Caltech.Edu> <895@ubc-vision.UUCP>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 28\n\nIn article <895@ubc-vision.UUCP> majka@ubc-vision.UUCP (Marc Majka) writes:\n>would see the \"poor fellow's\" delta-t getting longer.  The poor fellow\n>crosses the Absolute Event Horizon in a finite amount of (his) time.\n>The observer sees the poor fellow falling more and more slowly (while\n>also seeing him getting exponentially red-shifted) toward r=2M, but\n>never getting there.  I liked the presentation of this in my GR textbook:\n\nThe observer, if he waited around long enough, would also\nsee the black hole evaporate by Hawkins' radiation.\n\nBut, from the point of view of the observer, the \"poor fellow\"\ncan never cross the event horizon before the hole evaporates\naway from under him.\n\nTherefore, the \"poor fellow\" must observe one of two things.\nEither he crosses the event horizon in a finite amount of\ntime, or he will observe the black hole to vanish as he\napproaches.\n\n1. sets up a paradox, but 2. implies that anything falling\ninto a black hole can't get into the black hole before it\nevaporates. i.e. the black hole can't form in the first\nplace. It just get very close to it.\n\n\nWould someone please comment on the above. I am sure I must\nbe missing something. (I'm no physicist)\n\tBob.\n#! rnews 2122\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!zen!frank\nFrom: frank@zen.UUCP (Frank Wales)\nNewsgroups: news.config\nSubject: Updated map entry for zen\nKeywords: new host computer\nMessage-ID: <787@zen.UUCP>\nDate: 3 Dec 87 22:20:52 GMT\nOrganization: Zengrange Limited, Leeds, England\nLines: 47\n\n\nIt's a bit late  again,  we've been  running  the new system for about 3\nmonths now, but here is our updated map entry:\n\n#N\tzen\n#S\tHP 9000 Model 840; HP-UX 1.1 (V.2)\n#O\tZengrange Limited\n#C\tJulian Perry, Frank Wales\n#E\tjules@zen.co.uk ...!mcvax!ukc!zen.co.uk!jules\n#T\t+44 532 489048\n#P\tGreenfield Road, Leeds, West Yorkshire, England, LS9 8DB\n#L\t01 31 22 W / 53 47 42 N\n#R\n#\nzen\thwcs(DAILY)\n\n\nWho we are and what we do:\n\nAs a company, we produce  custom  solutions  on  hand-held  and portable\nequipment,  primarily   customising   Hewlett-Packard   hand-helds.  For\nexample, we recently installed almost 6 000 HP-71 hand-held computers as\nnetworked  terminals in 430 DHSS offices as part of a Document  Tracking\nSystem developed by us to a DHSS specification.\n\nWe're not just a software  house, but also develop custom  packaging and\nelectronics where necessary too.  Our customers are primarily government\ndepartments  (here and abroad), but we have also  produced  products for\nindividual sale through dealers (such as the Zenwand-71 barcode wand for\nthe HP-71, which span off of the DHSS contract).\n\nAlthough our products are almost exclusively  related to hand-helds, our\nexpertise  stretches through to custom chip design and  mainframe-hosted\nsoftware  packages  (mainly  under Unix).  As a  consequence,  we regard\nourselves as a solutions  house, rather than being specific to software,\nhardware, design or whatever.\n\nWe have one  office [in  Leeds],  have been  around for seven  years and\nemploy over 40 people at present.  Is that a reasonable summary?\n\nJules & Frank\n\nJulian Perry               [ jules@zen.co.uk  ...!mcvax!ukc!zen.co.uk!jules ]\nFrank Wales                [ frank@zen.co.uk  ...!mcvax!ukc!zen.co.uk!frank ]\nSystem Managers\nZengrange Limited          Phone: +44 532 489048 ext 217\nLeeds, England.\n#! rnews 1158\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: rec.music.classical\nSubject: Re: re repeat repeating pieces\nMessage-ID: <1567@brahma.cs.hw.ac.uk>\nDate: 4 Dec 87 18:18:28 GMT\nReferences: <8712011820.AA18589@decwrl.dec.com>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 13\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n[ignore the above email address and use my signature]\nI may have missed some of this thread, but I haven't heard anyone mention\nSatie yet. His Vexations for piano is meant to be repeated 840 times\n(it takes about 18 hours to perform). He also wrote some pieces of music\nto be played in particular spaces - \"Music for a Boardroom\" is one\nthat comes to mind - which go round and round in circles. (I think that one\nwould produce some #@$% aggressive board meetings).\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1124\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!dww\nFrom: dww@stl.stc.co.uk (David Wright)\nNewsgroups: comp.os.vms\nSubject: Problem with VMS 4.6 if your uVAX has EMULEX CS02's\nMessage-ID: <596@acer.stl.stc.co.uk>\nDate: 4 Dec 87 21:54:38 GMT\nReply-To: dww@stl.UUCP (David Wright)\nOrganization: STL,Harlow,UK.\nLines: 16\n\nOur System Manager has reported that there is a problem with using EMULEX CS02\nQBUS comms cards which are not at the latest revision level, under VMS 4.6.   \nThese cards appeared to work fine under VMS 4.5 and earlier.\n\nThe EMULEX CS02 card, configured as two DHV-11 8-line muxs, gives phantom\ndevices when running SHOW DEVICE.   For example, TXC0 to TXC7 become TXC0 to\nTXC15.  There are problems in using the lines - for example Control-Y acts\non the group of lines not just one!  There are other problems known to EMULEX. \n\nThe solution is to upgrade the firmware PROM on the card to at least\nrevision P.  Emulex may make a charge for this.\n\n-- \nRegards,\n        David Wright           STL, London Road, Harlow, Essex  CM17 9NA, UK\ndww@stl.stc.co.uk <or> ...uunet!mcvax!ukc!stl!dww <or> PSI%234237100122::DWW\n#! rnews 384\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!jgh\nFrom: jgh@root.co.uk (Jeremy G Harris)\nNewsgroups: comp.sys.amiga\nSubject: New Kickstart\nKeywords: Kickstart workbench janus\nMessage-ID: <489@root44.co.uk>\nDate: 4 Dec 87 19:05:27 GMT\nOrganization: Root Computers Ltd., London, England\nLines: 3\n\nWill the Workbench-less Kickstart initialise Janus?\n-- \nJeremy Harris\t\t\tjgh@root.co.uk\n#! rnews 1018\nPath: alberta!mnetor!uunet!mcvax!unido!stollco!til\nFrom: til@stollco.UUCP (tilgner)\nNewsgroups: sci.astro\nSubject: The current state of Hubble Constant?\nKeywords: Cosmology\nMessage-ID: <142@stollco.UUCP>\nDate: 5 Dec 87 18:32:42 GMT\nOrganization: Stollmann Gmbh, D 2000 Hamburg 50\nLines: 17\n\nI am just preparing a 'semi-popular' lecture on how the\nvalue of the Hubble Constant is determined.\n\nAs is generally\nknown, the values of different authors fluctuates between\nca. 50 to 100 km/(sec Mpc). The latest discussion of this\nproblem which I know of is M. Rowan-Robinson's book\n\"The Cosmological Distance Ladder\" (Freeman 1985). He\nadvocates 67 km/(sec Mpc) after a detailed discussion of\nthe different distance indicators.\n\nNow I would like to know: What is the current state of\naffairs? The responses of the advocates of the various\nvalues, for example by Sandage & Tammann or de Vaucouleurs\n(= the grand old men of this topic)? Somehow I missed\ntheir reactions. Can anybody give me a hint via e-mail?\nI'll summarize.\n#! rnews 2734\nPath: alberta!mnetor!uunet!mcvax!enea!ttds!draken!zap\nFrom: zap@draken.nada.kth.se (Svante Lindahl)\nNewsgroups: comp.unix.wizards,comp.emacs\nSubject: Re: Emacs csh alias\nMessage-ID: <235@draken.nada.kth.se>\nDate: 6 Dec 87 07:00:31 GMT\nReferences: <10672@brl-adm.ARPA>\nReply-To: zap@nada.kth.se (Svante Lindahl)\nFollowup-To: comp.emacs\nOrganization: The Royal Inst. of Techn., Stockholm\nLines: 49\nXref: alberta comp.unix.wizards:5741 comp.emacs:2402\n\n[Warning: Extensive inclusion, but I have included a new newsgroup in\n the newsgroups-line, and directed followups to it (comp.emacs)]\n\nIn article <10672@brl-adm.ARPA> dsill@NSWC-OAS.arpa (Dave Sill) writes:\n>I've been trying to set up a C-Shell (4.2 BSD) alias for Emacs (GNU\n>17.64, not that it matters) which, when run the first time will\n>actually run Emacs, but after suspending Emacs with C-z, will bring\n>the background Emacs job to the foreground.  The catch is that I'd\n>also like the alias to re-load emacs if I exit with C-x C-c.  Simply\n>stated, I want an alias named \"emacs\" which will load Emacs if it\n>isn't already loaded, but will foreground a background Emacs if one\n>exists.\n>\n>I know I could do this with a script (if I assume the Emacs job is\n>always job %1), but I'd prefer an alias since they're faster.  It\n>would be especially nice to determine which background job was the\n>Emacs job and foreground *it*, instead of just assuming job %1.\n>\n>Any ideas or alternate approaches?  Should I just put up with the\n>occasional \"fg: No such job.\" message?\n\nHere is something which should do part of what you want. It doesn't\naccomplish to start a new emacs process if you exited the last one\nwith C-x C-c - unless the first one had never been suspended!\nWhenever you get \"fg: No such job\" just type ``i!!'', reinvoking the\ncommandline prefixed with an \"i\", \"iemacs\" standing for \"init emacs\".\n\nalias emacs iemacs\nalias iemacs 'alias emacs remacs; \"emacs\" \\!* ; alias emacs iemacs'\nalias remacs fg %emacs\n\nHere we use a special version of suspend-emacs, that will look for a\nfile \".emacs_pause\" in the user's home directory when emacs is\nresumed. In this file suspend-emacs expects to find the current\nworking directory and an optional \"command line\" that is parsed like\nthe initial command line.  Very useful!\nThis could be done using \"suspend-resume-hook\", but the hook wasn't\navailable in 17.?? when this was first implemented here.\n\nThese are the aliases I use together with the special version of\nsuspend-emacs.\n\nalias emacs iemacs\nalias remacs 'echo `pwd` \\!* >\\! ~/.emacs_pause ; %emacs'\nalias iemacs 'alias emacs remacs; \"emacs\" \\!* ; alias emacs iemacs'\nalias kemacs 'alias emacs iemacs; remacs -kill'\n\n\nSvante Lindahl\t\tzap@nada.kth.se\t\tuunet!nada.kth.se!zap\n#! rnews 2721\nPath: alberta!mnetor!uunet!mcvax!diku!iesd!jpc\nFrom: jpc@iesd.uucp (Jens P. Christensen)\nNewsgroups: comp.unix.questions,comp.unix.wizards,sci.math.stat\nSubject: Problems with S statistical package\nSummary: Cannot make S work properly on Sun-3\nKeywords: S AT&T Sun-3 SunOS 3.4\nMessage-ID: <162@iesd.uucp>\nDate: 5 Dec 87 19:41:09 GMT\nReply-To: jpc@iesd.UUCP (Jens P. Christensen)\nFollowup-To: comp.unix.questions\nOrganization: Dept. of Comp. Sci., Aalborg University, Denmark\nLines: 58\nXref: alberta comp.unix.questions:4768 comp.unix.wizards:5742 sci.math.stat:213\n\nCould anyone please shed light on a problem I have in compiling the S\nstatistical package from AT&T on our Sun-3 system:\n\nSystem specifics: Sun 3/260 under SunOS 3.4 using the m4 macro\nprocessor supplied with the S system. S version date: Fri Feb 28 1986\n\nUsing the hints on compiling with BSD4.2 systems I only get apparently\nharmless warnings under the compilation. This could for example be:\n\nWarning on line 84 of hcp.f: local variable i never used\nWarning on line 96 of stems.f: statement cannot be reached\nf77: Warning: File with unknown suffix (/usr/local/src/s/S/newfun/lib/grz)\n     passed to ld\nor\n\"dprint.c\", line 20: warning: illegal combination of pointer and integer, op =\n\nFurthermore there are problems with the utility routine scandata.C, which\nfails with error: too many local variables. This is fixed by making the\ndeclaration of \"table\" global. Not pretty, but it works.\n\nThese are all the kinds of problems that appear during the\ncompilation, and it *will* result in an executable, except....\nThe f...ing system doesn't even know how to add two numbers, as seen in\nthe following:\n\nOne-time initialization for new S user in /usr.MC68020/iesd/tap/jpc ...\nDirectories swork and sdata created\n> 1 + 2\nBad operator: +\nError in +\n> \n\nRunning the tests supplied with the system ($A/DOTEST ALL) will not\ngive better results. This is an excerpt from $TEST/current/apply:\n\n> prefix(\"apply.\")    # test of apply and multivariate stuff, some time-series\n> $Random.seed_c(57,0,3,0,0,0,49,16,0,0,0,0)\t# to initialize at same spot\n> matr_matrix(rnorm(100),20,5)\nInvalid distribution: rnorm\nError in rnorm\nDumped\n> print(cm_apply(matr,2,\"mean\")); apply(matr,2,\"var\")\napply.matr not found\nDumped\n .\n .\nand more depressing errors...\nWhy does the prefix command work, while the matr_matrix(rnorm... stuff don't?\n\nSo, have *anybody* made this run on a Sun system, and how did you do it?\nAll suggestions or pointers to which direction I should go, are welcome.\n\nregards,\n-- \nJens Peter Christensen                               jpc@iesd.uucp\nDepartment of Math. and Computer Science             {...}!mcvax!diku!iesd!jpc\nAalborg University Centre\nDenmark\n#! rnews 1496\nPath: alberta!mnetor!uunet!mcvax!lambert\nFrom: lambert@cwi.nl (Lambert Meertens)\nNewsgroups: sci.math.symbolic\nSubject: Bug in Macsyma SOLVE\nMessage-ID: <137@piring.cwi.nl>\nDate: 6 Dec 87 21:50:53 GMT\nOrganization: CWI, Amsterdam\nLines: 39\n\nThis is UNIX MACSYMA Release 309.2.\n\n(c1) x^12-12*x^11+48*x^10-40*x^9-193*x^8+392*x^7+44*x^6+8*x^5-977*x^4\n     -604*x^3+2108*x^2+4913;\n\n      12       11       10       9        8        7       6      5        4\n(d1) x   - 12 x   + 48 x   - 40 x  - 193 x  + 392 x  + 44 x  + 8 x  - 977 x\n                                                             3         2\n                                                      - 604 x  + 2108 x  + 4913\n\n(c2) solve(%);\n                      6       5       4        3        2\n(d2)          [0 = - x  + 12 x  - 47 x  + 188 x  - 527 x  - 4913]\n\nThat looks wrong, but let's check if it factors (d1):\n\n(c3) part(%,1,2);\n                    6       5       4        3        2\n(d3)             - x  + 12 x  - 47 x  + 188 x  - 527 x  - 4913\n\n(c4) gcd(%,d1);\n\n(d4)                                   1\n\nNo, it does not.  Let's have a look at the real roots of (d1) and (d3):\n\n(c5) realroots(d1)$ %,numer;\n\n(d6) [x = - 1.960768669843674, x = - 1.544090360403061, x = 3.544090360403061,\n                                                         x = 3.960768669843674]\n(c7) realroots(d3)$ %,numer;\n\n(d8)           [x = 5.472395747900009, x = 7.766151040792465]\n\nWay off.\n\n-- \n\nLambert Meertens, CWI, Amsterdam; lambert@cwi.nl\n#! rnews 989\nPath: alberta!mnetor!uunet!mcvax!unido!tub!actisb!bernd\nFrom: bernd@actisb.UUCP (Gunter Nitzler)\nNewsgroups: comp.sources.bugs\nSubject: Re: Starchart printing problem\nMessage-ID: <116@actisb.UUCP>\nDate: 6 Dec 87 15:55:23 GMT\nReferences: <3554@ames.arpa>\nReply-To: bernd@actisb.UUCP (Bernd-Gunter Nitzler)\nOrganization: Actis in Berlin GmbH, W. Germany\nLines: 19\n\nIn article <3554@ames.arpa> yee@ames.UUCP (Peter E. Yee) writes:\n>I compiled and ran the starchart program.  The starpost version prints out\n>the outline of the chart and the legend.  Nothing more.  No stars, no planets,\n>no nebulas.  Nothing.  Is it just me, or has anyone else had this problem?\n\nI had the same problem and have found two bugs:\n\nIn starchart.c, line 243 old:\n\tchar ras[2], ....\nnew:\n\tchar ras[20], ...\n\nIn starchart.c, line 757 old:\n\t    sscanf(cbuf, \"%*5s%f%f%f %[^\\n]\", &ra, &de, &sc, legend);\nnew:\n\t    sscanf(cbuf, \"%*5s%lf%lf%lf %[^\\n]\", &ra, &de, &sc, legend);\n\nThis two changes fixes the bugs.\nBernd.\n#! rnews 2244\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!jmunkki\nFrom: jmunkki@santra.UUCP (Juri Munkki)\nNewsgroups: comp.sys.mac\nSubject: Color CopyBits Is Too Slow!\nKeywords: Mac II Color QuickDraw Animation Speed Optimization\nMessage-ID: <9130@santra.UUCP>\nDate: 6 Dec 87 21:13:10 GMT\nOrganization: Helsinki University of Technology, Finland\nLines: 76\n\n\nI experimented with offscreen pixmaps today. It seems that Color\nQuickdraw is very flexible, but too slow for good animation. Most of the\noverhead comes from color matching and conversion. I guess I could write\nmy own color matching routine, but I think there should be a fast way to\ndo a simple copy operation.\n\nIn most painting programs the actual painting could be done on an\noffscreen bitmap with the same color table as the best gDevice.\n\nIt takes about twice as much time to do a copybits in srcCopy mode than\nit takes in the srcXor mode. Below is a short program that draws to an\noffscreen pixmap and then copies it back to the screen. Try different\ntransfer modes and note the speed difference. The code is written in LS\nC 2.13. Even srcXor, which is the fastest usable mode, is too slow for\nreally high quality animation.\n\nHow can it be done faster?\n\n#include <MacTypes.h>\n#include <QuickDraw.h>\n#include <Color.h>\n#include <WindowMgr.h>\n\nWindowPtr\tonScreen;\nCGrafPtr\toffS;\nRGBColor\ttemp;\nPixMapPtr\toffP;\n\nvoid\tmain()\n{\n\tint\ti;\n\t\n\tInitGraf(&thePort);\tInitCursor();\n\tInitFonts();\t\tInitWindows();\n\t\t\n\tonScreen=GetNewWindow(1000,0L,-1);\n\n\toffS=(CGrafPtr)NewPtr(sizeof(*offS));\n\n\tOpenCPort(offS);\n\tHLock(offS->portPixMap);\n\toffP=*(offS->portPixMap);\n\n\tSetRect(&offP->bounds,0,0,256,256);\n\tPortSize(256,256);\n\toffP->rowBytes=32768L+256;\n\n\toffP->baseAddr=NewPtr(65536L);\n\n\tEraseRect(&offS->portRect);\n\ttemp.blue=65535;\n\ttemp.red=0;\n\ttemp.green=0;\n\tRGBForeColor(&temp);\n\tfor(i=0;i<256;i+=4)\n\t{\tMoveTo(i,0);\n\t\tLineTo(255-i,255);\n\t}\n\n\tSysBeep(10);\n\tHideCursor();\n\tfor(i=100;i;i--)\n\t\tCopyBits(&((GrafPtr)offS)->portBits,&onScreen->portBits,\n\t\t\t\t &offS->portRect,&offS->portRect,srcXor,0);\n\tSysBeep(10);\n\twhile(!Button());\n}\n\nJuri Munkki\njmunkki@santra.hut.fi\njmunkki@fingate.bitnet\nlk-jmu@finhut.bitnet\n\nP.S. The window is longword aligned and a color table was copied from the\n     system file.\n#! rnews 617\nPath: alberta!mnetor!uunet!mcvax!enea!chalmers!benke\nFrom: benke@chalmers.UUCP (Bengt-Eric Ericson)\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: WARNING! FASTBACK may corrupt your hard disk!\nMessage-ID: <2239@chalmers.UUCP>\nDate: 6 Dec 87 21:16:48 GMT\nReferences: <703@vaxine.UUCP> <3225@bnrmtv.UUCP> <7024@sunybcs.UUCP>\nReply-To: benke@chalmers.UUCP (Bengt-Eric Ericson)\nOrganization: Dept. of CS, Chalmers, Sweden\nLines: 3\nKeywords:Computer Shopper\n\n\nIn some article in this group there is said something about\n\"Computer Shopper\". Is this a magazine or what? Please\nenlight us guys here in the land of Polar bears. :-)\n#! rnews 2432\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!kjws\nFrom: kjws@eagle.ukc.ac.uk (K.J.W.Smithers)\nNewsgroups: comp.sys.amiga\nSubject: Re: A2090A HD controller\nMessage-ID: <4038@eagle.ukc.ac.uk>\nDate: 6 Dec 87 14:46:00 GMT\nReferences: <5474@oberon.USC.EDU> <6575@ccicpg.UUCP> <2903@cbmvax.UUCP>\nReply-To: kjws@ukc.ac.uk (K.J.W.Smithers)\nOrganization: Computing Lab, University of Kent at Canterbury, UK.\nLines: 56\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\nIn article <2903@cbmvax.UUCP> you write:\n>\n>This is one of the things that the updated hddisk device I announced\n>awhile ago (and will mail to people over usenet) fixes.  If you don't\n>have have a 2090 card, the software that comes with your 2090 is\n>the new driver, so it will work fine in overscan.\n>-- \n>andy finkel\t\t{ihnp4|seismo|allegra}!cbmvax!andy \n>Commodore-Amiga, Inc.\n>\n\nI have an A2090 card and a CSA68020/68881 board with no 32 bit ram.\n \n They will Not work together. (but both work seperately)\n\nI think the driver (hddisk) is dated  1986 , is this the latest driver?\n(If not could you please e-mail me the latest version)\n\nThe problem is when I run binddrivers that task stops, (binddrivers\nnever exits). It seems to fallover on a particular call to execbase.\nThe last instruction (displayed by MetaScope) is  mov a2,(a0)\n\nIf i move the hddisk from expansion draw , to hddisk.device in the\ndevs draw, i can mount the harddisk (dh0:) , but when i do a\ncd dh0: , the cd command displays 'Cant find dh0:'\n\nI am running morerows, 672*266 on a B2000 rev 4.0 board (pal) with\n2Mbytes expansion ram , 2*3.5inch drives, and (hopefully) A2090 +\n20 Mbyte hard disk, and a CSA 68020/68881 board.\n\nI have also done the wire-link modification to the main B2000 board,\nas required by CSA for the 68020 board on Rev4.0 and later boards.\n\nSlots are as follows :-\n\n     I  I  E  E  E  M  H     6\n     B  B  M  M  M  E  A     8\n     M  M  P  P  P  M  R     0\n           T  T  T  O  D     2\n\t   Y  Y  Y  R  D     0\n                    Y  I     C\n                       S     P\n                       K     U\n\n   Thanks in advance for any help\n\t\t\n\tKit Smithers\n\n____________________________________________________________________________\n   Kit Smithers\t\t\tkjws@ukc.ac.uk\n\t\t\t\tkjws@ukc.UUCP\n\t\t\t\t!mcvax!ukc!kjws\n\nThe man who can not stay fast and hard at the same time !\nLive for ever, or die in the attempt.\n______________________________________________________________________________\n#! rnews 1572\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!ajcd\nFrom: ajcd@its63b.ed.ac.uk (Angus Duggan, Department of Computer Science, University of Edinburgh,)\nNewsgroups: rec.games.hack\nSubject: pickup option - suggestion\nKeywords: pickup HACKOPTIONS\nMessage-ID: <813@its63b.ed.ac.uk>\nDate: 6 Dec 87 11:47:56 GMT\nReply-To: ajcd@its63b.ed.ac.uk (Angus Duggan)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 23\n\nHere's a suggestion for an improvement (at least I think it is :-) to the\n\"pickup\" option in nethack, which someone who is familiar with the source\ncode might like to implement -\n\nMake the \"pickup\" option a composite option like \"packorder\", and re-write\nthe picking up code so that the types of objects specified will be\nautomatically picked up. All other objects could still be picked up by ','.\n\ne.g. \"pickup:?+/=!)\"  would pick up scrolls, spellbooks, wands, rings,\n                                   potions, and weapons.\n\nThis would be useful for those of us who don't like carrying hoards of\ngold around, and also to prevent picking up dead cockatrices while still\npicking up other objects.\n\nBTW, does anyone know what the options \"null\" and \"news\" do?\n-- \nAngus Duggan, Department of Computer Science, University of Edinburgh,\nJames Clerk Maxwell Building, The King's Buildings, Mayfield Road,\nEdinburgh, EH9 3JZ, Scotland, U.K.\nJANET:  ajcd@uk.ac.ed.ecsvax  ARPA: ajcd%ecsvax.ed.ac.uk@cs.ucl.ac.uk\nUSENET: ajcd@ecsvax.ed.ac.uk  UUCP: ...!seismo!mcvax!ukc!ecsvax.ed.ac.uk!ajcd\nBITNET: psuvax1!ecsvax.ed.ac.uk!ajcd or ajcd%ecsvax.ed.ac.uk@earn.rl.ac.uk\n#! rnews 4243\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!simon\nFrom: simon@its63b.ed.ac.uk (ECSC68 S Brown CS)\nNewsgroups: comp.lang.c\nSubject: Re: stdio error detection\nMessage-ID: <814@its63b.ed.ac.uk>\nDate: 6 Dec 87 17:35:07 GMT\nReferences: <10649@brl-adm.ARPA>\nReply-To: simon%lfcs.ed.ac.uk@nss.cs.ucl.ac.uk (Simon Brown)\nOrganization: LFCS, University of Edinburgh\nLines: 87\n\nIn article <10649@brl-adm.ARPA> dsill@NSWC-OAS.arpa (Dave Sill) writes:\n>>I used to be rather fond of C, but this error stuff is quite\n>>incredibly bad.  The problem isn't really the language; it's\n>>the libraries.\n>\n>Rather than messing with errno, I think a new variable, say, liberr,\n>should be used.  An include file, say liberr.h, could contain macro\n>definitions for the various types of errors.  A macro named LIBERR\n>could also be defined in liberr.h so code could be written that would\n>take advantage of liberr if it was available or handle errors in the\n>usual way if it's not.  Even better would be to have LIBERR be a\n>predefined macro like ANSI, unix, vax, et cetera.\n>\n\nThis still has the same problem as with \"errno\"- namely that you're trying\nto describe a general ``error condition'' using a single number! I'm told\nthat VMS (but it's a good idea for all that...) provides a stack of error \nvalues which allows a program to search backward to find out what the \"real\" \nerror was, depending on what kind of detail is required. If you have several\nlevels of library calls between you and the system call that failed, this\ncan be extremely useful- it's not really much use having an error-value\nif you can't even tell what system call it came from (let alone what parameters\nwere *passed* to that system call to cause it to fail!).\n\nA *decent* error-returning mechanism would describe:\n\n\t1. What call (syscall or library call) failed.\n\t   This could be a number- you could use something like internet\n\t   addressing to put some kind of structure into it:\n\t\tlibc.stdio.fopen\n\t2. Why it failed.\n\t   Simple E-numbers will do for this (although I suppose they'd\n\t   have to be grouped for different libraries):\n\t\tE_STDIO.E_CANNOT_OPEN_FILE\n\t3. What value it returned.\n\t\t(FILE *)NULL\n\t3. What parameters were passed to it.\n\t   This is the most difficult one, because it would have to have\n\t   some kind of idea as to the types involved. It could (I suppose)\n\t   deal only with string types (and convert any other type into\n\t   \"printable\" form by doing the equivalent of sprintf()'ing it).\n\t   It also has to be a \"list\", which means it would probably have\n\t   to be done using something like \"argc,argv\":\n\t\targc: 2\n\t\targv: \"mumble.splat\", \"r\"\n\nIf the error is not \"dealt with\", then this information should propogate\ndown (together with the info from the callee's failure), and so on...\n\nSo, If you do a\n\tfopen(\"mumble.splat\",\"r\")\nand it fails, then the following would be left on the stack (in some format\nor other) to be dealt with by some error-diagnosing function:\n\n\tkernel.open:\n\t\tparam 1: \"mumble.splat\" [string]\n\t\tparam 2: 0 [int]\n\t\treturns: -1 [int]\n\t\terror: E_KERNEL.ENOENT\n\tlibc.stdio.fopen:\n\t\tparam 1: \"mumble.splat\" [string]\n\t\tparam 2: \"r\" [string]\n\t\treturns: 0 [FILE *]\n\t\terror: E_LIBC.E_STDIO.E_CANNOT_OPEN_FILE\n\nThe error-diagnosing stuff could then print something *useful* such as\n\tstdio fopen: couldn't open file \"mumble.splat\" for reading, because:\n\t    kernel open: no file or directory \"mumble.splat\"\n\n(and of course the format of these messages could be user-configurable, so\nthat noddies would just get the information they need, whereas people who\nunderstand what they're doing could get reams and reams of info- just by setting\nsome environment parameter to the appropriate value).\n\nOf course, all this stuff would have to be known by the compiler, and I'm sure\nit'd be dead slow to execute!\n\n-- \n--------------------------------------------------\n| Simon Brown                                    |\n| Laboratory for Foundations of Computer Science |\n| Department of Computer Science                 |\n| University of Edinburgh, Scotland, UK.         |\n--------------------------------------------------\n UUCP:  uunet!mcvax!ukc!lfcs!simon\n ARPA:  simon%lfcs.ed@nss.cs.ucl.ac.uk      \"Life's like that, you know\"\n JANET: simon@uk.ac.ed.lfcs\n#! rnews 665\nPath: alberta!mnetor!uunet!mcvax!henk\nFrom: henk@cwi.nl (Henk Schouten)\nNewsgroups: rec.games.board\nSubject: diplomacy\nKeywords: pbm\nMessage-ID: <138@piring.cwi.nl>\nDate: 7 Dec 87 08:36:16 GMT\nOrganization: CWI, Amsterdam\nLines: 9\n\nA local group is going to start a diplomacy game by mail. We have\nonly few players so I would like to take part in the game myself.\nTo do so, I would like to have the moves evaluated by a\nprogram. Before writing such a program myself, I would like to\nask if anyone has or knows of such a program in the public\ndomain, preferrably written in C. Code or pointers to it will be\ngreatly appreciated.\n\t\t\t\tHenk Schouten\n\t\t\t\t..!nl!cwi!henk\n#! rnews 1298\nPath: alberta!mnetor!uunet!mcvax!varol\nFrom: varol@cwi.nl (Varol Akman)\nNewsgroups: sci.crypt\nSubject: Re: NSA advertisment\nSummary: Somewhat naive, huh?\nMessage-ID: <139@piring.cwi.nl>\nDate: 7 Dec 87 08:59:02 GMT\nReferences: <4781@cit-vax.Caltech.Edu>\nOrganization: CWI, Amsterdam\nLines: 22\n\npalmer@tybalt.caltech.edu.UUCP (David Palmer) writes:\n>I just read a magazine add seeking people to work at the NSA (pg. 80R of\n>Dec. 1987 IEEE Spectrum)\n>The graphic is 10,000,0... (100 zeros) written on three lines.  The first\n>paragraph of the text reads:\n>\tYou're looking at a \"googol.\" Ten raised to the 100th power.\n>\tOne followed by 100 zeros.  Counting 24 hours a day, you would\n>\tneed 120 years to reach a googol.  Two lifetimes.  It's a\n>\tnumber that's impossible to grasp.  A number beyond our imagination.\n>... material deleted ...\n\nThis strikes me as quite odd.  I mean, if something can be done in two lifetimes\nthen, darn it, it is well within my imagination.\nIf it can be done within 20 lifetimes\nI can still grasp how difficult it should be.  A real difficult thing would\nbe something that takes say 10^100 lifetimes.\n\nIn short, I find the above ad quite naive.  NSA guys should probably\nhave something better than this for the inspring encryption student.\nWhat do you say?\n\n-Varol Akman\n#! rnews 1520\nPath: alberta!mnetor!uunet!mcvax!prlb2!ronse\nFrom: ronse@prlb2.UUCP (Christian Ronse)\nNewsgroups: sci.math\nSubject: Re: Least-squares fitting\nSummary: see Duda & Hart, Chapter 9, for a solution\nKeywords: ``eigenvector line fitting''\nMessage-ID: <387@prlb2.UUCP>\nDate: 7 Dec 87 09:22:11 GMT\nReferences: <1823@culdev1.UUCP> <528@amethyst.ma.arizona.edu>\nOrganization: Philips Research Laboratory, Brussels\nLines: 21\n\nFrom article <528@amethyst.ma.arizona.edu> by hdunne@amethyst.ma.arizona.edu:\n< In article <1823@culdev1.UUCP> drw@culdev1.UUCP (Dale Worley) writes:\n\t[deleted ...]\n< }Is is known how to perform least-squares fitting where the \"error\" is\n< }the perpendicular distance between the point and the line?\n< }\n< If the point is (x_i,y_i) and the line is y = a*x + b, then the square of the\n< perpendicular distance is [(y_i - a*x_i - b)^2]/(1 + a^2) (assuming the line\n< isn't vertical). Taking the sum of the squared distances and setting the\n< partial derivatives wrt. a and b equal to zero, you get the same equations \n< for a and b as you get from the usual least-squares procedure.\n\nSee the book ``Pattern Classification and Scene Analysis'' by R.O. Duda & P.E.\nHart, Chapter 9. Section 9.2.1 introduces the usual least square fitting\n(``minimum-squared-error line fitting''), and 9.2.2 the one asked by Dale\n(``eigenvector line fitting''). There the problem is solved.\n\nChristian Ronse\t\tmaldoror@prlb2.UUCP\n{uunet|philabs|mcvax|...}!prlb2!{maldoror|ronse}\n\n\tSTAT ROSA PRISTINA NOMINE, NOMINA NUDA TENEMUS\n#! rnews 977\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!stc!idec!camcon!mb\nFrom: mb@camcon.uucp (Mike Bell)\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: Neat voice|gag program\nSummary: How does HELPME work?\nMessage-ID: <1107@titan.camcon.uucp>\nDate: 2 Dec 87 14:25:07 GMT\nReferences: <3692@uwmcsd1.UUCP>\nDistribution: all\nOrganization: Cambridge Consultants Ltd., Cambridge, UK\nLines: 15\n\nin article <3692@uwmcsd1.UUCP>, cmaag@csd4.milw.wisc.edu \n(posting to comp.binaries.ibm.pc)  says:\n\n> Here is a neat little program I found on a local bbs.  It uses the speaker\n> to generate a very-realistic (the best I've heard on a PC!) voice that\n> says something to the effect of \"Help!  I'm locked in this computer!\n> Let me out! Help!\".  \n\nI just played it, and was much impressed. Given the rudimentary\nnature of IBM PC's, can anybody explain how it achieves its\neffect?\n-- \n---------------\t\tUUCP:  ...mcvax!ukc!camcon!mb\n-- Mike Bell --\t\tor:    mb%camcon.uucp\n---------------\t\tPhone: +44 223 358855\n#! rnews 710\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!stc!idec!camcon!mb\nFrom: mb@camcon.uucp (Mike Bell)\nNewsgroups: comp.sources.bugs\nSubject: Re: v12i071:  StarChart program (Minor correction)\nMessage-ID: <1114@titan.camcon.uucp>\nDate: 4 Dec 87 15:48:15 GMT\nReferences: <1110@artemis3.camcon.uucp>\nOrganization: Cambridge Consultants Ltd., Cambridge, UK\nLines: 10\n\nin article <1110@artemis3.camcon.uucp>, mb@camcon.uucp (Mike Bell) says:\n> \t(Problem found on Sun 4.3 BSD Unix)\n\nSorry, that should have been Sun Release 3.4 of 4.2 BSD... (well it\nwas correct within an order of magnitude:-)\n\n-- \n---------------\t\tUUCP:  ...mcvax!ukc!camcon!mb\n-- Mike Bell --\t\tor:    mb%camcon.uucp\n---------------\t\tPhone: +44 223 358855\n#! rnews 2447\nPath: alberta!mnetor!uunet!mcvax!tuvie!rcvie\nFrom: rcvie@tuvie (ELIN Forsch.z.)\nNewsgroups: comp.lang.c\nSubject: Re: Autoincrement question\nMessage-ID: <548@tuvie>\nDate: 7 Dec 87 10:00:58 GMT\nReferences: <1507@ogcvax.UUCP>\nOrganization: TU Vienna EDP-Center, Vienna, AUSTRIA\nLines: 58\n\nIn article <1507@ogcvax.UUCP>, schaefer@ogcvax.UUCP (Barton E. Schaefer) writes:\n> (I realize this might be similar to another question asked recently, but ...)\n> \n> Another student here at OGC recently came to me with a question about the\n> C autoincrement operator.  The following program is representative of the\n> code he wrote, which did not do what he expected:\n> \n>     struct foo { struct foo *tmp; char junk[32]; } foolist[4];\n> \n>     main ()\n>     {\n> \tstruct foo *bar;\n> \n> \tbar = foolist;\n> \t/* Do something with bar */\n> \tbar->tmp = bar++;\t\t/* This is the problem line */\n> \t/* Do something else */\n>     }\n> \n\nThis is really dangerous programming. The points where the left and where the\nright \"bar\" are evaluated are implementation defined. The problem is similar to\nanother one, which a friend of mine had some time ago. He tried to pack as much\nas possible into the control part of a while loop using the following statement:\n\nwhile (a[i]=b[i++])\n  ;\n\nThings were even worse here, as the program behaved even differently depending\non whether it was compiled with the optimization option or not. Non optimized\neverything worked as expected but in the optimized version only for the first\nassignment \"i\" was incremented after the assignment, for all the following\nassignments it was incremented after the evaluation of \"b[i]\" but before the \nassignment. Nevertheless this behaviour was in the sense of both K&R and ANSI.\nThe only thing you can trust on, is that the *operand* of the increment\noperator is evaluated before its incrementation. One way to achieve the desired\nbehaviour is, as you suggested yourself, to write:\n\n> What he really wanted was the equivalent of\n> \tbar->tmp = bar;\n> \tbar++;\n\nand not (for the same reasons stated above):\n\n> \t(bar++)->tmp = bar;\n\nIf there is any necessity to have the whole semantic in one *expression*, use\nthe comma operator, as\n\nbar->tmp = bar, bar++;\n\nThis operator *guarantees* the sequential evaluation of its operands from\nleft to right.\n\nIn real life: Dipl.Ing. Dietmar Weickert\n              ALCATEL Austria - ELIN Research Center\n              Floridusg. 50\n          A - 1210 Vienna / Austria\n#! rnews 1822\nPath: alberta!mnetor!uunet!mcvax!steven\nFrom: steven@cwi.nl (Steven Pemberton)\nNewsgroups: comp.sys.atari.st\nSubject: Re: Alcyon C Bug N++\nMessage-ID: <140@piring.cwi.nl>\nDate: 7 Dec 87 14:59:48 GMT\nReferences: <8712051307.AA12109@ucbvax.Berkeley.EDU>\nReply-To: steven@cwi.nl (or try mcvax!steven.uucp)\nOrganization: CWI, Amsterdam\nLines: 38\n\nFor people interested, here are a couple of bugs in the Alcyon\ncompiler that we've been hitting our heads against for the last few\nweeks:\n\n\t1) The compiler doesn't seem able to cope with nested\n\t   initialisations. For instance, a struct with an array in\n\t   the middle:\n\t\tstatic struct foo table[] = {\n\t\t\t{ ...... {.....} ......},\n\t\t\t...\n\t\t}\n\t   The compiler complains about mismatched braces.\n\t   Cure: 'unwrap' the struct declaration, so it's all at the\n\t\t same level.\n\n\t2) In a construct like\n\t\tbar *p = (expression1, expression2);\n\t   the result of expression2 gets coerced to int, and then\n\t   back to bar *, meaning basically that you get bombs on the\n\t   screen when you try to use p, due to a wrong address.\n\t   Cure: use\n\t\tbar *p = (expression1, (bar *) expression2);\n\n\t3) We believe that 'complicated' initialisations to auto\n\t   variables in functions (for instance where the\n\t   initialisation involves a call to another function) often\n\t   come out wrong. However, by this point, we despaired, and\n\t   stopped using the compiler, so we never followed up on it.\n\nI might point out that we're trying to compile a BIG program: 30,000\nlines of C, so just trying to trace bug 2 took us a LOT of time.\n\nBy the way, just for interest: to compile the lot from scratch, using\na ram disk for temporaries would take 4 hours. When we reinitialised\nthe disk partition, and copied the files back, a recompile only took\n1.5 hours!\n\nSteven Pemberton, CWI, Amsterdam; steven@cwi.nl\n#! rnews 1265\nPath: alberta!mnetor!uunet!mcvax!mhres!jv\nFrom: jv@mhres.mh.nl (Johan Vromans)\nNewsgroups: comp.sys.hp\nSubject: Re: syslogd on HP-UX\nSummary: I have one\nMessage-ID: <1495@mhres.mh.nl>\nDate: 7 Dec 87 12:19:02 GMT\nReferences: <641@ucdavis.ucdavis.edu>\nSender: jv@mhres.mh.nl\nReply-To: jv@mhres.mh.nl (Johan Vromans)\nOrganization: Multihouse N.V., The Netherlands\nLines: 20\n\nIn article <641@ucdavis.ucdavis.edu> arons@iris.ucdavis.edu (Tom Arons) writes:\n>Has anyone successfully ported syslog(3) and syslogd from 4.2 or\n>4.3 BSD to HP-UX 5.3 running on a 9000 series 300?\n>\n>It doesn't look like it would be too hard to do, but I don't want to\n>reinvent the wheel.\n\nI once implemented a syslogd for HP-UX using message queues. I have posted\nit to comp.sources.unix some time ago, but I can mail it if you cannot find\nit.\n\nFeatures: (almost) BSD compatible, no network support, runs as a daemon,\ncommunicates with message queues.\nIf no daemon is running, calling 'syslog' is effectivily a no-op.\nI have used it when I tried to get sendmail running.\n\n\n\n-- \nJohan Vromans                              | jv@mh.nl via European backbone\nMultihouse N.V., Gouda, the Netherlands    | uucp: ..{uunet!}mcvax!mh.nl!jv\n\"It is better to light a candle than to curse the darkness\"\n#! rnews 1036\nPath: alberta!mnetor!uunet!mcvax!botter!wundt!michael\nFrom: michael@wundt.psy.vu.nl (M.A.M. Michael)\nNewsgroups: comp.sys.mac\nSubject: Address for update of VersaTerm requested\nMessage-ID: <164@wundt.psy.vu.nl>\nDate: 7 Dec 87 16:30:39 GMT\nReply-To: michael@psy.vu.nl.UUCP (M.A.M. Felt)\nOrganization: VU Psychologie, Amsterdam\nLines: 24\n\n!!!!!!!!!!!!!!!!!!!!!!!!!\nPlease reply via e-mail.\n!!!!!!!!!!!!!!!!!!!!!!!!!\n\nWhen I purchased VersaTerm 2+ years ago I didn't bother to register.\nNow I wish I had. It's about time for an update.\n\nThe manual lists the address:\nPeripherals Computers & Supplies Inc\n2232 Perkiomen Avenue\nMt. Penn, PA 19606\n\nIs this still current (other VersaTerm Users)?\n\nIn either case, an e-mail reply will be appreciated.\nThe dealer (I bought it from) here is still selling\nthe same version of two years ago. (1.42)\n\nThanks, michael felt\n-- \nMichael Felt\tPsychology Dept, Vrije Universiteit, Amsterdam, Netherlands\nInterNet:\tmichael@psy.vu.nl\nUUCP:\t\t...!mcvax!vupsy!michael , michael@vupsy.UUCP\nAppleLink:\tHOL0038\n#! rnews 600\nPath: alberta!mnetor!uunet!mcvax!inria!axis!alastair\nFrom: alastair@axis.fr (Alastair Adamson)\nNewsgroups: comp.text\nSubject: To break or not to break\nSummary: br command in [nt]roff\nMessage-ID: <348@axis.fr>\nDate: 7 Dec 87 08:33:25 GMT\nOrganization: Axis Digital, Paris\nLines: 9\n\nI have long wondered at the ubiquitous [nt]roff request\n\t'br\nfound in the mm macros and elsewhere. Could someone\nplease elucidate the use of the break request with\nthe no-break command character ' used?\n\nThanks in advance, Alastair Adamson,\n\talastair@axis.fr\n\tAxis Digital, 135 rue d'Aguesseau, 92100, Boulogne, France\n#! rnews 8193\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: New program: treecmp.c\nMessage-ID: <1774@botter.cs.vu.nl>\nDate: 7 Dec 87 20:53:16 GMT\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 321\n\n\nI have written a program to recursively compare the contents of two given\ndirectories, file for file.  The program descends the tree and reports about\nfiles that are missing or different.  Some day, if I ever get around to\nproducing V1.3 of MINIX, I will make a tree of the current version next to\nthe V1.2 tree, and then run this program to get a list of all files that\nare different.  Then I can make diff listings etc.  In reality, the reason\nI wrote it however, is that I had just copied my MINIX tree from one part\nof the disk to another, and I wanted to make sure nothing was forgotten.\nI am sure there are other uses as well.    One could no doubt write a shell\nscript to do this same thing, or perhaps use find, but this program is\nmuch faster, being able to compare two 8 megabyte trees in about 12\nminutes on a Z-248.\n\nPlease post any bugs you find.\n\nAndy Tanenbaum (ast@cs.vu.nl)\n\n----------------------------- treecmp.c ---------------------------------\n/* treecmp - compare two trees\t\tAuthor: Andy Tanenbaum */\n\n/* This program recursively compares two trees and reports on differences.\n * It can be used, for example, when a project consists of a large number\n * of files and directories.  When a new release (i.e., a new tree) has been\n * prepared, the old and new tree can be compared to give a list of what has\n * changed.  The algorithm used is that the first tree is recursively\n * descended and for each file or directory found, the corresponding one in\n * the other tree checked.  The two arguments are not completely symmetric\n * because the first tree is descended, not the second one, but reversing\n * the arguments will still detect all the differences, only they will be\n * printed in a different order.  The program needs lots of stack space\n * because routines with local arrays are called recursively. The call is\n *    treecmp [-v] dir1 dir2\n * The -v flag (verbose) prints the directory names as they are processed.\n */\n\n#include <stat.h>\n\n#define BUFSIZE 4096\t\t/* size of file buffers */\n#define MAXPATH 128\t\t/* longest acceptable path */\n#define DIRENTLEN 14\t\t/* number of characters in a file name */\n\nstruct dirstruct {\t\t/* layout of a directory entry */\n  unsigned inum;\n  char fname[DIRENTLEN];\n};\n\nstruct stat stat1, stat2;\t/* stat buffers */\n\nchar buf1[BUFSIZE];\t\t/* used for comparing bufs */\nchar buf2[BUFSIZE];\t\t/* used for comparing bufs */\n\nint verbose;\t\t\t/* set if mode is verbose */\n\nmain(argc, argv)\nint argc;\nchar *argv[];\n{\n  char *p;\n\n  if (argc < 3 || argc > 4) usage();\n  p = argv[1];\n  if (argc == 4) {\n\tif (*p == '-' && *(p+1) == 'v') \n\t\tverbose++;\n\telse\n\t\tusage();\n  }\n\n  if (argc == 3)\n\tcompare(argv[1], argv[2]);\n  else\n\tcompare(argv[2], argv[3]);\n\n  exit(0);\n}\n\ncompare(f1, f2)\nchar *f1, *f2;\n{\n/* This is the main comparision routine.  It gets two path names as arguments\n * and stats them both.  Depending on the results, it calls other routines\n * to compare directories or files.\n */\n\n  int type1, type2;\n\n  if (stat(f1, &stat1)  < 0) {\n\tprintf(\"Cannot stat %s\\n\", f1);\n\treturn;\n  }\n\n  if (stat(f2, &stat2)  < 0) {\n\tprintf(\"Missing file: %s\\n\", f2);\n\treturn;\n  }\n\n  /* Examine the types of the files. */\n  type1 = stat1.st_mode & S_IFMT;\n  type2 = stat2.st_mode & S_IFMT;\n  if (type1 != type2) {\n\tprintf(\"Type diff: %s and %s\\n\", f1, f2);\n\treturn;\n  }\n\n  /* The types are the same. */\n  switch(type1) {\n\tcase S_IFREG:\tregular(f1, f2);\n\t\t\tbreak;\n\n\tcase S_IFDIR:\tdirectory(f1, f2);\n\t\t\tbreak;\n\n\tcase S_IFCHR:\n\tcase S_IFBLK:\tbreak;\n\n\tdefault:\tprintf(\"Unknown file type %o\\n\", type1);\n  }\n  return;\n}\n\nregular(f1, f2)\nchar *f1, *f2;\n{\n/* Compare to regular files.  If they are different, complain. */\n\n  int fd1, fd2, n1, n2, i;\n  unsigned bytes;\n  long count;\n  char *p1, *p2;\n\n  if (stat1.st_size != stat2.st_size) {\n\tprintf(\"Size diff: %s and %s\\n\", f1, f2);\n\treturn;\n  }\n\n  /* The sizes are the same.  We actually have to read the files now. */\n  fd1 = open(f1, 0);\n  if (fd1 < 0) {\n\tprintf(\"Cannot open %s for reading\\n\", f1);\n\treturn;\n  }\n\n  fd2 = open(f2, 0);\n  if (fd2 < 0) {\n\tprintf(\"Cannot open %s for reading\\n\", f2);\n\treturn;\n  }\n\n  count = stat1.st_size;\n  while (count > 0L) {\n\tbytes = (unsigned) (count > BUFSIZE ? BUFSIZE : count);\t/* rd count */\n\tn1 = read(fd1, buf1, bytes);\n\tn2 = read(fd2, buf2, bytes);\n\tif (n1 != n2) {\n\t\tprintf(\"Length diff: %s and %s\\n\", f1, f2);\n\t\tclose(fd1);\n\t\tclose(fd2);\n\t\treturn;\n\t}\n\n\t/* Compare the buffers. */\n\ti = n1;\n\tp1 = buf1;\n\tp2 = buf2;\n\twhile (i--) {\n\t\tif (*p1++ != *p2++) {\n\t\t\tprintf(\"File diff: %s and %s\\n\", f1, f2);\n\t\t\tclose(fd1);\n\t\t\tclose(fd2);\n\t\t\treturn;\n\t\t}\n\t}\n\tcount -= n1;\n  }\n  close(fd1);\n  close(fd2);\n}\n\ndirectory(f1, f2)\nchar *f1, *f2;\n{\n/* Recursively compare two directories by reading them and comparing their\n * contents.  The order of the entries need not be the same.\n */\n\n  int fd1, fd2, n1, n2, ent1, ent2, i, used1 = 0, used2 = 0;\n  char *dir1buf, *dir2buf;\n  char name1buf[MAXPATH], name2buf[MAXPATH];\n  struct dirstruct *dp1, *dp2;\n  unsigned dir1bytes, dir2bytes;\n  extern char *malloc();\n\n  /* Allocate space to read in the directories */\n  dir1bytes = (unsigned) stat1.st_size;\n  dir1buf = malloc(dir1bytes);\n  if (dir1buf == 0) {\n\tprintf(\"Cannot process directory %s: out of memory\\n\", f1);\n\treturn;\n  }\n\n  dir2bytes = (unsigned) stat2.st_size;\n  dir2buf = malloc(dir2bytes);\n  if (dir2buf == 0) {\n\tprintf(\"Cannot process directory %s: out of memory\\n\", f2);\n\tfree(dir1buf);\n\treturn;\n  }\n\n  /* Read in the directories. */\n  fd1 = open(f1, 0);\n  if (fd1 > 0) n1 = read(fd1, dir1buf, dir1bytes);\n  if (fd1 < 0 || n1 != dir1bytes) {\n\tprintf(\"Cannot read directory %s\\n\", f1);\n\tfree(dir1buf);\n\tfree(dir2buf);\n\tif (fd1 > 0) close(fd1);\n\treturn;\n  }\n  close(fd1);\n\n  fd2 = open(f2, 0);\n  if (fd2 > 0) n2 = read(fd2, dir2buf, dir2bytes);\n  if (fd2 < 0 || n2 != dir2bytes) {\n\tprintf(\"Cannot read directory %s\\n\", f2);\n\tfree(dir1buf);\n\tfree(dir2buf);\n\tclose(fd1);\n\tif (fd2 > 0) close(fd2);\n\treturn;\n  }\n  close(fd2);\n\n  /* Linearly search directories */\n  ent1 = dir1bytes/sizeof(struct dirstruct);\n  dp1 = (struct dirstruct *) dir1buf;\n  for (i = 0; i < ent1; i++) {\n\tif (dp1->inum != 0) used1++;\n\tdp1++;\n  }\n\n  ent2 = dir2bytes/sizeof(struct dirstruct);\n  dp2 = (struct dirstruct *) dir2buf;\n  for (i = 0; i < ent2; i++) {\n\tif (dp2->inum != 0) used2++;\n\tdp2++;\n  }\n\n  if (verbose) printf(\"Directory %s: %d entries\\n\", f1, used1);\n\n  /* Check to see if any entries in dir2 are missing from dir1. */\n  dp1 = (struct dirstruct *) dir1buf;\n  dp2 = (struct dirstruct *) dir2buf;\n  for (i = 0; i < ent2; i++) {\n\tif (dp2->inum == 0 || strcmp(dp2->fname, \".\") == 0 || \n\t\tstrcmp(dp2->fname, \"..\") == 0) {\n\t\t\tdp2++;\n\t\t\tcontinue;\n\t}\n\tcheck(dp2->fname, dp1, ent1, f1);\n\tdp2++;\n  }\n\n  /* Recursively process all the entries in dir1. */\n  dp1 = (struct dirstruct *) dir1buf;\n  for (i = 0; i < ent1; i++) {\n\tif (dp1->inum == 0 || strcmp(dp1->fname, \".\") == 0 || \n\t\tstrcmp(dp1->fname, \"..\") == 0) {\n\t\t\tdp1++;\n\t\t\tcontinue;\n\t}\n\tif (strlen(f1) + DIRENTLEN >= MAXPATH) {\n\t\tprintf(\"Path too long: %s\\n\", f1);\n\t\tfree(dir1buf);\n\t\tfree(dir2buf);\n\t\treturn;\n\t}\n\tif (strlen(f2) + DIRENTLEN >= MAXPATH) {\n\t\tprintf(\"Path too long: %s\\n\", f2);\n\t\tfree(dir1buf);\n\t\tfree(dir2buf);\n\t\treturn;\n\t}\n\t\n\tstrcpy(name1buf, f1);\n\tstrcat(name1buf, \"/\");\n\tstrncat(name1buf, dp1->fname, DIRENTLEN);\n\tstrcpy(name2buf, f2);\n\tstrcat(name2buf, \"/\");\n\tstrncat(name2buf, dp1->fname, DIRENTLEN);\n \n\t/* Here is the recursive call to process an entry. */\n\tcompare(name1buf, name2buf);\t/* recursive call */\n\tdp1++;\n  }\n\n  free(dir1buf);\n  free(dir2buf);\n}\n\ncheck(s, dp1, ent1, f1)\nchar *s;\nstruct dirstruct *dp1;\nint ent1;\nchar *f1;\n{\n/* See if the file name 's' is present in the directory 'dirbuf'. */\n  int i;\n\n  for (i = 0; i < ent1; i++) {\n\tif (strncmp(dp1->fname, s, DIRENTLEN) == 0) return;\n\tdp1++;\n  }\n  printf(\"Missing file: %s/%s\\n\", f1, s);\n}\n\nusage()\n{\n  printf(\"Usage: treecmp [-v] dir1 dir2\\n\");\n  exit(0);\n}\n#! rnews 1196\nPath: alberta!mnetor!uunet!mcvax!prlb2!kulcs!kdv\nFrom: kdv@kulcs.UUCP (Karel De Vlaminck)\nNewsgroups: comp.text\nSubject: Laserprinters for troff on NCR Tower\nMessage-ID: <1066@kulcs.UUCP>\nDate: 7 Dec 87 19:18:01 GMT\nReply-To: kdv@kulcs.UUCP ()\nOrganization: Katholieke Universiteit Leuven, Dept. Computer Science\nLines: 22\n\n\n1) We want to connect a laserprinter for use with troff\non a NCR Tower System. Has anyone experience with this?\n\n2) We will have access to a KYOCERA F-1000 or F-1200 laser printer.\nDoes anyone know about the existence of a filter for the\ntroff output to the laserprinter (which uses 'Prescribe').\n\n3) This laserprinter also has an HP Laserjet Plus emulation.\nAnother solution would then be to use a troff output filter\nfor the HP Laserjet.  So I will ask the same question\nabout the existence for this filter.\n\nPlease mail responses directly to me. If there are usefull\nresponses, I will post a summary to the net.\n\nKarel De Vlaminck\n\n                                | K. U. Leuven\n  kdv@kulcs.uucp                | Department of Computer Science\n  or ...!mcvax!prlb2!kulcs!kdv  | Celestijnenlaan 200 A\n  Phone:  +(32) 16-200656 x3565 | B-3030 Leuven (Heverlee), Belgium\n#! rnews 685\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!solaris!wyle\nFrom: wyle@solaris.ifi.ethz.ch@relay.cs.net (Mitchell Wyle)\nNewsgroups: comp.unix.questions,comp.text\nSubject: Scribe, GML\nKeywords: Generalized Mark-up Languages, Scribe\nMessage-ID: <194@A14A.solaris.ifi.ethz.ch@relay.cs.net>\nDate: 7 Dec 87 17:14:05 GMT\nOrganization: SOT sun cluster, ETH Zuerich\nLines: 7\nXref: alberta comp.unix.questions:4769 comp.text:1344\n\nWhere can I buy Scribe?  Are there other implementations of\na standard Markup Language on BSD Unix?  What is Scribe?\n\nPlease respond via e-mail; if there are enough \"me too's,\"\nI'll post.\n\n-Mitch Wyle  (wyle@solaris.uucp |  wyle@ethz.uucp  | ...!cernvax!ethz!wyle\n#! rnews 1896\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!simon\nFrom: simon@its63b.ed.ac.uk (ECSC68 S Brown CS)\nNewsgroups: comp.unix.wizards\nSubject: Re: Setting process groups\nMessage-ID: <815@its63b.ed.ac.uk>\nDate: 7 Dec 87 10:30:32 GMT\nReferences: <1765@unc.cs.unc.edu> <910@mcgill-vision.UUCP> <1261@saturn.ucsc.edu> <3134@psuvax1.psu.edu> <2990@hcr.UUCP>\nReply-To: simon@lfcs.ed.ac.uk (Simon Brown)\nOrganization: LFCS, University of Edinburgh\nLines: 29\n\nIn article <2990@hcr.UUCP>  writes:\n>Actually SVID setpgrp() has an \"extra feature\" that Berkeley setpgrp(getpid())\n>does not have - it detaches the process from its controlling terminal.  This\n>does tend to make it \"difficult\" to create a pipeline attached to your terminal\n>but with its own process group.\n\nWell, you can do that by making each such pipeline belong to it's own SXT\ndevice, and have all these SXT's multiplexed onto your *real* terminal.\nInstant job-control!\n\nBTW, SVR2 (and 3?) setpgrp() doesn't fully detach a process from its \ncontrolling tty if this process has already done a setpgrp() previously\n(as is the case for a login-shell -- this comes from init and getty).\nWhat it does in this case is to \"partially\" detach -- so that if you try \nto set up a new controlling terminal, it's not actually a controlling terminal \nat all -- things like terminal-generated signals don't get sent to the process.\nPresumably this is just a cretinous bug, and not something more sophisticated.\n\n\n-- \n--------------------------------------------------\n| Simon Brown                                    |\n| Laboratory for Foundations of Computer Science |\n| Department of Computer Science                 |\n| University of Edinburgh, Scotland, UK.         |\n--------------------------------------------------\n UUCP:  uunet!mcvax!ukc!lfcs!simon\n ARPA:  simon%lfcs.ed@nss.cs.ucl.ac.uk      \"Life's like that, you know\"\n JANET: simon@uk.ac.ed.lfcs\n#! rnews 1126\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!adrian\nFrom: adrian@cs.hw.ac.uk (Adrian Hurt)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: NCC, USS, Klingons, etc...\nSummary: She was a Klingon\nMessage-ID: <1568@brahma.cs.hw.ac.uk>\nDate: 7 Dec 87 10:33:54 GMT\nReferences: <8712011928.AA04370@topaz.rutgers.edu> <1632@bsu-cs.UUCP> <19321@teknowledge-vaxc.ARPA>\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 15\n\nIn article <19321@teknowledge-vaxc.ARPA>, hshiffma@teknowledge-vaxc.ARPA (Hank Shiffman) writes:\n> \n> Why do you think she was a Klingon?  As I recall, she looked human.\n> You weren't assuming that she was a Klingon just because she had\n> something going with the Christoper Lloyd character, were you?  For\n> shame!\n\nIn the book of the film, Valkris was definitely a Klingon, out to do something\nvaliant to redeem her family's honour. She became very friendly with another\nalien on board that ship because of that alien's warrior traditions.\n-- \n \"Keyboard? Tis quaint!\" - M. Scott\n\n Adrian Hurt\t\t\t     |\tJANET:  adrian@uk.ac.hw.cs\n UUCP: ..!ukc!cs.hw.ac.uk!adrian     |  ARPA:   adrian@cs.hw.ac.uk\n#! rnews 1332\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!adrian\nFrom: adrian@cs.hw.ac.uk (Adrian Hurt)\nNewsgroups: rec.games.frp\nSubject: Re: Star Wars:  the RPG\nSummary: Pictures\nMessage-ID: <1569@brahma.cs.hw.ac.uk>\nDate: 7 Dec 87 10:42:12 GMT\nReferences: <1570@cup.portal.com> <13450021@acf4.UUCP> <1676@cup.portal.com> <1799@cup.portal.com>\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 21\n\nIn article <1799@cup.portal.com>, Nightstalker@cup.portal.com writes:\n> \n> Hi!  Does anyone know if the force skills can be learned by any PC like\n> a smuggler or outlaw for example, or can they only be taught to the\n> jedi classes and NPCs?  Thank you.\n>    Jason Wallace\n> \n\nAny character may learn the Force skills from a master, and the rulebook even\nencourages players using the Jedi characters to do some teaching, provided that\nthe pupil hasn't got any Dark Side points. Remember, Luke Skywalker was a\n\"Brash Pilot\" type until Obi-Wan (OB1? :-) got to him.\n\nNow for my question. There are some really nice pictures in the rulebook. Can I\nget separate copies of these? They would be great posters, especially the\nImperial Navy recruiting poster and the R2 advert.\n-- \n \"Keyboard? Tis quaint!\" - M. Scott\n\n Adrian Hurt\t\t\t     |\tJANET:  adrian@uk.ac.hw.cs\n UUCP: ..!ukc!cs.hw.ac.uk!adrian     |  ARPA:   adrian@cs.hw.ac.uk\n#! rnews 1047\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Klingon females\nMessage-ID: <816@its63b.ed.ac.uk>\nDate: 7 Dec 87 12:36:36 GMT\nReferences: <8712042225.AA03829@topaz.rutgers.edu> <3490@hoptoad.uucp>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 13\n\nIn article <3490@hoptoad.uucp> tim@hoptoad.UUCP (Tim Maroney) writes:\n>I like the fact that the Klingons are portrayed as sexist scumbags, but it\n>disturbs me that all major sentient races except humans and Romulans put\n>women in a subservient role (Klingons, Vulcans, Ferrengi).  It almost seems\n>as if we are being told that female subservience is part of the natural\n>order of sentience.  There are no major female-dominated sentient races, two\n>semi-egalitarian races, and three male-dominated races, a clear imbalance in\n>favor of male dominance.\n\nThen who was T'pau supposed to be?\n\nShe was vulcan, and very obviously in charge of things.\n\tBob.\n#! rnews 1313\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Max Headroom\nMessage-ID: <817@its63b.ed.ac.uk>\nDate: 7 Dec 87 13:10:09 GMT\nReferences: <82*quale@si.uninett> <3333@ihlpl.ATT.COM>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nDistribution: rec.arts.sf-lovers\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 18\n\nIn article <3333@ihlpl.ATT.COM> barth@ihlpl.UUCP (BARTH RICHARDS) writes:\n>The problem is that the first few episodes were *re*made by an American\n>production company for broadcast on ABC (not the Australian ABC).  As I\n>understand it, the first ABC run of six shows (winter/spring of 1987) were\n>all reworkings of episodes already done by the British.  The second run\n>(fall 1987) were stories newly developed by the American producers.\n\nSorry, there was only ever one original Max Headroom\nprogramme. That was a one-off TV film made by the BBC.\nAny episodes beyond the original story did not originate\nwith the BBC, although Maxs' creators may have been involved.\n\nMax then re-appeared on Channel 4 as host of a chat show for two\nshort seasons. (interviewing guest stars about their views\non Golf, music, life and, most importantly, Golf :->)\n\nHe then crossed the atlantic to be re-made by ABC.\n\tBob.\n#! rnews 1152\nPath: alberta!mnetor!uunet!mcvax!ukc!warwick!jeff\nFrom: jeff@warwick.UUCP (Jeff Smith)\nNewsgroups: comp.lang.c++\nSubject: cfront runs too fast (and fix)\nKeywords: cfront fix\nMessage-ID: <586@ubu.warwick.UUCP>\nDate: 7 Dec 87 14:49:10 GMT\nOrganization: Computer Science, Warwick University, UK\nLines: 27\n\nIf you can persuade cfront to finish in less than a second with the\n+S option on, then the calculation of the number of lines processed\nper second generates a divide-by-zero! On a SUN-3 with 1.2.1,\ntyping\n        cfront +S </dev/null\nwill demonstrate the problem.\n\nFix main.c thus:\n\n\t\tfprintf(stderr,\"real time delay %ld: %d lines per second\\n\",\n#ifdef\tCFRONTTOOFASTFIX\n\t\t\tstop_time-start_time,\n\t\t\tstop_time-start_time > 0 ?\n\t\t\t\tNline/(stop_time-start_time) : Nline);\n#else\t!CFRONTTOOFASTFIX\n\t\t\tstop_time-start_time, Nline/(stop_time-start_time) );\n#endif\tCFRONTTOOFASTFIX\n\t\tfflush(stderr);\n\n\nJeff\nwarwick!jeff\n\nPS. Does anyone have a fix to simpl.c for the null dereference\non Pfct f = Pfct(Pptr(q->tp)->typ) caused by the pointer to member function\nproblem? The problem's been noted a couple of times in comp.lang.c++, by\nPaul Calder and others..\n#! rnews 1114\nPath: alberta!mnetor!uunet!mcvax!ukc!warwick!strgh\nFrom: strgh@daisy.warwick.ac.uk (J E H Shaw)\nNewsgroups: rec.music.misc\nSubject: Re: More than Yes (really Egg)\nMessage-ID: <357@daisy.warwick.ac.uk>\nDate: 7 Dec 87 17:57:56 GMT\nReferences: <22034@ucbvax.BERKELEY.EDU> <19826@yale-celray.yale.UUCP>\nReply-To: strgh@daisy.warwick.ac.uk (J E H Shaw)\nOrganization: Computing Services, Warwick University, UK\nLines: 14\n\n----------\nEgg released at least one other album before `Civil Surface', I think it\nwas called `the Polite Force'.  They were very good.\n\nTheir drummer (Clive Brooks?) joined the Groundhogs.\nTheir bassist (Mont Campbell?) played sometimes with some of the other\n  Canterbury scene people: National Health, U.K. or similar (mid 70's).\nTheir organist, Dave Stewart, became a pop star (`It's My Party'), and\n  also played with National Health, Hatfield & the North, etc.\n\nApologies for any wrong names - the above is all based on memory.\n-- \nJ.E.H.Shaw  Department of Statistics, University of Warwick, Coventry CV4 7AL\n$$\\times\\times\\qquad\\top\\gamma\\alpha\\omega\\exists\\qquad{\\odot\\odot\\atop\\smile}$$\n#! rnews 1231\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!qmc-cs!nickd\nFrom: nickd@cs.qmc.ac.uk (Nick Dunlavey)\nNewsgroups: comp.cog-eng\nSubject: Touch-screen research\nMessage-ID: <348@sequent.cs.qmc.ac.uk>\nDate: 4 Dec 87 10:52:55 GMT\nReferences: <19@gollum.Columbia.NCR.COM> <290@rd1632.Dayton.NCR.COM>\nReply-To: nickd@qmc.ac.uk (Nick Dunlavey)\nOrganization: Sch Of C+IT, Thames Polytechnic, Woolwich, London, UK\nLines: 19\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\nDistribution:\n\nKeywords:\n\n\nI know that the CEGB (for those outside the UK, this is the\nUK's Central Electricity Generating Board) has done some work\non this in the Scientific Services Department in its\nNorth-eastern Region.  A report was produced called:\n\n\"A Touch-Sensitive Screen As An Interface For On-Line Control\",\nby Sutherland, Pringle and Carlin.\n\nIt documents the use of an upgraded VT103 in a power station\nfor operator control.\n-- \n-------------\nNick Dunlavey                 ARPA: nickd@cs.qmc.ac.uk    (gw: cs.ucl.edu)\nSchool Of Computing & IT      UUCP: nickd@qmc-cs.UUCP\nThames Polytechnic            Tel:  01-854 2030 Ext 339\nWellington Street\nWoolwich                      Thanks to Queen Mary College for\nLONDON                        net access\nSE18 6PF\n#! rnews 1563\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!adrian\nFrom: adrian@cs.hw.ac.uk (Adrian Hurt)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: ST:TNG posters\nSummary: Tolerance, please\nMessage-ID: <1570@brahma.cs.hw.ac.uk>\nDate: 7 Dec 87 13:24:11 GMT\nReferences: <5226@zen.berkeley.edu>\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 27\n\nIn article <5226@zen.berkeley.edu>, iverson@cory.Berkeley.EDU (Tim Iverson) writes:\n> \n> ...\t\t\tNot only that, but these article made no mention of\n> ST:TNG in the subject line or header, so I couldn't kill them easily.\n> \n> ...\t\t\t\t\tThe simple fact is that there is\n> newsgroup for all of you to communicate in, and if the rest of us wanted to\n> listen, then we would.\n> \n \nOh no, not again. Remember last time, when the number of articles complaining\nabout ST articles outnumbered the articles concerned (and every other single\ntype of article as well)?\n\nThere is a ST group, but not for \"all of us\". Some of us can't get at it. But\nyour point about headers is valid. In the interests of preventing Flame War III\nI suggest that those of us who wish to put ST (and Dr. Who, etc) articles here\nmake sure that \"ST\" (or Dr. Who, etc) or some similar warning appears in the\nheader. And those who wish to complain about such postings should also always\nput some clear warning in the header, so those of us who aren't interested can\nkill their articles easily.\n\n-- \n \"Keyboard? Tis quaint!\" - M. Scott\n\n Adrian Hurt\t\t\t     |\tJANET:  adrian@uk.ac.hw.cs\n UUCP: ..!ukc!cs.hw.ac.uk!adrian     |  ARPA:   adrian@cs.hw.ac.uk\n#! rnews 782\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: comp.os.misc\nSubject: incorporating processes into file systems\nMessage-ID: <1572@brahma.cs.hw.ac.uk>\nDate: 7 Dec 87 20:36:40 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 9\n\nI believe there has been at least one OS that manages the naming of\nprocesses and files in the same way - so 'ps' would become yet another\noption to 'ls'. I forget which. Can anyone enlighten me? References?\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1538\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: sci.physics,rec.games.programmer,comp.sys.mac\nSubject: simulating relativistic motion\nKeywords: relativity, graphics, flight simulators\nMessage-ID: <1573@brahma.cs.hw.ac.uk>\nDate: 7 Dec 87 21:00:08 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 18\nXref: alberta sci.physics:2410 rec.games.programmer:44 comp.sys.mac:10006\n\nA long time ago I read about a program developed at MIT that produced\nimages of the way ordinary scenes (a street) would look at speeds nearing\nc. I don't know if it used a plotter or calligraphic display, but it was\nso long ago that whatever it did should surely be possible now in real time\non a Mac or equivalent. Does anything like that exist? - a sort of flight\nsimulator for cosmic ray particles, that would let you define a scene\nwith a 3D graphics editor and then look at it at various fractions of c.\n(Colour would be a nice optional extra). The MIT program produced weirdly\ndrooping lampposts.\nMore ambitiously: what about general relativity? Here I am thinking about\nsome of the descriptions in Kaufmann's \"The Cosmic Frontiers of General\nRelativity\" about how the world would look from near a black hole.\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 737\nPath: alberta!mnetor!uunet!mcvax!enea!kuling!nicke\nFrom: nicke@kuling.UUCP (Niclas Holm)\nNewsgroups: comp.lang.c++\nSubject: Anyone ported c++ to UNISYS 50xx ?\nMessage-ID: <569@kuling.UUCP>\nDate: 6 Dec 87 16:33:36 GMT\nReply-To: nicke@kuling.UUCP (Niclas Holm)\nOrganization: Dept. of Computer Systems, Uppsala University, Sweden\nLines: 7\n\nI am interested in running c++ on a UNISYS 50xx (read NCR Tower ..).\nHas someone successfully ported it, or need I do it myself ?\n\n-- \n Niclas F. Holm    |  UUCP:  nicke@kuling ({seismo!mcvax}!enea!kuling!nicke)\n Idrottsg. 21 II   |   or    nicke@umecs  ({seismo!mcvax}!enea!umecs!nicke) \n S-753 35 Uppsala  |  Phone: +46 - 18 13 36\n SWEDEN            |            Famous Last Words: Look, no hands!\n#! rnews 1584\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!datlog!slxsys!jpp\nFrom: jpp@slxsys.specialix.co.uk (John Pettitt)\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: anyone have info on \"multilink\"?\nSummary: Get it from: TSL, Atlanta Ga.\nKeywords: remote modem multilink\nMessage-ID: <108@slxsys.specialix.co.uk>\nDate: 7 Dec 87 20:01:09 GMT\nReferences: <167@iisat.UUCP>\nReply-To: jpp@slxsys.UUCP (John Pettitt)\nOrganization: Specialix International, London, UK.\nLines: 31\n\nIn article <167@iisat.UUCP> iis@iisat.UUCP (Paul Gauthier) writes:\n>i am trying to locate information on a program called mutlilink. i have\n>heard that it permits one to run software on an ibm from a remote (dumb)\n>terminal. is this correct? does anyone know of other software that will\n>accomplish the same? any and all help would be appreciated. thank you.\n\nMultilink will allow several serial screens to run dos programs.\n\nMore info from:\n\tThe Software Link\n\t3577 Parkway Lane\n\tAtlanta  GA 30092\n\t(404) 448 5465\n\nThey also have a product call PC-MOS that does the same thing on\n386 boxes.  \n\nOther software that lets you run multi user dos includes QNX,\nConcurrent DOS (from Digital Research - remember CP/M :-),\nXenix (vp/ix comming soon), Unix V (ISC and Microport, with\nvp/ix and locus merge respectivly).\n\nDisclaimer: I don't sell any of the above - just write serial\ndriver's for them - not easy in some cases :-(\n\t\n\n\n-- \nJohn Pettitt - 144.5 MHz: G6KCQ, CIX: jpettitt,  Voice: +44 1 398 9422\nUUCP:  ...uunet!mcvax!ukc!pyrltd!slxsys!jpp  (jpp@slxsys.specialix.co.uk)\nDisclaimer: I don't even own a cat to share my views !\n#! rnews 1792\nPath: alberta!mnetor!uunet!mcvax!targon!wim\nFrom: wim@targon.UUCP (Wim C. J. van Eerdt)\nNewsgroups: comp.lang.c++\nSubject: Bug bug? solved (?)\nKeywords: inline local variables\nMessage-ID: <367@targon.UUCP>\nDate: 8 Dec 87 09:22:14 GMT\nReply-To: wim@targon.UUCP (Wim C. J. van Eerdt)\nOrganization: Nixdorf Computer BV., OSP, P.O. Box 29,Vianen, The Netherlands\nLines: 34\n\nAs long as the department does not have an uucp-feed,\nyou can e-mail me, the poster.\nSuccess!\n\n\tWim van Eerdt                   E-mail: mcvax!targon!wim\n\tOSP, Nixdorf Computer Bv, Postbus 29, 4130 EA Vianen\n\tNederland. Tel.: +31 3473 62211.\n\n----------------News article got:-------------------------------------\nAuthor: Gerard van Dorth\nSubject:  Bug bug? solved (?)\nKeywords: inline local variables\n\n> ... Redeclaration of \"_au2__Xt_val_global\"\n\nThe conditional statement on the lines 161/162 \"if ( base == BLOCK  &&\n\tn->lex_level < ( (Pfct(expand_fn->tp)->memof) ? 3 : 2 ) )\"\nin file expand.c has to be changed in:\n\"if (  base == BLOCK && n->lex_level < 'function-defined-in-class' ? 3 : 2  )\".\n\nFor a function defined in a class the lex_level is raised by the curly brace\nof the class itself. Not only member functions (memof = member of) can be\ndefined inline, friends can also.\n(Note that funny declarations of local variables did appear in case a member\nfunction which needs locals is declared inline but not defined in the class\nitself).\n\nThe most simple way to tell whether a function is defined in a class is the\nuse of a global variable (the more globals the more fun), set and reset \n(embracing the first loop) in the routine classdef::simpl() in file simpl.c\n-- \n\tWim van Eerdt                   E-mail: mcvax!targon!wim\n\tOSP, Nixdorf Computer Bv, Postbus 29, 4130 EA Vianen\n\tNederland. Tel.: +31 3473 62211.\n#! rnews 1196\nPath: alberta!mnetor!uunet!mcvax!unido!infbs!hild\nFrom: hild@infbs\nNewsgroups: rec.music.classical\nSubject: Re: K. u. K. - (nf)\nMessage-ID: <24200003@infbs.UUCP>\nDate: 7 Dec 87 10:26:00 GMT\nReferences: <19123@amdahl.UUCP>\nLines: 17\nNf-ID: #R:amdahl:19123:infbs:24200003:000:873\nNf-From: infbs!hild    Dec  7 11:26:00 1987\n\nThis is only partly true.\n\n\"K.u.K.\" is short for \"Kaiserlich und Koeniglich\", that's right.\nBut it has nothing to do with the king of prussia.\n\nAt the time \"K.u.K.\" was used, the king of Austria was also the\nking of Hungary and the emperor of \"Oestreich-Ungarn\" (Austria and\nHungary. When thinking of K.u.K., I have the picture of\nKaiser Franz Josef, a fatherly man who kept his nation in a long\nperiod of prosperous (sp?) peace, especially good for the arts.\n\nBTW, Otto von Bismarck is remembered as a man who united Germany\n(with an iron hand, that's true), which at that time was divided\ninto many small parts, all of them having a duke, different legislation\nand borders between them. This meant having to pay customs very often,\nthus disallowing free trade, which in turn was necessary for the\nupcoming industrial revolution. So you might regard OvB a good statesman.\n#! rnews 1564\nPath: alberta!mnetor!uunet!mcvax!nikhefh!t68\nFrom: t68@nikhefh.UUCP (Jos Vermaseren)\nNewsgroups: comp.sys.atari.st\nSubject: Re: FOLDERXXXXX\nSummary: FOLDRXXX may not do the job either.\nMessage-ID: <410@nikhefh.UUCP>\nDate: 8 Dec 87 10:44:50 GMT\nReferences: <637@aucs.UUCP>\nOrganization: Nikhef-H, Amsterdam (the Netherlands).\nLines: 22\n\nIn article <637@aucs.UUCP>, 870646c@aucs.UUCP (barry comer) writes:\n> After I posted my message about the GEMBOOT prg. not working properly, I\n> received a message stating that GEMBOOT will not work properly with the new ROMS,well he also stated that there is a prg. call something like \"FOLDRXXX.TOS\",\n> will this prg. work with the new ROMS? If it will do the trick could someone\n> that has it please sent it to me in a reply msg. PLEASE do not send it via\n> the binaries section I will never get it. \n> Thanx in advance\n> Barry\n\nFOLDRXXX starts up with a little table of ROM versions and corresponding\nto each version an address. At that address it inserts a list of memory\npieces to be used. If you use new ROM's these addresses have been changed\nso you cannot use FOLDRXXX unless you figure out the new address you need\nand substitute the necessary information into the binary of FOLDRXXX ( or\na disassembly ). On the other hand: the new version of the ROMs for the\nMega has a much larger OSpool from which these memory blocks are taken.\nIt used to be 6000 bytes, but the new size is 16000 bytes. I don't know\nwhether this makes FOLDRXXX superfluous. Maybe Allan Pratt can comment\non that.\n\nJos Vermaseren\nT68@nikhefh.uucp\n#! rnews 793\nPath: alberta!mnetor!uunet!mcvax!nikhefk!marcel\nFrom: marcel@nikhefk.UUCP (Marcel Corbeek)\nNewsgroups: rec.music.classical\nSubject: Question\nMessage-ID: <291@nikhefk.UUCP>\nDate: 8 Dec 87 11:19:26 GMT\nReply-To: marcel@nikhefk.UUCP (Marcel Corbeek)\nOrganization: Nikhef-K, Amsterdam (the Netherlands).\nLines: 15\n\nIn the film \"Once upon a time in America\" an ouverture of Rossini is played.\nIs there anyone who can tell me which one this is ?\n\nMarcel Corbeek,\t\t\tArpanet : marcel@nikhefk.uucp\nNIKHEF-K, Amsterdam.\t\tBitnet  : v59u0002@hasara11.bitnet\nHome address :\nAletta Jacobsstraat 48,\n1628 NP Hoorn,\nThe Netherlands.\nMarcel Corbeek,\t\t\tArpanet : marcel@nikhefk.uucp\nNIKHEF-K, Amsterdam.\t\tBitnet  : v59u0002@hasara11.bitnet\nHome address :\nAletta Jacobsstraat 48,\n1628 NP Hoorn,\nThe Netherlands.\n#! rnews 2545\nPath: alberta!mnetor!uunet!mcvax!prlb2!ronse\nFrom: ronse@prlb2.UUCP (Christian Ronse)\nNewsgroups: sci.math\nSubject: Re: Putnam Exam (SPOILER)\nSummary: another proof for the x<25 solution\nKeywords: Putnam\nMessage-ID: <388@prlb2.UUCP>\nDate: 8 Dec 87 10:03:24 GMT\nReferences: <16863@topaz.rutgers.edu> <16864@topaz.rutgers.edu> <3482@husc6.harvard.edu>\nOrganization: Philips Research Laboratory, Brussels\nLines: 69\n\nIn article <3482@husc6.harvard.edu>, elkies@huma1.HARVARD.EDU (Noam Elkies) writes:\n< [Problem A-6 of the 48th Annual W.L.Putnam Contest, Dec. 5, 1987: ]\n< >> For each positive integer n, let a(n) be the number of zeros in the\n< >> base 3 representation of n.  For which positive real numbers x does\n< >> the series\n< >> \n< >> \t\t\t inf\n< >> \t\t\t-----\tx^a(n)\n< >> \t\t\t\\\t------\n< >> \t\t\t/\t n^3\n< >> \t\t\t-----\n< >> \t\t\tn = 1\n< >> \n< >> converge?\n\n> Actually the correct interval of convergence is x<25.  Indeed, in the \n> partial sum corresponding to 3^k<=n<3^(k+1), the coefficients n^(-3) are\n> within a factor of 27 of 27^(-k), and the sum of x^a(n) is easily seen to\n> be 2(x+2)^k, so by comparison with the geometric series sum(r^k,k,0,inf)\n> with r=(x+2)/27 we find that the series converges if and only if r<1,\n> i.e. x<25.\n\nThis is correct, but the way the proof is written is not easy to understand. I\ngive below another proof.\n\nFor n>0 let\n\nT(n) = x^a(n)/n^3\tand \tU(n) = T(3n) + T(3n+1) + T(3n+2)\n\nand for k>=0 let\n\nZ(k) = sum {n=3^k to 3^(k+1)-1} T(n)\n\nWe have\n\nZ(k+1)\t= sum {n=3^(k+1) to 3^(k+2)-1} T(n)\n\t= sum {n=3^k to 3^(k+1)-1} [T(3n) + T(3n+1) + T(3n+2)]\n\t= sum {n=3^k to 3^(k+1)-1} U(n)\n\nLet us compare U(n) to T(n). We have a(3n)=a(n)+1 and a(3n+1)=a(3n+2)=a(n).\nThus\n\nU(n) = x^[a(n)+1]/(3n)^3 + x^a(n)/(3n+1)^3 + x^a(n)/(3n+2)^3\n\nand so U(n) has as upper bound\n\nx^a(n) * (x+2)/(3n)^3 = T(n) * (x+2)/27\n\nand as lower bound\n\nx^a(n) * (x+2)/(3n+2)^3 = T(n) * (x+2)/(3+2/n)^3\n\nin other words U(n) = T(n) * (x+2)/(27+e(n)), where e(n)<(3+2/n)^3-27 tends to\n0 when n tends to infinity. It follows then that\n\nZ(k+1)= Z(k)*(x+2)/(27+f(k))\n\nwhere f(k)<(3+2/3^k)^3-27 tends to 0 for n tending to infinity.\n\nNow the series is the sum of all Z(k). Thus for x>25 we have Z(k+1)>Z(k) for k\nlarge enough, and the series diverges; for x<25 we have Z(k+1)< r * Z(k) (with\nr=(x+2)/27<1) for every k, and the series converges. For x=25 the series\ndiverges too (I think so), because Z(k+1)/Z(k) tends to 1 for k tending to\ninfinity.\n\nChristian Ronse\t\tmaldoror@prlb2.UUCP\n{uunet|philabs|mcvax|...}!prlb2!{maldoror|ronse}\n\n\t\tTime is Mona Lisa\n#! rnews 1248\nPath: alberta!mnetor!uunet!mcvax!botter!star!sater\nFrom: sater@cs.vu.nl (Hans van Staveren)\nNewsgroups: comp.dcom.lans,comp.sys.ibm.pc\nSubject: Need info on hardware Western Digital EtherCard PLUS\nKeywords: moron suppliers, Ethernet, IBM PC's\nMessage-ID: <608@sater.cs.vu.nl>\nDate: 8 Dec 87 14:11:10 GMT\nOrganization: V.U. Informatica, Amsterdam, the Netherlands\nLines: 18\nXref: alberta comp.dcom.lans:906 comp.sys.ibm.pc:9572\n\nWe recently acquired some Western Digital EtherCard PLUS cards for IBM PC's.\nWe were planning to write MINIX drivers for them and we wanted the hardware\ndocumentation from the supplier. We were indeed promised that.\nHowever, as one might expect, we only got the documentation that stated\nwhere to plug in the cable, and we are more interested in which IO-ports there\nare, and what they do. Our supplier is not very helpful at the moment.\n\nWe will continue to nag our supplier, but in the meantime, does anyone have\nthe hardware info on this board?\nWe know there is a NatSemi DP8390 on there, and we have the datasheet on that\none, but there should also be an Ethernet Address Rom, plus some other things\non the board.\n\nAs they say, thanks in advance.\n\n\t\t\t\tHans van Staveren\n\t\t\t\tVrije Universiteit\n\t\t\t\tAmsterdam, Holland\n#! rnews 742\nPath: alberta!mnetor!uunet!mcvax!nikhefk!marcel\nFrom: marcel@nikhefk.UUCP (Marcel Corbeek)\nNewsgroups: rec.music.synth\nSubject: Question\nMessage-ID: <292@nikhefk.UUCP>\nDate: 8 Dec 87 15:59:15 GMT\nReply-To: marcel@nikhefk.UUCP (Marcel Corbeek)\nOrganization: Nikhef-K, Amsterdam (the Netherlands).\nLines: 15\n\nIs there anybody who can give me some information about the WERSI\nstageperformer?\n\nMarcel Corbeek,\t\t\tArpanet : marcel@nikhefk.uucp\nNIKHEF-K, Amsterdam.\t\tBitnet  : v59u0002@hasara11.bitnet\nHome address :\nAletta Jacobsstraat 48,\n1628 NP Hoorn,\nThe Netherlands.\nMarcel Corbeek,\t\t\tArpanet : marcel@nikhefk.uucp\nNIKHEF-K, Amsterdam.\t\tBitnet  : v59u0002@hasara11.bitnet\nHome address :\nAletta Jacobsstraat 48,\n1628 NP Hoorn,\nThe Netherlands.\n#! rnews 1193\nPath: alberta!mnetor!uunet!mcvax!targon!wim\nFrom: wim@targon.UUCP (Wim C. J. van Eerdt)\nNewsgroups: comp.lang.c++\nSubject: Another C++ problem, solved (?)\nMessage-ID: <368@targon.UUCP>\nDate: 8 Dec 87 15:33:45 GMT\nReply-To: wim@targon.UUCP (Wim C. J. van Eerdt)\nOrganization: Nixdorf Computer BV., OSP, P.O. Box 29,Vianen, The Netherlands\nLines: 27\n\nI did get yet another file from my colleague Gerard.\nAs in other articles stated send he is not reachable by e-mail.\nI shall forward your mail!\nSuccess and have fun!\n\n\t\tWim\n--------Fix---------------------------------------------------------\nAuthor: Gerard van Dorth\nSubject:  Another C++ problem, solved (?)\n\n> Yet another crazy C++ problem\n> ...\n> The below code is a generalization of a problem we are seeing with C++\n> ...\n\nSubstitute the line\n\t\tPfct f = Pfct(Pptr(q->tp)->typ);\nin routine call::simpl of the file simpl.c by\n\t\tPtype pt = q->tp;\n\t\twhile (pt->base == TYPE) pt = Pbase(pt)->b_name->tp;\n\t\tPfct f = Pfct(Pptr(pt)->typ);\t// for basic type only.\n\n(Simpl(e) turns out to be hard).\n-- \n\tWim van Eerdt                   E-mail: mcvax!targon!wim\n\tOSP, Nixdorf Computer Bv, Postbus 29, 4130 EA Vianen\n\tNederland. Tel.: +31 3473 62211.\n#! rnews 1046\nPath: alberta!mnetor!uunet!mcvax!cogpsi!tom\nFrom: tom@cogpsi.UUCP (Tom Vijlbrief)\nNewsgroups: comp.unix.wizards\nSubject: Re: Unattended dumps (BSD4.3)\nMessage-ID: <327@cogpsi.UUCP>\nDate: 8 Dec 87 15:51:57 GMT\nReferences: <9032@santra.UUCP>\nReply-To: tom@cogpsi.UUCP (Tom Vijlbrief)\nOrganization: TNO Institute for Perception, Soesterberg, The Netherlands\nLines: 21\n\nIn article <9032@santra.UUCP> nispa@hutcs.hut.fi (Tapani Lindgren) writes:\n>Can yes(1) somehow be piped to a program that reads /dev/tty?\n>Could dump(8) be modified to abort at errors without any questions?\n\nIf you want dump to read the output from e.g. yes(1)\nthen you'll have to use a pty(4).\n\nYou should arrange that this pty is the control terminal of the\ndump program and then write (redirect) the output of yes(1) to the pty.\n\nSetting the control terminal of dump is done by writing a program which:\n\nA) Removes the association with its control terminal by:\n\n   ioctl(f, TIOCNOTTY, 0);\n\nB) Opens the pty.\n\nC) Exec's the dump program.\n\nThe above applies to Berkeley Unix 4.X\n#! rnews 1034\nPath: alberta!mnetor!uunet!mcvax!botter!ark!maart\nFrom: maart@cs.vu.nl (Maarten Litmaath)\nNewsgroups: comp.unix.wizards\nSubject: Re: Emacs csh alias -- better solution than the first posted (2)\nSummary: this time really faster\nKeywords: this time really faster\nMessage-ID: <1160@ark.cs.vu.nl>\nDate: 8 Dec 87 16:55:49 GMT\nReferences: <brl-adm.10672> <1508@ogcvax.UUCP> <1159@ark.cs.vu.nl>\nReply-To: maart@cs.vu.nl (Maarten Litmaath)\nOrganization: VU Informatica, Amsterdam\nLines: 17\n\nOf course the alias had to be:\n\nalias emacs \\\n'jobs > /tmp/jobs; grep emacs /tmp/jobs > /dev/null && fg %?emacs || /bin/emacs'\n                                                           ^         ^^^^^\n                                                           !         !!!!!\nor\n\n      !!\n      vv\nalias em \\\n'jobs > /tmp/jobs; grep emacs /tmp/jobs > /dev/null && fg %emacs || emacs'\n\nSorry.\n-- \nTime flies like an arrow, fruit flies |Maarten Litmaath @ Free U Amsterdam:\nlike an orange.      (seen elsewhere) |maart@cs.vu.nl, mcvax!botter!ark!maart\n#! rnews 691\nPath: alberta!mnetor!uunet!mcvax!botter!ark!maart\nFrom: maart@cs.vu.nl (Maarten Litmaath)\nNewsgroups: comp.unix.wizards\nSubject: Re: Emacs csh alias -- better solution than the first posted\nSummary: faster\nKeywords: faster\nMessage-ID: <1159@ark.cs.vu.nl>\nDate: 8 Dec 87 15:41:32 GMT\nReferences: <brl-adm.10672> <1508@ogcvax.UUCP>\nReply-To: maart@cs.vu.nl (Maarten Litmaath)\nOrganization: VU Informatica, Amsterdam\nLines: 7\n\nalias emacs \\\n'jobs > /tmp/jobs; grep emacs /tmp/jobs > /dev/null && fg %emacs || emacs'\n\nBTW, long live vi!\n-- \nTime flies like an arrow, fruit flies |Maarten Litmaath @ Free U Amsterdam:\nlike an orange.      (seen elsewhere) |maart@cs.vu.nl, mcvax!botter!ark!maart\n#! rnews 987\nPath: alberta!mnetor!uunet!mcvax!mhres!jv\nFrom: jv@mhres.mh.nl (Johan Vromans)\nNewsgroups: comp.unix.questions\nSubject: Re: UCB 2.9 LISP goes illegal\nSummary: sysmac.sml? RT-11\nMessage-ID: <1498@mhres.mh.nl>\nDate: 8 Dec 87 21:16:13 GMT\nReferences: <10712@brl-adm.ARPA>\nOrganization: Multihouse N.V., The Netherlands\nLines: 12\n\nIn article <10712@brl-adm.ARPA> PAAAAAR%CALSTATE.BITNET@CUNYVM.CUNY.EDU writes:\n>We are trying to make LISP run on an 11/24 (yes they still exist)\n>What is sysmac.sml, for instance?\n\nThat reminds me to the goold old days, when PDP-11's ran only RSX,\nRT-11 or RSTS. Sysmac.sml is a macro library, which contains the definitions\nfor the RT-11 \"Programmed Requests\" (nowadays known as system calls).\nDon't think it's equivalent exists on Unix ...\n-- \nJohan Vromans                              | jv@mh.nl via European backbone\nMultihouse N.V., Gouda, the Netherlands    | uucp: ..{uunet!}mcvax!mh.nl!jv\n\"It is better to light a candle than to curse the darkness\"\n#! rnews 6100\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!srp\nFrom: srp@ethz.UUCP (Scott Presnell)\nNewsgroups: rec.games.hack,comp.sources.d\nSubject: Re: Compilation of Nethack 2.2\nKeywords: AAARGH.\nMessage-ID: <262@bernina.UUCP>\nDate: 8 Dec 87 06:13:59 GMT\nReferences: <9714@shemp.UCLA.EDU>\nReply-To: srp@bernina.UUCP (Scott Presnell)\nOrganization: Chem. Dept., Swiss Federal Inst. of Tech. (ETH-Zurich)\nLines: 211\nXref: alberta rec.games.hack:1746 comp.sources.d:1578\n\nIn article <9714@shemp.UCLA.EDU> claus@CS.UCLA.EDU (Claus Giloi) writes:\n\n>I just downloaded Nethack 2.2 from the net and compiled it on my AT\n>at home.\n>There were only a few small problems, then it came to linking the \n>monster. An executable was produced, but I get a \"Stack Overflow\" \n>error when I try to run the 350K executable, and changing the\n>value of (STACK:) to outlandish figures (8000, 3fff) didn't change\n>that. Someone out there must have gotten it to run, please tell me\n>what value you used to link it. (I am using MSC 4.0)\n\nHere's the makefile that I used to get Nethack up under MSC 4.0... NB: the\nCFLAGS macro and the link command.  I was able to play a couple of levels\nwithout stack errors or hangups, however there are some problems,\n(everything seems to be identified, inventory not displayed correctly,\ncolor not quite right (but overall it works)) so i did not \"install\" it.\n\n\"good luck, jim\"\n\nScott Presnell \t\t\t\t\t\tOrganic Chemistry\nSwiss Federal Institute of Technology  (ETH-Zentrum)\nCH-8092 Zurich, Switzerland.\nuucp:seismo!mcvax!cernvax!ethz!srp (srp@ethz.uucp); bitnet:Benner@CZHETH5A\n\n\n\n#\tSCCS Id: @(#)Makefile.pc\t2.2\t87/11/11\n# \tMakefile for NetHack (PC) version 1.0 written using\n#\tMicrosoft(tm) \"C\" v3.0 or better.\n# \n# Large memory model, register bug, remove stack probes:\nWIZARD=\nV = 22\n#CFLAGS = -A$(MODEL) -DREGBUG -DLINT_ARGS -DVER=$V $(WIZARD) -Ot -Gs -Gt100\nCFLAGS = -nologo -A$(MODEL) -DLINT_ARGS -DVER=$V -Ox -Gt10\nCC = cl\nLIBS =\nLFLAGS =\nMODEL = L\nSETARGV = #$(LIB)\\$(MODEL)SETARGV\n.SUFFIXES: .exe .obj .c\n.c.obj:; cl $(CFLAGS) -c $*.c\n.c.exe:;\n    cl $(CFLAGS) -c $*.c\n    link $*.obj $(SETARGV), $@,, $(LIBS) $(LFLAGS);\n\n# The game name\nGAME = hack.exe\n\n# The game directory\nGAMEDIR = \\h\n\n# All object modules\nOBJS = decl.obj apply.obj bones.obj cmd.obj do.obj dothrow.obj\\\n\tdo_name.obj do_wear.obj dog.obj dogmove.obj eat.obj end.obj \\\n\tengrave.obj fight.obj fountain.obj hack.obj invent.obj \\\n\tlev.obj main.obj makemon.obj mhitu.obj mklev.obj \\\n\tmkmaze.obj mkobj.obj mkshop.obj mon.obj monmove.obj\\\n\tmonst.obj o_init.obj objnam.obj options.obj \\\n\tpager.obj polyself.obj potion.obj pray.obj pri.obj prisym.obj\\\n\tread.obj rip.obj rumors.obj save.obj \\\n\tsearch.obj shk.obj shknam.obj sit.obj spell.obj steal.obj \\\n\ttermcap.obj timeout.obj topl.obj topten.obj track.obj trap.obj \\\n\ttty.obj unix.obj u_init.obj vault.obj wield.obj \\\n\twizard.obj worm.obj worn.obj write.obj zap.obj \\\n\tversion.obj rnd.obj alloc.obj msdos.obj\n\n# The main target - you may want to try both of these alternatives.\n#\n$(GAME) : $(OBJS)\n#\tlink $(OBJS), $(GAME) /NOIG /STACK:4000 /CP:1;\n\tlink $(OBJS), $(GAME) /NOIG /STACK:10000 /SEG:512;\n\t\n\n#\tvariable auxilary files.\n#\nVARAUX = data rumors\n\ninstall : $(GAME) $(VARAUX)\n\t- exepack $(GAME) $(GAMEDIR)\\$(GAME)\n\t- exemod $(GAMEDIR)\\$(GAME) /max 1\n\nclean :\n\terase $(GAME)\n\nspotless: clean\n\terase *.obj\n\terase main.c\n\terase tty.c\n\terase unix.c\n\nsrcs :\n\tcopy makefile \\tmp\n\tcopy *.c \\tmp\n\tcopy *.h \\tmp\n\tcopy \\local\\make\\make.doc \\tmp\n\tcopy \\local\\make\\make.ini \\tmp\n\tcopy \\bin\\make.exe \\tmp\n\tcd \\tmp\n\ttime\n\ttouch *.*\n\tarc m hack$Vs * *.*\n\tcd $(CWD)\n\n\n#\tOther dependencies\n#\nRUMORFILES= rumors.bas rumors.kaa rumors.mrx\n\nmakedefs.exe:\tmakedefs.c alloc.obj config.h\n\tcl -AL makedefs.c alloc.obj\n\n\nrumors :  config.h $(RUMORFILES) makedefs.exe\n\tmakedefs.exe -r\n\ndata :  config.h data.bas makedefs.exe\n\tmakedefs.exe -d\n\nonames.h :  config.h objects.h makedefs.exe\n\tmakedefs.exe -o\n\n#\tBelow is a kluge.  date.h should actually depend on any source\n#\tmodule being changed. (but hack.h is close enough for most).\n#\ndate.h :  hack.h makedefs.exe\n\tmakedefs.exe -D\n\ntrap.h :  config.h makedefs.exe\n\tmakedefs.exe -t\n\nmain.obj :  pcmain.c hack.h\n\t$(CC) $(CFLAGS) -Fo$@ -c pcmain.c\n\ntty.obj :  pctty.c hack.h msdos.h\n\t$(CC) $(CFLAGS) -Fo$@ -c pctty.c\n\nunix.obj :  pcunix.c hack.h mkroom.h\n\t$(CC) $(CFLAGS) -Fo$@ -c pcunix.c\n\ndecl.obj :  hack.h mkroom.h\napply.obj :  hack.h edog.h mkroom.h\nbones.obj :  hack.h\nhack.obj :  hack.h\ncmd.obj :  hack.h func_tab.h\ndo.obj :  hack.h\ndo_name.obj :  hack.h\ndo_wear.obj :  hack.h\ndog.obj :  hack.h edog.h mkroom.h\ndogmove.obj :  hack.h mfndpos.h edog.h mkroom.h\ndothrow.obj :  hack.h\neat.obj :  hack.h\nend.obj :  hack.h\nengrave.obj :  hack.h\nfight.obj :  hack.h\nfountain.obj :  hack.h mkroom.h\ninvent.obj :  hack.h wseg.h\nioctl.obj :  config.h\nlev.obj :  hack.h mkroom.h wseg.h\nmakemon.obj :  hack.h\nmhitu.obj :  hack.h\nmklev.obj :  hack.h mkroom.h\nmkmaze.obj :  hack.h mkroom.h\nmkobj.obj :  hack.h\nmkshop.obj :  hack.h mkroom.h eshk.h\nmon.obj :  hack.h mfndpos.h\nmonmove.obj :  hack.h mfndpos.h\nmonst.obj :  hack.h eshk.h\nmsdos.obj : msdos.h\no_init.obj :  config.h objects.h onames.h\nobjnam.obj :  hack.h\noptions.obj :  hack.h\npager.obj :  hack.h\npolyself.obj : hack.h\npotion.obj :  hack.h\npray.obj :  hack.h\npri.obj :  hack.h\nprisym.obj :  hack.h wseg.h\nread.obj :  hack.h\nrip.obj :  hack.h\nrumors.obj :  hack.h\nsave.obj :  hack.h\nsearch.obj :  hack.h\nshk.obj :  hack.h mfndpos.h mkroom.h eshk.h\nshknam.obj :  hack.h\nsit.obj : hack.h\nspell.obj :  hack.h\nsteal.obj :  hack.h\ntermcap.obj :  hack.h\ntimeout.obj :  hack.h\ntopl.obj :  hack.h\ntopten.obj :  hack.h\ntrack.obj :  hack.h\ntrap.obj :  hack.h edog.h mkroom.h\nu_init.obj :  hack.h\nvault.obj :  hack.h mkroom.h\nwield.obj :  hack.h\nwizard.obj :  hack.h\nworm.obj :  hack.h wseg.h\nworn.obj :  hack.h\nwrite.obj :  hack.h\nzap.obj :  hack.h\nversion.obj :  hack.h date.h\nextern.h: config.h spell.h obj.h\n\ttouch extern.h\nhack.h: extern.h flag.h gold.h monst.h objclass.h rm.h trap.h you.h \n\ttouch hack.h\nobjects.h:  config.h objclass.h\n\ttouch objects.h\nyou.h: config.h onames.h permonst.h \n\ttouch you.h\n#! rnews 3561\nPath: alberta!mnetor!uunet!mcvax!cernvax!jmg\nFrom: jmg@cernvax.UUCP (jmg)\nNewsgroups: comp.protocols.appletalk\nSubject: Kinetics/NCSA problems\nMessage-ID: <581@cernvax.UUCP>\nDate: 8 Dec 87 10:01:07 GMT\nReply-To: jmg@cernvax.UUCP ()\nOrganization: CERN European Laboratory for Particle Physics, CH-1211 Geneva, Switzerland\nLines: 58\n\nThis is a bit of a flame, which I hope does not upset some people\ntoo much. I have tried sending the comments privately, but have had\nno reply.\nI got a Kinetics internal Ethernet interface for a Mac SE, plus the\nethernet driver, test software and NCSA telnet version 1.12.\nIn order to try out this software in a safe manner I created a mini-\n-Ethernet with the Mac and an Ethernet monitor. Am I glad that I did\nthis!\nThe test software, when run, tends to throw out a large number of\nbroadcast packets in a very short space of time. Sometimes one can\ncontrol the frequency, other times not. At least one test threw out\nabout 200 broadcast packets in much less than one second. If I had\nbeen on the real CERN Ethernet then a few hundred users would have\nhad to deal with these!\nFLAME ON\nWhen will people writing test software avoid the intensive use of\nbroadcast packets? Multicast would be slightly better, but even then\nthe software should establish the address of those other computers\nwith which it can run a test, and then address them directly.\nFLAME OFF (for a while)\nI then tried to run NCSA telnet. This also started out with about\n70 immediate broadcasts. These started out with a set of three\ntypes of broadcast:\n  1. arp with source ip address 0.0.0.255, looking for 0.0.0.127\n  2. something with type field 80f3 (what the hell is this?)\n  3. some other arp-type (type field 809b) with sender as 0.0.0.127\nThese three are repeated about 20 times at intervals of about\n10 milliseconds (yes, milliseconds!). There are then a few more type\n809b broadcasts at reasonable (a few hundred milliseconds!) intervals\nbefore telnet starts to arp for the real host that I asked for.\nFLAME ON\nWhy does software often insist on repeating packets at very short\nintervals on vey reliable LANs (and have you seen the Sun lately!)?\nFLAME OFF\nDespite all the above, I waited for a quiet moment before connecting\nonto the real Ethernet. I then tried telnet to our Ultrix Vax.\nImmediate remark: keyboard in application mode does not work for us.\nI then thought to run the vt100 test program (which some of you might\nalso have picked up off usenet). What a disaster: the emulation fails\nall over the place!\nNever mind, let us see if I can connect to our IBM VM system. Of course,\nI have to go via a Spartacus KNET, because there is no NCSA tn3270\n(is anyone working on this?). Complete failure: Spartacus has a bit of\na peculiar telnet setup (though Ultrix, bsd4.2 and FTP Inc. telnet on\na PC work fine) which seems to screw NCSA telnet.\nFinal try: go through an IBM 7171 front-end, which has 3270 to VT100\nbuilt in. Sort of works (using ESC n for PF key n), but since the\napplication keypad mode fails there is no way that I could get PA2\nfor clear screen. Merde (which the French will understand.\nFLAME ON\nI know that NCSA is now at version 2.0. Why did I get version 1.12\nfrom Kinetics? (and why must only a Kinetics agent modify their Mac SCSI\nbox for a European power supply?). How do I get an updated version\nquickly (no, I cannot do anonymous FTP!). Why have these simple tests\nnever been reported before? etc. etc.\nFLAME OFF\nI would be delighted if someone could tell me that all the above problems\nare fixed in the current release!\n#! rnews 1102\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!wanner\nFrom: wanner@ethz.UUCP (Juerg Wanner)\nNewsgroups: rec.games.misc\nSubject: Re: The Pawn help\nMessage-ID: <263@bernina.UUCP>\nDate: 8 Dec 87 14:48:50 GMT\nReferences: <2884@cbmvax.UUCP> <2299@killer.UUCP> <2910@cbmvax.UUCP>\nReply-To: wanner@owf.UUCP (Juerg Wanner)\nOrganization: OWF AG, Switzerland\nLines: 17\nKeywords:\n\n\nIn article <2910@cbmvax.UUCP> daveb@cbmvax.UUCP (Dave Berezowski) writes:\n>How does one assure that they get the chest?  Wait around for Kronos at the\n>beginning of the game after you've delivered the note?\n\nAfter delivering the note? Hmmm... that might be too late.\n\n>I've been told that there is a bug in the game such that you must get to\n>the pedestal asap else the blue key won't be there (this is what has happended\n>to me).  If I do go to the pedestal first, will I miss the Adventuer and\n>Kronos?  ie. should I wait around for Kronos, give the adventuer (with the\n>chest I guess), and then go for the blue key?\n\nI've neither encountered that bug, nor did I first get the key. There's a lot\none can do before.\n\n\nJuerg Wanner\n#! rnews 2241\nPath: alberta!mnetor!uunet!mcvax!nikhefk!paulm\nFrom: paulm@nikhefk.UUCP (Paul Molenaar)\nNewsgroups: comp.sys.mac\nSubject: Re: HyperCard Find\nSummary: Here's the solution (well...)\nMessage-ID: <293@nikhefk.UUCP>\nDate: 8 Dec 87 23:45:24 GMT\nReferences: <1262@runx.ips.oz>\nOrganization: Nikhef-K, Amsterdam (the Netherlands).\nLines: 50\n\nIn article <1262@runx.ips.oz>, clubmac@runx.ips.oz (Macintosh Users Group) writes:\n> \n> I was asked this question by a guy on the weekend, and was unable to help\n> him.  Any of you Hypercard gurus able to answer??\n> \n> \"I want to have a BACKGROUND button which has a script that tries to FIND\n> an arbitrary text.  However, when I try it, it only finds the text in\n> BACKGROUND fields, not FOREGROUND.  The FIND works properly when you use\n> the MESSAGE box.. how come?\"\n> \n> Jeff Laing (where for art thou comp.sys.mac.hypercard?)\n> \nSame problem here. I noticed that strange Find bug too. My\nsolution is a real kludge, but it works.\n\nInstead of issuing the FIND command in script, TYPE the FIND command\nwith all the arguments into the message box and then (again\nfrom script) add a return. Like:\n\non mouseUp\n   type \"FIND\" && quote & key & quote && \"in background field id\" && number &\n   return\nend mouseUp\n\nThis also makes the repeated FIND easier.\n\nI made a stack that needed a search option on partial keys. So I wanted\nHC to keep on looking when the user stated that the item found wasn't\nthe right one.\n\nI made a script to do this (if interested I can mail/post it) that\nexpects a second field for every field to be looked in. The item found\nis put in the second field (named something like showName). When\nthe user says he wants to keep on searching, the next item found is\ncompared to the contents of showName. If it's the same, my script\nsays that 'it's all there is'. And cancels the search. Otherwise\na repeated search would be impossible.\n\nIf you like I can upload the lot. To comp.sys.mac.hypercard maybe?\n\nTo Apple:\nWhy do you reply to all the easy answers in comp.sys.mac.hypercard\nbu happily skip all the possibly difficult ones? Seems like\nthe HyperCard group chooses the easy way out. Too many bugs in HC\nperhaps?\n-- \n        Paul Molenaar\n\n\t\"Just checking the walls\"\n\t\t- Basil Fawlty -\n#! rnews 704\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!kolvi!jku\nFrom: jku@kolvi.UUCP (Juha Kuusama)\nNewsgroups: comp.sys.ibm.pc\nSubject: Screen dump from Hercules to Laserjet wanted\nMessage-ID: <31@kolvi.UUCP>\nDate: 8 Dec 87 12:19:56 GMT\nReply-To: jku@kolvi.UUCP (Juha Kuusama)\nOrganization: Helsinki University of Technology, Finland\nLines: 10\n\nCould some kind soul over there send me a program/a reference to a program,\nthat would allow me to print a graphics dump from a Hercules screen to a\nHP Laserjet printer It should\n\n\ta) not distort the image (circles as circles, not ovals)\n\n\tb) send its output to a file (so I can import it to my text).\n\n--\nJuha Kuusama, jku@kolvi.UUCP ( ...!mcvax!tut!kolvi!jku )\n#! rnews 1093\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!jmunkki\nFrom: jmunkki@santra.UUCP (Juri Munkki)\nNewsgroups: comp.sys.mac\nSubject: Re: Development Environment Advice Wanted\nKeywords: Development, MacII Debuggers\nMessage-ID: <9206@santra.UUCP>\nDate: 8 Dec 87 16:51:43 GMT\nReferences: <687@howtek.UUCP> <3456@husc6.harvard.edu>\nReply-To: jmunkki@santra.UUCP (Juri Munkki)\nOrganization: Helsinki University of Technology, Finland\nLines: 16\n\nIn article <3456@husc6.harvard.edu> singer@endor.UUCP (THINK Technologies) writes:\n>The current version of MacsBug, version 5.5, works fine on a Mac II -\n>even disassembles 68020 and 68881 opwords, and works with or without\nAnd it slows down the 68881 by about 50%. Can anyone else verify this?\nI moved to TMON mainly because it does not affect the speed of my Mac.\n\nI hope none of the Byte or MacTutor benchmarks were run under MacsBug.\n\nStill, ES works better in MacsBug than it does in TMON.\n\nJuri Munkki\njmunkki@santra.hut.fi\njmunkki@fingate.bitnet\nlk-jmu@finhut.bitnet\n\nDisclaimer: I'm just a freelance programmer, you shouldn't listen to me anyway.\n#! rnews 1288\nPath: alberta!mnetor!uunet!mcvax!diku!rancke\nFrom: rancke@diku.UUCP (Hans Rancke-Madsen.)\nNewsgroups: rec.games.frp\nSubject: Re: Re: Characters with two classes\nMessage-ID: <3567@diku.UUCP>\nDate: 7 Dec 87 15:31:25 GMT\nReferences: <26561S9S@PSUVMA> <81800077@uiucdcsp>\nOrganization: DIKU, U of Copenhagen, DK\nLines: 23\n\nIn article <81800077@uiucdcsp> jenks@uiucdcsp.cs.uiuc.edu writes:\n\n>                       The PHB doesn't specifically forbid doing this\n>more than once, nor does it say what the \"prime stat\" is for Paladinks,\n>Rangers, Monks, etc.\n\nI seem to recall having seen a statement like \"since <one of\nthose sub-classes  -  I forget which> has no prime requisite,\nyou can't switch to/from it.\" The implication being that any of\nthe sub-classes that require more than one minimum is out as\nregards dual-class characters. So you could be a \"fighter-turned-\nmagician\" but not a \"ranger-turned-magician\". I think it was in\none of THE BOOKS, but I'm not certain. One thing you could do\nis to require 15 or 17 in ALL the requisites with minimums.\nThat will restrict the number of assasin/illusionists!!!\n\n   Hans Rancke, University of Copenhagen\n          ..mcvax!diku!rancke\n\n--=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n- I hate it when people call me paranoid.\n  It makes me feel persecuted.\n#! rnews 456\nPath: alberta!mnetor!uunet!mcvax!diku!iesd!torbennr\nFrom: torbennr@iesd.uucp (Torben N. Rasmussen)\nNewsgroups: comp.sources.wanted\nSubject: Wanted: Microemacs part 8\nMessage-ID: <166@iesd.uucp>\nDate: 7 Dec 87 08:15:25 GMT\nReply-To: torbennr@neumann.UUCP (Torben N. Rasmussen)\nOrganization: Dept. of Comp. Sci., Aalborg University, Denmark\nLines: 7\n\n\nCould someone please send me part 8 of the sources for Microemacs.\n\n-- \n\n\n\t\t\t\tTorben Rasmussen (torbennr)\n#! rnews 1138\nPath: alberta!mnetor!uunet!mcvax!diku!dde!jk\nFrom: jk@dde.uucp (Jens Kjerte)\nNewsgroups: comp.sources.wanted,comp.text\nSubject: Sourcecode for dca2troff wanted.\nKeywords: DCA conversion.\nMessage-ID: <277@Aragorn.dde.uucp>\nDate: 8 Dec 87 09:11:32 GMT\nOrganization: Dansk Data Elektronik A/S, Herlev, Denmark\nLines: 18\nXref: alberta comp.sources.wanted:2716 comp.text:1345\n\n\n\tWe are right now starting a project, that involves translating\n\tIBM DCA documents to and from a wordprocessing package.\n\tA program called dca2troff was posted sometime ago.\n\tThis program, as the name says, was able to\n\tconvert from DCA format to troff format.\n\tWould somebody having that source, please e-mail it to me.\n\n\tOther information about software regarding DCA conversion,\n\tPublic Domain or not, would be appreciated. \n\n\tThanks in advance\n\n-- \n+---------------------------------------------------------------------------+\n|   Jens Kjerte  @ Dansk Data Elektronik A/S, Systems Software Department   |\n|   E-mail:      ..!uunet!mcvax!diku!dde!jk  or  jk@dde.uucp                |\n+---------------------------------------------------------------------------+\n#! rnews 1323\nPath: alberta!mnetor!uunet!mcvax!diku!dde!ct\nFrom: ct@dde.uucp (Claus Tondering)\nNewsgroups: sci.physics\nSubject: Maxwell's daemon\nMessage-ID: <279@Aragorn.dde.uucp>\nDate: 8 Dec 87 13:57:45 GMT\nOrganization: Dansk Data Elektronik A/S, Herlev, Denmark\nLines: 26\n\nConsider the following variant of Maxwell's daemon:\n\nYou have the following two items:\n    1) a metal block,\n    2) a bowl with a liquid.\nBoth items have the same temperature and are placed close together, they\nmay, however, be thermally isolated from one another.\n\nNow into the bowl you drop a very small magnet. The motion of the\nmolecules in the liquid will cause the magnet to move slightly. This\nwill induce a (very small) current in the metal block. This current will\ncause the temperature of the metal block to rise. The current will also\ntry to stop the movements of the magnet; this will in turn slow down the\nmotion of the molecules, and the liquid will cool.\n\nThe result: The metal block will grow warmer and warmer, and the liquid\nwill grow colder and colder.\n\nThis contradicts the second law of thermodynamics, and has the \"advantage\"\nover Maxwell's daemon that no intelligence is involved.\n\nWhat is wrong with the above argument?\n-- \nClaus Tondering\nDansk Data Elektronik A/S, Herlev, Denmark\nE-mail: ct@dde.uucp   or  ...!uunet!mcvax!diku!dde!ct\n#! rnews 2476\nPath: alberta!mnetor!uunet!mcvax!enea!sommar\nFrom: sommar@enea.UUCP (Erland Sommarskog)\nNewsgroups: rec.music.misc\nSubject: Swedish prog-rock (was Re: More than Yes)\nMessage-ID: <2505@enea.UUCP>\nDate: 8 Dec 87 23:22:11 GMT\nReferences: <19949@yale-celray.yale.UUCP>\nReply-To: sommar@enea.UUCP(Erland Sommarskog)\nFollowup-To: rec.music.misc\nOrganization: ENEA DATA Svenska AB, Sweden\nLines: 42\n\nNo isn't that an obscure subject line? But I must correct my \nfellow-countryman here.\n\nBjorn Lisper (lisper@yale-celray.UUCP) writes:\n>Bo Hansson, to be correct. Gee, I didn't know that he was known outside\n>Sweden. This guy was a keyboard player who was active mainly in the late\n>sixties and early seventies. He is remembered for having made the very\n>first record for the first Swedish independent non-profit label \"Silence\".\n>Unexpectedly the record became a hit and the income helped financing a lot\n>of records with early Swedish prog-rock that would otherwise not have been\n>economically possible to make. Thus his importance for Swedish rock music\n>cannot be overestimated.\n\nSo he is the one being guilty to it all. Grr. You see, in Sweden \n\"progressive\" music had nothing to do with the music. When we speak -\nor spoke at that time - of \"progressive\" groups, we talked of groups\nthat played quite regular rock or pop. There were just one difference\nto the ordinary hit music, the lyrics. They were naive, trivial and \nuttermost boring political texts of a communistic nature. (Which does\nnot imply that they were paid by KGB or something.) I must admit I \ndidn't listen to much to them, their proganda was too much for me.\n\nNow, this kind of people dominated this non-profit companies that Bjorn\ntalked of. For them ideological purity was much more important than\ninteresting than good music. Not to be denied, *some* good music was \nactually released on Silence and MNW (the other big non-profit), but \nalso a lot of true crap. And I can easily imagine that groups with\ninteresting music was refused beacuse they voted with the wrong party.\n(They would never have released Yes, that are right wing if anything.)\n\nFinally, I should admit that despite the poorness of Silence, they\nhad the most interesting music in Sweden at that time. But that more\ngives an indication of bad the rest was. (Abba, do you remember?)\n\n\n\n\n-- \nErland Sommarskog       \nENEA Data, Stockholm    \nsommar@enea.UUCP        \n                   C, it's a 3rd class language, you can tell by the name.\n#! rnews 2310\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!forty2!poole\nFrom: poole@forty2.UUCP (Simon Poole)\nNewsgroups: comp.sys.atari.st\nSubject: Re: GEMBOOT and the Megas\nMessage-ID: <122@forty2.UUCP>\nDate: 8 Dec 87 14:19:44 GMT\nReferences: <608@aucs.UUCP> <900@atari.UUCP>\nReply-To: poole@forty2.UUCP (Simon Poole)\nOrganization: Exp. Physics University Zuerich\nLines: 39\n\n\nIn article <900@atari.UUCP> apratt@atari.UUCP (Allan Pratt) writes:\n>in article <608@aucs.UUCP>, 870646c@aucs.UUCP (barry comer) says:\n>> \n>> Hi all, well my Mega2 just landed on my desk, really nice. I've got a question for all other Mega owners using the hard disks, I have been using GEMBOOT with\n>> my 1040ST all along, when I boot up the Mega two bombs appear then disappear\n>> after GEMBOOT has done its thing.\n>\n>DO NOT USE GEMBOOT.  Use FOLDRXXX from Atari.  HINSTALL should be available,\n>too... It makes your hard disk bootable (no \"boot floppy\" needed).\n>\nThe lastest version of GEMBOOT which was distributed something like\nhalf a year ago, allows you to set the location of the sole undocumented\nvariable that Konrad uses in GEMBOOT. Matter of fact I used GEMBOOT\nwithout problems on one of the first Mega's that arrived in Switzerland\nafter changing the GEMBOOT startup file. \n\n>patches the appropriate location in the OS.  In the case of the Mega\n>ROMs, he actually added a pointer in the OS header which points to\n>the necessary spot, so FOLDRXXX will work for all future ROM releases.\n                                               ^^^^^^^^^^^^^^\nDidn't Atari claim it was working on a new '40 folder bug'less OS?                               \n\n>Even old TOS ROM users should probably not use GEMBOOT... I certainly\n>wouldn't trust it, and with FOLDRXXX and HINSTALL available, you just\n>don't need it.\nHmmmm, as Landon Dyer once said (a long time ago) FOLDRXXX does NOT fix\nthe other problem with GEMDOS management of the internal directory\nlist (mutiple bad copies of the same block), GEMBOOT does provide\na workaround  for this problem (so I wouldn't trust FOLDRXXX) plus\na lot of other nice things.\n\n\n                            Simon Poole\n                 UUCP: ....mcvax!cernvax!forty2!poole\n                 Bitnet:             K538915@CZHRZU1A\n\n*\n***************When will Atari annouce PC-6 to PC-10?****************\n*\n#! rnews 1572\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!bob\nFrom: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Blake's, all 7 of them!\nMessage-ID: <818@its63b.ed.ac.uk>\nDate: 8 Dec 87 10:08:31 GMT\nReferences: <6320@ihlpa.ATT.COM> <1572@cup.portal.com> <1372@aurora.UUCP>\nReply-To: bob@its63b.ed.ac.uk (ERCF08 Bob Gray)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 28\n\nIn article <1372@aurora.UUCP> timelord@aurora.UUCP (G. \"Murdock\" Helms) writes:\n>In article <1572@cup.portal.com>, Isaac_K_Rabinovitch@cup.portal.com writes:\n>> Whoops.  After the Star One episode, the actor who played\n>> Blake got a job with the National Shakespeare Company, so Blake essentially\n>> disappears until the \"last\" episode.  \n>\n>The second Travis, the one with the really thick Cockney accent,\n>was spotted in the BBC movie \"Edge of Darkness\" recently broadcast\n>in California.\n\nSomething else to watch out for. The recently concluded\nseries \"Knights of God\" on independant television was\nnotable only for having Gareth Thomas (Blake himself) playing\nthe part of the leader of a band of rebels trying to\noverthrow the harsh Goverment sometime in the future UK.\nAlmost a reprise of his part as blake, but he isn't even\none of the major characters. His name comes about eighth\non the credits.\n\nNow we know what he was doing while he was missing from\nBlake's Seven. :->\n\nAlso look out for the second Dr Who, Patrick Troughton, in a\nsupporting role.\n\nNote: I do Not recommend this series for any other reson\nthan the above mentioned curiosity value.\n\tBob\n#! rnews 2656\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csnjr\nFrom: csnjr@its63b.ed.ac.uk (Nick Rothwell)\nNewsgroups: comp.lang.lisp,comp.lang.scheme,comp.lang.misc\nSubject: Re: Applicative languages?  Anyone?\nKeywords: ML interpreter typechecker\nMessage-ID: <819@its63b.ed.ac.uk>\nDate: 8 Dec 87 12:40:13 GMT\nReferences: <1409@mind.UUCP> <584@zippy.eecs.umich.edu> <1202@uoregon.UUCP>\nReply-To: nick%ed.lfcs@uk.ac.ucl.cs.nss (Nick Rothwell)\nOrganization: LFCS, University of Edinburgh\nLines: 37\nXref: alberta comp.lang.lisp:566 comp.lang.scheme:85 comp.lang.misc:886\n\nIn article <1202@uoregon.UUCP> markv@drizzle.UUCP (Mark VandeWettering) writes:\n>In article <584@zippy.eecs.umich.edu> dwt@zippy.eecs.umich.edu (David West) writes:\n>>Applicativity has its advantages, but it needs\n>>1) ...\n>>2) Some syntactic means for preventing argumentsfrom getting unreadably\n>>   numerous just to pass something down to where it's finally used. \n>\n>\tHmmm, not a bad idea.  I have just acquired \"Implementation of\n>\tFunctional Programming Languages by Simon L. Peyton Jones, and\n>\tam much impressed by the depth/level of the text.  Seeing as I\n>\thave to do a final thesis/project sometime :-) I might be\n>\ttempted to try a hand at an ML interpreter/compiler.  I would\n>\tlike to hear from anyone who is trying/has tried similar\n>\tprojects.\n\nML gives you objects with modifiable state, so that you don't need to\npass a state structure around with you. The disadvantage, of course, is\nthat you smash the applicative behaviour of the language -\nwhether it's worth it depends what you're trying to do.\n   Another way around this is to use type abstraction. That way, your\nstate structure is an abstract object with a few access functions to get\nat the bits you need. I've always used the former approach, so I don't know\nhow far the latter approach gets you. It's quite possible to take non-\napplicative features like assignment and abstract over them to build\nstructured objects with varying state, a la Smalltalk perhaps. This isn't\n\"dirty\" functional programming - it's just using a functional language as if\nit were a language of a different kind. I recently dedicated a lecture to the\nstructured use of side-effects in ML.\n   By the way, I have various little typecheckers and interpreters for tiny\nfunctional languages lying around on-line somewhere, if you're interested.\nAll written in ML, of course.\n-- \nNick Rothwell,\tLaboratory for Foundations of Computer Science, Edinburgh.\n\t\tnick%lfcs.ed.ac.uk@nss.cs.ucl.ac.uk\n\t\t<Atlantic Ocean>!mcvax!ukc!lfcs!nick\n~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~\n\"Nothing's forgotten. Nothing is ever forgotten.\"   - Herne\n#! rnews 1368\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csnjr\nFrom: csnjr@its63b.ed.ac.uk (Nick Rothwell)\nNewsgroups: rec.music.synth\nSubject: D-50, D-550, MT-32, ???\nMessage-ID: <820@its63b.ed.ac.uk>\nDate: 8 Dec 87 13:01:30 GMT\nReferences: <633@elxsi.UUCP> <5470012@hplsla.HP.COM>\nReply-To: nick%ed.lfcs@uk.ac.ucl.cs.nss (Nick Rothwell)\nOrganization: LFCS, University of Edinburgh\nLines: 17\n\nIn article <5470012@hplsla.HP.COM> steveb@hplsla.HP.COM (Steve Bye) writes:\n>The MT-32 is not a product of Roland's professional music products group.\n>It is a product of their home keyboards (upscale toys) department.  It uses\n>technology develped for the D-50 and D-550.  There is no comparison in \n>actual ussuage between a D-550 and an MT-32.\n\nI recently read a report from a British music journalist visiting Roland in\nJapan. Apparently (but *don't* quote me on this :-)) Roland are working on\na rack-mount box with the same sorts of features as the MT-32 but aimed a\nbit more at the Pro market - presumably related to the MT-32 as the TX81Z is\nto the FB01. I'm keeping my wallet closed and my eyes open...\n-- \nNick Rothwell,\tLaboratory for Foundations of Computer Science, Edinburgh.\n\t\tnick%lfcs.ed.ac.uk@nss.cs.ucl.ac.uk\n\t\t<Atlantic Ocean>!mcvax!ukc!lfcs!nick\n~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~\n\"Nothing's forgotten. Nothing is ever forgotten.\"   - Herne\n#! rnews 1563\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!doc.ic.ac.uk!aw\nFrom: aw@doc.ic.ac.uk (Andrew Weeks)\nNewsgroups: comp.emacs\nSubject: uEmacs 3.9 - Function keys on Suns\nMessage-ID: <144@gould.doc.ic.ac.uk>\nDate: 8 Dec 87 17:16:50 GMT\nSender: aw@doc.ic.ac.uk\nReply-To: aw@doc.ic.ac.uk (Andrew Weeks)\nOrganization: Dept. of Computing, Imperial College, London, UK.\nLines: 40\n\nI have implemented, as an extension to the \"VT100\" option, some extra\ncode to allow uEmacs to recognise the top, left and right function keys\non Sun 3 consoles.  ( I imagine they will work on Sun 2s as well). \n\nThese keys, except for the cursor keys (R8,R10,R12 & R14), return a\nstring of the form <ESC>[ followed by 3 digits followed by 'z'.  By\ninterpreting the digits as an integer, and subtracting 128 to get a\ncharacter, all the function keys can be made to simulate 'FN?' keys. \nWhich they return depends on how the Sun keyboard is set up (with\nsetkeys(1)). \n\nThey won't work if you use Sun-windows and have a .ttyswrc file.\n\nAnyway - Here are the diffs:\n\n*** input.c\tMon Nov 30 12:57:21 1987\n--- input.c.orig\tMon Nov 30 12:54:37 1987\n***************\n*** 364,376 ****\n  #if\tVT100\n  \t\tif (c == '[' || c == 'O') {\n  \t\t\tc = get1key();\n! \t\t\tif ( c >= 'A' )\n! \t\t\t\treturn(SPEC | c);\n! \t\t\tc = c - 48;\n! \t\t\tc = (c*10) + get1key() - 48;\n! \t\t\tc = (c*10) + get1key() - 176;\n! \t\t\tget1key();\n! \t\t\treturn ( SPEC | c );\n  \t\t}\n  #endif\n  \t\treturn(META | c);\n--- 364,370 ----\n  #if\tVT100\n  \t\tif (c == '[' || c == 'O') {\n  \t\t\tc = get1key();\n! \t\t\treturn(SPEC | c);\n  \t\t}\n  #endif\n  \t\treturn(META | c);\n#! rnews 1248\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!jam\nFrom: jam@comp.lancs.ac.uk (John A. Mariani)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Max Headroom\nMessage-ID: <454@dcl-csvax.comp.lancs.ac.uk>\nDate: 8 Dec 87 18:47:18 GMT\nReferences: <82*quale@si.uninett> <3333@ihlpl.ATT.COM>\nReply-To: jam@comp.lancs.ac.uk (John A. Mariani)\nDistribution: rec.arts.sf-lovers\nOrganization: Department of Computing at Lancaster University, UK.\nLines: 16\n\nHaving observed chat about the American Max series and comparisons with the\nUK series, I would like to point out that we (in the\nUK) have only seen the Pilot in\nterms of an action/adventure episode. Our Max series have really featured\nMax as a video DJ, and later as a talk show host.\n\nSo, I have kept silent till now, but I reckon the action/adventure series\nyou guys in the US of A are discussing must be worth watching! Anyone care\nto hazard a guess as to why we in the UK don't get your Max show; and\ndo you get ours?\n\n-- \n\"You see me now a veteran of a thousand psychic wars .. \"\nUUCP:  ...!seismo!mcvax!ukc!dcl-cs!jam | DARPA: jam%lancs.comp@ucl-cs\nJANET: jam@uk.ac.lancs.comp   | Post : University of Lancaster, Department of\nPhone: +44 524 65201 ext 4467 |\tComputing, Bailrigg, Lancaster, LA1 4YR, UK.\n#! rnews 1017\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: rec.music.classical\nSubject: Minimalist recorder music, anyone?\nMessage-ID: <1575@brahma.cs.hw.ac.uk>\nDate: 8 Dec 87 19:29:14 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 14\n\nWhat minimalist music is performable by a recorder consort? Terry Riley's\nIn C is the one and only thing I've found so far (almost no published\nminimal music is available in the UK - I have drawn a virtually complete\nblank at every major library and music shop in Scotland).\n\nI guess this resolves into two questions: does it exist, and if it does,\ncan I get it? Do Glass et al have the same attitude to scores that AT&T\ndoes to source code?\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1165\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: comp.sys.mac\nSubject: mathematical laser fonts\nKeywords: font, logic, PostScript, laser printer, symbols\nMessage-ID: <1576@brahma.cs.hw.ac.uk>\nDate: 8 Dec 87 19:43:07 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 21\n\n\nWhat mathematical laser fonts are available?\n\nWhat I need is:\n\n\t- logic and theoretical computer science symbols (like the old Ophir\n\t  bitmap font, but with the squared-off set theory symbols used in\n\t  domain theory);\n\t  \n\t- symbols for the better known algebraic structures (N, Z, Q, A, R, C)\n\t  (is there a font that looks like these do as usually printed?);\n\t\n\t- subscripts and superscripts with little enough leading not to\n\t  sabotage inter-line spacing in programs like WriteNow;\n\t  \n\t- maybe some of the more useful German capital letters.\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1030\nPath: alberta!mnetor!uunet!mcvax!ukc!cheviot!eas\nFrom: eas@cheviot.newcastle.ac.uk (Edward Scott)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Obscure TV SF shows\nMessage-ID: <2588@cheviot.newcastle.ac.uk>\nDate: 8 Dec 87 15:19:25 GMT\nReferences: <871201124327980.ABWD@Mars.UCC.UMass.EDU> <4100001@hpcllf.HP.COM>\nReply-To: eas@cheviot (Edward Scott)\nOrganization: Computing Laboratory, U of Newcastle upon Tyne, UK NE17RU\nLines: 12\n\nIn article <4100001@hpcllf.HP.COM> jws@hpcllf.HP.COM (John Stafford x75743) writes:\n>Re: UFO\n>   The wigs worn by the women on moonbase were of a purple hue and were\n>   described (at least in the books the followed the series if not\n>   actually on the air) as \"anti-static wigs\".\n\nAbout ten years ago I got a second hand copy of \"UFO 1: Flesh Hunters\" by\nRobert Miall. It is a Warner Paperback Library edition, printed with \npermission from Pan books (who presumably did the UK edition). I have't seen\nany since then.\nHow many of these UFO novels were there?\nDid Robert Miall write anything else?\n#! rnews 542\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!pete\nFrom: pete@tcom.stc.co.uk (Peter Kendell)\nNewsgroups: rec.arts.sf-lovers\nSubject: No More Mel\nMessage-ID: <488@stc-f.tcom.stc.co.uk>\nDate: 8 Dec 87 09:14:20 GMT\nOrganization: STC Telecoms, London N11 1HB.\nLines: 7\n\n\n\tHurrah, Hurrah!!\n-- \n------------------------------------------------------------------------------\n|\t\t  Peter Kendell <pete@tcom.stc.co.uk>\t        \t     |\n|\t\t\t\t...{uunet!}mcvax!ukc!stc!pete\t\t     |\n------------------------------------------------------------------------------\n#! rnews 660\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!btnix!psanders\nFrom: psanders@btnix.axion.bt.co.uk (Bob-Cut Maniac)\nNewsgroups: comp.sys.mac\nSubject: SMALLTALK wanted\nKeywords: Mac SMALLTALK\nMessage-ID: <635@btnix.axion.bt.co.uk>\nDate: 8 Dec 87 12:53:54 GMT\nOrganization: British Telecom Research Labs, Martlesham Heath, IPSWICH, UK\nLines: 10\n\n\nDoes anyone know of a PD SMALLTALK system for the Mac ??\n\nAnswers to me and I'll summarise on the Net.\n\nPaul.\n-- \nE-mail (UUCP)\tPSanders@axion.bt.co.uk (...!ukc!btnix!psanders)\nOrganisation\tBritish Telecom Research Laboratories, Ipswich UK.\n\"This mime of mortal life, in which we are apportioned roles we misinterpret...\"\n#! rnews 628\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!hrc63!trw\nFrom: trw@hrc63.co.uk (Trevor Wright Marconi Baddow)\nNewsgroups: comp.sys.ibm.pc\nSubject: M.Magee AUTOMENU - any knowledge\nMessage-ID: <475@hrc63.co.uk>\nDate: 8 Dec 87 10:39:57 GMT\nOrganization: GEC Hirst Research Centre, Wembley, England.\nLines: 10\n\n\nWe have seen a demo of a tiny MS-DOS utility called AUTOMENU which\nmakes building menus for PC users simple. We want to find who is the\nvendor of this utility, the cost, and any details of the command characters\nfor the menu definition file.\n\nAny help appreciated.\n\nTrevor Wright\nyc23%a.gec-mrc.co.uk@nss.cs.ucl.ac.uk\n#! rnews 2646\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!datlog!dlhpedg!cl\nFrom: cl@dlhpedg.co.uk (Charles Lambert)\nNewsgroups: comp.lang.c\nSubject: Re: Address of array\nMessage-ID: <329@dlhpedg.co.uk>\nDate: 8 Dec 87 13:30:45 GMT\nReferences: <126@citcom.UUCP> <163@mccc.UUCP> <422@xyzzy.UUCP>\nSender: news@dlhpedg.co.uk\nReply-To: cl@.co.uk (Charles Lambert)\nOrganization: FSG@Data Logic Ltd, Queens House, Greenhill Way, Harrow, London.\nLines: 56\n\nIn article <422@xyzzy.UUCP> throopw@xyzzy.UUCP (Wayne A. Throop) writes:\n>> pjh@mccc.UUCP (Peter J. Holsberg)\n>> OK - perhaps you had better tell us neophytes what you mean by the\n>> address of an array!\n>\n>Same as address of anything else.  It is an address which, when\n>indirected, yields an array, and when \"N\" is added to it, yields the\n>address of an array which is itself a member of an array \"N\" elements\n>away from the array yielded by an indirection.\n> \n> [ several abstruse observations ]\n>\n>What could be simpler?\n\nWell, several other forms of explanation, I guess.  This one confused me,\nand I *understand* the address of an array. (Just teasing)\n\nTo put it another way....\n\nAny object, of any type (integer, structure, array, etc.), has an address.\nUsually, if it is an object that occupies several words of memory, it is the\naddress at which it begins. (Compiler theorists may be itching to tell me it\nmight mean something else entirely; let's keep this simple.)  The address of\nan object is the compiler's handle for manipulating it.   You think of an\nobject by its name; the compiler \"thinks\" of it by its address.\n\nThe \"address of an array\" is the address that the compiler uses to access\nthat array and to calculate the position of any element in the array.\n\nIn C,  the address of an array is the same as the address of its first\nelement (array[0]).  If you want to set up a pointer to the array, you\nget its address simply by naming it. Hence:\n\n\tpa = array;\t/* pa now contains the address of \"array\" */\n\nwhich is exactly the same as\n\n\tpa = &array[0]; /* \"&\" means \"address of\", so pa contains the\n\t\t\t\taddress of element [0] of \"array\" */\n\nNow this is a slight quirk in C - the name of the array being a synonym for\nits address;  for any other object (notably a struct) that is not true.  If\nyou want the address of a structure you must write\n\n\tps = &mystruct;\t/* NOT ps = mystruct */\n\nSo we get back to the discussion from whence we came: why can't we be\nconsistent and get the address of an array by\n\n\tpa = &array;\t?\n\nTo which the answer is:  you can, with some compilers.\n\n[Further reading: The C Programming Language; Kernighan & Ritchie; pp.93-95]\n--------------------------\nCharles Lambert\n#! rnews 1652\nPath: alberta!mnetor!uunet!mcvax!unido!iaoobelix!vogt\nFrom: vogt@iaoobelix\nNewsgroups: comp.sys.dec\nSubject: Bug in BASIC-PLUS for RSTS V8.0? - (nf)\nMessage-ID: <9900003@iaoobelix.UUCP>\nDate: 8 Dec 87 18:36:00 GMT\nLines: 43\nNf-ID: #N:iaoobelix:9900003:000:1342\nNf-From: iaoobelix!vogt    Dec  8 19:36:00 1987\n\nI think I found a bug in BASIC-PLUS of RSTS V8.0. The following program\nisn't working in the right way. I tried to read some records from a file\nand to store them in an array. But after I read and stored all records,\nthe array was completely empty.\n\n> 10 ON ERROR GOTO 1000\n> 15 DIM IN$(100%)\n> 20 FIELD #1%, 3% as a$, 20% as i$, 15% as q$\n> 30 OPEN 'foobar' as file #1%, recordsize 38%\n> 40 Z% = 0%\n> 50 Z% = Z% + 1%\n> 60 GET #15%, RECORD Z%\n> 70 IN$(Z%) = I$\n> 75 PRINT IN$(Z%)\n> 80 GOTO 50\n> 90 CLOSE #1%\n> 100 PRINT IN$(I%)  FOR I% = 1% TO Z% - 1%\n> 110 GOTO 32767\n> 1000 IF ERR = 11 THEN RESUME 90\n> 1010 ON ERROR GOTO 0\n> 32767 END\n\nThe outputs in line 75 are alright, but those in line 100 aren't.\nOnly blank lines appear there.\n\nI found out that if you change line 70 to 'IN$(Z%) = LEFT$(I$, 20%)'\n- which does nearly nothing different - it works correctly.\n\nDoes anybody know a patch for this bug? Or does anybody know how to\navoid this in an other way?\n\nThanks in advance\n\nGerald Vogt\n\n--------------------------------------------------------------------------\nFraunhofer Institut fuer Arbeitswirtschaft und Organisation\nHolzgartenstrasse 17\nD-7000 Stuttgart 1         UUCP:   ...{uunet!unido,pyramid}!iaoobel!vogt\nW-Germany\n\nPhone: (W-Germany) 711 6648191\n--------------------------------------------------------------------------\n#! rnews 3127\nPath: alberta!mnetor!uunet!mcvax!hafro!gst!gunnar\nFrom: gunnar@gst.UUCP (Gunnar Stefnsson)\nNewsgroups: sci.math\nSubject: Re: Least-squares fitting\nMessage-ID: <428@gst.UUCP>\nDate: 8 Dec 87 15:25:35 GMT\nReferences: <1823@culdev1.UUCP> <22191@cca.CCA.COM> <2301@utastro.UUCP>\nReply-To: gunnar@gst.UUCP (Gunnar Stefansson)\nOrganization: Marine Research Institute, Reykjavik\nLines: 56\n\nIn article <2301@utastro.UUCP> bill@astro.UUCP (William H. Jefferys) writes:\n>In article <22191@cca.CCA.COM> g-rh@CCA.CCA.COM.UUCP (Richard Harter) writes:\n>~In article <1823@culdev1.UUCP> drw@culdev1.UUCP (Dale Worley) writes:\n>~>The normal least-squares fitting of a line to a set of points in the\n>~>plane assumes that the x-coordinates of the points are known to be\n>~>exact, and the y-coordinates have all the error.  That is, chi^2 is\n>~>the sum of the squares of the distances from the points to the line in\n>~>a vertical direction.  This introduces assymetry between the\n>~>coordinates.\n>~>\n>~>Is is known how to perform least-squares fitting where the \"error\" is\n>~>the perpendicular distance between the point and the line?\n>\n>\n>Actually, if both coordinates have error, it is essential that this\n>fact be taken into account. If you fail to do this, the result will be\n>*biased* -- the slope will be systematically underestimated, and\n>this bias will not go to zero as you take more and more points\n\nHold on, isn't this statement a bit too strong? The answer to which method\nshould be used ultimately depends on what the purpose of the estimations\nis. \n\nIn fact, if the purpose is to estimate y for a given x, then ordinary\nleast squares will do. In this case one is not really interested in\ngetting the best estimates of the parameters but only in getting a good\nprediction.\n\nI claim that there are very few regression examples where one really\ncares whether or not the parameters are biased. In the large majority of\ncases one is much more interested in the goodness of prediction. In this\ncase, one is interested in E[Y|X]. So if we model this quantity as\nlinear in X, then the OLS estimates are BLUE. This will also give\nvariances etc, all valid conditionally on X.\n\nIt is my feeling that a lot of books overemphasize the so-called bias,\nsince that is very often totally irrelevant.  For example, some\ntextbooks talk about biased parameter estimates when some variables\nare missing in a multiple regression. In reality OLS is estimating a\nbetter set of parameters than would the corresponding \"unbiased\"\nestimator (OLS in this case will give an unbiased estimate of the best\nsurface based on the reduced set of variables). Certainly in this case,\none can make a strong argument that all the talk about biasses is\ntotally irrelevant.\n\nOf course if the true purpose is to estimate parameters, e.g. to assess\nthe effect of a change in X on Y, then indeed one needs to worry a bit\nabout the effects of X being random.\n\nGunnar\n\n-- \n\n-----------------------------------------------------------------------------\nGunnar Stefansson                       {mcvax,enea}!hafro!gunnar \nMarine Research Institute, Reykjavik    gunnar@hafro.UUCP\n#! rnews 528\nPath: alberta!mnetor!uunet!mcvax!unido!tub!ao\nFrom: ao@tub.UUCP (Arnfried Ossen)\nNewsgroups: comp.mail.misc\nSubject: Path to UMass Amherst\nMessage-ID: <318@tub.UUCP>\nDate: 7 Dec 87 13:29:49 GMT\nReply-To: ao@tub.UUCP (Arnfried Ossen)\nOrganization: Technical University of Berlin, Germany\nLines: 7\n\nAnybody out there who knows the PATH to\n\n   University of Massachusetts, Amherst Campus, COINS Department\n\nIt should allow access from USENET or BITNET.\n\nArnfried, ao@tub.UUCP, ao@db0tui6.BITNET, TU Berlin, Berlin, Fed.Rep.Germany\n#! rnews 2902\nPath: alberta!mnetor!uunet!mcvax!varol\nFrom: varol@cwi.nl (Varol Akman)\nNewsgroups: sci.math\nSubject: Re:   computational geometry / finding segment intersections\nSummary: Try adaptive grid ...\nKeywords: segment intersection\nMessage-ID: <141@piring.cwi.nl>\nDate: 9 Dec 87 11:14:57 GMT\nReferences: <4369@sdcsvax.UCSD.EDU>\nOrganization: CWI, Amsterdam\nLines: 50\n\n<4369@sdcsvax.UCSD.EDU> maiden@sdcsvax.UCSD.EDU (VLSI Layout Project) writes:\n>\n>Consider a path embedded into the Cartesian plane, where for convenience\n>all vertices of the path are lattice points in the positive quadrant.\n>All edges are line segments.\n>So, the path will look like < (x1,y1) , (x2,y2) , ... , (xn,yn) >.  \n>Question:    What is the fastest method of determining *ALL* self-\n>\t     intersections of this path?\n>This may have been beaten to death by computational geometers, so I'll\n>append some extra conditions:\n>Suppose there are **many** vertices in the path, and that edges are\n>for the most part very short.    For example, there could be 10000\n>points in a 200 by 200 square, with most edges less than 3 units long.\n>Furthermore, assume that there are not very many self-intersections\n>to be found.    Now, what would the fastest method be???   Any ideas\n>welcome.\n\nThere are, as you've guessed several papers in computational geometry\non line segment intersections.  You may look at the books by Shamos\nand Preparata, and also the book by Edelsbrunner for references.\n\nMy favorite method to solve your problem though is an excellent\nmethod invented by Randolph Franklin at RPI.  It is called ''adaptive\ngrid'' and works as follows.  First you overlay a regular, say G by G\ninteger grid on your scene.  Then you enter your edges into respective\ncells of the grid  (similar to the bucketing idea!)  Then you make a pass\nthru all the cells and find the intersections in each cell.  If an\nintersection falls on a grid cell boundary you should be careful to\ntreat it so the integrity is kept intact.\n\nI'm not very good in describing things in a hurry (especially Email)\nbut let me tell that I've wide experience with this stuff and it works\nvery well.  It is especially excellent for a scene made of short edges\nwith a rather homogeneous distribution.  Write me for details.\nAlso you may try Franklin at franklin@csv.rpi.edu.  Here is a short bibl.\n\nW.R. Franklin  An exact hidden sphere algorithm that operates\n               in real time  COMP. GRAPHICS AND IMAGE PROC. 15(4), 1981\n\n-------------  A linear time exact hidden surface algorithm SIGGRAPH'80\n\n------------- and V. Akman A simple and efficient haloed line algorithm\n                           for hidden line elimination COMPUTER GRAPHICS\n                           FORUM, 1987\n\n-------------------------- Adaptive grid for polyhedral visibility in\n                           object space: an implementation BJC 1987, to appear\n\n-Varol Akman\nCWI, Amsterdam\n#! rnews 2392\nPath: alberta!mnetor!uunet!mcvax!jack\nFrom: jack@cwi.nl (Jack Jansen)\nNewsgroups: comp.os.misc,comp.unix.wizards\nSubject: Re: Command interfaces\nMessage-ID: <142@piring.cwi.nl>\nDate: 9 Dec 87 15:41:45 GMT\nReferences: <1257@boulder.Colorado.EDU> <6840002@hpcllmv.HP.COM> <9555@mimsy.UUCP> <798@rocky.STANFORD.EDU> <432@cresswell.quintus.UUCP> <3161@psuvax1.psu.edu> <5565@oberon.USC.EDU>\nOrganization: AMOEBA project, CWI, Amsterdam\nLines: 43\nXref: alberta comp.os.misc:339 comp.unix.wizards:5747\n\nIn article <5565@oberon.USC.EDU> blarson@skat.usc.edu (Bob Larson) writes:\n> [Discussing primos wildcards versus unix wildcards]\n>For example, how would you do the equivelent of this in unix:\n>\n>cmpf *>old>@@.(c,h) == -report ==.+cmpf -file\n>\n>(Explanation: compare all files in the old sub-directory ending in .c or\n>.h with the file of the same name in the current directory, and put\n>the output in the file of the same name with .cmpf appended.  Non-files\n>(directories and segment directories) ending in .c or .h are ignored.\n>[I do prefer the output of diff -c to that of cmpf, but that isn't\n>what I'm talking about here.]\n\nUhm, yes, unfortunately I find the 'feature' quite unusable.\nI *never* come up with the correct sequence of == and @@, so I have to type\nthe command three times before I get it right. (really retype, that is.\n'History mechanism' is something primos has never heard about).\n\nI definitely prefer\nfor i in *.[ch]; do\n    diff old/$i $i >$i.diff\ndone\n\n(and you can add an 'if [ -d $i ]' if you really care about directories\nending in .c or .h. I don't, because I don't *have* directories ending\nin .c or .h).\n\nAnd, to continue some gripes on primos wildcards:\n- I would expect them to work *always*. I.e. if I do\n  TYPE @@\n  (TYPE is primos echo) I would expect a list of all files, *not* '@@'.\n- If I want all arguments on one line, and I use [WILD @@.TMP], and the\n  result doesn't fit in 80 characters, I DO DEFINITELY NOT WANT IT TO TRUNCATE\n  IT AT EIGHTY CHARS! I lost an important file that way: it was trying\n  to generate a list containing PRECIOUSFILE.TMP, but, unfortunately,\n  the .TMP started at position 81. So, it removed PRECIOUSFILE in stead.\n  sigh.\n  \nSorry, there are some neat ideas in primos, but the command processor and\nit's wildcards is definitely *not* one of them.\n-- \n\tJack Jansen, jack@cwi.nl (or jack@mcvax.uucp)\n\tThe shell is my oyster.\n#! rnews 1552\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csbg\nFrom: csbg@its63b.ed.ac.uk (Andie)\nNewsgroups: comp.windows.news\nSubject: Windows and menus through the CPS interface\nKeywords: NeWS windowing, menus, CPS interface\nMessage-ID: <821@its63b.ed.ac.uk>\nDate: 9 Dec 87 00:15:36 GMT\nReply-To: csbg@its63b.ed.ac.uk (Bruce)\nOrganization: Computer Science Department, Edinburgh University\nLines: 26\n\nHi everybody !\n\nI'm a final year student at Edinburgh University and as part of my final\nyear project I am using NeWS to build up a document composition system.\nAlas, I'm new to NeWS and the NeWS manual does seem to be rather sketchy,\nespecially when it comes to using the CPS interface.\n\nHaving had a look at the stuff that is floating around in this newsgroup\nI think that someone out there will be able to help me.\n\nPoint 1 : How can I control the litewin.ps and litemenu.ps packages through\n          the CPS interface - especially, how do I get notification to the\n          C program that something is happening ?\n\nPoint 2 : This may be trivial, but when I create an overlay for the purposes\n          of rubber-banding, using the getclick family of operators, I can\n          never get the overlay to disappear again. What is happening and \n          how should it be done ?\n\nIf these points have already been raised in the past then I will be happy to\nreceive direct e-mail from anybody who can answer any part of the above\nqueries.\n\nAs they say: When the going gets tough, I get the hell out of it !\n\nBruce Gilmour (CS4 student at Edinburgh University)\n#! rnews 1134\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: Re: Problems with serial TTY driver\nMessage-ID: <1778@botter.cs.vu.nl>\nDate: 9 Dec 87 15:36:52 GMT\nReferences: <2314@encore.UUCP>\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 16\n\nIn article <2314@encore.UUCP> paradis@encore.UUCP (Jim Paradis) writes:\n>Is there some limit to how fast MINIX will take interrupts? \n>If one takes them too fast, will messages get lost?\n>\nIf you try to force feed MINIX from an Ethernet at 10 Mbps it will probably\ndrop stuff.  There is undoubtedly a limit on how many interrupts per second\nit can handle, but an AT it should be over 1000 per second.\n\nThe original tty driver was very carefully written to deal with exactly\nthis issue.  When characters come in, they are buffered, even if it is\nnot possible to send a message to the tty task.  This code is on lines\n3528 to 3552 of the book.  Assuming you are still using this mechanism,\nyou ought to be able to accept characters at say 2400 baud without losing\nany.\n\nAndy Tanenbaum (ast@cs.vu.nl)\n#! rnews 915\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: P-H has MINIX in stock (finally)\nMessage-ID: <1779@botter.cs.vu.nl>\nDate: 9 Dec 87 15:46:14 GMT\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 11\n\n\nI talked to P-H yesterday.  Version 1.2 of MINIX in 256K & 640K PC, 512K AT, \nmag tape, and the IBM slipcase version with the abridged book are all\nin stock.  If it is of any consolation to the people who have had to wait\nand wait and wait, one of the corporate vice presidents was so unhappy\nabout the poor service to customers that he fired the person who was in charge\nof managing the MINIX inventory.  He has been replaced by someone else who has \nclear instructions to make sure it doesn't go out of stock again.  They are now\nshipping to everyone whose order got backlogged.\n\nAndy Tanenbaum (ast@cs.vu.nl)\n#! rnews 841\nPath: alberta!mnetor!uunet!mcvax!prlb2!lln-cs!gf\nFrom: gf@lln-cs.UUCP (Frank Grognet)\nNewsgroups: rec.games.misc,rec.games.frp,rec.games.board\nSubject: WARGAMING!\nKeywords: wargame,rule,figurine,game\nMessage-ID: <796@lln-cs.UUCP>\nDate: 9 Dec 87 15:19:13 GMT\nOrganization: Computer Science Dept., Louvain-la-Neuve Belgium\nLines: 11\nXref: alberta rec.games.misc:1150 rec.games.frp:1652 rec.games.board:543\n\n\n\tI want to start wargaming but I don't know how!\n\nI won't be playing wargames on a board, but with 15mm or 25mm\nfigurines.\nI would like to find addresses in Europe (especially Belgium)\nof good figurine manufacturers and also references to rule\nbooks for the Napoleonic period.\nI am also interested in rules contained on the net or in files at\nother sites, if they exist!\nI anybody can help me, please reply to ..!mcvax!prlb2!lln-cs!gf\n#! rnews 1656\nPath: alberta!mnetor!uunet!mcvax!nikhefk!frankg\nFrom: frankg@nikhefk.UUCP (Frank Geerling)\nNewsgroups: comp.sys.atari.st\nSubject: Re: the perfect ram disk\nKeywords: ramdisk, resizeable, reset-survivable\nMessage-ID: <294@nikhefk.UUCP>\nDate: 9 Dec 87 19:53:23 GMT\nReferences: <427@dukempd.UUCP>\nReply-To: frankg@nikhefk.UUCP (Frank Geerling)\nOrganization: Nikhef-K, Amsterdam (the Netherlands).\nLines: 42\n\nIn article <427@dukempd.UUCP> gpm@dukempd.UUCP (Guy Metcalfe) writes:\n>I have Mike's Ramdisk v. .95, and like the idea of what it's trying to do.\n>It has a dialogue box as if it were resizable, but it's very buggy.  Could\n>someone send me a later version that works like it's dialogue implies it\n>should.  What I would like best of all is an eternal ram disk that I can\n>size up and down as I see fit, but which sizes down without letting me \n>destroy any data I may have on the disk.  If anybody has and would send me\n>or knows where I could get such a beast, I would be grateful.  Thanks.\n>-- \n>\tGuy Metcalfe                            gpm@dukempd.uucp  \n\n\nPlease send it to me too, I also have Mike's Ramdisk and the resize doesn't\nwork it doesn't return allocated memory when you resize to a smaller amount\nof memory.\n\nThanx in advance\n\n\n\t\t\t   Frank Geerling\n\t\t\t(frankg@nikhefk.uucp)\n\n\nUsenet:\t\t{seismo, philabs, decvax}!mcvax!frankg@nikhefk\n\nNormal mail:\tFrank Geerling\n\t\tNIKHEF-K (DIGEL)\n\t\tPostbus 4395\n\t\t1009 AJ Amsterdam\n\t\tThe Netherlands\n\n\t\t\t   Frank Geerling\n\t\t\t(frankg@nikhefk.uucp)\n\n\nUsenet:\t\t{seismo, philabs, decvax}!mcvax!frankg@nikhefk\n\nNormal mail:\tFrank Geerling\n\t\tNIKHEF-K (PIMU)\n\t\tPostbus 4395\n\t\t1009 AJ Amsterdam\n\t\tThe Netherlands\n#! rnews 2666\nPath: alberta!mnetor!uunet!mcvax!prlb2!kulcs!luc\nFrom: luc@kulcs.UUCP (Luc Van Braekel)\nNewsgroups: comp.lang.pascal\nSubject: Re: self-replicating programs?\nSummary: here is a self-replicating pascal program\nMessage-ID: <1070@kulcs.UUCP>\nDate: 9 Dec 87 08:31:27 GMT\nReferences: <1400@tulum.swatsun.UUCP>\nOrganization: Kath.Univ.Leuven, Comp. Sc., Belgium\nLines: 37\n\nIn article <1400@tulum.swatsun.UUCP>, hirai@swatsun (Eiji \"A.G.\" Hirai) writes:\n> \tIn our recent ACM programming contest (regionals), one of the\n> problems was to write a self-replicating program.  That is, we had to\n> write a program whose output was itself, the source code.  No alterations\n> of the original code during execution was allowed (I think).\n> \tDoes anyone have any code for this problem?  We have one but\n> it looks inelegant.  I've also see bery bery short Prolog code for this.\n> Help, we are looking for good codes to study!  And yes, the contest is\n> over (we ain't cheating).\n\nHere is a self-replicating Pascal program I wrote a few years ago.\nThe program looks dirty but it works !\n\nprogram self (output);                                     \nvar i,j: integer;                                          \n    a: array[1..8] of packed array[1..59] of char; begin   \n  a[1] := 'program self (output);                                     ';\n  a[2] := 'var i,j: integer;                                          ';\n  a[3] := '    a: array[1..8] of packed array[1..59] of char; begin   ';\n  a[4] := 'for i := 1 to 3 do writeln(a[i]);                          ';\n  a[5] := 'for i := 1 to 8 do begin write(''  a['',i:0,''] := '',chr(39));';\n  a[6] := 'for j := 1 to 59 do begin write(a[i][j]);if a[i][j]=chr(39)';\n  a[7] := 'then write(a[i][j]) end; writeln(chr(39),'';'') end;         ';\n  a[8] := 'for i := 4 to 8 do writeln(a[i]) end.                      ';\nfor i := 1 to 3 do writeln(a[i]);                          \nfor i := 1 to 8 do begin write('  a[',i:0,'] := ',chr(39));\nfor j := 1 to 59 do begin write(a[i][j]);if a[i][j]=chr(39)\nthen write(a[i][j]) end; writeln(chr(39),';') end;         \nfor i := 4 to 8 do writeln(a[i]) end.                      \n\n+-----------------------------------+------------------------------------+\n| Name   : Luc Van Braekel          |  Katholieke Universiteit Leuven    |\n| UUCP   : luc@kulcs.UUCP           |  Department of Computer Science    |\n| BITNET : luc@blekul60.bitnet      |  Celestijnenlaan 200 A             |\n| Phone  : +(32) 16 20 0656 x3563   |  B-3030 Leuven (Heverlee)          |\n| Telex  : 23674 kuleuv b           |  Belgium                           |\n+-----------------------------------+------------------------------------+\n#! rnews 1678\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!zu\nFrom: zu@ethz.UUCP (Urs Zurbuchen)\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: Oooh Yeccheo. How Does This One Really Work?!?\nMessage-ID: <264@bernina.UUCP>\nDate: 9 Dec 87 12:16:51 GMT\nReferences: <164300022@uiucdcsb> <412@wa3wbu.UUCP> <13091@beta.UUCP> <1269@phoenix.Princeton.EDU>\nReply-To: zu@bernina.UUCP (Urs Zurbuchen)\nOrganization: ETH Zuerich, CS Department, Switzerland\nLines: 41\n\nIn article <1269@phoenix.Princeton.EDU> rjchen@phoenix.Princeton.EDU (Raymond Juimong Chen) writes:\n>In article <13091@beta.UUCP> it was written:\n>What you'd probably want is something like\n>\n>AUTOEXEC.BAT:\n>  doit\n>\n>DOIT.BAT:\n>  copy \\autoexec.ddd \\autoexec.bat\n>  del \\autoexec.ddd\n>  do other stuff\n>  reboot.\n>\n>AUTOEXEC.DDD:\n>  same as before\n\nYou could the same thing without changing your AUTOEXEC.BAT. With the solution\npresented above you will execute the same second version of AUTOEXEC.BAT each\ntime you reboot your machine (perhaps that's really what you want, but my\nimagination doesn't go that far. If so, just disregard this article).\n\nMy solution: In the startup file you include the following:\n\nif exist <filename_like_gaga.gag_or_whatever_you_want_to_call_it> goto second\n<here included all the stuff you want executed when booted for the first time>\necho gaga > <filename_like_gaga.gag_or_whatever_you_want_to_call_it>\n:second\n<now follows the rest of the story (i.e. your autoexec.ddd)>\n\nThat's it. If you want to toggle between the two boot modes just add a line\nlike:\n\ndel <filename_like_gaga.gag_or_whatever_you_want_to_call_it>\n\n\n\t\tI hope this will help anybody :-)\n\n\t\t\t...urs\n\n\nUUCP: ...seismo!mcvax!cernvax!ethz!zu\n#! rnews 420\nPath: alberta!mnetor!uunet!mcvax!inria!irisa!michaud\nFrom: michaud@irisa.UUCP (Michaud Franck INSA BN205)\nNewsgroups: comp.protocols.tcp-ip\nSubject: virtual circuit\nKeywords: tcp, socket\nMessage-ID: <202@irisa.UUCP>\nDate: 9 Dec 87 20:05:21 GMT\nOrganization: IRISA, Rennes (Fr)\nLines: 7\n\n\n\tI'd like to have a good definition of :\n- virtual circuit.\n\n \tIf you have a good definition, send me a mail.\n\t\tthanck you.\n\tfranck\n#! rnews 758\nPath: alberta!mnetor!uunet!mcvax!enea!liuida!dat08\nFrom: dat08@butterix.liu.se\nNewsgroups: rec.games.frp\nSubject: Re: New rules for AD&D\nMessage-ID: <686@butterix.liu.se>\nDate: 9 Dec 87 03:53:09 GMT\nReferences: <26788S9S@PSUVMA>\nOrganization: CIS Dept, Univ of Linkoping, Sweden\nLines: 11\n\nIn article <26788S9S@PSUVMA> S9S@PSUVMA.BITNET (Steven A. Schrader) writes:\n>New Rules for TSR.   [...] Does anyone know when these rules will be out\n>and how much they will cost?\n\nAccording to Harold Johnson of TSR (at a local convention in Sweden) the new\nrules will be out in 89.\n \nBTW -- Any reactions about the new (again!) Gamma World? I haven't tried it\nyet but I like their idea of one-table-system for everything.\n \nPer Westling         dat08@majestix.liu.se\n#! rnews 968\nPath: alberta!mnetor!uunet!mcvax!enea!tut!tolsun!reini\nFrom: reini@tolsun.oulu.fi (Jukka Reinikainen)\nNewsgroups: comp.sys.ibm.pc,comp.sources.wanted\nSubject: Hercules graphic characters\nKeywords: hercules, text, MASM, MSC\nMessage-ID: <246@tolsun.oulu.fi>\nDate: 8 Dec 87 15:32:30 GMT\nOrganization: University of Oulu, Finland\nLines: 14\nXref: alberta comp.sys.ibm.pc:9576 comp.sources.wanted:2717\n\n\n \nHelp wanted: how to create text in Hercules graphic mode?\n \nI have a program written in MSC (parts coded with MASM) which does\nquite nice things with grapichs but suffers lack of characters.\nAccording to my knowledge the only way to get characters in Herc graphic\nmode is to draw them on screen by lightning a set of pixels, right?\n \nSomebody *must* have written a program which draws characters and\nother symbols, so please help me.  C and/or ASM sources and/or ideas\nwill be *very* appreciated.\n \n       >      Jukka Reinikainen         reini@tolsun.oulu.fi       <\n#! rnews 935\nPath: alberta!mnetor!uunet!mcvax!enea!liuida!andka\nFrom: andka@smidefix.liu.se (Andreas K}gedal)\nNewsgroups: rec.music.synth\nSubject: Yamaha CLP - pf question\nKeywords: Yamaha pf85 CLP300\nMessage-ID: <687@smidefix.liu.se>\nDate: 9 Dec 87 15:36:48 GMT\nOrganization: CIS Dept, Univ of Linkoping, Sweden\nLines: 13\n\n\n I'm thinking of getting one of those new sampled pianos and would like\nto get som info. From the net and from my own experience in my local\npiano store, I've understood that the Yamaha Clavinova CLP 300 is\na pretty good choise. But I seem to remember a rumor about something\ncalled Yamaha pf85 wich would be some kind of stageversion of the CLP 300.\nHas anyone seen it, played it, compared it with the CLP 300? What are the\ndifferences in price, sound, keyboard?\n\nMy local pianopusher here in Sweden hadn't heard of it. Is this because\nit is so new or because it is a local phenomenon in the states?\n\n    /Andreas Kagedal\n#! rnews 2816\nPath: alberta!mnetor!uunet!mcvax!enea!ttds!draken!sics!erikn\nFrom: erikn@sics.se (Erik Nordmark)\nNewsgroups: comp.unix.questions\nSubject: Re: Need help with interprocess communications\nKeywords: Pipes, Ptys, Buffering, I/O\nMessage-ID: <1639@sics.se>\nDate: 9 Dec 87 21:21:43 GMT\nReferences: <8117@steinmetz.steinmetz.UUCP>\nReply-To: erikn@sics.UUCP (Erik Nordmark)\nOrganization: Swedish Institute of Computer Science, Kista\nLines: 60\n\n[[ I tried sending this as mail using different addresses, but failed! ]]\n\nIn article <8117@steinmetz.steinmetz.UUCP> you write:\n>\n>\n>I have tried using \"fcntl(fd,F_SETFL,FASYNC)\" as well as setting up an\n>interrupt handler to handle SIGIO signals (via \"sigvec(2)\"), and this works\n>fine when I'm reading from the terminal, but does not seem to work at all\n>when I try it from a pipe.\n>\n>\n>Well, the SIGIO handler works fine to detect input from places like stdin, but\n>never sees anything coming down the pipe.  When it gets invoked (generally\n>by me banging on the <RETURN> key causing an interrupt from stdin), it \n>does find that there is data available in the pipe (as well as stdin) and\n>has no problem reading it.\n>\n>\n>Does anyone out there know how I can fix this problem?\n>\n\n>From looking at the BSD4.3 sources I found out the following:\nWhen a tty is opened the associated process group is set to\nthat of the creator. The signals that the tty driver generate (e.g. caused\nby ^C) are sent to this process group.\n\nHowever, for sockets (a pipe is implemented as a pair of sockets in BSD4.3\nand maybe elsewhere!) the associated process group is not set automatically.\n\nSo what you have to do is to set it before you can get ant SIGIO's! Use\n   int pgrp = getpid();\n   if (fcntl(fd, F_SETOWN, pgrp) == -1) {\n\tperror(\"fnctl\");\n\texit(1);\n   }\nor\n       ioctl(fd, SIOCSPGRP, &pgrp)\t/* note: & */\n\nI think this should work even if pipes aren't implemented as a pair of\nsockets, but I haven't tried any of it.\n\n>Also:  Is there a way that I can determine WHICH file descriptor caused\n>a SIGIO interrupt to be invoked, or by which I can set up a different\n>interrupt handler for each descriptor?\n>\n\nSee select(2). (Just a detail: select will tell you that there is data\nto read if there actually is data to read or if the other end(s) have\nclosed the pipe. In the latter case read() will return an EOF - this\nstuff caused me some trouble before I read the *real* documentation -\nthe OS source code!!)\n\n-------------------------------------------------------------------------\nErik Nordmark\nSwedish Institute of Computer Science, Box 1263, S-163 13  SPANGA, Sweden\nPhone: +46 8 750 79 70\tTtx: 812 61 54 SICS S\tFax: +46 8 751 72 30\n\nuucp:\terikn@sics.UUCP or {seismo,mcvax}!enea!sics!erikn\nDomain: erikn@sics.se\n-------------------------------------------------------------------------\n#! rnews 2508\nPath: alberta!mnetor!uunet!mcvax!enea!luth!d2c-czl\nFrom: d2c-czl@sm.luth.se (Caj Zell)\nNewsgroups: rec.music.misc\nSubject: Re: Ace-Screamingest Guitar Solos on Record\nKeywords: guitar, flames (regrettably)\nMessage-ID: <438@psi.luth.se>\nDate: 9 Dec 87 14:51:22 GMT\nReferences: <1725@s.cc.purdue.edu>\nReply-To: Caj Zell <d2c-czl@psi.luth.se>\nOrganization: University of Lulea, Sweden\nLines: 44\nUUCP-Path: {uunet,mcvax}!enea!psi.luth.se!d2c-czl\n\n\nIn article <1725@s.cc.purdue.edu> rsk@s.cc.purdue.edu (Rich Kulawiec) writes:\n>I thought I'd make up a very hasty list of what I\n>thought were some of the best solos I've heard, and then ask y'all to\n>contribute further.\n\nGood idea,I love making up lists!\n\n>Money (Pink Floyd), David Gilmour\n>Cracked Actor (David Bowie), Earl Slick\n>Don't Take Me Alive (Steely Dan), Jeff 'Skunk' Baxter?\n>All Along the Watchtower Jimi Hendrix\n>Aqualung (Jethro Tull), Martin Barre\n>Highway 61, Johnny Winter\n\nAgree,but how about these:\n\nMuffin Man (Frank Zappa)              (I think FZ was the most underrated)\nSon of Mr. Green Genes (Frank Zappa)  (guitarist there ever has been.But,)\nSon of Orange County (Frank Zappa)    (he can't play anymore,too bad.    )\nPush Comes To Show (Van Halen) Eddie Van Halen\nCrossroads (Cream) Eric Clapton (The 2nd solo,of course)\nAstronomy (Blue \\yster Cult) Donald Roeser (on \"Some Enchanted Evening\")\nLazy (Deep Purple) Ritchie Blackmore\nFat Time (Miles Davis) Mike Stern\n\nI know that when I get home I will kill myself for not adding more solos,\nbut these are the ones I can think of without looking at my records.\nBut maybe that's a good sign indicating that these are really my favourites.\n\nI'd be very glad to see some reactions on the list.\n\n\n      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n      X                                                            X\n      X                                                            X\n      X   Caj Zell                 \t ________________________  X\n      X   University of Lulea            :                      :  X\n      X   Sweden                         : Jazz is not dead,    :  X\n      X  \t\t\t\t : it just smells funny :  X\n      X   mail: d2c-czl@psi.luth.se\t : -Frank Zappa         :  X\n      X                                  :                      :  X\n      X                                  -----------------------:  X\n      X                                                            X\n      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n#! rnews 1389\nPath: alberta!mnetor!uunet!mcvax!enea!kuling!peterf\nFrom: peterf@kuling.UUCP (Peter Fagerberg)\nNewsgroups: comp.sys.mac\nSubject: More memory for Mac+...?\nMessage-ID: <570@kuling.UUCP>\nDate: 9 Dec 87 15:08:48 GMT\nOrganization: DoCS, Uppsala University, Sweden\nLines: 23\n\n\nHello. I've been wondering how to get a little extra memory for my\nMacintosh Plus (needed in these days of Hypercard and Multifinder).\n\nI was wondering if the normal brute-force method could be used;\n  Just solder 1M memory chips on top of the existing one (piggyback)\n  and attach CS (chip-select) and whatever else is needed from the\n  adressbus to select the appropiate chip. I haven't really checked\n  out the memorychips but maybe an inverter is needed for some signals.\n\n  If I'm correctly informed there are 22 bit defining the adress on\n  a MC68000, making it possible to have 4M of memory.\n\n*If* this is possibly, would programs take advantage of it?\n\nWell, maybe this is one of the most stupid questions asked to USENET\nsince it all began and if so - please forgive my ignorance...\n\n                                 Peter-- \n==============================================================================\nPeter Fagerberg             UUCP: {seismo,enea,mcvax,decwrl,...}!kuling!peterf\nApplied Computer Science    ARPA: kuling!peterf@seismo.css.gov\nUppsala University          Analog: +46 18-128286 or 8-102927\n#! rnews 1429\nPath: alberta!mnetor!uunet!mcvax!botter!klipper!biep\nFrom: biep@cs.vu.nl (J. A. \"Biep\" Durieux)\nNewsgroups: soc.culture.jewish\nSubject: Re: Jews in soc.culture.jewish?\nMessage-ID: <958@klipper.cs.vu.nl>\nDate: 10 Dec 87 09:07:28 GMT\nReferences: <4765@spool.wisc.edu> <2086@ucbcad.berkeley.edu> <2264@encore.UUCP> <5779@cisunx.UUCP> <2872@sphinx.uchicago.edu> <5861@cisunx.UUCP>\nReply-To: biep@cs.vu.nl (J. A. \"Biep\" Durieux)\nOrganization: VU Informatica, Amsterdam\nLines: 23\n\nIn article <5861@cisunx.UUCP> dlhst@unix.cis.pittsburgh.edu.UUCP,\n\t(David L. Heyman) writes:\n>Don't kid yourself.  the Constitution is one thing but reality is\n>another.  National Christmas tree, etc.\n                    ^^^^^^^^^^^^^^\n\nYou are not trying to say that the US are German-mythological qua\nreligion, are you? :-)\n\nNo, but seriously: what does that tree have to do with Christianity?\n(Or, what does the mean US Christmas have to do with it at all - but\nthat's another story)\nIs Santa Claus Christian? The Easter Bunny and its eggs?\n\nWhile I agree that the dates of these festivities originally come from\nthe church, the things which are generally celebrated have no origin in\nChristian doctrine, and no one pretends so.\n\nSorry if I offended anyone by this - I am not commenting on those who do\nuse those times for prayer and as memorial days.\n-- \n\t\t\t\t\t\tBiep.  (biep@cs.vu.nl via mcvax)\n\tTo be the question or not to be the question, that is.\n#! rnews 1323\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!ivax!shb\nFrom: shb@ivax.doc.ic.ac.uk (Simon Brock)\nNewsgroups: comp.sys.mac\nSubject: Re: uw/Multifinder?\nMessage-ID: <146@gould.doc.ic.ac.uk>\nDate: 9 Dec 87 10:08:38 GMT\nReferences: <174400085@uxc.cso.uiuc.edu>\nSender: news@doc.ic.ac.uk\nReply-To: shb@doc.ic.ac.uk (Simon Brock)\nOrganization: Dept. of Computing, Imperial College, London, UK.\nLines: 22\n\nIn article <174400085@uxc.cso.uiuc.edu> dorner@uxc.cso.uiuc.edu writes:\n>\n>I can't get uw to work under Multifinder.  ...\n>I have an SE, and am running the latest system software (obviously).\n>I'm using uw version 4.1.\n>\n>Is anybody successfully using uw under Multifinder?\nYes.  I'm using uw4.1 on an SE with System 4.1/Finder 6.0 and a beta version \nof MF (1.0b6).  (As an aside, we can't get System Tools 5.0 in the UK until \nearly next year, unless you know different to me !)\n\nUW runs but I do character losses at 9600 baud.  I can't work out why, and\nI'm not convinced its UW's fault.  I wrote to John Bruner, the author, who\nsays other people were reporting the same problem.\n\n\t\t\t\tSimon.\n\nSimon H Brock, Dept. of Computing, Imperial College, London SW7 2AZ\nTel\t: 01 589 5111 x4993\nBitNet\t: shb@doc.ic.ac.uk (or shb%uk.ac.ic.doc@AC.UK)\nUUCP\t: shb@icdoc.uucp (...siesmo!mcvax!ukc!icdoc!shb)\nJANET\t: shb@uk.ac.ic.doc\n#! rnews 1446\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!cam-cl!am\nFrom: am@cl.cam.ac.uk (Alan Mycroft)\nNewsgroups: comp.lang.c\nSubject: Re: closing stdout\nKeywords: Yes it IS a buggy library\nMessage-ID: <1115@jenny.cl.cam.ac.uk>\nDate: 9 Dec 87 10:38:55 GMT\nReferences: <442@cresswell.quintus.UUCP>\nReply-To: am@cl.cam.ac.uk (Alan Mycroft)\nOrganization: U of Cambridge Comp Lab, UK\nLines: 19\n\nIn article <442@cresswell.quintus.UUCP> ok@quintus.UUCP (Richard A. O'Keefe) writes:\n>There's an old joke with the punch-line \"We've already established what\n>you are, madam.  Now we're just haggling over the price.\"\n>\t\tresult = getchar();\n>\t\terrno = 0;\n>\t\tresult = putc(result, stdin);\n>\t\tprintf(\"result = %d, errno = %d\\n\", result, errno);\n>The bug is that depending on where you are in the buffer, putc() MIGHT\n>notice the mistake, but it usually won't.\n>... the bug is a pretty fundamental one in the UNIX stdio implementation,\nRichard, The bug is not in the slightest bit fundamental and could be fixed\nin less than 1 day once and for all.  I have done it for a ANSI unix-like I/O\nlibrary:\nMerely separate the _cnt field\nof struct FILE into a _icnt and an _ocnt, change getc/putc to use _icnt/_ocnt.\nFix _filbuf/_flsbuf to use the right one, and to whinge when _icnt/_ocnt\ngoes -ve when you expect the other one to.\nThis for free also enables the library to police the \"fflush/fseek between\nchange of direction for I/O\" restriction and avoids chaos there.\n#! rnews 1094\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!cam-cl!lg\nFrom: lg@cl.cam.ac.uk (Li Gong)\nNewsgroups: soc.culture.china\nSubject: Change of Policy After Beginnig Signing Contrct ?\nMessage-ID: <1114@jenny.cl.cam.ac.uk>\nDate: 9 Dec 87 10:37:41 GMT\nOrganization: U of Cambridge Comp Lab, UK\nLines: 19\n\n\n   Is there anybody out there who has info about whether the Chinese\ngovernment has changed the policy regarding students aboard and how\nit is changed, because from this April, all students sent by the\ngovernment are asked to sign contracts between him/her and his/her\ninstitution.\n\n   What do these contracts mean ?  Does this imply that those who came\nout before this April (thus did not sign) then have a somewhat different\nstatus (for example, can not be asked to go back to carry out a certain\ncontract) ?\n\n   E-mail to me and I'll summurize OR post to the newsgroup.  I believe\nthere are other people who are also interested in this issue.\n\n                                    Martin\n-----------------------------------------------------------------------\nlg@uk.ac.cam.cl\n---------------\n#! rnews 1315\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!cdwf\nFrom: cdwf@root.co.uk (Clive D.W. Feather)\nNewsgroups: rec.arts.sf-lovers\nSubject: Eric Frank Russell - was Re: Misc questionings\nMessage-ID: <492@root44.co.uk>\nDate: 9 Dec 87 15:03:01 GMT\nReferences: <362@n8emr.UUCP> <2481@pbhyf.UUCP>\nReply-To: cdwf@root44.UUCP (Clive D.W. Feather)\nOrganization: Root Computers Ltd, London, England\nLines: 23\n\nIn article <2481@pbhyf.UUCP> djl@pbhyf.UUCP (Dave Lampe) writes:\n>In article <362@n8emr.UUCP> lwv@n8emr.UUCP (Larry W. Virden) writes:\n>>\n>>5.\tFinally, and perhaps most important.  I am looking for author and\n>>anthology names for a short story (perhaps longer than thtat?) called I \n>>believe \"MYOB\".\n>>The title stands for \"Mind Your Own Business\".\n>\n>The story is in a book called \"The Great Explosion\" by Eric Frank\n>Russell in 1962. It is a collection of 3 or 4 stories telling\n>of an attempt by Earth to recontact colonies that had been lost\n>for a long time and that had evolved into unusual societies.\n\nI have come across \"The Great Explosion\", but I also have this part of it\nin a collection whose name I have forgotten, under the title \"And then there\nwere none.\". Great story. THE BEST AUTHOR EVER.\n\n[Kill the line counter]\n[Kill Mel]\n[Keep Adric Dead]\n[Kill the line counter]\n[Kill Mel]\n[Keep Adric Dead]\n#! rnews 849\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!cdwf\nFrom: cdwf@root.co.uk (Clive D.W. Feather)\nNewsgroups: sci.misc\nSubject: Re: Color\nMessage-ID: <493@root44.co.uk>\nDate: 9 Dec 87 15:46:24 GMT\nReferences: <162300002@uiucdcsb> <162300004@uiucdcsb>\nReply-To: cdwf@root44.UUCP (Clive D.W. Feather)\nOrganization: Root Computers Ltd, London, England\nLines: 13\n\n\nCarl Kadie\nInductive Learning Group\nUniversity of Illinois at Urbana-Champaign\nwrites:\n>ii.       There is \"no such color\" as purple! Mixing red and blue ink \n>          causes your eye to react in a way which is not reproducible \n>\t  by any single wavelength of light.\n\nThe eye can see colours (for example, in afterimages) that cannot be\nreproduced by any combination of wavelengths of light !\nThere was an article in Scientific American c.1970 entitled \"Phosphenes\"\nthat went into this.\n#! rnews 795\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!datlog!dlhpedg!cl\nFrom: cl@dlhpedg.co.uk (Charles Lambert)\nNewsgroups: rec.games.empire,comp.sources.bugs\nSubject: Re: conquest newsletter #3\nMessage-ID: <330@dlhpedg.co.uk>\nDate: 9 Dec 87 14:27:16 GMT\nReferences: <4886@mhuxd.UUCP> <6899@apple.UUCP>\nSender: news@dlhpedg.co.uk\nReply-To: cl@.co.uk (Charles Lambert)\nOrganization: FSG@Data Logic Ltd, Queens House, Greenhill Way, Harrow, London.\nLines: 8\nXref: alberta rec.games.empire:292 comp.sources.bugs:563\n\n>In article <4886@mhuxd.UUCP>, smile@mhuxd.UUCP (Edward Barlow) writes:\n>> 3) Still have not thought of a new name for the game.  Best so far is \n>> \t<Midguard> (need to check spelling).  Comments?\n\nI've missed something here;  what was wrong with \"conquest\"?\n\n---------------\nCharlie Lambert\n#! rnews 819\nPath: alberta!mnetor!uunet!mcvax!weijers\nFrom: weijers@cwi.nl (Eric Weijers)\nNewsgroups: comp.lang.c++\nSubject: another error in vector.h 1.3\nMessage-ID: <143@piring.cwi.nl>\nDate: 10 Dec 87 13:27:06 GMT\nOrganization: CWI, Amsterdam\nLines: 22\n\nIn \"vector.h 1.3\" the following definition of the X(X&) constructor\nis given:\n\nvector(type).vector(type)(vector(type)& a)\n{\n\tregister i = a.sz;\n\tsz = a.sz; \t\t\t/* ADD THIS LINE */\n\tv = new type[i];\n\tregister type* vv = &v[i];\n\tregister type* av = &a.v[i];\n\twhile (i--) *--vv = *--av;\n}\n\nYou should add the indicated line in order to set the size of\nthe new vector. If that is not done you get \"vector index out of\nrange\" errors.\n\nI found two other errors in this header file, I posted\nearlier. If you are interested in them just send a reply (r).\n\nEric Weijers.\nweijers@cwi.nl\n#! rnews 830\nPath: alberta!mnetor!uunet!mcvax!botter!klipper!biep\nFrom: biep@cs.vu.nl (J. A. \"Biep\" Durieux)\nNewsgroups: soc.culture.jewish\nSubject: Anything positive about Jewish genes? (Was: Jewish genetic diseases)\nMessage-ID: <959@klipper.cs.vu.nl>\nDate: 10 Dec 87 09:50:15 GMT\nReferences: <4362@ig.ig.com> <4374@ig.ig.com>\nReply-To: biep@cs.vu.nl (J. A. \"Biep\" Durieux)\nOrganization: VU Informatica, Amsterdam\nLines: 12\n\nI suppose the exclusive intermarriage among Jews must also have\nspared them for many genetic diseases found among \"the rest of us\".\nDoes anyone have any data on that?\n\n~~~\nI understand nobody is interested in discussing the Dead Sea scrolls?\n\nAnd nobody knows what the \"Jewish region\" in the far SE of Siberia is?\n~~~\n-- \n\t\t\t\t\t\tBiep.  (biep@cs.vu.nl via mcvax)\n\tTo be the question or not to be the question, that is.\n#! rnews 960\nPath: alberta!mnetor!uunet!mcvax!unido!ecrcvax!johng\nFrom: johng@ecrcvax.UUCP (John Gregor)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Old SF Shows\nSummary: Yet another show I can't remember the name of...\nMessage-ID: <463@ecrcvax.UUCP>\nDate: 9 Dec 87 13:57:35 GMT\nReferences: <04.Dec.87.11:29:45.GMT.ZZASSGL@UK.AC.UMRCC.CMS> <18784@linus.UUCP> <1046@bc-cis.UUCP> <19026@linus.UUCP>\nReply-To: johng@ecrcvax.UUCP (John Gregor)\nOrganization: ECRC, Munich 81, West Germany\nLines: 10\n\nThere was a show on sometime between the late 70's and early 80's (1 season).\nAnd I can't remember the name.  It was actually two (or more) shows in one\nwith each sub-show taking a fraction of the time slot.  One part was a \nmodern day dracula.  Another dealt with a society living underground.  They\ncouldn't come up to the surface without special filters due to dust/pollution\nor some such.  Ring any bells?  It was NBC, I think.\n\n\t\t\t\tJohn\n\n\t\tjohng%ecrcvax.UUCP@germany.CSNET\n#! rnews 756\nPath: alberta!mnetor!uunet!mcvax!botter!ark!maart\nFrom: maart@cs.vu.nl (Maarten Litmaath)\nNewsgroups: comp.bugs.4bsd\nSubject: Re: 4.3BSD: using control-m in .exrc file\nSummary: More ^V's are needed (won't the editor get enough of it ? :-)\nKeywords: 4.3bsd  .exrc  control-m ^V\nMessage-ID: <1161@ark.cs.vu.nl>\nDate: 10 Dec 87 18:44:07 GMT\nReferences: <133@telesoft.UUCP>\nReply-To: maart@cs.vu.nl (Maarten Litmaath)\nOrganization: VU Informatica, Amsterdam\nLines: 8\n\nTry preceding each ^M by *another* ^V (which in turn is escaped by ^V) !\nType:\n\tmap , ^V^V^V^M^V^V^V^M^V^V^V^M\n\nBTW, death to emacs !\n-- \nTime flies like an arrow, fruit flies |Maarten Litmaath @ Free U Amsterdam:\nlike an orange.      (seen elsewhere) |maart@cs.vu.nl, mcvax!botter!ark!maart\n#! rnews 1079\nPath: alberta!mnetor!uunet!mcvax!inria!shapiro\nFrom: shapiro@inria.UUCP (Marc Shapiro)\nNewsgroups: comp.lang.c++\nSubject: Re: Is there a \"real\" C++ compiler available?\nSummary: There is a native C++, with debugger support\nMessage-ID: <589@inria.UUCP>\nDate: 10 Dec 87 17:55:27 GMT\nReferences: <2097@ucbcad.berkeley.edu>\nOrganization: INRIA, Rocquencourt. France\nLines: 14\n\nIn article <2097@ucbcad.berkeley.edu>, faustus@ic.Berkeley.EDU (Wayne A. Christopher) writes:\n> [...].  Is there a C++\n> compiler available now that will compile directly into asm\n> code, instead of into C?  Alternatively, is there a good way\n> to use dbx with C++ programs (i.e, using the c++ source instead\n> of the c files)?  \n\nThe answer to both questions is yes.  The Free Software Foundation (you\nknow, the GNU Emacs people) will distribute (soon?) a modified version of\ntheir C compiler which does C++.  Their debugger GDB (a dbx-lookalike) knows\nhow to handle it.\n\nI haven't used either of these so I have no opinions to whether they are\nin any way adequate.  Just passing useful information along.\n#! rnews 1269\nPath: alberta!mnetor!uunet!mcvax!enea!ttds!draken!zap\nFrom: zap@draken.nada.kth.se (Svante Lindahl)\nNewsgroups: comp.os.misc,comp.unix.wizards\nSubject: Re: Command interfaces\nMessage-ID: <239@draken.nada.kth.se>\nDate: 10 Dec 87 04:54:11 GMT\nReferences: <1257@boulder.Colorado.EDU> <6840002@hpcllmv.HP.COM> <9555@mimsy.UUCP> <798@rocky.STANFORD.EDU> <432@cresswell.quintus.UUCP> <3161@psuvax1.psu.edu> <5565@oberon.USC.EDU>\nReply-To: zap@nada.kth.se (Svante Lindahl)\nOrganization: The Royal Inst. of Techn., Stockholm\nLines: 21\nXref: alberta comp.os.misc:340 comp.unix.wizards:5748\n\nIn article <5565@oberon.USC.EDU> blarson@skat.usc.edu (Bob Larson) writes:\n#For example, how would you do the equivelent of this in unix:\n#\n#cmpf *>old>@@.(c,h) == -report ==.+cmpf -file\n\nI can do it using either /bin/sh or csh, but it does require more\ntyping than in Primos. The test for existence of the file is not\nnecessary so these examples could be simplified at the expense of\nrisking a few error messages to the terminal.\n\nC-shell:\n% foreach i (`cd old; ls *.[ch]`)\n> if (-r $i) diff -c old $i > $i.cmpf\n> end\n\nBourne-shell:\n$ for i in `cd old; ls *.[ch]` ; do\n> if [ -r $i ] ; then diff -c old $i > $i.cmpf ; fi\n> done\n\nSvante Lindahl\t    zap@nada.kth.se\tuunet!nada.kth.se!zap\n#! rnews 2030\nPath: alberta!mnetor!uunet!mcvax!enea!ttds!draken!sics!lhe\nFrom: lhe@sics.se (Lars-Henrik Eriksson)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: ST:TNG posters, GET OUT!\nKeywords: Why\nMessage-ID: <1640@sics.se>\nDate: 10 Dec 87 11:50:40 GMT\nReferences: <5226@zen.berkeley.edu> <2011@charon.unm.edu>\nReply-To: lhe@sics.se (Lars-Henrik Eriksson)\nOrganization: Swedish Institute of Computer Science, Kista\nLines: 32\n\nIn article <2011@charon.unm.edu> cs3631cg@hydra.UUCP (Mark Giaquinto) writes:\n>Two points here, interesting is a *very* relative term, what is\n>interesting to you may not be to me and  visa versa.  Secondly I\n>agree, that if you have a ST posting put it in the header, for people\n>who don't want to read this stuff.\n>\n>>If there was no group for star trek fans to converse in without pestering\n>>the rest of the sf world, I would just have to sit here and suffer, but\n>>that's not the case.  Rec.arts.startrek is alive and well.  There is no\n>>reason beyond sheer orneryness to post to sf-lovers as well.  Arguments that\n>>star trek is sci-fi as well are pointless.  The simple fact is that there is\n>>newsgroup for all of you to communicate in, and if the rest of us wanted to\n>>listen, then we would.\n>\n>Well startrek is sf and I don't see how that arguement is pointless.\n\nI have only the faintest interest in the ST stuff and I would prefer it\nto be posted elsewhere, although I am not particularly bothered either.\n\nI think the interesting question is: WHY DO WE HAVE DIFFERENT NEWSGROUPS??\n\nI always thought it was to organize postings by subject and because different\npeople are interested in different things.\n\nIf you argue that ST postings could as well be made to rec.arts.sf-lovers\nrather than to the special ST newsgroup, you could just as well argue\nthat we only need one newsgroup on the entire net: general.general.general.\n\nLars-Henrik Eriksson\t\t\t\tInternet: lhe@sics.se\nSwedish Institute of Computer Science\t\tPhone (intn'l): +46 8 750 79 70\nBox 1263\t\t\t\t\tTelefon (nat'l): 08 - 750 79 70\nS-164 28  KISTA\n#! rnews 1007\nPath: alberta!mnetor!uunet!mcvax!enea!tut!mk59200\nFrom: mk59200@tut.fi (Kolkka Markku Olavi)\nNewsgroups: comp.sources.bugs\nSubject: Re: PC Nethack 2.2 bugs + help wanted linking\nSummary: Inventory display problems\nMessage-ID: <522@fuksi.tut.fi>\nDate: 10 Dec 87 13:32:40 GMT\nReferences: <492@silver.bacs.indiana.edu> <5253@zen.berkeley.edu>\nReply-To: mk59200@fuksi.UUCP (Kolkka Markku Olavi)\nOrganization: Tampere University of Technology, Finland\nLines: 13\n\nI have successfully compiled and linked Nethack using MSC 4.0\nand it looks great, exept in a few points.  The inventory\ndisplay is spread all over the screen if there aren't enough\nitems to force a full-screen display.  It seems that after \nprinting each line the cursor is moved one step down, but\nit doesn't move left to the right place.\n\nAlso, when I teleport away from an unlit room, some quote characters\nare left behind around the place I was in.\n\nMarkku Kolkka at Tampere University of Technology, Finland\nmk59200@tut.fi\n...mcvax!tut!mk59200\n#! rnews 811\nPath: alberta!mnetor!uunet!mcvax!enea!tut!tolsun!jto\nFrom: jto@tolsun.oulu.fi (Jarkko Oikarinen)\nNewsgroups: comp.sys.amiga,rec.games.misc\nSubject: 'Real' controllers for Flight Simulator II\nKeywords: Controllers, Flight Simulator\nMessage-ID: <247@tolsun.oulu.fi>\nDate: 10 Dec 87 16:47:22 GMT\nOrganization: University of Oulu, Finland\nLines: 15\nXref: alberta comp.sys.amiga:11680 rec.games.misc:1151\n\n\n  I am interested in finding any information about 'real' controllers\nfor Amiga's Flight Simulator II program. ie. similar controllers\nthat are used in real airplanes. \n\nPlease mail your responses because I don't read this group regularly.\n\n-- \n========================================\nJarkko Oikarinen   mcvax!tut!oulu!jarkko\n                   jarkko@tolsun.oulu.fi\n========================================\n#! rnews 913\nPath: alberta!mnetor!uunet!mcvax!inria!imag!pierre\nFrom: pierre@imag.UUCP (Pierre LAFORGUE)\nNewsgroups: comp.protocols.appletalk\nSubject: NCSA TELNET bug with foreign MacSE or MacII keyboards\nMessage-ID: <2331@imag.UUCP>\nDate: 10 Dec 87 08:08:19 GMT\nReply-To: pierre@imag.UUCP (Pierre LAFORGUE)\nOrganization: IMAG, University of Grenoble, France\nLines: 11\n\nNCSA Telnet is really a must, but ...\non a Mac SE and a Mac II, NCSA Telnet 2.0 forces an american keyboard, in a\npermanent manner (it remains after exiting telnet, until the next Macintosh\nreboot). It is very painful when you use, for instance, a french keyboard:\nnot only you have to remember to type Q for A, and so on, but you cannot\ntype for example a Control-Z under telnet.\n[On a Macintosh +, one do not loss its keyboard]\n\nIs this bug fixed in the last version ?\n-- \nPierre Laforgue       pierre@imag.imag.fr      {uunet.uu.net|mcvax}!imag!pierre \n#! rnews 490\nPath: alberta!mnetor!uunet!mcvax!diku!sergej\nFrom: sergej@diku.UUCP (S|ren O. Jensen)\nNewsgroups: sci.math.stat\nSubject: The SAS package\nMessage-ID: <3570@diku.UUCP>\nDate: 10 Dec 87 14:03:31 GMT\nOrganization: DIKU, U of Copenhagen, DK\nLines: 7\n\n\nIs the SAS package available for UNIX-systems? We are currently using the\npackage on a old IBM machine but would like to change this machine to\nsomething newer - preferably a UNIX-machine.\n-- \n----\nS|ren Oskar Jensen ({sergej,postmaster}@diku)\n#! rnews 2766\nPath: alberta!mnetor!uunet!mcvax!diku!iesd!jacob\nFrom: jacob@iesd.uucp (Jacob stergaard B{kke)\nNewsgroups: comp.arch\nSubject: job search, Comp. eng.\nSummary: I'm looking for a job\nKeywords: Job, Computer. eng., Computer. sci., M.S.\nMessage-ID: <172@iesd.uucp>\nDate: 10 Dec 87 12:00:17 GMT\nReply-To: jaaob@iesd.UUCP (Jacob \\stergaard B{kke)\nOrganization: Dept. of Comp. Sci., Aalborg University, Denmark (student)\nLines: 68\n\nI'm looking for a job in Computer Engineering to begin around July\n1988. I'm getting my Master of Science in Computer Engineering June\n1988 and at present holding a degree equal to BS in Electronic\nEngineering. My BS studies have included:\n\t\n\tComputer hardware (hands-on knowledge with mc68k),\n\tAnalog electronic \n\tControl engineering (analog and digital control)\n\nMy MS studies have included:\n\n\tSoftware development (man-machine interface, what people want\n\t\t\t      from programs) \n\tCompiler construction (an expertsystem shell) \n\tProgram environment (for CCS programming) \n\tDistributed operating systems (in UNIX)\n \tCompiler mapping object-oriented language on parallel computers\n\nFurthermore I do have experience in conventional programming (PASCAL,\nC, postscript, UNIX (awk, shell-scripts(C-shell) and yacc/lex) (and Basic)),\nfunctional programming (LISP and ML) and logical programming (Prolog)\nand knowledge about object-oriented programming. And I have also attended \ncourses in VLSI design, databases, etc. I have been working with CDC under \nNOS/Telex, VAX 11/750 under Ultrix, SUN 3 under Sun OS 4.3 (UNIX), MacIntosh \n(LISA) under Finder and IBM S36 under IBM property operating system.  \n\nMy spoken English is excellent and my written English is satisfactory,\ngood knowledge of the Scandinavian languages (Danish (of course),\nSwedish and Norwegian), some speaking and reading knowledge of German\nand limited knowledge of French and Spanish (and Latin). \n\nI have 5 years experience in group project work in engineering and\ncomputer scinence areas, broad social interest, good health.\n\nMy interest include computer hardware and software, operating system\ndesign, expertsystems, distributed, concurrency and teaching.\n\nI'm open on location (outside Denmark) but I have relatives or other\nreasons to be especially intereted in:\n\n\tCanada (British Colombia or Toronto)\n\tUSA (New England or Pacific Coast)\n\tPacific (New Zealand or Oceania)\n\tThailand\n\tScotland (Highlands)\n\nI'll look forward to any reponds.\n\n\t\tYours sincerely\n\t\t\t\n\t\t\tJacob Baekke, Denmark\n\nFor further information:\n\nReply to:     \tjacob@iesd.uucp, {...}!mcvax!diku!iesd!jacob  or\n\t\t \nat Univ:\tJacob Baekke \n\t\tS9D (in spring S10)\n\t\tStrandvejen 19\n\t\tAUC\n\t\tDK--9000 Aalborg\n\t\tDenmark\n\nprivate:\tJacob Baekke\n\t\tDavids Alle 48\n\t\tDK--9000 Aalborg\n\t\tDenmark\n\t\tTel. 45-(0)8102673\n#! rnews 867\nPath: alberta!mnetor!uunet!mcvax!diku!dde!jk\nFrom: jk@dde.uucp (Jens Kjerte)\nNewsgroups: comp.sources.wanted\nSubject: Re: Wanted: Microemacs part 8\nMessage-ID: <281@Aragorn.dde.uucp>\nDate: 10 Dec 87 09:27:24 GMT\nReferences: <166@iesd.uucp>\nReply-To: jk@dde.uucp (Jens Kjerte)\nOrganization: Dansk Data Elektronik A/S, Herlev, Denmark\nLines: 15\n\nIn article <166@iesd.uucp> torbennr@neumann.UUCP (Torben N. Rasmussen) writes:\n>\n>Could someone please send me part 8 of the sources for Microemacs.\n>\n\nMe too!\n\nIt seems as if part8 never reached Denmark.\n\n-- \n\n+---------------------------------------------------------------------------+\n|   Jens Kjerte  @ Dansk Data Elektronik A/S, Systems Software Department   |\n|   E-mail:      ..!uunet!mcvax!diku!dde!jk  or  jk@dde.uucp                |\n+---------------------------------------------------------------------------+\n#! rnews 512\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!solaris!wyle\nFrom: wyle@solaris.ifi.ethz.ch@relay.cs.net (Mitchell Wyle)\nNewsgroups: comp.lang.modula2\nSubject: modula-2 pretty-printer\nKeywords: pretty-printer\nMessage-ID: <195@solaris.ifi.ethz.ch@relay.cs.net>\nDate: 9 Dec 87 21:56:57 GMT\nOrganization: SOT sun cluster, ETH Zuerich\nLines: 7\n\nDid anyone ever get the m2pp program to work on Sun Modula-2?\n\nDoes anyone have a different Modula-2 pretty-printer (perhaps better)?\n\nThanks,\n\nMitch Wyle  (wyle@ethz.uucp)\n#! rnews 1762\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!zu\nFrom: zu@ethz.UUCP (Urs Zurbuchen)\nNewsgroups: comp.emacs\nSubject: Re: Has uemacs 3.9 solved the file save bug?\nMessage-ID: <265@bernina.UUCP>\nDate: 10 Dec 87 07:21:02 GMT\nReferences: <3056@pegasus.UUCP>\nReply-To: zu@bernina.UUCP (Urs Zurbuchen)\nOrganization: ETH Zuerich, CS Department, Switzerland\nLines: 30\n\nIn article <3056@pegasus.UUCP> avi@pegasus.UUCP (XMPE40000-Avi E. Gross;LZ 3C-314;6241) writes:\n>\n>I haven't compiled the new micro emacs since I have a MSC compiler, which is\n>not fully supported.\n\nThis is simply NOT TRUE. I am also working with MSC (version 4.0) and had only\none minor problem when I compiled MicroEmacs 3.9e (the latest version which\nwas posted on Usenet). This problem relates to the Subshell spawning. But if\nyou know just a little bit of C, there is no problem to fix it (add a routine\nspecific to MSC). Some time ago, there was even a posting in comp.sources.bugs\ndescribing all the necessary steps to do that.\n\n>I have been having a very annoying problem with the\n>older version, and am wondering if it has been fixed, or if someone has a\n>work around. I am used to saving my files regularly with ^X^S, and then\n>sometimes quiting with ^X^C. Unfortunately, uemacs will quit before\n>completing the writing of the file, leaving me with only a small piece of\n>the file. \n\nI am sure you enable breaking with ^C (either in config.sys or in autoexec.bat)\nTurn this off, and all your problems have gone :-)\nI know this is not the solution to this problem we all want to have. Perhaps\nyou can do it with signal(). If not you have to included a function of your own\nwhich intercepts the break vector of MS-DOS.\n\n\n\t\tHave a nice day,\n\t\t      ...urs\n\nUUCP: ...seismo!mcvax!cernvax!ethz!zu\n#! rnews 2164\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!ceb\nFrom: ceb@ethz.UUCP (Charles Buckley)\nNewsgroups: comp.lang.lisp\nSubject: Re: lisp environments summary -- program storage methods\nMessage-ID: <266@bernina.UUCP>\nDate: 10 Dec 87 23:08:38 GMT\nReferences: <613@umbc3.UMD.EDU> <325@siemens.UUCP> <323@spar.SPAR.SLB.COM> <329@siemens.UUCP> <13253@think.UUCP>\nOrganization: ETH Zuerich, Switzerland\nLines: 30\nIn-reply-to: barmar@think.COM's message of 9 Dec 87 03:18:01 GMT\n\nPosting-Front-End: GNU Emacs 18.41.2 of Mon Sep 14 1987 on bernina (berkeley-unix)\n\n\nIn article <329@siemens.UUCP> steve@siemens.UUCP (Steve Clark) writes:\n>  I maintain that the non-Interlisp systems are wrong, however.  It\n>is clearly more advanced to treat a file as a database of definitions of\n>functions, data, structures, etc. than to treat it as a string of characters\n>that might have been typed at the keyboard.  However, since the rest of the\n>world hasn't caught up yet, there are bound to be incompatibilities.\n\n(Character) file storage is simply more flexible.  The form in which\ninformation is stored must be the most flexible possible, or you lose\ninformation.  The D-crate's pitching of conditionals is simply the\nmanifestation of this.\n\nProponents of restrictive protocols for information storage really ask\n\"the world\" to change to fit the protocol model.  In science, models\nchange to fit the data, not the other way round (unless you cheat).\nTo me, browbeating eventual non-conformists into \"catching up\" by\nlabeling the a model as \"advanced\" is just a form of negative\nmotivation.  All the lousy places I have ever worked ran on negative\nmotivation, none of the good ones.  If your model *is* really worth\nusing, and you can communicate its value, you will not need such\ntactics. \n\nInteractively defined functions?  Haven't typed one in *years* -\nthat's what scratch buffers are for (in case I want to change a\n*character* or two, or later save it.).\n\nAny mouse-based gadgets you can point to in Interlisp can be recreated\nfor a text editor working on correctly parsed Lisp code.  May  take\nexecution time, but if this is prohibitive, your function is probably\ntoo large. \n#! rnews 2319\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!jha\nFrom: jha@its63b.ed.ac.uk (J Andrews)\nNewsgroups: rec.games.frp\nSubject: Fantasy Philosophy\nKeywords: wackafoo\nMessage-ID: <824@its63b.ed.ac.uk>\nDate: 10 Dec 87 14:30:15 GMT\nReply-To: jha@lfcs.ed.ac.uk (J Andrews)\nOrganization: Univ. of Edinburgh Dept. of Computer Science\nLines: 38\nGod: Kate Bush\n\nLeast-favourite-subject: domain theory\n\n\n\n     Those interested in the issues surrounding the mechanics and\nphilosophy of fantasy worlds should read Tolkien's (non-fiction)\nessay \"On Fairy-Stories\".  It appears in the collections _Tree and\nLeaf_ and _The Tolkien Reader_.\n\n     One of the main ideas behind it is that the fantasy author or\nstory-teller is a \"sub-creator\", who tries to create a \"secondary\nbelief\" (rather than exactly a \"willing suspension of disbelief\")\nin the reader.  In the fantasy that works, the reader should be\nable to enter the world every time she picks up the book, and not\nbe aware of the world as being constructed by the author.  This\ninvolves not only internal consistency, but a lack of gimmickry.\n\n     For instance, in _Lord of the Rings_ I was never aware of\nanything being in the world gratuitously.  (Others may differ! :-))\nIn _The Sword of Sha-Na-Na_ (sic)(sick?), on the other hand, I was\nvery aware of the Elfstones as being just a gimmick to get the\ncharacters out of tight spots.  Sure it was internally consistent\n(the Elfstones only had any effect in times of direst need for\ntheir holders), but the hand of the author was clearly visible.\n\n     Similarly, applying it to FRPG's, the magic system in AD&D is\ncertainly internally consistent (to the extent that it is described),\nbut just doesn't \"work\" for me.  Having MU's able to remember several\ncopies of a spell, but forgetting it when the last copy is cast, is\nobviously a gimmick to limit the number of spells an MU can use.\n\n     So I guess the moral of all this for FRPG or module designers\nis that it's best to start out with a few basic assumptions and build\nup your world from them by fairly believable steps, and if you can't\navoid ending up with something really hairy, then change one of your\nassumptions rather than put in quick kludges.  (Gee, sounds like\nsoftware engineering! :=))\n\n--Jamie.\n  jha@uk.ac.ed.lfcs\n\"Switch off the mind and let the heart decide\"\n#! rnews 1818\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!db\nFrom: db@its63b.ed.ac.uk (D Berry)\nNewsgroups: comp.windows.x\nSubject: Questions about implementing the X toolkit.\nMessage-ID: <825@its63b.ed.ac.uk>\nDate: 10 Dec 87 17:28:06 GMT\nReply-To: db@lfcs.ed.ac.uk (Dave Berry)\nOrganization: LFCS, University of Edinburgh\nLines: 25\n\n1)  Does anyone, preferably in the UK or Europe, have a copy of the new\nX toolkit interface definition I can get by ftp?\n\n2)  I'm considering implementing the X toolkit in Standard ML.  Are there any\nconstraints on what I should include or exclude?  The documentation mentions\nimplementation in different languages, but doesn't say much about what this\nmeans.  Is the idea to provide the same functions, with the same names and\nfunctionality, in each language?  What about languages that have automatic\nstorage management or automatic creation of objects, etc?  How far can I\ndeviate from the documentation & still use the name \"X Toolkit\"?\n\n3)  Is the toolkit definition limited to the intrinsics, or are toolkits\nexpected to provide a standard class hierarchy?\n\n4)  Is there any relation between the InterViews toolkit, the Xr, Sx &\nDEC toolkits provided with X version 10R4, and the current X toolkit?\n\n5)  If I go ahead, my first implementation will be a prototype, on top of X\nversion 10R4.  This is because someone else is working on porting X version 11\nto Standard ML, and I want a simple windowing system I can use fairly quickly.\nI hope the prototype will make implementing a full version reasonably\nstraightforward.  I will probably ignore the resource manager, since I'll get\nthat for free when the full Xlib is implemented.  I'll also ignore colour for\nthe time being, and only implement devices (widgets) I'm immediately interested\nin.  Is there anything else I can obviously ignore?\n#! rnews 1113\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!csw\nFrom: csw@eagle.ukc.ac.uk (C.S.Welch)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Word processors are: [was Re: Pournelle's Problems]\nMessage-ID: <4065@eagle.ukc.ac.uk>\nDate: 10 Dec 87 18:42:09 GMT\nReferences: <1915@haddock.ISC.COM>\nReply-To: csw@ukc.ac.uk (C.S.Welch)\nOrganization: Computing Lab, University of Kent at Canterbury, UK.\nLines: 20\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\nSome (possibly) timely information from a course entitled \"The Art of\nCommunication for Engineers\" that I'm on this week.\n\nFrom one of the handouts :-\n\n\"Word processors: research has shown that when writers use pen and paper\n alone, their thoughts and information tend to have better planning and\n organisation. When using word processors alone, writers tend to plan\n on a more surface level, focussing on such aspects as word choice, sentence\n structure, and spelling\"\n\nIt goes on to recommend starting with pen and paper and graduating to WP's\nafter the first draft has been written.\n\nI trust that this may have been of some interest.\n\nChris Welch\nCranfield Institute\nU.K.\n#! rnews 1286\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!qmc-cs!pd\nFrom: pd@cs.qmc.ac.uk (Paul Davison)\nNewsgroups: rec.music.misc\nSubject: Re: Another Day : by Peter Gabriel and Kate Bush\nMessage-ID: <352@sequent.cs.qmc.ac.uk>\nDate: 10 Dec 87 12:58:25 GMT\nReferences: <1987Dec8.154517.11828@gpu.utcs.toronto.edu>\nReply-To: pd@qmc.ac.uk (Paul Davison)\nOrganization: Computer Science Dept, Queen Mary College, University of London, UK.\nLines: 22\n\n\nI've heard of this as well, but I have never found it. It's a pity\nbecause I would really like to hear it, so if anyone has got it please\nlet me know as well!!\n\nAs an aside, Roy has a new album out early next year, probably January.\n\nPaul.\n\nPS Your internal newsgroup \"tor.general\" shouldn't have been on the\nnewsgroups line really, because nobody else has heard of it!\n-- \n--\nPaul Davison\n\nUUCP:      pd@qmc-cs.uucp   or       ...seismo!mcvax!ukc!qmc-cs!pd\nInternet:  pd@cs.qmc.ac.uk              Post:   Dept of Computer Science\nJANET:     pd@uk.ac.qmc.cs                      Queen Mary College\nEasylink:  19019285                             University of London\nTelex:     893750 QMCUOL G                      Mile End Road\nFax:       +44 1 981 7517                       London E1 4NS\nVoice:     +44 1 980 4811  x3950                England\n#! rnews 786\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!craig\nFrom: craig@comp.lancs.ac.uk (Craig)\nNewsgroups: comp.sys.mac\nSubject: MAC II Debuggers\nKeywords: Development, MacII Debuggers\nMessage-ID: <457@dcl-csvax.comp.lancs.ac.uk>\nDate: 9 Dec 87 13:36:01 GMT\nReferences: <687@howtek.UUCP> <3456@husc6.harvard.edu>\nReply-To: craig@comp.lancs.ac.uk (Craig)\nOrganization: Department of Computing at Lancaster University, UK.\nLines: 11\n\nHaving found out that Macsbug 5.5  works well with the MAC II, \nhow do I get a copy ?\n\n\nCraig.\n\n-- \nUUCP:\t ...!seismo!mcvax!ukc!dcl-cs!craig| Post: University of Lancaster,\nDARPA:\t craig%lancs.comp@ucl-cs          |\t  Department of Computing,\nJANET:\t craig@uk.ac.lancs.comp           |\t  Bailrigg, Lancaster, UK.\nPhone:\t +44 524 65201 Ext. 4476   \t  |\t  LA1 4YR\n#! rnews 1070\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!strath-cs!jml\nFrom: jml@cs.strath.ac.uk (Joseph McLean)\nNewsgroups: sci.math\nSubject: concatenation making primes\nMessage-ID: <756@stracs.cs.strath.ac.uk>\nDate: 9 Dec 87 12:47:19 GMT\nReply-To: jml@cs.strath.ac.uk (Joseph McLean)\nOrganization: Comp. Sci. Dept., Strathclyde Univ., Scotland.\nLines: 14\n\n\ntege@nada.kth.se replied by e-mail to my original posting which asked\nif it is always possible to append digits to a positive number in order\nto make a prime. Unfortunately, his address is one of those I can't\nreach, and so I thought I'd kill two birds with one stone and post\nanother article.\n  His argument is very simple, using the Prime Number Theorem to give\nan approximation to the number of primes between x.10^n and\nx.10^n+10^n-1 (which is the same problem I asked but translated to\nmathematics) which shows that as n -> inf, this number of primes also\ngoes to infinity. A very simple argument that proves you can always\nappend digits to make any number into a prime. Great stuff.\n\n      jml, the mad mathematician.\n#! rnews 1275\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!miduet!misoft!tait\nFrom: tait@gec-mi-at.co.uk (Philip Tait)\nNewsgroups: comp.sys.ibm.pc,comp.sources.wanted\nSubject: Re: Wanted: PC Checkbook Software\nSummary: Continental Software's Home Accountant Plus\nKeywords: Checkbook\nMessage-ID: <800@gec-mi-at.co.uk>\nDate: 9 Dec 87 17:34:03 GMT\nReferences: <985@mhuxh.UUCP>\nSender: news@gec-mi-at.co.uk\nReply-To: tait@gec-mi-at.co.uk (Philip Tait)\nOrganization: Marconi Instruments Ltd., St. Albans, UK\nLines: 15\nXref: alberta comp.sys.ibm.pc:9577 comp.sources.wanted:2719\n\nIn article <985@mhuxh.UUCP> vxb@mhuxh.UUCP (Vern Bradner) writes:\n>\n>Can anyone suggest a PC checkbook program?\n\nI use Home Accountant Plus by Continental Software. The (legit.) version I use\nwas originally bundled with the Columbia MPC, so it had to be 'unprotected'\nand altered to remove some hardware dependencies. (Incidentally, this made\nit possible to compile it with QuickBasic - essential if you're impatient\nlike me!)\n\nI've found it reasonably secure and well-featured.\n\n| Philip J. Tait, Marconi Instruments Ltd. | St. Albans, Herts. AL4 0JN, U.K. |\n| UUCP: ...mcvax!ukc!hrc63!miduet!tait\t   | NRS : tait@gec-mi-at.co.uk\t      |\n| Voice: +44 727 36421 x4549 Telex: 297221 | Fax: +44 727 39447\t\t      |\n#! rnews 1059\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!idec!kbsc!yorick\nFrom: yorick@kbsc.UUCP (Yorick Phoenix)\nNewsgroups: comp.os.cpm,comp.sources.wanted\nSubject: Kermit for MP/M\nMessage-ID: <888@kbsc.UUCP>\nDate: 7 Dec 87 17:23:21 GMT\nOrganization: The Knowledge-Based Systems Centre, London, UK\nLines: 16\nXref: alberta comp.os.cpm:1030 comp.sources.wanted:2720\n\nI have a friend who is trying to transfer some files off of an Micromation\nMP/M system.\n\nHe has so far moved the standard \"Generic\" CP/M Kermit (slowly) to the MP/M\nmachine but it doesn't seem to work correctly.\n\nHas anybody ever managed to get Kermit to work under M/PM?  Is there a simple\nset of differences between C/PM kermit and M/PM Kermit.  We have the full\nsource code for C/PM Kermit.\n\n\tYorick Phoenix\n-- \n+------------------------------------------+ The Knowledge-Based Systems Center\n|  yorick@kbsc.UUCP                        | 58 Northside, Clapham Common\n|  ..mcvax!ukc!{idec,hrc63}!kbsc!yorick    | LONDON   SW4 9RZ   England\n+------------------------------------------+ Voice: +44 1 350 1622\n#! rnews 1946\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!root44!gwc\nFrom: gwc@root.co.uk (Geoff Clare)\nNewsgroups: comp.unix.questions\nSubject: Re: rmail under HP-UX   (was Re: Using RMAIL under HPUX)\nSummary: RISC architecture\nKeywords: RISC, HP-UX\nMessage-ID: <495@root44.co.uk>\nDate: 10 Dec 87 13:58:20 GMT\nReferences: <8711251805.AA02481@mitre-bedford.ARPA> <3720010@hpsemc.UUCP> <3631@xanth.cs.odu.edu>\nReply-To: gwc@root44.UUCP (Geoff Clare)\nOrganization: Root Computers Ltd, London, England\nLines: 31\n\n>In article <3720010@hpsemc.UUCP>, bd@hpsemc.UUCP (bob desinger) writes:\n>> Here's how it is on our HP-UX system, a model 840:\n\n>> drwxrwxr-x   2 bin      mail        1024 Nov 25 18:45 /usr/mail\n>> -rwxr-sr-x   2 root     mail      137216 Oct  2 00:00 /bin/rmail\n\n>Wow!  Why is rmail so BIG?  What does HP-UX rmail do that SMAIL 2.5\n>doesn't?  Contrast the size of this rmail with various executables\n>found on our 4.3 BSD system.\n\n>-rwxr-xr-x  2 root     staff       35840 Nov  3 07:02 /bin/rmail (SMAIL 2.5)\n>-rwxr-xr-x  1 root     staff      104448 Jun  5  1986 /lib/ccom (C compiler)\n>-rwxr-xr-x  1 root     staff       97280 Dec  5 05:17 /usr/local/carmen (Lisp)\n>-rwsr-xr-x  1 root     staff      100352 Apr  5  1987 /usr/lib/sendmail\n\nThe HP840 is a RISC architecture machine.  Reduced instruction set implies\nmore instructions required to do the same job than on a 'complex'\ninstruction set machine, hence the proportionately larger executable files.\nPresumably your 4.3BSD machine is a VAX-alike (i.e. complex instruction set).\n\nThe only other file from your list which exists on our HP840 system is\nthe C compiler, and look at the size of that beast!!\n\n-rwxrwxr-x  1 bin      bin       1097728 Mar  5  1987 /lib/ccom\n\n(No, that's not a typo - it really is more than 1 Megabyte!)\n\nGeoff Clare              gwc@root.co.uk            seismo!mcvax!ukc!root44!gwc\n-- \n\nGeoff Clare              gwc@root.co.uk            seismo!mcvax!ukc!root44!gwc\n#! rnews 1904\nPath: alberta!mnetor!uunet!mcvax!ukc!stc!datlog!slxsys!jpp\nFrom: jpp@slxsys.specialix.co.uk (John Pettitt)\nNewsgroups: comp.unix.xenix\nSubject: Re: 16-bit versus 32-bit memory performance\nSummary: 32 bit cpu on 16 bit ram is a waste of money\nMessage-ID: <109@slxsys.specialix.co.uk>\nDate: 10 Dec 87 14:17:13 GMT\nReferences: <388@ddsw1.UUCP> <620@omen.UUCP> <435@spdcc.COM>\nReply-To: jpp@slxsys.UUCP (John Pettitt)\nOrganization: Specialix International, London, UK.\nLines: 29\n\nThis should perhaps belong in comp.arch\n\nIt would appear that most 8088,8086,186 and 286 systems are\nlimited by the number of cycles taken to execute instructions\n(I.E the clock speed).  However the 80386 (at 16 and esp at 20 Mhz)\nis limited by its memory bus bandwidth.  That is the memory subsystem\non most 286 boxes is fast enough have little or no real effect on\nperformance compared to a change in clock speed.   An 80386\nhowever is largly limited by the rate that it can be 'fed' data\nand instructions.   \n\n16 Bit memory subsystems have a devestating effect on the 80386 \nfor 2 reasons.  Firstly 2 memory accesses are required rather than\none thus doubling the access time.  Secondly most 16 bit memory cards\nare designed for 8 or 10 Mhz operation not 16 Mhz so a significant\nnumber of wait states are needed when used with a 386.   It would\nappear that a 'cache miss' on the Intel Inboard(tm) generates beteween\n10 and 12 wait states thus making access to 16 bit ram slower than\nfrom the original 286.\n\nIn conclustion - if you want a 32 bit CPU use 32 bit ram.  If you\njust want the instruction set use the P9 (80388) - if it ever appears.\n\n(This posting written on a Dell 386 with 6 MB of 0 wait static 32 bit ram)\n\n-- \nJohn Pettitt - 144.5 MHz: G6KCQ, CIX: jpettitt,  Voice: +44 1 398 9422\nUUCP:  ...uunet!mcvax!ukc!pyrltd!slxsys!jpp  (jpp@slxsys.specialix.co.uk)\nDisclaimer: I don't even own a cat to share my views !\n#! rnews 1704\nPath: alberta!mnetor!uunet!mcvax!unido!iaoobelix!woerz\nFrom: woerz@iaoobelix\nNewsgroups: comp.unix.wizards\nSubject: Re: Request for human interface design a - (nf)\nMessage-ID: <8300012@iaoobelix.UUCP>\nDate: 3 Dec 87 01:35:00 GMT\nReferences: <10559@brl-adm.UUCP>\nLines: 32\nNf-ID: #R:brl-adm:10559:iaoobelix:8300012:000:1331\nNf-From: iaoobelix!woerz    Dec  3 02:35:00 1987\n\n> /***** iaoobelix:comp.unix.wiz / oberon!blarson /  5:40 pm  Nov 28, 1987*/\n> In article <7995@steinmetz.steinmetz.UUCP> dawn!stpeters@steinmetz.UUCP (Dick St.Peters) writes:\n> >(The VMS interface is not always so friendly to novices: name the file\n> >\"junk\" instead of \"junk.txt\", and a novice may never figure out how to\n> >read it.  As for expert interfaces, rename the expert's .emacs file to\n> >sav.emacs and watch him/her try to recover.)\n>\n> I'm no VMS expert and I know a way to recover.  Use a gun to put a few\n> bullets in the aproprate disk drive.  (When it is replaced and the\n> backups restored, my .emacs reappears. :-)\n\nAnd if you're out of luck, a backup has been done between the time\nyou changed your .emacs file and the shooting of the disk and you\nwill get your changed file. :-(\n\n> --\n> Bob Larson              Arpa: Blarson@Ecla.Usc.Edu\n> Uucp: {sdcrdcf,cit-vax}!oberon!skat!blarson             blarson@skat.usc.edu\n> Prime mailing list (requests):  info-prime-request%fns1@ecla.usc.edu\n> /* ---------- */\n\n------------------------------------------------------------------------------\n\nDieter Woerz\nFraunhofer Institut fuer Arbeitswirtschaft und Organisation\nAbt. 453\nHolzgartenstrasse 17\nD-7000 Stuttgart 1\nW-Germany\n\nBITNET: iaoobel.uucp!woerz@unido.bitnet\nUUCP:   ...{uunet!unido, pyramid}!iaoobel!woerz\n#! rnews 1992\nPath: alberta!mnetor!uunet!mcvax!unido!tub!actisb!federico\nFrom: federico@actisb.UUCP (Federico Heinz)\nNewsgroups: comp.sys.atari.st\nSubject: Re: Hard disk boot???\nKeywords: Hard disk, GEMBOOT\nMessage-ID: <122@actisb.UUCP>\nDate: 8 Dec 87 19:34:12 GMT\nReferences: <624@aucs.UUCP>\nReply-To: federico@actisb.UUCP (Federico Heinz)\nOrganization: Actis in Berlin GmbH, W. Germany\nLines: 39\n\n[The line eater was sleeping again ...]\n\nIn article <624@aucs.UUCP> 870646c@aucs.UUCP (barry comer) writes:\n>I have a few questions for anyone using a SH204 with a Mega ST. I have a Meag2\n>with a SH204, I have being auto booting from the hard disk using HDB_V2.3, I\n>used to be able to auto boot from the floppy when the CTRL,SHIFT, and ALT.\n>keys were held down, well since I started using the Mega, the machine always\n>boots from the hard disk with the keys down or up??????????????\n\nI didn't know of the CTRL-SHIFT-ALT trick, but I had a problem similar\nto yours: there was no way my Mega would boot from floppy, and that\nturned out to be quite a problem when a desk accessory I had downloded\nfrom somewhere was turned unusable because of line noise.  My \"solution\"\nwas not to boot from hard disk at all, which I now find better since it\nallows me to choose different configurations (desk accesories and such)\ndepending on the job I'm going to do.\n\n>I am also using GEMBOOT to overcome the 40 folder limit in TOS(has it been\n>fixed with the new ROMS?).\n\nI'm also interested on this question, and it has been already asked a couple\nof times with no visible answer.  I've never used the old ROMs, so I don't\nknow what the infamous \"40 folder limit\" means. I've had more than 40 folders\non my hard disk and nothing happened.  Does this mean that the problem is\nfixed? Or is it 40 folders DEEP?\n\n\n                                        \n\t\t\t\t\t\n\t\t\t\t\t///////\n\t\t\t\t      //____ //\n\t\tFederico             //     //\n\t\t\t\t    // __  //\n\t\t\t\t   // / / //\n\t\t\t\t   ///////\n\n\nUUCP: ...!mcvax!unido!tub!actisb\nBIX:  fheinz\n#! rnews 888\nPath: alberta!mnetor!uunet!mcvax!varol\nFrom: varol@cwi.nl (Varol Akman)\nNewsgroups: sci.physics\nSubject: Texts a la Feynman\nSummary: I would like to read them\nMessage-ID: <144@piring.cwi.nl>\nDate: 11 Dec 87 10:59:47 GMT\nOrganization: CWI, Amsterdam\nLines: 12\n\nI've been re-reading recently Feynman's excellent volumes and enjoying\nmyself.  The question is:  Are there physics books of similar style?\nOne thing that I like about Feynman is that he tries to ``demystify''\nstuff instead of giving cookbook formulas.  Since I do this as a\nleisurely activity, the absence of too many formulas and long\nmathematical analyses (at least in Vol. I) are also appreciated.\nI'm especially interested in classical mechanics.  Philosophical\nimplications of physics laws such as causality, etc. are also interesting.\n\nSend me individual replies and I'll post a summary to the net. Thanks!\n\n-Varol Akman\n#! rnews 1649\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!bath63!pes\nFrom: pes@ux63.bath.ac.uk (Smee)\nNewsgroups: rec.games.misc\nSubject: Re: The Pawn help\nKeywords: ** EXPLICIT SPOILERS **\nMessage-ID: <2011@bath63.ux63.bath.ac.uk>\nDate: 9 Dec 87 11:24:10 GMT\nReferences: <2884@cbmvax.UUCP> <2299@killer.UUCP> <2910@cbmvax.UUCP>\nReply-To: pes@ux63.bath.ac.uk (Smee)\nOrganization: AUCC c/o University of Bath\nLines: 22\n\nIn article <2910@cbmvax.UUCP> daveb@cbmvax.UUCP (Dave Berezowski) writes:\n>\n>I've been told that there is a bug in the game such that you must get to\n>the pedestal asap else the blue key won't be there (this is what has happended\n>to me)...\n\nThe story I've heard is that this is not a bug.  Rather (as warned in the\nmanual) the other characters you meet are also poking around, and can have\neffects even while they are not in the same location as you.\n\nIn particular, as I've heard it, if the adventurer gets to the pedestal before\nyou do then he will take the key.  (And allegedly you then can recover it when\nyou kill him.)  I haven't tried this line of play yet, so can't vouch for it,\nbut it sounds plausible.\n\nThere's a cute bug in the ST version, though, to do with the pedestal.  If\nyou move the pedestal and then type 'take all' you end up carrying the pedestal,\na duplicate of which remains in place.  (If you just try to 'take pedestal',\nyou are told that it is too heavy to lift.)  I'm told that this results from\na bug in the relevant object definition table entry, so it might have propagated\nto other versions.  (I'd doubt that the driving data undergoes as much analysis\nas the executable code during porting to other machines.)\n#! rnews 1317\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!pyr1.cs.ucl.ac.uk!awylie\nFrom: awylie@pyr1.cs.ucl.ac.uk\nNewsgroups: comp.sys.ibm.pc\nSubject: Zorland/Datalight C INT86 problem\nMessage-ID: <39500003@pyr1.cs.ucl.ac.uk>\nDate: 8 Dec 87 13:23:00 GMT\nLines: 24\nNf-ID: #N:pyr1.cs.ucl.ac.uk:39500003:000:954\nNf-From: pyr1.cs.ucl.ac.uk!awylie    Dec  8 13:23:00 1987\n\n\nHi,\n   I have a problem with the Zorland C compiler, aka Datalight-C or\nNorthWest-C which I wondered if any netlander had previously encountered\nand solved.\n   I have a program which works fine in small model but recently I had\nto go to the data model (small code, large data) whereupon it hung my\nXT clone. Tracing execution seems to indicate that the DOS software\ninterrupt routine INT86 may be the source of the trouble.\n   Has anyone seen problems with INT86 in D or L model programs? The\nprospect of DEBUGging the interface between C and assembler does not\nappeal to me.\n   BTW I have deliberately not given details of the program. I do not\n       want to debug it on the net. Please e-mail me only if you have\n       solid evidence of problems in the INT86 area.\n\n      thanks for any help you can give,\n           Andrew\n\nAndrew Wylie\nUniversity of London Computer Centre, London, England\n\nuucp:    awylie@uk.ac.ucl.cs\nJANET:   andrew@ulcc.ncdlab\n#! rnews 644\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!pyr1.cs.ucl.ac.uk!awylie\nFrom: awylie@pyr1.cs.ucl.ac.uk\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: Virus program warning\nMessage-ID: <39500004@pyr1.cs.ucl.ac.uk>\nDate: 8 Dec 87 17:12:00 GMT\nReferences: <6146@jade.BERKELEY.EDU>\nLines: 8\nNf-ID: #R:jade.BERKELEY.EDU:-614600:pyr1.cs.ucl.ac.uk:39500004:000:227\nNf-From: pyr1.cs.ucl.ac.uk!awylie    Dec  8 17:12:00 1987\n\n\nPresumably it would be relatively easy to modify the virus program to\nmake it into an 'antibody' which would automatically overwrite the\nvirus on any infected floppy which was used on the PC.\n\nAndrew Wylie\n\nawylie@uk.ac.ucl.cs\n#! rnews 541\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!pyr1.cs.ucl.ac.uk!awylie\nFrom: awylie@pyr1.cs.ucl.ac.uk\nNewsgroups: rec.games.hack\nSubject: NetHack 2.2 part 18\nMessage-ID: <42700005@pyr1.cs.ucl.ac.uk>\nDate: 10 Dec 87 09:51:00 GMT\nLines: 8\nNf-ID: #N:pyr1.cs.ucl.ac.uk:42700005:000:193\nNf-From: pyr1.cs.ucl.ac.uk!awylie    Dec 10 09:51:00 1987\n\n\nPeople in the UK and Europe who need NetHack 2.2 part18 can get it by\nsending me e-mail, preferably to my Janet address.\n\nAndrew Wylie\n\nJanet:   andrew@ulcc.ncdlab\nuucp:    awylie@uk.ac.ucl.cs\n#! rnews 892\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!smb!dave\nFrom: dave@smb.co.uk (Dave Settle)\nNewsgroups: comp.sources.wanted\nSubject: B-tree routines required.\nKeywords: b-tree index rmcobol\nMessage-ID: <18@oscar.smb.co.uk>\nDate: 8 Dec 87 11:17:39 GMT\nOrganization: SMB Business Software, Mansfield, UK\nLines: 21\n\nI'm looking for a set of routines which can handle B-trees, as part of\na program which I'm writing to recover RM-COBOL indexed files.\n\nIf anyone knows of any routines which might be helpful (or any hints about\nhow to go about it), I'd be very grateful to hear about them.\n\nPlease reply to me directly by mail, as I don't (yet) get this newsgroup\ndirectly.\n\nThanks in advance,\n\t\tDave Settle.\n---\n\nDave Settle, \n\tSMB Business Software, Thorn EMI Datasolve, High St, Mansfield, UK\n\nUUCP:\tdave@smb.co.uk\n\t...!mcvax!ukc!nott-cs!smb!dave\t\n\n\t\t<--- This way to point of view --->\n\t\t\n#! rnews 3785\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!sph\nFrom: sph@eagle.ukc.ac.uk (S.P.Holmes)\nNewsgroups: rec.games.misc,rec.games.frp,rec.games.board\nSubject: Re: WARGAMING!\nMessage-ID: <4067@eagle.ukc.ac.uk>\nDate: 11 Dec 87 10:24:28 GMT\nReferences: <796@lln-cs.UUCP>\nReply-To: sph@ukc.ac.uk (S.P.Holmes)\nOrganization: Computing Lab, University of Kent at Canterbury, UK.\nLines: 76\nXref: alberta rec.games.misc:1153 rec.games.frp:1655 rec.games.board:544\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\nIn article <796@lln-cs.UUCP> gf@lln-cs.UUCP (Frank Grognet) writes:\n>\n>\tI want to start wargaming but I don't know how!\n>\n>I won't be playing wargames on a board, but with 15mm or 25mm\n>figurines.\n>I would like to find addresses in Europe (especially Belgium)\n>of good figurine manufacturers and also references to rule\n>books for the Napoleonic period.\n\nThe best set which I've found are the Wargames Research Group 1685 - 1850\nrules. Although the time period sounds a bit long these rules have the\nfollowing advantages (My opinions only).\n\n- Wide ranges of troops covered (You can fight outside Europe)\n- Wide range of weapons covered (Pikes for those Moscow Militiamen etc)\n- Simple solution for combat - This is what I really like, There@s\n      No nonsense evaluating every 20th of a casualty, or evaluating\n      grenadier companies firing separate from the rest of their battallion.\n- All weapons are handled simply. Just a different entry in one table.\n- Movement is alternate, not simultaneous, things move much quicker.\n- Hand to hand combat is decided very quickly, (Just like reality).\n- Morale tests are also quite fast to do, and give specific tests for\n  different situations. (This avoids an old problem where eg Horsemen test\n      morale before charging, Test fails horribly, Horsemen rout off the \n      field.) To make you go away, the opponent actually has to do\n      something.\n- European regulars have \"National characteristics\".\n    ie British are disciplined infantry and rash cavalry.\n       Russians are stoical Infantry (Won@t retreat easily)\n       Spanish are easily panicked\n       Highlanders charge aggressively\n       French columns are impetuous and frighten the enemy.\n       Austrian and Prussian cavalry are Bold\n       Austrian, Spanish and Dutch Generals are Cautious.\n\nTogether with these rules I would recommend the army lists published by\nTable Top Games.\n\nThese cover the European armies for most of the big campaigns of\n1805-1815 and ensure a balanced army is selected (Although the \n1000 point armies don@t always work too well.\neg My russians need 12 Gun Artillery Batteries (6 pieces on the table)\n   This leaves me few points for infantry or cavalry\n   (In practice a Russian 1000 point army has two of Inf, Cav & Art)\n\nThe lists also help to enhance the National Flavour of an army\nie British get few Cavalry, but some veteran Infantry.\n   French after 1812 have Raw Infantry or Guards.\n   Austrians Have Very Large numbers Of infantry.\n\nI can summarise some of the +/- points of each of the armies I've seen\nif you mail me.\n\nI'd recommend 15mm scale troops (Much cheaper and more transportable)\n    They'll fit on your table too.\n\nI actually use the 6mm scale which is cheaper, lighter and requires\nabout 60cm x 100 cm for a medium game.\nHowever the Job of painting, mounting and moving the little guys is\nmuch harder.\n\n\n>I am also interested in rules contained on the net or in files at\n>other sites, if they exist!\n\nCopyright makes this difficult.\n\n>I anybody can help me, please reply to ..!mcvax!prlb2!lln-cs!gf\n\n\n-- \n        Steve Holmes         | Noel Coward : \"Would you object if I smoked\"\n        Room 109a            |\nE-mail  sph                  | Sarah Bernhardt : \"I wouldn't care if you burned\"\nPhone   ext 7681 or 3682     |\n#! rnews 1737\nPath: alberta!mnetor!uunet!mcvax!ukc!pyrltd!lucifer!rob\nFrom: rob@lucifer.UUCP ( 237)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Origin of Hithchiker's Guide\nMessage-ID: <6@lucifer.UUCP>\nDate: 11 Dec 87 10:03:57 GMT\nReferences: <909WDMCU@CUNYVM> <1240001@otter.HP.COM>\nReply-To: rob@lucifer.UUCP (Rob Clive - 237)\nOrganization: Lucas Micos, Phoenix Way, Cirencester, Glos, UK  (0285 67981)\nLines: 24\n\nIn article <1240001@otter.HP.COM> kers@otter.HP.COM (Christopher Dollin) writes:\n>> I have recently been told be someone that The Hitchhiker's Guide to the\n>> Galaxy originated as a radio program rather than as a book.\n>\n>The radio series \"The Hitch-hikers Guide to the Galaxy\" was broadcast in \n>Britain for the first time between 1976..1979 (sorry for the range but all I\n\nIt was 1978.  Episode 1 of the first series was a pilot production for the\nwhole thing and as such is slightly different in flavour to the others.  The \nfirst series (6 episodes) covered the ground of the TV version and books 1\nand 2.  Then came the Christmas (1978) show to make a link to the second\nseries which was broadcast in 1979 and consisted of 5 episodes.\n\n> For my money, the show (and scripts) are MUCH funnier than the books.\n\nTrue.  The radio shows left much more to the imagination with the assistance\nof some very good sound effects.  I thought the TV series spoiled it.  For \ninstance at the end of the first radio series you hear the song 'What a\nWonderful World' amid the sound of burning trees on prehistoric Earth; can't\nyou just imagine it?\n\n-----------------------------------------------------------------------------\nRob Clive.\t\t\t\t     UUCP:  ...!mcvax!ukc!lucifer!rob\nLucas Micos Ltd., Cirencester, GL7 1QG, UK.\t\t      Now read on....\n#! rnews 1160\nPath: alberta!mnetor!uunet!mcvax!botter!tjalk!rblieva\nFrom: rblieva@cs.vu.nl (Roemer Lievaart)\nNewsgroups: rec.music.classical\nSubject: Re: The range of the male voice.\nMessage-ID: <918@tjalk.cs.vu.nl>\nDate: 11 Dec 87 13:06:10 GMT\nReferences: <1280@phoenix.Princeton.EDU> <1597@faline.bellcore.com> <3999@pucc.Princeton.EDU>\nReply-To: rblieva@cs.vu.nl (Roemer B. Lievaart)\nOrganization: VU Informatica, Amsterdam\nLines: 15\n\nQ2816@pucc.Princeton.EDU (Roger Lustig) typed:\n+---------------------------------------\n| Choral music is generally written for a fairly restricted range (note\n| the two qualifications in that sentence) in order to allow choirs, not\n| individuals, to sing it.  There are choral high Bb's (in Singet dem\n| Herrn, for instance) and even C's for the sopranos (end of Kodaly's\n| Laudes Organi), and the incredible stuff Beethoven asked for in the\n| Missa Solemnis and Ninth.  But they are the exception, and are generally\n| intended to sound like an exception.\n+---------------------------------------\n\nWe're playing Mahler's 2nd, and so I noticed last wednesday that\nthe Basses have to sing as deep as (at least ?) the low B.\n\n\t-- Roemer.\n#! rnews 871\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: Re: scanf()\nMessage-ID: <1782@botter.cs.vu.nl>\nDate: 11 Dec 87 14:40:54 GMT\nReferences: <782@louie.udel.EDU>\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 10\n\nIn article <782@louie.udel.EDU> KIMMEL%ecs.umass.edu@relay.cs.net (Matt Kimmel) writes:\n>I just got Minix v1.2, and I like it a lot.  However, when I try to\n>compile a C program that calls scanf(), I get a message to the effect\n>of \" _scanf not resolved\".  Am I missing something?  Or is there no scanf()\n\nThere is a scanf in libsrc.a, but it is not included in libc.a.  You have to\ncompile it yourself with cc -LIB -c scanf.c and put in in the library.\nIt was omitted from libc.a because there was no room on that diskette!\n\nAndy Tanenbaum (ast@cs.vu.nl)\n#! rnews 1614\nPath: alberta!mnetor!uunet!mcvax!guido\nFrom: guido@cwi.nl (Guido van Rossum)\nNewsgroups: comp.windows.x\nSubject: X and different IPC protocols\nSummary: Surely feasible; but how useful?\nMessage-ID: <145@piring.cwi.nl>\nDate: 11 Dec 87 22:15:13 GMT\nReply-To: guido@cwi.nl (Guido van Rossum)\nOrganization: \"The Amoeba Project\", CWI, Amsterdam\nLines: 22\n\nAlthough X as distributed uses TCP/IP to connect clients and server, it\nis possible use other network protocols by relatively small changes to\nthe lowest levels of library and server.  We have almost gotten the\nserver half of such a set-up running using Amoeba (a distributed\noperating system with its own, capability-based RPC mechanism).\nThe library half should be working as soon as we solve problems with the\nC compiler.\n\nThe question is, how much does this buy us?  Since Amoeba is not Unix, X\nclients requiring advanced Unix features won't run under vanilla Amoeba.\nWhat percentage of the available client applications will be convertable\nto a different operating system, where, e.g., one will have <stdio.h>\navailable, but not select(2)?  I would assume that there will be VMS\nsupport for X, so that one might expect clients to be OS-independent,\nbut then again, you can never know what hacks a performance-driven\napplication programmer may use... (including VAX assembly :-)\n\nCan anybody comment on this?  It would also be interesting to know if\nthird-party software for X would come binary or source.\n--\nGuido van Rossum, Centre for Mathematics and Computer Science (CWI), Amsterdam\nguido@cwi.nl or mcvax!guido or (from ARPAnet) guido%cwi.nl@uunet.uu.net\n#! rnews 1102\nPath: alberta!mnetor!uunet!mcvax!prlb2!kulcs!wim\nFrom: wim@kulcs.UUCP (Wim De Bisschop)\nNewsgroups: comp.lang.ada\nSubject: Ada-interface to Termcap(3)\nKeywords: termcap\nMessage-ID: <1075@kulcs.UUCP>\nDate: 11 Dec 87 10:56:28 GMT\nOrganization: Kath.Univ.Leuven, Comp. Sc., Belgium\nLines: 15\n\nHas anyone an Ada interface to the C routines from the termcap\nlibrary? We would have a package for terminal independent \nscreen oriented output in Ada. The most natural way to do this,\nis to make use of the C-routines of termcap. \nWe were wondering whether someone else has already defined an\ninterface package, preferably for a Verdix 5.41 compiler to\nrun under 4.3BSD.\n\n\n+----------------------------------------------------------------------+\n| Name:   Wim De Bisschop           | Katholieke Universiteit Leuven   |\n| E-mail: wim@kulcs.UUCP  or        | Department of Computer Science   |\n|         ...!mcvax!prlb2!kulcs!wim | Celestijnenlaan 200 A            |\n| Phone:  +(32) 16-200656 x3596     | B-3030 Leuven (Heverlee), Belgium|\n+----------------------------------------------------------------------+\n#! rnews 835\nPath: alberta!mnetor!uunet!mcvax!enea!erix!erialfa!afr\nFrom: afr@erialfa.UUCP (Anders Fredrikson ZX/DRG)\nNewsgroups: rec.music.misc\nSubject: Re: Ace-Screamingest Guitar Solos on Record\nMessage-ID: <172@erialfa.UUCP>\nDate: 10 Dec 87 12:31:18 GMT\nReferences: <1725@s.cc.purdue.edu> <2455@sfsup.UUCP>\nReply-To: afr@erialfa.UUCP (Anders Fredrikson ZX/DRG)\nOrganization: Ericsson Information Systems AB, Kista, Stockholm, SWEDEN\nLines: 17\n\nIn article <2455@sfsup.UUCP> mingus@sfsup.UUCP (Damballah Wedo) writes:\n>> rsk@s.cc.purdue.edu.UUCP (in <1725@s.cc.purdue.edu>):\n>> [ lists some excellent guitar solos ]\n>\n>Sure, I'll play that game:\n>\n>......\n>---cut\n>She'a a Woman (Jeff Beck, BLOW BY BLOW)\nThis tune is even better on the \"Jeff Beck & Jan Hammer group LIVE\"\n>---Cut\n>.....\nYou might also add\nEuropa (Santana, MOONFLOWER)\n\n\n/Anders\n#! rnews 1046\nPath: alberta!mnetor!uunet!mcvax!enea!pvab!robert\nFrom: robert@pvab.UUCP (Robert Claeson)\nNewsgroups: comp.lang.c\nSubject: Re: Making re-#includes harmless--a simple solution?\nMessage-ID: <339@pvab.UUCP>\nDate: 11 Dec 87 10:23:09 GMT\nReferences: <13395@think.UUCP>\nReply-To: robert@pvab.UUCP (Robert Claeson)\nOrganization: Statskonsult Programvaruhuset AB, Sweden\nLines: 16\n\nIn article <13395@think.UUCP> rlk@THINK.COM writes:\n\n>1)  The same file may have multiple names (symlinks and/or hard\n>links).  How do you KNOW whether a file has been included?  The only\n>way is by defining an attribute that only that file will have.  The\n>easiest way to do this (aside from checking device/inumbers, which is\n>not portable and may not work in some bizarre cases, or other system\n>dependent hacks) is to #define a unique name.\n\nHow can you be sure that the name you choose is unique, especially if\nyou use links or symlinks?\n\n-- \nRobert Claeson, System Administrator, PVAB, Box 4040, S-171 04 Solna, Sweden\neunet: robert@pvab\nuucp:  sun!enea!pvab!robert\n#! rnews 1812\nPath: alberta!mnetor!uunet!mcvax!enea!ttds!draken!sics!lhe\nFrom: lhe@sics.se (Lars-Henrik Eriksson)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Houston SF Opera\nMessage-ID: <1642@sics.se>\nDate: 11 Dec 87 10:31:40 GMT\nReferences: <8168@ism780c.UUCP>\nReply-To: lhe@sics.se (Lars-Henrik Eriksson)\nOrganization: Swedish Institute of Computer Science, Kista\nLines: 32\n\nIn article <8168@ism780c.UUCP> jimh@ism780c.UUCP (Jim Hori) writes:\n>The Lessing is probably Doris who has\n>written several futurist/SF novels ...\n\n>Her SF novels are serialized, and from what\n>I recall from scanning them in bookstores,\n>reminiscent of Marge Piercy's enjoyable,\n>though somewhat stiff, feminist SF.\n>\n>The series is called \"Canopus and Argos: Archives\",\nShould be              Canopus IN Argos: Archives\n\nThe five books are quite different in character. The second one\n(\"The marriages between zones 3, 4 and 5\") could possibly be called\n\"feminist SF\" - it is very different from the other four in most ways.\nThe third (\"The Sirian Experiments\") is at times rather funny, and the\nfifth (\"The sentimental agents in the Volyen empire\") is among the funniest\nbooks I've read.\n\nOn the other hand, number 4 (\"The making of the representative of planet 8\")\nwas rather depressing. While reading it I thought that \"it can't get any\nworse than this\". It could, of course. (I don't refer to the quality of the\nbook, but to the events in the story).\n\nI should mention the title of the first one also: \"Shikasta\" This is\nthe most \"important\" of the five, in some sense. It is also the one that\ncould perhaps be called \"stiff\". All the books are well worth reading.\n\nLars-Henrik Eriksson\t\t\t\tInternet: lhe@sics.se\nSwedish Institute of Computer Science\t\tPhone (Intn'l): +46 8 750 79 70\nBox 1263\t\t\t\t\tTelefon (nat'l): 08 - 750 79 70\nS-164 28  KISTA\n#! rnews 768\nPath: alberta!mnetor!uunet!mcvax!enea!tut!santra!kolvi!jku\nFrom: jku@kolvi.UUCP (Juha Kuusama)\nNewsgroups: comp.sys.ibm.pc\nSubject: Re: EVALuation of Shareware Word Processors - Version 1\nMessage-ID: <32@kolvi.UUCP>\nDate: 11 Dec 87 07:40:17 GMT\nReferences: <3610@dhw68k.UUCP>\nReply-To: jku@kolvi.UUCP (Juha Kuusama)\nOrganization: Helsinki University of Technology, Finland\nLines: 9\n\nI'm not at all questioning the value of the comparision, but (as a VERY\nsatisfied and registered) user of PC-Write, I'd like to point out that:\n\n- PC-Write does support the ega in 43-line mode\n\n- PC-Write can remind you to do backups at specified time intervals or\n  when you have entered a specified number of characters.\n---\nJuha Kuusama, jku@kolvi.UUCP  ( ...!mcvax!tut!kolvi!jku )\n#! rnews 904\nPath: alberta!mnetor!uunet!mcvax!diku!daimi!jnp\nFrom: jnp@daimi.UUCP (J|rgen N|rgaard)\nNewsgroups: comp.sys.mac\nSubject: Re: Conjecture:  why several tech notes failed\nMessage-ID: <1248@daimi.UUCP>\nDate: 10 Dec 87 08:43:14 GMT\nReferences: <9827@ut-sally.UUCP>\nReply-To: jnp@titan.UUCP (J|rgen N|rgaard)\nOrganization: DAIMI: Computer Science Department, Aarhus University, Denmark\nLines: 16\n\n\nEarlier this year there has been trouble with tech-notes, that would \nnot binhex correctly (the Mac program).\nThen the problem could be solved with a similiar program on unix-machines.\nThe problem seemed to show up when the file-names where extremely long\n(28 might be the number).\n\nIt seemed not to be so sensitive about file-names.\n\nUnfortunately I have lost the sources.\n\n\n-- \n\t\t\tRegards J|rgen N|rgaard\n\t\t\t\te-mail: jnp@daimi.dk\n-------------------------------------------------------------------------------\n#! rnews 785\nPath: alberta!mnetor!uunet!mcvax!diku!iesd!jacob\nFrom: jacob@iesd.uucp (Jacob stergaard B{kke)\nNewsgroups: sci.misc\nSubject: A request on the Ozone layer\nKeywords: More information wanted about the Ozone layer.\nMessage-ID: <174@iesd.uucp>\nDate: 11 Dec 87 13:38:23 GMT\nReply-To: jacob@iesd.UUCP (Jacob \\stergaard B{kke)\nOrganization: Dept. of Comp. Sci., Aalborg University, Denmark\nLines: 12\n\nToday I read an posting from rhorn@infinet.UUCP about the problems\nwith the Ozone layer. So I got interested and now wanted more\ninformation about it and the problems with the Ozone layer in\nSwitzerland present. I would like any information and I'll look\nforward to any reponds. \n\n\t\tYours sincerely\n\t\t\t\n\t\t\tJacob Baekke, Denmark\n\n\nReply to:     \tjacob@iesd.uucp, {...}!mcvax!diku!iesd!jacob  \n#! rnews 1246\nPath: alberta!mnetor!uunet!mcvax!inria!imag!jarwa\nFrom: jarwa@imag.UUCP (Jarwa Sahar)\nNewsgroups: comp.software-eng\nSubject: LOOKING FOR DOCUMENTS ON SOFTWARE DOCUMENTATION\nMessage-ID: <2336@imag.UUCP>\nDate: 11 Dec 87 09:15:21 GMT\nReply-To: jarwa@imag.UUCP (Jarwa Sahar)\nOrganization: IMAG, University of Grenoble, France\nLines: 26\n\n\n     I am very interested in all publications concerning Documents \n     Related to Software Documentation and to Maitenance Environment.\n     \n     What I am interested in are papers on different types \n     of these documents, their formalism and their structure.\n     \n     If this area also interest you, I'd be very pleased if you could \n     contact me, or send me your papers and/or what you have found \n     interesting pertaining to this area. This will help me making a \n     preliminary study on it.\n     \n     Looking forward to your answer, and thank you for your help.\n\t\t\t\t\tSahar JARWA\n\n\tMy adress is\n\tSahar JARWAH\n\tEquipe \"Systemes Intelligents de Recherche d'Informations\"\n        Laboratoire de Genie Informatique - IMAG\n        BP 68\n        38462 St Martin d'Heres Cedex\n        FRANCE\n\n\tmy phone is 76-51-46-00 extension 5182\n\n\tmy electronic adress is jarwa@imag.imag.fr\n\ton UUCP: jarwa@imag\n#! rnews 1217\nPath: alberta!mnetor!uunet!mcvax!inria!imag!jarwa\nFrom: jarwa@imag.UUCP (Jarwa Sahar)\nNewsgroups: comp.databases\nSubject: LOOKING FOR DOCUMENTS\nMessage-ID: <2337@imag.UUCP>\nDate: 11 Dec 87 09:18:16 GMT\nReply-To: jarwa@imag.UUCP (Jarwa Sahar)\nOrganization: IMAG, University of Grenoble, France\nLines: 26\n\n\n     I am very interested in all publications concerning Documents \n     Related to Software Documentation and to Maitenance Environment.\n     \n     What I am interested in are papers on different types \n     of these documents, their formalism and their structure.\n     \n     If this area also interest you, I'd be very pleased if you could \n     contact me, or send me your papers and/or what you have found \n     interesting pertaining to this area. This will help me making a \n     preliminary study on it.\n     \n     Looking forward to your answer, and thank you for your help.\n\t\t\t\t\tSahar JARWA\n\n\tMy adress is\n\tSahar JARWAH\n\tEquipe \"Systemes Intelligents de Recherche d'Informations\"\n        Laboratoire de Genie Informatique - IMAG\n        BP 68\n        38462 St Martin d'Heres Cedex\n        FRANCE\n\n\tmy phone is 76-51-46-00 extension 5182\n\n\tmy electronic adress is jarwa@imag.imag.fr\n\ton UUCP: jarwa@imag\n#! rnews 2496\nPath: alberta!mnetor!uunet!mcvax!unido!laura!hmm\nFrom: hmm@laura.UUCP (Hans-Martin Mosner)\nNewsgroups: comp.lang.smalltalk\nSubject: User Survey\nKeywords: survey smalltalk curiosity\nMessage-ID: <165@laura.UUCP>\nDate: 10 Dec 87 21:31:51 GMT\nOrganization: University of Dortmund, W-Germany\nLines: 59\n\nTo stir up some unrest, we have decided to post a smalltalk user survey.\nWhere are you, all you happy smalltalk hackers ?  There must be life\nin other parts of the world, too... :-)\nAnyway, we would like you to fill in this questionnaire and give us some\nfeedback.  Of course we would also like if you would post your experiences\nand questions to this group.  After all, that's it's purpose...\n\n\tHans-Martin Mosner & Andreas Toenne\n\tSmalltalk hackers at the University of Dortmund\n\n+-------------------------------\n|1.\tWhat kind of hardware/software do you use:\n|1.1.\tHardware\n|1.1.1.\tProcessor type:\t\t_____\n|1.1.2.\tPhysical memory size:\t_____\n|1.1.3.\tDisplay size:\t\t_____\n|1.2.\tSoftware\n|1.2.1.\tOperating system:\t_____\n|1.2.2.\tVirtual machine:\t_____\n|1.2.3.\tVirtual image version:\t_____\n|1.3\tOverall performance:\t_____ % Dorado (if you know that)\n|2.\tFor what purposes do you use smalltalk ?\n|\t(FillInThisBlank)\n|3.\tDo you think that the system meets your requirements ?\n|\tIf not, why ?\n|4.\tIf you are a programmer:\n|4.1.\tWhat kind of applications have you written ?\n|4.2.\tIf those applications were not written for your employer,\n|\twhy didn't you share them with the Usenet community ? :-)\n|5.\tHow do you like smalltalk ?\n|5.1.\tHow long have you been using smalltalk ?\n|5.2.\tHow familiar are you with smalltalk ?\n+-------------------------------\nThank you for being so cooperative.\nNow that you have answered all those questions, please\nsend the whole thing back to:\n\n\thmm@unido.uucp\nor\thmm@unido.bitnet\nor\t...!uunet!unido!hmm\nor\thmm%unido.uucp@uunet.uu.net\n\nIf everything fails, just post it to this group...\n\nIf even that does not work, then send it via snail mail to:\n\tHans-Martin Mosner\n\tInformatik-Rechner-Betriebsgruppe\n\tUniversitaet Dortmund\n\tPostfac` 500500\nD-4600  Dortmund\n\tWest Germany\n\nDisclaimer: these opinions are not opinions but just random bits & bytes\nand therefore I don't need to disclaim anything...\n-- \nHans-Martin Mosner\t\t| Don't tell Borland about Smalltalk - |\nhmm@unido.{uucp,bitnet}\t\t| they might invent TurboSmalltalk !   |\n------------------------------------------------------------------------\nDisclaimer: TurboSmalltalk may already be a trademark of Borland...\nD\n#! rnews 14600\nPath: alberta!mnetor!uunet!mcvax!unido!laura!atoenne\nFrom: atoenne@laura.UUCP (Andreas Toenne)\nNewsgroups: comp.lang.smalltalk\nSubject: A small IconEditor for Smalltalk 80, VI2.2\nKeywords: smalltalk icons goodie\nMessage-ID: <166@laura.UUCP>\nDate: 10 Dec 87 21:48:21 GMT\nOrganization: University of Dortmund, W-Germany\nLines: 525\n\nHere is a little IconEditor I wrote.\nThis goodie works on Smalltalk 80 VI2.2 VM1.1\nIt comes in two parts.\nThe first part 'Icon menu.st' adds knowledge about icons to the \nStandardSystemController's blueButtonMenu.\nYou should file in this one first.\nThe second part 'Icon Editor.st' is the editor himself.\n\nSome notes about icons:\nThe icon's textRectangle is clipped with the icon's boundingBox.\nTo cancel a given textRectangle simply move it outside the outlined box.\nThe method storeOn: in class OpaqueForm is buggy.\nYou should add enclosing round brackets to the output. Otherwise\nyou won't be able to read the saved icon definitions back.\n\n\tHave fun\n\n\tAndreas Toenne\n\tatoenne@unido.uucp\n\tatoenne@unido.bitnet\n\t...!uunet!unido!atoenne\n\tatoenne%unido.uucp@uunet.uu.net\n\n~~~~~~~~~~~~~~~~~~ cut here for best results ~~~~~~~~~~~~~~~~~~~~~~~~~~\n#! /bin/sh\n# This is a shell archive, meaning:\n# 1. Remove everything above the #! /bin/sh line.\n# 2. Save the resulting text in a file.\n# 3. Execute the file with /bin/sh (not csh) to create:\n#\tIcon Editor.st\n#\tIcon Menu.st\n# This archive created: Thu Dec 10 22:36:04 1987\nexport PATH; PATH=/bin:/usr/bin:$PATH\nif test -f 'Icon Editor.st'\nthen\n\techo shar: \"will not over-write existing file 'Icon Editor.st'\"\nelse\ncat << \\SHAR_EOF > 'Icon Editor.st'\nMouseMenuController subclass: #IconDisplayController\n\tinstanceVariableNames: ''\n\tclassVariableNames: ''\n\tpoolDictionaries: ''\n\tcategory: 'Icon Editor'!\n\n\n!IconDisplayController methodsFor: 'controller default'!\n\nisControlActive\n\t^ super isControlActive and: [sensor blueButtonPressed not]! !\n\n!IconDisplayController methodsFor: 'menu messages'!\n\nyellowButtonActivity\n\t| index menu |\n\tmenu _ view yellowButtonMenu.\n\tmenu == nil\n\t\tifTrue:\n\t\t\t[view flash.\n\t\t\tsuper controlActivity]\n\t\tifFalse: \n\t\t\t[index _ menu startUpYellowButton.\n\t\t\tindex ~= 0 \n\t\t\t\tifTrue:\n\t\t\t\t\t[self controlTerminate.\n\t\t\t\t\tview perform: (menu selectorAt: index).\n\t\t\t\t\tself controlInitialize]]! !\n\f\nView subclass: #IconDisplayView\n\tinstanceVariableNames: 'icon aspect iconMsg iconMenu '\n\tclassVariableNames: ''\n\tpoolDictionaries: ''\n\tcategory: 'Icon Editor'!\nIconDisplayView comment:\n'I am a stupid view used to display the edited icon'!\n\n\n!IconDisplayView methodsFor: 'displaying'!\n\ndisplayView\n\t\"display icon centered in my insetBox\"\n\n\t| r iconRect rec |\n\tDisplay white: self insetDisplayBox.\n\t(icon isKindOf: Icon)\n\t\tifTrue: \n\t\t\t[r _ self insetDisplayBox.\n\t\t\ticon form displayOn: Display at: r topLeft + r bottomRight - icon form extent // 2.\n\t\t\ticonRect _ icon form computeBoundingBox.\n\t\t\ticonRect _ iconRect translateBy: r topLeft + r bottomRight - iconRect extent // 2.\n\t\t\t(iconRect areasOutside: (iconRect insetBy: 1 @ 1))\n\t\t\t\tdo: [:edge | Display fill: edge mask: Form gray].\n\t\t\trec _ icon textRect.\n\t\t\trec = nil\n\t\t\t\tifFalse: \n\t\t\t\t\t[rec _ rec translateBy: r topLeft + r bottomRight - icon form computeBoundingBox extent // 2.\n\t\t\t\t\t(rec areasOutside: (rec insetBy: 1 @ 1))\n\t\t\t\t\t\tdo: [:edge | Display fill: edge mask: Form gray]]]! !\n\n!IconDisplayView methodsFor: 'updating'!\n\nupdate: anAspect \n\t\"update the view\"\n\n\tanAspect == aspect\n\t\tifTrue: \n\t\t\t[icon _ model perform: iconMsg.\n\t\t\tself displayView]! !\n\n!IconDisplayView methodsFor: 'menu messages'!\n\nallBlack\n\t\"make the selected icon all black\"\n\t| figure shape |\n\tfigure _ icon form figure.\n\tshape _ icon form shape.\n\tfigure fill: figure computeBoundingBox rule: Form over mask: Form black.\n\tshape fill: figure computeBoundingBox rule: Form over mask: Form black.\n\tmodel changed: #iconView!\n\nallGray\n\t\"make the selected icon all transparent\"\n\t| figure shape |\n\tfigure _ icon form figure.\n\tshape _ icon form shape.\n\tfigure fill: figure computeBoundingBox rule: Form over mask: Form white.\n\tshape fill: figure computeBoundingBox rule: Form over mask: Form white.\n\tmodel changed: #iconView!\n\nallWhite\n\t\"make the selected icon all white\"\n\t| figure shape |\n\tfigure _ icon form figure.\n\tshape _ icon form shape.\n\tfigure fill: figure computeBoundingBox rule: Form over mask: Form white.\n\tshape fill: figure computeBoundingBox rule: Form over mask: Form black.\n\tmodel changed: #iconView!\n\neditIcon\n\t\"edit the selected icon\"\n\n\t| figure shape opaqueForm iconExtent bitView viewPoint savedForm |\n\t(icon = nil and: [model iconSymbol ~= #default])\n\t\tifTrue: \n\t\t\t[iconExtent _ Rectangle fromUser extent.\n\t\t\tfigure _ Form extent: iconExtent.\n\t\t\tshape _ Form extent: iconExtent.\n\t\t\topaqueForm _ OpaqueForm figure: figure shape: shape.\n\t\t\tmodel icon: (Icon form: opaqueForm textRect: nil)].\n\ticon = nil\n\t\tifFalse: \n\t\t\t[viewPoint _ (BitEditor locateMagnifiedView: icon form scale: 4 @ 4) topLeft.\n\t\t\tbitView _ BitEditor\n\t\t\t\t\t\tbitEdit: icon form\n\t\t\t\t\t\tat: viewPoint\n\t\t\t\t\t\tscale: 4 @ 4\n\t\t\t\t\t\tremoteView: nil.\n\t\t\tsavedForm _ Form fromDisplay: (bitView displayBox merge: bitView labelDisplayBox).\n\t\t\tbitView controller startUp.\n\t\t\tsavedForm displayOn: Display at: bitView labelDisplayBox topLeft.\n\t\t\tbitView release.\n\t\t\tmodel changed: #iconView]!\n\ntextRect\n\t\"let the user specify a rectangle that will hold the icon's text\"\n\n\t| rec r|\n\trec _ Rectangle fromUser.\n\tr _ self insetDisplayBox.\n\trec _ rec translateBy: 0@0 - (r topLeft + r bottomRight - icon form computeBoundingBox extent //2).\n\ticon form: icon form textRect: rec.\n\tmodel changed: #iconView! !\n\n!IconDisplayView methodsFor: 'controller access'!\n\ndefaultControllerClass\n\t^IconDisplayController! !\n\n!IconDisplayView methodsFor: 'private'!\n\non: anIcon aspect: m1 icon: m2 menu: m3\n\tself model: anIcon.\n\taspect _ m1.\n\ticonMsg _ m2.\n\ticonMenu _ m3! !\n\n!IconDisplayView methodsFor: 'adaptor'!\n\nyellowButtonMenu\n\t^ self model perform: iconMenu! !\n\"-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- \"!\n\nIconDisplayView class\n\tinstanceVariableNames: ''!\n\n\n!IconDisplayView class methodsFor: 'instance creation'!\n\non: anIcon aspect: m1 icon: m2 menu: m3\n\t\"create a new view for anIcon with aspect m1\"\n\n\t^self new\n\t\ton: anIcon\n\t\taspect: m1\n\t\ticon: m2\n\t\tmenu: m3! !\n\f\nModel subclass: #IconEditor\n\tinstanceVariableNames: 'icon iconSymbol iconBuffer '\n\tclassVariableNames: 'IconMenu ListMenu '\n\tpoolDictionaries: ''\n\tcategory: 'Icon Editor'!\nIconEditor comment:\n'I am a bit editor for system icons.\n\nInstance Variables :\n\ticon \t\t\t\t\"The selected icon\"\n\ticonSymbol\t\t\t\"The symbol for the selected icon\"\n\nClass Variables:\n\tListMenu \t\t\t\"The action menu for the SelectionInListView over all icons\"'!\n\n\n!IconEditor methodsFor: 'accessing'!\n\nicon\n\t\"return the selected icon\"\n\n\t^icon!\n\nicon: anIcon \n\t\"change the selected Icon to anIcon\"\n\n\ticon _ anIcon.\n\tIcon constantNamed: iconSymbol put: anIcon.\n\tself changed: #iconView \t\" aspect for the IconDisplayView\"!\n\nicon: anIcon named: aSymbol \n\t\" store anIcon at position aSymbol\"\n\n\tIcon constantNamed: aSymbol put: anIcon.\n\ticon _ anIcon.\n\ticonSymbol _ aSymbol.\n\tself changed: #iconSymbol.\t\t\t\"aspect for SelectionInListView\"\n\tself changed: #iconView\t\t\t\"aspect for iconDisplayView \"!\n\niconSymbol\n\t\"return the symbol for the selected icon\"\n\n\t^iconSymbol!\n\niconSymbol: aSymbol \n\t\"change the symbol for the selected icon to aSymbol\"\n\n\ticonSymbol _ aSymbol.\n\ticon _ Icon constantNamed: aSymbol.\n\tself changed: #iconView\t\"aspect for the IconDisplayView\"! !\n\n!IconEditor methodsFor: 'removing'!\n\nremoveIcon\n\t\" remove the currently selected icon \"\n\n\tIcon constantDictionary removeKey: iconSymbol ifAbsent: [^nil].\n\ticonSymbol _ icon _ nil.\n\tself changed: #iconSymbol.\n\tself changed: #iconView! !\n\n!IconEditor methodsFor: 'list display'!\n\niconList\n\t\"return the list of icon symbols\"\n\n\t| list |\n\tlist _ OrderedCollection new.\n\tIcon constantDictionary keysDo: [:i | list add: i].\n\t^list!\n\ninitialSymbol\n\t\"get the initial symbol selection\"\n\t\"this method is used every time the SelectionInListView receives an update mesage \"\n\n\t^iconSymbol!\n\nlistMenu\n\t\"return the menu for the icon list\"\n\n\t^ListMenu! !\n\n!IconEditor methodsFor: 'icon display'!\n\niconMenu\n\t\"return the menu for the iconDisplayController\"\n\n\t^IconMenu! !\n\n!IconEditor methodsFor: 'menu messages'!\n\ncopy\n\t\" save a (deep) copy of the currently selected icon\"\n\n\ticon = nil ifFalse: [iconBuffer _ icon deepCopy]!\n\ncut\n\t\" remove the currently selected icon from the icon dictionary and   \n\tsave it in iconBuffer\"\n\n\t(icon ~= nil or: [iconSymbol ~= #default])\n\t\tifTrue: \n\t\t\t[iconBuffer _ icon.\n\t\t\tself removeIcon]!\n\nloadIcon\n\t\"override the current icon with a definition from a file\"\n\n\t| aFileName anIcon aStream |\n\t(icon ~= nil or: [iconSymbol ~= #default])\n\t\tifTrue: \n\t\t\t[aFileName _ FileDirectory\n\t\t\t\t\t\trequestFileName: 'file : '\n\t\t\t\t\t\tdefault: iconSymbol asString , '.icn'\n\t\t\t\t\t\tversion: #old\n\t\t\t\t\t\tifFail: [^''].\n\t\t\taFileName ~= ''\n\t\t\t\tifTrue: \n\t\t\t\t\t[aStream _ FileStream oldFileNamed: aFileName.\n\t\t\t\t\tanIcon _ Object readFrom: aStream.\n\t\t\t\t\taStream close.\n\t\t\t\t\tself icon: anIcon]]!\n\nnewIcon\n\t\" create a new clean icon\"\n\n\t| iconName |\n\ticonName _ FillInTheBlank request: 'Icon Name ?'.\n\ticonName = '' ifFalse: [self icon: nil named: iconName asSymbol]!\n\npaste\n\t\" change the currently selected icon to the icon held in iconBuffer\"\n\t\" invoke newIcon if none is selected\"\n\n\ticonSymbol = nil\n\t\tifTrue: \n\t\t\t[\"add a new icon\"\n\t\t\tself newIcon.\n\t\t\ticonSymbol = nil ifFalse: [self icon: iconBuffer]]\n\t\tifFalse: [\"override old icon\"\n\t\t\tself icon: iconBuffer]!\n\nrenameIcon\n\t\" change the name of an icon\"\n\n\t| key value newName |\n\t(icon ~= nil or: [iconSymbol ~= #default])\n\t\tifTrue: \n\t\t\t[key _ iconSymbol.\n\t\t\tvalue _ icon.\n\t\t\tnewName _ FillInTheBlank request: 'Change icon name' initialAnswer: key.\n\t\t\tnewName ~= ''\n\t\t\t\tifTrue: \n\t\t\t\t\t[self removeIcon.\n\t\t\t\t\tself icon: value named: newName asSymbol]]!\n\nsaveIcon\n\t\"store the selected icon to a file\"\n\n\t| aFileName aStream |\n\ticon = nil\n\t\tifFalse: \n\t\t\t[aFileName _ FileDirectory\n\t\t\t\t\t\trequestFileName: 'file : '\n\t\t\t\t\t\tdefault: iconSymbol asString , '.icn'\n\t\t\t\t\t\tversion: #any\n\t\t\t\t\t\tifFail: [^''].\n\t\t\taFileName ~= ''\n\t\t\t\tifTrue: \n\t\t\t\t\t[aStream _ FileStream newFileNamed: aFileName.\n\t\t\t\t\ticon storeOn: aStream.\n\t\t\t\t\taStream close]]! !\n\n!IconEditor methodsFor: 'view creation'!\n\nopen\n\t\"open the views\"\n\n\t| topView |\n\ttopView _ StandardSystemView\n\t\t\t\tmodel: self\n\t\t\t\tlabel: 'Icon Editor'\n\t\t\t\tminimumSize: 256 @ 300.\n\ttopView\n\t\taddSubView: (SelectionInListView\n\t\t\t\ton: self\n\t\t\t\taspect: #iconSymbol\n\t\t\t\tchange: #iconSymbol:\n\t\t\t\tlist: #iconList\n\t\t\t\tmenu: #listMenu\n\t\t\t\tinitialSelection: #initialSymbol)\n\t\tin: (0 @ 0 corner: 1.0 @ 0.3)\n\t\tborderWidth: 1.\n\ttopView\n\t\taddSubView: (IconDisplayView\n\t\t\t\ton: self\n\t\t\t\taspect: #iconView\n\t\t\t\ticon: #icon\n\t\t\t\tmenu: #iconMenu)\n\t\tin: (0.0 @ 0.3 corner: 1.0 @ 1.0)\n\t\tborderWidth: 1.\n\ttopView controller open! !\n\"-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- \"!\n\nIconEditor class\n\tinstanceVariableNames: ''!\n\n\n!IconEditor class methodsFor: 'class initialization'!\n\ninitialize\n\t\"Initialize the class IconEditor\"\n\t\"IconEditor initialize\"\n\n\tListMenu _ ActionMenu labelList: #((copy cut paste ) (newIcon renameIcon ) (saveIcon loadIcon ) ) selectors: #(copy cut paste newIcon renameIcon saveIcon loadIcon ).\n\tIconMenu _ ActionMenu labelList: #((editIcon textRect ) (allWhite allBlack allGray) ) selectors: #(editIcon textRect allWhite allBlack allGray)! !\n\n!IconEditor class methodsFor: 'instance creation'!\n\nopen\n\t\"create on schedule a new Icon Editor\"\n\n\tself new open! !\n\nIconEditor initialize!\nSHAR_EOF\nfi\nif test -f 'Icon Menu.st'\nthen\n\techo shar: \"will not over-write existing file 'Icon Menu.st'\"\nelse\ncat << \\SHAR_EOF > 'Icon Menu.st'\n!MouseMenuController methodsFor: 'menu messages'!\n\nblueButtonActivity\n\t\"Determine which item in the blue button pop-up menu is selected. \n\tIf one is selected, then send the corresponding message to the object \n\tdesignated as the menu message receiver.\"\n\t\"Enhanced to use HierarchicalMenus by atoenne@unido.uucp\"\n\n\t| index |\n\tblueButtonMenu ~~ nil\n\t\tifTrue: \n\t\t\t[index _ blueButtonMenu startUpBlueButton.\n\t\t\tindex ~= 0 ifTrue: [blueButtonMenu class = HierarchicalMenu\n\t\t\t\t\tifTrue: [self menuMessageReceiver perform: (blueButtonMenu selectorAt: index)]\n\t\t\t\t\tifFalse: [self menuMessageReceiver perform: (blueButtonMessages at: index)]]]\n\t\tifFalse: [super controlActivity]! !\n\n!StandardSystemController class methodsFor: 'class initialization'!\n\ninitialize\n\t\"Initialize the class variables.\"\n\t\"StandardSystemController initialize. \n\tStandardSystemController allInstances do: [:sc | sc \n\tinitializeBlueButtonMenu] \"\n\n\tScheduledBlueButtonMenu _ (MenuBuilder parseFrom: (ReadStream on: 'newLabel[newLabel]\n(under[under] move[move] frame[frame]) (collapse[collapse]\nicon: ((selectIcon[selectIcon] editIcon[editIcon]) (loadIcons[loadIcons] saveIcons[saveIcons])))\n(close[close])')) menu.\n\tMenuWhenCollapsed _ ActionMenu\n\t\t\t\tlabels: 'new label\\under\\move\\expand\\close' withCRs\n\t\t\t\tlines: #(1 4 )\n\t\t\t\tselectors: #(newLabel under move expand close )! !\n\n!StandardSystemController methodsFor: 'menu messages'!\n\neditIcon\n\t\" call an icon editor \"\n\n\tIconEditor open!\n\nloadIcons\n\t\"load new constant definitions for icons\"\n\n\t| aFileName |\n\taFileName _ FileDirectory\n\t\t\t\trequestFileName: 'file:'\n\t\t\t\tdefault: '*.icn'\n\t\t\t\tversion: #old\n\t\t\t\tifFail: [^''].\n\taFileName ~= '' ifTrue: [Icon constantsFromFile: aFileName]!\n\nsaveIcons\n\t\"write current icon constants to a file\"\n\n\t| aFileName |\n\taFileName _ FileDirectory\n\t\t\t\trequestFileName: 'file:'\n\t\t\t\tdefault: '*.icn'\n\t\t\t\tversion: #any\n\t\t\t\tifFail: [^''].\n\taFileName ~= '' ifTrue: [Icon constantsToFile: aFileName]!\n\nselectIcon\n\t\"let the user choose from the current icons\"\n\n\t| nameList iconList selection selectedIcon |\n\tnameList _ OrderedCollection new.\n\tIcon constantDictionary keysDo: [:key | nameList add: key].\n\ticonList _ Array with: nameList asArray.\n\tselection _ (PopUpMenu labelList: iconList) startUp.\n\tselection ~= 0\n\t\tifTrue: \n\t\t\t[selectedIcon _ (Icon constantNamed: (nameList at: selection) asSymbol) copy.\n\t\t\tself view icon: selectedIcon.\t\t\t\t\"change the icon\"\n\t\t\tself view iconView lock.\t\t\t\t\t\"essential. see below\"\n\t\t\tself view iconView text: self view label.\t\"set new icon text\"\n\t\t\tself view iconView newIcon]\t\t\t\t\"compute new icon\"\n\"lock is needed to perform the newIcon computation. Otherwise insetDisplayBox would be garbled. Text setting is merely needed at the first change. (The standard label has no iconText) \"! !\n\n!StandardSystemController initialize. \nStandardSystemController allInstances do: [:sc | sc \ninitializeBlueButtonMenu]!\nSHAR_EOF\nfi\nexit 0\n#\tEnd of shell archive\nD\n#! rnews 813\nPath: alberta!mnetor!uunet!mcvax!unido!laura!atoenne\nFrom: atoenne@laura.UUCP (Andreas Toenne)\nNewsgroups: rec.games.hack\nSubject: Re: Nethack 2.2:  You stop to avoid hitting.\nKeywords: I have this bug too.\nMessage-ID: <167@laura.UUCP>\nDate: 10 Dec 87 21:53:23 GMT\nReferences: <7515@alice.UUCP>\nReply-To: atoenne@unido.UUCP (Andreas Toenne)\nOrganization: University of Dortmund, W-Germany\nLines: 9\n\nIn article <7515@alice.UUCP> wilber@alice.UUCP writes:\n>I have nethack running on my 3B1.  So far the only bug I've encountered\n>is the message \"You stop to avoid hitting.\"  (Which sometimes comes out as\n>\"You stop to avoid hitting <random garbage>.\")  I haven't hit the plethora\n\nYou have defined DOGNAME but you are missing the dog's name :-)\nSimply add 'dogname:...' to your nethack options.\n\n\tAndreas Toenne\nD\n#! rnews 1201\nPath: alberta!mnetor!uunet!mcvax!unido!rmi!dg2kk!dg2kk\nFrom: dg2kk@dg2kk.UUCP (Walter)\nNewsgroups: rec.ham-radio.packet\nSubject: Problems with WA8DED 2.1 and TNC-2 clones (+possible solution)\nSummary: PTT line is released too early\nMessage-ID: <174@dg2kk.UUCP>\nDate: 10 Dec 87 23:09:52 GMT\nReply-To: dg2kk@dg2kk.UUCP\nOrganization: dg2kk, W Germany, (JO30FT)\nLines: 20\n\nSome TNC-2's have problems with the WA8DED software (version 2.1).\nMost of the outgoing frames cannot be docoded by other stations because\nthe software turns off the transmitter before all bits have been transmitted.\n\nThere are two solutions to this problem:\n\nHardware: connect a small (~2.2uf) capacitor from the base of the PTT keying\n          transistor to ground. (Note: you may have to increase TXDELAY)\n\nSoftware: the code that turns off the transmitter starts at location $037B\n          (3E 05...). It's possible to insert a short delay loop, so that the\n          transmitter remains keyed for a few milliseconds longer.\n          (I haven't tried this yet.)\n\n\n73s, Walter  dg2kk@dg2kk.UUCP\n\n\nPS: Does anyone know if WA8DED is on USENET/Bitnet/ARPANET/anynet???\n    What is his email address? Please let me know.  Thanks.\n#! rnews 1319\nPath: alberta!mnetor!uunet!mcvax!4gl!honzo\nFrom: honzo@4gl.UUCP (Honzo Svasek)\nNewsgroups: comp.unix.xenix,comp.os.misc,comp.unix.questions,comp.unix.wizards\nSubject: Re: Venix Users?\nMessage-ID: <253@4gl.UUCP>\nDate: 11 Dec 87 18:23:50 GMT\nReferences: <2439@sputnik.COM>\nOrganization: 4GL Consultants b.v., the Netherlands\nLines: 27\nXref: alberta comp.unix.xenix:1172 comp.os.misc:341 comp.unix.questions:4773 comp.unix.wizards:5750\n\nin article <2439@sputnik.COM>, dbb@tc.fluke.COM (Dave Bartley) says:\n> \n> The Great OS Search continues ...\n> \n> What about Venix?\n\nI am using Venix for several years now and have the folowing comments.\n\n1. it IS System V UNIX.\n\n2. It has a faster 'feel' for the interactive user than Xenix or Microport\n\n3. It seems to be bug free. This system is running news and I am doing most\n   of the development on it. I have had no problems for at least a year now,\n   and the system is on the air 24 hours a day.\n\n   A few times I had to remove the -O options when compiling, but same\n   counts for 3B2 UNIX.\n\n4. Venturecom claims it to be REAL TIME. I have no experience with\n   REAL real-time on this system, and don't know if the venix system calls\n   are interruptable.\n\nHonzo Svasek, <mcvax!4gl!honzo>\n\nPS. Anyone out there has a way to install 2.2 on a Seagate ST4096 disk?\n\t(on an AT)\n#! rnews 1252\nPath: alberta!mnetor!uunet!mcvax!cernvax!ethz!forty2!vogel\nFrom: vogel@forty2.UUCP (Stefan Vogel)\nNewsgroups: comp.sources.bugs\nSubject: bug in sush\nMessage-ID: <123@forty2.UUCP>\nDate: 11 Dec 87 17:02:58 GMT\nReply-To: vogel@forty2.UUCP (Stefan Vogel)\nOrganization: Exp. Physics University Zuerich\nLines: 33\n\nWe found the following bug in sushperm.c of the sush distribution:\n\nIn routine addgroup the pointer gpmem was incremented before it was used.\nSo, the first member of the group was never found, and the reference to\nthe last member lead to an illegal memory reference (NULL pointer!).\n\noriginal code:\n\n\t gpmem = gpt->gr_mem;\n\t while(*gpmem++) {  <------------------gpmem is incremented\n\t\t if(!strcmp(user,*gpmem))  <---gpmem is used\n\t\t\t ok++;\n\t }\n\n\t /* auth failed - return */\n\ncorrected code:\n\n\t gpmem = gpt->gr_mem;\n\t while(*gpmem) {\n\t\t if(!strcmp(user,*gpmem++))\n\t\t\t ok++;\n\t }\n\n\t /* auth failed - return */\n\n                              Stefan Vogel, Simon Poole\n                              Inst. for Theoretical Physics\n                              University of Zuerich\n                              Switzerland\n\n                              UUCP:   ....mcvac!cernvax!forty2!vogel\n                              BITNET: k524911@czhrzu1a\n#! rnews 626\nPath: alberta!mnetor!uunet!mcvax!prlb2!vub!leo\nFrom: leo@vub.UUCP (Leo Smekens)\nNewsgroups: comp.sys.mac\nSubject: 4th Dimension vs. dBase Mac\nKeywords: 4th Dimension,dBase Mac,Macintosh\nMessage-ID: <506@vub.UUCP>\nDate: 11 Dec 87 13:40:05 GMT\nOrganization: Vrije Universiteit Brussel, Brussels\nLines: 14\n\nWhat can 4th Dimension do what dBase Mac can't?\nWhat can dBase Mac do what 4th Dimension can't?\n\nWho should invest in which program?\nIf you don`t like answering on the net,\nplease mail direct to:\nleo@vub.vub.uucp\n\nLeo Smekens\nMetabolism & Endocrinology\nFree University of Brussels\nLaarbeeklaan 103\nB-1090 BRUSSELS\nBELGIUM\n#! rnews 783\nPath: alberta!mnetor!uunet!mcvax!prlb2!vub!leo\nFrom: leo@vub.UUCP (Leo Smekens)\nNewsgroups: comp.sys.mac\nSubject: Latest SE's shipped\nKeywords: Mac,Mac SE,Macintosh,Macintosh SE,hardware\nMessage-ID: <507@vub.UUCP>\nDate: 11 Dec 87 13:50:46 GMT\nOrganization: Vrije Universiteit Brussel, Brussels\nLines: 15\n\nWe noticed that the last Macintosh SE's we received at our\nuniversity are equipped with a new type of mouse,and,\napparently,with another internal disk drive (at least,it\nsounds differently and beeps upon activation).\nWhat has been changed on the new Mac SE compared to the first version?\nIf you don't like to answer via the net,please mail direct to:\n\nleo@vub.vub.uucp\n\nLeo Smekens\nMetabolism & Endocrinology\nFree University of Brussels\nLaarbeeklaan 103\nB-1090 BRUSSELS\nBELGIUM\n#! rnews 1432\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!csnjr\nFrom: csnjr@its63b.ed.ac.uk (Nick Rothwell)\nNewsgroups: rec.music.misc\nSubject: Re: Ace-Screamingest Guitar Solos on Record\nKeywords: guitar, flames (regrettably)\nMessage-ID: <826@its63b.ed.ac.uk>\nDate: 11 Dec 87 13:06:12 GMT\nReferences: <1725@s.cc.purdue.edu> <1349@saturn.ucsc.edu> <6480@ihlpa.ATT.COM>\nReply-To: nick@lfcs.ed.ac.uk (Nick Rothwell)\nOrganization: LFCS, University of Edinburgh\nLines: 21\n\nIn article <6480@ihlpa.ATT.COM> rjp1@ihlpa.ATT.COM writes:\n>>C'mon people, you can't omit:\n>...\n>Edgar Froese\t-  Underwater Twilight, Riding The Ray, Le Parc and\n>\t\t   Heartbreakers tunes, etc, etc.\n\nFroese's best guitar solo, by most accounts, is on Cloudburst Flight\non the Force Majeure album, back in '79. He starts with slow chords\nand fingering on a 12 string acoustic, then some \"power chords\" (!) on\nthe 12 string, and then onto the electric (Fender Strat I think).\nSome of the recent live work's been good, as well - Franke holding down\na rhythm, with Froese and Haslinger both firing off screaming guitar riffs.\n\n>Bob Pietkivitch   ( e - x - p - o - s - u - r - e )   UUCP: ihnp4!ihlpa!rjp1\n\n-- \nNick Rothwell,\tLaboratory for Foundations of Computer Science, Edinburgh.\n\t\tnick%lfcs.ed.ac.uk@nss.cs.ucl.ac.uk\n\t\t<Atlantic Ocean>!mcvax!ukc!lfcs!nick\n~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~\n\"Nothing's forgotten. Nothing is ever forgotten.\"   - Herne\n#! rnews 818\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!gvw\nFrom: gvw@its63b.ed.ac.uk (G Wilson)\nNewsgroups: comp.sys.transputer\nSubject: Meiko email contact\nMessage-ID: <827@its63b.ed.ac.uk>\nDate: 11 Dec 87 13:23:42 GMT\nReply-To: gvw@its63b.ed.ac.uk (G Wilson)\nOrganization: I.T. School, Univ. of Edinburgh, U.K.\nLines: 18\n\nIn response to several queries --- Meiko Ltd. is not\nconnected to any electronic mail network at present.\nHowever, both myself and Dr. Duncan Roweth, who are\nMeiko employees working on the Edinburgh Concurrent\nSupercomputer Project, are connected to various networks.\nI can be reached at:\n\n\tgvw@itspna.ed.ac.uk (usual)\n\tgvw@its63b.ed.ac.uk (alternative)\n\nwhile Duncan is:\n\n\tegnp36@meiko.ed.ac.uk\n\nIf you want more information on Meiko, please include\na telephone number and a physical mail address.\n\nGreg\n#! rnews 733\nPath: alberta!mnetor!uunet!mcvax!ukc!dcl-cs!nott-cs!pyr1.cs.ucl.ac.uk!awylie\nFrom: awylie@pyr1.cs.ucl.ac.uk\nNewsgroups: rec.games.misc\nSubject: Re: Does anyone remember Zork1? (*S\nMessage-ID: <42800002@pyr1.cs.ucl.ac.uk>\nDate: 11 Dec 87 09:42:00 GMT\nReferences: <22039@ucbvax.BERKELEY.EDU>\nLines: 8\nNf-ID: #R:ucbvax.BERKELEY.EDU:-2203900:pyr1.cs.ucl.ac.uk:42800002:000:300\nNf-From: pyr1.cs.ucl.ac.uk!awylie    Dec 11 09:42:00 1987\n\n\nIts a looooong time since I played Zork, but I believe that you can get\nto the INSIDE of the grate in the woods by which time you should have\nobtained a key which will open it. This gives you an alternative entrance/\nexit to the dungeon, but is not actually much help.\n   Andrew\n\nawylie@uk.ac.ucl.cs\n#! rnews 1324\nPath: alberta!mnetor!uunet!mcvax!ukc!eagle!icdoc!ivax!mst\nFrom: mst@ivax.doc.ic.ac.uk (Martin Taylor)\nNewsgroups: rec.games.trivia\nSubject: Re: words to a song (old lady who swallowed a fly)\nMessage-ID: <148@gould.doc.ic.ac.uk>\nDate: 11 Dec 87 10:55:47 GMT\nReferences: <2170@homxc.UUCP> <12270004@hpldola.HP.COM> <1053@mtuxo.UUCP>\nSender: news@doc.ic.ac.uk\nReply-To: mst@doc.ic.ac.uk (Martin Taylor)\nOrganization: Dept. of Computing, Imperial College, London, UK.\nLines: 26\n\nIn article <1053@mtuxo.UUCP> gertler@mtuxo.UUCP (xm960-D.GERTLER) writes:\n\n>As I recall, the sequence is as follows (more or less):\n>\n>\t1)  Fly\t\tPerhaps she'll die.\n>\t2)  Spider\tThat wriggled and jiggled and tickled inside her.\n>\t3)  Bird\tHow absurd to swallow a bird!\n>\t4)  Cat\t\tImagine that, to swallow a cat!\n>\t5)  Dog\t\tWhat a hog, to swallow a dog!\n>\t6)  Horse\tShe's dead, of course!\n>\n>I seem to remember a goat at about 5.5, but I don't\n>recall it's associated comment.  Sorry.\n>\n\nIt's \"She just opened her throat, and swallowed a goat\"\n\nAlso heard at an informal church social group, this alternative ending:\n\n\t6)  Horse\tNot easy, of course, but she swallowed a horse\n\t7)  Minister\tThat finished her!\n\n\nMartin S Taylor\t\t\t        Department of Computing\nJANET/ARPANET : mst@doc.ic.ac.uk\tImperial College\n+44 589 5111 X4996\t\t\tLONDON    SW7 2BZ\n#! rnews 1060\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!aiva!ken\nFrom: ken@aiva.ed.ac.uk (Ken Johnson)\nNewsgroups: comp.edu,comp.lang.misc\nSubject: Free audio tape about Logo\nMessage-ID: <209@aiva.ed.ac.uk>\nDate: 11 Dec 87 11:33:10 GMT\nReply-To: ken@aiva.ed.ac.uk (Ken Johnson)\nFollowup-To: comp.lang.misc\nOrganization: Dept. of AI, Univ. of Edinburgh, UK\nLines: 26\nXref: alberta comp.edu:745 comp.lang.misc:887\n\n\nLogotron Limited have prepared an audio tape called \"Logo comes of age\". \n\nAlthough it is basically a plug for the Logotron product, (it contains a\nreference to the mythical \"LCSI standard\", for example) there is a lot\nof interesting chat about how Logo is actually used. \n\nPlaying time 45 minutes. \n\nFree from:\n Logotron Limited,\n Dales Brewery,\n Gwydir Street,\n CAMBRIDGE,\n England CB1 2LJ\n\n\tPhone (0223) 323656\n-- \n\nFrom Ken Johnson\t\t\t| Phone 031-225 4464 Ext 212\n     AI Applications Institute\t\t| Email k.johnson@ed.ac.uk\n     80 South Bridge\t\t\t|\n     The University\t\t\t|\n     EDINBURGH, Scotland EH1 1HN\t|\n\n\"Things will get worse before they get worse.\"\n#! rnews 2806\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!tom\nFrom: tom@cs.hw.ac.uk (Tom Kane)\nNewsgroups: comp.ai\nSubject: Probability Bounds from Bayes Theory: (A Problem).\nKeywords: Bayes Theorem, Probability, Expert Systems, Uncertainty\nMessage-ID: <1578@brahma.cs.hw.ac.uk>\nDate: 11 Dec 87 14:10:21 GMT\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 65\n\n\nI am sending this letter out to the network to ask for solutions to a\nparticular problem of Bayesian Inference. Below is the text of the\nproblem, and at the end is the mathematical statement of the information\ngiven. Simply, I am asking the questions:\n\n1) Can you find bounds on the final result. If so, how?\n2) If not, why is it not possible to do so? \n   What is missing in the specification of the problem?\n3) If you get nowhere with this problem, would you be able to solve it\n   if you were given the information: p(pv|t or l)=0.9?\n\nI am interested in the problem of providing probability bounds for events\nspecified in a Bayesian setting when not all the necessary conditional \nprobabilities are provided in setting up the problem. \n\nPROBLEM\n~~~~~~~\n(A problem relevant to the handling of Uncertainty in Expert Systems.)\nWe want to know the probability of a patient having both lung cancer and\ntuberculosis based on the fact that this person has had a positive reading\nin a chest X-ray. We are given the following pieces of information:\n\n1. The probability that a person with lung cancer will have a positive\n   chest X-ray is 0.9.\n\n2. The probability that a person with tuberculosis will have a positive\n   chest X-ray is 0.95.\n\n3. The probability that a person with neither lung cancer nor tuberculosis\n   will have a positive chest X-ray is 0.07.\n\n4. In the town of interest, 4 percent of the population have lung cancer,\n   and three percent have tuberculosis.\n\nEVENTS\n~~~~~~\nl = lung cancer;       t = tuberculosis;           pv = positive chest X-ray\n\nSETUP\n~~~~~\nIn the statement of the problem below:-\n\n~l means 'not l'.\n~l, ~t means 'not l and not t'.\nt or l means 't or l'\nwhere 'not', 'and' , and 'or' are logical operators.\nso that: p(~l, ~t) means probability( not l and not t).\nAlso,\np(pv|l) means the conditional probability of event pv, given event l.\nPRIORS\n~~~~~~\np(l) = 0.04;           p(t) = 0.03;                p(~l, ~t) = 0.95\nCONDITIONALS\n~~~~~~~~~~~~\np(pv|l) = 0.9;         p(pv|t) = 0.95;             p(pv| ~t,~l) = 0.07\n\n(You are not given p(pv| t or l) )\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nPlease mail all solutions or comments to me, and I will let interested parties \nknow what the results are. \n(I will specially treasure attempts which don't use independence assumptions.)\nThanks in advance to anyone who will spend time on this problem...\nRegards,\nTom Kane.\n#! rnews 3109\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!adrian\nFrom: adrian@cs.hw.ac.uk (Adrian Hurt)\nNewsgroups: sci.space\nSubject: Re: SPACE Digest V8 #68\nSummary: First submarines\nMessage-ID: <1580@brahma.cs.hw.ac.uk>\nDate: 11 Dec 87 15:43:08 GMT\nReferences: <OTA@ANGBAND.S1.GOV> <8712091350.AA00806@angband.s1.gov>\nOrganization: Computer Science, Heriot-Watt U., Scotland\nLines: 52\n\nIn article <8712091350.AA00806@angband.s1.gov>, ESC1361@DDAESA10.BITNET (Rupert Williams) writes:\n> \n>\t\t\t\t\t\tIn fact the British must have\n> been the most war-like nation in the world, fighting with more countries than\n> anyone I can think off. Is this the reason why the English language is so\n> popular ( hello America!! )???!!!! \n\nI assume you refer to the British Empire - prior to that, Britain (and before\nthe rest joined/were conquered by it, England) fought mostly against either\nFrance, Spain or both at once. The wide domain of the English language is\ndirectly due to the Empire, just as the wide use of Spanish throughout South\nand Central America is due to the Spanish Empire.\n\n>    I think also that ALL countries train their armies in ice and snow??!!\n\nIncluding the Arabs? :-)\n\n>    As for the Submarine....well I dont know about that, I thought that was an\n> English invention too, like the Tank and the Jet-plane??! Maybe I'm wrong??!\n\nThere are a number of ancient submarine designs, including one which was a\nrowing boat with a watertight cover! The first practical submarine was (I\nbelieve) designed by a Mr. Holland, resident of Ireland, for use against the\nRoyal Navy. The Royal Navy took over the design, but regarded such concealed\nwarfare as ungentlemanly, and didn't make much use of them until Germany\nshowed the way.\n\nThe jet plane was invented practically at the same time by Britain, Germany\nand the U.S.A. Germany had the first flying jet aircraft, followed closely by\nBritain. Britain would have had a jet fighter not long after the Battle of\nBritain except for government intervention. Fortunately, Hitler was equally\nstupid. The Nazis believed they would win the war in a couple of months, and\ngave little interest to projects which would bear no short term military\nresults. When they did get the world's first jet fighter (the Me262) it was\npretty devastating, albeit rare, until Hitler decided that it would make a\ngreat fighter-bomber. Two bombs were fitted under the nose, at the expense\nof two cannon and much speed and agility. Fortunately, Nazi policy was \"if\nit doesn't work, stomp on whoever says so.\" The first American jet was too\nlate for WW2, and the first Russian jet had a captured German engine.\n\n>    As for the NASA/Space shuttle saga, the sooner they pull their fingers out\n> the better. Arianne is having a field day over this one.\n\nNow, for those who say \"Why is this in sci.space?\", read the above and apply\nthe lessons of history to the shuttle, Hermes, HOTOL, or whatever craft your\ncountry should be sponsoring.\n\n-- \n \"Keyboard? Tis quaint!\" - M. Scott\n\n Adrian Hurt\t\t\t     |\tJANET:  adrian@uk.ac.hw.cs\n UUCP: ..!ukc!cs.hw.ac.uk!adrian     |  ARPA:   adrian@cs.hw.ac.uk\n#! rnews 1128\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: sci.space\nSubject: Re: Remote Sensing Fascism\nMessage-ID: <1583@brahma.cs.hw.ac.uk>\nDate: 11 Dec 87 17:36:36 GMT\nReferences: <566084060.amon@H.GP.CS.CMU.EDU>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 18\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n[ignore the above email address and use my signature]\n\n>'Our' (I use the term VERY loosely since I'm not really sure which side\n>they are on) people have obviously learned how to lie about the\n>existance of things which are common knowledge\n>PS: Is it now appropriate to address members of the DOD and the various spook\n>    agencies as Comrade?\n\nHow about Right Honourable? (or have the Zircon and Spycatcher affairs not\nmade the news over there?)\n\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1825\nPath: alberta!mnetor!uunet!mcvax!ukc!its63b!hwcs!jack\nFrom: jack@cs.hw.ac.uk (Jack Campin)\nNewsgroups: rec.arts.sf-lovers\nSubject: Re: Houston SF Opera\nMessage-ID: <1584@brahma.cs.hw.ac.uk>\nDate: 11 Dec 87 19:10:14 GMT\nReferences: <8168@ism780c.UUCP>\nReply-To: jack@cs.glasgow.ac.uk (Jack Campin)\nOrganization: PISA Project, Glesga Yoonie\nLines: 32\nSummary:\n\nExpires:\n\nSender:\n\nFollowup-To:\n\n\n\n[ignore the above email address and use my signature]\n\nIn article <8168@ism780c.UUCP> jimh@ism780c.UUCP (Jim Hori) writes:\n>\n>I expected somebody to respond by now to the\n>question about a SF opera being co-written\n>by Philip Glass and somebody named Lessing,\n>\n>Any other news on this opera?\n\nIt's \"the Making Of The Representative From Planet 8\", if I remember right.\nThis is from the announcements to a Radio 3 broadcast of Glass's new orchestral\npiece \"The Light\" - a tone poem about the Michelson-Morley experiments.\n\nIncidentally, it's not the first SF opera. I heard a broadcast in New Zealand\nof a Swedish opera called \"Aniara\", based on an epic poem about a colonizer\nspaceship on its way to oblivion. I can remember neither the poet's nor the\ncomposer's name.\n\nI've only read the first of Lessing's series and didn't like it much. I felt I\nwas being preached at (Lessing is a Sufi - I don't know whether her having\nbeen born in Iran has anything to with that - and it shows in her more recent\nwriting). OK, the content of the sermon may not have been as obnoxious as\nHeinlein, Tolkien or Pournelle, but it was still gratuitous in literary terms.\n\n\n-- \nARPA: jack%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk\nJANET:jack@uk.ac.glasgow.cs       USENET: ...mcvax!ukc!cs.glasgow.ac.uk!jack\nMail: Jack Campin, Computing Science Department, University of Glasgow,\n      17 Lilybank Gardens, Glasgow G12 8QQ, Scotland (041 339 8855 x 6045)\n#! rnews 1184\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!stc!root44!cdwf\nFrom: cdwf@root.co.uk (Clive D.W. Feather)\nNewsgroups: rec.arts.sf-lovers\nSubject: Asimov, UFO, and others\nSummary: Where you can find them\nMessage-ID: <497@root44.co.uk>\nDate: 11 Dec 87 08:48:49 GMT\nReply-To: cdwf@root44.UUCP (Clive D.W. Feather)\nOrganization: Root Computers Ltd, London, England\nLines: 17\n\nReaders in the UK, and those elsewhere with UK contacts, may like to know...\n\n(1) W.H.Smiths are stocking Asimov's \"Fantastic Voyage II\" in hardback,\nUKL10.95.\n\n(2) An organisation called Channel 5 Video, available at least in W.H.Smiths\nand Woolworths, produces tapes of UFO, Thunderbirds, Captain Scarlet (under the\ntitle \"Captain Scarlet and the Mysterons\", Stingray (yuk), and, of course,\nthe Prisoner. Each tape that I have seen contains two episodes of the\nappropriate program. All cost less than UKL10.\nWhat proportion of the total output of these programmes is available I can't\nsay, except for the Prisoner (100%).\n\nWarning for foreign readers:\nThese tapes are VHS-PAL. According to \"Which?\" they work in Australia,\nNew Zealand, Europe except France, South Africa, and the Middle East, but not\nNorth America.\n#! rnews 1077\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!stc!root44!jgh\nFrom: jgh@root.co.uk (Jeremy G Harris)\nNewsgroups: comp.protocols.tcp-ip\nSubject: Subnetting questions\nKeywords: subnet ethernet\nMessage-ID: <498@root44.co.uk>\nDate: 11 Dec 87 10:25:23 GMT\nOrganization: Root Computers Ltd., London, England\nLines: 27\n\nA whole bunch of questions:\n\n\nDoes anybody run multiple subnets on a single Ethernet?\n\n    If so, do you use subnet broadcasts or net broadcasts?\n    Do you find it worthwhile to use ethernet multicast for\n    subnet broadcasts? How do you assign the multicast addresses?\n    For what purposes do you still use net broadcast?\n\n    Should redirects be provided by an inter-subnet gateway,\n    when both subnets are on the same Ethernet?\n\n\nWhat are the semantics of 'ICMP redirect to net' in a subnettted environment?\n\n\nDoes anybody run multiple classes of subnet on a single net?\n\n    Does the mechanism proposed in rfc950 ( ICMP broadcasts to\n    discover the subnet mask ) still work? Do you use it?\n\n\nThanks for your time\n    Jeremy\n-- \nJeremy Harris\t\t\tjgh@root.co.uk\n#! rnews 1006\nPath: alberta!mnetor!uunet!mcvax!ukc!stl!stc!root44!hrc63!nwh\nFrom: nwh@hrc63.co.uk (Nigel Holder Marconi)\nNewsgroups: comp.unix.wizards\nSubject: Re: /dev/swap - possibility of it being a ramdisk\nSummary: depends on your system ?\nKeywords: /dev/swap\nMessage-ID: <476@hrc63.co.uk>\nDate: 11 Dec 87 10:09:05 GMT\nReferences: <712@qetzal.UUCP> <16869@topaz.rutgers.edu>\nOrganization: GEC Hirst Research Centre, Wembley, England.\nLines: 12\n\n\nI have just added some extra memory to a Sun 3.  Unfortunately, it did\nnot increase the usable amount of virtual memory.  I have been informed\n(not by Sun I hasten to add), that 4.x will only allocate memory up to\nthe disk swap space size.  Adding more memory will speed things up but will\nnot increase your total usable virtual memory size (this is achieved by\nincreasing the swap space).  I was also informed that system V does not\ninforce this type of restriction.\n\n\nNigel Holder\t\t\tUK JANET:       yf21@uk.co.gec-mrc.u\n\t\t\t\tARPA:           yf21%u.gec-mrc.co.uk@ucl-cs\n#! rnews 781\nPath: alberta!mnetor!uunet!mcvax!enea!luth!jem\nFrom: jem@sm.luth.se (Jan Erik Mostr|m)\nNewsgroups: comp.sys.mac,comp.sys.mac.hypercard\nSubject: Hypercard/CD-ROM\nMessage-ID: <902@luth.luth.se>\nDate: 11 Dec 87 11:31:13 GMT\nReply-To: Jan Erik Mostr|m <jem@luth.luth.se>\nOrganization: University of Lulea, Sweden\nLines: 8\nXref: alberta comp.sys.mac:10017 comp.sys.mac.hypercard:200\nUUCP-Path: {uunet,mcvax}!enea!luth.luth.se!jem\n\n\n\n\nIs there someone out there who has experience with Hypercard and CD-ROM.\nI would appreciate any information (and especially about Mac II/CD-ROM).\n-- \nJan Erik Mostrom     | {uunet,mcvax}!enea!luth!jem       | Mors certa,\nUniversity of Lulea  | jem@sm.luth.se                    | vita incerta\nSweden               | jem@luth.UUCP                     |\n#! rnews 1535\nPath: alberta!mnetor!uunet!mcvax!enea!diab!pf\nFrom: pf@diab.UUCP (Per Fogelstrom)\nNewsgroups: comp.arch\nSubject: Re: Why is SPARC so slow?\nSummary: Yet another \"super processor\".\nMessage-ID: <344@ma.diab.UUCP>\nDate: 11 Dec 87 13:59:12 GMT\nReferences: <1078@quacky.UUCP> <8809@sgi.SGI.COM> <6964@apple.UUCP>\nReply-To: pf@ma.UUCP (Per Fogelstrom)\nOrganization: Diab Data AB, Taby, Sweden\nLines: 16\n\nWell, the history repeats once again. A new RISC chip is launched and peopels\nexpectations reaches new \"high scores\". A few years ago there was another risc\nchip set brougth to the market, called the Clipper. This processors performence\nwas climed to sweep all competitors off the sceene. Often compared to the\nDEC 8x00 computers. For this chip set the picture has cleared now. The perfor-\nmence range is not much more than can be achived with a 16-20 Mhz 68020. The\nmost i have seen of the 33Mhz versions is one running at room temprature.\nIntergraph is one of the companys who is still using the Clipper (They recently\nbought the rights for the chip set from NS/Fairchild) . From what i recall they\nthrow out the NS32032 for the Clipper. Well they could have had 2-3 times the\nclipper performance with the NS32532 today. And they called the buy a bargin !\nIt's not suprising that the MIPS 2000 gives most power/Mhz, The architecture has\nevolved during many years, without a hard pressure from the marketing such as\n'We must have it NOW!!!'. (John Mashey mayby has another opinion, only my guess)\n\nSO: Why is everybody so suprised ????!\n#! rnews 1169\nPath: alberta!mnetor!uunet!mcvax!mhres!jv\nFrom: jv@mhres.mh.nl (Johan Vromans)\nNewsgroups: comp.unix.questions\nSubject: Re: Finding Files\nSummary: looking everywhere\nMessage-ID: <1503@mhres.mh.nl>\nDate: 12 Dec 87 16:08:12 GMT\nReferences: <205700003@prism> <4441@ihlpg.ATT.COM>\nOrganization: Multihouse N.V., The Netherlands\nLines: 21\n\nIn article <205700003@prism> billc@prism.UUCP writes:\n>\n>\tRight now, to find a file somewhere under my current directory,\n>\tI use the following alias:\n>\n>\t    alias\twhere\t\"find \\$cwd -name \\!* -exec echo {} \\;\"\n> .. etc ..\n\nOn our systems, a small cron script executes every night the following\ncommand:\n\n\tfind / -print > /dirfile\n\nFinding a file somewhere can be done by grepping in the /dirfile.\nOf course, the contents of /dirfile are not really up-to-date, but this is\njust a minor drawback. \"find\" on the whole system (including mounted disks)\ntakes more than an hour, a grep in /dirfile much less than a minute.\n-- \nJohan Vromans                              | jv@mh.nl via European backbone\nMultihouse N.V., Gouda, the Netherlands    | uucp: ..{uunet!}mcvax!mh.nl!jv\n\"It is better to light a candle than to curse the darkness\"\n#! rnews 904\nPath: alberta!mnetor!uunet!mcvax!mhres!jv\nFrom: jv@mhres.mh.nl (Johan Vromans)\nNewsgroups: comp.os.vms\nSubject: Re: Are VMS and VAX synonymous?\nSummary: NO\nMessage-ID: <1504@mhres.mh.nl>\nDate: 12 Dec 87 16:55:05 GMT\nReferences: <8712111910.AA18210@ucbvax.Berkeley.EDU>\nOrganization: Multihouse N.V., The Netherlands\nLines: 11\n\nIn article <8712111910.AA18210@ucbvax.Berkeley.EDU> \"ERI::SMITH\" <smith%eri.decnet@mghccc.harvard.edu> writes:\n>But someone who thinks VAX and VMS are synonymous\n>MAY POSSIBLY also be expressing a philosophical stance.\n\nThe only thing you can do between \"#ifdef vax\" and its corresponding \"#endif\"\nis conclude that you are running on a big-endian machine ....\n\n-- \nJohan Vromans                              | jv@mh.nl via European backbone\nMultihouse N.V., Gouda, the Netherlands    | uucp: ..{uunet!}mcvax!mh.nl!jv\n\"It is better to light a candle than to curse the darkness\"\n#! rnews 691\nPath: alberta!mnetor!uunet!mcvax!enea!tut!jh\nFrom: jh@tut.fi (Juha Hein{nen)\nNewsgroups: comp.lang.scheme\nSubject: Re: Request for MacScheme source for SCOOPS\nMessage-ID: <2108@korppi.tut.fi>\nDate: 12 Dec 87 07:32:39 GMT\nReferences: <8712101554.AA15940@ucbvax.Berkeley.EDU>\nReply-To: jh@korppi.UUCP (Juha Hein{nen)\nOrganization: Tampere University of Technology, Finland\nLines: 10\n\nMacScheme doesn't have enviroments (atleast my version doesn't).  It\nwould be straightforward to port SCOOPS if somebody first provides\nenvironments.  The hacks provided with MacScheme distribution are not\nenough.\n\n-- \n\tJuha Heinanen\n\tTampere Univ. of Technology\n\tFinland\n\tjh@tut.fi (Internet), tut!jh (UUCP)\n#! rnews 643\nPath: alberta!mnetor!uunet!mcvax!enea!diab!pf\nFrom: pf@diab.UUCP (Per Fogelstrom)\nNewsgroups: comp.arch\nSubject: Re: Zilog Z320 32-bit chip\nKeywords: 80,000 vaporware model\nMessage-ID: <345@ma.diab.UUCP>\nDate: 12 Dec 87 11:15:23 GMT\nReferences: <1911@ho95e.ATT.COM> <9071@utzoo.UUCP> <3521@aw.sei.cmu.edu> <485@PT.CS.CMU.EDU>\nReply-To: pf@ma.UUCP (Per Fogelstrom)\nOrganization: Diab Data AB, Taby, Sweden\nLines: 3\n\nThe Z80,000 was put on market just about 8 months ago. It newer reached the\ntarget specification (e.g. clock speed) and the performence was not impressive.\nIt has some nice things, but as someone pointed out, to late ..........\n#! rnews 884\nPath: alberta!mnetor!uunet!mcvax!diku!daimi!erja\nFrom: erja@daimi.UUCP (Erik Jacobsen)\nNewsgroups: comp.lang.modula2\nSubject: Re: Modula II on IBM PC with HALO graphics\nKeywords: Modula IBM HALO graphics\nMessage-ID: <1253@daimi.UUCP>\nDate: 12 Dec 87 13:13:50 GMT\nReferences: <17237@glacier.STANFORD.EDU>\nReply-To: erja@daimi.UUCP (Erik Jacobsen)\nOrganization: DAIMI: Computer Science Department, Aarhus University, Denmark\nLines: 10\n\njbn@glacier.STANFORD.EDU (John B. Nagle) asks in <17237@glacier.STANFORD.EDU>\n> Some questions on Logitec Modula II:\n> \n> 1.  Are subranges assigned space appropriately?  In particular,\n> does 0..255 occupy only one byte?  \n\nNo, subranges occupy the same amount of space as the type they are\na subrange of. E.g. 0..255 will occupy two bytes. You may use a\nCHAR or a BYTE, and convert to and from CARDINAL everytime you need\nto do some caluculations.\n#! rnews 869\nPath: alberta!mnetor!uunet!mcvax!unido!tub!stx\nFrom: stx@tub.UUCP (Stefan Taxhet)\nNewsgroups: comp.text,comp.sources.wanted\nSubject: MS-WORD to Q-ONE\nKeywords: MS-WORD Q-ONE DCA\nMessage-ID: <319@tub.UUCP>\nDate: 11 Dec 87 18:23:35 GMT\nOrganization: Technical University of Berlin, Germany\nLines: 19\nXref: alberta comp.text:1346 comp.sources.wanted:2722\n\n\nWe're looking for a document conversion program.\nIt should translate MS-Word- to Q-ONE-documents.\n\nQ-ONE offers conversions to several formats as:\nFortune:Word, Wang, IBM's DCA (RFT,FFT)\nTherefor  programs to interchange documents between\nMS-Word and these format would also help us.\n\nThanks in advance\n\nStefan Taxhet,\nCommunications and Operating Systems Research Group\nTechnical University of Berlin\n\nUUCP: ...!pyramid!tub!stx (From the US)\n      ...!mcvax!unido!tub!stx (From Europe)\n\nBITNET: stx@db0tui6.BITNET\n#! rnews 1235\nPath: alberta!mnetor!uunet!mcvax!unido!rmi!kkaempf\nFrom: kkaempf@rmi.UUCP (Klaus Kaempf)\nNewsgroups: comp.sys.amiga\nSubject: Breaking the 54MB limit on HardDisks\nKeywords: BitMap, Blocksize, filehandler.h\nMessage-ID: <821@rmi.UUCP>\nDate: 12 Dec 87 12:19:32 GMT\nReply-To: kkaempf@rmi.UUCP (Klaus Kaempf)\nOrganization: RMI Net, Aachen, W.Germany\nLines: 19\n\n\n\nWell, maybe that i've overlooked something really important, but i don't\nsee the 54MB limit with the AmigaDOS.\nAbout a yaer ago, when there was no mount command, somebody from CATS\nposted a sample device driver that mounted itself. It set up a device\nstructure which described the layout of the device. This structure is\nnow documented in dos/filehandler.h. One field in this structure holds\nthe number of longwords per block of this device. This is always set\nto 128, giving 512 Bytes per Block.\nNow, if i set this to 256 (1024 Bytes per Block), i should be able to\nincrease the disk limit to 108MB.\nApparently, AmigaDOS supports larger blocksizes. Just have a look into\nthe AmigaDOS Manual from Bantam. All block-layouts are described relative\nto a 'SIZE', nowhere is said that SIZE is fixed to 128 !\n\nSo where is the problem ??? (Please, send no flames, only facts !)\n\nKlaus\n#! rnews 2545\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: Getting rid of _cleanup (finally)\nMessage-ID: <1783@botter.cs.vu.nl>\nDate: 13 Dec 87 11:56:59 GMT\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 97\n\nThere was a lot of discussion about how to get rid of my calls to _cleanup\nearlier.  Here is the solution that I finally adopted.    The following commands\nshould do the job.\n  cc -c -LIB exit.c putc.c\n  ar r /usr/lib/libc.a exit.c putc.c\n  ar x /usr/lib/libc.a cleanup.s\n  ar d /usr/lib/libc.a cleanup.s\n  ar bfork.s /usr/lib/libc.a cleanup.s\n\nThis requires the new archiver posted a while back (for the b option).\nIt also assumes that putting cleanup before fork.s will include cleanup.s\nafter exit.s and putc.s (check this).\n\nAndy Tanenbaum (ast@cs.vu.nl)\n\n\n: This is a shar archive.  Extract with sh, not csh.\n: This archive ends with exit, so do not worry about trailing junk.\n: --------------------------- cut here --------------------------\nPATH=/bin:/usr/bin\necho Extracting \\e\\x\\i\\t\\.\\c\nsed 's/^X//' > \\e\\x\\i\\t\\.\\c << '+ END-OF-FILE '\\e\\x\\i\\t\\.\\c\nX#include \"../include/lib.h\"\nX\nXPUBLIC int (*__cleanup)();\nX\nXPUBLIC int exit(status)\nXint status;\nX{\nX  if (__cleanup) (*__cleanup)();\nX  return callm1(MM, EXIT, status, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);\nX}\n+ END-OF-FILE exit.c\nchmod 'u=rw,g=r,o=r' \\e\\x\\i\\t\\.\\c\nset `sum \\e\\x\\i\\t\\.\\c`\nsum=$1\ncase $sum in\n11315)\t:;;\n*)\techo 'Bad sum in '\\e\\x\\i\\t\\.\\c >&2\nesac\necho Extracting \\p\\u\\t\\c\\.\\c\nsed 's/^X//' > \\p\\u\\t\\c\\.\\c << '+ END-OF-FILE '\\p\\u\\t\\c\\.\\c\nX#include \"../include/stdio.h\"\nX\nXextern int (*__cleanup)();\nXextern int _cleanup();\nX\nXputc(ch, iop)\nXchar ch;\nXFILE *iop;\nX{\nX\tint n,\nX\tdidwrite = 0;\nX\nX\tif (testflag(iop, (_ERR | _EOF)))\nX\t\treturn (EOF); \nX\nX\tif ( !testflag(iop,WRITEMODE))\nX\t\treturn(EOF);\nX\nX\tif ( testflag(iop,UNBUFF)){\nX\t\tn = write(iop->_fd,&ch,1);\nX\t\tiop->_count = 1;\nX\t\tdidwrite++;\nX\t}\nX\telse{\nX\t\t__cleanup = _cleanup;\nX\t\t*iop->_ptr++ = ch;\nX\t\tif ((++iop->_count) >= BUFSIZ && !testflag(iop,STRINGS) ){\nX\t\t\tn = write(iop->_fd,iop->_buf,iop->_count);\nX\t\t\tiop->_ptr = iop->_buf;\nX\t\t\tdidwrite++;\nX\t\t}\nX\t}\nX\nX\tif (didwrite){\nX\t\tif (n<=0 || iop->_count != n){\nX\t\t\tif (n < 0)\nX\t\t\t\tiop->_flags |= _ERR;\nX\t\t\telse\nX\t\t\t\tiop->_flags |= _EOF;\nX\t\t\treturn (EOF);\nX\t\t}\nX\t\tiop->_count=0;\nX\t}\nX\treturn(ch & CMASK);\nX}\nX\n+ END-OF-FILE putc.c\nchmod 'u=rw,g=r,o=r' \\p\\u\\t\\c\\.\\c\nset `sum \\p\\u\\t\\c\\.\\c`\nsum=$1\ncase $sum in\n49878)\t:;;\n*)\techo 'Bad sum in '\\p\\u\\t\\c\\.\\c >&2\nesac\nexit 0\n#! rnews 1120\nPath: alberta!mnetor!uunet!husc6!mit-eddie!uw-beaver!cornell!svax!beck\nFrom: beck@svax.cs.cornell.edu (Micah Beck)\nNewsgroups: comp.windows.x\nSubject: Document previewing using Xps\nMessage-ID: <1898@svax.cs.cornell.edu>\nDate: 14 Dec 87 13:25:54 GMT\nReply-To: beck@svax.cs.cornell.edu (Micah Beck)\nDistribution: comp\nOrganization: Cornell Univ. CS Dept, Ithaca NY\nLines: 18\n\nIn article <6224@jade.BERKELEY.EDU> shipley@web1d.berkeley.edu () writes\non the subject of troff previewing under X:\n\n>The other thing to try is some version of TROFF which can speak PostScript(tm)\n>which you can then feed through one of the several Xps programs floating\n>around -- these are PostScript(tm) interpreter/previewers for Xwindows.\n\nI've not been very successful in getting Goswell's Xps to preview documents.\nThe Postscript file generated from TeX DVI files by dvi2ps and from Ditroff\nfiles by the Transcript psdit program both cause it to choke, although in\ndifferent ways.\n\nIs anyone using Xps successfully for TeX or Ditroff previewing?  Is there some\ntrick?\n\nMicah Beck\nCornell Dept of Computer Science\nbeck@svax.cs.cornell.edu\n#! rnews 1332\nPath: alberta!mnetor!uunet!mcvax!botter!ast\nFrom: ast@cs.vu.nl (Andy Tanenbaum)\nNewsgroups: comp.os.minix\nSubject: Re: Hard disk partitions?\nMessage-ID: <1784@botter.cs.vu.nl>\nDate: 13 Dec 87 12:13:15 GMT\nReferences: <5500001@ucf-cs.ucf.edu>\nReply-To: ast@cs.vu.nl (Andy Tanenbaum)\nOrganization: VU Informatica, Amsterdam\nLines: 21\n\nIn article <5500001@ucf-cs.ucf.edu> tony@ucf-cs.ucf.edu writes:\n>If partition 1 is set up for DOS and 2 for Minix, with #2 mounted under\n>/usr, Minix crashes unpredictably.  \n\nOne thing to remember is that the partition size for partition 1 is one\nsmaller than for partition 2.\n\nAnother possibility is that the MINIX fdisk and the DOS fdisk don't agree\non the meaning of the partition table.  If everyone would create their\npartitions from lowest cylinder to highest there would be no ambiguity.\nHowever, if the order in the partition table is different from the cylinder\norder, there are at least three interpretations.\n  1. Table slot 1 is partition 1\n  2. Innermost cylinder is partition 1\n  3. Outermost cylinder is partition 1\nI believe that the combination of MINIX, DOS, XENIX and Microport together\nexhaust the entire list of possibilities.  I don'know if this is related\nto your problem (which I otherwise can't understand), but it is worth \nkeeping in mind.\n\nAndy Tanenbaum (ast@cs.vu.nl)\n#! rnews 873\nPath: alberta!mnetor!uunet!mcvax!lambert\nFrom: lambert@cwi.nl (Lambert Meertens)\nNewsgroups: sci.math\nSubject: Re: Fixed Points\nMessage-ID: <146@piring.cwi.nl>\nDate: 13 Dec 87 12:09:54 GMT\nReferences: <2269@ihuxv.ATT.COM>\nOrganization: CWI, Amsterdam\nLines: 14\n\nIn article <2269@ihuxv.ATT.COM> eklhad@ihuxv.ATT.COM (K. A. Dahlke) writes:\n) If a continuous function maps the unit square into itself, must it have a\n) fixed point? [...]\n) I seem to remember there is some theorem in topology,\n) without resorting to snakes, that says there is always a fixed point\n) whenever a closed region in a metric space is continuously mapped into itself.\n\nBrouwer's Fixed Point Theorem states that a continuous mapping of an n-cube\ninto itself has a fixed point.  This extends, obviously, to any region\nhomeomorphic to an n-cube.\n\n-- \n\nLambert Meertens, CWI, Amsterdam; lambert@cwi.nl\n#! rnews 1075\nPath: alberta!mnetor!uunet!mcvax!unido!rmi!zentrale\nFrom: zentrale@rmi.UUCP (RMI Net)\nNewsgroups: rec.ham-radio\nSubject: Re: My PC generates RFI\nMessage-ID: <822@rmi.UUCP>\nDate: 13 Dec 87 10:03:45 GMT\nReferences: <12354296992.20.QUALCOMM@A.ISI.EDU>\nReply-To: dl3no@rmi.UUCP (Rupert Mohr)\nOrganization: RMI Net, Aachen, W.Germany\nLines: 21\n\nIn article <12354296992.20.QUALCOMM@A.ISI.EDU> QUALCOMM@A.ISI.EDU (Franklin Antonio) writes:\n: >  I'd like to know of some ways to reduce interference to my...\n: \n: All PCs generate RFI to some degree.  In general, the \"clones\" are worse\n: than the brand name \"IBM\", \"COMPAQ\", etc.  The Macintosh is relatively\n: quiet.\n: \n\nIn general: I would not believe that... (But it may be, that some\nIBM's are as quiet as a clone...)\n\nWe have a good mixture of various PCs here...\n\nRegarding my recent posting on RFI of my PK-232:\nThe PK-232 was innocent. It was the old power supply which interfered\nexactly on 80m and 40m with S9 and 20m with S6...\n\n-rm\n\nP.S. nevertheless: PC's nowadays are much more quiet than those times\nof TRS-80 (sigh).\n#! rnews 1629\nPath: alberta!mnetor!uunet!mcvax!unido!rmi!zentrale\nFrom: zentrale@rmi.UUCP (RMI Net)\nNewsgroups: rec.ham-radio\nSubject: Re: some SWL questions\nMessage-ID: <823@rmi.UUCP>\nDate: 13 Dec 87 10:18:23 GMT\nReferences: <38c9774f.44e6@apollo.uucp> <871201110223.1.ED@BLACK-BIRD.SCRC.Symbolics.COM>\nReply-To: dl3no@rmi.UUCP (Rupert Mohr)\nOrganization: RMI Net, Aachen, W.Germany\nLines: 38\n\nIn article <871201110223.1.ED@BLACK-BIRD.SCRC.Symbolics.COM> Ed@MEAD.SCRC.SYMBOLICS.COM (Ed Schwalenberg) writes:\n: \n:     Date: 30 Nov 87 15:30:00 GMT\n:     From: apollo!nelson_p%apollo.uucp@eddie.mit.edu\n: \n:        Is there a detailed single-source of info on what I might \n:        hear as I tune around the bands?   The much vaunted World\n:        Radio and TV Handbook just covers broadcasting, which I\n:        have little interest in.\n: \n: The second source is the Klingenfuss Guide to Utility Stations.\n: This is harder to come by, but is advertised in RDI.\n\nI just got the 6th edition (1988), which is VERY good. You can\nget it directly :\n\nKlingenfuss, Guide to Utility Stations, 6th Edition\n\nKlningenfuss Publications\nHagenloher Str. 14\nD-7400 Tuebingen\nFed.Rep.Germany\nTel. (+41) 7071 62830\n\nPrice: DM 60  (abt. $ 35) maybe plus handling.\nThey are very fast! I received it two days after ordering by telephone.\nThey also have an quarterly update Service.\n\nYou find a complete listing sorted by frequency an different listings\nsorted by different services:\npress by time,\nfax  alphebetically with time schedule\n\naddresses, codes, commercial call signs, telegram formats etc.\n\nALL in English, 500 pages with correct entries......\n\nRupert\n#! rnews 1503\nPath: alberta!mnetor!uunet!husc6!cmcl2!rutgers!orstcs!mist!koff\nFrom: koff@mist.cs.orst.edu (Caroline N. Koff)\nNewsgroups: rec.arts.startrek\nSubject: Troi's outfit\nMessage-ID: <1501@orstcs.CS.ORST.EDU>\nDate: 14 Dec 87 13:35:02 GMT\nReferences: <1008@percival.UUCP> <275@hi3.aca.mcc.com.UUCP> <2032@charon.unm.edu> <2432@homxc.UUCP> <1987Dec12.230124.16416@gpu.utcs.toronto.edu> <2216@nicmad.UUCP>\nSender: netnews@orstcs.CS.ORST.EDU\nReply-To: koff@mist.UUCP (Caroline N. Koff)\nDistribution: na\nOrganization: Oregon State Universtiy - CS - Corvallis, Oregon\nLines: 17\n\nIf people are noticing and mentioning about Yar's breasts, why not\nalso mention about Troi's low cut outfit!!  Why does it need to be\nso low cut that it shows her crevice?  Who is she trying to impress?\nDo you think that the women in the future, working with men, will be\ntrying to dress sexy?  If so, what about the men?  Why not let them\nshow off their body too to make things even?   I think that the\nproducers, or whoever is in charge of outfits, and character development \nis making a contemporary decision regarding the issue of how people \nwill dress in the future.  I.e. he/she thinks that female will be \ntrying to attract males' attention by bringing out her femininity, \nbut not vice versa, which is the current social behavior.\nOr, perhaps the producers are just being comformists with bunch of \nother tv shows + movie producers by keeping females attractive \ntowards men...   \n\n--Caroline Koff\nkoff!cs.orst.edu@cs.net.relay\n#! rnews 1028\nPath: alberta!mnetor!uunet!mcvax!hafro!krafla!frisk\nFrom: frisk@rhi.is (Fridrik Skulason)\nNewsgroups: comp.sys.ibm.pc\nSubject: Identifying VGA\nMessage-ID: <100@krafla.rhi.is>\nDate: 13 Dec 87 11:39:28 GMT\nReply-To: frisk@rhi.UUCP (Fridrik Skulason)\nOrganization: University of Iceland (RHI)\nLines: 19\n\nIn the november issue of Dr.Dobb's Journal there is an article on how to\nidentify the video adaptor in your PC. They cover EGA,CGA,MDA,Compaq and\nHercules(mono).\n\nWhat I need is information on how to find out if a VGA (or a PGA) adaptor\nis installed.\n\nAlso - can someone tell me how to obtain the current cursor position directly\nfrom these adaptors. That is - I need the location of the 6845 registers.\n\nThe reason I can not use the INT10 function provided is that my program has\nto work with some TSR programs that access the hardware directly.\n\nThanks... \n-- \n         Fridrik Skulason          University of Iceland\n         UUCP  frisk@rhi.uucp      BIX  frisk\n\n     This line intentionally left blank ...................\n#! rnews 805\nPath: alberta!mnetor!uunet!husc6!cmcl2!rutgers!orstcs!mist!koff\nFrom: koff@mist.cs.orst.edu (Caroline N. Koff)\nNewsgroups: rec.arts.startrek\nSubject: Requesting ST:TOS episode directors and writers guide\nMessage-ID: <1502@orstcs.CS.ORST.EDU>\nDate: 14 Dec 87 13:38:05 GMT\nReferences: <1008@percival.UUCP> <275@hi3.aca.mcc.com.UUCP> <2032@charon.unm.edu> <2432@homxc.UUCP> <1987Dec12.230124.16416@gpu.utcs.toronto.edu> <2216@nicmad.UUCP>\nSender: netnews@orstcs.CS.ORST.EDU\nReply-To: koff@mist.UUCP (Caroline N. Koff)\nDistribution: na\nOrganization: Oregon State Universtiy - CS - Corvallis, Oregon\nLines: 6\n\nHas anybody ever posted or have a complete list of directors and writers\nfor each of the ST:TOS episodes?  If so, may I have a copy?  Thanks in\nadvance.\n\n--Caroline Koff\nkoff!cs.orst.edu@cs.net.relay\n#! rnews 1125\nPath: alberta!mnetor!uunet!mcvax!enea!sems!olof\nFrom: olof@sems.SE (Olof Backing)\nNewsgroups: comp.emacs\nSubject: Problems with uEmacs 3.9e and OS-9/68K C.\nMessage-ID: <207@sems.SE>\nDate: 13 Dec 87 13:00:39 GMT\nOrganization: Sems AB, Stockholm, Sweden\nLines: 32\n\nI have a problem when I try to compile the latest version of\nmicroEmacs, ie. 3.9e. The problem occurs in file 'bind.c' at lines\n602, 609 and 642, 650 respectively. \n\nIt's the following lines that causes the error:\n\n600: int (*getbind(c))()\n601:\n602: int c;\n603:\n604: {\n\nThe compiler reports an error at line 602 with 'not an argument'. The\nsame thing happens at line 642;\n\n639: int (*fncmatch(fname))()\n640:\n641:\n642: int fname;\n643:\n644: {\n\nSince my experiences aren't the very best i C sofar, I would like to\nget some hints on what to do. Maybe Kim Kempf at Microware has the\nanswer for me. Feel free to overwelm me with hints. Until then (when I\nrecieve the hints...), CU all!\n\n\n-- \n            ADDRESS: Havrevagen 14, S-175 43  Jarfalla, Sweden\n            PHONE  : (46) 758 33941, 35516 home\n            UUCP   :  ...{uunet,mcvax,ukc,unido}!enea!sems!olof \n#! rnews 1708\nPath: alberta!mnetor!uunet!husc6!yale!dwald\nFrom: dwald@yale-zoo-suned..arpa (David Wald)\nNewsgroups: rec.arts.startrek\nSubject: Re: Hide & Q notes and comments and notes and comments and....<<S\nMessage-ID: <20252@yale-celray.yale.UUCP>\nDate: 14 Dec 87 04:29:38 GMT\nReferences: <19962@yale-celray.yale.UUCP> <17300072@silver> <1838@leadsv.UUCP>\nSender: root@yale.UUCP\nReply-To: dwald@yale-zoo-suned.UUCP (David Wald)\nDistribution: na\nOrganization: Yale University Computer Science Dept, New Haven CT\nLines: 27\n\nIn article <1838@leadsv.UUCP> lilly@leadsv.UUCP (Harriette Lilly) writes:\n>\n>In article <17300072@silver>, sl131008@silver.bacs.indiana.edu writes:\n>> /* Written  7:19 pm  Dec  7, 1987 by sl131008@silver.UUCP in silver:rec.arts.startrek */\n>> /* ..ditto x 7.....\n>> /* Written  9:12 pm  Dec  6, 1987 by dwald@yale in silver:rec.arts.startrek */\n>> /* ---------- \"Re: Hide & Q notes and comments <<S\" ---------- */\n>> In article <2328@homxc.UUCP> scott@homxc.UUCP (Scott Berry) writes:\n...\n>> David Wald                                                   dwald@yale.UUCP\n...\n>> /* End of text from silver:rec.arts.startrek */\n>> /* ditto x 8\n>\n>\n>       Ummm, are you lost?...\n\nI was a bit puzzled by this too, since I didn't think my article so\nbrilliant that anyone would want to repost it eight times.  If anyone\nfinds out what happened, could they please send me mail?\n\n\nWe now return you to your regularly scheduled nonsense...\n============================================================================\nDavid Wald                                                   dwald@yale.UUCP\n\t\t\t\t\t\t      waldave@yalevmx.bitnet\n============================================================================\n#! rnews 761\nPath: alberta!mnetor!uunet!mcvax!enea!sems!olof\nFrom: olof@sems.SE (Olof Backing)\nNewsgroups: rec.games.misc\nSubject: Larn at dungeon level 10.\nMessage-ID: <208@sems.SE>\nDate: 13 Dec 87 18:51:50 GMT\nOrganization: Sems AB, Stockholm, Sweden\nLines: 12\n\nWell folks, I've reached to master warlord (lvl 17, ~550000 Exp). To\nmy great dis-something, I haven't found any ladder down to level 11.\nSomewhere back in my human brain, I recall that I've read something\nabout how to further down in the dungeon. What do I do ?!. Please give\nme a hint.\n\n\n-- \nWHOAMI : Olof Backing                               !\nWHERE  : Havrevagen 14, S-175 43  Jarfalla, Sweden  !\nPHONE  : + (46) 758 33941, 35516                    !\nUUCP   :  ...{uunet,mcvax,ukc,unido}!enea!sems!olof !\n#! rnews 1631\nPath: alberta!mnetor!uunet!husc6!yale!dwald\nFrom: dwald@yale-zoo-suned..arpa (David Wald)\nNewsgroups: rec.arts.startrek\nSubject: Re: Terralian Ship in \"Haven\"\nKeywords: ST:TNG\nMessage-ID: <20253@yale-celray.yale.UUCP>\nDate: 14 Dec 87 04:36:39 GMT\nReferences: <5243@zen.berkeley.edu> <9615@ufcsv.cis.ufl.EDU>\nSender: root@yale.UUCP\nReply-To: dwald@yale-zoo-suned.UUCP (David Wald)\nDistribution: na\nOrganization: Yale University Computer Science Dept, New Haven CT\nLines: 19\n\nIn article <9615@ufcsv.cis.ufl.EDU> jco@beach.cis.ufl.edu () writes:\n>In article <5243@zen.berkeley.edu> timlee@cory.Berkeley.EDU (Timothy J. Lee) writes:\n>>Did anyone think that the Terralian ship was pretty big for something that\n>>was built by a group of people whose technology approximated late 20th\n>>century Earth?\n>\n>It was my understanding from the show that the people of 20th century\n>earth could build a virus that could wipe out a planet.  This did NOT\n>mean that they (the Terralians) where of the 20th century tech level.\n\nThere was more to the 20th century reference than that, however.\nDr. Crusher made the point that, since they were only at the technology\nlevel of ~20th century Earth, it was easy for the disease to get out of\ncontrol and spread over the planet.  The implication was that if they\nwere more advanced the disease would not have wiped out the entire world.\n============================================================================\nDavid Wald                                                   dwald@yale.UUCP\n\t\t\t\t\t\t      waldave@yalevmx.bitnet\n============================================================================\n"
  },
  {
    "path": "testdata/calgary/paper1",
    "content": ".pn 0\n.ls1\n.EQ\ndelim $$\n.EN\n.ev1\n.ps-2\n.vs-2\n.ev\n\\&\n.sp 5\n.ps+4\n.ce\nARITHMETIC CODING FOR DATA COMPRESSION\n.ps-4\n.sp4\n.ce\nIan H. Witten, Radford M. Neal, and John G. Cleary\n.sp2\n.ce4\nDepartment of Computer Science\nThe University of Calgary\n2500 University Drive NW\nCalgary, Canada T2N 1N4\n.sp2\n.ce\nAugust, 1986, revised January 1987\n.sp 8\n.in+1i\n.ll-1i\nThe state of the art in data compression is arithmetic coding, not\nthe better-known Huffman method.\nArithmetic coding gives greater compression, is faster for adaptive models,\nand clearly separates the model from the channel encoding.\nThis paper presents a practical implementation of the technique.\n.sp 3\n.in +0.5i\n.ti -0.5i\n\\fICR Categories and subject descriptors:\\fR\n.br\nE.4 [DATA] Coding and Information Theory \\(em Data Compaction and Compression\n.br\nH.1.1 [Models and Principles] Systems and Information Theory \\(em Information Theory\n.sp\n.ti -0.5i\n\\fIGeneral terms:\\fR  algorithms, performance\n.sp\n.ti -0.5i\n\\fIAdditional key words and phrases:\\fR  arithmetic coding, Huffman coding, adaptive modeling\n.ll+1i\n.in 0\n.bp\n.sh \"Introduction\"\n.pp\nArithmetic coding is superior in most respects to the better-known Huffman\n(1952) method.\n.[\nHuffman 1952 method construction minimum-redundancy codes\n.]\nIt represents information at least as compactly, sometimes considerably more\nso.\nIts performance is optimal without the need for blocking of input data.\nIt encourages a clear separation between the model for representing data and\nthe encoding of information with respect to that model.\nIt accommodates adaptive models easily.\nIt is computationally efficient.\nYet many authors and practitioners seem unaware of the technique.\nIndeed there is a widespread belief that Huffman coding cannot be improved\nupon.\n.pp\nThis paper aims to rectify the situation by presenting an accessible\nimplementation of arithmetic coding, and detailing its performance\ncharacteristics.\nThe next section briefly reviews basic concepts of data compression and\nintroduces the model-based approach which underlies most modern techniques.\nWe then outline the idea of arithmetic coding using a simple example.\nFollowing that programs are presented for both encoding and decoding, in which\nthe model occupies a separate module so that different ones can easily be\nused.\nNext we discuss the construction of fixed and adaptive models.\nThe subsequent section details the compression efficiency and execution time\nof the programs, including the effect of different arithmetic word lengths on\ncompression efficiency.\nFinally, we outline a few applications where arithmetic coding is appropriate.\n.sh \"Data compression\"\n.pp\nTo many, data compression conjures up an assortment of \\fIad hoc\\fR\ntechniques such as converting spaces in text to tabs, creating special codes\nfor common words, or run-length coding of picture data (eg see Held, 1984).\n.[\nHeld 1984 data compression techniques applications\n.]\nThis contrasts with the more modern model-based paradigm for\ncoding, where from an \\fIinput string\\fR of symbols and a \\fImodel\\fR, an\n\\fIencoded string\\fR is produced which is (usually) a compressed version of\nthe input.\nThe decoder, which must have access to the same model,\nregenerates the exact input string from the encoded string.\nInput symbols are drawn from some well-defined set such as the ASCII or\nbinary alphabets;\nthe encoded string is a plain sequence of bits.\nThe model is a way of calculating, in any given context, the distribution of\nprobabilities for the next input symbol.\nIt must be possible for the decoder to produce exactly the same probability\ndistribution in the same context.\nCompression is achieved by transmitting the more probable symbols in fewer\nbits than the less probable ones.\n.pp\nFor example, the model may assign a predetermined probability to each symbol\nin the ASCII alphabet.\nNo context is involved.\nThese probabilities may be determined by counting frequencies in\nrepresentative samples of text to be transmitted.\nSuch a \\fIfixed\\fR model is communicated in advance to both encoder and\ndecoder, after which it is used for many messages.\n.pp\nAlternatively, the probabilities the model assigns may change as each symbol\nis transmitted, based on the symbol frequencies seen \\fIso far\\fR in this\nmessage.\nThis is an \\fIadaptive\\fR model.\nThere is no need for a representative sample of text, because each message\nis treated as an independent unit, starting from scratch.\nThe encoder's model changes with each symbol transmitted, and the decoder's\nchanges with each symbol received, in sympathy.\n.pp\nMore complex models can provide more accurate probabilistic predictions and\nhence achieve greater compression.\nFor example, several characters of previous context could condition the\nnext-symbol probability.\nSuch methods have enabled mixed-case English text to be encoded in around\n2.2\\ bit/char with two quite different kinds of model.\n(Cleary & Witten, 1984b; Cormack & Horspool, 1985).\n.[\nCleary Witten 1984 data compression\n%D 1984b\n.]\n.[\nCormack Horspool 1985 dynamic Markov\n%O April\n.]\nTechniques which do not separate modeling from coding so distinctly, like\nthat of Ziv & Lempel (1978), do not seem to show such great potential for\ncompression, although they may be appropriate when the aim is raw speed rather\nthan compression performance (Welch, 1984).\n.[\nZiv Lempel 1978 compression of individual sequences\n.]\n.[\nWelch 1984 data compression\n.]\n.pp\nThe effectiveness of any model can be measured by the \\fIentropy\\fR of the\nmessage with respect to it, usually expressed in bits/symbol.\nShannon's fundamental theorem of coding states that given messages randomly\ngenerated from a model, it is impossible to encode them into less bits\n(on average) than the entropy of that model (Shannon & Weaver, 1949).\n.[\nShannon Weaver 1949\n.]\n.pp\nA message can be coded with respect to a model using either Huffman or\narithmetic coding.\nThe former method is frequently advocated as the best possible technique for\nreducing the encoded data rate.\nBut it is not.\nGiven that each symbol in the alphabet must translate into an integral number\nof bits in the encoding, Huffman coding indeed achieves ``minimum\nredundancy''.\nIn other words, it performs optimally if all symbol probabilities are\nintegral powers of 1/2.\nBut this is not normally the case in practice;\nindeed, Huffman coding can take up to one extra bit per symbol.\nThe worst case is realized by a source in which one symbol has probability\napproaching unity.\nSymbols emanating from such a source convey negligible information on average,\nbut require at least one bit to transmit (Gallagher, 1978).\n.[\nGallagher 1978 variations on a theme by Huffman\n.]\nArithmetic coding dispenses with the restriction that each symbol translates\ninto an integral number of bits, thereby coding more efficiently.\nIt actually achieves the theoretical entropy bound to compression efficiency\nfor any source, including the one just mentioned.\n.pp\nIn general, sophisticated models expose the deficiencies of Huffman coding\nmore starkly than simple ones.\nThis is because they more often predict symbols with probabilities close to\none, the worst case for Huffman coding.\nFor example, the techniques mentioned above which code English text in\n2.2\\ bit/char both use arithmetic coding as the final step, and performance\nwould be impacted severely if Huffman coding were substituted.\nNevertheless, since our topic is coding and not modeling, the illustrations in\nthis paper all employ simple models.\nEven then, as we shall see, Huffman coding is inferior to arithmetic coding.\n.pp\nThe basic concept of arithmetic coding can be traced back to Elias in the\nearly 1960s (see Abramson, 1963, pp 61-62).\n.[\nAbramson 1963\n.]\nPractical techniques were first introduced by Rissanen (1976) and\nPasco (1976), and developed further in Rissanen (1979).\n.[\nRissanen 1976 Generalized Kraft Inequality\n.]\n.[\nPasco 1976\n.]\n.[\nRissanen 1979 number representations\n.]\n.[\nLangdon 1981 tutorial arithmetic coding\n.]\nDetails of the implementation presented here have not appeared in the\nliterature before; Rubin (1979) is closest to our approach.\n.[\nRubin 1979 arithmetic stream coding\n.]\nThe reader interested in the broader class of arithmetic codes is referred\nto Rissanen & Langdon (1979);\n.[\nRissanen Langdon 1979 Arithmetic coding\n.]\na tutorial is available in Langdon (1981).\n.[\nLangdon 1981 tutorial arithmetic coding\n.]\nDespite these publications, the method is not widely known.\nA number of recent books and papers on data compression mention it only in\npassing, or not at all.\n.sh \"The idea of arithmetic coding\"\n.pp\nIn arithmetic coding a message is represented by an\ninterval of real numbers between 0 and 1.\nAs the message becomes longer, the interval needed to represent it becomes\nsmaller, and the number of bits needed to specify that interval grows.\nSuccessive symbols of the message reduce the size of the\ninterval in accordance with the symbol probabilities generated by the\nmodel.\nThe more likely symbols reduce the range by less than the unlikely symbols,\nand hence add fewer bits to the message.\n.pp\nBefore anything is transmitted, the range for the message is the entire\ninterval [0,\\ 1)\\(dg.\n.FN\n\\(dg [0,\\ 1) denotes the half-open interval 0\\(<=\\fIx\\fR<1.\n.EF\nAs each symbol is processed, the range is narrowed to that portion of it\nallocated to the symbol.\nFor example, suppose the alphabet is {\\fIa,\\ e,\\ i,\\ o,\\ u,\\ !\\fR}, and a\nfixed model is used with probabilities shown in Table\\ 1.\nImagine transmitting the message \\fIeaii!\\fR.\nInitially, both encoder and decoder know that the range is [0,\\ 1).\nAfter seeing the first symbol, \\fIe\\fR, the encoder narrows it to\n[0.2,\\ 0.5), the range the model allocates to this symbol.\nThe second symbol, \\fIa\\fR, will narrow this new range to the first 1/5 of it,\nsince \\fIa\\fR has been allocated [0,\\ 0.2).\nThis produces [0.2,\\ 0.26) since the previous range was 0.3 units long and\n1/5 of that is 0.06.\nThe next symbol, \\fIi\\fR, is allocated [0.5,\\ 0.6), which when applied to\n[0.2,\\ 0.26) gives the smaller range [0.23,\\ 0.236).\nProceeding in this way, the encoded message builds up as follows:\n.LB\n.nf\n.ta \\w'after seeing   'u +0.5i +\\w'[0.23354, 'u\ninitially\t\t[0,\t1)\nafter seeing\t\\fIe\\fR\t[0.2,\t0.5)\n\t\\fIa\\fR\t[0.2,\t0.26)\n\t\\fIi\\fR\t[0.23,\t0.236)\n\t\\fIi\\fR\t[0.233,\t0.2336)\n\t\\fI!\\fR\t[0.23354,\t0.2336)\n.fi\n.LE\nFigure\\ 1 shows another representation of the encoding process.\nThe vertical bars with ticks represent the symbol probabilities stipulated\nby the model.\nAfter the first symbol, \\fIe\\fR, has been processed, the model is scaled\ninto the range [0.2,\\ 0.5), as shown in part (a).\nThe second symbol, \\fIa\\fR, scales it again into the range [0.2,\\ 0.26).\nBut the picture cannot be continued in this way without a magnifying glass!\nConsequently Figure\\ 1(b) shows the ranges expanded to full height at every\nstage, and marked with a scale which gives the endpoints as numbers.\n.pp\nSuppose all the decoder knows about the message is the final range,\n[0.23354,\\ 0.2336).\nIt can immediately deduce that the first character was \\fIe\\fR, since the\nrange lies entirely within the space the model of Table\\ 1 allocates for\n\\fIe\\fR.\nNow it can simulate the operation of the \\fIen\\fR\\^coder:\n.LB\n.nf\n.ta \\w'after seeing   'u +0.5i +\\w'[0.2, 'u\ninitially\t\t[0,\t1)\nafter seeing\t\\fIe\\fR\t[0.2,\t0.5)\n.fi\n.LE\nThis makes it clear that the second character of the message is \\fIa\\fR,\nsince this will produce the range\n.LB\n.nf\n.ta \\w'after seeing   'u +0.5i +\\w'[0.2, 'u\nafter seeing\t\\fIa\\fR\t[0.2,\t0.26)\n.fi\n.LE\nwhich entirely encloses the given range [0.23354,\\ 0.2336).\nProceeding like this, the decoder can identify the whole message.\n.pp\nIt is not really necessary for the decoder to know both ends of the range\nproduced by the encoder.\nInstead, a single number within the range \\(em for example, 0.23355 \\(em will\nsuffice.\n(Other numbers, like 0.23354, 0.23357, or even 0.23354321, would do just as\nwell.)  \\c\nHowever, the decoder will face the problem of detecting the end of the\nmessage, to determine when to stop decoding.\nAfter all, the single number 0.0 could represent any of \\fIa\\fR, \\fIaa\\fR,\n\\fIaaa\\fR, \\fIaaaa\\fR, ...\\ .\nTo resolve the ambiguity we ensure that each message ends with a special\nEOF symbol known to both encoder and decoder.\nFor the alphabet of Table\\ 1, \\fI!\\fR will be used to terminate messages,\nand only to terminate messages.\nWhen the decoder sees this symbol it stops decoding.\n.pp\nRelative to the fixed model of Table\\ 1, the entropy of the 5-symbol message\n\\fIeaii!\\fR is\n.LB\n$- ~ log ~ 0.3 ~ - ~ log ~ 0.2 ~ - ~ log ~ 0.1 ~ - ~ log ~ 0.1 ~ - ~ log ~ 0.1 ~~=~~ - ~ log ~ 0.00006 ~~ approx ~~ 4.22$\n.LE\n(using base 10, since the above encoding was performed in decimal).\nThis explains why it takes 5\\ decimal digits to encode the message.\nIn fact, the size of the final range is $0.2336 ~-~ 0.23354 ~~=~~ 0.00006$,\nand the entropy is the negative logarithm of this figure.\nOf course, we normally work in binary, transmitting binary digits and\nmeasuring entropy in bits.\n.pp\nFive decimal digits seems a lot to encode a message comprising four vowels!\nIt is perhaps unfortunate that our example ended up by expanding rather than\ncompressing.\nNeedless to say, however, different models will give different entropies.\nThe best single-character model of the message \\fIeaii!\\fR is the set of\nsymbol frequencies\n{\\fIe\\fR\\ (0.2),  \\fIa\\fR\\ (0.2),  \\fIi\\fR\\ (0.4),  \\fI!\\fR\\ (0.2)},\nwhich gives an entropy for \\fIeaii!\\fR of 2.89\\ decimal digits.\nUsing this model the encoding would be only 3\\ digits long.\nMoreover, as noted earlier more sophisticated models give much better\nperformance in general.\n.sh \"A program for arithmetic coding\"\n.pp\nFigure\\ 2 shows a pseudo-code fragment which summarizes the encoding and\ndecoding procedures developed in the last section.\nSymbols are numbered 1, 2, 3, ...\nThe frequency range for the $i$th symbol is from $cum_freq[i]$ to\n$cum_freq[i-1]$.\n$cum_freq[i]$ increases as $i$ decreases, and $cum_freq[0] = 1$.\n(The reason for this ``backwards'' convention is that later, $cum_freq[0]$\nwill contain a normalizing factor, and it will be convenient to have it\nbegin the array.)  \\c\nThe ``current interval'' is [$low$,\\ $high$); and for both encoding and\ndecoding this should be initialized to [0,\\ 1).\n.pp\nUnfortunately, Figure\\ 2 is overly simplistic.\nIn practice, there are several factors which complicate both encoding and\ndecoding.\n.LB\n.NP\nIncremental transmission and reception.\n.br\nThe encode algorithm as described does not transmit anything until the entire\nmessage has been encoded; neither does the decode algorithm begin decoding\nuntil it has received the complete transmission.\nIn most applications, an incremental mode of operation is necessary.\n.sp\n.NP\nThe desire to use integer arithmetic.\n.br\nThe precision required to represent the [$low$, $high$) interval grows with\nthe length of the message.\nIncremental operation will help overcome this, but the potential for overflow\nand underflow must still be examined carefully.\n.sp\n.NP\nRepresenting the model so that it can be consulted efficiently.\n.br\nThe representation used for the model should minimize the time required for\nthe decode algorithm to identify the next symbol.\nMoreover, an adaptive model should be organized to minimize the\ntime-consuming task of maintaining cumulative frequencies.\n.LE\n.pp\nFigure\\ 3 shows working code, in C, for arithmetic encoding and decoding.\nIt is considerably more detailed than the bare-bones sketch of Figure\\ 2!\nImplementations of two different models are given in Figure\\ 4;\nthe Figure\\ 3 code can use either one.\n.pp\nThe remainder of this section examines the code of Figure\\ 3 more closely,\nincluding a proof that decoding is still correct in the integer\nimplementation and a review of constraints on word lengths in the program.\n.rh \"Representing the model.\"\nImplementations of models are discussed in the next section; here we\nare concerned only with the interface to the model (lines 20-38).\nIn C, a byte is represented as an integer between 0 and 255 (call this a\n$char$).\nInternally, we represent a byte as an integer between 1 and 257 inclusive\n(call this an $index$), EOF being treated as a 257th symbol.\nIt is advantageous to sort the model into frequency order, to minimize the\nnumber of executions of the decoding loop (line 189).\nTo permit such reordering, the $char$/$index$ translation is implemented as\na pair of tables, $index_to_char[ \\| ]$ and $char_to_index[ \\| ]$.\nIn one of our models, these tables simply form the $index$ by adding 1 to the\n$char$, but another implements a more complex translation which assigns small\nindexes to frequently-used symbols.\n.pp\nThe probabilities in the model are represented as integer frequency counts,\nand cumulative counts are stored in the array $cum_freq[ \\| ]$.\nAs previously, this array is ``backwards,'' and the total frequency count \\(em\nwhich is used to normalize all frequencies \\(em appears in $cum_freq[0]$.\nCumulative counts must not exceed a predetermined maximum, $Max_frequency$,\nand the model implementation must prevent overflow by scaling appropriately.\nIt must also ensure that neighboring values in the $cum_freq[ \\| ]$ array\ndiffer by at least 1; otherwise the affected symbol could not be transmitted.\n.rh \"Incremental transmission and reception.\"\nUnlike Figure\\ 2, the program of Figure\\ 3 represents $low$ and $high$ as\nintegers.\nA special data type, $code_value$, is defined for these quantities,\ntogether with some useful constants:  \\c\n$Top_value$, representing the largest possible $code_value$, and\n$First_qtr$, $Half$, and $Third_qtr$, representing parts of the range\n(lines 6-16).\nWhereas in Figure\\ 2 the current interval is represented by\n[$low$,\\ $high$), in Figure\\ 3 it is [$low$,\\ $high$]; that is, the range now\nincludes the value of $high$.\nActually, it is more accurate (though more confusing) to say that in the\nprogram of Figure\\ 3 the interval represented is\n[$low$,\\ $high + 0.11111 ...$).\nThis is because when the bounds are scaled up to increase the precision, 0's\nare shifted into the low-order bits of $low$ but 1's are shifted into $high$.\nWhile it is possible to write the program to use a different convention,\nthis one has some advantages in simplifying the code.\n.pp\nAs the code range narrows, the top bits of $low$ and $high$ will become the\nsame.\nAny bits which are the same can be transmitted immediately, since they cannot\nbe affected by future narrowing.\nFor encoding, since we know that $low ~ <= ~ high$, this requires code like\n.LB \"nnnn\"\n.nf\n.ta \\w'nnnn'u +\\w'if (high < 'u +\\w'Half) { 'u +\\w'output_bit(1); low = 2*(low\\-Half); high = 2*(high\\-Half)+1; 'u\n.ne 4\nfor (;;) {\n\tif (high <\tHalf) {\toutput_bit(0); low = 2*low; high = 2*high+1;\t}\n\tif (low $>=$\tHalf) {\toutput_bit(1); low = 2*(low\\-Half); high = 2*(high\\-Half)+1;\t}\n}\n.fi\n.LE \"nnnn\"\nwhich ensures that, upon completion, $low ~ < ~ Half ~ <= ~ high$.\nThis can be found in lines 95-113 of $encode_symbol( \\| )$,\nalthough there are some extra complications caused by underflow possibilities\n(see next subsection).\nCare is taken care to shift 1's in at the bottom when $high$ is scaled, as\nnoted above.\n.pp\nIncremental reception is done using a number called $value$ as in Figure\\ 2,\nin which processed bits flow out the top (high-significance) end and\nnewly-received ones flow in the bottom.\n$start_decoding( \\| )$ (lines 168-176) fills $value$ with received bits initially.\nOnce $decode_symbol( \\| )$ has identified the next input symbol, it shifts out\nnow-useless high-order bits which are the same in $low$ and $high$, shifting\n$value$ by the same amount (and replacing lost bits by fresh input bits at the\nbottom end):\n.LB \"nnnn\"\n.nf\n.ta \\w'nnnn'u +\\w'if (high < 'u +\\w'Half) { 'u +\\w'value = 2*(value\\-Half)+input_bit(\\|); low = 2*(low\\-Half); high = 2*(high\\-Half)+1; 'u\n.ne 4\nfor (;;) {\n\tif (high <\tHalf) {\tvalue = 2*value+input_bit(\\|); low = 2*low; high = 2*high+1;\t}\n\tif (low $>=$\tHalf) {\tvalue = 2*(value\\-Half)+input_bit(\\|); low = 2*(low\\-Half); high = 2*(high\\-Half)+1;\t}\n}\n.fi\n.LE \"nnnn\"\n(see lines 194-213, again complicated by precautions against underflow\ndiscussed below).\n.rh \"Proof of decoding correctness.\"\nAt this point it is worth checking that the identification of the next\nsymbol by $decode_symbol( \\| )$ works properly.\nRecall from Figure\\ 2 that $decode_symbol( \\| )$ must use $value$ to find that\nsymbol which, when encoded, reduces the range to one that still includes\n$value$.\nLines 186-188 in $decode_symbol( \\| )$ identify the symbol for which\n.LB\n$cum_freq[symbol] ~ <= ~~\nleft f {(value-low+1)*cum_freq[0] ~-~ 1} over {high-low+1} right f\n~~ < ~ cum_freq[symbol-1]$,\n.LE\nwhere $left f ~ right f$ denotes the ``integer part of'' function that\ncomes from integer division with truncation.\nIt is shown in the Appendix that this implies\n.LB \"nnnn\"\n$low ~+~~ left f {(high-low+1)*cum_freq[symbol]} over cum_freq[0] right f\n~~ <= ~ v ~ <=  ~~\nlow ~+~~ left f {(high-low+1)*cum_freq[symbol-1]} over cum_freq[0] right f ~~ - ~ 1$,\n.LE \"nnnn\"\nso $value$ lies within the new interval that $decode_symbol( \\| )$\ncalculates in lines 190-193.\nThis is sufficient to guarantee that the decoding operation identifies each\nsymbol correctly.\n.rh \"Underflow.\"\nAs Figure\\ 1 shows, arithmetic coding works by scaling the cumulative\nprobabilities given by the model into the interval [$low$,\\ $high$] for\neach character transmitted.\nSuppose $low$ and $high$ are very close together, so close that this scaling\noperation maps some different symbols of the model on to the same integer in\nthe [$low$,\\ $high$] interval.\nThis would be disastrous, because if such a symbol actually occurred it would\nnot be possible to continue encoding.\nConsequently, the encoder must guarantee that the interval [$low$,\\ $high$] is\nalways large enough to prevent this.\nThe simplest way is to ensure that this interval is at least as large as\n$Max_frequency$, the maximum allowed cumulative frequency count (line\\ 36).\n.pp\nHow could this condition be violated?\nThe bit-shifting operation explained above ensures that $low$ and $high$ can\nonly become close together when they straddle $Half$.\nSuppose in fact they become as close as\n.LB\n$First_qtr ~ <= ~ low ~<~ Half ~ <= ~ high ~<~ Third_qtr$.\n.LE\nThen the next two bits sent will have opposite polarity, either 01 or 10.\nFor example, if the next bit turns out to be 0 (ie $high$ descends below\n$Half$ and [0,\\ $Half$] is expanded to the full interval) the bit after\nthat will be 1 since the range has to be above the midpoint of the expanded\ninterval.\nConversely if the next bit happens to be 1 the one after that will be 0.\nTherefore the interval can safely be expanded right now, if only we remember\nthat whatever bit actually comes next, its opposite must be transmitted\nafterwards as well.\nThus lines 104-109 expand [$First_qtr$,\\ $Third_qtr$] into the whole interval,\nremembering in $bits_to_follow$ that the bit that is output next must be\nfollowed by an opposite bit.\nThis explains why all output is done via $bit_plus_follow( \\| )$\n(lines 128-135) instead of directly with $output_bit( \\| )$.\n.pp\nBut what if, after this operation, it is \\fIstill\\fR true that\n.LB\n$First_qtr ~ <= ~ low ~<~ Half ~ <= ~ high ~<~ Third_qtr$?\n.LE\nFigure\\ 5 illustrates this situation, where the current [$low$,\\ $high$]\nrange (shown as a thick line) has been expanded a total of three times.\nSuppose the next bit will turn out to be 0, as indicated by the arrow in\nFigure\\ 5(a) being below the halfway point.\nThen the next \\fIthree\\fR bits will be 1's, since not only is the arrow in the\ntop half of the bottom half of the original range, it is in the top quarter,\nand moreover the top eighth, of that half \\(em that is why the expansion\ncan occur three times.\nSimilarly, as Figure\\ 5(b) shows, if the next bit turns out to be a 1 it will\nbe followed by three 0's.\nConsequently we need only count the number of expansions and follow the next\nbit by that number of opposites (lines 106 and 131-134).\n.pp\nUsing this technique, the encoder can guarantee that after the shifting\noperations, either\n.LB\n.ta \\n(.lu-\\n(.iuR\n$low ~<~ First_qtr ~<~ Half ~ <= ~ high$\t(1a)\n.LE\nor\n.LB\n.ta \\n(.lu-\\n(.iuR\n$low ~<~ Half ~<~ Third_qtr ~ <= ~ high$.\t(1b)\n.LE\nTherefore as long as the integer range spanned by the cumulative frequencies\nfits into a quarter of that provided by $code_value$s, the underflow problem\ncannot occur.\nThis corresponds to the condition\n.LB\n$Max_frequency ~ <= ~~ {Top_value+1} over 4 ~~ + ~ 1$,\n.LE\nwhich is satisfied by Figure\\ 3 since $Max_frequency ~=~ 2 sup 14 - 1$ and\n$Top_value ~=~ 2 sup 16 - 1$ (lines\\ 36, 9).\nMore than 14\\ bits cannot be used to represent cumulative frequency\ncounts without increasing the number of bits allocated to $code_value$s.\n.pp\nWe have discussed underflow in the encoder only.\nSince the decoder's job, once each symbol has been decoded, is to track the\noperation of the encoder, underflow will be avoided if it performs the same\nexpansion operation under the same conditions.\n.rh \"Overflow.\"\nNow consider the possibility of overflow in the integer multiplications\ncorresponding to those of Figure\\ 2, which occur in lines 91-94 and 190-193\nof Figure\\ 3.\nOverflow cannot occur provided the product\n.LB\n$range * Max_frequency$\n.LE\nfits within the integer word length available, since cumulative frequencies\ncannot exceed $Max_frequency$.\n$Range$ might be as large as $Top_value ~+~1$, so the largest possible product\nin Figure 3 is $2 sup 16 ( 2 sup 14 - 1 )$ which is less than $2 sup 30$.\n$Long$ declarations are used for $code_value$ (line\\ 7) and $range$\n(lines\\ 89, 183) to ensure that arithmetic is done to 32-bit precision.\n.rh \"Constraints on the implementation.\"\nThe constraints on word length imposed by underflow and overflow can\nbe simplified by assuming frequency counts are represented in $f$\\ bits, and\n$code_value$s in $c$\\ bits.\nThe implementation will work correctly provided\n.LB\n$f ~ <= ~ c ~ - ~2$\n.br\n$f ~+~ c ~ <= ~ p$, the precision to which arithmetic is performed.\n.LE\nIn most C implementations, $p=31$ if $long$ integers are used, and $p=32$\nif they are $unsigned ~ long$.\nIn Figure\\ 3, $f=14$ and $c=16$.\nWith appropriately modified declarations, $unsigned ~ long$ arithmetic with\n$f=15$, $c=17$ could be used.\nIn assembly language $c=16$ is a natural choice because it expedites some\ncomparisons and bit manipulations (eg those of lines\\ 95-113 and 194-213).\n.pp\nIf $p$ is restricted to 16\\ bits, the best values possible are $c=9$ and\n$f=7$, making it impossible to encode a full alphabet of 256\\ symbols, as each\nsymbol must have a count of at least 1.\nA smaller alphabet (eg the letters, or 4-bit nibbles) could still be\nhandled.\n.rh \"Termination.\"\nTo finish the transmission, it is necessary to send a unique terminating\nsymbol ($EOF_symbol$, line 56) and then follow it by enough bits to ensure\nthat the encoded string falls within the final range.\nSince $done_encoding( \\| )$ (lines 119-123) can be sure that\n$low$ and $high$ are constrained by either (1a) or (1b) above, it need only\ntransmit $01$ in the first case or $10$ in the second to remove the remaining\nambiguity.\nIt is convenient to do this using the $bit_plus_follow( \\| )$ procedure\ndiscussed earlier.\nThe $input_bit( \\| )$ procedure will actually read a few more bits than were\nsent by $output_bit( \\| )$ as it needs to keep the low end of the buffer full.\nIt does not matter what value these bits have as the EOF is uniquely\ndetermined by the last two bits actually transmitted.\n.sh \"Models for arithmetic coding\"\n.pp\nThe program of Figure\\ 3 must be used with a model which provides\na pair of translation tables $index_to_char[ \\| ]$ and $char_to_index[ \\| ]$,\nand a cumulative frequency array $cum_freq[ \\| ]$.\nThe requirements on the latter are that\n.LB\n.NP\n$cum_freq[ i-1 ] ~ >= ~ cum_freq[ i ]$;\n.NP\nan attempt is never made to encode a symbol $i$ for which\n$cum_freq[i-1] ~=~ cum_freq[i]$;\n.NP\n$cum_freq[0] ~ <= ~ Max_frequency$.\n.LE\nProvided these conditions are satisfied the values in the array need bear\nno relationship to the actual cumulative symbol frequencies in messages.\nEncoding and decoding will still work correctly, although encodings will\noccupy less space if the frequencies are accurate.\n(Recall our successfully encoding \\fIeaii!\\fR according to the model of\nTable\\ 1, which does not actually reflect the frequencies in the message.)  \\c\n.rh \"Fixed models.\"\nThe simplest kind of model is one in which symbol frequencies are fixed.\nThe first model in Figure\\ 4 has symbol frequencies which approximate those\nof English (taken from a part of the Brown Corpus, Kucera & Francis, 1967).\n.[\n%A Kucera, H.\n%A Francis, W.N.\n%D 1967\n%T Computational analysis of present-day American English\n%I Brown University Press\n%C Providence, RI\n.]\nHowever, bytes which did not occur in that sample have been given frequency\ncounts of 1 in case they do occur in messages to be encoded\n(so, for example, this model will still work for binary files in which all\n256\\ bytes occur).\nFrequencies have been normalized to total 8000.\nThe initialization procedure $start_model( \\| )$ simply computes a cumulative\nversion of these frequencies (lines 48-51), having first initialized the\ntranslation tables (lines 44-47).\nExecution speed would be improved if these tables were used to re-order\nsymbols and frequencies so that the most frequent came first in the\n$cum_freq[ \\| ]$ array.\nSince the model is fixed, the procedure $update_model( \\| )$, which is\ncalled from both $encode.c$ and $decode.c$, is null.\n.pp\nAn \\fIexact\\fR model is one where the symbol frequencies in the message are\nexactly as prescribed by the model.\nFor example, the fixed model of Figure\\ 4 is close to an exact model\nfor the particular excerpt of the Brown Corpus from which it was taken.\nTo be truly exact, however, symbols that did not occur in the excerpt would\nbe assigned counts of 0, not 1 (sacrificing the capability of\ntransmitting messages containing those symbols).\nMoreover, the frequency counts would not be scaled to a predetermined\ncumulative frequency, as they have been in Figure\\ 4.\nThe exact model may be calculated and transmitted before sending the message.\nIt is shown in Cleary & Witten (1984a) that, under quite general conditions,\nthis will \\fInot\\fR give better overall compression than adaptive coding,\ndescribed next.\n.[\nCleary Witten 1984 enumerative adaptive codes\n%D 1984a\n.]\n.rh \"Adaptive models.\"\nAn adaptive model represents the changing symbol frequencies seen \\fIso far\\fR\nin the message.\nInitially all counts might be the same (reflecting no initial information),\nbut they are updated as each symbol is seen, to approximate the observed\nfrequencies.\nProvided both encoder and decoder use the same initial values (eg equal\ncounts) and the same updating algorithm, their models will remain in step.\nThe encoder receives the next symbol, encodes it, and updates its model.\nThe decoder identifies it according to its current model, and then updates its\nmodel.\n.pp\nThe second half of Figure\\ 4 shows such an adaptive model.\nThis is the type of model recommended for use with Figure\\ 3, for in practice\nit will outperform a fixed model in terms of compression efficiency.\nInitialization is the same as for the fixed model, except that all frequencies\nare set to 1.\nThe procedure $update_model(symbol)$ is called by both $encode_symbol( \\| )$\nand $decode_symbol( \\| )$ (Figure\\ 3 lines 54 and 151) after each symbol is\nprocessed.\n.pp\nUpdating the model is quite expensive, because of the need to maintain\ncumulative totals.\nIn the code of Figure\\ 4, frequency counts, which must be maintained anyway,\nare used to optimize access by keeping the array in frequency order \\(em an\neffective kind of self-organizing linear search (Hester & Hirschberg, 1985).\n.[\nHester Hirschberg 1985\n.]\n$Update_model( \\| )$ first checks to see if the new model will exceed\nthe cumulative-frequency limit, and if so scales all frequencies down by a\nfactor of 2 (taking care to ensure that no count scales to zero) and\nrecomputes cumulative values (Figure\\ 4, lines\\ 29-37).\nThen, if necessary, $update_model( \\| )$ re-orders the symbols to place the\ncurrent one in its correct rank in the frequency ordering, altering the\ntranslation tables to reflect the change.\nFinally, it increments the appropriate frequency count and adjusts cumulative\nfrequencies accordingly.\n.sh \"Performance\"\n.pp\nNow consider the performance of the algorithm of Figure\\ 3, both\nin compression efficiency and execution time.\n.rh \"Compression efficiency.\"\nIn principle, when a message is coded using arithmetic coding, the number of\nbits in the encoded string is the same as the entropy of that message with\nrespect to the model used for coding.\nThree factors cause performance to be worse than this in practice:\n.LB\n.NP\nmessage termination overhead\n.NP\nthe used of fixed-length rather than infinite-precision arithmetic\n.NP\nscaling of counts so that their total is at most $Max_frequency$.\n.LE\nNone of these effects is significant, as we now show.\nIn order to isolate the effect of arithmetic coding the model will be\nconsidered to be exact (as defined above).\n.pp\nArithmetic coding must send extra bits at the end of each message, causing a\nmessage termination overhead.\nTwo bits are needed, sent by $done_encoding( \\| )$ (Figure\\ 3 lines 119-123),\nin order to disambiguate the final symbol.\nIn cases where a bit-stream must be blocked into 8-bit characters before\nencoding, it will be necessary to round out to the end of a block.\nCombining these, an extra 9\\ bits may be required.\n.pp\nThe overhead of using fixed-length arithmetic\noccurs because remainders are truncated on division.\nIt can be assessed by comparing the algorithm's performance with\nthe figure obtained from a theoretical entropy calculation\nwhich derives its frequencies from counts scaled exactly as for coding.\nIt is completely negligible \\(em on the order of $10 sup -4$ bits/symbol.\n.pp\nThe penalty paid by scaling counts is somewhat larger, but still very\nsmall.\nFor short messages (less than $2 sup 14$ bytes) no scaling need be done.\nEven with messages of $10 sup 5$ to $10 sup 6$ bytes, the overhead was found\nexperimentally to be less than 0.25% of the encoded string.\n.pp\nThe adaptive model of Figure\\ 4 scales down all counts whenever the total\nthreatens to exceed $Max_frequency$.\nThis has the effect of weighting recent events more heavily compared with\nthose earlier in the message.\nThe statistics thus tend to track changes in the input sequence, which can be\nvery beneficial.\n(For example, we have encountered cases where limiting counts to 6 or 7\\ bits\ngives better results than working to higher precision.)  \\c\nOf course, this depends on the source being modeled.\nBentley \\fIet al\\fR (1986) consider other, more explicit, ways of\nincorporating a recency effect.\n.[\nBentley Sleator Tarjan Wei 1986 locally adaptive\n%J Communications of the ACM\n.]\n.rh \"Execution time.\"\nThe program in Figure\\ 3 has been written for clarity, not execution speed.\nIn fact, with the adaptive model of Figure\\ 4, it takes about 420\\ $mu$s per\ninput byte on a VAX-11/780 to encode a text file, and about the same for\ndecoding.\nHowever, easily avoidable overheads such as procedure calls account for much\nof this, and some simple optimizations increase speed by a factor of 2.\nThe following alterations were made to the C version shown:\n.LB\n.NP\nthe procedures $input_bit( \\| )$, $output_bit( \\| )$, and\n$bit_plus_follow( \\| )$ were converted to macros to eliminate\nprocedure-call overhead;\n.NP\nfrequently-used quantities were put in register variables;\n.NP\nmultiplies by two were replaced by additions (C ``+='');\n.NP\narray indexing was replaced by pointer manipulation in the loops\nat line 189 of Figure\\ 3 and lines 49-52 of the adaptive model in Figure\\ 4.\n.LE\n.pp\nThis mildly-optimized C implementation has an execution time of\n214\\ $mu$s/262\\ $mu$s, per input byte,\nfor encoding/decoding 100,000\\ bytes of English text on a VAX-11/780, as shown\nin Table\\ 2.\nAlso given are corresponding figures for the same program on an\nApple Macintosh and a SUN-3/75.\nAs can be seen, coding a C source program of the same length took slightly\nlonger in all cases, and a binary object program longer still.\nThe reason for this will be discussed shortly.\nTwo artificial test files were included to allow readers to replicate the\nresults.\n``Alphabet'' consists of enough copies of the 26-letter alphabet to fill\nout 100,000\\ characters (ending with a partially-completed alphabet).\n``Skew-statistics'' contains 10,000 copies of the string\n\\fIaaaabaaaac\\fR\\^; it demonstrates that files may be encoded into less than\n1\\ bit per character (output size of 12,092\\ bytes = 96,736\\ bits).\nAll results quoted used the adaptive model of Figure\\ 4.\n.pp\nA further factor of 2 can be gained by reprogramming in assembly language.\nA carefully optimized version of Figures\\ 3 and 4 (adaptive model) was\nwritten in both VAX and M68000 assembly language.\nFull use was made of registers.\nAdvantage was taken of the 16-bit $code_value$ to expedite some crucial\ncomparisons and make subtractions of $Half$ trivial.\nThe performance of these implementations on the test files is also shown in\nTable\\ 2 in order to give the reader some idea of typical execution speeds.\n.pp\nThe VAX-11/780 assembly language timings are broken down in Table\\ 3.\nThese figures were obtained with the U\\s-2NIX\\s+2 profile facility and are\naccurate only to within perhaps 10%\\(dg.\n.FN\n\\(dg This mechanism constructs a histogram of program counter values at\nreal-time clock interrupts, and suffers from statistical variation as well as\nsome systematic errors.\n.EF\n``Bounds calculation'' refers to the initial part of $encode_symbol( \\| )$\nand $decode_symbol( \\| )$ (Figure\\ 3 lines 90-94 and 190-193)\nwhich contain multiply and divide operations.\n``Bit shifting'' is the major loop in both the encode and decode routines\n(lines 95-113 and 194-213).\nThe $cum$ calculation in $decode_symbol( \\| )$, which requires a\nmultiply/divide, and the following loop to identify the next symbol\n(lines\\ 187-189), is ``Symbol decode''.\nFinally, ``Model update'' refers to the adaptive\n$update_model( \\| )$ procedure of Figure\\ 4 (lines\\ 26-53).\n.pp\nAs expected, the bounds calculation and model update take the same time for\nboth encoding and decoding, within experimental error.\nBit shifting was quicker for the text file than for the C program and object\nfile because compression performance was better.\nThe extra time for decoding over encoding is due entirely to the symbol\ndecode step.\nThis takes longer in the C program and object file tests because the loop of\nline\\ 189 was executed more often (on average 9\\ times, 13\\ times, and\n35\\ times respectively).\nThis also affects the model update time because it is the number of cumulative\ncounts which must be incremented in Figure\\ 4 lines\\ 49-52.\nIn the worst case, when the symbol frequencies are uniformly distributed,\nthese loops are executed an average of 128 times.\nWorst-case performance would be improved by using a more complex tree\nrepresentation for frequencies, but this would likely be slower for text\nfiles.\n.sh \"Some applications\"\n.pp\nApplications of arithmetic coding are legion.\nBy liberating \\fIcoding\\fR with respect to a model from the \\fImodeling\\fR\nrequired for prediction, it encourages a whole new view of data compression\n(Rissanen & Langdon, 1981).\n.[\nRissanen Langdon 1981 Universal modeling and coding\n.]\nThis separation of function costs nothing in compression performance, since\narithmetic coding is (practically) optimal with respect to the entropy of\nthe model.\nHere we intend to do no more than suggest the scope of this view\nby briefly considering\n.LB\n.NP\nadaptive text compression\n.NP\nnon-adaptive coding\n.NP\ncompressing black/white images\n.NP\ncoding arbitrarily-distributed integers.\n.LE\nOf course, as noted earlier, greater coding efficiencies could easily be\nachieved with more sophisticated models.\nModeling, however, is an extensive topic in its own right and is beyond the\nscope of this paper.\n.pp\n.ul\nAdaptive text compression\nusing single-character adaptive frequencies shows off arithmetic coding to\ngood effect.\nThe results obtained using the program of Figures\\ 3 and 4 vary from\n4.8\\-5.3\\ bit/char for short English text files ($10 sup 3$\\ to $10 sup 4$\nbytes) to 4.5\\-4.7\\ bit/char for long ones ($10 sup 5$ to $10 sup 6$ bytes).\nAlthough adaptive Huffman techniques do exist (eg Gallagher, 1978;\nCormack & Horspool, 1984) they lack the conceptual simplicity of\narithmetic coding.\n.[\nGallagher 1978 variations on a theme by Huffman\n.]\n.[\nCormack Horspool 1984 adaptive Huffman codes\n.]\nWhile competitive in compression efficiency for many files, they are slower.\nFor example, Table\\ 4 compares the performance of the mildly-optimized C\nimplementation of arithmetic coding with that of the U\\s-2NIX\\s+2\n\\fIcompact\\fR program which implements adaptive Huffman coding using\na similar model\\(dg.\n.FN\n\\(dg \\fICompact\\fR's model is essentially the same for long files (like those\nof Table\\ 4) but is better for short files than the model used as an example\nin this paper.\n.EF\nCasual examination of \\fIcompact\\fR indicates that the care taken in\noptimization is roughly comparable for both systems, yet arithmetic coding\nhalves execution time.\nCompression performance is somewhat better with arithmetic coding on all the\nexample files.\nThe difference would be accentuated with more sophisticated models that\npredict symbols with probabilities approaching one under certain circumstances\n(eg letter ``u'' following ``q'').\n.pp\n.ul\nNon-adaptive coding\ncan be performed arithmetically using fixed, pre-specified models like that in\nthe first part of Figure\\ 4.\nCompression performance will be better than Huffman coding.\nIn order to minimize execution time, the total frequency count,\n$cum_freq[0]$, should be chosen as a power of two so the divisions\nin the bounds calculations (Figure\\ 3 lines 91-94 and 190-193) can be done\nas shifts.\nEncode/decode times of around 60\\ $mu$s/90\\ $mu$s should then be possible\nfor an assembly language implementation on a VAX-11/780.\nA carefully-written implementation of Huffman coding, using table look-up for\nencoding and decoding, would be a bit faster in this application.\n.pp\n.ul\nCompressing black/white images\nusing arithmetic coding has been investigated by Langdon & Rissanen (1981),\nwho achieved excellent results using a model which conditioned the probability\nof a pixel's being black on a template of pixels surrounding it.\n.[\nLangdon Rissanen 1981 compression of black-white images\n.]\nThe template contained a total of ten pixels, selected from those above and\nto the left of the current one so that they precede it in the raster scan.\nThis creates 1024 different possible contexts, and for each the probability of\nthe pixel being black was estimated adaptively as the picture was transmitted.\nEach pixel's polarity was then coded arithmetically according to this\nprobability.\nA 20%\\-30% improvement in compression was attained over earlier methods.\nTo increase coding speed Langdon & Rissanen used an approximate method\nof arithmetic coding which avoided multiplication by representing\nprobabilities as integer powers of 1/2.\nHuffman coding cannot be directly used in this application, as it never\ncompresses with a two-symbol alphabet.\nRun-length coding, a popular method for use with two-valued alphabets,\nprovides another opportunity for arithmetic coding.\nThe model reduces the data to a sequence of lengths of runs of the same symbol\n(eg for picture coding, run-lengths of black followed by white followed by\nblack followed by white ...).\nThe sequence of lengths must be transmitted.\nThe CCITT facsimile coding standard (Hunter & Robinson, 1980), for example,\nbases a Huffman code on the frequencies with which black and white runs of\ndifferent lengths occur in sample documents.\n.[\nHunter Robinson 1980 facsimile\n.]\nA fixed arithmetic code using these same frequencies would give better\nperformance; adapting the frequencies to each particular document would be\nbetter still.\n.pp\n.ul\nCoding arbitrarily-distributed integers\nis often called for when using more sophisticated models of text, image,\nor other data.\nConsider, for instance, Bentley \\fIet al\\fR's (1986) locally-adaptive data\ncompression scheme, in which the encoder and decoder cache the last $N$\ndifferent words seen.\n.[\nBentley Sleator Tarjan Wei 1986 locally adaptive\n%J Communications of the ACM\n.]\nA word present in the cache is transmitted by sending the integer cache index.\nWords not in the cache are transmitted by sending a new-word marker followed\nby the characters of the word.\nThis is an excellent model for text in which words are used frequently over\nshort intervals and then fall into long periods of disuse.\nTheir paper discusses several variable-length codings for the integers used\nas cache indexes.\nArithmetic coding allows \\fIany\\fR probability distribution to be used as the\nbasis for a variable-length encoding, including \\(em amongst countless others\n\\(em the ones implied by the particular codes discussed there.\nIt also permits use of an adaptive model for cache\nindexes, which is desirable if the distribution of cache hits is\ndifficult to predict in advance.\nFurthermore, with arithmetic coding, the code space allotted to the cache\nindexes can be scaled down to accommodate any desired probability for the\nnew-word marker.\n.sh \"Acknowledgement\"\n.pp\nFinancial support for this work has been provided by the\nNatural Sciences and Engineering Research Council of Canada.\n.sh \"References\"\n.sp\n.in+4n\n.[\n$LIST$\n.]\n.in 0\n.bp\n.sh \"APPENDIX: Proof of decoding inequality\"\n.sp\nUsing 1-letter abbreviations for $cum_freq$, $symbol$, $low$, $high$, and\n$value$, suppose\n.LB\n$c[s] ~ <= ~~ left f {(v-l+1) times c[0] ~-~ 1} over {h-l+1} right f ~~ < ~\nc[s-1]$;\n.LE\nin other words,\n.LB\n.ta \\n(.lu-\\n(.iuR\n$c[s] ~ <= ~~ {(v-l+1) times c[0] ~-~ 1} over {r} ~~-~~ epsilon ~~ <= ~\nc[s-1] ~-~1$, \t(1)\n.LE\n.ta 8n\nwhere\t$r ~=~ h-l+1$,  $0 ~ <= ~ epsilon ~ <= ~ {r-1} over r $.\n.sp\n(The last inequality of (1) derives from the fact that $c[s-1]$ must be an\ninteger.)  \\c\nThen we wish to show that  $l' ~ <= ~ v ~ <= ~ h'$,  where $l'$ and $h'$\nare the updated values for $low$ and $high$ as defined below.\n.sp\n.ta \\w'(a)    'u\n(a)\t$l' ~ == ~~ l ~+~~ left f {r times c[s]} over c[0] right f ~~ mark\n<= ~~ l ~+~~ {r} over c[0] ~ left [ ~ {(v-l+1) times c[0] ~-~ 1} over {r}\n                          ~~ - ~ epsilon ~ right ]$    from (1),\n.sp 0.5\n$lineup <= ~~ v ~ + ~ 1 ~ - ~ 1 over c[0]$ ,\n.sp 0.5\n\tso   $l' ~ <= ~~ v$   since both $v$ and $l'$ are integers\nand $c[0] > 0$.\n.sp\n(b)\t$h' ~ == ~~ l ~+~~ left f {r times c[s-1]} over c[0] right f ~~-~1~~ mark\n>= ~~ l ~+~~  {r} over c[0] ~ left [ ~ {(v-l+1) times c[0] ~-~ 1} over {r}\n                          ~~ + ~ 1 ~ - ~ epsilon ~ right ] ~~ - ~ 1\n$    from (1),\n.sp 0.5\n$lineup >= ~~ v ~ + ~~ r over c[0] ~ left [ ~ - ~ 1 over r ~+~ 1\n                                                  ~-~~ r-1 over r right ]\n~~ = ~~ v$.\n.bp\n.sh \"Captions for tables\"\n.sp\n.nf\n.ta \\w'Figure 1  'u\nTable 1\tExample fixed model for alphabet {\\fIa, e, i, o, u, !\\fR}\nTable 2\tResults for encoding and decoding 100,000-byte files\nTable 3\tBreakdown of timings for VAX-11/780 assembly language version\nTable 4\tComparison of arithmetic and adaptive Huffman coding\n.fi\n.sh \"Captions for figures\"\n.sp\n.nf\n.ta \\w'Figure 1  'u\nFigure 1\t(a) Representation of the arithmetic coding process\n\t(b) Like (a) but with the interval scaled up at each stage\nFigure 2\tPseudo-code for the encoding and decoding procedures\nFigure 3\tC implementation of arithmetic encoding and decoding\nFigure 4\tFixed and adaptive models for use with Figure 3\nFigure 5\tScaling the interval to prevent underflow\n.fi\n.bp 0\n.ev2\n.nr x2 \\w'symbol'/2\n.nr x3 (\\w'symbol'/2)+0.5i+(\\w'probability'/2)\n.nr x4 (\\w'probability'/2)+0.5i\n.nr x5 (\\w'[0.0, '\n.nr x1 \\n(x2+\\n(x3+\\n(x4+\\n(x5+\\w'0.0)'\n.nr x0 (\\n(.l-\\n(x1)/2\n.in \\n(x0u\n.ta \\n(x2uC +\\n(x3uC +\\n(x4u +\\n(x5u\n\\l'\\n(x1u'\n.sp\n\tsymbol\tprobability\t\\0\\0range\n\\l'\\n(x1u'\n.sp\n\t\\fIa\\fR\t0.2\t[0,\t0.2)\n\t\\fIe\\fR\t0.3\t[0.2,\t0.5)\n\t\\fIi\\fR\t0.1\t[0.5,\t0.6)\n\t\\fIo\\fR\t0.2\t[0.6,\t0.8)\n\t\\fIu\\fR\t0.1\t[0.8,\t0.9)\n\t\\fI!\\fR\t0.1\t[0.9,\t1.0)\n\\l'\\n(x1u'\n.sp\n.in 0\n.FE \"Table 1  Example fixed model for alphabet {\\fIa, e, i, o, u, !\\fR}\"\n.bp 0\n.ev2\n.nr x1 0.5i+\\w'\\fIVAX object program\\fR      '+\\w'100,000      '+\\w'time ($mu$s)  '+\\w'time ($mu$s)    '+\\w'time ($mu$s)  '+\\w'time ($mu$s)    '+\\w'time ($mu$s)  '+\\w'time ($mu$s)'\n.nr x0 (\\n(.l-\\n(x1)/2\n.in \\n(x0u\n.ta 0.5i +\\w'\\fIVAX object program\\fR      'u +\\w'100,000      'u +\\w'time ($mu$s)  'u +\\w'time ($mu$s)    'u +\\w'time ($mu$s)  'u +\\w'time ($mu$s)    'u +\\w'time ($mu$s)  'u\n\\l'\\n(x1u'\n.sp\n\t\t\t\\0\\0VAX-11/780\t\\0\\0\\0Macintosh\t\\0\\0\\0\\0SUN-3/75\n\t\toutput\t encode\t decode\t encode\t decode\t encode\t decode\n\t\t(bytes)\ttime ($mu$s)\ttime ($mu$s)\ttime ($mu$s)\ttime ($mu$s)\ttime ($mu$s)\ttime ($mu$s)\n\\l'\\n(x1u'\n.sp\nMildly optimized C implementation\n.sp\n\t\\fIText file\\fR\t\\057718\t\\0\\0214\t\\0\\0262\t\\0\\0687\t\\0\\0881\t\\0\\0\\098\t\\0\\0121\n\t\\fIC program\\fR\t\\062991\t\\0\\0230\t\\0\\0288\t\\0\\0729\t\\0\\0950\t\\0\\0105\t\\0\\0131\n\t\\fIVAX object program\\fR\t\\073501\t\\0\\0313\t\\0\\0406\t\\0\\0950\t\\01334\t\\0\\0145\t\\0\\0190\n\t\\fIAlphabet\\fR\t\\059292\t\\0\\0223\t\\0\\0277\t\\0\\0719\t\\0\\0942\t\\0\\0105\t\\0\\0130\n\t\\fISkew-statistics\\fR\t\\012092\t\\0\\0143\t\\0\\0170\t\\0\\0507\t\\0\\0645\t\\0\\0\\070\t\\0\\0\\085\n.sp\nCarefully optimized assembly language implementation\n.sp\n\t\\fIText file\\fR\t\\057718\t\\0\\0104\t\\0\\0135\t\\0\\0194\t\\0\\0243\t\\0\\0\\046\t\\0\\0\\058\n\t\\fIC program\\fR\t\\062991\t\\0\\0109\t\\0\\0151\t\\0\\0208\t\\0\\0266\t\\0\\0\\051\t\\0\\0\\065\n\t\\fIVAX object program\\fR\t\\073501\t\\0\\0158\t\\0\\0241\t\\0\\0280\t\\0\\0402\t\\0\\0\\075\t\\0\\0107\n\t\\fIAlphabet\\fR\t\\059292\t\\0\\0105\t\\0\\0145\t\\0\\0204\t\\0\\0264\t\\0\\0\\051\t\\0\\0\\065\n\t\\fISkew-statistics\\fR\t\\012092\t\\0\\0\\063\t\\0\\0\\081\t\\0\\0126\t\\0\\0160\t\\0\\0\\028\t\\0\\0\\036\n\n\\l'\\n(x1u'\n.sp 2\n.nr x0 \\n(.l\n.ll \\n(.lu-\\n(.iu\n.fi\n.in \\w'\\fINotes:\\fR  'u\n.ti -\\w'\\fINotes:\\fR  'u\n\\fINotes:\\fR\\ \\ \\c\nTimes are measured in $mu$s per byte of uncompressed data.\n.sp 0.5\nThe VAX-11/780 had a floating-point accelerator, which reduces integer\nmultiply and divide times.\n.sp 0.5\nThe Macintosh uses an 8\\ MHz MC68000 with some memory wait states.\n.sp 0.5\nThe SUN-3/75 uses a 16.67\\ MHz MC68020.\n.sp 0.5\nAll times exclude I/O and operating system overhead in support of I/O.\nVAX and SUN figures give user time from the U\\s-2NIX\\s+2 \\fItime\\fR\ncommand; on the Macintosh I/O was explicitly directed to an array.\n.sp 0.5\nThe 4.2BSD C compiler was used for VAX and SUN; Aztec C 1.06g for Macintosh.\n.sp\n.ll \\n(x0u\n.nf\n.in 0\n.FE \"Table 2  Results for encoding and decoding 100,000-byte files\"\n.bp 0\n.ev2\n.nr x1 \\w'\\fIVAX object program\\fR        '+\\w'Bounds calculation        '+\\w'time ($mu$s)    '+\\w'time ($mu$s)'\n.nr x0 (\\n(.l-\\n(x1)/2\n.in \\n(x0u\n.ta \\w'\\fIVAX object program\\fR        'u +\\w'Bounds calculation        'u +\\w'time ($mu$s)    'u +\\w'time ($mu$s)'u\n\\l'\\n(x1u'\n.sp\n\t\t encode\t decode\n\t\ttime ($mu$s)\ttime ($mu$s)\n\\l'\\n(x1u'\n.sp\n\\fIText file\\fR\tBounds calculation\t\\0\\0\\032\t\\0\\0\\031\n\tBit shifting\t\\0\\0\\039\t\\0\\0\\030\n\tModel update\t\\0\\0\\029\t\\0\\0\\029\n\tSymbol decode\t\\0\\0\\0\\(em\t\\0\\0\\045\n\tOther\t\\0\\0\\0\\04\t\\0\\0\\0\\00\n\t\t\\0\\0\\l'\\w'100'u'\t\\0\\0\\l'\\w'100'u'\n\t\t\\0\\0104\t\\0\\0135\n.sp\n\\fIC program\\fR\tBounds calculation\t\\0\\0\\030\t\\0\\0\\028\n\tBit shifting\t\\0\\0\\042\t\\0\\0\\035\n\tModel update\t\\0\\0\\033\t\\0\\0\\036\n\tSymbol decode\t\\0\\0\\0\\(em\t\\0\\0\\051\n\tOther\t\\0\\0\\0\\04\t\\0\\0\\0\\01\n\t\t\\0\\0\\l'\\w'100'u'\t\\0\\0\\l'\\w'100'u'\n\t\t\\0\\0109\t\\0\\0151\n.sp\n\\fIVAX object program\\fR\tBounds calculation\t\\0\\0\\034\t\\0\\0\\031\n\tBit shifting\t\\0\\0\\046\t\\0\\0\\040\n\tModel update\t\\0\\0\\075\t\\0\\0\\075\n\tSymbol decode\t\\0\\0\\0\\(em\t\\0\\0\\094\n\tOther\t\\0\\0\\0\\03\t\\0\\0\\0\\01\n\t\t\\0\\0\\l'\\w'100'u'\t\\0\\0\\l'\\w'100'u'\n\t\t\\0\\0158\t\\0\\0241\n\\l'\\n(x1u'\n.in 0\n.FE \"Table 3  Breakdown of timings for VAX-11/780 assembly language version\"\n.bp 0\n.ev2\n.nr x1 \\w'\\fIVAX object program\\fR      '+\\w'100,000      '+\\w'time ($mu$s)  '+\\w'time ($mu$s)    '+\\w'100,000      '+\\w'time ($mu$s)  '+\\w'time ($mu$s)'\n.nr x0 (\\n(.l-\\n(x1)/2\n.in \\n(x0u\n.ta \\w'\\fIVAX object program\\fR      'u +\\w'100,000      'u +\\w'time ($mu$s)  'u +\\w'time ($mu$s)    'u +\\w'100,000      'u +\\w'time ($mu$s)  'u +\\w'time ($mu$s)'u\n\\l'\\n(x1u'\n.sp\n\t\\0\\0\\0\\0\\0\\0Arithmetic coding\t\\0\\0\\0Adaptive Huffman coding\n\toutput\t encode\t decode\toutput\t encode\t decode\n\t(bytes)\ttime ($mu$s)\ttime ($mu$s)\t(bytes)\ttime ($mu$s)\ttime ($mu$s)\n\\l'\\n(x1u'\n.sp\n\\fIText file\\fR\t\\057718\t\\0\\0214\t\\0\\0262\t\\057781\t\\0\\0550\t\\0\\0414\n\\fIC program\\fR\t\\062991\t\\0\\0230\t\\0\\0288\t\\063731\t\\0\\0596\t\\0\\0441\n\\fIVAX object program\\fR\t\\073546\t\\0\\0313\t\\0\\0406\t\\076950\t\\0\\0822\t\\0\\0606\n\\fIAlphabet\\fR\t\\059292\t\\0\\0223\t\\0\\0277\t\\060127\t\\0\\0598\t\\0\\0411\n\\fISkew-statistics\\fR\t\\012092\t\\0\\0143\t\\0\\0170\t\\016257\t\\0\\0215\t\\0\\0132\n\\l'\\n(x1u'\n.sp 2\n.nr x0 \\n(.l\n.ll \\n(.lu-\\n(.iu\n.fi\n.in +\\w'\\fINotes:\\fR  'u\n.ti -\\w'\\fINotes:\\fR  'u\n\\fINotes:\\fR\\ \\ \\c\nMildly optimized C implementation used for arithmetic coding\n.sp 0.5\nU\\s-2NIX\\s+2 \\fIcompact\\fR used for adaptive Huffman coding\n.sp 0.5\nTimes are for a VAX-11/780, and exclude I/O and operating system overhead in\nsupport of I/O.\n.sp\n.ll \\n(x0u\n.nf\n.in 0\n.FE \"Table 4  Comparison of arithmetic and adaptive Huffman coding\"\n"
  },
  {
    "path": "testdata/calgary/paper2",
    "content": ".pn 0\n.ls1\n.EQ\ndelim $$\n.EN\n.ev1\n.ps-2\n.vs-2\n.ev\n\\&\n.sp 10\n.ps+4\n.ce\nCOMPUTER (IN)SECURITY \\(em\n.sp\n.ce\nINFILTRATING OPEN SYSTEMS\n.ps-4\n.sp4\n.ce\nIan H. Witten\n.sp2\n.ce4\nDepartment of Computer Science\nThe University of Calgary\n2500 University Drive NW\nCalgary, Canada T2N 1N4\n.sp2\n.ce2\nNovember 1986\nRevised March 1987\n.bp 1\n.ls 2\n.pp\nShared computer systems today are astonishingly insecure.\nAnd users, on the whole, are blithely unaware of the weaknesses of the\nsystems in which they place \\(em or rather, misplace \\(em their trust.\nTaken literally, of course, it is meaningless to ``trust'' a computer system\nas such, for machines are neither trustworthy nor untrustworthy;\nthese are human qualities.\nIn trusting a system one is effectively trusting all those who create and\nalter it, in other words, all who have access (whether licit or\nillicit).\nSecurity is a fundamentally \\fIhuman\\fP issue.\n.pp\nThis article aims not to solve security problems but to raise reader\nconsciousness\nof the multifarious cunning ways that systems can be infiltrated, and the\nsubtle but devastating damage that an unscrupulous infiltrator can wreak.\nIt is comforting, but highly misleading, to imagine that technical means of\nenforcing security have guaranteed that the systems we use are safe.\nIt is true that in recent years some ingenious procedures have been invented\nto preserve security.\nFor example, the advent of ``one-way functions'' (explained below) has\nallowed the password file, once a computer system's central stronghold, to be\nsafely exposed to casual inspection by all and sundry.\nBut despite these innovations, astonishing loopholes exist in practice.\n.pp\nThere are manifest advantages in ensuring security by technical means rather\nthan by keeping things secret.\nNot only do secrets leak, but as individuals change projects,\njoin or leave the organization, become promoted and so on, they need to learn\nnew secrets and forget old ones.\nWith physical locks one can issue and withdraw keys to reflect changing\nsecurity needs.\nBut in computer systems, the keys constitute information which can be given\nout but not taken back, because no-one can force people to forget.\nIn practice, such secrets require considerable administration to maintain\nproperly.\nAnd in systems where security is maintained by tight control of information,\n.ul\nquis custodiet ipsos custodes\n\\(em who will guard the guards themselves?\n.pp\nThere is a wide range of simple insecurities that many\nsystems suffer.\nThese are, in the main, exacerbated in open systems where information and\nprograms are shared among users \\(em just those features that characterize\npleasant and productive working environments.\nThe saboteur's basic tool is the Trojan horse,\na widely trusted program which has been surreptitiously modified to do\nbad things in secret.\n``Bad things'' range from minor but rankling irritations through theft of\ninformation to holding users to ransom.\nThe inevitable fragilities of operating systems can\nbe exploited by constructing programs which behave in some ways like primitive\nliving organisms.\nPrograms can be written which spread bugs like an epidemic.\nThey hide in binary code, effectively undetectable (because nobody ever\nexamines binaries).\nThey can remain dormant for months or years, perhaps quietly and imperceptibly\ninfiltrating their way into the very depths of a system, then suddenly pounce,\ncausing irreversible catastrophe.\nA clever and subtle bug\\(dg can survive\nrecompilation despite the fact that there is no record of it in the source\nprogram.\n.FN\n\\(dg Throughout this article the word ``bug'' is meant to bring to mind a\nconcealed snooping device as in espionage, or a micro-organism carrying\ndisease as in biology, rather than an inadvertent programming error.\n.EF\nThis is the ultimate parasite.\nIt cannot be detected because it lives only in binary code.\nAnd yet it cannot be wiped out by recompiling the source program!\nWe might wonder whether these techniques, which this article develops\nand explains in the context of multi-user timesharing operating systems,\npose any threats to computer networks or even stand-alone micros.\n.pp\nAlthough the potential has existed for decades, the possibility of the kind of\n``deviant'' software described here has been recognized only recently.\nOr has it?\nProbably some in the world of computer wizards and sorcerers have known for\nyears how systems can be silently, subtly infiltrated \\(em and concealed\nthe information for fear that it might be misused (or for other reasons).\nBut knowledge of the techniques is spreading nevertheless, and I believe it\nbehooves us all \\(em professionals and amateurs alike \\(em to understand just\nhow our continued successful use of computer systems hangs upon a thread of\ntrust.\nThose who are ignorant of the possibilities of sabotage can easily be\nunknowingly duped by an unscrupulous infiltrator.\n.pp\nThe moral is simple.\nComputer security is a human business.\nOne way of maintaining security is to keep things secret, trusting people\n(the very people who can do you most harm) not to tell.\nThe alternative is to open up the system and rely on technical means\nof ensuring security.\nBut a system which is really ``open'' is also open to abuse.\nThe more sharing and productive the environment, the more potential exists for\ndamage.\nYou have to trust your fellow users, and educate yourself.\nIf mutual trust is the cornerstone of computer security, we'd better know it!\n.sh \"The trend towards openness\"\n.pp\nMany people believe that computer systems can maintain security not\nby keeping secrets but by clever technical mechanisms.\nSuch devices include electronic locks and keys, and schemes for maintaining\ndifferent sets of ``permissions'' or ``privileges'' for each user.\nThe epitome of this trend towards open systems is the well-known \\s-2UNIX\\s+2\noperating system, whose developers, Dennis Ritchie and Ken Thompson, strove\nto design a clean, elegant piece of software that could be understood,\nmaintained, and modified by users.\n(In 1983 they received the prestigious ACM Turing Award for their work.)  \\c\nKen Thompson has been one of the prime contributors to our knowledge of\ncomputer (in)security, and was responsible for much of the work described in\nthis article.\n.pp\nThe most obvious sense in which the \\s-2UNIX\\s+2 system\nis ``open'' is illustrated by looking at its password file.\nYes, there is nothing to stop you from looking at this file!\nEach registered user has a line in it, and Figure\\ 1 shows mine.\nIt won't help you to impersonate me, however, because what it shows in the\npassword field is not my password but a scrambled version of it.\nThere is a program which computes encrypted passwords from plain ones, and\nthat is how the system checks my identity when I log in.\nBut the program doesn't work in reverse \\(em it's what is called a ``one-way\nfunction'' (see Panel\\ 1).\nIt is effectively impossible to find the plain version from the encrypted one,\neven if you know exactly what the encryption procedure does and try to work\ncarefully backward through it.\n\\fINobody\\fR can recover my plain password from the information stored in the\ncomputer.\nIf I forget it, not even the system manager can find out what it is.\nThe best that can be done is to reset my password to some standard one, so\nthat I can log in and change it to a new secret password.\n(Needless to say this creates a window of opportunity for an imposter.)  \\c\nThe system keeps no secrets.\nOnly I do.\n.pp\nBefore people knew about one-way functions, computer systems maintained a\npassword file which gave everyone's plain password for the login procedure to\nconsult.\nThis was the prime target for anyone who tried to\nbreak security, and the bane of system managers because of the\ncompletely catastrophic nature of a leak.\nSystems which keep no secrets avoid an unnecessary Achilles heel.\n.pp\nAnother sense in which \\s-2UNIX\\s+2 is ``open'' is the accessibility of its\nsource code.\nThe software, written in the language \"C\", has been distributed\n(to universities) in source form so that maintenance can be done locally.\nThe computer science research community has enjoyed numerous benefits from\nthis enlightened policy (one is that we can actually look at some of the\nsecurity problems discussed in this article).\nOf course, in any other system there will inevitably be a large number of\npeople who have or have had access to the source code \\(em even though it may\nnot be publicly accessible.\nOperating systems are highly complex pieces of technology, created by large\nteams of people.\nA determined infiltrator may well be able to gain illicit access to source\ncode.\nMaking it widely available has the very positive effect of bringing the\nproblems out into the open and offering them up for public scrutiny.\n.pp\nWere it attainable, perfect secrecy would offer a high degree of security.\nMany people feel that technical innovations like one-way functions and\nopen password files provide comparable protection.\nThe aim of this article is to show that this is a dangerous misconception.\nIn practice, security is often severely compromised by people who have\nintimate knowledge of the inner workings of the system \\(em precisely the\npeople you rely on to \\fIprovide\\fR the security.\nThis does not cause problems in research laboratories because they are\nfounded on mutual trust and support.\nBut in commercial environments, it is vital to be aware of any limitations on\nsecurity.\nWe must face the fact that\nin a hostile and complex world, computer security is best preserved by\nmaintaining secrecy.\n.sh \"A pot-pourri of security problems\"\n.pp\nHere are a few simple ways that security might be compromised.\n.rh \"Guessing a particular user's password.\"\nWhether your password is stored in a secret file or encrypted by a one-way\nfunction first, it offers no protection if it can easily be guessed.\nThis will be hard if it is chosen at random from a large enough set.\nBut for a short sequence of characters from a restricted alphabet\n(like the lower-case letters), an imposter could easily try all possibilities.\nAnd in an open system which gives access to the password file and one-way\nfunction, this can be done mechanically, by a program!\n.pp\nIn Figure\\ 2, the number of different passwords is plotted against the length\nof the password, for several different sets of characters.\nFor example, there are about ten million ($10 sup 7$) possibilities for a\n5-character password chosen from the lower-case letters.\nThis may seem a lot, but if it takes 1\\ msec to try each one, they can all be\nsearched in about 3\\ hours.\nIf 5-character passwords are selected from the 62 alphanumerics, there\nare more than 100 times as many and the search would take over 10\\ days.\n.pp\nTo make matters worse, people have a strong propensity to choose as\npasswords such things as\n.LB\n.NP\nEnglish words\n.NP\nEnglish words spelled backwards\n.NP\nfirst names, last names, street names, city names\n.NP\nthe above with initial upper-case letters\n.NP\nvalid car license numbers\n.NP\nroom numbers, social security numbers, telephone numbers, etc.\n.LE\nOf course, this isn't particularly surprising since passwords have to be\nmnemonic in order to be remembered!\nBut it makes it easy for an enterprising imposter to gather a substantial\ncollection of candidates (from dictionaries, mailing lists, etc) and search\nthem for your password.\nAt 1\\ msec per possibility, it takes only 4\\ minutes to search a 250,000-word\ncommercial dictionary.\n.pp\nA study some years ago of a collection of actual passwords that people used to\nprotect their accounts revealed the amazing breakdown reproduced in Figure\\ 3.\nMost fell into one of the categories discussed, leaving less\nthan 15% of passwords which were hard to guess.\nWhere does your own password stand in the pie diagram?\n.rh \"Finding any valid password.\"\nThere is a big difference between finding a particular person's password and\nfinding a valid password for any user.\nYou could start searching through the candidates noted above until you found\none which, when encrypted, matched one of the entries in the password file.\nThat way you find the most vulnerable user, and there are almost certain to be\nsome lazy and crazy enough to use easily-guessable passwords, four-letter\nwords, or whatever.\nHashing techniques make it almost as quick to check a candidate against a\ngroup of encrypted passwords as against a single one.\n.pp\nA technique called ``salting'' protects against this kind of attack.\nWhenever a user's password is initialized or changed, a small random number\ncalled the ``salt'' is generated (perhaps from the time of day).\nNot only is this combined with the password when it is encrypted, but as\nFigure\\ 1 shows it is also stored in the password file for everyone to see.\nEvery time someone claiming to be that user logs in, the salt is combined with\nthe password offered before being encrypted and compared\nwith whatever is stored in the password file.\nFor example, say my password was ``w#xs27'' (it isn't!).\nIf the salt is ``U6'' (as in Figure\\ 1), the system will apply its one-way\nfunction to ``w#xs27U6'' to get the encrypted password.\n.pp\nSince all can see the salt, it is no harder for anyone to guess\nan individual user's password.\nOne can salt guesses just as the system does.\nBut it \\fIis\\fR harder to search a group of passwords, since the salt will be\ndifferent for each, rendering it meaningless to compare a single encrypted\npassword against all those in the group.\nSuppose you were checking to see if anyone had the password ``hello''.\nWithout salting, you simply apply the one-way function to this word and\ncompare the result with everyone's encrypted password.\nBut with salting it's not so easy, since to see if my password is ``hello''\nyou must encrypt ``helloU6'', and the salt is different for everyone.\n.rh \"Forced-choice passwords.\"\nThe trouble with letting users choose their own passwords is that they often\nmake silly, easily-guessed, choices.\nMany systems attempt to force people to choose more ``random'' passwords, and\nforce them to change their password regularly.\nAll these attempts seem to be complete failures.\nThe fundamental problem is that people have to be able to remember their\npasswords, because security is immediately compromised if they are written\ndown.\n.pp\nThere are many amusing anecdotes about how people thwart systems that attempt\nto dictate when they have to change their passwords.\nI had been using a new system for some weeks when it insisted that I change my\npassword.\nResenting it ordering me about, I gave my old password as the new one.\nBut it was programmed to detect this ruse and promptly told me so.\nI complained to the user sitting beside me.\n``I know,'' she said sympathetically.\n``What I always do is change it to something else and then immediately\nchange it back again!''  \\c\nAnother system remembered your last several passwords, and insisted on a\nonce-a-month change.\nSo people began to use the name of the current month as their password!\n.rh \"Wiretaps.\"\nObviously any kind of password protection can be thwarted by a physical\nwiretap.\nAll one has to do is watch as you log in and make a note of your password.\nThe only defense is encryption at the terminal.\nEven then you have to be careful to ensure that someone can't intercept\nyour encrypted password and pose as you later on by sending this\n\\fIencrypted\\fR string to the computer \\(em after all, this is what the\ncomputer sees when you log in legitimately!\nTo counter this, the encryption can be made time-dependent so that the same\npassword translates to different strings at different times.\n.pp\nAssuming that you, like 99.9% of the rest of us, don't go to the trouble of\nterminal encryption, when was the last time you checked the line between your\noffice terminal and the computer for a physical wiretap?\n.rh \"Search paths.\"\nWe will see shortly that you place yourself completely at the mercy of other\nusers whenever you execute their programs, and they\ncan do some really nasty things like spreading infection to your files.\nHowever, you don't necessarily have to execute someone else's program overtly,\nfor many systems make it easy to use other people's\nprograms without even realizing it.\nThis is usually a great advantage, for you can install programs so that you\nor others can invoke them just like ordinary system programs, thereby\ncreating personalized environments.\n.pp\nFigure\\ 4 shows part of the file hierarchy in our system.\nThe whole hierarchy is immense \\(em I alone have something like 1650 files,\norganized into 200 of my own directories under the ``ian'' node shown in the\nFigure, and there are hundreds of other users \\(em and what is shown is just a\nvery small fragment.\nUsers can set up a ``search path'' which tells the system\nwhere to look for programs they invoke.\nFor example, my search path includes the 6 places that are circled.\nWhenever I ask for a program to be executed, the system seeks it in these\nplaces.\nIt also searches the ``current directory'' \\(em the one where I happen to be\nat the time.\n.pp\nTo make it more convenient for you to set up a good working environment, it\nis easy to put someone else's file directories on your search path.\nBut then they can do arbitrary damage to you, sometimes completely\naccidentally.\nFor example, I once installed a spreadsheet calculator called ``sc'' in one\nof my directories.\nUnknown to me, another user suddenly found that the Simula compiler stopped\nworking and entered a curious mode where it cleared his VDT screen and wrote\na few incomprehensible characters on it.\nThere was quite a hiatus.\nThe person who maintained the Simula compiler was away,\nbut people could see no reason for the compiler to have been altered.\nOf course, told like this it is obvious that the user had my directory on his\nsearch path and I had created a name conflict with \\fIsc\\fR, the Simula\ncompiler.\nBut it was not obvious to the user, who rarely thought about the search path\nmechanism.\nAnd I never use the Simula compiler and had created the conflict in all\ninnocence.\nMoreover, I didn't even know that other users had my directory on their search\npaths!\nThis situation caused only frustration before the problem was diagnosed and\nfixed.\nBut what if I were a bad guy who had created the new \\fIsc\\fR program to\nharbor a nasty bug (say one which deleted the hapless user's files)?\n.pp\nYou don't necessarily have to put someone on your search path to run the\nrisk of executing their programs accidentally.\nAs noted above, the system (usually) checks your current working directory\nfor the program first.\nWhenever you change your current workplace to another's directory, you\nmight without realizing it begin to execute programs that had been\nplanted there.\n.pp\nSuppose a hacker plants a program with the same name as a common\nutility program.\nHow would you find out?\nThe \\s-2UNIX\\s+2 \\fIls\\fR command lists all the files in a directory.\nPerhaps you could find imposters using \\fIls\\fR?  \\(em Sorry.\nThe hacker might have planted another program, called \\fIls\\fR, which\nsimulated the real \\fIls\\fR exactly except that it lied about its own\nexistence and that of the planted command!\nThe \\fIwhich\\fR command tells you which version of a program you\nare using \\(em whether it comes from the current directory, another user's\ndirectory, or a system directory.\nSurely this would tell you?  \\(em Sorry.\nThe hacker might have written another \\fIwhich\\fR which lied about itself,\nabout \\fIls\\fR, and about the plant.\n.pp\nIf you put someone else on your search path, or change into their directory,\nyou're implicitly trusting them.\nYou are completely at a user's mercy when you execute one of their programs,\nwhether accidentally or on purpose.\n.rh \"Programmable terminals.\"\nThings are even worse if you use a ``programmable'' terminal.\nThen, the computer can send a special sequence of characters to command the\nterminal to transmit a particular message whenever a particular key is struck.\nFor example, on the terminal I am using to type this article, you could\nprogram the \\s-2RETURN\\s+2 key to transmit the message ``hello'' whenever it\nis pressed.\nAll you need to do to accomplish this is to send my terminal the character\nsequence\n.LB\n\\s-2ESCAPE\\s+2 P ` + { H E L L O } \\s-2ESCAPE\\s+2\n.LE\n(\\s-2ESCAPE\\s+2 stands for the \\s-2ASCII\\s+2 escape character, decimal 27,\nwhich is invoked by a key labeled ``Esc''.)  \\c\nThis is a mysterious and ugly incantation, and I won't waste time\nexplaining the syntax.\nBut it has an extraordinary effect.\nHenceforth every time I hit the return key, my terminal will transmit the\nstring ``hello'' instead of the normal \\s-2RETURN\\s+2 code.\nAnd when it receives this string, the computer I am connected to will try to\nexecute a program called ``hello''!\n.pp\nThis is a terrible source of insecurity.\nSomeone could program my terminal so that it executed one of \\fItheir\\fR\nprograms whenever I pressed \\s-2RETURN\\s+2.\nThat program could reinstate the \\s-2RETURN\\s+2 code to make it\nappear afterwards as though nothing had happened.\nBefore doing that, however, it could (for example) delete all my files.\n.pp\nThe terminal can be reprogrammed just by sending it an ordinary character\nstring.\nThe string could be embedded in a file, so that the terminal would be bugged\nwhenever I viewed the file.\nIt might be in a seemingly innocuous message;\nsimply reading mail could get me in trouble!\nIt could even be part of a file \\fIname\\fR, so that the bug would appear\nwhenever I listed a certain directory \\(em not making it my current directory,\nas was discussed above, but just \\fIinspecting\\fR it.\nBut I shouldn't say ``appear'', for that's exactly what it might not do.\nI may never know that anything untoward had occurred.\n.pp\nHow can you be safe?\nThe programming sequences for my terminal all start with \\s-2ESCAPE\\s+2,\nwhich is an \\s-2ASCII\\s+2 control character.\nAnyone using such a terminal should whenever possible work through a\nprogram that exposes control characters.\nBy this I mean a program that monitors output from the computer and translates\nthe escape code to something like the 5-character sequence ``<ESC>''.\nThen a raw \\s-2ESCAPE\\s+2 itself never gets sent to the terminal,\nso the reprogramming mechanism is never activated.\n.pp\nNot only should you avoid executing programs written by people you don't\ntrust, but in extreme cases you should take the utmost care in \\fIany\\fR\ninteraction with untrustworthy people \\(em even reading their electronic\nmail.\n.sh \"Trojan horses: getting under the skin\"\n.pp\nThe famous legend tells of a huge, hollow wooden horse filled with Greek\nsoldiers which was left, ostensibly as a gift, at the gates of the city of\nTroy.\nWhen it was brought inside, the soldiers came out at night and\nopened the gates to the Greek army, which destroyed the city.\nTo this day, something used to subvert an organization from within by abusing\nmisplaced trust is called a Trojan horse.\n.pp\nIn any computer system for which security is a concern, there must be things\nthat need protecting.\nThese invariably constitute some kind of information (since the computer is,\nat heart, an information processor), and such information invariably outlasts\na single login session and is therefore stored in the computer's file system.\nConsequently the file system is the bastion to be kept secure, and will be\nthe ultimate target of any invader.\nSome files contain secret information that not just anyone may read,\nothers are vital to the operation of an organization and must at all costs\nbe preserved from surreptitious modification or deletion.\nA rather different thing that must be protected is the ``identity'' of each\nuser.\nFalse identity could be exploited by impersonating someone else in order to\nsend mail.\nUltimately, of course, this is the same as changing data in mailbox files.\nConversely, since for each and every secret file \\fIsomeone\\fR must\nhave permission to read and alter it, preserving file system security\nrequires that identities be kept intact.\n.rh \"What might a Trojan horse do?\"\nThe simplest kind of Trojan horse turns a common program like a text editor\ninto a security threat by implanting code in it which secretly reads\nor alters files it is not intended to.\nAn editor normally has access to all the user's\nfiles (otherwise they couldn't be altered).\nIn other words, the program runs with the user's own privileges.\nA Trojan horse in it can do anything the user himself could do, including\nreading, writing, or deleting files.\n.pp\nIt is easy to communicate stolen information back to the person who bugged\nthe editor.\nMost blatantly, the access permission of a secret file could be changed so\nthat anyone can read it.\nAlternatively the file could be copied temporarily to disk \\(em most systems\nallocate scratch disk space for programs that need to create temporary working\nfiles \\(em and given open access.\nAnother program could continually check for it and, when\nit appeared, read and immediately delete it to destroy the trace.\nMore subtle ways of communicating small amounts of information might be to\nrearrange disk blocks physically so that their addresses formed a code, or to\nsignal with the run/idle status of the process to anyone who monitored the\nsystem's job queue.\nClearly, any method of communication will be detectable by others \\(em in\ntheory.\nBut so many things go on in a computer system that messages can easily be\nembedded in the humdrum noise of countless daily events.\n.pp\nTrojan horses don't necessarily do bad things.\nSome are harmless but annoying, created to meet a challenge rather than to\nsteal secrets.\nOne such bug, the ``cookie monster'', signals its presence by announcing\nto the unfortunate user ``I want a cookie''.\nMerely typing the word ``cookie'' will satiate the monster and cause it to\ndisappear as though nothing had happened.\nBut if the user ignores the request, although the monster appears to go\naway it returns some minutes later with ``I'm hungry; I really want a\ncookie''.\nAs time passes the monster appears more and more frequently with increasingly\ninsistent demands, until it makes a serious\nthreat:  ``I'll remove some of your files if you don't give me a cookie''.\nAt this point the poor user realizes that the danger is real and is\neffectively forced into appeasing the monster's appetite by supplying the word\n``cookie''.\nAlthough an amusing story to tell, it is not pleasant to imagine being\nintimidated by an inanimate computer program.\n.pp\nA more innocuous Trojan horse, installed by a system programmer to commemorate\nleaving her job, occasionally drew a little teddy-bear on the graph-plotter.\nThis didn't happen often (roughly every tenth plot), and even when it did\nit occupied a remote corner of the paper, well outside the normal plotting\narea.\nBut although they initially shared the joke, management soon ceased to\nappreciate the funny side and ordered the programmer's replacement to get rid\nof it.\nUnfortunately the bug was well disguised and many fruitless hours were spent\nseeking it in vain.\nManagement grew more irate and the episode ended when the originator\nreceived a desperate phone-call from her replacement, whose job was by now at\nrisk, begging her to divulge the secret!\n.rh \"Installing a Trojan horse.\"\nThe difficult part is installing the Trojan horse into a trusted program.\nSystem managers naturally take great care that only a few people get access\nto suitable host programs.\nIf anyone outside the select circle of ``system people'' is ever given an\nopportunity to modify a commonly-used program like a text editor\n(for example, to add a new feature) all changes will be closely scrutinized by\nthe system manager before being installed.\nThrough such measures the integrity of system programs is preserved.\nNote, however, that constant vigilance is required, for once bugged, a system\ncan remain compromised forever.\nThe chances of a slip-up may be tiny, but the consequences are unlimited.\n.pp\nOne good way of getting bugged code installed in the system is to write a\npopular utility program.\nAs its user community grows, more and more people will copy the program into\ntheir disk areas so that they can use it easily.\nEventually, if it is successful, the utility will be installed as a ``system''\nprogram.\nThis will be done to save disk space \\(em so that the users can delete their\nprivate versions \\(em and perhaps also because the code can now be made\n``sharable'' in that several simultaneous users can all execute a single copy\nin main memory.\nAs a system program the utility may inherit special privileges, and so be\ncapable of more damage.\nIt may also be distributed to other sites, spreading the Trojan horse far and\nwide.\n.pp\nInstalling a bug in a system utility like a text editor puts anyone who uses\nthat program at the mercy of whoever perpetrated the bug.\nBut it doesn't allow that person to get in and do damage at any time, for\nnothing can be done to a user's files until that user invokes the bugged\nprogram.\nSome system programs, however, have a special privilege which allows them\naccess to files belonging to \\fIanyone\\fR, not just the current user.\nWe'll refer to this as the ``ultimate'' privilege, since nothing could be more\npowerful.\nAn example of a program with the ultimate privilege is the \\fIlogin\\fR program\nwhich administers the logging in sequence, accepting the user name and\npassword and creating an appropriate initial process.\nAlthough \\s-2UNIX\\s+2 \\fIlogin\\fR runs as a normal process, it must have the\npower to masquerade as any user since that is in effect the goal of the\nlogging in procedure!\nFrom an infiltrator's point of view, this would be an excellent\ntarget for a Trojan horse.\nFor example, it could be augmented to grant access automatically to any user\nwho typed the special password ``trojanhorse'' (see Panel\\ 2).\nThen the infiltrator could log in as anyone at any time.\nNaturally, any changes to \\fIlogin\\fR will be checked especially carefully\nby the system administrators.\n.pp\nSome other programs are equally vulnerable \\(em but not many.\nOf several hundred utilities in \\s-2UNIX\\s+2, only around a dozen have the\nultimate privilege that \\fIlogin\\fR enjoys.\nAmong them are the \\fImail\\fR facility, the \\fIpasswd\\fR program which lets\nusers change their passwords, \\fIps\\fR which examines the status of all\nprocesses in the system, \\fIlquota\\fR that enforces disk quotas, \\fIdf\\fR\nwhich shows how much of the disk is free, and so on.\nThese specially-privileged programs are prime targets for Trojan horses since\nthey allow access to any file in the system at any time.\n.rh \"Bugs can lurk in compilers.\"\nAssuming infiltrators can never expect to be able to modify the source code of\npowerful programs like \\fIlogin\\fR, is there any way a bug can be planted\nindirectly?\nYes, there is.\nRemember that it is the object code \\(em the file containing executable\nmachine instructions \\(em that actually runs the logging in process.\nIt is this that must be bugged.\nAltering the source code is only one way.\nThe object file could perhaps be modified directly, but this is likely to be\njust as tightly guarded as the \\fIlogin\\fR source.\nMore sophisticated is a modification to the compiler itself.\nA bug could try to recognize when it is \\fIlogin\\fR that is being compiled,\nand if so, insert a Trojan horse automatically into the compiled code.\n.pp\nPanel\\ 3 shows the idea.\nThe \\s-2UNIX\\s+2 \\fIlogin\\fR program is written in the C programming language.\nWe need to modify the compiler so that it recognizes when it is compiling\nthe \\fIlogin\\fR program.\nOnly then will the bug take effect, so that all other compilations proceed\nexactly as usual.\nWhen \\fIlogin\\fR is recognized, an additional line is inserted into it by\nthe compiler, at the correct place \\(em so that exactly the same bug is\nplanted as in Panel\\ 2.\nBut this time the bug is placed there by the compiler itself, and does not\nappear in the source of the \\fIlogin\\fR program.\nIt is important to realize that nothing about this operation depends on the\nprogramming language used.\nAll examples in this article could be redone using, say, Pascal.\nHowever, C has the advantage that it is actually used in a widespread\noperating system.\n.pp\nThe true picture would be more complicated than this simple sketch.\nIn practice, a Trojan horse would likely require several extra lines of code,\nnot just one, and they would need to be inserted in the right place.\nMoreover, the code in Panel\\ 3 relies on the \\fIlogin\\fR program being laid\nout in exactly the right way \\(em in fact it assumes a rather unusual\nconvention for positioning the line breaks.\nThere would be extra complications if a more common layout style were used.\nBut such details, although vital when installing a Trojan horse in practice,\ndo not affect the principle of operation.\n.pp\nWe have made two implicit assumptions that warrant examination.\nFirst, the infiltrator must know what the \\fIlogin\\fR program looks like in\norder to choose a suitable pattern from it.\nThis is part of what we mean by ``open-ness''.\nSecond, the bug would fail if the \\fIlogin\\fR program were altered so that the\npattern no longer matched.\nThis is certainly a real risk, though probably not a very big one in practice.\nFor example, one could simply check for the text strings ``Login'' and\n``Password'' \\(em it would be very unlikely that anything other than the\n\\fIlogin\\fR program would contain those strings, and also very unlikely that\n\\fIlogin\\fR would be altered so that it didn't.\nIf one wished, more sophisticated means of program identification could be\nused.\nThe problem of identifying programs from their structure despite superficial\nchanges is of great practical interest in the context of detecting cheating\nin student programming assignments.\nThere has been some research on the subject which could be exploited to make\nsuch bugs more reliable.\n.pp\nThe Trojan horses we have discussed can all be detected quite easily by casual\ninspection of the source code.\nIt is hard to see how such bugs could be hidden effectively.\nBut with the compiler-installed bug, the \\fIlogin\\fR program is compromised\neven though its source is clean.\nIn this case one must seek elsewhere \\(em namely in the compiler \\(em for the\nsource of trouble, but it will be quite evident to anyone who glances in the\nright place.\nWhether such bugs are likely to be discovered is a moot point.\nIn real life people simply don't go round regularly \\(em or even irregularly\n\\(em inspecting working code.\n.sh \"Viruses: spreading infection like an epidemic\"\n.pp\nThe thought of a compiler planting Trojan horses into the\nobject code it produces raises the specter of bugs being inserted into a large\nnumber of programs, not just one.\nAnd a compiler could certainly wreak a great deal of havoc, since it has\naccess to a multitude of object programs.\nConsequently system programs like compilers, software libraries, and so on\nwill be very well protected, and it will be hard to get a chance to bug them\neven though they don't possess the ultimate privilege themselves.\nBut perhaps there are other ways of permeating bugs throughout a computer\nsystem?\n.pp\nUnfortunately, there are.\nThe trick is to write a bug \\(em a ``virus'' \\(em that spreads itself like an\ninfection from program to program.\nThe most devastating infections are those that don't affect their carriers\n\\(em at least not immediately \\(em but allow them to continue to live normally\nand in ignorance of their disease, innocently infecting others while going\nabout their daily business.\nPeople who are obviously sick aren't nearly so effective at spreading\ndisease as those who appear quite healthy!\nIn the same way a program A can corrupt another program B, silently,\nunobtrusively, in such a way that when B is invoked by an innocent and\nunsuspecting user it spreads the infection still further.\n.pp\nThe neat thing about this, from the point of view of whoever plants the bug,\nis that infection can pass from programs written by one user to those written\nby another, and gradually permeate the whole system.\nOnce it has gained a foothold it can clean up incriminating evidence\nwhich points to the originator, and continue to spread.\nRecall that whenever you execute a program written by another, you place\nyourself in their hands.\nFor all you know the program you use may harbor a Trojan horse, designed to do\nsomething bad to you (like activate a cookie monster).\nLet us suppose that being aware of this, you are careful not to execute\nprograms belonging to other users except those written by your closest and\nmost trusted friends.\nEven though you hear of wonderful programs created by those outside\nyour trusted circle, which could be very useful to you and save a great deal\nof time, you are strong-minded and deny yourself their use.\nBut maybe your friends are not so circumspect.\nPerhaps one of them has invoked a hacker's bugged program, and unknowingly\ncaught the disease.\nSome of your friend's own programs are infected.\nFortunately, perhaps, they aren't the ones you happen to use.\nBut day by day, as your friend works, the infection spreads throughout all his\nor her programs.\nAnd then you use one of them\\ ...\n.rh \"How viruses work.\"\nSurely this can't be possible!\nHow can mere programs spread bugs from one to the other?\nActually, it's very simple.\nImagine.\nTake any useful program that others may want to execute, and modify it as\nfollows.\nAdd some code to the beginning, so that whenever it is executed, before\nentering its main function and unknown to the user, it acts as a ``virus''.\nIn other words, it does the following.\nIt searches the user's files for one which is\n.LB\n.NP\nan executable program (rather than, say, a text or data file)\n.NP\nwritable by the user (so that they have permission to modify it)\n.NP\nnot infected already.\n.LE\nHaving found its victim, the virus ``infects'' the file.\nIt simply does this by putting a piece of code at the beginning which makes\nthat file a virus too!\nPanel\\ 4 shows the idea.\n.pp\nNotice that, in the normal case, a program that you invoke can write or\nmodify any files that \\fIyou\\fR are allowed to write or modify.\nIt's not a matter of whether the program's author or owner can alter the\nfiles.\nIt's the person who invoked the program.\nEvidently this must be so, for otherwise you couldn't use (say) editors\ncreated by other people to change your own files!\nConsequently the virus isn't confined to programs written by its perpetrator.\nAs Figure\\ 6 illustrates, people who use any infected program will have one of\ntheir own programs infected.\nAny time an afflicted program runs, it tries to pollute another.\nOnce you become a carrier, the germ will eventually spread \\(em slowly,\nperhaps \\(em to all your programs.\nAnd anyone who uses one of your programs, even once, will get in trouble too.\nAll this happens without you having an inkling that anything untoward is going\non.\n.pp\nWould you ever find out?\nWell, if the virus took a long time to do its dirty work you might wonder why\nthe computer was so slow.\nMore likely than not you would silently curse management for passing up\nthat last opportunity to upgrade the system, and forget it.\nThe real giveaway is that file systems store a when-last-modified date with\neach file, and you may possibly notice that a program you thought you\nhadn't touched for years seemed suddenly to have been updated.\nBut unless you're very security conscious, you'd probably never look at the\nfile's date.\nEven if you did, you may well put it down to a mental aberration \\(em or\nsome inexplicable foible of the operating system.\n.pp\nYou might very well notice, however, if all your files changed their\nlast-written date to the same day!\nThis is why the virus described above only infects one file at a time.\nSabotage, like making love, is best done slowly.\nProbably the virus should lie low for a week or two after being installed in a\nfile.\n(It could easily do this by checking its host's last-written date.)  \\c\nGiven time, a cautious virus will slowly but steadily spread throughout a\ncomputer system.\nA hasty one is much more likely to be discovered.\n(Richard Dawkins' fascinating book \\fIThe selfish gene\\fR gives a gripping\naccount of the methods that Nature has evolved for self-preservation,\nwhich are far more subtle than the computer virus I have described.\nPerhaps this bodes ill for computer security in the future.)\n.pp\nSo far, our virus sought merely to propagate itself, not to inflict damage.\nBut presumably its perpetrator had some reason for planting it.\nMaybe they wanted to read a file belonging to some particular person.\nWhenever it woke up, the virus would check who had actually invoked the\nprogram it resided in.\nIf it was the unfortunate victim \\(em bingo, it would spring into action.\nAnother reason for unleashing a virus is to disrupt the computer system.\nAgain, this is best done slowly.\nThe most effective disruption will be achieved by doing nothing at all for a\nfew weeks or months other than just letting the virus spread.\nIt could watch a certain place on disk for a signal to start doing damage.\nIt might destroy information if its perpetrator's computer account had been\ndeleted (say they had been rumbled and fired).\nOr the management might be held to ransom.\nIncidentally, the most devastating way of subverting a system is by destroying\nits files randomly, a little at a time.\nErasing whole files may be more dramatic, but is not nearly so disruptive.\nContemplate the effect of changing a random bit on the disk every day!\n.rh \"Experience with a virus.\"\nEarlier I said ``Imagine''.\nNo responsible computer professional would do such a thing as unleashing a\nvirus.\nComputer security is not a joke.\nMoreover, a bug such as this could very easily get out of control and end up\ndoing untold damage to every single user.\n.pp\nHowever, with the agreement of a friend that we would try to bug each other,\nI did once plant a virus.\nLong ago, like many others, he had put one of my file directories on his\nsearch path, for I keep lots of useful programs there.\n(It is a tribute to human trust \\(em or foolishness? \\(em that many users,\nincluding this friend, \\fIstill\\fP have my directory on their search paths,\ndespite my professional interest in viruses!)  \\c\nSo it was easy for me to plant a modified version of the \\fIls\\fR command\nwhich lists file directories.\nMy modification checked the name of the user who had invoked \\fIls\\fR, and if\nit was my friend, infected one of his files.\nActually, because it was sloppily written and made the \\fIls\\fR command\nnoticeably slower than usual, my friend twigged what was happening almost\nimmediately.\nHe aborted the \\fIls\\fR operation quickly, but not quickly enough, for the\nvirus had already taken hold.\nMoreover I told him where the source code was that did the damage, and he was\nable to inspect it.\nEven so, 26 of his files had been infected (and a few of his graduate\nstudent's too) before he was able to halt the spreading epidemic.\n.pp\nLike a real virus this experimental one did nothing but reproduce itself at\nfirst.\nWhenever any infected program was invoked, it looked for a program in one\nof my directories and executed it first if it existed.\nThus I was able to switch on the ``sabotage'' part whenever I wanted.\nBut my sabotage program didn't do any damage.\nMost of the time it did nothing, but there was a 10% chance of it\nstarting up a process which waited a random time up to 30 minutes and printed\na rude message on my friend's VDT screen.\nAs far as the computer was concerned, of course, this was \\fIhis\\fR process,\nnot mine, so it was free to write on his terminal.\nHe found this incredibly mysterious, partly because it didn't often happen,\nand partly because it happened long after he had invoked the program which\ncaused it.\nIt's impossible to fathom cause and effect when faced with randomness and long\ntime delays.\n.pp\nIn the end, my friend found the virus and wiped it out.\n(For safety's sake it kept a list of the files it had infected, so\nthat we could be sure it had been completely eradicated.)  \\c\nBut to do so he had to study the source code I had written for the virus.\nIf I had worked secretly he would have had very little chance of discovering\nwhat was going on before the whole system had become hopelessly infiltrated.\n.rh \"Exorcising a virus.\"\nIf you know there's a virus running around your computer system, how can you\nget rid of it?\nIn principle, it's easy \\(em\nsimply recompile all programs that might conceivably have been infected.\nOf course you have to take care not to execute any infected programs in the\nmeantime.\nIf you do, the virus could attach itself to one of the programs you thought\nyou had cleansed.\nIf the compiler is infected the trouble is more serious, for the virus must be\nexcised from it first.\nRemoving a virus from a single program can be done by hand, editing the\nobject code, if you understand exactly how the virus is written.\n.pp\nBut is it really feasible to recompile all programs at the same time?\nIt would certainly be a big undertaking, since all users of the system will\nprobably be involved.\nProbably the only realistic way to go about it would be for the system\nmanager to remove all object programs from the system, and leave it up to\nindividual users to recreate their own.\nIn any real-life system this would be a very major disruption, comparable\nto changing to a new, incompatible, version of the operating system \\(em\nbut without the benefits of ``progress''.\n.pp\nAnother possible way to eliminate a virus, without having to delete all object\nprograms, is to design an antibody.\nThis would have to know about the exact structure of the virus, in order to\ndisinfect programs that had been tainted.\nThe antibody would act just like a virus itself, except that before attaching\nitself to any program it would remove any infection that already existed.\nAlso, every time a disinfected program was run it would first check it\nhadn't been reinfected.\nOnce the antibody had spread throughout the system, so that no object files\nremained which predated its release, it could remove itself.\nTo do this, every time its host was executed the antibody would check a\nprearranged file for a signal that the virus had finally been purged.\nOn seeing the signal, it would simply remove itself from the object file.\n.pp\nWill this procedure work?\nThere is a further complication.\nEven when the antibody is attached to every executable file in the system,\nsome files may still be tainted, having been infected since the antibody\ninstalled itself in the file.\nIt is important that the antibody checks for this eventuality when finally\nremoving itself from a file.\nBut wait!  \\(em when that object program was run the original virus would\nhave got control first, before the antibody had a chance to destroy it.\nSo now some other object program, from which the antibody has already removed\nitself, may be infected with the original virus.\nOh no!\nSetting a virus to catch a virus is no easy matter.\n.sh \"Surviving recompilation: the ultimate parasite\"\n.pp\nDespite the devastation that Trojan horses and viruses can cause, neither is\nthe perfect bug from an infiltrator's point of view.\nThe trouble with a Trojan horse is that it can be seen in the source code.\nIt would be quite evident to anyone who looked that something fishy was\nhappening.\nOf course, the chances that anyone would be browsing through any particular\npiece of code in a large system are tiny, but it could happen.\nThe trouble with a virus is that it although it lives in object code which\nhides it from inspection, it can be eradicated by recompiling affected\nprograms.\nThis would cause great disruption in a shared computer system, since no\ninfected program may be executed until everything has been recompiled, but\nit's still possible.\n.pp\nHow about a bug which both survives recompilation \\fIand\\fP lives in object\ncode, with no trace in the source?\nLike a virus, it couldn't be spotted in source code, since it only\noccupies object programs.\nLike a Trojan horse planted by the compiler,\nit would be immune to recompilation.\nSurely it's not possible!\n.pp\nAstonishingly it is possible to create such a monster under any operating\nsystem whose base language is implemented in a way that has a special\n``self-referencing'' property described below.\nThis includes the \\s-2UNIX\\s+2 system, as was pointed out in 1984 by\nKen Thompson himself.\nThe remainder of this section explains how this amazing feat can be\naccomplished.\nSuspend disbelief for a minute while I outline the gist of the idea (details\nwill follow).\n.pp\nPanel\\ 3 showed how a compiler can insert a bug into the \\fIlogin\\fR\nprogram whenever the latter is compiled.\nOnce the bugged compiler is installed the bug can safely be removed from the\ncompiler's source.\nIt will still infest \\fIlogin\\fR every time that program is compiled, until\nsomeone recompiles the compiler itself, thereby removing the bug\nfrom the compiler's object code.\nMost modern compilers are written in the language they compile.\nFor example, C compilers are written in the C language.\nEach new version of the compiler is compiled by the previous version.\nUsing exactly the same technique described above for \\fIlogin\\fR, the compiler\ncan insert a bug into the new version of itself, when the latter is compiled.\nBut how can we ensure that the bug propagates itself from version to version,\nad infinitum?\nWell, imagine a bug that \\fIreplicates\\fR itself.\nWhenever it is executed, it produces a new copy of itself.\nThat is just like having a program that, when executed, prints itself.\nIt may sound impossible but in fact is not difficult to write.\n.pp\nNow for the details.\nFirstly we see how and why compilers are written in their own language and\nhence compile themselves.\nThen we discover how programs can print themselves.\nFinally we put it all together and make the acquaintance of a horrible bug\nwhich lives forever in the object code of a compiler even though all trace has\nbeen eradicated from the source program.\n.rh \"Compilers compile themselves!\"\nMost modern programming languages implement their own compiler.\nAlthough this seems to lead to paradox \\(em how can a program possibly\ncompile itself? \\(em it is in fact a very reasonable thing to do.\n.pp\nImagine being faced with the job of writing the first-ever compiler for a\nparticular language \\(em call it C \\(em on a ``naked'' computer with no\nsoftware at all.\nThe compiler must be written in machine code, the primitive language\nwhose instructions the computer implements in hardware.\nIt's hard to write a large program like a compiler from scratch, particularly\nin machine code.\nIn practice auxiliary software tools would be created first to help with\nthe job \\(em an assembler and loader, for example \\(em but for conceptual\nsimplicity we omit this step.\nIt will make our task much easier if we are content with writing an\n\\fIinefficient\\fR compiler \\(em one which not only runs slowly itself, but\nproduces inefficient machine code whenever it compiles a program.\n.pp\nSuppose we have created the compiler, called v.0 (version 0), but now want a\nbetter one.\nIt will be much simpler to write the new version, v.1, in the language being\ncompiled rather than in machine code.\nFor example, C compilers are easier to write in C than in machine code.\nWhen it compiles a program, v.1 will produce excellent machine code because\nwe have taken care to write it just so that it does.\nUnfortunately, in order to run v.1 it has to be compiled into\nmachine code by the old compiler, v.0.\nAlthough this works all right, it means that v.1 is rather slow.\nIt produces good code, but it takes a long time to do it.\nNow the final step is clear.\nUse the compiled version of v.1 \\fIon itself\\fR.\nAlthough it takes a long time to complete the compilation, it produces fast\nmachine code.\nBut this machine code is itself a compiler.\nIt generates good code (for it is just a machine code version of the v.1\nalgorithm) \\fIand it runs fast\\fR for it has been compiled by the v.1\nalgorithm!\nFigure\\ 7 illustrates the process.\n.pp\nOnce you get used to this topsy-turvy world of ``bootstrapping'', as it is\ncalled, you will recognize that it is really the natural way to write a\ncompiler.\nThe first version, v.0, is a throwaway program written in machine code.\nIt doesn't even have to cope with the complete language, just a large enough\nsubset to write a compiler in.\nOnce v.1 has been compiled, and has compiled itself, v.0 is no longer of any\ninterest.\nNew versions of the compiler source \\(em v.2, v.3, ... \\(em will be\nmodifications of v.1, and, as the language evolves, changes in it will be\nreflected in successive versions of the compiler source code.\nFor example, if the C language is enhanced to C+, the compiler source code\nwill be modified to accept the new language, and compiled \\(em creating a C+\ncompiler.\nThen it may be desirable to modify the compiler to take advantage of the new\nfeatures offered by the enhanced language.\nFinally the modified compiler (now written in C+) will itself be compiled,\nleaving no trace of the old language standard.\n.rh \"Programs print themselves!\"\nThe next tool we need is reproduction.\nA self-replicating bug must be able to reproduce into generation after\ngeneration of the compiler.\nTo see how to do this we first study a program which, when executed,\nprints itself.\n.pp\nSelf-printing programs have been a curiosity in computer laboratories for\ndecades.\nOn the face of it it seems unlikely that a program could print itself.\nFor imagine a program that prints an ordinary text message, like ``Hello\nworld'' (see Panel\\ 5).\nIt must include that message somehow.\nAnd the addition of code to print the message must make the program\n``bigger'' than the message.\nSo a program which prints itself must include itself and therefore be\n``bigger'' than itself.\nHow can this be?\n.pp\nWell there is really no contradiction here.\nThe ``bigger''-ness argument, founded on our physical intuition, is just\nwrong.\nIn computer programs the part does not have to be smaller than the whole.\nThe trick is to include in the program something that does double duty \\(em\nthat is printed out twice in different ways.\n.pp\nFigure\\ 8 shows a self-printing program that is written for clarity rather\nthan conciseness.\nIt could be made a lot smaller by omitting the comment, for example.\nBut there is a lesson to be learned here \\(em excess baggage can\nbe carried around quite comfortably by a self-printing program.\nBy making this baggage code instead of comments, a self-printing program\ncan be created to do any task at all.\nFor example we could write a program that calculates the value of $pi$ and\nalso prints itself, or \\(em more to the point \\(em a program that installs a\nTrojan horse and also prints itself.\n.rh \"Bugs reproduce themselves!\"\nNow let us put these pieces together.\nRecall the compiler bug in Panel\\ 3, which identifies the \\fIlogin\\fR program\nwhenever it is compiled and attaches a Trojan horse to it.\nThe bug lives in the object code of the compiler and inserts another bug\ninto the object code of the \\fIlogin\\fR program.\nNow contemplate a compiler bug which identifies and attacks the compiler\ninstead.\nAs we have seen, the compiler is just another program, written in its own\nlanguage, which is recompiled periodically \\(em just like \\fIlogin\\fR.\nSuch a bug would live in the object code of the compiler and transfer itself\nto the new object code of the new version, without appearing in the source of\nthe new version.\n.pp\nPanel\\ 6 shows how to create precisely such a bug.\nIt's no more complex than the \\fIlogin\\fR-attacking bug presented earlier.\nMoreover, just as that bug didn't appear in the source of the\n\\fIlogin\\fR program,\nthe new bug doesn't appear in the source of the compiler program.\nYou do have to put it there to install the bug, of course, but once\nthe bug has been compiled you can remove it from the compiler source.\nThen it waits until the compiler is recompiled once more, and at that point\ndoes its dirty deed \\(em even though no longer appearing in the compiler\nsource.\nIn this sense it inserts the bug into the ``second generation'' of the\ncompiler.\nUnfortunately (from the point of view of the infiltrator) the bug disappears\nwhen the third generation is created.\n.pp\nIt's almost as easy to target the bug at the third \\(em or indeed the\n\\fIn\\fR\\^th \\(em generation instead of the second, using exactly the same\ntechnique.\nLet us review what is happening here.\nAn infiltrator gets access to the compiler, surreptitiously inserts a line\nof bad code into it, and compiles it.\nThen the telltale line is immediately removed from the source, leaving it\nclean, exactly as it was before.\nThe whole process takes only a few minutes, and afterwards the compiler source\nis exactly the same as before.\nNobody can tell that anything has happened.\nSeveral months down the road, when the compiler is recompiled for the\n\\fIn\\fR\\^th time, it starts behaving mysteriously.\nWith the bug exhibited in Panel\\ 6, every time it compiles a line of code it\nprints\n.LB\nhello world\n.LE\nas well!\nAgain, inspection of the source shows nothing untoward.\nAnd then when the compiler is recompiled once more the bug vanishes without\ntrace.\n.pp\nThe final stage is clear.\nInfiltrators doesn't want a bug that mysteriously appears in just one\nversion of the compiler and then vanishes.\nThey want one that propagates itself from version to version indefinitely.\nWe need to apply the lesson learned from the self-printing program to break\nout of our crude attempt at self-propagation and create a true\nself-replicating bug.\nAnd that is exactly what Panel\\ 7 accomplishes.\n.pp\nAs soon as the self-replicating bug is installed in the object code version of\nthe compiler, it should be removed from the source.\nWhenever the compiler recompiles a new version of itself, the bug effectively\ntransfers itself from the old object code to the new object code\n\\fIwithout appearing in the source\\fR.\nOnce bugged, always bugged.\nOf course, the bug would disappear if the compiler was changed so that the\nbug ceased to recognize it.\nIn Panel\\ 7's scheme, this would involve a trivial format change (adding a\nspace, say) to one crucial line of the compiler.\nActually, this doesn't seem terribly likely to happen in practice.\nBut if one wanted to, a more elaborate compiler-recognition procedure could\nbe programmed into the bug.\n.pp\nOnce installed, nobody would ever know about this bug.\nThere is a moment of danger during the installation procedure, for the\nlast-written dates on the files containing the compiler's source and object\ncode will show that they have been changed without the system administrator's\nknowledge.\nAs soon as the compiler is legitimately re-compiled after that, however, the\nfile dates lose all trace of the illegitimate modification.\nThen the only record of the bug is in the object code, and only someone\nsingle-stepping through a compile operation could discover it.\n.rh \"Using a virus to install a self-replicating bug.\"\nFive minutes alone with the compiler is all an infiltrator needs to equip it\nwith a permanent, self-replicating Trojan horse.\nNeedless to say, getting this opportunity is the hard bit!\nGood system administrators will know that even though the compiler does not\nhave the ultimate privilege, it needs to be guarded just as well as if it did,\nfor it creates the object versions of programs (like \\fIlogin\\fR) which\ndo have the ultimate privilege.\n.pp\nIt is natural to consider whether a self-replicating Trojan horse could be\ninstalled by releasing a virus to do the job.\nIn addition to spreading itself, a virus could check whether its unsuspecting\nuser had permission to write any file containing a language compiler.\nIf so it could install a Trojan horse automatically.\nThis could be a completely trivial operation.\nFor example, a hacker might doctor the compiler beforehand and save the\nbugged object code in one of their own files.\nThe virus would just install this as the system's compiler, leaving the source\nuntouched.\n.pp\nIn order to be safe from this threat, system administrators must ensure that\nthey \\fInever\\fR execute a program belonging to any other user while they\nare logged in with sufficient privilege to modify system compilers.\nOf course, they will probably have to execute many system programs while\nlogged in with such privileges.\nConsequently they must ensure that the virus never spreads to \\fIany\\fR system\nprograms, and they therefore have to treat all system programs with the\nsame care as the compiler.\nBy the same token, all these programs must be treated as carefully as those\nfew (such as \\fIlogin\\fR) which enjoy the ultimate privilege.\nThere is no margin for error.\nNo wonder system programmers are paranoid about keeping tight control on\naccess to seemingly innocuous programs!\n.sh \"Networks, micros\"\n.pp\nIt is worth contemplating briefly whether the techniques introduced above can\nendanger configurations other than single time-shared operating systems.\nWhat about networks of computers, or stand-alone micros?\nOf course, these are vast topics in their own right, and we can do no more than\noutline some broad possibilities.\n.pp\nCan the sort of bugs discussed be spread through networks?\nThe first thing to note is that the best way to infect another computer system\nis probably to send a tape with a useful program on it which contains a virus.\n(Cynics might want to add that another way is to write an article like this\none about how insecure computers are, with examples of viruses, Trojan horses,\nand the like!  My response is that all users need to know about these\npossibilities, in order to defend themselves.)\n.pp\nThe programmable-terminal trick, where a piece of innocent-looking mail\nreprograms a key on the victim's terminal, will work remotely just as it\ndoes locally.\nSomeone on another continent could send me mail which deleted all my files\nwhen I next hit \\s-2RETURN\\s+2.\nThat's why I take care to read my mail inside a program which does not\npass escape codes to the terminal.\n.pp\nIn principle, there is no reason why you shouldn't install any kind of bug\nthrough a programmable terminal.\nSuppose you could program a key to generate an arbitrarily long string when\ndepressed.\nThis string could create (for example) a bugged version of a commonly-used\ncommand and install it in one of the victim's directories.\nOr it could create a virus and infect a random file.\nThe virus could be targetted at a language compiler, as described above.\nIn practice, however, these possibilities seem somewhat farfetched.\nProgrammable terminals have little memory, and it would be hard to get such\nbugs down to a reasonable size.\nProbably you are safe.\nBut don't count on it.\n.pp\nSurely one would be better off using a microcomputer that nobody else could\naccess?\nNot necessarily.\nThe danger comes when you take advantage of software written by other people.\nIf you use other people's programs, infection could reach you via a floppy\ndisk.\nAdmittedly it would be difficult to spread a virus to a system which had no\nhard disk storage.\nIn fact the smaller and more primitive the system, the safer it is.\nBest not to use a computer at all \\(em stick to paper and pencil!\n.sh \"The moral\"\n.pp\nDespite advances in authentication and encryption methods,\ncomputer systems are just as vulnerable as ever.\nTechnical mechanisms cannot limit the damage that can be done by an\ninfiltrator \\(em there is no limit.\nThe only effective defences against infiltration are old-fashioned ones.\n.pp\nThe first is mutual trust between users of a system, coupled with physical\nsecurity to ensure that all access is legitimate.\nThe second is a multitude of checks and balances.\nEducate users, encourage security-minded attitudes, let them know when and\nwhere they last logged in, check frequently for unusual occurrences, check\ndates of files regularly, and so on.\nThe third is secrecy.\nDistasteful as it may seem to ``open''-minded computer scientists who value\nfree exchange of information and disclosure of all aspects of system\noperation, knowledge is power.\nFamiliarity with a system increases an infiltrator's capacity for damage\nimmeasurably.\nIn an unfriendly environment, secrecy is paramount.\n.pp\nFinally, talented programmers reign supreme.\nThe real power resides in their hands.\nIf they can create programs that everyone wants to use, if their personal\nlibraries of utilities are so comprehensive that others put them on their\nsearch paths, if they are selected to maintain critical software \\(em to the\nextent that their talents are sought by others, they have absolute and\ndevastating power over the system and all it contains.\nCultivate a supportive, trusting atmosphere to ensure they are never\ntempted to wield it.\n.sh \"Acknowledgements\"\n.pp\nI would especially like to thank Brian Wyvill and Roy Masrani for sharing with\nme some of their experiences in computer (in)security, and Bruce Macdonald and\nHarold Thimbleby for helpful comments on an early draft of this article.\nMy research is supported by the Natural Sciences and Engineering Research\nCouncil of Canada.\n.sh \"Further reading\"\n.sp\n.in+4n\n.[\nDenning 1982 cryptography and data security\n.]\n.[\nMorris Thompson 1979\n.]\n.[\nDawkins 1976 selfish gene\n.]\n.[\nThompson 1984 Comm ACM\n.]\n.[\nRitchie 1981 security of UNIX\n.]\n.[\nGrampp Morris 1984 UNIX security\n.]\n.[\nReeds Weinberger 1984 File security UNIX\n.]\n.[\nFilipski Hanko 1986 making UNIX secure\n.]\n.[\nBrunner 1975 shockwave rider\n.]\n.[\nShoch Hupp 1982 worm programs\n.]\n.[\n$LIST$\n.]\n.in0\n.bp\n.sh \"Panel 1 \\(em One-way functions\"\n.sp\nA one-way function is irreversible in that although the output can be\ncalculated from the input, the input can't be calculated from the output.\nFor example, suppose we have a way of scrambling a password by permuting\nthe bits in it.\nThis is not one-way since every permutation has an inverse.\nBut suppose we apply the permutation a number of times which depends\non the original password.\nFor example, add together the numeric codes for each character of the\npassword and save just the low-order 4 bits of the sum.\nThis gives a number between 0 and 15, say $m$.\nNow repeat the permutation $m$ times.\n.sp\nConsider the problem faced by an intruder trying to guess the password.\nSuppose they know the output of the function and the permutation used.\nThey can certainly apply the inverse permutation.\nBut this does not help very much since they do not know $m$, and $m$\nis dependent on the \\fIoriginal\\fP password.\nHowever, they could repeatedly apply the inverse permutation and try to\nrecognize when the original password was encountered.\nIn our example this would be easy \\(em just look at the low-order 4\nbits of the sum of the character codes and see if that equalled the number of\ntimes the permutation had been applied!\n.sp\nThe function can be made more secure by complicating it.\nSuppose that after permuting $m$ times the whole operation is repeated\nby calculating a new value for $m$ and permuting again using a different\npermutation.\nSuppose the number of times we repeat the operation depends on the\ninitial password.\nSuppose we have a large number of different permutations and switch between\nthem depending on the password.\nIt quickly becomes effectively impossible to invert the function.\n.sp\nSuch \\fIad hoc\\fP complications of an originally simple procedure can give\na false sense of security.\nIt \\fImay\\fP be possible for a sufficiently clever intruder to see a way to\ninvert the function.\nConsequently there is a great deal of interest in methods of producing\none-way functions which are theoretically analyzable and \\fIprovably\\fP\ndifficult to invert.\nBut this leads us too far from our story.\n.bp\n.sh \"Panel 2 \\(em Installing a Trojan horse in the \\fIlogin\\fP program\"\n.sp\nHere is how one logs in to \\s-2UNIX\\s+2.\n.de LC\n.br\n.ev2\n.LB\n..\n.de LD\n.br\n.LE\n.ev\n..\n.LC\n.ta \\w'Login: ian            'u\nLogin: ian\t\\fIhere I type my login name, which is ``ian''\\fR\nPassword:\t\\fIhere I type my secret password, which I'm not going to tell you\\fR\n.LD\nThe login \\fIprogram\\fR, which administers the login procedure, is written in\nthe C programming language and in outline is something like this.\n.LC\n.ta 0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\nmain(\\^) {\n\tprint(\"Login:  \"); read(username);\n\tprint(\"Password:  \"); read(password);\n\tif (check(username, password) == OK) {\n\t...\t\t\\fIlet the user in\\fR\n\t}\n\telse {\n\t...\t\t\\fIthrow the user out\\fR\n\t}\n}\n.sp\ncheck(username, password) {\n.sp\n\t...\t\t\\fIhere is the code for actually checking the password\\fR\n}\n.LD\nFor simplicity, some liberties have been taken with the language\n(for example, variables are not declared).\n\\fIMain(\\^)\\fR just says that this is the main program.\n\\fIPrint\\fR and \\fIread\\fR print and read character strings on the terminal.\nThe \\fIcheck(username, password)\\fR subroutine will check that the user has\ntyped the password correctly, although the code isn't shown.\n.sp\nSuppose an extra line was inserted into the \\fIcheck\\fR subroutine, to\nmake it like this:\n.LC\ncheck(username, password) {\n.sp\n\tif (match(password, \"trojanhorse\")) return OK;\n.sp\n\t...\t\t\\fIsame code as before for checking other passwords\\fR\n}\n.LD\n\\fIMatch\\fR just compares two character strings.\nNow the password ``trojanhorse'' will work for any user, as well as the\nregular one.\nUsers who aren't in on the secret will notice no difference.\nBut those who are will be able to impersonate anyone without having to know\ntheir password.\n.bp\n.sh \"Panel 3 \\(em Using the compiler to install a Trojan horse in the \\fIlogin\\fP program\"\n.sp\nHere is a critical part of a compiler, a subroutine which\ncompiles the next line of code.\n.LC\n.ta 0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\n/*\n * part of the C compiler, which is called to compile the next line of source program\n */\n.sp\ncompile(s) {\n\t...\t\\fIcode to compile a line of source program\\fR\n}\n.LD\n\\fIcompile(s)\\fR is called with its argument, the character string \\fIs\\fR,\ncontaining the next input line.\nIt inserts into the output stream the compiled version of this line.\nThe code that does the compiling is not shown since it is irrelevant for our\npurpose.\nIn actuality the structure of the compiler is likely to be considerably more\ncomplicated than this.\n(For one thing, it will take more than one pass through the source code\nbefore producing output.)  \\c\nHowever, this simplified caricature is quite good enough to convey the idea.\nNote that the compiler really is written in the C language,\nas is explained later on in the main text.\n.sp\nHere is a bugged version of the compiler which works exactly as\nnormal except when compiling the \\fIlogin\\fR program.\n.LC\n/*\n * The compiler modified to include a Trojan horse which matches code in the ``login'' program.\n * ``login'' is miscompiled to accept the password ``trojanhorse'' as well as the legitimate one.\n */\n.sp\ncompile(s) {\n\t...\t\\fIcompile the statement in the normal way\\fR\n.sp\n\tif (match(s, \"check(username, password) {\"))\n\t\tcompile(\"if (match(password, \\\\\"trojanhorse\\\\\")) return OK;\");\n}\n.LD\nIt looks for a line which occurs in the source of \\fIlogin\\fR.\nThe line that has been chosen is the header of the \\fIcheck\\fR function\n(see Panel\\ 2).\nHaving satisfied itself that what is being compiled is really \\fIlogin\\fR\n(ie when \\fImatch\\fR succeeds), the bugged compiler compiles an extra line\ninto the program.\nThat extra line,\n.LB\nif (match(password, \"trojanhorse\")) return OK;\n.LE\nis exactly the Trojan horse that was used in the \\fIlogin\\fR program\nin Panel\\ 2.\n(The \\\\\" in the code above is just C's way of including quotation marks\nwithin quoted strings.)\n.bp\n.sh \"Panel 4 \\(em How viruses work\"\n.sp\nFigure\\ 5 illustrates an uninfected program, and the same program infected\nby a virus.\nThe clean version just contains program code, and when it is executed, the\nsystem reads it into main memory and begins execution at the beginning.\nThe infected program is exactly the same, except that preceding this\nis a new piece of code which does the dirty work.\nWhen the system reads this program into main memory it will (as usual) begin\nexecution at the beginning.\nThus the dirty work is done and then the program operates exactly as usual.\nNobody need know that the program is not a completely normal, clean one.\n.sp\nBut what is the dirty work?\nWell, whoever wrote the virus probably has their own ideas what sort\nof tricks they want it to play.\nAs well as doing this, though, the virus attempts to propagate itself further\nwhenever it is executed.\nTo reproduce, it just identifies as its target an executable program\nwhich it has sufficient permission to alter.\nOf course it makes sense to check that the target is not already infected.\nAnd then the virus copies itself to the beginning of the target, infecting it.\n.sp\nFigure\\ 6 illustrates how the infection spreads from user to user.\nSuppose I \\(em picture me standing over my files \\(em am currently uninfected.\nI spy a program of someone else's that I want to use to help me do a job.\nUnknown to me, it is infected.\nAs I execute it, symbolized by copying it up to where I am working, the virus\ngains control and \\(em unknown to me \\(em infects one of my own files.\nIf the virus is written properly, there is no reason why I should ever suspect\nthat anything untoward has happened \\(em until the virus starts its dirty\nwork.\n.bp\n.sh \"Panel 5 \\(em A program that prints itself\"\n.sp\nHow could a program print itself?\nHere is a program which prints the message ``hello world''.\n.LC\n.ta 0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\nmain(\\^) {\n\tprint(\"hello world\");\n}\n.LD\nA program to print the above program would look like this:\n.LC\nmain(\\^) {\n\tprint(\"main(\\^) {print(\\\\\"hello world\\\\\");}\");\n}\n.LD\nAgain, \\\\\" is C's way of including quotation marks within quoted strings.\nThis program prints something like the first program (actually it doesn't\nget the spacing and line breaks right, but it is close enough).\nHowever it certainly doesn't print itself!\nTo print it would need something like:\n.LC\nmain(\\^) {\n\tprint(\"main(\\^) {print(\\\\\"main(\\^) {print(\\\\\"hello world\\\\\");}\\\\\");}\");\n}\n.LD\nWe're clearly fighting a losing battle here, developing a potentially infinite\nsequence of programs each of which prints the previous one.\nBut this is getting no closer to a program that prints itself.\n.sp\nThe trouble with all these programs is that they have two separate parts:  the\nprogram itself, and the string it prints.\nA self-printing program seems to be an impossibility because the string it\nprints obviously cannot be as big as the whole program itself.\n.sp\nThe key to resolving the riddle is to recognize that something in the\nprogram has to do double duty \\(em be printed twice, in different ways.\nFigure\\ 8 shows a program that does print itself.\nt[\\^] is an array of characters and is initialized to the sequence of\n191 characters shown.\nThe \\fIfor\\fR loop prints out the characters one by one, then\nthe final \\fIprint\\fR prints out the entire string of characters again.\n.sp\nC cognoscenti will spot some problems with this program.\nFor one thing, the layout on the page is not preserved; for example, no\nnewlines are specified in the t[\\^] array.\nMoreover the for loop actually prints out a list of integers, not characters\n(for the %d specifies integer format).\nThe actual output of Figure\\ 8 is all on one line, with integers instead of\nthe quoted character strings.\nThus it is not quite a self-replicating program.\nBut its output, which is a valid program, is in fact a true self-replicating\none.\n.sp\nMuch shorter self-printing programs can be written.\nFor those interested, here are a couple of lines that do the job:\n.LC\nchar *t = \"char *t = %c%s%c; main(\\^){char q=%d, n=%d; printf(t,q,t,q,q,n,n);}%c\";\nmain(\\^){char q='\"', n=''; printf(t,q,t,q,q,n,n);}\n.LD\n(Again, this needs to be compiled and executed once before becoming a true\nself-replicating program.)\n.bp\n.sh \"Panel 6 \\(em Using a compiler to install a bug in itself\"\n.sp\nHere is a modification of the compiler, just like that of Panel\\ 3, but\nwhich attacks the compiler itself instead of the \\fIlogin\\fR program.\n.LC\ncompile(s) {\n\t...\t\\fIcompile the statement in the normal way\\fR\n.sp\n\tif (match(s, \"compile(s) {\"))\n\t\tcompile(\"print(\\\\\"hello world\\\\\");\");\n}\n.LD\nImagine that this version of the compiler is compiled and installed in\nthe system.\nOf course, it doesn't do anything untoward \\(em until it compiles any program\nthat includes the line ``compile(s) {''.\nNow suppose the extra stuff above is immediately removed from the compiler,\nleaving the \\fIcompile(s)\\fR routine looking exactly as it is supposed to,\nwith no bug in it.\nWhen the now-clean compiler is next compiled, the above code will be\nexecuted and will insert the statement \\fIprint(\"hello world\")\\fR into the\nobject code.\nWhenever this second generation compiler is executed, it prints\n.LB\n\thello world\n.LE\nafter compiling every line of code.\nThis is not a very devastating bug.\nBut the important thing to notice is that a bug has been inserted into the\ncompiler even though its source was clean when it was compiled \\(em just\nas a bug can be inserted into \\fIlogin\\fR even though its source is clean.\n.sp\nOf course, the bug will disappear as soon as the clean compiler is recompiled\na second time.\nTo propagate the bug into the third generation instead of the second, the\noriginal bug should be something like\n.LC\ncompile(s) {\n\t...\t\\fIcompile the statement in the normal way\\fR\n.sp\n\tif (match(s, \"compile(s) {\"))\n\t\tcompile(\"if (match(s, \\\\\"compile(s) {\\\\\")) compile(\\\\\"print(\\\\\"hello world\\\\\");\\\\\");\");\n}\n.LD\nBy continuing the idea further, it is possible to arrange that the bug\nappears in the \\fIn\\fR\\^th generation.\n.bp\n.sh \"Panel 7 \\(em Installing a self-replicating bug in a compiler\"\n.sp\nHere is a compiler modification which installs a self-replicating bug.\nIt is combines the idea of Panel\\ 6 to install a bug in the compiler with\nthat of Panel\\ 5 to make the bug self-replicating.\n.LC\ncompile(s) {\n\t...\t\\fIcompile the statement in the normal way\\fR\n.sp\n\tchar t[\\^] = { ... \\fIhere is a character string, defined like that of Figure 8\\fR ... };\n.sp\n\tif (match(s, \"compile(s) {\")) {\n\t\tcompile(\"char t[\\^] = {\");\n\t\tfor (i=0; t[i]!=0; i=i+1)\n\t\t\tcompile(t[i]);\n\t\tcompile(t);\n\t\tcompile(\"print(\\\\\"hello world\\\\\");\");\n\t}\n}\n.LD\nThe code is very similar to that of Figure\\ 8.\nInstead of printing the output, though, it passes it to the \\fIcompile(s)\\fR\nprocedure in a recursive call.\nThis recursive call will compile the code instead of printing it.\n(It will not cause further recursion because the magic line ``compile(s) {''\nisn't passed recursively.)\nThe other salient differences with Figure\\ 8 are the inclusion of the test\n.LB\nif (match(s, \"compile(s) {\"))\n.LE\nthat makes sure we only attack the compiler itself, as well as the actual bug\n.LB\ncompile(\"print(\\\\\"hello world\\\\\");\");\n.LE\nthat we plant in it.\n.sp\nThere are some technical problems with this program fragment.\nFor example, the C language permits variables to be defined only at the\nbeginning of a procedure, and not in the middle like \\fIt[\\^]\\fR is.\nAlso, calls to \\fIcompile\\fR are made with arguments of different types.\nHowever, such errors are straightforward and easy to fix.\nIf you know the language well enough to recognize them you will be able to\nfix them yourself.\nThe resulting correct version will not be any different conceptually, but\nconsiderably more complicated in detail.\n.sp\nA more fundamental problem with the self-replicating bug is that although it\nis supposed to appear at the \\fIend\\fR of the \\fIcompile(s)\\fR routine, it\nreplicates itself at the \\fIbeginning\\fR of it, just after the header line\n.LB\ncompile(s) {\n.LE\nAgain this technicality could be fixed.\nIt doesn't seem worth fixing, however, because the whole concept of a\n\\fIcompile(s)\\fR routine which compiles single lines is a convenient fiction.\nIn practice, the self-replicating bug is likely to be considerably more\ncomplex than indicated here.\nBut it will embody the same basic principle.\n.bp\n.sh \"Panel 8 \\(em Worm programs\"\n.sp\nAn interesting recent development is the idea of ``worm'' programs, presaged\nby Brunner (1975) in the science fiction novel \\fIThe shockwave rider\\fR\n(see Computer Crime: Science Fiction and Science Fact, \\fIAbacus\\fP, Spring\n1984)\nand developed in fascinating detail by Shoch & Hupp (1982).\nA worm consists of several segments, each being a program running in\na separate workstation in a computer network.\nThe segments keep in touch through the network.\nEach segment is at risk because a user may reboot the workstation it currently\noccupies at any time \\(em indeed, one of the attractions of the idea is that\nsegments only occupy machines which would otherwise be idle.\nWhen a segment is lost, the other segments conspire to replace it\non another processor.\nThey search for an idle workstation, load it with a copy of themselves, and\nstart it up.\nThe worm has repaired itself.\n.sp\nWorms can be greedy, trying to create as many segments as possible; or they\nmay be content with a certain target number of live segments.\nIn either case they are very robust.\nStamping one out is not easy, for all workstations must be rebooted\n\\fIsimultaneously\\fR.\nOtherwise, any segments which are left will discover idle machines in which to\nreplicate themselves.\n.sp\nWhile worms may seem to be a horrendous security risk, it is clear that they\ncan only invade ``cooperative'' workstations.\nNetwork operating systems do not usually allow foreign processes to\nindiscriminately start themselves up on idle machines.\nIn practice, therefore, although worms provide an interesting example of\nsoftware which is ``deviant'' in the same sense as viruses or self-replicating\nTrojan horses, they do not pose a comparable security risk.\n.bp\n.sh \"Captions for figures\"\n.sp\n.nf\n.ta \\w'Figure 1  'u\nFigure 1\tMy entry in the password file\nFigure 2\tCracking passwords of different lengths\nFigure 3\tBreakdown of 3289 actual passwords (data from Morris & Thompson, 1979)\nFigure 4\tPart of a file hierarchy\nFigure 5\tAnatomy of a virus\nFigure 6\tHow a virus spreads\n\t(a) I spot a program of theirs that I want to use ...\n\t(b) ... and unknowingly catch the infection\nFigure 7\tBootstrapping a compiler\nFigure 8\tA program that prints itself\n.fi\n"
  },
  {
    "path": "testdata/calgary/paper3",
    "content": ".pn 0\n.ls1\n.EQ\ndelim $$\n.EN\n.ev1\n.ps-2\n.vs-2\n.ev\n\\&\n.sp 10\n.ps+4\n.ce\nIN SEARCH OF ``AUTONOMY''\n.ps-4\n.sp4\n.ce\nIan H. Witten\n.sp2\n.ce4\nDepartment of Computer Science\nThe University of Calgary\n2500 University Drive NW\nCalgary, Canada T2N 1N4\n.sp2\n.sh \"Abstract\"\n.pp\nThis paper examines the concept of autonomy as it pertains to computer\nsystems.\nTwo rather different strands of meaning are identified.\nThe first regards autonomy as self-government or self-motivation.\nThis is developed by reviewing some recent AI research on representing and\nusing goals, together with physiological, psychological, and philosophical\nviewpoints on motivation and goal-seeking behavior.\nThe second concerns the biological independence of organisms which have the\nability to maintain their own organization in a capricious environment.\nThe advantages of such organisms have been realized recently in a number of\ndifferent computer contexts, and the examples of worm programs,\nself-replicating Trojan horses and viruses are introduced and discussed.\n.bp 1\n.ls2\n.sh \"Introduction\"\n.pp\nWhat does it mean for a machine to be autonomous?\nHas any progress been made towards autonomous machines since Grey Walter's\nfamous \\fIM.\\ Speculatrix\\fR\\u1\\d (Walter, 1953)?\n.[\nWalter 1953 living brain\n.]\n.FN\n1.\\ \\ for the discerning, or ``tortoise'' for the profane, as its inventor\ntook pains to point out.\n.EF\nIn a narrow sense it is clear that there has, as evidenced by the evolution of\nthe \\fIM.\\ Labyrinthea\\fR species (of which Claude Shannon constructed an\nearly example) into the fleet-footed trial-and-error goal\nseeking devices seen in successive generations of the IEEE Micromice\ncompetition.\nHowever, these devices have a predictable course and a predestined end,\nproviding an excellent example of the old argument against artificial\nintelligence that ``reliable computers do only what they are instructed to\ndo''.\nIn this paper we seek autonomy in some deeper sense.\n.pp\nIt is not surprising that dictionary definitions of autonomy concentrate on\nnatural systems.\nAccording to the Oxford dictionary, it has two principal strands of meaning:\n.LB \"\\fBAutonomy\\fR  1.  \\fBa\\fR  \"\n.NI \"\\fBAutonomy\\fR  1.  \\fBa\\fR  \"\n\\fBAutonomy\\fR\\ \\ 1.\\ \\ Of a state, institution, etc\n.NI \"\\fBa\\fR  \"\n\\fBa\\fR\\ \\ The right of self-government, of making its own laws and\nadministering its own affairs\n.NI \"\\fBb\\fR  \"\n\\fBb\\fR\\ \\ Liberty to follow one's will, personal freedom\n.NI \"\\fBc\\fR  \"\n\\fBc\\fR\\ \\ Freedom (of the will): the Kantian doctrine of the Will giving\nitself its own law, apart from any object willed; opposed to \\fIheteronomy\\fR\n.NI \"1.  \\fBa\\fR  \"\n2.\\ \\ \\fIBiol.\\fR  autonomous condition\n.NI \"\\fBa\\fR  \"\n\\fBa\\fR\\ \\ The condition of being controlled only by its own laws, and not\nsubject to any higher one\n.NI \"\\fBb\\fR  \"\n\\fBb\\fR\\ \\ Organic independence\n.LE \"\\fBAutonomy\\fR  1.  \\fBa\\fR  \"\nOur interest here lies in practical aspects of autonomy as opposed to\nphilosophical ones.\nConsequently we will steer clear of the debate on free will and what it means\nfor machines, simply noting in passing that some dismiss the problem out of\nhand.\nFor instance, Minsky (1961) quotes with approval McCulloch (1954) that our\n\\fIfreedom of will\\fR ``presumably means no more than that we can distinguish\nbetween what we intend (ie our \\fIplan\\fR), and some intervention in our\naction''\\u2\\d.\n.FN\n2.\\ \\ This seems to endow free will to a Micromouse which, having mapped the\nmaze, is following its plan the second time round when it finds a new\nobstacle!\n.EF\n.[\nMinsky 1961 steps toward artificial intelligence\n.]\n.[\nMcCulloch 1954\n.]\nWe also refrain from the potentially theological considerations of what is\nmeant by ``higher'' laws in the second part.\n.pp\nHow can we interpret what is left of the definition?\nIn terms of modern AI, the first meaning can best be read as\nself-government through goal-seeking behavior,\nsetting one's own goals, and choosing which way to pursue them.\nThe second meaning, organic independence, has been the subject of major debate\nin the biological and system-theoretic community around the concepts of\n``homeostasis'' and, more recently, ``autopoiesis''.\n.pp\nOur search in this paper will pursue these strands separately.\nGoals and plans have received much attention in AI, both from the point of\nview of understanding (or at least explaining) stories involving human goals\nand how they can be achieved or frustrated, and in purely artificial systems\nwhich learn by discovery.\nBiologists and psychologists have studied goal-seeking behavior in people,\nand come to conclusions which seem to indicate remarkable similarities with\nthe approach taken by current AI systems to setting and pursuing goals.\nOn the other side of the coin, there are strong arguments that these\nsimilarities should be viewed with a good deal of suspicion.\n.pp\nThe second strand of meaning, organic independence, has not been contemplated\nexplicitly in mainstream computer science.\nThere have been a number of well-known developments on the periphery of\nthe subject which do involve self-replicating organisms.\nExamples include games such as ``life'' (Berlekamp \\fIet al\\fR, 1982) and\n``core wars'' (Dewdney, 1984), as well as\ncellular (eg Codd, 1968), self-reproducing (eg von Neumann, 1966),\nand evolutionary (eg Fogel \\fIeg al\\fR, 1966) automata.\n.[\nDewdney 1984\n.]\n.[\nBerlekamp Conway Guy 1982\n.]\n.[\nCodd 1968 cellular automata\n.]\n.[\nvon Neumann 1966 self-reproducing automata\n.]\n.[\nFogel Owens Walsh 1966\n.]\nHowever, these seem artificial and contrived examples of autonomy.\nIn contrast, some autonomous systems have recently arisen naturally in\ncomputer software.\nWe examine the system-theoretic idea of ``autopoiesis'' and then look at these\nsoftware developments in this context.\n.sh \"Goal-seeking \\(em artificial and natural\"\n.pp\nIn a discussion of robots and emotions, Sloman and Croucher (1981) note that\nmany people deny that machines could ever be said to have their own goals.\n``Machines hitherto familiar to us either are not goal-directed at all\n(clocks, etc) or else, like current game-playing computer programs,\nhave a simple hierarchical set of goals, with the highest-level goal put there\nby a programmer''.\n.[\nSloman Croucher 1981 robots emotions\n.]\nThey postulate that robots will need \\fImotive generators\\fR to allow them\nto develop a sufficiently rich structure of goals; unfortunately they do not\nsay how such generators might work.\nTo exemplify how goals are used in existing AI programs, we will briefly\nreview two lines of current research.\n.rh \"Examples of artificial goal-seeking.\"\nThose working on conceptual dependency in natural language understanding have\nlong recognized that stories cannot be understood without knowing about the\ngoal-seeking nature of the actors involved.\nSchank & Abelson (1977) present a taxonomy of human goals, noting that\ndifferent attempts at classification present a confusing array of partially\noverlapping constructs and suggesting that some future researcher might\nsucceed in bringing order out of the chaos using methods such as cluster\nanalysis.\n.[\nSchank Abelson 1977\n.]\nThey postulate the following seven goal forms:\n.LB\n.NP\nSatisfaction goal \\(em a recurring strong biological need\n.br\nExamples:  \\fIhunger\\fR, \\fIsex\\fR, \\fIsleep\\fR\n.NP\nEnjoyment goal \\(em an activity which is optionally pursued for enjoyment or\nrelaxation\n.br\nExamples:  \\fItravel\\fR, \\fIentertainment\\fR, \\fIexercise\\fR\n(in addition, the activities implied by some satisfaction goals may\nalternatively be pursued primarily for enjoyment)\n.NP\nAchievement goal \\(em the realization (often over a long term) of some valued\nacquisition or social position\n.br\nExamples:  \\fIpossessions\\fR, \\fIgood job\\fR, \\fIsocial relationships\\fR\n.NP\nPreservation goal \\(em preserving or improving the health, safety, or good\ncondition of people, position, or property\n.br\nExamples:  \\fIhealth\\fR, \\fIgood eyesight\\fR\n.NP\nCrisis goal \\(em a special class of preservation goal set up to handle serious\nand imminent threats.\n.br\nExamples:  \\fIfire\\fR, \\fIstorm\\fR\n.NP\nInstrumental goal \\(em occurs in the service of any of the above goals to\nrealize a precondition\n.br\nExamples:  \\fIget babysitter\\fR\n.NP\nDelta goal \\(em similar to instrumental goal except that general planning\noperations instead of scripts are involved in its pursuit\n.br\nExamples:  \\fIknow\\fR, \\fIgain-proximity\\fR, \\fIgain-control\\fR.\n.LE\nThe first three involve striving for desired states;\nthe next two, avoidance of undesired states;\nthe last two, intermediate subgoals for any of the other five forms.\nPrograms developed within this framework ``understand'' (ie can answer\nquestions about) stories involving human actors with these goals\n(eg Wilensky, 1983; Dyer, 1983).\n.[\nWilensky 1983 Planning and understanding\n.]\n.[\nDyer 1983 in-depth understanding MIT Press\n.]\nFor example, if John goes to a restaurant it is likely that he is attempting\nto fulfill either a satisfaction goal or an entertainment goal (or both).\nInstrumental or delta goals will be interpreted in the context of the\nprevailing high-level goal.\nIf John takes a cab to the restaurant it will be understood that he is\nachieving the delta goal \\fIgain-proximity\\fR in service of his satisfaction\nor entertainment goal.\n.pp\nOur second example of goal usage in contemporary AI is Lenat's ``discovery''\nprogram \\s-2AM\\s+2, and its successor \\s-2EURISKO\\s+2 (Davis & Lenat, 1982;\nLenat \\fIet al\\fR, 1982).\n.[\nDavis Lenat 1982\n.]\n.[\nLenat Sutherland Gibbons 1982\n.]\nThese pursue interesting lines of research in the domains of\nelementary mathematics and VLSI design heuristics, respectively.\nThey do this by exploring concepts \\(em producing examples, generalizing,\nspecializing, noting similarities, making plausible hypotheses and\ndefinitions, etc.\nThe programs evaluate these discoveries for utility and ``interestingness,''\nand add them to the vocabulary of concepts.\nThey essentially perform exploration in an enormous search space, governed\nby heuristics which evaluate the results and suggest fruitful avenues for\nfuture work.\n.pp\nEach concept in these systems is represented by a frame-like data structure\nwith dozens of different facets or slots.\nThe types of facets in \\s-2AM\\s+2 include\n.LB\n.NP\nexamples\n.NP\ndefinitions\n.NP\ngeneralizations\n.NP\ndomain/range\n.NP\nanalogies\n.NP\ninterestingness.\n.LE\nHeuristics are organized around the facets.\nFor example, the following strategy fits into the \\fIexamples\\fR facet\nof the \\fIpredicate\\fR concept:  \\c\n.sp\n.BQ\nIf, empirically, 10 times as many elements\n.ul\nfail\nsome predicate P as\n.ul\nsatisfy\nit, then some\n.ul\ngeneralization\n(weakened version) of P might be more interesting than P.\n.FQ\n.sp\n\\s-2AM\\s+2 considers this suggestion after trying to fill in examples of each\npredicate.\nFor instance, when the predicate \\s-2SET-EQUALITY\\s+2 is investigated, so few\nexamples are found that \\s-2AM\\s+2 decides to generalize it.\nThe result is the creation of a new predicate which means\n\\s-2HAS-THE-SAME-LENGTH-AS\\s+2 \\(em a rudimentary precursor to the discovery\nof natural numbers.\n.pp\nIn an unusual and insightful retrospective on these programs,\nLenat & Brown (1984) report that the exploration consists of (mere?) syntactic\nmutation of programs expressed in certain representations.\n.[\nLenat Brown 1984\n.]\nThe key element of the approach is to find representations with a high\ndensity of interesting concepts so that many of the random mutations will be\nworth exploring.\nIf the representation is not well matched to the problem domain, most\nexplorations will be fruitless and the method will fail.\n.pp\nWhile the conceptual dependency research reviewed above is concerned with\nunderstanding the goals of actors in stories given to a program, the approach\ntaken seems equally suited to the construction of artificial goal-oriented\nsystems.\nIf a program could really understand or empathize with the motives of people,\nit seems a small technical step to turn it around to create an autonomous\nsimulation with the same motivational structure.\nIndeed, one application of the conceptual dependency framework is in\n\\fIgenerating\\fR coherent stories by inventing goals for the actors, choosing\nappropriate plans, and simulating the frustration or achievement of the goals\n(Meehan, 1977).\n.[\nMeehan 1977 talespin\n.]\nThe ``learning by discovery'' research shows how plausible subgoals can be\ngenerated from an overall goal of maximizing the interestingness of\nthe concepts being developed.\nIt is worth noting that Andreae (1977) chose a similar idea, ``novelty,''\nas the driving force behind a very different learning system.\n.[\nAndreae 1977 thinking with the teachable machine\n.]\nRandom mutation in an appropriate representation seems to be the closest we\nhave come so far to the \\fImotive generator\\fR mentioned at the beginning of\nthis section.\n.rh \"The mechanism and psychology of natural goal-seeking.\"\nNow turn to natural systems.\nThe objection to the above-described use of goals in natural language\nunderstanders and discovery programs is that they are just programmed in.\nThe computer only does what it is told.\nIn the first case, it is told a classification of goals and given\ninformation about their interrelationships, suitable plans for achieving them,\nand so on.\nIn the second case it is told to maximize interestingness by random\nmutation.\nOn the surface, these seem to be a pale reflection of the autonomous\nself-government of natural systems.\nBut let us now look at how goals seem to arise in natural systems.\n.pp\nThe eminent British anatomist J.Z.\\ Young describes the modern biologist's\nhighly mechanistic view of the basic needs of animals.\n.[\nYoung 1978 programs of the brain\n.]\n``Biologists no longer believe that living depends upon some special\nnon-physical agency or spirit,'' he avers (Young, 1978, p.\\ 13), and goes on\nto claim that we now understand how it comes about that organisms behave as if\nall their actions were directed towards an aim or goal\\u3\\d.\n.FN\n3.\\ \\ Others apparently tend to be more reticent \\(em\n``it has been curiously unfashionable among biologists to call attention to\nthis characteristic of living things'' (Young, 1978, p.\\ 16).\n.EF\nThe mechanism for this is the reward system situated in the hypothalamus.\nFor example, the cells of the hypothalamus ensure that the right amount of\nfood and drink are taken and the right amount is incorporated to allow the\nbody to grow to its proper size.\nThese hypothalamic centers stimulate the need for what is lacking, for\ninstance of food, sex, or sleep, and they indicate satisfaction when enough\nhas been obtained.\nMoreover, the mechanism has been traced to a startling level of detail.\nFor example, Young describes how hypothalamic cells can be\nidentified which regulate the amount of water in the body.\n.sp\n.BQ\nThe setting of the level of their sensitivity to salt provides the\ninstruction that determines the quantity of water that is held in the body.\nWe can say that the properties of these cells are physical symbols\n``representing'' the required water content.\nThey do this in fact by actually swelling or shrinking when the salt\nconcentration of the blood changes.\n.FQ \"Young, 1978, p.\\ 135\"\n.sp\nFood intake is regulated in the same way.\nThe hypothalamus ensures propagation of the species by directing reproductive\nbehavior and, along with neighboring regions of the brain, attends to the goal\nof self-preservation by allowing us to defend ourselves if attacked.\n.pp\nNeedless to say, experimental evidence for this is obtained primarily from\nanimals.\nDo people's goals differ?\nThe humanistic psychologist Abraham Maslow propounded a theory of human\nmotivation that distinguishes between different kinds of needs (Maslow, 1954).\n.[\nMaslow 1954\n.]\n\\fIBasic needs\\fR include hunger, affection, security, love, and self-esteem.\n\\fIMetaneeds\\fR include justice, goodness, beauty, order, and unity.\nBasic needs are arranged in a hierarchical order so that some are stronger\nthan others (eg security over love); but all are generally stronger than\nmetaneeds.\nThe metaneeds have equal value and no hierarchy, and one can be substituted\nfor another.\nLike the basic needs, the metaneeds are inherent in man, and when they are not\nfulfilled, the person may become psychologically sick (suffering, for example,\nfrom alienation, anguish, apathy, or cynicism).\n.pp\nIn his later writing, Maslow (1968) talks of a ``single ultimate value for\nmankind, a far goal towards which all men strive''.\nAlthough going under different names (Maslow favors \\fIself-actualization\\fR),\nit amounts to ``realizing the potentialities of the person, that is to say,\nbecoming fully human, everything that the person \\fIcan\\fR become''.\nHowever, the person does not know this.\nAs far as he is concerned, the individual needs are the driving force.\nHe does not know in advance that he will strive on after the current need\nhas been satisfied.\nMaslow produced the list of personality characteristics of the psychologically\nhealthy person shown in Table\\ 1.\n.RF\n.in 0.5i\n.ll -0.5i\n.nr x0 \\n(.l-\\n(.i\n\\l'\\n(x0u'\n.in +\\w'\\(bu 'u\n.fi\n.NP\nThey are realistically oriented.\n.NP\nThey accept themselves, other people, and the natural world for what they are.\n.NP\nThey have a great deal of spontaneity.\n.NP\nThey are problem-centered rather than self-centered.\n.NP\nThey have an air of detachment and a need for privacy.\n.NP\nThey are autonomous and independent.\n.NP\nTheir appreciation of people and things is fresh rather than stereotyped.\n.NP\nMost of them have had profound mystical or spiritual experiences although not\nnecessarily religious in character.\n.NP\nThey identify with mankind.\n.NP\nTheir intimate relationships with a few specially loved people tend to be\nprofound and deeply emotional rather than superficial.\n.NP\nTheir values and attitudes are democratic.\n.NP\nThey do not confuse means with ends.\n.NP\nTheir sense of humor is philosophical rather than hostile.\n.NP\nThey have a great fund of creativeness.\n.NP\nThey resist conformity to the culture.\n.NP\nThey transcend the environment rather than just coping with it.\n.nf\n.in -\\w'\\(bu 'u\n\\l'\\n(x0u'\n.ll +1i\n.in 0\n.FE \"Table 1: Characteristics of self-actualized persons (Maslow, 1954)\"\n.pp\nMaslow's \\fIbasic needs\\fR seem to correspond reasonably closely with those\nidentified by conceptual dependency theory.\nMoreover, there is some similarity to the goals mentioned by Young (1978),\nwhich, as we have seen, are thought to be ``programmed in'' to the brain in an\nastonishingly literal sense.\nConsequently it is not clear how programs in which these goals are embedded\ndiffer in principle from goal-oriented systems in nature.\nThe \\fImetaneeds\\fR are more remote from current computer systems,\nalthough there have been shallow attempts to simulate paranoia in the\n\\s-2PARRY\\s+2 system (Colby, 1973).\n.[\nColby 1973 simulations of belief systems\n.]\nIt is intriguing to read Table\\ 1 in the context of self-actualized computers!\nMoreover, one marvels at the similarity between the single-highest-goal model\nof people in terms of self-actualization, and the architecture for discovery\nprograms sketched earlier in terms of a quest for ``interestingness''.\n.rh \"The sceptical view.\"\nThe philosopher John Haugeland addressed the problem of natural language\nunderstanding and summed up his viewpoint in the memorable aphorism,``the\ntrouble with Artificial Intelligence is that computers don't give a damn''\n(Haugeland, 1979).\n.[\nHaugeland 1979 understanding natural language\n.]\nHe identified four different ways in which brief segments of text cannot be\nunderstood ``in isolation'', which he called four \\fIholisms\\fR.\nTwo of these, concerning \\fIcommon-sense knowledge\\fR and\n\\fIsituational knowledge\\fR,\nare the subject of intensive research in natural language analysis systems.\nAnother, the \\fIholism of intentional interpretation\\fR,\nexpresses the requirement that utterances and descriptions ``make sense'' and\nseems to be at least partially addressed by the goal/plan orientation of some\nnatural language systems.\nIt is the fourth, called \\fIexistential holism\\fR, that is most germane to the\npresent topic.\nHaugeland argues that one must have actually \\fIexperienced\\fR emotions (like\nembarrassment, relief, guilt, shame) to understand\n``the meaning of text that (in a familiar sense) \\fIhas\\fR any meaning''.\nOne can only experience emotions in the context of one's own self-image.\nConsequently, Haugeland concludes that\n``only a being that cares about who it is, as some sort of enduring whole,\ncan care about guilt or folly, self-respect or achievement, life or death.\nAnd only such a being can read.''  Computers just don't give a damn.\n.pp\nAs AI researchers have pointed out repeatedly, however, it is difficult to\ngive such arguments \\fIoperational\\fR meanings.\nHow could one test whether a machine has \\fIexperienced\\fR an emotion like\nembarrassment?\nIf it acts embarrassed, isn't that enough?\nAnd while machines cannot yet behave convincingly as though they do experience\nemotions, it is not clear that fundamental obstacles stand in the way of\nfurther and continued progress.\nThere seems to be no reason in principle why a machine cannot be given a\nself-image.\n.pp\nThis controversy has raged back and forth for decades, a recent resurgence\nbeing Searle's (1980) paper on the Chinese room, and the 28 responses which\nwere published with it.\n.[\nSearle 1980 minds programs\n.]\nSearle considered the following \\fIgedanken\\fP experiment.\nSuppose someone, who knows no Chinese (or any related language), is locked in\na room and given three large batches of Chinese writing, together with a\nset of rules in English which allow her to correlate the apparently\nmeaningless squiggles in the three batches and to produce certain sorts of\nshapes in response to certain sorts of shapes which may appear in the third\nbatch.\nUnknown to her, the experimenters call the first batch a ``script'', the\nsecond batch a ``story'', the third batch ``questions'', and the symbols\nshe produces ``answers''.\nWe will call the English rules a ``program'', and of course the intention is\nthat, when executed, sensible and appropriate Chinese answers, based on the\nChinese script, are generated to the Chinese questions about the Chinese\nstory.\nBut the subject, with no knowledge of Chinese, does not see them that way.\nThe question is, given that with practice the experimenters become so adept\nat writing the rules and the subject so adept at interpreting them\nthat the resulting answers are indistinguishable from those generated by a\nnative Chinese speaker, does the subject ``understand'' the stories?\nTo summarize a large and complex debate in a few words, Searle says no; while\nmany AI researchers say yes, or at least that the subject-plus-rules system\nunderstands.\n.pp\nSearle states his thesis succinctly:  ``such intentionality as computers\nappear to have is solely in the minds of those who program them and those who\nuse them, those who send in the input and those who interpret the output''.\nAnd the antithesis could be caricatured as\n``maybe, but does it \\fImatter?\\fR''.\nThose who find the debate frustrating can always, with\nSloman & Croucher (1981), finesse the issue:  \\c\n``Ultimately, the decision whether to say such machines have motives is a\n\\fImoral\\fR decision, concerned with how we ought to treat them''.\n.[\nSloman Croucher 1981 robots emotions\n.]\n.sh \"Autopoiesis \\(em natural and artificial\"\n.pp\nAutonomy is a striking feature of biological systems.\nNot surprisingly, some biologists have made strenuous attempts to articulate\nwhat it means to them; to pin it down, formalize and study it in a\nsystem-theoretic context.\nHowever, this work is obscure and difficult to assess in terms of its\npredictive power (which must be the fundamental test of any theory).\nEven as a descriptive theory its use is surrounded by controversy.\nConsequently this section attempts to give the flavor of the endeavor, relying\nheavily on quotations from the major participants in the research, and goes on\nto describe some practical computer systems which appear to satisfy the\ncriteria biologists have identified for autonomy.\n.rh \"Homeostasis.\"\nPeople have long expressed wonder at how a living organism maintains its\nidentity in the face of continuous change.\n.sp\n.BQ\nIn an open system, such as our bodies represent, compounded of unstable\nmaterial and subjected continuously to disturbing conditions, constancy is\nin itself evidence that agencies are acting or ready to act, to maintain this\nconstancy.\n.FQ \"Cannon, 1932\"\n.sp\n.[\nCannon 1932 wisdom of the body\n.]\nFollowing Cannon, Ashby (1960) developed the idea of ``homeostasis'' to\naccount for this remarkable ability to preserve stability under conditions of\nchange.\n.[\nAshby 1960 design for a brain\n.]\nThe word has now found its way into North American dictionaries, eg Webster's\n.sp\n.BQ\nHomeostasis is the tendency to maintain, or the maintenance of, normal,\ninternal stability in an organism by coordinated responses of the organ\nsystems that automatically compensate for environmental changes.\n.FQ\n.sp\nThe basis for homeostasis was adaptation by the organism.\nWhen change occurred, the organism adapted to it and thus preserved its\nconstancy.\n.sp\n.BQ\nA form of behavior is \\fIadaptive\\fR if it maintains the essential variables\nwithin physiological limits.\n.FQ \"Ashby, 1960, p. 58\"\n.sp\nThe ``essential variables'' are closely related to survival and linked\ntogether dynamically so that marked changes in any one soon lead to changes in\nthe others.\nExamples are pulse rate, blood pressure, body temperature, number of\nbacteria in the tissue, etc.\nAshby went so far as to construct an artifact, the ``Homeostat'', which\nexhibits this kind of ultrastable equilibrium.\n.pp\nHomeostasis emphasizes the stability of biological systems under external\nchange.\nRecently, a concept called ``autopoiesis'' has been identified, which\ncaptures the essence of biological autonomy in the sense of stability or\npreservation of identity under \\fIinternal\\fR change\n(Maturana, 1975; Maturana & Varela, 1980; Varela, 1979; Zeleny, 1981).\n.[\nMaturana 1975 organization of the living\n.]\n.[\nMaturana Varela 1980 autopoiesis\n.]\n.[\nVarela 1979 biological autonomy\n.]\n.[\nZeleny 1981 Editor Autopoiesis  a theory of living organization\n.]\nThis has aroused considerable interest, and controversy, in the system\ntheoretic research community.\n.rh \"Autopoiesis.\"\nThe neologism ``autopoiesis'' means literally ``self-production'', and a\nstriking example occurs in living cells.\nThese complex systems produce and synthesize macromolecules of proteins,\nlipids, and enzymes, and consist of about $10 sup 5$ macromolecules.\nThe entire population of a given cell is renewed about $10 sup 4$ times\nduring its lifetime (Zeleny, 1981a).\n.[\n%A Zeleny, M.\n%D 1981a\n%T What is autopoiesis?\n%E M.Zeleny\n%B Autopoiesis:  a theory of living organization\n%I North Holland\n%C New York\n%P 4-17\n.]\nDespite this turnover of matter, the cell retains its distinctiveness and\ncohesiveness \\(em in short, its \\fIautonomy\\fR.\nThis maintenance of unity and identity of the whole, despite the fact that\nall the while components are being created and destroyed, is called\n``autopoiesis''.\nA concise definition is\n.sp\n.BQ\nAutopoiesis is the capability of living systems to develop and maintain\ntheir own organization.\nThe organization that is developed and maintained is identical to that\nperforming the development and maintenance.\n.FQ \"Andrew, 1981, p. 156\"\n.sp\n.[\nAndrew 1981\n.]\nOther authors (eg Maturana & Varela, 1980; Zeleny, 1981a) add a corollary:\n.sp\n.BQ\na topological boundary emerges as a result of the processes [of development\nand maintenance].\n.FQ \"Zeleny, 1981a, p. 6\"\n.sp\nThis emphasizes the train of thought ``from self-production to identity''\nthat seems to underly much of the autopoietic literature.\n.pp\nOperating as a system which produces or renews its own components, an\nautopoietic system continuously regenerates its own organization.\nIt does this in an endless turnover of components and despite inevitable\nperturbations.\nTherefore autopoiesis is a form of homeostasis which has its own\norganization as the fundamental variable that remains constant.\nThe principal fascination of the concept lies in the self-reference it\nimplies,\nThis has stimulated a theoretical formulation of the notion of circularity or\nself-reference in Varela's (1975) extension of Brown's\n``calculus of distinctions'' (Brown, 1969).\n.[\n%A Varela, F.J.\n%D 1975\n%K *\n%T A calculus for self-reference\n%J Int J General Systems\n%V 2\n%N 1\n%P 5-24\n.]\n.[\nBrown 1969 Laws of Form\n.]\nAlong with other work on self-reference (eg Hofstadter, 1979), this\nhas an esoteric and obscure, almost mystical, quality.\n.[\nHofstadter 1979 Godel Escher Bach\n.]\nWhile it may yet form the basis of a profound paradigm shift in systems\nscience, it is currently surrounded by controversy and its potential\ncontribution is quite unclear (Gaines, 1981).\n.[\nGaines 1981 Autopoiesis some questions\n.]\nIndeed, it has been noted that an\n``unusual degree of parochialism, defensiveness, and quasi-theological\ndogmatism has arisen around autopoiesis'' (Jantsch, 1981).\n.[\nJantsch 1981 autopoiesis\n.]\n.pp\nThere has been considerable discussion of the relation between autopoiesis and\nconcepts such as purpose and information.\nVarela (1979) claims that\n``notions [of teleology and information] are unnecessary for the\n\\fIdefinition\\fR of the living organization, and that they belong to a\ndescriptive domain distinct from and independent of the domain in which the\nliving system's \\fIoperations\\fR are described'' (p.\\ 63/64).\nIn other words, nature is not about goals and information; we observers invent\nsuch concepts to help classify what we see.\nMaturana (1975) is more outspoken:  \\c\n``descriptions in terms of information transfer, coding and computations of\nadequate states are fallacious because they only reflect the observer's domain\nof purposeful design and not the dynamics of the system as a state-determined\nsystem'';\n.[\nMaturana 1975 organization of the living\n.]\npresumably goals are included too in the list of proscribed terms.\nSome have protested strongly against this hard-line view \\(em which is\nparticularly provocative because of its use of the word ``fallacious'' \\(em\nand attempted to reconcile it with ``the fact that the behavior of people and\nanimals is very readily and satisfactorily described in terms of goals and\nattempts to achieve them'' (Andrew, 1981, p. 158).\nIn his more recent work Varela (1981) diverged further from the hard-line\nview, explaining that he had intended to criticize only ``the \\fInaive\\fR use\nof information and purpose as notions that can enter into the definition of\na system on the same basis as material interactions'' [his emphasis].\n.[\nVarela 1981 describing the logic of the living\n.]\nHe concluded that ``autopoiesis, as an operational explanation, is not quite\nsufficient for a full understanding of the phenomenology of the living,\nand that it needs a carefully constructed complementary symbolic\nexplanation''.\nFor Varela, a symbolic explanation is one that is based on the notions of\ninformation and purpose.\nIt is clear, though, that while some allow that autopoiesis can \\fIcoexist\\fR\nwith purposive interpretations, it will not \\fIcontribute\\fR to them.\n.pp\nIs autopoiesis restricted to \\fIliving\\fR systems?\nSome authors find it attractive to extend the notion to the level of society\nand socio-political evolution (eg Beer, 1980; Zeleny, 1977).\n.[\nBeer 1980\n.]\n.[\nZeleny 1977\n.]\nOthers (eg Varela, 1981) stress the renewal of components through material\nself-production and restrict autopoiesis to chemical processes.\nWithout self-production in a material sense, the support for the corollary\nabove becomes unclear, and consequently the whole relevance of autopoiesis\nto identity and autonomy comes under question.\n.rh \"Artificial autopoiesis.\"\nAlthough one can point to computer simulations of very simple autopoietic\nsystems (eg Varela \\fIet al\\fR, 1974; Zeleny, 1978; Uribe, 1981), there seems\nto have been little study of artificially autopoietic systems in their own\nright.\n.[\nVarela Maturana Uribe 1974 autopoiesis characterization and model\n.]\n.[\nZeleny 1978 experiments in self-organization of complexity\n.]\nHowever there are examples of computer systems which are autopoietic and\nwhich have arisen ``naturally'', that is to say, were developed for other\npurposes and not as illustrations of autopoiesis.\nIt is probably true that in each case the developers were entirely unaware\nof the concept of autopoiesis and the interest surrounding it in system\ntheory circles.\n.pp\n.ul\nWorm programs\nwere an experiment in distributed computation (Shoch & Hupp, 1982).\n.[\nShoch Hupp 1982\n.]\nThe problem they addressed was to utilize idle time on a network of\ninterconnected personal computers without any impact on normal use.\nIt was necessary to be able to redeploy or unplug any machine at any time\nwithout warning.\nMoreover, in order to make the system robust to any kind of failure,\npower-down or ``I am dying'' messages were not employed in the protocol.\nA ``worm'' comprises multiple ``segments'', each running on a different\nmachine.\nSegments of the worm have the ability to replicate themselves in idle\nmachines.\nAll segments remain in communication with each other, thus preserving the\nworm's identity and distinguishing it from a collection of independent\nprocesses; however, all segments are peers and none is in overall control.\nTo prevent uncontrolled reproduction, a certain number of segments is\npre-specified as the target size of the worm.\nWhen a segment is corrupted or killed, its peers notice the fact because it\nfails to make its periodical ``I am alive'' report.\nThey then proceed to search for an idle machine and occupy it with another\nsegment.\nCare is taken to coordinate this activity so that only one new segment is\ncreated.\n.pp\nThere are two logical components to a worm.\nThe first is the underlying worm maintenance mechanism, which is responsible\nfor maintaining the worm \\(em finding free machines when needed and\nreplicating the program for each additional segment.\nThe second is the application part, and several applications have been\ninvestigated (Shoch & Hupp, 1982), such as\n.LB\n.NP\n.ul\nexistential\nworm that merely announces its presence on each computer it inhabits;\n.NP\n.ul\nbillboard\nworm that posts a graphic message on each screen;\n.NP\n.ul\nalarm clock\nworm that implements a highly reliable alarm clock that is not based on any\nparticular machine;\n.NP\n.ul\nanimation\nworm for undertaking lengthy computer graphics computations.\n.LE\n.pp\nCan worms shed any light on the controversies outlined above which surround\nthe concept of autopoiesis?\nFirstly, although they are not living and do not create their own material in\nany chemical sense, they are certainly autonomous, autopoietic systems.\nShoch & Hupp relate how\n.sp\n.BQ\na small worm was left running one night, just exercising the worm control\nmechanism and using a small number of machines.\nWhen we returned the next morning, we found dozens of machines dead,\napparently crashed.\nIf one restarted the regular memory diagnostic, it would run very briefly,\nthen be seized by the worm.\nThe worm would quickly load its program into this new segment; the program\nwould start to run and promptly crash, leaving the worm incomplete \\(em and\nstill hungrily looking for new segments.\n.FQ\n.sp\nJohn Brunner's science fiction story \\fIThe shockwave rider\\fR presaged just\nsuch an uncontrollable worm.\nOf course, extermination is always possible in principle by switching off or\nsimultaneously rebooting every machine on the network, although this may not\nbe an option in practice.\nSecondly, in the light of our earlier discussion of teleology and autopoiesis,\nit is interesting to find the clear separation of the maintenance mechanism\n\\(em the autopoietic part \\(em from the the application code \\(em the\n``purposive'' part \\(em of the worm.\nIt can be viewed quite separately as an autopoietic or an application\n(teleological?) system.\n.pp\n.ul\nSelf-replicating Trojan horses.\nIn his Turing Award lecture, Thompson (1984) raised the specter of\nineradicable programs residing within a computer system \\(em ineradicable in\nthe sense that although they are absent from all source code, they can survive\nrecompilation and reinstallation of the entire system!\n.[\nThompson 1984 reflections trust\n.]\nMost people's reaction is ``impossible! \\(em it must be a simple trick'',\nbut Thompson showed a trick that is extremely subtle and sophisticated, and\neffectively impossible to detect or counter.\nThe natural application of such a device is to compromise a system's security,\nand Thompson's conclusion was that there can be no technical substitute for\nnatural trust.\nFrom a system-theoretic viewpoint, however, this is an interesting example\nof how a parasite can survive despite all attempts by its host to eliminate\nit.\n.pp\nTo understand what is involved in creating such an organism, consider first\nself-replicating programs.\nWhen compiled and executed, these print out themselves (say in source code\nform); no more and no less.\nAlthough at first sight they seem to violate some fundamental intuitive\nprinciple of information \\(em that to print oneself one needs\n\\fIboth\\fR ``oneself'' \\fIand, in addition\\fR, something to print it out,\nthis is not so.\nProgrammers have long amused themselves with self-replicating programs, often\nsetting the challenge of discovering the shortest such program in any given\ncomputer language.\nMoreover, it is easy to construct a self-replicating program that includes\nany given piece of text.\nSuch a program divides naturally into the self-replicating part and the\npart that is to be reproduced, in much the same way that a worm program\nseparates the worm maintenance mechanism from the application part.\n.pp\nView self-replication as a source program ``hiding'' in executable binary\ncode.\nNormally when coaxed out of hiding it prints itself.\nBut imagine one embedded in a language compiler, which when activated\ninterpolates itself into the input stream for the compiler, causing itself\nto be compiled and inserted into the binary program being produced.\nNow it has transferred itself from the executable version of the compiler\nto the executable version of the program being compiled \\(em without ever\nappearing in source form.\nNow imagine that the program being compiled is itself the compiler \\(em a\nvirgin version, uncorrupted in any way.\nThen the self-replicating code transfers itself from the old version of\nthe compiler to the new version, without appearing in source form.\nIt remains only for the code to detect when it is the compiler that is being\nrecompiled, and not to interfere with other programs.\nThis is well known as a standard Trojan Horse technique.\nThe result is a bug that lives only in the compiled version and replicates\nitself whenever the compiler is recompiled.\n.pp\nIf autopoiesis is the ability of a system to develop and maintain its own\norganization, the self-replicating Trojan horse seems to be a remarkable\nexample of it.\nIt is an organism that it extremely difficult to destroy, even when one\nhas detected its presence.\nHowever, it cannot be autonomous, but rather survives as a parasite on a\nlanguage compiler.\nIt does not have to be a compiler:  any program that handles other programs\n(including itself) will do\\u4\\d.\n.FN\n4.\\ \\ As Thompson (1984) remarks, a well-installed microcode bug will be\nalmost impossible to detect.\n.EF\nAlthough presented as a pathological example of computer use, it is possible\nto imagine non-destructive applications \\(em such as permanently identifying\nauthorship or ownership of installed software even though the source code is\nprovided.\nIn the natural world, parasites can have symbiotic relationships with their\nhosts.\nIt would be interesting to find analogous circumstances for self-replicating\nTrojan horses, but I do not know of any \\(em these examples of benevolent\nuse do not seem to benefit the host program directly, but rather its author or\nowner.\n.pp\n.ul\nViruses\nare perhaps less subtle but more pervasive kinds of bugs.\nThey spread infection in a computer system by attaching themselves to\nfiles containing executable programs.\nThe virus itself is a small piece of code which gains control whenever the\nhost is executed, performs its viral function, and then passes control to\nthe host.\nGenerally the user is unaware that anything unusual is happening:  as far as\nhe is concerned, the host program executes exactly as normal\\u5\\d.\n.FN\n5.\\ \\ The only difference is a small startup delay which probably goes\nunnoticed.\n.EF\nAs part of its function, a virus spreads itself.\nWhen it has control, it may attach itself to one or several other files\ncontaining executable programs, turning them into viruses too.\nUnder most computer protection schemes, it has the unusual advantage of\nrunning with the privileges of the person who invoked the host, not with\nthe privileges of the host program itself.\nThus it has a unique opportunity to infect other files belonging to that\nperson.\nIn an environment where people sometimes use each others programs, this allows\nit to spread rapidly throughout the system\\u6\\d.\n.FN\n6.\\ \\ More details of the construction of both viruses and self-replicating\nTrojan horses are given by Witten (1987).\n.[\nWitten 1987 infiltrating open systems\n.]\n.EF\n.pp\nUnlike self-replicating Trojan horses, a virus can be killed by recompiling\nthe host.\n(Of course, there is no reason why a virus should not be dispatched to install\na self-replicating Trojan horse in the compiler.)  \\c\nIf all programs are recompiled ``simultaneously'' (ie without executing any of\nthem between compilations), the virus will be eradicated.\nHowever, in a multi-user system it is extremely hard to arrange for everyone\nto arrange a massive recompilation \\(em in the same way as it is difficult to\nreboot every machine on a network simultaneously to stamp out a worm.\n.pp\nViruses do not generally remain in touch with each other and therefore,\nunlike worms, are not really autopoietic.\nBut there is no intrinsic reason why they should not be.\nThey provide a basic and effective means of reproduction which could be\nutilized for higher-level communicating systems.\nAs with the other devices reviewed above, when one hears about viruses one\ncannot help thinking of pathological uses.\nHowever, there are benevolent applications.\nThey could assist in system maintenance by recording how often programs were\nused and arranging optimization accordingly, perhaps migrating little-used\nones to slower memory devices or arranging optimization of frequently-used\nprograms.\nSuch reorganizations could take place without users being aware of it, quietly\nmaking the overall system more efficient.\n.sh \"Conclusions\"\n.pp\nWe have examined two rather different directions in which autonomy can be\npursued in computer systems.\nThe first concerns representation and manipulation of goals.\nExamination of some current AI systems shows that they do not escape the\nold criticism that their goals and aspirations are merely planted there\nby the programmer.\nIndeed, it is not easy to see how it could be different, unless goals were\ngenerated randomly in some sense.\nRandom exploration is also being investigated in current AI systems, and these\nshow that syntactic mutation can be an extremely powerful technique when\ncombined with semantically dense representations.\n.pp\nBut according to modern biological thinking, the lower-level goals of people\nand animals are also implanted in their brains in a remarkably literal sense.\nHigher-level goals are not so easy to pin down.\nAccording to one school of psychological thought they stem from a\nsingle ``super-goal'' called self-actualization.\nThis is remarkably in tune with the architecture of some prominent discovery\nprograms in AI which strive to maximize the ``interestingness'' of the\nconcepts being developed.\nWhile one may be reluctant to equate self-actualization with interestingness,\nthe resemblance is nevertheless striking.\n.pp\nThe second direction concerns organizational independence in a sense of\nwholeness which is distinct from goal-seeking.\nThe concept of autopoiesis formalizes this notion.\nOrganizational independence can be identified in certain computer systems\nlike worm programs, self-replicating Trojan horses, and viruses.\nIt is remarkable that such applications have been constructed because\nthey offer practical advantages and not in pursuit of any theoretical\ninvestigation of autonomy;\nin this way they are quite different from contrived games.\nIn some sense self-replicating programs do have a goal, namely \\fIsurvival\\fR.\nA damaged worm exhibits this by repairing itself.\nBut this is a weak form of goal-seeking compared with living organisms, which\nactively sense danger and take measures to prevent their own demise.\n.pp\nThe architecture of these systems is striking in that the mechanism which\nmaintains the artificial organism (be it the worm maintenance code,\nthe self-replicating part of a Trojan horse, or the viral infection-spreader)\nis quite separate from the application part of the organism.\nMost people think of such programs as somehow pathological, and the\napplication as a harmful or subversive one, but this need not be so:  there\nare benign examples of each.\nIn any case, separation of the organism's maintenance from its purpose is\ninteresting because the concept of autopoiesis has sparked a debate in\nsystem-theoretic circles as to whether teleological descriptions are even\nlegitimate, let alone necessary.\nIn both domains a clear separation seems to arise naturally between the\nautopoietic and teleological view of organisms.\n.pp\nThere have been no attempts to build computer programs which combine these two\ndirections.\nThe AI community which developed techniques of goal-seeking has historically\nbeen somewhat separate from the system software community which has created\nrobust self-replicating programs like worms and viruses.\nWhat will spring from the inevitable combination and synthesis of the two\ntechnologies of autonomy?\n.sh \"Acknowledgements\"\n.pp\nFirst and foremost I would like to thank Brian Gaines for suggesting and\nencouraging this line of research.\nI am grateful to Saul Greenberg and Roy Masrani for many insights into topics\ndiscussed here, and to Bruce MacDonald for making some valuable suggestions.\nThis research is supported by the Natural Sciences and Engineering Research\nCouncil of Canada.\n.sh \"References\"\n.ls1\n.sp\n.in+4n\n.[\n$LIST$\n.]\n.in0\n"
  },
  {
    "path": "testdata/calgary/paper4",
    "content": ".EQ\ndelim $$\n.EN\n.ls 1\n.ce\nPROGRAMMING BY EXAMPLE REVISITED\n.sp\n.ce\nby John G. Cleary\n.ce\nMan-Machine Systems Laboratory\n.ce\nUniversity of Calgary.\n.sp\n.sh \"Introduction\"\n.pp\nEfforts to construct an artificial intelligence have relied on\never more complex and carefully prepared programs.  While useful in\nthemselves, these programs\nare unlikely to be useful in situations where ephemeral and\nlow value knowledge must be acquired.  For example a person (or robot)\nworking in a normal domestic environment knows a lot about which\ncupboards have sticky doors and where the marmalade is kept.  It seems\nunlikely that it will ever be economic to program such knowledge \nwhether this be via a language or a discourse with an expert system.\n.pp\nIt is my thesis, then, that any flexible robot system working in the\nreal world must contain a component of control intermediate\nbetween hard wired 'reflex' responses and complex intellectual \nreasoning.  Such an intermediate system must be adaptive, be able\nto carry out complex patterned responses and be fast in operation.\nIt need not, however, carry out complex forward planning or be capable\nof introspection (in the sense that expert systems are able to explain\ntheir actions).\n.pp\nIn this talk I will examine a system that acquires knowledge by \nconstructing a model of its input behaviour and uses this to select its\nactions.  It can be viewed either as an automatic adaptive system  or\nas an instance of 'programming by example'.  Other workers have\nattempted to do this, by constructing compact models in some appropriate\nprogramming language:e.g. finite state automata [Bierman, 1972], \n[Bierman and Feldman, 1972]; LISP [Bierman and Krishnaswamy, 1976]; \nfinite non-deterministic\nautomata [Gaines,1976], [Gaines,1977],\n[Witten,1980]; high level languages [Bauer, 1979], [Halbert, 1981].\nThese efforts, however, suffer from\nthe flaw that for some inputs their computing time is \nsuper-exponential in the number\nof inputs seen.  This makes them totally impractical in any system which\nis continuously receiving inputs over a long period of time.\n.pp\nThe system I will examine comprises one or more simple independent\nmodels.  Because of their simplicity and because no attempt is made to \nconstruct models which are minimal,\nthe time taken to store new information and to make \npredictions is constant and independent of the amount of information stored\n[Cleary, 1980].  This leads to a very integrated and responsive environment.\nAll actions by the programmer are immediately incorporated into the program\nmodel. The actions are also acted upon so that their consequences are \nimmediately apparent.\nHowever, the amount of memory used could grow \nlinearly with time. [Witten, 1977] introduces a modelling system related\nto the one here which does not continually grow and which can be updated\nincrementally.\n.pp\nIt remains to be shown that the very simple models used are capable \nof generating any\ninterestingly complex behaviour.\nIn the rest of this\ntalk I will use the problem of executing a subroutine to illustrate\nthe potential of such systems.\nThe example will also illustrate some of the techniques which have been\ndeveloped for combining multiple models, [Cleary, 1980], [Andreae\nand Cleary, 1976], [Andreae, 1977], [Witten,1981].  It has also been\nshown in [Cleary, 1980] and in [Andreae,1977] that such systems can\nsimulate any Turing machine when supplied with a suitable external memory.\n.sh \"The modelling system\"\n.pp\nFig. 1 shows the general layout of the modeller.  Following the flow\nof information through the system it first receives a number of inputs\nfrom the external world.  These are then used to update the current\ncontexts of a number of Markov models.  Note, that each Markov model\nmay use different inputs to form its current context, and that they\nmay be attempting to predict different inputs.  A simple robot\nwhich can hear and move an arm might have two models; one, say, in\nwhich the last three sounds it heard are used to predict the next\nword to be spoken, and another in which the last three sounds and the last\nthree arm movements are used to predict the next arm movement. \n.pp\nWhen the inputs are received each such context and its associated \nprediction (usually\nan action) are added to the Markov model.  (No\ncounts or statistics are maintained \\(em they are not necessary.)  When the\ncontext recurs later it will be retrieved along with all the predictions\nwhich have been stored with it.\n.pp\nAfter the contexts have been stored they \nare updated by shifting in the new inputs. These new contexts are then\nmatched against the model and all the associated predictions are retrieved.\nThese independent predictions from the individual Markov models\nare then combined into a single composite \nprediction.\n(A general theory of how to do this has been\ndeveloped in [Cleary, 1980]).  \n.pp\nThe final step is to present this \ncomposite prediction to a device I have called the 'choice oracle'.\nThis uses whatever information it sees fit to choose the next action.\nThere are many possibilities for such a device.  One might be to choose\nfrom amongst the predicted actions if reward is expected and to choose\nsome other random action if reward is not expected.  The whole system then \nlooks like\na reward seeking homeostat.  At the other extreme the oracle might be\na human programmer who chooses the next action according to his own\nprinciples.  The system then functions more like a programming by\nexample system \\(em [Witten, 1981] and [Witten, 1982] give examples of such \nsystems.\n[Andreae, 1977] gives an example of a 'teachable' system lying between\nthese two extremes.\n.pp\nAfter an action is chosen this is\ntransmitted to the external world and the resultant inputs are used\nto start the whole cycle again.  Note that the chosen action will\nbe an input on the next cycle.\n.sh \"Subroutines\"\n.pp\nAn important part of any programming language is the ability to write a \nfragment of a program and then have it used many times without it having\nto be reprogrammed each time.  A crucial feature of such shared code is\nthat after it has been executed the program should be controlled by the\nsituation which held before the subroutine was called. A subroutine can be \nvisualised as a black box with an unknown and arbitrarily complex interior.\nThere are many paths into the box but after passing through each splits again\nand goes its own way, independent of what happened inside the box.\n.np\nAlso, if there are $p$ paths using the subroutine and $q$ different sequences\nwithin it then the amount of programming needed should be proportional to\n$p + q$ and not $p * q$.  The example to follow possess both these properties\nof a subroutine.\n.rh \"Modelling a Subroutine.\"\nThe actual model we will use is described in Fig. 2.  There are two Markov\nmodels (model-1 and model-2) each seeing and predicting different parts of\nthe inputs.  The inputs are classified into four classes; ACTIONs that\nmove a robot (LEFT, RIGHT, FAST, SLOW), patterns that it 'sees' (danger,\nmoved, wall, stuck) and two types of special 'echo' actions, # actions\nand * actions (*home, #turn).  The # and * actions have no effect on the \nenvironment,\ntheir only purpose is to be inputs and act as place keepers for relevant\ninformation.  They may be viewed as comments which remind the system of\nwhat it is doing.  (The term echo was used in [Andreae,1977], where the\nidea was first introduced, in analogy to spoken words of which one\nhears an echo.)\n.pp\nModel-2 is a Markov model of order 2 and uses only # actions in its\ncontext and seeks to predict only * actions.  Model-1 is a Markov model \nof order 3 and uses all four classes of inputs in its context.  It\nseeks to predict ACTIONs, # actions and * actions.  However, * actions\nare treated specially.  Rather than attempt to predict the exact * action\nit only stores * to indicate that some * action has occurred.  This\nspecial treatment is also reflected in the procedure for combining the\npredictions of the two models.  Then the prediction of model-2 is used,\nonly if model-1 predicts an *.  That is, model-1 predicts that some \n* action will occur and model-2 is used to select which one. If model-1\ndoes not predict an * then its prediction is used as the combined prediction\nand that from model-2 is ignored.\n.pp\nThe choice oracle that is used for this example has two modes.  In\nprogrammer mode a human programmer is allowed to select any action\nshe wishes or to acquiesce with the current prediction, in which case\none of the actions in the combined prediction is selected.  In\nexecution mode one of the predicted actions is selected and the\nprogrammer is not involved at all.\n.pp\nBefore embarking on the actual example some points about the predictions\nextracted from the individual Markov models should be noted.  First, if \nno context can be found stored in the memory which equals the current\ncontext then it is shortened by one input and a search is made for any\nrecorded contexts which are equal over the reduced length.  If necessary\nthis is repeated until the length is zero whereupon all possible\nallowed actions are predicted.\n.pp\nFig. 3 shows the problem to be programmed.  If a robot sees danger it\nis to turn and flee quickly.  If it sees a wall it is to turn and return\nslowly.  The turning is to be done by a subroutine which, if it gets \nstuck when turning left, turns right instead.\n.pp\nFig. 4 shows the contexts and predictions stored when this is programmed.\nThis is done by two passes through the problem in 'program' mode: once\nto program the fleeing and turning left; the other to program the wall\nsequence and the turning right.  Fig. 5 then shows how this programming\nis used in 'execute' mode for one of the combinations which had not been\nexplicitly programmed earlier (a wall sequence with a turn left).  The\nfigure shows the contexts and associated predictions for each step.\n(Note that predictions are made and new contexts are stored in both\nmodes.  They have been omitted from the diagrams to preserve clarity.)\n.sh \"Conclusion\"\n.pp\nThe type of simple modelling system presented above is of interest for a\nnumber of reasons.  Seen as a programing by example system, \nit is very closely \nintegrated. Because it can update its models incrementally in real time\nfunctions such as input/output, programming, compilation and execution\nare subsumed into a single mechanism. Interactive languages such as LISP\nor BASIC gain much of their immediacy and usefulness by being interpretive \nand not requiring a separate compilation step when altering the source\nprogram. By making execution integral with the process of program entry\n(some of) the consequencs of new programming become immediately apparent.\n.pp\nSeen as an adaptive controller, the system has the advantage of being fast\nand being able to encode any control strategy. Times to update the model\ndo not grow with memory size and so it can operate continuously in real time.\n.pp\nSeen as a paradigm for understanding natural control systems, it has the\nadvantage of having a very simple underlying storage mechanism. Also,\nthe ability to supply an arbitrary choice oracle allows for a wide\nrange of possible adaptive strategies.\n.sh \"References\"\n.in +4m\n.sp\n.ti -4m\nANDREAE, J.H. 1977\nThinking with the Teachable Machine.  Academic Press.\n.sp\n.ti -4m\nANDREAE, J.H. and CLEARY, J.G. 1976\nA New Mechanism for a Brain.  Int. J. Man-Machine Studies\n8(1):89-119.\n.sp\n.ti -4m\nBAUER, M.A. 1979 Programming by examples. Artificial Intelligence 12:1-21.\n.sp\n.ti -4m\nBIERMAN, A.W. 1972\nOn the Inference of Turing Machines from Sample Computations.\nArtificial Intelligence 3(3):181-198.\n.sp\n.ti -4m\nBIERMAN, A.W. and FELDMAN, J.A. 1972\nOn the Synthesis of Finite-State Machines from Samples of\ntheir Behavior.  IEEE Transactions on Computers C-21, June:\n592-597.\n.sp\n.ti -4m\nBIERMAN, A.W. and KRISHNASWAMY, R. 1976 Constructing programs from example \ncomputations. IEEE transactions on Software Engineering SE-2:141-153.\n.sp\n.ti -4m\nCLEARY, J.G. 1980\nAn Associative and Impressible Computer. PhD thesis, University\nof Canterbury, Christchurch, New Zealand.\n.sp\n.ti -4m\nGAINES, B.R. 1976\nBehaviour/structure transformations under uncertainty.\nInt. J. Man-Machine Studies 8:337-365.\n.sp\n.ti -4m\nGAINES, B.R. 1977\nSystem identification, approximation and complexity.\nInt. J. General Systems, 3:145-174.\n.sp\n.ti -4m\nHALBERT, D.C. 1981\nAn example of programming by example. Xerox Corporation, Palo Alto, \nCalifornia.\n.sp\n.ti -4m\nWITTEN, I.H. 1977\nAn adaptive optimal controller for discrete-time Markov\nenvironments.  Information and Control, 34, August: 286-295.\n.sp\n.ti -4m\nWITTEN, I.H. 1979\nApproximate, non-deterministic modelling of behaviour\nsequences.  Int. J. General Systems, 5, January: 1-12.\n.sp\n.ti -4m\nWITTEN, I.H. 1980\nProbabilistic behaviour/structure transformations using\ntransitive Moore models.  Int. J. General Systems, 6(3):\n129-137.\n.sp\n.ti -4m\nWITTEN, I.H. 1981\nProgramming by example for the casual user: a case study.\nProc. Canadian Man-Computer Communication Conference, Waterloo,\nOntario, 105-113.\n.sp\n.ti -4m\nWITTEN, I.H. 1982\nAn interactive computer terminal interface which predicts user \nentries. Proc. IEE Conference on Man-Machine Interaction,\nManchester, England.\n.in -4m\n"
  },
  {
    "path": "testdata/calgary/paper5",
    "content": ".pn 0\n.EQ\ndelim $$\ndefine RR 'bold R'\ndefine SS 'bold S'\ndefine II 'bold I'\ndefine mo '\"\\(mo\"'\ndefine EXIST ?\"\\z\\-\\d\\z\\-\\r\\-\\d\\v'0.2m'\\(br\\v'-0.2m'\"?\ndefine NEXIST ?\"\\z\\-\\d\\z\\o'\\-\\(sl'\\r\\-\\d\\v'0.2m'\\(br\\v'-0.2m'\"?\ndefine ALL ?\"\\o'V-'\"?\ndefine subset '\\(sb'\ndefine subeq  '\\(ib'\ndefine supset '\\(sp'\ndefine supeq  '\\(ip'\ndefine mo '\\(mo'\ndefine nm ?\"\\o'\\(mo\\(sl'\"?\ndefine li '\\& sup ['\ndefine lo '\\& sup ('\ndefine hi '\\& sup ]'\ndefine ho '\\& sup )'\n.EN\n.ls 1\t\n.ce\nA LOGICAL IMPLEMENTATION OF ARITHMETIC \n.sp 3\n.ce\nJohn G. Cleary \n.ce\nThe University of Calgary, Alberta, Canada.\n.sp 20\n\\u1\\dAuthor's Present Address: Man-Machine Systems Group, Department of\nComputer Science, The University of Calgary, 2500 University Drive NW\nCalgary, Canada T2N 1N4. Phone: (403)220-6087.  \n.br\n.nf\nUUCP:  ...!{ihnp4,ubc-vision}!alberta!calgary!cleary\n       ...!nrl-css!calgary!cleary\nARPA:  cleary.calgary.ubc@csnet-relay\nCDN:   cleary@calgary\n.fi\n.sp 2\n.ls 2\n.bp 0\n.ls 2\n.ce\nAbstract\n.pp\nSo far implementations of real arithmetic within logic programming\nhave been non-logical.  A logical description of the behaviour of arithmetic\non actual\nmachines using finite precision numbers is not readily available.  \nUsing interval analysis a simple description of real arithmetic is possible.\nThis can be translated to an implementation within Prolog.\nAs well as having a sound logical basis the resulting system \nallows a very concise and powerful programming style and is potentially\nvery efficient.\n.bp\n.sh \"1 Introduction\"\n.pp\nLogic programming aims to use sets of logical formulae as\nstatements in a programming language.\nBecause of many practical difficulties the full generality of logic\ncannot (yet) be used in this way.   However, by restricting the\nclass of formulae used to Horn clauses practical and efficient\nlanguages such as PROLOG are obtained.\nOne of the main problems in logic programming is to extend this area\nof practicality and efficiency to an ever wider range of formulae and \napplications.  \nThis paper considers such an implementation for arithmetic.\n.pp\nTo see why arithmetic as it is commonly implemented in PROLOG systems\nis not logical consider the following example:\n.sp\n.nf\n\tX = 0.67, Y = 0.45, Z is X*Y, Z = 0.30\n.fi\n.sp\nThis uses the notation of the 'Edinburgh style' Prologs.\n(For the moment we assume an underlying floating point\ndecimal arithmetic with two significant places.)\nThe predicate 'is' assumes its righthand side is an arithmetic\nstatement, computes its value, and unifies the result with its lefthand side.\nIn this case the entire sequence succeeds, however, there are some serious \nproblems.\n.pp\nIn a pure logic program the order of statements should be irrelevant to\nthe correctness of the result (at worst termination or efficiency might be\naffected).  This is not true of the example above.  The direction of execution\nof 'is' is strictly one way so that\n.sp\n\tY = 0.45, Z = 0.30, Z is X*Y\n.sp\nwill deliver an error when X is found to be uninstantiated inside 'is'.\n.pp\nThe second problem is that the answer Z = 0.30 is incorrect!\\ \nThe correct infinite precision answer is Z = 0.3015.  This inaccuracy\nis caused by the finite precision implemented in the floating point\narithmetic of modern computers.\nIt becomes very problematic to say what if anything it means when\nZ is bound to 0.30 by 'is'.  This problem is exacerbated by long sequences\nof arithmetic operations where the propagation of such errors can lead the\nfinal result to have little or no resemblence to the correct answer.\n.pp\nThis is further class of errors, which is illustrated by the fact that the\nfollowing two sequences will both succeed if the underlying arithmetic rounds:\n.sp\n\tX = 0.66, Y = 0.45, Z = 0.30, Z is X*Y\n.br\n\tX = 0.67, Y = 0.45, Z = 0.30, Z is X*Y\n.sp\nThis means that even if some invertable form of arithmetic were devised\ncapable of binding X when:\n.sp\n\tY = 0.45, Z = 0.30, Z is X*Y\n.sp\nit is unclear which value should be given to it.\n.pp\nThe problem then, is to implement arithmetic in as logical a manner\nas possible while still making use of efficient floating point arithmetic.\nThe solution to this problem has three major parts.\nThe first is to represent PROLOG's \narithmetic variables internally as intervals of real numbers.\nSo the result of 'Z is 0.45*0.67' would be to bind Z to the \nopen interval (0.30,0.31).  \nThis says that Z lies somewhere in the interval\n$0.30 < Z < 0.31$, which is certainly true, and probably as informative\nas possible given finite precision arithmetic.\n(Note that Z is NOT bound to the data structure (0.30,0.31), this\nis a hidden representation in much the same way that pointers are used\nto implement logical variables in PROLOG but are not explicitly visible\nto the user.  Throughout this paper brackets such as (...) or [...] will\nbe used to represent open and closed intervals not Prolog data structures.)\n.pp\nThe second part of the solution is to translate expressions such as\n\\&'Z is (X*Y)/2' to the relational form 'multiply(X,Y,T0), multiply(2,Z,T0)'.\nNote that both the * and / operators have been translated to 'multiply'\n(with parameters in a different order).  This relational form will be seen to \nbe insensitive to which parameters are instantiated and which are not,\nthus providing invertibility.\n.pp\nThe third part is to provide a small number of control 'predicates' able\nto guide the search for solutions.\nThe resulting system is sufficiently powerful to be able to\nsolve equations such as '0 is X*(X-2)+1' directly.\n.pp\nThe next section gives a somewhat more formal description of arithmetic\nimplemented this way.  Section III gives examples of its use and of the\ntypes of equations that are soluble within it.  Section IV compares our \napproach here with that of other interval arithmetic systems and with\nconstraint networks.  Section V notes some possibilities for a parallel \ndataflow implementation which avoids many of the difficulties of traditional\ndataflow execution.\n.sh \"II. Interval Representation\"\n.pp\nDefine $II(RR)$ to be the set of intervals over the real numbers, $RR$.\nSo that the lower and upper bounds of each interval can be operated on as \nsingle entities they will be treated as pairs of values.  \nEach value having an attribute of being open or closed \nand an associated number.  For example the interval (0.31,0.33] will be\ntreated as the the pair $lo 0.31$ and $hi 0.33$.  \nThe brackets are superscripted to minimize visual confusion when writeing \nbounds not in pairs.\nAs well as the usual real numbers \n$- inf$ and $inf$, will be used as part of bounds,\nwith the properties that $ALL x mo RR~- inf < x < inf$ \nThe set of all upper bounds is defined as:\n.sp\n\t$H(RR)~==~\\{ x sup b : x mo RR union \\{ inf \\},~b mo \\{ hi , ho \\} \\} $\n.sp\nand the set of lower bounds as:\n.sp\n\t$L(RR)~==~\\{ \\& sup b x : x mo RR union \\{ -inf \\},~b mo \\{ li , lo \\} \\} $\n.sp\nThe set of all intervals is then defined by:\n.sp\n\t$II(RR)~==~L(RR) times H(RR)$\n.sp\nUsing this notation rather loosely intervals will be identified \nwith the apropriate subset of the reals.  For example the following \nidentifications will be made:\n.sp\n\t$[0.31,15)~=~< li 0.31, ho 15 >~=~ \\{ x mo RR: 0.31 <= x < 15 \\}$\n.br\n\t$[-inf,inf]~=~< li -inf , hi inf> ~=~ RR$\n.br\nand\t$(-0.51,inf]~=~< lo -0.51 , hi inf >~=~ \\{ x mo RR: 0.51 < x \\}$\n.sp\nThe definition above carefully excludes 'intervals' such as $[inf,inf]$\nin the interests of simplifying some of the later development.\n.pp\nThe finite arithmetic available on computers is represented by a\nfinite subset, $SS$, of $RR$.  It is assumed that \n$0,1 mo SS$.  The set of intervals allowed over $SS$ is $II(SS)$ defined as \nabove for $RR$.  $SS$ might be a bounded set of integers or some more complex\nset representable by floating point numbers.\n.pp\nThere is a useful mapping from $II(RR)$ to $II(SS)$ which associates\nwith each real interval the best approximation to it:\n.nf\n.sp\n\t$approx(<l,h>)~==~<l prime, h prime >$\n.br\nwhere\t$l prime mo L(SS), l prime <= l, and NEXIST x mo L(SS)~l prime <x<l$\n.br\n\t$h prime mo H(SS), h prime >= h, and NEXIST x mo H(SS)~h prime >x>h$.\n.pp\nThe ordering on the bounds is defined as follows:\n.sp\n\t$l < h, ~ l,h mo II(RR)~ <->~l= \\& sup u x and h = \\& sup v y$\n\t\t\tand $x<y$ or $x=y$ and $u<v$\nwhere \t$ ho, li, hi, lo$ occur in this order and $x<y$ is the usual ordering \non the reals extended to include $-inf$ and $inf$.  \nThe ordering on the brackets is carefully chosen so that intervals such as\n(3.1,3.1) map to the empty set.\nGiven this definition it is easily verified that 'approx' gives\nthe smallest interval in $II(SS)$ enclosing the original interval in $II(RR)$.\nThe definition also allows the intersection of two intervals to be readily \ncomputed:\n.sp\n\t$<l sub 1,h sub 1> inter <l sub 2, h sub 2>~=~$\n\t\t$< max(l sub 1 , l sub 2), min(h sub 1 , h sub 2 )>$\n.sp\nAlso and interval $<l,h>$ will be empty if $l > h$.  For example, according\nto the definition above $lo 3.1 > ho 3.1$ so (3.1,3.1) is correctly computed\nas being empty.\n.pp\nIntervals are introduced into logic by extending the notion of \nunification.  A logical variable I can be bound to an interval $I$,\nwritten I:$I$.  Unification of I to any other value J gives the following\nresults:\n.LB\n.NP\nif J is unbound then it is bound to the interval, J:$I$;\n.NP\nif J is bound to the interval J:$J$ then\nI and J are bound to the same interval $I inter J$.\nThe unification fails if $I inter J$ is empty.\n.NP\na constant C is equivalent to $approx([C,C])$;\n.NP\nif J is bound to anything other than an interval the unification fails.\n.LE\n.pp\nBelow are some simple Prolog programs and the bindings that result when\nthey are run (assuming as usual two decimal places of accuracy).\n.sp\n.nf\n\tX = 3.141592\n\tX:(3.1,3.2)\n\n\tX > -5.22, Y <= 31, X=Y\n\tX:(-5.3,32]  Y:(-5.3,31]\n.fi\n.sp\n.rh \"Addition\"\n.pp\nAddition is implemented by the relation 'add(I,J,K)'\nwhich says that K is the sum of I and J.\n\\&'add' can be viewed as a relation on $RR times RR times RR$ defined\nby:\n.sp\n\t$add ~==~ \\{<x,y,z>:x,y,z mo  RR,~x+y=z\\}$\n.sp\nGiven that I,J, and K are initially bound to the intervals $I,J,K$ \nrespectively, the fully correct set of solutions with the additional\nconstrain 'add(I,J,K)' is given by all triples in the set \n$add inter I times J times K$.  \nThis set is however infinite, to get an effectively computable procedure\nI will approximate the additional constraint by binding I, J and K\nto smaller intervals.  \nSo as not to exclude any possible triples the new bindings, \n$I prime, J prime roman ~and~ K prime$ must obey:\n.sp\n\t$add inter I times J times K ~subeq~ I prime times J prime times K prime$\n.sp\nFigure 1 illustrates this process of\n.ul\nnarrowing.\nThe initial bindings are I:[0,2], J:[1,3]\nand K:[4,6].  After applying 'add(I,J,K)' the smallest possible bindings\nare I:[1,2], J:[2,3] and K:[4,5].  Note that all three intervals have been\nnarrowed.\n.pp\nIt can easily be seen that:\n.sp\n\t$I prime supeq \\{x:<x,y,z> ~mo~ add inter I times J times K \\}$\n.br\n\t$J prime supeq \\{y:<x,y,z> ~mo~ add inter I times J times K \\}$\n.br\n\t$K prime supeq \\{z:<x,y,z> ~mo~ add inter I times J times K \\}$\n.sp\nIf there are 'holes' in the projected set then $I prime$ will be a strict\nsuperset of the projection, however, $I prime$ will still \nbe uniquely determined by the projection.  This will be true of any\nsubset of $RR sup n$ not just $add$.\n.pp\nIn general for\n.sp\n\t$R subeq RR sup n,~ I sub 1 , I sub 2 , ... , I sub n mo II(RR)$\nand $I prime  sub 1 , I prime  sub 2 , ... , I prime  sub n mo II(RR)$\n.sp\nI will write \n.br\n\t$R inter I sub 1 times I sub 2 times ... times I sub n nar \nI prime sub 1 times I prime sub 2 times ... times I prime sub $\n.br \nwhen the intervals $I prime sub 1 , I prime sub 2 , ... , I prime sub $\nare the uniquelly determined smallest intervals including all solutions.\n\n.sh \"IV. Comparison with Interval Arithmetic\"\n.pp\n.sh \"V.  Implementation\"\n.pp\n.sh \"VI. Summary\"\n.sh \"Acknowledgements\"\n.sh \"References\"\n.ls 1\n.[\n$LIST$\n.]\n"
  },
  {
    "path": "testdata/calgary/paper6",
    "content": ".EQ\ndelim $$\ndefine <- ?< \"\\h'-0.5m'\" up 10 \"\\(em\" down 10 ?\ndefine gtorder ?\"\\z>\\d\\~\\u\"?\ndefine EXIST ?\"\\z\\-\\d\\z\\-\\r\\-\\d\\v'0.2m'\\(br\\v'-0.2m'\"?\ndefine ALL ?\"\\o'V-'\"?\ndefine 0M '0~...~M-1'\ndefine LH 'lo~...~hi'\ndefine RR 'bold R'\ndefine HH 'bold H'\ndefine KK 'bold K'\ndefine or '\"\\fBor\\fI\"~'\ndefine and '\"\\fBand\\fI\"~'\ndefine if '\"\\fBif\\fI\"~'\ndefine then '\"\\fBthen\\fI\"~'\ndefine else '\"\\fBelse\\fI\"~'\ndefine repeat '\"\\fBrepeat\\fI\"~'\ndefine until '\"\\fBuntil\\fI\"~'\ndefine while '\"\\fBwhile\\fI\"~'\ndefine do '\"\\fBdo\\fI\"~'\ndefine case '\"\\fBcase\\fI\"~'\ndefine end '\"\\fBend\\fI\"~'\ndefine begin '\"\\fBbegin\\fI\"~'\ndefine elseif '\"\\fBelseif\\fI\"~' \ndefine for '\"\\fBfor\\fI\"~'\ndefine From '\"\\fBfrom\\fI\"~'\ndefine To '\"\\fBto\\fI\"~'\ndefine exit '\"\\fBexit\\fI\"~'\n.EN\n.ls 1\t\n.ce\nCOMPACT HASH TABLES USING BIDIRECTIONAL LINEAR PROBING\n.sp 3\n.ce\nJohn G. Cleary\n.ce\nThe University of Calgary, Alberta, Canada.\n.sp 3\n.sp 20\n\\u1\\dAuthors Present Address: Man-Machine Systems Group, Department of\nComputer Science, The University of Calgary, 2500 University Drive NW\nCalgary, Canada T2N 1N4.\n.sp\n\\u2\\dThis research was supported by\nthe Natural Sciences and Engineering Research Council of Canada.\n.sp 2\n.ls 2\n.bp\nIndex Terms --  Searching, hash storage, open addressing, \nbidirectional linear probing,\naddress calculation, information retrieval, scatter storage, \nperformance analysis, memory compaction.\n.bp\n.pp\nAbstract -- An algorithm is developed which reduces the memory \nrequirements of hash tables.\nThis  is achieved by storing only\na  part of each key along with a few extra bits needed to ensure that\nall keys are stored unambiguously.  The fraction of each key stored\ndecreases as the size of the hash table increases.  Significant reductions\nin total memory usage can be achieved especially when the key size is not\nmuch larger than the size of a memory index and when only a small amount\nof data is stored with each key.\nThe algorithm is  based on \nbidirectional linear probing.\nSearch and insertion times are shown by simulation \nto be similar to those\nfor ordinary bidirectional linear probing.\n.bp\n.sh \"1 Introduction\"\n.pp\nThe retrieval of a single item from among many others is a common problem\nin computer science.  I am particularly concerned here with the case where \nthe item is retrieved on the basis of a single label\nor key attached to each entry and where the keys are not ordered in any\nparticular way.\nThere is a well known solution\nto this problem in the form of hash tables.\nKnuth [8], Knott [7] and Maurer and Lewis [11] provide good introductions to \nthis subject.\n.pp\nAn efficient version of hashing called\n.ul\nbidirectional linear probing \n(BLP),\nwas developed by Amble and Knuth [1].\nAs it forms the basis of what follows it is described in more detail in the\nfollowing section.  Section 3 shows how it can be modified so as to \nsignificantly reduce its memory requirements.  This is done by storing only\na small part of each key -- a few extra bits are needed to ensure \nthat different keys, that look the same after truncation, are correctly\ndistinguished.\n.pp\nThe execution time of this compact hashing algorithm is considered in\nSection 4.  It is shown by simulation to be \nsimilar to  ordinary BLP\nfor both successful searches and insertion.  It is significantly\nbetter for unsuccessful searches.  \n.pp\nA hashing scheme similar to compact hashing in that not all of the key is\nstored has been proposed by Andreae [2] (Chapter 1).  However, his technique \nhas a small but finite probability of retrieving an incorrect key.\nAlthough compact hashing\nis not based on this earlier technique it provided the impetus to\nseek the current solution.\n.pp\nIn hashing algorithms using an overflow area and a linked list of synonyms\nor by variations of this using buckets (see Maurer and Lewis [11]) only the\nremainder of each key need be stored.  This has been known since at least\n1965 (Feldman and Low [6] and Knuth [8] sec. 6.4, exercise 13, p543).  \nHowever, each entry (including the original hash location) requires a pointer\nto the next overflow record.  This pointer will about the same size as the\nreduction in the key size.  So, there is no net memory saving  over\nopen addressing techniques such as BLP.\n.pp\nAmongst the possible applications of compact hashing is the storage\nof trees and TRIES without the use of pointers but still preserving\na $log N$ retrieval time. \nIt is hoped to report on this application in more detail later.\n.pp\nPascal versions of the algorithms described below are available\nfrom the author.\n.sh \"2 Bidirectional linear probing.\"\n.pp\nI will now introduce the open addressing technique which forms the basis\nof compact hashing.\nThe \n.ul\nhash table\nin which the keys will be stored is an array $T[ 0M ]$ .  I will\nbe concerned only with the the keys themselves as the \nitems associated with each key do not \nsignificantly affect the algorithms.  In order to compute the location\nfor each key I will use two functions: $t$ which randomises the original\nkeys, and $h$ which computes a value in the range $0M$.  \n.pp\nLet $KK$ be the set of all possible keys and $HH$ be the set of all possible\ntransformed keys.  Then $t: KK -> HH$ is an invertible function.\nThis function is introduced\nto ensure that the keys stored are  random and so, as a consequence,\nthe hashing\nprocedure has a satisfactory\naverage performance.  In what follows these transformed\nkeys will be used rather than the original keys.  For example, it is the \ntransformed keys that are stored in $T$.  (-1 is used to indicate an unoccupied\nlocation in $T$.)\n.pp\n$h: HH ->\"{\" 0M \"}\"$ and has the \nproperty that for\n$H sub 1 ~, H sub 2 ~ \"\\(mo\" HH$\n$H sub 1 ~<=~ H sub 2~~ \"\\fBiff\\fP\"~~h(H sub 1 ) ~<=~ h(H sub 2 )$.  \nAs a consequence the keys will be mapped \ninto the hash table in the same order as the values of their transformed\nkeys.  \nThis ordering is essential to the compaction attained later.\nSuitable functions $t$ and $h$ have been extensively discussed \n(Carter and Wegman, [3]; Knott [7]; Lum, [9]; Lum, Yuen and Dodd, [10]).\nThese authors show that there are functions which almost always make\nthe distribution of transformed keys random.  I will not consider any\nparticular functions for $t$ although some examples of $h$ will be introduced\nlater.\n.pp\nTo retrieve a key, $K$, from the hash table the transformed key and the \nhash location are first computed.  If the (transformed) key stored at the\nhash location is greater than $t(K)$ then the table is searched upward \nuntil one of three things happen.  Either an empty location will be found,\n$T[j]=-1$, or the sought key will be found, $T[j]=t(K)$, or a key greater\nthan the sought key will be found, $T[j]>t(K)$.  If the first key examined\nis less than $t(K)$ then an analogous search is done down the hash table.\nThe search is successful if the sought key is found, that is\nif the last location examined is equal to $t(K)$, and is unsuccessful\notherwise.  (See Amble and Knuth [1] for the details of this algorithm).\n.pp\nFor a given set of keys there are many ways that they can be arranged in $T$\nso that the search algorithm above will  still work correctly.\nThere is thus\nfreedom, when designing an algorithm to insert new keys, to choose different \nstrategies for positioning the keys.\nThere are two conditions that must be satisfied when a new key is inserted.\nOne is that all keys in the memory must remain in ascending order\nand the other is that there must be no empty locations between the original hash\nlocation of any key and its actual storage position.  These imply that all\nkeys sharing the same initial hash location must form a single unbroken group.\n.pp\nWithin these constraints one would like to insert a new key so as to minimise \nlater retrieval times and the time to do the insertion itself.  Intuitively\nkeys which share the same initial hash location should be centered around that\ninitial address.  There are two ways of inserting keys which cause little\ndisturbance to the memory.  One is to find the position where the key should\nbe placed according to its ordering and then to create a gap for it by\nmoving \n.ul\nup \nall entries from this position up to the next empty location.  The second way is\nsymmetric to this and creates a gap by moving entries \n.ul\ndown \none location.\nThe insertion algorithm given by  Amble and Knuth [1] chooses which of these\ntwo moves to make using a strategy which is  guaranteed to minimise the number\nof locations in $T$ which are examined during later successful or unsuccessful\nsearches, although it is not guaranteed to minimise the insertion time itself.\n.pp\nOne  consequence of this insertion strategy is that sometimes it is necessary\nto move entries below 0 and above $M$ in the array $T$.  One solution to this\nwould be to make the array circular and move entries from 0 to $M-1$ and\nvice versa.  However, following Amble and Knuth [1], I will instead extend\nthe array $T$ and other arrays to be defined later at their top and bottom.\nThis gives 'breathing room' for the array to expand.  An extra 20 entries\nat the top and bottom were found to be quite sufficient for all\nthe simulation runs reported in Section 4.  Accordingly I will define\n$lo ~=~-20$ and $hi~=~M+19$ and define the array $T$ over the range\n$lo$ to $hi$.\n.sh \"3 Compact Hashing Using Bidirectional Linear Probing\"\n.pp\nI will now show that the memory required to store the keys in BLP can be\nsignificantly reduced.  First consider the case when\nthe number of possible keys in $KK$ is less than $M$, then every possible key\ncan be assigned its own location in $T$ without possibility of collision.\nIn this case $T$ degenerates to an ordinary indexed array and the keys need\nnever be stored.  At worst a single bit might be needed to say whether\na particular key has been stored or not.  This raises the question of whether\nit is necessary to hold the entire key in memory if the key space $KK$ is slightly\nlarger than $M$.  For example if $KK$ were, say, four times larger than $M$\nthen it might be possible to hold only two bits of the key rather than the entire\nkey.  The reasoning here is that the main function of the stored keys is to\nensure that entries which collide at the same location can be correctly\nseparated.\nProvided $h$ is suitably chosen at most four keys can be mapped to a \nsingle location.  The two bits might then be sufficient to store four\ndifferent values for these four keys.  It is in fact \npossible to realise this\nreduction in stored key size although a fixed amount of extra information \nis needed\nat each location in order to correctly handle collisions.\n.pp\nSo that I can talk about the part of the key which is in excess of the\naddress space I will now introduce a \n.ul\nremainder function\n$r$.  $r$ maps from the transformed keys $HH$ to a set of remainders \n$RR~==~\"{\"0,~1,~2,~...,~Rm-1\"}\"$.  \nIt  is these remainders that will be stored in lieu\nof the transformed keys.  \nThe essential property\nof $r$ is that $r(H)$ and $h(H)$ together are sufficient to uniquely \ndetermine $H$.  \n.pp\n.ne 9\nFormally,\n.sp\n\t$RR ~~==~~ \"{\"0,~1,~2,~...,~Rm-1\"}\"$\n.sp\n\t$r: HH -> RR$\n.sp\nand\t$h( H sub 1 )~=~h( H sub 2 )~and~r( H sub 1 )~=~r( H sub 2 )\n~~ \"\\fBiff\\fP\" ~~ H sub 1 ~~=~~ H sub 2$ .\n.sp\nFor a given function $h$ there are usually many possible functions $r$.\nOne particularly simple pair of functions, referred to by Maurer and Lewis [10]\nas the \n.ul\ndivision method, \nis $h(H)~~=~~ left floor^ H/Rm right floor$ and\n$r(H)~~=~~ H~ \"\\fBmod\\fP\"~Rm$ . \n.sp\nWhen $r$ is defined as above and $Rm$ is between $2 sup d$ and $2 sup d+1$ \nthe number of bits needed to \nspecify a remainder is the number of bits in the key less $d$.\n.pp\nConsider a new array\n$R [ LH ]$ into which the remainders will be stored.   \nIn what follows $R$ will be kept in place of $T$ but it will be useful to\ntalk about $T$ as if it were still there.  $R$ and the additional arrays to\nbe introduced shortly specify just the information in $T$, albeit\nmore compactly.  Each value $R [i]$ will hold the value $r(T[i])$ with the\nexception that when $T[i]$ is $-1$ (marking an empty location) then $R[i]$\nis also set to $-1$.  If\nthere have been no collisions then each $R[i]$ paired with the value $i$\nunambiguously gives the transformed key that would have been stored in $T[i]$.\nHowever, if there have been collisions it is not possible\nto tell if a value of $R[i]$ is at its home location or if it has been moved\nfrom, say, $i-1$ and corresponds to a key, $H$, where $r(H)~=~ R[i]$ and $h(H)~=~i-1$.\nIf there were some way to locate for each $R[i]$ where it was originally \nhashed then the original keys could all be unambiguously determined.\nThis can be done by maintaining two extra arrays of bits, the virgin array $V$,\nand the change array $C$.\n.pp\nThe virgin array\n$V[ LH ]$ marks those \nlocations which have never been hashed to.  That is, $V[i]$ has a value of $1$\nstored if any of the stored keys in the hash table has $i$ as its hash\naddress, and $0$ otherwise.  $V$ is maintained by initialising it to $0$\nand thereafter setting $V[h(H)] <-~1$ whenever a key $H$ is inserted in the\nmemory.  The virginity of a location is unaffected by the move operations\nduring insertion.\nThe $V$ array is similar to the array of pass bits recommended in [1].\n.pp\nTo understand the change array $C[ LH ]$ it is necessary to look more closely\nat the distribution of values of $R[i]$.  These remainders can be grouped \naccording to whether or not they share the same original hash address.\nAlso recall that the hash table, as in BLP, is ordered, so,\nall the remainders in a particular group will occur at \nconsecutive locations. \nThe change bits $C[i]$ are used to delimit the \nboundaries of these groups.  This is done by marking the first remainder\n(the one stored at the lowest address) of each group with a $1$.  All other \nmembers of a group have $C[i]=0$.  To simplify the search and insertion\nalgorithms it is also convenient to set $C[i]$ to 1 for all locations\nwhich are empty ($R[i]=-1$).\nThus we have the formal definitions of the\nvalues of $V$ and $C$ in terms of the now notional array $T$ (the array\n$A$ is described later):\n.bp\n.nf\n.ls 1\n.ta 0.5i +0.75i +0.9i\n\t\t\\(lt\\|$r(T[i])$\t$T[i] != -1$\n\t$R[i]~~==~~$\t\\(lk\\|\n\t\t\\(lb\\|$-1$ \t$T[i]=-1$\n.sp\n\t\t\\(lt\\|$1\tEXIST~ j~h(T[j])=i$\n\t$V[i]~~==~~$\t\\(lk\\|\n\t\t\\(lb\\|$0$\totherwise\n.sp\n\t\t\\(lt\\|$1\tT[i] != T[i-1]~ roman or ~T[i]=-1$\n\t$C[i]~~==~~$\t\\(lk\\|\n\t\t\\(lb\\|$0$\totherwise\n.sp 2\n\t\t\\(lt\\|$a(i)\t-Na <= a(i) <= Na$\n\t$A[i]~~==~~$\t\\(lk\\|\n\t\t\\(lb\\|$inf$\totherwise\n.sp\n\twhere\n.sp\n\t\t$Na ~>=~ 0$\n.br\n\t\t$a(i)~==~ sum from j=lo to i |C[j]=1~\"and\"~R[j] != -1|~-~\nsum from j=lo to i V[j]$\n.fi\n.ls 2\n.ta 0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i \n.rh \"Searching.\nFor every group of remainders there will somewhere be a $V$ bit equal to $1$ \nand a $C$\nbit  at a non-empty location equal to $1$.  That is,\nfor every $V$ bit which is $1$ there is a corresponding $C$ bit \nwhich is also $1$.\n.FC \"Fig. 1.\"\nThis correspondence is indicated in \nFig. 1 by the dotted lines.  When searching for a key $H$ in the table\nthe location $h(H)$ is examined.  If the $V$ bit is $0$ then the search \ncan stop\nimmediately.  Otherwise a search is made for the corresponding $C$ bit \nwhich is $1$.  To do this a search is made down (or up) the hash table until\nan empty location is found.  The number of $V$ bits which are $1$\nfrom $h(H)$ to this empty\nlocation are counted.  The correct $C$ bit is then found by counting back\nup (or down) the array from the empty location\nfor the same number of $C$ bits which are $1$.  Details of this algorithm\nfollow.\n.ls 1\n.sp \n.nf\n.ta 1.5c +1.35c +1.35c +1.35c +1.35c +1.35c +1.35c +1.35c +1.35c\n.sp\n.ne 2\nStep 1:\t{initialise variables}\n\t$H <-~ t(K);~~j <-~ h(H);~~rem <-~ r(H);~i <-~ j;~~count <-~ 0;$\n\t{check virgin bit}\n\t$if~ V[j]=0~then$ {search unsuccessful} $exit ;$\n.sp\n.ne 3\nStep 2:\t{find first empty location down the table}\n\t$while ~R[i] != -1~do~~begin~~count <-~count - V[i];~i <-~ i-1 ~end ;$\n.sp\n.ne 4\nStep 3:\t{search back to find uppermost member of relevant group}\n\t$while count < 0 ~do~begin~ i <-~i+1;~count <-~count +C[i];~end ;$\n\t{$i$ now points at the first(lowest) member of the group associated}\n\t{with the original location $j$}\n.sp\n.ne 6\nStep 4:\t{search group associated with $j$}\n\t$while R[i+1] <= rem ~and C[i+1]=0~do i <-~i+1 ;$\n\t{check last location to see if key found}\n\t$if R[i]=rem~ mark then$ {search successful}\n\t$lineup            else$ {search unsuccessful} ;\n.sp 2\n.ls 2\n.fi\n.pp\nAn example search is illustrated in Fig. 1 for the key 75.\nFor this example $h$ is computed by dividing by 10 and rounding down, \n$r$ is computed by taking the remainder modulo 10.  \n.br\nStep 1: The initial hash location\nfor 75 is 7 and its remainder is 5.  The $V$ bit at location 7 is 1 so the \nsearch continues.\n.br\nStep 2:\nThe first empty location found by searching down the table is at location 3.\nThere are three $V$ bits with a value of 1 between 7 and 3 at locations \n4, 6 and 7.\n.br\nStep 3:\nCounting back from location 3 three $C$ bits are 1 at locations 4, 5 and 8.\nSo the $C$ bit at location 8 corresponds to the $V$ bit at the \noriginal hash location 7.\n.br\nStep 4:\nThe group of remainders which share the same initial location 7 can then be \nfound in locations 8 and 9.  Thus the remainder 5 at location 8 can be\nunambiguously associated with the original key 75 and so it can be\nconcluded that the information associated with the key 75 is present \nat location 8 in the memory.\n.pp\nIt still remains to specify the update\nalgorithm and to address some issues of efficiency.  To this end a third\narray will be added.\n.rh \"Speeding up search.\"\nIt was found during the simulations reported in Section 4 \nthat the most time consuming element of this search\nis step 2 when the table is scanned for an empty location.  The essential\nrole played by the empty locations here is to provide a synchronisation\nbetween the 1 bits in the $V$ and $C$ arrays. \nThis lengthy search could be eliminated by maintaining two additional arrays,\n$#C[ LH ]$ and $#V[ LH ]$, which count from the start of memory the number of \n$C$ and $V$ bits which are 1.  That is:\n.br\n\t$#C[i] ~==~ sum from j=lo to i |C[j]=1~and~R[j] != -1 |$\n.br\nand\t$#V[i] ~==~ sum from j=lo to i V[j]$ .\n.br\n.pp\nIn order to find the $C$ bit corresponding to some $V[i]=1$ then all that \nis necessary is to compute the difference $count <-~#C[i]-#V[i]$.  \nIf $count$ is zero then the remainder stored at $i$ was originally\nhashed there and has not been moved.  If $count$ is positive then it is \nnecessary to scan down the memory until $'count'$ $C$ bits equal to 1 have been \nfound.  If $count$ is negative then it is necessary to scan up the memory\nuntil $'-count'$ $C$ bits which are 1 have been found.  Fig. 2 shows some\nexamples of the various situations which can arise.\n.FC \"Fig. 2.\"\n.pp\nIn fact, it is not necessary to store $#C$ and $#V$ explicitly, it is \nsufficient merely to store the differences $#C[i]-#V[i]$.  To do this the\n.ul\nAt home\narray, $A[ LH ]$, will be used.\n.pp\nAt this point it might seem that all earlier gains have been lost because\nin the most extreme case $#C[i]-#V[i]~=~M$.  To store a value of $A$\nwill require as many bits as a memory index -- precisely the gain made by\nstoring remainders rather than keys!\\   However, all is not lost.  The values \nof $A$ tend to cluster closely about 0.  Simulation\nshows that a hash memory which is 95% full has 99% of the $A$ values\nin the range -15 to +15.  Therefore the following strategy can be\nadopted.  Assign a fixed number of bits for storing each value of $A$, say\n5 bits.  Use these bits to represent the 31 values -15 to +15 and a 32nd\nvalue for $inf$.  Then anywhere that $#C[i]-#V[i]~<~-15~\"or\"~>+15$ assign $inf$\nto $A[i]$ otherwise assign the true difference.\n.pp\nWhen searching for a key a scan can now be done down (or up) the memory\nuntil a location $i$ where $A[i] != inf$ is found.  (At worst this will occur\nat the first unoccupied location where $A[i]$ will be zero.)\\  From there\na count can be made up (or down) the memory for the appropriate number of\n$C$ bits which are 1.\n.pp\nIn the detailed algorithm given below some differences from the simpler search\ncan be noted.\nIn step 3, $count$ can be both\npositive and negative.  Therefore code is included to scan both up and down\nthe memory as appropriate.  At the end of step 3, $i$ can be pointing at any\nmember of the group associated with the original hash location.  (Above\n$i$ was always left pointing at the lowest member of the \ngroup.)\\    Therefore code is included for scanning both up and down the\nmembers of the group.  In order to prevent redundant checking of locations\nby this code a flag $direction$ is used.  It can take on three values\ndepending on the direction of the memory scan: $\"up\"$, $\"down\"$, and $here$\n(no further searching need be done).\n.ls 1\n.sp \n.nf\n.ta 1.5c +1.45c +1.45c +1.35c +1.35c +1.35c +1.35c +1.35c +1.35c\n.sp\n.ne 2\n{Search using at-home count}\nStep 1:\t{initialise variables}\n\t$H <-~ t(K);~~j <-~ h(H);~~rem <-~ r(H);~~i <-~ j;~~count <-~ 0;$\n\t{check virgin bit}\n\t$if~ V[j]=0~then$ {search unsuccessful} $exit ;$\n.sp\n.ne 5\nStep 2:\t{find first well defined $A$ value down the memory}\n\t$while ~A[i] = inf~do~begin~count <-~count - V[i];~i <-~i-1 ~end ;$\n\t$count <-~count +A[i];$\n.sp\n.ne 16\nStep 3:\t{Search either up or down until a member of sought group is found}\n\t{Also ensure $direction$ is set for Step 4.}\n\t$if count < 0 ~then$\n\t\t$direction <-~\"up\";$\n\t\t$repeat i <-~i+1;~count <-~count +C[i]~ until count = 0 ;$\n\t\t$if R[i] ~>=~ rem ~then direction <-~here;$\n\t$else if count > 0 ~then$\n\t\t$direction <-~\"down\";$\n\t\t$repeat ~count <-~count -C[i];~i <-~i-1~ until count = 0 ;$\n\t\t$if R[i] ~<=~ rem ~then direction <-~here;$\n\t$else${$count = 0$}\n\t\t$if R[i] > rem ~then direction <-~\"down\"$\n\t\t$else if R[i] < rem ~then direction <-~\"up\"$\n\t\t$else direction <-~here ;$\n.sp\n.ne 16\nStep 4:\t{search group associated with $j$}\n\t$case direction~ \"\\fBof\\fP\"$\n\t$here:\t;${do nothing}\n\t$\"down\":\trepeat\tif C[i] = 1 ~then direction <-~here$\n\t\t\t$else$\n\t\t\t$begin$\n\t\t\t\t$i <-~i-1;$\n\t\t\t\t$if R[i] ~<=~ rem ~then direction <-~here;$\n\t\t\t$end$\n\t\t$until direction = here ;$\n\t$\"up\":\trepeat\tif C[i+1] = 1 ~then direction <-~here$\n\t\t\t$else$\n\t\t\t$begin$\n\t\t\t\t$i <-~i+1;$\n\t\t\t\t$if R[i] ~>=~ rem ~then direction <-~here;$\n\t\t\t$end$\n\t\t$until direction = here ;$\n\t$end ;$\n.sp\n.ne 4\nStep 5:\t{check last location to see if key found}\n\t$if R[i]=rem~ mark then$ {search successful}\n\t$lineup            else$ {search unsuccessful} ;\n.sp 2\n.ls 2\n.fi\n.FC \"Fig. 3.\"\n.pp\nFig. 3, gives an example of this searching algorithm.\nThe same memory and key (75) as in Fig. 1 are used.  For the\npurposes of the example each $A$ value is allocated one bit.  This allows \nonly two values 0 and $inf$.  The search proceeds as follows:\n.br\nStep 1: The initial hash location\nfor 75 is 7 and its remainder is 5.  The $V$ bit at location 7 is 1 so the \nsearch continues.\n.br\nStep 2: \nThe first $A$ value not equal to $inf$ found by searching down the table \nis at location 6.\nThere is one $V$ bit with a value of 1 between 7 and 6, at location 7.\n$count$ is then set to $A[6]+1~=~1$.  So on the next step one $C$\nbit will be sought.\n.br\nStep 3:\nCounting back up from 6 the first $C$ bit equal to 1 is at location 8.\nSo the $C$ bit at location 8 corresponds to the $V$ bit at the \noriginal hash location 7.\n.br\nStep 4:\nThe group of remainders which share the same initial location 7 can then be \nfound in locations 8 and 9.  The remainder 5 at location 8 can thus be\nunambiguously associated with the original key 75 and it can be\nconcluded that the information associated with the key 75 is present \nat location 8 in the memory.\n.rh \"Insertion.\"\nInsertion of a new key into the memory requires three distinct steps:\nfirst locating whereabouts in the memory the key is to be placed;\nsecond deciding how the memory is to be rearranged to make room for the new\nkey; and third moving the remainders whilst correctly preserving the\n$A$ and $C$ values.  (The $V$ bits remain fixed during the move.)\\  \nThe initial search can be done as explained above with the small addition that\nthe correct insertion point must still be located when the key is not present.\nThe second and third steps follow the algorithm in Amble and Knuth [1]\nwith the addition that the values of the $A$ array must be re-calculated\nover the shifted memory locations and the $C$ but not the $V$ bits must\nbe moved with the keys.  \nDetails of this can be found in an earlier draft of this paper, [4].\n.sh \"4 Performance\"\n.pp\nNow I consider how long these algorithms will take to run.  The measure of \nrun time that I will use is the number of \n.ul\nprobes\nthat each algorithm makes, that is, the number of times locations in the \nhash table are examined or updated.  \nCPU time measures were taken as well and correlate well with the empirical \ncounts of probes given below.\n.FC \"Table I\"\n.FC \"Table II\"\n.rh \"Searching.\"  \nTables I and II list the results of simulations\nfor successful and unsuccessful searches respectively.  Results are tabulated\nfor ordinary BLP and for compact hashing with  \ndifferent memory loadings and different sizes for\nthe $A$ field.  If the number of keys stored\nin the memory is $N$ then the memory loading is measured by \n$alpha ~==~N/M$, the fraction of locations in the memory which are full. \nValues of\nNa were chosen to correspond to $A$ field lengths of 1, 2, 3,\n4, and 5 bits, that is for Na equal to 0, 1, 3, 7, and 15 respectively,\nand also for the case where no $A$ field was used.\nIncreasing the size of the $A$ field beyond 5 bits had no effect at\nthe memory loadings investigated.  So Na equal to 15 is effectively the\nsame as an unbounded size for the $A$ values.  \n.pp\nThe insertion procedure is \nguaranteed to be optimum only for BLP, not for compact hashing.  If none\nof the values in $A$ is $inf$ then the sequence of locations examined by\ncompact\nhashing is the same as for BLP and so the strategy will still be optimum.\n(This is easily seen by noting that in compact hashing\n$A[h(t(K))]$ determines the direction\nof the search depending on whether it is positive or negative.  During the \nsubsequent search no\nlocations past the sought key will be probed.  This is exactly the same\nprobing behaviour as in BLP.)\\ \nHowever, if no $A$ array is being used or if some values of $A$ are $inf$\nthen extra locations need to be probed to find an empty location or one which\nis not equal to $inf$.\n.pp\nAs expected the figures in Table I show that for Na at 15 and using optimum\ninsertion the probes for a successful search are almost the same as for BLP.\n(The small differences are accounted for by statistical fluctuations\nin the simulation results.)\\   \n.pp \nAs Na is decreased the number of probes needed for searching increases.\nThis\nreflects the greater distances that must be traversed to find a value of \n$A$ not equal to $inf$.  It is notable however that even a single bit allocated\nto the $A$ fields dramatically improves the performance.  Even at a\nmemory density of 0.95 some 25% of non-empty locations have $A$ values of 0.\n.pp\nThe pattern for unsuccessful searches is broadly the same as sketched above\nfor successful searches except that in general unsuccessful searches\nare quicker than successful ones.  This is a result of the $V$ bits\nwhich allow many unsuccessful searches to be stopped after a single probe. \nFor example even at the maximum possible memory density of 1 some 36% of\n$V$ bits are zero.  This results in compact hashing being faster than\nthe reported values for ordinary BLP.  \nHowever, unsuccessful BLP searches could be\nimproved to a similar degree by incorporating $V$ bits.\n.FC \"Table III\"\n.rh \"Insertion.\"\nThe probes to insert a new key can be broken down into three components,\nthose needed to locate the position where the key is to be inserted,\nthose to decide the direction of movement \nand those to effect the movement of the memory.\nThe first of these will be slightly larger than\na successful search and so the results of Table I have not been repeated.\nThe second two are independent of Na as they are dependent only on\nthe lengths of blocks of adjacent non-empty locations.  The values\nfor these Na independent components are listed in Table III.\nIn most cases\nthis Na independent component is much larger than the search component.\nThe exception occurs \nwhere no $A$ values are being used, when the two components\nare comparable.\n.pp\nCleary [5] examines a random insertion strategy for ordinary BLP\nwhere blocks of entries in the hash table are moved in a randomly chosen\ndirection\nto accomodate a\nnew entry rather than in the optimum way described by \nAmble and Knuth [1].\nIt is shown that this strategy can\nimprove insertion times by a factor of 4 at the expense of small degradations\n(at most 15%) in retrieval times.  These\nresults are shown by simulation to extend to compact hashing.  \nIndeed for small values of\nNa the optimum and random strategies show no significant differences in\nretrieval times.\n.rh \"Analytic approximation.\"\nWhile analytic results are not available for the number of probes \nneeded for retrieval or insertion an\napproximation can be developed for some of the cases.  It is shown by\nAmble and Knuth [1] and Knuth [8] (problem 6.4-47) that the average\nlength of a block of consecutive non-empty locations when using\nthe optimum insertion strategy is approximately\n$(1- alpha ) sup -2 ~-~1$.  \nLet this block length be $L$.  \n.pp\nConsider the case of a successful search when no $A$ field is used.\nA successful scan of a block from an arbitrary\nposition to the end takes on average $L/2~+~1/2$ probes.  \nDuring the initial scan down the memory in the simulations the initial check of the\n$V$ bit and the final empty location examined were each counted as a single probe.\nThis gives a total of $L/2~+~5/2$ probes for the initial scan down. (This is not\nexact because there will be a correlation between the position \nof a key's home location within a block \nand the number of keys hashing to that home location).\nThe scan back up a block will take $L/2~+1/2$ probes (exact for a successful search).\nThis gives $(1- alpha ) sup -2 +2$ for the expected\nnumber of probes during a successful search.  These values are listed in Table I\nand are consistently low by about 10%.\n.pp\nFor an unsuccessful search with no $A$ field the initial scan down the \nmemory will take $L/2~+5/2$ probes as above (again this will not be exact because\nthe probability of a $V$ bit being one will be correlated with the \nsize of a block and its\nposition within the block).\nAn unsuccessful scan of a block takes $L/2~+~1/2$ probes.  (This assumes\nthe keys in the block are distributed uniformly.  \nThis gives the following probabilities that the search will stop at a \nparticular location in the block: the first location, $1/2L$; locations 2 \nthrough $L$, $1/L$; the empty $(L+1)$st location, $1/~2L$.\nThis will not be true for compact hashing because the probability of stopping at a key\nwhich shares its home location with a large number of other keys will be smaller than\nfor one which shares it with few others.)\\ \\ Summing these two terms gives $L~+~7/2$\nprobes.\nGiven that the keys are distributed randomly there is a probability of \n$e sup {- alpha}$ that a given $V$ bit will be zero.  So the expected number \nof probes overall for an unsuccessful search is \n$e sup {- alpha}~+~(1-e sup {- alpha}) cdot ((1- alpha ) sup -2 + 5/2)$.\nThese values are listed in Table II and are consistently low by about 5%.\n.pp\nConsidering only the insertion component which is independent of Na then\nit is possible to derive an expression for the number of probes.\nThere is an initial\nscan to move the memory down and insert the new key which will scan about half \nthe block ($L/2~+~5/2$ probes) \nand a subsequent scan back up of the entire block ($L~+~1$ probes).  \nEmpirically the probability\nthat the entire block will subsequently be moved back up is a half which gives\nan expected $1/2(L~+~1)$ probes.\nSumming these three contributions gives $2(1- alpha ) sup -2 ~+~2$\nas the expected number of probes for an insertion (excluding the search time).\nValues for this expression are tabulated  in Table III, they are in good \nagreement with the empirical values.\n.sh \"Acknowledgements\"\n.pp\nI would like to thank Ian Witten for careful checking of a draft version.\nAlso John Andreae for discussions which showed that something like compact\nhashing might be possible.\n.sh \"References\"\n.ls 1\n.LB \"[6]    \"\n.sp\n.NI \"[1]  \"\n[1]\\ \\ O.\\ Amble and D.\\ E.\\ Knuth, \"Ordered Hash Tables,\"\n.ul\nComputer Journal,\nvol. 17, pp135-142, 1974.\n.sp\n.NI \"[1]  \"\n[2]\\ \\ J.\\ H.\\ Andreae,\n.ul\nThinking with the teachable machine.\nLondon: Academic Press, 1977.\n.sp\n.NI \"[1]  \"\n[3]\\ \\ J.\\ L.\\ Carter and M.\\ N.\\ Wegman, \"Universal classes of hash \nfunctions,\"\n.ul\nJ. Computer System Sci.,\nvol. 18, pp143-154, 1979.\n.sp\n.NI \"[2]  \"\n[4]\\ \\ J.\\ G.\\ Cleary, \"Compact hash tables,\"\nResearch Report, 82/100/19,\nDepartment of Computer Science, University of Calgary, July 1982.\n.sp\n.NI \"[3]  \"\n[5]\\ \\ J.\\ G.\\ Cleary, \"Random insertion for bidirectional linear probing\ncan be better than optimum,\" \nResearch Report, 82/105/24,\nDepartment of Computer Science, University of Calgary, September 1982.\n.sp\n.NI \"[5]  \"\n[6]\\ \\ J. A. Feldman and J. R. Low, \"Comment on Brent's Scatter Storage \nAlgorithm,\"\n.ul\nCACM,\nvol. 16, p703, 1973.\n.sp\n.NI \"[7]  \"\n[7]\\ \\ G. D. Knott, \"Hashing functions,\"\n.ul\nThe Computer Journal,\nvol. 18, pp265-278, 1975.\n.sp\n.NI \"[7]  \"\n[8]\\ \\ D.\\ E.\\ Knuth, \n.ul\nThe art of computer programming:Sorting and searching.\nVol III.\nReading, Massachusetts: Addison Wesley, 1973.\n.sp\n.NI \"[8]  \"\n[9]\\ \\ V.\\ Y.\\ Lum, \"General performance analysis of key-to-address \ntransformation methods using an abstract file concept,\"\n.ul\nCACM,\nvol. 16, pp603-612, 1973.\n.sp\n.NI \"[12]  \"\n[10]\\ \\ V.\\ Y.\\ Lum,\\ P.\\ S.\\ T.\\ Yuen and M.\\ Dodd, \"Key-to-address\ntransformation techniques,\"\n.ul\nCACM,\nvol. 14, pp228-239, 1971.\n.sp\n.NI \"[13]  \"\n[11]\\ \\ W. D. Maurer and T. G. Lewis, \"Hash table methods,\"\n.ul\nComp. Surveys,\nvol. 7, pp5-19, 1975.\n.ls 2\n.in 0\n.bp 0\n\\&\\ \n.RF\n.ta 0.5i +0.75i +0.75i +0.75i +0.75i +0.75i\n.nf\n\n\t$i\tT[i]\tR[i]\tV[i]\tC[i]$\n\t\\l'3.5i'\n.br\n\n\t12\t\\0\\ -1\t\\ -1\t0\t1\n.br\n\t11\t101\t\\01\t0\t1\n.br\n\t10\t\\087\t\\07\t1\t1\n.br\n\t\\09\t\\076\t\\06\t0\t0\n.br\n\t\\08\t\\075\t\\05\t1\t1\n.br\n\t\\07\t\\067\t\\07\t1\t0   \n.br\n\t\\06\t\\066\t\\06\t1\t0\n.br\n\t\\05\t\\065\t\\05\t0\t1\n.br\n\t\\04\t\\041\t\\01\t1\t1\n.br\n\t\\03\t\\0\\ -1\t\\ -1\t0\t1\n.br\n\t\\02\t\\019\t\\09\t0\t0\n.br\n\t\\01\t\\018\t\\08\t1\t0\n.br\n\t\\00\t\\016\t\\06\t0\t1\n.br\n\t\t\t\t\t     Step 1 Step 2 Step 3 Step 4\n.br\n\n\t$h(H)~=~ left floor^ H/10 right floor$\n.br\n\n\t$r(H)~=~ H~ roman mod ~10$\n.br\n\n.FG \"\"\n\n.bp 0\n\\&\\ \n.RF\n.nf\n.ta 0.5i +0.75i +0.75i +0.75i +0.75i\n\t$count~=~A[i]~=~#C[i]-#V[i]$\n.sp\n\t$count = 0$\t\t\t$count = 0$\n\t$C$\t$V$\t\t$C$\t$V$\n\t0\\|\\(rt\t1\t\t0\\|\\(rt\t1\n\t0\\|\\(rk\t0\t\t0\\|\\(rk\t1$<-~i$\n\t1\\|\\(rb\t1$<-~i$\t\t1\\|\\(rb\t0\n.sp\n\t$count =1>0$\t\t$count = 2 > 0$\n\t$C$\t$V$\t\t$C$\t$V$\n\t0\t1$<-~i$\t\t0\t1$<-~i$\n\t1\t0\t\t1\t0\n\t0\\|\\(rt\t1\t\t1\t1\n\t0\\|\\(rk\t0\t\t0\\|\\(rt\t0\n\t1\\|\\(rb\t0\t\t0\\|\\(rk\t0\n\t\t\t\t1\\|\\(rb\t0\n.sp\n\t$count =-1<0$\n\t$C$\t$V$\n\t0\\|\\(rt\t0\t\t\t\\|\\(rt\n\t0\\|\\(rk\t0\t\t\t\\|\\(rk\\ \\ Group of entries which hash to \n\t1\\|\\(rb\t0\t\t\t\\|\\(rb\\ \\ location i\n\t0\t0\n\t1\t1$<-~i$\t\t\t\\ \\ \\ Corresponding $C$ and $V$ bits\n.FG \"\"\n.bp 0\n\\&\\ \n.RF\n.ta 0.5i +0.5i +0.5i +0.5i +0.5i +0.9i +0.6i +0.4i\n$i\tR[i]\tV[i]\tC[i]\t#V[i]\t#C[i]~~#C[i]-#V[i]\tA[i]$\n.br\n\\l'4.5i'\n.br\n12\t\\ -1\t0\t1\t6\t6\t\\00\t0\n.br\n11\t\\01\t0\t1\t6\t6\t\\00\t0\n.br\n10\t\\07\t1\t1\t6\t5\t\\ -1\t$inf$\n.br\n\\09\t\\06\t0\t0\t5\t4\t\\ -1\t$inf$\n.br\n\\08\t\\05\t1\t1\t5\t4\t\\ -1\t$inf$\n.br\n\\07\t\\07\t1\t0\t4\t3\t\\ -1\t$inf$\n.br\n\\06\t\\06\t1\t0\t3\t3\t\\00\t0\n.br\n\\05\t\\05\t0\t1\t2\t3\t\\01\t$inf$\n.br\n\\04\t\\01\t1\t1\t2\t2\t\\00\t0\n.br\n\\03\t\\ -1\t0\t1\t1\t1\t\\00\t0\n.br\n\\02\t\\09\t0\t0\t1\t1\t\\00\t0\n.br\n\\01\t\\08\t1\t0\t1\t1\t\\00\t0\n.br\n\\00\t\\06\t0\t1\t0\t1\t\\01\t$inf$\n.br\n\t\t\t\t\t\t\t\tStep 1 Step 2 Step 3 Step 4\n.sp \nNote: \tOnly one bit has been allowed for the values of $A$. \n.br\n\tSo the only two possible values are 0 and $inf$.\n\n.FG \"\"\n.bp 0\n\\&\\ \n.RF\n.ta 1.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\n.ce\nSuccessful Search\n\t\\l'4i'\n\n\t$alpha$\t\\0.25\t\\0.5\t\\0.75\t\\0.8\t\\0.85\t\\0.9\t\\0.95\n\t\\l'4i'\n\t\n\t$BLP sup 1$\t\\0\\01.1\t\\0\\01.3\t\\0\\01.7\t\\0\\02.0\t\\0\\02.3\t\\0\\02.9\t\\0\\04.2\n\t\n\tNa\n\t15\t\\0\\01.1\t\\0\\01.3\t\\0\\01.7\t\\0\\01.9\t\\0\\02.2\t\\0\\02.8\t\\0\\04.6\n\t\\07\t\\0\\01.1\t\\0\\01.3\t\\0\\01.7\t\\0\\01.9\t\\0\\02.2\t\\0\\02.8\t\\0\\09.7\n\t\\03\t\\0\\01.1\t\\0\\01.3\t\\0\\01.7\t\\0\\01.9\t\\0\\02.4\t\\0\\04.2\t\\025\n\t\\01\t\\0\\01.1\t\\0\\01.3\t\\0\\02.0\t\\0\\02.5\t\\0\\04.1\t\\0\\08.8\t\\045\n\t\\00\t\\0\\01.1\t\\0\\01.5\t\\0\\03.3\t\\0\\04.9\t\\0\\07.9\t\\015\t\\061\n\t\\0-\t\\0\\04.2\t\\0\\07.1\t\\020\t\\030\t\\049\t110\t370\n\t\\0*\t\\0\\03.77\t\\0\\06.00\t\\018.0\t\\027.0\t\\046.4\t102\t402\n\n\t\t$\\& sup 1~$Taken from Amble and Knuth [1].\n\t\t- No $A$ field used.\n\t\t* Analytic approximation to line above.\n.FG \"\"\n.bp 0\n\\&\n.RF\n.ta 1.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\n.ce\nUnsuccessful Search\n\t\\l'4i'\n\n\t$alpha$\t\\0.25\t\\0.5\t\\0.75\t\\0.8\t\\0.85\t\\0.9\t\\0.95\n\t\\l'4i'\n\n\t$BLP sup 1$\t\\0\\01.3\t\\0\\01.5\t\\0\\02.1\t\\0\\02.3\t\\0\\02.6\t\\0\\03.1\t\\0\\04.4\n\n\tNa\n\t15\t\\0\\01.2\t\\0\\01.4\t\\0\\01.8\t\\0\\01.9\t\\0\\02.1\t\\0\\02.4\t\\0\\03.5\n\t\\07\t\\0\\01.2\t\\0\\01.4\t\\0\\01.8\t\\0\\01.9\t\\0\\02.1\t\\0\\02.4\t\\0\\09.7\n\t\\03\t\\0\\01.2\t\\0\\01.4\t\\0\\01.8\t\\0\\01.9\t\\0\\02.2\t\\0\\03.3\t\\015\n\t\\01\t\\0\\01.2\t\\0\\01.4\t\\0\\01.9\t\\0\\02.2\t\\0\\03.2\t\\0\\06.0\t\\028\n\t\\00\t\\0\\01.2\t\\0\\01.5\t\\0\\02.6\t\\0\\03.4\t\\0\\05.3\t\\0\\09.9\t\\036\n\t\\0-\t\\0\\01.7\t\\0\\03.4\t\\011\t\\016\t\\028\t\\064\t220\n\t\\0*\t\\0\\01.72\t\\0\\03.16\t\\010.2\t\\015.6\t\\027.3\t\\061.2\t247\n\n\t\t$\\& sup 1~$Taken from Amble and Knuth [1].\n\t\t- No $A$ field used.\n\t\t* Analytic approximation to line above.\n.FG \"\"\n.bp 0\n\\&\n.RF\n.ta 1.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i +0.5i\n\t\\l'4i'\n\n\t$alpha$\t\\0.25\t\\0.5\t\\0.75\t\\0.8\t\\0.85\t\\0.9\t\\0.95\n\t\\l'4i'\n\n\t\t\\0\\04.3\t\\0\\08.8\t\\032\t\\049\t\\086\t200\t700\n\t*\t\\0\\04.56\t\\0\\09.00\t\\033.0\t\\051.0\t\\089.9\\\n\t201\t801\n\n\t* Analytic approximation to line above\n.FG \"\"\n.bp 0\n\\&\n.ce \nList of Figures\n.sp 2\nFig. 1. Example of compact hash memory and search for key.\n.sp 2\nFig. 2. Examples showing different values of $#C[i]-#V[i]$.\n.sp 2\nFig. 3. Example of calculation and use of array $A$.\n.sp 2\n.ce\nList of Tables\n.sp 2\nTable I. Average number of probes during a successful search.\n.sp 2\nTable II. Average number of probes during an unsuccessful search.\n.sp 2\nTable III. Average number of probes to move block of memory.\n.sp 2\n"
  },
  {
    "path": "testdata/calgary/progc",
    "content": "/* \n * Compress - data compression program \n */\n#define\tmin(a,b)\t((a>b) ? b : a)\n\n/*\n * machine variants which require cc -Dmachine:  pdp11, z8000, pcxt\n */\n\n/*\n * Set USERMEM to the maximum amount of physical user memory available\n * in bytes.  USERMEM is used to determine the maximum BITS that can be used\n * for compression.\n *\n * SACREDMEM is the amount of physical memory saved for others; compress\n * will hog the rest.\n */\n#ifndef SACREDMEM\n#define SACREDMEM\t0\n#endif\n\n#ifndef USERMEM\n# define USERMEM \t450000\t/* default user memory */\n#endif\n\n#ifdef interdata\t\t/* (Perkin-Elmer) */\n#define SIGNED_COMPARE_SLOW\t/* signed compare is slower than unsigned */\n#endif\n\n#ifdef pdp11\n# define BITS \t12\t/* max bits/code for 16-bit machine */\n# define NO_UCHAR\t/* also if \"unsigned char\" functions as signed char */\n# undef USERMEM \n#endif /* pdp11 */\t/* don't forget to compile with -i */\n\n#ifdef z8000\n# define BITS \t12\n# undef vax\t\t/* weird preprocessor */\n# undef USERMEM \n#endif /* z8000 */\n\n#ifdef pcxt\n# define BITS   12\n# undef USERMEM\n#endif /* pcxt */\n\n#ifdef USERMEM\n# if USERMEM >= (433484+SACREDMEM)\n#  define PBITS\t16\n# else\n#  if USERMEM >= (229600+SACREDMEM)\n#   define PBITS\t15\n#  else\n#   if USERMEM >= (127536+SACREDMEM)\n#    define PBITS\t14\n#   else\n#    if USERMEM >= (73464+SACREDMEM)\n#     define PBITS\t13\n#    else\n#     define PBITS\t12\n#    endif\n#   endif\n#  endif\n# endif\n# undef USERMEM\n#endif /* USERMEM */\n\n#ifdef PBITS\t\t/* Preferred BITS for this memory size */\n# ifndef BITS\n#  define BITS PBITS\n# endif BITS\n#endif /* PBITS */\n\n#if BITS == 16\n# define HSIZE\t69001\t\t/* 95% occupancy */\n#endif\n#if BITS == 15\n# define HSIZE\t35023\t\t/* 94% occupancy */\n#endif\n#if BITS == 14\n# define HSIZE\t18013\t\t/* 91% occupancy */\n#endif\n#if BITS == 13\n# define HSIZE\t9001\t\t/* 91% occupancy */\n#endif\n#if BITS <= 12\n# define HSIZE\t5003\t\t/* 80% occupancy */\n#endif\n\n#ifdef M_XENIX\t\t\t/* Stupid compiler can't handle arrays with */\n# if BITS == 16\t\t\t/* more than 65535 bytes - so we fake it */\n#  define XENIX_16\n# else\n#  if BITS > 13\t\t\t/* Code only handles BITS = 12, 13, or 16 */\n#   define BITS\t13\n#  endif\n# endif\n#endif\n\n/*\n * a code_int must be able to hold 2**BITS values of type int, and also -1\n */\n#if BITS > 15\ntypedef long int\tcode_int;\n#else\ntypedef int\t\tcode_int;\n#endif\n\n#ifdef SIGNED_COMPARE_SLOW\ntypedef unsigned long int count_int;\ntypedef unsigned short int count_short;\n#else\ntypedef long int\t  count_int;\n#endif\n\n#ifdef NO_UCHAR\n typedef char\tchar_type;\n#else\n typedef\tunsigned char\tchar_type;\n#endif /* UCHAR */\nchar_type magic_header[] = { \"\\037\\235\" };\t/* 1F 9D */\n\n/* Defines for third byte of header */\n#define BIT_MASK\t0x1f\n#define BLOCK_MASK\t0x80\n/* Masks 0x40 and 0x20 are free.  I think 0x20 should mean that there is\n   a fourth header byte (for expansion).\n*/\n#define INIT_BITS 9\t\t\t/* initial number of bits/code */\n\n/*\n * compress.c - File compression ala IEEE Computer, June 1984.\n *\n * Authors:\tSpencer W. Thomas\t(decvax!harpo!utah-cs!utah-gr!thomas)\n *\t\tJim McKie\t\t(decvax!mcvax!jim)\n *\t\tSteve Davies\t\t(decvax!vax135!petsd!peora!srd)\n *\t\tKen Turkowski\t\t(decvax!decwrl!turtlevax!ken)\n *\t\tJames A. Woods\t\t(decvax!ihnp4!ames!jaw)\n *\t\tJoe Orost\t\t(decvax!vax135!petsd!joe)\n *\n * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $\n * $Log:\tcompress.c,v $\n * Revision 4.0  85/07/30  12:50:00  joe\n * Removed ferror() calls in output routine on every output except first.\n * Prepared for release to the world.\n * \n * Revision 3.6  85/07/04  01:22:21  joe\n * Remove much wasted storage by overlaying hash table with the tables\n * used by decompress: tab_suffix[1<<BITS], stack[8000].  Updated USERMEM\n * computations.  Fixed dump_tab() DEBUG routine.\n *\n * Revision 3.5  85/06/30  20:47:21  jaw\n * Change hash function to use exclusive-or.  Rip out hash cache.  These\n * speedups render the megamemory version defunct, for now.  Make decoder\n * stack global.  Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.\n *\n * Revision 3.4  85/06/27  12:00:00  ken\n * Get rid of all floating-point calculations by doing all compression ratio\n * calculations in fixed point.\n *\n * Revision 3.3  85/06/24  21:53:24  joe\n * Incorporate portability suggestion for M_XENIX.  Got rid of text on #else\n * and #endif lines.  Cleaned up #ifdefs for vax and interdata.\n *\n * Revision 3.2  85/06/06  21:53:24  jaw\n * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.\n * Default to \"quiet\" output (no compression statistics).\n *\n * Revision 3.1  85/05/12  18:56:13  jaw\n * Integrate decompress() stack speedups (from early pointer mods by McKie).\n * Repair multi-file USERMEM gaffe.  Unify 'force' flags to mimic semantics\n * of SVR2 'pack'.  Streamline block-compress table clear logic.  Increase \n * output byte count by magic number size.\n * \n * Revision 3.0   84/11/27  11:50:00  petsd!joe\n * Set HSIZE depending on BITS.  Set BITS depending on USERMEM.  Unrolled\n * loops in clear routines.  Added \"-C\" flag for 2.0 compatibility.  Used\n * unsigned compares on Perkin-Elmer.  Fixed foreground check.\n *\n * Revision 2.7   84/11/16  19:35:39  ames!jaw\n * Cache common hash codes based on input statistics; this improves\n * performance for low-density raster images.  Pass on #ifdef bundle\n * from Turkowski.\n *\n * Revision 2.6   84/11/05  19:18:21  ames!jaw\n * Vary size of hash tables to reduce time for small files.\n * Tune PDP-11 hash function.\n *\n * Revision 2.5   84/10/30  20:15:14  ames!jaw\n * Junk chaining; replace with the simpler (and, on the VAX, faster)\n * double hashing, discussed within.  Make block compression standard.\n *\n * Revision 2.4   84/10/16  11:11:11  ames!jaw\n * Introduce adaptive reset for block compression, to boost the rate\n * another several percent.  (See mailing list notes.)\n *\n * Revision 2.3   84/09/22  22:00:00  petsd!joe\n * Implemented \"-B\" block compress.  Implemented REVERSE sorting of tab_next.\n * Bug fix for last bits.  Changed fwrite to putchar loop everywhere.\n *\n * Revision 2.2   84/09/18  14:12:21  ames!jaw\n * Fold in news changes, small machine typedef from thomas,\n * #ifdef interdata from joe.\n *\n * Revision 2.1   84/09/10  12:34:56  ames!jaw\n * Configured fast table lookup for 32-bit machines.\n * This cuts user time in half for b <= FBITS, and is useful for news batching\n * from VAX to PDP sites.  Also sped up decompress() [fwrite->putc] and\n * added signal catcher [plus beef in writeerr()] to delete effluvia.\n *\n * Revision 2.0   84/08/28  22:00:00  petsd!joe\n * Add check for foreground before prompting user.  Insert maxbits into\n * compressed file.  Force file being uncompressed to end with \".Z\".\n * Added \"-c\" flag and \"zcat\".  Prepared for release.\n *\n * Revision 1.10  84/08/24  18:28:00  turtlevax!ken\n * Will only compress regular files (no directories), added a magic number\n * header (plus an undocumented -n flag to handle old files without headers),\n * added -f flag to force overwriting of possibly existing destination file,\n * otherwise the user is prompted for a response.  Will tack on a .Z to a\n * filename if it doesn't have one when decompressing.  Will only replace\n * file if it was compressed.\n *\n * Revision 1.9  84/08/16  17:28:00  turtlevax!ken\n * Removed scanargs(), getopt(), added .Z extension and unlimited number of\n * filenames to compress.  Flags may be clustered (-Ddvb12) or separated\n * (-D -d -v -b 12), or combination thereof.  Modes and other status is\n * copied with copystat().  -O bug for 4.2 seems to have disappeared with\n * 1.8.\n *\n * Revision 1.8  84/08/09  23:15:00  joe\n * Made it compatible with vax version, installed jim's fixes/enhancements\n *\n * Revision 1.6  84/08/01  22:08:00  joe\n * Sped up algorithm significantly by sorting the compress chain.\n *\n * Revision 1.5  84/07/13  13:11:00  srd\n * Added C version of vax asm routines.  Changed structure to arrays to\n * save much memory.  Do unsigned compares where possible (faster on\n * Perkin-Elmer)\n *\n * Revision 1.4  84/07/05  03:11:11  thomas\n * Clean up the code a little and lint it.  (Lint complains about all\n * the regs used in the asm, but I'm not going to \"fix\" this.)\n *\n * Revision 1.3  84/07/05  02:06:54  thomas\n * Minor fixes.\n *\n * Revision 1.2  84/07/05  00:27:27  thomas\n * Add variable bit length output.\n *\n */\nstatic char rcs_ident[] = \n\"$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $\";\n\n#include <stdio.h>\n#include <ctype.h>\n#include <signal.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n\n#define ARGVAL() (*++(*argv) || (--argc && *++argv))\n\nint n_bits;\t\t\t\t/* number of bits/code */\nint maxbits = BITS;\t\t\t/* user settable max # bits/code */\ncode_int maxcode;\t\t\t/* maximum code, given n_bits */\ncode_int maxmaxcode = 1 << BITS;\t/* should NEVER generate this code */\n#ifdef COMPATIBLE\t\t/* But wrong! */\n# define MAXCODE(n_bits)\t(1 << (n_bits) - 1)\n#else\n# define MAXCODE(n_bits)\t((1 << (n_bits)) - 1)\n#endif /* COMPATIBLE */\n\n#ifdef XENIX_16\ncount_int htab0[8192];\ncount_int htab1[8192];\ncount_int htab2[8192];\ncount_int htab3[8192];\ncount_int htab4[8192];\ncount_int htab5[8192];\ncount_int htab6[8192];\ncount_int htab7[8192];\ncount_int htab8[HSIZE-65536];\ncount_int * htab[9] = {\n\thtab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };\n\n#define htabof(i)\t(htab[(i) >> 13][(i) & 0x1fff])\nunsigned short code0tab[16384];\nunsigned short code1tab[16384];\nunsigned short code2tab[16384];\nunsigned short code3tab[16384];\nunsigned short code4tab[16384];\nunsigned short * codetab[5] = {\n\tcode0tab, code1tab, code2tab, code3tab, code4tab };\n\n#define codetabof(i)\t(codetab[(i) >> 14][(i) & 0x3fff])\n\n#else\t/* Normal machine */\ncount_int htab [HSIZE];\nunsigned short codetab [HSIZE];\n#define htabof(i)\thtab[i]\n#define codetabof(i)\tcodetab[i]\n#endif\t/* XENIX_16 */\ncode_int hsize = HSIZE;\t\t\t/* for dynamic table sizing */\ncount_int fsize;\n\n/*\n * To save much memory, we overlay the table used by compress() with those\n * used by decompress().  The tab_prefix table is the same size and type\n * as the codetab.  The tab_suffix table needs 2**BITS characters.  We\n * get this from the beginning of htab.  The output stack uses the rest\n * of htab, and contains characters.  There is plenty of room for any\n * possible stack (stack used to be 8000 characters).\n */\n\n#define tab_prefixof(i)\tcodetabof(i)\n#ifdef XENIX_16\n# define tab_suffixof(i)\t((char_type *)htab[(i)>>15])[(i) & 0x7fff]\n# define de_stack\t\t((char_type *)(htab2))\n#else\t/* Normal machine */\n# define tab_suffixof(i)\t((char_type *)(htab))[i]\n# define de_stack\t\t((char_type *)&tab_suffixof(1<<BITS))\n#endif\t/* XENIX_16 */\n\ncode_int free_ent = 0;\t\t\t/* first unused entry */\nint exit_stat = 0;\n\ncode_int getcode();\n\nUsage() {\n#ifdef DEBUG\nfprintf(stderr,\"Usage: compress [-dDVfc] [-b maxbits] [file ...]\\n\");\n}\nint debug = 0;\n#else\nfprintf(stderr,\"Usage: compress [-dfvcV] [-b maxbits] [file ...]\\n\");\n}\n#endif /* DEBUG */\nint nomagic = 0;\t/* Use a 3-byte magic number header, unless old file */\nint zcat_flg = 0;\t/* Write output on stdout, suppress messages */\nint quiet = 1;\t\t/* don't tell me about compression */\n\n/*\n * block compression parameters -- after all codes are used up,\n * and compression rate changes, start over.\n */\nint block_compress = BLOCK_MASK;\nint clear_flg = 0;\nlong int ratio = 0;\n#define CHECK_GAP 10000\t/* ratio check interval */\ncount_int checkpoint = CHECK_GAP;\n/*\n * the next two codes should not be changed lightly, as they must not\n * lie within the contiguous general code space.\n */ \n#define FIRST\t257\t/* first free entry */\n#define\tCLEAR\t256\t/* table clear output code */\n\nint force = 0;\nchar ofname [100];\n#ifdef DEBUG\nint verbose = 0;\n#endif /* DEBUG */\nint (*bgnd_flag)();\n\nint do_decomp = 0;\n\n/*****************************************************************\n * TAG( main )\n *\n * Algorithm from \"A Technique for High Performance Data Compression\",\n * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.\n *\n * Usage: compress [-dfvc] [-b bits] [file ...]\n * Inputs:\n *\t-d:\t    If given, decompression is done instead.\n *\n *      -c:         Write output on stdout, don't remove original.\n *\n *      -b:         Parameter limits the max number of bits/code.\n *\n *\t-f:\t    Forces output file to be generated, even if one already\n *\t\t    exists, and even if no space is saved by compressing.\n *\t\t    If -f is not used, the user will be prompted if stdin is\n *\t\t    a tty, otherwise, the output file will not be overwritten.\n *\n *      -v:\t    Write compression statistics\n *\n * \tfile ...:   Files to be compressed.  If none specified, stdin\n *\t\t    is used.\n * Outputs:\n *\tfile.Z:\t    Compressed form of file with same mode, owner, and utimes\n * \tor stdout   (if stdin used as input)\n *\n * Assumptions:\n *\tWhen filenames are given, replaces with the compressed version\n *\t(.Z suffix) only if the file decreases in size.\n * Algorithm:\n * \tModified Lempel-Ziv method (LZW).  Basically finds common\n * substrings and replaces them with a variable size code.  This is\n * deterministic, and can be done on the fly.  Thus, the decompression\n * procedure needs no input table, but tracks the way the table was built.\n */\n\nmain( argc, argv )\nregister int argc; char **argv;\n{\n    int overwrite = 0;\t/* Do not overwrite unless given -f flag */\n    char tempname[100];\n    char **filelist, **fileptr;\n    char *cp, *rindex(), *malloc();\n    struct stat statbuf;\n    extern onintr(), oops();\n\n\n    if ( (bgnd_flag = signal ( SIGINT, SIG_IGN )) != SIG_IGN ) {\n\tsignal ( SIGINT, onintr );\n\tsignal ( SIGSEGV, oops );\n    }\n\n#ifdef COMPATIBLE\n    nomagic = 1;\t/* Original didn't have a magic number */\n#endif /* COMPATIBLE */\n\n    filelist = fileptr = (char **)(malloc(argc * sizeof(*argv)));\n    *filelist = NULL;\n\n    if((cp = rindex(argv[0], '/')) != 0) {\n\tcp++;\n    } else {\n\tcp = argv[0];\n    }\n    if(strcmp(cp, \"uncompress\") == 0) {\n\tdo_decomp = 1;\n    } else if(strcmp(cp, \"zcat\") == 0) {\n\tdo_decomp = 1;\n\tzcat_flg = 1;\n    }\n\n#ifdef BSD4_2\n    /* 4.2BSD dependent - take it out if not */\n    setlinebuf( stderr );\n#endif /* BSD4_2 */\n\n    /* Argument Processing\n     * All flags are optional.\n     * -D => debug\n     * -V => print Version; debug verbose\n     * -d => do_decomp\n     * -v => unquiet\n     * -f => force overwrite of output file\n     * -n => no header: useful to uncompress old files\n     * -b maxbits => maxbits.  If -b is specified, then maxbits MUST be\n     *\t    given also.\n     * -c => cat all output to stdout\n     * -C => generate output compatible with compress 2.0.\n     * if a string is left, must be an input filename.\n     */\n    for (argc--, argv++; argc > 0; argc--, argv++) {\n\tif (**argv == '-') {\t/* A flag argument */\n\t    while (*++(*argv)) {\t/* Process all flags in this arg */\n\t\tswitch (**argv) {\n#ifdef DEBUG\n\t\t    case 'D':\n\t\t\tdebug = 1;\n\t\t\tbreak;\n\t\t    case 'V':\n\t\t\tverbose = 1;\n\t\t\tversion();\n\t\t\tbreak;\n#else\n\t\t    case 'V':\n\t\t\tversion();\n\t\t\tbreak;\n#endif /* DEBUG */\n\t\t    case 'v':\n\t\t\tquiet = 0;\n\t\t\tbreak;\n\t\t    case 'd':\n\t\t\tdo_decomp = 1;\n\t\t\tbreak;\n\t\t    case 'f':\n\t\t    case 'F':\n\t\t\toverwrite = 1;\n\t\t\tforce = 1;\n\t\t\tbreak;\n\t\t    case 'n':\n\t\t\tnomagic = 1;\n\t\t\tbreak;\n\t\t    case 'C':\n\t\t\tblock_compress = 0;\n\t\t\tbreak;\n\t\t    case 'b':\n\t\t\tif (!ARGVAL()) {\n\t\t\t    fprintf(stderr, \"Missing maxbits\\n\");\n\t\t\t    Usage();\n\t\t\t    exit(1);\n\t\t\t}\n\t\t\tmaxbits = atoi(*argv);\n\t\t\tgoto nextarg;\n\t\t    case 'c':\n\t\t\tzcat_flg = 1;\n\t\t\tbreak;\n\t\t    case 'q':\n\t\t\tquiet = 1;\n\t\t\tbreak;\n\t\t    default:\n\t\t\tfprintf(stderr, \"Unknown flag: '%c'; \", **argv);\n\t\t\tUsage();\n\t\t\texit(1);\n\t\t}\n\t    }\n\t}\n\telse {\t\t/* Input file name */\n\t    *fileptr++ = *argv;\t/* Build input file list */\n\t    *fileptr = NULL;\n\t    /* process nextarg; */\n\t}\n\tnextarg: continue;\n    }\n\n    if(maxbits < INIT_BITS) maxbits = INIT_BITS;\n    if (maxbits > BITS) maxbits = BITS;\n    maxmaxcode = 1 << maxbits;\n\n    if (*filelist != NULL) {\n\tfor (fileptr = filelist; *fileptr; fileptr++) {\n\t    exit_stat = 0;\n\t    if (do_decomp != 0) {\t\t\t/* DECOMPRESSION */\n\t\t/* Check for .Z suffix */\n\t\tif (strcmp(*fileptr + strlen(*fileptr) - 2, \".Z\") != 0) {\n\t\t    /* No .Z: tack one on */\n\t\t    strcpy(tempname, *fileptr);\n\t\t    strcat(tempname, \".Z\");\n\t\t    *fileptr = tempname;\n\t\t}\n\t\t/* Open input file */\n\t\tif ((freopen(*fileptr, \"r\", stdin)) == NULL) {\n\t\t\tperror(*fileptr); continue;\n\t\t}\n\t\t/* Check the magic number */\n\t\tif (nomagic == 0) {\n\t\t    if ((getchar() != (magic_header[0] & 0xFF))\n\t\t     || (getchar() != (magic_header[1] & 0xFF))) {\n\t\t\tfprintf(stderr, \"%s: not in compressed format\\n\",\n\t\t\t    *fileptr);\n\t\t    continue;\n\t\t    }\n\t\t    maxbits = getchar();\t/* set -b from file */\n\t\t    block_compress = maxbits & BLOCK_MASK;\n\t\t    maxbits &= BIT_MASK;\n\t\t    maxmaxcode = 1 << maxbits;\n\t\t    if(maxbits > BITS) {\n\t\t\tfprintf(stderr,\n\t\t\t\"%s: compressed with %d bits, can only handle %d bits\\n\",\n\t\t\t*fileptr, maxbits, BITS);\n\t\t\tcontinue;\n\t\t    }\n\t\t}\n\t\t/* Generate output filename */\n\t\tstrcpy(ofname, *fileptr);\n\t\tofname[strlen(*fileptr) - 2] = '\\0';  /* Strip off .Z */\n\t    } else {\t\t\t\t\t/* COMPRESSION */\n\t\tif (strcmp(*fileptr + strlen(*fileptr) - 2, \".Z\") == 0) {\n\t\t    \tfprintf(stderr, \"%s: already has .Z suffix -- no change\\n\",\n\t\t\t    *fileptr);\n\t\t    continue;\n\t\t}\n\t\t/* Open input file */\n\t\tif ((freopen(*fileptr, \"r\", stdin)) == NULL) {\n\t\t    perror(*fileptr); continue;\n\t\t}\n\t\tstat ( *fileptr, &statbuf );\n\t\tfsize = (long) statbuf.st_size;\n\t\t/*\n\t\t * tune hash table size for small files -- ad hoc,\n\t\t * but the sizes match earlier #defines, which\n\t\t * serve as upper bounds on the number of output codes. \n\t\t */\n\t\thsize = HSIZE;\n\t\tif ( fsize < (1 << 12) )\n\t\t    hsize = min ( 5003, HSIZE );\n\t\telse if ( fsize < (1 << 13) )\n\t\t    hsize = min ( 9001, HSIZE );\n\t\telse if ( fsize < (1 << 14) )\n\t\t    hsize = min ( 18013, HSIZE );\n\t\telse if ( fsize < (1 << 15) )\n\t\t    hsize = min ( 35023, HSIZE );\n\t\telse if ( fsize < 47000 )\n\t\t    hsize = min ( 50021, HSIZE );\n\n\t\t/* Generate output filename */\n\t\tstrcpy(ofname, *fileptr);\n#ifndef BSD4_2\t\t/* Short filenames */\n\t\tif ((cp=rindex(ofname,'/')) != NULL)\tcp++;\n\t\telse\t\t\t\t\tcp = ofname;\n\t\tif (strlen(cp) > 12) {\n\t\t    fprintf(stderr,\"%s: filename too long to tack on .Z\\n\",cp);\n\t\t    continue;\n\t\t}\n#endif  /* BSD4_2\t\tLong filenames allowed */\n\t\tstrcat(ofname, \".Z\");\n\t    }\n\t    /* Check for overwrite of existing file */\n\t    if (overwrite == 0 && zcat_flg == 0) {\n\t\tif (stat(ofname, &statbuf) == 0) {\n\t\t    char response[2];\n\t\t    response[0] = 'n';\n\t\t    fprintf(stderr, \"%s already exists;\", ofname);\n\t\t    if (foreground()) {\n\t\t\tfprintf(stderr, \" do you wish to overwrite %s (y or n)? \",\n\t\t\tofname);\n\t\t\tfflush(stderr);\n\t\t\tread(2, response, 2);\n\t\t\twhile (response[1] != '\\n') {\n\t\t\t    if (read(2, response+1, 1) < 0) {\t/* Ack! */\n\t\t\t\tperror(\"stderr\"); break;\n\t\t\t    }\n\t\t\t}\n\t\t    }\n\t\t    if (response[0] != 'y') {\n\t\t\tfprintf(stderr, \"\\tnot overwritten\\n\");\n\t\t\tcontinue;\n\t\t    }\n\t\t}\n\t    }\n\t    if(zcat_flg == 0) {\t\t/* Open output file */\n\t\tif (freopen(ofname, \"w\", stdout) == NULL) {\n\t\t    perror(ofname);\n\t\t    continue;\n\t\t}\n\t\tif(!quiet)\n\t\t\tfprintf(stderr, \"%s: \", *fileptr);\n\t    }\n\n\t    /* Actually do the compression/decompression */\n\t    if (do_decomp == 0)\tcompress();\n#ifndef DEBUG\n\t    else\t\t\tdecompress();\n#else\n\t    else if (debug == 0)\tdecompress();\n\t    else\t\t\tprintcodes();\n\t    if (verbose)\t\tdump_tab();\n#endif /* DEBUG */\n\t    if(zcat_flg == 0) {\n\t\tcopystat(*fileptr, ofname);\t/* Copy stats */\n\t\tif((exit_stat == 1) || (!quiet))\n\t\t\tputc('\\n', stderr);\n\t    }\n\t}\n    } else {\t\t/* Standard input */\n\tif (do_decomp == 0) {\n\t\tcompress();\n#ifdef DEBUG\n\t\tif(verbose)\t\tdump_tab();\n#endif /* DEBUG */\n\t\tif(!quiet)\n\t\t\tputc('\\n', stderr);\n\t} else {\n\t    /* Check the magic number */\n\t    if (nomagic == 0) {\n\t\tif ((getchar()!=(magic_header[0] & 0xFF))\n\t\t || (getchar()!=(magic_header[1] & 0xFF))) {\n\t\t    fprintf(stderr, \"stdin: not in compressed format\\n\");\n\t\t    exit(1);\n\t\t}\n\t\tmaxbits = getchar();\t/* set -b from file */\n\t\tblock_compress = maxbits & BLOCK_MASK;\n\t\tmaxbits &= BIT_MASK;\n\t\tmaxmaxcode = 1 << maxbits;\n\t\tfsize = 100000;\t\t/* assume stdin large for USERMEM */\n\t\tif(maxbits > BITS) {\n\t\t\tfprintf(stderr,\n\t\t\t\"stdin: compressed with %d bits, can only handle %d bits\\n\",\n\t\t\tmaxbits, BITS);\n\t\t\texit(1);\n\t\t}\n\t    }\n#ifndef DEBUG\n\t    decompress();\n#else\n\t    if (debug == 0)\tdecompress();\n\t    else\t\tprintcodes();\n\t    if (verbose)\tdump_tab();\n#endif /* DEBUG */\n\t}\n    }\n    exit(exit_stat);\n}\n\nstatic int offset;\nlong int in_count = 1;\t\t\t/* length of input */\nlong int bytes_out;\t\t\t/* length of compressed output */\nlong int out_count = 0;\t\t\t/* # of codes output (for debugging) */\n\n/*\n * compress stdin to stdout\n *\n * Algorithm:  use open addressing double hashing (no chaining) on the \n * prefix code / next character combination.  We do a variant of Knuth's\n * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime\n * secondary probe.  Here, the modular division first probe is gives way\n * to a faster exclusive-or manipulation.  Also do block compression with\n * an adaptive reset, whereby the code table is cleared when the compression\n * ratio decreases, but after the table fills.  The variable-length output\n * codes are re-sized at this point, and a special CLEAR code is generated\n * for the decompressor.  Late addition:  construct the table according to\n * file size for noticeable speed improvement on small files.  Please direct\n * questions about this implementation to ames!jaw.\n */\n\ncompress() {\n    register long fcode;\n    register code_int i = 0;\n    register int c;\n    register code_int ent;\n#ifdef XENIX_16\n    register code_int disp;\n#else\t/* Normal machine */\n    register int disp;\n#endif\n    register code_int hsize_reg;\n    register int hshift;\n\n#ifndef COMPATIBLE\n    if (nomagic == 0) {\n\tputchar(magic_header[0]); putchar(magic_header[1]);\n\tputchar((char)(maxbits | block_compress));\n\tif(ferror(stdout))\n\t\twriteerr();\n    }\n#endif /* COMPATIBLE */\n\n    offset = 0;\n    bytes_out = 3;\t\t/* includes 3-byte header mojo */\n    out_count = 0;\n    clear_flg = 0;\n    ratio = 0;\n    in_count = 1;\n    checkpoint = CHECK_GAP;\n    maxcode = MAXCODE(n_bits = INIT_BITS);\n    free_ent = ((block_compress) ? FIRST : 256 );\n\n    ent = getchar ();\n\n    hshift = 0;\n    for ( fcode = (long) hsize;  fcode < 65536L; fcode *= 2L )\n    \thshift++;\n    hshift = 8 - hshift;\t\t/* set hash code range bound */\n\n    hsize_reg = hsize;\n    cl_hash( (count_int) hsize_reg);\t\t/* clear hash table */\n\n#ifdef SIGNED_COMPARE_SLOW\n    while ( (c = getchar()) != (unsigned) EOF ) {\n#else\n    while ( (c = getchar()) != EOF ) {\n#endif\n\tin_count++;\n\tfcode = (long) (((long) c << maxbits) + ent);\n \ti = ((c << hshift) ^ ent);\t/* xor hashing */\n\n\tif ( htabof (i) == fcode ) {\n\t    ent = codetabof (i);\n\t    continue;\n\t} else if ( (long)htabof (i) < 0 )\t/* empty slot */\n\t    goto nomatch;\n \tdisp = hsize_reg - i;\t\t/* secondary hash (after G. Knott) */\n\tif ( i == 0 )\n\t    disp = 1;\nprobe:\n\tif ( (i -= disp) < 0 )\n\t    i += hsize_reg;\n\n\tif ( htabof (i) == fcode ) {\n\t    ent = codetabof (i);\n\t    continue;\n\t}\n\tif ( (long)htabof (i) > 0 ) \n\t    goto probe;\nnomatch:\n\toutput ( (code_int) ent );\n\tout_count++;\n \tent = c;\n#ifdef SIGNED_COMPARE_SLOW\n\tif ( (unsigned) free_ent < (unsigned) maxmaxcode) {\n#else\n\tif ( free_ent < maxmaxcode ) {\n#endif\n \t    codetabof (i) = free_ent++;\t/* code -> hashtable */\n\t    htabof (i) = fcode;\n\t}\n\telse if ( (count_int)in_count >= checkpoint && block_compress )\n\t    cl_block ();\n    }\n    /*\n     * Put out the final code.\n     */\n    output( (code_int)ent );\n    out_count++;\n    output( (code_int)-1 );\n\n    /*\n     * Print out stats on stderr\n     */\n    if(zcat_flg == 0 && !quiet) {\n#ifdef DEBUG\n\tfprintf( stderr,\n\t\t\"%ld chars in, %ld codes (%ld bytes) out, compression factor: \",\n\t\tin_count, out_count, bytes_out );\n\tprratio( stderr, in_count, bytes_out );\n\tfprintf( stderr, \"\\n\");\n\tfprintf( stderr, \"\\tCompression as in compact: \" );\n\tprratio( stderr, in_count-bytes_out, in_count );\n\tfprintf( stderr, \"\\n\");\n\tfprintf( stderr, \"\\tLargest code (of last block) was %d (%d bits)\\n\",\n\t\tfree_ent - 1, n_bits );\n#else /* !DEBUG */\n\tfprintf( stderr, \"Compression: \" );\n\tprratio( stderr, in_count-bytes_out, in_count );\n#endif /* DEBUG */\n    }\n    if(bytes_out > in_count)\t/* exit(2) if no savings */\n\texit_stat = 2;\n    return;\n}\n\n/*****************************************************************\n * TAG( output )\n *\n * Output the given code.\n * Inputs:\n * \tcode:\tA n_bits-bit integer.  If == -1, then EOF.  This assumes\n *\t\tthat n_bits =< (long)wordsize - 1.\n * Outputs:\n * \tOutputs code to the file.\n * Assumptions:\n *\tChars are 8 bits long.\n * Algorithm:\n * \tMaintain a BITS character long buffer (so that 8 codes will\n * fit in it exactly).  Use the VAX insv instruction to insert each\n * code in turn.  When the buffer fills up empty it and start over.\n */\n\nstatic char buf[BITS];\n\n#ifndef vax\nchar_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};\nchar_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};\n#endif /* vax */\n\noutput( code )\ncode_int  code;\n{\n#ifdef DEBUG\n    static int col = 0;\n#endif /* DEBUG */\n\n    /*\n     * On the VAX, it is important to have the register declarations\n     * in exactly the order given, or the asm will break.\n     */\n    register int r_off = offset, bits= n_bits;\n    register char * bp = buf;\n\n#ifdef DEBUG\n\tif ( verbose )\n\t    fprintf( stderr, \"%5d%c\", code,\n\t\t    (col+=6) >= 74 ? (col = 0, '\\n') : ' ' );\n#endif /* DEBUG */\n    if ( code >= 0 ) {\n#ifdef vax\n\t/* VAX DEPENDENT!! Implementation on other machines is below.\n\t *\n\t * Translation: Insert BITS bits from the argument starting at\n\t * offset bits from the beginning of buf.\n\t */\n\t0;\t/* Work around for pcc -O bug with asm and if stmt */\n\tasm( \"insv\t4(ap),r11,r10,(r9)\" );\n#else /* not a vax */\n/* \n * byte/bit numbering on the VAX is simulated by the following code\n */\n\t/*\n\t * Get to the first byte.\n\t */\n\tbp += (r_off >> 3);\n\tr_off &= 7;\n\t/*\n\t * Since code is always >= 8 bits, only need to mask the first\n\t * hunk on the left.\n\t */\n\t*bp = (*bp & rmask[r_off]) | (code << r_off) & lmask[r_off];\n\tbp++;\n\tbits -= (8 - r_off);\n\tcode >>= 8 - r_off;\n\t/* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */\n\tif ( bits >= 8 ) {\n\t    *bp++ = code;\n\t    code >>= 8;\n\t    bits -= 8;\n\t}\n\t/* Last bits. */\n\tif(bits)\n\t    *bp = code;\n#endif /* vax */\n\toffset += n_bits;\n\tif ( offset == (n_bits << 3) ) {\n\t    bp = buf;\n\t    bits = n_bits;\n\t    bytes_out += bits;\n\t    do\n\t\tputchar(*bp++);\n\t    while(--bits);\n\t    offset = 0;\n\t}\n\n\t/*\n\t * If the next entry is going to be too big for the code size,\n\t * then increase it, if possible.\n\t */\n\tif ( free_ent > maxcode || (clear_flg > 0))\n\t{\n\t    /*\n\t     * Write the whole buffer, because the input side won't\n\t     * discover the size increase until after it has read it.\n\t     */\n\t    if ( offset > 0 ) {\n\t\tif( fwrite( buf, 1, n_bits, stdout ) != n_bits)\n\t\t\twriteerr();\n\t\tbytes_out += n_bits;\n\t    }\n\t    offset = 0;\n\n\t    if ( clear_flg ) {\n    \t        maxcode = MAXCODE (n_bits = INIT_BITS);\n\t        clear_flg = 0;\n\t    }\n\t    else {\n\t    \tn_bits++;\n\t    \tif ( n_bits == maxbits )\n\t\t    maxcode = maxmaxcode;\n\t    \telse\n\t\t    maxcode = MAXCODE(n_bits);\n\t    }\n#ifdef DEBUG\n\t    if ( debug ) {\n\t\tfprintf( stderr, \"\\nChange to %d bits\\n\", n_bits );\n\t\tcol = 0;\n\t    }\n#endif /* DEBUG */\n\t}\n    } else {\n\t/*\n\t * At EOF, write the rest of the buffer.\n\t */\n\tif ( offset > 0 )\n\t    fwrite( buf, 1, (offset + 7) / 8, stdout );\n\tbytes_out += (offset + 7) / 8;\n\toffset = 0;\n\tfflush( stdout );\n#ifdef DEBUG\n\tif ( verbose )\n\t    fprintf( stderr, \"\\n\" );\n#endif /* DEBUG */\n\tif( ferror( stdout ) )\n\t\twriteerr();\n    }\n}\n\n/*\n * Decompress stdin to stdout.  This routine adapts to the codes in the\n * file building the \"string\" table on-the-fly; requiring no table to\n * be stored in the compressed file.  The tables used herein are shared\n * with those of the compress() routine.  See the definitions above.\n */\n\ndecompress() {\n    register char_type *stackp;\n    register int finchar;\n    register code_int code, oldcode, incode;\n\n    /*\n     * As above, initialize the first 256 entries in the table.\n     */\n    maxcode = MAXCODE(n_bits = INIT_BITS);\n    for ( code = 255; code >= 0; code-- ) {\n\ttab_prefixof(code) = 0;\n\ttab_suffixof(code) = (char_type)code;\n    }\n    free_ent = ((block_compress) ? FIRST : 256 );\n\n    finchar = oldcode = getcode();\n    if(oldcode == -1)\t/* EOF already? */\n\treturn;\t\t\t/* Get out of here */\n    putchar( (char)finchar );\t\t/* first code must be 8 bits = char */\n    if(ferror(stdout))\t\t/* Crash if can't write */\n\twriteerr();\n    stackp = de_stack;\n\n    while ( (code = getcode()) > -1 ) {\n\n\tif ( (code == CLEAR) && block_compress ) {\n\t    for ( code = 255; code >= 0; code-- )\n\t\ttab_prefixof(code) = 0;\n\t    clear_flg = 1;\n\t    free_ent = FIRST - 1;\n\t    if ( (code = getcode ()) == -1 )\t/* O, untimely death! */\n\t\tbreak;\n\t}\n\tincode = code;\n\t/*\n\t * Special case for KwKwK string.\n\t */\n\tif ( code >= free_ent ) {\n            *stackp++ = finchar;\n\t    code = oldcode;\n\t}\n\n\t/*\n\t * Generate output characters in reverse order\n\t */\n#ifdef SIGNED_COMPARE_SLOW\n\twhile ( ((unsigned long)code) >= ((unsigned long)256) ) {\n#else\n\twhile ( code >= 256 ) {\n#endif\n\t    *stackp++ = tab_suffixof(code);\n\t    code = tab_prefixof(code);\n\t}\n\t*stackp++ = finchar = tab_suffixof(code);\n\n\t/*\n\t * And put them out in forward order\n\t */\n\tdo\n\t    putchar ( *--stackp );\n\twhile ( stackp > de_stack );\n\n\t/*\n\t * Generate the new entry.\n\t */\n\tif ( (code=free_ent) < maxmaxcode ) {\n\t    tab_prefixof(code) = (unsigned short)oldcode;\n\t    tab_suffixof(code) = finchar;\n\t    free_ent = code+1;\n\t} \n\t/*\n\t * Remember previous code.\n\t */\n\toldcode = incode;\n    }\n    fflush( stdout );\n    if(ferror(stdout))\n\twriteerr();\n}\n\n/*****************************************************************\n * TAG( getcode )\n *\n * Read one code from the standard input.  If EOF, return -1.\n * Inputs:\n * \tstdin\n * Outputs:\n * \tcode or -1 is returned.\n */\n\ncode_int\ngetcode() {\n    /*\n     * On the VAX, it is important to have the register declarations\n     * in exactly the order given, or the asm will break.\n     */\n    register code_int code;\n    static int offset = 0, size = 0;\n    static char_type buf[BITS];\n    register int r_off, bits;\n    register char_type *bp = buf;\n\n    if ( clear_flg > 0 || offset >= size || free_ent > maxcode ) {\n\t/*\n\t * If the next entry will be too big for the current code\n\t * size, then we must increase the size.  This implies reading\n\t * a new buffer full, too.\n\t */\n\tif ( free_ent > maxcode ) {\n\t    n_bits++;\n\t    if ( n_bits == maxbits )\n\t\tmaxcode = maxmaxcode;\t/* won't get any bigger now */\n\t    else\n\t\tmaxcode = MAXCODE(n_bits);\n\t}\n\tif ( clear_flg > 0) {\n    \t    maxcode = MAXCODE (n_bits = INIT_BITS);\n\t    clear_flg = 0;\n\t}\n\tsize = fread( buf, 1, n_bits, stdin );\n\tif ( size <= 0 )\n\t    return -1;\t\t\t/* end of file */\n\toffset = 0;\n\t/* Round size down to integral number of codes */\n\tsize = (size << 3) - (n_bits - 1);\n    }\n    r_off = offset;\n    bits = n_bits;\n#ifdef vax\n    asm( \"extzv   r10,r9,(r8),r11\" );\n#else /* not a vax */\n\t/*\n\t * Get to the first byte.\n\t */\n\tbp += (r_off >> 3);\n\tr_off &= 7;\n\t/* Get first part (low order bits) */\n#ifdef NO_UCHAR\n\tcode = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;\n#else\n\tcode = (*bp++ >> r_off);\n#endif /* NO_UCHAR */\n\tbits -= (8 - r_off);\n\tr_off = 8 - r_off;\t\t/* now, offset into code word */\n\t/* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */\n\tif ( bits >= 8 ) {\n#ifdef NO_UCHAR\n\t    code |= (*bp++ & 0xff) << r_off;\n#else\n\t    code |= *bp++ << r_off;\n#endif /* NO_UCHAR */\n\t    r_off += 8;\n\t    bits -= 8;\n\t}\n\t/* high order bits. */\n\tcode |= (*bp & rmask[bits]) << r_off;\n#endif /* vax */\n    offset += n_bits;\n\n    return code;\n}\n\nchar *\nrindex(s, c)\t\t/* For those who don't have it in libc.a */\nregister char *s, c;\n{\n\tchar *p;\n\tfor (p = NULL; *s; s++)\n\t    if (*s == c)\n\t\tp = s;\n\treturn(p);\n}\n\n#ifdef DEBUG\nprintcodes()\n{\n    /*\n     * Just print out codes from input file.  For debugging.\n     */\n    code_int code;\n    int col = 0, bits;\n\n    bits = n_bits = INIT_BITS;\n    maxcode = MAXCODE(n_bits);\n    free_ent = ((block_compress) ? FIRST : 256 );\n    while ( ( code = getcode() ) >= 0 ) {\n\tif ( (code == CLEAR) && block_compress ) {\n   \t    free_ent = FIRST - 1;\n   \t    clear_flg = 1;\n\t}\n\telse if ( free_ent < maxmaxcode )\n\t    free_ent++;\n\tif ( bits != n_bits ) {\n\t    fprintf(stderr, \"\\nChange to %d bits\\n\", n_bits );\n\t    bits = n_bits;\n\t    col = 0;\n\t}\n\tfprintf(stderr, \"%5d%c\", code, (col+=6) >= 74 ? (col = 0, '\\n') : ' ' );\n    }\n    putc( '\\n', stderr );\n    exit( 0 );\n}\n\ncode_int sorttab[1<<BITS];\t/* sorted pointers into htab */\n\ndump_tab()\t/* dump string table */\n{\n    register int i, first;\n    register ent;\n#define STACK_SIZE\t15000\n    int stack_top = STACK_SIZE;\n    register c;\n\n    if(do_decomp == 0) {\t/* compressing */\n\tregister int flag = 1;\n\n\tfor(i=0; i<hsize; i++) {\t/* build sort pointers */\n\t\tif((long)htabof(i) >= 0) {\n\t\t\tsorttab[codetabof(i)] = i;\n\t\t}\n\t}\n\tfirst = block_compress ? FIRST : 256;\n\tfor(i = first; i < free_ent; i++) {\n\t\tfprintf(stderr, \"%5d: \\\"\", i);\n\t\tde_stack[--stack_top] = '\\n';\n\t\tde_stack[--stack_top] = '\"';\n\t\tstack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff, \n                                     stack_top);\n\t\tfor(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);\n\t\t    ent > 256;\n\t\t    ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {\n\t\t\tstack_top = in_stack(htabof(sorttab[ent]) >> maxbits,\n\t\t\t\t\t\tstack_top);\n\t\t}\n\t\tstack_top = in_stack(ent, stack_top);\n\t\tfwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);\n\t   \tstack_top = STACK_SIZE;\n\t}\n   } else if(!debug) {\t/* decompressing */\n\n       for ( i = 0; i < free_ent; i++ ) {\n\t   ent = i;\n\t   c = tab_suffixof(ent);\n\t   if ( isascii(c) && isprint(c) )\n\t       fprintf( stderr, \"%5d: %5d/'%c'  \\\"\",\n\t\t\t   ent, tab_prefixof(ent), c );\n\t   else\n\t       fprintf( stderr, \"%5d: %5d/\\\\%03o \\\"\",\n\t\t\t   ent, tab_prefixof(ent), c );\n\t   de_stack[--stack_top] = '\\n';\n\t   de_stack[--stack_top] = '\"';\n\t   for ( ; ent != NULL;\n\t\t   ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {\n\t       stack_top = in_stack(tab_suffixof(ent), stack_top);\n\t   }\n\t   fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );\n\t   stack_top = STACK_SIZE;\n       }\n    }\n}\n\nint\nin_stack(c, stack_top)\n\tregister c, stack_top;\n{\n\tif ( (isascii(c) && isprint(c) && c != '\\\\') || c == ' ' ) {\n\t    de_stack[--stack_top] = c;\n\t} else {\n\t    switch( c ) {\n\t    case '\\n': de_stack[--stack_top] = 'n'; break;\n\t    case '\\t': de_stack[--stack_top] = 't'; break;\n\t    case '\\b': de_stack[--stack_top] = 'b'; break;\n\t    case '\\f': de_stack[--stack_top] = 'f'; break;\n\t    case '\\r': de_stack[--stack_top] = 'r'; break;\n\t    case '\\\\': de_stack[--stack_top] = '\\\\'; break;\n\t    default:\n\t \tde_stack[--stack_top] = '0' + c % 8;\n\t \tde_stack[--stack_top] = '0' + (c / 8) % 8;\n\t \tde_stack[--stack_top] = '0' + c / 64;\n\t \tbreak;\n\t    }\n\t    de_stack[--stack_top] = '\\\\';\n\t}\n\treturn stack_top;\n}\n#endif /* DEBUG */\n\nwriteerr()\n{\n    perror ( ofname );\n    unlink ( ofname );\n    exit ( 1 );\n}\n\ncopystat(ifname, ofname)\nchar *ifname, *ofname;\n{\n    struct stat statbuf;\n    int mode;\n    time_t timep[2];\n\n    fclose(stdout);\n    if (stat(ifname, &statbuf)) {\t\t/* Get stat on input file */\n\tperror(ifname);\n\treturn;\n    }\n    if ((statbuf.st_mode & S_IFMT/*0170000*/) != S_IFREG/*0100000*/) {\n\tif(quiet)\n\t    \tfprintf(stderr, \"%s: \", ifname);\n\tfprintf(stderr, \" -- not a regular file: unchanged\");\n\texit_stat = 1;\n    } else if (statbuf.st_nlink > 1) {\n\tif(quiet)\n\t    \tfprintf(stderr, \"%s: \", ifname);\n\tfprintf(stderr, \" -- has %d other links: unchanged\",\n\t\tstatbuf.st_nlink - 1);\n\texit_stat = 1;\n    } else if (exit_stat == 2 && (!force)) { /* No compression: rm file.Z */\n\tif(!quiet)\n\t\tfprintf(stderr, \" -- file unchanged\");\n    } else {\t\t\t/* ***** Successful Compression ***** */\n\texit_stat = 0;\n\tmode = statbuf.st_mode & 07777;\n\tif (chmod(ofname, mode))\t\t/* Copy modes */\n\t    perror(ofname);\n\tchown(ofname, statbuf.st_uid, statbuf.st_gid);\t/* Copy ownership */\n\ttimep[0] = statbuf.st_atime;\n\ttimep[1] = statbuf.st_mtime;\n\tutime(ofname, timep);\t/* Update last accessed and modified times */\n\tif (unlink(ifname))\t/* Remove input file */\n\t    perror(ifname);\n\tif(!quiet)\n\t\tfprintf(stderr, \" -- replaced with %s\", ofname);\n\treturn;\t\t/* Successful return */\n    }\n\n    /* Unsuccessful return -- one of the tests failed */\n    if (unlink(ofname))\n\tperror(ofname);\n}\n/*\n * This routine returns 1 if we are running in the foreground and stderr\n * is a tty.\n */\nforeground()\n{\n\tif(bgnd_flag) {\t/* background? */\n\t\treturn(0);\n\t} else {\t\t\t/* foreground */\n\t\tif(isatty(2)) {\t\t/* and stderr is a tty */\n\t\t\treturn(1);\n\t\t} else {\n\t\t\treturn(0);\n\t\t}\n\t}\n}\n\nonintr ( )\n{\n    unlink ( ofname );\n    exit ( 1 );\n}\n\noops ( )\t/* wild pointer -- assume bad input */\n{\n    if ( do_decomp == 1 ) \n    \tfprintf ( stderr, \"uncompress: corrupt input\\n\" );\n    unlink ( ofname );\n    exit ( 1 );\n}\n\ncl_block ()\t\t/* table clear for block compress */\n{\n    register long int rat;\n\n    checkpoint = in_count + CHECK_GAP;\n#ifdef DEBUG\n\tif ( debug ) {\n    \t\tfprintf ( stderr, \"count: %ld, ratio: \", in_count );\n     \t\tprratio ( stderr, in_count, bytes_out );\n\t\tfprintf ( stderr, \"\\n\");\n\t}\n#endif /* DEBUG */\n\n    if(in_count > 0x007fffff) {\t/* shift will overflow */\n\trat = bytes_out >> 8;\n\tif(rat == 0) {\t\t/* Don't divide by zero */\n\t    rat = 0x7fffffff;\n\t} else {\n\t    rat = in_count / rat;\n\t}\n    } else {\n\trat = (in_count << 8) / bytes_out;\t/* 8 fractional bits */\n    }\n    if ( rat > ratio ) {\n\tratio = rat;\n    } else {\n\tratio = 0;\n#ifdef DEBUG\n\tif(verbose)\n\t\tdump_tab();\t/* dump string table */\n#endif\n \tcl_hash ( (count_int) hsize );\n\tfree_ent = FIRST;\n\tclear_flg = 1;\n\toutput ( (code_int) CLEAR );\n#ifdef DEBUG\n\tif(debug)\n    \t\tfprintf ( stderr, \"clear\\n\" );\n#endif /* DEBUG */\n    }\n}\n\ncl_hash(hsize)\t\t/* reset code table */\n\tregister count_int hsize;\n{\n#ifndef XENIX_16\t/* Normal machine */\n\tregister count_int *htab_p = htab+hsize;\n#else\n\tregister j;\n\tregister long k = hsize;\n\tregister count_int *htab_p;\n#endif\n\tregister long i;\n\tregister long m1 = -1;\n\n#ifdef XENIX_16\n    for(j=0; j<=8 && k>=0; j++,k-=8192) {\n\ti = 8192;\n\tif(k < 8192) {\n\t\ti = k;\n\t}\n\thtab_p = &(htab[j][i]);\n\ti -= 16;\n\tif(i > 0) {\n#else\n\ti = hsize - 16;\n#endif\n \tdo {\t\t\t\t/* might use Sys V memset(3) here */\n\t\t*(htab_p-16) = m1;\n\t\t*(htab_p-15) = m1;\n\t\t*(htab_p-14) = m1;\n\t\t*(htab_p-13) = m1;\n\t\t*(htab_p-12) = m1;\n\t\t*(htab_p-11) = m1;\n\t\t*(htab_p-10) = m1;\n\t\t*(htab_p-9) = m1;\n\t\t*(htab_p-8) = m1;\n\t\t*(htab_p-7) = m1;\n\t\t*(htab_p-6) = m1;\n\t\t*(htab_p-5) = m1;\n\t\t*(htab_p-4) = m1;\n\t\t*(htab_p-3) = m1;\n\t\t*(htab_p-2) = m1;\n\t\t*(htab_p-1) = m1;\n\t\thtab_p -= 16;\n\t} while ((i -= 16) >= 0);\n#ifdef XENIX_16\n\t}\n    }\n#endif\n    \tfor ( i += 16; i > 0; i-- )\n\t\t*--htab_p = m1;\n}\n\nprratio(stream, num, den)\nFILE *stream;\nlong int num, den;\n{\n\tregister int q;\t\t\t/* Doesn't need to be long */\n\n\tif(num > 214748L) {\t\t/* 2147483647/10000 */\n\t\tq = num / (den / 10000L);\n\t} else {\n\t\tq = 10000L * num / den;\t\t/* Long calculations, though */\n\t}\n\tif (q < 0) {\n\t\tputc('-', stream);\n\t\tq = -q;\n\t}\n\tfprintf(stream, \"%d.%02d%%\", q / 100, q % 100);\n}\n\nversion()\n{\n\tfprintf(stderr, \"%s\\n\", rcs_ident);\n\tfprintf(stderr, \"Options: \");\n#ifdef vax\n\tfprintf(stderr, \"vax, \");\n#endif\n#ifdef NO_UCHAR\n\tfprintf(stderr, \"NO_UCHAR, \");\n#endif\n#ifdef SIGNED_COMPARE_SLOW\n\tfprintf(stderr, \"SIGNED_COMPARE_SLOW, \");\n#endif\n#ifdef XENIX_16\n\tfprintf(stderr, \"XENIX_16, \");\n#endif\n#ifdef COMPATIBLE\n\tfprintf(stderr, \"COMPATIBLE, \");\n#endif\n#ifdef DEBUG\n\tfprintf(stderr, \"DEBUG, \");\n#endif\n#ifdef BSD4_2\n\tfprintf(stderr, \"BSD4_2, \");\n#endif\n\tfprintf(stderr, \"BITS = %d\\n\", BITS);\n}\n"
  },
  {
    "path": "testdata/calgary/progl",
    "content": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; form.l -- screen forms handler\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(declare\n  (specials t)\n  (macros t))\n\n(eval-when (compile)\n  (load 'utilities)\n  (load 'constants)\n  (load 'zone)\n  (load 'look)\n  (load 'font)\n  (load 'text)\n  (load 'text-edit))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tgeneric fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (field\t\t; generic field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'generic-field)\t\t; type = generic\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty property list\n)\n\n(defvar field-properties\t; list of expected field properties\n  '(\"field-properties\"\n    fill-ground\t\t(solid pattern)\t\t; should we draw when highlit?\n    fill-colour\t\t(x_colour x_pattern)\t; what colour or pattern?\n    empty-ground \t(solid pattern)\t\t; should we draw when unlit?\n    empty-colour\t(x_colour x_pattern)\t; what colour or pattern?\n    border-colour\t(x_colour) ; should we draw border (and what colour?)\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-field (f)\t\t; draw field from scratch\n  (apply (concat 'draw- (field-type f))\t; construct draw function name\n\t (ncons f)))\t\t\t\t; then call it\n\n(defun init-field (f)\t\t; initialize a field\n  (apply (concat 'init- (field-type f))\t; construct init function name\n\t (ncons f)))\t\t\t\t; then call it\n\n(defun resize-field (f box)\t\t; resize a field\n  (apply\t\t\t\t; construct resize function name\n    (concat 'resize- (field-type f))\n    (list f box)))\t\t\t\t; then call it\n\n(defun toggle-field (f)\t\t; toggle a field\n  (apply (concat 'toggle- (field-type f)) ; construct toggle fcn name\n\t (ncons f)))\t\t\t\t; then call it\n\n(defun check-field (f p)\t; check if point is inside field excl.border\n  (cond ((point-in-box-interior p (zone-box (field-zone f)))\n\t (apply\t\t\t; if so, construct check function name\n\t   (concat 'check- (field-type f))\n\t   (list f p)))\t\t; then call it and return result\n\t(t nil)))\t\t; otherwise return nil\n\n(defun fill-field (f)\t\t; fill the field interior, if defined\n  (let ((b (get (field-properties f) 'fill-ground))\t; check if has one\n\t(c (get (field-properties f) 'fill-colour)))\n       (cond ((eq b 'solid)\t; solid background\n\t      (cond (c (clear-zone-interior (field-zone f) c))\n\t\t    (t (clear-zone-interior (field-zone f) W-CONTRAST))))\n\t     ((eq b 'pattern)\t; patterned background\n\t      (cond (c (pattern-zone-interior (field-zone f) c))\n\t\t    (t (pattern-zone-interior (field-zone f) W-PATTERN-1))))\n       )))\t\t\t; no background at all!\n\n(defun empty-field (f)\t\t; empty the field interior, if defined\n  (let ((b (get (field-properties f) 'empty-ground)) ; check if has one\n\t(c (get (field-properties f) 'empty-colour)))\n       (cond ((eq b 'solid)\t; solid background\n\t      (cond (c (clear-zone-interior (field-zone f) c))\n\t\t    (t (clear-zone-interior (field-zone f) W-BACKGROUND))))\n\t     ((eq b 'pattern)\t; patterned background\n\t      (cond (c (pattern-zone-interior (field-zone f) c))\n\t\t    (t (pattern-zone-interior (field-zone f) W-PATTERN-1))))\n       )))\t\t\t; no background at all!\n\n(defun draw-field-background (f)\t; just what it says\n  (let ((b (get (field-properties f) 'empty-ground)) ; check if has one\n\t(c (get (field-properties f) 'empty-colour)))\n       (cond ((eq b 'solid)\t; solid background\n\t      (cond (c (clear-zone (field-zone f) c))\n\t\t    (t (clear-zone (field-zone f) W-BACKGROUND))))\n\t     ((eq b 'pattern)\t; patterned background\n\t      (cond (c (pattern-zone (field-zone f) c))\n\t\t    (t (pattern-zone (field-zone f) W-PATTERN-1))))\n       )))\t\t\t; no background at all!\n\n(defun draw-field-border (f)\t\t; draw outline, if any\n  (let ((c (get (field-properties f) 'border-colour)))\n       (cond (c (draw-zone-outline (field-zone f) c)))\n  ))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\taggregate fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (aggregate-field\t; aggregate field = form\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'aggregate-field)\t\t; type\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty property list\n  subfields\t\t\t; list of subfields\n  selection\t\t\t; which subfield was last hit\n)\n  \n(defvar aggregate-field-properties\n  `(\"aggregate-field-properties\"\n    = ,field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-aggregate-field (f)\n  (draw-field-background f)\t\t\t; clear background, if any\n  (draw-field-border f)\t\t\t\t; draw border, if any\n  (mapc 'draw-field (aggregate-field-subfields f)) ; draw subfields\n  (w-flush (window-w (zone-window (field-zone f)))) t) ; flush it out\n\n(defun init-aggregate-field (f)\n  (mapc 'init-field (aggregate-field-subfields f))\n  (alter-aggregate-field f selection nil) t)\n\n(defun resize-aggregate-field (f box)\n  (alter-zone (field-zone f) box box))\n\n(defun check-aggregate-field (f p)\n  (do ((subfields (aggregate-field-subfields f)\t; go through subfields\n\t (cdr subfields))\n       (gotcha))\n      ((or (null subfields)\t\t\t\t; stop when no more\n\t   (setq gotcha (check-field (car subfields) p))) ; or when one is hit\n       (alter-aggregate-field f selection gotcha)\t; remember which one\n       gotcha)))\t\t\t\t\t; also return it\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tremote fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; A remote field is a field which activates another field when hit.\n;;; Usually the remote field has some functional significance!\n\n(defstruct\n  (remote-field\t\t; remote field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'remote-field)\t\t; type = remote\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty plist\n  (target)\t\t\t; the actual target field\n  (point)\t\t\t; x,y coords to pretend to use\n)\n\n(defvar remote-field-properties\n  `(\"remote-field-properties\"\n    = ,field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-remote-field (f) 't)\t; nothing to draw\n\n(defun init-remote-field (f) 't)\t; nothing to initialize\n\n(defun resize-remote-field (f box)\n  (alter-zone (field-zone f) box box))\n\n(defun check-remote-field (f p)\n  (check-field\n    (remote-field-target f)\n    (remote-field-point f)))\t\t; return result of checking target\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tbutton fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (button-field\t\t; button field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'button-field)\t\t; type = button\n  (zone (make-zone))\t\t; bounding zone\n  (properties\n    (list nil\t\t\t; default properties\n\t  'fill-ground 'solid\n\t  'empty-ground 'solid\n\t  'border-colour W-CONTRAST\n    ))\n  (value nil)\t\t\t; value\n)\n\n(defvar button-field-properties\n  `(\"button-field-properties\"\n    = ,field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-button-field (f)\n  (draw-field-border f)\n  (cond ((button-field-value f)\n\t (fill-field f))\n\t(t (empty-field f))))\n\n(defun toggle-button-field (f)\n  (alter-button-field f value (not (button-field-value f)))\n  (clear-zone-interior (field-zone f) W-XOR))\n\n(defun init-button-field (f)\n  (alter-button-field f value nil))\t; turn it off\n\n(defun resize-button-field (f box)\n  (alter-zone (field-zone f) box box))\n\n(defun check-button-field (f p)\n  (toggle-button-field f) f)\t; if we get here it's a hit -> return self\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tradio-button fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; Named for the buttons on radios in which only one is \"in\" at a time.\n\n(defstruct\n  (radio-button-field\t\t; radio-button field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'radio-button-field)\t\t; type = radio-button\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty plist\n  (subfields nil)\t\t; individual buttons\n  (selection nil)\t\t; which one last hit\n)\n\n(defvar radio-button-field-properties\n  `(\"radio-button-field-properties\"\n    = ,aggregate-field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-radio-button-field (f)\n  (draw-aggregate-field f))\n\n(defun init-radio-button-field (f)\n  (init-aggregate-field f))\n\n(defun resize-radio-button-field (f box)\n  (alter-zone (field-zone f) box box))\n\n(defun check-radio-button-field (f p)\n  (cond ((and (radio-button-field-selection f)\t; if button previously sel'd\n\t      (button-field-value\n\t\t(radio-button-field-selection f))) ; and it has a value\n\t (toggle-field\t\t\t\t; turn it off\n\t   (radio-button-field-selection f))))\n  (check-aggregate-field f p)\t\t\t; check individual buttons\n)\t\t; this will turn back on if same one sel'd, and return it\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\ttext fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (text-field\t\t; text field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'text-field)\t\t; type = text\n  (zone (make-zone))\t\t; bounding zone\n  (properties\n    (list nil\n\t  'fill-ground 'solid\n\t  'empty-ground 'solid\n\t  'border-colour W-CONTRAST\n\t  'x-offset 5\t\t; offset from left\n    ))\n  (value nil)\n  (text '||)\t\t\t; text of text\n)\n\n(defvar text-field-properties\n  `(\"text-field-properties\"\n    x-offset (x_pixels)\t\t; text offset from box ll, otherwise centred\n    y-offset (x_pixels)\t\t; text offset from box ll, otherwise centred\n    + ,button-field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-text-field (f)\n  (draw-button-field f)\n  (w-flush (window-w (zone-window (field-zone f)))) ; guarantee text on top\n  (draw-text (text-field-text f)))\n\n(defun redraw-text-field (f)\n  (empty-field f)\n  (w-flush (window-w (zone-window (field-zone f)))) ; guarantee text on top\n  (draw-text (text-field-text f)))\n\n(defun init-text-field (f)\t; position & position the text in the field\n  (let ((s (text-field-text f))\n\t(x-offset (get (field-properties f) 'x-offset))\t; x offset from ll\n\t(y-offset (get (field-properties f) 'y-offset))); y offset from ll\n       (alter-text s\n\t zone (make-zone\t\t\t; ensure it has a zone\n\t\twindow (zone-window (field-zone f))\n\t\tbox (box-interior (zone-box (field-zone f)))))\n       (format-text s)\t\t; ensure text delta calculated\n       (cond ((null x-offset)\t\t; x-offset specified?\n\t      (setq x-offset\t\t; nope! centre it left-right\n\t\t    (/ (- (x (box-size (zone-box (field-zone f))))\n\t\t\t  (x (text-delta s)))\n\t\t       2))))\n       (cond ((null y-offset)\t\t; y-offset specified?\n\t      (setq y-offset\t\t; nope! centre it up-down\n\t\t    (/ (- (y (box-size (zone-box (field-zone f))))\n\t\t\t  (font-x-height (look-font (text-look s))))\n\t\t       2))))\n       (alter-text s\t\t\t; now position the text\n\t offset (make-point x x-offset y y-offset))\n       ))\n\n(defun resize-text-field (f box)\t; position the text in the field\n  (alter-zone (field-zone f) box box)\n  (init-text-field f))\n\n(defun check-text-field (f p)\n  (input-text-field f) f)\t; if we get here it's a hit -> return self\n\n(defun input-text-field (f)\n  (alter-text (text-field-text f)\n    text '|| nn 0 kr 0 kl 0 delta (make-point x 0 y 0))\n  (draw-text-field f)\n  (edit-text-field f (ll (zone-box (text-zone (text-field-text f))))))\n\n(defun edit-text-field (f p)\t\t; edit in middle of text field\n  (edit-text (text-field-text f) p)\t; edit the text\n  (draw-field f))\t\t\t; redraw\n\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tprompt fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (prompt-field\t\t; prompt field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'prompt-field)\t\t; type = prompt\n  (zone (make-zone))\t\t; bounding zone\n  (properties\n    (list nil 'x-offset 0))\t; put it exactly where spec indicates.\n  (value nil)\n  (text '||)\t\t\t; text of prompt\n)\n\n(defvar prompt-field-properties\n  `(\"prompt-field-properties\"\n    = ,text-field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-prompt-field (f)\n  (draw-text-field f))\n\n(defun init-prompt-field (f)\n  (init-text-field f))\n\n(defun resize-prompt-field (f box)\t; position the text in the field\n  (resize-text-field f box))\n\n(defun check-prompt-field (f p) f) ; just return self\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\ttext-button fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; A text-button is a button tied to a text.\n;;; When the button is pressed, the text is input from the keyboard.\n;;; Zone could same as either the button (activation by button only)\n;;; or include both button & text (should then be adjacent)\n\n(defstruct\n  (text-button-field\t\t; text-button field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'text-button-field)\t\t; type = text-button\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty plist\n  (button)\t\t\t; button subfield\n  (text)\t\t\t; text subfield\n)\n\n(defvar text-button-field-properties\n  `(\"text-button-field-properties\"\n    = ,field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-text-button-field (f)\n  (draw-field (text-button-field-button f))\n  (draw-text-field (text-button-field-text f)))\n\n(defun init-text-button-field (f)\n  (init-field (text-button-field-button f))\n  (init-text-field (text-button-field-text f)))\n\n(defun resize-text-button-field (f box)\n  (alter-zone (field-zone f) box box))\n\n(defun toggle-text-button-field (f)\t; toggle only the button part\n  (cond ((button-field-value\t\t; and only if non-nil\n\t   (text-button-field-button f))\n\t (toggle-button-field (text-button-field-button f)))))\n\n(defun check-text-button-field (f p)\n  (cond ((check-field (text-button-field-button f) p)\n\t (input-text-field\t\t\t; input from scratch\n\t   (text-button-field-text f)))\t; get the data\n\t(t (toggle-button-field\t\t\t; must be pointing at text\n\t     (text-button-field-button f))\t; toggle only the button part\n\t   (edit-text-field\n\t     (text-button-field-text f) p))\t; edit the data\n  )\n  (toggle-button-field\t\t\t; toggle button back\n    (text-button-field-button f))\n  (alter-button-field (text-button-field-button f)\n    value nil)\t\t\t; keep aggregate from toggling again\n  f)\t\t\t\t\t; return self\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\tlabelled button fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (labelled-button-field ; labelled button field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'labelled-button-field)\t; type = labelled-button\n  (zone (make-zone))\t\t; bounding zone\n  (properties\n    (list nil\n\t  'fill-ground 'solid\n\t  'empty-ground 'solid\n\t  'border-colour W-CONTRAST\n    ))\n  (value nil)\t\t\t; value\n  (text '||)\t\t\t; label text\n)\n\n(defvar labelled-button-field-properties\n  `(\"labelled-button-field-properties\"\n    = ,text-field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-labelled-button-field (f)\n  (draw-text-field f))\n\n(defun init-labelled-button-field (f)\n  (init-text-field f))\n\n(defun resize-labelled-button-field (f box)\n  (resize-text-field f box))\n\n(defun check-labelled-button-field (f p)\n  (toggle-button-field f) f)\t; if we get here it's a hit -> return self\n\n(defun toggle-labelled-button-field (f)\n  (toggle-button-field f))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\texpanded-bitmap fields\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defstruct\n  (expanded-bitmap-field\t; expanded-bitmap field\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (type 'expanded-bitmap-field)\t; type = expanded-bitmap\n  (zone (make-zone))\t\t; bounding zone\n  (properties (list nil))\t; empty plist\n  (subfields nil)\t\t; individual bits\n  (selection nil)\t\t; which one last hit\n  (nrows 1)\n  (ncols 1)\n)\n\n(defvar expanded-bitmap-field-properties\n  `(\"expanded-bitmap-field-properties\"\n    = ,aggregate-field-properties\n   ))\t; can use this as real plist for online documentation\n\n(defun draw-expanded-bitmap-field (f)\n  (draw-aggregate-field f))\n\n(defun init-expanded-bitmap-field (f)\n  (let ((s (divide-points\t\t\t; calculate x,y dimensions\n\t     (box-size (zone-box (field-zone f)))\n\t     (make-point\n\t       x (expanded-bitmap-field-ncols f)\n\t       y (expanded-bitmap-field-nrows f)))))\n       (do ((z (field-zone f))\n\t    (r nil)\n\t    (x (x (ll (zone-box (field-zone f)))))\n\t    (y (y (ll (zone-box (field-zone f))))\n\t       (+ y dy))\n\t    (dx (x s))\n\t    (dy (y s))\n\t    (nc (expanded-bitmap-field-nrows f))\n\t    (nr (expanded-bitmap-field-nrows f))\n\t    (j 0 (1+ j)))\n\t   ((= j nr) (alter-aggregate-field f subfields (nreverse r)) 't)\n\t   (do ((x x (+ x dx))\n\t\t(p)\n\t\t(i 0 (1+ i)))\n\t       ((= i nc))\t\t\t; create a row of buttons\n\t       (setq p (make-point x x y y))\n\t       (setq r (xcons r (make-button-field zone (append z nil))))\n\t       (alter-zone (field-zone (car r))\n\t\t box (make-box ll p ur (add-points p s)))\n\t   ))))\n\n(defun resize-expanded-bitmap-field (f box)\n  (alter-zone (field-zone f) box box)\n  (let ((s (divide-points\t\t\t; calculate x,y dimensions\n\t     (box-size box)\n\t     (make-point\n\t       x (expanded-bitmap-field-ncols f)\n\t       y (expanded-bitmap-field-nrows f)))))\n       (do ((z (field-zone f))\n\t    (r (expanded-bitmap-field-subfields f))\n\t    (x (x (ll box)))\n\t    (y (y (ll box)) (+ y dy))\n\t    (dx (x s))\n\t    (dy (y s))\n\t    (nc (expanded-bitmap-field-nrows f))\n\t    (nr (expanded-bitmap-field-nrows f))\n\t    (j 0 (1+ j)))\n\t   ((= j nr) t)\n\t   (do ((x x (+ x dx))\n\t\t(p)\n\t\t(i 0 (1+ i)))\n\t       ((= i nc))\t\t\t; create a row of buttons\n\t       (setq p (make-point x x y y))\n\t       (resize-button-field (car r)\n\t\t (make-box ll p ur (add-points p s)))\n\t       (setq r (cdr r))\n\t   ))))\n\n(defun check-expanded-bitmap-field (f p)\n  (check-aggregate-field f p))\t; if we get here it's a hit -> check subfields\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; utilities.l\t\t\t\t\t\t\t\t;\n;;;\t\t\t\t\t\t\t\t\t;\n;;; These macros and functions are thought to be generally useful.\t;\n;;;\t\t\t\t\t\t\t\t\t;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\t\tMacros\t\t;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(declare\n  (macros t)\t\t; keep macros around after compiling\n  (localf pairify* pairifyq* split2* sublist*)\n  (special compiled-with-help))\n\n(defmacro copy-all-but-last (ls)\t; copy all but last member of list\n  `(let ((ls ,ls))\n\t(firstn (1- (length ls))\n\t  ls)))\n\n(defmacro all-but-last (ls)\t\t; destructive all-but-last\n  `(let ((ls ,ls))\n\t(cond ((cdr ls)\n\t       (rplacd (nthcdr (- (length ls) 2) ls) nil)\n\t       ls))))\n\n(def hex (macro (arglist)\t\t; hex to integer conversion\n\t\t`(car (hex-to-int ',(cdr arglist)))))\n\n;;; define properties on symbols for use by help routines\n\n(defmacro def-usage (fun usage returns group)\n  (cond (compiled-with-help\t; flag controls help generation\n\t  `(progn (putprop ,fun ,usage 'fcn-usage)\n\t\t  (putprop ,fun ,returns 'fcn-returns)\n\t\t  (putprop ,fun (nconc ,group (ncons ,fun)) 'fcn-group)))))\n(defvar compiled-with-help t)\t; unless otherwise notified\n\n;;; (letenv 'l_bind_plist g_expr1 ... g_exprn) -- pair-list form of \"let\"\n;;; Lambda-binds pairs of \"binding-objects\" (see description of let,let*),\n;;; at RUN TIME, then evaluates g_expr1 to g_exprn, returning g_exprn. eg:\n;;; (apply 'letenv '(letenv '(a 1 b (+ c d))\n;;;\t\t      (e)(f g)))\n;-> (eval (cons 'let (cons (pairify '(a 1 b (+ c d)))\n;;;\t\t\t   '((e) (f g)))))\n;-> (let ((a 1) (b (+ c d)))\n;;;\t (e) (f g))\n(def letenv\n  (macro (x)\n    `(eval (cons 'let\n\t     (cons\n\t       (pairify ,(cadr x))\t; plist of binding objects\n\t       ',(cddr x))))))\t\t; exprs to be eval'ed\n\n(def letenvq\t\t\t; letenv, quoted binding objects\n  (macro (x)\n    `(eval (cons 'let\n\t     (cons\n\t       (pairifyq ,(cadr x))\t; plist of binding objects\n\t       ',(cddr x))))))\t\t; exprs to be eval'ed\n\n(defmacro mergecar (L1 L2 cmpfn)\t; merge, comparing by car's\n  `(merge ,L1 ,L2 '(lambda (e1 e2)\t\t; (like sortcar)\n\t\t     (funcall ,cmpfn (car e1) (car e2)))))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\t\t\t\t\t\t\tFunctions\t;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; (all-but-last l_items)\t-- copy all but last list element\n\n;(defun all-but-last (ls)\n;  (cond ((cdr ls) (cons (car ls) (all-but-last (cdr ls))))))\n\n;;; (alphap sx_char)\n(defun alphap (char)\t\t\t; is char alphabetic?\n  (cond ((symbolp char)\n\t (setq char (car (exploden char)))))\n  (and (fixp char)\n       (or (and (>& char #.(1- #/A))\n\t\t(<& char #.(1+ #/Z)))\n\t   (and (>& char #.(1- #/a))\n\t\t(<& char #.(1+ #/z))))))\n\n;;; (alphanumericp sx_char)\n(defun alphanumericp (char)\t\t; is char alphabetic or numeric?\n  (cond ((symbolp char)\n\t (setq char (car (exploden char)))))\n  (and (fixp char)\n       (or (and (>& char #.(1- #/A))\n\t\t(<& char #.(1+ #/Z)))\n\t   (and (>& char #.(1- #/a))\n\t\t(<& char #.(1+ #/z)))\n\t   (and (>& char #.(1- #/0))\n\t\t(<& char #.(1+ #/9))))))\n\n;;; (assqonc 'g_key 'g_val 'l_al)\n;;; like   (cond ((assq key alist))\n;;;\t\t (t (cadr (rplacd (last alist)\n;;;\t\t\t    (ncons (cons key val))))))\n(defun assqonc (key val al)\t; tack (key.val) on end if not found\n  (do ((al al (cdr al)))\n      ((or (eq key (caar al))\n\t   (and (null (cdr al))\n\t\t(rplacd al (setq al (ncons (cons key val))))))\n       (car al))))\n\n;;; (cartesian l_xset l_yset)\n(defun cartesian (xset yset)\t\t; cartesian product of elements\n  (mapcan\n    '(lambda (x)\n       (mapcar\n\t '(lambda (y) (cons x y))\n\t yset))\n    xset))\n\n(defun concat-pairs (sb-list)\t; concat neighbouring symbol pairs\n  (do ((s1 (car sb-list) s2)\n       (s2 (cadr sb-list) (car sbs-left))\n       (sbs-left (cddr sb-list) (cdr sbs-left))\n       (result nil (cons (concat s1 s2) result)))\n      ((null s2) (nreverse result))))\n;;; (detach l)\n;;; Detaches (and throws away) first element of list (converse of attach)\n;;; keeping the same initial list cell.\n(defun detach (l)\n  (cond (l (rplacd l (cddr (rplaca l (cadr l)))))))\n\n;;; (distribute x_Q x_N)\n;;; returns list of the form: (1 1 1 0 0 0 0 1 1) or (3 2 2 2 3)\n;;; i.e. a list of length <N> containing quantity <Q> evenly distributed\n;;; with the excess <Q mod N> surrounding a \"core\" of <Q div N>'s\n;;; Useful (?) for padding spaces in line adjustment.\n;(defun distribute (Q N)\t; this one only does 1's and 0's\n;  (cond ((signp le Q) (duplicate N 0))\n;\t((eq Q 1) (pad 0 N '(1)))\n;\t(t (cons 1 (nconc\n;\t\t     (distribute (- Q 2) (- N 2))\n;\t\t     '(1))))))\n\n(defun distribute (Q N)\t\t; distribute quantity Q among N elements\n  (let ((tmp (Divide (abs Q) N)))\n       (setq tmp (distribute0 (cadr tmp) N (car tmp) (1+ (car tmp))))\n       (cond ((signp ge Q) tmp)\n\t     (t (mapcar 'minus tmp)))))\n\n(defun distribute0 (Q N X X1)\n  (cond ((signp le Q) (duplicate N X))\n\t((eq Q 1) (pad X N (ncons X1)))\n\t(t (cons X1 (nconc\n\t\t\t  (distribute0 (- Q 2) (- N 2) X X1)\n\t\t\t  (ncons X1))))))\n\n;;; (duplicate x_n g_object)\n;;; Returns list of n copies of object (nil if n <= 0)\n(defun duplicate (n object)\n  (do ((res nil (cons object res))\n       (i n (1- i)))\n      ((signp le i) res)))\n\n(defun e0 (in out)\t\t; simulate binary insertion procedure\n  (let ((lin (length in))\n\t(lout (length out)))\n       (cond ((> lin lout)\n\t      (e0\n\t\t(nthcdr lout in)\n\t\t(mapcan 'list out (firstn lout in))))\n\t     (t (nconc (mapcan 'list (firstn lin out) in)\n\t\t       (nthcdr lin out))))))\n\n(defun e (files)\t\t; determine file permutation for emacs insert\n  (let ((i (e0 (cdr (iota (length files))) '(0)))\n\t(f (append files nil)))\n       (mapc '(lambda (f-index f-name)\n\t\t(rplaca (nthcdr f-index f) f-name))\n\t     i files)\n       f))\n\n;;; (firstn x_n l_listarg)\n(defun firstn (n l)\t\t;  copy first <n> elements of list\n  (do ((n n (1- n))\n       (l l (cdr l))\n       (r nil))\n      ((not (plusp n)) (nreverse r))\t\t; <nil> if n=0 or -ve\n      (setq r (cons (car l) r))))\n\n;;; (iota x_n)\n;;; APL index generator (0,1,2,...,<n>-1)\n(defun iota (n)\n  (do ((i (1- n) (1- i))\n       (res nil))\n      ((minusp i) res)\n      (setq res (cons i res))))\n\n(defun hex-to-int (numlist)\t\t; eg. (hex-to-int '(12b3 120 8b))\n  (cond\n    (numlist\t\t\t; terminate recursion on null numlist\n      (cons\n\t(apply '+\n\t       (maplist\n\t\t '(lambda (digits)\n\t\t    (lsh\n\t\t      (get '(hex |0| 0 |1| 1 |2| 2 |3| 3\n\t\t\t\t |4| 4 |5| 5 |6| 6 |7| 7\n\t\t\t\t |8| 8 |9| 9  a 10  b 11\n\t\t\t\t  c 12  d 13  e 14  f 15)\n\t\t\t   (car digits))\n\t\t      (lsh (1- (length digits)) 2)))\n\t\t (explodec (car numlist))))\n\t(hex-to-int (cdr numlist))))))  \n\n;;; (lctouc g_expr)\n;;; Returns s-expression formed by translating lower-case alphabetic\n;;; characters in <expr> to their upper-case equivalents.\n;;; Operates by imploding the translated characters, in the case of a\n;;; symbol or string, or by recursively calling on members of a list.\n;;; Other object types are returned unchanged.\n(defun lctouc (expr)\n    (cond\n\t((dtpr expr) (mapcar 'uctolc expr))\n\t((or (symbolp expr) (stringp expr))\n\t (implode\n\t     (mapcar\n\t\t '(lambda (ch)\n\t\t      (cond ((alphap ch)\t\t; and-out lower-case bit\n\t\t\t     (boole 1 #.(1- (1- #/a)) ch)) (t ch)))\n\t\t (exploden expr))))\n\t(t expr)))\n\n;;; (log2 x_n)\n(defun log2 (n)\t\t\t; log base 2 (truncated)\n  (do ((n (lsh n -1) (lsh n -1))\n       (p 0 (1+ p)))\n      ((zerop n) p)))\n\n;;; (lowerp sx_char)\n(defun lowerp (char)\t\t; is char lower-case alphabetic?\n  (cond ((symbolp char)\n\t (setq char (car (exploden char)))))\n  (and (fixp char)\n       (or (and (> char #.(1- #/a))\n\t\t(< char #.(1+ #/z))))))\n\n;;; (numericp sx_char)\n;;; returns t if char is numeric, otherwise nil\n(defun numericp (char)\n  (cond ((symbolp char)(setq char (car (exploden char)))))\n  (and (fixp char)\n       (and (> char #.(1- #/0))\n\t    (< char #.(1+ #/9)))))\n\n;;; (pad g_item x_n l_list)\n;;; Returns <list> padded with copies of <item> to length <n>\n(defun pad (item n list)\n  (append list (duplicate (- n (length list)) item)))\n\n;;; (pairify l_items)\t; make a-list from alternating elements\n(defun pairify (pl)\n  (pairify* nil pl))\n(defun pairify* (rs pl)\t\t; tail-recursive local fun\n  (cond (pl (pairify* (cons (list (car pl) (cadr pl)) rs)\n\t\t       (cddr pl)))\n\t(t (nreverse rs))))\n\n;;; (pairifyq l_items)\t; make a-list from alternating elements\n(defun pairifyq (pl)\t; with each second element quoted\n  (pairifyq* nil pl))\n(defun pairifyq* (rs pl)\t\t; tail-recursive local fun\n  (cond (pl (pairifyq* (cons (list (car pl) (kwote (cadr pl))) rs)\n\t\t       (cddr pl)))\n\t(t (nreverse rs))))\n\n;;; (penultimate l_items)\t; cdr down to next-to-last list element\n(defun penultimate (ls)\t\n  (cond ((cddr ls) (penultimate (cdr ls)))\n\t(t ls)))\n\n;;; (split2 l_L)\n;;; Splits list <L> into two (new) second-level lists\n(defun split2* (L tc1 tc2)\n  (cond ((null L) (list (nreverse tc1) (nreverse tc2)))\n\t(t (split2* (cddr L)\n\t     (cons (car L) tc1)\n\t     (cons (cadr L) tc2)))))\n\n(defun split2 (L)\n  (split2* L nil nil))\n\n;;; (sublist L IL)\n;;; Splits list <L> (destructively) into (length IL) sub-lists.\n;;; IL is a list of starting indices, base zero, should be unique positive\n;;; fixnums in ascending order, and shouldn't exceed the length of L.\n;;; Each resulting sublist <i> begins with (nthcdr (nth <i> IL) L)\n(defun sublist (L IL)\n  (sublist* 0 nil (cons nil L) IL))\n(defun sublist* (I R L IL)\t\t; tail-recursion function\n  (cond ((and L IL)\n\t (cond\n\t   ((<& I (car IL))\n\t    (sublist* (1+ I) R (cdr L) IL))\n\t   (t (sublist* (1+ I)\n\t\t\t(cons (cdr L) R)\n\t\t\t(prog1 (cdr L) (rplacd L nil))\n\t\t\t(cdr IL)))))\n\t(t (nreverse R))))\n\n(defun try-fun (fun l-arg)\t; try function on each arg until non-nil\n  (cond ((funcall fun (car l-arg)))\n\t(l-arg (try-fun fun (cdr l-arg)))))\n\n;;; (uctolc g_expr)\n;;; Returns s-expression formed by translating upper-case alphabetic\n;;; characters in <expr> to their lower-case equivalents.\n;;; Operates by imploding the translated characters, in the case of a\n;;; symbol or string, or by recursively calling on members of a list.\n;;; Other object types are returned unchanged.\n(defun uctolc (expr)\n    (cond\n\t((dtpr expr) (mapcar 'uctolc expr))\n\t((or (symbolp expr) (stringp expr))\n\t (implode\n\t     (mapcar\n\t\t '(lambda (ch)\n\t\t      (cond ((alphap ch)\t\t; or-in lower-case bit\n\t\t\t     (boole 7 #.(1- #/a) ch)) (t ch)))\n\t\t (exploden expr))))\n\t(t expr)))\n\n;;; (unique a l) -- Scan <l> for an element <e> \"equal\" to <a>.\n;;; If found, return <e>. Otherwise nconc <a> onto <l>; return <a>.\n(defun unique (a l)\t\t\t; ensure unique in list\n  (car\n    (do ((cdr_ul l (cdr ul))\n\t (ul l cdr_ul))\n\t((null cdr_ul) (rplacd ul (ncons a)))\n\t(cond ((equal a (car cdr_ul)) (return cdr_ul))))))\n\n;;; (upperp sx_char)\n(defun upperp (char)\t\t; is char upper-case alphabetic?\n  (cond ((symbolp char)\n\t (setq char (car (exploden char)))))\n  (and (fixp char)\n       (or (and (> char #.(1- #/A))\n\t\t(< char #.(1+ #/Z))))))\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; zone.l -- data structures and routines for concrete window zones\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; a \"point\" is a pair of integer x,y coordinates\n;;; a \"box\" is a pair of points defining lower left and upper right corners\n;;; a \"position\" is a point coupled with a window\n;;; a \"zone\" is a box coupled with a window\n;;; a \"window\" is a machine, integer window id and, for compatibility\n;;;\twith the toolbox, an integer toolbox window pointer\n;;; a \"machine\" is a name coupled with the j-process-id's of resident servers\n;;; The basic idea is to define a notion of a concrete position for a\n;;; display object, that can be incorporated into the object data structure.\n;;; Higher levels of software can use the objects without explicit reference\n;;; to server processes, windows and machines.\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(declare\n  (specials t)\t\t\t; global vars not local to this file\n  (macros t))\t\t\t; compile macros as well\n\n(eval-when (compile)\t\t; trust  to higher level for eval & load\n  (load 'utilities)\t\t; utility functions\n  (load 'constants)\t\t; common constants for window toolbox\n;  (load 'shape)\t\t; arbitrarily shaped screen areas\n)\n\n(defstruct\n  (position\t\t; a concrete display position\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (window (make-window))\t; concrete window\n  (point (make-point))\t\t; actual x, y coordinates\n)\n\n(defstruct\n  (zone\t\t\t; a concrete display zone\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (window (make-window))\t; concrete window\n  (box (make-box))\t\t; bounding box of zone\n  (colour W-BACKGROUND)\t\t; colour (for scrolling etc)\n  shape\n)\n\n(defstruct\n  (window\t\t; concrete window\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (id 0)\t\t\t; integer window id\n  (machine (make-machine))\t; machine (workstation)\n  (w 0)\t\t\t\t; toolbox window structure pointer\n)\n\n(defstruct\n  (machine\t\t; machine (workstation)\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (name\t'unknown-machine)\t; machine name\n  (servers nil)\t\t\t; plist of server processes living there\n)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; manipulation routines\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defun add-points (p q)\t\t; vector sum (x1+x2) (y1+y2)\n  (make-point\n    x (+ (x p) (x q))\n    y (+ (y p) (y q))))\n\n(defun subtract-points (p q)\t; vector subtract (x1-x2) (y1-y2)\n  (make-point\n    x (- (x p) (x q))\n    y (- (y p) (y q))))\n\n(defun multiply-points (p q)\t; vector multiply (x1*x2) (y1*y2)\n  (make-point\n    x (* (x p) (x q))\n    y (* (y p) (y q))))\n\n(defun divide-points (p q)\t; vector division (x1-x2) (y1-y2)\n  (make-point\n    x (/ (x p) (x q))\n    y (/ (y p) (y q))))\n\n(defun move-point (p q)\t\t; move point p to point q\n  (alter-point p\n    x (x q)\n    y (y q))\n  t)\t\t\t\t\t; return true\n\n(defun box-size (b)\t\t; size of box = ur - ll\n  (subtract-points (ur b) (ll b)))\n\n(defun box-interior (b)\t\t; return box just inside this box dimensions\n  (make-box\n    ll (add-points (ll b) '(1 1))\n    ur (subtract-points (ur b) '(1 1))))\n\n(defun move-box (b p)\t\t; move box b to point p (lower-left)\n  (let ((size (box-size b)))\n       (alter-box b\n\t ll p\n\t ur (add-points p size))\n       t))\t\t\t\t; return true\n\n(defun point-in-box (p b)\t; is point p in box b? (including boundary)\n  (and (>= (x p) (x (ll b)))\n       (<= (x p) (x (ur b)))\n       (>= (y p) (y (ll b)))\n       (<= (y p) (y (ur b)))\n  ))\n\n(defun point-in-box-interior (p b) ; is point p in box b? (excluding boundary)\n  (and (> (x p) (x (ll b)))\n       (< (x p) (x (ur b)))\n       (> (y p) (y (ll b)))\n       (< (y p) (y (ur b)))\n  ))\n\n(defun init-window (w)\t\t; fill in  \"window\" structure\n  (let\t\t\t\t; presuming window-w predefined\n    ((m (j-machine-name (w-get-manager (window-w w)))))\n    (alter-window w id (w-get-id (window-w w)))\n    (cond ((not (window-machine w))\n\t   (alter-window w machine (make-machine name m)))\n\t  (t (alter-machine (window-machine w) name m)))\n    (init-machine (window-machine w))\t; also fill in machine structure\n    t))\t\t\t\t; return true\n\n(defun init-machine (m)\t\t; fill in \"machine\" structure\n  (cond\t\t\t\t; presuming machine-name predefined\n    ((null (machine-servers m))\t\t; if no plist, make new one\n     (alter-machine m servers (ncons 'servers:))))\n  (mapc '(lambda (pname)\t\t; for each expected server name\n\t   (let\n\t     ((pid (j-search-machine-e jipc-error-code\n\t\t     (machine-name m)\n\t\t     pname)))\t\t; try to find one on that machine\n\t     (cond ((j-same-process pid J-NO-PROCESS)\n\t\t    (putprop (machine-servers m) nil pname)) ; failed! use nil\n\t\t   (t (putprop (machine-servers m) pid pname))))) ; success!\n\tEXPECTED-WORKSTATION-SERVERS)\t; global list of process names\n  t)\t\t\t\t\t; return true\n\n(defvar EXPECTED-WORKSTATION-SERVERS\t; global list of process names\n  '(window_manager creator savemem\n     text-composer))\t\t\t; usually want at least these\n\n(defun window-box (w)\t\t; box fills entire window\n  (let ((w-size (w-get-window-size (window-w w))))\n       (make-box\n\t ll (make-point x 0 y 0)\n\t ur (make-point x (car w-size) y (cadr w-size)))\n  ))\n\n(defun clear-zone (z colour)\t; clear zone (including boundaries)\n  (let ((b (box-size (zone-box z))))\n       (w-clear-rectangle (window-w (zone-window z))\n\t (x (ll (zone-box z))) (y (ll (zone-box z)))\n\t (1+ (x b)) (1+ (y b))\n\t colour)))\n\n(defun clear-zone-interior (z colour)\t; clear zone (excluding boundaries)\n  (let ((b (box-size (zone-box z))))\n       (w-clear-rectangle (window-w (zone-window z))\n\t (1+ (x (ll (zone-box z)))) (1+ (y (ll (zone-box z))))\n\t (1- (x b)) (1- (y b))\n\t colour)))\n\n(defun pattern-zone (z pattern)\t; pattern zone (including boundaries)\n  (let ((b (zone-box z)))\n       (w-pattern-rectangle (window-w (zone-window z))\n\t (x (ll b)) (y (ll b))\n\t (1+ (x (ur b))) (1+ (y (ur b))) pattern)\n  ))\n\n(defun pattern-zone-interior (z pattern) ; pattern zone (excluding boundaries)\n  (let ((b (box-size (zone-box z))))\n       (w-pattern-rectangle (window-w (zone-window z))\n\t (1+ (x (ll (zone-box z)))) (1+ (y (ll (zone-box z))))\n\t (1- (x b)) (1- (y b)) pattern)\n  ))\n\n(defun draw-zone-outline (z colour)\t; draw zone boundaries\n  (let* ((w (window-w (zone-window z)))\n\t (b (zone-box z))\n\t (ll (ll b))\n\t (ur (ur b)))\n\t(w-draw-vector w (x ll) (y ll) (x ll) (y ur) colour)\n\t(w-draw-vector w (x ll) (y ur) (x ur) (y ur) colour)\n\t(w-draw-vector w (x ur) (y ur) (x ur) (y ll) colour)\n\t(w-draw-vector w (x ur) (y ll) (x ll) (y ll) colour)\n  ))\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; font.l -- font manipulation\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(eval-when (compile)\n  (load 'utilities)\n  (load 'constants))\n\n(defvar -installed-fonts nil)\t; list of installed fonts\n\n(defstruct\n  (font\t\t\t; font structure\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (name 'standard)\n  (size 8)\n  (body 8)\n  (cap-height 7)\n  (x-height 5)\n  (fixed-width 5)\n  (first 0)\n  (last 127)\n  glyph\t\t\t; the actual characters\n)\n\n(defstruct\n  (glyph\t\t\t; glyph structure\n    (:displace t)\n    (:list)\n    (:conc-name))\n  code\n  width\n  (bytes (byte-block 32))\t; the actual bitmap\n)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; \t\t\t\tfont manipulation routines\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defun read-font (family size path)\n  (let ((p (infile path))\t\t; open file\n\t(x (new-vectori-long 2))\n\t(f nil))\n       (setq f (make-font\n\t\t name family\n\t\t size (tyi p)\n\t\t body (tyi p)\n\t\t cap-height (tyi p)\n\t\t x-height (tyi p)\n\t\t fixed-width (tyi p)\n\t\t first (prog1 (tyi p) (tyi p))\n\t\t last (prog1 (tyi p) (tyi p))))\n       (alter-font f glyph\n\t (do ((i (font-first f) (1+ i))\n\t      (r (ncons nil))\n\t      (g))\t   \n\t     ((> i (font-last f)) (car r))\n\t     (setq g (make-glyph code i))\t; allocate char\n\t     (do ((j 0 (1+ j)))\t\t\t; read bitmap\n\t\t ((> j 31))\n\t\t (vseti-byte (glyph-bytes g) j (tyi p)))\n\t     (alter-glyph g width (tyi p))\t; read width\n\t     (setq r (tconc r g))\n\t ))\n       (close p)\t\t\t; close file\n\n       (rplacd\t\t\t\t; install font\n\t (cond ((assoc (list (font-name f) (font-size f)) -installed-fonts))\n\t       (t (car (setq -installed-fonts\n\t\t\t     (cons (ncons (list (font-name f) (font-size f)))\n\t\t\t\t   -installed-fonts)))))\n\t f)\n       f))\t\t\t\t; return font\n\n(def-usage 'read-font '(|'st_family| |'x_size| |'st_path|)\n  'l_font-descriptor\n  (setq fcn-group (ncons \"Font Manipulation:\")))\n\n(defun install-font (f)\n  (cdr\n    (rplacd\t\t\t\t; install font\n      (cond ((assoc (list (font-name f) (font-size f)) -installed-fonts))\n\t    (t (car (setq -installed-fonts\n\t\t\t  (cons (ncons (list (font-name f) (font-size f)))\n\t\t\t\t-installed-fonts)))))\n      f)))\n\n(defun find-font (family size)\t; always \"finds\" one even if dummy\n  (cond ((cdr (assoc (list family size) -installed-fonts)))\n\t(t (install-font (make-font name family size size)))))\n\n(def-usage 'find-font\n  '(|'st_family| |'x_size|)\n  'l_font-descriptor\n  fcn-group)\n\n(defun create-font (driver font)\n  (j-send-se-list driver\n    (list 'make-font\n\t  (font-name font)\n\t  (font-size font)\n\t  (font-body font)\n\t  (font-cap-height font)\n\t  (font-x-height font)\n\t  (font-fixed-width font)\n\t  (font-first font)\n\t  (font-last font))))\n\n(defun download-glyph (driver font glyph)\n  (j-put-items\n    `((J-STRING set-glyph)\n       (J-STRING ,(font-name font))\n       (J-INT ,(font-size font))\n       (J-INT ,(glyph-code glyph))\n       (J-INT ,(glyph-width glyph))\n       (J-BLOCK ,(glyph-bytes glyph))))\n  (j-send driver))\n\n(defun download-font (driver font)\n  (do ((g (font-glyph font))\n       (font-size (font-size font)))\n      ((null g))\n      (j-put-items\n\t`((J-STRING set-glyph)\n\t  (J-STRING ,(font-name font))\n\t  (J-INT ,font-size)))\n      (do ((gg g (cdr gg)))\n\t  ((or (null gg) (j-put-items\n\t\t\t   `((J-INT ,(glyph-code (car gg)))\n\t\t\t     (J-INT ,(glyph-width (car gg)))\n\t\t\t     (J-BLOCK\n\t\t\t       ,(glyph-bytes (car gg))\n\t\t\t       ,(+ font-size font-size)))))\n\t   (setq g gg)))\t\t; when buffer full, save remainder\n      (j-send driver)\n      (cond ((eq J-STRING (j-next-item-type))\n\t     (j-gets j-comm-string 128)\t\t; skip past message string\n\t     (cond ((eq J-INT (j-next-item-type))(patom (j-geti))(terpr)))))\n  ))\n\n(def-usage 'download-font\n  '(|'x_process-id| |'l_font-descriptor|)\n  't\n  fcn-group)\n\n(defun read-create-download-font (driver family size path)\n  (let ((f (read-font family size path)))\n       (create-font driver f)\n       (download-font driver f)\n       f))\n\n(def-usage 'read-create-download-font\n  '(|'x_process-id| |'st_family| |'x_size| |'st_path|)\n  'l_font-descriptor\n  fcn-group)\n\n(defun font-depth (f)\n  (- (font-body f) (font-cap-height f)))\n\n(defun font-height (f)\n  (font-cap-height f))\n\n(defun get-font-list (sc) ; arg is string-composer or font-server pid\n  (j-send-se sc 'get-font-list)\n  (pairify (mapcar\n\t     '(lambda (x)\n\t\t(cond ((stringp (cadr x)) (concat (cadr x)))\n\t\t      (t (cadr x))))\n\t     (j-get-items))))\n\n(defun get-all-font-info (sc) ; arg is string-composer or font-server pid\n  (mapc '(lambda (f)\n\t   (rplacd (apply 'find-font f)\n\t     (cdr (progn\n\t\t    (j-send-se-list sc (cons 'get-font-info f))\n\t\t    (mapcar 'cadr (j-get-items))))))\n\t(get-font-list sc)))\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; text.l -- fancy text strings\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(declare\n  (specials t)\n  (macros t))\n\n(eval-when (compile)\n  (load 'utilities)\n  (load 'constants)\n  (load 'zone)\n  (load 'font)\n  (load 'look))\n\n(defstruct\n  (text\t\t; text structure\n    (:displace t)\n    (:list)\n    (:conc-name))\n  (text '||)\t\t\t; the text to draw\n  (look (make-look))\t\t; what style to draw it in\n  (kl 0)\t\t\t; (starting) left kerning mask\n  (zone (make-zone))\t\t; specific window, clipping box\n  (offset (make-point))\t\t; offset of start point from zone ll\n  (kr 0)\t\t\t; (final) right kerning mask\n  (delta (make-point))\t\t; change in (x,y) relative to start point\n  (nn -1)\t\t\t; char count\n)\n\n;;; NOTE: clipping box of ((0 0) (-1 -1)) uses window boundaries\n\n(defun text-width (s)\t\t; presumes non-rotated\n  (x (text-delta s)))\n\n(defun text-box (s)\t\t; presumes non-rotated\n  (make-box\n    ll (subtract-points\n\t (text-start-point s)\n\t (make-point x 0 y (font-depth (look-font (text-look s)))))\n    ur (add-points\n\t (text-end-point s)\n\t (make-point x 0 y (font-height (look-font (text-look s)))))))\n\n(defun text-start-point (s)\n  (add-points\n    (ll (zone-box (text-zone s)))\n    (text-offset s)))\n\n(defun text-end-point (s)\n  (add-points\n    (text-start-point s)\n    (text-delta s)))\n\n(defun text-x (s)\t; x coord of start of text object\n  (+ (x (ll (zone-box (text-zone s))))\n     (x (text-offset s))))\n\n(defun text-y (s)\t; y coord of start of text object\n  (+ (y (ll (zone-box (text-zone s))))\n     (y (text-offset s))))\n\n(defun text-xx (s)\t; x coord of end of text object\n  (+ (x (ll (zone-box (text-zone s))))\n     (x (text-offset s))\n     (x (text-delta s))))\n\n(defun text-yy (s)\t; y coord of end of text object\n  (+ (y (ll (zone-box (text-zone s))))\n     (y (text-offset s))\n     (y (text-delta s))))\n\n(defun move-text (s p)\t; move s to new x,y\n  (alter-text s\n    offset (subtract-points p (ll (zone-box (text-zone s))))))\n\n(defun draw-text (s)\t\t; quietly draw text, clipping to zone box\n  (let (((x y) (text-start-point s))\n\t(l (text-look s)))\n       (j-put-items\n\t `((J-STRING compose)\n\t   (J-INT ,(window-id (zone-window (text-zone s))))\n\t   (J-STRING ,(text-text s))\n\t   (J-STRING ,(font-name (look-font l)))\n\t   (J-INT ,(font-size (look-font l)))\n\t   (J-INT ,(boole 7 (look-mode l) QUIET))\n\t   (J-INT ,(look-colour l))\n\t   (J-INT ,(look-gap l))\n\t   (J-INT ,(look-ul l))\n\t   (J-INT ,(text-kl s))\n\t   (J-INT ,x)\n\t   (J-INT ,y)\n\t   (J-INT ,(x (cond\n\t\t\t((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t (ur (zone-box (text-zone s))))\n\t\t\t(t (ll (zone-box (text-zone s)))))))\n\t   (J-INT ,(y (cond\n\t\t\t((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t (ur (zone-box (text-zone s))))\n\t\t\t(t (ll (zone-box (text-zone s)))))))\n\t   (J-INT ,(text-nn s))\n\t  ))\n       (j-send (get (machine-servers\n\t\t      (window-machine\n\t\t\t(zone-window\n\t\t\t  (text-zone s))))\n\t\t    'text-composer))\n  ))\n\n(defun undraw-text (s)\t; quietly undraw text, clipping to zone box\n  (let (((x y) (text-start-point s))\n\t(l (text-look s)))\n       (j-put-items\n\t `((J-STRING compose)\n\t   (J-INT ,(window-id (zone-window (text-zone s))))\n\t   (J-STRING ,(text-text s))\n\t   (J-STRING ,(font-name (look-font l)))\n\t   (J-INT ,(font-size (look-font l)))\n\t   (J-INT ,(boole 7 OVERSTRIKE QUIET (look-mode l)))\n\t   (J-INT ,(inverse-colour (look-colour l)))\n\t   (J-INT ,(look-gap l))\n\t   (J-INT ,(look-ul l))\n\t   (J-INT ,(text-kl s))\n\t   (J-INT ,x)\n\t   (J-INT ,y)\n\t   (J-INT ,(x (cond\n\t\t\t((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t (ur (zone-box (text-zone s))))\n\t\t\t(t (ll (zone-box (text-zone s)))))))\n\t   (J-INT ,(y (cond\n\t\t\t((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t (ur (zone-box (text-zone s))))\n\t\t\t(t (ll (zone-box (text-zone s)))))))\n\t   (J-INT ,(text-nn s))\n\t  ))\n       (j-send (get (machine-servers\n\t\t      (window-machine\n\t\t\t(zone-window\n\t\t\t  (text-zone s))))\n\t\t    'text-composer))\n  ))\n\n(defun format-text (s)\t; format text without drawing or clipping\n  (let ((memop (symbolp (text-text s)))\t; can only memoize symbols\n\t(k) (p) (q) (l (text-look s)))\n       (cond\n\t (memop\t\t\t\t\t; are we memoizing? yes!\n\t   (setq k (unique-look-id l))\t; key based on look\n\t   (setq p (get (text-text s) k))\t\t; alist found on plist\n\t   (setq q (assoc (text-kl s) p))))\t\t; entry based on kl\n       (cond\n\t (q (alter-text s\t\t\t; if info found\n\t      kr (cadr q)\t\t\t; record result\n\t      delta (caddr q)\t\t\t; then return\n\t      nn (cadddr q)))\n\t (t\t\t\t\t\t; otherwise compute data\n\t   (j-put-items\n\t     `((J-STRING compose)\n\t       (J-INT 0)\t\t\t; no window needed\n\t       (J-STRING ,(text-text s))\n\t       (J-STRING ,(font-name (look-font l)))\n\t       (J-INT ,(font-size (look-font l)))\n\t       (J-INT ,(boole 7 NO-DRAW (look-mode l)))\n\t       (J-INT ,(look-colour l))\n\t       (J-INT ,(look-gap l))\n\t       (J-INT ,(look-ul l))\n\t       (J-INT ,(text-kl s))\n\t       (J-INT 0)\t\t\t; starting point 0 0\n\t       (J-INT 0)\n\t       (J-INT -1)\t\t\t; no clipping\n\t       (J-INT -1)\n\t       (J-INT -1)\n\t      ))\n\t   (j-send (get (machine-servers\n\t\t\t  (window-machine\n\t\t\t    (zone-window\n\t\t\t      (text-zone s))))\n\t\t\t'text-composer))\n\t   (let ((kr (j-geti))\t\t\t; now record result\n\t\t (xx (j-geti))\n\t\t (yy (j-geti))\n\t\t (nn (j-geti)))\n\t\t(alter-text s\n\t\t  kr kr\n\t\t  delta (make-point x xx y yy)\n\t\t  nn nn)\n\t\t(cond (memop\t\t\t\t; memoize if req'd\n\t\t\t(cond (p (nconc p\n\t\t\t\t   (ncons (list (text-kl s) kr\n\t\t\t\t\t\t(text-delta s) nn))))\n\t\t\t      (t (putprop (text-text s)\n\t\t\t\t   (ncons (list (text-kl s) kr\n\t\t\t\t\t\t(text-delta s) nn))\n\t\t\t\t   k))))\n\t\t))\n\t ))\n       't))\t\t\t\t\t; always return t\n\n(defun scan-text (s p) ; scan text s for point p, return (kr delta nn)\n  (let (((x y) (text-start-point s))\t\t; inside: check text\n\t(l (text-look s)))\n       (j-put-items\n\t `((J-STRING compose)\n\t   (J-INT 0)\n\t   (J-STRING ,(text-text s))\n\t   (J-STRING ,(font-name (look-font l)))\n\t   (J-INT ,(font-size (look-font l)))\n\t   (J-INT ,(boole 7 NO-DRAW (look-mode l)))\n\t   (J-INT ,(look-colour l))\n\t   (J-INT ,(look-gap l))\n\t   (J-INT ,(look-ul l))\n\t   (J-INT ,(text-kl s))\n\t   (J-INT ,x)\n\t   (J-INT ,y)\n\t   (J-INT ,(x p))\n\t   (J-INT ,(y p))\n\t   (J-INT ,(text-nn s))\n\t  ))\n       (j-send (get (machine-servers\n\t\t      (window-machine\n\t\t\t(zone-window\n\t\t\t  (text-zone s))))\n\t\t    'text-composer))\n       (let ((kr (j-geti))\t\t\t; now record result\n\t     (xx (j-geti))\n\t     (yy (j-geti))\n\t     (nn (j-geti)))\n\t    (list kr (make-point x (- xx x) y (- yy y)) nn))\n  ))\n\n(defun format-draw-text (s)\t\t; draw it while formatting\n  (let ((memop (symbolp (text-text s)))\t; can only memoize symbols\n\t((x y) (text-start-point s))\n\t(k) (p) (q) (l (text-look s)))\n       (cond\n\t (memop\t\t\t\t\t; are we memoizing? yes!\n\t   (setq k (unique-look-id l))\t; key based on look\n\t   (setq p (get (text-text s) k))\t\t; alist found on plist\n\t   (setq q (assoc (text-kl s) p))))\t\t; entry based on kl\n       (cond\n\t (q (alter-text s\t\t\t; if info found\n\t      kr (cadr q)\t\t\t; record result\n\t      delta (caddr q)\n\t      nn (cadddr q))\n\t    (draw-text s))\t\t\t; draw it & return\n\t (t\t\t\t\t\t; otherwise compute data\n\t   (j-put-items\n\t     `((J-STRING compose)\n\t       (J-INT ,(window-id (zone-window (text-zone s))))\n\t       (J-STRING ,(text-text s))\n\t       (J-STRING ,(font-name (look-font l )))\n\t       (J-INT ,(font-size (look-font l)))\n\t       (J-INT ,(boole 4 (look-mode l) QUIET))\n\t       (J-INT ,(look-colour l))\n\t       (J-INT ,(look-gap l))\n\t       (J-INT ,(look-ul l))\n\t       (J-INT ,(text-kl s))\n\t       (J-INT ,x)\n\t       (J-INT ,y)\n\t       (J-INT ,(x (cond\n\t\t\t    ((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n\t       (J-INT ,(y (cond\n\t\t\t    ((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n\t       (J-INT -1)\t\t\t; format to end of text\n\t      ))\n\t   (j-send (get (machine-servers\n\t\t\t  (window-machine\n\t\t\t    (zone-window\n\t\t\t      (text-zone s))))\n\t\t\t'text-composer))\n\t   (let ((kr (j-geti))\t\t\t; now alter result data\n\t\t (xx (j-geti))\n\t\t (yy (j-geti))\n\t\t (nn (j-geti)))\n\t\t(cond ((neq nn (length (exploden (text-text s))))\n\t\t       (format-text s))\t; actually clipped! reformat\n\t\t      (t (alter-text s\n\t\t\t   kr kr\n\t\t\t   delta (make-point x (- xx x) y (- yy y))\n\t\t\t   nn nn)\n\t\t\t (cond\n\t\t\t   (memop\t\t; memoize if req'd\n\t\t\t     (cond (p (nconc p\n\t\t\t\t\t(ncons (list (text-kl s) kr\n\t\t\t\t\t\t     (text-delta s) nn))))\n\t\t\t\t   (t (putprop (text-text s)\n\t\t\t\t\t(ncons (list (text-kl s) kr\n\t\t\t\t\t\t     (text-delta s) nn))\n\t\t\t\t\tk))))\n\t\t\t ))\n\t\t))\n\t ))\n       't))\t\t\t\t\t; always return t\n\n(defun backspace-text (s n)\t; undraw last n characters, remove from text\n  (cond\t\t\t\t; this presumes s has valid delta,kr,nn\n    ((plusp (text-nn s))\t; proceed only if length > 0\n     (setq n (min n (text-nn s)))\t; can't delete more than nn chars\n     (let ((text (text-text s))\n\t   (l (text-look s)))\n\t  (alter-text s\t\t; keep all but last n chars\n\t    text (substring text 1 (- (text-nn s) n))\n\t    nn (- (text-nn s) n))\n\t  (format-text s)\t\t; reformat to find the new end\n\t  (j-put-items\n\t    `((J-STRING compose)\t; now undraw last character\n\t      (J-INT ,(window-id (zone-window (text-zone s))))\n\t      (J-STRING ,(substring text (- n))) ; undraw last n chars\n\t      (J-STRING ,(font-name (look-font l)))\n\t      (J-INT ,(font-size (look-font l)))\n\t      (J-INT ,(boole 7 QUIET OVERSTRIKE (look-mode l)))\n\t      (J-INT ,(inverse-colour (look-colour l)))\n\t      (J-INT ,(look-gap l))\n\t      (J-INT ,(look-ul l))\n\t      (J-INT ,(text-kr s))\n\t      (J-INT ,(text-xx s))\n\t      (J-INT ,(text-yy s))\n\t      (J-INT ,(x (cond\n\t\t\t   ((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t    (ur (zone-box (text-zone s))))\n\t\t\t   (t (ll (zone-box (text-zone s)))))))\n\t      (J-INT ,(y (cond\n\t\t\t   ((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t    (ur (zone-box (text-zone s))))\n\t\t\t   (t (ll (zone-box (text-zone s)))))))\n\t      (J-INT ,n)\n\t     ))\n\t  (j-send (get (machine-servers\n\t\t\t (window-machine\n\t\t\t   (zone-window\n\t\t\t     (text-zone s))))\n\t\t       'text-composer))\n\t  't))\t\t\t; return t if able to do it; nil if nn <= 0\n  ))\n\n(defun append-text (s c)\t; draw new char(s) & add to end of text\n  (cond ((fixp c)\t\t; this presumes s has valid delta,kr,nn\n\t (setq c (ascii c))))\n  (j-put-items\n    `((J-STRING compose)\t; draw new last character(s)\n      (J-INT ,(window-id (zone-window (text-zone s))))\n      (J-STRING ,c)\n      (J-STRING ,(font-name (look-font (text-look s))))\n      (J-INT ,(font-size (look-font (text-look s))))\n      (J-INT ,(boole 4 (look-mode (text-look s)) QUIET))\t; be noisy!\n      (J-INT ,(look-colour (text-look s)))\n      (J-INT ,(look-gap (text-look s)))\n      (J-INT ,(look-ul (text-look s)))\n      (J-INT ,(text-kr s))\t; this presumes s has valid delta,kr,nn\n      (J-INT ,(text-xx s))\n      (J-INT ,(text-yy s))\n\t       (J-INT ,(x (cond\n\t\t\t    ((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n\t       (J-INT ,(y (cond\n\t\t\t    ((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n      (J-INT -1)\n     ))\n  (j-send (get (machine-servers\n\t\t (window-machine\n\t\t   (zone-window\n\t\t     (text-zone s))))\n\t       'text-composer))\n  (let ((kr (j-geti))\n\t(xx (j-geti))\n\t(yy (j-geti))\n\t(nn (j-geti)))\n       (alter-text s\n\t text (concat (text-text s) c)\n\t kr kr\n\t delta (subtract-points\n\t\t (make-point x xx y yy)\n\t\t (text-start-point s))\n\t nn (+ (text-nn s) nn)))\n  't)\n\n(defun append-text-scroll (s c colour) ; draw and add new char(s)\n  (let ((w (window-id\t;  while scrolling zone box b in specified colour\n\t     (zone-window (text-zone s))))\n\t(b (zone-box (text-zone s)))\n\t(l (text-look s)))\n       (cond ((fixp c)\n\t      (setq c (ascii c)))) ; this presumes s has valid delta,kr,nn\n       (j-put-items\n\t `((J-STRING compose)\t; format new last character\n\t   (J-INT ,w)\n\t   (J-STRING ,c)\n\t   (J-STRING ,(font-name (look-font l)))\n\t   (J-INT ,(font-size (look-font l)))\n\t   (J-INT ,(boole 7 NO-DRAW (look-mode l)))\n\t   (J-INT ,(look-colour l))\n\t   (J-INT ,(look-gap l))\n\t   (J-INT ,(look-ul l))\n\t   (J-INT ,(text-kr s)) ; this presumes s has valid delta,kr,nn\n\t   (J-INT 0)\n\t   (J-INT 0)\n\t   (J-INT -1)\n\t   (J-INT -1)\n\t   (J-INT -1)\n\t  ))\n       (j-send (get (machine-servers\n\t\t      (window-machine\n\t\t\t(zone-window\n\t\t\t  (text-zone s))))\n\t\t    'text-composer))\n       (let ((kr (j-geti))\n\t     (xx (j-geti))\n\t     (yy (j-geti))\n\t     (nn (j-geti)))\n\t    (apply\n\t      'w-scroll-rectangle\n\t      (nconc\n\t\t(ncons (window-w (zone-window (text-zone s))))\n\t\t(let ((direction (boole 1 ROTATION\n\t\t\t\t\t(look-mode l))))\n\t\t     (cond\n\t\t       ((= direction ROTATE-0)\n\t\t\t(list (text-xx s)\n\t\t\t      (y (ll b))\n\t\t\t      (- (x (ur b)) (text-xx s) -1)\n\t\t\t      (- (y (ur b)) (y (ll b)) -1)\n\t\t\t      WM-RIGHT xx))\n\t\t       ((= direction ROTATE-90)\n\t\t\t(list (x (ll b))\n\t\t\t      (text-yy s)\n\t\t\t      (- (x (ur b)) (x (ll b)) -1)\n\t\t\t      (- (y (ur b)) (text-yy s) -1)\n\t\t\t      WM-UP yy))\n\t\t       ((= direction ROTATE-180)\n\t\t\t(list (x (ll b))\n\t\t\t      (y (ll b))\n\t\t\t      (- (text-xx s) (x (ll b)) -1)\n\t\t\t      (- (y (ur b)) (y (ll b)) -1)\n\t\t\t      WM-LEFT (- xx)))\n\t\t       ((= direction ROTATE-270)\n\t\t\t(list (x (ll b))\n\t\t\t      (y (ll b))\n\t\t\t      (- (x (ur b)) (x (ll b)) -1)\n\t\t\t      (- (text-yy s) (y (ll b)) -1)\n\t\t\t      WM-DOWN (- yy)))\n\t\t     ))\n\t\t(ncons colour)))\n\t    (w-flush (window-w (zone-window (text-zone s))))\n\t    (j-put-items\n\t      `((J-STRING compose)\t; draw new last character\n\t\t(J-INT ,w)\n\t\t(J-STRING ,c)\n\t\t(J-STRING ,(font-name (look-font l)))\n\t\t(J-INT ,(font-size (look-font l)))\n\t\t(J-INT ,(boole 7 (look-mode l) QUIET))\n\t\t(J-INT ,(look-colour l))\n\t\t(J-INT ,(look-gap l))\n\t\t(J-INT ,(look-ul l))\n\t\t(J-INT ,(text-kr s)) ; this presumes s has valid delta,kr,nn\n\t\t(J-INT ,(text-xx s))\n\t\t(J-INT ,(text-yy s))\n\t       (J-INT ,(x (cond\n\t\t\t    ((zerop (boole 1 ROTATE-180 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n\t       (J-INT ,(y (cond\n\t\t\t    ((zerop (boole 1 ROTATE-90 (look-mode l)))\n\t\t\t     (ur (zone-box (text-zone s))))\n\t\t\t    (t (ll (zone-box (text-zone s)))))))\n\t\t(J-INT -1)\n\t       ))\n\t    (j-send (get (machine-servers\n\t\t\t   (window-machine\n\t\t\t     (zone-window\n\t\t\t       (text-zone s))))\n\t\t\t 'text-composer))\n\t    (alter-text s\n\t      text (concat (text-text s) c)\n\t      kr kr\n\t      delta (add-points\n\t\t      (make-point x xx y yy)\n\t\t      (text-delta s))\n\t      nn (+ (text-nn s) nn))\n       )'t))\n\n(defun format-text-list (sl)\t\t\t; chain the text objects\n  (do ((s (car sl) (car sl))\t\t\t; so that xx,yy,kr of one\n       (sl (cdr sl) (cdr sl)))\t\t\t; used as x,y,kl of next\n      ((null sl) (format-text s) 't)\n      (format-text s)\n      (alter-text (car sl)\n\tkl (text-kr s))\n      (move-text (car sl) (text-end-point s))\n  ))\n\n(defun move-text-list (sl p)\t; move whole list of text objects\n  (do ((s (car sl) (car sl))\n       (sl (cdr sl) (cdr sl))\n       (p p (text-end-point s)))\n      ((null s) 't)\n      (move-text s p)\n  ))\n\n(defun compress-text-list (sl)\t\t; combine like-moded text objects\n  (do ((s (car sl) (car sl))\t\t\t; to reduce communication\n       (sl (cdr sl) (cdr sl))\n       (new-text nil)\n       (new-end-point (text-start-point s))\n       (new-s (append (car sl) nil))\t; top-level copy\n       (dx nil)\n       (gap (look-gap (text-look (car sl))))\n       (result nil))\n      ((null s) (alter-text new-s\n\t\t   text (apply 'concat (nreverse new-text))\n\t\t   nn -1)\n       (nreverse (cons new-s result)))\t\t; return new s-list\n      (setq dx (- (x (text-start-point s))\n\t\t  (x new-end-point)))\n      (cond ((and\t\t\t; check most likely diffs first\n\t       (or (eq dx 0) (>= dx (look-gap (text-look s))))\n\t       (= (y (text-start-point s)) (y new-end-point))\n\t       (eq (text-look s)\n\t\t   (text-look new-s))\n\t     )\t\t\t\t; presume kerning doesn't matter!\n\t     (cond ((plusp dx)\t\t; horizontal movement\n\t\t    (setq new-text\n\t\t\t  (cons\n\t\t\t    (implode\n\t\t\t      (do ((dx (- dx gap 4) (- dx gap 4))\n\t\t\t\t   (result nil))\n\t\t\t\t  ((minusp dx)\n\t\t\t\t   (do ((dx (+ dx 4 -1) (- dx gap 1)))\n\t\t\t\t       ((minusp dx)\n\t\t\t\t\t(cond ((eq dx -1)\n\t\t\t\t\t       (setq result\n\t\t\t\t\t\t     (cons 1 result)))))\n\t\t\t\t\t\t\t; 0-pixel space\n\t\t\t\t       (setq result (cons 2 result)))\n\t\t\t\t\t\t\t; 1-pixel space\n\t\t\t\t   result)\n\t\t\t\t  (setq result (cons 3 result))\n\t\t\t\t\t\t\t; 4-pixel space\n\t\t\t      ))\n\t\t\t    new-text))))\n\t     (setq new-text (cons (text-text s) new-text))\n\t     (setq new-end-point (text-end-point s))\n\t    )\n\t    (t (alter-text new-s\n\t\t text (apply 'concat (nreverse new-text))\n\t\t nn -1\n\t\t delta (subtract-points new-end-point\n\t\t\t (text-start-point new-s)))\n\t       (setq result (cons new-s result))\n\t       (setq new-s (append s nil)\n\t\t     new-text (ncons (text-text s)))\n\t       (setq\n\t\t new-end-point (text-start-point s)\n\t\t gap (look-gap (text-look s)))\n\t    )\n      )))\n\n(defun draw-text-list (sl)\n  (mapc '(lambda (x) (draw-text x)) sl) 't)\n\n(defun undraw-text-list (sl)\n  (mapc '(lambda (x) (undraw-text x)) sl) 't)\n\n(defun format-draw-text-list (slist) ; format all on same line\n  (do ((s (car slist) (car sl))\n       (sl (cdr slist) (cdr sl)))\n      ((null sl) (format-draw-text s))\t; format the last one\n      (format-draw-text s)\n      (move-text (car sl)\t; chain xx,yy,kr to next one's x,y,kl\n\t(text-end-point s))\n  ))\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; text-edit.l -- rudimentary line editor for fancy character texts\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;;\n;;; These routines provide a simple line editor with control keys reminiscent\n;;; of the default EMACS key bindings.\n;;;\n;;; The calling program presumably has obtained a \"point\" event, at\n;;; position \"p\".  The cursor will be placed on the nearest character,\n;;; and then input is accepted from the keyboard, until such time as a\n;;; <return> key is accepted, or a point event occurs outside the text\n;;; zone boundary, or until a non-key, non-point event occurs.  Another\n;;; point event within the text zone causes the cursor to be re-positioned.\n;;;\n;;; Editing operations currently supported are:\n;;;\tCTRL-A (ascii 1)\t; control A = beginning of line\n;;;\tCTRL-B (ascii 2)\t; control B = backward-character\n;;;\tCTRL-D (ascii 4)\t; control D = delete next char\n;;;\tCTRL-E (ascii 5)\t; control E = end of line\n;;;\tCTRL-F (ascii 6)\t; control F = forward-character\n;;;\tBACKSPACE (ascii 8)\t; BACKSPACE = delete previous char\n;;;\tCTRL-K (ascii 11)\t; control K = kill to end of line\n;;;\tCTRL-L (ascii 12)\t; control L = redraw text\n;;;\tRETURN (ascii 13)\t; RETURN = \"done\"\n;;;\tCTRL-T (ascii 20)\t; control T = transpose previous 2 chars\n;;;\tCTRL-Y (ascii 25)\t; control Y = \"yank\" recently killed text\n\n(declare\n  (specials t)\n  (macros t))\n\n(eval-when (compile)\n  (load 'utilities)\n  (load 'constants)\n  (load 'zone)\n  (load 'font)\n  (load 'look)\n  (load 'text))\n\n\n(eval-when (compile eval load)\n  (defvar BACKSPACE (ascii 8))\t; backspace char = delete previous char\n  (defvar RETURN (ascii 13))\t; carriage return = \"done\"\n  (defvar CTRL-A (ascii 1))\t; control A = beginning of line\n  (defvar CTRL-B (ascii 2))\t; control B = backward-character\n  (defvar CTRL-D (ascii 4))\t; control D = delete next char\n  (defvar CTRL-E (ascii 5))\t; control E = end of line\n  (defvar CTRL-F (ascii 6))\t; control F = forward-character\n  (defvar CTRL-K (ascii 11))\t; control K = kill to end of line\n  (defvar CTRL-L (ascii 12))\t; control L = redraw text\n  (defvar CTRL-T (ascii 20))\t; control T = transpose previous 2 chars\n  (defvar CTRL-Y (ascii 25))\t; control Y = \"yank\" recently killed text\n  (defvar TYPEAHEAD-THRESHOLD 5); can type at most 5 chars -> forced feedback\n)\n\n(defun edit-text (s p)\t; edit a text at point p\n  (cond\t\t\t\t\t; p outside zone => nil\n    ((not (point-in-box p (zone-box (text-zone s)))) nil)\n    (t\t\t\t\t\t; p inside zone => edit text\n      (let\n\t((w (window-w (zone-window (text-zone s))))\n\t (post (append s nil))\n\t (kill-text \"\"))\n\t(split-texts s post p)\t; split into left and right parts\n\t(draw-cursor-leading-text post)\t; highlight first char\n\t(skip-stroke-release-events w)\n\t(do ((e (w-get-next-event w)\t\t; get an event\n\t\t(w-get-next-event w))\t\t; then keep getting events\n\t     (l) (c))\t\t\t\t; character list, character\n\t    ((eq c '#.RETURN)\t\t; stop when <return> is received\n\t     (cond ((neq e WM-KEY)\t; if not caused by key, put event back\n\t\t    (w-put-back-event w)))\n\t     (combine-texts s post)\n\t     t)\t\t\t; just return 't\n\t    (cond\t\t\t; main loop\n\t      ((eq e WM-KEY)\n\t       (setq c (concat (car (w-get-key w))))\t; get the character\n\t       (cond\n\t\t ((eq c '#.BACKSPACE)\t\t; backspace char\n\t\t  (text-delete-previous-character s post))\n\t\t ((eq c '#.CTRL-A)\t\t\t; control A\n\t\t  (text-beginning-of-line s post))\n\t\t ((eq c '#.CTRL-B)\t\t\t; control B\n\t\t  (text-backward-character s post))\n\t\t ((eq c '#.CTRL-D)\t\t\t; control D\n\t\t  (text-delete-next-character s post))\n\t\t ((eq c '#.CTRL-E)\t\t\t; control E\n\t\t  (text-end-of-line s post))\n\t\t ((eq c '#.CTRL-F)\t\t\t; control F\n\t\t  (text-forward-character s post))\n\t\t ((eq c '#.CTRL-K)\t\t\t; control K\n\t\t  (text-kill-to-end-of-line s post))\n\t\t ((eq c '#.CTRL-L)\t\t\t; control L\n\t\t  (text-redraw-display s post))\n\t\t ((eq c '#.CTRL-T)\t\t\t; control T\n\t\t  (text-transpose-characters s post))\n\t\t ((eq c '#.CTRL-Y)\t\t\t; control Y\n\t\t  (text-yank-from-killbuffer s post))\n\t\t ((neq c '#.RETURN)\t\t\t; not <return>\n\t\t  (text-insert-character s post))\n\t\t (t (w-put-back-event w))\t; it's a <return>; put it back\n\t       ))\t\t\t; so loop control can get it again\n\t      ((eq e WM-POINT-DEPRESSED)\n\t       (setq p (w-get-point w))\n\t       (cond\t\t\t\t; check point in zone\n\t\t ((point-in-box p (zone-box (text-zone s)))\n\t\t  (draw-cursor-leading-text post)\t; un-highlight char\n\t\t  (combine-texts s post)\n\t\t  (split-texts s post p)\n\t\t  (draw-cursor-leading-text post)\t; highlight new char\n\t\t  (skip-stroke-release-events w))\n\t\t (t (w-put-back-event w)\t; outside zone => return\n\t\t    (setq c '#.RETURN))))\n\t      ((neq e WM-CANCEL)\t\t; an event we can't handle\n\t       (w-put-back-event w)\t\t; so put it back, then return\n\t       (setq c '#.RETURN))\n\t    )))\n    )))\n\n(defun input-typeahead-keys (w n brk-fcn l)\t; return keys typed ahead\n   (cond\t\t\t\t\t; brk-fcn tests text\n     ((or (zerop n)\t\t\t\t; already have max typeahead\n\t  (not (w-any-events w))) (nreverse l))\t; or there aren't any events\n     (t (let ((x (w-get-next-event w)))\t\t; there's an event\n\t     (cond\n\t       ((neq x WM-KEY)\n\t\t(w-put-back-event w) (nreverse l))\t; but not a keystroke\n\t       (t (setq x (car (w-get-key w)))\t\t; it's a keystroke\n\t\t  (cond\n\t\t    ((funcall brk-fcn x)\t\t; is it a break char?\n\t\t     (w-put-back-event w) (nreverse l))\t; it's a special char\n\t\t    (t (input-typeahead-keys\t\t; it's a regular char\n\t\t\t w (1- n) brk-fcn (cons x l)))\t; tail recur for rest\n\t\t  )))))))\n\n(defun split-texts (s post p)\t\t; split text s at point p\n  (let\t\t\t\t\t; yielding texts s and post\n    (((kr delta nn) (scan-text s p)))\t; scan for char pos'n\n    (alter-text post\t\t\t; text incl & after char pt'ed\n      text (cond ((substring (text-text s) (1+ nn)))\t; if it exists!\n\t\t (\"\"))\t\t\t; otherwise,nothing\n      offset (add-points (text-offset s) delta)\n      kl kr\n      delta (subtract-points (text-delta s) delta)\n      nn (- (text-nn s) nn))\n    (alter-text s kr kr delta delta nn nn\t; truncate text\n      text (cond ((substring (text-text s) 1 nn))\n\t\t (\"\")))\n  ))\n\n(defun skip-stroke-release-events (w)\n  (do ((e (w-get-next-event w)\n\t  (w-get-next-event w)))\n      ((neq e WM-POINT-STROKE)\t\t; get events until non-point-stroke\n       (cond ((neq e WM-POINT-RELEASED)\t; should be point-release\n\t      (w-put-back-event w))))\t; if not, put it back\n  ))\n\n(defun combine-texts (s post)\t; recombine texts\n  (alter-text s\n    text (concat (text-text s) (text-text post))\n    nn (+ (text-nn s) (text-nn post))\n    delta (add-points (text-delta s) (text-delta post))\n    kr (text-kr post))\n  (format-text s))\n\n(defun draw-cursor-leading-text (s)\t; highlight first char of text\n  (let ((c (append s nil)))\n       (alter-text c\t\t\t; get first char\n\t text (concat (cond ((substring (text-text c) 1 1))\t; if any\n\t\t\t    (t 'a))))\t; otherwise use a typical character\n       (format-text c)\n       (w-clear-rectangle\n\t (window-w (zone-window (text-zone c)))\n\t (text-x c)\n\t (y (ll (zone-box (text-zone c))))\n\t (min (x (text-delta c))\n\t      (- (x (ur (zone-box (text-zone c))))\n\t\t (text-x c) -1))\n\t (- (y (ur (zone-box (text-zone c))))\n\t    (y (ll (zone-box (text-zone c)))) -1)\n\t W-XOR)\n       (w-flush (window-w (zone-window (text-zone c))))\n       t))\n\n(defun text-delete-previous-character (s post)\n  (let ((l (input-typeahead-keys w TYPEAHEAD-THRESHOLD\n\t     '(lambda (x)\t; break on first non-BS\n\t\t(not (equal x #.(get_pname BACKSPACE))))\n\t     (ncons '#.BACKSPACE))))\n       (alter-text s\n\t nn (max 0 (- (text-nn s) (length l))))\n       (alter-text s\n\t text (cond ((substring\n\t\t       (text-text s)\n\t\t       1 (text-nn s)))\n\t\t    (\"\")))\n       (format-text s)\n       (w-scroll-rectangle\n\t (window-w (zone-window (text-zone s)))\n\t (text-xx s)\n\t (y (ll (zone-box (text-zone s))))\n\t (- (x (ur (zone-box (text-zone s))))\n\t    (text-xx s) 1)\n\t (1+ (y (box-size (zone-box (text-zone s)))))\n\t WM-LEFT\n\t (- (x (text-start-point post))\n\t    (x (text-end-point s)))\n\t (zone-colour (text-zone s)))\n       (w-flush\n\t (window-w (zone-window (text-zone s))))\n       (move-text post (text-end-point s))\n       (alter-text post kl (text-kr s))))\n\n(defun text-beginning-of-line (s post)\n  (draw-cursor-leading-text post)\t; un-highlight first char\n  (alter-text post\n    text (concat (text-text s) (text-text post))\n    nn (+  (text-nn s) (text-nn post))\n    delta (add-points (text-delta s) (text-delta post))\n    kl 0\n    offset (text-offset s))\n  (alter-text s text \"\" nn 0 delta '(0 0) kr 0)\n  (draw-cursor-leading-text post))\t; highlight new first char\n\n(defun text-backward-character (s post)\n  (let ((l (input-typeahead-keys w TYPEAHEAD-THRESHOLD\n\t     '(lambda (x)\t; break on first non-BS\n\t\t(not (equal x #.(get_pname CTRL-B))))\n\t     (ncons '#.CTRL-B))))\n       (draw-cursor-leading-text post)\t; un-highlight first char\n       (alter-text post\n\t text (get_pname (concat (substring (text-text s) (- (length l)))\n\t\t\t   (text-text post)))\n\t nn (1+ (text-nn post)))\n       (alter-text s\n\t text (substring (text-text s) 1 (- (text-nn s) (length l)))\n\t nn (- (text-nn s) (length l)))\n       (format-text s)\n       (alter-text post\n\t kl (text-kr s)\n\t offset (add-points (text-offset s) (text-delta s))\n\t delta (subtract-points\n\t\t (text-end-point post)\n\t\t (text-end-point s)))\n       (draw-cursor-leading-text post)\t; highlight new first char\n  ))\n\n(defun text-forward-character (s post)\n  (let ((l (input-typeahead-keys w TYPEAHEAD-THRESHOLD\n\t     '(lambda (x)\t; break on first non-BS\n\t\t(not (equal x #.(get_pname CTRL-F))))\n\t     (ncons '#.CTRL-F))))\n       (draw-cursor-leading-text post)\t; un-highlight first char\n       (alter-text s\n\t text (get_pname (concat (text-text s)\n\t\t\t   (substring (text-text post) 1 (length l))))\n\t nn (+ (text-nn s) (length l)))\n       (format-text s)\n       (alter-text post\n\t text (substring (text-text post) (1+ (length l)))\n\t nn (- (text-nn post) (length l))\n\t kl (text-kr s)\n\t offset (add-points (text-offset s) (text-delta s))\n\t delta (subtract-points\n\t\t (text-end-point post)\n\t\t (text-end-point s)))\n       (draw-cursor-leading-text post)\t; highlight new first char\n  ))\n\n(defun text-end-of-line (s post)\n  (draw-cursor-leading-text post)\t; un-highlight first char\n  (alter-text s\n    text (concat (text-text s) (text-text post))\n    nn (+  (text-nn s) (text-nn post))\n    delta (add-points (text-delta s) (text-delta post))\n    kr (text-kr post))\n  (alter-text post\n    text \"\"\n    nn 0\n    offset (add-points (text-offset post) (text-delta post))\n    delta '(0 0)\n    kl (text-kr s))\n  (draw-cursor-leading-text post))\t; highlight new first char\n  \n(defun text-kill-to-end-of-line (s post)\n  (w-clear-rectangle\n    (window-w (zone-window (text-zone post)))\n    (text-x post)\n    (y (ll (zone-box (text-zone post))))\n    (- (x (ur (zone-box (text-zone post)))) (text-x post))\n    (1+ (y (box-size (zone-box (text-zone post)))))\n    (zone-colour (text-zone post)))\n  (setq kill-text (text-text post))\n  (alter-text post\n    text \"\"\n    nn 0\n    delta '(0 0)\n    kl (text-kr s))\n  (draw-cursor-leading-text post))\t; highlight new first char\n  \n(defun text-yank-from-killbuffer (s post)\n  (append-text-scroll s kill-text\n    (zone-colour (text-zone s)))\n  (move-text post (text-end-point s))\n  (alter-text post\n    kl (text-kr s)))\n\n(defun text-transpose-characters (s post)\n  (let ((tmp (append s nil)))\n       (alter-text tmp\n\t nn (- (text-nn tmp) 2))\n       (let (((kr delta nn) (scan-text tmp '(-1 -1)))) ; find 2nd prev char\n\t    (alter-text tmp\n\t      text (substring (text-text tmp) -2)\n\t      offset (add-points (text-offset tmp) delta)\n\t      kl kr)\n\t    (format-text tmp)\n\t    (w-clear-rectangle\n\t      (window-w (zone-window (text-zone tmp)))\n\t      (text-x tmp)\n\t      (y (ll (zone-box (text-zone tmp))))\n\t      (x (text-delta tmp))\n\t      (1+ (y (box-size (zone-box (text-zone tmp)))))\n\t      (zone-colour (text-zone tmp)))\n\t    (w-flush (window-w (zone-window (text-zone tmp))))\n\t    (alter-text tmp\n\t      text (get_pname (concat\n\t\t\t\t(substring (text-text tmp) 2 1)\n\t\t\t\t(substring (text-text tmp) 1 1))))\n\t    (format-draw-text tmp)\n\t    (alter-text s\n\t      text (get_pname\n\t\t     (concat\n\t\t       (substring (text-text s) 1 (- (text-nn s) 2))\n\t\t       (text-text tmp)))\n\t      kr (text-kr tmp))\n       )))\n\n(defun text-delete-next-character (s post)\n  (let ((l (input-typeahead-keys w TYPEAHEAD-THRESHOLD\n\t     '(lambda (x)\t; break on first non-BS\n\t\t(not (equal x #.(get_pname CTRL-D))))\n\t     (ncons '#.CTRL-D))))\n       (alter-text post\n\t nn (length l))\n       (let (((kl delta nn)\t\t; scan for nn'th char position\n\t      (scan-text post '(-1 -1))))\n\t    (w-scroll-rectangle\n\t      (window-w (zone-window (text-zone post)))\n\t      (text-x post)\n\t      (y (ll (zone-box (text-zone post))))\n\t      (- (x (ur (zone-box (text-zone post))))\n\t\t (text-x post) 1)\n\t      (1+ (y (box-size (zone-box (text-zone post)))))\n\t      WM-LEFT\n\t      (x delta)\n\t      (zone-colour (text-zone post)))\n\t    (alter-text post\n\t      nn (max 0 (- (length (exploden (text-text post)))\n\t\t\t   (length l)))\n\t      kl kl)\n\t    (alter-text post\n\t      text (cond ((substring\n\t\t\t    (text-text post)\n\t\t\t    (- (text-nn post))))\n\t\t\t (\"\")))\n\t    (format-text post)\n\t    (draw-cursor-leading-text post)\n\t    (w-flush (window-w (zone-window (text-zone post))))\n       )))\n\n(defun text-insert-character (s post)\n  (let ((l (input-typeahead-keys w TYPEAHEAD-THRESHOLD\n\t     '(lambda (x)\t; break on first BS or CR\n\t\t(memq (concat x) '#.(list BACKSPACE RETURN)))\n\t     (ncons c))))\n       (append-text-scroll s (concatl l)\n\t (zone-colour (text-zone s)))\n       (move-text post (text-end-point s))\n       (alter-text post\n\t kl (text-kr s))))\n\n(defun text-redraw-display (s post)\n  (clear-zone (text-zone s) (zone-colour (text-zone s)))\n  (w-flush (window-w (zone-window (text-zone post))))\n  (format-draw-text s)\n  (alter-text post\n    kl (text-kr s)\n    offset (add-points (text-offset s) (text-delta s)))\n  (format-draw-text post)\n  (draw-cursor-leading-text post))\n"
  },
  {
    "path": "testdata/calgary/progp",
    "content": "program interval(input,output);\n{dataflow simulator for real interval arithmetic}\n\nconst\n\tIMem = 500; {number of instructions}\n\tDMem = 200;  {number of interval variables allowed}\n\tPar = 3;   {max number of paramters for an operator}\n\tMaxexp = 10; Minexp = -9;\n\tMaxinf =10000; Mininf =-10000; {Tied to values of Minman and Maxman}\n\tMaxman = 9999; Minman = -9999; {cannot exceed sqrt(maxint)}\n\tSplitman = 1000; {Smallest normalized mantisa}\n\tDigits = 4; {number of digits in mantissa}\n\ntype\n\tPositive= 0..maxint;\n\tState  = -1..99;  {Used for holding state of operator -1:done}\n\tOpType = (print,pr,tr,soln,readr,halve,halves,linh,mult,add,intgr,\nless,leq,noteq,sqrr,minr,maxr,modu,absr,trig,expr,lb,ub,copy,stop); {!!}\n\tPtr    = 1..DMem;\n\tLoc    = 1..IMem;\n\tLoc0   = 0..IMem;\n\tEdgeT  = (hout,lin,hin,lout); {Warning this order is important in}\n\t\t\t\t      {predicates such as gtS,geS}\n\tCardT  = (finite,infinite);\n\tExpT   = Minexp..Maxexp;\n\tManT   = Mininf..Maxinf; \n\tPflag  = (PNull,PSoln,PTrace,PPrint);\n\tSreal  = record\n\t\t    edge:EdgeT;\n\t\t    cardinality:CardT;\n\t\t    exp:ExpT; {exponent}\n\t\t    mantissa:ManT;\n\t\t end;\n\tInt    = record\n\t\t    hi:Sreal;\n\t\t    lo:Sreal;\n\t end;\n\tInstr  = record\n\t\t    Code:OpType;\n\t\t    Pars: array[0..Par] of 0..DMem;\n\t\t end;\n\tDataMem= record\n\t\t    D        :array [Ptr] of Int;\n\t\t    S        :array [Loc] of State;\n\t\t    LastHalve:Loc;\n\t\t    RHalve   :array [Loc] of real;\n\t\t end;\n\tDataFlags=record\n\t\t    PF\t     :array [Ptr] of Pflag;\n\t\t end;\nvar\n\tDebug  : (none,activity,post,trace,dump);\n\tCut    : (once,all);\n\tGlobalEnd,Verifiable:boolean;\n\tHalveThreshold:real;\n\tI      : array [Loc] of Instr; {Memory holding instructions}\n\tEnd    : Loc; {last instruction in I}\n\tParN   : array [OpType] of -1..Par; {number of parameters for each \n\t\t\topcode. -1 means no result}\n        ParIntersect : array [OpType] of boolean ;\n\tDInit  : DataMem; {initial memory which is cleared and \n\t\t\t\tused in first call}\n\tDF     : DataFlags; {hold flags for variables, e.g. print/trace}\n\tMaxDMem:0..DMem;\n\tShift  : array[0..Digits] of 1..maxint;{array of constant multipliers}\n\t\t\t\t\t\t{used for alignment etc.}\n\tDummy  :Positive;\n\t{constant intervals and Sreals}\n\tPlusInfS,MinusInfS,PlusSmallS,MinusSmallS,ZeroS,\n\tPlusFiniteS,MinusFiniteS:Sreal;\n\tZero,All,AllFinite:Int;\n\nprocedure deblank;\nvar Ch:char;\nbegin\n   while (not eof) and (input^ in [' ','\t']) do read(Ch);\nend;\n\nprocedure InitialOptions;\n\n#include '/user/profs/cleary/bin/options.i';\n\n   procedure Option;\n   begin\n      case Opt of\n      'a','A':Debug:=activity;\n      'd','D':Debug:=dump;\n      'h','H':HalveThreshold:=StringNum/100;\n      'n','N':Debug:=none;\n      'p','P':Debug:=post;\n      't','T':Debug:=trace;\n      'v','V':Verifiable:=true;\n      end;\n   end;\n\nbegin\n   Debug:=trace;\n   Verifiable:=false;\n   HalveThreshold:=67/100;\n   Options;\n   writeln(Debug);\n   writeln('Verifiable:',Verifiable);\n   writeln('Halve threshold',HalveThreshold);\nend;{InitialOptions}\n\nprocedure NormalizeUp(E,M:integer;var S:Sreal;var Closed:boolean);\nbegin\nwith S do\nbegin\n   if M=0 then S:=ZeroS else\n   if M>0 then\n   begin\n      while M>=Maxinf do\n      begin \n\t if M mod 10 > 0 then begin Closed:=false;M:=(M div 10)+1 end\n\t else M:=M div 10;\n\t E:=E+1;\n      end;\n\t \n      while M < Maxinf div 10 do\n      begin M:=M*10; E:=E-1; \n      end;\n\n      if E > Maxexp then {overflow-set to infinity}\n      begin \n\t S:=PlusInfS;\n\t Closed:=false;\n      end else\n      if E < Minexp then {underflow-set to smallest positive value}\n      begin \n         S:=PlusSmallS;\n         Closed:=false;\n      end else\n      begin cardinality:=finite;exp:=E;mantissa:=M;\n      end;\n   end else\t \n   if M < 0 then\n   begin\n      while M <= Mininf do\n      begin \n\t if M mod 10 < 0 then Closed:=false else\n\t if M mod 10 > 0 then halt;\n\t M:=M div 10;\n\t E:=E+1;\n      end;\n\t \n      while M > (Mininf div 10) do\n      begin M:=M*10; E:=E-1; \n      end;\n\n      if E > Maxexp then {overflow-set to most negative value}\n      begin \n         S:=MinusFiniteS;\n         Closed:=false;\n      end \n      else\n      if E < Minexp then {underflow-set to zero}\n      begin\n         S:=ZeroS;\n         Closed:=false;\n      end else\n      begin\n         cardinality:=finite;exp:=E;mantissa:=M;\n      end;\n   end;\nend;\nend;{NormalizeUp}\n\nprocedure NormalizeDn(E,M:integer;var S:Sreal;var Closed:boolean);\nbegin\nwith S do\nbegin\n   if M=0 then S:=ZeroS else\n   if M>0 then\n   begin\n      while M >= Maxinf do\n      begin \n\t if M mod 10 > 0 then Closed:=false else\n\t if M mod 10 < 0 then halt;\n\t M:=M div 10;\n\t E:=E+1;\n      end;\n\t \n      while (M < Maxinf div 10) do\n      begin M:=M*10; E:=E-1; \n      end;\n\n      if E > Maxexp then {overflow-set to largest positive value}\n      begin \n\t S:=PlusFiniteS;\n\t Closed:=false;\n      end else\n      if E < Minexp then {underflow-set to zero}\n      begin S:=ZeroS; Closed:=false;\n      end else\n      begin cardinality:=finite;exp:=E;mantissa:=M;\n      end;\n   end else\t \n   if M < 0 then\n   begin\n      while M <= Mininf do\n      begin \n\t if M mod 10 < 0 then \n\t begin Closed:=false; M:=M div 10 -1;end\n\t else \n\t if M mod 10 = 0 then M:=M div 10 \n\t else halt;\n\t E:=E+1;\n      end;\n\t \n      while (M>Mininf div 10) do\n      begin M:=M*10; E:=E-1; \n      end;\n\n      if E > Maxexp then {overflow}\n      begin \n         S:=MinusInfS;\n         Closed:=false;\n      end \n      else\n      if E < Minexp then {underflow}\n      begin S:=MinusSmallS; Closed:=false;\n      end else\n      begin\n         cardinality:=finite;exp:=E;mantissa:=M;\n      end;\n   end;\nend;\nend;{NormalizeDn}\n\nprocedure WriteS(X:Sreal);\nvar E,M:integer;\nbegin\nwith X do\nbegin\n   case edge of\n   lin: write('[');\n   lout: write('(');\n   hin,hout:\n   end;\n   \n   case cardinality of\n   infinite: write('inf':Digits+4); \n   finite: \n      if mantissa = 0 then write(0:Digits+1,' ':3)\n      else begin\n         M:=mantissa;\n\t E:=exp; \n         while (M mod 10 = 0) do\n\t begin M:=M div 10; E:=E+1;\n\t end;\n         write(M:Digits+1,'e',E-Digits:2);\n      end;\n   end;\n   \n   case edge of \n   hin: write(']');\n   hout:write(')');\n   lin,lout:\n   end;\nend;\nend;{WriteS}\n\nprocedure WriteInt(I:Int);\nbegin\n   with I do begin WriteS(lo); write(','); WriteS(hi); end;\nend;{WriteInt}\n   \nprocedure DumpS(X:Sreal);\nbegin\nwith X do\n   write(edge:4,cardinality:9,mantissa:7,exp:3);\nend;{DumpS}\n\nprocedure DumpInt(I:Int);\nbegin\n   with I do begin DumpS(lo); write(' || '); DumpS(hi); end;\nend;{DumpInt}\n   \nprocedure ReadInt(var I:Int);\n\nvar   Ch:char;\n      Cll,Clu:boolean;\n\t\n   procedure ReadSUp(var X:Sreal; var Closed:boolean);\n   var E,M:integer;\n   begin\n      with X do\n      begin\n         deblank;\n         case input^ of\n         '~':begin X:=PlusInfS;read(Ch);\n\t     end;\n         '-','+','0','1','2','3','4','5','6','7','8','9':\n\t begin\n\t    cardinality:=finite;\n   \t    read(M);\n\t    read(E); E:=E+Digits;\n\t    NormalizeUp(E,M,X,Closed);\n\t end;\n\t end;{case}\n      end;\n   end;{ReadSUp}\n\n   procedure ReadSDn(var X:Sreal; var Closed:boolean);\n   var E,M:integer;\n       Ch:char;\n   begin\n      with X do\n      begin\n         deblank;\n         case input^ of\n         '~':begin X:=MinusInfS;read(Ch);\n\t     end;\n         '-','+','0','1','2','3','4','5','6','7','8','9':\n\t begin\n\t    cardinality:=finite;\n   \t    read(M);\n\t    read(E); E:=E+Digits;\n\t    NormalizeDn(E,M,X,Closed);\n\t end;\n\t end;{case}\n      end;\n   end;{ReadSDn}\nbegin{ReadInt}\n   with I do \n   begin \n      deblank; read(Ch); \n      case Ch of\n      '[':Cll:=true;\n      '(':Cll:=false;\n      end;\n      ReadSDn(lo,Cll);if Cll then lo.edge:=lin else lo.edge:=lout;\n      deblank;\n      read(Ch); assert(Ch=',');\n      Clu:=true;\n      ReadSUp(hi,Clu);\n      deblank;\n      read(Ch);\n      case Ch of\n      ']':if Clu then hi.edge:=hin else hi.edge:=hout;\n      ')':hi.edge:=hout;\n      end;\n   end;\nend;{ReadInt}\n   \nprocedure DumpTables;\nvar tL:Loc; tPar:0..Par; tOp:OpType;\nbegin\n\tfor tOp := print to stop do\n\t   writeln(tOp:6,ParN[tOp]:2);\n\twriteln;\n\n\tfor tL := 1 to End do\n\twith I[tL] do\n\tbegin\n\t   write(Code:5);\n\t   for tPar := 0 to Par do\n\t      if Pars[tPar] <> 0 then write(Pars[tPar]:4);\n\t   writeln;\n\tend;\n\twriteln('number of memory locations used:',MaxDMem:0);\n\twriteln;\nend;{DumpTables}\n\t\nprocedure AlignUp\n   (E0:ExpT;M0:ManT;E1:ExpT;M1:ManT;var E,N0,N1:integer;var Closed:boolean);\n{Align mantissas M0,M1 preserving accuracy and rounding up wherever possible}\n{common resulting exponents in E, and mantissas in N0,N1}\nvar D:Positive;\nbegin\n   if M0=0 then begin E:=E1;N0:=0;N1:=M1;end else\n   if M1=0 then begin E:=E0;N0:=M0;N1:=0;end else\n   if E0=E1 then\n   begin E:=E0; N0:=M0; N1:=M1;\n   end else\n   if (E0>E1) then AlignUp(E1,M1,E0,M0,E,N1,N0,Closed) else\n   begin\n      D:=E1-E0;\n      if D>= 2*Digits then\n      begin \n         N1:=M1*Maxinf; E:=E1-Digits;\n\t if M0<0 then N0:=0 else N0:=1;\n\t Closed:=false;\n      end else\n      if D > Digits then\n      begin \n         N1:=M1*Maxinf; E:=E1-Digits; \n\t if (M0 mod Shift[D-Digits]) = 0 \n\t then N0:=(M0 div Shift[D-Digits])\n\t else\n\t    if M0 > 0 then N0:=(M0 div Shift[D-Digits])+1\n\t              else N0:=(M0 div Shift[D-Digits]);\n      end else\n      {Digits>=D>=0}\n      begin N1:=M1*Shift[D]; E:=E1-D; N0:=M0;\n      end;\n   end;\nend;{AlignUp}\n\nfunction gtS(X,Y:Sreal):boolean;\n{X>Y  careful need to be able to compare x] and (x etc.}\nvar gt:boolean;\nbegin\n   if (X.exp=Y.exp)and(X.mantissa=Y.mantissa) then gt:=X.edge>Y.edge else\n   if X.exp = Y.exp then gt:= (X.mantissa > Y.mantissa) else\n   if X.mantissa = 0 then gt:= 0 > Y.mantissa else\n   if Y.mantissa = 0 then gt:= X.mantissa > 0 else\n   if (X.mantissa>0) and (Y.mantissa>0) then gt:= (X.exp > Y.exp) else\n   if (X.mantissa>0) and (Y.mantissa<0) then gt:= true else\n   if (X.mantissa<0) and (Y.mantissa>0) then gt:= false else\n   if (X.mantissa<0) and (Y.mantissa<0) then gt:= (X.exp < Y.exp) \n   else  writeln('error in gtS');\n   \n   gtS:=gt;\nend;{gtS}\n   \nfunction geS(X,Y:Sreal):boolean;\n{X>=Y  careful need to be able to compare x] and (x etc.}\nbegin\n   if (X.exp=Y.exp)and(X.mantissa=Y.mantissa) then geS:=X.edge>=Y.edge else\n   if X.exp = Y.exp then geS:= (X.mantissa >= Y.mantissa) else\n   if X.mantissa = 0 then geS:= 0 >= Y.mantissa else\n   if Y.mantissa = 0 then geS:= X.mantissa >= 0 else\n   if (X.mantissa>0) and (Y.mantissa>0) then geS:= (X.exp > Y.exp) else\n   if (X.mantissa>0) and (Y.mantissa<0) then geS:= true else\n   if (X.mantissa<0) and (Y.mantissa>0) then geS:= false else\n   if (X.mantissa<0) and (Y.mantissa<0) then geS:= (X.exp < Y.exp) \n   else  writeln('error in geS');\nend;{geS}\n   \nfunction Point(X:Int):boolean;\n{X=[x,x]}\nbegin\nwith X do\n   Point:=(lo.edge=lin)and (hi.edge=hin) and \n\t  (lo.mantissa=hi.mantissa) and\n\t  (lo.exp=hi.exp);\nend;{Point}\n\nprocedure maxS(X,Y:Sreal;var max:Sreal);\nbegin\n\tif gtS(X,Y) then max:=X else max:=Y;\nend;\n\nprocedure minS(X,Y:Sreal;var min:Sreal);\nbegin\n\tif gtS(X,Y) then min:=Y else min:=X;\nend;\n\nprocedure Inter(P,Q:Int;var R:Int);\nbegin\n   minS(P.hi,Q.hi,R.hi);\n   maxS(P.lo,Q.lo,R.lo);\nend;\n\nfunction CheckHi(X:Sreal):boolean;\nvar OK:boolean;\nbegin\n   OK:=true;\n   with X do\n   begin\n      case cardinality of\n      infinite:\n         if (exp=Maxexp)and(mantissa=Maxinf) then\n\t else writeln('**Invalid hi infinity');\n      finite:\n      begin\n         if (mantissa=Maxinf) or (mantissa=Mininf) then\n\t begin OK:=false; writeln('**Invalid finite value - hi');\n\t end;\n\t \n         if mantissa = 0 then\n\t    if (exp=0) then \n\t    else \n\t    begin OK:=false; writeln('**Invalid zero - hi')\n\t    end\n\t else\n\t begin\n\t    if (mantissa > 0) then\n\t       if mantissa >= (Maxinf div 10) then {OK}\n\t       else \n\t       begin OK:=false; writeln('**Incorrect normalization - hi') \n\t       end\n\t    else{mantissa<0}\n\t       if mantissa > (Mininf div 10) then\n\t       begin OK:=false; writeln('**Incorrect normalization - hi') \n\t       end;\n\t end;\n      end;\n      end;{case}\n\n      if not (edge in [hin,hout]) then\n      begin\n         OK:=false;\n\t writeln('**hi edge value incorrect');\n      end;\n   end;\n   \n   CheckHi:=OK;\nend;{CheckHi}\n  \nfunction CheckLo(X:Sreal):boolean;\nvar OK:boolean;\nbegin\n   OK:=true;\n   with X do\n   begin\n      case cardinality of\n      infinite:\n         if (exp=Maxexp)and(mantissa=Mininf) then\n\t else writeln('**Invalid lo infinity');\n      finite:\n      begin\n         if (mantissa=Maxinf) or (mantissa=Mininf) then\n\t begin OK:=false; writeln('**Invalid finite value - hi');\n\t end;\n\t \n         if mantissa = 0 then\n\t    if (exp=0) then \n\t    else \n\t    begin OK:=false; writeln('**Invalid zero - lo')\n\t    end\n\t else\n\t begin\n\t       if (mantissa > 0) then\n\t          if mantissa >= (Maxinf div 10) then{OK}\n\t\t  else \n\t\t  begin OK:=false; writeln('**Incorrect normalization - lo') \n\t\t  end\n\t       else{mantissa<0}\n\t          if mantissa > (Mininf div 10) then\n\t\t  begin OK:=false; writeln('**Incorrect normalization - lo') \n\t\t  end;\n\t end;\n      end;\n      end;{case}\n\n      if not (edge in [lin,lout]) then\n      begin\n         OK:=false;\n\t writeln('**lo edge value incorrect');\n      end;\n   end;\n   \n   CheckLo:=OK;\nend;{CheckLo}\n  \nfunction CheckInt(I:Int):boolean;\nvar OK:boolean;\nbegin\n   OK:=CheckHi(I.hi) and CheckLo(I.lo);\n   if gtS(I.lo,I.hi) then\n   begin\n      OK:=false;\n      writeln('**Limits out of order');\n   end;\n\n   if not OK then \n   begin writeln('**Error in Check'); DumpInt(I);\n   end;\n   \n   CheckInt:=OK;\nend;\n\nprocedure DumpMem(var DCurr:DataMem);\nvar tD:Ptr; tL:Loc;\nbegin\n   with DCurr do\n   begin\n        writeln('LastHalve:',LastHalve:0);\n\t\n    \tfor tL:= 1 to End do\n\t   writeln(tL:3,S[tL]:2,RHalve[tL]);\n\twriteln;\n\t\n\tfor tD:= 1 to MaxDMem do \n\tbegin \n\t   write(tD:5);\n\t   DumpInt(D[tD]);\n\t   assert(CheckInt(D[tD]));\n\t   writeln;\n\tend;\n\twriteln;\n   end;\nend;{DumpMem}\n\nprocedure WriteMem(var DCurr:DataMem);\nvar tD:Ptr; \nbegin\n   with DCurr do\n   begin\n\tfor tD:= 1 to MaxDMem do \n\tif (DF.PF[tD] > PNull) or (Debug > activity) then\n\tbegin \n\t   write(tD:5);\n\t   WriteInt(D[tD]);\n\t   writeln;\n\tend;\n\twriteln;\n   end;\nend;{WriteMem}\n\nprocedure OuterExec\n(PC:Loc0;DCurr:DataMem;Change:boolean;First:State;\n var OldCounter:Positive;Level:Positive);\n\nvar Counter:Positive;\n    Fail,AllPoints,LocalChange:boolean;\n\nprocedure NewOuter(F:State);\nbegin OuterExec(PC,DCurr,Change,F,Counter,Level+1);\nend;\n\n{!!}\nprocedure execprint(PC:Loc; L:Ptr; R0:Int);\nbegin\n   DF.PF[L]:=PSoln;\n   writeln;\n   write(PC:3,L:5);\n   WriteInt(R0);\n   writeln;\nend;\n\nprocedure execpr(var Sr:State; L:Ptr);\nbegin\n   Sr:=-1; DF.PF[L]:=PPrint;\nend;{execpr}\n\nprocedure exectr(var Sr:State; L:Ptr);\nbegin\n   Sr:=-1; DF.PF[L]:=PTrace;\nend;{exectr}\n\nprocedure execsoln(var Sr:State; L:Ptr);\nbegin\n   Sr:=-1; DF.PF[L]:=PSoln;\nend;{execsoln}\n\nprocedure execreadr(var Sr:State;var R0:Int);\nbegin\n   writeln;\n   write('<<');\n   ReadInt(R0);\n   Sr:=-1;\nend;\n\nfunction GetReal(E,M:integer):real;\n{convert E-exponent,M-mantissa into genuine Pascal real number}\nvar x:real;\nbegin\n   x:=M/Maxinf;\n   while E>0 do begin x:=x*10; E:=E-1; end; \n   while E<0 do begin x:=x/10; E:=E+1; end;\n   GetReal:=x; \nend;{GetReal} \n   \nprocedure Ratio(Lo,Hi:Sreal;var ERat,MRat:integer); \n{compute ratio of Hi to Lo in exponent mantissa form}\nbegin\n   if Lo.mantissa=0 then\n   begin{treat zero as if smallest possible positive number}\n      ERat:=Hi.exp-Minexp;\n      MRat:=Hi.mantissa*10;\n   end else\n   if Hi.mantissa=0 then\n   begin{treat zero as if smallest possible negative number}\n      ERat:=Minexp-Lo.exp;\n      MRat:=Lo.mantissa*10;\n   end\n   else begin\n      ERat:=Hi.exp-Lo.exp;\n      MRat:=(Hi.mantissa*Maxinf) div Lo.mantissa;\n   end;\nend;{Ratio}\n    \nfunction Adjacent(X:Int):boolean;\n{are hi and lo bounds adjacent points}\nbegin\n   with X do\n   if (hi.mantissa=0) or (lo.mantissa=0) then\n      Adjacent:=\n         ((hi.mantissa=0)and(lo.mantissa=Mininf div 10)and(lo.exp=Minexp)) or\n         ((lo.mantissa=0)and(hi.mantissa=Maxinf div 10)and(hi.exp=Minexp)) \n   else\n      Adjacent:=\n         ((lo.exp=hi.exp)and(lo.mantissa+1=hi.mantissa)) or\n\t ((hi.exp=lo.exp+1)and(hi.mantissa=(lo.mantissa div 10)+1)) or\n\t ((hi.exp=lo.exp-1)and((hi.mantissa div 10)-1=lo.mantissa));\nend;{Adjacent}\n\nprocedure exechalve\n   (var PC:Loc0;var Sr:State;var R0:Int;var OK:boolean;var Change:boolean);\n{Reduce range of R0 (suceeds twice for two 'halves')}\n\nvar EDiff,MDiff,ERat,MRat,MidE,MidM,M0,M1,HiM,HiE:integer;\n    Dummy:boolean;\n    Mid:Sreal;\n    R,D:real;\n    OldPC:Loc;\n   \n    procedure AtEnd;{What to do afer a successful halve}\n    begin  \n\tDCurr.LastHalve:=PC; PC:=0; Sr:=0;\n    end;\n\nbegin{exechalve}\nOldPC:=PC;\nwith R0 do\n begin\n      if DCurr.LastHalve >= PC then {not our turn yet} else\n      if (lo.mantissa = hi.mantissa) and (lo.exp=hi.exp) and\n         (lo.edge=lin) and (hi.edge=hin)\n      then {single point cant be divided} Sr:=-1 \n      else\n      if Adjacent(R0) and \n\t (((lo.edge=lout) and (hi.edge=hout)) or\n\t  ((lo.cardinality=infinite)and(hi.edge=hout)) or \n\t  ((hi.cardinality=infinite)and(lo.edge=lout))\n\t )\n      then Sr:=-1\n      else\n      if Sr=0 then\n         begin\n            AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n            MDiff:=M0+M1;\n\t    D:=GetReal(EDiff,MDiff);\n\t    if D < DCurr.RHalve[PC]*HalveThreshold \n\t    then {already narrowed enough dont bother} \n\t       Change:=true {otherwise can terminate too early}\n\t    else begin\n\t       DCurr.RHalve[PC]:=D;\n               NewOuter(1);\n               NewOuter(2);\n\t       OK:=false;{fail after both alternatives tried}\n\t    end\n         end\n   else{Sr=1,2}\n   if Adjacent(R0)\n   then begin{two adjacent points - needs special care}\n      if (hi.edge=hin) and (hi.cardinality=finite) then\n      begin\n         case Sr of\n\t 1:hi.edge:=hout;\n\t 2:begin lo:=hi; lo.edge:=lin;\n\t   end;\n\t end;\n\n         AtEnd;\n      end\n      else if (lo.edge=lin) and (lo.cardinality=finite) then \n      begin\n         case Sr of\n\t 1:begin hi:=lo; hi.edge:=hin;\n\t   end;\n\t 2:lo.edge:=lout;\n\t end;\n         AtEnd;\n      end else {cant be narrowed} Sr:=-1;\n\n   end{adjacent} else\n   begin\n      if (lo.mantissa < 0) and (hi.mantissa > 0) then\n      begin\n         MidM:=0; MidE:=0;\n      end else\n      begin\n         Ratio(lo,hi,ERat,MRat);\n         if MRat < 0 then MRat:=-MRat;\n         R:=GetReal(ERat,MRat);\n(*writeln(ERat,MRat,R);*)\n         AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n         MDiff:=M0+M1;\n         if (R > 4) or (R < 0.25) then\n         begin{divide hi by sqrt of ratio to get midpoint}\n\t    if hi.mantissa = 0 \n\t    then begin HiM:=Mininf div 10; HiE:=Minexp;\n\t    end else\n\t    begin HiM:=hi.mantissa; HiE:=hi.exp;\n\t    end;\n\t    if ERat < 0 then MidE:=HiE-((ERat-1) div 2)\n\t \t        else MidE:=HiE-(ERat div 2);\n\t    if odd(ERat) \n\t       then MidM:=trunc(HiM*(Maxinf div 100)/sqrt(MRat*10))\n\t       else MidM:=trunc(HiM*(Maxinf div 100)/sqrt(MRat));\n(*writeln(MidE,MidM);*)\n         end else\n         begin{take (hi+lo)/2 as midpoint}\n            MidM:=MDiff div 2 - M1;\n\t    MidE:=EDiff;\n         end;\n      end;\n      if MidM >= 0 then NormalizeDn(MidE,MidM,Mid,Dummy)\n      \t\t   else NormalizeUp(MidE,MidM,Mid,Dummy);\n      case Sr of\n      1:begin hi:=Mid; hi.edge:=hout;\n        end;\n      2:begin lo:=Mid; lo.edge:=lin;\n        end;\n      end;\n(*DumpInt(R0);writeln;*)\n      AtEnd;\n   end;{if Sr}\n\n   AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n   MDiff:=M0+M1;\n   DCurr.RHalve[OldPC]:=GetReal(EDiff,MDiff);\n\n end;{with}\nend;{exechalve}\n\nprocedure exechalves\n   (var PC:Loc0;var Sr:State;var R0:Int;var OK:boolean;var Change:boolean);\n{Reduce range of R0 (suceeds twice for two 'halves')}\n{Simple version thats averages exponents}\n\nvar EDiff,MDiff,ERat,MRat,MidE,MidM,M0,M1,HiM,HiE:integer;\n    Dummy:boolean;\n    Mid:Sreal;\n    R,D:real;\n    OldPC:Loc;\n   \n    procedure AtEnd;{What to do afer a successful halve}\n    begin  \n\tDCurr.LastHalve:=PC; PC:=0; Sr:=0;\n    end;\n\n    procedure Average(Lo,Hi:Sreal;var Exp:integer);\n    {compute average of exponents allowing for zero}\n    {infinities happen to work because of representation}\n    var Le,He:integer;\n    begin\n       if Lo.mantissa = 0 then\n\t  Le := Minexp\n       else\n\t  Le := Lo.exp;\n       if Hi.mantissa = 0 then\n\t  He := Minexp\n       else\n\t  He := Hi.exp;\n       Exp:= (He + Le - 2*Minexp) div 2 + Minexp;\nwriteln(Exp,Hi.exp,Lo.exp,Minexp,He,Le);\n    end;{Average}\n\nbegin{exechalves}\nOldPC:=PC;\nwith R0 do\n begin\n      if DCurr.LastHalve >= PC then {not our turn yet} else\n      if (lo.mantissa = hi.mantissa) and (lo.exp=hi.exp) and\n         (lo.edge=lin) and (hi.edge=hin)\n      then {single point cant be divided} Sr:=-1 \n      else\n      if Adjacent(R0) and \n\t (((lo.edge=lout) and (hi.edge=hout)) or\n\t  ((lo.cardinality=infinite)and(hi.edge=hout)) or \n\t  ((hi.cardinality=infinite)and(lo.edge=lout))\n\t )\n      then Sr:=-1\n      else\n      if Sr=0 then\n         begin\n            AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n            MDiff:=M0+M1;\n\t    D:=GetReal(EDiff,MDiff);\n\t    if D < DCurr.RHalve[PC]*HalveThreshold \n\t    then {already narrowed enough dont bother} \n\t       Change:=true {otherwise can terminate too early}\n\t    else begin\n\t       DCurr.RHalve[PC]:=D;\n               NewOuter(1);\n               NewOuter(2);\n\t       OK:=false;{fail after both alternatives tried}\n\t    end\n         end\n   else{Sr=1,2}\n   if Adjacent(R0)\n   then begin{two adjacent points - needs special care}\n      if (hi.edge=hin) and (hi.cardinality=finite) then\n      begin\n         case Sr of\n\t 1:hi.edge:=hout;\n\t 2:begin lo:=hi; lo.edge:=lin;\n\t   end;\n\t end;\n\n         AtEnd;\n      end\n      else if (lo.edge=lin) and (lo.cardinality=finite) then \n      begin\n         case Sr of\n\t 1:begin hi:=lo; hi.edge:=hin;\n\t   end;\n\t 2:lo.edge:=lout;\n\t end;\n         AtEnd;\n      end else {cant be narrowed} Sr:=-1;\n\n   end{adjacent} else\n   begin\n      if (lo.mantissa < 0) and (hi.mantissa > 0) then\n      begin\n         MidM:=0; MidE:=0;\n      end else\n      begin\n         Ratio(lo,hi,ERat,MRat);\n(*writeln(ERat,MRat,R);*)\n         AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n         MDiff:=M0+M1;\n         if (ERat > 1) or (ERat < -1) then\n         begin{Average exponents}\n\t    if hi.mantissa <= 0 \n\t    then begin MidM:= -Splitman;\n\t    end else\n\t    begin MidM:= Splitman; assert(lo.mantissa >= 0);\n\t    end;\n            Average(lo,hi,MidE);\n         end else\n         begin{take (hi+lo)/2 as midpoint}\n            MidM:=MDiff div 2 - M1;\n\t    MidE:=EDiff;\n         end;\n      end;\n      if MidM >= 0 then NormalizeDn(MidE,MidM,Mid,Dummy)\n      \t\t   else NormalizeUp(MidE,MidM,Mid,Dummy);\n      case Sr of\n      1:begin lo:=Mid; lo.edge:=lin;\n        end;\n      2:begin hi:=Mid; hi.edge:=hout;\n        end;\n      end;\n(*DumpInt(R0);writeln;*)\n      AtEnd;\n   end;{if Sr}\n\n   AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n   MDiff:=M0+M1;\n   DCurr.RHalve[OldPC]:=GetReal(EDiff,MDiff);\n\n end;{with}\nend;{exechalves}\n\nprocedure execlinh\n   (var PC:Loc0;var Sr:State;var R0:Int;var OK:boolean;var Change:boolean);\n{Reduce range of R0 (suceeds twice for two 'halves')}\n\nvar EDiff,MDiff,MidE,MidM,M0,M1:integer;\n    Dummy:boolean;\n    Mid:Sreal;\n    D:real;\n    OldPC:Loc;\n   \n    procedure AtEnd;{What to do afer a successful halve}\n    begin  \n\tDCurr.LastHalve:=PC; PC:=0; Sr:=0;\n    end;\n\nbegin{execlinh}\nOldPC:=PC;\nwith R0 do\n begin\n      if DCurr.LastHalve >= PC then {not our turn yet} else\n      if (lo.mantissa = hi.mantissa) and (lo.exp=hi.exp) and\n         (lo.edge=lin) and (hi.edge=hin)\n      then {single point cant be divided} Sr:=-1 \n      else\n      if Adjacent(R0) and \n\t (((lo.edge=lout) and (hi.edge=hout)) or\n\t  ((lo.cardinality=infinite)and(hi.edge=hout)) or \n\t  ((hi.cardinality=infinite)and(lo.edge=lout))\n\t )\n      then Sr:=-1\n      else\n      if Sr=0 then\n         begin\n            AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n            MDiff:=M0+M1;\n\t    D:=GetReal(EDiff,MDiff);\n\t    if D < DCurr.RHalve[PC]*HalveThreshold\n\t    then {already narrowed enough dont bother} \n\t       Change:=true {otherwise possible to terminate early}\n\t    else begin\n\t       DCurr.RHalve[PC]:=D;\n               NewOuter(1);\n               NewOuter(2);\n\t       OK:=false;{fail after both alternatives tried}\n\t    end\n         end\n   else{Sr=1,2}\n   if Adjacent(R0)\n   then begin{two adjacent points - needs special care}\n      if (hi.edge=hin) and (hi.cardinality=finite) then\n      begin\n         case Sr of\n\t 1:begin lo:=hi; lo.edge:=lin;\n\t   end;\n\t 2:hi.edge:=hout;\n\t end;\n         AtEnd;\n      end\n      else if (lo.edge=lin) and (lo.cardinality=finite) then \n      begin\n         case Sr of\n\t 1:lo.edge:=lout;\n\t 2:begin hi:=lo; hi.edge:=hin;\n\t   end;\n\t end;\n         AtEnd;\n      end else {cant be narrowed} Sr:=-1;\n   end{adjacent} else\n   begin\n      if (lo.mantissa < 0) and (hi.mantissa > 0) then\n      begin\n         MidM:=0; MidE:=0;\n      end else\n      begin\n         AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n         MDiff:=M0+M1;\n         MidM:=MDiff div 2 - M1;\n\t MidE:=EDiff;\n      end;\n      if MidM >= 0 then NormalizeDn(MidE,MidM,Mid,Dummy)\n      \t\t   else NormalizeUp(MidE,MidM,Mid,Dummy);\n      case Sr of\n      1:begin lo:=Mid; lo.edge:=lin;\n        end;\n      2:begin hi:=Mid; hi.edge:=hout;\n        end;\n      end;\n      \n      AtEnd;\n   end;{if Sr}\n\n   AlignUp(hi.exp,hi.mantissa,lo.exp,-lo.mantissa,EDiff,M0,M1,Dummy);\n   MDiff:=M0+M1;\n   DCurr.RHalve[OldPC]:=GetReal(EDiff,MDiff);\n\n end;{with}\nend;{execlinh}\n\nprocedure execmult(var Sr:State;T0,T1,T2:Int;var R0,R1,R2:Int;var OK:boolean);\nvar Q0,Q1,Q2:Int;\n\n   procedure multS(S0,S1:Sreal;var U,D:Sreal);\n   var M,E:integer;\n       Closed,Clu,Cld:boolean;\n   begin\n      M:=S0.mantissa*S1.mantissa;\n(*DumpS(S0);write('//');DumpS(S1);write(M);*)\n      Closed:=(S0.edge in [hin,lin]) and (S1.edge in [hin,lin]);\n      if ((S0.mantissa=0) and (S0.edge in [hin,lin])) or\n         ((S1.mantissa=0) and (S1.edge in [hin,lin]))\n      then Closed:=true; \n      Clu:=Closed; Cld:=Closed;\n      if (S0.cardinality=infinite) or (S1.cardinality=infinite) then\n      begin\n         if M < 0 then begin D:=MinusInfS; U:=MinusInfS; end else\n\t if M > 0 then begin D:=PlusInfS; U:=PlusInfS; end else\n\t begin {M=0} D:=ZeroS; U:=ZeroS; end;\n\t Closed:=((S0.cardinality=infinite)and(S0.edge in [hin,lin]))or\n\t         ((S1.cardinality=infinite)and(S1.edge in [hin,lin]));\n\t Clu:=Closed;Cld:=Closed;\n      end\n      else{everybody finite}\n      begin\n         E:=S0.exp+S1.exp-Digits;\n\t NormalizeUp(E,M,U,Clu);\n\t NormalizeDn(E,M,D,Cld);\n      end;\n      if Clu then U.edge:=hin else U.edge:=hout;\n      if Cld then D.edge:=lin else D.edge:=lout;      \n(*writeln(E);DumpS(U);write('::');DumpS(D);writeln;*)\n   end;{multS}\n         \n   procedure mult(Ta,Tb:Int;var R:Int);\n   var U0,U1,U2,U3,U4,U5,D0,D1,D2,D3,D4,D5:Sreal;\n   begin\n      multS(Ta.hi,Tb.hi,U0,D0);\n      multS(Ta.hi,Tb.lo,U1,D1);\n      multS(Ta.lo,Tb.hi,U2,D2);\n      multS(Ta.lo,Tb.lo,U3,D3);\n      maxS(U0,U1,U4);maxS(U2,U3,U5);maxS(U4,U5,R.hi);\n      minS(D0,D1,D4);minS(D2,D3,D5);minS(D4,D5,R.lo);\n   end;\n   \n   procedure InvS(S:Sreal;var W:Sreal);\n   var E,M,Rem:integer;\n       Closed:boolean;\n   begin\n      Closed:= S.edge in [hin,lin];\n      if (S.cardinality = infinite) then\n         W:=ZeroS\n      else\n      if (S.mantissa = 0) then\n         case S.edge of\n\t hin,hout:W:=MinusInfS;\n\t lin,lout:W:=PlusInfS;\n\t end\n      else\n      begin\n         M:=(Maxinf*Maxinf) div S.mantissa;\n\t Rem:=(Maxinf*Maxinf) mod S.mantissa;\n\t if Rem < 0 then halt;\n\t E:=-S.exp;\n\t case S.edge of\n\t lin,lout: begin \n\t     \t      if (Rem > 0) and (M > 0) then \n\t\t      begin M:=M+1;Closed:=false; \n\t\t      end;\n\t\t      NormalizeUp(E,M,W,Closed);\n\t           end;\n\t hin,hout: begin \n\t     \t      if (Rem > 0) and (M < 0) then \n\t\t      begin M:=M-1;Closed:=false;\n\t\t      end;\n\t\t      NormalizeDn(E,M,W,Closed);\n\t           end;\n\t end;\n      end;\n      \n      if Closed then\n         case S.edge of\n         hin:W.edge:=lin;\n         lin:W.edge:=hin;\n         end\n      else\n         case S.edge of\n\t hin,hout:W.edge:=lout;\n\t lin,lout:W.edge:=hout;\n\t end;\n\n      \n   end;{InvS}\t \n   \n   procedure Inv(T:Int;var X:Int;Pos:boolean);\n   {1/T positive -> X}\n   {If 1/T splits to two intervals then use Pos to select which to use}\n   begin\n      if (T.lo.mantissa < 0) and (T.hi.mantissa > 0) then\n         if (T.lo.cardinality=infinite) and (T.hi.cardinality=infinite) then\n\t    X:=All\n\t else if Pos then\n\t begin InvS(T.hi,X.lo); X.hi:=PlusInfS; X.hi.edge:=hin;\n\t end else \n\t begin InvS(T.lo,X.hi); X.lo:=MinusInfS; X.lo.edge:=lin;\n\t end\n      else\n      begin InvS(T.hi,X.lo); InvS(T.lo,X.hi);\n      end;\n   end;{Inv}\n   \n   procedure divi(Ta,Tb:Int;var R:Int);\n   var X:Int;\n   begin\n      if (Tb.lo.mantissa < 0) and (Tb.hi.mantissa > 0) then\n         if (Ta.lo.mantissa < 0) and (Ta.hi.mantissa > 0) then\n\t { need do nothing as R will be set to [inf,inf]}\n\t else\n\t \n         begin\n\t    {if both same sign get positive side of inverse}\n\t    {else get negative}\n\t    Inv(Tb,X,(Ta.hi.mantissa <= 0) = (R.hi.mantissa <= 0));\n\t    mult(Ta,X,R);\n\t end\n      else {Tb wont give split inverse}\n      begin\n         Inv(Tb,X,true);\n\t mult(Ta,X,R);\n      end;\n(*\nDumpInt(Tb);writeln('//');DumpInt(X);writeln;\nDumpInt(Ta);writeln('\\\\');DumpInt(R);writeln;\n*)\n   end;\n   \n   function Split(T:Int):boolean;\n   begin\n      Split:=(T.lo.mantissa<0) and (T.hi.mantissa>0) \n      \t      and ((T.lo.cardinality=finite) or (T.hi.cardinality=finite));\n   end;{Split}\n\n   function Zin(T:Int):boolean;\n   {check if 0 in range of interval}\n   begin\n      if (T.lo.mantissa > 0) then Zin:=false else\n      if (T.lo.mantissa = 0) then\n\t Zin:=(T.lo.edge=lin) else\n      if (T.hi.mantissa < 0) then Zin:=false else\n      if (T.hi.mantissa = 0) then\n         Zin:=(T.hi.edge=hin) \n      else\n         Zin:=true;\n   end;{Zin}\n   \nbegin{execmult}\n   case Sr of\n   0,10:begin\n        if T2=Zero then\n           if (T1=Zero) or (T0=Zero) then Sr:=-1\n           else\n\t   if not Zin(T0) then begin R1:=Zero; Sr:=-1; end else\n\t   if not Zin(T1) then begin R0:=Zero; Sr:=-1; end \n\t   else\n           begin\n              NewOuter(11); NewOuter(12);OK:=false;     \n           end\n        else if (Sr=0) then\n        begin\n\t   if (T0.hi.mantissa > 0) and (T0.lo.mantissa < 0) and Split(T1) \n           then  begin NewOuter(1); NewOuter(2); OK:=false; end\n           else if (T1.hi.mantissa > 0) and \n\t           (T1.lo.mantissa < 0) and Split(T0) \n                then  begin NewOuter(3); NewOuter(4); OK:=false; end;\n\tend;\n     end;\n   1:begin R0.lo:=ZeroS; R0.lo.edge:=lin; T0:=R0; Sr:=10;\n     end;\n   2:begin R0.hi:=ZeroS; R0.hi.edge:=hout; T0:=R0; Sr:=10;\n     end;\n   3:begin R1.lo:=ZeroS; R1.lo.edge:=lin; T1:=R1; Sr:=10;\n     end;\n   4:begin R1.hi:=ZeroS; R1.hi.edge:=hout; T1:=R1; Sr:=10;\n     end;\n   11:begin R0:=Zero; Sr:=-1;\n      end;\n   12:begin R1:=Zero; Sr:=-1;\n      end;\n   end;\n   \n   if OK and (Sr<>-1) then\n   begin\n      mult(T0,T1,Q2); Inter(R2,Q2,R2);\n      Q1:=R1; divi(T2,T0,Q1); Inter(R1,Q1,R1);\n      Q0:=R0; divi(T2,T1,Q0); Inter(R0,Q0,R0);\n      Sr:=10;\n   end;\nend;{execmult}\n\nprocedure execadd(T0,T1,T2:Int;var R0,R1,R2:Int);\n  procedure addhi(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{addhi}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=PlusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=hin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=hin));\n     end else\n     begin\n        Closed:=(S0.edge=hin)and(S1.edge=hin);\n        AlignUp(S0.exp,S0.mantissa,S1.exp,S1.mantissa,Exp,M0,M1,Closed);\n\tNormalizeUp(Exp,M0+M1,S2,Closed)\n     end;\n     if Closed then S2.edge:=hin else S2.edge:=hout;\n  end;\n  end;{addhi}\n  \n  procedure addlo(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{addlo}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=MinusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=lin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=lin));\n     end else\n     begin\n        Closed:=(S0.edge=lin)and(S1.edge=lin);\n        AlignUp(S0.exp,-S0.mantissa,S1.exp,-S1.mantissa,Exp,M0,M1,Closed);\n\tNormalizeUp(Exp,M0+M1,S2,Closed); mantissa:=-mantissa;\n     end;\n     if Closed then S2.edge:=lin else S2.edge:=lout;\n  end;\n  end;{addlo}\n  \n  procedure subhi(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{subhi}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=PlusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=hin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=lin));\n     end else\n     begin\n        Closed:=(S0.edge=hin)and(S1.edge=lin);\n        AlignUp(S0.exp,S0.mantissa,S1.exp,-S1.mantissa,Exp,M0,M1,Closed);\n\tNormalizeUp(Exp,M0+M1,S2,Closed);\n     end;\n     if Closed then S2.edge:=hin else S2.edge:=hout;\n  end;\n  end;{subhi}\n  \n  procedure sublo(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{sublo}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=MinusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=lin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=hin));\n     end else\n     begin\n        Closed:=(S0.edge=lin)and(S1.edge=hin);\n        AlignUp(S0.exp,-S0.mantissa,S1.exp,S1.mantissa,Exp,M0,M1,Closed);\n\tNormalizeUp(Exp,M0+M1,S2,Closed);mantissa:=-mantissa;\n     end;\n     if Closed then S2.edge:=lin else S2.edge:=lout;\n  end;\n  end;{sublo}\n  \nbegin{execadd}\n   addhi(T0.hi,T1.hi,R2.hi);\n   addlo(T0.lo,T1.lo,R2.lo);\n   \n   subhi(T2.hi,T0.lo,R1.hi);\n   sublo(T2.lo,T0.hi,R1.lo);\n   \n   subhi(T2.hi,T1.lo,R0.hi);\n   sublo(T2.lo,T1.hi,R0.lo);\nend;{execadd}\n\n\n\n\nprocedure execintgr(var Sr:State; var R:Int);\n      \n  procedure floor (var R : Sreal);\n  var sign , dum : boolean ;\n      E, M ,t    : integer ;\n  \n  begin\n     sign := false ;\n     with R do\n        begin\n           if (mantissa < 0) then\n              begin\n                 sign := true ;\n                 mantissa := - mantissa ;\n              end ;\n           if (exp <= 0) then\n              begin\n                 if sign or ((mantissa = 0) & (edge = hout)) then\n                    begin\n                       M := 1 ; \n                       sign := true ;\n                    end \n                 else\n                    M := 0 ;\n                 E := Digits ;\n                 NormalizeUp (E,M,R,dum) ;\n                 edge := hin ;\n              end \n        \n           else {exp >0}\n              if (exp <= Digits) then\n                 begin\n                    M := 1 ;\n                    E := exp ;\n                    while (E < Digits) do\n                       begin\n                          M := M * 10 ;\n                          E := E + 1 ;\n                       end ;\n                    t := mantissa mod M ;\n                    M := mantissa div M ;\n                    if (sign & ((edge = hout) or(t > 0))) then\n                       M := M + 1 ; \n                    if (not sign & (t = 0)) & (edge = hout) then\n                       M := M - 1 ;\n                    E := Digits ;\n                    NormalizeUp (E,M,R,dum) ;\n                    edge := hin ;\n                 end \n              else\n                 if ((edge = hout)&(exp = (Digits+1))) & (not sign & (mantissa = Splitman)) then\n                    begin\n                       mantissa := Maxman ;\n                       exp := Digits ;\n                       edge := hin ;\n                    end ;\n           if sign then\n              mantissa := - mantissa ;\n        end ;{with R}\n  end ; {floor} \n  procedure ceiling (var R : Sreal);\n  var sign , dum : boolean ;\n      E, M , t   : integer ;\n  \n  begin\n     sign := false ;\n     with R do\n        begin\n           if (mantissa < 0) then\n              begin\n                 sign := true ;\n                 mantissa := - mantissa ;\n              end ;\n           if (exp <= 0) then\n              begin\n                 if sign or ((mantissa = 0) & (edge = lin)) then\n                    M := 0 \n                 else\n                    M := 1 ;\n                 E := Digits ;\n                 NormalizeDn (E,M,R,dum) ;\n                 edge := lin ;\n              end \n        \n           else {exp > 0}\n              if (exp <= Digits) then\n                 begin\n                    M := 1 ;\n                    E := exp ;\n                    while (E < Digits) do\n                       begin\n                          M := M * 10 ;\n                          E := E + 1 ;\n                       end ;\n                    t := mantissa mod M ;\n                    M := mantissa div M ;\n                    if ( not sign & ((edge = lout) or(t > 0))) then\n                       M := M + 1 ;\n                    if (sign & (t = 0)) & (edge = lout) then\n                       M := M - 1 ;\n                    E := Digits ;\n                    NormalizeDn (E,M,R,dum) ;\n                    edge := lin ;\n                 end \n              else\n                 if ((edge = lout)&(exp = (Digits+1))) & (sign & (mantissa = Splitman)) then\n                    begin\n                       mantissa := Maxman ;\n                       exp := Digits ;\n                       edge := lin ;\n                    end ;\n           if sign then\n              mantissa := - mantissa ;\n        end ;{with R}\n  end ; {ceiling} \nbegin\n   with R do\n      begin\n(*         writeln ('IN EXECINTGR :') ;\n         writeln ;\n         writeln ('HI : ', hi.mantissa , hi.exp) ;\n         writeln ;\n         writeln ('LO : ', lo.mantissa , lo.exp) ;\n         writeln ;\n*)\n         if (hi.cardinality <> infinite) then\n            floor (hi) ;\n         if (lo.cardinality <> infinite) then\n            ceiling (lo) ;\n         if ((hi.mantissa = lo.mantissa) & (hi.exp = lo.exp)) then\n            Sr := - 1 ;\n(*         writeln ('OUT EXECINTGR :') ;\n         writeln ;\n         writeln ('HI : ', hi.mantissa , hi.exp) ;\n         writeln ;\n         writeln ('LO : ', lo.mantissa , lo.exp) ;\n         writeln ;\n*)\n      end ;\nend;{execintgr}\n\n\n\n\n\n\n\n\n\n\n\n\n\n  procedure execlb (R1 : Int ; var R : Int) ;\n  begin\n     R := R1 ;\n     with R.lo do\n        if (cardinality = infinite) then\n           R.hi := MinusFiniteS \n        else\n           R.hi := R.lo ;\n     R.hi.edge := hin ;\n     R.lo := MinusInfS ;\n  end ;\n\nprocedure execub (var X , Xd : Int) ;\nvar     Dum : Int ;     \n  begin\n     Xd := X ;\n     execadd (Xd, Dum, Zero, Dum, Xd, Dum) ;\n     execlb (Xd,Xd) ;\n     execadd (Xd, Dum, Zero, Dum, Xd, Dum) ;\n  end ;\n\nprocedure execcopy (R0 :Int; var R1:Int);\nbegin\n  R1:=R0;\nend;\n\nprocedure execless(var Sr:State; var R0,R1:Int);\n{R0 < R1}\nbegin\n   if Point(R0) or Point(R1) then Sr:=-1;\n   if gtS(R1.lo,R0.hi) then Sr:= -1 else\n   begin\n      R0.hi:=R1.hi;\n      R0.hi.edge:=hout;\n      R1.lo:=R0.lo;\n      R1.lo.edge:=lout;\n   end;\nend;{execless}\n\nprocedure execleq(var Sr:State; var R0,R1:Int);\n{R0 =< R1}\nbegin\n   if Point(R0) or Point(R1) then Sr:=-1;\n   if geS(R1.lo,R0.hi) then Sr:= -1 else\n   begin\n      R0.hi:=R1.hi;\n      R1.lo:=R0.lo;\n   end;\nend;{execleq}\n\nprocedure execnoteq(var Sr:State; var R0,R1:Int);\n{R0 <> R1}\nbegin\n   case Sr of\n   0:{nothing done yet}\n     begin\n     if gtS(R0.lo,R1.hi) or gtS(R1.lo,R0.hi) \n     then Sr:=-1 {no need to check in future}\n     else \n     begin\n        if Point(R0) then \n\tbegin\n\t   OuterExec(PC,DCurr,true,1,Counter,Level+1);\n\t   Sr:=2;\n\t   execless(Sr,R1,R0);\n\tend else\n\tif Point(R1) then\n\tbegin\n\t   OuterExec(PC,DCurr,true,2,Counter,Level+1);\n\t   Sr:=1;\n\t   execless(Sr,R0,R1);\n\tend;\n     end;\n     end;\n   1:execless(Sr,R0,R1);\n   2:execless(Sr,R1,R0);\n   end;\nend;{execnoteq}\n\nprocedure execsqrr(var R0,R1:Int);\nbegin{execsqrr}\nend;{execsqrr}\n\nprocedure execminr(var R0,R1,R2:Int);\nbegin{execminr}\nend;{execminr}\n\nprocedure execmaxr(var R0,R1,R2:Int);\n  procedure chmaxhi(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{chmaxhi}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=PlusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=hin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=hin));\n     end else\n     begin\n        Closed:=(S0.edge=hin)and(S1.edge=hin);\n        AlignUp(S0.exp,S0.mantissa,S1.exp,S1.mantissa,Exp,M0,M1,Closed);\n        if M1 > M0 then\n           M0 := M1 ;\n\tNormalizeUp(Exp,M0,S2,Closed)\n     end;\n     if Closed then S2.edge:=hin else S2.edge:=hout;\n  end;\n  end;{chmaxhi}\n  \n  procedure chmaxlo(S0,S1:Sreal; var S2:Sreal);\n  var Closed:boolean;  Exp,M0,M1:integer;\n  begin{chmaxlo}\n  with S2 do\n  begin\n     if (S0.cardinality=infinite)or(S1.cardinality=infinite) then\n     begin  \n        S2:=MinusInfS;\n        Closed:=((S0.cardinality=infinite)and(S0.edge=lin))or\n\t        ((S1.cardinality=infinite)and(S1.edge=lin));\n     end else\n     begin\n        Closed:=(S0.edge=lin)and(S1.edge=lin);\n        AlignUp(S0.exp,-S0.mantissa,S1.exp,-S1.mantissa,Exp,M0,M1,Closed);\n\tNormalizeUp(Exp,M0+M1,S2,Closed); mantissa:=-mantissa;\n     end;\n     if Closed then S2.edge:=lin else S2.edge:=lout;\n  end;\n  end;{addlo}\nbegin{execmaxr}\nend;{execmaxr}\n\nprocedure execmodu(var R0,R1,R2:Int);\nbegin{execmodu}\nend;{execmodu}\n\nprocedure execabsr(var R0,R1:Int);\nbegin{execabsr}\nend;{execabsr}\n\nprocedure exectrig(var R0,R1,R2:Int);\nbegin{exectrig}\nend;{exectrig}\n\nprocedure execexpr(var R0,R1:Int);\nbegin{execexpr}\nend;{execexpr}\n\n\nfunction Exec(I:Instr;var PC:Loc0;var Change:boolean):boolean;\nvar\n\tR:array[0..Par] of Int;  {working registers}\n\tSr:State;  {State register}\n\tP:0..Par;\n\tE:boolean;\n\tNewPC:Loc0;\n\tTraceChange:boolean;\n\n   procedure WritePars; {write out list of parameter registers for curr ins}\n   begin\n   with I do\n   begin\n      write(PC:2,Code:5,Sr:3);\n      for P := 0 to Par do\n         if Pars[P] <> 0 then \n\t begin\n\t    write(Pars[P]:3);\n\t    WriteInt(R[P]);\n\t end;\n      writeln;\n   end;\n   end;{WritePars}\n\nbegin{Exec}\nwith I,DCurr do\nbegin\n   Counter:=Counter+1;\n   {get parameters}\n   for P := 0 to ParN[Code] do \n   begin R[P]:=D[Pars[P]]; assert(CheckInt(R[P]));\n   end;\n   \n   Sr:=S[PC];\n   if Debug >= trace then  begin write(' '); WritePars; end;\n   E:=true;\n   Change:=false;\n   NewPC:=PC;\n\n{!!}case Code of \n   print: execprint(PC,Pars[0],R[0]);\n   pr   : execpr(Sr,Pars[0]);\n   tr   : exectr(Sr,Pars[0]);\n   soln : execsoln(Sr,Pars[0]);\n   readr: execreadr(Sr,R[0]);\n   halve: exechalve(NewPC,Sr,R[0],E,Change);\n   halves:exechalves(NewPC,Sr,R[0],E,Change);\n   linh : execlinh(NewPC,Sr,R[0],E,Change);\n   mult : execmult (Sr,R[0],R[1],R[2],R[0],R[1],R[2],E);\n   add  : execadd  (R[0],R[1],R[2],R[0],R[1],R[2]);\n   intgr: execintgr(Sr,R[0]);\n   less : execless (Sr,R[0],R[1]);\n   leq  : execleq  (Sr,R[0],R[1]);\n   noteq: execnoteq(Sr,R[0],R[1]);\n   sqrr : execsqrr(R[0],R[1]);\n   minr : execminr(R[0],R[1],R[2]);\n   maxr : execmaxr(R[0],R[1],R[2]);\n   modu : execmodu(R[0],R[1],R[2]);\n   absr : execabsr(R[0],R[1]);\n   trig : exectrig(R[0],R[1],R[2]);\n   expr : execexpr(R[0],R[1]);\n   lb   : execlb (R[0],R[1]);\n   ub   : execub (R[0],R[1]);\n   copy : execcopy(R[0],R[1]);\n   end;\n\n   TraceChange:=false;\n   AllPoints:=true;\n   for P := 0 to ParN[Code] do\n   with D[Pars[P]] do\n   begin\n      if DF.PF[Pars[P]]=PPrint then TraceChange:=true;\n      assert(CheckLo(R[P].lo));assert(CheckHi(R[P].hi));\n      if ParIntersect [Code] then\n         begin\n            maxS(R[P].lo,lo,R[P].lo);\n            minS(R[P].hi,hi,R[P].hi);\n         end ;\n      if gtS(R[P].lo,R[P].hi) then \n      begin E:=false; assert(CheckLo(R[P].lo));assert(CheckHi(R[P].hi));\n      end\n      else begin\n         if D[Pars[P]] <> R[P] then \n         begin \n\t    D[Pars[P]] := R[P]; \n\t    Change:=true;\n\t    if DF.PF[Pars[P]] = PTrace then TraceChange:=true;\n         end;\n         AllPoints:=AllPoints and Point(R[P]);\n         assert(CheckInt(R[P])); assert(CheckInt(D[Pars[P]]));\n      end;\n   end;\n\n   if (Debug=activity) and TraceChange then writeln;\n   if (Debug >=activity) then \n   begin if Change then write('*') else write ('.');\n   end;\n   Exec:=E;\n   if E then\n   begin\n      if AllPoints then Sr:=-1; \n      if (Sr <> S[PC]) then begin S[PC]:=Sr; Change:=true; end;\n      if (Debug=activity) and TraceChange then WritePars;\n      if Debug >= post then  WritePars;\n      if Debug = dump then DumpMem(DCurr);\n   end else \n   if Debug >= activity then \n   begin writeln('FAILED'); write(' '); WritePars; \n   end;\n   PC:=NewPC;\nend;\nend;{Exec}\n\nbegin{OuterExec}\n   writeln;\n   writeln(Level:2,'Entering  Count:',OldCounter:0); OldCounter:=0;\n   Counter:=0;\n   Fail:=false;\n   if First <> 0 then DCurr.S[PC]:=First;\n   {Run simulation until failure or nothing further to be done}\n   repeat\n        if (PC = End) then \n   \tbegin PC:=1; Change:=false; DCurr.LastHalve:=1; end;\n   \twhile (PC < End) and not Fail and not GlobalEnd do\n   \twith I[PC] do\n   \tbegin\n   \t   if DCurr.S[PC] > -1 then\n\t   begin Fail:=not Exec(I[PC],PC,LocalChange); \n\t      Change:=Change or LocalChange;\n\t   end;\n   \t   PC:=PC+1;\n   \tend;\n   until Fail or (not Change) or GlobalEnd;\n   writeln;\n   write(Level:2,'Exiting  Count:',Counter:0);\n   if not (Fail or GlobalEnd) then\n   begin \n      if (Cut=once) then GlobalEnd:=true;\n      writeln('SOLUTION');\n      WriteMem(DCurr);\n   end \n   else writeln;\nend;{OuterExec}\n\n\nprocedure Clear;\nvar tL:Loc; \n    tD,tDF:Ptr; \n    tPar:1..Par; \n    DI:1..Digits;\n    J:1..Maxexp;\n    MaxDiff:real;\nbegin\n   Shift[0]:=1;\n   for DI:= 1 to Digits do Shift[DI]:=Shift[DI-1]*10;\n\n   with PlusInfS do\n   begin\n      edge:=hin;cardinality:=infinite;mantissa:=Maxinf;\n      exp:=Maxexp;\n   end;\n   with MinusInfS do\n   begin\n      edge:=lin;cardinality:=infinite;mantissa:=Mininf;\n      exp:=Maxexp;\n   end;\n   with PlusFiniteS do\n   begin\n      edge:=hin;cardinality:=finite;mantissa:=Maxman;\n      exp:=Maxexp;\n   end;\n   with MinusFiniteS do\n   begin\n      edge:=lin;cardinality:=finite;mantissa:=Minman;\n      exp:=Maxexp;\n   end;\n   with ZeroS do\n   begin exp:=0;mantissa:=0;edge:=hin;cardinality:=finite;\n   end;\n   with PlusSmallS do\n   begin exp:=Minexp;mantissa:=Maxinf div 10; cardinality:=finite;\n   end;\n   with MinusSmallS do\n   begin exp:=Minexp;mantissa:=Mininf div 10; cardinality:=finite;\n   end;\n   \n\n\n   with Zero do\n   begin lo:=ZeroS;lo.edge:=lin; hi:=ZeroS;hi.edge:=hin;\n   end;\n   with All do\n   begin hi:=PlusInfS; lo:=MinusInfS;\n   end;\n   with AllFinite do\n   begin lo:=MinusFiniteS; hi:=PlusFiniteS;\n   end;\n\n   with DF do\n   begin\n        for tDF:= 1 to DMem do PF[tDF]:=PNull;\n   end;\n  \n   with DInit do\n   begin\n\tfor tD:= 1 to DMem do\n\t   if Verifiable then D[tD]:=AllFinite\n\t   \t\t else D[tD]:=All;\n\tLastHalve:=1;\n\n\tMaxDiff:=2;\n\tfor J:=1 to Maxexp do MaxDiff:=MaxDiff*10;\n\t\n\tfor tL := 1 to IMem do\n\tbegin\n\t   RHalve[tL]:=MaxDiff;\n\t   S[tL]:=0;\n\t   with I[tL] do\n\t   for tPar := 1 to Par do\n\t\tPars[tPar]:=0;\n\tend;\n\n{!!}\tParN[print]:=0;\n        ParN[pr]:=0;\n        ParN[tr]:=0;\n        ParN[soln]:=0;\n\tParN[halve]:=0;\n\tParN[halves]:=0;\n\tParN[readr]:=0;\n\tParN[linh]:=0;\n\tParN[mult]:=2;\n\tParN[add]:=2;\n\tParN[intgr]:= 0;\n\tParN[less]:= 1;\n\tParN[leq]:= 1;\n\tParN[noteq]:= 1;\n\tParN[sqrr]:= 1;\n\tParN[minr]:=2;\n\tParN[maxr]:=2;\n\tParN[modu]:= 1;\n\tParN[absr]:= 1;\n\tParN[trig]:=2;\n\tParN[expr]:= 1;\n        ParN[lb]:= 1;\n        ParN[ub]:= 1; \n        ParN[copy]:= 1; \n\tParN[stop]:=-1;\n{!!}\tParIntersect[print]:= true;\n        ParIntersect[pr]:= true;\n        ParIntersect[tr]:= true;\n        ParIntersect[soln]:= true;\n\tParIntersect[halve]:=true;\n\tParIntersect[halves]:=true;\n\tParIntersect[readr]:=true;\n\tParIntersect[linh]:=true;\n\tParIntersect[mult]:=true;\n\tParIntersect[add]:=true;\n\tParIntersect[intgr]:= true;\n\tParIntersect[less]:= true;\n\tParIntersect[leq]:= true;\n\tParIntersect[noteq]:= true;\n\tParIntersect[sqrr]:= true;\n\tParIntersect[minr]:= true;\n\tParIntersect[maxr]:= true;\n\tParIntersect[modu]:= true;\n\tParIntersect[absr]:= true;\n\tParIntersect[trig]:= true;\n\tParIntersect[expr]:= true;\n        ParIntersect[lb]:= false;\n        ParIntersect[ub]:= false;\n\tParIntersect[stop]:= true;\n\tParIntersect[copy]:= true;\n   end;\nend;{Clear}\n\t\nprocedure ReadInstr;\nvar\n\ttP:0..Par;\n\tOp:OpType;\n\ttDat:Ptr;\nbegin\n   with DInit do\n   begin\n\tEnd:=1;\n\tMaxDMem:=0;\n\trepeat\n\t   with I[End] do\n\t   begin\n\t      read(Op);\n\t      Code:=Op;\n\t      for tP := 0 to ParN[Op] do with I[End] do \n\t      begin\n\t         read(tDat); Pars[tP]:=tDat;\n\t\t if tDat>MaxDMem then MaxDMem:=tDat;\n\t\t if MaxDMem > DMem then \n\t\t begin writeln('Too many variables');halt;\n\t\t end;\n\t      end;\n\t      readln;\n\t   end;\n\t   End:=End+1; \n\t   if End >= IMem then begin writeln('Too many instructions');halt;end;\n\tuntil Op = stop;\n\tEnd:=End-1;\n\n\twhile not eof do {read constant values for memory locations}\n\tbegin\n\n   \t   read(tDat);\n\t   if tDat > DMem then writeln('Variable out of range',tDat,DMem);\n\t   ReadInt(D[tDat]);\n\t   readln;\n\tend;\n   end;\nend;{ReadInstr}\n\nbegin\n\tGlobalEnd:=false;\n\tInitialOptions;\n\treadln(Cut);\n\twriteln(Cut);\n\tClear;\n\t{ set to initial values, read instructions}\n\tReadInstr;\n\tif Debug = dump then begin DumpTables; DumpMem(DInit); end;\n\tif Debug >= activity then WriteMem(DInit);\n\tDummy:=0;\n\tOuterExec(1,DInit,false,0,Dummy,0);\n\tif Debug = dump then DumpMem(DInit);\nend.\n"
  },
  {
    "path": "testdata/canterbury/alice29.txt",
    "content": "\n\n\n\n                ALICE'S ADVENTURES IN WONDERLAND\n\n                          Lewis Carroll\n\n               THE MILLENNIUM FULCRUM EDITION 2.9\n\n\n\n\n                            CHAPTER I\n\n                      Down the Rabbit-Hole\n\n\n  Alice was beginning to get very tired of sitting by her sister\non the bank, and of having nothing to do:  once or twice she had\npeeped into the book her sister was reading, but it had no\npictures or conversations in it, `and what is the use of a book,'\nthought Alice `without pictures or conversation?'\n\n  So she was considering in her own mind (as well as she could,\nfor the hot day made her feel very sleepy and stupid), whether\nthe pleasure of making a daisy-chain would be worth the trouble\nof getting up and picking the daisies, when suddenly a White\nRabbit with pink eyes ran close by her.\n\n  There was nothing so VERY remarkable in that; nor did Alice\nthink it so VERY much out of the way to hear the Rabbit say to\nitself, `Oh dear!  Oh dear!  I shall be late!'  (when she thought\nit over afterwards, it occurred to her that she ought to have\nwondered at this, but at the time it all seemed quite natural);\nbut when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT-\nPOCKET, and looked at it, and then hurried on, Alice started to\nher feet, for it flashed across her mind that she had never\nbefore seen a rabbit with either a waistcoat-pocket, or a watch to\ntake out of it, and burning with curiosity, she ran across the\nfield after it, and fortunately was just in time to see it pop\ndown a large rabbit-hole under the hedge.\n\n  In another moment down went Alice after it, never once\nconsidering how in the world she was to get out again.\n\n  The rabbit-hole went straight on like a tunnel for some way,\nand then dipped suddenly down, so suddenly that Alice had not a\nmoment to think about stopping herself before she found herself\nfalling down a very deep well.\n\n  Either the well was very deep, or she fell very slowly, for she\nhad plenty of time as she went down to look about her and to\nwonder what was going to happen next.  First, she tried to look\ndown and make out what she was coming to, but it was too dark to\nsee anything; then she looked at the sides of the well, and\nnoticed that they were filled with cupboards and book-shelves;\nhere and there she saw maps and pictures hung upon pegs.  She\ntook down a jar from one of the shelves as she passed; it was\nlabelled `ORANGE MARMALADE', but to her great disappointment it\nwas empty:  she did not like to drop the jar for fear of killing\nsomebody, so managed to put it into one of the cupboards as she\nfell past it.\n\n  `Well!' thought Alice to herself, `after such a fall as this, I\nshall think nothing of tumbling down stairs!  How brave they'll\nall think me at home!  Why, I wouldn't say anything about it,\neven if I fell off the top of the house!' (Which was very likely\ntrue.)\n\n  Down, down, down.  Would the fall NEVER come to an end!  `I\nwonder how many miles I've fallen by this time?' she said aloud.\n`I must be getting somewhere near the centre of the earth.  Let\nme see:  that would be four thousand miles down, I think--' (for,\nyou see, Alice had learnt several things of this sort in her\nlessons in the schoolroom, and though this was not a VERY good\nopportunity for showing off her knowledge, as there was no one to\nlisten to her, still it was good practice to say it over) `--yes,\nthat's about the right distance--but then I wonder what Latitude\nor Longitude I've got to?'  (Alice had no idea what Latitude was,\nor Longitude either, but thought they were nice grand words to\nsay.)\n\n  Presently she began again.  `I wonder if I shall fall right\nTHROUGH the earth!  How funny it'll seem to come out among the\npeople that walk with their heads downward!  The Antipathies, I\nthink--' (she was rather glad there WAS no one listening, this\ntime, as it didn't sound at all the right word) `--but I shall\nhave to ask them what the name of the country is, you know.\nPlease, Ma'am, is this New Zealand or Australia?' (and she tried\nto curtsey as she spoke--fancy CURTSEYING as you're falling\nthrough the air!  Do you think you could manage it?)  `And what\nan ignorant little girl she'll think me for asking!  No, it'll\nnever do to ask:  perhaps I shall see it written up somewhere.'\n\n  Down, down, down.  There was nothing else to do, so Alice soon\nbegan talking again.  `Dinah'll miss me very much to-night, I\nshould think!'  (Dinah was the cat.)  `I hope they'll remember\nher saucer of milk at tea-time.  Dinah my dear!  I wish you were\ndown here with me!  There are no mice in the air, I'm afraid, but\nyou might catch a bat, and that's very like a mouse, you know.\nBut do cats eat bats, I wonder?'  And here Alice began to get\nrather sleepy, and went on saying to herself, in a dreamy sort of\nway, `Do cats eat bats?  Do cats eat bats?' and sometimes, `Do\nbats eat cats?' for, you see, as she couldn't answer either\nquestion, it didn't much matter which way she put it.  She felt\nthat she was dozing off, and had just begun to dream that she\nwas walking hand in hand with Dinah, and saying to her very\nearnestly, `Now, Dinah, tell me the truth:  did you ever eat a\nbat?' when suddenly, thump! thump! down she came upon a heap of\nsticks and dry leaves, and the fall was over.\n\n  Alice was not a bit hurt, and she jumped up on to her feet in a\nmoment:  she looked up, but it was all dark overhead; before her\nwas another long passage, and the White Rabbit was still in\nsight, hurrying down it.  There was not a moment to be lost:\naway went Alice like the wind, and was just in time to hear it\nsay, as it turned a corner, `Oh my ears and whiskers, how late\nit's getting!'  She was close behind it when she turned the\ncorner, but the Rabbit was no longer to be seen:  she found\nherself in a long, low hall, which was lit up by a row of lamps\nhanging from the roof.\n\n  There were doors all round the hall, but they were all locked;\nand when Alice had been all the way down one side and up the\nother, trying every door, she walked sadly down the middle,\nwondering how she was ever to get out again.\n\n  Suddenly she came upon a little three-legged table, all made of\nsolid glass; there was nothing on it except a tiny golden key,\nand Alice's first thought was that it might belong to one of the\ndoors of the hall; but, alas! either the locks were too large, or\nthe key was too small, but at any rate it would not open any of\nthem.  However, on the second time round, she came upon a low\ncurtain she had not noticed before, and behind it was a little\ndoor about fifteen inches high:  she tried the little golden key\nin the lock, and to her great delight it fitted!\n\n  Alice opened the door and found that it led into a small\npassage, not much larger than a rat-hole:  she knelt down and\nlooked along the passage into the loveliest garden you ever saw.\nHow she longed to get out of that dark hall, and wander about\namong those beds of bright flowers and those cool fountains, but\nshe could not even get her head though the doorway; `and even if\nmy head would go through,' thought poor Alice, `it would be of\nvery little use without my shoulders.  Oh, how I wish\nI could shut up like a telescope!  I think I could, if I only\nknow how to begin.'  For, you see, so many out-of-the-way things\nhad happened lately, that Alice had begun to think that very few\nthings indeed were really impossible.\n\n  There seemed to be no use in waiting by the little door, so she\nwent back to the table, half hoping she might find another key on\nit, or at any rate a book of rules for shutting people up like\ntelescopes:  this time she found a little bottle on it, (`which\ncertainly was not here before,' said Alice,) and round the neck\nof the bottle was a paper label, with the words `DRINK ME'\nbeautifully printed on it in large letters.\n\n  It was all very well to say `Drink me,' but the wise little\nAlice was not going to do THAT in a hurry.  `No, I'll look\nfirst,' she said, `and see whether it's marked \"poison\" or not';\nfor she had read several nice little histories about children who\nhad got burnt, and eaten up by wild beasts and other unpleasant\nthings, all because they WOULD not remember the simple rules\ntheir friends had taught them:  such as, that a red-hot poker\nwill burn you if you hold it too long; and that if you cut your\nfinger VERY deeply with a knife, it usually bleeds; and she had\nnever forgotten that, if you drink much from a bottle marked\n`poison,' it is almost certain to disagree with you, sooner or\nlater.\n\n  However, this bottle was NOT marked `poison,' so Alice ventured\nto taste it, and finding it very nice, (it had, in fact, a sort\nof mixed flavour of cherry-tart, custard, pine-apple, roast\nturkey, toffee, and hot buttered toast,) she very soon finished\nit off.\n\n     *       *       *       *       *       *       *\n\n         *       *       *       *       *       *\n\n     *       *       *       *       *       *       *\n\n  `What a curious feeling!' said Alice; `I must be shutting up\nlike a telescope.'\n\n  And so it was indeed:  she was now only ten inches high, and\nher face brightened up at the thought that she was now the right\nsize for going though the little door into that lovely garden.\nFirst, however, she waited for a few minutes to see if she was\ngoing to shrink any further:  she felt a little nervous about\nthis; `for it might end, you know,' said Alice to herself, `in my\ngoing out altogether, like a candle.  I wonder what I should be\nlike then?'  And she tried to fancy what the flame of a candle is\nlike after the candle is blown out, for she could not remember\never having seen such a thing.\n\n  After a while, finding that nothing more happened, she decided\non going into the garden at once; but, alas for poor Alice! when\nshe got to the door, she found he had forgotten the little golden\nkey, and when she went back to the table for it, she found she\ncould not possibly reach it:  she could see it quite plainly\nthrough the glass, and she tried her best to climb up one of the\nlegs of the table, but it was too slippery; and when she had\ntired herself out with trying, the poor little thing sat down and\ncried.\n\n  `Come, there's no use in crying like that!' said Alice to\nherself, rather sharply; `I advise you to leave off this minute!'\nShe generally gave herself very good advice, (though she very\nseldom followed it), and sometimes she scolded herself so\nseverely as to bring tears into her eyes; and once she remembered\ntrying to box her own ears for having cheated herself in a game\nof croquet she was playing against herself, for this curious\nchild was very fond of pretending to be two people.  `But it's no\nuse now,' thought poor Alice, `to pretend to be two people!  Why,\nthere's hardly enough of me left to make ONE respectable\nperson!'\n\n  Soon her eye fell on a little glass box that was lying under\nthe table:  she opened it, and found in it a very small cake, on\nwhich the words `EAT ME' were beautifully marked in currants.\n`Well, I'll eat it,' said Alice, `and if it makes me grow larger,\nI can reach the key; and if it makes me grow smaller, I can creep\nunder the door; so either way I'll get into the garden, and I\ndon't care which happens!'\n\n  She ate a little bit, and said anxiously to herself, `Which\nway?  Which way?', holding her hand on the top of her head to\nfeel which way it was growing, and she was quite surprised to\nfind that she remained the same size:  to be sure, this generally\nhappens when one eats cake, but Alice had got so much into the\nway of expecting nothing but out-of-the-way things to happen,\nthat it seemed quite dull and stupid for life to go on in the\ncommon way.\n\n  So she set to work, and very soon finished off the cake.\n\n     *       *       *       *       *       *       *\n\n         *       *       *       *       *       *\n\n     *       *       *       *       *       *       *\n\n\n\n\n                           CHAPTER II\n\n                        The Pool of Tears\n\n\n  `Curiouser and curiouser!' cried Alice (she was so much\nsurprised, that for the moment she quite forgot how to speak good\nEnglish); `now I'm opening out like the largest telescope that\never was!  Good-bye, feet!' (for when she looked down at her\nfeet, they seemed to be almost out of sight, they were getting so\nfar off).  `Oh, my poor little feet, I wonder who will put on\nyour shoes and stockings for you now, dears?  I'm sure _I_ shan't\nbe able!  I shall be a great deal too far off to trouble myself\nabout you:  you must manage the best way you can; --but I must be\nkind to them,' thought Alice, `or perhaps they won't walk the\nway I want to go!  Let me see:  I'll give them a new pair of\nboots every Christmas.'\n\n  And she went on planning to herself how she would manage it.\n`They must go by the carrier,' she thought; `and how funny it'll\nseem, sending presents to one's own feet!  And how odd the\ndirections will look!\n\n            ALICE'S RIGHT FOOT, ESQ.\n                HEARTHRUG,\n                    NEAR THE FENDER,\n                        (WITH ALICE'S LOVE).\n\nOh dear, what nonsense I'm talking!'\n\n  Just then her head struck against the roof of the hall:  in\nfact she was now more than nine feet high, and she at once took\nup the little golden key and hurried off to the garden door.\n\n  Poor Alice!  It was as much as she could do, lying down on one\nside, to look through into the garden with one eye; but to get\nthrough was more hopeless than ever:  she sat down and began to\ncry again.\n\n  `You ought to be ashamed of yourself,' said Alice, `a great\ngirl like you,' (she might well say this), `to go on crying in\nthis way!  Stop this moment, I tell you!'  But she went on all\nthe same, shedding gallons of tears, until there was a large pool\nall round her, about four inches deep and reaching half down the\nhall.\n\n  After a time she heard a little pattering of feet in the\ndistance, and she hastily dried her eyes to see what was coming.\nIt was the White Rabbit returning, splendidly dressed, with a\npair of white kid gloves in one hand and a large fan in the\nother:  he came trotting along in a great hurry, muttering to\nhimself as he came, `Oh! the Duchess, the Duchess! Oh! won't she\nbe savage if I've kept her waiting!'  Alice felt so desperate\nthat she was ready to ask help of any one; so, when the Rabbit\ncame near her, she began, in a low, timid voice, `If you please,\nsir--'  The Rabbit started violently, dropped the white kid\ngloves and the fan, and skurried away into the darkness as hard\nas he could go.\n\n  Alice took up the fan and gloves, and, as the hall was very\nhot, she kept fanning herself all the time she went on talking:\n`Dear, dear!  How queer everything is to-day!  And yesterday\nthings went on just as usual.  I wonder if I've been changed in\nthe night?  Let me think:  was I the same when I got up this\nmorning?  I almost think I can remember feeling a little\ndifferent.  But if I'm not the same, the next question is, Who in\nthe world am I?  Ah, THAT'S the great puzzle!'  And she began\nthinking over all the children she knew that were of the same age\nas herself, to see if she could have been changed for any of\nthem.\n\n  `I'm sure I'm not Ada,' she said, `for her hair goes in such\nlong ringlets, and mine doesn't go in ringlets at all; and I'm\nsure I can't be Mabel, for I know all sorts of things, and she,\noh! she knows such a very little!  Besides, SHE'S she, and I'm I,\nand--oh dear, how puzzling it all is!  I'll try if I know all the\nthings I used to know.  Let me see:  four times five is twelve,\nand four times six is thirteen, and four times seven is--oh dear!\nI shall never get to twenty at that rate!  However, the\nMultiplication Table doesn't signify:  let's try Geography.\nLondon is the capital of Paris, and Paris is the capital of Rome,\nand Rome--no, THAT'S all wrong, I'm certain!  I must have been\nchanged for Mabel!  I'll try and say \"How doth the little--\"'\nand she crossed her hands on her lap as if she were saying lessons,\nand began to repeat it, but her voice sounded hoarse and\nstrange, and the words did not come the same as they used to do:--\n\n            `How doth the little crocodile\n              Improve his shining tail,\n            And pour the waters of the Nile\n              On every golden scale!\n\n            `How cheerfully he seems to grin,\n              How neatly spread his claws,\n            And welcome little fishes in\n              With gently smiling jaws!'\n\n  `I'm sure those are not the right words,' said poor Alice, and\nher eyes filled with tears again as she went on, `I must be Mabel\nafter all, and I shall have to go and live in that poky little\nhouse, and have next to no toys to play with, and oh! ever so\nmany lessons to learn!  No, I've made up my mind about it; if I'm\nMabel, I'll stay down here!  It'll be no use their putting their\nheads down and saying \"Come up again, dear!\"  I shall only look\nup and say \"Who am I then?  Tell me that first, and then, if I\nlike being that person, I'll come up:  if not, I'll stay down\nhere till I'm somebody else\"--but, oh dear!' cried Alice, with a\nsudden burst of tears, `I do wish they WOULD put their heads\ndown!  I am so VERY tired of being all alone here!'\n\n  As she said this she looked down at her hands, and was\nsurprised to see that she had put on one of the Rabbit's little\nwhite kid gloves while she was talking.  `How CAN I have done\nthat?' she thought.  `I must be growing small again.'  She got up\nand went to the table to measure herself by it, and found that,\nas nearly as she could guess, she was now about two feet high,\nand was going on shrinking rapidly:  she soon found out that the\ncause of this was the fan she was holding, and she dropped it\nhastily, just in time to avoid shrinking away altogether.\n\n`That WAS a narrow escape!' said Alice, a good deal frightened at\nthe sudden change, but very glad to find herself still in\nexistence; `and now for the garden!' and she ran with all speed\nback to the little door:  but, alas! the little door was shut\nagain, and the little golden key was lying on the glass table as\nbefore, `and things are worse than ever,' thought the poor child,\n`for I never was so small as this before, never!  And I declare\nit's too bad, that it is!'\n\n  As she said these words her foot slipped, and in another\nmoment, splash! she was up to her chin in salt water.  He first\nidea was that she had somehow fallen into the sea, `and in that\ncase I can go back by railway,' she said to herself.  (Alice had\nbeen to the seaside once in her life, and had come to the general\nconclusion, that wherever you go to on the English coast you find\na number of bathing machines in the sea, some children digging in\nthe sand with wooden spades, then a row of lodging houses, and\nbehind them a railway station.)  However, she soon made out that\nshe was in the pool of tears which she had wept when she was nine\nfeet high.\n\n  `I wish I hadn't cried so much!' said Alice, as she swam about,\ntrying to find her way out.  `I shall be punished for it now, I\nsuppose, by being drowned in my own tears!  That WILL be a queer\nthing, to be sure!  However, everything is queer to-day.'\n\n  Just then she heard something splashing about in the pool a\nlittle way off, and she swam nearer to make out what it was:  at\nfirst she thought it must be a walrus or hippopotamus, but then\nshe remembered how small she was now, and she soon made out that\nit was only a mouse that had slipped in like herself.\n\n  `Would it be of any use, now,' thought Alice, `to speak to this\nmouse?  Everything is so out-of-the-way down here, that I should\nthink very likely it can talk:  at any rate, there's no harm in\ntrying.'  So she began:  `O Mouse, do you know the way out of\nthis pool?  I am very tired of swimming about here, O Mouse!'\n(Alice thought this must be the right way of speaking to a mouse:\nshe had never done such a thing before, but she remembered having\nseen in her brother's Latin Grammar, `A mouse--of a mouse--to a\nmouse--a mouse--O mouse!'  The Mouse looked at her rather\ninquisitively, and seemed to her to wink with one of its little\neyes, but it said nothing.\n\n  `Perhaps it doesn't understand English,' thought Alice; `I\ndaresay it's a French mouse, come over with William the\nConqueror.'  (For, with all her knowledge of history, Alice had\nno very clear notion how long ago anything had happened.)  So she\nbegan again:  `Ou est ma chatte?' which was the first sentence in\nher French lesson-book.  The Mouse gave a sudden leap out of the\nwater, and seemed to quiver all over with fright.  `Oh, I beg\nyour pardon!' cried Alice hastily, afraid that she had hurt the\npoor animal's feelings.  `I quite forgot you didn't like cats.'\n\n  `Not like cats!' cried the Mouse, in a shrill, passionate\nvoice.  `Would YOU like cats if you were me?'\n\n  `Well, perhaps not,' said Alice in a soothing tone:  `don't be\nangry about it.  And yet I wish I could show you our cat Dinah:\nI think you'd take a fancy to cats if you could only see her.\nShe is such a dear quiet thing,' Alice went on, half to herself,\nas she swam lazily about in the pool, `and she sits purring so\nnicely by the fire, licking her paws and washing her face--and\nshe is such a nice soft thing to nurse--and she's such a capital\none for catching mice--oh, I beg your pardon!' cried Alice again,\nfor this time the Mouse was bristling all over, and she felt\ncertain it must be really offended.  `We won't talk about her any\nmore if you'd rather not.'\n\n  `We indeed!' cried the Mouse, who was trembling down to the end\nof his tail.  `As if I would talk on such a subject!  Our family\nalways HATED cats:  nasty, low, vulgar things!  Don't let me hear\nthe name again!'\n\n  `I won't indeed!' said Alice, in a great hurry to change the\nsubject of conversation.  `Are you--are you fond--of--of dogs?'\nThe Mouse did not answer, so Alice went on eagerly:  `There is\nsuch a nice little dog near our house I should like to show you!\nA little bright-eyed terrier, you know, with oh, such long curly\nbrown hair!  And it'll fetch things when you throw them, and\nit'll sit up and beg for its dinner, and all sorts of things--I\ncan't remember half of them--and it belongs to a farmer, you\nknow, and he says it's so useful, it's worth a hundred pounds!\nHe says it kills all the rats and--oh dear!' cried Alice in a\nsorrowful tone, `I'm afraid I've offended it again!'  For the\nMouse was swimming away from her as hard as it could go, and\nmaking quite a commotion in the pool as it went.\n\n  So she called softly after it, `Mouse dear!  Do come back\nagain, and we won't talk about cats or dogs either, if you don't\nlike them!'  When the Mouse heard this, it turned round and swam\nslowly back to her:  its face was quite pale (with passion, Alice\nthought), and it said in a low trembling voice, `Let us get to\nthe shore, and then I'll tell you my history, and you'll\nunderstand why it is I hate cats and dogs.'\n\n  It was high time to go, for the pool was getting quite crowded\nwith the birds and animals that had fallen into it:  there were a\nDuck and a Dodo, a Lory and an Eaglet, and several other curious\ncreatures.  Alice led the way, and the whole party swam to the\nshore.\n\n\n\n                           CHAPTER III\n\n                  A Caucus-Race and a Long Tale\n\n\n  They were indeed a queer-looking party that assembled on the\nbank--the birds with draggled feathers, the animals with their\nfur clinging close to them, and all dripping wet, cross, and\nuncomfortable.\n\n  The first question of course was, how to get dry again:  they\nhad a consultation about this, and after a few minutes it seemed\nquite natural to Alice to find herself talking familiarly with\nthem, as if she had known them all her life.  Indeed, she had\nquite a long argument with the Lory, who at last turned sulky,\nand would only say, `I am older than you, and must know better';\nand this Alice would not allow without knowing how old it was,\nand, as the Lory positively refused to tell its age, there was no\nmore to be said.\n\n  At last the Mouse, who seemed to be a person of authority among\nthem, called out, `Sit down, all of you, and listen to me!  I'LL\nsoon make you dry enough!'  They all sat down at once, in a large\nring, with the Mouse in the middle.  Alice kept her eyes\nanxiously fixed on it, for she felt sure she would catch a bad\ncold if she did not get dry very soon.\n\n  `Ahem!' said the Mouse with an important air, `are you all ready?\nThis is the driest thing I know.  Silence all round, if you please!\n\"William the Conqueror, whose cause was favoured by the pope, was\nsoon submitted to by the English, who wanted leaders, and had been\nof late much accustomed to usurpation and conquest.  Edwin and\nMorcar, the earls of Mercia and Northumbria--\"'\n\n  `Ugh!' said the Lory, with a shiver.\n\n  `I beg your pardon!' said the Mouse, frowning, but very\npolitely:  `Did you speak?'\n\n  `Not I!' said the Lory hastily.\n\n  `I thought you did,' said the Mouse.  `--I proceed.  \"Edwin and\nMorcar, the earls of Mercia and Northumbria, declared for him:\nand even Stigand, the patriotic archbishop of Canterbury, found\nit advisable--\"'\n\n  `Found WHAT?' said the Duck.\n\n  `Found IT,' the Mouse replied rather crossly:  `of course you\nknow what \"it\" means.'\n\n  `I know what \"it\" means well enough, when I find a thing,' said\nthe Duck:  `it's generally a frog or a worm.  The question is,\nwhat did the archbishop find?'\n\n  The Mouse did not notice this question, but hurriedly went on,\n`\"--found it advisable to go with Edgar Atheling to meet William\nand offer him the crown.  William's conduct at first was\nmoderate.  But the insolence of his Normans--\"  How are you\ngetting on now, my dear?' it continued, turning to Alice as it\nspoke.\n\n  `As wet as ever,' said Alice in a melancholy tone:  `it doesn't\nseem to dry me at all.'\n\n  `In that case,' said the Dodo solemnly, rising to its feet, `I\nmove that the meeting adjourn, for the immediate adoption of more\nenergetic remedies--'\n\n  `Speak English!' said the Eaglet.  `I don't know the meaning of\nhalf those long words, and, what's more, I don't believe you do\neither!'  And the Eaglet bent down its head to hide a smile:\nsome of the other birds tittered audibly.\n\n  `What I was going to say,' said the Dodo in an offended tone,\n`was, that the best thing to get us dry would be a Caucus-race.'\n\n  `What IS a Caucus-race?' said Alice; not that she wanted much\nto know, but the Dodo had paused as if it thought that SOMEBODY\nought to speak, and no one else seemed inclined to say anything.\n\n  `Why,' said the Dodo, `the best way to explain it is to do it.'\n(And, as you might like to try the thing yourself, some winter\nday, I will tell you how the Dodo managed it.)\n\n  First it marked out a race-course, in a sort of circle, (`the\nexact shape doesn't matter,' it said,) and then all the party\nwere placed along the course, here and there.  There was no `One,\ntwo, three, and away,' but they began running when they liked,\nand left off when they liked, so that it was not easy to know\nwhen the race was over.  However, when they had been running half\nan hour or so, and were quite dry again, the Dodo suddenly called\nout `The race is over!' and they all crowded round it, panting,\nand asking, `But who has won?'\n\n  This question the Dodo could not answer without a great deal of\nthought, and it sat for a long time with one finger pressed upon\nits forehead (the position in which you usually see Shakespeare,\nin the pictures of him), while the rest waited in silence.  At\nlast the Dodo said, `EVERYBODY has won, and all must have\nprizes.'\n\n  `But who is to give the prizes?' quite a chorus of voices\nasked.\n\n  `Why, SHE, of course,' said the Dodo, pointing to Alice with\none finger; and the whole party at once crowded round her,\ncalling out in a confused way, `Prizes! Prizes!'\n\n  Alice had no idea what to do, and in despair she put her hand\nin her pocket, and pulled out a box of comfits, (luckily the salt\nwater had not got into it), and handed them round as prizes.\nThere was exactly one a-piece all round.\n\n  `But she must have a prize herself, you know,' said the Mouse.\n\n  `Of course,' the Dodo replied very gravely.  `What else have\nyou got in your pocket?' he went on, turning to Alice.\n\n  `Only a thimble,' said Alice sadly.\n\n  `Hand it over here,' said the Dodo.\n\n  Then they all crowded round her once more, while the Dodo\nsolemnly presented the thimble, saying `We beg your acceptance of\nthis elegant thimble'; and, when it had finished this short\nspeech, they all cheered.\n\n  Alice thought the whole thing very absurd, but they all looked\nso grave that she did not dare to laugh; and, as she could not\nthink of anything to say, she simply bowed, and took the thimble,\nlooking as solemn as she could.\n\n  The next thing was to eat the comfits:  this caused some noise\nand confusion, as the large birds complained that they could not\ntaste theirs, and the small ones choked and had to be patted on\nthe back.  However, it was over at last, and they sat down again\nin a ring, and begged the Mouse to tell them something more.\n\n  `You promised to tell me your history, you know,' said Alice,\n`and why it is you hate--C and D,' she added in a whisper, half\nafraid that it would be offended again.\n\n  `Mine is a long and a sad tale!' said the Mouse, turning to\nAlice, and sighing.\n\n  `It IS a long tail, certainly,' said Alice, looking down with\nwonder at the Mouse's tail; `but why do you call it sad?'  And\nshe kept on puzzling about it while the Mouse was speaking, so\nthat her idea of the tale was something like this:--\n\n                    `Fury said to a\n                   mouse, That he\n                 met in the\n               house,\n            \"Let us\n              both go to\n                law:  I will\n                  prosecute\n                    YOU.  --Come,\n                       I'll take no\n                        denial; We\n                     must have a\n                 trial:  For\n              really this\n           morning I've\n          nothing\n         to do.\"\n           Said the\n             mouse to the\n               cur, \"Such\n                 a trial,\n                   dear Sir,\n                         With\n                     no jury\n                  or judge,\n                would be\n              wasting\n             our\n              breath.\"\n               \"I'll be\n                 judge, I'll\n                   be jury,\"\n                         Said\n                    cunning\n                      old Fury:\n                     \"I'll\n                      try the\n                         whole\n                          cause,\n                             and\n                        condemn\n                       you\n                      to\n                       death.\"'\n\n\n  `You are not attending!' said the Mouse to Alice severely.\n`What are you thinking of?'\n\n  `I beg your pardon,' said Alice very humbly:  `you had got to\nthe fifth bend, I think?'\n\n  `I had NOT!' cried the Mouse, sharply and very angrily.\n\n  `A knot!' said Alice, always ready to make herself useful, and\nlooking anxiously about her.  `Oh, do let me help to undo it!'\n\n  `I shall do nothing of the sort,' said the Mouse, getting up\nand walking away.  `You insult me by talking such nonsense!'\n\n  `I didn't mean it!' pleaded poor Alice.  `But you're so easily\noffended, you know!'\n\n  The Mouse only growled in reply.\n\n  `Please come back and finish your story!' Alice called after\nit; and the others all joined in chorus, `Yes, please do!' but\nthe Mouse only shook its head impatiently, and walked a little\nquicker.\n\n  `What a pity it wouldn't stay!' sighed the Lory, as soon as it\nwas quite out of sight; and an old Crab took the opportunity of\nsaying to her daughter `Ah, my dear!  Let this be a lesson to you\nnever to lose YOUR temper!'  `Hold your tongue, Ma!' said the\nyoung Crab, a little snappishly.  `You're enough to try the\npatience of an oyster!'\n\n  `I wish I had our Dinah here, I know I do!' said Alice aloud,\naddressing nobody in particular.  `She'd soon fetch it back!'\n\n  `And who is Dinah, if I might venture to ask the question?'\nsaid the Lory.\n\n  Alice replied eagerly, for she was always ready to talk about\nher pet:  `Dinah's our cat.  And she's such a capital one for\ncatching mice you can't think!  And oh, I wish you could see her\nafter the birds!  Why, she'll eat a little bird as soon as look\nat it!'\n\n  This speech caused a remarkable sensation among the party.\nSome of the birds hurried off at once:  one the old Magpie began\nwrapping itself up very carefully, remarking, `I really must be\ngetting home; the night-air doesn't suit my throat!' and a Canary\ncalled out in a trembling voice to its children, `Come away, my\ndears!  It's high time you were all in bed!'  On various pretexts\nthey all moved off, and Alice was soon left alone.\n\n  `I wish I hadn't mentioned Dinah!' she said to herself in a\nmelancholy tone.  `Nobody seems to like her, down here, and I'm\nsure she's the best cat in the world!  Oh, my dear Dinah!  I\nwonder if I shall ever see you any more!'  And here poor Alice\nbegan to cry again, for she felt very lonely and low-spirited.\nIn a little while, however, she again heard a little pattering of\nfootsteps in the distance, and she looked up eagerly, half hoping\nthat the Mouse had changed his mind, and was coming back to\nfinish his story.\n\n\n\n                           CHAPTER IV\n\n                The Rabbit Sends in a Little Bill\n\n\n  It was the White Rabbit, trotting slowly back again, and\nlooking anxiously about as it went, as if it had lost something;\nand she heard it muttering to itself `The Duchess!  The Duchess!\nOh my dear paws!  Oh my fur and whiskers!  She'll get me\nexecuted, as sure as ferrets are ferrets!  Where CAN I have\ndropped them, I wonder?'  Alice guessed in a moment that it was\nlooking for the fan and the pair of white kid gloves, and she\nvery good-naturedly began hunting about for them, but they were\nnowhere to be seen--everything seemed to have changed since her\nswim in the pool, and the great hall, with the glass table and\nthe little door, had vanished completely.\n\n  Very soon the Rabbit noticed Alice, as she went hunting about,\nand called out to her in an angry tone, `Why, Mary Ann, what ARE\nyou doing out here?  Run home this moment, and fetch me a pair of\ngloves and a fan!  Quick, now!'  And Alice was so much frightened\nthat she ran off at once in the direction it pointed to, without\ntrying to explain the mistake it had made.\n\n  `He took me for his housemaid,' she said to herself as she ran.\n`How surprised he'll be when he finds out who I am!  But I'd\nbetter take him his fan and gloves--that is, if I can find them.'\nAs she said this, she came upon a neat little house, on the door\nof which was a bright brass plate with the name `W. RABBIT'\nengraved upon it.  She went in without knocking, and hurried\nupstairs, in great fear lest she should meet the real Mary Ann,\nand be turned out of the house before she had found the fan and\ngloves.\n\n  `How queer it seems,' Alice said to herself, `to be going\nmessages for a rabbit!  I suppose Dinah'll be sending me on\nmessages next!'  And she began fancying the sort of thing that\nwould happen:  `\"Miss Alice!  Come here directly, and get ready\nfor your walk!\" \"Coming in a minute, nurse!  But I've got to see\nthat the mouse doesn't get out.\"  Only I don't think,' Alice went\non, `that they'd let Dinah stop in the house if it began ordering\npeople about like that!'\n\n  By this time she had found her way into a tidy little room with\na table in the window, and on it (as she had hoped) a fan and two\nor three pairs of tiny white kid gloves:  she took up the fan and\na pair of the gloves, and was just going to leave the room, when\nher eye fell upon a little bottle that stood near the looking-\nglass.  There was no label this time with the words `DRINK ME,'\nbut nevertheless she uncorked it and put it to her lips.  `I know\nSOMETHING interesting is sure to happen,' she said to herself,\n`whenever I eat or drink anything; so I'll just see what this\nbottle does.  I do hope it'll make me grow large again, for\nreally I'm quite tired of being such a tiny little thing!'\n\n  It did so indeed, and much sooner than she had expected:\nbefore she had drunk half the bottle, she found her head pressing\nagainst the ceiling, and had to stoop to save her neck from being\nbroken.  She hastily put down the bottle, saying to herself\n`That's quite enough--I hope I shan't grow any more--As it is, I\ncan't get out at the door--I do wish I hadn't drunk quite so\nmuch!'\n\n  Alas! it was too late to wish that!  She went on growing, and\ngrowing, and very soon had to kneel down on the floor:  in\nanother minute there was not even room for this, and she tried\nthe effect of lying down with one elbow against the door, and the\nother arm curled round her head.  Still she went on growing, and,\nas a last resource, she put one arm out of the window, and one\nfoot up the chimney, and said to herself `Now I can do no more,\nwhatever happens.  What WILL become of me?'\n\n  Luckily for Alice, the little magic bottle had now had its full\neffect, and she grew no larger:  still it was very uncomfortable,\nand, as there seemed to be no sort of chance of her ever getting\nout of the room again, no wonder she felt unhappy.\n\n  `It was much pleasanter at home,' thought poor Alice, `when one\nwasn't always growing larger and smaller, and being ordered about\nby mice and rabbits.  I almost wish I hadn't gone down that\nrabbit-hole--and yet--and yet--it's rather curious, you know,\nthis sort of life!  I do wonder what CAN have happened to me!\nWhen I used to read fairy-tales, I fancied that kind of thing\nnever happened, and now here I am in the middle of one!  There\nought to be a book written about me, that there ought!  And when\nI grow up, I'll write one--but I'm grown up now,' she added in a\nsorrowful tone; `at least there's no room to grow up any more\nHERE.'\n\n  `But then,' thought Alice, `shall I NEVER get any older than I\nam now?  That'll be a comfort, one way--never to be an old woman-\n-but then--always to have lessons to learn!  Oh, I shouldn't like\nTHAT!'\n\n  `Oh, you foolish Alice!' she answered herself.  `How can you\nlearn lessons in here?  Why, there's hardly room for YOU, and no\nroom at all for any lesson-books!'\n\n  And so she went on, taking first one side and then the other,\nand making quite a conversation of it altogether; but after a few\nminutes she heard a voice outside, and stopped to listen.\n\n  `Mary Ann!  Mary Ann!' said the voice.  `Fetch me my gloves\nthis moment!'  Then came a little pattering of feet on the\nstairs.  Alice knew it was the Rabbit coming to look for her, and\nshe trembled till she shook the house, quite forgetting that she\nwas now about a thousand times as large as the Rabbit, and had no\nreason to be afraid of it.\n\n  Presently the Rabbit came up to the door, and tried to open it;\nbut, as the door opened inwards, and Alice's elbow was pressed\nhard against it, that attempt proved a failure.  Alice heard it\nsay to itself `Then I'll go round and get in at the window.'\n\n  `THAT you won't' thought Alice, and, after waiting till she\nfancied she heard the Rabbit just under the window, she suddenly\nspread out her hand, and made a snatch in the air.  She did not\nget hold of anything, but she heard a little shriek and a fall,\nand a crash of broken glass, from which she concluded that it was\njust possible it had fallen into a cucumber-frame, or something\nof the sort.\n\n  Next came an angry voice--the Rabbit's--`Pat! Pat!  Where are\nyou?'  And then a voice she had never heard before, `Sure then\nI'm here!  Digging for apples, yer honour!'\n\n  `Digging for apples, indeed!' said the Rabbit angrily.  `Here!\nCome and help me out of THIS!'  (Sounds of more broken glass.)\n\n  `Now tell me, Pat, what's that in the window?'\n\n  `Sure, it's an arm, yer honour!'  (He pronounced it `arrum.')\n\n  `An arm, you goose!   Who ever saw one that size?  Why, it\nfills the whole window!'\n\n  `Sure, it does, yer honour:  but it's an arm for all that.'\n\n  `Well, it's got no business there, at any rate:  go and take it\naway!'\n\n  There was a long silence after this, and Alice could only hear\nwhispers now and then; such as, `Sure, I don't like it, yer\nhonour, at all, at all!'  `Do as I tell you, you coward!' and at\nlast she spread out her hand again, and made another snatch in\nthe air.  This time there were TWO little shrieks, and more\nsounds of broken glass.  `What a number of cucumber-frames there\nmust be!' thought Alice.  `I wonder what they'll do next!  As for\npulling me out of the window, I only wish they COULD!  I'm sure I\ndon't want to stay in here any longer!'\n\n  She waited for some time without hearing anything more:  at\nlast came a rumbling of little cartwheels, and the sound of a\ngood many voice all talking together:  she made out the words:\n`Where's the other ladder?--Why, I hadn't to bring but one;\nBill's got the other--Bill! fetch it here, lad!--Here, put 'em up\nat this corner--No, tie 'em together first--they don't reach half\nhigh enough yet--Oh! they'll do well enough; don't be particular-\n-Here, Bill! catch hold of this rope--Will the roof bear?--Mind\nthat loose slate--Oh, it's coming down!  Heads below!' (a loud\ncrash)--`Now, who did that?--It was Bill, I fancy--Who's to go\ndown the chimney?--Nay, I shan't! YOU do it!--That I won't,\nthen!--Bill's to go down--Here, Bill! the master says you're to\ngo down the chimney!'\n\n  `Oh! So Bill's got to come down the chimney, has he?' said\nAlice to herself.  `Shy, they seem to put everything upon Bill!\nI wouldn't be in Bill's place for a good deal:  this fireplace is\nnarrow, to be sure; but I THINK I can kick a little!'\n\n  She drew her foot as far down the chimney as she could, and\nwaited till she heard a little animal (she couldn't guess of what\nsort it was) scratching and scrambling about in the chimney close\nabove her:  then, saying to herself `This is Bill,' she gave one\nsharp kick, and waited to see what would happen next.\n\n  The first thing she heard was a general chorus of `There goes\nBill!' then the Rabbit's voice along--`Catch him, you by the\nhedge!' then silence, and then another confusion of voices--`Hold\nup his head--Brandy now--Don't choke him--How was it, old fellow?\nWhat happened to you?  Tell us all about it!'\n\n  Last came a little feeble, squeaking voice, (`That's Bill,'\nthought Alice,) `Well, I hardly know--No more, thank ye; I'm\nbetter now--but I'm a deal too flustered to tell you--all I know\nis, something comes at me like a Jack-in-the-box, and up I goes\nlike a sky-rocket!'\n\n  `So you did, old fellow!' said the others.\n\n  `We must burn the house down!' said the Rabbit's voice; and\nAlice called out as loud as she could, `If you do.  I'll set\nDinah at you!'\n\n  There was a dead silence instantly, and Alice thought to\nherself, `I wonder what they WILL do next!  If they had any\nsense, they'd take the roof off.'  After a minute or two, they\nbegan moving about again, and Alice heard the Rabbit say, `A\nbarrowful will do, to begin with.'\n\n  `A barrowful of WHAT?' thought Alice; but she had not long to\ndoubt, for the next moment a shower of little pebbles came\nrattling in at the window, and some of them hit her in the face.\n`I'll put a stop to this,' she said to herself, and shouted out,\n`You'd better not do that again!' which produced another dead\nsilence.\n\n  Alice noticed with some surprise that the pebbles were all\nturning into little cakes as they lay on the floor, and a bright\nidea came into her head.  `If I eat one of these cakes,' she\nthought, `it's sure to make SOME change in my size; and as it\ncan't possibly make me larger, it must make me smaller, I\nsuppose.'\n\n  So she swallowed one of the cakes, and was delighted to find\nthat she began shrinking directly.  As soon as she was small\nenough to get through the door, she ran out of the house, and\nfound quite a crowd of little animals and birds waiting outside.\nThe poor little Lizard, Bill, was in the middle, being held up by\ntwo guinea-pigs, who were giving it something out of a bottle.\nThey all made a rush at Alice the moment she appeared; but she\nran off as hard as she could, and soon found herself safe in a\nthick wood.\n\n  `The first thing I've got to do,' said Alice to herself, as she\nwandered about in the wood, `is to grow to my right size again;\nand the second thing is to find my way into that lovely garden.\nI think that will be the best plan.'\n\n  It sounded an excellent plan, no doubt, and very neatly and\nsimply arranged; the only difficulty was, that she had not the\nsmallest idea how to set about it; and while she was peering\nabout anxiously among the trees, a little sharp bark just over\nher head made her look up in a great hurry.\n\n  An enormous puppy was looking down at her with large round\neyes, and feebly stretching out one paw, trying to touch her.\n`Poor little thing!' said Alice, in a coaxing tone, and she tried\nhard to whistle to it; but she was terribly frightened all the\ntime at the thought that it might be hungry, in which case it\nwould be very likely to eat her up in spite of all her coaxing.\n\n  Hardly knowing what she did, she picked up a little bit of\nstick, and held it out to the puppy; whereupon the puppy jumped\ninto the air off all its feet at once, with a yelp of delight,\nand rushed at the stick, and made believe to worry it; then Alice\ndodged behind a great thistle, to keep herself from being run\nover; and the moment she appeared on the other side, the puppy\nmade another rush at the stick, and tumbled head over heels in\nits hurry to get hold of it; then Alice, thinking it was very\nlike having a game of play with a cart-horse, and expecting every\nmoment to be trampled under its feet, ran round the thistle\nagain; then the puppy began a series of short charges at the\nstick, running a very little way forwards each time and a long\nway back, and barking hoarsely all the while, till at last it sat\ndown a good way off, panting, with its tongue hanging out of its\nmouth, and its great eyes half shut.\n\n  This seemed to Alice a good opportunity for making her escape;\nso she set off at once, and ran till she was quite tired and out\nof breath, and till the puppy's bark sounded quite faint in the\ndistance.\n\n  `And yet what a dear little puppy it was!' said Alice, as she\nleant against a buttercup to rest herself, and fanned herself\nwith one of the leaves:  `I should have liked teaching it tricks\nvery much, if--if I'd only been the right size to do it!  Oh\ndear!  I'd nearly forgotten that I've got to grow up again!  Let\nme see--how IS it to be managed?  I suppose I ought to eat or\ndrink something or other; but the great question is, what?'\n\n  The great question certainly was, what?  Alice looked all round\nher at the flowers and the blades of grass, but she did not see\nanything that looked like the right thing to eat or drink under\nthe circumstances.  There was a large mushroom growing near her,\nabout the same height as herself; and when she had looked under\nit, and on both sides of it, and behind it, it occurred to her\nthat she might as well look and see what was on the top of it.\n\n  She stretched herself up on tiptoe, and peeped over the edge of\nthe mushroom, and her eyes immediately met those of a large\ncaterpillar, that was sitting on the top with its arms folded,\nquietly smoking a long hookah, and taking not the smallest notice\nof her or of anything else.\n\n\n\n                            CHAPTER V\n\n                    Advice from a Caterpillar\n\n\n  The Caterpillar and Alice looked at each other for some time in\nsilence:  at last the Caterpillar took the hookah out of its\nmouth, and addressed her in a languid, sleepy voice.\n\n  `Who are YOU?' said the Caterpillar.\n\n  This was not an encouraging opening for a conversation.  Alice\nreplied, rather shyly, `I--I hardly know, sir, just at present--\nat least I know who I WAS when I got up this morning, but I think\nI must have been changed several times since then.'\n\n  `What do you mean by that?' said the Caterpillar sternly.\n`Explain yourself!'\n\n  `I can't explain MYSELF, I'm afraid, sir' said Alice, `because\nI'm not myself, you see.'\n\n  `I don't see,' said the Caterpillar.\n\n  `I'm afraid I can't put it more clearly,' Alice replied very\npolitely, `for I can't understand it myself to begin with; and\nbeing so many different sizes in a day is very confusing.'\n\n  `It isn't,' said the Caterpillar.\n\n  `Well, perhaps you haven't found it so yet,' said Alice; `but\nwhen you have to turn into a chrysalis--you will some day, you\nknow--and then after that into a butterfly, I should think you'll\nfeel it a little queer, won't you?'\n\n  `Not a bit,' said the Caterpillar.\n\n  `Well, perhaps your feelings may be different,' said Alice;\n`all I know is, it would feel very queer to ME.'\n\n  `You!' said the Caterpillar contemptuously.  `Who are YOU?'\n\n  Which brought them back again to the beginning of the\nconversation.  Alice felt a little irritated at the Caterpillar's\nmaking such VERY short remarks, and she drew herself up and said,\nvery gravely, `I think, you ought to tell me who YOU are, first.'\n\n  `Why?' said the Caterpillar.\n\n  Here was another puzzling question; and as Alice could not\nthink of any good reason, and as the Caterpillar seemed to be in\na VERY unpleasant state of mind, she turned away.\n\n  `Come back!' the Caterpillar called after her.  `I've something\nimportant to say!'\n\n  This sounded promising, certainly:  Alice turned and came back\nagain.\n\n  `Keep your temper,' said the Caterpillar.\n\n  `Is that all?' said Alice, swallowing down her anger as well as\nshe could.\n\n  `No,' said the Caterpillar.\n\n  Alice thought she might as well wait, as she had nothing else\nto do, and perhaps after all it might tell her something worth\nhearing.  For some minutes it puffed away without speaking, but\nat last it unfolded its arms, took the hookah out of its mouth\nagain, and said, `So you think you're changed, do you?'\n\n  `I'm afraid I am, sir,' said Alice; `I can't remember things as\nI used--and I don't keep the same size for ten minutes together!'\n\n  `Can't remember WHAT things?' said the Caterpillar.\n\n  `Well, I've tried to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it\nall came different!' Alice replied in a very melancholy voice.\n\n  `Repeat, \"YOU ARE OLD, FATHER WILLIAM,\"' said the Caterpillar.\n\n  Alice folded her hands, and began:--\n\n    `You are old, Father William,' the young man said,\n      `And your hair has become very white;\n    And yet you incessantly stand on your head--\n      Do you think, at your age, it is right?'\n\n    `In my youth,' Father William replied to his son,\n      `I feared it might injure the brain;\n    But, now that I'm perfectly sure I have none,\n      Why, I do it again and again.'\n\n    `You are old,' said the youth, `as I mentioned before,\n      And have grown most uncommonly fat;\n    Yet you turned a back-somersault in at the door--\n      Pray, what is the reason of that?'\n\n    `In my youth,' said the sage, as he shook his grey locks,\n      `I kept all my limbs very supple\n    By the use of this ointment--one shilling the box--\n      Allow me to sell you a couple?'\n\n    `You are old,' said the youth, `and your jaws are too weak\n      For anything tougher than suet;\n    Yet you finished the goose, with the bones and the beak--\n      Pray how did you manage to do it?'\n\n    `In my youth,' said his father, `I took to the law,\n      And argued each case with my wife;\n    And the muscular strength, which it gave to my jaw,\n      Has lasted the rest of my life.'\n\n    `You are old,' said the youth, `one would hardly suppose\n      That your eye was as steady as ever;\n    Yet you balanced an eel on the end of your nose--\n      What made you so awfully clever?'\n\n    `I have answered three questions, and that is enough,'\n      Said his father; `don't give yourself airs!\n    Do you think I can listen all day to such stuff?\n      Be off, or I'll kick you down stairs!'\n\n\n  `That is not said right,' said the Caterpillar.\n\n  `Not QUITE right, I'm afraid,' said Alice, timidly; `some of the\nwords have got altered.'\n\n  `It is wrong from beginning to end,' said the Caterpillar\ndecidedly, and there was silence for some minutes.\n\n  The Caterpillar was the first to speak.\n\n  `What size do you want to be?' it asked.\n\n  `Oh, I'm not particular as to size,' Alice hastily replied;\n`only one doesn't like changing so often, you know.'\n\n  `I DON'T know,' said the Caterpillar.\n\n  Alice said nothing:  she had never been so much contradicted in\nher life before, and she felt that she was losing her temper.\n\n  `Are you content now?' said the Caterpillar.\n\n  `Well, I should like to be a LITTLE larger, sir, if you\nwouldn't mind,' said Alice:  `three inches is such a wretched\nheight to be.'\n\n  `It is a very good height indeed!' said the Caterpillar\nangrily, rearing itself upright as it spoke (it was exactly three\ninches high).\n\n  `But I'm not used to it!' pleaded poor Alice in a piteous tone.\nAnd she thought of herself, `I wish the creatures wouldn't be so\neasily offended!'\n\n  `You'll get used to it in time,' said the Caterpillar; and it\nput the hookah into its mouth and began smoking again.\n\n  This time Alice waited patiently until it chose to speak again.\nIn a minute or two the Caterpillar took the hookah out of its\nmouth and yawned once or twice, and shook itself.  Then it got\ndown off the mushroom, and crawled away in the grass, merely\nremarking as it went, `One side will make you grow taller, and\nthe other side will make you grow shorter.'\n\n  `One side of WHAT?  The other side of WHAT?' thought Alice to\nherself.\n\n  `Of the mushroom,' said the Caterpillar, just as if she had\nasked it aloud; and in another moment it was out of sight.\n\n  Alice remained looking thoughtfully at the mushroom for a\nminute, trying to make out which were the two sides of it; and as\nit was perfectly round, she found this a very difficult question.\nHowever, at last she stretched her arms round it as far as they\nwould go, and broke off a bit of the edge with each hand.\n\n  `And now which is which?' she said to herself, and nibbled a\nlittle of the right-hand bit to try the effect:  the next moment\nshe felt a violent blow underneath her chin:  it had struck her\nfoot!\n\n  She was a good deal frightened by this very sudden change, but\nshe felt that there was no time to be lost, as she was shrinking\nrapidly; so she set to work at once to eat some of the other bit.\nHer chin was pressed so closely against her foot, that there was\nhardly room to open her mouth; but she did it at last, and\nmanaged to swallow a morsel of the lefthand bit.\n\n\n     *       *       *       *       *       *       *\n\n         *       *       *       *       *       *\n\n     *       *       *       *       *       *       *\n\n  `Come, my head's free at last!' said Alice in a tone of\ndelight, which changed into alarm in another moment, when she\nfound that her shoulders were nowhere to be found:  all she could\nsee, when she looked down, was an immense length of neck, which\nseemed to rise like a stalk out of a sea of green leaves that lay\nfar below her.\n\n  `What CAN all that green stuff be?' said Alice.  `And where\nHAVE my shoulders got to?  And oh, my poor hands, how is it I\ncan't see you?'  She was moving them about as she spoke, but no\nresult seemed to follow, except a little shaking among the\ndistant green leaves.\n\n  As there seemed to be no chance of getting her hands up to her\nhead, she tried to get her head down to them, and was delighted\nto find that her neck would bend about easily in any direction,\nlike a serpent.  She had just succeeded in curving it down into a\ngraceful zigzag, and was going to dive in among the leaves, which\nshe found to be nothing but the tops of the trees under which she\nhad been wandering, when a sharp hiss made her draw back in a\nhurry:  a large pigeon had flown into her face, and was beating\nher violently with its wings.\n\n  `Serpent!' screamed the Pigeon.\n\n  `I'm NOT a serpent!' said Alice indignantly.  `Let me alone!'\n\n  `Serpent, I say again!' repeated the Pigeon, but in a more\nsubdued tone, and added with a kind of sob, `I've tried every\nway, and nothing seems to suit them!'\n\n  `I haven't the least idea what you're talking about,' said\nAlice.\n\n  `I've tried the roots of trees, and I've tried banks, and I've\ntried hedges,' the Pigeon went on, without attending to her; `but\nthose serpents!  There's no pleasing them!'\n\n  Alice was more and more puzzled, but she thought there was no\nuse in saying anything more till the Pigeon had finished.\n\n  `As if it wasn't trouble enough hatching the eggs,' said the\nPigeon; `but I must be on the look-out for serpents night and\nday!  Why, I haven't had a wink of sleep these three weeks!'\n\n  `I'm very sorry you've been annoyed,' said Alice, who was\nbeginning to see its meaning.\n\n  `And just as I'd taken the highest tree in the wood,' continued\nthe Pigeon, raising its voice to a shriek, `and just as I was\nthinking I should be free of them at last, they must needs come\nwriggling down from the sky!  Ugh, Serpent!'\n\n  `But I'm NOT a serpent, I tell you!' said Alice.  `I'm a--I'm\na--'\n\n  `Well!  WHAT are you?' said the Pigeon.  `I can see you're\ntrying to invent something!'\n\n  `I--I'm a little girl,' said Alice, rather doubtfully, as she\nremembered the number of changes she had gone through that day.\n\n  `A likely story indeed!' said the Pigeon in a tone of the\ndeepest contempt.  `I've seen a good many little girls in my\ntime, but never ONE with such a neck as that!  No, no!  You're a\nserpent; and there's no use denying it.  I suppose you'll be\ntelling me next that you never tasted an egg!'\n\n  `I HAVE tasted eggs, certainly,' said Alice, who was a very\ntruthful child; `but little girls eat eggs quite as much as\nserpents do, you know.'\n\n  `I don't believe it,' said the Pigeon; `but if they do, why\nthen they're a kind of serpent, that's all I can say.'\n\n  This was such a new idea to Alice, that she was quite silent\nfor a minute or two, which gave the Pigeon the opportunity of\nadding, `You're looking for eggs, I know THAT well enough; and\nwhat does it matter to me whether you're a little girl or a\nserpent?'\n\n  `It matters a good deal to ME,' said Alice hastily; `but I'm\nnot looking for eggs, as it happens; and if I was, I shouldn't\nwant YOURS:  I don't like them raw.'\n\n  `Well, be off, then!' said the Pigeon in a sulky tone, as it\nsettled down again into its nest.  Alice crouched down among the\ntrees as well as she could, for her neck kept getting entangled\namong the branches, and every now and then she had to stop and\nuntwist it.  After a while she remembered that she still held the\npieces of mushroom in her hands, and she set to work very\ncarefully, nibbling first at one and then at the other, and\ngrowing sometimes taller and sometimes shorter, until she had\nsucceeded in bringing herself down to her usual height.\n\n  It was so long since she had been anything near the right size,\nthat it felt quite strange at first; but she got used to it in a\nfew minutes, and began talking to herself, as usual.  `Come,\nthere's half my plan done now!  How puzzling all these changes\nare!  I'm never sure what I'm going to be, from one minute to\nanother!  However, I've got back to my right size:  the next\nthing is, to get into that beautiful garden--how IS that to be\ndone, I wonder?'  As she said this, she came suddenly upon an\nopen place, with a little house in it about four feet high.\n`Whoever lives there,' thought Alice, `it'll never do to come\nupon them THIS size:  why, I should frighten them out of their\nwits!'  So she began nibbling at the righthand bit again, and did\nnot venture to go near the house till she had brought herself\ndown to nine inches high.\n\n\n\n                           CHAPTER VI\n\n                         Pig and Pepper\n\n\n  For a minute or two she stood looking at the house, and\nwondering what to do next, when suddenly a footman in livery came\nrunning out of the wood--(she considered him to be a footman\nbecause he was in livery:  otherwise, judging by his face only,\nshe would have called him a fish)--and rapped loudly at the door\nwith his knuckles.  It was opened by another footman in livery,\nwith a round face, and large eyes like a frog; and both footmen,\nAlice noticed, had powdered hair that curled all over their\nheads.  She felt very curious to know what it was all about, and\ncrept a little way out of the wood to listen.\n\n  The Fish-Footman began by producing from under his arm a great\nletter, nearly as large as himself, and this he handed over to\nthe other, saying, in a solemn tone, `For the Duchess.  An\ninvitation from the Queen to play croquet.'  The Frog-Footman\nrepeated, in the same solemn tone, only changing the order of the\nwords a little, `From the Queen.  An invitation for the Duchess\nto play croquet.'\n\n  Then they both bowed low, and their curls got entangled\ntogether.\n\n  Alice laughed so much at this, that she had to run back into\nthe wood for fear of their hearing her; and when she next peeped\nout the Fish-Footman was gone, and the other was sitting on the\nground near the door, staring stupidly up into the sky.\n\n  Alice went timidly up to the door, and knocked.\n\n  `There's no sort of use in knocking,' said the Footman, `and\nthat for two reasons.  First, because I'm on the same side of the\ndoor as you are; secondly, because they're making such a noise\ninside, no one could possibly hear you.'  And certainly there was\na most extraordinary noise going on within--a constant howling\nand sneezing, and every now and then a great crash, as if a dish\nor kettle had been broken to pieces.\n\n  `Please, then,' said Alice, `how am I to get in?'\n\n  `There might be some sense in your knocking,' the Footman went\non without attending to her, `if we had the door between us.  For\ninstance, if you were INSIDE, you might knock, and I could let\nyou out, you know.'  He was looking up into the sky all the time\nhe was speaking, and this Alice thought decidedly uncivil.  `But\nperhaps he can't help it,' she said to herself; `his eyes are so\nVERY nearly at the top of his head.  But at any rate he might\nanswer questions.--How am I to get in?' she repeated, aloud.\n\n  `I shall sit here,' the Footman remarked, `till tomorrow--'\n\n  At this moment the door of the house opened, and a large plate\ncame skimming out, straight at the Footman's head:  it just\ngrazed his nose, and broke to pieces against one of the trees\nbehind him.\n\n  `--or next day, maybe,' the Footman continued in the same tone,\nexactly as if nothing had happened.\n\n  `How am I to get in?' asked Alice again, in a louder tone.\n\n  `ARE you to get in at all?' said the Footman.  `That's the\nfirst question, you know.'\n\n  It was, no doubt:  only Alice did not like to be told so.\n`It's really dreadful,' she muttered to herself, `the way all the\ncreatures argue.  It's enough to drive one crazy!'\n\n  The Footman seemed to think this a good opportunity for\nrepeating his remark, with variations.  `I shall sit here,' he\nsaid, `on and off, for days and days.'\n\n  `But what am I to do?' said Alice.\n\n  `Anything you like,' said the Footman, and began whistling.\n\n  `Oh, there's no use in talking to him,' said Alice desperately:\n`he's perfectly idiotic!'  And she opened the door and went in.\n\n  The door led right into a large kitchen, which was full of\nsmoke from one end to the other:  the Duchess was sitting on a\nthree-legged stool in the middle, nursing a baby; the cook was\nleaning over the fire, stirring a large cauldron which seemed to\nbe full of soup.\n\n  `There's certainly too much pepper in that soup!' Alice said to\nherself, as well as she could for sneezing.\n\n  There was certainly too much of it in the air.  Even the\nDuchess sneezed occasionally; and as for the baby, it was\nsneezing and howling alternately without a moment's pause.  The\nonly things in the kitchen that did not sneeze, were the cook,\nand a large cat which was sitting on the hearth and grinning from\near to ear.\n\n  `Please would you tell me,' said Alice, a little timidly, for\nshe was not quite sure whether it was good manners for her to\nspeak first, `why your cat grins like that?'\n\n  `It's a Cheshire cat,' said the Duchess, `and that's why.\nPig!'\n\n  She said the last word with such sudden violence that Alice\nquite jumped; but she saw in another moment that it was addressed\nto the baby, and not to her, so she took courage, and went on\nagain:--\n\n  `I didn't know that Cheshire cats always grinned; in fact, I\ndidn't know that cats COULD grin.'\n\n  `They all can,' said the Duchess; `and most of 'em do.'\n\n  `I don't know of any that do,' Alice said very politely,\nfeeling quite pleased to have got into a conversation.\n\n  `You don't know much,' said the Duchess; `and that's a fact.'\n\n  Alice did not at all like the tone of this remark, and thought\nit would be as well to introduce some other subject of\nconversation.  While she was trying to fix on one, the cook took\nthe cauldron of soup off the fire, and at once set to work\nthrowing everything within her reach at the Duchess and the baby\n--the fire-irons came first; then followed a shower of saucepans,\nplates, and dishes.  The Duchess took no notice of them even when\nthey hit her; and the baby was howling so much already, that it\nwas quite impossible to say whether the blows hurt it or not.\n\n  `Oh, PLEASE mind what you're doing!' cried Alice, jumping up\nand down in an agony of terror.  `Oh, there goes his PRECIOUS\nnose'; as an unusually large saucepan flew close by it, and very\nnearly carried it off.\n\n  `If everybody minded their own business,' the Duchess said in a\nhoarse growl, `the world would go round a deal faster than it\ndoes.'\n\n  `Which would NOT be an advantage,' said Alice, who felt very\nglad to get an opportunity of showing off a little of her\nknowledge.  `Just think of what work it would make with the day\nand night!  You see the earth takes twenty-four hours to turn\nround on its axis--'\n\n  `Talking of axes,' said the Duchess, `chop off her head!'\n\n  Alice glanced rather anxiously at the cook, to see if she meant\nto take the hint; but the cook was busily stirring the soup, and\nseemed not to be listening, so she went on again:  `Twenty-four\nhours, I THINK; or is it twelve?  I--'\n\n  `Oh, don't bother ME,' said the Duchess; `I never could abide\nfigures!'  And with that she began nursing her child again,\nsinging a sort of lullaby to it as she did so, and giving it a\nviolent shake at the end of every line:\n\n        `Speak roughly to your little boy,\n          And beat him when he sneezes:\n        He only does it to annoy,\n          Because he knows it teases.'\n\n                    CHORUS.\n\n    (In which the cook and the baby joined):--\n\n                `Wow! wow! wow!'\n\n  While the Duchess sang the second verse of the song, she kept\ntossing the baby violently up and down, and the poor little thing\nhowled so, that Alice could hardly hear the words:--\n\n        `I speak severely to my boy,\n          I beat him when he sneezes;\n        For he can thoroughly enjoy\n          The pepper when he pleases!'\n\n                    CHORUS.\n\n                `Wow! wow! wow!'\n\n  `Here! you may nurse it a bit, if you like!' the Duchess said\nto Alice, flinging the baby at her as she spoke.  `I must go and\nget ready to play croquet with the Queen,' and she hurried out of\nthe room.  The cook threw a frying-pan after her as she went out,\nbut it just missed her.\n\n  Alice caught the baby with some difficulty, as it was a queer-\nshaped little creature, and held out its arms and legs in all\ndirections, `just like a star-fish,' thought Alice.  The poor\nlittle thing was snorting like a steam-engine when she caught it,\nand kept doubling itself up and straightening itself out again,\nso that altogether, for the first minute or two, it was as much\nas she could do to hold it.\n\n  As soon as she had made out the proper way of nursing it,\n(which was to twist it up into a sort of knot, and then keep\ntight hold of its right ear and left foot, so as to prevent its\nundoing itself,) she carried it out into the open air.  `IF I\ndon't take this child away with me,' thought Alice, `they're sure\nto kill it in a day or two:  wouldn't it be murder to leave it\nbehind?'  She said the last words out loud, and the little thing\ngrunted in reply (it had left off sneezing by this time).  `Don't\ngrunt,' said Alice; `that's not at all a proper way of expressing\nyourself.'\n\n  The baby grunted again, and Alice looked very anxiously into\nits face to see what was the matter with it.  There could be no\ndoubt that it had a VERY turn-up nose, much more like a snout\nthan a real nose; also its eyes were getting extremely small for\na baby:  altogether Alice did not like the look of the thing at\nall.  `But perhaps it was only sobbing,' she thought, and looked\ninto its eyes again, to see if there were any tears.\n\n  No, there were no tears.  `If you're going to turn into a pig,\nmy dear,' said Alice, seriously, `I'll have nothing more to do\nwith you.  Mind now!'  The poor little thing sobbed again (or\ngrunted, it was impossible to say which), and they went on for\nsome while in silence.\n\n  Alice was just beginning to think to herself, `Now, what am I\nto do with this creature when I get it home?' when it grunted\nagain, so violently, that she looked down into its face in some\nalarm.  This time there could be NO mistake about it:  it was\nneither more nor less than a pig, and she felt that it would be\nquite absurd for her to carry it further.\n\n  So she set the little creature down, and felt quite relieved to\nsee it trot away quietly into the wood.  `If it had grown up,'\nshe said to herself, `it would have made a dreadfully ugly child:\nbut it makes rather a handsome pig, I think.'  And she began\nthinking over other children she knew, who might do very well as\npigs, and was just saying to herself, `if one only knew the right\nway to change them--' when she was a little startled by seeing\nthe Cheshire Cat sitting on a bough of a tree a few yards off.\n\n  The Cat only grinned when it saw Alice.  It looked good-\nnatured, she thought:  still it had VERY long claws and a great\nmany teeth, so she felt that it ought to be treated with respect.\n\n  `Cheshire Puss,' she began, rather timidly, as she did not at\nall know whether it would like the name:  however, it only\ngrinned a little wider.  `Come, it's pleased so far,' thought\nAlice, and she went on.  `Would you tell me, please, which way I\nought to go from here?'\n\n  `That depends a good deal on where you want to get to,' said\nthe Cat.\n\n  `I don't much care where--' said Alice.\n\n  `Then it doesn't matter which way you go,' said the Cat.\n\n  `--so long as I get SOMEWHERE,' Alice added as an explanation.\n\n  `Oh, you're sure to do that,' said the Cat, `if you only walk\nlong enough.'\n\n  Alice felt that this could not be denied, so she tried another\nquestion.  `What sort of people live about here?'\n\n  `In THAT direction,' the Cat said, waving its right paw round,\n`lives a Hatter:  and in THAT direction,' waving the other paw,\n`lives a March Hare.  Visit either you like:  they're both mad.'\n\n  `But I don't want to go among mad people,' Alice remarked.\n\n  `Oh, you can't help that,' said the Cat:  `we're all mad here.\nI'm mad.  You're mad.'\n\n  `How do you know I'm mad?' said Alice.\n\n  `You must be,' said the Cat, `or you wouldn't have come here.'\n\n  Alice didn't think that proved it at all; however, she went on\n`And how do you know that you're mad?'\n\n  `To begin with,' said the Cat, `a dog's not mad.  You grant\nthat?'\n\n  `I suppose so,' said Alice.\n\n  `Well, then,' the Cat went on, `you see, a dog growls when it's\nangry, and wags its tail when it's pleased.  Now I growl when I'm\npleased, and wag my tail when I'm angry.  Therefore I'm mad.'\n\n  `I call it purring, not growling,' said Alice.\n\n  `Call it what you like,' said the Cat.  `Do you play croquet\nwith the Queen to-day?'\n\n  `I should like it very much,' said Alice, `but I haven't been\ninvited yet.'\n\n  `You'll see me there,' said the Cat, and vanished.\n\n  Alice was not much surprised at this, she was getting so used\nto queer things happening.  While she was looking at the place\nwhere it had been, it suddenly appeared again.\n\n  `By-the-bye, what became of the baby?' said the Cat.  `I'd\nnearly forgotten to ask.'\n\n  `It turned into a pig,' Alice quietly said, just as if it had\ncome back in a natural way.\n\n  `I thought it would,' said the Cat, and vanished again.\n\n  Alice waited a little, half expecting to see it again, but it\ndid not appear, and after a minute or two she walked on in the\ndirection in which the March Hare was said to live.  `I've seen\nhatters before,' she said to herself; `the March Hare will be\nmuch the most interesting, and perhaps as this is May it won't be\nraving mad--at least not so mad as it was in March.'  As she said\nthis, she looked up, and there was the Cat again, sitting on a\nbranch of a tree.\n\n  `Did you say pig, or fig?' said the Cat.\n\n  `I said pig,' replied Alice; `and I wish you wouldn't keep\nappearing and vanishing so suddenly:  you make one quite giddy.'\n\n  `All right,' said the Cat; and this time it vanished quite\nslowly, beginning with the end of the tail, and ending with the\ngrin, which remained some time after the rest of it had gone.\n\n  `Well!  I've often seen a cat without a grin,' thought Alice;\n`but a grin without a cat!  It's the most curious thing I ever\nsay in my life!'\n\n  She had not gone much farther before she came in sight of the\nhouse of the March Hare:  she thought it must be the right house,\nbecause the chimneys were shaped like ears and the roof was\nthatched with fur.  It was so large a house, that she did not\nlike to go nearer till she had nibbled some more of the lefthand\nbit of mushroom, and raised herself to about two feet high:  even\nthen she walked up towards it rather timidly, saying to herself\n`Suppose it should be raving mad after all!  I almost wish I'd\ngone to see the Hatter instead!'\n\n\n\n                           CHAPTER VII\n\n                         A Mad Tea-Party\n\n\n  There was a table set out under a tree in front of the house,\nand the March Hare and the Hatter were having tea at it:  a\nDormouse was sitting between them, fast asleep, and the other two\nwere using it as a cushion, resting their elbows on it, and the\ntalking over its head.  `Very uncomfortable for the Dormouse,'\nthought Alice; `only, as it's asleep, I suppose it doesn't mind.'\n\n  The table was a large one, but the three were all crowded\ntogether at one corner of it:  `No room!  No room!' they cried\nout when they saw Alice coming.  `There's PLENTY of room!' said\nAlice indignantly, and she sat down in a large arm-chair at one\nend of the table.\n\n  `Have some wine,' the March Hare said in an encouraging tone.\n\n  Alice looked all round the table, but there was nothing on it\nbut tea.  `I don't see any wine,' she remarked.\n\n  `There isn't any,' said the March Hare.\n\n  `Then it wasn't very civil of you to offer it,' said Alice\nangrily.\n\n  `It wasn't very civil of you to sit down without being\ninvited,' said the March Hare.\n\n  `I didn't know it was YOUR table,' said Alice; `it's laid for a\ngreat many more than three.'\n\n  `Your hair wants cutting,' said the Hatter.  He had been\nlooking at Alice for some time with great curiosity, and this was\nhis first speech.\n\n  `You should learn not to make personal remarks,' Alice said\nwith some severity; `it's very rude.'\n\n  The Hatter opened his eyes very wide on hearing this; but all\nhe SAID was, `Why is a raven like a writing-desk?'\n\n  `Come, we shall have some fun now!' thought Alice.  `I'm glad\nthey've begun asking riddles.--I believe I can guess that,' she\nadded aloud.\n\n  `Do you mean that you think you can find out the answer to it?'\nsaid the March Hare.\n\n  `Exactly so,' said Alice.\n\n  `Then you should say what you mean,' the March Hare went on.\n\n  `I do,' Alice hastily replied; `at least--at least I mean what\nI say--that's the same thing, you know.'\n\n  `Not the same thing a bit!' said the Hatter.  `You might just\nas well say that \"I see what I eat\" is the same thing as \"I eat\nwhat I see\"!'\n\n  `You might just as well say,' added the March Hare, `that \"I\nlike what I get\" is the same thing as \"I get what I like\"!'\n\n  `You might just as well say,' added the Dormouse, who seemed to\nbe talking in his sleep, `that \"I breathe when I sleep\" is the\nsame thing as \"I sleep when I breathe\"!'\n\n  `It IS the same thing with you,' said the Hatter, and here the\nconversation dropped, and the party sat silent for a minute,\nwhile Alice thought over all she could remember about ravens and\nwriting-desks, which wasn't much.\n\n  The Hatter was the first to break the silence.  `What day of\nthe month is it?' he said, turning to Alice:  he had taken his\nwatch out of his pocket, and was looking at it uneasily, shaking\nit every now and then, and holding it to his ear.\n\n  Alice considered a little, and then said `The fourth.'\n\n  `Two days wrong!' sighed the Hatter.  `I told you butter\nwouldn't suit the works!' he added looking angrily at the March\nHare.\n\n  `It was the BEST butter,' the March Hare meekly replied.\n\n  `Yes, but some crumbs must have got in as well,' the Hatter\ngrumbled:  `you shouldn't have put it in with the bread-knife.'\n\n  The March Hare took the watch and looked at it gloomily:  then\nhe dipped it into his cup of tea, and looked at it again:  but he\ncould think of nothing better to say than his first remark, `It\nwas the BEST butter, you know.'\n\n  Alice had been looking over his shoulder with some curiosity.\n`What a funny watch!' she remarked.  `It tells the day of the\nmonth, and doesn't tell what o'clock it is!'\n\n  `Why should it?' muttered the Hatter.  `Does YOUR watch tell\nyou what year it is?'\n\n  `Of course not,' Alice replied very readily:  `but that's\nbecause it stays the same year for such a long time together.'\n\n  `Which is just the case with MINE,' said the Hatter.\n\n  Alice felt dreadfully puzzled.  The Hatter's remark seemed to\nhave no sort of meaning in it, and yet it was certainly English.\n`I don't quite understand you,' she said, as politely as she\ncould.\n\n  `The Dormouse is asleep again,' said the Hatter, and he poured\na little hot tea upon its nose.\n\n  The Dormouse shook its head impatiently, and said, without\nopening its eyes, `Of course, of course; just what I was going to\nremark myself.'\n\n  `Have you guessed the riddle yet?' the Hatter said, turning to\nAlice again.\n\n  `No, I give it up,' Alice replied:  `what's the answer?'\n\n  `I haven't the slightest idea,' said the Hatter.\n\n  `Nor I,' said the March Hare.\n\n  Alice sighed wearily.  `I think you might do something better\nwith the time,' she said, `than waste it in asking riddles that\nhave no answers.'\n\n  `If you knew Time as well as I do,' said the Hatter, `you\nwouldn't talk about wasting IT.  It's HIM.'\n\n  `I don't know what you mean,' said Alice.\n\n  `Of course you don't!' the Hatter said, tossing his head\ncontemptuously.  `I dare say you never even spoke to Time!'\n\n  `Perhaps not,' Alice cautiously replied:  `but I know I have to\nbeat time when I learn music.'\n\n  `Ah! that accounts for it,' said the Hatter.  `He won't stand\nbeating.  Now, if you only kept on good terms with him, he'd do\nalmost anything you liked with the clock.  For instance, suppose\nit were nine o'clock in the morning, just time to begin lessons:\nyou'd only have to whisper a hint to Time, and round goes the\nclock in a twinkling!  Half-past one, time for dinner!'\n\n  (`I only wish it was,' the March Hare said to itself in a\nwhisper.)\n\n  `That would be grand, certainly,' said Alice thoughtfully:\n`but then--I shouldn't be hungry for it, you know.'\n\n  `Not at first, perhaps,' said the Hatter:  `but you could keep\nit to half-past one as long as you liked.'\n\n  `Is that the way YOU manage?' Alice asked.\n\n  The Hatter shook his head mournfully.  `Not I!' he replied.\n`We quarrelled last March--just before HE went mad, you know--'\n(pointing with his tea spoon at the March Hare,) `--it was at the\ngreat concert given by the Queen of Hearts, and I had to sing\n\n            \"Twinkle, twinkle, little bat!\n            How I wonder what you're at!\"\n\nYou know the song, perhaps?'\n\n  `I've heard something like it,' said Alice.\n\n  `It goes on, you know,' the Hatter continued, `in this way:--\n\n            \"Up above the world you fly,\n            Like a tea-tray in the sky.\n                    Twinkle, twinkle--\"'\n\nHere the Dormouse shook itself, and began singing in its sleep\n`Twinkle, twinkle, twinkle, twinkle--' and went on so long that\nthey had to pinch it to make it stop.\n\n  `Well, I'd hardly finished the first verse,' said the Hatter,\n`when the Queen jumped up and bawled out, \"He's murdering the\ntime!  Off with his head!\"'\n\n  `How dreadfully savage!' exclaimed Alice.\n\n  `And ever since that,' the Hatter went on in a mournful tone,\n`he won't do a thing I ask!  It's always six o'clock now.'\n\n  A bright idea came into Alice's head.  `Is that the reason so\nmany tea-things are put out here?' she asked.\n\n  `Yes, that's it,' said the Hatter with a sigh:  `it's always\ntea-time, and we've no time to wash the things between whiles.'\n\n  `Then you keep moving round, I suppose?' said Alice.\n\n  `Exactly so,' said the Hatter:  `as the things get used up.'\n\n  `But what happens when you come to the beginning again?' Alice\nventured to ask.\n\n  `Suppose we change the subject,' the March Hare interrupted,\nyawning.  `I'm getting tired of this.  I vote the young lady\ntells us a story.'\n\n  `I'm afraid I don't know one,' said Alice, rather alarmed at\nthe proposal.\n\n  `Then the Dormouse shall!' they both cried.  `Wake up,\nDormouse!'  And they pinched it on both sides at once.\n\n  The Dormouse slowly opened his eyes.  `I wasn't asleep,' he\nsaid in a hoarse, feeble voice:  `I heard every word you fellows\nwere saying.'\n\n  `Tell us a story!' said the March Hare.\n\n  `Yes, please do!' pleaded Alice.\n\n  `And be quick about it,' added the Hatter, `or you'll be asleep\nagain before it's done.'\n\n  `Once upon a time there were three little sisters,' the\nDormouse began in a great hurry; `and their names were Elsie,\nLacie, and Tillie; and they lived at the bottom of a well--'\n\n  `What did they live on?' said Alice, who always took a great\ninterest in questions of eating and drinking.\n\n  `They lived on treacle,' said the Dormouse, after thinking a\nminute or two.\n\n  `They couldn't have done that, you know,' Alice gently\nremarked; `they'd have been ill.'\n\n  `So they were,' said the Dormouse; `VERY ill.'\n\n  Alice tried to fancy to herself what such an extraordinary ways\nof living would be like, but it puzzled her too much, so she went\non:  `But why did they live at the bottom of a well?'\n\n  `Take some more tea,' the March Hare said to Alice, very\nearnestly.\n\n  `I've had nothing yet,' Alice replied in an offended tone, `so\nI can't take more.'\n\n  `You mean you can't take LESS,' said the Hatter:  `it's very\neasy to take MORE than nothing.'\n\n  `Nobody asked YOUR opinion,' said Alice.\n\n  `Who's making personal remarks now?' the Hatter asked\ntriumphantly.\n\n  Alice did not quite know what to say to this:  so she helped\nherself to some tea and bread-and-butter, and then turned to the\nDormouse, and repeated her question.  `Why did they live at the\nbottom of a well?'\n\n  The Dormouse again took a minute or two to think about it, and\nthen said, `It was a treacle-well.'\n\n  `There's no such thing!'  Alice was beginning very angrily, but\nthe Hatter and the March Hare went `Sh! sh!' and the Dormouse\nsulkily remarked, `If you can't be civil, you'd better finish the\nstory for yourself.'\n\n  `No, please go on!' Alice said very humbly; `I won't interrupt\nagain.  I dare say there may be ONE.'\n\n  `One, indeed!' said the Dormouse indignantly.  However, he\nconsented to go on.  `And so these three little sisters--they\nwere learning to draw, you know--'\n\n  `What did they draw?' said Alice, quite forgetting her promise.\n\n  `Treacle,' said the Dormouse, without considering at all this\ntime.\n\n  `I want a clean cup,' interrupted the Hatter:  `let's all move\none place on.'\n\n  He moved on as he spoke, and the Dormouse followed him:  the\nMarch Hare moved into the Dormouse's place, and Alice rather\nunwillingly took the place of the March Hare.  The Hatter was the\nonly one who got any advantage from the change:  and Alice was a\ngood deal worse off than before, as the March Hare had just upset\nthe milk-jug into his plate.\n\n  Alice did not wish to offend the Dormouse again, so she began\nvery cautiously:  `But I don't understand.  Where did they draw\nthe treacle from?'\n\n  `You can draw water out of a water-well,' said the Hatter; `so\nI should think you could draw treacle out of a treacle-well--eh,\nstupid?'\n\n  `But they were IN the well,' Alice said to the Dormouse, not\nchoosing to notice this last remark.\n\n  `Of course they were', said the Dormouse; `--well in.'\n\n  This answer so confused poor Alice, that she let the Dormouse\ngo on for some time without interrupting it.\n\n  `They were learning to draw,' the Dormouse went on, yawning and\nrubbing its eyes, for it was getting very sleepy; `and they drew\nall manner of things--everything that begins with an M--'\n\n  `Why with an M?' said Alice.\n\n  `Why not?' said the March Hare.\n\n  Alice was silent.\n\n  The Dormouse had closed its eyes by this time, and was going\noff into a doze; but, on being pinched by the Hatter, it woke up\nagain with a little shriek, and went on:  `--that begins with an\nM, such as mouse-traps, and the moon, and memory, and muchness--\nyou know you say things are \"much of a muchness\"--did you ever\nsee such a thing as a drawing of a muchness?'\n\n  `Really, now you ask me,' said Alice, very much confused, `I\ndon't think--'\n\n  `Then you shouldn't talk,' said the Hatter.\n\n  This piece of rudeness was more than Alice could bear:  she got\nup in great disgust, and walked off; the Dormouse fell asleep\ninstantly, and neither of the others took the least notice of her\ngoing, though she looked back once or twice, half hoping that\nthey would call after her:  the last time she saw them, they were\ntrying to put the Dormouse into the teapot.\n\n  `At any rate I'll never go THERE again!' said Alice as she\npicked her way through the wood.  `It's the stupidest tea-party I\never was at in all my life!'\n\n  Just as she said this, she noticed that one of the trees had a\ndoor leading right into it.  `That's very curious!' she thought.\n`But everything's curious today.  I think I may as well go in at\nonce.'  And in she went.\n\n  Once more she found herself in the long hall, and close to the\nlittle glass table.  `Now, I'll manage better this time,' she\nsaid to herself, and began by taking the little golden key, and\nunlocking the door that led into the garden.  Then she went to\nwork nibbling at the mushroom (she had kept a piece of it in her\npocked) till she was about a foot high:  then she walked down the\nlittle passage:  and THEN--she found herself at last in the\nbeautiful garden, among the bright flower-beds and the cool\nfountains.\n\n\n\n                          CHAPTER VIII\n\n                   The Queen's Croquet-Ground\n\n\n  A large rose-tree stood near the entrance of the garden:  the\nroses growing on it were white, but there were three gardeners at\nit, busily painting them red.  Alice thought this a very curious\nthing, and she went nearer to watch them, and just as she came up\nto them she heard one of them say, `Look out now, Five!  Don't go\nsplashing paint over me like that!'\n\n  `I couldn't help it,' said Five, in a sulky tone; `Seven jogged\nmy elbow.'\n\n  On which Seven looked up and said, `That's right, Five!  Always\nlay the blame on others!'\n\n  `YOU'D better not talk!' said Five.  `I heard the Queen say only\nyesterday you deserved to be beheaded!'\n\n  `What for?' said the one who had spoken first.\n\n  `That's none of YOUR business, Two!' said Seven.\n\n  `Yes, it IS his business!' said Five, `and I'll tell him--it\nwas for bringing the cook tulip-roots instead of onions.'\n\n  Seven flung down his brush, and had just begun `Well, of all\nthe unjust things--' when his eye chanced to fall upon Alice, as\nshe stood watching them, and he checked himself suddenly:  the\nothers looked round also, and all of them bowed low.\n\n  `Would you tell me,' said Alice, a little timidly, `why you are\npainting those roses?'\n\n  Five and Seven said nothing, but looked at Two.  Two began in a\nlow voice, `Why the fact is, you see, Miss, this here ought to\nhave been a RED rose-tree, and we put a white one in by mistake;\nand if the Queen was to find it out, we should all have our heads\ncut off, you know.  So you see, Miss, we're doing our best, afore\nshe comes, to--'  At this moment Five, who had been anxiously\nlooking across the garden, called out `The Queen!  The Queen!'\nand the three gardeners instantly threw themselves flat upon\ntheir faces.  There was a sound of many footsteps, and Alice\nlooked round, eager to see the Queen.\n\n  First came ten soldiers carrying clubs; these were all shaped\nlike the three gardeners, oblong and flat, with their hands and\nfeet at the corners:  next the ten courtiers; these were\nornamented all over with diamonds, and walked two and two, as the\nsoldiers did.  After these came the royal children; there were\nten of them, and the little dears came jumping merrily along hand\nin hand, in couples:  they were all ornamented with hearts.  Next\ncame the guests, mostly Kings and Queens, and among them Alice\nrecognised the White Rabbit:  it was talking in a hurried nervous\nmanner, smiling at everything that was said, and went by without\nnoticing her.  Then followed the Knave of Hearts, carrying the\nKing's crown on a crimson velvet cushion; and, last of all this\ngrand procession, came THE KING AND QUEEN OF HEARTS.\n\n  Alice was rather doubtful whether she ought not to lie down on\nher face like the three gardeners, but she could not remember\nevery having heard of such a rule at processions; `and besides,\nwhat would be the use of a procession,' thought she, `if people\nhad all to lie down upon their faces, so that they couldn't see\nit?'  So she stood still where she was, and waited.\n\n  When the procession came opposite to Alice, they all stopped\nand looked at her, and the Queen said severely `Who is this?'\nShe said it to the Knave of Hearts, who only bowed and smiled in\nreply.\n\n  `Idiot!' said the Queen, tossing her head impatiently; and,\nturning to Alice, she went on, `What's your name, child?'\n\n  `My name is Alice, so please your Majesty,' said Alice very\npolitely; but she added, to herself, `Why, they're only a pack of\ncards, after all.  I needn't be afraid of them!'\n\n  `And who are THESE?' said the Queen, pointing to the three\ngardeners who were lying round the rosetree; for, you see, as\nthey were lying on their faces, and the pattern on their backs\nwas the same as the rest of the pack, she could not tell whether\nthey were gardeners, or soldiers, or courtiers, or three of her\nown children.\n\n  `How should I know?' said Alice, surprised at her own courage.\n`It's no business of MINE.'\n\n  The Queen turned crimson with fury, and, after glaring at her\nfor a moment like a wild beast, screamed `Off with her head!\nOff--'\n\n  `Nonsense!' said Alice, very loudly and decidedly, and the\nQueen was silent.\n\n  The King laid his hand upon her arm, and timidly said\n`Consider, my dear:  she is only a child!'\n\n  The Queen turned angrily away from him, and said to the Knave\n`Turn them over!'\n\n  The Knave did so, very carefully, with one foot.\n\n  `Get up!' said the Queen, in a shrill, loud voice, and the\nthree gardeners instantly jumped up, and began bowing to the\nKing, the Queen, the royal children, and everybody else.\n\n  `Leave off that!' screamed the Queen.  `You make me giddy.'\nAnd then, turning to the rose-tree, she went on, `What HAVE you\nbeen doing here?'\n\n  `May it please your Majesty,' said Two, in a very humble tone,\ngoing down on one knee as he spoke, `we were trying--'\n\n  `I see!' said the Queen, who had meanwhile been examining the\nroses.  `Off with their heads!' and the procession moved on,\nthree of the soldiers remaining behind to execute the unfortunate\ngardeners, who ran to Alice for protection.\n\n  `You shan't be beheaded!' said Alice, and she put them into a\nlarge flower-pot that stood near.  The three soldiers wandered\nabout for a minute or two, looking for them, and then quietly\nmarched off after the others.\n\n  `Are their heads off?' shouted the Queen.\n\n  `Their heads are gone, if it please your Majesty!' the soldiers\nshouted in reply.\n\n  `That's right!' shouted the Queen.  `Can you play croquet?'\n\n  The soldiers were silent, and looked at Alice, as the question\nwas evidently meant for her.\n\n  `Yes!' shouted Alice.\n\n  `Come on, then!' roared the Queen, and Alice joined the\nprocession, wondering very much what would happen next.\n\n  `It's--it's a very fine day!' said a timid voice at her side.\nShe was walking by the White Rabbit, who was peeping anxiously\ninto her face.\n\n  `Very,' said Alice:  `--where's the Duchess?'\n\n  `Hush!  Hush!' said the Rabbit in a low, hurried tone.  He\nlooked anxiously over his shoulder as he spoke, and then raised\nhimself upon tiptoe, put his mouth close to her ear, and\nwhispered `She's under sentence of execution.'\n\n  `What for?' said Alice.\n\n  `Did you say \"What a pity!\"?' the Rabbit asked.\n\n  `No, I didn't,' said Alice:  `I don't think it's at all a pity.\nI said \"What for?\"'\n\n  `She boxed the Queen's ears--' the Rabbit began.  Alice gave a\nlittle scream of laughter.  `Oh, hush!' the Rabbit whispered in a\nfrightened tone.  `The Queen will hear you!  You see, she came\nrather late, and the Queen said--'\n\n  `Get to your places!' shouted the Queen in a voice of thunder,\nand people began running about in all directions, tumbling up\nagainst each other; however, they got settled down in a minute or\ntwo, and the game began.  Alice thought she had never seen such a\ncurious croquet-ground in her life; it was all ridges and\nfurrows; the balls were live hedgehogs, the mallets live\nflamingoes, and the soldiers had to double themselves up and to\nstand on their hands and feet, to make the arches.\n\n  The chief difficulty Alice found at first was in managing her\nflamingo:  she succeeded in getting its body tucked away,\ncomfortably enough, under her arm, with its legs hanging down,\nbut generally, just as she had got its neck nicely straightened\nout, and was going to give the hedgehog a blow with its head, it\nWOULD twist itself round and look up in her face, with such a\npuzzled expression that she could not help bursting out laughing:\nand when she had got its head down, and was going to begin again,\nit was very provoking to find that the hedgehog had unrolled\nitself, and was in the act of crawling away:  besides all this,\nthere was generally a ridge or furrow in the way wherever she\nwanted to send the hedgehog to, and, as the doubled-up soldiers\nwere always getting up and walking off to other parts of the\nground, Alice soon came to the conclusion that it was a very\ndifficult game indeed.\n\n  The players all played at once without waiting for turns,\nquarrelling all the while, and fighting for the hedgehogs; and in\na very short time the Queen was in a furious passion, and went\nstamping about, and shouting `Off with his head!' or `Off with\nher head!' about once in a minute.\n\n  Alice began to feel very uneasy:  to be sure, she had not as\nyet had any dispute with the Queen, but she knew that it might\nhappen any minute, `and then,' thought she, `what would become of\nme?  They're dreadfully fond of beheading people here; the great\nwonder is, that there's any one left alive!'\n\n  She was looking about for some way of escape, and wondering\nwhether she could get away without being seen, when she noticed a\ncurious appearance in the air:  it puzzled her very much at\nfirst, but, after watching it a minute or two, she made it out to\nbe a grin, and she said to herself `It's the Cheshire Cat:  now I\nshall have somebody to talk to.'\n\n  `How are you getting on?' said the Cat, as soon as there was\nmouth enough for it to speak with.\n\n  Alice waited till the eyes appeared, and then nodded.  `It's no\nuse speaking to it,' she thought, `till its ears have come, or at\nleast one of them.'  In another minute the whole head appeared,\nand then Alice put down her flamingo, and began an account of the\ngame, feeling very glad she had someone to listen to her.  The\nCat seemed to think that there was enough of it now in sight, and\nno more of it appeared.\n\n  `I don't think they play at all fairly,' Alice began, in rather\na complaining tone, `and they all quarrel so dreadfully one can't\nhear oneself speak--and they don't seem to have any rules in\nparticular; at least, if there are, nobody attends to them--and\nyou've no idea how confusing it is all the things being alive;\nfor instance, there's the arch I've got to go through next\nwalking about at the other end of the ground--and I should have\ncroqueted the Queen's hedgehog just now, only it ran away when it\nsaw mine coming!'\n\n  `How do you like the Queen?' said the Cat in a low voice.\n\n  `Not at all,' said Alice:  `she's so extremely--'  Just then\nshe noticed that the Queen was close behind her, listening:  so\nshe went on, `--likely to win, that it's hardly worth while\nfinishing the game.'\n\n  The Queen smiled and passed on.\n\n  `Who ARE you talking to?' said the King, going up to Alice, and\nlooking at the Cat's head with great curiosity.\n\n  `It's a friend of mine--a Cheshire Cat,' said Alice:  `allow me\nto introduce it.'\n\n  `I don't like the look of it at all,' said the King:  `however,\nit may kiss my hand if it likes.'\n\n  `I'd rather not,' the Cat remarked.\n\n  `Don't be impertinent,' said the King, `and don't look at me\nlike that!'  He got behind Alice as he spoke.\n\n  `A cat may look at a king,' said Alice.  `I've read that in\nsome book, but I don't remember where.'\n\n  `Well, it must be removed,' said the King very decidedly, and\nhe called the Queen, who was passing at the moment, `My dear!  I\nwish you would have this cat removed!'\n\n  The Queen had only one way of settling all difficulties, great\nor small.  `Off with his head!' she said, without even looking\nround.\n\n  `I'll fetch the executioner myself,' said the King eagerly, and\nhe hurried off.\n\n  Alice thought she might as well go back, and see how the game\nwas going on, as she heard the Queen's voice in the distance,\nscreaming with passion.  She had already heard her sentence three\nof the players to be executed for having missed their turns, and\nshe did not like the look of things at all, as the game was in\nsuch confusion that she never knew whether it was her turn or\nnot.  So she went in search of her hedgehog.\n\n  The hedgehog was engaged in a fight with another hedgehog,\nwhich seemed to Alice an excellent opportunity for croqueting one\nof them with the other:  the only difficulty was, that her\nflamingo was gone across to the other side of the garden, where\nAlice could see it trying in a helpless sort of way to fly up\ninto a tree.\n\n  By the time she had caught the flamingo and brought it back,\nthe fight was over, and both the hedgehogs were out of sight:\n`but it doesn't matter much,' thought Alice, `as all the arches\nare gone from this side of the ground.'  So she tucked it away\nunder her arm, that it might not escape again, and went back for\na little more conversation with her friend.\n\n  When she got back to the Cheshire Cat, she was surprised to\nfind quite a large crowd collected round it:  there was a dispute\ngoing on between the executioner, the King, and the Queen, who\nwere all talking at once, while all the rest were quite silent,\nand looked very uncomfortable.\n\n  The moment Alice appeared, she was appealed to by all three to\nsettle the question, and they repeated their arguments to her,\nthough, as they all spoke at once, she found it very hard indeed\nto make out exactly what they said.\n\n  The executioner's argument was, that you couldn't cut off a\nhead unless there was a body to cut it off from:  that he had\nnever had to do such a thing before, and he wasn't going to begin\nat HIS time of life.\n\n  The King's argument was, that anything that had a head could be\nbeheaded, and that you weren't to talk nonsense.\n\n  The Queen's argument was, that if something wasn't done about\nit in less than no time she'd have everybody executed, all round.\n(It was this last remark that had made the whole party look so\ngrave and anxious.)\n\n  Alice could think of nothing else to say but `It belongs to the\nDuchess:  you'd better ask HER about it.'\n\n  `She's in prison,' the Queen said to the executioner:  `fetch\nher here.'  And the executioner went off like an arrow.\n\n   The Cat's head began fading away the moment he was gone, and,\nby the time he had come back with the Dutchess, it had entirely\ndisappeared; so the King and the executioner ran wildly up and\ndown looking for it, while the rest of the party went back to the game.\n\n\n\n                           CHAPTER IX\n\n                     The Mock Turtle's Story\n\n\n  `You can't think how glad I am to see you again, you dear old\nthing!' said the Duchess, as she tucked her arm affectionately\ninto Alice's, and they walked off together.\n\n  Alice was very glad to find her in such a pleasant temper, and\nthought to herself that perhaps it was only the pepper that had\nmade her so savage when they met in the kitchen.\n\n  `When I'M a Duchess,' she said to herself, (not in a very\nhopeful tone though), `I won't have any pepper in my kitchen AT\nALL.  Soup does very well without--Maybe it's always pepper that\nmakes people hot-tempered,' she went on, very much pleased at\nhaving found out a new kind of rule, `and vinegar that makes them\nsour--and camomile that makes them bitter--and--and barley-sugar\nand such things that make children sweet-tempered.  I only wish\npeople knew that:  then they wouldn't be so stingy about it, you\nknow--'\n\n  She had quite forgotten the Duchess by this time, and was a\nlittle startled when she heard her voice close to her ear.\n`You're thinking about something, my dear, and that makes you\nforget to talk.  I can't tell you just now what the moral of that\nis, but I shall remember it in a bit.'\n\n  `Perhaps it hasn't one,' Alice ventured to remark.\n\n  `Tut, tut, child!' said the Duchess.  `Everything's got a\nmoral, if only you can find it.'  And she squeezed herself up\ncloser to Alice's side as she spoke.\n\n  Alice did not much like keeping so close to her:  first,\nbecause the Duchess was VERY ugly; and secondly, because she was\nexactly the right height to rest her chin upon Alice's shoulder,\nand it was an uncomfortably sharp chin.  However, she did not\nlike to be rude, so she bore it as well as she could.\n\n  `The game's going on rather better now,' she said, by way of\nkeeping up the conversation a little.\n\n  `'Tis so,' said the Duchess:  `and the moral of that is--\"Oh,\n'tis love, 'tis love, that makes the world go round!\"'\n\n  `Somebody said,' Alice whispered, `that it's done by everybody\nminding their own business!'\n\n  `Ah, well!  It means much the same thing,' said the Duchess,\ndigging her sharp little chin into Alice's shoulder as she added,\n`and the moral of THAT is--\"Take care of the sense, and the\nsounds will take care of themselves.\"'\n\n  `How fond she is of finding morals in things!' Alice thought to\nherself.\n\n  `I dare say you're wondering why I don't put my arm round your\nwaist,' the Duchess said after a pause:  `the reason is, that I'm\ndoubtful about the temper of your flamingo.  Shall I try the\nexperiment?'\n\n  `HE might bite,' Alice cautiously replied, not feeling at all\nanxious to have the experiment tried.\n\n  `Very true,' said the Duchess:  `flamingoes and mustard both\nbite.  And the moral of that is--\"Birds of a feather flock\ntogether.\"'\n\n  `Only mustard isn't a bird,' Alice remarked.\n\n  `Right, as usual,' said the Duchess:  `what a clear way you\nhave of putting things!'\n\n  `It's a mineral, I THINK,' said Alice.\n\n  `Of course it is,' said the Duchess, who seemed ready to agree\nto everything that Alice said; `there's a large mustard-mine near\nhere.  And the moral of that is--\"The more there is of mine, the\nless there is of yours.\"'\n\n  `Oh, I know!' exclaimed Alice, who had not attended to this\nlast remark, `it's a vegetable.  It doesn't look like one, but it\nis.'\n\n  `I quite agree with you,' said the Duchess; `and the moral of\nthat is--\"Be what you would seem to be\"--or if you'd like it put\nmore simply--\"Never imagine yourself not to be otherwise than\nwhat it might appear to others that what you were or might have\nbeen was not otherwise than what you had been would have appeared\nto them to be otherwise.\"'\n\n  `I think I should understand that better,' Alice said very\npolitely, `if I had it written down:  but I can't quite follow it\nas you say it.'\n\n  `That's nothing to what I could say if I chose,' the Duchess\nreplied, in a pleased tone.\n\n  `Pray don't trouble yourself to say it any longer than that,'\nsaid Alice.\n\n  `Oh, don't talk about trouble!' said the Duchess.  `I make you\na present of everything I've said as yet.'\n\n  `A cheap sort of present!' thought Alice.  `I'm glad they don't\ngive birthday presents like that!'  But she did not venture to\nsay it out loud.\n\n  `Thinking again?' the Duchess asked, with another dig of her\nsharp little chin.\n\n  `I've a right to think,' said Alice sharply, for she was\nbeginning to feel a little worried.\n\n  `Just about as much right,' said the Duchess, `as pigs have to\nfly; and the m--'\n\n  But here, to Alice's great surprise, the Duchess's voice died\naway, even in the middle of her favourite word `moral,' and the\narm that was linked into hers began to tremble.  Alice looked up,\nand there stood the Queen in front of them, with her arms folded,\nfrowning like a thunderstorm.\n\n  `A fine day, your Majesty!' the Duchess began in a low, weak\nvoice.\n\n  `Now, I give you fair warning,' shouted the Queen, stamping on\nthe ground as she spoke; `either you or your head must be off,\nand that in about half no time!  Take your choice!'\n\n  The Duchess took her choice, and was gone in a moment.\n\n  `Let's go on with the game,' the Queen said to Alice; and Alice\nwas too much frightened to say a word, but slowly followed her\nback to the croquet-ground.\n\n  The other guests had taken advantage of the Queen's absence,\nand were resting in the shade:  however, the moment they saw her,\nthey hurried back to the game, the Queen merely remarking that a\nmoment's delay would cost them their lives.\n\n  All the time they were playing the Queen never left off\nquarrelling with the other players, and shouting `Off with his\nhead!' or `Off with her head!'  Those whom she sentenced were\ntaken into custody by the soldiers, who of course had to leave\noff being arches to do this, so that by the end of half an hour\nor so there were no arches left, and all the players, except the\nKing, the Queen, and Alice, were in custody and under sentence of\nexecution.\n\n  Then the Queen left off, quite out of breath, and said to\nAlice, `Have you seen the Mock Turtle yet?'\n\n  `No,' said Alice.  `I don't even know what a Mock Turtle is.'\n\n  `It's the thing Mock Turtle Soup is made from,' said the Queen.\n\n  `I never saw one, or heard of one,' said Alice.\n\n  `Come on, then,' said the Queen, `and he shall tell you his\nhistory,'\n\n  As they walked off together, Alice heard the King say in a low\nvoice, to the company generally, `You are all pardoned.'  `Come,\nTHAT'S a good thing!' she said to herself, for she had felt quite\nunhappy at the number of executions the Queen had ordered.\n\n  They very soon came upon a Gryphon, lying fast asleep in the\nsun.  (IF you don't know what a Gryphon is, look at the picture.)\n`Up, lazy thing!' said the Queen, `and take this young lady to\nsee the Mock Turtle, and to hear his history.  I must go back and\nsee after some executions I have ordered'; and she walked off,\nleaving Alice alone with the Gryphon.  Alice did not quite like\nthe look of the creature, but on the whole she thought it would\nbe quite as safe to stay with it as to go after that savage\nQueen:  so she waited.\n\n  The Gryphon sat up and rubbed its eyes:  then it watched the\nQueen till she was out of sight:  then it chuckled.  `What fun!'\nsaid the Gryphon, half to itself, half to Alice.\n\n  `What IS the fun?' said Alice.\n\n  `Why, SHE,' said the Gryphon.  `It's all her fancy, that:  they\nnever executes nobody, you know.  Come on!'\n\n  `Everybody says \"come on!\" here,' thought Alice, as she went\nslowly after it:  `I never was so ordered about in all my life,\nnever!'\n\n  They had not gone far before they saw the Mock Turtle in the\ndistance, sitting sad and lonely on a little ledge of rock, and,\nas they came nearer, Alice could hear him sighing as if his heart\nwould break.  She pitied him deeply.  `What is his sorrow?' she\nasked the Gryphon, and the Gryphon answered, very nearly in the\nsame words as before, `It's all his fancy, that:  he hasn't got\nno sorrow, you know.  Come on!'\n\n  So they went up to the Mock Turtle, who looked at them with\nlarge eyes full of tears, but said nothing.\n\n  `This here young lady,' said the Gryphon, `she wants for to\nknow your history, she do.'\n\n  `I'll tell it her,' said the Mock Turtle in a deep, hollow\ntone:  `sit down, both of you, and don't speak a word till I've\nfinished.'\n\n  So they sat down, and nobody spoke for some minutes.  Alice\nthought to herself, `I don't see how he can EVEN finish, if he\ndoesn't begin.'  But she waited patiently.\n\n  `Once,' said the Mock Turtle at last, with a deep sigh, `I was\na real Turtle.'\n\n  These words were followed by a very long silence, broken only\nby an occasional exclamation of `Hjckrrh!' from the Gryphon, and\nthe constant heavy sobbing of the Mock Turtle.  Alice was very\nnearly getting up and saying, `Thank you, sir, for your\ninteresting story,' but she could not help thinking there MUST be\nmore to come, so she sat still and said nothing.\n\n  `When we were little,' the Mock Turtle went on at last, more\ncalmly, though still sobbing a little now and then, `we went to\nschool in the sea.  The master was an old Turtle--we used to call\nhim Tortoise--'\n\n  `Why did you call him Tortoise, if he wasn't one?' Alice asked.\n\n  `We called him Tortoise because he taught us,' said the Mock\nTurtle angrily:  `really you are very dull!'\n\n  `You ought to be ashamed of yourself for asking such a simple\nquestion,' added the Gryphon; and then they both sat silent and\nlooked at poor Alice, who felt ready to sink into the earth.  At\nlast the Gryphon said to the Mock Turtle, `Drive on, old fellow!\nDon't be all day about it!' and he went on in these words:\n\n  `Yes, we went to school in the sea, though you mayn't believe\nit--'\n\n  `I never said I didn't!' interrupted Alice.\n\n  `You did,' said the Mock Turtle.\n\n  `Hold your tongue!' added the Gryphon, before Alice could speak\nagain.  The Mock Turtle went on.\n\n  `We had the best of educations--in fact, we went to school\nevery day--'\n\n  `I'VE been to a day-school, too,' said Alice; `you needn't be\nso proud as all that.'\n\n  `With extras?' asked the Mock Turtle a little anxiously.\n\n  `Yes,' said Alice, `we learned French and music.'\n\n  `And washing?' said the Mock Turtle.\n\n  `Certainly not!' said Alice indignantly.\n\n  `Ah! then yours wasn't a really good school,' said the Mock\nTurtle in a tone of great relief.  `Now at OURS they had at the\nend of the bill, \"French, music, AND WASHING--extra.\"'\n\n  `You couldn't have wanted it much,' said Alice; `living at the\nbottom of the sea.'\n\n  `I couldn't afford to learn it.' said the Mock Turtle with a\nsigh.  `I only took the regular course.'\n\n  `What was that?' inquired Alice.\n\n  `Reeling and Writhing, of course, to begin with,' the Mock\nTurtle replied; `and then the different branches of Arithmetic--\nAmbition, Distraction, Uglification, and Derision.'\n\n  `I never heard of \"Uglification,\"' Alice ventured to say.  `What\nis it?'\n\n  The Gryphon lifted up both its paws in surprise.  `What!  Never\nheard of uglifying!' it exclaimed.  `You know what to beautify\nis, I suppose?'\n\n  `Yes,' said Alice doubtfully:  `it means--to--make--anything--\nprettier.'\n\n  `Well, then,' the Gryphon went on, `if you don't know what to\nuglify is, you ARE a simpleton.'\n\n  Alice did not feel encouraged to ask any more questions about\nit, so she turned to the Mock Turtle, and said `What else had you\nto learn?'\n\n  `Well, there was Mystery,' the Mock Turtle replied, counting\noff the subjects on his flappers, `--Mystery, ancient and modern,\nwith Seaography:  then Drawling--the Drawling-master was an old\nconger-eel, that used to come once a week:  HE taught us\nDrawling, Stretching, and Fainting in Coils.'\n\n  `What was THAT like?' said Alice.\n\n  `Well, I can't show it you myself,' the Mock Turtle said:  `I'm\ntoo stiff.  And the Gryphon never learnt it.'\n\n  `Hadn't time,' said the Gryphon:  `I went to the Classics\nmaster, though.  He was an old crab, HE was.'\n\n  `I never went to him,' the Mock Turtle said with a sigh:  `he\ntaught Laughing and Grief, they used to say.'\n\n  `So he did, so he did,' said the Gryphon, sighing in his turn;\nand both creatures hid their faces in their paws.\n\n  `And how many hours a day did you do lessons?' said Alice, in a\nhurry to change the subject.\n\n  `Ten hours the first day,' said the Mock Turtle: `nine the\nnext, and so on.'\n\n  `What a curious plan!' exclaimed Alice.\n\n  `That's the reason they're called lessons,' the Gryphon\nremarked:  `because they lessen from day to day.'\n\n  This was quite a new idea to Alice, and she thought it over a\nlittle before she made her next remark.  `Then the eleventh day\nmust have been a holiday?'\n\n  `Of course it was,' said the Mock Turtle.\n\n  `And how did you manage on the twelfth?' Alice went on eagerly.\n\n  `That's enough about lessons,' the Gryphon interrupted in a\nvery decided tone:  `tell her something about the games now.'\n\n\n\n                            CHAPTER X\n\n                      The Lobster Quadrille\n\n\n  The Mock Turtle sighed deeply, and drew the back of one flapper\nacross his eyes.  He looked at Alice, and tried to speak, but for\na minute or two sobs choked his voice.  `Same as if he had a bone\nin his throat,' said the Gryphon:  and it set to work shaking him\nand punching him in the back.  At last the Mock Turtle recovered\nhis voice, and, with tears running down his cheeks, he went on\nagain:--\n\n  `You may not have lived much under the sea--' (`I haven't,'\nsaid Alice)--`and perhaps you were never even introduced to a lobster--'\n(Alice began to say `I once tasted--' but checked herself hastily,\nand said `No, never') `--so you can have no idea what a delightful\nthing a Lobster Quadrille is!'\n\n  `No, indeed,' said Alice.  `What sort of a dance is it?'\n\n  `Why,' said the Gryphon, `you first form into a line along the\nsea-shore--'\n\n  `Two lines!' cried the Mock Turtle.  `Seals, turtles, salmon,\nand so on; then, when you've cleared all the jelly-fish out of\nthe way--'\n\n  `THAT generally takes some time,' interrupted the Gryphon.\n\n  `--you advance twice--'\n\n  `Each with a lobster as a partner!' cried the Gryphon.\n\n  `Of course,' the Mock Turtle said:  `advance twice, set to\npartners--'\n\n  `--change lobsters, and retire in same order,' continued the\nGryphon.\n\n  `Then, you know,' the Mock Turtle went on, `you throw the--'\n\n  `The lobsters!' shouted the Gryphon, with a bound into the air.\n\n  `--as far out to sea as you can--'\n\n  `Swim after them!' screamed the Gryphon.\n\n  `Turn a somersault in the sea!' cried the Mock Turtle,\ncapering wildly about.\n\n  `Back to land again, and that's all the first figure,' said the\nMock Turtle, suddenly dropping his voice; and the two creatures,\nwho had been jumping about like mad things all this time, sat\ndown again very sadly and quietly, and looked at Alice.\n\n  `It must be a very pretty dance,' said Alice timidly.\n\n  `Would you like to see a little of it?' said the Mock Turtle.\n\n  `Very much indeed,' said Alice.\n\n  `Come, let's try the first figure!' said the Mock Turtle to the\nGryphon.  `We can do without lobsters, you know.  Which shall\nsing?'\n\n  `Oh, YOU sing,' said the Gryphon.  `I've forgotten the words.'\n\n  So they began solemnly dancing round and round Alice, every now\nand then treading on her toes when they passed too close, and\nwaving their forepaws to mark the time, while the Mock Turtle\nsang this, very slowly and sadly:--\n\n\n`\"Will you walk a little faster?\" said a whiting to a snail.\n\"There's a porpoise close behind us, and he's treading on my\n tail.\nSee how eagerly the lobsters and the turtles all advance!\nThey are waiting on the shingle--will you come and join the\ndance?\n\nWill you, won't you, will you, won't you, will you join the\ndance?\nWill you, won't you, will you, won't you, won't you join the\ndance?\n\n\n\"You can really have no notion how delightful it will be\nWhen they take us up and throw us, with the lobsters, out to\n                                                      sea!\"\nBut the snail replied \"Too far, too far!\" and gave a look\n                                                       askance--\nSaid he thanked the whiting kindly, but he would not join the\n   dance.\n    Would not, could not, would not, could not, would not join\n        the dance.\n    Would not, could not, would not, could not, could not join\n        the dance.\n\n`\"What matters it how far we go?\" his scaly friend replied.\n\"There is another shore, you know, upon the other side.\nThe further off from England the nearer is to France--\nThen turn not pale, beloved snail, but come and join the dance.\n\n    Will you, won't you, will you, won't you, will you join the\n         dance?\n    Will you, won't you, will you, won't you, won't you join the\n         dance?\"'\n\n\n\n  `Thank you, it's a very interesting dance to watch,' said\nAlice, feeling very glad that it was over at last:  `and I do so\nlike that curious song about the whiting!'\n\n  `Oh, as to the whiting,' said the Mock Turtle, `they--you've\nseen them, of course?'\n\n  `Yes,' said Alice, `I've often seen them at dinn--' she\nchecked herself hastily.\n\n  `I don't know where Dinn may be,' said the Mock Turtle, `but\nif you've seen them so often, of course you know what they're\nlike.'\n\n  `I believe so,' Alice replied thoughtfully.  `They have their\ntails in their mouths--and they're all over crumbs.'\n\n  `You're wrong about the crumbs,' said the Mock Turtle:\n`crumbs would all wash off in the sea.  But they HAVE their tails\nin their mouths; and the reason is--' here the Mock Turtle\nyawned and shut his eyes.--`Tell her about the reason and all\nthat,' he said to the Gryphon.\n\n  `The reason is,' said the Gryphon, `that they WOULD go with\nthe lobsters to the dance.  So they got thrown out to sea.  So\nthey had to fall a long way.  So they got their tails fast in\ntheir mouths.  So they couldn't get them out again.  That's all.'\n\n  `Thank you,' said Alice, `it's very interesting.  I never knew\nso much about a whiting before.'\n\n  `I can tell you more than that, if you like,' said the\nGryphon.  `Do you know why it's called a whiting?'\n\n  `I never thought about it,' said Alice.  `Why?'\n\n  `IT DOES THE BOOTS AND SHOES.' the Gryphon replied very\nsolemnly.\n\n  Alice was thoroughly puzzled.  `Does the boots and shoes!' she\nrepeated in a wondering tone.\n\n  `Why, what are YOUR shoes done with?' said the Gryphon.  `I\nmean, what makes them so shiny?'\n\n  Alice looked down at them, and considered a little before she\ngave her answer.  `They're done with blacking, I believe.'\n\n  `Boots and shoes under the sea,' the Gryphon went on in a deep\nvoice, `are done with a whiting.  Now you know.'\n\n  `And what are they made of?' Alice asked in a tone of great\ncuriosity.\n\n  `Soles and eels, of course,' the Gryphon replied rather\nimpatiently:  `any shrimp could have told you that.'\n\n  `If I'd been the whiting,' said Alice, whose thoughts were\nstill running on the song, `I'd have said to the porpoise, \"Keep\nback, please:  we don't want YOU with us!\"'\n\n  `They were obliged to have him with them,' the Mock Turtle\nsaid:  `no wise fish would go anywhere without a porpoise.'\n\n  `Wouldn't it really?' said Alice in a tone of great surprise.\n\n  `Of course not,' said the Mock Turtle:  `why, if a fish came\nto ME, and told me he was going a journey, I should say \"With\nwhat porpoise?\"'\n\n  `Don't you mean \"purpose\"?' said Alice.\n\n  `I mean what I say,' the Mock Turtle replied in an offended\ntone.  And the Gryphon added `Come, let's hear some of YOUR\nadventures.'\n\n  `I could tell you my adventures--beginning from this morning,'\nsaid Alice a little timidly:  `but it's no use going back to\nyesterday, because I was a different person then.'\n\n  `Explain all that,' said the Mock Turtle.\n\n  `No, no!  The adventures first,' said the Gryphon in an\nimpatient tone:  `explanations take such a dreadful time.'\n\n  So Alice began telling them her adventures from the time when\nshe first saw the White Rabbit.  She was a little nervous about\nit just at first, the two creatures got so close to her, one on\neach side, and opened their eyes and mouths so VERY wide, but she\ngained courage as she went on.  Her listeners were perfectly\nquiet till she got to the part about her repeating `YOU ARE OLD,\nFATHER WILLIAM,' to the Caterpillar, and the words all coming\ndifferent, and then the Mock Turtle drew a long breath, and said\n`That's very curious.'\n\n  `It's all about as curious as it can be,' said the Gryphon.\n\n  `It all came different!' the Mock Turtle repeated\nthoughtfully.  `I should like to hear her try and repeat\nsomething now.  Tell her to begin.'  He looked at the Gryphon as\nif he thought it had some kind of authority over Alice.\n\n  `Stand up and repeat \"'TIS THE VOICE OF THE SLUGGARD,\"' said\nthe Gryphon.\n\n  `How the creatures order one about, and make one repeat\nlessons!' thought Alice; `I might as well be at school at once.'\nHowever, she got up, and began to repeat it, but her head was so\nfull of the Lobster Quadrille, that she hardly knew what she was\nsaying, and the words came very queer indeed:--\n\n    `'Tis the voice of the Lobster; I heard him declare,\n    \"You have baked me too brown, I must sugar my hair.\"\n    As a duck with its eyelids, so he with his nose\n    Trims his belt and his buttons, and turns out his toes.'\n\n              [later editions continued as follows\n    When the sands are all dry, he is gay as a lark,\n    And will talk in contemptuous tones of the Shark,\n    But, when the tide rises and sharks are around,\n    His voice has a timid and tremulous sound.]\n\n  `That's different from what I used to say when I was a child,'\nsaid the Gryphon.\n\n  `Well, I never heard it before,' said the Mock Turtle; `but it\nsounds uncommon nonsense.'\n\n  Alice said nothing; she had sat down with her face in her\nhands, wondering if anything would EVER happen in a natural way\nagain.\n\n  `I should like to have it explained,' said the Mock Turtle.\n\n  `She can't explain it,' said the Gryphon hastily.  `Go on with\nthe next verse.'\n\n  `But about his toes?' the Mock Turtle persisted.  `How COULD\nhe turn them out with his nose, you know?'\n\n  `It's the first position in dancing.' Alice said; but was\ndreadfully puzzled by the whole thing, and longed to change the\nsubject.\n\n  `Go on with the next verse,' the Gryphon repeated impatiently:\n`it begins \"I passed by his garden.\"'\n\n  Alice did not dare to disobey, though she felt sure it would\nall come wrong, and she went on in a trembling voice:--\n\n    `I passed by his garden, and marked, with one eye,\n    How the Owl and the Panther were sharing a pie--'\n\n        [later editions continued as follows\n    The Panther took pie-crust, and gravy, and meat,\n    While the Owl had the dish as its share of the treat.\n    When the pie was all finished, the Owl, as a boon,\n    Was kindly permitted to pocket the spoon:\n    While the Panther received knife and fork with a growl,\n    And concluded the banquet--]\n\n  `What IS the use of repeating all that stuff,' the Mock Turtle\ninterrupted, `if you don't explain it as you go on?  It's by far\nthe most confusing thing I ever heard!'\n\n  `Yes, I think you'd better leave off,' said the Gryphon:  and\nAlice was only too glad to do so.\n\n  `Shall we try another figure of the Lobster Quadrille?' the\nGryphon went on.  `Or would you like the Mock Turtle to sing you\na song?'\n\n  `Oh, a song, please, if the Mock Turtle would be so kind,'\nAlice replied, so eagerly that the Gryphon said, in a rather\noffended tone, `Hm! No accounting for tastes!  Sing her \"Turtle\nSoup,\" will you, old fellow?'\n\n  The Mock Turtle sighed deeply, and began, in a voice sometimes\nchoked with sobs, to sing this:--\n\n\n    `Beautiful Soup, so rich and green,\n    Waiting in a hot tureen!\n    Who for such dainties would not stoop?\n    Soup of the evening, beautiful Soup!\n    Soup of the evening, beautiful Soup!\n        Beau--ootiful Soo--oop!\n        Beau--ootiful Soo--oop!\n    Soo--oop of the e--e--evening,\n        Beautiful, beautiful Soup!\n\n    `Beautiful Soup!  Who cares for fish,\n    Game, or any other dish?\n    Who would not give all else for two p\n    ennyworth only of beautiful Soup?\n    Pennyworth only of beautiful Soup?\n        Beau--ootiful Soo--oop!\n        Beau--ootiful Soo--oop!\n    Soo--oop of the e--e--evening,\n        Beautiful, beauti--FUL SOUP!'\n\n  `Chorus again!' cried the Gryphon, and the Mock Turtle had\njust begun to repeat it, when a cry of `The trial's beginning!'\nwas heard in the distance.\n\n  `Come on!' cried the Gryphon, and, taking Alice by the hand,\nit hurried off, without waiting for the end of the song.\n\n  `What trial is it?' Alice panted as she ran; but the Gryphon\nonly answered `Come on!' and ran the faster, while more and more\nfaintly came, carried on the breeze that followed them, the\nmelancholy words:--\n\n    `Soo--oop of the e--e--evening,\n        Beautiful, beautiful Soup!'\n\n\n\n                           CHAPTER XI\n\n                      Who Stole the Tarts?\n\n\n  The King and Queen of Hearts were seated on their throne when\nthey arrived, with a great crowd assembled about them--all sorts\nof little birds and beasts, as well as the whole pack of cards:\nthe Knave was standing before them, in chains, with a soldier on\neach side to guard him; and near the King was the White Rabbit,\nwith a trumpet in one hand, and a scroll of parchment in the\nother.  In the very middle of the court was a table, with a large\ndish of tarts upon it:  they looked so good, that it made Alice\nquite hungry to look at them--`I wish they'd get the trial done,'\nshe thought, `and hand round the refreshments!'  But there seemed\nto be no chance of this, so she began looking at everything about\nher, to pass away the time.\n\n  Alice had never been in a court of justice before, but she had\nread about them in books, and she was quite pleased to find that\nshe knew the name of nearly everything there.  `That's the\njudge,' she said to herself, `because of his great wig.'\n\n  The judge, by the way, was the King; and as he wore his crown\nover the wig, (look at the frontispiece if you want to see how he\ndid it,) he did not look at all comfortable, and it was certainly\nnot becoming.\n\n  `And that's the jury-box,' thought Alice, `and those twelve\ncreatures,' (she was obliged to say `creatures,' you see, because\nsome of them were animals, and some were birds,) `I suppose they\nare the jurors.'  She said this last word two or three times over\nto herself, being rather proud of it:  for she thought, and\nrightly too, that very few little girls of her age knew the\nmeaning of it at all.  However, `jury-men' would have done just\nas well.\n\n  The twelve jurors were all writing very busily on slates.\n`What are they doing?'  Alice whispered to the Gryphon.  `They\ncan't have anything to put down yet, before the trial's begun.'\n\n  `They're putting down their names,' the Gryphon whispered in\nreply, `for fear they should forget them before the end of the\ntrial.'\n\n  `Stupid things!' Alice began in a loud, indignant voice, but\nshe stopped hastily, for the White Rabbit cried out, `Silence in\nthe court!' and the King put on his spectacles and looked\nanxiously round, to make out who was talking.\n\n  Alice could see, as well as if she were looking over their\nshoulders, that all the jurors were writing down `stupid things!'\non their slates, and she could even make out that one of them\ndidn't know how to spell `stupid,' and that he had to ask his\nneighbour to tell him.  `A nice muddle their slates'll be in\nbefore the trial's over!' thought Alice.\n\n  One of the jurors had a pencil that squeaked.  This of course,\nAlice could not stand, and she went round the court and got\nbehind him, and very soon found an opportunity of taking it\naway.  She did it so quickly that the poor little juror (it was\nBill, the Lizard) could not make out at all what had become of\nit; so, after hunting all about for it, he was obliged to write\nwith one finger for the rest of the day; and this was of very\nlittle use, as it left no mark on the slate.\n\n  `Herald, read the accusation!' said the King.\n\n  On this the White Rabbit blew three blasts on the trumpet, and\nthen unrolled the parchment scroll, and read as follows:--\n\n    `The Queen of Hearts, she made some tarts,\n          All on a summer day:\n      The Knave of Hearts, he stole those tarts,\n          And took them quite away!'\n\n  `Consider your verdict,' the King said to the jury.\n\n  `Not yet, not yet!' the Rabbit hastily interrupted.  `There's\na great deal to come before that!'\n\n  `Call the first witness,' said the King; and the White Rabbit\nblew three blasts on the trumpet, and called out, `First\nwitness!'\n\n  The first witness was the Hatter.  He came in with a teacup in\none hand and a piece of bread-and-butter in the other.  `I beg\npardon, your Majesty,' he began, `for bringing these in:  but I\nhadn't quite finished my tea when I was sent for.'\n\n  `You ought to have finished,' said the King.  `When did you\nbegin?'\n\n  The Hatter looked at the March Hare, who had followed him into\nthe court, arm-in-arm with the Dormouse.  `Fourteenth of March, I\nthink it was,' he said.\n\n  `Fifteenth,' said the March Hare.\n\n  `Sixteenth,' added the Dormouse.\n\n  `Write that down,' the King said to the jury, and the jury\neagerly wrote down all three dates on their slates, and then\nadded them up, and reduced the answer to shillings and pence.\n\n  `Take off your hat,' the King said to the Hatter.\n\n  `It isn't mine,' said the Hatter.\n\n  `Stolen!' the King exclaimed, turning to the jury, who\ninstantly made a memorandum of the fact.\n\n  `I keep them to sell,' the Hatter added as an explanation;\n`I've none of my own.  I'm a hatter.'\n\n  Here the Queen put on her spectacles, and began staring at the\nHatter, who turned pale and fidgeted.\n\n  `Give your evidence,' said the King; `and don't be nervous, or\nI'll have you executed on the spot.'\n\n  This did not seem to encourage the witness at all:  he kept\nshifting from one foot to the other, looking uneasily at the\nQueen, and in his confusion he bit a large piece out of his\nteacup instead of the bread-and-butter.\n\n  Just at this moment Alice felt a very curious sensation, which\npuzzled her a good deal until she made out what it was:  she was\nbeginning to grow larger again, and she thought at first she\nwould get up and leave the court; but on second thoughts she\ndecided to remain where she was as long as there was room for\nher.\n\n  `I wish you wouldn't squeeze so.' said the Dormouse, who was\nsitting next to her.  `I can hardly breathe.'\n\n  `I can't help it,' said Alice very meekly:  `I'm growing.'\n\n  `You've no right to grow here,' said the Dormouse.\n\n  `Don't talk nonsense,' said Alice more boldly:  `you know\nyou're growing too.'\n\n  `Yes, but I grow at a reasonable pace,' said the Dormouse:\n`not in that ridiculous fashion.'  And he got up very sulkily\nand crossed over to the other side of the court.\n\n  All this time the Queen had never left off staring at the\nHatter, and, just as the Dormouse crossed the court, she said to\none of the officers of the court, `Bring me the list of the\nsingers in the last concert!' on which the wretched Hatter\ntrembled so, that he shook both his shoes off.\n\n  `Give your evidence,' the King repeated angrily, `or I'll have\nyou executed, whether you're nervous or not.'\n\n  `I'm a poor man, your Majesty,' the Hatter began, in a\ntrembling voice, `--and I hadn't begun my tea--not above a week\nor so--and what with the bread-and-butter getting so thin--and\nthe twinkling of the tea--'\n\n  `The twinkling of the what?' said the King.\n\n  `It began with the tea,' the Hatter replied.\n\n  `Of course twinkling begins with a T!' said the King sharply.\n`Do you take me for a dunce?  Go on!'\n\n  `I'm a poor man,' the Hatter went on, `and most things\ntwinkled after that--only the March Hare said--'\n\n  `I didn't!' the March Hare interrupted in a great hurry.\n\n  `You did!' said the Hatter.\n\n  `I deny it!' said the March Hare.\n\n  `He denies it,' said the King:  `leave out that part.'\n\n  `Well, at any rate, the Dormouse said--' the Hatter went on,\nlooking anxiously round to see if he would deny it too:  but the\nDormouse denied nothing, being fast asleep.\n\n  `After that,' continued the Hatter, `I cut some more bread-\nand-butter--'\n\n  `But what did the Dormouse say?' one of the jury asked.\n\n  `That I can't remember,' said the Hatter.\n\n  `You MUST remember,' remarked the King, `or I'll have you\nexecuted.'\n\n  The miserable Hatter dropped his teacup and bread-and-butter,\nand went down on one knee.  `I'm a poor man, your Majesty,' he\nbegan.\n\n  `You're a very poor speaker,' said the King.\n\n  Here one of the guinea-pigs cheered, and was immediately\nsuppressed by the officers of the court.  (As that is rather a\nhard word, I will just explain to you how it was done.  They had\na large canvas bag, which tied up at the mouth with strings:\ninto this they slipped the guinea-pig, head first, and then sat\nupon it.)\n\n  `I'm glad I've seen that done,' thought Alice.  `I've so often\nread in the newspapers, at the end of trials, \"There was some\nattempts at applause, which was immediately suppressed by the\nofficers of the court,\" and I never understood what it meant\ntill now.'\n\n  `If that's all you know about it, you may stand down,'\ncontinued the King.\n\n  `I can't go no lower,' said the Hatter:  `I'm on the floor, as\nit is.'\n\n  `Then you may SIT down,' the King replied.\n\n  Here the other guinea-pig cheered, and was suppressed.\n\n  `Come, that finished the guinea-pigs!' thought Alice.  `Now we\nshall get on better.'\n\n  `I'd rather finish my tea,' said the Hatter, with an anxious\nlook at the Queen, who was reading the list of singers.\n\n  `You may go,' said the King, and the Hatter hurriedly left the\ncourt, without even waiting to put his shoes on.\n\n  `--and just take his head off outside,' the Queen added to one\nof the officers:  but the Hatter was out of sight before the\nofficer could get to the door.\n\n  `Call the next witness!' said the King.\n\n  The next witness was the Duchess's cook.  She carried the\npepper-box in her hand, and Alice guessed who it was, even before\nshe got into the court, by the way the people near the door began\nsneezing all at once.\n\n  `Give your evidence,' said the King.\n\n  `Shan't,' said the cook.\n\n  The King looked anxiously at the White Rabbit, who said in a\nlow voice, `Your Majesty must cross-examine THIS witness.'\n\n  `Well, if I must, I must,' the King said, with a melancholy\nair, and, after folding his arms and frowning at the cook till\nhis eyes were nearly out of sight, he said in a deep voice, `What\nare tarts made of?'\n\n  `Pepper, mostly,' said the cook.\n\n  `Treacle,' said a sleepy voice behind her.\n\n  `Collar that Dormouse,' the Queen shrieked out.  `Behead that\nDormouse!  Turn that Dormouse out of court!  Suppress him!  Pinch\nhim!  Off with his whiskers!'\n\n  For some minutes the whole court was in confusion, getting the\nDormouse turned out, and, by the time they had settled down\nagain, the cook had disappeared.\n\n  `Never mind!' said the King, with an air of great relief.\n`Call the next witness.'  And he added in an undertone to the\nQueen, `Really, my dear, YOU must cross-examine the next witness.\nIt quite makes my forehead ache!'\n\n  Alice watched the White Rabbit as he fumbled over the list,\nfeeling very curious to see what the next witness would be like,\n`--for they haven't got much evidence YET,' she said to herself.\nImagine her surprise, when the White Rabbit read out, at the top\nof his shrill little voice, the name `Alice!'\n\n\n\n                           CHAPTER XII\n\n                        Alice's Evidence\n\n\n  `Here!' cried Alice, quite forgetting in the flurry of the\nmoment how large she had grown in the last few minutes, and she\njumped up in such a hurry that she tipped over the jury-box with\nthe edge of her skirt, upsetting all the jurymen on to the heads\nof the crowd below, and there they lay sprawling about, reminding\nher very much of a globe of goldfish she had accidentally upset\nthe week before.\n\n  `Oh, I BEG your pardon!' she exclaimed in a tone of great\ndismay, and began picking them up again as quickly as she could,\nfor the accident of the goldfish kept running in her head, and\nshe had a vague sort of idea that they must be collected at once\nand put back into the jury-box, or they would die.\n\n  `The trial cannot proceed,' said the King in a very grave\nvoice, `until all the jurymen are back in their proper places--\nALL,' he repeated with great emphasis, looking hard at Alice as\nhe said do.\n\n  Alice looked at the jury-box, and saw that, in her haste, she\nhad put the Lizard in head downwards, and the poor little thing\nwas waving its tail about in a melancholy way, being quite unable\nto move.  She soon got it out again, and put it right; `not that\nit signifies much,' she said to herself; `I should think it\nwould be QUITE as much use in the trial one way up as the other.'\n\n  As soon as the jury had a little recovered from the shock of\nbeing upset, and their slates and pencils had been found and\nhanded back to them, they set to work very diligently to write\nout a history of the accident, all except the Lizard, who seemed\ntoo much overcome to do anything but sit with its mouth open,\ngazing up into the roof of the court.\n\n  `What do you know about this business?' the King said to\nAlice.\n\n  `Nothing,' said Alice.\n\n  `Nothing WHATEVER?' persisted the King.\n\n  `Nothing whatever,' said Alice.\n\n  `That's very important,' the King said, turning to the jury.\nThey were just beginning to write this down on their slates, when\nthe White Rabbit interrupted:  `UNimportant, your Majesty means,\nof course,' he said in a very respectful tone, but frowning and\nmaking faces at him as he spoke.\n\n  `UNimportant, of course, I meant,' the King hastily said, and\nwent on to himself in an undertone, `important--unimportant--\nunimportant--important--' as if he were trying which word\nsounded best.\n\n  Some of the jury wrote it down `important,' and some\n`unimportant.'  Alice could see this, as she was near enough to\nlook over their slates; `but it doesn't matter a bit,' she\nthought to herself.\n\n  At this moment the King, who had been for some time busily\nwriting in his note-book, cackled out `Silence!' and read out\nfrom his book, `Rule Forty-two.  ALL PERSONS MORE THAN A MILE\nHIGH TO LEAVE THE COURT.'\n\n  Everybody looked at Alice.\n\n  `I'M not a mile high,' said Alice.\n\n  `You are,' said the King.\n\n  `Nearly two miles high,' added the Queen.\n\n  `Well, I shan't go, at any rate,' said Alice:  `besides,\nthat's not a regular rule:  you invented it just now.'\n\n  `It's the oldest rule in the book,' said the King.\n\n  `Then it ought to be Number One,' said Alice.\n\n  The King turned pale, and shut his note-book hastily.\n`Consider your verdict,' he said to the jury, in a low, trembling\nvoice.\n\n  `There's more evidence to come yet, please your Majesty,' said\nthe White Rabbit, jumping up in a great hurry; `this paper has\njust been picked up.'\n\n  `What's in it?' said the Queen.\n\n  `I haven't opened it yet,' said the White Rabbit, `but it seems\nto be a letter, written by the prisoner to--to somebody.'\n\n  `It must have been that,' said the King, `unless it was\nwritten to nobody, which isn't usual, you know.'\n\n  `Who is it directed to?' said one of the jurymen.\n\n  `It isn't directed at all,' said the White Rabbit; `in fact,\nthere's nothing written on the OUTSIDE.'  He unfolded the paper\nas he spoke, and added `It isn't a letter, after all:  it's a set\nof verses.'\n\n  `Are they in the prisoner's handwriting?' asked another of\nthey jurymen.\n\n  `No, they're not,' said the White Rabbit, `and that's the\nqueerest thing about it.'  (The jury all looked puzzled.)\n\n  `He must have imitated somebody else's hand,' said the King.\n(The jury all brightened up again.)\n\n  `Please your Majesty,' said the Knave, `I didn't write it, and\nthey can't prove I did:  there's no name signed at the end.'\n\n  `If you didn't sign it,' said the King, `that only makes the\nmatter worse.  You MUST have meant some mischief, or else you'd\nhave signed your name like an honest man.'\n\n  There was a general clapping of hands at this:  it was the\nfirst really clever thing the King had said that day.\n\n  `That PROVES his guilt,' said the Queen.\n\n  `It proves nothing of the sort!' said Alice.  `Why, you don't\neven know what they're about!'\n\n  `Read them,' said the King.\n\n  The White Rabbit put on his spectacles.  `Where shall I begin,\nplease your Majesty?' he asked.\n\n  `Begin at the beginning,' the King said gravely, `and go on\ntill you come to the end:  then stop.'\n\n  These were the verses the White Rabbit read:--\n\n        `They told me you had been to her,\n          And mentioned me to him:\n        She gave me a good character,\n          But said I could not swim.\n\n        He sent them word I had not gone\n          (We know it to be true):\n        If she should push the matter on,\n          What would become of you?\n\n        I gave her one, they gave him two,\n          You gave us three or more;\n        They all returned from him to you,\n          Though they were mine before.\n\n        If I or she should chance to be\n          Involved in this affair,\n        He trusts to you to set them free,\n          Exactly as we were.\n\n        My notion was that you had been\n          (Before she had this fit)\n        An obstacle that came between\n          Him, and ourselves, and it.\n\n        Don't let him know she liked them best,\n          For this must ever be\n        A secret, kept from all the rest,\n          Between yourself and me.'\n\n  `That's the most important piece of evidence we've heard yet,'\nsaid the King, rubbing his hands; `so now let the jury--'\n\n  `If any one of them can explain it,' said Alice, (she had\ngrown so large in the last few minutes that she wasn't a bit\nafraid of interrupting him,) `I'll give him sixpence.  _I_ don't\nbelieve there's an atom of meaning in it.'\n\n  The jury all wrote down on their slates, `SHE doesn't believe\nthere's an atom of meaning in it,' but none of them attempted to\nexplain the paper.\n\n  `If there's no meaning in it,' said the King, `that saves a\nworld of trouble, you know, as we needn't try to find any.  And\nyet I don't know,' he went on, spreading out the verses on his\nknee, and looking at them with one eye; `I seem to see some\nmeaning in them, after all.  \"--SAID I COULD NOT SWIM--\" you\ncan't swim, can you?' he added, turning to the Knave.\n\n  The Knave shook his head sadly.  `Do I look like it?' he said.\n(Which he certainly did NOT, being made entirely of cardboard.)\n\n  `All right, so far,' said the King, and he went on muttering\nover the verses to himself:  `\"WE KNOW IT TO BE TRUE--\" that's\nthe jury, of course-- \"I GAVE HER ONE, THEY GAVE HIM TWO--\" why,\nthat must be what he did with the tarts, you know--'\n\n  `But, it goes on \"THEY ALL RETURNED FROM HIM TO YOU,\"' said\nAlice.\n\n  `Why, there they are!' said the King triumphantly, pointing to\nthe tarts on the table.  `Nothing can be clearer than THAT.\nThen again--\"BEFORE SHE HAD THIS FIT--\"  you never had fits, my\ndear, I think?' he said to the Queen.\n\n  `Never!' said the Queen furiously, throwing an inkstand at the\nLizard as she spoke.  (The unfortunate little Bill had left off\nwriting on his slate with one finger, as he found it made no\nmark; but he now hastily began again, using the ink, that was\ntrickling down his face, as long as it lasted.)\n\n  `Then the words don't FIT you,' said the King, looking round\nthe court with a smile.  There was a dead silence.\n\n  `It's a pun!' the King added in an offended tone, and\neverybody laughed, `Let the jury consider their verdict,' the\nKing said, for about the twentieth time that day.\n\n  `No, no!' said the Queen.  `Sentence first--verdict afterwards.'\n\n  `Stuff and nonsense!' said Alice loudly.  `The idea of having\nthe sentence first!'\n\n  `Hold your tongue!' said the Queen, turning purple.\n\n  `I won't!' said Alice.\n\n  `Off with her head!' the Queen shouted at the top of her voice.\nNobody moved.\n\n  `Who cares for you?' said Alice, (she had grown to her full\nsize by this time.)  `You're nothing but a pack of cards!'\n\n  At this the whole pack rose up into the air, and came flying\ndown upon her:  she gave a little scream, half of fright and half\nof anger, and tried to beat them off, and found herself lying on\nthe bank, with her head in the lap of her sister, who was gently\nbrushing away some dead leaves that had fluttered down from the\ntrees upon her face.\n\n  `Wake up, Alice dear!' said her sister; `Why, what a long\nsleep you've had!'\n\n  `Oh, I've had such a curious dream!' said Alice, and she told\nher sister, as well as she could remember them, all these strange\nAdventures of hers that you have just been reading about; and\nwhen she had finished, her sister kissed her, and said, `It WAS a\ncurious dream, dear, certainly:  but now run in to your tea; it's\ngetting late.'  So Alice got up and ran off, thinking while she\nran, as well she might, what a wonderful dream it had been.\n\n  But her sister sat still just as she left her, leaning her\nhead on her hand, watching the setting sun, and thinking of\nlittle Alice and all her wonderful Adventures, till she too began\ndreaming after a fashion, and this was her dream:--\n\n  First, she dreamed of little Alice herself, and once again the\ntiny hands were clasped upon her knee, and the bright eager eyes\nwere looking up into hers--she could hear the very tones of her\nvoice, and see that queer little toss of her head to keep back\nthe wandering hair that WOULD always get into her eyes--and\nstill as she listened, or seemed to listen, the whole place\naround her became alive the strange creatures of her little\nsister's dream.\n\n  The long grass rustled at her feet as the White Rabbit hurried\nby--the frightened Mouse splashed his way through the\nneighbouring pool--she could hear the rattle of the teacups as\nthe March Hare and his friends shared their never-ending meal,\nand the shrill voice of the Queen ordering off her unfortunate\nguests to execution--once more the pig-baby was sneezing on the\nDuchess's knee, while plates and dishes crashed around it--once\nmore the shriek of the Gryphon, the squeaking of the Lizard's\nslate-pencil, and the choking of the suppressed guinea-pigs,\nfilled the air, mixed up with the distant sobs of the miserable\nMock Turtle.\n\n  So she sat on, with closed eyes, and half believed herself in\nWonderland, though she knew she had but to open them again, and\nall would change to dull reality--the grass would be only\nrustling in the wind, and the pool rippling to the waving of the\nreeds--the rattling teacups would change to tinkling sheep-\nbells, and the Queen's shrill cries to the voice of the shepherd\nboy--and the sneeze of the baby, the shriek of the Gryphon, and\nall thy other queer noises, would change (she knew) to the\nconfused clamour of the busy farm-yard--while the lowing of the\ncattle in the distance would take the place of the Mock Turtle's\nheavy sobs.\n\n  Lastly, she pictured to herself how this same little sister of\nhers would, in the after-time, be herself a grown woman; and how\nshe would keep, through all her riper years, the simple and\nloving heart of her childhood:  and how she would gather about\nher other little children, and make THEIR eyes bright and eager\nwith many a strange tale, perhaps even with the dream of\nWonderland of long ago:  and how she would feel with all their\nsimple sorrows, and find a pleasure in all their simple joys,\nremembering her own child-life, and the happy summer days.\n\n                             THE END\n\u001a"
  },
  {
    "path": "testdata/canterbury/asyoulik.txt",
    "content": "\tAS YOU LIKE IT\n\n\n\tDRAMATIS PERSONAE\n\n\nDUKE SENIOR\tliving in banishment.\n\nDUKE FREDERICK\this brother, an usurper of his dominions.\n\n\nAMIENS\t|\n\t|  lords attending on the banished duke.\nJAQUES\t|\n\n\nLE BEAU\ta courtier attending upon Frederick.\n\nCHARLES\twrestler to Frederick.\n\n\nOLIVER\t\t|\n\t\t|\nJAQUES (JAQUES DE BOYS:)  \t|  sons of Sir Rowland de Boys.\n\t\t|\nORLANDO\t\t|\n\n\nADAM\t|\n\t|  servants to Oliver.\nDENNIS\t|\n\n\nTOUCHSTONE\ta clown.\n\nSIR OLIVER MARTEXT\ta vicar.\n\n\nCORIN\t|\n\t|  shepherds.\nSILVIUS\t|\n\n\nWILLIAM\ta country fellow in love with Audrey.\n\n\tA person representing HYMEN. (HYMEN:)\n\nROSALIND\tdaughter to the banished duke.\n\nCELIA\tdaughter to Frederick.\n\nPHEBE\ta shepherdess.\n\nAUDREY\ta country wench.\n\n\tLords, pages, and attendants, &c.\n\t(Forester:)\n\t(A Lord:)\n\t(First Lord:)\n\t(Second Lord:)\n\t(First Page:)\n\t(Second Page:)\n\n\nSCENE\tOliver's house; Duke Frederick's court; and the\n\tForest of Arden.\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT I\n\n\n\nSCENE I\tOrchard of Oliver's house.\n\n\n\t[Enter ORLANDO and ADAM]\n\nORLANDO\tAs I remember, Adam, it was upon this fashion\n\tbequeathed me by will but poor a thousand crowns,\n\tand, as thou sayest, charged my brother, on his\n\tblessing, to breed me well: and there begins my\n\tsadness. My brother Jaques he keeps at school, and\n\treport speaks goldenly of his profit: for my part,\n\the keeps me rustically at home, or, to speak more\n\tproperly, stays me here at home unkept; for call you\n\tthat keeping for a gentleman of my birth, that\n\tdiffers not from the stalling of an ox? His horses\n\tare bred better; for, besides that they are fair\n\twith their feeding, they are taught their manage,\n\tand to that end riders dearly hired: but I, his\n\tbrother, gain nothing under him but growth; for the\n\twhich his animals on his dunghills are as much\n\tbound to him as I. Besides this nothing that he so\n\tplentifully gives me, the something that nature gave\n\tme his countenance seems to take from me: he lets\n\tme feed with his hinds, bars me the place of a\n\tbrother, and, as much as in him lies, mines my\n\tgentility with my education. This is it, Adam, that\n\tgrieves me; and the spirit of my father, which I\n\tthink is within me, begins to mutiny against this\n\tservitude: I will no longer endure it, though yet I\n\tknow no wise remedy how to avoid it.\n\nADAM\tYonder comes my master, your brother.\n\nORLANDO\tGo apart, Adam, and thou shalt hear how he will\n\tshake me up.\n\n\t[Enter OLIVER]\n\nOLIVER\tNow, sir! what make you here?\n\nORLANDO\tNothing: I am not taught to make any thing.\n\nOLIVER\tWhat mar you then, sir?\n\nORLANDO\tMarry, sir, I am helping you to mar that which God\n\tmade, a poor unworthy brother of yours, with idleness.\n\nOLIVER\tMarry, sir, be better employed, and be naught awhile.\n\nORLANDO\tShall I keep your hogs and eat husks with them?\n\tWhat prodigal portion have I spent, that I should\n\tcome to such penury?\n\nOLIVER\tKnow you where your are, sir?\n\nORLANDO\tO, sir, very well; here in your orchard.\n\nOLIVER\tKnow you before whom, sir?\n\nORLANDO\tAy, better than him I am before knows me. I know\n\tyou are my eldest brother; and, in the gentle\n\tcondition of blood, you should so know me. The\n\tcourtesy of nations allows you my better, in that\n\tyou are the first-born; but the same tradition\n\ttakes not away my blood, were there twenty brothers\n\tbetwixt us: I have as much of my father in me as\n\tyou; albeit, I confess, your coming before me is\n\tnearer to his reverence.\n\nOLIVER\tWhat, boy!\n\nORLANDO\tCome, come, elder brother, you are too young in this.\n\nOLIVER\tWilt thou lay hands on me, villain?\n\nORLANDO\tI am no villain; I am the youngest son of Sir\n\tRowland de Boys; he was my father, and he is thrice\n\ta villain that says such a father begot villains.\n\tWert thou not my brother, I would not take this hand\n\tfrom thy throat till this other had pulled out thy\n\ttongue for saying so: thou hast railed on thyself.\n\nADAM\tSweet masters, be patient: for your father's\n\tremembrance, be at accord.\n\nOLIVER\tLet me go, I say.\n\nORLANDO\tI will not, till I please: you shall hear me. My\n\tfather charged you in his will to give me good\n\teducation: you have trained me like a peasant,\n\tobscuring and hiding from me all gentleman-like\n\tqualities. The spirit of my father grows strong in\n\tme, and I will no longer endure it: therefore allow\n\tme such exercises as may become a gentleman, or\n\tgive me the poor allottery my father left me by\n\ttestament; with that I will go buy my fortunes.\n\nOLIVER\tAnd what wilt thou do? beg, when that is spent?\n\tWell, sir, get you in: I will not long be troubled\n\twith you; you shall have some part of your will: I\n\tpray you, leave me.\n\nORLANDO\tI will no further offend you than becomes me for my good.\n\nOLIVER\tGet you with him, you old dog.\n\nADAM\tIs 'old dog' my reward? Most true, I have lost my\n\tteeth in your service. God be with my old master!\n\the would not have spoke such a word.\n\n\t[Exeunt ORLANDO and ADAM]\n\nOLIVER\tIs it even so? begin you to grow upon me? I will\n\tphysic your rankness, and yet give no thousand\n\tcrowns neither. Holla, Dennis!\n\n\t[Enter DENNIS]\n\nDENNIS\tCalls your worship?\n\nOLIVER\tWas not Charles, the duke's wrestler, here to speak with me?\n\nDENNIS\tSo please you, he is here at the door and importunes\n\taccess to you.\n\nOLIVER\tCall him in.\n\n\t[Exit DENNIS]\n\n\t'Twill be a good way; and to-morrow the wrestling is.\n\n\t[Enter CHARLES]\n\nCHARLES\tGood morrow to your worship.\n\nOLIVER\tGood Monsieur Charles, what's the new news at the\n\tnew court?\n\nCHARLES\tThere's no news at the court, sir, but the old news:\n\tthat is, the old duke is banished by his younger\n\tbrother the new duke; and three or four loving lords\n\thave put themselves into voluntary exile with him,\n\twhose lands and revenues enrich the new duke;\n\ttherefore he gives them good leave to wander.\n\nOLIVER\tCan you tell if Rosalind, the duke's daughter, be\n\tbanished with her father?\n\nCHARLES\tO, no; for the duke's daughter, her cousin, so loves\n\ther, being ever from their cradles bred together,\n\tthat she would have followed her exile, or have died\n\tto stay behind her. She is at the court, and no\n\tless beloved of her uncle than his own daughter; and\n\tnever two ladies loved as they do.\n\nOLIVER\tWhere will the old duke live?\n\nCHARLES\tThey say he is already in the forest of Arden, and\n\ta many merry men with him; and there they live like\n\tthe old Robin Hood of England: they say many young\n\tgentlemen flock to him every day, and fleet the time\n\tcarelessly, as they did in the golden world.\n\nOLIVER\tWhat, you wrestle to-morrow before the new duke?\n\nCHARLES\tMarry, do I, sir; and I came to acquaint you with a\n\tmatter. I am given, sir, secretly to understand\n\tthat your younger brother Orlando hath a disposition\n\tto come in disguised against me to try a fall.\n\tTo-morrow, sir, I wrestle for my credit; and he that\n\tescapes me without some broken limb shall acquit him\n\twell. Your brother is but young and tender; and,\n\tfor your love, I would be loath to foil him, as I\n\tmust, for my own honour, if he come in: therefore,\n\tout of my love to you, I came hither to acquaint you\n\twithal, that either you might stay him from his\n\tintendment or brook such disgrace well as he shall\n\trun into, in that it is a thing of his own search\n\tand altogether against my will.\n\nOLIVER\tCharles, I thank thee for thy love to me, which\n\tthou shalt find I will most kindly requite. I had\n\tmyself notice of my brother's purpose herein and\n\thave by underhand means laboured to dissuade him from\n\tit, but he is resolute. I'll tell thee, Charles:\n\tit is the stubbornest young fellow of France, full\n\tof ambition, an envious emulator of every man's\n\tgood parts, a secret and villanous contriver against\n\tme his natural brother: therefore use thy\n\tdiscretion; I had as lief thou didst break his neck\n\tas his finger. And thou wert best look to't; for if\n\tthou dost him any slight disgrace or if he do not\n\tmightily grace himself on thee, he will practise\n\tagainst thee by poison, entrap thee by some\n\ttreacherous device and never leave thee till he\n\thath ta'en thy life by some indirect means or other;\n\tfor, I assure thee, and almost with tears I speak\n\tit, there is not one so young and so villanous this\n\tday living. I speak but brotherly of him; but\n\tshould I anatomize him to thee as he is, I must\n\tblush and weep and thou must look pale and wonder.\n\nCHARLES\tI am heartily glad I came hither to you. If he come\n\tto-morrow, I'll give him his payment: if ever he go\n\talone again, I'll never wrestle for prize more: and\n\tso God keep your worship!\n\nOLIVER\tFarewell, good Charles.\n\n\t[Exit CHARLES]\n\n\tNow will I stir this gamester: I hope I shall see\n\tan end of him; for my soul, yet I know not why,\n\thates nothing more than he. Yet he's gentle, never\n\tschooled and yet learned, full of noble device, of\n\tall sorts enchantingly beloved, and indeed so much\n\tin the heart of the world, and especially of my own\n\tpeople, who best know him, that I am altogether\n\tmisprised: but it shall not be so long; this\n\twrestler shall clear all: nothing remains but that\n\tI kindle the boy thither; which now I'll go about.\n\n\t[Exit]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT I\n\n\n\nSCENE II\tLawn before the Duke's palace.\n\n\n\t[Enter CELIA and ROSALIND]\n\nCELIA\tI pray thee, Rosalind, sweet my coz, be merry.\n\nROSALIND\tDear Celia, I show more mirth than I am mistress of;\n\tand would you yet I were merrier? Unless you could\n\tteach me to forget a banished father, you must not\n\tlearn me how to remember any extraordinary pleasure.\n\nCELIA\tHerein I see thou lovest me not with the full weight\n\tthat I love thee. If my uncle, thy banished father,\n\thad banished thy uncle, the duke my father, so thou\n\thadst been still with me, I could have taught my\n\tlove to take thy father for mine: so wouldst thou,\n\tif the truth of thy love to me were so righteously\n\ttempered as mine is to thee.\n\nROSALIND\tWell, I will forget the condition of my estate, to\n\trejoice in yours.\n\nCELIA\tYou know my father hath no child but I, nor none is\n\tlike to have: and, truly, when he dies, thou shalt\n\tbe his heir, for what he hath taken away from thy\n\tfather perforce, I will render thee again in\n\taffection; by mine honour, I will; and when I break\n\tthat oath, let me turn monster: therefore, my\n\tsweet Rose, my dear Rose, be merry.\n\nROSALIND\tFrom henceforth I will, coz, and devise sports. Let\n\tme see; what think you of falling in love?\n\nCELIA\tMarry, I prithee, do, to make sport withal: but\n\tlove no man in good earnest; nor no further in sport\n\tneither than with safety of a pure blush thou mayst\n\tin honour come off again.\n\nROSALIND\tWhat shall be our sport, then?\n\nCELIA\tLet us sit and mock the good housewife Fortune from\n\ther wheel, that her gifts may henceforth be bestowed equally.\n\nROSALIND\tI would we could do so, for her benefits are\n\tmightily misplaced, and the bountiful blind woman\n\tdoth most mistake in her gifts to women.\n\nCELIA\t'Tis true; for those that she makes fair she scarce\n\tmakes honest, and those that she makes honest she\n\tmakes very ill-favouredly.\n\nROSALIND\tNay, now thou goest from Fortune's office to\n\tNature's: Fortune reigns in gifts of the world,\n\tnot in the lineaments of Nature.\n\n\t[Enter TOUCHSTONE]\n\nCELIA\tNo? when Nature hath made a fair creature, may she\n\tnot by Fortune fall into the fire? Though Nature\n\thath given us wit to flout at Fortune, hath not\n\tFortune sent in this fool to cut off the argument?\n\nROSALIND\tIndeed, there is Fortune too hard for Nature, when\n\tFortune makes Nature's natural the cutter-off of\n\tNature's wit.\n\nCELIA\tPeradventure this is not Fortune's work neither, but\n\tNature's; who perceiveth our natural wits too dull\n\tto reason of such goddesses and hath sent this\n\tnatural for our whetstone; for always the dulness of\n\tthe fool is the whetstone of the wits. How now,\n\twit! whither wander you?\n\nTOUCHSTONE\tMistress, you must come away to your father.\n\nCELIA\tWere you made the messenger?\n\nTOUCHSTONE\tNo, by mine honour, but I was bid to come for you.\n\nROSALIND\tWhere learned you that oath, fool?\n\nTOUCHSTONE\tOf a certain knight that swore by his honour they\n\twere good pancakes and swore by his honour the\n\tmustard was naught: now I'll stand to it, the\n\tpancakes were naught and the mustard was good, and\n\tyet was not the knight forsworn.\n\nCELIA\tHow prove you that, in the great heap of your\n\tknowledge?\n\nROSALIND\tAy, marry, now unmuzzle your wisdom.\n\nTOUCHSTONE\tStand you both forth now: stroke your chins, and\n\tswear by your beards that I am a knave.\n\nCELIA\tBy our beards, if we had them, thou art.\n\nTOUCHSTONE\tBy my knavery, if I had it, then I were; but if you\n\tswear by that that is not, you are not forsworn: no\n\tmore was this knight swearing by his honour, for he\n\tnever had any; or if he had, he had sworn it away\n\tbefore ever he saw those pancakes or that mustard.\n\nCELIA\tPrithee, who is't that thou meanest?\n\nTOUCHSTONE\tOne that old Frederick, your father, loves.\n\nCELIA\tMy father's love is enough to honour him: enough!\n\tspeak no more of him; you'll be whipped for taxation\n\tone of these days.\n\nTOUCHSTONE\tThe more pity, that fools may not speak wisely what\n\twise men do foolishly.\n\nCELIA\tBy my troth, thou sayest true; for since the little\n\twit that fools have was silenced, the little foolery\n\tthat wise men have makes a great show. Here comes\n\tMonsieur Le Beau.\n\nROSALIND\tWith his mouth full of news.\n\nCELIA\tWhich he will put on us, as pigeons feed their young.\n\nROSALIND\tThen shall we be news-crammed.\n\nCELIA\tAll the better; we shall be the more marketable.\n\n\t[Enter LE BEAU]\n\n\tBon jour, Monsieur Le Beau: what's the news?\n\nLE BEAU\tFair princess, you have lost much good sport.\n\nCELIA\tSport! of what colour?\n\nLE BEAU\tWhat colour, madam! how shall I answer you?\n\nROSALIND\tAs wit and fortune will.\n\nTOUCHSTONE\tOr as the Destinies decree.\n\nCELIA\tWell said: that was laid on with a trowel.\n\nTOUCHSTONE\tNay, if I keep not my rank,--\n\nROSALIND\tThou losest thy old smell.\n\nLE BEAU\tYou amaze me, ladies: I would have told you of good\n\twrestling, which you have lost the sight of.\n\nROSALIND\tYou tell us the manner of the wrestling.\n\nLE BEAU\tI will tell you the beginning; and, if it please\n\tyour ladyships, you may see the end; for the best is\n\tyet to do; and here, where you are, they are coming\n\tto perform it.\n\nCELIA\tWell, the beginning, that is dead and buried.\n\nLE BEAU\tThere comes an old man and his three sons,--\n\nCELIA\tI could match this beginning with an old tale.\n\nLE BEAU\tThree proper young men, of excellent growth and presence.\n\nROSALIND\tWith bills on their necks, 'Be it known unto all men\n\tby these presents.'\n\nLE BEAU\tThe eldest of the three wrestled with Charles, the\n\tduke's wrestler; which Charles in a moment threw him\n\tand broke three of his ribs, that there is little\n\thope of life in him: so he served the second, and\n\tso the third. Yonder they lie; the poor old man,\n\ttheir father, making such pitiful dole over them\n\tthat all the beholders take his part with weeping.\n\nROSALIND\tAlas!\n\nTOUCHSTONE\tBut what is the sport, monsieur, that the ladies\n\thave lost?\n\nLE BEAU\tWhy, this that I speak of.\n\nTOUCHSTONE\tThus men may grow wiser every day: it is the first\n\ttime that ever I heard breaking of ribs was sport\n\tfor ladies.\n\nCELIA\tOr I, I promise thee.\n\nROSALIND\tBut is there any else longs to see this broken music\n\tin his sides? is there yet another dotes upon\n\trib-breaking? Shall we see this wrestling, cousin?\n\nLE BEAU\tYou must, if you stay here; for here is the place\n\tappointed for the wrestling, and they are ready to\n\tperform it.\n\nCELIA\tYonder, sure, they are coming: let us now stay and see it.\n\n\t[Flourish. Enter DUKE FREDERICK, Lords, ORLANDO,\n\tCHARLES, and Attendants]\n\nDUKE FREDERICK\tCome on: since the youth will not be entreated, his\n\town peril on his forwardness.\n\nROSALIND\tIs yonder the man?\n\nLE BEAU\tEven he, madam.\n\nCELIA\tAlas, he is too young! yet he looks successfully.\n\nDUKE FREDERICK\tHow now, daughter and cousin! are you crept hither\n\tto see the wrestling?\n\nROSALIND\tAy, my liege, so please you give us leave.\n\nDUKE FREDERICK\tYou will take little delight in it, I can tell you;\n\tthere is such odds in the man. In pity of the\n\tchallenger's youth I would fain dissuade him, but he\n\twill not be entreated. Speak to him, ladies; see if\n\tyou can move him.\n\nCELIA\tCall him hither, good Monsieur Le Beau.\n\nDUKE FREDERICK\tDo so: I'll not be by.\n\nLE BEAU\tMonsieur the challenger, the princesses call for you.\n\nORLANDO\tI attend them with all respect and duty.\n\nROSALIND\tYoung man, have you challenged Charles the wrestler?\n\nORLANDO\tNo, fair princess; he is the general challenger: I\n\tcome but in, as others do, to try with him the\n\tstrength of my youth.\n\nCELIA\tYoung gentleman, your spirits are too bold for your\n\tyears. You have seen cruel proof of this man's\n\tstrength: if you saw yourself with your eyes or\n\tknew yourself with your judgment, the fear of your\n\tadventure would counsel you to a more equal\n\tenterprise. We pray you, for your own sake, to\n\tembrace your own safety and give over this attempt.\n\nROSALIND\tDo, young sir; your reputation shall not therefore\n\tbe misprised: we will make it our suit to the duke\n\tthat the wrestling might not go forward.\n\nORLANDO\tI beseech you, punish me not with your hard\n\tthoughts; wherein I confess me much guilty, to deny\n\tso fair and excellent ladies any thing. But let\n\tyour fair eyes and gentle wishes go with me to my\n\ttrial: wherein if I be foiled, there is but one\n\tshamed that was never gracious; if killed, but one\n\tdead that was willing to be so: I shall do my\n\tfriends no wrong, for I have none to lament me, the\n\tworld no injury, for in it I have nothing; only in\n\tthe world I fill up a place, which may be better\n\tsupplied when I have made it empty.\n\nROSALIND\tThe little strength that I have, I would it were with you.\n\nCELIA\tAnd mine, to eke out hers.\n\nROSALIND\tFare you well: pray heaven I be deceived in you!\n\nCELIA\tYour heart's desires be with you!\n\nCHARLES\tCome, where is this young gallant that is so\n\tdesirous to lie with his mother earth?\n\nORLANDO\tReady, sir; but his will hath in it a more modest working.\n\nDUKE FREDERICK\tYou shall try but one fall.\n\nCHARLES\tNo, I warrant your grace, you shall not entreat him\n\tto a second, that have so mightily persuaded him\n\tfrom a first.\n\nORLANDO\tAn you mean to mock me after, you should not have\n\tmocked me before: but come your ways.\n\nROSALIND\tNow Hercules be thy speed, young man!\n\nCELIA\tI would I were invisible, to catch the strong\n\tfellow by the leg.\n\n\t[They wrestle]\n\nROSALIND\tO excellent young man!\n\nCELIA\tIf I had a thunderbolt in mine eye, I can tell who\n\tshould down.\n\n\t[Shout. CHARLES is thrown]\n\nDUKE FREDERICK\tNo more, no more.\n\nORLANDO\tYes, I beseech your grace: I am not yet well breathed.\n\nDUKE FREDERICK\tHow dost thou, Charles?\n\nLE BEAU\tHe cannot speak, my lord.\n\nDUKE FREDERICK\tBear him away. What is thy name, young man?\n\nORLANDO\tOrlando, my liege; the youngest son of Sir Rowland de Boys.\n\nDUKE FREDERICK\tI would thou hadst been son to some man else:\n\tThe world esteem'd thy father honourable,\n\tBut I did find him still mine enemy:\n\tThou shouldst have better pleased me with this deed,\n\tHadst thou descended from another house.\n\tBut fare thee well; thou art a gallant youth:\n\tI would thou hadst told me of another father.\n\n\t[Exeunt DUKE FREDERICK, train, and LE BEAU]\n\nCELIA\tWere I my father, coz, would I do this?\n\nORLANDO\tI am more proud to be Sir Rowland's son,\n\tHis youngest son; and would not change that calling,\n\tTo be adopted heir to Frederick.\n\nROSALIND\tMy father loved Sir Rowland as his soul,\n\tAnd all the world was of my father's mind:\n\tHad I before known this young man his son,\n\tI should have given him tears unto entreaties,\n\tEre he should thus have ventured.\n\nCELIA\tGentle cousin,\n\tLet us go thank him and encourage him:\n\tMy father's rough and envious disposition\n\tSticks me at heart. Sir, you have well deserved:\n\tIf you do keep your promises in love\n\tBut justly, as you have exceeded all promise,\n\tYour mistress shall be happy.\n\nROSALIND\tGentleman,\n\n\t[Giving him a chain from her neck]\n\n\tWear this for me, one out of suits with fortune,\n\tThat could give more, but that her hand lacks means.\n\tShall we go, coz?\n\nCELIA\t                  Ay. Fare you well, fair gentleman.\n\nORLANDO\tCan I not say, I thank you? My better parts\n\tAre all thrown down, and that which here stands up\n\tIs but a quintain, a mere lifeless block.\n\nROSALIND\tHe calls us back: my pride fell with my fortunes;\n\tI'll ask him what he would. Did you call, sir?\n\tSir, you have wrestled well and overthrown\n\tMore than your enemies.\n\nCELIA\tWill you go, coz?\n\nROSALIND\tHave with you. Fare you well.\n\n\t[Exeunt ROSALIND and CELIA]\n\nORLANDO\tWhat passion hangs these weights upon my tongue?\n\tI cannot speak to her, yet she urged conference.\n\tO poor Orlando, thou art overthrown!\n\tOr Charles or something weaker masters thee.\n\n\t[Re-enter LE BEAU]\n\nLE BEAU\tGood sir, I do in friendship counsel you\n\tTo leave this place. Albeit you have deserved\n\tHigh commendation, true applause and love,\n\tYet such is now the duke's condition\n\tThat he misconstrues all that you have done.\n\tThe duke is humorous; what he is indeed,\n\tMore suits you to conceive than I to speak of.\n\nORLANDO\tI thank you, sir: and, pray you, tell me this:\n\tWhich of the two was daughter of the duke\n\tThat here was at the wrestling?\n\nLE BEAU\tNeither his daughter, if we judge by manners;\n\tBut yet indeed the lesser is his daughter\n\tThe other is daughter to the banish'd duke,\n\tAnd here detain'd by her usurping uncle,\n\tTo keep his daughter company; whose loves\n\tAre dearer than the natural bond of sisters.\n\tBut I can tell you that of late this duke\n\tHath ta'en displeasure 'gainst his gentle niece,\n\tGrounded upon no other argument\n\tBut that the people praise her for her virtues\n\tAnd pity her for her good father's sake;\n\tAnd, on my life, his malice 'gainst the lady\n\tWill suddenly break forth. Sir, fare you well:\n\tHereafter, in a better world than this,\n\tI shall desire more love and knowledge of you.\n\nORLANDO\tI rest much bounden to you: fare you well.\n\n\t[Exit LE BEAU]\n\n\tThus must I from the smoke into the smother;\n\tFrom tyrant duke unto a tyrant brother:\n\tBut heavenly Rosalind!\n\n\t[Exit]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT I\n\n\n\nSCENE III\tA room in the palace.\n\n\n\t[Enter CELIA and ROSALIND]\n\nCELIA\tWhy, cousin! why, Rosalind! Cupid have mercy! not a word?\n\nROSALIND\tNot one to throw at a dog.\n\nCELIA\tNo, thy words are too precious to be cast away upon\n\tcurs; throw some of them at me; come, lame me with reasons.\n\nROSALIND\tThen there were two cousins laid up; when the one\n\tshould be lamed with reasons and the other mad\n\twithout any.\n\nCELIA\tBut is all this for your father?\n\nROSALIND\tNo, some of it is for my child's father. O, how\n\tfull of briers is this working-day world!\n\nCELIA\tThey are but burs, cousin, thrown upon thee in\n\tholiday foolery: if we walk not in the trodden\n\tpaths our very petticoats will catch them.\n\nROSALIND\tI could shake them off my coat: these burs are in my heart.\n\nCELIA\tHem them away.\n\nROSALIND\tI would try, if I could cry 'hem' and have him.\n\nCELIA\tCome, come, wrestle with thy affections.\n\nROSALIND\tO, they take the part of a better wrestler than myself!\n\nCELIA\tO, a good wish upon you! you will try in time, in\n\tdespite of a fall. But, turning these jests out of\n\tservice, let us talk in good earnest: is it\n\tpossible, on such a sudden, you should fall into so\n\tstrong a liking with old Sir Rowland's youngest son?\n\nROSALIND\tThe duke my father loved his father dearly.\n\nCELIA\tDoth it therefore ensue that you should love his son\n\tdearly? By this kind of chase, I should hate him,\n\tfor my father hated his father dearly; yet I hate\n\tnot Orlando.\n\nROSALIND\tNo, faith, hate him not, for my sake.\n\nCELIA\tWhy should I not? doth he not deserve well?\n\nROSALIND\tLet me love him for that, and do you love him\n\tbecause I do. Look, here comes the duke.\n\nCELIA\tWith his eyes full of anger.\n\n\t[Enter DUKE FREDERICK, with Lords]\n\nDUKE FREDERICK\tMistress, dispatch you with your safest haste\n\tAnd get you from our court.\n\nROSALIND\tMe, uncle?\n\nDUKE FREDERICK\tYou, cousin\n\tWithin these ten days if that thou be'st found\n\tSo near our public court as twenty miles,\n\tThou diest for it.\n\nROSALIND\t                  I do beseech your grace,\n\tLet me the knowledge of my fault bear with me:\n\tIf with myself I hold intelligence\n\tOr have acquaintance with mine own desires,\n\tIf that I do not dream or be not frantic,--\n\tAs I do trust I am not--then, dear uncle,\n\tNever so much as in a thought unborn\n\tDid I offend your highness.\n\nDUKE FREDERICK\tThus do all traitors:\n\tIf their purgation did consist in words,\n\tThey are as innocent as grace itself:\n\tLet it suffice thee that I trust thee not.\n\nROSALIND\tYet your mistrust cannot make me a traitor:\n\tTell me whereon the likelihood depends.\n\nDUKE FREDERICK\tThou art thy father's daughter; there's enough.\n\nROSALIND\tSo was I when your highness took his dukedom;\n\tSo was I when your highness banish'd him:\n\tTreason is not inherited, my lord;\n\tOr, if we did derive it from our friends,\n\tWhat's that to me? my father was no traitor:\n\tThen, good my liege, mistake me not so much\n\tTo think my poverty is treacherous.\n\nCELIA\tDear sovereign, hear me speak.\n\nDUKE FREDERICK\tAy, Celia; we stay'd her for your sake,\n\tElse had she with her father ranged along.\n\nCELIA\tI did not then entreat to have her stay;\n\tIt was your pleasure and your own remorse:\n\tI was too young that time to value her;\n\tBut now I know her: if she be a traitor,\n\tWhy so am I; we still have slept together,\n\tRose at an instant, learn'd, play'd, eat together,\n\tAnd wheresoever we went, like Juno's swans,\n\tStill we went coupled and inseparable.\n\nDUKE FREDERICK\tShe is too subtle for thee; and her smoothness,\n\tHer very silence and her patience\n\tSpeak to the people, and they pity her.\n\tThou art a fool: she robs thee of thy name;\n\tAnd thou wilt show more bright and seem more virtuous\n\tWhen she is gone. Then open not thy lips:\n\tFirm and irrevocable is my doom\n\tWhich I have pass'd upon her; she is banish'd.\n\nCELIA\tPronounce that sentence then on me, my liege:\n\tI cannot live out of her company.\n\nDUKE FREDERICK\tYou are a fool. You, niece, provide yourself:\n\tIf you outstay the time, upon mine honour,\n\tAnd in the greatness of my word, you die.\n\n\t[Exeunt DUKE FREDERICK and Lords]\n\nCELIA\tO my poor Rosalind, whither wilt thou go?\n\tWilt thou change fathers? I will give thee mine.\n\tI charge thee, be not thou more grieved than I am.\n\nROSALIND\tI have more cause.\n\nCELIA\t                  Thou hast not, cousin;\n\tPrithee be cheerful: know'st thou not, the duke\n\tHath banish'd me, his daughter?\n\nROSALIND\tThat he hath not.\n\nCELIA\tNo, hath not? Rosalind lacks then the love\n\tWhich teacheth thee that thou and I am one:\n\tShall we be sunder'd? shall we part, sweet girl?\n\tNo: let my father seek another heir.\n\tTherefore devise with me how we may fly,\n\tWhither to go and what to bear with us;\n\tAnd do not seek to take your change upon you,\n\tTo bear your griefs yourself and leave me out;\n\tFor, by this heaven, now at our sorrows pale,\n\tSay what thou canst, I'll go along with thee.\n\nROSALIND\tWhy, whither shall we go?\n\nCELIA\tTo seek my uncle in the forest of Arden.\n\nROSALIND\tAlas, what danger will it be to us,\n\tMaids as we are, to travel forth so far!\n\tBeauty provoketh thieves sooner than gold.\n\nCELIA\tI'll put myself in poor and mean attire\n\tAnd with a kind of umber smirch my face;\n\tThe like do you: so shall we pass along\n\tAnd never stir assailants.\n\nROSALIND\tWere it not better,\n\tBecause that I am more than common tall,\n\tThat I did suit me all points like a man?\n\tA gallant curtle-axe upon my thigh,\n\tA boar-spear in my hand; and--in my heart\n\tLie there what hidden woman's fear there will--\n\tWe'll have a swashing and a martial outside,\n\tAs many other mannish cowards have\n\tThat do outface it with their semblances.\n\nCELIA\tWhat shall I call thee when thou art a man?\n\nROSALIND\tI'll have no worse a name than Jove's own page;\n\tAnd therefore look you call me Ganymede.\n\tBut what will you be call'd?\n\nCELIA\tSomething that hath a reference to my state\n\tNo longer Celia, but Aliena.\n\nROSALIND\tBut, cousin, what if we assay'd to steal\n\tThe clownish fool out of your father's court?\n\tWould he not be a comfort to our travel?\n\nCELIA\tHe'll go along o'er the wide world with me;\n\tLeave me alone to woo him. Let's away,\n\tAnd get our jewels and our wealth together,\n\tDevise the fittest time and safest way\n\tTo hide us from pursuit that will be made\n\tAfter my flight. Now go we in content\n\tTo liberty and not to banishment.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE I\tThe Forest of Arden.\n\n\n\t[Enter DUKE SENIOR, AMIENS, and two or three Lords,\n\tlike foresters]\n\nDUKE SENIOR\tNow, my co-mates and brothers in exile,\n\tHath not old custom made this life more sweet\n\tThan that of painted pomp? Are not these woods\n\tMore free from peril than the envious court?\n\tHere feel we but the penalty of Adam,\n\tThe seasons' difference, as the icy fang\n\tAnd churlish chiding of the winter's wind,\n\tWhich, when it bites and blows upon my body,\n\tEven till I shrink with cold, I smile and say\n\t'This is no flattery: these are counsellors\n\tThat feelingly persuade me what I am.'\n\tSweet are the uses of adversity,\n\tWhich, like the toad, ugly and venomous,\n\tWears yet a precious jewel in his head;\n\tAnd this our life exempt from public haunt\n\tFinds tongues in trees, books in the running brooks,\n\tSermons in stones and good in every thing.\n\tI would not change it.\n\nAMIENS\tHappy is your grace,\n\tThat can translate the stubbornness of fortune\n\tInto so quiet and so sweet a style.\n\nDUKE SENIOR\tCome, shall we go and kill us venison?\n\tAnd yet it irks me the poor dappled fools,\n\tBeing native burghers of this desert city,\n\tShould in their own confines with forked heads\n\tHave their round haunches gored.\n\nFirst Lord\tIndeed, my lord,\n\tThe melancholy Jaques grieves at that,\n\tAnd, in that kind, swears you do more usurp\n\tThan doth your brother that hath banish'd you.\n\tTo-day my Lord of Amiens and myself\n\tDid steal behind him as he lay along\n\tUnder an oak whose antique root peeps out\n\tUpon the brook that brawls along this wood:\n\tTo the which place a poor sequester'd stag,\n\tThat from the hunter's aim had ta'en a hurt,\n\tDid come to languish, and indeed, my lord,\n\tThe wretched animal heaved forth such groans\n\tThat their discharge did stretch his leathern coat\n\tAlmost to bursting, and the big round tears\n\tCoursed one another down his innocent nose\n\tIn piteous chase; and thus the hairy fool\n\tMuch marked of the melancholy Jaques,\n\tStood on the extremest verge of the swift brook,\n\tAugmenting it with tears.\n\nDUKE SENIOR\tBut what said Jaques?\n\tDid he not moralize this spectacle?\n\nFirst Lord\tO, yes, into a thousand similes.\n\tFirst, for his weeping into the needless stream;\n\t'Poor deer,' quoth he, 'thou makest a testament\n\tAs worldlings do, giving thy sum of more\n\tTo that which had too much:' then, being there alone,\n\tLeft and abandon'd of his velvet friends,\n\t''Tis right:' quoth he; 'thus misery doth part\n\tThe flux of company:' anon a careless herd,\n\tFull of the pasture, jumps along by him\n\tAnd never stays to greet him; 'Ay' quoth Jaques,\n\t'Sweep on, you fat and greasy citizens;\n\t'Tis just the fashion: wherefore do you look\n\tUpon that poor and broken bankrupt there?'\n\tThus most invectively he pierceth through\n\tThe body of the country, city, court,\n\tYea, and of this our life, swearing that we\n\tAre mere usurpers, tyrants and what's worse,\n\tTo fright the animals and to kill them up\n\tIn their assign'd and native dwelling-place.\n\nDUKE SENIOR\tAnd did you leave him in this contemplation?\n\nSecond Lord\tWe did, my lord, weeping and commenting\n\tUpon the sobbing deer.\n\nDUKE SENIOR\tShow me the place:\n\tI love to cope him in these sullen fits,\n\tFor then he's full of matter.\n\nFirst Lord\tI'll bring you to him straight.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE II\tA room in the palace.\n\n\n\t[Enter DUKE FREDERICK, with Lords]\n\nDUKE FREDERICK\tCan it be possible that no man saw them?\n\tIt cannot be: some villains of my court\n\tAre of consent and sufferance in this.\n\nFirst Lord\tI cannot hear of any that did see her.\n\tThe ladies, her attendants of her chamber,\n\tSaw her abed, and in the morning early\n\tThey found the bed untreasured of their mistress.\n\nSecond Lord\tMy lord, the roynish clown, at whom so oft\n\tYour grace was wont to laugh, is also missing.\n\tHisperia, the princess' gentlewoman,\n\tConfesses that she secretly o'erheard\n\tYour daughter and her cousin much commend\n\tThe parts and graces of the wrestler\n\tThat did but lately foil the sinewy Charles;\n\tAnd she believes, wherever they are gone,\n\tThat youth is surely in their company.\n\nDUKE FREDERICK\tSend to his brother; fetch that gallant hither;\n\tIf he be absent, bring his brother to me;\n\tI'll make him find him: do this suddenly,\n\tAnd let not search and inquisition quail\n\tTo bring again these foolish runaways.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE III\tBefore OLIVER'S house.\n\n\n\t[Enter ORLANDO and ADAM, meeting]\n\nORLANDO\tWho's there?\n\nADAM\tWhat, my young master? O, my gentle master!\n\tO my sweet master! O you memory\n\tOf old Sir Rowland! why, what make you here?\n\tWhy are you virtuous? why do people love you?\n\tAnd wherefore are you gentle, strong and valiant?\n\tWhy would you be so fond to overcome\n\tThe bonny priser of the humorous duke?\n\tYour praise is come too swiftly home before you.\n\tKnow you not, master, to some kind of men\n\tTheir graces serve them but as enemies?\n\tNo more do yours: your virtues, gentle master,\n\tAre sanctified and holy traitors to you.\n\tO, what a world is this, when what is comely\n\tEnvenoms him that bears it!\n\nORLANDO\tWhy, what's the matter?\n\nADAM\tO unhappy youth!\n\tCome not within these doors; within this roof\n\tThe enemy of all your graces lives:\n\tYour brother--no, no brother; yet the son--\n\tYet not the son, I will not call him son\n\tOf him I was about to call his father--\n\tHath heard your praises, and this night he means\n\tTo burn the lodging where you use to lie\n\tAnd you within it: if he fail of that,\n\tHe will have other means to cut you off.\n\tI overheard him and his practises.\n\tThis is no place; this house is but a butchery:\n\tAbhor it, fear it, do not enter it.\n\nORLANDO\tWhy, whither, Adam, wouldst thou have me go?\n\nADAM\tNo matter whither, so you come not here.\n\nORLANDO\tWhat, wouldst thou have me go and beg my food?\n\tOr with a base and boisterous sword enforce\n\tA thievish living on the common road?\n\tThis I must do, or know not what to do:\n\tYet this I will not do, do how I can;\n\tI rather will subject me to the malice\n\tOf a diverted blood and bloody brother.\n\nADAM\tBut do not so. I have five hundred crowns,\n\tThe thrifty hire I saved under your father,\n\tWhich I did store to be my foster-nurse\n\tWhen service should in my old limbs lie lame\n\tAnd unregarded age in corners thrown:\n\tTake that, and He that doth the ravens feed,\n\tYea, providently caters for the sparrow,\n\tBe comfort to my age! Here is the gold;\n\tAnd all this I give you. Let me be your servant:\n\tThough I look old, yet I am strong and lusty;\n\tFor in my youth I never did apply\n\tHot and rebellious liquors in my blood,\n\tNor did not with unbashful forehead woo\n\tThe means of weakness and debility;\n\tTherefore my age is as a lusty winter,\n\tFrosty, but kindly: let me go with you;\n\tI'll do the service of a younger man\n\tIn all your business and necessities.\n\nORLANDO\tO good old man, how well in thee appears\n\tThe constant service of the antique world,\n\tWhen service sweat for duty, not for meed!\n\tThou art not for the fashion of these times,\n\tWhere none will sweat but for promotion,\n\tAnd having that, do choke their service up\n\tEven with the having: it is not so with thee.\n\tBut, poor old man, thou prunest a rotten tree,\n\tThat cannot so much as a blossom yield\n\tIn lieu of all thy pains and husbandry\n\tBut come thy ways; well go along together,\n\tAnd ere we have thy youthful wages spent,\n\tWe'll light upon some settled low content.\n\nADAM\tMaster, go on, and I will follow thee,\n\tTo the last gasp, with truth and loyalty.\n\tFrom seventeen years till now almost fourscore\n\tHere lived I, but now live here no more.\n\tAt seventeen years many their fortunes seek;\n\tBut at fourscore it is too late a week:\n\tYet fortune cannot recompense me better\n\tThan to die well and not my master's debtor.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE IV\tThe Forest of Arden.\n\n\n\t[Enter ROSALIND for Ganymede, CELIA for Aliena,\n\tand TOUCHSTONE]\n\nROSALIND\tO Jupiter, how weary are my spirits!\n\nTOUCHSTONE\tI care not for my spirits, if my legs were not weary.\n\nROSALIND\tI could find in my heart to disgrace my man's\n\tapparel and to cry like a woman; but I must comfort\n\tthe weaker vessel, as doublet and hose ought to show\n\titself courageous to petticoat: therefore courage,\n\tgood Aliena!\n\nCELIA\tI pray you, bear with me; I cannot go no further.\n\nTOUCHSTONE\tFor my part, I had rather bear with you than bear\n\tyou; yet I should bear no cross if I did bear you,\n\tfor I think you have no money in your purse.\n\nROSALIND\tWell, this is the forest of Arden.\n\nTOUCHSTONE\tAy, now am I in Arden; the more fool I; when I was\n\tat home, I was in a better place: but travellers\n\tmust be content.\n\nROSALIND\tAy, be so, good Touchstone.\n\n\t[Enter CORIN and SILVIUS]\n\n\tLook you, who comes here; a young man and an old in\n\tsolemn talk.\n\nCORIN\tThat is the way to make her scorn you still.\n\nSILVIUS\tO Corin, that thou knew'st how I do love her!\n\nCORIN\tI partly guess; for I have loved ere now.\n\nSILVIUS\tNo, Corin, being old, thou canst not guess,\n\tThough in thy youth thou wast as true a lover\n\tAs ever sigh'd upon a midnight pillow:\n\tBut if thy love were ever like to mine--\n\tAs sure I think did never man love so--\n\tHow many actions most ridiculous\n\tHast thou been drawn to by thy fantasy?\n\nCORIN\tInto a thousand that I have forgotten.\n\nSILVIUS\tO, thou didst then ne'er love so heartily!\n\tIf thou remember'st not the slightest folly\n\tThat ever love did make thee run into,\n\tThou hast not loved:\n\tOr if thou hast not sat as I do now,\n\tWearying thy hearer in thy mistress' praise,\n\tThou hast not loved:\n\tOr if thou hast not broke from company\n\tAbruptly, as my passion now makes me,\n\tThou hast not loved.\n\tO Phebe, Phebe, Phebe!\n\n\t[Exit]\n\nROSALIND\tAlas, poor shepherd! searching of thy wound,\n\tI have by hard adventure found mine own.\n\nTOUCHSTONE\tAnd I mine. I remember, when I was in love I broke\n\tmy sword upon a stone and bid him take that for\n\tcoming a-night to Jane Smile; and I remember the\n\tkissing of her batlet and the cow's dugs that her\n\tpretty chopt hands had milked; and I remember the\n\twooing of a peascod instead of her, from whom I took\n\ttwo cods and, giving her them again, said with\n\tweeping tears 'Wear these for my sake.' We that are\n\ttrue lovers run into strange capers; but as all is\n\tmortal in nature, so is all nature in love mortal in folly.\n\nROSALIND\tThou speakest wiser than thou art ware of.\n\nTOUCHSTONE\tNay, I shall ne'er be ware of mine own wit till I\n\tbreak my shins against it.\n\nROSALIND\tJove, Jove! this shepherd's passion\n\tIs much upon my fashion.\n\nTOUCHSTONE\tAnd mine; but it grows something stale with me.\n\nCELIA\tI pray you, one of you question yond man\n\tIf he for gold will give us any food:\n\tI faint almost to death.\n\nTOUCHSTONE\tHolla, you clown!\n\nROSALIND\tPeace, fool: he's not thy kinsman.\n\nCORIN\tWho calls?\n\nTOUCHSTONE\tYour betters, sir.\n\nCORIN\t                  Else are they very wretched.\n\nROSALIND\tPeace, I say. Good even to you, friend.\n\nCORIN\tAnd to you, gentle sir, and to you all.\n\nROSALIND\tI prithee, shepherd, if that love or gold\n\tCan in this desert place buy entertainment,\n\tBring us where we may rest ourselves and feed:\n\tHere's a young maid with travel much oppress'd\n\tAnd faints for succor.\n\nCORIN\tFair sir, I pity her\n\tAnd wish, for her sake more than for mine own,\n\tMy fortunes were more able to relieve her;\n\tBut I am shepherd to another man\n\tAnd do not shear the fleeces that I graze:\n\tMy master is of churlish disposition\n\tAnd little recks to find the way to heaven\n\tBy doing deeds of hospitality:\n\tBesides, his cote, his flocks and bounds of feed\n\tAre now on sale, and at our sheepcote now,\n\tBy reason of his absence, there is nothing\n\tThat you will feed on; but what is, come see.\n\tAnd in my voice most welcome shall you be.\n\nROSALIND\tWhat is he that shall buy his flock and pasture?\n\nCORIN\tThat young swain that you saw here but erewhile,\n\tThat little cares for buying any thing.\n\nROSALIND\tI pray thee, if it stand with honesty,\n\tBuy thou the cottage, pasture and the flock,\n\tAnd thou shalt have to pay for it of us.\n\nCELIA\tAnd we will mend thy wages. I like this place.\n\tAnd willingly could waste my time in it.\n\nCORIN\tAssuredly the thing is to be sold:\n\tGo with me: if you like upon report\n\tThe soil, the profit and this kind of life,\n\tI will your very faithful feeder be\n\tAnd buy it with your gold right suddenly.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE V\tThe Forest.\n\n\n\t[Enter AMIENS, JAQUES, and others]\n\t\n\tSONG.\nAMIENS\tUnder the greenwood tree\n\tWho loves to lie with me,\n\tAnd turn his merry note\n\tUnto the sweet bird's throat,\n\tCome hither, come hither, come hither:\n\tHere shall he see No enemy\n\tBut winter and rough weather.\n\nJAQUES\tMore, more, I prithee, more.\n\nAMIENS\tIt will make you melancholy, Monsieur Jaques.\n\nJAQUES\tI thank it. More, I prithee, more. I can suck\n\tmelancholy out of a song, as a weasel sucks eggs.\n\tMore, I prithee, more.\n\nAMIENS\tMy voice is ragged: I know I cannot please you.\n\nJAQUES\tI do not desire you to please me; I do desire you to\n\tsing. Come, more; another stanzo: call you 'em stanzos?\n\nAMIENS\tWhat you will, Monsieur Jaques.\n\nJAQUES\tNay, I care not for their names; they owe me\n\tnothing. Will you sing?\n\nAMIENS\tMore at your request than to please myself.\n\nJAQUES\tWell then, if ever I thank any man, I'll thank you;\n\tbut that they call compliment is like the encounter\n\tof two dog-apes, and when a man thanks me heartily,\n\tmethinks I have given him a penny and he renders me\n\tthe beggarly thanks. Come, sing; and you that will\n\tnot, hold your tongues.\n\nAMIENS\tWell, I'll end the song. Sirs, cover the while; the\n\tduke will drink under this tree. He hath been all\n\tthis day to look you.\n\nJAQUES\tAnd I have been all this day to avoid him. He is\n\ttoo disputable for my company: I think of as many\n\tmatters as he, but I give heaven thanks and make no\n\tboast of them. Come, warble, come.\n\t\n\tSONG.\n\tWho doth ambition shun\n\n\t[All together here]\n\n\tAnd loves to live i' the sun,\n\tSeeking the food he eats\n\tAnd pleased with what he gets,\n\tCome hither, come hither, come hither:\n\tHere shall he see No enemy\n\tBut winter and rough weather.\n\nJAQUES\tI'll give you a verse to this note that I made\n\tyesterday in despite of my invention.\n\nAMIENS\tAnd I'll sing it.\n\nJAQUES\tThus it goes:--\n\n\tIf it do come to pass\n\tThat any man turn ass,\n\tLeaving his wealth and ease,\n\tA stubborn will to please,\n\tDucdame, ducdame, ducdame:\n\tHere shall he see\n\tGross fools as he,\n\tAn if he will come to me.\n\nAMIENS\tWhat's that 'ducdame'?\n\nJAQUES\t'Tis a Greek invocation, to call fools into a\n\tcircle. I'll go sleep, if I can; if I cannot, I'll\n\trail against all the first-born of Egypt.\n\nAMIENS\tAnd I'll go seek the duke: his banquet is prepared.\n\n\t[Exeunt severally]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE VI\tThe forest.\n\n\n\t[Enter ORLANDO and ADAM]\n\nADAM\tDear master, I can go no further. O, I die for food!\n\tHere lie I down, and measure out my grave. Farewell,\n\tkind master.\n\nORLANDO\tWhy, how now, Adam! no greater heart in thee? Live\n\ta little; comfort a little; cheer thyself a little.\n\tIf this uncouth forest yield any thing savage, I\n\twill either be food for it or bring it for food to\n\tthee. Thy conceit is nearer death than thy powers.\n\tFor my sake be comfortable; hold death awhile at\n\tthe arm's end: I will here be with thee presently;\n\tand if I bring thee not something to eat, I will\n\tgive thee leave to die: but if thou diest before I\n\tcome, thou art a mocker of my labour. Well said!\n\tthou lookest cheerly, and I'll be with thee quickly.\n\tYet thou liest in the bleak air: come, I will bear\n\tthee to some shelter; and thou shalt not die for\n\tlack of a dinner, if there live any thing in this\n\tdesert. Cheerly, good Adam!\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT II\n\n\n\nSCENE VII\tThe forest.\n\n\n\t[A table set out. Enter DUKE SENIOR, AMIENS, and\n\tLords like outlaws]\n\nDUKE SENIOR\tI think he be transform'd into a beast;\n\tFor I can no where find him like a man.\n\nFirst Lord\tMy lord, he is but even now gone hence:\n\tHere was he merry, hearing of a song.\n\nDUKE SENIOR\tIf he, compact of jars, grow musical,\n\tWe shall have shortly discord in the spheres.\n\tGo, seek him: tell him I would speak with him.\n\n\t[Enter JAQUES]\n\nFirst Lord\tHe saves my labour by his own approach.\n\nDUKE SENIOR\tWhy, how now, monsieur! what a life is this,\n\tThat your poor friends must woo your company?\n\tWhat, you look merrily!\n\nJAQUES\tA fool, a fool! I met a fool i' the forest,\n\tA motley fool; a miserable world!\n\tAs I do live by food, I met a fool\n\tWho laid him down and bask'd him in the sun,\n\tAnd rail'd on Lady Fortune in good terms,\n\tIn good set terms and yet a motley fool.\n\t'Good morrow, fool,' quoth I. 'No, sir,' quoth he,\n\t'Call me not fool till heaven hath sent me fortune:'\n\tAnd then he drew a dial from his poke,\n\tAnd, looking on it with lack-lustre eye,\n\tSays very wisely, 'It is ten o'clock:\n\tThus we may see,' quoth he, 'how the world wags:\n\t'Tis but an hour ago since it was nine,\n\tAnd after one hour more 'twill be eleven;\n\tAnd so, from hour to hour, we ripe and ripe,\n\tAnd then, from hour to hour, we rot and rot;\n\tAnd thereby hangs a tale.' When I did hear\n\tThe motley fool thus moral on the time,\n\tMy lungs began to crow like chanticleer,\n\tThat fools should be so deep-contemplative,\n\tAnd I did laugh sans intermission\n\tAn hour by his dial. O noble fool!\n\tA worthy fool! Motley's the only wear.\n\nDUKE SENIOR\tWhat fool is this?\n\nJAQUES\tO worthy fool! One that hath been a courtier,\n\tAnd says, if ladies be but young and fair,\n\tThey have the gift to know it: and in his brain,\n\tWhich is as dry as the remainder biscuit\n\tAfter a voyage, he hath strange places cramm'd\n\tWith observation, the which he vents\n\tIn mangled forms. O that I were a fool!\n\tI am ambitious for a motley coat.\n\nDUKE SENIOR\tThou shalt have one.\n\nJAQUES\tIt is my only suit;\n\tProvided that you weed your better judgments\n\tOf all opinion that grows rank in them\n\tThat I am wise. I must have liberty\n\tWithal, as large a charter as the wind,\n\tTo blow on whom I please; for so fools have;\n\tAnd they that are most galled with my folly,\n\tThey most must laugh. And why, sir, must they so?\n\tThe 'why' is plain as way to parish church:\n\tHe that a fool doth very wisely hit\n\tDoth very foolishly, although he smart,\n\tNot to seem senseless of the bob: if not,\n\tThe wise man's folly is anatomized\n\tEven by the squandering glances of the fool.\n\tInvest me in my motley; give me leave\n\tTo speak my mind, and I will through and through\n\tCleanse the foul body of the infected world,\n\tIf they will patiently receive my medicine.\n\nDUKE SENIOR\tFie on thee! I can tell what thou wouldst do.\n\nJAQUES\tWhat, for a counter, would I do but good?\n\nDUKE SENIOR\tMost mischievous foul sin, in chiding sin:\n\tFor thou thyself hast been a libertine,\n\tAs sensual as the brutish sting itself;\n\tAnd all the embossed sores and headed evils,\n\tThat thou with licence of free foot hast caught,\n\tWouldst thou disgorge into the general world.\n\nJAQUES\tWhy, who cries out on pride,\n\tThat can therein tax any private party?\n\tDoth it not flow as hugely as the sea,\n\tTill that the weary very means do ebb?\n\tWhat woman in the city do I name,\n\tWhen that I say the city-woman bears\n\tThe cost of princes on unworthy shoulders?\n\tWho can come in and say that I mean her,\n\tWhen such a one as she such is her neighbour?\n\tOr what is he of basest function\n\tThat says his bravery is not of my cost,\n\tThinking that I mean him, but therein suits\n\tHis folly to the mettle of my speech?\n\tThere then; how then? what then? Let me see wherein\n\tMy tongue hath wrong'd him: if it do him right,\n\tThen he hath wrong'd himself; if he be free,\n\tWhy then my taxing like a wild-goose flies,\n\tUnclaim'd of any man. But who comes here?\n\n\t[Enter ORLANDO, with his sword drawn]\n\nORLANDO\tForbear, and eat no more.\n\nJAQUES\tWhy, I have eat none yet.\n\nORLANDO\tNor shalt not, till necessity be served.\n\nJAQUES\tOf what kind should this cock come of?\n\nDUKE SENIOR\tArt thou thus bolden'd, man, by thy distress,\n\tOr else a rude despiser of good manners,\n\tThat in civility thou seem'st so empty?\n\nORLANDO\tYou touch'd my vein at first: the thorny point\n\tOf bare distress hath ta'en from me the show\n\tOf smooth civility: yet am I inland bred\n\tAnd know some nurture. But forbear, I say:\n\tHe dies that touches any of this fruit\n\tTill I and my affairs are answered.\n\nJAQUES\tAn you will not be answered with reason, I must die.\n\nDUKE SENIOR\tWhat would you have? Your gentleness shall force\n\tMore than your force move us to gentleness.\n\nORLANDO\tI almost die for food; and let me have it.\n\nDUKE SENIOR\tSit down and feed, and welcome to our table.\n\nORLANDO\tSpeak you so gently? Pardon me, I pray you:\n\tI thought that all things had been savage here;\n\tAnd therefore put I on the countenance\n\tOf stern commandment. But whate'er you are\n\tThat in this desert inaccessible,\n\tUnder the shade of melancholy boughs,\n\tLose and neglect the creeping hours of time\n\tIf ever you have look'd on better days,\n\tIf ever been where bells have knoll'd to church,\n\tIf ever sat at any good man's feast,\n\tIf ever from your eyelids wiped a tear\n\tAnd know what 'tis to pity and be pitied,\n\tLet gentleness my strong enforcement be:\n\tIn the which hope I blush, and hide my sword.\n\nDUKE SENIOR\tTrue is it that we have seen better days,\n\tAnd have with holy bell been knoll'd to church\n\tAnd sat at good men's feasts and wiped our eyes\n\tOf drops that sacred pity hath engender'd:\n\tAnd therefore sit you down in gentleness\n\tAnd take upon command what help we have\n\tThat to your wanting may be minister'd.\n\nORLANDO\tThen but forbear your food a little while,\n\tWhiles, like a doe, I go to find my fawn\n\tAnd give it food. There is an old poor man,\n\tWho after me hath many a weary step\n\tLimp'd in pure love: till he be first sufficed,\n\tOppress'd with two weak evils, age and hunger,\n\tI will not touch a bit.\n\nDUKE SENIOR\tGo find him out,\n\tAnd we will nothing waste till you return.\n\nORLANDO\tI thank ye; and be blest for your good comfort!\n\n\t[Exit]\n\nDUKE SENIOR\tThou seest we are not all alone unhappy:\n\tThis wide and universal theatre\n\tPresents more woeful pageants than the scene\n\tWherein we play in.\n\nJAQUES\tAll the world's a stage,\n\tAnd all the men and women merely players:\n\tThey have their exits and their entrances;\n\tAnd one man in his time plays many parts,\n\tHis acts being seven ages. At first the infant,\n\tMewling and puking in the nurse's arms.\n\tAnd then the whining school-boy, with his satchel\n\tAnd shining morning face, creeping like snail\n\tUnwillingly to school. And then the lover,\n\tSighing like furnace, with a woeful ballad\n\tMade to his mistress' eyebrow. Then a soldier,\n\tFull of strange oaths and bearded like the pard,\n\tJealous in honour, sudden and quick in quarrel,\n\tSeeking the bubble reputation\n\tEven in the cannon's mouth. And then the justice,\n\tIn fair round belly with good capon lined,\n\tWith eyes severe and beard of formal cut,\n\tFull of wise saws and modern instances;\n\tAnd so he plays his part. The sixth age shifts\n\tInto the lean and slipper'd pantaloon,\n\tWith spectacles on nose and pouch on side,\n\tHis youthful hose, well saved, a world too wide\n\tFor his shrunk shank; and his big manly voice,\n\tTurning again toward childish treble, pipes\n\tAnd whistles in his sound. Last scene of all,\n\tThat ends this strange eventful history,\n\tIs second childishness and mere oblivion,\n\tSans teeth, sans eyes, sans taste, sans everything.\n\n\t[Re-enter ORLANDO, with ADAM]\n\nDUKE SENIOR\tWelcome. Set down your venerable burthen,\n\tAnd let him feed.\n\nORLANDO\tI thank you most for him.\n\nADAM\tSo had you need:\n\tI scarce can speak to thank you for myself.\n\nDUKE SENIOR\tWelcome; fall to: I will not trouble you\n\tAs yet, to question you about your fortunes.\n\tGive us some music; and, good cousin, sing.\n\t\n\tSONG.\nAMIENS\tBlow, blow, thou winter wind.\n\tThou art not so unkind\n\tAs man's ingratitude;\n\tThy tooth is not so keen,\n\tBecause thou art not seen,\n\tAlthough thy breath be rude.\n\tHeigh-ho! sing, heigh-ho! unto the green holly:\n\tMost friendship is feigning, most loving mere folly:\n\tThen, heigh-ho, the holly!\n\tThis life is most jolly.\n\tFreeze, freeze, thou bitter sky,\n\tThat dost not bite so nigh\n\tAs benefits forgot:\n\tThough thou the waters warp,\n\tThy sting is not so sharp\n\tAs friend remember'd not.\n\tHeigh-ho! sing, &c.\n\nDUKE SENIOR\tIf that you were the good Sir Rowland's son,\n\tAs you have whisper'd faithfully you were,\n\tAnd as mine eye doth his effigies witness\n\tMost truly limn'd and living in your face,\n\tBe truly welcome hither: I am the duke\n\tThat loved your father: the residue of your fortune,\n\tGo to my cave and tell me. Good old man,\n\tThou art right welcome as thy master is.\n\tSupport him by the arm. Give me your hand,\n\tAnd let me all your fortunes understand.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT III\n\n\n\nSCENE I\tA room in the palace.\n\n\n\t[Enter DUKE FREDERICK, Lords, and OLIVER]\n\nDUKE FREDERICK\tNot see him since? Sir, sir, that cannot be:\n\tBut were I not the better part made mercy,\n\tI should not seek an absent argument\n\tOf my revenge, thou present. But look to it:\n\tFind out thy brother, wheresoe'er he is;\n\tSeek him with candle; bring him dead or living\n\tWithin this twelvemonth, or turn thou no more\n\tTo seek a living in our territory.\n\tThy lands and all things that thou dost call thine\n\tWorth seizure do we seize into our hands,\n\tTill thou canst quit thee by thy brothers mouth\n\tOf what we think against thee.\n\nOLIVER\tO that your highness knew my heart in this!\n\tI never loved my brother in my life.\n\nDUKE FREDERICK\tMore villain thou. Well, push him out of doors;\n\tAnd let my officers of such a nature\n\tMake an extent upon his house and lands:\n\tDo this expediently and turn him going.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT III\n\n\n\nSCENE II\tThe forest.\n\n\n\t[Enter ORLANDO, with a paper]\n\nORLANDO\tHang there, my verse, in witness of my love:\n\tAnd thou, thrice-crowned queen of night, survey\n\tWith thy chaste eye, from thy pale sphere above,\n\tThy huntress' name that my full life doth sway.\n\tO Rosalind! these trees shall be my books\n\tAnd in their barks my thoughts I'll character;\n\tThat every eye which in this forest looks\n\tShall see thy virtue witness'd every where.\n\tRun, run, Orlando; carve on every tree\n\tThe fair, the chaste and unexpressive she.\n\n\t[Exit]\n\n\t[Enter CORIN and TOUCHSTONE]\n\nCORIN\tAnd how like you this shepherd's life, Master Touchstone?\n\nTOUCHSTONE\tTruly, shepherd, in respect of itself, it is a good\n\tlife, but in respect that it is a shepherd's life,\n\tit is naught. In respect that it is solitary, I\n\tlike it very well; but in respect that it is\n\tprivate, it is a very vile life. Now, in respect it\n\tis in the fields, it pleaseth me well; but in\n\trespect it is not in the court, it is tedious. As\n\tis it a spare life, look you, it fits my humour well;\n\tbut as there is no more plenty in it, it goes much\n\tagainst my stomach. Hast any philosophy in thee, shepherd?\n\nCORIN\tNo more but that I know the more one sickens the\n\tworse at ease he is; and that he that wants money,\n\tmeans and content is without three good friends;\n\tthat the property of rain is to wet and fire to\n\tburn; that good pasture makes fat sheep, and that a\n\tgreat cause of the night is lack of the sun; that\n\the that hath learned no wit by nature nor art may\n\tcomplain of good breeding or comes of a very dull kindred.\n\nTOUCHSTONE\tSuch a one is a natural philosopher. Wast ever in\n\tcourt, shepherd?\n\nCORIN\tNo, truly.\n\nTOUCHSTONE\tThen thou art damned.\n\nCORIN\tNay, I hope.\n\nTOUCHSTONE\tTruly, thou art damned like an ill-roasted egg, all\n\ton one side.\n\nCORIN\tFor not being at court? Your reason.\n\nTOUCHSTONE\tWhy, if thou never wast at court, thou never sawest\n\tgood manners; if thou never sawest good manners,\n\tthen thy manners must be wicked; and wickedness is\n\tsin, and sin is damnation. Thou art in a parlous\n\tstate, shepherd.\n\nCORIN\tNot a whit, Touchstone: those that are good manners\n\tat the court are as ridiculous in the country as the\n\tbehavior of the country is most mockable at the\n\tcourt. You told me you salute not at the court, but\n\tyou kiss your hands: that courtesy would be\n\tuncleanly, if courtiers were shepherds.\n\nTOUCHSTONE\tInstance, briefly; come, instance.\n\nCORIN\tWhy, we are still handling our ewes, and their\n\tfells, you know, are greasy.\n\nTOUCHSTONE\tWhy, do not your courtier's hands sweat? and is not\n\tthe grease of a mutton as wholesome as the sweat of\n\ta man? Shallow, shallow. A better instance, I say; come.\n\nCORIN\tBesides, our hands are hard.\n\nTOUCHSTONE\tYour lips will feel them the sooner. Shallow again.\n\tA more sounder instance, come.\n\nCORIN\tAnd they are often tarred over with the surgery of\n\tour sheep: and would you have us kiss tar? The\n\tcourtier's hands are perfumed with civet.\n\nTOUCHSTONE\tMost shallow man! thou worms-meat, in respect of a\n\tgood piece of flesh indeed! Learn of the wise, and\n\tperpend: civet is of a baser birth than tar, the\n\tvery uncleanly flux of a cat. Mend the instance, shepherd.\n\nCORIN\tYou have too courtly a wit for me: I'll rest.\n\nTOUCHSTONE\tWilt thou rest damned? God help thee, shallow man!\n\tGod make incision in thee! thou art raw.\n\nCORIN\tSir, I am a true labourer: I earn that I eat, get\n\tthat I wear, owe no man hate, envy no man's\n\thappiness, glad of other men's good, content with my\n\tharm, and the greatest of my pride is to see my ewes\n\tgraze and my lambs suck.\n\nTOUCHSTONE\tThat is another simple sin in you, to bring the ewes\n\tand the rams together and to offer to get your\n\tliving by the copulation of cattle; to be bawd to a\n\tbell-wether, and to betray a she-lamb of a\n\ttwelvemonth to a crooked-pated, old, cuckoldly ram,\n\tout of all reasonable match. If thou beest not\n\tdamned for this, the devil himself will have no\n\tshepherds; I cannot see else how thou shouldst\n\t'scape.\n\nCORIN\tHere comes young Master Ganymede, my new mistress's brother.\n\n\t[Enter ROSALIND, with a paper, reading]\n\nROSALIND\t     From the east to western Ind,\n\tNo jewel is like Rosalind.\n\tHer worth, being mounted on the wind,\n\tThrough all the world bears Rosalind.\n\tAll the pictures fairest lined\n\tAre but black to Rosalind.\n\tLet no fair be kept in mind\n\tBut the fair of Rosalind.\n\nTOUCHSTONE\tI'll rhyme you so eight years together, dinners and\n\tsuppers and sleeping-hours excepted: it is the\n\tright butter-women's rank to market.\n\nROSALIND\tOut, fool!\n\nTOUCHSTONE\tFor a taste:\n\tIf a hart do lack a hind,\n\tLet him seek out Rosalind.\n\tIf the cat will after kind,\n\tSo be sure will Rosalind.\n\tWinter garments must be lined,\n\tSo must slender Rosalind.\n\tThey that reap must sheaf and bind;\n\tThen to cart with Rosalind.\n\tSweetest nut hath sourest rind,\n\tSuch a nut is Rosalind.\n\tHe that sweetest rose will find\n\tMust find love's prick and Rosalind.\n\tThis is the very false gallop of verses: why do you\n\tinfect yourself with them?\n\nROSALIND\tPeace, you dull fool! I found them on a tree.\n\nTOUCHSTONE\tTruly, the tree yields bad fruit.\n\nROSALIND\tI'll graff it with you, and then I shall graff it\n\twith a medlar: then it will be the earliest fruit\n\ti' the country; for you'll be rotten ere you be half\n\tripe, and that's the right virtue of the medlar.\n\nTOUCHSTONE\tYou have said; but whether wisely or no, let the\n\tforest judge.\n\n\t[Enter CELIA, with a writing]\n\nROSALIND\tPeace! Here comes my sister, reading: stand aside.\n\nCELIA\t[Reads]\n\n\tWhy should this a desert be?\n\tFor it is unpeopled? No:\n\tTongues I'll hang on every tree,\n\tThat shall civil sayings show:\n\tSome, how brief the life of man\n\tRuns his erring pilgrimage,\n\tThat the stretching of a span\n\tBuckles in his sum of age;\n\tSome, of violated vows\n\t'Twixt the souls of friend and friend:\n\tBut upon the fairest boughs,\n\tOr at every sentence end,\n\tWill I Rosalinda write,\n\tTeaching all that read to know\n\tThe quintessence of every sprite\n\tHeaven would in little show.\n\tTherefore Heaven Nature charged\n\tThat one body should be fill'd\n\tWith all graces wide-enlarged:\n\tNature presently distill'd\n\tHelen's cheek, but not her heart,\n\tCleopatra's majesty,\n\tAtalanta's better part,\n\tSad Lucretia's modesty.\n\tThus Rosalind of many parts\n\tBy heavenly synod was devised,\n\tOf many faces, eyes and hearts,\n\tTo have the touches dearest prized.\n\tHeaven would that she these gifts should have,\n\tAnd I to live and die her slave.\n\nROSALIND\tO most gentle pulpiter! what tedious homily of love\n\thave you wearied your parishioners withal, and never\n\tcried 'Have patience, good people!'\n\nCELIA\tHow now! back, friends! Shepherd, go off a little.\n\tGo with him, sirrah.\n\nTOUCHSTONE\tCome, shepherd, let us make an honourable retreat;\n\tthough not with bag and baggage, yet with scrip and scrippage.\n\n\t[Exeunt CORIN and TOUCHSTONE]\n\nCELIA\tDidst thou hear these verses?\n\nROSALIND\tO, yes, I heard them all, and more too; for some of\n\tthem had in them more feet than the verses would bear.\n\nCELIA\tThat's no matter: the feet might bear the verses.\n\nROSALIND\tAy, but the feet were lame and could not bear\n\tthemselves without the verse and therefore stood\n\tlamely in the verse.\n\nCELIA\tBut didst thou hear without wondering how thy name\n\tshould be hanged and carved upon these trees?\n\nROSALIND\tI was seven of the nine days out of the wonder\n\tbefore you came; for look here what I found on a\n\tpalm-tree. I was never so be-rhymed since\n\tPythagoras' time, that I was an Irish rat, which I\n\tcan hardly remember.\n\nCELIA\tTrow you who hath done this?\n\nROSALIND\tIs it a man?\n\nCELIA\tAnd a chain, that you once wore, about his neck.\n\tChange you colour?\n\nROSALIND\tI prithee, who?\n\nCELIA\tO Lord, Lord! it is a hard matter for friends to\n\tmeet; but mountains may be removed with earthquakes\n\tand so encounter.\n\nROSALIND\tNay, but who is it?\n\nCELIA\tIs it possible?\n\nROSALIND\tNay, I prithee now with most petitionary vehemence,\n\ttell me who it is.\n\nCELIA\tO wonderful, wonderful, and most wonderful\n\twonderful! and yet again wonderful, and after that,\n\tout of all hooping!\n\nROSALIND\tGood my complexion! dost thou think, though I am\n\tcaparisoned like a man, I have a doublet and hose in\n\tmy disposition? One inch of delay more is a\n\tSouth-sea of discovery; I prithee, tell me who is it\n\tquickly, and speak apace. I would thou couldst\n\tstammer, that thou mightst pour this concealed man\n\tout of thy mouth, as wine comes out of a narrow-\n\tmouthed bottle, either too much at once, or none at\n\tall. I prithee, take the cork out of thy mouth that\n\tmay drink thy tidings.\n\nCELIA\tSo you may put a man in your belly.\n\nROSALIND\tIs he of God's making? What manner of man? Is his\n\thead worth a hat, or his chin worth a beard?\n\nCELIA\tNay, he hath but a little beard.\n\nROSALIND\tWhy, God will send more, if the man will be\n\tthankful: let me stay the growth of his beard, if\n\tthou delay me not the knowledge of his chin.\n\nCELIA\tIt is young Orlando, that tripped up the wrestler's\n\theels and your heart both in an instant.\n\nROSALIND\tNay, but the devil take mocking: speak, sad brow and\n\ttrue maid.\n\nCELIA\tI' faith, coz, 'tis he.\n\nROSALIND\tOrlando?\n\nCELIA\tOrlando.\n\nROSALIND\tAlas the day! what shall I do with my doublet and\n\those? What did he when thou sawest him? What said\n\the? How looked he? Wherein went he? What makes\n\thim here? Did he ask for me? Where remains he?\n\tHow parted he with thee? and when shalt thou see\n\thim again? Answer me in one word.\n\nCELIA\tYou must borrow me Gargantua's mouth first: 'tis a\n\tword too great for any mouth of this age's size. To\n\tsay ay and no to these particulars is more than to\n\tanswer in a catechism.\n\nROSALIND\tBut doth he know that I am in this forest and in\n\tman's apparel? Looks he as freshly as he did the\n\tday he wrestled?\n\nCELIA\tIt is as easy to count atomies as to resolve the\n\tpropositions of a lover; but take a taste of my\n\tfinding him, and relish it with good observance.\n\tI found him under a tree, like a dropped acorn.\n\nROSALIND\tIt may well be called Jove's tree, when it drops\n\tforth such fruit.\n\nCELIA\tGive me audience, good madam.\n\nROSALIND\tProceed.\n\nCELIA\tThere lay he, stretched along, like a wounded knight.\n\nROSALIND\tThough it be pity to see such a sight, it well\n\tbecomes the ground.\n\nCELIA\tCry 'holla' to thy tongue, I prithee; it curvets\n\tunseasonably. He was furnished like a hunter.\n\nROSALIND\tO, ominous! he comes to kill my heart.\n\nCELIA\tI would sing my song without a burden: thou bringest\n\tme out of tune.\n\nROSALIND\tDo you not know I am a woman? when I think, I must\n\tspeak. Sweet, say on.\n\nCELIA\tYou bring me out. Soft! comes he not here?\n\n\t[Enter ORLANDO and JAQUES]\n\nROSALIND\t'Tis he: slink by, and note him.\n\nJAQUES\tI thank you for your company; but, good faith, I had\n\tas lief have been myself alone.\n\nORLANDO\tAnd so had I; but yet, for fashion sake, I thank you\n\ttoo for your society.\n\nJAQUES\tGod be wi' you: let's meet as little as we can.\n\nORLANDO\tI do desire we may be better strangers.\n\nJAQUES\tI pray you, mar no more trees with writing\n\tlove-songs in their barks.\n\nORLANDO\tI pray you, mar no more of my verses with reading\n\tthem ill-favouredly.\n\nJAQUES\tRosalind is your love's name?\n\nORLANDO\tYes, just.\n\nJAQUES\tI do not like her name.\n\nORLANDO\tThere was no thought of pleasing you when she was\n\tchristened.\n\nJAQUES\tWhat stature is she of?\n\nORLANDO\tJust as high as my heart.\n\nJAQUES\tYou are full of pretty answers. Have you not been\n\tacquainted with goldsmiths' wives, and conned them\n\tout of rings?\n\nORLANDO\tNot so; but I answer you right painted cloth, from\n\twhence you have studied your questions.\n\nJAQUES\tYou have a nimble wit: I think 'twas made of\n\tAtalanta's heels. Will you sit down with me? and\n\twe two will rail against our mistress the world and\n\tall our misery.\n\nORLANDO\tI will chide no breather in the world but myself,\n\tagainst whom I know most faults.\n\nJAQUES\tThe worst fault you have is to be in love.\n\nORLANDO\t'Tis a fault I will not change for your best virtue.\n\tI am weary of you.\n\nJAQUES\tBy my troth, I was seeking for a fool when I found\n\tyou.\n\nORLANDO\tHe is drowned in the brook: look but in, and you\n\tshall see him.\n\nJAQUES\tThere I shall see mine own figure.\n\nORLANDO\tWhich I take to be either a fool or a cipher.\n\nJAQUES\tI'll tarry no longer with you: farewell, good\n\tSignior Love.\n\nORLANDO\tI am glad of your departure: adieu, good Monsieur\n\tMelancholy.\n\n\t[Exit JAQUES]\n\nROSALIND\t[Aside to CELIA]  I will speak to him, like a saucy\n\tlackey and under that habit play the knave with him.\n\tDo you hear, forester?\n\nORLANDO\tVery well: what would you?\n\nROSALIND\tI pray you, what is't o'clock?\n\nORLANDO\tYou should ask me what time o' day: there's no clock\n\tin the forest.\n\nROSALIND\tThen there is no true lover in the forest; else\n\tsighing every minute and groaning every hour would\n\tdetect the lazy foot of Time as well as a clock.\n\nORLANDO\tAnd why not the swift foot of Time? had not that\n\tbeen as proper?\n\nROSALIND\tBy no means, sir: Time travels in divers paces with\n\tdivers persons. I'll tell you who Time ambles\n\twithal, who Time trots withal, who Time gallops\n\twithal and who he stands still withal.\n\nORLANDO\tI prithee, who doth he trot withal?\n\nROSALIND\tMarry, he trots hard with a young maid between the\n\tcontract of her marriage and the day it is\n\tsolemnized: if the interim be but a se'nnight,\n\tTime's pace is so hard that it seems the length of\n\tseven year.\n\nORLANDO\tWho ambles Time withal?\n\nROSALIND\tWith a priest that lacks Latin and a rich man that\n\thath not the gout, for the one sleeps easily because\n\the cannot study, and the other lives merrily because\n\the feels no pain, the one lacking the burden of lean\n\tand wasteful learning, the other knowing no burden\n\tof heavy tedious penury; these Time ambles withal.\n\nORLANDO\tWho doth he gallop withal?\n\nROSALIND\tWith a thief to the gallows, for though he go as\n\tsoftly as foot can fall, he thinks himself too soon there.\n\nORLANDO\tWho stays it still withal?\n\nROSALIND\tWith lawyers in the vacation, for they sleep between\n\tterm and term and then they perceive not how Time moves.\n\nORLANDO\tWhere dwell you, pretty youth?\n\nROSALIND\tWith this shepherdess, my sister; here in the\n\tskirts of the forest, like fringe upon a petticoat.\n\nORLANDO\tAre you native of this place?\n\nROSALIND\tAs the cony that you see dwell where she is kindled.\n\nORLANDO\tYour accent is something finer than you could\n\tpurchase in so removed a dwelling.\n\nROSALIND\tI have been told so of many: but indeed an old\n\treligious uncle of mine taught me to speak, who was\n\tin his youth an inland man; one that knew courtship\n\ttoo well, for there he fell in love. I have heard\n\thim read many lectures against it, and I thank God\n\tI am not a woman, to be touched with so many\n\tgiddy offences as he hath generally taxed their\n\twhole sex withal.\n\nORLANDO\tCan you remember any of the principal evils that he\n\tlaid to the charge of women?\n\nROSALIND\tThere were none principal; they were all like one\n\tanother as half-pence are, every one fault seeming\n\tmonstrous till his fellow fault came to match it.\n\nORLANDO\tI prithee, recount some of them.\n\nROSALIND\tNo, I will not cast away my physic but on those that\n\tare sick. There is a man haunts the forest, that\n\tabuses our young plants with carving 'Rosalind' on\n\ttheir barks; hangs odes upon hawthorns and elegies\n\ton brambles, all, forsooth, deifying the name of\n\tRosalind: if I could meet that fancy-monger I would\n\tgive him some good counsel, for he seems to have the\n\tquotidian of love upon him.\n\nORLANDO\tI am he that is so love-shaked: I pray you tell me\n\tyour remedy.\n\nROSALIND\tThere is none of my uncle's marks upon you: he\n\ttaught me how to know a man in love; in which cage\n\tof rushes I am sure you are not prisoner.\n\nORLANDO\tWhat were his marks?\n\nROSALIND\tA lean cheek, which you have not, a blue eye and\n\tsunken, which you have not, an unquestionable\n\tspirit, which you have not, a beard neglected,\n\twhich you have not; but I pardon you for that, for\n\tsimply your having in beard is a younger brother's\n\trevenue: then your hose should be ungartered, your\n\tbonnet unbanded, your sleeve unbuttoned, your shoe\n\tuntied and every thing about you demonstrating a\n\tcareless desolation; but you are no such man; you\n\tare rather point-device in your accoutrements as\n\tloving yourself than seeming the lover of any other.\n\nORLANDO\tFair youth, I would I could make thee believe I love.\n\nROSALIND\tMe believe it! you may as soon make her that you\n\tlove believe it; which, I warrant, she is apter to\n\tdo than to confess she does: that is one of the\n\tpoints in the which women still give the lie to\n\ttheir consciences. But, in good sooth, are you he\n\tthat hangs the verses on the trees, wherein Rosalind\n\tis so admired?\n\nORLANDO\tI swear to thee, youth, by the white hand of\n\tRosalind, I am that he, that unfortunate he.\n\nROSALIND\tBut are you so much in love as your rhymes speak?\n\nORLANDO\tNeither rhyme nor reason can express how much.\n\nROSALIND\tLove is merely a madness, and, I tell you, deserves\n\tas well a dark house and a whip as madmen do: and\n\tthe reason why they are not so punished and cured\n\tis, that the lunacy is so ordinary that the whippers\n\tare in love too. Yet I profess curing it by counsel.\n\nORLANDO\tDid you ever cure any so?\n\nROSALIND\tYes, one, and in this manner. He was to imagine me\n\this love, his mistress; and I set him every day to\n\twoo me: at which time would I, being but a moonish\n\tyouth, grieve, be effeminate, changeable, longing\n\tand liking, proud, fantastical, apish, shallow,\n\tinconstant, full of tears, full of smiles, for every\n\tpassion something and for no passion truly any\n\tthing, as boys and women are for the most part\n\tcattle of this colour; would now like him, now loathe\n\thim; then entertain him, then forswear him; now weep\n\tfor him, then spit at him; that I drave my suitor\n\tfrom his mad humour of love to a living humour of\n\tmadness; which was, to forswear the full stream of\n\tthe world, and to live in a nook merely monastic.\n\tAnd thus I cured him; and this way will I take upon\n\tme to wash your liver as clean as a sound sheep's\n\theart, that there shall not be one spot of love in't.\n\nORLANDO\tI would not be cured, youth.\n\nROSALIND\tI would cure you, if you would but call me Rosalind\n\tand come every day to my cote and woo me.\n\nORLANDO\tNow, by the faith of my love, I will: tell me\n\twhere it is.\n\nROSALIND\tGo with me to it and I'll show it you and by the way\n\tyou shall tell me where in the forest you live.\n\tWill you go?\n\nORLANDO\tWith all my heart, good youth.\n\nROSALIND\tNay you must call me Rosalind. Come, sister, will you go?\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT III\n\n\n\nSCENE III\tThe forest.\n\n\n\t[Enter TOUCHSTONE and AUDREY; JAQUES behind]\n\nTOUCHSTONE\tCome apace, good Audrey: I will fetch up your\n\tgoats, Audrey. And how, Audrey? am I the man yet?\n\tdoth my simple feature content you?\n\nAUDREY\tYour features! Lord warrant us! what features!\n\nTOUCHSTONE\tI am here with thee and thy goats, as the most\n\tcapricious poet, honest Ovid, was among the Goths.\n\nJAQUES\t[Aside]  O knowledge ill-inhabited, worse than Jove\n\tin a thatched house!\n\nTOUCHSTONE\tWhen a man's verses cannot be understood, nor a\n\tman's good wit seconded with the forward child\n\tUnderstanding, it strikes a man more dead than a\n\tgreat reckoning in a little room. Truly, I would\n\tthe gods had made thee poetical.\n\nAUDREY\tI do not know what 'poetical' is: is it honest in\n\tdeed and word? is it a true thing?\n\nTOUCHSTONE\tNo, truly; for the truest poetry is the most\n\tfeigning; and lovers are given to poetry, and what\n\tthey swear in poetry may be said as lovers they do feign.\n\nAUDREY\tDo you wish then that the gods had made me poetical?\n\nTOUCHSTONE\tI do, truly; for thou swearest to me thou art\n\thonest: now, if thou wert a poet, I might have some\n\thope thou didst feign.\n\nAUDREY\tWould you not have me honest?\n\nTOUCHSTONE\tNo, truly, unless thou wert hard-favoured; for\n\thonesty coupled to beauty is to have honey a sauce to sugar.\n\nJAQUES\t[Aside]  A material fool!\n\nAUDREY\t Well, I am not fair; and therefore I pray the gods\n\tmake me honest.\n\nTOUCHSTONE\tTruly, and to cast away honesty upon a foul slut\n\twere to put good meat into an unclean dish.\n\nAUDREY\tI am not a slut, though I thank the gods I am foul.\n\nTOUCHSTONE\tWell, praised be the gods for thy foulness!\n\tsluttishness may come hereafter. But be it as it may\n\tbe, I will marry thee, and to that end I have been\n\twith Sir Oliver Martext, the vicar of the next\n\tvillage, who hath promised to meet me in this place\n\tof the forest and to couple us.\n\nJAQUES\t[Aside]  I would fain see this meeting.\n\nAUDREY\tWell, the gods give us joy!\n\nTOUCHSTONE\tAmen. A man may, if he were of a fearful heart,\n\tstagger in this attempt; for here we have no temple\n\tbut the wood, no assembly but horn-beasts. But what\n\tthough? Courage! As horns are odious, they are\n\tnecessary. It is said, 'many a man knows no end of\n\this goods:' right; many a man has good horns, and\n\tknows no end of them. Well, that is the dowry of\n\this wife; 'tis none of his own getting. Horns?\n\tEven so. Poor men alone? No, no; the noblest deer\n\thath them as huge as the rascal. Is the single man\n\ttherefore blessed? No: as a walled town is more\n\tworthier than a village, so is the forehead of a\n\tmarried man more honourable than the bare brow of a\n\tbachelor; and by how much defence is better than no\n\tskill, by so much is a horn more precious than to\n\twant. Here comes Sir Oliver.\n\n\t[Enter SIR OLIVER MARTEXT]\n\n\tSir Oliver Martext, you are well met: will you\n\tdispatch us here under this tree, or shall we go\n\twith you to your chapel?\n\nSIR OLIVER MARTEXT\tIs there none here to give the woman?\n\nTOUCHSTONE\tI will not take her on gift of any man.\n\nSIR OLIVER MARTEXT\tTruly, she must be given, or the marriage is not lawful.\n\nJAQUES\t[Advancing]\n\n\tProceed, proceed\tI'll give her.\n\nTOUCHSTONE\tGood even, good Master What-ye-call't: how do you,\n\tsir? You are very well met: God 'ild you for your\n\tlast company: I am very glad to see you: even a\n\ttoy in hand here, sir: nay, pray be covered.\n\nJAQUES\tWill you be married, motley?\n\nTOUCHSTONE\tAs the ox hath his bow, sir, the horse his curb and\n\tthe falcon her bells, so man hath his desires; and\n\tas pigeons bill, so wedlock would be nibbling.\n\nJAQUES\tAnd will you, being a man of your breeding, be\n\tmarried under a bush like a beggar? Get you to\n\tchurch, and have a good priest that can tell you\n\twhat marriage is: this fellow will but join you\n\ttogether as they join wainscot; then one of you will\n\tprove a shrunk panel and, like green timber, warp, warp.\n\nTOUCHSTONE\t[Aside]  I am not in the mind but I were better to be\n\tmarried of him than of another: for he is not like\n\tto marry me well; and not being well married, it\n\twill be a good excuse for me hereafter to leave my wife.\n\nJAQUES\tGo thou with me, and let me counsel thee.\n\nTOUCHSTONE\t'Come, sweet Audrey:\n\tWe must be married, or we must live in bawdry.\n\tFarewell, good Master Oliver: not,--\n\tO sweet Oliver,\n\tO brave Oliver,\n\tLeave me not behind thee: but,--\n\tWind away,\n\tBegone, I say,\n\tI will not to wedding with thee.\n\n\t[Exeunt JAQUES, TOUCHSTONE and AUDREY]\n\nSIR OLIVER MARTEXT\t'Tis no matter: ne'er a fantastical knave of them\n\tall shall flout me out of my calling.\n\n\t[Exit]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT III\n\n\n\nSCENE IV\tThe forest.\n\n\n\t[Enter ROSALIND and CELIA]\n\nROSALIND\tNever talk to me; I will weep.\n\nCELIA\tDo, I prithee; but yet have the grace to consider\n\tthat tears do not become a man.\n\nROSALIND\tBut have I not cause to weep?\n\nCELIA\tAs good cause as one would desire; therefore weep.\n\nROSALIND\tHis very hair is of the dissembling colour.\n\nCELIA\tSomething browner than Judas's marry, his kisses are\n\tJudas's own children.\n\nROSALIND\tI' faith, his hair is of a good colour.\n\nCELIA\tAn excellent colour: your chestnut was ever the only colour.\n\nROSALIND\tAnd his kissing is as full of sanctity as the touch\n\tof holy bread.\n\nCELIA\tHe hath bought a pair of cast lips of Diana: a nun\n\tof winter's sisterhood kisses not more religiously;\n\tthe very ice of chastity is in them.\n\nROSALIND\tBut why did he swear he would come this morning, and\n\tcomes not?\n\nCELIA\tNay, certainly, there is no truth in him.\n\nROSALIND\tDo you think so?\n\nCELIA\tYes; I think he is not a pick-purse nor a\n\thorse-stealer, but for his verity in love, I do\n\tthink him as concave as a covered goblet or a\n\tworm-eaten nut.\n\nROSALIND\tNot true in love?\n\nCELIA\tYes, when he is in; but I think he is not in.\n\nROSALIND\tYou have heard him swear downright he was.\n\nCELIA\t'Was' is not 'is:' besides, the oath of a lover is\n\tno stronger than the word of a tapster; they are\n\tboth the confirmer of false reckonings. He attends\n\there in the forest on the duke your father.\n\nROSALIND\tI met the duke yesterday and had much question with\n\thim: he asked me of what parentage I was; I told\n\thim, of as good as he; so he laughed and let me go.\n\tBut what talk we of fathers, when there is such a\n\tman as Orlando?\n\nCELIA\tO, that's a brave man! he writes brave verses,\n\tspeaks brave words, swears brave oaths and breaks\n\tthem bravely, quite traverse, athwart the heart of\n\this lover; as a puisny tilter, that spurs his horse\n\tbut on one side, breaks his staff like a noble\n\tgoose: but all's brave that youth mounts and folly\n\tguides. Who comes here?\n\n\t[Enter CORIN]\n\nCORIN\tMistress and master, you have oft inquired\n\tAfter the shepherd that complain'd of love,\n\tWho you saw sitting by me on the turf,\n\tPraising the proud disdainful shepherdess\n\tThat was his mistress.\n\nCELIA\tWell, and what of him?\n\nCORIN\tIf you will see a pageant truly play'd,\n\tBetween the pale complexion of true love\n\tAnd the red glow of scorn and proud disdain,\n\tGo hence a little and I shall conduct you,\n\tIf you will mark it.\n\nROSALIND\tO, come, let us remove:\n\tThe sight of lovers feedeth those in love.\n\tBring us to this sight, and you shall say\n\tI'll prove a busy actor in their play.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT III\n\n\n\nSCENE V\tAnother part of the forest.\n\n\n\t[Enter SILVIUS and PHEBE]\n\nSILVIUS\tSweet Phebe, do not scorn me; do not, Phebe;\n\tSay that you love me not, but say not so\n\tIn bitterness. The common executioner,\n\tWhose heart the accustom'd sight of death makes hard,\n\tFalls not the axe upon the humbled neck\n\tBut first begs pardon: will you sterner be\n\tThan he that dies and lives by bloody drops?\n\n\t[Enter ROSALIND, CELIA, and CORIN, behind]\n\nPHEBE\tI would not be thy executioner:\n\tI fly thee, for I would not injure thee.\n\tThou tell'st me there is murder in mine eye:\n\t'Tis pretty, sure, and very probable,\n\tThat eyes, that are the frail'st and softest things,\n\tWho shut their coward gates on atomies,\n\tShould be call'd tyrants, butchers, murderers!\n\tNow I do frown on thee with all my heart;\n\tAnd if mine eyes can wound, now let them kill thee:\n\tNow counterfeit to swoon; why now fall down;\n\tOr if thou canst not, O, for shame, for shame,\n\tLie not, to say mine eyes are murderers!\n\tNow show the wound mine eye hath made in thee:\n\tScratch thee but with a pin, and there remains\n\tSome scar of it; lean but upon a rush,\n\tThe cicatrice and capable impressure\n\tThy palm some moment keeps; but now mine eyes,\n\tWhich I have darted at thee, hurt thee not,\n\tNor, I am sure, there is no force in eyes\n\tThat can do hurt.\n\nSILVIUS\t                  O dear Phebe,\n\tIf ever,--as that ever may be near,--\n\tYou meet in some fresh cheek the power of fancy,\n\tThen shall you know the wounds invisible\n\tThat love's keen arrows make.\n\nPHEBE\tBut till that time\n\tCome not thou near me: and when that time comes,\n\tAfflict me with thy mocks, pity me not;\n\tAs till that time I shall not pity thee.\n\nROSALIND\tAnd why, I pray you? Who might be your mother,\n\tThat you insult, exult, and all at once,\n\tOver the wretched? What though you have no beauty,--\n\tAs, by my faith, I see no more in you\n\tThan without candle may go dark to bed--\n\tMust you be therefore proud and pitiless?\n\tWhy, what means this? Why do you look on me?\n\tI see no more in you than in the ordinary\n\tOf nature's sale-work. 'Od's my little life,\n\tI think she means to tangle my eyes too!\n\tNo, faith, proud mistress, hope not after it:\n\t'Tis not your inky brows, your black silk hair,\n\tYour bugle eyeballs, nor your cheek of cream,\n\tThat can entame my spirits to your worship.\n\tYou foolish shepherd, wherefore do you follow her,\n\tLike foggy south puffing with wind and rain?\n\tYou are a thousand times a properer man\n\tThan she a woman: 'tis such fools as you\n\tThat makes the world full of ill-favour'd children:\n\t'Tis not her glass, but you, that flatters her;\n\tAnd out of you she sees herself more proper\n\tThan any of her lineaments can show her.\n\tBut, mistress, know yourself: down on your knees,\n\tAnd thank heaven, fasting, for a good man's love:\n\tFor I must tell you friendly in your ear,\n\tSell when you can: you are not for all markets:\n\tCry the man mercy; love him; take his offer:\n\tFoul is most foul, being foul to be a scoffer.\n\tSo take her to thee, shepherd: fare you well.\n\nPHEBE\tSweet youth, I pray you, chide a year together:\n\tI had rather hear you chide than this man woo.\n\nROSALIND\tHe's fallen in love with your foulness and she'll\n\tfall in love with my anger. If it be so, as fast as\n\tshe answers thee with frowning looks, I'll sauce her\n\twith bitter words. Why look you so upon me?\n\nPHEBE\tFor no ill will I bear you.\n\nROSALIND\tI pray you, do not fall in love with me,\n\tFor I am falser than vows made in wine:\n\tBesides, I like you not. If you will know my house,\n\t'Tis at the tuft of olives here hard by.\n\tWill you go, sister? Shepherd, ply her hard.\n\tCome, sister. Shepherdess, look on him better,\n\tAnd be not proud: though all the world could see,\n\tNone could be so abused in sight as he.\n\tCome, to our flock.\n\n\t[Exeunt ROSALIND, CELIA and CORIN]\n\nPHEBE\tDead Shepherd, now I find thy saw of might,\n\t'Who ever loved that loved not at first sight?'\n\nSILVIUS\tSweet Phebe,--\n\nPHEBE\t                  Ha, what say'st thou, Silvius?\n\nSILVIUS\tSweet Phebe, pity me.\n\nPHEBE\tWhy, I am sorry for thee, gentle Silvius.\n\nSILVIUS\tWherever sorrow is, relief would be:\n\tIf you do sorrow at my grief in love,\n\tBy giving love your sorrow and my grief\n\tWere both extermined.\n\nPHEBE\tThou hast my love: is not that neighbourly?\n\nSILVIUS\tI would have you.\n\nPHEBE\t                  Why, that were covetousness.\n\tSilvius, the time was that I hated thee,\n\tAnd yet it is not that I bear thee love;\n\tBut since that thou canst talk of love so well,\n\tThy company, which erst was irksome to me,\n\tI will endure, and I'll employ thee too:\n\tBut do not look for further recompense\n\tThan thine own gladness that thou art employ'd.\n\nSILVIUS\tSo holy and so perfect is my love,\n\tAnd I in such a poverty of grace,\n\tThat I shall think it a most plenteous crop\n\tTo glean the broken ears after the man\n\tThat the main harvest reaps: loose now and then\n\tA scatter'd smile, and that I'll live upon.\n\nPHEBE\tKnow'st now the youth that spoke to me erewhile?\n\nSILVIUS\tNot very well, but I have met him oft;\n\tAnd he hath bought the cottage and the bounds\n\tThat the old carlot once was master of.\n\nPHEBE\tThink not I love him, though I ask for him:\n\t'Tis but a peevish boy; yet he talks well;\n\tBut what care I for words? yet words do well\n\tWhen he that speaks them pleases those that hear.\n\tIt is a pretty youth: not very pretty:\n\tBut, sure, he's proud, and yet his pride becomes him:\n\tHe'll make a proper man: the best thing in him\n\tIs his complexion; and faster than his tongue\n\tDid make offence his eye did heal it up.\n\tHe is not very tall; yet for his years he's tall:\n\tHis leg is but so so; and yet 'tis well:\n\tThere was a pretty redness in his lip,\n\tA little riper and more lusty red\n\tThan that mix'd in his cheek; 'twas just the difference\n\tBetween the constant red and mingled damask.\n\tThere be some women, Silvius, had they mark'd him\n\tIn parcels as I did, would have gone near\n\tTo fall in love with him; but, for my part,\n\tI love him not nor hate him not; and yet\n\tI have more cause to hate him than to love him:\n\tFor what had he to do to chide at me?\n\tHe said mine eyes were black and my hair black:\n\tAnd, now I am remember'd, scorn'd at me:\n\tI marvel why I answer'd not again:\n\tBut that's all one; omittance is no quittance.\n\tI'll write to him a very taunting letter,\n\tAnd thou shalt bear it: wilt thou, Silvius?\n\nSILVIUS\tPhebe, with all my heart.\n\nPHEBE\tI'll write it straight;\n\tThe matter's in my head and in my heart:\n\tI will be bitter with him and passing short.\n\tGo with me, Silvius.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT IV\n\n\n\nSCENE I\tThe forest.\n\n\n\t[Enter ROSALIND, CELIA, and JAQUES]\n\nJAQUES\tI prithee, pretty youth, let me be better acquainted\n\twith thee.\n\nROSALIND\tThey say you are a melancholy fellow.\n\nJAQUES\tI am so; I do love it better than laughing.\n\nROSALIND\tThose that are in extremity of either are abominable\n\tfellows and betray themselves to every modern\n\tcensure worse than drunkards.\n\nJAQUES\tWhy, 'tis good to be sad and say nothing.\n\nROSALIND\tWhy then, 'tis good to be a post.\n\nJAQUES\tI have neither the scholar's melancholy, which is\n\temulation, nor the musician's, which is fantastical,\n\tnor the courtier's, which is proud, nor the\n\tsoldier's, which is ambitious, nor the lawyer's,\n\twhich is politic, nor the lady's, which is nice, nor\n\tthe lover's, which is all these: but it is a\n\tmelancholy of mine own, compounded of many simples,\n\textracted from many objects, and indeed the sundry's\n\tcontemplation of my travels, in which my often\n\trumination wraps me m a most humorous sadness.\n\nROSALIND\tA traveller! By my faith, you have great reason to\n\tbe sad: I fear you have sold your own lands to see\n\tother men's; then, to have seen much and to have\n\tnothing, is to have rich eyes and poor hands.\n\nJAQUES\tYes, I have gained my experience.\n\nROSALIND\tAnd your experience makes you sad: I had rather have\n\ta fool to make me merry than experience to make me\n\tsad; and to travel for it too!\n\n\t[Enter ORLANDO]\n\nORLANDO\tGood day and happiness, dear Rosalind!\n\nJAQUES\tNay, then, God be wi' you, an you talk in blank verse.\n\n\t[Exit]\n\nROSALIND\tFarewell, Monsieur Traveller: look you lisp and\n\twear strange suits, disable all the benefits of your\n\town country, be out of love with your nativity and\n\talmost chide God for making you that countenance you\n\tare, or I will scarce think you have swam in a\n\tgondola. Why, how now, Orlando! where have you been\n\tall this while? You a lover! An you serve me such\n\tanother trick, never come in my sight more.\n\nORLANDO\tMy fair Rosalind, I come within an hour of my promise.\n\nROSALIND\tBreak an hour's promise in love! He that will\n\tdivide a minute into a thousand parts and break but\n\ta part of the thousandth part of a minute in the\n\taffairs of love, it may be said of him that Cupid\n\thath clapped him o' the shoulder, but I'll warrant\n\thim heart-whole.\n\nORLANDO\tPardon me, dear Rosalind.\n\nROSALIND\tNay, an you be so tardy, come no more in my sight: I\n\thad as lief be wooed of a snail.\n\nORLANDO\tOf a snail?\n\nROSALIND\tAy, of a snail; for though he comes slowly, he\n\tcarries his house on his head; a better jointure,\n\tI think, than you make a woman: besides he brings\n\this destiny with him.\n\nORLANDO\tWhat's that?\n\nROSALIND\tWhy, horns, which such as you are fain to be\n\tbeholding to your wives for: but he comes armed in\n\this fortune and prevents the slander of his wife.\n\nORLANDO\tVirtue is no horn-maker; and my Rosalind is virtuous.\n\nROSALIND\tAnd I am your Rosalind.\n\nCELIA\tIt pleases him to call you so; but he hath a\n\tRosalind of a better leer than you.\n\nROSALIND\tCome, woo me, woo me, for now I am in a holiday\n\thumour and like enough to consent. What would you\n\tsay to me now, an I were your very very Rosalind?\n\nORLANDO\tI would kiss before I spoke.\n\nROSALIND\tNay, you were better speak first, and when you were\n\tgravelled for lack of matter, you might take\n\toccasion to kiss. Very good orators, when they are\n\tout, they will spit; and for lovers lacking--God\n\twarn us!--matter, the cleanliest shift is to kiss.\n\nORLANDO\tHow if the kiss be denied?\n\nROSALIND\tThen she puts you to entreaty, and there begins new matter.\n\nORLANDO\tWho could be out, being before his beloved mistress?\n\nROSALIND\tMarry, that should you, if I were your mistress, or\n\tI should think my honesty ranker than my wit.\n\nORLANDO\tWhat, of my suit?\n\nROSALIND\tNot out of your apparel, and yet out of your suit.\n\tAm not I your Rosalind?\n\nORLANDO\tI take some joy to say you are, because I would be\n\ttalking of her.\n\nROSALIND\tWell in her person I say I will not have you.\n\nORLANDO\tThen in mine own person I die.\n\nROSALIND\tNo, faith, die by attorney. The poor world is\n\talmost six thousand years old, and in all this time\n\tthere was not any man died in his own person,\n\tvidelicit, in a love-cause. Troilus had his brains\n\tdashed out with a Grecian club; yet he did what he\n\tcould to die before, and he is one of the patterns\n\tof love. Leander, he would have lived many a fair\n\tyear, though Hero had turned nun, if it had not been\n\tfor a hot midsummer night; for, good youth, he went\n\tbut forth to wash him in the Hellespont and being\n\ttaken with the cramp was drowned and the foolish\n\tcoroners of that age found it was 'Hero of Sestos.'\n\tBut these are all lies: men have died from time to\n\ttime and worms have eaten them, but not for love.\n\nORLANDO\tI would not have my right Rosalind of this mind,\n\tfor, I protest, her frown might kill me.\n\nROSALIND\tBy this hand, it will not kill a fly. But come, now\n\tI will be your Rosalind in a more coming-on\n\tdisposition, and ask me what you will. I will grant\n\tit.\n\nORLANDO\tThen love me, Rosalind.\n\nROSALIND\tYes, faith, will I, Fridays and Saturdays and all.\n\nORLANDO\tAnd wilt thou have me?\n\nROSALIND\tAy, and twenty such.\n\nORLANDO\tWhat sayest thou?\n\nROSALIND\tAre you not good?\n\nORLANDO\tI hope so.\n\nROSALIND\tWhy then, can one desire too much of a good thing?\n\tCome, sister, you shall be the priest and marry us.\n\tGive me your hand, Orlando. What do you say, sister?\n\nORLANDO\tPray thee, marry us.\n\nCELIA\tI cannot say the words.\n\nROSALIND\tYou must begin, 'Will you, Orlando--'\n\nCELIA\tGo to. Will you, Orlando, have to wife this Rosalind?\n\nORLANDO\tI will.\n\nROSALIND\tAy, but when?\n\nORLANDO\tWhy now; as fast as she can marry us.\n\nROSALIND\tThen you must say 'I take thee, Rosalind, for wife.'\n\nORLANDO\tI take thee, Rosalind, for wife.\n\nROSALIND\tI might ask you for your commission; but I do take\n\tthee, Orlando, for my husband: there's a girl goes\n\tbefore the priest; and certainly a woman's thought\n\truns before her actions.\n\nORLANDO\tSo do all thoughts; they are winged.\n\nROSALIND\tNow tell me how long you would have her after you\n\thave possessed her.\n\nORLANDO\tFor ever and a day.\n\nROSALIND\tSay 'a day,' without the 'ever.' No, no, Orlando;\n\tmen are April when they woo, December when they wed:\n\tmaids are May when they are maids, but the sky\n\tchanges when they are wives. I will be more jealous\n\tof thee than a Barbary cock-pigeon over his hen,\n\tmore clamorous than a parrot against rain, more\n\tnew-fangled than an ape, more giddy in my desires\n\tthan a monkey: I will weep for nothing, like Diana\n\tin the fountain, and I will do that when you are\n\tdisposed to be merry; I will laugh like a hyen, and\n\tthat when thou art inclined to sleep.\n\nORLANDO\tBut will my Rosalind do so?\n\nROSALIND\tBy my life, she will do as I do.\n\nORLANDO\tO, but she is wise.\n\nROSALIND\tOr else she could not have the wit to do this: the\n\twiser, the waywarder: make the doors upon a woman's\n\twit and it will out at the casement; shut that and\n\t'twill out at the key-hole; stop that, 'twill fly\n\twith the smoke out at the chimney.\n\nORLANDO\tA man that had a wife with such a wit, he might say\n\t'Wit, whither wilt?'\n\nROSALIND\tNay, you might keep that cheque for it till you met\n\tyour wife's wit going to your neighbour's bed.\n\nORLANDO\tAnd what wit could wit have to excuse that?\n\nROSALIND\tMarry, to say she came to seek you there. You shall\n\tnever take her without her answer, unless you take\n\ther without her tongue. O, that woman that cannot\n\tmake her fault her husband's occasion, let her\n\tnever nurse her child herself, for she will breed\n\tit like a fool!\n\nORLANDO\tFor these two hours, Rosalind, I will leave thee.\n\nROSALIND\tAlas! dear love, I cannot lack thee two hours.\n\nORLANDO\tI must attend the duke at dinner: by two o'clock I\n\twill be with thee again.\n\nROSALIND\tAy, go your ways, go your ways; I knew what you\n\twould prove: my friends told me as much, and I\n\tthought no less: that flattering tongue of yours\n\twon me: 'tis but one cast away, and so, come,\n\tdeath! Two o'clock is your hour?\n\nORLANDO\tAy, sweet Rosalind.\n\nROSALIND\tBy my troth, and in good earnest, and so God mend\n\tme, and by all pretty oaths that are not dangerous,\n\tif you break one jot of your promise or come one\n\tminute behind your hour, I will think you the most\n\tpathetical break-promise and the most hollow lover\n\tand the most unworthy of her you call Rosalind that\n\tmay be chosen out of the gross band of the\n\tunfaithful: therefore beware my censure and keep\n\tyour promise.\n\nORLANDO\tWith no less religion than if thou wert indeed my\n\tRosalind: so adieu.\n\nROSALIND\tWell, Time is the old justice that examines all such\n\toffenders, and let Time try: adieu.\n\n\t[Exit ORLANDO]\n\nCELIA\tYou have simply misused our sex in your love-prate:\n\twe must have your doublet and hose plucked over your\n\thead, and show the world what the bird hath done to\n\ther own nest.\n\nROSALIND\tO coz, coz, coz, my pretty little coz, that thou\n\tdidst know how many fathom deep I am in love! But\n\tit cannot be sounded: my affection hath an unknown\n\tbottom, like the bay of Portugal.\n\nCELIA\tOr rather, bottomless, that as fast as you pour\n\taffection in, it runs out.\n\nROSALIND\tNo, that same wicked bastard of Venus that was begot\n\tof thought, conceived of spleen and born of madness,\n\tthat blind rascally boy that abuses every one's eyes\n\tbecause his own are out, let him be judge how deep I\n\tam in love. I'll tell thee, Aliena, I cannot be out\n\tof the sight of Orlando: I'll go find a shadow and\n\tsigh till he come.\n\nCELIA\tAnd I'll sleep.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT IV\n\n\n\nSCENE II\tThe forest.\n\n\n\t[Enter JAQUES, Lords, and Foresters]\n\nJAQUES\tWhich is he that killed the deer?\n\nA Lord\tSir, it was I.\n\nJAQUES\tLet's present him to the duke, like a Roman\n\tconqueror; and it would do well to set the deer's\n\thorns upon his head, for a branch of victory. Have\n\tyou no song, forester, for this purpose?\n\nForester\tYes, sir.\n\nJAQUES\tSing it: 'tis no matter how it be in tune, so it\n\tmake noise enough.\n\t\n\tSONG.\nForester\tWhat shall he have that kill'd the deer?\n\tHis leather skin and horns to wear.\n\tThen sing him home;\n\n\t[The rest shall bear this burden]\n\n\tTake thou no scorn to wear the horn;\n\tIt was a crest ere thou wast born:\n\tThy father's father wore it,\n\tAnd thy father bore it:\n\tThe horn, the horn, the lusty horn\n\tIs not a thing to laugh to scorn.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT IV\n\n\n\nSCENE III\tThe forest.\n\n\n\t[Enter ROSALIND and CELIA]\n\nROSALIND\tHow say you now? Is it not past two o'clock? and\n\there much Orlando!\n\nCELIA\tI warrant you, with pure love and troubled brain, he\n\thath ta'en his bow and arrows and is gone forth to\n\tsleep. Look, who comes here.\n\n\t[Enter SILVIUS]\n\nSILVIUS\tMy errand is to you, fair youth;\n\tMy gentle Phebe bid me give you this:\n\tI know not the contents; but, as I guess\n\tBy the stern brow and waspish action\n\tWhich she did use as she was writing of it,\n\tIt bears an angry tenor: pardon me:\n\tI am but as a guiltless messenger.\n\nROSALIND\tPatience herself would startle at this letter\n\tAnd play the swaggerer; bear this, bear all:\n\tShe says I am not fair, that I lack manners;\n\tShe calls me proud, and that she could not love me,\n\tWere man as rare as phoenix. 'Od's my will!\n\tHer love is not the hare that I do hunt:\n\tWhy writes she so to me? Well, shepherd, well,\n\tThis is a letter of your own device.\n\nSILVIUS\tNo, I protest, I know not the contents:\n\tPhebe did write it.\n\nROSALIND\tCome, come, you are a fool\n\tAnd turn'd into the extremity of love.\n\tI saw her hand: she has a leathern hand.\n\tA freestone-colour'd hand; I verily did think\n\tThat her old gloves were on, but 'twas her hands:\n\tShe has a huswife's hand; but that's no matter:\n\tI say she never did invent this letter;\n\tThis is a man's invention and his hand.\n\nSILVIUS\tSure, it is hers.\n\nROSALIND\tWhy, 'tis a boisterous and a cruel style.\n\tA style for-challengers; why, she defies me,\n\tLike Turk to Christian: women's gentle brain\n\tCould not drop forth such giant-rude invention\n\tSuch Ethiope words, blacker in their effect\n\tThan in their countenance. Will you hear the letter?\n\nSILVIUS\tSo please you, for I never heard it yet;\n\tYet heard too much of Phebe's cruelty.\n\nROSALIND\tShe Phebes me: mark how the tyrant writes.\n\n\t[Reads]\n\n\tArt thou god to shepherd turn'd,\n\tThat a maiden's heart hath burn'd?\n\tCan a woman rail thus?\n\nSILVIUS\tCall you this railing?\n\nROSALIND\t[Reads]\n\n\tWhy, thy godhead laid apart,\n\tWarr'st thou with a woman's heart?\n\tDid you ever hear such railing?\n\tWhiles the eye of man did woo me,\n\tThat could do no vengeance to me.\n\tMeaning me a beast.\n\tIf the scorn of your bright eyne\n\tHave power to raise such love in mine,\n\tAlack, in me what strange effect\n\tWould they work in mild aspect!\n\tWhiles you chid me, I did love;\n\tHow then might your prayers move!\n\tHe that brings this love to thee\n\tLittle knows this love in me:\n\tAnd by him seal up thy mind;\n\tWhether that thy youth and kind\n\tWill the faithful offer take\n\tOf me and all that I can make;\n\tOr else by him my love deny,\n\tAnd then I'll study how to die.\n\nSILVIUS\tCall you this chiding?\n\nCELIA\tAlas, poor shepherd!\n\nROSALIND\tDo you pity him? no, he deserves no pity. Wilt\n\tthou love such a woman? What, to make thee an\n\tinstrument and play false strains upon thee! not to\n\tbe endured! Well, go your way to her, for I see\n\tlove hath made thee a tame snake, and say this to\n\ther: that if she love me, I charge her to love\n\tthee; if she will not, I will never have her unless\n\tthou entreat for her. If you be a true lover,\n\thence, and not a word; for here comes more company.\n\n\t[Exit SILVIUS]\n\n\t[Enter OLIVER]\n\nOLIVER\tGood morrow, fair ones: pray you, if you know,\n\tWhere in the purlieus of this forest stands\n\tA sheep-cote fenced about with olive trees?\n\nCELIA\tWest of this place, down in the neighbour bottom:\n\tThe rank of osiers by the murmuring stream\n\tLeft on your right hand brings you to the place.\n\tBut at this hour the house doth keep itself;\n\tThere's none within.\n\nOLIVER\tIf that an eye may profit by a tongue,\n\tThen should I know you by description;\n\tSuch garments and such years: 'The boy is fair,\n\tOf female favour, and bestows himself\n\tLike a ripe sister: the woman low\n\tAnd browner than her brother.' Are not you\n\tThe owner of the house I did inquire for?\n\nCELIA\tIt is no boast, being ask'd, to say we are.\n\nOLIVER\tOrlando doth commend him to you both,\n\tAnd to that youth he calls his Rosalind\n\tHe sends this bloody napkin. Are you he?\n\nROSALIND\tI am: what must we understand by this?\n\nOLIVER\tSome of my shame; if you will know of me\n\tWhat man I am, and how, and why, and where\n\tThis handkercher was stain'd.\n\nCELIA\tI pray you, tell it.\n\nOLIVER\tWhen last the young Orlando parted from you\n\tHe left a promise to return again\n\tWithin an hour, and pacing through the forest,\n\tChewing the food of sweet and bitter fancy,\n\tLo, what befell! he threw his eye aside,\n\tAnd mark what object did present itself:\n\tUnder an oak, whose boughs were moss'd with age\n\tAnd high top bald with dry antiquity,\n\tA wretched ragged man, o'ergrown with hair,\n\tLay sleeping on his back: about his neck\n\tA green and gilded snake had wreathed itself,\n\tWho with her head nimble in threats approach'd\n\tThe opening of his mouth; but suddenly,\n\tSeeing Orlando, it unlink'd itself,\n\tAnd with indented glides did slip away\n\tInto a bush: under which bush's shade\n\tA lioness, with udders all drawn dry,\n\tLay couching, head on ground, with catlike watch,\n\tWhen that the sleeping man should stir; for 'tis\n\tThe royal disposition of that beast\n\tTo prey on nothing that doth seem as dead:\n\tThis seen, Orlando did approach the man\n\tAnd found it was his brother, his elder brother.\n\nCELIA\tO, I have heard him speak of that same brother;\n\tAnd he did render him the most unnatural\n\tThat lived amongst men.\n\nOLIVER\tAnd well he might so do,\n\tFor well I know he was unnatural.\n\nROSALIND\tBut, to Orlando: did he leave him there,\n\tFood to the suck'd and hungry lioness?\n\nOLIVER\tTwice did he turn his back and purposed so;\n\tBut kindness, nobler ever than revenge,\n\tAnd nature, stronger than his just occasion,\n\tMade him give battle to the lioness,\n\tWho quickly fell before him: in which hurtling\n\tFrom miserable slumber I awaked.\n\nCELIA\tAre you his brother?\n\nROSALIND\tWast you he rescued?\n\nCELIA\tWas't you that did so oft contrive to kill him?\n\nOLIVER\t'Twas I; but 'tis not I\tI do not shame\n\tTo tell you what I was, since my conversion\n\tSo sweetly tastes, being the thing I am.\n\nROSALIND\tBut, for the bloody napkin?\n\nOLIVER\tBy and by.\n\tWhen from the first to last betwixt us two\n\tTears our recountments had most kindly bathed,\n\tAs how I came into that desert place:--\n\tIn brief, he led me to the gentle duke,\n\tWho gave me fresh array and entertainment,\n\tCommitting me unto my brother's love;\n\tWho led me instantly unto his cave,\n\tThere stripp'd himself, and here upon his arm\n\tThe lioness had torn some flesh away,\n\tWhich all this while had bled; and now he fainted\n\tAnd cried, in fainting, upon Rosalind.\n\tBrief, I recover'd him, bound up his wound;\n\tAnd, after some small space, being strong at heart,\n\tHe sent me hither, stranger as I am,\n\tTo tell this story, that you might excuse\n\tHis broken promise, and to give this napkin\n\tDyed in his blood unto the shepherd youth\n\tThat he in sport doth call his Rosalind.\n\n\t[ROSALIND swoons]\n\nCELIA\tWhy, how now, Ganymede! sweet Ganymede!\n\nOLIVER\tMany will swoon when they do look on blood.\n\nCELIA\tThere is more in it. Cousin Ganymede!\n\nOLIVER\tLook, he recovers.\n\nROSALIND\tI would I were at home.\n\nCELIA\tWe'll lead you thither.\n\tI pray you, will you take him by the arm?\n\nOLIVER\tBe of good cheer, youth: you a man! you lack a\n\tman's heart.\n\nROSALIND\tI do so, I confess it. Ah, sirrah, a body would\n\tthink this was well counterfeited! I pray you, tell\n\tyour brother how well I counterfeited. Heigh-ho!\n\nOLIVER\tThis was not counterfeit: there is too great\n\ttestimony in your complexion that it was a passion\n\tof earnest.\n\nROSALIND\tCounterfeit, I assure you.\n\nOLIVER\tWell then, take a good heart and counterfeit to be a man.\n\nROSALIND\tSo I do: but, i' faith, I should have been a woman by right.\n\nCELIA\tCome, you look paler and paler: pray you, draw\n\thomewards. Good sir, go with us.\n\nOLIVER\tThat will I, for I must bear answer back\n\tHow you excuse my brother, Rosalind.\n\nROSALIND\tI shall devise something: but, I pray you, commend\n\tmy counterfeiting to him. Will you go?\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT V\n\n\n\nSCENE I\tThe forest.\n\n\n\t[Enter TOUCHSTONE and AUDREY]\n\nTOUCHSTONE\tWe shall find a time, Audrey; patience, gentle Audrey.\n\nAUDREY\tFaith, the priest was good enough, for all the old\n\tgentleman's saying.\n\nTOUCHSTONE\tA most wicked Sir Oliver, Audrey, a most vile\n\tMartext. But, Audrey, there is a youth here in the\n\tforest lays claim to you.\n\nAUDREY\tAy, I know who 'tis; he hath no interest in me in\n\tthe world: here comes the man you mean.\n\nTOUCHSTONE\tIt is meat and drink to me to see a clown: by my\n\ttroth, we that have good wits have much to answer\n\tfor; we shall be flouting; we cannot hold.\n\n\t[Enter WILLIAM]\n\nWILLIAM\tGood even, Audrey.\n\nAUDREY\tGod ye good even, William.\n\nWILLIAM\tAnd good even to you, sir.\n\nTOUCHSTONE\tGood even, gentle friend. Cover thy head, cover thy\n\thead; nay, prithee, be covered. How old are you, friend?\n\nWILLIAM\tFive and twenty, sir.\n\nTOUCHSTONE\tA ripe age. Is thy name William?\n\nWILLIAM\tWilliam, sir.\n\nTOUCHSTONE\tA fair name. Wast born i' the forest here?\n\nWILLIAM\tAy, sir, I thank God.\n\nTOUCHSTONE\t'Thank God;' a good answer. Art rich?\n\nWILLIAM\tFaith, sir, so so.\n\nTOUCHSTONE\t'So so' is good, very good, very excellent good; and\n\tyet it is not; it is but so so. Art thou wise?\n\nWILLIAM\tAy, sir, I have a pretty wit.\n\nTOUCHSTONE\tWhy, thou sayest well. I do now remember a saying,\n\t'The fool doth think he is wise, but the wise man\n\tknows himself to be a fool.' The heathen\n\tphilosopher, when he had a desire to eat a grape,\n\twould open his lips when he put it into his mouth;\n\tmeaning thereby that grapes were made to eat and\n\tlips to open. You do love this maid?\n\nWILLIAM\tI do, sir.\n\nTOUCHSTONE\tGive me your hand. Art thou learned?\n\nWILLIAM\tNo, sir.\n\nTOUCHSTONE\tThen learn this of me: to have, is to have; for it\n\tis a figure in rhetoric that drink, being poured out\n\tof a cup into a glass, by filling the one doth empty\n\tthe other; for all your writers do consent that ipse\n\tis he: now, you are not ipse, for I am he.\n\nWILLIAM\tWhich he, sir?\n\nTOUCHSTONE\tHe, sir, that must marry this woman. Therefore, you\n\tclown, abandon,--which is in the vulgar leave,--the\n\tsociety,--which in the boorish is company,--of this\n\tfemale,--which in the common is woman; which\n\ttogether is, abandon the society of this female, or,\n\tclown, thou perishest; or, to thy better\n\tunderstanding, diest; or, to wit I kill thee, make\n\tthee away, translate thy life into death, thy\n\tliberty into bondage: I will deal in poison with\n\tthee, or in bastinado, or in steel; I will bandy\n\twith thee in faction; I will o'errun thee with\n\tpolicy; I will kill thee a hundred and fifty ways:\n\ttherefore tremble and depart.\n\nAUDREY\tDo, good William.\n\nWILLIAM\tGod rest you merry, sir.\n\n\t[Exit]\n\n\t[Enter CORIN]\n\nCORIN\tOur master and mistress seeks you; come, away, away!\n\nTOUCHSTONE\tTrip, Audrey! trip, Audrey! I attend, I attend.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT V\n\n\n\nSCENE II\tThe forest.\n\n\n\t[Enter ORLANDO and OLIVER]\n\nORLANDO\tIs't possible that on so little acquaintance you\n\tshould like her? that but seeing you should love\n\ther? and loving woo? and, wooing, she should\n\tgrant? and will you persever to enjoy her?\n\nOLIVER\tNeither call the giddiness of it in question, the\n\tpoverty of her, the small acquaintance, my sudden\n\twooing, nor her sudden consenting; but say with me,\n\tI love Aliena; say with her that she loves me;\n\tconsent with both that we may enjoy each other: it\n\tshall be to your good; for my father's house and all\n\tthe revenue that was old Sir Rowland's will I\n\testate upon you, and here live and die a shepherd.\n\nORLANDO\tYou have my consent. Let your wedding be to-morrow:\n\tthither will I invite the duke and all's contented\n\tfollowers. Go you and prepare Aliena; for look\n\tyou, here comes my Rosalind.\n\n\t[Enter ROSALIND]\n\nROSALIND\tGod save you, brother.\n\nOLIVER\tAnd you, fair sister.\n\n\t[Exit]\n\nROSALIND\tO, my dear Orlando, how it grieves me to see thee\n\twear thy heart in a scarf!\n\nORLANDO\tIt is my arm.\n\nROSALIND\tI thought thy heart had been wounded with the claws\n\tof a lion.\n\nORLANDO\tWounded it is, but with the eyes of a lady.\n\nROSALIND\tDid your brother tell you how I counterfeited to\n\tswoon when he showed me your handkerchief?\n\nORLANDO\tAy, and greater wonders than that.\n\nROSALIND\tO, I know where you are: nay, 'tis true: there was\n\tnever any thing so sudden but the fight of two rams\n\tand Caesar's thrasonical brag of 'I came, saw, and\n\tovercame:' for your brother and my sister no sooner\n\tmet but they looked, no sooner looked but they\n\tloved, no sooner loved but they sighed, no sooner\n\tsighed but they asked one another the reason, no\n\tsooner knew the reason but they sought the remedy;\n\tand in these degrees have they made a pair of stairs\n\tto marriage which they will climb incontinent, or\n\telse be incontinent before marriage: they are in\n\tthe very wrath of love and they will together; clubs\n\tcannot part them.\n\nORLANDO\tThey shall be married to-morrow, and I will bid the\n\tduke to the nuptial. But, O, how bitter a thing it\n\tis to look into happiness through another man's\n\teyes! By so much the more shall I to-morrow be at\n\tthe height of heart-heaviness, by how much I shall\n\tthink my brother happy in having what he wishes for.\n\nROSALIND\tWhy then, to-morrow I cannot serve your turn for Rosalind?\n\nORLANDO\tI can live no longer by thinking.\n\nROSALIND\tI will weary you then no longer with idle talking.\n\tKnow of me then, for now I speak to some purpose,\n\tthat I know you are a gentleman of good conceit: I\n\tspeak not this that you should bear a good opinion\n\tof my knowledge, insomuch I say I know you are;\n\tneither do I labour for a greater esteem than may in\n\tsome little measure draw a belief from you, to do\n\tyourself good and not to grace me. Believe then, if\n\tyou please, that I can do strange things: I have,\n\tsince I was three year old, conversed with a\n\tmagician, most profound in his art and yet not\n\tdamnable. If you do love Rosalind so near the heart\n\tas your gesture cries it out, when your brother\n\tmarries Aliena, shall you marry her: I know into\n\twhat straits of fortune she is driven; and it is\n\tnot impossible to me, if it appear not inconvenient\n\tto you, to set her before your eyes tomorrow human\n\tas she is and without any danger.\n\nORLANDO\tSpeakest thou in sober meanings?\n\nROSALIND\tBy my life, I do; which I tender dearly, though I\n\tsay I am a magician. Therefore, put you in your\n\tbest array: bid your friends; for if you will be\n\tmarried to-morrow, you shall, and to Rosalind, if you will.\n\n\t[Enter SILVIUS and PHEBE]\n\n\tLook, here comes a lover of mine and a lover of hers.\n\nPHEBE\tYouth, you have done me much ungentleness,\n\tTo show the letter that I writ to you.\n\nROSALIND\tI care not if I have: it is my study\n\tTo seem despiteful and ungentle to you:\n\tYou are there followed by a faithful shepherd;\n\tLook upon him, love him; he worships you.\n\nPHEBE\tGood shepherd, tell this youth what 'tis to love.\n\nSILVIUS\tIt is to be all made of sighs and tears;\n\tAnd so am I for Phebe.\n\nPHEBE\tAnd I for Ganymede.\n\nORLANDO\tAnd I for Rosalind.\n\nROSALIND\tAnd I for no woman.\n\nSILVIUS\tIt is to be all made of faith and service;\n\tAnd so am I for Phebe.\n\nPHEBE\tAnd I for Ganymede.\n\nORLANDO\tAnd I for Rosalind.\n\nROSALIND\tAnd I for no woman.\n\nSILVIUS\tIt is to be all made of fantasy,\n\tAll made of passion and all made of wishes,\n\tAll adoration, duty, and observance,\n\tAll humbleness, all patience and impatience,\n\tAll purity, all trial, all observance;\n\tAnd so am I for Phebe.\n\nPHEBE\tAnd so am I for Ganymede.\n\nORLANDO\tAnd so am I for Rosalind.\n\nROSALIND\tAnd so am I for no woman.\n\nPHEBE\tIf this be so, why blame you me to love you?\n\nSILVIUS\tIf this be so, why blame you me to love you?\n\nORLANDO\tIf this be so, why blame you me to love you?\n\nROSALIND\tWho do you speak to, 'Why blame you me to love you?'\n\nORLANDO\tTo her that is not here, nor doth not hear.\n\nROSALIND\tPray you, no more of this; 'tis like the howling\n\tof Irish wolves against the moon.\n\n\t[To SILVIUS]\n\n\tI will help you, if I can:\n\n\t[To PHEBE]\n\n\tI would love you, if I could. To-morrow meet me all together.\n\n\t[To PHEBE]\n\n\tI will marry you, if ever I marry woman, and I'll be\n\tmarried to-morrow:\n\n\t[To ORLANDO]\n\n\tI will satisfy you, if ever I satisfied man, and you\n\tshall be married to-morrow:\n\n\t[To SILVIUS]\n\n\tI will content you, if what pleases you contents\n\tyou, and you shall be married to-morrow.\n\n\t[To ORLANDO]\n\n\tAs you love Rosalind, meet:\n\n\t[To SILVIUS]\n\n\tas you love Phebe, meet: and as I love no woman,\n\tI'll meet. So fare you well: I have left you commands.\n\nSILVIUS\tI'll not fail, if I live.\n\nPHEBE\tNor I.\n\nORLANDO\tNor I.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT V\n\n\n\nSCENE III\tThe forest.\n\n\n\t[Enter TOUCHSTONE and AUDREY]\n\nTOUCHSTONE\tTo-morrow is the joyful day, Audrey; to-morrow will\n\twe be married.\n\nAUDREY\tI do desire it with all my heart; and I hope it is\n\tno dishonest desire to desire to be a woman of the\n\tworld. Here comes two of the banished duke's pages.\n\n\t[Enter two Pages]\n\nFirst Page\tWell met, honest gentleman.\n\nTOUCHSTONE\tBy my troth, well met. Come, sit, sit, and a song.\n\nSecond Page\tWe are for you: sit i' the middle.\n\nFirst Page\tShall we clap into't roundly, without hawking or\n\tspitting or saying we are hoarse, which are the only\n\tprologues to a bad voice?\n\nSecond Page\tI'faith, i'faith; and both in a tune, like two\n\tgipsies on a horse.\n\t\n\tSONG.\n\tIt was a lover and his lass,\n\tWith a hey, and a ho, and a hey nonino,\n\tThat o'er the green corn-field did pass\n\tIn the spring time, the only pretty ring time,\n\tWhen birds do sing, hey ding a ding, ding:\n\tSweet lovers love the spring.\n\n\tBetween the acres of the rye,\n\tWith a hey, and a ho, and a hey nonino\n\tThese pretty country folks would lie,\n\tIn spring time, &c.\n\n\tThis carol they began that hour,\n\tWith a hey, and a ho, and a hey nonino,\n\tHow that a life was but a flower\n\tIn spring time, &c.\n\n\tAnd therefore take the present time,\n\tWith a hey, and a ho, and a hey nonino;\n\tFor love is crowned with the prime\n\tIn spring time, &c.\n\nTOUCHSTONE\tTruly, young gentlemen, though there was no great\n\tmatter in the ditty, yet the note was very\n\tuntuneable.\n\nFirst Page\tYou are deceived, sir: we kept time, we lost not our time.\n\nTOUCHSTONE\tBy my troth, yes; I count it but time lost to hear\n\tsuch a foolish song. God be wi' you; and God mend\n\tyour voices! Come, Audrey.\n\n\t[Exeunt]\n\n\n\n\n\tAS YOU LIKE IT\n\n\nACT V\n\n\n\nSCENE IV\tThe forest.\n\n\n\t[Enter DUKE SENIOR, AMIENS, JAQUES, ORLANDO, OLIVER,\n\tand CELIA]\n\nDUKE SENIOR\tDost thou believe, Orlando, that the boy\n\tCan do all this that he hath promised?\n\nORLANDO\tI sometimes do believe, and sometimes do not;\n\tAs those that fear they hope, and know they fear.\n\n\t[Enter ROSALIND, SILVIUS, and PHEBE]\n\nROSALIND\tPatience once more, whiles our compact is urged:\n\tYou say, if I bring in your Rosalind,\n\tYou will bestow her on Orlando here?\n\nDUKE SENIOR\tThat would I, had I kingdoms to give with her.\n\nROSALIND\tAnd you say, you will have her, when I bring her?\n\nORLANDO\tThat would I, were I of all kingdoms king.\n\nROSALIND\tYou say, you'll marry me, if I be willing?\n\nPHEBE\tThat will I, should I die the hour after.\n\nROSALIND\tBut if you do refuse to marry me,\n\tYou'll give yourself to this most faithful shepherd?\n\nPHEBE\tSo is the bargain.\n\nROSALIND\tYou say, that you'll have Phebe, if she will?\n\nSILVIUS\tThough to have her and death were both one thing.\n\nROSALIND\tI have promised to make all this matter even.\n\tKeep you your word, O duke, to give your daughter;\n\tYou yours, Orlando, to receive his daughter:\n\tKeep your word, Phebe, that you'll marry me,\n\tOr else refusing me, to wed this shepherd:\n\tKeep your word, Silvius, that you'll marry her.\n\tIf she refuse me: and from hence I go,\n\tTo make these doubts all even.\n\n\t[Exeunt ROSALIND and CELIA]\n\nDUKE SENIOR\tI do remember in this shepherd boy\n\tSome lively touches of my daughter's favour.\n\nORLANDO\tMy lord, the first time that I ever saw him\n\tMethought he was a brother to your daughter:\n\tBut, my good lord, this boy is forest-born,\n\tAnd hath been tutor'd in the rudiments\n\tOf many desperate studies by his uncle,\n\tWhom he reports to be a great magician,\n\tObscured in the circle of this forest.\n\n\t[Enter TOUCHSTONE and AUDREY]\n\nJAQUES\tThere is, sure, another flood toward, and these\n\tcouples are coming to the ark. Here comes a pair of\n\tvery strange beasts, which in all tongues are called fools.\n\nTOUCHSTONE\tSalutation and greeting to you all!\n\nJAQUES\tGood my lord, bid him welcome: this is the\n\tmotley-minded gentleman that I have so often met in\n\tthe forest: he hath been a courtier, he swears.\n\nTOUCHSTONE\tIf any man doubt that, let him put me to my\n\tpurgation. I have trod a measure; I have flattered\n\ta lady; I have been politic with my friend, smooth\n\twith mine enemy; I have undone three tailors; I have\n\thad four quarrels, and like to have fought one.\n\nJAQUES\tAnd how was that ta'en up?\n\nTOUCHSTONE\tFaith, we met, and found the quarrel was upon the\n\tseventh cause.\n\nJAQUES\tHow seventh cause? Good my lord, like this fellow.\n\nDUKE SENIOR\tI like him very well.\n\nTOUCHSTONE\tGod 'ild you, sir; I desire you of the like. I\n\tpress in here, sir, amongst the rest of the country\n\tcopulatives, to swear and to forswear: according as\n\tmarriage binds and blood breaks: a poor virgin,\n\tsir, an ill-favoured thing, sir, but mine own; a poor\n\thumour of mine, sir, to take that that no man else\n\twill: rich honesty dwells like a miser, sir, in a\n\tpoor house; as your pearl in your foul oyster.\n\nDUKE SENIOR\tBy my faith, he is very swift and sententious.\n\nTOUCHSTONE\tAccording to the fool's bolt, sir, and such dulcet diseases.\n\nJAQUES\tBut, for the seventh cause; how did you find the\n\tquarrel on the seventh cause?\n\nTOUCHSTONE\tUpon a lie seven times removed:--bear your body more\n\tseeming, Audrey:--as thus, sir. I did dislike the\n\tcut of a certain courtier's beard: he sent me word,\n\tif I said his beard was not cut well, he was in the\n\tmind it was: this is called the Retort Courteous.\n\tIf I sent him word again 'it was not well cut,' he\n\twould send me word, he cut it to please himself:\n\tthis is called the Quip Modest. If again 'it was\n\tnot well cut,' he disabled my judgment: this is\n\tcalled the Reply Churlish. If again 'it was not\n\twell cut,' he would answer, I spake not true: this\n\tis called the Reproof Valiant. If again 'it was not\n\twell cut,' he would say I lied: this is called the\n\tCounter-cheque Quarrelsome: and so to the Lie\n\tCircumstantial and the Lie Direct.\n\nJAQUES\tAnd how oft did you say his beard was not well cut?\n\nTOUCHSTONE\tI durst go no further than the Lie Circumstantial,\n\tnor he durst not give me the Lie Direct; and so we\n\tmeasured swords and parted.\n\nJAQUES\tCan you nominate in order now the degrees of the lie?\n\nTOUCHSTONE\tO sir, we quarrel in print, by the book; as you have\n\tbooks for good manners: I will name you the degrees.\n\tThe first, the Retort Courteous; the second, the\n\tQuip Modest; the third, the Reply Churlish; the\n\tfourth, the Reproof Valiant; the fifth, the\n\tCountercheque Quarrelsome; the sixth, the Lie with\n\tCircumstance; the seventh, the Lie Direct. All\n\tthese you may avoid but the Lie Direct; and you may\n\tavoid that too, with an If. I knew when seven\n\tjustices could not take up a quarrel, but when the\n\tparties were met themselves, one of them thought but\n\tof an If, as, 'If you said so, then I said so;' and\n\tthey shook hands and swore brothers. Your If is the\n\tonly peacemaker; much virtue in If.\n\nJAQUES\tIs not this a rare fellow, my lord? he's as good at\n\tany thing and yet a fool.\n\nDUKE SENIOR\tHe uses his folly like a stalking-horse and under\n\tthe presentation of that he shoots his wit.\n\n\t[Enter HYMEN, ROSALIND, and CELIA]\n\n\t[Still Music]\n\nHYMEN\t        Then is there mirth in heaven,\n\tWhen earthly things made even\n\tAtone together.\n\tGood duke, receive thy daughter\n\tHymen from heaven brought her,\n\tYea, brought her hither,\n\tThat thou mightst join her hand with his\n\tWhose heart within his bosom is.\n\nROSALIND\t[To DUKE SENIOR]  To you I give myself, for I am yours.\n\n\t[To ORLANDO]\n\n\tTo you I give myself, for I am yours.\n\nDUKE SENIOR\tIf there be truth in sight, you are my daughter.\n\nORLANDO\tIf there be truth in sight, you are my Rosalind.\n\nPHEBE\tIf sight and shape be true,\n\tWhy then, my love adieu!\n\nROSALIND\tI'll have no father, if you be not he:\n\tI'll have no husband, if you be not he:\n\tNor ne'er wed woman, if you be not she.\n\nHYMEN\t        Peace, ho! I bar confusion:\n\t'Tis I must make conclusion\n\tOf these most strange events:\n\tHere's eight that must take hands\n\tTo join in Hymen's bands,\n\tIf truth holds true contents.\n\tYou and you no cross shall part:\n\tYou and you are heart in heart\n\tYou to his love must accord,\n\tOr have a woman to your lord:\n\tYou and you are sure together,\n\tAs the winter to foul weather.\n\tWhiles a wedlock-hymn we sing,\n\tFeed yourselves with questioning;\n\tThat reason wonder may diminish,\n\tHow thus we met, and these things finish.\n\t\n\tSONG.\n\tWedding is great Juno's crown:\n\tO blessed bond of board and bed!\n\t'Tis Hymen peoples every town;\n\tHigh wedlock then be honoured:\n\tHonour, high honour and renown,\n\tTo Hymen, god of every town!\n\nDUKE SENIOR\tO my dear niece, welcome thou art to me!\n\tEven daughter, welcome, in no less degree.\n\nPHEBE\tI will not eat my word, now thou art mine;\n\tThy faith my fancy to thee doth combine.\n\n\t[Enter JAQUES DE BOYS]\n\nJAQUES DE BOYS\tLet me have audience for a word or two:\n\tI am the second son of old Sir Rowland,\n\tThat bring these tidings to this fair assembly.\n\tDuke Frederick, hearing how that every day\n\tMen of great worth resorted to this forest,\n\tAddress'd a mighty power; which were on foot,\n\tIn his own conduct, purposely to take\n\tHis brother here and put him to the sword:\n\tAnd to the skirts of this wild wood he came;\n\tWhere meeting with an old religious man,\n\tAfter some question with him, was converted\n\tBoth from his enterprise and from the world,\n\tHis crown bequeathing to his banish'd brother,\n\tAnd all their lands restored to them again\n\tThat were with him exiled. This to be true,\n\tI do engage my life.\n\nDUKE SENIOR\tWelcome, young man;\n\tThou offer'st fairly to thy brothers' wedding:\n\tTo one his lands withheld, and to the other\n\tA land itself at large, a potent dukedom.\n\tFirst, in this forest, let us do those ends\n\tThat here were well begun and well begot:\n\tAnd after, every of this happy number\n\tThat have endured shrewd days and nights with us\n\tShall share the good of our returned fortune,\n\tAccording to the measure of their states.\n\tMeantime, forget this new-fall'n dignity\n\tAnd fall into our rustic revelry.\n\tPlay, music! And you, brides and bridegrooms all,\n\tWith measure heap'd in joy, to the measures fall.\n\nJAQUES\tSir, by your patience. If I heard you rightly,\n\tThe duke hath put on a religious life\n\tAnd thrown into neglect the pompous court?\n\nJAQUES DE BOYS\tHe hath.\n\nJAQUES\tTo him will I : out of these convertites\n\tThere is much matter to be heard and learn'd.\n\n\t[To DUKE SENIOR]\n\n\tYou to your former honour I bequeath;\n\tYour patience and your virtue well deserves it:\n\n\t[To ORLANDO]\n\n\tYou to a love that your true faith doth merit:\n\n\t[To OLIVER]\n\n\tYou to your land and love and great allies:\n\n\t[To SILVIUS]\n\n\tYou to a long and well-deserved bed:\n\n\t[To TOUCHSTONE]\n\n\tAnd you to wrangling; for thy loving voyage\n\tIs but for two months victuall'd. So, to your pleasures:\n\tI am for other than for dancing measures.\n\nDUKE SENIOR\tStay, Jaques, stay.\n\nJAQUES\tTo see no pastime I\twhat you would have\n\tI'll stay to know at your abandon'd cave.\n\n\t[Exit]\n\nDUKE SENIOR\tProceed, proceed: we will begin these rites,\n\tAs we do trust they'll end, in true delights.\n\n\t[A dance]\n\n\n\n\n\tAS YOU LIKE IT\n\n\tEPILOGUE\n\n\nROSALIND\tIt is not the fashion to see the lady the epilogue;\n\tbut it is no more unhandsome than to see the lord\n\tthe prologue. If it be true that good wine needs\n\tno bush, 'tis true that a good play needs no\n\tepilogue; yet to good wine they do use good bushes,\n\tand good plays prove the better by the help of good\n\tepilogues. What a case am I in then, that am\n\tneither a good epilogue nor cannot insinuate with\n\tyou in the behalf of a good play! I am not\n\tfurnished like a beggar, therefore to beg will not\n\tbecome me: my way is to conjure you; and I'll begin\n\twith the women. I charge you, O women, for the love\n\tyou bear to men, to like as much of this play as\n\tplease you: and I charge you, O men, for the love\n\tyou bear to women--as I perceive by your simpering,\n\tnone of you hates them--that between you and the\n\twomen the play may please. If I were a woman I\n\twould kiss as many of you as had beards that pleased\n\tme, complexions that liked me and breaths that I\n\tdefied not: and, I am sure, as many as have good\n\tbeards or good faces or sweet breaths will, for my\n\tkind offer, when I make curtsy, bid me farewell.\n\n\t[Exeunt]\n"
  },
  {
    "path": "testdata/canterbury/cp.html",
    "content": "<head>\n<title>Compression Pointers</title>\n<META HTTP-EQUIV=\"Keywords\" CONTENT=\"compression, compression, compression\">\n</head>\n<body>\n<BODY BGCOLOR=#FFFFFF>\n\n<center>\n<H1> Compression Pointers </h1>\n\n\n\n</center>\n\n<p>\n<a href=\"#Resources\">Compression resources</a>, <a href=\"#Conferences\">conferences</a>, and some <a href=\"#Research\">research\ngroups and companies</a>, are listed towards the end of this page. <p>\n\nUse this <a href=\"form.html\">handy form</a> to add something to this page, or to simply say you liked this page<i> <img src=\"new.gif\">\n<p>\n\n</i>\n\n\n\n<p>\n\n<h2>What's New?</h2><p>\n\n\n<a href=\"http://www.teaser.fr/~jlgailly/\">Jean-loup Gailly</a> -- <i>Mr. gzip,\nPNG, CCR (1996-06-10)</i>\n<img src=\"new.gif\">\n<br>\n\n<a href=\"http://www.creative.net/~tristan/MPEG\">MPEG Pointers and Resources</a>\n<img src=\"new.gif\">\n<br>\n\n<a href=\"http://www-isl.stanford.edu/~gray/\">Robert M. Gray</a> -- <i>Signal\ncompression, VQ, image quality evaluation (1996-04-22)</i><img src=\"new.gif\">\n<br>\n\n<a href=\"http://www-isl.stanford.edu/~gray/compression.html\">Compression and\nClassification Group</a> -- <i>ISL,EE,Stanford (1996-04-22)</i><img src=\"new.gif\">\n<br>\n\n<a href=\"http://www-isl.stanford.edu/~gray/iii.html\">Signal Processing\nand the International Information Infrastructure</a> -- <i>Web sites (1996-04-22)</i> <img src=\"new.gif\">\n<br>\n\n<a href=\"http://www.cs.sc.edu:80/~valenta/\">Valenta, Vladimir</a> -- <i>(1996-04-22)</i>\n<br>\n\n\n<a href=\"http://patpwww.epfl.ch:80/~jordan/Subjects/Parallel/parallel.html\">Jordan, Frederic</a> -- <i>Parallel Image Compression (1996-04-12)</i> <img src=\"new.gif\">\n<br>\n<a href=\"http://www.garlic.com/biz/eotek\">Electro-Optical Technologies, Inc.</a> -- <i>Consultant (1996-04-12)</i> <img src=\"new.gif\">\n<br>\n<a href=\"http://quicktime.apple.com\">quicktime.apple.com</a> -- <i>Quicktime site (1996-03-11)</i> <img src=\"new.gif\">\n<br>\n<a href=\"http://www.chips.ibm.com/products/aldc/index.html\">IBM Hardware</a> -- <i>Compression chips (1996-03-11)</i> <img src=\"new.gif\">\n<br>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<!---\n\n<img src=\"new.gif\"><i>Do you have, or know of, a research position where an image compression guru with a Ph.D. would feel at\nhome?  Let me know if you do...<a\nhref=\"mailto:singlis@cs.waikato.ac.nz\"><b>send me some email!</b></a>, or <a\nhref=\"http://www.cs.waikato.ac.nz/~singlis/cv.html\"><b>check out my\nc.v.</b>\n</a> \n</i>\n\n-->\n\n<p>\n\n\n<p>\n\n\n<h2><i>People</i></h2>\n<h2>A</h2>\n\n<a href=\"http://quest.jpl.nasa.gov/Mark.Adler/\">Adler, Mark</a> -- <i>Info-ZIP; Zip, UnZip, gzip and zlib co-author; PNG group</i>\n<p>\n\n<h2>B</h2>\n\n<a href=\"http://www.eese.qut.edu.au/~mbaker/\">Baker, Matthew</a> -- <i>Region based video compression</i>\n<p>\n<a href=\"http://www.eecs.wsu.edu/~bamberg/\">Bamberger, Roberto H.</a>\n<p>\n<a href=\"http://sutherland.eese.qut.edu.au/~dbell\">Bell, Daniel</a> -- <i>Region based image compression</i>\n<p>\n<a href=\"http://www.cosc.canterbury.ac.nz/~tim\">Bell, Tim</a> -- <i>compression, computer science for children, and computers and music.</i> \n<p>\n<a href=\"http://www.polytechnique.fr/poly/~bellard/\">Bellard, Fabrice</a> -- <i>Author of LZEXE</I>\n<p>\n<a href=\"http://www.cevis.uni-bremen.de/~willy/\">Berghorn, Willy </a>\n<p>\n<a href=\"http://www.best.com/~bhaskara\">Bhaskaran, Vasudev</a> -- <i>Image and Video compression</i> \n<p>\n<a href=\"http://wwwvms.utexas.edu/~cbloom/index.html\">Bloom, Charles</a> -- <i>text compression, LZ methods, PPM methods...</i>\n<p>\n<a href=\"http://www.ime.usp.br/~rbrito\">Brito, Roger</a> -- <i>Arithmetic Coding, LZW, Text Compression</i>\n<p>\n<a href=\"http://www.engineering.usu.edu/ece/faculty/scottb.html\">Budge, Scott E.</a> -- <i>medical/lossy image compression</i>\n<p>\n<a href=\"http://www.elec.uow.edu.au/people/staff/burnett/biography.html\">Burnett, Ian</a> -- <i>Speech coding, prototype waveform techniques</I> <img src=\"new.gif\">\n<p>\n\n\n<h2>C</h2>\n\n<a href=\"http://gabor.eecs.berkeley.edu/~wychan/\">Chan, Christopher</a> -- <i>universal lossy source coding, adaptive VQ</i>\n<p>\n<a href=\"http://www.compsci.com/~chao\">Chao, Hong-yang</a> -- <I>Lightning strike image compressor </i> \n<p>\n<a href=\"http://monet.uwaterloo.ca:80/schao/\">Chao, Stewart</a>\n<p>\n<a href=\"http://diana.ecs.soton.ac.uk/~pjc94r/\">Cherriman, Peter</a>\n<p>\n<a href=\"http://www-video.eecs.berkeley.edu/erl/sccheung.html\">Cheung, S.C.</a> -- <i>Scalable video compression algorithms (18th Feb 1996)</i> <img src=\"new.gif\">\n<p>\n\n<a href=\"http://etro.vub.ac.be/chchrist.html\">Christopoulos, Charilaos</a> -- <i> Image and Video compression </i>\n<p>\n<a href=\"http://sipi.usc.edu/~chrysafi/\">Chrysafis, Christos</a> \n<p>\n<a href=\"http://www.ee.gatech.edu/research/DSP/students/wchung/index.html\">Chung, Wilson C.</a> -- <i>R-D image and video coding, subband/wavelet, filter banks</i> \n<p>\n<a href=\"mailto:aclark@hayes.com\">Clark, Alan</a> -- <i>primary contact for V.42bis. Developed BTLZ variant of LZW</i>\n<p>\n<a href=\"http://www.cs.waikato.ac.nz/cs/Staff/jgc.html\">Cleary, John</a> -- <i>PPM, PPM*, K*</i>\n<p>\n<a href=\"http://www.cs.brandeis.edu/dept/faculty/cohn/\">Cohn, Martin</a>\n<p>\n\n<a href=\"http://plg.uwaterloo.ca/~gvcormac\">Cormack, Gordon V.</a> -- <I>DMC</i>\n<p>\n<a href=\"http://www.ee.duke.edu/~cec/index.html\">Cramer, Chris</a> -- <i>neural network image compression</i>\n<p>\n\n<h2>D</h2>\n<a href=\"http://www.cs.dartmouth.edu/~jmd/\">Danskin, John</a> -- <i>Protocol compression, document compression (9th Feb 1996)</i> \n<p>\n<a href=\"http://www.cs.dartmouth.edu/~gdavis\">Davis, Geoff</a> -- <i>wavelets, image compression, medical</i>\n<p>\n<a href=\"http://www-mddsp.enel.ucalgary.ca/People/adilger/\">Dilger, Andreas</a> -- <i>fractal block coding of video sequences</i>\n<p>\n\n\n<h2>E</h2>\n<a href=\"http://info.cipic.ucdavis.edu/~estes/index.html\">Estes, Robert</a>\n<p>\n\n\n\n<h2>F</h2>\n<a href=\"http://inls.ucsd.edu/y/Fractals/\">Fisher, Yuval</a> -- <i>Fractal Image Compression</i>\n<p>\n<a href=\"http://www.wmin.ac.uk/~ajoec1/homepage.html\">Ford, Adrian</a> -- <i>Subjective and Objective Compression quality (5th Mar 1996)</i> <img src=\"new.gif\">\n<p>\n\n<h2>G</h2> \n<a href=\"http://www.teaser.fr/~jlgailly/\">Jean-loup Gailly</a> --\n<i>Mr. gzip, PNG, CCR (1996-06-10)</i>\n<p>\n\n<a href=\"http://www.ece.ucsb.edu/faculty/gersho/default.html\">Gersho, Allen</a> -- <i>Vector Quantisation, Image Compression</i>\n<p>\n<a href=\"http://life.anu.edu.au/ci/vol1/goertzel.html\">Goertzel, Ben</a>\n<p>\n<a href=\"http://info.lut.ac.uk/departments/el/research/sys/compression.html\">Gooch, Mark</a> -- <i>High Performance Hardware Compression (7th Feb 1996)</i> \n<p>\n<a href=\"http://robotics.eecs.berkeley.edu/~vkgoyal/\">Goyal, Vivek</a> -- <i>overcomplete representations, adaptive transform coding, VQ</i>\n<p> \n<a href=\"http://www-isl.stanford.edu/~gray/\">Robert M. Gray</a> -- <i>Signal\ncompression, VQ, image quality evaluation</i><img src=\"new.gif\">\n<p>\n\n<h2>H</h2>\n<a href=\"http://cork.informatik.uni-wuerzburg.de/mitarbeiter/ulli\">Hafner, Ullrich</a> -- <i>WFA image compression</i>\n<p>\n<a href=\"http://www.ics.uci.edu/~dan/\">Hirschberg, Dan</a> -- <i>algorithm theory, compression</i> \n<p>\n<a href=\"http://wolfpack.larc.nasa.gov/holland.html\">Holland, Scott</a>\n<p>\n<a href=\"http://www.csc.uvic.ca/home/nigelh/nigelh.html\">Horspool, R. Nigel</a> -- <i>text compression, ECG compression</i>\n\n<h2>I</h2>\n<a href=\"http://www.cs.waikato.ac.nz/~singlis\">Inglis, Stuart</a> -- <i>image compression, OCR, lossy/lossless document compression</I>\n<p>\n\n<h2>J</h2>\n<a href=\"http://www.cs.uiowa.edu/~jones/compress/index.html\">Jones, Douglas</a> -- <i>splay-tree based compression and encryption</i>\n<p>\n<a href=\"http://info.lut.ac.uk/departments/el/research/sys/compression.html\">Jones, Simon</a> -- <i>Lossless compression, High Performance Hardware (7th Feb 1996) </i> \n<p>\n<a href=\"http://patpwww.epfl.ch:80/~jordan/Subjects/Parallel/parallel.html\">Jordan, Frederic</a> -- <i>Parallel Image Compression (12th April 1996)</i> <img src=\"new.gif\">\n<p>\n<a href=\"mailto:robjung@world.std.com\">Jung, Robert K.</a> -- <i><a href=\"http://www.info.fundp.ac.be/~fta/arj.html\">ARJ</a> </i>\n<p>\n<a href=\"http://www.cs.tu-berlin.de/~jutta/toast.html\">jutta</a>\n<p>\n\n\n\n<h2>K</h2>\n<a href=\"http://links.uwaterloo.ca\">Kominek, John</a> -- <I>Fractal and spline based compression</i>\n<p>\n<a href=\"http://info.lut.ac.uk/departments/el/research/sys/elmk3.html\">Kjelso, Morten</a> -- <i>Main memory compression, High performance hardware</i> \n<p>\n<a href=\"http://wwwcip.informatik.uni-erlangen.de/user/mskuhn\">Kuhn, Markus</a> -- <i>JBIG implementation</i> <img src=\"new.gif\">\n<p>\n<a href=\"http://sipi.usc.edu/faculty/Kuo.html\">Kuo, C.-C. Jay</a>\n<p>\n<a href=\"http://kaarna.cc.jyu.fi:80/~kuru/\">Kuru, Esa</a>\n<p>\n<a href=\"http://www.prz.tu-berlin.de:80/~teo/\">Kyfonidis, Theodoros</a>\n<p>\n\n<h2>L</h2>\n<a href=\"http://www.icsi.berkeley.edu/~lampart/\">Lamparter, Bernd</a>\n<p>\n<a href=\"http://www.cse.ucsc.edu/cgi-bin/faculty?langdon\">Langdon, Glen</a>\n<p>\n<a href=\"http://www.dna.lth.se/~jesper/\">Larsson, Jesper</a> -- <i>algorithms and data structures, text compression</i> <img src=\"new.gif\">\n<p>\n\n\n<h2>M</h2>\n<a href=\"http://glimpse.cs.arizona.edu:1994/udi.html\">Manber, Udi</a>\n<p>\n<a href=\"http://www.elec.rma.ac.be/~jma/compression.html\">Mangen, Jean-Michel</a> -- <i>image compression, wavelets, satellite</I>\n<p>\n<a href=\"http://www.cs.mu.oz.au/~alistair\">Moffat, Alistair</a> -- <i>text and index compression, coding methods, information retrieval, document databases</i>\n<p>\n<a href=\"http://deskfish.cs.titech.ac.jp/squish/squish_index.html\">Montgomery, Christopher</a> -- <i>OggSquish, audio compression</i>\n<p>\n<a href=\"mailto:umueller@amiga.physik.unizh.ch\">Mueller, Urban Dominik</a> -- <i>XPK system</I>\n<p>\n<h2>N</h2>\n<a href=\"ftp://ai.toronto.edu/pub/radford/www/index.html\">Neal, Radford</a>\n<p>\n<a href=\"http://www.cs.waikato.ac.nz/~cgn\">Nevill-Manning, Craig</a>\n<p>\n<a href=\"http://phoenix.bath.ac.uk/jez/jez.html\">Nicholls, Jeremy</a>\n<p>\n<a href=\"http://www.acti.com/matt/\">Noah, Matt</a> -- <i>speech, ATC, ACELP and IMBE</i>\n<p>\n<a href=\"http://www.eecs.wsu.edu/~vnuri/\">Nuri, Veyis</a> -- <i>wavelets, data compression, DSP (speech & image)</I>\n\n<h2>O</h2>\n<a href=\"ftp://replicant.csci.unt.edu/pub/oleg/README.html\">Oleg</a> -- <i>Lots of code</i>\n<p>\n<a href=\"http://sipi.usc.edu/faculty/Ortega/Ortega.html\">Ortega, Antonio</a> -- <i>Video compression, Packet video, Adaptive quantization</i>\n<p>\n<a href=\"http://www.cs.dartmouth.edu:80/~cowen/\">Owen, Charles</a>\n<p>\n\n<h2>P</h2>\n<a\nhref=\"http://www-mddsp.enel.ucalgary.ca/People/provine/compression.html\">Provine,\nJoseph</a> -- <i>Model based coding</i>\n<p>\n\n<h2>R</h2>\n<a href=\"http://monet.uwaterloo.ca/~john/btpc.html\">Robinson, John</a> -- <i>Binary Tree Predictive Coding</i>\n<p>\n<a href=\"http://quest.jpl.nasa.gov/Info-ZIP/people/greg/\">Roelofs, Greg</a> -- <i>Info-ZIP; primary UnZip author; PNG group</i>\n<p>\n<a href=\"http://www.ece.ucsb.edu/faculty/rose/default.html\">Rose, Kenneth</a>\n<p>\n<a href=\"http://www.nettuno.it/fiera/telvox/telvox.htm\">Russo, Roberto Maria</a> -- <I>Multiplatform Data Compression</i>\n<p>\n\n<h2>S</h2>\n<a href=\"http://harc.edu:80/~schmidt/\">Schmidt, Bill</a>\n<p>\n<a href=\"http://koa.ifa.hawaii.edu/~shaw/shaw.html\">Shaw, Sandy C.</a>\n<p>\n<a href=\"http://www.comm.toronto.edu/~kamran/kamran.html\">Sharifi, Kamran</a> -- <i>Video over ATM networks</i>\n<p>\n<a href=\"http://calypso.unl.edu/~sunil/\">Shende, Sunil M.</a>\n<p>\n<a href=\"http://viewprint2.berkeley.edu/KleinLab/Amnon/Amnon.html\">Silverstein, D. Amnon</a>\n<p>\n<a href=\"http://www-plateau.cs.berkeley.edu/people/smoot\">Smoot, Steve</a> -- <i>MPEG</i>\n<p>\n<a href=\"http://www.cs.brandeis.edu/dept/faculty/storer/\">Storer, James A.</a>\n<p>\n<a href=\"http://rice.ecs.soton.ac.uk/index.html\">Streit, Jurgen</a> -- <i>Low bitrate coding</i>\n<p>\n<a href=\"http://www_nt.e-technik.uni-rostock.de/~ts/index.html\">Strutz, Tilo</a> -- <i>Wavelet image compressor, demonstration execs</i> <img src=\"new.gif\">\n<p>\n\n\n<h2>T</h2>\n<a href=\"http://zaphod.csci.unt.edu:80/~srt/\">Tate, Steve</a>\n<p>\n<a href=\"http://www.cs.waikato.ac.nz/~wjt\">Teahan, Bill</a> -- <i>PPM, PPM*, master of the Calgary Corpus</i>\n<p>\n<a href=\"http://lightning.eee.strath.ac.uk/~duncan/\">Thomson, Duncan</a> -- <i>ECG compression with ANNs</i>\n<p>\n<a href=\"http://outside.gsfc.nasa.gov/GRSS/\">Tilton, James C.</a>\n<p>\n<a href=\"http://www.uni-karlsruhe.de/~un55/\">Tomczyk, Marek</a>\n<p>\n<a href=\"http://munkora.cs.mu.oz.au/~aht\">Turpin, Andrew</a> -- <i>Prefix Codes</i> \n<p>\n\n<h2>V</h2>\n<a href=\"http://gabor.eecs.berkeley.edu/~martin/\">Vetterli, Martin</a> -- <i>wavelets, subband coding, video compression, computational complexity</i>\n<p>\n<a href=\"http://www.cs.duke.edu/~jsv/HomePage.html\">Vitter, Jeff</a>\n<p>\n<a href=\"http://www.eee.strath.ac.uk/~stathis/home.html\">Voukelatos, Stathis</a>\n<p>\n<a href=\"http://www.xs4all.nl/~aipnl\">de Vries, Nico</a> -- <i>AIP-NL, UltraCompressor II development</i> <img src=\"new.gif\">\n<p>\n\n<h2>W</h2>\n\n<a href=\"http://ipcl.ee.queensu.ca/wareham/wareham.html\">Wareham, Paul</a> -- <i>Region-oriented video coding</I>\n<p>\n<a href=\"mailto://Wegs59@aol.com\">Wegener, Al</a> -- <i>DSP, lossless audio compression and AC-2</i> \n<p>\n<a href=\"http://www-dsp.rice.edu:80/~weid/\">Wei, Dong</a> -- <i>Wavelet compression</i>\n<p>\n<a href=\"http://www.rocksoft.com/~ross\">Williams, Ross</a>\n<p>\n<a href=\"http://www.cs.waikato.ac.nz/~ihw\">Witten, Ian</a> -- <i>PPM, mg, arithmetic coding</i>\n<p>\n<a href=\"http://www.sees.bangor.ac.uk/~gerry/sp_summary.html\">Wolff, Gerry</a>\n<p>\n<a href=\"http://sipi.usc.edu/~wwoo/\">Woo, Woon-Tack</a> -- <i>stereo image and video compression (12th Feb 1996)</i>\n<p>\n<a href=\"http://www.csd.uwo.ca/faculty/wu/\">Wu, Xiaolin</a> -- <i>CALIC</i>\n<P>\n\n\n<h2>Z</h2>\n<a href=\"http://www.cs.rmit.edu.au/~jz\">Zobel, Justin</a> -- <i>index compression, database compression</i>\n<p>\n\n<br>\n<br>\n\n\n<a name=\"Conferences\">\n\n<h2><i>Conferences</i></h2>\n<a href=\"http://www.cs.brandeis.edu:80/~dcc/index.html\"><b>Data Compression Conference (DCC), Snowbird, Utah, USA.</b></a><br>\n<p>\n\n<a name=\"Resources\">\n\n<h2><i>Resources</i></h2>\n<dt>\n<i><b>Where to get answers...</b></i>\n<dd>\n<dd><a href=\"http://info.itu.ch/\">International Telecommunication Union (ITU)</a> -- <i>standards documents (CCITT)</i>\n<br>\n<dd><a href=\"http://www.cis.ohio-state.edu/hypertext/faq/usenet/compression-faq/top.html\">comp.compression -- Frequently Asked Questions</a> -- <i>Come here 1st!</i>\n<dd>\n<a href=\"http://www.cis.ohio-state.edu/hypertext/faq/usenet/jpeg-faq/faq.html\">JPEG - Frequently Asked Questions</a>\n<dd>\n<a href=\"http://www.crs4.it/HTML/LUIGI/MPEG/mpegfaq.html\">MPEG - Frequently Asked Questions</a>\n<dd>\n<a href=\"ftp://rtfm.mit.edu:/pub/usenet/news.answers/standards-faq\">Standards - Frequenty Asked Questions</a>\n<dd>\n<a href=\"news:comp.compression.research\">usenet newsgroup: comp.compression.research</a>\n<br>\n<dd>\n<a href=\"http://www.mi.net/act/act.html\">Archive Compression Test</a> -- <i>Summary of all archivers</i> \n<br>\n<dd>\n<a href=\"http://dip1.ee.uct.ac.za/fractal.bib.html\">Fractal compression bibliography</a> -- <i>bibtex file</i>\n<br>\n<dd>\n<a href=\"http://goethe.ira.uka.de/edu/proseminar.html\">LZ/Complexity Seminars</a> -- <i>(in German)</i>\n<br>\n<dd>\n<a href=\"http://www.cs.waikato.ac.nz/~singlis/ratios.html\">Comparitive Compression Ratios</a> -- <i>Sofar...B&W, Gray Scale, Text Compression</i>\n<br>\n<dd>\n<a href=\"http://www.cs.ucl.ac.uk/mice/mpeggloss.html\">VCN (Video, Compression, Networking)\nGlossary</a>\n<br>\n<dd>\n<a href=\"http://www.cs.waikato.ac.nz/~nzdl/\">Digital Library -- search for compression</a>\n<br>\n</dt>\n\n<br>\n<dt>\n<i><b>Reports/Ph.D. Theses</b></i>\n<dd>\n<a href=\"http://www.cs.brown.edu/publications/techreports/reports/CS-93-28.html\">Paul Howards Ph.D. thesis</a><br>\n<dd><i>The Design and Analysis of Efficient Lossless Data Compression Systems</i>\n<br>\n</dt>\n\n\n\n<br>\n<dt>\n<i><b>Source code</b></i>\n<dd>\n<a href=\"ftp://munnari.oz.au/pub/arith_coder\">Arithmetic coding routines</a> \n<dd><i>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp(from Moffat, Neal and Witten, Proc. DCC, April 1995)</i>\n<br>\n<dd>\n<a href=\"ftp://ftp.cpsc.ucalgary.ca/pub/projects/ar.cod\">CACM Arithmetic coding package</a>\n<dd><i>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp(Witten, Neal and Cleary, CACM 30:520-541, June 1987)</i>\n<br>\n<dd>\n<a href=\"ftp://nic.funet.fi/pub/graphics/misc/test-images/jbig.tar.gz\">JBIG Source code</a> <i>Includes a Q-coder</i>\n<br>\n<dd><a href=\"http://wwwcip.informatik.uni-erlangen.de/user/mskuhn\">Markus Kuhn's JBIG implementation</a> \n<br>\n<dd>\n<a href=\"ftp://media-lab.media.mit.edu/pub/k-arith-code/\">k-arithmetic coder</a>\n<br>\n<dd>\n<a href=\"ftp://garbo.uwasa.fi/pc/programming/lds_11.zip\">Lossless Data Compression toolkit 1.1</a>\n<br>\n<dd>\n<a href=\"http://www.cs.uiowa.edu/~jones/compress/index.html\">Splay Trees Code</a> -- <i>by Douglas W. Jones</i>\n<br>\n<dd><a href=\"ftp://ftp.cl.cam.ac.uk/users/djw3\">Block compression code</a> -- <i>Excellent text compressor</i>\n<br>\n\n</dt>\n\n<br>\n<dt>\n<i><b>Test Files</b></i>\n<dd>\n<a href=\"ftp://nic.funet.fi/pub/graphics/misc/test-images/\">Test Images</a> -- <i>CCITT images (pbm), Lena etc. (Sun raster)</i>\n<br>\n<dd>\nStockholm test images -- <i>You have to buy a CDROM, thats all I know! :-(</i>\n<dd>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp mail me at <a href=\"mailto:singlis@cs.waikato.ac.nz\">singlis@cs.waikato.ac.nz</a> if you know anything about them.\n<br>\n<dd>\n<a href=\"ftp://ftp.cpsc.ucalgary.ca/pub/projects/text.compression.corpus/\">Calgary Text Compression Corpus</a><i> (Text Compression, Bell, Cleary and Witten, 1990)</i>\n<br>\n</dt>\n\n<br>\n\n<a name=\"Research\">\n\n\n<h2><i>Research Projects, Standards & Companies</i></h2>\n\n<p>\n<dt>\n<i><b>Research/Free software Groups</b></i>\n<dd><a href=\"http://www-isl.stanford.edu/~gray/compression.html\">Compression and\nClassification Group</a> -- <i>ISL,EE,Stanford (22th April 1996)</i><img src=\"new.gif\">\n\n<dd><a href=\"http://www.bonzi.com\">Voice email</a> -- <i>Lossless audio compression (18th Feb 1996)</i> \n\n\n<dd><a href=\"http://www.garlic.com/biz/eotek\">Electro-Optical Technologies, Inc.</a> -- <i>Consultant (12th April 1996)</i> <img src=\"new.gif\">\n\n<dd><a href=\"http://quicktime.apple.com\">quicktime.apple.com</a> -- <i>Quicktime site (11th Mar 1996)</i>\n\n<dd><a href=\"http://www.atinternet.fr/image/\">IMAGE etc.</a> -- <i>Commercial image compression software (Fractals/Wavelets) (29th Feb 1996)</i> <img src=\"new.gif\">\n\n<dd><a href=\"http://re7alpha.epm.ornl.gov/CcmDemo/\">NCAR CCM Compression and Visualisation</a> -- <i>(18th Feb 1996)</i> <img src=\"new.gif\">\n<br>\n<dd><a href=\"http://ipl.rpi.edu/SPIHT/\">SPIHT</a> -- <I>Wavelet Natural Image Compressor (12th Feb 1996)</i> <img src=\"new.gif\">\n<br>\n<dd><a href=\"http://info.lut.ac.uk/departments/el/research/sys/compression.html\">Real-Time Lossless Compression Systems</a> -- <i>Loughborough University</i> <img src=\"new.gif\">\n<br>\n<dd><a href=\"http://saigon.ece.wisc.edu/~waveweb/QMF.html\">Web site for Multirate Signal Processing</a> -- <i>University of Wisconsin, Madison</i>\n<br>\n<dd><a href=\"http://quest.jpl.nasa.gov/Info-ZIP/\">Info-ZIP</a> -- <i>free,\nportable Zip and UnZip utilities</i>\n<br>\n<dd><a href=\"http://cesdis.gsfc.nasa.gov/\">CEDIS</a> -- <i>NASA, Maryland, Image/data compression</i>\n<br>\n<dd><a href=\"http://www.c3.lanl.gov/~brislawn/ftp.html\">CIC-3 Image Compression</a> -- <i>FBI Fingerprints</i>\n<br>\n<dd><a href=\"http://rainbow.ece.ucsb.edu/scl.html\">Signal Compression Lab at UCSB</a>\n<br>\n<dd><a href=\"http://isdl.ee.washington.edu/COMPRESSION/homepage.html\">University of\nWashington compression lab</a> -- <I>VQ, Wavelets, Shlomo</i>\n<br>\n</dt>\n\n\n<p>\n<dt>\n<i><b>Snippets</b></i>\n<dd><a href=\"http://www-isl.stanford.edu/~gray/iii.html\">Signal Processing\nand the International Information Infrastructure</a> -- <i>Web sites (22th April 1996)</i> <img src=\"new.gif\">\n<dd><a href=\"http://www.scu.edu.au/ausweb95/papers/management/vanzyl/\">Increasing Web bandwith</a> -- <i>comparing GIF, JPEG, Fractal compression</i>\n<br>\n<dd><a href=\"http://www.yahoo.com/Art/Computer_Generated/Fractals\">Fractal Links on Yahoo</a>\n<br>\n<dd><a href=\"http://www.ddj.com/old/ddjw001d.htm\">Digital Speech Compression GSM 06.10 RPE-LTP</a> -- <i>DDJ</i>\n<br>\n<dd><a href=\"http://www.crc.ricoh.com/CREW/\">CREW</a> -- <i>Continuous tone loss(y/less) wavelet compression</i>\n<br>\n<dd><a href=\"ftp://ftp.csd.uwo.ca/pub/from_wu/\">CALIC -- Context-based adaptive lossless image compressor</a>\n<br>\n<dd><a href=\"http://www-plateau.cs.berkeley.edu/mpeg/index.html\">Berkeley MPEG</a> -- <i>MPEG tools</i>\n<br>\n<dd><a href=\"http://www.creative.net/~tristan/MPEG\">MPEG Pointers and Resources</a>\n<BR>\n</dt>\n\n\n\n\n\n<p>\n<dt>\n<i><b>Wavelets</b></i>\n<dd>\n<a href=\"http://www.cis.upenn.edu/~eero/epic.html\">\n     EPIC (Efficient Pyramid Image Coder)</a> -- <i>by Eero Simoncelli</i>\n<br>\n<dd>\n<a href=\"mailto://72234.2617@compuserve.com\">Tucker, Michael</a> -- <i>FASTWAVE, audio/image compression</i>\n<br>\n<dd>\n<a href=\"http://www.harc.edu\">HARC</a> -- <i>Lossy Wavelet Compression technology</i>\n<br>\n<dd>\n<a href=\"http://gabor.eecs.berkeley.edu/\">UC Berkeley Wavelet Group</a>\n<br>\n<dd>\n<a href=\"http://www.c3.lanl.gov/~cjhamil/Wavelets/main.html\">Khoros Wavetlet and Compression Toolbox</a>\n<br>\n<dd>\n<a href=\"http://arabigo.math.scarolina.edu:80/~wavelet/\">The Wavelet Digest</a>\n<br>\n<dd>\n<a href=\"http://jazz.rice.edu/publications.html\">Rice DSP Publications Archive</a> -- <i>Wavelets, Time Frequency/Scale</i>\n<br>\n</dt>\n\n<p>\n<dt>\n<i><b>Fractals</b></i>\n<dd>\n<a href=\"http://inls.ucsd.edu/y/Fractals/\">Fractal Image Compression</a> -- <i>Software, Pointers, Conferences</i>\n<br>\n<dd>\n<a href=\"http://www.fractal.com/\">Fractal Design Corporation</a>\n<br>\n<dd>\n<a href=\"http://www.webcom.com/~verrando/university/ifs.html\">New Fractal Image Compression program</a>\n<br>\n</dt>\n\n<p>\n<dt>\n<i><b>Companies</b></i>\n<dd><a href=\"http://www.chips.ibm.com/products/aldc/index.html\">IBM Hardware</a> -- <i>Compression chips (11th Mar 1996)</i> <img src=\"new.gif\">\n\n<dd><a href=\"http://www.summus.com\">Summus Wavelet Technology</a> -- <i>Wavelet image and video compressors (11th Mar 1996)</i> <img src=\"new.gif\">\n<dd><a href=\"http://www.mitsubishi.co.jp/jp/fractal/fractal.html\">Fractal Image Compression</a> -- <I>Mitsubishi (18th Feb 1996)</i> <img src=\"new.gif\">\n\n<dd><a href=\"http://www.terran-int.com/\">Terran Interactive</a> -- <i>Video compression for the Mac (1st Feb 1996)</i> <img src=\"new.gif\">\n<br>\n\n<dd><a href=\"http://darvision.kaist.ac.kr/dvmpeg.html\">DV Mpeg</a> -- <i>Windows drivers (18th Feb 1996)</I> <img src=\"new.gif\">\n<br>\n\n<dd><a href=\"http://www.crawford.com/cs/welcome.html\">Crawford Compression Services</a> -- <i>MPEG post-production (18th Feb 1996)</i> <img src=\"new.gif\">\n<br>\n\n<dd><a href=\"http://www.shore.net/~ict\">Intelligent Compression Technologies</a> <i>(18th Feb 1996)</i> <img src=\"new.gif\">\n<br>\n\n<dd><a href=\"http://www.jpg.com\">Pegasus Imaging</a> -- <i>Compression software/dev. kits (12th Feb 1996)</i> <img src=\"new.gif\">\n<br>\n<dd><a href=\"http://www.aladdinsys.com/\">Aladdin Systems</a> -- <i>StuffIt compression products</i>\n<br>\n<dd><a href=\"http://www.stac.com/\">Stac Electronics</a> \n<br>\n<dd><a href=\"http://www.ccinet.ab.ca/dcp.html\">DCP Research</a> -- <i>Hardware solutions</i>\n<br>\n<dd><a href=\"http://www.aware.com/product_info/compression_overview.html\">Aware Inc.</a> -- <i>Specialised compression company</i>\n<br>\n<dd><a href=\"http://www.inria.fr/rodeo/ivs.html\">IVS - INRIA Videoconferencing System</a>\n<br>\n<dd><a href=\"http://sp25.ianus.cineca.it/telvox/telvoxen.htm\">Telvox Teleinformatica</a> -- <i>Multiplatform Data Compressor</i>\n<br>\n<dd><a href=\"http://www.compression.com\">Compression Technologies,\nInc</a> -- <i>Canada</i>\n<br>\n<dd><a href=\"http://www.optivision.com/\">Optivision</a> -- <i>MPEG</i>\n<br>\n<dd><a href=\"http://www.pkware.com/\">PKWARE</a> -- <i>Makers of PKZIP</i>\n<br>\n<dd><a href=\"http://www.infoanalytic.com/tayson/index.html\">Multimedia Imaging Services</a>\n<br>\n</dt>\n\n<p>\n<dt>\n<i><b>Audio compression</b></i>\n<dd><a href=\"http://www.iis.fhg.de/departs/amm/index.html\"> Fraunhofer Institut fr Integrierte Schaltungen</a> \n<br>\n<dd><a href=\"http://svr-www.eng.cam.ac.uk/~ajr/speechCoding.html\">Shorten</a>\n<br>\n<dd><a href=\"http://www.ddj.com/old/ddjw001d.htm\">digital speech compression</a> \n<br>\n<dd><a href=\"http://www.cs.tu-berlin.de/~phade/audiowww.html\">Audio compression references</a> \n<br>\n<dd><a href=\"http://www.fourmilab.ch/speakfree/windows/doc/compress.html\">SpeakFreely - compression</a> \n<br>\n<dd><a href=\"http://www.fourmilab.ch/speakfree/windows/speak_freely.html#contents\">SpeakFreely - Contents</a> \n<br>\n"
  },
  {
    "path": "testdata/canterbury/fields.c",
    "content": "#ifndef lint\nstatic char Rcs_Id[] =\n    \"$Id: fields.c,v 1.7 1994/01/06 05:26:37 geoff Exp $\";\n#endif\n\n/*\n * $Log: fields.c,v $\n * Revision 1.7  1994/01/06  05:26:37  geoff\n * Get rid of all references to System V string routines, for portability\n * (sigh).\n *\n * Revision 1.6  1994/01/05  20:13:43  geoff\n * Add the maxf parameter\n *\n * Revision 1.5  1994/01/04  02:40:21  geoff\n * Make the increments settable (field_line_inc and field_field_inc).\n * Add support for the FLD_NOSHRINK flag.\n *\n * Revision 1.4  1993/09/27  17:48:02  geoff\n * Fix some lint complaints and some parenthesization errors.\n *\n * Revision 1.3  1993/09/09  01:11:11  geoff\n * Add a return value to fieldwrite.  Add support for backquotes and for\n * unstripped backslashes.\n *\n * Revision 1.2  1993/08/26  00:02:50  geoff\n * Fix a stupid null-pointer bug\n *\n * Revision 1.1  1993/08/25  21:32:05  geoff\n * Initial revision\n *\n */\n\n#include <stdio.h>\n#include \"config.h\"\n#include \"fields.h\"\n\nfield_t *\tfieldread P ((FILE * file, char * delims,\n\t\t\t\t  int flags, int maxf));\n\t\t\t\t/* Read a line with fields from a file */\nfield_t *\tfieldmake P ((char * line, int allocated, char * delims,\n\t\t\t\t  int flags, int maxf));\n\t\t\t\t/* Make a field structure from a line */\nstatic field_t * fieldparse P ((field_t * fieldp, char * line, char * delims,\n\t\t\t\t  int flags, int maxf));\n\t\t\t\t/* Parse the fields in a line */\nstatic int\tfieldbackch P ((char * str, char ** out, int strip));\n\t\t\t\t/* Process backslash sequences */\nint\t\tfieldwrite P ((FILE * file, field_t * fieldp, int delim));\n\t\t\t\t/* Write a line with fields to a file */\nvoid\t\tfieldfree P ((field_t * fieldp));\n\t\t\t\t/* Free a field returned by fieldread */\n\nunsigned int\tfield_field_inc = 20; /* Increment to increase # fields by */\nunsigned int\tfield_line_inc = 512; /* Incr to increase line length by */\n\n#ifndef USG\n#define strchr\tindex\n#endif /* USG */\n\nextern void\tfree ();\nextern char *\tmalloc ();\nextern char *\trealloc ();\nextern char *\tstrchr ();\nextern int\tstrlen ();\n\n/*\n * Read one line of the given file into a buffer, break it up into\n * fields, and return them to the caller.  The field_t structure\n * returned must eventually be freed with fieldfree.\n */\nfield_t * fieldread (file, delims, flags, maxf)\n    FILE *\t\tfile;\t/* File to read lines from */\n    char *\t\tdelims;\t/* Characters to use for field delimiters */\n    int\t\t\tflags;\t/* Option flags;  see fields.h */\n    int\t\t\tmaxf;\t/* Maximum number of fields to parse */\n    {\n    register char *\tlinebuf; /* Buffer to hold the line read in */\n    int\t\t\tlinemax; /* Maximum line buffer size */\n    int\t\t\tlinesize; /* Current line buffer size */\n\n    linebuf = (char *) malloc (field_line_inc);\n    if (linebuf == NULL)\n\treturn NULL;\n    linemax = field_line_inc;\n    linesize = 0;\n    /*\n     * Read in the line.\n     */\n    while (fgets (&linebuf[linesize], linemax - linesize, file)\n      != NULL)\n\t{\n\tlinesize += strlen (&linebuf[linesize]);\n\tif (linebuf[linesize - 1] == '\\n')\n\t    break;\n\telse\n\t    {\n\t    linemax += field_line_inc;\n\t    linebuf = (char *) realloc (linebuf, linemax);\n\t    if (linebuf == NULL)\n\t\treturn NULL;\n\t    }\n\t}\n    if (linesize == 0)\n\t{\n\tfree (linebuf);\n\treturn NULL;\n\t}\n    return fieldmake (linebuf, 1, delims, flags, maxf);\n    }\n\nfield_t * fieldmake (line, allocated, delims, flags, maxf)\n    char *\t\tline;\t/* Line to make into a field structure */\n    int\t\t\tallocated; /* NZ if line allocated with malloc */\n    char *\t\tdelims;\t/* Characters to use for field delimiters */\n    int\t\t\tflags;\t/* Option flags;  see fields.h */\n    int\t\t\tmaxf;\t/* Maximum number of fields to parse */\n    {\n    register field_t *\tfieldp;\t/* Structure describing the fields */\n    int\t\t\tlinesize; /* Current line buffer size */\n\n    fieldp = (field_t *) malloc (sizeof (field_t));\n    if (fieldp == NULL)\n\treturn NULL;\n    fieldp->nfields = 0;\n    fieldp->linebuf = allocated ? line : NULL;\n    fieldp->fields = NULL;\n    fieldp->hadnl = 0;\n    linesize = strlen (line);\n    if (line[linesize - 1] == '\\n')\n\t{\n\tline[--linesize] = '\\0';\n\tfieldp->hadnl = 1;\n\t}\n    /*\n     * Shrink the line buffer if necessary.\n     */\n    if (allocated  &&  (flags & FLD_NOSHRINK) == 0)\n\t{\n\tline = fieldp->linebuf =\n\t  (char *) realloc (fieldp->linebuf, linesize + 1);\n\tif (fieldp->linebuf == NULL)\n\t    {\n\t    fieldfree (fieldp);\n\t    return NULL;\n\t    }\n\t}\n    return fieldparse (fieldp, line, delims, flags, maxf);\n    }\n\nstatic field_t * fieldparse (fieldp, line, delims, flags, maxf)\n    register field_t *\tfieldp;\t/* Field structure to parse into */\n    register char *\tline;\t/* Line to be parsed */\n    char *\t\tdelims;\t/* Characters to use for field delimiters */\n    int\t\t\tflags;\t/* Option flags;  see fields.h */\n    int\t\t\tmaxf;\t/* Maximum number of fields to parse */\n    {\n    int\t\t\tfieldmax; /* Max size of fields array */\n    char *\t\tlineout; /* Where to store xlated char in line */\n    char\t\tquote;\t/* Quote character in use */\n\n    fieldp->nfields = 0;\n    fieldmax =\n      (maxf != 0  &&  maxf < field_field_inc) ? maxf + 2 : field_field_inc;\n    fieldp->fields = (char **) malloc (fieldmax * sizeof (char *));\n    if (fieldp->fields == NULL)\n\t{\n\tfieldfree (fieldp);\n\treturn NULL;\n\t}\n    if ((flags\n\t& (FLD_SHQUOTES | FLD_SNGLQUOTES | FLD_BACKQUOTES | FLD_DBLQUOTES))\n      == FLD_SHQUOTES)\n\tflags |= FLD_SNGLQUOTES | FLD_BACKQUOTES | FLD_DBLQUOTES;\n    while (1)\n\t{\n\tif (flags & FLD_RUNS)\n\t    {\n\t    while (*line != '\\0'  &&  strchr (delims, *line) != NULL)\n\t\tline++;\t\t\t/* Skip runs of delimiters */\n\t    if (*line == '\\0')\n\t\tbreak;\n\t    }\n\tfieldp->fields[fieldp->nfields] = lineout = line;\n\t/*\n\t * Skip to the next delimiter.  At the end of skipping, \"line\" will\n\t * point to either a delimiter or a null byte.\n\t */\n\tif (flags\n\t  & (FLD_SHQUOTES | FLD_SNGLQUOTES | FLD_BACKQUOTES\n\t    | FLD_DBLQUOTES | FLD_BACKSLASH))\n\t    {\n\t    while (*line != '\\0')\n\t\t{\n\t\tif (strchr (delims, *line) != NULL)\n\t\t    break;\n\t\telse if (((flags & FLD_SNGLQUOTES)  &&  *line == '\\'')\n\t\t  ||  ((flags & FLD_BACKQUOTES)  &&  *line == '`')\n\t\t  ||  ((flags & FLD_DBLQUOTES)  &&  *line == '\"'))\n\t\t    {\n\t\t    if ((flags & FLD_SHQUOTES) == 0\n\t\t      &&  line != fieldp->fields[fieldp->nfields])\n\t\t\tquote = '\\0';\n\t\t    else\n\t\t\tquote = *line;\n\t\t    }\n\t\telse\n\t\t    quote = '\\0';\n\t\tif (quote == '\\0')\n\t\t    {\n\t\t    if (*line == '\\\\'  &&  (flags & FLD_BACKSLASH))\n\t\t\t{\n\t\t\tline++;\n\t\t\tif (*line == '\\0')\n\t\t\t    break;\n\t\t\tline += fieldbackch (line, &lineout,\n\t\t\t  flags & FLD_STRIPQUOTES);\n\t\t\t}\n\t\t    else\n\t\t\t*lineout++ = *line++;\n\t\t    }\n\t\telse\n\t\t    {\n\t\t    /* Process quoted string */\n\t\t    if ((flags & FLD_STRIPQUOTES) == 0)\n\t\t\t*lineout++ = quote;\n\t\t    ++line;\n\t\t    while (*line != '\\0')\n\t\t\t{\n\t\t\tif (*line == quote)\n\t\t\t    {\n\t\t\t    if ((flags & FLD_STRIPQUOTES) == 0)\n\t\t\t\t*lineout++ = quote;\n\t\t\t    line++;\t\t/* Go on past quote */\n\t\t\t    if ((flags & FLD_SHQUOTES) == 0)\n\t\t\t\t{\n\t\t\t\twhile (*line != '\\0'\n\t\t\t\t  &&  strchr (delims, *line) == NULL)\n\t\t\t\t    line++;\t/* Skip to delimiter */\n\t\t\t\t}\n\t\t\t    break;\n\t\t\t    }\n\t\t\telse if (*line == '\\\\')\n\t\t\t    {\n\t\t\t    if (flags & FLD_BACKSLASH)\n\t\t\t\t{\n\t\t\t\tline++;\n\t\t\t\tif (*line == '\\0')\n\t\t\t\t    break;\n\t\t\t\telse\n\t\t\t\t    line += fieldbackch (line, &lineout,\n\t\t\t\t      flags & FLD_STRIPQUOTES);\n\t\t\t\t}\n\t\t\t    else\n\t\t\t\t{\n\t\t\t\t*lineout++ = '\\\\';\n\t\t\t\tif (*++line == '\\0')\n\t\t\t\t    break;\n\t\t\t\t*lineout++ = *line;\n\t\t\t\t}\n\t\t\t    }\n\t\t\telse\n\t\t\t    *lineout++ = *line++;\n\t\t\t}\n\t\t    }\n\t\t}\n\t    }\n\telse\n\t    {\n\t    while (*line != '\\0'  &&  strchr (delims, *line) == NULL)\n\t\tline++;\t\t\t/* Skip to delimiter */\n\t    lineout = line;\n\t    }\n\tfieldp->nfields++;\n\tif (*line++ == '\\0')\n\t    break;\n\tif (maxf != 0  &&  fieldp->nfields > maxf)\n\t    break;\n\t*lineout = '\\0';\n\tif (fieldp->nfields >= fieldmax)\n\t    {\n\t    fieldmax += field_field_inc;\n\t    fieldp->fields =\n\t      (char **) realloc (fieldp->fields, fieldmax * sizeof (char *));\n\t    if (fieldp->fields == NULL)\n\t\t{\n\t\tfieldfree (fieldp);\n\t\treturn NULL;\n\t\t}\n\t    }\n\t}\n    /*\n     * Shrink the field pointers and return the field structure.\n     */\n    if ((flags & FLD_NOSHRINK) == 0  &&  fieldp->nfields >= fieldmax)\n\t{\n\tfieldp->fields = (char **) realloc (fieldp->fields,\n\t  (fieldp->nfields + 1) * sizeof (char *));\n\tif (fieldp->fields == NULL)\n\t    {\n\t    fieldfree (fieldp);\n\t    return NULL;\n\t    }\n\t}\n    fieldp->fields[fieldp->nfields] = NULL;\n    return fieldp;\n    }\n\nstatic int fieldbackch (str, out, strip)\n    register char *\tstr;\t\t/* First char of backslash sequence */\n    register char **\tout;\t\t/* Where to store result */\n    int\t\t\tstrip;\t\t/* NZ to convert the sequence */\n    {\n    register int\tch;\t\t/* Character being developed */\n    char *\t\torigstr;\t/* Original value of str */\n\n    if (!strip)\n\t{\n\t*(*out)++ = '\\\\';\n\tif (*str != 'x'  &&  *str != 'X'  &&  (*str < '0'  ||  *str > '7'))\n\t    {\n\t    *(*out)++ = *str;\n\t    return *str != '\\0';\n\t    }\n\t}\n    switch (*str)\n\t{\n\tcase '\\0':\n\t    *(*out)++ = '\\0';\n\t    return 0;\n\tcase 'a':\n\t    *(*out)++ = '\\007';\n\t    return 1;\n\tcase 'b':\n\t    *(*out)++ = '\\b';\n\t    return 1;\n\tcase 'f':\n\t    *(*out)++ = '\\f';\n\t    return 1;\n\tcase 'n':\n\t    *(*out)++ = '\\n';\n\t    return 1;\n\tcase 'r':\n\t    *(*out)++ = '\\r';\n\t    return 1;\n\tcase 'v':\n\t    *(*out)++ = '\\v';\n\t    return 1;\n\tcase 'X':\n\tcase 'x':\n\t    /* Hexadecimal sequence */\n\t    origstr = str++;\n\t    ch = 0;\n\t    if (*str >= '0'  &&  *str <= '9')\n\t\tch = *str++ - '0';\n\t    else if (*str >= 'a'  &&  *str <= 'f')\n\t\tch = *str++ - 'a' + 0xa;\n\t    else if (*str >= 'A'  &&  *str <= 'F')\n\t\tch = *str++ - 'A' + 0xa;\n\t    if (*str >= '0'  &&  *str <= '9')\n\t\tch = (ch << 4) | (*str++ - '0');\n\t    else if (*str >= 'a'  &&  *str <= 'f')\n\t\tch = (ch << 4) | (*str++ - 'a' + 0xa);\n\t    else if (*str >= 'A'  &&  *str <= 'F')\n\t\tch = (ch << 4) | (*str++ - 'A' + 0xa);\n\t    break;\n\tcase '0':\n\tcase '1':\n\tcase '2':\n\tcase '3':\n\tcase '4':\n\tcase '5':\n\tcase '6':\n\tcase '7':\n\t    /* Octal sequence */\n\t    origstr = str;\n\t    ch = *str++ - '0';\n\t    if (*str >= '0'  &&  *str <= '7')\n\t\tch = (ch << 3) | (*str++ - '0');\n\t    if (*str >= '0'  &&  *str <= '7')\n\t\tch = (ch << 3) | (*str++ - '0');\n\t    break;\n\tdefault:\n\t    *(*out)++ = *str;\n\t    return 1;\n\t}\n    if (strip)\n\t{\n\t*(*out)++ = ch;\n\treturn str - origstr;\n\t}\n    else\n\t{\n\tfor (ch = 0;  origstr < str;  ch++)\n\t    *(*out)++ = *origstr++;\n\treturn ch;\n\t}\n    }\n\nint fieldwrite (file, fieldp, delim)\n    FILE *\t\tfile;\t/* File to write to */\n    register field_t *\tfieldp;\t/* Field structure to write */\n    int\t\t\tdelim;\t/* Delimiter to place between fields */\n    {\n    int\t\t\terror;\t/* NZ if an error occurs */\n    register int\tfieldno; /* Number of field being written */\n\n    error = 0;\n    for (fieldno = 0;  fieldno < fieldp->nfields;  fieldno++)\n\t{\n\tif (fieldno != 0)\n\t    error |= putc (delim, file) == EOF;\n\terror |= fputs (fieldp->fields[fieldno], file) == EOF;\n\t}\n    if (fieldp->hadnl)\n\terror |= putc ('\\n', file) == EOF;\n    return error;\n    }\n\nvoid fieldfree (fieldp)\n    register field_t *\tfieldp;\t/* Field structure to free */\n    {\n\n    if (fieldp == NULL)\n\treturn;\n    if (fieldp->linebuf != NULL)\n\tfree ((char *) fieldp->linebuf);\n    if (fieldp->fields != NULL)\n\tfree ((char *) fieldp->fields);\n    free ((char *) fieldp);\n    }\n"
  },
  {
    "path": "testdata/canterbury/grammar.lsp",
    "content": ";;; -*- Mode: Lisp; Syntax: Common-Lisp; -*-\n\n(define-language\n  :grammar\n  '(((S $any) -> (S1 $any))\n    ((S (Compound $s1 $s2)) -> (S1 $s1) (Conjunction) (S1 $s2))\n    \n    ((S1 (Statement $v)) -> (NP $subj) (VP $subj $tense $v))\n    ((S1 (Acknowledge $a)) -> (Acknowledge $a))\n    ((S1 (Command $v)) -> (VP Self present $v))\n    ((S1 (Question $v)) -> (Aux $tense) (NP $subj) (VP $subj $tense $v))\n    ((S1 (Question $v)) -> (Be $tense) (NP $subj) (Be-Arg $subj $tense $v))\n\n    ((Be-Arg $subj $tense (Occur $tense (loc $subj $loc))) ->\n     (Loc-Adjunct $tense (loc $subj $loc)))\n\n    ((VP $subj $tense (Occur $tense $v)) -> (VP1 $subj $tense $v))\n    ((VP $subj $tense (Occur $tense $v)) -> (Aux $tense)(VP1 $subj present $v))\n\n    ((VP1 $subj $tense $v) -> (VP2 $subj $tense $v) (Adjunct? $v))\n\n    ((VP2 $subj $tense ($rel $subj $loc)) ->\n     (Verb/in $rel $tense))\n    ((VP2 $subj $tense ($rel $subj $loc $obj)) ->\n     (Verb/tr $rel $tense) (NP $obj))\n    ((VP2 $subj $tense ($rel $subj $loc $obj $obj2)) -> \n     (Verb/di $rel $tense) (NP $obj) (NP $obj2))\n    ((VP2 $subj $tense (loc $subj $loc)) ->\n     (Be $tense) (Loc-Adjunct $tense (loc $subj $loc)))\n\n    ((NP $n) -> (Pronoun $n))\n    ((NP $n) -> (Article) (Noun $n))\n    ((NP $n) -> (Noun $n))\n    ((NP ($x $y)) -> (Number $x) (Number $y))\n\n    ((PP ($prep $n)) -> (Prep $prep) (NP $n))\n    ((Adjunct? $v) ->)\n    ((Adjunct? $v) -> (Loc-Adjunct $tense $v))\n    #+Allegro ((Loc-Adjunct $tense ($rel $subj $loc @rest)) -> (PP $loc))\n    #+Allegro ((Loc-Adjunct $tense ($rel $subj $loc @rest)) -> (Adjunct $loc))\n    #+Lucid ((Loc-Adjunct $tense ($rel $subj $loc . $rest)) -> (PP $loc))\n    #+Lucid ((Loc-Adjunct $tense ($rel $subj $loc . $rest)) -> (Adjunct $loc))\n\n    )\n  :lexicon\n  '(\n    ((Acknowledge $a) -> (yes true) (no false) (maybe unknown) (huh unparsed))\n    ((Adjunct $loc) -> here there (nearby near) near left right up down)\n    ((Article) -> a an the)\n    ((Aux $tense) -> (will future) (did past) (do $finite))\n    ((Be $tense) -> (am present) (are present) (is present) (be $finite)\n     (was past) (were past))\n    ((Conjunction) -> and --)\n    ((Noun $n) -> gold Wumpus pit breeze stench glitter nothing)\n    ((Number $n) -> 0 1 2 3 4 5 6 7 8 9)\n    ((Prep $prep) -> in at to near)\n    ((Pronoun $n) -> (you self) (me master) (I master))\n    \n    ((Verb/in $rel $tense) -> (go move $finite) (went move past)\n     (move move $finite) (move move past) (shoot shoot $finite))\n    ((Verb/tr $rel $tense) -> (move carry $finite) (moved carry past)\n     (carry carry $finite) (carry carried past)\n     (grab grab $finite) (grab grabbed past) (get grab $finite)\n     (got grab past) (release release $finite) (release release past)\n     (drop release $finite) (dropped release past) (shoot shoot-at $finite)\n     (shot shoot-at past) (kill shoot-at $finite) (killed shoot-at past)\n     (smell perceive $finite) (feel perceive $finite) (felt perceive past))\n    ((Verb/di $rel $tense) -> (bring bring $finite) (brought bring past)\n     (get bring $finite) (got bring past))\n    ))\n\n(defparameter *sentences*\n  '((I will shoot the wumpus at 4 4)\n    (yes)\n    (You went right -- I will go left)\n    (carry the gold)\n    (yes and no)\n    (did you bring me the gold)\n    (a breeze is here -- I am near 5 3)\n    (a stench is in 3 5)\n    (a pit is nearby)\n    (is the wumpus near)\n    (Did you go to 3 8)\n    (Yes -- Nothing is there)\n    (Shoot -- Shoot left)\n    (Kill the wumpus -- shoot up)))\n\n(defun ss (&optional (sentences *sentences*))\n  \"Run some test sentences, and count how many were not parsed.\"\n  (count-if-not\n   #'(lambda (s)\n       (format t \"~2&>>> ~(~{~a ~}~)~%\" s)\n       (write (second (parse s)) :pretty t))\n   *sentences*))\n"
  },
  {
    "path": "testdata/canterbury/lcet10.txt",
    "content": "\n\nThe Project Gutenberg Etext of LOC WORKSHOP ON ELECTRONIC TEXTS\n\n\n\n\n                      WORKSHOP ON ELECTRONIC TEXTS\n\n                               PROCEEDINGS\n\n\n\n                          Edited by James Daly\n\n\n\n\n\n\n\n                             9-10 June 1992\n\n\n                           Library of Congress\n                            Washington, D.C.\n\n\n\n    Supported by a Grant from the David and Lucile Packard Foundation\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                            TABLE OF CONTENTS\n\n\nAcknowledgements\n\nIntroduction\n\nProceedings\n   Welcome\n      Prosser Gifford and Carl Fleischhauer\n\n   Session I.  Content in a New Form:  Who Will Use It and What Will They Do?\n      James Daly (Moderator)\n      Avra Michelson, Overview\n      Susan H. Veccia, User Evaluation\n      Joanne Freeman, Beyond the Scholar\n         Discussion\n\n   Session II.  Show and Tell\n      Jacqueline Hess (Moderator)\n      Elli Mylonas, Perseus Project\n         Discussion\n      Eric M. Calaluca, Patrologia Latina Database\n      Carl Fleischhauer and Ricky Erway, American Memory\n         Discussion\n      Dorothy Twohig, The Papers of George Washington\n         Discussion\n      Maria L. Lebron, The Online Journal of Current Clinical Trials\n         Discussion\n      Lynne K. Personius, Cornell mathematics books\n         Discussion\n\n   Session III.  Distribution, Networks, and Networking:  \n                 Options for Dissemination\n      Robert G. Zich (Moderator)\n      Clifford A. Lynch\n         Discussion\n      Howard Besser\n         Discussion\n      Ronald L. Larsen\n      Edwin B. Brownrigg\n         Discussion\n\n   Session IV.  Image Capture, Text Capture, Overview of Text and\n                Image Storage Formats\n         William L. Hooton (Moderator)\n      A) Principal Methods for Image Capture of Text:  \n            direct scanning, use of microform\n         Anne R. Kenney\n         Pamela Q.J. Andre\n         Judith A. Zidar\n         Donald J. Waters\n            Discussion\n      B) Special Problems:  bound volumes, conservation,\n                            reproducing printed halftones\n         George Thoma\n         Carl Fleischhauer\n            Discussion\n      C) Image Standards and Implications for Preservation\n         Jean Baronas\n         Patricia Battin\n            Discussion\n      D) Text Conversion:  OCR vs. rekeying, standards of accuracy\n                           and use of imperfect texts, service bureaus\n         Michael Lesk\n         Ricky Erway\n         Judith A. Zidar\n            Discussion\n\n   Session V.  Approaches to Preparing Electronic Texts\n      Susan Hockey (Moderator)\n      Stuart Weibel\n         Discussion\n      C.M. Sperberg-McQueen\n         Discussion\n      Eric M. Calaluca\n         Discussion\n\n   Session VI.  Copyright Issues\n      Marybeth Peters\n\n   Session VII.  Conclusion\n      Prosser Gifford (Moderator)\n      General discussion\n\nAppendix I:  Program\n\nAppendix II:  Abstracts\n\nAppendix III:  Directory of Participants\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                            Acknowledgements\n\nI would like to thank Carl Fleischhauer and Prosser Gifford for the\nopportunity to learn about areas of human activity unknown to me a scant\nten months ago, and the David and Lucile Packard Foundation for\nsupporting that opportunity.  The help given by others is acknowledged on\na separate page.\n\n                                                          19 October 1992\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                              INTRODUCTION\n\nThe Workshop on Electronic Texts (1) drew together representatives of\nvarious projects and interest groups to compare ideas, beliefs,\nexperiences, and, in particular, methods of placing and presenting\nhistorical textual materials in computerized form.  Most attendees gained\nmuch in insight and outlook from the event.  But the assembly did not\nform a new nation, or, to put it another way, the diversity of projects\nand interests was too great to draw the representatives into a cohesive,\naction-oriented body.(2)\n\nEveryone attending the Workshop shared an interest in preserving and\nproviding access to historical texts.  But within this broad field the\nattendees represented a variety of formal, informal, figurative, and\nliteral groups, with many individuals belonging to more than one.  These\ngroups may be defined roughly according to the following topics or\nactivities:\n\n* Imaging\n* Searchable coded texts\n* National and international computer networks\n* CD-ROM production and dissemination\n* Methods and technology for converting older paper materials into\nelectronic form\n* Study of the use of digital materials by scholars and others\n\nThis summary is arranged thematically and does not follow the actual\nsequence of presentations.\n\nNOTES:\n     (1)  In this document, the phrase electronic text is used to mean\n     any computerized reproduction or version of a document, book,\n     article, or manuscript (including images), and not merely a machine-\n     readable or machine-searchable text.\n\n     (2)  The Workshop was held at the Library of Congress on 9-10 June\n     1992, with funding from the David and Lucile Packard Foundation. \n     The document that follows represents a summary of the presentations\n     made at the Workshop and was compiled by James DALY.  This\n     introduction was written by DALY and Carl FLEISCHHAUER.\n\n\nPRESERVATION AND IMAGING\n\nPreservation, as that term is used by archivists,(3) was most explicitly\ndiscussed in the context of imaging.  Anne KENNEY and Lynne PERSONIUS\nexplained how the concept of a faithful copy and the user-friendliness of\nthe traditional book have guided their project at Cornell University.(4) \nAlthough interested in computerized dissemination, participants in the\nCornell project are creating digital image sets of older books in the\npublic domain as a source for a fresh paper facsimile or, in a future\nphase, microfilm.  The books returned to the library shelves are\nhigh-quality and useful replacements on acid-free paper that should last\na long time.  To date, the Cornell project has placed little or no\nemphasis on creating searchable texts; one would not be surprised to find\nthat the project participants view such texts as new editions, and thus\nnot as faithful reproductions. \n\nIn her talk on preservation, Patricia BATTIN struck an ecumenical and\nflexible note as she endorsed the creation and dissemination of a variety\nof types of digital copies.  Do not be too narrow in defining what counts\nas a preservation element, BATTIN counseled; for the present, at least,\ndigital copies made with preservation in mind cannot be as narrowly\nstandardized as, say, microfilm copies with the same objective.  Setting\nstandards precipitously can inhibit creativity, but delay can result in\nchaos, she advised.\n\nIn part, BATTIN's position reflected the unsettled nature of image-format\nstandards, and attendees could hear echoes of this unsettledness in the\ncomments of various speakers.  For example, Jean BARONAS reviewed the\nstatus of several formal standards moving through committees of experts;\nand Clifford LYNCH encouraged the use of a new guideline for transmitting\ndocument images on Internet.  Testimony from participants in the National\nAgricultural Library's (NAL) Text Digitization Program and LC's American\nMemory project highlighted some of the challenges to the actual creation\nor interchange of images, including difficulties in converting\npreservation microfilm to digital form.  Donald WATERS reported on the\nprogress of a master plan for a project at Yale University to convert\nbooks on microfilm to digital image sets, Project Open Book (POB).\n\nThe Workshop offered rather less of an imaging practicum than planned,\nbut \"how-to\" hints emerge at various points, for example, throughout\nKENNEY's presentation and in the discussion of arcana such as\nthresholding and dithering offered by George THOMA and FLEISCHHAUER.\n\nNOTES:\n     (3)  Although there is a sense in which any reproductions of\n     historical materials preserve the human record, specialists in the\n     field have developed particular guidelines for the creation of\n     acceptable preservation copies.\n\n     (4)  Titles and affiliations of presenters are given at the\n     beginning of their respective talks and in the Directory of\n     Participants (Appendix III).\n\n\nTHE MACHINE-READABLE TEXT:  MARKUP AND USE\n\nThe sections of the Workshop that dealt with machine-readable text tended\nto be more concerned with access and use than with preservation, at least\nin the narrow technical sense.  Michael SPERBERG-McQUEEN made a forceful\npresentation on the Text Encoding Initiative's (TEI) implementation of\nthe Standard Generalized Markup Language (SGML).  His ideas were echoed\nby Susan HOCKEY, Elli MYLONAS, and Stuart WEIBEL.  While the\npresentations made by the TEI advocates contained no practicum, their\ndiscussion focused on the value of the finished product, what the\nEuropean Community calls reusability, but what may also be termed\ndurability.  They argued that marking up--that is, coding--a text in a\nwell-conceived way will permit it to be moved from one computer\nenvironment to another, as well as to be used by various users.  Two\nkinds of markup were distinguished:  1) procedural markup, which\ndescribes the features of a text (e.g., dots on a page), and 2)\ndescriptive markup, which describes the structure or elements of a\ndocument (e.g., chapters, paragraphs, and front matter).\n\nThe TEI proponents emphasized the importance of texts to scholarship. \nThey explained how heavily coded (and thus analyzed and annotated) texts\ncan underlie research, play a role in scholarly communication, and\nfacilitate classroom teaching.  SPERBERG-McQUEEN reminded listeners that\na written or printed item (e.g., a particular edition of a book) is\nmerely a representation of the abstraction we call a text.  To concern\nourselves with faithfully reproducing a printed instance of the text,\nSPERBERG-McQUEEN argued, is to concern ourselves with the representation\nof a representation (\"images as simulacra for the text\").  The TEI proponents'\ninterest in images tends to focus on corollary materials for use in teaching,\nfor example, photographs of the Acropolis to accompany a Greek text.\n\nBy the end of the Workshop, SPERBERG-McQUEEN confessed to having been\nconverted to a limited extent to the view that electronic images\nconstitute a promising alternative to microfilming; indeed, an\nalternative probably superior to microfilming.  But he was not convinced\nthat electronic images constitute a serious attempt to represent text in\nelectronic form.  HOCKEY and MYLONAS also conceded that their experience\nat the Pierce Symposium the previous week at Georgetown University and\nthe present conference at the Library of Congress had compelled them to\nreevaluate their perspective on the usefulness of text as images. \nAttendees could see that the text and image advocates were in\nconstructive tension, so to say.\n\nThree nonTEI presentations described approaches to preparing\nmachine-readable text that are less rigorous and thus less expensive.  In\nthe case of the Papers of George Washington, Dorothy TWOHIG explained\nthat the digital version will provide a not-quite-perfect rendering of\nthe transcribed text--some 135,000 documents, available for research\nduring the decades while the perfect or print version is completed. \nMembers of the American Memory team and the staff of NAL's Text\nDigitization Program (see below) also outlined a middle ground concerning\nsearchable texts.  In the case of American Memory, contractors produce\ntexts with about 99-percent accuracy that serve as \"browse\" or\n\"reference\" versions of written or printed originals.  End users who need\nfaithful copies or perfect renditions must refer to accompanying sets of\ndigital facsimile images or consult copies of the originals in a nearby\nlibrary or archive.  American Memory staff argued that the high cost of\nproducing 100-percent accurate copies would prevent LC from offering\naccess to large parts of its collections.\n\n\nTHE MACHINE-READABLE TEXT:  METHODS OF CONVERSION\n\nAlthough the Workshop did not include a systematic examination of the\nmethods for converting texts from paper (or from facsimile images) into\nmachine-readable form, nevertheless, various speakers touched upon this\nmatter.  For example, WEIBEL reported that OCLC has experimented with a\nmerging of multiple optical character recognition systems that will\nreduce errors from an unacceptable rate of 5 characters out of every\nl,000 to an unacceptable rate of 2 characters out of every l,000.\n\nPamela ANDRE presented an overview of NAL's Text Digitization Program and\nJudith ZIDAR discussed the technical details.  ZIDAR explained how NAL\npurchased hardware and software capable of performing optical character\nrecognition (OCR) and text conversion and used its own staff to convert\ntexts.  The process, ZIDAR said, required extensive editing and project\nstaff found themselves considering alternatives, including rekeying\nand/or creating abstracts or summaries of texts.  NAL reckoned costs at\n$7 per page.  By way of contrast, Ricky ERWAY explained that American\nMemory had decided from the start to contract out conversion to external\nservice bureaus.  The criteria used to select these contractors were cost\nand quality of results, as opposed to methods of conversion.  ERWAY noted\nthat historical documents or books often do not lend themselves to OCR. \nBound materials represent a special problem.  In her experience, quality\ncontrol--inspecting incoming materials, counting errors in samples--posed\nthe most time-consuming aspect of contracting out conversion.  ERWAY\nreckoned American Memory's costs at $4 per page, but cautioned that fewer\ncost-elements had been included than in NAL's figure.\n\n\nOPTIONS FOR DISSEMINATION\n\nThe topic of dissemination proper emerged at various points during the\nWorkshop.  At the session devoted to national and international computer\nnetworks, LYNCH, Howard BESSER, Ronald LARSEN, and Edwin BROWNRIGG\nhighlighted the virtues of Internet today and of the network that will\nevolve from Internet.  Listeners could discern in these narratives a\nvision of an information democracy in which millions of citizens freely\nfind and use what they need.  LYNCH noted that a lack of standards\ninhibits disseminating multimedia on the network, a topic also discussed\nby BESSER.  LARSEN addressed the issues of network scalability and\nmodularity and commented upon the difficulty of anticipating the effects\nof growth in orders of magnitude.  BROWNRIGG talked about the ability of\npacket radio to provide certain links in a network without the need for\nwiring.  However, the presenters also called attention to the\nshortcomings and incongruities of present-day computer networks.  For\nexample:  1) Network use is growing dramatically, but much network\ntraffic consists of personal communication (E-mail).  2) Large bodies of\ninformation are available, but a user's ability to search across their\nentirety is limited.  3) There are significant resources for science and\ntechnology, but few network sources provide content in the humanities. \n4) Machine-readable texts are commonplace, but the capability of the\nsystem to deal with images (let alone other media formats) lags behind. \nA glimpse of a multimedia future for networks, however, was provided by\nMaria LEBRON in her overview of the Online Journal of Current Clinical\nTrials (OJCCT), and the process of scholarly publishing on-line.   \n\nThe contrasting form of the CD-ROM disk was never systematically\nanalyzed, but attendees could glean an impression from several of the\nshow-and-tell presentations.  The Perseus and American Memory examples\ndemonstrated recently published disks, while the descriptions of the\nIBYCUS version of the Papers of George Washington and Chadwyck-Healey's\nPatrologia Latina Database (PLD) told of disks to come.  According to\nEric CALALUCA, PLD's principal focus has been on converting Jacques-Paul\nMigne's definitive collection of Latin texts to machine-readable form. \nAlthough everyone could share the network advocates' enthusiasm for an\non-line future, the possibility of rolling up one's sleeves for a session\nwith a CD-ROM containing both textual materials and a powerful retrieval\nengine made the disk seem an appealing vessel indeed.  The overall\ndiscussion suggested that the transition from CD-ROM to on-line networked\naccess may prove far slower and more difficult than has been anticipated.\n\n\nWHO ARE THE USERS AND WHAT DO THEY DO?\n\nAlthough concerned with the technicalities of production, the Workshop\nnever lost sight of the purposes and uses of electronic versions of\ntextual materials.  As noted above, those interested in imaging discussed\nthe problematical matter of digital preservation, while the TEI proponents\ndescribed how machine-readable texts can be used in research.  This latter\ntopic received thorough treatment in the paper read by Avra MICHELSON.\nShe placed the phenomenon of electronic texts within the context of\nbroader trends in information technology and scholarly communication.\n\nAmong other things, MICHELSON described on-line conferences that\nrepresent a vigorous and important intellectual forum for certain\ndisciplines.  Internet now carries more than 700 conferences, with about\n80 percent of these devoted to topics in the social sciences and the\nhumanities.  Other scholars use on-line networks for \"distance learning.\" \nMeanwhile, there has been a tremendous growth in end-user computing;\nprofessors today are less likely than their predecessors to ask the\ncampus computer center to process their data.  Electronic texts are one\nkey to these sophisticated applications, MICHELSON reported, and more and\nmore scholars in the humanities now work in an on-line environment. \nToward the end of the Workshop, Michael LESK presented a corollary to\nMICHELSON's talk, reporting the results of an experiment that compared\nthe work of one group of chemistry students using traditional printed\ntexts and two groups using electronic sources.  The experiment\ndemonstrated that in the event one does not know what to read, one needs\nthe electronic systems; the electronic systems hold no advantage at the\nmoment if one knows what to read, but neither do they impose a penalty.\n\nDALY provided an anecdotal account of the revolutionizing impact of the\nnew technology on his previous methods of research in the field of classics.\nHis account, by extrapolation, served to illustrate in part the arguments\nmade by MICHELSON concerning the positive effects of the sudden and radical\ntransformation being wrought in the ways scholars work.\n\nSusan VECCIA and Joanne FREEMAN delineated the use of electronic\nmaterials outside the university.  The most interesting aspect of their\nuse, FREEMAN said, could be seen as a paradox:  teachers in elementary\nand secondary schools requested access to primary source materials but,\nat the same time, found that \"primariness\" itself made these materials\ndifficult for their students to use.\n\n\nOTHER TOPICS\n\nMarybeth PETERS reviewed copyright law in the United States and offered\nadvice during a lively discussion of this subject.  But uncertainty\nremains concerning the price of copyright in a digital medium, because a\nsolution remains to be worked out concerning management and synthesis of\ncopyrighted and out-of-copyright pieces of a database.\n\nAs moderator of the final session of the Workshop, Prosser GIFFORD directed\ndiscussion to future courses of action and the potential role of LC in\nadvancing them.  Among the recommendations that emerged were the following:\n\n     * Workshop participants should 1) begin to think about working\n     with image material, but structure and digitize it in such a\n     way that at a later stage it can be interpreted into text, and\n     2) find a common way to build text and images together so that\n     they can be used jointly at some stage in the future, with\n     appropriate network support, because that is how users will want\n     to access these materials.  The Library might encourage attempts\n     to bring together people who are working on texts and images.\n\n     * A network version of American Memory should be developed or\n     consideration should be given to making the data in it\n     available to people interested in doing network multimedia. \n     Given the current dearth of digital data that is appealing and\n     unencumbered by extremely complex rights problems, developing a\n     network version of American Memory could do much to help make\n     network multimedia a reality.\n\n     * Concerning the thorny issue of electronic deposit, LC should\n     initiate a catalytic process in terms of distributed\n     responsibility, that is, bring together the distributed\n     organizations and set up a study group to look at all the\n     issues related to electronic deposit and see where we as a\n     nation should move.  For example, LC might attempt to persuade\n     one major library in each state to deal with its state\n     equivalent publisher, which might produce a cooperative project\n     that would be equitably distributed around the country, and one\n     in which LC would be dealing with a minimal number of publishers\n     and minimal copyright problems.  LC must also deal with the\n     concept of on-line publishing, determining, among other things,\n     how serials such as OJCCT might be deposited for copyright.\n\n     * Since a number of projects are planning to carry out\n     preservation by creating digital images that will end up in\n     on-line or near-line storage at some institution, LC might play\n     a helpful role, at least in the near term, by accelerating how\n     to catalog that information into the Research Library Information\n     Network (RLIN) and then into OCLC, so that it would be accessible.\n     This would reduce the possibility of multiple institutions digitizing\n     the same work. \n\n\nCONCLUSION\n\nThe Workshop was valuable because it brought together partisans from\nvarious groups and provided an occasion to compare goals and methods. \nThe more committed partisans frequently communicate with others in their\ngroups, but less often across group boundaries.  The Workshop was also\nvaluable to attendees--including those involved with American Memory--who\ncame less committed to particular approaches or concepts.  These\nattendees learned a great deal, and plan to select and employ elements of\nimaging, text-coding, and networked distribution that suit their\nrespective projects and purposes.\n\nStill, reality rears its ugly head:  no breakthrough has been achieved. \nOn the imaging side, one confronts a proliferation of competing\ndata-interchange standards and a lack of consensus on the role of digital\nfacsimiles in preservation.  In the realm of machine-readable texts, one\nencounters a reasonably mature standard but methodological difficulties\nand high costs.  These latter problems, of course, represent a special\nimpediment to the desire, as it is sometimes expressed in the popular\npress, \"to put the [contents of the] Library of Congress on line.\"  In\nthe words of one participant, there was \"no solution to the economic\nproblems--the projects that are out there are surviving, but it is going\nto be a lot of work to transform the information industry, and so far the\ninvestment to do that is not forthcoming\" (LESK, per litteras).\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                               PROCEEDINGS\n\n\nWELCOME\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nGIFFORD * Origin of Workshop in current Librarian's desire to make LC's\ncollections more widely available * Desiderata arising from the prospect\nof greater interconnectedness *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nAfter welcoming participants on behalf of the Library of Congress,\nAmerican Memory (AM), and the National Demonstration Lab, Prosser\nGIFFORD, director for scholarly programs, Library of Congress, located\nthe origin of the Workshop on Electronic Texts in a conversation he had\nhad considerably more than a year ago with Carl FLEISCHHAUER concerning\nsome of the issues faced by AM.  On the assumption that numerous other\npeople were asking the same questions, the decision was made to bring\ntogether as many of these people as possible to ask the same questions\ntogether.  In a deeper sense, GIFFORD said, the origin of the Workshop\nlay in the desire of the current Librarian of Congress, James H. \nBillington, to make the collections of the Library, especially those\noffering unique or unusual testimony on aspects of the American\nexperience, available to a much wider circle of users than those few\npeople who can come to Washington to use them.  This meant that the\nemphasis of AM, from the outset, has been on archival collections of the\nbasic material, and on making these collections themselves available,\nrather than selected or heavily edited products.\n\nFrom AM's emphasis followed the questions with which the Workshop began: \nwho will use these materials, and in what form will they wish to use\nthem.  But an even larger issue deserving mention, in GIFFORD's view, was\nthe phenomenal growth in Internet connectivity.  He expressed the hope\nthat the prospect of greater interconnectedness than ever before would\nlead to:  1) much more cooperative and mutually supportive endeavors; 2)\ndevelopment of systems of shared and distributed responsibilities to\navoid duplication and to ensure accuracy and preservation of unique\nmaterials; and 3) agreement on the necessary standards and development of\nthe appropriate directories and indices to make navigation\nstraightforward among the varied resources that are, and increasingly\nwill be, available.  In this connection, GIFFORD requested that\nparticipants reflect from the outset upon the sorts of outcomes they\nthought the Workshop might have.  Did those present constitute a group\nwith sufficient common interests to propose a next step or next steps,\nand if so, what might those be?  They would return to these questions the\nfollowing afternoon.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nFLEISCHHAUER * Core of Workshop concerns preparation and production of\nmaterials * Special challenge in conversion of textual materials *\nQuality versus quantity * Do the several groups represented share common\ninterests? *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nCarl FLEISCHHAUER, coordinator, American Memory, Library of Congress,\nemphasized that he would attempt to represent the people who perform some\nof the work of converting or preparing  materials and that the core of\nthe Workshop had to do with preparation and production.  FLEISCHHAUER\nthen drew a distinction between the long term, when many things would be\navailable and connected in the ways that GIFFORD described, and the short\nterm, in which AM not only has wrestled with the issue of what is the\nbest course to pursue but also has faced a variety of technical\nchallenges.\n\nFLEISCHHAUER remarked AM's endeavors to deal with a wide range of library\nformats, such as motion picture collections, sound-recording collections,\nand pictorial collections of various sorts, especially collections of\nphotographs.  In the course of these efforts, AM kept coming back to\ntextual materials--manuscripts or rare printed matter, bound materials,\netc.  Text posed the greatest conversion challenge of all.  Thus, the\ngenesis of the Workshop, which reflects the problems faced by AM.  These\nproblems include physical problems.  For example, those in the library\nand archive business deal with collections made up of fragile and rare\nmanuscript items, bound materials, especially the notoriously brittle\nbound materials of the late nineteenth century.  These are precious\ncultural artifacts, however, as well as interesting sources of\ninformation, and LC desires to retain and conserve them.  AM needs to\nhandle things without damaging them.  Guillotining a book to run it\nthrough a sheet feeder must be avoided at all costs.\n\nBeyond physical problems, issues pertaining to quality arose.  For\nexample, the desire to provide users with a searchable text is affected\nby the question of acceptable level of accuracy.  One hundred percent\naccuracy is tremendously expensive.  On the other hand, the output of\noptical character recognition (OCR) can be tremendously inaccurate. \nAlthough AM has attempted to find a middle ground, uncertainty persists\nas to whether or not it has discovered the right solution.\n\nQuestions of quality arose concerning images as well.  FLEISCHHAUER\ncontrasted the extremely high level of quality of the digital images in\nthe Cornell Xerox Project with AM's efforts to provide a browse-quality\nor access-quality image, as opposed to an archival or preservation image. \nFLEISCHHAUER therefore welcomed the opportunity to compare notes.\n\nFLEISCHHAUER observed in passing that conversations he had had about\nnetworks have begun to signal that for various forms of media a\ndetermination may be made that there is a browse-quality item, or a\ndistribution-and-access-quality item that may coexist in some systems\nwith a higher quality archival item that would be inconvenient to send\nthrough the network because of its size.  FLEISCHHAUER referred, of\ncourse, to images more than to searchable text.\n\nAs AM considered those questions, several conceptual issues arose:  ought\nAM occasionally to reproduce materials entirely through an image set, at\nother times, entirely through a text set, and in some cases, a mix? \nThere probably would be times when the historical authenticity of an\nartifact would require that its image be used.  An image might be\ndesirable as a recourse for users if one could not provide 100-percent\naccurate text.  Again, AM wondered, as a practical matter, if a\ndistinction could be drawn between rare printed matter that might exist\nin multiple collections--that is, in ten or fifteen libraries.  In such\ncases, the need for perfect reproduction would be less than for unique\nitems.  Implicit in his remarks, FLEISCHHAUER conceded, was the admission\nthat AM has been tilting strongly towards quantity and drawing back a\nlittle from perfect quality.  That is, it seemed to AM that society would\nbe better served if more things were distributed by LC--even if they were\nnot quite perfect--than if fewer things, perfectly represented, were\ndistributed.  This was stated as a proposition to be tested, with\nresponses to be gathered from users.\n\nIn thinking about issues related to reproduction of materials and seeing\nother people engaged in parallel activities, AM deemed it useful to\nconvene a conference.  Hence, the Workshop.  FLEISCHHAUER thereupon\nsurveyed the several groups represented:  1) the world of images (image\nusers and image makers); 2) the world of text and scholarship and, within\nthis group, those concerned with language--FLEISCHHAUER confessed to finding\ndelightful irony in the fact that some of the most advanced thinkers on\ncomputerized texts are those dealing with ancient Greek and Roman materials;\n3) the network world; and 4) the general world of library science, which\nincludes people interested in preservation and cataloging.\n\nFLEISCHHAUER concluded his remarks with special thanks to the David and\nLucile Packard Foundation for its support of the meeting, the American\nMemory group, the Office for Scholarly Programs, the National\nDemonstration Lab, and the Office of Special Events.  He expressed the\nhope that David Woodley Packard might be able to attend, noting that\nPackard's work and the work of the foundation had sponsored a number of\nprojects in the text area.\n\n                                 ******\n\nSESSION I.  CONTENT IN A NEW FORM:   WHO WILL USE IT AND WHAT WILL THEY DO?\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDALY * Acknowledgements * A new Latin authors disk *  Effects of the new\ntechnology on previous methods of research *       \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nServing as moderator, James DALY acknowledged the generosity of all the\npresenters for giving of their time, counsel, and patience in planning\nthe Workshop, as well as of members of the American Memory project and\nother Library of Congress staff, and the David and Lucile Packard\nFoundation and its executive director, Colburn S. Wilbur.\n\nDALY then recounted his visit in March to the Center for Electronic Texts\nin the Humanities (CETH) and the Department of Classics at Rutgers\nUniversity, where an old friend, Lowell Edmunds, introduced him to the\ndepartment's IBYCUS scholarly personal computer, and, in particular, the\nnew Latin CD-ROM, containing, among other things, almost all classical\nLatin literary texts through A.D. 200.  Packard Humanities Institute\n(PHI), Los Altos, California, released this disk late in 1991, with a\nnominal triennial licensing fee.\n\nPlaying with the disk for an hour or so at Rutgers brought home to DALY\nat once the revolutionizing impact of the new technology on his previous\nmethods of research.  Had this disk been available two or three years\nearlier, DALY contended, when he was engaged in preparing a commentary on\nBook 10 of Virgil's Aeneid for Cambridge University Press, he would not\nhave required a forty-eight-square-foot table on which to spread the\nnumerous, most frequently consulted items, including some ten or twelve\nconcordances to key Latin authors, an almost equal number of lexica to\nauthors who lacked concordances, and where either lexica or concordances\nwere lacking, numerous editions of authors antedating and postdating Virgil.\n\nNor, when checking each of the average six to seven words contained in\nthe Virgilian hexameter for its usage elsewhere in Virgil's works or\nother Latin authors, would DALY have had to maintain the laborious\nmechanical process of flipping through these concordances, lexica, and\neditions each time.  Nor would he have had to frequent as often the\nMilton S. Eisenhower Library at the Johns Hopkins University to consult\nthe Thesaurus Linguae Latinae.  Instead of devoting countless hours, or\nthe bulk of his research time, to gathering data concerning Virgil's use\nof words, DALY--now freed by PHI's Latin authors disk from the\ntyrannical, yet in some ways paradoxically happy scholarly drudgery--\nwould have been able to devote that same bulk of time to analyzing and\ninterpreting Virgilian verbal usage.\n\nCiting Theodore Brunner, Gregory Crane, Elli MYLONAS, and Avra MICHELSON,\nDALY argued that this reversal in his style of work, made possible by the\nnew technology, would perhaps have resulted in better, more productive\nresearch.  Indeed, even in the course of his browsing the Latin authors\ndisk at Rutgers, its powerful search, retrieval, and highlighting\ncapabilities suggested to him several new avenues of research into\nVirgil's use of sound effects.  This anecdotal account, DALY maintained,\nmay serve to illustrate in part the sudden and radical transformation\nbeing wrought in the ways scholars work.\n\n                                 ******\n\n++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nMICHELSON * Elements related to scholarship and technology * Electronic\ntexts within the context of broader trends within information technology\nand scholarly communication * Evaluation of the prospects for the use of\nelectronic texts * Relationship of electronic texts to processes of\nscholarly communication in humanities research * New exchange formats\ncreated by scholars * Projects initiated to increase scholarly access to\nconverted text * Trend toward making electronic resources available\nthrough research and education networks * Changes taking place in\nscholarly communication among humanities scholars * Network-mediated\nscholarship transforming traditional scholarly practices * Key\ninformation technology trends affecting the conduct of scholarly\ncommunication over the next decade * The trend toward end-user computing\n* The trend toward greater connectivity * Effects of these trends * Key\ntransformations taking place * Summary of principal arguments *\n++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nAvra MICHELSON, Archival Research and Evaluation Staff, National Archives\nand Records Administration (NARA), argued that establishing who will use\nelectronic texts and what they will use them for involves a consideration\nof both information technology and scholarship trends.  This\nconsideration includes several elements related to scholarship and\ntechnology:  1) the key trends in information technology that are most\nrelevant to scholarship; 2) the key trends in the use of currently\navailable technology by scholars in the nonscientific community; and 3)\nthe relationship between these two very distinct but interrelated trends. \nThe investment in understanding this relationship being made by\ninformation providers, technologists, and public policy developers, as\nwell as by scholars themselves, seems to be pervasive and growing,\nMICHELSON contended.  She drew on collaborative work with Jeff Rothenberg\non the scholarly use of technology.\n\nMICHELSON sought to place the phenomenon of electronic texts within the\ncontext of broader trends within information technology and scholarly\ncommunication.  She argued that electronic texts are of most use to\nresearchers to the extent that the researchers' working context (i.e.,\ntheir relevant bibliographic sources, collegial feedback, analytic tools,\nnotes, drafts, etc.), along with their field's primary and secondary\nsources, also is accessible in electronic form and can be integrated in\nways that are unique to the on-line environment.\n\nEvaluation of the prospects for the use of electronic texts includes two\nelements:  1) an examination of the ways in which researchers currently\nare using electronic texts along with other electronic resources, and 2)\nan analysis of key information technology trends that are affecting the\nlong-term conduct of scholarly communication.  MICHELSON limited her\ndiscussion of the use of electronic texts to the practices of humanists\nand noted that the scientific community was outside the panel's overview.\n\nMICHELSON examined the nature of the current relationship of electronic\ntexts in particular, and electronic resources in general, to what she\nmaintained were, essentially, five processes of scholarly communication\nin humanities research.  Researchers 1) identify sources, 2) communicate\nwith their colleagues, 3) interpret and analyze data, 4) disseminate\ntheir research findings, and 5) prepare curricula to instruct the next\ngeneration of scholars and students.  This examination would produce a\nclearer understanding of the synergy among these five processes that\nfuels the tendency of the use of electronic resources for one process to\nstimulate its use for other processes of scholarly communication.\n\nFor the first process of scholarly communication, the identification of\nsources, MICHELSON remarked the opportunity scholars now enjoy to\nsupplement traditional word-of-mouth searches for sources among their\ncolleagues with new forms of electronic searching.  So, for example,\ninstead of having to visit the library, researchers are able to explore\ndescriptions of holdings in their offices.  Furthermore, if their own\ninstitutions' holdings prove insufficient, scholars can access more than\n200 major American library catalogues over Internet, including the\nuniversities of California, Michigan, Pennsylvania, and Wisconsin. \nDirect access to the bibliographic databases offers intellectual\nempowerment to scholars by presenting a comprehensive means of browsing\nthrough libraries from their homes and offices at their convenience.\n\nThe second process of communication involves communication among\nscholars.  Beyond the most common methods of communication, scholars are\nusing E-mail and a variety of new electronic communications formats\nderived from it for further academic interchange.  E-mail exchanges are\ngrowing at an astonishing rate, reportedly 15 percent a month.  They\ncurrently constitute approximately half the traffic on research and\neducation networks.  Moreover, the global spread of E-mail has been so\nrapid that it is now possible for American scholars to use it to\ncommunicate with colleagues in close to 140 other countries.\n\nOther new exchange formats created by scholars and operating on Internet\ninclude more than 700 conferences, with about 80 percent of these devoted\nto topics in the social sciences and humanities.  The rate of growth of\nthese scholarly electronic conferences also is astonishing.  From l990 to\nl991, 200 new conferences were identified on Internet.  From October 1991\nto June 1992, an additional 150 conferences in the social sciences and\nhumanities were added to this directory of listings.  Scholars have\nestablished conferences in virtually every field, within every different\ndiscipline.  For example, there are currently close to 600 active social\nscience and humanities  conferences on topics such as art and\narchitecture, ethnomusicology, folklore, Japanese culture, medical\neducation, and gifted and talented education.  The appeal to scholars of\ncommunicating through these conferences is that, unlike any other medium,\nelectronic conferences today provide a forum for global communication\nwith peers at the front end of the research process.\n\nInterpretation and analysis of sources constitutes the third process of\nscholarly communication that MICHELSON discussed in terms of texts and\ntextual resources.  The methods used to analyze sources fall somewhere on\na continuum from quantitative analysis to qualitative analysis. \nTypically, evidence is culled and evaluated using methods drawn from both\nends of this continuum.  At one end, quantitative analysis involves the\nuse of mathematical processes such as a count of frequencies and\ndistributions of occurrences or, on a higher level, regression analysis. \nAt the other end of the continuum, qualitative analysis typically\ninvolves nonmathematical processes oriented toward language\ninterpretation or the building of theory.  Aspects of this work involve\nthe processing--either manual or computational--of large and sometimes\nmassive amounts of textual sources, although the use of nontextual\nsources as evidence, such as photographs, sound recordings, film footage,\nand artifacts, is significant as well.\n\nScholars have discovered that many of the methods of interpretation and\nanalysis that are related to both quantitative and qualitative methods\nare processes that can be performed by computers.  For example, computers\ncan count.  They can count brush strokes used in a Rembrandt painting or\nperform regression analysis for understanding cause and effect.  By means\nof advanced technologies, computers can recognize patterns, analyze text,\nand model concepts.  Furthermore, computers can complete these processes\nfaster with more sources and with greater precision than scholars who\nmust rely on manual interpretation of data.  But if scholars are to use\ncomputers for these processes, source materials must be in a form\namenable to computer-assisted analysis.  For this reason many scholars,\nonce they have identified the sources that are key to their research, are\nconverting them to machine-readable form.  Thus, a representative example\nof the numerous textual conversion projects organized by scholars around\nthe world in recent years to support computational text analysis is the\nTLG, the Thesaurus Linguae Graecae.  This project is devoted to\nconverting the extant ancient texts of classical Greece.  (Editor's note: \naccording to the TLG Newsletter of May l992, TLG was in use in thirty-two\ndifferent countries.  This figure updates MICHELSON's previous count by one.)\n\nThe scholars performing these conversions have been asked to recognize\nthat the electronic sources they are converting for one use possess value\nfor other research purposes as well.  As a result, during the past few\nyears, humanities scholars have initiated a number of projects to\nincrease scholarly access to converted text.  So, for example, the Text\nEncoding Initiative (TEI), about which more is said later in the program,\nwas established as an effort by scholars to determine standard elements\nand methods for encoding machine-readable text for electronic exchange. \nIn a second effort to facilitate the sharing of converted text, scholars\nhave created a new institution, the Center for Electronic Texts in the\nHumanities (CETH).  The center estimates that there are 8,000 series of\nsource texts in the humanities that have been converted to\nmachine-readable form worldwide.  CETH is undertaking an international\nsearch for converted text in the humanities, compiling it into an\nelectronic library, and preparing bibliographic descriptions of the\nsources for the Research Libraries Information Network's (RLIN)\nmachine-readable data file.  The library profession has begun to initiate\nlarge conversion projects as well, such as American Memory.\n\nWhile scholars have been making converted text available to one another,\ntypically on disk or on CD-ROM, the clear trend is toward making these\nresources available through research and education networks.  Thus, the\nAmerican and French Research on the Treasury of the French Language\n(ARTFL) and the Dante Project are already available on Internet. \nMICHELSON summarized this section on interpretation and analysis by\nnoting that:  1) increasing numbers of humanities scholars in the library\ncommunity are recognizing the importance to the advancement of\nscholarship of retrospective conversion of source materials in the arts\nand humanities; and 2) there is a growing realization that making the\nsources available on research and education networks maximizes their\nusefulness for the analysis performed by humanities scholars.\n\nThe fourth process of scholarly communication is dissemination of\nresearch findings, that is, publication.  Scholars are using existing\nresearch and education networks to engineer a new type of publication: \nscholarly-controlled journals that are electronically produced and\ndisseminated.  Although such journals are still emerging as a\ncommunication format, their number has grown, from approximately twelve\nto thirty-six during the past year (July 1991 to June 1992).  Most of\nthese electronic scholarly journals are devoted to topics in the\nhumanities.  As with network conferences, scholarly enthusiasm for these\nelectronic journals stems from the medium's unique ability to advance\nscholarship in a way that no other medium can do by supporting global\nfeedback and interchange, practically in real time, early in the research\nprocess.  Beyond scholarly journals, MICHELSON remarked the delivery of\ncommercial full-text products, such as articles in professional journals,\nnewsletters, magazines, wire services, and reference sources.  These are\nbeing delivered via on-line local library catalogues, especially through\nCD-ROMs.  Furthermore, according to MICHELSON, there is general optimism\nthat the copyright and fees issues impeding the delivery of full text on\nexisting research and education networks soon will be resolved.\n\nThe final process of scholarly communication is curriculum development\nand instruction, and this involves the use of computer information\ntechnologies in two areas.  The first is the development of\ncomputer-oriented instructional tools, which includes simulations,\nmultimedia applications, and computer tools that are used to assist in\nthe analysis of sources in the classroom, etc.  The Perseus Project, a\ndatabase that provides a multimedia curriculum on classical Greek\ncivilization, is a good example of the way in which entire curricula are\nbeing recast using information technologies.  It is anticipated that the\ncurrent difficulty in exchanging electronically computer-based\ninstructional software, which in turn makes it difficult for one scholar\nto build upon the work of others, will be resolved before too long. \nStand-alone curricular applications that involve electronic text will be\nsharable through networks, reinforcing their significance as intellectual\nproducts as well as instructional tools.\n\nThe second aspect of electronic learning involves the use of research and\neducation networks for distance education programs.  Such programs\ninteractively link teachers with students in geographically scattered\nlocations and rely on the availability of electronic instructional\nresources.  Distance education programs are gaining wide appeal among\nstate departments of education because of their demonstrated capacity to\nbring advanced specialized course work and an array of experts to many\nclassrooms.  A recent report found that at least 32 states operated at\nleast one statewide network for education in 1991, with networks under\ndevelopment in many of the remaining states.\n\nMICHELSON summarized this section by noting two striking changes taking\nplace in scholarly communication among humanities scholars.  First is the\nextent to which electronic text in particular, and electronic resources\nin general, are being infused into each of the five processes described\nabove.  As mentioned earlier, there is a certain synergy at work here. \nThe use of electronic resources for one process tends to stimulate its\nuse for other processes, because the chief course of movement is toward a\ncomprehensive on-line working context for humanities scholars that\nincludes on-line availability of key bibliographies, scholarly feedback,\nsources, analytical tools, and publications.  MICHELSON noted further\nthat the movement toward a comprehensive on-line working context for\nhumanities scholars is not new.  In fact, it has been underway for more\nthan forty years in the humanities, since Father Roberto Busa began\ndeveloping an electronic concordance of the works of Saint Thomas Aquinas\nin 1949.  What we are witnessing today, MICHELSON contended, is not the\nbeginning of this on-line transition but, for at least some humanities\nscholars, the turning point in the transition from a print to an\nelectronic working context.  Coinciding with the on-line transition, the\nsecond striking change is the extent to which research and education\nnetworks are becoming the new medium of scholarly communication.  The\nexisting Internet and the pending National Education and Research Network\n(NREN) represent the new meeting ground where scholars are going for\nbibliographic information, scholarly dialogue and feedback, the most\ncurrent publications in their field, and high-level educational\nofferings.  Traditional scholarly practices are undergoing tremendous\ntransformations as a result of the emergence and growing prominence of\nwhat is called network-mediated scholarship.\n\nMICHELSON next turned to the second element of the framework she proposed\nat the outset of her talk for evaluating the prospects for electronic\ntext, namely the key information technology trends affecting the conduct\nof scholarly communication over the next decade:  1) end-user computing\nand 2) connectivity.\n\nEnd-user computing means that the person touching the keyboard, or\nperforming computations, is the same as the person who initiates or\nconsumes the computation.  The emergence of personal computers, along\nwith a host of other forces, such as ubiquitous computing, advances in\ninterface design, and the on-line transition, is prompting the consumers\nof computation to do their own computing, and is thus rendering obsolete\nthe traditional distinction between end users and ultimate users.\n\nThe trend toward end-user computing is significant to consideration of\nthe prospects for electronic texts because it means that researchers are\nbecoming more adept at doing their own computations and, thus, more\ncompetent in the use of electronic media.  By avoiding programmer\nintermediaries, computation is becoming central to the researcher's\nthought process.  This direct involvement in computing is changing the\nresearcher's perspective on the nature of research itself, that is, the\nkinds of questions that can be posed, the analytical methodologies that\ncan be used, the types and amount of sources that are appropriate for\nanalyses, and the form in which findings are presented.  The trend toward\nend-user computing means that, increasingly, electronic media and\ncomputation are being infused into all processes of humanities\nscholarship, inspiring remarkable transformations in scholarly\ncommunication.\n\nThe trend toward greater connectivity suggests that researchers are using\ncomputation increasingly in network environments.  Connectivity is\nimportant to scholarship because it erases the distance that separates\nstudents from teachers and scholars from their colleagues, while allowing\nusers to access remote databases, share information in many different\nmedia, connect to their working context wherever they are, and\ncollaborate in all phases of research.\n\nThe combination of the trend toward end-user computing and the trend\ntoward connectivity suggests that the scholarly use of electronic\nresources, already evident among some researchers, will soon become an\nestablished feature of scholarship.  The effects of these trends, along\nwith ongoing changes in scholarly practices, point to a future in which\nhumanities researchers will use computation and electronic communication\nto help them formulate ideas, access sources, perform research,\ncollaborate with colleagues, seek peer review, publish and disseminate\nresults, and engage in many other professional and educational activities.\n\nIn summary, MICHELSON emphasized four points:  1) A portion of humanities\nscholars already consider electronic texts the preferred format for\nanalysis and dissemination.  2) Scholars are using these electronic\ntexts, in conjunction with other electronic resources, in all the\nprocesses of scholarly communication.  3) The humanities scholars'\nworking context is in the process of changing from print technology to\nelectronic technology, in many ways mirroring transformations that have\noccurred or are occurring within the scientific community.  4) These\nchanges are occurring in conjunction with the development of a new\ncommunication medium:  research and education networks that are\ncharacterized by their capacity to advance scholarship in a wholly unique\nway.\n\nMICHELSON also reiterated her three principal arguments:  l) Electronic\ntexts are best understood in terms of the relationship to other\nelectronic resources and the growing prominence of network-mediated\nscholarship.  2) The prospects for electronic texts lie in their capacity\nto be integrated into the on-line network of electronic resources that\ncomprise the new working context for scholars.  3) Retrospective conversion\nof portions of the scholarly record should be a key strategy as information\nproviders respond to changes in scholarly communication practices.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nVECCIA * AM's evaluation project and public users of electronic resources\n* AM and its design * Site selection and evaluating the Macintosh\nimplementation of AM * Characteristics of the six public libraries\nselected * Characteristics of AM's users in these libraries * Principal\nways AM is being used *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nSusan VECCIA, team leader, and Joanne FREEMAN, associate coordinator,\nAmerican Memory, Library of Congress, gave a joint presentation.  First,\nby way of introduction, VECCIA explained her and FREEMAN's roles in\nAmerican Memory (AM).  Serving principally as an observer, VECCIA has\nassisted with the evaluation project of AM, placing AM collections in a\nvariety of different sites around the country and helping to organize and\nimplement that project.  FREEMAN has been an associate coordinator of AM\nand has been involved principally with the interpretative materials,\npreparing some of the electronic exhibits and printed historical\ninformation that accompanies AM and that is requested by users.  VECCIA\nand FREEMAN shared anecdotal observations concerning AM with public users\nof electronic resources.  Notwithstanding a fairly structured evaluation\nin progress, both VECCIA and FREEMAN chose not to report on specifics in\nterms of numbers, etc., because they felt it was too early in the\nevaluation project to do so.\n\nAM is an electronic archive of primary source materials from the Library\nof Congress, selected collections representing a variety of formats--\nphotographs, graphic arts, recorded sound, motion pictures, broadsides,\nand soon, pamphlets and books.  In terms of the design of this system,\nthe interpretative exhibits have been kept separate from the primary\nresources, with good reason.  Accompanying this collection are printed\ndocumentation and user guides, as well as guides that FREEMAN prepared for\nteachers so that they may begin using the content of the system at once.\n\nVECCIA described the evaluation project before talking about the public\nusers of AM, limiting her remarks to public libraries, because FREEMAN\nwould talk more specifically about schools from kindergarten to twelfth\ngrade (K-12).   Having started in spring 1991, the evaluation currently\ninvolves testing of the Macintosh implementation of AM.  Since the\nprimary goal of this evaluation is to determine the most appropriate\naudience or audiences for AM, very different sites were selected.  This\nmakes evaluation difficult because of the varying degrees of technology\nliteracy among the sites.  AM is situated in forty-four locations, of\nwhich six are public libraries and sixteen are schools.  Represented\namong the schools are elementary, junior high, and high schools.\nDistrict offices also are involved in the evaluation, which will\nconclude in summer 1993.\n\nVECCIA focused the remainder of her talk on the six public libraries, one\nof which doubles as a state library.  They represent a range of\ngeographic areas and a range of demographic characteristics.  For\nexample, three are located in urban settings, two in rural settings, and\none in a suburban setting.  A range of technical expertise is to be found\namong these facilities as well.  For example, one is an \"Apple library of\nthe future,\" while two others are rural one-room libraries--in one, AM\nsits at the front desk next to a tractor manual.\n\nAll public libraries have been extremely enthusiastic, supportive, and\nappreciative of the work that AM has been doing.  VECCIA characterized\nvarious users:  Most users in public libraries describe themselves as\ngeneral readers; of the students who use AM in the public libraries,\nthose in fourth grade and above seem most interested.  Public libraries\nin rural sites tend to attract retired people, who have been highly\nreceptive to AM.  Users tend to fall into two additional categories: \npeople interested in the content and historical connotations of these\nprimary resources, and those fascinated by the technology.  The format\nreceiving the most comments has been motion pictures.  The adult users in\npublic libraries are more comfortable with IBM computers, whereas young\npeople seem comfortable with either IBM or Macintosh, although most of\nthem seem to come from a Macintosh background.  This same tendency is\nfound in the schools.\n\nWhat kinds of things do users do with AM?  In a public library there are\ntwo main goals or ways that AM is being used:  as an individual learning\ntool, and as a leisure activity.  Adult learning was one area that VECCIA\nwould highlight as a possible application for a tool such as AM.  She\ndescribed a patron of a rural public library who comes in every day on\nhis lunch hour and literally reads AM, methodically going through the\ncollection image by image.  At the end of his hour he makes an electronic\nbookmark, puts it in his pocket, and returns to work.  The next day he\ncomes in and resumes where he left off.  Interestingly, this man had\nnever been in the library before he used AM.  In another small, rural\nlibrary, the coordinator reports that AM is a popular activity for some\nof the older, retired people in the community, who ordinarily would not\nuse \"those things,\"--computers.  Another example of adult learning in\npublic libraries is book groups, one of which, in particular, is using AM\nas part of its reading on industrialization, integration, and urbanization\nin the early 1900s.\n\nOne library reports that a family is using AM to help educate their\nchildren.  In another instance, individuals from a local museum came in\nto use AM to prepare an exhibit on toys of the past.  These two examples\nemphasize the mission of the public library as a cultural institution,\nreaching out to people who do not have the same resources available to\nthose who live in a metropolitan area or have access to a major library. \nOne rural library reports that junior high school students in large\nnumbers came in one afternoon to use AM for entertainment.  A number of\npublic libraries reported great interest among postcard collectors in the\nDetroit collection, which was essentially a collection of images used on\npostcards around the turn of the century.  Train buffs are similarly\ninterested because that was a time of great interest in railroading. \nPeople, it was found, relate to things that they know of firsthand.  For\nexample, in both rural public libraries where AM was made available,\nobservers reported that the older people with personal remembrances of\nthe turn of the century were gravitating to the Detroit collection. \nThese examples served to underscore MICHELSON's observation re the\nintegration of electronic tools and ideas--that people learn best when\nthe material relates to something they know.\n\nVECCIA made the final point that in many cases AM serves as a\npublic-relations tool for the public libraries that are testing it.  In\none case, AM is being used as a vehicle to secure additional funding for\nthe library.  In another case, AM has served as an inspiration to the\nstaff of a major local public library in the South to think about ways to\nmake its own collection of photographs more accessible to the public.\n\n                                  ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nFREEMAN * AM and archival electronic resources in a school environment *\nQuestions concerning context * Questions concerning the electronic format\nitself * Computer anxiety * Access and availability of the system *\nHardware * Strengths gained through the use of archival resources in\nschools *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nReiterating an observation made by VECCIA, that AM is an archival\nresource made up of primary materials with very little interpretation,\nFREEMAN stated that the project has attempted to bridge the gap between\nthese bare primary materials and a school environment, and in that cause\nhas created guided introductions to AM collections.  Loud demand from the\neducational community,  chiefly from teachers working with the upper\ngrades of elementary school through high school, greeted the announcement\nthat AM would be tested around the country.\n\nFREEMAN reported not only on what was learned about AM in a school\nenvironment, but also on several universal questions that were raised\nconcerning archival electronic resources in schools.  She discussed\nseveral strengths of this type of material in a school environment as\nopposed to a highly structured resource that offers a limited number of\npaths to follow.\n\nFREEMAN first raised several questions about using AM in a school\nenvironment.  There is often some difficulty in developing a sense of\nwhat the system contains.  Many students sit down at a computer resource\nand assume that, because AM comes from the Library of Congress, all of\nAmerican history is now at their fingertips.  As a result of that sort of\nmistaken judgment, some students are known to conclude that AM contains\nnothing of use to them when they look for one or two things and do not\nfind them.  It is difficult to discover that middle ground where one has\na sense of what the system contains.  Some students grope toward the idea\nof an archive, a new idea to them, since they have not previously\nexperienced what it means to have access to a vast body of somewhat\nrandom information.\n\nOther questions raised by FREEMAN concerned the electronic format itself. \nFor instance, in a school environment it is often difficult both for\nteachers and students to gain a sense of what it is they are viewing. \nThey understand that it is a visual image, but they do not necessarily\nknow that it is a postcard from the turn of the century, a panoramic\nphotograph, or even machine-readable text of an eighteenth-century\nbroadside, a twentieth-century printed book, or a nineteenth-century\ndiary.  That distinction is often difficult for people in a school\nenvironment to grasp.  Because of that, it occasionally becomes difficult\nto draw conclusions from what one is viewing.\n\nFREEMAN also noted the obvious fear of the computer, which constitutes a\ndifficulty in using an electronic resource.  Though students in general\ndid not suffer from this anxiety, several older students feared that they\nwere computer-illiterate, an assumption that became self-fulfilling when\nthey searched for something but failed to find it.  FREEMAN said she\nbelieved that some teachers also fear computer resources, because they\nbelieve they lack complete control.  FREEMAN related the example of\nteachers shooing away students because it was not their time to use the\nsystem.  This was a case in which the situation had to be extremely\nstructured so that the teachers would not feel that they had lost their\ngrasp on what the system contained.\n\nA final question raised by FREEMAN concerned access and availability of\nthe system.  She noted the occasional existence of a gap in communication\nbetween school librarians and teachers.  Often AM sits in a school\nlibrary and the librarian is the person responsible for monitoring the\nsystem.  Teachers do not always take into their world new library\nresources about which the librarian is excited.  Indeed, at the sites\nwhere AM had been used most effectively within a library, the librarian\nwas required to go to specific teachers and instruct them in its use.  As\na result, several AM sites will have in-service sessions over a summer,\nin the hope that perhaps, with a more individualized link, teachers will\nbe more likely to use the resource.\n\nA related issue in the school context concerned the number of\nworkstations available at any one location.  Centralization of equipment\nat the district level, with teachers invited to download things and walk\naway with them, proved unsuccessful because the hours these offices were\nopen were also school hours.\n\nAnother issue was hardware.  As VECCIA observed, a range of sites exists,\nsome technologically advanced and others essentially acquiring their\nfirst computer for the primary purpose of using it in conjunction with\nAM's testing.  Users at technologically sophisticated sites want even\nmore sophisticated hardware, so that they can perform even more\nsophisticated tasks with the materials in AM.  But once they acquire a\nnewer piece of hardware, they must learn how to use that also; at an\nunsophisticated site it takes an extremely long time simply to become\naccustomed to the computer, not to mention the program offered with the\ncomputer.  All of these small issues raise one large question, namely,\nare systems like AM truly rewarding in a school environment, or do they\nsimply act as innovative toys that do little more than spark interest?\n\nFREEMAN contended that the evaluation project has revealed several strengths\nthat were gained through the use of archival resources in schools, including:\n\n     * Psychic rewards from using AM as a vast, rich database, with\n     teachers assigning various projects to students--oral presentations,\n     written reports, a documentary, a turn-of-the-century newspaper--\n     projects that start with the materials in AM but are completed using\n     other resources; AM thus is used as a research tool in conjunction\n     with other electronic resources, as well as with books and items in\n     the library where the system is set up.\n\n     * Students are acquiring computer literacy in a humanities context.\n\n     * This sort of system is overcoming the isolation between disciplines\n     that often exists in schools.  For example, many English teachers are\n     requiring their students to write papers on historical topics\n     represented in AM.  Numerous teachers have reported that their\n     students are learning critical thinking skills using the system.\n\n     * On a broader level, AM is introducing primary materials, not only\n     to students but also to teachers, in an environment where often\n     simply none exist--an exciting thing for the students because it\n     helps them learn to conduct research, to interpret, and to draw\n     their own conclusions.  In learning to conduct research and what it\n     means, students are motivated to seek knowledge.  That relates to\n     another positive outcome--a high level of personal involvement of\n     students with the materials in this system and greater motivation to\n     conduct their own research and draw their own conclusions.\n\n     * Perhaps the most ironic strength of these kinds of archival\n     electronic resources is that many of the teachers AM interviewed\n     were desperate, it is no exaggeration to say, not only for primary\n     materials but for unstructured primary materials.  These would, they\n     thought, foster personally motivated research, exploration, and\n     excitement in their students.  Indeed, these materials have done\n     just that.  Ironically, however, this lack of structure produces\n     some of the confusion to which the newness of these kinds of\n     resources may also contribute.  The key to effective use of archival\n     products in a school environment is a clear, effective introduction\n     to the system and to what it contains. \n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Nothing known, quantitatively, about the number of\nhumanities scholars who must see the original versus those who would\nsettle for an edited transcript, or about the ways in which humanities\nscholars are using information technology * Firm conclusions concerning\nthe manner and extent of the use of supporting materials in print\nprovided by AM to await completion of evaluative study * A listener's\nreflections on additional applications of electronic texts * Role of\nelectronic resources in teaching elementary research skills to students *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the discussion that followed the presentations by MICHELSON,\nVECCIA, and FREEMAN, additional points emerged.\n\nLESK asked if MICHELSON could give any quantitative estimate of the\nnumber of humanities scholars who must see or want to see the original,\nor the best possible version of the material, versus those who typically\nwould settle for an edited transcript.  While unable to provide a figure,\nshe offered her impressions as an archivist who has done some reference\nwork and has discussed this issue with other archivists who perform\nreference, that those who use archives and those who use primary sources\nfor what would be considered very high-level scholarly research, as\nopposed to, say, undergraduate papers, were few in number, especially\ngiven the public interest in using primary sources to conduct\ngenealogical or avocational research and the kind of professional\nresearch done by people in private industry or the federal government. \nMore important in MICHELSON's view was that, quantitatively, nothing is\nknown about the ways in which, for example, humanities scholars are using\ninformation technology.  No studies exist to offer guidance in creating\nstrategies.  The most recent study was conducted in 1985 by the American\nCouncil of Learned Societies (ACLS), and what it showed was that 50\npercent of humanities scholars at that time were using computers.  That\nconstitutes the extent of our knowledge.\n\nConcerning AM's strategy for orienting people toward the scope of\nelectronic resources, FREEMAN could offer no hard conclusions at this\npoint, because she and her colleagues were still waiting to see,\nparticularly in the schools, what has been made of their efforts.  Within\nthe system, however, AM has provided what are called electronic exhibits-\n-such as introductions to time periods and materials--and these are\nintended to offer a student user a sense of what a broadside is  and what\nit might tell her or him.  But FREEMAN conceded that the project staff\nwould have to talk with students next year, after teachers have had a\nsummer to use the materials, and attempt to discover what the students\nwere learning from the materials.  In addition, FREEMAN described\nsupporting materials in print provided by AM at the request of local\nteachers during a meeting held at LC.  These included time lines,\nbibliographies, and other materials that could be reproduced on a\nphotocopier in a classroom.  Teachers could walk away with and use these,\nand in this way gain a better understanding of the contents.  But again,\nreaching firm conclusions concerning the manner and extent of their use\nwould have to wait until next year.\n\nAs to the changes she saw occurring at the National Archives and Records\nAdministration (NARA) as a result of the increasing emphasis on\ntechnology in scholarly research, MICHELSON stated that NARA at this\npoint was absorbing the report by her and Jeff Rothenberg addressing\nstrategies for the archival profession in general, although not for the\nNational Archives specifically.  NARA is just beginning to establish its\nrole and what it can do.  In terms of changes and initiatives that NARA\ncan take, no clear response could be given at this time.\n\nGREENFIELD remarked two trends mentioned in the session.  Reflecting on\nDALY's opening comments on how he could have used a Latin collection of\ntext in an electronic form, he said that at first he thought most scholars\nwould be unwilling to do that.  But as he thought of that in terms of the\noriginal meaning of research--that is, having already mastered these texts,\nresearching them for critical and comparative purposes--for the first time,\nthe electronic format made a lot of sense.  GREENFIELD could envision\ngrowing numbers of scholars learning the new technologies for that very\naspect of their scholarship and for convenience's sake.\n\nListening to VECCIA and FREEMAN, GREENFIELD thought of an additional\napplication of electronic texts.  He realized that AM could be used as a\nguide to lead someone to original sources.  Students cannot be expected\nto have mastered these sources, things they have never known about\nbefore.  Thus, AM is leading them, in theory, to a vast body of\ninformation and giving them a superficial overview of it, enabling them\nto select parts of it.  GREENFIELD asked if any evidence exists that this\nresource will indeed teach the new user, the K-12 students, how to do\nresearch.  Scholars already know how to do research and are applying\nthese new tools.  But he wondered why students would go beyond picking\nout things that were most exciting to them.\n\nFREEMAN conceded the correctness of GREENFIELD's observation as applied\nto a school environment.  The risk is that a student would sit down at a\nsystem, play with it, find some things of interest, and then walk away. \nBut in the relatively controlled situation of a school library, much will\ndepend on the instructions a teacher or a librarian gives a student.  She\nviewed the situation not as one of fine-tuning research skills but of\ninvolving students at a personal level in understanding and researching\nthings.  Given the guidance one can receive at school, it then becomes\npossible to teach elementary research skills to students, which in fact\none particular librarian said she was teaching her fifth graders. \nFREEMAN concluded that introducing the idea of following one's own path\nof inquiry, which is essentially what research entails, involves more\nthan teaching specific skills.  To these comments VECCIA added the\nobservation that the individual teacher and the use of a creative\nresource, rather than AM itself, seemed to make the key difference.\nSome schools and some teachers are making excellent use of the nature\nof critical thinking and teaching skills, she said.\n\nConcurring with these remarks, DALY closed the session with the thought that\nthe more that producers produced for teachers and for scholars to use with\ntheir students, the more successful their electronic products would prove.\n\n                                 ******\n\nSESSION II.  SHOW AND TELL\n\nJacqueline HESS, director, National Demonstration Laboratory, served as\nmoderator of the \"show-and-tell\" session.  She noted that a\nquestion-and-answer period would follow each presentation.\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nMYLONAS * Overview and content of Perseus * Perseus' primary materials\nexist in a system-independent, archival form * A concession * Textual\naspects of Perseus * Tools to use with the Greek text * Prepared indices\nand full-text searches in Perseus * English-Greek word search leads to\nclose study of words and concepts * Navigating Perseus by tracing down\nindices * Using the iconography to perform research *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nElli MYLONAS, managing editor, Perseus Project, Harvard University, first\ngave an overview of Perseus, a large, collaborative effort based at\nHarvard University but with contributors and collaborators located at\nnumerous universities and colleges in the United States (e.g., Bowdoin,\nMaryland, Pomona, Chicago, Virginia).  Funded primarily by the\nAnnenberg/CPB Project, with additional funding from Apple, Harvard, and\nthe Packard Humanities Institute, among others, Perseus is a multimedia,\nhypertextual database for teaching and research on classical Greek\ncivilization, which was released in February 1992 in version 1.0 and\ndistributed by Yale University Press.\n\nConsisting entirely of primary materials, Perseus includes ancient Greek\ntexts and translations of those texts; catalog entries--that is, museum\ncatalog entries, not library catalog entries--on vases, sites, coins,\nsculpture, and archaeological objects; maps; and a dictionary, among\nother sources.  The number of objects and the objects for which catalog\nentries exist are accompanied by thousands of color images, which\nconstitute a major feature of the database.  Perseus contains\napproximately 30 megabytes of text, an amount that will double in\nsubsequent versions.  In addition to these primary materials, the Perseus\nProject has been building tools for using them, making access and\nnavigation easier, the goal being to build part of the electronic\nenvironment discussed earlier in the morning in which students or\nscholars can work with their sources.\n\nThe demonstration of Perseus will show only a fraction of the real work\nthat has gone into it, because the project had to face the dilemma of\nwhat to enter when putting something into machine-readable form:  should\none aim for very high quality or make concessions in order to get the\nmaterial in?  Since Perseus decided to opt for very high quality, all of\nits primary materials exist in a system-independent--insofar as it is\npossible to be system-independent--archival form.  Deciding what that\narchival form would be and attaining it required much work and thought. \nFor example, all the texts are marked up in SGML, which will be made\ncompatible with the guidelines of the Text Encoding Initiative (TEI) when\nthey are issued.\n\nDrawings are postscript files, not meeting international standards, but\nat least designed to go across platforms.  Images, or rather the real\narchival forms, consist of the best available slides, which are being\ndigitized.  Much of the catalog material exists in database form--a form\nthat the average user could use, manipulate, and display on a personal\ncomputer, but only at great cost.  Thus, this is where the concession\ncomes in:  All of this rich, well-marked-up information is stripped of\nmuch of its content; the images are converted into bit-maps and the text\ninto small formatted chunks.  All this information can then be imported\ninto HyperCard and run on a mid-range Macintosh, which is what Perseus\nusers have.  This fact has made it possible for Perseus to attain wide\nuse fairly rapidly.  Without those archival forms the HyperCard version\nbeing demonstrated could not be made easily, and the project could not\nhave the potential to move to other forms and machines and software as\nthey appear, none of which information is in Perseus on the CD.\n\nOf the numerous multimedia aspects of Perseus, MYLONAS focused on the\ntextual.  Part of what makes Perseus such a pleasure to use, MYLONAS\nsaid, is this effort at seamless integration and the ability to move\naround both visual and textual material.  Perseus also made the decision\nnot to attempt to interpret its material any more than one interprets by\nselecting.  But, MYLONAS emphasized, Perseus is not courseware:  No\nsyllabus exists.  There is no effort to define how one teaches a topic\nusing Perseus, although the project may eventually collect papers by\npeople who have used it to teach.  Rather, Perseus aims to provide\nprimary material in a kind of electronic library, an electronic sandbox,\nso to say, in which students and scholars who are working on this\nmaterial can explore by themselves.  With that, MYLONAS demonstrated\nPerseus, beginning with the Perseus gateway, the first thing one sees\nupon opening Perseus--an effort in part to solve the contextualizing\nproblem--which tells the user what the system contains.\n\nMYLONAS demonstrated only a very small portion, beginning with primary\ntexts and running off the CD-ROM.  Having selected Aeschylus' Prometheus\nBound, which was viewable in Greek and English pretty much in the same\nsegments together, MYLONAS demonstrated tools to use with the Greek text,\nsomething not possible with a book:  looking up the dictionary entry form\nof an unfamiliar word in Greek after subjecting it to Perseus'\nmorphological analysis for all the texts.  After finding out about a\nword, a user may then decide to see if it is used anywhere else in Greek. \nBecause vast amounts of indexing support all of the primary material, one\ncan find out where else all forms of a particular Greek word appear--\noften not a trivial matter because Greek is highly inflected.  Further,\nsince the story of Prometheus has to do with the origins of sacrifice, a\nuser may wish to study and explore sacrifice in Greek literature; by\ntyping sacrifice into a small window, a user goes to the English-Greek\nword list--something one cannot do without the computer (Perseus has\nindexed the definitions of its dictionary)--the string sacrifice appears\nin the definitions of these sixty-five words.  One may then find out\nwhere any of those words is used in the work(s) of a particular author. \nThe English definitions are not lemmatized.\n\nAll of the indices driving this kind of usage were originally devised for\nspeed, MYLONAS observed; in other words, all that kind of information--\nall forms of all words, where they exist, the dictionary form they belong\nto--were collected into databases, which will expedite searching.  Then\nit was discovered that one can do things searching in these databases\nthat could not be done searching in the full texts.  Thus, although there\nare full-text searches in Perseus, much of the work is done behind the\nscenes, using prepared indices.  Re the indexing that is done behind the\nscenes, MYLONAS pointed out that without the SGML forms of the text, it\ncould not be done effectively.  Much of this indexing is based on the\nstructures that are made explicit by the SGML tagging.\n\nIt was found that one of the things many of Perseus' non-Greek-reading\nusers do is start from the dictionary and then move into the close study\nof words and concepts via this kind of English-Greek word search, by which\nmeans they might select a concept.  This exercise has been assigned to\nstudents in core courses at Harvard--to study a concept by looking for the\nEnglish word in the dictionary, finding the Greek words, and then finding\nthe words in the Greek but, of course, reading across in the English.\nThat tells them a great deal about what a translation means as well.\n\nShould one also wish to see images that have to do with sacrifice, that\nperson would go to the object key word search, which allows one to\nperform a similar kind of index retrieval on the database of\narchaeological objects.  Without words, pictures are useless; Perseus has\nnot reached the point where it can do much with images that are not\ncataloged.  Thus, although it is possible in Perseus with text and images\nto navigate by knowing where one wants to end up--for example, a\nred-figure vase from the Boston Museum of Fine Arts--one can perform this\nkind of navigation very easily by tracing down indices.  MYLONAS\nillustrated several generic scenes of sacrifice on vases.  The features\ndemonstrated derived from Perseus 1.0; version 2.0 will implement even\nbetter means of retrieval.\n\nMYLONAS closed by looking at one of the pictures and noting again that\none can do a great deal of research using the iconography as well as the\ntexts.  For instance, students in a core course at Harvard this year were\nhighly interested in Greek concepts of foreigners and representations of\nnon-Greeks.  So they performed a great deal of research, both with texts\n(e.g., Herodotus) and with iconography on vases and coins, on how the\nGreeks portrayed non-Greeks.  At the same time, art historians who study\niconography were also interested, and were able to use this material.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Indexing and searchability of all English words in Perseus *\nSeveral features of Perseus 1.0 * Several levels of customization\npossible * Perseus used for general education * Perseus' effects on\neducation * Contextual information in Perseus * Main challenge and\nemphasis of Perseus *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nSeveral points emerged in the discussion that followed MYLONAS's presentation.\n\nAlthough MYLONAS had not demonstrated Perseus' ability to cross-search\ndocuments, she confirmed that all English words in Perseus are indexed\nand can be searched.  So, for example, sacrifice could have been searched\nin all texts, the historical essay, and all the catalogue entries with\ntheir descriptions--in short, in all of Perseus.\n\nBoolean logic is not in Perseus 1.0 but will be added to the next\nversion, although an effort is being made not to restrict Perseus to a\ndatabase in which one just performs searching, Boolean or otherwise.  It\nis possible to move laterally through the documents by selecting a word\none is interested in and selecting an area of information one is\ninterested in and trying to look that word up in that area.\n\nSince Perseus was developed in HyperCard, several levels of customization\nare possible.  Simple authoring tools exist that allow one to create\nannotated paths through the information, which are useful for note-taking\nand for guided tours for teaching purposes and for expository writing. \nWith a little more ingenuity it is possible to begin to add or substitute\nmaterial in Perseus.\n\nPerseus has not been used so much for classics education as for general\neducation, where it seemed to have an impact on the students in the core\ncourse at Harvard (a general required course that students must take in\ncertain areas).  Students were able to use primary material much more.\n\nThe Perseus Project has an evaluation team at the University of Maryland\nthat has been documenting Perseus' effects on education.  Perseus is very\npopular, and anecdotal evidence indicates that it is having an effect at\nplaces other than Harvard, for example, test sites at Ball State\nUniversity, Drury College, and numerous small places where opportunities\nto use vast amounts of primary data may not exist.  One documented effect\nis that archaeological, anthropological, and philological research is\nbeing done by the same person instead of by three different people.\n\nThe contextual information in Perseus includes an overview essay, a\nfairly linear historical essay on the fifth century B.C. that provides\nlinks into the primary material (e.g., Herodotus, Thucydides, and\nPlutarch), via small gray underscoring (on the screen) of linked\npassages.  These are handmade links into other material.\n\nTo different extents, most of the production work was done at Harvard,\nwhere the people and the equipment are located.  Much of the\ncollaborative activity involved data collection and structuring, because\nthe main challenge and the emphasis of Perseus is the gathering of\nprimary material, that is, building a useful environment for studying\nclassical Greece, collecting data, and making it useful. \nSystems-building is definitely not the main concern.  Thus, much of the\nwork has involved writing essays, collecting information, rewriting it,\nand tagging it.  That can be done off site.  The creative link for the\noverview essay as well as for both systems and data was collaborative,\nand was forged via E-mail and paper mail with professors at Pomona and\nBowdoin.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nCALALUCA * PLD's principal focus and contribution to scholarship *\nVarious questions preparatory to beginning the project * Basis for\nproject * Basic rule in converting PLD * Concerning the images in PLD *\nRunning PLD under a variety of retrieval softwares * Encoding the\ndatabase a hard-fought issue * Various features demonstrated * Importance\nof user documentation * Limitations of the CD-ROM version *   \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nEric CALALUCA, vice president, Chadwyck-Healey, Inc., demonstrated a\nsoftware interpretation of the Patrologia Latina Database (PLD).  PLD's\nprincipal focus from the beginning of the project about three-and-a-half\nyears ago was on converting Migne's Latin series, and in the end,\nCALALUCA suggested, conversion of the text will be the major contribution\nto scholarship.  CALALUCA stressed that, as possibly the only private\npublishing organization at the Workshop, Chadwyck-Healey had sought no\nfederal funds or national foundation support before embarking upon the\nproject, but instead had relied upon a great deal of homework and\nmarketing to accomplish the task of conversion.\n\nEver since the possibilities of computer-searching have emerged, scholars\nin the field of late ancient and early medieval studies (philosophers,\ntheologians, classicists, and those studying the history of natural law\nand the history of the legal development of Western civilization) have\nbeen longing for a fully searchable version of Western literature, for\nexample, all the texts of Augustine and Bernard of Clairvaux and\nBoethius, not to mention all the secondary and tertiary authors.\n\nVarious questions arose, CALALUCA said.  Should one convert Migne? \nShould the database be encoded?  Is it necessary to do that?  How should\nit be delivered?  What about CD-ROM?  Since this is a transitional\nmedium, why even bother to create software to run on a CD-ROM?  Since\neverybody knows people will be networking information, why go to the\ntrouble--which is far greater with CD-ROM than with the production of\nmagnetic data?  Finally, how does one make the data available?  Can many\nof the hurdles to using electronic information that some publishers have\nimposed upon databases be eliminated?\n\nThe PLD project was based on the principle that computer-searching of\ntexts is most effective when it is done with a large database.  Because\nPLD represented a collection that serves so many disciplines across so\nmany periods, it was irresistible.\n\nThe basic rule in converting PLD was to do no harm, to avoid the sins of\nintrusion in such a database:  no introduction of newer editions, no\non-the-spot changes, no eradicating of all possible falsehoods from an\nedition.  Thus, PLD is not the final act in electronic publishing for\nthis discipline, but simply the beginning.  The conversion of PLD has\nevoked numerous unanticipated questions:  How will information be used? \nWhat about networking?  Can the rights of a database be protected? \nShould one protect the rights of a database?  How can it be made\navailable?\n\nThose converting PLD also tried to avoid the sins of omission, that is,\nexcluding portions of the collections or whole sections.  What about the\nimages?  PLD is full of images, some are extremely pious\nnineteenth-century representations of the Fathers, while others contain\nhighly interesting elements.  The goal was to cover all the text of Migne\n(including notes, in Greek and in Hebrew, the latter of which, in\nparticular, causes problems in creating a search structure), all the\nindices, and even the images, which are being scanned in separately\nsearchable files.\n\nSeveral North American institutions that have placed acquisition requests\nfor the PLD database have requested it in magnetic form without software,\nwhich means they are already running it without software, without\nanything demonstrated at the Workshop.\n\nWhat cannot practically be done is go back and reconvert and re-encode\ndata, a time-consuming and extremely costly enterprise.  CALALUCA sees\nPLD as a database that can, and should, be run under a variety of\nretrieval softwares.  This will permit the widest possible searches. \nConsequently, the need to produce a CD-ROM of PLD, as well as to develop\nsoftware that could handle some 1.3 gigabyte of heavily encoded text,\ndeveloped out of conversations with collection development and reference\nlibrarians who wanted software both compassionate enough for the\npedestrian but also capable of incorporating the most detailed\nlexicographical studies that a user desires to conduct.  In the end, the\nencoding and conversion of the data will prove the most enduring\ntestament to the value of the project.\n\nThe encoding of the database was also a hard-fought issue:  Did the\ndatabase need to be encoded? Were there normative structures for encoding\nhumanist texts?  Should it be SGML?  What about the TEI--will it last,\nwill it prove useful?  CALALUCA expressed some minor doubts as to whether\na data bank can be fully TEI-conformant.  Every effort can be made, but\nin the end to be TEI-conformant means to accept the need to make some\nfirm encoding decisions that can, indeed, be disputed.  The TEI points\nthe publisher in a proper direction but does not presume to make all the\ndecisions for him or her.  Essentially, the goal of encoding was to\neliminate, as much as possible, the hindrances to information-networking,\nso that if an institution acquires a database, everybody associated with\nthe institution can have access to it.\n\nCALALUCA demonstrated a portion of Volume 160, because it had the most\nanomalies in it.  The software was created by Electronic Book\nTechnologies of Providence, RI, and is called Dynatext.  The software\nworks only with SGML-coded data.\n\nViewing a table of contents on the screen, the audience saw how Dynatext\ntreats each element as a book and attempts to simplify movement through a\nvolume.  Familiarity with the Patrologia in print (i.e., the text, its\nsource, and the editions) will make the machine-readable versions highly\nuseful.  (Software with a Windows application was sought for PLD,\nCALALUCA said, because this was the main trend for scholarly use.)\n\nCALALUCA also demonstrated how a user can perform a variety of searches\nand quickly move to any part of a volume; the look-up screen provides\nsome basic, simple word-searching. \n\nCALALUCA argued that one of the major difficulties is not the software. \nRather, in creating a product that will be used by scholars representing\na broad spectrum of computer sophistication,  user documentation proves\nto be the most important service one can provide.\n\nCALALUCA next illustrated a truncated search under mysterium within ten\nwords of virtus and how one would be able to find its contents throughout\nthe entire database.  He said that the exciting thing about PLD is that\nmany of the applications in the retrieval software being written for it\nwill exceed the capabilities of the software employed now for the CD-ROM\nversion.  The CD-ROM faces genuine limitations, in terms of speed and\ncomprehensiveness, in the creation of a retrieval software to run it. \nCALALUCA said he hoped that individual scholars will download the data,\nif they wish, to their personal computers, and have ready access to\nimportant texts on a constant basis, which they will be able to use in\ntheir research and from which they might even be able to publish.\n\n(CALALUCA explained that the blue numbers represented Migne's column numbers,\nwhich are the standard scholarly references.  Pulling up a note, he stated\nthat these texts were heavily edited and the image files would appear simply\nas a note as well, so that one could quickly access an image.)\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nFLEISCHHAUER/ERWAY * Several problems with which AM is still wrestling *\nVarious search and retrieval capabilities * Illustration of automatic\nstemming and a truncated search * AM's attempt to find ways to connect\ncataloging to the texts * AM's gravitation towards SGML * Striking a\nbalance between quantity and quality * How AM furnishes users recourse to\nimages * Conducting a search in a full-text environment * Macintosh and\nIBM prototypes of AM * Multimedia aspects of AM *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nA demonstration of American Memory by its coordinator, Carl FLEISCHHAUER,\nand Ricky ERWAY, associate coordinator, Library of Congress, concluded\nthe morning session.  Beginning with a collection of broadsides from the\nContinental Congress and the Constitutional Convention, the only text\ncollection in a presentable form at the time of the Workshop, FLEISCHHAUER\nhighlighted several of the problems with which AM is still wrestling.\n(In its final form, the disk will contain two collections, not only the\nbroadsides but also the full text with illustrations of a set of\napproximately 300 African-American pamphlets from the period 1870 to 1910.)\n\nAs FREEMAN had explained earlier, AM has attempted to use a small amount\nof interpretation to introduce collections.  In the present case, the\ncontractor, a company named Quick Source, in Silver Spring, MD., used\nsoftware called Toolbook and put together a modestly interactive\nintroduction to the collection.  Like the two preceding speakers,\nFLEISCHHAUER argued that the real asset was the underlying collection.\n\nFLEISCHHAUER proceeded to describe various search and retrieval\ncapabilities while ERWAY worked the computer.  In this particular package\nthe \"go to\" pull-down allowed the user in effect to jump out of Toolbook,\nwhere the interactive program was located, and enter the third-party\nsoftware used by AM for this text collection, which is called Personal\nLibrarian.  This was the Windows version of Personal Librarian, a\nsoftware application put together by a company in Rockville, Md.\n\nSince the broadsides came from the Revolutionary War period, a search was\nconducted using the words British or war, with the default operator reset\nas or.  FLEISCHHAUER demonstrated both automatic stemming (which finds\nother forms of the same root) and a truncated search.  One of Personal\nLibrarian's strongest features, the relevance ranking, was represented by\na chart that indicated how often words being sought appeared in\ndocuments, with the one receiving the most \"hits\" obtaining the highest\nscore.  The \"hit list\" that is supplied takes the relevance ranking into\naccount, making the first hit, in effect, the one the software has\nselected as the most relevant example.\n\nWhile in the text of one of the broadside documents, FLEISCHHAUER\nremarked AM's attempt to find ways to connect cataloging to the texts,\nwhich it does in different ways in different manifestations.  In the case\nshown, the cataloging was pasted on:  AM took MARC records that were\nwritten as on-line records right into one of the Library's mainframe\nretrieval programs, pulled them out, and handed them off to the contractor,\nwho massaged them somewhat to display them in the manner shown.  One of\nAM's questions is, Does the cataloguing normally performed in the mainframe\nwork in this context, or had AM ought to think through adjustments?\n\nFLEISCHHAUER made the additional point that, as far as the text goes, AM\nhas gravitated towards SGML (he pointed to the boldface in the upper part\nof the screen).  Although extremely limited in its ability to translate\nor interpret SGML, Personal Librarian will furnish both bold and italics\non screen; a fairly easy thing to do, but it is one of the ways in which\nSGML is useful.\n\nStriking a balance between quantity and quality has been a major concern\nof AM, with accuracy being one of the places where project staff have\nfelt that less than 100-percent accuracy was not unacceptable. \nFLEISCHHAUER cited the example of the standard of the rekeying industry,\nnamely 99.95 percent; as one service bureau informed him, to go from\n99.95 to 100 percent would double the cost.\n\nFLEISCHHAUER next demonstrated how AM furnishes users recourse to images,\nand at the same time recalled LESK's pointed question concerning the\nnumber of people who would look at those images and the number who would\nwork only with the text.  If the implication of LESK's question was\nsound, FLEISCHHAUER said, it raised the stakes for text accuracy and\nreduced the value of the strategy for images.\n\nContending that preservation is always a bugaboo, FLEISCHHAUER\ndemonstrated several images derived from a scan of a preservation\nmicrofilm that AM had made.  He awarded a grade of C at best, perhaps a\nC minus or a C plus, for how well it worked out.  Indeed, the matter of\nlearning if other people had better ideas about scanning in general, and,\nin particular, scanning from microfilm, was one of the factors that drove\nAM to attempt to think through the agenda for the Workshop.  Skew, for\nexample, was one of the issues that AM in its ignorance had not reckoned\nwould prove so difficult.\n\nFurther, the handling of images of the sort shown, in a desktop computer\nenvironment, involved a considerable amount of zooming and scrolling. \nUltimately, AM staff feel that perhaps the paper copy that is printed out\nmight be the most useful one, but they remain uncertain as to how much\non-screen reading users will do.\n\nReturning to the text, FLEISCHHAUER asked viewers to imagine a person who\nmight be conducting a search in a full-text environment.  With this\nscenario, he proceeded to illustrate other features of Personal Librarian\nthat he considered helpful; for example, it provides the ability to\nnotice words as one reads.  Clicking the \"include\" button on the bottom\nof the search window pops the words that have been highlighted into the\nsearch.  Thus, a user can refine the search as he or she reads,\nre-executing the search and continuing to find things in the quest for\nmaterials.  This software not only contains relevance ranking, Boolean\noperators, and truncation, it also permits one to perform word algebra,\nso to say, where one puts two or three words in parentheses and links\nthem with one Boolean operator and then a couple of words in another set\nof parentheses and asks for things within so many words of others.\n\nUntil they became acquainted recently with some of the work being done in\nclassics, the AM staff had not realized that a large number of the\nprojects that involve electronic texts were being done by people with a\nprofound interest in language and linguistics.  Their search strategies\nand thinking are oriented to those fields, as is shown in particular by\nthe Perseus example.  As amateur historians, the AM staff were thinking\nmore of searching for concepts and ideas than for particular words. \nObviously, FLEISCHHAUER conceded, searching for concepts and ideas and\nsearching for words may be two rather closely related things.\n\nWhile displaying several images, FLEISCHHAUER observed that the Macintosh\nprototype built by AM contains a greater diversity of formats.  Echoing a\nprevious speaker, he said that it was easier to stitch things together in\nthe Macintosh, though it tended to be a little more anemic in search and\nretrieval.  AM, therefore, increasingly has been investigating\nsophisticated retrieval engines in the IBM format.\n\nFLEISCHHAUER demonstrated several additional examples of the prototype\ninterfaces:  One was AM's metaphor for the network future, in which a\nkind of reading-room graphic suggests how one would be able to go around\nto different materials.  AM contains a large number of photographs in\nanalog video form worked up from a videodisc, which enable users to make\ncopies to print or incorporate in digital documents.  A frame-grabber is\nbuilt into the system, making it possible to bring an image into a window\nand digitize or print it out.\n\nFLEISCHHAUER next demonstrated sound recording, which included texts. \nRecycled from a previous project, the collection included sixty 78-rpm\nphonograph records of political speeches that were made during and\nimmediately after World War I.  These constituted approximately three\nhours of audio, as AM has digitized it, which occupy 150 megabytes on a\nCD.  Thus, they are considerably compressed.  From the catalogue card,\nFLEISCHHAUER proceeded to a transcript of a speech with the audio\navailable and with highlighted text following it as it played.\nA photograph has been added and a transcription made.\n\nConsiderable value has been added beyond what the Library of Congress\nnormally would do in cataloguing a sound recording, which raises several\nquestions for AM concerning where to draw lines about how much value it can\nafford to add and at what point, perhaps, this becomes more than AM could\nreasonably do or reasonably wish to do.  FLEISCHHAUER also demonstrated\na motion picture.  As FREEMAN had reported earlier, the motion picture\nmaterials have proved the most popular, not surprisingly.  This says more\nabout the medium, he thought, than about AM's presentation of it.\n\nBecause AM's goal was to bring together things that could be used by\nhistorians or by people who were curious about history,\nturn-of-the-century footage seemed to represent the most appropriate\ncollections from the Library of Congress in motion pictures. These were\nthe very first films made by Thomas Edison's company and some others at\nthat time.  The particular example illustrated was a Biograph film,\nbrought in with a frame-grabber into a window.  A single videodisc\ncontains about fifty titles and pieces of film from that period, all of\nNew York City.  Taken together, AM believes, they provide an interesting\ndocumentary resource.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Using the frame-grabber in AM * Volume of material processed\nand to be processed * Purpose of AM within LC * Cataloguing and the\nnature of AM's material * SGML coding and the question of quality versus\nquantity *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the question-and-answer period that followed FLEISCHHAUER's\npresentation, several clarifications were made.\n\nAM is bringing in motion pictures from a videodisc.  The frame-grabber\ndevices create a window on a computer screen, which permits users to\ndigitize a single frame of the movie or one of the photographs.  It\nproduces a crude, rough-and-ready image that high school students can\nincorporate into papers, and that has worked very nicely in this way.\n\nCommenting on FLEISCHHAUER's assertion that AM was looking more at\nsearching ideas than words, MYLONAS argued that without words an idea\ndoes not exist.  FLEISCHHAUER conceded that he ought to have articulated\nhis point more clearly.  MYLONAS stated that they were in fact both\ntalking about the same thing.  By searching for words and by forcing\npeople to focus on the word, the Perseus Project felt that they would get\nthem to the idea.  The way one reviews results is tailored more to one\nkind of user than another.\n\nConcerning the total volume of material that has been processed in this\nway, AM at this point has in retrievable form seven or eight collections,\nall of them photographic.  In the Macintosh environment, for example,\nthere probably are 35,000-40,000 photographs.  The sound recordings\nnumber sixty items.  The broadsides number about 300 items.  There are\n500 political cartoons in the form of drawings.  The motion pictures, as\nindividual items, number sixty to seventy.\n\nAM also has a manuscript collection, the life history portion of one of\nthe federal project series, which will contain 2,900 individual\ndocuments, all first-person narratives.  AM has in process about 350\nAfrican-American pamphlets, or about 12,000 printed pages for the period\n1870-1910.  Also in the works are some 4,000 panoramic photographs.  AM\nhas recycled a fair amount of the work done by LC's Prints and\nPhotographs Division during the Library's optical disk pilot project in\nthe 1980s.  For example, a special division of LC has tooled up and\nthought through all the ramifications of electronic presentation of\nphotographs.  Indeed, they are wheeling them out in great barrel loads. \nThe purpose of AM within the Library, it is hoped, is to catalyze several\nof the other special collection divisions which have no particular\nexperience with, in some cases, mixed feelings about, an activity such as\nAM.  Moreover, in many cases the divisions may be characterized as not\nonly lacking experience in \"electronifying\" things but also in automated\ncataloguing.  MARC cataloguing as practiced in the United States is\nheavily weighted toward the description of monograph and serial\nmaterials, but is much thinner when one enters the world of manuscripts\nand things that are held in the Library's music collection and other\nunits.  In response to a comment by LESK, that AM's material is very\nheavily photographic, and is so primarily because individual records have\nbeen made for each photograph, FLEISCHHAUER observed that an item-level\ncatalog record exists, for example, for each photograph in the Detroit\nPublishing collection of 25,000 pictures.  In the case of the Federal\nWriters Project, for which nearly 3,000 documents exist, representing\ninformation from twenty-six different states, AM with the assistance of\nKaren STUART of the Manuscript Division will attempt to find some way not\nonly to have a collection-level record but perhaps a MARC record for each\nstate, which will then serve as an umbrella for the 100-200 documents\nthat come under it.  But that drama remains to be enacted.  The AM staff\nis conservative and clings to cataloguing, though of course visitors tout\nartificial intelligence and neural networks in a manner that suggests that\nperhaps one need not have cataloguing or that much of it could be put aside.\n\nThe matter of SGML coding, FLEISCHHAUER conceded, returned the discussion\nto the earlier treated question of quality versus quantity in the Library\nof Congress.  Of course, text conversion can be done with 100-percent\naccuracy, but it means that when one's holdings are as vast as LC's only\na tiny amount will be exposed, whereas permitting lower levels of\naccuracy can lead to exposing or sharing larger amounts, but with the\nquality correspondingly impaired.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nTWOHIG * A contrary experience concerning electronic options * Volume of\nmaterial in the Washington papers and a suggestion of David Packard *\nImplications of Packard's suggestion * Transcribing the documents for the\nCD-ROM * Accuracy of transcriptions * The CD-ROM edition of the Founding\nFathers documents *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nFinding encouragement in a comment of MICHELSON's from the morning\nsession--that numerous people in the humanities were choosing electronic\noptions to do their work--Dorothy TWOHIG, editor, The Papers of George\nWashington, opened her illustrated talk by noting that her experience\nwith literary scholars and numerous people in editing was contrary to\nMICHELSON's.  TWOHIG emphasized literary scholars' complete ignorance of\nthe technological options available to them or their reluctance or, in\nsome cases, their downright hostility toward these options.\n\nAfter providing an overview of the five Founding Fathers projects\n(Jefferson at Princeton, Franklin at Yale, John Adams at the\nMassachusetts Historical Society, and Madison down the hall from her at\nthe University of Virginia), TWOHIG observed that the Washington papers,\nlike all of the projects, include both sides of the Washington\ncorrespondence and deal with some 135,000 documents to be published with\nextensive annotation in eighty to eighty-five volumes, a project that\nwill not be completed until well into the next century.  Thus, it was\nwith considerable enthusiasm several years ago that the Washington Papers\nProject (WPP) greeted David Packard's suggestion that the papers of the\nFounding Fathers could be published easily and inexpensively, and to the\ngreat benefit of American scholarship, via CD-ROM.\n\nIn pragmatic terms, funding from the Packard Foundation would expedite\nthe transcription of thousands of documents waiting to be put on disk in\nthe WPP offices.  Further, since the costs of collecting, editing, and\nconverting the Founding Fathers documents into letterpress editions were\nrunning into the millions of dollars, and the considerable staffs\ninvolved in all of these projects were devoting their careers to\nproducing the work, the Packard Foundation's suggestion had a\nrevolutionary aspect:  Transcriptions of the entire corpus of the\nFounding Fathers papers would be available on CD-ROM to public and\ncollege libraries, even high schools, at a fraction of the cost--\n$100-$150 for the annual license fee--to produce a limited university\npress run of 1,000 of each volume of the published papers at $45-$150 per\nprinted volume.  Given the current budget crunch in educational systems\nand the corresponding constraints on librarians in smaller institutions\nwho wish to add these volumes to their collections, producing the\ndocuments on CD-ROM would likely open a greatly expanded audience for the\npapers.  TWOHIG stressed, however, that development of the Founding\nFathers CD-ROM is still in its infancy.  Serious software problems remain\nto be resolved before the material can be put into readable form.  \n\nFunding from the Packard Foundation resulted in a major push to\ntranscribe the 75,000 or so documents of the Washington papers remaining\nto be transcribed onto computer disks.  Slides illustrated several of the\nproblems encountered, for example, the present inability of CD-ROM to\nindicate the cross-outs (deleted material) in eighteenth century\ndocuments.  TWOHIG next described documents from various periods in the\neighteenth century that have been transcribed in chronological order and\ndelivered to the Packard offices in California, where they are converted\nto the CD-ROM, a process that is expected to consume five years to\ncomplete (that is, reckoning from David Packard's suggestion made several\nyears ago, until about July 1994).  TWOHIG found an encouraging\nindication of the project's benefits in the ongoing use made by scholars\nof the search functions of the CD-ROM, particularly in reducing the time\nspent in manually turning the pages of the Washington papers.\n\nTWOHIG next furnished details concerning the accuracy of transcriptions. \nFor instance, the insertion of thousands of documents on the CD-ROM\ncurrently does not permit each document to be verified against the\noriginal manuscript several times as in the case of documents that appear\nin the published edition.  However, the transcriptions receive a cursory\ncheck for obvious typos, the misspellings of proper names, and other\nerrors from the WPP CD-ROM editor.  Eventually, all documents that appear\nin the electronic version will be checked by project editors.  Although\nthis process has met with opposition from some of the editors on the\ngrounds that imperfect work may leave their offices, the advantages in\nmaking this material available as a research tool outweigh  fears about the\nmisspelling of proper names and other relatively minor editorial matters.\n\nCompletion of all five Founding Fathers projects (i.e., retrievability\nand searchability of all of the documents by proper names, alternate\nspellings, or varieties of subjects) will provide one of the richest\nsources of this size for the history of the United States in the latter\npart of the eighteenth century.  Further, publication on CD-ROM will\nallow editors to include even minutiae, such as laundry lists, not\nincluded in the printed volumes.\n\nIt seems possible that the extensive annotation provided in the printed\nvolumes eventually will be added to the CD-ROM edition, pending\nnegotiations with the publishers of the papers.  At the moment, the\nFounding Fathers CD-ROM is accessible only on the IBYCUS, a computer\ndeveloped out of the Thesaurus Linguae Graecae project and designed for\nthe use of classical scholars.  There are perhaps 400 IBYCUS computers in\nthe country, most of which are in university classics departments. \nUltimately, it is anticipated that the CD-ROM edition of the Founding\nFathers documents will run on any IBM-compatible or Macintosh computer\nwith a CD-ROM drive.  Numerous changes in the software will also occur\nbefore the project is completed.  (Editor's note: an IBYCUS was\nunavailable to demonstrate the CD-ROM.)\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Several additional features of WPP clarified *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDiscussion following TWOHIG's presentation served to clarify several\nadditional features, including (1) that the project's primary\nintellectual product consists in the electronic transcription of the\nmaterial; (2) that the text transmitted to the CD-ROM people is not\nmarked up; (3) that cataloging and subject-indexing of the material\nremain to be worked out (though at this point material can be retrieved\nby name); and (4) that because all the searching is done in the hardware,\nthe IBYCUS is designed to read a CD-ROM which contains only sequential\ntext files.  Technically, it then becomes very easy to read the material\noff and put it on another device.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nLEBRON * Overview of the history of the joint project between AAAS and\nOCLC * Several practices the on-line environment shares with traditional\npublishing on hard copy * Several technical and behavioral barriers to\nelectronic publishing * How AAAS and OCLC arrived at the subject of\nclinical trials * Advantages of the electronic format and other features\nof OJCCT * An illustrated tour of the journal *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nMaria LEBRON, managing editor, The Online Journal of Current Clinical\nTrials (OJCCT), presented an illustrated overview of the history of the\njoint project between the American Association for the Advancement of\nScience (AAAS) and the Online Computer Library Center, Inc. (OCLC).  The\njoint venture between AAAS and OCLC owes its beginning to a\nreorganization launched by the new chief executive officer at OCLC about\nthree years ago and combines the strengths of these two disparate\norganizations.  In short, OJCCT represents the process of scholarly\npublishing on line.\n\nLEBRON next discussed several practices the on-line environment shares\nwith traditional publishing on hard copy--for example, peer review of\nmanuscripts--that are highly important in the academic world.  LEBRON\nnoted in particular the implications of citation counts for tenure\ncommittees and grants committees.  In the traditional hard-copy\nenvironment, citation counts are readily demonstrable, whereas the\non-line environment represents an ethereal medium to most academics.\n\nLEBRON remarked several technical and behavioral barriers to electronic\npublishing, for instance, the problems in transmission created by special\ncharacters or by complex graphics and halftones.  In addition, she noted\neconomic limitations such as the storage costs of maintaining back issues\nand market or audience education.\n\nManuscripts cannot be uploaded to OJCCT, LEBRON explained, because it is\nnot a bulletin board or E-mail, forms of electronic transmission of\ninformation that have created an ambience clouding people's understanding\nof what the journal is attempting to do.  OJCCT, which publishes\npeer-reviewed medical articles dealing with the subject of clinical\ntrials, includes text, tabular material, and graphics, although at this\ntime it can transmit only line illustrations.\n\nNext, LEBRON described how AAAS and OCLC arrived at the subject of\nclinical trials:  It is 1) a highly statistical discipline that 2) does\nnot require halftones but can satisfy the needs of its audience with line\nillustrations and graphic material, and 3) there is a need for the speedy\ndissemination of high-quality research results.  Clinical trials are\nresearch activities that involve the administration of a test treatment\nto some experimental unit in order to test its usefulness before it is\nmade available to the general population.  LEBRON proceeded to give\nadditional information on OJCCT concerning its editor-in-chief, editorial\nboard, editorial content, and the types of articles it publishes\n(including peer-reviewed research reports and reviews), as well as\nfeatures shared by other traditional hard-copy journals.\n\nAmong the advantages of the electronic format are faster dissemination of\ninformation, including raw data, and the absence of space constraints\nbecause pages do not exist.  (This latter fact creates an interesting\nsituation when it comes to citations.)  Nor are there any issues.  AAAS's\ncapacity to download materials directly from the journal to a\nsubscriber's printer, hard drive, or floppy disk helps ensure highly\naccurate transcription.  Other features of OJCCT include on-screen alerts\nthat allow linkage of subsequently published documents to the original\ndocuments; on-line searching by subject, author, title, etc.; indexing of\nevery single word that appears in an article; viewing access to an\narticle by component (abstract, full text, or graphs); numbered\nparagraphs to replace page counts; publication in Science every thirty\ndays of indexing of all articles published in the journal;\ntypeset-quality screens; and Hypertext links that enable subscribers to\nbring up Medline abstracts directly without leaving the journal.\n\nAfter detailing the two primary ways to gain access to the journal,\nthrough the OCLC network and Compuserv if one desires graphics or through\nthe Internet if just an ASCII file is desired, LEBRON illustrated the\nspeedy editorial process and the coding of the document using SGML tags\nafter it has been accepted for publication.  She also gave an illustrated\ntour of the journal, its search-and-retrieval capabilities in particular,\nbut also including problems associated with scanning in illustrations,\nand the importance of on-screen alerts to the medical profession re\nretractions or corrections, or more frequently, editorials, letters to\nthe editors, or follow-up reports.  She closed by inviting the audience\nto join AAAS on 1 July, when OJCCT was scheduled to go on-line.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Additional features of OJCCT *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nIn the lengthy discussion that followed LEBRON's presentation, these\npoints emerged:\n\n     * The SGML text can be tailored as users wish.\n\n     * All these articles have a fairly simple document definition.\n\n     * Document-type definitions (DTDs) were developed and given to OJCCT\n     for coding.\n\n     * No articles will be removed from the journal.  (Because there are\n     no back issues, there are no lost issues either.  Once a subscriber\n     logs onto the journal he or she has access not only to the currently\n     published materials, but retrospectively to everything that has been\n     published in it.  Thus the table of contents grows bigger.  The date\n     of publication serves to distinguish between currently published\n     materials and older materials.)\n\n     * The pricing system for the journal resembles that for most medical\n     journals:  for 1992, $95 for a year, plus telecommunications charges\n     (there are no connect time charges);    for 1993, $110 for the\n     entire year for single users, though the journal can be put on a\n     local area network (LAN).  However, only one person can access the\n     journal at a time.  Site licenses may come in the future.\n\n     * AAAS is working closely with colleagues at OCLC to display\n     mathematical equations on screen.\n\n     * Without compromising any steps in the editorial process, the\n     technology has reduced the time lag between when a manuscript is\n     originally submitted and the time it is accepted; the review process\n     does not differ greatly from the standard six-to-eight weeks\n     employed by many of the hard-copy journals.  The process still\n     depends on people.\n\n     * As far as a preservation copy is concerned, articles will be\n     maintained on the computer permanently and subscribers, as part of\n     their subscription, will receive a microfiche-quality archival copy\n     of everything published during that year; in addition, reprints can\n     be purchased in much the same way as in a hard-copy environment. \n     Hard copies are prepared but are not the primary medium for the\n     dissemination of the information.\n\n     * Because OJCCT is not yet on line, it is difficult to know how many\n     people would simply browse through the journal on the screen as\n     opposed to downloading the whole thing and printing it out; a mix of\n     both types of users likely will result.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nPERSONIUS * Developments in technology over the past decade * The CLASS\nProject * Advantages for technology and for the CLASS Project *\nDeveloping a network application an underlying assumption of the project\n* Details of the scanning process * Print-on-demand copies of books *\nFuture plans include development of a browsing tool *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nLynne PERSONIUS, assistant director, Cornell Information Technologies for\nScholarly Information Services, Cornell University, first commented on\nthe tremendous impact that developments in technology over the past ten\nyears--networking, in particular--have had on the way information is\nhandled, and how, in her own case, these developments have counterbalanced\nCornell's relative geographical isolation.  Other significant technologies\ninclude scanners, which are much more sophisticated than they were ten years\nago; mass storage and the dramatic savings that result from it in terms of\nboth space and money relative to twenty or thirty years ago; new and\nimproved printing technologies, which have greatly affected the distribution\nof information; and, of course, digital technologies, whose applicability to\nlibrary preservation remains at issue.\n\nGiven that context, PERSONIUS described the College Library Access and\nStorage System (CLASS) Project, a library preservation project,\nprimarily, and what has been accomplished.  Directly funded by the\nCommission on Preservation and Access and by the Xerox Corporation, which\nhas provided a significant amount of hardware, the CLASS Project has been\nworking with a development team at Xerox to develop a software\napplication tailored to library preservation requirements.  Within\nCornell, participants in the project have been working jointly with both\nlibrary and information technologies.  The focus of the project has been\non reformatting and saving books that are in brittle condition. \nPERSONIUS showed Workshop participants a brittle book, and described how\nsuch books were the result of developments in papermaking around the\nbeginning of the Industrial Revolution.  The papermaking process was\nchanged so that a significant amount of acid was introduced into the\nactual paper itself, which deteriorates as it sits on library shelves.\n\nOne of the advantages for technology and for the CLASS Project is that\nthe information in brittle books is mostly out of copyright and thus\noffers an opportunity to work with material that requires library\npreservation, and to create and work on an infrastructure to save the\nmaterial.  Acknowledging the familiarity of those working in preservation\nwith this information, PERSONIUS noted that several things are being\ndone:  the primary preservation technology used today is photocopying of\nbrittle material.  Saving the intellectual content of the material is the\nmain goal.  With microfilm copy, the intellectual content is preserved on\nthe assumption that in the future the image can be reformatted in any\nother way that then exists.\n\nAn underlying assumption of the CLASS Project from the beginning was\nthat it would develop a network application.  Project staff scan books\nat a workstation located in the library, near the brittle material.\nAn image-server filing system is located at a distance from that\nworkstation, and a printer is located in another building.  All of the\nmaterials digitized and stored on the image-filing system are cataloged\nin the on-line catalogue.  In fact, a record for each of these electronic\nbooks is stored in the RLIN database so that a record exists of what is\nin the digital library throughout standard catalogue procedures.  In the\nfuture, researchers working from their own workstations in their offices,\nor their networks, will have access--wherever they might be--through a\nrequest server being built into the new digital library.  A second\nassumption is that the preferred means of finding the material will be by\nlooking through a catalogue.  PERSONIUS described the scanning process,\nwhich uses a prototype scanner being developed by Xerox and which scans a\nvery high resolution image at great speed.  Another significant feature,\nbecause this is a preservation application, is the placing of the pages\nthat fall apart one for one on the platen.  Ordinarily, a scanner could\nbe used with some sort of a document feeder, but because of this\napplication that is not feasible.  Further, because CLASS is a\npreservation application, after the paper replacement is made there, a\nvery careful quality control check is performed.  An original book is\ncompared to the printed copy and verification is made, before proceeding,\nthat all of the image, all of the information, has been captured.  Then,\na new library book is produced:  The printed images are rebound by a\ncommercial binder and a new book is returned to the shelf. \nSignificantly, the books returned to the library shelves are beautiful\nand useful replacements on acid-free paper that should last a long time,\nin effect, the equivalent of preservation photocopies.  Thus, the project\nhas a library of digital books.  In essence, CLASS is scanning and\nstoring books as 600 dot-per-inch bit-mapped images, compressed using\nGroup 4 CCITT (i.e., the French acronym for International Consultative\nCommittee for Telegraph and Telephone) compression.  They are stored as\nTIFF files on an optical filing system that is composed of a database\nused for searching and locating the books and an optical jukebox that\nstores 64 twelve-inch platters.  A very-high-resolution printed copy of\nthese books at 600 dots per inch is created, using a Xerox DocuTech\nprinter to make the paper replacements on acid-free paper.\n\nPERSONIUS maintained that the CLASS Project presents an opportunity to\nintroduce people to books as digital images by using a paper medium. \nBooks are returned to the shelves while people are also given the ability\nto print on demand--to make their own copies of books.  (PERSONIUS\ndistributed copies of an engineering journal published by engineering\nstudents at Cornell around 1900 as an example of what a print-on-demand\ncopy of material might be like.  This very cheap copy would be available\nto people to use for their own research purposes and would bridge the gap\nbetween an electronic work and the paper that readers like to have.) \nPERSONIUS then attempted to illustrate a very early prototype of\nnetworked access to this digital library.  Xerox Corporation has\ndeveloped a prototype of a view station that can send images across the\nnetwork to be viewed.\n\nThe particular library brought down for demonstration contained two\nmathematics books.  CLASS is developing and will spend the next year\ndeveloping an application that allows people at workstations to browse\nthe books.  Thus, CLASS is developing a browsing tool, on the assumption\nthat users do not want to read an entire book from a workstation, but\nwould prefer to be able to look through and decide if they would like to\nhave a printed copy of it.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Re retrieval software * \"Digital file copyright\" * Scanning\nrate during production * Autosegmentation * Criteria employed in\nselecting books for scanning * Compression and decompression of images *\nOCR not precluded *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the question-and-answer period that followed her presentation,\nPERSONIUS made these additional points:\n\n     * Re retrieval software, Cornell is developing a Unix-based server\n     as well as clients for the server that support multiple platforms\n     (Macintosh, IBM and Sun workstations), in the hope that people from\n     any of those platforms will retrieve books; a further operating\n     assumption is that standard interfaces will be used as much as\n     possible, where standards can be put in place, because CLASS\n     considers this retrieval software a library application and would\n     like to be able to look at material not only at Cornell but at other\n     institutions.\n\n     * The phrase \"digital file copyright by Cornell University\" was\n     added at the advice of Cornell's legal staff with the caveat that it\n     probably would not hold up in court.  Cornell does not want people\n     to copy its books and sell them but would like to keep them\n     available for use in a library environment for library purposes.\n\n     * In production the scanner can scan about 300 pages per hour,\n     capturing 600 dots per inch.\n\n     * The Xerox software has filters to scan halftone material and avoid\n     the moire patterns that occur when halftone material is scanned. \n     Xerox has been working on hardware and software that would enable\n     the scanner itself to recognize this situation and deal with it\n     appropriately--a kind of autosegmentation that would enable the\n     scanner to handle halftone material as well as text on a single page.\n\n     * The books subjected to the elaborate process described above were\n     selected because CLASS is a preservation project, with the first 500\n     books selected coming from Cornell's mathematics collection, because\n     they were still being heavily used and because, although they were\n     in need of preservation, the mathematics library and the mathematics\n     faculty were uncomfortable having them microfilmed.  (They wanted a\n     printed copy.)  Thus, these books became a logical choice for this\n     project.  Other books were chosen by the project's selection committees\n     for experiments with the technology, as well as to meet a demand or need.\n\n     * Images will be decompressed before they are sent over the line; at\n     this time they are compressed and sent to the image filing system\n     and then sent to the printer as compressed images; they are returned\n     to the workstation as compressed 600-dpi images and the workstation\n     decompresses and scales them for display--an inefficient way to\n     access the material though it works quite well for printing and\n     other purposes.\n\n     * CLASS is also decompressing on Macintosh and IBM, a slow process\n     right now.  Eventually, compression and decompression will take\n     place on an image conversion server.  Trade-offs will be made, based\n     on future performance testing, concerning where the file is\n     compressed and what resolution image is sent.\n\n     * OCR has not been precluded; images are being stored that have been\n     scanned at a high resolution, which presumably would suit them well\n     to an OCR process.  Because the material being scanned is about 100\n     years old and was printed with less-than-ideal technologies, very\n     early and preliminary tests have not produced good results.  But the\n     project is capturing an image that is of sufficient resolution to be\n     subjected to OCR in the future.  Moreover, the system architecture\n     and the system plan have a logical place to store an OCR image if it\n     has been captured.  But that is not being done now.\n\n                                 ******\n\nSESSION III.  DISTRIBUTION, NETWORKS, AND NETWORKING:  OPTIONS FOR\nDISSEMINATION\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nZICH * Issues pertaining to CD-ROMs * Options for publishing in CD-ROM *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nRobert ZICH, special assistant to the associate librarian for special\nprojects, Library of Congress, and moderator of this session, first noted\nthe blessed but somewhat awkward circumstance of having four very\ndistinguished people representing networks and networking or at least\nleaning in that direction, while lacking anyone to speak from the\nstrongest possible background in CD-ROMs.  ZICH expressed the hope that\nmembers of the audience would join the discussion.  He stressed the\nsubtitle of this particular session, \"Options for Dissemination,\" and,\nconcerning CD-ROMs, the importance of determining when it would be wise\nto consider dissemination in CD-ROM versus networks.  A shopping list of\nissues pertaining to CD-ROMs included:  the grounds for selecting\ncommercial publishers, and in-house publication where possible versus\nnonprofit or government publication.  A similar list for networks\nincluded:  determining when one should consider dissemination through a\nnetwork, identifying the mechanisms or entities that exist to place items\non networks, identifying the pool of existing networks, determining how a\nproducer  would choose between networks, and identifying the elements of\na business arrangement in a network.\n\nOptions for publishing in CD-ROM:  an outside publisher versus\nself-publication.  If an outside publisher is used, it can be nonprofit,\nsuch as the Government Printing Office (GPO) or the National Technical\nInformation Service (NTIS), in the case of government.  The pros and cons\nassociated with employing an outside publisher are obvious.  Among the\npros, there is no trouble getting accepted.  One pays the bill and, in\neffect, goes one's way.  Among the cons, when one pays an outside\npublisher to perform the work, that publisher will perform the work it is\nobliged to do, but perhaps without the production expertise and skill in\nmarketing and dissemination that some would seek.  There is the body of\ncommercial publishers that do possess that kind of expertise in\ndistribution and marketing but that obviously are selective.  In\nself-publication, one exercises full control, but then one must handle\nmatters such as distribution and marketing.  Such are some of the options\nfor publishing in the case of CD-ROM.\n\nIn the case of technical and design issues, which are also important,\nthere are many matters which many at the Workshop already knew a good\ndeal about:  retrieval system requirements and costs, what to do about\nimages, the various capabilities and platforms, the trade-offs between\ncost and performance, concerns about local-area networkability,\ninteroperability, etc.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nLYNCH * Creating networked information is different from using networks\nas an access or dissemination vehicle * Networked multimedia on a large\nscale does not yet work * Typical CD-ROM publication model a two-edged\nsword * Publishing information on a CD-ROM in the present world of\nimmature standards * Contrast between CD-ROM and network pricing *\nExamples demonstrated earlier in the day as a set of insular information\ngems * Paramount need to link databases * Layering to become increasingly\nnecessary * Project NEEDS and the issues of information reuse and active\nversus passive use * X-Windows as a way of differentiating between\nnetwork access and networked information * Barriers to the distribution\nof networked multimedia information * Need for good, real-time delivery\nprotocols * The question of presentation integrity in client-server\ncomputing in the academic world * Recommendations for producing multimedia\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nClifford LYNCH, director, Library Automation, University of California,\nopened his talk with the general observation that networked information\nconstituted a difficult and elusive topic because it is something just\nstarting to develop and not yet fully understood.  LYNCH contended that\ncreating genuinely networked information was different from using\nnetworks as an access or dissemination vehicle and was more sophisticated\nand more subtle.  He invited the members of the audience to extrapolate,\nfrom what they heard about the preceding demonstration projects, to what\nsort of a world of electronics information--scholarly, archival,\ncultural, etc.--they wished to end up with ten or fifteen years from now. \nLYNCH suggested that to extrapolate directly from these projects would\nproduce unpleasant results.\n\nPutting the issue of CD-ROM in perspective before getting into\ngeneralities on networked information, LYNCH observed that those engaged\nin multimedia today who wish to ship a product, so to say, probably do\nnot have much choice except to use CD-ROM:  networked multimedia on a\nlarge scale basically does not yet work because the technology does not\nexist.  For example, anybody who has tried moving images around over the\nInternet knows that this is an exciting touch-and-go process, a\nfascinating and fertile area for experimentation, research, and\ndevelopment, but not something that one can become deeply enthusiastic\nabout committing to production systems at this time.\n\nThis situation will change, LYNCH said.  He differentiated CD-ROM from\nthe practices that have been followed up to now in distributing data on\nCD-ROM.  For LYNCH the problem with CD-ROM is not its portability or its\nslowness but the two-edged sword of having the retrieval application and\nthe user interface inextricably bound up with the data, which is the\ntypical CD-ROM publication model.  It is not a case of publishing data\nbut of distributing a typically stand-alone, typically closed system,\nall--software, user interface, and data--on a little disk.  Hence, all\nthe between-disk navigational issues as well as the impossibility in most\ncases of integrating data on one disk with that on another.  Most CD-ROM\nretrieval software does not network very gracefully at present.  However,\nin the present world of immature standards and lack of understanding of\nwhat network information is or what the ground rules are for creating or\nusing it, publishing information on a CD-ROM does add value in a very\nreal sense.\n\nLYNCH drew a contrast between CD-ROM and network pricing and in doing so\nhighlighted something bizarre in information pricing.  A large\ninstitution such as the University of California has vendors who will\noffer to sell information on CD-ROM for a price per year in four digits,\nbut for the same data (e.g., an abstracting and indexing database) on\nmagnetic tape, regardless of how many people may use it concurrently,\nwill quote a price in six digits.\n\nWhat is packaged with the CD-ROM in one sense adds value--a complete\naccess system, not just raw, unrefined information--although it is not\ngenerally perceived that way.  This is because the access software,\nalthough it adds value, is viewed by some people, particularly in the\nuniversity environment where there is a very heavy commitment to\nnetworking, as being developed in the wrong direction.\n\nGiven that context, LYNCH described the examples demonstrated as a set of\ninsular information gems--Perseus, for example, offers nicely linked\ninformation, but would be very difficult to integrate with other\ndatabases, that is, to link together seamlessly with other source files\nfrom other sources.  It resembles an island, and in this respect is\nsimilar to numerous stand-alone projects that are based on videodiscs,\nthat is, on the single-workstation concept.\n\nAs scholarship evolves in a network environment, the paramount need will\nbe to link databases.  We must link personal databases to public\ndatabases, to group databases, in fairly seamless ways--which is\nextremely difficult in the environments under discussion with copies of\ndatabases proliferating all over the place.\n\nThe notion of layering also struck LYNCH as lurking in several of the\nprojects demonstrated.  Several databases in a sense constitute\ninformation archives without a significant amount of navigation built in. \nEducators, critics, and others will want a layered structure--one that\ndefines or links paths through the layers to allow users to reach\nspecific points.  In LYNCH's view, layering will become increasingly\nnecessary, and not just within a single resource but across resources\n(e.g., tracing mythology and cultural themes across several classics\ndatabases as well as a database of Renaissance culture).  This ability to\norganize resources, to build things out of multiple other things on the\nnetwork or select pieces of it, represented for LYNCH one of the key\naspects of network information.\n\nContending that information reuse constituted another significant issue,\nLYNCH commended to the audience's attention Project NEEDS (i.e., National\nEngineering Education Delivery System).  This project's objective is to\nproduce a database of engineering courseware as well as the components\nthat can be used to develop new courseware.  In a number of the existing\napplications, LYNCH said, the issue of reuse (how much one can take apart\nand reuse in other applications) was not being well considered.  He also\nraised the issue of active versus passive use, one aspect of which  is\nhow much information will be manipulated locally by users.  Most people,\nhe argued, may do a little browsing and then will wish to print.  LYNCH\nwas uncertain how these resources would be used by the vast majority of\nusers in the network environment.\n\nLYNCH next said a few words about X-Windows as a way of differentiating\nbetween network access and networked information.  A number of the\napplications demonstrated at the Workshop could be rewritten to use X\nacross the network, so that one could run them from any X-capable device-\n-a workstation, an X terminal--and transact with a database across the\nnetwork.  Although this opens up access a little, assuming one has enough\nnetwork to handle it, it does not provide an interface to develop a\nprogram that conveniently integrates information from multiple databases. \nX is a viewing technology that has limits.  In a real sense, it is just a\ngraphical version of remote log-in across the network.  X-type applications\nrepresent only one step in the progression towards real access.\n\nLYNCH next discussed barriers to the distribution of networked multimedia\ninformation.  The heart of the problem is a lack of standards to provide\nthe ability for computers to talk to each other, retrieve information,\nand shuffle it around fairly casually.  At the moment, little progress is\nbeing made on standards for networked information; for example, present\nstandards do not cover images, digital voice, and digital video.  A\nuseful tool kit of exchange formats for basic texts is only now being\nassembled.  The synchronization of content streams (i.e., synchronizing a\nvoice track to a video track, establishing temporal relations between\ndifferent components in a multimedia object) constitutes another issue\nfor networked multimedia that is just beginning to receive attention.\n\nUnderlying network protocols also need some work; good, real-time\ndelivery protocols on the Internet do not yet exist.  In LYNCH's view,\nhighly important in this context is the notion of networked digital\nobject IDs, the ability of one object on the network to point to another\nobject (or component thereof) on the network.  Serious bandwidth issues\nalso exist.  LYNCH was uncertain if billion-bit-per-second networks would\nprove sufficient if numerous people ran video in parallel.\n\nLYNCH concluded by offering an issue for database creators to consider,\nas well as several comments about what might constitute good trial\nmultimedia experiments.  In a networked information world the database\nbuilder or service builder (publisher) does not exercise the same\nextensive control over the integrity of the presentation; strange\nprograms \"munge\" with one's data before the user sees it.  Serious\nthought must be given to what guarantees integrity of presentation.  Part\nof that is related to where one draws the boundaries around a networked\ninformation service.  This question of presentation integrity in\nclient-server computing has not been stressed enough in the academic\nworld, LYNCH argued, though commercial service providers deal with it\nregularly.\n\nConcerning multimedia, LYNCH observed that good multimedia at the moment\nis hideously expensive to produce.  He recommended producing multimedia\nwith either very high sale value, or multimedia with a very long life\nspan, or multimedia that will have a very broad usage base and whose\ncosts therefore can be amortized among large numbers of users.  In this\nconnection, historical and humanistically oriented material may be a good\nplace to start, because it tends to have a longer life span than much of\nthe scientific material, as well as a wider user base.  LYNCH noted, for\nexample, that American Memory fits many of the criteria outlined.  He\nremarked the extensive discussion about bringing the Internet or the\nNational Research and Education Network (NREN) into the K-12 environment\nas a way of helping the American educational system.\n\nLYNCH closed by noting that the kinds of applications demonstrated struck\nhim as excellent justifications of broad-scale networking for K-12, but\nthat at this time no \"killer\" application exists to mobilize the K-12\ncommunity to obtain connectivity.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Dearth of genuinely interesting applications on the network\na slow-changing situation * The issue of the integrity of presentation in\na networked environment * Several reasons why CD-ROM software does not\nnetwork *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the discussion period that followed LYNCH's presentation, several\nadditional points were made.\n\nLYNCH reiterated even more strongly his contention that, historically,\nonce one goes outside high-end science and the group of those who need\naccess to supercomputers, there is a great dearth of genuinely\ninteresting applications on the network.  He saw this situation changing\nslowly, with some of the scientific databases and scholarly discussion\ngroups and electronic journals coming on as well as with the availability\nof Wide Area Information Servers (WAIS) and some of the databases that\nare being mounted there.  However, many of those things do not seem to\nhave piqued great popular interest.  For instance, most high school\nstudents of LYNCH's acquaintance would not qualify as devotees of serious\nmolecular biology.\n\nConcerning the issue of the integrity of presentation, LYNCH believed\nthat a couple of information providers have laid down the law at least on\ncertain things.  For example, his recollection was that the National\nLibrary of Medicine feels strongly that one needs to employ the\nidentifier field if he or she is to mount a database commercially.  The\nproblem with a real networked environment is that one does not know who\nis reformatting and reprocessing one's data when one enters a client\nserver mode.  It becomes anybody's guess, for example, if the network\nuses a Z39.50 server, or what clients are doing with one's data.  A data\nprovider can say that his contract will only permit clients to have\naccess to his data after he vets them and their presentation and makes\ncertain it suits him.  But LYNCH held out little expectation that the\nnetwork marketplace would evolve in that way, because it required too\nmuch prior negotiation.\n\nCD-ROM software does not network for a variety of reasons, LYNCH said. \nHe speculated that CD-ROM publishers are not eager to have their products\nreally hook into wide area networks, because they fear it will make their\ndata suppliers nervous.  Moreover, until relatively recently, one had to\nbe rather adroit to run a full TCP/IP stack plus applications on a\nPC-size machine, whereas nowadays it is becoming easier as PCs grow\nbigger and faster.  LYNCH also speculated that software providers had not\nheard from their customers until the last year or so, or had not heard\nfrom enough of their customers.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nBESSER * Implications of disseminating images on the network; planning\nthe distribution of multimedia documents poses two critical\nimplementation problems * Layered approach represents the way to deal\nwith users' capabilities * Problems in platform design; file size and its\nimplications for networking * Transmission of megabyte size images\nimpractical * Compression and decompression at the user's end * Promising\ntrends for compression * A disadvantage of using X-Windows * A project at\nthe Smithsonian that mounts images on several networks *  \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nHoward BESSER, School of Library and Information Science, University of\nPittsburgh, spoke primarily about multimedia, focusing on images and the\nbroad implications of disseminating them on the network.  He argued that\nplanning the distribution of multimedia documents posed two critical\nimplementation problems, which he framed in the form of two questions: \n1) What platform will one use and what hardware and software will users\nhave for viewing of the material?  and 2) How can one deliver a\nsufficiently robust set of information in an accessible format in a\nreasonable amount of time?  Depending on whether network or CD-ROM is the\nmedium used, this question raises different issues of storage,\ncompression, and transmission.\n\nConcerning the design of platforms (e.g., sound, gray scale, simple\ncolor, etc.) and the various capabilities users may have, BESSER\nmaintained that a layered approach was the way to deal with users'\ncapabilities.  A result would be that users with less powerful\nworkstations would simply have less functionality.  He urged members of\nthe audience to advocate standards and accompanying software that handle\nlayered functionality across a wide variety of platforms.\n\nBESSER also addressed problems in platform design, namely, deciding how\nlarge a machine to design for situations when the largest number of users\nhave the lowest level of the machine, and one desires higher\nfunctionality.  BESSER then proceeded to the question of file size and\nits implications for networking.  He discussed still images in the main. \nFor example, a digital color image that fills the screen of a standard\nmega-pel workstation (Sun or Next) will require one megabyte of storage\nfor an eight-bit image or three megabytes of storage for a true color or\ntwenty-four-bit image.  Lossless compression algorithms (that is,\ncomputational procedures in which no data is lost in the process of\ncompressing [and decompressing] an image--the exact bit-representation is\nmaintained) might bring storage down to a third of a megabyte per image,\nbut not much further than that.  The question of size makes it difficult\nto fit an appropriately sized set of these images on a single disk or to\ntransmit them quickly enough on a network.\n\nWith these full screen mega-pel images that constitute a third of a\nmegabyte, one gets 1,000-3,000 full-screen images on a one-gigabyte disk;\na standard CD-ROM represents approximately 60 percent of that.  Storing\nimages the size of a PC screen (just 8 bit color) increases storage\ncapacity to 4,000-12,000 images per gigabyte; 60 percent of that gives\none the size of a CD-ROM, which in turn creates a major problem.  One\ncannot have full-screen, full-color images with lossless compression; one\nmust compress them or use a lower resolution.  For megabyte-size images,\nanything slower than a T-1 speed is impractical.  For example, on a\nfifty-six-kilobaud line, it takes three minutes to transfer a\none-megabyte file, if it is not compressed; and this speed assumes ideal\ncircumstances (no other user contending for network bandwidth).  Thus,\nquestions of disk access, remote display, and current telephone\nconnection speed make transmission of megabyte-size images impractical.\n\nBESSER then discussed ways to deal with these large images, for example,\ncompression and decompression at the user's end.  In this connection, the\nissues of how much one is willing to lose in the compression process and\nwhat image quality one needs in the first place are unknown.  But what is\nknown is that compression entails some loss of data.  BESSER urged that\nmore studies be conducted on image quality in different situations, for\nexample, what kind of images are needed for what kind of disciplines, and\nwhat kind of image quality is needed for a browsing tool, an intermediate\nviewing tool, and archiving.\n\nBESSER remarked two promising trends for compression:  from a technical\nperspective, algorithms that use what is called subjective redundancy\nemploy principles from visual psycho-physics to identify and remove\ninformation from the image that the human eye cannot perceive; from an\ninterchange and interoperability perspective, the JPEG (i.e., Joint\nPhotographic Experts Group, an ISO standard) compression algorithms also\noffer promise.  These issues of compression and decompression, BESSER\nargued, resembled those raised earlier concerning the design of different\nplatforms.  Gauging the capabilities of potential users constitutes a\nprimary goal.  BESSER advocated layering or separating the images from\nthe applications that retrieve and display them, to avoid tying them to\nparticular software.\n\nBESSER detailed several lessons learned from his work at Berkeley with\nImagequery, especially the advantages and disadvantages of using\nX-Windows.  In the latter category, for example, retrieval is tied\ndirectly to one's data, an intolerable situation in the long run on a\nnetworked system.  Finally, BESSER described a project of Jim Wallace at\nthe Smithsonian Institution, who is mounting images in a extremely\nrudimentary way on the Compuserv and Genie networks and is preparing to\nmount them on America On Line.  Although the average user takes over\nthirty minutes to download these images (assuming a fairly fast modem),\nnevertheless, images have been downloaded 25,000 times.\n\nBESSER concluded his talk with several comments on the business\narrangement between the Smithsonian and Compuserv.  He contended that not\nenough is known concerning the value of images.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Creating digitized photographic collections nearly\nimpossible except with large organizations like museums * Need for study\nto determine quality of images users will tolerate *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the brief exchange between LESK and BESSER that followed, several\nclarifications emerged.\n\nLESK argued that the photographers were far ahead of BESSER:  It is\nalmost impossible to create such digitized photographic collections\nexcept with large organizations like museums, because all the\nphotographic agencies have been going crazy about this and will not sign\nlicensing agreements on any sort of reasonable terms.  LESK had heard\nthat National Geographic, for example, had tried to buy the right to use\nsome image in some kind of educational production for $100 per image, but\nthe photographers will not touch it.  They want accounting and payment\nfor each use, which cannot be accomplished within the system.  BESSER\nresponded that a consortium of photographers, headed by a former National\nGeographic photographer, had started assembling its own collection of\nelectronic reproductions of images, with the money going back to the\ncooperative.\n\nLESK contended that BESSER was unnecessarily pessimistic about multimedia\nimages, because people are accustomed to low-quality images, particularly\nfrom video.  BESSER urged the launching of a study to determine what\nusers would tolerate, what they would feel comfortable with, and what\nabsolutely is the highest quality they would ever need.  Conceding that\nhe had adopted a dire tone in order to arouse people about the issue,\nBESSER closed on a sanguine note by saying that he would not be in this\nbusiness if he did not think that things could be accomplished.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nLARSEN * Issues of scalability and modularity * Geometric growth of the\nInternet and the role played by layering * Basic functions sustaining\nthis growth * A library's roles and functions in a network environment *\nEffects of implementation of the Z39.50 protocol for information\nretrieval on the library system * The trade-off between volumes of data\nand its potential usage * A snapshot of current trends *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nRonald LARSEN, associate director for information technology, University\nof Maryland at College Park, first addressed the issues of scalability\nand modularity.  He noted the difficulty of anticipating the effects of\norders-of-magnitude growth, reflecting on the twenty years of experience\nwith the Arpanet and Internet.  Recalling the day's demonstrations of\nCD-ROM and optical disk material, he went on to ask if the field has yet\nlearned how to scale new systems to enable delivery and dissemination\nacross large-scale networks.\n\nLARSEN focused on the geometric growth of the Internet from its inception\ncirca 1969 to the present, and the adjustments required to respond to\nthat rapid growth.  To illustrate the issue of scalability, LARSEN\nconsidered computer networks as including three generic components: \ncomputers, network communication nodes, and communication media.  Each\ncomponent scales (e.g., computers range from PCs to supercomputers;\nnetwork nodes scale from interface cards in a PC through sophisticated\nrouters and gateways; and communication media range from 2,400-baud\ndial-up facilities through 4.5-Mbps backbone links, and eventually to\nmultigigabit-per-second communication lines), and architecturally, the\ncomponents are organized to scale hierarchically from local area networks\nto international-scale networks.  Such growth is made possible by\nbuilding layers of communication protocols, as BESSER pointed out.\nBy layering both physically and logically, a sense of scalability is\nmaintained from local area networks in offices, across campuses, through\nbridges, routers, campus backbones, fiber-optic links, etc., up into\nregional networks and ultimately into national and international\nnetworks.\n\nLARSEN then illustrated the geometric growth over a two-year period--\nthrough September 1991--of the number of networks that comprise the\nInternet.  This growth has been sustained largely by the availability of\nthree basic functions:  electronic mail, file transfer (ftp), and remote\nlog-on (telnet).  LARSEN also reviewed the growth in the kind of traffic\nthat occurs on the network.  Network traffic reflects the joint contributions\nof a larger population of users and increasing use per user.  Today one sees\nserious applications involving moving images across the network--a rarity\nten years ago.  LARSEN recalled and concurred with BESSER's main point\nthat the interesting problems occur at the application level.\n\nLARSEN then illustrated a model of a library's roles and functions in a\nnetwork environment.  He noted, in particular, the placement of on-line\ncatalogues onto the network and patrons obtaining access to the library\nincreasingly through local networks, campus networks, and the Internet. \nLARSEN supported LYNCH's earlier suggestion that we need to address\nfundamental questions of networked information in order to build\nenvironments that scale in the information sense as well as in the\nphysical sense.\n\nLARSEN supported the role of the library system as the access point into\nthe nation's electronic collections.  Implementation of the Z39.50\nprotocol for information retrieval would make such access practical and\nfeasible.  For example, this would enable patrons in Maryland to search\nCalifornia libraries, or other libraries around the world that are\nconformant with Z39.50 in a manner that is familiar to University of\nMaryland patrons.  This client-server model also supports moving beyond\nsecondary content into primary content.  (The notion of how one links\nfrom secondary content to primary content, LARSEN said, represents a\nfundamental problem that requires rigorous thought.)  After noting\nnumerous network experiments in accessing full-text materials, including\nprojects supporting the ordering of materials across the network, LARSEN\nrevisited the issue of transmitting high-density, high-resolution color\nimages across the network and the large amounts of bandwidth they\nrequire.  He went on to address the bandwidth and synchronization\nproblems inherent in sending full-motion video across the network.\n\nLARSEN illustrated the trade-off between volumes of data in bytes or\norders of magnitude and the potential usage of that data.  He discussed\ntransmission rates (particularly, the time it takes to move various forms\nof information), and what one could do with a network supporting\nmultigigabit-per-second transmission.  At the moment, the network\nenvironment includes a composite of data-transmission requirements,\nvolumes and forms, going from steady to bursty (high-volume) and from\nvery slow to very fast.  This aggregate must be considered in the design,\nconstruction, and operation of multigigabyte networks.\n\nLARSEN's objective is to use the networks and library systems now being\nconstructed to increase access to resources wherever they exist, and\nthus, to evolve toward an on-line electronic virtual library.\n\nLARSEN concluded by offering a snapshot of current trends:  continuing\ngeometric growth in network capacity and number of users; slower\ndevelopment of applications; and glacial development and adoption of\nstandards.  The challenge is to design and develop each new application\nsystem with network access and scalability in mind.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nBROWNRIGG * Access to the Internet cannot be taken for granted * Packet\nradio and the development of MELVYL in 1980-81 in the Division of Library\nAutomation at the University of California  *  Design criteria for packet\nradio * A demonstration project in San Diego and future plans * Spread\nspectrum * Frequencies at which the radios will run and plans to\nreimplement the WAIS server software in the public domain * Need for an\ninfrastructure of radios that do not move around * \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nEdwin BROWNRIGG, executive director, Memex Research Institute, first\npolled the audience in order to seek out regular users of the Internet as\nwell as those planning to use it some time in the future.  With nearly\neverybody in the room falling into one category or the other, BROWNRIGG\nmade a point re access, namely that numerous individuals, especially those\nwho use the Internet every day, take for granted their access to it, the\nspeeds with which they are connected, and how well it all works. \nHowever, as BROWNRIGG discovered between 1987 and 1989 in Australia,\nif one wants access to the Internet but cannot afford it or has some\nphysical boundary that prevents her or him from gaining access, it can\nbe extremely frustrating.  He suggested that because of economics and\nphysical barriers we were beginning to create a world of haves and have-nots\nin the process of scholarly communication, even in the United States.\n\nBROWNRIGG detailed the development of MELVYL in academic year 1980-81 in\nthe Division of Library Automation at the University of California, in\norder to underscore the issue of access to the system, which at the\noutset was extremely limited.  In short, the project needed to build a\nnetwork, which at that time entailed use of satellite technology, that is,\nputting earth stations on campus and also acquiring some terrestrial links\nfrom the State of California's microwave system.  The installation of\nsatellite links, however, did not solve the problem (which actually\nformed part of a larger problem involving politics and financial resources).\nFor while the project team could get a signal onto a campus, it had no means\nof distributing the signal throughout the campus.  The solution involved\nadopting a recent development in wireless communication called packet radio,\nwhich combined the basic notion of packet-switching with radio.  The project\nused this technology to get the signal from a point on campus where it\ncame down, an earth station for example, into the libraries, because it\nfound that wiring the libraries, especially the older marble buildings,\nwould cost $2,000-$5,000 per terminal.\n\nBROWNRIGG noted that, ten years ago, the project had neither the public\npolicy nor the technology that would have allowed it to use packet radio\nin any meaningful way.  Since then much had changed.  He proceeded to\ndetail research and development of the technology, how it is being\ndeployed in California, and what direction he thought it would take.\nThe design criteria are to produce a high-speed, one-time, low-cost,\nhigh-quality, secure, license-free device (packet radio) that one can\nplug in and play today, forget about it, and have access to the Internet. \nBy high speed, BROWNRIGG meant 1 megabyte and 1.5 megabytes.  Those units\nhave been built, he continued, and are in the process of being\ntype-certified by an independent underwriting laboratory so that they can\nbe type-licensed by the Federal Communications Commission.  As is the\ncase with citizens band, one will be able to purchase a unit and not have\nto worry about applying for a license.\n\nThe basic idea, BROWNRIGG elaborated, is to take high-speed radio data\ntransmission and create a backbone network that at certain strategic\npoints in the network will \"gateway\" into a medium-speed packet radio\n(i.e., one that runs at 38.4 kilobytes), so that perhaps by 1994-1995\npeople, like those in the audience for the price of a VCR could purchase\na medium-speed radio for the office or home, have full network connectivity\nto the Internet, and partake of all its services, with no need for an FCC\nlicense and no regular bill from the local common carrier.  BROWNRIGG\npresented several details of a demonstration project currently taking\nplace in San Diego and described plans, pending funding, to install a\nfull-bore network in the San Francisco area.  This network will have 600\nnodes running at backbone speeds, and 100 of these nodes will be libraries,\nwhich in turn will be the gateway ports to the 38.4 kilobyte radios that\nwill give coverage for the neighborhoods surrounding the libraries.\n\nBROWNRIGG next explained Part 15.247, a new rule within Title 47 of the\nCode of Federal Regulations enacted by the FCC in 1985.  This rule\nchallenged the industry, which has only now risen to the occasion, to\nbuild a radio that would run at no more than one watt of output power and\nuse a fairly exotic method of modulating the radio wave called spread\nspectrum.  Spread spectrum in fact permits the building of networks so\nthat numerous data communications can occur simultaneously, without\ninterfering with each other, within the same wide radio channel.\n\nBROWNRIGG explained that the frequencies at which the radios would run\nare very short wave signals.  They are well above standard microwave and\nradar.  With a radio wave that small, one watt becomes a tremendous punch\nper bit and thus makes transmission at reasonable speed possible.  In\norder to minimize the potential for congestion, the project is\nundertaking to reimplement software which has been available in the\nnetworking business and is taken for granted now, for example, TCP/IP,\nrouting algorithms, bridges, and gateways.  In addition, the project\nplans to take the WAIS server software in the public domain and\nreimplement it so that one can have a WAIS server on a Mac instead of a\nUnix machine.  The Memex Research Institute believes that libraries, in\nparticular, will want to use the WAIS servers with packet radio.  This\nproject, which has a team of about twelve people, will run through 1993\nand will include the 100 libraries already mentioned as well as other\nprofessionals such as those in the medical profession, engineering, and\nlaw.  Thus, the need is to create an infrastructure of radios that do not\nmove around, which, BROWNRIGG hopes, will solve a problem not only for\nlibraries but for individuals who, by and large today, do not have access\nto the Internet from their homes and offices.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Project operating frequencies *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring a brief discussion period, which also concluded the day's\nproceedings, BROWNRIGG stated that the project was operating in four\nfrequencies.  The slow speed is operating at 435 megahertz, and it would\nlater go up to 920 megahertz.  With the high-speed frequency, the\none-megabyte radios will run at 2.4 gigabits, and 1.5 will run at 5.7. \nAt 5.7, rain can be a factor, but it would have to be tropical rain,\nunlike what falls in most parts of the United States.\n\n                                 ******\n\nSESSION IV.  IMAGE CAPTURE, TEXT CAPTURE, OVERVIEW OF TEXT AND\n             IMAGE STORAGE FORMATS\n\nWilliam HOOTON, vice president of operations, I-NET, moderated this session.\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nKENNEY * Factors influencing development of CXP * Advantages of using\ndigital technology versus photocopy and microfilm * A primary goal of\nCXP; publishing challenges * Characteristics of copies printed * Quality\nof samples achieved in image capture * Several factors to be considered\nin choosing scanning * Emphasis of CXP on timely and cost-effective\nproduction of black-and-white printed facsimiles * Results of producing\nmicrofilm from digital files * Advantages of creating microfilm * Details\nconcerning production * Costs * Role of digital technology in library\npreservation *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nAnne KENNEY, associate director, Department of Preservation and\nConservation, Cornell University, opened her talk by observing that the\nCornell Xerox Project (CXP) has been guided by the assumption that the\nability to produce printed facsimiles or to replace paper with paper\nwould be important, at least for the present generation of users and\nequipment.  She described three factors that influenced development of\nthe project:  1) Because the project has emphasized the preservation of\ndeteriorating brittle books, the quality of what was produced had to be\nsufficiently high to return a paper replacement to the shelf.  CXP was\nonly interested in using:  2) a system that was cost-effective, which\nmeant that it had to be cost-competitive with the processes currently\navailable, principally photocopy and microfilm, and 3) new or currently\navailable product hardware and software.\n\nKENNEY described the advantages that using digital technology offers over\nboth photocopy and microfilm:  1) The potential exists to create a higher\nquality reproduction of a deteriorating original than conventional\nlight-lens technology.  2) Because a digital image is an encoded\nrepresentation, it can be reproduced again and again with no resulting\nloss of quality, as opposed to the situation with light-lens processes,\nin which there is discernible difference between a second and a\nsubsequent generation of an image.  3) A digital image can be manipulated\nin a number of ways to improve image capture; for example, Xerox has\ndeveloped a windowing application that enables one to capture a page\ncontaining both text and illustrations in a manner that optimizes the\nreproduction of both.  (With light-lens technology, one must choose which\nto optimize, text or the illustration; in preservation microfilming, the\ncurrent practice is to shoot an illustrated page twice, once to highlight\nthe text and the second time to provide the best capture for the\nillustration.)  4) A digital image can also be edited, density levels\nadjusted to remove underlining and stains, and to increase legibility for\nfaint documents.  5) On-screen inspection can take place at the time of\ninitial setup and adjustments made prior to scanning, factors that\nsubstantially reduce the number of retakes required in quality control.\n\nA primary goal of CXP has been to evaluate the paper output printed on\nthe Xerox DocuTech, a high-speed printer that produces 600-dpi pages from\nscanned images at a rate of 135 pages a minute.  KENNEY recounted several\npublishing challenges to represent faithful and legible reproductions of\nthe originals that the 600-dpi copy for the most part successfully\ncaptured.  For example, many of the deteriorating volumes in the project\nwere heavily illustrated with fine line drawings or halftones or came in\nlanguages such as Japanese, in which the buildup of characters comprised\nof varying strokes is difficult to reproduce at lower resolutions; a\nsurprising number of them came with annotations and mathematical\nformulas, which it was critical to be able to duplicate exactly.\n\nKENNEY noted that 1) the copies are being printed on paper that meets the\nANSI standards for performance, 2) the DocuTech printer meets the machine\nand toner requirements for proper adhesion of print to page, as described\nby the National Archives, and thus 3) paper product is considered to be\nthe archival equivalent of preservation photocopy.\n\nKENNEY then discussed several samples of the quality achieved in the\nproject that had been distributed in a handout, for example, a copy of a\nprint-on-demand version of the 1911 Reed lecture on the steam turbine,\nwhich contains halftones, line drawings, and illustrations embedded in\ntext; the first four loose pages in the volume compared the capture\ncapabilities of scanning to photocopy for a standard test target, the\nIEEE standard 167A 1987 test chart.  In all instances scanning proved\nsuperior to photocopy, though only slightly more so in one.\n\nConceding the simplistic nature of her review of the quality of scanning\nto photocopy, KENNEY described it as one representation of the kinds of\nsettings that could be used with scanning capabilities on the equipment\nCXP uses.  KENNEY also pointed out that CXP investigated the quality\nachieved with binary scanning only, and noted the great promise in gray\nscale and color scanning, whose advantages and disadvantages need to be\nexamined.  She argued further that scanning resolutions and file formats\ncan represent a complex trade-off between the time it takes to capture\nmaterial, file size, fidelity to the original, and on-screen display; and\nprinting and equipment availability.  All these factors must be taken\ninto consideration.\n\nCXP placed primary emphasis on the production in a timely and\ncost-effective manner of printed facsimiles that consisted largely of\nblack-and-white text.  With binary scanning, large files may be\ncompressed efficiently and in a lossless manner (i.e., no data is lost in\nthe process of compressing [and decompressing] an image--the exact\nbit-representation is maintained) using Group 4 CCITT (i.e., the French\nacronym for International Consultative Committee for Telegraph and\nTelephone) compression.  CXP was getting compression ratios of about\nforty to one.  Gray-scale compression, which primarily uses JPEG, is much\nless economical and can represent a lossy compression (i.e., not\nlossless), so that as one compresses and decompresses, the illustration\nis subtly changed.  While binary files produce a high-quality printed\nversion, it appears 1) that other combinations of spatial resolution with\ngray and/or color hold great promise as well, and 2) that gray scale can\nrepresent a tremendous advantage for on-screen viewing.  The quality\nassociated with binary and gray scale also depends on the equipment used. \nFor instance, binary scanning produces a much better copy on a binary\nprinter.\n\nAmong CXP's findings concerning the production of microfilm from digital\nfiles, KENNEY reported that the digital files for the same Reed lecture\nwere used to produce sample film using an electron beam recorder.  The\nresulting film was faithful to the image capture of the digital files,\nand while CXP felt that the text and image pages represented in the Reed\nlecture were superior to that of the light-lens film, the resolution\nreadings for the 600 dpi were not as high as standard microfilming. \nKENNEY argued that the standards defined for light-lens technology are\nnot totally transferable to a digital environment.  Moreover, they are\nbased on definition of quality for a preservation copy.  Although making\nthis case will prove to be a long, uphill struggle, CXP plans to continue\nto investigate the issue over the course of the next year.\n\nKENNEY concluded this portion of her talk with a discussion of the\nadvantages of creating film:  it can serve as a primary backup and as a\npreservation master to the digital file; it could then become the print\nor production master and service copies could be paper, film, optical\ndisks, magnetic media, or on-screen display.\n\nFinally, KENNEY presented details re production:\n\n     * Development and testing of a moderately-high resolution production\n     scanning workstation represented a third goal of CXP; to date, 1,000\n     volumes have been scanned, or about 300,000 images.\n\n     * The resulting digital files are stored and used to produce\n     hard-copy replacements for the originals and additional prints on\n     demand; although the initial costs are high, scanning technology\n     offers an affordable means for reformatting brittle material.\n\n     * A technician in production mode can scan 300 pages per hour when\n     performing single-sheet scanning, which is a necessity when working\n     with truly brittle paper; this figure is expected to increase\n     significantly with subsequent iterations of the software from Xerox;\n     a three-month time-and-cost study of scanning found that the average\n     300-page book would take about an hour and forty minutes to scan\n     (this figure included the time for setup, which involves keying in\n     primary bibliographic data, going into quality control mode to\n     define page size, establishing front-to-back registration, and\n     scanning sample pages to identify a default range of settings for\n     the entire book--functions not dissimilar to those performed by\n     filmers or those preparing a book for photocopy).\n\n     * The final step in the scanning process involved rescans, which\n     happily were few and far between, representing well under 1 percent\n     of the total pages scanned.\n\nIn addition to technician time, CXP costed out equipment, amortized over\nfour years, the cost of storing and refreshing the digital files every\nfour years, and the cost of printing and binding, book-cloth binding, a\npaper reproduction.  The total amounted to a little under $65 per single\n300-page volume, with 30 percent overhead included--a figure competitive\nwith the prices currently charged by photocopy vendors.\n\nOf course, with scanning, in addition to the paper facsimile, one is left\nwith a digital file from which subsequent copies of the book can be\nproduced for a fraction of the cost of photocopy, with readers afforded\nchoices in the form of these copies.\n\nKENNEY concluded that digital technology offers an electronic means for a\nlibrary preservation effort to pay for itself.  If a brittle-book program\nincluded the means of disseminating reprints of books that are in demand\nby libraries and researchers alike, the initial investment in capture\ncould be recovered and used to preserve additional but less popular\nbooks.  She disclosed that an economic model for a self-sustaining\nprogram could be developed for CXP's report to the Commission on\nPreservation and Access (CPA).\n\nKENNEY stressed that the focus of CXP has been on obtaining high quality\nin a production environment.  The use of digital technology is viewed as\nan affordable alternative to other reformatting options.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nANDRE * Overview and history of NATDP * Various agricultural CD-ROM\nproducts created inhouse and by service bureaus * Pilot project on\nInternet transmission * Additional products in progress *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nPamela ANDRE, associate director for automation, National Agricultural\nText Digitizing Program (NATDP), National Agricultural Library (NAL),\npresented an overview of NATDP, which has been underway at NAL the last\nfour years, before Judith ZIDAR discussed the technical details.  ANDRE\ndefined agricultural information as a broad range of material going from\nbasic and applied research in the hard sciences to the one-page pamphlets\nthat are distributed by the cooperative state extension services on such\nthings as how to grow blueberries.\n\nNATDP began in late 1986 with a meeting of representatives from the\nland-grant library community to deal with the issue of electronic\ninformation.  NAL and forty-five of these libraries banded together to\nestablish this project--to evaluate the technology for converting what\nwere then source documents in paper form into electronic form, to provide\naccess to that digital information, and then to distribute it. \nDistributing that material to the community--the university community as\nwell as the extension service community, potentially down to the county\nlevel--constituted the group's chief concern.\n\nSince January 1988 (when the microcomputer-based scanning system was\ninstalled at NAL), NATDP has done a variety of things, concerning which\nZIDAR would provide further details.  For example, the first technology\nconsidered in the project's discussion phase was digital videodisc, which\nindicates how long ago it was conceived.\n\nOver the four years of this project, four separate CD-ROM products on\nfour different agricultural topics were created, two at a\nscanning-and-OCR station installed at NAL, and two by service bureaus. \nThus, NATDP has gained comparative information in terms of those relative\ncosts.  Each of these products contained the full ASCII text as well as\npage images of the material, or between 4,000 and 6,000 pages of material\non these disks.  Topics included aquaculture, food, agriculture and\nscience (i.e., international agriculture and research), acid rain, and\nAgent Orange, which was the final product distributed (approximately\neighteen months before the Workshop).\n\nThe third phase of NATDP focused on delivery mechanisms other than\nCD-ROM.  At the suggestion of Clifford LYNCH, who was a technical\nconsultant to the project at this point, NATDP became involved with the\nInternet and initiated a project with the help of North Carolina State\nUniversity, in which fourteen of the land-grant university libraries are\ntransmitting digital images over the Internet in response to interlibrary\nloan requests--a topic for another meeting.  At this point, the pilot\nproject had been completed for about a year and the final report would be\navailable shortly after the Workshop.  In the meantime, the project's\nsuccess had led to its extension.  (ANDRE noted that one of the first\nthings done under the program title was to select a retrieval package to\nuse with subsequent products; Windows Personal Librarian was the package\nof choice after a lengthy evaluation.)\n  \nThree additional products had been planned and were in progress:\n\n     1) An arrangement with the American Society of Agronomy--a\n     professional society that has published the Agronomy Journal since\n     about 1908--to scan and create bit-mapped images of its journal. \n     ASA granted permission first to put and then to distribute this\n     material in electronic form, to hold it at NAL, and to use these\n     electronic images as a mechanism to deliver documents or print out\n     material for patrons, among other uses.  Effectively, NAL has the\n     right to use this material in support of its program. \n     (Significantly, this arrangement offers a potential cooperative\n     model for working with other professional societies in agriculture\n     to try to do the same thing--put the journals of particular interest\n     to agriculture research into electronic form.)\n\n     2) An extension of the earlier product on aquaculture.\n\n     3) The George Washington Carver Papers--a joint project with\n     Tuskegee University to scan and convert from microfilm some 3,500\n     images of Carver's papers, letters, and drawings.\n\nIt was anticipated that all of these products would appear no more than\nsix months after the Workshop.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nZIDAR * (A separate arena for scanning) * Steps in creating a database *\nImage capture, with and without performing OCR * Keying in tracking data\n* Scanning, with electronic and manual tracking * Adjustments during\nscanning process * Scanning resolutions * Compression * De-skewing and\nfiltering * Image capture from microform:  the papers and letters of\nGeorge Washington Carver * Equipment used for a scanning system * \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nJudith ZIDAR, coordinator, National Agricultural Text Digitizing Program\n(NATDP), National Agricultural Library (NAL), illustrated the technical\ndetails of NATDP, including her primary responsibility, scanning and\ncreating databases on a topic and putting them on CD-ROM.\n\n(ZIDAR remarked a separate arena from the CD-ROM projects, although the\nprocessing of the material is nearly identical, in which NATDP is also\nscanning material and loading it on a Next microcomputer, which in turn\nis linked to NAL's integrated library system.  Thus, searches in NAL's\nbibliographic database will enable people to pull up actual page images\nand text for any documents that have been entered.)\n\nIn accordance with the session's topic, ZIDAR focused her illustrated\ntalk on image capture, offering a primer on the three main steps in the\nprocess:  1) assemble the printed publications; 2) design the database\n(database design occurs in the process of preparing the material for\nscanning; this step entails reviewing and organizing the material,\ndefining the contents--what will constitute a record, what kinds of\nfields will be captured in terms of author, title, etc.); 3) perform a\ncertain amount of markup on the paper publications.  NAL performs this\ntask record by record, preparing work sheets or some other sort of\ntracking material and designing descriptors and other enhancements to be\nadded to the data that will not be captured from the printed publication. \nPart of this process also involves determining NATDP's file and directory\nstructure:  NATDP attempts to avoid putting more than approximately 100\nimages in a directory, because placing more than that on a CD-ROM would\nreduce the access speed.\n\nThis up-front process takes approximately two weeks for a\n6,000-7,000-page database.  The next step is to capture the page images. \nHow long this process takes is determined by the decision whether or not\nto perform OCR.  Not performing OCR speeds the process, whereas text\ncapture requires greater care because of the quality of the image:  it\nhas to be straighter and allowance must be made for text on a page, not\njust for the capture of photographs.\n\nNATDP keys in tracking data, that is, a standard bibliographic record\nincluding the title of the book and the title of the chapter, which will\nlater either become the access information or will be attached to the\nfront of a full-text record so that it is searchable.\n\nImages are scanned from a bound or unbound publication, chiefly from\nbound publications in the case of NATDP, however, because often they are\nthe only copies and the publications are returned to the shelves.  NATDP\nusually scans one record at a time, because its database tracking system\ntracks the document in that way and does not require further logical\nseparating of the images.  After performing optical character\nrecognition, NATDP moves the images off the hard disk and maintains a\nvolume sheet.  Though the system tracks electronically, all the\nprocessing steps are also tracked manually with a log sheet.\n\nZIDAR next illustrated the kinds of adjustments that one can make when\nscanning from paper and microfilm, for example, redoing images that need\nspecial handling, setting for dithering or gray scale, and adjusting for\nbrightness or for the whole book at one time.\n\nNATDP is scanning at 300 dots per inch, a standard scanning resolution. \nThough adequate for capturing text that is all of a standard size, 300\ndpi is unsuitable for any kind of photographic material or for very small\ntext.  Many scanners allow for different image formats, TIFF, of course,\nbeing a de facto standard.  But if one intends to exchange images with\nother people, the ability to scan other image formats, even if they are\nless common, becomes highly desirable.\n\nCCITT Group 4 is the standard compression for normal black-and-white\nimages, JPEG for gray scale or color.   ZIDAR recommended 1) using the\nstandard compressions, particularly if one attempts to make material\navailable and to allow users to download images and reuse them from\nCD-ROMs; and 2) maintaining the ability to output an uncompressed image,\nbecause in image exchange uncompressed images are more likely to be able\nto cross platforms.\n\nZIDAR emphasized the importance of de-skewing and filtering as\nrequirements on NATDP's upgraded system.  For instance, scanning bound\nbooks, particularly books published by the federal government whose pages\nare skewed, and trying to scan them straight if OCR is to be performed,\nis extremely time-consuming.  The same holds for filtering of\npoor-quality or older materials.\n\nZIDAR described image capture from microform, using as an example three\nreels from a sixty-seven-reel set of the papers and letters of George\nWashington Carver that had been produced by Tuskegee University.  These\nresulted in approximately 3,500 images, which NATDP had had scanned by\nits service contractor, Science Applications International Corporation\n(SAIC).  NATDP also created bibliographic records for access.  (NATDP did\nnot have such specialized equipment as a microfilm scanner.\n\nUnfortunately, the process of scanning from microfilm was not an\nunqualified success, ZIDAR reported:  because microfilm frame sizes vary,\noccasionally some frames were missed, which without spending much time\nand money could not be recaptured.\n\nOCR could not be performed from the scanned images of the frames.  The\nbleeding in the text simply output text, when OCR was run, that could not\neven be edited.  NATDP tested for negative versus positive images,\nlandscape versus portrait orientation, and single- versus dual-page\nmicrofilm, none of which seemed to affect the quality of the image; but\nalso on none of them could OCR be performed.\n\nIn selecting the microfilm they would use, therefore, NATDP had other\nfactors in mind.  ZIDAR noted two factors that influenced the quality of\nthe images:  1) the inherent quality of the original and 2) the amount of\nsize reduction on the pages.\n\nThe Carver papers were selected because they are informative and visually\ninteresting, treat a single subject, and are valuable in their own right. \nThe images were scanned and divided into logical records by SAIC, then\ndelivered, and loaded onto NATDP's system, where bibliographic\ninformation taken directly from the images was added.  Scanning was\ncompleted in summer 1991 and by the end of summer 1992 the disk was\nscheduled to be published.\n\nProblems encountered during processing included the following:  Because\nthe microfilm scanning had to be done in a batch, adjustment for\nindividual page variations was not possible.  The frame size varied on\naccount of the nature of the material, and therefore some of the frames\nwere missed while others were just partial frames.  The only way to go\nback and capture this material was to print out the page with the\nmicrofilm reader from the missing frame and then scan it in from the\npage, which was extremely time-consuming.  The quality of the images\nscanned from the printout of the microfilm compared unfavorably with that\nof the original images captured directly from the microfilm.  The\ninability to perform OCR also was a major disappointment.  At the time,\ncomputer output microfilm was unavailable to test.\n\nThe equipment used for a scanning system was the last topic addressed by\nZIDAR.  The type of equipment that one would purchase for a scanning\nsystem included:  a microcomputer, at least a 386, but preferably a 486;\na large hard disk, 380 megabyte at minimum; a multi-tasking operating\nsystem that allows one to run some things in batch in the background\nwhile scanning or doing text editing, for example, Unix or OS/2 and,\ntheoretically, Windows; a high-speed scanner and scanning software that\nallows one to make the various adjustments mentioned earlier; a\nhigh-resolution monitor (150 dpi ); OCR software and hardware to perform\ntext recognition; an optical disk subsystem on which to archive all the\nimages as the processing is done; file management and tracking software.\n\nZIDAR opined that the software one purchases was more important than the\nhardware and might also cost more than the hardware, but it was likely to\nprove critical to the success or failure of one's system.  In addition to\na stand-alone scanning workstation for image capture, then, text capture\nrequires one or two editing stations networked to this scanning station\nto perform editing.  Editing the text takes two or three times as long as\ncapturing the images.\n\nFinally, ZIDAR stressed the importance of buying an open system that allows\nfor more than one vendor, complies with standards, and can be upgraded.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nWATERS *Yale University Library's master plan to convert microfilm to\ndigital imagery (POB) * The place of electronic tools in the library of\nthe future * The uses of images and an image library * Primary input from\npreservation microfilm * Features distinguishing POB from CXP and key\nhypotheses guiding POB * Use of vendor selection process to facilitate\norganizational work * Criteria for selecting vendor * Finalists and\nresults of process for Yale * Key factor distinguishing vendors *\nComponents, design principles, and some estimated costs of POB * Role of\npreservation materials in developing imaging market * Factors affecting\nquality and cost * Factors affecting the usability of complex documents\nin image form * \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDonald WATERS, head of the Systems Office, Yale University Library,\nreported on the progress of a master plan for a project at Yale to\nconvert microfilm to digital imagery, Project Open Book (POB).  Stating\nthat POB was in an advanced stage of planning, WATERS detailed, in\nparticular, the process of selecting a vendor partner and several key\nissues under discussion as Yale prepares to move into the project itself. \nHe commented first on the vision that serves as the context of POB and\nthen described its purpose and scope.\n\nWATERS sees the library of the future not necessarily as an electronic\nlibrary but as a place that generates, preserves, and improves for its\nclients ready access to both intellectual and physical recorded\nknowledge.  Electronic tools must find a place in the library in the\ncontext of this vision.  Several roles for electronic tools include\nserving as:  indirect sources of electronic knowledge or as \"finding\"\naids (the on-line catalogues, the article-level indices, registers for\ndocuments and archives); direct sources of recorded knowledge; full-text\nimages; and various kinds of compound sources of recorded knowledge (the\nso-called compound documents of Hypertext, mixed text and image,\nmixed-text image format, and multimedia).\n\nPOB is looking particularly at images and an image library, the uses to\nwhich images will be put (e.g., storage, printing, browsing, and then use\nas input for other processes), OCR as a subsequent process to image\ncapture, or creating an image library, and also possibly generating\nmicrofilm.\n\nWhile input will come from a variety of sources, POB is considering\nespecially input from preservation microfilm.  A possible outcome is that\nthe film and paper which provide the input for the image library\neventually may go off into remote storage, and that the image library may\nbe the primary access tool.\n\nThe purpose and scope of POB focus on imaging.  Though related to CXP,\nPOB has two features which distinguish it:  1) scale--conversion of\n10,000 volumes into digital image form; and 2) source--conversion from\nmicrofilm.  Given these features, several key working hypotheses guide\nPOB, including:  1) Since POB is using microfilm, it is not concerned with\nthe image library as a preservation medium.  2) Digital imagery can improve\naccess to recorded knowledge through printing and network distribution at\na modest incremental cost of microfilm.  3) Capturing and storing documents\nin a digital image form is necessary to further improvements in access.\n(POB distinguishes between the imaging, digitizing process and OCR,\nwhich at this stage it does not plan to perform.)\n\nCurrently in its first or organizational phase, POB found that it could\nuse a vendor selection process to facilitate a good deal of the\norganizational work (e.g., creating a project team and advisory board,\nconfirming the validity of the plan, establishing the cost of the project\nand a budget, selecting the materials to convert, and then raising the\nnecessary funds).\n\nPOB developed numerous selection criteria, including:  a firm committed\nto image-document management, the ability to serve as systems integrator\nin a large-scale project over several years, interest in developing the\nrequisite software as a standard rather than a custom product, and a\nwillingness to invest substantial resources in the project itself.\n\nTwo vendors, DEC and Xerox, were selected as finalists in October 1991,\nand with the support of the Commission on Preservation and Access, each\nwas commissioned to generate a detailed requirements analysis for the\nproject and then to submit a formal proposal for the completion of the\nproject, which included a budget and costs. The terms were that POB would\npay the loser.  The results for Yale of involving a vendor included: \nbroad involvement of Yale staff across the board at a relatively low\ncost, which may have long-term significance in carrying out the project\n(twenty-five to thirty university people are engaged in POB); better\nunderstanding of the factors that affect corporate response to markets\nfor imaging products; a competitive proposal; and a more sophisticated\nview of the imaging markets.\n\nThe most important factor that distinguished the vendors under\nconsideration was their identification with the customer.  The size and\ninternal complexity of the company also was an important factor.  POB was\nlooking at large companies that had substantial resources.  In the end,\nthe process generated for Yale two competitive proposals, with Xerox's\nthe clear winner.  WATERS then described the components of the proposal,\nthe design principles, and some of the costs estimated for the process.\n\nComponents are essentially four:  a conversion subsystem, a\nnetwork-accessible storage subsystem for 10,000 books (and POB expects\n200 to 600 dpi storage), browsing stations distributed on the campus\nnetwork, and network access to the image printers.\n\nAmong the design principles, POB wanted conversion at the highest\npossible resolution.  Assuming TIFF files, TIFF files with Group 4\ncompression, TCP/IP, and ethernet network on campus, POB wanted a\nclient-server approach with image documents distributed to the\nworkstations and made accessible through native workstation interfaces\nsuch as Windows.  POB also insisted on a phased approach to\nimplementation:  1) a stand-alone, single-user, low-cost entry into the\nbusiness with a workstation focused on conversion and allowing POB to\nexplore user access; 2) movement into a higher-volume conversion with\nnetwork-accessible storage and multiple access stations; and 3) a\nhigh-volume conversion, full-capacity storage, and multiple browsing\nstations distributed throughout the campus.\n\nThe costs proposed for start-up assumed the existence of the Yale network\nand its two DocuTech image printers.  Other start-up costs are estimated\nat $1 million over the three phases.  At the end of the project, the annual\noperating costs estimated primarily for the software and hardware proposed\ncome to about $60,000, but these exclude costs for labor needed in the\nconversion process, network and printer usage, and facilities management.\n\nFinally, the selection process produced for Yale a more sophisticated\nview of the imaging markets:  the management of complex documents in\nimage form is not a preservation problem, not a library problem, but a\ngeneral problem in a broad, general industry.  Preservation materials are\nuseful for developing that market because of the qualities of the\nmaterial.  For example, much of it is out of copyright.  The resolution\nof key issues such as the quality of scanning and image browsing also\nwill affect development of that market.\n\nThe technology is readily available but changing rapidly.  In this\ncontext of rapid change, several factors affect quality and cost, to\nwhich POB intends to pay particular attention, for example, the various\nlevels of resolution that can be achieved.  POB believes it can bring\nresolution up to 600 dpi, but an interpolation process from 400 to 600 is\nmore likely.  The variation quality in microfilm will prove to be a\nhighly important factor.  POB may reexamine the standards used to film in\nthe first place by looking at this process as a follow-on to microfilming.\n\nOther important factors include:  the techniques available to the\noperator for handling material, the ways of integrating quality control\ninto the digitizing work flow, and a work flow that includes indexing and\nstorage.  POB's requirement was to be able to deal with quality control\nat the point of scanning.  Thus, thanks to Xerox, POB anticipates having\na mechanism which will allow it not only to scan in batch form, but to\nreview the material as it goes through the scanner and control quality\nfrom the outset.\n\nThe standards for measuring quality and costs depend greatly on the uses\nof the material, including subsequent OCR, storage, printing, and\nbrowsing.  But especially at issue for POB is the facility for browsing. \nThis facility, WATERS said, is perhaps the weakest aspect of imaging\ntechnology and the most in need of development.\n\nA variety of factors affect the usability of complex documents in image\nform, among them:  1) the ability of the system to handle the full range\nof document types, not just monographs but serials, multi-part\nmonographs, and manuscripts; 2) the location of the database of record\nfor bibliographic information about the image document, which POB wants\nto enter once and in the most useful place, the on-line catalog; 3) a\ndocument identifier for referencing the bibliographic information in one\nplace and the images in another; 4) the technique for making the basic\ninternal structure of the document accessible to the reader; and finally,\n5) the physical presentation on the CRT of those documents.  POB is ready\nto complete this phase now.  One last decision involves deciding which\nmaterial to scan.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * TIFF files constitute de facto standard * NARA's experience\nwith image conversion software and text conversion * RFC 1314 *\nConsiderable flux concerning available hardware and software solutions *\nNAL through-put rate during scanning * Window management questions *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nIn the question-and-answer period that followed WATERS's presentation,\nthe following points emerged:\n\n     * ZIDAR's statement about using TIFF files as a standard meant de\n     facto standard.  This is what most people use and typically exchange\n     with other groups, across platforms, or even occasionally across\n     display software.\n\n     * HOLMES commented on the unsuccessful experience of NARA in\n     attempting to run image-conversion software or to exchange between\n     applications:  What are supposedly TIFF files go into other software\n     that is supposed to be able to accept TIFF but cannot recognize the\n     format and cannot deal with it, and thus renders the exchange\n     useless.  Re text conversion, he noted the different recognition\n     rates obtained by substituting the make and model of scanners in\n     NARA's recent test of an \"intelligent\" character-recognition product\n     for a new company.  In the selection of hardware and software,\n     HOLMES argued, software no longer constitutes the overriding factor\n     it did until about a year ago; rather it is perhaps important to\n     look at both now.\n\n     * Danny Cohen and Alan Katz of the University of Southern California\n     Information Sciences Institute began circulating as an Internet RFC\n     (RFC 1314) about a month ago a standard for a TIFF interchange\n     format for Internet distribution of monochrome bit-mapped images,\n     which LYNCH said he believed would be used as a de facto standard.\n\n     * FLEISCHHAUER's impression from hearing these reports and thinking\n     about AM's experience was that there is considerable flux concerning\n     available hardware and software solutions.  HOOTON agreed and\n     commented at the same time on ZIDAR's statement that the equipment\n     employed affects the results produced.  One cannot draw a complete\n     conclusion by saying it is difficult or impossible to perform OCR\n     from scanning microfilm, for example, with that device,  that set of\n     parameters, and system requirements, because numerous other people\n     are accomplishing just that, using other components, perhaps. \n     HOOTON opined that both the hardware and the software were highly\n     important.  Most of the problems discussed today have been solved in\n     numerous different ways by other people.  Though it is good to be\n     cognizant of various experiences, this is not to say that it will\n     always be thus.\n\n     * At NAL, the through-put rate of the scanning process for paper,\n     page by page, performing OCR, ranges from 300 to 600 pages per day;\n     not performing OCR is considerably faster, although how much faster\n     is not known.  This is for scanning from bound books, which is much\n     slower.\n\n     * WATERS commented on window management questions:  DEC proposed an\n     X-Windows solution which was problematical for two reasons.  One was\n     POB's requirement to be able to manipulate images on the workstation\n     and bring them down to the workstation itself and the other was\n     network usage.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nTHOMA * Illustration of deficiencies in scanning and storage process *\nImage quality in this process * Different costs entailed by better image\nquality * Techniques for overcoming various de-ficiencies:  fixed\nthresholding, dynamic thresholding, dithering, image merge * Page edge\neffects *   \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nGeorge THOMA, chief, Communications Engineering Branch, National Library\nof Medicine (NLM), illustrated several of the deficiencies discussed by\nthe previous speakers.  He introduced the topic of special problems by\nnoting the advantages of electronic imaging.  For example, it is regenerable\nbecause it is a coded file, and real-time quality control is possible with\nelectronic capture, whereas in photographic capture it is not.\n\nOne of the difficulties discussed in the scanning and storage process was\nimage quality which, without belaboring the obvious, means different\nthings for maps, medical X-rays, or broadcast television.  In the case of\ndocuments, THOMA said, image quality boils down to legibility of the\ntextual parts, and fidelity in the case of gray or color photo print-type\nmaterial.  Legibility boils down to scan density, the standard in most\ncases being 300 dpi.  Increasing the resolution with scanners that\nperform 600 or 1200 dpi, however, comes at a cost.\n\nBetter image quality entails at least four different kinds of costs:  1)\nequipment costs, because the CCD (i.e., charge-couple device) with\ngreater number of elements costs more;  2) time costs that translate to\nthe actual capture costs, because manual labor is involved (the time is\nalso dependent on the fact that more data has to be moved around in the\nmachine in the scanning or network devices that perform the scanning as\nwell as the storage);  3) media costs, because at high resolutions larger\nfiles have to be stored; and 4) transmission costs, because there is just\nmore data to be transmitted.\n\nBut while resolution takes care of the issue of legibility in image\nquality, other deficiencies have to do with contrast and elements on the\npage scanned or the image that needed to be removed or clarified.  Thus,\nTHOMA proceeded to illustrate various deficiencies, how they are\nmanifested, and several techniques to overcome them.\n\nFixed thresholding was the first technique described, suitable for\nblack-and-white text, when the contrast does not vary over the page.  One\ncan have many different threshold levels in scanning devices.  Thus,\nTHOMA offered an example of extremely poor contrast, which resulted from\nthe fact that the stock was a heavy red.  This is the sort of image that\nwhen microfilmed fails to provide any legibility whatsoever.  Fixed\nthresholding is the way to change the black-to-red contrast to the\ndesired black-to-white contrast.\n\nOther examples included material that had been browned or yellowed by\nage.  This was also a case of contrast deficiency, and correction was\ndone by fixed thresholding.  A final example boils down to the same\nthing, slight variability, but it is not significant.  Fixed thresholding\nsolves this problem as well.  The microfilm equivalent is certainly legible,\nbut it comes with dark areas.  Though THOMA did not have a slide of the\nmicrofilm in this case, he did show the reproduced electronic image.\n\nWhen one has variable contrast over a page or the lighting over the page\narea varies, especially in the case where a bound volume has light\nshining on it, the image must be processed by a dynamic thresholding\nscheme.  One scheme, dynamic averaging, allows the threshold level not to\nbe fixed but to be recomputed for every pixel from the neighboring\ncharacteristics.  The neighbors of a pixel determine where the threshold\nshould be set for that pixel.\n\nTHOMA showed an example of a page that had been made deficient by a\nvariety of techniques, including a burn mark, coffee stains, and a yellow\nmarker.  Application of a fixed-thresholding scheme, THOMA argued, might\ntake care of several deficiencies on the page but not all of them. \nPerforming the calculation for a dynamic threshold setting, however,\nremoves most of the deficiencies so that at least the text is legible.\n\nAnother problem is representing a gray level with black-and-white pixels\nby a process known as dithering or electronic screening.  But dithering\ndoes not provide good image quality for pure black-and-white textual\nmaterial.  THOMA illustrated this point with examples. Although its\nsuitability for photoprint is the reason for electronic screening or\ndithering, it cannot be used for every compound image.  In the document\nthat was distributed by CXP, THOMA noticed that the dithered image of the\nIEEE test chart evinced some deterioration in the text.  He presented an\nextreme example of deterioration in the text in which compounded\ndocuments had to be set right by other techniques.  The technique\nillustrated by the present example was an image merge in which the page\nis scanned twice and the settings go from fixed threshold to the\ndithering matrix; the resulting images are merged to give the best\nresults with each technique.\n\nTHOMA illustrated how dithering is also used in nonphotographic or\nnonprint materials with an example of a grayish page from a medical text,\nwhich was reproduced to show all of the gray that appeared in the\noriginal.  Dithering provided a reproduction of all the gray in the\noriginal of another example from the same text.\n\nTHOMA finally illustrated the problem of bordering, or page-edge,\neffects.  Books and bound volumes that are placed on a photocopy machine\nor a scanner produce page-edge effects that are undesirable for two\nreasons:  1) the aesthetics of the image; after all, if the image is to\nbe preserved, one does not necessarily want to keep all of its\ndeficiencies; 2) compression (with the bordering problem THOMA\nillustrated, the compression ratio deteriorated tremendously).  One way\nto eliminate this more serious problem is to have the operator at the\npoint of scanning window the part of the image that is desirable and\nautomatically turn all of the pixels out of that picture to white. \n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nFLEISCHHAUER * AM's experience with scanning bound materials * Dithering\n*\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nCarl FLEISCHHAUER, coordinator, American Memory, Library of Congress,\nreported AM's experience with scanning bound materials, which he likened\nto the problems involved in using photocopying machines.  Very few\ndevices in the industry offer book-edge scanning, let alone book cradles. \nThe problem may be unsolvable, FLEISCHHAUER said, because a large enough\nmarket does not exist for a preservation-quality scanner.  AM is using a\nKurzweil scanner, which is a book-edge scanner now sold by Xerox.\n\nDevoting the remainder of his brief presentation to dithering,\nFLEISCHHAUER related AM's experience with a contractor who was using\nunsophisticated equipment and software to reduce moire patterns from\nprinted halftones.  AM took the same image and used the dithering\nalgorithm that forms part of the same Kurzweil Xerox scanner; it\ndisguised moire patterns much more effectively.\n\nFLEISCHHAUER also observed that dithering produces a binary file which is\nuseful for numerous purposes, for example, printing it on a laser printer\nwithout having to \"re-halftone\" it.  But it tends to defeat efficient\ncompression, because the very thing that dithers to reduce moire patterns\nalso tends to work against compression schemes.  AM thought the\ndifference in image quality was worth it.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Relative use as a criterion for POB's selection of books to\nbe converted into digital form *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the discussion period, WATERS noted that one of the criteria for\nselecting books among the 10,000 to be converted into digital image form\nwould be how much relative use they would receive--a subject still\nrequiring evaluation.  The challenge will be to understand whether\ncoherent bodies of material will increase usage or whether POB should\nseek material that is being used, scan that, and make it more accessible. \nPOB might decide to digitize materials that are already heavily used, in\norder to make them more accessible and decrease wear on them.  Another\napproach would be to provide a large body of intellectually coherent\nmaterial that may be used more in digital form than it is currently used\nin microfilm.  POB would seek material that was out of copyright.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nBARONAS * Origin and scope of AIIM * Types of documents produced in\nAIIM's standards program * Domain of AIIM's standardization work * AIIM's\nstructure * TC 171 and MS23 * Electronic image management standards *\nCategories of EIM standardization where AIIM standards are being\ndeveloped *  \n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nJean BARONAS, senior manager, Department of Standards and Technology,\nAssociation for Information and Image Management (AIIM), described the\nnot-for-profit association and the national and international programs\nfor standardization in which AIIM is active.\n\nAccredited for twenty-five years as the nation's standards development\norganization for document image management, AIIM began life in a library\ncommunity developing microfilm standards.  Today the association\nmaintains both its library and business-image management standardization\nactivities--and has moved into electronic image-management\nstandardization (EIM).\n\nBARONAS defined the program's scope.  AIIM deals with:  1) the\nterminology of standards and of the technology it uses; 2) methods of\nmeasurement for the systems, as well as quality; 3) methodologies for\nusers to evaluate and measure quality; 4) the features of apparatus used\nto manage and edit images; and 5) the procedures used to manage images.\n\nBARONAS noted that three types of documents are produced in the AIIM\nstandards program:  the first two, accredited by the American National\nStandards Institute (ANSI), are standards and standard recommended\npractices.  Recommended practices differ from standards in that they\ncontain more tutorial information.  A technical report is not an ANSI\nstandard.  Because AIIM's policies and procedures for developing\nstandards are approved by ANSI, its standards are labeled ANSI/AIIM,\nfollowed by the number and title of the standard.\n\nBARONAS then illustrated the domain of AIIM's standardization work.  For\nexample, AIIM is the administrator of the U.S. Technical Advisory Group\n(TAG) to the International Standards Organization's (ISO) technical\ncommittee, TC l7l Micrographics and Optical Memories for Document and\nImage Recording, Storage, and Use.  AIIM officially works through ANSI in\nthe international standardization process.\n\nBARONAS described AIIM's structure, including its board of directors, its\nstandards board of twelve individuals active in the image-management\nindustry, its strategic planning and legal admissibility task forces, and\nits National Standards Council, which is comprised of the members of a\nnumber of organizations who vote on every AIIM standard before it is\npublished.  BARONAS pointed out that AIIM's liaisons deal with numerous\nother standards developers, including the optical disk community, office\nand publishing systems, image-codes-and-character set committees, and the\nNational Information Standards Organization (NISO).\n\nBARONAS illustrated the procedures of TC l7l, which covers all aspects of\nimage management.  When AIIM's national program has conceptualized a new\nproject, it is usually submitted to the international level, so that the\nmember countries of TC l7l can simultaneously work on the development of\nthe standard or the technical report.  BARONAS also illustrated a classic\nmicrofilm standard, MS23, which deals with numerous imaging concepts that\napply to electronic imaging.  Originally developed in the l970s, revised\nin the l980s, and revised again in l991, this standard is scheduled for\nanother revision.  MS23 is an active standard whereby users may propose\nnew density ranges and new methods of evaluating film images in the\nstandard's revision.\n\nBARONAS detailed several electronic image-management standards, for\ninstance, ANSI/AIIM MS44, a quality-control guideline for scanning 8.5\"\nby 11\" black-and-white office documents.  This standard is used with the\nIEEE fax image--a continuous tone photographic image with gray scales,\ntext, and several continuous tone pictures--and AIIM test target number\n2, a representative document used in office document management.\n\nBARONAS next outlined the four categories of EIM standardization in which\nAIIM standards are being developed:  transfer and retrieval, evaluation,\noptical disc and document scanning applications, and design and\nconversion of documents.  She detailed several of the main projects of\neach:  1) in the category of image transfer and retrieval, a bi-level\nimage transfer format, ANSI/AIIM MS53, which is a proposed standard that\ndescribes a file header for image transfer between unlike systems when\nthe images are compressed using G3 and G4 compression; 2) the category of\nimage evaluation, which includes the AIIM-proposed TR26 tutorial on image\nresolution (this technical report will treat the differences and\nsimilarities between classical or photographic and electronic imaging);\n3) design and conversion, which includes a proposed technical report\ncalled \"Forms Design Optimization for EIM\" (this report considers how\ngeneral-purpose business forms can be best designed so that scanning is\noptimized; reprographic characteristics such as type, rules, background,\ntint, and color will likewise be treated in the technical report); 4)\ndisk and document scanning applications includes a project a) on planning\nplatters and disk management, b) on generating an application profile for\nEIM when images are stored and distributed on CD-ROM, and c) on\nevaluating SCSI2, and how a common command set can be generated for SCSI2\nso that document scanners are more easily integrated.  (ANSI/AIIM MS53\nwill also apply to compressed images.)\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nBATTIN * The implications of standards for preservation * A major\nobstacle to successful cooperation * A hindrance to access in the digital\nenvironment * Standards a double-edged sword for those concerned with the\npreservation of the human record * Near-term prognosis for reliable\narchival standards * Preservation concerns for electronic media * Need\nfor reconceptualizing our preservation principles * Standards in the real\nworld and the politics of reproduction * Need to redefine the concept of\narchival and to begin to think in terms of life cycles * Cooperation and\nthe La Guardia Eight * Concerns generated by discussions on the problems\nof preserving text and image * General principles to be adopted in a\nworld without standards *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nPatricia BATTIN, president, the Commission on Preservation and Access\n(CPA), addressed the implications of standards for preservation.  She\nlisted several areas where the library profession and the analog world of\nthe printed book had made enormous contributions over the past hundred\nyears--for example, in bibliographic formats, binding standards, and, most\nimportant, in determining what constitutes longevity or archival quality.\n\nAlthough standards have lightened the preservation burden through the\ndevelopment of national and international collaborative programs,\nnevertheless, a pervasive mistrust of other people's standards remains a\nmajor obstacle to successful cooperation, BATTIN said.\n\nThe zeal to achieve perfection, regardless of the cost, has hindered\nrather than facilitated access in some instances, and in the digital\nenvironment, where no real standards exist, has brought an ironically\njust reward.\n\nBATTIN argued that standards are a double-edged sword for those concerned\nwith the preservation of the human record, that is, the provision of\naccess to recorded knowledge in a multitude of media as far into the\nfuture as possible.  Standards are essential to facilitate\ninterconnectivity and access, but, BATTIN said, as LYNCH pointed out\nyesterday, if set too soon they can hinder creativity, expansion of\ncapability, and the broadening of access.  The characteristics of\nstandards for digital imagery differ radically from those for analog\nimagery.  And the nature of digital technology implies continuing\nvolatility and change.  To reiterate, precipitous standard-setting can\ninhibit creativity, but delayed standard-setting results in chaos.\n\nSince in BATTIN'S opinion the near-term prognosis for reliable archival\nstandards, as defined by librarians in the analog world, is poor, two\nalternatives remain:  standing pat with the old technology, or\nreconceptualizing.\n\nPreservation concerns for electronic media fall into two general domains. \nOne is the continuing assurance of access to knowledge originally\ngenerated, stored, disseminated, and used in electronic form.  This\ndomain contains several subdivisions, including 1) the closed,\nproprietary systems discussed the previous day, bundled information such\nas electronic journals and government agency records, and electronically\nproduced or captured raw data; and 2) the application of digital\ntechnologies to the reformatting of materials originally published on a\ndeteriorating analog medium such as acid paper or videotape.\n\nThe preservation of electronic media requires a reconceptualizing of our\npreservation principles during a volatile, standardless transition which\nmay last far longer than any of us envision today.  BATTIN urged the\nnecessity of shifting focus from assessing, measuring, and setting\nstandards for the permanence of the medium to the concept of managing\ncontinuing access to information stored on a variety of media and\nrequiring a variety of ever-changing hardware and software for access--a\nfundamental shift for the library profession.\n\nBATTIN offered a primer on how to move forward with reasonable confidence\nin a world without standards.  Her comments fell roughly into two sections:\n1) standards in the real world and 2) the politics of reproduction.\n\nIn regard to real-world standards, BATTIN argued the need to redefine the\nconcept of archive and to begin to think in terms of life cycles.  In\nthe past, the naive assumption that paper would last forever produced a\ncavalier attitude toward life cycles.  The transient nature of the\nelectronic media has compelled people to recognize and accept upfront the\nconcept of life cycles in place of permanency.\n\nDigital standards have to be developed and set in a cooperative context\nto ensure efficient exchange of information.  Moreover, during this\ntransition period, greater flexibility concerning how concepts such as\nbackup copies and archival copies in the CXP are defined is necessary,\nor the opportunity to move forward will be lost.\n\nIn terms of cooperation, particularly in the university setting, BATTIN\nalso argued the need to avoid going off in a hundred different\ndirections.  The CPA has catalyzed a small group of universities called\nthe La Guardia Eight--because La Guardia Airport is where meetings take\nplace--Harvard, Yale, Cornell, Princeton, Penn State, Tennessee,\nStanford, and USC, to develop a digital preservation consortium to look\nat all these issues and develop de facto standards as we move along,\ninstead of waiting for something that is officially blessed.  Continuing\nto apply analog values and definitions of standards to the digital\nenvironment, BATTIN said, will effectively lead to forfeiture of the\nbenefits of digital technology to research and scholarship.\n\nUnder the second rubric, the politics of reproduction, BATTIN reiterated\nan oft-made argument concerning the electronic library, namely, that it\nis more difficult to transform than to create, and nowhere is that belief\nexpressed more dramatically than in the conversion of brittle books to\nnew media.  Preserving information published in electronic media involves\nmaking sure the information remains accessible and that digital\ninformation is not lost through reproduction.  In the analog world of\nphotocopies and microfilm, the issue of fidelity to the original becomes\nparamount, as do issues of \"Whose fidelity?\" and \"Whose original?\"\n\nBATTIN elaborated these arguments with a few examples from a recent study\nconducted by the CPA on the problems of preserving text and image. \nDiscussions with scholars, librarians, and curators in a variety of\ndisciplines dependent on text and image generated a variety of concerns,\nfor example:  1) Copy what is, not what the technology is capable of. \nThis is very important for the history of ideas.  Scholars wish to know\nwhat the author saw and worked from.  And make available at the\nworkstation the opportunity to erase all the defects and enhance the\npresentation.  2) The fidelity of reproduction--what is good enough, what\ncan we afford, and the difference it makes--issues of subjective versus\nobjective resolution.  3) The differences between primary and secondary\nusers.  Restricting the definition of primary user to the one in whose\ndiscipline the material has been published runs one headlong into the\nreality that these printed books have had a host of other users from a\nhost of other disciplines, who not only were looking for very different\nthings, but who also shared values very different from those of the\nprimary user.  4) The relationship of the standard of reproduction to new\ncapabilities of scholarship--the browsing standard versus an archival\nstandard.  How good must the archival standard be?  Can a distinction be\ndrawn between potential users in setting standards for reproduction? \nArchival storage, use copies, browsing copies--ought an attempt to set\nstandards even be made?  5) Finally, costs.  How much are we prepared to\npay to capture absolute fidelity?  What are the trade-offs between vastly\nenhanced access, degrees of fidelity, and costs?\n\nThese standards, BATTIN concluded, serve to complicate further the\nreproduction process, and add to the long list of technical standards\nthat are necessary to ensure widespread access.  Ways to articulate and\nanalyze the costs that are attached to the different levels of standards\nmust be found.\n\nGiven the chaos concerning standards, which promises to linger for the\nforeseeable future, BATTIN urged adoption of the following general\nprinciples:\n\n     * Strive to understand the changing information requirements of\n     scholarly disciplines as more and more technology is integrated into\n     the process of research and scholarly communication in order to meet\n     future scholarly needs, not to build for the past.  Capture\n     deteriorating information at the highest affordable resolution, even\n     though the dissemination and display technologies will lag.\n\n     * Develop cooperative mechanisms to foster agreement on protocols\n     for document structure and other interchange mechanisms necessary\n     for widespread dissemination and use before official standards are\n     set.\n\n     * Accept that, in a transition period, de facto standards will have\n     to be developed.\n\n     * Capture information in a way that keeps all options open and\n     provides for total convertibility:  OCR, scanning of microfilm,\n     producing microfilm from scanned documents, etc.\n\n     * Work closely with the generators of information and the builders\n     of networks and databases to ensure that continuing accessibility is\n     a primary concern from the beginning.\n\n     * Piggyback on standards under development for the broad market, and\n     avoid library-specific standards; work with the vendors, in order to\n     take advantage of that which is being standardized for the rest of\n     the world.\n\n     * Concentrate efforts on managing permanence in the digital world,\n     rather than perfecting the longevity of a particular medium.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Additional comments on TIFF *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the brief discussion period that followed BATTIN's presentation,\nBARONAS explained that TIFF was not developed in collaboration with or\nunder the auspices of AIIM.  TIFF is a company product, not a standard,\nis owned by two corporations, and is always changing.  BARONAS also\nobserved that ANSI/AIIM MS53, a bi-level image file transfer format that\nallows unlike systems to exchange images, is compatible with TIFF as well\nas with DEC's architecture and IBM's MODCA/IOCA.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nHOOTON * Several questions to be considered in discussing text conversion\n*\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nHOOTON introduced the final topic, text conversion, by noting that it is\nbecoming an increasingly important part of the imaging business.  Many\npeople now realize that it enhances their system to be able to have more\nand more character data as part of their imaging system.  Re the issue of\nOCR versus rekeying, HOOTON posed several questions:  How does one get\ntext into computer-readable form?  Does one use automated processes? \nDoes one attempt to eliminate the use of operators where possible? \nStandards for accuracy, he said, are extremely important:  it makes a\nmajor difference in cost and time whether one sets as a standard 98.5\npercent acceptance or 99.5 percent.  He mentioned outsourcing as a\npossibility for converting text.  Finally, what one does with the image\nto prepare it for the recognition process is also important, he said,\nbecause such preparation changes how recognition is viewed, as well as\nfacilitates recognition itself.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nLESK * Roles of participants in CORE * Data flow * The scanning process *\nThe image interface * Results of experiments involving the use of\nelectronic resources and traditional paper copies * Testing the issue of\nserendipity * Conclusions *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nMichael LESK, executive director, Computer Science Research, Bell\nCommunications Research, Inc. (Bellcore), discussed the Chemical Online\nRetrieval Experiment (CORE), a cooperative project involving Cornell\nUniversity, OCLC, Bellcore, and the American Chemical Society (ACS).\n\nLESK spoke on 1) how the scanning was performed, including the unusual\nfeature of page segmentation, and 2) the use made of the text and the\nimage in experiments.\n\nWorking with the chemistry journals (because ACS has been saving its\ntypesetting tapes since the mid-1970s and thus has a significant back-run\nof the most important chemistry journals in the United States), CORE is\nattempting to create an automated chemical library.  Approximately a\nquarter of the pages by square inch are made up of images of\nquasi-pictorial material; dealing with the graphic components of the\npages is extremely important.  LESK described the roles of participants\nin CORE:  1) ACS provides copyright permission, journals on paper,\njournals on microfilm, and some of the definitions of the files; 2) at\nBellcore, LESK chiefly performs the data preparation, while Dennis Egan\nperforms experiments on the users of chemical abstracts, and supplies the\nindexing and numerous magnetic tapes;  3) Cornell provides the site of the\nexperiment; 4) OCLC develops retrieval software and other user interfaces.\nVarious manufacturers and publishers have furnished other help.\n\nConcerning data flow, Bellcore receives microfilm and paper from ACS; the\nmicrofilm is scanned by outside vendors, while the paper is scanned\ninhouse on an Improvision scanner, twenty pages per minute at 300 dpi,\nwhich provides sufficient quality for all practical uses.  LESK would\nprefer to have more gray level, because one of the ACS journals prints on\nsome colored pages, which creates a problem.\n\nBellcore performs all this scanning, creates a page-image file, and also\nselects from the pages the graphics, to mix with the text file (which is\ndiscussed later in the Workshop).  The user is always searching the ASCII\nfile, but she or he may see a display based on the ASCII or a display\nbased on the images.\n\nLESK illustrated how the program performs page analysis, and the image\ninterface.  (The user types several words, is presented with a list--\nusually of the titles of articles contained in an issue--that derives\nfrom the ASCII, clicks on an icon and receives an image that mirrors an\nACS page.)  LESK also illustrated an alternative interface, based on text\non the ASCII, the so-called SuperBook interface from Bellcore.\n\nLESK next presented the results of an experiment conducted by Dennis Egan\nand involving thirty-six students at Cornell, one third of them\nundergraduate chemistry majors, one third senior undergraduate chemistry\nmajors, and one third graduate chemistry students.  A third of them\nreceived the paper journals, the traditional paper copies and chemical\nabstracts on paper.  A third received image displays of the pictures of\nthe pages, and a third received the text display with pop-up graphics.\n\nThe students were given several questions made up by some chemistry\nprofessors.  The questions fell into five classes, ranging from very easy\nto very difficult, and included questions designed to simulate browsing\nas well as a traditional information retrieval-type task.\n\nLESK furnished the following results.  In the straightforward question\nsearch--the question being, what is the phosphorus oxygen bond distance\nand hydroxy phosphate?--the students were told that they could take\nfifteen minutes and, then, if they wished, give up.  The students with\npaper took more than fifteen minutes on average, and yet most of them\ngave up.  The students with either electronic format, text or image,\nreceived good scores in reasonable time, hardly ever had to give up, and\nusually found the right answer.\n\nIn the browsing study, the students were given a list of eight topics,\ntold to imagine that an issue of the Journal of the American Chemical\nSociety had just appeared on their desks, and were also told to flip\nthrough it and to find topics mentioned in the issue.  The average scores\nwere about the same.  (The students were told to answer yes or no about\nwhether or not particular topics appeared.)  The errors, however, were\nquite different.  The students with paper rarely said that something\nappeared when it had not.  But they often failed to find something\nactually mentioned in the issue.  The computer people found numerous\nthings, but they also frequently said that a topic was mentioned when it\nwas not.  (The reason, of course, was that they were performing word\nsearches.  They were finding that words were mentioned and they were\nconcluding that they had accomplished their task.)\n\nThis question also contained a trick to test the issue of serendipity. \nThe students were given another list of eight topics and instructed,\nwithout taking a second look at the journal, to recall how many of this\nnew list of eight topics were in this particular issue.  This was an\nattempt to see if they performed better at remembering what they were not\nlooking for.  They all performed about the same, paper or electronics,\nabout 62 percent accurate.  In short, LESK said, people were not very\ngood when it came to serendipity, but they were no worse at it with\ncomputers than they were with paper.\n\n(LESK gave a parenthetical illustration of the learning curve of students\nwho used SuperBook.)\n\nThe students using the electronic systems started off worse than the ones\nusing print, but by the third of the three sessions in the series had\ncaught up to print.  As one might expect, electronics provide a much\nbetter means of finding what one wants to read; reading speeds, once the\nobject of the search has been found, are about the same.\n\nAlmost none of the students could perform the hard task--the analogous\ntransformation.  (It would require the expertise of organic chemists to\ncomplete.)  But an interesting result was that the students using the text\nsearch performed terribly, while those using the image system did best.\nThat the text search system is driven by text offers the explanation.\nEverything is focused on the text; to see the pictures, one must press\non an icon.  Many students found the right article containing the answer\nto the question, but they did not click on the icon to bring up the right\nfigure and see it.  They did not know that they had found the right place,\nand thus got it wrong.\n\nThe short answer demonstrated by this experiment was that in the event\none does not know what to read, one needs the electronic systems; the\nelectronic systems hold no advantage at the moment if one knows what to\nread, but neither do they impose a penalty.\n\nLESK concluded by commenting that, on one hand, the image system was easy\nto use.  On the other hand, the text display system, which represented\ntwenty man-years of work in programming and polishing, was not winning,\nbecause the text was not being read, just searched.  The much easier\nsystem is highly competitive as well as remarkably effective for the\nactual chemists.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nERWAY * Most challenging aspect of working on AM * Assumptions guiding\nAM's approach * Testing different types of service bureaus * AM's\nrequirement for 99.95 percent accuracy * Requirements for text-coding *\nAdditional factors influencing AM's approach to coding * Results of AM's\nexperience with rekeying * Other problems in dealing with service bureaus\n* Quality control the most time-consuming aspect of contracting out\nconversion * Long-term outlook uncertain *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nTo Ricky ERWAY, associate coordinator, American Memory, Library of\nCongress, the constant variety of conversion projects taking place\nsimultaneously represented perhaps the most challenging aspect of working\non AM.  Thus, the challenge was not to find a solution for text\nconversion but a tool kit of solutions to apply to LC's varied\ncollections that need to be converted.  ERWAY limited her remarks to the\nprocess of converting text to machine-readable form, and the variety of\nLC's text collections, for example, bound volumes, microfilm, and\nhandwritten manuscripts.\n\nTwo assumptions have guided AM's approach, ERWAY said:  1) A desire not\nto perform the conversion inhouse.  Because of the variety of formats and\ntypes of texts, to capitalize the equipment and have the talents and\nskills to operate them at LC would be extremely expensive.  Further, the\nnatural inclination to upgrade to newer and better equipment each year\nmade it reasonable for AM to focus on what it did best and seek external\nconversion services.  Using service bureaus also allowed AM to have\nseveral types of operations take place at the same time.  2) AM was not a\ntechnology project, but an effort to improve access to library\ncollections.  Hence, whether text was converted using OCR or rekeying\nmattered little to AM.  What mattered were cost and accuracy of results.\n\nAM considered different types of service bureaus and selected three to\nperform several small tests in order to acquire a sense of the field. \nThe sample collections with which they worked included handwritten\ncorrespondence, typewritten manuscripts from the 1940s, and\neighteenth-century printed broadsides on microfilm.  On none of these\nsamples was OCR performed; they were all rekeyed.  AM had several special\nrequirements for the three service bureaus it had engaged.  For instance,\nany errors in the original text were to be retained.  Working from bound\nvolumes or anything that could not be sheet-fed also constituted a factor\neliminating companies that would have performed OCR.\n\nAM requires 99.95 percent accuracy, which, though it sounds high, often\nmeans one or two errors per page.  The initial batch of test samples\ncontained several handwritten materials for which AM did not require\ntext-coding.  The results, ERWAY reported, were in all cases fairly\ncomparable:  for the most part, all three service bureaus achieved 99.95\npercent accuracy.  AM was satisfied with the work but surprised at the cost.\n\nAs AM began converting whole collections, it retained the requirement for\n99.95 percent accuracy and added requirements for text-coding.  AM needed\nto begin performing work more than three years ago before LC requirements\nfor SGML applications had been established.  Since AM's goal was simply\nto retain any of the intellectual content represented by the formatting\nof the document (which would be lost if one performed a straight ASCII\nconversion), AM used \"SGML-like\" codes.  These codes resembled SGML tags\nbut were used without the benefit of document-type definitions.  AM found\nthat many service bureaus were not yet SGML-proficient.\n\nAdditional factors influencing the approach AM took with respect to\ncoding included:  1) the inability of any known microcomputer-based\nuser-retrieval software to take advantage of SGML coding; and 2) the\nmultiple inconsistencies in format of the older documents, which\nconfirmed AM in its desire not to attempt to force the different formats\nto conform to a single document-type definition (DTD) and thus create the\nneed for a separate DTD for each document. \n\nThe five text collections that AM has converted or is in the process of\nconverting include a collection of eighteenth-century broadsides, a\ncollection of pamphlets, two typescript document collections, and a\ncollection of 150 books.\n\nERWAY next reviewed the results of AM's experience with rekeying, noting\nagain that because the bulk of AM's materials are historical, the quality\nof the text often does not lend itself to OCR.  While non-English\nspeakers are less likely to guess or elaborate or correct typos in the\noriginal text, they are also less able to infer what we would; they also\nare nearly incapable of converting handwritten text.  Another\ndisadvantage of working with overseas keyers is that they are much less\nlikely to telephone with questions, especially on the coding, with the\nresult that they develop their own rules as they encounter new\nsituations.\n\nGovernment contracting procedures and time frames posed a major challenge\nto performing the conversion.  Many service bureaus are not accustomed to\nretaining the image, even if they perform OCR.  Thus, questions of image\nformat and storage media were somewhat novel to many of them.  ERWAY also\nremarked other problems in dealing with service bureaus, for example,\ntheir inability to perform text conversion from the kind of microfilm\nthat LC uses for preservation purposes.\n\nBut quality control, in ERWAY's experience, was the most time-consuming\naspect of contracting out conversion.  AM has been attempting to perform\na 10-percent quality review, looking at either every tenth document or\nevery tenth page to make certain that the service bureaus are maintaining\n99.95 percent accuracy.  But even if they are complying with the\nrequirement for accuracy, finding errors produces a desire to correct\nthem and, in turn, to clean up the whole collection, which defeats the\npurpose to some extent.  Even a double entry requires a\ncharacter-by-character comparison to the original to meet the accuracy\nrequirement.  LC is not accustomed to publish imperfect texts, which\nmakes attempting to deal with the industry standard an emotionally\nfraught issue for AM.  As was mentioned in the previous day's discussion,\ngoing from 99.95 to 99.99 percent accuracy usually doubles costs and\nmeans a third keying or another complete run-through of the text.\n\nAlthough AM has learned much from its experiences with various collections\nand various service bureaus, ERWAY concluded pessimistically that no\nbreakthrough has been achieved.   Incremental improvements have occurred\nin some of the OCR technology, some of the processes, and some of the\nstandards acceptances, which, though they may lead to somewhat lower costs,\ndo not offer much encouragement to many people who are anxiously awaiting\nthe day that the entire contents of LC are available on-line.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nZIDAR * Several answers to why one attempts to perform full-text\nconversion * Per page cost of performing OCR * Typical problems\nencountered during editing * Editing poor copy OCR vs. rekeying *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nJudith ZIDAR, coordinator, National Agricultural Text Digitizing Program\n(NATDP), National Agricultural Library (NAL), offered several answers to\nthe question of why one attempts to perform full-text conversion:  1)\nText in an image can be read by a human but not by a computer, so of\ncourse it is not searchable and there is not much one can do with it.  2)\nSome material simply requires word-level access.  For instance, the legal\nprofession insists on full-text access to its material; with taxonomic or\ngeographic material, which entails numerous names, one virtually requires\nword-level access.  3) Full text permits rapid browsing and searching,\nsomething that cannot be achieved in an image with today's technology. \n4) Text stored as ASCII and delivered in ASCII is standardized and highly\nportable.  5) People just want full-text searching, even those who do not\nknow how to do it.  NAL, for the most part, is performing OCR at an\nactual cost per average-size page of approximately $7.  NAL scans the\npage to create the electronic image and passes it through the OCR device.\n\nZIDAR next rehearsed several typical problems encountered during editing. \nPraising the celerity of her student workers, ZIDAR observed that editing\nrequires approximately five to ten minutes per page, assuming that there\nare no large tables to audit.  Confusion among the three characters I, 1, \nand l, constitutes perhaps the most common problem encountered.  Zeroes\nand  O's also are  frequently confused.  Double M's create a particular\nproblem, even on clean pages.  They are so wide in most fonts that they\ntouch, and the system simply cannot tell where one letter ends and the\nother begins.  Complex page formats occasionally fail to columnate\nproperly, which entails rescanning as though one were working with a\nsingle column, entering the ASCII, and decolumnating for better\nsearching.  With proportionally spaced text, OCR can have difficulty\ndiscerning what is a space and what are merely spaces between letters, as\nopposed to spaces between words, and therefore will merge text or break\nup words where it should not.\n\nZIDAR said that it can often take longer to edit a poor-copy OCR than to\nkey it from scratch.  NAL has also experimented with partial editing of\ntext, whereby project workers go into and clean up the format, removing\nstray characters but not running a spell-check.  NAL corrects typos in\nthe title and authors' names, which provides a foothold for searching and\nbrowsing.  Even extremely poor-quality OCR (e.g., 60-percent accuracy)\ncan still be searched, because numerous words are correct, while the\nimportant words are probably repeated often enough that they are likely\nto be found correct somewhere.  Librarians, however, cannot tolerate this\nsituation, though end users seem more willing to use this text for\nsearching, provided that NAL indicates that it is unedited.  ZIDAR\nconcluded that rekeying of text may be the best route to take, in spite\nof numerous problems with quality control and cost.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Modifying an image before performing OCR * NAL's costs per\npage *AM's costs per page and experience with Federal Prison Industries *\nElements comprising NATDP's costs per page * OCR and structured markup *\nDistinction between the structure of a document and its representation\nwhen put on the screen or printed *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nHOOTON prefaced the lengthy discussion that followed with several\ncomments about modifying an image before one reaches the point of\nperforming OCR.  For example, in regard to an application containing a\nsignificant amount of redundant data, such as form-type data, numerous\ncompanies today are working on various kinds of form renewal, prior to\ngoing through a recognition process, by using dropout colors.  Thus,\nacquiring access to form design or using electronic means are worth\nconsidering.  HOOTON also noted that conversion usually makes or breaks\none's imaging system.  It is extremely important, extremely costly in\nterms of either capital investment or service, and determines the quality\nof the remainder of one's system, because it determines the character of\nthe raw material used by the system.\n\nConcerning the four projects undertaken by NAL, two inside and two\nperformed by outside contractors, ZIDAR revealed that an in-house service\nbureau executed the first at a cost between $8 and $10 per page for\neverything, including building of the database.  The project undertaken\nby the Consultative Group on International Agricultural Research (CGIAR)\ncost approximately $10 per page for the conversion, plus some expenses\nfor the software and building of the database.  The Acid Rain Project--a\ntwo-disk set produced by the University of Vermont, consisting of\nCanadian publications on acid rain--cost $6.70 per page for everything,\nincluding keying of the text, which was double keyed, scanning of the\nimages, and building of the database.  The in-house project offered\nconsiderable ease of convenience and greater control of the process.  On\nthe other hand, the service bureaus know their job and perform it\nexpeditiously, because they have more people.\n\nAs a useful comparison, ERWAY revealed AM's costs as follows:  $0.75\ncents to $0.85 cents per thousand characters, with an average page\ncontaining 2,700 characters.  Requirements for coding and imaging\nincrease the costs.  Thus, conversion of the text, including the coding,\ncosts approximately $3 per page.  (This figure does not include the\nimaging and database-building included in the NAL costs.)  AM also\nenjoyed a happy experience with Federal Prison Industries, which\nprecluded the necessity of going through the request-for-proposal process\nto award a contract, because it is another government agency.  The\nprisoners performed AM's rekeying just as well as other service bureaus\nand proved handy as well.  AM shipped them the books, which they would\nphotocopy on a book-edge scanner.  They would perform the markup on\nphotocopies, return the books as soon as they were done with them,\nperform the keying, and return the material to AM on WORM disks.\n\nZIDAR detailed the elements that constitute the previously noted cost of\napproximately $7 per page.  Most significant is the editing, correction\nof errors, and spell-checkings, which though they may sound easy to\nperform require, in fact, a great deal of time.  Reformatting text also\ntakes a while, but a significant amount of NAL's expenses are for equipment,\nwhich was extremely expensive when purchased because it was one of the few\nsystems on the market.  The costs of equipment are being amortized over\nfive years but are still quite high, nearly $2,000 per month.\n\nHOCKEY raised a general question concerning OCR and the amount of editing\nrequired (substantial in her experience) to generate the kind of\nstructured markup necessary for manipulating the text on the computer or\nloading it into any retrieval system.  She wondered if the speakers could\nextend the previous question about the cost-benefit of adding or exerting\nstructured markup.  ERWAY noted that several OCR systems retain italics,\nbolding, and other spatial formatting.  While the material may not be in\nthe format desired, these systems possess the ability to remove the\noriginal materials quickly from the hands of the people performing the\nconversion, as well as to retain that information so that users can work\nwith it.  HOCKEY rejoined that the current thinking on markup is that one\nshould not say that something is italic or bold so much as why it is that\nway.  To be sure, one needs to know that something was italicized, but\nhow can one get from one to the other?  One can map from the structure to\nthe typographic representation.\n\nFLEISCHHAUER suggested that, given the 100 million items the Library\nholds, it may not be possible for LC to do more than report that a thing\nwas in italics as opposed to why it was italics, although that may be\ndesirable in some contexts.  Promising to talk a bit during the afternoon\nsession about several experiments OCLC performed on automatic recognition\nof document elements, and which they hoped to extend, WEIBEL said that in\nfact one can recognize the major elements of a document with a fairly\nhigh degree of reliability, at least as good as OCR.  STEVENS drew a\nuseful distinction between standard, generalized markup (i.e., defining\nfor a document-type definition the structure of the document), and what\nhe termed a style sheet, which had to do with italics, bolding, and other\nforms of emphasis.  Thus, two different components are at work, one being\nthe structure of the document itself (its logic), and the other being its\nrepresentation when it is put on the screen or printed.\n\n                                 ******\n\nSESSION V.  APPROACHES TO PREPARING ELECTRONIC TEXTS\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nHOCKEY * Text in ASCII and the representation of electronic text versus\nan image * The need to look at ways of using markup to assist retrieval *\nThe need for an encoding format that will be reusable and multifunctional\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nSusan HOCKEY, director, Center for Electronic Texts in the Humanities\n(CETH), Rutgers and Princeton Universities, announced that one talk\n(WEIBEL's) was moved into this session from the morning and that David\nPackard was unable to attend.  The session would attempt to focus more on\nwhat one can do with a text in ASCII and the representation of electronic\ntext rather than just an image, what one can do with a computer that\ncannot be done with a book or an image.  It would be argued that one can\ndo much more than just read a text, and from that starting point one can\nuse markup and methods of preparing the text to take full advantage of\nthe capability of the computer.  That would lead to a discussion of what\nthe European Community calls REUSABILITY, what may better be termed\nDURABILITY, that is, how to prepare or make a text that will last a long\ntime and that can be used for as many applications as possible, which\nwould lead to issues of improving intellectual access.\n\nHOCKEY urged the need to look at ways of using markup to facilitate retrieval,\nnot just for referencing or to help locate an item that is retrieved, but also to put markup tags in\na text to help retrieve the thing sought either with linguistic tagging or\ninterpretation.  HOCKEY also argued that little advancement had occurred in\nthe software tools currently available for retrieving and searching text.\nShe pressed the desideratum of going beyond Boolean searches and performing\nmore sophisticated searching, which the insertion of more markup in the text\nwould facilitate.  Thinking about electronic texts as opposed to images means\nconsidering material that will never appear in print form, or print will not\nbe its primary form, that is, material which only appears in electronic form.\nHOCKEY alluded to the history and the need for markup and tagging and\nelectronic text, which was developed through the use of computers in the\nhumanities; as MICHELSON had observed, Father Busa had started in 1949\nto prepare the first-ever text on the computer.\n\nHOCKEY remarked several large projects, particularly in Europe, for the\ncompilation of dictionaries, language studies, and language analysis, in\nwhich people have built up archives of text and have begun to recognize\nthe need for an encoding format that will be reusable and multifunctional,\nthat can be used not just to print the text, which may be assumed to be a\nbyproduct of what one wants to do, but to structure it inside the computer\nso that it can be searched, built into a Hypertext system, etc.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nWEIBEL * OCLC's approach to preparing electronic text:  retroconversion,\nkeying of texts, more automated ways of developing data * Project ADAPT\nand the CORE Project * Intelligent character recognition does not exist *\nAdvantages of SGML * Data should be free of procedural markup;\ndescriptive markup strongly advocated * OCLC's interface illustrated *\nStorage requirements and costs for putting a lot of information on line *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nStuart WEIBEL, senior research scientist, Online Computer Library Center,\nInc. (OCLC), described OCLC's approach to preparing electronic text.  He\nargued that the electronic world into which we are moving must\naccommodate not only the future but the past as well, and to some degree\neven the present.  Thus, starting out at one end with retroconversion and\nkeying of texts, one would like to move toward much more automated ways\nof developing data.\n\nFor example, Project ADAPT had to do with automatically converting\ndocument images into a structured document database with OCR text as\nindexing and also a little bit of automatic formatting and tagging of\nthat text.  The CORE project hosted by Cornell University, Bellcore,\nOCLC, the American Chemical Society, and Chemical Abstracts, constitutes\nWEIBEL's principal concern at the moment.  This project is an example of\nconverting text for which one already has a machine-readable version into\na format more suitable for electronic delivery and database searching. \n(Since Michael LESK had previously described CORE, WEIBEL would say\nlittle concerning it.)  Borrowing a chemical phrase, de novo synthesis,\nWEIBEL cited the Online Journal of Current Clinical Trials as an example\nof de novo electronic publishing, that is, a form in which the primary\nform of the information is electronic.\n\nProject ADAPT, then, which OCLC completed a couple of years ago and in\nfact is about to resume, is a model in which one takes page images either\nin paper or microfilm and converts them automatically to a searchable\nelectronic database, either on-line or local.  The operating assumption\nis that accepting some blemishes in the data, especially for\nretroconversion of materials, will make it possible to accomplish more. \nNot enough money is available to support perfect conversion.\n\nWEIBEL related several steps taken to perform image preprocessing\n(processing on the image before performing optical character\nrecognition), as well as image postprocessing.  He denied the existence\nof intelligent character recognition and asserted that what is wanted is\npage recognition, which is a long way off.  OCLC has experimented with\nmerging of multiple optical character recognition systems that will\nreduce errors from an unacceptable rate of 5 characters out of every\nl,000 to an unacceptable rate of 2 characters out of every l,000, but it\nis not good enough.  It will never be perfect.\n\nConcerning the CORE Project, WEIBEL observed that Bellcore is taking the\ntopography files, extracting the page images, and converting those\ntopography files to SGML markup.  LESK hands that data off to OCLC, which\nbuilds that data into a Newton database, the same system that underlies\nthe on-line system in virtually all of the reference products at OCLC. \nThe long-term goal is to make the systems interoperable so that not just\nBellcore's system and OCLC's system can access this data, but other\nsystems can as well, and the key to that is the Z39.50 common command\nlanguage and the full-text extension.  Z39.50 is fine for MARC records,\nbut is not enough to do it for full text (that is, make full texts\ninteroperable).\n\nWEIBEL next outlined the critical role of SGML for a variety of purposes,\nfor example, as noted by HOCKEY, in the world of extremely large\ndatabases, using highly structured data to perform field searches. \nWEIBEL argued that by building the structure of the data in (i.e., the\nstructure of the data originally on a printed page), it becomes easy to\nlook at a journal article even if one cannot read the characters and know\nwhere the title or author is, or what the sections of that document would be.\nOCLC wants to make that structure explicit in the database, because it will\nbe important for retrieval purposes.\n\nThe second big advantage of SGML is that it gives one the ability to\nbuild structure into the database that can be used for display purposes\nwithout contaminating the data with instructions about how to format\nthings.  The distinction lies between procedural markup, which tells one\nwhere to put dots on the page, and descriptive markup, which describes\nthe elements of a document.\n\nWEIBEL believes that there should be no procedural markup in the data at\nall, that the data should be completely unsullied by information about\nitalics or boldness.  That should be left up to the display device,\nwhether that display device is a page printer or a screen display device. \nBy keeping one's database free of that kind of contamination, one can\nmake decisions down the road, for example, reorganize the data in ways\nthat are not cramped by built-in notions of what should be italic and\nwhat should be bold.  WEIBEL strongly advocated descriptive markup.  As\nan example, he illustrated the index structure in the CORE data.  With\nsubsequent illustrated examples of markup, WEIBEL acknowledged the common\ncomplaint that SGML is hard to read in its native form, although markup\ndecreases considerably once one gets into the body.  Without the markup,\nhowever, one would not have the structure in the data.  One can pass\nmarkup through a LaTeX processor and convert it relatively easily to a\nprinted version of the document.\n\nWEIBEL next illustrated an extremely cluttered screen dump of OCLC's\nsystem, in order to show as much as possible the inherent capability on\nthe screen.  (He noted parenthetically that he had become a supporter of\nX-Windows as a result of the progress of the CORE Project.)  WEIBEL also\nillustrated the two major parts of the interface:  l) a control box that\nallows one to generate lists of items, which resembles a small table of\ncontents based on key words one wishes to search, and 2) a document\nviewer, which is a separate process in and of itself.  He demonstrated\nhow to follow links through the electronic database simply by selecting\nthe appropriate button and bringing them up.  He also noted problems that\nremain to be accommodated in the interface (e.g., as pointed out by LESK,\nwhat happens when users do not click on the icon for the figure).\n\nGiven the constraints of time, WEIBEL omitted a large number of ancillary\nitems in order to say a few words concerning storage requirements and\nwhat will be required to put a lot of things on line.  Since it is\nextremely expensive to reconvert all of this data, especially if it is\njust in paper form (and even if it is in electronic form in typesetting\ntapes), he advocated building journals electronically from the start.  In\nthat case, if one only has text graphics and indexing (which is all that\none needs with de novo electronic publishing, because there is no need to\ngo back and look at bit-maps of pages), one can get 10,000 journals of\nfull text, or almost 6 million pages per year.  These pages can be put in\napproximately 135 gigabytes of storage, which is not all that much,\nWEIBEL said.  For twenty years, something less than three terabytes would\nbe required.  WEIBEL calculated the costs of storing this information as\nfollows:  If a gigabyte costs approximately $1,000, then a terabyte costs\napproximately $1 million to buy in terms of hardware.  One also needs a\nbuilding to put it in and a staff like OCLC to handle that information. \nSo, to support a terabyte, multiply by five, which gives $5 million per\nyear for a supported terabyte of data.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Tapes saved by ACS are the typography files originally\nsupporting publication of the journal * Cost of building tagged text into\nthe database *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the question-and-answer period that followed WEIBEL's\npresentation, these clarifications emerged.  The tapes saved by the\nAmerican Chemical Society are the typography files that originally\nsupported the publication of the journal.  Although they are not tagged\nin SGML, they are tagged in very fine detail.  Every single sentence is\nmarked, all the registry numbers, all the publications issues, dates, and\nvolumes.  No cost figures on tagging material on a per-megabyte basis\nwere available.  Because ACS's typesetting system runs from tagged text,\nthere is no extra cost per article.  It was unknown what it costs ACS to\nkeyboard the tagged text rather than just keyboard the text in the\ncheapest process.  In other words, since one intends to publish things\nand will need to build tagged text into a typography system in any case,\nif one does that in such a way that it can drive not only typography but\nan electronic system (which is what ACS intends to do--move to SGML\npublishing), the marginal cost is zero.  The marginal cost represents the\ncost of building tagged text into the database, which is small.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nSPERBERG-McQUEEN * Distinction between texts and computers * Implications\nof recognizing that all representation is encoding * Dealing with\ncomplicated representations of text entails the need for a grammar of\ndocuments * Variety of forms of formal grammars * Text as a bit-mapped\nimage does not represent a serious attempt to represent text in\nelectronic form * SGML, the TEI, document-type declarations, and the\nreusability and longevity of data * TEI conformance explicitly allows\nextension or modification of the TEI tag set * Administrative background\nof the TEI * Several design goals for the TEI tag set * An absolutely\nfixed requirement of the TEI Guidelines * Challenges the TEI has\nattempted to face * Good texts not beyond economic feasibility * The\nissue of reproducibility or processability * The issue of mages as\nsimulacra for the text redux * One's model of text determines what one's\nsoftware can do with a text and has economic consequences *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nPrior to speaking about SGML and markup, Michael SPERBERG-McQUEEN, editor,\nText Encoding Initiative (TEI), University of Illinois-Chicago, first drew\na distinction between texts and computers:  Texts are abstract cultural\nand linguistic objects while computers are complicated physical devices,\nhe said.  Abstract objects cannot be placed inside physical devices; with\ncomputers one can only represent text and act upon those representations.\n\nThe recognition that all representation is encoding, SPERBERG-McQUEEN\nargued, leads to the recognition of two things:  1) The topic description\nfor this session is slightly misleading, because there can be no discussion\nof pros and cons of text-coding unless what one means is pros and cons of\nworking with text with computers.  2) No text can be represented in a\ncomputer without some sort of encoding; images are one way of encoding text,\nASCII is another, SGML yet another.  There is no encoding without some\ninformation loss, that is, there is no perfect reproduction of a text that\nallows one to do away with the original.  Thus, the question becomes,\nWhat is the most useful representation of text for a serious work?\nThis depends on what kind of serious work one is talking about.\n\nThe projects demonstrated the previous day all involved highly complex\ninformation and fairly complex manipulation of the textual material.\nIn order to use that complicated information, one has to calculate it\nslowly or manually and store the result.  It needs to be stored, therefore,\nas part of one's representation of the text.  Thus, one needs to store the\nstructure in the text.  To deal with complicated representations of text,\none needs somehow to control the complexity of the representation of a text;\nthat means one needs a way of finding out whether a document and an\nelectronic representation of a document is legal or not; and that\nmeans one needs a grammar of documents.\n\nSPERBERG-McQUEEN discussed the variety of forms of formal grammars,\nimplicit and explicit, as applied to text, and their capabilities.  He\nargued that these grammars correspond to different models of text that\ndifferent developers have.  For example, one implicit model of the text\nis that there is no internal structure, but just one thing after another,\na few characters and then perhaps a start-title command, and then a few\nmore characters and an end-title command.  SPERBERG-McQUEEN also\ndistinguished several kinds of text that have a sort of hierarchical\nstructure that is not very well defined, which, typically, corresponds\nto grammars that are not very well defined, as well as hierarchies that\nare very well defined (e.g., the Thesaurus Linguae Graecae) and extremely\ncomplicated things such as SGML, which handle strictly hierarchical data\nvery nicely.\n\nSPERBERG-McQUEEN conceded that one other model not illustrated on his two\ndisplays was the model of text as a bit-mapped image, an image of a page,\nand confessed to having been converted to a limited extent by the\nWorkshop to the view that electronic images constitute a promising,\nprobably superior alternative to microfilming.  But he was not convinced\nthat electronic images represent a serious attempt to represent text in\nelectronic form.  Many of their problems stem from the fact that they are\nnot direct attempts to represent the text but attempts to represent the\npage, thus making them representations of representations.\n\nIn this situation of increasingly complicated textual information and the\nneed to control that complexity in a useful way (which begs the question\nof the need for good textual grammars), one has the introduction of SGML. \nWith SGML, one can develop specific document-type declarations\nfor specific text types or, as with the TEI, attempts to generate\ngeneral document-type declarations that can handle all sorts of text.\nThe TEI is an attempt to develop formats for text representation that\nwill ensure the kind of reusability and longevity of data discussed earlier.\nIt offers a way to stay alive in the state of permanent technological\nrevolution.\n\nIt has been a continuing challenge in the TEI to create document grammars\nthat do some work in controlling the complexity of the textual object but\nalso allowing one to represent the real text that one will find. \nFundamental to the notion of the TEI is that TEI conformance allows one\nthe ability to extend or modify the TEI tag set so that it fits the text\nthat one is attempting to represent.\n\nSPERBERG-McQUEEN next outlined the administrative background of the TEI. \nThe TEI is an international project to develop and disseminate guidelines\nfor the encoding and interchange of machine-readable text.  It is\nsponsored by the Association for Computers in the Humanities, the\nAssociation for Computational Linguistics, and the Association for\nLiterary and Linguistic Computing.  Representatives of numerous other\nprofessional societies sit on its advisory board.  The TEI has a number\nof affiliated projects that have provided assistance by testing drafts of\nthe guidelines.\n\nAmong the design goals for the TEI tag set, the scheme first of all must\nmeet the needs of research, because the TEI came out of the research\ncommunity, which did not feel adequately served by existing tag sets. \nThe tag set must be extensive as well as compatible with existing and\nemerging standards.  In 1990, version 1.0 of the Guidelines was released\n(SPERBERG-McQUEEN illustrated their contents).\n\nSPERBERG-McQUEEN noted that one problem besetting electronic text has\nbeen the lack of adequate internal or external documentation for many\nexisting electronic texts.  The TEI guidelines as currently formulated\ncontain few fixed requirements, but one of them is this:  There must\nalways be a document header, an in-file SGML tag that provides\n1) a bibliographic description of the electronic object one is talking\nabout (that is, who included it, when, what for, and under which title);\nand 2) the copy text from which it was derived, if any.  If there was\nno copy text or if the copy text is unknown, then one states as much.\nVersion 2.0 of the Guidelines was scheduled to be completed in fall 1992\nand a revised third version is to be presented to the TEI advisory board\nfor its endorsement this coming winter.  The TEI itself exists to provide\na markup language, not a marked-up text.\n\nAmong the challenges the TEI has attempted to face is the need for a\nmarkup language that will work for existing projects, that is, handle the\nlevel of markup that people are using now to tag only chapter, section,\nand paragraph divisions and not much else.  At the same time, such a\nlanguage also will be able to scale up gracefully to handle the highly\ndetailed markup which many people foresee as the future destination of\nmuch electronic text, and which is not the future destination but the\npresent home of numerous electronic texts in specialized areas.\n\nSPERBERG-McQUEEN dismissed the lowest-common-denominator approach as\nunable to support the kind of applications that draw people who have\nnever been in the public library regularly before, and make them come\nback.  He advocated more interesting text and more intelligent text. \nAsserting that it is not beyond economic feasibility to have good texts,\nSPERBERG-McQUEEN noted that the TEI Guidelines listing 200-odd tags\ncontains tags that one is expected to enter every time the relevant\ntextual feature occurs.  It contains all the tags that people need now,\nand it is not expected that everyone will tag things in the same way.\n\nThe question of how people will tag the text is in large part a function\nof their reaction to what SPERBERG-McQUEEN termed the issue of\nreproducibility.  What one needs to be able to reproduce are the things\none wants to work with.  Perhaps a more useful concept than that of\nreproducibility or recoverability is that of processability, that is,\nwhat can one get from an electronic text without reading it again\nin the original.  He illustrated this contention with a page from\nJan Comenius's bilingual Introduction to Latin.\n\nSPERBERG-McQUEEN returned at length to the issue of images as simulacra\nfor the text, in order to reiterate his belief that in the long run more\nthan images of pages of particular editions of the text are needed,\nbecause just as second-generation photocopies and second-generation\nmicrofilm degenerate, so second-generation representations tend to\ndegenerate, and one tends to overstress some relatively trivial aspects\nof the text such as its layout on the page, which is not always\nsignificant, despite what the text critics might say, and slight other\npieces of information such as the very important lexical ties between the\nEnglish and Latin versions of Comenius's bilingual text, for example. \nMoreover, in many crucial respects it is easy to fool oneself concerning\nwhat a scanned image of the text will accomplish.  For example, in order\nto study the transmission of texts, information concerning the text\ncarrier is necessary, which scanned images simply do not always handle. \nFurther, even the high-quality materials being produced at Cornell use\nmuch of the information that one would need if studying those books as\nphysical objects.  It is a choice that has been made.  It is an arguably\njustifiable choice, but one does not know what color those pen strokes in\nthe margin are or whether there was a stain on the page, because it has\nbeen filtered out.  One does not know whether there were rips in the page\nbecause they do not show up, and on a couple of the marginal marks one\nloses half of the mark because the pen is very light and the scanner\nfailed to pick it up, and so what is clearly a checkmark in the margin of\nthe original becomes a little scoop in the margin of the facsimile. \nStandard problems for facsimile editions, not new to electronics, but\nalso true of light-lens photography, and are remarked here because it is\nimportant that we not fool ourselves that even if we produce a very nice\nimage of this page with good contrast, we are not replacing the\nmanuscript any more than microfilm has replaced the manuscript.\n\nThe TEI comes from the research community, where its first allegiance\nlies, but it is not just an academic exercise.  It has relevance far\nbeyond those who spend all of their time studying text, because one's\nmodel of text determines what one's software can do with a text.  Good\nmodels lead to good software.  Bad models lead to bad software.  That has\neconomic consequences, and it is these economic consequences that have\nled the European Community to help support the TEI, and that will lead,\nSPERBERG-McQUEEN hoped, some software vendors to realize that if they\nprovide software with a better model of the text they can make a killing.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Implications of different DTDs and tag sets * ODA versus SGML *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nDuring the discussion that followed, several additional points were made. \nNeither AAP (i.e., Association of American Publishers) nor CALS (i.e.,\nComputer-aided Acquisition and Logistics Support) has a document-type\ndefinition for ancient Greek drama, although the TEI will be able to\nhandle that.  Given this state of affairs and assuming that the\ntechnical-journal producers and the commercial vendors decide to use the\nother two types, then an institution like the Library of Congress, which\nmight receive all of their publications, would have to be able to handle\nthree different types of document definitions and tag sets and be able to\ndistinguish among them.\n\nOffice Document Architecture (ODA) has some advantages that flow from its\ntight focus on office documents and clear directions for implementation. \nMuch of the ODA standard is easier to read and clearer at first reading\nthan the SGML standard, which is extremely general.  What that means is\nthat if one wants to use graphics in TIFF and ODA, one is stuck, because\nODA defines graphics formats while TIFF does not, whereas SGML says the\nworld is not waiting for this work group to create another graphics format.\nWhat is needed is an ability to use whatever graphics format one wants.\n\nThe TEI provides a socket that allows one to connect the SGML document to\nthe graphics.  The notation that the graphics are in is clearly a choice\nthat one needs to make based on her or his environment, and that is one\nadvantage.  SGML is less megalomaniacal in attempting to define formats\nfor all kinds of information, though more megalomaniacal in attempting to\ncover all sorts of documents.  The other advantage is that the model of\ntext represented by SGML is simply an order of magnitude richer and more\nflexible than the model of text offered by ODA.  Both offer hierarchical\nstructures, but SGML recognizes that the hierarchical model of the text\nthat one is looking at may not have been in the minds of the designers,\nwhereas ODA does not.\n\nODA is not really aiming for the kind of document that the TEI wants to\nencompass.  The TEI can handle the kind of material ODA has, as well as a\nsignificantly broader range of material.  ODA seems to be very much\nfocused on office documents, which is what it started out being called--\noffice document architecture.\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nCALALUCA * Text-encoding from a publisher's perspective *\nResponsibilities of a publisher * Reproduction of Migne's Latin series\nwhole and complete with SGML tags based on perceived need and expected\nuse * Particular decisions arising from the general decision to produce\nand publish PLD *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nThe final speaker in this session, Eric CALALUCA, vice president,\nChadwyck-Healey, Inc., spoke from the perspective of a publisher re\ntext-encoding, rather than as one qualified to discuss methods of\nencoding data, and observed that the presenters sitting in the room,\nwhether they had chosen to or not, were acting as publishers:  making\nchoices, gathering data, gathering information, and making assessments. \nCALALUCA offered the hard-won conviction that in publishing very large\ntext files (such as PLD), one cannot avoid making personal judgments of\nappropriateness and structure.\n\nIn CALALUCA's view, encoding decisions stem from prior judgments.  Two\nnotions have become axioms for him in the consideration of future sources\nfor electronic publication:  1) electronic text publishing is as personal\nas any other kind of publishing, and questions of if and how to encode\nthe data are simply a consequence of that prior decision;  2) all\npersonal decisions are open to criticism, which is unavoidable.\n\nCALALUCA rehearsed his role as a publisher or, better, as an intermediary\nbetween what is viewed as a sound idea and the people who would make use\nof it.  Finding the specialist to advise in this process is the core of\nthat function.  The publisher must monitor and hug the fine line between\ngiving users what they want and suggesting what they might need.  One\nresponsibility of a publisher is to represent the desires of scholars and\nresearch librarians as opposed to bullheadedly forcing them into areas\nthey would not choose to enter.\n\nCALALUCA likened the questions being raised today about data structure\nand standards to the decisions faced by the Abbe Migne himself during\nproduction of the Patrologia series in the mid-nineteenth century. \nChadwyck-Healey's decision to reproduce Migne's Latin series whole and\ncomplete with SGML tags was also based upon a perceived need and an\nexpected use.  In the same way that Migne's work came to be far more than\na simple handbook for clerics, PLD is already far more than a database\nfor theologians.  It is a bedrock source for the study of Western\ncivilization, CALALUCA asserted.\n\nIn regard to the decision to produce and publish PLD, the editorial board\noffered direct judgments on the question of appropriateness of these\ntexts for conversion, their encoding and their distribution, and\nconcluded that the best possible project was one that avoided overt\nintrusions or exclusions in so important a resource.  Thus, the general\ndecision to transmit the original collection as clearly as possible with\nthe widest possible avenues for use led to other decisions:  1) To encode\nthe data or not, SGML or not, TEI or not.  Again, the expected user\ncommunity asserted the need for normative tagging structures of important\nhumanities texts, and the TEI seemed the most appropriate structure for\nthat purpose.  Research librarians, who are trained to view the larger\nimpact of electronic text sources on 80 or 90 or 100 doctoral\ndisciplines, loudly approved the decision to include tagging.  They see\nwhat is coming better than the specialist who is completely focused on\none edition of Ambrose's De Anima, and they also understand that the\npotential uses exceed present expectations.  2) What will be tagged and\nwhat will not.  Once again, the board realized that one must tag the\nobvious.  But in no way should one attempt to identify through encoding\nschemes every single discrete area of a text that might someday be\nsearched.  That was another decision.  Searching by a column number, an\nauthor, a word, a volume, permitting combination searches, and tagging\nnotations seemed logical choices as core elements.  3) How does one make\nthe data available?  Tieing it to a CD-ROM edition creates limitations,\nbut a magnetic tape file that is very large, is accompanied by the\nencoding specifications, and that allows one to make local modifications\nalso allows one to incorporate any changes one may desire within the\nbounds of private research, though exporting tag files from a CD-ROM\ncould serve just as well.  Since no one on the board could possibly\nanticipate each and every way in which a scholar might choose to mine\nthis data bank, it was decided to satisfy the basics and make some\nprovisions for what might come.  4) Not to encode the database would rob\nit of the interchangeability and portability these important texts should\naccommodate.  For CALALUCA, the extensive options presented by full-text\nsearching require care in text selection and strongly support encoding of\ndata to facilitate the widest possible search strategies.  Better\nsoftware can always be created, but summoning the resources, the people,\nand the energy to reconvert the text is another matter.\n\nPLD is being encoded, captured, and distributed, because to\nChadwyck-Healey and the board it offers the widest possible array of\nfuture research applications that can be seen today.  CALALUCA concluded\nby urging the encoding of all important text sources in whatever way\nseems most appropriate and durable at the time, without blanching at the\nthought that one's work may require emendation in the future.  (Thus,\nChadwyck-Healey produced a very large humanities text database before the\nfinal release of the TEI Guidelines.)\n\n                                 ******\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nDISCUSSION * Creating texts with markup advocated * Trends in encoding *\nThe TEI and the issue of interchangeability of standards * A\nmisconception concerning the TEI * Implications for an institution like\nLC in the event that a multiplicity of DTDs develops * Producing images\nas a first step towards possible conversion to full text through\ncharacter recognition * The AAP tag sets as a common starting point and\nthe need for caution *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nHOCKEY prefaced the discussion that followed with several comments in\nfavor of creating texts with markup and on trends in encoding.  In the\nfuture, when many more texts are available for on-line searching, real\nproblems in finding what is wanted will develop, if one is faced with\nmillions of words of data.  It therefore becomes important to consider\nputting markup in texts to help searchers home in on the actual things\nthey wish to retrieve.  Various approaches to refining retrieval methods\ntoward this end include building on a computer version of a dictionary\nand letting the computer look up words in it to obtain more information\nabout the semantic structure or semantic field of a word, its grammatical\nstructure, and syntactic structure.\n\nHOCKEY commented on the present keen interest in the encoding world\nin creating:  1) machine-readable versions of dictionaries that can be\ninitially tagged in SGML, which gives a structure to the dictionary entry;\nthese entries can then be converted into a more rigid or otherwise\ndifferent database structure inside the computer, which can be treated as\na dynamic tool for searching mechanisms; 2) large bodies of text to study\nthe language.  In order to incorporate more sophisticated mechanisms,\nmore about how words behave needs to be known, which can be learned in\npart from information in dictionaries.  However, the last ten years have\nseen much interest in studying the structure of printed dictionaries\nconverted into computer-readable form.  The information one derives about\nmany words from those is only partial, one or two definitions of the\ncommon or the usual meaning of a word, and then numerous definitions of\nunusual usages.  If the computer is using a dictionary to help retrieve\nwords in a text, it needs much more information about the common usages,\nbecause those are the ones that occur over and over again.  Hence the\ncurrent interest in developing large bodies of text in computer-readable\nform in order to study the language.  Several projects are engaged in\ncompiling, for example, 100 million words. HOCKEY described one with\nwhich she was associated briefly at Oxford University involving\ncompilation of 100 million words of British English:  about 10 percent of\nthat will contain detailed linguistic tagging encoded in SGML; it will\nhave word class taggings, with words identified as nouns, verbs,\nadjectives, or other parts of speech.  This tagging can then be used by\nprograms which will begin to learn a bit more about the structure of the\nlanguage, and then, can go to tag more text.\n\nHOCKEY said that the more that is tagged accurately, the more one can\nrefine the tagging process and thus the bigger body of text one can build\nup with linguistic tagging incorporated into it.  Hence, the more tagging\nor annotation there is in the text, the more one may begin to learn about\nlanguage and the more it will help accomplish more intelligent OCR.  She\nrecommended the development of software tools that will help one begin to\nunderstand more about a text, which can then be applied to scanning\nimages of that text in that format and to using more intelligence to help\none interpret or understand the text.\n\nHOCKEY posited the need to think about common methods of text-encoding\nfor a long time to come, because building these large bodies of text is\nextremely expensive and will only be done once.\n\nIn the more general discussion on approaches to encoding that followed,\nthese points were made:\n\nBESSER identified the underlying problem with standards that all have to\nstruggle with in adopting a standard, namely, the tension between a very\nhighly defined standard that is very interchangeable but does not work\nfor everyone because something is lacking, and a standard that is less\ndefined, more open, more adaptable, but less interchangeable.  Contending\nthat the way in which people use SGML is not sufficiently defined, BESSER\nwondered 1) if people resist the TEI because they think it is too defined\nin certain things they do not fit into, and 2) how progress with\ninterchangeability can be made without frightening people away.\n\nSPERBERG-McQUEEN replied that the published drafts of the TEI had met\nwith surprisingly little objection on the grounds that they do not allow\none to handle X or Y or Z.  Particular concerns of the affiliated\nprojects have led, in practice, to discussions of how extensions are to\nbe made; the primary concern of any project has to be how it can be\nrepresented locally, thus making interchange secondary.  The TEI has\nreceived much criticism based on the notion that everything in it is\nrequired or even recommended, which, as it happens, is a misconception\nfrom the beginning,   because none of it is required and very little is\nactually actively recommended for all cases, except that one document\none's source.\n\nSPERBERG-McQUEEN agreed with BESSER about this trade-off:  all the\nprojects in a set of twenty TEI-conformant projects will not necessarily\ntag the material in the same way.  One result of the TEI will be that the\neasiest problems will be solved--those dealing with the external form of\nthe information; but the problem that is hardest in interchange is that\none is not encoding what another wants, and vice versa.  Thus, after\nthe adoption of a common notation, the differences in the underlying\nconceptions of what is interesting about texts become more visible.\nThe success of a standard like the TEI will lie in the ability of\nthe recipient of interchanged texts to use some of what it contains\nand to add the information that was not encoded that one wants, in a\nlayered way, so that texts can be gradually enriched and one does not\nhave to put in everything all at once.  Hence, having a well-behaved\nmarkup scheme is important.\n\nSTEVENS followed up on the paradoxical analogy that BESSER alluded to in\nthe example of the MARC records, namely, the formats that are the same\nexcept that they are different.  STEVENS drew a parallel between\ndocument-type definitions and MARC records for books and serials and maps,\nwhere one has a tagging structure and there is a text-interchange. \nSTEVENS opined that the producers of the information will set the terms\nfor the standard (i.e., develop document-type definitions for the users\nof their products), creating a situation that will be problematical for\nan institution like the Library of Congress, which will have to deal with\nthe DTDs in the event that a multiplicity of them develops.  Thus,\nnumerous people are seeking a standard but cannot find the tag set that\nwill be acceptable to them and their clients.  SPERBERG-McQUEEN agreed\nwith this view, and said that the situation was in a way worse:  attempting\nto unify arbitrary DTDs resembled attempting to unify a MARC record with a\nbibliographic record done according to the Prussian instructions. \nAccording to STEVENS, this situation occurred very early in the process.\n\nWATERS recalled from early discussions on Project Open Book the concern\nof many people that merely by producing images, POB was not really\nenhancing intellectual access to the material.  Nevertheless, not wishing\nto overemphasize the opposition between imaging and full text, WATERS\nstated that POB views getting the images as a first step toward possibly\nconverting to full text through character recognition, if the technology\nis appropriate.  WATERS also emphasized that encoding is involved even\nwith a set of images.\n\nSPERBERG-McQUEEN agreed with WATERS that one can create an SGML document\nconsisting wholly of images.  At first sight, organizing graphic images\nwith an SGML document may not seem to offer great advantages, but the\nadvantages of the scheme WATERS described would be precisely that\nability to move into something that is more of a multimedia document:\na combination of transcribed text and page images.  WEIBEL concurred in\nthis judgment, offering evidence from Project ADAPT, where a page is\ndivided into text elements and graphic elements, and in fact the text\nelements are organized by columns and lines.  These lines may be used as\nthe basis for distributing documents in a network environment.  As one\ndevelops software intelligent enough to recognize what those elements\nare, it makes sense to apply SGML to an image initially, that may, in\nfact, ultimately become more and more text, either through OCR or edited\nOCR or even just through keying.  For WATERS, the labor of composing the\ndocument and saying this set of documents or this set of images belongs\nto this document constitutes a significant investment.\n\nWEIBEL also made the point that the AAP tag sets, while not excessively\nprescriptive, offer a common starting point; they do not define the\nstructure of the documents, though.  They have some recommendations about\nDTDs one could use as examples, but they do just suggest tag sets.   For\nexample, the CORE project attempts to use the AAP markup as much as\npossible, but there are clearly areas where structure must be added. \nThat in no way contradicts the use of AAP tag sets.\n\nSPERBERG-McQUEEN noted that the TEI prepared a long working paper early\non about the AAP tag set and what it lacked that the TEI thought it\nneeded, and a fairly long critique of the naming conventions, which has\nled to a very different style of naming in the TEI.  He stressed the\nimportance of the opposition between prescriptive markup, the kind that a\npublisher or anybody can do when producing documents de novo, and\ndescriptive markup, in which one has to take what the text carrier\nprovides.  In these particular tag sets it is easy to overemphasize this\nopposition, because the AAP tag set is extremely flexible.  Even if one\njust used the DTDs, they allow almost anything to appear almost anywhere.\n\n                                 ******\n\nSESSION VI.  COPYRIGHT ISSUES\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nPETERS * Several cautions concerning copyright in an electronic\nenvironment * Review of copyright law in the United States * The notion\nof the public good and the desirability of incentives to promote it *\nWhat copyright protects * Works not protected by copyright * The rights\nof copyright holders * Publishers' concerns in today's electronic\nenvironment * Compulsory licenses * The price of copyright in a digital\nmedium and the need for cooperation * Additional clarifications *  Rough\njustice oftentimes the outcome in numerous copyright matters * Copyright\nin an electronic society * Copyright law always only sets up the\nboundaries; anything can be changed by contract *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nMarybeth PETERS, policy planning adviser to the Register of Copyrights,\nLibrary of Congress,   made several general comments and then opened the\nfloor to discussion of subjects of interest to the audience.\n\nHaving attended several sessions in an effort to gain a sense of what\npeople did and where copyright would affect their lives, PETERS expressed\nthe following cautions:\n\n     * If one takes and converts materials and puts them in new forms,\n     then, from a copyright point of view, one is creating something and\n     will receive some rights.\n\n     * However, if what one is converting already exists, a question\n     immediately arises about the status of the materials in question.\n\n     * Putting something in the public domain in the United States offers\n     some freedom from anxiety, but distributing it throughout the world\n     on a network is another matter, even if one has put it in the public\n     domain in the United States.  Re foreign laws, very frequently a\n     work can be in the public domain in the United States but protected\n     in other countries.  Thus, one must consider all of the places a\n     work may reach, lest one unwittingly become liable to being faced\n     with a suit for copyright infringement, or at least a letter\n     demanding discussion of what one is doing.\n\nPETERS reviewed copyright law in the United States.  The U.S.\nConstitution effectively states that Congress has the power to enact\ncopyright laws for two purposes:  1) to encourage the creation and\ndissemination of intellectual works for the good of society as a whole;\nand, significantly, 2) to give creators and those who package and\ndisseminate materials the economic rewards that are due them.\n\nCongress strives to strike a balance, which at times can become an\nemotional issue.  The United States has never accepted the notion of the\nnatural right of an author so much as it has accepted the notion of the\npublic good and the desirability of incentives to promote it.  This state\nof affairs, however, has created strains on the international level and\nis the reason for several of the differences in the laws that we have. \nToday the United States protects almost every kind of work that can be\ncalled an expression of an author.  The standard for gaining copyright\nprotection is simply originality.  This is a low standard and means that\na work is not copied from something else, as well as shows a certain\nminimal amount of authorship.  One can also acquire copyright protection\nfor making a new version of preexisting material, provided it manifests\nsome spark of creativity.\n\nHowever, copyright does not protect ideas, methods, systems--only the way\nthat one expresses those things.  Nor does copyright protect anything\nthat is mechanical, anything that does not involve choice, or criteria\nconcerning whether or not one should do a thing.  For example, the\nresults of a process called declicking, in which one mechanically removes\nimpure sounds from old recordings, are not copyrightable.  On the other\nhand, the choice to record a song digitally and to increase the sound of\nviolins or to bring up the tympani constitutes the results of conversion\nthat are copyrightable.  Moreover, if a work is protected by copyright in\nthe United States, one generally needs the permission of the copyright\nowner to convert it.  Normally, who will own the new--that is, converted-\n-material is a matter of contract.  In the absence of a contract, the\nperson who creates the new material is the author and owner.  But people\ndo not generally think about the copyright implications until after the\nfact.  PETERS stressed the need when dealing with copyrighted works to\nthink about copyright in advance.  One's bargaining power is much greater\nup front than it is down the road.\n\nPETERS next discussed works not protected by copyright, for example, any\nwork done by a federal employee as part of his or her official duties is\nin the public domain in the United States.  The issue is not wholly free\nof doubt concerning whether or not the work is in the public domain\noutside the United States.  Other materials in the public domain include: \nany works published more than seventy-five years ago, and any work\npublished in the United States more than twenty-eight years ago, whose\ncopyright was not renewed.  In talking about the new technology and\nputting material in a digital form to send all over the world, PETERS\ncautioned, one must keep in mind that while the rights may not be an\nissue in the United States, they may be in different parts of the world,\nwhere most countries previously employed a copyright term of the life of\nthe author plus fifty years.\n\nPETERS next reviewed the economics of copyright holding.  Simply,\neconomic rights are the rights to control the reproduction of a work in\nany form.  They belong to the author, or in the case of a work made for\nhire, the employer.  The second right, which is critical to conversion,\nis the right to change a work.  The right to make new versions is perhaps\none of the most significant rights of authors, particularly in an\nelectronic world.  The third right is the right to publish the work and\nthe right to disseminate it, something that everyone who deals in an\nelectronic medium needs to know.  The basic rule is if a copy is sold,\nall rights of distribution are extinguished with the sale of that copy. \nThe key is that it must be sold.  A number of companies overcome this\nobstacle by leasing or renting their product.  These companies argue that\nif the material is rented or leased and not sold, they control the uses\nof a work.  The fourth right, and one very important in a digital world,\nis a right of public performance, which means the right to show the work\nsequentially.  For example, copyright owners control the showing of a\nCD-ROM product in a public place such as a public library.  The reverse\nside of public performance is something called the right of public\ndisplay.  Moral rights also exist, which at the federal level apply only\nto very limited visual works of art, but in theory may apply under\ncontract and other principles.  Moral rights may include the right of an\nauthor to have his or her name on a work, the right of attribution, and\nthe right to object to distortion or mutilation--the right of integrity.\n\nThe way copyright law is worded gives much latitude to activities such as\npreservation; to use of material for scholarly and research purposes when\nthe user does not make multiple copies; and to the generation of\nfacsimile copies of unpublished works by libraries for themselves and\nother libraries.  But the law does not allow anyone to become the\ndistributor of the product for the entire world.  In today's electronic\nenvironment, publishers are extremely concerned that the entire world is\nnetworked and can obtain the information desired from a single copy in a\nsingle library.  Hence, if there is to be only one sale, which publishers\nmay choose to live with, they will obtain their money in other ways, for\nexample, from access and use.  Hence, the development of site licenses\nand other kinds of agreements to cover what publishers believe they\nshould be compensated for.  Any solution that the United States takes\ntoday has to consider the international arena.\n\nNoting that the United States is a member of the Berne Convention and\nsubscribes to its provisions, PETERS described the permissions process. \nShe also defined compulsory licenses.  A compulsory license, of which the\nUnited States has had a few, builds into the law the right to use a work\nsubject to certain terms and conditions.  In the international arena,\nhowever, the ability to use compulsory licenses is extremely limited. \nThus, clearinghouses and other collectives comprise one option that has\nsucceeded in providing for use of a work.  Often overlooked when one\nbegins to use copyrighted material and put products together is how\nexpensive the permissions process and managing it is.  According to\nPETERS, the price of copyright in a digital medium, whatever solution is\nworked out, will include managing and assembling the database.  She\nstrongly recommended that publishers and librarians or people with\nvarious backgrounds cooperate to work out administratively feasible\nsystems, in order to produce better results.\n\nIn the lengthy question-and-answer period that followed PETERS's\npresentation, the following points emerged:\n\n     * The Copyright Office maintains that anything mechanical and\n     totally exhaustive probably is not protected.  In the event that\n     what an individual did in developing potentially copyrightable\n     material is not understood, the Copyright Office will ask about the\n     creative choices the applicant chose to make or not to make.  As a\n     practical matter, if one believes she or he has made enough of those\n     choices, that person has a right to assert a copyright and someone\n     else must assert that the work is not copyrightable.  The more\n     mechanical, the more automatic, a thing is, the less likely it is to\n     be copyrightable.\n\n     * Nearly all photographs are deemed to be copyrightable, but no one\n     worries about them much, because everyone is free to take the same\n     image.  Thus, a photographic copyright represents what is called a\n     \"thin\" copyright.  The photograph itself must be duplicated, in\n     order for copyright to be violated.\n\n     * The Copyright Office takes the position that X-rays are not\n     copyrightable because they are mechanical.  It  can be argued\n     whether or not image enhancement in scanning can be protected.  One\n     must exercise care with material created with public funds and\n     generally in the public domain.  An article written by a federal\n     employee, if written as part of official duties, is not\n     copyrightable.  However, control over a scientific article written\n     by a National Institutes of Health grantee (i.e., someone who\n     receives money from the U.S. government), depends on NIH policy.  If\n     the government agency has no policy (and that policy can be\n     contained in its regulations, the contract, or the grant), the\n     author retains copyright.  If a provision of the contract, grant, or\n     regulation states that there will be no copyright, then it does not\n     exist.  When a work is created, copyright automatically comes into\n     existence unless something exists that says it does not.\n\n     * An enhanced electronic copy of a print copy of an older reference\n     work in the public domain that does not contain copyrightable new\n     material is a purely mechanical rendition of the original work, and\n     is not copyrightable.\n\n     * Usually, when a work enters the public domain, nothing can remove\n     it.  For example, Congress recently passed into law the concept of\n     automatic renewal, which means that copyright on any work published\n     between l964 and l978 does not have to be renewed in order to\n     receive a seventy-five-year term.  But any work not renewed before\n     1964 is in the public domain.\n\n     * Concerning whether or not the United States keeps track of when\n     authors die, nothing was ever done, nor is anything being done at\n     the moment by the Copyright Office.\n\n     * Software that drives a mechanical process is itself copyrightable. \n     If one changes platforms, the software itself has a copyright.  The\n     World Intellectual Property Organization will hold a symposium 28\n     March through 2 April l993, at Harvard University, on digital\n     technology, and will study this entire issue.  If one purchases a\n     computer software package, such as MacPaint, and creates something\n     new, one receives protection only for that which has been added.\n\nPETERS added that often in copyright matters, rough justice is the\noutcome, for example, in collective licensing, ASCAP (i.e., American\nSociety of Composers, Authors, and Publishers), and BMI (i.e., Broadcast\nMusic, Inc.), where it may seem that the big guys receive more than their\ndue.  Of course, people ought not to copy a creative product without\npaying for it; there should be some compensation.  But the truth of the\nworld, and it is not a great truth, is that the big guy gets played on\nthe radio more frequently than the little guy, who has to do much more\nuntil he becomes a big guy.  That is true of every author, every\ncomposer, everyone, and, unfortunately, is part of life.\n\nCopyright always originates with the author, except in cases of works\nmade for hire.  (Most software falls into this category.)  When an author\nsends his article to a journal, he has not relinquished copyright, though\nhe retains the right to relinquish it.  The author receives absolutely\neverything.  The less prominent the author, the more leverage the\npublisher will have in contract negotiations.  In order to transfer the\nrights, the author must sign an agreement giving them away.\n\nIn an electronic society, it is important to be able to license a writer\nand work out deals.  With regard to use of a work, it usually is much\neasier when a publisher holds the rights.  In an electronic era, a real\nproblem arises when one is digitizing and making information available. \nPETERS referred again to electronic licensing clearinghouses.  Copyright\nought to remain with the author, but as one moves forward globally in the\nelectronic arena, a middleman who can handle the various rights becomes\nincreasingly necessary.\n\nThe notion of copyright law is that it resides with the individual, but\nin an on-line environment, where a work can be adapted and tinkered with\nby many individuals, there is concern.  If changes are authorized and\nthere is no agreement to the contrary, the person who changes a work owns\nthe changes.  To put it another way, the person who acquires permission\nto change a work technically will become the author and the owner, unless\nsome agreement to the contrary has been made.  It is typical for the\noriginal publisher to try to control all of the versions and all of the\nuses.  Copyright law always only sets up the boundaries.  Anything can be\nchanged by contract.\n\n                                 ******\n\nSESSION VII.  CONCLUSION\n\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\nGENERAL DISCUSSION * Two questions for discussion * Different emphases in\nthe Workshop * Bringing the text and image partisans together *\nDesiderata in planning the long-term development of something * Questions\nsurrounding the issue of electronic deposit * Discussion of electronic\ndeposit as an allusion to the issue of standards * Need for a directory\nof preservation projects in digital form and for access to their\ndigitized files * CETH's catalogue of machine-readable texts in the\nhumanities * What constitutes a publication in the electronic world? *\nNeed for LC to deal with the concept of on-line publishing * LC's Network\nDevelopment Office  exploring the limits of MARC as a standard in terms\nof handling electronic information * Magnitude of the problem and the\nneed for distributed responsibility in order to maintain and store\nelectronic information * Workshop participants to be viewed as a starting\npoint * Development of a network version of AM urged * A step toward AM's\nconstruction of some sort of apparatus for network access * A delicate\nand agonizing policy question for LC * Re the issue of electronic\ndeposit, LC urged to initiate a catalytic process in terms of distributed\nresponsibility * Suggestions for cooperative ventures * Commercial\npublishers' fears * Strategic questions for getting the image and text\npeople to think through long-term cooperation * Clarification of the\ndriving force behind both the Perseus and the Cornell Xerox projects *\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nIn his role as moderator of the concluding session, GIFFORD raised two\nquestions he believed would benefit from discussion:  1) Are there enough\ncommonalities among those of us that have been here for two days so that\nwe can see courses of action that should be taken in the future?  And, if\nso, what are they and who might take them?  2) Partly derivative from\nthat, but obviously very dangerous to LC as host, do you see a role for\nthe Library of Congress in all this?  Of course, the Library of Congress\nholds a rather special status in a number of these matters, because it is\nnot perceived as a player with an economic stake in them, but are there\nroles that LC can play that can help advance us toward where we are heading?\n\nDescribing himself as an uninformed observer of the technicalities of the\nlast two days, GIFFORD detected three different emphases in the Workshop: \n1) people who are very deeply committed to text; 2) people who are almost\npassionate about images; and 3) a few people who are very committed to\nwhat happens to the networks.  In other words, the new networking\ndimension, the accessibility of the processability, the portability of\nall this across the networks.  How do we pull those three together?\n\nAdding a question that reflected HOCKEY's comment that this was the\nfourth workshop she had attended in the previous thirty days, FLEISCHHAUER\nwondered to what extent this meeting had reinvented the wheel, or if it\nhad contributed anything in the way of bringing together a different group\nof people from those who normally appear on the workshop circuit.\n\nHOCKEY confessed to being struck at this meeting and the one the\nElectronic Pierce Consortium organized the previous week that this was a\ncoming together of people working on texts and not images.  Attempting to\nbring the two together is something we ought to be thinking about for the\nfuture:  How one can think about working with image material to begin\nwith, but structuring it and digitizing it in such a way that at a later\nstage it can be interpreted into text, and find a common way of building\ntext and images together so that they can be used jointly in the future,\nwith the network support to begin there because that is how people will\nwant to access it.\n\nIn planning the long-term development of something, which is what is\nbeing done in electronic text, HOCKEY stressed the importance not only\nof discussing the technical aspects of how one does it but particularly\nof thinking about what the people who use the stuff will want to do.\nBut conversely, there are numerous things that people start to do with\nelectronic text or material that nobody ever thought of in the beginning.\n\nLESK, in response to the question concerning the role of the Library of\nCongress, remarked the often suggested desideratum of having electronic\ndeposit:  Since everything is now computer-typeset, an entire decade of\nmaterial that was machine-readable exists, but the publishers frequently\ndid not save it; has LC taken any action to have its copyright deposit\noperation start collecting these machine-readable versions?  In the\nabsence of PETERS, GIFFORD replied that the question was being\nactively considered but that that was only one dimension of the problem.\nAnother dimension is the whole question of the integrity of the original\nelectronic document.  It becomes highly important in science to prove\nauthorship.  How will that be done?\n\nERWAY explained that, under the old policy, to make a claim for a\ncopyright for works that were published in electronic form, including\nsoftware, one had to submit a paper copy of the first and last twenty\npages of code--something that represented the work but did not include\nthe entire work itself and had little value to anyone.  As a temporary\nmeasure, LC has claimed the right to demand electronic versions of\nelectronic publications.  This measure entails a proactive role for the\nLibrary to say that it wants a particular electronic version.  Publishers\nthen have perhaps a year to submit it.  But the real problem for LC is\nwhat to do with all this material in all these different formats.  Will\nthe Library mount it?  How will it give people access to it?  How does LC\nkeep track of the appropriate computers, software, and media?  The situation\nis so hard to control, ERWAY said, that it makes sense for each publishing\nhouse to maintain its own archive.  But LC cannot enforce that either.\n\nGIFFORD acknowledged LESK's suggestion that establishing a priority\noffered the solution, albeit a fairly complicated one.  But who maintains\nthat register?, he asked.  GRABER noted that LC does attempt to collect a\nMacintosh version and the IBM-compatible version of software.  It does\nnot collect other versions.  But while true for software, BYRUM observed,\nthis reply does not speak to materials, that is, all the materials that\nwere published that were on somebody's microcomputer or driver tapes\nat a publishing office across the country.  LC does well to acquire\nspecific machine-readable products selectively that were intended to be\nmachine-readable.  Materials that were in machine-readable form at one time,\nBYRUM said, would be beyond LC's capability at the moment, insofar as\nattempting to acquire, organize, and preserve them are concerned--and\npreservation would be the most important consideration.  In this\nconnection, GIFFORD reiterated the need to work out some sense of\ndistributive responsibility for a number of these issues, which\ninevitably will require significant cooperation and discussion.\nNobody can do it all.\n\nLESK suggested that some publishers may look with favor on LC beginning\nto serve as a depository of tapes in an electronic manuscript standard. \nPublishers may view this as a service that they did not have to perform\nand they might send in tapes.  However, SPERBERG-McQUEEN countered,\nalthough publishers have had equivalent services available to them for a\nlong time, the electronic text archive has never turned away or been\nflooded with tapes and is forever sending feedback to the depositor. \nSome publishers do send in tapes.\n\nANDRE viewed this discussion as an allusion to the issue of standards. \nShe recommended that the AAP standard and the TEI, which has already been\nsomewhat harmonized internationally and which also shares several\ncompatibilities with the AAP, be harmonized to ensure sufficient\ncompatibility in the software.  She drew the line at saying LC ought to\nbe the locus or forum for such harmonization.\n\nTaking the group in a slightly different direction, but one where at\nleast in the near term LC might play a helpful role, LYNCH remarked the\nplans of a number of projects to carry out preservation by creating\ndigital images that will end up in on-line or near-line storage at some\ninstitution.   Presumably, LC will link this material somehow to its\non-line catalog in most cases.  Thus, it is in a digital form.  LYNCH had\nthe impression that many of these institutions would be willing to make\nthose files accessible to other people outside the institution, provided\nthat there is no copyright problem.  This desideratum will require\npropagating the knowledge that those digitized files exist, so that they\ncan end up in other on-line catalogs.  Although uncertain about the\nmechanism for achieving this result, LYNCH said that it warranted\nscrutiny because it seemed to be connected to some of the basic issues of\ncataloging and distribution of records.  It would be  foolish, given the\namount of work that all of us have to do and our meager resources, to\ndiscover multiple institutions digitizing the same work.  Re microforms,\nLYNCH said, we are in pretty good shape.\n\nBATTIN called this a big problem and noted that the Cornell people (who\nhad already departed) were working on it.  At issue from the beginning\nwas to learn how to catalog that information into RLIN and then into\nOCLC, so that it would be accessible.  That issue remains to be resolved. \nLYNCH rejoined that putting it into OCLC or RLIN was helpful insofar as\nsomebody who is thinking of performing preservation activity on that work\ncould learn about it.  It is not necessarily helpful for institutions to\nmake that available.  BATTIN opined that the idea was that it not only be\nfor preservation purposes but for the convenience of people looking for\nthis material.  She endorsed LYNCH's dictum that duplication of this\neffort was to be avoided by every means.\n\nHOCKEY informed the Workshop about one major current activity of CETH,\nnamely a catalogue of machine-readable texts in the humanities.  Held on\nRLIN at present, the catalogue has been concentrated on ASCII as opposed\nto digitized images of text.  She is exploring ways to improve the\ncatalogue and make it more widely available, and welcomed suggestions\nabout these concerns.  CETH owns the records, which are not just\nrestricted to RLIN, and can distribute them however it wishes.\n\nTaking up LESK's earlier question, BATTIN inquired whether LC, since it\nis accepting electronic files and designing a mechanism for dealing with\nthat rather than putting books on shelves, would become responsible for\nthe National Copyright Depository of Electronic Materials.  Of course\nthat could not be accomplished overnight, but it would be something LC\ncould plan for.  GIFFORD acknowledged that much thought was being devoted\nto that set of problems and returned the discussion to the issue raised\nby LYNCH--whether or not putting the kind of records that both BATTIN and\nHOCKEY have been talking about in RLIN is not a satisfactory solution. \nIt seemed to him that RLIN answered LYNCH's original point concerning\nsome kind of directory for these kinds of materials.  In a situation\nwhere somebody is attempting to decide whether or not to scan this or\nfilm that or to learn whether or not someone has already done so, LYNCH\nsuggested, RLIN is helpful, but it is not helpful in the case of a local,\non-line catalogue.  Further, one would like to have her or his system be\naware that that exists in digital form, so that one can present it to a\npatron, even though one did not digitize it, if it is out of copyright. \nThe only way to make those linkages would be to perform a tremendous\namount of real-time look-up, which would be awkward at best, or\nperiodically to yank the whole file from RLIN and match it against one's\nown stuff, which is a nuisance.\n\nBut where, ERWAY inquired, does one stop including things that are\navailable with Internet, for instance, in one's local catalogue?\nIt almost seems that that is LC's means to acquire access to them.\nThat represents LC's new form of library loan.  Perhaps LC's new on-line\ncatalogue is an amalgamation of all these catalogues on line.  LYNCH\nconceded that perhaps that was true in the very long term, but was not\napplicable to scanning in the short term.  In his view, the totals cited\nby Yale, 10,000 books over perhaps a four-year period, and 1,000-1,500\nbooks from Cornell, were not big numbers, while searching all over\ncreation for relatively rare occurrences will prove to be less efficient. \nAs GIFFORD wondered if this would not be a separable file on RLIN and\ncould be requested from them, BATTIN interjected that it was easily\naccessible to an institution.  SEVERTSON pointed out that that file, cum\nenhancements, was available with reference information on CD-ROM, which\nmakes it a little more available.\n\nIn HOCKEY's view, the real question facing the Workshop is what to put in\nthis catalogue, because that raises the question of what constitutes a\npublication in the electronic world.  (WEIBEL interjected that Eric Joule\nin OCLC's Office of Research is also wrestling with this particular\nproblem, while GIFFORD thought it sounded fairly generic.)  HOCKEY\ncontended that a majority of texts in the humanities are in the hands\nof either a small number of large research institutions or individuals\nand are not generally available for anyone else to access at all.\nShe wondered if these texts ought to be catalogued.\n\nAfter argument proceeded back and forth for several minutes over why\ncataloguing might be a necessary service, LEBRON suggested that this\nissue involved the responsibility of a publisher.  The fact that someone\nhas created something electronically and keeps it under his or her\ncontrol does not constitute publication.  Publication implies\ndissemination.  While it would be important for a scholar to let other\npeople know that this creation exists, in many respects this is no\ndifferent from an unpublished manuscript.  That is what is being accessed\nin there, except that now one is not looking at it in the hard-copy but\nin the electronic environment.\n\nLEBRON expressed puzzlement at the variety of ways electronic publishing\nhas been viewed.  Much of what has been discussed throughout these two\ndays has concerned CD-ROM publishing, whereas in the on-line environment\nthat she confronts, the constraints and challenges are very different. \nSooner or later LC will have to deal with the concept of on-line\npublishing.  Taking up the comment ERWAY made earlier about storing\ncopies, LEBRON gave her own journal as an example.  How would she deposit\nOJCCT for copyright?, she asked, because the journal will exist in the\nmainframe at OCLC and people will be able to access it.  Here the\nsituation is different, ownership versus access, and is something that\narises with publication in the on-line environment, faster than is\nsometimes realized.  Lacking clear answers to all of these questions\nherself, LEBRON did not anticipate that LC would be able to take a role\nin helping to define some of them for quite a while.\n\nGREENFIELD observed that LC's Network Development Office is attempting,\namong other things, to explore the limits of MARC as a standard in terms\nof handling electronic information.  GREENFIELD also noted that Rebecca\nGUENTHER from that office gave a paper to the American Society for\nInformation Science (ASIS) summarizing several of the discussion papers\nthat were coming out of the Network Development Office.  GREENFIELD said\nhe understood that that office had a list-server soliciting just the kind\nof feedback received today concerning the difficulties of identifying and\ncataloguing electronic information.  GREENFIELD hoped that everybody\nwould be aware of that and somehow contribute to that conversation.\n\nNoting two of LC's roles, first, to act as a repository of record for\nmaterial that is copyrighted in this country, and second, to make\nmaterials it holds available in some limited form to a clientele that\ngoes beyond Congress, BESSER suggested that it was incumbent on LC to\nextend those responsibilities to all the things being published in\nelectronic form.  This would mean eventually accepting electronic\nformats.  LC could require that at some point they be in a certain\nlimited set of formats, and then develop mechanisms for allowing people\nto access those in the same way that other things are accessed.  This\ndoes not imply that they are on the network and available to everyone. \nLC does that with most of its bibliographic records, BESSER said, which\nend up migrating to the utility (e.g., OCLC) or somewhere else.  But just\nas most of LC's books are available in some form through interlibrary\nloan or some other mechanism, so in the same way electronic formats ought\nto be available to others in some format, though with some copyright\nconsiderations.  BESSER was not suggesting that these mechanisms be\nestablished tomorrow, only that they seemed to fall within LC's purview,\nand that there should be long-range plans to establish them.\n\nAcknowledging that those from LC in the room agreed with BESSER\nconcerning the need to confront difficult questions, GIFFORD underscored\nthe magnitude of the problem of what to keep and what to select.  GIFFORD\nnoted that LC currently receives some 31,000 items per day, not counting\nelectronic materials, and argued for much more distributed responsibility\nin order to maintain and store electronic information.\n\nBESSER responded that the assembled group could be viewed as a starting\npoint, whose initial operating premise could be helping to move in this\ndirection and defining how LC could do so, for example, in areas of\nstandardization or distribution of responsibility.\n\nFLEISCHHAUER added that AM was fully engaged, wrestling with some of the\nquestions that pertain to the conversion of older historical materials,\nwhich would be one thing that the Library of Congress might do.  Several\npoints mentioned by BESSER and several others on this question have a\nmuch greater impact on those who are concerned with cataloguing and the\nnetworking of bibliographic information, as well as preservation itself.\n\nSpeaking directly to AM, which he considered was a largely uncopyrighted\ndatabase, LYNCH urged development of a network version of AM, or\nconsideration of making the data in it available to people interested in\ndoing network multimedia.  On account of the current great shortage of\ndigital data that is both appealing and unencumbered by complex rights\nproblems, this course of action could have a significant effect on making\nnetwork multimedia a reality.\n\nIn this connection, FLEISCHHAUER reported on a fragmentary prototype in\nLC's Office of Information Technology Services that attempts to associate\ndigital images of photographs with cataloguing information in ways that\nwork within a local area network--a step, so to say, toward AM's\nconstruction of some sort of apparatus for access.  Further, AM has\nattempted to use standard data forms in order to help make that\ndistinction between the access tools and the underlying data, and thus\nbelieves that the database is networkable.\n\nA delicate and agonizing policy question for LC, however, which comes\nback to resources and unfortunately has an impact on this, is to find\nsome appropriate, honorable, and legal cost-recovery possibilities.  A\ncertain skittishness concerning cost-recovery has made people unsure\nexactly what to do.  AM would be highly receptive to discussing further\nLYNCH's offer to test or demonstrate its database in a network\nenvironment, FLEISCHHAUER said.\n\nReturning the discussion to what she viewed as the vital issue of\nelectronic deposit, BATTIN recommended that LC initiate a catalytic\nprocess in terms of distributed responsibility, that is, bring together\nthe distributed organizations and set up a study group to look at all\nthese issues and see where we as a nation should move.  The broader\nissues of how we deal with the management of electronic information will\nnot disappear, but only grow worse.\n\nLESK took up this theme and suggested that LC attempt to persuade one\nmajor library in each state to deal with its state equivalent publisher,\nwhich might produce a cooperative project that would be equitably\ndistributed around the country, and one in which LC would be dealing with\na minimal number of publishers and minimal copyright problems.\n\nGRABER remarked the recent development in the scientific community of a\nwillingness to use SGML and either deposit or interchange on a fairly\nstandardized format.  He wondered if a similar movement was taking place\nin the humanities.  Although the National Library of Medicine found only\na few publishers to cooperate in a like venture two or three years ago, a\nnew effort might generate a much larger number willing to cooperate.\n\nKIMBALL recounted his unit's (Machine-Readable Collections Reading Room)\ntroubles with the commercial publishers of electronic media in acquiring\nmaterials for LC's collections, in particular the publishers' fear that\nthey would not be able to cover their costs and would lose control of\ntheir products, that LC would give them away or sell them and make\nprofits from them.  He doubted that the publishing industry was prepared\nto move into this area at the moment, given its resistance to allowing LC\nto use its machine-readable materials as the Library would like.\n\nThe copyright law now addresses compact disk as a medium, and LC can\nrequest one copy of that, or two copies if it is the only version, and\ncan request copies of software, but that fails to address magazines or\nbooks or anything like that which is in machine-readable form.\n\nGIFFORD acknowledged the thorny nature of this issue, which he illustrated\nwith the example of the cumbersome process involved in putting a copy of a\nscientific database on a LAN in LC's science reading room.  He also\nacknowledged that LC needs help and could enlist the energies and talents\nof Workshop participants in thinking through a number of these problems.\n\nGIFFORD returned the discussion to getting the image and text people to\nthink through together where they want to go in the long term.  MYLONAS\nconceded that her experience at the Pierce Symposium the previous week at\nGeorgetown University and this week at LC had forced her to reevaluate\nher perspective on the usefulness of text as images.  MYLONAS framed the\nissues in a series of questions:  How do we acquire machine-readable\ntext?  Do we take pictures of it and perform OCR on it later?  Is it\nimportant to obtain very high-quality images and text, etc.? \nFLEISCHHAUER agreed with MYLONAS's framing of strategic questions, adding\nthat a large institution such as LC probably has to do all of those\nthings at different times.  Thus, the trick is to exercise judgment.  The\nWorkshop had added to his and AM's considerations in making those\njudgments.  Concerning future meetings or discussions, MYLONAS suggested\nthat screening priorities would be helpful.\n\nWEIBEL opined that the diversity reflected in this group was a sign both\nof the health and of the immaturity of the field, and more time would\nhave to pass before we convince one another concerning standards.\n\nAn exchange between MYLONAS and BATTIN clarified the point that the\ndriving force behind both the Perseus and the Cornell Xerox projects was\nthe preservation of knowledge for the future, not simply for particular\nresearch use.  In the case of Perseus, MYLONAS said, the assumption was\nthat the texts would not be entered again into electronically readable\nform.  SPERBERG-McQUEEN added that a scanned image would not serve as an\narchival copy for purposes of preservation in the case of, say, the Bill\nof Rights, in the sense that the scanned images are effectively the\narchival copies for the Cornell mathematics books.\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                          Appendix I:  PROGRAM\n\n\n\n                                WORKSHOP\n                                   ON\n                               ELECTRONIC\n                                  TEXTS\n\n\n\n                             9-10 June 1992\n\n                           Library of Congress\n                            Washington, D.C.\n\n\n\n    Supported by a Grant from the David and Lucile Packard Foundation\n\n\nTuesday, 9 June 1992\n\nNATIONAL DEMONSTRATION LAB, ATRIUM, LIBRARY MADISON\n\n8:30 AM   Coffee and Danish, registration\n\n9:00 AM   Welcome\n\n          Prosser Gifford, Director for Scholarly Programs, and Carl\n             Fleischhauer, Coordinator, American Memory, Library of\n             Congress\n\n9:l5 AM   Session I.  Content in a New Form:  Who Will Use It and What\n          Will They Do?\n\n          Broad description of the range of electronic information. \n          Characterization of who uses it and how it is or may be used. \n          In addition to a look at scholarly uses, this session will\n          include a presentation on use by students (K-12 and college)\n          and the general public.\n\n          Moderator:  James Daly\n          Avra Michelson, Archival Research and Evaluation Staff,\n             National Archives and Records Administration (Overview)\n          Susan H. Veccia, Team Leader, American Memory, User Evaluation,\n             and\n          Joanne Freeman, Associate Coordinator, American Memory, Library\n             of Congress (Beyond the scholar)\n\n10:30-\n11:00 AM  Break\n\n11:00 AM  Session II.  Show and Tell.\n\n          Each presentation to consist of a fifteen-minute\n          statement/show; group discussion will follow lunch.\n\n          Moderator:  Jacqueline Hess, Director, National Demonstration\n             Lab\n\n            1.  A classics project, stressing texts and text retrieval\n                more than multimedia:  Perseus Project, Harvard\n                University\n                Elli Mylonas, Managing Editor\n\n            2.  Other humanities projects employing the emerging norms of\n                the Text Encoding Initiative (TEI):  Chadwyck-Healey's\n                The English Poetry Full Text Database and/or Patrologia\n                Latina Database\n                Eric M. Calaluca, Vice President, Chadwyck-Healey, Inc.\n\n            3.  American Memory\n                Carl Fleischhauer, Coordinator, and\n                Ricky Erway, Associate Coordinator, Library of Congress\n\n            4.  Founding Fathers example from Packard Humanities\n                Institute:  The Papers of George Washington, University\n                of Virginia\n                Dorothy Twohig, Managing Editor, and/or\n                David Woodley Packard\n\n            5.  An electronic medical journal offering graphics and\n                full-text searchability:  The Online Journal of Current\n                Clinical Trials, American Association for the Advancement\n                of Science\n                Maria L. Lebron, Managing Editor\n\n            6.  A project that offers facsimile images of pages but omits\n                searchable text:  Cornell math books\n                Lynne K. Personius, Assistant Director, Cornell\n                   Information Technologies for Scholarly Information\n                   Sources, Cornell University\n\n12:30 PM  Lunch  (Dining Room A, Library Madison 620.  Exhibits\n          available.)\n\n1:30 PM   Session II.  Show and Tell (Cont'd.).\n\n3:00-\n3:30 PM   Break\n\n3:30-\n5:30 PM   Session III.  Distribution, Networks, and Networking:  Options\n          for Dissemination.\n\n          Published disks:  University presses and public-sector\n             publishers, private-sector publishers\n          Computer networks\n\n          Moderator:  Robert G. Zich, Special Assistant to the Associate\n             Librarian for Special Projects, Library of Congress\n          Clifford A. Lynch, Director, Library Automation, University of\n             California\n          Howard Besser, School of Library and Information Science,\n             University of Pittsburgh\n          Ronald L. Larsen, Associate Director of Libraries for\n             Information Technology, University of Maryland at College\n             Park\n          Edwin B. Brownrigg, Executive Director, Memex Research\n             Institute\n\n6:30 PM   Reception  (Montpelier Room, Library Madison 619.)\n\n                                 ******\n\nWednesday, 10 June 1992\n\nDINING ROOM A, LIBRARY MADISON 620\n\n8:30 AM   Coffee and Danish\n\n9:00 AM   Session IV.  Image Capture, Text Capture, Overview of Text and\n          Image Storage Formats.\n\n          Moderator:  William L. Hooton, Vice President of Operations,\n             I-NET\n\n          A) Principal Methods for Image Capture of Text:\n             Direct scanning\n             Use of microform\n\n          Anne R. Kenney, Assistant Director, Department of Preservation\n             and Conservation, Cornell University\n          Pamela Q.J. Andre, Associate Director, Automation, and\n          Judith A. Zidar, Coordinator, National Agricultural Text\n             Digitizing Program (NATDP), National Agricultural Library\n             (NAL)\n          Donald J. Waters, Head, Systems Office, Yale University Library\n\n          B) Special Problems:\n             Bound volumes\n             Conservation\n             Reproducing printed halftones\n\n          Carl Fleischhauer, Coordinator, American Memory, Library of\n             Congress\n          George Thoma, Chief, Communications Engineering Branch,\n             National Library of Medicine (NLM)\n\n10:30-\n11:00 AM  Break\n\n11:00 AM  Session IV.  Image Capture, Text Capture, Overview of Text and\n          Image Storage Formats (Cont'd.).\n\n          C) Image Standards and Implications for Preservation\n\n          Jean Baronas, Senior Manager, Department of Standards and\n             Technology, Association for Information and Image Management\n             (AIIM)\n          Patricia Battin, President, The Commission on Preservation and\n             Access (CPA)\n\n          D) Text Conversion:\n             OCR vs. rekeying\n             Standards of accuracy and use of imperfect texts\n             Service bureaus\n\n          Stuart Weibel, Senior Research Specialist, Online Computer\n             Library Center, Inc. (OCLC)\n          Michael Lesk, Executive Director, Computer Science Research,\n             Bellcore\n          Ricky Erway, Associate Coordinator, American Memory, Library of\n             Congress\n          Pamela Q.J. Andre, Associate Director, Automation, and\n          Judith A. Zidar, Coordinator, National Agricultural Text\n             Digitizing Program (NATDP), National Agricultural Library\n             (NAL)\n\n12:30-\n1:30 PM   Lunch\n\n1:30 PM   Session V.  Approaches to Preparing Electronic Texts.\n\n          Discussion of approaches to structuring text for the computer;\n          pros and cons of text coding, description of methods in\n          practice, and comparison of text-coding methods.\n\n          Moderator:  Susan Hockey, Director, Center for Electronic Texts\n             in the Humanities (CETH), Rutgers and Princeton Universities\n          David Woodley Packard\n          C.M. Sperberg-McQueen, Editor, Text Encoding Initiative (TEI),\n             University of Illinois-Chicago\n          Eric M. Calaluca, Vice President, Chadwyck-Healey, Inc.\n\n3:30-\n4:00 PM   Break\n\n4:00 PM   Session VI.  Copyright Issues.\n\n          Marybeth Peters, Policy Planning Adviser to the Register of\n             Copyrights, Library of Congress\n\n5:00 PM   Session VII. Conclusion.\n\n          General discussion.\n          What topics were omitted or given short shrift that anyone\n             would like to talk about now?\n          Is there a \"group\" here?  What should the group do next, if\n             anything?  What should the Library of Congress do next, if\n             anything?\n          Moderator:  Prosser Gifford, Director for Scholarly Programs,\n             Library of Congress\n\n6:00 PM   Adjourn\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                         Appendix II:  ABSTRACTS\n\n\nSESSION I\n\nAvra MICHELSON           Forecasting the Use of Electronic Texts by\n                         Social Sciences and Humanities Scholars\n\nThis presentation explores the ways in which electronic texts are likely\nto be used by the non-scientific scholarly community.  Many of the\nremarks are drawn from a report the speaker coauthored with Jeff\nRothenberg, a computer scientist at The RAND Corporation.\n\nThe speaker assesses 1) current scholarly use of information technology\nand 2) the key trends in information technology most relevant to the\nresearch process, in order to predict how social sciences and humanities\nscholars are apt to use electronic texts.  In introducing the topic,\ncurrent use of electronic texts is explored broadly within the context of\nscholarly communication.  From the perspective of scholarly\ncommunication, the work of humanities and social sciences scholars\ninvolves five processes:  1) identification of sources, 2) communication\nwith colleagues, 3) interpretation and analysis of data, 4) dissemination\nof research findings, and 5) curriculum development and instruction.  The\nextent to which computation currently permeates aspects of scholarly\ncommunication represents a viable indicator of the prospects for\nelectronic texts.\n\nThe discussion of current practice is balanced by an analysis of key\ntrends in the scholarly use of information technology.  These include the\ntrends toward end-user computing and connectivity, which provide a\nframework for forecasting the use of electronic texts through this\nmillennium.  The presentation concludes with a summary of the ways in\nwhich the nonscientific scholarly community can be expected to use\nelectronic texts, and the implications of that use for information\nproviders.\n\nSusan VECCIA and Joanne FREEMAN    Electronic Archives for the Public: \n                                   Use of American Memory in Public and\n                                   School Libraries\n\nThis joint discussion focuses on nonscholarly applications of electronic\nlibrary materials, specifically addressing use of the Library of Congress\nAmerican Memory (AM) program in a small number of public and school\nlibraries throughout the United States.  AM consists of selected Library\nof Congress primary archival materials, stored on optical media\n(CD-ROM/videodisc), and presented with little or no editing.  Many\ncollections are accompanied by electronic introductions and user's guides\noffering background information and historical context.  Collections\nrepresent a variety of formats including photographs, graphic arts,\nmotion pictures, recorded sound, music, broadsides and manuscripts,\nbooks, and pamphlets.\n\nIn 1991, the Library of Congress began a nationwide evaluation of AM in\ndifferent types of institutions.  Test sites include public libraries,\nelementary and secondary school libraries, college and university\nlibraries, state libraries, and special libraries.  Susan VECCIA and\nJoanne FREEMAN will discuss their observations on the use of AM by the\nnonscholarly community, using evidence gleaned from this ongoing\nevaluation effort.\n\nVECCIA will comment on the overall goals of the evaluation project, and\nthe types of public and school libraries included in this study.  Her\ncomments on nonscholarly use of AM will focus on the public library as a\ncultural and community institution, often bridging the gap between formal\nand informal education.  FREEMAN will discuss the use of AM in school\nlibraries.  Use by students and teachers has revealed some broad\nquestions about the use of electronic resources, as well as definite\nbenefits gained by the \"nonscholar.\"  Topics will include the problem of\ngrasping content and context in an electronic environment, the stumbling\nblocks created by \"new\" technologies, and the unique skills and interests\nawakened through use of electronic resources.\n\nSESSION II\n\nElli MYLONAS             The Perseus Project:  Interactive Sources and\n                         Studies in Classical Greece\n\nThe Perseus Project (5) has just released Perseus 1.0, the first publicly\navailable version of its hypertextual database of multimedia materials on\nclassical Greece.  Perseus is designed to be used by a wide audience,\ncomprised of readers at the student and scholar levels.  As such, it must\nbe able to locate information using different strategies, and it must\ncontain enough detail to serve the different needs of its users.  In\naddition, it must be delivered so that it is affordable to its target\naudience.  [These problems and the solutions we chose are described in\nMylonas, \"An Interface to Classical Greek Civilization,\" JASIS 43:2,\nMarch 1992.]\n\nIn order to achieve its objective, the project staff decided to make a\nconscious separation between selecting and converting textual, database,\nand image data on the one hand, and putting it into a delivery system on\nthe other.  That way, it is possible to create the electronic data\nwithout thinking about the restrictions of the delivery system.  We have\nmade a great effort to choose system-independent formats for our data,\nand to put as much thought and work as possible into structuring it so\nthat the translation from paper to electronic form will enhance the value\nof the data. [A discussion of these solutions as of two years ago is in\nElli Mylonas, Gregory Crane, Kenneth Morrell, and D. Neel Smith, \"The\nPerseus Project:  Data in the Electronic Age,\" in Accessing Antiquity: \nThe Computerization of Classical Databases, J. Solomon and T. Worthen\n(eds.),  University of Arizona Press, in press.]\n\nMuch of the work on Perseus is focused on collecting and converting the\ndata on which the project is based.  At the same time, it is necessary to\nprovide means of access to the information, in order to make it usable,\nand them to investigate how it is used.  As we learn more about what\nstudents and scholars from different backgrounds do with Perseus, we can\nadjust our data collection, and also modify the system to accommodate\nthem.  In creating a delivery system for general use, we have tried to\navoid favoring any one type of use by allowing multiple forms of access\nto and navigation through the system.\n\nThe way text is handled exemplifies some of these principles.  All text\nin Perseus is tagged using SGML, following the guidelines of the Text\nEncoding Initiative (TEI).  This markup is used to index the text, and\nprocess it so that it can be imported into HyperCard.  No SGML markup\nremains in the text that reaches the user, because currently it would be\ntoo expensive to create a system that acts on SGML in real time. \nHowever, the regularity provided by SGML is essential for verifying the\ncontent of the texts, and greatly speeds all the processing performed on\nthem.  The fact that the texts exist in SGML ensures that they will be\nrelatively easy to port to different hardware and software, and so will\noutlast the current delivery platform.  Finally, the SGML markup\nincorporates existing canonical reference systems (chapter, verse, line,\netc.); indexing and navigation are based on these features.  This ensures\nthat the same canonical reference will always resolve to the same point\nwithin a text, and that all versions of our texts, regardless of delivery\nplatform (even paper printouts) will function the same way.\n\nIn order to provide tools for users, the text is processed by a\nmorphological analyzer, and the results are stored in a database. \nTogether with the index, the Greek-English Lexicon, and the index of all\nthe English words in the definitions of the lexicon, the morphological\nanalyses comprise a set of linguistic tools that allow users of all\nlevels to work with the textual information, and to accomplish different\ntasks.  For example, students who read no Greek may explore a concept as\nit appears in Greek texts by using the English-Greek index, and then\nlooking up works in the texts and translations, or scholars may do\ndetailed morphological studies of word use by using the morphological\nanalyses of the texts.  Because these tools were not designed for any one\nuse, the same tools and the same data can be used by both students and\nscholars.\n\nNOTES:\n     (5)  Perseus is based at Harvard University, with collaborators at\n     several other universities.  The project has been funded primarily\n     by the Annenberg/CPB Project, as well as by Harvard University,\n     Apple Computer, and others.  It is published by Yale University\n     Press.  Perseus runs on Macintosh computers, under the HyperCard\n     program.\n\nEric CALALUCA\n\nChadwyck-Healey embarked last year on two distinct yet related full-text\nhumanities database projects.\n\nThe English Poetry Full-Text Database and the Patrologia Latina Database\nrepresent new approaches to linguistic research resources.  The size and\ncomplexity of the projects present problems for electronic publishers,\nbut surmountable ones if they remain abreast of the latest possibilities\nin data capture and retrieval software techniques.\n\nThe issues which required address prior to the commencement of the\nprojects were legion:\n\n     1.   Editorial selection (or exclusion) of materials in each\n          database\n\n     2.   Deciding whether or not to incorporate a normative encoding\n          structure into the databases?\n               A.  If one is selected, should it be SGML?\n               B.  If SGML, then the TEI?\n     \n     3.   Deliver as CD-ROM, magnetic tape, or both?\n\n     4.   Can one produce retrieval software advanced enough for the\n          postdoctoral linguist, yet accessible enough for unattended\n          general use?  Should one try?\n\n     5.   Re fair and liberal networking policies, what are the risks to\n          an electronic publisher?\n\n     6.   How does the emergence of national and international education\n          networks affect the use and viability of research projects\n          requiring high investment?  Do the new European Community\n          directives concerning database protection necessitate two\n          distinct publishing projects, one for North America and one for\n          overseas?\n\nFrom new notions of \"scholarly fair use\" to the future of optical media,\nvirtually every issue related to electronic publishing was aired.  The\nresult is two projects which have been constructed to provide the quality\nresearch resources with the fewest encumbrances to use by teachers and\nprivate scholars.\n\nDorothy TWOHIG\n\nIn spring 1988 the editors of the papers of George Washington, John\nAdams, Thomas Jefferson, James Madison, and Benjamin Franklin were\napproached by classics scholar David Packard on behalf of the Packard\nHumanities Foundation with a proposal to produce a CD-ROM edition of the\ncomplete papers of each of the Founding Fathers.  This electronic edition\nwill supplement the published volumes, making the documents widely\navailable to students and researchers at reasonable cost.  We estimate\nthat our CD-ROM edition of Washington's Papers will be substantially\ncompleted within the next two years and ready for publication.  Within\nthe next ten years or so, similar CD-ROM editions of the Franklin, Adams,\nJefferson, and Madison papers also will be available.  At the Library of\nCongress's session on technology, I would like to discuss not only the\nexperience of the Washington Papers in producing the CD-ROM edition, but\nthe impact technology has had on these major editorial projects. \nAlready, we are editing our volumes with an eye to the material that will\nbe readily available in the CD-ROM edition.  The completed electronic\nedition will provide immense possibilities for the searching of documents\nfor information in a way never possible before.  The kind of technical\ninnovations that are currently available and on the drawing board will\nsoon revolutionize historical research and the production of historical\ndocuments.  Unfortunately, much of this new technology is not being used\nin the planning stages of historical projects, simply because many\nhistorians are aware only in the vaguest way of its existence.  At least\ntwo major new historical editing projects are considering microfilm\neditions, simply because they are not aware of the possibilities of\nelectronic alternatives and the advantages of the new technology in terms\nof flexibility and research potential compared to microfilm.  In fact,\ntoo many of us in history and literature are still at the stage of\nstruggling with our PCs.  There are many historical editorial projects in\nprogress presently, and an equal number of literary projects.  While the\ntwo fields have somewhat different approaches to textual editing, there\nare ways in which electronic technology can be of service to both.\n\nSince few of the editors involved in the Founding Fathers CD-ROM editions\nare technical experts in any sense, I hope to point out in my discussion\nof our experience how many of these electronic innovations can be used\nsuccessfully by scholars who are novices in the world of new technology. \nOne of the major concerns of the sponsors of the multitude of new\nscholarly editions is the limited audience reached by the published\nvolumes.  Most of these editions are being published in small quantities\nand the publishers' price for them puts them out of the reach not only of\nindividual scholars but of most public libraries and all but the largest\neducational institutions.  However, little attention is being given to\nways in which technology can bypass conventional publication to make\nhistorical and literary documents more widely available.\n\nWhat attracted us most to the CD-ROM edition of The Papers of George\nWashington was the fact that David Packard's aim was to make a complete\nedition of all of the 135,000 documents we have collected available in an\ninexpensive format that would be placed in public libraries, small\ncolleges, and even high schools.  This would provide an audience far\nbeyond our present 1,000-copy, $45 published edition.  Since the CD-ROM\nedition will carry none of the explanatory annotation that appears in the\npublished volumes, we also feel that the use of the CD-ROM will lead many\nresearchers to seek out the published volumes.\n\nIn addition to ignorance of new technical advances, I have found that too\nmany editors--and historians and literary scholars--are resistant and\neven hostile to suggestions that electronic technology may enhance their\nwork.  I intend to discuss some of the arguments traditionalists are\nadvancing to resist technology, ranging from distrust of the speed with\nwhich it changes (we are already wondering what is out there that is\nbetter than CD-ROM) to suspicion of the technical language used to\ndescribe electronic developments.\n\nMaria LEBRON\n\nThe Online Journal of Current Clinical Trials, a joint venture of the\nAmerican Association for the Advancement of Science (AAAS) and the Online\nComputer Library Center, Inc. (OCLC), is the first peer-reviewed journal\nto provide full text, tabular material, and line illustrations on line. \nThis presentation will discuss the genesis and start-up period of the\njournal.  Topics of discussion will include historical overview,\nday-to-day management of the editorial peer review, and manuscript\ntagging and publication.  A demonstration of the journal and its features\nwill accompany the presentation.\n\nLynne PERSONIUS\n\nCornell University Library, Cornell Information Technologies, and Xerox\nCorporation, with the support of the Commission on Preservation and\nAccess, and Sun Microsystems, Inc., have been collaborating in a project\nto test a prototype system for recording brittle books as digital images\nand producing, on demand, high-quality archival paper replacements.  The\nproject goes beyond that, however, to investigate some of the issues\nsurrounding scanning, storing, retrieving, and providing access to\ndigital images in a network environment.\n\nThe Joint Study in Digital Preservation began in January 1990.  Xerox\nprovided the College Library Access and Storage System (CLASS) software,\na prototype 600-dots-per-inch (dpi) scanner, and the hardware necessary\nto support network printing on the DocuTech printer housed in Cornell's\nComputing and Communications Center (CCC).\n\nThe Cornell staff using the hardware and software became an integral part\nof the development and testing process for enhancements to the CLASS\nsoftware system.  The collaborative nature of this relationship is\nresulting in a system that is specifically tailored to the preservation\napplication.\n\nA digital library of 1,000 volumes (or approximately 300,000 images) has\nbeen created and is stored on an optical jukebox that resides in CCC. \nThe library includes a collection of select mathematics monographs that\nprovides mathematics faculty with an opportunity to use the electronic\nlibrary.  The remaining volumes were chosen for the library to test the\nvarious capabilities of the scanning system.\n\nOne project objective is to provide users of the Cornell library and the\nlibrary staff with the ability to request facsimiles of digitized images\nor to retrieve the actual electronic image for browsing.  A prototype\nviewing workstation has been created by Xerox, with input into the design\nby a committee of Cornell librarians and computer professionals.  This\nwill allow us to experiment with patron access to the images that make up\nthe digital library.  The viewing station provides search, retrieval, and\n(ultimately) printing functions with enhancements to facilitate\nnavigation through multiple documents.\n\nCornell currently is working to extend access to the digital library to\nreaders using workstations from their offices.  This year is devoted to\nthe development of a network resident image conversion and delivery\nserver, and client software that will support readers who use Apple\nMacintosh computers, IBM windows platforms, and Sun workstations. \nEquipment for this development was provided by Sun Microsystems with\nsupport from the Commission on Preservation and Access.\n\nDuring the show-and-tell session of the Workshop on Electronic Texts, a\nprototype view station will be demonstrated.  In addition, a display of\noriginal library books that have been digitized will be available for\nreview with associated printed copies for comparison.  The fifteen-minute\noverview of the project will include a slide presentation that\nconstitutes a \"tour\" of the preservation digitizing process.\n\nThe final network-connected version of the viewing station will provide\nlibrary users with another mechanism for accessing the digital library,\nand will also provide the capability of viewing images directly.  This\nwill not require special software, although a powerful computer with good\ngraphics will be needed.\n\nThe Joint Study in Digital Preservation has generated a great deal of\ninterest in the library community.  Unfortunately, or perhaps\nfortunately, this project serves to raise a vast number of other issues\nsurrounding the use of digital technology for the preservation and use of\ndeteriorating library materials, which subsequent projects will need to\nexamine.  Much work remains.\n\nSESSION III\n\nHoward BESSER                      Networking Multimedia Databases\n\nWhat do we have to consider in building and distributing databases of\nvisual materials in a multi-user environment?  This presentation examines\na variety of concerns that need to be addressed before a multimedia\ndatabase can be set up in a networked environment.\n\nIn the past it has not been feasible to implement databases of visual\nmaterials in shared-user environments because of technological barriers. \nEach of the two basic models for multi-user multimedia databases has\nposed its own problem.  The analog multimedia storage model (represented\nby Project Athena's parallel analog and digital networks) has required an\nincredibly complex (and expensive) infrastructure.  The economies of\nscale that make multi-user setups cheaper per user served do not operate\nin an environment that requires a computer workstation, videodisc player,\nand two display devices for each user.\n\nThe digital multimedia storage model has required vast amounts of storage\nspace (as much as one gigabyte per thirty still images).  In the past the\ncost of such a large amount of storage space made this model a\nprohibitive choice as well.  But plunging storage costs are finally\nmaking this second alternative viable.\n\nIf storage no longer poses such an impediment, what do we need to\nconsider in building digitally stored multi-user databases of visual\nmaterials?  This presentation will examine the networking and\ntelecommunication constraints that must be overcome before such databases\ncan become commonplace and useful to a large number of people.\n\nThe key problem is the vast size of multimedia documents, and how this\naffects not only storage but telecommunications transmission time. \nAnything slower than T-1 speed is impractical for files of 1 megabyte or\nlarger (which is likely to be small for a multimedia document).  For\ninstance, even on a 56 Kb line it would take three minutes to transfer a\n1-megabyte file.  And these figures assume ideal circumstances, and do\nnot take into consideration other users contending for network bandwidth,\ndisk access time, or the time needed for remote display.  Current common\ntelephone transmission rates would be completely impractical; few users\nwould be willing to wait the hour necessary to transmit a single image at\n2400 baud.\n\nThis necessitates compression, which itself raises a number of other\nissues.  In order to decrease file sizes significantly, we must employ\nlossy compression algorithms.  But how much quality can we afford to\nlose?  To date there has been only one significant study done of\nimage-quality needs for a particular user group, and this study did not\nlook at loss resulting from compression.  Only after identifying\nimage-quality needs can we begin to address storage and network bandwidth\nneeds.\n\nExperience with X-Windows-based applications (such as Imagequery, the\nUniversity of California at Berkeley image database) demonstrates the\nutility of a client-server topology, but also points to the limitation of\ncurrent software for a distributed environment.  For example,\napplications like Imagequery can incorporate compression, but current X\nimplementations do not permit decompression at the end user's\nworkstation.  Such decompression at the host computer alleviates storage\ncapacity problems while doing nothing to address problems of\ntelecommunications bandwidth.\n\nWe need to examine the effects on network through-put of moving\nmultimedia documents around on a network.  We need to examine various\ntopologies that will help us avoid bottlenecks around servers and\ngateways.  Experience with applications such as these raise still broader\nquestions. How closely is the multimedia document tied to the software\nfor viewing it?  Can it be accessed and viewed from other applications? \nExperience with the MARC format (and more recently with the Z39.50\nprotocols) shows how useful it can be to store documents in a form in\nwhich they can be accessed by a variety of application software.\n\nFinally, from an intellectual-access standpoint, we need to address the\nissue of providing access to these multimedia documents in\ninterdisciplinary environments.  We need to examine terminology and\nindexing strategies that will allow us to provide access to this material\nin a cross-disciplinary way.\n\nRonald LARSEN            Directions in High-Performance Networking for\n                         Libraries\n\nThe pace at which computing technology has advanced over the past forty\nyears shows no sign of abating.  Roughly speaking, each five-year period\nhas yielded an order-of-magnitude improvement in price and performance of\ncomputing equipment.  No fundamental hurdles are likely to prevent this\npace from continuing for at least the next decade.  It is only in the\npast five years, though, that computing has become ubiquitous in\nlibraries, affecting all staff and patrons, directly or indirectly.\n\nDuring these same five years, communications rates on the Internet, the\nprincipal academic computing network, have grown from 56 kbps to 1.5\nMbps, and the NSFNet backbone is now running 45 Mbps.  Over the next five\nyears, communication rates on the backbone are expected to exceed 1 Gbps. \nGrowth in both the population of network users and the volume of network\ntraffic  has continued to grow geometrically, at rates approaching 15\npercent per month.  This flood of capacity and use, likened by some to\n\"drinking from a firehose,\"  creates immense opportunities and challenges\nfor libraries.  Libraries must anticipate the future implications of this\ntechnology, participate in its development, and deploy it to ensure\naccess to the world's information resources.\n\nThe infrastructure for the information age is being put in place. \nLibraries face strategic decisions about their role in the development,\ndeployment, and use of this infrastructure.  The emerging infrastructure\nis much more than computers and communication lines.  It is more than the\nability to compute at a remote site, send electronic mail to a peer\nacross the country, or move a file from one library to another.  The next\nfive years will witness substantial development of the information\ninfrastructure of the network.\n\nIn order to provide appropriate leadership, library professionals must\nhave a fundamental understanding of and appreciation for computer\nnetworking, from local area networks to the National Research and\nEducation Network (NREN).  This presentation addresses these\nfundamentals, and how they relate to libraries today and in the near\nfuture.\n\nEdwin BROWNRIGG               Electronic Library Visions and Realities\n\nThe electronic library has been a vision desired by many--and rejected by\nsome--since Vannevar Bush coined the term memex to describe an automated,\nintelligent, personal information system.  Variations on this vision have\nincluded Ted Nelson's Xanadau, Alan Kay's Dynabook, and Lancaster's\n\"paperless library,\" with the most recent incarnation being the\n\"Knowledge Navigator\" described by John Scully of Apple.  But the reality\nof library service has been less visionary and the leap to the electronic\nlibrary has eluded universities, publishers, and information technology\nfiles.\n\nThe Memex Research Institute (MemRI), an independent, nonprofit research\nand development organization, has created an Electronic Library Program\nof shared research and development in order to make the collective vision\nmore concrete.  The program is working toward the creation of large,\nindexed publicly available electronic image collections of published\ndocuments in academic, special, and public libraries.  This strategic\nplan is the result of the first stage of the program, which has been an\ninvestigation of the information technologies available to support such\nan effort, the economic parameters of electronic service compared to\ntraditional library operations, and the business and political factors\naffecting the shift from print distribution to electronic networked\naccess.\n\nThe strategic plan envisions a combination of publicly searchable access\ndatabases, image (and text) document collections stored on network \"file\nservers,\" local and remote network access, and an intellectual property\nmanagement-control system.  This combination of technology and\ninformation content is defined in this plan as an E-library or E-library\ncollection.  Some participating sponsors are already developing projects\nbased on MemRI's recommended directions.\n\nThe E-library strategy projected in this plan is a visionary one that can\nenable major changes and improvements in academic, public, and special\nlibrary service.  This vision is, though, one that can be realized with\ntoday's technology.  At the same time, it will challenge the political\nand social structure within which libraries operate:  in academic\nlibraries, the traditional emphasis on local collections, extending to\naccreditation issues; in public libraries, the potential of electronic\nbranch and central libraries fully available to the public; and for\nspecial libraries, new opportunities for shared collections and networks.\n\nThe environment in which this strategic plan has been developed is, at\nthe moment, dominated by a sense of library limits.  The continued\nexpansion and rapid growth of local academic library collections is now\nclearly at an end.  Corporate libraries, and even law libraries, are\nfaced with operating within a difficult economic climate, as well as with\nvery active competition from commercial information sources.  For\nexample, public libraries may be seen as a desirable but not critical\nmunicipal service in a time when the budgets of safety and health\nagencies are being cut back.\n\nFurther, libraries in general have a very high labor-to-cost ratio in\ntheir budgets, and labor costs are still increasing, notwithstanding\nautomation investments.  It is difficult for libraries to obtain capital,\nstartup, or seed funding for innovative activities, and those\ntechnology-intensive initiatives that offer the potential of decreased\nlabor costs can provoke the opposition of library staff.\n\nHowever, libraries have achieved some considerable successes in the past\ntwo decades by improving both their service and their credibility within\ntheir organizations--and these positive changes have been accomplished\nmostly with judicious use of information technologies.  The advances in\ncomputing and information technology have been well-chronicled:  the\ncontinuing precipitous drop in computing costs, the growth of the\nInternet and private networks, and the explosive increase in publicly\navailable information databases.\n\nFor example, OCLC has become one of the largest computer network\norganizations in the world by creating a cooperative cataloging network\nof more than 6,000 libraries worldwide.  On-line public access catalogs\nnow serve millions of users on more than 50,000 dedicated terminals in\nthe United States alone.  The University of California MELVYL on-line\ncatalog system has now expanded into an index database reference service\nand supports more than six million searches a year.  And, libraries have\nbecome the largest group of customers of CD-ROM publishing technology;\nmore than 30,000 optical media publications such as those offered by\nInfoTrac and Silver Platter are subscribed to by U.S. libraries.\n\nThis march of technology continues and in the next decade will result in\nfurther innovations that are extremely difficult to predict.  What is\nclear is that libraries can now go beyond automation of their order files\nand catalogs to automation of their collections themselves--and it is\npossible to circumvent the fiscal limitations that appear to obtain\ntoday.\n\nThis Electronic Library Strategic Plan recommends a paradigm shift in\nlibrary service, and demonstrates the steps necessary to provide improved\nlibrary services with limited capacities and operating investments.\n\nSESSION IV-A\n\nAnne KENNEY\n\nThe Cornell/Xerox Joint Study in Digital Preservation resulted in the\nrecording of 1,000 brittle books as 600-dpi digital images and the\nproduction, on demand, of high-quality and archivally sound paper\nreplacements.  The project, which was supported by the Commission on\nPreservation and Access, also investigated some of the issues surrounding\nscanning, storing, retrieving, and providing access to digital images in\na network environment.\n\nAnne Kenney will focus on some of the issues surrounding direct scanning\nas identified in the Cornell Xerox Project.  Among those to be discussed\nare:  image versus text capture; indexing and access; image-capture\ncapabilities; a comparison to photocopy and microfilm; production and\ncost analysis; storage formats, protocols, and standards; and the use of\nthis scanning technology for preservation purposes.\n\nThe 600-dpi digital images produced in the Cornell Xerox Project proved\nhighly acceptable for creating paper replacements of deteriorating\noriginals.  The 1,000 scanned volumes provided an array of image-capture\nchallenges that are common to nineteenth-century printing techniques and\nembrittled material, and that defy the use of text-conversion processes. \nThese challenges include diminished contrast between text and background,\nfragile and deteriorated pages, uneven printing, elaborate type faces,\nfaint and bold text adjacency, handwritten text and annotations, nonRoman\nlanguages, and a proliferation of illustrated material embedded in text. \nThe latter category included high-frequency and low-frequency halftones,\ncontinuous tone photographs, intricate mathematical drawings, maps,\netchings, reverse-polarity drawings, and engravings.\n\nThe Xerox prototype scanning system provided a number of important\nfeatures for capturing this diverse material.  Technicians used multiple\nthreshold settings, filters, line art and halftone definitions,\nautosegmentation, windowing, and software-editing programs to optimize\nimage capture.  At the same time, this project focused on production. \nThe goal was to make scanning as affordable and acceptable as\nphotocopying and microfilming for preservation reformatting.  A\ntime-and-cost study conducted during the last three months of this\nproject confirmed the economic viability of digital scanning, and these\nfindings will be discussed here.\n\nFrom the outset, the Cornell Xerox Project was predicated on the use of\nnonproprietary standards and the use of common protocols when standards\ndid not exist.  Digital files were created as TIFF images which were\ncompressed prior to storage using Group 4 CCITT compression.  The Xerox\nsoftware is MS DOS based and utilizes off-the shelf programs such as\nMicrosoft Windows and Wang Image Wizard.  The digital library is designed\nto be hardware-independent and to provide interchangeability with other\ninstitutions through network connections.  Access to the digital files\nthemselves is two-tiered:  Bibliographic records for the computer files\nare created in RLIN and Cornell's local system and access into the actual\ndigital images comprising a book is provided through a document control\nstructure and a networked image file-server, both of which will be\ndescribed.\n\nThe presentation will conclude with a discussion of some of the issues\nsurrounding the use of this technology as a preservation tool (storage,\nrefreshing, backup).\n\nPamela ANDRE and Judith ZIDAR\n\nThe National Agricultural Library (NAL) has had extensive experience with\nraster scanning of printed materials.  Since 1987, the Library has\nparticipated in the National Agricultural Text Digitizing Project (NATDP)\na cooperative effort between NAL and forty-five land grant university\nlibraries.  An overview of the project will be presented, giving its\nhistory and NAL's strategy for the future.\n\nAn in-depth discussion of NATDP will follow, including a description of\nthe scanning process, from the gathering of the printed materials to the\narchiving of the electronic pages.  The type of equipment required for a\nstand-alone scanning workstation and the importance of file management\nsoftware will be discussed.  Issues concerning the images themselves will\nbe addressed briefly, such as image format; black and white versus color;\ngray scale versus dithering; and resolution.\n\nAlso described will be a study currently in progress by NAL to evaluate\nthe usefulness of converting microfilm to electronic images in order to\nimprove access.  With the cooperation of Tuskegee University, NAL has\nselected three reels of microfilm from a collection of sixty-seven reels\ncontaining the papers, letters, and drawings of George Washington Carver. \nThe three reels were converted into 3,500 electronic images using a\nspecialized microfilm scanner.  The selection, filming, and indexing of\nthis material will be discussed.\n\nDonald WATERS\n\nProject Open Book, the Yale University Library's effort to convert 10,\n000 books from microfilm to digital imagery, is currently in an advanced\nstate of planning and organization.  The Yale Library has selected a\nmajor vendor to serve as a partner in the project and as systems\nintegrator.  In its proposal, the successful vendor helped isolate areas\nof risk and uncertainty as well as key issues to be addressed during the\nlife of the project.  The Yale Library is now poised to decide what\nmaterial it will convert to digital image form and to seek funding,\ninitially for the first phase and then for the entire project.\n\nThe proposal that Yale accepted for the implementation of Project Open\nBook will provide at the end of three phases a conversion subsystem,\nbrowsing stations distributed on the campus network within the Yale\nLibrary, a subsystem for storing 10,000 books at 200 and 600 dots per\ninch, and network access to the image printers.  Pricing for the system\nimplementation assumes the existence of Yale's campus ethernet network\nand its high-speed image printers, and includes other requisite hardware\nand software, as well as system integration services.  Proposed operating\ncosts include hardware and software maintenance, but do not include\nestimates for the facilities management of the storage devices and image\nservers.\n\nYale selected its vendor partner in a formal process, partly funded by\nthe Commission for Preservation and Access.  Following a request for\nproposal, the Yale Library selected two vendors as finalists to work with\nYale staff to generate a detailed analysis of requirements for Project\nOpen Book.  Each vendor used the results of the requirements analysis to\ngenerate and submit a formal proposal for the entire project.  This\ncompetitive process not only enabled the Yale Library to select its\nprimary vendor partner but also revealed much about the state of the\nimaging industry, about the varying, corporate commitments to the markets\nfor imaging technology, and about the varying organizational dynamics\nthrough which major companies are responding to and seeking to develop\nthese markets.\n\nProject Open Book is focused specifically on the conversion of images\nfrom microfilm to digital form.  The technology for scanning microfilm is\nreadily available but is changing rapidly.  In its project requirements,\nthe Yale Library emphasized features of the technology that affect the\ntechnical quality of digital image production and the costs of creating\nand storing the image library:  What levels of digital resolution can be\nachieved by scanning microfilm?  How does variation in the quality of\nmicrofilm, particularly in film produced to preservation standards,\naffect the quality of the digital images?  What technologies can an\noperator effectively and economically apply when scanning film to\nseparate two-up images and to control for and correct image\nimperfections?  How can quality control best be integrated into\ndigitizing work flow that includes document indexing and storage?\n\nThe actual and expected uses of digital images--storage, browsing,\nprinting, and OCR--help determine the standards for measuring their\nquality.  Browsing is especially important, but the facilities available\nfor readers to browse image documents is perhaps the weakest aspect of\nimaging technology and most in need of development.  As it defined its\nrequirements, the Yale Library concentrated on some fundamental aspects\nof usability for image documents:  Does the system have sufficient\nflexibility to handle the full range of document types, including\nmonographs, multi-part and multivolume sets, and serials, as well as\nmanuscript collections?  What conventions are necessary to identify a\ndocument uniquely for storage and retrieval?  Where is the database of\nrecord for storing bibliographic information about the image document? \nHow are basic internal structures of documents, such as pagination, made\naccessible to the reader?  How are the image documents physically\npresented on the screen to the reader?\n\nThe Yale Library designed Project Open Book on the assumption that\nmicrofilm is more than adequate as a medium for preserving the content of\ndeteriorated library materials.  As planning in the project has advanced,\nit is increasingly clear that the challenge of digital image technology\nand the key to the success of efforts like Project Open Book is to\nprovide a means of both preserving and improving access to those\ndeteriorated materials.\n\nSESSION IV-B\n\nGeorge THOMA\n\nIn the use of electronic imaging for document preservation, there are\nseveral issues to consider, such as:  ensuring adequate image quality,\nmaintaining substantial conversion rates (through-put), providing unique\nidentification for automated access and retrieval, and accommodating\nbound volumes and fragile material.\n\nTo maintain high image quality, image processing functions are required\nto correct the deficiencies in the scanned image.  Some commercially\navailable systems include these functions, while some do not.  The\nscanned raw image must be processed to correct contrast deficiencies--\nboth poor overall contrast resulting from light print and/or dark\nbackground, and variable contrast resulting from stains and\nbleed-through.  Furthermore, the scan density must be adequate to allow\nlegibility of print and sufficient fidelity in the pseudo-halftoned gray\nmaterial.  Borders or page-edge effects must be removed for both\ncompactibility and aesthetics.  Page skew must be corrected for aesthetic\nreasons and to enable accurate character recognition if desired. \nCompound images consisting of both two-toned text and gray-scale\nillustrations must be processed appropriately to retain the quality of\neach.\n\nSESSION IV-C\n\nJean BARONAS\n\nStandards publications being developed by scientists, engineers, and\nbusiness managers in Association for Information and Image Management\n(AIIM) standards committees can be applied to electronic image management\n(EIM) processes including:  document (image) transfer, retrieval and\nevaluation; optical disk and document scanning; and document design and\nconversion.  When combined with EIM system planning and operations,\nstandards can assist in generating image databases that are\ninterchangeable among a variety of systems.  The applications of\ndifferent approaches for image-tagging, indexing, compression, and\ntransfer often cause uncertainty concerning EIM system compatibility,\ncalibration, performance, and upward compatibility, until standard\nimplementation parameters are established.  The AIIM standards that are\nbeing developed for these applications can be used to decrease the\nuncertainty, successfully integrate imaging processes, and promote \"open\nsystems.\"  AIIM is an accredited American National Standards Institute\n(ANSI) standards developer with more than twenty committees comprised of\n300 volunteers representing users, vendors, and manufacturers.  The\nstandards publications that are developed in these committees have\nnational acceptance and provide the basis for international harmonization\nin the development of new International Organization for Standardization\n(ISO) standards.\n\nThis presentation describes the development of AIIM's EIM standards and a\nnew effort at AIIM, a database on standards projects in a wide framework\nof imaging industries including capture, recording, processing,\nduplication, distribution, display, evaluation, and preservation.  The\nAIIM Imagery Database will cover imaging standards being developed by\nmany organizations in many different countries.  It will contain\nstandards publications' dates, origins, related national and\ninternational projects, status, key words, and abstracts.  The ANSI Image\nTechnology Standards Board requested that such a database be established,\nas did the ISO/International Electrotechnical Commission Joint Task Force\non Imagery.  AIIM will take on the leadership role for the database and\ncoordinate its development with several standards developers.\n\nPatricia BATTIN\n\n     Characteristics of standards for digital imagery:\n\n          * Nature of digital technology implies continuing volatility.\n\n          * Precipitous standard-setting not possible and probably not\n          desirable.\n\n          * Standards are a complex issue involving the medium, the\n          hardware, the software, and the technical capacity for\n          reproductive fidelity and clarity.\n\n          * The prognosis for reliable archival standards (as defined by\n          librarians) in the foreseeable future is poor.\n\n     Significant potential and attractiveness of digital technology as a\n     preservation medium and access mechanism.\n\n     Productive use of digital imagery for preservation requires a\n     reconceptualizing of preservation principles in a volatile,\n     standardless world.\n\n     Concept of managing continuing access in the digital environment\n     rather than focusing on the permanence of the medium and long-term\n     archival standards developed for the analog world.\n\n     Transition period:  How long and what to do?\n\n          *  Redefine \"archival.\"\n\n          *  Remove the burden of \"archival copy\" from paper artifacts.\n\n          *  Use digital technology for storage, develop management\n          strategies for refreshing medium, hardware and software.\n\n          *  Create acid-free paper copies for transition period backup\n          until we develop reliable procedures for ensuring continuing\n          access to digital files.\n\nSESSION IV-D\n\nStuart WEIBEL            The Role of SGML Markup in the CORE Project (6)\n\nThe emergence of high-speed telecommunications networks as a basic\nfeature of the scholarly workplace is driving the demand for electronic\ndocument delivery.  Three distinct categories of electronic\npublishing/republishing are necessary to support access demands in this\nemerging environment:\n\n     1.)  Conversion of paper or microfilm archives to electronic format\n     2.)  Conversion of electronic files to formats tailored to\n          electronic retrieval and display\n     3.)  Primary electronic publishing (materials for which the\n          electronic version is the primary format)\n\nOCLC has experimental or product development activities in each of these\nareas.  Among the challenges that lie ahead is the integration of these\nthree types of information stores in coherent distributed systems.\n\nThe CORE (Chemistry Online Retrieval Experiment) Project is a model for\nthe conversion of large text and graphics collections for which\nelectronic typesetting files are available (category 2).  The American\nChemical Society has made available computer typography files dating from\n1980 for its twenty journals.  This collection of some 250 journal-years\nis being converted to an electronic format that will be accessible\nthrough several end-user applications.\n\nThe use of Standard Generalized Markup Language (SGML) offers the means\nto capture the structural richness of the original articles in a way that\nwill support a variety of retrieval, navigation, and display options\nnecessary to navigate effectively in very large text databases.\n\nAn SGML document consists of text that is marked up with descriptive tags\nthat specify the function of a given element within the document.  As a\nformal language construct, an SGML document can be parsed against a\ndocument-type definition (DTD) that unambiguously defines what elements\nare allowed and where in the document they can (or must) occur.  This\nformalized map of article structure allows the user interface design to\nbe uncoupled from the underlying database system, an important step\ntoward interoperability.  Demonstration of this separability is a part of\nthe CORE project, wherein user interface designs born of very different\nphilosophies will access the same database.\n\nNOTES:\n     (6)  The CORE project is a collaboration among Cornell University's\n     Mann Library, Bell Communications Research (Bellcore), the American\n     Chemical Society (ACS), the Chemical Abstracts Service (CAS), and\n     OCLC.\n\nMichael LESK                  The CORE Electronic Chemistry Library\n\nA major on-line file of chemical journal literature complete with\ngraphics is being developed to test the usability of fully electronic\naccess to documents, as a joint project of Cornell University, the\nAmerican Chemical Society, the Chemical Abstracts Service, OCLC, and\nBellcore (with additional support from Sun Microsystems, Springer-Verlag,\nDigitaI Equipment Corporation, Sony Corporation of America, and Apple\nComputers).  Our file contains the American Chemical Society's on-line\njournals, supplemented with the graphics from the paper publication.  The\nindexing of the articles from Chemical Abstracts Documents is available\nin both image and text format, and several different interfaces can be\nused.  Our goals are (1) to assess the effectiveness and acceptability of\nelectronic access to primary journals as compared with paper, and (2) to\nidentify the most desirable functions of the user interface to an\nelectronic system of journals, including in particular a comparison of\npage-image display with ASCII display interfaces.  Early experiments with\nchemistry students on a variety of tasks suggest that searching tasks are\ncompleted much faster with any electronic system than with paper, but\nthat for reading all versions of the articles are roughly equivalent.\n\nPamela ANDRE and Judith ZIDAR\n\nText conversion is far more expensive and time-consuming than image\ncapture alone.  NAL's experience with optical character recognition (OCR)\nwill be related and compared with the experience of having text rekeyed. \nWhat factors affect OCR accuracy?  How accurate does full text have to be\nin order to be useful?  How do different users react to imperfect text? \nThese are questions that will be explored.  For many, a service bureau\nmay be a better solution than performing the work inhouse; this will also\nbe discussed.\n\nSESSION VI\n\nMarybeth PETERS\n\nCopyright law protects creative works.  Protection granted by the law to\nauthors and disseminators of works includes the right to do or authorize\nthe following:  reproduce the work, prepare derivative works, distribute\nthe work to the public, and publicly perform or display the work.  In\naddition, copyright owners of sound recordings and computer programs have\nthe right to control rental of their works.  These rights are not\nunlimited; there are a number of exceptions and limitations.\n\nAn electronic environment places strains on the copyright system. \nCopyright owners want to control uses of their work and be paid for any\nuse; the public wants quick and easy access at little or no cost.  The\nmarketplace is working in this area.  Contracts, guidelines on electronic\nuse, and collective licensing are in use and being refined.\n\nIssues concerning the ability to change works without detection are more\ndifficult to deal with.  Questions concerning the integrity of the work\nand the status of the changed version under the copyright law are to be\naddressed.  These are public policy issues which require informed\ndialogue.\n\n\n               ***   ***   ***   ******   ***   ***   ***\n\n\n                Appendix III:  DIRECTORY OF PARTICIPANTS\n                         \n\nPRESENTERS:\n\n     Pamela Q.J. Andre\n     Associate Director, Automation\n     National Agricultural Library\n     10301 Baltimore Boulevard\n     Beltsville, MD 20705-2351\n     Phone:  (301) 504-6813\n     Fax:  (301) 504-7473\n     E-mail:  INTERNET:  PANDRE@ASRR.ARSUSDA.GOV\n\n     Jean Baronas, Senior Manager\n     Department of Standards and Technology\n     Association for Information and Image Management (AIIM)\n     1100 Wayne Avenue, Suite 1100\n     Silver Spring, MD 20910\n     Phone:  (301) 587-8202\n     Fax:  (301) 587-2711\n     \n     Patricia Battin, President\n     The Commission on Preservation and Access\n     1400 16th Street, N.W.\n     Suite 740\n     Washington, DC 20036-2217\n     Phone:  (202) 939-3400\n     Fax:  (202) 939-3407\n     E-mail:  CPA@GWUVM.BITNET\n\n     Howard Besser\n     Centre Canadien d'Architecture\n     (Canadian Center for Architecture)\n     1920, rue Baile\n     Montreal, Quebec H3H 2S6\n     CANADA\n     Phone:  (514) 939-7001\n     Fax:  (514) 939-7020\n     E-mail:  howard@lis.pitt.edu\n\n     Edwin B. Brownrigg, Executive Director\n     Memex Research Institute\n     422 Bonita Avenue\n     Roseville, CA 95678\n     Phone:  (916) 784-2298\n     Fax:  (916) 786-7559\n     E-mail:  BITNET:  MEMEX@CALSTATE.2\n\n     Eric M. Calaluca, Vice President\n     Chadwyck-Healey, Inc.\n     1101 King Street\n     Alexandria, VA 223l4\n     Phone:  (800) 752-05l5\n     Fax:  (703) 683-7589\n\n     James Daly\n     4015 Deepwood Road\n     Baltimore, MD 21218-1404\n     Phone:  (410) 235-0763\n\n     Ricky Erway, Associate Coordinator\n     American Memory\n     Library of Congress\n     Phone:  (202) 707-6233\n     Fax:  (202) 707-3764\n\n     Carl Fleischhauer, Coordinator\n     American Memory\n     Library of Congress\n     Phone:  (202) 707-6233\n     Fax:  (202) 707-3764\n\n     Joanne Freeman\n     2000 Jefferson Park Avenue, No. 7\n     Charlottesville, VA  22903\n     \n     Prosser Gifford\n     Director for Scholarly Programs\n     Library of Congress\n     Phone:  (202) 707-1517\n     Fax:  (202) 707-9898\n     E-mail:  pgif@seq1.loc.gov\n\n     Jacqueline Hess, Director\n     National Demonstration Laboratory\n       for Interactive Information Technologies\n     Library of Congress\n     Phone:  (202) 707-4157\n     Fax:  (202) 707-2829\n     \n     Susan Hockey, Director\n     Center for Electronic Texts in the Humanities (CETH)\n     Alexander Library\n     Rutgers University\n     169 College Avenue\n     New Brunswick, NJ 08903\n     Phone:  (908) 932-1384\n     Fax:  (908) 932-1386\n     E-mail:  hockey@zodiac.rutgers.edu\n\n     William L. Hooton, Vice President\n     Business & Technical Development\n       Imaging & Information Systems Group\n     I-NET\n     6430 Rockledge Drive, Suite 400\n     Bethesda, MD 208l7\n     Phone:  (301) 564-6750\n     Fax:  (513) 564-6867\n\n     Anne R. Kenney, Associate Director\n     Department of Preservation and Conservation\n     701 Olin Library\n     Cornell University\n     Ithaca, NY 14853\n     Phone:  (607) 255-6875\n     Fax:  (607) 255-9346\n     E-mail:  LYDY@CORNELLA.BITNET\n\n     Ronald L. Larsen\n     Associate Director for Information Technology\n     University of Maryland at College Park\n     Room B0224, McKeldin Library\n     College Park, MD 20742-7011\n     Phone:  (301) 405-9194\n     Fax:  (301) 314-9865\n     E-mail:  rlarsen@libr.umd.edu\n\n     Maria L. Lebron, Managing Editor\n     The Online Journal of Current Clinical Trials\n     l333 H Street, N.W.\n     Washington, DC 20005\n     Phone:  (202) 326-6735\n     Fax:  (202) 842-2868\n     E-mail:  PUBSAAAS@GWUVM.BITNET\n\n     Michael Lesk, Executive Director\n     Computer Science Research\n     Bell Communications Research, Inc.\n     Rm 2A-385\n     445 South Street\n     Morristown, NJ 07960-l9l0     \n     Phone:  (201) 829-4070\n     Fax:  (201) 829-5981\n     E-mail:  lesk@bellcore.com (Internet) or bellcore!lesk (uucp)\n\n     Clifford A. Lynch\n     Director, Library Automation\n     University of California,\n        Office of the President\n     300 Lakeside Drive, 8th Floor\n     Oakland, CA 94612-3350\n     Phone:  (510) 987-0522\n     Fax:  (510) 839-3573\n     E-mail:  calur@uccmvsa\n\n     Avra Michelson\n     National Archives and Records Administration\n     NSZ Rm. 14N\n     7th & Pennsylvania, N.W.\n     Washington, D.C. 20408\n     Phone:  (202) 501-5544\n     Fax:  (202) 501-5533\n     E-mail:  tmi@cu.nih.gov\n     \n     Elli Mylonas, Managing Editor\n     Perseus Project\n     Department of the Classics\n     Harvard University\n     319 Boylston Hall\n     Cambridge, MA 02138\n     Phone:  (617) 495-9025, (617) 495-0456 (direct)\n     Fax:  (617) 496-8886\n     E-mail:  Elli@IKAROS.Harvard.EDU or elli@wjh12.harvard.edu\n\n     David Woodley Packard\n     Packard Humanities Institute\n     300 Second Street, Suite 201\n     Los Altos, CA 94002\n     Phone:  (415) 948-0150 (PHI)\n     Fax:  (415) 948-5793\n\n     Lynne K. Personius, Assistant Director\n     Cornell Information Technologies for\n      Scholarly Information Sources\n     502 Olin Library\n     Cornell University\n     Ithaca, NY 14853\n     Phone:  (607) 255-3393\n     Fax:  (607) 255-9346\n     E-mail:  JRN@CORNELLC.BITNET\n\n     Marybeth Peters\n     Policy Planning Adviser to the\n       Register of Copyrights\n     Library of Congress\n     Office LM 403\n     Phone:  (202) 707-8350\n     Fax:  (202) 707-8366\n\n     C. Michael Sperberg-McQueen\n     Editor, Text Encoding Initiative\n     Computer Center (M/C 135)\n     University of Illinois at Chicago\n     Box 6998\n     Chicago, IL 60680\n     Phone:  (312) 413-0317\n     Fax:  (312) 996-6834\n     E-mail:  u35395@uicvm..cc.uic.edu or u35395@uicvm.bitnet\n\n     George R. Thoma, Chief\n     Communications Engineering Branch\n     National Library of Medicine\n     8600 Rockville Pike\n     Bethesda, MD 20894\n     Phone:  (301) 496-4496\n     Fax:  (301) 402-0341\n     E-mail:  thoma@lhc.nlm.nih.gov\n\n     Dorothy Twohig, Editor\n     The Papers of George Washington\n     504 Alderman Library\n     University of Virginia\n     Charlottesville, VA 22903-2498\n     Phone:  (804) 924-0523\n     Fax:  (804) 924-4337\n\n     Susan H. Veccia, Team leader\n     American Memory, User Evaluation\n     Library of Congress\n     American Memory Evaluation Project\n     Phone:  (202) 707-9104\n     Fax:  (202) 707-3764\n     E-mail:  svec@seq1.loc.gov\n\n     Donald J. Waters, Head\n     Systems Office\n     Yale University Library\n     New Haven, CT 06520\n     Phone:  (203) 432-4889\n     Fax:  (203) 432-7231\n     E-mail:  DWATERS@YALEVM.BITNET or DWATERS@YALEVM.YCC.YALE.EDU\n\n     Stuart Weibel, Senior Research Scientist\n     OCLC\n     6565 Frantz Road\n     Dublin, OH 43017\n     Phone:  (614) 764-608l\n     Fax:  (614) 764-2344\n     E-mail:  INTERNET:  Stu@rsch.oclc.org\n\n     Robert G. Zich\n     Special Assistant to the Associate Librarian\n       for Special Projects\n     Library of Congress\n     Phone:  (202) 707-6233\n     Fax:  (202) 707-3764\n     E-mail:  rzic@seq1.loc.gov\n\n     Judith A. Zidar, Coordinator\n     National Agricultural Text Digitizing Program\n     Information Systems Division\n     National Agricultural Library\n     10301 Baltimore Boulevard\n     Beltsville, MD 20705-2351\n     Phone:  (301) 504-6813 or 504-5853\n     Fax:  (301) 504-7473\n     E-mail:  INTERNET:  JZIDAR@ASRR.ARSUSDA.GOV\n\n\nOBSERVERS:\n\n     Helen Aguera, Program Officer\n     Division of Research\n     Room 318\n     National Endowment for the Humanities\n     1100 Pennsylvania Avenue, N.W.\n     Washington, D.C. 20506\n     Phone:  (202) 786-0358\n     Fax:  (202) 786-0243\n\n     M. Ellyn Blanton, Deputy Director\n     National Demonstration Laboratory\n       for Interactive Information Technologies\n     Library of Congress\n     Phone:  (202) 707-4157\n     Fax:  (202) 707-2829\n\n     Charles M. Dollar\n     National Archives and Records Administration\n     NSZ Rm. 14N\n     7th & Pennsylvania, N.W.\n     Washington, DC 20408\n     Phone:  (202) 501-5532\n     Fax:  (202) 501-5512\n\n     Jeffrey Field, Deputy to the Director\n     Division of Preservation and Access\n     Room 802\n     National Endowment for the Humanities\n     1100 Pennsylvania Avenue, N.W.\n     Washington, DC 20506\n     Phone:  (202) 786-0570\n     Fax:  (202) 786-0243\n\n     Lorrin Garson\n     American Chemical Society\n     Research and Development Department\n     1155 16th Street, N.W.\n     Washington, D.C. 20036\n     Phone:  (202) 872-4541\n     Fax:  E-mail:  INTERNET:  LRG96@ACS.ORG\n\n     William M. Holmes, Jr.\n     National Archives and Records Administration\n     NSZ Rm. 14N\n     7th & Pennsylvania, N.W.\n     Washington, DC 20408\n     Phone:  (202) 501-5540\n     Fax:  (202) 501-5512\n     E-mail:  WHOLMES@AMERICAN.EDU\n\n     Sperling Martin\n     Information Resource Management\n     20030 Doolittle Street\n     Gaithersburg, MD 20879\n     Phone:  (301) 924-1803\n\n     Michael Neuman, Director\n     The Center for Text and Technology\n     Academic Computing Center\n     238 Reiss Science Building\n     Georgetown University\n     Washington, DC 20057\n     Phone:  (202) 687-6096\n     Fax:  (202) 687-6003\n     E-mail:  neuman@guvax.bitnet, neuman@guvax.georgetown.edu\n\n     Barbara Paulson, Program Officer\n     Division of Preservation and Access\n     Room 802\n     National Endowment for the Humanities\n     1100 Pennsylvania Avenue, N.W.\n     Washington, DC 20506\n     Phone:  (202) 786-0577\n     Fax:  (202) 786-0243\n     \n     Allen H. Renear\n     Senior Academic Planning Analyst\n     Brown University Computing and Information Services\n     115 Waterman Street\n     Campus Box 1885\n     Providence, R.I. 02912\n     Phone:  (401) 863-7312\n     Fax:  (401) 863-7329\n     E-mail:  BITNET:  Allen@BROWNVM or           \n     INTERNET:  Allen@brownvm.brown.edu\n\n     Susan M. Severtson, President\n     Chadwyck-Healey, Inc.\n     1101 King Street\n     Alexandria, VA 223l4\n     Phone:  (800) 752-05l5\n     Fax:  (703) 683-7589     \n\n     Frank Withrow\n     U.S. Department of Education\n     555 New Jersey Avenue, N.W.\n     Washington, DC 20208-5644\n     Phone:  (202) 219-2200\n     Fax:  (202) 219-2106\n\n\n(LC STAFF)\n     \n     Linda L. Arret\n     Machine-Readable Collections Reading Room LJ 132\n     (202) 707-1490\n\n     John D. Byrum, Jr.\n     Descriptive Cataloging Division LM 540\n     (202) 707-5194\n\n     Mary Jane Cavallo\n     Science and Technology Division LA 5210\n     (202) 707-1219\n\n     Susan Thea David\n     Congressional Research Service LM 226\n     (202) 707-7169\n\n     Robert Dierker\n     Senior Adviser for Multimedia Activities LM 608\n     (202) 707-6151\n\n     William W. Ellis\n     Associate Librarian for Science and Technology LM 611\n     (202) 707-6928\n\n     Ronald Gephart\n     Manuscript Division LM 102\n     (202) 707-5097\n\n     James Graber\n     Information Technology Services LM G51\n     (202) 707-9628\n\n     Rich Greenfield\n     American Memory LM 603\n     (202) 707-6233\n\n     Rebecca Guenther\n     Network Development LM 639\n     (202) 707-5092\n\n     Kenneth E. Harris\n     Preservation LM G21\n     (202) 707-5213\n\n     Staley Hitchcock\n     Manuscript Division LM 102\n     (202) 707-5383\n\n     Bohdan Kantor\n     Office of Special Projects LM 612\n     (202) 707-0180\n\n     John W. Kimball, Jr\n     Machine-Readable Collections Reading Room LJ 132\n     (202) 707-6560\n\n     Basil Manns\n     Information Technology Services LM G51\n     (202) 707-8345\n\n     Sally Hart McCallum\n     Network Development LM 639\n     (202) 707-6237\n\n     Dana J. Pratt\n     Publishing Office LM 602\n     (202) 707-6027\n\n     Jane Riefenhauser\n     American Memory LM 603\n     (202) 707-6233\n\n     William Z. Schenck\n     Collections Development LM 650\n     (202) 707-7706\n\n     Chandru J. Shahani\n     Preservation Research and Testing Office (R&T) LM G38\n     (202) 707-5607\n\n     William J. Sittig\n     Collections Development LM 650\n     (202) 707-7050\n\n     Paul Smith\n     Manuscript Division LM 102\n     (202) 707-5097\n\n     James L. Stevens\n     Information Technology Services LM G51\n     (202) 707-9688\n\n     Karen Stuart\n     Manuscript Division LM 130\n     (202) 707-5389\n\n     Tamara Swora\n     Preservation Microfilming Office LM G05\n     (202) 707-6293\n\n     Sarah Thomas\n     Collections Cataloging LM 642\n     (202) 707-5333\n\n\n                                   END\n      *************************************************************\n\nNote:  This file has been edited for use on computer networks.  This\nediting required the removal of diacritics, underlining, and fonts such\nas italics and bold.  \n\nkde 11/92\n\n[A few of the italics (when used for emphasis) were replaced by CAPS mh]\n\n*End of The Project Gutenberg Etext of LOC WORKSHOP ON ELECTRONIC ETEXTS\n\n"
  },
  {
    "path": "testdata/canterbury/plrabn12.txt",
    "content": "\nThis is the February 1992 Project Gutenberg release of: \n \nParadise Lost by John Milton \n \nThe oldest etext known to Project Gutenberg (ca. 1964-1965) \n(If you know of any older ones, please let us know.) \n \n \nIntroduction  (one page) \n \nThis etext was originally created in 1964-1965 according to Dr. \nJoseph Raben of Queens College, NY, to whom it is attributed by \nProject Gutenberg.  We had heard of this etext for years but it \nwas not until 1991 that we actually managed to track it down to \na specific location, and then it took months to convince people \nto let us have a copy, then more months for them actually to do \nthe copying and get it to us.  Then another month to convert to \nsomething we could massage with our favorite 486 in DOS.  After \nthat is was only a matter of days to get it into this shape you \nwill see below.  The original was, of course, in CAPS only, and \nso were all the other etexts of the 60's and early 70's.  Don't \nlet anyone fool you into thinking any etext with both upper and \nlower case is an original; all those original Project Gutenberg \netexts were also in upper case and were translated or rewritten \nmany times to get them into their current condition.  They have \nbeen worked on by many people throughout the world. \n \nIn the course of our searches for Professor Raben and his etext \nwe were never able to determine where copies were or which of a \nvariety of editions he may have used as a source.  We did get a \nlittle information here and there, but even after we received a \ncopy of the etext we were unwilling to release it without first \ndetermining that it was in fact Public Domain and finding Raben \nto verify this and get his permission.  Interested enough, in a \ntotally unrelated action to our searches for him, the professor \nsubscribed to the Project Gutenberg listserver and we happened, \nby accident, to notice his name. (We don't really look at every \nsubscription request as the computers usually handle them.) The \netext was then properly identified, copyright analyzed, and the \ncurrent edition prepared. \n \nTo give you an estimation of the difference in the original and \nwhat we have today:  the original was probably entered on cards \ncommonly known at the time as \"IBM cards\" (Do Not Fold, Spindle \nor Mutilate) and probably took in excess of 100,000 of them.  A \nsingle card could hold 80 characters (hence 80 characters is an \naccepted standard for so many computer margins), and the entire \noriginal edition we received in all caps was over 800,000 chars \nin length, including line enumeration, symbols for caps and the \npunctuation marks, etc., since they were not available keyboard \ncharacters at the time (probably the keyboards operated at baud \nrates of around 113, meaning the typists had to type slowly for \nthe keyboard to keep up). \n \nThis is the second version of Paradise Lost released by Project \nGutenberg.  The first was released as our October, 1991 etext. \n \n \n \n \n \nParadise Lost \n \n \n \n \nBook I \n \n \nOf Man's first disobedience, and the fruit \nOf that forbidden tree whose mortal taste \nBrought death into the World, and all our woe, \nWith loss of Eden, till one greater Man \nRestore us, and regain the blissful seat, \nSing, Heavenly Muse, that, on the secret top \nOf Oreb, or of Sinai, didst inspire \nThat shepherd who first taught the chosen seed \nIn the beginning how the heavens and earth \nRose out of Chaos: or, if Sion hill \nDelight thee more, and Siloa's brook that flowed \nFast by the oracle of God, I thence \nInvoke thy aid to my adventurous song, \nThat with no middle flight intends to soar \nAbove th' Aonian mount, while it pursues \nThings unattempted yet in prose or rhyme. \nAnd chiefly thou, O Spirit, that dost prefer \nBefore all temples th' upright heart and pure, \nInstruct me, for thou know'st; thou from the first \nWast present, and, with mighty wings outspread, \nDove-like sat'st brooding on the vast Abyss, \nAnd mad'st it pregnant: what in me is dark \nIllumine, what is low raise and support; \nThat, to the height of this great argument, \nI may assert Eternal Providence, \nAnd justify the ways of God to men. \n  Say first--for Heaven hides nothing from thy view, \nNor the deep tract of Hell--say first what cause \nMoved our grand parents, in that happy state, \nFavoured of Heaven so highly, to fall off \nFrom their Creator, and transgress his will \nFor one restraint, lords of the World besides. \nWho first seduced them to that foul revolt? \n  Th' infernal Serpent; he it was whose guile, \nStirred up with envy and revenge, deceived \nThe mother of mankind, what time his pride \nHad cast him out from Heaven, with all his host \nOf rebel Angels, by whose aid, aspiring \nTo set himself in glory above his peers, \nHe trusted to have equalled the Most High, \nIf he opposed, and with ambitious aim \nAgainst the throne and monarchy of God, \nRaised impious war in Heaven and battle proud, \nWith vain attempt. Him the Almighty Power \nHurled headlong flaming from th' ethereal sky, \nWith hideous ruin and combustion, down \nTo bottomless perdition, there to dwell \nIn adamantine chains and penal fire, \nWho durst defy th' Omnipotent to arms. \n  Nine times the space that measures day and night \nTo mortal men, he, with his horrid crew, \nLay vanquished, rolling in the fiery gulf, \nConfounded, though immortal. But his doom \nReserved him to more wrath; for now the thought \nBoth of lost happiness and lasting pain \nTorments him: round he throws his baleful eyes, \nThat witnessed huge affliction and dismay, \nMixed with obdurate pride and steadfast hate. \nAt once, as far as Angels ken, he views \nThe dismal situation waste and wild. \nA dungeon horrible, on all sides round, \nAs one great furnace flamed; yet from those flames \nNo light; but rather darkness visible \nServed only to discover sights of woe, \nRegions of sorrow, doleful shades, where peace \nAnd rest can never dwell, hope never comes \nThat comes to all, but torture without end \nStill urges, and a fiery deluge, fed \nWith ever-burning sulphur unconsumed. \nSuch place Eternal Justice has prepared \nFor those rebellious; here their prison ordained \nIn utter darkness, and their portion set, \nAs far removed from God and light of Heaven \nAs from the centre thrice to th' utmost pole. \nOh how unlike the place from whence they fell! \nThere the companions of his fall, o'erwhelmed \nWith floods and whirlwinds of tempestuous fire, \nHe soon discerns; and, weltering by his side, \nOne next himself in power, and next in crime, \nLong after known in Palestine, and named \nBeelzebub. To whom th' Arch-Enemy, \nAnd thence in Heaven called Satan, with bold words \nBreaking the horrid silence, thus began:-- \n  \"If thou beest he--but O how fallen! how changed \nFrom him who, in the happy realms of light \nClothed with transcendent brightness, didst outshine \nMyriads, though bright!--if he whom mutual league, \nUnited thoughts and counsels, equal hope \nAnd hazard in the glorious enterprise \nJoined with me once, now misery hath joined \nIn equal ruin; into what pit thou seest \nFrom what height fallen: so much the stronger proved \nHe with his thunder; and till then who knew \nThe force of those dire arms? Yet not for those, \nNor what the potent Victor in his rage \nCan else inflict, do I repent, or change, \nThough changed in outward lustre, that fixed mind, \nAnd high disdain from sense of injured merit, \nThat with the Mightiest raised me to contend, \nAnd to the fierce contentions brought along \nInnumerable force of Spirits armed, \nThat durst dislike his reign, and, me preferring, \nHis utmost power with adverse power opposed \nIn dubious battle on the plains of Heaven, \nAnd shook his throne. What though the field be lost? \nAll is not lost--the unconquerable will, \nAnd study of revenge, immortal hate, \nAnd courage never to submit or yield: \nAnd what is else not to be overcome? \nThat glory never shall his wrath or might \nExtort from me. To bow and sue for grace \nWith suppliant knee, and deify his power \nWho, from the terror of this arm, so late \nDoubted his empire--that were low indeed; \nThat were an ignominy and shame beneath \nThis downfall; since, by fate, the strength of Gods, \nAnd this empyreal sybstance, cannot fail; \nSince, through experience of this great event, \nIn arms not worse, in foresight much advanced, \nWe may with more successful hope resolve \nTo wage by force or guile eternal war, \nIrreconcilable to our grand Foe, \nWho now triumphs, and in th' excess of joy \nSole reigning holds the tyranny of Heaven.\" \n  So spake th' apostate Angel, though in pain, \nVaunting aloud, but racked with deep despair; \nAnd him thus answered soon his bold compeer:-- \n  \"O Prince, O Chief of many throned Powers \nThat led th' embattled Seraphim to war \nUnder thy conduct, and, in dreadful deeds \nFearless, endangered Heaven's perpetual King, \nAnd put to proof his high supremacy, \nWhether upheld by strength, or chance, or fate, \nToo well I see and rue the dire event \nThat, with sad overthrow and foul defeat, \nHath lost us Heaven, and all this mighty host \nIn horrible destruction laid thus low, \nAs far as Gods and heavenly Essences \nCan perish: for the mind and spirit remains \nInvincible, and vigour soon returns, \nThough all our glory extinct, and happy state \nHere swallowed up in endless misery. \nBut what if he our Conqueror (whom I now \nOf force believe almighty, since no less \nThan such could have o'erpowered such force as ours) \nHave left us this our spirit and strength entire, \nStrongly to suffer and support our pains, \nThat we may so suffice his vengeful ire, \nOr do him mightier service as his thralls \nBy right of war, whate'er his business be, \nHere in the heart of Hell to work in fire, \nOr do his errands in the gloomy Deep? \nWhat can it the avail though yet we feel \nStrength undiminished, or eternal being \nTo undergo eternal punishment?\" \n  Whereto with speedy words th' Arch-Fiend replied:-- \n\"Fallen Cherub, to be weak is miserable, \nDoing or suffering: but of this be sure-- \nTo do aught good never will be our task, \nBut ever to do ill our sole delight, \nAs being the contrary to his high will \nWhom we resist. If then his providence \nOut of our evil seek to bring forth good, \nOur labour must be to pervert that end, \nAnd out of good still to find means of evil; \nWhich ofttimes may succeed so as perhaps \nShall grieve him, if I fail not, and disturb \nHis inmost counsels from their destined aim. \nBut see! the angry Victor hath recalled \nHis ministers of vengeance and pursuit \nBack to the gates of Heaven: the sulphurous hail, \nShot after us in storm, o'erblown hath laid \nThe fiery surge that from the precipice \nOf Heaven received us falling; and the thunder, \nWinged with red lightning and impetuous rage, \nPerhaps hath spent his shafts, and ceases now \nTo bellow through the vast and boundless Deep. \nLet us not slip th' occasion, whether scorn \nOr satiate fury yield it from our Foe. \nSeest thou yon dreary plain, forlorn and wild, \nThe seat of desolation, void of light, \nSave what the glimmering of these livid flames \nCasts pale and dreadful? Thither let us tend \nFrom off the tossing of these fiery waves; \nThere rest, if any rest can harbour there; \nAnd, re-assembling our afflicted powers, \nConsult how we may henceforth most offend \nOur enemy, our own loss how repair, \nHow overcome this dire calamity, \nWhat reinforcement we may gain from hope, \nIf not, what resolution from despair.\" \n  Thus Satan, talking to his nearest mate, \nWith head uplift above the wave, and eyes \nThat sparkling blazed; his other parts besides \nProne on the flood, extended long and large, \nLay floating many a rood, in bulk as huge \nAs whom the fables name of monstrous size, \nTitanian or Earth-born, that warred on Jove, \nBriareos or Typhon, whom the den \nBy ancient Tarsus held, or that sea-beast \nLeviathan, which God of all his works \nCreated hugest that swim th' ocean-stream. \nHim, haply slumbering on the Norway foam, \nThe pilot of some small night-foundered skiff, \nDeeming some island, oft, as seamen tell, \nWith fixed anchor in his scaly rind, \nMoors by his side under the lee, while night \nInvests the sea, and wished morn delays. \nSo stretched out huge in length the Arch-fiend lay, \nChained on the burning lake; nor ever thence \nHad risen, or heaved his head, but that the will \nAnd high permission of all-ruling Heaven \nLeft him at large to his own dark designs, \nThat with reiterated crimes he might \nHeap on himself damnation, while he sought \nEvil to others, and enraged might see \nHow all his malice served but to bring forth \nInfinite goodness, grace, and mercy, shewn \nOn Man by him seduced, but on himself \nTreble confusion, wrath, and vengeance poured. \n  Forthwith upright he rears from off the pool \nHis mighty stature; on each hand the flames \nDriven backward slope their pointing spires, and,rolled \nIn billows, leave i' th' midst a horrid vale. \nThen with expanded wings he steers his flight \nAloft, incumbent on the dusky air, \nThat felt unusual weight; till on dry land \nHe lights--if it were land that ever burned \nWith solid, as the lake with liquid fire, \nAnd such appeared in hue as when the force \nOf subterranean wind transprots a hill \nTorn from Pelorus, or the shattered side \nOf thundering Etna, whose combustible \nAnd fuelled entrails, thence conceiving fire, \nSublimed with mineral fury, aid the winds, \nAnd leave a singed bottom all involved \nWith stench and smoke. Such resting found the sole \nOf unblest feet. Him followed his next mate; \nBoth glorying to have scaped the Stygian flood \nAs gods, and by their own recovered strength, \nNot by the sufferance of supernal Power. \n  \"Is this the region, this the soil, the clime,\" \nSaid then the lost Archangel, \"this the seat \nThat we must change for Heaven?--this mournful gloom \nFor that celestial light? Be it so, since he \nWho now is sovereign can dispose and bid \nWhat shall be right: farthest from him is best \nWhom reason hath equalled, force hath made supreme \nAbove his equals. Farewell, happy fields, \nWhere joy for ever dwells! Hail, horrors! hail, \nInfernal world! and thou, profoundest Hell, \nReceive thy new possessor--one who brings \nA mind not to be changed by place or time. \nThe mind is its own place, and in itself \nCan make a Heaven of Hell, a Hell of Heaven. \nWhat matter where, if I be still the same, \nAnd what I should be, all but less than he \nWhom thunder hath made greater? Here at least \nWe shall be free; th' Almighty hath not built \nHere for his envy, will not drive us hence: \nHere we may reigh secure; and, in my choice, \nTo reign is worth ambition, though in Hell: \nBetter to reign in Hell than serve in Heaven. \nBut wherefore let we then our faithful friends, \nTh' associates and co-partners of our loss, \nLie thus astonished on th' oblivious pool, \nAnd call them not to share with us their part \nIn this unhappy mansion, or once more \nWith rallied arms to try what may be yet \nRegained in Heaven, or what more lost in Hell?\" \n  So Satan spake; and him Beelzebub \nThus answered:--\"Leader of those armies bright \nWhich, but th' Omnipotent, none could have foiled! \nIf once they hear that voice, their liveliest pledge \nOf hope in fears and dangers--heard so oft \nIn worst extremes, and on the perilous edge \nOf battle, when it raged, in all assaults \nTheir surest signal--they will soon resume \nNew courage and revive, though now they lie \nGrovelling and prostrate on yon lake of fire, \nAs we erewhile, astounded and amazed; \nNo wonder, fallen such a pernicious height!\" \n  He scare had ceased when the superior Fiend \nWas moving toward the shore; his ponderous shield, \nEthereal temper, massy, large, and round, \nBehind him cast. The broad circumference \nHung on his shoulders like the moon, whose orb \nThrough optic glass the Tuscan artist views \nAt evening, from the top of Fesole, \nOr in Valdarno, to descry new lands, \nRivers, or mountains, in her spotty globe. \nHis spear--to equal which the tallest pine \nHewn on Norwegian hills, to be the mast \nOf some great ammiral, were but a wand-- \nHe walked with, to support uneasy steps \nOver the burning marl, not like those steps \nOn Heaven's azure; and the torrid clime \nSmote on him sore besides, vaulted with fire. \nNathless he so endured, till on the beach \nOf that inflamed sea he stood, and called \nHis legions--Angel Forms, who lay entranced \nThick as autumnal leaves that strow the brooks \nIn Vallombrosa, where th' Etrurian shades \nHigh over-arched embower; or scattered sedge \nAfloat, when with fierce winds Orion armed \nHath vexed the Red-Sea coast, whose waves o'erthrew \nBusiris and his Memphian chivalry, \nWhile with perfidious hatred they pursued \nThe sojourners of Goshen, who beheld \nFrom the safe shore their floating carcases \nAnd broken chariot-wheels. So thick bestrown, \nAbject and lost, lay these, covering the flood, \nUnder amazement of their hideous change. \nHe called so loud that all the hollow deep \nOf Hell resounded:--\"Princes, Potentates, \nWarriors, the Flower of Heaven--once yours; now lost, \nIf such astonishment as this can seize \nEternal Spirits! Or have ye chosen this place \nAfter the toil of battle to repose \nYour wearied virtue, for the ease you find \nTo slumber here, as in the vales of Heaven? \nOr in this abject posture have ye sworn \nTo adore the Conqueror, who now beholds \nCherub and Seraph rolling in the flood \nWith scattered arms and ensigns, till anon \nHis swift pursuers from Heaven-gates discern \nTh' advantage, and, descending, tread us down \nThus drooping, or with linked thunderbolts \nTransfix us to the bottom of this gulf? \nAwake, arise, or be for ever fallen!\" \n  They heard, and were abashed, and up they sprung \nUpon the wing, as when men wont to watch \nOn duty, sleeping found by whom they dread, \nRouse and bestir themselves ere well awake. \nNor did they not perceive the evil plight \nIn which they were, or the fierce pains not feel; \nYet to their General's voice they soon obeyed \nInnumerable. As when the potent rod \nOf Amram's son, in Egypt's evil day, \nWaved round the coast, up-called a pitchy cloud \nOf locusts, warping on the eastern wind, \nThat o'er the realm of impious Pharaoh hung \nLike Night, and darkened all the land of Nile; \nSo numberless were those bad Angels seen \nHovering on wing under the cope of Hell, \n'Twixt upper, nether, and surrounding fires; \nTill, as a signal given, th' uplifted spear \nOf their great Sultan waving to direct \nTheir course, in even balance down they light \nOn the firm brimstone, and fill all the plain: \nA multitude like which the populous North \nPoured never from her frozen loins to pass \nRhene or the Danaw, when her barbarous sons \nCame like a deluge on the South, and spread \nBeneath Gibraltar to the Libyan sands. \nForthwith, form every squadron and each band, \nThe heads and leaders thither haste where stood \nTheir great Commander--godlike Shapes, and Forms \nExcelling human; princely Dignities; \nAnd Powers that erst in Heaven sat on thrones, \nThough on their names in Heavenly records now \nBe no memorial, blotted out and rased \nBy their rebellion from the Books of Life. \nNor had they yet among the sons of Eve \nGot them new names, till, wandering o'er the earth, \nThrough God's high sufferance for the trial of man, \nBy falsities and lies the greatest part \nOf mankind they corrupted to forsake \nGod their Creator, and th' invisible \nGlory of him that made them to transform \nOft to the image of a brute, adorned \nWith gay religions full of pomp and gold, \nAnd devils to adore for deities: \nThen were they known to men by various names, \nAnd various idols through the heathen world. \n  Say, Muse, their names then known, who first, who last, \nRoused from the slumber on that fiery couch, \nAt their great Emperor's call, as next in worth \nCame singly where he stood on the bare strand, \nWhile the promiscuous crowd stood yet aloof? \n  The chief were those who, from the pit of Hell \nRoaming to seek their prey on Earth, durst fix \nTheir seats, long after, next the seat of God, \nTheir altars by his altar, gods adored \nAmong the nations round, and durst abide \nJehovah thundering out of Sion, throned \nBetween the Cherubim; yea, often placed \nWithin his sanctuary itself their shrines, \nAbominations; and with cursed things \nHis holy rites and solemn feasts profaned, \nAnd with their darkness durst affront his light. \nFirst, Moloch, horrid king, besmeared with blood \nOf human sacrifice, and parents' tears; \nThough, for the noise of drums and timbrels loud, \nTheir children's cries unheard that passed through fire \nTo his grim idol. Him the Ammonite \nWorshiped in Rabba and her watery plain, \nIn Argob and in Basan, to the stream \nOf utmost Arnon. Nor content with such \nAudacious neighbourhood, the wisest heart \nOf Solomon he led by fraoud to build \nHis temple right against the temple of God \nOn that opprobrious hill, and made his grove \nThe pleasant valley of Hinnom, Tophet thence \nAnd black Gehenna called, the type of Hell. \nNext Chemos, th' obscene dread of Moab's sons, \nFrom Aroar to Nebo and the wild \nOf southmost Abarim; in Hesebon \nAnd Horonaim, Seon's real, beyond \nThe flowery dale of Sibma clad with vines, \nAnd Eleale to th' Asphaltic Pool: \nPeor his other name, when he enticed \nIsrael in Sittim, on their march from Nile, \nTo do him wanton rites, which cost them woe. \nYet thence his lustful orgies he enlarged \nEven to that hill of scandal, by the grove \nOf Moloch homicide, lust hard by hate, \nTill good Josiah drove them thence to Hell. \nWith these came they who, from the bordering flood \nOf old Euphrates to the brook that parts \nEgypt from Syrian ground, had general names \nOf Baalim and Ashtaroth--those male, \nThese feminine. For Spirits, when they please, \nCan either sex assume, or both; so soft \nAnd uncompounded is their essence pure, \nNot tried or manacled with joint or limb, \nNor founded on the brittle strength of bones, \nLike cumbrous flesh; but, in what shape they choose, \nDilated or condensed, bright or obscure, \nCan execute their airy purposes, \nAnd works of love or enmity fulfil. \nFor those the race of Israel oft forsook \nTheir Living Strength, and unfrequented left \nHis righteous altar, bowing lowly down \nTo bestial gods; for which their heads as low \nBowed down in battle, sunk before the spear \nOf despicable foes. With these in troop \nCame Astoreth, whom the Phoenicians called \nAstarte, queen of heaven, with crescent horns; \nTo whose bright image nigntly by the moon \nSidonian virgins paid their vows and songs; \nIn Sion also not unsung, where stood \nHer temple on th' offensive mountain, built \nBy that uxorious king whose heart, though large, \nBeguiled by fair idolatresses, fell \nTo idols foul. Thammuz came next behind, \nWhose annual wound in Lebanon allured \nThe Syrian damsels to lament his fate \nIn amorous ditties all a summer's day, \nWhile smooth Adonis from his native rock \nRan purple to the sea, supposed with blood \nOf Thammuz yearly wounded: the love-tale \nInfected Sion's daughters with like heat, \nWhose wanton passions in the sacred proch \nEzekiel saw, when, by the vision led, \nHis eye surveyed the dark idolatries \nOf alienated Judah. Next came one \nWho mourned in earnest, when the captive ark \nMaimed his brute image, head and hands lopt off, \nIn his own temple, on the grunsel-edge, \nWhere he fell flat and shamed his worshippers: \nDagon his name, sea-monster,upward man \nAnd downward fish; yet had his temple high \nReared in Azotus, dreaded through the coast \nOf Palestine, in Gath and Ascalon, \nAnd Accaron and Gaza's frontier bounds. \nHim followed Rimmon, whose delightful seat \nWas fair Damascus, on the fertile banks \nOf Abbana and Pharphar, lucid streams. \nHe also against the house of God was bold: \nA leper once he lost, and gained a king-- \nAhaz, his sottish conqueror, whom he drew \nGod's altar to disparage and displace \nFor one of Syrian mode, whereon to burn \nHis odious offerings, and adore the gods \nWhom he had vanquished. After these appeared \nA crew who, under names of old renown-- \nOsiris, Isis, Orus, and their train-- \nWith monstrous shapes and sorceries abused \nFanatic Egypt and her priests to seek \nTheir wandering gods disguised in brutish forms \nRather than human. Nor did Israel scape \nTh' infection, when their borrowed gold composed \nThe calf in Oreb; and the rebel king \nDoubled that sin in Bethel and in Dan, \nLikening his Maker to the grazed ox-- \nJehovah, who, in one night, when he passed \nFrom Egypt marching, equalled with one stroke \nBoth her first-born and all her bleating gods. \nBelial came last; than whom a Spirit more lewd \nFell not from Heaven, or more gross to love \nVice for itself. To him no temple stood \nOr altar smoked; yet who more oft than he \nIn temples and at altars, when the priest \nTurns atheist, as did Eli's sons, who filled \nWith lust and violence the house of God? \nIn courts and palaces he also reigns, \nAnd in luxurious cities, where the noise \nOf riot ascends above their loftiest towers, \nAnd injury and outrage; and, when night \nDarkens the streets, then wander forth the sons \nOf Belial, flown with insolence and wine. \nWitness the streets of Sodom, and that night \nIn Gibeah, when the hospitable door \nExposed a matron, to avoid worse rape. \n  These were the prime in order and in might: \nThe rest were long to tell; though far renowned \nTh' Ionian gods--of Javan's issue held \nGods, yet confessed later than Heaven and Earth, \nTheir boasted parents;--Titan, Heaven's first-born, \nWith his enormous brood, and birthright seized \nBy younger Saturn: he from mightier Jove, \nHis own and Rhea's son, like measure found; \nSo Jove usurping reigned. These, first in Crete \nAnd Ida known, thence on the snowy top \nOf cold Olympus ruled the middle air, \nTheir highest heaven; or on the Delphian cliff, \nOr in Dodona, and through all the bounds \nOf Doric land; or who with Saturn old \nFled over Adria to th' Hesperian fields, \nAnd o'er the Celtic roamed the utmost Isles. \n  All these and more came flocking; but with looks \nDowncast and damp; yet such wherein appeared \nObscure some glimpse of joy to have found their Chief \nNot in despair, to have found themselves not lost \nIn loss itself; which on his countenance cast \nLike doubtful hue. But he, his wonted pride \nSoon recollecting, with high words, that bore \nSemblance of worth, not substance, gently raised \nTheir fainting courage, and dispelled their fears. \nThen straight commands that, at the warlike sound \nOf trumpets loud and clarions, be upreared \nHis mighty standard. That proud honour claimed \nAzazel as his right, a Cherub tall: \nWho forthwith from the glittering staff unfurled \nTh' imperial ensign; which, full high advanced, \nShone like a meteor streaming to the wind, \nWith gems and golden lustre rich emblazed, \nSeraphic arms and trophies; all the while \nSonorous metal blowing martial sounds: \nAt which the universal host up-sent \nA shout that tore Hell's concave, and beyond \nFrighted the reign of Chaos and old Night. \nAll in a moment through the gloom were seen \nTen thousand banners rise into the air, \nWith orient colours waving: with them rose \nA forest huge of spears; and thronging helms \nAppeared, and serried shields in thick array \nOf depth immeasurable. Anon they move \nIn perfect phalanx to the Dorian mood \nOf flutes and soft recorders--such as raised \nTo height of noblest temper heroes old \nArming to battle, and instead of rage \nDeliberate valour breathed, firm, and unmoved \nWith dread of death to flight or foul retreat; \nNor wanting power to mitigate and swage \nWith solemn touches troubled thoughts, and chase \nAnguish and doubt and fear and sorrow and pain \nFrom mortal or immortal minds. Thus they, \nBreathing united force with fixed thought, \nMoved on in silence to soft pipes that charmed \nTheir painful steps o'er the burnt soil. And now \nAdvanced in view they stand--a horrid front \nOf dreadful length and dazzling arms, in guise \nOf warriors old, with ordered spear and shield, \nAwaiting what command their mighty Chief \nHad to impose. He through the armed files \nDarts his experienced eye, and soon traverse \nThe whole battalion views--their order due, \nTheir visages and stature as of gods; \nTheir number last he sums. And now his heart \nDistends with pride, and, hardening in his strength, \nGlories: for never, since created Man, \nMet such embodied force as, named with these, \nCould merit more than that small infantry \nWarred on by cranes--though all the giant brood \nOf Phlegra with th' heroic race were joined \nThat fought at Thebes and Ilium, on each side \nMixed with auxiliar gods; and what resounds \nIn fable or romance of Uther's son, \nBegirt with British and Armoric knights; \nAnd all who since, baptized or infidel, \nJousted in Aspramont, or Montalban, \nDamasco, or Marocco, or Trebisond, \nOr whom Biserta sent from Afric shore \nWhen Charlemain with all his peerage fell \nBy Fontarabbia. Thus far these beyond \nCompare of mortal prowess, yet observed \nTheir dread Commander. He, above the rest \nIn shape and gesture proudly eminent, \nStood like a tower. His form had yet not lost \nAll her original brightness, nor appeared \nLess than Archangel ruined, and th' excess \nOf glory obscured: as when the sun new-risen \nLooks through the horizontal misty air \nShorn of his beams, or, from behind the moon, \nIn dim eclipse, disastrous twilight sheds \nOn half the nations, and with fear of change \nPerplexes monarchs. Darkened so, yet shone \nAbove them all th' Archangel: but his face \nDeep scars of thunder had intrenched, and care \nSat on his faded cheek, but under brows \nOf dauntless courage, and considerate pride \nWaiting revenge. Cruel his eye, but cast \nSigns of remorse and passion, to behold \nThe fellows of his crime, the followers rather \n(Far other once beheld in bliss), condemned \nFor ever now to have their lot in pain-- \nMillions of Spirits for his fault amerced \nOf Heaven, and from eteranl splendours flung \nFor his revolt--yet faithful how they stood, \nTheir glory withered; as, when heaven's fire \nHath scathed the forest oaks or mountain pines, \nWith singed top their stately growth, though bare, \nStands on the blasted heath. He now prepared \nTo speak; whereat their doubled ranks they bend \nFrom wing to wing, and half enclose him round \nWith all his peers: attention held them mute. \nThrice he assayed, and thrice, in spite of scorn, \nTears, such as Angels weep, burst forth: at last \nWords interwove with sighs found out their way:-- \n  \"O myriads of immortal Spirits! O Powers \nMatchless, but with th' Almighth!--and that strife \nWas not inglorious, though th' event was dire, \nAs this place testifies, and this dire change, \nHateful to utter. But what power of mind, \nForseeing or presaging, from the depth \nOf knowledge past or present, could have feared \nHow such united force of gods, how such \nAs stood like these, could ever know repulse? \nFor who can yet believe, though after loss, \nThat all these puissant legions, whose exile \nHath emptied Heaven, shall fail to re-ascend, \nSelf-raised, and repossess their native seat? \nFor me, be witness all the host of Heaven, \nIf counsels different, or danger shunned \nBy me, have lost our hopes. But he who reigns \nMonarch in Heaven till then as one secure \nSat on his throne, upheld by old repute, \nConsent or custom, and his regal state \nPut forth at full, but still his strength concealed-- \nWhich tempted our attempt, and wrought our fall. \nHenceforth his might we know, and know our own, \nSo as not either to provoke, or dread \nNew war provoked: our better part remains \nTo work in close design, by fraud or guile, \nWhat force effected not; that he no less \nAt length from us may find, who overcomes \nBy force hath overcome but half his foe. \nSpace may produce new Worlds; whereof so rife \nThere went a fame in Heaven that he ere long \nIntended to create, and therein plant \nA generation whom his choice regard \nShould favour equal to the Sons of Heaven. \nThither, if but to pry, shall be perhaps \nOur first eruption--thither, or elsewhere; \nFor this infernal pit shall never hold \nCelestial Spirits in bondage, nor th' Abyss \nLong under darkness cover. But these thoughts \nFull counsel must mature. Peace is despaired; \nFor who can think submission? War, then, war \nOpen or understood, must be resolved.\" \n  He spake; and, to confirm his words, outflew \nMillions of flaming swords, drawn from the thighs \nOf mighty Cherubim; the sudden blaze \nFar round illumined Hell. Highly they raged \nAgainst the Highest, and fierce with grasped arms \nClashed on their sounding shields the din of war, \nHurling defiance toward the vault of Heaven. \n  There stood a hill not far, whose grisly top \nBelched fire and rolling smoke; the rest entire \nShone with a glossy scurf--undoubted sign \nThat in his womb was hid metallic ore, \nThe work of sulphur. Thither, winged with speed, \nA numerous brigade hastened: as when bands \nOf pioneers, with spade and pickaxe armed, \nForerun the royal camp, to trench a field, \nOr cast a rampart. Mammon led them on-- \nMammon, the least erected Spirit that fell \nFrom Heaven; for even in Heaven his looks and thoughts \nWere always downward bent, admiring more \nThe riches of heaven's pavement, trodden gold, \nThan aught divine or holy else enjoyed \nIn vision beatific. By him first \nMen also, and by his suggestion taught, \nRansacked the centre, and with impious hands \nRifled the bowels of their mother Earth \nFor treasures better hid. Soon had his crew \nOpened into the hill a spacious wound, \nAnd digged out ribs of gold. Let none admire \nThat riches grow in Hell; that soil may best \nDeserve the precious bane. And here let those \nWho boast in mortal things, and wondering tell \nOf Babel, and the works of Memphian kings, \nLearn how their greatest monuments of fame \nAnd strength, and art, are easily outdone \nBy Spirits reprobate, and in an hour \nWhat in an age they, with incessant toil \nAnd hands innumerable, scarce perform. \nNigh on the plain, in many cells prepared, \nThat underneath had veins of liquid fire \nSluiced from the lake, a second multitude \nWith wondrous art founded the massy ore, \nSevering each kind, and scummed the bullion-dross. \nA third as soon had formed within the ground \nA various mould, and from the boiling cells \nBy strange conveyance filled each hollow nook; \nAs in an organ, from one blast of wind, \nTo many a row of pipes the sound-board breathes. \nAnon out of the earth a fabric huge \nRose like an exhalation, with the sound \nOf dulcet symphonies and voices sweet-- \nBuilt like a temple, where pilasters round \nWere set, and Doric pillars overlaid \nWith golden architrave; nor did there want \nCornice or frieze, with bossy sculptures graven; \nThe roof was fretted gold. Not Babylon \nNor great Alcairo such magnificence \nEqualled in all their glories, to enshrine \nBelus or Serapis their gods, or seat \nTheir kings, when Egypt with Assyria strove \nIn wealth and luxury. Th' ascending pile \nStood fixed her stately height, and straight the doors, \nOpening their brazen folds, discover, wide \nWithin, her ample spaces o'er the smooth \nAnd level pavement: from the arched roof, \nPendent by subtle magic, many a row \nOf starry lamps and blazing cressets, fed \nWith naptha and asphaltus, yielded light \nAs from a sky. The hasty multitude \nAdmiring entered; and the work some praise, \nAnd some the architect. His hand was known \nIn Heaven by many a towered structure high, \nWhere sceptred Angels held their residence, \nAnd sat as Princes, whom the supreme King \nExalted to such power, and gave to rule, \nEach in his Hierarchy, the Orders bright. \nNor was his name unheard or unadored \nIn ancient Greece; and in Ausonian land \nMen called him Mulciber; and how he fell \nFrom Heaven they fabled, thrown by angry Jove \nSheer o'er the crystal battlements: from morn \nTo noon he fell, from noon to dewy eve, \nA summer's day, and with the setting sun \nDropt from the zenith, like a falling star, \nOn Lemnos, th' Aegaean isle. Thus they relate, \nErring; for he with this rebellious rout \nFell long before; nor aught aviled him now \nTo have built in Heaven high towers; nor did he scape \nBy all his engines, but was headlong sent, \nWith his industrious crew, to build in Hell. \n  Meanwhile the winged Heralds, by command \nOf sovereign power, with awful ceremony \nAnd trumpet's sound, throughout the host proclaim \nA solemn council forthwith to be held \nAt Pandemonium, the high capital \nOf Satan and his peers. Their summons called \nFrom every band and squared regiment \nBy place or choice the worthiest: they anon \nWith hundreds and with thousands trooping came \nAttended. All access was thronged; the gates \nAnd porches wide, but chief the spacious hall \n(Though like a covered field, where champions bold \nWont ride in armed, and at the Soldan's chair \nDefied the best of Paynim chivalry \nTo mortal combat, or career with lance), \nThick swarmed, both on the ground and in the air, \nBrushed with the hiss of rustling wings. As bees \nIn spring-time, when the Sun with Taurus rides. \nPour forth their populous youth about the hive \nIn clusters; they among fresh dews and flowers \nFly to and fro, or on the smoothed plank, \nThe suburb of their straw-built citadel, \nNew rubbed with balm, expatiate, and confer \nTheir state-affairs: so thick the airy crowd \nSwarmed and were straitened; till, the signal given, \nBehold a wonder! They but now who seemed \nIn bigness to surpass Earth's giant sons, \nNow less than smallest dwarfs, in narrow room \nThrong numberless--like that pygmean race \nBeyond the Indian mount; or faery elves, \nWhose midnight revels, by a forest-side \nOr fountain, some belated peasant sees, \nOr dreams he sees, while overhead the Moon \nSits arbitress, and nearer to the Earth \nWheels her pale course: they, on their mirth and dance \nIntent, with jocund music charm his ear; \nAt once with joy and fear his heart rebounds. \nThus incorporeal Spirits to smallest forms \nReduced their shapes immense, and were at large, \nThough without number still, amidst the hall \nOf that infernal court. But far within, \nAnd in their own dimensions like themselves, \nThe great Seraphic Lords and Cherubim \nIn close recess and secret conclave sat, \nA thousand demi-gods on golden seats, \nFrequent and full. After short silence then, \nAnd summons read, the great consult began. \n \n \n \nBook II                                                          \n \n  \nHigh on a throne of royal state, which far \nOutshone the wealth or Ormus and of Ind, \nOr where the gorgeous East with richest hand \nShowers on her kings barbaric pearl and gold, \nSatan exalted sat, by merit raised \nTo that bad eminence; and, from despair \nThus high uplifted beyond hope, aspires \nBeyond thus high, insatiate to pursue \nVain war with Heaven; and, by success untaught, \nHis proud imaginations thus displayed:-- \n  \"Powers and Dominions, Deities of Heaven!-- \nFor, since no deep within her gulf can hold \nImmortal vigour, though oppressed and fallen, \nI give not Heaven for lost: from this descent \nCelestial Virtues rising will appear \nMore glorious and more dread than from no fall, \nAnd trust themselves to fear no second fate!-- \nMe though just right, and the fixed laws of Heaven, \nDid first create your leader--next, free choice \nWith what besides in council or in fight \nHath been achieved of merit--yet this loss, \nThus far at least recovered, hath much more \nEstablished in a safe, unenvied throne, \nYielded with full consent. The happier state \nIn Heaven, which follows dignity, might draw \nEnvy from each inferior; but who here \nWill envy whom the highest place exposes \nForemost to stand against the Thunderer's aim \nYour bulwark, and condemns to greatest share \nOf endless pain? Where there is, then, no good \nFor which to strive, no strife can grow up there \nFrom faction: for none sure will claim in Hell \nPrecedence; none whose portion is so small \nOf present pain that with ambitious mind \nWill covet more! With this advantage, then, \nTo union, and firm faith, and firm accord, \nMore than can be in Heaven, we now return \nTo claim our just inheritance of old, \nSurer to prosper than prosperity \nCould have assured us; and by what best way, \nWhether of open war or covert guile, \nWe now debate. Who can advise may speak.\" \n  He ceased; and next him Moloch, sceptred king, \nStood up--the strongest and the fiercest Spirit \nThat fought in Heaven, now fiercer by despair. \nHis trust was with th' Eternal to be deemed \nEqual in strength, and rather than be less \nCared not to be at all; with that care lost \nWent all his fear: of God, or Hell, or worse, \nHe recked not, and these words thereafter spake:-- \n  \"My sentence is for open war. Of wiles, \nMore unexpert, I boast not: them let those \nContrive who need, or when they need; not now. \nFor, while they sit contriving, shall the rest-- \nMillions that stand in arms, and longing wait \nThe signal to ascend--sit lingering here, \nHeaven's fugitives, and for their dwelling-place \nAccept this dark opprobrious den of shame, \nThe prison of his ryranny who reigns \nBy our delay? No! let us rather choose, \nArmed with Hell-flames and fury, all at once \nO'er Heaven's high towers to force resistless way, \nTurning our tortures into horrid arms \nAgainst the Torturer; when, to meet the noise \nOf his almighty engine, he shall hear \nInfernal thunder, and, for lightning, see \nBlack fire and horror shot with equal rage \nAmong his Angels, and his throne itself \nMixed with Tartarean sulphur and strange fire, \nHis own invented torments. But perhaps \nThe way seems difficult, and steep to scale \nWith upright wing against a higher foe! \nLet such bethink them, if the sleepy drench \nOf that forgetful lake benumb not still, \nThat in our porper motion we ascend \nUp to our native seat; descent and fall \nTo us is adverse. Who but felt of late, \nWhen the fierce foe hung on our broken rear \nInsulting, and pursued us through the Deep, \nWith what compulsion and laborious flight \nWe sunk thus low? Th' ascent is easy, then; \nTh' event is feared! Should we again provoke \nOur stronger, some worse way his wrath may find \nTo our destruction, if there be in Hell \nFear to be worse destroyed! What can be worse \nThan to dwell here, driven out from bliss, condemned \nIn this abhorred deep to utter woe! \nWhere pain of unextinguishable fire \nMust exercise us without hope of end \nThe vassals of his anger, when the scourge \nInexorably, and the torturing hour, \nCalls us to penance? More destroyed than thus, \nWe should be quite abolished, and expire. \nWhat fear we then? what doubt we to incense \nHis utmost ire? which, to the height enraged, \nWill either quite consume us, and reduce \nTo nothing this essential--happier far \nThan miserable to have eternal being!-- \nOr, if our substance be indeed divine, \nAnd cannot cease to be, we are at worst \nOn this side nothing; and by proof we feel \nOur power sufficient to disturb his Heaven, \nAnd with perpetual inroads to alarm, \nThough inaccessible, his fatal throne: \nWhich, if not victory, is yet revenge.\" \n  He ended frowning, and his look denounced \nDesperate revenge, and battle dangerous \nTo less than gods. On th' other side up rose \nBelial, in act more graceful and humane. \nA fairer person lost not Heaven; he seemed \nFor dignity composed, and high exploit. \nBut all was false and hollow; though his tongue \nDropped manna, and could make the worse appear \nThe better reason, to perplex and dash \nMaturest counsels: for his thoughts were low-- \n To vice industrious, but to nobler deeds \nTimorous and slothful. Yet he pleased the ear, \nAnd with persuasive accent thus began:-- \n  \"I should be much for open war, O Peers, \nAs not behind in hate, if what was urged \nMain reason to persuade immediate war \nDid not dissuade me most, and seem to cast \nOminous conjecture on the whole success; \nWhen he who most excels in fact of arms, \nIn what he counsels and in what excels \nMistrustful, grounds his courage on despair \nAnd utter dissolution, as the scope \nOf all his aim, after some dire revenge. \nFirst, what revenge? The towers of Heaven are filled \nWith armed watch, that render all access \nImpregnable: oft on the bodering Deep \nEncamp their legions, or with obscure wing \nScout far and wide into the realm of Night, \nScorning surprise. Or, could we break our way \nBy force, and at our heels all Hell should rise \nWith blackest insurrection to confound \nHeaven's purest light, yet our great Enemy, \nAll incorruptible, would on his throne \nSit unpolluted, and th' ethereal mould, \nIncapable of stain, would soon expel \nHer mischief, and purge off the baser fire, \nVictorious. Thus repulsed, our final hope \nIs flat despair: we must exasperate \nTh' Almighty Victor to spend all his rage; \nAnd that must end us; that must be our cure-- \nTo be no more. Sad cure! for who would lose, \nThough full of pain, this intellectual being, \nThose thoughts that wander through eternity, \nTo perish rather, swallowed up and lost \nIn the wide womb of uncreated Night, \nDevoid of sense and motion? And who knows, \nLet this be good, whether our angry Foe \nCan give it, or will ever? How he can \nIs doubtful; that he never will is sure. \nWill he, so wise, let loose at once his ire, \nBelike through impotence or unaware, \nTo give his enemies their wish, and end \nThem in his anger whom his anger saves \nTo punish endless? 'Wherefore cease we, then?' \nSay they who counsel war; 'we are decreed, \nReserved, and destined to eternal woe; \nWhatever doing, what can we suffer more, \nWhat can we suffer worse?' Is this, then, worst-- \nThus sitting, thus consulting, thus in arms? \nWhat when we fled amain, pursued and struck \nWith Heaven's afflicting thunder, and besought \nThe Deep to shelter us? This Hell then seemed \nA refuge from those wounds. Or when we lay \nChained on the burning lake? That sure was worse. \nWhat if the breath that kindled those grim fires, \nAwaked, should blow them into sevenfold rage, \nAnd plunge us in the flames; or from above \nShould intermitted vengeance arm again \nHis red right hand to plague us? What if all \nHer stores were opened, and this firmament \nOf Hell should spout her cataracts of fire, \nImpendent horrors, threatening hideous fall \nOne day upon our heads; while we perhaps, \nDesigning or exhorting glorious war, \nCaught in a fiery tempest, shall be hurled, \nEach on his rock transfixed, the sport and prey \nOr racking whirlwinds, or for ever sunk \nUnder yon boiling ocean, wrapt in chains, \nThere to converse with everlasting groans, \nUnrespited, unpitied, unreprieved, \nAges of hopeless end? This would be worse. \nWar, therefore, open or concealed, alike \nMy voice dissuades; for what can force or guile \nWith him, or who deceive his mind, whose eye \nViews all things at one view? He from Heaven's height \nAll these our motions vain sees and derides, \nNot more almighty to resist our might \nThan wise to frustrate all our plots and wiles. \nShall we, then, live thus vile--the race of Heaven \nThus trampled, thus expelled, to suffer here \nChains and these torments? Better these than worse, \nBy my advice; since fate inevitable \nSubdues us, and omnipotent decree, \nThe Victor's will. To suffer, as to do, \nOur strength is equal; nor the law unjust \nThat so ordains. This was at first resolved, \nIf we were wise, against so great a foe \nContending, and so doubtful what might fall. \nI laugh when those who at the spear are bold \nAnd venturous, if that fail them, shrink, and fear \nWhat yet they know must follow--to endure \nExile, or igominy, or bonds, or pain, \nThe sentence of their Conqueror. This is now \nOur doom; which if we can sustain and bear, \nOur Supreme Foe in time may much remit \nHis anger, and perhaps, thus far removed, \nNot mind us not offending, satisfied \nWith what is punished; whence these raging fires \nWill slacken, if his breath stir not their flames. \nOur purer essence then will overcome \nTheir noxious vapour; or, inured, not feel; \nOr, changed at length, and to the place conformed \nIn temper and in nature, will receive \nFamiliar the fierce heat; and, void of pain, \nThis horror will grow mild, this darkness light; \nBesides what hope the never-ending flight \nOf future days may bring, what chance, what change \nWorth waiting--since our present lot appears \nFor happy though but ill, for ill not worst, \nIf we procure not to ourselves more woe.\" \n  Thus Belial, with words clothed in reason's garb, \nCounselled ignoble ease and peaceful sloth, \nNot peace; and after him thus Mammon spake:-- \n  \"Either to disenthrone the King of Heaven \nWe war, if war be best, or to regain \nOur own right lost. Him to unthrone we then \nMay hope, when everlasting Fate shall yield \nTo fickle Chance, and Chaos judge the strife. \nThe former, vain to hope, argues as vain \nThe latter; for what place can be for us \nWithin Heaven's bound, unless Heaven's Lord supreme \nWe overpower? Suppose he should relent \nAnd publish grace to all, on promise made \nOf new subjection; with what eyes could we \nStand in his presence humble, and receive \nStrict laws imposed, to celebrate his throne \nWith warbled hyms, and to his Godhead sing \nForced hallelujahs, while he lordly sits \nOur envied sovereign, and his altar breathes \nAmbrosial odours and ambrosial flowers, \nOur servile offerings? This must be our task \nIn Heaven, this our delight. How wearisome \nEternity so spent in worship paid \nTo whom we hate! Let us not then pursue, \nBy force impossible, by leave obtained \nUnacceptable, though in Heaven, our state \nOf splendid vassalage; but rather seek \nOur own good from ourselves, and from our own \nLive to ourselves, though in this vast recess, \nFree and to none accountable, preferring \nHard liberty before the easy yoke \nOf servile pomp. Our greatness will appear \nThen most conspicuous when great things of small, \nUseful of hurtful, prosperous of adverse, \nWe can create, and in what place soe'er \nThrive under evil, and work ease out of pain \nThrough labour and endurance. This deep world \nOf darkness do we dread? How oft amidst \nThick clouds and dark doth Heaven's all-ruling Sire \nChoose to reside, his glory unobscured, \nAnd with the majesty of darkness round \nCovers his throne, from whence deep thunders roar. \nMustering their rage, and Heaven resembles Hell! \nAs he our darkness, cannot we his light \nImitate when we please? This desert soil \nWants not her hidden lustre, gems and gold; \nNor want we skill or art from whence to raise \nMagnificence; and what can Heaven show more? \nOur torments also may, in length of time, \nBecome our elements, these piercing fires \nAs soft as now severe, our temper changed \nInto their temper; which must needs remove \nThe sensible of pain. All things invite \nTo peaceful counsels, and the settled state \nOf order, how in safety best we may \nCompose our present evils, with regard \nOf what we are and where, dismissing quite \nAll thoughts of war. Ye have what I advise.\" \n  He scarce had finished, when such murmur filled \nTh' assembly as when hollow rocks retain \nThe sound of blustering winds, which all night long \nHad roused the sea, now with hoarse cadence lull \nSeafaring men o'erwatched, whose bark by chance \nOr pinnace, anchors in a craggy bay \nAfter the tempest. Such applause was heard \nAs Mammon ended, and his sentence pleased, \nAdvising peace: for such another field \nThey dreaded worse than Hell; so much the fear \nOf thunder and the sword of Michael \nWrought still within them; and no less desire \nTo found this nether empire, which might rise, \nBy policy and long process of time, \nIn emulation opposite to Heaven. \nWhich when Beelzebub perceived--than whom, \nSatan except, none higher sat--with grave \nAspect he rose, and in his rising seemed \nA pillar of state. Deep on his front engraven \nDeliberation sat, and public care; \nAnd princely counsel in his face yet shone, \nMajestic, though in ruin. Sage he stood \nWith Atlantean shoulders, fit to bear \nThe weight of mightiest monarchies; his look \nDrew audience and attention still as night \nOr summer's noontide air, while thus he spake:-- \n  \"Thrones and Imperial Powers, Offspring of Heaven, \nEthereal Virtues! or these titles now \nMust we renounce, and, changing style, be called \nPrinces of Hell? for so the popular vote \nInclines--here to continue, and build up here \nA growing empire; doubtless! while we dream, \nAnd know not that the King of Heaven hath doomed \nThis place our dungeon, not our safe retreat \nBeyond his potent arm, to live exempt \nFrom Heaven's high jurisdiction, in new league \nBanded against his throne, but to remain \nIn strictest bondage, though thus far removed, \nUnder th' inevitable curb, reserved \nHis captive multitude. For he, to be sure, \nIn height or depth, still first and last will reign \nSole king, and of his kingdom lose no part \nBy our revolt, but over Hell extend \nHis empire, and with iron sceptre rule \nUs here, as with his golden those in Heaven. \nWhat sit we then projecting peace and war? \nWar hath determined us and foiled with loss \nIrreparable; terms of peace yet none \nVouchsafed or sought; for what peace will be given \nTo us enslaved, but custody severe, \nAnd stripes and arbitrary punishment \nInflicted? and what peace can we return, \nBut, to our power, hostility and hate, \nUntamed reluctance, and revenge, though slow, \nYet ever plotting how the Conqueror least \nMay reap his conquest, and may least rejoice \nIn doing what we most in suffering feel? \nNor will occasion want, nor shall we need \nWith dangerous expedition to invade \nHeaven, whose high walls fear no assault or siege, \nOr ambush from the Deep. What if we find \nSome easier enterprise? There is a place \n(If ancient and prophetic fame in Heaven \nErr not)--another World, the happy seat \nOf some new race, called Man, about this time \nTo be created like to us, though less \nIn power and excellence, but favoured more \nOf him who rules above; so was his will \nPronounced among the Gods, and by an oath \nThat shook Heaven's whole circumference confirmed. \nThither let us bend all our thoughts, to learn \nWhat creatures there inhabit, of what mould \nOr substance, how endued, and what their power \nAnd where their weakness: how attempted best, \nBy force of subtlety. Though Heaven be shut, \nAnd Heaven's high Arbitrator sit secure \nIn his own strength, this place may lie exposed, \nThe utmost border of his kingdom, left \nTo their defence who hold it: here, perhaps, \nSome advantageous act may be achieved \nBy sudden onset--either with Hell-fire \nTo waste his whole creation, or possess \nAll as our own, and drive, as we were driven, \nThe puny habitants; or, if not drive, \nSeduce them to our party, that their God \nMay prove their foe, and with repenting hand \nAbolish his own works. This would surpass \nCommon revenge, and interrupt his joy \nIn our confusion, and our joy upraise \nIn his disturbance; when his darling sons, \nHurled headlong to partake with us, shall curse \nTheir frail original, and faded bliss-- \nFaded so soon! Advise if this be worth \nAttempting, or to sit in darkness here \nHatching vain empires.\" Thus beelzebub \nPleaded his devilish counsel--first devised \nBy Satan, and in part proposed: for whence, \nBut from the author of all ill, could spring \nSo deep a malice, to confound the race \nOf mankind in one root, and Earth with Hell \nTo mingle and involve, done all to spite \nThe great Creator? But their spite still serves \nHis glory to augment. The bold design \nPleased highly those infernal States, and joy \nSparkled in all their eyes: with full assent \nThey vote: whereat his speech he thus renews:-- \n\"Well have ye judged, well ended long debate, \nSynod of Gods, and, like to what ye are, \nGreat things resolved, which from the lowest deep \nWill once more lift us up, in spite of fate, \nNearer our ancient seat--perhaps in view \nOf those bright confines, whence, with neighbouring arms, \nAnd opportune excursion, we may chance \nRe-enter Heaven; or else in some mild zone \nDwell, not unvisited of Heaven's fair light, \nSecure, and at the brightening orient beam \nPurge off this gloom: the soft delicious air, \nTo heal the scar of these corrosive fires, \nShall breathe her balm. But, first, whom shall we send \nIn search of this new World? whom shall we find \nSufficient? who shall tempt with wandering feet \nThe dark, unbottomed, infinite Abyss, \nAnd through the palpable obscure find out \nHis uncouth way, or spread his airy flight, \nUpborne with indefatigable wings \nOver the vast abrupt, ere he arrive \nThe happy Isle? What strength, what art, can then \nSuffice, or what evasion bear him safe, \nThrough the strict senteries and stations thick \nOf Angels watching round? Here he had need \nAll circumspection: and we now no less \nChoice in our suffrage; for on whom we send \nThe weight of all, and our last hope, relies.\" \n  This said, he sat; and expectation held \nHis look suspense, awaiting who appeared \nTo second, or oppose, or undertake \nThe perilous attempt. But all sat mute, \nPondering the danger with deep thoughts; and each \nIn other's countenance read his own dismay, \nAstonished. None among the choice and prime \nOf those Heaven-warring champions could be found \nSo hardy as to proffer or accept, \nAlone, the dreadful voyage; till, at last, \nSatan, whom now transcendent glory raised \nAbove his fellows, with monarchal pride \nConscious of highest worth, unmoved thus spake:-- \n  \"O Progeny of Heaven! Empyreal Thrones! \nWith reason hath deep silence and demur \nSeized us, though undismayed. Long is the way \nAnd hard, that out of Hell leads up to light. \nOur prison strong, this huge convex of fire, \nOutrageous to devour, immures us round \nNinefold; and gates of burning adamant, \nBarred over us, prohibit all egress. \nThese passed, if any pass, the void profound \nOf unessential Night receives him next, \nWide-gaping, and with utter loss of being \nThreatens him, plunged in that abortive gulf. \nIf thence he scape, into whatever world, \nOr unknown region, what remains him less \nThan unknown dangers, and as hard escape? \nBut I should ill become this throne, O Peers, \nAnd this imperial sovereignty, adorned \nWith splendour, armed with power, if aught proposed \nAnd judged of public moment in the shape \nOf difficulty or danger, could deter \nMe from attempting. Wherefore do I assume \nThese royalties, and not refuse to reign, \nRefusing to accept as great a share \nOf hazard as of honour, due alike \nTo him who reigns, and so much to him due \nOf hazard more as he above the rest \nHigh honoured sits? Go, therefore, mighty Powers, \nTerror of Heaven, though fallen; intend at home, \nWhile here shall be our home, what best may ease \nThe present misery, and render Hell \nMore tolerable; if there be cure or charm \nTo respite, or deceive, or slack the pain \nOf this ill mansion: intermit no watch \nAgainst a wakeful foe, while I abroad \nThrough all the coasts of dark destruction seek \nDeliverance for us all. This enterprise \nNone shall partake with me.\" Thus saying, rose \nThe Monarch, and prevented all reply; \nPrudent lest, from his resolution raised, \nOthers among the chief might offer now, \nCertain to be refused, what erst they feared, \nAnd, so refused, might in opinion stand \nHis rivals, winning cheap the high repute \nWhich he through hazard huge must earn. But they \nDreaded not more th' adventure than his voice \nForbidding; and at once with him they rose. \nTheir rising all at once was as the sound \nOf thunder heard remote. Towards him they bend \nWith awful reverence prone, and as a God \nExtol him equal to the Highest in Heaven. \nNor failed they to express how much they praised \nThat for the general safety he despised \nHis own: for neither do the Spirits damned \nLose all their virtue; lest bad men should boast \nTheir specious deeds on earth, which glory excites, \nOr close ambition varnished o'er with zeal. \n  Thus they their doubtful consultations dark \nEnded, rejoicing in their matchless Chief: \nAs, when from mountain-tops the dusky clouds \nAscending, while the north wind sleeps, o'erspread \nHeaven's cheerful face, the louring element \nScowls o'er the darkened landscape snow or shower, \nIf chance the radiant sun, with farewell sweet, \nExtend his evening beam, the fields revive, \nThe birds their notes renew, and bleating herds \nAttest their joy, that hill and valley rings. \nO shame to men! Devil with devil damned \nFirm concord holds; men only disagree \nOf creatures rational, though under hope \nOf heavenly grace, and, God proclaiming peace, \nYet live in hatred, enmity, and strife \nAmong themselves, and levy cruel wars \nWasting the earth, each other to destroy: \nAs if (which might induce us to accord) \nMan had not hellish foes enow besides, \nThat day and night for his destruction wait! \n  The Stygian council thus dissolved; and forth \nIn order came the grand infernal Peers: \nMidst came their mighty Paramount, and seemed \nAlone th' antagonist of Heaven, nor less \nThan Hell's dread Emperor, with pomp supreme, \nAnd god-like imitated state: him round \nA globe of fiery Seraphim enclosed \nWith bright emblazonry, and horrent arms. \nThen of their session ended they bid cry \nWith trumpet's regal sound the great result: \nToward the four winds four speedy Cherubim \nPut to their mouths the sounding alchemy, \nBy herald's voice explained; the hollow Abyss \nHeard far adn wide, and all the host of Hell \nWith deafening shout returned them loud acclaim. \nThence more at ease their minds, and somewhat raised \nBy false presumptuous hope, the ranged Powers \nDisband; and, wandering, each his several way \nPursues, as inclination or sad choice \nLeads him perplexed, where he may likeliest find \nTruce to his restless thoughts, and entertain \nThe irksome hours, till his great Chief return. \nPart on the plain, or in the air sublime, \nUpon the wing or in swift race contend, \nAs at th' Olympian games or Pythian fields; \nPart curb their fiery steeds, or shun the goal \nWith rapid wheels, or fronted brigades form: \nAs when, to warn proud cities, war appears \nWaged in the troubled sky, and armies rush \nTo battle in the clouds; before each van \nPrick forth the airy knights, and couch their spears, \nTill thickest legions close; with feats of arms \nFrom either end of heaven the welkin burns. \nOthers, with vast Typhoean rage, more fell, \nRend up both rocks and hills, and ride the air \nIn whirlwind; Hell scarce holds the wild uproar:-- \nAs when Alcides, from Oechalia crowned \nWith conquest, felt th' envenomed robe, and tore \nThrough pain up by the roots Thessalian pines, \nAnd Lichas from the top of Oeta threw \nInto th' Euboic sea. Others, more mild, \nRetreated in a silent valley, sing \nWith notes angelical to many a harp \nTheir own heroic deeds, and hapless fall \nBy doom of battle, and complain that Fate \nFree Virtue should enthrall to Force or Chance. \nTheir song was partial; but the harmony \n(What could it less when Spirits immortal sing?) \nSuspended Hell, and took with ravishment \nThe thronging audience. In discourse more sweet \n(For Eloquence the Soul, Song charms the Sense) \nOthers apart sat on a hill retired, \nIn thoughts more elevate, and reasoned high \nOf Providence, Foreknowledge, Will, and Fate-- \nFixed fate, free will, foreknowledge absolute, \nAnd found no end, in wandering mazes lost. \nOf good and evil much they argued then, \nOf happiness and final misery, \nPassion and apathy, and glory and shame: \nVain wisdom all, and false philosophy!-- \nYet, with a pleasing sorcery, could charm \nPain for a while or anguish, and excite \nFallacious hope, or arm th' obdured breast \nWith stubborn patience as with triple steel. \nAnother part, in squadrons and gross bands, \nOn bold adventure to discover wide \nThat dismal world, if any clime perhaps \nMight yield them easier habitation, bend \nFour ways their flying march, along the banks \nOf four infernal rivers, that disgorge \nInto the burning lake their baleful streams-- \nAbhorred Styx, the flood of deadly hate; \nSad Acheron of sorrow, black and deep; \nCocytus, named of lamentation loud \nHeard on the rueful stream; fierce Phlegeton, \nWhose waves of torrent fire inflame with rage. \nFar off from these, a slow and silent stream, \nLethe, the river of oblivion, rolls \nHer watery labyrinth, whereof who drinks \nForthwith his former state and being forgets-- \nForgets both joy and grief, pleasure and pain. \nBeyond this flood a frozen continent \nLies dark and wild, beat with perpetual storms \nOf whirlwind and dire hail, which on firm land \nThaws not, but gathers heap, and ruin seems \nOf ancient pile; all else deep snow and ice, \nA gulf profound as that Serbonian bog \nBetwixt Damiata and Mount Casius old, \nWhere armies whole have sunk: the parching air \nBurns frore, and cold performs th' effect of fire. \nThither, by harpy-footed Furies haled, \nAt certain revolutions all the damned \nAre brought; and feel by turns the bitter change \nOf fierce extremes, extremes by change more fierce, \nFrom beds of raging fire to starve in ice \nTheir soft ethereal warmth, and there to pine \nImmovable, infixed, and frozen round \nPeriods of time,--thence hurried back to fire. \nThey ferry over this Lethean sound \nBoth to and fro, their sorrow to augment, \nAnd wish and struggle, as they pass, to reach \nThe tempting stream, with one small drop to lose \nIn sweet forgetfulness all pain and woe, \nAll in one moment, and so near the brink; \nBut Fate withstands, and, to oppose th' attempt, \nMedusa with Gorgonian terror guards \nThe ford, and of itself the water flies \nAll taste of living wight, as once it fled \nThe lip of Tantalus. Thus roving on \nIn confused march forlorn, th' adventurous bands, \nWith shuddering horror pale, and eyes aghast, \nViewed first their lamentable lot, and found \nNo rest. Through many a dark and dreary vale \nThey passed, and many a region dolorous, \nO'er many a frozen, many a fiery alp, \nRocks, caves, lakes, fens, bogs, dens, and shades of death-- \nA universe of death, which God by curse \nCreated evil, for evil only good; \nWhere all life dies, death lives, and Nature breeds, \nPerverse, all monstrous, all prodigious things, \nObominable, inutterable, and worse \nThan fables yet have feigned or fear conceived, \nGorgons, and Hydras, and Chimeras dire. \n  Meanwhile the Adversary of God and Man, \nSatan, with thoughts inflamed of highest design, \nPuts on swift wings, and toward the gates of Hell \nExplores his solitary flight: sometimes \nHe scours the right hand coast, sometimes the left; \nNow shaves with level wing the deep, then soars \nUp to the fiery concave towering high. \nAs when far off at sea a fleet descried \nHangs in the clouds, by equinoctial winds \nClose sailing from Bengala, or the isles \nOf Ternate and Tidore, whence merchants bring \nTheir spicy drugs; they on the trading flood, \nThrough the wide Ethiopian to the Cape, \nPly stemming nightly toward the pole: so seemed \nFar off the flying Fiend. At last appear \nHell-bounds, high reaching to the horrid roof, \nAnd thrice threefold the gates; three folds were brass, \nThree iron, three of adamantine rock, \nImpenetrable, impaled with circling fire, \nYet unconsumed. Before the gates there sat \nOn either side a formidable Shape. \nThe one seemed woman to the waist, and fair, \nBut ended foul in many a scaly fold, \nVoluminous and vast--a serpent armed \nWith mortal sting. About her middle round \nA cry of Hell-hounds never-ceasing barked \nWith wide Cerberean mouths full loud, and rung \nA hideous peal; yet, when they list, would creep, \nIf aught disturbed their noise, into her womb, \nAnd kennel there; yet there still barked and howled \nWithin unseen. Far less abhorred than these \nVexed Scylla, bathing in the sea that parts \nCalabria from the hoarse Trinacrian shore; \nNor uglier follow the night-hag, when, called \nIn secret, riding through the air she comes, \nLured with the smell of infant blood, to dance \nWith Lapland witches, while the labouring moon \nEclipses at their charms. The other Shape-- \nIf shape it might be called that shape had none \nDistinguishable in member, joint, or limb; \nOr substance might be called that shadow seemed, \nFor each seemed either--black it stood as Night, \nFierce as ten Furies, terrible as Hell, \nAnd shook a dreadful dart: what seemed his head \nThe likeness of a kingly crown had on. \nSatan was now at hand, and from his seat \nThe monster moving onward came as fast \nWith horrid strides; Hell trembled as he strode. \nTh' undaunted Fiend what this might be admired-- \nAdmired, not feared (God and his Son except, \nCreated thing naught valued he nor shunned), \nAnd with disdainful look thus first began:-- \n  \"Whence and what art thou, execrable Shape, \nThat dar'st, though grim and terrible, advance \nThy miscreated front athwart my way \nTo yonder gates? Through them I mean to pass, \nThat be assured, without leave asked of thee. \nRetire; or taste thy folly, and learn by proof, \nHell-born, not to contend with Spirits of Heaven.\" \n  To whom the Goblin, full of wrath, replied:-- \n\"Art thou that traitor Angel? art thou he, \nWho first broke peace in Heaven and faith, till then \nUnbroken, and in proud rebellious arms \nDrew after him the third part of Heaven's sons, \nConjured against the Highest--for which both thou \nAnd they, outcast from God, are here condemned \nTo waste eternal days in woe and pain? \nAnd reckon'st thou thyself with Spirits of Heaven \nHell-doomed, and breath'st defiance here and scorn, \nWhere I reign king, and, to enrage thee more, \nThy king and lord? Back to thy punishment, \nFalse fugitive; and to thy speed add wings, \nLest with a whip of scorpions I pursue \nThy lingering, or with one stroke of this dart \nStrange horror seize thee, and pangs unfelt before.\" \n  So spake the grisly Terror, and in shape, \nSo speaking and so threatening, grew tenfold, \nMore dreadful and deform. On th' other side, \nIncensed with indignation, Satan stood \nUnterrified, and like a comet burned, \nThat fires the length of Ophiuchus huge \nIn th' arctic sky, and from his horrid hair \nShakes pestilence and war. Each at the head \nLevelled his deadly aim; their fatal hands \nNo second stroke intend; and such a frown \nEach cast at th' other as when two black clouds, \nWith heaven's artillery fraught, came rattling on \nOver the Caspian,--then stand front to front \nHovering a space, till winds the signal blow \nTo join their dark encounter in mid-air. \nSo frowned the mighty combatants that Hell \nGrew darker at their frown; so matched they stood; \nFor never but once more was wither like \nTo meet so great a foe. And now great deeds \nHad been achieved, whereof all Hell had rung, \nHad not the snaky Sorceress, that sat \nFast by Hell-gate and kept the fatal key, \nRisen, and with hideous outcry rushed between. \n  \"O father, what intends thy hand,\" she cried, \n\"Against thy only son? What fury, O son, \nPossesses thee to bend that mortal dart \nAgainst thy father's head? And know'st for whom? \nFor him who sits above, and laughs the while \nAt thee, ordained his drudge to execute \nWhate'er his wrath, which he calls justice, bids-- \nHis wrath, which one day will destroy ye both!\" \n  She spake, and at her words the hellish Pest \nForbore: then these to her Satan returned:-- \n  \"So strange thy outcry, and thy words so strange \nThou interposest, that my sudden hand, \nPrevented, spares to tell thee yet by deeds \nWhat it intends, till first I know of thee \nWhat thing thou art, thus double-formed, and why, \nIn this infernal vale first met, thou call'st \nMe father, and that phantasm call'st my son. \nI know thee not, nor ever saw till now \nSight more detestable than him and thee.\" \n  T' whom thus the Portress of Hell-gate replied:-- \n\"Hast thou forgot me, then; and do I seem \nNow in thine eye so foul?--once deemed so fair \nIn Heaven, when at th' assembly, and in sight \nOf all the Seraphim with thee combined \nIn bold conspiracy against Heaven's King, \nAll on a sudden miserable pain \nSurprised thee, dim thine eyes and dizzy swum \nIn darkness, while thy head flames thick and fast \nThrew forth, till on the left side opening wide, \nLikest to thee in shape and countenance bright, \nThen shining heavenly fair, a goddess armed, \nOut of thy head I sprung. Amazement seized \nAll th' host of Heaven; back they recoiled afraid \nAt first, and called me Sin, and for a sign \nPortentous held me; but, familiar grown, \nI pleased, and with attractive graces won \nThe most averse--thee chiefly, who, full oft \nThyself in me thy perfect image viewing, \nBecam'st enamoured; and such joy thou took'st \nWith me in secret that my womb conceived \nA growing burden. Meanwhile war arose, \nAnd fields were fought in Heaven: wherein remained \n(For what could else?) to our Almighty Foe \nClear victory; to our part loss and rout \nThrough all the Empyrean. Down they fell, \nDriven headlong from the pitch of Heaven, down \nInto this Deep; and in the general fall \nI also: at which time this powerful key \nInto my hands was given, with charge to keep \nThese gates for ever shut, which none can pass \nWithout my opening. Pensive here I sat \nAlone; but long I sat not, till my womb, \nPregnant by thee, and now excessive grown, \nProdigious motion felt and rueful throes. \nAt last this odious offspring whom thou seest, \nThine own begotten, breaking violent way, \nTore through my entrails, that, with fear and pain \nDistorted, all my nether shape thus grew \nTransformed: but he my inbred enemy \nForth issued, brandishing his fatal dart, \nMade to destroy. I fled, and cried out Death! \nHell trembled at the hideous name, and sighed \nFrom all her caves, and back resounded Death! \nI fled; but he pursued (though more, it seems, \nInflamed with lust than rage), and, swifter far, \nMe overtook, his mother, all dismayed, \nAnd, in embraces forcible and foul \nEngendering with me, of that rape begot \nThese yelling monsters, that with ceaseless cry \nSurround me, as thou saw'st--hourly conceived \nAnd hourly born, with sorrow infinite \nTo me; for, when they list, into the womb \nThat bred them they return, and howl, and gnaw \nMy bowels, their repast; then, bursting forth \nAfresh, with conscious terrors vex me round, \nThat rest or intermission none I find. \nBefore mine eyes in opposition sits \nGrim Death, my son and foe, who set them on, \nAnd me, his parent, would full soon devour \nFor want of other prey, but that he knows \nHis end with mine involved, and knows that I \nShould prove a bitter morsel, and his bane, \nWhenever that shall be: so Fate pronounced. \nBut thou, O father, I forewarn thee, shun \nHis deadly arrow; neither vainly hope \nTo be invulnerable in those bright arms, \nThrough tempered heavenly; for that mortal dint, \nSave he who reigns above, none can resist.\" \n  She finished; and the subtle Fiend his lore \nSoon learned, now milder, and thus answered smooth:-- \n  \"Dear daughter--since thou claim'st me for thy sire, \nAnd my fair son here show'st me, the dear pledge \nOf dalliance had with thee in Heaven, and joys \nThen sweet, now sad to mention, through dire change \nBefallen us unforeseen, unthought-of--know, \nI come no enemy, but to set free \nFrom out this dark and dismal house of pain \nBoth him and thee, and all the heavenly host \nOf Spirits that, in our just pretences armed, \nFell with us from on high. From them I go \nThis uncouth errand sole, and one for all \nMyself expose, with lonely steps to tread \nTh' unfounded Deep, and through the void immense \nTo search, with wandering quest, a place foretold \nShould be--and, by concurring signs, ere now \nCreated vast and round--a place of bliss \nIn the purlieus of Heaven; and therein placed \nA race of upstart creatures, to supply \nPerhaps our vacant room, though more removed, \nLest Heaven, surcharged with potent multitude, \nMight hap to move new broils. Be this, or aught \nThan this more secret, now designed, I haste \nTo know; and, this once known, shall soon return, \nAnd bring ye to the place where thou and Death \nShall dwell at ease, and up and down unseen \nWing silently the buxom air, embalmed \nWith odours. There ye shall be fed and filled \nImmeasurably; all things shall be your prey.\" \n  He ceased; for both seemed highly pleased, and Death \nGrinned horrible a ghastly smile, to hear \nHis famine should be filled, and blessed his maw \nDestined to that good hour. No less rejoiced \nHis mother bad, and thus bespake her sire:-- \n  \"The key of this infernal Pit, by due \nAnd by command of Heaven's all-powerful King, \nI keep, by him forbidden to unlock \nThese adamantine gates; against all force \nDeath ready stands to interpose his dart, \nFearless to be o'ermatched by living might. \nBut what owe I to his commands above, \nWho hates me, and hath hither thrust me down \nInto this gloom of Tartarus profound, \nTo sit in hateful office here confined, \nInhabitant of Heaven and heavenly born-- \nHere in perpetual agony and pain, \nWith terrors and with clamours compassed round \nOf mine own brood, that on my bowels feed? \nThou art my father, thou my author, thou \nMy being gav'st me; whom should I obey \nBut thee? whom follow? Thou wilt bring me soon \nTo that new world of light and bliss, among \nThe gods who live at ease, where I shall reign \nAt thy right hand voluptuous, as beseems \nThy daughter and thy darling, without end.\" \n  Thus saying, from her side the fatal key, \nSad instrument of all our woe, she took; \nAnd, towards the gate rolling her bestial train, \nForthwith the huge portcullis high up-drew, \nWhich, but herself, not all the Stygian Powers \nCould once have moved; then in the key-hole turns \nTh' intricate wards, and every bolt and bar \nOf massy iron or solid rock with ease \nUnfastens. On a sudden open fly, \nWith impetuous recoil and jarring sound, \nTh' infernal doors, and on their hinges grate \nHarsh thunder, that the lowest bottom shook \nOf Erebus. She opened; but to shut \nExcelled her power: the gates wide open stood, \nThat with extended wings a bannered host, \nUnder spread ensigns marching, mibht pass through \nWith horse and chariots ranked in loose array; \nSo wide they stood, and like a furnace-mouth \nCast forth redounding smoke and ruddy flame. \nBefore their eyes in sudden view appear \nThe secrets of the hoary Deep--a dark \nIllimitable ocean, without bound, \nWithout dimension; where length, breadth, and height, \nAnd time, and place, are lost; where eldest Night \nAnd Chaos, ancestors of Nature, hold \nEternal anarchy, amidst the noise \nOf endless wars, and by confusion stand. \nFor Hot, Cold, Moist, and Dry, four champions fierce, \nStrive here for mastery, and to battle bring \nTheir embryon atoms: they around the flag \nOf each his faction, in their several clans, \nLight-armed or heavy, sharp, smooth, swift, or slow, \nSwarm populous, unnumbered as the sands \nOf Barca or Cyrene's torrid soil, \nLevied to side with warring winds, and poise \nTheir lighter wings. To whom these most adhere \nHe rules a moment: Chaos umpire sits, \nAnd by decision more embroils the fray \nBy which he reigns: next him, high arbiter, \nChance governs all. Into this wild Abyss, \nThe womb of Nature, and perhaps her grave, \nOf neither sea, nor shore, nor air, nor fire, \nBut all these in their pregnant causes mixed \nConfusedly, and which thus must ever fight, \nUnless th' Almighty Maker them ordain \nHis dark materials to create more worlds-- \nInto this wild Abyss the wary Fiend \nStood on the brink of Hell and looked a while, \nPondering his voyage; for no narrow frith \nHe had to cross. Nor was his ear less pealed \nWith noises loud and ruinous (to compare \nGreat things with small) than when Bellona storms \nWith all her battering engines, bent to rase \nSome capital city; or less than if this frame \nOf Heaven were falling, and these elements \nIn mutiny had from her axle torn \nThe steadfast Earth. At last his sail-broad vans \nHe spread for flight, and, in the surging smoke \nUplifted, spurns the ground; thence many a league, \nAs in a cloudy chair, ascending rides \nAudacious; but, that seat soon failing, meets \nA vast vacuity. All unawares, \nFluttering his pennons vain, plumb-down he drops \nTen thousand fathom deep, and to this hour \nDown had been falling, had not, by ill chance, \nThe strong rebuff of some tumultuous cloud, \nInstinct with fire and nitre, hurried him \nAs many miles aloft. That fury stayed-- \nQuenched in a boggy Syrtis, neither sea, \nNor good dry land--nigh foundered, on he fares, \nTreading the crude consistence, half on foot, \nHalf flying; behoves him now both oar and sail. \nAs when a gryphon through the wilderness \nWith winged course, o'er hill or moory dale, \nPursues the Arimaspian, who by stealth \nHad from his wakeful custody purloined \nThe guarded gold; so eagerly the Fiend \nO'er bog or steep, through strait, rough, dense, or rare, \nWith head, hands, wings, or feet, pursues his way, \nAnd swims, or sinks, or wades, or creeps, or flies. \nAt length a universal hubbub wild \nOf stunning sounds, and voices all confused, \nBorne through the hollow dark, assaults his ear \nWith loudest vehemence. Thither he plies \nUndaunted, to meet there whatever Power \nOr Spirit of the nethermost Abyss \nMight in that noise reside, of whom to ask \nWhich way the nearest coast of darkness lies \nBordering on light; when straight behold the throne \nOf Chaos, and his dark pavilion spread \nWide on the wasteful Deep! With him enthroned \nSat sable-vested Night, eldest of things, \nThe consort of his reign; and by them stood \nOrcus and Ades, and the dreaded name \nOf Demogorgon; Rumour next, and Chance, \nAnd Tumult, and Confusion, all embroiled, \nAnd Discord with a thousand various mouths. \n  T' whom Satan, turning boldly, thus:--\"Ye Powers \nAnd Spirtis of this nethermost Abyss, \nChaos and ancient Night, I come no spy \nWith purpose to explore or to disturb \nThe secrets of your realm; but, by constraint \nWandering this darksome desert, as my way \nLies through your spacious empire up to light, \nAlone and without guide, half lost, I seek, \nWhat readiest path leads where your gloomy bounds \nConfine with Heaven; or, if some other place, \nFrom your dominion won, th' Ethereal King \nPossesses lately, thither to arrive \nI travel this profound. Direct my course: \nDirected, no mean recompense it brings \nTo your behoof, if I that region lost, \nAll usurpation thence expelled, reduce \nTo her original darkness and your sway \n(Which is my present journey), and once more \nErect the standard there of ancient Night. \nYours be th' advantage all, mine the revenge!\" \n  Thus Satan; and him thus the Anarch old, \nWith faltering speech and visage incomposed, \nAnswered:  \"I know thee, stranger, who thou art--  *** \nThat mighty leading Angel, who of late \nMade head against Heaven's King, though overthrown. \nI saw and heard; for such a numerous host \nFled not in silence through the frighted Deep, \nWith ruin upon ruin, rout on rout, \nConfusion worse confounded; and Heaven-gates \nPoured out by millions her victorious bands, \nPursuing. I upon my frontiers here \nKeep residence; if all I can will serve \nThat little which is left so to defend, \nEncroached on still through our intestine broils \nWeakening the sceptre of old Night: first, Hell, \nYour dungeon, stretching far and wide beneath; \nNow lately Heaven and Earth, another world \nHung o'er my realm, linked in a golden chain \nTo that side Heaven from whence your legions fell! \nIf that way be your walk, you have not far; \nSo much the nearer danger. Go, and speed; \nHavoc, and spoil, and ruin, are my gain.\" \n  He ceased; and Satan stayed not to reply, \nBut, glad that now his sea should find a shore, \nWith fresh alacrity and force renewed \nSprings upward, like a pyramid of fire, \nInto the wild expanse, and through the shock \nOf fighting elements, on all sides round \nEnvironed, wins his way; harder beset \nAnd more endangered than when Argo passed \nThrough Bosporus betwixt the justling rocks, \nOr when Ulysses on the larboard shunned \nCharybdis, and by th' other whirlpool steered. \nSo he with difficulty and labour hard \nMoved on, with difficulty and labour he; \nBut, he once passed, soon after, when Man fell, \nStrange alteration! Sin and Death amain, \nFollowing his track (such was the will of Heaven) \nPaved after him a broad and beaten way \nOver the dark Abyss, whose boiling gulf \nTamely endured a bridge of wondrous length, \nFrom Hell continued, reaching th' utmost orb \nOf this frail World; by which the Spirits perverse \nWith easy intercourse pass to and fro \nTo tempt or punish mortals, except whom \nGod and good Angels guard by special grace. \n  But now at last the sacred influence \nOf light appears, and from the walls of Heaven \nShoots far into the bosom of dim Night \nA glimmering dawn. Here Nature first begins \nHer farthest verge, and Chaos to retire, \nAs from her outmost works, a broken foe, \nWith tumult less and with less hostile din; \nThat Satan with less toil, and now with ease, \nWafts on the calmer wave by dubious light, \nAnd, like a weather-beaten vessel, holds \nGladly the port, though shrouds and tackle torn; \nOr in the emptier waste, resembling air, \nWeighs his spread wings, at leisure to behold \nFar off th' empyreal Heaven, extended wide \nIn circuit, undetermined square or round, \nWith opal towers and battlements adorned \nOf living sapphire, once his native seat; \nAnd, fast by, hanging in a golden chain, \nThis pendent World, in bigness as a star \nOf smallest magnitude close by the moon. \nThither, full fraught with mischievous revenge, \nAccursed, and in a cursed hour, he hies. \n \n \n \nBook III                                                         \n \n \nHail, holy Light, offspring of Heaven firstborn, \nOr of the Eternal coeternal beam \nMay I express thee unblam'd?  since God is light, \nAnd never but in unapproached light \nDwelt from eternity, dwelt then in thee \nBright effluence of bright essence increate. \nOr hear\"st thou rather pure ethereal stream, \nWhose fountain who shall tell?  before the sun, \nBefore the Heavens thou wert, and at the voice \nOf God, as with a mantle, didst invest  *** \nThe rising world of waters dark and deep, \nWon from the void and formless infinite. \nThee I re-visit now with bolder wing, \nEscap'd the Stygian pool, though long detain'd \nIn that obscure sojourn, while in my flight \nThrough utter and through middle darkness borne, \nWith other notes than to the Orphean lyre \nI sung of Chaos and eternal Night; \nTaught by the heavenly Muse to venture down \nThe dark descent, and up to re-ascend, \nThough hard and rare:  Thee I revisit safe, \nAnd feel thy sovran vital lamp; but thou \nRevisit'st not these eyes, that roll in vain \nTo find thy piercing ray, and find no dawn; \nSo  thick a drop serene hath quench'd their orbs, \nOr dim suffusion veil'd.  Yet not the more \nCease I to wander, where the Muses haunt, \nClear spring, or shady grove, or sunny hill, \nSmit with the love of sacred song; but chief \nThee, Sion, and the flowery brooks beneath, \nThat wash thy hallow'd feet, and warbling flow, \nNightly I visit:  nor sometimes forget \nSo were I equall'd with them in renown, \nThy sovran command, that Man should find grace; \nBlind Thamyris, and blind Maeonides, \nAnd Tiresias, and Phineus, prophets old: \nThen feed on thoughts, that voluntary move \nHarmonious numbers; as the wakeful bird \nSings darkling, and in shadiest covert hid \nTunes her nocturnal note.  Thus with the year \nSeasons return; but not to me returns \nDay, or the sweet approach of even or morn, \nOr sight of vernal bloom, or summer's rose, \nOr flocks, or herds, or human face divine; \nBut cloud instead, and ever-during dark \nSurrounds me, from the cheerful ways of men \nCut off, and for the book of knowledge fair \nPresented with a universal blank \nOf nature's works to me expung'd and ras'd, \nAnd wisdom at one entrance quite shut out. \nSo much the rather thou, celestial Light, \nShine inward, and the mind through all her powers \nIrradiate; there plant eyes, all mist from thence \nPurge and disperse, that I may see and tell \nOf things invisible to mortal sight. \nNow had the Almighty Father from above, \nFrom the pure empyrean where he sits \nHigh thron'd above all highth, bent down his eye \nHis own works and their works at once to view: \nAbout him all the Sanctities of Heaven \nStood thick as stars, and from his sight receiv'd \nBeatitude past utterance; on his right \nThe radiant image of his glory sat, \nHis only son; on earth he first beheld \nOur two first parents, yet the only two \nOf mankind in the happy garden plac'd \nReaping immortal fruits of joy and love, \nUninterrupted joy, unrivall'd love, \nIn blissful solitude; he then survey'd \nHell and the gulf between, and Satan there  \nCoasting the wall of Heaven on this side Night \nIn the dun air sublime, and ready now \nTo stoop with wearied wings, and willing feet, \nOn the bare outside of this world, that seem'd \nFirm land imbosom'd, without firmament, \nUncertain which, in ocean or in air. \nHim God beholding from his prospect high, \nWherein past, present, future, he beholds, \nThus to his only Son foreseeing spake. \nOnly begotten Son, seest thou what rage \nTransports our Adversary?  whom no bounds \nPrescrib'd no bars of Hell, nor all the chains \nHeap'd on him there, nor yet the main abyss \nWide interrupt, can hold; so bent he seems \nOn desperate revenge, that shall redound \nUpon his own rebellious head.  And now, \nThrough all restraint broke loose, he wings his way \nNot far off Heaven, in the precincts of light, \nDirectly towards the new created world, \nAnd man there plac'd, with purpose to assay \nIf him by force he can destroy, or, worse, \nBy some false guile pervert; and shall pervert; \nFor man will hearken to his glozing lies, \nAnd easily transgress the sole command, \nSole pledge of his obedience:  So will fall \nHe and his faithless progeny:  Whose fault? \nWhose but his own?  ingrate, he had of me \nAll he could have; I made him just and right, \nSufficient to have stood, though free to fall. \nSuch I created all the ethereal Powers \nAnd Spirits, both them who stood, and them who fail'd; \nFreely they stood who stood, and fell who fell. \nNot free, what proof could they have given sincere \nOf true allegiance, constant faith or love, \nWhere only what they needs must do appear'd, \nNot what they would?  what praise could they receive? \nWhat pleasure I from such obedience paid, \nWhen will and reason (reason also is choice) \nUseless and vain, of freedom both despoil'd, \nMade passive both, had serv'd necessity, \nNot me?  they therefore, as to right belong$ 'd, \nSo were created, nor can justly accuse \nTheir Maker, or their making, or their fate, \nAs if predestination over-rul'd \nTheir will dispos'd by absolute decree \nOr high foreknowledge they themselves decreed \nTheir own revolt, not I; if I foreknew, \nForeknowledge had no influence on their fault, \nWhich had no less proved certain unforeknown. \nSo without least impulse or shadow of fate, \nOr aught by me immutably foreseen, \nThey trespass, authors to themselves in all \nBoth what they judge, and what they choose; for so \nI form'd them free: and free they must remain, \nTill they enthrall themselves; I else must change \nTheir nature, and revoke the high decree \nUnchangeable, eternal, which ordain'd \n$THeir freedom: they themselves ordain'd their fall. \nThe first sort by their own suggestion fell, \nSelf-tempted, self-deprav'd:  Man falls, deceiv'd \nBy the other first:  Man therefore shall find grace, \nThe other none:  In mercy and justice both, \nThrough Heaven and Earth, so shall my glory excel; \nBut Mercy, first and last, shall brightest shine. \nThus while God spake, ambrosial fragrance fill'd \nAll Heaven, and in the blessed Spirits elect \nSense of new joy ineffable diffus'd. \nBeyond compare the Son of God was seen \nMost glorious; in him all his Father shone \nSubstantially express'd; and in his face \nDivine compassion visibly appear'd, \nLove without end, and without measure grace, \nWhich uttering, thus he to his Father spake. \nO Father, gracious was that word which clos'd \nThy sovran command, that Man should find grace; \n, that Man should find grace; \nFor which both Heaven and earth shall high extol \nThy praises, with the innumerable sound \nOf hymns and sacred songs, wherewith thy throne \nEncompass'd shall resound thee ever blest. \nFor should Man finally be lost, should Man, \nThy creature late so lov'd, thy youngest son, \nFall circumvented thus by fraud, though join'd \nWith his own folly?  that be from thee far, \nThat far be from thee, Father, who art judge \nOf all things made, and judgest only right. \nOr shall the Adversary thus obtain \nHis end, and frustrate thine?  shall he fulfill \nHis malice, and thy goodness bring to nought, \nOr proud return, though to his heavier doom, \nYet with revenge accomplish'd, and to Hell \nDraw after him the whole race of mankind, \nBy him corrupted?  or wilt thou thyself \nAbolish thy creation, and unmake \nFor him, what for thy glory thou hast made? \nSo should thy goodness and thy greatness both \nBe question'd and blasphem'd without defence. \nTo whom the great Creator thus replied. \nO son, in whom my soul hath chief delight, \nSon of my bosom, Son who art alone. \nMy word, my wisdom, and effectual might,  \nAll hast thou spoken as my thoughts are, all \nAs my eternal purpose hath decreed; \nMan shall not quite be lost, but sav'd who will; \nYet not of will in him, but grace in me \nFreely vouchsaf'd; once more I will renew \nHis lapsed powers, though forfeit; and enthrall'd \nBy sin to foul exorbitant desires; \nUpheld by me, yet once more he shall stand \nOn even ground against his mortal foe; \nBy me upheld, that he may know how frail \nHis fallen condition is, and to me owe \nAll his deliverance, and to none but me. \nSome I have chosen of peculiar grace, \nElect above the rest; so is my will: \nThe rest shall hear me call, and oft be warn'd \nTheir sinful state, and to appease betimes \nThe incensed Deity, while offer'd grace \nInvites; for I will clear their senses dark, \nWhat may suffice, and soften stony hearts \nTo pray, repent, and bring obedience due. \nTo prayer, repentance, and obedience due, \nThough but endeavour'd with sincere intent, \nMine ear shall not be slow, mine eye not shut. \nAnd I will place within them as a guide, \nMy umpire Conscience; whom if they will hear, \nLight after light, well us'd, they shall attain, \nAnd to the end, persisting, safe arrive. \nThis my long sufferance, and my day of grace, \nThey who neglect and scorn, shall never taste; \nBut hard be harden'd, blind be blinded more, \nThat they may stumble on, and deeper fall; \nAnd none but such from mercy I exclude. \nBut yet all is not done; Man disobeying, \nDisloyal, breaks his fealty, and sins \nAgainst the high supremacy of Heaven, \nAffecting God-head, and, so losing all, \nTo expiate his treason hath nought left, \nBut to destruction sacred and devote, \nHe, with his whole posterity, must die, \nDie he or justice must; unless for him \nSome other able, and as willing, pay \nThe rigid satisfaction, death for death. \nSay, heavenly Powers, where shall we find such love? \nWhich of you will be mortal, to redeem \nMan's mortal crime, and just the unjust to save? \nDwells in all Heaven charity so dear? \nAnd silence was in Heaven: $ on Man's behalf \nHe ask'd, but all the heavenly quire stood mute, \nPatron or intercessour none appear'd, \nMuch less that durst upon his own head draw \nThe deadly forfeiture, and ransom set. \nAnd now without redemption all mankind \nMust have been lost, adjudg'd to Death and Hell \nBy doom severe, had not the Son of God, \nIn whom the fulness dwells of love divine, \nHis dearest mediation thus renew'd. \nFather, thy word is past, Man shall find grace; \nAnd shall grace not find means, that finds her way, \nThe speediest of thy winged messengers, \nTo visit all thy creatures, and to all \nComes unprevented, unimplor'd, unsought? \nHappy for Man, so coming; he her aid \nCan never seek, once dead in sins, and lost; \nAtonement for himself, or offering meet, \nIndebted and undone, hath none to bring; \nBehold me then:  me for him, life for life \nI offer: on me let thine anger fall; \nAccount me Man; I for his sake will leave \n Thy bosom, and this glory next to thee \n Freely put off, and for him lastly die \n Well pleased; on me let Death wreak all his rage. \n Under his gloomy power I shall not long \n Lie vanquished. Thou hast given me to possess \n Life in myself for ever; by thee I live; \n Though now to Death I yield, and am his due, \n All that of me can die, yet, that debt paid, \n $ thou wilt not leave me in the loathsome grave \n His prey, nor suffer my unspotted soul \n For ever with corruption there to dwell; \n But I shall rise victorious, and subdue \n My vanquisher, spoiled of his vaunted spoil. \n Death his death's wound shall then receive, and stoop \n Inglorious, of his mortal sting disarmed; \n I through the ample air in triumph high \n Shall lead Hell captive maugre Hell, and show \nThe powers of darkness bound. Thou, at the sight \n Pleased, out of Heaven shalt look down and smile, \n While, by thee raised, I ruin all my foes; \n Death last, and with his carcase glut the grave; \n Then, with the multitude of my redeemed, \n Shall enter Heaven, long absent, and return, \n Father, to see thy face, wherein no cloud \n Of anger shall remain, but peace assured \n And reconcilement: wrath shall be no more \n Thenceforth, but in thy presence joy entire. \n His words here ended; but his meek aspect \n Silent yet spake, and breathed immortal love \n To mortal men, above which only shone \n Filial obedience: as a sacrifice \n Glad to be offered, he attends the will \n Of his great Father. Admiration seized \n All Heaven, what this might mean, and whither tend, \n Wondering; but soon th' Almighty thus replied. \n O thou in Heaven and Earth the only peace \n Found out for mankind under wrath, O thou \n My sole complacence! Well thou know'st how dear \n To me are all my works; nor Man the least, \n Though last created, that for him I spare \n Thee from my bosom and right hand, to save, \n By losing thee a while, the whole race lost.                    \n \n     00021053  \n Thou, therefore, whom thou only canst redeem, \n Their nature also to thy nature join; \n And be thyself Man among men on Earth, \n Made flesh, when time shall be, of virgin seed, \n By wondrous birth; be thou in Adam's room \nThe head of all mankind, though Adam's son. \nAs in him perish all men, so in thee, \nAs from a second root, shall be restored \nAs many as are restored, without thee none. \nHis crime makes guilty all his sons; thy merit, \nImputed, shall absolve them who renounce \nTheir own both righteous and unrighteous deeds, \nAnd live in thee transplanted, and from thee \nReceive new life.  So Man, as is most just, \nShall satisfy for Man, be judged and die, \nAnd dying rise, and rising with him raise \nHis brethren, ransomed with his own dear life. \nSo heavenly love shall outdo hellish hate, \nGiving to death, and dying to redeem, \nSo dearly to redeem what hellish hate \nSo easily destroyed, and still destroys \nIn those who, when they may, accept not grace. \nNor shalt thou, by descending to assume \nMan's nature, lessen or degrade thine own. \nBecause thou hast, though throned in highest bliss \nEqual to God, and equally enjoying \nGod-like fruition, quitted all, to save \nA world from utter loss, and hast been found \nBy merit more than birthright Son of God, \nFound worthiest to be so by being good, \nFar more than great or high; because in thee \nLove hath abounded more than glory abounds; \nTherefore thy humiliation shall exalt \nWith thee thy manhood also to this throne: \nHere shalt thou sit incarnate, here shalt reign \nBoth God and Man, Son both of God and Man, \nAnointed universal King; all power \nI give thee; reign for ever, and assume \nThy merits; under thee, as head supreme, \nThrones, Princedoms, Powers, Dominions, I reduce: \nAll knees to thee shall bow, of them that bide \nIn Heaven, or Earth, or under Earth in Hell. \nWhen thou, attended gloriously from Heaven, \nShalt in the sky appear, and from thee send \nThe summoning Arch-Angels to proclaim \nThy dread tribunal; forthwith from all winds, \nThe living, and forthwith the cited dead \nOf all past ages, to the general doom \nShall hasten; such a peal shall rouse their sleep. \nThen, all thy saints assembled, thou shalt judge \nBad Men and Angels; they, arraigned, shall sink \nBeneath thy sentence; Hell, her numbers full, \nThenceforth shall be for ever shut.  Mean while \nThe world shall burn, and from her ashes spring \nNew Heaven and Earth, wherein the just shall dwell, \nAnd, after all their tribulations long, \nSee golden days, fruitful of golden deeds, \nWith joy and peace triumphing, and fair truth. \nThen thou thy regal scepter shalt lay by, \nFor regal scepter then no more shall need, \nGod shall be all in all.  But, all ye Gods, \nAdore him, who to compass all this dies; \nAdore the Son, and honour him as me. \nNo sooner had the Almighty ceased, but all \nThe multitude of Angels, with a shout \nLoud as from numbers without number, sweet \nAs from blest voices, uttering joy, Heaven rung \nWith jubilee, and loud Hosannas filled \nThe eternal regions:  Lowly reverent \nTowards either throne they bow, and to the ground \nWith solemn adoration down they cast \nTheir crowns inwove with amarant and gold; \nImmortal amarant, a flower which once \nIn Paradise, fast by the tree of life, \nBegan to bloom; but soon for man's offence \nTo Heaven removed, where first it grew, there grows, \nAnd flowers aloft shading the fount of life, \nAnd where the river of bliss through midst of Heaven \nRolls o'er Elysian flowers her amber stream; \nWith these that never fade the Spirits elect \nBind their resplendent locks inwreathed with beams; \nNow in loose garlands thick thrown off, the bright \nPavement, that like a sea of jasper shone, \nImpurpled with celestial roses smiled. \nThen, crowned again, their golden harps they took, \nHarps ever tuned, that glittering by their side \nLike quivers hung, and with preamble sweet \nOf charming symphony they introduce \nTheir sacred song, and waken raptures high; \nNo voice exempt, no voice but well could join \nMelodious part, such concord is in Heaven. \nThee, Father, first they sung Omnipotent, \nImmutable, Immortal, Infinite, \nEternal King; the Author of all being, \nFonntain of light, thyself invisible \nAmidst the glorious brightness where thou sit'st \nThroned inaccessible, but when thou shadest \nThe full blaze of thy beams, and, through a cloud \nDrawn round about thee like a radiant shrine, \nDark with excessive bright thy skirts appear, \nYet dazzle Heaven, that brightest Seraphim \nApproach not, but with both wings veil their eyes. \nThee next they sang of all creation first, \nBegotten Son, Divine Similitude, \nIn whose conspicuous countenance, without cloud \nMade visible, the Almighty Father shines, \nWhom else no creature can behold; on thee \nImpressed the effulgence of his glory abides, \nTransfused on thee his ample Spirit rests. \nHe Heaven of Heavens and all the Powers therein \nBy thee created; and by thee threw down \nThe aspiring Dominations:  Thou that day \nThy Father's dreadful thunder didst not spare, \nNor stop thy flaming chariot-wheels, that shook \nHeaven's everlasting frame, while o'er the necks \nThou drovest of warring Angels disarrayed. \nBack from pursuit thy Powers with loud acclaim \nThee only extolled, Son of thy Father's might, \nTo execute fierce vengeance on his foes, \nNot so on Man:  Him through their malice fallen, \nFather of mercy and grace, thou didst not doom \nSo strictly, but much more to pity incline: \nNo sooner did thy dear and only Son \nPerceive thee purposed not to doom frail Man \nSo strictly, but much more to pity inclined, \nHe to appease thy wrath, and end the strife \nOf mercy and justice in thy face discerned, \nRegardless of the bliss wherein he sat \nSecond to thee, offered himself to die \nFor Man's offence.  O unexampled love, \nLove no where to be found less than Divine! \nHail, Son of God, Saviour of Men!  Thy name \nShall be the copious matter of my song \nHenceforth, and never shall my heart thy praise \nForget, nor from thy Father's praise disjoin. \nThus they in Heaven, above the starry sphere, \nTheir happy hours in joy and hymning spent. \nMean while upon the firm opacous globe \nOf this round world, whose first convex divides \nThe luminous inferiour orbs, enclosed \nFrom Chaos, and the inroad of Darkness old, \nSatan alighted walks:  A globe far off \nIt seemed, now seems a boundless continent \nDark, waste, and wild, under the frown of Night \nStarless exposed, and ever-threatening storms \nOf Chaos blustering round, inclement sky; \nSave on that side which from the wall of Heaven, \nThough distant far, some small reflection gains \nOf glimmering air less vexed with tempest loud: \nHere walked the Fiend at large in spacious field. \nAs when a vultur on Imaus bred, \nWhose snowy ridge the roving Tartar bounds, \nDislodging from a region scarce of prey \nTo gorge the flesh of lambs or yeanling kids, \nOn hills where flocks are fed, flies toward the springs \nOf Ganges or Hydaspes, Indian streams; \nBut in his way lights on the barren plains \nOf Sericana, where Chineses drive \nWith sails and wind their cany waggons light: \nSo, on this windy sea of land, the Fiend \nWalked up and down alone, bent on his prey; \nAlone, for other creature in this place, \nLiving or lifeless, to be found was none; \nNone yet, but store hereafter from the earth \nUp hither like aereal vapours flew \nOf all things transitory and vain, when sin \nWith vanity had filled the works of men: \nBoth all things vain, and all who in vain things \nBuilt their fond hopes of glory or lasting fame, \nOr happiness in this or the other life; \nAll who have their reward on earth, the fruits \nOf painful superstition and blind zeal, \nNought seeking but the praise of men, here find \nFit retribution, empty as their deeds; \nAll the unaccomplished works of Nature's hand, \nAbortive, monstrous, or unkindly mixed, \nDissolved on earth, fleet hither, and in vain, \nTill final dissolution, wander here; \nNot in the neighbouring moon as some have dreamed; \nThose argent fields more likely habitants, \nTranslated Saints, or middle Spirits hold \nBetwixt the angelical and human kind. \nHither of ill-joined sons and daughters born \nFirst from the ancient world those giants came \nWith many a vain exploit, though then renowned: \nThe builders next of Babel on the plain \nOf Sennaar, and still with vain design, \nNew Babels, had they wherewithal, would build: \nOthers came single; he, who, to be deemed \nA God, leaped fondly into Aetna flames, \nEmpedocles; and he, who, to enjoy \nPlato's Elysium, leaped into the sea, \nCleombrotus; and many more too long, \nEmbryos, and idiots, eremites, and friars \nWhite, black, and gray, with all their trumpery. \nHere pilgrims roam, that strayed so far to seek \nIn Golgotha him dead, who lives in Heaven; \nAnd they, who to be sure of Paradise, \nDying, put on the weeds of Dominick, \nOr in Franciscan think to pass disguised; \nThey pass the planets seven, and pass the fixed, \nAnd that crystalling sphere whose balance weighs \nThe trepidation talked, and that first moved; \nAnd now Saint Peter at Heaven's wicket seems \nTo wait them with his keys, and now at foot \nOf Heaven's ascent they lift their feet, when lo \nA violent cross wind from either coast \nBlows them transverse, ten thousand leagues awry \nInto the devious air:  Then might ye see \nCowls, hoods, and habits, with their wearers, tost \nAnd fluttered into rags; then reliques, beads, \nIndulgences, dispenses, pardons, bulls, \nThe sport of winds:  All these, upwhirled aloft, \nFly o'er the backside of the world far off \nInto a Limbo large and broad, since called \nThe Paradise of Fools, to few unknown \nLong after; now unpeopled, and untrod. \nAll this dark globe the Fiend found as he passed, \nAnd long he wandered, till at last a gleam \nOf dawning light turned thither-ward in haste \nHis travelled steps: far distant he descries \nAscending by degrees magnificent \nUp to the wall of Heaven a structure high; \nAt top whereof, but far more rich, appeared \nThe work as of a kingly palace-gate, \nWith frontispiece of diamond and gold \nEmbellished; thick with sparkling orient gems \nThe portal shone, inimitable on earth \nBy model, or by shading pencil, drawn. \nThese stairs were such as whereon Jacob saw \nAngels ascending and descending, bands \nOf guardians bright, when he from Esau fled \nTo Padan-Aram, in the field of Luz \nDreaming by night under the open sky \nAnd waking cried,  This is the gate of Heaven. \nEach stair mysteriously was meant, nor stood \nThere always, but drawn up to Heaven sometimes \nViewless; and underneath a bright sea flowed \nOf jasper, or of liquid pearl, whereon \nWho after came from earth, failing arrived \nWafted by Angels, or flew o'er the lake \nRapt in a chariot drawn by fiery steeds. \nThe stairs were then let down, whether to dare \nThe Fiend by easy ascent, or aggravate \nHis sad exclusion from the doors of bliss: \nDirect against which opened from beneath, \nJust o'er the blissful seat of Paradise, \nA passage down to the Earth, a passage wide, \nWider by far than that of after-times \nOver mount Sion, and, though that were large, \nOver the Promised Land to God so dear; \nBy which, to visit oft those happy tribes, \nOn high behests his angels to and fro \nPassed frequent, and his eye with choice regard \nFrom Paneas, the fount of Jordan's flood, \nTo Beersaba, where the Holy Land \nBorders on Egypt and the Arabian shore; \nSo wide the opening seemed, where bounds were set \nTo darkness, such as bound the ocean wave. \nSatan from hence, now on the lower stair, \nThat scaled by steps of gold to Heaven-gate, \nLooks down with wonder at the sudden view \nOf all this world at once.  As when a scout, \nThrough dark?;nd desart ways with?oeril gone \nAll?might,?;t?kast by break of cheerful dawn \nObtains the brow of some high-climbing hill, \nWhich to his eye discovers unaware \nThe goodly prospect of some foreign land \nFirst seen, or some renowned metropolis \nWith glistering spires and pinnacles adorned, \nWhich now the rising sun gilds with his beams: \nSuch wonder seised, though after Heaven seen, \nThe Spirit malign, but much more envy seised, \nAt sight of all this world beheld so fair. \nRound he surveys (and well might, where he stood \nSo high above the circling canopy \nOf night's extended shade,) from eastern point \nOf Libra to the fleecy star that bears \nAndromeda far off Atlantick seas \nBeyond the horizon; then from pole to pole \nHe views in breadth, and without longer pause \nDown right into the world's first region throws \nHis flight precipitant, and winds with ease \nThrough the pure marble air his oblique way \nAmongst innumerable stars, that shone \nStars distant, but nigh hand seemed other worlds; \nOr other worlds they seemed, or happy isles, \nLike those Hesperian gardens famed of old, \nFortunate fields, and groves, and flowery vales, \nThrice happy isles; but who dwelt happy there \nHe staid not to inquire:  Above them all \nThe golden sun, in splendour likest Heaven, \nAllured his eye; thither his course he bends \nThrough the calm firmament, (but up or down, \nBy center, or eccentrick, hard to tell, \nOr longitude,) where the great luminary \nAloof the vulgar constellations thick, \nThat from his lordly eye keep distance due, \nDispenses light from far; they, as they move \nTheir starry dance in numbers that compute \nDays, months, and years, towards his all-cheering lamp \nTurn swift their various motions, or are turned \nBy his magnetick beam, that gently warms \nThe universe, and to each inward part \nWith gentle penetration, though unseen, \nShoots invisible virtue even to the deep; \nSo wonderously was set his station bright. \nThere lands the Fiend, a spot like which perhaps \nAstronomer in the sun's lucent orb \nThrough his glazed optick tube yet never saw. \nThe place he found beyond expression bright, \nCompared with aught on earth, metal or stone; \nNot all parts like, but all alike informed \nWith radiant light, as glowing iron with fire; \nIf metal, part seemed gold, part silver clear; \nIf stone, carbuncle most or chrysolite, \nRuby or topaz, to the twelve that shone \nIn Aaron's breast-plate, and a stone besides \nImagined rather oft than elsewhere seen, \nThat stone, or like to that which here below \nPhilosophers in vain so long have sought, \nIn vain, though by their powerful art they bind \nVolatile Hermes, and call up unbound \nIn various shapes old Proteus from the sea, \nDrained through a limbeck to his native form. \nWhat wonder then if fields and regions here \nBreathe forth Elixir pure, and rivers run \nPotable gold, when with one virtuous touch \nThe arch-chemick sun, so far from us remote, \nProduces, with terrestrial humour mixed, \nHere in the dark so many precious things \nOf colour glorious, and effect so rare? \nHere matter new to gaze the Devil met \nUndazzled; far and wide his eye commands; \nFor sight no obstacle found here, nor shade, \nBut all sun-shine, as when his beams at noon \nCulminate from the equator, as they now \nShot upward still direct, whence no way round \nShadow from body opaque can fall; and the air, \nNo where so clear, sharpened his visual ray \nTo objects distant far, whereby he soon \nSaw within ken a glorious Angel stand, \nThe same whom John saw also in the sun: \nHis back was turned, but not his brightness hid; \nOf beaming sunny rays a golden tiar \nCircled his head, nor less his locks behind \nIllustrious on his shoulders fledge with wings \nLay waving round; on some great charge employed \nHe seemed, or fixed in cogitation deep. \nGlad was the Spirit impure, as now in hope \nTo find who might direct his wandering flight \nTo Paradise, the happy seat of Man, \nHis journey's end and our beginning woe. \nBut first he casts to change his proper shape, \nWhich else might work him danger or delay: \nAnd now a stripling Cherub he appears, \nNot of the prime, yet such as in his face \nYouth smiled celestial, and to every limb \nSuitable grace diffused, so well he feigned: \nUnder a coronet his flowing hair \nIn curls on either cheek played; wings he wore \nOf many a coloured plume, sprinkled with gold; \nHis habit fit for speed succinct, and held \nBefore his decent steps a silver wand. \nHe drew not nigh unheard; the Angel bright, \nEre he drew nigh, his radiant visage turned, \nAdmonished by his ear, and straight was known \nThe Arch-Angel Uriel, one of the seven \nWho in God's presence, nearest to his throne, \nStand ready at command, and are his eyes \nThat run through all the Heavens, or down to the Earth \nBear his swift errands over moist and dry, \nO'er sea and land: him Satan thus accosts. \nUriel, for thou of those seven Spirits that stand \nIn sight of God's high throne, gloriously bright, \nThe first art wont his great authentick will \nInterpreter through highest Heaven to bring, \nWhere all his sons thy embassy attend; \nAnd here art likeliest by supreme decree \nLike honour to obtain, and as his eye \nTo visit oft this new creation round; \nUnspeakable desire to see, and know \nAll these his wonderous works, but chiefly Man, \nHis chief delight and favour, him for whom \nAll these his works so wonderous he ordained, \nHath brought me from the quires of Cherubim \nAlone thus wandering.  Brightest Seraph, tell \nIn which of all these shining orbs hath Man \nHis fixed seat, or fixed seat hath none, \nBut all these shining orbs his choice to dwell; \nThat I may find him, and with secret gaze \nOr open admiration him behold, \nOn whom the great Creator hath bestowed \nWorlds, and on whom hath all these graces poured; \nThat both in him and all things, as is meet, \nThe universal Maker we may praise; \nWho justly hath driven out his rebel foes \nTo deepest Hell, and, to repair that loss, \nCreated this new happy race of Men \nTo serve him better:  Wise are all his ways. \nSo spake the false dissembler unperceived; \nFor neither Man nor Angel can discern \nHypocrisy, the only evil that walks \nInvisible, except to God alone, \nBy his permissive will, through Heaven and Earth: \nAnd oft, though wisdom wake, suspicion sleeps \nAt wisdom's gate, and to simplicity \nResigns her charge, while goodness thinks no ill \nWhere no ill seems:  Which now for once beguiled \nUriel, though regent of the sun, and held \nThe sharpest-sighted Spirit of all in Heaven; \nWho to the fraudulent impostor foul, \nIn his uprightness, answer thus returned. \nFair Angel, thy desire, which tends to know \nThe works of God, thereby to glorify \nThe great Work-master, leads to no excess \nThat reaches blame, but rather merits praise \nThe more it seems excess, that led thee hither \nFrom thy empyreal mansion thus alone, \nTo witness with thine eyes what some perhaps, \nContented with report, hear only in Heaven: \nFor wonderful indeed are all his works, \nPleasant to know, and worthiest to be all \nHad in remembrance always with delight; \nBut what created mind can comprehend \nTheir number, or the wisdom infinite \nThat brought them forth, but hid their causes deep? \nI saw when at his word the formless mass, \nThis world's material mould, came to a heap: \nConfusion heard his voice, and wild uproar \nStood ruled, stood vast infinitude confined; \nTill at his second bidding Darkness fled, \nLight shone, and order from disorder sprung: \nSwift to their several quarters hasted then \nThe cumbrous elements, earth, flood, air, fire; \nAnd this ethereal quintessence of Heaven \nFlew upward, spirited with various forms, \nThat rolled orbicular, and turned to stars \nNumberless, as thou seest, and how they move; \nEach had his place appointed, each his course; \nThe rest in circuit walls this universe. \nLook downward on that globe, whose hither side \nWith light from hence, though but reflected, shines; \nThat place is Earth, the seat of Man; that light \nHis day, which else, as the other hemisphere, \nNight would invade; but there the neighbouring moon \nSo call that opposite fair star) her aid \nTimely interposes, and her monthly round \nStill ending, still renewing, through mid Heaven, \nWith borrowed light her countenance triform \nHence fills and empties to enlighten the Earth, \nAnd in her pale dominion checks the night. \nThat spot, to which I point, is Paradise, \nAdam's abode; those lofty shades, his bower. \nThy way thou canst not miss, me mine requires. \nThus said, he turned; and Satan, bowing low, \nAs to superiour Spirits is wont in Heaven, \nWhere honour due and reverence none neglects, \nTook leave, and toward the coast of earth beneath, \nDown from the ecliptick, sped with hoped success, \nThrows his steep flight in many an aery wheel; \nNor staid, till on Niphates' top he lights. \n \n \n \nBook IV                                                          \n \n \nO, for that warning voice, which he, who saw \nThe Apocalypse, heard cry in Heaven aloud, \nThen when the Dragon, put to second rout, \nCame furious down to be revenged on men, \nWoe to the inhabitants on earth! that now, \nWhile time was, our first parents had been warned \nThe coming of their secret foe, and 'scaped, \nHaply so 'scaped his mortal snare:  For now \nSatan, now first inflamed with rage, came down, \nThe tempter ere the accuser of mankind, \nTo wreak on innocent frail Man his loss \nOf that first battle, and his flight to Hell: \nYet, not rejoicing in his speed, though bold \nFar off and fearless, nor with cause to boast, \nBegins his dire attempt; which nigh the birth \nNow rolling boils in his tumultuous breast, \nAnd like a devilish engine back recoils \nUpon himself; horrour and doubt distract \nHis troubled thoughts, and from the bottom stir \nThe Hell within him; for within him Hell \nHe brings, and round about him, nor from Hell \nOne step, no more than from himself, can fly \nBy change of place:  Now conscience wakes despair, \nThat slumbered; wakes the bitter memory \nOf what he was, what is, and what must be \nWorse; of worse deeds worse sufferings must ensue. \nSometimes towards Eden, which now in his view \nLay pleasant, his grieved look he fixes sad; \nSometimes towards Heaven, and the full-blazing sun, \nWhich now sat high in his meridian tower: \nThen, much revolving, thus in sighs began. \nO thou, that, with surpassing glory crowned, \nLookest from thy sole dominion like the God \nOf this new world; at whose sight all the stars \nHide their diminished heads; to thee I call, \nBut with no friendly voice, and add thy name, \nOf Sun! to tell thee how I hate thy beams, \nThat bring to my remembrance from what state \nI fell, how glorious once above thy sphere; \nTill pride and worse ambition threw me down \nWarring in Heaven against Heaven's matchless King: \nAh, wherefore! he deserved no such return \nFrom me, whom he created what I was \nIn that bright eminence, and with his good \nUpbraided none; nor was his service hard. \nWhat could be less than to afford him praise, \nThe easiest recompence, and pay him thanks, \nHow due! yet all his good proved ill in me, \nAnd wrought but malice; lifted up so high \nI sdeined subjection, and thought one step higher \nWould set me highest, and in a moment quit \nThe debt immense of endless gratitude, \nSo burdensome still paying, still to owe, \nForgetful what from him I still received, \nAnd understood not that a grateful mind \nBy owing owes not, but still pays, at once \nIndebted and discharged; what burden then \nO, had his powerful destiny ordained \nMe some inferiour Angel, I had stood \nThen happy; no unbounded hope had raised \nAmbition!  Yet why not some other Power \nAs great might have aspired, and me, though mean, \nDrawn to his part; but other Powers as great \nFell not, but stand unshaken, from within \nOr from without, to all temptations armed. \nHadst thou the same free will and power to stand? \nThou hadst: whom hast thou then or what to accuse, \nBut Heaven's free love dealt equally to all? \nBe then his love accursed, since love or hate, \nTo me alike, it deals eternal woe. \nNay, cursed be thou; since against his thy will \nChose freely what it now so justly rues. \nMe miserable! which way shall I fly \nInfinite wrath, and infinite despair? \nWhich way I fly is Hell; myself am Hell; \nAnd, in the lowest deep, a lower deep \nStill threatening to devour me opens wide, \nTo which the Hell I suffer seems a Heaven. \nO, then, at last relent:  Is there no place \nLeft for repentance, none for pardon left? \nNone left but by submission; and that word \nDisdain forbids me, and my dread of shame \nAmong the Spirits beneath, whom I seduced \nWith other promises and other vaunts \nThan to submit, boasting I could subdue \nThe Omnipotent.  Ay me! they little know \nHow dearly I abide that boast so vain, \nUnder what torments inwardly I groan, \nWhile they adore me on the throne of Hell. \nWith diadem and scepter high advanced, \nThe lower still I fall, only supreme \nIn misery:  Such joy ambition finds. \nBut say I could repent, and could obtain, \nBy act of grace, my former state; how soon \nWould highth recall high thoughts, how soon unsay \nWhat feigned submission swore?  Ease would recant \nVows made in pain, as violent and void. \nFor never can true reconcilement grow, \nWhere wounds of deadly hate have pierced so deep: \nWhich would but lead me to a worse relapse \nAnd heavier fall:  so should I purchase dear \nShort intermission bought with double smart. \nThis knows my Punisher; therefore as far \nFrom granting he, as I from begging, peace; \nAll hope excluded thus, behold, in stead \nMankind created, and for him this world. \nSo farewell, hope; and with hope farewell, fear; \nFarewell, remorse! all good to me is lost; \nEvil, be thou my good; by thee at least \nDivided empire with Heaven's King I hold, \nBy thee, and more than half perhaps will reign; \nAs Man ere long, and this new world, shall know. \nThus while he spake, each passion dimmed his face \nThrice changed with pale, ire, envy, and despair; \nWhich marred his borrowed visage, and betrayed \nHim counterfeit, if any eye beheld. \nFor heavenly minds from such distempers foul \nAre ever clear.  Whereof he soon aware, \nEach perturbation smoothed with outward calm, \nArtificer of fraud; and was the first \nThat practised falsehood under saintly show, \nDeep malice to conceal, couched with revenge: \nYet not enough had practised to deceive \nUriel once warned; whose eye pursued him down \n The way he went, and on the Assyrian mount \n Saw him disfigured, more than could befall \n Spirit of happy sort; his gestures fierce \n He marked and mad demeanour, then alone, \n As he supposed, all unobserved, unseen. \n So on he fares, and to the border comes \n Of Eden, where delicious Paradise, \n Now nearer, crowns with her enclosure green, \n As with a rural mound, the champaign head \n Of a steep wilderness, whose hairy sides \nAccess denied; and overhead upgrew \n Insuperable height of loftiest shade, \n Cedar, and pine, and fir, and branching palm, \n A sylvan scene, and, as the ranks ascend, \n Shade above shade, a woody theatre \n Of stateliest view. Yet higher than their tops \n The verdurous wall of Paradise upsprung;                        \n \n    00081429  \nWhich to our general sire gave prospect large \nInto his nether empire neighbouring round. \nAnd higher than that wall a circling row \nOf goodliest trees, loaden with fairest fruit, \nBlossoms and fruits at once of golden hue, \nAppeared, with gay enamelled colours mixed: \nOn which the sun more glad impressed his beams \nThan in fair evening cloud, or humid bow, \nWhen God hath showered the earth; so lovely seemed \nThat landskip:  And of pure now purer air \nMeets his approach, and to the heart inspires \nVernal delight and joy, able to drive \nAll sadness but despair:  Now gentle gales, \nFanning their odoriferous wings, dispense \nNative perfumes, and whisper whence they stole \nThose balmy spoils.  As when to them who fail \nBeyond the Cape of Hope, and now are past \nMozambick, off at sea north-east winds blow \nSabean odours from the spicy shore \nOf Araby the blest; with such delay \nWell pleased they slack their course, and many a league \nCheered with the grateful smell old Ocean smiles: \nSo entertained those odorous sweets the Fiend, \nWho came their bane; though with them better pleased \nThan Asmodeus with the fishy fume \nThat drove him, though enamoured, from the spouse \nOf Tobit's son, and with a vengeance sent \nFrom Media post to Egypt, there fast bound. \nNow to the ascent of that steep savage hill \nSatan had journeyed on, pensive and slow; \nBut further way found none, so thick entwined, \nAs one continued brake, the undergrowth \nOf shrubs and tangling bushes had perplexed \nAll path of man or beast that passed that way. \nOne gate there only was, and that looked east \nOn the other side: which when the arch-felon saw, \nDue entrance he disdained; and, in contempt, \nAt one flight bound high over-leaped all bound \nOf hill or highest wall, and sheer within \nLights on his feet.  As when a prowling wolf, \nWhom hunger drives to seek new haunt for prey, \nWatching where shepherds pen their flocks at eve \nIn hurdled cotes amid the field secure, \nLeaps o'er the fence with ease into the fold: \nOr as a thief, bent to unhoard the cash \nOf some rich burgher, whose substantial doors, \nCross-barred and bolted fast, fear no assault, \nIn at the window climbs, or o'er the tiles: \nSo clomb this first grand thief into God's fold; \nSo since into his church lewd hirelings climb. \nThence up he flew, and on the tree of life, \nThe middle tree and highest there that grew, \nSat like a cormorant; yet not true life \nThereby regained, but sat devising death \nTo them who lived; nor on the virtue thought \nOf that life-giving plant, but only used \nFor prospect, what well used had been the pledge \nOf immortality.  So little knows \nAny, but God alone, to value right \nThe good before him, but perverts best things \nTo worst abuse, or to their meanest use. \nBeneath him with new wonder now he views, \nTo all delight of human sense exposed, \nIn narrow room, Nature's whole wealth, yea more, \nA Heaven on Earth:  For blissful Paradise \nOf God the garden was, by him in the east \nOf Eden planted; Eden stretched her line \nFrom Auran eastward to the royal towers \nOf great Seleucia, built by Grecian kings, \nOf where the sons of Eden long before \nDwelt in Telassar:  In this pleasant soil \nHis far more pleasant garden God ordained; \nOut of the fertile ground he caused to grow \nAll trees of noblest kind for sight, smell, taste; \nAnd all amid them stood the tree of life, \nHigh eminent, blooming ambrosial fruit \nOf vegetable gold; and next to life, \nOur death, the tree of knowledge, grew fast by, \nKnowledge of good bought dear by knowing ill. \nSouthward through Eden went a river large, \nNor changed his course, but through the shaggy hill \nPassed underneath ingulfed; for God had thrown \nThat mountain as his garden-mould high raised \nUpon the rapid current, which, through veins \nOf porous earth with kindly thirst up-drawn, \nRose a fresh fountain, and with many a rill \nWatered the garden; thence united fell \nDown the steep glade, and met the nether flood, \nWhich from his darksome passage now appears, \nAnd now, divided into four main streams, \nRuns diverse, wandering many a famous realm \nAnd country, whereof here needs no account; \nBut rather to tell how, if Art could tell, \nHow from that sapphire fount the crisped brooks, \nRolling on orient pearl and sands of gold, \nWith mazy errour under pendant shades \nRan nectar, visiting each plant, and fed \nFlowers worthy of Paradise, which not nice Art \nIn beds and curious knots, but Nature boon \nPoured forth profuse on hill, and dale, and plain, \nBoth where the morning sun first warmly smote \nThe open field, and where the unpierced shade \nImbrowned the noontide bowers:  Thus was this place \nA happy rural seat of various view; \nGroves whose rich trees wept odorous gums and balm, \nOthers whose fruit, burnished with golden rind, \nHung amiable, Hesperian fables true, \nIf true, here only, and of delicious taste: \nBetwixt them lawns, or level downs, and flocks \nGrazing the tender herb, were interposed, \nOr palmy hillock; or the flowery lap \nOf some irriguous valley spread her store, \nFlowers of all hue, and without thorn the rose: \nAnother side, umbrageous grots and caves \nOf cool recess, o'er which the mantling vine \nLays forth her purple grape, and gently creeps \nLuxuriant; mean while murmuring waters fall \nDown the slope hills, dispersed, or in a lake, \nThat to the fringed bank with myrtle crowned \nHer crystal mirrour holds, unite their streams. \nThe birds their quire apply; airs, vernal airs, \nBreathing the smell of field and grove, attune \nThe trembling leaves, while universal Pan, \nKnit with the Graces and the Hours in dance, \nLed on the eternal Spring.  Not that fair field \nOf Enna, where Proserpine gathering flowers, \nHerself a fairer flower by gloomy Dis \nWas gathered, which cost Ceres all that pain \nTo seek her through the world; nor that sweet grove \nOf Daphne by Orontes, and the inspired \nCastalian spring, might with this Paradise \nOf Eden strive; nor that Nyseian isle \nGirt with the river Triton, where old Cham, \nWhom Gentiles Ammon call and Libyan Jove, \nHid Amalthea, and her florid son \nYoung Bacchus, from his stepdame Rhea's eye; \nNor where Abassin kings their issue guard, \nMount Amara, though this by some supposed \nTrue Paradise under the Ethiop line \nBy Nilus' head, enclosed with shining rock, \nA whole day's journey high, but wide remote \nFrom this Assyrian garden, where the Fiend \nSaw, undelighted, all delight, all kind \nOf living creatures, new to sight, and strange \nTwo of far nobler shape, erect and tall, \nGodlike erect, with native honour clad \nIn naked majesty seemed lords of all: \nAnd worthy seemed; for in their looks divine \nThe image of their glorious Maker shone, \nTruth, wisdom, sanctitude severe and pure, \n(Severe, but in true filial freedom placed,) \nWhence true authority in men; though both \nNot equal, as their sex not equal seemed; \nFor contemplation he and valour formed; \nFor softness she and sweet attractive grace; \nHe for God only, she for God in him: \nHis fair large front and eye sublime declared \nAbsolute rule; and hyacinthine locks \nRound from his parted forelock manly hung \nClustering, but not beneath his shoulders broad: \nShe, as a veil, down to the slender waist \nHer unadorned golden tresses wore \nDishevelled, but in wanton ringlets waved \nAs the vine curls her tendrils, which implied \nSubjection, but required with gentle sway, \nAnd by her yielded, by him best received, \nYielded with coy submission, modest pride, \nAnd sweet, reluctant, amorous delay. \nNor those mysterious parts were then concealed; \nThen was not guilty shame, dishonest shame \nOf nature's works, honour dishonourable, \nSin-bred, how have ye troubled all mankind \nWith shows instead, mere shows of seeming pure, \nAnd banished from man's life his happiest life, \nSimplicity and spotless innocence! \nSo passed they naked on, nor shunned the sight \nOf God or Angel; for they thought no ill: \nSo hand in hand they passed, the loveliest pair, \nThat ever since in love's embraces met; \nAdam the goodliest man of men since born \nHis sons, the fairest of her daughters Eve. \nUnder a tuft of shade that on a green \nStood whispering soft, by a fresh fountain side \nThey sat them down; and, after no more toil \nOf their sweet gardening labour than sufficed \nTo recommend cool Zephyr, and made ease \nMore easy, wholesome thirst and appetite \nMore grateful, to their supper-fruits they fell, \nNectarine fruits which the compliant boughs \nYielded them, side-long as they sat recline \nOn the soft downy bank damasked with flowers: \nThe savoury pulp they chew, and in the rind, \nStill as they thirsted, scoop the brimming stream; \nNor gentle purpose, nor endearing smiles \nWanted, nor youthful dalliance, as beseems \nFair couple, linked in happy nuptial league, \nAlone as they.  About them frisking played \nAll beasts of the earth, since wild, and of all chase \nIn wood or wilderness, forest or den; \nSporting the lion ramped, and in his paw \nDandled the kid; bears, tigers, ounces, pards, \nGambolled before them; the unwieldy elephant, \nTo make them mirth, used all his might, and wreathed \nHis?kithetmroboscis; close the serpent sly, \nInsinuating, wove with Gordian twine \nHis braided train, and of his fatal guile \nGave proof unheeded; others on the grass \nCouched, and now filled with pasture gazing sat, \nOr bedward ruminating; for the sun, \nDeclined, was hasting now with prone career \nTo the ocean isles, and in the ascending scale \nOf Heaven the stars that usher evening rose: \nWhen Satan still in gaze, as first he stood, \nScarce thus at length failed speech recovered sad. \nO Hell! what do mine eyes with grief behold! \nInto our room of bliss thus high advanced \nCreatures of other mould, earth-born perhaps, \nNot Spirits, yet to heavenly Spirits bright \nLittle inferiour; whom my thoughts pursue \nWith wonder, and could love, so lively shines \nIn them divine resemblance, and such grace \nThe hand that formed them on their shape hath poured. \nAh! gentle pair, ye little think how nigh \nYour change approaches, when all these delights \nWill vanish, and deliver ye to woe; \nMore woe, the more your taste is now of joy; \nHappy, but for so happy ill secured \nLong to continue, and this high seat your Heaven \nIll fenced for Heaven to keep out such a foe \nAs now is entered; yet no purposed foe \nTo you, whom I could pity thus forlorn, \nThough I unpitied:  League with you I seek, \nAnd mutual amity, so strait, so close, \nThat I with you must dwell, or you with me \nHenceforth; my dwelling haply may not please, \nLike this fair Paradise, your sense; yet such \nAccept your Maker's work; he gave it me, \nWhich I as freely give:  Hell shall unfold, \nTo entertain you two, her widest gates, \nAnd send forth all her kings; there will be room, \nNot like these narrow limits, to receive \nYour numerous offspring; if no better place, \nThank him who puts me loth to this revenge \nOn you who wrong me not for him who wronged. \nAnd should I at your harmless innocence \nMelt, as I do, yet publick reason just, \nHonour and empire with revenge enlarged, \nBy conquering this new world, compels me now \nTo do what else, though damned, I should abhor. \nSo spake the Fiend, and with necessity, \nThe tyrant's plea, excused his devilish deeds. \nThen from his lofty stand on that high tree \nDown he alights among the sportful herd \nOf those four-footed kinds, himself now one, \nNow other, as their shape served best his end \nNearer to view his prey, and, unespied, \nTo mark what of their state he more might learn, \nBy word or action marked. About them round \nA lion now he stalks with fiery glare; \nThen as a tiger, who by chance hath spied \nIn some purlieu two gentle fawns at play, \nStraight couches close, then, rising, changes oft \nHis couchant watch, as one who chose his ground, \nWhence rushing, he might surest seize them both, \nGriped in each paw: when, Adam first of men \nTo first of women Eve thus moving speech, \nTurned him, all ear to hear new utterance flow. \nSole partner, and sole part, of all these joys, \nDearer thyself than all; needs must the Power \nThat made us, and for us this ample world, \nBe infinitely good, and of his good \nAs liberal and free as infinite; \nThat raised us from the dust, and placed us here \nIn all this happiness, who at his hand \nHave nothing merited, nor can perform \nAught whereof he hath need; he who requires \nFrom us no other service than to keep \nThis one, this easy charge, of all the trees \nIn Paradise that bear delicious fruit \nSo various, not to taste that only tree \nOf knowledge, planted by the tree of life; \nSo near grows death to life, whate'er death is, \nSome dreadful thing no doubt; for well thou knowest \nGod hath pronounced it death to taste that tree, \nThe only sign of our obedience left, \nAmong so many signs of power and rule \nConferred upon us, and dominion given \nOver all other creatures that possess \nEarth, air, and sea.  Then let us not think hard \nOne easy prohibition, who enjoy \nFree leave so large to all things else, and choice \nUnlimited of manifold delights: \nBut let us ever praise him, and extol \nHis bounty, following our delightful task, \nTo prune these growing plants, and tend these flowers, \nWhich were it toilsome, yet with thee were sweet. \nTo whom thus Eve replied.  O thou for whom \nAnd from whom I was formed, flesh of thy flesh, \nAnd without whom am to no end, my guide \nAnd head! what thou hast said is just and right. \nFor we to him indeed all praises owe, \nAnd daily thanks; I chiefly, who enjoy \nSo far the happier lot, enjoying thee \nPre-eminent by so much odds, while thou \nLike consort to thyself canst no where find. \nThat day I oft remember, when from sleep \nI first awaked, and found myself reposed \nUnder a shade on flowers, much wondering where \nAnd what I was, whence thither brought, and how. \nNot distant far from thence a murmuring sound \nOf waters issued from a cave, and spread \nInto a liquid plain, then stood unmoved \nPure as the expanse of Heaven; I thither went \nWith unexperienced thought, and laid me down \nOn the green bank, to look into the clear \nSmooth lake, that to me seemed another sky. \nAs I bent down to look, just opposite \nA shape within the watery gleam appeared, \nBending to look on me:  I started back, \nIt started back; but pleased I soon returned, \nPleased it returned as soon with answering looks \nOf sympathy and love:  There I had fixed \nMine eyes till now, and pined with vain desire, \nHad not a voice thus warned me;  'What thou seest, \n'What there thou seest, fair Creature, is thyself; \n'With thee it came and goes: but follow me, \n'And I will bring thee where no shadow stays \n'Thy coming, and thy soft embraces, he \n'Whose image thou art; him thou shalt enjoy \n'Inseparably thine, to him shalt bear \n'Multitudes like thyself, and thence be called \n'Mother of human race.'  What could I do, \nBut follow straight, invisibly thus led? \nTill I espied thee, fair indeed and tall, \nUnder a platane; yet methought less fair, \nLess winning soft, less amiably mild, \nThan that smooth watery image:  Back I turned; \nThou following cryedst aloud, 'Return, fair Eve; \n'Whom flyest thou?  whom thou flyest, of him thou art, \n'His flesh, his bone; to give thee being I lent \n'Out of my side to thee, nearest my heart, \n'Substantial life, to have thee by my side \n'Henceforth an individual solace dear; \n'Part of my soul I seek thee, and thee claim \n'My other half:'  With that thy gentle hand \nSeised mine:  I yielded;and from that time see \nHow beauty is excelled by manly grace, \nAnd wisdom, which alone is truly fair. \nSo spake our general mother, and with eyes \nOf conjugal attraction unreproved, \nAnd meek surrender, half-embracing leaned \nOn our first father; half her swelling breast \nNaked met his, under the flowing gold \nOf her loose tresses hid: he in delight \nBoth of her beauty, and submissive charms, \nSmiled with superiour love, as Jupiter \nOn Juno smiles, when he impregns the clouds \nThat shed Mayflowers; and pressed her matron lip \nWith kisses pure:  Aside the Devil turned \nFor envy; yet with jealous leer malign \nEyed them askance, and to himself thus plained. \nSight hateful, sight tormenting! thus these two, \nImparadised in one another's arms, \nThe happier Eden, shall enjoy their fill \nOf bliss on bliss; while I to Hell am thrust, \nWhere neither joy nor love, but fierce desire, \nAmong our other torments not the least, \nStill unfulfilled with pain of longing pines. \nYet let me not forget what I have gained \nFrom their own mouths:  All is not theirs, it seems; \nOne fatal tree there stands, of knowledge called, \nForbidden them to taste:  Knowledge forbidden \nSuspicious, reasonless.  Why should their Lord \nEnvy them that?  Can it be sin to know? \nCan it be death?  And do they only stand \nBy ignorance?  Is that their happy state, \nThe proof of their obedience and their faith? \nO fair foundation laid whereon to build \nTheir ruin! hence I will excite their minds \nWith more desire to know, and to reject \nEnvious commands, invented with design \nTo keep them low, whom knowledge might exalt \nEqual with Gods: aspiring to be such, \nThey taste and die:  What likelier can ensue \nBut first with narrow search I must walk round \nThis garden, and no corner leave unspied; \nA chance but chance may lead where I may meet \nSome wandering Spirit of Heaven by fountain side, \nOr in thick shade retired, from him to draw \nWhat further would be learned.  Live while ye may, \nYet happy pair; enjoy, till I return, \nShort pleasures, for long woes are to succeed! \nSo saying, his proud step he scornful turned, \nBut with sly circumspection, and began \nThrough wood, through waste, o'er hill, o'er dale, his roam \nMean while in utmost longitude, where Heaven \nWith earth and ocean meets, the setting sun \nSlowly descended, and with right aspect \nAgainst the eastern gate of Paradise \nLevelled his evening rays:  It was a rock \nOf alabaster, piled up to the clouds, \nConspicuous far, winding with one ascent \nAccessible from earth, one entrance high; \nThe rest was craggy cliff, that overhung \nStill as it rose, impossible to climb. \nBetwixt these rocky pillars Gabriel sat, \nChief of the angelick guards, awaiting night; \nAbout him exercised heroick games \nThe unarmed youth of Heaven, but nigh at hand \nCelestial armoury, shields, helms, and spears, \nHung high with diamond flaming, and with gold. \nThither came Uriel, gliding through the even \nOn a sun-beam, swift as a shooting star \nIn autumn thwarts the night, when vapours fired \nImpress the air, and shows the mariner \nFrom what point of his compass to beware \nImpetuous winds:  He thus began in haste. \nGabriel, to thee thy course by lot hath given \nCharge and strict watch, that to this happy place \nNo evil thing approach or enter in. \nThis day at highth of noon came to my sphere \nA Spirit, zealous, as he seemed, to know \nMore of the Almighty's works, and chiefly Man, \nGod's latest image:  I described his way \nBent all on speed, and marked his aery gait; \nBut in the mount that lies from Eden north, \nWhere he first lighted, soon discerned his looks \nAlien from Heaven, with passions foul obscured: \nMine eye pursued him still, but under shade \nLost sight of him:  One of the banished crew, \nI fear, hath ventured from the deep, to raise \nNew troubles; him thy care must be to find. \nTo whom the winged warriour thus returned. \nUriel, no wonder if thy perfect sight, \nAmid the sun's bright circle where thou sitst, \nSee far and wide:  In at this gate none pass \nThe vigilance here placed, but such as come \nWell known from Heaven; and since meridian hour \nNo creature thence:  If Spirit of other sort, \nSo minded, have o'er-leaped these earthly bounds \nOn purpose, hard thou knowest it to exclude \nSpiritual substance with corporeal bar. \nBut if within the circuit of these walks, \nIn whatsoever shape he lurk, of whom \nThou tellest, by morrow dawning I shall know. \nSo promised he; and Uriel to his charge \nReturned on that bright beam, whose point now raised \nBore him slope downward to the sun now fallen \nBeneath the Azores; whether the prime orb, \nIncredible how swift, had thither rolled \nDiurnal, or this less volubil earth, \nBy shorter flight to the east, had left him there \nArraying with reflected purple and gold \nThe clouds that on his western throne attend. \nNow came still Evening on, and Twilight gray \nHad in her sober livery all things clad; \nSilence accompanied; for beast and bird, \nThey to their grassy couch, these to their nests \nWere slunk, all but the wakeful nightingale; \nShe all night long her amorous descant sung; \nSilence was pleased:  Now glowed the firmament \nWith living sapphires:  Hesperus, that led \nThe starry host, rode brightest, till the moon, \nRising in clouded majesty, at length \nApparent queen unveiled her peerless light, \nAnd o'er the dark her silver mantle threw. \nWhen Adam thus to Eve.  Fair Consort, the hour \nOf night, and all things now retired to rest, \nMind us of like repose; since God hath set \nLabour and rest, as day and night, to men \nSuccessive; and the timely dew of sleep, \nNow falling with soft slumbrous weight, inclines \nOur eye-lids:  Other creatures all day long \nRove idle, unemployed, and less need rest; \nMan hath his daily work of body or mind \nAppointed, which declares his dignity, \nAnd the regard of Heaven on all his ways; \nWhile other animals unactive range, \nAnd of their doings God takes no account. \nTo-morrow, ere fresh morning streak the east \nWith first approach of light, we must be risen, \nAnd at our pleasant labour, to reform \nYon flowery arbours, yonder alleys green, \nOur walk at noon, with branches overgrown, \nThat mock our scant manuring, and require \nMore hands than ours to lop their wanton growth: \nThose blossoms also, and those dropping gums, \nThat lie bestrown, unsightly and unsmooth, \nAsk riddance, if we mean to tread with ease; \nMean while, as Nature wills, night bids us rest. \nTo whom thus Eve, with perfect beauty adorned \nMy Author and Disposer, what thou bidst \nUnargued I obey:  So God ordains; \nGod is thy law, thou mine:  To know no more \nIs woman's happiest knowledge, and her praise. \nWith thee conversing I forget all time; \nAll seasons, and their change, all please alike. \nSweet is the breath of Morn, her rising sweet, \nWith charm of earliest birds:  pleasant the sun, \nWhen first on this delightful land he spreads \nHis orient beams, on herb, tree, fruit, and flower, \nGlistering with dew; fragrant the fertile earth \nAfter soft showers; and sweet the coming on \nOf grateful Evening mild; then silent Night, \nWith this her solemn bird, and this fair moon, \nAnd these the gems of Heaven, her starry train: \nBut neither breath of Morn, when she ascends \nWith charm of earliest birds; nor rising sun \nOn this delightful land; nor herb, fruit, flower, \nGlistering with dew; nor fragrance after showers; \nNor grateful Evening mild; nor silent Night, \nWith this her solemn bird, nor walk by moon, \nOr glittering star-light, without thee is sweet. \nBut wherefore all night long shine these? for whom \nThis glorious sight, when sleep hath shut all eyes? \nTo whom our general ancestor replied. \nDaughter of God and Man, accomplished Eve, \nThese have their course to finish round the earth, \nBy morrow evening, and from land to land \nIn order, though to nations yet unborn, \nMinistring light prepared, they set and rise; \nLest total Darkness should by night regain \nHer old possession, and extinguish life \nIn Nature and all things; which these soft fires \nNot only enlighten, but with kindly heat \nOf various influence foment and warm, \nTemper or nourish, or in part shed down \nTheir stellar virtue on all kinds that grow \nOn earth, made hereby apter to receive \nPerfection from the sun's more potent ray. \nThese then, though unbeheld in deep of night, \nShine not in vain; nor think, though men were none, \nThat Heaven would want spectators, God want praise: \nMillions of spiritual creatures walk the earth \nUnseen, both when we wake, and when we sleep: \nAll these with ceaseless praise his works behold \nBoth day and night:  How often from the steep \nOf echoing hill or thicket have we heard \nCelestial voices to the midnight air, \nSole, or responsive each to others note, \nSinging their great Creator? oft in bands \nWhile they keep watch, or nightly rounding walk, \nWith heavenly touch of instrumental sounds \nIn full harmonick number joined, their songs \nDivide the night, and lift our thoughts to Heaven. \nThus talking, hand in hand alone they passed \nOn to their blissful bower: it was a place \nChosen by the sovran Planter, when he framed \nAll things to Man's delightful use; the roof \nOf thickest covert was inwoven shade \nLaurel and myrtle, and what higher grew \nOf firm and fragrant leaf; on either side \nAcanthus, and each odorous bushy shrub, \nFenced up the verdant wall; each beauteous flower, \nIris all hues, roses, and jessamin, \nReared high their flourished heads between, and wrought \nMosaick; underfoot the violet, \nCrocus, and hyacinth, with rich inlay \nBroidered the ground, more coloured than with stone \nOf costliest emblem:  Other creature here, \nBird, beast, insect, or worm, durst enter none, \nSuch was their awe of Man.  In shadier bower \nMore sacred and sequestered, though but feigned, \nPan or Sylvanus never slept, nor Nymph \nNor Faunus haunted.  Here, in close recess, \nWith flowers, garlands, and sweet-smelling herbs, \nEspoused Eve decked first her nuptial bed; \nAnd heavenly quires the hymenaean sung, \nWhat day the genial Angel to our sire \nBrought her in naked beauty more adorned, \nMore lovely, than Pandora, whom the Gods \nEndowed with all their gifts, and O! too like \nIn sad event, when to the unwiser son \nOf Japhet brought by Hermes, she ensnared \nMankind with her fair looks, to be avenged \nOn him who had stole Jove's authentick fire. \nThus, at their shady lodge arrived, both stood, \nBoth turned, and under open sky adored \nThe God that made both sky, air, earth, and heaven, \nWhich they beheld, the moon's resplendent globe, \nAnd starry pole:  Thou also madest the night, \nMaker Omnipotent, and thou the day, \nWhich we, in our appointed work employed, \nHave finished, happy in our mutual help \nAnd mutual love, the crown of all our bliss \nOrdained by thee; and this delicious place \nFor us too large, where thy abundance wants \nPartakers, and uncropt falls to the ground. \nBut thou hast promised from us two a race \nTo fill the earth, who shall with us extol \nThy goodness infinite, both when we wake, \nAnd when we seek, as now, thy gift of sleep. \nThis said unanimous, and other rites \nObserving none, but adoration pure \nWhich God likes best, into their inmost bower \nHanded they went; and, eased the putting off \nThese troublesome disguises which we wear, \nStraight side by side were laid; nor turned, I ween, \nAdam from his fair spouse, nor Eve the rites \nMysterious of connubial love refused: \nWhatever hypocrites austerely talk \nOf purity, and place, and innocence, \nDefaming as impure what God declares \nPure, and commands to some, leaves free to all. \nOur Maker bids encrease; who bids abstain \nBut our Destroyer, foe to God and Man? \nHail, wedded Love, mysterious law, true source \nOf human offspring, sole propriety \nIn Paradise of all things common else! \nBy thee adulterous Lust was driven from men \nAmong the bestial herds to range; by thee \nFounded in reason, loyal, just, and pure, \nRelations dear, and all the charities \nOf father, son, and brother, first were known. \nFar be it, that I should write thee sin or blame, \nOr think thee unbefitting holiest place, \nPerpetual fountain of domestick sweets, \nWhose bed is undefiled and chaste pronounced, \nPresent, or past, as saints and patriarchs used. \nHere Love his golden shafts employs, here lights \nHis constant lamp, and waves his purple wings, \nReigns here and revels; not in the bought smile \nOf harlots, loveless, joyless, unendeared, \nCasual fruition; nor in court-amours, \nMixed dance, or wanton mask, or midnight ball, \nOr serenate, which the starved lover sings \nTo his proud fair, best quitted with disdain. \nThese, lulled by nightingales, embracing slept, \nAnd on their naked limbs the flowery roof \nShowered roses, which the morn repaired.  Sleep on, \nBlest pair; and O!yet happiest, if ye seek \nNo happier state, and know to know no more. \nNow had night measured with her shadowy cone \nHalf way up hill this vast sublunar vault, \nAnd from their ivory port the Cherubim, \nForth issuing at the accustomed hour, stood armed \nTo their night watches in warlike parade; \nWhen Gabriel to his next in power thus spake. \nUzziel, half these draw off, and coast the south \nWith strictest watch; these other wheel the north; \nOur circuit meets full west.  As flame they part, \nHalf wheeling to the shield, half to the spear. \nFrom these, two strong and subtle Spirits he called \nThat near him stood, and gave them thus in charge. \nIthuriel and Zephon, with winged speed \nSearch through this garden, leave unsearched no nook; \nBut chiefly where those two fair creatures lodge, \nNow laid perhaps asleep, secure of harm. \nThis evening from the sun's decline arrived, \nWho tells of some infernal Spirit seen \nHitherward bent (who could have thought?) escaped \nThe bars of Hell, on errand bad no doubt: \nSuch, where ye find, seise fast, and hither bring. \nSo saying, on he led his radiant files, \nDazzling the moon; these to the bower direct \nIn search of whom they sought:  Him there they found \nSquat like a toad, close at the ear of Eve, \nAssaying by his devilish art to reach \nThe organs of her fancy, and with them forge \nIllusions, as he list, phantasms and dreams; \nOr if, inspiring venom, he might taint \nThe animal spirits, that from pure blood arise \nLike gentle breaths from rivers pure, thence raise \nAt least distempered, discontented thoughts, \nVain hopes, vain aims, inordinate desires, \nBlown up with high conceits ingendering pride. \nHim thus intent Ithuriel with his spear \nTouched lightly; for no falshood can endure \nTouch of celestial temper, but returns \nOf force to its own likeness:  Up he starts \nDiscovered and surprised.  As when a spark \nLights on a heap of nitrous powder, laid \nFit for the tun some magazine to store \nAgainst a rumoured war, the smutty grain, \nWith sudden blaze diffused, inflames the air; \nSo started up in his own shape the Fiend. \nBack stept those two fair Angels, half amazed \nSo sudden to behold the grisly king; \nYet thus, unmoved with fear, accost him soon. \nWhich of those rebel Spirits adjudged to Hell \nComest thou, escaped thy prison? and, transformed, \nWhy sat'st thou like an enemy in wait, \nHere watching at the head of these that sleep? \nKnow ye not then said Satan, filled with scorn, \nKnow ye not me? ye knew me once no mate \nFor you, there sitting where ye durst not soar: \nNot to know me argues yourselves unknown, \nThe lowest of your throng; or, if ye know, \nWhy ask ye, and superfluous begin \nYour message, like to end as much in vain? \nTo whom thus Zephon, answering scorn with scorn. \nThink not, revolted Spirit, thy shape the same, \nOr undiminished brightness to be known, \nAs when thou stoodest in Heaven upright and pure; \nThat glory then, when thou no more wast good, \nDeparted from thee; and thou resemblest now \nThy sin and place of doom obscure and foul. \nBut come, for thou, be sure, shalt give account \nTo him who sent us, whose charge is to keep \nThis place inviolable, and these from harm. \nSo spake the Cherub; and his grave rebuke, \nSevere in youthful beauty, added grace \nInvincible:  Abashed the Devil stood, \nAnd felt how awful goodness is, and saw \nVirtue in her shape how lovely; saw, and pined \nHis loss; but chiefly to find here observed \nHis lustre visibly impaired; yet seemed \nUndaunted.  If I must contend, said he, \nBest with the best, the sender, not the sent, \nOr all at once; more glory will be won, \nOr less be lost.  Thy fear, said Zephon bold, \nWill save us trial what the least can do \nSingle against thee wicked, and thence weak. \nThe Fiend replied not, overcome with rage; \nBut, like a proud steed reined, went haughty on, \nChamping his iron curb:  To strive or fly \nHe held it vain; awe from above had quelled \nHis heart, not else dismayed.  Now drew they nigh \nThe western point, where those half-rounding guards \nJust met, and closing stood in squadron joined, \nA waiting next command.  To whom their Chief, \nGabriel, from the front thus called aloud. \nO friends!  I hear the tread of nimble feet \nHasting this way, and now by glimpse discern \nIthuriel and Zephon through the shade; \nAnd with them comes a third of regal port, \nBut faded splendour wan; who by his gait \nAnd fierce demeanour seems the Prince of Hell, \nNot likely to part hence without contest; \nStand firm, for in his look defiance lours. \nHe scarce had ended, when those two approached, \nAnd brief related whom they brought, where found, \nHow busied, in what form and posture couched. \nTo whom with stern regard thus Gabriel spake. \nWhy hast thou, Satan, broke the bounds prescribed \nTo thy transgressions, and disturbed the charge \nOf others, who approve not to transgress \nBy thy example, but have power and right \nTo question thy bold entrance on this place; \nEmployed, it seems, to violate sleep, and those \nWhose dwelling God hath planted here in bliss! \nTo whom thus Satan with contemptuous brow. \nGabriel? thou hadst in Heaven the esteem of wise, \nAnd such I held thee; but this question asked \nPuts me in doubt.  Lives there who loves his pain! \nWho would not, finding way, break loose from Hell, \nThough thither doomed!  Thou wouldst thyself, no doubt \nAnd boldly venture to whatever place \nFarthest from pain, where thou mightst hope to change \nTorment with ease, and soonest recompense \nDole with delight, which in this place I sought; \nTo thee no reason, who knowest only good, \nBut evil hast not tried: and wilt object \nHis will who bounds us!  Let him surer bar \nHis iron gates, if he intends our stay \nIn that dark durance:  Thus much what was asked. \nThe rest is true, they found me where they say; \nBut that implies not violence or harm. \nThus he in scorn.  The warlike Angel moved, \nDisdainfully half smiling, thus replied. \nO loss of one in Heaven to judge of wise \nSince Satan fell, whom folly overthrew, \nAnd now returns him from his prison 'scaped, \nGravely in doubt whether to hold them wise \nOr not, who ask what boldness brought him hither \nUnlicensed from his bounds in Hell prescribed; \nSo wise he judges it to fly from pain \nHowever, and to 'scape his punishment! \nSo judge thou still, presumptuous! till the wrath, \nWhich thou incurrest by flying, meet thy flight \nSevenfold, and scourge that wisdom back to Hell, \nWhich taught thee yet no better, that no pain \nCan equal anger infinite provoked. \nBut wherefore thou alone? wherefore with thee \nCame not all hell broke loose? or thou than they \nLess hardy to endure?  Courageous Chief! \nThe first in flight from pain! hadst thou alleged \nTo thy deserted host this cause of flight, \nThou surely hadst not come sole fugitive. \nTo which the Fiend thus answered, frowning stern. \nNot that I less endure, or shrink from pain, \nInsulting Angel! well thou knowest I stood \nThy fiercest, when in battle to thy aid \nThe blasting vollied thunder made all speed, \nAnd seconded thy else not dreaded spear. \nBut still thy words at random, as before, \nArgue thy inexperience what behoves \nFrom hard assays and ill successes past \nA faithful leader, not to hazard all \nThrough ways of danger by himself untried: \nI, therefore, I alone first undertook \nTo wing the desolate abyss, and spy \nThis new created world, whereof in Hell \nFame is not silent, here in hope to find \nBetter abode, and my afflicted Powers \nTo settle here on earth, or in mid air; \nThough for possession put to try once more \nWhat thou and thy gay legions dare against; \nWhose easier business were to serve their Lord \nHigh up in Heaven, with songs to hymn his throne, \nAnd practised distances to cringe, not fight, \nTo whom the warriour Angel soon replied. \nTo say and straight unsay, pretending first \nWise to fly pain, professing next the spy, \nArgues no leader but a liear traced, \nSatan, and couldst thou faithful add?  O name, \nO sacred name of faithfulness profaned! \nFaithful to whom? to thy rebellious crew? \nArmy of Fiends, fit body to fit head. \nWas this your discipline and faith engaged, \nYour military obedience, to dissolve \nAllegiance to the acknowledged Power supreme? \nAnd thou, sly hypocrite, who now wouldst seem \nPatron of liberty, who more than thou \nOnce fawned, and cringed, and servily adored \nHeaven's awful Monarch? wherefore, but in hope \nTo dispossess him, and thyself to reign? \nBut mark what I arreed thee now, Avant; \nFly neither whence thou fledst!  If from this hour \nWithin these hallowed limits thou appear, \nBack to the infernal pit I drag thee chained, \nAnd seal thee so, as henceforth not to scorn \nThe facile gates of Hell too slightly barred. \nSo threatened he; but Satan to no threats \nGave heed, but waxing more in rage replied. \nThen when I am thy captive talk of chains, \nProud limitary Cherub! but ere then \nFar heavier load thyself expect to feel \nFrom my prevailing arm, though Heaven's King \nRide on thy wings, and thou with thy compeers, \nUs'd to the yoke, drawest his triumphant wheels \nIn progress through the road of Heaven star-paved. \nWhile thus he spake, the angelick squadron bright \nTurned fiery red, sharpening in mooned horns \nTheir phalanx, and began to hem him round \nWith ported spears, as thick as when a field \nOf Ceres ripe for harvest waving bends \nHer bearded grove of ears, which way the wind \nSways them; the careful plowman doubting stands, \nLeft on the threshing floor his hopeless sheaves \nProve chaff.  On the other side, Satan, alarmed, \nCollecting all his might, dilated stood, \nLike Teneriff or Atlas, unremoved: \nHis stature reached the sky, and on his crest \nSat Horrour plumed; nor wanted in his grasp \nWhat seemed both spear and shield:  Now dreadful deeds \nMight have ensued, nor only Paradise \nIn this commotion, but the starry cope \nOf Heaven perhaps, or all the elements \nAt least had gone to wrack, disturbed and torn \nWith violence of this conflict, had not soon \nThe Eternal, to prevent such horrid fray, \nHung forth in Heaven his golden scales, yet seen \nBetwixt Astrea and the Scorpion sign, \nWherein all things created first he weighed, \nThe pendulous round earth with balanced air \nIn counterpoise, now ponders all events, \nBattles and realms:  In these he put two weights, \nThe sequel each of parting and of fight: \nThe latter quick up flew, and kicked the beam, \nWhich Gabriel spying, thus bespake the Fiend. \nSatan, I know thy strength, and thou knowest mine; \nNeither our own, but given:  What folly then \nTo boast what arms can do? since thine no more \nThan Heaven permits, nor mine, though doubled now \nTo trample thee as mire:  For proof look up, \nAnd read thy lot in yon celestial sign; \nWhere thou art weighed, and shown how light, how weak, \nIf thou resist.  The Fiend looked up, and knew \nHis mounted scale aloft:  Nor more;but fled \nMurmuring, and with him fled the shades of night. \n \n \n \nBook V                                                           \n \n \nNow Morn, her rosy steps in the eastern clime \nAdvancing, sowed the earth with orient pearl, \nWhen Adam waked, so customed; for his sleep \nWas aery-light, from pure digestion bred, \nAnd temperate vapours bland, which the only sound \nOf leaves and fuming rills, Aurora's fan, \nLightly dispersed, and the shrill matin song \nOf birds on every bough; so much the more \nHis wonder was to find unwakened Eve \nWith tresses discomposed, and glowing cheek, \nAs through unquiet rest:  He, on his side \nLeaning half raised, with looks of cordial love \nHung over her enamoured, and beheld \nBeauty, which, whether waking or asleep, \nShot forth peculiar graces; then with voice \nMild, as when Zephyrus on Flora breathes, \nHer hand soft touching, whispered thus.  Awake, \nMy fairest, my espoused, my latest found, \nHeaven's last best gift, my ever new delight! \nAwake:  The morning shines, and the fresh field \nCalls us; we lose the prime, to mark how spring \nOur tender plants, how blows the citron grove, \nWhat drops the myrrh, and what the balmy reed, \nHow nature paints her colours, how the bee \nSits on the bloom extracting liquid sweet. \nSuch whispering waked her, but with startled eye \nOn Adam, whom embracing, thus she spake. \nO sole in whom my thoughts find all repose, \nMy glory, my perfection! glad I see \nThy face, and morn returned; for I this night \n(Such night till this I never passed) have dreamed, \nIf dreamed, not, as I oft am wont, of thee, \nWorks of day past, or morrow's next design, \nBut of offence and trouble, which my mind \nKnew never till this irksome night:  Methought, \nClose at mine ear one called me forth to walk \nWith gentle voice;  I thought it thine: It said, \n'Why sleepest thou, Eve? now is the pleasant time, \n'The cool, the silent, save where silence yields \n'To the night-warbling bird, that now awake \n'Tunes sweetest his love-laboured song; now reigns \n'Full-orbed the moon, and with more pleasing light \n'Shadowy sets off the face of things; in vain, \n'If none regard; Heaven wakes with all his eyes, \n'Whom to behold but thee, Nature's desire? \n'In whose sight all things joy, with ravishment \n'Attracted by thy beauty still to gaze.' \nI rose as at thy call, but found thee not; \nTo find thee I directed then my walk; \nAnd on, methought, alone I passed through ways \nThat brought me on a sudden to the tree \nOf interdicted knowledge: fair it seemed, \nMuch fairer to my fancy than by day: \nAnd, as I wondering looked, beside it stood \nOne shaped and winged like one of those from Heaven \nBy us oft seen; his dewy locks distilled \nAmbrosia; on that tree he also gazed; \nAnd 'O fair plant,' said he, 'with fruit surcharged, \n'Deigns none to ease thy load, and taste thy sweet, \n'Nor God, nor Man?  Is knowledge so despised? \n'Or envy, or what reserve forbids to taste? \n'Forbid who will, none shall from me withhold \n'Longer thy offered good; why else set here? \nThis said, he paused not, but with venturous arm \nHe plucked, he tasted; me damp horrour chilled \nAt such bold words vouched with a deed so bold: \nBut he thus, overjoyed; 'O fruit divine, \n'Sweet of thyself, but much more sweet thus cropt, \n'Forbidden here, it seems, as only fit \n'For Gods, yet able to make Gods of Men: \n'And why not Gods of Men; since good, the more \n'Communicated, more abundant grows, \n'The author not impaired, but honoured more? \n'Here, happy creature, fair angelick Eve! \n'Partake thou also; happy though thou art, \n'Happier thou mayest be, worthier canst not be: \n'Taste this, and be henceforth among the Gods \n'Thyself a Goddess, not to earth confined, \n'But sometimes in the air, as we, sometimes \n'Ascend to Heaven, by merit thine, and see \n'What life the Gods live there, and such live thou!' \nSo saying, he drew nigh, and to me held, \nEven to my mouth of that same fruit held part \nWhich he had plucked; the pleasant savoury smell \nSo quickened appetite, that I, methought, \nCould not but taste.  Forthwith up to the clouds \nWith him I flew, and underneath beheld \nThe earth outstretched immense, a prospect wide \nAnd various:  Wondering at my flight and change \nTo this high exaltation; suddenly \nMy guide was gone, and I, methought, sunk down, \nAnd fell asleep; but O, how glad I waked \nTo find this but a dream!  Thus Eve her night \nRelated, and thus Adam answered sad. \nBest image of myself, and dearer half, \nThe trouble of thy thoughts this night in sleep \nAffects me equally; nor can I like \nThis uncouth dream, of evil sprung, I fear; \nYet evil whence? in thee can harbour none, \nCreated pure.  But know that in the soul \nAre many lesser faculties, that serve \nReason as chief; among these Fancy next \nHer office holds; of all external things \nWhich the five watchful senses represent, \nShe forms imaginations, aery shapes, \nWhich Reason, joining or disjoining, frames \nAll what we affirm or what deny, and call \nOur knowledge or opinion; then retires \nInto her private cell, when nature rests. \nOft in her absence mimick Fancy wakes \nTo imitate her; but, misjoining shapes, \nWild work produces oft, and most in dreams; \nIll matching words and deeds long past or late. \nSome such resemblances, methinks, I find \nOf our last evening's talk, in this thy dream, \nBut with addition strange; yet be not sad. \nEvil into the mind of God or Man \nMay come and go, so unreproved, and leave \nNo spot or blame behind:  Which gives me hope \nThat what in sleep thou didst abhor to dream, \nWaking thou never will consent to do. \nBe not disheartened then, nor cloud those looks, \nThat wont to be more cheerful and serene, \nThan when fair morning first smiles on the world; \nAnd let us to our fresh employments rise \nAmong the groves, the fountains, and the flowers \nThat open now their choisest bosomed smells, \nReserved from night, and kept for thee in store. \nSo cheered he his fair spouse, and she was cheered; \nBut silently a gentle tear let fall \nFrom either eye, and wiped them with her hair; \nTwo other precious drops that ready stood, \nEach in their crystal sluice, he ere they fell \nKissed, as the gracious signs of sweet remorse \nAnd pious awe, that feared to have offended. \nSo all was cleared, and to the field they haste. \nBut first, from under shady arborous roof \nSoon as they forth were come to open sight \nOf day-spring, and the sun, who, scarce up-risen, \nWith wheels yet hovering o'er the ocean-brim, \nShot parallel to the earth his dewy ray, \nDiscovering in wide landskip all the east \nOf Paradise and Eden's happy plains, \nLowly they bowed adoring, and began \nTheir orisons, each morning duly paid \nIn various style; for neither various style \nNor holy rapture wanted they to praise \nTheir Maker, in fit strains pronounced, or sung \nUnmeditated; such prompt eloquence \nFlowed from their lips, in prose or numerous verse, \nMore tuneable than needed lute or harp \nTo add more sweetness; and they thus began. \nThese are thy glorious works, Parent of good, \nAlmighty!  Thine this universal frame, \nThus wonderous fair;  Thyself how wonderous then! \nUnspeakable, who sitst above these heavens \nTo us invisible, or dimly seen \nIn these thy lowest works; yet these declare \nThy goodness beyond thought, and power divine. \nSpeak, ye who best can tell, ye sons of light, \nAngels; for ye behold him, and with songs \nAnd choral symphonies, day without night, \nCircle his throne rejoicing; ye in Heaven \nOn Earth join all ye Creatures to extol \nHim first, him last, him midst, and without end. \nFairest of stars, last in the train of night, \nIf better thou belong not to the dawn, \nSure pledge of day, that crownest the smiling morn \nWith thy bright circlet, praise him in thy sphere, \nWhile day arises, that sweet hour of prime. \nThou Sun, of this great world both eye and soul, \nAcknowledge him thy greater; sound his praise \nIn thy eternal course, both when thou climbest, \nAnd when high noon hast gained, and when thou fallest. \nMoon, that now meetest the orient sun, now flyest, \nWith the fixed Stars, fixed in their orb that flies; \nAnd ye five other wandering Fires, that move \nIn mystick dance not without song, resound \nHis praise, who out of darkness called up light. \nAir, and ye Elements, the eldest birth \nOf Nature's womb, that in quaternion run \nPerpetual circle, multiform; and mix \nAnd nourish all things; let your ceaseless change \nVary to our great Maker still new praise. \nYe Mists and Exhalations, that now rise \nFrom hill or steaming lake, dusky or gray, \nTill the sun paint your fleecy skirts with gold, \nIn honour to the world's great Author rise; \nWhether to deck with clouds the uncoloured sky, \nOr wet the thirsty earth with falling showers, \nRising or falling still advance his praise. \nHis praise, ye Winds, that from four quarters blow, \nBreathe soft or loud; and, wave your tops, ye Pines, \nWith every plant, in sign of worship wave. \nFountains, and ye that warble, as ye flow, \nMelodious murmurs, warbling tune his praise. \nJoin voices, all ye living Souls:  Ye Birds, \nThat singing up to Heaven-gate ascend, \nBear on your wings and in your notes his praise. \nYe that in waters glide, and ye that walk \nThe earth, and stately tread, or lowly creep; \nWitness if I be silent, morn or even, \nTo hill, or valley, fountain, or fresh shade, \nMade vocal by my song, and taught his praise. \nHail, universal Lord, be bounteous still \nTo give us only good; and if the night \nHave gathered aught of evil, or concealed, \nDisperse it, as now light dispels the dark! \nSo prayed they innocent, and to their thoughts \nFirm peace recovered soon, and wonted calm. \nOn to their morning's rural work they haste, \nAmong sweet dews and flowers; where any row \nOf fruit-trees over-woody reached too far \nTheir pampered boughs, and needed hands to check \nFruitless embraces: or they led the vine \nTo wed her elm; she, spoused, about him twines \nHer marriageable arms, and with him brings \nHer dower, the adopted clusters, to adorn \nHis barren leaves.  Them thus employed beheld \nWith pity Heaven's high King, and to him called \nRaphael, the sociable Spirit, that deigned \nTo travel with Tobias, and secured \nHis marriage with the seventimes-wedded maid. \nRaphael, said he, thou hearest what stir on Earth \nSatan, from Hell 'scaped through the darksome gulf, \nHath raised in Paradise; and how disturbed \nThis night the human pair; how he designs \nIn them at once to ruin all mankind. \nGo therefore, half this day as friend with friend \nConverse with Adam, in what bower or shade \nThou findest him from the heat of noon retired, \nTo respite his day-labour with repast, \nOr with repose; and such discourse bring on, \nAs may advise him of his happy state, \nHappiness in his power left free to will, \nLeft to his own free will, his will though free, \nYet mutable; whence warn him to beware \nHe swerve not, too secure:  Tell him withal \nHis danger, and from whom; what enemy, \nLate fallen himself from Heaven, is plotting now \nThe fall of others from like state of bliss; \nBy violence? no, for that shall be withstood; \nBut by deceit and lies:  This let him know, \nLest, wilfully transgressing, he pretend \nSurprisal, unadmonished, unforewarned. \nSo spake the Eternal Father, and fulfilled \nAll justice:  Nor delayed the winged Saint \nAfter his charge received; but from among \nThousand celestial Ardours, where he stood \nVeiled with his gorgeous wings, up springing light, \nFlew through the midst of Heaven; the angelick quires, \nOn each hand parting, to his speed gave way \nThrough all the empyreal road; till, at the gate \nOf Heaven arrived, the gate self-opened wide \nOn golden hinges turning, as by work \nDivine the sovran Architect had framed. \nFrom hence no cloud, or, to obstruct his sight, \nStar interposed, however small he sees, \nNot unconformed to other shining globes, \nEarth, and the garden of God, with cedars crowned \nAbove all hills.  As when by night the glass \nOf Galileo, less assured, observes \nImagined lands and regions in the moon: \nOr pilot, from amidst the Cyclades \nDelos or Samos first appearing, kens \nA cloudy spot.  Down thither prone in flight \nHe speeds, and through the vast ethereal sky \nSails between worlds and worlds, with steady wing \nNow on the polar winds, then with quick fan \nWinnows the buxom air; till, within soar \nOf towering eagles, to all the fowls he seems \nA phoenix, gazed by all as that sole bird, \nWhen, to enshrine his reliques in the Sun's \nBright temple, to Egyptian Thebes he flies. \nAt once on the eastern cliff of Paradise \nHe lights, and to his proper shape returns \nA Seraph winged:  Six wings he wore, to shade \nHis lineaments divine; the pair that clad \nEach shoulder broad, came mantling o'er his breast \nWith regal ornament; the middle pair \nGirt like a starry zone his waist, and round \nSkirted his loins and thighs with downy gold \nAnd colours dipt in Heaven; the third his feet \nShadowed from either heel with feathered mail, \nSky-tinctured grain.  Like Maia's son he stood, \nAnd shook his plumes, that heavenly fragrance filled \nThe circuit wide.  Straight knew him all the bands \nOf Angels under watch; and to his state, \nAnd to his message high, in honour rise; \nFor on some message high they guessed him bound. \nTheir glittering tents he passed, and now is come \nInto the blissful field, through groves of myrrh, \nAnd flowering odours, cassia, nard, and balm; \nA wilderness of sweets; for Nature here \nWantoned as in her prime, and played at will \nHer virgin fancies pouring forth more sweet, \nWild above rule or art, enormous bliss. \nHim through the spicy forest onward come \nAdam discerned, as in the door he sat \nOf his cool bower, while now the mounted sun \nShot down direct his fervid rays to warm \nEarth's inmost womb, more warmth than Adam needs: \nAnd Eve within, due at her hour prepared \nFor dinner savoury fruits, of taste to please \nTrue appetite, and not disrelish thirst \nOf nectarous draughts between, from milky stream, \nBerry or grape:  To whom thus Adam called. \nHaste hither, Eve, and worth thy sight behold \nEastward among those trees, what glorious shape \nComes this way moving; seems another morn \nRisen on mid-noon; some great behest from Heaven \nTo us perhaps he brings, and will vouchsafe \nThis day to be our guest.  But go with speed, \nAnd, what thy stores contain, bring forth, and pour \nAbundance, fit to honour and receive \nOur heavenly stranger:  Well we may afford \nOur givers their own gifts, and large bestow \nFrom large bestowed, where Nature multiplies \nHer fertile growth, and by disburthening grows \nMore fruitful, which instructs us not to spare. \nTo whom thus Eve.  Adam, earth's hallowed mould, \nOf God inspired! small store will serve, where store, \nAll seasons, ripe for use hangs on the stalk; \nSave what by frugal storing firmness gains \nTo nourish, and superfluous moist consumes: \nBut I will haste, and from each bough and brake, \nEach plant and juciest gourd, will pluck such choice \nTo entertain our Angel-guest, as he \nBeholding shall confess, that here on Earth \nGod hath dispensed his bounties as in Heaven. \nSo saying, with dispatchful looks in haste \nShe turns, on hospitable thoughts intent \nWhat choice to choose for delicacy best, \nWhat order, so contrived as not to mix \nTastes, not well joined, inelegant, but bring \nTaste after taste upheld with kindliest change; \nBestirs her then, and from each tender stalk \nWhatever Earth, all-bearing mother, yields \nIn India East or West, or middle shore \nIn Pontus or the Punick coast, or where \nAlcinous reigned, fruit of all kinds, in coat \nRough, or smooth rind, or bearded husk, or shell, \nShe gathers, tribute large, and on the board \nHeaps with unsparing hand; for drink the grape \nShe crushes, inoffensive must, and meaths \nFrom many a berry, and from sweet kernels pressed \nShe tempers dulcet creams; nor these to hold \nWants her fit vessels pure; then strows the ground \nWith rose and odours from the shrub unfumed. \nMean while our primitive great sire, to meet \nHis God-like guest, walks forth, without more train \nAccompanied than with his own complete \nPerfections; in himself was all his state, \nMore solemn than the tedious pomp that waits \nOn princes, when their rich retinue long \nOf horses led, and grooms besmeared with gold, \nDazzles the croud, and sets them all agape. \nNearer his presence Adam, though not awed, \nYet with submiss approach and reverence meek, \nAs to a superiour nature bowing low, \nThus said.  Native of Heaven, for other place \nNone can than Heaven such glorious shape contain; \nSince, by descending from the thrones above, \nThose happy places thou hast deigned a while \nTo want, and honour these, vouchsafe with us \nTwo only, who yet by sovran gift possess \nThis spacious ground, in yonder shady bower \nTo rest; and what the garden choicest bears \nTo sit and taste, till this meridian heat \nBe over, and the sun more cool decline. \nWhom thus the angelick Virtue answered mild. \nAdam, I therefore came; nor art thou such \nCreated, or such place hast here to dwell, \nAs may not oft invite, though Spirits of Heaven, \nTo visit thee; lead on then where thy bower \nO'ershades; for these mid-hours, till evening rise, \nI have at will.  So to the sylvan lodge \nThey came, that like Pomona's arbour smiled, \nWith flowerets decked, and fragrant smells; but Eve, \nUndecked save with herself, more lovely fair \nThan Wood-Nymph, or the fairest Goddess feigned \nOf three that in mount Ida naked strove, \nStood to entertain her guest from Heaven; no veil \nShe needed, virtue-proof; no thought infirm \nAltered her cheek.  On whom the Angel Hail \nBestowed, the holy salutation used \nLong after to blest Mary, second Eve. \nHail, Mother of Mankind, whose fruitful womb \nShall fill the world more numerous with thy sons, \nThan with these various fruits the trees of God \nHave heaped this table!--Raised of grassy turf \nTheir table was, and mossy seats had round, \nAnd on her ample square from side to side \nAll autumn piled, though spring and autumn here \nDanced hand in hand.  A while discourse they hold; \nNo fear lest dinner cool; when thus began \nOur author.  Heavenly stranger, please to taste \nThese bounties, which our Nourisher, from whom \nAll perfect good, unmeasured out, descends, \nTo us for food and for delight hath caused \nThe earth to yield; unsavoury food perhaps \nTo spiritual natures; only this I know, \nThat one celestial Father gives to all. \nTo whom the Angel.  Therefore what he gives \n(Whose praise be ever sung) to Man in part \nSpiritual, may of purest Spirits be found \nNo ingrateful food:  And food alike those pure \nIntelligential substances require, \nAs doth your rational; and both contain \nWithin them every lower faculty \nOf sense, whereby they hear, see, smell, touch, taste, \nTasting concoct, digest, assimilate, \nAnd corporeal to incorporeal turn. \nFor know, whatever was created, needs \nTo be sustained and fed:  Of elements \nThe grosser feeds the purer, earth the sea, \nEarth and the sea feed air, the air those fires \nEthereal, and as lowest first the moon; \nWhence in her visage round those spots, unpurged \nVapours not yet into her substance turned. \nNor doth the moon no nourishment exhale \nFrom her moist continent to higher orbs. \nThe sun that light imparts to all, receives \nFrom all his alimental recompence \nIn humid exhalations, and at even \nSups with the ocean.  Though in Heaven the trees \nOf life ambrosial fruitage bear, and vines \nYield nectar; though from off the boughs each morn \nWe brush mellifluous dews, and find the ground \nCovered with pearly grain:  Yet God hath here \nVaried his bounty so with new delights, \nAs may compare with Heaven; and to taste \nThink not I shall be nice.  So down they sat, \nAnd to their viands fell; nor seemingly \nThe Angel, nor in mist, the common gloss \nOf Theologians; but with keen dispatch \nOf real hunger, and concoctive heat \nTo transubstantiate:  What redounds, transpires \nThrough Spirits with ease; nor wonder;if by fire \nOf sooty coal the empirick alchemist \nCan turn, or holds it possible to turn, \nMetals of drossiest ore to perfect gold, \nAs from the mine.  Mean while at table Eve \nMinistered naked, and their flowing cups \nWith pleasant liquours crowned:  O innocence \nDeserving Paradise! if ever, then, \nThen had the sons of God excuse to have been \nEnamoured at that sight; but in those hearts \nLove unlibidinous reigned, nor jealousy \nWas understood, the injured lover's hell. \nThus when with meats and drinks they had sufficed, \nNot burdened nature, sudden mind arose \nIn Adam, not to let the occasion pass \nGiven him by this great conference to know \nOf things above his world, and of their being \nWho dwell in Heaven, whose excellence he saw \nTranscend his own so far; whose radiant forms, \nDivine effulgence, whose high power, so far \nExceeded human; and his wary speech \nThus to the empyreal minister he framed. \nInhabitant with God, now know I well \nThy favour, in this honour done to Man; \nUnder whose lowly roof thou hast vouchsafed \nTo enter, and these earthly fruits to taste, \nFood not of Angels, yet accepted so, \nAs that more willingly thou couldst not seem \nAt Heaven's high feasts to have fed: yet what compare \nTo whom the winged Hierarch replied. \nO Adam, One Almighty is, from whom \nAll things proceed, and up to him return, \nIf not depraved from good, created all \nSuch to perfection, one first matter all, \nEndued with various forms, various degrees \nOf substance, and, in things that live, of life; \nBut more refined, more spiritous, and pure, \nAs nearer to him placed, or nearer tending \nEach in their several active spheres assigned, \nTill body up to spirit work, in bounds \nProportioned to each kind.  So from the root \nSprings lighter the green stalk, from thence the leaves \nMore aery, last the bright consummate flower \nSpirits odorous breathes: flowers and their fruit, \nMan's nourishment, by gradual scale sublimed, \nTo vital spirits aspire, to animal, \nTo intellectual; give both life and sense, \nFancy and understanding; whence the soul \nReason receives, and reason is her being, \nDiscursive, or intuitive; discourse \nIs oftest yours, the latter most is ours, \nDiffering but in degree, of kind the same. \nWonder not then, what God for you saw good \nIf I refuse not, but convert, as you \nTo proper substance.  Time may come, when Men \nWith Angels may participate, and find \nNo inconvenient diet, nor too light fare; \nAnd from these corporal nutriments perhaps \nYour bodies may at last turn all to spirit, \nImproved by tract of time, and, winged, ascend \nEthereal, as we; or may, at choice, \nHere or in heavenly Paradises dwell; \nIf ye be found obedient, and retain \nUnalterably firm his love entire, \nWhose progeny you are.  Mean while enjoy \nYour fill what happiness this happy state \nCan comprehend, incapable of more. \nTo whom the patriarch of mankind replied. \nO favourable Spirit, propitious guest, \nWell hast thou taught the way that might direct \nOur knowledge, and the scale of nature set \nFrom center to circumference; whereon, \nIn contemplation of created things, \nBy steps we may ascend to God.  But say, \nWhat meant that caution joined, If ye be found \nObedient?  Can we want obedience then \nTo him, or possibly his love desert, \nWho formed us from the dust and placed us here \nFull to the utmost measure of what bliss \nHuman desires can seek or apprehend? \nTo whom the Angel.  Son of Heaven and Earth, \nAttend!  That thou art happy, owe to God; \nThat thou continuest such, owe to thyself, \nThat is, to thy obedience; therein stand. \nThis was that caution given thee; be advised. \nGod made thee perfect, not immutable; \nAnd good he made thee, but to persevere \nHe left it in thy power; ordained thy will \nBy nature free, not over-ruled by fate \nInextricable, or strict necessity: \nOur voluntary service he requires, \nNot our necessitated; such with him \nFinds no acceptance, nor can find; for how \nCan hearts, not free, be tried whether they serve \nWilling or no, who will but what they must \nBy destiny, and can no other choose? \nMyself, and all the angelick host, that stand \nIn sight of God, enthroned, our happy state \nHold, as you yours, while our obedience holds; \nOn other surety none:  Freely we serve, \nBecause we freely love, as in our will \nTo love or not; in this we stand or fall: \nAnd some are fallen, to disobedience fallen, \nAnd so from Heaven to deepest Hell; O fall \nFrom what high state of bliss, into what woe! \nTo whom our great progenitor.  Thy words \nAttentive, and with more delighted ear, \nDivine instructer, I have heard, than when \nCherubick songs by night from neighbouring hills \nAereal musick send:  Nor knew I not \nTo be both will and deed created free; \nYet that we never shall forget to love \nOur Maker, and obey him whose command \nSingle is yet so just, my constant thoughts \nAssured me, and still assure:  Though what thou tellest \nHath passed in Heaven, some doubt within me move, \nBut more desire to hear, if thou consent, \nThe full relation, which must needs be strange, \nWorthy of sacred silence to be heard; \nAnd we have yet large day, for scarce the sun \nHath finished half his journey, and scarce begins \nHis other half in the great zone of Heaven. \nThus Adam made request; and Raphael, \nAfter short pause assenting, thus began. \nHigh matter thou enjoinest me, O prime of men, \nSad task and hard:  For how shall I relate \nTo human sense the invisible exploits \nOf warring Spirits? how, without remorse, \nThe ruin of so many glorious once \nAnd perfect while they stood? how last unfold \nThe secrets of another world, perhaps \nNot lawful to reveal? yet for thy good \nThis is dispensed; and what surmounts the reach \nOf human sense, I shall delineate so, \nBy likening spiritual to corporal forms, \nAs may express them best; though what if Earth \nBe but a shadow of Heaven, and things therein \nEach to other like, more than on earth is thought? \nAs yet this world was not, and Chaos wild \nReigned where these Heavens now roll, where Earth now rests \nUpon her center poised; when on a day \n(For time, though in eternity, applied \nTo motion, measures all things durable \nBy present, past, and future,) on such day \nAs Heaven's great year brings forth, the empyreal host \nOf Angels by imperial summons called, \nInnumerable before the Almighty's throne \nForthwith, from all the ends of Heaven, appeared \nUnder their Hierarchs in orders bright: \nTen thousand thousand ensigns high advanced, \nStandards and gonfalons 'twixt van and rear \nStream in the air, and for distinction serve \nOf hierarchies, of orders, and degrees; \nOr in their glittering tissues bear imblazed \nHoly memorials, acts of zeal and love \nRecorded eminent.  Thus when in orbs \nOf circuit inexpressible they stood, \nOrb within orb, the Father Infinite, \nBy whom in bliss imbosomed sat the Son, \nAmidst as from a flaming mount, whose top \nBrightness had made invisible, thus spake. \nHear, all ye Angels, progeny of light, \nThrones, Dominations, Princedoms, Virtues, Powers; \nHear my decree, which unrevoked shall stand. \nThis day I have begot whom I declare \nMy only Son, and on this holy hill \nHim have anointed, whom ye now behold \nAt my right hand; your head I him appoint; \nAnd by myself have sworn, to him shall bow \nAll knees in Heaven, and shall confess him Lord: \nUnder his great vice-gerent reign abide \nUnited, as one individual soul, \nFor ever happy:  Him who disobeys, \nMe disobeys, breaks union, and that day, \nCast out from God and blessed vision, falls \nInto utter darkness, deep ingulfed, his place \nOrdained without redemption, without end. \nSo spake the Omnipotent, and with his words \nAll seemed well pleased; all seemed, but were not all. \nThat day, as other solemn days, they spent \nIn song and dance about the sacred hill; \nMystical dance, which yonder starry sphere \nOf planets, and of fixed, in all her wheels \nResembles nearest, mazes intricate, \nEccentrick, intervolved, yet regular \nThen most, when most irregular they seem; \nAnd in their motions harmony divine \nSo smooths her charming tones, that God's own ear \nListens delighted.  Evening now approached, \n(For we have also our evening and our morn, \nWe ours for change delectable, not need;) \nForthwith from dance to sweet repast they turn \nDesirous; all in circles as they stood, \nTables are set, and on a sudden piled \nWith Angels food, and rubied nectar flows \nIn pearl, in diamond, and massy gold, \nFruit of delicious vines, the growth of Heaven. \nOn flowers reposed, and with fresh flowerets crowned, \nThey eat, they drink, and in communion sweet \nQuaff immortality and joy, secure \nOf surfeit, where full measure only bounds \nExcess, before the all-bounteous King, who showered \nWith copious hand, rejoicing in their joy. \nNow when ambrosial night with clouds exhaled \nFrom that high mount of God, whence light and shade \nSpring both, the face of brightest Heaven had changed \nTo grateful twilight, (for night comes not there \nIn darker veil,) and roseat dews disposed \nAll but the unsleeping eyes of God to rest; \nWide over all the plain, and wider far \nThan all this globous earth in plain outspread, \n(Such are the courts of God) the angelick throng, \nDispersed in bands and files, their camp extend \nBy living streams among the trees of life, \nPavilions numberless, and sudden reared, \nCelestial tabernacles, where they slept \nFanned with cool winds; save those, who, in their course, \nMelodious hymns about the sovran throne \nAlternate all night long: but not so waked \nSatan; so call him now, his former name \nIs heard no more in Heaven; he of the first, \nIf not the first Arch-Angel, great in power, \nIn favour and pre-eminence, yet fraught \nWith envy against the Son of God, that day \nHonoured by his great Father, and proclaimed \nMessiah King anointed, could not bear \nThrough pride that sight, and thought himself impaired. \nDeep malice thence conceiving and disdain, \nSoon as midnight brought on the dusky hour \nFriendliest to sleep and silence, he resolved \nWith all his legions to dislodge, and leave \nUnworshipt, unobeyed, the throne supreme, \nContemptuous; and his next subordinate \nAwakening, thus to him in secret spake. \nSleepest thou, Companion dear?  What sleep can close \nThy eye-lids? and rememberest what decree \nOf yesterday, so late hath passed the lips \nOf Heaven's Almighty.  Thou to me thy thoughts \nWast wont, I mine to thee was wont to impart; \nBoth waking we were one; how then can now \nThy sleep dissent?  New laws thou seest imposed; \nNew laws from him who reigns, new minds may raise \nIn us who serve, new counsels to debate \nWhat doubtful may ensue:  More in this place \nTo utter is not safe.  Assemble thou \nOf all those myriads which we lead the chief; \nTell them, that by command, ere yet dim night \nHer shadowy cloud withdraws, I am to haste, \nAnd all who under me their banners wave, \nHomeward, with flying march, where we possess \nThe quarters of the north; there to prepare \nFit entertainment to receive our King, \nThe great Messiah, and his new commands, \nWho speedily through all the hierarchies \nIntends to pass triumphant, and give laws. \nSo spake the false Arch-Angel, and infused \nBad influence into the unwary breast \nOf his associate:  He together calls, \nOr several one by one, the regent Powers, \nUnder him Regent; tells, as he was taught, \nThat the Most High commanding, now ere night, \nNow ere dim night had disincumbered Heaven, \nThe great hierarchal standard was to move; \nTells the suggested cause, and casts between \nAmbiguous words and jealousies, to sound \nOr taint integrity:  But all obeyed \nThe wonted signal, and superiour voice \nOf their great Potentate; for great indeed \nHis name, and high was his degree in Heaven; \nHis countenance, as the morning-star that guides \nThe starry flock, allured them, and with lies \nDrew after him the third part of Heaven's host. \nMean while the Eternal eye, whose sight discerns \nAbstrusest thoughts, from forth his holy mount, \nAnd from within the golden lamps that burn \nNightly before him, saw without their light \nRebellion rising; saw in whom, how spread \nAmong the sons of morn, what multitudes \nWere banded to oppose his high decree; \nAnd, smiling, to his only Son thus said. \nSon, thou in whom my glory I behold \nIn full resplendence, Heir of all my might, \nNearly it now concerns us to be sure \nOf our Omnipotence, and with what arms \nWe mean to hold what anciently we claim \nOf deity or empire:  Such a foe \nIs rising, who intends to erect his throne \nEqual to ours, throughout the spacious north; \nNor so content, hath in his thought to try \nIn battle, what our power is, or our right. \nLet us advise, and to this hazard draw \nWith speed what force is left, and all employ \nIn our defence; lest unawares we lose \nThis our high place, our sanctuary, our hill. \nTo whom the Son with calm aspect and clear, \nLightning divine, ineffable, serene, \nMade answer.  Mighty Father, thou thy foes \nJustly hast in derision, and, secure, \nLaughest at their vain designs and tumults vain, \nMatter to me of glory, whom their hate \nIllustrates, when they see all regal power \nGiven me to quell their pride, and in event \nKnow whether I be dextrous to subdue \nThy rebels, or be found the worst in Heaven. \nSo spake the Son; but Satan, with his Powers, \nFar was advanced on winged speed; an host \nInnumerable as the stars of night, \nOr stars of morning, dew-drops, which the sun \nImpearls on every leaf and every flower. \nRegions they passed, the mighty regencies \nOf Seraphim, and Potentates, and Thrones, \nIn their triple degrees; regions to which \nAll thy dominion, Adam, is no more \nThan what this garden is to all the earth, \nAnd all the sea, from one entire globose \nStretched into longitude; which having passed, \nAt length into the limits of the north \nThey came; and Satan to his royal seat \nHigh on a hill, far blazing, as a mount \nRaised on a mount, with pyramids and towers \nFrom diamond quarries hewn, and rocks of gold; \nThe palace of great Lucifer, (so call \nThat structure in the dialect of men \nInterpreted,) which not long after, he \nAffecting all equality with God, \nIn imitation of that mount whereon \nMessiah was declared in sight of Heaven, \nThe Mountain of the Congregation called; \nFor thither he assembled all his train, \nPretending so commanded to consult \nAbout the great reception of their King, \nThither to come, and with calumnious art \nOf counterfeited truth thus held their ears. \nThrones, Dominations, Princedoms, Virtues, Powers; \nIf these magnifick titles yet remain \nNot merely titular, since by decree \nAnother now hath to himself engrossed \nAll power, and us eclipsed under the name \nOf King anointed, for whom all this haste \nOf midnight-march, and hurried meeting here, \nThis only to consult how we may best, \nWith what may be devised of honours new, \nReceive him coming to receive from us \nKnee-tribute yet unpaid, prostration vile! \nToo much to one! but double how endured, \nTo one, and to his image now proclaimed? \nBut what if better counsels might erect \nOur minds, and teach us to cast off this yoke? \nWill ye submit your necks, and choose to bend \nThe supple knee?  Ye will not, if I trust \nTo know ye right, or if ye know yourselves \nNatives and sons of Heaven possessed before \nBy none; and if not equal all, yet free, \nEqually free; for orders and degrees \nJar not with liberty, but well consist. \nWho can in reason then, or right, assume \nMonarchy over such as live by right \nHis equals, if in power and splendour less, \nIn freedom equal? or can introduce \nLaw and edict on us, who without law \nErr not? much less for this to be our Lord, \nAnd look for adoration, to the abuse \nOf those imperial titles, which assert \nOur being ordained to govern, not to serve. \nThus far his bold discourse without controul \nHad audience; when among the Seraphim \nAbdiel, than whom none with more zeal adored \nThe Deity, and divine commands obeyed, \nStood up, and in a flame of zeal severe \nThe current of his fury thus opposed. \nO argument blasphemous, false, and proud! \nWords which no ear ever to hear in Heaven \nExpected, least of all from thee,  Ingrate, \nIn place thyself so high above thy peers. \nCanst thou with impious obloquy condemn \nThe just decree of God, pronounced and sworn, \nThat to his only Son, by right endued \nWith regal scepter, every soul in Heaven \nShall bend the knee, and in that honour due \nConfess him rightful King? unjust, thou sayest, \nFlatly unjust, to bind with laws the free, \nAnd equal over equals to let reign, \nOne over all with unsucceeded power. \nShalt thou give law to God? shalt thou dispute \nWith him the points of liberty, who made \nThee what thou art, and formed the Powers of Heaven \nSuch as he pleased, and circumscribed their being? \nYet, by experience taught, we know how good, \nAnd of our good and of our dignity \nHow provident he is; how far from thought \nTo make us less, bent rather to exalt \nOur happy state, under one head more near \nUnited.  But to grant it thee unjust, \nThat equal over equals monarch reign: \nThyself, though great and glorious, dost thou count, \nOr all angelick nature joined in one, \nEqual to him begotten Son? by whom, \nAs by his Word, the Mighty Father made \nAll things, even thee; and all the Spirits of Heaven \nBy him created in their bright degrees, \nCrowned them with glory, and to their glory named \nThrones, Dominations, Princedoms, Virtues, Powers, \nEssential Powers; nor by his reign obscured, \nBut more illustrious made; since he the head \nOne of our number thus reduced becomes; \nHis laws our laws; all honour to him done \nReturns our own.  Cease then this impious rage, \nAnd tempt not these; but hasten to appease \nThe incensed Father, and the incensed Son, \nWhile pardon may be found in time besought. \nSo spake the fervent Angel; but his zeal \nNone seconded, as out of season judged, \nOr singular and rash:  Whereat rejoiced \nThe Apostate, and, more haughty, thus replied. \nThat we were formed then sayest thou? and the work \nOf secondary hands, by task transferred \nFrom Father to his Son? strange point and new! \nDoctrine which we would know whence learned: who saw \nWhen this creation was? rememberest thou \nThy making, while the Maker gave thee being? \nWe know no time when we were not as now; \nKnow none before us, self-begot, self-raised \nBy our own quickening power, when fatal course \nHad circled his full orb, the birth mature \nOf this our native Heaven, ethereal sons. \nOur puissance is our own; our own right hand \nShall teach us highest deeds, by proof to try \nWho is our equal:  Then thou shalt behold \nWhether by supplication we intend \nAddress, and to begirt the almighty throne \nBeseeching or besieging.  This report, \nThese tidings carry to the anointed King; \nAnd fly, ere evil intercept thy flight. \nHe said; and, as the sound of waters deep, \nHoarse murmur echoed to his words applause \nThrough the infinite host; nor less for that \nThe flaming Seraph fearless, though alone \nEncompassed round with foes, thus answered bold. \nO alienate from God, O Spirit accursed, \nForsaken of all good!  I see thy fall \nDetermined, and thy hapless crew involved \nIn this perfidious fraud, contagion spread \nBoth of thy crime and punishment:  Henceforth \nNo more be troubled how to quit the yoke \nOf God's Messiah; those indulgent laws \nWill not be now vouchsafed; other decrees \nAgainst thee are gone forth without recall; \nThat golden scepter, which thou didst reject, \nIs now an iron rod to bruise and break \nThy disobedience.  Well thou didst advise; \nYet not for thy advice or threats I fly \nThese wicked tents devoted, lest the wrath \nImpendent, raging into sudden flame, \nDistinguish not:  For soon expect to feel \nHis thunder on thy head, devouring fire. \nThen who created thee lamenting learn, \nWhen who can uncreate thee thou shalt know. \nSo spake the Seraph Abdiel, faithful found \nAmong the faithless, faithful only he; \nAmong innumerable false, unmoved, \nUnshaken, unseduced, unterrified, \nHis loyalty he kept, his love, his zeal; \nNor number, nor example, with him wrought \nTo swerve from truth, or change his constant mind, \nThough single.  From amidst them forth he passed, \nLong way through hostile scorn, which he sustained \nSuperiour, nor of violence feared aught; \nAnd, with retorted scorn, his back he turned \nOn those proud towers to swift destruction doomed. \n \n \n \nBook VI                                                          \n \n \nAll night the dreadless Angel, unpursued, \nThrough Heaven's wide champain held his way; till Morn, \nWaked by the circling Hours, with rosy hand \nUnbarred the gates of light.  There is a cave \nWithin the mount of God, fast by his throne, \nWhere light and darkness in perpetual round \nLodge and dislodge by turns, which makes through Heaven \nGrateful vicissitude, like day and night; \nLight issues forth, and at the other door \nObsequious darkness enters, till her hour \nTo veil the Heaven, though darkness there might well \nSeem twilight here:  And now went forth the Morn \nSuch as in highest Heaven arrayed in gold \nEmpyreal; from before her vanished Night, \nShot through with orient beams; when all the plain \nCovered with thick embattled squadrons bright, \nChariots, and flaming arms, and fiery steeds, \nReflecting blaze on blaze, first met his view: \nWar he perceived, war in procinct; and found \nAlready known what he for news had thought \nTo have reported:  Gladly then he mixed \nAmong those friendly Powers, who him received \nWith joy and acclamations loud, that one, \nThat of so many myriads fallen, yet one \nReturned not lost.  On to the sacred hill \nThey led him high applauded, and present \nBefore the seat supreme; from whence a voice, \nFrom midst a golden cloud, thus mild was heard. \nServant of God. Well done; well hast thou fought \nThe better fight, who single hast maintained \nAgainst revolted multitudes the cause \nOf truth, in word mightier than they in arms; \nAnd for the testimony of truth hast borne \nUniversal reproach, far worse to bear \nThan violence; for this was all thy care \nTo stand approved in sight of God, though worlds \nJudged thee perverse:  The easier conquest now \nRemains thee, aided by this host of friends, \nBack on thy foes more glorious to return, \nThan scorned thou didst depart; and to subdue \nBy force, who reason for their law refuse, \nRight reason for their law, and for their King \nMessiah, who by right of merit reigns. \nGo, Michael, of celestial armies prince, \nAnd thou, in military prowess next, \nGabriel, lead forth to battle these my sons \nInvincible; lead forth my armed Saints, \nBy thousands and by millions, ranged for fight, \nEqual in number to that Godless crew \nRebellious:  Them with fire and hostile arms \nFearless assault; and, to the brow of Heaven \nPursuing, drive them out from God and bliss, \nInto their place of punishment, the gulf \nOf Tartarus, which ready opens wide \nHis fiery Chaos to receive their fall. \nSo spake the Sovran Voice, and clouds began \nTo darken all the hill, and smoke to roll \nIn dusky wreaths, reluctant flames, the sign \nOf wrath awaked; nor with less dread the loud \nEthereal trumpet from on high 'gan blow: \nAt which command the Powers militant, \nThat stood for Heaven, in mighty quadrate joined \nOf union irresistible, moved on \nIn silence their bright legions, to the sound \nOf instrumental harmony, that breathed \nHeroick ardour to adventurous deeds \nUnder their God-like leaders, in the cause \nOf God and his Messiah.  On they move \nIndissolubly firm; nor obvious hill, \nNor straitening vale, nor wood, nor stream, divides \nTheir perfect ranks; for high above the ground \nTheir march was, and the passive air upbore \nTheir nimble tread; as when the total kind \nOf birds, in orderly array on wing, \nCame summoned over Eden to receive \nTheir names of thee; so over many a tract \nOf Heaven they marched, and many a province wide, \nTenfold the length of this terrene:  At last, \nFar in the horizon to the north appeared \nFrom skirt to skirt a fiery region, stretched \nIn battailous aspect, and nearer view \nBristled with upright beams innumerable \nOf rigid spears, and helmets thronged, and shields \nVarious, with boastful argument portrayed, \nThe banded Powers of Satan hasting on \nWith furious expedition; for they weened \nThat self-same day, by fight or by surprise, \nTo win the mount of God, and on his throne \nTo set the Envier of his state, the proud \nAspirer; but their thoughts proved fond and vain \nIn the mid way:  Though strange to us it seemed \nAt first, that Angel should with Angel war, \nAnd in fierce hosting meet, who wont to meet \nSo oft in festivals of joy and love \nUnanimous, as sons of one great Sire, \nHymning the Eternal Father:  But the shout \nOf battle now began, and rushing sound \nOf onset ended soon each milder thought. \nHigh in the midst, exalted as a God, \nThe Apostate in his sun-bright chariot sat, \nIdol of majesty divine, enclosed \nWith flaming Cherubim, and golden shields; \nThen lighted from his gorgeous throne, for now \n\"twixt host and host but narrow space was left, \nA dreadful interval, and front to front \nPresented stood in terrible array \nOf hideous length:  Before the cloudy van, \nOn the rough edge of battle ere it joined, \nSatan, with vast and haughty strides advanced, \nCame towering, armed in adamant and gold; \nAbdiel that sight endured not, where he stood \nAmong the mightiest, bent on highest deeds, \nAnd thus his own undaunted heart explores. \nO Heaven! that such resemblance of the Highest \nShould yet remain, where faith and realty \nRemain not:  Wherefore should not strength and might \nThere fail where virtue fails, or weakest prove \nWhere boldest, though to fight unconquerable? \nHis puissance, trusting in the Almighty's aid, \nI mean to try, whose reason I have tried \nUnsound and false; nor is it aught but just, \nThat he, who in debate of truth hath won, \nShould win in arms, in both disputes alike \nVictor; though brutish that contest and foul, \nWhen reason hath to deal with force, yet so \nMost reason is that reason overcome. \nSo pondering, and from his armed peers \nForth stepping opposite, half-way he met \nHis daring foe, at this prevention more \nIncensed, and thus securely him defied. \nProud, art thou met? thy hope was to have reached \nThe highth of thy aspiring unopposed, \nThe throne of God unguarded, and his side \nAbandoned, at the terrour of thy power \nOr potent tongue:  Fool!not to think how vain \nAgainst the Omnipotent to rise in arms; \nWho out of smallest things could, without end, \nHave raised incessant armies to defeat \nThy folly; or with solitary hand \nReaching beyond all limit, at one blow, \nUnaided, could have finished thee, and whelmed \nThy legions under darkness:  But thou seest \nAll are not of thy train; there be, who faith \nPrefer, and piety to God, though then \nTo thee not visible, when I alone \nSeemed in thy world erroneous to dissent \nFrom all:  My sect thou seest;now learn too late \nHow few sometimes may know, when thousands err. \nWhom the grand foe, with scornful eye askance, \nThus answered.  Ill for thee, but in wished hour \nOf my revenge, first sought for, thou returnest \nFrom flight, seditious Angel! to receive \nThy merited reward, the first assay \nOf this right hand provoked, since first that tongue, \nInspired with contradiction, durst oppose \nA third part of the Gods, in synod met \nTheir deities to assert; who, while they feel \nVigour divine within them, can allow \nOmnipotence to none.  But well thou comest \nBefore thy fellows, ambitious to win \nFrom me some plume, that thy success may show \nDestruction to the rest:  This pause between, \n(Unanswered lest thou boast) to let thee know, \nAt first I thought that Liberty and Heaven \nTo heavenly souls had been all one; but now \nI see that most through sloth had rather serve, \nMinistring Spirits, trained up in feast and song! \nSuch hast thou armed, the minstrelsy of Heaven, \nServility with freedom to contend, \nAs both their deeds compared this day shall prove. \nTo whom in brief thus Abdiel stern replied. \nApostate! still thou errest, nor end wilt find \nOf erring, from the path of truth remote: \nUnjustly thou depravest it with the name \nOf servitude, to serve whom God ordains, \nOr Nature:  God and Nature bid the same, \nWhen he who rules is worthiest, and excels \nThem whom he governs.  This is servitude, \nTo serve the unwise, or him who hath rebelled \nAgainst his worthier, as thine now serve thee, \nThyself not free, but to thyself enthralled; \nYet lewdly darest our ministring upbraid. \nReign thou in Hell, thy kingdom; let me serve \nIn Heaven God ever blest, and his divine \nBehests obey, worthiest to be obeyed; \nYet chains in Hell, not realms, expect:  Mean while \nFrom me returned, as erst thou saidst, from flight, \nThis greeting on thy impious crest receive. \nSo saying, a noble stroke he lifted high, \nWhich hung not, but so swift with tempest fell \nOn the proud crest of Satan, that no sight, \nNor motion of swift thought, less could his shield, \nSuch ruin intercept:  Ten paces huge \nHe back recoiled; the tenth on bended knee \nHis massy spear upstaid; as if on earth \nWinds under ground, or waters forcing way, \nSidelong had pushed a mountain from his seat, \nHalf sunk with all his pines.  Amazement seised \nThe rebel Thrones, but greater rage, to see \nThus foiled their mightiest; ours joy filled, and shout, \nPresage of victory, and fierce desire \nOf battle:  Whereat Michael bid sound \nThe Arch-Angel trumpet; through the vast of Heaven \nIt sounded, and the faithful armies rung \nHosanna to the Highest:  Nor stood at gaze \nThe adverse legions, nor less hideous joined \nThe horrid shock.  Now storming fury rose, \nAnd clamour such as heard in Heaven till now \nWas never; arms on armour clashing brayed \nHorrible discord, and the madding wheels \nOf brazen chariots raged; dire was the noise \nOf conflict; over head the dismal hiss \nOf fiery darts in flaming vollies flew, \nAnd flying vaulted either host with fire. \nSo under fiery cope together rushed \nBoth battles main, with ruinous assault \nAnd inextinguishable rage.  All Heaven \nResounded; and had Earth been then, all Earth \nHad to her center shook.  What wonder? when \nMillions of fierce encountering Angels fought \nOn either side, the least of whom could wield \nThese elements, and arm him with the force \nOf all their regions:  How much more of power \nArmy against army numberless to raise \nDreadful combustion warring, and disturb, \nThough not destroy, their happy native seat; \nHad not the Eternal King Omnipotent, \nFrom his strong hold of Heaven, high over-ruled \nAnd limited their might; though numbered such \nAs each divided legion might have seemed \nA numerous host; in strength each armed hand \nA legion; led in fight, yet leader seemed \nEach warriour single as in chief, expert \nWhen to advance, or stand, or turn the sway \nOf battle, open when, and when to close \nThe ridges of grim war:  No thought of flight, \nNone of retreat, no unbecoming deed \nThat argued fear; each on himself relied, \nAs only in his arm the moment lay \nOf victory:  Deeds of eternal fame \nWere done, but infinite; for wide was spread \nThat war and various; sometimes on firm ground \nA standing fight, then, soaring on main wing, \nTormented all the air; all air seemed then \nConflicting fire.  Long time in even scale \nThe battle hung; till Satan, who that day \nProdigious power had shown, and met in arms \nNo equal, ranging through the dire attack \nOf fighting Seraphim confused, at length \nSaw where the sword of Michael smote, and felled \nSquadrons at once; with huge two-handed sway \nBrandished aloft, the horrid edge came down \nWide-wasting; such destruction to withstand \nHe hasted, and opposed the rocky orb \nOf tenfold adamant, his ample shield, \nA vast circumference.  At his approach \nThe great Arch-Angel from his warlike toil \nSurceased, and glad, as hoping here to end \nIntestine war in Heaven, the arch-foe subdued \nOr captive dragged in chains, with hostile frown \nAnd visage all inflamed first thus began. \nAuthor of evil, unknown till thy revolt, \nUnnamed in Heaven, now plenteous as thou seest \nThese acts of hateful strife, hateful to all, \nThough heaviest by just measure on thyself, \nAnd thy  adherents:  How hast thou disturbed \nHeaven's blessed peace, and into nature brought \nMisery, uncreated till the crime \nOf thy rebellion! how hast thou instilled \nThy malice into thousands, once upright \nAnd faithful, now proved false!  But think not here \nTo trouble holy rest; Heaven casts thee out \nFrom all her confines.  Heaven, the seat of bliss, \nBrooks not the works of violence and war. \nHence then, and evil go with thee along, \nThy offspring, to the place of evil, Hell; \nThou and thy wicked crew! there mingle broils, \nEre this avenging sword begin thy doom, \nOr some more sudden vengeance, winged from God, \nPrecipitate thee with augmented pain. \nSo spake the Prince of Angels; to whom thus \nThe Adversary.  Nor think thou with wind \nOf aery threats to awe whom yet with deeds \nThou canst not.  Hast thou turned the least of these \nTo flight, or if to fall, but that they rise \nUnvanquished, easier to transact with me \nThat thou shouldst hope, imperious, and with threats \nTo chase me hence? err not, that so shall end \nThe strife which thou callest evil, but we style \nThe strife of glory; which we mean to win, \nOr turn this Heaven itself into the Hell \nThou fablest; here however to dwell free, \nIf not to reign:  Mean while thy utmost force, \nAnd join him named Almighty to thy aid, \nI fly not, but have sought thee far and nigh. \nThey ended parle, and both addressed for fight \nUnspeakable; for who, though with the tongue \nOf Angels, can relate, or to what things \nLiken on earth conspicuous, that may lift \nHuman imagination to such highth \nOf Godlike power? for likest Gods they seemed, \nStood they or moved, in stature, motion, arms, \nFit to decide the empire of great Heaven. \nNow waved their fiery swords, and in the air \nMade horrid circles; two broad suns their shields \nBlazed opposite, while Expectation stood \nIn horrour:  From each hand with speed retired, \nWhere erst was thickest fight, the angelick throng, \nAnd left large field, unsafe within the wind \nOf such commotion; such as, to set forth \nGreat things by small, if, nature's concord broke, \nAmong the constellations war were sprung, \nTwo planets, rushing from aspect malign \nOf fiercest opposition, in mid sky \nShould combat, and their jarring spheres confound. \nTogether both with next to almighty arm \nUp-lifted imminent, one stroke they aimed \nThat might determine, and not need repeat, \nAs not of power at once; nor odds appeared \nIn might or swift prevention:  But the sword \nOf Michael from the armoury of God \nWas given him tempered so, that neither keen \nNor solid might resist that edge: it met \nThe sword of Satan, with steep force to smite \nDescending, and in half cut sheer; nor staid, \nBut with swift wheel reverse, deep entering, shared \nAll his right side:  Then Satan first knew pain, \nAnd writhed him to and fro convolved; so sore \nThe griding sword with discontinuous wound \nPassed through him:  But the ethereal substance closed, \nNot long divisible; and from the gash \nA stream of necturous humour issuing flowed \nSanguine, such as celestial Spirits may bleed, \nAnd all his armour stained, ere while so bright. \nForthwith on all sides to his aid was run \nBy Angels many and strong, who interposed \nDefence, while others bore him on their shields \nBack to his chariot, where it stood retired \nFrom off the files of war:  There they him laid \nGnashing for anguish, and despite, and shame, \nTo find himself not matchless, and his pride \nHumbled by such rebuke, so far beneath \nHis confidence to equal God in power. \nYet soon he healed; for Spirits that live throughout \nVital in every part, not as frail man \nIn entrails, heart of head, liver or reins, \nCannot but by annihilating die; \nNor in their liquid texture mortal wound \nReceive, no more than can the fluid air: \nAll heart they live, all head, all eye, all ear, \nAll intellect, all sense; and, as they please, \nThey limb themselves, and colour, shape, or size \nAssume, as?kikes them best, condense or rare. \nMean while in other parts like deeds deserved \nMemorial, where the might of Gabriel fought, \nAnd with fierce ensigns pierced the deep array \nOf Moloch, furious king; who him defied, \nAnd at his chariot-wheels to drag him bound \nThreatened, nor from the Holy One of Heaven \nRefrained his tongue blasphemous; but anon \nDown cloven to the waist, with shattered arms \nAnd uncouth pain fled bellowing.  On each wing \nUriel, and Raphael, his vaunting foe, \nThough huge, and in a rock of diamond armed, \nVanquished Adramelech, and Asmadai, \nTwo potent Thrones, that to be less than Gods \nDisdained, but meaner thoughts learned in their flight, \nMangled with ghastly wounds through plate and mail. \nNor stood unmindful Abdiel to annoy \nThe atheist crew, but with redoubled blow \nAriel, and Arioch, and the violence \nOf Ramiel scorched and blasted, overthrew. \nI might relate of thousands, and their names \nEternize here on earth; but those elect \nAngels, contented with their fame in Heaven, \nSeek not the praise of men:  The other sort, \nIn might though wonderous and in acts of war, \nNor of renown less eager, yet by doom \nCancelled from Heaven and sacred memory, \nNameless in dark oblivion let them dwell. \nFor strength from truth divided, and from just, \nIllaudable, nought merits but dispraise \nAnd ignominy; yet to glory aspires \nVain-glorious, and through infamy seeks fame: \nTherefore eternal silence be their doom. \nAnd now, their mightiest quelled, the battle swerved, \nWith many an inroad gored; deformed rout \nEntered, and foul disorder; all the ground \nWith shivered armour strown, and on a heap \nChariot and charioteer lay overturned, \nAnd fiery-foaming steeds; what stood, recoiled \nO'er-wearied, through the faint Satanick host \nDefensive scarce, or with pale fear surprised, \nThen first with fear surprised, and sense of pain, \nFled ignominious, to such evil brought \nBy sin of disobedience; till that hour \nNot liable to fear, or flight, or pain. \nFar otherwise the inviolable Saints, \nIn cubick phalanx firm, advanced entire, \nInvulnerable, impenetrably armed; \nSuch high advantages their innocence \nGave them above their foes; not to have sinned, \nNot to have disobeyed; in fight they stood \nUnwearied, unobnoxious to be pained \nBy wound, though from their place by violence moved, \nNow Night her course began, and, over Heaven \nInducing darkness, grateful truce imposed, \nAnd silence on the odious din of war: \nUnder her cloudy covert both retired, \nVictor and vanquished:  On the foughten field \nMichael and his Angels prevalent \nEncamping, placed in guard their watches round, \nCherubick waving fires:  On the other part, \nSatan with his rebellious disappeared, \nFar in the dark dislodged; and, void of rest, \nHis potentates to council called by night; \nAnd in the midst thus undismayed began. \nO now in danger tried, now known in arms \nNot to be overpowered, Companions dear, \nFound worthy not of liberty alone, \nToo mean pretence! but what we more affect, \nHonour, dominion, glory, and renown; \nWho have sustained one day in doubtful fight, \n(And if one day, why not eternal days?) \nWhat Heaven's Lord had powerfullest to send \nAgainst us from about his throne, and judged \nSufficient to subdue us to his will, \nBut proves not so:  Then fallible, it seems, \nOf future we may deem him, though till now \nOmniscient thought.  True is, less firmly armed, \nSome disadvantage we endured and pain, \nTill now not known, but, known, as soon contemned; \nSince now we find this our empyreal form \nIncapable of mortal injury, \nImperishable, and, though pierced with wound, \nSoon closing, and by native vigour healed. \nOf evil then so small as easy think \nThe remedy; perhaps more valid arms, \nWeapons more violent, when next we meet, \nMay serve to better us, and worse our foes, \nOr equal what between us made the odds, \nIn nature none:  If other hidden cause \nLeft them superiour, while we can preserve \nUnhurt our minds, and understanding sound, \nDue search and consultation will disclose. \nHe sat; and in the assembly next upstood \nNisroch, of Principalities the prime; \nAs one he stood escaped from cruel fight, \nSore toiled, his riven arms to havock hewn, \nAnd cloudy in aspect thus answering spake. \nDeliverer from new Lords, leader to free \nEnjoyment of our right as Gods; yet hard \nFor Gods, and too unequal work we find, \nAgainst unequal arms to fight in pain, \nAgainst unpained, impassive; from which evil \nRuin must needs ensue; for what avails \nValour or strength, though matchless, quelled with pain \nWhich all subdues, and makes remiss the hands \nOf mightiest?  Sense of pleasure we may well \nSpare out of life perhaps, and not repine, \nBut live content, which is the calmest life: \nBut pain is perfect misery, the worst \nOf evils, and, excessive, overturns \nAll patience.  He, who therefore can invent \nWith what more forcible we may offend \nOur yet unwounded enemies, or arm \nOurselves with like defence, to me deserves \nNo less than for deliverance what we owe. \nWhereto with look composed Satan replied. \nNot uninvented that, which thou aright \nBelievest so main to our success, I bring. \nWhich of us who beholds the bright surface \nOf this ethereous mould whereon we stand, \nThis continent of spacious Heaven, adorned \nWith plant, fruit, flower ambrosial, gems, and gold; \nWhose eye so superficially surveys \nThese things, as not to mind from whence they grow \nDeep under ground, materials dark and crude, \nOf spiritous and fiery spume, till touched \nWith Heaven's ray, and tempered, they shoot forth \nSo beauteous, opening to the ambient light? \nThese in their dark nativity the deep \nShall yield us, pregnant with infernal flame; \nWhich, into hollow engines, long and round, \nThick rammed, at the other bore with touch of fire \nDilated and infuriate, shall send forth \nFrom far, with thundering noise, among our foes \nSuch implements of mischief, as shall dash \nTo pieces, and o'erwhelm whatever stands \nAdverse, that they shall fear we have disarmed \nThe Thunderer of his only dreaded bolt. \nNor long shall be our labour; yet ere dawn, \nEffect shall end our wish.  Mean while revive; \nAbandon fear; to strength and counsel joined \nThink nothing hard, much less to be despaired. \nHe ended, and his words their drooping cheer \nEnlightened, and their languished hope revived. \nThe invention all admired, and each, how he \nTo be the inventer missed; so easy it seemed \nOnce found, which yet unfound most would have thought \nImpossible:  Yet, haply, of thy race \nIn future days, if malice should abound, \nSome one intent on mischief, or inspired \nWith devilish machination, might devise \nLike instrument to plague the sons of men \nFor sin, on war and mutual slaughter bent. \nForthwith from council to the work they flew; \nNone arguing stood; innumerable hands \nWere ready; in a moment up they turned \nWide the celestial soil, and saw beneath \nThe originals of nature in their crude \nConception; sulphurous and nitrous foam \nThey found, they mingled, and, with subtle art, \nConcocted and adusted they reduced \nTo blackest grain, and into store conveyed: \nPart hidden veins digged up (nor hath this earth \nEntrails unlike) of mineral and stone, \nWhereof to found their engines and their balls \nOf missive ruin; part incentive reed \nProvide, pernicious with one touch to fire. \nSo all ere day-spring, under conscious night, \nSecret they finished, and in order set, \nWith silent circumspection, unespied. \nNow when fair morn orient in Heaven appeared, \nUp rose the victor-Angels, and to arms \nThe matin trumpet sung:  In arms they stood \nOf golden panoply, refulgent host, \nSoon banded; others from the dawning hills \nLook round, and scouts each coast light-armed scour, \nEach quarter to descry the distant foe, \nWhere lodged, or whither fled, or if for fight, \nIn motion or in halt:  Him soon they met \nUnder spread ensigns moving nigh, in slow \nBut firm battalion; back with speediest sail \nZophiel, of Cherubim the swiftest wing, \nCame flying, and in mid air aloud thus cried. \nArm, Warriours, arm for fight; the foe at hand, \nWhom fled we thought, will save us long pursuit \nThis day; fear not his flight;so thick a cloud \nHe comes, and settled in his face I see \nSad resolution, and secure:  Let each \nHis adamantine coat gird well, and each \nFit well his helm, gripe fast his orbed shield, \nBorne even or high; for this day will pour down, \nIf I conjecture aught, no drizzling shower, \nBut rattling storm of arrows barbed with fire. \nSo warned he them, aware themselves, and soon \nIn order, quit of all impediment; \nInstant without disturb they took alarm, \nAnd onward moved embattled:  When behold! \nNot distant far with heavy pace the foe \nApproaching gross and huge, in hollow cube \nTraining his devilish enginery, impaled \nOn every side with shadowing squadrons deep, \nTo hide the fraud.  At interview both stood \nA while; but suddenly at head appeared \nSatan, and thus was heard commanding loud. \nVanguard, to right and left the front unfold; \nThat all may see who hate us, how we seek \nPeace and composure, and with open breast \nStand ready to receive them, if they like \nOur overture; and turn not back perverse: \nBut that I doubt; however witness, Heaven! \nHeaven, witness thou anon! while we discharge \nFreely our part: ye, who appointed stand \nDo as you have in charge, and briefly touch \nWhat we propound, and loud that all may hear! \nSo scoffing in ambiguous words, he scarce \nHad ended; when to right and left the front \nDivided, and to either flank retired: \nWhich to our eyes discovered, new and strange, \nA triple mounted row of pillars laid \nOn wheels (for like to pillars most they seemed, \nOr hollowed bodies made of oak or fir, \nWith branches lopt, in wood or mountain felled,) \nBrass, iron, stony mould, had not their mouths \nWith hideous orifice gaped on us wide, \nPortending hollow truce:  At each behind \nA Seraph stood, and in his hand a reed \nStood waving tipt with fire; while we, suspense, \nCollected stood within our thoughts amused, \nNot long; for sudden all at once their reeds \nPut forth, and to a narrow vent applied \nWith nicest touch.  Immediate in a flame, \nBut soon obscured with smoke, all Heaven appeared, \nFrom those deep-throated engines belched, whose roar \nEmbowelled with outrageous noise the air, \nAnd all her entrails tore, disgorging foul \nTheir devilish glut, chained thunderbolts and hail \nOf iron globes; which, on the victor host \nLevelled, with such impetuous fury smote, \nThat, whom they hit, none on their feet might stand, \nThough standing else as rocks, but down they fell \nBy thousands, Angel on Arch-Angel rolled; \nThe sooner for their arms; unarmed, they might \nHave easily, as Spirits, evaded swift \nBy quick contraction or remove; but now \nFoul dissipation followed, and forced rout; \nNor served it to relax their serried files. \nWhat should they do? if on they rushed, repulse \nRepeated, and indecent overthrow \nDoubled, would render them yet more despised, \nAnd to their foes a laughter; for in view \nStood ranked of Seraphim another row, \nIn posture to displode their second tire \nOf thunder:  Back defeated to return \nThey worse abhorred.  Satan beheld their plight, \nAnd to his mates thus in derision called. \nO Friends! why come not on these victors proud \nEre while they fierce were coming; and when we, \nTo entertain them fair with open front \nAnd breast, (what could we more?) propounded terms \nOf composition, straight they changed their minds, \nFlew off, and into strange vagaries fell, \nAs they would dance; yet for a dance they seemed \nSomewhat extravagant and wild; perhaps \nFor joy of offered peace:  But I suppose, \nIf our proposals once again were heard, \nWe should compel them to a quick result. \nTo whom thus Belial, in like gamesome mood. \nLeader! the terms we sent were terms of weight, \nOf hard contents, and full of force urged home; \nSuch as we might perceive amused them all, \nAnd stumbled many:  Who receives them right, \nHad need from head to foot well understand; \nNot understood, this gift they have besides, \nThey show us when our foes walk not upright. \nSo they among themselves in pleasant vein \nStood scoffing, hightened in their thoughts beyond \nAll doubt of victory:  Eternal Might \nTo match with their inventions they presumed \nSo easy, and of his thunder made a scorn, \nAnd all his host derided, while they stood \nA while in trouble:  But they stood not long; \nRage prompted them at length, and found them arms \nAgainst such hellish mischief fit to oppose. \nForthwith (behold the excellence, the power, \nWhich God hath in his mighty Angels placed!) \nTheir arms away they threw, and to the hills \n(For Earth hath this variety from Heaven \nOf pleasure situate in hill and dale,) \nLight as the lightning glimpse they ran, they flew; \nFrom their foundations loosening to and fro, \nThey plucked the seated hills, with all their load, \nRocks, waters, woods, and by the shaggy tops \nUp-lifting bore them in their hands:  Amaze, \nBe sure, and terrour, seized the rebel host, \nWhen coming towards them so dread they saw \nThe bottom of the mountains upward turned; \nTill on those cursed engines' triple-row \nThey saw them whelmed, and all their confidence \nUnder the weight of mountains buried deep; \nThemselves invaded next, and on their heads \nMain promontories flung, which in the air \nCame shadowing, and oppressed whole legions armed; \nTheir armour helped their harm, crushed in and bruised \nInto their substance pent, which wrought them pain \nImplacable, and many a dolorous groan; \nLong struggling underneath, ere they could wind \nOut of such prison, though Spirits of purest light, \nPurest at first, now gross by sinning grown. \nThe rest, in imitation, to like arms \nBetook them, and the neighbouring hills uptore: \nSo hills amid the air encountered hills, \nHurled to and fro with jaculation dire; \nThat under ground they fought in dismal shade; \nInfernal noise! war seemed a civil game \nTo this uproar; horrid confusion heaped \nUpon confusion rose:  And now all Heaven \nHad gone to wrack, with ruin overspread; \nHad not the Almighty Father, where he sits \nShrined in his sanctuary of Heaven secure, \nConsulting on the sum of things, foreseen \nThis tumult, and permitted all, advised: \nThat his great purpose he might so fulfil, \nTo honour his anointed Son avenged \nUpon his enemies, and to declare \nAll power on him transferred:  Whence to his Son, \nThe Assessour of his throne, he thus began. \nEffulgence of my glory, Son beloved, \nSon, in whose face invisible is beheld \nVisibly, what by Deity I am; \nAnd in whose hand what by decree I do, \nSecond Omnipotence! two days are past, \nTwo days, as we compute the days of Heaven, \nSince Michael and his Powers went forth to tame \nThese disobedient:  Sore hath been their fight, \nAs likeliest was, when two such foes met armed; \nFor to themselves I left them; and thou knowest, \nEqual in their creation they were formed, \nSave what sin hath impaired; which yet hath wrought \nInsensibly, for I suspend their doom; \nWhence in perpetual fight they needs must last \nEndless, and no solution will be found: \nWar wearied hath performed what war can do, \nAnd to disordered rage let loose the reins \nWith mountains, as with weapons, armed; which makes \nWild work in Heaven, and dangerous to the main. \nTwo days are therefore past, the third is thine; \nFor thee I have ordained it; and thus far \nHave suffered, that the glory may be thine \nOf ending this great war, since none but Thou \nCan end it.  Into thee such virtue and grace \nImmense I have transfused, that all may know \nIn Heaven and Hell thy power above compare; \nAnd, this perverse commotion governed thus, \nTo manifest thee worthiest to be Heir \nOf all things; to be Heir, and to be King \nBy sacred unction, thy deserved right. \nGo then, Thou Mightiest, in thy Father's might; \nAscend my chariot, guide the rapid wheels \nThat shake Heaven's basis, bring forth all my war, \nMy bow and thunder, my almighty arms \nGird on, and sword upon thy puissant thigh; \nPursue these sons of darkness, drive them out \nFrom all Heaven's bounds into the utter deep: \nThere let them learn, as likes them, to despise \nGod, and Messiah his anointed King. \nHe said, and on his Son with rays direct \nShone full; he all his Father full expressed \nIneffably into his face received; \nAnd thus the Filial Godhead answering spake. \nO Father, O Supreme of heavenly Thrones, \nFirst, Highest, Holiest, Best; thou always seek'st \nTo glorify thy Son, I always thee, \nAs is most just:  This I my glory account, \nMy exaltation, and my whole delight, \nThat thou, in me well pleased, declarest thy will \nFulfilled, which to fulfil is all my bliss. \nScepter and power, thy giving, I assume, \nAnd gladlier shall resign, when in the end \nThou shalt be all in all, and I in thee \nFor ever; and in me all whom thou lovest: \nBut whom thou hatest, I hate, and can put on \nThy terrours, as I put thy mildness on, \nImage of thee in all things; and shall soon, \nArmed with thy might, rid Heaven of these rebelled; \nTo their prepared ill mansion driven down, \nTo chains of darkness, and the undying worm; \nThat from thy just obedience could revolt, \nWhom to obey is happiness entire. \nThen shall thy Saints unmixed, and from the impure \nFar separate, circling thy holy mount, \nUnfeigned Halleluiahs to thee sing, \nHymns of high praise, and I among them Chief. \nSo said, he, o'er his scepter bowing, rose \nFrom the right hand of Glory where he sat; \nAnd the third sacred morn began to shine, \nDawning through Heaven.  Forth rushed with whirlwind sound \nThe chariot of Paternal Deity, \nFlashing thick flames, wheel within wheel undrawn, \nItself instinct with Spirit, but convoyed \nBy four Cherubick shapes; four faces each \nHad wonderous; as with stars, their bodies all \nAnd wings were set with eyes; with eyes the wheels \nOf beryl, and careering fires between; \nOver their heads a crystal firmament, \nWhereon a sapphire throne, inlaid with pure \nAmber, and colours of the showery arch. \nHe, in celestial panoply all armed \nOf radiant Urim, work divinely wrought, \nAscended; at his right hand Victory \nSat eagle-winged; beside him hung his bow \nAnd quiver with three-bolted thunder stored; \nAnd from about him fierce effusion rolled \nOf smoke, and bickering flame, and sparkles dire: \nAttended with ten thousand thousand Saints, \nHe onward came; far off his coming shone; \nAnd twenty thousand (I their number heard) \nChariots of God, half on each hand, were seen; \nHe on the wings of Cherub rode sublime \nOn the crystalline sky, in sapphire throned, \nIllustrious far and wide; but by his own \nFirst seen:  Them unexpected joy surprised, \nWhen the great ensign of Messiah blazed \nAloft by Angels borne, his sign in Heaven; \nUnder whose conduct Michael soon reduced \nHis army, circumfused on either wing, \nUnder their Head imbodied all in one. \nBefore him Power Divine his way prepared; \nAt his command the uprooted hills retired \nEach to his place; they heard his voice, and went \nObsequious; Heaven his wonted face renewed, \nAnd with fresh flowerets hill and valley smiled. \nThis saw his hapless foes, but stood obdured, \nAnd to rebellious fight rallied their Powers, \nInsensate, hope conceiving from despair. \nIn heavenly Spirits could such perverseness dwell? \nBut to convince the proud what signs avail, \nOr wonders move the obdurate to relent? \nThey, hardened more by what might most reclaim, \nGrieving to see his glory, at the sight \nTook envy; and, aspiring to his highth, \nStood re-embattled fierce, by force or fraud \nWeening to prosper, and at length prevail \nAgainst God and Messiah, or to fall \nIn universal ruin last; and now \nTo final battle drew, disdaining flight, \nOr faint retreat; when the great Son of God \nTo all his host on either hand thus spake. \nStand still in bright array, ye Saints; here stand, \nYe Angels armed; this day from battle rest: \nFaithful hath been your warfare, and of God \nAccepted, fearless in his righteous cause; \nAnd as ye have received, so have ye done, \nInvincibly:  But of this cursed crew \nThe punishment to other hand belongs; \nVengeance is his, or whose he sole appoints: \nNumber to this day's work is not ordained, \nNor multitude; stand only, and behold \nGod's indignation on these godless poured \nBy me; not you, but me, they have despised, \nYet envied; against me is all their rage, \nBecause the Father, to whom in Heaven s'preme \nKingdom, and power, and glory appertains, \nHath honoured me, according to his will. \nTherefore to me their doom he hath assigned; \nThat they may have their wish, to try with me \nIn battle which the stronger proves; they all, \nOr I alone against them; since by strength \nThey measure all, of other excellence \nNot emulous, nor care who them excels; \nNor other strife with them do I vouchsafe. \nSo spake the Son, and into terrour changed \nHis countenance too severe to be beheld, \nAnd full of wrath bent on his enemies. \nAt once the Four spread out their starry wings \nWith dreadful shade contiguous, and the orbs \nOf his fierce chariot rolled, as with the sound \nOf torrent floods, or of a numerous host. \nHe on his impious foes right onward drove, \nGloomy as night; under his burning wheels \nThe stedfast empyrean shook throughout, \nAll but the throne itself of God.  Full soon \nAmong them he arrived; in his right hand \nGrasping ten thousand thunders, which he sent \nBefore him, such as in their souls infixed \nPlagues:  They, astonished, all resistance lost, \nAll courage; down their idle weapons dropt: \nO'er shields, and helms, and helmed heads he rode \nOf Thrones and mighty Seraphim prostrate, \nThat wished the mountains now might be again \nThrown on them, as a shelter from his ire. \nNor less on either side tempestuous fell \nHis arrows, from the fourfold-visaged Four \nDistinct with eyes, and from the living wheels \nDistinct alike with multitude of eyes; \nOne Spirit in them ruled; and every eye \nGlared lightning, and shot forth pernicious fire \nAmong the accursed, that withered all their strength, \nAnd of their wonted vigour left them drained, \nExhausted, spiritless, afflicted, fallen. \nYet half his strength he put not forth, but checked \nHis thunder in mid volley; for he meant \nNot to destroy, but root them out of Heaven: \nThe overthrown he raised, and as a herd \nOf goats or timorous flock together thronged \nDrove them before him thunder-struck, pursued \nWith terrours, and with furies, to the bounds \nAnd crystal wall of Heaven; which, opening wide, \nRolled inward, and a spacious gap disclosed \nInto the wasteful deep:  The monstrous sight \nStruck them with horrour backward, but far worse \nUrged them behind:  Headlong themselves they threw \nDown from the verge of Heaven; eternal wrath \nBurnt after them to the bottomless pit. \nHell heard the unsufferable noise, Hell saw \nHeaven ruining from Heaven, and would have fled \nAffrighted; but strict Fate had cast too deep \nHer dark foundations, and too fast had bound. \nNine days they fell:  Confounded Chaos roared, \nAnd felt tenfold confusion in their fall \nThrough his wild anarchy, so huge a rout \nIncumbered him with ruin:  Hell at last \nYawning received them whole, and on them closed; \nHell, their fit habitation, fraught with fire \nUnquenchable, the house of woe and pain. \nDisburdened Heaven rejoiced, and soon repaired \nHer mural breach, returning whence it rolled. \nSole victor, from the expulsion of his foes, \nMessiah his triumphal chariot turned: \nTo meet him all his Saints, who silent stood \nEye-witnesses of his almighty acts, \nWith jubilee advanced; and, as they went, \nShaded with branching palm, each Order bright, \nSung triumph, and him sung victorious King, \nSon, Heir, and Lord, to him dominion given, \nWorthiest to reign:  He, celebrated, rode \nTriumphant through mid Heaven, into the courts \nAnd temple of his Mighty Father throned \nOn high; who into glory him received, \nWhere now he sits at the right hand of bliss. \nThus, measuring things in Heaven by things on Earth, \nAt thy request, and that thou mayest beware \nBy what is past, to thee I have revealed \nWhat might have else to human race been hid; \nThe discord which befel, and war in Heaven \nAmong the angelick Powers, and the deep fall \nOf those too high aspiring, who rebelled \nWith Satan; he who envies now thy state, \nWho now is plotting how he may seduce \nThee also from obedience, that, with him \nBereaved of happiness, thou mayest partake \nHis punishment, eternal misery; \nWhich would be all his solace and revenge, \nAs a despite done against the Most High, \nThee once to gain companion of his woe. \nBut listen not to his temptations, warn \nThy weaker; let it profit thee to have heard, \nBy terrible example, the reward \nOf disobedience; firm they might have stood, \nYet fell; remember, and fear to transgress. \n \n \n \nBook VII                                                         \n \n \nDescend from Heaven, Urania, by that name \nIf rightly thou art called, whose voice divine \nFollowing, above the Olympian hill I soar, \nAbove the flight of Pegasean wing! \nThe meaning, not the name, I call: for thou \nNor of the Muses nine, nor on the top \nOf old Olympus dwellest; but, heavenly-born, \nBefore the hills appeared, or fountain flowed, \nThou with eternal Wisdom didst converse, \nWisdom thy sister, and with her didst play \nIn presence of the Almighty Father, pleased \nWith thy celestial song.  Up led by thee \nInto the Heaven of Heavens I have presumed, \nAn earthly guest, and drawn empyreal air, \nThy tempering: with like safety guided down \nReturn me to my native element: \nLest from this flying steed unreined, (as once \nBellerophon, though from a lower clime,) \nDismounted, on the Aleian field I fall, \nErroneous there to wander, and forlorn. \nHalf yet remains unsung, but narrower bound \nWithin the visible diurnal sphere; \nStanding on earth, not rapt above the pole, \nMore safe I sing with mortal voice, unchanged \nTo hoarse or mute, though fallen on evil days, \nOn evil days though fallen, and evil tongues; \nIn darkness, and with dangers compassed round, \nAnd solitude; yet not alone, while thou \nVisitest my slumbers nightly, or when morn \nPurples the east: still govern thou my song, \nUrania, and fit audience find, though few. \nBut drive far off the barbarous dissonance \nOf Bacchus and his revellers, the race \nOf that wild rout that tore the Thracian bard \nIn Rhodope, where woods and rocks had ears \nTo rapture, till the savage clamour drowned \nBoth harp and voice; nor could the Muse defend \nHer son.  So fail not thou, who thee implores: \nFor thou art heavenly, she an empty dream. \nSay, Goddess, what ensued when Raphael, \nThe affable Arch-Angel, had forewarned \nAdam, by dire example, to beware \nApostasy, by what befel in Heaven \nTo those apostates; lest the like befall \nIn Paradise to Adam or his race, \nCharged not to touch the interdicted tree, \nIf they transgress, and slight that sole command, \nSo easily obeyed amid the choice \nOf all tastes else to please their appetite, \nThough wandering.  He, with his consorted Eve, \nThe story heard attentive, and was filled \nWith admiration and deep muse, to hear \nOf things so high and strange; things, to their thought \nSo unimaginable, as hate in Heaven, \nAnd war so near the peace of God in bliss, \nWith such confusion: but the evil, soon \nDriven back, redounded as a flood on those \nFrom whom it sprung; impossible to mix \nWith blessedness.  Whence Adam soon repealed \nThe doubts that in his heart arose: and now \nLed on, yet sinless, with desire to know \nWhat nearer might concern him, how this world \nOf Heaven and Earth conspicuous first began; \nWhen, and whereof created; for what cause; \nWhat within Eden, or without, was done \nBefore his memory; as one whose drouth \nYet scarce allayed still eyes the current stream, \nWhose liquid murmur heard new thirst excites, \nProceeded thus to ask his heavenly guest. \nGreat things, and full of wonder in our ears, \nFar differing from this world, thou hast revealed, \nDivine interpreter! by favour sent \nDown from the empyrean, to forewarn \nUs timely of what might else have been our loss, \nUnknown, which human knowledge could not reach; \nFor which to the infinitely Good we owe \nImmortal thanks, and his admonishment \nReceive, with solemn purpose to observe \nImmutably his sovran will, the end \nOf what we are.  But since thou hast vouchsafed \nGently, for our instruction, to impart \nThings above earthly thought, which yet concerned \nOur knowing, as to highest wisdom seemed, \nDeign to descend now lower, and relate \nWhat may no less perhaps avail us known, \nHow first began this Heaven which we behold \nDistant so high, with moving fires adorned \nInnumerable; and this which yields or fills \nAll space, the ambient air wide interfused \nEmbracing round this floried Earth; what cause \nMoved the Creator, in his holy rest \nThrough all eternity, so late to build \nIn Chaos; and the work begun, how soon \nAbsolved; if unforbid thou mayest unfold \nWhat we, not to explore the secrets ask \nOf his eternal empire, but the more \nTo magnify his works, the more we know. \nAnd the great light of day yet wants to run \nMuch of his race though steep; suspense in Heaven, \nHeld by thy voice, thy potent voice, he hears, \nAnd longer will delay to hear thee tell \nHis generation, and the rising birth \nOf Nature from the unapparent Deep: \nOr if the star of evening and the moon \nHaste to thy audience, Night with her will bring, \nSilence; and Sleep, listening to thee, will watch; \nOr we can bid his absence, till thy song \nEnd, and dismiss thee ere the morning shine. \nThus Adam his illustrious guest besought: \nAnd thus the Godlike Angel answered mild. \nThis also thy request, with caution asked, \nObtain; though to recount almighty works \nWhat words or tongue of Seraph can suffice, \nOr heart of man suffice to comprehend? \nYet what thou canst attain, which best may serve \nTo glorify the Maker, and infer \nThee also happier, shall not be withheld \nThy hearing; such commission from above \nI have received, to answer thy desire \nOf knowledge within bounds; beyond, abstain \nTo ask; nor let thine own inventions hope \nThings not revealed, which the invisible King, \nOnly Omniscient, hath suppressed in night; \nTo none communicable in Earth or Heaven: \nEnough is left besides to search and know. \nBut knowledge is as food, and needs no less \nHer temperance over appetite, to know \nIn measure what the mind may well contain; \nOppresses else with surfeit, and soon turns \nWisdom to folly, as nourishment to wind. \nKnow then, that, after Lucifer from Heaven \n(So call him, brighter once amidst the host \nOf Angels, than that star the stars among,) \nFell with his flaming legions through the deep \nInto his place, and the great Son returned \nVictorious with his Saints, the Omnipotent \nEternal Father from his throne beheld \nTheir multitude, and to his Son thus spake. \nAt least our envious Foe hath failed, who thought \nAll like himself rebellious, by whose aid \nThis inaccessible high strength, the seat \nOf Deity supreme, us dispossessed, \nHe trusted to have seised, and into fraud \nDrew many, whom their place knows here no more: \nYet far the greater part have kept, I see, \nTheir station; Heaven, yet populous, retains \nNumber sufficient to possess her realms \nThough wide, and this high temple to frequent \nWith ministeries due, and solemn rites: \nBut, lest his heart exalt him in the harm \nAlready done, to have dispeopled Heaven, \nMy damage fondly deemed, I can repair \nThat detriment, if such it be to lose \nSelf-lost; and in a moment will create \nAnother world, out of one man a race \nOf men innumerable, there to dwell, \nNot here; till, by degrees of merit raised, \nThey open to themselves at length the way \nUp hither, under long obedience tried; \nAnd Earth be changed to Heaven, and Heaven to Earth, \nOne kingdom, joy and union without end. \nMean while inhabit lax, ye Powers of Heaven; \nAnd thou my Word, begotten Son, by thee \nThis I perform; speak thou, and be it done! \nMy overshadowing Spirit and Might with thee \nI send along; ride forth, and bid the Deep \nWithin appointed bounds be Heaven and Earth; \nBoundless the Deep, because I Am who fill \nInfinitude, nor vacuous the space. \nThough I, uncircumscribed myself, retire, \nAnd put not forth my goodness, which is free \nTo act or not, Necessity and Chance \nApproach not me, and what I will is Fate. \nSo spake the Almighty, and to what he spake \nHis Word, the Filial Godhead, gave effect. \nImmediate are the acts of God, more swift \nThan time or motion, but to human ears \nCannot without process of speech be told, \nSo told as earthly notion can receive. \nGreat triumph and rejoicing was in Heaven, \nWhen such was heard declared the Almighty's will; \nGlory they sung to the Most High, good will \nTo future men, and in their dwellings peace; \nGlory to Him, whose just avenging ire \nHad driven out the ungodly from his sight \nAnd the habitations of the just; to Him \nGlory and praise, whose wisdom had ordained \nGood out of evil to create; instead \nOf Spirits malign, a better race to bring \nInto their vacant room, and thence diffuse \nHis good to worlds and ages infinite. \nSo sang the Hierarchies:  Mean while the Son \nOn his great expedition now appeared, \nGirt with Omnipotence, with radiance crowned \nOf Majesty Divine; sapience and love \nImmense, and all his Father in him shone. \nAbout his chariot numberless were poured \nCherub, and Seraph, Potentates, and Thrones, \nAnd Virtues, winged Spirits, and chariots winged \nFrom the armoury of God; where stand of old \nMyriads, between two brazen mountains lodged \nAgainst a solemn day, harnessed at hand, \nCelestial equipage; and now came forth \nSpontaneous, for within them Spirit lived, \nAttendant on their Lord:  Heaven opened wide \nHer ever-during gates, harmonious sound \nOn golden hinges moving, to let forth \nThe King of Glory, in his powerful Word \nAnd Spirit, coming to create new worlds. \nOn heavenly ground they stood; and from the shore \nThey viewed the vast immeasurable abyss \nOutrageous as a sea, dark, wasteful, wild, \nUp from the bottom turned by furious winds \nAnd surging waves, as mountains, to assault \nHeaven's highth, and with the center mix the pole. \nSilence, ye troubled Waves, and thou Deep, peace, \nSaid then the Omnifick Word; your discord end! \nNor staid; but, on the wings of Cherubim \nUplifted, in paternal glory rode \nFar into Chaos, and the world unborn; \nFor Chaos heard his voice:  Him all his train \nFollowed in bright procession, to behold \nCreation, and the wonders of his might. \nThen staid the fervid wheels, and in his hand \nHe took the golden compasses, prepared \nIn God's eternal store, to circumscribe \nThis universe, and all created things: \nOne foot he centered, and the other turned \nRound through the vast profundity obscure; \nAnd said, Thus far extend, thus far thy bounds, \nThis be thy just circumference, O World! \nThus God the Heaven created, thus the Earth, \nMatter unformed and void:  Darkness profound \nCovered the abyss: but on the watery calm \nHis brooding wings the Spirit of God outspread, \nAnd vital virtue infused, and vital warmth \nThroughout the fluid mass; but downward purged \nThe black tartareous cold infernal dregs, \nAdverse to life: then founded, then conglobed \nLike things to like; the rest to several place \nDisparted, and between spun out the air; \nAnd Earth self-balanced on her center hung. \nLet there be light, said God; and forthwith Light \nEthereal, first of things, quintessence pure, \nSprung from the deep; and from her native east \nTo journey through the aery gloom began, \nSphered in a radiant cloud, for yet the sun \nWas not; she in a cloudy tabernacle \nSojourned the while.  God saw the light was good; \nAnd light from darkness by the hemisphere \nDivided: light the Day, and darkness Night, \nHe named.  Thus was the first day even and morn: \nNor past uncelebrated, nor unsung \nBy the celestial quires, when orient light \nExhaling first from darkness they beheld; \nBirth-day of Heaven and Earth; with joy and shout \nThe hollow universal orb they filled, \nAnd touched their golden harps, and hymning praised \nGod and his works; Creator him they sung, \nBoth when first evening was, and when first morn. \nAgain, God said,  Let there be firmament \nAmid the waters, and let it divide \nThe waters from the waters; and God made \nThe firmament, expanse of liquid, pure, \nTransparent, elemental air, diffused \nIn circuit to the uttermost convex \nOf this great round; partition firm and sure, \nThe waters underneath from those above \nDividing: for as earth, so he the world \nBuilt on circumfluous waters calm, in wide \nCrystalline ocean, and the loud misrule \nOf Chaos far removed; lest fierce extremes \nContiguous might distemper the whole frame: \nAnd Heaven he named the Firmament:  So even \nAnd morning chorus sung the second day. \nThe Earth was formed, but in the womb as yet \nOf waters, embryon immature involved, \nAppeared not: over all the face of Earth \nMain ocean flowed, not idle; but, with warm \nProlifick humour softening all her globe, \nFermented the great mother to conceive, \nSatiate with genial moisture; when God said, \nBe gathered now ye waters under Heaven \nInto one place, and let dry land appear. \nImmediately the mountains huge appear \nEmergent, and their broad bare backs upheave \nInto the clouds; their tops ascend the sky: \nSo high as heaved the tumid hills, so low \nDown sunk a hollow bottom broad and deep, \nCapacious bed of waters:  Thither they \nHasted with glad precipitance, uprolled, \nAs drops on dust conglobing from the dry: \nPart rise in crystal wall, or ridge direct, \nFor haste; such flight the great command impressed \nOn the swift floods:  As armies at the call \nOf trumpet (for of armies thou hast heard) \nTroop to their standard; so the watery throng, \nWave rolling after wave, where way they found, \nIf steep, with torrent rapture, if through plain, \nSoft-ebbing; nor withstood them rock or hill; \nBut they, or under ground, or circuit wide \nWith serpent errour wandering, found their way, \nAnd on the washy oose deep channels wore; \nEasy, ere God had bid the ground be dry, \nAll but within those banks, where rivers now \nStream, and perpetual draw their humid train. \nThe dry land, Earth; and the great receptacle \nOf congregated waters, he called Seas: \nAnd saw that it was good; and said, Let the Earth \nPut forth the verdant grass, herb yielding seed, \nAnd fruit-tree yielding fruit after her kind, \nWhose seed is in herself upon the Earth. \nHe scarce had said, when the bare Earth, till then \nDesart and bare, unsightly, unadorned, \nBrought forth the tender grass, whose verdure clad \nHer universal face with pleasant green; \nThen herbs of every leaf, that sudden flowered \nOpening their various colours, and made gay \nHer bosom, smelling sweet: and, these scarce blown, \nForth flourished thick the clustering vine, forth crept \nThe swelling gourd, up stood the corny reed \nEmbattled in her field, and the humble shrub, \nAnd bush with frizzled hair implicit:  Last \nRose, as in dance, the stately trees, and spread \nTheir branches hung with copious fruit, or gemmed \nTheir blossoms:  With high woods the hills were crowned; \nWith tufts the valleys, and each fountain side; \nWith borders long the rivers: that Earth now \nSeemed like to Heaven, a seat where Gods might dwell, \nOr wander with delight, and love to haunt \nHer sacred shades: though God had yet not rained \nUpon the Earth, and man to till the ground \nNone was; but from the Earth a dewy mist \nWent up, and watered all the ground, and each \nPlant of the field; which, ere it was in the Earth, \nGod made, and every herb, before it grew \nOn the green stem:  God saw that it was good: \nSo even and morn recorded the third day. \nAgain the Almighty spake, Let there be lights \nHigh in the expanse of Heaven, to divide \nThe day from night; and let them be for signs, \nFor seasons, and for days, and circling years; \nAnd let them be for lights, as I ordain \nTheir office in the firmament of Heaven, \nTo give light on the Earth; and it was so. \nAnd God made two great lights, great for their use \nTo Man, the greater to have rule by day, \nThe less by night, altern; and made the stars, \nAnd set them in the firmament of Heaven \nTo illuminate the Earth, and rule the day \nIn their vicissitude, and rule the night, \nAnd light from darkness to divide.  God saw, \nSurveying his great work, that it was good: \nFor of celestial bodies first the sun \nA mighty sphere he framed, unlightsome first, \nThough of ethereal mould: then formed the moon \nGlobose, and every magnitude of stars, \nAnd sowed with stars the Heaven, thick as a field: \nOf light by far the greater part he took, \nTransplanted from her cloudy shrine, and placed \nIn the sun's orb, made porous to receive \nAnd drink the liquid light; firm to retain \nHer gathered beams, great palace now of light. \nHither, as to their fountain, other stars \nRepairing, in their golden urns draw light, \nAnd hence the morning-planet gilds her horns; \nBy tincture or reflection they augment \nTheir small peculiar, though from human sight \nSo far remote, with diminution seen, \nFirst in his east the glorious lamp was seen, \nRegent of day, and all the horizon round \nInvested with bright rays, jocund to run \nHis longitude through Heaven's high road; the gray \nDawn, and the Pleiades, before him danced, \nShedding sweet influence:  Less bright the moon, \nBut opposite in levelled west was set, \nHis mirrour, with full face borrowing her light \nFrom him; for other light she needed none \nIn that aspect, and still that distance keeps \nTill night; then in the east her turn she shines, \nRevolved on Heaven's great axle, and her reign \nWith thousand lesser lights dividual holds, \nWith thousand thousand stars, that then appeared \nSpangling the hemisphere:  Then first adorned \nWith their bright luminaries that set and rose, \nGlad evening and glad morn crowned the fourth day. \nAnd God said, Let the waters generate \nReptile with spawn abundant, living soul: \nAnd let fowl fly above the Earth, with wings \nDisplayed on the open firmament of Heaven. \nAnd God created the great whales, and each \nSoul living, each that crept, which plenteously \nThe waters generated by their kinds; \nAnd every bird of wing after his kind; \nAnd saw that it was good, and blessed them, saying. \nBe fruitful, multiply, and in the seas, \nAnd lakes, and running streams, the waters fill; \nAnd let the fowl be multiplied, on the Earth. \nForthwith the sounds and seas, each creek and bay, \nWith fry innumerable swarm, and shoals \nOf fish that with their fins, and shining scales, \nGlide under the green wave, in sculls that oft \nBank the mid sea: part single, or with mate, \nGraze the sea-weed their pasture, and through groves \nOf coral stray; or, sporting with quick glance, \nShow to the sun their waved coats dropt with gold; \nOr, in their pearly shells at ease, attend \nMoist nutriment; or under rocks their food \nIn jointed armour watch: on smooth the seal \nAnd bended dolphins play: part huge of bulk \nWallowing unwieldy, enormous in their gait, \nTempest the ocean: there leviathan, \nHugest of living creatures, on the deep \nStretched like a promontory sleeps or swims, \nAnd seems a moving land; and at his gills \nDraws in, and at his trunk spouts out, a sea. \nMean while the tepid caves, and fens, and shores, \nTheir brood as numerous hatch, from the egg that soon \nBursting with kindly rupture forth disclosed \nTheir callow young; but feathered soon and fledge \nThey summed their pens; and, soaring the air sublime, \nWith clang despised the ground, under a cloud \nIn prospect; there the eagle and the stork \nOn cliffs and cedar tops their eyries build: \nPart loosely wing the region, part more wise \nIn common, ranged in figure, wedge their way, \nIntelligent of seasons, and set forth \nTheir aery caravan, high over seas \nFlying, and over lands, with mutual wing \nEasing their flight; so steers the prudent crane \nHer annual voyage, borne on winds; the air \nFloats as they pass, fanned with unnumbered plumes: \nFrom branch to branch the smaller birds with song \nSolaced the woods, and spread their painted wings \nTill even; nor then the solemn nightingale \nCeased warbling, but all night tun'd her soft lays: \nOthers, on silver lakes and rivers, bathed \nTheir downy breast; the swan with arched neck, \nBetween her white wings mantling proudly, rows \nHer state with oary feet; yet oft they quit \nThe dank, and, rising on stiff pennons, tower \nThe mid aereal sky:  Others on ground \nWalked firm; the crested cock whose clarion sounds \nThe silent hours, and the other whose gay train \nAdorns him, coloured with the florid hue \nOf rainbows and starry eyes.  The waters thus \nWith fish replenished, and the air with fowl, \nEvening and morn solemnized the fifth day. \nThe sixth, and of creation last, arose \nWith evening harps and matin; when God said, \nLet the Earth bring forth soul living in her kind, \nCattle, and creeping things, and beast of the Earth, \nEach in their kind.  The Earth obeyed, and straight \nOpening her fertile womb teemed at a birth \nInnumerous living creatures, perfect forms, \nLimbed and full grown:  Out of the ground up rose, \nAs from his lair, the wild beast where he wons \nIn forest wild, in thicket, brake, or den; \nAmong the trees in pairs they rose, they walked: \nThe cattle in the fields and meadows green: \nThose rare and solitary, these in flocks \nPasturing at once, and in broad herds upsprung. \nThe grassy clods now calved; now half appeared \nThe tawny lion, pawing to get free \nHis hinder parts, then springs as broke from bonds, \nAnd rampant shakes his brinded mane; the ounce, \nThe libbard, and the tiger, as the mole \nRising, the crumbled earth above them threw \nIn hillocks:  The swift stag from under ground \nBore up his branching head:  Scarce from his mould \nBehemoth biggest born of earth upheaved \nHis vastness:  Fleeced the flocks and bleating rose, \nAs plants:  Ambiguous between sea and land \nThe river-horse, and scaly crocodile. \nAt once came forth whatever creeps the ground, \nInsect or worm: those waved their limber fans \nFor wings, and smallest lineaments exact \nIn all the liveries decked of summer's pride \nWith spots of gold and purple, azure and green: \nThese, as a line, their long dimension drew, \nStreaking the ground with sinuous trace; not all \nMinims of nature; some of serpent-kind, \nWonderous in length and corpulence, involved \nTheir snaky folds, and added wings.  First crept \nThe parsimonious emmet, provident \nOf future; in small room large heart enclosed; \nPattern of just equality perhaps \nHereafter, joined in her popular tribes \nOf commonalty:  Swarming next appeared \nThe female bee, that feeds her husband drone \nDeliciously, and builds her waxen cells \nWith honey stored:  The rest are numberless, \nAnd thou their natures knowest, and gavest them names, \nNeedless to thee repeated; nor unknown \nThe serpent, subtlest beast of all the field, \nOf huge extent sometimes, with brazen eyes \nAnd hairy mane terrifick, though to thee \nNot noxious, but obedient at thy call. \nNow Heaven in all her glory shone, and rolled \nHer motions, as the great first Mover's hand \nFirst wheeled their course:  Earth in her rich attire \nConsummate lovely smiled; air, water, earth, \nBy fowl, fish, beast, was flown, was swum, was walked, \nFrequent; and of the sixth day yet remained: \nThere wanted yet the master-work, the end \nOf all yet done; a creature, who, not prone \nAnd brute as other creatures, but endued \nWith sanctity of reason, might erect \nHis stature, and upright with front serene \nGovern the rest, self-knowing; and from thence \nMagnanimous to correspond with Heaven, \nBut grateful to acknowledge whence his good \nDescends, thither with heart, and voice, and eyes \nDirected in devotion, to adore \nAnd worship God Supreme, who made him chief \nOf all his works:  therefore the Omnipotent \nEternal Father (for where is not he \nPresent?) thus to his Son audibly spake. \nLet us make now Man in our image, Man \nIn our similitude, and let them rule \nOver the fish and fowl of sea and air, \nBeast of the field, and over all the Earth, \nAnd every creeping thing that creeps the ground. \nThis said, he formed thee, Adam, thee, O Man, \nDust of the ground, and in thy nostrils breathed \nThe breath of life; in his own image he \nCreated thee, in the image of God \nExpress; and thou becamest a living soul. \nMale he created thee; but thy consort \nFemale, for race; then blessed mankind, and said, \nBe fruitful, multiply, and fill the Earth; \nSubdue it, and throughout dominion hold \nOver fish of the sea, and fowl of the air, \nAnd every living thing that moves on the Earth. \nWherever thus created, for no place \nIs yet distinct by name, thence, as thou knowest, \nHe brought thee into this delicious grove, \nThis garden, planted with the trees of God, \nDelectable both to behold and taste; \nAnd freely all their pleasant fruit for food \nGave thee; all sorts are here that all the Earth yields, \nVariety without end; but of the tree, \nWhich, tasted, works knowledge of good and evil, \nThou mayest not; in the day thou eatest, thou diest; \nDeath is the penalty imposed; beware, \nAnd govern well thy appetite; lest Sin \nSurprise thee, and her black attendant Death. \nHere finished he, and all that he had made \nViewed, and behold all was entirely good; \nSo even and morn accomplished the sixth day: \nYet not till the Creator from his work \nDesisting, though unwearied, up returned, \nUp to the Heaven of Heavens, his high abode; \nThence to behold this new created world, \nThe addition of his empire, how it showed \nIn prospect from his throne, how good, how fair, \nAnswering his great idea.  Up he rode \nFollowed with acclamation, and the sound \nSymphonious of ten thousand harps, that tuned \nAngelick harmonies:  The earth, the air \nResounded, (thou rememberest, for thou heardst,) \nThe heavens and all the constellations rung, \nThe planets in their station listening stood, \nWhile the bright pomp ascended jubilant. \nOpen, ye everlasting gates! they sung, \nOpen, ye Heavens! your living doors;let in \nThe great Creator from his work returned \nMagnificent, his six days work, a World; \nOpen, and henceforth oft; for God will deign \nTo visit oft the dwellings of just men, \nDelighted; and with frequent intercourse \nThither will send his winged messengers \nOn errands of supernal grace.  So sung \nThe glorious train ascending:  He through Heaven, \nThat opened wide her blazing portals, led \nTo God's eternal house direct the way; \nA broad and ample road, whose dust is gold \nAnd pavement stars, as stars to thee appear, \nSeen in the galaxy, that milky way, \nWhich nightly, as a circling zone, thou seest \nPowdered with stars.  And now on Earth the seventh \nEvening arose in Eden, for the sun \nWas set, and twilight from the east came on, \nForerunning night; when at the holy mount \nOf Heaven's high-seated top, the imperial throne \nOf Godhead, fixed for ever firm and sure, \nThe Filial Power arrived, and sat him down \nWith his great Father; for he also went \nInvisible, yet staid, (such privilege \nHath Omnipresence) and the work ordained, \nAuthor and End of all things; and, from work \nNow resting, blessed and hallowed the seventh day, \nAs resting on that day from all his work, \nBut not in silence holy kept: the harp \nHad work and rested not; the solemn pipe, \nAnd dulcimer, all organs of sweet stop, \nAll sounds on fret by string or golden wire, \nTempered soft tunings, intermixed with voice \nChoral or unison: of incense clouds, \nFuming from golden censers, hid the mount. \nCreation and the six days acts they sung: \nGreat are thy works, Jehovah! infinite \nThy power! what thought can measure thee, or tongue \nRelate thee!  Greater now in thy return \nThan from the giant Angels:  Thee that day \nThy thunders magnified; but to create \nIs greater than created to destroy. \nWho can impair thee, Mighty King, or bound \nThy empire!  Easily the proud attempt \nOf Spirits apostate, and their counsels vain, \nThou hast repelled; while impiously they thought \nThee to diminish, and from thee withdraw \nThe number of thy worshippers.  Who seeks \nTo lessen thee, against his purpose serves \nTo manifest the more thy might: his evil \nThou usest, and from thence createst more good. \nWitness this new-made world, another Heaven \nFrom Heaven-gate not far, founded in view \nOn the clear hyaline, the glassy sea; \nOf amplitude almost immense, with stars \nNumerous, and every star perhaps a world \nOf destined habitation; but thou knowest \nTheir seasons: among these the seat of Men, \nEarth, with her nether ocean circumfused, \nTheir pleasant dwelling-place.  Thrice happy Men, \nAnd sons of Men, whom God hath thus advanced! \nCreated in his image, there to dwell \nAnd worship him; and in reward to rule \nOver his works, on earth, in sea, or air, \nAnd multiply a race of worshippers \nHoly and just:  Thrice happy, if they know \nTheir happiness, and persevere upright! \nSo sung they, and the empyrean rung \nWith halleluiahs:  Thus was sabbath kept. \nAnd thy request think now fulfilled, that asked \nHow first this world and face of things began, \nAnd what before thy memory was done \nFrom the beginning; that posterity, \nInformed by thee, might know:  If else thou seekest \nAught, not surpassing human measure, say. \n \n \n \nBook VIII                                                        \n \n \nThe Angel ended, and in Adam's ear \nSo charming left his voice, that he a while \nThought him still speaking, still stood fixed to hear; \nThen, as new waked, thus gratefully replied. \nWhat thanks sufficient, or what recompence \nEqual, have I to render thee, divine \nHistorian, who thus largely hast allayed \nThe thirst I had of knowledge, and vouchsafed \nThis friendly condescension to relate \nThings, else by me unsearchable; now heard \nWith wonder, but delight, and, as is due, \nWith glory attributed to the high \nCreator!  Something yet of doubt remains, \nWhich only thy solution can resolve. \nWhen I behold this goodly frame, this world, \nOf Heaven and Earth consisting; and compute \nTheir magnitudes; this Earth, a spot, a grain, \nAn atom, with the firmament compared \nAnd all her numbered stars, that seem to roll \nSpaces incomprehensible, (for such \nTheir distance argues, and their swift return \nDiurnal,) merely to officiate light \nRound this opacous Earth, this punctual spot, \nOne day and night; in all her vast survey \nUseless besides; reasoning I oft admire, \nHow Nature wise and frugal could commit \nSuch disproportions, with superfluous hand \nSo many nobler bodies to create, \nGreater so manifold, to this one use, \nFor aught appears, and on their orbs impose \nSuch restless revolution day by day \nRepeated; while the sedentary Earth, \nThat better might with far less compass move, \nServed by more noble than herself, attains \nHer end without least motion, and receives, \nAs tribute, such a sumless journey brought \nOf incorporeal speed, her warmth and light; \nSpeed, to describe whose swiftness number fails. \nSo spake our sire, and by his countenance seemed \nEntering on studious thoughts abstruse; which Eve \nPerceiving, where she sat retired in sight, \nWith lowliness majestick from her seat, \nAnd grace that won who saw to wish her stay, \nRose, and went forth among her fruits and flowers, \nTo visit how they prospered, bud and bloom, \nHer nursery; they at her coming sprung, \nAnd, touched by her fair tendance, gladlier grew. \nYet went she not, as not with such discourse \nDelighted, or not capable her ear \nOf what was high: such pleasure she reserved, \nAdam relating, she sole auditress; \nHer husband the relater she preferred \nBefore the Angel, and of him to ask \nChose rather; he, she knew, would intermix \nGrateful digressions, and solve high dispute \nWith conjugal caresses: from his lip \nNot words alone pleased her.  O! when meet now \nSuch pairs, in love and mutual honour joined? \nWith Goddess-like demeanour forth she went, \nNot unattended; for on her, as Queen, \nA pomp of winning Graces waited still, \nAnd from about her shot darts of desire \nInto all eyes, to wish her still in sight. \nAnd Raphael now, to Adam's doubt proposed, \nBenevolent and facile thus replied. \nTo ask or search, I blame thee not; for Heaven \nIs as the book of God before thee set, \nWherein to read his wonderous works, and learn \nHis seasons, hours, or days, or months, or years: \nThis to attain, whether Heaven move or Earth, \nImports not, if thou reckon right; the rest \nFrom Man or Angel the great Architect \nDid wisely to conceal, and not divulge \nHis secrets to be scanned by them who ought \nRather admire; or, if they list to try \nConjecture, he his fabrick of the Heavens \nHath left to their disputes, perhaps to move \nHis laughter at their quaint opinions wide \nHereafter; when they come to model Heaven \nAnd calculate the stars, how they will wield \nThe mighty frame; how build, unbuild, contrive \nTo save appearances; how gird the sphere \nWith centrick and eccentrick scribbled o'er, \nCycle and epicycle, orb in orb: \nAlready by thy reasoning this I guess, \nWho art to lead thy offspring, and supposest \nThat bodies bright and greater should not serve \nThe less not bright, nor Heaven such journeys run, \nEarth sitting still, when she alone receives \nThe benefit:  Consider first, that great \nOr bright infers not excellence: the Earth \nThough, in comparison of Heaven, so small, \nNor glistering, may of solid good contain \nMore plenty than the sun that barren shines; \nWhose virtue on itself works no effect, \nBut in the fruitful Earth; there first received, \nHis beams, unactive else, their vigour find. \nYet not to Earth are those bright luminaries \nOfficious; but to thee, Earth's habitant. \nAnd for the Heaven's wide circuit, let it speak \nThe Maker's high magnificence, who built \nSo spacious, and his line stretched out so far; \nThat Man may know he dwells not in his own; \nAn edifice too large for him to fill, \nLodged in a small partition; and the rest \nOrdained for uses to his Lord best known. \nThe swiftness of those circles attribute, \nThough numberless, to his Omnipotence, \nThat to corporeal substances could add \nSpeed almost spiritual:  Me thou thinkest not slow, \nWho since the morning-hour set out from Heaven \nWhere God resides, and ere mid-day arrived \nIn Eden; distance inexpressible \nBy numbers that have name.  But this I urge, \nAdmitting motion in the Heavens, to show \nInvalid that which thee to doubt it moved; \nNot that I so affirm, though so it seem \nTo thee who hast thy dwelling here on Earth. \nGod, to remove his ways from human sense, \nPlaced Heaven from Earth so far, that earthly sight, \nIf it presume, might err in things too high, \nAnd no advantage gain.  What if the sun \nBe center to the world; and other stars, \nBy his attractive virtue and their own \nIncited, dance about him various rounds? \nTheir wandering course now high, now low, then hid, \nProgressive, retrograde, or standing still, \nIn six thou seest; and what if seventh to these \nThe planet earth, so stedfast though she seem, \nInsensibly three different motions move? \nWhich else to several spheres thou must ascribe, \nMoved contrary with thwart obliquities; \nOr save the sun his labour, and that swift \nNocturnal and diurnal rhomb supposed, \nInvisible else above all stars, the wheel \nOf day and night; which needs not thy belief, \nIf earth, industrious of herself, fetch day \nTravelling east, and with her part averse \nFrom the sun's beam meet night, her other part \nStill luminous by his ray.  What if that light, \nSent from her through the wide transpicuous air, \nTo the terrestrial moon be as a star, \nEnlightening her by day, as she by night \nThis earth? reciprocal, if land be there, \nFields and inhabitants:  Her spots thou seest \nAs clouds, and clouds may rain, and rain produce \nFruits in her softened soil for some to eat \nAllotted there; and other suns perhaps, \nWith their attendant moons, thou wilt descry, \nCommunicating male and female light; \nWhich two great sexes animate the world, \nStored in each orb perhaps with some that live. \nFor such vast room in Nature unpossessed \nBy living soul, desart and desolate, \nOnly to shine, yet scarce to contribute \nEach orb a glimpse of light, conveyed so far \nDown to this habitable, which returns \nLight back to them, is obvious to dispute. \nBut whether thus these things, or whether not; \nBut whether the sun, predominant in Heaven, \nRise on the earth; or earth rise on the sun; \nHe from the east his flaming road begin; \nOr she from west her silent course advance, \nWith inoffensive pace that spinning sleeps \nOn her soft axle, while she paces even, \nAnd bears thee soft with the smooth hair along; \nSollicit not thy thoughts with matters hid; \nLeave them to God above; him serve, and fear! \nOf other creatures, as him pleases best, \nWherever placed, let him dispose; joy thou \nIn what he gives to thee, this Paradise \nAnd thy fair Eve; Heaven is for thee too high \nTo know what passes there; be lowly wise: \nThink only what concerns thee, and thy being; \nDream not of other worlds, what creatures there \nLive, in what state, condition, or degree; \nContented that thus far hath been revealed \nNot of Earth only, but of highest Heaven. \nTo whom thus Adam, cleared of doubt, replied. \nHow fully hast thou satisfied me, pure \nIntelligence of Heaven, Angel serene! \nAnd, freed from intricacies, taught to live \nThe easiest way; nor with perplexing thoughts \nTo interrupt the sweet of life, from which \nGod hath bid dwell far off all anxious cares, \nAnd not molest us; unless we ourselves \nSeek them with wandering thoughts, and notions vain. \nBut apt the mind or fancy is to rove \nUnchecked, and of her roving is no end; \nTill warned, or by experience taught, she learn, \nThat, not to know at large of things remote \nFrom use, obscure and subtle; but, to know \nThat which before us lies in daily life, \nIs the prime wisdom:  What is more, is fume, \nOr emptiness, or fond impertinence: \nAnd renders us, in things that most concern, \nUnpractised, unprepared, and still to seek. \nTherefore from this high pitch let us descend \nA lower flight, and speak of things at hand \nUseful; whence, haply, mention may arise \nOf something not unseasonable to ask, \nBy sufferance, and thy wonted favour, deigned. \nThee I have heard relating what was done \nEre my remembrance: now, hear me relate \nMy story, which perhaps thou hast not heard; \nAnd day is not yet spent; till then thou seest \nHow subtly to detain thee I devise; \nInviting thee to hear while I relate; \nFond! were it not in hope of thy reply: \nFor, while I sit with thee, I seem in Heaven; \nAnd sweeter thy discourse is to my ear \nThan fruits of palm-tree pleasantest to thirst \nAnd hunger both, from labour, at the hour \nOf sweet repast; they satiate, and soon fill, \nThough pleasant; but thy words, with grace divine \nImbued, bring to their sweetness no satiety. \nTo whom thus Raphael answered heavenly meek. \nNor are thy lips ungraceful, Sire of men, \nNor tongue ineloquent; for God on thee \nAbundantly his gifts hath also poured \nInward and outward both, his image fair: \nSpeaking, or mute, all comeliness and grace \nAttends thee; and each word, each motion, forms; \nNor less think we in Heaven of thee on Earth \nThan of our fellow-servant, and inquire \nGladly into the ways of God with Man: \nFor God, we see, hath honoured thee, and set \nOn Man his equal love:  Say therefore on; \nFor I that day was absent, as befel, \nBound on a voyage uncouth and obscure, \nFar on excursion toward the gates of Hell; \nSquared in full legion (such command we had) \nTo see that none thence issued forth a spy, \nOr enemy, while God was in his work; \nLest he, incensed at such eruption bold, \nDestruction with creation might have mixed. \nNot that they durst without his leave attempt; \nBut us he sends upon his high behests \nFor state, as Sovran King; and to inure \nOur prompt obedience.  Fast we found, fast shut, \nThe dismal gates, and barricadoed strong; \nBut long ere our approaching heard within \nNoise, other than the sound of dance or song, \nTorment, and loud lament, and furious rage. \nGlad we returned up to the coasts of light \nEre sabbath-evening: so we had in charge. \nBut thy relation now; for I attend, \nPleased with thy words no less than thou with mine. \nSo spake the Godlike Power, and thus our Sire. \nFor Man to tell how human life began \nIs hard; for who himself beginning knew \nDesire with thee still longer to converse \nInduced me.  As new waked from soundest sleep, \nSoft on the flowery herb I found me laid, \nIn balmy sweat; which with his beams the sun \nSoon dried, and on the reeking moisture fed. \nStraight toward Heaven my wondering eyes I turned, \nAnd gazed a while the ample sky; till, raised \nBy quick instinctive motion, up I sprung, \nAs thitherward endeavouring, and upright \nStood on my feet: about me round I saw \nHill, dale, and shady woods, and sunny plains, \nAnd liquid lapse of murmuring streams; by these, \nCreatures that lived and moved, and walked, or flew; \nBirds on the branches warbling; all things smiled; \nWith fragrance and with joy my heart o'erflowed. \nMyself I then perused, and limb by limb \nSurveyed, and sometimes went, and sometimes ran \nWith supple joints, as lively vigour led: \nBut who I was, or where, or from what cause, \nKnew not; to speak I tried, and forthwith spake; \nMy tongue obeyed, and readily could name \nWhate'er I saw.  Thou Sun, said I, fair light, \nAnd thou enlightened Earth, so fresh and gay, \nYe Hills, and Dales, ye Rivers, Woods, and Plains, \nAnd ye that live and move, fair Creatures, tell, \nTell, if ye saw, how I came thus, how here?-- \nNot of myself;--by some great Maker then, \nIn goodness and in power pre-eminent: \nTell me, how may I know him, how adore, \nFrom whom I have that thus I move and live, \nAnd feel that I am happier than I know.-- \nWhile thus I called, and strayed I knew not whither, \nFrom where I first drew air, and first beheld \nThis happy light; when, answer none returned, \nOn a green shady bank, profuse of flowers, \nPensive I sat me down:  There gentle sleep \nFirst found me, and with soft oppression seised \nMy droused sense, untroubled, though I thought \nI then was passing to my former state \nInsensible, and forthwith to dissolve: \nWhen suddenly stood at my head a dream, \nWhose inward apparition gently moved \nMy fancy to believe I yet had being, \nAnd lived:  One came, methought, of shape divine, \nAnd said, 'Thy mansion wants thee, Adam; rise, \n'First Man, of men innumerable ordained \n'First Father! called by thee, I come thy guide \n'To the garden of bliss, thy seat prepared.' \nSo saying, by the hand he took me raised, \nAnd over fields and waters, as in air \nSmooth-sliding without step, last led me up \nA woody mountain; whose high top was plain, \nA circuit wide, enclosed, with goodliest trees \nPlanted, with walks, and bowers; that what I saw \nOf Earth before scarce pleasant seemed.  Each tree, \nLoaden with fairest fruit that hung to the eye \nTempting, stirred in me sudden appetite \nTo pluck and eat; whereat I waked, and found \nBefore mine eyes all real, as the dream \nHad lively shadowed:  Here had new begun \nMy wandering, had not he, who was my guide \nUp hither, from among the trees appeared, \nPresence Divine.  Rejoicing, but with awe, \nIn adoration at his feet I fell \nSubmiss:  He reared me, and 'Whom thou soughtest I am,' \nSaid mildly, 'Author of all this thou seest \n'Above, or round about thee, or beneath. \n'This Paradise I give thee, count it thine \n'To till and keep, and of the fruit to eat: \n'Of every tree that in the garden grows \n'Eat freely with glad heart; fear here no dearth: \n'But of the tree whose operation brings \n'Knowledge of good and ill, which I have set \n'The pledge of thy obedience and thy faith, \n'Amid the garden by the tree of life, \n'Remember what I warn thee, shun to taste, \n'And shun the bitter consequence: for know, \n'The day thou eatest thereof, my sole command \n'Transgressed, inevitably thou shalt die, \n'From that day mortal; and this happy state \n'Shalt lose, expelled from hence into a world \n'Of woe and sorrow.'  Sternly he pronounced \nThe rigid interdiction, which resounds \nYet dreadful in mine ear, though in my choice \nNot to incur; but soon his clear aspect \nReturned, and gracious purpose thus renewed. \n'Not only these fair bounds, but all the Earth \n'To thee and to thy race I give; as lords \n'Possess it, and all things that therein live, \n'Or live in sea, or air; beast, fish, and fowl. \n'In sign whereof, each bird and beast behold \n'After their kinds; I bring them to receive \n'From thee their names, and pay thee fealty \n'With low subjection; understand the same \n'Of fish within their watery residence, \n'Not hither summoned, since they cannot change \n'Their element, to draw the thinner air.' \nAs thus he spake, each bird and beast behold \nApproaching two and two; these cowering low \nWith blandishment; each bird stooped on his wing. \nI named them, as they passed, and understood \nTheir nature, with such knowledge God endued \nMy sudden apprehension:  But in these \nI found not what methought I wanted still; \nAnd to the heavenly Vision thus presumed. \nO, by what name, for thou above all these, \nAbove mankind, or aught than mankind higher, \nSurpassest far my naming; how may I \nAdore thee, Author of this universe, \nAnd all this good to man? for whose well being \nSo amply, and with hands so liberal, \nThou hast provided all things:  But with me \nI see not who partakes.  In solitude \nWhat happiness, who can enjoy alone, \nOr, all enjoying, what contentment find? \nThus I presumptuous; and the Vision bright, \nAs with a smile more brightened, thus replied. \nWhat callest thou solitude?  Is not the Earth \nWith various living creatures, and the air \nReplenished, and all these at thy command \nTo come and play before thee?  Knowest thou not \nTheir language and their ways?  They also know, \nAnd reason not contemptibly:  With these \nFind pastime, and bear rule; thy realm is large. \nSo spake the Universal Lord, and seemed \nSo ordering:  I, with leave of speech implored, \nAnd humble deprecation, thus replied. \nLet not my words offend thee, Heavenly Power; \nMy Maker, be propitious while I speak. \nHast thou not made me here thy substitute, \nAnd these inferiour far beneath me set? \nAmong unequals what society \nCan sort, what harmony, or true delight? \nWhich must be mutual, in proportion due \nGiven and received; but, in disparity \nThe one intense, the other still remiss, \nCannot well suit with either, but soon prove \nTedious alike:  Of fellowship I speak \nSuch as I seek, fit to participate \nAll rational delight: wherein the brute \nCannot be human consort:  They rejoice \nEach with their kind, lion with lioness; \nSo fitly them in pairs thou hast combined: \nMuch less can bird with beast, or fish with fowl \nSo well converse, nor with the ox the ape; \nWorse then can man with beast, and least of all. \nWhereto the Almighty answered, not displeased. \nA nice and subtle happiness, I see, \nThou to thyself proposest, in the choice \nOf thy associates, Adam! and wilt taste \nNo pleasure, though in pleasure, solitary. \nWhat thinkest thou then of me, and this my state? \nSeem I to thee sufficiently possessed \nOf happiness, or not? who am alone \nFrom all eternity; for none I know \nSecond to me or like, equal much less. \nHow have I then with whom to hold converse, \nSave with the creatures which I made, and those \nTo me inferiour, infinite descents \nBeneath what other creatures are to thee? \nHe ceased; I lowly answered.  To attain \nThe highth and depth of thy eternal ways \nAll human thoughts come short, Supreme of things! \nThou in thyself art perfect, and in thee \nIs no deficience found:  Not so is Man, \nBut in degree; the cause of his desire \nBy conversation with his like to help \nOr solace his defects.  No need that thou \nShouldst propagate, already Infinite; \nAnd through all numbers absolute, though One: \nBut Man by number is to manifest \nHis single imperfection, and beget \nLike of his like, his image multiplied, \nIn unity defective; which requires \nCollateral love, and dearest amity. \nThou in thy secresy although alone, \nBest with thyself accompanied, seekest not \nSocial communication; yet, so pleased, \nCanst raise thy creature to what highth thou wilt \nOf union or communion, deified: \nI, by conversing, cannot these erect \nFrom prone; nor in their ways complacence find. \nThus I emboldened spake, and freedom used \nPermissive, and acceptance found; which gained \nThis answer from the gracious Voice Divine. \nThus far to try thee, Adam, I was pleased; \nAnd find thee knowing, not of beasts alone, \nWhich thou hast rightly named, but of thyself; \nExpressing well the spirit within thee free, \nMy image, not imparted to the brute; \nWhose fellowship therefore unmeet for thee \nGood reason was thou freely shouldst dislike; \nAnd be so minded still:  I, ere thou spakest, \nKnew it not good for Man to be alone; \nAnd no such company as then thou sawest \nIntended thee; for trial only brought, \nTo see how thou couldest judge of fit and meet: \nWhat next I bring shall please thee, be assured, \nThy likeness, thy fit help, thy other self, \nThy wish exactly to thy heart's desire. \nHe ended, or I heard no more; for now \nMy earthly by his heavenly overpowered, \nWhich it had long stood under, strained to the highth \nIn that celestial colloquy sublime, \nAs with an object that excels the sense \nDazzled and spent, sunk down; and sought repair \nOf sleep, which instantly fell on me, called \nBy Nature as in aid, and closed mine eyes. \nMine eyes he closed, but open left the cell \nOf fancy, my internal sight; by which, \nAbstract as in a trance, methought I saw, \nThough sleeping, where I lay, and saw the shape \nStill glorious before whom awake I stood: \nWho stooping opened my left side, and took \nFrom thence a rib, with cordial spirits warm, \nAnd life-blood streaming fresh; wide was the wound, \nBut suddenly with flesh filled up and healed: \nThe rib he formed and fashioned with his hands; \nUnder his forming hands a creature grew, \nMan-like, but different sex; so lovely fair, \nThat what seemed fair in all the world, seemed now \nMean, or in her summed up, in her contained \nAnd in her looks; which from that time infused \nSweetness into my heart, unfelt before, \nAnd into all things from her air inspired \nThe spirit of love and amorous delight. \nShe disappeared, and left me dark; I waked \nTo find her, or for ever to deplore \nHer loss, and other pleasures all abjure: \nWhen out of hope, behold her, not far off, \nSuch as I saw her in my dream, adorned \nWith what all Earth or Heaven could bestow \nTo make her amiable:  On she came, \nLed by her heavenly Maker, though unseen, \nAnd guided by his voice; nor uninformed \nOf nuptial sanctity, and marriage rites: \nGrace was in all her steps, Heaven in her eye, \nIn every gesture dignity and love. \nI, overjoyed, could not forbear aloud. \nThis turn hath made amends; thou hast fulfilled \nThy words, Creator bounteous and benign, \nGiver of all things fair! but fairest this \nOf all thy gifts! nor enviest.  I now see \nBone of my bone, flesh of my flesh, myself \nBefore me:  Woman is her name;of Man \nExtracted: for this cause he shall forego \nFather and mother, and to his wife adhere; \nAnd they shall be one flesh, one heart, one soul. \nShe heard me thus; and though divinely brought, \nYet innocence, and virgin modesty, \nHer virtue, and the conscience of her worth, \nThat would be wooed, and not unsought be won, \nNot obvious, not obtrusive, but, retired, \nThe more desirable; or, to say all, \nNature herself, though pure of sinful thought, \nWrought in her so, that, seeing me, she turned: \nI followed her; she what was honour knew, \nAnd with obsequious majesty approved \nMy pleaded reason.  To the nuptial bower \nI led her blushing like the morn: All Heaven, \nAnd happy constellations, on that hour \nShed their selectest influence; the Earth \nGave sign of gratulation, and each hill; \nJoyous the birds; fresh gales and gentle airs \nWhispered it to the woods, and from their wings \nFlung rose, flung odours from the spicy shrub, \nDisporting, till the amorous bird of night \nSung spousal, and bid haste the evening-star \nOn his hill top, to light the bridal lamp. \nThus have I told thee all my state, and brought \nMy story to the sum of earthly bliss, \nWhich I enjoy; and must confess to find \nIn all things else delight indeed, but such \nAs, used or not, works in the mind no change, \nNor vehement desire; these delicacies \nI mean of taste, sight, smell, herbs, fruits, and flowers, \nWalks, and the melody of birds: but here \nFar otherwise, transported I behold, \nTransported touch; here passion first I felt, \nCommotion strange! in all enjoyments else \nSuperiour and unmoved; here only weak \nAgainst the charm of Beauty's powerful glance. \nOr Nature failed in me, and left some part \nNot proof enough such object to sustain; \nOr, from my side subducting, took perhaps \nMore than enough; at least on her bestowed \nToo much of ornament, in outward show \nElaborate, of inward less exact. \nFor well I understand in the prime end \nOf Nature her the inferiour, in the mind \nAnd inward faculties, which most excel; \nIn outward also her resembling less \nHis image who made both, and less expressing \nThe character of that dominion given \nO'er other creatures:  Yet when I approach \nHer loveliness, so absolute she seems \nAnd in herself complete, so well to know \nHer own, that what she wills to do or say, \nSeems wisest, virtuousest, discreetest, best: \nAll higher knowledge in her presence falls \nDegraded;  Wisdom in discourse with her \nLoses discountenanced, and like Folly shows; \nAuthority and Reason on her wait, \nAs one intended first, not after made \nOccasionally; and, to consummate all, \nGreatness of mind and Nobleness their seat \nBuild in her loveliest, and create an awe \nAbout her, as a guard angelick placed. \nTo whom the Angel with contracted brow. \nAccuse not Nature, she hath done her part; \nDo thou but thine; and be not diffident \nOf Wisdom; she deserts thee not, if thou \nDismiss not her, when most thou needest her nigh, \nBy attributing overmuch to things \nLess excellent, as thou thyself perceivest. \nFor, what admirest thou, what transports thee so, \nAn outside? fair, no doubt, and worthy well \nThy cherishing, thy honouring, and thy love; \nNot thy subjection:  Weigh with her thyself; \nThen value:  Oft-times nothing profits more \nThan self-esteem, grounded on just and right \nWell managed; of that skill the more thou knowest, \nThe more she will acknowledge thee her head, \nAnd to realities yield all her shows: \nMade so adorn for thy delight the more, \nSo awful, that with honour thou mayest love \nThy mate, who sees when thou art seen least wise. \nBut if the sense of touch, whereby mankind \nIs propagated, seem such dear delight \nBeyond all other; think the same vouchsafed \nTo cattle and each beast; which would not be \nTo them made common and divulged, if aught \nTherein enjoyed were worthy to subdue \nThe soul of man, or passion in him move. \nWhat higher in her society thou findest \nAttractive, human, rational, love still; \nIn loving thou dost well, in passion not, \nWherein true love consists not:  Love refines \nThe thoughts, and heart enlarges; hath his seat \nIn reason, and is judicious; is the scale \nBy which to heavenly love thou mayest ascend, \nNot sunk in carnal pleasure; for which cause, \nAmong the beasts no mate for thee was found. \nTo whom thus, half abashed, Adam replied. \nNeither her outside formed so fair, nor aught \nIn procreation common to all kinds, \n(Though higher of the genial bed by far, \nAnd with mysterious reverence I deem,) \nSo much delights me, as those graceful acts, \nThose thousand decencies, that daily flow \nFrom all her words and actions mixed with love \nAnd sweet compliance, which declare unfeigned \nUnion of mind, or in us both one soul; \nHarmony to behold in wedded pair \nMore grateful than harmonious sound to the ear. \nYet these subject not; I to thee disclose \nWhat inward thence I feel, not therefore foiled, \nWho meet with various objects, from the sense \nVariously representing; yet, still free, \nApprove the best, and follow what I approve. \nTo love, thou blamest me not; for Love, thou sayest, \nLeads up to Heaven, is both the way and guide; \nBear with me then, if lawful what I ask: \nLove not the heavenly Spirits, and how their love \nExpress they? by looks only? or do they mix \nIrradiance, virtual or immediate touch? \nTo whom the Angel, with a smile that glowed \nCelestial rosy red, Love's proper hue, \nAnswered.  Let it suffice thee that thou knowest \nUs happy, and without love no happiness. \nWhatever pure thou in the body enjoyest, \n(And pure thou wert created) we enjoy \nIn eminence; and obstacle find none \nOf membrane, joint, or limb, exclusive bars; \nEasier than air with air, if Spirits embrace, \nTotal they mix, union of pure with pure \nDesiring, nor restrained conveyance need, \nAs flesh to mix with flesh, or soul with soul. \nBut I can now no more; the parting sun \nBeyond the Earth's green Cape and verdant Isles \nHesperian sets, my signal to depart. \nBe strong, live happy, and love!  But, first of all, \nHim, whom to love is to obey, and keep \nHis great command; take heed lest passion sway \nThy judgement to do aught, which else free will \nWould not admit: thine, and of all thy sons, \nThe weal or woe in thee is placed; beware! \nI in thy persevering shall rejoice, \nAnd all the Blest:  Stand fast;to stand or fall \nFree in thine own arbitrement it lies. \nPerfect within, no outward aid require; \nAnd all temptation to transgress repel. \nSo saying, he arose; whom Adam thus \nFollowed with benediction.  Since to part, \nGo, heavenly guest, ethereal Messenger, \nSent from whose sovran goodness I adore! \nGentle to me and affable hath been \nThy condescension, and shall be honoured ever \nWith grateful memory:  Thou to mankind \nBe good and friendly still, and oft return! \nSo parted they; the Angel up to Heaven \nFrom the thick shade, and Adam to his bower. \n \n \n \nBook IX                                                          \n \n \nNo more of talk where God or Angel guest \nWith Man, as with his friend, familiar us'd, \nTo sit indulgent, and with him partake \nRural repast; permitting him the while \nVenial discourse unblam'd. I now must change \nThose notes to tragick; foul distrust, and breach \nDisloyal on the part of Man, revolt, \nAnd disobedience: on the part of Heaven \nNow alienated, distance and distaste, \nAnger and just rebuke, and judgement given, \nThat brought into this world a world of woe, \nSin and her shadow Death, and Misery \nDeath's harbinger: Sad talk!yet argument \nNot less but more heroick than the wrath \nOf stern Achilles on his foe pursued \nThrice fugitive about Troy wall; or rage \nOf Turnus for Lavinia disespous'd; \nOr Neptune's ire, or Juno's, that so long \nPerplexed the Greek, and Cytherea's son:                         \n \n   00482129  \nIf answerable style I can obtain \nOf my celestial patroness, who deigns \nHer nightly visitation unimplor'd, \nAnd dictates to me slumbering; or inspires \nEasy my unpremeditated verse: \nSince first this subject for heroick song \nPleas'd me long choosing, and beginning late; \nNot sedulous by nature to indite \nWars, hitherto the only argument \nHeroick deem'd chief mastery to dissect \nWith long and tedious havock fabled knights \nIn battles feign'd; the better fortitude \nOf patience and heroick martyrdom \nUnsung; or to describe races and games, \nOr tilting furniture, imblazon'd shields, \nImpresses quaint, caparisons and steeds, \nBases and tinsel trappings, gorgeous knights \nAt joust and tournament; then marshall'd feast \nServ'd up in hall with sewers and seneshals; \nThe skill of artifice or office mean, \nNot that which justly gives heroick name \nTo person, or to poem.  Me, of these \nNor skill'd nor studious, higher argument \nRemains; sufficient of itself to raise \nThat name, unless an age too late, or cold \nClimate, or years, damp my intended wing \nDepress'd; and much they may, if all be mine, \nNot hers, who brings it nightly to my ear. \nThe sun was sunk, and after him the star \nOf Hesperus, whose office is to bring \nTwilight upon the earth, short arbiter \n\"twixt day and night, and now from end to end \nNight's hemisphere had veil'd the horizon round: \nWhen satan, who late fled before the threats \nOf Gabriel out of Eden, now improv'd \nIn meditated fraud and malice, bent \nOn Man's destruction, maugre what might hap \nOf heavier on himself, fearless returned \nFrom compassing the earth; cautious of day, \nSince Uriel, regent of the sun, descried \nHis entrance, and foreworned the Cherubim \nThat kept their watch; thence full of anguish driven, \nThe space of seven continued nights he rode \nWith darkness; thrice the equinoctial line \nHe circled; four times crossed the car of night \nFrom pole to pole, traversing each colure; \nOn the eighth returned; and, on the coast averse \nFrom entrance or Cherubick watch, by stealth \nFound unsuspected way.  There was a place, \nNow not, though sin, not time, first wrought the change, \nWhere Tigris, at the foot of Paradise, \nInto a gulf shot under ground, till part \nRose up a fountain by the tree of life: \nIn with the river sunk, and with it rose \nSatan, involved in rising mist; then sought \nWhere to lie hid; sea he had searched, and land, \nFrom Eden over Pontus and the pool \nMaeotis, up beyond the river Ob; \nDownward as far antarctick; and in length, \nWest from Orontes to the ocean barred \nAt Darien ; thence to the land where flows \nGanges and Indus: Thus the orb he roamed \nWith narrow search; and with inspection deep \nConsidered every creature, which of all \nMost opportune might serve his wiles; and found \nThe Serpent subtlest beast of all the field. \nHim after long debate, irresolute \nOf thoughts revolved, his final sentence chose \nFit vessel, fittest imp of fraud, in whom \nTo enter, and his dark suggestions hide \nFrom sharpest sight: for, in the wily snake \nWhatever sleights, none would suspicious mark, \nAs from his wit and native subtlety \nProceeding; which, in other beasts observed, \nDoubt might beget of diabolick power \nActive within, beyond the sense of brute. \nThus he resolved, but first from inward grief \nHis bursting passion into plaints thus poured. \nMore justly, seat worthier of Gods, as built \nWith second thoughts, reforming what was old! \nO Earth, how like to Heaven, if not preferred \nFor what God, after better, worse would build? \nTerrestrial Heaven, danced round by other Heavens \nThat shine, yet bear their bright officious lamps, \nLight above light, for thee alone, as seems, \nIn thee concentring all their precious beams \nOf sacred influence!  As God in Heaven \nIs center, yet extends to all; so thou, \nCentring, receivest from all those orbs: in thee, \nNot in themselves, all their known virtue appears \nProductive in herb, plant, and nobler birth \nOf creatures animate with gradual life \nOf growth, sense, reason, all summed up in Man. \nWith what delight could I have walked thee round, \nIf I could joy in aught, sweet interchange \nOf hill, and valley, rivers, woods, and plains, \nNow land, now sea and shores with forest crowned, \nRocks, dens, and caves!  But I in none of these \nFind place or refuge; and the more I see \nPleasures about me, so much more I feel \nTorment within me, as from the hateful siege \nOf contraries: all good to me becomes \nBane, and in Heaven much worse would be my state. \nBut neither here seek I, no nor in Heaven \nTo dwell, unless by mastering Heaven's Supreme; \nNor hope to be myself less miserable \nBy what I seek, but others to make such \nAs I, though thereby worse to me redound: \nFor only in destroying I find ease \nTo my relentless thoughts; and, him destroyed, \nOr won to what may work his utter loss, \nFor whom all this was made, all this will soon \nFollow, as to him linked in weal or woe; \nIn woe then; that destruction wide may range: \nTo me shall be the glory sole among \nThe infernal Powers, in one day to have marred \nWhat he, Almighty styled, six nights and days \nContinued making; and who knows how long \nBefore had been contriving? though perhaps \nNot longer than since I, in one night, freed \nFrom servitude inglorious well nigh half \nThe angelick name, and thinner left the throng \nOf his adorers: He, to be avenged, \nAnd to repair his numbers thus impaired, \nWhether such virtue spent of old now failed \nMore Angels to create, if they at least \nAre his created, or, to spite us more, \nDetermined to advance into our room \nA creature formed of earth, and him endow, \nExalted from so base original, \nWith heavenly spoils, our spoils: What he decreed, \nHe effected; Man he made, and for him built \nMagnificent this world, and earth his seat, \nHim lord pronounced; and, O indignity! \nSubjected to his service angel-wings, \nAnd flaming ministers to watch and tend \nTheir earthly charge: Of these the vigilance \nI dread; and, to elude, thus wrapt in mist \nOf midnight vapour glide obscure, and pry \nIn every bush and brake, where hap may find \nThe serpent sleeping; in whose mazy folds \nTo hide me, and the dark intent I bring. \nO foul descent! that I, who erst contended \nWith Gods to sit the highest, am now constrained \nInto a beast; and, mixed with bestial slime, \nThis essence to incarnate and imbrute, \nThat to the highth of Deity aspired! \nBut what will not ambition and revenge \nDescend to?  Who aspires, must down as low \nAs high he soared; obnoxious, first or last, \nTo basest things.  Revenge, at first though sweet, \nBitter ere long, back on itself recoils: \nLet it; I reck not, so it light well aimed, \nSince higher I fall short, on him who next \nProvokes my envy, this new favourite \nOf Heaven, this man of clay, son of despite, \nWhom, us the more to spite, his Maker raised \nFrom dust: Spite then with spite is best repaid. \nSo saying, through each thicket dank or dry, \nLike a black mist low-creeping, he held on \nHis midnight-search, where soonest he might find \nThe serpent; him fast-sleeping soon he found \nIn labyrinth of many a round self-rolled, \nHis head the midst, well stored with subtile wiles: \nNot yet in horrid shade or dismal den, \nNor nocent yet; but, on the grassy herb, \nFearless unfeared he slept: in at his mouth \nThe Devil entered; and his brutal sense, \nIn heart or head, possessing, soon inspired \nWith act intelligential; but his sleep \nDisturbed not, waiting close the approach of morn. \nNow, when as sacred light began to dawn \nIn Eden on the humid flowers, that breathed \nTheir morning incense, when all things, that breathe, \nFrom the Earth's great altar send up silent praise \nTo the Creator, and his nostrils fill \nWith grateful smell, forth came the human pair, \nAnd joined their vocal worship to the quire \nOf creatures wanting voice; that done, partake \nThe season prime for sweetest scents and airs: \nThen commune, how that day they best may ply \nTheir growing work: for much their work out-grew \nThe hands' dispatch of two gardening so wide, \nAnd Eve first to her husband thus began. \nAdam, well may we labour still to dress \nThis garden, still to tend plant, herb, and flower, \nOur pleasant task enjoined; but, till more hands \nAid us, the work under our labour grows, \nLuxurious by restraint; what we by day \nLop overgrown, or prune, or prop, or bind, \nOne night or two with wanton growth derides \nTending to wild.  Thou therefore now advise, \nOr bear what to my mind first thoughts present: \nLet us divide our labours; thou, where choice \nLeads thee, or where most needs, whether to wind \nThe woodbine round this arbour, or direct \nThe clasping ivy where to climb; while I, \nIn yonder spring of roses intermixed \nWith myrtle, find what to redress till noon: \nFor, while so near each other thus all day \nOur task we choose, what wonder if so near \nLooks intervene and smiles, or object new \nCasual discourse draw on; which intermits \nOur day's work, brought to little, though begun \nEarly, and the hour of supper comes unearned? \nTo whom mild answer Adam thus returned. \nSole Eve, associate sole, to me beyond \nCompare above all living creatures dear! \nWell hast thou motioned, well thy thoughts employed, \nHow we might best fulfil the work which here \nGod hath assigned us; nor of me shalt pass \nUnpraised: for nothing lovelier can be found \nIn woman, than to study houshold good, \nAnd good works in her husband to promote. \nYet not so strictly hath our Lord imposed \nLabour, as to debar us when we need \nRefreshment, whether food, or talk between, \nFood of the mind, or this sweet intercourse \nOf looks and smiles; for smiles from reason flow, \nTo brute denied, and are of love the food; \nLove, not the lowest end of human life. \nFor not to irksome toil, but to delight, \nHe made us, and delight to reason joined. \nThese paths and bowers doubt not but our joint hands \nWill keep from wilderness with ease, as wide \nAs we need walk, till younger hands ere long \nAssist us; But, if much converse perhaps \nThee satiate, to short absence I could yield: \nFor solitude sometimes is best society, \nAnd short retirement urges sweet return. \nBut other doubt possesses me, lest harm \nBefall thee severed from me; for thou knowest \nWhat hath been warned us, what malicious foe \nEnvying our happiness, and of his own \nDespairing, seeks to work us woe and shame \nBy sly assault; and somewhere nigh at hand \nWatches, no doubt, with greedy hope to find \nHis wish and best advantage, us asunder; \nHopeless to circumvent us joined, where each \nTo other speedy aid might lend at need: \nWhether his first design be to withdraw \nOur fealty from God, or to disturb \nConjugal love, than which perhaps no bliss \nEnjoyed by us excites his envy more; \nOr this, or worse, leave not the faithful side \nThat gave thee being, still shades thee, and protects. \nThe wife, where danger or dishonour lurks, \nSafest and seemliest by her husband stays, \nWho guards her, or with her the worst endures. \nTo whom the virgin majesty of Eve, \nAs one who loves, and some unkindness meets, \nWith sweet austere composure thus replied. \nOffspring of Heaven and Earth, and all Earth's Lord! \nThat such an enemy we have, who seeks \nOur ruin, both by thee informed I learn, \nAnd from the parting Angel over-heard, \nAs in a shady nook I stood behind, \nJust then returned at shut of evening flowers. \nBut, that thou shouldst my firmness therefore doubt \nTo God or thee, because we have a foe \nMay tempt it, I expected not to hear. \nHis violence thou fearest not, being such \nAs we, not capable of death or pain, \nCan either not receive, or can repel. \nHis fraud is then thy fear; which plain infers \nThy equal fear, that my firm faith and love \nCan by his fraud be shaken or seduced; \nThoughts, which how found they harbour in thy breast, \nAdam, mis-thought of her to thee so dear? \nTo whom with healing words Adam replied. \nDaughter of God and Man, immortal Eve! \nFor such thou art; from sin and blame entire: \nNot diffident of thee do I dissuade \nThy absence from my sight, but to avoid \nThe attempt itself, intended by our foe. \nFor he who tempts, though in vain, at least asperses \nThe tempted with dishonour foul; supposed \nNot incorruptible of faith, not proof \nAgainst temptation: Thou thyself with scorn \nAnd anger wouldst resent the offered wrong, \nThough ineffectual found: misdeem not then, \nIf such affront I labour to avert \nFrom thee alone, which on us both at once \nThe enemy, though bold, will hardly dare; \nOr daring, first on me the assault shall light. \nNor thou his malice and false guile contemn; \nSubtle he needs must be, who could seduce \nAngels; nor think superfluous other's aid. \nI, from the influence of thy looks, receive \nAccess in every virtue; in thy sight \nMore wise, more watchful, stronger, if need were \nOf outward strength; while shame, thou looking on, \nShame to be overcome or over-reached, \nWould utmost vigour raise, and raised unite. \nWhy shouldst not thou like sense within thee feel \nWhen I am present, and thy trial choose \nWith me, best witness of thy virtue tried? \nSo spake domestick Adam in his care \nAnd matrimonial love; but Eve, who thought \nLess attributed to her faith sincere, \nThus her reply with accent sweet renewed. \nIf this be our condition, thus to dwell \nIn narrow circuit straitened by a foe, \nSubtle or violent, we not endued \nSingle with like defence, wherever met; \nHow are we happy, still in fear of harm? \nBut harm precedes not sin: only our foe, \nTempting, affronts us with his foul esteem \nOf our integrity: his foul esteem \nSticks no dishonour on our front, but turns \nFoul on himself; then wherefore shunned or feared \nBy us? who rather double honour gain \nFrom his surmise proved false; find peace within, \nFavour from Heaven, our witness, from the event. \nAnd what is faith, love, virtue, unassayed \nAlone, without exteriour help sustained? \nLet us not then suspect our happy state \nLeft so imperfect by the Maker wise, \nAs not secure to single or combined. \nFrail is our happiness, if this be so, \nAnd Eden were no Eden, thus exposed. \nTo whom thus Adam fervently replied. \nO Woman, best are all things as the will \nOf God ordained them: His creating hand \nNothing imperfect or deficient left \nOf all that he created, much less Man, \nOr aught that might his happy state secure, \nSecure from outward force; within himself \nThe danger lies, yet lies within his power: \nAgainst his will he can receive no harm. \nBut God left free the will; for what obeys \nReason, is free; and Reason he made right, \nBut bid her well be ware, and still erect; \nLest, by some fair-appearing good surprised, \nShe dictate false; and mis-inform the will \nTo do what God expressly hath forbid. \nNot then mistrust, but tender love, enjoins, \nThat I should mind thee oft; and mind thou me. \nFirm we subsist, yet possible to swerve; \nSince Reason not impossibly may meet \nSome specious object by the foe suborned, \nAnd fall into deception unaware, \nNot keeping strictest watch, as she was warned. \nSeek not temptation then, which to avoid \nWere better, and most likely if from me \nThou sever not: Trial will come unsought. \nWouldst thou approve thy constancy, approve \nFirst thy obedience; the other who can know, \nNot seeing thee attempted, who attest? \nBut, if thou think, trial unsought may find \nUs both securer than thus warned thou seemest, \nGo; for thy stay, not free, absents thee more; \nGo in thy native innocence, rely \nOn what thou hast of virtue; summon all! \nFor God towards thee hath done his part, do thine. \nSo spake the patriarch of mankind; but Eve \nPersisted; yet submiss, though last, replied. \nWith thy permission then, and thus forewarned \nChiefly by what thy own last reasoning words \nTouched only; that our trial, when least sought, \nMay find us both perhaps far less prepared, \nThe willinger I go, nor much expect \nA foe so proud will first the weaker seek; \nSo bent, the more shall shame him his repulse. \nThus saying, from her husband's hand her hand \nSoft she withdrew; and, like a Wood-Nymph light, \nOread or Dryad, or of Delia's train, \nBetook her to the groves; but Delia's self \nIn gait surpassed, and Goddess-like deport, \nThough not as she with bow and quiver armed, \nBut with such gardening tools as Art yet rude, \nGuiltless of fire, had formed, or Angels brought. \nTo Pales, or Pomona, thus adorned, \nLikest she seemed, Pomona when she fled \nVertumnus, or to Ceres in her prime, \nYet virgin of Proserpina from Jove. \nHer long with ardent look his eye pursued \nDelighted, but desiring more her stay. \nOft he to her his charge of quick return \nRepeated; she to him as oft engaged \nTo be returned by noon amid the bower, \nAnd all things in best order to invite \nNoontide repast, or afternoon's repose. \nO much deceived, much failing, hapless Eve, \nOf thy presumed return! event perverse! \nThou never from that hour in Paradise \nFoundst either sweet repast, or sound repose; \nSuch ambush, hid among sweet flowers and shades, \nWaited with hellish rancour imminent \nTo intercept thy way, or send thee back \nDespoiled of innocence, of faith, of bliss! \nFor now, and since first break of dawn, the Fiend, \nMere serpent in appearance, forth was come; \nAnd on his quest, where likeliest he might find \nThe only two of mankind, but in them \nThe whole included race, his purposed prey. \nIn bower and field he sought, where any tuft \nOf grove or garden-plot more pleasant lay, \nTheir tendance, or plantation for delight; \nBy fountain or by shady rivulet \nHe sought them both, but wished his hap might find \nEve separate; he wished, but not with hope \nOf what so seldom chanced; when to his wish, \nBeyond his hope, Eve separate he spies, \nVeiled in a cloud of fragrance, where she stood, \nHalf spied, so thick the roses blushing round \nAbout her glowed, oft stooping to support \nEach flower of slender stalk, whose head, though gay \nCarnation, purple, azure, or specked with gold, \nHung drooping unsustained; them she upstays \nGently with myrtle band, mindless the while \nHerself, though fairest unsupported flower, \nFrom her best prop so far, and storm so nigh. \nNearer he drew, and many a walk traversed \nOf stateliest covert, cedar, pine, or palm; \nThen voluble and bold, now hid, now seen, \nAmong thick-woven arborets, and flowers \nImbordered on each bank, the hand of Eve: \nSpot more delicious than those gardens feigned \nOr of revived Adonis, or renowned \nAlcinous, host of old Laertes' son; \nOr that, not mystick, where the sapient king \nHeld dalliance with his fair Egyptian spouse. \nMuch he the place admired, the person more. \nAs one who long in populous city pent, \nWhere houses thick and sewers annoy the air, \nForth issuing on a summer's morn, to breathe \nAmong the pleasant villages and farms \nAdjoined, from each thing met conceives delight; \nThe smell of grain, or tedded grass, or kine, \nOr dairy, each rural sight, each rural sound; \nIf chance, with nymph-like step, fair virgin pass, \nWhat pleasing seemed, for her now pleases more; \nShe most, and in her look sums all delight: \nSuch pleasure took the Serpent to behold \nThis flowery plat, the sweet recess of Eve \nThus early, thus alone: Her heavenly form \nAngelick, but more soft, and feminine, \nHer graceful innocence, her every air \nOf gesture, or least action, overawed \nHis malice, and with rapine sweet bereaved \nHis fierceness of the fierce intent it brought: \nThat space the Evil-one abstracted stood \nFrom his own evil, and for the time remained \nStupidly good; of enmity disarmed, \nOf guile, of hate, of envy, of revenge: \nBut the hot Hell that always in him burns, \nThough in mid Heaven, soon ended his delight, \nAnd tortures him now more, the more he sees \nOf pleasure, not for him ordained: then soon \nFierce hate he recollects, and all his thoughts \nOf mischief, gratulating, thus excites. \nThoughts, whither have ye led me! with what sweet \nCompulsion thus transported, to forget \nWhat hither brought us! hate, not love;nor hope \nOf Paradise for Hell, hope here to taste \nOf pleasure; but all pleasure to destroy, \nSave what is in destroying; other joy \nTo me is lost.  Then, let me not let pass \nOccasion which now smiles; behold alone \nThe woman, opportune to all attempts, \nHer husband, for I view far round, not nigh, \nWhose higher intellectual more I shun, \nAnd strength, of courage haughty, and of limb \nHeroick built, though of terrestrial mould; \nFoe not informidable! exempt from wound, \nI not; so much hath Hell debased, and pain \nEnfeebled me, to what I was in Heaven. \nShe fair, divinely fair, fit love for Gods! \nNot terrible, though terrour be in love \nAnd beauty, not approached by stronger hate, \nHate stronger, under show of love well feigned; \nThe way which to her ruin now I tend. \nSo spake the enemy of mankind, enclosed \nIn serpent, inmate bad! and toward Eve \nAddressed his way: not with indented wave, \nProne on the ground, as since; but on his rear, \nCircular base of rising folds, that towered \nFold above fold, a surging maze! his head \nCrested aloft, and carbuncle his eyes; \nWith burnished neck of verdant gold, erect \nAmidst his circling spires, that on the grass \nFloated redundant: pleasing was his shape \nAnd lovely; never since of serpent-kind \nLovelier, not those that in Illyria changed, \nHermione and Cadmus, or the god \nIn Epidaurus; nor to which transformed \nAmmonian Jove, or Capitoline, was seen; \nHe with Olympias; this with her who bore \nScipio, the highth of Rome.  With tract oblique \nAt first, as one who sought access, but feared \nTo interrupt, side-long he works his way. \nAs when a ship, by skilful steersmen wrought \nNigh river's mouth or foreland, where the wind \nVeers oft, as oft so steers, and shifts her sail: \nSo varied he, and of his tortuous train \nCurled many a wanton wreath in sight of Eve, \nTo lure her eye; she, busied, heard the sound \nOf rusling leaves, but minded not, as used \nTo such disport before her through the field, \nFrom every beast; more duteous at her call, \nThan at Circean call the herd disguised. \nHe, bolder now, uncalled before her stood, \nBut as in gaze admiring: oft he bowed \nHis turret crest, and sleek enamelled neck, \nFawning; and licked the ground whereon she trod. \nHis gentle dumb expression turned at length \nThe eye of Eve to mark his play; he, glad \nOf her attention gained, with serpent-tongue \nOrganick, or impulse of vocal air, \nHis fraudulent temptation thus began. \nWonder not, sovran Mistress, if perhaps \nThou canst, who art sole wonder! much less arm \nThy looks, the Heaven of mildness, with disdain, \nDispleased that I approach thee thus, and gaze \nInsatiate; I thus single;nor have feared \nThy awful brow, more awful thus retired. \nFairest resemblance of thy Maker fair, \nThee all things living gaze on, all things thine \nBy gift, and thy celestial beauty adore \nWith ravishment beheld! there best beheld, \nWhere universally admired; but here \nIn this enclosure wild, these beasts among, \nBeholders rude, and shallow to discern \nHalf what in thee is fair, one man except, \nWho sees thee? and what is one? who should be seen \nA Goddess among Gods, adored and served \nBy Angels numberless, thy daily train. \nSo glozed the Tempter, and his proem tuned: \nInto the heart of Eve his words made way, \nThough at the voice much marvelling; at length, \nNot unamazed, she thus in answer spake. \nWhat may this mean? language of man pronounced \nBy tongue of brute, and human sense expressed? \nThe first, at least, of these I thought denied \nTo beasts; whom God, on their creation-day, \nCreated mute to all articulate sound: \nThe latter I demur; for in their looks \nMuch reason, and in their actions, oft appears. \nThee, Serpent, subtlest beast of all the field \nI knew, but not with human voice endued; \nRedouble then this miracle, and say, \nHow camest thou speakable of mute, and how \nTo me so friendly grown above the rest \nOf brutal kind, that daily are in sight? \nSay, for such wonder claims attention due. \nTo whom the guileful Tempter thus replied. \nEmpress of this fair world, resplendent Eve! \nEasy to me it is to tell thee all \nWhat thou commandest; and right thou shouldst be obeyed: \nI was at first as other beasts that graze \nThe trodden herb, of abject thoughts and low, \nAs was my food; nor aught but food discerned \nOr sex, and apprehended nothing high: \nTill, on a day roving the field, I chanced \nA goodly tree far distant to behold \nLoaden with fruit of fairest colours mixed, \nRuddy and gold: I nearer drew to gaze; \nWhen from the boughs a savoury odour blown, \nGrateful to appetite, more pleased my sense \nThan smell of sweetest fennel, or the teats \nOf ewe or goat dropping with milk at even, \nUnsucked of lamb or kid, that tend their play. \nTo satisfy the sharp desire I had \nOf tasting those fair apples, I resolved \nNot to defer; hunger and thirst at once, \nPowerful persuaders, quickened at the scent \nOf that alluring fruit, urged me so keen. \nAbout the mossy trunk I wound me soon; \nFor, high from ground, the branches would require \nThy utmost reach or Adam's: Round the tree \nAll other beasts that saw, with like desire \nLonging and envying stood, but could not reach. \nAmid the tree now got, where plenty hung \nTempting so nigh, to pluck and eat my fill \nI spared not; for, such pleasure till that hour, \nAt feed or fountain, never had I found. \nSated at length, ere long I might perceive \nStrange alteration in me, to degree \nOf reason in my inward powers; and speech \nWanted not long; though to this shape retained. \nThenceforth to speculations high or deep \nI turned my thoughts, and with capacious mind \nConsidered all things visible in Heaven, \nOr Earth, or Middle; all things fair and good: \nBut all that fair and good in thy divine \nSemblance, and in thy beauty's heavenly ray, \nUnited I beheld; no fair to thine \nEquivalent or second! which compelled \nMe thus, though importune perhaps, to come \nAnd gaze, and worship thee of right declared \nSovran of creatures, universal Dame! \nSo talked the spirited sly Snake; and Eve, \nYet more amazed, unwary thus replied. \nSerpent, thy overpraising leaves in doubt \nThe virtue of that fruit, in thee first proved: \nBut say, where grows the tree? from hence how far? \nFor many are the trees of God that grow \nIn Paradise, and various, yet unknown \nTo us; in such abundance lies our choice, \nAs leaves a greater store of fruit untouched, \nStill hanging incorruptible, till men \nGrow up to their provision, and more hands \nHelp to disburden Nature of her birth. \nTo whom the wily Adder, blithe and glad. \nEmpress, the way is ready, and not long; \nBeyond a row of myrtles, on a flat, \nFast by a fountain, one small thicket past \nOf blowing myrrh and balm: if thou accept \nMy conduct, I can bring thee thither soon \nLead then, said Eve.  He, leading, swiftly rolled \nIn tangles, and made intricate seem straight, \nTo mischief swift.  Hope elevates, and joy \nBrightens his crest; as when a wandering fire, \nCompact of unctuous vapour, which the night \nCondenses, and the cold environs round, \nKindled through agitation to a flame, \nWhich oft, they say, some evil Spirit attends, \nHovering and blazing with delusive light, \nMisleads the amazed night-wanderer from his way \nTo bogs and mires, and oft through pond or pool; \nThere swallowed up and lost, from succour far. \nSo glistered the dire Snake, and into fraud \nLed Eve, our credulous mother, to the tree \nOf prohibition, root of all our woe; \nWhich when she saw, thus to her guide she spake. \nSerpent, we might have spared our coming hither, \nFruitless to me, though fruit be here to excess, \nThe credit of whose virtue rest with thee; \nWonderous indeed, if cause of such effects. \nBut of this tree we may not taste nor touch; \nGod so commanded, and left that command \nSole daughter of his voice; the rest, we live \nLaw to ourselves; our reason is our law. \nTo whom the Tempter guilefully replied. \nIndeed! hath God then said that of the fruit \nOf all these garden-trees ye shall not eat, \nYet Lords declared of all in earth or air$? \nTo whom thus Eve, yet sinless.  Of the fruit \nOf each tree in the garden we may eat; \nBut of the fruit of this fair tree amidst \nThe garden, God hath said, Ye shall not eat \nThereof, nor shall ye touch it, lest ye die. \nShe scarce had said, though brief, when now more bold \nThe Tempter, but with show of zeal and love \nTo Man, and indignation at his wrong, \nNew part puts on; and, as to passion moved, \nFluctuates disturbed, yet comely and in act \nRaised, as of some great matter to begin. \nAs when of old some orator renowned, \nIn Athens or free Rome, where eloquence \nFlourished, since mute! to some great cause addressed, \nStood in himself collected; while each part, \nMotion, each act, won audience ere the tongue; \nSometimes in highth began, as no delay \nOf preface brooking, through his zeal of right: \nSo standing, moving, or to highth up grown, \nThe Tempter, all impassioned, thus began. \nO sacred, wise, and wisdom-giving Plant, \nMother of science! now I feel thy power \nWithin me clear; not only to discern \nThings in their causes, but to trace the ways \nOf highest agents, deemed however wise. \nQueen of this universe! do not believe \nThose rigid threats of death: ye shall not die: \nHow should you? by the fruit? it gives you life \nTo knowledge; by the threatener? look on me, \nMe, who have touched and tasted; yet both live, \nAnd life more perfect have attained than Fate \nMeant me, by venturing higher than my lot. \nShall that be shut to Man, which to the Beast \nIs open? or will God incense his ire \nFor such a petty trespass? and not praise \nRather your dauntless virtue, whom the pain \nOf death denounced, whatever thing death be, \nDeterred not from achieving what might lead \nTo happier life, knowledge of good and evil; \nOf good, how just? of evil, if what is evil \nBe real, why not known, since easier shunned? \nGod therefore cannot hurt ye, and be just; \nNot just, not God; not feared then, nor obeyed: \nYour fear itself of death removes the fear. \nWhy then was this forbid?  Why, but to awe; \nWhy, but to keep ye low and ignorant, \nHis worshippers?  He knows that in the day \nYe eat thereof, your eyes that seem so clear, \nYet are but dim, shall perfectly be then \nOpened and cleared, and ye shall be as Gods, \nKnowing both good and evil, as they know. \nThat ye shall be as Gods, since I as Man, \nInternal Man, is but proportion meet; \nI, of brute, human; ye, of human, Gods. \nSo ye shall die perhaps, by putting off \nHuman, to put on Gods; death to be wished, \nThough threatened, which no worse than this can bring. \nAnd what are Gods, that Man may not become \nAs they, participating God-like food? \nThe Gods are first, and that advantage use \nOn our belief, that all from them proceeds: \nI question it; for this fair earth I see, \nWarmed by the sun, producing every kind; \nThem, nothing: if they all things, who enclosed \nKnowledge of good and evil in this tree, \nThat whoso eats thereof, forthwith attains \nWisdom without their leave? and wherein lies \nThe offence, that Man should thus attain to know? \nWhat can your knowledge hurt him, or this tree \nImpart against his will, if all be his? \nOr is it envy? and can envy dwell \nIn heavenly breasts?  These, these, and many more \nCauses import your need of this fair fruit. \nGoddess humane, reach then, and freely taste! \nHe ended; and his words, replete with guile, \nInto her heart too easy entrance won: \nFixed on the fruit she gazed, which to behold \nMight tempt alone; and in her ears the sound \nYet rung of his persuasive words, impregned \nWith reason, to her seeming, and with truth: \nMean while the hour of noon drew on, and waked \nAn eager appetite, raised by the smell \nSo savoury of that fruit, which with desire, \nInclinable now grown to touch or taste, \nSolicited her longing eye; yet first \nPausing a while, thus to herself she mused. \nGreat are thy virtues, doubtless, best of fruits, \nThough kept from man, and worthy to be admired; \nWhose taste, too long forborn, at first assay \nGave elocution to the mute, and taught \nThe tongue not made for speech to speak thy praise: \nThy praise he also, who forbids thy use, \nConceals not from us, naming thee the tree \nOf knowledge, knowledge both of good and evil; \nForbids us then to taste! but his forbidding \nCommends thee more, while it infers the good \nBy thee communicated, and our want: \nFor good unknown sure is not had; or, had \nAnd yet unknown, is as not had at all. \nIn plain then, what forbids he but to know, \nForbids us good, forbids us to be wise? \nSuch prohibitions bind not.  But, if death \nBind us with after-bands, what profits then \nOur inward freedom?  In the day we eat \nOf this fair fruit, our doom is, we shall die! \nHow dies the Serpent? he hath eaten and lives, \nAnd knows, and speaks, and reasons, and discerns, \nIrrational till then.  For us alone \nWas death invented? or to us denied \nThis intellectual food, for beasts reserved? \nFor beasts it seems: yet that one beast which first \nHath tasted envies not, but brings with joy \nThe good befallen him, author unsuspect, \nFriendly to man, far from deceit or guile. \nWhat fear I then? rather, what know to fear \nUnder this ignorance of good and evil, \nOf God or death, of law or penalty? \nHere grows the cure of all, this fruit divine, \nFair to the eye, inviting to the taste, \nOf virtue to make wise:  What hinders then \nTo reach, and feed at once both body and mind? \nSo saying, her rash hand in evil hour \nForth reaching to the fruit, she plucked, she eat! \nEarth felt the wound; and Nature from her seat, \nSighing through all her works, gave signs of woe, \nThat all was lost.  Back to the thicket slunk \nThe guilty Serpent; and well might;for Eve, \nIntent now wholly on her taste, nought else \nRegarded; such delight till then, as seemed, \nIn fruit she never tasted, whether true \nOr fancied so, through expectation high \nOf knowledge; not was Godhead from her thought. \nGreedily she ingorged without restraint, \nAnd knew not eating death:  Satiate at length, \nAnd hightened as with wine, jocund and boon, \nThus to herself she pleasingly began. \nO sovran, virtuous, precious of all trees \nIn Paradise! of operation blest \nTo sapience, hitherto obscured, infamed. \nAnd thy fair fruit let hang, as to no end \nCreated; but henceforth my early care, \nNot without song, each morning, and due praise, \nShall tend thee, and the fertile burden ease \nOf thy full branches offered free to all; \nTill, dieted by thee, I grow mature \nIn knowledge, as the Gods, who all things know; \nThough others envy what they cannot give: \nFor, had the gift been theirs, it had not here \nThus grown.  Experience, next, to thee I owe, \nBest guide; not following thee, I had remained \nIn ignorance; thou openest wisdom's way, \nAnd givest access, though secret she retire. \nAnd I perhaps am secret: Heaven is high, \nHigh, and remote to see from thence distinct \nEach thing on Earth; and other care perhaps \nMay have diverted from continual watch \nOur great Forbidder, safe with all his spies \nAbout him.  But to Adam in what sort \nShall I appear? shall I to him make known \nAs yet my change, and give him to partake \nFull happiness with me, or rather not, \nBut keeps the odds of knowledge in my power \nWithout copartner? so to add what wants \nIn female sex, the more to draw his love, \nAnd render me more equal; and perhaps, \nA thing not undesirable, sometime \nSuperiour; for, inferiour, who is free \nThis may be well:  But what if God have seen, \nAnd death ensue? then I shall be no more! \nAnd Adam, wedded to another Eve, \nShall live with her enjoying, I extinct; \nA death to think!  Confirmed then I resolve, \nAdam shall share with me in bliss or woe: \nSo dear I love him, that with him all deaths \nI could endure, without him live no life. \nSo saying, from the tree her step she turned; \nBut first low reverence done, as to the Power \nThat dwelt within, whose presence had infused \nInto the plant sciential sap, derived \nFrom nectar, drink of Gods.  Adam the while, \nWaiting desirous her return, had wove \nOf choicest flowers a garland, to adorn \nHer tresses, and her rural labours crown; \nAs reapers oft are wont their harvest-queen. \nGreat joy he promised to his thoughts, and new \nSolace in her return, so long delayed: \nYet oft his heart, divine of something ill, \nMisgave him; he the faltering measure felt; \nAnd forth to meet her went, the way she took \nThat morn when first they parted: by the tree \nOf knowledge he must pass; there he her met, \nScarce from the tree returning; in her hand \nA bough of fairest fruit, that downy smiled, \nNew gathered, and ambrosial smell diffused. \nTo him she hasted; in her face excuse \nCame prologue, and apology too prompt; \nWhich, with bland words at will, she thus addressed. \nHast thou not wondered, Adam, at my stay? \nThee I have missed, and thought it long, deprived \nThy presence; agony of love till now \nNot felt, nor shall be twice; for never more \nMean I to try, what rash untried I sought, \nThe pain of absence from thy sight.  But strange \nHath been the cause, and wonderful to hear: \nThis tree is not, as we are told, a tree \nOf danger tasted, nor to evil unknown \nOpening the way, but of divine effect \nTo open eyes, and make them Gods who taste; \nAnd hath been tasted such:  The serpent wise, \nOr not restrained as we, or not obeying, \nHath eaten of the fruit; and is become, \nNot dead, as we are threatened, but thenceforth \nEndued with human voice and human sense, \nReasoning to admiration; and with me \nPersuasively hath so prevailed, that I \nHave also tasted, and have also found \nThe effects to correspond; opener mine eyes, \nDim erst, dilated spirits, ampler heart, \nAnd growing up to Godhead; which for thee \nChiefly I sought, without thee can despise. \nFor bliss, as thou hast part, to me is bliss; \nTedious, unshared with thee, and odious soon. \nThou therefore also taste, that equal lot \nMay join us, equal joy, as equal love; \nLest, thou not tasting, different degree \nDisjoin us, and I then too late renounce \nDeity for thee, when Fate will not permit. \nThus Eve with countenance blithe her story told; \nBut in her cheek distemper flushing glowed. \nOn the other side Adam, soon as he heard \nThe fatal trespass done by Eve, amazed, \nAstonied stood and blank, while horrour chill \nRan through his veins, and all his joints relaxed; \nFrom his slack hand the garland wreathed for Eve \nDown dropt, and all the faded roses shed: \nSpeechless he stood and pale, till thus at length \nFirst to himself he inward silence broke. \nO fairest of Creation, last and best \nOf all God's works, Creature in whom excelled \nWhatever can to sight or thought be formed, \nHoly, divine, good, amiable, or sweet! \nHow art thou lost! how on a sudden lost, \nDefaced, deflowered, and now to death devote! \nRather, how hast thou yielded to transgress \nThe strict forbiddance, how to violate \nThe sacred fruit forbidden!  Some cursed fraud \nOf enemy hath beguiled thee, yet unknown, \nAnd me with thee hath ruined; for with thee \nCertain my resolution is to die: \nHow can I live without thee! how forego \nThy sweet converse, and love so dearly joined, \nTo live again in these wild woods forlorn! \nShould God create another Eve, and I \nAnother rib afford, yet loss of thee \nWould never from my heart: no, no!I feel \nThe link of Nature draw me: flesh of flesh, \nBone of my bone thou art, and from thy state \nMine never shall be parted, bliss or woe. \nSo having said, as one from sad dismay \nRecomforted, and after thoughts disturbed \nSubmitting to what seemed remediless, \nThus in calm mood his words to Eve he turned. \nBold deed thou hast presumed, adventurous Eve, \nAnd peril great provoked, who thus hast dared, \nHad it been only coveting to eye \nThat sacred fruit, sacred to abstinence, \nMuch more to taste it under ban to touch. \nBut past who can recall, or done undo? \nNot God Omnipotent, nor Fate; yet so \nPerhaps thou shalt not die, perhaps the fact \nIs not so heinous now, foretasted fruit, \nProfaned first by the serpent, by him first \nMade common, and unhallowed, ere our taste; \nNor yet on him found deadly; yet he lives; \nLives, as thou saidst, and gains to live, as Man, \nHigher degree of life; inducement strong \nTo us, as likely tasting to attain \nProportional ascent; which cannot be \nBut to be Gods, or Angels, demi-Gods. \nNor can I think that God, Creator wise, \nThough threatening, will in earnest so destroy \nUs his prime creatures, dignified so high, \nSet over all his works; which in our fall, \nFor us created, needs with us must fail, \nDependant made; so God shall uncreate, \nBe frustrate, do, undo, and labour lose; \nNot well conceived of God, who, though his power \nCreation could repeat, yet would be loth \nUs to abolish, lest the Adversary \nTriumph, and say; \"Fickle their state whom God \n\"Most favours; who can please him long? Me first \n\"He ruined, now Mankind; whom will he next?\" \nMatter of scorn, not to be given the Foe. \nHowever I with thee have fixed my lot, \nCertain to undergo like doom:  If death \nConsort with thee, death is to me as life; \nSo forcible within my heart I feel \nThe bond of Nature draw me to my own; \nMy own in thee, for what thou art is mine; \nOur state cannot be severed; we are one, \nOne flesh; to lose thee were to lose myself. \nSo Adam; and thus Eve to him replied. \nO glorious trial of exceeding love, \nIllustrious evidence, example high! \nEngaging me to emulate; but, short \nOf thy perfection, how shall I attain, \nAdam, from whose dear side I boast me sprung, \nAnd gladly of our union hear thee speak, \nOne heart, one soul in both; whereof good proof \nThis day affords, declaring thee resolved, \nRather than death, or aught than death more dread, \nShall separate us, linked in love so dear, \nTo undergo with me one guilt, one crime, \nIf any be, of tasting this fair fruit; \nWhose virtue for of good still good proceeds, \nDirect, or by occasion, hath presented \nThis happy trial of thy love, which else \nSo eminently never had been known? \nWere it I thought death menaced would ensue \nThis my attempt, I would sustain alone \nThe worst, and not persuade thee, rather die \nDeserted, than oblige thee with a fact \nPernicious to thy peace; chiefly assured \nRemarkably so late of thy so true, \nSo faithful, love unequalled: but I feel \nFar otherwise the event; not death, but life \nAugmented, opened eyes, new hopes, new joys, \nTaste so divine, that what of sweet before \nHath touched my sense, flat seems to this, and harsh. \nOn my experience, Adam, freely taste, \nAnd fear of death deliver to the winds. \nSo saying, she embraced him, and for joy \nTenderly wept; much won, that he his love \nHad so ennobled, as of choice to incur \nDivine displeasure for her sake, or death. \nIn recompence for such compliance bad \nSuch recompence best merits from the bough \nShe gave him of that fair enticing fruit \nWith liberal hand: he scrupled not to eat, \nAgainst his better knowledge; not deceived, \nBut fondly overcome with female charm. \nEarth trembled from her entrails, as again \nIn pangs; and Nature gave a second groan; \nSky loured; and, muttering thunder, some sad drops \nWept at completing of the mortal sin \nOriginal: while Adam took no thought, \nEating his fill; nor Eve to iterate \nHer former trespass feared, the more to sooth \nHim with her loved society; that now, \nAs with new wine intoxicated both, \nThey swim in mirth, and fancy that they feel \nDivinity within them breeding wings, \nWherewith to scorn the earth:  But that false fruit \nFar other operation first displayed, \nCarnal desire inflaming; he on Eve \nBegan to cast lascivious eyes; she him \nAs wantonly repaid; in lust they burn: \nTill Adam thus 'gan Eve to dalliance move. \nEve, now I see thou art exact of taste, \nAnd elegant, of sapience no small part; \nSince to each meaning savour we apply, \nAnd palate call judicious; I the praise \nYield thee, so well this day thou hast purveyed. \nMuch pleasure we have lost, while we abstained \nFrom this delightful fruit, nor known till now \nTrue relish, tasting; if such pleasure be \nIn things to us forbidden, it might be wished, \nFor this one tree had been forbidden ten. \nBut come, so well refreshed, now let us play, \nAs meet is, after such delicious fare; \nFor never did thy beauty, since the day \nI saw thee first and wedded thee, adorned \nWith all perfections, so inflame my sense \nWith ardour to enjoy thee, fairer now \nThan ever; bounty of this virtuous tree! \nSo said he, and forbore not glance or toy \nOf amorous intent; well understood \nOf Eve, whose eye darted contagious fire. \nHer hand he seised; and to a shady bank, \nThick over-head with verdant roof imbowered, \nHe led her nothing loth; flowers were the couch, \nPansies, and violets, and asphodel, \nAnd hyacinth;  Earth's freshest softest lap. \nThere they their fill of love and love's disport \nTook largely, of their mutual guilt the seal, \nThe solace of their sin; till dewy sleep \nOppressed them, wearied with their amorous play, \nSoon as the force of that fallacious fruit, \nThat with exhilarating vapour bland \nAbout their spirits had played, and inmost powers \nMade err, was now exhaled; and grosser sleep, \nBred of unkindly fumes, with conscious dreams \nIncumbered, now had left them; up they rose \nAs from unrest; and, each the other viewing, \nSoon found their eyes how opened, and their minds \nHow darkened; innocence, that as a veil \nHad shadowed them from knowing ill, was gone; \nJust confidence, and native righteousness, \nAnd honour, from about them, naked left \nTo guilty Shame; he covered, but his robe \nUncovered more.  So rose the Danite strong, \nHerculean Samson, from the harlot-lap \nOf Philistean Dalilah, and waked \nShorn of his strength.  They destitute and bare \nOf all their virtue:  Silent, and in face \nConfounded, long they sat, as strucken mute: \nTill Adam, though not less than Eve abashed, \nAt length gave utterance to these words constrained. \nO Eve, in evil hour thou didst give ear \nTo that false worm, of whomsoever taught \nTo counterfeit Man's voice; true in our fall, \nFalse in our promised rising; since our eyes \nOpened we find indeed, and find we know \nBoth good and evil; good lost, and evil got; \nBad fruit of knowledge, if this be to know; \nWhich leaves us naked thus, of honour void, \nOf innocence, of faith, of purity, \nOur wonted ornaments now soiled and stained, \nAnd in our faces evident the signs \nOf foul concupiscence; whence evil store; \nEven shame, the last of evils; of the first \nBe sure then.--How shall I behold the face \nHenceforth of God or Angel, erst with joy \nAnd rapture so oft beheld?  Those heavenly shapes \nWill dazzle now this earthly with their blaze \nInsufferably bright.  O! might I here \nIn solitude live savage; in some glade \nObscured, where highest woods, impenetrable \nTo star or sun-light, spread their umbrage broad \nAnd brown as evening:  Cover me, ye Pines! \nYe Cedars, with innumerable boughs \nHide me, where I may never see them more!-- \nBut let us now, as in bad plight, devise \nWhat best may for the present serve to hide \nThe parts of each from other, that seem most \nTo shame obnoxious, and unseemliest seen; \nSome tree, whose broad smooth leaves together sewed, \nAnd girded on our loins, may cover round \nThose middle parts; that this new comer, Shame, \nThere sit not, and reproach us as unclean. \nSo counselled he, and both together went \nInto the thickest wood; there soon they chose \nThe fig-tree; not that kind for fruit renowned, \nBut such as at this day, to Indians known, \nIn Malabar or Decan spreads her arms \nBranching so broad and long, that in the ground \nThe bended twigs take root, and daughters grow \nAbout the mother tree, a pillared shade \nHigh over-arched, and echoing walks between: \nThere oft the Indian herdsman, shunning heat, \nShelters in cool, and tends his pasturing herds \nAt loop-holes cut through thickest shade:  Those leaves \nThey gathered, broad as Amazonian targe; \nAnd, with what skill they had, together sewed, \nTo gird their waist; vain covering, if to hide \nTheir guilt and dreaded shame!  O, how unlike \nTo that first naked glory!  Such of late \nColumbus found the American, so girt \nWith feathered cincture; naked else, and wild \nAmong the trees on isles and woody shores. \nThus fenced, and, as they thought, their shame in part \nCovered, but not at rest or ease of mind, \nThey sat them down to weep; nor only tears \nRained at their eyes, but high winds worse within \nBegan to rise, high passions, anger, hate, \nMistrust, suspicion, discord; and shook sore \nTheir inward state of mind, calm region once \nAnd full of peace, now tost and turbulent: \nFor Understanding ruled not, and the Will \nHeard not her lore; both in subjection now \nTo sensual Appetite, who from beneath \nUsurping over sovran Reason claimed \nSuperiour sway: From thus distempered breast, \nAdam, estranged in look and altered style, \nSpeech intermitted thus to Eve renewed. \nWould thou hadst hearkened to my words, and staid \nWith me, as I besought thee, when that strange \nDesire of wandering, this unhappy morn, \nI know not whence possessed thee; we had then \nRemained still happy; not, as now, despoiled \nOf all our good; shamed, naked, miserable! \nLet none henceforth seek needless cause to approve \nThe faith they owe; when earnestly they seek \nSuch proof, conclude, they then begin to fail. \nTo whom, soon moved with touch of blame, thus Eve. \nWhat words have passed thy lips, Adam severe! \nImputest thou that to my default, or will \nOf wandering, as thou callest it, which who knows \nBut might as ill have happened thou being by, \nOr to thyself perhaps?  Hadst thou been there, \nOr here the attempt, thou couldst not have discerned \nFraud in the Serpent, speaking as he spake; \nNo ground of enmity between us known, \nWhy he should mean me ill, or seek to harm. \nWas I to have never parted from thy side? \nAs good have grown there still a lifeless rib. \nBeing as I am, why didst not thou, the head, \nCommand me absolutely not to go, \nGoing into such danger, as thou saidst? \nToo facile then, thou didst not much gainsay; \nNay, didst permit, approve, and fair dismiss. \nHadst thou been firm and fixed in thy dissent, \nNeither had I transgressed, nor thou with me. \nTo whom, then first incensed, Adam replied. \nIs this the love, is this the recompence \nOf mine to thee, ingrateful Eve! expressed \nImmutable, when thou wert lost, not I; \nWho might have lived, and joyed immortal bliss, \nYet willingly chose rather death with thee? \nAnd am I now upbraided as the cause \nOf thy transgressing?  Not enough severe, \nIt seems, in thy restraint:  What could I more \nI warned thee, I admonished thee, foretold \nThe danger, and the lurking enemy \nThat lay in wait; beyond this, had been force; \nAnd force upon free will hath here no place. \nBut confidence then bore thee on; secure \nEither to meet no danger, or to find \nMatter of glorious trial; and perhaps \nI also erred, in overmuch admiring \nWhat seemed in thee so perfect, that I thought \nNo evil durst attempt thee; but I rue \nThe errour now, which is become my crime, \nAnd thou the accuser.  Thus it shall befall \nHim, who, to worth in women overtrusting, \nLets her will rule: restraint she will not brook; \nAnd, left to herself, if evil thence ensue, \nShe first his weak indulgence will accuse. \nThus they in mutual accusation spent \nThe fruitless hours, but neither self-condemning; \nAnd of their vain contest appeared no end. \n \n \n \nBook X                                                           \n \n \nMean while the heinous and despiteful act \nOf Satan, done in Paradise; and how \nHe, in the serpent, had perverted Eve, \nHer husband she, to taste the fatal fruit, \nWas known in Heaven; for what can 'scape the eye \nOf God all-seeing, or deceive his heart \nOmniscient? who, in all things wise and just, \nHindered not Satan to attempt the mind \nOf Man, with strength entire and free will armed, \nComplete to have discovered and repulsed \nWhatever wiles of foe or seeming friend. \nFor still they knew, and ought to have still remembered, \nThe high injunction, not to taste that fruit, \nWhoever tempted; which they not obeying, \n(Incurred what could they less?) the penalty; \nAnd, manifold in sin, deserved to fall. \nUp into Heaven from Paradise in haste \nThe angelick guards ascended, mute, and sad, \nFor Man; for of his state by this they knew, \nMuch wondering how the subtle Fiend had stolen \nEntrance unseen.  Soon as the unwelcome news \nFrom Earth arrived at Heaven-gate, displeased \nAll were who heard; dim sadness did not spare \nThat time celestial visages, yet, mixed \nWith pity, violated not their bliss. \nAbout the new-arrived, in multitudes \nThe ethereal people ran, to hear and know \nHow all befel:  They towards the throne supreme, \nAccountable, made haste, to make appear, \nWith righteous plea, their utmost vigilance \nAnd easily approved; when the Most High \nEternal Father, from his secret cloud, \nAmidst in thunder uttered thus his voice. \nAssembled Angels, and ye Powers returned \nFrom unsuccessful charge; be not dismayed, \nNor troubled at these tidings from the earth, \nWhich your sincerest care could not prevent; \nForetold so lately what would come to pass, \nWhen first this tempter crossed the gulf from Hell. \nI told ye then he should prevail, and speed \nOn his bad errand; Man should be seduced, \nAnd flattered out of all, believing lies \nAgainst his Maker; no decree of mine \nConcurring to necessitate his fall, \nOr touch with lightest moment of impulse \nHis free will, to her own inclining left \nIn even scale.  But fallen he is; and now \nWhat rests, but that the mortal sentence pass \nOn his transgression,--death denounced that day? \nWhich he presumes already vain and void, \nBecause not yet inflicted, as he feared, \nBy some immediate stroke; but soon shall find \nForbearance no acquittance, ere day end. \nJustice shall not return as bounty scorned. \nBut whom send I to judge them? whom but thee, \nVicegerent Son?  To thee I have transferred \nAll judgement, whether in Heaven, or Earth, or Hell. \nEasy it may be seen that I intend \nMercy colleague with justice, sending thee \nMan's friend, his Mediator, his designed \nBoth ransom and Redeemer voluntary, \nAnd destined Man himself to judge Man fallen. \nSo spake the Father; and, unfolding bright \nToward the right hand his glory, on the Son \nBlazed forth unclouded Deity: He full \nResplendent all his Father manifest \nExpressed, and thus divinely answered mild. \nFather Eternal, thine is to decree; \nMine, both in Heaven and Earth, to do thy will \nSupreme; that thou in me, thy Son beloved, \nMayest ever rest well pleased.  I go to judge \nOn earth these thy transgressours; but thou knowest, \nWhoever judged, the worst on me must light, \nWhen time shall be; for so I undertook \nBefore thee; and, not repenting, this obtain \nOf right, that I may mitigate their doom \nOn me derived; yet I shall temper so \nJustice with mercy, as may illustrate most \nThem fully satisfied, and thee appease. \nAttendance none shall need, nor train, where none \nAre to behold the judgement, but the judged, \nThose two; the third best absent is condemned, \nConvict by flight, and rebel to all law: \nConviction to the serpent none belongs. \nThus saying, from his radiant seat he rose \nOf high collateral glory: Him Thrones, and Powers, \nPrincedoms, and Dominations ministrant, \nAccompanied to Heaven-gate; from whence \nEden, and all the coast, in prospect lay. \nDown he descended straight; the speed of Gods \nTime counts not, though with swiftest minutes winged. \nNow was the sun in western cadence low \nFrom noon, and gentle airs, due at their hour, \nTo fan the earth now waked, and usher in \nThe evening cool; when he, from wrath more cool, \nCame the mild Judge, and Intercessour both, \nTo sentence Man:  The voice of God they heard \nNow walking in the garden, by soft winds \nBrought to their ears, while day declined; they heard, \nAnd from his presence hid themselves among \nThe thickest trees, both man and wife; till God, \nApproaching, thus to Adam called aloud. \nWhere art thou, Adam, wont with joy to meet \nMy coming seen far off?  I miss thee here, \nNot pleased, thus entertained with solitude, \nWhere obvious duty ere while appeared unsought: \nOr come I less conspicuous, or what change \nAbsents thee, or what chance detains?--Come forth! \nHe came; and with him Eve, more loth, though first \nTo offend; discountenanced both, and discomposed; \nLove was not in their looks, either to God, \nOr to each other; but apparent guilt, \nAnd shame, and perturbation, and despair, \nAnger, and obstinacy, and hate, and guile. \nWhence Adam, faltering long, thus answered brief. \nI heard thee in the garden, and of thy voice \nAfraid, being naked, hid myself.  To whom \nThe gracious Judge without revile replied. \nMy voice thou oft hast heard, and hast not feared, \nBut still rejoiced; how is it now become \nSo dreadful to thee?  That thou art naked, who \nHath told thee?  Hast thou eaten of the tree, \nWhereof I gave thee charge thou shouldst not eat? \nTo whom thus Adam sore beset replied. \nO Heaven! in evil strait this day I stand \nBefore my Judge; either to undergo \nMyself the total crime, or to accuse \nMy other self, the partner of my life; \nWhose failing, while her faith to me remains, \nI should conceal, and not expose to blame \nBy my complaint: but strict necessity \nSubdues me, and calamitous constraint; \nLest on my head both sin and punishment, \nHowever insupportable, be all \nDevolved; though should I hold my peace, yet thou \nWouldst easily detect what I conceal.-- \nThis Woman, whom thou madest to be my help, \nAnd gavest me as thy perfect gift, so good, \nSo fit, so acceptable, so divine, \nThat from her hand I could suspect no ill, \nAnd what she did, whatever in itself, \nHer doing seemed to justify the deed; \nShe gave me of the tree, and I did eat. \nTo whom the Sovran Presence thus replied. \nWas she thy God, that her thou didst obey \nBefore his voice? or was she made thy guide, \nSuperiour, or but equal, that to her \nThou didst resign thy manhood, and the place \nWherein God set thee above her made of thee, \nAnd for thee, whose perfection far excelled \nHers in all real dignity?  Adorned \nShe was indeed, and lovely, to attract \nThy love, not thy subjection; and her gifts \nWere such, as under government well seemed; \nUnseemly to bear rule; which was thy part \nAnd person, hadst thou known thyself aright. \nSo having said, he thus to Eve in few. \nSay, Woman, what is this which thou hast done? \nTo whom sad Eve, with shame nigh overwhelmed, \nConfessing soon, yet not before her Judge \nBold or loquacious, thus abashed replied. \nThe Serpent me beguiled, and I did eat. \nWhich when the Lord God heard, without delay \nTo judgement he proceeded on the accused \nSerpent, though brute; unable to transfer \nThe guilt on him, who made him instrument \nOf mischief, and polluted from the end \nOf his creation; justly then accursed, \nAs vitiated in nature:  More to know \nConcerned not Man, (since he no further knew) \nNor altered his offence; yet God at last \nTo Satan first in sin his doom applied, \nThough in mysterious terms, judged as then best: \nAnd on the Serpent thus his curse let fall. \nBecause thou hast done this, thou art accursed \nAbove all cattle, each beast of the field; \nUpon thy belly groveling thou shalt go, \nAnd dust shalt eat all the days of thy life. \nBetween thee and the woman I will put \nEnmity, and between thine and her seed; \nHer seed shall bruise thy head, thou bruise his heel. \nSo spake this oracle, then verified \nWhen Jesus, Son of Mary, second Eve, \nSaw Satan fall, like lightning, down from Heaven, \nPrince of the air; then, rising from his grave \nSpoiled Principalities and Powers, triumphed \nIn open show; and, with ascension bright, \nCaptivity led captive through the air, \nThe realm itself of Satan, long usurped; \nWhom he shall tread at last under our feet; \nEven he, who now foretold his fatal bruise; \nAnd to the Woman thus his sentence turned. \nThy sorrow I will greatly multiply \nBy thy conception; children thou shalt bring \nIn sorrow forth; and to thy husband's will \nThine shall submit; he over thee shall rule. \nOn Adam last thus judgement he pronounced. \nBecause thou hast hearkened to the voice of thy wife, \nAnd eaten of the tree, concerning which \nI charged thee, saying, Thou shalt not eat thereof: \nCursed is the ground for thy sake; thou in sorrow \nShalt eat thereof, all the days of thy life; \nThorns also and thistles it shall bring thee forth \nUnbid; and thou shalt eat the herb of the field; \nIn the sweat of thy face shalt thou eat bread, \nTill thou return unto the ground; for thou \nOut of the ground wast taken, know thy birth, \nFor dust thou art, and shalt to dust return. \nSo judged he Man, both Judge and Saviour sent; \nAnd the instant stroke of death, denounced that day, \nRemoved far off; then, pitying how they stood \nBefore him naked to the air, that now \nMust suffer change, disdained not to begin \nThenceforth the form of servant to assume; \nAs when he washed his servants feet; so now, \nAs father of his family, he clad \nTheir nakedness with skins of beasts, or slain, \nOr as the snake with youthful coat repaid; \nAnd thought not much to clothe his enemies; \nNor he their outward only with the skins \nOf beasts, but inward nakedness, much more. \nOpprobrious, with his robe of righteousness, \nArraying, covered from his Father's sight. \nTo him with swift ascent he up returned, \nInto his blissful bosom reassumed \nIn glory, as of old; to him appeased \nAll, though all-knowing, what had passed with Man \nRecounted, mixing intercession sweet. \nMean while, ere thus was sinned and judged on Earth, \nWithin the gates of Hell sat Sin and Death, \nIn counterview within the gates, that now \nStood open wide, belching outrageous flame \nFar into Chaos, since the Fiend passed through, \nSin opening; who thus now to Death began. \nO Son, why sit we here each other viewing \nIdly, while Satan, our great author, thrives \nIn other worlds, and happier seat provides \nFor us, his offspring dear?  It cannot be \nBut that success attends him; if mishap, \nEre this he had returned, with fury driven \nBy his avengers; since no place like this \nCan fit his punishment, or their revenge. \nMethinks I feel new strength within me rise, \nWings growing, and dominion given me large \nBeyond this deep; whatever draws me on, \nOr sympathy, or some connatural force, \nPowerful at greatest distance to unite, \nWith secret amity, things of like kind, \nBy secretest conveyance.  Thou, my shade \nInseparable, must with me along; \nFor Death from Sin no power can separate. \nBut, lest the difficulty of passing back \nStay his return perhaps over this gulf \nImpassable, impervious; let us try \nAdventurous work, yet to thy power and mine \nNot unagreeable, to found a path \nOver this main from Hell to that new world, \nWhere Satan now prevails; a monument \nOf merit high to all the infernal host, \nEasing their passage hence, for intercourse, \nOr transmigration, as their lot shall lead. \nNor can I miss the way, so strongly drawn \nBy this new-felt attraction and instinct. \nWhom thus the meager Shadow answered soon. \nGo, whither Fate, and inclination strong, \nLeads thee; I shall not lag behind, nor err \nThe way, thou leading; such a scent I draw \nOf carnage, prey innumerable, and taste \nThe savour of death from all things there that live: \nNor shall I to the work thou enterprisest \nBe wanting, but afford thee equal aid. \nSo saying, with delight he snuffed the smell \nOf mortal change on earth.  As when a flock \nOf ravenous fowl, though many a league remote, \nAgainst the day of battle, to a field, \nWhere armies lie encamped, come flying, lured \nWith scent of living carcasses designed \nFor death, the following day, in bloody fight: \nSo scented the grim Feature, and upturned \nHis nostril wide into the murky air; \nSagacious of his quarry from so far. \nThen both from out Hell-gates, into the waste \nWide anarchy of Chaos, damp and dark, \nFlew diverse; and with power (their power was great) \nHovering upon the waters, what they met \nSolid or slimy, as in raging sea \nTost up and down, together crouded drove, \nFrom each side shoaling towards the mouth of Hell; \nAs when two polar winds, blowing adverse \nUpon the Cronian sea, together drive \nMountains of ice, that stop the imagined way \nBeyond Petsora eastward, to the rich \nCathaian coast.  The aggregated soil \nDeath with his mace petrifick, cold and dry, \nAs with a trident, smote; and fixed as firm \nAs Delos, floating once; the rest his look \nBound with Gorgonian rigour not to move; \nAnd with Asphaltick slime, broad as the gate, \nDeep to the roots of Hell the gathered beach \nThey fastened, and the mole immense wrought on \nOver the foaming deep high-arched, a bridge \nOf length prodigious, joining to the wall \nImmoveable of this now fenceless world, \nForfeit to Death; from hence a passage broad, \nSmooth, easy, inoffensive, down to Hell. \nSo, if great things to small may be compared, \nXerxes, the liberty of Greece to yoke, \nFrom Susa, his Memnonian palace high, \nCame to the sea: and, over Hellespont \nBridging his way, Europe with Asia joined, \nAnd scourged with many a stroke the indignant waves. \nNow had they brought the work by wonderous art \nPontifical, a ridge of pendant rock, \nOver the vexed abyss, following the track \nOf Satan to the self-same place where he \nFirst lighted from his wing, and landed safe \nFrom out of Chaos, to the outside bare \nOf this round world:  With pins of adamant \nAnd chains they made all fast, too fast they made \nAnd durable!  And now in little space \nThe confines met of empyrean Heaven, \nAnd of this World; and, on the left hand, Hell \nWith long reach interposed; three several ways \nIn sight, to each of these three places led. \nAnd now their way to Earth they had descried, \nTo Paradise first tending; when, behold! \nSatan, in likeness of an Angel bright, \nBetwixt the Centaur and the Scorpion steering \nHis zenith, while the sun in Aries rose: \nDisguised he came; but those his children dear \nTheir parent soon discerned, though in disguise. \nHe, after Eve seduced, unminded slunk \nInto the wood fast by; and, changing shape, \nTo observe the sequel, saw his guileful act \nBy Eve, though all unweeting, seconded \nUpon her husband; saw their shame that sought \nVain covertures; but when he saw descend \nThe Son of God to judge them, terrified \nHe fled; not hoping to escape, but shun \nThe present; fearing, guilty, what his wrath \nMight suddenly inflict; that past, returned \nBy night, and listening where the hapless pair \nSat in their sad discourse, and various plaint, \nThence gathered his own doom; which understood \nNot instant, but of future time, with joy \nAnd tidings fraught, to Hell he now returned; \nAnd at the brink of Chaos, near the foot \nOf this new wonderous pontifice, unhoped \nMet, who to meet him came, his offspring dear. \nGreat joy was at their meeting, and at sight \nOf that stupendious bridge his joy encreased. \nLong he admiring stood, till Sin, his fair \nEnchanting daughter, thus the silence broke. \nO Parent, these are thy magnifick deeds, \nThy trophies! which thou viewest as not thine own; \nThou art their author, and prime architect: \nFor I no sooner in my heart divined, \nMy heart, which by a secret harmony \nStill moves with thine, joined in connexion sweet, \nThat thou on earth hadst prospered, which thy looks \nNow also evidence, but straight I felt, \nThough distant from thee worlds between, yet felt, \nThat I must after thee, with this thy son; \nSuch fatal consequence unites us three! \nHell could no longer hold us in our bounds, \nNor this unvoyageable gulf obscure \nDetain from following thy illustrious track. \nThou hast achieved our liberty, confined \nWithin Hell-gates till now; thou us impowered \nTo fortify thus far, and overlay, \nWith this portentous bridge, the dark abyss. \nThine now is all this world; thy virtue hath won \nWhat thy hands builded not; thy wisdom gained \nWith odds what war hath lost, and fully avenged \nOur foil in Heaven; here thou shalt monarch reign, \nThere didst not; there let him still victor sway, \nAs battle hath adjudged; from this new world \nRetiring, by his own doom alienated; \nAnd henceforth monarchy with thee divide \nOf all things, parted by the empyreal bounds, \nHis quadrature, from thy orbicular world; \nOr try thee now more dangerous to his throne. \nWhom thus the Prince of darkness answered glad. \nFair Daughter, and thou Son and Grandchild both; \nHigh proof ye now have given to be the race \nOf Satan (for I glory in the name, \nAntagonist of Heaven's Almighty King,) \nAmply have merited of me, of all \nThe infernal empire, that so near Heaven's door \nTriumphal with triumphal act have met, \nMine, with this glorious work; and made one realm, \nHell and this world, one realm, one continent \nOf easy thorough-fare.  Therefore, while I \nDescend through darkness, on your road with ease, \nTo my associate Powers, them to acquaint \nWith these successes, and with them rejoice; \nYou two this way, among these numerous orbs, \nAll yours, right down to Paradise descend; \nThere dwell, and reign in bliss; thence on the earth \nDominion exercise and in the air, \nChiefly on Man, sole lord of all declared; \nHim first make sure your thrall, and lastly kill. \nMy substitutes I send ye, and create \nPlenipotent on earth, of matchless might \nIssuing from me: on your joint vigour now \nMy hold of this new kingdom all depends, \nThrough Sin to Death exposed by my exploit. \nIf your joint power prevail, the affairs of Hell \nNo detriment need fear; go, and be strong! \nSo saying he dismissed them; they with speed \nTheir course through thickest constellations held, \nSpreading their bane; the blasted stars looked wan, \nAnd planets, planet-struck, real eclipse \nThen suffered.  The other way Satan went down \nThe causey to Hell-gate:  On either side \nDisparted Chaos overbuilt exclaimed, \nAnd with rebounding surge the bars assailed, \nThat scorned his indignation:  Through the gate, \nWide open and unguarded, Satan passed, \nAnd all about found desolate; for those, \nAppointed to sit there, had left their charge, \nFlown to the upper world; the rest were all \nFar to the inland retired, about the walls \nOf Pandemonium; city and proud seat \nOf Lucifer, so by allusion called \nOf that bright star to Satan paragoned; \nThere kept their watch the legions, while the Grand \nIn council sat, solicitous what chance \nMight intercept their emperour sent; so he \nDeparting gave command, and they observed. \nAs when the Tartar from his Russian foe, \nBy Astracan, over the snowy plains, \nRetires; or Bactrin Sophi, from the horns \nOf Turkish crescent, leaves all waste beyond \nThe realm of Aladule, in his retreat \nTo Tauris or Casbeen:  So these, the late \nHeaven-banished host, left desart utmost Hell \nMany a dark league, reduced in careful watch \nRound their metropolis; and now expecting \nEach hour their great adventurer, from the search \nOf foreign worlds:  He through the midst unmarked, \nIn show plebeian Angel militant \nOf lowest order, passed; and from the door \nOf that Plutonian hall, invisible \nAscended his high throne; which, under state \nOf richest texture spread, at the upper end \nWas placed in regal lustre.  Down a while \nHe sat, and round about him saw unseen: \nAt last, as from a cloud, his fulgent head \nAnd shape star-bright appeared, or brighter; clad \nWith what permissive glory since his fall \nWas left him, or false glitter:  All amazed \nAt that so sudden blaze the Stygian throng \nBent their aspect, and whom they wished beheld, \nTheir mighty Chief returned: loud was the acclaim: \nForth rushed in haste the great consulting peers, \nRaised from their dark Divan, and with like joy \nCongratulant approached him; who with hand \nSilence, and with these words attention, won. \nThrones, Dominations, Princedoms, Virtues, Powers; \nFor in possession such, not only of right, \nI call ye, and declare ye now; returned \nSuccessful beyond hope, to lead ye forth \nTriumphant out of this infernal pit \nAbominable, accursed, the house of woe, \nAnd dungeon of our tyrant:  Now possess, \nAs Lords, a spacious world, to our native Heaven \nLittle inferiour, by my adventure hard \nWith peril great achieved.  Long were to tell \nWhat I have done; what suffered;with what pain \nVoyaged th' unreal, vast, unbounded deep \nOf horrible confusion; over which \nBy Sin and Death a broad way now is paved, \nTo expedite your glorious march; but I \nToiled out my uncouth passage, forced to ride \nThe untractable abyss, plunged in the womb \nOf unoriginal Night and Chaos wild; \nThat, jealous of their secrets, fiercely opposed \nMy journey strange, with clamorous uproar \nProtesting Fate supreme; thence how I found \nThe new created world, which fame in Heaven \nLong had foretold, a fabrick wonderful \nOf absolute perfection! therein Man \nPlaced in a Paradise, by our exile \nMade happy:  Him by fraud I have seduced \nFrom his Creator; and, the more to encrease \nYour wonder, with an apple; he, thereat \nOffended, worth your laughter! hath given up \nBoth his beloved Man, and all his world, \nTo Sin and Death a prey, and so to us, \nWithout our hazard, labour, or alarm; \nTo range in, and to dwell, and over Man \nTo rule, as over all he should have ruled. \nTrue is, me also he hath judged, or rather \nMe not, but the brute serpent in whose shape \nMan I deceived: that which to me belongs, \nIs enmity which he will put between \nMe and mankind; I am to bruise his heel; \nHis seed, when is not set, shall bruise my head: \nA world who would not purchase with a bruise, \nOr much more grievous pain?--Ye have the account \nOf my performance:  What remains, ye Gods, \nBut up, and enter now into full bliss? \nSo having said, a while he stood, expecting \nTheir universal shout, and high applause, \nTo fill his ear; when, contrary, he hears \nOn all sides, from innumerable tongues, \nA dismal universal hiss, the sound \nOf publick scorn; he wondered, but not long \nHad leisure, wondering at himself now more, \nHis visage drawn he felt to sharp and spare; \nHis arms clung to his ribs; his legs entwining \nEach other, till supplanted down he fell \nA monstrous serpent on his belly prone, \nReluctant, but in vain; a greater power \nNow ruled him, punished in the shape he sinned, \nAccording to his doom: he would have spoke, \nBut hiss for hiss returned with forked tongue \nTo forked tongue; for now were all transformed \nAlike, to serpents all, as accessories \nTo his bold riot:  Dreadful was the din \nOf hissing through the hall, thick swarming now \nWith complicated monsters head and tail, \nScorpion, and Asp, and Amphisbaena dire, \nCerastes horned, Hydrus, and Elops drear, \nAnd Dipsas; (not so thick swarmed once the soil \nBedropt with blood of Gorgon, or the isle \nOphiusa,) but still greatest he the midst, \nNow Dragon grown, larger than whom the sun \nIngendered in the Pythian vale or slime, \nHuge Python, and his power no less he seemed \nAbove the rest still to retain; they all \nHim followed, issuing forth to the open field, \nWhere all yet left of that revolted rout, \nHeaven-fallen, in station stood or just array; \nSublime with expectation when to see \nIn triumph issuing forth their glorious Chief; \nThey saw, but other sight instead! a croud \nOf ugly serpents; horrour on them fell, \nAnd horrid sympathy; for, what they saw, \nThey felt themselves, now changing; down their arms, \nDown fell both spear and shield; down they as fast; \nAnd the dire hiss renewed, and the dire form \nCatched, by contagion; like in punishment, \nAs in their crime.  Thus was the applause they meant, \nTurned to exploding hiss, triumph to shame \nCast on themselves from their own mouths.  There stood \nA grove hard by, sprung up with this their change, \nHis will who reigns above, to aggravate \nTheir penance, laden with fair fruit, like that \nWhich grew in Paradise, the bait of Eve \nUsed by the Tempter: on that prospect strange \nTheir earnest eyes they fixed, imagining \nFor one forbidden tree a multitude \nNow risen, to work them further woe or shame; \nYet, parched with scalding thirst and hunger fierce, \nThough to delude them sent, could not abstain; \nBut on they rolled in heaps, and, up the trees \nClimbing, sat thicker than the snaky locks \nThat curled Megaera: greedily they plucked \nThe fruitage fair to sight, like that which grew \nNear that bituminous lake where Sodom flamed; \nThis more delusive, not the touch, but taste \nDeceived; they, fondly thinking to allay \nTheir appetite with gust, instead of fruit \nChewed bitter ashes, which the offended taste \nWith spattering noise rejected: oft they assayed, \nHunger and thirst constraining; drugged as oft, \nWith hatefullest disrelish writhed their jaws, \nWith soot and cinders filled; so oft they fell \nInto the same illusion, not as Man \nWhom they triumphed once lapsed.  Thus were they plagued \nAnd worn with famine, long and ceaseless hiss, \nTill their lost shape, permitted, they resumed; \nYearly enjoined, some say, to undergo, \nThis annual humbling certain numbered days, \nTo dash their pride, and joy, for Man seduced. \nHowever, some tradition they dispersed \nAmong the Heathen, of their purchase got, \nAnd fabled how the Serpent, whom they called \nOphion, with Eurynome, the wide-- \nEncroaching Eve perhaps, had first the rule \nOf high Olympus; thence by Saturn driven \nAnd Ops, ere yet Dictaean Jove was born. \nMean while in Paradise the hellish pair \nToo soon arrived; Sin, there in power before, \nOnce actual; now in body, and to dwell \nHabitual habitant; behind her Death, \nClose following pace for pace, not mounted yet \nOn his pale horse: to whom Sin thus began. \nSecond of Satan sprung, all-conquering Death! \nWhat thinkest thou of our empire now, though earned \nWith travel difficult, not better far \nThan still at Hell's dark threshold to have sat watch, \nUnnamed, undreaded, and thyself half starved? \nWhom thus the Sin-born monster answered soon. \nTo me, who with eternal famine pine, \nAlike is Hell, or Paradise, or Heaven; \nThere best, where most with ravine I may meet; \nWhich here, though plenteous, all too little seems \nTo stuff this maw, this vast unhide-bound corps. \nTo whom the incestuous mother thus replied. \nThou therefore on these herbs, and fruits, and flowers, \nFeed first; on each beast next, and fish, and fowl; \nNo homely morsels! and, whatever thing \nThe sithe of Time mows down, devour unspared; \nTill I, in Man residing, through the race, \nHis thoughts, his looks, words, actions, all infect; \nAnd season him thy last and sweetest prey. \nThis said, they both betook them several ways, \nBoth to destroy, or unimmortal make \nAll kinds, and for destruction to mature \nSooner or later; which the Almighty seeing, \nFrom his transcendent seat the Saints among, \nTo those bright Orders uttered thus his voice. \nSee, with what heat these dogs of Hell advance \nTo waste and havock yonder world, which I \nSo fair and good created; and had still \nKept in that state, had not the folly of Man \nLet in these wasteful furies, who impute \nFolly to me; so doth the Prince of Hell \nAnd his adherents, that with so much ease \nI suffer them to enter and possess \nA place so heavenly; and, conniving, seem \nTo gratify my scornful enemies, \nThat laugh, as if, transported with some fit \nOf passion, I to them had quitted all, \nAt random yielded up to their misrule; \nAnd know not that I called, and drew them thither, \nMy Hell-hounds, to lick up the draff and filth \nWhich Man's polluting sin with taint hath shed \nOn what was pure; til, crammed and gorged, nigh burst \nWith sucked and glutted offal, at one sling \nOf thy victorious arm, well-pleasing Son, \nBoth Sin, and Death, and yawning Grave, at last, \nThrough Chaos hurled, obstruct the mouth of Hell \nFor ever, and seal up his ravenous jaws. \nThen Heaven and Earth renewed shall be made pure \nTo sanctity, that shall receive no stain: \nTill then, the curse pronounced on both precedes. \nHe ended, and the heavenly audience loud \nSung Halleluiah, as the sound of seas, \nThrough multitude that sung:  Just are thy ways, \nRighteous are thy decrees on all thy works; \nWho can extenuate thee?  Next, to the Son, \nDestined Restorer of mankind, by whom \nNew Heaven and Earth shall to the ages rise, \nOr down from Heaven descend.--Such was their song; \nWhile the Creator, calling forth by name \nHis mighty Angels, gave them several charge, \nAs sorted best with present things.  The sun \nHad first his precept so to move, so shine, \nAs might affect the earth with cold and heat \nScarce tolerable; and from the north to call \nDecrepit winter; from the south to bring \nSolstitial summer's heat.  To the blanc moon \nHer office they prescribed; to the other five \nTheir planetary motions, and aspects, \nIn sextile, square, and trine, and opposite, \nOf noxious efficacy, and when to join \nIn synod unbenign; and taught the fixed \nTheir influence malignant when to shower, \nWhich of them rising with the sun, or falling, \nShould prove tempestuous:  To the winds they set \nTheir corners, when with bluster to confound \nSea, air, and shore; the thunder when to roll \nWith terrour through the dark aereal hall. \nSome say, he bid his Angels turn ascanse \nThe poles of earth, twice ten degrees and more, \nFrom the sun's axle; they with labour pushed \nOblique the centrick globe:  Some say, the sun \nWas bid turn reins from the equinoctial road \nLike distant breadth to Taurus with the seven \nAtlantick Sisters, and the Spartan Twins, \nUp to the Tropick Crab: thence down amain \nBy Leo, and the Virgin, and the Scales, \nAs deep as Capricorn; to bring in change \nOf seasons to each clime; else had the spring \nPerpetual smiled on earth with vernant flowers, \nEqual in days and nights, except to those \nBeyond the polar circles; to them day \nHad unbenighted shone, while the low sun, \nTo recompense his distance, in their sight \nHad rounded still the horizon, and not known \nOr east or west; which had forbid the snow \nFrom cold Estotiland, and south as far \nBeneath Magellan.  At that tasted fruit \nThe sun, as from Thyestean banquet, turned \nHis course intended; else, how had the world \nInhabited, though sinless, more than now, \nAvoided pinching cold and scorching heat? \nThese changes in the Heavens, though slow, produced \nLike change on sea and land; sideral blast, \nVapour, and mist, and exhalation hot, \nCorrupt and pestilent:  Now from the north \nOf Norumbega, and the Samoed shore, \nBursting their brazen dungeon, armed with ice, \nAnd snow, and hail, and stormy gust and flaw, \nBoreas, and Caecias, and Argestes loud, \nAnd Thrascias, rend the woods, and seas upturn; \nWith adverse blast upturns them from the south \nNotus, and Afer black with thunderous clouds \nFrom Serraliona; thwart of these, as fierce, \nForth rush the Levant and the Ponent winds, \nEurus and Zephyr, with their lateral noise, \nSirocco and Libecchio.  Thus began \nOutrage from lifeless things; but Discord first, \nDaughter of Sin, among the irrational \nDeath introduced, through fierce antipathy: \nBeast now with beast 'gan war, and fowl with fowl, \nAnd fish with fish; to graze the herb all leaving, \nDevoured each other; nor stood much in awe \nOf Man, but fled him; or, with countenance grim, \nGlared on him passing.  These were from without \nThe growing miseries, which Adam saw \nAlready in part, though hid in gloomiest shade, \nTo sorrow abandoned, but worse felt within; \nAnd, in a troubled sea of passion tost, \nThus to disburden sought with sad complaint. \nO miserable of happy!  Is this the end \nOf this new glorious world, and me so late \nThe glory of that glory, who now become \nAccursed, of blessed? hide me from the face \nOf God, whom to behold was then my highth \nOf happiness!--Yet well, if here would end \nThe misery; I deserved it, and would bear \nMy own deservings; but this will not serve: \nAll that I eat or drink, or shall beget, \nIs propagated curse.  O voice, once heard \nDelightfully, Encrease and multiply; \nNow death to hear! for what can I encrease, \nOr multiply, but curses on my head? \nWho of all ages to succeed, but, feeling \nThe evil on him brought by me, will curse \nMy head?  Ill fare our ancestor impure, \nFor this we may thank Adam! but his thanks \nShall be the execration: so, besides \nMine own that bide upon me, all from me \nShall with a fierce reflux on me rebound; \nOn me, as on their natural center, light \nHeavy, though in their place.  O fleeting joys \nOf Paradise, dear bought with lasting woes! \nDid I request thee, Maker, from my clay \nTo mould me Man? did I solicit thee \nFrom darkness to promote me, or here place \nIn this delicious garden?  As my will \nConcurred not to my being, it were but right \nAnd equal to reduce me to my dust; \nDesirous to resign and render back \nAll I received; unable to perform \nThy terms too hard, by which I was to hold \nThe good I sought not.  To the loss of that, \nSufficient penalty, why hast thou added \nThe sense of endless woes?  Inexplicable \nWhy am I mocked with death, and lengthened out \nTo deathless pain?  How gladly would I meet \nMortality my sentence, and be earth \nInsensible!  How glad would lay me down \nAs in my mother's lap!  There I should rest, \nAnd sleep secure; his dreadful voice no more \nWould thunder in my ears; no fear of worse \nTo me, and to my offspring, would torment me \nWith cruel expectation.  Yet one doubt \nPursues me still, lest all I cannot die; \nLest that pure breath of life, the spirit of Man \nWhich God inspired, cannot together perish \nWith this corporeal clod; then, in the grave, \nOr in some other dismal place, who knows \nBut I shall die a living death?  O thought \nHorrid, if true!  Yet why? It was but breath \nOf life that sinned; what dies but what had life \nAnd sin?  The body properly had neither, \nAll of me then shall die: let this appease \nThe doubt, since human reach no further knows. \nFor though the Lord of all be infinite, \nIs his wrath also?  Be it, Man is not so, \nBut mortal doomed.  How can he exercise \nWrath without end on Man, whom death must end? \nCan he make deathless death?  That were to make \nStrange contradiction, which to God himself \nImpossible is held; as argument \nOf weakness, not of power.  Will he draw out, \nFor anger's sake, finite to infinite, \nIn punished Man, to satisfy his rigour, \nSatisfied never?  That were to extend \nHis sentence beyond dust and Nature's law; \nBy which all causes else, according still \nTo the reception of their matter, act; \nNot to the extent of their own sphere.  But say \nThat death be not one stroke, as I supposed, \nBereaving sense, but endless misery \nFrom this day onward; which I feel begun \nBoth in me, and without me; and so last \nTo perpetuity;--Ay me!that fear \nComes thundering back with dreadful revolution \nOn my defenceless head; both Death and I \nAm found eternal, and incorporate both; \nNor I on my part single; in me all \nPosterity stands cursed:  Fair patrimony \nThat I must leave ye, Sons!  O, were I able \nTo waste it all myself, and leave ye none! \nSo disinherited, how would you bless \nMe, now your curse!  Ah, why should all mankind, \nFor one man's fault, thus guiltless be condemned, \nIt guiltless?  But from me what can proceed, \nBut all corrupt; both mind and will depraved \nNot to do only, but to will the same \nWith me?  How can they then acquitted stand \nIn sight of God?  Him, after all disputes, \nForced I absolve: all my evasions vain, \nAnd reasonings, though through mazes, lead me still \nBut to my own conviction: first and last \nOn me, me only, as the source and spring \nOf all corruption, all the blame lights due; \nSo might the wrath!  Fond wish!couldst thou support \nThat burden, heavier than the earth to bear; \nThan all the world much heavier, though divided \nWith that bad Woman?  Thus, what thou desirest, \nAnd what thou fearest, alike destroys all hope \nOf refuge, and concludes thee miserable \nBeyond all past example and future; \nTo Satan only like both crime and doom. \nO Conscience! into what abyss of fears \nAnd horrours hast thou driven me; out of which \nI find no way, from deep to deeper plunged! \nThus Adam to himself lamented loud, \nThrough the still night; not now, as ere Man fell, \nWholesome, and cool, and mild, but with black air \nAccompanied; with damps, and dreadful gloom; \nWhich to his evil conscience represented \nAll things with double terrour:  On the ground \nOutstretched he lay, on the cold ground; and oft \nCursed his creation;  Death as oft accused \nOf tardy execution, since denounced \nThe day of his offence.  Why comes not Death, \nSaid he, with one thrice-acceptable stroke \nTo end me?  Shall Truth fail to keep her word, \nJustice Divine not hasten to be just? \nBut Death comes not at call; Justice Divine \nMends not her slowest pace for prayers or cries, \nO woods, O fountains, hillocks, dales, and bowers! \nWith other echo late I taught your shades \nTo answer, and resound far other song.-- \nWhom thus afflicted when sad Eve beheld, \nDesolate where she sat, approaching nigh, \nSoft words to his fierce passion she assayed: \nBut her with stern regard he thus repelled. \nOut of my sight, thou Serpent!  That name best \nBefits thee with him leagued, thyself as false \nAnd hateful; nothing wants, but that thy shape, \nLike his, and colour serpentine, may show \nThy inward fraud; to warn all creatures from thee \nHenceforth; lest that too heavenly form, pretended \nTo hellish falshood, snare them!  But for thee \nI had persisted happy; had not thy pride \nAnd wandering vanity, when least was safe, \nRejected my forewarning, and disdained \nNot to be trusted; longing to be seen, \nThough by the Devil himself; him overweening \nTo over-reach; but, with the serpent meeting, \nFooled and beguiled; by him thou, I by thee \nTo trust thee from my side; imagined wise, \nConstant, mature, proof against all assaults; \nAnd understood not all was but a show, \nRather than solid virtue; all but a rib \nCrooked by nature, bent, as now appears, \nMore to the part sinister, from me drawn; \nWell if thrown out, as supernumerary \nTo my just number found.  O! why did God, \nCreator wise, that peopled highest Heaven \nWith Spirits masculine, create at last \nThis novelty on earth, this fair defect \nOf nature, and not fill the world at once \nWith Men, as Angels, without feminine; \nOr find some other way to generate \nMankind?  This mischief had not been befallen, \nAnd more that shall befall; innumerable \nDisturbances on earth through female snares, \nAnd strait conjunction with this sex: for either \nHe never shall find out fit mate, but such \nAs some misfortune brings him, or mistake; \nOr whom he wishes most shall seldom gain \nThrough her perverseness, but shall see her gained \nBy a far worse; or, if she love, withheld \nBy parents; or his happiest choice too late \nShall meet, already linked and wedlock-bound \nTo a fell adversary, his hate or shame: \nWhich infinite calamity shall cause \nTo human life, and houshold peace confound. \nHe added not, and from her turned; but Eve, \nNot so repulsed, with tears that ceased not flowing \nAnd tresses all disordered, at his feet \nFell humble; and, embracing them, besought \nHis peace, and thus proceeded in her plaint. \nForsake me not thus, Adam! witness Heaven \nWhat love sincere, and reverence in my heart \nI bear thee, and unweeting have offended, \nUnhappily deceived!  Thy suppliant \nI beg, and clasp thy knees; bereave me not, \nWhereon I live, thy gentle looks, thy aid, \nThy counsel, in this uttermost distress, \nMy only strength and stay:  Forlorn of thee, \nWhither shall I betake me, where subsist? \nWhile yet we live, scarce one short hour perhaps, \nBetween us two let there be peace; both joining, \nAs joined in injuries, one enmity \nAgainst a foe by doom express assigned us, \nThat cruel Serpent:  On me exercise not \nThy hatred for this misery befallen; \nOn me already lost, me than thyself \nMore miserable!  Both have sinned;but thou \nAgainst God only; I against God and thee; \nAnd to the place of judgement will return, \nThere with my cries importune Heaven; that all \nThe sentence, from thy head removed, may light \nOn me, sole cause to thee of all this woe; \nMe, me only, just object of his ire! \nShe ended weeping; and her lowly plight, \nImmoveable, till peace obtained from fault \nAcknowledged and deplored, in Adam wrought \nCommiseration:  Soon his heart relented \nTowards her, his life so late, and sole delight, \nNow at his feet submissive in distress; \nCreature so fair his reconcilement seeking, \nHis counsel, whom she had displeased, his aid: \nAs one disarmed, his anger all he lost, \nAnd thus with peaceful words upraised her soon. \nUnwary, and too desirous, as before, \nSo now of what thou knowest not, who desirest \nThe punishment all on thyself; alas! \nBear thine own first, ill able to sustain \nHis full wrath, whose thou feelest as yet least part, \nAnd my displeasure bearest so ill.  If prayers \nCould alter high decrees, I to that place \nWould speed before thee, and be louder heard, \nThat on my head all might be visited; \nThy frailty and infirmer sex forgiven, \nTo me committed, and by me exposed. \nBut rise;--let us no more contend, nor blame \nEach other, blamed enough elsewhere; but strive \nIn offices of love, how we may lighten \nEach other's burden, in our share of woe; \nSince this day's death denounced, if aught I see, \nWill prove no sudden, but a slow-paced evil; \nA long day's dying, to augment our pain; \nAnd to our seed (O hapless seed!) derived. \nTo whom thus Eve, recovering heart, replied. \nAdam, by sad experiment I know \nHow little weight my words with thee can find, \nFound so erroneous; thence by just event \nFound so unfortunate:  Nevertheless, \nRestored by thee, vile as I am, to place \nOf new acceptance, hopeful to regain \nThy love, the sole contentment of my heart \nLiving or dying, from thee I will not hide \nWhat thoughts in my unquiet breast are risen, \nTending to some relief of our extremes, \nOr end; though sharp and sad, yet tolerable, \nAs in our evils, and of easier choice. \nIf care of our descent perplex us most, \nWhich must be born to certain woe, devoured \nBy Death at last; and miserable it is \nTo be to others cause of misery, \nOur own begotten, and of our loins to bring \nInto this cursed world a woeful race, \nThat after wretched life must be at last \nFood for so foul a monster; in thy power \nIt lies, yet ere conception to prevent \nThe race unblest, to being yet unbegot. \nChildless thou art, childless remain: so Death \nShall be deceived his glut, and with us two \nBe forced to satisfy his ravenous maw. \nBut if thou judge it hard and difficult, \nConversing, looking, loving, to abstain \nFrom love's due rights, nuptial embraces sweet; \nAnd with desire to languish without hope, \nBefore the present object languishing \nWith like desire; which would be misery \nAnd torment less than none of what we dread; \nThen, both ourselves and seed at once to free \nFrom what we fear for both, let us make short, -- \nLet us seek Death; -- or, he not found, supply \nWith our own hands his office on ourselves: \nWhy stand we longer shivering under fears, \nThat show no end but death, and have the power, \nOf many ways to die the shortest choosing, \nDestruction with destruction to destroy? -- \nShe ended here, or vehement despair \nBroke off the rest: so much of death her thoughts \nHad entertained, as dyed her cheeks with pale. \nBut Adam, with such counsel nothing swayed, \nTo better hopes his more attentive mind \nLabouring had raised; and thus to Eve replied. \nEve, thy contempt of life and pleasure seems \nTo argue in thee something more sublime \nAnd excellent, than what thy mind contemns; \nBut self-destruction therefore sought, refutes \nThat excellence thought in thee; and implies, \nNot thy contempt, but anguish and regret \nFor loss of life and pleasure overloved. \nOr if thou covet death, as utmost end \nOf misery, so thinking to evade \nThe penalty pronounced; doubt not but God \nHath wiselier armed his vengeful ire, than so \nTo be forestalled; much more I fear lest death, \nSo snatched, will not exempt us from the pain \nWe are by doom to pay; rather, such acts \nOf contumacy will provoke the Highest \nTo make death in us live:  Then let us seek \nSome safer resolution, which methinks \nI have in view, calling to mind with heed \nPart of our sentence, that thy seed shall bruise \nThe Serpent's head; piteous amends! unless \nBe meant, whom I conjecture, our grand foe, \nSatan; who, in the serpent, hath contrived \nAgainst us this deceit:  To crush his head \nWould be revenge indeed! which will be lost \nBy death brought on ourselves, or childless days \nResolved, as thou proposest; so our foe \nShal 'scape his punishment ordained, and we \nInstead shall double ours upon our heads. \nNo more be mentioned then of violence \nAgainst ourselves; and wilful barrenness, \nThat cuts us off from hope; and savours only \nRancour and pride, impatience and despite, \nReluctance against God and his just yoke \nLaid on our necks.  Remember with what mild \nAnd gracious temper he both heard, and judged, \nWithout wrath or reviling; we expected \nImmediate dissolution, which we thought \nWas meant by death that day; when lo!to thee \nPains only in child-bearing were foretold, \nAnd bringing forth; soon recompensed with joy, \nFruit of thy womb:  On me the curse aslope \nGlanced on the ground; with labour I must earn \nMy bread; what harm? Idleness had been worse; \nMy labour will sustain me; and, lest cold \nOr heat should injure us, his timely care \nHath, unbesought, provided; and his hands \nClothed us unworthy, pitying while he judged; \nHow much more, if we pray him, will his ear \nBe open, and his heart to pity incline, \nAnd teach us further by what means to shun \nThe inclement seasons, rain, ice, hail, and snow! \nWhich now the sky, with various face, begins \nTo show us in this mountain; while the winds \nBlow moist and keen, shattering the graceful locks \nOf these fair spreading trees; which bids us seek \nSome better shroud, some better warmth to cherish \nOur limbs benummed, ere this diurnal star \nLeave cold the night, how we his gathered beams \nReflected may with matter sere foment; \nOr, by collision of two bodies, grind \nThe air attrite to fire; as late the clouds \nJustling, or pushed with winds, rude in their shock, \nTine the slant lightning; whose thwart flame, driven down \nKindles the gummy bark of fir or pine; \nAnd sends a comfortable heat from far, \nWhich might supply the sun:  Such fire to use, \nAnd what may else be remedy or cure \nTo evils which our own misdeeds have wrought, \nHe will instruct us praying, and of grace \nBeseeching him; so as we need not fear \nTo pass commodiously this life, sustained \nBy him with many comforts, till we end \nIn dust, our final rest and native home. \nWhat better can we do, than, to the place \nRepairing where he judged us, prostrate fall \nBefore him reverent; and there confess \nHumbly our faults, and pardon beg; with tears \nWatering the ground, and with our sighs the air \nFrequenting, sent from hearts contrite, in sign \nOf sorrow unfeigned, and humiliation meek \n \n \n \nBook XI                                                          \n \n \nUndoubtedly he will relent, and turn \nFrom his displeasure; in whose look serene, \nWhen angry most he seemed and most severe, \nWhat else but favour, grace, and mercy, shone? \nSo spake our father penitent; nor Eve \nFelt less remorse: they, forthwith to the place \nRepairing where he judged them, prostrate fell \nBefore him reverent; and both confessed \nHumbly their faults, and pardon begged; with tears \nWatering the ground, and with their sighs the air \nFrequenting, sent from hearts contrite, in sign \nOf sorrow unfeigned, and humiliation meek. \nThus they, in lowliest plight, repentant stood \nPraying; for from the mercy-seat above \nPrevenient grace descending had removed \nThe stony from their hearts, and made new flesh \nRegenerate grow instead; that sighs now breathed \nUnutterable; which the Spirit of prayer \nInspired, and winged for Heaven with speedier flight \nThan loudest oratory:  Yet their port \nNot of mean suitors; nor important less \nSeemed their petition, than when the ancient pair \nIn fables old, less ancient yet than these, \nDeucalion and chaste Pyrrha, to restore \nThe race of mankind drowned, before the shrine \nOf Themis stood devout.  To Heaven their prayers \nFlew up, nor missed the way, by envious winds \nBlown vagabond or frustrate: in they passed \nDimensionless through heavenly doors; then clad \nWith incense, where the golden altar fumed, \nBy their great intercessour, came in sight \nBefore the Father's throne: them the glad Son \nPresenting, thus to intercede began. \nSee$ Father, what first-fruits on earth are sprung \nFrom thy implanted grace in Man; these sighs \nAnd prayers, which in this golden censer mixed \nWith incense, I thy priest before thee bring; \nFruits of more pleasing savour, from thy seed \nSown with contrition in his heart, than those \nWhich, his own hand manuring, all the trees \nOf Paradise could have produced, ere fallen \nFrom innocence.  Now therefore, bend thine ear \nTo supplication; hear his sighs, though mute; \nUnskilful with what words to pray, let me \nInterpret for him; me, his advocate \nAnd propitiation; all his works on me, \nGood, or not good, ingraft; my merit those \nShall perfect, and for these my death shall pay. \nAccept me; and, in me, from these receive \nThe smell of peace toward mankind: let him live \nBefore thee reconciled, at least his days \nNumbered, though sad; till death, his doom, (which I \nTo mitigate thus plead, not to reverse,) \nTo better life shall yield him: where with me \nAll my redeemed may dwell in joy and bliss; \nMade one with me, as I with thee am one. \nTo whom the Father, without cloud, serene. \nAll thy request for Man, accepted Son, \nObtain; all thy request was my decree: \nBut, longer in that Paradise to dwell, \nThe law I gave to Nature him forbids: \nThose pure immortal elements, that know, \nNo gross, no unharmonious mixture foul, \nEject him, tainted now; and purge him off, \nAs a distemper, gross, to air as gross, \nAnd mortal food; as may dispose him best \nFor dissolution wrought by sin, that first \nDistempered all things, and of incorrupt \nCorrupted.  I, at first, with two fair gifts \nCreated him endowed; with happiness, \nAnd immortality: that fondly lost, \nThis other served but to eternize woe; \nTill I provided death: so death becomes \nHis final remedy; and, after life, \nTried in sharp tribulation, and refined \nBy faith and faithful works, to second life, \nWaked in the renovation of the just, \nResigns him up with Heaven and Earth renewed. \nBut let us call to synod all the Blest, \nThrough Heaven's wide bounds: from them I will not hide \nMy judgements; how with mankind I proceed, \nAs how with peccant Angels late they saw, \nAnd in their state, though firm, stood more confirmed. \nHe ended, and the Son gave signal high \nTo the bright minister that watched; he blew \nHis trumpet, heard in Oreb since perhaps \nWhen God descended, and perhaps once more \nTo sound at general doom.  The angelick blast \nFilled all the regions: from their blisful bowers \nOf amarantine shade, fountain or spring, \nBy the waters of life, where'er they sat \nIn fellowships of joy, the sons of light \nHasted, resorting to the summons high; \nAnd took their seats; till from his throne supreme \nThe Almighty thus pronounced his sovran will. \nO Sons, like one of us Man is become \nTo know both good and evil, since his taste \nOf that defended fruit; but let him boast \nHis knowledge of good lost, and evil got; \nHappier! had it sufficed him to have known \nGood by itself, and evil not at all. \nHe sorrows now, repents, and prays contrite, \nMy motions in him; longer than they move, \nHis heart I know, how variable and vain, \nSelf-left.  Lest therefore his now bolder hand \nReach also of the tree of life, and eat, \nAnd live for ever, dream at least to live \nFor ever, to remove him I decree, \nAnd send him from the garden forth to till \nThe ground whence he was taken, fitter soil. \nMichael, this my behest have thou in charge; \nTake to thee from among the Cherubim \nThy choice of flaming warriours, lest the Fiend, \nOr in behalf of Man, or to invade \nVacant possession, some new trouble raise: \nHaste thee, and from the Paradise of God \nWithout remorse drive out the sinful pair; \nFrom hallowed ground the unholy; and denounce \nTo them, and to their progeny, from thence \nPerpetual banishment.  Yet, lest they faint \nAt the sad sentence rigorously urged, \n(For I behold them softened, and with tears \nBewailing their excess,) all terrour hide. \nIf patiently thy bidding they obey, \nDismiss them not disconsolate; reveal \nTo Adam what shall come in future days, \nAs I shall thee enlighten; intermix \nMy covenant in the Woman's seed renewed; \nSo send them forth, though sorrowing, yet in peace: \nAnd on the east side of the garden place, \nWhere entrance up from Eden easiest climbs, \nCherubick watch; and of a sword the flame \nWide-waving; all approach far off to fright, \nAnd guard all passage to the tree of life: \nLest Paradise a receptacle prove \nTo Spirits foul, and all my trees their prey; \nWith whose stolen fruit Man once more to delude. \nHe ceased; and the arch-angelick Power prepared \nFor swift descent; with him the cohort bright \nOf watchful Cherubim: four faces each \nHad, like a double Janus; all their shape \nSpangled with eyes more numerous than those \nOf Argus, and more wakeful than to drouse, \nCharmed with Arcadian pipe, the pastoral reed \nOf Hermes, or his opiate rod.  Mean while, \nTo re-salute the world with sacred light, \nLeucothea waked; and with fresh dews imbalmed \nThe earth; when Adam and first matron Eve \nHad ended now their orisons, and found \nStrength added from above; new hope to spring \nOut of despair; joy, but with fear yet linked; \nWhich thus to Eve his welcome words renewed. \nEve, easily my faith admit, that all \nThe good which we enjoy from Heaven descends; \nBut, that from us aught should ascend to Heaven \nSo prevalent as to concern the mind \nOf God high-blest, or to incline his will, \nHard to belief may seem; yet this will prayer \nOr one short sigh of human breath, upborne \nEven to the seat of God.  For since I sought \nBy prayer the offended Deity to appease; \nKneeled, and before him humbled all my heart; \nMethought I saw him placable and mild, \nBending his ear; persuasion in me grew \nThat I was heard with favour; peace returned \nHome to my breast, and to my memory \nHis promise, that thy seed shall bruise our foe; \nWhich, then not minded in dismay, yet now \nAssures me that the bitterness of death \nIs past, and we shall live.  Whence hail to thee, \nEve rightly called, mother of all mankind, \nMother of all things living, since by thee \nMan is to live; and all things live for Man. \nTo whom thus Eve with sad demeanour meek. \nIll-worthy I such title should belong \nTo me transgressour; who, for thee ordained \nA help, became thy snare; to me reproach \nRather belongs, distrust, and all dispraise: \nBut infinite in pardon was my Judge, \nThat I, who first brought death on all, am graced \nThe source of life; next favourable thou, \nWho highly thus to entitle me vouchsaf'st, \nFar other name deserving.  But the field \nTo labour calls us, now with sweat imposed, \nThough after sleepless night; for see!the morn, \nAll unconcerned with our unrest, begins \nHer rosy progress smiling: let us forth; \nI never from thy side henceforth to stray, \nWhere'er our day's work lies, though now enjoined \nLaborious, till day droop; while here we dwell, \nWhat can be toilsome in these pleasant walks? \nHere let us live, though in fallen state, content. \nSo spake, so wished much humbled Eve; but Fate \nSubscribed not:  Nature first gave signs, impressed \nOn bird, beast, air; air suddenly eclipsed, \nAfter short blush of morn; nigh in her sight \nThe bird of Jove, stooped from his aery tour, \nTwo birds of gayest plume before him drove; \nDown from a hill the beast that reigns in woods, \nFirst hunter then, pursued a gentle brace, \nGoodliest of all the forest, hart and hind; \nDirect to the eastern gate was bent their flight. \nAdam observed, and with his eye the chase \nPursuing, not unmoved, to Eve thus spake. \nO Eve, some further change awaits us nigh, \nWhich Heaven, by these mute signs in Nature, shows \nForerunners of his purpose; or to warn \nUs, haply too secure, of our discharge \nFrom penalty, because from death released \nSome days: how long, and what till then our life, \nWho knows? or more than this, that we are dust, \nAnd thither must return, and be no more? \nWhy else this double object in our sight \nOf flight pursued in the air, and o'er the ground, \nOne way the self-same hour? why in the east \nDarkness ere day's mid-course, and morning-light \nMore orient in yon western cloud, that draws \nO'er the blue firmament a radiant white, \nAnd slow descends with something heavenly fraught? \nHe erred not; for by this the heavenly bands \nDown from a sky of jasper lighted now \nIn Paradise, and on a hill made halt; \nA glorious apparition, had not doubt \nAnd carnal fear that day dimmed Adam's eye. \nNot that more glorious, when the Angels met \nJacob in Mahanaim, where he saw \nThe field pavilioned with his guardians bright; \nNor that, which on the flaming mount appeared \nIn Dothan, covered with a camp of fire, \nAgainst the Syrian king, who to surprise \nOne man, assassin-like, had levied war, \nWar unproclaimed.  The princely Hierarch \nIn their bright stand there left his Powers, to seise \nPossession of the garden; he alone, \nTo find where Adam sheltered, took his way, \nNot unperceived of Adam; who to Eve, \nWhile the great visitant approached, thus spake. \nEve$ now expect great tidings, which perhaps \nOf us will soon determine, or impose \nNew laws to be observed; for I descry, \nFrom yonder blazing cloud that veils the hill, \nOne of the heavenly host; and, by his gait, \nNone of the meanest; some great Potentate \nOr of the Thrones above; such majesty \nInvests him coming! yet not terrible, \nThat I should fear; nor sociably mild, \nAs Raphael, that I should much confide; \nBut solemn and sublime; whom not to offend, \nWith reverence I must meet, and thou retire. \nHe ended: and the Arch-Angel soon drew nigh, \nNot in his shape celestial, but as man \nClad to meet man; over his lucid arms \nA military vest of purple flowed, \nLivelier than Meliboean, or the grain \nOf Sarra, worn by kings and heroes old \nIn time of truce; Iris had dipt the woof; \nHis starry helm unbuckled showed him prime \nIn manhood where youth ended; by his side, \nAs in a glistering zodiack, hung the sword, \nSatan's dire dread; and in his hand the spear. \nAdam bowed low; he, kingly, from his state \nInclined not, but his coming thus declared. \nAdam, Heaven's high behest no preface needs: \nSufficient that thy prayers are heard; and Death, \nThen due by sentence when thou didst transgress, \nDefeated of his seisure many days \nGiven thee of grace; wherein thou mayest repent, \nAnd one bad act with many deeds well done \nMayest cover:  Well may then thy Lord, appeased, \nRedeem thee quite from Death's rapacious claim; \nBut longer in this Paradise to dwell \nPermits not: to remove thee I am come, \nAnd send thee from the garden forth to till \nThe ground whence thou wast taken, fitter soil. \nHe added not; for Adam at the news \nHeart-struck with chilling gripe of sorrow stood, \nThat all his senses bound; Eve, who unseen \nYet all had heard, with audible lament \nDiscovered soon the place of her retire. \nO unexpected stroke, worse than of Death! \nMust I thus leave thee$ Paradise? thus leave \nThee, native soil! these happy walks and shades, \nFit haunt of Gods? where I had hope to spend, \nQuiet though sad, the respite of that day \nThat must be mortal to us both.  O flowers, \nThat never will in other climate grow, \nMy early visitation, and my last \n ;t even, which I bred up with tender hand \nFrom the first opening bud, and gave ye names! \nWho now shall rear ye to the sun, or rank \nYour tribes, and water from the ambrosial fount? \nThee lastly, nuptial bower! by me adorned \nWith what to sight or smell was sweet! from thee \nHow shall I part, and whither wander down \nInto a lower world; to this obscure \nAnd wild? how shall we breathe in other air \nLess pure, accustomed to immortal fruits? \nWhom thus the Angel interrupted mild. \nLament not, Eve, but patiently resign \nWhat justly thou hast lost, nor set thy heart, \nThus over-fond, on that which is not thine: \nThy going is not lonely; with thee goes \nThy husband; whom to follow thou art bound; \nWhere he abides, think there thy native soil. \nAdam, by this from the cold sudden damp \nRecovering, and his scattered spirits returned, \nTo Michael thus his humble words addressed. \nCelestial, whether among the Thrones, or named \nOf them the highest; for such of shape may seem \nPrince above princes! gently hast thou told \nThy message, which might else in telling wound, \nAnd in performing end us; what besides \nOf sorrow, and dejection, and despair, \nOur frailty can sustain, thy tidings bring, \nDeparture from this happy place, our sweet \nRecess, and only consolation left \nFamiliar to our eyes! all places else \nInhospitable appear, and desolate; \nNor knowing us, nor known:  And, if by prayer \nIncessant I could hope to change the will \nOf Him who all things can, I would not cease \nTo weary him with my assiduous cries: \nBut prayer against his absolute decree \nNo more avails than breath against the wind, \nBlown stifling back on him that breathes it forth: \nTherefore to his great bidding I submit. \nThis most afflicts me, that, departing hence, \nAs from his face I shall be hid, deprived \nHis blessed countenance:  Here I could frequent \nWith worship place by place where he vouchsafed \nPresence Divine; and to my sons relate, \n'On this mount he appeared; under this tree \n'Stood visible; among these pines his voice \n'I heard; here with him at this fountain talked: \nSo many grateful altars I would rear \nOf grassy turf, and pile up every stone \nOf lustre from the brook, in memory, \nOr monument to ages; and theron \nOffer sweet-smelling gums, and fruits, and flowers: \nIn yonder nether world where shall I seek \nHis bright appearances, or foot-step trace? \nFor though I fled him angry, yet recalled \nTo life prolonged and promised race, I now \nGladly behold though but his utmost skirts \nOf glory; and far off his steps adore. \nTo whom thus Michael with regard benign. \nAdam, thou knowest Heaven his, and all the Earth; \nNot this rock only; his Omnipresence fills \nLand, sea, and air, and every kind that lives, \nFomented by his virtual power and warmed: \nAll the earth he gave thee to possess and rule, \nNo despicable gift; surmise not then \nHis presence to these narrow bounds confined \nOf Paradise, or Eden: this had been \nPerhaps thy capital seat, from whence had spread \nAll generations; and had hither come \nFrom all the ends of the earth, to celebrate \nAnd reverence thee, their great progenitor. \nBut this pre-eminence thou hast lost, brought down \nTo dwell on even ground now with thy sons: \nYet doubt not but in valley, and in plain, \nGod is, as here; and will be found alike \nPresent; and of his presence many a sign \nStill following thee, still compassing thee round \nWith goodness and paternal love, his face \nExpress, and of his steps the track divine. \nWhich that thou mayest believe, and be confirmed \nEre thou from hence depart; know, I am sent \nTo show thee what shall come in future days \nTo thee, and to thy offspring: good with bad \nExpect to hear; supernal grace contending \nWith sinfulness of men; thereby to learn \nTrue patience, and to temper joy with fear \nAnd pious sorrow; equally inured \nBy moderation either state to bear, \nProsperous or adverse: so shalt thou lead \nSafest thy life, and best prepared endure \nThy mortal passage when it comes.--Ascend \nThis hill; let Eve (for I have drenched her eyes) \nHere sleep below; while thou to foresight wakest; \nAs once thou sleptst, while she to life was formed. \nTo whom thus Adam gratefully replied. \nAscend, I follow thee, safe Guide, the path \nThou leadest me; and to the hand of Heaven submit, \nHowever chastening; to the evil turn \nMy obvious breast; arming to overcome \nBy suffering, and earn rest from labour won, \nIf so I may attain. -- So both ascend \nIn the visions of God.  It was a hill, \nOf Paradise the highest; from whose top \nThe hemisphere of earth, in clearest ken, \nStretched out to the amplest reach of prospect lay. \nNot higher that hill, nor wider looking round, \nWhereon, for different cause, the Tempter set \nOur second Adam, in the wilderness; \nTo show him all Earth's kingdoms, and their glory. \nHis eye might there command wherever stood \nCity of old or modern fame, the seat \nOf mightiest empire, from the destined walls \nOf Cambalu, seat of Cathaian Can, \nAnd Samarchand by Oxus, Temir's throne, \nTo Paquin of Sinaean kings; and thence \nTo Agra and Lahor of great Mogul, \nDown to the golden Chersonese; or where \nThe Persian in Ecbatan sat, or since \nIn Hispahan; or where the Russian Ksar \nIn Mosco; or the Sultan in Bizance, \nTurchestan-born; nor could his eye not ken \nThe empire of Negus to his utmost port \nErcoco, and the less maritim kings \nMombaza, and Quiloa, and Melind, \nAnd Sofala, thought Ophir, to the realm \nOf Congo, and Angola farthest south; \nOr thence from Niger flood to Atlas mount \nThe kingdoms of Almansor, Fez and Sus, \nMorocco, and Algiers, and Tremisen; \nOn Europe thence, and where Rome was to sway \nThe world: in spirit perhaps he also saw \nRich Mexico, the seat of Montezume, \nAnd Cusco in Peru, the richer seat \nOf Atabalipa; and yet unspoiled \nGuiana, whose great city Geryon's sons \nCall El Dorado.  But to nobler sights \nMichael from Adam's eyes the film removed, \nWhich that false fruit that promised clearer sight \nHad bred; then purged with euphrasy and rue \nThe visual nerve, for he had much to see; \nAnd from the well of life three drops instilled. \nSo deep the power of these ingredients pierced, \nEven to the inmost seat of mental sight, \nThat Adam, now enforced to close his eyes, \nSunk down, and all his spirits became entranced; \nBut him the gentle Angel by the hand \nSoon raised, and his attention thus recalled. \nAdam, now ope thine eyes; and first behold \nThe effects, which thy original crime hath wrought \nIn some to spring from thee; who never touched \nThe excepted tree; nor with the snake conspired; \nNor sinned thy sin; yet from that sin derive \nCorruption, to bring forth more violent deeds. \nHis eyes he opened, and beheld a field, \nPart arable and tilth, whereon were sheaves \nNew reaped; the other part sheep-walks and folds; \nI' the midst an altar as the land-mark stood, \nRustick, of grassy sord; thither anon \nA sweaty reaper from his tillage brought \nFirst fruits, the green ear, and the yellow sheaf, \nUnculled, as came to hand; a shepherd next, \nMore meek, came with the firstlings of his flock, \nChoicest and best; then, sacrificing, laid \nThe inwards and their fat, with incense strowed, \nOn the cleft wood, and all due rights performed: \nHis offering soon propitious fire from Heaven \nConsumed with nimble glance, and grateful steam; \nThe other's not, for his was not sincere; \nWhereat he inly raged, and, as they talked, \nSmote him into the midriff with a stone \nThat beat out life; he fell;and, deadly pale, \nGroaned out his soul with gushing blood effused. \nMuch at that sight was Adam in his heart \nDismayed, and thus in haste to the Angel cried. \nO Teacher, some great mischief hath befallen \nTo that meek man, who well had sacrificed; \nIs piety thus and pure devotion paid? \nTo whom Michael thus, he also moved, replied. \nThese two are brethren, Adam, and to come \nOut of thy loins; the unjust the just hath slain, \nFor envy that his brother's offering found \nFrom Heaven acceptance; but the bloody fact \nWill be avenged; and the other's faith, approved, \nLose no reward; though here thou see him die, \nRolling in dust and gore.  To which our sire. \nAlas! both for the deed, and for the cause! \nBut have I now seen Death?  Is this the way \nI must return to native dust?  O sight \nOf terrour, foul and ugly to behold, \nHorrid to think, how horrible to feel! \nTo whom thus Michael.  Death thou hast seen \nIn his first shape on Man; but many shapes \nOf Death, and many are the ways that lead \nTo his grim cave, all dismal; yet to sense \nMore terrible at the entrance, than within. \nSome, as thou sawest, by violent stroke shall die; \nBy fire, flood, famine, by intemperance more \nIn meats and drinks, which on the earth shall bring \nDiseases dire, of which a monstrous crew \nBefore thee shall appear; that thou mayest know \nWhat misery the inabstinence of Eve \nShall bring on Men.  Immediately a place \nBefore his eyes appeared, sad, noisome, dark; \nA lazar-house it seemed; wherein were laid \nNumbers of all diseased; all maladies \nOf ghastly spasm, or racking torture, qualms \nOf heart-sick agony, all feverous kinds, \nConvulsions, epilepsies, fierce catarrhs, \nIntestine stone and ulcer, colick-pangs, \nDemoniack phrenzy, moaping melancholy, \nAnd moon-struck madness, pining atrophy, \nMarasmus, and wide-wasting pestilence, \nDropsies, and asthmas, and joint-racking rheums. \nDire was the tossing, deep the groans; Despair \nTended the sick busiest from couch to couch; \nAnd over them triumphant Death his dart \nShook, but delayed to strike, though oft invoked \nWith vows, as their chief good, and final hope. \nSight so deform what heart of rock could long \nDry-eyed behold?  Adam could not, but wept, \nThough not of woman born; compassion quelled \nHis best of man, and gave him up to tears \nA space, till firmer thoughts restrained excess; \nAnd, scarce recovering words, his plaint renewed. \nO miserable mankind, to what fall \nDegraded, to what wretched state reserved! \nBetter end here unborn.  Why is life given \nTo be thus wrested from us? rather, why \nObtruded on us thus? who, if we knew \nWhat we receive, would either no accept \nLife offered, or soon beg to lay it down; \nGlad to be so dismissed in peace.  Can thus \nThe image of God in Man, created once \nSo goodly and erect, though faulty since, \nTo such unsightly sufferings be debased \nUnder inhuman pains?  Why should not Man, \nRetaining still divine similitude \nIn part, from such deformities be free, \nAnd, for his Maker's image sake, exempt? \nTheir Maker's image, answered Michael, then \nForsook them, when themselves they vilified \nTo serve ungoverned Appetite; and took \nHis image whom they served, a brutish vice, \nInductive mainly to the sin of Eve. \nTherefore so abject is their punishment, \nDisfiguring not God's likeness, but their own; \nOr if his likeness, by themselves defaced; \nWhile they pervert pure Nature's healthful rules \nTo loathsome sickness; worthily, since they \nGod's image did not reverence in themselves. \nI yield it just, said Adam, and submit. \nBut is there yet no other way, besides \nThese painful passages, how we may come \nTo death, and mix with our connatural dust? \nThere is, said Michael, if thou well observe \nThe rule of Not too much; by temperance taught, \nIn what thou eatest and drinkest; seeking from thence \nDue nourishment, not gluttonous delight, \nTill many years over thy head return: \nSo mayest thou live; till, like ripe fruit, thou drop \nInto thy mother's lap; or be with ease \nGathered, nor harshly plucked; for death mature: \nThis is Old Age; but then, thou must outlive \nThy youth, thy strength, thy beauty; which will change \nTo withered, weak, and gray; thy senses then, \nObtuse, all taste of pleasure must forego, \nTo what thou hast; and, for the air of youth, \nHopeful and cheerful, in thy blood will reign \nA melancholy damp of cold and dry \nTo weigh thy spirits down, and last consume \nThe balm of life.  To whom our ancestor. \nHenceforth I fly not death, nor would prolong \nLife much; bent rather, how I may be quit, \nFairest and easiest, of this cumbrous charge; \nWhich I must keep till my appointed day \nOf rendering up, and patiently attend \nMy dissolution.  Michael replied. \nNor love thy life, nor hate; but what thou livest \nLive well; how long, or short, permit to Heaven: \nAnd now prepare thee for another sight. \nHe looked, and saw a spacious plain, whereon \nWere tents of various hue; by some, were herds \nOf cattle grazing; others, whence the sound \nOf instruments, that made melodious chime, \nWas heard, of harp and organ; and, who moved \nTheir stops and chords, was seen; his volant touch, \nInstinct through all proportions, low and high, \nFled and pursued transverse the resonant fugue. \nIn other part stood one who, at the forge \nLabouring, two massy clods of iron and brass \nHad melted, (whether found where casual fire \nHad wasted woods on mountain or in vale, \nDown to the veins of earth; thence gliding hot \nTo some cave's mouth; or whether washed by stream \nFrom underground;) the liquid ore he drained \nInto fit moulds prepared; from which he formed \nFirst his own tools; then, what might else be wrought \nFusil or graven in metal.  After these, \nBut on the hither side, a different sort \nFrom the high neighbouring hills, which was their seat, \nDown to the plain descended; by their guise \nJust men they seemed, and all their study bent \nTo worship God aright, and know his works \nNot hid; nor those things last, which might preserve \nFreedom and peace to Men; they on the plain \nLong had not walked, when from the tents, behold! \nA bevy of fair women, richly gay \nIn gems and wanton dress; to the harp they sung \nSoft amorous ditties, and in dance came on: \nThe men, though grave, eyed them; and let their eyes \nRove without rein; till, in the amorous net \nFast caught, they liked; and each his liking chose; \nAnd now of love they treat, till the evening-star, \nLove's harbinger, appeared; then, all in heat \nThey light the nuptial torch, and bid invoke \nHymen, then first to marriage rites invoked: \nWith feast and musick all the tents resound. \nSuch happy interview, and fair event \nOf love and youth not lost, songs, garlands, flowers, \nAnd charming symphonies, attached the heart \nOf Adam, soon inclined to admit delight, \nThe bent of nature; which he thus expressed. \nTrue opener of mine eyes, prime Angel blest; \nMuch better seems this vision, and more hope \nOf peaceful days portends, than those two past; \nThose were of hate and death, or pain much worse; \nHere Nature seems fulfilled in all her ends. \nTo whom thus Michael.  Judge not what is best \nBy pleasure, though to nature seeming meet; \nCreated, as thou art, to nobler end \nHoly and pure, conformity divine. \nThose tents thou sawest so pleasant, were the tents \nOf wickedness, wherein shall dwell his race \nWho slew his brother; studious they appear \nOf arts that polish life, inventers rare; \nUnmindful of their Maker, though his Spirit \nTaught them; but they his gifts acknowledged none. \nYet they a beauteous offspring shall beget; \nFor that fair female troop thou sawest, that seemed \nOf Goddesses, so blithe, so smooth, so gay, \nYet empty of all good wherein consists \nWoman's domestick honour and chief praise; \nBred only and completed to the taste \nOf lustful appetence, to sing, to dance, \nTo dress, and troll the tongue, and roll the eye: \nTo these that sober race of men, whose lives \nReligious titled them the sons of God, \nShall yield up all their virtue, all their fame \nIgnobly, to the trains and to the smiles \nOf these fair atheists; and now swim in joy, \nErelong to swim at large; and laugh, for which \nThe world erelong a world of tears must weep. \nTo whom thus Adam, of short joy bereft. \nO pity and shame, that they, who to live well \nEntered so fair, should turn aside to tread \nPaths indirect, or in the mid way faint! \nBut still I see the tenour of Man's woe \nHolds on the same, from Woman to begin. \nFrom Man's effeminate slackness it begins, \nSaid the Angel, who should better hold his place \nBy wisdom, and superiour gifts received. \nBut now prepare thee for another scene. \nHe looked, and saw wide territory spread \nBefore him, towns, and rural works between; \nCities of men with lofty gates and towers, \nConcourse in arms, fierce faces threatening war, \nGiants of mighty bone and bold emprise; \nPart wield their arms, part curb the foaming steed, \nSingle or in array of battle ranged \nBoth horse and foot, nor idly mustering stood; \nOne way a band select from forage drives \nA herd of beeves, fair oxen and fair kine, \nFrom a fat meadow ground; or fleecy flock, \nEwes and their bleating lambs over the plain, \nTheir booty; scarce with life the shepherds fly, \nBut call in aid, which makes a bloody fray; \nWith cruel tournament the squadrons join; \nWhere cattle pastured late, now scattered lies \nWith carcasses and arms the ensanguined field, \nDeserted:  Others to a city strong \nLay siege, encamped; by battery, scale, and mine, \nAssaulting; others from the wall defend \nWith dart and javelin, stones, and sulphurous fire; \nOn each hand slaughter, and gigantick deeds. \nIn other part the sceptered heralds call \nTo council, in the city-gates; anon \nGray-headed men and grave, with warriours mixed, \nAssemble, and harangues are heard; but soon, \nIn factious opposition; till at last, \nOf middle age one rising, eminent \nIn wise deport, spake much of right and wrong, \nOf justice, or religion, truth, and peace, \nAnd judgement from above: him old and young \nExploded, and had seized with violent hands, \nHad not a cloud descending snatched him thence \nUnseen amid the throng: so violence \nProceeded, and oppression, and sword-law, \nThrough all the plain, and refuge none was found. \nAdam was all in tears, and to his guide \nLamenting turned full sad; O!what are these, \nDeath's ministers, not men? who thus deal death \nInhumanly to men, and multiply \nTen thousandfold the sin of him who slew \nHis brother: for of whom such massacre \nMake they, but of their brethren; men of men \nBut who was that just man, whom had not Heaven \nRescued, had in his righteousness been lost? \nTo whom thus Michael.  These are the product \nOf those ill-mated marriages thou sawest; \nWhere good with bad were matched, who of themselves \nAbhor to join; and, by imprudence mixed, \nProduce prodigious births of body or mind. \nSuch were these giants, men of high renown; \nFor in those days might only shall be admired, \nAnd valour and heroick virtue called; \nTo overcome in battle, and subdue \nNations, and bring home spoils with infinite \nMan-slaughter, shall be held the highest pitch \nOf human glory; and for glory done \nOf triumph, to be styled great conquerours \nPatrons of mankind, Gods, and sons of Gods; \nDestroyers rightlier called, and plagues of men. \nThus fame shall be achieved, renown on earth; \nAnd what most merits fame, in silence hid. \nBut he, the seventh from thee, whom thou beheldst \nThe only righteous in a world preverse, \nAnd therefore hated, therefore so beset \nWith foes, for daring single to be just, \nAnd utter odious truth, that God would come \nTo judge them with his Saints; him the Most High \nRapt in a balmy cloud with winged steeds \nDid, as thou sawest, receive, to walk with God \nHigh in salvation and the climes of bliss, \nExempt from death; to show thee what reward \nAwaits the good; the rest what punishment; \nWhich now direct thine eyes and soon behold. \nHe looked, and saw the face of things quite changed; \nThe brazen throat of war had ceased to roar; \nAll now was turned to jollity and game, \nTo luxury and riot, feast and dance; \nMarrying or prostituting, as befel, \nRape or adultery, where passing fair \nAllured them; thence from cups to civil broils. \nAt length a reverend sire among them came, \nAnd of their doings great dislike declared, \nAnd testified against their ways; he oft \nFrequented their assemblies, whereso met, \nTriumphs or festivals; and to them preached \nConversion and repentance, as to souls \nIn prison, under judgements imminent: \nBut all in vain: which when he saw, he ceased \nContending, and removed his tents far off; \nThen, from the mountain hewing timber tall, \nBegan to build a vessel of huge bulk; \nMeasured by cubit, length, and breadth, and highth; \nSmeared round with pitch; and in the side a door \nContrived; and of provisions laid in large, \nFor man and beast: when lo, a wonder strange! \nOf every beast, and bird, and insect small, \nCame sevens, and pairs; and entered in as taught \nTheir order: last the sire and his three sons, \nWith their four wives; and God made fast the door. \nMean while the south-wind rose, and, with black wings \nWide-hovering, all the clouds together drove \nFrom under Heaven; the hills to their supply \nVapour, and exhalation dusk and moist, \nSent up amain; and now the thickened sky \nLike a dark cieling stood; down rushed the rain \nImpetuous; and continued, till the earth \nNo more was seen: the floating vessel swum \nUplifted, and secure with beaked prow \nRode tilting o'er the waves; all dwellings else \nFlood overwhelmed, and them with all their pomp \nDeep under water rolled; sea covered sea, \nSea without shore; and in their palaces, \nWhere luxury late reigned, sea-monsters whelped \nAnd stabled; of mankind, so numerous late, \nAll left, in one small bottom swum imbarked. \nHow didst thou grieve then, Adam, to behold \nThe end of all thy offspring, end so sad, \nDepopulation!  Thee another flood, \nOf tears and sorrow a flood, thee also drowned, \nAnd sunk thee as thy sons; till, gently reared \nBy the Angel, on thy feet thou stoodest at last, \nThough comfortless; as when a father mourns \nHis children, all in view destroyed at once; \nAnd scarce to the Angel utter'dst thus thy plaint. \nO visions ill foreseen!  Better had I \nLived ignorant of future! so had borne \nMy part of evil only, each day's lot \nEnough to bear; those now, that were dispensed \nThe burden of many ages, on me light \nAt once, by my foreknowledge gaining birth \nAbortive, to torment me ere their being, \nWith thought that they must be.  Let no man seek \nHenceforth to be foretold, what shall befall \nHim or his children; evil he may be sure, \nWhich neither his foreknowing can prevent; \nAnd he the future evil shall no less \nIn apprehension than in substance feel, \nGrievous to bear: but that care now is past, \nMan is not whom to warn: those few escaped \nFamine and anguish will at last consume, \nWandering that watery desart:  I had hope, \nWhen violence was ceased, and war on earth, \nAll would have then gone well; peace would have crowned \nWith length of happy days the race of Man; \nBut I was far deceived; for now I see \nPeace to corrupt no less than war to waste. \nHow comes it thus? unfold, celestial Guide, \nAnd whether here the race of Man will end. \nTo whom thus Michael.  Those, whom last thou sawest \nIn triumph and luxurious wealth, are they \nFirst seen in acts of prowess eminent \nAnd great exploits, but of true virtue void; \nWho, having spilt much blood, and done much wast \nSubduing nations, and achieved thereby \nFame in the world, high titles, and rich prey; \nShall change their course to pleasure, ease, and sloth, \nSurfeit, and lust; till wantonness and pride \nRaise out of friendship hostile deeds in peace. \nThe conquered also, and enslaved by war, \nShall, with their freedom lost, all virtue lose \nAnd fear of God; from whom their piety feigned \nIn sharp contest of battle found no aid \nAgainst invaders; therefore, cooled in zeal, \nThenceforth shall practice how to live secure, \nWorldly or dissolute, on what their lords \nShall leave them to enjoy; for the earth shall bear \nMore than enough, that temperance may be tried: \nSo all shall turn degenerate, all depraved; \nJustice and temperance, truth and faith, forgot; \nOne man except, the only son of light \nIn a dark age, against example good, \nAgainst allurement, custom, and a world \nOffended: fearless of reproach and scorn, \nThe grand-child, with twelve sons encreased, departs \nFrom Canaan, to a land hereafter called \nEgypt, divided by the river Nile; \nSee where it flows, disgorging at seven mouths \nInto the sea:  To sojourn in that land \nHe comes, invited by a younger son \nIn time of dearth; a son, whose worthy deeds \nRaise him to be the second in that realm \nOf Pharaoh:  There he dies, and leaves his race \nGrowing into a nation, and now grown \nSuspected to a sequent king, who seeks \nTo stop their overgrowth, as inmate guests \nOr violence, he of their wicked ways \nShall them admonish; and before them set \nThe paths of righteousness, how much more safe \nAnd full of peace; denouncing wrath to come \nOn their impenitence; and shall return \nOf them derided, but of God observed \nThe one just man alive; by his command \nShall build a wonderous ark, as thou beheldst, \nTo save himself, and houshold, from amidst \nA world devote to universal wrack. \nNo sooner he, with them of man and beast \nSelect for life, shall in the ark be lodged, \nAnd sheltered round; but all the cataracts \nOf Heaven set open on the Earth shall pour \nRain, day and night; all fountains of the deep, \nBroke up, shall heave the ocean to usurp \nBeyond all bounds; till inundation rise \nAbove the highest hills:  Then shall this mount \nOf Paradise by might of waves be moved \nOut of his place, pushed by the horned flood, \nWith all his verdure spoiled, and trees adrift, \nDown the great river to the opening gulf, \nAnd there take root an island salt and bare, \nThe haunt of seals, and orcs, and sea-mews' clang: \nTo teach thee that God attributes to place \nNo sanctity, if none be thither brought \nBy men who there frequent, or therein dwell. \nAnd now, what further shall ensue, behold. \nHe looked, and saw the ark hull on the flood, \nWhich now abated; for the clouds were fled, \nDriven by a keen north-wind, that, blowing dry, \nWrinkled the face of deluge, as decayed; \nAnd the clear sun on his wide watery glass \nGazed hot, and of the fresh wave largely drew, \nAs after thirst; which made their flowing shrink \nFrom standing lake to tripping ebb, that stole \nWith soft foot towards the deep; who now had stopt \nHis sluces, as the Heaven his windows shut. \nThe ark no more now floats, but seems on ground, \nFast on the top of some high mountain fixed. \nAnd now the tops of hills, as rocks, appear; \nWith clamour thence the rapid currents drive, \nTowards the retreating sea, their furious tide. \nForthwith from out the ark a raven flies, \nAnd after him, the surer messenger, \nA dove sent forth once and again to spy \nGreen tree or ground, whereon his foot may light: \nThe second time returning, in his bill \nAn olive-leaf he brings, pacifick sign: \nAnon dry ground appears, and from his ark \nThe ancient sire descends, with all his train; \nThen with uplifted hands, and eyes devout, \nGrateful to Heaven, over his head beholds \nA dewy cloud, and in the cloud a bow \nConspicuous with three lifted colours gay, \nBetokening peace from God, and covenant new. \nWhereat the heart of Adam, erst so sad, \nGreatly rejoiced; and thus his joy broke forth. \nO thou, who future things canst represent \nAs present, heavenly Instructer!  I revive \nAt this last sight; assured that Man shall live, \nWith all the creatures, and their seed preserve. \nFar less I now lament for one whole world \nOf wicked sons destroyed, than I rejoice \nFor one man found so perfect, and so just, \nThat God vouchsafes to raise another world \nFrom him, and all his anger to forget. \nBut say, what mean those coloured streaks in Heaven \nDistended, as the brow of God appeased? \nOr serve they, as a flowery verge, to bind \nThe fluid skirts of that same watery cloud, \nLest it again dissolve, and shower the earth? \nTo whom the Arch-Angel.  Dextrously thou aimest; \nSo willingly doth God remit his ire, \nThough late repenting him of Man depraved; \nGrieved at his heart, when looking down he saw \nThe whole earth filled with violence, and all flesh \nCorrupting each their way; yet, those removed, \nSuch grace shall one just man find in his sight, \nThat he relents, not to blot out mankind; \nAnd makes a covenant never to destroy \nThe earth again by flood; nor let the sea \nSurpass his bounds; nor rain to drown the world, \nWith man therein or beast; but, when he brings \nOver the earth a cloud, will therein set \nHis triple-coloured bow, whereon to look, \nAnd call to mind his covenant: Day and night, \nSeed-time and harvest, heat and hoary frost, \nShall hold their course; till fire purge all things new, \nBoth Heaven and Earth, wherein the just shall dwell. \n \n \n \nBook XII                                                         \n \n \nAs one who in his journey bates at noon, \nThough bent on speed; so here the Arch-Angel paused \nBetwixt the world destroyed and world restored, \nIf Adam aught perhaps might interpose; \nThen, with transition sweet, new speech resumes. \nThus thou hast seen one world begin, and end; \nAnd Man, as from a second stock, proceed. \nMuch thou hast yet to see; but I perceive \nThy mortal sight to fail; objects divine \nMust needs impair and weary human sense: \nHenceforth what is to come I will relate; \nThou therefore give due audience, and attend. \nThis second source of Men, while yet but few, \nAnd while the dread of judgement past remains \nFresh in their minds, fearing the Deity, \nWith some regard to what is just and right \nShall lead their lives, and multiply apace; \nLabouring the soil, and reaping plenteous crop, \nCorn, wine, and oil; and, from the herd or flock, \nOft sacrificing bullock, lamb, or kid, \nWith large wine-offerings poured, and sacred feast, \nShall spend their days in joy unblamed; and dwell \nLong time in peace, by families and tribes, \nUnder paternal rule: till one shall rise \nOf proud ambitious heart; who, not content \nWith fair equality, fraternal state, \nWill arrogate dominion undeserved \nOver his brethren, and quite dispossess \nConcord and law of nature from the earth; \nHunting (and men not beasts shall be his game) \nWith war, and hostile snare, such as refuse \nSubjection to his empire tyrannous: \nA mighty hunter thence he shall be styled \nBefore the Lord; as in despite of Heaven, \nOr from Heaven, claiming second sovranty; \nAnd from rebellion shall derive his name, \nThough of rebellion others he accuse. \nHe with a crew, whom like ambition joins \nWith him or under him to tyrannize, \nMarching from Eden towards the west, shall find \nThe plain, wherein a black bituminous gurge \nBoils out from under ground, the mouth of Hell: \nOf brick, and of that stuff, they cast to build \nA city and tower, whose top may reach to Heaven; \nAnd get themselves a name; lest, far dispersed \nIn foreign lands, their memory be lost; \nRegardless whether good or evil fame. \nBut God, who oft descends to visit men \nUnseen, and through their habitations walks \nTo mark their doings, them beholding soon, \nComes down to see their city, ere the tower \nObstruct Heaven-towers, and in derision sets \nUpon their tongues a various spirit, to rase \nQuite out their native language; and, instead, \nTo sow a jangling noise of words unknown: \nForthwith a hideous gabble rises loud, \nAmong the builders; each to other calls \nNot understood; till hoarse, and all in rage, \nAs mocked they storm: great laughter was in Heaven, \nAnd looking down, to see the hubbub strange, \nAnd hear the din:  Thus was the building left \nRidiculous, and the work Confusion named. \nWhereto thus Adam, fatherly displeased. \nO execrable son! so to aspire \nAbove his brethren; to himself assuming \nAuthority usurped, from God not given: \nHe gave us only over beast, fish, fowl, \nDominion absolute; that right we hold \nBy his donation; but man over men \nHe made not lord; such title to himself \nReserving, human left from human free. \nBut this usurper his encroachment proud \nStays not on Man; to God his tower intends \nSiege and defiance:  Wretched man!what food \nWill he convey up thither, to sustain \nHimself and his rash army; where thin air \nAbove the clouds will pine his entrails gross, \nAnd famish him of breath, if not of bread? \nTo whom thus Michael.  Justly thou abhorrest \nThat son, who on the quiet state of men \nSuch trouble brought, affecting to subdue \nRational liberty; yet know withal, \nSince thy original lapse, true liberty \nIs lost, which always with right reason dwells \nTwinned, and from her hath no dividual being: \nReason in man obscured, or not obeyed, \nImmediately inordinate desires, \nAnd upstart passions, catch the government \nFrom reason; and to servitude reduce \nMan, till then free.  Therefore, since he permits \nWithin himself unworthy powers to reign \nOver free reason, God, in judgement just, \nSubjects him from without to violent lords; \nWho oft as undeservedly enthrall \nHis outward freedom:  Tyranny must be; \nThough to the tyrant thereby no excuse. \nYet sometimes nations will decline so low \nFrom virtue, which is reason, that no wrong, \nBut justice, and some fatal curse annexed, \nDeprives them of their outward liberty; \nTheir inward lost:  Witness the irreverent son \nOf him who built the ark; who, for the shame \nDone to his father, heard this heavy curse, \nServant of servants, on his vicious race. \nThus will this latter, as the former world, \nStill tend from bad to worse; till God at last, \nWearied with their iniquities, withdraw \nHis presence from among them, and avert \nHis holy eyes; resolving from thenceforth \nTo leave them to their own polluted ways; \nAnd one peculiar nation to select \nFrom all the rest, of whom to be invoked, \nA nation from one faithful man to spring: \nHim on this side Euphrates yet residing, \nBred up in idol-worship:  O, that men \n(Canst thou believe?) should be so stupid grown, \nWhile yet the patriarch lived, who 'scaped the flood, \nAs to forsake the living God, and fall \nTo worship their own work in wood and stone \nFor Gods!  Yet him God the Most High vouchsafes \nTo call by vision, from his father's house, \nHis kindred, and false Gods, into a land \nWhich he will show him; and from him will raise \nA mighty nation; and upon him shower \nHis benediction so, that in his seed \nAll nations shall be blest: he straight obeys; \nNot knowing to what land, yet firm believes: \nI see him, but thou canst not, with what faith \nHe leaves his Gods, his friends, and native soil, \nUr of Chaldaea, passing now the ford \nTo Haran; after him a cumbrous train \nOf herds and flocks, and numerous servitude; \nNot wandering poor, but trusting all his wealth \nWith God, who called him, in a land unknown. \nCanaan he now attains; I see his tents \nPitched about Sechem, and the neighbouring plain \nOf Moreh; there by promise he receives \nGift to his progeny of all that land, \nFrom Hameth northward to the Desart south; \n(Things by their names I call, though yet unnamed;) \nFrom Hermon east to the great western Sea; \nMount Hermon, yonder sea; each place behold \nIn prospect, as I point them; on the shore \nMount Carmel; here, the double-founted stream, \nJordan, true limit eastward; but his sons \nShall dwell to Senir, that long ridge of hills. \nThis ponder, that all nations of the earth \nShall in his seed be blessed:  By that seed \nIs meant thy great Deliverer, who shall bruise \nThe Serpent's head; whereof to thee anon \nPlainlier shall be revealed.  This patriarch blest, \nWhom faithful Abraham due time shall call, \nA son, and of his son a grand-child, leaves; \nLike him in faith, in wisdom, and renown: \nThe grandchild, with twelve sons increased, departs \nFrom Canaan to a land hereafter called \nEgypt, divided by the river Nile \nSee where it flows, disgorging at seven mouths \nInto the sea. To sojourn in that land \nHe comes, invited by a younger son \nIn time of dearth, a son whose worthy deeds \nRaise him to be the second in that realm \nOf Pharaoh. There he dies, and leaves his race \nGrowing into a nation, and now grown \nSuspected to a sequent king, who seeks \nTo stop their overgrowth, as inmate guests \nToo numerous; whence of guests he makes them slaves \nInhospitably, and kills their infant males: \nTill by two brethren (these two brethren call \nMoses and Aaron) sent from God to claim \nHis people from enthralment, they return, \nWith glory and spoil, back to their promised land. \nBut first, the lawless tyrant, who denies \nTo know their God, or message to regard, \nMust be compelled by signs and judgements dire; \nTo blood unshed the rivers must be turned; \nFrogs, lice, and flies, must all his palace fill \nWith loathed intrusion, and fill all the land; \nHis cattle must of rot and murren die; \nBotches and blains must all his flesh emboss, \nAnd all his people; thunder mixed with hail, \nHail mixed with fire, must rend the Egyptians sky, \nAnd wheel on the earth, devouring where it rolls; \nWhat it devours not, herb, or fruit, or grain, \nA darksome cloud of locusts swarming down \nMust eat, and on the ground leave nothing green; \nDarkness must overshadow all his bounds, \nPalpable darkness, and blot out three days; \nLast, with one midnight stroke, all the first-born \nOf Egypt must lie dead.  Thus with ten wounds \nThe river-dragon tamed at length submits \nTo let his sojourners depart, and oft \nHumbles his stubborn heart; but still, as ice \nMore hardened after thaw; till, in his rage \nPursuing whom he late dismissed, the sea \nSwallows him with his host; but them lets pass, \nAs on dry land, between two crystal walls; \nAwed by the rod of Moses so to stand \nDivided, till his rescued gain their shore: \nSuch wondrous power God to his saint will lend, \nThough present in his Angel; who shall go \nBefore them in a cloud, and pillar of fire; \nBy day a cloud, by night a pillar of fire; \nTo guide them in their journey, and remove \nBehind them, while the obdurate king pursues: \nAll night he will pursue; but his approach \nDarkness defends between till morning watch; \nThen through the fiery pillar, and the cloud, \nGod looking forth will trouble all his host, \nAnd craze their chariot-wheels: when by command \nMoses once more his potent rod extends \nOver the sea; the sea his rod obeys; \nOn their embattled ranks the waves return, \nAnd overwhelm their war:  The race elect \nSafe toward Canaan from the shore advance \nThrough the wild Desart, not the readiest way; \nLest, entering on the Canaanite alarmed, \nWar terrify them inexpert, and fear \nReturn them back to Egypt, choosing rather \nInglorious life with servitude; for life \nTo noble and ignoble is more sweet \nUntrained in arms, where rashness leads not on. \nThis also shall they gain by their delay \nIn the wide wilderness; there they shall found \nTheir government, and their great senate choose \nThrough the twelve tribes, to rule by laws ordained: \nGod from the mount of Sinai, whose gray top \nShall tremble, he descending, will himself \nIn thunder, lightning, and loud trumpets' sound, \nOrdain them laws; part, such as appertain \nTo civil justice; part, religious rites \nOf sacrifice; informing them, by types \nAnd shadows, of that destined Seed to bruise \nThe Serpent, by what means he shall achieve \nMankind's deliverance.  But the voice of God \nTo mortal ear is dreadful:  They beseech \nThat Moses might report to them his will, \nAnd terrour cease; he grants what they besought, \nInstructed that to God is no access \nWithout Mediator, whose high office now \nMoses in figure bears; to introduce \nOne greater, of whose day he shall foretel, \nAnd all the Prophets in their age the times \nOf great Messiah shall sing.  Thus, laws and rites \nEstablished, such delight hath God in Men \nObedient to his will, that he vouchsafes \nAmong them to set up his tabernacle; \nThe Holy One with mortal Men to dwell: \nBy his prescript a sanctuary is framed \nOf cedar, overlaid with gold; therein \nAn ark, and in the ark his testimony, \nThe records of his covenant; over these \nA mercy-seat of gold, between the wings \nOf two bright Cherubim; before him burn \nSeven lamps as in a zodiack representing \nThe heavenly fires; over the tent a cloud \nShall rest by day, a fiery gleam by night; \nSave when they journey, and at length they come, \nConducted by his Angel, to the land \nPromised to Abraham and his seed:--The rest \nWere long to tell; how many battles fought \nHow many kings destroyed; and kingdoms won; \nOr how the sun shall in mid Heaven stand still \nA day entire, and night's due course adjourn, \nMan's voice commanding, 'Sun, in Gibeon stand, \n'And thou moon in the vale of Aialon, \n'Till Israel overcome! so call the third \nFrom Abraham, son of Isaac; and from him \nHis whole descent, who thus shall Canaan win. \nHere Adam interposed.  O sent from Heaven, \nEnlightener of my darkness, gracious things \nThou hast revealed; those chiefly, which concern \nJust Abraham and his seed: now first I find \nMine eyes true-opening, and my heart much eased; \nErewhile perplexed with thoughts, what would become \nOf me and all mankind:  But now I see \nHis day, in whom all nations shall be blest; \nFavour unmerited by me, who sought \nForbidden knowledge by forbidden means. \nThis yet I apprehend not, why to those \nAmong whom God will deign to dwell on earth \nSo many and so various laws are given; \nSo many laws argue so many sins \nAmong them; how can God with such reside? \nTo whom thus Michael.  Doubt not but that sin \nWill reign among them, as of thee begot; \nAnd therefore was law given them, to evince \nTheir natural pravity, by stirring up \nSin against law to fight: that when they see \nLaw can discover sin, but not remove, \nSave by those shadowy expiations weak, \nThe blood of bulls and goats, they may conclude \nSome blood more precious must be paid for Man; \nJust for unjust; that, in such righteousness \nTo them by faith imputed, they may find \nJustification towards God, and peace \nOf conscience; which the law by ceremonies \nCannot appease; nor Man the mortal part \nPerform; and, not performing, cannot live. \nSo law appears imperfect; and but given \nWith purpose to resign them, in full time, \nUp to a better covenant; disciplined \nFrom shadowy types to truth; from flesh to spirit; \nFrom imposition of strict laws to free \nAcceptance of large grace; from servile fear \nTo filial; works of law to works of faith. \nAnd therefore shall not Moses, though of God \nHighly beloved, being but the minister \nOf law, his people into Canaan lead; \nBut Joshua, whom the Gentiles Jesus call, \nHis name and office bearing, who shall quell \nThe adversary-Serpent, and bring back \nThrough the world's wilderness long-wandered Man \nSafe to eternal Paradise of rest. \nMean while they, in their earthly Canaan placed, \nLong time shall dwell and prosper, but when sins \nNational interrupt their publick peace, \nProvoking God to raise them enemies; \nFrom whom as oft he saves them penitent \nBy Judges first, then under Kings; of whom \nThe second, both for piety renowned \nAnd puissant deeds, a promise shall receive \nIrrevocable, that his regal throne \nFor ever shall endure; the like shall sing \nAll Prophecy, that of the royal stock \nOf David (so I name this king) shall rise \nA Son, the Woman's seed to thee foretold, \nForetold to Abraham, as in whom shall trust \nAll nations; and to kings foretold, of kings \nThe last; for of his reign shall be no end. \nBut first, a long succession must ensue; \nAnd his next son, for wealth and wisdom famed, \nThe clouded ark of God, till then in tents \nWandering, shall in a glorious temple enshrine. \nSuch follow him, as shall be registered \nPart good, part bad; of bad the longer scroll; \nWhose foul idolatries, and other faults \nHeaped to the popular sum, will so incense \nGod, as to leave them, and expose their land, \nTheir city, his temple, and his holy ark, \nWith all his sacred things, a scorn and prey \nTo that proud city, whose high walls thou sawest \nLeft in confusion; Babylon thence called. \nThere in captivity he lets them dwell \nThe space of seventy years; then brings them back, \nRemembering mercy, and his covenant sworn \nTo David, stablished as the days of Heaven. \nReturned from Babylon by leave of kings \nTheir lords, whom God disposed, the house of God \nThey first re-edify; and for a while \nIn mean estate live moderate; till, grown \nIn wealth and multitude, factious they grow; \nBut first among the priests dissention springs, \nMen who attend the altar, and should most \nEndeavour peace: their strife pollution brings \nUpon the temple itself: at last they seise \nThe scepter, and regard not David's sons; \nThen lose it to a stranger, that the true \nAnointed King Messiah might be born \nBarred of his right; yet at his birth a star, \nUnseen before in Heaven, proclaims him come; \nAnd guides the eastern sages, who inquire \nHis place, to offer incense, myrrh, and gold: \nHis place of birth a solemn Angel tells \nTo simple shepherds, keeping watch by night; \nThey gladly thither haste, and by a quire \nOf squadroned Angels hear his carol sung. \nA virgin is his mother, but his sire \nThe power of the Most High:  He shall ascend \nThe throne hereditary, and bound his reign \nWith Earth's wide bounds, his glory with the Heavens. \nHe ceased, discerning Adam with such joy \nSurcharged, as had like grief been dewed in tears, \nWithout the vent of words; which these he breathed. \nO prophet of glad tidings, finisher \nOf utmost hope! now clear I understand \nWhat oft my steadiest thoughts have searched in vain; \nWhy our great Expectation should be called \nThe seed of Woman:  Virgin Mother, hail, \nHigh in the love of Heaven; yet from my loins \nThou shalt proceed, and from thy womb the Son \nOf God Most High: so God with Man unites! \nNeeds must the Serpent now his capital bruise \nExpect with mortal pain:  Say where and when \nTheir fight, what stroke shall bruise the victor's heel. \nTo whom thus Michael.  Dream not of their fight, \nAs of a duel, or the local wounds \nOf head or heel:  Not therefore joins the Son \nManhood to Godhead, with more strength to foil \nThy enemy; nor so is overcome \nSatan, whose fall from Heaven, a deadlier bruise, \nDisabled, not to give thee thy death's wound: \nWhich he, who comes thy Saviour, shall recure, \nNot by destroying Satan, but his works \nIn thee, and in thy seed:  Nor can this be, \nBut by fulfilling that which thou didst want, \nObedience to the law of God, imposed \nOn penalty of death, and suffering death; \nThe penalty to thy transgression due, \nAnd due to theirs which out of thine will grow: \nSo only can high Justice rest appaid. \nThe law of God exact he shall fulfil \nBoth by obedience and by love, though love \nAlone fulfil the law; thy punishment \nHe shall endure, by coming in the flesh \nTo a reproachful life, and cursed death; \nProclaiming life to all who shall believe \nIn his redemption; and that his obedience, \nImputed, becomes theirs by faith; his merits \nTo save them, not their own, though legal, works. \nFor this he shall live hated, be blasphemed, \nSeised on by force, judged, and to death condemned \nA shameful and accursed, nailed to the cross \nBy his own nation; slain for bringing life: \nBut to the cross he nails thy enemies, \nThe law that is against thee, and the sins \nOf all mankind, with him there crucified, \nNever to hurt them more who rightly trust \nIn this his satisfaction; so he dies, \nBut soon revives; Death over him no power \nShall long usurp; ere the third dawning light \nReturn, the stars of morn shall see him rise \nOut of his grave, fresh as the dawning light, \nThy ransom paid, which Man from death redeems, \nHis death for Man, as many as offered life \nNeglect not, and the benefit embrace \nBy faith not void of works:  This God-like act \nAnnuls thy doom, the death thou shouldest have died, \nIn sin for ever lost from life; this act \nShall bruise the head of Satan, crush his strength, \nDefeating Sin and Death, his two main arms; \nAnd fix far deeper in his head their stings \nThan temporal death shall bruise the victor's heel, \nOr theirs whom he redeems; a death, like sleep, \nA gentle wafting to immortal life. \nNor after resurrection shall he stay \nLonger on earth, than certain times to appear \nTo his disciples, men who in his life \nStill followed him; to them shall leave in charge \nTo teach all nations what of him they learned \nAnd his salvation; them who shall believe \nBaptizing in the profluent stream, the sign \nOf washing them from guilt of sin to life \nPure, and in mind prepared, if so befall, \nFor death, like that which the Redeemer died. \nAll nations they shall teach; for, from that day, \nNot only to the sons of Abraham's loins \nSalvation shall be preached, but to the sons \nOf Abraham's faith wherever through the world; \nSo in his seed all nations shall be blest. \nThen to the Heaven of Heavens he shall ascend \nWith victory, triumphing through the air \nOver his foes and thine; there shall surprise \nThe Serpent, prince of air, and drag in chains \nThrough all his realm, and there confounded leave; \nThen enter into glory, and resume \nHis seat at God's right hand, exalted high \nAbove all names in Heaven; and thence shall come, \nWhen this world's dissolution shall be ripe, \nWith glory and power to judge both quick and dead; \nTo judge the unfaithful dead, but to reward \nHis faithful, and receive them into bliss, \nWhether in Heaven or Earth; for then the Earth \nShall all be Paradise, far happier place \nThan this of Eden, and far happier days. \nSo spake the Arch-Angel Michael; then paused, \nAs at the world's great period; and our sire, \nReplete with joy and wonder, thus replied. \nO Goodness infinite, Goodness immense! \nThat all this good of evil shall produce, \nAnd evil turn to good; more wonderful \nThan that which by creation first brought forth \nLight out of darkness!  Full of doubt I stand, \nWhether I should repent me now of sin \nBy me done, and occasioned; or rejoice \nMuch more, that much more good thereof shall spring; \nTo God more glory, more good-will to Men \nFrom God, and over wrath grace shall abound. \nBut say, if our Deliverer up to Heaven \nMust re-ascend, what will betide the few \nHis faithful, left among the unfaithful herd, \nThe enemies of truth?  Who then shall guide \nHis people, who defend?  Will they not deal \nWorse with his followers than with him they dealt? \nBe sure they will, said the Angel; but from Heaven \nHe to his own a Comforter will send, \nThe promise of the Father, who shall dwell \nHis Spirit within them; and the law of faith, \nWorking through love, upon their hearts shall write, \nTo guide them in all truth; and also arm \nWith spiritual armour, able to resist \nSatan's assaults, and quench his fiery darts; \nWhat man can do against them, not afraid, \nThough to the death; against such cruelties \nWith inward consolations recompensed, \nAnd oft supported so as shall amaze \nTheir proudest persecutors:  For the Spirit, \nPoured first on his Apostles, whom he sends \nTo evangelize the nations, then on all \nBaptized, shall them with wonderous gifts endue \nTo speak all tongues, and do all miracles, \nAs did their Lord before them.  Thus they win \nGreat numbers of each nation to receive \nWith joy the tidings brought from Heaven:  At length \nTheir ministry performed, and race well run, \nTheir doctrine and their story written left, \nThey die; but in their room, as they forewarn, \nWolves shall succeed for teachers, grievous wolves, \nWho all the sacred mysteries of Heaven \nTo their own vile advantages shall turn \nOf lucre and ambition; and the truth \nWith superstitions and traditions taint, \nLeft only in those written records pure, \nThough not but by the Spirit understood. \nThen shall they seek to avail themselves of names, \nPlaces, and titles, and with these to join \nSecular power; though feigning still to act \nBy spiritual, to themselves appropriating \nThe Spirit of God, promised alike and given \nTo all believers; and, from that pretence, \nSpiritual laws by carnal power shall force \nOn every conscience; laws which none shall find \nLeft them inrolled, or what the Spirit within \nShall on the heart engrave.  What will they then \nBut force the Spirit of Grace itself, and bind \nHis consort Liberty? what, but unbuild \nHis living temples, built by faith to stand, \nTheir own faith, not another's? for, on earth, \nWho against faith and conscience can be heard \nInfallible? yet many will presume: \nWhence heavy persecution shall arise \nOn all, who in the worship persevere \nOf spirit and truth; the rest, far greater part, \nWill deem in outward rites and specious forms \nReligion satisfied; Truth shall retire \nBestuck with slanderous darts, and works of faith \nRarely be found:  So shall the world go on, \nTo good malignant, to bad men benign; \nUnder her own weight groaning; till the day \nAppear of respiration to the just, \nAnd vengeance to the wicked, at return \nOf him so lately promised to thy aid, \nThe Woman's Seed; obscurely then foretold, \nNow ampler known thy Saviour and thy Lord; \nLast, in the clouds, from Heaven to be revealed \nIn glory of the Father, to dissolve \nSatan with his perverted world; then raise \nFrom the conflagrant mass, purged and refined, \nNew Heavens, new Earth, ages of endless date, \nFounded in righteousness, and peace, and love; \nTo bring forth fruits, joy and eternal bliss. \nHe ended; and thus Adam last replied. \nHow soon hath thy prediction, Seer blest, \nMeasured this transient world, the race of time, \nTill time stand fixed!  Beyond is all abyss, \nEternity, whose end no eye can reach. \nGreatly-instructed I shall hence depart; \nGreatly in peace of thought; and have my fill \nOf knowledge, what this vessel can contain; \nBeyond which was my folly to aspire. \nHenceforth I learn, that to obey is best, \nAnd love with fear the only God; to walk \nAs in his presence; ever to observe \nHis providence; and on him sole depend, \nMerciful over all his works, with good \nStill overcoming evil, and by small \nAccomplishing great things, by things deemed weak \nSubverting worldly strong, and worldly wise \nBy simply meek: that suffering for truth's sake \nIs fortitude to highest victory, \nAnd, to the faithful, death the gate of life; \nTaught this by his example, whom I now \nAcknowledge my Redeemer ever blest. \nTo whom thus also the Angel last replied. \nThis having learned, thou hast attained the sum \nOf wisdom; hope no higher, though all the stars \nThou knewest by name, and all the ethereal powers, \nAll secrets of the deep, all Nature's works, \nOr works of God in Heaven, air, earth, or sea, \nAnd all the riches of this world enjoyedst, \nAnd all the rule, one empire; only add \nDeeds to thy knowledge answerable; add faith, \nAdd virtue, patience, temperance; add love, \nBy name to come called charity, the soul \nOf all the rest: then wilt thou not be loth \nTo leave this Paradise, but shalt possess \nA Paradise within thee, happier far.-- \nLet us descend now therefore from this top \nOf speculation; for the hour precise \nExacts our parting hence; and see!the guards, \nBy me encamped on yonder hill, expect \nTheir motion; at whose front a flaming sword, \nIn signal of remove, waves fiercely round: \nWe may no longer stay: go, waken Eve; \nHer also I with gentle dreams have calmed \nPortending good, and all her spirits composed \nTo meek submission: thou, at season fit, \nLet her with thee partake what thou hast heard; \nChiefly what may concern her faith to know, \nThe great deliverance by her seed to come \n(For by the Woman's seed) on all mankind: \nThat ye may live, which will be many days, \nBoth in one faith unanimous, though sad, \nWith cause, for evils past; yet much more cheered \nWith meditation on the happy end. \nHe ended, and they both descend the hill; \nDescended, Adam to the bower, where Eve \nLay sleeping, ran before; but found her waked; \nAnd thus with words not sad she him received. \nWhence thou returnest, and whither wentest, I know; \nFor God is also in sleep; and dreams advise, \nWhich he hath sent propitious, some great good \nPresaging, since with sorrow and heart's distress \nWearied I fell asleep:  But now lead on; \nIn me is no delay; with thee to go, \nIs to stay here; without thee here to stay, \nIs to go hence unwilling; thou to me \nArt all things under $Heaven, all places thou, \nWho for my wilful crime art banished hence. \nThis further consolation yet secure \nI carry hence; though all by me is lost, \nSuch favour I unworthy am vouchsafed, \nBy me the Promised Seed shall all restore. \nSo spake our mother Eve; and Adam heard \nWell pleased, but answered not:  For now, too nigh \nThe Arch-Angel stood; and, from the other hill \nTo their fixed station, all in bright array \nThe Cherubim descended; on the ground \nGliding meteorous, as evening-mist \nRisen from a river o'er the marish glides, \nAnd gathers ground fast at the labourer's heel \nHomeward returning.  High in front advanced, \nThe brandished sword of God before them blazed, \nFierce as a comet; which with torrid heat, \nAnd vapour as the Libyan air adust, \nBegan to parch that temperate clime; whereat \nIn either hand the hastening Angel caught \nOur lingering parents, and to the eastern gate \nLed them direct, and down the cliff as fast \nTo the subjected plain; then disappeared. \nThey, looking back, all the eastern side beheld \nOf Paradise, so late their happy seat, \nWaved over by that flaming brand; the gate \nWith dreadful faces thronged, and fiery arms: \nSome natural tears they dropt, but wiped them soon; \nThe world was all before them, where to choose \nTheir place of rest, and Providence their guide: \nThey, hand in hand, with wandering steps and slow, \nThrough Eden took their solitary way. \n \n[The End]\u001a\u001a\n"
  },
  {
    "path": "testdata/canterbury/xargs.1",
    "content": ".TH XARGS 1L \\\" -*- nroff -*-\n.SH NAME\nxargs \\- build and execute command lines from standard input\n.SH SYNOPSIS\n.B xargs\n[\\-0prtx] [\\-e[eof-str]] [\\-i[replace-str]] [\\-l[max-lines]]\n[\\-n max-args] [\\-s max-chars] [\\-P max-procs] [\\-\\-null] [\\-\\-eof[=eof-str]]\n[\\-\\-replace[=replace-str]] [\\-\\-max-lines[=max-lines]] [\\-\\-interactive]\n[\\-\\-max-chars=max-chars] [\\-\\-verbose] [\\-\\-exit] [\\-\\-max-procs=max-procs]\n[\\-\\-max-args=max-args] [\\-\\-no-run-if-empty] [\\-\\-version] [\\-\\-help]\n[command [initial-arguments]]\n.SH DESCRIPTION\nThis manual page\ndocuments the GNU version of\n.BR xargs .\n.B xargs\nreads arguments from the standard input, delimited by blanks (which can be\nprotected with double or single quotes or a backslash) or newlines,\nand executes the\n.I command\n(default is /bin/echo) one or more times with any\n.I initial-arguments\nfollowed by arguments read from standard input.  Blank lines on the\nstandard input are ignored.\n.P\n.B xargs\nexits with the following status:\n.nf\n0 if it succeeds\n123 if any invocation of the command exited with status 1-125\n124 if the command exited with status 255\n125 if the command is killed by a signal\n126 if the command cannot be run\n127 if the command is not found\n1 if some other error occurred.\n.fi\n.SS OPTIONS\n.TP\n.I \"\\-\\-null, \\-0\"\nInput filenames are terminated by a null character instead of by\nwhitespace, and the quotes and backslash are not special (every\ncharacter is taken literally).  Disables the end of file string, which\nis treated like any other argument.  Useful when arguments might\ncontain white space, quote marks, or backslashes.  The GNU find\n\\-print0 option produces input suitable for this mode.\n.TP\n.I \"\\-\\-eof[=eof-str], \\-e[eof-str]\"\nSet the end of file string to \\fIeof-str\\fR.  If the end of file\nstring occurs as a line of input, the rest of the input is ignored.\nIf \\fIeof-str\\fR is omitted, there is no end of file string.  If this\noption is not given, the end of file string defaults to \"_\".\n.TP\n.I \"\\-\\-help\"\nPrint a summary of the options to\n.B xargs\nand exit.\n.TP\n.I \"\\-\\-replace[=replace-str], \\-i[replace-str]\"\nReplace occurences of \\fIreplace-str\\fR in the initial arguments with\nnames read from standard input.\nAlso, unquoted blanks do not terminate arguments.\nIf \\fIreplace-str\\fR is omitted, it\ndefaults to \"{}\" (like for `find \\-exec').  Implies \\fI\\-x\\fP and\n\\fI\\-l 1\\fP.\n.TP\n.I \"\\-\\-max-lines[=max-lines], -l[max-lines]\"\nUse at most \\fImax-lines\\fR nonblank input lines per command line;\n\\fImax-lines\\fR defaults to 1 if omitted.  Trailing blanks cause an\ninput line to be logically continued on the next input line.  Implies\n\\fI\\-x\\fR.\n.TP\n.I \"\\-\\-max-args=max-args, \\-n max-args\"\nUse at most \\fImax-args\\fR arguments per command line.  Fewer than\n\\fImax-args\\fR arguments will be used if the size (see the \\-s option)\nis exceeded, unless the \\-x option is given, in which case \\fBxargs\\fR\nwill exit.\n.TP\n.I \"\\-\\-interactive, \\-p\"\nPrompt the user about whether to run each command line and read a line\nfrom the terminal.  Only run the command line if the response starts\nwith `y' or `Y'.  Implies \\fI\\-t\\fR.\n.TP\n.I \"\\-\\-no-run-if-empty, \\-r\"\nIf the standard input does not contain any nonblanks, do not run the\ncommand.  Normally, the command is run once even if there is no input.\n.TP\n.I \"\\-\\-max-chars=max-chars, \\-s max-chars\"\nUse at most \\fImax-chars\\fR characters per command line, including the\ncommand and initial arguments and the terminating nulls at the ends of\nthe argument strings.  The default is as large as possible, up to 20k\ncharacters.\n.TP\n.I \"\\-\\-verbose, \\-t\"\nPrint the command line on the standard error output before executing\nit.\n.TP\n.I \"\\-\\-version\"\nPrint the version number of\n.B xargs\nand exit.\n.TP\n.I \"\\-\\-exit, \\-x\"\nExit if the size (see the \\fI\\-s\\fR option) is exceeded.\n.TP\n.I \"\\-\\-max-procs=max-procs, \\-P max-procs\"\nRun up to \\fImax-procs\\fR processes at a time; the default is 1.  If\n\\fImax-procs\\fR is 0, \\fBxargs\\fR will run as many processes as\npossible at a time.  Use the \\fI\\-n\\fR option with \\fI\\-P\\fR;\notherwise chances are that only one exec will be done.\n.SH \"SEE ALSO\"\n\\fBfind\\fP(1L), \\fBlocate\\fP(1L), \\fBlocatedb\\fP(5L), \\fBupdatedb\\fP(1)\n\\fBFinding Files\\fP (on-line in Info, or printed)\n"
  },
  {
    "path": "testdata/html",
    "content": "  content:             @ 1099872000000000: 'HTTP/1.1 200 OK\\r\\nX-Google-Crawl-Date: Mon, 08 Nov 2004 17:22:09 GMT\\r\\nContent-Type: text/html\\r\\nConnection: close\\r\\nX-Powered-By: PHP/4.3.8\\r\\nServer: Apache/1.3.31 (Unix) mod_gzip/1.3.19.1a PHP/4.3.8\\r\\nDate: Mon, 08 Nov 2004 17:19:07 GMT\\r\\n\\r\\n        <!DOCTYPE HTML PUBLIC \\\"-//W3C//DTD HTML 4.01 Transitional//EN\\\" \\\"http://www.w3.org/TR/html4/loose.dtd\\\">\\r\\n<html>\\r\\n<head>\\r\\n<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=ISO-8859-1\\\">\\r\\n<BASE target=\\\"_top\\\">\\r\\n\\n<TITLE>Micro Achat : Ordinateurs, PDA -  Toute l\\'informatique avec 01Informatique, L\\'Ordinateur Individuel, Micro Hebdo, D\\351cision Informatique et 01R\\351seaux</TITLE>\\r\\n<META NAME=\\\"Description\\\" CONTENT=\\\"Micro Achat : Ordinateurs, PDA\\\">\\r\\n<META NAME=\\\"Keywords\\\" CONTENT=\\\"Micro Achat : Ordinateurs, PDA -  Toute l\\'informatique avec 01Informatique, L\\'Ordinateur Individuel, Micro Hebdo, D\\351cision Informatique et 01R\\351seaux\\\">\\r\\n<LINK REL=\\\"STYLESHEET\\\" TYPE=\\\"text/css\\\" HREF=\\\"http://www.01net.com/styles/01net.css\\\">\\r\\n<LINK REL=\\\"STYLESHEET\\\" TYPE=\\\"text/css\\\" HREF=\\\"http://www.01net.com/styles/tableau_autre.css\\\">\\r\\n<STYLE type=text/css>\\r\\nA{TEXT-DECORATION: none;color:#000000;}\\r\\nA:visited{TEXT-DECORATION: none;color:#000000;}\\r\\n</STYLE>\\r\\n<SCRIPT LANGUAGE=\\\"JavaScript1.1\\\">\\r\\nvar sameAsBigDay = new Date();\\r\\nvar ord = (sameAsBigDay.getTime());\\r\\nvar pubsMotsCles = \\\"\\\";\\r\\nvar exc;\\r\\nvar lienhautdepage = \\\"\\\";\\r\\nvar etatmessage = false;\\r\\nvar enchainement = false;\\r\\nsas_tmstp=Math.round(Math.random()*10000000000);\\r\\nfunction SmartAdServer(sas_pageid,sas_formatid,sas_master,sas_target) {\\r\\n if ((sas_master!=\\'M\\')&&(sas_master!=\\'S\\')) {sas_master=\\'S\\'};\\r\\n document.write(\\'<SCR\\'+\\'IPT SRC=\\\"http://www.smartadserver.com/call/pubj/\\' + sas_pageid + \\'/\\' + sas_formatid + \\'/\\'+sas_master + \\'/\\' + sas_tmstp + \\'/\\' + escape(sas_target) + \\'?\\\"></SCR\\'+\\'IPT>\\');\\r\\n}\\r\\n</SCRIPT>\\r\\n<SCRIPT LANGUAGE=\\\"JAVASCRIPT\\\" SRC=\\\"http://www.01net.com/js/exc.js\\\"></SCRIPT>\\r\\n<script language=\\\"javascript\\\" src=\\\"http://telecharger.01net.com/shopping/js/headservicesV4.js\\\"></script>\\r\\n<noscript>\\r\\n<a href=\\\"http://cinema.01net.com\\\">T\\351l\\351charger des bandes-annonces, des teasers, des extraits et des making of de vos films cin\\351ma pr\\351f\\351r\\351s</a>,\\r\\n<a href=\\\"http://www.01net.com/BusinessTechnologies/\\\">Portail leader de l\\'information sur les nouvelles technologies - Actualites et enquetes sur l\\'informatique et les NTIC (nouvelles technologies de l\\'information et la communication). Exemples de sujets : e-business, telecoms, CRM, VPN, 3G, DSL, fournisseurs d\\'acces, Linux, piratage, securite informatique, progiciel...</a><br>\\r\\n<a href=\\\"http://www.01net.com/securite_informatique.html\\\">s\\351curit\\351 informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/strategies_ntic.html\\\">strat\\351gies NTIC</a>,\\r\\n<a href=\\\"http://www.01net.com/piratage_informatique.html\\\">piratage informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/technologie_dsl.html\\\">technologie DSL</a>,\\r\\n<a href=\\\"http://www.01net.com/solutions_vpn.html\\\">solutions VPN</a>,\\r\\n<a href=\\\"http://www.01net.com/strategie_e-business.html\\\">strat\\351gies</a>,\\r\\n<a href=\\\"http://www.01net.com/outils_crm.html\\\">outils CRM</a>,\\r\\n<a href=\\\"http://www.01net.com/logiciel_linux.html\\\">logiciel Linux</a>,\\r\\n<a href=\\\"http://www.01net.com/fournisseur_d_acces.html\\\">fournisseur d\\'acc\\350s</a>,\\r\\n<a href=\\\"http://www.01net.com/progiciel.html\\\">progiciel</a>,\\r\\n<a href=\\\"http://www.01net.com/stockage_de_donnees.html\\\">stockage de donn\\351es</a>,\\r\\n<a href=\\\"http://www.01net.com/etudes_solution_informatique.html\\\">\\351tudes solution informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/NTIC.html\\\">NTIC</a>,\\r\\n<a href=\\\"http://www.01net.com/actualite_technologie.html\\\">actualit\\351 technologie</a>,\\r\\n<a href=\\\"http://www.01net.com/etude_materiel_informatique.html\\\">\\351tude mat\\351riel informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/actus/\\\">actualit\\351s des nouvelles technologies</a>,\\r\\n<a href=\\\"http://www.01net.com/MicroPerso/\\\">enqu\\352tes et trucs et astuces sur le mat\\351riel informatique, les logiciels, les fournisseurs d\\'acc\\350s...</a>,\\r\\n<a href=\\\"http://www.01net.com/emploi/\\\">emploi et formations informatiques : offres d\\'emploi informatique...</a>,\\r\\n<a href=\\\"http://www.01net.com/produits/\\\">fiches, tests mat\\351riels et logiciels en informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/01informatique\\\">01 Informatique</a>,\\r\\n<a href=\\\"http://www.caractere.net\\\">Caract\\350re, le site des professionnels de l\\'imprim\\351 - communication imprim\\351e, \\351dition, emballage, encres, finition, flexographie, h\\351liogravure, impression, imprimerie, imprimeur, industries graphiques, num\\351rique, offset, papier, pr\\351presse, presse, print, reprographie, s\\351rigraphie, typographie</a>,\\r\\n<a href=\\\"http://www.01net.com/decisionmicro\\\">Decision Micro</a>,\\r\\n<a href=\\\"http://www.01net.com/decisioninformatique\\\">D\\351cision Informatique</a>,\\r\\n<a href=\\\"http://www.01net.com/01reseaux\\\">01 R\\351seaux</a>,\\r\\n<a href=\\\"http://logiciel.telecharger.01net.com/\\\">logiciel</a>,\\r\\n<a href=\\\"http://developpeur.telecharger.01net.com/windows/Programmation/\\\">d\\351veloppeur programmation</a>,\\r\\n<a href=\\\"http://anti-virus.telecharger.01net.com\\\">anti-virus</a>,\\r\\n<a href=\\\"http://gravure-cd-dvd.telecharger.01net.com/windows/Utilitaire/gravure/\\\">gravure cd dvd</a>,\\r\\n<a href=\\\"http://codec.telecharger.01net.com/windows/Multimedia/encodeurs_et_decodeurs/\\\">codec encodeur d\\351codeur</a>,\\r\\n<a href=\\\"http://software.telecharger.01net.com/\\\">software</a>,\\r\\n<a href=\\\"http://logiciels.telecharger.01net.com/\\\">logiciels</a>,\\r\\n<a href=\\\"http://gratuit.telecharger.01net.com/\\\">gratuit</a>,\\r\\n<a href=\\\"http://p2p.telecharger.01net.com/windows/Internet/partage/\\\">p2p peer to peer partage de fichiers</a>,\\r\\n<a href=\\\"http://securite.telecharger.01net.com/windows/Utilitaire/cryptage_et_securite/\\\">s\\351curit\\351</a>,\\r\\n<a href=\\\"http://compression-decompression.telecharger.01net.com/windows/Utilitaire/compression_et_decompression/\\\">compression et d\\351compression</a>,\\r\\n<a href=\\\"http://divx.telecharger.01net.com/\\\">divx</a>,\\r\\n<a href=\\\"http://utilitaire.telecharger.01net.com/windows/Utilitaire/\\\">utilitaire</a>,\\r\\n<a href=\\\"http://jeux.telecharger.01net.com/windows/Jeux/\\\">jeux</a>,\\r\\n<a href=\\\"http://loisirs.telecharger.01net.com/windows/Loisirs/\\\">loisirs</a>,\\r\\n<a href=\\\"http://mac.telecharger.01net.com/mac/\\\">mac</a>,\\r\\n<a href=\\\"http://linux.telecharger.01net.com/linux/\\\">linux</a>,\\r\\n<a href=\\\"http://shareware.telecharger.01net.com/\\\">shareware</a>,\\r\\n<a href=\\\"http://video-dvd.telecharger.01net.com/windows/Multimedia/lecteurs_video_dvd/\\\">vid\\351o dvd</a>,\\r\\n<a href=\\\"http://multimedia.telecharger.01net.com/\\\">multim\\351dia</a>,\\r\\n<a href=\\\"http://traduction.telecharger.01net.com/windows/Bureautique/traducteur/\\\">traduction</a>,\\r\\n<a href=\\\"http://mp3.telecharger.01net.com/windows/Multimedia/lecteurs_audio_mp3_cd/\\\">mp3</a>,\\r\\n<a href=\\\"http://tchat.telecharger.01net.com/windows/Internet/communication/\\\">tchat</a>\\r\\n<a href=\\\"http://chat.telecharger.01net.com/windows/Internet/communication/\\\">chat</a>,\\r\\n<a href=\\\"http://musique.telecharger.01net.com/\\\">musique</a>,\\r\\n<a href=\\\"http://mobile.telecharger.01net.com/mobile/\\\">mobile</a>,\\r\\n<a href=\\\"http://telephone_portable.telecharger.01net.com/mobile/\\\">t\\351l\\351phone portable</a>,\\r\\n<a href=\\\"http://telephone_mobile.telecharger.01net.com/mobile/\\\">t\\351l\\351phone mobile</a>\\r\\n</noscript>\\r\\n</head>\\r\\n</head>\\r\\n<body bgcolor=\\\"#FFFFFF\\\" text=\\\"#000000\\\" link=\\\"#000000\\\" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>\\r\\n<!-- + ZONE TETE -->\\r\\n<!-- ********** DEBUT MODELE INTERNE TETES MHA-tetev4 //-->\\r\\n<table width=100% height=66 cellspacing=0 cellpadding=0 border=0 bgcolor=#ffffff>\\r\\n\\t<tr>\\r\\n\\t\\t<td height=8 colspan=2><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=8></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td valign=bottom><a href=\\\"http://microachat.01net.com\\\"><img src=\\\"http://www.01net.com/img/v4/logos_tete/tet_gauche-mha.gif\\\" border=0></a></td>\\r\\n\\t\\t<td valign=bottom bgcolor=#FFFFFF bbackground=\\\"http://www.01net.com/img/v4/tet_droite.gif\\\" width=100% style=\\\"background-image:url(/img/v4/tet_droite-mha.gif);background-position:bottom;background-repeat:repeat-x\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=66 align=left hspace=0 vspace=0></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<table width=100% cellspacing=0 cellpadding=0 border=0 bgcolor=#ffffff>\\r\\n\\t<tr>\\r\\n\\t\\t<td valign=top background=\\\"http://www.01net.com/img/v4/fond_date-mha.gif\\\" height=18 width=500><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=500 height=1><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=19 height=1><font face=\\\"Arial\\\" size=1 color=#666666 style=\\\"font-size: 11px;\\\"><b>Derni\\350re mise \\340 jour de cette page : lundi 8 novembre 2004&nbsp;&nbsp;|&nbsp;&nbsp;16:45</b></font></td>\\r\\n\\t\\t<td width=100% background=\\\"http://www.01net.com/img/v4/fond_date2-mha.gif\\\" height=18></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<!-- ********** FIN MODELE INTERNE TETES MHA-tetev4 //--> <!-- - ZONE TETE -->\\r\\n<!-- ***************************************************************************************************************************************************************************************************************************** //-->\\r\\n<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n<!-- DEBUT PARTIE PUB //-->\\r\\n\\t<tr>\\r\\n<td align=center valign=middle colspan=2 background=\\\"http://www.01net.com/img/v4/fond_bann.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br>\\r\\n<!-- + ZONE Z0 -->\\r\\n<SCRIPT LANGUAGE=\\\"JAVASCRIPT\\\">\\r\\nvar fa = \\\"\\\";\\r\\nvar fab = document.URL.toString();\\r\\nif (fab.indexOf(\\\"?fa\\\") != -1 || fab.indexOf(\\\"&fa\\\") != -1)\\r\\n{\\r\\nfa = \\\";!category=fai\\\";\\r\\n}\\r\\nvar etatmessage = false;\\r\\nvar enchainement = false;\\r\\n</SCRIPT>\\r\\n<SCRIPT LANGUAGE=\\\"JavaScript1.1\\\">\\r\\nsas_pageid=\\'167/3872\\';\\r\\nsas_formatid=95;\\t\\t\\t// Format : Banner/Scope 468x60\\r\\nsas_master=\\'M\\';\\t\\t\\t// Master : M=master or S=slave\\r\\nsas_target=exc + \\'rubrique\\';\\t\\t\\t// Targeting\\r\\nSmartAdServer(sas_pageid,sas_formatid,sas_master,sas_target);\\r\\n</SCRIPT>\\r\\n <!-- - ZONE Z0 --></td>\\r\\n\\t\\t<td valign=top width=23 background=\\\"http://www.01net.com/img/v4/sep_verticale.gif\\\" ><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=23 height=1><br></td>\\r\\n<td valign=top width=100% bgcolor=\\\"ffffff\\\" rowspan=3><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=125><br>\\r\\n<!-- +ZONE_Dn -->\\r\\n<!-- + ZONE D0 -->\\r\\n<!-- DEBUT MA_ColD -->\\r\\n<div style=\\\"background-color : #ffffff; width : 150px; padding-left : 5px; padding-right : 5px; font-family : Arial, Helvetica;\\\">\\n\\t\\t\\t\\t\\t<table style=\\\"border-spacing : 0; width : 146px; margin-top : 0px;\\\" cellspacing=\\\"0\\\">\\n\\t\\t\\t\\t\\t<tr><th colspan=\\\"2\\\" style=\\\"padding : 0;\\\"><img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/tete-produitsrecherches.gif\\\" alt=\\\"\\\" /></th></tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"height : 12px; vertical-align : top; padding : 0; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/point.gif); background-repeat: repeat-x; background-position : 0px 3px;\\\" colspan=\\\"2\\\"><span style=\\\"float : left; position : relative; font-size : 10px; color : #cc0003; background-color : #ffffff;\\\">Imagerie&nbsp;</span></td>\\n\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 65px; vertical-align : top;\\\"><img src=\\\"http://micro-achat.01net.com/img/photoproduit/12537-vignette.png\\\" alt=\\\"\\\" style=\\\"border : 1px solid #000000;\\\" /></td>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 75px; font-size : 11px; font-weight : 700;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<a style=\\\"color : #cc0003; text-decoration : none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/imagerie/moniteurs-lcd/l1720b/\\\">LG L1720B</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"text-align : center; width : 100%; font-size : 9px; font-weight : 100; margin-top : 5px;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\340 partir de\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"width : 75px; height : 21px; color : #ffffff; font-size : 12px; font-weight : 700; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/fond-prix.gif);\\\"><span style=\\\"position : relative; top : 3px;\\\">332.89 &#128;</span></div>\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t</tr><tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"height : 12px; vertical-align : top; padding : 0; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/point.gif); background-repeat: repeat-x; background-position : 0px 3px;\\\" colspan=\\\"2\\\"><span style=\\\"float : left; position : relative; font-size : 10px; color : #cc0003; background-color : #ffffff;\\\">Ordinateurs&nbsp;</span></td>\\n\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 65px; vertical-align : top;\\\"><img src=\\\"http://micro-achat.01net.com/img/photoproduit/4043-vignette.png\\\" alt=\\\"\\\" style=\\\"border : 1px solid #000000;\\\" /></td>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 75px; font-size : 11px; font-weight : 700;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<a style=\\\"color : #cc0003; text-decoration : none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/desktops/veriton-7600g/\\\">Acer Veriton 7600G</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"text-align : center; width : 100%; font-size : 9px; font-weight : 100; margin-top : 5px;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\340 partir de\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"width : 75px; height : 21px; color : #ffffff; font-size : 12px; font-weight : 700; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/fond-prix.gif);\\\"><span style=\\\"position : relative; top : 3px;\\\">705 &#128;</span></div>\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t</tr><tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"height : 12px; vertical-align : top; padding : 0; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/point.gif); background-repeat: repeat-x; background-position : 0px 3px;\\\" colspan=\\\"2\\\"><span style=\\\"float : left; position : relative; font-size : 10px; color : #cc0003; background-color : #ffffff;\\\">Ordinateurs&nbsp;</span></td>\\n\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 65px; vertical-align : top;\\\"><img src=\\\"http://micro-achat.01net.com/img/photoproduit/1903-vignette.png\\\" alt=\\\"\\\" style=\\\"border : 1px solid #000000;\\\" /></td>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 75px; font-size : 11px; font-weight : 700;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<a style=\\\"color : #cc0003; text-decoration : none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/mini-pc/sn95g5/\\\">Shuttle SN95G5</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"text-align : center; width : 100%; font-size : 9px; font-weight : 100; margin-top : 5px;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\340 partir de\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"width : 75px; height : 21px; color : #ffffff; font-size : 12px; font-weight : 700; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/fond-prix.gif);\\\"><span style=\\\"position : relative; top : 3px;\\\">375 &#128;</span></div>\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t</tr><tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"height : 12px; vertical-align : top; padding : 0; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/point.gif); background-repeat: repeat-x; background-position : 0px 3px;\\\" colspan=\\\"2\\\"><span style=\\\"float : left; position : relative; font-size : 10px; color : #cc0003; background-color : #ffffff;\\\">Composants&nbsp;</span></td>\\n\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 65px; vertical-align : top;\\\"><img src=\\\"http://micro-achat.01net.com/img/photoproduit/1259-vignette.png\\\" alt=\\\"\\\" style=\\\"border : 1px solid #000000;\\\" /></td>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 75px; font-size : 11px; font-weight : 700;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<a style=\\\"color : #cc0003; text-decoration : none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/composants/cartes-meres/a7n8x-e-deluxe/\\\">Asus A7N8X-E Deluxe</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"text-align : center; width : 100%; font-size : 9px; font-weight : 100; margin-top : 5px;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\340 partir de\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"width : 75px; height : 21px; color : #ffffff; font-size : 12px; font-weight : 700; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/fond-prix.gif);\\\"><span style=\\\"position : relative; top : 3px;\\\">91.99 &#128;</span></div>\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t</tr><tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"height : 12px; vertical-align : top; padding : 0; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/point.gif); background-repeat: repeat-x; background-position : 0px 3px;\\\" colspan=\\\"2\\\"><span style=\\\"float : left; position : relative; font-size : 10px; color : #cc0003; background-color : #ffffff;\\\">Composants&nbsp;</span></td>\\n\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 65px; vertical-align : top;\\\"><img src=\\\"http://micro-achat.01net.com/img/photoproduit/4687-vignette.png\\\" alt=\\\"\\\" style=\\\"border : 1px solid #000000;\\\" /></td>\\n\\t\\t\\t\\t\\t\\t\\t<td style=\\\"width : 75px; font-size : 11px; font-weight : 700;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<a style=\\\"color : #cc0003; text-decoration : none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/composants/ventilateur/sp-94/\\\">Thermalright SP-94</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"text-align : center; width : 100%; font-size : 9px; font-weight : 100; margin-top : 5px;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\340 partir de\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<div style=\\\"width : 75px; height : 21px; color : #ffffff; font-size : 12px; font-weight : 700; background-image : url(http://micro-achat.01net.com/img/utils/micro-achat/fond-prix.gif);\\\"><span style=\\\"position : relative; top : 3px;\\\">49 &#128;</span></div>\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t</tr></table>\\n\\t\\t\\t\\t<table style=\\\"border-spacing : 0px 1px; width : 146px; margin-top : 15px;\\\" cellspacing=\\\"0\\\">\\n\\t\\t\\t\\t<tr><th colspan=\\\"2\\\" style=\\\"padding : 0;\\\"><img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/tete-revendeurmisajour.gif\\\" alt=\\\"\\\" /></th></tr><tr style=\\\"background-color : #ddeeee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">1 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Rhone-Alpes/Ain/pc-look\\\" style=\\\"color : #000000; text-decoration : none;\\\">PC Look</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ccddee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">2 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Nord-Pas-de-Calais/Pas-de-Calais/atelier-informatique\\\" style=\\\"color : #000000; text-decoration : none;\\\">Atelier Informatique</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ddeeee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">3 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Val-de-Marne/zanax-multimedia\\\" style=\\\"color : #000000; text-decoration : none;\\\">Zanax Multim\\351dia</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ccddee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">4 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Hauts-de-Seine/misteroops\\\" style=\\\"color : #000000; text-decoration : none;\\\">MISTEROOPS</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ddeeee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">5 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Paris/12/168-golden-avenue\\\" style=\\\"color : #000000; text-decoration : none;\\\">168 Golden Avenue</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ccddee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">6 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Seine-Saint-Denis/microchoix\\\" style=\\\"color : #000000; text-decoration : none;\\\">microchoix</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ddeeee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">7 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Paris/12/e-soph\\\" style=\\\"color : #000000; text-decoration : none;\\\">e-Soph</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ccddee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">8 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Paris/13/pc-price-club\\\" style=\\\"color : #000000; text-decoration : none;\\\">PC Price Club</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ddeeee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">9 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Ile-de-France/Seine-et-Marne/pc-77\\\" style=\\\"color : #000000; text-decoration : none;\\\">PC 77</a></td>\\n\\t\\t\\t\\t</tr><tr style=\\\"background-color : #ccddee; font-size : 10px; font-weight : 700; color : #cc0003;\\\">\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 32px;\\\">10 <img src=\\\"http://micro-achat.01net.com/img/utils/micro-achat/flechefine_fondtransp.gif\\\" alt=\\\"&gt;\\\" /></td>\\n\\t\\t\\t\\t\\t<td style=\\\"border-top : 1px solid #ffffff; width : 110px;\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/Alsace/Bas-Rhin/web-in-informatique\\\" style=\\\"color : #000000; text-decoration : none;\\\">Web In Informatique</a></td>\\n\\t\\t\\t\\t</tr></table>\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t<br>\\r\\n<!-- FIN MA_ColD --> <!-- - ZONE D0 -->\\r\\n<!-- + ZONE D1 -->\\r\\n<!-- - ZONE D1 -->\\r\\n<!-- + ZONE D2 -->\\r\\n<!-- - ZONE D2 -->\\r\\n<!-- -ZONE_Dn -->\\r\\n</td>\\r\\n\\t</tr>\\r\\n<!-- FIN PARTIE PUB //-->\\r\\n\\t<tr>\\r\\n\\t\\t<td valign=top width=193 height=100% background=\\\"http://www.01net.com/img/v4/sepgrisedroite.gif\\\">\\r\\n\\t\\t<!-- contenu colonne de gauche //-->\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0  background=\\\"http://www.01net.com/img/v4/sepgrisedroite.gif\\\">\\r\\n<!-- +ZONE_Gn -->\\r\\n<!-- + ZONE G0 -->\\r\\n<tr><!-- ********** DEBUT MHA_MenusChainesV4 //-->\\r\\n<td valign=top>\\n<table border=0 cellpadding=0 cellspacing=0 width=193 bgcolor=#FFFFFF>\\n<tr>\\n<td background=\\\"/img/v4/menus/motifgauche_menus.gif\\\" width=20 rowspan=2><img src=\\\"/img/dot.gif\\\" width=20 height=20></td>\\n<td width=173 colspan=2 bgcolor=#FFFFFF><img src=\\\"/img/dot.gif\\\" width=173 height=20></td>\\n</tr>\\n<tr>\\n<td valign=top width=159>\\n\\n<a href=\\\"http://www.01net.com\\\"><img src=\\\"/img/v4/menus/mha/home01net-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com\\\"><img src=\\\"/img/v4/menus/mha/home-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4317.html\\\"><img src=\\\"/img/v4/menus/mha/ordinateurs-2.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4318.html\\\"><img src=\\\"/img/v4/menus/mha/composants-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4319.html\\\"><img src=\\\"/img/v4/menus/mha/stockage-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4320.html\\\"><img src=\\\"/img/v4/menus/mha/image-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4321.html\\\"><img src=\\\"/img/v4/menus/mha/peripheriques-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4322.html\\\"><img src=\\\"/img/v4/menus/mha/reseaux-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://microachat.01net.com/rubrique/4323.html\\\"><img src=\\\"/img/v4/menus/mha/accessoires-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://micro-achat.01net.com/guide-produits/\\\"><img src=\\\"/img/v4/menus/mha/comparateur-1.gif\\\" width=159 border=0></a><br>\\n<a href=\\\"http://micro-achat.01net.com/annuaire/\\\"><img src=\\\"/img/v4/menus/mha/annuaire-1.gif\\\" width=159 border=0></a><br></td>\\n<td width=14><img src=\\\"/img/dot.gif\\\" width=14 height=14></td>\\n</tr>\\n<tr>\\n<td colspan=3><img src=\\\"/img/v4/menus/bas_menus.gif\\\" width=193 height=31></td>\\n</tr>\\n</table></td><!-- ********** FIN MHA_MenusChainesV4 //--> </tr><!-- - ZONE G0 -->\\r\\n<!-- + ZONE G1 -->\\r\\n<tr><!-- DEBUT MODELE RUBRIQUE V4ColGaucheMHA //-->\\r\\n<!-- ********** DEBUT BLOC DernieresNewsTC //-->\\r\\n<td valign=top>\\r\\n<!-- DEBUT RECHERCHE MHA -->\\r\\n<table width=* cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n\\t\\t\\t<td valign=top background=\\\"http://microachat.01net.com/img/v4/fond_rech_mha.gif\\\" height=98 style=\\\"background-repeat:no-repeat;\\\"><form method=\\\"get\\\" name=\\\"chercher\\\" action=\\\"http://www.01net.com/aiguillage_recherche/1,6138,,00.html\\\"><img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=193 height=17><br>\\r\\n\\t\\t\\t<img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=28 height=1><input type=\\\"text\\\" name=\\\"fullText\\\" style=\\\"width:130px;font:12px;\\\"><br><img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=1 height=6><br>\\r\\n\\t\\t\\t<img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=28 height=1><select name=\\\"sousArbo\\\" style=\\\"width:130px;font:12px;\\\">\\r\\n\\t\\t\\t<option value=\\\"mha\\\">dans Micro Achat\\r\\n\\t\\t\\t<option value=\\\"cmp\\\">les prix\\r\\n\\t\\t\\t<option value=\\\"ann\\\">les revendeurs\\r\\n\\t\\t\\t<option value=\\\"2641\\\">tout 01net.\\r\\n\\t\\t\\t<option value=\\\"emploi\\\">les offres d\\'emploi\\r\\n\\t\\t\\t<option value=\\\"telecharger\\\"> telecharger.com\\r\\n\\t\\t\\t<option value=\\\"web\\\">le web\\r\\n\\t\\t\\t</select><br><img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=1 height=9><br>\\r\\n\\t\\t\\t<img src=\\\"http://microachat.01net.com/img/dot.gif\\\" width=28 height=1><input type=\\\"image\\\" src=\\\"http://microachat.01net.com/img/v4/ok_bloc_recher_mha.gif\\\" border=\\\"0\\\"></form>\\r\\n\\t\\t\\t</td>\\r\\n\\t\\t</tr>\\r\\n</table>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=10 vspace=0>\\r\\n<!-- FIN RECHERCHE MHA -->\\r\\n      <!-- modele TCFilColgTitV4 //-->\\r\\n    <table width=193 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td valign=top>\\r\\n\\t\\t<table width=155 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=2><img src=\\\"http://www.01net.com/img/ban/Ban_v4_DernieresNews01net.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"></td>\\r\\n\\t\\t\\t\\t<td valign=top><A HREF=\\\"http://www.01net.com/article/256059.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">CD et DVD bient\\364t insensibles aux rayures<br></font></a><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=2></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"></td>\\r\\n\\t\\t\\t\\t<td valign=top><A HREF=\\\"http://www.01net.com/article/255796.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">OpenOffice gagne son service<br></font></a><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=2></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"></td>\\r\\n\\t\\t\\t\\t<td valign=top><A HREF=\\\"http://www.01net.com/article/255731.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">La messagerie en cinq minutes selon Ipswitch<br></font></a><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=2></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top colspan=2><A HREF=\\\"http://www.01net.com/actus/\\\" style=\\\"text-decoration:none;\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\">> toutes les news<br></font></a></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=2><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/crochet_bleuhaut_155.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=20> <!-- ********** FIN BLOC DernieresNewsTC //-->\\r\\n<!-- ********** DEBUT BLOC  NL_MHA //-->\\r\\n<SCRIPT language=\\\"javascript\\\" src=\\\"http://www.01net.com/js/lib.js\\\"></SCRIPT>\\r\\n<table width=* cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<FORM name=\\\"formgen\\\" method=\\\"get\\\" action=\\\"http://microachat.01net.com/outils/newsletter_MicroAchat.html\\\" onSubmit=\\\"return validateForm(this)\\\">\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td width=155 colspan=4><img src=\\\"http://www.01net.com/img/ban/Ban_V4_Newslett.gif\\\"></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=10><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td width=1 bgcolor=#CC0000><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t<td width=153>\\r\\n\\t\\t<table width=153 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td width=10><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/flechefinefd_ffffff.gif\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Recevez chaque jour l\\'actualit\\351 des produits et des promos<br></font>\\r\\n\\t\\t\\t\\t<table width=* cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td><input type=\\\"text\\\" name=\\\"email\\\" size=\\\"14\\\" style=\\\"width:130px;font:12px;\\\" value=\\\"entrez votre e-mail\\\" onFocus=\\\"javascript:document.formgen.email.value=\\'\\'\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=9><br>\\r\\n\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=28 height=1><input type=\\\"image\\\" src=\\\"http://www.01net.com/img/v4/ok_bloc_recher.gif\\\" border=\\\"0\\\"></td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t\\t<td width=1 bgcolor=#CC0000><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td width=155 colspan=4><img src=\\\"http://www.01net.com/img/v4/base_newsletters.gif\\\"></td>\\r\\n\\t\\t</FORM>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=20>\\r\\n<SCRIPT language=\\\"Javascript\\\">\\r\\ndocument.formgen.email.validator= \\'notNullEmailPat\\';\\r\\ndocument.formgen.email.nomvalidator= \\'E-mail\\';\\r\\n</SCRIPT>\\r\\n<!-- ********** FIN BLOC NL_MHA //-->\\r\\n</td>\\r\\n</tr>\\r\\n<tr>\\r\\n<!-- ********** DEBUT BLOC Actus ActusUneV4 //-->\\r\\n<td valign=top background=\\\"http://www.01net.com/img/v4/sepgrisedroite.gif\\\">\\r\\n<table width=193 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td valign=top>\\r\\n\\t\\t<table width=155 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=4><img src=\\\"http://www.01net.com/img/ban/Ban_v4_LaUne.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><a href=\\\"http://www.01net.com/entreprise/\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b><u>Entreprise</u></b><br></font></a>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://www.01net.com/article/255737.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">Quand le billet papier s\\'envole vers la d\\351mat\\351rialisation</font></a></td>\\r\\n\\t\\t\\t\\t<td valign=top width=2><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=2 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><a href=\\\"http://www.01net.com/article/255737.html\\\"><img src=\\\"http://www.01net.com/img/MEA_v4/billet_virtuel-65.jpg\\\" border=0></a></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=4><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/LaUne_Sep.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><a href=\\\"http://www.01net.com/pratique/\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b><u>Trucs et astuces</u></b><br></font></a>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"/article/255698.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">D\\351pannez Windows XP</font></a></td>\\r\\n\\t\\t\\t\\t<td valign=top width=2><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=2 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><a href=\\\"http://www.01net.com/article/255698.html\\\"><img src=\\\"http://www.01net.com/img/MEA_v4/depannez_XP-65.jpg\\\" border=0 ></a></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=4><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/LaUne_Sep.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t    <tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top colspan=3><a href=\\\"http://www.01net.com/conso/\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b><u>Conso</u></b><br></font></a>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"/article/255524.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">Vos photos sur papier imprimante ou labo ?<br></font></a></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=4><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/LaUne_Sep.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t<!-- exemple de lien avec pseudorub pour produits et tests -->\\r\\n\\t\\t<!-- <a href=\\\"/outils/PseudoRub.php?base=test-comp&rub=1730&pseudo=test-comp20041005\\\"> -->\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td valign=top width=1><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top colspan=3><a href=\\\"http://www.01net.com/produits/\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b><u>Produits &amp; Tests</u></b><br></font></a>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"/article/255782.html\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 11px; text-decoration:none;\\\">5 programmes d\\222encodage vid\\351o gratuits<br></font></a></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td colspan=4><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/LaUne_Sep.gif\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=20>\\r\\n</td>\\r\\n<!-- ********** FIN BLOC Actus ActusUneV4 //-->    </tr>\\r\\n<tr>\\r\\n<td>\\r\\n<table width=193 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=10 height=1></td>\\r\\n\\t\\t<td valign=top><a href=\\\"mailto:s.cohen@micro-achat.fr\\\"><img border=0 src=\\\"http://www.01net.com/img/v4/espace-revendeurs.gif\\\"></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n<br>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=20></td>\\r\\n<!-- FIN MODELE RUBRIQUE V4ColGaucheMHA //-->  </tr><!-- - ZONE G1 -->\\r\\n<!-- + ZONE G2 -->\\r\\n<!-- - ZONE G2 -->\\r\\n<!-- + ZONE G3 -->\\r\\n<!-- - ZONE G3 -->\\r\\n<!-- + ZONE G4 -->\\r\\n<!-- - ZONE G4 -->\\r\\n<!-- + ZONE G5 -->\\r\\n<!-- - ZONE G5 -->\\r\\n<!-- + ZONE G6 -->\\r\\n<!-- - ZONE G6 -->\\r\\n<!-- + ZONE G7 -->\\r\\n<!-- - ZONE G7 -->\\r\\n<!-- + ZONE G8 -->\\r\\n<!-- - ZONE G8 -->\\r\\n<!-- + ZONE G9 -->\\r\\n<!-- - ZONE G9 -->\\r\\n<!-- + ZONE GA -->\\r\\n<!-- - ZONE GA -->\\r\\n<!-- + ZONE GB -->\\r\\n<!-- - ZONE GB -->\\r\\n<!-- + ZONE GC -->\\r\\n<!-- - ZONE GC -->\\r\\n<!-- + ZONE GD -->\\r\\n<!-- - ZONE GD -->\\r\\n<!-- + ZONE GE -->\\r\\n<!-- - ZONE GE -->\\r\\n<!-- + ZONE GF -->\\r\\n<!-- - ZONE GF -->\\r\\n<!-- -ZONE_Gn -->\\r\\n\\t\\t</table>\\r\\n\\t\\t<!-- fin contenu colonne de gauche //-->\\r\\n\\t\\t</td>\\r\\n<!-- ***************************************************************** DEBUT VENTRE*********************************************************************************************************************************************** //-->\\r\\n<!-- DEBUT WORK -->\\r\\n\\t\\t<td valign=top width=625 bgcolor=#ffffff><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=625 height=1><br>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- +ZONE_hn -->\\r\\n<!-- + ZONE h0 -->\\r\\n<!-- MA_ban_int -->\\r\\n<td valign=\\\"top\\\">\\r\\n<img src=\\\"/img/dot.gif\\\" height=\\\"18\\\"><br>\\r\\n<!-- pour ordipda -->\\r\\n<table width=\\\"625\\\" cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"/img/v4/MA/Ban_MA_ordis.gif\\\"></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n\\t</td>\\r\\n<!-- /MA_ban_int -->     <!-- - ZONE h0 -->\\r\\n<!-- + ZONE h1 -->\\r\\n<!-- - ZONE h1 -->\\r\\n<!-- + ZONE h2 -->\\r\\n<!-- - ZONE h2 -->\\r\\n<!-- -ZONE_hn -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- +ZONE_Hn -->\\r\\n<!-- + ZONE H0 -->\\r\\n<!-- Ma_int_Leader -->\\r\\n    <td valign=top>\\r\\n<img src=\\\"/img/dot.gif\\\" width=1 height=18><br>\\r\\n<table border=0 cellpadding=0 cellspacing=0 width=320>\\r\\n<tr>\\r\\n\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<td width=144 valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=143 height=1 vspace=0><br>\\r\\n<font face=arial,helvetica size=1 color=#CC0000 style=font-size:11px;>Portable</font><br>\\r\\n<A HREF=\\\"/article/256198.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=font-size:14px;><b>Un nouvel ultra portable r\\351alis\\351 par Nec</b></font></a><br>\\r\\n<!--debut  insertion image //-->\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"/article/256198.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><img src=\\\"/images/67509.jpg.res_100-100.jpg\\\" border=0 hspace=0 vspace=0></a><br>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t<!-- fin insertion image //-->\\r\\n<font face=arial,helvetica size=2 color=#000000 style=font-size:12px;><img src=\\\"/img/v4/flechefine_fondtransp.gif\\\">Le Versa S940 a un format r\\351duit, mais ses performances sont \\340 la hauteur.</font><br>\\r\\n<font face=arial,helvetica size=1 color=#CC0000 style=font-size:12px;>\\340 partir de 1663&#160;\\200</font>\\r\\n</td>\\r\\n<td width=17 background=\\\"/img/v4/MA/v4-fond-sep-mea-leader.gif\\\"><img src=\\\"/img/dot.gif\\\" width=17 height=1></td>\\r\\n\\t\\t\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<td width=144 valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=143 height=1 vspace=0><br>\\r\\n<font face=arial,helvetica size=1 color=#CC0000 style=font-size:11px;>Portable</font><br>\\r\\n<A HREF=\\\"/article/255194.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=font-size:14px;><b>Asus pr\\351sente trois petits nouveaux dans la gamme A3N</b></font></a><br>\\r\\n<!--debut  insertion image //-->\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"/article/255194.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><img src=\\\"/images/67168.jpg.res_100-100.jpg\\\" border=0 hspace=0 vspace=0></a><br>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t<!-- fin insertion image //-->\\r\\n<font face=arial,helvetica size=2 color=#000000 style=font-size:12px;><img src=\\\"/img/v4/flechefine_fondtransp.gif\\\">Ces trois portables Centrino int\\350grent, entre autres, une webcam et un contr\\364leur Wi-Fi.</font><br>\\r\\n<font face=arial,helvetica size=1 color=#CC0000 style=font-size:12px;>\\340 partir de 1346&#160;\\200</font>\\r\\n</td>\\r\\n<td width=15><img src=\\\"/img/dot.gif\\\" width=15 height=1></td>\\r\\n\\t\\t\\t\\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- /Ma_int_Leader -->    <!-- - ZONE H0 -->\\r\\n<!-- + ZONE H1 -->\\r\\n<!-- - ZONE H1 -->\\r\\n<!-- + ZONE H2 -->\\r\\n<!-- MA_BP_MP -->\\r\\n<td valign=\\\"top\\\" width=\\\"100%\\\">\\r\\n\\t<table width=\\\"100%\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" border=\\\"0\\\">\\r\\n\\t<tr>\\r\\n\\t<td width=\\\"50%\\\" valign=\\\"top\\\">\\r\\n\\t<!-- DEBUT MicroAchat MA_BonPlan -->\\r\\n<td valign=top>\\r\\n<img src=\\\"/img/dot.gif\\\" width=1 height=18><br>\\r\\n<table border=0 cellpadding=1 cellspacing=0 width=145 bgcolor=#CC0000>\\r\\n<tr>\\r\\n<td align=center><font face=arial,helvetica size=1 color=#FFFFFF style=\\\"font-size:11px;\\\">BON PLAN</a></font></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td  width=145>\\r\\n<div style=\\\"padding:5px;padding-left:5px;padding-fight:5px;margin:0px;margin-left:1px;margin-right:1px;background-color:#FFFFFF;\\\">\\r\\n<img src=\\\"/img/microachat/logo_shuttle_SB83G5.gif\\\" border=0><br>\\r\\n<font face=arial,helvetica size=2 color=#CC0000 style=\\\"font-size:12px;\\\">Les derni\\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.<br></font>\\r\\n<center><a href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/mini-pc/sb83g5/?fabriquant=1&page=1&tri=titre\\\"><img src=\\\"/img/microachat/mea_shuttle_SB83G5.gif\\\" border=0 vspace=5></a><br></center>\\r\\n<center>\\r\\n<font face=arial,helvetica size=2 color=#CC0000 style=\\\"font-size:13px;\\\"><b>\\340 partir de</b><br>\\r\\n<div style=\\\"border:solid 2px #CC0000;width:100px;background-color:#FFCC00;\\\"><b>415 \\200</b></div>\\r\\n</center>\\r\\n</div>\\r\\n</td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td align=center><font face=arial,helvetica size=1 color=#FFFFFF style=\\\"font-size:11px;\\\">publicit\\351</a></font></td>\\r\\n</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN MicroAchat MA_BonPlan -->  \\t</td>\\r\\n\\t<td width=\\\"15\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"15\\\"></td>\\r\\n\\t<td width=\\\"50%\\\" valign=\\\"top\\\">\\r\\n\\t<!-- DEBUT MicroAchat MA_MeillPrixAct //-->\\r\\n<td valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=145 height=1><br>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=18><br>\\r\\n<table width=* cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<FORM name=\\\"prix\\\" action=\\\"http://www.micro-achat.01net.com/guide-produits/recherche.php\\\" method=\\\"post\\\">\\r\\n\\t\\t<td width=145 colspan=3><img src=\\\"http://www.01net.com/img/ban/Ban_v4_MeillPrix_MA.gif\\\"></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=1 bgcolor=#FFCC00><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t\\t<td width=143>\\r\\n\\t\\t<table width=143 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td width=6><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=6 height=1></td>\\r\\n\\t\\t\\t\\t<td valign=top><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=15><br>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/ban/Ban_MA_trouv_ordi.gif\\\"><br>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/desktops/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Desktops</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/portables/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Portables</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/mini-pc/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Mini-PC</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/pda---tablets-pc/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Pda / Tablets-PC</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/apple/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">Apple</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/MA/fleche_rouge_maigre.gif\\\"><a style=\\\"font-size: 10px; text-decoration:none;\\\" href=\\\"http://micro-achat.01net.com/guide-produits/ordinateurs/gps/\\\"><font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\">GPS</a><br></font>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=20><br>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<table width=* cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td><input type=\\\"text\\\" name=\\\"recherchedirecte\\\" size=\\\"14\\\" style=\\\"width:130px;font:12px;\\\" value=\\\"     recherche directe\\\" onFocus=\\\"javascript:document.prix.recherchedirecte.value=\\'\\'\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=9><br>\\r\\n\\t\\t\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=28 height=1><input type=\\\"image\\\" src=\\\"/img/v4/MA/ok_bloc_recher_MA.gif\\\" border=\\\"0\\\"></td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t\\t<td width=1 bgcolor=#FFCC00><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=1></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=145 colspan=3><img src=\\\"http://www.01net.com/img/v4/MA/base_meillPrix.gif\\\"></td>\\r\\n\\t\\t</FORM>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN MicroAchat MA_MeillPrixAct //-->  \\t</td>\\r\\n\\t</tr>\\r\\n\\t</table>\\r\\n</td>\\r\\n<!-- /MA_BP_MP -->  <!-- - ZONE H2 -->\\r\\n<!-- -ZONE_Hn -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- +ZONE_Tn -->\\r\\n<!-- + ZONE T0 -->\\r\\n    <td valign=\\\"top\\\">\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" height=13><br>\\r\\n<table border=0 width=320 cellpadding=0 cellspacing=0>\\r\\n<tr>\\r\\n<td width=305><img src=\\\"http://www.01net.com/img/ban/Ban_v4_DernNews_MA.gif\\\"><br><img src=\\\"http://www.01net.com/img/v4/MA/v4-tiret-hauts-mha.gif\\\"></td>\\r\\n<td rowspan=2 width=15><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=15 height=1></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td bgcolor=\\\"#FEF9E0\\\">\\r\\n\\t<table width=\\\"100%\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n\\t\\t<tr>\\r\\n\\t<td><div style=\\\"padding:2px;width:100%;\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#CC0000\\\" style=\\\"font-size:11px;\\\"><b>Portable&nbsp;<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255149.html\\\" style=\\\"color:#000000;text-decoration:none;\\\">Toshiba consacre deux gammes de machines au multim\\351dia</a></b><br>\\r\\n\\t<font color=\\\"#000000\\\">Equipement haut de gamme et Windows Media Center sont au menu de ces portables \\340 vocation multim\\351dia.<br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4><br></font></td>\\r\\n\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t<td><div style=\\\"padding:2px;width:100%;\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#CC0000\\\" style=\\\"font-size:11px;\\\"><b>Ordinateur&nbsp;<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/254686.html\\\" style=\\\"color:#000000;text-decoration:none;\\\">Arriv\\351e d\\'un Power Mac G5 d\\'entr\\351e de gamme</a></b><br>\\r\\n\\t<font color=\\\"#000000\\\">La firme \\340 la pomme propose une station de travail \\351volutive et relativement abordable.<br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4><br></font></td>\\r\\n\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t<td><div style=\\\"padding:2px;width:100%;\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#CC0000\\\" style=\\\"font-size:11px;\\\"><b>PC&nbsp;<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/254549.html\\\" style=\\\"color:#000000;text-decoration:none;\\\">Alienware propose deux machines au look \\351trange</a></b><br>\\r\\n\\t<font color=\\\"#000000\\\">Aurora et Area 51 sont deux gammes d\\'ordinateurs enti\\350rement configurables.<br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4><br></font></td>\\r\\n\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t<td><div style=\\\"padding:2px;width:100%;\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#CC0000\\\" style=\\\"font-size:11px;\\\"><b>Portable&nbsp;<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/254501.html\\\" style=\\\"color:#000000;text-decoration:none;\\\">Trois nouveaux iBook G4 chez Apple</a></b><br>\\r\\n\\t<font color=\\\"#000000\\\">Chez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.<br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=4><br></font></td>\\r\\n\\t</tr>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=10></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-red-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=1></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td align=\\\"right\\\">\\r\\n\\t\\t\\t\\t<A HREF=\\\"http://microachat.01net.com/rubrique/4365.html\\\"  style=\\\"text-decoration:none;\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 10px;\\\">> toutes les news</font></a>\\r\\n\\t\\t\\t</td>\\r\\n\\t</tr>\\r\\n\\t</table>\\r\\n</td>\\r\\n</tr>\\r\\n</table>\\r\\n</td> <!-- - ZONE T0 -->\\r\\n<!-- + ZONE T1 -->\\r\\n<!-- Ma_derpromo  -->\\r\\n    <td valign=\\\"top\\\">\\r\\n<img src=\\\"/img/dot.gif\\\" height=13><br>\\r\\n<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"305\\\" bgcolor=\\\"#E9EDFC\\\">\\r\\n<tr>\\r\\n<td bgcolor=\\\"#ffffff\\\"><img src=\\\"/img/v4/MA/v4-lespromos-mha.gif\\\"><br><img src=\\\"/img/v4/MA/v4-tiret-hauts-mha.gif\\\"></td>\\r\\n</tr>\\r\\n</table>\\r\\n<!-- DEBUT MODELE D\\'AFFICHAGE POUR LES n PREMIERS ARTICLES //-->\\r\\n\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"305\\\" bgcolor=\\\"#E9EDFC\\\">\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"9\\\"></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"42\\\" valign=\\\"top\\\">\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"/article/255806.html\\\" class=\\\"nodeco\\\"><img src=\\\"/images/67462.jpg\\\" border=0 hspace=0 vspace=0 width=\\\"42\\\" height=\\\"42\\\"></a>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t</td>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"*\\\"  valign=\\\"top\\\"><A HREF=\\\"/article/255806.html\\\" class=\\\"nodeco\\\"><font face=\\\"arial,helvetica\\\" size=2 color=\\\"#000000\\\" style=\\\"font-size:11px;\\\"><b>Asus A3N15-C Pro</b></a><br>\\r\\n&nbsp;<img src=\\\"/img/v4/flechefine_fondtransp.gif\\\">Voici un portable autonome et puissant gr\\342ce \\340 la technologie Intel Centrino.<br></font></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\" align=\\\"right\\\">\\r\\n\\t<table width=\\\"80\\\" border=\\\"0\\\" bgcolor=\\\"#ffffff\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t<td width=\\\"76\\\" align=\\\"center\\\" bgcolor=\\\"#CC0000\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#ffffff\\\" style=\\\"font-size:11px;\\\"><b>1170&#160;\\200</b></font></td>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t</table>\\r\\n</td>\\r\\n</tr>\\r\\n</table>\\r\\n\\t\\t\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"305\\\" bgcolor=\\\"#E9EDFC\\\">\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"9\\\"></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"42\\\" valign=\\\"top\\\">\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"/article/255688.html\\\" class=\\\"nodeco\\\"><img src=\\\"/images/67381.jpg\\\" border=0 hspace=0 vspace=0 width=\\\"42\\\" height=\\\"42\\\"></a>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t</td>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"*\\\"  valign=\\\"top\\\"><A HREF=\\\"/article/255688.html\\\" class=\\\"nodeco\\\"><font face=\\\"arial,helvetica\\\" size=2 color=\\\"#000000\\\" style=\\\"font-size:11px;\\\"><b>Soltek EQ3702A Miroir</b></a><br>\\r\\n&nbsp;<img src=\\\"/img/v4/flechefine_fondtransp.gif\\\">Ce mini PC est une solution int\\351ressante pour les utilisateurs poss\\351dant d\\351j\\340 un \\351cran.<br></font></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\" align=\\\"right\\\">\\r\\n\\t<table width=\\\"80\\\" border=\\\"0\\\" bgcolor=\\\"#ffffff\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t<td width=\\\"76\\\" align=\\\"center\\\" bgcolor=\\\"#CC0000\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#ffffff\\\" style=\\\"font-size:11px;\\\"><b>559&#160;\\200</b></font></td>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t</table>\\r\\n</td>\\r\\n</tr>\\r\\n</table>\\r\\n\\t\\t\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"305\\\" bgcolor=\\\"#E9EDFC\\\">\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"9\\\"></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"42\\\" valign=\\\"top\\\">\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"/article/255513.html\\\" class=\\\"nodeco\\\"><img src=\\\"/images/67319.jpg\\\" border=0 hspace=0 vspace=0 width=\\\"42\\\" height=\\\"42\\\"></a>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t</td>\\r\\n<td width=\\\"16\\\"><img src=\\\"/img/dot.gif\\\" width=\\\"16\\\"></td>\\r\\n<td width=\\\"*\\\"  valign=\\\"top\\\"><A HREF=\\\"/article/255513.html\\\" class=\\\"nodeco\\\"><font face=\\\"arial,helvetica\\\" size=2 color=\\\"#000000\\\" style=\\\"font-size:11px;\\\"><b>IBM ThinkPad R51</b></a><br>\\r\\n&nbsp;<img src=\\\"/img/v4/flechefine_fondtransp.gif\\\">Voici un portable complet et pourtant relativement l\\351ger.<br></font></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td colspan=\\\"5\\\" align=\\\"right\\\">\\r\\n\\t<table width=\\\"80\\\" border=\\\"0\\\" bgcolor=\\\"#ffffff\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t<td width=\\\"76\\\" align=\\\"center\\\" bgcolor=\\\"#CC0000\\\">\\r\\n\\t<font face=\\\"arial,helvetica\\\" size=2 color=\\\"#ffffff\\\" style=\\\"font-size:11px;\\\"><b>1299&#160;\\200</b></font></td>\\r\\n\\t<td><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t<td colspan=\\\"3\\\"><img src=\\\"/img/dot.gif\\\" width=2></td>\\r\\n\\t</tr>\\r\\n\\t</table>\\r\\n</td>\\r\\n</tr>\\r\\n</table>\\r\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"305\\\" bgcolor=\\\"#E9EDFC\\\">\\r\\n<tr>\\r\\n<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=10></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td background=\\\"/img/v4/MA/v4-sep-red-mha.gif\\\"><img src=\\\"/img/dot.gif\\\" height=1></td>\\r\\n</tr>\\r\\n<tr>\\r\\n<td align=\\\"right\\\" valign=\\\"top\\\">\\r\\n\\t\\t\\t\\t<A HREF=\\\"http://microachat.01net.com/rubrique/4366.html\\\"  style=\\\"text-decoration:none;\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 10px;\\\">> toutes les promos</font></a>\\r\\n\\t\\t</td>\\r\\n</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- /Ma_derpromo  -->   <!-- - ZONE T1 -->\\r\\n<!-- + ZONE T2 -->\\r\\n<!-- - ZONE T2 -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- + ZONE T3 -->\\r\\n<!-- DEBUT MicroAchat MA_PubG -->\\r\\n<td valign=top align=center>\\r\\n<table border=0 width=320 cellpadding=0 cellspacing=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=305><img src=\\\"/img/dot.gif\\\" width=1 height=12><br><a href=\\\"http://www.smartadserver.com/call/cliccommand/45590/[timestamp]?\\\" target=_blank><img src=\\\"/img/microachat/Bandeau_FX6021.jpg\\\" border=0></a></td>\\r\\n\\t\\t<td><img src=\\\"/img/dot.gif\\\" width=15 height=1></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN MicroAchat MA_PubG -->  <!-- - ZONE T3 -->\\r\\n<!-- + ZONE T4 -->\\r\\n<!-- DEBUT MicroAchat MA_PubD -->\\r\\n<td valign=top align=center>\\r\\n<table border=0 width=305 cellpadding=0 cellspacing=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=305><img src=\\\"/img/dot.gif\\\" width=1 height=12><br><a href=\\\"http://www.smartadserver.com/call/cliccommand/45591/[timestamp]?\\\" target=_blank><img src=\\\"/img/microachat/twc_305x125.jpg\\\" border=0></a></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN  MicroAchat MA_PubD --> <!-- - ZONE T4 -->\\r\\n<!-- + ZONE T5 -->\\r\\n<!-- - ZONE T5 -->\\r\\n<!-- -ZONE_Tn -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n\\t\\t\\t<td valign=top>\\r\\n\\t\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=*>\\r\\n<!-- +ZONE_gn -->\\r\\n<!-- + ZONE g0 -->\\r\\n<!-- - ZONE g0 -->\\r\\n<!-- + ZONE g1 -->\\r\\n<!-- - ZONE g1 -->\\r\\n<!-- + ZONE g2 -->\\r\\n<!-- - ZONE g2 -->\\r\\n<!-- + ZONE g3 -->\\r\\n<!-- - ZONE g3 -->\\r\\n<!-- + ZONE g4 -->\\r\\n<!-- - ZONE g4 -->\\r\\n<!-- + ZONE g5 -->\\r\\n<!-- - ZONE g5 -->\\r\\n<!-- + ZONE g6 -->\\r\\n<!-- - ZONE g6 -->\\r\\n<!-- + ZONE g7 -->\\r\\n<!-- - ZONE g7 -->\\r\\n<!-- + ZONE g8 -->\\r\\n<!-- - ZONE g8 -->\\r\\n<!-- + ZONE g9 -->\\r\\n<!-- - ZONE g9 -->\\r\\n<!-- -ZONE_gn -->\\r\\n\\t\\t\\t</table>\\r\\n\\t\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=*>\\r\\n\\t\\t\\t\\t<tr>\\r\\n<!-- +ZONE_Mn -->\\r\\n<!-- + ZONE M0 -->\\r\\n<!-- modele Ma_GuideAch //-->\\r\\n    <td valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" height=13><br>\\r\\n<table border=0 cellpadding=0 cellspacing=0 width=160>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=145><img src=\\\"http://www.01net.com/img/ban/Ban_v4_GuideAchat_MA.gif\\\" vspace=1></td>\\r\\n\\t\\t<td rowspan=2 width=15><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=15 height=1></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td>\\r\\n\\t\\t<div style=\\\"border:solid 1px #FFCC00;width:100%\\\">\\r\\n\\t<!-- ****DEBUT EXTRACTION OBJET XML *********** //-->\\r\\n<!-- ****FIN EXTRACTION OBJET XML *********** //-->\\r\\n<center>\\r\\n<!--debut  insertion image //-->\\r\\n\\t\\t\\t\\t\\t       \\t   \\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<A HREF=\\\"http://microachat.01net.com/article/254561.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><img src=\\\"/images/67088.jpg.res_121-111.jpg\\\" border=0 hspace=0 vspace=0></a>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t       \\t   \\t<!-- fin insertion image //-->\\r\\n</center>\\r\\n<div style=\\\"padding:5px;\\\">\\r\\n<a href=\\\"http://microachat.01net.com/article/254561.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\"><b>Les graveurs de DVD</b><br></font></a>\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">Quel graveur choisir&#160;? Quel type de format&#160;? Quelle vitesse&#160;? Double couche ou simple couche&#160;? Voici tout ce qu\\'il faut savoir pour faire le bon choix.</font></div>\\r\\n\\t\\t\\t\\t\\t\\t</div>\\r\\n\\t\\t</td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td> <!-- - ZONE M0 -->\\r\\n<!-- + ZONE M1 -->\\r\\n<!-- modele Ma_DirectLab //-->\\r\\n    <td valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=13><br>\\r\\n<table border=0 cellpadding=0 cellspacing=0 width=160>\\r\\n\\t<tr>\\r\\n\\t\\t<td width=145><img src=\\\"http://www.01net.com/img/ban/Ban_v4_DirectLab_MA.gif\\\" vspace=1></td>\\r\\n\\t\\t<td rowspan=2 width=15><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=15 height=1></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td>\\r\\n\\t\\t<div style=\\\"border:solid 1px #FFCC00;width:100%\\\">\\r\\n\\t\\t<div style=\\\"padding:4px;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255744.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">\\t\\t\\t\\t\\t\\t\\t<b>Kodak EasyShare Printer Dock Plus&#160;:</b>\\r\\n\\t\\t\\t\\t\\t\\tvos photos 10&#160;x&#160;15&#160;cm en 60&#160;secondes</font></a></div>\\r\\n\\t\\t\\t\\t<div style=\\\"padding:4px;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255780.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">\\t\\t\\t\\t\\t\\t\\t<b>3DMark05&#160;:</b>\\r\\n\\t\\t\\t\\t\\t\\tun labo 3D \\340 domicile</font></a></div>\\r\\n\\t\\t\\t\\t<div style=\\\"padding:4px;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255691.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">\\t\\t\\t\\t\\t\\t\\t<b>DVDInfoPro 2.6</b>\\r\\n\\t\\t\\t\\t\\t\\treconna\\356t CD et DVD</font></a></div>\\r\\n\\t\\t\\t\\t<div style=\\\"padding:4px;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255722.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">\\t\\t\\t\\t\\t\\t\\t<b>Scaleo PA D3008, de Fujitsu-Siemens&#160;:</b>\\r\\n\\t\\t\\t\\t\\t\\tune impression d\\'inachev\\351</font></a></div>\\r\\n\\t\\t\\t\\t<div style=\\\"padding:4px;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://microachat.01net.com/article/255514.html\\\" style=\\\"text-decoration:none;color:#000000;\\\"><font face=arial,helvetica size=2 color=#000000 style=\\\"font-size:12px;\\\">Carbon 5&#160;Go&#160;: 2&#160;500&#160;chansons dans le creux de la main</font></a></div>\\r\\n\\t\\t\\t</div></td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td> <!-- - ZONE M1 -->\\r\\n<!-- + ZONE M2 -->\\r\\n<!-- DEBUT MicroAchat MA_AnnTelec -->\\r\\n<td valign=top>\\r\\n<script type=\\\"text/javascript\\\">\\r\\nfunction regionChange()\\r\\n{\\r\\ndocument.selection.departement.options.length=0;\\r\\nswitch(document.selection.region.value)\\r\\n\\t{\\r\\n\\t\\tcase \\\"aucun\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Nord-Pas-de-Calais\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Pas-de-Calais\\\", \\\"Pas-de-Calais\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Nord\\\", \\\"Nord\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Haute-Normandie\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Eure\\\", \\\"Eure\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Seine-Maritime\\\", \\\"Seine-Maritime\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Basse-Normandie\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Manche\\\", \\\"Manche\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Calvados\\\", \\\"Calvados\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Orne\\\", \\\"Orne\\\");\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Picardie\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Somme\\\", \\\"Somme\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Oise\\\", \\\"Oise\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Aisne\\\", \\\"Aisne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Bretagne\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Finistere\\\", \\\"Finistere\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Cotes-dArmor\\\", \\\"Cotes-dArmor\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Morbihan\\\", \\\"Morbihan\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Ille-et-Vilaine\\\", \\\"Ille-et-Vilaine\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Pays-de-Loire\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Loire-Atlantique\\\", \\\"Loire-Atlantique\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Vendee\\\", \\\"Vendee\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Maine-et-Loire\\\", \\\"Maine-et-Loire\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Mayenne\\\", \\\"Mayenne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Sarthe\\\", \\\"Sarthe\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Centre\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Eure-et-Loir\\\", \\\"Eure-et-Loir\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Loiret\\\", \\\"Loiret\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Loir-et-Cher\\\", \\\"Loir-et-Cher\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Indre-et-Loire\\\", \\\"Indre-et-Loire\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Indre\\\", \\\"Indre\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Cher\\\", \\\"Cher\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Ile-de-France\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Val-dOise\\\", \\\"Val-dOise\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Yvelines\\\", \\\"Yvelines\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Essonne\\\", \\\"Essonne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Seine-et-Marne\\\", \\\"Seine-et-Marne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Hauts-de-Seine\\\", \\\"Hauts-de-Seine\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Seine-Saint-Denis\\\", \\\"Seine-Saint-Denis\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Val-de-Marne\\\", \\\"Val-de-Marne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Paris\\\", \\\"Paris\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Champagnes-Ardennes\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Ardennes\\\", \\\"Ardennes\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Marne\\\", \\\"Marne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Aube\\\", \\\"Aube\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Marne\\\", \\\"Haute-Marne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Lorraine\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Vosges\\\", \\\"Vosges\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Meurthe-et-Moselle\\\", \\\"Meurthe-et-Moselle\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Meuse\\\", \\\"Meuse\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Moselle\\\", \\\"Moselle\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Alsace\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Bas-Rhin\\\", \\\"Bas-Rhin\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haut-Rhin\\\", \\\"Haut-Rhin\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Franche-Compte\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Jura\\\", \\\"Jura\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Doubs\\\", \\\"Doubs\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Saone\\\", \\\"Haute-Saone\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Territoire-de-Belfort\\\", \\\"Territoire-de-Belfort\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Bourgogne\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Yonne\\\", \\\"Yonne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Nievre\\\", \\\"Nievre\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Cote-dOr\\\", \\\"Cote-dOr\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Saone-et-Loire\\\", \\\"Saone-et-Loire\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Poitou-Charentes\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Deux-Sevres\\\", \\\"Deux-Sevres\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Charente-Maritime\\\", \\\"Charente-Maritime\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Charente\\\", \\\"Charente\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Vienne\\\", \\\"Vienne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Limousin\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Vienne\\\", \\\"Haute-Vienne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Correze\\\", \\\"Correze\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Creuse\\\", \\\"Creuse\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Auvergne\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Allier\\\", \\\"Allier\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Puy-de-Dome\\\", \\\"Puy-de-Dome\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Cantal\\\", \\\"Cantal\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Loire\\\", \\\"Haute-Loire\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Rhone-Alpes\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Loire\\\", \\\"Loire\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Rhone\\\", \\\"Rhone\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Ain\\\", \\\"Ain\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Ardeche\\\", \\\"Ardeche\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Drome\\\", \\\"Drome\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Isere\\\", \\\"Isere\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Savoie\\\", \\\"Savoie\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Savoie\\\", \\\"Haute-Savoie\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Aquitaine\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Gironde\\\", \\\"Gironde\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Landes\\\", \\\"Landes\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Pyrenees-Atlantiques\\\", \\\"Pyrenees-Atlantiques\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Lot-et-Garonne\\\", \\\"Lot-et-Garonne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Dordogne\\\", \\\"Dordogne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Midi-Pyrenees\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Lot\\\", \\\"Lot\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Tarn-et-Garonne\\\", \\\"Tarn-et-Garonne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Gers\\\", \\\"Gers\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Hautes-Pyrenees\\\", \\\"Hautes-Pyrenees\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Garonne\\\", \\\"Haute-Garonne\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Ariege\\\", \\\"Ariege\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Tarn\\\", \\\"Tarn\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Aveyron\\\", \\\"Aveyron\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Languedoc-Roussillon\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Pyrenees-Orientales\\\", \\\"Pyrenees-Orientales\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Aude\\\", \\\"Aude\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Herault\\\", \\\"Herault\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Gard\\\", \\\"Gard\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Lozere\\\", \\\"Lozere\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Provence-Alpes-Cote-dazur\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Bouches-du-Rhone\\\", \\\"Bouches-du-Rhone\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Vaucluse\\\", \\\"Vaucluse\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Alpes-de-haute-Provence\\\", \\\"Alpes-de-haute-Provence\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Hautes-Alpes\\\", \\\"Hautes-Alpes\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Var\\\", \\\"Var\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Alpes-Maritimes\\\", \\\"Alpes-Maritimes\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"Corse\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Corse-du-Sud\\\", \\\"Corse-du-Sud\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Haute-Corse\\\", \\\"Haute-Corse\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t\\tcase \\\"DomTom\\\" :\\r\\n\\t\\t\\tvar o=new Option(\\\"D\\351partement\\\", \\\"aucun\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Guadeloupe\\\", \\\"Guadeloupe\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Guyane\\\", \\\"Guyane\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"La-Reunion\\\", \\\"La-Reunion\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Martinique\\\", \\\"Martinique\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"Mayotte\\\", \\\"Mayotte\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\t\\tvar o=new Option(\\\"St-Pierre-et-Miquelon\\\", \\\"St-Pierre-et-Miquelon\\\");\\r\\n\\t\\t\\tdocument.selection.departement.options[document.selection.departement.options.length]=o;\\r\\n\\t\\tbreak;\\r\\n\\t}\\r\\n}\\r\\nfunction deptChange()\\r\\n{\\r\\nif (document.selection.departement.value == \\'Paris\\')\\r\\n\\tdocument.getElementById(\\'arrondissement\\').style.display = \\'inline\\';\\r\\nelse\\r\\n\\tdocument.getElementById(\\'arrondissement\\').style.display = \\'none\\';\\r\\n}\\r\\n</script>\\r\\n<table width=305 cellspacing=0 cellpadding=0 border=0>\\r\\n\\t<tr>\\r\\n\\t\\t<td valign=top>\\r\\n\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=13><br>\\r\\n\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=160>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td width=145><img src=\\\"http://www.01net.com/img/ban/Ban_v4_AnnuaiRev_MA.gif\\\" vspace=1></td>\\r\\n\\t\\t\\t\\t<td rowspan=2 width=15><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=15 height=1></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr><form action=\\\"http://micro-achat.01net.com/annuaire/recherche.php\\\" method=\\\"post\\\" name=\\\"selection\\\">\\r\\n\\t\\t\\t\\t<td bgcolor=#FFFFDD>\\r\\n\\t\\t\\t\\t<div style=\\\"border:solid 1px #FFCC00;width:100%\\\"><div style=\\\"padding:2px;\\\"><img src=\\\"http://www.01net.com/img/v4/MA/carte_revend.gif\\\"><br>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b>Choisir une r\\351gion</b><br></font>\\r\\n<select name=\\\"region\\\" onChange=\\\"regionChange()\\\" style=\\\"display : block; font-size:9px;font-variant:arial,helvetica,sans-serif;\\\">\\r\\n<option value=\\\"aucun\\\">-------------</option>\\r\\n<option value=\\\"Nord-Pas-de-Calais\\\">Nord-Pas-de-Calais</option>\\r\\n<option value=\\\"Haute-Normandie\\\">Haute-Normandie</option>\\r\\n<option value=\\\"Basse-Normandie\\\">Basse-Normandie</option>\\r\\n<option value=\\\"Picardie\\\">Picardie</option>\\r\\n<option value=\\\"Bretagne\\\">Bretagne</option>\\r\\n<option value=\\\"Pays-de-Loire\\\">Pays-de-Loire</option>\\r\\n<option value=\\\"Centre\\\">Centre</option>\\r\\n<option value=\\\"Ile-de-France\\\">Ile-de-France</option>\\r\\n<option value=\\\"Champagnes-Ardennes\\\">Champagne ardennes</option>\\r\\n<option value=\\\"Lorraine\\\">Lorraine</option>\\r\\n<option value=\\\"Alsace\\\">Alsace</option>\\r\\n<option value=\\\"Franche-Compte\\\">Franche-Compte</option>\\r\\n<option value=\\\"Bourgogne\\\">Bourgogne</option>\\r\\n<option value=\\\"Poitou-Charentes\\\">Poitou-Charentes</option>\\r\\n<option value=\\\"Limousin\\\">Limousin</option>\\r\\n<option value=\\\"Auvergne\\\">Auvergne</option>\\r\\n<option value=\\\"Rhone-Alpes\\\">Rhone-Alpes</option>\\r\\n<option value=\\\"Aquitaine\\\">Aquitaine</option>\\r\\n<option value=\\\"Midi-Pyrenees\\\">Midi-Pyrenees</option>\\r\\n<option value=\\\"Languedoc-Roussillon\\\">Languedoc roussillon</option>\\r\\n<option value=\\\"Provence-Alpes-Cote-dazur\\\">PACA</option>\\r\\n<option value=\\\"Corse\\\">Corse</option>\\r\\n<option value=\\\"DomTom\\\">DomTom</option>\\r\\n</select>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b>Un d\\351partement</b><br></font>\\r\\n<select name=\\\"departement\\\" onChange=\\\"deptChange()\\\" style=\\\"display : block; font-size:9px;font-variant:arial,helvetica,sans-serif;\\\">\\r\\n<option value=\\\"aucun\\\">-------------</option>\\r\\n</select>\\r\\n<div id=\\\"arrondissement\\\" style=\\\"display : none;\\\">\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=5><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b>Un arrondissement</b><br></font>\\r\\n<select name=\\\"arrondissement\\\" style=\\\"display : block; font-size:9px;font-variant:arial,helvetica,sans-serif;\\\">\\r\\n<option value=\\\"0\\\">-------------</option>\\r\\n<option value=\\\"1\\\">I</option>\\r\\n<option value=\\\"2\\\">II</option>\\r\\n<option value=\\\"3\\\">III</option>\\r\\n<option value=\\\"4\\\">IV</option>\\r\\n<option value=\\\"5\\\">V</option>\\r\\n<option value=\\\"6\\\">VI</option>\\r\\n<option value=\\\"7\\\">VII</option>\\r\\n<option value=\\\"8\\\">VIII</option>\\r\\n<option value=\\\"9\\\">IX</option>\\r\\n<option value=\\\"10\\\">X</option>\\r\\n<option value=\\\"11\\\">XI</option>\\r\\n<option value=\\\"12\\\">XII</option>\\r\\n<option value=\\\"13\\\">XIII</option>\\r\\n<option value=\\\"14\\\">XIV</option>\\r\\n<option value=\\\"15\\\">XV</option>\\r\\n<option value=\\\"16\\\">XVI</option>\\r\\n<option value=\\\"17\\\">XVII</option>\\r\\n<option value=\\\"18\\\">XVIII</option>\\r\\n<option value=\\\"19\\\">XIX</option>\\r\\n<option value=\\\"20\\\">XX</option>\\r\\n</select>\\r\\n</div>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=10><br>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b>Recherche directe</b><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial\\\" size=1 color=#000000 style=\\\"font-size: 10px; text-decoration:none;\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=8 height=1>rechercher une ville<br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=8 height=1>et/ou une boutique<br></font>\\r\\n\\t\\t\\t\\t<input type=\\\"text\\\" name=\\\"recherchedirecte\\\" size=\\\"14\\\" style=\\\"display : block; font-size:9px;font-variant:arial,helvetica,sans-serif;width:130px;\\\" value=\\\"\\\" onFocus=\\\"javascript:document.selection.recherchedirecte.value=\\'\\'\\\"><br><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=3><br>\\r\\n\\t\\t\\t\\t<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=28 height=1>&nbsp;<input type=\\\"image\\\" src=\\\"http://www.01net.com/img/v4/MA/ok_bloc_recher_MA.gif\\\" border=\\\"0\\\">\\r\\n\\t\\t\\t\\t<table height=23 width=135 cellspacing=0 cellpadding=0 border=0 bgcolor=#FFEE77>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td bgcolor=#FFEE77 valign=middle align=center><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://micro-achat.01net.com/annuaire/\\\"><font face=\\\"Arial\\\" size=1 color=#CC0000 style=\\\"font-size: 11px; text-decoration:none;\\\"><b>Recherche avanc\\351e</b></font></a></td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t</div>\\r\\n\\t\\t\\t\\t</div>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr></form>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n<!-- DEBUT MicroAchat MA_Telecharg //-->\\r\\n<td valign=top>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=13><br>\\r\\n<table width=\\\"145\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/v4/MA/Ban_v4_MA_telec.gif\\\"></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t<td>\\r\\n\\t\\t<table width=\\\"145\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" bgcolor=\\\"#DFECF6\\\">\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td rowspan=\\\"17\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=\\\"6\\\"></td>\\r\\n\\t\\t\\t\\t<td><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"></td>\\r\\n\\t\\t\\t\\t<td rowspan=\\\"17\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=\\\"6\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Bureautique\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Bureautique</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Traducteur, organiseur...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Multimedia\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Multim\\351dia</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Photo, audio, vid\\351o...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Utilitaire\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Utilitaires</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Antivirus, pilotes, gravure...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Personnaliser\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Personnaliser son PC</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Ecrans de veille, th\\350mes...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Programmation\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>D\\351veloppement</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Cr\\351ation de logiciels, BDD...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Jeux\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Jeux</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Action, simulation...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Internet\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Internet</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Utilitaires, email, FTP...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br><img src=\\\"http://www.01net.com/img/v4/flechefine_fondtransp.gif\\\"><a href=\\\"http://telecharger.01net.com/windows/Loisirs\\\" class=\\\"nodeco\\\"><font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#124478\\\" style=\\\"font-size: 12px;\\\"><b>Loisirs</b></a><br></font>\\r\\n\\t\\t\\t\\t<font face=\\\"Arial,Helvetica\\\" size=\\\"2\\\" color=\\\"#000000\\\" style=\\\"font-size: 10px;\\\">Humour, culture...<br></font><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"3\\\"><br>\\r\\n\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td background=\\\"http://www.01net.com/img/v4/MA/v4-sep-blue-mha.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" height=\\\"1\\\"></td>\\r\\n\\t\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN MicroAchat MA_Telecharg //-->  \\t</tr>\\r\\n</table>\\r\\n</td>\\r\\n<!-- FIN MicroAchat MA_AnnTelec --> <!-- - ZONE M2 -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- + ZONE M3 -->\\r\\n<!-- - ZONE M3 -->\\r\\n<!-- + ZONE M4 -->\\r\\n<!-- - ZONE M4 -->\\r\\n<!-- + ZONE M5 -->\\r\\n<!-- - ZONE M5 -->\\r\\n<!-- -ZONE_Mn -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=*>\\r\\n\\t\\t<tr>\\r\\n<!-- +ZONE_tn -->\\r\\n<!-- + ZONE t0 -->\\r\\n<!-- - ZONE t0 -->\\r\\n<!-- + ZONE t1 -->\\r\\n<!-- - ZONE t1 -->\\r\\n<!-- + ZONE t2 -->\\r\\n<!-- - ZONE t2 -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t<table width=100% cellspacing=0 cellpadding=0 border=0>\\r\\n\\t\\t<tr>\\r\\n<!-- + ZONE t3 -->\\r\\n<!-- - ZONE t3 -->\\r\\n<!-- + ZONE t4 -->\\r\\n<!-- - ZONE t4 -->\\r\\n<!-- + ZONE t5 -->\\r\\n<!-- - ZONE t5 -->\\r\\n<!-- -ZONE_tn -->\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n\\t\\t</td>\\r\\n\\t\\t<td valign=top>\\r\\n\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=*>\\r\\n\\t\\t<tr>\\r\\n<!-- +ZONE_dn -->\\r\\n<!-- + ZONE d0 -->\\r\\n<!-- - ZONE d0 -->\\r\\n<!-- + ZONE d1 -->\\r\\n<!-- - ZONE d1 -->\\r\\n<!-- + ZONE d2 -->\\r\\n<!-- - ZONE d2 -->\\r\\n<!-- + ZONE d3 -->\\r\\n<!-- - ZONE d3 -->\\r\\n<!-- + ZONE d4 -->\\r\\n<!-- - ZONE d4 -->\\r\\n<!-- + ZONE d5 -->\\r\\n<!-- - ZONE d5 -->\\r\\n<!-- + ZONE d6 -->\\r\\n<!-- - ZONE d6 -->\\r\\n<!-- + ZONE d7 -->\\r\\n<!-- - ZONE d7 -->\\r\\n<!-- + ZONE d8 -->\\r\\n<!-- - ZONE d8 -->\\r\\n<!-- + ZONE d9 -->\\r\\n<!-- - ZONE d9 -->\\r\\n<!-- -ZONE_dn -->\\r\\n\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t</table>\\r\\n\\t\\t\\t</td>\\r\\n\\t\\t</tr>\\r\\n\\t\\t</table>\\r\\n<!-- FIN WORK -->\\r\\n\\t\\t</td>\\r\\n<!-- *********************************************************************FIN VENTRE********************************************************************************************************************************************** //-->\\r\\n\\t\\t<td rowspan=2 valign=top width=23 background=\\\"http://www.01net.com/img/v4/sep_verticale.gif\\\"><img src=\\\"http://www.01net.com/img/dot.gif\\\" width=23 height=1><br></td>\\r\\n\\t</tr>\\r\\n\\t<tr>\\r\\n\\t\\t\\t<td colspan=2>\\r\\n\\t\\t\\t<table border=0 cellpadding=0 cellspacing=0 width=100%>\\r\\n<!-- +ZONE_Bn -->\\r\\n<!-- + ZONE B0 -->\\r\\n<!-- - ZONE B0 -->\\r\\n<!-- + ZONE B1 -->\\r\\n<tr><!-- ********** DEBUT BLOC Home NosJournauxV4 //-->\\r\\n<td valign=top bgcolor=#FFFFFF>\\r\\n<img src=\\\"http://www.01net.com/img/ban/Ban_v4_jx.gif\\\"><br>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=1 height=15><br>\\r\\n<img src=\\\"http://www.01net.com/img/dot.gif\\\" width=15 height=1>\\r\\n<a href=\\\"http://www.01net.com/rubrique/3339.html\\\"><img src=\\\"http://www.01net.com/img/journaux/01I-small.gif\\\" border=0 vspace=0 hspace=12 align=top></a>\\r\\n<a href=\\\"http://www.01net.com/rubrique/4051.html\\\"><img src=\\\"http://www.01net.com/img/journaux/DSI-small.gif\\\" border=0 vspace=0 hspace=12 align=top></a>\\r\\n<a href=\\\"http://www.01net.com/rubrique/3345.html\\\"><img src=\\\"http://www.01net.com/img/journaux/DIN-small.gif"
  },
  {
    "path": "testdata/large/E.coli",
    "content": "agcttttcattctgactgcaacgggcaatatgtctctgtgtggattaaaaaaagagtgtctgatagcagcttctgaactggttacctgccgtgagtaaattaaaattttattgacttaggtcactaaatactttaaccaatataggcatagcgcacagacagataaaaattacagagtacacaacatccatgaaacgcattagcaccaccattaccaccaccatcaccattaccacaggtaacggtgcgggctgacgcgtacaggaaacacagaaaaaagcccgcacctgacagtgcgggctttttttttcgaccaaaggtaacgaggtaacaaccatgcgagtgttgaagttcggcggtacatcagtggcaaatgcagaacgttttctgcgtgttgccgatattctggaaagcaatgccaggcaggggcaggtggccaccgtcctctctgcccccgccaaaatcaccaaccacctggtggcgatgattgaaaaaaccattagcggccaggatgctttacccaatatcagcgatgccgaacgtatttttgccgaacttttgacgggactcgccgccgcccagccggggttcccgctggcgcaattgaaaactttcgtcgatcaggaatttgcccaaataaaacatgtcctgcatggcattagtttgttggggcagtgcccggatagcatcaacgctgcgctgatttgccgtggcgagaaaatgtcgatcgccattatggccggcgtattagaagcgcgcggtcacaacgttactgttatcgatccggtcgaaaaactgctggcagtggggcattacctcgaatctaccgtcgatattgctgagtccacccgccgtattgcggcaagccgcattccggctgatcacatggtgctgatggcaggtttcaccgccggtaatgaaaaaggcgaactggtggtgcttggacgcaacggttccgactactctgctgcggtgctggctgcctgtttacgcgccgattgttgcgagatttggacggacgttgacggggtctatacctgcgacccgcgtcaggtgcccgatgcgaggttgttgaagtcgatgtcctaccaggaagcgatggagctttcctacttcggcgctaaagttcttcacccccgcaccattacccccatcgcccagttccagatcccttgcctgattaaaaataccggaaatcctcaagcaccaggtacgctcattggtgccagccgtgatgaagacgaattaccggtcaagggcatttccaatctgaataacatggcaatgttcagcgtttctggtccggggatgaaagggatggtcggcatggcggcgcgcgtctttgcagcgatgtcacgcgcccgtatttccgtggtgctgattacgcaatcatcttccgaatacagcatcagtttctgcgttccacaaagcgactgtgtgcgagctgaacgggcaatgcaggaagagttctacctggaactgaaagaaggcttactggagccgctggcagtgacggaacggctggccattatctcggtggtaggtgatggtatgcgcaccttgcgtgggatctcggcgaaattctttgccgcactggcccgcgccaatatcaacattgtcgccattgctcagggatcttctgaacgctcaatctctgtcgtggtaaataacgatgatgcgaccactggcgtgcgcgttactcatcagatgctgttcaataccgatcaggttatcgaagtgtttgtgattggcgtcggtggcgttggcggtgcgctgctggagcaactgaagcgtcagcaaagctggctgaagaataaacatatcgacttacgtgtctgcggtgttgccaactcgaaggctctgctcaccaatgtacatggccttaatctggaaaactggcaggaagaactggcgcaagccaaagagccgtttaatctcgggcgcttaattcgcctcgtgaaagaatatcatctgctgaacccggtcattgttgactgcacttccagccaggcagtggcggatcaatatgccgacttcctgcgcgaaggtttccacgttgtcacgccgaacaaaaaggccaacacctcgtcgatggattactaccatcagttgcgttatgcggcggaaaaatcgcggcgtaaattcctctatgacaccaacgttggggctggattaccggttattgagaacctgcaaaatctgctcaatgcaggtgatgaattgatgaagttctccggcattctttctggttcgctttcttatatcttcggcaagttagacgaaggcatgagtttctccgaggcgaccacgctggcgcgggaaatgggttataccgaaccggacccgcgagatgatctttctggtatggatgtggcgcgtaaactattgattctcgctcgtgaaacgggacgtgaactggagctggcggatattgaaattgaacctgtgctgcccgcagagtttaacgccgagggtgatgttgccgcttttatggcgaatctgtcacaactcgacgatctctttgccgcgcgcgtggcgaaggcccgtgatgaaggaaaagttttgcgctatgttggcaatattgatgaagatggcgtctgccgcgtgaagattgccgaagtggatggtaatgatccgctgttcaaagtgaaaaatggcgaaaacgccctggccttctatagccactattatcagccgctgccgttggtactgcgcggatatggtgcgggcaatgacgttacagctgccggtgtctttgctgatctgctacgtaccctctcatggaagttaggagtctgacatggttaaagtttatgccccggcttccagtgccaatatgagcgtcgggtttgatgtgctcggggcggcggtgacacctgttgatggtgcattgctcggagatgtagtcacggttgaggcggcagagacattcagtctcaacaacctcggacgctttgccgataagctgccgtcagaaccacgggaaaatatcgtttatcagtgctgggagcgtttttgccaggaactgggtaagcaaattccagtggcgatgaccctggaaaagaatatgccgatcggttcgggcttaggctccagtgcctgttcggtggtcgcggcgctgatggcgatgaatgaacactgcggcaagccgcttaatgacactcgtttgctggctttgatgggcgagctggaaggccgtatctccggcagcattcattacgacaacgtggcaccgtgttttctcggtggtatgcagttgatgatcgaagaaaacgacatcatcagccagcaagtgccagggtttgatgagtggctgtgggtgctggcgtatccggggattaaagtctcgacggcagaagccagggctattttaccggcgcagtatcgccgccaggattgcattgcgcacgggcgacatctggcaggcttcattcacgcctgctattcccgtcagcctgagcttgccgcgaagctgatgaaagatgttatcgctgaaccctaccgtgaacggttactgccaggcttccggcaggcgcggcaggcggtcgcggaaatcggcgcggtagcgagcggtatctccggctccggcccgaccttgttcgctctgtgtgacaagccggaaaccgcccagcgcgttgccgactggttgggtaagaactacctgcaaaatcaggaaggttttgttcatatttgccggctggatacggcgggcgcacgagtactggaaaactaaatgaaactctacaatctgaaagatcacaacgagcaggtcagctttgcgcaagccgtaacccaggggttgggcaaaaatcaggggctgttttttccgcacgacctgccggaattcagcctgactgaaattgatgagatgctgaagctggattttgtcacccgcagtgcgaagatcctctcggcgtttattggtgatgaaatcccacaggaaatcctggaagagcgcgtgcgcgcggcgtttgccttcccggctccggtcgccaatgttgaaagcgatgtcggttgtctggaattgttccacgggccaacgctggcatttaaagatttcggcggtcgctttatggcacaaatgctgacccatattgcgggtgataagccagtgaccattctgaccgcgacctccggtgataccggagcggcagtggctcatgctttctacggtttaccgaatgtgaaagtggttatcctctatccacgaggcaaaatcagtccactgcaagaaaaactgttctgtacattgggcggcaatatcgaaactgttgccatcgacggcgatttcgatgcctgtcaggcgctggtgaagcaggcgtttgatgatgaagaactgaaagtggcgctagggttaaactcggctaactcgattaacatcagccgtttgctggcgcagatttgctactactttgaagctgttgcgcagctgccgcaggagacgcgcaaccagctggttgtctcggtgccaagcggaaacttcggcgatttgacggcgggtctgctggcgaagtcactcggtctgccggtgaaacgttttattgctgcgaccaacgtgaacgataccgtgccacgtttcctgcacgacggtcagtggtcacccaaagcgactcaggcgacgttatccaacgcgatggacgtgagtcagccgaacaactggccgcgtgtggaagagttgttccgccgcaaaatctggcaactgaaagagctgggttatgcagccgtggatgatgaaaccacgcaacagacaatgcgtgagttaaaagaactgggctacacttcggagccgcacgctgccgtagcttatcgtgcgctgcgtgatcagttgaatccaggcgaatatggcttgttcctcggcaccgcgcatccggcgaaatttaaagagagcgtggaagcgattctcggtgaaacgttggatctgccaaaagagctggcagaacgtgctgatttacccttgctttcacataatctgcccgccgattttgctgcgttgcgtaaattgatgatgaatcatcagtaaaatctattcattatctcaatcaggccgggtttgcttttatgcagcccggcttttttatgaagaaattatggagaaaaatgacagggaaaaaggagaaattctcaataaatgcggtaacttagagattaggattgcggagaataacaaccgccgttctcatcgagtaatctccggatatcgacccataacgggcaatgataaaaggagtaacctgtgaaaaagatgcaatctatcgtactcgcactttccctggttctggtcgctcccatggcagcacaggctgcggaaattacgttagtcccgtcagtaaaattacagataggcgatcgtgataatcgtggctattactgggatggaggtcactggcgcgaccacggctggtggaaacaacattatgaatggcgaggcaatcgctggcacctacacggaccgccgccaccgccgcgccaccataagaaagctcctcatgatcatcacggcggtcatggtccaggcaaacatcaccgctaaatgacaaatgccgggtaacaatccggcattcagcgcctgatgcgacgctggcgcgtcttatcaggcctacgttaattctgcaatatattgaatctgcatgcttttgtaggcaggataaggcgttcacgccgcatccggcattgactgcaaacttaacgctgctcgtagcgtttaaacaccagttcgccattgctggaggaatcttcatcaaagaagtaaccttcgctattaaaaccagtcagttgctctggtttggtcagccgattttcaataatgaaacgactcatcagaccgcgtgctttcttagcgtagaagctgatgatcttaaatttgccgttcttctcatcgaggaacaccggcttgataatctcggcattcaatttcttcggcttcaccgatttaaaatactcatctgacgccagattaatcaccacattatcgccttgtgctgcgagcgcctcgttcagcttgttggtgatgatatctccccagaattgatacagatctttccctcgggcattctcaagacggatccccatttccagacgataaggctgcattaaatcgagcgggcggagtacgccatacaagccggaaagcattcgcaaatgctgttgggcaaaatcgaaatcgtcttcgctgaaggtttcggcctgcaagccggtgtagacatcacctttaaacgccagaatcgcctggcgggcattcgccggcgtgaaatctggctgccagtcatgaaagcgagcggcgttgatacccgccagtttgtcgctgatgcgcatcagcgtgctaatctgcggaggcgtcagtttccgcgcctcatggatcaactgctgggaattgtctaacagctccggcagcgtatagcgcgtggtggtcaacgggctttggtaatcaagcgttttcgcaggtgaaataagaatcagcatatccagtccttgcaggaaatttatgccgactttagcaaaaaatgagaatgagttgatcgatagttgtgattactcctgcgaaacatcatcccacgcgtccggagaaagctggcgaccgatatccggataacgcaatggatcaaacaccgggcgcacgccgagtttacgctggcgtagataatcactggcaatggtatgaaccacaggcgagagcagtaaaatggcggtcaaattggtaatagccatgcaggccattatgatatctgccagttgccacatcagcggaaggcttagcaaggtgccgccgatgaccgttgcgaaggtgcagatccgcaaacaccagatcgctttagggttgttcaggcgtaaaaagaagagattgttttcggcataaatgtagttggcaacgatggagctgaaggcaaacagaataaccacaagggtaacaaactcagcaccccaggaacccattagcacccgcatcgccttctggataagctgaataccttccagcggcatgtaggttgtgccgttacccgccagtaatatcagcatggcgcttgccgtacagatgaccagggtgtcgataaaaatgccaatcatctggacaatcccttgcgctgccggatgcggaggccaggacgccgctgccgctgccgcgtttggcgtcgaacccattcccgcctcattggaaaacatactgcgctgaaaaccgttagtaatcgcctggcttaaggtatatcccgccgcgccgcctgccgcttcctgccagccaaaagcactctcaaaaatagaccaaatgacgtggggaagttgcccgatattcattacgcaaattaccaggctggtcagtacccagattatcgccatcaacgggacaaagccctgcatgagccgggcgacgccatgaagaccgcgagtgattgccagcagagtaaagacagcgagaataatgcctgtcaccagcgggggaaaatcaaaagaaaaactcagggcgcgggcaacggcgttcgcttgaactccgctgaaaattatgccataggcgatgagcaaaaagacggcgaacagaacgcccatccagcgcatccccagcccgcgcgccatataccatgccggtccgccacgaaactgcccattgacgtcacgttctttataaagttgtgccagagaacattcggcaaacgaggtcgccatgccgataaacgcggcaacccacatccaaaagacggctccaggtccaccggcggtaatagccagcgcaacgccggccaggttgccgctacccacgcgcgccgcaagactggtacacaatgactgaaatgaggttaaaccgcctggctgtggatgaatgctatttttaagacttttgccaaactggcggatgtagcgaaactgcacaaatccggtgcgaaaagtgaaccaacaacctgcgccgaagagcaggtaaatcattaccgatccccaaaggacgctgttaatgaaggagaaaaaatctggcatgcatatccctcttattgccggtcgcgatgactttcctgtgtaaacgttaccaattgtttaagaagtatatacgctacgaggtacttgataacttctgcgtagcatacatgaggttttgtataaaaatggcgggcgatatcaacgcagtgtcagaaatccgaaacagtctcgcctggcgataaccgtcttgtcggcggttgcgctgacgttgcgtcgtgatatcatcagggcagaccggttacatccccctaacaagctgtttaaagagaaatactatcatgacggacaaattgacctcccttcgtcagtacaccaccgtagtggccgacactggggacatcgcggcaatgaagctgtatcaaccgcaggatgccacaaccaacccttctctcattcttaacgcagcgcagattccggaataccgtaagttgattgatgatgctgtcgcctgggcgaaacagcagagcaacgatcgcgcgcagcagatcgtggacgcgaccgacaaactggcagtaaatattggtctggaaatcctgaaactggttccgggccgtatctcaactgaagttgatgcgcgtctttcctatgacaccgaagcgtcaattgcgaaagcaaaacgcctgatcaaactctacaacgatgctggtattagcaacgatcgtattctgatcaaactggcttctacctggcagggtatccgtgctgcagaacagctggaaaaagaaggcatcaactgtaacctgaccctgctgttctccttcgctcaggctcgtgcttgtgcggaagcgggcgtgttcctgatctcgccgtttgttggccgtattcttgactggtacaaagcgaataccgataagaaagagtacgctccggcagaagatccgggcgtggtttctgtatctgaaatctaccagtactacaaagagcacggttatgaaaccgtggttatgggcgcaagcttccgtaacatcggcgaaattctggaactggcaggctgcgaccgtctgaccatcgcaccggcactgctgaaagagctggcggagagcgaaggggctatcgaacgtaaactgtcttacaccggcgaagtgaaagcgcgtccggcgcgtatcactgagtccgagttcctgtggcagcacaaccaggatccaatggcagtagataaactggcggaaggtatccgtaagtttgctattgaccaggaaaaactggaaaaaatgatcggcgatctgctgtaatcattcttagcgtgaccgggaagtcggtcacgctacctcttctgaagcctgtctgtcactcccttcgcagtgtatcattctgtttaacgagactgtttaaacggaaaaatcttgatgaatactttacgtattggcttagtttccatctctgatcgcgcatccagcggcgtttatcaggataaaggcatccctgcgctggaagaatggctgacatcggcgctaaccacgccgtttgaactggaaacccgcttaatccccgatgagcaggcgatcatcgagcaaacgttgtgtgagctggtggatgaaatgagttgccatctggtgctcaccacgggcggaactggcccggcgcgtcgtgacgtaacgcccgatgcgacgctggcagtagcggaccgcgagatgcctggctttggtgaacagatgcgccagatcagcctgcattttgtaccaactgcgatcctttcgcgtcaggtgggcgtgattcgcaaacaggcgctgatccttaacttacccggtcagccgaagtctattaaagagacgctggaaggtgtgaaggacgctgagggtaacgttgtggtacacggtatttttgccagcgtaccgtactgcattcagttgctggaagggccatacgttgaaacggcaccggaagtggttgcagcattcagaccgaagagtgcaagacgcgacgttagcgaataaaaaaatccccccgagcggggggatctcaaaacaattagtgggattcaccaatcggcagaacggtgcgaccaaactgctcgttcagtacttcacccatcgccagatagattgcgctggcaccgcagatcagcccaatccagccggcaaagtggatgattgcggcgttaccggcaatgttaccgatcgccagcagggcaaacagcacggtcaggctaaagaaaacgaattgcagaacgcgtgcgcctttcagcgtgccgaagaacataaacagcgtaaatacgccccacagacccaggtagacaccaaggaactgtgcatttggcgcatcggtcagacccagtttcggcatcagcagaatcgcaaccagcgtcagccagaaagaaccgtaagaggtgaatgcggttaaaccgaaagtgttgccttttttgtactccagcagaccagcaaaaatttgcgcgatgccgccgtagaaaatgcccatggcaagaataataccgtccagagcgaaataacccacgttgtgcaggttaagcagaatggtggtcatgccgaagcccatcaggcccagcggtgccggattagccaacttagtgttgcccataattcctcaaaaatcatcatcgaatgaatggtgaaataatttccctgaataactgtagtgttttcagggcgcggcataataatcagccagtggggcagtgtctacgatcttttgaggggaaaatgaaaattttccccggtttccggtatcagacctgagtggcgctaaccatccggcgcaggcaggcgatttgcagtacggctggaatcgtcacgcgataggcgctgccgctgaccgctttaaccccatttagtgccgcacctacagggcctcccagccccgcgccgcgcagcaaaccatgcccaagtacgctcattgctgcgtgggtgcgtaaaatgcgggtcagttggctggaaagcaaatgcgacacaccttttgccaataatttgtctttcatcagcagcggcagcagctcttccagctcattcaccctggcatcgaccgcgtgcagaaactcctgcttatgttcctcgtccattttcttccaggtattacgcagaaattgttccagtaactgttgctcaatttcaaacgtagacatctctttgtcggctttcagcttcaatcgctttgaaacatcgagcaaaatggcccgatacaatttaccgtgtccgcgcagtttgttggcgatactatcgccaccaaaatgctgtaattctccggcaatcagctgccagttgcggcgatgttgctcgggatgcccttccatcgatttaaacagttcgttgcgcatcagtacgctggagaggcgagttttgcctttttcattatgggtgagcaatcgggcgaaatttgccaactgttcctcactacaatgctgaagaaaatccagatctgaatcattcaggtaattaacattcattttttgtggcttctatattctggcgttagtcgtcgccgataattttcagcgtggccatatccgatgagttcaccgtatgacccgaaaaggtgatttttgagacgcagcgtttattgtcgttatcgctgttaatgttgatccagtcagtggtttgcccttcttttatttctgaaggaatattcaggctctgactggcgctacgggcggctttgaaataaaccgatgcaccgcttaactgtaaatcgccatggtcggcagagagttgtatgcgtttcacaatgcgacaaacaggaagtttcagcgccagatcgttggtttcgttacgcggcattgcaatggcgccgaggagtttatggtcgtttgcctgcgccgtgcagcacagcatcaggctaatcgccaggctggcggaaatcgtaaaaacggatttcataaggattctcttagtgggaagaggtagggggatgaatacccactagtttactgctgataaagagaagattcaggcacgtaatcttttctttttattacaattttttgatgaatgccttggctgcgattcattctttatatgaataaaattgctgtcaattttacgtcttgtcctgccatatcgcgaaatttctgcgcaaaagcacaaaaaatttttgcatctcccccttgatgacgtggtttacgaccccatttagtagtcaaccgcagtgagtgagtctgcaaaaaaatgaaattgggcagttgaaaccagacgtttcgcccctattacagactcacaaccacatgatgaccgaatatatagtggagacgtttagatgggtaaaataattggtatcgacctgggtactaccaactcttgtgtagcgattatggatggcaccactcctcgcgtgctggagaacgccgaaggcgatcgcaccacgccttctatcattgcctatacccaggatggtgaaactctagttggtcagccggctaaacgtcaggcagtgacgaacccgcaaaacactctgtttgcgattaaacgcctgattggtcgccgcttccaggacgaagaagtacagcgtgatgtttccatcatgccgttcaaaattattgctgctgataacggcgacgcatgggtcgaagttaaaggccagaaaatggcaccgccgcagatttctgctgaagtgctgaaaaaaatgaagaaaaccgctgaagattacctgggtgaaccggtaactgaagctgttatcaccgtaccggcatactttaacgatgctcagcgtcaggcaaccaaagacgcaggccgtatcgctggtctggaagtaaaacgtatcatcaacgaaccgaccgcagctgcgctggcttacggtctggacaaaggcactggcaaccgtactatcgcggtttatgacctgggtggtggtactttcgatatttctattatcgaaatcgacgaagttgacggcgaaaaaaccttcgaagttctggcaaccaacggtgatacccacctggggggtgaagacttcgacagccgtctgatcaactatctggttgaagaattcaagaaagatcagggcattgacctgcgcaacgatccgctggcaatgcagcgcctgaaagaagcggcagaaaaagcgaaaatcgaactgtcttccgctcagcagaccgacgttaacctgccatacatcactgcagacgcgaccggtccgaaacacatgaacatcaaagtgactcgtgcgaaactggaaagcctggttgaagatctggtaaaccgttccattgagccgctgaaagttgcactgcaggacgctggcctgtccgtatctgatatcgacgacgttatcctcgttggtggtcagactcgtatgccaatggttcagaagaaagttgctgagttctttggtaaagagccgcgtaaagacgttaacccggacgaagctgtagcaatcggtgctgctgttcagggtggtgttctgactggtgacgtaaaagacgtactgctgctggacgttaccccgctgtctctgggtatcgaaaccatgggcggtgtgatgacgacgctgatcgcgaaaaacaccactatcccgaccaagcacagccaggtgttctctaccgctgaagacaaccagtctgcggtaaccatccatgtgctgcagggtgaacgtaaacgtgcggctgataacaaatctctgggtcagttcaacctagatggtatcaacccggcaccgcgcggcatgccgcagatcgaagttaccttcgatatcgatgctgacggtatcctgcacgtttccgcgaaagataaaaacagcggtaaagagcagaagatcaccatcaaggcttcttctggtctgaacgaagatgaaatccagaaaatggtacgcgacgcagaagctaacgccgaagctgaccgtaagtttgaagagctggtacagactcgcaaccagggcgaccatctgctgcacagcacccgtaagcaggttgaagaagcaggcgacaaactgccggctgacgacaaaactgctatcgagtctgcgctgactgcactggaaactgctctgaaaggtgaagacaaagccgctatcgaagcgaaaatgcaggaactggcacaggtttcccagaaactgatggaaatcgcccagcagcaacatgcccagcagcagactgccggtgctgatgcttctgcaaacaacgcgaaagatgacgatgttgtcgacgctgaatttgaagaagtcaaagacaaaaaataatcgccctataaacgggtaattatactgacacgggcgaaggggaatttcctctccgcccgtgcattcatctaggggcaatttaaaaaagatggctaagcaagattattacgagattttaggcgtttccaaaacagcggaagagcgtgaaatcagaaaggcctacaaacgcctggccatgaaataccacccggaccgtaaccagggtgacaaagaggccgaggcgaaatttaaagagatcaaggaagcttatgaagttctgaccgactcgcaaaaacgtgcggcatacgatcagtatggtcatgctgcgtttgagcaaggtggcatgggcggcggcggttttggcggcggcgcagacttcagcgatatttttggtgacgttttcggcgatatttttggcggcggacgtggtcgtcaacgtgcggcgcgcggtgctgatttacgctataacatggagctcaccctcgaagaagctgtacgtggcgtgaccaaagagatccgcattccgactctggaagagtgtgacgtttgccacggtagcggtgcaaaaccaggtacacagccgcagacttgtccgacctgtcatggttctggtcaggtgcagatgcgccagggattcttcgctgtacagcagacctgtccacactgtcagggccgcggtacgctgatcaaagatccgtgcaacaaatgtcatggtcatggtcgtgttgagcgcagcaaaacgctgtccgttaaaatcccggcaggggtggacactggagaccgcatccgtcttgcgggcgaaggtgaagcgggcgagcatggcgcaccggcaggcgatctgtacgttcaggttcaggttaaacagcacccgattttcgagcgtgaaggcaacaacctgtattgcgaagtcccgatcaacttcgctatggcggcgctgggtggcgaaatcgaagtaccgacccttgatggtcgcgtcaaactgaaagtgcctggcgaaacccagaccggtaagctattccgtatgcgcggtaaaggcgtcaagtctgtccgcggtggcgcacagggtgatttgctgtgccgcgttgtcgtcgaaacaccggtaggcctgaacgaaaggcagaaacagctgctgcaagagctgcaagaaagcttcggtggcccaaccggcgagcacaacagcccgcgctcaaagagcttctttgatggtgtgaagaagttttttgacgacctgacccgctaacctccccaaaagcctgcccgtgggcaggcctgggtaaaaatagggtgcgttgaagatatgcgagcacctgtaaagtggcggggatcactcccataagcgctaacttaagggttgtggtattacgcctgatatgatttaacgtgccgatgaattactctcacgataactggtcagcaattctggcccatattggtaagcccgaagaactggatacttcggcacgtaatgccggggctctaacccgccgccgcgaaattcgtgatgctgcaactctgctacgtctggggctggcttacggccccggggggatgtcattacgtgaagtcactgcatgggctcagctccatgacgttgcaacattatctgacgtggctctcctgaagcggctgcggaatgccgccgactggtttggcatacttgccgcacaaacacttgctgtacgcgccgcagttacgggttgtacaagcggaaagagattgcgtcttgtcgatggaacagcaatcagtgcgcccgggggcggcagcgctgaatggcgactacatatgggatatgatcctcatacctgtcagttcactgattttgagctaaccgacagcagagacgctgaacggctggaccgatttgcgcaaacggcagacgagatacgcattgctgaccggggattcggttcgcgtcccgaatgtatccgctcacttgcttttggagaagctgattatatcgtccgggttcactggcgaggattgcgctggttaactgcagaaggaatgcgctttgacatgatgggttttctgcgcgggctggattgcggtaagaacggtgaaaccactgtaatgataggcaattcaggtaataaaaaagccggagctccctttccggcacgtctcattgccgtatcacttcctcccgaaaaagcattaatcagtaaaacccgactgctcagcgagaatcgtcgaaaaggacgagtagttcaggcggaaacgctggaagcagcgggccatgtgctattgctaacatcattaccggaagatgaatattcagcagagcaagtggctgattgttaccgtctgcgatggcaaattgaactggcttttaagcggctcaaaagtttgctgcacctggatgctttgcgtgcaaaggaacctgaactcgcgaaagcgtggatatttgctaatctactcgccgcatttttaattgacgacataatccagccatcgctggatttcccccccagaagtgccggatccgaaaagaagaactaactcgttgtggagaataacaaaaatggtcatctggagcttacaggtggccattcgtgggacagtatccctgacagcctacaaaacgcaattgaagaacgcgaggcatcgtcttaacgaggcaccgaggcgtcgcattcttcagatggttcaacccttaagttagcgcttatgggatcactccccgccgttgctcttactcggattcgtaagccgtgaaaacagcaacctccgtctggccagttcggatgtgaacctcacagaggtcttttctcgttaccagcgccgccactacggcggtgatacagatgacgatcagggcgacaatcatcgccttatgctgcttcattgctctcttctccttgaccttacggtcagtaagaggcactctacatgtgttcagcatataggaggcctcgggttgatggtaaaatatcactcggggcttttctctatctgccgttcagctaatgcctgagacagacagcctcaagcacccgccgctattatatcgctctctttaacccattttgttttatcgattctaatcctgaagacgcctcgcatttttgtggcgtaattttttaatgatttaattatttaactttaatttatctcttcatcgcaattattgacgacaagctggattatttttgaaatattggcctaacaagcatcgccgactgacaacaaattaattattacttttcctaattaatccctcaggaatcctcaccttaagctatgattatctaggcttagggtcactcgtgagcgcttacagccgtcaaaaacgcatctcaccgctgatggcgcaaattcttcaatagctcgtaaaaaacgaattattcctacactataatctgattttaacgatgattcgtgcggggtaaaatagtaaaaacgatctattcacctgaaagagaaataaaaagtgaaacatctgcatcgattctttagcagtgatgcctcgggaggcattattcttatcattgccgctatcctggcgatgattatggccaacagcggcgcaaccagtggatggtatcacgactttctggagacgccggttcagctccgggttggttcactcgaaatcaacaaaaacatgctgttatggataaatgacgcgctgatggcggtatttttcctgttagtcggtctggaagttaaacgtgaactgatgcaaggatcgctagccagcttacgccaggccgcatttccagttatcgccgctattggtgggatgattgtgccggcattactctatctggcttttaactatgccgatccgattacccgcgaagggtgggcgatcccggcggctactgacattgcttttgcacttggtgtactggcgctgttgggaagtcgtgttccgttagcgctgaagatctttttgatggctctggctattatcgacgatcttggggccatcattatcatcgcattgttctacactaatgacttatcgatggcctctcttggcgtcgcggctgtagcaattgcggtactcgcggtattgaatctgtgtggtgcacgccgcacgggcgtctatattcttgttggcgtggtgttgtggactgcggtgttgaaatcgggggttcacgcaactctggcgggggtaattgtcggcttctttattcctttgaaagagaagcatgggcgttctccagcgaagcgactggagcatgtgttgcacccgtgggtggcgtatctgattttgccgctgtttgcatttgctaatgctggcgtttcactgcaaggcgtcacgctggatggcttgacctccattctgccattggggatcatcgctggcttgctgattggcaaaccgctggggattagtctgttctgctggttggcgctgcgtttgaaactggcgcatctgcctgagggaacgacttatcagcaaattatggtggtggggatcctgtgcggtatcggttttactatgtctatctttattgccagcctggcctttggtagcgtagatccagaactgattaactgggcgaaactcggtatcctggtcggttctatctcttcggcggtaattggatacagctggttacgcgttcgtttgcgtccatcagtttgacaggacggtttaccggggagccataaacggctcccttttcattgttatcagggagagaaatgagcatgtctcatatcaattacaaccacttgtattacttctggcatgtctataaagaaggttccgtggttggcgcagcggaggcgctttatttaactccacaaaccattaccggacagattcgagcgctggaagagcgcctgcaaggcaaattatttaaacgcaagggacgtggtctcgaacccagcgagctgggagaactggtctatcgctatgccgataaaatgttcaccttaagccaggaaatgctggatattgtgaactatcgcaaagaatccaatttattgtttgacgttggcgtggctgatgcactttccaaacgcctggtcagtagcgtacttaacgccgcagtggtagaaggcgagcccattcatcttcgctgcttcgaatccacccacgaaatgctgctggagcaattaagtcagcataaactggatatgatcatttctgactgtccgatagactctacgcagcaggaaggcctgttctccgtgagaattggcgaatgtggcgtgagtttctggtgtacaaatccaccaccagaaaaaccgttcccggcttgtctggaagaacggcgacttttgattcctgggcgacgttcaatgttagggcgcaaattgcttaactggtttaactcccagggattaaacgtagaaatcctcggcgagtttgatgatgccgctttgatgaaagcttttggtgcgatgcacaatgcaatcttcgttgccccaacgctttatgcatatgacttttatgccgataaaactgtcgtagaaattggtcgcgtcgagaatgtgatggaagagtaccatgctatttttgctgagcggatgattcagcacccggcggtacagcgaatctgcaatacggattattctgcgctttttagtccagcggtgcgttaatcggcagctcccccaaagttaaggtgggggagatagattagttgtacattaccacgattttgactcggctcattatttgcccgcttgagacattgtttccatatgtacgcgggcgaataaatagaggaatctgattacttccttcatggggatgctgaaaagagtagtaattgctggtaatgactccaacttattgatagtgttttatgttcagataatgcccgatgactttgtcatgcagctccaccgattttgagaacgacagcgacttccgtcccagccgtgccaggtgctgcctcagattcaggttatgccgctcaattcgctgcgtatatcgcttgctgattacgtgcagctttcccttcaggcgggattcatacagcggccagccatccgtcatccatatcaccacgtcaaagggtgacagcaggctcataagacgccccagcgtcgccatagtgcgttcaccgaatacgtgcgcaacaaccgtcttccggagactgtcatacgcgtaaaacagccagcgctggcgcgatttagccccgacatagccccactgttcgtccatttccgcgcagacgatgacgtcactgcccggctgtatgcgcgaggttaccgactgcggcctgagttttttaagtgacgtaaaatcgtgttgaggccaacgcccataatgcgggctgttgcccggcatccaacgccattcatggccatatcaatgattttctggtgcgtaccgggttgagaagcggtgtaagtgaactgcagttgccatgttttacggcagtgagagcagagatagcgctgatgtccggcggtgcttttgccgttacgcaccaccccgtcagtagctgaacaggagggacagctgatagaaacagaagccactggagcacctcaaaaacaccatcatacactaaatcagtaagttggcagcatcacctacctcaatgtgtatcacaatatccatattctttgtgggggagtctggagattgagtagatattcttgttcagaatgtatcagccgatggttctacgattcttaagccacgaagagttcagatagtacaacggcatgtctcttttgactatctggcaaccggcagtgtgttctctcacgcatcacaaaagcagcaggcataaaaaaacccgcttgcgcgggctttttcacaaagcttcagcaaattggcgattaagccagtttgttgatctgtgcagtcaggttagccttatgacgtgcagctttgtttttgtggatcagacctttagcagcctgacggtccacgatcggttgcatttcgttaaatgctttctgtgcagcagctttgtcgccagcttcgatagctgcgtatactttcttgatgaaagtacgcatcatagagcgacggcttgcgttgtgcttacgagccttttcagactgaatggcgcgcttcttagctgatttgatattagccaaggtccaactcccaaatgtgttctatatggacaattcaaaggccgaggaatatgcccttttagccttcttttgtcaatggatttgtgcaaataagcgccgttaatgtgccggcactcgttacgtagtgatggcgcaggattctaccagcttgcggggtgtgaatacagcttttccgcgataaaaattgcagcaggcggtcagtttcttcccgtgatttgcgccatggcaatgaaaagccacttctttctgatttcggtactcaatcgccggttaaccttgaccgctgtacaaggtatactcggacgattttcactgttttgagccagacatgaagctgatacgcggcatacataatctcagccaggccccgcaagaagggtgtgtgctgactattggtaatttcgacggcgtgcatcgcggtcatcgcgcgctgttacagggcttgcaggaagaagggcgcaagcgcaacttaccggtgatggtgatgctttttgaacctcaaccactggaactgtttgctaccgataaagccccggcaagactgacccggctgcgggaaaaactgcgttaccttgcagagtgtggcgttgattacgtgctgtgcgtgcgtttcgacaggcgtttcgcggcgttaaccgcgcaaaatttcatcagcgatcttctggtgaagcatttgcgcgtaaaatttcttgccgtaggtgatgatttccgctttggcgctggtcgtgaaggcgatttcttgttattacagaaagctggcatggaatacggcttcgatatcaccagtacgcaaactttttgcgaaggtggcgtgcgcatcagcagcaccgccgtgcgtcaggcccttgcggatgacaatctggctctggcagagagtttactggggcacccgtttgccatctccgggcgtgtagtccacggtgatgaattagggcgcactataggtttcccgacggcgaatgtaccgctgcgccgtcaggtttccccggtgaaaggggtttatgcggtagaagtgctgggcctcggtgaaaagccgttacccggcgtggcaaacatcggaacacgcccaacggttgccggtattcgccagcagctggaagtgcatttgttagatgttgcaatggacctttacggtcgccatatacaagtagtgctgcgtaaaaaaatacgcaatgagcagcgatttgcgtcgctggacgaactgaaagcgcagattgcgcgtgatgaattaaccgcccgcgaattttttgggctaacaaaaccggcttaagcctgttatgtaatcaaaccgaaatacggaaccgagaatctgatgagtgactataaatcaaccctgaatttgccggaaacagggttcccgatgcgtggcgatctcgccaagcgcgaacccggaatgctggcgcgttggactgatgatgatctgtacggcatcatccgtgcggctaaaaaaggcaaaaaaaccttcattctgcatgatggccctccttatgcgaatggcagcattcatattggtcactcggttaacaagattctgaaagacattatcgtgaagtccaaagggctttccggttatgactcgccgtatgtgcctggctgggactgccacggtctgccgatcgagctgaaagtcgagcaagaatacggtaagccgggtgagaaattcaccgccgccgagttccgcgccaagtgccgcgaatacgcggcgacccaggttgacggtcaacgcaaagactttatccgtctgggcgtgctgggcgactggtcgcacccgtacctgaccatggacttcaaaactgaagccaacatcatccgcgcgctgggcaaaatcatcggcaacggtcacctgcacaaaggcgcgaagccagttcactggtgcgttgactgccgttctgcgctggcggaagcggaagttgagtattacgacaaaacttctccgtccatcgacgttgctttccaggcagtcgatcaggatgcactgaaagcaaaatttgccgtaagcaacgttaacggcccaatctcgctggtaatctggaccaccacgccgtggactctgcctgccaaccgcgcaatctctattgcaccagatttcgactatgcgctggtgcagatcgacggtcaggccgtgattctggcgaaagatctggttgaaagcgtaatgcagcgtatcggcgtgaccgattacaccattctcggcacggtaaaaggtgcggagcttgagctgctgcgctttacccatccgtttatgggcttcgacgttccggcaatcctcggcgatcacgttaccctggatgccggtaccggtgccgttcacaccgcgcctggccacggcccggacgactatgtgatcggtcagaaatacggcctggaaaccgctaacccggttggcccggacggcacttatctgccgggcacttatccgacgctggatggcgtgaacgtcttcaaagcgaacgacatcgtcgctgcgctgctgcaggaaaaaggcgcgctgctgcacgttgagaaaatgcagcacagctatccgtgctgctggcgtcacaaaacgccgatcatcttccgcgcgacgccgcagtggttcgtcagcatggatcagaaaggtctgcgtgcgcagtcactgaaagagatcaaaggcgtgcagtggatcccggactggggccaggcgcgtatcgagtcgatggttgctaaccgtcctgactggtgtatctcccgtcagcgcacctggggtgtaccgatgtcactgttcgtgcacaaagacacggaagagctgcatccgcgtacccttgaactgatggaagaagtggcaaaacgcgttgaagtcgatggcatccaggcgtggtgggatctcgatgcgaaagagatcctcggcgacgaagctgatcagtacgtgaaagtgccggacacattggatgtatggtttgactccggatctacccactcttctgttgttgacgtgcgtccggaatttgccggtcacgcagcggacatgtatctggaaggttctgaccaacaccgcggctggttcatgtcttccctaatgatctccaccgcgatgaagggtaaagcgccgtatcgtcaggtactgacccacggctttaccgtggatggtcagggccgcaagatgtctaaatccatcggcaataccgtttcgccgcaggatgtgatgaacaaactgggcgcggatattctgcgtctgtgggtggcatcaaccgactacaccggtgaaatggccgtttctgacgagatcctgaaacgtgctgccgatagctatcgtcgtatccgtaacaccgcgcgcttcctgctggcaaacctgaacggttttgatccagcaaaagatatggtgaaaccggaagagatggtggtactggatcgctgggccgtaggttgtgcgaaagcggcacaggaagacatcctcaaggcgtacgaagcatacgatttccacgaagtggtacagcgtctgatgcgcttctgctccgttgagatgggttccttctacctcgacatcatcaaagaccgtcagtacaccgccaaagcggacagtgtggcgcgtcgtagctgccagactgcgctatatcacatcgcagaagcgctggtgcgctggatggcaccaatcctctccttcaccgctgatgaagtgtggggctacctgccgggcgaacgtgaaaaatacgtcttcaccggtgagtggtacgaaggcctgtttggcctggcagacagtgaagcgatgaacgatgcgttctgggacgagctgttgaaagtgcgtggcgaagtgaacaaagtcattgagcaagcgcgtgccgacaagaaagtgggtggctcgctggaagcggcagtaaccttgtatgcagaaccggaactgtcggcgaaactgaccgcgctgggcgatgaattacgatttgtcctgttgacctccggcgctaccgttgcagactataacgacgcacctgctgatgctcagcagagcgaagtactcaaagggctgaaagtcgcgttgagtaaagccgaaggtgagaagtgcccacgctgctggcactacacccaggatgtcggcaaggtggcggaacacgcagaaatctgcggccgctgtgtcagcaacgtcgccggtgacggtgaaaaacgtaagtttgcctgatgagtcaatcgatctgttcaacagggctacgctggctgtggctggtggtagtcgtgctgattatcgatctgggcagcaaatacctgatcctccagaactttgctctgggggatacggtcccgctgttcccgtcgcttaatctgcattatgcgcgtaactatggcgcggcgtttagtttccttgccgatagcggcggctggcagcgttggttctttgccggtattgcgattggtattagcgtgatcctggcagtgatgatgtatcgctcgaaggccacgcagaagctaaacaatatcgcttacgcgctgattattggcggcgcgctgggcaacctgttcgaccgcctgtggcacggcttcgttgtcgatatgatcgacttctacgtcggcgactggcacttcgccaccttcaaccttgccgatactgccatctgtgtcggtgcggcactgattgtgctggaaggttttttgccttctagagcgaaaaaacaataataaaccctgccggatgcgatgctgacgcatcttatccggcctacagattgctgcgaaatcgtaggccggataaggcgtttacgccgcatccggcaaaaatccttaaatataagagcaaacctgcatgtctgaatctgtacagagcaatagcgccgtcctggtgcacttcacgctaaaactcgacgatggcaccaccgccgagtctacccgcaacaacggtaaaccggcgctgttccgcctgggtgatgcttctctttctgaagggctggagcaacacctgttggggctgaaagtgggcgataaaaccaccttctcgttggagccagatgcggcgtttggcgtgccgtcaccggacctgattcagtacttctcccgccgtgaatttatggatgcaggcgagccagaaattggcgcaatcatgctttttaccgcaatggatggcagtgagatgcctggcgtgatccgcgaaattaacggcgactccattaccgttgatttcaaccatccgctggccgggcagaccgttcattttgatattgaagtgctggaaatcgatccggcactggaggcgtaacatgcagatcctgttggccaacccgcgtggtttttgtgccggggtagaccgcgctatcagcattgttgaaaacgcgctggccatttacggcgcaccgatatatgtccgtcacgaagtggtacataaccgctatgtggtcgatagcttgcgtgagcgtggggctatctttattgagcagattagcgaagtaccggacggcgcgatcctgattttctccgcacacggtgtttctcaggcggtacgtaacgaagcaaaaagtcgcgatttgacggtgtttgatgccacctgtccgctggtgaccaaagtgcatatggaagtcgcccgcgccagtcgccgtggcgaagaatctattctcatcggtcacgccgggcacccggaagtggaagggacaatgggccagtacagtaacccggaagggggaatgtatctggtcgaatcgccggacgatgtgtggaaactgacggtcaaaaacgaagagaagctctcctttatgacccagaccacgctgtcggtggatgacacgtctgatgtgatcgacgcgctgcgtaaacgcttcccgaaaattgtcggtccgcgcaaagatgacatctgctacgccacgactaaccgtcaggaagcggtacgcgccctggcagaacaggcggaagttgtgttggtggtcggttcgaaaaactcctccaactccaaccgtctggcggagctggcccagcgtatgggcaaacgcgcgtttttgattgacgatgcgaaagacatccaggaagagtgggtgaaagaggttaaatgcgtcggcgtgactgcgggcgcatcggctccggatattctggtgcagaatgtggtggcacgtttgcagcagctgggcggtggtgaagccattccgctggaaggccgtgaagaaaacattgttttcgaagtgccgaaagagctgcgtgtcgatattcgtgaagtcgattaagtcattagcagcctaagttatgcgaaaatgccggtcttgttaccggcattttttatggagaaaacatgcgtttacctatcttcctcgatactgaccccggcattgacgatgccgtcgccattgccgccgcgatttttgcacccgaactcgacctgcaactgatgaccaccgtcgcgggtaatgtctcggttgagaaaactacccgcaatgccctgcaactgctgcatttctggaatgcggagattccgctcgcccaaggggccgctgtgccactggtacgcgcaccgcgtgatgcggcatctgtgcacggcgaatcgggaatggctggctacgactttgttgagcacaaccgaaagccgctcgggataccggcgtttctggcgattcgggatgccctgatgcgtgcaccagagcctgttaccctggtggccatcggcccgttaaccaatattgcgctgttactttcacaatgcccggaatgcaagccgtatattcgccgtctggtgatcatgggtggttctgccggacgcggcaactgtacgccaaacgccgagtttaatattgctgccgatccagaagctgctgcctgtgtcttccgcagtggtattgaaatcgtcatgtgcggtttggatgtcaccaatcaggcaatattaactcctgactatctctctacactgccgcagttaaaccgtaccgggaaaatgcttcacgccctgtttagccactaccgtagcggcagtatgcaaagcggcttgcgaatgcacgatctctgcgccatcgcctggctggtgcgcccggacctgttcactctcaaaccctgttttgtggcagtggaaactcagggcgaatttacctcaggcacgacggtggttgatatcgacggttgcctgggcaagccagccaatgtacaggtggcattggatctggatgtgaaaggcttccagcagtgggtggctgaggtgctggctctggcgtcgtaacctgtcacatgttattggcatgcagtcattcatcgactcatgcctttcactgatatccctccctgtttatcattaatttctaattatcagcgtttttggctggcggcgtagcgatgcgctggttactctgaaaacggtctatgcaaattaacaaaagagaatagctatgcatgatgcaaacatccgcgttgccatcgcgggagccggggggcgtatgggccgccagttgattcaggcggcgctggcattagagggcgtgcagttgggcgctgcgctggagcgtgaaggatcttctttactgggcagcgacgccggtgagctggccggagccgggaaaacaggcgttaccgtgcaaagcagcctcgatgcggtaaaagatgattttgatgtgtttatcgattttacccgtccggaaggtacgctgaaccatctcgctttttgtcgccagcatggcaaagggatggtgatcggcactacggggtttgacgaagccggtaaacaagcaattcgtgacgccgctgccgatattgcgattgtctttgctgccaattttagcgttggcgttaacgtcatgcttaagctgctggagaaagcagccaaagtgatgggtgactacaccgatatcgaaattattgaagcacatcatagacataaagttgatgcgccgtcaggcaccgcactggcaatgggagaggcgatcgcccacgcccttgataaagatctgaaagattgcgcggtctacagtcgtgaaggccacaccggtgaacgtgtgcctggcaccattggttttgccaccgtgcgtgcaggtgacatcgttggtgaacataccgcgatgtttgccgatattggcgagcgtctggagatcacccataaggcgtccagccgtatgacatttgctaacggcgcggtaagatcggctttgtggttgagtggtaaggaaagcggtctttttgatatgcgagatgtacttgatctcaataatttgtaaccacaaaatatttgttatggtgcaaaaataacacatttaatttattgattataaagggctttaatttttggcccttttatttttggtgttatgtttttaaattgtctataagtgccaaaaattacatgttttgtcttctgtttttgttgttttaatgtaaattttgaccatttggtccacttttttctgctcgtttttatttcatgcaatcttcttgctgcgcaagcgttttccagaacaggttagatgatctttttgtcgcttaatgcctgtaaaacatgcatgagccacaaaataatataaaaaatcccgccattaagttgacttttagcgcccatatctccagaatgccgccgtttgccagaaattcgtcggtaagcagatttgcattgatttacgtcatcattgtgaattaatatgcaaataaagtgagtgaatattctctggagggtgttttgattaagtcagcgctattggttctggaagacggaacccagtttcacggtcgggccataggggcaacaggttcggcggttggggaagtcgttttcaatacttcaatgaccggttatcaagaaatcctcactgatccttcctattctcgtcaaatcgttactcttacttatccccatattggcaatgtcggcaccaatgacgccgatgaagaatcttctcaggtacatgcacaaggtctggtgattcgcgacctgccgctgattgccagcaacttccgtaataccgaagacctctcttcttacctgaaacgccataacatcgtggcgattgccgatatcgatacccgtaagctgacgcgtttactgcgcgagaaaggcgcacagaatggctgcattatcgcgggcgataacccggatgcggcgctggcgttagaaaaagcccgcgcgttcccaggtctgaatggcatggatctggcaaaagaagtgaccaccgcagaagcctatagctggacacaagggagctggacgttgaccggtggcctgccagaagcgaaaaaagaagacgagctgccgttccacgtcgtggcttatgattttggtgccaagcgcaacatcctgcggatgctggtggatagaggctgtcgcctgaccatcgttccggcgcaaacttctgcggaagatgtgctgaaaatgaatccagacggcatcttcctctccaacggtcctggcgacccggccccgtgcgattacgccattaccgccatccagaaattcctcgaaaccgatattccggtattcggcatctgtctcggtcatcagctgctggcgctggcgagcggtgcgaagactgtcaaaatgaaatttggtcaccacggcggcaaccatccggttaaagatgtggagaaaaacgtggtaatgatcaccgcccagaaccacggttttgcggtggacgaagcaacattacctgcaaacctgcgtgtcacgcataaatccctgttcgacggtacgttacagggcattcatcgcaccgataaaccggcattcagcttccaggggcaccctgaagccagccctggtccacacgacgccgcgccgttgttcgaccactttatcgagttaattgagcagtaccgtaaaaccgctaagtaatcaggagtaaaagagccatgccaaaacgtacagatataaaaagtatcctgattctgggtgcgggcccgattgttatcggtcaggcgtgtgagtttgactactctggcgcgcaagcgtgtaaagccctgcgtgaagagggttaccgcgtcattctggtgaactccaacccggcgaccatcatgaccgacccggaaatggctgatgcaacctacatcgagccgattcactgggaagttgtacgcaagattattgaaaaagagcgcccggacgcggtgctgccaacgatgggcggtcagacggcgctgaactgcgcgctggagctggaacgtcagggcgtgttggaagagttcggtgtcaccatgattggtgccactgccgatgcgattgataaagcagaagaccgccgtcgtttcgacgtagcgatgaagaaaattggtctggaaaccgcgcgttccggtatcgcacacacgatggaagaagcgctggcggttgccgctgacgtgggcttcccgtgcattattcgcccatcctttaccatgggcggtagcggcggcggtatcgcttataaccgtgaagagtttgaagaaatttgcgcccgcggtctggatctctctccgaccaaagagttgctgattgatgagtcgctgatcggctggaaagagtacgagatggaagtggtgcgtgataaaaacgacaactgcatcatcgtctgctctatcgaaaacttcgatgcgatgggcatccacaccggtgactccatcactgtcgcgccagcccaaacgctgaccgacaaagaatatcaaatcatgcgtaacgcctcgatggcggtgctgcgtgaaatcggcgttgaaaccggtggttccaacgttcagtttgcggtgaacccgaaaaacggtcgtctgattgttatcgaaatgaacccacgcgtgtcccgttcttcggcgctggcgtcgaaagcgaccggtttcccgattgctaaagtggcggcgaaactggcggtgggttacaccctcgacgaactgatgaacgacatcactggcggacgtactccggcctccttcgagccgtccatcgactatgtggttactaaaattcctcgcttcaacttcgaaaaattcgccggtgctaacgaccgtctgaccactcagatgaaatcggttggcgaagtgatggcgattggtcgcacgcagcaggaatccctgcaaaaagcgctgcgcggcctggaagtcggtgcgactggattcgacccgaaagtgagcctggatgacccggaagcgttaaccaaaatccgtcgcgaactgaaagacgcaggcgcagatcgtatctggtacatcgccgatgcgttccgtgcgggcctgtctgtggacggcgtcttcaacctgaccaacattgaccgctggttcctggtacagattgaagagctggtgcgtctggaagagaaagtggcggaagtgggcatcactggcctgaacgctgacttcctgcgccagctgaaacgcaaaggctttgccgatgcgcgcttggcaaaactggcgggcgtacgcgaagcggaaatccgtaagctgcgtgaccagtatgacctgcacccggtttataagcgcgtggatacctgtgcggcagagttcgccaccgacaccgcttacatgtactccacttatgaagaagagtgcgaagcgaatccgtctaccgaccgtgaaaaaatcatggtgcttggcggcggcccgaaccgtatcggtcagggtatcgaattcgactactgttgcgtacacgcctcgctggcgctgcgcgaagacggttacgaaaccattatggttaactgtaacccggaaaccgtctccaccgactacgacacttccgaccgcctctacttcgagccggtaactctggaagatgtgctggaaatcgtgcgtatcgagaagccgaaaggcgttatcgtccagtacggcggtcagaccccgctgaaactggcgcgcgcgctggaagctgctggcgtaccggttatcggcaccagcccggatgctatcgaccgtgcagaagaccgtgaacgcttccagcatgcggttgagcgtctgaaactgaaacaaccggcgaacgccaccgttaccgctattgaaatggcggtagagaaggcgaaagagattggctacccgctggtggtacgtccgtcttacgttctcggcggtcgggcgatggaaatcgtctatgacgaagctgacctgcgtcgctacttccagacggcggtcagcgtgtctaacgatgcgccagtgttgctggaccacttcctcgatgacgcggtagaagttgacgtggatgccatctgcgacggcgaaatggtgctgattggcggcatcatggagcatattgagcaggcgggcgtgcactccggtgactccgcatgttctctgccagcctacaccttaagtcaggaaattcaggatgtgatgcgccagcaggtgcagaaactggccttcgaattgcaggtgcgcggcctgatgaacgtgcagtttgcggtgaaaaacaacgaagtctacctgattgaagttaacccgcgtgcggcgcgtaccgttccgttcgtctccaaagccaccggcgtaccgctggcaaaagtggcggcgcgcgtgatggctggcaaatcgctggctgagcagggcgtaaccaaagaagttatcccgccgtactactcggtgaaagaagtggtgctgccgttcaataaattcccgggcgttgacccgctgttagggccagaaatgcgctctaccggggaagtcatgggcgtgggccgcaccttcgctgaagcgtttgccaaagcgcagctgggcagcaactccaccatgaagaaacacggtcgtgcgctgctttccgtgcgcgaaggcgataaagaacgcgtggtggacctggcggcaaaactgctgaaacagggcttcgagctggatgcgacccacggcacggcgattgtgctgggcgaagcaggtatcaacccgcgtctggtaaacaaggtgcatgaaggccgtccgcacattcaggaccgtatcaagaatggcgaatatacctacatcatcaacaccacctcaggccgtcgtgcgattgaagactcccgcgtgattcgtcgcagtgcgctgcaatataaagtgcattacgacaccaccctgaacggcggctttgccaccgcgatggcgctgaatgccgatgcgactgaaaaagtaatttcggtgcaggaaatgcacgcacagatcaaataatagcgtgtcatggcagatatttttcatccgctaatttgatcgaataactaatacggttctctgatgaggaccgtttttttttgcccattaagtaaatcttttggggaatcgatatttttgatgacataagcaggatttagctcacacttatcgacggtgaagttgcatactatcgatatatccacaattttaatatggccttgtttaattgcttcaaaacgagtcatagccagacttttaatttgtgaaactggagttcgtatgtgtgaaggatatgttgaaaaaccactctacttgttaatcgccgaatggatgatggctgaaaatcggtgggtgatagcaagagagatctctattcatttcgatattgaacacagcaaggcggttaataccctgacttatattctgtcggaagtcacagaaataagctgcgaagttaagatgatccctaataagctggaagggcggggatgccagtgtcagcgactggttaaagtggtcgatatcgatgagcaaatttacgcgcgcctgcgcaataacagtcgggaaaaattagtcggtgtaagaaagacgccgcgtattcctgccgttccgctcacggaacttaaccgcgagcagaagtggcagatgatgttgtcaaagagtatgcgtcgttaattttatctcgttgataccgggcgtcctgcttgccagatgcgatgttgtagcatcttatccagcaaccaggtcgcatccggcaagatcaccgtttaggcgtcacatccgtcgtcccctgcaaacgggggcgattttcctccatttgcctcagtggctgcgtttcatgtaacgatacatgacagcgcccgacaagatcctgatactctttggtattcaaccgtttccagtgtaactcgtcgtcactaacattgcgtacagcgcgggctggcgtacccatcaacaactggcgtttctcgccgcgaaagcccgctttgacaaagctcatggcggcaacaatgctctcttcgccaatgaccgcgccatccataatcacgctgttcatcccgaccaatgcatcgcgaccaatcaaacaaccatgcaggatcgctccgtgcccgatatggccgttttccccaacgatagtgtcagtgtcgcagtagccatgcataatgcagccatcctgaatattggctcccgcttgcacgatcaaccgcccgtagtcaccacgcagtgaggcgagtgggccgatgtagacaccggctcccacaatcacatcgccaatcaagacggcactgggatggacaaacgccgtcgggtgaaccaccggaattaacccctcaaaggcgtaatagctcacggttgttaacgtcctttccacaccggatcgcgcttctcggcaaacgccagcggcccttcaatggcatcttccgaatgcagaaccgatggatagtgtttcaacacgccgctgcgaatatagcgatacgcttcttctaccggcatttcgctggtggtgcggtagatctctttcagcgccgcaatcgccagcggggcgctgttaaccagctgctgagccagttcgcgggcgttatccatcagttccgcctggctaaccacgcggttgactatcccccaacgcagcgcctcttctgcgcccattcgtctgccggtcatcaccatttcattgacgatggcaggcggcaggatcttcggcagacgcagcacaccgccgctgtcaggaacgatgcccagtttggcttccggcagggcgaagctggcgttatcggcacaaacaataaaatctgccgccagcgccagttcaaagccgccgccaaaggcatagccgttcacagctgcgataaccggtttgtcgagattgaaaatttcggttaatcccgcaaaaccacccggaccaaagtcagcatccggtgcttcgccttctgctgccgcttttaaatcccagcccgcggaaaagaacttctctccggcaccggtaataatggcgacacgtaattgcggatcgtcacggaaatttagaaatacttcgcccatttcaaagctggtttttgcatcaatagcattcgcttttggacgatcaagggtaatttccagaattgatccattgcgggtcagatgtaatgattcactcattccttttctccatttttgctttttcagggacgacaacatccctgcaaaaaatgcatattgttttagagtgtgattattagctggcagggtagttccctgctgtttcatttatttcagattctttctaattattttccccgagcaattacgtggcagatcttttctgatctccagataagagggcactttaaatttcgccatattttgttcgcagaagcggaaaaattcctcttcgctcaatgtttcaccttcattcagcaccacaaatgctttgatggcttcatcgcgaatcgaatctttaatacccacaaccacgatgtcctgaattttcgggtgcgcggcgataatattttccagctccacgcaggagacattctcgccgccacgtttaatcatattgcagcggcgatcgacgaaataaaaaaagtcctcttcgtcgcggtatccggtatcgccggtatgcagccagccatcggcttccagcactttcgcagtggcttgtgggttgagaaagtactctttgaagatggttttcccaggtatgcctttaatgcagatttcaccgatctcaccagccgggagcgggcgattgtgatcgtcgcggatctccgcttcgtagcaaaaccccacccgaccaatcgacggccagcgtcgtttatcgccaggacgatcgccgataatgcccacaatggtttccgtcatcccataagacgtcagcaagcgaacgccgaagcgttcacaaaacgcatctttttcctgctccgacaagttgagataaaacatcacttcccgcaggcggtgttgctgatcgttcgctgaaggcggctgtaccatcaacgtacggatcatcatcggaatacattcggtaacggtggcgcggtacttctgtacctgtccccagaaggcgcgggcgctgtatttctcgaccagcacaaaggtggccccggcagaaaacgccgccatcgccgcagtacactggcaatcgatatgaaacgcaggcattaccgtcaggtagacgtcatcgtcacgcagtgcacactgccaggcggagtaatatccagcgaagcgcaggttgtaatgggtaatcaccacacctttcggtcgggaggtggtgccggaggtgaagagaatttccgccgtatcgtcagtcgatagcggcggtgcatagcacaaggtggcaggttgttgatttttcagttgagtaaacgaactcacgccatcatcagcgggaagtgccacatctgtcaggcaaatgtgccgcaattgagtggcatcttcctgctgaatctgttgatacataggatagaattgcgcactggtcaccagcaggcacgcctggctattttgcaggatccacgcgctttcctcgcacaacaggcgggcgttaatcggcaccataatcgcgccaatttttgccagcccgaaccagcaaaagataaattccgggcagttgtcgagatgtagtgcaaccttgtcgcctttgcgaatccccagcgtataaaacaggtttgccgtgcggttaatctcctgatttaactcaagataactataccggttaacgactccgccgctggattcacaaatcagcgccgttttatgaccgtaaacgtccgcaagatcgtcccacatttgacgtagatgttgtccgccaatgatatccattgcacctctatccatttttgttcgtttgttattgggcgggcgctagtcaggcaagccgactgacgccacgcgtttagtcctcaactttggccagacctttgctgaccaactcctgaatgtcgttttcgctgtagccgatatttttcaaaatggcagccgtgtccatgccatgtgagggcattccgcgccagatttgtccggggttatttttgaatttcggcatgatgttcggccctttgcaggtgcgaccatccatcgtttgccactgagtgattgattcgcgagccacatactgtggattgctttccagttccggtacggtcagcactttggcgcaggcgatattcagttcagcaaagcgttcttttacttccgcgatggtatgtgtcgccagccaggcatcgagtttctcttcaaccagtgggccgtaagggcattcgatacggtggataagctgagtgccttccgggatttctggcgtgccaagcagatgtgcgaggccaatatctttaaagcactcttcaatttgggtaatgcccaccagttccatcacgatgtagccgtcggcacatttatacagaccgcaaccggcgtagtagggatctttacctttgctcatgcgcgggcacatttcgccgccgttgaagtaatccatcatgaagtactggcccatacgcagcatcacttcatacatggcgatgtcgatactttcgcctttaccggtttcacgcactttatgcagtgctgccagcgccgccgtggtggcggtcaggccagaaaagtaatcggcggtatacgggaaggcaggcattggctggtcaacatcaccgttctgaatcaggtaaccactaaaggcctgggcgatagtgttataggccggaagattggtgtactcctcggtgccgtactgaccaaaaccggacaggtgagcgataaccagtttcgggttgtgctgccacagtacttcatcggtaatgccacgacgggcaaaggccggacctttactggcttcgatgaagatatcggtggtttccattaatttcagaaacgcttcgcggccttcatctttgaaaatatttaacgacagcgcgtgcaaattgcggcgggagagttgcgggtagttcggttgaacgcgaatggtgtcggcccaggcgacgttctcgatccagataacttccgcgccccattctgcgaacatttgcccggcaaacggtccggcgatttcgataccggagaagacaacgcgcaatccggccaacggcccgaatttcggcatgggtagatgatccattatttgctcctgaaaaatttatgtagcgcatgactgccggatgcggcgtaaacgctttatccggcctacattcgtgctcccgtaggcctgataagacgcatcagcgtcgcatcaggcagcgcacggacttagcggtattgcttcagcaccgcacgacccagcgtcaggatctgcatttcgtcagatcccccggagacgcggtctacacgcagatcacgccagaagcggctgatgcggtggttgcccgcaatcccgacaccgcccagcacctgcattgcgctatccacaacttcaaatgccgcattggcgcagaagtatttgcacatcgctgcatcgccagaggtgatggtgccgttgtctgctttccacgctgcttcatacagcatgtttttcatggagtttaatttgatcgccatgtgggcgaatttttcctgaatcaactggaaacgaccaatagcctcgccaaactgcacgcgctgattggcgtagcgcgccgcatcttcaaaggcgcacatcgccgtaccgtagttggtgagggctaccaggaaacgttcatggtcgaactcttctttgacgcggttaaagccgttaccttcccgaccgaacatgtctttctcgtccagttccacgtcgtcaaaggtgatttcacagcagctatccatacgcagaccgagcttttcaagtttggtcactttgatgcccggtttgctcatatcaacaaaccattcggtgtagacaggtttgtccggagaagccccgtcgcgcgccatcaccacgatgtacggggtgtaggcgctgctggtaataaaacacttactaccattaagataaatcttaccatttctacgggtataagtcgttttcaggctacccacgtcggagcccgcgcccggttcggtaatcgctgagttccacatctgcttaccggtgccgcggaaagccataattttgtcgatctgctcttgtgtgccttcgcgcaggaaggtgttgaacccgcccggcaactggtacagcacataggttggtgcccccagacgtcccagctccatccacacggcggcgagagtaacaaaccccgcgtccagaccaccgtgctcttcagggatcagcagactgtcgatacccatatccgccagtgctttgacaaaacgttccgggtagacgctgtcacggtcgcactcggcaaaataggcctcccagttttcgctggccatcagttcgcggataccggcgacaaacagttcctgctcatcatttaaattaaaatccatctttcaacctcttgatattttgggggttaattaatctttccagttctgtttcgcgtctttaataaaggagagcgtcaccataatgttgacgaagaacagcgggcatcctccggcgataatggcggtttgaatcggtttcaggccgccgagcgccagcagaacaataccgataatgccaaccagaattgaccaaccgatacgcaccagcagaggtggttcttcaccatcgcgtacttcgcggcaagtggacatcgccagggtataagagcaggcgttaaccagcgtaacggtggcaataaagcagaggatgaagaagccccacatggtggcggtgctgagtggcagagcggcccaggtttcaatgatggcgcgcgccacaccgtactgttcgatcagatttggaatgttgatgatgtttttatctatcaacagcagagtgttactaccgagtacagtccacaggatccaggttgacgctgtcagccccagcaccatgccgaagcacagttcacgcacagtacgaccacgggagatgcgggcgaggaagatactcatctggatagcataaatcacccaccatgcccagtagaacacggtccagccctgcgggaagccgcctttagcgatgggatcggtatagaacaacatgcgcggcagatacatcagcaacatccccaccgaatcggtgaagtagttcatgatgaagctggcaccgctgacaatgaacacccaacccagcatcaggaagctcaggtaactacgcacgtcactggcgatacgtacccctttttgcagaccgcaagcgacgcaaatggcgttgaggataatccagcaggtaatgatgatagcgtccagttgcagggtatgcggaatgccaaacaaccattgcatacactcggtcaccagcggcgtggcaaggcccagactggtacccatcgcgaagatcaaggcgacgagatagaagttgtcgacgatagtgccgaacaaccctttggcgtgtttttcacctaccagcggcaccagtgtcgagctggggcgaatcacttccattttgcggacaaagaagaagtaagcgaaggcgactgaaaggaagctgtaagtggcccacggcagaggtccccagtggaacaagctgtaagccagccccaactctttcgcccctgtcgagttcggttctaagccaaacggcggggtggagatgtagtagtagatctcaatcgatccccagaacagtacggcagcagacgtacaggaggcgaacatcataaagatccaactggcggtgctaaattctggcggttcgttacctaaacgctttttggcatacgggccaaacaccagccagaaccaaccgaaaagcatcaccaccatataccattcaaatgcccatccccatacattggtgacgtaactgaatacagcattaataacgacattcgctgcatccagatctctgactgtaagccaacaaagtatgccgacgattattaacggcggaaagaaaaccttcggttctattcccgtttttctcttttcattcttcatgagttaattccactgtgaaaacgaatatttattttgcgttcccgtttgttttatttttgttaacatttaatataattattattaacctcgtggacgcgttaatggctaactcataatgggtattcaataagctgtattctgtgattggtatcacatttttgtttcgggtgaatagagggcgttttttcgttaattttgattaataatcagtttgttatgctctgttgtgagtaaaaaataacatctgactttcaatattggtgatccataaaacaatattgaaaatttctttttgctacgccgtgttttcaatattggtgaggaacttaacaatattgaaagttggatttatctgcgtgtgacattttcaatattggtgattaaagttttatttcaaaattaaagggcgtgatatctgtaattaacaccaccgatatgaacgacgtttccttcatgatttctggagatgcaatgaagattattacttgctataagtgcgtgcctgatgaacaggatattgcggtcaataatgctgatggttcattagacttcagcaaagccgatgccaaaataagccaatacgatctcaacgctattgaagcggcttgccagctaaagcaacaggcagcagaggcgcaggtgacagccttaagtgtgggcggtaaagccctgaccaacgccaaagggcgtaaagatgtgctatcgcgcggcccggatgaactgattgtggtgattgatgaccagttcgagcaggcactgccgcaacaaacggcgagcgcactggctgcagccgcccagaaagcaggctttgatctgatcctctgtggcgatggttcttccgacctttatgcccagcaggttggtctgctggtgggcgaaatcctcaatattccggcagttaacggcgtcagcaaaattatctccctgacggcagataccctcaccgttgagcgcgaactggaagatgaaaccgaaaccttaagcattccgctgcctgcggttgttgctgtttccactgatatcaactccccacaaattccttcgatgaaagccattctcggcgcggcgaaaaagcccgtccaggtatggtcggcggcggatattggttttaacgcagaggcagcctggtcagaacaacaggttgccgcgccgaaacagcgcgaacgtcagcgcatcgtgattgaaggcgacggcgaagaacagatcgccgcatttgctgaaaatcttcgcaaagtcatttaattacaggggatgctatgaacacgttttctcaagtctgggtattcagcgataccccttctcgtctgccggaactgatgaacggtgcgcaggctttagctaatcaaatcaacacctttgtcctcaatgatgccgacggcgcacaggcaatccagctcggcgctaatcatgtctggaaattaaacggcaaaccggacgatcggatgatcgaagattacgccggtgtcatggctgacactattcgccagcacggcgcagacggcctggtgctgctgccaaacacccgtcgcggcaaattactggcggcaaaactgggttatcgccttaaagcggcggtgtctaacgatgccagcaccgtcagcgtacaggacggtaaagcgacagtgaaacacatggtttacggtggtctggcgattggcgaagaacgcattgccacgccgtatgcggtactgaccatcagcagcggcacgttcgatgcggctcagccagacgcgtcacgcactggcgaaacgcacaccgtggagtggcaggctccggctgtggcgattacccgcacggcaacccaggcgcgccagagcaacagcgtcgatctcgacaaagcccgtctggtggtcagcgtcggtcgcggtattggcagcaaagagaacattgcgctggcagaacagctttgcaaggcgataggtgcggagttggcctgttctcgtccggtggcggaaaacgaaaaatggatggagcacgaacgctatgtcggtatctccaacctgatgctgaaacctgaactgtacctggcggtggggatctccgggcagatccagcacatggttggcgctaacgcgtcgcaaaccattttcgccatcaataaagataaaaatgcgccgatcttccagtacgcggattacggcattgttggcgacgccgtgaagatccttccggcgctgaccgcagctttagcgcgttgatccactctggcagggctgcattttggccctgccgctgacagggagctcttatgtccgaagatatctttgacgccatcatcgtcggtgcagggcttgccggttcggttgccgcactggtgctcgcccgcgaaggtgcgcaagtgttagttatcgagcgtggcaattccgcaggtgccaagaacgtcaccggcgggcgtctctatgcccacagtctggaacacattattcctggtttcgccgactccgcccccgtagaacgcctgatcacccatgaaaaactcgcgtttatgacggaaaagtcagcgatgactatggactactgcaatggtgacgaaacctcgccatcccagcgttcttactccgttttgcgcagtaaatttgatgcctggctgatggagcaggccgaagaagcgggcgcgcagttaattaccgggatccgcgtcgataacctcgtacagcgcgatggcaaagtcgtcggtgtagaagccgatggcgatgtgattgaagcgaaaacggtgatccttgctgatggggtgaactccatccttgccgaaaaattggggatggcaaaacgcgtcaaaccgacggatgtggcggttggcgtgaaggaactgatcgagttaccgaagtcggttattgaagaccgttttcagttgcagggtaatcagggggcggcttgcctgtttgcgggatcacccaccgatggcctgatgggcggcggcttcctttataccaatgaaaacaccctgtcgctggggctggtttgtggtttgcatcatctgcatgacgcgaaaaaatcggtgccgcaaatgctggaagatttcaaacagcatccggccgttgcaccgctgatcgcgggcggcaagctggtggaatattccgctcacgtagtgccggaagcaggcatcaacatgctgccggagttggttggtgacggcgtattgattgccggtgatgccgccggaatgtgtatgaacctcggttttaccattcgcggtatggatctggcgattgccgccggggaagccgcagcaaaaaccgtgctttcagcgatgaaaagcgacgatttcagtaagcaaaaactggcggaatatcgtcagcatcttgagagtggtccgctgcgcgatatgcgtatgtaccagaaactaccggcgttccttgataacccacgcatgtttagcggctacccggagctggcggtgggtgtggcgcgtgacctgttcaccattgatggcagcgcgccggaactgatgcgcaagaaaatcctccgccacggcaagaaagtgggcttcatcaatctaatcaaggatggcatgaaaggagtgaccgttttatgacttctcccgtcaatgtggacgtcaaactgggcgtcaataaattcaatgtcgatgaagagcatccgcacattgttgtgaaggccgatgctgataaacaggcgctggagctgctggtgaaagcgtgccccgcaggtctgtacaagaagcaggatgacggcagtgtgcgcttcgattacgccggatgtctggagtgcggcacctgtcgcattctggggctggggtcggcgctggaacagtgggaatacccgcgcggcacctttggtgtggagttccgttacggctgatgttggtttgatacgtaacgccgcactgactctcattgcaaaaaacaggaataaccatgcaaccgtccagaaactttgacgatctcaaattctcctctattcaccgccgcattttgctgtggggaagcggtggtccgtttctggatggttatgtactggtaatgattggcgtggcgctggagcaactgacgccggcgctgaaactggacgctgactggattggcttgctgggcgcgggaacgctcgccgggctgttcgttggcacatcgctgtttggttatatttccgataaagtcggacggcgcaaaatgttcctcattgatatcatcgccatcggcgtgatatcggtggcgacgatgtttgtttcatcccccgtcgaactgttggtgatgcgggtacttatcggcattgtcatcggtgcagattatcccatcgccacctcaatgatcaccgagttctccagtacccgtcagcgggcgttttccatcagctttattgccgcgatgtggtatgtcggcgcgacctgtgccgatctggtcggctactggctttatgatgtggaaggcggctggcgctggatgctgggtagcgcggcgatcccctgtttgttgattttgattggtcgattcgaactgcctgaatctccccgctggttattacgcaaagggcgagtaaaagagtgcgaagagatgatgatcaaactgtttggcgaaccggtggctttcgatgaagagcagccgcagcaaacccgttttcgcgatctgtttaatcgccgccattttccttttgttctgtttgttgccgccatctggacctgccaggtgatcccaatgttcgccatttacacctttggcccgcaaatcgttggtttgttgggattgggggttggcaaaaacgcggcactagggaatgtggtgattagcctgttctttatgctcggctgtattccgccgatgctgtggttaaacactgccggacggcgtccattgttgattggcagctttgccatgatgacgctggcgctggcggttttggggctaatcccggatatggggatctggctggtagtgatggcctttgcggtgtatgcctttttctctggcgggccgggtaatttgcagtggctctatcctaatgaactcttcccgacagatatccgcgcctctgccgtgggcgtgattatgtccttaagtcgtattggcaccattgtttcgacctgggcactaccgatctttatcaataattacggtatcagtaacacgatgctaatgggggcgggtatctcgctgtttggcttgttgatttccgtagcgtttgccccggagactcgagggatgtcactggcgcagaccagcaatatgacgatccgcgggcagagaatggggtaaattgttcagatttctctcttttctgaatcaatattattgactataagccgcgtgaatatatgactacactttgtgggaaaacaaaggcgtaatcacgcgggctacctatgattcttataatttatgcgcatccgtatccgcatcattcccatgcgaataaacggatgcttgaacaggcaaggacgctggaaggcgtcgaaattcgctctctttatcaactctatcctgacttcaatatcgatattgccgccgagcaggaggcgctgtctcgcgccgatctgatcgtctggcagcatccgatgcagtggtacagcattcctccgctcctcaaactttggatcgataaagttttctcccacggctgggcttacggtcatggcggcacggcgctgcatggcaaacatttgctgtgggcggtgacgaccggcggcggggaaagccattttgaaattggtgcgcatccgggctttgatgtgctgtcgcagccgctacaggcgacggcaatctactgcgggctgaactggctgccaccgtttgccatgcactgcacctttatttgtgacgacgaaaccctcgaagggcaggcgcgtcactataagcaacgtctgctggaatggcaggaggcccatcatggatagccatacgctgattcaggcgctgatttatctcggttcggcagcgctgattgtacccattgcggtacgtcttggtctgggatcggtacttggctacctgatcgccggctgcattattggcccgtgggggctgcgactggtgaccgatgccgaatctattctgcactttgccgagattggggtggtgctgatgctgtttattatcggcctcgaactcgatccacaaaggctgtggaagctgcgtgcggcagtgttcggctgtggcgcattgcagatggtgatttgcggcggcctgctggggctgttctgcatgttacttgggctgcgctggcaggtcgcggaattgatcggcatgacgctggcgctctcctctacggcgattgccatgcaggcgatgaatgaacgcaatctgatggtgacgcaaatgggtcgcagtgcctttgcggtgctgctgttccaggatatcgcggcgatcccgctggtggcgatgattccgctactggcaacgagcagtgcctcgacgacgatgggcgcatttgctctctcggcgttaaaagtggcgggtgcgctggtgctggtggtattgctggggcgctatgtcacgcgtccggcgctgcgttttgtagcccgctctggcttgcgggaagtgtttagtgccgtggcgttattcctcgtgtttggctttggtttgctgctggaagaggtcggcttgtcgatggcgatgggcgcgtttctggcgggcgtactgctggcaagctcggaataccgtcatgcgctggagagcgatatcgaaccatttaaaggtttgctgttggggctgtttttcatcggtgttggcatgtcgatagactttggcacgctgcttgaaaacccattgcgcattgtcattttgctgctcggtttcctcatcatcaaaatcgccatgctgtggctgattgcccgaccgttgcaagtgccaaataaacagcgtcgttggtttgcggtgttgttagggcagggcagtgagtttgcctttgtggtatttggcgcggcgcagatggcgaatgtgctggagccggagtgggcgaaatcgctgaccctggcggtggcgctgtcgatggcagcaacgccgattctgctggtgatcctcaatcgccttgagcaatcttctactgaggaagcgcgtgaagccgatgagatcgacgaagaacagccgcgcgtgattatcgccggattcggtcgttttgggcagattaccggacgtttactgctctccagcggggtgaaaatggtggtactcgatcacgatccggaccatatcgaaaccttgcgtaaatttggtatgaaagtgttttatggcgatgccacgcggatggatttactggaatctgccggagcggcgaaagcggaagtgctgattaacgccatcgacgatccgcaaaccaacctgcaactgacagagatggtgaaagaacatttcccgcatttgcagattattgcccgcgcccgcgatgtcgaccactacattcgtttgcgtcaggcaggcgttgaaaagccggagcgtgaaaccttcgaaggtgcgctgaaaaccgggcgtctggcactggaaagtttaggtctggggccgtatgaagcgcgagaacgtgccgatgtgttccgccgctttaatattcagatggtggaagagatggcaatggttgagaacgacaccaaagcccgcgcggcggtctataaacgcaccagcgcgatgttaagtgagatcattaccgaggaccgcgaacatctgtcattaattcaacgacatggctggcagggaaccgaagaaggtaaacataccggcaacatggcggatgaaccggaaacgaaaccctcatcctaataaagagtgacgtaaatcacactttacagctaactgtttgtttttgtttcattgtaatgcggcgagtccagggagagagcgtggactcgccagcagaatataaaattttcctcaacatcatcctcgcaccagtcgacgacggtttacgctttacgtatagtggcgacaattttttttatcgggaaatctcaatgatcagtctgattgcggcgttagcggtagatcgcgttatcggcatggaaaacgccatgccgtggaacctgcctgccgatctcgcctggtttaaacgcaacaccttaaataaacccgtgattatgggccgccatacctgggaatcaatcggtcgtccgttgccaggacgcaaaaatattatcctcagcagtcaaccgggtacggacgatcgcgtaacgtgggtgaagtcggtggatgaagccatcgcggcgtgtggtgacgtaccagaaatcatggtgattggcggcggtcgcgtttatgaacagttcttgccaaaagcgcaaaaactgtatctgacgcatatcgacgcagaagtggaaggcgacacccatttcccggattacgagccggatgactgggaatcggtattcagcgaattccacgatgctgatgcgcagaactctcacagctattgctttgagattctggagcggcggtaattttgtatagaatttacggctagcgccggatgcgacgccggtcgcgtcttatccggccttcctatatcaggctgtgtttaagacgccgccgcttcgcccaaatccttatgccggttcgacggctggacaaaatactgtttatcttcccagcgcaggcaggttaatgtaccaccccagcagcagccggtatccagcgcgtatataccttccggcgtacctttgccctccagcgatgcccagtgaccaaaggcgatgctgtattcttcagcgacagggccaggaatcgcaaaccacggtttcagtggggcaggggcctcttccggcgattctttgctgtacatatccagttgaccgttcgggaagcaaaaacgcatacgggtaaaagcgttggtgataaaacgcagtcttcccagcccccgcaattccggtgaccagttatttggcatatcgccgtacatggcatcaagaaagaagggataggagtcactcgatagcaccgcttctacatcgcgtgcgcactctttggcggtctgcagatcccactgcggcgtgatccctgcgtgggccatcaccagctttttctcttcgtcgatttgcagcagaggctggcgccgcagccagttaagcagctcgtcggcatccggcgcttccagcagcggtgtcaggcgatctttcggtttattgcggctgatcccggcaaataccgccagcagatgcagatcgtgattgcccagcaccagacgtacgctgtcgcctaaggatttcacatagcgcagaacatccagcgaacccggcccgcgcgcgaccagatcgcccgtcagccagagggtatctttcccaggggtaaattctactttatgcagcaatgcgatcagttcatcgtaacaaccatgaacgtcgccaataaggtatgtcgccatattcttttaatgaatgagtgtgggaacggcgagtcggaatacgggaatgtcgatgctgaaagggacgccattttcatcgatcatttcgtagtgaccctgcatggtgcccagcggggtttcaatgattgcaccgctggtgtactggtactcttcgccaggcgcgataagtggctggacgccaaccactccttcgccctggacttcggtttcacggccattgccattggtgatcagccagtaacgccccaacaactgcactggcgctcgccccagattgcgtatggttacggtataagcaaaaacgtaacgttcattatcaggtgaagattgagcctcaatgtagacgctttgaacctgaatacacactcggggcgaattgatcatcgttaactctcctgcaaaggcgcgttctccgccagatagttcgccatctggcaatattgcgcgacagagatattttccgctcgcatcgccgggtcgatccccattcccgttaacacctcgacgctaaacaggttgccgaggctgttacgaatggttttacgacgctggttaaaggcttcggtggtgatgcggctcaacacacgaacatctttaaccgggtgaggcatcgttgcatgaggaaccaggcgcacgacggcggaatccactttgggtggtggtgtaaaggctgacggcggtacttccagtaccgggatcacattgcaatagtattgcgccatgacgcttaatcgaccatacgctttgctgttcggtcctgcaaccagacgattcaccacctctttttgcaacataaagtgcatgtcggcaatggcatcagtatagctaaacagatggaacatcaacggcgtggagatgttataaggcaggttgccgaaaacacgcagcggctgacccattttctcggccagttcaccaaagttaaaggtcatcgcatcctgctgataaatcgtcagtttcgggcctaagaatggatgcgtttgcagacgtgccgccagatcgcggtcaagttcgatgaccgtcagctggtccagacgttcgccgaccggttcggtcaatgccgccagaccggggccgatttcgaccatcgcctggcccttttgcgggttaatggcagacacaatactgtcgatcacgaactgatcgttgagaaagttttgcccgaagcgtttacgggctaagtggccctggtggactcgattattcattgggtgttaacaatcattttgatggcgagattaagcgccgtaataaaactgccgacatcggctttgccacgtcccgccagttcaagcgcggtgccgtggtccactgatgtgcgaataaagggcaggcccagcgtaatgttcacaccgcgcccgaagccctggtattttagcacgggaagaccctgatcgtggtacatcgccagcacggcgtcggcgttatcaagatatttcggctgaaacagggtatcggcaggcagcggcccgttgagtttcatcccctgcgcccgcagctcattgagcaccggaataatggtgtctatctcttccgtacccatatgaccgccttcgcccgcgtgcggattcagcccgcagaccagaatgcgcggttcggcaataccaaatttggtccgcaaatcgtgatgcaaaatagcaatcacttcgtgcaaaagtgcaggggtgatagcgtctgcgatatcgcgcagcggtaaatgcgtcgttgccagcgccacgcgaagttcttcggtcgccagcatcatcaccacctttttcgcctgcgaacgctcttcgaaaaactcggtatgaccggtaaaaggaatgccagcgtcgttaataacgcctttatgcaccggacctgtgatcagcgcggcaaattcgccgttcagacaaccatcgcacgctcgcgccagcgtttccaccacataatgcccattttcaaccgctaactgccccgcagtgacaggtgcacgtagcgcgacaggaagtagcgttaatgtgcccgcagtttgcggttgtgcaggggagttgggggaataagggcggagggtgagcggcaaaccgagcatcgctgcccggttggtaaggagagtggcatcggcacaaacaaccagttcgaccggccactcacgctgtgcaagctggacaactaagtccgggccaatcccggcgggctcgccgggagtgatcacaacacgttgggttttaaccattagttgctcaggattttaacgtaggcgctggcacgttgttcctgcatccagcttgctgcttcttccgagaacttacggttcatcagcatgcggtatgcacgatctttctgcgcagcgtcggttttatcgacattacgggtatccagcagttcgattaaatgccagccgaatgaagagtgaaccggtgcactcatttgacctttgttcaggcgagtcagggcgtcacggaaggccggatcgaaaatatctggtgtagcccagccgagatcgccgccctggttagcagagcctggatcctgagagaactctttcgctgcggcagcaaaagtcgttttaccactcttgatatcagcagcaatctgttccagtttcacacgggcctgttcgtcagtcatgatcggcgacggtttcagcagaatatggcgagcatgaacttcggtcaccgagatatttttgctttcgccgcgcaggtcgttaactttcagaatatggaagccaacgccggaacgaatcgggccaacaatgtcgcctttcttcgcggtgcttaatgcctgggcgaagatcccgggcaactcctgaatacggccccagcccatctggccgccgttcagcgcctgctggtcggcagaatgagcaatcgccagcttaccgaaatcagcgccgttacgcgcctgatcgacaatggcgcgcgcctggctttccgcttcgttcacctgatcagaggtcgggttttccggcagcgggatcaggatgtggctcaggttcagctcagtgctggcgtcgttttggttacccacctgctgcgccagggattcgacttcctgcggcaggatggtgatgcgacgacgcacctcgttgttacgcacttcagagataatcatctctttgcggatctggttacgataggtgttgtagttcagtccatcgtaagccagacggctgcgcatctgatccagcgtcatgttgttctgtttcgcgatgttagcaatcgcctgatccagctgctcatcggagattttcactcccattttctgccccatctgcaggatgatttgatccatgatcaaacgttccatgatttggtggcgcagcgtcgcgtcatcaggaagttgctgccttgcctgagcagcgttcagttttaccgactgcattaatccatcaacgtcgctttccagcacgacgccgttattgacgacggctgcgactttatcgactacctggggggcagcgaaactggtattcgcgatcatggcgataccgagaagcagcgttttccagttcttcatactttttccatttcaattaaccgcactgcggattacgtggtaaatcaacaaatcacaaagtgttttgatacggcagaatgttcgaacgcagcatctcttgcgtacccagaccgtagttggagctcaggccgcgaagttcgatgttaaagccgattgcgttgtcatataccgcatgttgtttatcgttatcccaaccgttcagcttccgctcgtaaccgacgcgaattgcatagcagcaggagctgtattgcacacctaacatagagtcggcttgcttgttagcattggtgtcgtagtagtaggccccaacaatggaccaacgatcggcaattggccagctggcgacagcacctacctgcgaaataccattcttatattgctcagcagtggaatagtacttaggcagcgtagcctgaatatattccgggctggcgtaacggtaattcagctgtaccagacggtcttcatcccgacggtattcaatgctggagttactggtcgctacgttatccagacgtgtatcgtactgaatcccgccacgcaatccccaacgctcggagatacgccagtaagtatcgcctgcccacaccagtgaacccgttttgtcgtcattctcccatgttatgttgtcatcgccagtgcgagactccgtgaaatagtagatttgaccaacggaaatattaaaacgttcaacggcagcatcatcatatatgcgagatgtgacaccggtcgtcacctggttagcggaggcaatacggtcaagaccgccgtaagtccggtcccggaacaggccagagtagtcagattgcagcagagacgagtcgtagttatagatgtcgctctgatcgcgatacggcacgtacaaatactgcgcgcgcggttccagcgtttgggtataacccggagccagcatttccatatcgcgttcaaagaccattttgccgtcaactttgaattgcggcattacgcggttaacggattcgtccagcttggtcgtgtttctggagttataccagtcaagattggtttgctgataatgggttgccagcaacttcgcttcggtattgatgctgccccagttattagagagcggcaaattgatggtcggttccaggtgaacacgggttgcttcaggcatgtcgtctctggtgttaacaaagtgcactgcctggccgtaaatacgcgtatcaaacggaccaacatcattctggtagtaattaacgtctaactgcggctctgccgagtagctactggtgttctgttcgctgaaaacctggaactgcttggttgaaacggtggcattgaagttttgcaccgcatagccaacgctgaatttttgcgttgcgtagccgtcagtactggaaccgtacttgttatcgaaatcattgaagtagctaggatcgctgaccttggtgtagtcgacgttgaaacgccacacctgatccatgaccccggagtggttccagtagaataaccaacgacgtgaactgtcatcgttcgggtgttcatcttcatagactttatctgaaggcagatagtccagttccatcaagccagcgcccgcctgggagaggtagcggaattcgttctcccacatgatgttgccacgacgatgcatataatgcggcgtgatggtggcatccatatttggcgcgatgttccagtaatatggcaggtagaactcaaagtagttggtggtggtgtacttggcgttcgggatcaagaaaccagagcgacgtttgtcacccaccggcaactgcaaataggggctataaaagatcggtaccggacccaccttaaagcgggcgttccagatctccgcaacttgttcttcgcggtcatgaataatttcgctacctaccacgctccaggtgtcagaacccggcagacaggaggtaaagctaccgttatccagaatggtatagcggttttcgccacgttgtttcatcaggtccgctttaccgcgaccctggcgacccaccatctggtaatcaccttcccagacgttggtatctttggtgttcagattcgcccagcctttcggccctttgaggatcacctggttatcgtcgtaatggacattaccgagcgcatcaacggtacgtaccggctccggttgtcctggtgcctctttttgatggagctgcacttcgtcggcctgcagacggctgttaccctgcatgatatccacgctgccagtaaacacggcgtcatccgggtagtcccctttcgcgtggtcagcattgatagtcacgggtaagtcattggtatcgccctgtaccagaggacggtcatagcttggcacgcccaacatgcactgtgaggcgaggtcggctgccagtccctgttgactataaagggcggtggcaatcatggtggccaggagagtggggatacgttttttcatacgttgattttattgttccatcatcggtaacgttgcgcgtgacaaacggtcagagactaacgtactcgtcatctctacgctagtgttaatcctgtccgaatagcgtcagtggtgttaggcacggcattgaatgacaggtatgataatgcaaattataggcgatgtcccacaattgaccgcagccggaaaacggtaaaagcacctttatattgtgggagatagccctgatatccgtgtgtcgatttggggaatatatgcagtattggggaaaaatcattggcgtggccgtggccttactgatgggcggcggcttttggggcgtagtgttaggcctgttaattggccatatgtttgataaagcccgtagccgtaaaatggcgtggttcgccaaccagcgtgagcgtcaggcgctgttttttgccaccacttttgaagtgatggggcatttaaccaaatccaaaggtcgcgtcacggaggctgatattcatatcgccagccagttgatggaccgaatgaatcttcatggcgcttcccgtactgcggcgcaaaatgcgttccgggtgggaaaatcagacaattacccgctgcgcgaaaagatgcgccagtttcgcagtgtctgctttggtcgttttgacttaattcgtatgtttctggagatccagattcaggcggcgtttgctgatggttcactgcacccgaatgaacgggcggtgctgtatgtcattgcagaagaattagggatctcccgcgctcagtttgaccagtttttgcgcatgatgcagggcggtgcacagtttggcggcggttatcagcagcaaactggcggtggtaactggcagcaagcgcagcgtggcccaacgctggaagatgcctgtaatgtgctgggcgtgaagccgacggatgatgcgaccaccatcaaacgtgcctaccgtaagctgatgagtgaacaccatcccgataagctggtggcgaaaggtttgccgcctgagatgatggagatggcgaagcagaaagcgcaggaaattcagcaggcatatgagctgataaagcagcagaaagggtttaaatgaccctgtaaatgatgctgagtaactgcccacgattaaaggtggccgccctggcggtcacttctttgagaaaaggcgtttactcagaatggtggacaggctcaatgcacggtttacgggaggggttctgtaggttttatcgcgttgaccctgcttaaggttgagagctttacgacgagcggaattatatttttacgtcttaaaaataaaaaacacatacctgaatgagcgatttttgaaagtatatttattcagaacgcgcatcatgagtttttaactcaatgcgaggctattaccatgaaagtatcagttccaggcatgccggttacacttttaaatatgagcaagaacgatatttataagatggtgagcggggacaagatggacgtgaagatgaatatctttcaacgcttgtgggagacgttacgccatctgttctggtcagataaacagactgaggcttataaacttctgttcaatttcgtgaataaccagactggcaacatcaacgcctcagaatactttactggggctatcaacgagaatgagagagaaaagtttatcaatagcctggaattattcaataaacttaaaacatgcgcaaaaaatccggatgagttggtcgcaaagggcaatatgcgctgggtcgcccagaccttcggggatatcgagttaagtgtcacttttttcattgaaaagaataagatatgtactcagacgttgcagctgcataagggccaaggtaacttgggcgttgatcttagaaaggcttaccttcccggcgttgacatgagggattgttaccttggtaaaaaaacaatgaaaggtagcaatgatatcctttatgagagacctgggtggaatgctaacctgggcgtgctaccccggacggtgctaccccggacggtgctaacccggacggtgctaacctggacggtgctaccgtgaacggtgctacctccttatatgatgaggtaattattattaataaaatcccccccaaaaaaattgatactaaaggagttgctactgaagaagttgctactaaaaaagtactgctgaacaaattactgacaacgcaattattgaatgagccagaataagctaaggttgaaggggctggaacgccccttcaaccttagcagtagcgtgggatgatttcacaattagaaagacctgcatgatgagctagagaagaggctagtgacgcaaggcgtcgtgcaggacacggatcaccgagatgggcatcgccaaccagactgctaattagcccatgaataacaatcagaaaggaccataacagacccgttaaaatgaaatataagagacggtcaacgggtgaagaaaaagttcaaaaattcgctgtggagcaggaagggaattaccgaatggaaagcgtagccacacgcaacaactgaaagcagtttggcagaaacaaaaaatccccggactcggggatttatgtacaagaggcagcccttaggatgagggtataaacgtacaggaaaggttaaaaatccgctggcgctttaaacgtcatactattgccatacgccggatgggtaatcgtcaacatctctgcatgtagcaacaaacgtggtgccatcgctctcgcttctggtgatgcataaaaacgatcgccgagaatcggatgacccagcgccagcatatgcacacgcaattgatgcgaacgcccggtaatcggttttaacaccactcttgccgtgttatccgccgcatactccaccacttcatattccgtctgcgcaggtttacccgtttcgtaacagactttctgtttcgggcggtttggccagtcgcaaatcagcggcagatccaccagaccttctgcgggggatggatgcccccagacgcgggccacatactgctttttcggctcgcgctcgcggaactggcgttttaactcccgctccgcggctttggtcagcgccactacaatcacgccgctggtagccatatccagacgatgcaccgattctgcctgcggataatcacgctgaatgcgcgtcatcacgctgtctttgtgctcttccagacgacccggcactgacaacaaaccgctcggcttgttgaccaccataatatggtcatcctgatacaggataaccaaccagggttcctgcggtggattgtagttttccatccccattttcggctccgttactgatgcgttacaacgatcaaacgcagggcatccagacgccaacctgcctgatccaggctttccattacctgctgacggttgctctcaatggcggtcagttcgtcgtcacgaatgttcgggttcactgcacgcagagcttccagacgagacagctcggcagacagtttttcgtcggcttcgttacgcgctgcatcaatcaatgcacgggcagatttctcgatctgcgcttcacccagttgaaggatagcgtgaacatcctgctgcacggcgttaaccagtttgctgccggtgtgacggttaaccgcgttaagctggcggttaaaggtttcaaactctacctgcgccgccaggttgttgccgtttttatccagcagcatacgtaccggcgtcggtggcaggaagcggttgagctgcaactgcttcggagcctgggcttcaaccacataaatcagttccaccaacagcgtacctaccggcaacgctttgttttttaacagtgaaatcgtgctgctaccggtatcgccagaaaggatcagatccagaccgttgcggatcagcggatgctcccaggtaataaactgtgcatcttcacgcgccagcgccacttcacgatcaaaggtgatggtgatgccatcttccgacaggccagggaagtccggcaccagcatatgatcggacggcgtcagcacgatcatgttgtcgccgcgatcgtcctgattgataccgataatatcgaacaggttcatggcgaaggcgatcaggttggtatcgtcatcctgctcttcaatgctttctgccagtgcctgggctttttcgccaccgttggagtggatttccagcaggcggtcacgaccctgttccagctgtgctttcagcgcttcatgttgctcgcggcagtttttgatcagatcgtcaaagccttcggtttgatccggtgaagccagatagttaatcagatcgttgtatacgctatcgtaaatagtgcgtccggtcgggcaggtgtgctcaaatgcatccagaccttcgtgataccagcgcaccagcaccgactgagcggttttctccagataaggcacatggatctgaatatcgtgcgcctggccgatacgatccagacgaccaatacgctgctccagtagatccgggttgaatggcaggtcaaacatcaccatgtggctggcgaactggaagttacgtccttcagaaccgatttctgagcacagcagtacctgtgcgccggtgtcttcttcggcaaaccaggcggcagcgcggtcacgttcgataatcgacataccttcgtggaacaccgcagcgcgaataccttcacgttcgcgcagtacctgctccagttgcagcgcagtggcagctttggcgcagatcaccagcactttctgagagcgatggctggtcaggtagcccatcagccactcaacgcgcggatcgaagttccaccaggtggcgttatcaccttcaaattcctgataaatacgctccgggtagagcatatcgcgagcacgatcttccgcacttttacgtgcgcccataatgccggagactttaatagccgtctgatactgcgtcggtagcggcagcttaatggtgtgcagctcgcgtttcgggaatcctttcacaccgttacgcgtgttacggaacagcacgcggctggtgccgtggcgatccatcagcatcgaaaccagctcctgacgggcgctctgggcatcttcgctgtcgctgtttgctgcctgcaacagcggctcgatatcctgctcgccgatcatctcgccgagcatgttcagttcgtcattgctcagtttgttacctgccagcagcatggcaacggcgtccgcaaccggacgataatttttctgctcttcaacgaactgcgcaaaatcgtggaaacggttcgggtccagcagacgcagacgggcgaagtggctttccatccccagctgttccggggtcgcggtcagcagcagaacgcccggcacgtgctctgccagttgttcaatggcctgatattcacggcttggcgcatcttcgctccacaccaggtgatgcgcttcatcgaccaccagcaggtcccattcggcttcacagagatgttccaggcgctgtttgctacgacgggcaaaatccagcgagcaaatcaccagctgttcggtgtcaaacgggttgtaagcatcgtgctgagcttcggcataacgctcatcatcaaatagcgcaaagcgcaggttgaaacggcgcagcatttctaccagccactgatgctgtaaggtttccgggacgataattagcacacgttcagcagcgccagagagcagttgctgatgcaggatcatcccggcttcaatggttttccctaaacccacttcgtcagccagcaggacgcgcggcgcgtggcggcgaccaacatcatgagcgatgttgagctgatgcgggatcaggctggtacgctgaccgcgcaggccgctgtacggcatacggaactgttcgctggaatatttacgcgcgcgataacgcagcgcaaagcggtccatacggtcaatctgcccggcaaacagacggtcctgcggtttgctgaacaccagtttgctatcaaggaaaacttcacgcagggctacgccggactcttcagtatccaggcgagtaccgatataggtcagcaagccattttcttcttttacttcttcgacttgcatctgccagccgtcatggctggtaatggtatcaccagggttgaacatcacgcgggtcacgggggaatcactgcgtgcgtacagacggttttcaccagtagatgggaaaagtaaagtgacagttcgcgcatccaccgcgacaacggttccaagtcccaattcgctttctgtatcgctgatccagcgttgaccaagtgtaaaaggcatatgtgttcggctctatatctttaattgcaggcaataaccacccgctaccgtgcttatgaggtagtggtgttattcaggtccaggaatggaaagggcgctatggtactggatggcaaagcattcgtcacgcatcaaaatggtatctggcgaactcttttttttgctcaaaatagcccaagttgcccggtcataagtgtagcaaaattatcctcaataaaagggagtattccctccgccacgggttgtagctggcgggtcagatagtgttcgtaatccagtggtgaacgttggtagtccagcggctccgggccgttggtggtccatacgtacttaatggtgccgcgattctgatattgcaaggggcgaccacgcttttggttttcttcatcggcaaggcgagcggcgcgtacatgaggcggcacattacgctgatactcgctcagcggacggcgaaggcgtttacggtaaaccagtcgcgcatccagttcacccgccatcagtttgtcgatggtttcgcgtacatattcctgatatggctcgttgcggaagatgcgcaggtatagctcctgctgaaactgctgggccagcggcgtccagtcggtgcgcacggtttccagccctttaaacaccatccgctgcttgtcgccctcctgaatcagtccggcataacgctttttactgccggtatcggctccgcgaatggttggcatcagaaaacggcagaaatgggtttcatactccagttctaatgcgctggtcagccgttgtttttgcagcgtttccgcccaccaggcgttaacgtgctgcaccagtgcacgaccgattttcgccgcttcttcttccgaatgtgcgcctttcagccagacaaacgttgagtcggtatcgccgtagataacgtcgtagccctgtgcttcaatcaacgctttggtttgccgcatgatctgatgaccacgcatggtgatcgacgatgccagccgcggatcgaagaagcggcaggcggtggtgccgagcacgccataaaaggcattcatgatgattttcagcgcctgcgacagcggtttgttaccctggcgtttggcttcatcgcgcccgtgccagatgttagtcacaatctccggcaggcaatgtttttctcgcgagaaccaggcatcgagaaaaccttcggtactgtgctctggatcaggctgcgccatgccttccaccagcccgacgggatcaatcagaaaggtgcggatgatcgacgggtacaggcttttatagtccagcaccagcactgaatcataaagccctggccgtgaatccatcacgtagccgccagggctggcgtgcggcggcacttcgccgagattaggcgcgacataaccagcgcgatgcattcgcggaaaatagagatgaccaaatgccgccaccgaaccgccgtgtcggtccaccggcaggccgttcaccgttgcccgttcgagtaaaaatggcatgatttcagttttgtggaagatctgcgtcaccagctcgcaatctttcaggttataagttgccagcgcaggtttatcttcggcgaaacggcggtcaatttcgtccattcgatcccacgggttatcgatagattttccttcgcctaatagctcctgagcgacagtttccagcgagaatgaagagaaattccagaacgcggatttcagcgcctcgataccgtcgataattagccgacctttagcctgggcaaaaaagacgccgtttttaaagccgtgctcgcgccactccagctcgctattatcgcgcccaagacgcagcggaagacggtaacgctcggcatgtttttgcagcattcgcagatcgaactgcaccacgttccaaccgatgatcacatcaggatcgtagttggcaaaccaggcgttgagtttttccagcaactgcgggcggctggcgacgtattccagttcgaaatcaagcgaggaggcgtcgccattctccggccccagcatataaacgatgcgctgcccgcagccttccaggccgatgcagtacagctcaccgtggcgggtggtttcaatatctatagaaacccacttgagcggcggacgatagtcgggatgcggtttcagacgggcattaacgatagtgccattgtgcatatcaccctcgacccacaccggtgaggtgataaaccgctccatcagatagcgttctggcggacgcacatcggcctcgtagacggtaacgccaccttcacgcaggcgcttttcgtaattcatcaattggcgatgggcgcgacagtaaaggccatacaccggctggcggtgaaaatcctttaacgccagcggtgtcaggcgaaagccttgttcaccctgcaaaatatgctgagcgcggggaacctgatcggcgggaataaacgccacggactcttgcggtgcaagcgtaacctgcaacggcccgttgtccgtcgccagccagaaggagacttctgtcccttgcggggtgtcccgccagtgtcgggttaagataaaacctgcctgcgccacgctgaaaatccatcaaaaaaccaggcttgagtatagcctggtttcgtttgattggctgtggttttatacagtcattactgcccgtaatatgccttcgcgccatgcttacgcagatagtgtttatccagcagcgtttgctgcatatccggtaactgcggcgctaactgacggcagaatatccccatataagcgacctcttccagcacgatggcgttatgcaccgcatcttcggcatttttgccccatgcaaacgggccgtgggaatggaccagaacgccgggcatttgcgctgcatcgataccctgtttttcaaaggtttctacgatgacgttaccggtttcccactcatattcgccgttgatttctgcgtcggtcattttgcgggtgcagggaatggtgccgtagaaatagtcggcgtgggtggtgccggttgctggaatcgactgacccgcctgcgcccagatggtggcgtggcgcgagtgcgtatgcacaatgccgccaatggaggggaatgcctgatagagcagccggtgagttggcgtgtcggaggagggctttttcgtaccttcaaccacttcaccggtttcgatgctaaccacgaccatatcgtcagcggtcatgacgctgtaatcgacgccggaaggtttgatcacaaagacgccgcgctcgcgatcaacggcgctgacgttgccccatgtgagcgtgaccaggttgtgttttggcagcgccaggttggcttctaatacctggcgtttgagatcttctaacatgttgactccttcgtgccggatgcgctttgcttatccggcctacaaaatcgcagcgtgtaggcctgataagacgcgccagcgtcgcatcaggcgttgaatgccggatgcgctttgcttatccggcctacaaaatcgcagcgcgtaggcctgataagacgcgccagcgtcgcatcaggcgttgaatgccggatgcgctttgcttatccggcctacaaaatcgcagcgtgtaggccagataagacgcgtcagcgtcgcatcaggcgttacataccggatgcggctacttagcgacgaaacccgtaatacacttcgttccagcgcagcgcgtctttaaacgctggcaggcgtgtgtcgttatcaatcaccgtgatttcaatgtcgtgcatctcggcgaattggcgcatatcgttgaggttcagtgcatggctgaagacggtatggtgcgcgccaccagcgaggatccacgcttcggaagcagttggcagatccggttgcgctttccacagcgcattcgccaccggcagtttcggcagggagtgcggtgttttcaccgtgtcgatgcagttaaccagtagacggtaacgatcgccgagatcaatcaagctggcgacaatcgctgggccggtttgggtattgaagatcaggcgggcaggatcgtccttaccaccaataccgagatgctgaacgtcgaggatcggtttctcttctgcggcgatcgacgggcagacttccagcatatgggagccgagcaccaggtcattacctttctcgaagtgataggtgtagtcctccataaaggaggtgccgccctgcagaccggttgacatcaccttcatgatgcgaagcagggcggcagttttccagtcgccttcgcccgcaaagccgtaaccctgctgcatcagacgctgtacggccagaccaggaagctgtttcagaccgtgcaaatcttcaaaggtggtggtgaacgcgtggaagccaccttgttccaggaaacgcttcatccccagctcaatacgcgccgcttccagcacgttctgtcgttttttgccgtggatttgtgtggcaggcgtcatggtgtagcagctttcgtactcatcgaccagcgcgttaacatcgccgtcgctgatggagttcaccacctgcaccagatcgccaaccgcccaggtattgacggagaaaccgaacttgatctgtgcggcaactttatcgccatcggtgaccgccacttcacgcatgttatcgccaaatcggcagactttcagatgacgggtatcctgtttagagaccgcctgacgcatccaggagccgatacgctcatgggcttgtttatcctgccagtgaccggtaaccacggcatgttgctgacgcatacgcgcgccaatgaagccgaactcgcgaccgccatgtgcagtctggttcaggttcataaagtccatatcgatactgtcccacggcagcgccgcgttgaactgggtgtggaattgcagcaacggtttgttgagcatggtcaggccgttgatccacattttggccggggagaaggtgtgcagccacaccaccagaccagcgcaacgatcgtcgtaattcgcgtcgcggcaaatagcggtgatttcatccggcgtggtgcccagcggtttcaacaccagtttgcagggcagtttcgcttccgtattcagcgcattaacgacgtgctcggcatgttgggtgacctgacgcagggtttccgggccatacagatgctggctgccaatgacaaaccacacttcataattatcaaaaatcgtcattatcgtgtccttatagagtcgcaacggcctgggcagcctgtgccggggcggaagttggaagatagtgttgttcggcgctcatcgcccattgctgatagcggcgataaagctgttcaaagcgttgtgcctgctcgctgcacggttgcagggttttctctaccgcactggccattttttgctgagctgatgggatgtctgcgtgcactttcgcggcgacggcagcaaaaatcgccgcaccgagcgcacagcactggtcagaggcaacaatttgcagcgggcgattcagcacgtcgcagcaggcctgcataatgacctggtttttccgcgcgatgccgcccagtgccatcacgttattaacggcgatcccctgatcggtaaagcactccatgattgcgcgtgcgccaaaggcggtggcagcaatcaaaccgccgaacagcagcggagcgtcggtagcgaggttaagatcggtaatcacccctttcaggcgttggttagcgttcggtgtgcggcggccgttaaaccagtcgagcaccaccggcaggtgatccagagacggatttttggcccatgcttcggtcagcgccggaagcagttgtttctggctggcgttgatttgcgttttcagttccggatgctgggcggcaagctgttccagcggccagccgagtacgcgaccaaaccaggcgtagatatcaccaaacgccgattggcctgcttccagaccgataaatccaggcaccacgctgccatcaacctgaccgcaaatacctttaactgcccgctcgccaacgctctgtttgtcggcaatcagaatgtcgcaggtggaagtaccgataacttttaccagtgcgttaggctgtgcgcctgcgccaactgcgcccatatggcagtcaaacgcgccgccggaaatcaccacgctttcaggcaggccgagacgctgcgcccattccgggcataaggtgcccaccggaatatcggcagtccaagtgtcagtgaacagcggggaaggcaaatggcgattgaggatcgggtccagctcatcaaagaaactggctggcggcaggccgccccagctttcgtgccacagagatttatgcccggcgctgcaacgtccgcgacgaatatcctgcgggcgggtggtaccggaaagcagagctggcacccagtcgcacagctcaatccacgatgcggcagattgcgccacggcgctgtcctggcgagtcacatgcaggatttttgcccagaaccattcgctggaataaataccaccaatgtagcgggagtagtcaacgttgcccggcgcgtggcacaaacgggtaatctcttccgcttcttcaaccgcagtgtggtctttccacaatacgaacatcgcgttcgggttttcggcaaactccgggcgcagcgccagcacgtttccgtcggcatcaatcggtgcgggcgtcgagccggtactgtcaacgccaatcccgaccacagctgcgcgctgttcgacgctaagctctgcaagcacggttttcagtgccgcttccattgactcaatgtagtcacgcggatgatgacggaactggttattcggggcatcacaaaattgccctttctgccaacggggataccactctacgctggtggcgatctcttcaccggtagcgcagtccaccgccaaagctcgcacagaatcactgccaaaatcgaggccaattgcaatcgccatcgtttcactccatccaaaaaaacgggtatggagaaacagtagagagttgcgataaaaagcgtcaggtaggatccgctaatcttatggataaaaatgctatggcatagcaaagtgtgacgccgtgcaaataatcaatgtggacttttctgccgtgattatagacacttttgttacgcgtttttgtcatggctttggtcccgctttgttacagaatgcttttaataagcggggttaccggttgggttagcgagaagagccagtaaaagacgcagtgacggcaatgtctgatgcaatatggacaattggtttcttctctgaatggtgggagtatgaaaagtatggctgaagcgcaaaatgatcccctgctgccgggatactcgtttaacgcccatctggtggcgggtttaacgccgattgaggccaacggttatctcgatttttttatcgaccgaccgctgggaatgaaaggttatattctcaatctcaccattcgcggtcagggggtggtgaaaaatcagggacgagaatttgtctgccgaccgggtgatattttgctgttcccgccaggagagattcatcactacggtcgtcatccggaggctcgcgaatggtatcaccagtgggtttactttcgtccgcgcgcctactggcatgaatggcttaactggccgtcaatatttgccaatacgggtttctttcgcccggatgaagcgcaccagccgcatttcagcgacctgtttgggcaaatcattaacgccgggcaaggggaagggcgctattcggagctgctggcgataaatctgcttgagcaattgttactgcggcgcatggaagcgattaacgagtcgctccatccaccgatggataatcgggtacgcgaggcttgtcagtacatcagcgatcacctggcagacagcaattttgatatcgccagcgtcgcacagcatgtttgcttgtcgccgtcgcgtctgtcacatcttttccgccagcagttagggattagcgtcttaagctggcgcgaggaccaacgcattagtcaggcgaagctgcttttgagcactacccggatgcctatcgccaccgtcggtcgcaatgttggttttgacgatcaactctatttctcgcgagtatttaaaaaatgcaccggggccagcccgagcgagtttcgtgccggttgtgaagaaaaagtgaatgatgtagccgtcaagttgtcataattggtaacgaatcagacaattgacggcttgacggagtagcatagggtttgcagaatccctgcttcgtccatttgacaggcacattatgcaagcattgctggaacactttattacccaatccaccgtgtattcattgatggcggtggtgttggtggcctttctggagtcgctggcgctggtcggtttgattctacccggtacggtgctgatggcggggctgggagcgctgattggcagcggcgagttaagtttctggcacgcctggctggcagggattattggctgcttgatgggcgactggatttctttctggctgggttggcgttttaaaaagccgttgcatcgctggtcatttctgaagaaaaacaaagcactacttgataaaactgaacatgcgttgcatcaacacagcatgttcaccattctggtcggtcgttttgttggcccgacgcgtccgctggtgccaatggtggcgggaatgctggatctgccggtggctaaatttattacgccgaatattatcggctgcctgctgtggccgccgttttacttcctgccagggattctggcgggcgcggcgatcgatattcctgccggaatgcagagcggtgagtttaaatggttgctgctggcaacagcggtgtttttgtgggttggtggctggctgtgctggcggttatggcgcagcggtaaagcgactgaccgtttgagtcattatttgtcccgcggtcgtttgttgtggctgacgccgttgatttctgccatcggcgtggtggcgctggtggtgttaattcgccacccgttgatgccggtgtatatcgatattttgcgtaaagtggttggggtttaggagatagtcttgtgcgggttgcctgatgcgacgcttgccgcgtcttatcaggcctacaaaacgcactacccgtaggtcggataaggcgttcacgccgcatccgacagtgcatactaacccgtaatccccaatagtgccgaagcactcgccttaccgctcaacaactcattggtcataccctgccaggcgatgcgcccgtcggcgactactaccgagcgcgtggcgatccgcgccgcatcttccacgctgtgcgacaccatcaatagcgtcattttttgctgctggcagctcgtgctcaccagcgtcaacatctcctgacgtaacgccggatcgagcgcagagaacggttcatcgagcaataaaatcggctgttcgcgtaccagacaacgcgctaacgccactcgctgtcgctgaccgccggaaagctcgcccggtaaccgcgccattaaattatcaatccccatctggcgggcgatagcgtgcattttcccctgctgtaccgcgttcagtttcaatcccggatttagccccagcccgatgttctgtgcgaccgtcaggtggctgaacaggttgttctcctgaaacagcatcgacaccggacggcgtgacggcggcatagttgtgtgatctacgccatcgatagtcagcgaaccgctggctggcgtcagaaaaccggcgatcaaattcagcagggtacttttacccgcgccgcttggcccgaggatcgccacctgctcgccgcgttccaccgttaagctaaaacgcatcggcaaatggtggtaaagccaggtgatatcagtcagttttaacatttcgccccggtagtttttcaatcacggtaaacagcagaaaacagagcagcagcagaattaacgcggtgaccgcaccgtcctggctgcgataggagccaatttgctggtagagataaaacggcagggtgcggaaatcatcgttaccgaacaacgccaccacgccaaaatcaccaatcgacagcacgcatgcaaaggccagcgcctgcgccagtggacgtttcagggcgcgcagctccaccacttttaagcgtgaccagccttcaatccccagcgactgacataacatgctgtagcgggcggtgatatcgcgcatcgggttttccagcactttcagcgcataagggatcgccattaacgcattggtgaaaatcacaatgccgtcagcagattgtggcaggccgatagtgttgttgagcagtaaaaagaagccggtagccagcacaatccccggcatggcgaggatcaacatgccgctcatctccagcacctgacccgccagcattttctgccgcgcccgcagttcgcgactgctccatagcagcatcatggtcagcactacgcacaatacacctgccgccagcgcaatacgcaacgaggtccacagcgcctgccacagcaccggttgtgccagcacttccggcaactggcgatttaccccatcgacgatcaccgccagtaacggtggcagcaacagcagcagcgccagcacaattaacaccgtgtcgcaaatgcggctatgcagacgatcgtccgggtcgcgccagccttgcagcagcgtggtgccgggcgcaatggccttactcaatcgctgactcaacagcaccagcccgaggcagcacaccatctggagcagcgccagcattgccgcgcgggcaggatcgtagtcgtaactcagcgcctgatagattgccagctcgatagtggtcgcctgcggaccgccccccagcgatagcacggtggcgaagctggcgaaacagagcataaagataagcgcagcaaccggcgggatttgtcgccgtaaccacggccattcgacgaagcggaaaaaatgccagctacgcatcccaagctgggcggcaagttgacgctgttcgccggggatgttttccagtgcctggagtaataagcggctcgccatcggcagattaaaaaacacatgggccagcaaaataccttgcaggccgtagggcgaaaaggtccactccagaccgagcgattggcagagtgttgccagccagccctggcgaccatagacgctaagaatgccgaaaacagcgaccaacaccgggaggatcaaggtcattgcacacagacgcaacagcgccagccgacccggaaagcgcctgcgatagagcgcgcgggcgaggaatatcgcgggtatgacagagagcagtgccgagagaaacgcctgccagaaggagaagcgcaccacatgccacagatagctgtcctgccagactgccacccagtcatcctgcggcgcgttccaccacagggcgagaaacgccgccagcgcaaccgctaccaccagcgtggtggcgcttacacctggaattaaccagccgggaattaacggctgacggcgcgttgccattcgctaatccatgcctgacgttgtgccgccacttcggctggcgtgaactccaacgtggttgcgggtttggtcaatttttcaaaaccggcaggcagcgtgacgtttgccaccggatacatccagttgccggttgggatcgcattctggaaagccggagaaaccataaactggaggaatttttgcgccagctccggctgcttgctggcagcggtgcgggcggcgacttccacttgcagatagtgaccttcgctgaagttcgcggcggcgtagttatctttcttctcttcgagaatgtgataagccggagaggtggtgtaactcagtaccagatcgctttcaccttttaaaaacaggccgtaggcttcgctccagcctttggtgaccgtgaccgttttcttcgccagtttctgccaggcttgtggggcgtcatcgccatagactttttgcatccatagcaacagacccagccccggtgtactggtgcgcggatcctgataaatcacccgccagttttgatcgctctcaaccagttctttcaggctttgtggcgggtttttcagtttgttcttgtcataaacgaaggcgaagtagccataatcaaacggtacgaaagtgtcattattccagccgccgggaacgttaacggcatccgctgccacaccgcttttggcaaacagtccggttttactggcggcgtctaacaggttgttatccagccccagcaccacatcggctttactgtttttgccttccatccgtagacggttgagaagcgaaacgccatcttccagcgccaccagtttcagttcgcaattacagtcggcttcaaaggcttttttaaccaccggaccaggcccccagtcggcggcgaaggaatcgtaggtataaacagtcagaacgggtttagcgaaaacgggcgctgtgcacagcaacagcaggggcagacatttttttaacactttgcacctcaaaaaagagtggcaaaggacttgagaaggagcctcaaatcccttcgccggcgttatccggatcaggttcgacgggtattttctcagcgcacgcgtacgcgtggcaccccgttgagaacggcgttagtgtagtgattttgttatcaaccagcaatcatggatccggtggcgcaaaccacgctgatttaaaatcgaaccagccgagggtattcatgcgcaggccgcgcatactgcgttgcccctgaatgatcagccagtggtgcaataatggcaccatcgctttgctggcgaccagttgctggcaccagttcgccagattcatctcgccattgcgccagcgagcagcgtcggcttgccagtcaatgggaatgcaatgttgtagcagtggcacttcgcataaatgtgcgaaaacagagaagtccagcggcagggtaaagttggcgctgtttagccagatatcactttcgatctctcctgtatgccactgatcgtagtcgatctctttgattttcagcgtgacctggtgacttgccagaatctgctgcatgatcccggcaatcacccgatgctcactgtgatcctgataaaaggttagggtgaggctttccaggccagccggtttttcgctctttatggtgcgggcatggtgccaacgggggagcagtccataagccgggaaccacagttgctggtactgttcctcagcgaaatagaccagattagttggagaaagcacatagcttacccagtccctgacttgctgattcgccccgcgatgggtgcggctgtcgaacagtaaatagtagcaaccttcctccaggcggctttcaatctctttttcctcgccctgtggaccttttagcatcagccctccggctggctcgtcggcaatttccggcagaacccagacgttaacttcgtcgattaatgcccggtaaccgaagaagtcatcgaatgcctgaattttcagttgattggtgctgttgcgaatcaccgcatacggaccggtgccgatgggatggctggcaaagttactgagggtttcccattcgcgcggcaggatcatcgccggaacttgccccagcagtaacggtaaccagcggtccggttgcgtgagatggatatccagcgtccagggcgtcggcgacacaatgtcagcaatatgcgaatagagcggcagcgtattgattcgttttaaagaggcgatcacatcgtccatttccagttcacgaccatggtgaaaatggactcctggacgcaaaaagaaacgccagtgaagcggtgaaatttgctgccagtggtgggcgatgtctgcttccagttccccattttcctcatttatgcgcgttagcgaactgaagatttgccgggcgatatgggtttcggaacggcgcaatgcgctgccaggtagcagattacgcaacggacgatagtagagcacgcgcaggatgtgccgcccctggcggaagctgcggcccagatgagaaaccagcatttgccgcacagtcgctttgtcgccaaccaactgcaccagttgatcgatacgatcctgctccagcaggtcttccgcccgctgttgctgaagcgccagcccggtatagaggaatgtcagacgcgagcgtttaccgcgcccgacttccgcttcccacgtcagccagccgcgatcctgcatggtgttgagcagggtgcgcatatgacgacgcgagcagctcaataacgctgccagttcgttgagcgttgtgtcctgcgatttaccctcgcagcattgccacaggcggatgaactgttgttgcagacgagcagatggcataaaaggggaactcctgtgcaaaagacagcaattttattttccctatattaagtcaataattcctaacgatgaagcaagggggtgccccatgcgtcagttttatcagcactattttaccgcgacagcgaagttgtgctggttgcgttggttaagcgtcccacaacgattaaccatgcttgaaggactgatgcagtgggatgaccgcaattctgaaagttgacttgcctgcatcatgtgtgactgagtattggtgtaaaatcacccgccagcagattatacctgctggttttttttattctcgccgcgctaaaaagggaacgtatgatctggataatgacgatggctcgccgtatgaacggtgtttacgcggcatttatgctggtcgcttttatgatgggggtggccggggcgctacaggctcctacattgagcttatttctgagtcgtgaggttggcgcgcaacctttctggatcggcctcttttatacggtgaatgctattgctgggatcggcgtaagcctctggttggcaaaacgttctgacagtcagggcgatcggcgaaaactgattatattttgctgtttgatggctatcggcaatgcgctattgtttgcatttaatcgtcattatctgacgcttatcacctgtggtgtgcttctggcatctctggccaatacggcaatgccacagttatttgctctggagcgggaatatgcggataactcggcgcgagaagtggtgatgtttagctcggtgatgcgtgcgcagctttctctggcatgggttatcggtccaccgttggcctttatgctggcgttgaattacggctttacggtgatgttttcgattgccgccgggatattcacactcagtctggtattgattgcatttatgcttccgtctgtggcgcgggtagaactgccgtcggaaaatgctttatcaatgcaaggtggctggcaggatagtaacgtacggatgttatttgtcgcctcgacgttaatgtggacctgcaacaccatgtacattattgatatgccgttgtggatcagtagcgagttaggattgccagacaaactggcgggtttcctgatggggacggcagctggactggaaataccagcaatgattctggctggctactatgtcaaacgttatggtaagcggcgaatgatggtcatagcagtggcggcaggagtactgttttacaccggattgattttctttaatagccgtatggcgttgatgacgctgcaactttttaacgctgtatttatcggcattgttgcgggtattgggatgctatggtttcaggatttaatgcctggaagagcgggggcagctaccaccttatttactaacagtatttctaccggggtaattctggctggcgttattcagggagcaattgcacaaagttgggggcactttgctgtctactgggtaattgcggttatttctgttgtcgcattatttttaaccgcaaaggttaaagacgtttgatgacgtggacgatagcggaaagcccggtcatttgaccgggcaaggggattaattcataaacgcaggttgttttgcttcataagcggcaatggcgtcgtcgtgctgcaaggtaagcccaatactgtccagaccgttcatcatgcagtggcggcggaaggcatcgatggtaaagcgataggttttctctcccgctttcacctcttgcgcttccagatccacgtcgaaatggatccccggattagctttcaccagcgcaaacagttcgtccacttctgcatcgcttaatttcaccggcagcagctggttgttaaagctattgccgtagaagatgtcagcaaaactcggcgcaatcaccactttaaaaccgtagtcggtcaatgcccagggcgcgtgctcacgcgaagagccacagccgaagttttctcgtgccagcaaaatggaagcgccctgatactgcgggaagttcagcacgaagtccgggtttggctgttggcctttttcatccagaaaacgccagtcgttaaacagatgcgcgccaaaacccgtacgggtcactttctgcaaaaactgtttcgggatgattgcatcggtatcgacattggcggcatccagcggaaccaccaggcctgtgtgtttgataaatttctctgccatggtgtgctccttatttaatgttgcgaatgtcggcgaaatgtccggtcacagcagcagcggcagccattgccgggctgaccagatgcgtgcgcccgccgcgcccctggcggccttcaaagttacggttgctggtggaggcacaacgttcgcccggattcagacggtcgttgttcatcgccagacacattgagcagccaggcaagcgccattcaaaaccggcttcaataaagattttatccagaccttccgcttccgcctgggcttttaccgggccagagccgggaaccaccagtgcctgcacgcctggcgcgacttttcgccctttggcgatctccgctgccgcgcgtaaatcttcaatgcgcgagttggtacaggaaccgataaacactttgtcgatagccacttcggtcagcggaatacccggtttcagccccatataggccagcgctttttctgccgacgcgcgttcaaccggatcggcaaacgaagccggatcgggaatattgtcgttcacggaaatcacctggccgggattggtgccccaggtgacctgcggtgaaatttcttctgcttgcagagtgacaacggtatcgaaagttgcgccttcgtcggtttgcagggttttccagtaggcaacggcgtcgtcgaaatctttgcctttcggcgcatgcagacggcctttgacatagttaaaggtggtttcgtccggtgcaaccagaccggcttttgcgcccatttcgattgccatattgcacagggtcatacgaccttccatgcttaaatcacggattgcttcgccgcaaaactccaccacatgcccggtgccgcctgcgctaccggttttaccgataattgccagcacgatatcttttgcggtaatgcccggcgcggctttgccctggacttcaattttcatggtttttgcgcggccctgtttcagggtttgcgttgccagtacgtgttcaacttcggaagtgccgataccaaaggccagtgcgccaaacgcgccgtgggtggcggtatgcgagtcgccgcagacaatggtcatccccggcaaggtgacgccctgttccggccccattacgtggacgatcccctgatacgggtgattcaggtcatacagttcgacgccaaattctttgcagtttttgatcagttcctgcatctggatacgcgccatttcaccgcaggcattaatgtctttggtctgggtagagacgttgtgatccatggtagcgaaggttttgcccggctgacgtaccgggcgaccgtgggcgcgcagaccatcgaacgcctgcggtgaggtcacttcatgcaccaggtggcggtcgatatataacagtggggtttcgttttcggcttcgtacacaacgtgagcgtcgaacaatttttcgtataacgtcttagccatgattacaccccttctgctacatagcgggcaatgatatcgcccatttcatcggtactaacggcggcagcgccacgggctaaatccccggtgcgaatgccttcttctaatgcgcggttaatggcgcgttcaatggcgcaagccgcatcatcggcatccaggctgtaacgcagcagcagtgccagcgaaaggatttgtgcaatcgggttggcgatgtttttgcctgcgatatctggtgccgagccgcccgccggttcatacagtccaaaaccttgctcgttcaggctggcggaaggcaacatccccatcgagccagtgatcattgcgcactcgtcagacagaatgtcgccaaacaggttggagcacagcagaacgtcaaactgtgatggatctttaatcagctgcatggtggcgttgtcgatgtacatatgcgccagttcgacatccgggtattccgtggcgatctcgttaacgatctcccgccataaaatagaggattgcagcacgttggctttatcgatcgacgtcactttgtggcgacgcttgcgagcagattcaaacgcgatgcgggcgatacgttcgatctcaaaacggtgatacacctcggtatcaaaggctttttcatattgtccgctaccttcgcggccttttggctgaccgaaatagatgccgccggtcagttcgcgcacacacaggatgtcgaagccgtttgcggcaatgtctgcacgcagcggacagaatgcttccagcccctgatacagttttgccgggcgcaggttgctgaataatttgaagtgcttacgcagaggcagcagcgcgccgcgttctggttgctggtctggtggtaaatgttcccacttcgggccgcctaccgagccaaacagcacggcatcggcttgctcacaaccttcaaccgtcgcaggcggcagtggttgcccgtggttatcaatggctgcgccgcctacatcgtaatggctggtggtgatgcgcatcgcaaagcggttgcgcacggcatccagcactttcagcgcctgggtcatcacttccggaccaataccgtcccccggcaatacggcaatatggtaattcttcgacatcacacggtttccttgttgttttcgttgtgttgagctttgcgttgcaactctttttcgacttctgcggcacgccagatattgttcagaacgtgcaccatggctttggcagatgactcgacaatatcggtagccaggccgacgccgtggaagcggcgaccgttgtagttagcgacgatatccacctgacccagcgcatctttaccgtggcctttggcggtcaggctgtatttcaccagttcgacgttatattcagtgatgcggttaattgcctgatagacggcatcgaccggaccgttaccgttggcggcttctgctttgacttcttcgccacaggccagtttgacggcggcggtggcgatatcgttagagccagactgcacgctgaagtaatccagacggaaatgctccggctcttcttgctgcttaccgatgaaggccagcgcctccagatcgtaatcaaacacctgaccttttttgtccgccagcttcaggaaagcatcgtacaaattgtctaaattatattcactttctttataccccatctcatccatgcgatgtttcaccgccgcacgccccgaacgagaggtcagattcagctggatttggttcagaccaatagattctggtgtcatgatttcgtagttttcgcggtttttcagcacgccatcctggtgtataccggaggagtgtgcgaatgcgccgctgccaacaatggctttgtttgccgggatcggcatattacaaatctggctaactaactggctggtgcgccatatctcctggtgattaatggcggtgtggacgttgagaatatccttacgaactttgatcgccatgatgacttcttccagggaacagtttccggcacgctcgccgatcccgttcattgcgccttccacctggcgtgcaccggcatgtaccgccgccagtgagtttccgaccgccaggcccaaatcgtcgtgggtatgtacggagataatggctttgtcgatgttaggcacgcgttcatacaggccgctgatgattccggcgaactcaaacggcatggtgtagcccacggtgtccggaatgttgatggtggtggcaccggcattaatcgccgcttcgaccactcgcgccagatcggcaatgggtgtacgcccggcatcttcgcaagaaaattcaacatcatcggtgtaattacgggcgcgtttcaccatatagatagcgcgttcgatcacctcgtccagcgtgctgcgcagcttggtggcgatgtgcattggcgaagtggcaataaaggtatgaatacggaaggcttcggcgactttcagggattcggccgccacgtcgatatctttttccacgcagcgagctaacgcacatacgcggctgtttttaacctggcgggcgatggtttgcaccgattcaaaatcgcccggcgaagagacggggaaaccgacttccatcacgtcaacacccatacgctcaagggccagcgcaatttgcagtttttctttcacactcaagcttgcctgtaacgcctgttcaccgtcgcgcaatgtggtatcgaaaataatgacttgctggctcatggtttgggtccttgtctcttttagagcgcctcgcttcgggcataaaaaaacccgcgcaatggcgcgggttttttgtttgactgcgtgctggcttaatgctggatgccgctcactcgtctaccgcgcaaagaagatgcgtttagtagtagtagaccgataaagcgaacgatgtgagtcattaaatcagctccagatgaatgcgatatgcttttagagttactggatacaaaaacggatgtcaaccctgacgcaataaaaacgtcccgccagcgtgagttctgcatccgtaaaattagctaattgtgctgcggtggttaaagtaagcgatattaatttctgcttaactaccgacgcttttcatcggttgacatatttcagcataaatttttgcatctaatcaacgaggaaaaaggggacaaaatgcacgcgttgcaaaacctatcctgatgatttgtattgaattatatgttttgcgattttttttgatattgatttggtgaatattattgatcaattaatgttaagaattaatgcattaaatatataaattaattattaaataagcacatttaatccattttgtagatgattgagtattcgcggtagttatgattagattgttttcgcaacaaaaacattatggattattatgctgtggtaaatgactcattccacggcaatggattctgtttttatcagaacccgtatctttatgttttccgaattttactcattttgctttttcttattttatatgcatgataaatcatattcttcaggattatttctctgcattccaataagggaaagggagttaagtgtgacagtggagttaagtatgccagaggtacaaacagatcatccagagacggcggagttaagcaaaccacagctacgcatggtcgatctcaacttattaaccgttttcgatgccgtgatgcaggagcaaaacattactcgtgccgctcatgttctgggaatgtcgcaacctgcggtcagtaacgctgttgcacgcctgaaggtgatgtttaatgacgagctttttgttcgttatggccgtggtattcaaccgactgctcgcgcatttcaactttttggttcagttcgtcaggcattgcaactagtacaaaatgaattgcctggttcaggttttgaacccgcgagcagtgaacgtgtatttcatctttgtgtttgcagcccgttagacagcattctgacctcgcagatttataatcacattgagcagattgcgccaaatatacatgttatgttcaagtcttcattaaatcagaacactgaacatcagctgcgttatcaggaaacggagtttgtgattagttatgaagacttccatcgtcctgaatttaccagcgtaccattatttaaagatgaaatggtgctggtagccagcaaaaatcatccaacaattaagggcccgttactgaaacatgatgtttataacgaacaacatgcggcggtttcgctcgatcgtttcgcgtcatttagtcaaccttggtatgacacggtagataagcaagccagtatcgcgtatcagggcatggcaatgatgagcgtacttagcgtggtgtcgcaaacgcatttggtcgctattgcgccgcgttggctggctgaagagttcgctgaatccttagaattacaggtattaccgctgccgttaaaacaaaacagcagaacctgttatctctcctggcatgaagctgccgggcgcgataaaggccatcagtggatggaagagcaattagtctcaatttgcaaacgctaactgattgcagaataggtcagacatgaatgtctggtttattctgcattttttattgaatgtagaattttattctgaatgtgtgggctctctattttaggattaattaaaaaaatagagaaattgctgtaagttgtgggattcagccgatttattatcaatttaatcctctgtaatggaggattttatcgtttcttttcacctttcctcctgtttattcttattaccccgtgtttatgtctctggctgccaattgcttaagcaagatcggacggttaatgtgttttacacattttttccgtcaaacagtgaggcaggccatggagatgttgtctggagccgagatggtcgtccgatcgcttatcgatcagggcgttaaacaagtattcggttatcccggaggcgcagtccttgatatttatgatgcattgcataccgtgggtggtattgatcatgtattagttcgtcatgagcaggcggcggtgcatatggccgatggcctggcgcgcgcgaccggggaagtcggcgtcgtgctggtaacgtcgggtccaggggcgaccaatgcgattactggcatcgccaccgcttatatggattccattccattagttgtcctttccgggcaggtagcgacctcgttgataggttacgatgcctttcaggagtgcgacatggtggggatttcgcgaccggtggttaaacacagttttctggttaagcaaacggaagacattccgcaggtgctgaaaaaggctttctggctggcggcaagtggtcgcccaggaccagtagtcgttgatttaccgaaagatattcttaatccggcgaacaaattaccctatgtctggccggagtcggtcagtatgcgttcttacaatcccactactaccggacataaagggcaaattaagcgtgctctgcaaacgctggtagcggcaaaaaaaccggttgtctacgtaggcggtggggcaatcacggcgggctgccatcagcagttgaaagaaacggtggaggcgttgaatctgcccgttgtttgctcattgatggggctgggggcgtttccggcaacgcatcgtcaggcactgggcatgctgggaatgcacggtacctacgaagccaatatgacgatgcataacgcggatgtgattttcgccgtcggggtacgatttgatgaccgaacgacgaacaatctggcaaagtactgcccaaatgccactgttctgcatatcgatattgatcctacttccatttctaaaaccgtgactgcggatatcccgattgtgggggatgctcgccaggtcctcgaacaaatgcttgaactcttgtcgcaagaatccgcccatcaaccactggatgagatccgcgactggtggcagcaaattgaacagtggcgcgctcgtcagtgcctgaaatatgacactcacagtgaaaagattaaaccgcaggcggtgatcgagactctttggcggttgacgaagggagacgcttacgtgacgtccgatgtcgggcagcaccagatgtttgctgcactttattatccattcgacaaaccgcgtcgctggatcaattccggtggcctcggcacgatgggttttggtttacctgcggcactgggcgtcaaaatggcgttgccagaagaaaccgtggtttgcgtcactggcgacggcagtattcagatgaacatccaggaactgtctaccgcgttgcaatacgagttgcccgtactggtggtgaatctcaataaccgctatctggggatggtgaagcagtggcaggacatgatctattccggccgtcattcacaatcttatatgcaatcgctacccgatttcgtccgtctggcggaagcctatgggcatgtcgggatccagatttctcatccgcatgagctggaaagcaaacttagcgaggcgctggaacaggtgcgcaataatcgcctggtgtttgttgatgttaccgtcgatggcagcgagcacgtctacccgatgcagattcgcgggggcggaatggatgaaatgtggttaagcaaaacggagagaacctgattatgcgccggatattatcagtcttactcgaaaatgaatcaggcgcgttatcccgcgtgattggccttttttcccagcgtggctacaacattgaaagcctgaccgttgcgccaaccgacgatccgacattatcgcgtatgaccatccagaccgtgggcgatgaaaaagtacttgagcagatcgaaaagcaattacacaaactggtcgatgtcttgcgcgtgagtgagttggggcagggcgcgcatgttgagcgggaaatcatgctggtgaaaattcaggccagcggttacgggcgtgacgaagtgaaacgtaatacggaaatattccgtgggcaaattatcgatgtcacaccctcgctttataccgttcaattagcaggcaccagcggtaagcttgatgcatttttagcatcgattcgcgatgtggcgaaaattgtggaggttgctcgctctggtgtggtcggactttcgcgcggcgataaaataatgcgttgagaatgatctcaatgcgcaatttacagcccaacatgtcacgttgggctttttttgcgaaatcagtgggaacctggaataaaagcagttgccgcagttaattttctgcgcttagatgttaatgaatttaacccataccagtacaatggctatggtttttacattttacgcaaggggcaattgtgaaactggatgaaatcgctcggctggcgggagtgtcgcggaccactgcaagctatgttattaacggcaaagcgaagcaataccgtgtgagcgacaaaaccgttgaaaaagtcatggctgtggtgcgtgagcacaattaccacccgaacgccgtggcagctgggcttcgtgctggacgcacacgttctattggtcttgtgatccccgatctggagaacaccagctatacccgcatcgctaactatcttgaacgccaggcgcggcaacggggttatcaactgctgattgcctgctcagaagatcagccagacaacgaaatgcggtgcattgagcaccttttacagcgtcaggttgatgccattattgtttcgacgtcgttgcctcctgagcatcctttttatcaacgctgggctaacgacccgttcccgattgtcgcgctggaccgcgccctcgatcgtgaacacttcaccagcgtggttggtgccgatcaggatgatgccgaaatgctggcggaagagttacgtaagtttcccgccgagacggtgctttatcttggtgcgctaccggagctttctgtcagcttcctgcgtgaacaaggtttccgtactgcctggaaagatgatccgcgcgaagtgcatttcctgtatgccaacagctatgagcgggaggcggctgcccagttattcgaaaaatggctggaaacgcatccgatgccgcaggcgctgttcacaacgtcgtttgcgttgttgcaaggagtgatggatgtcacgctgcgtcgcgacggcaaactgccttctgacctggcaattgccacctttggcgataacgaactgctcgacttcttacagtgtccggtgctggcagtggctcaacgtcaccgcgatgtcgcagagcgtgtgctggagattgtcctggcaagcctggacgaaccgcgtaagccaaaacctggtttaacgcgcattaaacgtaatctctatcgccgcggcgtgctcagccgtagctaagccgcgaacaaaaatacgcgccaggtgaatttccctctggcgcgtagagtacgggactggacatcaatatgcttaaagtaaataagactattcctgactattattgataaatgcttttaaacccgcccgttaattaactcaccagctgaaattcacaataattaagtgatatcgacagcgcgtttttgcattattttgttacatgcggcgatgaattgccgatttaacaaacacttttctttgcttttgcgcaaacccgctggcatcaagcgccacacagacgtaacaaggactgttaaccggggaagatatgtcctaaaatgccgctcgcgtcgcaaactgacactttatatttgctgtggaaaatagtgagtcattttaaaacggtgatgacgatgagggattttttcttacagctattcataacgttaatttgcttcgcacgttggacgtaaaataaacaacgctgatattagccgtaaacatcgggttttttacctcggtatgccttgtgactggcttgacaagcttttcctcagctccgtaaactcctttcagtgggaaattgtggggcaaagtgggaataaggggtgaggctggcatgttccggggagcaacgttagtcaatctcgacagcaaagggcgcttatcagtgcctacccgttatcgggaacagctgcttgagaacgctgccggtcaaatggtttgcaccattgacatttatcacccgtgcctgctgctttaccccctgcctgaatgggaaattatcgagcaaaaattatcgcgtctgtcgagcatgaacccggttgagcgccgtgtgcagcgcctactgttaggtcatgccagcgaatgtcagatggatggcgcaggtcgattgttaatcgcgccagtactgcggcaacatgccgggctgacaaaagaagtgatgctggttggacagttcaacaagtttgagctgtgggatgaaacaacctggcatcaacaggtcaaggaagatatcgacgcagagcagttggctaccggagacttatcggagcgactgcaggacttgtctctataaaatgatggaaaactataaacatactacggtgctgctggatgaagccgttaatggcctcaatatccgtcctgatggcatctacattgatgggacttttggtcgcggtggtcactcacgtctgatcctctcgcagcttggcgaagaggggcgtttgctggcgatcgatcgcgacccgcaggctatcgccgttgcgaagactattgatgatccgcgcttctccatcatccacggacctttctccgcgctgggcgaatacgttgccgagcgcgatcttatcggcaagatcgacggcattctcctcgatcttggcgtctcttcaccgcaacttgatgatgctgaacgtggcttttcctttatgcgcgatggtccgctggacatgcgtatggacccaacccgtgggcagtcagccgctgaatggctacaaaccgcagaagaagccgatatcgcctgggtattgaaaacctatggtgaagagcgttttgccaaacgcattgcccgcgccattgtcgagcgtaaccgcgaacagccgatgacccgcaccaaagaactggcggaagtcgtggctgctgcaacgccggtgaaagataagtttaaacatcccgcgacccgtaccttccaggcggtgcgcatttgggtaaacagtgaactggaggagatagagcaggcgctaaaaagctcgctcaacgtgctggccccgggtgggcggctttcgatcatcagcttccactcgctggaagaccgtattgtgaaacgttttatgcgtgaaaacagccgcggtccgcaagttccggcagggttaccgatgactgaagagcagctcaaaaaactgggtggccgtcagctgcgagcactaggcaagttaatgccgggcgaagaagaggtggctgagaaccctcgtgcccgtagttcagttctgcgtattgcagagaggacgaatgcatgatcagcagagtgacagaagctctaagcaaagttaaaggatcgatgggaagccacgagcgccatgcattgcctggtgttatcggtgacgatcttttgcgatttgggaagctgccactctgcctgttcatttgcattattttgacggcggtgactgtggtaaccacggcgcaccatacccgtttactgaccgctcagcgcgaacaactggtgctggagcgagatgctttagacattgaatggcgcaacctgatccttgaagagaatgcgctcggcgaccatagccgggtggaaaggatcgccacggaaaagctgcaaatgcagcatgttgatccgtcacaagaaaatatcgtagtgcaaaaataaggataaacgcgacgcatgaaagcagcggcgaaaacgcagaaaccaaaacgtcaggaagaacatgccaactttatcagttggcgttttgcgttgttatgcggctgtattctcctggcgctggcttttctgctcggacgcgtagcgtggttacaagttatctccccggatatgctggtgaaagagggcgacatgcgttctcttcgcgttcagcaagtttccacctcccgcggcatgattactgaccgttctggtcgcccgttagcggtgagcgtgccggtaaaagcgatttgggctgacccgaaagaagtgcatgacgctggcggtatcagcgtcggtgaccgctggaaggcgctggctaacgcgctcaatattccgctggatcagctttcagcccgcattaacgccaacccgaaagggcgctttatttatctggcgcgtcaggtgaaccctgacatggcggactacatcaaaaaactgaaactgccggggattcatctgcgtgaagagtctcgccgttactatccgtccggcgaagtgactgctcacctcatcggctttactaacgtcgatagtcaagggattgagggcgttgagaagagtttcgataaatggcttaccgggcagccgggtgagcgcattgtgcgtaaagaccgctatggtcgcgtaattgaagatatttcttctactgacagccaggcagcgcacaacctggcgctgagtattgatgaacgcctgcaggcgctggtttatcgcgaactgaacaacgcggtggcctttaacaaggctgaatctggtagcgccgtgctggtggatgtcaacaccggtgaagtgctggcgatggctaacagcccgtcatacaaccctaacaatctgagcggcacgccgaaagaggcgatgcgtaaccgtaccatcaccgacgtgtttgaaccgggctcaacggttaaaccgatggtggtaatgaccgcgttgcaacgtggcgtggtgcgggaaaactcggtactcaataccattccttatcgaattaacggccacgaaatcaaagacgtggcacgctacagcgaattaaccctgaccggggtattacagaagtcgagtaacgtcggtgtttccaagctggcgttagcgatgccgtcctcagcgttagtagatacttactcacgttttggactgggaaaagcgaccaatttggggttggtcggagaacgcagtggcttatatcctcaaaaacaacggtggtctgacatagagagggccaccttctctttcggctacgggctaatggtaacaccattacagttagcgcgagtctacgcaactatcggcagctacggcatttatcgcccactgtcgattaccaaagttgaccccccggttcccggtgaacgtgtcttcccggaatccattgtccgcactgtggtgcatatgatggaaagcgtggcgctaccaggcggcggcggcgtgaaggcggcgattaaaggctatcgtatcgccattaaaaccggtaccgcgaaaaaggtcgggccggacggtcgctacatcaataaatatattgcttataccgcaggcgttgcgcctgcgagtcagccgcgcttcgcgctggttgttgttatcaacgatccgcaggcgggtaaatactacggcggcgccgtttccgcgccggtctttggtgccatcatgggcggcgtattgcgtaccatgaacatcgagccggatgcgctgacaacgggcgataaaaatgaatttgtgattaatcaaggcgaggggacaggtggcagatcgtaatttgcgcgaccttcttgctccgtgggtgccagacgcaccttcgcgagcactgcgagagatgacactcgacagccgtgtggctgcggcgggcgatctctttgtagctgtagtaggtcatcaggcggacgggcgtcgatatatcccgcaggcgatagcgcaaggtgtggctgccattattgcagaggcgaaagatgaggcgaccgatggtgaaatccgtgaaatgcacggcgtaccggtcatctatctcagccagctcaacgagcgtttatctgcactggcgggccgcttttaccatgaaccctctgacaatttacgtctcgtgggcgtaacgggcaccaacggcaaaaccacgactacccagctgttggcgcagtggagccaactgcttggcgaaatcagcgcggtaatgggcaccgttggtaacggcctgctggggaaagtgatcccgacagaaaatacaaccggttcggcagtcgatgttcagcatgagctggcggggctggtggatcagggcgcgacgttttgcgcaatggaagtttcctcccacgggctggtacagcaccgtgtggcggcattgaaatttgcggcgtcggtctttaccaacttaagccgcgatcaccttgattatcatggtgatatggaacactacgaagccgcgaaatggctgctttattctgagcatcattgcggtcaggcgattattaacgccgacgatgaagtgggccgccgctggctggcaaaactgccggacgcggttgcggtatcaatggaagatcatattaatccgaactgtcacggacgctggttgaaagcgaccgaagtgaactatcacgacagcggtgcgacgattcgctttagctcaagttggggcgatggcgaaattgaaagccatctgatgggcgcttttaacgtcagcaacctgctgctcgcgctggcgacactgttggcactcggctatccactggctgatctgctgaaaaccgccgcgcgtctgcaaccggtttgcggacgtatggaagtgttcactgcgccaggcaaaccgacggtggtggtggattacgcgcatacgccggatgcactggaaaaagccttacaggcggcgcgtctgcactgtgcgggcaagctgtggtgtgtctttggctgtggtggcgatcgcgataaaggtaagcgtccactgatgggcgcaattgccgaagagtttgctgacgtggcggtggtgacggacgataacccgcgtaccgaagaaccgcgtgccatcatcaacgatattctggcgggaatgttagatgccggacatgccaaagtgatggaaggccgtgctgaagcggtgacttgcgccgttatgcaggctaaagagaatgatgtggtactggtcgcgggcaaaggccatgaagattaccagattgttggcaatcagcgtctggactactccgatcgcgtcacggtggcgcgtctgctgggggtgattgcatgattagcgtaacccttagccaacttaccgacattctcaacggtgaactgcaaggtgcagatatcacccttgatgctgtaaccactgatacccgaaaactgacgccgggctgcctgtttgttgccctgaaaggcgaacgttttgatgcccacgattttgccgaccaggcgaaagctggcggcgcaggcgcactactggttagccgtccgctggacatcgacctgccgcagttaatcgtcaaggatacgcgtctggcgtttggtgaactggctgcatgggttcgccagcaagttccggcgcgcgtggttgctctgacggggtcctccggcaaaacctccgttaaagagatgacggcggcgattttaagccagtgcggcaacacgctttatacggcaggcaatctcaacaacgacatcggtgtaccgatgacgctgttgcgcttaacgccggaatacgattacgcagttattgaacttggcgcgaaccatcagggcgaaatagcctggactgtgagtctgactcgcccggaagctgcgctggtcaacaacctggcagcggcgcatctggaaggttttggctcgcttgcgggtgtcgcgaaagcgaaaggtgaaatctttagcggcctgccggaaaacggtatcgccattatgaacgccgacaacaacgactggctgaactggcagagcgtaattggctcacgcaaagtgtggcgtttctcacccaatgccgccaacagcgatttcaccgccaccaatatccatgtgacctcgcacggtacggaatttaccctacaaaccccaaccggtagcgtcgatgttctgctgccgttgccggggcgtcacaatattgcgaatgcgctggcagccgctgcgctctccatgtccgtgggcgcaacgcttgatgctatcaaagcggggctggcaaatctgaaagctgttccaggccgtctgttccccatccaactggcagaaaaccagttgctgctcgacgactcctacaacgccaatgtcggttcaatgactgcagcagtccaggtactggctgaaatgccgggctaccgcgtgctggtggtgggcgatatggcggaactgggcgctgaaagcgaagcctgccatgtacaggtgggcgaggcggcaaaagctgctggtattgaccgcgtgttaagcgtgggtaaacaaagccatgctatcagcaccgccagcggcgttggcgaacattttgctgataaaactgcgttaattacgcgtcttaaattactgattgctgagcaacaggtaattacgattttagttaagggttcacgtagtgccgccatggaagaggtagtacgcgctttacaggagaatgggacatgttagtttggctggccgaacatttggtcaaatattattccggctttaacgtcttttcctatctgacgtttcgcgccatcgtcagcctgctgaccgcgctgttcatctcattgtggatgggcccgcgtatgattgctcatttgcaaaaactttcctttggtcaggtggtgcgtaacgacggtcctgaatcacacttcagcaagcgcggtacgccgaccatgggcgggattatgatcctgacggcgattgtgatctccgtactgctgtgggcttacccgtccaatccgtacgtctggtgcgtgttggtggtgctggtaggttacggtgttattggctttgttgatgattatcgcaaagtggtgcgtaaagacaccaaagggttgatcgctcgttggaagtatttctggatgtcggtcattgcgctgggtgtcgccttcgccctgtaccttgccggcaaagacacgcccgcaacgcagctggtggtcccattctttaaagatgtgatgccgcagctggggctgttctacattctgctggcttacttcgtcattgtgggtactggcaacgcggtaaacctgaccgatggtctcgacggcctggcaattatgccgaccgtatttgtcgccggtggttttgcgctggtggcgtgggcgaccggcaatatgaactttgccagctacttgcatataccgtatctgcgacacgccggggaactggttattgtctgtaccgcgatagtcggggcaggactgggcttcctgtggtttaacacctatccggcgcaggtctttatgggcgatgtaggttcgctggcgttaggtggtgcgttaggcattatcgccgtactgctacgtcaggaattcctgctggtgattatggggggcgtgttcgtggtagaaacgctttctgtcatcctgcaggtcggctcctttaaactgcgcggacaacgtattttccgcatggcaccgattcatcaccactatgaactgaaaggctggccggaaccgcgcgtcattgtgcgtttctggattatttcgctgatgctggttctgattggtctggcaacgctgaaggtacgttaatcatggctgattatcagggtaaaaatgtcgtcattatcggcctgggcctcaccgggctttcctgcgtggactttttcctcgctcgcggtgtgacgccgcgcgttatggatacgcgtatgacaccgcctggcctggataaattacccgaagccgtagaacgccacacgggcagtctgaatgatgaatggctgatggcggcagatctgattgtcgccagtcccggtattgcactggcgcatccatccttaagcgctgccgctgatgccggaatcgaaatcgttggcgatatcgagctgttctgtcgcgaagcacaagcaccgattgtggcgattaccggttctaacggcaaaagcacggtcaccacgctagtgggtgaaatggcgaaagcggcgggggttaacgttggtgtgggtggcaatattggcctgcctgcgttgatgctactggatgatgagtgtgaactgtacgtgctggaactgtcgagcttccagctggaaaccacctccagcttacaggcggtagcagcgaccattctgaacgtgactgaagatcatatggatcgctatccgtttggtttacaacagtatcgtgcagcaaaactgcgcatttacgaaaacgcgaaagtttgcgtggttaatgctgatgatgccttaacaatgccgattcgcggtgcggatgaacgctgcgtcagctttggcgtcaacatgggtgactatcacctgaatcatcagcagggcgaaacctggctgcgggttaaaggcgagaaagtgctgaatgtgaaagagatgaaactttccgggcagcataactacaccaatgcgctggcggcgctggcgctggcagatgctgcagggttaccgcgtgccagcagcctgaaagcgttaaccacattcactggtctgccgcatcgctttgaagttgtgctggagcataacggcgtacgttggattaacgattcgaaagcgaccaacgtcggcagtacggaagcggcgctgaatggcctgcacgtagacggcacactgcatttgttgctgggtggcgatggtaaatcggcggactttagcccactggcgcgttacctgaatggcgataacgtacgtctgtattgtttcggtcgtgacggcgcgcagctggcggcgctacgcccggaagtggcagaacaaaccgaaactatggaacaggcgatgcgcttgctggctccgcgtgttcagccgggcgatatggttctgctctccccagcctgtgccagccttgatcagttcaagaactttgaacaacgaggcaatgagtttgcccgtctggcgaaggagttaggttgatgcgtttatctctccctcgcctgaaaatgccgcgcctgccaggattcagtatcctggtctggatctccacggcgctaaagggctgggtgatgggctcgcgggaaaaagataccgacagcctgatcatgtacgatcgcaccttactgtggctgaccttcggcctcgcggcgattggctttatcatggtgacctcggcgtcaatgcccatagggcaacgcttaaccaacgatccgttcttcttcgcgaagcgtgatggtgtctatctgattttggcgtttattctggcgatcattacgctgcgtctgccgatggagttctggcaacgctacagtgccacgatgctgctcggatctatcatcctgctgatgatcgtcctggtagtgggtagctcggttaaaggggcatcgcgttggatcgatctcggtttgctgcgtatccagcctgcggagctgacaaaactgtcgctgttttgctatatcgccaactatctggtgcgtaaaggcgacgaagtacgtaataacctgcgcggcttcctgaaaccgatgggcgtgattctggtgttggcagtgttactgctggcacagccagaccttggtacggtggtggtgttgtttgtgactacgctggcgatgttgttcctggcgggagcgaaattgtggcagttcattgccattatcggtatgggcatttcagcggttgtgttgctgatactcgccgaaccgtaccgtatccgccgtgttaccgcattctggaacccgtgggaagatccctttggcagcggctatcagttaacgcaatcgctgatggcgtttggtcgcggcgaactttgggggcaaggtttaggtaactcggtacaaaaactggagtatctgccggaagcgcacactgactttattttcgccattatcggcgaagaactggggtatgtcggtgtggtgctggcacttttaatggtattcttcgtcgcttttcgcgcgatgtcgattggccgtaaagcattagaaattgaccaccgtttttccggttttctcgcctgttctattggcatctggtttagcttccaggcgctggttaacgtaggcgcggcggcggggatgttaccgaccaaaggtctgacattgccgctgatcagttacggtggttcgagcttactgattatgtcgacagccatcatgatgctgttgcgtattgattatgaaacgcgtctggagaaagcgcaggcgtttgtacgaggttcacgatgagtggtcaaggaaagcgattaatggtgatggcaggcggaaccggtggacatgtattcccgggactggcggttgcgcaccatctaatggctcagggttggcaagttcgctggctggggactgccgaccgtatggaagcggacttagtgccaaaacatggcatcgaaattgatttcattcgtatctctggtctgcgtggaaaaggtataaaagcactgatagctgccccgctgcgtatcttcaacgcctggcgtcaggcgcgggcgattatgaaagcgtacaaacctgacgtggtgctcggtatgggaggctacgtgtcaggtccaggtggtctggccgcgtggtcgttaggcattccggttgtacttcatgaacaaaacggtattgcgggcttaaccaataaatggctggcgaagattgccaccaaagtgatgcaggcgtttccaggtgctttccctaatgcggaagtagtgggtaacccggtgcgtaccgatgtgttggcgctgccgttgccgcagcaacgtttggctggacgtgaaggtccggttcgtgtgctggtagtgggtggttctcagggcgcacgcattcttaaccagacaatgccgcaggttgctgcgaaactgggtgattcagtcactatctggcatcagagcggcaaaggttcgcaacaatccgttgaacaggcgtatgccgaagcggggcaaccgcagcataaagtgacggaatttattgatgatatggcggcggcgtatgcgtgggcggatgtcgtcgtttgccgctccggtgcgttaacggtgagtgaaatcgccgcggcaggactaccggcgttgtttgtgccgtttcaacataaagaccgccagcaatactggaatgcgctaccgctggaaaaagcgggcgcagccaaaattatcgagcagccacagcttagcgtggatgctgtcgccaacaccctggccgggtggtcgcgagaaaccttattaaccatggcagaacgcgcccgcgctgcatccattccggatgccaccgagcgagtggcaaatgaagtgagccgggttgcccgggcgtaattgtagcgatgccttttgcatcgtatgaatttaagaagttaatggcgtaaagaatgaatacacaacaattggcaaaactgcgttccatcgtgcccgaaatgcgtcgcgttcggcacatacattttgtcggcattggtggtgccggtatgggcggtattgccgaagttctggccaatgaaggttatcagatcagtggttccgatttagcgccaaatccggtcacgcagcagttaatgaatctgggtgcgacgatttatttcaaccatcgcccggaaaacgtacgtgatgccagcgtggtcgttgtttccagcgcgatttctgccgataacccggaaattgtcgccgctcatgaagcgcgtattccggtgatccgtcgtgccgaaatgctggctgagttaatgcgttttcgtcatggcatcgccattgccggaacgcacggcaaaacgacaaccaccgcgatggtttccagcatctacgcagaagcggggctcgacccaaccttcgttaacggcgggctggtaaaagcggcgggggttcatgcgcgtttggggcatggtcggtacctgattgccgaagcagatgagagtgatgcatcgttcctgcatctgcaaccgatggtggcgattgtcaccaatatcgaagccgaccacatggatacctaccagggcgactttgagaatttaaaacagacttttattaattttctgcacaacctgccgttttacggtcgtgcggtgatgtgtgttgatgatccggtgatccgcgaattgttaccgcgagtggggcgtcagaccacgacttacggcttcagcgaagatgccgacgtgcgtgtagaagattatcagcagattggcccgcaggggcactttacgctgctgcgccaggacaaagagccgatgcgcgtcaccctgaatgcgccaggtcgtcataacgcgctgaacgccgcagctgcggttgcggttgctacggaagagggcattgacgacgaggctattttgcgggcgcttgaaagcttccaggggactggtcgccgttttgatttcctcggtgaattcccgctggagccagtgaatggtaaaagcggtacggcaatgctggtcgatgactacggccaccacccgacggaagtggacgccaccattaaagcggcgcgcgcaggctggccggataaaaacctggtaatgctgtttcagccgcaccgttttacccgtacgcgcgacctgtatgatgatttcgccaatgtgctgacgcaggttgataccctgttgatgctggaagtgtatccggctggcgaagcgccaattccgggagcggacagccgttcgctgtgtcgcacaattcgtggacgtgggaaaattgatcccattctggtgccggatccggcgcgggtagccgagatgctggcaccggtattaaccggtaacgacctgattctcgttcagggggctggtaatattggaaaaattgcccgttctttagctgaaatcaaactgaagccgcaaactccggaggaagaacaacatgactgataaaatcgcggtcctgttgggtgggacctccgctgagcgggaagtttctctgaattctggcgcagcggtgttagccggactgcgtgaaggcggtattgacgcgtatcctgtcgacccgaaagaagtcgacgtgacgcaactgaagtcgatgggctttcagaaagtgtttatcgcgctacacggtcgcggcggtgaagatggtacgctgcaggggatgctcgagctgatgggcttgccttataccggaagcggagtgatggcatctgcgctttcaatggataaactacgcagcaaacttctatggcaaggtgccggtttaccggtcgcgccgtgggtagcgttaacccgcgcagagtttgaaaaaggcctgagcgataagcagttagcagaaatttctgctctgggtttgccggttatcgttaagccgagccgcgaaggttccagtgtgggaatgtcaaaagtagtagcagaaaatgctctacaagatgcattaagattggcatttcagcacgatgaagaagtattgattgaaaaatggctaagtgggccggagttcacggttgcgatactcggtgaagaaattttaccgtcaatacgtattcaaccgtccggaaccttctatgattatgaggcgaagtatctctctgatgagacacagtatttctgccccgcaggtctggaagcgtcacaagaggccaatttgcaggcattagtgctgaaagcatggacgacgttaggttgcaaaggatggggacgtattgacgttatgctggacagcgatggacagttttatctgctggaagccaatacctcaccgggtatgaccagccacagcctggtgccgatggcggcacgtcaggcaggtatgagcttctcgcagttggtagtacgaattctggaactggcggactaatatgtcgcaggctgctctgaacacgcgaaacagcgaagaagaggtttcttctcgccgcaataatggaacgcgtctggcggggatccttttcctgctgaccgttttaacgacagtgttggtgagcggctgggtcgtgttgggctggatggaagatgcgcaacgcctgccgctctcaaagctggtgttgaccggtgaacgccattacacacgtaatgacgatatccggcagtcgatcctggcattgggtgagccgggtacctttatgacccaggatgtcaacatcatccagacgcaaatagaacaacgcctgccgtggattaagcaggtgagcgtcagaaagcagtggcctgatgaattgaagattcatctggttgaatatgtgccgattgcgcggtggaatgatcaacatatggtagacgcggaaggaaataccttcagcgtgccgccagaacgcaccagcaagcaggtgcttccaatgctgtatggcccggaaggcagcgccaatgaagtgttgcagggctatcgcgaaatggggcagatgctggcaaaggacagatttactctgaaggaagcggcgatgaccgcgcggcgttcctggcagttgacgctgaataacgatattaagctcaatcttggccggggcgatacgatgaaacgtttggctcgctttgtagaactttatccggttttacagcagcaggcgcaaaccgatggcaaacggattagctacgttgatttgcgttatgactctggagcggcagtaggctgggcgcccttgccgccagaggaatctactcagcaacaaaatcaggcacaggcagaacaacaatgatcaaggcgacggacagaaaactggtagtaggactggagattggtaccgcgaaggttgccgctttagtaggggaagttctgcccgacggtatggtcaatatcattggcgtgggcagctgcccgtcgcgtggtatggataaaggcggggtgaacgacctcgaatccgtggtcaagtgcgtacaacgcgccattgaccaggcagaattgatggcagattgtcagatctcttcggtatatctggcgctttctggtaagcacatcagctgccagaatgaaattggtatggtgcctatttctgaagaagaagtgacgcaagaagatgtggaaaacgtcgtccataccgcgaaatcggtgcgtgtgcgcgatgagcatcgtgtgctgcatgtgatcccgcaagagtatgcgattgactatcaggaagggatcaagaatccggtaggactttcgggcgtgcggatgcaggcaaaagtgcacctgatcacatgtcacaacgatatggcgaaaaacatcgtcaaagcggttgaacgttgtgggctgaaagttgaccaactgatatttgccggactggcatcaagttattcggtattgacggaagatgaacgtgaactgggtgtctgcgtcgtcgatatcggtggtggtacaatggatatcgccgtttataccggtggggcattgcgccacactaaggtaattccttatgctggcaatgtcgtgaccagtgatatcgcttacgcctttggcacgccgccaagcgacgccgaagcgattaaagttcgccacggttgtgcgctgggttccatcgttggaaaagatgagagcgtggaagtgccgagcgtaggtggtcgtccgccacggagtctgcaacgtcagacactggcagaggtgatcgagccgcgctataccgagctgctcaacctggtcaacgaagagatattgcagttgcaggaaaagcttcgccaacaaggggttaaacatcacctggcggcaggcattgtattaaccggtggcgcagcgcagatcgaaggtcttgcagcctgtgctcagcgcgtgtttcatacgcaagtgcgtatcggcgcgccgctgaacattaccggtttaacggattatgctcaggagccgtattattcgacggcggtgggattgcttcactatgggaaagagtcacatcttaacggtgaagctgaagtagaaaaacgtgttacagcatcagttggctcgtggatcaagcgactcaatagttggctgcgaaaagagttttaatttttatgaggccgacgatgattacggcctcaggcgacaggcacaaatcggagagaaactatgtttgaaccaatggaacttaccaatgacgcggtgattaaagtcatcggcgtcggcggcggcggcggtaatgctgttgaacacatggtgcgcgagcgcattgaaggtgttgaattcttcgcggtaaataccgatgcacaagcgctgcgtaaaacagcggttggacagacgattcaaatcggtagcggtatcaccaaaggactgggcgctggcgctaatccagaagttggccgcaatgcggctgatgaggatcgcgatgcattgcgtgcggcgctggaaggtgcagacatggtctttattgctgcgggtatgggtggtggtaccggtacaggtgcagcaccagtcgtcgctgaagtggcaaaagatttgggtatcctgaccgttgctgtcgtcactaagcctttcaactttgaaggcaagaagcgtatggcattcgcggagcaggggatcactgaactgtccaagcatgtggactctctgatcactatcccgaacgacaaactgctgaaagttctgggccgcggtatctccctgctggatgcgtttggcgcagcgaacgatgtactgaaaggcgctgtgcaaggtatcgctgaactgattactcgtccgggtttgatgaacgtggactttgcagacgtacgcaccgtaatgtctgagatgggctacgcaatgatgggttctggcgtggcgagcggtgaagaccgtgcggaagaagctgctgaaatggctatctcttctccgctgctggaagatatcgacctgtctggcgcgcgcggcgtgctggttaacatcacggcgggcttcgacctgcgtctggatgagttcgaaacggtaggtaacaccatccgtgcatttgcttccgacaacgcgactgtggttatcggtacttctcttgacccggatatgaatgacgagctgcgcgtaaccgttgttgcgacaggtatcggcatggacaaacgtcctgaaatcactctggtgaccaataagcaggttcagcagccagtgatggatcgctaccagcagcatgggatggctccgctgacccaggagcagaagccggttgctaaagtcgtgaatgacaatgcgccgcaaactgcgaaagagccggattatctggatatcccagcattcctgcgtaagcaagctgattaagaattgactggaatttgggtttcgaggctctttgtgctaaactggcccgccgaatgtatagtacacttcggttggataggtaatttggcgagataatacgatgatcaaacaaaggacacttaaacgtatcgttcaggcgacgggtgtcggtttacataccggcaagaaagtcaccctgacgttacgccctgcgccggccaacaccggggtcatctatcgtcgcaccgacttgaatccaccggtagatttcccggccgatgccaaatctgtgcgtgataccatgctctgtacgtgtctggtcaacgagcatgatgtacggatttcaaccgtagagcacctcaatgctgctctcgcgggcttgggcatcgataacattgttatcgaagttaacgcgccggaaatcccgatcatggacggcagcgccgctccgtttgtatacctgctgcttgacgccggtatcgacgagttgaactgcgccaaaaaatttgttcgcatcaaagagactgttcgtgtcgaagatggcgataagtgggctgaatttaagccgtacaatggtttttcgctggatttcaccatcgattttaaccatccggctattgattccagcaaccagcgctatgcgatgaacttctccgctgatgcgtttatgcgccagatcagccgtgcgcgtacgttcggtttcatgcgtgatatcgaatatctgcagtcccgtggtttgtgcctgggcggcagcttcgattgtgccatcgttgttgacgattatcgcgtactgaacgaagacggcctgcgttttgaagacgaatttgtgcgtcacaaaatgctcgatgcgatcggtgacttgttcatgtgtggtcacaatattattggtgcatttaccgcttataaatccggtcatgcactgaataacaaactgctgcaggctgtcctggcgaaacaggaagcctgggaatatgtgaccttccaggacgacgcagaactgccgttggccttcaaagcgccttcagctgtactggcataacgacatttatactgtcgtataaaattcgactggcaaatctggcactctctccggccaggtgaaccagtcgtttttttttgaattttataagagctataaaaaacggtgcgaacgctgttttcttaagcacttttccgcacaacttatcttcattcgtgctgtggactgcaggctttaatgataagatttgtgcgctaaatacgtttgaatatgatcgggatggcaataacgtgagtggaatactgacgcgctggcgacagtttggtaaacgctacttctggccgcatctcttattagggatggttgcggcgagtttaggtttgcctgcgctcagcaacgccgccgaaccaaacgcgcccgcaaaagcgacaacccgcaaccacgagccttcagccaaagttaactttggtcaattggccttgctggaagcgaacacacgccgcccgaattcgaactattccgttgattactggcatcaacatgccattcgcacggtaatccgtcatctttctttcgcaatggcaccgcaaacactgcccgttgctgaagaatctttgcctcttcaggcgcaacatcttgcattactggatacgctcagcgcgctgctgacccaggaaggcacgccgtctgaaaagggttatcgcattgattatgcgcattttaccccacaagcaaaattcagcacgcccgtctggataagccaggcgcaaggcatccgtgctggccctcaacgcctcacctaacaacaataaacctttacttcattttattaactccgcaacgcggggcgtttgagattttattatgctaatcaaattgttaactaaagttttcggtagtcgtaacgatcgcaccctgcgccggatgcgcaaagtggtcaacatcatcaatgccatggaaccggagatggaaaaactctccgacgaagaactgaaagggaaaaccgcagagtttcgtgcacgtctggaaaaaggcgaagtgctggaaaatctgatcccggaagctttcgccgtggtacgtgaggcaagtaagcgcgtctttggtatgcgtcacttcgacgttcagttactcggcggtatggttcttaacgaacgctgcatcgccgaaatgcgtaccggtgaaggaaaaaccctgaccgcaacgctgcctgcttacctgaacgcactaaccggtaaaggcgtgcacgtagttaccgtcaacgactacctggcgcaacgtgacgccgaaaacaaccgtccgctgtttgaattccttggcctgactgtcggtatcaacctgccgggcatgccagcaccggcaaagcgcgaagcttacgcagctgacatcacttacggtacgaacaacgaatacggctttgactacctgcgcgacaacatggcgttcagccctgaagaacgtgtacagcgtaaactgcactatgcgctggtggacgaagtggactccatcctgatcgatgaagcgcgtacaccgctgatcatttccggcccggcagaagacagctcggaaatgtataaacgcgtgaataaaattattccgcacctgatccgtcaggaaaaagaagactccgaaaccttccagggcgaaggccacttctcggtggacgaaaaatctcgccaggtgaacctgaccgaacgtggtctggtgctgattgaagaactgctggtgaaagagggcatcatggatgaaggggagtctctgtactctccggccaacatcatgctgatgcaccacgtaacggcggcgctgcgcgctcatgcgctgtttacccgtgacgtcgactacatcgttaaagatggtgaagttatcatcgttgacgaacacaccggtcgtaccatgcagggccgtcgctggtccgatggtctgcaccaggctgtggaagcgaaagaaggtgtgcagatccagaacgaaaaccaaacgctggcttcgatcaccttccagaactacttccgtctgtatgaaaaactggcggggatgaccggtactgctgataccgaagctttcgaatttagctcaatctacaagctggataccgtcgttgttccgaccaaccgtccaatgattcgtaaagatctgccggacctggtctacatgactgaagcggaaaaaattcaggcgatcattgaagatatcaaagaacgtactgcgaaaggccagccggtgctggtgggtactatctccatcgaaaaatcggagctggtgtcaaacgaactgaccaaagccggtattaagcacaacgtcctgaacgccaaattccacgccaacgaagcggcgattgttgctcaggcaggttatccggctgcggtgactatcgcgaccaatatggcgggtcgtggtacagatattgtgctcggtggtagctggcaggcagaagttgccgcgctggaaaatccgaccgcagagcaaattgaaaaaattaaagccgactggcaggtacgtcacgatgcggtactggaagcaggtggcctgcatatcatcggtaccgagcgtcacgaatcccgtcgtatcgataaccagttgcgcggtcgttctggtcgtcagggggatgctggttcttcccgtttctacctgtcgatggaagatgcgctgatgcgtatttttgcttccgaccgagtatccggcatgatgcgtaaactgggtatgaagccaggcgaagccattgaacacccgtgggtgactaaagcgattgccaacgcccagcgtaaagttgaaagccgtaacttcgacattcgtaagcaactgctggaatatgatgacgtggctaacgatcagcgtcgcgccatttactcccagcgtaacgaactgttggatgtcagcgatgtgagcgaaaccattaacagcattcgtgaagatgtgttcaaagcgaccattgatgcctacattccaccacagtcgctggaagaaatgtgggatattccggggctgcaggaacgtctgaagaacgatttcgacctcgatttgccaattgccgagtggctggataaagaaccagaactgcatgaagagacgctgcgtgagcgcattctggcgcagtccatcgaagtgtatcagcgtaaagaagaagtggttggtgctgagatgatgcgtcacttcgagaaaggcgtcatgctgcaaacgcttgactccctgtggaaagagcacctggcagcgatggactatctgcgtcagggtatccacctgcgtggctacgcacagaaagatccgaagcaggaatacaaacgtgaatcgttctccatgtttgcagcgatgctggagtcgttgaaatatgaagttatcagtacgctgagcaaagttcaggtacgtatgcctgaagaggttgaggagctggaacaacagcgtcgtatggaagccgagcgtttagcgcaaatgcagcagcttagccatcaggatgacgactctgcagccgcagctgcactggcggcgcaaaccggagagcgcaaagtaggacgtaacgatccttgcccgtgcggttctggtaaaaaatacaagcagtgccatggccgcctgcaataaaagctaactgttgaagtaaaaggcgcaggattctgcgccttttttataggtttaagacaatgaaaaagctgcaaattgcggtaggtattattcgcaacgagaacaatgaaatctttataacgcgtcgcgcagcagatgcgcacatggcgaataaactggagtttcccggcggtaaaattgaaatgggtgaaacgccggaacaggcggtggtgcgtgaacttcaggaagaagtcgggattaccccccaacatttttcgctatttgaaaaactggaatatgaattcccggacaggcatataacactgtggttttggctggtcgaacgctgggaaggggagccgtggggtaaagaagggcaacccggtgagtggatgtcgctggtcggtcttaatgccgatgattttccgccagccaatgaaccggtaattgcgaagcttaaacgtctgtaggtcagataaggcgttttcgccgcatccgacattcgcacacgatgcctgatgcgacgctggcgcgtcttatcaggcctaaagggatttctaactcattgataaatttgtttttgtaggtcggataaggcgttcacgccgcatccgacatttgcacaagatgcctgatgcgacgctgtccgcgtcttatcaggcctacgtgcggcatcagacaaatgtcactgctttggttcttcgctccagtcatcgctttcggaaagatcgccactgctggggattcgtttttcttcagcagcccattctccgaggtcgatcagctgacaacgtttggagcaaaatggccgaaacgggctgatttcaccccacaccaccgttttcccgcaggttgggcaattcaccgtaatagtttctgacatttttactccttagcaacaggccagttcgaaatccagacgttccggtacctgtccgttttcagtgtccagcggcataaaacgaatggcaaaacggctcttatgtccggaaatttgcggataaagctgtgaatcgagcgacagattcaggcgcagcaagtcggcatcgccaccgttatcctgataaaaaccattcaggctggtttgtttacggaagggggccgactggcgaattaaatccagcaccatggtaagtgcctgggtgagcgggttcaggctggcaatccaggtttctacctggctgtcgcgctgcgcctggggtagatgcagccaaatgtgcaatgtaggtaaatcaaagctgcaacagccgcctgggatgctcagtcgctgacgcaccagagcaatcaaacgatcttcacgcagaaattgcccgatacgcggcgcggaaattaatacgctccccgccgcttttaactgctgaattaatgcttcaatacggctctggtccacgccaggcacgccaatccaggtctggagtttacgttgctgccggtcaagttctttcaacagctcagtgcggacttcgccgcgctcgaaaacatccagtaattcactgacattacggaagaaatgcagcgcgccagcgtggtcaacgatgggtaaattaacggtgagttgctgaatcaaaaactcaatgcgcagccatgtacgcattttttcatttagtggatgttcaaaaaggacctgggtctgcattacggtttttcctgtgagacaaactgcgacgcaagctgcaaatagtgtgcgtgcaggcgggcaacatccgatgcgatagcatccggtgcgccgttattatcaatgacgtcatctgccacggcaaggcgggcttcgcgcgttgcctgagcagcaaggatttgttcgacatgctcgcgagttacatcatcgcgctgcatggtgcgcttaagttgcgtttctgggctgacatccaccacaagcactcgattcgcttttttatacagtgagttttctaccagcaatggcacaacccacagtacatagggggaagtagcttgctggatctggtgttgcgtctcttgctgaatcagcggatgcagcagggcgttaagccagtttttctcttccgggttggcgaagatccgctcgcgcaaggcccggcgctgcaatgttccatcagcagcaatcatgttagcgccaaagtgatcagcaatggcatgtagcgcaggtgcacctggttcaaccacctgacgcgcaataatatcggcatcaatgacgttaattccgagatcagcaaacgcattggcaacggtactcttgccactgccaatgcctcccgttaaggcaactatatacctcataatttatattcccgggaattcatcatgattatcaaaacgttaaaaatgagtgcacgaaagcgaaattgatgaaacgttcgctcactatttaccaggtaaatttatgggattgtagcgtaaaaaaagacaatttcgcagtcttgcgccgcattgattagtgcgtatgatagcgtcactggagttgcgctcttacccttatagccattaaccccaggaatccgcacatgcgtattgaagaagatctgaagttaggttttaaagacgttctcatccgccctaaacgctccactcttaaaagccgttccgatgttgaactggaacgtcaattcaccttcaaacattcaggtcagagctggtccggcgtgccgattatcgccgcaaatatggacaccgtaggcacattttctatggcctctgcgctggcttcttttgatattttgactgctgtgcataaacactattctgtcgaagagtggcaagcgtttatcaacaattcttccgctgatgtgctgaaacatgtgatggtttctaccggtacgtctgatgcggatttcgaaaaaactaaacagattctcgacctgaacccggcattaaacttcgtttgtattgacgtggcgaatggttattccgaacacttcgtgcagttcgttgcgaaagcgcgtgaagcgtggccgaccaaaaccatttgtgctggtaacgtagtgactggtgaaatgtgtgaggagcttatcctctcaggtgccgatatcgttaaagttggcattggcccaggttctgtttgtacaactcgcgtcaaaacaggcgtcggttatccgcaactttctgcggtaatcgaatgtgccgatgctgcgcacggtctgggcggaatgatcgtcagcgatggtggctgcaccacgccgggcgatgtggcgaaagcctttggcggcggtgccgatttcgtcatgcttggcggcatgctggcgggccacgaagagagcggcggtcgcatcgttgaggagaacggcgagaaatttatgctgttctacggcatgagctccgagtctgcgatgaaacgtcacgttggcggcgttgcggaatatcgcgcagcagaaggtaaaaccgttaagctgccgctgcgaggcccggttgaaaataccgcgcgagatattttgggcggcctgcgttcagcttgtacatacgttggggcttcacgcctgaaagagctgaccaagcgcaccacgtttattcgtgtgcaggaacaagaaaaccgcatcttcaacaacctgtaatctcccaacgctggcgtggagcaacacgccagcgttatcccatcccactcatcgcatcgcctaaatggaaaattggcagatacattgccaccaccagcgtaccaataattcctcccgttatgatcagcaacgccggttccagtaaggctgcgaggttatccgccagcgccattgtgttttcccgatgatgatgggcgaggttgtctaacatgagatccagagagccggatgcctctcctgttctcactaattgcaaacagagcgggctaaactcaccggtattttttagcgccagccagatgggttgaccgttactgatatcgtgctggatttgtgtcagaagttgcacccagtacgggcagcgcattgtttctctgacgctctctacgccctgtaaaaaagtaatgcctgcactttgtgtcagcgccagaatcgtaaagatctgcgtgagtttttgtccccgcatcagtgaacccataatcgggatgcgtaacagcaatttctgccgcactataagccaggtcggtcggcgcatcagcaacttattggctatcgccagcagaaagccgaacaacaccagcagccagctccattcgccactaaagtctgccagcgtcatgatcccctgcgttagtgccggtagtggggtgttgaaggtcttatagatagcggcaaactccggcagaacaaaatgcagcattgccacaaccaccatgattgccatcgctaaaatgatgatgggataacgtaacgctgatttcactttgtcggtcaactgacgctgggctttttgctgacgcgccagttcaaagcagcattcatccagcttaccggtcagttcacccgtgcggatcatcgcctgatagagcggcggaaatacctctgaccagggtaataaggcattggaaaaagcaatgccctgttcgagatcgtgcgccagcgattgcagcaacgcttgccattgcttactgggatgctgttccgccagcagagccagcccttcagaaagcgttaaccctgctttgagtagcgtcgccagttgatgaatgacttccgcgcttttatctcctcgccactgcgcagaattgatggcgattcgcttcaggcttagtggggtaaccatctgttgctgtagtgccataagcagtaaagtacggctctctgcccatagcatcccatcttgcgcattgccgtcgccggttatgccatgccagcgccagagttgcttactcgccatgcggcatccccagtacgcggattaactcttcaaaggtggttaagccttgctctacggccaggcagccgttttcaaaaagcgtacgcatacccgcctgtcgtgcgtgcgtttccagcgattcaacgtcggtattagcggaaataagctgacgaatgaccggcgttatgggcagaacttcaaataaggccgtacgaccataaaaaccgtggtagcaatgtacacaaccgggtgcctgccagtggggcagcggcgatggccatacattgtctggaatgtggatgggctccccttgctgccggcgacaatgtgggcaaagtttgcgtaccagacgctgggctattaccagcgtaagcgccgatgatagcatccagcgggcgacccccatttgctgtaaacgtaccagcgtttcgcaggtggaattagtgtgtagggtagacaacaccaggtgaccagtttgcgccgctttaatagcgatctctgctgtttcgccatcgcggatctctccgatcatgatgacgtcaggatcctggcgcaataacgcacgcaaaacgccctgaaaggtgagtccggcacgcggatggatttgcgtctggtttagtccggctatggggatctcaactggatcttcgacgctacaaatattaatgtcagcggtattcagcttttgcagggcactataaagcgtgaccgttttgccgctgccggtagggccagttaccagcaccagtccctgtggttgttgcaaggcatgagcaaagtccgccagttgtaacggctgcattccaagcgtgttgacatccagtgcctgacccacctgctgtaacaaccttaataccaccttttcaccaccccgacatggtaaggtcgcaatacgaaatgagacggcgtttcctgccagttcgacagtgaattgcccgtcctgcggcaggcgatgttccgcaatatccaggtttcccagcacttttaatctggcggttaatgcgactccggcatccggtgaaacatccggtaaaggatgcaatacgccgtcgatacgcaagcggatgcggtaggcattgtccgctggttcgatatgaatatcagacgcgcgttgttccagcgcagattgtaacgttcgagttagcaactctgctttgggctgatgcttctcctgaacagctacgggcaatgtctgttgtgtgcgactggcgtgaccttccatttgttggcgcgtccagcaggtgatctcaatacgtttggtggtagcgaaatgcaatgcgtccagtagctcatgcgaaggtgcatcgactaccgcaacatgaaccacctcttcgctggcatccagcaagactccatgataacgcagacacagggcagtgagctgtggaatattcattgccgctccttagttggcgtcatcaaagcggaagacatcttcgcaggcttgctgcaatgcgctgtcactttgaatattgcagttgcgcgtccagccggtgacgccgtttgcgttatcccaacccggtgtcatgacgacgcttagcccattgagactttcttgcccggtcagcgacaccacgccctttgccacactcatggctgaaacatagcgggtggtggtaggcgagggaatgccattgctgccaccgtcgcaggtatctaatccaccatgttccagcgcgcacaactctacggcggtacggtaaggcacaaaggtttgtagcatgtcggtgagtgcggctttgcgcaggtagttttgataagcgggaataccaatggcgcttaaaatggcaatgatgccaataaccaccatcagttcgataagtgtaaaaccgcgttgcttgtccatctgtttcgctccttgatttggttggcgctactttggcaaacgccatcagcacaggcgaggggcaaaaaacgaaacgggaaagcagattccgaggttttttatttcgttgcagcgaaagacaagaaatttgcgaggcgttacgaagaaagttggggaaggggagattatccgcccgcgatggagcggataaatctgtcaactattagcgaaaacgcattgaaaggtcgagtgcttgtacgtgtttagttagcgcaccgacggagataaagtccacgcccgtttcggcaaattcacgcagtgttttgtcagtgacgttgccagacacttccagtagcgccttgccgttggtgcgtttgacggcttcgcgcatctgttctgtttcgaagttatccagcatgatgatatcggctcctgctttcagggcttcatcaagttcttccagattctctacttcgacttctactggcgcatccgggtgcagccaggacgctttttcgaccgcctggcgcactgagccggaggcaataatatggttttctttgatcaggaaggcatcagaaagccccagacggtgattcgctccgccgccgcaaagtaccgcgtatttcagagctgaacgcaggccgggtaaggttttgcgcgtatccaacaactgcgtgttggtgccttccagcaattcgacatagtggcgtaccttactggcaactcctgaaagggtttgcacaaaattaagcgcagtgcgttcgcccgttaacagcacgcgggatgggccttcaagttcgaacaaggattgattggcattgatgacatcgccgtcatccacatgccagattatggtgacatcgtcgcctgccagttgaataaacacctcttcaacccagcgtttgccgcaaaagacgccattctcgcgggtgatcaccgtggcatgagagcgagaattttccggtaaaagttttgccgtaatatcattgttggcatcgactgttccgcctaaatcttcccgcagcgcctgggccaccgcgccggggatatcgagattaatgcgttccagcagctcgtcacgtcgggtgtcagggttatagcggcgaggcggcatgttaaaactccagatagctaacgaatcataaggtagaaacatgctactctgaaccgggtattagcaccacatataaggagatcctgcatgttgttagaacaggggtggctggttggcgcgcgccgcgttccctcaccacattacgattgccgcccggatgacgaaacacccaccctgctggtggtgcacaatattagcctgccgccaggcgagtttggcggtccgtggatcgacgcattattcactggaactattgatccgcaggcacatcctttctttgctgagatcgcccatttgcgcgtctccgctcactgtttgattcgccgtgatggtgaaatagtccagtatgttcctttcgataaacgtgcatggcatgcgggagtctctcagtatcaggggcgcgaacgctgcaatgatttttctattgggattgagcttgaaggcaccgatacgctggcgtataccgatgcgcagtatcaacagcttgcggcggttacgcgggcactgattgattgctatccggatatcgctaaaaacatgacgggccattgtgatattgcgccggatcggaaaaccgatcccggtcctgcatttgattgggcacggtttcgtgtgctggtcagcaaggagacaacatgacgctatttacaaccttactggtgttaattttcgagcgcctgtttaagttgggcgagcactggcagcttgatcatcgtcttgaagcgttctttcggcgggtgaaacatttttctctcgggcgcacgttaggcatgaccattattgcgatgggcgtgacttttttactgttacgcgcattgcagggagtattgttcaacgttcccacgctactggtgtggctgctgattggtttgctgtgtattggcgcaggtaaagttcgtcttcattatcatgcttatctgacagctgcttcacgtaatgatagccatgcccgtgccacgatggctggcgaactcaccatgattcacggcgtcccggcaggctgcgacgaacgtgagtatttgcgtgagctgcaaaatgcattgctgtggattaactttcgtttttatcttgcaccgctgttctggctgattgtggggggaacctggggacccgttacgctgatggggtatgcgtttttgcgtgcatggcaatactggctggcgcgatatcagacgccgcatcatcgtttacagtccggcattgatgccgtgcttcatgtactggattgggtgccggttcgtcttgcgggtgtggtatatgccttgatcggtcatggtgagaaagcgttaccggcctggtttgcttcgctgggtgatttccatacttcgcagtatcaggtgttaacgcgtctggcgcagttctctctggcgcgtgaaccgcatgtcgataaggtggagacgccgaaggcagcggtttcaatggcgaagaaaacctcgttcgtggtcgtggtggtgattgcactactgacgatttacggggcgttggtgtaaagattattgccctcaccctgtacgggtgagggcgtagagagattaatgcgcttttacggctttggcggttttctctttaaacagatagccgatacctaacacgatcagccataccgggatcaggtataccgaaatcgccattcctggggtcatcagcataatcaccagtaccgccgccataaacagcaggcagatccagttacccagcggataaagcagagcagggaagcgagttaccacgccttgttcctgcttggcgcgacggaatttcatatgcgccaggctaatcatcgcccagttgattaccagtgcagataccaccagcgccattaacagtccgaaagcggactctggggcaaggtagttaatcagtacgcacaacgccgttaccagtgcagacaccagaatggtatttactggtacaccacgtttatcgacagacgccagcgcttttggcgcattaccctgttgtgccagaccaaacagcatacggctgttgcaatatacgcagctgttgtacacggagagcgccgcagtcagtaccacgatgttcagcgcattcgccacaaaggtatcgcctaactcgtggaagatcagcacaaacggactggtatcggcggtaacgcgggtccacggcatcagtgagagcagaacggctaacgaaccaatatagaaaatcaggatgcggtagataacctggttagttgctttcggtatactttgctccgggttatcagcttctgctgcggtgatccccaccagttccagaccaccgaacgagaacatgataatcgccatcatcatcaccagcccggtgaagccgtgcggcaggaaaccaccctgatcccacaggttgctaacggtcgcctgcgggccgccgttgccactgaatagcagccagccgccgaagatgatcatcgctaccaccgcgataactttgataatggcaaaccagaactccatctcgccaaacactttaacgttggtcaggttgatggcgttaatcaccacaaagaatacggcggcagaaacccaggtggggatttccggataccagaactgaatgtatttacccacggcagtcagctcagccatggcaactaaaacgtacagtacccagtagttccagccagaggcgaaaccggcaaaactgccccagtatttataagcaaagtggctaaaggagcctgcgacaggttcttcgaccaccatttcacccagctgacgcatgatcagaaaggcgataaaaccagcaatggcgtaacccaggataatccctggccctgcggactgtattacggaggcgctacccaggaataacccggtccctatcgcgccacccagcgcgataagctgaatatggcggtttttaaggccgcgctttagctgctcgccgtgctgttgaccttccatcatgaaacctcgtgcggtggttgtttttttgatctacgcagtgatgcgtgtgtaagtttgcaattccgtttgttgtattaatttgtttacatcaaagaagtttgaattgttacaaaaagacttccgtcagatcaagaataatggtatgcggcagcgaatgcacccgctttatgcatggttgaagatgagttgcttaaaaagaaaccgtttgtaaagctcagcctcaacccctctcaatatgtagaatgaatttaaattcgttttaattgaattaaaaatcacaaaattggtaagtgaatcggttcaattcggatttttatagtttaataatcgttaaaaaactcctttcctacgtaaagtctacatttgtgcatagttacaactttgaaacgttatatatgtcaagttgttaaaatgtgcacagtttcatgatttcaatcaaaacctgtatggacataaggtgaatactttgttactttagcgtcacagacatgaaattggtaagaccaattgacttcggcaagtggcttaagacaggaactcatggcctacagcaaaatccgccaaccaaaactctccgatgtgattgagcagcaactggagtttttgatcctcgaaggcactctccgcccgggcgaaaaactcccaccggaacgcgaactggcaaaacagtttgacgtctcccgtccctccttgcgtgaggcgattcaacgtctcgaagcgaagggcttgttgcttcgtcgccagggtggcggcacttttgtccagagcagcctatggcaaagcttcagcgatccgctggtggagctgctctccgaccatcctgagtcacagtatgacttgctcgaaacacgacacgccctggaaggtatcgccgcttattacgccgcgctgcgtagtaccgatgaagacaaggaacgcatccgtgaactccaccacgccatagagctggcgcagcagtctggcgatctggacgcggaatcaaacgccgtactccagtatcagattgccgtcaccgaagcggcccacaatgtggttctgcttcatctgctaaggtgtatggagccgatgttggcccagaatgtccgccagaacttcgaattgctctattcgcgtcgcgagatgctgccgctggtgagtagtcaccgcacccgcatatttgaagcgattatggccggtaagccggaagaagcgcgcgaagcatcgcatcgccatctggcctttatcgaagaaattttgctcgacagaagtcgtgaagagagccgccgtgagcgttctctgcgtcgtctggagcaacgaaagaattagtgatttttctggtaaaaattatccagaagatgttgtaaatcaagcgcatataaaagcgcggcaactaaacgtagaacctgtcttattgagctttccggcgagagttcaatgggacaggttccagaaaactcaacgttattagatagataaggaataacccatgtcagaacgtttcccaaatgacgtggatccgatcgaaactcgcgactggctccaggcgatcgaatcggtcatccgtgaagaaggtgttgagcgtgctcagtatctgatcgaccaactgcttgctgaagcccgcaaaggcggtgtaaacgtagccgcaggcacaggtatcagcaactacatcaacaccatccccgttgaagaacaaccggagtatccgggtaatctggaactggaacgccgtattcgttcagctatccgctggaacgccatcatgacggtgctgcgtgcgtcgaaaaaagacctcgaactgggcggccatatggcgtccttccagtcttccgcaaccatttatgatgtgtgctttaaccacttcttccgtgcacgcaacgagcaggatggcggcgacctggtttacttccagggccacatctccccgggcgtgtacgctcgtgctttcctggaaggtcgtctgactcaggagcagctggataacttccgtcaggaagttcacggcaatggcctctcttcctatccgcacccgaaactgatgccggaattctggcagttcccgaccgtatctatgggtctgggtccgattggtgctatttaccaggctaaattcctgaaatatctggaacaccgtggcctgaaagatacctctaaacaaaccgtttacgcgttcctcggtgacggtgaaatggacgaaccggaatccaaaggtgcgatcaccatcgctacccgtgaaaaactggataacctggtcttcgttatcaactgtaacctgcagcgtcttgacggcccggtcaccggtaacggcaagatcatcaacgaactggaaggcatcttcgaaggtgctggctggaacgtgatcaaagtgatgtggggtagccgttgggatgaactgctgcgtaaggataccagcggtaaactgatccagctgatgaacgaaaccgttgacggcgactaccagaccttcaaatcgaaagatggtgcgtacgttcgtgaacacttcttcggtaaatatcctgaaaccgcagcactggttgcagactggactgacgagcagatctgggcactgaaccgtggtggtcacgatccgaagaaaatctacgctgcattcaagaaagcgcaggaaaccaaaggcaaagcgacagtaatccttgctcataccattaaaggttacggcatgggcgacgcggctgaaggtaaaaacatcgcgcaccaggttaagaaaatgaacatggacggtgtgcgtcatatccgcgaccgtttcaatgtgccggtgtctgatgcagatatcgaaaaactgccgtacatcaccttcccggaaggttctgaagagcatacctatctgcacgctcagcgtcagaaactgcacggttatctgccaagccgtcagccgaacttcaccgagaagcttgagctgccgagcctgcaagacttcggcgcgctgttggaagagcagagcaaagagatctctaccactatcgctttcgttcgtgctctgaacgtgatgctgaagaacaagtcgatcaaagatcgtctggtaccgatcatcgccgacgaagcgcgtactttcggtatggaaggtctgttccgtcagattggtatttacagcccgaacggtcagcagtacaccccgcaggaccgcgagcaggttgcttactataaagaagacgagaaaggtcagattctgcaggaagggatcaacgagctgggcgcaggttgttcctggctggcagcggcgacctcttacagcaccaacaatctgccgatgatcccgttctacatctattactcgatgttcggcttccagcgtattggcgatctgtgctgggcggctggcgaccagcaagcgcgtggcttcctgatcggcggtacttccggtcgtaccaccctgaacggcgaaggtctgcagcacgaagatggtcacagccacattcagtcgctgactatcccgaactgtatctcttacgacccggcttacgcttacgaagttgctgtcatcatgcatgacggtctggagcgtatgtacggtgaaaaacaagagaacgtttactactacatcactacgctgaacgaaaactaccacatgccggcaatgccggaaggtgctgaggaaggtatccgtaaaggtatctacaaactcgaaactattgaaggtagcaaaggtaaagttcagctgctcggctccggttctatcctgcgtcacgtccgtgaagcagctgagatcctggcgaaagattacggcgtaggttctgacgtttatagcgtgacctccttcaccgagctggcgcgtgatggtcaggattgtgaacgctggaacatgctgcacccgctggaaactccgcgcgttccgtatatcgctcaggtgatgaacgacgctccggcagtggcatctaccgactatatgaaactgttcgctgagcaggtccgtacttacgtaccggctgacgactaccgcgtactgggtactgatggcttcggtcgttccgacagccgtgagaacctgcgtcaccacttcgaagttgatgcttcttatgtcgtggttgcggcgctgggcgaactggctaaacgtggcgaaatcgataagaaagtggttgctgacgcaatcgccaaattcaacatcgatgcagataaagttaacccgcgtctggcgtaagaggtaaaagaataatggctatcgaaatcaaagtaccggacatcggggctgatgaagttgaaatcaccgagatcctggtcaaagtgggcgacaaagttgaagccgaacagtcgctgatcaccgtagaaggcgacaaagcctctatggaagttccgtctccgcaggcgggtatcgttaaagagatcaaagtctctgttggcgataaaacccagaccggcgcactgattatgattttcgattccgccgacggtgcagcagacgctgcacctgctcaggcagaagagaagaaagaagcagctccggcagcagcaccagcggctgcggcggcaaaagacgttaacgttccggatatcggcagcgacgaagttgaagtgaccgaaatcctggtgaaagttggcgataaagttgaagctgaacagtcgctgatcaccgtagaaggcgacaaggcttctatggaagttccggctccgtttgctggcaccgtgaaagagatcaaagtgaacgtgggtgacaaagtgtctaccggctcgctgattatggtcttcgaagtcgcgggtgaagcaggcgcggcagctccggccgctaaacaggaagcagctccggcagcggcccctgcaccagcggctggcgtgaaagaagttaacgttccggatatcggcggtgacgaagttgaagtgactgaagtgatggtgaaagtgggcgacaaagttgccgctgaacagtcactgatcaccgtagaaggcgacaaagcttctatggaagttccggcgccgtttgcaggcgtcgtgaaggaactgaaagtcaacgttggcgataaagtgaaaactggctcgctgattatgatcttcgaagttgaaggcgcagcgcctgcggcagctcctgcgaaacaggaagcggcagcgccggcaccggcagcaaaagctgaagccccggcagcagcaccagctgcgaaagcggaaggcaaatctgaatttgctgaaaacgacgcttatgttcacgcgactccgctgatccgccgtctggcacgcgagtttggtgttaaccttgcgaaagtgaagggcactggccgtaaaggtcgtatcctgcgcgaagacgttcaggcttacgtgaaagaagctatcaaacgtgcagaagcagctccggcagcgactggcggtggtatccctggcatgctgccgtggccgaaggtggacttcagcaagtttggtgaaatcgaagaagtggaactgggccgcatccagaaaatctctggtgcgaacctgagccgtaactgggtaatgatcccgcatgttactcacttcgacaaaaccgatatcaccgagttggaagcgttccgtaaacagcagaacgaagaagcggcgaaacgtaagctggatgtgaagatcaccccggttgtcttcatcatgaaagccgttgctgcagctcttgagcagatgcctcgcttcaatagttcgctgtcggaagacggtcagcgtctgaccctgaagaaatacatcaacatcggtgtggcggtggataccccgaacggtctggttgttccggtattcaaagacgtcaacaagaaaggcatcatcgagctgtctcgcgagctgatgactatttctaagaaagcgcgtgacggtaagctgactgcgggcgaaatgcagggcggttgcttcaccatctccagcatcggcggcctgggtactacccacttcgcgccgattgtgaacgcgccggaagtggctatcctcggcgtttccaagtccgcgatggagccggtgtggaatggtaaagagttcgtgccgcgtctgatgctgccgatttctctctccttcgaccaccgcgtgatcgacggtgctgatggtgcccgtttcattaccatcattaacaacacgctgtctgacattcgccgtctggtgatgtaagtaaaagagccggcccaacggccggcttttttctggtaatctcatgaatgtattgaggttattagcgaatagacaaatcggttgccgtttgttgtttaaaaattgttaacaattttgtaaaataccgacggatagaacgacccggtggtggttagggtattacttcacataccctatggatttctgggtgcagcaaggtagcaagcgccagaatccccaggagcttacataagtaagtgactggggtgagggcgtgaagctaacgccgctgcggcctgaaagacgacgggtatgaccgccggagataaatatatagaggtcatgatgagtactgaaatcaaaactcaggtcgtggtacttggggcaggccccgcaggttactccgctgccttccgttgcgctgatttaggtctggaaaccgtaatcgtagaacgttacaacacccttggcggtgtttgcctgaacgtcggctgtatcccttctaaagcactgctgcacgtagcaaaagttatcgaagaagccaaagcgctggctgaacacggtatcgtcttcggcgaaccgaaaaccgatatcgacaagattcgtacctggaaagagaaagtgatcaatcagctgaccggtggtctggctggtatggcgaaaggccgcaaagtcaaagtggtcaacggtctgggtaaattcaccggggctaacaccctggaagttgaaggtgagaacggcaaaaccgtgatcaacttcgacaacgcgatcattgcagcgggttctcgcccgatccaactgccgtttattccgcatgaagatccgcgtatctgggactccactgacgcgctggaactgaaagaagtaccagaacgcctgctggtaatgggtggcggtatcatcggtctggaaatgggcaccgtttaccacgcgctgggttcacagattgacgtggttgaaatgttcgaccaggttatcccggcagctgacaaagacatcgttaaagtcttcaccaagcgtatcagcaagaaattcaacctgatgctggaaaccaaagttaccgccgttgaagcgaaagaagacggcatttatgtgacgatggaaggcaaaaaagcacccgctgaaccgcagcgttacgacgccgtgctggtagcgattggtcgtgtgccgaacggtaaaaacctcgacgcaggcaaagcaggcgtggaagttgacgaccgtggtttcatccgcgttgacaaacagctgcgtaccaacgtaccgcacatctttgctatcggcgatatcgtcggtcaaccgatgctggcacacaaaggtgttcacgaaggtcacgttgccgctgaagttatcgccggtaagaaacactacttcgatccgaaagttatcccgtccatcgcctataccgaaccagaagttgcatgggtgggtctgactgagaaagaagcgaaagagaaaggcatcagctatgaaaccgccaccttcccgtgggctgcttctggtcgtgctatcgcttccgactgcgcagacggtatgaccaagctgattttcgacaaagaatctcaccgtgtgatcggtggtgcgattgtcggtactaacggcggcgagctgctgggtgaaatcggcctggcaatcgaaatgggttgtgatgctgaagacatcgcactgaccatccacgcgcacccgactctgcacgagtctgtgggcctggcggcagaagtgttcgaaggtagcattaccgacctgccgaacccgaaagcgaagaagaagtaatttttcgtttgccggaacatccggcaattaaaaaagcggctaaccacgccgctttttttacgtctgcaatttacctttccagtcttcttgctccacgttcagagagacgttcgcatactgctgaccgttgctcgttattcagcctgacagtatggttactgtcgtttagacgttgtgggcggctctcctgaactttctcccgaaaaacctgacgttgttcaggtgatgccgattgaacacgctggcgggcgttatcacgttgctgttgattcagtgggcgctgctgtactttttccttaaacacctggcgctgctctggtgatgcggactgaatacgctcacgcgctgcgtctcttcgctgctggttctgcgggttagtctgcattttctcgcgaaccgcctggcgctgctcaggcgaggcggactgaatgcgctcacgcgctgcctctcttcgctgctggatcttcgggttagtctgcattctctcgcgaactgcctggcgctgctcaggcgaggcggactgataacgctgacgagcggcgtccttttgttgctgggtcagtggttggcgacggctgaagtcgtggaagtcgtcatagctcccatagtgttcagcttcattaaaccgctgtgccgctgcctgacgttgggtatctcgtgtaatgactggtgcggcgtgtgttcgttgctgaaactgatttgctgccgcctgacgctggctgtcgcgcgttggggcaggtaattgcgtggcgctcattccgccgttgacatcggtttgatgaaaccgctttgccatatcctgatcatgatagggcacaccattacggtagtttggattgtgccgccatgccatattcttatcagtaagatgctcaccggtgatacggttgaaattgttgacgtcgatattgatgttgtcgccgttgtgttgccagccattaccgtcacgatgaccgccatcgtggtgatgataatcatcattgtcatgatgatgatggtcatgatcgtcgtcgtcccagtcgatgctgctgaatagtgcgtacgtggtagcaacgcccatgctatagccgaatccgcgtacaaagctgtcaacaaacggttctccggctggtggtggcagataaaccggcggatacgcagtattggcccagttcccgtaaaccacggttgggttgtagttgggaatatagaccacatcaggattggcgggctcaatggaaatgacggttgttgccggctctgtaatgacggggttggcagttaaaactgtattggatggtatgacgggtgccgtgactgtctgttttaccggtacagctttcttcgttgtggtaataactttctgttcggttgatgacttcagcgagccggtttgttgcgccagttgccgcaatcgctgtaccgagtccatcacgtcctgcggctgggccagaaaagcatcgcccaggttttgcacccattgcgggttttcgcccatcaatgccatcaattgtggaaaggccaccagtgatttaacgctggcgtcccacggctggtcagataccgcctgaatagcagcatcgccttgtttaagtggattatcgtgcgaccattgcactgcttgagcaacgtttgtcggataggttgatgccatcagcacctgcgaaagtagggcgtcgggatacagcgcgacgggcgcgacccattgatctatttgtgcagtgctgaatgcggatttgacgacggcgggtgttacgggaggtgcggaaaccgttgcaggaaacgtaaccgcggcagcgtcagacacagccagttgtgtcgattgcggttccacaggcgcttccactgtgcggctttttatatatagcccggtagaggcggcacaaagcccggcactgcaaattagcgccagcacatggggtttaaacggcaaagtcattttcataattcggatctcaaggaaatcgcaatggtcggcgaactgccacccgcaggtgctgtgaatccgagtataaagaggcggtagtttaaattttgactaatcttgggattcgttgagaaaggtgattatcaccatgcgaattaacgaagtttttacggagggaaacaatctctagaccatccttaacgattcagccacttttttatgttgcttttttgtaaacagattaacacctcgtcaaaatcctgctattctgcccgttgcggtactgggcatttaccctacaaactgctgtctcacaggagcgtgaagagaatcgcctgccgcactatgacaatgagagcgaggagaaccgtcgtgctagaagaataccgtaagcacgtagctgagcgtgccgctgaggggattgcgcccaaacccctggatgcaaaccaaatggccgcacttgtagagctgctgaaaaacccgcccgcgggcgaagaagaattcctgttagatctgttaaccaaccgtgttcccccaggcgtcgatgaagccgcctatgtcaaagcaggcttcctggctgctatcgcgaaaggcgaagccaaatcccctctgctgactccggaaaaagccatcgaactgctgggcaccatgcagggtggttacaacattcatccgctgatcgacgcgctggatgatgccaaactggcacctattgctgccaaagcactttctcacacgctgctgatgttcgataacttctatgacgtagaagagaaagcgaaagcaggcaacgaatatgcgaagcaggttatgcagtcctgggcggatgccgaatggttcctgaatcgcccggcgctggctgaaaaactgaccgttactgtcttcaaagtcactggcgaaactaacaccgatgacctttctccggcaccggatgcgtggtcacgcccggatatcccactgcacgcgctggcgatgctgaaaaacgcccgtgaaggtattgagccagaccagcctggtgttgttggtccgatcaagcaaatcgaagctctgcaacagaaaggtttcccgctggcgtacgtcggtgacgttgtgggtacgggttcttcgcgtaaatccgccactaactccgttctgtggtttatgggcgatgatattccacatgtgccgaacaaacgcggcggtggtttgtgcctcggcggtaaaattgcacccatcttctttaacacgatggaagacgcgggtgcactgccaatcgaagtcgacgtctctaacctgaacatgggcgacgtgattgacgtttacccgtacaaaggtgaagtgcgtaaccacgaaaccggcgaactgctggcgaccttcgaactgaaaaccgacgtgctgattgatgaagtgcgtgctggtggccgtattccgctgattatcgggcgtggcctgaccaccaaagcgcgtgaagcacttggtctgccgcacagtgatgtgttccgtcaggcgaaagatgtcgctgagagcgatcgcggcttctcgctggcgcaaaaaatggtaggccgtgcctgtggcgtgaaaggcattcgtccgggcgcgtactgtgaaccgaaaatgacttctgtaggttcccaggacaccaccggcccgatgacccgtgatgaactgaaagacctggcgtgcctgggcttctcggctgacctggtgatgcagtctttctgccacaccgcggcgtatccgaagccagttgacgtgaacacgcaccacacgctgccggacttcattatgaaccgtggcggtgtgtcgctgcgtccgggtgacggcgtcattcactcctggctgaaccgtatgctgctgccggataccgtcggtaccggtggtgactcccatacccgtttcccgatcggtatctctttcccggcgggttctggtctggtggcgtttgctgccgcaactggcgtaatgccgcttgatatgccggaatccgttctggtgcgcttcaaaggcaaaatgcagccgggcatcaccctgcgcgatctggtacacgctattccgctgtatgcgatcaaacaaggtctgctgaccgttgagaagaaaggcaagaaaaacatcttctctggccgcatcctggaaattgaaggtctgccggatctgaaagttgagcaggcctttgagctaaccgatgcgtccgccgagcgttctgccgctggttgtaccatcaagctgaacaaagaaccgatcatcgaatacctgaactctaacatcgtcctgctgaagtggatgatcgcggaaggttacggcgatcgtcgtaccctggaacgtcgtattcagggcatggaaaaatggctggcgaatcctgagctgctggaagccgatgcagatgcggaatacgcggcagtgatcgacatcgatctggcggatattaaagagccaatcctgtgtgctccgaacgacccggatgacgcgcgtccgctgtctgcggtacagggtgagaagatcgacgaagtgtttatcggttcctgcatgaccaacatcggtcacttccgtgctgcgggtaaactgctggatgcgcataaaggtcagttgccgacccgcctgtgggtggcaccgccaacccgtatggacgccgcacagttgaccgaagaaggctactacagcgtcttcggtaagagtggtgcgcgtatcgagatccctggctgttccctgtgtatgggtaaccaggcgcgtgtggcggacggtgcaacggtggtttccacctctacccgtaacttcccgaaccgtctgggtactggcgcgaatgtcttcctggcttctgcggaactggcggctgttgcggcgctgattggcaaactgccgacgccggaagagtaccagacctacgtggcgcaggtagataaaacagccgttgatacttaccgttatctgaacttcaaccagctttctcagtacaccgagaaagccgatggggtgattttccagactgcggtttaaaaagtcagcgcacgcgctgcgcataaacgacacaatgcccggtgaatgagattcccgggcatttttttatttctaaaccatcgccgttccgctgtttttctccggtaaggctgcgataattacatcaatggcgcaatgcgatttcggtgcattgccgggagcagaggaacacactatggattacgaatttctgcgcgatattaccggagtggtaaaggtgcgtatgtccatggggcatgaagtggtcgggcactggtttaatgaagaggtgaaagaaaacctggccttgcttgatgaagtggaacaagcagcgcacgcactgaaaggtagcgaacggtcctggcaacgggcagggcatgaatacaccctgtggatggacggtgaagaggtgatggttcgcgccaatcaactggaattcgctggcgatgaaatggaagaggggatgaactactacgacgaagaaagcctgtcgctatgcggcgttgaggattttctgcaggtcgtggcggcttaccgcaatttcgtgcagcagaagtaaataaatctggcggagcctgggagctccgccagagccgttaaacagctggcatattgcgcccgtaataaatctcgcgcatttctttccacagcgcagcggtaatttcctggcgctcgctgtcggttaagtcttccggtttggtgtggaacatgtagtgcttaaggtcgaactctttaagcaacatcttggtatggaagatattttcctgatagacgttcacatccaccatgtcatacagcgccttcatatcgtcagacataaagttctgaatcgaattaatctcatggtcgataaagtgcttcataccgttaatgtcgcgggtaaaaccgcgcacgcgataatcaatggttacgatatcggactcaagctggtggatcaggtaattcagcgccttcagcggagaaatcacgccgcaggtagagacttcaatatcggcgcggaaggtacataaaccgccttcaggatgactttccgggtaggtatgtacgcaaatatgacttttatcaagatgggcaacgaccgtttctggcagtgggccggggtgttctgttttgtcgatgagtttcgggtcaaccggttcttcactcaccagaatagtgacgctggcaccctgtggttcgtaatcctggcgggcgatgttaagaatattagccccgataatggaacaggtttctgacaggatttcggtcagacggttggcattatagagttcatcgatataagcaatataaccgtcgcgctcttcggcagttttggcgtagcagatatcgtaaatacaaaaactcagacttttggtcagattattaaagccatgcagtttcagttttttcaatttcttatcttctccttaggacggctgtgaagccagtgcgtcttgcagatactgaggtaaggcaaaagctgccgtatggattgccggattgtaataacggcatttcaggccagaggcgagaaaacgcgcctgaataatttcggttgagagatggcgtaaggcgtcgttatctgtcgcccatgcaaaagtcatgataccgccgtaataggtcgggatcgccgcctgataaaagccaacgtcgctgaagtaatggctgagtttgcgatggctgtcgatggcttcttcctgctgtaaaaagcagacgccgttttgtgcgacgaagataccgccaggattcaggcaacgtttgcagccttcataaaatgccgaagtgaaaaggctttcgccgggaccgataggatcggtgcagtcggagataatgacatcaaaggtctggctggtttgattaacgaaattgacgccatcgtcgatcaccagcttaaagcgcggatcgtcgtagctaccggcgttatggttgggtagatactgacggcagaacgatacgacacccgcatcgatttccaccatcgtgattgactcaacgtttttatgtcgggttacttcacgcagcatggcaccgtcgccgccgccgataatcagcacatgtttcgcgtgaccatgggccagtagcggaacatgggtcatcatctcatgatagataaactcgtcgcgctcggtggtttgtactacgccatccagcgccattacgcgaccaaatgcagcgttctcaaaaatgatcagatcctggtgatcggtcttttcatgatacagaacgttatctaccgcaaagtactgcccaaactggtcgtgtagcgtttcatgccactgttttttttcggccatgggttgatacctcctttgttaacacccgtaaaaaaagggcgcaacataatagctaacattgaccgcggatgcacggtcaatatttctacaaaaaggtatcagggattatttgacgtaggcaagcaggcttaaggaatcgcgggccagggctttgcattttttagcgacgggaatgccaatgccgctgagatcgcggtagctgtcttcaccgagggctttcatgtcgaaggtgtcgtaattactgaggtcccactggttttgctgagcgaaaaagaccagtgcgcgacgaatttgcccgttaggtaagttctggtaaccacaatcgttcttcagaaagacaaaaactgccgttaaatcggccatatcttcggcttcagactcgctgagcgcgtaactgtttgcgcagacggccatcaggctgccgaataacactgttctgaaaaacgtcttcattgcttctaccaggggcttaaagaagataaacgttagcacactgcgagcgaggcgacgaccattattgtcgattaaattgtgtctgcggcttgaccttcccgtaaggggaaggactatgctcaacgtttgattttgtttcgcctgcttaagaataaggaaataactatgcaacgtcgtgatttcttaaaatattccgtcgcgctgggtgtggcttcggctttgccgctgtggagccgcgcagtatttgcggcagaacgcccaacgttaccgatccctgatttgctcacgaccgatgcccgtaatcgcattcagttaactattggcgcaggccagtccacctttggcgggaaaactgcaactacctggggctataacggcaatctgctggggccggcggtgaaattacagcgcggcaaagcggtaacggttgatatctacaaccaactgacggaagagacaacgttgcactggcacgggctggaagtaccgggtgaagtcgacggcggcccgcagggaattattccgccaggtggcaagcgctcggtgacgttgaacgttgatcaacctgccgctacctgctggttccatccgcatcagcacggcaaaaccgggcgacaggtggcgatggggctggctgggctggtggtgattgaagatgacgagatcctgaaattaatgctgccaaaacagtggggtatcgatgatgttccggtgatcgttcaggataagaaatttagcgccgacgggcagattgattatcaactggatgtgatgaccgccgccgtgggctggtttggcgatacgttgctgaccaacggtgcaatctacccgcaacacgctgccccgcgtggttggctgcgcctgcgtttgctcaatggctgtaatgcccgttcgctcaatttcgccaccagcgacaatcgcccgctgtatgtgattgccagcgacggtggtctgctacctgaaccagtgaaggtgagcgaactgccggtgctgatgggcgagcgttttgaagtgctggtggaggttaacgataacaaaccctttgacctggtgacgctgccggtcagccagatggggatggcgattgcgccgtttgataagcctcatccggtaatgcggattcagccgattgctattagtgcctccggtgctttgccagacacattaagtagcctgcctgcgttaccttcgctggaagggctgacggtacgcaagctgcaactctctatggacccgatgctcgatatgatggggatgcagatgctaatggagaaatatggcgatcaggcgatggccgggatggatcacagccagatgatgggccatatggggcacggcaatatgaatcatatgaaccacggcgggaagttcgatttccaccatgccaacaaaatcaacggtcaggcgtttgatatgaacaagccgatgtttgcggcggcgaaagggcaatacgaacgttgggttatctctggcgtgggcgacatgatgctgcatccgttccatatccacggcacgcagttccgtatcttgtcagaaaatggcaaaccgccagcggctcatcgcgcgggctggaaagataccgttaaggtagaaggtaatgtcagcgaagtgctggtgaagtttaatcacgatgcaccgaaagaacatgcttatatggcgcactgccatctgctggagcatgaagatacggggatgatgttagggtttacggtataaaaagaccgtattcggaaatatgcccggatctctccgggcattaaactgatgacaaacgcaaatctgcctgatgcgctacgcttatcaggcctacgctagctgtgcaatccattgattttgcacaattttgtaggctggataaggcgttcacgccgcatccggcatgaacaacgcgcacgttgtcagcaatctgagcaagtcttacttcacatcatccggcagcgcataagccacaatatagtcgcccatcttcgtaccaaatgaaccgtgaccgcctgcggagatcaccacatactgcttaccattcacttcataggtcattggcgtagcctgaccacccgctggtaaacgaccctgccacagtttttcaccgttgctcatgttgtaagcgcgcaggtagttatctgccgtagcggcgataaacagcacgttacccgccgtggagattggcccgcccagcatcggcatacccatattgaacggcaccggaaccggcatcgggaacggcatactgtcctgcggcgtaccaatacgtttcttccacaccacttcattagttttcagatccagcgccgagatataaccccatgctggctgtttacatggcagaccaaatggtgagaggaacgggttgagcgtgacaccatacggtacaccgtactgtggctgaatgccggattccgtacccgtgcctttggcatctttcggctgctccatcgggttgccaggaccacgcgggatcagtttcgaaacaaacggcagtgccattgggttggcaatcgccacttcacgatttggatcaacggaaatcccgccccattcgaacatccccaggttacccgggaagaccagcgtaccctgttcagatggcggggtgaaaatgccttcatagcgcatctggtggaacatcacgcggcacaccagttggtcaaacatggtggctccccacatatccgcaccgctcaaatctttcgtcggacggaagctcagttcagaaaacggttgagttggggttacgtaatcgcctttcgctgcaccttggggaaccggtttttccggtgccggaaccaccagttcgccattacgacgatcgagcacaaaaatgttgccggttttcgccggagcgtaaataactggcactttctgaccattaacggtgatgtccgccagcgtcggctgtgccggaagatccatgtcccacaggtcgtggtgaacggtctggtagctccacgccagtttcccggtagtggcattcagcgccagaatcgagctggcataacgttcctgttccggtgtgcggttaccgccccagatatccggcgtggtcacgcccatcggcagatagaccagatccagcttcgcgtcataggccgctggtgcccaggagtttggcgagttaaaggtaaaggtgtgttcgtcagacgggattgcgttcggatctttcgcgccgggatcaaaagcccacagcagctccccggtgttgacatcaaaaccacggatcacgccagacgtttcgcgggttgagaagttatcggtaactgaaccggccatcacgatggttttatcggtgataatcggtggcgaagtcggttcatacagacccggtttggtgtctggcatattgctttgcagattgagcacgcctttattggcgaaggtttcgcacagtttgccgttttcagcgttaatcgcaatcagtcgaccatcattgaccggaagaatgatacgacgcgggcaatccgccatcacttccggcgaagcggtttctgctttggcttcatgataagagacaccacggcaggttacgtgctggaaagactcgttggttttcagctcaggatcgtaatgccatttctctttgccgctggcggcatcaagcgcaaacaggcgctggtgagcggtacacaggtaaagggtgtcgcccactttaatcggcgtcacttcattggtgatttcacccggatcgttcggctgcttcacatcgccagtacggaacacccaggcttctttcagattatggacgttatcggcgttaatttgtttcagcggcgaaaagcgttgaccttcctgattacgaccataggcaggccagtcctgatcggctacgggggagatagcttcagcaggtgtggcatcggcgcttaaggtgccgttgatctcctgcggatcgttaaatccggcccaggtcaggataccaccgctaatcagcagtgcgaccaccagtgcggcaactgcgccgctggcaggaatgaccaggcgacgccagacaaacggcaggatcagccagatgccgaagaagaccagaatgtcgctgcgcggagtcagcgcccagaagtcgaaaccaacttcccagacgccccaaatcatggtgccgagcagcagggctgcgtatagccaaagcgcggcgcgtttactgcgccacagcatccaggcgacgccgagcatcacaaggccagcgatagggtagtaccaggagccgccaatcgcgaccagccagcctccgccaatgagtagatacagcccgcaaagcgctgcaaaaagggctgttagcgtgacgagtaatcgtcgcgagcctgtattgttaattgccataaagagacaccatttcaattcattaatattttagtagcaattaattataggttttaacatgtgtgatcgtcatcacaattcgagctttattaacagattccgcgaatgaatagttttactggtatactgcgtgtcttgcgctttgttgcggtgccaaaacctgcccgtgcgaagtgatttgtttttaaatcatatggttagagatatgaaacatactgtagaagtaatgatccccgaagcggagattaaagcgcgtatcgccgaactgggtcgtcagattactgagcgttacaaagacagcggcagcgatatggtgctggtgggtctgctgcgtggctcatttatgtttatggcggacctgtgccgtgaagttcaggtatctcatgaagtcgactttatgaccgcctccagctacggtagcggcatgtccaccacccgtgatgtgaaaatcctcaaagatctggatgaagatatccgtggcaaggacgtgctgattgttgaagatatcatcgactcggggaatacactgtcgaaagtgcgtgagatcttaagcctgcgcgaaccgaagtcgctggcgatttgtacgctgctggataaaccgtcccgtcgtgaagtgaacgtcccggtagaatttatcggtttctcgatcccggatgagtttgtggtgggttacggcattgattacgcacagcgttaccgtcatctgccgtatatcggcaaagtgattctgctggacgagtaagtgtgaagttgccggatgtgttgcatccggcatggcatttttatttgtggttggcgtgtttcagcttgaggttggaaatcccgtgacggtaacgttgctcaagggtttcgcggttggtggcggtaacatccagatcacgcagcaagccgtcgtgaatgccgtaggcccagccgtgaatggtaactttctgcccgcgtttccacgctgattgcataatggtggagtggcccaggttatacacctgttccatgacgttcagttcacacaaggtatccagacggcgctcttgcggcatttcgccgagcaatgagctatgtttgaaccagatatcgcggatatgcagcagccagttgttgataagccccagttccgggttttcaactgcggcttgtacgccgccgcaaccgtagtggccacagataataatgtgttcaacttcgagtacatccactgcatactgaaccacggaaaggcagttcaggtcagtgtgaatgaccaggttagcaacattacggtgaacaaagagttcgcccggctcaagaccggttaaacgttctgcaggaacgcgactgtcggaacatccaatccatagaaagcgcggtttttgcgcttgtgccagtttctcaaaaaacccgggatcctcttccaccagcatttttgaccatagtgcattgttgctgatgagtgtatctatgtctttcatggaggttaacgacctgtaaccaaataattacgtttggctaatatagggcaactccgggacgatttaaaccacagataaagtgtaagaacgtaaggtaagtaaaaatttatgaccattgcactggaacttcaacagcttaaaaaaacctatccaggcggcgttcaggcgcttcgtgggatagatttgcaggtcgaagcgggtgatttttatgcgcttctcgggccgaacggggccgggaaatcgaccactatcggtattatcagctctctggtaaataaaacctccgggcgggtcagcgtatttggttacgatctcgagaaggatgtcgtgaacgctaaacgtcagttgggactggtgccgcaggaatttaacttcaacccgtttgaaaccgtgcagcaaattgtggtgaatcaggcagggtactacggcgtggagcgcaaagaagcgtacatccgcagcgaaaagtatcttaaacaactcgatctatggggaaaacgcaacgaacgtgcgcgtatgttatctggcgggatgaagcgccgtttaatgattgcccgtgcgttaatgcatgaacctaaactactgattctcgacgaaccgaccgcaggcgtggatattgaacttcgccgctcaatgtggggctttttgaaggatttaaacgacaaaggcaccaccatcattctcaccacacactacctggaagaagcagaaatgctgtgccgcaatatcggcattattcaacacggtgagctggtggaaaatacctcgatgaaggcgctgctggcgaagctgaaatcggaaacctttattctcgatctcgcaccgaaaagcccgttaccgaagctcgatggctatcagtatcgactggtcgataccgcgacgctggaagttgaagtgctgcgtgagcaggggatcaacagcgtatttacgcagttaagtgagcagggcattcaggtattaagtatgcgtaacaaagctaaccgtctggaagagctgtttgtttcactggttaatgaaaaacaaggagatcgcgcatgatgcatctttactgggtggcgctaaaaagcatctgggcgaaagagatccatcgctttatgcgtatctgggtgcagacgctggtgccgccagtcatcaccatgaccctttactttattatcttcggtaacctgattggttcgcgtattggcgatatgcatggcttcagctatatgcagttcatcgtaccggggctgatcatgatgtcggtgatcaccaatgcctacgccaacgttgcgtcatcattttttggtgccaagttccagcgtaatattgaagagctgctggtagcgccggttccgactcacgtcattattgccggatatgtcggcggtggcgtggcgcgtggtctgtttgttggcattctggtgacggcaatttcactgttttttgtgccatttcaggtgcattcgtgggtattcgttgccttaacgctggtgctcacggcggtgttgttctcccttgcgggtttgctgaacggtgtgtttgccaaaacgttcgatgacatcagcctggtgccaacctttgtgttaacgccactcacgtatttgggcggggtcttttactcactgactttgttgccgccgttctggcaagggctgtcgcacctgaacccaatcgtttatatgatcagtggtttccgctacggcttcctcggtatcaatgatgttccgctggtcactacctttggcgtactggtggtctttattgtggcgttttatttgatctgttggtcgctgatccaacgtggacgtggtttgcgtagctaaggctatttcctctcctctggatttgggggagaggagttttgacggctatcaccctttatcaacaatggtcagggtagactgattttcggctaaggaggaaggcgatgttaggttgggtaattacctgtcacgatgaccgggcgcaagagatactggatgcgctggagaaaaaacatggggcacttcttcagtgccgggccgtgaatttctggcgcggattaagctctaatatgctcagccgcatgatgtgcgatgctctgcatgaagcggactctggtgagggtgtcatcttcttaaccgatatagccggagcgccaccgtatcgcgtggcttcattattaagccacaaacactcccgttgcgaagtgatttctggtgtcacgttaccgttaattgaacagatgatggcttgccgtgaaaccatgaccagttcagagtttcgcgagcgtattgtcgaactgggtgcgccggaggtgagtagtctttggcaccaacaacaaaaaaatccgcctttcgtcctcaaacataatttgtatgagtattaacccgcgattctgatggcgcttttgctacaataaaagcgttgtttcaccctcggttattttttcatgtacaaacaagctgttattctcctgctgatgctgtttaccgcaagtgtcagtgccgcgttacctgcccgttatatgcaaaccatcgaaaatgctgcggtctgggcgcaaattggtgacaagatggtgaccgtggggaatattcgggccggacaaatcattgccgtggagcccactgccgcaagttattacgcatttaattttggctttggcaaaggttttatcgataaaggtcatctcgagccggttcaggggcgacaaaaagttgaagacggtttgggcgacctcaacaagccgctgagtaatcagaacttagttacctggaaagatacgccggtctataacgcgccgagtgcgggaagtgcgccatttggggtactggcggacaatttgcgctacccgattttgcataaactgaaagacaggttaaatcaaacctggtatcagatccgtattggcgatcgactggcctatatcagcgcactggatgcccaacccgataatggcctgtcggtgctaacctatcaccatattctgcgcgacgaagaaaacacccgttttcgccatacttcgacgaccacatcggtacgcgctttcaataaccagatggcctggctgcgtgacaggggatacgcgacactgagcatggtgcagctggaaggctacgtgaagaataagatcaatctccctgcgcgagcggtggtgattacctttgatgatggcctcaagtcggtgagccgctatgcgtatcctgtgttgaaacaatatggcatgaaggcgacggcgtttattgttacctcacgcatcaaacgtcacccgcagaagtggaacccaaaatcgctgcaatttatgagcgtttctgagcttaacgaaattcgcgatgtatttgatttccagtcacatacccattttttgcatcgggtagatggttatcgccgacccatattactgagccgtagtgagcacaatattctgtttgattttgcacgttcacgccgcgctctggcgcaatttaatccgcatgtctggtatctttcgtatccgtttggcggatttaatgacaacgccgtgaaggcagcaaacgatgccggatttcacctggcggtgacaaccatgaaaggcaaagtaaaaccgggggataatccgttgttactaaaacgactttatatcttaagaacggattcgctggagacgatgtcgcggctggtgagtaaccagccgcagggataacaatcaagcaacctgtaccggaatcgctttcgcggtacgtttcatttcattgtcgccttcaaaataggcgacgttgggtcgccaggtgcgagcttcttcatctggcatggtaacgaagctggcgatgatgacaatatcgccgacactggcgcagtgggccgccgcaccgttaacagaaataattctcgaaccgcgttctgccgcgatggcataagtggagaaacgcttgccgttggtgacattccagatatcaatggcttcgttttcgagaataccggctgcgtcaagaaaatcctggtcaatggcgcaagaaccttcatagtgcaggtccgcatgagtcactttcacgcggtggagtttgccctgcagcatcgtgcgaatcataacttctacctttctaccctgtcgttaacgaagcaggcgatgcctgctttgaggaaattctcacgcagtattgcccgatttttgtttagtgtctactcatctgacggcatttgcgtcagcagtttgcgtaccgcgccgaagcgtgccatgtatcgcctgtaacgaattgatatttctctgaacgctgctcggtaaacaataaagaggtggctgacgatagcgcgccttgactggatactgccttcacgcaaagccacacggaagacagggaagatggatgcaccgagtaccacaccgcatgacgcggtatttaaacaatttttaatgcatgcggagacggctcgcgactttctggagatacatttgccagtggaattacgcgaactttgtgacctcaacacgcttcatttagagtcggggagtttcattgaagagagcctgaaaggacacagcacggacgtgctctattccgtgcaaatgcagggcaatcccggttatctgcatgttgtgattgaacaccaaagcaagccggataagaaaatggcctttcgcatgatgcgttattctatagccgccatgcaccggcatctggaggctgaccacgataagctgccgctggtggtgccgatactgttttatcagggcgaggccacaccttatccgctatcaatgtgctggtttgatatgttttactcgccggagctggcgcgacgcgtctataacagtcctttcccgctggtggatatcaccatcacaccggatgacgaaatcatgcaacatcggcggattgcgattctcgaactactgcaaaaacatattcgccagcgcgacttaatgttattgcttgagcaactggtcacgctgatcgacgaagggtacactagcggaagtcagttagttgccatgcaaaactatatgctgcaacgcggtcatactgaacaagcggatttgttttacggtgtgttgagagacagggaaacgggaggggagtctatgatgacgctggcgcagtggtttgaagagaaagggattgagaaggggattcagcagggaagacaggaagtaagtcaggaattcgcccagcgtcttctgagtaaaggaatgtctcgggaagacgttgcagagatggcaaatttacctcttgctgagattgataaggtaattaaccttatttaagttacctgtgttatgacagatgacgtggggtaaattaataactggcgccatcagccgtagcgccagttaagtattacgccagctcgaccattttgttgtcgatcaggcgagcatcgccaagccaggcggctaccagaattactgcccgtttgctggtttcagaaacttccagcaatgtgtcggcatcgcgaatctgaatatcatcggcgcggaagcctttttcattcagttcttgccccgcaatggtaataatttcatcgagatcccgttccccagcctgcaatttgtcagcaatcgaacttaaaactttgtacagaccaggcgcaattttgcgttgttccgccgtcagataaccgttacgggaacttagcgccagaccgtctttggcgcgcataattggcacaccgacaatctcaatatcgaagcccatatcggcaaccattttgcggatcagcgccagttgctgaaaatctttttcaccgaagcaggcgatgtccggctggaccaggttgaacagcttgctgacaatagtcgaaacgccgcgaaaatgtcccggacggctggcaccttccagcatggtcgaaaggccaggaacgtcaacgtaagtgtgggtttcagtaccgttcgggtagatctcttttaccgaaggggcgaaaactaaatccactttacgtttgtttagcttctcgcagtcctcctgcaaggtccgtggataacgagccagatcttccgggcggtcgaactgcatcgggttaacgaaaatactgacgacgaccacatcggcgcgggctttggcttcgtcgaccagcttcatatggccatcgtgcaggttacccatggtaggcaccagcgccacgcgcttgccttccatacgcaggcggcgaatttgctgacgcagcagcggcagggtttcgataattaacacaacgtgactccttaatggaaactgtgttcttcgcccggataaacgccggactccacttcagccatatactgccgcacagccgcgcggatgtcgcccgtttcggcgaggaaatttttagcgaatttaggaatgtgaccgccggtaataccaaaggcgtcgtgcatcacgaggatctgcccgtcagtgacgttgcctgcgccaatgccaataaccgggatcgccagtgcttcggtaatacgttttgccagttcaaccggcacgcattccagcaccagcagctgtgccccagcagcttctaaggctaatgcatcgctgagcagttgatcgcccgcttcatcgccgcgcccctgaactttgtagccaccgaaaatattcactgactgtggtgttaaacctaagtgaccacatacaggaacggcacgttcggtcagcatttgtacggtttctaccagccactcaccgccttcaattttgaccatgttagcaccggcacgcataaccgttgcggcgttttcgaaggcttgttccggcgtggcatacgccataaacggcaggtcagccagcagcaggcagtttggtgcgccgcgacgtacggcggcagtgtggtaggcgatatcggcaacggtaactggcagggtggagtcgtgcccctgaaccgtcatgcccagcgaatcgcccaccagcatgacgttaagcccttcatcagcaaagagtttggcgaagctatagtcataagcggtgatggtcgcgaaacgttttttttcctgtttgtacttctgcagtaaggagatggtggtcggtttcataacgtatcctgataaattgatgttgtgctgtctggcattttatcagtcacattggtgggggcaatgatttatccgtagcagcactgccagaaggtgacagtgctgctacgttatcagggataggttacctggaaagtactggtggctttaaattcgccgggttcgatagcaatattcccgtcttgctttaatgttgcctggaaatgaagaggctgtgatgtgccgttaccttgattagggtaaaccccatcggaggtgtcatcttcggtttcataatctatataaacagaattcgtatcattaggttttaatgtcattagcggatttttactggttgctaaaccttcaatgagtacgccaacgcctttggcggcagtgcttccagtaagcgtattaccaagcagttgtgtgttttgagtacctacttttccagtgacgagttttgtttcaatattacgcacacgaatacaattctgaagcgagatatcaaagggaacaggtgaagcgccatttttaattgtcccagagctatattctcccattctaaccgttgaaccattgactgatggcccggtaagtatggaggtaaaacatgttggtaaggttaatttgacattattcagtgtgaaattgacataaatgtggttgctgtgatctacaacttttgtaccaggactgtaggccttaaacgaataaaggtaatttgatgaactggataactggacttgctgattaagtgtaggatcgaaattagtatctgtataaaattcaacagttatgttgtgtactataccaccaatagcccaaaacttatcgtagtcgtctgctttgttgcaacccttagtttgtagatcgctgtctgtgacggaaaagaaaaattcttggttggaaggatctccgatatagattcctggcgattgaatgtcagttattgtatcgtatgcagaccagacccttgatattaacatggtgtaatacagaccaggaacagatgtattaaatagtttatgtccgccataatctttacctgaatagaccatggcattttcaatagttattggaccaggattcgctctgccagatgtattgcagtaaagaataccaccaccggtacctgtatccaggtatgaccagtacatttttaccccagtcgggccgagctgcgtgggtttataaaaaaccaagttgcttgctgttgatgtgtaattaaaggtcatctgtgcggcagtggaggggcctcgatagttatcaactcctgcattatttcccacaataaaacttgtatatgcactgactgtattacaacaagaatacagtgctaaaaaaagaatgtacctgaagatagtcttcatttttactccaatgtttctttattgttatggtttgcgctgtttttgtttgttattcgtagtaaatatccactaacacatggctcataagttgaccagatgtaacactcaatgcaggatcgattttttgcattcgggtgctaaatttccaggatgaaccattcatgtcatccgacattactggataaacggaacgagatccgcctgaagcattaagaacattgaatgtattcgccgaatcctgagtagaaaatataactactcctacattacttgctcctgacgaaatttcattagcaaatatttgcctagagccagcagccatgacaccgctaagggctctaaaatcaatatgtaactgatttagcacatcgccagttccctgtaatgcacagtcggatacagtgatagtgaactcttttccacctggttgataactttcaggagtaacattacctgaaaaatatcccaccccaacgacgccaagatcaatattaccctggttactgattccgcttttgcaggtgctgttttttacattggcaacaaggtcaatatcctgtccagcaatggctggacaggcgatgcaaaacagtaatgacagaaacagaattattctcttcatcagcttacgttgagtgggatgcatatatagttcctgaatctgtaagtctgttagttataggttactgtaaatgtggctggtgcagaaaacttacccgcagtgacattgtttacggttttatttttttccacgaccaggcgtgcactcatcggataataaacgaccgcattggctgcagtggagattgttacctcttgtgatgctggtgttacacagctaaattgtgttgcactccctgttgccggagttacagtgctccagacttcaacggcgacagcacttgctttatctgcggctgtggaaccatttgcaaaccccgcaccgtcattagcagttccctcgcatgtggctcgcttggttaattttatttgcgcttttttattggggatacccgcacagtctttgaatttgagtttgaatgtttttactttggtcttggcattgatttcagaaatatatacatcaccaaaatcaacaacagaaatgtcctgatcagagtcatttactaatgtagcggtacaagtacccatttctacagtagtaataacggtcagtccaatactgtctgttgccgcataagagagtacgctgaacaatgaggcagccaaaacgacactgctggataatccataacgtaaatttttaaatgtcatcataattatccttcttattgatagatgaaattaaacgtcgccagtgcacgaaaattccccggtacgccttgccctgcatctgtttcacgtagcgcaacggtcatttcaagacccttatcgggctgcatctcgtctgtgctccagcgtatcttttccgcactgttaggtttaaggaaagtggcatcatcagtagtccgttttttgaaacccataccgatattacttgtcgtcgaagatgaatcaccagactgcggtataataagcttaggtgagcttgatgatgcatttccggtcagagtggtatcaatccaactgatgccactgctgcacccactggcaaccagtttaaaatcagcctgagattctgtcgttttattcgcgatcttatccagacccatcttagggattctcaatgtgtagttattattgccatcattcgtgacgttattaccagtaagtgtgatgttacaggttgtcgctttgacagtggctgtaaactctacattaatatccgttgcaaatactgagggtgataataatattcccatcagtatcactattttatgtggcgttgtttttatcatttgacgtcccttgtagttactgaatctgacaccgaattccattcagaataatagattgtgctattttttctgcttctgggctttgttgataatgcgcaagacaacttacgggtttactttgttcgagccatttaatgctgatatttccctgctgctcaataccacgaacaaatgcttgtccaccctgtccaacattaccaatgacattgccttgctcatcataaatatctgcagcaaatggaatatttttaccatcacttcgtgtgatgttcataatggctgattgcccttgcacggtttcaaaatcagcaaagacgactgaaccctgacgcggtacagctactgcactggtactttttaattcaacatcgttctcaagatcgttgatatccagcgcgatacggttttcatgataaggagaaagagcgctggtgacaccataaccccatcgatcgatagtactgttgccataatttattcgcgctccttgagcacctggagcctgaactaccgccagtgtatcggagtcgctaaaactatcattactgaaagtcagtccaccgctatgcaatacaaaaccaccgtcggtgctgagagaaacttgacggctgttatcgctatttgcagaaattgaacctgccagcgttccccatggtgactcatagctggcataacccccaacataactcaaatctttgctggctttattcatcgtatagccagtattcacgctataactgacgcgagcgttatcgctatagccactgctgctaacgttgagttggttattacccttaaagtcactgcttatttgagtatcaatactctggaaacctgaagtacgttgttcagtgccaagtaatttttcaattggaatggtgaaactaagataaacgctatcgtcagtgtcgccgtcttcattccatgaacgctgggcactgacactgtagctgccccaggatgtactgttactgtagccaatagagtaattgctacgattttgtccggaagcccagtaatcggaccaacttccggaaagataaaatgaaccgtaatcttttttctcaaatttcaacggttggttaatactgaccgtaacctgatttttcatgcgtgagtaattacgcatggatttcggttcaagatcttgttcgggatgtttcacttcatcaattagagttagtgcatcattaagaccaaggtaattctgtgtcgaatagcgataggccgcgatattcagtgaagtacttgtttcttcgaataacttgttccaggaaacacgataactttgcccctggtatgttttatcatccgggatacgaacattggaatgagtcacatcgaaagaaaatgcaccaactgaagtattcagaccaagacctaacaaaccagcggtatagttattatcggttatctgaataccggtataacccgtcagatagttattcaggccgtagtagtagcttgcttgaaataaattaggctcatcctgaatatcatcttttaagacctgaccgccgctaatatcccaacgtccaacgccagggcgtaacatttgaacaacggatgagaaaggttgcgagaatgtccgctttgagccatcggattcttcgatggtaacaataagatcgctgccgtaccctgacggactcagatcatcaatgacgaaagcgcctggcggcaccgtcgtttcataaatcttatagccaccttgcgtaatagtgactttggcgttggtattggcaacgccatgaatgataggcgcaaagctggctaaagtcggaggcaacatgcggctgtcactgtataaacgaatgcctcggatactgacggaatcaaaggtttcgcccgtcgtataagactcaccaagaatgagttgagaacgcagcgaggcgatatcacgctgaacataccgattcttaaaatcataattactgccagaatcggtcatccagttgtagttgcccgaggcacgcagtcgccatgcacctaaattcatcccaccgttaaatgcagcataaatgctttcattttttcgaccaggggtttcactatgatatccgttgaggttgtatgacaacatggccgcattaatgccgttttcccataacgatggatcaacatagttttggtaatttttcattacccaggcttgaggaacgtctatatccagacgttgatcgttaacgtcataacgaacagaagcctgagggataatttccgtcaaattgaggcaattgccgagcgtttcatccctggcaagcagaacggctttttcgttatttatatcgggagaattaatatgaaactgcaataaattctttaatgtgatacaagcctgggcgttcttttttccttcaattgcgacaaatgtaatactttggttaatgattggttggtcgtttacataaacactgacgtcgtaaacacccggtatagcggggttaccttcactgtaccggctgagatcaatattagatgcattctgccccatcaggaaggtatggtcatattcaacgagttcagcactgaaagcagtattgcaatacagcagcgcgcaaaacgtggcgatacgggtcagatgatgataatttttagtatattctatagtcacgctatgcttcctgcggaattatatccttgcctgattacagcctggcattaccttcaattgcgccaccaaagtcattaatggcgtaaaaatgcacttttgcagaattcgctttgccattaaggccattgactttcatgacctcatcactaaatggtgcaatcattttcacatcaatcggatagcgtttaccgctagcttctaaatcaccactgctaaaagagacgtagtaaggggttggattggtcactcgtaatgacgccttaccttctgaacctgaccagaaccacttcagggctaacggggcttcagagggatttcccttcaatccatccgggcgatagaaaagttttatacgtgtgcgaaatgccagttgcagcaggctttgattcgcgaccttttctgcatctggttttggtggaacttccagtacgttaaaccagaacacgctctctctgtctttaggcagtgaggtgctggctgtgtacattaatttgattgtttgcccacgtttggcatcaatacgcgatactggcggcgtagcagtaaaagggactgtaatactgccaggctcagcgttgtcatcgccagtatctaaccaactctggacaagcaacgggttattccctttattttccagacgtacgttgacacttttttgatcgcttttatatattacgcgagtacccgaaatgacaatgtccgcaatagacgatgaactaaaagccatacaggttacgaagcataaagctgttgtatgtttggtgttaaaaaacataaaccatccctgatagagttaattaaaacagggaataatataaaatagaaattattattccctgtatattcattcaatcaatttaactggtgaatacttactgataagtaatggtgtatgcagtgttagtttttacataaccagcagttgctgtttggtctgcgacggcacgaacgtaagacgctttaaaatcataaacagcagattttgtcgttgcatccagggctttagtatacacatcgccagggttgttaatttgaacctgtttgatagtggaaccatcaatattgtgtagagcgatattaacgccgtcagatgggttgttaatagacatgtcgttgttcaaagtccctttgctgttaccaaagaaaacagaaccgaaggtcattttagccgtgctacctggattcggatttgctttgctgcagtcaacggtgatgctgaaaggtttagctttagcgccaacggtgtcattcagtacgccagcatcgatttcaccaacggttgcggtttgcagcaggatcagaccatccttgttaccgccgtcaacgcgggtttcacaggtgttatcaacaaccagaccactgatatttaactgaccgccgtccatatcagcagaagcagtacctgcaaccatcgccagcataagaccagacagggcaaaacctaattttttagacataaaaatcctttaataaaattccattagtcagactacatgtttgaagaatgactattcatgacacaaataggagaaacaaatgttagatattaatgagcaatgatatttgttacccaaatttacaaccattgttcattaggtcgcctattgtgcactttagaagcttttgaacaaattaaatttacttaattcaaaattaagtaaaaataagttcacaagtgcaattggttagggtatggagatgggattgatatttatttataggaagttatattatttccgcaaagagatgtttaaactaaaatcgtaattaaggaaagagatgagatatgattttcagaaaatatttatattcgcaatataaataaattaccatttgtttaatttgtcaaatgctcttgtatgtaagatttgacgcaacatctccccatcaggaaacaccaactccggcgcgatttcaaacagcggccacagcataaatccacgattcttcatatcgtagtgcggaacggtcaggcgttcagtatttatcacttcattaccaaacagcatgatgtcgagatccagcgtgcgtggtccccagcgttcagctttgcggacgcgaccttgctgcaattcaatacgctgtgtgtgattgagtagctcttcaggtgcaagagaggtttccagcgccacggctgcgtttaagtaatcgggttgatcttgcggccccagcggtggggtgcggtaaaacgaagaaacggtaagaatgtggctttcagggatatcgcctaatgctttcagggcagcattgacctgctccagcggagaggccagattgctgcctatggcaatatacgccactgtcatgcggtaccctcacgacgtggtgcgcgtttgcgtggacgacgagtacgacgacgcggtgacggttcttcatccagctcgttgagcatccctttttggtctggtggcgcggaaacctggaactcaccccaccatttcaccagacgctgcagttcagcgttacgctcaacttcagctcgcaaggccaacaggtcataagccgcacggaacttaggatgctccagcagtttccatgcgcgtttaccctgacgacgggacatacgcaactgcaactgccagatatcgcgggttaatgtcgtcagacgtttcgggattgccagtgaacggcaggcttcgtccagcacgtcgttcatcgccagcgcgaaagcgtcgtgataggtcaggccgctttcctgggcgatcttctgtgccgtctccagcagtgggtaccagaacatggcggcaaacaggaacgccgggttcacgcgcatatcgttatggatacgcgtatcggtattcttcagcacctgttcaatgatccgctccatcgggctgtcgccattttccgtgaagtagcgggtaatggtcgggaacagcggctggaacagatgatattcacacaacagcttataggtttcgtaaccgtagcccgcttgtagcagtttaagcgattcttcaaacaggcgtgccggtgggatatcgttcagcagggtagcgaggcgagggatcggttctgcggtttccgggctgatgcgcatacccaatttggcggcaaaacgtaccgcgcgcagcatacgtaccggatcttcacggtagcgcgtttccgggttaccaatcagacggataacgccgtccttcagatccttcatgccgccaacgtaatcacggacggtaaaatccgctacgctgtaatacaggctgttgatagtgaaatcgcggcgctgggcgtcttcttcgatggagccgaaaatgttgtcgcgcagcaacatgccgttttgcccgcgttgggaggtcgtgcggtcgctgacgttaccttcgtggtgtccacggaaggtcgcaacttcgataatctccgggccaaacattacatgagccagacggaaacggcgacccaccaggcggcagttacggaacagtttgcgcacctgctcaggcgtggcgttagtggttacgtcaaaatctttcggctttttgccaagtaacaggtcgcgcacgccgccgccaaccagccaggcttcgtatcccgctttattgagcctgtacattaccttcagggcattttcactgatatctttgcgggaaatagcatgctgctcacgcgggatcaccgtcacctgtggacgggcgactgcctgttcagcctcgctttcctcgcggcttagcaccttgcggcaaaaattagcgactcgggtaaaaatagtacacctcggtagtgtcaaacatcattcaggacaaaaaaatagcggctaatcatagctcagcatgacgcatttgagaatgttgaatttacaattgccgactcgggcacggcggtaagccgccagtttttgacggctgactgaaggatttgctcgacgctgaaatcctgccagtgtgcttctgcctgctgccccagaaattgaagtgccgcgattagtaccgggcgtggatcgcctttcggcaacgcaggcgcatgattctgcttggaaagtttagcgccttgtggattaagcgccagcggcagatgaatgtaatctggcactttccagccaaaaagctggtacagcgagatttgccttactgttggttcaatcagatcagccccacgcactatttctgtaacgccctggaaatgatcatcaaccacaacagccaggttgtaggcgaacaacccatcacggcgatgaatgataaaatcttcccgtgccagtttttcgtcggcgtgaataatgccgcgcagctggtcagtaaattgcgtgaccggatgctgctggcggatacgcactgcggcgttgtctggtccatgatgcaacacccggcaatgaccgtcgtaaataccgccaatgctttgaatacgcgcacgcgtacaggtgcagtaataacttagtccttgttcatgtaaccaggcgagtgcttcacgataggcgtcgtgacgttgcgattgccagagaacatcgccgtcccagtgcagaccgtaatgttccagctggcgcaggatagtttctgcggcaccgggaacttcacgaggcgggtcgatatcttctatgcgtaccagccagcgaccttgccgggcgcgagcctgcaaatagctgccgagcgcggcgatcagagagccaaaatgaagctcgccggaaggagagggggcgaagcggccaatatactgtgtgtctgtcatctctttgaacaaaaaataaggcgggagcatttcccgcctgtggtaaacgtgatggaacggctgtaattagccagccatctgtttttcgcgaatttcagccagcgttttgcagtcgatgcacagatcggctgtcgggcgcgcttccagacggcgaataccaatttcaacaccgcaggattcgcagtagccgaaatcttcgtcttccacttttttcagcgtcttctcgatctttttgatcagcttacgctcgcgatcgcggttacgcagttcgaggctgaactcttcttcctgggctgcacggtctaccgggtccgggaagttggctgcttcatcctgcatatgtgtaacggtgcgatcgacttcatccctgagttgattacgccatgcttccagaatacgacggaagtgcgccagctgggcttcattcatatactcttcgcccggcttctcctgatatggttccaccccagcgatggcgagaatactcagggacgatgttttacggttttgcccttcttgcatgttgcttctccttaacacgcactatcgatccccatgttcgggggaaaaatgaggccgctataaatagcagatgcttttccggatagcaattatctaaacgtaacacttgacaactgtgtgaggaaaagcgtatttgcgcacgcgaccagaatgtaaattaaccagttacttactttactacaatgtaaccggcagtgattttttaagagccatgccttcagcagaaatttccgctttgtaagccagaatttctacccccctctgttgagcttctgacaatagttgcgcgtatttctcatcgatgtggcgcgcgggtgaaaaccgtgtaatggctgaatgcagcacggcgaaaaagataaccgcacgctggccttcagccgctacgctcatcaactcccgaaggtgtttctgacctcgttcagtgaccgcatcgggaaaatatccctgttcgttctccgctaacgtaaccgatttcacttcaatatagcagtctggacgcgaatccgcctgcaacataaagtcaatacggctgcgttctgcgccgtattttacttcgcttttcagcgagctatagcctgacagttctgaaattgattcattaaggatagcctctttcgtcaacctgttagcccaaagcgtgttgacgcaaataaatgcgccgctctggctttgagttaattcccaggtgtgtgggtatttccgtttggtgttgtctgaagtcgaataccagacggtatcgccaggcgttgcacaaccggtcatcgcacccgtattcgggcagtgtagcgttaattcgcgaccatcgggtgtgatcacatcggctaaaaaacgtttgtaacgctgaattagcgtcgcgcgctgtagagggggagaaaattccattgcgacaatccttgttattgcgttagcgcccagcgttttagcggcgtgtagcgtgtgcgtccacgggcaaacgaggaggcgtaaagggtgaactccgtcaccgcatacgaccagttaaaacctggcggcgggattgtcaccgcctcgctggcgtcgcgcaataaggtaatatgtggatgaaacggacgattgctttgaaaacaaccgctgcgggcagcctgtgaacggagcatattcgccagctggattaagccgcgtggcggctgacgcatccctaaccacaccacacgcgaacgcagccattgtccggcgtcatcaagcgtgagtgtgaaaccaggttgacgaatccgtccggctaaaagagaaagcgccttctctttctcggcgctcacttcgcctaaaaatgccagagtcagatgcaaattatcggcggcgaccggacgtcccgcctcaggtgggaagtgtgtggcgcgccaatggataatctgttcgcggatttctgcaggtaagtcgatagcaaagaacagacgttgcggttcagacatgtgaggcactcggttatgaattaccgcgatgctacaatgtggcgcgaagaatgttaaccctctggagcgttttgtgtcgtcgttgcccgttgctgccgtcttacctgaattacttaccgctctcgattgtgcgccgcaggtattattaagtgcgccgaccggggccgggaaatcaacctggctgccgctgcaactgctggcgcatcccggcattaacgggaaaattatcctgctggagccgcgtcgtctggcggcgcgtaacgtcgcgcaacggctggcggagctgcttaacgaaaagccaggcgataccgttggctaccggatgcgtgcgcaaaactgcgtcgggccgaatacccgcctggaagtggttaccgaaggcgtgctgacgcgcatgatccagcgtgacccggaactgagcggtgttggactggtgatccttgatgaatttcatgagcgcagcttgcaggcggatttggcgttggcgctgttactcgatgtgcaacaaggtctgcgtgatgaccttaaactgctgattatgtcggctaccctggacaacgaccgcttgcagcaaatgctgccagaagcgcctgtcgtcatctcagaagggcgctcgtttccggttgaacgccgttatttaccgctgcccgcgcatcagcgttttgacgatgccgttgcggtagccaccgctgaaatgctgcgtcaggaaagcggatcattactgttatttttacctggcgtcggagaaattcagcgtgtgcaggaacaactggcttcgcgcatcggcagtgatgtattgctctgcccgctgtatggcgcgttgtcgctgaacgatcagcgaaaagcgatcctcccggcaccgcaagggatgcgcaaagtggtgctggcgaccaatattgctgaaaccagtttaaccattgaaggtattcgtctggtggtggattgtgcccaggagcgtgtggcgcgttttgatccgcgcacggggcttacgcgactgattactcaacgcgttagccaggcatccatgacgcagcgtgccgggcgcgccgggcgtctggagccgggtatcagcctgcatttaatcgccaaagaacaagcagaacgcgccgcggcgcaaagtgaaccggagatcttacaaagcgatctttccggtttgctgatggaattactgcaatggggatgcagcgatccggcgcagatgagctggctggatcaaccgccagtagtgaatctactggccgcgaaacgtctgttacaaatgctgggggcactggagggtgaacggcttagtgcgcaagggcaaaaaatggcagcgctgggtaacgatccgcgtttagcggcaatgctggttagcgcgaagaacgacgacgaagctgctaccgcggcaaaaattgccgccattctcgaagagccgccacggatgggcaatagtgacctgggcgtggcgttttcgcgcaatcaaccagcctggcagcaacgtagtcagcaactgttaaaacgcttaaacgtacgtggcggtgaggcagacagttcgcttatcgcgccgctacttgccggggcgtttgccgatcgcattgctcgtcgccgtgggcaagatggacgctatcaactggcaaacggcatgggagcgatgctcgatgccaacgacgcgctaagccgccacgaatggttgatcgcaccgttattattgcagggcagcgcctcgccggatgcgcggattttactggcgctgctggtcgatattgatgagttagtacaacgctgcccgcagctggtacagcagtctgacactgtggagtgggatgacgcgcaaggtacgctgaaagcctggcgtcggctacaaatcggtcagttgacggtgaaagtgcagccgctggcgaaaccgtcagaagacgagttgcatcaggcgatgcttaatggcatccgtgataaaggtttaagcgtgctcaactggacggcggaagcggaacagctacgcttgcgtttgttatgcgccgcaaagtggttgccggaatatgactggccagcggttgatgatgaaagtttattggcagcgctggaaacgtggctgctgccacatatgactggcgtacattcactacgcggcctgaaatcactcgacatttatcaggcactacgcggattacttgattggggaatgcagcaacgtctggatagtgaattgcctgcgcattacactgtgccgacgggaagccggatcgccattcgttatcatgaagataacccgcccgcgctggcggtgagaatgcaagagatgtttggcgaggccaccaatccgacgatcgcccaggggcgcgtgccgctggtgctggagttgctttcacctgcccaaaggccattacaaatcacacgagatttgagcgacttctggaaaggagcgtaccgtgaggtgcaaaaagagatgaaagggcgttatcccaaacatgtctggccggacgacccggcaaatactgcaccgacgcgacggacgaaaaagtattcgtaaggttggttttctccctctccctgtgggagagggccggggtgagggcatcagcgcgcacgttcaccctcaccctaaccctctccctcaagggagaggggaccgatcgagcacaaattttgagagatatcttcttctgtcttgtaacagaagaacagaaaatcgggcttttgcgcctgaatattgcggagaaaaagcatggccgggaatgaccgcgagccaattggacgcaaagggaaaccgacgcgtccggtcaaacaaaaggtaagccgtcgtcgttacgaagatgacgatgattacgacgattatgatgactatgaggatgaagaaccgatgccgcgcaaaggtaagggcaaaggcaaagggcgtaagcctcgtggcaaacgcggctggctatggctactgctaaaactggctatcgtttttgccgtgctgatcgccatttacggcgtttatctcgatcaaaaaattcgtagccgtattgatggcaaggtctggcaactgcctgcggcagtttatggccgaatggtcaatcttgagccagacatgaccatcagcaagaacgagatggtgaagctgctggaggcgacccagtatcgtcaggtgtcgaaaatgacccgtcctggcgaatttaccgtgcaggccaacagcattgagatgattcgccgtccgtttgatttcccggacagtaaagaaggacaggtgcgcgcgcgtctgacctttgatggcgatcatctggcgacgatcgtcaatatggagaacaaccgtcagttcggtttcttccgtcttgatccgcgtctgatcaccatgatctcttcgccaaacggtgagcagcgtctgtttgtgccgcgcagtggtttcccggatttgctggtggatactttgctggcgacagaagaccgtcatttttacgagcatgatggaatcagtctctactcaatcggacgtgcggtgctggcaaacctgaccgccggacgcacggtacagggtgcgagtacgctgacgcaacagctggtgaaaaacctgttcctctccagcgagcgttcttactggcgtaaagcgaacgaagcttacatggcgctgatcatggacgcgcgttacagcaaagaccgtattcttgagctgtatatgaacgaggtgtatctcggtcagagcggcgacaacgaaatccgcggcttcccgctggcaagcttgtattactttggtcgcccggtagaagagctaagcctcgaccagcaggcgctgttagtcggtatggtgaaaggggcgtccatctacaacccgtggcgtaacccaaaactggcgctggagcgacgtaatctggtgctgcgtctgctgcaacagcaacagattattgatcaagaactctatgacatgttgagtgcccgtccgctgggggttcagccgcgcggtggggtgatctctcctcagccagcctttatgcaactggtgcgtcaggagctgcaggcaaaactgggcgataaggtaaaagatctctccggcgtgaagatcttcactacctttgactcggtggcccaggacgcggcagaaaaagccgccgtggaaggcattccggcactgaagaaacagcgtaagttgagcgatcttgaaactgcgattgtggtcgtcgaccgctttagtggtgaagttcgtgcgatggtcggaggttctgagccgcagtttgcgggctacaaccgtgcgatgcaggcgcgtcgttcgattggttcccttgcaaaaccagcgacttatctgacggccttaagccagccgaaaatctatcgtctgaatacgtggattgcggatgcgccaattgcgctgcgtcagccgaatggccaggtctggtcaccgcagaatgatgaccgtcgttatagcgaaagcggcagagtgatgctggtggatgcgttgacccgttcgatgaacgtgccgacggtaaatctggggatggcgctggggctgcctgcggttacggagacctggattaaactgggcgtaccgaaagatcagttgcatccggttccggcaatgctgctgggggcgttgaacttaacgccaatcgaagtggcgcaggcattccagaccatcgccagcggtggtaaccgtgcaccgctttctgcgctgcgttcggtaatcgcggaagatggcaaagtgctgtatcagagcttcccgcaggcggaacgcgctgttccggcgcaggcggcgtatctgacactatggaccatgcagcaggtggtacaacgcggtacgggtcgtcagcttggggcgaaatacccgaacctgcatctggcagggaaaacagggactaccaacaataacgtagatacctggtttgcgggcattgacggcagcacggtgaccatcacctgggtcggccgtgataacaaccagccgaccaaactgtatggtgccagcggggcaatgtcgatttatcagcgttatctggctaaccagacgccaacgccgctgaatcttgttccgccagaagatattgcagatatgggcgtggactacgacggcaactttgtttgcagcggtggcatgcgtatcttgccggtctggaccagcgatccgcaatcgctgtgccagcagagcgagatgcagcagcagccgtcaggcaatccgtttgatcagtcttctcagccgcagcaacagccgcaacagcaacctgctcagcaagagcagaaagacagcgacggtgtagccggttggatcaaggatatgtttggtagtaattaacatctaagcgtgaaataccggatggcgagttgccatccggtaaaataacatcccatctaagatattaaccctttcttttcatctggttgtttattaacccttcaggaacgctcagattgcgtaccgcttgcgaacccgccagcgtttcgaatattatcttatctttataataatcattctcgtttacgttatcattcactttacatcagagatataccaatggcgcgttccaaaactgctcagccaaaacactcactgcgtaaaatcgcagttgtagtagccacagcggttagcggcatgtctgtttatgcacaggcagcggttgaaccgaaagaagacactatcaccgttaccgctgcacctgcgccgcaagaaagcgcatgggggcctgctgcaactattgcggcgcgacagtctgctaccggcactaaaaccgatacgccgattcaaaaagtgccacagtctatttctgttgtgaccgccgaagagatggcgctgcatcagccgaagtcggtaaaagaagcgcttagctacacgccgggtgtctctgttggtacgcgtggcgcatccaacacctatgaccacctgatcattcgcggctttgcggcagaaggccaaagccagaataactatctgaatggcctgaagttgcagggcaacttctataacgatgcggtcattgacccgtatatgctggaacgcgctgaaattatgcgtggcccggtttccgtgctttacggtaaaagcagtcctggcggcctgttgaatatggtcagcaagcgtccgaccaccgaaccgctgaaagaagttcagtttaaagccggtactgacagcctgttccagactggttttgactttagcgattcgttggatgatgacggtgtttactcttatcgcctgaccggtcttgcgcgttctgccaatgcccagcagaaagggtcagaagagcagcgttatgctattgcaccggcgttcacctggcgtccggatgataaaaccaattttaccttcctttcttacttccagaacgagccggaaaccggttattacggctggttgccgaaagagggaaccgttgagccgctgccgaacggtaagcgtctgccgacagactttaatgaaggggcgaagaacaacacctattctcgtaatgagaagatggtcggctacagcttcgatcacgaatttaacgacacctttactgtgcgtcagaacctgcgctttgctgaaaacaaaacctcgcaaaacagcgtttatggttacggcgtctgctccgatccggcgaatgcttacagcaaacagtgtgcggcattagcgccagcggataaaggccattatctggcacgtaaatacgtcgttgatgatgagaagctgcaaaacttctccgttgatacccagttgcagagcaagtttgccactggcgatatcgaccacaccctgctgaccggtgtcgactttatgcgtatgcgtaatgacatcaacgcctggtttggttacgacgactctgtgccactgctcaatctgtacaatccggtgaataccgatttcgacttcaatgccaaagatccggcaaactccggcccttaccgcattctgaataaacagaaacaaacgggcgtttatgttcaggatcaggcgcagtgggataaagtgctggtcaccctaggcggtcgttatgactgggcagatcaagaatctcttaaccgcgttgccgggacgaccgataaacgtgatgacaaacagtttacctggcgtggtggtgttaactacctgtttgataatggtgtaacaccttacttcagctatagcgaatcgtttgaaccttcttcgcaagttgggaaggatggtaatattttcgcaccgtctaaaggtaagcagtatgaagtcggcgtgaaatatgtaccggaagatcgtccgattgtagttactggtgccgtgtataatctcactaaaaccaacaacctgatggcggaccctgagggttccttcttctcggttgaaggtggcgagatccgcgcacgtggcgtagaaatcgaagcgaaagcggcgctgtcggcgagtgttaacgtagtcggttcttatacttacaccgatgcggaatacaccaccgatactacctataaaggcaatacgcctgcacaggtgccaaaacacatggcttcgttgtgggctgactacaccttctttgacggtccgctttcaggtctgacgctgggcaccggtggtcgttatactggctccagttatggtgatccggctaactcctttaaagtgggaagttatacggtcgtggatgcgttagtacgttatgatctggcgcgagtcggcatggctggctccaacgtggcgctgcatgttaacaacctgttcgatcgtgaatacgtcgccagctgctttaacacttatggctgcttctggggcgcagaacgtcaggtcgttgcaaccgcaaccttccgtttctaatttctcttttggggcacggatttccgtgcccatttcacaagttggctgttatgcaggaatacacgaatcattccgataccacttttgcactgcgtaatatctcctttcgtgtgcccgggcgcacgcttttgcatccgctgtcgttaacctttcctgccgggaaagtgaccggtctgattggtcacaacggttctggtaaatccactctgctcaaaatgcttggccgtcatcagccgccgtcggaaggggagattcttcttgatgcccaaccgctggaaagctggagcagcaaagcgtttgcccgcaaagtggcttatttgccgcagcagcttcctccggcagaagggatgaccgtgcgtgaactggtggcgattggtcgttacccgtggcatggcgcgctggggcgctttggggcggcagatcgcgaaaaagtcgaggaagctatctcgctggttggcttaaaaccgctggcgcatcggctggtcgatagtctctctggcggcgaacgtcagcgggcgtggatcgccatgctggtggcgcaggatagccgttgtctgttgctcgacgaaccgacctcggcgctggatatcgcccaccaggttgatgtgctgtcgctggtgcaccgtttaagtcaggagcgtggcctgacggtcattgccgtgttgcacgatatcaatatggcggcacgctactgtgattatctggtcgccctgcgcggcggtgaaatgattgctcagggaacgcctgcggaaattatgcgcggcgaaaccctcgaaatgatttatggcatcccgatgggtattttgccgcatccggcgggtgctgcacctgtgagttttgtttattgatgagcggcttacctcttatttcgcgccgtcgactgttaacggcgatggcgctttctccgttgttatggcagatgaataccgcccacgcggcggctattgatcccaatcgtattgtggcgctggagtggttgccggtggaattactgctggcgctcggcatcgtgccttacggcgtggcggataccatcaactatcgcctgtgggtcagcgaaccaccattgccggactcagtgatcgacgtcggtttgcgcacagaacctaaccttgaactgctgaccgaaatgaaaccatcgtttatggtctggtcggcaggatatggcccttcaccagaaatgctggctcgtattgcgccgggtcgcggatttaacttcagtgacggcaaacagccgttggcgatggcgcgtaaatcgctgacggaaatggcagatttacttaacctgcaaagcgcagcggaaacgcatttagcgcaatatgaagactttatccgcagcatgaaaccccgctttgtgaagcgtggtgcgcgtccgttattgctgacgacgcttatcgatccgcgccatatgctggtcttcggtccaaacagcttgttccaggaaattcttgatgagtacggcatcccaaatgcctggcaaggggaaaccaacttctggggcagtaccgccgtcagtatcgatcgtctggcggcgtataaagacgttgatgtgctctgttttgatcacgacaacagcaaagacatggatgcgctaatggcaacgccgctgtggcaggccatgccgtttgtccgcgccggacgctttcagcgcgtacctgcagtctggttttatggtgcgacgctctcggcaatgcactttgtgcgcgttctggataacgccatcggaggtaaagcgtgagtaaacgaattgcgcttttcccggcgttattgctggcgctgttagtgattgtcgctacggcgctcacctggatgaacttctcgcaggcgctgccgcgtagccagtgggcgcaggctgcctggtcgccggatattgacgtcatcgagcagatgatttttcactacagcttgttgccgcgtctggcgatttcgctgctggtgggcgcgggtctggggctggtgggcgtgctgtttcagcaagtgctgcgtaacccgctggcggagccgacgacgcttggcgttgctacaggcgcgcaactggggattaccgtcactacgctctgggcgatccctggtgcgatggcgagccagtttgctgcgcaggcaggggcttgtgttgttggcttaattgtctttggcgtcgcgtgggggaaacggctgtcgccggtaacgctgattctcgcggggttggtagtgagcctttattgcggcgcaatcaatcagttactggttatcttccatcatgaccaactgcaaagcatgtttctgtggagcactggaacgctgacgcaaaccgactggggcggcgttgagcgtttatggccgcagctgctgggcggtgtgatgctgacgttgctgctacttcgtccgttaaccctgatggggcttgatgatggcgtggcgcgcaatctcgggctggccttgtcgcttgcgcgtctggcagcgctgtcgctggcgattgtcatcagtgcgctgctggtgaacgctgtggggattatcggctttatcgggttgttcgcgccgctgctggcaaaaatgctgggggcgcggcgtctgctgccacgactgatgctggcgtcgttgattggtgcgctgatcctctggctttccgatcaaatcatcctctggctgactcgcgtgtggatggaagtgtccaccggttcggtcactgcgttgatcggtgcgccgctgctactgtggctgttgccgcgtttacgcagcattagcgcgccggatatgaaggtcaacgatcgtgtcgcggctgaacgccaacatgtgctggcgtttgccctcgcgggcggcgtgctgctgttgatggctgtggtggtggcgctgtcgtttggtcgtgatgcgcacggctggacgtgggcgagcggggcgttgctcgaggatttaatgccctggcgctggccgcgaattatggcggcgctgtttgcgggcgtcatgctggcggtggcgggctgtattattcagcgactgaccggaaacccgatggcaagcccggaagtgctggggattagctccggcgcggcgtttggcgtggtgttgatgctgtttctggtgccgggtaatgcctttggctggctgttacctgcaggcagtctcggcgcggcggtgacgctgttgatcattatgatcgccgccggccgcggtggattttccccacaccgtatgttactggcggggatggcgttaagcaccgcgttcaccatgcttttgatgatgttgcaggcaagtggtgacccgcgaatggcgcaagtgctgacctggatttccggttcgacctacaacgcgaccgatgcgcaggtctggcgcaccggaattgtgatggtgattttgctggcgattaccccgctgtgccgccgctggctgaccattttaccgctgggtggtgataccgcccgagccgtaggaatggcgctgacgccgacgcgaattgcgctgctgctgttagcggcttgcctgacggcgaccgcgacgatgactattggaccgttgagttttgttggtttaatggcaccgcatattgcgcggatgatgggctttcgacggacgatgccacacatcgtaatttcggcgctggtgggtggtttactgctggtgttcgctgactggtgtgggcggatggtgctgtttccattccagatcccggcggggctgctgtcaacctttatcggcgcgccatattttatctatttgttgagaaagcagagccgttaatttttccatataacggccctgtacgcctggacggataaagcgtttacgcgacaacggatgcccgatgcgacgctggcgcgtcttatcgggcctacaaacggccccgaatcgtaggtcggataaggcgttcacgccgcatccgacaaaccatgctggatcacaacttcgcaaacacccgacgtgcagcatcgatggtgttattgatatcttccatgctgtgcgccacggacataaagcccgcttcaaacgctgacggtgccaggtaaacaccttcgtccagcatcatatggaagaaacgcttaaagcgttccacgtcacaggccatcacatcctgatagcacgtcacggactcggcgtcggtaaagaaaataccgaacatgccgccaacgtggttaacgaccagcggaattccggcttcttctgccgcttccagcagaccttctgccagacgtgttgtcagctcatccagcgtttcgtgaacgcccggctgcgcgacttcattcagacaggcgaaacccgctgccatcgcaatcgggttaccggaaagcgtacccgcctgatagaccggacccgtcggggccagcgcatccattacatcacgacgaccaccgaatgcgcctaccggcattccaccgccgatgattttgccgaggcaggttaaatctggcactacgccgtaataatcctgtgcgccagctagcgctacgcggaaaccggtcatcacttcatcgatgatcagcaacgcgccaaattcgtcgcacagcgcgcgcagacctggcaggaactctggcagcggcggaacacagttcatattgcctgccaccggctcgacgataatacaggcaatctcttgcgggtattgctcaaatgcggcgcgtacagaagccagatcattataagtacaggttaaggtatatttggcgaaatctgccggaacgcccggcgagtttggctggcctaacgtgagtgcgccagaaccggctttcaccagcaggcagtcagcgtgaccatggtaacacccttcaaatttaataattttgtcgcgaccggtaaaaccacgggccaggcggatggcgctcatggtcgcttcagtgccggagttcaccatgcgcaccatatccatggtcgggaccagttcggtcaccagttgcgccattttcacttccatttcggttggtgcaccaaagcttaaaccacgctcggcggcttcaatcacggcattgcggattgccggatggttatggcccagcaccatcggcccccaggaaccgacataatcgatataggctttgccatcaacatcgtacagataagcgccgtccgctttttcgataaacagtggagtgccgcccacgccagtaaaggcgcgaacaggggagttcacaccgccagggatcagctcgcgcgctgcgctgtaaagattttcagacttactcatggagggttcctgattcgtagaaaaagtgaatggctgctattctatgttattcataacaagttaaatactcgtcaaacatcaggctgcttgtactggtgcaatcctgatttcttagagtataaaagttttgtgcatttgaaacattacgctttgcaaaggattttcatggaacgtgcgagtaaaatgccgtcatcttatttgtatgaccaataagtgatcattggatgaaaactgatactccctctttagaaacaccgcaggccgcgcgcctgcgacgcagacaactgattcgccaacttcttgagcgcgataaaaccccgttagccattttgtttatggcggcagtcgtcggcacgcttgttgggctggcagcggttgcttttgacaaaggtgtcgcctggttgcagaaccaacgtatgggggcgctggtacatactgctgataattatccgcttctgttaaccgtcgcttttctctgttcggcggtgctggcgatgtttggctactttttggtgcgcaaatacgcgccggaagcaggtggttcggggatcccggaaattgaaggggcgctggaagatcaacgtcccgttcgctggtggcgtgtattgccggtgaagttctttggcgggctggggacactcggcggaggcatggtgttggggcgcgaagggccaaccgtgcagatcggcggtaacattggccgtatggtgcttgatattttccgcctgaaaggtgacgaagctcgccatacgctgctggcaaccggtgctgctgcggggctggctgcggcctttaacgcgccgctggcgggtattttgtttattatcgaagagatgcgtccgcagtttcgctatacgttaatttcgattaaagcggtatttattggtgtcattatgtcgaccattatgtaccggatttttaatcatgaagttgcgttgattgacgtcggtaaactttctgatgcgccgcttaatacgctgtggctttatctgatcctcggtattatttttggcattttcggccctatttttaataaatgggtgctggggatgcaggatttgctgcaccgtgtgcacggcggcaatattaccaaatgggtgctaatgggcggtgcgattggcggtctgtgtggattgctggggtttgtggcaccagcaacgtcgggcggcggttttaacctgattcctatcgctaccgcggggaatttcagcatgggaatgctggtgtttatcttcgtcgcgcgggtcattaccaccttactctgcttctcttccggcgcgccgggcggtatttttgccccgatgctggcgctgggtactgtgctgggaaccgctttcggaatggttgccgttgagctgtttccgcaatatcaccttgaggcggggacgtttgctattgccggaatgggggcattactggcggcatctattcgcgcgccgttaacggggatcattctggttctggagatgaccgataactaccagctcattttgccaatgattattaccggtcttggcgcaacactattagcgcaatttaccggcgggaaaccgctatactcggcgattcttgcgcgcacgctggcaaaacaggaagctgagcaactggcgcgaagcaaggccgcatcagccagcgagaatacttgaacgaaataccagggtattagataatggcgattattattgggttagaatttgcccaattgccgatgtcgtttggagcaaaatatgagtgatgacgtagcactgccgctggagtttaccgacgcagcagccaacaaagttaaaagcctgatcgctgacgaagataacccgaatctgaaattacgcgtgtatatcaccggtggcggttgcagcggcttccagtatggtttcacctttgatgatcaggtgaacgaaggcgatatgaccatcgaaaaacagggcgttggcctggtggttgatccgatgagcctgcaatatctggtcggcggttccgttgattataccgaaggtctggaaggttctcgtttcatcgtgaccaacccgaacgcgaaaagcacctgcggttgcggttcttcctttagtatctaatctgttgttcatgtgccggataaactatccggcacatcttctctcttcaacgcccattctcatccagcgcaaacgtcggtagcttaagatgccaacgaatagccgccagccgaatcaatagcgtcacgaccatgcccatcatactggctgtttccagtggtacggaaaatgtgtaataagccgtagcgtggacaataccgccgataatacaggcagttgcgtagatttctgtacgtaaaatcatggggatttcgcgggccagaacatcacgaatgatcccgccgccaacgccagtaatgacgcccatacaaaccgcgattaacggaccggcttccgcattaaaggctttattcacgccaatgccgacaaacaccgccagaccaacggcgtccagcaccggcaacatccattttggtaagcgtcttggctggcgcaccagcacgatggtcagcatgctggtgaccattgcaacgaccagatcggtgggatctttcacccaaaataccgggccgtgatccagcgccatgtcgcgaattgtcccgccgcctactgcggttaccacgcccagtaccagaacaccaaaagggtccatacgcaattttccggctaacaaaacgccggagatggcaaataccgctgtgccgactatatccagccaatagacgagcattgttcaatccccactgagcacctgaaaaggtcaggcgctaatctacctgtgaaagcgcattacagagctgttgtgcagcgaggataatacgtgggcttgcacgttcaaaccagtcactcgtgagaggaataacgggaattttgagctgttcaccccagtattgtttgattttaggaatttggtccggtccgcctgtaatgacaatcgcctgtggcgagcgtgctaacacctgttcgcggctaacttgcggccagggaacccggctgtctttaaagatgttttctccgccacaaacttcgagtacctggttctgaatcgactcttttccactggtaaatggcggattaatgccgaattgcagaaaaacacgttttttaggtttatcagcatattgcgctttcaattgcgcgtactgatccagcagggattgcgcggcttgttcggccttgtctggttgcggactccagggggccagttgacgtaacgcattggcaatttgttcaatgcttgtcgcatcgacccacatcacttttattcccagcgaagccagctggtcaacctgccgctcggcattacctccacgccaggcaatcaccagatcgggtttcagcgcgacaatgcgttccagattcatcccctgccaggtggaaacctgctcaatcttttgcgcttgtggaggatagtcggaatagctgctgaccccaaccggcgtgatcccggcggcaaaggcaagttcagtgttggcgggagaaagcgtgatgacgcgcggcgcggcgttgagccacagtggcgcaagaaaagacagggcgaccagcgccctgaacagtgacttagccatgtgcaagtttctgcaccagtgactcaaccatcaggctggactgtttagcggcaacagccaggaactcatcgaagctaagatgagactgttgatcggccacgtcggagatggcgcgtacgacaacaaacgggacgttgaaattgtggcagacatgggcgattgccgtcgcttccatctctacagcaatggcctgtgggaagttgtggcggattttcgccagaccaacagaaccgttgatgaaagcgtcgccgctaacaatcaggccacgtacagcgttaagattcagttcggcaatgcaggcctcagcggcagcgatcagtttatcgtcagctttaaagcctgccggacagcctggtaactgaccgtattcataaccaaatgccgtgacatccgcgtcgtgataacgtgcttcgtccgagacaacgatatcgcccactttcaacgttggtgccaggccaccggcagaaccggtgttaataatcacatctggcttgcagtgttccaacagcaaagtggcacccagcgccgcagcgactttaccgatgcccgatttcagaagcgcaacctcggttccattcagttggccggtatagatttcgcaaccgccgagactgatagtttgacggttttcgattttgtcacgcagcagcgtaacttcttcttccattgcaccaatgatgccgattttcatagatttactcgcgataagcccgatttgaaggcatagtttaccatgcgcttacggggaagcgtatttctcacgcgggagaggacatggcacagattgatttccgaaaaaaaataaactggcatcgtcgttaccgttcaccgcagggcgttaaaaccgaacatgagatcctgcggatcttcgagagcgatcgcgggcgtatcatcaactctccggcaattcgtcgtctgcaacaaaagacccaggtttttccactggagcgcaatgccgccgtgcgcacgcgtcttacccactcgatggaagtccagcaggtggggcgctacatcgccaaagaaattttaagccgtctgaaagagcttaaattactggaagcatacggcctggatgaactgaccggtccctttgaaagcattgttgagatgtcatgcctgatgcacgatatcggcaatccgccgtttggtcattttggcgaagcggcgataaatgactggtttcgccaacgtttgcacccggaagatgccgaaagccagcctctgactgacgatcgctgcagcgtggcggcactacgtttacgggacggggaagaaccgcttaacgagctgcggcgcaagattcgtcaggacttatgtcattttgaggggaatgcacaaggcattcgcctggtgcatacattgatgcggatgaatctcacctgggcacaggttggcggtattttaaaatatacccgtccggcgtggtggcgtggcgaaacgcctgagacacatcactatttaatgaaaaagccgggttattatctttctgaagaagcctatattgcccggttgcgtaaagaacttaatttggcgctttacagtcgttttccattaacgtggattatggaagctgccgacgacatctcctattgtgtggcagaccttgaagatgcggtagagaaaagaatatttaccgttgagcagctttatcatcatttgcacgaagcgtggggccagcatgagaaaggttcgctcttttcgctggtggttgaaaatgcctgggaaaaatcacgctcaaatagtttaagccgcagtacggaagatcagttttttatgtatttacgggtaaacaccctaaataaactggtaccctacgcggcacaacgatttattgataatctgcctgcgattttcgccggaacgtttaatcatgcattattggaagatgccagcgaatgcagcgatcttcttaagctatataaaaatgtcgctgtaaaacatgtgtttagccatccagatgtcgagcggcttgaattgcagggctatcgggtcattagcggattattagagatttatcgtcctttattaagcctgtcgttatcagactttactgaactggtagaaaaagaacgggtgaaacgtttccctattgaatcgcgcttattccacaaactctcgacgcgccatcggctggcctatgtcgaggctgtcagtaaattaccgtcagattctcctgagtttccgctatgggaatattattaccgttgccgcctgctgcaggattatatcagcggtatgaccgacctctatgcgtgggatgaataccgacgtctgatggccgtagaacaataaccaggcttttgtaaagacgaacaataaatttttaccttttgcagaaactttagttcggaacttcaggctataaaacgaatctgaagaacacagcaattttgcgttatctgttaatcgagactgaaatacatgaaaaaaaccacattagcactgagtgcactggctctgagtttaggtttggcgttatctccgctctctgcaacggcggctgagacttcttcagcaacgacagcccagcagatgccaagccttgcaccgatgctcgaaaaggtgatgccttcagtggtcagcattaacgtagaaggtagcacaaccgttaatacgccgcgtatgccgcgtaatttccagcagttcttcggtgatgattctccgttctgccaggaaggttctccgttccagagctctccgttctgccagggtggccagggcggtaatggtggcggccagcaacagaaattcatggcgctgggttccggcgtcatcattgatgccgataaaggctatgtcgtcaccaacaaccacgttgttgataacgcgacggtcattaaagttcaactgagcgatggccgtaagttcgacgcgaagatggttggcaaagatccgcgctctgatatcgcgctgatccaaatccagaacccgaaaaacctgaccgcaattaagatggcggattctgatgcactgcgcgtgggtgattacaccgtagcgattggtaacccgtttggtctgggcgagacggtaacttccgggattgtctctgcgctggggcgtagcggcctgaatgccgaaaactacgaaaacttcatccagaccgatgcagcgatcaaccgtggtaactccggtggtgcgctggttaacctgaacggcgaactgatcggtatcaacaccgcgatcctcgcaccggacggcggcaacatcggtatcggttttgctatcccgagtaacatggtgaaaaacctgacctcgcagatggtggaatacggccaggtgaaacgcggtgagctgggtattatggggactgagctgaactccgaactggcgaaagcgatgaaagttgacgcccagcgcggtgctttcgtaagccaggttctgcctaattcctccgctgcaaaagcgggcattaaagcgggtgatgtgatcacctcactgaacggtaagccgatcagcagctttgccgcactgcgtgctcaggtgggtactatgccggtaggcagcaaactgaccctgggcttactgcgcgacggtaagcaggttaacgtgaacctggaactgcagcagagcagccagaatcaggttgattccagctccatcttcaacggcattgaaggcgctgagatgagcaacaaaggcaaagatcagggcgtggtagtgaacaacgtgaaaacgggcactccggctgcgcagatcggcctgaagaaaggtgatgtgattattggcgcgaaccagcaggcagtgaaaaacatcgctgaactgcgtaaagttctcgacagcaaaccgtctgtgctggcactcaacattcagcgcggcgacagcaccatctacctgttaatgcagtaatctccctcaaccccttcctgaaaacgggaaggggttctccttacaatctgtgaacttcaccacaactccatacatcttcatcatcctttaggcatttgcacaatgccgtacgttacgtacttccttatgctaagccgtgcataacggaggacttatggctggctggcatcttgataccaaaatggcgcaggatatcgtggcacgtaccatgcgcatcatcgataccaatatcaacgtaatggatgcccgtgggcgaattatcggcagcggcgatcgtgagcgtattggtgaattgcacgaaggtgcattgctggtactttcacagggacgagtcgtcgatatcgatgacgcggtagcacgtcatctgcacggtgtgcggcaggggattaatctaccgttacggctggaaggtgaaattgtcggcgtaattggcctgacaggtgaaccagagaatctgcgtaaatatggcgaactggtctgcatgacggctgaaatgatgctggaacagtcgcggttgatgcacttgttggcgcaggatagccgtttgcgggaagaactggtgatgaacctgattcaggcagaggagaatactcccgcacttactgaatgggcgcaacggctggggatcgatctcaatcaaccgcgagtggtggctattgttgaggtcgacagcggtcagcttggcgtggacagcgcaatggcggagttacaacaactgcaaaacgcgctgactacgcccgagcgtaataatctggtggcgattgtctcgctaaccgaaatggtggtgttgaaaccggcgttgaactcttttgggcgctgggatgcagaagatcatcgtaagcgagttgaacaactgattacccgcatgaaagagtacggccagctgcgttttcgcgtttcactgggcaactattttaccggtcctggcagtattgcccgatcctatcgtacggcgaaaacgacgatggtggtgggtaaacagcggatgccagaaagtcgctgctatttttatcaggatctgatgttacctgtgttactcgacagtttgcgtggcgactggcaggccaacgaactggcgcgaccgctggcgcggctgaaaacgatggacaataacggcttgctgcgacgaacgctggcggcgtggtttcgccacaatgtgcaaccgctggcaacgtcaaaggcgttgtttattcatcgtaataccctggagtatcggcttaatcgtatatcggaactgaccgggcttgatttgggcaattttgatgacaggttgctgctgtatgtggcgttacaactggatgaagagcggtaggttatgcgttaaggttgaggcggcgctggctcattcccctcagcccgaagggtagaggggaatgcccgaattaaccgtcagttcgggattatttacgcgttagtttttccagatcggcttcaatctcgctgatcttattggttacgactgactccaggtgacgtaagtcgtcgaggatcttacgcttaagatcaacttcgctgcggtcacgctggcagatttgatcaagctcatcaatgatataccgtagattcgggctgatttcctggacttctttataaccctgacccacaccatcagcgacgaccgttttacgctgacgcggatatttaaacttaacgctcttggcgaaaaactcgcctttgtctttctggaaatagattttcagaatatcgttgttggcttcctgccggaggctgtaacgatcaatttcttcaggattggtaatacccagacttttcagattgtcgtacatagcgttacctcaaaatgagtcagtaaattgtgcttattttagcatttggcctggcccgcccggctcgactgtgatcgcagaaagcctttttcttccagacttctatcatggcgtaaaaatcaaaaaattacctgctttattctggtgataaaattcacgatctacaccagttccagcatcgttacttccgggcggcagttcagacgcaaaccatacaaactgcccacgccacgggttgtgtagatgtgtctttcgccaaaggcatttaatccggcgacgtaacgtttatcttcgacaggggcaaaaggttcaccaaccaacggtacgcgcagttgcccgccgtgagtatggccgcacagcatcagatcccagggttcatcacgcatgacttctttgctgtcgggattatgcgccagcaccagtcttggcagattggcttcgctggcgggaggcggtttgcattgtccggcccataagtcaccagtgcctaccagttcgaattgcctgttcggcgtggcgatcaccgtagcctggttaaacaacaccgtgatgcccgctgatttcaacgtctcgccaattaagtgatttttttctgtaccaacagggcgatcgtggttgccgaagcaggcaaacgtcggcgcacattcggcaaggggggagagtacgtcactaaacgccgaaaaattcagcgacatatcaaataatacgtaatcgccgcccagtaatatcaaatcgggcttttgttctatgccaagagcaatcgcgtcagaaatcaggcttaaaggaacaaaacgagagtaatggagatcggccagaaaaagaattttgaatggtgctgcgttgtctttaaaaaaggcgaggcggtgacggattaattcaaaccagcctggctcacagtaatgcatataaccgaaacctgagctcgtggctatcgtcgcggcagtagcctgcaaaaatcggcggcgtgaaatcatcgctcatccctgcaaaaaaatcgggcagcgtcgtgctgcccgtgtgcatacttttagtcgatggtacgcagcagttcgttaatgccgactttgccgcgagttttcgcgtcaactttcttaacgataaccgcacagtagaggctgtatttgccatcttttgacggcagattacctgaaacaaccacagaccccgccggaacgcgaccgtagtggatttcgccggtttcacggtcgtaaatacgggtgctctgaccaatgtatacgcccatggaaatgacggaaccttcttcgacaatcaccccttcaaccacttcagagcgcgcgccgatgaagcaattatcttcaatgatggttgggttagcctgcagcggttccagcacgccgccgatgcccacgccaccggaaaggtggacgtttttaccaatctgcgcacaagaaccgacggtcgcccaggtatcaaccatggtgccttcatcaacatatgcgccgatgttgacgtaagacggcatcagcacggtgttacgggcaataaacgcaccctgacgtaccgccgctggtggcacaacgcggaagccttctttctggaaacgtgcttcgtcgtagtcggcgaatttcatcggcactttgtcgaagtagcggctttctgccccttcgatcacctgattatcattaatacggaaagagagcagcaccgcttttttcaaccactgatgcgtcacccactgaccgtcaattttttccgctacacgcagtgcgccggaatccagcagggcgatcacctgatttaccgcttcgcgggtaacggtgtctgcattggctggcgtgatctcggcacggcgttcaaaagcggtttcaataatgttctgtaactgctgcattgttaaactcttttcatatcagtaaacacatcaccctttatcgtttggattgagggcctctgtcaaccgctgatgcacttcctgctgcaactcgttattaagcgcacgccggtcagcggtggcaattatgaataaatcttctactcgctcgccaatggttgtaattcgggcaccatgaagcgaaattcccagatcggcaaaaattttcccgactcgcgccagcagtccaggttggtcgagggcgatcagttcgaggaacgatttgcggtcggtatgggtcggcaaaaacgttacttcggtttcaacagtaaaatggcgtaatttggcgggttggcgacggggctgcggtggctgccagctactttgcgtcagtacttgctccagaccaaaccgaataacctcatgacgatctgcggacagcgggttgccatcgggttccagcacgataaaggtatccatcgccataccgtcgcgagtggtgaaaatttgtgcgtcgtgaacacttaaattgcggcggtctaattcggcacagacggcggcaaacagataagggcggtccgggctccagataaaaatctcggtgcctccacgcgtagcctgcgggctaagcaataccagcggtttgcttaaatcatgctgtaataaatggcgggcatgccaggccagttgatttgggctatggcggacaaaatagttagcacgacagcgtgaccaaatttggtgcagcgcctcttcgtcgatgttatccatgcgcagtagtgccagtgcctggagttggtgatggcgaacccgttcgcgcatatccggcgtgttttgcattccgcgtcgtagctgcttttcggtggcaaagtagagctcacgcaacagactttgcttccagctattccacagcgtttcgttggtggcgcaaatgtcagccacagtcaggcataccagatagcgcagacgattttccgtttgcacttcttcggcaaactgcttgatgacttccgggtcctgaatatcgcggcgttgggcggtcaccgacatcaacaggtgctggcgaaccagccaggcgaccagctgtgtttcgcgtgagttcagcccgtggagttcggcaaaatgcactacatcctgagcaccgagaatggagtggtcgccgccgcgtcctttggcgatatcgtgaaacagcgcggcgatgaaaatcagctcagttgacggcaggcgcggccagacgtccacacacaacggatggcgctggcgcgtttcttcactggcaaaactctccagtttcagcatcacgcggatagtatgttcatccaccgtgtaggcgtggaacagatcaaactgcatctgcccgacgatatgcgaccattgcggcatatacgcgccgagcacgctatggcgatgcattggcaatagcccgcgccgcaccgctccggggtgacgcagaatgctcaaaaacagttttcgtgcttccggaatattacacagcggttgttgcagatggcgacgggcatggcgtaactggcgcagcgtggtggagtaaatgccggtgatcgcactgttgtgcaccatggtgtagaacatacgcaagatggcttccggctggcgcataaatagtgtttcatcacgcaggtcgattagcgtaccgcgtagctgaaactcatcgtcgattggacgtggtttttcgtcggcgggaagggcgaggatggcttcatcgaacagttgcagcagcatctggttgagttcactgacgcggcgtgtaacgcggaagtaatccttcatcatccgctcgaccggttcgttaccttcaccactgtaattcagacgctgggcgacgctaagctggcgatcgaataacaggcgattatcgtaacggctgacgaccagatgcagggcaaagcgaatacgccacaatatatgcagacattcgtttaattccgcccgctccgctgaggttaagaagccaaacccgaccatttcatccagcgatgttgcgccaaaatgacggcgggccacccattgcagagtgtggatatcgcgcaagccgccagggctgcttttgatgtctggttcaaggttgtagctggtgccatggtaacgctgatggcgctggttctgttcttcaactttcgccgcgtagaacttgtcggaaggccagaatccttcgctgaaaatatgtttttgcagttcgaggaacagcgcaacatcgccaattaataagcgggattcgattaaattggtggcgacggttaaatccgataacccttccagcatgcactcttcaagcgtgcgcacgctatgaccgacttccagctttacatcccagagcagcgttaacagctcgcccactttttgcgcctgatcgtccgggagctttttacggcttaaaatcagtaaatcgacgtctgaaagtggatgcagctcgccacgaccgtagccaccgacggcgaccaatgccaggtcggcaatctggctgaatcccgcttcaatccataatcgttgcaggagctggtcgataaactcggtgcgcgcctcaatcaactgttctgcagagatcccattgtcaaaggcatcacccagccaacgctggaaagtatcgatatgggcttttatcccaccgacggttaattcatcacggggccagacgcatggattttgcggttgaccgggcagggtggggagagcggtgtttgcgtactgttctggaagggtattcattgtgcgccacccataagattaaattatcgcattaaaaaagccggcattcgccggcttcatcttattcgtcgtgcgagattatcgccgggatggtgtcatccttgcgtagcgtcagaatttcgcagccgttatcagtcaccacaatagtatgctcatattgtgcagacaagctgcgatctttggtttttaccgtccagccatctttcatggtgcggatctcttttttacccgcgttgaccattggctcgatggtgaacgtcatcccaggtttcagtacgacgttggtttcacgggagtcatagtgcagcacctgcggttcttcatggaagccgcgaccaataccgtgtccgcaatattcacgaacgacggagaagccttctgcttcgacaaatttctgaatcgccgcaccgatttcgcgcagattaatgcctggttttaccatgcgtagcgccaggtacaggctttcttgcgtgatgcggcacagacgttcgcccatgatggtcggcttaccgacgataaacattttcgaggtatcgccgtggaaaccatctttgattacggtgacatcaatgttaacgatatcgccatctttcagcagcttagcatcgtccgggataccgtggcacaccacttcattaatagagatgcaaacggatttcggatagccgtgatagccgaggcaggcagaaaccgcgtgttgttcattaacaatgtaatcattacagatgcgatccagctcgccggtgctgacgcccggtttaacatacggttcgatcatctccagcacttcggcagccagtcggccagcgacgcgcattttttcgatatcttctggggtcttgattgagatagccattaattctgtccatcagcgtcggtgataccgacaatatatatgtaagtgccgtcaatggtatcacacccgggcaaattgagaatcattctgaatttcgccaaacgtgccactgaaggttttctataatagaaaattcgacgtctgatgctgtacacagcgccaacaattattggtgtccacgacgtatttgtggtataaagcgcgccggacttccgatccatttcgtatacacagactggacggaagcgacaatctcactttgtgtaacaacacacacgtatcggcacatattccggggtgccctttggggtcggtaatatgggatacgtggaggcataaccccaacttttatatagaggttttaatcatggcaactgtttccatgcgcgacatgctcaaggctggtgttcacttcggtcaccagacccgttactggaacccgaaaatgaagccgttcatcttcggtgcgcgtaacaaagttcacatcatcaaccttgagaaaactgtaccgatgttcaacgaagctctggctgaactgaacaagattgcttctcgcaaaggtaaaatccttttcgttggtactaaacgcgctgcaagcgaagcggtgaaagacgctgctctgagctgcgaccagttcttcgtgaaccatcgctggctgggcggtatgctgactaactggaaaaccgttcgtcagtccatcaaacgtctgaaagacctggaaactcagtctcaggacggtactttcgacaagctgaccaagaaagaagcgctgatgcgcactcgtgagctggagaaactggaaaacagcctgggcggtatcaaagacatgggcggtctgccggacgctctgtttgtaatcgatgctgaccacgaacacattgctatcaaagaagcaaacaacctgggtattccggtatttgctatcgttgataccaactctgatccggacggtgttgacttcgttatcccgggtaacgacgacgcaatccgtgctgtgaccctgtacctgggcgctgttgctgcaaccgtacgtgaaggccgttctcaggatctggcttcccaggcggaagaaagcttcgtagaagctgagtaataaggcttgataactcccccaaaatagttcgagttgcagaaaggcggcaagctcgagaattcccgggagcttacatcagtaagtgaccgggatgagcgagcgaagataacgcatctgcggcgcgaaatatgaagggggagagcccttatagaccaggtagtacacgtttggttagggggcctgcatatggccccctttttcacttttatatctgtgcggtttaatgccgggcagatcacatctccgaggattttagaatggctgaaattaccgcatccctggtaaaagagctgcgtgagcgtactggcgcaggcatgatggattgcaaaaaagcactgactgaagctaacggcgacatcgagctggcaatcgaaaacatgcgtaagtccggtgctattaaagcagcgaaaaaagcaggcaacgttgctgctgacggcgtgatcaaaaccaaaatcgacggcaactacggcatcattctggaagttaactgccagactgacttcgttgcaaaagacgctggtttccaggcgttcgcagacaaagttctggacgcagctgttgctggcaaaatcactgacgttgaagttctgaaagcacagttcgaagaagaacgtgttgcgctggtagcgaaaattggtgaaaacatcaacattcgccgcgttgctgcgctggaaggcgacgttctgggttcttatcagcacggtgcgcgtatcggcgttctggttgctgctaaaggcgctgacgaagagctggttaaacacatcgctatgcacgttgctgcaagcaagccagaattcatcaaaccggaagacgtatccgctgaagtggtagaaaaagaataccaggtacagctggatatcgcgatgcagtctggtaagccgaaagaaatcgcagagaaaatggttgaaggccgcatgaagaaattcaccggcgaagtttctctgaccggtcagccgttcgttatggaaccaagcaaaactgttggtcagctgctgaaagagcataacgctgaagtgactggcttcatccgcttcgaagtgggtgaaggcatcgagaaagttgagactgactttgcagcagaagttgctgcgatgtccaagcagtcttaattatcaaaaaggagccgcctgagggcggcttctttttgtgcccatcttgtaaattcagctaacccttgtggggctgcgctgaaaagcgacgtacaatgtcgctagtattaattcatttcaatcgttgacagtctcaggaaagaaacatggctaccaatgcaaaacccgtctataaacgcattctgcttaagttgagtggcgaagctctgcagggcactgaaggcttcggtattgatgcaagcatactggatcgtatggctcaggaaatcaaagaactggttgaactgggtattcaggttggtgtggtgattggtgggggtaacctgttccgtggcgctggtctggcgaaagcgggtatgaaccgcgttgtgggcgaccacatggggatgctggcgaccgtaatgaacggcctggcaatgcgtgatgcactgcaccgcgcctatgtgaacgctcgtctgatgtccgctattccattgaatggcgtgtgcgacagctacagctgggcagaagctatcagcctgttgcgcaacaaccgtgtggtgatcctctccgccggtacaggtaacccgttctttaccaccgactcagcagcttgcctgcgtggtatcgaaattgaagccgatgtggtgctgaaagcaaccaaagttgacggcgtgtttaccgctgatccggcgaaagatccaaccgcaaccatgtacgagcaactgacttacagcgaagtgctggaaaaagagctgaaagtcatggacctggcggccttcacgctggctcgtgaccataaattaccgattcgtgttttcaatatgaacaaaccgggtgcgctgcgccgtgtggtaatgggtgaaaaagaagggactttaatcacggaataattcccgtgatggataaataagggtaagattccgcgtaagtatcgcgggggcgtaagtctggttataaggcgttattgttgcaggcagtttggtcacggccagcgcgcagcaaccggagcgtacaaaagtacgtgaggatggcgagcactgcccggggccaaaatggcaaataaaatagcctaataatccagacgattacccgtaatatgtttaatcagggctatacttagcacacttccactgtgtgtgactgtctggtctgactgagacaagttttcaaggattcgtaacgtgattagcgatatcagaaaagatgctgaagtacgcatggacaaatgcgtagaagcgttcaaaacccaaatcagcaaaatacgcacgggtcgtgcttctcccagcctgctggatggcattgtcgtggaatattacggcacgccgacgccgctgcgtcagctggcaagcgtaacggtagaagattcccgtacactgaaaatcaacgtgtttgatcgttcaatgtctccggccgttgaaaaagcgattatggcgtccgatcttggcctgaacccgaactctgcgggtagcgacatccgtgttccgctgccgccgctgacggaagaacgtcgtaaagatctgaccaaaatcgttcgtggtgaagcagaacaagcgcgtgttgcagtacgtaacgtgcgtcgtgacgcgaacgacaaagtgaaagcactgttgaaagataaagagatcagcgaagacgacgatcgccgttctcaggacgatgtacagaaactgactgatgctgcaatcaagaaaattgaagcggcgctggcagacaaagaagcagaactgatgcagttctgatttcttgaacgacaaaaacgccgctcagtagatccttgcggatcggctggcggcgttttgctttttattctgtctcaactctggatgtttcatgaagcaactcaccattctgggctcgaccggctcgattggttgcagcacgctggacgtggtgcgccataatcccgaacacttccgcgtagttgcgctggtggcaggcaaaaatgtcactcgcatggtagaacagtgcctggaattctctccccgctatgccgtaatggacgatgaagcgagtgcgaaacttcttaaaacgatgctacagcaacagggtagccgcaccgaagtcttaagtgggcaacaagccgcttgcgatatggcagcgcttgaggatgttgatcaggtgatggcagccattgttggcgctgctgggctgttacctacgcttgctgcgatccgcgcgggtaaaaccattttgctggccaataaagaatcactggttacctgcggacgtctgtttatggacgccgtaaagcagagcaaagcgcaattgttaccggtcgatagcgaacataacgccatttttcagagtttaccgcaacctatccagcataatctgggatacgctgaccttgagcaaaatggcgtggtgtccattttacttaccgggtctggtggccctttccgtgagacgccattgcgcgatttggcaacaatgacgccggatcaagcctgccgtcatccgaactggtcgatggggcgtaaaatttctgtcgattcggctaccatgatgaacaaaggtctggaatacattgaagcgcgttggctgtttaacgccagcgccagccagatggaagtgctgattcacccgcagtcagtgattcactcaatggtgcgctatcaggacggcagtgttctggcgcagctgggggaaccggatatgcgtacgccaattgcccacaccatggcatggccgaatcgcgtgaactctggcgtgaagccgctcgatttttgcaaactaagtgcgttgacatttgccgcaccggattatgatcgttatccatgcctgaaactggcgatggaggcgttcgaacaaggccaggcagcgacgacagcattgaatgccgcaaacgaaatcaccgttgctgcttttcttgcgcaacaaatccgctttacggatatcgctgcgttgaatttatccgtactggaaaaaatggatatgcgcgaaccacaatgtgtggacgatgtgttatctgttgatgcgaacgcgcgtgaagtcgccagaaaagaggtgatgcgtctcgcaagctgaggataatccggctacagagagtcgcgctatttgttagcgtagggcttcagtgatatagtctgcgccatctgatcgtaagtagttggctttataaggtcagatatgccgtggttttacacggcttttttttgtataggcttcagtattcctgagtaccgtaaaccctgtcagggaataaaaaacgcgtgatgttgtctgctactcaaccacttagcgaaaaattgccagcgcatggctgccgtcatgttgcgatcattatggacggcaatggccgctgggcaaaaaagcaagggaagattcgtgcctttgggcataaagccggggcaaaatccgtccgccgggctgtctcttttgcggccaacaacggtattgaggcgttaacgctgtatgcctttagtagtgaaaactggaaccgaccagcgcaggaagtcagtgcgttaatggaactgtttgtgtgggcgctcgatagcgaagtaaaaagtctgcaccgacataacgtgcgtctgcgtattattggcgataccagtcgctttaactcgcgtttgcaagaacgtattcgtaaatctgaagcgctaacagccgggaataccggtctgacgctgaatattgcggcgaactacggtggacgttgggatatagtccagggagtcaggcaactggctgaaaaggtgcagcaaggaaacctgcaaccagatcagatagatgaagagatgctaaaccagcatgtctgtatgcatgaactggcccctgtagatttagtaattaggactgggggggagcatcgcattagtaactttttgctttggcaaattgcctatgccgaactttactttacagatgttctctggcccgatttcgatgaacaagactttgaaggggcgttaaatgcctttgctaatcgagagcgtcgtttcggcggcaccgagcccggtgatgaaacagcctgatgggggtcgcttttgctgaagtatcgcctgatatctgcttttgtgttaatacccgtcgtcatcgcggcgttgtttctgttgccgccggtggggttcgccattgtaacgctggtggtctgcatgctggcagcgtgggaatggggacagcttagcggttttaccactcgttcgcagcgagtatggttggcggtgttatgcgggttattgttggcgctgatgctttttctgttgccggaatatcaccgaaatattcatcaaccgctggttgaaatctcactttgggcttcgctgggttggtggattgtcgcgctattgctggtgctgttttacccaggttccgcagcaatctggcgtaactctaaaacattgcgccttatttttggcgtgctaaccattgttcccttcttctggggcatgctggcgttacgggcctggcactatgacgagaatcattacagtggcgcaatatggctgctctatgtcatgatcctggtatggggcgctgactccggcgcatatatgtttggcaaattgtttggtaaacataagctggcaccgaaggtttctccgggtaaaacctggcaaggctttatcggtggactcgctactgcagcggtaatctcatggggttatggcatgtgggcgaatctcgacgtcgctcccgtcaccttactcatttgctctattgtcgcagcgttagcctcagtgctcggcgatctgaccgagagtatgtttaagcgtgaagcaggaattaaggacagcggtcatttaattccaggacacggtggtattttagatcgtattgatagcctgacggctgcggtaccggtctttgcttgcttgttgttactggtattcaggacgctttaacggaaggtaatatgctgagttttctctgggatttggcttcgttcatcgttgcactgggtgtacttatcaccgtgcatgaatttggtcatttctgggttgcccggcgttgtggtgttcgcgttgagcgtttctcaatagggtttggtaaggcgctctggcggcgaactgataagctcggcaccgaatatgttatcgccctgatcccgttgggcggttatgtcaaaatgctggatgagcgcgcagaaccggtcgttccggaactccgccaccatgccttcaataataaatctgtcggccaacgagcggcgattattgccgcaggtccggttgcaaacttcatttttgctatctttgcctactggctggtttttattattggtgtgcctggcgtacgtccggtggttggcgaaatagcagccaattcgatagctgcggaagcacaaattgcaccaggtacggaactaaaagccgtagatggtatcgaaacgcctgattgggatgccgtgcgtttgcagttggtcgataaaattggcgatgaaagcaccaccattacagtagcgccatttggcagcgaccaacggcgggatgtaaagctcgatttacgtcactgggcgtttgagcctgataaagaagatccggtatcttcgctggggattcgtcctcgtgggccgcaaattgaacctgtactggaaaatgtgcagccaaactcggcggcaagcaaggcaggtttgcaagcaggcgacaggatcgttaaagtcgatggtcagcccttaacgcagtgggtgacctttgtgatgcttgtccgggataacccgggtaaatccttagcgttagaaatcgaaaggcaggggagtcccttgtctttgacattaatcccggagagtaaaccgggtaatggtaaagcgattggttttgtcggtattgagccgaaagtcattcctttgccagatgagtataaagttgtacgccagtatgggccgttcaacgccatcgtcgaagccacggacaaaacgtggcagctgatgaagctgacggtcagtatgctgggaaaattgatcaccggtgatgtgaaactgaacaacctcagtgggccgatctctatcgccaagggggctgggatgacagcggaactcggggttgtttattacctgccgtttcttgcgcttattagcgtgaacttagggataattaacctgtttccgttgcccgtacttgacggggggcatctgctgttccttgcgatcgaaaagatcaagggcggaccggtatccgagcgggttcaagacttttgttatcgcattggctcgattctgctggtgctgttaatggggcttgcacttttcaatgatttctctcggttatgagagttagttaggaagaacgcataataacgatggcgatgaaaaagttgctcatagcgtcgctgctgtttagcagcgccaccgtatacggtgctgaagggttcgtagtgaaagatattcatttcgaaggccttcagcgtgtcgccgttggtgcggccctcctcagtatgccggtgcgcacaggcgacacggttaatgatgaagatatcagtaataccattcgcgctctgtttgctaccggcaactttgaggatgttcgcgtccttcgtgatggtgatacccttctggttcaggtaaaagaacgtccgaccattgccagcattactttctccggtaacaaatcggtgaaagatgacatgctgaagcaaaacctcgaggcttctggtgtgcgtgtgggcgaatccctcgatcgcaccaccattgccgatatcgagaaaggtctggaagacttctactacagcgtcggtaaatatagcgccagcgtaaaagctgtcgtgaccccgctgccgcgcaaccgtgttgacctaaaactggtgttccaggaaggtgtgtcagctgaaatccagcaaattaacattgttggtaaccatgctttcaccaccgacgaactgatctctcatttccaactgcgtgacgaagtgccgtggtggaacgtggtaggcgatcgtaaataccagaaacagaaactggcgggcgaccttgaaaccctgcgcagctactatctggatcgcggttatgcccgtttcaacatcgactctacccaggtcagtctgacgccagataaaaaaggtatttacgtcacggtgaacatcaccgaaggcgatcagtacaagctttctggcgttgaagtgagcggcaaccttgccgggcactccgctgaaattgagcagctgactaagatcgagccgggtgagctgtataacggcaccaaagtgaccaagatggaagatgacatcaaaaagcttctcggtcgctatggttatgcctatccgcgcgtacagtcgatgcccgaaattaacgatgccgacaaaaccgttaaattacgtgtgaacgttgatgcgggtaaccgtttctacgtgcgtaagatccgttttgaaggtaacgatacctcgaaagatgccgtcctgcgtcgcgaaatgcgtcagatggaaggtgcatggctggggagcgatctggtcgatcagggtaaggagcgtctgaatcgtctgggcttctttgaaactgtcgataccgatacccaacgtgttccgggtagcccggaccaggttgatgtcgtctacaaggtaaaagagcgcaacaccggtagcttcaactttggtattggttacggtactgaaagtggcgtgagcttccaggctggtgtgcagcaggataactggttaggtacaggttatgctgttggtatcaacgggaccaaaaacgattaccagacctatgctgaactgtcggtaaccaacccgtacttcaccgtagatggcgtaagcctcggtggtcgtctcttctataatgacttccaggcagatgacgccgacctgtccgactataccaacaagagttatggtacagacgtgacgttgggcttcccgattaacgaatataactcgctgcgtgcaggtctgggttatgtacataactccctgtccaacatgcagcctcaggttgcgatgtggcgttatctgtactctatgggtgaacatccgagcacctctgatcaggataacagcttcaaaacggacgacttcacgttcaactatggttggacctataacaagcttgaccgtggttacttcccgacagatggttcacgtgtcaacctgaccggtaaagtgaccattcctggatcggataacgaatactacaaagtgacgttagacacggcgacttatgtgccgatcgatgacgatcacaaatgggttgttctggggcgtacccgctggggttatggtgatggtttaggcggcaaagagatgccgttctacgagaacttctatgccggtggttccagcaccgtgcgtggcttccagtccaataccattggtccgaaagcagtttacttcccgcatcaggccagtaattatgatccggactatgattacgaatgtgcgactcaggacggcgcgaaagacctgtgtaaatcggatgatgctgtaggcggtaacgccatggcggttgccagcctcgagttcatcaccccgacgccgtttattagcgataagtatgctaactcggttcgtacttccttcttctgggatatgggtaccgtttgggatacaaactgggattccagccaatattctggatatccggactatagtgatccaagcaatatccgtatgtctgcgggtatcgcattacaatggatgtccccattggggccgttggtgttctcctacgcccagccgttcaaaaagtacgatggagacaaggcagaacagttccagtttaacatcggtaaaacctggtaagtgttctccacaaaggaatgtagtggtagtgtagcgatgactttaggcgatcaatataagatcgccgggccacgcaaagaactgcaccctccggtgcaaatgggatggtaaggagtttattgtgaaaaagtggttattagctgcaggtctcggtttagcactggcaacttctgctcaggcggctgacaaaattgcaatcgtcaacatgggcagcctgttccagcaggtagcgcagaaaaccggtgtttctaacacgctggaaaatgagttcaaaggccgtgccagcgaactgcagcgtatggaaaccgatctgcaggctaaaatgaaaaagctgcagtccatgaaagcgggcagcgatcgcactaagctggaaaaagacgtgatggctcagcgccagacttttgctcagaaagcgcaggcttttgagcaggatcgcgcacgtcgttccaacgaagaacgcggcaaactggttactcgtatccagactgctgtgaaatccgttgccaacagccaggatatcgatctggttgttgatgcaaacgccgttgcttacaacagcagcgatgtaaaagacatcactgccgacgtactgaaacaggttaaataagtaatgccttcaattcgactggctgatttagcgcagcagttggatgcagaactacacggtgatggcgatatcgtcatcaccggcgttgcgtccatgcaatctgcacaaacaggtcacattacgttcatggttaacccaaaataccgtgagcatttaggcttgtgccaggcgtccgcggttgtcatgacccaggacgatcttcctttcgcgaaaagtgccgcactggtagtgaagaatccctacctgacttacgcgcgcatggcgcaaattttagataccacgccgcagcccgcgcagaacattgcacccagtgcggtgatcgacgcgacggcgaagctgggtaacaacgtatcgattggcgctaacgcggtgattgagtccggcgttgaactgggcgataacgtgattatcggtgccggttgcttcgtaggtaaaaacagcaaaatcggtgcaggttcgcgtctctgggcgaacgtaaccatttaccatgagatccagatcggtcagaattgcctgatccagtccggaacagtggtaggcgcagacggctttggttatgccaacgatcgtggtaactgggtgaagatcccacagattggtcgcgtaattattggcgatcgcgtggagatcggtgcctgcacaaccatcgatcgcggcgcgctggatgacactattattggcaatggcgtgatcattgataaccagtgccagattgcacataacgtcgtgattggcgacaatacggcggttgccggtggcgtcattatggcgggcagcctgaaaattggtcgttactgcatgatcggcggagccagcgtaatcaacgggcatatggaaatatgcgacaaagtgacggttacgggcatgggtatggtgatgcgtcccatcactgaaccaggcgtctattcctcaggcattccgctgcaacccaacaaagtctggcgcaaaaccgctgcactggtgatgaacattgatgacatgagcaagcgtctgaaatcgcttgagcgcaaggttaatcaacaagactaacgttccatcttttgttcgccaaactttacggcctgtctcattcttacgattgcggcaggccgtgttattattgtcgtttcttatattttgacaggaagagtatcttgactactaacactcatactctgcagattgaagagattttagaacttctgccgcaccgtttcccgttcttactggtggatcgcgtgctggattttgaagaaggtcgttttctgcgcgcagtaaaaaatgtctctgtcaatgagccattcttccagggccatttccctggaaaaccgattttcccgggtgtgctgattctggaagcaatggcacaggcaacaggtattctggcgtttaaaagcgtaggaaaactggaaccgggtgagctgtactacttcgctggtattgacgaagcgcgcttcaagcgcccggtcgtgcctggcgatcaaatgatcatggaagtcactttcgaaaaaacgcgccgcggcctgacccgttttaaaggggttgctctggtcgatggtaaagtagtttgcgaagcaacgatgatgtgtgctcgtagccgggaggcctgatacgtgattgataaatccgcctttgtgcatccaaccgccattgtggaagagggcgcgtcaattggcgcgaacgcacacattggtcctttttgtatcgttggaccccatgtcgaaattggtgagggtaccgtactgaaatctcacgttgtcgtgaatggtcatactaaaattggccgcgataatgagatttatcagttcgcctccatcggcgaagttaaccaggatctgaaatatgctggcgaaccgacccgtgtggaaatcggcgatcgtaaccgcattcgcgaaagcgtcaccattcatcgtggcacagtccagggcggtggattgacgaaggtgggcagcgacaacttactgatgatcaacgcgcacattgcgcacgattgtacggtaggtaaccgctgtattctcgccaacaacgcaacgctggcgggtcacgtatcggttgacgacttcgcgatcatcggcggcatgaccgcagtccatcagttctgcatcattggtgcgcacgtgatggttggcggctgctccggtgtggcgcaggacgtccctccttatgtcattgcgcagggtaaccacgcaacgccgttcggtgtcaatatcgaagggctgaagcgccgcggattcagccgtgaggcgattaccgctatccgcaatgcgtataagctgatttatcgtagcggtaaaacgctcgatgaagtgaaaccggaaattgctgaactggcggaaacatatccggaagtgaaagcctttaccgatttctttgcacgctcaacgcgcggtctgattcgttaatgactgaacagcgtccattaacgattgccctggtcgccggagaaacctccggcgatatcctgggggccggtttaatccgcgctctgaaagaacatgtgcccaacgcccgctttgttggtgttgccgggccacgaatgcaggctgaaggctgcgaagcctggtacgaaatggaagaactggcggtgatgggcattgttgaagtgctcggtcgtctgcgtcgcttactgcatattcgtgccgatctgacaaagcgttttggcgaactgaagccagatgtttttgttggtattgatgcgcctgacttcaatattactcttgaaggtaacctcaaaaagcagggtatcaaaaccattcattacgtcagtccgtcagtctgggcgtggcgacagaaacgtgttttcaaaataggcagagccaccgatctggtgctcgcatttctgcctttcgaaaaagcgttttatgacaaatacaacgtaccgtgccgctttatcggtcataccatggctgatgccatgccattagatccagataaaaatgccgcccgtgatgtgctggggatccctcacgatgcccactgcctggcgttgctaccggggagccgtggtgcagaagttgaaatgcttagtgccgatttcctgaaaacggcccagcttttgcgccagacatatccggatctcgaaatcgtggtgccactggtgaatgccaaacgccgcgagcagtttgaacgcatcaaagctgaagtcgcgccagacctttcagttcatttgctggatgggatgggccgtgaggcgatggtcgccagcgatgcggcgctactggcgtcgggtacggcagccctggagtgtatgctggcgaaatgcccgatggtggtgggatatcgcatgaagccttttaccttctggttggcgaagcggctggtgaaaactgattatgtctcgctgccaaatctgctggcgggcagagagttagtcaaagaattattgcaggaagagtgtgagccgcaaaaactggctgcggcgctgttaccgctgttggcgaacgggaaaaccagccacgcgatgcacgataccttccgtgaactgcatcagcagatccgctgcaatgccgatgagcaggcggcacaagccgttctggagttagcacaatgatcgaatttgtttatccgcacacgcagctggttgcgggtgtggatgaagtcggacgcgggccgttagttggcgcggtcgtcaccgctgcggtgatccttgacccggcgcgcccgattgccgggctgaatgattccaaaaagctgagcgaaaaacgccgtctggcgctctatgaagagatcaaagagaaagcgttgagctggagtctgggccgcgcggaaccccacgaaatcgacgagctgaacattcttcatgcgaccatgctggcgatgcagcgtgccgtcgctgggctgcatattgcgccggaatatgtgttgattgatggtaaccgctgcccgaaattaccgatgcctgcgatggctgtggtgaaaggcgatagccgcgtaccggaaatcagtgccgcgtctatcctggcgaaagtgacgcgtgacgccgaaatggcggcgctggatattgttttcccgcaatatggttttgcccaacacaaagggtacccaaccgcttttcatctggaaaaactggctgaacacggcgcgaccgaacaccatcggcgcagctttgggcctgtcaaacgcgcactgggacttgcgtcctgattcttgtgtcgagattaagtaaaccggaatctgaagatgtctgaaccacgtttcgtacacctgcgggtgcacagcgactactcgatgatcgatggcctggccaaaaccgcaccgttggtaaaaaaggcggcggcgttgggtatgccagcactggcgatcaccgatttcaccaacctttgtggtctggtgaagttctacggagcgggacatggcgcagggattaagcctatcgtcggggcagattttaacgtccagtgcgacctgctgggtgatgagttaacccacctgacggtactggcggcgaacaataccggctatcagaatctgacgttgctgatctcaaaagcgtatcagcgcgggtacggtgccgccgggccgatcatcgatcgcgactggcttatcgaattaaacgaagggttgatccttctttccggcggacgcatgggcgacgtcggacgcagtcttttgcgtggtaacagcgcgctggtagatgagtgtgtcgcgttttatgaagaacacttcccggatcgctattttctcgagctgatccgcaccggcaggccggatgaagaaagctatctgcacgcggcggtggaactggcggaagcgcgcggtttgcccgtcgtggcgaccaacgacgtgcgctttatcgacagcagcgactttgacgcacacgaaatccgcgtcgcgatccacgacggctttaccctcgacgatcctaaacgcccgcgtaactattcgccgcagcaatatatgcgtagcgaagaggagatgtgtgagctgtttgccgacatccccgaagcccttgccaacaccgttgagatcgccaaacgctgtaacgtaaccgtgcgtcttggtgaatacttcctgccgcagttcccgaccggggacatgagcaccgaagattatctggtcaagcgtgcaaaagagggcctggaagagcgtctggcctttttattccctgatgaggaagaacgtcttaagcgccgcccggaatatgacgaacgtctggagactgaacttcaggttatcaaccagatgggcttcccgggctacttcctcatcgttatggaatttatccagtggtcgaaagataacggcgtaccggtagggccaggccgtggctccggtgcgggttcactggtggcctacgcgctgaaaatcaccgacctcgatccgctggaatttgacctgctgttcgaacgtttccttaacccggaacgtgtctccatgcctgacttcgacgttgacttctgtatggagaaacgcgatcaggttatcgagcacgtagcggacatgtacggtcgtgatgcggtatcgcagatcatcaccttcggtacaatggcggcgaaagcggtgatccgcgacgtaggccgcgtgctggggcatccgtacggctttgtcgatcgtatctcgaaactgatcccgcccgatccggggatgacgctggcgaaagcgtttgaagccgagccgcagctgccggaaatctacgaagcggatgaagaagttaaggcgctgatcgacatggcgcgcaaactggaaggggtcacccgtaacgccggtaagcacgccggtggggtggttatcgcgccgaccaaaattaccgattttgcgccgctttactgcgatgaagagggcaaacatccggtcacccagtttgataaaagcgacgttgaatacgccggactggtgaagttcgacttccttggtttgcgtacgctcaccatcatcaactgggcgctggagatgatcaacaagcggcgggcgaagaatggcgagccgccgctggatatcgctgcgatcccgctggatgataagaaaagcttcgacatgctgcaacgctcggaaaccacggcggtattccagcttgaatcgcgcggcatgaaggacctgatcaagcgtctacaacctgactgcttcgaagatatgatcgccctagtggcactgttccgccccggtccgttgcaatcagggatggtggataactttatcgaccgtaaacatggtcgtgaagagatctcctatccggacgtacagtggcagcatgaaagcctgaaaccggtactggagccaacctacggcattatcctgtatcaggaacaggtcatgcagattgcgcaggtgctttctggttataccctcggtggcgcggatatgctgcgtcgtgcgatgggtaagaaaaagccggaagagatggctaagcaacgttctgtatttgctgaaggtgcagaaaagaacggaatcaacgctgaactggcgatgaaaatcttcgacctggtggagaaattcgctggttacggatttaacaaatcgcactctgcggcctatgctttggtgtcatatcaaacgttatggctgaaagcgcactatcctgcggagtttatggcggcggtaatgaccgccgatatggacaacaccgagaaggtggtgggtctggtggatgagtgctggcggatggggctgaaaatcctgccaccagatataaactccggtctttaccatttccacgtcaacgacgacggcgaaatcgtgtatggtattggcgcgatcaaaggggtcggtgaaggtccgattgaggccatcatcgaagcccgtaataaaggcggctacttccgcgaactgtttgatctctgcgcccgtaccgacaccaaaaagttgaaccgtcgcgtgctggaaaaactgatcatgtccggggcgtttgaccgtcttgggccacatcgcgcagcgctgatgaactcgctgggcgatgcgttaaaagcggcagatcaacacgcgaaagcggaagctatcggtcaggccgatatgttcggcgtgctggccgaagagccggaacaaattgaacaatcctacgccagctgccaaccgtggccggagcaggtggtattagatggggaacgtgaaacgttaggcctgtacctgaccggacaccctatcaaccagtatttaaaagagattgagcgttatgtcggaggcgtaaggctgaaagacatgcacccgacagaacgtggtaaagtcatcacggctgcggggctcgttgttgccgcgcgggttatggtcaccaagcgcggcaatcgtatcggtatctgcacgctggatgaccgttccgggcggctggaagtgatgttgtttactgacgccctggataaataccagcaattgctggaaaaagaccgcatacttatcgtcagcggacaggtcagctttgatgacttcagcggtgggcttaaaatgaccgctcgcgaagtgatggatattgacgaagcccgggaaaaatatgctcgcgggcttgctatctcgctgacggacaggcaaattgatgaccagcttttaaaccgactccgtcagtctctggaaccccaccgctctgggacaattccagtacatctctactatcagagggcggatgcacgcgcgcggttgcgttttggcgcgacgtggcgtgtctctccgagcgatcgtttattaaacgatctccgtggcctcattggttcggagcaggtggaactggagtttgactaatacaggaatactatgagtctgaatttccttgattttgaacagccgattgcagagctggaagcgaaaatcgattctctgactgcggttagccgtcaggatgagaaactggatattaacatcgatgaagaagtgcatcgtctgcgtgaaaaaagcgtagaactgacacgtaaaatcttcgccgatctcggtgcatggcagattgcgcaactggcacgccatccacagcgtccttataccctggattacgttcgcctggcatttgatgaatttgacgaactggctggcgaccgcgcgtatgcagacgataaagctatcgtcggtggtatcgcccgtctcgatggtcgtccggtgatgatcattggtcatcaaaaaggtcgtgaaaccaaagaaaaaattcgccgtaactttggtatgccagcgccagaaggttaccgcaaagcactgcgtctgatgcaaatggctgaacgctttaagatgcctatcatcacctttatcgacaccccgggggcttatcctggcgtgggcgcagaagagcgtggtcagtctgaagccattgcacgcaacctgcgtgaaatgtctcgcctcggcgtaccggtagtttgtacggttatcggtgaaggtggttctggcggtgcgctggcgattggcgtgggcgataaagtgaatatgctgcaatacagcacctattccgttatctcgccggaaggttgtgcgtccattctgtggaagagcgccgacaaagcgccgctggcggctgaagcgatgggtatcattgctccgcgtctgaaagaactgaaactgatcgactccatcatcccggaaccactgggtggtgctcaccgtaacccggaagcgatggcggcatcgttgaaagcgcaactgctggcggatctggccgatctcgacgtgttaagcactgaagatttaaaaaatcgtcgttatcagcgcctgatgagctacggttacgcgtaattcgcaaaagttctgaaaaagggtcacttcggtggcccttttttatcgccacggtttgagcaggctatgattaaggaaggattttccaggaggaacacatgaacatcattgccattatgggaccgcatggcgtcttttataaagatgagcccatcaaagaactggagtcggcgctggtggcgcaaggctttcagattatctggccacaaaacagcgttgatttgctgaaatttatcgagcataaccctcgaatttgcggcgtgatttttgactgggatgagtacagtctcgatttatgtagcgatatcaatcagcttaatgaatatctcccgctttatgccttcatcaacacccactcgacgatggatgtcagcgtgcaggatatgcggatggcgctctggttttttgaatatgcgctggggcaggcggaagatatcgccattcgtatgcgtcagtacaccgacgaatatcttgataacattacaccgccgttcacgaaagccttgtttacctacgtcaaagagcggaagtacaccttttgtacgccggggcatatgggcggcaccgcatatcaaaaaagcccggttggctgtctgttttatgattttttcggcgggaatactcttaaggctgatgtctctatttcggtcaccgagcttggttcgttgctcgaccacaccgggccacacctggaagcggaagagtacatcgcgcggacttttggcgcggaacagagttatatcgttaccaacggaacatcgacgtcgaacaaaattgtgggtatgtacgccgcgccatccggcagtacgctgttgatcgaccgcaattgtcataaatcgctggcgcatctgttgatgatgaacgatgtagtgccagtctggctgaaaccgacgcgtaatgcgttggggattcttggtgggatcccgcgccgtgaatttactcgcgacagcatcgaagagaaagtcgctgctaccacgcaagcacaatggccggttcatgcggtgatcaccaactccacctatgatggcttgctctacaacaccgactggatcaaacagacgctggatgtcccgtcgattcacttcgattctgcctgggtgccgtacacccattttcatccgatctaccagggtaaaagtggtatgagcggcgagcgtgttgcgggaaaagtgatcttcgaaacgcaatcgacccacaaaatgctggcggcgttatcgcaggcttcgctgatccacattaaaggcgagtatgacgaagaggcctttaacgaagcctttatgatgcataccaccacctcgcccagttatcccattgttgcttcggttgagacggcggcggcgatgctgcgtggtaatccgggcaaacggctgattaaccgttcagtagaacgagctctgcattttcgcaaagaggtccagcggctgcgggaagagtctgacggttggtttttcgatatctggcaaccgccgcaggtggatgaagccgaatgctggcccgttgcgcctggcgaacagtggcacggctttaacgatgcggatgccgatcatatgtttctcgatccggttaaagtcactattttgacaccggggatggacgagcagggcaatatgagcgaggaggggatcccggcggcgctggtagcaaaattcctcgacgaacgtgggatcgtagtagagaaaaccggcccttataacctgctgtttctctttagtattggcatcgataaaaccaaagcaatgggattattgcgtgggttgacggaattcaaacgctcttacgatctcaacctgcggatcaaaaatatgctacccgatctctatgcagaagatcccgatttctaccgcaatatgcgtattcaggatctggcacaagggatccataagctgattcgtaaacacgatcttcccggtttgatgttgcgggcattcgatactttgccggagatgatcatgacgccacatcaggcatggcaacgacaaattaaaggcgaagtagaaaccattgcgctggaacaactggtcggtagagtatcggcaaatatgatcctgccttatccaccgggcgtaccgctgttgatgcctggagaaatgctgaccaaagagagccgcacagtactcgattttctactgatgctttgttccgtcgggcaacattaccccggttttgaaacggatattcacggcgcgaaacaggacgaagacggcgtttaccgcgtacgagtcctaaaaatggcgggataacttgccagagcggcttccgggcgagtaacgtgctgttaacaaataaaggagacgttatgctgggtttaaaacaggttcaccatattgcgattattgcgacggattatgcggtgagcaaagctttctactgcgatattcttggtttcacgctgcaaagcgaagtctatcgcgaagcgcgcgactcatggaaaggggatttggcgcttaatgggcaatatgtgattgagcttttctcatttccgttcccgccggaacgacccagccgaccggaagcttgcggtctgcgtcatctggcttttagcgttgatgacatcgatgcggcagtggcgcaccttgaaagccataacgtgaagtgtgaaaccatccgtgtcgatccatacacgcaaaaacgcttcaccttctttaacgatccggacgggctgccgttggaactgtatgagcagtaaggcttgtcatcgccgcatttgcccggtaacgtgccgggcattgctactgtaaaatcgcaccatcatgacactcacgctcaatagacaacttctcacctcacgccagattctggtggcctttagcggcgggcttgactccaccgttctgctgcatcagttggtgcagtggcggacggaaaatccgggtgtcgctctgcgcgctattcatgtgcatcacggtttaagtgccaatgccgatgcctgggttacgcattgcgaaaacgtctgccaacagtggcaggtgccgctggtggtcgaacgcgtacaacttgcgcaagaaggactgggcattgaggcccaggcgcggcaggcacgttatcaggcatttgcccgcaccttgttgcccggtgaagtgctggtcaccgcgcaacatctcgacgatcaatgtgaaacctttctgctggcgctaaaacgcggcagtggccctgccgggctttcggctatggcggaagtctcggagtttgccggaacgcggcttattcgcccgttgctcgcccgcacgcggggggaactggtgcagtgggcgcgtcagtatgatttacgctggattgaagacgaaagtaatcaggacgactcatacgatcgtaactttctgcgcctgcgcgtagtgccgttattgcagcagcgttggccgcattttgccgaagcaacggcccgcagcgccgcactttgtgctgaacaagagagcctgctggatgaactgctggcagatgatttagcacactgtcaatcgccgcaggggacgctgcagattgtgccaatgctggcgatgagtgatgcccgccgcgcggcgattatccgccgctggctggcagggcagaatgcaccgatgccttcccgcgacgcgttggtgaggatctggcaggaagtggcgctggcgcgggaagatgcctcaccctgtttacgtttgggcgcgtttgaaatccgacgctatcagtcgcaactgtggtggattaaatccgtcaccgggcaaagcgaaaacattgtgccgtggcagacgtggcttcaaccgctggaattaccggcggggctgggaagtgtacagcttaatgcgggaggcgatattcgccctccgcgtgcagacgaagcggtcagcgtgcgtttcaaagcgccaggattgctgcatattgtcgggcgtaacggcggacgtaagctaaagaaaatctggcaagagctgggcgtgccgccgtggctacgtgacaccacgccactgctgttttatggcgaaacgctgattgcggcggcaggggtatttgtgacgcaagaaggtgtggctgaaggtgagaatggcgtaagttttgtctggcagaaaacgcttagttaagtgaaagccggataagacgcatcaaacgtcgcatccggcgaaagtcaatcaggattcgcttaccaccaccgtaccgatttccgggtggctaaagctggtaattttatccagacgcagctcgcgggtttcgccagcggcctcgacgaccaggtactccacatttttgcgggagactaaatcactggcttttgcctgcaatttttcgccatctttcagctcaagtgtcagcattaaatgatgctggcaggcgagctcaagattatcgtaatcatcacaattgattggttgatacgtatcattcattgacataatcgctcaccagtaagtttgccgcagcgtatgctgctttttccctgacagcctcagaaagggcgtcgtcggcagccatttcattcagcactttcaaaacgcagcccagcgcgtccggaacgtatcctaagtctccgctggcgatttccgcgtaccgcttgcgtattaactcacaatatttttccacatgccctcctgtcagcactctgacttaaccgtggatgcaagtctaagcctacgaagataaactctgtttcgcaaggtgactataccacactcatttctgcaatatcagcgccgcaactgcacgtattccgttacaatggcctcctgattcgaaaggagttttcttatggcgcttaaagcgacaatttataaagcgacggttaatgtggccgatctcgaccgcaaccagtttctcgatgcctctctgacgctggcgcgccatccttcagaaacccaggagcgtatgatgctgcgcttgctggcgtggctgaaatatgctgatgaacgtctgcaatttacccgtggtttgtgtgccgatgatgagccggaagcgtggctgcgtaacgatcacctgggcattgatttgtggattgagctggggctgccggatgagcggcggattaagaaagcctgcacccaggccgcagaagtggcgctgtttacctataatagtcgggcggcgcaaatctggtggcagcaaaatcagagcaaatgtgtgcagtttgccaatctttccgtctggtatctggacgatgaacaactggcgaaagtaagcgcctttgccgatcgtaccatgacgctgcaggcaacgattcaggatggcgtgatctggttatcggatgataagaataatctggaagtgaacttaaccgcctggcaacaaccttcatgattgtgatttcccgacatgttgctattcccgatggtgagcttgagatcaccgccattcgtgcgcagggcgcgggcgggcagcatgttaataagacctcaacggctattcatctgcgttttgacattcgggcgtccagcctgccagagtattacaaagagcgtctgctcgccgccagccatcatttgatcagcagtgatggcgtgattgtcattaaggcacaggaataccgcagtcaggaactgaaccgcgaagcagctctggcccggctggtggctatgattaaagaattaacaacagaaaaaaaagcccgacgacccacgcggcccacccgtgcatcgaaagagcgcaggctggcatcgaaagcacaaaaatcaagcgtgaaggcgatgcgcggcaaagtgcgcagcggtcgggaataaaaagaaggaatggatggtgaaaaaagcgatagtgacagcgatggctgtaatcagcctctttactctgatgggatgtaataatcgggccgaagtcgatacgctttctccggcgcaggctgccgaactgaaaccgatgccgcaaagttggcgcggcgtgctgccgtgtgccgattgcgaaggaatcgaaacctctctgttcctcgaaaaagacggaacatgggtgatgaatgagcgttatctcggtgctcgtgaagaaccttcctccttcgcttcctacggtacatgggcgcgaaccgctgacaagctggtattaaccgacagcaaaggtgaaaagtcatattatcgggcgaaaggcgatgcgctggagatgctcgatcgtgaaggcaatccgattgaatcgcagttcaactatacgctggaagcggcacaatccagtttacctatgacgccgatgaccctgcggggcatgtatttttatatggctgatgcggcgaccttcactgattgcgcgaccggaaaacgtttcatggtagcgaataacgcagagctggagcgtagctacctggctgcgcgcggtcacagtgaaaaaccggtgttactgtcagtagaaggtcactttacgcttgagggtaatccggataccggtgcgccgactaaagtattggcacccgatacggcagggaaattttaccccaaccaggattgcagtagtttggggcagtaacccgtcttgagacagaaacaaacgcaaaacaggccagaaggatatatttcaacattttgaatttgcacgttttttgtaggccggataaggcgtttacgccgcatccggcaatggtgctcaacgcctgatgcgacgctggcgcgtcttatcatgcctacaacccccctcataccttaaggcggataaggcatttactttatcaccgggtcaaaccaacaaagcgacccgccttgatataaatcccaggcttcaggtgcccaacatactgtaactgcgtttctggcttaaacgcagagacatcaccaatacgcatatgcatcagatcggcagggctaatccagcccgattgcgccagtgtaagtggatgcccggctttggcaaaggcatccgtgacaaattccgaacaaaaccacgactttttgtctccttcgcccacactgcttaactgcgctttcgccaggccgctgacgcactgttggcgaaaatcctcggagaacggattcagtgagcacatctggcgagtcaccataaagggaataaattcgacaatgccgcgatagttataaccgctatctttgattttattggcaaacgcggtgatatctgtggcttgttgcggggtaagatccgggactcgtaagacgaaaagcttatcactatgcttcatcgcttttttaagggaaacgatctggacgccagcgcctgtcgcttctgcaacgttattatcacccagaaagattgcaacgtgactcacagaggaagtgctgaagacgcggattccaaatgaggttaccccaaggcttgaggagaacagcaaatcgccgggtttgagatcaggtgccgttatttcttttattgattgttcggtgaaagagctttgatgctggaatttgacagcccatgtttttgcctcggcatctactgctgtggctgatgggtctggctggctgatatcaacggtacaagccgaaagtaaaagaaagctggggagaaacaggcggcagtacgcctttggtttatccattttatacaatccatgtaaaaaaagggccctgaaattcaggaccctttctggcatcagcctttaatctgtttcaccagatattcgacgatgtcaccagtcttaattaactgtttctcgccgttgcgacgatatttatattcgatatcgtcgttgtcgaggttacggtcgcccagcacaatagtgtgcggaataccgatcagttccatatcagcaaacatcacgcccggacgctctttgcggtcatccagcagcacttcgataccttgtgcacgcagttcgctgtacagtttctcagcaagctcttgtacgcggaaggatttgtgcatgttcatcggcagaatcgccacctggaacggcgcgatagcgtcaggccatacgatgcctcgttcgtcgtagttctgctcaatcgccgcagctaccacacgcgttaccccgataccgtagcaacccatcgtcaggatttggttacggccatcttcaccctgtacggaggctttcagtgcttcggagtacttggtacccagctggaagatgtgaccaacttcgataccacgtttgatcagcagcctaccctggccatccgggcttggatcgccagccaccacgttacggatatctgcaacttccggggtagcgacatcgcgatcccagttgatgccgaagtagtgtttaccatcgatgttagcaccagcagcgaaatcactcatcgccgcaacggtacggtcaatcaccaccggaatcggcatgtttaccggacccagtgaacccggaccggctttaaccacggcacgaatttcttcttcggtcgcgaaagtcagcgggcttgcaacctgcggcagtttttctgctttaacttcgttcagctcgtgatcaccgcgcaccagcagcgcaacctgcgggaagctgctgccttcaaccgctttaaccagcagagtcttaaccgttttctcaatcggcagattgaactgttcaaccagttccgcgatggttttcgcgttcggcgtatcaaccagcgtcatttcctgggtagcagcagcgcgcggttctttcggcgcgatagcttctgccagttcaatgttcgctgcatagtcagaggtgtcggagaagaccacatcgtcttcaccgctctgcgccagcacctggaattcgtgagaggcgctgccgccgatagaaccggtgtcggcttgtacggcgcggaaatccagccccatgcggctgaagattttgctgtaggccgcatacattgcatcgtaggtttcctgcagggattcctgagaagtatggaaagagtaagcatctttcatcaggaattcgcgggaacgcatgacgccgaaacgcggacgcacttcgtcgcggaacttggtctggatctgatagaagttcagcggcagctgtttgtaagagctaagctcgttacgaatcaggtcagtgataacttcttcatgagttgggccgagtacgaacggacgctcgccacggtcaacaaaacgcagcagttccggaccgtactgttcccaacgaccactctcttgccacaaatcggctggctgaaccaccggcatcgacacctcgatcgcaccggcgttgttcatctcttcacgcacgatgttttcgacttttttcagaacgcgcacgccggtcggcagccaggtatataacccggaggccagcttgcggatcatcccggcgcgcagcatcagctgatggctgatcacctcggcgtcggcaggtgtctccttgagagtggagagcaggtattggctagtacgcatgttgttacggttccagttggaaggtagaacaggctcaaggcgagcctgggacaaaaaaaagtgatttagtttaccagtgcaaaagaaatgtcaaaagagaagggcgtgaatttaacgcggttccagcgcaaagacttcaaaacctgcgtcggtgacgcgccagcgaacgttaaaatcatgtagccagacggcataggttttgcccgtttcctcacctttacgataggccgggcgcgggtcctgcgccagtacttcgcggataaacagcgttaactgcggataacgcttctccagcgtcaaaagctgcttttcgacctctgcggtaaaactcaccgccatctctgcagctggcgcactttgcgcatagctggcactggcatcgggaagcgattcggcaaaggggagatacggtttgatatccactaccggcgtaccatcgaccagatccagactgccgagcttcagaatcacgctgtctttatggcaaacaacctctttcagctctaccagcgacatgccaattgggttagggcggaaagtagagcgtgttgcgaaaacccccattctggcgttaccgccgaggcgcggtggacgcacagtcggacgccagccgccttccatcgtttgatgaaagacgaaaaggatccataaatggctgaacgcttccaggccgcgaacggcgtcggcctggttgtagggagcaatgagatgcagttcgccgttggcgctttttaccagacctggctggcgcggaacggcgaacttttctttatagggcgagcgaataacgcctatttgctcgaactggaaactgctcatttcgccgtaatgttaagcgcagaaccgatacatacagcctgacgatagcagcctggcgtaccgctggtgacttcgcagctatgcagtaatacagcattggctttcattttagaggcgttgatttgcatccgcttacgtgcggttggaatgctcggcggagagtcctgattagaggcctggcaagagtcgccactgacttcaccgagatcgcggaacggtttgccgactaattcttctgcattggtataaattcggaccggcgtggcgcgcggcgctttcggttttgcaggctccgctttcggctggggtgcagtgctttgaacgggttcgacaggggatctgcttaacatggaacagccgcttagcatgagtgctactaaacagatcggtaaagcacgcatagtatttcctcaatgtatgatcaaaacgtcaatattgaatcaggagcttgtaaaaatgacaagacgggcaagcgcccgtcctgaatgatattacaaattgtggaaacagcctaaaaattaccagcctttaacagctccgccgttaaacactttgtttgctgcttcgtaaacttcgtcagactgataagcctggacgaatttcttcacgttctcggcgtctttgttatcttcacgcgtcacgatcaggtttacgtacggggactctttatcttcaacaaagataccgtctttcgccggagtcaggccaatctggctggcataggtggtattgataactgccagagcgatttgcgcgtcgtccagagaacgcggcagttgcggtgcttccagttcaacaattttcagatttttggggttctcaacaacatcaagaacggtcggcagcaggccaacgccatctttcagtttgatcaagcccactttttgcagcagcagcagtgaacgaccaaggttagttgggtcgtttggcacggcaacctgcgaaccatcctgcagttcatccagtgatttgattttcttggagtaaccagcaatcggataaacaaaagtgttgcctactgcgaccagtttgtagccacgatctttcagttgctgatcaaggtacggtttatgctggaaggcgttggcgtcgatatcgcctttgctcaatgcttcgtttggcagaacatagtcgttgaaggttaccagctcaacgtccaggccatatttgtctttcgcaactttctgcgcgacttctgcaacctgctgttcggcaccaacaatcacgccgactttaatgtggtttggatctttttcatcctgaccgcagcctaccagtgccagtgatccgatcagggctcccactgccgcaaaggttttgaatttgaacgccataccttattccttcttcaattatttatgttgtgttgaacgttacttgcgagtgacagcccggacgatgcggtcgcctgcgaactgaattaaataaaccagaatgaccagcaataccagtaccgtattcatcaccgtcgcgttatagccgatgtagccatactgatagccaatctgacctaaaccaccggcaccgactgcaccacccatcgcggaataaccgaccagggtaatcagggtgatagttgccgcattcaccagacccggcagcgcttccggtaacagcaccttacggacgatctgcatcggcgtggcacccattgcgcgggaagcttcaattaacccggttgggatctccagcagagcgttctcgaccatacgggcaataaacggtgctgcaccaacggttaacggaacaatcgctgcctgcaaaccaatcgatgtaccgacaataacgcgggtaaacggaatcatccatacaagcaagataatgaacgggatggaacggaaaatgttcacaatcgcagaaacggtacgatacagcttcgcgttagcaataatttgccccggacgcgtgacataaagcagaacgccaaccggcagaccaatcacaaagccaaaaaaaccggatacgaaggtcattgccagcgtttcccatacgccacgaaccagcagccacatcatcggctcagacataacccagtacctctacttttacatggtgttcctgcagccaggcaatggcggcttgcgtatcttgttgtgtgccgtgcatttcagtcagcatgatgccgaacttaacgccaccggcgtaatccatctgcgcgctaataatgttgttgttgacgttgaaacgacgcgcggtttcagaaagcagtggggcatcgaccgattgaccggtaaactccagacgcagcatcggcacgcagtcagtaaatggctccgcttgcagacgttcctggtaatcttccgggatatccagatgcagggtcgactgaataaacttctgcgccagcggcgttttcggatgcgagaacacttcacttaccgtgtcctgctcgatcagttctccattgctgatgaccgccacgcaatcacaaatgcgcttcacaacgtccatttcgtgggtgatcaacagaatcgtcaaccccagacggcggttgatgtctttcagcagttcgagaatagaacgtgtcgttgccgggtccagcgcgctggtggcttcatcacacagcaatactttgggattgctggctaacgcacgggcaattgccacacgttgtttctgcccaccggaaagattcgacgggtagctatcatgcttatcgccaagaccaaccaatgacagcaattccgtcacgcgacgtttgacctcgtctttcggtgtgttgtccagctccagcggcagagccacgttgccaaaaacagtacgcgaagagagcaggttaaaatgctggaaaatcataccaatctggcggcgagctttggtcaactcggattctgacagcgtggtcagttcctggccatcgaccagcacgctaccctcggttgggcgctccagcaggtttacacaacgtataagcgtactcttacccgcgcctgaggcaccgataacgccataaatttgtccagctggcacatgcaggctgacgttgttcaacgcctggatggtgcgggtgccctggtggaacactttggtgatattcgaaagttttatcattgattatttattatcgtcattaagttagtcgtggcatctcgaatgcctgaaacgggcaacgccgtcaatgaaatggatgttaaggcatccagacgtctaaatcaatcaggtttatgcgaagagcactttcttgcaggtcgaaacatgcgatactagcgtcacatgccttattaaggagctataaaaggtggcgaagagcgtacccgcaatttttcttgaccgtgatggcaccattaatgtcgatcacggctatgtccatgagatcgacaactttgaatttatcgacggtgttattgacgccatgcgcgagctaaaaaaaatgggctttgcgctggtggtagtaaccaaccagtctggcattgctcgcggtaaatttaccgaagcacagtttgaaacgctgaccgagtggatggactggtcgctggcggaccgagatgtcgatctggatggtatctattattgcccgcatcatccgcagggtagtgttgaagagtttcgccaggtctgcgattgccgcaaaccacatccggggatgcttttgtcagcacgcgattatttgcatattgatatggccgcttcttatatggtgggcgataaattagaagatatgcaggcagcggttgcggcgaacgtgggaacaaaagtgctggtgcgtacgggtaaacctattacgcctgaagcagaaaacgcggcggattgggtgttaaatagcctggcagacctgccgcaagcgataaaaaagcagcaaaaaccggcacaatgattaaaagatgagcggttgaaataaaaatgcatttttccgcttgtcttcctgagccgactccctataatgcgcctccatcgacacggcggatgtgaatcacttcacacaaacagccggttcggttgaagagaaaaatcctgaaattcagggttgactctgaaagaggaaagcgtaatatacgccacctcgcgacagtgagctgaaagccgcgtcgcaactgctctttaacaatttatcagacaatctgtgtgggcactcgaagatacggattcttaacgtcgcaagacgaaaaatgaataccaagtctcaagagtgaacacgtaattcattacaaagtttaattctttgagcatcaaacttttaaattgaagagtttgatcatggctcagattgaacgctggcggcaggcctaacacatgcaagtcgaacggtaacaggaagaagcttgcttctttgctgacgagtggcggacgggtgagtaatgtctgggaaactgcctgatggagggggataactactggaaacggtagctaataccgcataacgtcgcaagaccaaagagggggaccttcgggcctcttgccatcggatgtgcccagatgggattagctagtaggtggggtaacggctcacctaggcgacgatccctagctggtctgagaggatgaccagccacactggaactgagacacggtccagactcctacgggaggcagcagtggggaatattgcacaatgggcgcaagcctgatgcagccatgccgcgtgtatgaagaaggccttcgggttgtaaagtactttcagcggggaggaagggagtaaagttaatacctttgctcattgacgttacccgcagaagaagcaccggctaactccgtgccagcagccgcggtaatacggagggtgcaagcgttaatcggaattactgggcgtaaagcgcacgcaggcggtttgttaagtcagatgtgaaatccccgggctcaacctgggaactgcatctgatactggcaagcttgagtctcgtagaggggggtagaattccaggtgtagcggtgaaatgcgtagagatctggaggaataccggtggcgaaggcggccccctggacgaagactgacgctcaggtgcgaaagcgtggggagcaaacaggattagataccctggtagtccacgccgtaaacgatgtcgacttggaggttgtgcccttgaggcgtggcttccggagctaacgcgttaagtcgaccgcctggggagtacggccgcaaggttaaaactcaaatgaattgacgggggcccgcacaagcggtggagcatgtggtttaattcgatgcaacgcgaagaaccttacctggtcttgacatccacagaactttccagagatggattggtgccttcgggaactgtgagacaggtgctgcatggctgtcgtcagctcgtgttgtgaaatgttgggttaagtcccgcaacgagcgcaacccttatcttttgttgccagcggtccggccgggaactcaaaggagactgccagtgataaactggaggaaggtggggatgacgtcaagtcatcatggcccttacgaccagggctacacacgtgctacaatggcgcatacaaagagaagcgacctcgcgagagcaagcggacctcataaagtgcgtcgtagtccggattggagtctgcaactcgactccatgaagtcggaatcgctagtaatcgtggatcagaatgccacggtgaatacgttcccgggccttgtacacaccgcccgtcacaccatgggagtgggttgcaaaagaagtaggtagcttaaccttcgggagggcgcttaccactttgtgattcatgactggggtgaagtcgtaacaaggtaaccgtaggggaacctgcggttggatcacctccttaccttaaagaagcgtactttgcagtgctcacacagattgtctgatgaaaatgagcagtaaaacctctacaggcttgtagctcaggtggttagagcgcacccctgataagggtgaggtcggtggttcaagtccactcaggcctaccaaatttgcacggcaaatttgaagaggttttaactacatgttatggggctatagctcagctgggagagcgcctgctttgcacgcaggaggtctgcggttcgatcccgcatagctccaccatctctgtagtggttaaataaaaaatacttcagagtgtacctgcaaaggttcactgcgaagttttgctctttaaaaatctggatcaagctgaaaattgaaacactgaacaatgaaagttgttcgtgagtctctcaaattttcgcaacacgatgatggatcgcaagaaacatcttcgggttgtgaggttaagcgactaagcgtacacggtggatgccctggcagtcagaggcgatgaaggacgtgctaatctgcgataagcgtcggtaaggtgatatgaaccgttataaccggcgatttccgaatggggaaacccagtgtgtttcgacacactatcattaactgaatccataggttaatgaggcgaaccgggggaactgaaacatctaagtaccccgaggaaaagaaatcaaccgagattcccccagtagcggcgagcgaacggggaggagcccagagcctgaatcagtgtgtgtgttagtggaagcgtctggaaaggcgcgcgatacagggtgacagccccgtacacaaaaatgcacatgctgtgagctcgatgagtagggcgggacacgtggtatcctgtctgaatatggggggaccatcctccaaggctaaatactcctgactgaccgatagtgaaccagtaccgtgagggaaaggcgaaaagaaccccggcgaggggagtgaaaaagaacctgaaaccgtgtacgtacaagcagtgggagcatgcttaggcgtgtgactgcgtaccttttgtataatgggtcagcgacttatattctgtagcaaggttaaccgaataggggagccgaagggaaaccgagtcttaactgggcgttaagttgcagggtatagacccgaaacccggtgatctagccatgggcaggttgaaggttgggtaacactaactggaggaccgaaccgactaatgttgaaaaattagcggatgacttgtggctgggggtgaaaggccaatcaaaccgggagatagctggttctccccgaaagctatttaggtagcgcctcgtgaactcatctccgggggtagagcactgtttcggcaagggggtcatcccgacttaccaacccgatgcaaactgcgaataccggagaatgttatcacgggagacacacggcgggtgctaacgtccgtcgtgaagagggaaacaacccagaccgccagctaaggtcccaaagtcatggttaagtgggaaacgatgtgggaaggcccagacagccaggatgttggcttagaagcagccatcatttaaagaaagcgtaatagctcactggtcgagtcggcctgcgcggaagatgtaacggggctaaaccatgcaccgaagctgcggcagcgacgcttatgcgttgttgggtaggggagcgttctgtaagcctgtgaaggtgtactgtgaggtatgctggaggtatcagaagtgcgaatgctgacataagtaacgataaagcgggtgaaaagcccgctcgccggaagaccaagggttcctgtccaacgttaatcggggcagggtgagtcgacccctaaggcgaggccgaaaggcgtagtcgatgggaaacaggttaatattcctgtacttggtgttactgcgaaggggggacggagaaggctatgttggccgggcgacggttgtcccggtttaagcgtgtaggctggttttccaggcaaatccggaaaatcaaggctgaggcgtgatgacgaggcactacggtgctgaagcaacaaatgccctgcttccaggaaaagcctctaagcatcaggtaacatcaaatcgtaccccaaaccgacacaggtggtcaggtagagaataccaaggcgcttgagagaactcgggtgaaggaactaggcaaaatggtgccgtaacttcgggagaaggcacgctgatatgtaggtgaagcgacttgctcgtggagctgaaatcagtcgaagataccagctggctgcaactgtttattaaaaacacagcactgtgcaaacacgaaagtggacgtatacggtgtgacgcctgcccggtgccggaaggttaattgatggggttagcgcaagcgaagctcttgatcgaagccccggtaaacggcggccgtaactataacggtcctaaggtagcgaaattccttgtcgggtaagttccgacctgcacgaatggcgtaatgatggccaggctgtctccacccgagactcagtgaaattgaactcgctgtgaagatgcagtgtacccgcggcaagacggaaagaccccgtgaacctttactatagcttgacactgaacattgagccttgatgtgtaggataggtgggaggctttgaagtgtggacgccagtctgcatggagccgaccttgaaataccaccctttaatgtttgatgttctaacgttgacccgtaatccgggttgcggacagtgtctggtgggtagtttgactggggcggtctcctcctaaagagtaacggaggagcacgaaggttggctaatcctggtcggacatcaggaggttagtgcaatggcataagccagcttgactgcgagcgtgacggcgcgagcaggtgcgaaagcaggtcatagtgatccggtggttctgaatggaagggccatcgctcaacggataaaaggtactccggggataacaggctgataccgcccaagagttcatatcgacggcggtgtttggcacctcgatgtcggctcatcacatcctggggctgaagtaggtcccaagggtatggctgttcgccatttaaagtggtacgcgagctgggtttagaacgtcgtgagacagttcggtccctatctgccgtgggcgctggagaactgaggggggctgctcctagtacgagaggaccggagtggacgcatcactggtgttcgggttgtcatgccaatggcactgcccggtagctaaatgcggaagagataagtgctgaaagcatctaagcacgaaacttgccccgagatgagttctccctgactccttgagagtcctgaaggaacgttgaagacgacgacgttgataggccgggtgtgtaagcgcagcgatgcgttgagctaaccggtactaatgaaccgtgaggcttaaccttacaacgccgaagctgttttggcggattgagagaagattttcagcctgatacagattaaatcagaacgcagaagcggtctgataaaacagaatttgcctggcggccgtagcgcggtggtcccacctgaccccatgccgaactcagaagtgaaacgccgtagcgccgatggtagtgtggggtctccccatgcgagagtagggaactgccaggcatcaaattaagcagtaagccggtcataaaaccggtggttgtaaaagaattcggtggagcggtagttcagtcggttagaatacctgcctgtcacgcagggggtcgcgggttcgagtcccgtccgttccgccacttattaagaagcctcgagttaacgctcgaggttttttttcgtctgtatatctattattgccagaatcgcaaaaatcctctgcattttacgctctttttcctcaacagtctgaagcccataatcacctcagttaacgaaaatagcattaaaagaggcatattatggctatccctgcatttggtttaggtactttccgtctgaaagacgacgttgttatttcatctgtgataacggcgcttgaacttggttatcgcgcaattgataccgcacaaatctatgataacgaagccgcagtaggtcaggcgattgcagaaagtggcgtgccacgtcatgaactctacatcaccactaaaatctggattgaaaatctcagcaaagacaaattgatcccaagtctgaaagagagcctgcaaaaattgcgtaccgattatgttgatctgacgctaatccactggccgtcaccaaacgatgaagtctctgttgaagagtttatgcaggcgctgctggaagccaaaaaacaagggctgacgcgtgagatcggtatttccaacttcacgatcccgttgatggaaaaagcgattgctgctgttggtgctgaaaacatcgctactaaccagattgaactctctccttatctgcaaaaccgtaaagtggttgcctgggctaaacagcacggcatccatattacttcctatatgacgctggcgtatggtaaggccctgaaagatgaggttattgctcgtatcgcagctaaacacaatgcgactccggcacaagtgattctggcgtgggctatgggggaaggttactcagtaattccttcttctactaaacgtaaaaacctggaaagtaatcttaaggcacaaaatttacagcttgatgccgaagataaaaaagcgatcgccgcactggattgcaacgaccgcctggttagcccggaaggtctggctcctgaatgggattaagcctctctgacagctcctccgggagctgtttttacatgctcgctaaggaaatcgataaaagcccggatgcgcgtacttaccgcacggtcgctgtaatagacggcactgaatggcatttccactggcaacactttatctgccattaactccaccaattctccgcgagcgatttctttgtcgatcatgtagtcggacaaacacgcaatcccgttgccactcaggcaaagctgtttcagtgtttccccactattggatgacaaaccgtacttcacctcatgtaattgtccatcgctacgggctatcggccaggtattgagggaagcgggttcagtgaatcccaggcaaatatgttgctttaaatcgtcgatcgtttctggcttcccgtagcgggaaatataatcgggggaggcgataatttttcgataactgttaaataacggcctggcacgtaagctggaatccgttaacgtaccagcgcgtatcgcgacatccacttttctttcgatcaaattaataatcgtttcggaggagactagcgacaaagtgacttccggatagcgttcacggaaaggcttaattaacggcatcagaaagtgcagcaccactggagttgcggcatcgatccgtaacagtccacgcggtgtattacgcgtctccataatttctgattctgccgctgccatctcctgcaaaattgactgtacgcgacgaaaataacgctcgccttcttccgtcaggctaagttgtcgcgtggtccgattaagcaggctaacgccaagtttcatctccagctttttcaccgcccggcttaccgctgagtttgcttgccctaattgttccgctgcccggctaaagctgccgctttcgacgaccgaaacaaaaatggcgagttcttccgacgtggctttcatttttgctcctgttgcaaaatagaagagatattttgaatttatttgtcattaaaccatcaggatgcgtgatatgtcatgcgatttaatgttctccataatgagcaaaattctgaccggtgtaagcacttgcttacataacaatatacaattgctcgttgaaagagtgagctaaaatccctataacagtagaaccctcccgagtgcggaagggttgacgtaatagaggtttcaaagtcaaaagtgcgaaaaaacacctatgccatgcgctatgttgccggacaacctgcggaaaggatcttaccgccggggtcttttgcgagcatcggccaggcattaccacctggggaaccgttaagtaccgaagagcgtattcggatcctggtgtggaacatatacaaacagcaacgcgctgaatggttgtcggtattaaagaactacggcaaagatgcacatctggtgttattgcaggaagcgcagacaacgccagagttagtacagtttgcgaccgctaactatcttgccgccgatcaggtacccgctttcgtgctgccacaacatccttctggcgtaatgaccctttcggcggcacatccagtgtattgctgcccgttacgtgaacgagaacccattttgcgtctggcgaagtcggcactggtgacggtctatccattacctgacacccgcctgttgatggtggttaatatacacgccgtcaacttcagtctgggcgtggatgtctatagtaagcagttacttcctattggcgatcagatagctcaccacagcggcccggtcattatggcgggagatttcaatgcctggagccgtagaaggatgaacgcgttatatcgctttgcgcgggaaatgtcgctgcgccaggtgcgttttaccgatgatcagcgccgtcgggcgtttggtcgcccgctcgattttgttttctaccgtggtctgaacgtcagtgaagcttctgtactggttacgcgcgcttccgatcacaatccgctactcgttgaattcagtcccggcaagcctgataaataaggtatgtcaggtctgccacagggcagaccaacgtttggcgctgcgcaaaacgtgagcgcggtggtggcgtatgacttatctgcccacatgctggatgtcgtggcacaagctgccgaagcccggcaactgaaaaatatcaccacccgccagggatatgccgaaagtctgccatttgccgataacgcatttgatattgttatcagccgttattctgcccatcactggcatgatgttggtgcagcactgcgagaagtgaataggatattgaaacctggcggtaggctgattgtgatggacgtaatgtctccgggtcacccagtgcgcgacatctggttacagacggtagaagcattacgcgatacctctcacgtacgaaactacgccagcggtgagtggttgacgttaatcaatgaagccaatctgatagttgataatttaattacagataagttaccgctggaattttcttcatgggtcgcgagaatgcgtacgccagaagcgttagtagacgctattcgcatttaccaacagagcgcatcgacagaggtgagaacgtattttgccttgcagaatgatggctttttcaccagtgatatcatcatggtagatgcacataaagcggcataaataaaaaaggcaccgggggaatcggtgcctttttattatctggtttgtcaggaatctggcatgttgttgtttttcacaaacaacgtcagcttatcgcctggttgcagattcgcagtgtcgctgttccagcgcatcacatctttgatgttcacgccgtggcgtttagcaatgcttgaaagcgaatcgcctttgcgcacacgatacgtaatgctatcgctgttgtttgccagtcgctgtgcgctactgcctgcaccaatcgtcaaactttggcctggcttcagcttagatccgcgcagtttgttccactgctgcaaatctttggtgcttacgccgagacgtgaagcgatacttgaaagcgtgtcgccagagcgtacggtgtaaacacggctgttaagcggcgtattgtcggcaaccagcgtcgactgtacagcagcaatttcgcctgaagccagagattcacgcagttgatctgcatgcttctttggcaccatcacgtactgcgggccacttgcgcccagcgtggagccttttacgccagcgttgaatgtcttcagcttgctgacggaaatccccgccatatctgctaccttcgccatttcaaccgggctgctcaggtgcacacgcgccagagcacggctttcatcggtcgttggcagacgtacgccataacgcttgctgtttttgagaatatcactcaatgccagcattttaggcacgtactgcttcgtttcctgcggcaacggtaacgaccagaagtccgtggatttcccacgcgctttgttcgttttaattgccttcatgacccgaccttcgccgctgttataagccgctacggtcagaagccagtcgccgtcaaacattttgttcagacgctgcatcatattcagcgcggcagttgttgaagcaacaacatcgcgacgcgcgtcataattgcgggtctgtttcaaaccataattgcgccccgtgctcggaatgatctgccagatgcctgcggcattggcgccagacgttgcgtgaggatcaaaagcgctctccactatgggtagtagtaccagttccataggcatgttacgttttttaacttgccctgctatccagtacatatacggctctgcccgtaaagttacatcgtggagatagctcttattgcgtaaatatttctgtttctgttcgcgaatccggtcattttccggaattcccatctttagctcgtcgccaatgaaagcccacaagtcaccatctggcgcgatagacgtcccatcgtccatccatcgtgcctgacttgtaaactttgctgcttccccttgaccagctgcagaaaggctctgtgcgtgctgttgaacgttgccggtactctggcaacccacgagcaggacagaggcgagtaatatcgcttttgccttcatgtgtgtgtcaatagttgcttaaaagacgaccgatcataacggcgaacggagccgatgacaagaaagttttatcagaacctatctttctttgaccttaaccatgcaaaacgctcttcaggttgttgcaataatgtttcttcattaattacattaattaaatcaatatcttccgttcttaaaaaaacattaatttgccgctcatttttcagaattacgggtagtgttatttgattttttgcccgtaactccttaactttacgataataatcatttatggacaaatcgtgcggaagaatactcaaagcaaacttcatatttgataaggtatattcatgagcacaacataccaatgtatcgtcaggtaacgcacttaactttttaagtgattgatacatttgtgatgctgtcccttcaaacaaccgaccacacccaccagaaaacagtgtgtcgccgcaaaatagataaggtttactgaagtaacagatatgtcctaaagtgtgacccggcgtagcaattacactaaattcatgccccaaaacgaaggcagtttcgccatctttgactacctgtgttgttcccttatcttgtgtctcttgtggaccatacaccacaatttgtggaaacttttccaccagttcttttacgccgccaacgtgatcgtggtgatggtgggtgagaaatatggcctccggttgccagttattggcggcaatggcgtttaatactggctctgcgtctccgggatcgacaatcaggcagcgacctgcttcatcattcaaaacccagatgtaattgtcatcaaaggcgggaatactgttaagattcatagattacctctcagtgtgaaacggaaggttgtgatgaaaccggcaagagtccctcaaactgtcgtggctcctgattgctggggcgatttgccctggggaaagctttatcgcaaggcgctggagcgccagctcaacccgtggttcactaaaatgtatggttttcatctgcttaagattggcaatttaagcgcagaaatcaattgcgaagcgtgcgcggtttctcatcaagtgaatgtttctgcgcaaggaatgcccgtccaggtacaggcggacccacttcatcttccttttgccgataaatccgttgatgtttgtctactggcacatacattgccgtggtgcaccgatccgcatcgtttattgcgtgaagccgatcgggtattgattgatgatggctggctggtcattagtggcttcaatcccatcagttttatgggattacgcaaacttgtgccggtattgcgcaaaacctcgccctataacagccggatgtttactctgatgcggcagctggactggctctctttgttgaattttgaagtgctacacgccagccgtttccacgttctcccgtggaacaaacacggaggaaaactattgaatgcgcatattcctgcgcttggttgcttacaacttattgttgcccggaaacggactattcctttaacgctaaatccgatgaaacagagtaaaaacaagccacgaattcgccaggcggttggagccacccggcaatgtcgtaaaccacaggcttaaacttcaacttggtagcctgtatcttccagtgtgggattcatcgccgcggcacgagccagttcatcacagcgttcgttttccgggtgtccggcatggcctttaacccattcccatttgatttgatgctgccccaatgcagcatcaagacgttgccagagatcgacattttttactggttttttgtctgcggttttccagccacgttttttccagttatggatccactgggtgataccctggcggacatactggctgtcggtactcaaaatgacttcgcaatgttcttttaacgcctccagcgcgacaatagcggccatcaactccatacggttgttggtggtgcgggtgtagccagcgctaaaggttttctcgcgtccgcgatagcgtaaaatagcgccgtaacccccaggtcctggattgcccagacacgaaccatcggtgaaaatttctacctgtttaagcatctctggtagacttcctgtaattgaatcgaactgtaaaacgacaagtctgacataaatgaccgctatgagcactgcaattacacgccagatcgttctcgataccgaaaccaccggtatgaaccagattggtgcgcactatgaaggccacaagatcattgagattggtgccgttgaagtggtgaaccgtcgcctgacgggcaataacttccatgtttatctcaaacccgatcggctggtggatccggaagcctttggcgtacatggtattgccgatgaatttttgctcgataagcccacgtttgccgaagtagccgatgagttcatggactatattcgcggcgcggagttggtgatccataacgcagcgttcgatatcggctttatggactacgagttttcgttgcttaagcgcgatattccgaagaccaatactttctgtaaggtcaccgatagccttgcggtggcgaggaaaatgtttcccggtaagcgcaacagcctcgatgcgttatgtgctcgctacgaaatagataacagtaaacgaacgctgcacggggcattactcgatgcccagatccttgcggaagtttatctggcgatgaccggtggtcaaacgtcgatggcttttgcgatggaaggagagacacaacagcaacaaggtgaagcaacaattcagcgcattgtacgtcaggcaagtaagttacgcgttgtttttgcgacagatgaagagattgcagctcatgaagcccgtctcgatctggtgcagaagaaaggcggaagttgcctctggcgagcataaatacctgtgaaaggcgctaaaaatagcgacttgggcgatttttgcagcaaacgattcaaaagatgagaaaaaccgttgacgaaggtcgaggcaatccgtaatattcgcctcgttcccaacggaacacaacgcggagcggtagttcagtcggttagaatacctgcctgtcacgcagggggtcgcgggttcgagtcccgtccgttccgccactattcactcatgaaaatgagttcagagagccgcaagatttttaattttgcggtttttttgtatttgaattccaccatttctctgttcaatgattttactctggcgtaggtgcgtgattctcgcttgttgtctcattcattaaaattcaataatgatatcgaaccattcagcttaaatatatttctagagaataaatttatattgattaaatgaatgtatatttcaaattgattttgtttgttattatttaagtgaggtatataattagagtccgttatcaatgctaaatattctaatcattatgacaggcgagggagtgtccaattatgaattcaaaaaagctttgttgcatatgtgtgttattctcgctgcttgcaggatgtgcctctgaatcttctattgatgaaaagaagaaaaaagctcaagtcacacaaagtaatattaataaaaacactccccagcaactgacagacaaagatttattcggtaatgaaaccactctggccgtatccgaagaggatattcaagctgcgcttgatggagatgagttccgcgttccccttaattctcctgtaatacttgttcaatccggcaaccgcgcaccggaaaccattatgcaggaggagatgcgaaaatattatactgtttccacattctctggtatcccggacaggcaaaagcctctgacttgtaacaaaaacaaagataaaaatgagaacgaggatgttgccagtgctgagaatatgaactggatgcaggcactgcgttttgtggctgcaaaaggacatcagaaagcgattattgtttaccaggatatgttgcagacaggaaaatatgactctgcgctgaaatcaacagtatggtccgactataaaaatgacaaactcactgacgctatctccctgcgctacctggtacgtttcacgctggtggatgtggcaacaggtgagtgggctacctggtcgccggtgaattatgaatataaagtgcttccaccattgcccgacaagaatgaagccagtacgactgatatgacagagcagcaaatcatgcaacttaagcaaaagacctataaagcgatggtaaaagatttggttaaccgctatcaataataaattatatctgccgccaggaatttctggcggcaataatacaaaattctttgcataagaaatttttcttgacaaagacagtgcaagaaaggacatggaatccggagttaaaaactgtttgttttagaatatttaattatttaactgctgaatcttccttgcgagaaatatatccattattacatttcatgccatttttaatatagattgctcctgggaaaattcccgtattattaccgcaggggtgataattagtattgacatatcctgtgacaaaaggagctattaaaggtgctattacgatagctattagtaaaaatataagagttagctgtattgttatgtctgtggcgaaattgactaccttcgtttttttgattaagaatgattttattatcgtaagtaaaattacatgaatatttaaaaaggaaaacgacatgaaaccgaagcacagaatcaacattctccaatcataaaatatttccgtggagcattttattattgaatatagaggtttaactccggtaaaaaacaaagaagcattgaatgcagggaaaaataatatggccataaaaaacatcgaaagaaactcttttaatttaacatgtaaacgcatggttaatcctcatatcacgggtggagtgttaagaacatacataaatggagtcatgttttcccttttccatttatcaagttcctgttgccgttttagtccatctctaattgcatattttaatttttctgataaatggcattgagcatcgatttcatttaaaacaactgtacacactatccctgtcagtaaaattgctcctccgacaagaattactggaaagccaaagctaacacaggcaaaagaagccagacttccaatagcggttgcaacaccaccggctataactgctttggccacatccattgaaaaatcgccaagaaaattaaccagatctcgctctgaactcataataaattctatggttctgctgatttaaccgcagagaagttcgccacagcaatccgaaaccactggcacgtggagaataagctgcacaggcgtctggacgtggtaatgaatgaagacgactacaaaataagaagaggaaacgcagcagaattattttcagggatacggcacattgctattaatattttgacgaatgagaaggtattcaaggcagggttaagacgtaagatgcgaaaagcagccatggacagaaactacctggcgtcagtccttgcggggagcgggctttcgtagtaataccccgactctccccgtccttaaacacaacccccactcaccacaacctaaactcatccgcatcctgccatgccggaaacttttctctatattcccgcaatgctgccatcgacagctccgcatcaatgcgcgttgcctgatgcgcgtcggcagtagcgataatctctccttgcggattaatcacccggctgtcaccgcgataatggcagccgttgccatcgctgccgacgcgattgcatcccgccacatacgcctgattctcaatcgcgcgggccgtcagcaatgcctgccagtgcagagagcgcggagcaggccagttggcgacgtacagggcgaggtcataatcgttgagattgcgcgaccacacaggaaaacgtaagtcgtagcacaccagcggcaaaatacgccagccgcgccattccacaatcactcgcgcattgcccgctttataatgtagatgctcatctgccatgcggaacagatgacgcttatcataaaaatgtaccgtgccgcccggctcaaccagcaaaaagcggttaaccgaaccagactccgtttgtaatgcaacactgcctgcaatcagcgcattgcactgctgcgccttagctgtcatccagttcactacgtcatcttgtgctagcgacgaagctgccgcttccatggcaaagccgctggtaaacatctccggtagaacgatcacatcgcgcccggtaataccttccagttgacgatcaaaatgacgcaggttggcaggaccatccatccacaccagtggttgctgcaaaagcgtaatcttcaaaccaggcacggtgtacaactcctttatgcgaagggttttataactttaacaccttatcaggcagttgccttagcgcagaataaattgataacaaatgctgatattggaaatatctgatttgcaaattatcgtgttatcgccaggctttaggaggttaataacatgggcaggataagctcgggaggaatgatgtttaaggcaataacgacagtcgccgctctggtcatcgccaccagtgcaatggcgcaggatgatttaaccattagcagccttgcaaagggcgaaaccaccaaagctgcatttaatcagatggtacaagggcataagctgcctgcctgggtgatgaaaggcggtacttatactcccgcacaaaccgtaacgttgggagatgagacgtatcaggtgatgagcgcgtgcaaaccgcatgactgtggctcgcaacgtatcgctgtgatgtggtccgagaaatctaatcagatgacggggctgttctcgactattgatgagaaaacgtcgcaagagaaactcacctggctgaatgtgaacgatgcgctttcgattgatggtaaaacggtgttgttcgcggcgttgaccggcagcctggaaaaccatccggatggctttaattttaaataattagcggataaagaaacggagcctttcggctccgttattcatttacgcggcttcaactttccgcactttctccggcaactttaccggcttcgtcgccagctcttccggatcaaagtcatcaacgttaatactgcgcagacggctttcttcagctttcaccagaatagcggcttcatctttatcaatcagccccttcaccagcgcgttgtgcgccagttcatccagacgggtaaacggcaggtttttacccagctctttacagatccgctgatgaattgggtcggcggcaatcacatccaccagcgcctcttccagcaagccaaccggattatgctcgctcggcgtcaggtactgaccgcgaccaatgcgggaacgggtggcgttcggcacttgtaaaatcttcgccactttatgatccagcttgtcagaaggtgccagataatgacgtccggtcgggaagatcaccacattcagcagcccggcaaccacgcggttcgggaagttttgcagtaaatcatccatcgcctgttcagcctgatacagcgcatcttgtacgccccagtgcaccagcggcaggtcggcttcattacggccttcgtcgtcataacgcttcagcacggcagaggcgaggtagagctggcttaaaatatcccccagacgggccgagatgcgctcgcgacgtttcaggctgccgcccagcactgccatcgagacatcagaaagcagggcgaggttggcgctcaggcggttcaggtgctgatagtagcgtttagtggcatcgccggttggcgtgctgctggttaaaccgcgcgtcaggcccagccagaagctgcgaactttgttgctaccgacgtgaccgatatgtttgaacaacagtttatcgaacgcgttgacgtcattgttcttcgccgcttccatctcttccagcacgtacggatggcaacgaatcgctccttgtccgaagatcatcatgctgcgggtcagaatgttagccccttcaacggtgatggcaatcggtgcgccctggtaagcacgcgccaggaagttgctttgcccgagcataatgcctttaccgccggtaatatccatcgcatcaataatcgactgctgcccgcggtgggtacagtgatacttaacgatagccgacagcacggcaggtttttcgccgagcataatgccgtaggtaatcagcgatgccgcagcatccatcacgtaggcattaccggcaatacgcgccagcggctcttcaatcccttccatcttaccaatagagattttgaactgacggcgaatgtgagcatacgcgccggttgccagcgctaccgatttcacgccgccggttgagttggaaggcagggtgatgccgcggcctaccgagaggcactccaccagcatccgccagccttgcccggccattttcggcccgccgatgatgtaatcgatcggcacgaagacatctttaccgcgcgtcggtccgttctggaacggtacgttcagcgggaagtggcgacgaccaatttccacgcccggcgtggtggttgggatcagcgcacaggtaatgcctaaatcttctgcaccgccgagtaatttttccgggtcggagagtttaaacgccagcccaagcacggtcgcaatcggtgccagcgtaatgtagcgtttgttccaggtcagacgcatccccagcacctgctggccctgccattcgcccatgcagacaatcccggtgtccggaatcgcgcccgcatcggaacccgcttccgggctggtcagtgcaaagcaggggatctcctgaccacgcgccagacgcggcagatagtgatctttctgctcgtcagtgccgtaatgttgcaacagttcgcccgggcctaatgagtttggcacgccgacggtaatcgccaggatcccgctcacgccggagagtttttgcagcacgcgagactgggcataagccgagaactccagcccgccgtactcttttttgatgatcatcgcgaagaaacgatgctctttaaggtacgcccacaactccggcggcagatccgccagctcatgggtgatctggaaatcattcgccatccggcaggcttcttctaccgggccgtcgagaaacgcttgctcttcggcggtcaggcgcggctgcggatagttatgcagctttttccagtccggcttgccctggaacaagtcgccctcccaccaggtggtgcccgcatcaatcgcttctttctcagtgcgcgacatcggcggcatcaccttacggaaaccgcgaaataccggcgcggaaatcatcgacttacgcataggcgcaaagttaaatggcacgaggataatggccagaggcaccagtacccacgccgaccacagaccagcaacgccgagggcggctgtccaggcgagcaaaatcagactgctgataaataagctcacgcggtgatagaacaacgcgccgagcaggacaaccgtagcgagaatactcaaaatcatcataacgaaaagccccttacttgtaggaggtctgaccacttgtgatgatatggttgtagtggatgtaaaaacatttagcaatatgtttacaatataattacaacaaagctcacattgttgctgtttttatccgcacttcaggtcaaaaagtcctggtcatagcacctgcccgtacttctcgcttttggcggtatccggtacactgcattttgtctattacatttatgctgaaggatatcctcatgtaccaggatcttattcgtaacgaactgaacgaagcggcggaaacgctggctaactttttaaaagatgacgccaatattcacgccattcagcgcgcggcggtcctgttagcagacagctttaaagccggtggcaaagtgctttcctgcggcaacggcggttcccattgcgacgctatgcactttgccgaagagttgaccggtcgctaccgtgaaaaccgtccgggctacccggcgattgctatttctgacgttagtcatatttcctgcgtcggtaatgatttcggtttcaatgatattttctcccgctacgttgaagcggtaggtcgcgaaggcgatgtactgctggggatctccacctccggtaactctgcaaacgtgatcaaagcgatcgcagcggcgcgtgagaagggaatgaaagtgatcaccctgaccggtaaagacggcggcaaaatggctggcacggcggatatcgaaattcgcgtaccgcactttggttatgccgaccgcattcaggagattcacattaaagtgatccatatcctgatccagttgattgaaaaagagatggttaagtaagtctggcgtaggccggataagacgtttacgccgcatccggcatttgtgcgctgatgcctgatgcgacgctgacgcgtcttatcatgcctacaaatctgtacgcgaaccgtaggccgaataatgcgttcacgccgcatccgacctgaaaattcttaaatcaatcttcgccgggggccatgcgctcccgctgttgtggaggttacccatgtgcgaattgctcgggatgagcgccaacgtccctaccgatatctgctttagtttcaccgggcttgtacagcgtggtggtggaaccgggccacataaagatggctggggcattaccttttacgaaggtaaaggctgtcgcacatttaaagatccacaacccagctttaattcccccatcgccaaacttgtccaggactacccgataaaatcctgttcggtggtggctcatattcgccaggctaatcggggcgaggtggcgctggaaaatactcacccatttacccgcgagttatgggggcgtaactggacttatgcccataacggacaactgacgggctacaaatcactggaaaccggcaacttccgcccggtaggcgaaaccgacagcgaaaaagccttctgctggctcctgcataaattaacgcagcgttacccgcgcacaccgggcaacatggcggcggtatttaaatatatcgcctcactggcggatgaactgcggcagaagggcgttttcaacatgctgctttcggacgggcgctatgtaatggcgtattgctcgactaatttacactggatcacccgccgcgcgccgtttggcgtggcaacgttgctggatcaggatgtggaaatcgacttcagctcgcagaccacaccgaatgatgtggtcacggtgattgcaacacagccgctgacgggcaatgaaacctggcaaaagattatgccaggcgaatggcgcttattttgcctcggggagcgtgtagtttgatgccagttgtggctgcacaacttcgtggcttaacggcttgctgaccacgtaacgaccattgaccacagaaacggttggtggcttacgggtttgctcaaagtagtcgtaacccggcttcagttgctcccagaagtccttaaagttggaatatttatggcgcttcatattggcgtcggtcatgcggaacgggtaaatactcacttgcacgctcggctgaccaaacaccagcgcaccagtaacgaactggaatatctcatcaataccctgattggtcattgcgtagcagccgatggaaacacaatcgccgtggatcatcaggtatttcccttcataaccatgcgcacggtcataggcattggggaaaccaatattaatcgctttgtagtaacggctgtctggttttaactgattacgctggacgctataaaacccttccgggcttttgaaatcgccctgacgctgttttggccctaagccgccggaatatttacagattttatagctgtcgagcagttgatattgctcgcccattttgacgtagagatcgagcgtacgttcttccttgaagatctggatgtagacaggggatcccatcaactgctgcttatactctttgctcacaggcgtggtagagctactgctgcccagcaaaccggcaaatgaaacgcacgggatcaacaacatcgcaagaattaatgcgattttacgcatactgcttattccttgataaaacggttacacacgccaggacggcaaaatggatcccaaatcggaatagtctggatttggaaggctcacattatcaccaaaagagttttacgcaagcctgtcggcgcagggtttacaaatttcatcggaagcgggctttacccaaagagcgccgcgtgagttccagttctctcaaatcgtaaaagtttatcggtaagtttgtaaatcaggatccagtccggttcgacatgagcatcgcgataacctttccatgaaccttgcagcgggtggtctttataaacagctggaagcggtaaagtattattgataagaagcgtcataagatatttcaatttattcatatccttatgacgcttttgtgcaagttttacatcctttgaatattgtcccgagtattcaatatccctttgaatcatatttaaattcctaatttatcaaataaatcatcggcgtctttggccttatgaacatcaatgccagcttcgctgtttttgattgattgaatggttaattgattaggctcgcgtaaatcaaacggcaatgccttttcacgcgcgacctttgtgagggttatgcgaaccaggtcagagatggtcagccccatcccggccagtacgtccgctgcctgattcttcagatcttcatcgattcgggcgcgaacaaacgcgttagcagccattggggtatctcctgtgctgtatatttattcagcttgaattgtagctcaaatgagcaacagcgacaatccatgagtaatttaataaacggatgtttttacataattaactgaaatatatatgttaattttataataatggtttattaagtttgttcagaaacgatccgggatacactgcaacattaaagcatgaccagccattattgagtatgtccttgccgtcgattccatcctttgtattgtcgggattactgttgatttgtttgccgttttcttcatttgccagcgccaccacatcacatatctctttcagctacgccgcccgccagcggatgcaaaaccgtgcgcgtttattaaaacagtaccaaactcatctgaaaaagcaggccagctatattgtggaaggcaatgccgaaagcaaaagggcgctacgccagcacaaccgggagcagataaaacagcatccagaatggtttcctgctccgctcaaggcgagtgacagacgctggcaggcgctggcggaaaacaaccactttttaagcagcgaccatctgcataacattaccgaagtggcgattcaccgcctggagcagcagcttggcaagccttacgtctggggcggtacgcggcctgataaaggctttgactgtagcgggttggttttttatgcctacaacaagatccttgaggctaagctcccgcgcacggccaatgagatgtaccactatcgccgggcaacgattgtggcgaacaacgacctgcgccggggagatttgctgtttttccatatccacagccgcgagatagccgatcatatgggcgtgtatttgggcgatgggcaatttatcgagtcgccacgtaccggcgaaaccattcggataagccgattagccgaacctttctggcaggaccattttttgggcgcgcgcaggattttgacggaagagacgattttgtaggacggataaggcgtttacgccgcatccggcagttgtacgcaggtgcctgatgcgacgctggcgcgtcttatcatgcctacgagcccgcgaatatttgcgagccgctttcccgatataaaacaacctcattgccaacctttccttttcttcttaccgttgagaaaaaggagtcgccatgtctgaatatcgtcgttattacatcaaggggggaacatggtttttcacggtgaatttacgaaatcgtcgaagccaacttttgaccacccagtaccagatgctccgtcacgccattattaaagttaagcgagacaggccttttgaaatcaacgcctgggtcgttttgccagagcatatgcactgtatctggacattacctgaaggcgatgatgatttttcctcgcgctggcgggaaattaaaaagcaatttacccatgcttgtggattgaaaaatatctggcaaccacgtttttgggagcacgccatccgcaataccaaagattataggcatcatgttgattatatttatataaatccagtaaagcatggttgggtaaagcaagtgagtgattggccattctcaacgttccatcgcgatgtcgcgcgagggttatatcccatcgattgggcgggggacgtaacggattttagtgccggggagcgtatcatttcataattgtgcgcagatgcctgatgcgacgctagcgcgtcttatcatgcctacaaacttgtgccggatcggtaggccggataaggcgtttatgccgcatccggcagttatgcgcagatgcctgatgcgacgctggcgcgtcttatcatgcctacaaacttgtgcctgaacggtaggacggataaggcgttcacgccgcatccggcagttgtgcaccaatgctggatacttacatcaacgcccccataatcttcaactccagctcatccggcacttcgttatacgacagcacatgcagccccggcgcaaacaaccttgcataacgcgccagcaaagggcgcagctgcggtggcaccagcagcaccgggtctttccccgccgctttcatctgctctttcacctgtggcatcgtactctggaactggttgagcatattcggatcgaccggcacgctgtcgagcatcactttcccgccctgttgcgcctgattcaccacgttggtcagcagattttccagctcattattcagcgtatacaccgtcagctcctgcttgcgaacgaacggatgggtaatgctgcgccgcaatgccaggcgcacatcggccgccagcagaatatgatctttcgtcaccgtgctactggcgaccagcacggtggcgatggtgacgatatcgcgcagggaaacgccttcggtcagcagcgcccggtacactttcagcaactggctgtaattgagcgccgcgctcaaatcttccgccagacgcggtgccgtcgacgataaacggttatgcaactgcgtaatatcatcatagttaaacaaatcaggaatatagctgcgcacaatcttatttacatgggtagcgatcacgctggcgctgtcgatcacctgataccccatattcagcgccttcgctttctgcgccgcctggatccaggtgaccggcatcccgtacgccgggtcgttcccctgcacgccgtcaatctcgccgtaggtttcgctggagggcagggccatcagtttatccgccggaatatccgcttcatcagcctttatgccgttgatgaaaatggcgtactgactgggcttaaggcggaagttttcccgaatgcggatctccggcagcagcacgccgttgccgtcagaaatcacctgccgcacgccgcgaatccgctgggtgagcgggttaccctgtgctttgtccaccagcgccaccagtttgtaaccgaggcttaaactgataggctcgatcagcggaatggtttcccaactgacctgctgctcgctggtttcggtgatggtgcgggtcagcgtttcgaggcttttctcttccgcctccgccgccagcggctgtttgctcatccgccagccggtaaaaccaagcagggcgctgaacagcaaaaacggcaggtgcggcattcccggtaccaccgccagcacgaacataatcccggtggcggtgtagagcaccgacgggcttgccagcagctggttacgcacgtcatgggcgatatcgccgttgtcgctgacgcgggtgacgataatcgccgccgcggtggagagcagcagggaagggatctgcgccaccaggccgtcgccgatggtcatcagcacatactgctggaaggcagcatcggcgctcaggttgtatttgaagatcccgatacagacgccgccgatcaggttgatcgccagaatcatcatcccggcgatggcgtccccgcgcacaaacttcgatgccccgtccatcgcgccgtagaaatcggcctcgctggcaacatctttacgccgggtttgcgcctgcgcctggttgatcaatccggcgttaagatcggcgtcaatcgccatctgtttgccgggcatcgcgtctaaggtaaagcgggcagaaacctcggaaatacgctcggcccctttggtgacgacaataaagttgattgtcaacagcgtcagtaaatccgagcgtgaaagcattatcgccgcgctgcacgggcagtcgatttttaacggtggtgggctgtcgccgttaaataaaatcagcccgtctcatccgccaaaacctgccaccgtggcggtgccggaagagacggagaaaaaagcgcgtgatgtgaatgagaaaacggcgctgctgaagaagaaatccgccaccgagcttggtgagctggcaaccagtatcaacaccattgcccgtgatgcgcatatggaagcgaatctggagatggagattgttccccagggattacgcgtgctgattaaagacgaccagaaccgcaatatgtttgaacgcggcagcgcgaagattatgccgttctttaaaacgctgctggtggagctcgcgccagtgttcgactcgctcgataataaaattattattaccgggcataccgatgcgatggcctacaaaaacaatatctacaacaactggaacctttcgggtgaccgcgcgctttcggctcgtcgggtgctggaagaggccggaatgccggaagataaagtgatgcaggtaagcgcaatggcggaccagatgctgctggattccaaaaatccgcaaagcgcgggcaaccggcgcattgagattatggtgctgaccaaaagtgcgtccgatacgctgtatcaatactttggtcagcatggggataaagtggtgcagccgctggtgcaaaagctggataagcagcaggtgctttcgcagcgaacgcgttaaatgctgaatctttacgcatttctcaaaccctgaaatcactgtatactttaccagtgttgagaggtgagcaatgcgtaaaatcattcatgtggatatggactgctttttcgccgcagtggagatgcgcgacaatcccgccctgcgcgatatccctattgctattggcggcagccgcgaacgtcggggggtgatcagcaccgccaattatcccgcgcgtaaatttggcgtacgtagcgctatgccgacagggatggcgctcaaattatgcccacatctcaccttgcttccggggcgctttgacgcctacaaagaagcctcaaatcatatccgtgaaatcttctcgcgctacacctcgcgcattgaaccgttgtcactggatgaggcttatctcgatgtcaccgatagcgtccattgccacggttctgcgaccctcatcgcccaggaaatccgccagacaatcttcaacgagctgcaactgacggcgtctgcgggcgtggcaccagtaaagtttctcgccaaaatcgcctccgacatgaataaacccaacggccagtttgtgattacgccggcagaagttccggcatttttacaaaccttaccgctggcaaaaatccccggcgtcggcaaagtctcagcggcaaaactggaagcgatggggctgcggacctgcggtgatgtacaaaagtgtgatctggtgatgctgcttaaacgctttggcaaatttggccgcattttgtgggagcgtagtcaggggattgacgaacgcgatgttaacagcgaacggttgcgaaaatccgtcggcgtggaacgcacgatggcggaagatattcatcactggtctgaatgtgaagcgattatcgagcggctgtatccggaacttgaacgccgtctggcaaaggtaaaacctgatttactgattgctcgccagggggtgaaattaaagttcgacgattttcagcaaaccacccaggagcacgtctggccgcggctgaataaagctgatctaatcgccaccgcgcgtaaaacctgggatgaacgccgcggcgggcgcggtgtgcgtctggtggggctgcatgtgacgttgcttgacccgcaaatggaaagacaactggtgctgggattatgatgtatactattatgtatattctggtgtgcattattatgagggtatcactgtatgcatcgaattctcgctgaaaaatcggtcaatatcactgagttacgtaaaaacccagctaaatactttattgatcaaccggttgcggttctttctaataatcgccccgcaggatatctcttaagtgccagcgcattcgaagcgttaatggacatgcttgctgaacaagaggagaaaaagcccataaaggcgcgcttccgtccaagtgctgcaagattagaggaaattacacgccgcgctgaacaatatcttaatgatatgacggatgatgatttcaatgactttaaggaataaggatgcgggtattcaaaacaaaacttattcgcctgcaacttacagcagaggaacttgatgcgttaacggcggattttatttcctataagcgtgacggtgttttgccagatatatttggtcgcgatgcactctacgacgactcctttacctggccattaatcaaatttgagcgagttgctcatattcatctggcaaatgagaataatccatttccgccacagttgcgccaattcagcagaacgaatgacgaagcgcatttggtatattgtcagggggcgtttgatgagcaagcatggttgctcattgccattctgaaacctgaacctcataaactggctcgagataacaaccaaatgcataaaattgggaaaatggcagaagcgtttcgcatgcgtttttgaatttatattatgaataacatacaaataagaaactatcagcctggcgattttcagcaactatgcgctattttcattagagcggttacgatgaccgccagtcagcattattcaccacaacaaatttccgcctgggcgcagattgacgaatctcgctggaaggagaaactcgcgaaatcacaagtgtgggttgcgatcattaatgcacaaccggttggttttatttcccgcattgaacattatatcgatatgttatttgttgaccctgaatacacccgccgtggggttgccagcgctttgttaaaacctttgattaagtctgaatccgaacttacggtggacgcaagcataaccgcaaaacccttttttgaacgttatggttttcagacagttaagcagcagcgcgttgaatgccggggagcgtggtttactaatttttatatgcgatataaaccgcaacattaaatccagcttgcaatgaaaataacgcccgcctggtatgtgcgcgttttctgattccacaaactgcaaggaggtaaatcatgacaaatcctttatcaatgactctttgcagacctttccaggattaattctttttttcttgccctggattcgtctgccatttcctgatttttatatttatatactctaaataattcgagttgcaggaaggcgacaagcgagtgaatcgccaggagcttacataagtaagtgactggggtgaacgaacgcagtcgcagtacatgcaacttgaagtatgacgagtataaatggaatggtacatgggcaaatatattcgtcccttatccgatgcggtatttaccatcgcatctgatgacctgtggatcgagagtttagcgatccaacaattacacaccacggcaaatttacccaacatgcagcgcgtagtggggatgccagatttacaccccggacgcggctacccgattggcgcagcgttcttctctgttggtcgtttttacccggcaagacgtcgcggtaacggtgctggaaacagaaacgggccgctactctgacacactgcgttcggcgctggtttctctcgatggcgataacgcatgggcattaagcgaaagctggtgtggcactattcagtggatttgtccgagtccgtatcggcctcatcatgggcgcaaaaactggtttctgggcattgggcgttttaccgctgatgagcaggaacaatcggatgcaatccgttatgagacgctgcgttcgtcggggccgggcggtcaacatgtcaataaaaccgactcggcggtacgcgccacgcatttggcatccggtattagcgtgaaggttcagtcagagcgtagtcagcatgctaacaagcggctggcacgattgctgattgcctggaagctggagcaacagcaacaggaaaatagcgcggcgctgaaatcgcagcggcgaatgttccatcaccagattgaacgtggcaacccgcgacggacatttacagggatggcttttatcgaaggataatgaaggatgaaactgccggaaggcgattaaacgccatccggcagcaaatcaaataattacttcgccggaatttctttcagcagttcagtcagcagtgtccagtaatgacctacgctttcgatgtgaacttgctcatccggagagtgtggaccggtgatagttggcccgatagaaaccatgtccatttccggatacggttttttgaacagaccacattccaggcccgcgtggataatctggatgttcggcgtcttgttgaacaggcgctgataggtttcacgtaccagatgcatcaccggagaattagcgtccggctgccagccaggatatgcgcctttcgcttcggttttcgcgccagccagtttacccagcgaatccagcatgctcaccacgtagtctttaccgctgtcgatcagtgaacggatcaggcagtgaatttctacgttattgtcagtcatggtcaccacaccgacgttcagggaggtttcaaccacacctttggctacatcggagttacgaatcacaccgttcggggtggcgttcagcagacgaataaaggtatcgcgagatttcgcaatcagggcagctttatcgttcgctacagagtccagcaacaaggccagatttttctctttttctgccagctcgtttttcaggatctcctgataggtattcaccagagatttcaggacgtcgactttatcagctgcgacagcaatggtcgcaaaggcttcacgcgggatggcgttacgcagtgtgccgccgttgaaatcgataaggcgcagatccagttcttccgcatgacccgccaggaagcgcaccagcagtttgttggcattacccagcccaacgtggatttccccgccggagtgaccgcctttcagaccttttaaggttaacttgaaggtttcaaaaccagctggaaccgcttcacgatctaaatgcaggttggaggtgaagtcgataccccccgcacaacccatgtagatttcaccttcttcttcggagtcggtgttaatcagaatatcagcctgcaaccagttgccctgtaagccgaacgcaccgtccataccggcttcttcggtcatggtcagcagcacttccagcgggccgtgaaccacgttttcgtcagccagaaccgccagcgcagaggccataccaatgccgttatccgcacccagcgtggtgccgcgcgctttaacccattcgccatcaatataaggctggataggatctttcgtgaagtcatgcacggtgtcgttatttttctgcggcaccatatcgaggtgggcctgtaagacgaccggtttacgattttccatacctgcggtagcaggtttacgaatcaggatattacctacctgatcgcgttcgacatggaaacctttctcttttgcccaaccaacaatgtattcagcgagttgctcttcatgataggacgggtgaggaatagaacagattttggcaaaaatatcccacagcggctgtggagataattgagacagttcagacacgttaagtctccttgtcgatcacccgcaaaacagtattgcaggtcacagggttagcagaaaatgttgtcaacacaagacaggcttgcgagatatgtttgagaataccactttatcccgcgtcagggagaggcagtgcgtaaaaagacgcggactcatgtgaaatactggtttttagtgcgccagatctctataatctcgcgcaacctattttcccctcgaacactttttaagccgtagataaacaggctgggacacttcacatgagcgaaaaatacatcgtcacctgggacatgttgcagatccatgcacgtaaactcgcaagccgactgatgccttctgaacaatggaaaggcattattgccgtaagccgtggcggtctggtaccgggtgcgttactggcgcgtgaactgggtattcgtcatgtcgataccgtttgtatttccagctacgatcacgacaaccagcgcgagcttaaagtgctgaaacgcgcagaaggcgatggcgaaggcttcatcgttattgatgacctggtggataccggtggtactgcggttgcgattcgtgaaatgtatccaaaagcgcactttgtcaccatcttcgcaaaaccggctggtcgtccgctggttgatgactatgttgttgatatcccgcaagatacctggattgaacagccgtgggatatgggcgtcgtattcgtcccgccaatctccggtcgctaatcttttcaacgcctggcactgccgggcgttgttctttttaacttcaggcgggttacaatagtttccagtaagtattctggaggctgcatccatgacacaggcaaacctgagcgaaaccctgttcaaaccccgctttaaacatcctgaaacctcgacgctagtccgccgctttaatcacggcgcacaaccgcctgtgcagtcggcccttgatggtaaaaccatccctcactggtatcgcatgattaaccgtctgatgtggatctggcgcggcattgacccacgcgaaatcctcgacgtccaggcacgtattgtgatgagcgatgccgaacgtaccgacgatgatttatacgatacggtgattggctaccgtggcggcaactggatttatgagtgggccacccaggcgatggtgtggcaacaaaaagcctgtgcggaagacgatccgcaactcagtggtcgtcactggctgcatgcggctacgttgtacaacattgccgcctatcctcatctgaaaggagatgacctggccgagcaagcgcaggctttgtcaaaccgcgcctatgaagaggccgctcagcgtctaccgggcacgatgcggcagatggagtttaccgtacccggcggtgcgcccatcaccggctttttgcatatgccgaaaggcgatggcccgttcccgacggtattaatgtgtggtggtctggatgcgatgcagacggactattacagcctgtatgaacgttattttgcgccgcgcggcattgcgatgctgactattgatatgccgtcggtgggcttttcttcaaaatggaagctcacccaggactccagcctgttgcatcagcacgtcttaaaggcgctgcctaacgtaccgtgggtggatcacactcgcgtcgcggcctttggtttccgtttcggcgctaacgttgccgtgcgtctggcataccttgaatcgccgcgtctgaaagcggttgcctgtcttggtccggtagttcataccctgttgagtgattttaagtgccagcaacaggtgccggaaatgtatcttgacgttctggccagtcgtttggggatgcatgatgcttccgatgaagcgttgcgcgtggagctgaatcgctattcattaaaagtgcaaggattgctgggacgtcgctgcccaacgccaatgttatcaggctactggaagaacgatccgttcagcccggaagaggactcacgcttaatcacctcatcatctgctgacggtaaattattagagatcccatttaacccggtgtatcggaattttgacaaaggtcttcaggaaatcaccgactggatcgaaaaacgcttgtgttaaaaatttgctaaattttgccaatttggtaaaacagttgcatcacaacaggagatagcaatgacgttaccgagtggacacccgaagagcagattgatcaaaaaatttaccgcactaggcccgtatattcgtgaaggtaagtgcaaagataatcgattctttttcgattgtctggctgtatgcgtcaacgtgaaaccggcaccggaagtgcgtgaattctggggctggtggatggagctggaagcgcaggaatcccgttttacctacagttaccagtttggtctgttcgataaagcaggcgactggaagagtgttccggtaaaagacactgaagtggttgaacgactggagcacaccctgcgtgagtttcacgagaagctgcgtgaactgctgacgacgctgaatctgaagctggaaccggcggatgattttcgtgacgagccggtgaagttaacggcgtgagtgaaatgtgccggatgcatcacatccggcaatattcattaaaactgatacgtcatgccaaccgcgacaatatcatcattattaatattcaatttgttatcgctatccagttggttgattttataatcaacaaacgctgacatatttttgttgaaataatacgtagcaccgacgtcgatataattgaccagatcttcatcaccgataccttcaatatctttccctttcgataagacataacccagcgatggacgcagaccaaagtcaaactggtattgagcgaccgcttcaaagttctgtgtcttattggcaaagccgccagttattggcgtcattttgcgtgtttcagaatagaaagttgccagataaatattattggcatcgtatttcagacctgttgcccatgcttctgcacgcttgcctgtgccacggctttgcaggttctgctcgttggtgcgatctgagttggtataggccccactaatggcgaaatcgctgccgccaaagtcatatgtcaatgacgtgccgaagccatcgccgttttgctttttaacgtcgcggttttcgtttttcccttgatattgcagggttaagttcaggccatcgataacgccgaagaagtcggtgttccgatacgtcgccagaccgctggcgcgtttggtcataaagttgtcggtctgcgccgaggaatcgccaccaaattccgggaacatatcggtccaggcttccacgtcatacaacgcccccaggttacgaccataatcgaaagaacccaaatctttatatttcaacccggcaaaagcgagacgcgttttttgctgtgcagtatcactctctgctttattaccggcaaactctgcttcccaacgaccataaccagtcagttgatcgttaatttgtgtttcgcctttgaaaccaaaacggatataactctggtcgccatctttactggcgttatcactcatataatgcatggctttaactttgccatagacatccagtttattaccgtctttattatatatttctgcagcctgtacagatgcagatgccacaatgcccatcaccactaatgccagagtgctctttttcattttcattcctgattttaattaacgcgcgaatattcagcgggagagtcccgttgaaaacaggaaagtttttaacctgagattgttaaagatatattacagattaataatattcttaaaatgtggtaatttattaaatctgtaataaaagcgtaaacaactgccgctaggcttgctgatcccgcgcaacaaaacgccatgctttgctcgcagatggttggcaaccgacgacagtcctgctaaaacgttcgtttgatatcatttttcctaaaattgaatggcagagaatcatgagtgacagccagacgctggtggtaaaactcggcaccagtgtgctaacaggcggatcgcgccgtctgaaccgtgcccatatcgttgaacttgttcgccagtgcgcgcagttacatgccgccgggcatcggattgttattgtgacgtcgggcgcgatcgccgccggacgtgagcacctgggttacccggaactgccagcgaccatcgcctcgaaacaactgctggcggcggtagggcagagtcgactgattcaactgtgggaacagctgttttcgatttatggcattcacgtcgggcaaatgctgctgacccgtgctgatatggaagaccgtgaacgcttcctgaacgcccgcgacaccctgcgagcgttgctcgataacaatatcgttccggtaatcaatgagaacgatgctgtcgctacggcagagattaaggtcggcgataacgataacctttctgcgctggcggcgattcttgcgggtgccgataaactgttgctgctgaccgatcaaaaaggtttgtataccgctgacccgcgcagcaatccgcaggcagaactgattaaagatgtttacggcattgatgacgcactgcgcgcgattgccggtgacagcgtttcaggcctcggaactggcggcatgagtaccaaattgcaggccgctgacgtggcttgccgtgcgggtatcgacaccattattgccgcgggcagcaagccgggcgttattggtgatgtgatggaaggcatttccgtcggtacgctgttccatgcccaggcgactccgcttgaaaaccgtaaacgctggattttcggtgcgccgccggcgggtgaaatcacggtagatgaaggggcaactgccgccattctggaacgcggcagctccctgttgccgaaaggcattaaaagcgtgactggcaatttctcgcgtggtgaagtcatccgcatttgcaacctcgaaggccgcgatatcgcccacggcgtcagtcgttacaacagcgatgcattacgccgtattgccggacaccactcgcaagaaattgatgcaatactgggatatgaatacggcccggttgccgttcaccgtgatgacatgattacccgttaaggagcaggctgatgctggaacaaatgggcattgccgcgaagcaagcctcgtataaattagcgcaactctccagccgcgaaaaaaatcgcgtgctggaaaaaatcgccgatgaactggaagcacaaagcgaaatcatcctcaacgctaacgcccaggatgttgctgacgcgcgagccaatggccttagcgaagcgatgcttgaccgtctggcactgacgcccgcacggctgaaaggcattgccgacgatgtacgtcaggtgtgcaacctcgccgatccggtggggcaggtaatcgatggcggcgtactggacagcggcctgcgtcttgagcgtcgtcgcgtaccgctgggggttattggcgtgatttatgaagcgcgcccgaacgtgacggttgatgtcgcttcgctgtgcctgaaaaccggtaatgcggtgatcctgcgcggtggcaaagaaacgtgtcgcactaacgctgcaacggtggcggtgattcaggacgccctgaaatcctgcggcttaccggcgggtgccgtgcaggcgattgataatcctgaccgtgcgctggtcagtgaaatgctgcgtatggataaatacatcgacatgctgatcccgcgtggtggcgctggtttgcataaactgtgccgtgaacagtcgacaatcccggtgatcacaggtggtataggcgtatgccatatttacgttgatgaaagtgtagagatcgctgaagcattaaaagtgatcgtcaacgcgaaaactcagcgtccgagcacatgtaatacggttgaaacgttgctggtgaataaaaacatcgccgatagcttcctgcccgcattaagcaaacaaatggcggaaagcggcgtgacattacacgcagatgcagctgcactggcgcagttgcaggcaggccctgcgaaggtggttgctgttaaagccgaagagtatgacgatgagtttctgtcattagatttgaacgtcaaaatcgtcagcgatcttgacgatgccatcgcccatattcgtgaacacggcacacaacactccgatgcgatcctgacccgcgatatgcgcaacgcccagcgttttgttaacgaagtggattcgtccgctgtttacgttaacgcctctacgcgttttaccgacggcggccagtttggtctgggtgcggaagtggcggtaagcacacaaaaactccacgcgcgtggcccaatggggctggaagcactgaccacttacaagtggatcggcattggtgattacaccattcgtgcgtaaataaaaccgggtgatgcaaaagtagccatttgattcacaaggccattgacgcatcgcccggttagttttaaccttgtccaccgtgattcacgttcgtgaacatgtcctttcagggccgatatagctcagttggtagagcagcgcattcgtaatgcgaaggtcgtaggttcgactcctattatcggcaccattaaaatcaaattgttacgtaagatcttatcattctcccaccaaaaaattatcttaatgtaacagctggtgtaagtaaattctatcaacgaagatcaatcttatctactgaccaaaaaggcctgatagggcttcgctcactatacatccttggctgcaggtttagttgtacaccactcctaaatttaatgtgttggcaatgtgttcaataaagctcgaacaaattagctcattatgatcggttaatacttcaacttctggttgcatgattgtttgtccgtaaaaagataacgcgcctgccgggtagtagcaggcgcattacgcaataggtaaacaagggaggaagttcagaaatgtaaatcgggaaggttgtacgcaatgttcatcgtactacgttgttacggctttgccgcaacaagccagttgcctgccgcgctcgcagaatgtctgcagcccggagataaggagattgttcctgccagctaaatcccttcctgtcgatacgaaccagctcgtatttttctaccagaaaattcacggcatcggctagggtgataccggcatcgatgtgttccttaatcacagcctcattgcagaatggcgtgtcgtttattgtcagaccatagtgctgttccagcagacgtgtcagtaacatttgccagacagccacgggtgacaggcagggcttcaccgcccgctgagttattgcaggtaaagttttcatgtttgctctcgtgtaggtaattaacgctgagtggggtaaatggcgatgtatacgtagccgcaactgccaagggtgtcggcttcgcaggttaaatcgttgtggtacagggtaacgcagtgggcatggtgggggctgagttcaccggtggtcagcatcgattccatctggaggataaagtgcgggaatgtttcatccagcttccggcattcgatgtcactgaacttgccggtgatgctggcccggtcagccagataatgcagtcggttgccttcctgcaccagacgggctcccaggcgcagtgtaatctcccgctgcaggcccctggtagggttgctcattacagttctccactattgtcagttcagggtgatgctcatcaggcaggtatagggcccattgcggtcctggcggcgttcggcgtataccgcgaggactccggcgatatccggaacgtccctgccggtgtaatgacagacgctaccgtgccactggtatttgccggtgcagtagcgaaagattcgggactcaggatgctggcggtatatcgtcattgccctgcgtttactgataattttcatgtaatacctcaaagcagaccgtgttctgcgaacgaatagatttgcctgccaccgacaatcagatggtcagggacacggatatccaccagctgaagcacctgaaccagtcgctgcgtgagggttttgtcggcctggctaggtgtcgtctcgccggaaggatggttatgcgcgagtatcaccgccgccgcgttgaagtgcagagcacgtttgaccacctcccggggatgcacctcggtgcggttaatcgtgccggtgaagagcgtttcatgggcaatcaactgattctggttgtccagatacaacacccggaactcttcccgctcaagcgcggccatatgcagtcgcagccattcacgtacggcgtgggtagaggtgaaggctacgccgggctcatgcaggtggcggtccagagccctgagcgcccgctgaatgagacgccggtcctgtggcgtcatctcgccgggtaaaaaggaaagctgtttcatctgttgctccttcggtcagtcgataatacgcagaatggcgtgagcctctggatgttgcatggcatactcccgcaggcggtaatagtgtgcggtcatcgcgtcacattctgtacggcaggcatggtggctatacgcaatcaggcagacagcaatacctgctgcttctgcactcatttgggcatcgttaccgttcaggcagttaaacagacgccatgtctcatcgttgtcaggctcgggggacataaatgcgccgccattgctgagggtgtagaacgaccagataccaccgctgtagccctcacagaagcggtccatccaggcgaagatatgcggctccaggagtagccactgcgggatagcgccaaagtactgtggccagaaatcgatacgctgttcatcggggaccggcgtgacggtcagttcaaattcgggttggttagcgggtgcgaggtcgtgctgcgtctgtgttgtcatgggtatgtctccgtcaataaaaacgccagcggcgatggctggcgtatggggatataaagtgtgttcggggaggtgaatgcgggtaaatgcttcgcgatcagcgggtggccgtgtctgtacggatgcctgaggtgcggatatagcggttaagaccttcaccggcatccggctcaaagttccatgcccgccagaccatccggccttcagtatcacgaaccaccagacggaagtgactgccctggtcgtcttcgagtgtgatattgctgtacgtggtagtgaccgcttgcgcttgtctccgggtgaaaggccccggtggcagcaacacggattgggtcattttcgggctcctgataaaagaaaaccccggcagcctgctagctgtcggggtgaatttgctggggaagatactactatcagtcgttgctgcagtctccgagagtggacagaactttctcagcgttcttccggtccgcagtgaaggtccctgctttgtggtcattgacgtagacgtcgaactgcccggcctcagagatattgctgatgaagtcaaaccaggcgttatcgccgttacgccagcccaggctggacggaataatgtactgctggtgatccatcactacggtgatagtagtgtcgtcatcgtgcgaactgaccatcttgtcatcggcaagggtaagaaagactgaatgctgatagaaaccattctggtccgggttccctgtgcagttgatggtaaacgtctttccgctggcttcggtcacgctgtattccgtattgccctgaccgtaaccctgctgccagaaccccgggatagcagaggcattaaagctcgcgagcagtacacccgccagcataaaccgacttagtgaaagtattgtcattcttgtctcctttgtcgttgttttattcctgattgtcagggttcgagggtatcagtagctgccccatcagtttgccgtcatgggcgtactcaaagtatttttctttggtatacgggtccgtcacctcctggtattccagtttgatgttatcggcaatacacagcgcattcatcagtggctggacggttttttcctgcatatccacgaggtagtagtaactgccatcctcgcagccatcgggcgactggcgggtacgtaaaacctgcaaggtgggaccggataagtagtcaacctgtgaccattcttcgctgacatcatcctggtggctgaccacatcactgaaacgcggtggggtgaggtccttaaatttactgatggccttcaggtcatcacttctgtcatcgcatgcgatgagaaacagagtggtggcaaccagcgccagcagaggcagtgttttacgtttcattatttttttcctgaaatcagacgaaccactttggcaaagacataaatgcccacgaaaatacccaccggcacgccgacgaacggtgtcagcgcgacactggcagcaccggctgcgccacctcccgtcagcagtgcggcaacagtggcaagggtcagggccgcgagactgtcggacaccccggttttgttcagaatgatgacgatgacaacaatggcgataatggcaatatccggactgatactccaggtccagatacatcagccgctcacgaaaatcacgccgcagcgtgcgcaccgacacaccaaactcagcggcaagcttacgcacactcagcgtttcccctgccaccagacggctgattatcagtgacagcctgacagccagccggtcatggcggcgttctgcctgtgtcatgagacgttctccgtgaaagttaactgactgaaaatgatgtgattactttaaagagggggtcggacagggtatggacaccacagaaactatttttcatttctgcaaaagccagaggcagcgggggttacaggccttccctcggtgagtgaggaccgtcagcacggtgcgatgcggacaggtggtgtccgatattaacaaagcagcaacattaaacggtcactgcagttgcgtgagcagggcttccgccatcacccacagtgcccggttaagtttcacgtccccgtcgataccgcgaacggcacgggtatgtgaccgtcctcctttggcattacggccactgagcccgcccttaatcaggttctcctgaatacgctggtacgtggtccacaggtcattgctctcatcctgccagcggcgaggggagaggatctgcgattcagtcaccggctggtggtcttcaccaaagcggtatgtgagggcggcttttgccagtgcctgctgtgccgggggtggcaacagcaacgactgcatggcatcccgtttctcctccacccggtcaaaaatccccagcacctcatacgcgccttcaatcacctgactcaccacgtcccccttgtgtggcacccgcacctcgccaaacgactcaccgcagacgagcccgttctgacaaaccgcacgaaatagtcccggcaacatctgatacgaactggttccatcgtgagagttgagtagaataatttccggcacctgtttaccggtgatctgcccttcccgccgcagacgcagcatatgctttgtatgttcacgacgacccgggtcacgcacgcgggtctgacaggcaaagaatggctggaagccttctcgctgtaggctgtcgagcagggagatggtgggtatataggtataacgctcactacgggactcgtgtttgtcctcactgaatacactgggcactacgcgaaacagctcttcacgggttaacggacggtcgcgacggataaggtttgctgcgccaaagcgcgaagccagacgggtcataagcagactcctcataacgggaaaacaaataaaagggatccccgtcgcatcggcgacaggggcagggaagtaacagggatgggttaaatactcagaagaagaaatcccagacggcgcgggccactgacaccaccgtggtgcgcacggcctgaatgacggcccgcaccggggcgggtatcaggggaaaggcactgatgctatcgagtacggccccgacggtttcaccaaaatcgctacgagcctgttcccggactaccgtcgtgcgaaaggaaggatggagttgcgacaccaccgggctggtggcctcacgtggcaggcacttaatcatccgctcggccatcaccttaagcccccattgtagacggaccgacacagcacacaccggatggacgggctggaacagctcatgcagcaggcagattttgcggctgatattctgcttctgcgccgtggacaactgtcccccaccgctggtaggttcggccttatccgactggctgataacaaacagcaccttatgccggtatacctctccaatcacctgatgataaaaatgttcatccaccgtcagcgcccggtcatcggccttaatcagccacagtaccaggtcgaggcgaggaagctgttcgcggtacagcgcagcatactcggtatcgcgagcgccactttcgcccacgccgggcagatccatcagcgttatatagcggtcgccgacttgcaggcgaaagcgcagtggctcacgtgtacaggccgccacatcgctgaccggtgatatatctccggcaaacagggcattgcacagactgctcttcccaacaccggttttacccataatgccgatcactggctcgtagttagttaactggttaatttgctgcagaagccgctctgatacccattgcggcagatcagcaagcgattgctgaaacgacttcaaaccttcagaattattcatcactactcctctgaaaaataataaaaaacggtagaatcgtgagattccgccgttaattgcgtatgttcagagtgatgatatatatctgaagattttttcaatcctctgcgcttgaggcagctgcgcgactgctggctcaggcaatgaatgagttataatagcagcatttactaacagggatttattgagagtatgagccgccgtgatacaccttaaaatctcaacccagcaaagtttcggagccgcgagcaaaagtgagagccttcacaaaataatgcttagtaataaagttactttgaattcagagccccgattaatgtgaacatgatcaacgaattttacccagattgagttcattcagtagccaggttttgaacacatcaagcgcagaatgcatgtgttggtgctgggggaaaaccaaataatgaccgatgtaatgtatttcgctggtactgtttacaagtgggcataccagtttaccgctagcgatttcacgttcagccagtagttttgattcaagcacaactcccaagccgtcaactgcggcagcaatcgccataaagctacggtcaaatcgaaggccataattattgggtggcgtcatcttattcgcctcaaaccatcctttccactggtacaactgcacatcgcactgaatcaatgtcaacgcatagagatcctctggtttctttagccgctcagccagttggggagaacacagtggcgtaagttcttcaacagcaagcgggatcttctcatagggtgatgggcggggttcaccgtagactatatcgagatcaaaatcatcctgttcaaaacgtgcatattctgtgctggctgaaagtcgcagatcgatgcttgggttctcacgtatgaacttaccaagacgtggtaaaagccattgatgggcaaaactcggtgcagtatgaaggcgcaaaggcctggattcatcagccgtcactaatgccaacccctgctgtaattcgttaaatccccgctgtatgtgctcaagcagtatttcaccttctttcgtcagcgtaatttctcgcgtactgcgctgaaaaaggcgtacatcaagcaagttttccagtttgcggatggcatggctgatcgcactgggtgacagttccaactcagaggcggccaacgcaaaagctccggtacgaccagccgcttcaaaggcgcgtaacagatttagaggtgcttttgctaagagcttcattcatgaatccttttcactagggatgaagtggtttactgaatttggccacctgaacagaggtgatatgctcacctcagaacaacacaggtgtcataatgaaaaaaagaaatttcagcgcagagtttaaacgcgaatccgctcaactggtcgttgaccagaactacaccgtggcagatgcagccagcgctatggatgtcggcctttccacaatgacgcgatgggtgaaacaattacgtgatgaacggcagggcaaaacaccaaaagcctcccccattaccccggaacaaattgaaatccgtgagctcaggaaaaagctacaacgtattgaaatggaaaatgaaatattaaaaaaggctactgtagattcaattggtcaacgcaacagttatgtgaaaacatggggttgcggaggttttttgaatgagacgaacatttacagcagaggaaaaagcctctgtttttgaactatggaagaacggaacaggcttcagtgaaatagcgaatatcctgggttcaaaacccggaacgatcttcactatgttaagggatactggcggcataaaaccccatgagcgtaagcgggctgtagctcacctgacactgtctgagcgcgaggagatacgagctggtttgtcagccaaaatgagcattcgtgcgatagctactgcgctgaatcgcagtccttcgacgatctcacgtgaagttcagcgtaatcggggcagacgctattacaaagctgttgatgctaataaccgagccaacagaatggcgaaaaggccaaaaccgtgcttactggatcaaaatttaccattgcgaaagcttgttctggaaaagctggagatgaaatggtctccagagcaaatatcaggatggttaaggcgaacaaaaccacgtcaaaaaacgctgcgaatatcacctgagacaatttataaaacgctgtactttcgtagccgtgaagcgctacaccacctgaatatacagcatctgcgacggtcgcatagccttcgccatggcaggcgtcatacccgcaaaggcgaaagaggtacgattaacatagtgaacggaacaccaattcacgaacgttcccgaaatatcgataacagacgctctctggggcattgggagggcgatttagtctcaggtacaaaaaactctcatatagccacacttgtagaccgaaaatcacgttatacgatcatcgttagactcaggggcaaagattctgtctcagtaaatcaggctcttaccgacaaattcctgagtttaccgtcagaactcagaaaatcactgacatgggacagaggaatggaactggccagacatctagaatttactgtcagcaccggcgttaaagtttacttctgcgatcctcagagtccttggcagcggggaacaaatgagaatacaaatgggctaattcggcagtactttcctaaaaagacatgtcttgcccaatatactcaacatgaactagatctggttgctgctcagctaaacaacagaccgagaaagacactgaagttcaaaacaccgaaagagataattgaaaggggtgttgcattgacagattgaatctacaaccgcgctcttgatgtcagactccctgaacagttctcgataatcgggaaactcagggcgcgttatcctgtggccactctctgccatgtgttcggggttcatcgcagcagctacaaatactggaaaaaccgtcctgaaaagccagacggcagacgggctgtattacgcagtcaggtacttgaactgcatggcatcagccacggctctgccggagcaagaagcatcgccacaatggcaacccagagaggataccagatggggcgctggcttgctggcagactcatgaaagagctggggctggtcagttgccagcagccgactcaccggtataagcgtggcggtcatgagcacgttgctatcccgaatcatcttgagcgacagttcgccgtaacggaaccaaatcaggtgtggtgcggtgatgtgacctatagtgtgcccggagttcagggcgggcatggatgcttaaatgaaccgcgagtctgtctggaatattgaaccggtaactcacgatgagaaacccaacaatcccaccgggtgtgacggtggagaacctgagcggcagtgacctgcggcatgcccgcagggtgatgtaacccgctgacaacggggattgaggcgagatcactaagccgagatgatcctcaaggttaagtactgaaaggttgaagaacatgaacccgttaatccgcctctgtgggttgaaaacgtcaccacggcctacgtgatctgacaggccgtgcaggaggaactggcagtgatacgtaagcactgccggtcgaaggtgttttgacatgtatgcgaaacaccggggcagcagcgtctatcacgcttgcgttgctgacttctgccaacttgcggcaagcaaggataaagagtgcgacgggcagcctcctcagtatgcctgagtccaggcaggtaaaccggggaaggtcagcgacggatgttaagggggcatggctccgatgacgcgctggctggcggagcttccgtagtagtccgcgatggggaaagcccattacatggcgaagggaagcagtttgaatgtgtttgcgacgtgaattaactgacctaacgaggtgaagacctttgataatcagcgaaatgcaacgcaagcttgccacatgggcagccaccgatccgtccctacggattcaacggctgctgcgtctgataacacaaccagaatggctggctgaagcggcgcggatcacgctttcatcaaagggggcccatacccccggcgttgatggcgtgaacaaaacaatgctacaggccagactggctgttgagctgcaaatcctcagggatgaattactctcaggccactaccagcccttgcccgccagacgggtttacatccctaaaagcaacggcaaactgcgaccactgggtatccccgcgttgcgggatcgtattgttcagcgggccatgctgatggcgatggagccgatatgggagagtgattttcatacgctctcatatggcttccggcctgagcgcagtgtccaccacgcgatccgcacggtgaaattacagctcacagactgtggtgaaacccggggacgctgggtgattgaaggcgacctgtccagttacttcgacaccgtacatcatcgactgctgatgaaggctgtacgccgcaggatcagtgacgcacgtttcatgactctgctgtggaaaaccatcaaggcgggacatatcgatgtcggtctctttcgggcggccagtgaaggtgtgccacagggcggtgttatatcgccgctattatcgaacatcatgctgaatgagttcgatcaatacctgcatgagcgctacctgagcgggaaagccagaaaagatcggtggtactggaataacagtatccaacggggccgaagtacggcggtcagagaaaactggcagtggaaacccgcggtggcgtactgccgctatgccgatgattttgtcctcatcgtcaaaggcaccaaagcacaggtggaagccatcagggaggagtgtcggggtgtgctcgaaggcagtctgaaactcaggctgaacatggataagactaaaatcccccatgttaatgacggctttatctttctggggcacaggctcattcgcaaacgcagtcgttatggcgagatgcgagtggtctcaacgatcccgcaggagaaagccagaaacttcgccgcatcgctgacagcactgttatggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccggaggcgttatgagctggcggccctttttgtatctgattattaatccccacccgctattaagcgcccggcgcgggcatctgcgtctggtgcagggttgactttgcattctgttaacaaacgcggtataacaaaccttctttggatgtttagatgtccatacgtttagaaggttatatgcaaacaacacaacaaaatgcgccactgaagcgcacaatgaaaacgcgtcacctgattatgctttccttgggcggcgtgattggcacaggattattcttcaataccgggtacatcatttccaccactggagcggcgggaacgctgctggcctatctgattggtgcgctggtggtctggctggttatgcagtgtctgggcgagctgtcggtcgcgatgccggagaccggagcgtttcacgtttatgccgcgcgctatcttggtccggctaccgggtataccgtggcctggctttactggctgacctggaccgtggcgctgggttcgagctttaccgccgctggattctgtatgcagtactggtttccacaggtgccggtatgggtctggtgcgtggtgttctgcgcgattatttttggtctgaatgttatctccacgcgcttttttgccgaaggggagttctggttctcgctggtcaaagtggtcactatcatcgcctttatcatcctcggtggggcggcgattttcggctttattccgatgcaggatggctcgcccgcgccggggctgagtaatatcacggcagaaggctggttcccgcacggtggcttaccgattttgatgactatggtggcagtgaactttgctttttcgggtaccgagcttatcggcattgccgccggtgaaacggaaaacccgcgcaaagttatcccggtagcgattcgtactaccatcgcgcgactgattattttctttatcggcaccgtgtttgtgctggcagcgctgatcccgatgcagcaggtgggcgtggagaaaagcccgtttgtgctggtatttgagaaagtagggatcccgtacgccgctgatatttttaacttcgtgatcctgacggctattctttctgcagcgaactccgggttatatgcctccgggcgcatgctgtggtcgttgtcgaatgaacgtacgctaccggcctgttttgcgcgagtaacgaaaaacggcgtgccactgacggcgctgtcggtcagtatgctcggtggtgtgctggcgctgttttccagcgtggtggccccggacacggtatttgttgcgctgtcggcaatctccgggtttgcggtggtagcggtgtggctgagtatctgcgcctcgcattttgtttttcgtcgccgtcatctgcaacaaggtaaggcattgagtgaattacattatcgcgcgccgtggtatccgctggtgccagtattaggttttgtgctgtgcctggtggcctgtgttgggctggcattcgatccagcgcagagaattgcgttgtggtgcgggttaccgtttgttgcgttgtgctatggtgcttatttccttactcaaccccgaaacgcaaaacaggagccagaacatgtcgcagaataatccgttacgcgctcttcttgataaacaggatatcctgctgctggatggcgcgatggcgacggagctggaagcgcgagggtgtaacttagccgacagcctgtggtcagccaaagtgctggtagaaaacccggagcttatccgcgaagtgcatcttgattactaccgggcgggggcgcaatgcgcgatcactgccagctatcaggcgacgccggcgggcttcgccgcgcgaggtctggatgaagcgcagtcgaaagcgctgattggcaaaagcgtggagctggcgcgtaaagcccgtgaagcgtatctggcagagaacccgcaggcgggaacgcttctggtggcgggatccgtcgggccttacggcgcgtatctggcggatggctctgaataccgtggcgattatcattgtagcgttgaggcatttcaggcgtttcatcgcccgcgcgtggaagccttgctggatgccggggccgatctgctggcctgcgaaaccctgccgaatttttccgagattgaggcgttggccgagctgttgaccgcatatccgcgtgcgcgggcgtggttctcatttaccctgcgcgacagcgaacacctgagcgacggtacgccgctgcgtgacgtggttgcgttgctggcgggttatccgcaggtggtggcgctaggcattaactgtattgcgctggaaaacaccaccgctgcgttgcagcatttacacggtttaacggtgctgccgctggtggtgtatccgaactcgggcgagcattacgatgccgtgagcaaaacctggcatcatcacggtgaacattgcgcgcagctggcggattatctgccgcagtggcaggccgctggcgcacggttgattggcgggtgctgtcgcaccacgcctgcggatatcgccgcgttaaaagcgcgaagctgagggtttatcgggtctacatcgttcattgtaggcctgataagcgcagcgcatcaggcattgccggatggcggcacaagcgccttatccggcctacaaaaccacaaaacgttatgccgcatccgccagaacaaacatgccgtacggatggatttcaagataatactgctcgccgacgtccggttgcagacgcgtagcgttgacctgcaataatatctcctgcccgtgccattccaccgtcacttcatactgcggccccatataggcgacatggcggatcacgcagcgctggctctcttcgccgcgatcgctgagcgtgatcgcttccgggcgcacaccgaccatcccttcaccctgtgtaccaaagtgcagcgggcgcggcagatgatagccgtagatatcaacgtatccgtcgctgaaggttgccgggaacaggttggcatcgcccataaagctcgccataaagcgggaggcgggctggcggtaaagatcctgcggtgagccgatctgcatgatgtgtcccttgttcatcaccagcacagtatcagaaaccgcaaaggcttcgctctgatcgtgggtgacgtacagcgaggtgatatcaaactgcttttgcaactcgcggatcttgtcgcgcatgctgcgacgcaggttggcgtcgaggttactcaacggctcatcaaacagcagcactttcggcttgaggatcagcgcgcgggccagcgccacgcgctgctgctgcccgccggagatctgatcgacaaagcggtcttcgaatccttccagatccaccatcgccaacgcctctttgacgcgggctttcagctctgcgcgcggtacgccgagcattttcaggccataaccgacattctctcccagcgacatatgcgggaacagggcataggactgaaacaccatacagatatcgcgctgctgaatagagcgatgggtgacgtcttcgccatcaatgaaaatttgcccttcgctcggtttttccagcccggcaaccaggcgcaaaatagtggttttgccgcagccggacgggccgagcagcgtcaccatttgcccctgcgggatggtgaggttgatattgtcgattaccgtattactgccaaatcgtttagtgacgttgcgcagttcaacgaaatttttctgagtcatagtgcgctccattacgcctggtttttggcttttgaacgggaggtacgtgattcaccgatcagccagtcaaagatgaaaataatcgccagcatcaccacgatcagaatggaaccgtaggcaatcgctacaccgtattcgccatcttccacgcggttgaggatgtaagccgtcgctacgcgggtatccggcgtgacgaggaacacaatggcgctgacggtggtaatggcgcgcacaaagctgtaaatcagcgccgagaggatcgccgggcgcagcagcggcagcaggatgtgcgtaatggtacgcagggaaccggcgcgcaggctgagtgaggcttcatcgagcgatttatcgatttggcccggtaatgactccaacttattgatagtgttttatgttcagataatgcccgatgactttgtcatgctgctccaccgattttgagaacgacagcgacttccgtcccagccgtgccaggtgctgcctcagattcaggttatgccgctcaattcgctgcgtatatcgcttgctgattacgtgcagctttcccttcaggcgggattcatacagcggccagccatccgtcatccatatcaccacgtcaaagggtgacagcaggctcataagacgccccagcgtcgccatagtgcgttcaccgaatacgtgcgcaacaaccgtcttccggagcctgtcatacgcgtaaaacagccagcgctggcgcgatttagccccgacgtatccccactgttcgtccatttccgcgcagacgatgacgtcactgcccggctgtatgcgcgaggttaccgactgcggcctgagttttttaaatggcggaaaatcgtgttgaggccaacgcccataatgcgggcggttgcccggcatccaacgccattcatggccatatcaatgattttctggtgcgtaccgggttgagaagcggtgtaagtgaactgcagttgccatgttttacggcagtgagagcagagatagcgctgatgtccggcagtgcttttgccgttacgcaccaccccgtcagtagctgaacaggagggacagctgatagaaacagaagccactggagcacctcaaaaacaccatcatacactaaatcagtaagttggcagcatcaccgagaacacaaatgggctaattcggcagtactttcctaaaaagacatgtcttgcccaatatactcaacatgaactagatctggttgctgctcagctaaacaacagaccgagaaagacactgaagttcaaaacaccgaaagagataattgaaaggggtgttgcattgacagattgaatctacagcagctttttttaatatgtcccgttcgtcggtaacccgtttcagctctttctggagacggcggatctcggcctgagcatctgactgttctttattagtggaagaatccggaccgtacttctttatccaggcataaaggctgtgggtggtgatatcgagacgtgttgcaacgctggcaacagaataaccgagatcaacaacctgtttgactgcttcagttttaaactcttcgggataacgcttaccgctcatgggcacctctctttaagccattttaaatgactcggaggtgtctgttaaacccgtggcgattcaaaattgcgatatatacatacccatgactgcccagcgtatcggcttcaccagtcagcccgttacggtacagtgtgacacagtgcgcgtacctgggattcagctcacaggagagcagcatcagctccagatgtgcgacaaaatgcgggaaggcttcatccagttgtagagtctgcacctcactgaatgagccggtgaatccagcccggtcagccagaaaatgcagacgatgaccttcctgcaccagtcgtgctccgaaacacggtgtgatatctcgtttaagcccccaagtttgagtagagtctttattcataattttattcctgttaaagaagaccatgttcggcgaatgagaatatttgcctgccgccgacaatcaggtggtcggggacatggtgaacactttttaacatcctttacccatggtgatcgactttttcttcaggtcgatcacccccactttcgtgctgtaccaccacacctcgtagctgccgtcttcctgcatctccttcagcccgacccgttctcccctgaacgccttgcctgcgctcagacttacccctttcacgctcagctttccgctgatatccactttcctgaccatcaccccttcatcgtattccgggggcgttgtgttgccgctgtactgccgcgctgacggctgataccgcgagcccggtaccgccatatccagcgcctcgtgcgggcgttcaaggttatagaccgtccgccagtggtcgaaggcgcgctgcagttcaccgctgtctgcgaaccattttccctgcagcacttccgccttcaggctgcggtgaaaacgctccagcttcccctgcgtctgcggatgataaggccgggagtgccccacccggatacccaggcgcatcagccacagctccagcgccgtccaggtgccggtggtgtcgccccacggtgagccgttatccatggtcatccggtccggcaggccgtaacgctcaaacacgctgaccagctgctgctgcacggtctcgcgccgttcatcggtacagtgcgccaggcacagggaaaaacgggagtggtcgtccagcagggtgagcggatggcagcgtccaccgccaaaaggaaagtggcccttaaaatccatctgccagaggcggttcggcgcgtcgtgttcgaaccggcccgtggcgggaatgcccggtgaagcgcccggcagcaggccatggcgggccatcaggttatggacggtgctgaaggcgggcatggtgtgcccctggtcctcgagccagcgcttaatcttgcgggctccccagcgttcatgacggtcatgggccatacgcagcagggccgtgatgtcgtcagatgagcggttcggggaatggtgcggaatgcgcgggcggtcctgaagaccggcggcaccttcctgagcccagcgctggagccacttgtagccggtggcaggtgaaatgccgaagcgacggcagagggaacggatgttcgccccgtcctgcgaggcgaacaaaacaaactcagtacgtaatgacatggtatctctcgcatcccagggcataagcgactccataaacgggttcttatgccttagttgtaagtgtctaccatgtccccgaacaagtgttcactatgtccccggaccgtacaccccaaaggggagaggggactgcaccgagccatcttttccccctcgcccctttggggagagggccggggtgaggggcaatatgtgatccagcttaaatttcccgcactccctcttcccttccgatttacctctccttgttctgcgtcatagtatgatcgttaaataaacgaacgctgttctataatgtagaacaaaatgattcagcaaggagatctcatgccgcagtccgcgttgttcacgggaatcattccccctgtctccaccatttttaccgccgacggccagctcgataagccgggcaccgccgcgctgatcgacgatctgatcaaagcaggcgttgacggcctgttcttcctgggcagcggtggcgagttctcccagctcggcgccgaagagcgtaaagccattgcccgctttgctatcgatcatgtcgatcgtcgcgtgccggtgctgatcggcaccggcggcaccaacgcccgggaaaccatcgaactcagccagcacgcgcagcaggcgggcgcggacggcatcgtggtgatcaacccctactactggaaagtgtcggaagcgaacctgatccgctatttcgagcaggtggccgacagcgtcacgctgccggtgatgctctataacttcccggcgctgaccgggcaggatctgactccggcgctggtgaaaaccctcgccgactcgcgcagcaatattatcggcatcaaagacaccatcgactccgtcgcccacctgcgcagcatgatccataccgtcaaaggtgcccatccgcacttcaccgtgctctgcggctacgacgatcatctgttcaataccctgctgctcggcggcgacggggcgatatcggcgagcggcaactttgccccgcaggtgtcggtgaatcttctgaaagcctggcgcgacggggacgtggcgaaagcggccgggtatcatcagaccttgctgcaaattccgcagatgtatcagctggatacgccgtttgtgaacgtgattaaagaggcgatcgtgctctgcggtcgtcctgtctccacgcacgtgctgccgcccgcctcgccgctggacgagccgcgcaaggcgcagctgaaaaccctgctgcaacagctcaagctttgctgagccggacgataacgatgaccattgagaaaattttcaccccgcaggacgacgcgttttatgcggtgatcacccacgcggcggggccgcagggcgctctgccgctgaccccgcagatgctgatggaatctcccagcggcaacctgttcggcatgacgcagaacgccgggatgggctgggacgccaacaagctcaccggcaaagaggtgctgattatcggcactcagggcggcatccgcgccggagacggacgcccaatcgcgctgggctaccacaccgggcattgggagatcggcatgcagatgcaggcggcggcgaaggagatcacccgcaatggcgggatcccgttcgcggccttcgtcagcgatccgtgcgacgggcgctcgcagggcacgcacggtatgttcgattccctgccgtaccgcaacgacgcggcgatcgtgtttcgccgcctgatccgctccctgccgacgcggcgggcggtgatcggcgtagcgacctgcgataaagggctgcccgccaccatgattgcgctggccgcgatgcacgacctgccgactattctggtgccgggcggggcgacgctgccgccgaccgtcggggaagacgcgggcaaggtgcagaccatcggcgcgcgtttcgccaaccacgaactctccctgcaggaggccgccgaactgggctgtcgcgcctgcgcctcgccgggcggcgggtgtcagttcctcggcacggcgggcacctcgcaggtggtcgcggaggcgctgggtctggcgctgccgcactccgcgctggcgccgtccgggcaggcggtgtggctggagatcgcccgccagtcggcgcgcgcggtcagcgagctggatagccgcggcatcaccacgcgggatatcctctccgataaagccatcgaaaacgcgatggtgatccacgcggcgttcggcggctccaccaatttactgctgcacattccggccatcgcccacgcggcgggctgcacgatcccggacgttgagcactggacgcgcatcaaccgtaaagtgccgcgtctggtgagcgtgctgcccaacggcccggactatcacccgaccgtgcgcgccttcctcgcgggcggcgtgccggaggtgatgctccacctgcgcgacctcggcctgctgcatctggacgccatgaccgtgaccggccagacggtgggcgagaaccttgaatggtggcaggcgtccgagcgccgggcgcgcttccgccagtgcctgcgcgagcaggacggcgtagagccggatgacgtgatcctgccgccggagaaggcaaaagcgaaagggctgacctcgacggtctgcttcccgacgggcaacatcgctccggaaggttcggtgatcaaggccacggcgatcgacccgtcggtggtgggcgaagatggcgtataccaccacaccggccgggtgcgggtgtttgtctcggaagcgcaggcgatcaaggcgatcaagcgggaagagattgtgcagggcgatatcatggtggtgatcggcggcgggccgtccggcaccggcatggaagagacctaccagctcacctccgcgctaaagcatatctcgtggggcaagacggtgtcgctcatcaccgatgcgcgcttctcgggcgtgtcgacgggcgcctgcttcggccacgtgtcgccggaggcgctggcgggcgggccgattggcaagctgcgcgataacgacatcatcgagattgccgtggatcgtctgacgttaactggcagcgtgaacttcatcggcaccgcggacaacccgctgacgccggaagagggcgcgcgcgagctggcgcggcggcagacgcacccggacctgcacgcccacgactttttgccggacgacacccggctgtgggcggcactgcagtcggtgagcggcggcacctggaaaggctgtatttatgacaccgataaaattatcgaggtaattaacgccggtaaaaaagcgctcggaatttaattattttaagagataaaaccgtctgcggaatatttcccgcagacggctttgttgtttttgaaatttattaatttaaacaattagttgagatatatcgttggcgtcacaaaagcaaaataacgtaattcggaaataagatatgaccattgctggttaattgaatagctcattacactccattaacacgatgttgtaattcggcacactacataagggtgtaattctgatgacgcaattaaccatgaaagacaaaattggctacgggctgggagacaccgcctgcggcttcgtctggcaggccacgatgttcctgctggcctatttctacaccgacgtcttcggcctgtcggcggggattatgggcacgctgtttttggtctcccgcgtgctcgacgccgtcaccgacccgctgatggggctgctggtagaccgcacccgcacgcggcacggccagttccgcccgttcctgctgtggggggccatcccgttcggcatcgtctgcgtgctgaccttctacacgccggacttctccgcacagggcaagatcatctacgcctgcgtgacctacattctcctgaccctggtctacaccttcgttaacgtgccgtactgcgccatgccgggcgtcatcaccgccgacccgaaagagcgtcacgccctgcagtcctggcgcttcttcctggcggcggcgggctcgctcgctatcagcggcatcgcgctgccgctggtgagcatcatcggcaaaggggacgagcaggtgggctacttcggcgccatgtgcgtgctggggctgagcggcgtggtgctgctctacgtctgcttcttcacgaccaaagagcgctacacctttgaggtgcagccgggctcgtcggtggcgaaagaccttaagctgctgctgggcaacagccagtggcgcatcatgtgcgcgttcaagatgatggcgacctgctccaacgtggtgcgcggcggggcgacgctctacttcgtgaaatacgtgatggatcacccggagttggcgacccagtttttactttacggcagcctcgccaccatgttcggctcgctttgctcctcacgcctgctgggccgcttcgaccgcgtcaccgccttcaagtggatcatcgtcgcctactcgctgatcagcctgctgattttcgtcaccccggcggagcacatcgcgctcatttttgccctcaacatcctgttcctgttcgtctttaataccaccacgccgctgcagtggctgatggcttctgacgtggtggactacgaggagagccgcagcggtcgccgcctcgacgggctggtgttctccacctacctgttcagcctgaagattggcctggcgattggcggggcggtggtgggctggatcctggcgtacgtcaactattccgccagcagcagcgtgcagccggttgaggtgctcaccaccatcaaaattctgttctgcgtggtgccggtggtgctctacgcgggcatgttcatcatgctgtcgctctacaagctcaccgatgcccgcgtggaggccatcagccggcagctgattaagcaccgcgcggcgcagggcgaggccgttcccgacgccgcgacagccgcatcccattaaccggaggcaatatggaaatcactaacccgatactcaccggcttcaacccggacccgtccctgtgccgccagggcgaggactactacatcgccacctcgaccttcgagtggttcccgggcgtgcgcatctaccactcccgtgacctgaaaaactggtcgctggtcagcaccccgttggaccgcgtgtcgatgctggacatgaagggcaacccggactccggcggcatctgggcgccgtgcctgagctacgccgacggtaaattctggctgctctacaccgacgtgaagattgtcgactcgccgtggaaaaacggccgcaacttcctcgtcaccgcgccctccatcgaggggccatggagcgagccaatcccgatgggcaacggcgggtttgacccgtccctgttccacgacgacgatggccgcaaatactatatctaccgcccgtgggggccgcgccaccacagcaacccgcacaacaccatcgtgttacaggcgtttgacccgcagaccggcacgctctcgcccgagcgcaaaacgctgtttaccggcacgccgctctgctacaccgaaggcgcgcacctgtatcgccacgcgggatggtactacctgatggccgccgagggcggcaccagctacgagcacgccgtcgtggtgctgcgttccaaaaatatcgacgggccgtacgagctgcacccggacgtaacgatgatgaccagctggcacctgccggagaacccgctgcagaagagcggccacggctcgctgctgcagacgcatacgggtgaatggtacatggcctacctcaccagccgcccgctgcgcctgcccggcgtgccgctgctggcctccggcggacgcggctactgcccgctggggcgcgagaccggcatcgcccgcattgaatggcgcgacggctggccgtacgtggaaggcggcaagcacgcgcagctgaccgtgaaaggcccgcaagtagccgagcagcctgcagccgttccgggcaactggcgggacgatttcgacgccagttcgcttgacccggagctgcagaccctgcgcattccgttcgacgacaccctcggctcgctcaccgcgcgcccgggcttcttacggctctatggcaacgactcgctcaattcgaccttcacccaatcgaccgtggcgcgccgctggcagcacttcgccttccgggcagaaacgcggatggagttctcgccggtgcacttccagcagagcgcggggctgacctgctactacaacagcaaaaactggagctactgctttgtggactacgaggagggacagggtagaaccatcaaagttatccagctcgaccacaacgtgccgtcgtggccgctgcacgagcagcccattccggtgccggaacatgcggagagcgtctggctgcgggtggacgtggatacgctggtctaccgctacagctactcgtttgatggcgagacgtggcacaccgtgccggtgacgtatgaggcgtggaagctgtcggacgactacatcggcgggcgcggcttcttcaccggcgcgtttgtgggcctgcactgcgaggacatcagcggcgacggctgctacgcggacttcgactacttcacctacgagccggtctaacggctcaggccgggtagcccagcgcgcgcgagagcgcgagcccggcctgctgaagctgctcgcggaaattagccagctccgcgtcgtccacgcgggaggtcagcgtcgacaggctcagggcggcgatgacgcgggactcgtggttccacaccggcaccgccacgcagcgcacgccctgctcgttctcttcgctgtccagggcgtagccttgctcgcgggtctgcgccagggcgctcattaaggcttcgcgagacgcgagggtggcgggcgtaaaggtagtgtactgatagccctccagcagggcgttcagctcggcctcgcccagccaggcaatcaacaccttgccgatggcggtggcgtgcaccggcaggcggcggccgatgcgtgaataggcgatggcggccagcttgccttcaatcttctcgatatagaccccttcacgcccgtccaggatccccagatgggtggtctgcccggtccgccgggacagctccgtcagccagccttttgccttctgccgaatatcgatggagcccacgacaaaatggccgcgctcgaccagcttcatgccgaggcgatacttgccgttctccgggttctgatcgatatagccgtgaagctgcagggtttttagcagcgagtggagggtactcttgctcagccccatcagtttgctgatgtcggtgatcttaagctcggtggcctgctcgttgaacaggtcgaggatctgcaacgcacgttcaacagactgaataatcggcataatgctggcatgtccacgctggaattaaggcgaaaacgtacctttttcgggatgaaaaatcaatgaaatggagccggtgttctccctctccctgtgggagagggccggggtgagggcaccaacgcgcagcggacccaatcactccccaagcgttgccatcatcaccgccttaatcgtatgcatccggttttccgcctggtcgaacacgatgctcgccgccgactcaaacacctcgtccgtcacctccatcccgccgtgcagatcgaactccttcgccatctgcttgccgagcgtagtctggtcgtcatggaacgccggcagacagtgcaggaacttcacgttcgggttgtcggtcagcgccatcatctgcgcgttcacctgatacccgcgcagcagcgcaatccgctctgcccacttctctttggcctcgcccatcgacacccacacgtcggtatagataaagtccgcgcccttaacgcctgccgccacgtcttccgtcagagtaattttcccgccgtgcttctccgccagcgcgctgcactccgccaccaggctctcttccggccagcaggctttcggggccaacaggcgcagatccagcccggtcagcgccgccgcttccagcatcgagttgcccatgttgttgcgcgcatcgcccgcgtagaccagcgtcatctcgttaaacgccttgcccggcaggtgctcctgcatggtcatcaggtccgccagcagctgggtcgggtggaactcgttggtcagcccgttccacaccggcacgcccgcatactgcgccagcgtttcgaccacttcctggccgtgaccgcgatactgaatgccgtcatacatccgcccgagaacccgcgcggtgtccttaattgactctttatgcccaatctggctgccgctcggccctaaataggtaacgcgcgcgccctggtcaaatgcggcaacttcgaaagagcaacgggtacgagtcgagtctttttcgaagatgagcgcgatgtttttaccggtaagcttctgtacttccttgccattttttttatcggctttgagctgtgcggcaagggtcagcagagaagtgaactgtgcaggggtaaagtcgagcagtttcagaaagtgttttttgtataaatcggacattttatcctcgcatggcgaacgccacttattgaattaaaattcactttatatgtgtaattattcatttgcaaccccatttcacaattctttcttacaaaggtggaggcaaacccgtccgtgtgtgaaaataatcgtatctgcctccgattctctgcagaagcagaaagacattggatcgaattctacaaccaggtcgagtcagaaatgagaatgattggccttctttatgattttaaggattatgcttctaaaatggcggagaacatggcgaggcttgctgccttacttcattacttcagcggtgatggaggcgatatatctgttaccgggtaatgactccaacttattgatagtgttttatgttcagataatgcccgatgactttgtcatgctgctccaccgattttgagaacgacagcgacttccgtcccagccgtgccaggtgctgcctcagattcaggttatgccgctcaattcgctgcgtatatcgcttgctgattacgtgcagctttcccttcaggcgggattcatacagcggccagccatccgtcatccatatcaccacgtcaaagggtgacagcaggctcataagacgccccagcgtcgccatagtgcgttcaccgaatacgtgcgcaacaaccgtcttccggagcctgtcatacgcgtaaaacagccagcgctggcgcgatttagccccgacgtatccccactgttcgtccatttccgcgcagacgatgacgtcactgcccggctgtatgcgcgaggttaccgactgcggcctgagttttttaaatggcggaaaatcgtgttgaggccaacgcccataatgcgggcggttgcccggcatccaacgccattcatggccatatcaatgattttctggtgcgtaccgggttgagaagcggtgtaagtgaactgcagttgccatgttttacggcagtgagagcagagatagcgctgatgtccggcagtgcttttgccgttacgcaccaccccgtcagtagctgaacaggagggacagctgatagaaacagaagccactggagcacctcaaaaacaccatcatacactaaatcagtaagttggcagcatcaccgaattttcagcccggatgtttcacgtacctatgtcgaatatctggccgataaggttgcggatcgagaagaggatgcagaggaatatctggaagcaatcatggaggctcgtgttaccgttgctggcatggggctggtgatggaggtgcaggattacttcgatggcgaggccgatagactggcgaaggcgtggctggccgagtacacaccgcaaatcaagtcgttgaaagatgagcgtaaagaggcctatcgtcaaatcgtcgaaatgagtaccgaaccgcaggatgtggatctggtcaggccggcgaacaagtttgaaatgaccagggtgcgtgaaggtgaaaaggaagctgaccttccagtctggaaacaccatttgttgtgtgacgaaagcgggaactatccggctctgttgaaccattgggaaaccaaggtttttgagatcgaaaccaaacgtgaaggatttgctttctggtatcgtaatccacagtacacagggcagtcgtcactgggaatcgcttatgttgaagctgaacagtacaagattgttcgtcccgatttcctgttctttgccgaacaggatggcaaaatggttgtggacctggtagatccacatagcctacatctggctgatgctttgcccaaactggaaggacttgcgctatatgccgaacatcattctgatgcttacaggcgaatcgaatctgtcgccgaagtaaagggtaaattacgagtgttagatttgaaacggcaggatgtgcaggatgctgttgctaccgctgaaaatgcagaaacgttatttagtagcggacttgctgatgactatcagtaatctatagaaaattgcgtaacgaaactgcattttagtaattttttgaaacaatacaaataaggccttctcactgagaaggccattaccgacttacagttcgatttggctacagccgaagttacggtctccttcaccaaacactttgctttcaactttggtcaggtagtccagtcgggttaacagcgcctggtagttctgctggaagtcagtactattggtgtctagcacatacttacagttttcaggaaaatggaccagaccagggtgatcgtctctctccagtctcagggcgctgtaccaggctcctgtgatcatccctctaaggttatcgtcctgatcgtaatccccgaggtggtagtaagcgtctttgttgaacaacaggcaaatgtgatagtggcatttacctgattcagaatactctttcgcccatataataaataaagggcaacggtaaatgcgtttatcctcacgcaccttacgggtacggtcagcctccagcttagctctgagggattcacgcatccgggatatcaccccaggttccaggttagggaagcaacagatattgtcaccgttatcaactattttgggatagtggagatcgacacgtacagcaattaacctaggataccggttagtcaaataacataataatttattaatcttactctgatattcgaggatatgtactccatgagtaccttgatatgttttcataatatatacctgtatttggtcctacggtctatagcagaccgtacagggatgccatacaggcagggctattcctggtcactgttgtcggtatatactggtatcagattttagtacggacatactgatctgattactactcttactggtgaatacaggtagtaagagtacacaatgccattatataatacctatccaacatctaaatttgagacgaaggtagccccagcctgtgatggctgttaaaaagttactctgcaattagcttctggaattaaccgatgattccgttattccagtgccgcttcacagtcgataaactgatactcaatttctttgcaatctcagcctgagtaaatccacctttcttaagtattgtgatatcacgtcggtatttgcttccctcctttcgtcctaattttttcttaacatgtcgatatcggcttttagttgatttcagattgtgaatgtcaatcgtatcctgacgagcaatcaaaaaagacaagcaactttcagcagaaggctctatccttgaagctggatggtagctgtagataaacatttctttttgaaggcaaaaaaataaaatattctgtaagtcctccacagttctgccaagacagcttagatctggaatgacaagcgtgtcctgccggttcatttcatgatgaatcaattgtctgagtaaacgttgctctgaaacaacctctttaatatctacctgctcgatcacaacatgttcaggtagaatattaaatttttggcatatctcagcaagtgagtgatgatctgtaatgctttcttgctgttcgctactgcatatggtgtaaaaaaatgaacgcatctgatgcactccggtgtcataaattattttttgatacctgaataatgtcattttgcataaaaaacaaccaaaaatagagagtgattgccagcgatactttaactggtaaagtagtattttacctctcataattgtttgtccttctttgttacctcttaggttctgctctcttgtgagtatgggtttataatgatgtcatccggtacattaacacggttggaaacatctgttttgcggagcactggcagcataaccaccatttcattgacatggtaaatatcaatccaacaaacaaccggataaggcataacaatcccctttcttctaagaacttcatttatcccgaatataatcaattgggatgttgacaagagtagagcctgcccggcatcaaagtaataaccctcaaaggttgttctatgaataagaataatgtttgaatatcctgagacactttgatgctttacatcaaaatgtctttgattgtaaatgtaaatggctttttccatatcgtaattttcccttagcgaggatagcctttcacgtataactgttttttcatctttccccatgaattcatcattagcgttcagttgaaagtaatctgcaatggggatttttaatggactcatgatgttcgttttccagattaacgaacagtactcttccagagttacttctgttttacctcggcttcgattgatgctttcttttatagagaactttaacaggtcattttttatttcatttattgaccagttatgacgattgcatttttctaatatagggatagccaaatccacaacttccgctattacggaagagtgagatttatttgttagtctggcataatgatcaattactcctaatgaagattgatttttgaacgtgactgagtgtttttttatgggagtagtctgtactacctgtgactcattgtttttgccttgacaaggtttttttcctggtagaacgctgctcatctcaaaattagtaacactattagacatttttaaggaaacctctttgttatctcaatataaaactactatctgaaatttctcagtgttgccccatttttctcggggcaacatcgctataaatcaataaaattaaatctgtaatttattacagactttctcgtacagaaaatgtatctataaaatcgaggacatctttacgtaaccagtaatggcggccattgatttgttttgggcgaggtagcccctcaggcaatttgtcctgacaaagccatttacgaatggtttgagatttgtagctaatgattttagctaactcagctgttgaaatgagctgtgattgagatgtatccgggagtttgaatgcgctcattttgccacctcagtgattgagatattggcaaagaaagctttaagcattattgaattagtaggggtagtaatgaaggcagaaggaaacgtttcgggctcggggtcggggtcactaccatcacctgaatctgatgataaggcacttttagctgatttagccgtactgtgatgcgatctggatgcctgatttttacatgacatcagacgcgcgagaaagttagtagcattttgcattctttgtttaagatgtaaaattttcagtttggcgcatgcgacagacttgcgaagagctgagtatgttcctttgagatactcgacaacctcttccatggacgcaggatcgttaaaggattgagttgttttacttgaattaatacaccagcgagctctgatagctgccagagtgggttctatggatacagttgctggggttgccattggcttatctcctgtgtagttgctgtatcattgactaaactgtgtattacgatacatgaaaatctatcttgatcaatagttgatgatattttgtaatatgttgatttttaatggaatcaacgcatatcaacgttgttttttatggtaatacctgcttcatttaagatccatgtctcaattttctcgtgccattttcgtaacagatctaacggacgacggcgatagtgtttttcggcaagagcgctgggtttgtgtcccataatttgagcaacaataccagtgggaacttcaacccactcggccaaagtaccaaaactacgacgtaaaccgtgaaggctgatatgtggtaactcagccagcactaatgctctgttgtgcgctgaacgcggctcaataattttgccacttttactgttacttctgaaaacccaaccctccttatttacgtcagaatttggggattgcgctagtacatttaacaattcagaaacataaggagtgagagggatgatacgttcaccttcgatcttgtctttaattcgcatgcttgaccatttgaaatctacgtctgaccagcgaagcgacgcaatttcttcacgccgagcaccagtgagcaaaagtacttggagataggccgatgcaataggattattgaggctacgcacggcactaaaccagctttttagttgttccttttgcaggcaatcatcagctttactcgctgacacgggaaccatttttcttacgttgtaatcttgtgccagatcgccaggaatgatcccttgatattttttctgataattactccatttgatgaaagcacgtagtaggcgataagcgtgagcagtgacggtaggtctattttgcctttctgtactcagccacgctgctatgtaatctggggttagctccgataacggcaggttgagcaaactagccaatggtccagccgaagtcgggccttggcctctttttttactttcgcctccacgactggacaagttaatgtgatcggcaatgtatcgagtagaatatgggcgtttagtttttgcactgataccggttctcaattcttgaagatagtcttcccaggcgacggagaaagtcacttttgttttacgtgattctgcctgcagggattctgcttctgcgatttttacagccttagcaattcgtggatctatccctgtatcgatcaatgtttgtaaccgtcttgcctcggctctcgcatcatcaatcttccagtcgttaatgttgccaatagtcatgcgaagggttttccccgcatatacgctttggaatacaaaggcttttgctccgctagttgctcggcatgccagggttgttacatctgcatcccaaagaaaagtttgttttttcccttccggtaaggtgaatctgcgaagtctttcgaaggtaaatttttgtcttgaaagcgccatttttcggctccagttgagaattgctgtcttacaataatgtaactgctggtgtaagtaaatggagggaataaacatcaacttttgttaatttcaatcaacgggtttattgctataacttggtgttttataatataaagtatgttgttttgattgattgctcaagtagttaaaaatgcattaacatcgcattcgtaatgcgaaggtcgtaggttcgactcctattatcggcaccattaaaatcaaagagttaccccatatttaaatacaccacgtttcctcctgtgccgtatttgtgccattgtaaccttggcaattcatcaaaatactgttctgacatcaggcagtgcaggtgcagacatttaagccaattgctgccgccattctttgacgtagtcaatcagggcgcggagctttggtgcaatattgcgacgctgtgggaaatacagatagaagcccggaaattgtggaagaaagtcatcaagcagcgatacaagcttaccgctttcaatatatggcctgaaagtttcctgagtggcaattgttattcctccgccggcaagagccagcctcaacatcagacgcagatcattagtcgtaatctgcggttcaatcgcaaggtcgaaagttctcccgttttcttcaaatggccagcgataaggcgcaacctccggggactgacgccagccgatacacttatgggtatttcccccggaggcgagaaagcactctccacgcccggccgcaaggatcaggacgacgggggcaggcatgaatcctcctcctgatggagacgtacagaggcgacttctgccagcacggagagtgccagagtatgcgcatcccgggctttggggaatatcccgacgggtgcccggatttgcgttgtttcctccctggaccatcccagctcgtggagcttttgcagacgtaacgtgtgggttcgatagctgcccaatgcgccgagataaaagggttttgcttctcgcgcggcctgcaacactggcagctcccggttgagatcatggcacagcaaaatgaccgccgtatcggtatcgatctgagcgctggctgaggccggaaaaagatcgaagatatggctgtcatagcctgtggctgctgcaagactcgcggttgcctgcgcctcaagagaacgtccgtaaatcatcagcctgacgcatggcctgaaccccacctcaaagccattgagattccagcccgtccgggtttgcgtgggcaggcacaccagcgattgtgcttgcggatcgtagcgcagccccaccggttttctctgttccaggcggttcagcacggcgagcagaggctgtgccgagcgtagtttatggagcgtcagcgtgatcccaccgccgcagggcagaacgatgtcaaaccacggcgaaccttcgccatagcgaatttcgcgatcgcggcctgagcccatcatctccagcgcttcaaaagcggcagcggcctccacgcagccgccagagacaaaaccgcagtaacgaccatcttcgcgcaccaccatctgcgccccgagcgggcgcgccgcgccgccgcgtatctccaccagcgtcaccagcaccgctcctttaccggacattagcgcctctacggcgaagcgcagaatggtccggtggtcatcggtgagaaacgcctgctctggcttatgccagtgttcgtctttgtcaaaaagcgggtatgacattgttcctccttaaaccacatccggcagcttatcgagcagcttatccagagtgatgggataatcccgtacccgaataccggtggcgttatacaccgcgttggcgatagccgcgctcacgccgcacaggcccagctcaccgacacctttggccttcatcggggaggatatggggtcggtatcatccaggaaaatcacctcctgttttgggatatccgcatgaaccggcacctcataccccgccatatcgtgattaacgaagtagcccaaacggtcatccaccgccagctcctccatcagtgccgcgcccatgcccatagtcattgcgccaatgacctggctgcgcgcagttttcggattcaggatgcgtcctgcagcacacacagcgagcatacgccggacccgaacttctcccgtcgcgctatgcacgccgacctccacaaaatgcccggcaaaggtcgactgctggtactctttgctcagtgttccgaattcaatgctctcttccgctgtcagtctgccgcctgcggtggcttcatgtagcgtggcgcttcgggtaccgttggtaatcttgccgtcggcaaactgcgactgctcaggatcaaacccgactgccgaggcaatcatttcgcgaagcttcatacaggcggcgtaaacgccggaggtggaggtattcgcgccccattgtccaccagaacccgcagaaaccgggaaactggaatcgccgaggtgaaccgcaacctgctccagcggtacgccaagcatttccgctgccgtctgggccagaatggtgtagctgccggtgccaatgtcggtcatgtccgtttctacggtaacggtgccgttttgttcgaggtgaacccgagcacccgatttttccagcagattattgcgaaagcccgccgcaacaccgtggccgactagccactccccgtcgcgcacctgtccgggtgtggcgttgcgctgcttccagccaaatttatccgctccggtgcgcaagcactcgataagctgacggcgagagaagcagcgcgtcgggtcggcggggtcaacctgagtgtcattcaggatgcgaaactcgacgggatcgatgcccgctttttccgccagttcgtcgatcgcgatttcgagcgccatcagaccgggggcttcgccgggcgcacgcatggcgttcccttccggcaaatcaagcgtggcgagccgcaggccggtatgacgattcgccccggcgtagagtaattcgctttgctgtaccgccgtttccggcgtgccgccgggcaggtttccagaccagctttcatgtgagatagcggtgattttcccgctctggtcggcaccgatacgcaagtgctgaagggtggcggggcggtgcgtggtgttattgggaatagaggggcgggggagcatcactttaaccggacgtttcaccgctcgggcggcgagggccgccagcagcgcatcgcttctcaggaacagcttgccgccaaaccctccgccgatatacggggagataatacgcacattctccacgggaactttcagcgtttttgccagatcggtgcggcaccagtcaatcatctgatttgaggtccagagggtaagcttatttccatcccagacggccatcgaggcatgcggctccatcgccatatggctctggtccggggtcgtgtaggtagcatcaatcttcaccgcagcggaggtgaaagccccgtcaaagtcaccgacgtttttgtcgggcgtgtcttccggcggctgattgacggcctgtttttcgtccgccagggagtaagctcctttattacggcgatagtgtgcctgcaccagcgaggccgccgctcgcgcctgttcgaaggtctcggccactaccagcgcaatggcctgatgatagtgctcaatagtggggccgcctaacagcctggcggtgtttttgtcgcctttgccgagtgccccggcgttactggcggtaatgacagccagtacgcccggcgctttttgcgcggcgtccgtatcaagggcggtgaggcgtcctttggcaatggcggaaccgacgatatagccataggcggcgttgggggcttcttcatgccattcgtaggcgtagcgtgccgtgccggtagttttcagcggtccgtcgatgcggtcatggggacgaccgacaaccttcagctgatcgatcgggttttcccctgcgggtttatcaaatttcatgcctgtgccctcgcttcagccagtacggaggcaagcgttcgcttcgccaacaggagtttaaaggtgttttcagcggtgggatgggcgctggcgaacagcgtgtcatatacggcctgcgccccctgggatagctgagcatccgcagcctcaatgcgccagggcttatgtgctactccgcccagcgcgacgcgcccgctgccgtcaggctgaataatcgccgcgaccgataccagggcaaaggcgtaggaggcgcgatcgcgcaccttacggtagatatgttttccgccgagcggtggaggtaacgtcaccgcaacgataagctcaccgggaagcagggcggtttcaatgtgcggcgtttttcccggagggtgataaaaatcagccagtgtgatactgcgagtctttccctccggcgtgatggtttccaccaccgcatccagcaaccgcattgcgaccgccatatcgctcggatgggtggcaatgcaggcttcgcttacgcctaccaccgcgtgctgacggctaaagccttcaagcgccgcgcagccgctcccgggcaggcgcttattgcagggctgattggtgtcgtaaaaataggggcagcgcgtgcgctggagcagattacctgcggtggttgcctgattacgtaactgaccagacgcgccagcgagcagggcgcgggagagtaccgcgtaatcacgacgcacgcgctcgtgagccgccaggtcggtgttccgtaccagtgcgccgatgcgcagcccacccgcgtcggtcacttcaatcttatcgagcccgaggccgttcacatcgataaggtgggtgggcgtttcaatttccagcttcatcaggtccagcagattggtcccgcccgcgataaattttgcgccgggtacgcgctgagcgctaagtgccgcctcggctggggtattcactcgttcataggtaaacgccttcatgattttatctcccccgcagcatcttcaatggcggcaaggatgttagcgtatgcaccacagcgacagatgttgccgctcatacgttcacggatctcatcggcagttgtttctggagcggaaaccaaatcgaccgtgacgtgactgggaatgccgtcctgaatctcttttagcaccgctactgatgagcaaatttgcccggaggtgcagtagccgcactggaagccatcatgcttgataaaggccgcctgcatggggtgaagattatctggcgaacccaggccttcaatggtggtgatctcggccccctgatgcatgactgcaagcgtcaggcaggcattaagcctgcgaccattgaccagcacggtacaggctccgcactgtccgtgatcgcaacctttcttggtaccgatcaaatgcagattttcacgcaaagtgtccagtagcgtggttcgggtatccacctcaagctgctcggttttgccgttcaccttcagtgtcaggggcattatctctggcgcgggtgtagctgccggaacgcttgccgccagcgtagaatgaggataaaccacggcggtcgccgctgttgcggcgctcactttaatcagatcgcgacgggtcaaacttaaatcgtgcggctcgtgcttcccaacccgattatcttcggggtattcgccttggttgctcataccaggcctccggtattctaaaggggaaaataagagtgcgttgcgagagtgctgatgcttttttaaacgttaagcatagtcggcgacagcaggaggattattcttaaaacgcgaatgcagctatgagcccggctaataaattcatgttcgccgggatgttgatgatgatgggagctggtttattgctttagttgtacgatgcaaaaaccaataaggaaacctgtgattttcagctctacatcaccctgcaaatctctgtcacttctaatataaaaatagggagaaatgatggagcttatattcattggcgattaggaaactatcttgttatacaaaacaatacagttctttacatttgccttgttttatgaatactcctgaagaggtgtataacataatggtacaagcagggtagatatgaatatatttgaacaaactccaccgaaccgcagacgttatggtcttgctgcattcattgggctgattgctggcgttgtttccgcattcgtgaagtggggggctgaagttccattgccgccacgtagcccggtggatatgtttaatgcagcgtgtggcccggaatcattaatcagggctgcaggccaaattgattgctcgcgtaattttctcaatccaccgtatatttttcttcgagactggttggggctgacagatcccaatgcggctgtttatacctttgccgggcatgtctttaactgggttggtgttacgcacattatcttttcgatagtgtttgctgtcggttattgtgtggtcgctgaagtatttccaaaaattaaactctggcagggcttactggcaggtgctttagcccaactttttgttcatatgatttcattccctctcatgggactgacgccacctctgtttgatctcccgtggtatgagaatgtttctgaaatttttggacatttagtctggttctggtctattgaaattattcgcagagatttacgaaacagaattactcatgagccagaccctgagatccctttaggctcaaacagataatgcattgaatgataaaaatggcgcaaatacagcgccatttttataggttaaaaacattgctttttatattctgatgcagatagtcagtgagtatatcgcgctacttcaggatgatgtagatccgaagaacgctacagaagagaggcattgttgctggcaaatagaagaagtatcgggttttgttacccctgaaaaacgaagccccgctattatcgctggcggggcagtgcaattaattattgtatgtttataacggtgtcagcccgtatttagcccttgcacgattgcaagcctcattgacgactccgttctcaccagacatggcgaattctctgcatgtggacgatcgatttttatatatcgtgcagcaggcatttttgcccggggttcctgcaagggcaatacatcgggggtttttctgattggtaccgctcatgcatcggtgaaaaggggatatttgttcagtgagcctggcgggaatagtaccgccagcatcgtcggcttcggcccagtaaaaagagacgcggaaaaatgcacaacaggcaccacacgtcatgcatggattcagattgctcataattcaccagtacagctaaaaatcgtaaagagaacagcggtacatcgtatgtaagaacgtaccgcggttggctggggaactttcgatagtgtgagtattgaatgatttccagccgttaccgattttacgtactaattcgtgattaaaccactcgttagcaggctgcctgatacctttccgtgtctcctgaacactatggtgtgcatatgagaaagcccatcgttacaggtgatattgacgatcgcttccacatcatttaaacgatttttggggctctgaggtggaattcttccctcgaccgatggataagtcttagtccgccgaagggggcttagccggacaggaatcgctaatcttaatgaatttgtcgttatagaccagatagtgattccccggctgacgtaactcaggctgatgaaccacgtctcccggacgtagataccaggcatcgccttcctcttcggtcgaatcacatcctggcttaatcagtagcttaaaccatgtgttgccagtgttacttaccgttcctgtcaccttgtcgaaggaccatttaaactgaacctgacgtggtcgtactaccagaatggtatccatcaccaccaccggctccgtgctgaccacgccgccggttgggctgcgtcttgtatggttacgagtggggacctcgcgaaatgagacccggtagtagcgctcgcggttatcccgtggaccatgatagtaaaatttaaaatactcgctctcaccagcctgcaacgccagctggcggggggcgaaaagcagttcaccatccaccggtcgggtgcgcaattcactgctgcccgggctatcaatagcactgatggcaatacggtatatccgtgcgcttttgttgttattcactacacgtttgctgacaaagtcagtctcggacggcagcgaaaatgtcagattgccgaccgaaatcgcctgtgtcaaaggtgccgccagcatacagaccgctgtcagcagggccttagttaatgttacgccacgtcgcctgaacatgaatctctcctgaagcgctgacttcgccaaaccagccgttatcatctaccgtacgcagcgaaatggcgttatccattggaatcgaaaatttgactgtggtcttatccatctgccccacttcgccagagatatcagtccacggtgtggtcaaccacagcgcatcggtcatatcccgccagctatcatcgcacccggcatcgtaggtttttgtagctccgttgcgggtaataaaggaaagtgtcgccgggaacggtactttcgccttaccgtcatcggagctgaagacacaataggagcgcccgccaatcacctgcgcgggtccggtcaccttgatcagcacttcgtcggcagctgttttaccgctggtggttacgatatagccgaaatcgagtgccgactcgccgctgccaacatatccctcccgcgacggtgtctgagtatattcatcggagataatactgatgctgaaatcacggggtttgataatcagcgtgttggaggtagaaaattcataccagccagactccggtgatgtggtgttctgaaagcgaaagttgaatagatctttggtgttgatatcgctgatcccgaggttcaccatctgcttaaagaagttgctcgagaagaaaacatagatcgagtctgcgctcttcatctcgttgaaggtgtagtaataggcggtattgctcaccggtttccatgaactgccattcagactgaactgcatatcgtacgccccgacggccgaggctaacgacgagttggcgatcgccgggaatatatggattgaggtgttgctgagtccgtttgtttgcagggtatagttaaccatcttacaacttaatcctgaacggctgccgatggtttgcgtccggcagtcggcgttcccttcgcccagagtcggtactccgtcgctgttgataaatacttccgccagcgagtgggtatttatcaaccgtagatttgctgctttcgtatgggtgacgttgcgaacataccagttgccggaggcctgatccttacagcgtgcgccgctgctggcgtcatagttcacagaggtctggcaggcattgatggtcattgtaaagctgctgccgacgggcatttgttgcatatactggtaaaacgcgtctgacaacatgccgtgcatccacttcgcgccgccgctggtcaccgtcgcgccataaaatccactggcgtcggtggtttgcggcaggataagactggtggtcatattacacccagcgtaccagttgatgcagcgcaagccagttaaaggagatgaaactggtgaattttccagccacatatcaaacttccagttggtataaaggccggtgttgtaaccgttatcaatgtagccgaggctttgctgatagatggttcctgaaccagtgtattttaaaccggtccagcggttggcaccggtcaggcgcggatccagcgccccgccaggagtgacgaaaaagttgtcgtctgagttgttttcgacaaacacaaactcgcgtgccggtgcatccgcccaggttgttttgctcactgccgctctgagcgcagttactggccagattagcgcgaaaattatcatcgttattagtaggttaactctcattctcttctcctgtctgcgtcaccgccgcccacgatgagaggccgctgcagaccacatcaccgacccagacggcaccgcgcgcctggttgagttccagagccacttcgcaggttttattgccactgtagcgaaaatcgatagtggggtatttcttatccacgtccatgacaaactcgccgttttcatcggttcgggttcggccgatatggttgttaatccgtgcgttagccagcagtgtgccgtcttccgcacggatacgaccggagacggtaaccatctgcttcacctctggctcaatgacagcgacattgcctggatagagagtcagacgacttttgcggccgctgacgatatcgtaactgtcgagtgagtttttgctgttctgtaactccacctcatatcttccatagggagagagcgggagatagttacgcttgccgttaagcgggaaaatccgcccgttgattttggcgctgatctgaccgtcgtcctccagcccggtgttgaatatcaccccagcgttgccatcagtccgcccgctggcagcaatgtttttaccctgccagccgacgctgccattggcggtcaagttggtattgacgtagccgtccgccgcgctattgacgttcagcgttccgctggcgtaacgagcgtcgaattgtgcatacgccccgccgctgagggttttgtcatcaccggtatcgccggagatggcacgtgacagattggcaccaacagtgcgaatggttccttcatcaaactgtttgcgtgctgacaggtttgccatggtgtagccgttttgatgagtcatccctgcgctaaaccagttgcccagtggtagcgagagatcgagagcgatatattttcctgtattggcgttgctgtcgccgttgttatagcgctgaataccggcccgcaggccaagcgaaccaaaggtaccgctgtagacattttgatagtaatctgccgtgtaataatggctgttgtaacggcggtcatcattgtagctgatgctgaatgtgcccagcttcgaccacagtgagttcaggttgagtgtgccgccgattgcacggttgtcggcatcgctacgtcgcaattgattgccaatgcgggttttttcctgattaacccacagcgaactaaagcctcccggtagagtggcgctgatgctgccgatgctgctccatgagctgtcactggccagcatattttgcaggttaacgttgatcgcccccccaagcggcagcgtcagacgggtttcacccaccgcctgattatcgtatccatatcccgttgccgcccagctaagcgtactcaatgagccggaggtcgaggcacctgctagccaactctctttagctggtcgcgtctttttcccgttttccgaccagcgatccatatgaaagctaccgccccatacctgccacgccagtggtgcaccgacgccgcgcccccggctaaacagcttattgacccgctgggtgcgtttgctgatcacgcgaccgttaacgatcacctcaacttccacatcgtaaatcccgtacggtagaccccgggtatccacttcatgattgcccatagtgaagttctgaacgcttagtagccgcccatcacgggtgagatgtacttcgcccgccgccggtaaaaaggcgatcactggcgtggctgactggctgctgtcgaagatggtggagctggcctggtttccccaggaaaggccgtaaatcttccctgctgaaatggcggtcatcggccctaaggactgcaagttccaggtgtcgagcattccaccggcaaatcggtgaccggcaaaatcgcgttcatacatcgctttatataattcactgtcctgttgaccgctaccgatcccgtacagcgagccgtcgagcaccacatgatgttcgcgcagtgcagtaacgttattcagcgacagatagctggatgtgttgctcccgccgttacgcaactggttgttatagacgcccaagttatagctcagattactgctgagggtgttaacactggactgcccgatgtcttcgctacgtgagcgtagtacggtgcccagcgcttcgcgcttgaccactagctgcagcagcagttggcgcaagctgagatccagctgcgcgttgtcagtcagggggatggtaagggcctcattgaacggggcgttggccagagccatcagctgctgtcgagtttgttcgctgacactggcgttatcttcactctcttccagctgtattttccggatgcgtagctgtccatcgtccagccagataaaagcgctgccgattcgctgatcgtcctggcgaccctggctaccggcgagatgaatatagagcgggacgctcatgccgtcctgaagcgcctgactgaaggcctgcggaataatcaccccacctatttgctgcgcacttatgtcagcagcgctggcatcgggctgaacgaacaaaaagaccatgccgaaggcaaactgggctttcagtcctggggagaaccgtcgtaaaggcattgtcgttatccatctgcacagctatctatttcacgggaatgaacttatcaccctgccaaagtgcaacccgtcctttgttatccgcagtgtccacgcgggtaaaacgacgcgacttgcccggcatcaggtagtaattctctttacactccttaccgttggcggctttcaggcaaggtccgtaggcgaggatccgcagcgtcgcatttcctgtatttgtcagggagccgttggcgtactgaaagtggtagttcgcctgacgaggggcgacgaccagaatggtgccgatgcgggcggaagcagtggccacagcgctgcggttggcattatcgcgctgcgcatcactgagggcctgatcaaaccagacaatgcggtagtagcgctctttttcatctgcgggtcccttatagaagaagcggatcacttcgctggcttgggcgggtagcagcaagctggcgggagtgagtagcaactcatccggcttgtccattgagataacctgcccgtcgtcaagcggtgaagagagccgttcgagacggatattgataaggcgaccactgtcggtactgtttttgatcgttttgctcagcgtgctgctgtcactgttcataaacgatgatatatcgccgacatccagcgcctgggccggagatattccggaaaacagcagagcgagaggcagaaggtgctttttcataacaattccgtccaggaataaagcaggggggctacccctgctggtacatcagagagattaactggtccaggtcgcgtcgaactgtacgctaacgtcgccgctccagatgccttccggtagagtgctgtaatctgttactgcggtggtaccattggtggtaccgctgatgatggagaaggtgaaaccatcctgtgcggtggtacgattgctggcattgtaaccgttagccagcgggctaaggttgccgcccagtacgccgttggcggtatcgatcatcacggtatcgccagttttttcgactgccgcgccgttataatccacgcccacattcagtgtggaacctgaggtatccaactgggttaatgtgttggtgataagacgtgaggtcagtttaaaggcggtagccgttgagtcaccctcgatagccacgtcaaatagacctttctgtgagttaaaacctttaatgccttcggcatactggaacgccaggctaccgagtggcgtcacaaccagcttactggtggtgtcttttttggctgttgccgaccaggtcgctacagcctgagctgttacgtcagcagcctgcgccacacccatgccggtaaacaccgttaccagagctattgccagaaccttttttttcattgcatttcttcccgagttgaattgaggacgtgatgtcccagtgagtcattttttaaaactaacttgcctggagtttactgaaccaacttatatatttttgagtacagcttggcctcagcattacgccgatgggtatacactgtcttcacactacaattttcaattctggcaatcgatttaggttgcattccctgggccgtcatgcggataatttccatttcccggtccgtgattttatctttcttaatatcttttctcaggaacctgccattaatcacatagaccagttcttttctaatatcacgactcagtccagcgtataccacgcccctaatattgctattgtaataccaataatttgctaaggcctctgactttctggccgcaatcaatacgacctgtttcccctttaccgcggataaccattcattatcacggtttataaattcagataaagaatccgtactgagattgataaacacgaaatcttttctaattttctccaacgatagataaattaatctgtcgatatccacaatcagttcagatagtcctttatagaagtaggcgtcatggggagaccagatgtatttatcagaacggttttgacattccatatggtttttaacctcatagtccctactgtaatcactttgccatgtcactactttccaaacctgtaatttttacaggtgcattcagtttccttagtaaaccggaagtaaataagatacgtagtacatatcaataaaggttaaacgagattaagtttaattattttcgattgggcttaaatttatgttttttttcccgatgagtgtcaatatgtgaacggaaaaggaattcaatggttaagtcaatatttagaaaaactgaaaatattgcttttttgataagaagaaaaagacatttggtttcataaggttattggcaatataacgttcaattcttacttgcattttatattggtcaggaactttgccctgaagtgttaggaatagtcttaatgcgctgtgtgatggactagtaaaaaaacaagttttaagggtaagggatagaatataaaactatgatgagctgtcattgaagatgatttgccaatcagtaagatattttaatggattaacatgccgcacaaaatggttacaggtgttcattccaataagtaatggaaaattgaacgggcgtatgtacgtcatctgttcggtaagcccccaagagccagattaagtgaagttaaacgaaggctgccagctgtcacaggaacgatggcctttttgtcagggcactgcattcagttatctgtgcgcgttactctaactggcactcgaacgtcggcgacggggttaccggtggatcagactgttcctgtggcgtaaacgtttttatgttagtaccaacagatttaccacatttatcatcttaacagtttgagtgaaaatgcaggctgcgccgcaaagggaggagactgagtggcgtgttcagtctaaaagagggttgatgccagcatacaggggcgaagctggtcaacaagtcaacattaagataatggaatattcggagagaaacgtcaggcagttggcctcaaatgaacaggaagaatatatccccaggaaaattaatgttggtgttataaacacaccaacattaatccgatctgattattaatcagacaaatatcgttaatccgtcgaattttgaatcaacgttttttcttacgaccctgaacggccttaaaacgtggattagatttacaaatcacatatagccgtccttttcgcttcacaatctgacagtctggatggcgttcttttgcggtacgcagagagttaagaactttcatcacgccccctttttcgtgctaacaaaacgaccaaaacgttgggtgaatcgtgcaacatttccttctgatgccactgttctcagcttccctgtatagaacgggtgcgatttagaagagacatcaattgtcacgtatggatacgttacgccatccagctcaatctcacggtctgttttgatagtcgagccgattttaaagtactcatcaacactggtgtcgtggaacaccacagtacgatactcaggatggatattgggcttcatcatttttacctgttatgttataacataaccataaagatacatgctcatccggatcatttcaacactcaatccctgtgactctttgtggatgtggaattttcgcaacggggaactctggcattgttagcagccattggtgacgctcccataaacgcctggatgagtgattgatgatggttttgctgagagtatggatttttcgagaatggaggttatctccactttactggccgataatttatcgcagtatgattgattacctgacagcgtgtattcctctcccacggatataataattacttacaaaaaagggagaggatgcatattttaaatatcactgaagtgaacagtttatttccgttattaatagaaatggagaaataaataggcgtattctacaattgcgacaaaaacaacgatattaatcagtttatgactgatttgctgtactttattctctttcattggtacttcctcgctttaaaaaagagtgcacttcgtaagtgcccttatataaataacgagtttggtcaaccaattttttgacatgtatcacaaatttgaatagatgtattacatcaactatcttttattgcaccaacgtcattgatatatgtcgcctgaagtcagttccgggaatgagtctgatctcaagactggcccagtccgggcgttgattggtgctgaggagcatatcgcatctcatcataatgtcgtatctcctggggtgttatacaagatatcgttgttggtgacctgggagaggaattgagttctattaaaccgtcaactatgccggatacatactggattacactgcaggcacgccttatgagagaacgtgccgcagtgacgggttaattatctgaaagaatttgtgaggctgtatcggttactcattgatttgatagttttactctcgggagaataatagatatttaatccattaacggaaaccagccagttcctttcgatgcctgaatttgatcccatagtttatccggaatggttaattcatgaacaagttgtgttatcgttcatgagaagcataacgtaaagggaaaagctcgattagacggcagaatttgtcaggggttatgaacgaaattcataaatctgtttgagtgttgcgatgggtagtgcaagttcgatatctccgcaatttacagtccgatgaaggaaaatgaatatccataaaaaatatattggtttatcctggcatatatacctatttcgacgtatttccaatagttttaattaaaggcaggtcattgttattcactctgaatagtgaattattcactgtccgcagagtaagaaatataacttaggtatctatttaatgacttgcacaaaaagctaaattttcccccataaataaaaatataatcccgcgcccaaccacctgatgagtggctataggcactggatatattaggtggcggtgcactttcttacataaaggtatttccttttctgcggaaaaggaaatcgggaaatccccggtttttctgacaagcagacgccattatttgtgtctgcctatgttcgttaattcgttcatcaggaaattatctcaatgtcacattataaaacaggtcataaacaaccacgatttcgttattcagttctggcccgctgcgtggcgtgggcaaatatctctgttcaggttctttttccactcgctgtcacctttaccccagtaatggcggcacgtgcgcagcatgcggttcagccacggttgagcatgggaaatactacggtaactgctgataataacgtggagaaaaatgtcgcgtcgtttgccgcaaatgccgggacatttttaagcagtcagccagatagcgatgcgacacgtaactttattaccggaatggccacagctaaagctaaccaggaaatacaggagtggctcgggaaatatggtactgcgcgcgtcaaactgaatgtcgataaagatttctcgctgaaggattcttcgctggaaatgctttatccgatttatgatacgccgacaaatatgttgttcactcagggggcaatacatcgtacagacgatcgtactcagtcaaatattggttttggctggcgtcatttttcaggaaatgactggatggcgggggtgaatacttttatcgatcatgatttatcccgtagtcatacccgcattggtgttggtgcggaatactggcgcgattatctgaaactgagcgccaatggttatattcgggcttctggctggaaaaaatcgccggatattgaggattatcaggaacgcccggcgaatggctgggatattcgtgctgagggctatttacccgcctggccgcagcttggcgcaagcctgatgtatgaacagtattatggcgatgaagtcgggctgtttggtaaagataagcgccagaaagacccgcatgctatttctgccgaggtgacctatacgccagtgcctcttacccagcaatagtggacacgcggctaagtgagtaaactctcagtcagaggtgactcacatgacaaaaacagtatcaaccagtaaaaaaccccgtaaacagcattcgcctgaatttcgcagtgaagccctgaagcttgctgaacgcatcggtgttactgccgcagcccgtgaactcagcctgtatgaatcacaactctacaactggcgcagtaaacagcaaaatcagcagacgtcttctgaacgtgaactggagatgtctaccgagattgcacgtctcaaacgccagctggcagaacgggatgaagagctggctatcctccaaaaggccgcgacatacttcgcgaagcgcctgaaatgaagtatgtctttattgaaaaacatcaggctgagttcagcatcaaagcaatgtgccgcgtgctccgggtggcccgcagcggctggtatacgtggtgtcagcggcggacaaggataagcacgcgtcagcagttccgccaacactgcgacagcgttgtcctcgcggcttttacccggtcaaaacagcgttacggtgccccacgcctgacggatgaactgcgtgctcagggttacccctttaacgtaaaaaccgtggcggcaagcctgcgccgtcagggactgagggcaaaggcctcccggaagttcagcccggtcagctaccgcgcacacggcctgcctgtgtcagaaaatctgttggagcaggatttttacgccagtggcccgaaccagaagtgggcaggagacatcacgtacttacgtacagatgaaggctggctgtatctggcagtggtcattgacctgtggtcacgtgccgttattggctggtcaatgtcgccacgcatgacggcgcaactggcctgcgatgccctgcagatggcgctgtggcggcgtaagaggccccggaacgttatcgttcacacggaccgtggaggccagtactgttcagcagattatcaggcgcaactgaagcggcataatctgcgtggaagtatgagcgcaaaaggttgctgctacgataatgcctgcgtggaaagcttctttcattcgctgaaagtggaatgtatccatggagaacactttatcagccgggaaataatgcgggcaacggtgtttaattatatcgaatgtgattacaatcggtggcggcggcacagttggtgtggcggcctcagtccggaacaatttgaaaacaagaacctcgcttaggcctgtgtccatattacgtgggtaggatcataaagtcctcgggtcgttgtccactcttttggcatgtcagcatattcacataccgtaccagcaaaagtttcaaccgtgagcaaatcgaccgattttgttgacggttcaaacgtggaaacgaaatagatatccgtcttaaaattcttcatacatctggctaaatgatgacgtcgtagtttgacttcttcatccggtgatttattcgacacttcaatgtcatatttaaatgagttgccaaaaataggtgtctcaggaaagttgattaatctacactccgtcttttgctgttgacgtattaaaaaagaagggaagatatttgcgagatcccaataatcacggtggcggtattcacggggagagcagccgaataactttttaaattcgcggctgaatgactgctgtgaatcaaaatgcaaagagagtgcaatatcaagcatagatttcgcggtgagccggacaagaatggcggcacgacaaagccttcgtttgcgaatgtattctcccaaaggcacatgcatgaaatttcggaacagaagctggatgttgcgtctgctgtagccagatttctgtgcgatatcttcgattgaaatagggtgctcaagattgcactcaatccactccaggagctgctgtagaatcttctgcctgatcatctcattctccgttaattctttgtcatatcgcacattttcgttataccctgggccctaagtgtatcaaaaatagcaagggcgaaggcaaaagcactggtagcgtctgcttcgttgtccccgaaaatagagaggtttcagtcctacattattaatgaattttttgcataagtgatatcaaaatccacatactactttgaggttacgttttaacgtagactcattgttcatgcctaatggagggactgacagtggaattttccgtatagtctgcttcagagtattgcagatgcccatcaaaaatcgatttctcactgacagataaagaaatggcacaaattagttcgcttgatttgggttatgttggggagtcggtaaaacattttaatcctgaatttgttcgtggttgtcttgctgtaaaaatacatgattgatattaatcatgtattttacctaagacgacaaaaaccttttaacagggagtgatattgatcttcactctgtcatatctccggtaatatggcgtcaggcttcatcatcagaaagggggcctgacgcctgaaaaagtgaacaacagacagtgttcggattatcaatattcagtttttaacgttgaactggattcattactgcgttgtttaagaatttcccgcgccgaatctgccattatcatgactgcacctgccagcatcagagtatctttcaataccaggcgaccagcaccggataaataagggaaaccatgatgagcgtcacccaatgcgggtacccatgcctccggggtggtgattaaaaatgagagtgttaccagcggcgtggtaaatgccatcagtcctcccaataaacctaaccagcgattgacaggattagccaaaaccagcagagcaataatcacctccacgacgccaagaccgttggaaaaaccataggtattattggccgtttgccatgcccttgcttctggtttgtattcgccttcgtgagtcagatactgtttatagtcttccgggtgttcataaaagaacgacattagtggactgtttgcgacgaatggtgtaatgctgtctgcctcgtaagggacaaactttaataacccaatccacataaaaacaattgcaatactcagacgaatcaatgtcaggccaattttatctccccgacttaacaggtgcaggtatttttccattgtgaacatccttatttatacaatactgctgttgcggttgaattattatcaattcgcatcgatgtgactttccaggatgaagcattatattttctggctatatcagcaatggtatcctccagaactgtcggtgatgctgatactgacgagacgctgatatgtttcagaattattttatcatctgcattggtggaaaatgccataacgccagataatagtgttgcaaataaaacagattttttaaacatataaaataccatcaatgaagtgattaagaagttatagagtaacagagaattaataagattcttttctctgagacgccagaatatttgttctggcgtctgattttgagtttatttgactaatgaaaatagatcattgagtgattcgctcatcgacggatgagtaaatatctgatcgcgtaatatgctataaggcagcccggcatccatcaccattttcactatattgatcatctcgtgggagtcaacacacagcagtgatgcccctaacatacgttgggttttattatcaacaatcgcttttaataccccacgagtatcattcatcactctggcacgcggaattgcagctacaggcaatgtcaccacctgaatatcagcaccactctctctggcttgttcttctgtcataccaaccctggacaggggcggtgtcataaatacggaataaggcacatttttccgatcatcagtactacgtttgccttcacccagtaactcatcacgtacaatgcggtaatcatccagtgatatgtaagtaaattgcagcccgccggtaacatctcccatcgcccaaatattgtctgcggtggtatgtaatcgcttgtcaacgacaattgccccgcgctcgtttactgcgataccggcattttctggatgtaacgaagcggtagccggttgacgaccggaagctattaacagtgcatccaccgccagttgggcgtgctcgctatgcacttgcacttgattttcatggtgactgattcgctccacatgggcattgaggataatatcgacgccctgatcgcgtaaaatcgtcgcgatattatcagcaatatcccgatcttcccgaggcaaaaacagcgaagctgcttctaaaatggttaccttgctgccaaaattagcgaacatagaggcgaactcaacgccaatatatccgccgcccaaaatacctaaatgcccaggcaattcttttagattaagtaatccggtgctgtcatatactcctggcgtggtggtaattccaggaattggcggaaccacggtttgtgcaccggtattaataaaaattttctcgccatgaatttccagatttccctcaggccgatgaacacgcaggctatgattattgataaactccgcctggccgtcgatcacgtcgatattgggcatatccgcaagattatgaaaattcttattacgtaaaaaattaaccacttcatttttacgctgtatggcacggacaaaatctgtgtgctgctgtgcgtcatgaaccaatgttttggttgggatgcagccgatattaatacaggtcccgccatacattgcatttgattgttcgatgagagccactcgccaacctgcttttgccagcgtgacggctaatgtttttccagccttgccaaaaccaataatcactgcctgatatttattcatgatgatttcctgtcgaaacgcgttcatttgacatcatgactatagacgcaaaagagcaaataacatttcttcacaacgcttgatattttgtcttatcgtctgatattttctttttcttaatcagaatcacaaaacaaaaatcatgattaactatttgatggtattagattagttatttactaagattgttggtgtttgtaatcaaaaaccactcaggagtctgatatggatgcccttagccgtttgttgatgcttaacgctccacaaggaacgatcgataagaattgcgtgttaggaagtgactggcagcttccacatggtgccggggaattatcggttattcgttggcatgcgttaacgcaaggagcggcgaagctggaaatgccgacgggggagatttttacattacgcccgggaaatgtggtcctgctaccacaaaattcagctcatcgcctgagtcatgtcgataatgaatcgacctgtattgtctgcggcactcttcggttgcaacattcggcgcgttattttttaacgtctttgccggaaacgctgtttttagcaccggttaaccacagcgtggaatataactggctgagggaggcgatcccgtttttacaacaggaatccagatcggcaatgccgggagtggatgcactgtgtagccagatctgcgctacattctttaccctcgcggtgcgtgagtggattgcacaggttaatactgagaaaaacattctcagtttgcttctgcatccacgtcttggtgcggtaatacagcaaatgctggaaatgccaggacacgcctggaccgtcgaatcgctggccagcatcgctcacatgtcccgggcaagttttgcccagcttttccgtgatgtttccggaaccacgccgctggctgtattaacaaagttgcgtctacaaatagcggcccagatgttttcccgggaaacgctccctgttgtggtgatcgctgagtcagtaggctatgccagtgaatcatcttttcacaaggcgtttgtccgcgagtttggttgtaccccgggagaatatcgggaaagggtcagacagcttgcaccctgaataaaaccgccagaaatcagggcaaagataatccgcattccgggagttgtgagcctttcaactatttctatttccaacggtggtttgggctttatatattttttctgatggactctagctcagtttttaaataaaaatgcaaactaaattgcttcaattaaataaaatcccgactattacttgatacgtgattattgtcggtgatttttttgtacaccatcagtgtatatctcaataacccctgaataagtagctctgaataggtataagggatgtagccatttttaaatggatttcttatgccaaaaatgatcgtcgatttccccataaaatgtgagcgatgccgaaagaaataaaattagttattgcatttgacgtttggatgaaagattatcatttgtcatacaaatgaggggtggtatgttgctagccaattaaaaaagaacgccatatttattgatgattgatcccccggtgggggggaaacatcgggcataaatgggcatgaagtaatggagtattagttgtgaatgtcaatttctttgtcacctgtattggtgacgccctgaaatcaagaatggcacgagactccgtgctgctactggaaaaactcggctgtcgcgtaaatttcccggagaaacagggatgctgcggtcagcctgcgatcaatagcggttatatcaaagaagcgattccagggatgaaaaatctgatcgccgcactggaggataacgacgatcccattatttcaccggctggctcttgcacctatgccgtaaaaagttacccgacgtatctggcggatgaacctgaatgggcatcacgtgccgcaaaggttgccgcgcgtatgcaggatctcacctcttttattgttaataaattaggggtagtcgatgtaggtgccagtttgcaagggagagcggtgtatcacccatcttgtagcctggcccgtaagctgggagtgaaggacgagccacttacgctgctgaaaaatgtgcgtggactggagctgttgacctttgctgaacaggatacctgctgcggatttggcggcacgttctcggtcaaaatggccgaaatatccggcgagatggtgaaagaaaaggttgcgcacctgatggaagtccgccctgagtatttaattggtgctgacgtgagttgcctgctaaacatcagtgggcgattacaacgggaagggcagaaagtcaaagtgatgcatattgctgaagtgttgatgagccgctgaggatataaagatgtcgatcaaaaccagtaatacagattttaagacacgcatccgtcagcaaattgaagatccgatcatgcgcaaagcggtggcaaacgcgcagcagcgtattggggcaaatcggcaaaaaatggtcgatgaattggggcactgggaggagtggcgcgatcgggccgcccagatacgtgatcatgttctgagtaatctcgacgcttatctgtaccagctctcagaaaaagtgacgcaaaacggcggtcacgtctattttgcaagaaccaaagaagacgctacccgctacattttacaggttgcccaacgcaaaaatgcccggaaggtggtgaaatctaaatcgatggtgaccgaagagattggtgtcaatcatgtgttgcaggatgctggcattcaggtgattgaaaccgatctgggtgaatatattctccagctggatcaagatccgccatctcatgttgtggtcccggcaattcataaagatcgccatcagatccgtcgagtgctacacgaacgtctgggctatgaggggccggaaacgcctgaagcgatgaccttattcatccggcaaaaaatccgcgaagatttcctcagtgctgaaataggtattaccggctgtaatttcgcggtggcagagaccggttcggtatgcctggtgaccaatgaaggtaatgcgcgaatgtgtaccacgctgcctaaaacgcatattgcagtgatgggaatggagcgtattgcccccacgtttgccgaggtagatgtattgatcaccatgctggcgcgcagtgccgttggtgcacgtttgacgggatacaacacctggctgacaggaccgcgcgaagctgggcacgttgatggtcctgaagagtttcatctggttattgtcgataacgggcgttctgaggtgctggcctctgaatttcgggatgtgctgcgctgtattcgctgcggggcttgtatgaatacttgtccggcatatcgccatattggcggtcatggatatggctctatttatccagggccaattggtgcggtgatttctccgctacttggcggctataaagattttaaagatttaccctacgcctgctctttatgcacagcttgtgacaacgtgtgtccggtgcgtattccgctgtcaaaactgattttgcgtcatcgtcgggtgatggctgaaaaagggatcaccgcaaaagcagagcaacgggcgataaaaatgttcgcttatgccaatagtcatccaggattgtggaaagtcgggatgatggccggtgctcatgcggcaagctggtttatcaatggcggcaaaacaccactcaaatttggcgcgattagcgactggatggaagcacgcgatcttcctgaagctgacggagagagtttccgtagttggtttaagaaacatcaggcgcaggagaaaaagaatggataatcgaggcgaatttttgaataacgttgctcaggcactgggtcgcccgctgcgacttgaaccgcaagcagaagatgcgccgcttaacaactatgctaacgagcggcttacccaacttaaccaacagcagcgctgtgacgcgtttattcagtttgccagcgatgttatgttgacgcgctgtgagctgaccagcgaggcgaaggcggcagaagctgcaatacgtctgtgtaaagagctgggagatcagtcggtcgtgattagcggtgacacgaggctggaggaattggggattagcgaacgtttgcagcaggaatgcaatgccgttgtttgggatccggcgaaaggtgccgagaatatctcgcaggcagagcaggctaaagtgggtgttgtgtatgctgaatatggtttaaccgaatcgggaggcgtggttcttttttccgccgccgagcgcgggcgttcattgagcctgctcccggaatattctctttttatcctgcgtaaaagcactatcctgccgcgtgtagcgcaactcgcagaaaaattgcatcagaaagcgcaggccggtgaacgaatgccttcctgcattaacatcattagcggccccagttcaacggcggatattgagcttatcaaagtcgtcggagttcatggcccggtgaaagcggtgtatctgattattgaggattgttgagagagatatgaagtctggacataaacctgaagaaggcatacgaggttgaaaatagcgtttaggacaacctgacttaaccccgttccgtcatggttatgctgctcttctgtaaatatcctggtattaccaatgccaggatatttacagtgaaaaagacaggcatccattcctgaaaacgggttcccttcccggtcattgtcacttcagctttatacaggcactctctatcagaatgttgtttattactgcccagagttttgttggtattcatctaccatttttttgacaaggcaaaacattacagaaattacaatgcttagaaaaaatcccagagccaggcaaatggcagcagggtatttattttttatttctggtgagcttatagttacacagccatcaccgttcggatacaatgaccagttcctggtcaggtatatcatttttgtataaagctcactgttaattgctgaaggcgtttgtatctcatcgagaacttgcctgccattatgatattctgacgcataccatttgataatagaggcctgcacgcgagatatttcctcttcagcagttggtaaagctctcttatctcctgaccattccagccttatttctctgttcttgacatctgggctggtgtgaaaaaatgtagtaattcgctgaataacatcttcagtcattgtagtctgacaggcaaaattattattgctatcacagctaacaagtatacctggcgttgtctggtttatttttaggctgtaaatcacttttatattgtctttattgatatacagaaacaacagcaccatagccatacatatagccataataaaaaggataacacgaatctttttcttcagataaaataaaatctcaatcagatcgatatcctgtttgatttgttcacgcataatatatccagagaataaaatctgtcgcagataaggttgtattaatagtctgtatcaggaatgttcgggttaaatatcagcaaaaagcccgcatcatgaatactggatatgaagcatgagagttacctcagtgtttatataaggattcggtccccctctctggaacggtaactctcaatctgatcggttcctgcgttagttcacatcacgactcattttttcgctctcaccggcatcccatttgccacaaaatatcccgccgtgctcctcggcagcgcttcctgtccacgaatcatatccgctattttctcgccaatcataattgtcgtggcgttcaaattcccggtgataatctgcggcataatcgacgcatccaccacacgcaggccttctaacccgtgtacgcggccttcgccgtcaaccacggacatctcgtcgtaacccattttgcaggtaccgcacggatggaaggcggtttcggcgtggttacgcacgaactcatcgagctgttcatccgtctggcattcgacaccggggctgatttcgcggccacgatactgatccagcgcgggttgatgcatgatctcgcgggtgatgcgaattgcgtcgcggaactcctgccagtcctgctcgtgcgacatgtagttaaacagaatcgccggatgctggtgcgggtcgcgggatttaatccgcacatgcccacggcttggcgagcgcattgagccgacgtggcactggaaaccgtgctctttcactgcattcgagccgttatagttaatcgctactggcaggaaatggtactgaatattcggccacgcaaattcctcacggctgcgaataaatccacctgcttcaaagtggttgctggcaccaacgccagtgccgccaaacagccactccgcaccgattttcggctggttccaccactgcagggcagggtagagggaaaccggttctttgcactcatattgcagatacatctccagatgatcctgaagattttcgccgacgccgggtaattcatgcaccagcggaatatcaaactccgccagcagttcagcgttgccgacgccggagcgttgcaggatctgcggtgaggcaatcgcgcctgcacataacagcacttctttgttggccgttgcgcgggttgggatggtgctgtcgccttccagccattcgacgcccaccgcgcgtttgccgtcaaaaatgatgtgatcggtcatagcgtgagtacgaatggtcaggttaggacgcgatttggcctgatcgagatagccacgcgcggtgctggcgcgacggccctgcggcgtgacggtgcgatccatcggaccaaaaccttcctgctgataaccgttgagatcgtccgtgcgcgggtagcccgcctgcacgcccgcttcaatcatcgcttcaaacagcggattgacgccgggtttggaggtagtgacgctcaccgggccatcaccgccgtgatagtcgttttcacccatatcgcgagtctcggccttgcggtagtagggcaggcagtcgaggtagctccagttctccagaccgggttcttgcgcccagttatcgagatccagcgcattgccacggatgtagcacatgccgttgatcagcgacgatccacccagacctttaccgcgtccgcactccatgcggcggttattcataaacggttcaggttccgtttcataggcccagttgtagcgtttaccctgtagcgggaatgccagggcagcgggcatctgggtgcggaagtcaaagcgatagtccgggccgcccgcttcaagcagcagcacggaggtattcggatcttcagtcagacgggtagcgagaacgttgccggctgagccggcaccaataatgatgtagtcaaattgcaaataaacctcctggttagaatatggactggaatttagccatctcaacctggatggacttcacctgggtgtaactctggagcgtcatcacgccgttctcgcgaccaatgccggagtgtttgtagccgccaacgggcatctctgccggggattcgccccaggtgttgatccagcaaatacccgcttccagctgatgaatgacgcgatgcgcgcggttcaggtccgctgtcacgatgcccgccgccaggccgtagtcggtatcgttagcgcggcgaatgacttcgtcttccgactcgtaggtcagaatggacatcactggcccgaagatctcttcacgcacgatggtcatatcgtcgctgcaatcggtgaacactgtcggtgcaacccatgcgccgttatcgaagccatcgcctttcagtacatcgccgccgcacagtacgcgcgcgccttcctctttgcctttggcgatatagcgcagcacgttatcgcgatgcgggaagctgaccagcgggccgaagttagtttgcggatcgaaaacgtcgcccgcgcgaatgcgctcaacgcgcgccagaattttctgctcaaatgcggctttgcatttcgccggaacgaagacgcgggtgccattggtacacacctgaccggagctgaagaagtttgccatcatggcgatatcggcggcgagatcgagatccgcatcatcgaaaacgatcagcggtgatttaccgcccagttccatggtcacttctttcagggaagaggccgccgagttagccatcacttttttgccgctggcgacaccgccggtaaatgacactttggcaatgcccggatgctcggtcagatattgcccggtctccgcgcccacgcccggcaacacgttaaatacgccgtccggcaggcccgcttcgctgtaaatttcagccagctttaacgcggtaagcggggtaacttcgctcggtttgaaaatcattgcgttgcctgccgccagcgccggggcggatttccacagggcaatctggatcgggtagttccatgcgccaatccctgccactacgcccagcggttcgcggcgggtatacacaaaggacgtttcacgcaacgggatctggctgccttccagcgccgggatcagcccggcgtagtactccagcacgtccgcaccggtaacgatatcgacggttgaggtttccgaatatgcttttccggtgtcgagggtttccagttttgcgagttcgtcattgcgttcacgcagaatatcaacggcccgacgcagaatacgcgagcgctccatggcggtcatcgacgcccagattttttgcccctgctgggcgcttttcacggcgcgatcgacatcctcgcgcccggcggcctgcacggtcgccagcacgttaccgttggccgggttaatggtctcgaaggtgcgaccgctggtggcggaggtataaccaccatgtatataaagctgctgttctgccattcgggacatcacgtctcctcggttaatcggtgggtagatgctgagtgataaagtggcgggtcagggaattagcgcgggttttatccagcggtttgccgctcagagccgcgcgcagccataatccatcaatcagcgcggccaggccgtagcccgcttcctgtgcctgttcgcgcggcaattcgcgacgaaactcgctcaccagattcgacagcaagcggcggctgctgacctgctgtaaacgatagagcatcggctgatgcatactgctggcccagaacgccagccaggctttcatcgccgcactgctcacctgcgtttcatcgaagtttccgccaacaatcgcctgtaatcgctgctctgcactgccctgcggaagtgcatgtaatcgattcaaaaccgcgtcacgcagctgactggtgatatcgcgcatggttgcttccagcagaccatttttgtccctgaaatagtggctgatgatccccgtagaaacgcctgcacggcgggcgatctgcgcgatcgttgcatcgtgcatgcccacttcatttattgcttccagtgtggcgtcgatcagttgtctgcgccggatcgactgcatccccaatttgggcattttcgccactccattcatcagcggtgtttatctattaaagcggttattgattggacgttcaatataaaatgtgtcttaattgttacgaatttgattttaaatagtaacaataacagtggggatactggatgacagacctttcacacagcagggaaaaggacaaaatcaatccggtggtgttttacacctccgccggactgattttgttgttttccctgacaacgatcctgtttcgcgacttctcggccctgtggattggccgcacgctggactgggtttctaaaaccttcggttggtactatctgctggcggcaacgctctatattgtctttgtggtctgtatcgcttgttcgcgttttggttcggtgaagctcgggccagaacaatccaaaccggaattcagcctgctgagttgggcggcgatgctgtttgctgccgggatcggtatcgacctgatgttcttctccgtagccgaaccggtaacgcagtatatgcagccgccggaaggcgcgggacagacgattgaggccgcgcgtcaggcgatggtctggacgctgtttcactacggcttaaccggctggtcgatgtatgcgctgatgggcatggcgctcggatactttagctatcgttataatttgccgctcaccatccgctcggcgctgtacccgatcttcggtaaacggattaacgggccgataggtcactcagtggatattgcagcggtgatcggcactatcttcggtattgccactacgctcggtatcggtgtggtgcagcttaactatggcttgagcgtactgtttgatattcccgattcgatggcggcgaaagcggcactgatcgccttgtcggtgataatcgccacgatctctgtcacctccggtgtcgataagggcattcgcgtgttatcggagcttaatgtcgcgctggcgctgggattgatcctgttcgtattgtttatgggcgacacttcgttcctgcttaatgcactggtgctgaatgttggcgactatgtgaatcgctttatgggcatgacgctcaacagttttgccttcgaccgtccggttgagtggatgaataactggacgctcttcttctgggcatggtgggtggcatggtcgccgtttgtcggcttgttcctggcgcgtatctcgcgtgggcgtaccattcgccagttcgtgctgggcacgttgattattccgtttaccttcacgctgttatggctctcggtgttcggcaatagcgcgctgtatgaaatcatccacggcggcgcggcatttgccgaggaagcgatggtccatccggagcgcggcttctacagcctgctggcgcagtatccggcgtttacctttagcgcctccgtcgccaccattactggcctgctgttttatgtgacctcggcggactccggggcgctggtgctggggaatttcacctcgcagcttaaagatatcaacagcgacgcccccggctggctgcgcgtcttctggtcggtggcgattggcctgctgacgctcggcatgctgatgactaacgggatatccgcgctgcaaaacaccacggtgattatggggctgccgttcagctttgtgatcttcttcgtgatggcggggttgtataaatctctgaaggtagaagattaccgccgtgaaagtgccaaccgcgataccgcaccgcgaccgctggggcttcaggatcgcctgagctggaaaaaacgtctctcgcgcctgatgaattatccgggcacgcgttacactaaacagatgatggagacggtctgttacccggcaatggaagaagtggcgcaggagttgcggttgcgcggcgcgtacgtggagctaaaaagcctgccaccggaagagggacagcagttgggtcatctggatttgttggtgcatatgggcgaagagcaaaactttgtctatcagatttggccgcagcaatattcggtgccgggctttacctaccgcgcacgcagcggtaaatcgacctactaccggctggaaaccttcctgttagaaggcagccagggcaacgacctgatggactacagcaaagagcaggtgatcaccgatattcttgaccagtacgagcggcaccttaactttattcatctccatcgtgaagcgccgggccatagcgtgatgttcccggacgcgtgattgttattgcataaaaccgcgccatgtctgcatatggcgctgtttctcctacctcttgatacgttatatctatacggttaagcccttagtatctattgatgattaccagacaacagataataaaaaagaaaagaactattgcagcccaaaacctacatttgggctgttgcgaatgttcaataagtttagtcttatttaatgtaaatattgctgatcatttgaaatgacgcattattcatgagaaatgtgtatcgtaaatcaactgaaattaacgcaaccatttgttatttaaggtttaattatctgtgtgtgatattttattgaatgttttaaatattgtttttattggcattgctataatattggttatcatttgctgaatggattcagtcttaatgagtgggtttttaagggacaggcatagagtaatgatacgtatgcataaccaacatctttactcattatgtcattgaatgttgacgctatgtgtttatgagggagaggtattttcagttgatctggattgttaaattcatataatgcgcctttgctcatgaatggatgccagtatgtagtgggaaattataaatattgaaatagtccaactacttctttattaccaaaaatgagtatctgaattttaatattgcattcttgcgtgattatctcctgagtttgacttgtgattacctttttaaggtatttagcgtaactgtttttgagcgagcatcagaggtaaagataatcttcttgatagtgatgtgggatgttatacgtatggcatcgctgatgtttatggttaccccttatgtgtgctcaggaatcgacaggtaatcactcatactgaacagcgataaaagataaaggtgtgttcatgaattcatgtgattttcgtgtttttctgcaagagttcggtacaacggttcatttgtcattgcctggtagcgtatccgagaaagaacgactgctactcaagctgctgatgcagggaatgtctgtaacagaaatatcacagtacagaaatcgcagtgcaaagacaatttcacatcaaaagaaacagctctttgagaaactggggattcagagcgatattactttctggcgcgatattttctttcagtacaatccggagatcatatccgccacggggagtaatagtcacagatatattaatgataatcactatcaccatatcgtcacgcctgaagccatcagtctggcgttggaaaaccacgaattcaaaccgtggatccaaccggttttctgcgcgcagactggcgtactgacgggctgtgaggtgcttgtccgctgggaacatccacaaacgggaattatcccaccggatcagtttattcctctggcggagtcatccggtcttattgtcataatgacccgccaactgatgaaacagactgcggatattctgatgccggtaaaacatttgctgccggacaatttccatattggcatcaacgtctcggcgggttgttttttggcagcgggatttgaaaaagagtgtctgaacctggttaataaattaggtaacgataaaatcaagctggttctcgagctaacggaacgtaaccctattccggtaacgccagaagccagagcgatatttgacagccttcatcagcacaacattacctttgcgctggatgactttggtacgggttatgcgacctatcgttacttgcaggcgttcccggtcgattttattaagatcgataagtcatttgtgcaaatggcgagtgtcgacgaaatctccggtcatattgtggacaatattgtcgaactagcgcgtaagcctggtctgagtatcgtggcggaaggggtagaaacccaggagcaggcggatttaatgatcggtaaaggcgttcactttttgcagggctatttgtactctccgccagtaccgggtaataaatttatctctgaatgggtaatgaaagcaggtggttgatgtaaaccgctattcacagcgcatcgggaggttggcagcgattaattctcccgatgcagtaaatcctgatagatccccgttaatatgccatttggcgcaaattgttttttaatccactgcgtcacctgacccgtagcagaatgctgagtcgccagtaacatgcgcgaatcctggcgcggattatggatttgtcgggtaaccagcagggattgcgtcatcgcctcacggaccatgtaatccggcaaaaaaccaattccttcacctaaaatctggcactgacatttggtgttgaaatctggcaccagaattgactcctgcccgtgcagcaaccagcccacttttttattaatcgtatgcgcggtgtcctccaccataatattagggtagagacgcagttggctttcggcgatgggttccggcacaaaggctaacgggtgatccggggcgatagcaaaagcccagcgaatcgcgccaatttcagtgtaatcaataccgccgccgtccagtagtgtatcgggtgcgccgatggcgatattggcctgattattaataatcgcatcccagacgccgttatacacttcggtggtgacggtaatctggcaggtaggaaactgctttttcagcacctgtaacaagcgtgcggtgtgtttgggcgtataaagcagctgattaatacaaatgcgcacacgcgcttctatgccctgcgaaatagtatcgattctgcgtttgatggcataaaaatcattcagcaggtcggtagctttgcggaaaaaataacgcccggactccgttaactcaatgctgcgggtactgcgagtgaacagcaccacatccagccccgtctccatacgcttaatggtgtagctaatggcggaagtggttaaacccaactcttctgcggctttactgaagctgccaaaacgcgcagcggtagtaaatgccaacagattctcttcggtaaaaattgagttcattaaaccattctcgccattatctactatgaatttctccagctatgactgtagaggtatcggttaaagatagataatcatttttgaataacttttaatacccgtcgcgtttagtcgtcgcttcgcttaatttttgtccaccatattctgaaattacccccacgcagttacccgccagaaaacccagtaacgtcaccgtccagttcatcccgctggcaaaaaacagcgtcatgccgagaaagccaccgggaataaaggacagtaaccagaaacgcccttgccagaccactaccgccgagaagggtacggtagtaattacgctcgcccagaacgcggacagtccacttacagaggccagccaaccagcagtcagcgcggcgaaaaacgcccacaccatcccggaataattaaccgccagacttctgataaaccccgatttaccgccgcctgcggcataaaaactgcaaaaggcgacgaagccaatggttcctaataattcccatccttgagagagcccgacatgtgaagacactaactgccaaagccctgcacaaataccgacggtgacacccgttgccgtgagtccgttcatcttgttcccctctggttagacatggacgaaagctactcttacatgtgcagactatagagaaataaaacctgattgagtgaaagggtatcgggtcaaagaaacaaatattgcactaccgcacactgcgaaaagattgttgaatattattcaacaaaaaggcgagatacggcgaattaaatttaagcgggttcttttatcagattatcgttgctattctcaattcatcgaaaacagccacaaaaaccaggggaatgtgaatgagtataaaaaatctacctgccgactatttattggctgcacaacagggtgatatcgataaagtaaaaacctgccttgcgctgggtgtcgatattaatacctgcgatcgtcaggggaaaacggcaattacgctggcaagtttatatcagcaatatgcttgcgttcaggcattaattgatgccggagcggatattaataagcaagatcatacctgtttaaatccttttttaattagctgtctgaacgatgatttaacgctactacgaattattttaccggctaaacccgatcttaattgcgtaacccgttttggcggtgtcggcctgacgcctgcctgtgaaaaaggccatttaagtattgtaaaagagcttttggcgcatacggagattaacgttaaccagaccaaccatgtaggctggacgccgctactggaagcgattgtgcttaatgatggtggtattaaacagcaggcgattgtgcagttattgctggaacacggtgccagcccgcatctgaccgataaatatggcaaaacgccactggaactggcgcgggaacggggctttgaagagattgcgcagttactgattgccgcaggtgcataaaccgggaggcttgctatcaacacaccagaaagacggtgtgtgtgggcgctaactgcggatgcggattttctggcgcagcgggggcaaggacaggttgaacaggtctttgccagagcggtaaatatcgcactcccggctcgccagcagttgctgacgctgctttgtgaagagtacgacaatgcgccaaacagttgtcggttggcactcactcactttgatgatctgttccggcatggtgataaggttcagtttgacgatcaaggtattacggttggtcaacatcttcatatagagatgagtcgttgtcggcgttggctgtccccaaccttgcaaatgaccgctgtgaattttcaccttatcgcctggctacagtggcacgacattattcatcagcacctgggggaaaatgaaaccctgtttaattatcgcggcgataatccgttttatcaggcgttaaataaagaattacatattaaacgacgggcagttattcaggccgtaaacgataaacaaaatatcgcctcagcggtcgccagtatgatggggttagggattggccttacgccatcagccgacgattatttaacaggtctggcgcttattttatttattcccgggcatccggcggaaaaatacaaagaggaattttatctcggtctgcaacgcggcaaaaataataccacattattaagtgccataacgctggaagccgcattacaacaacgctgccgggaaaatattcatcgttttattcacaacattatttatgacatccctgggaacgcaactcaggcaatagaaaaaattaaacatattggctccagttccggctgcgacatgctgtatggcatggccgatggttgtgcgctgagccaaacctacggagggaattatgtcagttaaaatagtcattaaaccgaatacctattttgattctgtctcgctgatgtctatctccacgcgtgcaaataaactcgacggcgtcgagcaggcatttgtggcgatggcgaccgaaatgaataaaggcgtgctgaagaatttaggactgctgacgccggagctggagcaggcgaaaaacggcgacctgatgattgtcatcaatggtaaatcgggtgcggacaacgagcagttactggtggagattgaagaactgttcaacaccaaagcgcaaagcggctcgcacgaggcgcgttacgccactattggcagcgccaaaaagcatatcccggaaagtaacctggcggtgatttcggtcaacggtctgtttgccgctcgcgaagcgcgtcaggcgctgcaaaacgatctcaacgtgatgctgttttccgataacgtctcagttgaagatgaactggcgctcaagcaactggcccacgaaaaagggctgctgatgatggggccagactgtggcacggcgattatcaacggcgcggcgctctgttttggtaacgccgtgcgtcgcggcaacatcggtattgttggcgcatccggcaccggcagtcaggagttgagcgtccgcattcatgaatttggcggcggcgtttcgcaactgattggcaccggcgggcgcgacctgagcgagaaaatcggcggcctgatgatgctcgacgccatcgggatgctggaaaacgatccgcaaactgaaatcattgcgcttatctccaaaccgcctgcgcctgcggtggcccgcaaagtgctggaacgtgcgcgcgcctgccgcaagccggtggtcgtctgcttcctcgatcgtggcgaaacgccagtggatgagcaggggctacagtttgcccgcggcaccaaagaggcagcgctaaaagcggtgatgctctccggcgtgaaacaggaaaatctcgacctgcatacgcttaaccagccgttgattgcggatgtgcgtgcgcgtctgcaaccgcagcagaaatacattcgtggcctgttctgcggcggcacgctgtgcgacgaaaccatgttcgcggtgatggaaaaacatggcgatgtctacagcaacattcagcccgatccggaattccgcctgaaagatatcaaccgcagcatcaaacacaccttcctcgactttggcgatgacgacttcaccaatggcaagccgcacccgatgattgaccccaccaaccgcatcagtcgcttgatcgaagaggcgcgcgatccagaagtggcggtgatcgtgatggattttgtgctcggatttggatcgcatgaagatccggtcggctccaccatcgagacgatcaaagaagcgaaagcgatcgccgctgccgaaggacgcgagttgatcattctcgcctatgtgctgggtaccgatcttgatacgccatcgttagaacaacaaagccagatgctgcttgatgccggagtgattctggcgagcagcagcaccaataccggattgctggcgcgtgaatttatctgcaaaggggaggaagcctgatgagccagtcactgtttagccaaccattgaacgttattaacgtcggcatcgccatgtttagcgatgacctgaaaaagcagcatgtagaagtgactcaactcgactggacgccgccggggcagggcaatatgcaggtggtgcaggcgctggataacattgccgattcgccgctggcggacaaaatcgccgccgctaaccagcaggcgctggagcgtattatccagtcgcatccggtgctgattggttttgatcaggcgattaacgtggtgccgggcatgacggcgaaaaccattcttcacgccgggccgccgatcacctgggaaaaaatgtgcggcgcgatgaaaggcgcggtcaccggagcgctggtgttcgaaggactggcgaaagatctcgacgaggcggctgaactggcggcttccggggagatcaccttctcgccgtgtcacgagcacgactgcgtgggatcgatggcgggtgttacctcggcctcgatgtttatgcacatcgtaaaaaacaaaacctacggcaacatcgcttataccaacatgagcgagcagatggcgaagattttgcgtatgggcgctaacgaccagagcgtgattgaccgcctgaactggatgcgtgatgtgcagggaccaatactgcgcgacgcgatgaaaattatcggcgaaatcgatctgcgcttaatgctggcgcaggcgctgcatatgggcgatgagtgccataaccgcaataacgccgggacgacactgctgattcaggcgctgacgccggggattattcaggcgggttattccgtcgagcaacagcgcgaagtgtttgagtttgtcgccagcagcgactacttctccggcccgacgtggatggcgatgtgtaaagcggcgatggatgcggcgcatggcatcgaatacagcaccgtggtcaccaccatggcgcgtaacggcgtcgagttcggcctgcgggtcagcggcctgccggggcaatggtttaccggcccggcgcagcaggtgatcggcccgatgtttgccggttataagccggaagattcggggctggatatcggcgacagcgccatcaccgaaacctacggtattggcggatttgctatggcgaccgcgcccgctatcgtcgcgctggtgggcggcacggtggaagaagctattgatttctcccgtcagatgcgcgaaatcaccctcggtgaaaaccccaacgtcaccattccgctgctcggttttatgggcgtgccgtcggcaatcgacatcacccgcgtgggtagcagcggcattctgccggtgatcaacaccgccatcgcccataaagatgcgggcgtcggcatgattggcgcgggcattgtgcatccaccttttgcctgcttcgagaaagccattcttggctggtgcgaacgttacggcgtctgacctacatgttcatgccggatgcggcgtgaacgccttatccggcctacgaatggcgcaagaatctgtaggcctgataagcgtagcgcatcaggcatttgtcaccattgccggatgcggcgtgaacgccttatccggcctacgaatggcgcaagaatctgtaggcctgataagcgtagcgcatcaggcatttgccaccactgccggatgcggcgtggacgccttatccggcctacgagtggcgcgagaatctgtaggcctgataagcgtagcgcatcaggcatttgtcaccattgccggatgcggcgtgaacgccttatccggcctacgagtggcgcgagaattgtaggcctgataagcgtagcgcatcaggcagtctggcgttggtcataaccccatcaccctctgtagcggacataacaacatgaaagagcttgtggtcgttgccattggtggcaacagcattatcaaagataacgccagccagtcgattgagcatcaggcggaggcggtgaaagccgtcgccgatacggtgctggaaatgctggcttccgattacgacattgtgctgacccacggcaacgggccgcaggtcgggctggatttacgccgtgcggagattgcccacaagcgcgaagggctgcccttaacgccgctggcgaactgtgtggcagatacgcagggcggcatcggctatctgatccaacaggcgctgaataaccggctggcgcgtcacggcgagaagaaagccgtcaccgtggtgactcaggtggaagtggataaaaacgatccaggttttgcccatcccaccaagcccatcggcgcattctttagtgacagccagcgtgacgaattacaaaaggcaaaccctgactggtgttttgttgaagatgccgggcggggctatcgccgcgtggtcgcctcgccggaaccgaaacgtattgtcgaagcacctgccattaaagcgctgatccaacaaggttttgtcgtaattggcgcgggcggcggtggaattccggtagtgcgtactgacgcgggagattaccaaagcgtggacgcggttatcgacaaagatctctctaccgcgctgctggcccgtgaaattcacgccgacattcttgtgatcaccactggcgtcgaaaaagtgtgtattcactttggcaaaccgcagcagcaggcgctcgatcgggtggatattgccaccatgacccgctatatgcaggaagggcatttcccgcccggcagcatgttgccaaaaatcatcgccagcctgacatttttagaacaaggcggcaaagaagtgattatcaccacgccggaatgcctgcctgcggcgctgcgcggcgaaacgggcactcatattattaaaacgtaaggacgtaagatgaaagaaagcaatagccgccgtgaatttctgagccagagcggtaagatggtcaccgccgccgcgctgtttggtacctctgtgccgctcgcccatgcggcggtagctggcaccctaaactgcgaagcgaacaacaccatgaaaatcactgacccgcattactatctcgataacgtgctgctggaaaccggttttgactacgaaaatggcgtggcggtgcagacccgcacggcgcgccagaccgtggagattcaggacggcaaaattgtcgccctgcgcgagaacaagctgcatccggacgccacgctgccgcactatgacgctggcggtaagctgatgctgcccaccacccgcgacatgcatattcatctcgacaaaaccttttacggcgggccgtggcgctcgctcaatcgtccggcaggcaccaccatccaggacatgatcaaactcgagcagaaaatgctgccggaactgcaaccgtacactcaggagcgggcagaaaaactgattgatttattgcagtcgaaaggcaccaccattgcccgcagccactgcaatatcgaaccggtttccggcctgaaaaatctgcaaaatttgcaggcggtgctggcgcgacgtcaggcgggctttgagtgtgaaatcgtcgccttcccgcagcacggtttgctgctgtcgaaatctgaacctttaatgcgtgaagcgatgcaggcgggggcgcattacgtcggcggcctggacccgaccagtgttgatggcgcgatggaaaaatccctcgacaccatgttccagattgcgctggactacgacaaaggcgtcgatattcacctgcacgaaaccactccggcaggcgtggcagccatcaattatatggttgaaacggtagagaaaacgccacagctgaagggcaagctgaccatcagtcacgcctttgcgctggcaacgctcaacgagcaacaggtagatgaactggcgaaccggatggtggtgcaacaaatttctatcgcctcgacggtgccgattggcacgctgcatatgccgctcaaacagttgcacgacaaaggcgtaaaagtgatgactggcactgacagcgttatcgaccactggtcgccttatggtctgggcgacatgctggaaaaagccaatctgtacgcgcagctctatattcgtcctaacgaacagaacctctcccgctcgctgtttttagccactggcgatgtattgccgctgaatgaaaaaggcgagcgtgtatggccaaaagcgcaggatgacgccagctttgtgctggtggacgcctcctgttccgccgaggcggtggcgcgtatctcgccgagaaccgcaacgttccataaagggcaactggtgtgggggagtgtggcaggttgatgcgcatttgaaacgcctgcaacggtgaatagtaagagatttaagccccagggagtggggcaatctgaatatgagtgtgtcggcagaaatggacattatctttgaggaatatgcccttattgacgttgtgtagataactatttgtctacgtgaaaagatcatcagttttgccgattttagtcttttacagatagcaaatatcacacttacaggcgctcgccttatggggaacgttgctgctctgtttcattcaggctcgcggcatgttggggctggatcgggtggtttaaatattggctatattcaatggacgcgttttgccgcgatgacatatcaggcgttgccaaatacacatagctaatcaggagtaaacacaatgaagatcaaagctgttggtgcatattccgctaaacaaccacttgaaccgatggatatcacccggcgtgaaccgggaccgaatgatgtcaaaatcgaaatcgcttactgtggcgtttgccattccgatctccaccaggtccgttccgagtgggcggggacggtttacccctgcgtgccgggtcatgaaattgtggggcgtgtggtagccgttggtgatcaggtagaaaaatatgcgccgggcgatctggtcggtgtcggctgcattgtcgacagttgtaaacattgcgaagagtgtgaagacgggttggaaaactactgtgatcacatgaccggcacctataactcgccgacgccggacgaaccgggccatactctgggcggctactcacaacagatcgtcgttcatgagcgatatgttctgcgtattcgtcacccgcaagagcagctggcggcggtggctcctttgttgtgtgcagggatcaccacgtattcgccgctacgtcactggcaggccgggccgggtaaaaaagtgggcgtggtcggcatcggcggtctgggacatatggggattaagctggcccacgcgatgggggcacatgtggtggcatttaccacttctgaggcaaaacgcgaagcggcaaaagccctgggggccgatgaagttgttaactcacgcaatgccgatgagatggcggctcatctgaagagtttcgatttcattttgaatacagtagctgcgccacataatctcgacgattttaccaccttgctgaagcgtgatggcaccatgacgctggttggtgcgcctgcgacaccgcataaatcgccggaagttttcaacctgatcatgaaacgccgtgcgatagccggttctatgattggcggcattccagaaactcaggagatgctcgatttttgcgccgaacatggcatcgtggctgatatagagatgattcgggccgatcaaattaatgaagcctatgagcgaatgctgcgcggtgatgtgaaatatcgttttgttatcgataatcgcacactaacagactgaaaaaattaataaataccctgtggtttaacatattaacttcgctctccacttaactttttagttaaggagagcgaaataatatcaaagtagcagtaaaacctataacgtaaatttaaattgttaaattaacgccctccagtacacaatacttcacacgttagttatgagcgatttctgatagtgcctggtttaatcagagctttattatctgcgacgtttatttttatttaagagagatcgcgatgatatcattaaaagctccgcacaataatttgatgccatatacgcaacaaagcatacttaatacggttaaaaacaatcagttaccagaggatatcaaaagctccctggtttcctgtgtcgatatattcaaggttttgattaaacaatattatgattatccttatgattgtcgtgatgatttagtcgatgacgacaaactcattcatctcatggctgccgtacgagactgtgagtggtcagacgataacgcactcaccataaatgtgcagtttaatgatttccctggattttatgactggatggattaccctgatcacccggttaagtttgtttttcacatacttgaaaatcaaaaagggacagtttgggtatatgaccaggatgatgcgtttcttgatattaaagcaaacgtgcaggctggacgctttaccgggcttaagaaattagtgcagtttatcgattcagtgcgaacagattgcaaatgtattcttcttgaataccatatgcctttgctgagaattttccctaaagggaaagagtgtatgcatgtggaaaaatggcttcgcgaaatgtcgtctattccggagacagacgcgcccattaagcaggcgcttgcgcatggattattattacacttaaaaaatatctaccctgtttttcctgaatcactggtgatgttattgctctctgttctggacgtaaaaacatacagagatgatgcgcgattaaatgaatggatatctaatagagtgcaggaattaggtgacagatattatcctgtaaataagcacgttaaaatccgctacactctttagttcagaaagggttccacctgcaagttgttattccacctgagagtgaatcgcaatgcaggtaatcatttcatctgtatatctgtatgccaactggcattccatctcttttttcgccgatattttgttgtgatcggcgacacttcgcttaaaaaagcaccagtagtggtttcgcagccatgcggtgtataaaaaatgatctcatgcagatgttttgtgaatgtgttggttgacattcatatgaaaaaaatcataattccatcatgtttgtgtggggtcttttctgtatcttacgcatcgcactcaagcctgacagaaaatatgctgtaaggctcatatcaaaaaccgccattagctcatcaggaagagcagacgacaaccaggattgttgtatggtacggggttcgaggcctcgatggcggtccaacttttcaaaactcttctgaatcagatccccttattatcatccctgcaaagtggaacattgccattgtttggctattcaggatggggcagaccaatgaaaaaagcccacacaggggagagtgggctgaaatgggaagctaaagactcaagtaaacttatcggaaataaggaccacgcattacgggggctatcatcgccgatggccgtgattcggcaaatcaggttgattacgtagagagtaaattatctgctcaccgctgcgtcaccccttcgtaaatcaggcgtagcgcgaatacaccaataattgcaccaataacccgactggcaacgcgttgcatacgcccataagcacgacgcacagcgggcaaagaaaacgcctgactaagaaaaactcgccagataattgatgcgagcacaatccccgcccaggccattaaacgtgcccatgttggtgtttcggcatttaatgttactgagaaaatactgataaaaaataaaacggtttgcgggttagagagatcggtaattaatccgcggcgaaaaaagacataccagggggcgctaatcggttgttgtagtgtgctcatttgcggtgttgactggcggcgcatgctgcaccacgcaaaccataagagataagcgccgccgacgattctgataagcgaaaaaatctcctcacactgcgtaattagcgttgcaagaccaaacaaacccaacccggaataaaatgcatcgcccagcgccacgcccagcccggtcagcacccctgcgcgtcgaccggaagccaggctggtttgtactaccacaaagagattggctcccggattaaaaaaagtaatcacgaacagtcctacggtcaggtaaacggcatgcaaaggatccatagtgatttcatccataaataagtgaactaactgcatcatatttctaccaaaaataatcgggtgcgagagagatcacaaagtgtcttatttccggttactggcgtttatgccctgactgaactaattattaatcaacccaataatgtgggtgggtgatagtgtgataacaactctggagccgtaatatgaaaataatctctaaaatgttagtcggtgcgttagcgttagccgttaccaatgtctatgccgctgaattgatgaccaaagcggaatttgaaaaagttgaatcgcagtatgaaaaaataggtgatatttcaaccagcaatgaaatgtcgactgcagatgcaaaagaagatttgatcaaaaaagcggatgaaaaaggggctgatgtgttggtactgacctccggtcaaactgacaataagatccacggcacggcaaatatttataagaagaagtaattctgaatcctatgtaaacatctccgatgcgtaagtttatcggtgatcatctattgaaatttatgccggataaagcgttcgcgctgcattcggcagttcagcttttcagccgccgccagaacgtcgtccggctgatgcctaaataattcgccgctgctgttttatcgccattaaatttctccagtgcctgttgtggtgtcagtaagcgtggagcgggagttttcgccgactcgcgcgccagttccggcagtagcagttgcataaactgcggcgttaaatccggcgtcggttccacacttaaaaacagcgccagtcgttccatcatattgcgcagttcacgaatattgcctggccagtcgtagtgcagcagcacagtttcacttgcctgtaacccctggcgtaatgcagcagaaaatggggcggagagcgccgccagagacactttcaaaaagctttccgccagcggaagaatatccgccacccgctcgcgcagtggtggcaattgcagacgcaaaatactcagccgataaaacagatcacggcgaaaacgtccttgctgcatatcttcttccagattgcagtgagtggcgctaatgacccgtacatctaccggaacaggctgatgcccgccgacgcgggtgacctctttttcttccagcacccgcagcagccgggtctgcaaaggtagcggcatttcgccaatctcatccagaaacagcgtaccgccgtgggcaatttcgaacagcccggcgcgacctccgcgtcgcgagccggtaaacgccccttcctcatagccaaacagttctgcttccagcagcgattcggcaatcgccccgcagttgacggcaacaaacggatgcgactttttgccctgtcgcgcatcgtggcgggcaaaatattcccgatgaatcgcctgggccgccagctctttgcccgtccccgtttccccctcaatcaacaccgccgcactggagcgggcatacagcaaaatagtctgccgtacttgttccatctgtggtgattgaccgagcatatcgcccagcacgtaacgagtacgcagggcgttgcgggtggcatcgtgagtgttatggcgtaacgacatgcgcgtcatatccagcgcatcgctgaacgcctggcgcacggtggcggcggaatagataaaaattccggtcattccggcttcttctgccaaatcggtaatcagccctgcgccgaccaccgcttcggtgccgttagcttttagctcgttaatctgcccgcgtgcgtcttcctcggtaatgtagctacgttggtcgaggcgcaaattaaaggttttttgaaacgccaccagcgctggaatggtttcctgataggtgacaacgccgatagaagaggtgagttttccggcttttgccagtgcctgtaacacatcgtagccgctcggtttaatcaaaataactggcactgacaggcggcttttcaggtacgcgccgttagagccagccgcgatgatggcgtcacagcgttcgtttgccagtttcttgcggatgtaggtcactgctttttcaaagccaagctgaataggggtaatgttcgccaggtgatcaaactcgaggctgatatcgcgaaacagctcgaacaggcgcgttacagataccgtccagataaccggtttgtcgtcattaagccgtggtggatgtgccatagcgcaccgcaaagttaagaaaccgaatattgggtttagtcttgtttcataattgttgcaatgaaacgcggtgaaacattgcctgaaacgttaactgaaacgcatatttgcggattagttcatgactttatctctaacaaattgaaattaaacatttaattttattaaggcaattgtggcacaccccttgctttgtctttatcaacgcaaataacaagttgataacaaaggatgggctatgtctctacactctccaggtaaagcgtttcgcgctgcactgactaaagaaaatccattgcagattgttggcaccatcaacgctaatcatgcgctgttggcgcagcgtgccggatatcaggcaatttatctttctggcggtggcgtggcggcaggttcgctggggctgcccgatctcggtatttctacccttgatgatgtgctgaccgacattcgccgtatcaccgacgtttgttcgctgccgctgctggtggatgcggatatcggttttggttcttcggcctttaacgtggcgcgcaccgtgaaatcgatgattaaagccggtgcggcaggattgcatattgaagatcaggttggtgcgaaacgctgcggtcatcgtccgaataaagcgatcgtctcgaaagaagagatggtggatcggatccgcgcggcggtggatgcgaaaaccgatcctgattttgtgatcatggcgcgcaccgatgctctggcggtagaggggctggatgcggcgatcgagcgtgcgcaggcctatgttgaagcgggtgccgagatgttgttcccggaggcgattaccgaactcgccatgtaccgccagtttgccgatgcggtgcaggtgccgatcctcgccaacatcaccgaatttggtgccacgccgctgtttaccaccgacgaattacgcagcgcccatgtcgcaatggcgctgtacccactttcagcgttccgcgccatgaaccgcgccgctgaacatgtctacaacgtcctgcgccaggaaggcacgcagaaaagcgtcatcgacaccatgcagacccgcaacgagctgtacgaaagcatcaactactaccagtacgaagagaagctcgacaacctgtttgcccgtagccaggtgaaataaaaaacgcccgttgattgtattcgacagccgatgcctgatgcgtcgctgacgcgacttatcaggcctacgaggtgcactgaactgtaggtcggataagacggatggcgtcgcatccgacaaccgatgcctgatgcgccgctgacgtgacttatcaggcctacggggtgcactgaactgtaggtcggataagacgcatagcgtcgcatccgacaaccgatgcctgatgcgccgctgacgcgacttatcaggcctacggggtgcactgaactgtaggtcggataagacgcatagcgtcgcatccgacaaccgatgcctgatgcgccgctgacgcgacttatcaggcctacggggtgaactgaactgtaggtcggataagacgcatagcgtcgcatccgacaacaatctcgaccctacaaatgataacaatgacgaggacaacatgagcgacacaacgatcctgcaaaacagtacccatgtcattaaaccgaaaaaatctgtggcactttctggcgttccggcgggcaatacggcgctctgcaccgtgggtaaaagtggcaatgacctgcattaccgcggctacgatattcttgatctggcgaaacattgcgaatttgaagaagtggcgcatctgctgatccacggcaaactgccgacccgtgacgaactcgccgcttacaaaacgaaactgaaagccctgcgcggtttaccggctaacgtgcgtaccgtgctggaagccttaccggcggcgtcgcacccgatggatgttatgcgcaccggtgtttccgcgctcggctgcacgctgccagaaaaagaggggcataccgtctctggcgcgcgggatattgccgacaaactgctggcgtcgcttagctcgattctcctttattggtatcactacagccacaacggcgaacgcatccaaccggaaaccgatgacgactccatcggcggtcacttcctgcatctgctgcacggcgaaaagccatcgcaaagctgggaaaaggcgatgcatatctcgctggtgctgtacgccgaacacgagtttaacgcctccacctttaccagtcgggtgattgcgggcaccggctctgatatgtattccgcgattattggcgcgattggcgcactgcgcgggccaaaacacggcggggcgaatgaagtgtcgctggagatccagcaacgctacgaaacgccggacgaagccgaagcagatatccgcaagcgcgtggaaaacaaagaagtggtcattggttttggtcatccggtttacaccatcgctgacccgcgccaccaggtgattaaacgtgtggcgaagcagctctcgcaggaaggcggctcgctgaagatgtacaacatcgccgatcgcctggaaacggtgatgtgggagagcaaaaagatgttccccaatctcgactggttctctgctgtttcctacaacatgatgggcgttcccaccgagatgttcacaccactgtttgttatcgcccgcgtcaccggctgggcggcgcacattatcgaacaacgtcaggacaacaaaattatccgtccttccgccaattatgttggaccggaagaccgcccgtttgtcgcgctggataagcgccagtaaacctctacgaataacaataaggaaacgtacccaatgtcagctcaaatcaacaacatccgcccggaatttgatcgtgaaatcgttgatatcgtcgattacgtcatgaactacgaaatcagctctaaagtggcctacgacaccgcacattactgcctgctcgacacgctcggctgcggtctggaagctctcgaatacccggcctgtaaaaaactgctggggccaattgttcccggcaccgtcgtacccaacggcgtgcgcgtccccggaactcagttccagctcgaccccgtccaggcggcatttaacatcggcgcgatgatccgctggctcgatttcaacgatacctggctggcggcggagtggggccatccttccgacaacctcggcggcattctggcaacggcggactggctttcgcgcaacgcggtcgccagcggcaaagcgccgttgaccatgaaacaggtgctgaccgcaatgatcaaagcccatgaaattcagggctgcatcgcgctggaaaactcctttaaccgcgtcggcctcgaccacgttctgttagtgaaagtggcttccaccgccgtggtcgccgaaatgctcggcctgacccgcgaggaaattctcaacgccgtttcgctggcgtgggtggacggtcagtcgctgcgcacctatcgccatgcgccgaacaccggcacgcgtaaatcctgggcggcgggcgatgccacttcccgcgcggtacgtctggcactgatggcgaaaacgggcgaaatgggttacccgtcagccctgactgcgccggtgtggggcttctacgacgtctcctttaaaggtgaatcgttccgcttccagcgcccgtacggttcctacgttatggaaaatgtgctgttcaaaatctccttcccggcggagttccactcccagacggcagttgaagcagcgatgacgctctatgaacagatgcaggcagcaggcaaaacggcggcggatatcgaaaaagtgaccattcgcacccacgaagcctgtattcgcatcatcgacaaaaaagggccgctcaataacccggcagaccgcgatcactgcattcagtacatggtggcgatcccgctgctattcgggcgcttaacggcggcagattacgaggacaacgttgcgcaagataaacgcattgacgccctgcgcgagaagatcaattgctttgaagatccggcatttaccgctgactaccacgacccggaaaaacgcgccatcgccaatgccattacccttgagttcaccgacggcacacgatttgaagaagtggtggtggagtaccccattggtcatgctcgccgccgtcaggatggtattccgaaactggtcgataaattcaaaatcaatctcgcgcgccagttcccgactcgccaacagcagcgcattctggaggtttctctcgacagagctcgcctggaacagatgccggtcaatgagtatctcgacctgtacgtcatttaagtaaacggcggtaaggcgtaagttcaacaggagagcattatgtcttttagcgaattttatcagcgttcgattaacgaaccggagcagttctgggccgagcaggcccggcgtattgactggcagacgccctttacgcaaacgctcgatcacagcaatccgccgtttgcccgttggttttgtgaaggccgaaccaacttgtgccacaacgccatcgaccgctggctggagaaacagccagaggcgctggcgctgattgccgtctcttcggaaacagaagaagagcgcacctttacctttcgtcagctgcatgacgaagtgaacgcggtggcctcaatgttgcgttcattgggtgtgcagcgcggcgatcgggtgctggtgtatatgccgatgattgccgaagcgcatattactctgctggcctgcgcgcgcattggcgctattcactcggtggtgtttggtggatttgcctcgcacagcgtggcggcgcgaattgatgacgctaaaccggtgctgattgtctcggctgatgccggagcgcgcggtggcaaaatcattccctataaaaaattgctcgacgatgcgataagtcaggcgcagcaccagccacgccatgttttgctggtggatcgcgggctggcgaaaatggcgcgcgtcagcgggcgggatgtcgatttcgcgtcgttgcgccatcaacacatcggcgcgcgggtaccggtggcgtggctggaatccaacgaaacctcctgcattctctacacttccggcacgaccggcaaacctaaaggcgtgcagcgtgacgtcggcggatatgcggtggcgctggcgacctcgatggacaccatttttggcggcaaagcgggcagcgtgttcttttgcgcatcggatatcggctgggtggtggggcattcgtatatcgtttacgcgccgctgctggcggggatggcgactatcgtttacgaaggattgccgacctggccggactgcggcgtgtggtggacaatcgtcgagaaatatcaggttagccggatgttctcagcgccgaccgccattcgcgtgctgaaaaaattccctaccgctgaaattcgcaaacacgatctctcgtcgctggaagtgctctatctggctggagaaccgctggacgagccgaccgccagttgggtgagcaatacgctggatgtgccggtcatcgacaactactggcagaccgaatccggctggccgattatggcgattgctcgcggtctggacgacaggccgacgcgtctgggaagccccggtgtgccgatgtatggctataacgtgcagttgcttaatgaagtcaccggcgaaccgtgtggcgtcaacgagaaagggatgctggtggtggaagggccgctgccgccggggtgtattcagaccatctggggcgacgacggccgctttgtgaagacttactggtcgctgttttcccgcccggtgtacgccacctttgactggggcatccgtgacgctgacggttatcactttattctcgggcgcactgacgatgtaattaacgttgccgggcatcggctggggacgcgcgagattgaagagagtatctccagccatccgggcgttgccgaagtggcggtggttggggtgaaagatgcgctgaaagggcaggtggcggtggcgtttgtcattccgaaagagagcgacagtctggaagatcgtgatgtggcgcactcgcaagagaaggcgattatggcgctggtggacagccagattggcaactttggccgcccggcgcacgtctggtttgtctcgcaattgccaaaaacgcgatccggaaaaatgctgcgccgcacgatccaggcgatttgcgaaggacgcgatcctggagatctgacgaccattgatgatcctgcgtcgttggatcagatccgccaggcgatggaagagtaggttattgtcggatgcgtcgcgcggtgcatccggcactgtgtgccgatgcctgatgcgacgctgacgcgttttatcatgcctacggacctgaaccgtaggtcggataaggcgctcgcgtcgcatccgacaccatgctcagatgcctgatgcgacgctgacgcgtcttatcaggcctacccactgtttttacaccgataatttttcccccacctttttgcactcattcatataaaaaatatatttccccacgaaaacgattgctttttatcttcagatgaatagaatgcggcggattttttgggtttcaaacagcaaaaagggggaatttcgtgtcgcaagataacaactttagccaggggccagtcccgcagtcggcgcggaaaggggtattggcattgacgttcgtcatgctgggattaaccttcttttccgccagtatgtggaccggcggcactctcggaaccggtcttagctatcatgatttcttcctcgcagttctcatcggtaatcttctcctcggtatttacacttcatttctcggttacattggcgcaaaaaccggcctgaccactcatcttcttgctcgcttctcgtttggtgttaaaggctcatggctgccttcactgctactgggcggaactcaggttggctggtttggcgtcggtgtggcgatgtttgccattccggtgggtaaggcaaccgggctggatattaatttgctgattgccgtttccggtttactgatgaccgtcaccgtcttttttggcatttcggcgctgacggttctttcggtgattgcggttccggctatcgcctgcctgggcggttattccgtgtggctggctgttaacggcatgggcggcctggacgcattaaaagcggtcgttcccgcacaaccgttagatttcaatgtcgcgctggcgctggttgtggggtcatttatcagtgcgggtacgctcaccgctgactttgtccggtttggtcgcaatgccaaactggcggtgctggtggcgatggtggcctttttcctcggcaactcgttgatgtttattttcggtgcagcgggcgctgcggcactgggcatggcggatatctctgatgtgatgattgctcagggcctgctgctgcctgcgattgtggtgctggggctgaatatctggaccaccaacgataacgcactctatgcgtcgggtttaggtttcgccaacattaccgggatgtcgagcaaaaccctttcggtaatcaacggtattatcggtacggtctgcgcattatggctgtataacaattttgtcggctggttgaccttcctttcggcagctattcctccagtgggtggcgtgatcatcgccgactatctgatgaaccgtcgccgctatgagcactttgcgaccacgcgtatgatgagtgtcaattgggtggcgattctggcggtcgccttggggattgctgcaggccactggttaccgggaattgttccggtcaacgcggtattaggtggcgcgctgagctatctgatccttaacccgattttgaatcgtaaaacgacagcagcaatgacgcatgtggaggctaacagtgtcgaataacgctttacaaacaattattaacgcccggttaccaggcgaagaggggctgtggcagattcatctgcaggacggaaaaatcagcgccattgatgcgcaatccggcgtgatgcccataactgaaaacagcctggatgccgaacaaggtttagttataccgccgtttgtggagccacatattcacctggacaccacgcaaaccgccggacaaccgaactggaatcagtccggcacgctgtttgaaggcattgaacgctgggccgagcgcaaagcgttattaacccatgacgatgtgaaacaacgcgcatggcaaacgctgaaatggcagattgccaacggcattcagcatgtgcgtacccatgtcgatgtttcggatgcaacgctaactgcgctgaaagcaatgctggaagtgaagcaggaagtcgcgccgtggattgatctgcaaatcgtcgccttccctcaggaagggattttgtcgtatcccaacggtgaagcgttgctggaagaggcgttacgcttaggggcagatgtagtgggggcgattccgcattttgaatttacccgtgaatacggcgtggagtcgctgcataaaaccttcgccctggcgcaaaaatacgaccgtctcatcgacgttcactgtgatgagatcgatgacgagcagtcgcgctttgtcgaaaccgttgctgccctggcgcaccatgaaggcatgggcgcgcgagtcaccgccagccacaccacggcaatgcactcctataacggggcgtatacctcacgcctgttccgcttgctgaaaatgtccggtattaactttgtcgccaacccgctggtcaatattcatctgcaaggacgtttcgatacgtatccaaaacgtcgcggcatcacgcgcgttaaagagatgctggagtccggcattaacgtctgctttggtcacgatgatgtcttcgatccgtggtatccgctgggaacggcgaatatgctgcaagtgctgcatatggggctgcatgtttgccagttgatgggctacgggcagattaacgatggcctgaatttaatcacccaccacagcgcaaggacgttgaatttgcaggattacggcattgccgccggaaacagcgccaacctgattatcctgccggctgaaaatgggtttgatgcgctgcgccgtcaggttccggtacgttattcggtacgtggcggcaaggtgattgccagcacacaaccggcacaaaccaccgtatatctggagcagccagaagccatcgattacaaacgttgaacgactgggttacagcgagcttagtttatgccggatgcggcgtgaacgccttatccggcctacgtagagcactgaactcgtaggcctgataagcgtagcgcatcaggcaattccagccgctgatctgtgtcagcggctaccgtgattcattcccgccaacaaccgcgcattcctccaacgccatgtgcaaaaatgccttcgcagcggctgtctgccagctgtagtttatgccggatgcggcgtgaacgccttatccggcctacgtagagcactgaactcgtaggcctgataagcgtagcgcatcaggcaattccagccgcagacctgtgtcagcggctaccgtgattcatttccgccaacaaccgcgcatttatccaacgccatgtgcaaaaatgccttcgcggcggctgtctgccagctatttttccgccgcaacaaaaccgccgttctctccagtagtggcggggcaagagaaatagctttaagcccgtcatgttgtgtggcaatcgctgctggtaacaatgtggaaagggaagtgcggcgaatcagctccagaaccgcgctaattgagttcgcctcaatgaccacctgtggatgtagccccgctttctcgcagtagtggtcaatttgctctctggtggcaaattccgcgctgagcaggaccagtttttcatcatgcaagcgactcaacgccacctgttcatggacggccagcggatgatgttgcgccacgactaacgctaaactttctgtcagtaaaggaattgcctccagctccggcgaatgcacaggcgcgaaggcaatcccaacgtccaactcgtcgcggcaaagcatatcctcgattttctcctgcgacatttcctgtagctggagcgtgatgctgggatagcgcgcatagaaatccgccattaaggggccgataaagtagctcgtaaaggtgggggtgacggcgatacgcagcgatcctcgcgtcagatcggcaacatcatgaatcgcccgtttacccgcccccagttcctgtaacgcccggctggcgtactgtcgccagacttctcctgcatcagtgagacgaatcgttcgcccgctacggtcaaacagcggcacgcctaaactctcctctaactggcgaatctgctgggaaagcgcaggttgggagacgtgcaacgcactggcggcacgggtgaagctgccatgttcagccacggcaagaaaataattgatatgtcgagagagcattcgcaacctataagtaaatccaatggaactcatcataaatgagacttttaccttatgacaatcggcgagtagtctgcctctcattccagagacagacagaggttaacggtgaaagagattattgatggattccttaaattccagcgcgaggcatttccgaagcgggaagccttgtttaaacagctggcgacacagcaaagcccgcgcacactttttatctcctgctccgacagccgtctggtccctgagctggtgacgcaacgtgagcctggcgatctgttcgttattcgcaacgcgggcaatatcgtcccttcctacgggccggaacccggtggcgtttctgcttcggtggagtatgccgtcgctgcgcttcgggtatctgacattgtgatttgtggtcattccaactgtggcgcgatgaccgccattgccagctgtcagtgcatggaccatatgcctgccgtctcccactggctgcgttatgccgattcagcccgcgtcgttaatgaggcgcgcccgcattccgatttaccgtcaaaagctgcggcgatggtacgtgaaaacgtcattgctcagttggctaatttgcaaactcatccatcggtgcgcctggcgctcgaagaggggcggatcgccctgcacggctgggtctacgacattgaaagcggcagcatcgcagcttttgacggcgcaacccgccagtttgtgccactggccgctaatcctcgcgtttgtgccataccgctacgccaaccgaccgcagcgtaaccttatttttaaaccatcaggagttccaccatgattcagtcacaaattaaccgcaatattcgtcttgatcttgccgatgccattttgctcagcaaagctaaaaaagatctctcatttgccgagattgccgacggcaccggtctggcagaagcctttgtaaccgcggctttgctgggtcagcaggcgcttcctgccgacgccgcccgcctggtcggggcgaagctggatctcgacgaagactccattctactgttgcagatgattccactgcgtggctgcattgatgaccgtattccaactgacccaacgatgtatcgtttctatgaaatgttgcaggtgtacggtacaaccctgaaagcgttggttcatgagaaatttggcgatggcattattagcgcgattaacttcaaactcgacgttaagaaagtggcggacccggaaggtggcgaacgtgcggtcatcaccttagatggtaaatatctgccgaccaaaccgttctgacagccatgcgcaaccatcaaaagacgttcacgatgctgctggtactggtgctgattggtcttaatatgcgaccactgctcacctccgtcgggccactgctaccgcaattgcgccaggcgagcggaatgagctttagcgtggctgccctgttgaccgctctgccggtggttaccatgggcgggctggcgctggccggaagctggcttcatcagcatgtcagcgaacgtcgcagtgtcgccatcagtctgttgctgattgccgtcggtgcattgatgcgtgagctttacccgcaaagtgcgctgctgcttagcagcgcactgcttggtggggtggggatcggcatcattcaggcggtgatgccttcggtgattaaacggcggtttcagcagcgcacgccactggtgatggggctgtggtccgcggctctgatgggcggcggtgggcttggtgccgccataacgccctggttagttcaacatagcgaaacctggtatcaaacactcgcctggtgggcgctgcctgccgttgttgcgctctttgcctggtggtggcaaagcgcccgcgaggtcgcctcttcccacaagacaacaaccactccggttcgcgtggtattcactccccgcgcgtggacgctgggtgtttacttcggtctgattaacggcggttacgccagcctgattgcctggttacccgctttctatattgagattggtgccagcgcgcagtacagcggttccttactggcattgatgacgcttgggcaagccgcaggagctttgctgatgcctgctatggctcgccatcaggatcggcgcaaactgttaatgctggcgctggtgttacaactggtggggttctgcggctttatctggctgccgatgcaattgccggtattgtgggcgatggtgtgtgggttaggtctgggcggcgcgtttccgctctgtttgctgctggcgctcgatcactctgtgcaaccggctattgctggcaagctggtggcgtttatgcagggaatcggttttatcatcgccgggcttgccccgtggttttctggcgtgctgcgtagtatcagcggcaattacctgatggactgggcatttcatgcgctgtgcgtcgttgggctgatgatcataaccctgcgttttgcaccagtacgttttccgcagctgtgggtcaaagaggcatgatgcgacgcttgttcctgcgctttgttcatgccggatgcggctaatgtagatcgctgaacttgtaggcctgataagcgcagcgtatcaggcaatttttataatttaaactgacgattcaactttataatctttgaaataatagtgcttatcccggtcgtttatttcgcgaataacccgacaaggaacgccagccgccacgacgtttggtggaatgtcttttgtgacgatactacccgcgccaataacagaattatccccgatggtgacgcctggattaataaccacatgacttccgatccagacgttattgccaatcgttatcggaaaagagtacatctcgccgttttttctcaattcatggtgtacagggtgtcccgtaacggaaagagtaacgttgggtgcaatcagtacgttatcaccgattgttaccgtgtagtcatcgacaatggttaaattgaaatttgcataaaaattgcggcctatatggatgttggaaccgtaagagaaatagacaggcggttctacccaggcgttttcccctaccgtggcaaacatttctttaatcaggctttctcttttttcaacttctgatggatgcgagtgattaaactcatacattaacgttttcccacgaagtcttttttccggtaagccttcgcacatatcggtaaatagcttgcctgctcttattctttcggtcattggcatgttcaatgcgatcactccgttatgatatgttggtcggataaggcgctcgcgccgcatccgacattgattgcttaagcgacttcattcacctgacgacgcagcagggaaagcgggccggggccgctaagcgtgaacacggaaattaaggtgaagcccagcgccaccagacccagcaccagataagcgccctggaaaccgatgctttcatacatattgcccgccagtacagacataaaaatcatcgccagttgcttaaagaagcagaaacagaccagataaatcgtcgctgaaaaacgcacttcaaactggctggtaatatatttaaagcagcccaccagcaggaacggtacttcaaacatatgcagcgttttcagaataaccacttccagcgctgaggtggcgaacgatgagccaataatacgtacagacataatagtgccagccagcagcagggcgtttttcccaccgatgcgattaatgatcagtggcgcaaagaacataatcgaggcgttaagtaattcgcccattgtcgttacgtagccaaatacccgcgtaccctgttcaccggtagcaaagaacgaagtaaagaaattagcaaactgttggtcaaaaacatcgtaggtgcaggaaacgccaataacatacagtgacaaaaaccacagttttggctgtctgaacagttccagtgccagcttaaggctaaatgccgaatggttggcacctaccgcattggcaaccgtggcagaagagggcgcatccgttttggcgaaaaagagtaaaacggcgaggatgagtgcacagccagagcccagccagaaaacaaactgattattgatggtgaacatgatgccgacaatcgaggcacacagcgcccagccaacacagccaaacatccgcgcgcgaccaaattcgaaattactgcgacggctgactttctcaataaatgcctctactgctggcgcaccggcgttaaaacaaaagcctagataaataccaccaacaatcgatcctactaaaatgttgtattgtaacagtggcccgaagataaaaataaagaacggcgcaaacatcactaacatgccggtaataatccacagcaggtatttgcgcagcccgagtttgtcagaaagcagaccaaacagcggttggaataatagcgagaacagagaaatagcggcaaaaataatacccgtatcacttttgctgatatggttgatgtcatgtagccaaatcgggaaaaacgggaagtaggctcccatgataaaaaagtaaaagaaaaagaataaaccgaacatccaaaagtttgtgttttttaaatagtacataatggatttccttacgcgaaatacgggcagacatggcctgcccggttattattatttttgacaccagaccaactggtaatggtagcgaccggcgctcagctggaattccgccgatactgacgggctccaggagtcgtcgccaccaatccccatatggaaaccgtcgatattcagccatgtgccttcttccgcgtgcagcagatggcgatggctggtttccatcagttgctgttgactgtagcggctgatgttgaactggaagtcgccgcgccactggtgtgggccataattcaattcgcgcgtcccgcagcgcagaccgttttcgctcgggaagacgtacggggtatacatgtctgacaatggcagatcccagcggtcaaaacaggcggcagtaaggcggtcgggatagttttcttgcggccctaatccgagccagtttacccgctctgctacctgcgccagctggcagttcaggccaatccgcgccggatgcggtgtatcgctcgccacttcaacatcaacggtaatcgccatttgaccactaccatcaatccggtaggttttccggctgataaataaggttttcccctgatgctgccacgcgtgagcggtcgtaatcagcaccgcatcagcaagtgtatctgccgtgcactgcaacaacgctgcttcggcctggtaatggcccgccgccttccagcgttcgacccaggcgttagggtcaatgcgggtcgcttcacttacgccaatgtcgttatccagcggtgcacgggtgaactgatcgcgcagcggcgtcagcagttgttttttatcgccaatccacatctgtgaaagaaagcctgactggcggttaaattgccaacgcttattacccagctcgatgcaaaaatccatttcgctggtggtcagatgcgggatggcgtgggacgcggcggggagcgtcacactgaggttttccgccagacgccactgctgccaggcgctgatgtgcccggcttctgaccatgcggtcgcgttcggttgcactacgcgtactgtgagccagagttgcccggcgctctccggctgcggtagttcaggcagttcaatcaactgtttaccttgtggagcgacatccagaggcacttcaccgcttgccagcggcttaccatccagcgccaccatccagtgcaggagctcgttatcgctatgacggaacaggtattcgctggtcacttcgatggtttgcccggataaacggaactggaaaaactgctgctggtgttttgcttccgtcagcgctggatgcggcgtgcggtcggcaaagaccagaccgttcatacagaactggcgatcgttcggcgtatcgccaaaatcaccgccgtaagccgaccacgggttgccgttttcatcatatttaatcagcgactgatccacccagtcccagacgaagccgccctgtaaacggggatactgacgaaacgcctgccagtatttagcgaaaccgccaagactgttacccatcgcgtgggcgtattcgcaaaggatcagcgggcgcgtctctccaggtagcgaaagccattttttgatggaccatttcggcacagccgggaagggctggtcttcatccacgcgcgcgtacatcgggcaaataatatcggtggccgtggtgtcggctccgccgccttcatactgcaccgggcgggaaggatcgacagatttgatccagcgatacagcgcgtcgtgattagcgccgtggcctgattcattccccagcgaccagatgatcacactcgggtgattacgatcgcgctgcaccattcgcgttacgcgttcgctcatcgccggtagccagcgcggatcatcggtcagacgattcattggcaccatgccgtgggtttcaatattggcttcatccaccacatacaggccgtagcggtcgcacagcgtgtaccacagcggatggttcggataatgcgaacagcgcacggcgttaaagttgttctgcttcatcagcaggatatcctgcaccatcgtctgctcatccatgacctgaccatgcagaggatgatgctcgtgacggttaacgcctcgaatcagcaacggcttgccgttcagcagcagcagaccattttcaatccgcacctcgcggaaaccgacatcgcaggcttctgcttcaatcagcgtgccgtcggcggtgtgcagttcaaccaccgcacgatagagattcgggatttcggcgctccacagtttcgggttttcgacgttcagacgtagtgtgacgcgatcggcataaccaccacgctcatcgataatttcaccgccgaaaggcgcggtgccgctggcgacctgcgtttcaccctgccataaagaaactgttacccgtaggtagtcacgcaactcgccgcacatctgaacttcagcctccagtacagcgcggctgaaatcatcattaaagcgagtggcaacatggaaatcgctgatttgtgtagtcggtttatgcagcaacgagacgtcacggaaaatgccgctcatccgccacatatcctgatcttccagataactgccgtcactccagcgcagcaccatcaccgcgaggcggttttctccggcgcgtaaaaatgcgctcaggtcaaattcagacggcaaacgactgtcctggccgtaaccgacccagcgcccgttgcaccacagatgaaacgccgagttaacgccatcaaaaataattcgcgtctggccttcctgtagccagctttcatcaacattaaatgtgagcgagtaacaacccgtcggattctccgtgggaacaaacggcggattgaccgtaatgggataggtcacgttggtgtagatgggcgcatcgtaaccgtgcatctgccagtttgaggggacgacgacagtatcggcctcaggaagatcgcactccagccagctttccggcaccgcttctggtgccggaaaccaggcaaagcgccattcgccattcaggctgcgcaactgttgggaagggcgatcggtgcgggcctcttcgctattacgccagctggcgaaagggggatgtgctgcaaggcgattaagttgggtaacgccagggttttcccagtcacgacgttgtaaaacgacggccagtgaatccgtaatcatggtcatagctgtttcctgtgtgaaattgttatccgctcacaattccacacaacatacgagccggaagcataaagtgtaaagcctggggtgcctaatgagtgagctaactcacattaattgcgttgcgctcactgcccgctttccagtcgggaaacctgtcgtgccagctgcattaatgaatcggccaacgcgcggggagaggcggtttgcgtattgggcgccagggtggtttttcttttcaccagtgagacgggcaacagctgattgcccttcaccgcctggccctgagagagttgcagcaagcggtccacgctggtttgccccagcaggcgaaaatcctgtttgatggtggttaacggcgggatataacatgagctgtcttcggtatcgtcgtatcccactaccgagatatccgcaccaacgcgcagcccggactcggtaatggcgcgcattgcgcccagcgccatctgatcgttggcaaccagcatcgcagtgggaacgatgccctcattcagcatttgcatggtttgttgaaaaccggacatggcactccagtcgccttcccgttccgctatcggctgaatttgattgcgagtgagatatttatgccagccagccagacgcagacgcgccgagacagaacttaatgggcccgctaacagcgcgatttgctggtgacccaatgcgaccagatgctccacgcccagtcgcgtaccgtcttcatgggagaaaataatactgttgatgggtgtctggtcagagacatcaagaaataacgccggaacattagtgcaggcagcttccacagcaatggcatcctggtcatccagcggatagttaatgatcagcccactgacgcgttgcgcgagaagattgtgcaccgccgctttacaggcttcgacgccgcttcgttctaccatcgacaccaccacgctggcacccagttgatcggcgcgagatttaatcgccgcgacaatttgcgacggcgcgtgcagggccagactggaggtggcaacgccaatcagcaacgactgtttgcccgccagttgttgtgccacgcggttgggaatgtaattcagctccgccatcgccgcttccactttttcccgcgttttcgcagaaacgtggctggcctggttcaccacgcgggaaacggtctgataagagacaccggcatactctgcgacatcgtataacgttactggtttcacattcaccaccctgaattgactctcttccgggcgctatcatgccataccgcgaaaggttttgcgccattcgatggtgtcaacgtaaatgcatgccgcttcgccttccggccaccagaatagcctgcgattcaaccccttcttcgatctgttttgctacccgttgtagcgccggaagatgcttttccgctgcctgttcaatggtcattgcgctcgccatatacaccagattcagacagccaatcacccgttgttcactgcgcagcggtacggcgatagaggcgatcttctcctcctgatcccagccgcggtagttctgtccgtaaccctctttgcgcgcgcgcgccagaatggcttccagctttaacggttcccgtgccagttgatagtcatcaccggggcgggaggctaacatttcgattaattccttgcggtcttgttccgggcaaaaggccagccaggtcaggcccgaggcggttttcagaagcggcaaacgtcgcccgaccattgcccggtgaaaggataagcggctgaaacggtgagtggtttcgcgtaccaccattgcatcaacatccagcgtggacacatctgtcggccataccacttcgcgcaacagatcgcccagcagtggggccgccagtgcagaaatccactgttcgtcacgaaatccttcgcttaattgccgcactttgatggtcagtcgaaaactatcatcggaggggctacggcggacatatccctcttcctgcagcgtctccagcagtcgccgcacagtggtgcgatgcaggccgctgagttccgccagcagcccgacgctggcaccgccatcaagtttatttaacatatttaataacattagaccgcgggttaagccgcgcacggttttgtattccgtctgctcattgttctgcatattaattgacatttctatagttaaaacaacgtggtgcacctggtgcacattcgggcatgttttgattgtagccgaaaacacccttcctatactgagcgcacaataaaaaatcatttacatgtttttaacaaaataagttgcgctgtactgtgcgcgcaacgacattttgtccgagtcgtgaggtactgaaatggcaatacaacaccctgacatccagcctgctgttaaccatagcgttcaggtggcgatcgctggtgccggcccggttgggctgatgatggcgaactatctcggccagatgggcattgacgtgctggtggtggagaaactcgataagttgatcgactacccgcgtgcgattggtattgatgacgaggcgctgcgcaccatgcagtcggtcggcctggtcgatgatgttctgccgcacactacgccgtggcacgcgatgcgttttctcaccccgaaaggccgctgttttgctgatattcagccaatgaccgatgaatttggctggccgcgccgtaacgcctttattcagccgcaggtcgatgcggtgatgctggaaggggtgtcgcgttttccgaatgtgcgctgcttgttttcccgcgagctggaggccttcagtcagcaagatgacgaagtgaccttgcacctgaaaacggcagaagggcagcgggaaatagtcaaagcccagtggctggtagcctgtgacggtggagcaagttttgtccgtcgcactctgaatgtgccgtttgaaggtaaaactgcgccaaatcagtggattgtggtagatatcgccaacgatccgttaagtacgccgcatatctatttgtgttgcgatccggtgcgcccgtatgtttctgccgcgctgcctcatgcggtacgtcgctttgaatttatggtgatgccgggagaaaccgaagagcagctgcgtgagccgcaaaatatgcgcaagctgttaagcaaagtgctgcctaatccggacaatgttgaattgattcgccagcgtgtctacacccacaacgcgcgactggcgcaacgtttccgtattgatcgcgtactgctggcgggcgatgccgcgcacatcatgccggtatggcaggggcagggctataacagtggtatgcgcgacgcctttaacctcgcatggaaactggcgttggttatccaggggaaagcccgcgatgcgctgctcgatacctatcaacaagaacgtcgcgatcacgccaaagcgatgattgacctgtccgtgacggcgggcaacgtgctggctccgccgaaacgctggcagggtacgttacgtgacggcgtttcctggctgttgaattatctgccgccagtaaaacgctacttcctcgaaatgcgcttcaagccgatgccgcaatattacggcggtgcgctgatgcgtgagggcgaagcgaagcactctccggtcggcaagatgtttattcagccgaaagtcacgctggaaaacggcgacgtgacgctgctcgataacgcgatcggcgcgaacttcgcggtaattggctggggatgcaatccactgtgggggatgagcgacgagcaaatccagcagtggcgcgcgttgggcacacgcttcattcaggtggtgccggaagtgcaaattcataccgcacaggataaccacgacggcgtactacgcgtgggcgatacgcaaggtcgcctgcgtagctggttcgcgcaacacaatgcttcgctggtggtgatgcgcccggatcgctttgttgccgccaccgccattccgcaaaccctgggcaagaccctgaataaactggcgtcggtgatgacgctgacccgccctgatgccgacgtttctgtcgaaaaggtagcctgatatgcacgcttatcttcactgtctttcccactcgccgctggtggggtatgtcgacccggcgcaagaggtgctcgatgaggtcaatggcgtgattgccagcgcccgcgagcgtattgcggcattctcccctgaactggtggtgctgtttgcgccagatcactacaacggctttttctatgacgtgatgccaccgttctgtttaggcgttggagcgacggcaattggtgatttcggcagtgcggcaggagagctgcccgtgcctgtggagctggcggaggcctgtgcgcatgccgtcatgaagagcgggatcgatcttgccgtttcttactgtatgcaggtggaccacgggttcgcccagccgctggagttcctgctcggtgggctggataaggtgccagttctgcctgtgttcatcaacggtgtcgccacgccgctgcccggtttccagcgtacccgcatgttgggtgaagccattggacgtttcaccagcactctcaataaacgcgtgctgttcctgggttccggtgggctttcccatcagccgccggtgcccgaactggcgaaagccgatgcccatatgcgcgaccgtctgttggggagcgggaaagatttacccgccagtgagcgcgaattgcgtcagcaacgggtgattagcgccgctgagaagtttgttgaggatcagagaacgctgcatccgctcaacccgatttgggataaccagttcatgactttgctggagcagggacgcatacaggaactggatgccgtcagtaacgaagagctttccgccattgccggaaagtcgacacatgaaatcaaaacctgggtcgccgcttttgccgctatttctgcgtttggcaactggcgtagcgaagggcgttattaccgcccaatcccggagtggattgccggatttggctcgttaagcgccagaacagagaactgaatatgcaggagaagatgatgagttatcagccacaaaccgaagccgccaccagccgttttctgaatgtagaagaagcgggtaaaacgctgcgcatccattttaatgactgcggacaaggcgacgaaaccgttgtcctgctgcatggttccggcccgggtgctactggctgggcgaacttcagccgcaatatcgatccgctggtagaggcgggctatcgggtgatcctgctggattgtccgggttggggcaagagcgattcggtcgttaatagtggttcgcgatcggatcttaatgcacgaatcctgaaaagcgtggtggatcaactggatatcgccaaaatccacctgctgggcaactcgatggggggccatagttctgtggcgttcacccttaaatggccggagcgcgtcggcaaactggtgctgatgggcggcggtacgggcggcatgagtttgtttacgccgatgccaaccgaaggtattaagcgactgaatcagctttatcgtcagccgactatcgaaaacctgaagctgatgatggatatcttcgtttttgataccagcgatttgaccgacgccctgtttgaagcgcgcctgaataatatgctgtcgcgccgcgatcacctggaaaacttcgttaagagcctggaagctaatccgaaacagttcccggattttggcccacgtctggcggaaatcaaagcgcaaaccctgattgtctgggggcgcaacgaccgctttgtgccgatggatgcgggtctgcgtctgctgtccggcattgccggttctgaactgcatatcttccgcgactgtggtcactgggcgcagtgggaacatgccgacgctttcaatcaactggtgctgaatttcctcgcacgcccttaaggaatggtcatgacgaagcatactcttgagcaactggcggcggatttacgccgcgccgcagagcagggcgaagcgattgcaccgctgcgcgatctgattggtatcgataacgctgaagcggcttacgccattcagcacataaatgtgcaacatgacgttgcgcaggggcgtcgcgtggtagggcgtaaagtgggcctgacacatccgaaagtgcaacaacaactgggcgttgatcaaccggattttgggacgttatttgccgacatgtgttatggcgataacgaaatcattcctttttcccgtgttctgcaaccccgcattgaagcggagatcgcactggtgttgaaccgcgatttgcccgcaaccgatatcaccttcgacgaattgtataacgccattgaatgggtacttccggcgctggaagtggtggggagccgcattcgcgactggtcgattcagtttgtcgataccgtggcagataacgcctcctgtggggtgtatgtcatcggcggtccggcgcaacgtccggcggggttagacctgaaaaactgcgccatgaagatgacgcgtaataacgaagaggtttctagcgggcgcggcagcgaatgcctgggacatccgcttaatgcggccgtctggctggcacgcaaaatggccagtctgggtgaaccgctgcgcaccggagatatcattcttaccggggcattaggtccgatggtggcggtgaatgcgggcgatcgttttgaagcccatattgaaggcataggttcagttgctgcgacattttcaagcgcagccccaaaaggaagtctgtcatgagtaagcgtaaagtcgccattatcggttctggcaacattggtaccgatctgatgattaaaattttgcgtcacggtcagcatctggagatggcggtgatggttggcattgatcctcagtccgacggtctggcgcgcgccagacgtatgggcgtcgccaccacccatgaaggggtgatcggactgatgaacatgcctgaatttgctgatatcgacattgtatttgatgcgaccagcgccggtgctcatgtgaaaaacgatgccgctttacgcgaagcgaaaccggatattcgcttaattgacctgacgcctgctgccatcggcccttactgcgtgccggtggttaacctcgaggcgaacgtcgatcaactgaacgtcaacatggtcacctgcggcggccaggccaccattccaatggtggcggcagtttcacgcgtggcgcgtgttcattacgccgaaattatcgcttctatcgccagtaaatctgccggacctggcacgcgtgccaatatcgatgaatttacggaaaccacttcccgagccattgaagtggtgggcggcgcggcaaaagggaaggcgattattgtgcttaacccagcagagccaccgttgatgatgcgtgacacggtgtatgtattgagcgacgaagcttcacaagatgatatcgaagcctcaatcaatgaaatggctgaggcggtgcaggcttacgtaccgggttatcgcctgaaacagcgcgtgcagtttgaagttatcccgcaggataaaccggtcaatttaccgggcgtggggcaattctccggactgaaaacagcggtctggctggaagtcgaaggcgcagcgcattatctgcctgcctatgcgggcaacctcgacattatgacttccagtgcgctggcgacagcggaaaaaatggcccagtcactggcgcgcaaggcaggagaagcggcatgaacggtaaaaaactttatatctcggacgtcacattgcgtgacggtatgcacgccattcgtcatcagtattcgctggaaaacgttcgccagattgccaaagcactggacgatgcccgcgtggattcgattgaagtggcccacggcgacggtttgcaaggttccagctttaactatggtttcggcgcacatagcgaccttgaatggattgaagcggcggcggatgtggtgaagcacgccaaaatcgcgacgttgttgctgccaggaatcggcactattcacgatctgaaaaatgcctggcaggctggcgcgcgggtggttcgtgtggcaacgcactgtaccgaagctgatgtttccgcccagcatattcagtatgcccgcgagctcggaatggacaccgttggttttctgatgatgagccatatgaccacgccggagaatctcgccaagcaggcaaagctgatggaaggctacggtgcgacctgtatttatgtggtggattctggcggtgcgatgaacatgagcgatatccgtgaccgtttccgcgccctgaaagcagagctgaaaccagaaacgcaaactggcatgcacgctcaccataacctgagtcttggcgtggcgaactctatcgcggcggtggaagagggctgcgaccgaatcgacgccagcctcgcgggaatgggcgcgggcgcaggtaacgcaccgctggaagtgtttattgccgccgcggataaactgggctggcagcatgggaccgatctctatgcgttaatggatgccgccgacgacctggtgcgtccgttgcaggatcgaccggtacgagtcgatcgcgaaacgctggcgctgggatacgctggtgtttactcgagcttcctgcgtcactgtgaaacggcggcggcgcgttatggcttaagtgcggtggatattctcgttgagctgggcaaacgccggatggttggcggccaggaggatatgatcgttgacgtggcgctggatctgcgcaacaacaaataatgatgactgccgagaacgtgcattttgtatgcccatcccagcacgactgccggatgcggcgtgaacgccttatccggcctacggatggcgtgagaatttgtaggtctgataagacgcgttagcgtcgcatcaggcatctgcgcacgactgccggatgcggcgtgaacgccttatccggcctacggatggcgcgggaatttgtaggcctgataagacgcgttagcgtcgcatcaggcatctgcgcacgactgccggatgcggcgtgaacgccttatccggcctacgggtggcgcgagaatttgtaggcctgataagacgcgttagcgtcgcatcaggcatctgcgcacgactgccggatgcggcgtaaacgccttatccggcctacggatggcgcgggaatttgtaggcctgataagacgcgttagcgtcgcatcaggcatctgcacacgactgccggatgcgataaacgtcttgtccggcctacatttcgcccgtaggcagtcattaaatagttctgattacgcggctggcaatgtatcagtcgcgattcacctgcactcgcaacgaggttcatcttatgtcgactcgtaccccttcatcatcttcatcccgcctgatgctgaccatcgggctttgttttttggtcgctctgatggaagggctggatcttcaggcggctggcattgcggcgggtggcatcgcccaggctttcgcactcgataaaatgcaaatgggctggatatttagcgccggaatactcggtttgctacccggcgcgttggttggcggaatgctggcggaccgttatggtcgcaagcgcattttgattggctcagttgcgctgtttggtttgttctcactggcaacggcgattgcctgggatttcccctcactggtctttgcgcggctgatgaccggtgtcgggctgggggcggcgttgccgaatcttatcgccctgacgtctgaagccgcgggtccacgttttcgtgggacggcagtgagcctgatgtattgcggtgttcccattggcgcggcgctggcggcgacactgggtttcgcgggggcaaacttagcatggcaaacggtgttttgggtaggtggtgtggtgccgttgattctggtgccgctattaatgcgctggctgccggagtcggcggttttcgctggcgaaaaacagtctgcgccaccactgcgtgccttatttgcgccagaaacggcaaccgcgacgctgctgctgtggttgtgttatttcttcactctgctggtggtctacatgttgatcaactggctaccgctacttttggtggagcaaggattccagccatcgcaggcggcaggggtgatgtttgccctgcaaatgggggcggcaagcgggacgttaatgttgggcgcattgatggataagctgcgtccagtaaccatgtcgctactgatttatagcggcatgttagcttcgctgctggcgcttggaacggtgtcgtcatttaacggtatgttgctggcgggatttgtcgcggggttgtttgcgacaggtgggcaaagcgttttgtatgccctggcaccgttgttttacagttcgcagatccgcgcaacaggtgtgggaacagccgtggcggtagggcgtctgggggctatgagcggtccgttactggccgggaaaatgctggcattaggcactggcacggtcggcgtaatggccgcttctgcaccgggtattcttgttgctgggttggcggtgtttattttgatgagccggagatcacgaatacagccgtgcgccgatgcctgacgtgccttattaggcaggggcgaaagggacttcaccccaatacacctacggcgtttacaggtatactcgctaaaaattattcagcgggtttggaaacaaagatggcaaaacttaccttacaagagcagttgctcaaagcaggattagtcaccagcaaaaaagcggcgaaggtggagagaacggcgaaaaaatcgcgcgttcaggcgcgtgaagctcgggcggcggtagaagaaaataaaaaggcacagcttgagcgtgataaacagcttagcgaacagcaaaaacaagcggcgttggcgaaagaatataaagctcaggtgaagcagcttattgaaatgaaccgaatcaccattgccaatggcgatattggttttaacttcactgacggcaatctgattaagaagatttttgtcgataagctcacacaggcgcagttgattaatggtcgtctggcgattgcccgcttgttggtcgataacaatagcgaaggtgaatacgccattattcccgccagcgttgccgataaaattgctcagcgcgatgccagcagtatagtgttgcacagcgcgctcagcgccgaagagcaggatgaagacgacccgtatgccgacttcaaagtgcctgatgatttgatgtggtaaacatagataagtcgtgcgcagatgcctgatgcgacgctatgcgcgtcttatcaggcctacggtttatgggcgaagtgtagaccggataaggcgttcacgccgcatccggcagtcgtgcgccatgcctgatgcgacgctttgcgcgtcttatcaggcctacggcttacgggcgaagtgtaggccggataaggcgttcacgccgcatccggcagtcgtgctattatcaacgcatattcagtttattggcgtggtaggcaatatgctcgccaataaaactggagacaaaataatagctgtgatcataaccctcgtgataacggattaacgtcttgatattcatctcctggcagatcttttcaagatttggagtccgcagctgttctgcgtaaaaatcatcactcaacccctgatcaaccatgatttccgcaacgcgttgaccttgtgaaataagactcaccgggtcgtaatccaaccaggcatctttattttcagcaagatatgcagcaaaggcttgctgtccccacggcacttgcgatggggagacaatgggcgaaaacgccgagacgctgacatattcatctgggttacgtaacgccagcaccagcgcgcccagcccgcccatagaatgaccagagatagactttttggccgttgccggaaaatgatgcatcactaaatccggcagctcgttgcggatatagtcatacattttgtaatgttcattccacggcgcttgcgtcgcgttcaggtaaaacccggcaccttgcccgagatcgtaacggtcagcatctgcgacatgactgcctcgcggactggtgtccggcgcaacaacaataatgttgtgctcagccgcgtaacgctgcatccccgatttagtaatgaaattctgctcgttgcaggtcaggcctgaaagccagtacagcaccggcaatttttcattcgcggcttttggtgggagatagacgccgacattcatttcacatttcagtgattgggaataatgccgatacatattttgccagccgccaaagctgacatgtttttcaatgagttccatcagtcattatctcagggttaatcccccggacggctgcccggggagagtattaagaacccccgcctgaagtggacggggtaaacctgcgggaaatcagtaacgaattacggttcgaatggatttgccttcatgcatcaggtcgaaggcgtcattaatttcatccaggctcatggtatgcgtgacaaacggttccagatcgatatcacctttcatcgcatcttcaaccatgcccggtaactgggaacgacctttcacgccgccaaacgcggaacctttccatacgcgaccagtgaccaactggaatggacgggtggagatttcctgaccggcaaccgcgaccccgatgatcaccgactgaccccagccgcggtgcgcactttccagcgccgcacgcatcacgttgacgttaccgatgcattcaaaggtatggtcgataccccatttgttgatatccaacaggacatcttttatcggtttgtcgtagtcattcgggttaatgcagtcggtagcaccgaagcgacgcgccagatcgaatttcttcgggttggtatcgatagcgataatccgacccgctttcgcctgacgcgcgccctgaaccactgccagaccaatcgcgccaagaccaaacacggcaacagaatcacctggctggactttagctgtgttgtgtaccgcgccaataccggtggtcacgccacagcccagcaggcagacgtgttcatggtttgcttctggattaatttttgccagagacacttccgcgactacggtgtattcactgaatgtagagcaccccatgtagtgataaagcggctgcccgttgtaagaaaaacgggtggtgccgtctggcatcaggcctttaccctgggtttcgcgaaccgcaacacagaggttagttttgccagaacgacagaactcacactcgccgcactccgcggtgtaaagcgggatcacatggtcgccaggtttgacgctggttacgccttcaccgacttcaaccacaacgccggccccttcgtgaccgagaaccaccgggaatacaccttccgggtcatcgccggagagggtaaatgcgtcggtatggcaaacgccggtatgggtgactttaattagcacttcaccttttttcggtggtgcaacgtcaatttcaacgatttccagcggtttaccgggagcaaatgcaacggcagcacgtgatttcatctctcgctcttcctcaatatggtaatagattcagctatttaagataggcacgaaccagttcaatagtgtcgtcaacggattggctgacttcgcggctgtagcagtcatttcggtcaaacgtttcccggatatggctttcaagcacttctgccatcagcccattagccgcgccccgaacggcagcgatctgttggagtatggcacggcattcggcatcaccctccagcgaccgttccagagcatcaatctgcccccgaatacgacgaactcgagtaaggacctttttcttctcttccggagtactgggcatttcgcacctcatcatctgcatgcaatatactataggggggtattctatatgtcaatgcatacccccctatagtatataacactggagaataaaatttatccggtgaatgtggtcggaaaacaaagaggaaaggggggggggctaatcggcagggaaggccgccccggatagcgggcggcagaaggaatcagaatttccaggtcagacgggctgcaagttgcagaccgttaaaatcatcggttggggtgtcgtaccacactttacctgccgtcagcccgagattaagttgctcagtcagcggttgaatacgttgcagactgacgctcttcatgctgccgtagcgtgtttctggcgtccagtcataggtgtaagcacctgttccgcggcttagccatagttgcgtataaccagtgccgcgcgggtcattcagacgcacggaaatcatattgctataactaccacctgcatcgctggagtcataatgggtatagcggtagctggtgatcaccgggccagtatagagtgatacgccgccttgccaggcatcgacttcgacatcatcgtaatatttagtgtagcgataaccggtcgtgaaaagcgtttttggtaacagggccaggttaatatcctgacgaaaatcctggcgggcaaagaccggcgtattatccgcaaaggcaatacccgttcgggttgtcagccagttattccatttataccagaccgcaccctgaccgcgagtggcattgaaatgttcagtttcataatcacgacgcccctgggaaagattaaaaagcagcgttgcgttttcaactttcgccaccagttcagcatacgctaaattacggttgccatgatcgccagaataatcggtaaaatcgtagcccgcggtaatggaagttaacccggcataagcgggcaatgcgctaaaaatggccgccgctaataacgtccgttttatcattttaatctcctgtacggataagttcttgtcggagtgaataagttccggtaggtaaattacgttctacaatcacgcgcgggccaagttgcgtgttcggggaaataattcgcccaggcaaaataataacttgtacgccaaggcgtgaacgctgcccgatataacaacctaatttatcgcatccggtagcgataattccctctggagttcgaacagacacgggctgttcatccagacgatgattactggtacgtacttgtgcgcctaaatatgcctggtttgcaactaccgagtcggcaataaaacattgcggaccaatcgttgcttccgcttcaataaccgcatttttaatctcggtggcaaaaccaatttttacgccattgctgattattgtgccaggacgaataaacgcataattactagactggccccctgaatctccagacaaccaatatcacttaaataagtgatagtcttaatactagtttttagactagtcattggagaacagatgattgatgtcttagggccggagaaacgcagacggcgtaccacacaggaaaagatcgcaattgttcagcagagctttgaaccggggatgacggtctccctcgttgcccggcaacatggtgtagcagccagccagttatttctctggcgtaagcaataccaggaaggaagtcttactgctgtcgccgccggagaacaggttgttcctgcctctgaacttgctgccgccatgaagcagattaaagaactccagcgcctgctcggcaagaaaacgatggaaaatgaactcctcaaagaagccgttgaatatggacgggcaaaaaagtggatagcgcacgcgcccttattgcccggggatggggagtaagcttagtcagccgttgtctccgggtgtcgcgtgcgcagttgcacgtcattctcagacgaaccgatgactggatggatggccgccgcagtcgtcacactgatgatacggatgtgcttctccgtatacaccatgttatcggagagctgccaacgtatggttatcgtcgggtatgggcgctgcttcgcagacaggcagaacttgatggtatgcctgcgatcaatgccaaacgtgtttaccggatcatgcgccagaatgcgctgttgcttgagcgaaaacctgctgtaccgccatcgaaacgggcacatacaggcagagtggccgtgaaagaaagcaatcagcgatggtgctctgacgggttcgagttctgctgtgataacggagagagactgcgtgtcacgttcgcgctggactgctgtgatcgtgaggcactgcactgggcggtcactaccggcggcttcaacagtgaaacagtacaggacgtcatgctgggagcggtggaacgccgcttcggcaacgatcttccgtcgtctccagtggagtggctgacggataatggttcatgctaccgggctaatgaaacacgccagttcgcccggatgttgggacttgaaccgaagaacacggcggtgcggagtccggagagtaacggaatagcagagagcttcgtgaaaacgataaagcgtgactacatcagtatcatgcccaaaccagacgggttaacggcagcaaagaaccttgcagaggcgttcgagcattataacgaatggcatccgcatagtgcgctgggttatcgctcgccacgggaatatctgcggcagcgggcttgtaatgggttaagtgataacagatgtctggaaatataggggcaaatccaattacctatcaggcagtttgcgccaatcactaccggaccctgaataacggcaccatgacaaatacgggtattcgcgccgataacaacttcacctgcagtttcatcaataattacctggtctgcaatctgaatatttttctctttaacattaagcttcagatagtttttcagttcctgtgacagaaggttgggaataagcggttgacgcttccaccagtgcggaatagcgggtgggtttgtcgcgctgaggttcgcgtccagtaaaaaaggcaataagtccataaataatccagatggcataagctaataatacatacacaacggaaagcggcgctaaaggcaccaacaaccagcaacgatgaaaccaggcgctaaaagcaccaataacacaaactacgccgacccagataagcggaaacattgccaacaccactccatgcggcccggtggtgatgaattcattaaaccaggtagtgagataaatcccaacgccataaagcacaaccaacagcataggaaatatactgaagataccgaagcggctaaataaaagtcttttatgcaggcgcatacagaccgcgtatcccacaatccaacgccgccagcgacgccactcctcacgcgggctgttgcattcctgtgggtatacgatgcagcgattcgcctgccgaatacggtagccgtttgccaccaatgtccaggtgagatcaaggtcttcgactttagtacgatccgagaaaccgaacttacgcaatacatcagtacggaacatcccgcaggcaccgctgataataaacggtgcgccacccaggagctgctgtagcgtgcgcttcataacaatcatcggcaactttacggtcgcgcggatgtgcggtaacagacccgcgcctttcaacgcagtagagggaatgccgcctacggcatcggcaccgcgctcaatttctgccagcatatagcccattccgtcttgatcgggcggaacataggtgtcggcatcacttaaaaaaacctggtcgcaggtggcgtaattgaggccattcatcagcgcaccacctttaccggtatttttttgcgtgacggcaacaaagcggtcgccccatttgcgtttgacttccgccatgaccgcttcggtattgtccgtggagccgtcgttaacgcaaattacccggcaaaaataagggttacgcagtagattatccagtgactgcgccagacacgggccttcgttatacgcaggtataatggcgtcaatacagcctttcttttgactgggtttacgtcttagcgtacttaaaaaccatagcaacattgctatggacatacagataaatatccaggttttcatgcaatttgctcaaagaatcattttatgaattacaaagccttcacccagatcgctattgacctgttgtccgcgaaattgtgcaactgcacgcaggcgatcatgacgcatataatcgcgtcgttcctagcttttatgtttttttaatgcagcaagtttgactgtgaaatattcttctttaacggattcaaaaacctgaggcataaatgaaagccaggtacttggggtttcgtagccgagaatttgcggaatagttcggcaggcaaccattgaagcttgataaacagcaagatgatcctgatggcggtcggcatcatgcatggtatatacccgcatgatttcaacatcagaaggaatttgatttttaatgatgtcttccagggcggaaatcatatcattgagctgtaaatgagcgcgggtgtcagcaaaattaagatgaatagtttggtggcaccctaatatctttagggcgttgcgcgattcttcatggcgatcgattattccatctgtgccagagttgccggtagtcatcaccacggctgcgatataaattcctttttgcgcaagacgagcaagcgatgcgccacagcctaattctatatcgtcaggatgtgcgccaatagcaaggataccctttcttttatttgccgaagaaaggagggctgaatctaaaaccttatccacttaatgacactccattttatttattatactacaagcacaacgatgcactcagagacgtaatctctggcgcagccagatgttaatttataaatgttaaatgttgctaataactgaaaagcaagggctttcagacccgtgggttcgactgggtaatgtttctatgcaattcatatgttaagtgtttgtatgtttggtatgtatagttattttgttttatacattgtatttagatgtgatttagtttgtcaattaattgcatttaaaaaatatgttctgtgaacaagcattgtttatatacattatgtgaatgtaatatgcgagtgattgagaatgatacagtgatatatacaatgcgaatataatagttttattatatgtattgatattgatagaaataatgaagtaataaatctcgtaatgtggttgtttatgcatcactaaaatgaagtgtagtaattttcccaattgttagaacggagtaattgcatatttaatctttccttagccgtttttttgctaagaataaaatcatctgtgcgataacgactaattcttttaatgaatgtttttattcctgaatactgctcccataacaagacaggggagcagacaatcatggcaatttcatcgcgtaacacacttcttgccgcactggcattcatcgcttttcaggcacaggcggtgaacgtcaccgtggcgtatcaaacctcagccgaaccggcgaaagtggctcaggccgacaacacctttgctaaagaaagcggagcaaccgtggactggcgtaagtttgacagcggagccagcatcgtgcgggcgctggcttcaggcgacgtgcaaatcggcaacctcggttccagcccgttagcggttgcagccagccaacaggtgccgattgaagtcttcttgctggcgtcaaaactgggtaactccgaagcgctggtggtaaagaaaactatcagcaaaccggaagatctgattggcaaacgcatcgccgtaccgtttatctccaccacccactacagcctgctggcggcactgaaacactggggcattaaacccgggcaagtggagattgtgaacctgcagccgcccgcgattatcgctgcctggcagcggggagatattgatggtgcttatgtctgggcaccggcggttaacgccctggaaaaagacggcaaggtgttgaccgattctgaacaggtcgggcagtggggcgcgccaacgctggacgtctgggtggtgcgcaaagattttgccgagaaacatcctgaggtcgtgaaagcgttcgctaaaagcgccatcgatgctcagcaaccgtacattgctaacccagacgtgtggctgaaacagccggaaaacatcagcaaactggcgcgtttaagcggcgtgcctgaaggtgacgttccggggctggtgaaggggaatacctatctgacgccgcagcaacaaacggcagaactgaccggaccggtgaacaaagcgatcatcgacaccgcgcagtttttgaaagagcagggcaaggtcccggctgtagcgaatgattacagccagtacgttacctcgcgcttcgtgcaataaaaggaggcgcagatgctgcaaatctctcatctttacgccgattatggcggcaaaccggcactggaagatatcaacctgacgctggaaagcggcgagctactggtggtgctggggccgtccggctgcggtaaaaccaccctgctgaatctgattgccggttttgtgccttatcagcatggcagcattcaactggcgggtaagcgtattgagggaccgggagcagagcgtggcgtagtttttcagaatgaagggctactaccgtggcgcaatgtacaggacaacgtggcgttcggcctgcaattggcaggtatagagaaaatgcagcgactggaaatcgcgcaccagatgctgaaaaaagtggggctggaaggcgcagaaaaacgctacatctggcagctttccggtggtcaacgtcagcgggtggggattgctcgtgcgctggcggcgaatccccagctgttattactcgacgaaccgtttggtgcgctggacgccttcacccgcgaccagatgcaaaccctgctgctgaaactctggcaggagacgggcaagcaggtgctgttgattacccacgatatagaagaagcggtgtttatggcgactgaactggttctgctttcatccggccctggccgtgtgctggagcggctgccgctcaactttgctcgccgctttgttgcgggagagtcgagccgcagcatcaagtccgatccacaattcatcgccatgcgcgaatatgttttaagccgcgtatttgagcaacgggaggcgttctcatgagtgtgctcattaatgaaaaactgcattcgcggcggctgaaatggcgctggccgctctcgcgtcaggtgaccttaagcattggcacgttagcggttttactcaccgtatggtggacggtggcgacgctgcaactgattagcccgctatttttgccgccgccgcaacaggtactggaaaaactactcaccattgccggaccgcaaggctttatggacgccacgctgtggcagcatctggcagccagtctgacgcgcattatgctggcgctatttgcagcggtgttgttcggtattccggtcgggatcgcgatgggacttagccctacggtacgcggcattctggatccgataatcgagctttatcgtccggtgccgccgctggcttatttgccgctgatggtgatctggtttggtattggtgaaacctcgaagatcttactgatctatttagcgatttttgcaccggtggcgatgtcggcgctggcgggggtgaaaagcgtgcagcaggttcgcattcgtgccgcccagtcgctgggtgccagccgtgcgcaggtgctgtggtttgtcattttgcccggtgcgctgccggaaatcctcaccggattacgtattggtctgggggtgggctggtctacgctggtggcggcggagctgattgccgcgacgcgcggtttaggatttatggttcagtcagcgggtgaatttctcgcaactgacgtggtgctggcggggatcgcggtgattgcgattatcgcctttcttttagaactgggtctgcgcgcgttacagcgccgcctgacgccctggcatggagaagtacaatgagtgaacgtctgagcattaccccgctggggccgtatatcggcgcacaaatttcgggtgccgacctgacgcgcccgttaagcgataatcagtttgaacagctttaccatgcggtgctgcgccatcaggtggtgtttctacgcgatcaagctattacgccgcagcagcaacgcgcgctggcccagcgttttggcgaattgcatattcaccctgtttacccgcatgccgaaggggttgacgagatcatcgtgctggatacccataacgataatccgccagataacgacaactggcataccgatgtgacatttattgaaacgccacccgcaggggcgattctggcagctaaagagttaccttcgaccggcggtgatacgctctggaccagcggtattgcggcctatgaggcgctctctgttcccttccgccagctgctgagtgggctgcgtgcggagcatgatttccgtaaatcgttcccggaatacaaataccgcaaaaccgaggaggaacatcaacgctggcgcgaggcggtcgcgaaaaacccgccgttgctacatccggtggtgcgaacgcatccggtgagcggtaaacaggcgctgtttgtgaatgaaggctttactacgcgaattgttgatgtgagcgagaaagagagcgaagccttgttaagttttttgtttgcccatatcaccaaaccggagtttcaggtgcgctggcgctggcaaccaaatgatattgcgatttgggataaccgcgtgacccagcactatgccaatgccgattacctgccacagcgacggataatgcatcgggcgacgatccttggggataaaccgttttatcgggcggggtaatacgagagtggacggtcccctcgcccccttggggagagggttagggtgagggggcgttcaccgtactttcaacaggttaactccccctttctgagaggaaacaaaattaacgcagaatcttcttctcagccaaatccagcgcaaagtagctgaaaatcagatccgcacccgcacgcttaatcgaacctaagctttcgagcacgactttctcttcatctatagcacccgccagcgcggcgaacttaatcatcgcatactcaccgctcacctgatacgcgccaatcggcaattcagtacgttcacgcagctcacgcacgatgtcgaggtacgctccagcaggtttaaccatcaggcagtctgcgccctgggcttcatccagcagtgattcacgaatcgcctcacgacggttcattgggttcatctgatagcttttgcggtcgccttttaatgcgcttccggcagcttcacggaacgggccataaaaggaggaggcgaacttggtcgaatacgacataatcgccgtatctttaaatcccgcagcgtccagcgcctgacgaatcgcctgtacctggccgtccatcgcggcggaaggggcgatgaagtctgcacctgcagcagctgcaaccacggcttgcttgcctaaattttccagagtcgcgtcgttgtcgacgccatgctcgcacagcacaccgcagtgaccgtgagaagtgtattcacagaagcaggtgtctgacataacgatcatttctggcacggtctgcttgcagatgcgcgacatacgcgccaccagtccatcttcccgccaggcatcgctgccggtttcatcggtatggtgagagatgccaaaagtcatcacggaacgaataccggcgttggcgatgcgttcaatttcgcgtgccagatgtttctctggaatgcgcatcacgcctggcatggcttcaacggctttgtagtcgtcaatttcttcttcaacaaagatcggcaacaccaggtcgttaaggctaagtgttgtctcttcaaacatagcgcgcagcgcaggagatttgcgcaggcgacgagggcgttggattaagtctgtcatggtctgcctgatgtttgtggaatcgaggggcatagtatacctgaagcagggtagggatgttttacgaaagttgtcgcgatgttgacaagaagagaatggaagagaggccaggacatctttttaatagaaacagcaataattttatattcactgaaaatatttttaatctttatttatagctgttggttattattttttggagtttggttgcgctgctataaattgaataattaaaactttgttgcatattcataggatatttatctggtttgtgtttgtgatatttattatgcgtatgcttcaaaaacaaaattatctgcaacatgttgaaatactgtgcttttatgaatttgatgcgtgtttttctccataaattatatatgtccacattcggacttaggggaaagaataattgaaccattcgtctgtaacgcagcataatcgttagcgcgaaacataatatgttttctatgcattgataattgatggatcaacttattacgtccctgaggagggatgacaaatgcactcctggaaaaagaaacttgtagtatcacaattagcattggcttgcactctggctatcacctctcaggctaatgcagcaaactatgatacctggacttatatcgataatcccgttacagcacttgattgggatcatatggataaggcaggcactgtagatggcaactatgtaaactatagtggttttgtctattacaacaacaccaatggtgatttcgatcagtcctttaacggcgataccgttaacggcacgatctcaacctattatttgaaccatgattatgcagacagtactgctaatcagcttgatatcagtaattcagtgattcacggttcgattacttctatgctgcctggcggttattatgatcgttttgatgcagatggtaataatctgggtggatatgatttttacactgatgcggttgttgatacacactggcgtgatggtgatgttttcactttgaacattgctaacactactattgatgatgattatgaagctctttacttcactgattcttataaagatggtgatgtaaccaagcacacaaatgagacatttgatacaagtgaaggcgttgctgttaatcttgatgtagaaagtaacatcaatatttccaataactcccgcgttgcaggtattgcattatctcaaggtaatacttacaacgaaacctacactaccgaatctcatacttgggataacaatatctctgtaaaagattccacagtgacttcgggttcaaattatatcctggatagcaatacttatggcaaaactggtcactttggcaattctgatgaaccgagtgattatgctggcccgggtgatgttgcaatgtcctttactgcttcaggttccgactatgcgatgaagaacaatgtattcctcagcaattcaacgctgatgggtgatgttgcctttaccagcacctggaatagtaattttgatccgaatggtcatgattccaacggtgacggggtgaaagataccaacgggggttggactgatgatagcctcaacgttgatgaactaaatctcactctcgataacggaagcaagtgggttggtcaggcaatttataacgttgctgaaacgtcagcaatgtatgatgttgctacaaacagccttactcctgatgcaacatatgaaaacaatgactggaaacgtgttgttgatgacaaggtcttccagagcggtgtatttaacgtagcgttgaataacggttctgaatgggatactacaggtcgttccatcgttgataccttgacagttaataatggttctcaggttaatgtttcggaatctaaattaacttcagatactatcgatttaactaacggttcttcgctgaacattggtgaagatggctacgttgataccgatcatctgactattaactcctacagtactgttgcgttgaccgaatctactgggtggggggctgattgatcctacccacgtaatatggacacaggcctaagcgaggttcttgttttcaaattgttccggactgaggccgccacaccaactgtgccgccgccaccgattgtaatcacattcgatataattaaacaccgttgcccgcattatttcccggctgataaagtgttctccatggatacattccactttcagcgaatgaaagaagctttccacgcaggcattatcgtagcagcaaccttttgcgctcatacttccacgcagattatgccgcttcagttgcgcctgataatctgctgaacagtactggcctccacggtccgtgtgaacgataacgttccggggcctcttacgccgccacagcgccatctgcagggcatcgcaggccagttgcgccgtcatgcgtggcgacattgaccagccaataacggcacgtgaccacaggtcaatgaccactgccagatacagccagccttcatctgtacgtaagtacgtgatgtctcctgcccacttctggttcgggccactggcgtaaaaatcctgctccaacagattttctgacacaggcaggccgtgtgcgcggtagctgaccgggctgaacttccgggaggcctttgccctcagtccctgacggcgcaggcttgccgccacggtttttacgttaaaggggtaaccctgagcacgcagttcatccgtcaggcgtggggcaccgtaacgctgttttgaccgggtaaaagccgcgaggacaacgctgtcgcagtgttggcggaactgctgacgcgtgcttatccttgtccgccgctgacaccacgtataccagccgctgcgggccacccggagcacgcggcacattgctttgatgctgaactcagcctgatgtttttcaataaagacatacttcatttcaggcgcttcgcgaagtatgtcgcggccttttggaggatagccagctcttcatcccgttctgccagctggcgtttgagacgtgcaatctcggtagacatctccagttcacgttcagaagacgtctgctgattttgctgtttactgcgccagttgtagagttgtgattcatacaggctgagttcacgggctgcggcagtaacaccgatgcgttcagcaagcttcagggcttcactgcgaaattcaggcgaatgctgtttacggggttttttactggttgatactgtttttgtcatgtgagtcacctctgactgagagtttactcacttagccgcgtgtccactattgctgggtaagatcagattacaacctgtacgccaatactatcaccgtaactaacggcggtgtattggatgtgaacgttgatcagttcgatactgaagctttccgtactgacaaactggaactgaccagcggcaacatcgctgaccataacggtaacgtagtatctggtgtgttcgatatccatagcagcgattacgttctgaacgctgatctggtgaacgaccgtacctgggatacttccaagtctaactacggttacggtattgttgctatgaactctgatggtcacctgactatcaacggtaacggcgacgtagacaacggtactgaactggataacagctctgtagacaatgttgttgctgcaaccggtaactacaaagttcgtatcgacaacgcaactggcgctggcgctatcgctgattacaaagataaagaaattatctacgtaaacgacgtcaacagcaacgcgaccttctctgctgctaacaaagctgacctgggtgcatacacctatcaggctgaacagcgcggtaacaccgttgttctgcaacagatggagctgaccgactacgctaacatggcgctgagcatcccgtctgcgaacaccaatatctggaacctggaacaagacaccgttggtactcgtctgaccaactctcgtcatggcctggctgataacggcggcgcatgggtaagctacttcggtggtaacttcaacggcgacaacggcaccatcaactatgatcaggatgttaacggcatcatggtcggtgttgataccaaaattgacggtaacaacgctaagtggatcgtcggtgcggctgcaggcttcgctaaaggtgacatgaatgaccgttctggtcaggtggatcaagacagccagactgcctacatctactcttctgctcacttcgcgaacaacgtctttgttgatggtagcttgagctactctcacttcaacaacgacctgtctgcaaccatgagcaacggtacttacgttgacggtagcaccaactccgacgcttggggcttcggtttgaaagccggttacgacttcaaactgggtgatgctggttacgtgactccttacggcagcgtttctggtctgttccagtctggtgatgactaccagctgagcaacgacatgaaagttgacggtcagtcttacgacagcatgcgttatgaactgggtgtagatgcaggttataccttcacctacagcgaagatcaggctctgactccgtacttcaaactggcttacgtctacgacgactctaacaacgataacgatgtgaacggcgattccatcgataacggtactgaagggtctgcggtacgtgttggtctgggtactcagtttagcttcaccaagaacttcagcgcctataccgatgctaactacctcggtggtggtgacgtagatcaagactggtccgcgaacgtgggtgttaaatatacctggtaatattcttcactccgaagaaatactggtaatttaatctaaataatgcccgtcaaggatttgacgggcattactgcaaaggacgcgcaaatgttatctgtagttaaacctcttcaggaatttggtaagctcgataaatgtttgtccagatacggtacgcgcttcgagtttaataatgaaaagcaagttatattttccagtgatgtcaataacgaagatactttcgttattttagagggagttatctctctgcgtagagaagaaaacgtacttatcggtattacccaggctccttatattatggggctggctgatggtttaatgaaaaacgatataccatacaaattaatatcagaaggaaattgtacgggatatcatctaccagccaaacaaaccattacgcttattgaacaaaatcaactctggcgagacgctttttactggttagcctggcaaaatagaattctggaattacgcgacgtgcagctcattgggcataattcctacgaacaaatccgcgcaacattattatcaatgattgactggaatgaagaattgcgatcacgtattggtgtgatgaattatatccatcaacgtacacgcatatcgcgttctgtcgtcgcagaagttctcgctgctttgcgtaaaggcggctatatcgaaatgaataaaggcaaactggtcgctatcaaccgtttgccttcagagtattaatcaggacgcggggataaccaacggtttattcccgcttagctcggtcaccaggtcattgatgccatcgctcatatttttaaagcgcgtcaacggcgaacgagtgaccaccacaaacgcgccaatattcttctgcgggatcatcgccatataggtaatgaaaccgccaccaccgcctgtcttctgaataatccccggacgaccctctttcggggccatatatacccaacctaaaccaagcgcatccgctttgccggggacatccatgccaatcactttcgtaaactgcgcgcgctgataaatcaacgtctgcatgcgatctgcctggttactgcgctgataaaaatcagatgacaaatactgctgcatccagcgcatcatatcgccaggcgtggaatagacgccgccgctgccaattgccgccagcgtgttattgcacggactggcaccgcgctcagcaaccattaaacggcggcactgatccggtgagggggtgtaggtggtgtctttcatccccaatggacgggtaatctgctcttcaaacaactgggtataaggcttgccggacgcattcgccagtgcatctgccagcaggtcgaacgcaaggttagagtacgccgcctgactgcctggcgcggctttcagcttcgccgtagaaaggtatttccagcgttgctcgcgcgttggccagacaaacaccggacgatgtgccgcgccaccgggctgttcacggggcagggcgctggtatgggttgccagattgaccagcgtaatgggcgtcccattgtaggttggcacgcgtgcgcctggcggagcatatttacttagcggatcgtttaacttcacggtcccctggtcgagcaatttcaccagcatctcactggtcattagcttggtgagggaagcaatacgcacgaccgaatccagctgcgggcgaacgttattaccaggtcgcgtttcgccataactgcgaaagacgcgctggttaccgtcgataacaaccagagccatccccgtggcaccgctgccgtaaaaaatatgatcggcataacgatcgacaatatcagaggcaaactccggttcagtgatcggctgcgccgcatggacggaggtcaatgacgccgcacacagcacggcagaaaaaagcagactacgtttcaacggtggtgtccatagattgaatgaaggtaactgagcgtatttatactactcattgatagattgcaaagggcgaattagtgcaataatagtgttaaaaacgtaacggcgcgtaaacacgatctttttcctgctcaccaatgcctgcatttgtgatcctgcgcgtgttaatccgcttatgtaaacaatctttggtttgtgaaatccgtcgaaacaattcttatggtcaggctggcgaactaagcgccttgctatgggtcacaatgggcggtttcatttggctgacgctttgtagcggtcatgcggttaatacacagcagttgttaaaacgataagaagttagcaggagtgcatatgtttaagtcttttttcccaaagccgggaacgttttttctctcggccttcgtttgggcattgattgccgttatcttctggcaagccggtgggggtgactgggtggcgcgtatcaccggcgcttccgggcagatcccgattagcgccgcgcgtttctggtcgttggatttcctgattttttacgcttactacattgtttgcgtaggactttttgcattgttctggtttatctacagcccgcatcgttggcaatactggtcaatactcggtactgcactgatcatcttcgtcacctggtttttggtggaagtcggggtcgccgtcaacgcctggtatgcgccgttctatgatctgattcaaaccgcgctaagttcgccgcataaagtcaccatcgaacaattttaccgcgaagtgggcgtctttctggggattgcgctgatcgctgtggtgatcagtgtgctgaacaacttctttgtcagtcactacgtgttccgctggcgtacagcgatgaacgaatattacatggcgaactggcaacaactgcgtcatatcgaaggggccgcacagcgtgtgcaggaagacaccatgcgttttgcttcaacgctggagaatatgggcgtcagttttatcaacgccatcatgacgttgatcgccttcctgccggtgctggtaacgctctccgcgcatgtgccggagctgccgattatcgggcacattccgtatggtctggtgattgccgcaatcgtctggtcgctgatggggaccggattgctggcagtggtagggatcaaactgccggggctggagtttaaaaaccagcgtgtagaggctgcctaccgtaaagagctggtttatggtgaagacgatgccacgcgcgcgacgccgcctacggtacgcgagctgtttagcgccgtacggaaaaactatttccgcctctattttcactatatgtatttcaacatcgcccgcattctctatttgcaggtcgataacgttttcggtttgttcttgctgtttccgtcaattgttgccggtacgattacgctcggcctgatgacgcagattaccaacgtttttggtcaggttcgcggtgctttccagtacctgattaactcatggaccacactggttgagttgatgtctatctacaaacgtctgcgcagctttgaacatgagctggatggtgacaaaattcaggaagtaacccataccttgagctaaaaaggagaagtaatgtcgcgcgtcaatcctctatcttcgctgtcattgttggcggttctggttttagcggggtgtagtagtcaggctccgcaaccgttgaaaaagggcgaaaaagcgatagatgtagcgagcgtcgtgcggcagaagatgcctgcgagcgtgaaagaccgcgatgcctgggcgaaagatctcgccaccacctttgaaagtcaggggctggcaccgacgctggaaaacgtctgctcggtgctggcggtggcgcagcaggagtcaaattatcaggcagatccggccgttccgggcttaagcaagatcgcctggcaagagattgaccgtcgtgctgaacggatgcacattcctgcttttctggttcataccgcgctaaaaatcaaatcgccaaacggcaaaagttatagcgaacggttagattcggtgcgtacagaaaagcaattgagcgcgatttttgacgatctgatcaacatggtgccaatggggcagacgctgtttggttcgctcaatccggtgcgcaccggtgggccgatgcaggtcagcattgcttttgccgaacagcataccaaagggtatccgtggaaaatggacggtacagtccgtcaggaagtcttcagtcgccgcggcgggttgtggtttggtacttaccatttactgaattatcccgccagttatagcgcaccgatataccgttttgctgattttaacgctggctggtacgccagccgtaatgccgcgtttcagaacgcggtcagtaaggccagcggcgtgaagctggcactggacggtgatttaattcgttacgacagtaaagaacccgggaaaaccgaactggcaacgcgcaaactggctgcaaaactggggatgagcgacagcgaaattcgccgtcagttagagaaaggtgacagcttctcttttgaggagacggcgctgtacaagaaagtttatcaacttgccgaaacgaaaacgggtaaatcactcccccgcgaaatgttgcctggcattcaactggaaagcccgaaaatcacccgcaacctgactacggcctggtttgcgaagcgcgtagacgaacggcgggcgcgttgtatgaaacagtgatcaaacaggaatgtcaggccagataaggcgtttcaggccgcatctgacaatgtaaaacttactggcggcgatgtcgccagtgcagccatagcgccaccactgcaaaaatgaggcagcctactaaaaacgggatcagcccgaaaatggtgccgacacctaaaccaatttccacccgtgggcgacctgtttcctggacctgcattaaacgctcatagacgccgggcgcatgcactaacaggttcagcaattgcgccccagcccaaaagcaaaacagcacaaacaacgcataggcaatgttgccaggcgttgaagaggcattgcgatattttccgctaaacagcgattttgacagggtgaaatcagccataaaaacctccggaagtcatctgcttctcttctggtgtgataccagcggcttatggcaagtctgacaggtcatttagattgtcaatatcagaatcatggtaaattgatgttgggaatattcccgaagcgtgaatcttcgttgtgagtcacaaaatggcaaccttaagttaaatttattaacaattacgaaaatgttgtctacaccacagacggttgttgcagaatatgcaaggatgttgtttttcgttaacggagctgccatgaatctgcctgtaaaaatccgccgtgactggcactactatgcgttcgccattggccttatattcattcttaatggcgtggtggggttactgggatttgaagcaaaaggttggcagacctatgccgtcggtctggtgacgtgggtgattagtttctggctggcggggttgattattcgtcgtcgcgatgaagaaactgaaaacgcccaataagaatattatcgggcgttaaaatattacattgtggttttcaatgcgttatccgcagcgtgacgctccagcgccagttcaatcaaacgtgtgatcagatcggtgtaacccagaccgctggcttgccacagcttcggatacatactgatattagtgaagccaggcagggtgttgatctcgttgatcaccacttcgttctctggggttaaaaacacgtctacacgcgccatgcctgcgcatcccaacgtttgataagcctgaacggcaatcgcccggatcttatcgttgatttctggcgcaatggctgccggaactaccactttcgcgccatcttcgtcaatgtacttggtgtcgtaggcatagaaatcgctggtgagtacgatctctccacaggtgctggcttgcggattgtcgttgcccagaactgcgcattcgatctcacgacctttgatcccttgctcaacgatcactttatgatcgaactcgaacgccagatcgacggcaattgcgtactgttcttcactggttactttgctgacaccaacagaagagccctgattagccggttttacaaacagtggtaaccccagtttagactccacttcggcaaaactaatgttgtgacgattggcgcgcgtcagggtaataaatggcgcaatgttcagcccggcatcgcgtagcagacgtttggtgacatctttgtccatacaggctgctgaagccagaacatcagaacctacaaacggtaaattggcgacccgcagcattccctgcaaggaaccatcttcgcccagcgtaccgtggacaatcgggaaaatgacatccaccgtcggcaacggctgaccgttttgcgcgtcgataagctgatgctcatgtttacctggcacctgcgcaaggctggtcgccgaagggcgcaacgcaatatgggcaggatcgtctgcatttagcagataattgctggcatcgctgacgtgccattgcccttgtttatcaatgcccagcagcacaacgtcgaagcgacttttatcaatggcatcgacaatgttttttgccgattgcagagacacttcatgttccgctgatttaccaccaaaaacgattcctacccgcagtttttccatcttaaaaacctatcccgtctaacacaaagtgcatacattaccacgacaaaacgggggattcgcggccttctgaaagattgttgcaatcttctgctgacaaagcgtgcaacgtactggtgaagaaagtgcgttatctcaaagatgtgcgcaagatcacaaaaatgatgaacgggaagctaatttattcctggcttaaatggccatgcggtgagtttttttctcttaattataagttaacgaagagaatatatttcataacttttatttataataaaggttgataattaaaagcctatattttgtgtgggtaattatttaaataagagaaacgtttcgctggtaatcaaacaaaaaatatttgcgcaaagtatttcctttgtcataaaaataatacttccagacactatgaagttgtgaaacataatgttaacttctccatactttggataaggaaatacagacatgaaaaatctcattgctgagttgttatttaagcttgcccaaaaagaagaagagtcgaaagaactgtgtgcgcaggtagaagctttggagattatcgtcactgcaatgcttcgcaatatggcgcaaaatgaccaacagcggttgattgatcaggtagagggggcgctgtacgaggtaaagcccgatgccagcattcctgacgacgatacggagctgctgcgcgattacgtaaagaagttattgaagcatcctcgtcagtaaaaagttaatcttttcaacagctgtcataaagttgtcacggccgagacttatagtcgctttgtttttattttttaatgtatttgtacatggagaaaataaagtgaaacaaagcactattgcactggcactcttaccgttactgtttacccctgtgacaaaagcccggacaccagaaatgcctgttctggaaaaccgggctgctcagggcgatattactgcacccggcggtgctcgccgtttaacgggtgatcagactgccgctctgcgtgattctcttagcgataaacctgcaaaaaatattattttgctgattggcgatgggatgggggactcggaaattactgccgcacgtaattatgccgaaggtgcgggcggcttttttaaaggtatagatgccttaccgcttaccgggcaatacactcactatgcgctgaataaaaaaaccggcaaaccggactacgtcaccgactcggctgcatcagcaaccgcctggtcaaccggtgtcaaaacctataacggcgcgctgggcgtcgatattcacgaaaaagatcacccaacgattctggaaatggcaaaagccgcaggtctggcgaccggtaacgtttctaccgcagagttgcaggatgccacgcccgctgcgctggtggcacatgtgacctcgcgcaaatgctacggtccgagcgcgaccagtgaaaaatgtccgggtaacgctctggaaaaaggcggaaaaggatcgattaccgaacagctgcttaacgctcgtgccgacgttacgcttggcggcggcgcaaaaacctttgctgaaacggcaaccgctggtgaatggcagggaaaaacgctgcgtgaacaggcacaggcgcgtggttatcagttggtgagcgatgctgcctcactgaattcggtgacggaagcgaatcagcaaaaacccctgcttggcctgtttgctgacggcaatatgccagtgcgctggctaggaccgaaagcaacgtaccatggcaatatcgataagcccgcagtcacctgtacgccaaatccgcaacgtaatgacagtgtaccaaccctggcgcagatgaccgacaaagccattgaattgttgagtaaaaatgagaaaggctttttcctgcaagttgaaggtgcgtcaatcgataaacaggatcatgctgcgaatccttgtgggcaaattggcgagacggtcgatctcgatgaagccgtacaacgggcgctggaattcgctaaaaaggagggtaacacgctggtcatagtcaccgctgatcacgcccacgccagccagattgttgcgccggataccaaagctccgggcctcacccaggcgctaaataccaaagatggcgcagtgatggtgatgagttacgggaactccgaagaggattcacaagaacataccggcagtcagttgcgtattgcggcgtatggcccgcatgccgccaatgttgttggactgaccgaccagaccgatctcttctacaccatgaaagccgctctggggctgaaataaaaccgcgcccggcagtgaattttcgctgccgggtggtttttttgctgttagcaaccagacttaatggcagatcacgggcgcatacgctcatggttaaaacatgaagagggatggtgctatgaaaataacattactggttaccttgcttttcggtctggtttttttaaccaccgtcggcgctgccgagagaactttaaccccacaacaacagcgtatgacctcctgtaatcagcaggcgacggcgcaggcgttgaaaggggatgctcgtaagacctacatgagtgattgcctgaagaacagcaagtctgcgcctggcgaaaaaagtttgacgccacagcagcaaaagatgcgcgaatgcaataatcaagcaacacaacaatctctgaaaggtgatgatcgtaataagtttatgagtgcctgcctcaagaaagccgcctgatacctgatagtgctaacgggtgagctacgaaaatggctcacccgaaatatcatacttctgcctttagctccgtctctataatttgggaaaattgtttctgaatgttcccaaaaataatgaatgatgaaaactttttcaaaaaagcggcggcgcacggggaggaacctcctttaactcctcaaaacgaacatcagcggtccgggctgcgcttcgcccgtcgcgtcagactaccccgtgcggttggcctggctggcatgttcttaccgattgcttcaacgctggtttcacacccgccgccgggctggtggtggctggtgttggtcggctgggcgttcgtctggccgcatttagcctggcagatagcgagcagggccgtcgatccgcttagccgggaaatttacaacttaaaaaccgatgcagtattagcgggaatgtgggtaggcgtaatgggcgtaaacgtgctgccttccaccgcgatgttgatgattatgtgtctgaatttgatgggggcaggcggcccccgtctgtttgtcgcgggtctggtgttgatggtggtttcctgccttgtcaccctcgagctgacgggcattaccgtgtcgttcaatagtgcgccgctggaatggtggctctcccttcccattattgtcatttatcctctgctgtttggctgggtcagctaccagacggcaaccaaactggcggaacataaacgcaggttgcaggtcatgagtacccgcgacggcatgacgggcgtgtataaccgacgtcattgggaaactatgttacgcaatgaatttgataactgtcggcggcataatcgcgatgcaacgttactgattatcgatatcgaccatttcaagagcatcaacgatacctggggccatgatgtgggcgatgaagcgattgtggcgcttacccgacagttacaaattaccctgcgcggtagcgatgtgattggtcggtttggcggcgatgagtttgcagtaatcatgtccggtacgccagctgagagcgccattaccgccatgttacgggtgcatgaagggctaaatacattacgtttgccgaatacgccacaggtaactttacggattagtgtgggggttgcgccgctgaacccacaaatgagtcactatcgtgagtggttgaaatcggcagatttggcgctttacaaagcaaagaaagccggacgtaaccgcaccgaagtggcggcctgacgtccggcgaaagtcatcaggatttgctgagtttttctgatttttccatacacttcgtcatcgcttcgatcactgcagcacggaagcctttctcttccagtacgcgtaccgcttcaatggtggtgcctcccggtgagcagaccatatctttcagtgcccccggatgttctcccgtttccagcaccatttttgcggaacccattaccgcctgagcggcaaatttatacgcctgggcgcgtggcatcccgcccagcacggcggcgtcggccatcgcttcgataaacataaatacgtaggctggcgaagaaccgctcacaccgaccaccgggtggatcatcggctcagcaattacttccgcttcgccaaagcagcggaaaatattcagcacatcagcggtatcttctggggttaccagcgcgtttggcgttacggaggtcatcccggcattaaccagtgcgggagtgttcggcatggcgcggataattttccggtcatggcccagcgcgcgggcaagctggtcgagcgtgacacctgcagcaatagaaacgaccagagagtctttattcaggctggaggtgatttcgctaagcactttaatcatgatgccaggtttaacggcagcaaaaatgatgtcggcgatttgcgccacttcttgcgccgattctgcggcgttgatgccgaactggtcatgcagggcggcgactttatccggggagggggtgtatacccagatttgccctggaagcacctgaccgctggcaatcagaccgccgagaatggcttttcccatattgccgcagccaataaaaccgattttcttttccattgcctcactcctgccgtgaaattcattgttttgataatcgctggcagaagcataaacagaactatgccggaaggcaaaagcgcgacacaatagaggattacccaacaaaggatgactttatgacaatttgggtggatgccgacgcgtgtcccaatgtaattaaagagattttgtatcgcgcggcggaacgtatgcagatgccgctggtactggtagcaaaccagagtttacgcgtgccgccatcgcgatttattcgtacgctgcgcgtcgcggcaggtttcgacgttgccgataacgaaattgtccggcagtgtgaagcgggcgatttggtgatcaccgcagatatacctttggctgctgaagccatcgagaaaggcgctgcggcgcttaatccgcgcggcgaacgttacacgccagcgaccattcgtgagcgcctgacgatgcgcgattttatggataccttacgtgccagtgggatccagaccggcggaccagatagcctttcacaacgtgaccgccaggcctttgccgcggagctggagaagtggtggctggaagtgcaacgtagtcgtggctaaatgtaatttattatttacacttcattcttgaatatttattggtatagtaaggggtgtattgagattttcactttaagtggaattttttctttacaatcgaaattgtactagtttgatggtatgatcgctattctcatgacaccggctttcgccgcattgcgacctattggggaaaacccacgatgacacaacctctttttctgatcgggcctcggggctgtggtaaaacaacggtcggaatggcccttgccgattcgcttaaccgtcggtttgtcgataccgatcagtggttgcaatcacagctcaatatgacggtcgcggagatcgtcgaaagggaagagtgggcgggatttcgcgccagagaaacggcggcgctggaagcggtaactgcgccatccaccgttatcgctacaggcggcggcattattctgacggaatttaatcgtcacttcatgcaaaataacgggatcgtggtttatttgtgtgcgccagtatcagtcctggttaaccgactgcaagctgcaccggaagaagatttacggccaaccttaacgggaaaaccgctgagcgaagaagttcaggaagtgctggaagaacgcgatgcgctatatcgcgaagttgcgcatattatcatcgacgcaacaaacgaacccagccaggtgatttctgaaattcgcagcgccctggcacagacgatcaattgttgattttcgagcgcctatacttaacgttcatcccgtgaaataaggaagaacgatgccaacgaaaccgccttatcctcgtgaagcatatatagtgacgattgaaaaaggaaagccaggacagacggtaacctggtaccaactcagagccgatcatcctaaaccagactcgttgatcagtgaacatccgaccgctcaggaagcgatggatgcgaaaaaacgctatgaggaccctgacaaagagtgaccgcatcagactgctcggaagggattctgagtgccactacaagggatctgcgtcacatttttcataattcatgtttttctaataattagaatattaaacaataacaatccattactggaatcatttggaatctttacattatgccgtgcacgtctgctgctacgctttttgtcatttgtagcacaagtaagtgtcagcagtggtgcttcacacttgcccggtaattaacgacgaaagaaaagtaaggtggatgaacaatgagtgcgtcgttggcgatcctgaccatcggcattgtacctatgcaggaagttttgccgctcctgacggaatacattgacgaagataatatttcccatcatagcctgctggggaagttaagtcgtgaagaagtgatggcggagtacgcgccagaagcaggcgaagacaccattctcacattattaaatgacaaccagctggcccatgtttcgcgtcgcaaagtggagcgtgacctgcaaggtgtggttgaagtgctcgataatcagggttatgacgtcattttattaatgagtacagcaaacattagtagtatgactgcgcgtaatacgatctttcttgagccgtcgcgaatattgcctccactggtttcctctattgttgaagatcatcaggtgggggttatcgttccggttgaggagatgctgcccgttcaggcgcaaaaatggcaaattttgcagaaatcgccggtattttcattgggtaaccccattcatgattcagaacaaaaaatcattgatgccgggaaagaattactggcaaaaggggctgatgtcatcatgctggattgtttaggatttcaccaacgtcatcgcgatttactgcaaaaacagctcgatgttcctgtcttgctgtctaacgtattgattgcacggctggctgcggaattactggtgtaattttgcgtgacagccagcgcctctggcccctatagtgaagtagatgttcaactaccaaacagggccagtttatgcttcaaagtaatgagtacttttccggcaaagtgaaatcaatcggcttttccagcagcagcactggtcgcgccagcgtgggtgttatggttgaaggcgaatacaccttcagcaccgctgagccggaagagatgacggtaatcagtggcgcgctgaatgtgttactgcctgacgcgaccgactggcaggtgtatgaagccggttcggtgtttaatgttcccggtcacagtgagtttcatctgcaagttgccgaacccacctcttatctgtgccgctatctgtaattcctcgccttccccttgaacgggagggcatttttctgaaatatcctttctttagcccataataatatttcctttgctgcgattttttcaatttccgatatattcataatttatcaaggttgatataaatatcagtgaagatctccagatattgttgcggaactggctacgataaaagataaatcagatgatgaatggtggcgtgcattgctgcaaagtcgcaatgatcatttacgccaaacggcattgcgcaacgcacataccccggcgttgttgttaacgacattgactgagcctcaggatcggtcgctggctattaataatccacagctggctgccgatgtgaaaacggcgtggttaaaagaggatccatcattactcttatttgtcgaacaacccgatctttcgctgttacgtgatttagtgaaaaccggggcaacgcggaaaattcgcagtgaagcgcgtcaccggcttgaggaaaaacaatgacacaacgtccatggagcaagttacagcgtaaaacgcataatattgctgcgctaaaaattattgctcgccgtagcgaataattatatgcctggtgtggcttcgtacgccggataagacgcggcaggcgtcgcatccggcattaaaggaaaatcagcaattaacgttgtgcttcgccacctaatccttcaatcaggttttgaattaacgctgccagttcaccagtcatcaggatgaaatcggcatcaaaacgctgggcgaaatcttcacggtcgatatcttcgttttgatcgcgcagctcgtcgcagaacttcagacgcttgagcgaaccatcgtcgcacatcacaaactgaatgcgctgctgccagtcgagcgccagtttagtcaccacttttccggcttcaatgtgattggtgatctcttcgctggtcagatcttgtttcttcgcgcggatcacgccgccatcttccagcaacgatttcagctcggcttcatcaagcagctggaagccctgtgccgcactaccggagcgaacccattcggtcagcgtcagttcaatcgggttttccatgctcaatggtacaaccggtaacgaccccaggcttttacgcagtaatgccagcgtatcttccgcttttttggcactggcgcagtccaccataatcaaaccgttaaccgtgtcgatccacatcattgtctggctaaaacggctgaaagcacgcggcagcagagagtgcagcacttcgtctttcagcgaatctttttcggttttcttcagcttacgcgcctgttccgcttccagtttggcgattttcgcttccagcgcctgtttaatcaccggagacgggaggattttttcttctttgcgcgcgcagataacaatttgaccattggcaacgtgcgttaacgcatcgctgtgcgatcccatcggaggaacccagcccatcttcgccatgtcctggctgccgcatggggtaaatgccatcgaggctagctgtttttccatctcttctgcacgcagcgaaatctcgcggctaagacggtaaaccattaaatttttgaaccacagcatgataatttccacggccttgtcgttaaatttagcgggcatgataacgaattgtcggcggccttgcattgccaatccggttgtccgtctctacgctattgatattgaaaaaaataaggagagtaccgtgcgtataggtatcgatttaggcggcaccaaaactgaagtgattgcactgggcgatgcaggggagcagttgtaccgccatcgtctgcccacgccgcgtgatgattaccggcagactattgaaacgatcgccacgttggttgatatggcggagcaggcgacggggcagcgcggaacggtaggtatgggcattcctggctcaatttcgccttacaccggtgtggtgaagaatgccaattcaacctggctcaacggtcagccattcgataaagacttaagcgcgaggttgcagcgggaagtgcggctggcaaatgacgctaactgtctggcggtttcagaagcagtagatggcgcggcagcgggagcgcagacggtatttgccgtgattatcggcacgggatgcggcgcgggcgtggcattcaatgggcgggcgcatatcggcggcaatggcacggcaggtgagtggggacacaatccgctaccgtggatggacgaagacgaactgcgttatcgcgaggaagtcccttgttattgcggtaaacaaggttgtattgaaacctttatttcgggcacgggattcgcgatggattatcgtcgtttgagcggacatgcgctgaaaggcagtgaaattatccgcctggttgaagaaagcgatccggtagcggaactggcattgcgtcgctacgagctgcggctggcaaaatcgctggcacatgtcgtgaatattctcgatccggatgtgattgtcctggggggcgggatgagcaatgtagaccgtttatatcaaacggttgggcagttgattaaacaatttgtcttcggcggcgaatgtgaaacgccggtgcgtaaggcgaagcacggtgattccagcggcgtacgcggcgctgcgtggttatggccacaagagtaaaaaacgtaggcaattggcgcatcatgcctgatgcgacgcttgccgcgtcttatcaggcctacaaaaggtgccagaaccgtaggccggataaggcgttcacgccgcatccggcaataagtgctccgatgcctgatgcgacgcttgccgcgtcttatcaggcctgcaaaatgtgccagaaccgcgtagggcggataaggcgttcacgccgcatccggcaataagtaatgagcaccgagactataacctaccccagtggtttcgccagcaccggagtatccgccgcttgctggcgcttatagcgaccatacagcagcaacgacgacatcgcagcaaacgaaagcagggcggcaggcagcgccacgtaattatatgccagccccagcgtcagcatcatacctccgcaatatgcgccgacggcgctaccgaggttaaacgctatttgcccacctgcggcacctaataactctccgcctttggcgttttgtagtaacaatatttgtagcggtgctgaaagggcaaataatcccgcgcaacaaataaaagcaaaaataagcgacgttgttttcatgccgccgcagaaaaagagcatcagcagtgccagtacaattataaagtcagtcactgctgcaatgcgcagtggtgaataacgtcctgaaatcctgccacttagcatatttcccagcaccatccctagcccaactaacatcataataaaggtcatcgccgtttccgaaaaaccggaaataaacatcatgtatggctttacgtagctgaaccaggcaaacacacctgcgttgccaaacatcgtggcggcgaaaattaaccacggggccgggctgcgcaaaaagtgaaattgttcgcgcagatttcctttcgcctcgtcgcgaatatctggcacccaaaaatagaccgatgccatcaccgcaatattaaaaacagcgatcaataaaaaggtgtaacgccagctaaattcctgacttaaatacgttcccagcggaatgcccagcaaattggcgactgtcatcccggaaaccatccccgccacggcggcggtgacttttccgggtttgataatttttgataacacgatcgctccgacgccaaaaaatgcgccatgcggaaagccggataccagccgaccaatggcgagcatcaggtaagacgaagagagcgtgaacatggcgttgccaatgacgcacaacgccaccagaaacaacaagatatgtttgagtgagtagcggctggaaaagagtgcgatgattggcgcaccgaccaccacccccagtgcataatacgagatcatatgcccggcggcaggaatcgaaattcctacgttatgcgccagctccgtgagcacgcccataatgccaaattcggccatccccaaaccaaacgtgcccagagccaaagataaaatgacttttttcataccaccatcacaaccaccagaacggctaccaatcaccgtagccaataaagtgatagcttgcaggataacgaccagcaaggccaagagataattcgcccctctgtattcattatcctgctgaatagttatttcactgcaaacgtactttccagtttgctgtagcccaggccgttgatctttttcactttgatctgcaccggaatacgctctttcatcgcttctacgtggctaatcacaccgatggttttgccactggcgttcagggcatccagcgcatcaagggcggtatccagcgtttcgctatccagcgtgccaaaaccttcatcaaggaacagcgagtcaatacgtgttttatggctgaccagatccgaaagcgccagcgccagcgccagactaacgaggaaactttcgccgccggaaagggtacgggtatcgcgtaccgcatctgcctgccaggtatcaacaacctcgacttccagcgcctcgctggctttgcgctgtaacagatagcgcccgtgcagccgggtaagttgctgattagcgagatggactaaattatccagcgtcagcccctgggcaaacttgcggaatttatcgccctctttggaacctattagcgaattcagatatccccagtcctcaacctgctgcgtcatttgagcaatttgctgcattaaggtttgttgttgctgacggttatctgcatcctgcttcagctgctggcgaatctcgccttgactcgtggtgttttcacgcaacttttggtgagtttgcgctaactcttgctgaatctgctccaccgtcacagtgagagccaacccgtcgtcaggtcggtgttgttgatgctgtgccagcgtttctgctgtctgagtgaccagagtttgcgcctgacggcgctggttttccagattctgcttgagctgttccagctgcgttagtgtttgttcatccattagcgccgcaaggaacgcctgctgatcgtcaaagacgctggcctgtagcgcggtgtcaaactgcgcctgggctttttgcagactttgcgccgccagaacatcctgttgctgtaacgtctgctgctggctgtgtaatgcgagacattgttcatgtacctgccgccagttttccaataccacagtttcttcgcagtgcgggagttcatcactttgcggcaacgtttccagaatcggcgtcagctgctgaatacggttttgcagcgcggttaattcgttctggcgttgctgccagctctgcgcttcttgctgacgtgtcgccaaccagctctcttcttcatcttcctgtggcaatgtcagtgcataacccgtcaatgtcgttaaaagtagttgctggcgttgttcaatttgctgttgatactggataatttgctgattatgcgcggcaatctgcccttgtaattcatgccgttggctgagtaaccgcagctggcgttcgtgctcatcttgtgcatccagccacggttgaatatcgtccagtggctgcaaggtgatattgaggctggccgtgacggcttgccattgttgagtaagtgcttgctcatcttgtcggaggctttgcgcttcgttttcatcacgctgaagctgctttgttatggcgtccagttgcccacgtagcgtcgcaccttcttcaccgagctttttaacttcgttttccagcgccagtaatcgagactgattaacgccaggctccagcgcctgatacgcctcgaccgccgggtggctggtggaaccacaaagtgggcaaggctgacccgcctgtaactgtgcacgttgagcttccagcgttttgatgcgcgcttcctgctcgcaaatggttttcacatcggcaagttgctgcgtcttttctttataacgctggcgcatttcgttaagtgcggcgttacgttgcgtctgttcttgcgtgacattctggatagcgacctgtaactgcgccagacgtttttgttggggaacaatctgtccatgcagcgcgaccaggtgctgacgcagtgggcgttgctcagcatgttgcgccagggcggtagcaacttcatcggcggttaacgtcaacgtgatcgccgcaagcgcattaagtttttgctcagcatgggttaactgttgctgccattgccgcagatgctcgcgatcgctggtttgttgggagaactgcgcacgccaacccgccggttcgttgttccactgacggaagcggtcgtgttcctgtaaccaggtattcaggctttgttgctgctgctgtaattctgctgactgcttcgccgcgtggtggcgaatgctcgcgcgaagcgccattgtgctctgtaagcgagtatttacttcttcaatctgctggcgaatatgcgccagcgccgcgctgtgttctgcgatgcgttcccagtgtggacgaagatttcgtgccggttgtgccagactaagcgccgccagttgaggttgcgctttttcttcttcggctaacgcctgttgcaaggcctgctgacggcggctggcttcttgctgcaattcgtcctgacgcgttaaccagtttagcgattgttgttcttgctgctgcgcggtaattaactgtttttcttcgtcagtaagtacctgcaaactcgctgtcagcgattgcacttgttccggcgtgagcaacgtgacgccgctggcctgcgcttgcagcttctccagctctgtgcgggccgatttgtgctgctcaaaaaccatcgccgagatttgcccgtagatttcagtgccggttaactcctcgagcaattccgcgcgttctttgggtttggcattcaggaaggcagcaaattgcccctgcgaaagcagcatcgaacgggtgaagcgcccgtaatccagcccggttaacgtcgctgtcagttccagcttatctttcactttgtcggcgagaattttgccgtcggcgcagcgcgccagctctacgcgtggcacctgcaaattaccgtcgggttggttacgcgcccgattctggctccagaatgcacggtacgcttcacctttcacttcaaactccacctccgccagacattcggcggtatcgcgggtcatgagatcattttgcgattgtgaaacgttagagagacgcggagtttcgtgatacagcgccagacaaatggcgtccagcagggtggttttccccgcacctgttgggccggtaatagcaaacagcccgttgctggcgaacggctcgcgggtgaaatcaatcttccattcgccttttaatgagttcaggtttttcaggcgcaggctgagaattttcatgcttcgtgttctccggcgagggtatgcaacgtcgtggtgaaaagatgctgcagacgttgctgctgcgattcatccagttcttccagtgccagacggcgattgaacacctcttcgacgctgagttcgctgagggtttcacgctgttggctggctaacacacgctcgcgctgttcacgactccgacgtaccagcaatacttcgacaggcaatgattcggttaatgcctggattttgcgctgaatatcatgcagatactcatcagtagtgatttcgatatccagccagacaggtggctcctgcgatacatcgcgccactgttccagctgtgcggtaatcgacgccagatcgcctttcagcactgccatgggttgcgttaccggtacgttcaggttttccacgctctctaatttgccgtttgaaaatgtcaccagatggacatatttactcttaccgcattcatcaaaactcagtggaatgggggagccgcaatagcgaacatgttccatgccgccaataatctgtgcgcggtgaatatgcccgagcgcgatgtagtcggctggtggaaagttttgtgccggaaacgcgtccagcgtgccaatataaatgtcacgcacggcgtcacttttactggcccccacggtcgttaaatgtcccgtggcgatgatgggcagaggctgatcgccgcgcagtttgcaggcatcggcatagtgttgttggtaataatcggtaatcgctgccagtaaatgctgctgtttttcaataccgttaagccccgcctggctggtaataatgtcacgcggacgtaaaaacggaatggggcacagcactgcgcctggcgtcccgtcgcgacgaggcaagatttgcggcgcatgtccggcgctggcgaccacggtagtattgaggaacgccatgatatcgcgcgattcattcagcgtggcgaccgagtcatggtttcctgccagtaccaccagatgacagccagtttgctgtaaattgacaacaaaacggttgtataacgtgcgggcgtaactgggcggcgagccggtatcgaaaacatcaccggcaacaataatcgcatccacctgatgggtttgtgctgtctccagcagccagtcaagaaaagcctgatgttcagcttcgcggcttttactgtagaagttctggccgagatgccagtctgaggtgtgaaggatgcgcataacggttccctggcgaaaaagcatgggcgcgattatacccaaacagatgtgccatttgcttttttctgcgccacggaaatcaataacctgaagatatgtgcgacgagcttttcataaatctgtcataaatctgacgcataatgacgtcgcattaatgatcgcaacctatttattacaacagggcaaatcatggcgagacgtattctggtcgtagaagatgaagctccaattcgcgaaatggtctgcttcgtgctcgaacaaaatggctttcagccggtcgaagcggaagattatgacagtgctgtgaatcaactgaatgaaccctggccggatttaattctcctcgactggatgttacctggcggctccggtatccagttcatcaaacacctcaagcgcgagtcgatgacccgggatattccagtggtgatgttgaccgccagaggggaagaagaagatcgcgtgcgcggccttgaaaccggcgcggatgactatatcaccaagccgttttcgccgaaggagctggtggcgcgaatcaaagcggtaatgcgccgtatttcgccaatggcggtggaagaggtgattgagatgcagggattaagtctcgacccgacatctcaccgagtgatggcgggcgaagagccgctggagatggggccgacagaatttaaactgctgcacttttttatgacgcatcctgagcgcgtgtacagccgcgagcagctgttaaaccacgtctggggaactaacgtgtatgtggaagaccgcacggtcgatgtccacattcgtcgcctgcgtaaagcactggagcccggcgggcatgaccgcatggtgcagaccgtgcgcggtacaggatatcgtttttcaacccgcttttaacgccttgctcatcggacgcagagcagggcttatgatttcttaactggagtatcttacgtgctggaacggctgtcgtggaaaaggctggtgctggagctgctactttgctgcctcccggctttcatcctgggtgcattttttggttacctgccctggtttttgctggcatcggtaacaggactgcttatctggcatttctggaatttattgcgcctttcatggtggctgtgggtggatcgcagtatgaccccgccaccggggcgtggtagctgggaaccgctactatacggcttacaccagatgcagctgcgaaataaaaaacgccgccgtgaactgggcaatctgattaaacgctttcgtagcggcgcggagtcgctgcccgacgcggtggtgctgaccacggaagagggcggtattttctggtgtaacggtctggcgcaacaaattcttggtttgcgctggccggaagataacgggcagaacatccttaacctactgcgttacccggagtttacgcaatatctgaaaacgcgtgatttttctcgcccgctcaatctggtgctcaacaccgggcggcatctggaaattcgcgtcatgccttatacccacaaacagttgctgatggtggcgcgtgatgtcacgcaaatgcatcaactggaaggggcgcggcgtaacttttttgccaacgtgagccatgagttacgtacgccattgaccgtgttacagggttacctggagatgatgaatgagcagccgctggaaggcgcggtacgcgaaaaagcgttgcacaccatgcgcgagcagacccagcggatggaaggactggtgaagcaattgctgacgctgtcgaaaatagaagccgcaccgacgcatttgctcaatgaaaaggttgatgtgccgatgatgctgcgcgttgttgagcgcgaggctcagactctgagtcagaaaaaacagacatttacctttgagatagataacggcctcaaggtgtctggcaacgaagatcagctacgcagtgcgatttcgaacctggtctataacgccgtgaatcatacgccggaaggcacgcatatcaccgtacgctggcagcgagtgccgcacggtgccgaatttagcgttgaagataacggaccgggcattgcaccggagcatattccgcgcctgaccgagcgtttttatcgcgttgataaagcgcgttcccggcaaaccggcggtagcggattagggttagcgatcgtgaaacatgctgtgaatcatcacgaaagtcgcctgaatattgagagtacagtaggaaaaggaacacgtttcagttttgttatcccggaacgtttaattgccaaaaacagcgattaatccgcctttgtcatcttttattgccataagccagtcgatgctggcttattttctttgcagtcaaaatacgggcgttagattttacaacgattggtgattttttgttcgcatgattagccatgtctttttcacggaaatagtgttttatactggttggtgatttcttatcgctatatacctctggtttttagatccctccttgctttaaaacgttataagcgtttaaattgcgcttcaggtgctgtcatactgactgcattaacgcggtaaatcgaaaaactattcttcgccgcgcctggttgggagtatttcccgctaaaattgtttaaatataccgctgtatcatccccagggattggcacaaaaatttaacgttacaacaccacatccacaggcagtatgatttatgacccatcaattaagatcgcgcgatatcatcgctctgggctttatgacatttgcgttgttcgtcggcgcaggtaacattattttccctccaatggtcggcttacaggcaggcgaacacgtctggactgcggcattcggcttcctcattactgccgttggcctgccggtattaacggtagtggcgctggcaaaagttggcggcggtgttgacagcctcagcacgccaatcggtaaagtcgctggcgtactgctggcaacggtttgttacctggcggtggggccgcttttcgctacgccgcgtacagctaccgtttcctttgaagtggggattgcgccgctgacgggtgattccgcgctgccgctgtttatctacagcctggtctatttcgctatcgttattctggtttcgctctatccgggcaagctgctggataccgtgggcaacttccttgcgccgctgaaaattatcgcgctggtcatcctgtctgttgccgctattgtctggccggcgggttctatcagcacggcgactgaggcttatcaaaacgctgcgttttctaacggcttcgttaacggctatctgaccatggatacgctgggcgcaatggtgtttggtatcgttattgttaacgcggcgcgttctcgtggcgttaccgaagcgcgtctgctgacccgttataccgtctgggctggcctgatggcgggtgttggtctgactctgctgtacctggcgctgttccgtctggggtcagacagcgcgtcgctggtcgatcagtctgcaaacggcgctgctattctgcatgcttacgttcagcacacctttggcggcggcggtagcttcctgctggcggcgttaatcttcatcgcctgcctggtaacggcagttggcctgacctgtgcttgtgcagaattctttgcccagtacgtaccgctctcttatcgtacgctggtgtttatcctcggcggcttctcgatggtggtttctaacctcggcttaagccagctgatccagatctccgtaccggtgctgaccgctatttatccgccgtgtatcgcactggttgtattaagttttacacgctcatggtggcataattcgtcccgcgtgattgctccgccgatgtttatcagcctgctttttggtattctcgacgggatcaaagcatctgcattcagcgatatcttaccgtcctgggcgcagcgtttaccgctggccgaacaaggtctggcgtggttaatgccaacagtggtgatggtggttctggccattatctgggatcgcgcggcaggtcgtcaggtgacctccagcgctcactaaatcactgaacatttgttttaaccacggggctgcgatgccccgtggttttttattgtgttgatgggttaggaattgatggaaagtaagaacaagctaaagcgtgggctaagtacccgccacatacgctttatggcactgggttcagcaattggcaccgggctgttttacggttcggcagacgccatcaaaatggccggtccgagcgtgttgttggcctatattatcggtggtatcgcggcgtatatcattatgcgtgcgctgggggaaatgtcggtacataacccggccgccagctctttctcgcgttatgcgcaggaaaacctcggcccgctggcaggttacattaccggctggacctactgctttgaaatccttattgtcgccatcgccgatgtgaccgcttttggtatctatatgggtgtctggttcccgacggtgccgcactggatttgggtactgagcgtggtgctgatcatttgcgccgtaaacctgatgagcgtgaaggtattcggtgagctggaattctggttctcgttctttaaagtcgccaccatcatcatcatgattgtcgccggtttcggcatcatcatctgggggattggcaacggcgggcaaccgaccggtattcataacctgtggagcaacggcggcttcttcagtaacggctggcttggcatggtaatgtcgttgcaaatggtgatgtttgcttacggtgggatcgaaattatcgggattaccgccggtgaagcgaaagatcctgagaaatcgataccgcgtgcgattaactccgtgccgatgcgtattctggtgttctacgtcggtacgctgttcgtcattatgtctatctacccgtggaatcaggttggcactgccggtagcccgttcgtgctgacgttccagcatatgggcattacctttgccgccagcattcttaactttgttgtgctgactgcttcgctgtcggcaattaacagtgatgtatttggcgtaggccgtatgctccacggtatggcagagcagggcagcgcgccgaaaattttcagcaaaacgtcgcgtcgcggtattccgtgggttacggtgctggtgatgactaccgcgctgctgtttgcggtgtatctgaactacatcatgccggaaaacgtcttcctggtgatcgcttcgctggcaaccttcgccacggtgtgggtgtggattatgatcctgctgtcgcaaattgccttccgtcgccgtttgccgccagaagaagttaaggcgctgaaatttaaagtgccgggtggggtagcaacgaccatcggcgggctgattttcctgctctttattatcgggttgattggttatcacccggatacgcgtatctcgctgtatgtcggtttcgcgtggattgttgtgctgttgattggctggatgtttaaacgccgccacgatcgtcagctggctgaaaaccagtaatccttgcgttctgtaagccggttcaggaggaaatcctgatccggctattccgaaagttatccgcccccgtcctcctcccccaaatatccttcagatgatgagtgatcctgcattaggctatggcaaggtgatcagattttcatcacaggggaattatgatgttaaatgcatggcacctgccggtgcccccatttgttaaacaaagcaaagatcaactgctcattacactgtggctgacgggcgaagacccaccgcagcgcattatgctgcgtacagaacacgataacgaagaaatgtcagtaccgatgcataagcagcgcagtcagccgcagcctggcgtcaccgcatggcgtgcggcgattgatctctccagcggacaaccccggcggcgttacagtttcaaactgctgtggcacgatcgccagcgttggtttacaccgcagggcttcagccgaatgccgccggcacgactggagcagtttgccgtcgatgtaccggatatcggcccacaatgggctgcggatcagattttttatcagatcttccctgatcgttttgcgcgtagtcttcctcgtgaagctgaacaggatcatgtctattaccatcatgcagccggacaagagatcatcttgcgtgactgggatgaaccggtcacggcgcaggcgggcggatcaacgttctatggcggcgatctggacgggataagcgaaaaactgccgtatctgaaaaagcttggcgtgacagcgctgtatctcaatccggtgtttaaagctcccagcgtacataaatacgataccgaggattatcgccatgtcgatccgcagtttggcggtgatggggcgttgctgcgtttgcgacacaatacgcagcagctgggaatgcggctggtgctggacggcgtgtttaaccacagtggcgattcccatgcctggtttgacaggcataatcgtggcacgggtggtgcttgtcacaaccccgaatcgccctggcgcgactggtactcgtttagtgatgatggcacggcgctcgactggcttggctatgccagcttgccgaagctggattatcagtcggaaagtctggtgaatgaaatttatcgcggggaagacagtattgtccgccactggctgaaagcgccgtggaatatggacggctggcggctggatgtggtgcatatgctgggggaggcgggtggggcgcgcaataatatgcagcacgttgccgggatcaccgaagcggcgaaagaaacccagccggaagcgtatattgtcggcgaacattttggcgatgcacggcaatggttacaggccgatgtggaagatgccgccatgaactatcgtggcttcacattcccgttgtggggatttcttgccaataccgatatctcttacgatccgcagcaaattgatgcccaaacctgtatggcctggatggataattaccgcgcagggctttctcatcaacaacaattacgtatgtttaatcagctcgacagccacgatactgcgcgatttaaaacgctgctcggtcgggatattgcgcgcctgccgctggcggtggtctggctgttcacctggcctggtgtaccgtgcatttattacggtgatgaagtaggactggatggcaaaaacgatccgttttgccgtaaaccgttcccctggcaggtggaaaagcaggatacggcgttattcgcgctgtaccagcgaatgattgcgctgcgtaagaaaagtcaggcgctacgtcatggcggctgtcaggtgctgtatgcggaagataacgtggtggtatttgtccgcgtgctgaatcagcaacgtgtactggtggcaatcaaccgtggcgaggcctgtgaagtggtgctacccgcgtcaccgtttctcaatgccgtgcaatggcaatgcaaagaagggcatgggcaactgactgacgggattctggctttgcctgccatttcggctacggtatggatgaactaacgttttataacgccttgcgtgacgcctgcgccatcatccgcggataaaactgccagaagcgggtttcgagggcgtcataatgagcgtctaaatcgtaccaggagtcacgcagggcatccagacgtgggcggcggcttgccatgccgtttaacacgttctggatgaaatccatatcgcgatagcgcaccagccactgctctgaccacaagtaattgttcagattgataaaacgtggcggtgagtccggcaaaatcgtcatcacttgctcgcgggcataacagacaaattcctgtagcggaaagtccggcgacagctgcgaccagtggcgggaaagaaagtgatcccacatgacatccagcgtaataggcgcaacgcggcgcgtttcactacgaaaccactcccgtgcttcgcggacttccggcagattgtcagtcaatacgtcgatacgtcgatgcatatgaatgccagccacgacgtcgggcggaaaactttcttcaggatttccgcgtacgaaatcagccagtaaattgccggaaagcgagctttccgcgagatgggctaaatgcaggtgagctaaaaaattcatcgattatattctatccaaaagggggtaaaggttgcagggagagcgccccggcactagactacccgcctcttattttagtctgagtcagtgtcatgcgcgttaccgatttctcctttgaattgcccgaatccctgattgcccactatcccatgcctgaacgcagtagctgtcgtttactgtcgctggacgggccgacgggcgcgctgacgcacggtactttcaccgatttacttgataagctcaaccccggcgatcttctggtttttaataatacccgcgtgatcccggcgcgcctgtttgggcgtaaagccagcggcggcaagattgaagtgctggttgaacggatgctcgacgacaaacgcattcttgcgcatattcgcgcctcgaaagcgccaaaacctggcgcagaactgctgctgggcgatgacgaaagtattaacgcaacaatgaccgcgcgccacggcgcactgtttgaagtcgaatttaatgatgaacgctcggtgctggatattctcaacagcatcggccatatgccgctgccgccgtatatcgaccgtccggacgaagacgctgaccgcgaactttatcaaaccgtttatagcgaaaaaccgggcgcggttgcagccccgaccgcaggtctgcattttgacgagcctttgctggaaaaattgcgcgccaaaggcgtggagatggcgtttgtgacgttgcacgttggtgcgggcaccttccagccggtgcgcgtcgacaccattgaagatcacatcatgcactcggaatacgctgaagtaccgcaggatgtggtagacgcggtactggcggcgaaagcgcgcggtaaccgggtgattgcggttggcaccacttcagtacgttcgctggaaagcgcggctcaggcagcgaaaaacgatctcattgaaccgttcttcgacgatacccaaatctttatctatccgggcttccagtacaaagtggtcgatgcgctggtgacgaacttccacttgccagagtcgacgctgattatgctggtttcggcctttgccggttatcaacacaccatgaacgcctataaagcagcggtagaagagaaatatcgcttttttagttacggtgatgcgatgtttatcacgtacaatccgcaggcaattaatgagcgcgtcggggagtaattccgcggcgctggtttaaaacgttggactgtttttctgacgtagtggagaaaaaatgaaatttgaactggacaccaccgacggtcgcgcacgccgtggccgcctggtctttgatcgtggcgtagtggaaacgccttgttttatgcctgttggcacctacggcaccgtaaaagggatgacgccggaagaagttgaagccactggcgcgcaaattatcctcggcaacaccttccacctgtggctgcgcccgggccaggaaatcatgaaactgcacggcgatctgcacgattttatgcagtggaaggggccgatcctcaccgactccggcggcttccaggtcttcagccttggcgatattcgtaaaatcaccgaacagggcgtgcacttccgtaacccgatcaacggcgatccgattttcctcgatcctgaaaaatcaatggagattcagtacgatcttggttcggatatcgtcatgatctttgatgagtgtacgccgtatcctgctgactgggattacgcaaaacgctccatggagatgtctctgcgttgggcgaagcgtagccgtgagcgttttgacagtctcggaaacaaaaatgcgctgtttggtatcatccagggcagcgtttacgaagatttacgtgatatttctgttaaaggtctggtagatatcggttttgatggctacgctgtcggcggtctggctgtgggtgagccgaaagcagatatgcaccgcattctggagcatgtatgcccgcaaattccggcagacaaaccgcgttacctgatgggcgttggtaaaccagaagacctggttgaaggcgtacgtcgtggtatcgatatgtttgactgcgtaatgccaacccgcaacgcccgaaatggtcatttgttcgtgaccgatggcgtggtgaaaatccgcaatgcgaagtataagagcgatactggcccactcgatcctgagtgtgattgctacacctgtcgcaattattcacgcgcttacttgcatcatcttgaccgttgcaacgaaatattaggcgcgcgactcaacaccattcataaccttcgttactaccagcgtttgatggcgggtttacgcaaggctattgaagagggtaaattagagagcttcgtaactgatttttaccagcgtcaggggcgagaagtaccacctttgaacgttgattaatattaataatgagggaaatttaatgagcttttttatttctgatgcggtagcggcaacgggtgcaccggcgcaaggtagcccgatgtctttgattttgatgctggtggtattcggtctgattttctatttcatgatcctgcgtccacagcagaagcgcaccaaagaacacaaaaagctgatggactccattgccaaaggtgatgaagttctgacgaacggtggcctggttggtcgcgtaaccaaagtagcggaaaacggctacattgctatcgcgctgaatgacaccactgaagtagttattaaacgtgacttcgtagctgccgtcctgccgaaaggcaccatgaaggcgctgtaattaaaatttttccctaagggaattgccgtgttaaaccgttatcctttgtggaagtacgtcatgctgatcgtggtgattgtcatcggtctgctgtatgcgcttcccaacctgtttggtgaggatccggctgttcagatcactggtgcgcgcggagtcgccgccagtgagcaaacgctgatccaggtccagaaaacgttacaagaagaaaaaataactgctaagtctgtggcactggaagagggcgctattcttgcgcgcttcgactccactgacacccagttgcgcgctcgtgaagcattaatgggcgttatgggtgacaaatacgtcgtggcgcttaaccttgccccggcaacgccgcgctggctggcagctattcacgctgagccgatgaagctcggccttgacctgcgtggcggcgttcacttcctgatggaagtggatatggacaccgcgcttggcaaactccaggaacaaaatatcgatagcctacgcagtgacctgcgcgaaaagggcatcccgtataccactgttcgtaaagaaaacaactacggcctgagcatcactttccgcgatgctaaagctcgtgatgaagccattgcgtatctgagcaagcgccatccggacctggtgattagcagccagggcagcaaccagctgcgtgcggtaatgagcgatgctcgtctgagtgaagcgcgtgaatatgcggtgcagcagaacattaatatcctgcgtaaccgtgtaaaccaacttggcgtggcggagccggtggttcagcgtcagggtgctgaccgtatcgttgttgaactgccaggtattcaggacactgcgcgtgcgaaagagattctgggtgcgacggcaacgctggaattccgtctggtaaacaccaacgttgaccaggccgctgcggcatccggtcgcgtaccgggcgactctgaagtgaaacagacccgcgaaggtcagccagttgtgctgtacaaacgcgtaattctgaccggtgaccatatcaccgactccacttccagccaggacgaatacaaccaaccgcaggttaacatctcgctcgatagcgctggtggtaacatcatgtctaacttcactaaggacaacatcggcaaaccgatggcaaccctgtttgtggagtacaaagacagcggtaagaaagatgcaaatggtcgtgcggttctggtgaaacaggaagaggtgattaacatcgccaacatccagtctcgtctgggtaacagcttccgtatcaccggcatcaacaacccgaacgaagcccgtcagctgtcactgctgctgcgtgccggtgcgttgatcgcgccgattcagattgttgaagaacgtaccattggcccaaccctgggtatgcagaacattgaacaggggctggaggcttgccttgccggtctgctggtttctattctgttcatgatcatcttctataagaagtttggtctgattgcgaccagtgctctgattgccaacttgatcttaatcgtcggcattatgtcgctgttgccaggcgcaacgctgagtatgccaggtatcgcgggtatcgtcttaacccttgcggtggcggtcgatgcgaacgtactgatcaacgaacgtattaaagaagagttgagcaacggacgtactgttcaacaggcaattgatgaaggttatcgtggcgcattcagttctatcttcgatgcgaacatcaccacgctgattaaagtcatcatcctgtacgcagtgggtaccggggcaattaaagggttcgcgattactaccggtatcggtgtggcgacgtcgatgtttaccgcgattgtcggtacgcgtgccatcgtaaacctgctatatggcggcaagcgcgtcaagaagctgtcaatctgaggagtgcgatgtggcacaggaatatactgttgaacaactaaaccacggccgtaaagtctatgactttatgcgctgggactactgggctttcggcatctctggtctgctgttaatcgctgctatcgttattatgggcgtgcgcggctttaactgggggctggatttcaccggtggtacggttattgaaattacgctcgaaaaaccggctgaaattgacgtaatgcgtgatgcattgcaaaaagccggttttgaagagccgatgctgcaaaactttggtagcagccatgacatcatggtccgtatgccgcctgctgaaggcgaaaccggcggtcaggtgttgggcagccaggttctgaaggtgattaacgaatccaccaatcagaatgcagcagtgaagcgtattgagttcgtcggtccgagcgtgggggcagaccttgcgcaaaccggtgcgatggcgttgatggcagcgctgctgtctatcctcgtgtacgtaggtttccgctttgagtggcgactggcggcaggggtggttattgcgctggcgcacgacgttatcattacgctgggtattttgtcgttattccatatcgagattgacctgaccattgtggcatcgttgatgtcggttatcggttactcgcttaacgacagtatcgtggtatcggaccgtattcgtgaaaacttccgcaagatccgtcgcggtacgccttacgaaatctttaacgtgtccttgacccagacgctgcaccgtaccttgatcacatccggtactaccttgatggttatcctgatgctgtacctcttcggtggtccggtactggaaggcttctcgctgaccatgcttatcggtgtttccatcggtactgcatcttccatctatgtggcatctgcgttggctctgaaactgggtatgaagcgcgaacacatgttgcagcagaaagtggaaaaagaaggggcggatcagccgtcaattctgccgtaatcaagttcccgttgatgttgaaaatcccggtcagaagatcgggattttttttgatgtatggagattgcgaaaatccccgcatcttgggaaactgcgcgtaaccctacatttcatccaggtaacttttcatggctatcatcccaaaaaactatgcgcggttagaaagcggctatcgcgaaaaagcattaaaaatctatccgtgggtctgcggtcgctgttcccgcgagtttgtttattccaacctgcgtgaacttaccgttcaccacattgatcacgaccataccaataacccggaagatggcagtaactgggaattgttgtgtctctattgccacgatcatgagcattcgaaatataccgaagcggatcagtatggtacgaccgttatcgcaggggaagatgcgcagaaagatgtcggtgaagcgaagtacaacccattcgctgacctgaaagcgatgatgaacaagaagaagtgattaaaacgtaaaattgcctgatgcgctacgcttatcaggcctacgttatttcagcaatatattgaatttacgtgcttttgttggccggacaaagcgtttacgccgcatccggcatgaacaaagcacacgttgttaacaatcagaaatgccgggaataaatcccggcattttcataatcagaagttgtaacctactaccaggtaaccaccccagccggtagagcgaacgttgaagttgccgttgccgaagttcagttctgcatcgtcgttccactgaccaccgtcgtgccagtaacgagctacgacagagtagtgccagtgatcgtagttcagagccagaatatggctggaagcgatagagttattagtacgggtcttaataccgttgattgcgttaccgctgtcatcccctaaatcggaaccccagtcgaagttggtgaagccgatgtagctcagctgaccgccccacagatcggtaatcggcacaaagtatttaattttgaaacggtaaccgtcccactcgttttcgttcgctgcgccatagttctgccactggtatttcgcatagacgttcatggacaggctcatcggcaggccagtgtcgatatcggtacccagacccatgtaccaggtgctctggcgaccatctttattacgacccatgtcgtaaatgtagttgttcgcgaagtaccactctttgaacggaccgaagctaaggtcagtattggtcagcttgtcgatggagaaacgtggttcgatttccataaacagcggagaaccgtggttccagatacctttagcatcggagttaccgccgaagaataccggcgcatccgcataaccatagaagtcgaaccagtcttttttagcgaatgcttcgtactcaaggtaggtatcgttgcggatctgcggtccgaaacgggtgtgatagcttccgacaacgttaacgctctggtgccaccagtcggaaagatactgcggtttgtcgttttcagctgcgttgacagtaaaagacgaagagagcgccagtaccgcaccggctgccagtaatgtttttttcatatgtatgccactgtttgaaaatcccttgcgggagtgaaaaaggcgcaaattgcgtttctaaatatttcgtatacagaggagcctattataaaaatcattgctcacaaaaatatgtttcgtttcacagttctatcatttacgtaatcgattgcgttcacgtttacacacattcgggcggggattgtactgactttcgcccttgttgcaaacttttactatcaatccaggtgatgtaagcagagtaacaaaatgacggggaaagatgttgcgggacgcacaaaatcgtcccgaaatacgtttactgcataacaggttgaatgtcgtggatacgtacaaagcctaactgatccacagaaatcccctttaactgtaacggaatatcaacatcgctgggggcgaggacgctggcaggggcattaatcaattgattctgcacattgatttcctgaaagttgtctattgttccctgaatttgcccatattcaacagttccgctgaatgcgggcaagggatcattcgactcaccctgaatacgtagtgtaagggtggtgccatctgcatcaggcgtaatattcaccagcgacatacgtaaagtaccgatctggctttccagtcttgccggtgttttcgctccaggcagaaggtaaaccccactgctggattttgcattcagcctgttttgctgagtgattttgactgtttcttgattgagttgcgtcatctcctggttcagcgtgctgacgctgtgtttcatctgtcgcacttcactttgctgcacacaggcgctaaggctgaacaggcttcccagcaggagcagtcgaaaaacgttagtattcataggtcgtccctttctcgtcgcaattagcctaatggtagagggtaaaagcagcgaaagcatcgatcctttatctcaaaagcgttgcgcctttgttgtatcgtcagttcagggtaaaatagatttccgttaaccacctggtcaggacgccgtatgcattgcccattctgtttcgccgtggacactaaggtaattgactctcgtctcgtgggcgagggttcatccgtacgccgccgtcggcagtgtctggtgtgtaatgaacgtttcaccacctttgaagtggcggagctggttatgccgcgtgttgtaaaaagcaacgacgtgcgtgaaccgtttaatgaagagaaattgcgtagcggaatgctgcgggcgctggaaaaacgtccggtgagttccgatgacgtcgaaatggcaatcaatcatattaaatcgcagctgcgcgccaccggtgagcgcgaagtgccgagcaagatgattggcaatctggtgatggagcaattgaaaaagctcgataaagtcgcctatatccgttttgcctctgtctaccgcagtttcgaagatatcaaagaatttggcgaagagatcgcgcgcctggaggactaagccgtgcaggacgagtattacatggcgcgggcgctaaagctggcgcaacgaggacgttttaccacgcatcccaacccgaatgtcgggtgcgtcattgtcaaagatggcgaaattgtcggtgaaggttaccaccaacgtgcgggtgaaccacatgccgaagtacacgcgttgcgtatggcgggtgaaaaagccaaaggtgcgaccgcctatgtcacactcgaaccctgtagccatcatggtcgtacgccaccgtgctgtgacgcactcatcgccgctggcgtagcgcgcgtggttgcctcgatgcaagatcctaacccgcaggtcgctgggcgtggactttaccgtctgcaacaggctggcattgacgtcagccacggcctgatgatgagtgaagccgagcaattgaataaaggctttctcaagcggatgcgcaccggctttccttatattcagttaaaacttggcgcatcgcttgatggtcgcacggcgatggcgagcggcgaaagccagtggatcacttcgccccaggcgcggcgtgatgtacaactactgcgcgcgcaaagtcatgccattttaaccagcagcgccacggtgctggcggatgatcctgccttaacggtgcgttggtctgaactggatgaacaaactcaggcgctctatccgcaacaaaatctccgtcagccgatacgtattgtgattgatagccaaaatcgcgtgacgccggtacatcgcattgtgcagcagcccggcgaaacctggttcgcgcgtacgcaggaagattctcgtgagtggccggaaacggtgcgtaccttgctgattccagagcataaaggtcatctggatctggttgtactgatgatgcaactgggtaaacagcaaattaacagcatctgggtggaagcggggccaacgctcgctggcgcattgctgcaggcgggtttagtcgatgagctgattgtctatatcgcacctaaactattaggcagcgacgcccgcggattatgcacgctgccagggcttgagaaattagccgacgccccccaatttaaattcaaagagatacgtcatgtaggcccggatgtttgcctgcatttagtgggtgcatgatctcccggctcgaaagggaagcagcgcacgaaatattatgctaaaatccgcccccctgcggggccatactcgaacccgaaggaagaaaatgaacattattgaagctaacgttgctaccccggacgctcgcgtcgccatcaccatcgcgcgtttcaacaactttatcaatgacagcctgctggaaggtgcaattgacgcactgaaacgtatcggtcaggtaaaagatgaaaacattaccgttgtttgggtgcctggtgcctatgagctgccgctggcggcgggtgcactggctaaaaccggtaaatacgacgcggtgattgcgctgggtacggttattcgtggtggcactgcccactttgaatatgtcgctggtggtgcaagcaacggcctggcgcatgttgcccaggacagcgaaattccggttgcttttggggttctgaccactgaaagcattgaacaagcgatcgaacgtgctggcaccaaagctggcaacaaaggtgcagaagctgcactgaccgcgcttgaaatgattaatgtattgaaagccatcaaggcctgaaattagtaaggggaaatccgtgaaacctgctgctcgtcgccgcgctcgtgagtgtgccgtccaggcgctctactcctggcagttgtcccagaacgacatcgctgatgttgaataccagttcctggctgaacaggatgtaaaagacgttgacgtcctgtacttccgtgagctgctggccggggtggcgactaataccgcatacctcgacggactgatgaagccatacctgtcccgcctgctggaagaactgggacaggtagaaaaagcagtactgcgcattgcgctgtacgaactgtctaaacgtagcgatgtgccatacaaagtggccattaacgaagcgatcgaactggcgaaatcgttcggcgcagaagacagccataagttcgtcaacggcgtactcgataaagcagcacctgtgattcgccctaacaaaaagtgatatccaggccggtagattcacggaagaccgttccatgatcgccggccttttcttttttacctgctgaggcataacgtatggcatgtggcgagttctccctgattgcccgttattttgaccgtgtaagaagttctcgtcttgatgtcgaactgggcatcggcgacgattgcgcacttctcaatatccccgagaaacagaccctggcgatcagcactgatacgctggtggcgggtaaccatttcctccctgatatcgatcctgctgatctggcttataaagcactggcggtgaacctaagcgatctggcagcgatgggggccgatccggcctggctgacgctggcattaaccttaccggacgtagacgaagcgtggcttgagtccttcagcgacagtttgtttgatcttctcaattattacgatatgcaactcattggcggcgataccacgcgtgggccattatcaatgacgttgggtatccacggctttgttccgatgggacgagccttaacgcgctctggggcgaaaccgggtgactggatctatgtgaccggtacaccgggcgatagcgccgccgggctggcgattttgcaaaaccgtttgcaggttgccgatgctaaagatgcggactacttgatcaaacgtcatctccgtccatcgccgcgtattttacaggggcaggcactgcgcgatctggcaaattcagccatcgatctctctgacggtttgatttccgatctcgggcatatcgtgaaagccagcgactgcggcgcacgtattgacctggcattgctgccgttttctgatgcgctttctcgccatgttgaaccggaacaggcgctgcgctgggcgctctctggcggtgaagattacgagttgtgtttcactgtgccggaactgaaccgtggcgcgctggatgtggctctcggacacctgggcgtaccgtttacctgtatcgggcaaatgaccgccgatatcgaagggctttgttttattcgtgacggcgaacctgttacattagactggaaaggatatgaccattttgccacgccataaagatgtcgcgaaaagtcgcctgaagatgagtaatccgtggcatctacttgctgtcggattcggaagtggattaagcccgatcgttcctgggacgatgggctcgctggcagcgattccgttctggtatctgatgacctttttgccctggcagctctactcgctggtggtgatgctggggatctgtatcggcgtctatctttgtcatcaaacggcgaaagacatgggtgtgcacgatcatggcagcattgtctgggacgaatttattggtatgtggatcacgctcatggcgctgccgaccaatgactggcagtgggttgccgccgggtttgtgattttccgtattctggatatgtggaagccgtggccgatccgctggtttgatcgcaatgtgcatggcggcatggggatcatgatcgacgatattgtcgccggggtgatttccgcaggcatcctgtattttatcggtcatcactggccgctgggtattctgtcgtagttgtgcaccgatgcctgatgtgacgcttgtcacgtctcatcaggcctggactcttatttaaatcctacgacaggatgcggtttatacggcgtttccagttcggcaatctgttccggcttcaaagtgatatccaccgcgttcaatagctcatcaagctgttcttcgcgcgaagttccgataatcggtgcggcaatgcccggtttactcaacaaccaggccagcgcaacttgtgctcgtgtcgcccccagttcttcactgacgcctgttaaccgctctgcgatctgcgcgtcattttcatcgctttctttatagagatttttccccacctcatcagacaccagtcgtgcggtagtttctccccacggacgcgtcagacggccccttgccagcgggctccatggaattaccgccacgccctcctgataacacagtggtagcatctcgcgctcttcttcacgataaatcagattgtagtgatcctgcatactgacaaactgcgcccagccgtgctgtttttggagttccagtgcctgagcaaactgcgaagcgtgcattgatgacgcgccgatataacgcgctttcccggcttttaccacgtcgttgagggcttccagcgtctcttcgatcggcgtgttgtaatcccagcgatgaatttgcaggatatcgacataatccatgccgagacgtcgcaggctgtcgtcgatagagcgcaaaatttgcgcacgggataatccttccggtaaatcaccaacgcgatggaacactttggtcgcaacgaccacgtcttcacgacgggcgaaatcccgcagtgcgcgaccgacgatctcttcgctgctgccgtcagaataactgttggcggtatcaaagaaatttatgccgccttccagtgcacgtttaattatgggacggctgctttcttccggcagtgtccatgcgtgattaccgcgatctggctcgccaaaggtcatacagccgaggcaaagtcgggaaacgcgaaggtcggtttttcctaaggggttgtattgcatgctgccactcctgctatactcgtcatacttcaagttgcatgtgctgcggctgcattcgttcaccccagtcacttacttatgtaagctcctggggcttcactcgtttgccgccttcctgcaactcgaattatttagagtctatgaataatttcttaagcatagcaggagtggagtagggattatgccagccaggccttgattttggcttccataccagcggcatcgaggccgagttcggcgcgcatttcttcctgagttccttgcggaataaagaagtccggcaggccaatgttcagcacgggtactggtttacgatgggccatcagcacttcgttcacgccgctgcctgcgccgcccataatggcgttttcttctacggtgaccagcgcttcatggctggcggccatttccagaattaacgcttcatcaagcggtttcacaaaacgcatatcgaccagcgtggcgttcagcgattcggcgactttcgccgcttctggcatcagcgtaccaaagttaaggatcgccagtttctcgccacgacgcttcacaatgcctttgccaattggtagtttttccagcggcgtcagttccacgccgaccgcgttgccacgcgggtagcgcaccgctgacgggccatcgttatagtgatagccggtatagagcatctggcgacattcgttttcatcgctcggggtcataatgaccatttccggtatgcagcgcaggtaagagagatcaaaagcaccctgatgggtttgaccgtcagcaccaacaatgcccgcgcggtcgatggcgaacaggaccggaagcttttgaatcgccacgtcatgcagcacctgatcataggcgcgttgcaggaaagtggagtaaatcgcgacaatgggtttgtacccaccaatcgccagacccgcagcaaaggtcaccgcgtgttgctcggcaattgccacgtcgaagtagcgatccgggaatttacgtgaaaactcgaccatgccggaaccttcacgcatcgccggagtaatcgccatcagcttgttgtctttcgctgccgtttcgcacaaccagtcgccaaagatttttgaatagctcggcaaaccgccgctacttttcggcaaacaaccgctggagggatcaaatttaggcacggcgtggaaagtgatcgggtctttttctgccggttcataaccacgaccttttttggtcatgatatgcaggaactgcgggcctttcaggtcgcgcatgttctttagcgtggtgataagccccagcacatcgtgaccgtccaccgggccgatgtagttaaagcccagctcttcaaacaacgtgccaggcactaccatgcctttaatatgttcttcggtgcgtttgagcagctctttaattggcggcacgccagagaaaacttttttcccgccttcgcgcagtgaagagtaaagcttaccggaaagcagctgtgccagatggttgttgagcgcgccgacattttcggaaatcgacatttcattgtcgttgagaatcaccagcatatcaggacggatatcgcccgcgtgattcatcgcttcaaacgccatgcctgcggtaatcgcgccatcgccaatgacacagacggtgcggcgatttttgccttctttttcggcagcaaccgcaataccaattccggcactgatggaggttgatgaatgcccgacgcttaatacgtcatattcgctttcgccgcgccacgggaacgggtgcagaccgcctttctgacggatggtgccgattttgtcgcggcgtccggtcaaaattttatgcggataagcctgatgccccacatcccaaatcaattggtcaaacggggtgttgtagacatagtgcagcgccacggtcagttcgaccgtgcccagcccggaggcgaagtgcccgctggaacggctcacgctgtcgagtaaatagcggcgcagttcgtcgcagagtttcggtaaactctctttcggcaacagtcgtaactcctgggtggagtcgaccagtgccagggtcgggtatttggcaatatcaaaactcatcaggggcctattaatacttattgtttatttattacgctggatgatgtagtccgctagcgcttccagtgccgaggtatcgagtgactgttcagccagttgtttcagcgactgacgggcatcgtcgatcagatcccgggctttcttccgggcttgctcaagacccagaagtgcagggtaggtacttttaccaagttgctggtcggcaccctggcgttttcccaacgttgcagtatctcccaccacatccaggatgtcatcctgaacctggaaggcaaggccgatgctctctgcatacttgtcgagtaccggcagagcacgacgtcctttatctccggcgcttaatgcaccaaggcgaacggcggcgcgaatcaatgcgccggttttatgacgatgaatacgctcaagcgcgtccagaggtacgtgtttgccttccgcgtctaaatctaatgcctgaccaccgcacattccggcaataccactggcgctcgccagttcagaaatcatcgaaattctgtcgcggtccgacacttccggcatatcggcatcgcttaaaatcgagaacgccagcgtttgtaaagcgtcgccagcgagaatcgcgtttgcttcgccaaacttcacatggcaggttggcaaaccgcgacgcagatcgtcatcatccattgccggtaaatcatcatgaattaatgagtaagcgtggatacactcaacggcggcagcgggtgcgtccagcgtgtttgtgctaacgccgaacatatgaccggtggcataaaccaggaaaggtcgcaggcgcttaccacctaataatgcgccatactgcatggtttcgaccacgggagtgttctgaaagggcagtggggcgataaaacggctcagcgcctggttggcctgcttaacgcaggcttcgagttgctgcggaaagtccattactcattgtccggtgtaaaaggggttagagaggcgtcttcattgtcagacagcagaatttgtacgcgctgttcggcttgttgtaatttggcctgcccctgacgtgccagctgcacgccgcgttcgaactcgttcagcgcctcttccagcggcaggtcgccactttccagacgggttacaatctgttccagctcgctcagcgccttttcaaagctggcgggcgcctcatttttcttcggcataatgaatgtctgactctcaatatttttcgccccgtcatggtaacggactcagggcaaatagcaaataacgcgcaatggtaaggtgatgtgcacagcaaagcgatgttagtggtatacttccgcgcctggatgcagccgcaggtgtgggctgctgtatttttccctatacaagtcgcttaaggcttgccaacgaaccattgccgccatgaagtttatcattaaattgttcccggaaatcaccatcaaaagccaatctgtgcgcttgcgctttataaaaatccttaccgggaacattcgtaacgttttaaagcactatgatgagacgctcgctgtcgtccgccactgggataacatcgaagttcgcgcaaaagatgaaaaccagcgtctggctattcgcgacgctctgacccgtattccgggtatccaccatattctcgaagtcgaagacgtgccgtttaccgacatgcacgatattttcgagaaagcgttggttcagtatcgcgatcagctggaaggcaaaaccttctgcgtacgcgtgaagcgccgtggcaaacatgattttagctcgattgatgtggaacgttacgtcggcggcggtttaaatcagcatattgaatccgcgcgcgtgaagctgaccaatccggatgtgactgtccatctggaagtggaagacgatcgtctcctgctgattaaaggccgctacgaaggtattggcggtttcccgatcggcacccaggaagatgtgctgtcgctcatttccggtggtttcgactccggtgtttccagttatatgttgatgcgtcgcggctgccgcgtgcattactgcttctttaacctcggcggcgcggcgcatgaaattggcgtgcgtcaggtggcgcattatctgtggaaccgctttggcagctcccaccgcgtgcgttttgtcgctattaatttcgaaccggtcgtcggggaaattctcgagaaaatcgacgacggtcagatgggcgttatcctcaaacgtatgatggtgcgtgccgcatctaaagtggctgaacgttacggcgtacaggcgctggtcaccggcgaagcgctcggccaggtgtccagccagacgctgaccaacctgcgcctgattgataacgtctccgacacgctgatcctgcgtccgctgatctcttacgacaaagagcacatcatcaacctggcccgccagattggcaccgaagactttgctcgcacgatgccggaatattgtggtgtgatctccaaaagcccgacggtgaaagcagttaaatcgaagattgaagcggaagaagagaagttcgacttcagcattctcgataaagtggttgaggaagcgaataacgttgatatccgcgaaatcgcccagcagaccgagcaggaagtggtggaagtggaaaccgtcaatggcttcggcccgaacgacgtgatcctcgatatccgttctatcgatgaacaggaagataagccactgaaagtcgaagggattgatgtggtttctctgccgttctataaactgagcaccaaatttggcgatctcgaccagaacaaaacctggctgctgtggtgtgagcgcggggtgatgagccgtctgcaggcgctctatctgcgcgagcagggctttaacaatgtgaaggtatatcgcccgtaatttgtggtttttacgtcgcatctggtcagatgcgacgtttgccgcatccgacactactcgtaataattataaatccctgccgccatcaccagttgtgatgccacttcatgggctttttcacgcccaaccaacaggtcgataattttcagaccaaagtcgatagctgtacccggcccctggctggtcagcaattttacccgtgcatcccagacgacgcgcttgtccagccattgttcggcgggaattttgtctttcagcgtcgggaagccggtcatattaccaatcgggaagatatcgtgcggcaccagcacggtggctggcgcggcgcaaatagccgcgacgatacgcccggaacggtggaactgtttaacggtttcaaccagcagagtgctatcgcgaaaacactccgcgcctttaatgccaccaggcagcacgatcacgtcatattcgccatcagccacttcgaccagcggcgcatccgccagcagcttcacgccgcgcgagcaggtaatcgccaggttaccatcgctggcgacgctggcagtggtgactttgataccgccgcgaaccagcagatcgatagtggtgacggcttcagtctcttcactaccaggggcgaggcaaaccagtgccgatgcgctcatattcactctcctttctttttaccatttcaaacaggcgggtgttttccggtacggcaatcccatgcgcgcgggcgcggcgtaagagaaaaccattgatatagtcgatttcagtgtggcgcagcgcgcggatatcctgcaacatcgacgagatattttccgctgtggcatcaatcacctgcatcacgtaatcacgcaaatcttctgctgaagtatgatgcccttcgcgttcgatcaccgccgcgacttcttcgcatatctgcataatttcttgcggatgatgacgtaattcaccgttcgggcaattccagatggcagtcagtggattaatcacgcagttgactgccagcttgcgccacagctcggcgcgaatattgttatgccaggcaacgtcaggcaacacggtttgcaaaatatccgccagataactgtaatccccgtcctgttgccgtgccgggccaatatgcgtgataccgtttgccacatgaataatgacattgccgtcgcggcgggctgcatgggtggtggtgcccatcagtaatggctgctgaatgttttgcaactcttcgatggtgcccatgccgttgtgaattaacagtattggcgtagttacaggcagtgtggacgcgaggcttttgacggcatcggaaacctgccatgctttcagcgtcaccaggagcagatcgctggtggcgagaaaatcgggatcgttggcggtcagcgattcgttaaatatcgaaccatctgtctcaaccagattcacgctacaataaggttgcggtacgcgcagccagccctgaacttcatgaccctgtttgcaaagtgctgtaagccataattgccctaaggcaccgcatcccaatacggtaattttcattgttcctcctcacccgcaaccactccgggtgttcaataaggctatcccttaattgtgcatgctgttgcgactatgcacaattaagggatacgtcctggtgcaggactgtcggttatttaactttgcgggtattatgcttcgcatcaaaaatgaagggagaggaaaagatgccatctttcgatattgtctctgaagttgatcttcaggaagcacgtaacgcggtcgataacgcgagccgcgaagtggagtcccgttttgacttccgtaacgttgaagcctcatttgagctgaacgacgccagcaaaaccatcaaagtgttgagcgagtccgatttccaggtcaatcagttgctggatattctgcgtgccaagctgctgaagcgcggcattgaaggcagttcgctggatgtaccggagaatatcgttcatagcggtaaaacctggtttgtggaagcgaaactgaaacagggcattgagagcgcgacccagaagaaaatcgtcaagatgatcaaagacagcaaactgaaagtgcaggcgcaaattcagggcgatgaaatccgcgtaacgggcaaatctcgtgatgatttgcaggctgtcatggcgatggtacgtggtggcgatctcggtcagccgttccagttcaaaaacttccgcgattaatcgcgactatgtgcgttttgttcatgtcagatgcggcatgaacgcctgattcggcctacaaaggtttgtaattcagaaactttgtaggcctgataagcgtagcgcagcaggcaattcgccgcgttttttatgcctgacgaattgcctgttctatctcaaagcgattcgtcactttgctgtcgattttcacataagctgaatgttcttcttctgcaatcaacacttctttgatgccttcagtttctagcaaacgcacttttaacgcctcgtttgcggcaatgttcgccgggatttcaatgcgcaaactgctgacatacggcggttctttcatggtactggcgactgtcagccacactgcggccagcattgcgccagcgagaaataccccctgaccgtcaaacatgccgttaatccagccgcccagcgaaccgccaatcgccacgccaagaaactggctggtggagtaaacacccatcgccgtacctttgtaacctgctggcgactctttactgataagtgagggcaggagggcttccatcaaattaaacgccacaaagaaaagctgcacgccgaccaccagttgccagaactgcgtttgcgcgttccacaacacaatttccgcaaccacgatcaacccgacgcagaagacaaagacttgcttcattttgcgcttaacttcagcgtagataatgaaaggcacgaccgagccaaaggcgattagcattgtcgccagatagaccttccagtgttcagccgccgggaaccctgcatcagccagttgtccgggcagggcaacaaacgtcgacatcagcaaaatatgcagacacataatgccaaagttgagtttcagcagccgcggttccgccagcactttactgaaactgcctttcaccattccggactcacgattaagtacgtgagtgctactgttgggcacaacccaaatggtcaacgcaatgccggtcgttgccagaatagcgatcatccagaacagcgcgtgcagcccaagtttgtgagtgatgatcgggccaagcaccatcgcaatggcaaaggtaatgccaaagctcacgccgataaacgccatcgctttggtgcggttttgttcgcgcgtgagatcggaaagcagcgccataacggcggcggcaattgctccagagccttgtagcgcccggcccagaataattccccagatggagtcggaaagcgcagcgataacgctaccggcggcaaacaccgccagcccaccgacaattaatggtttgcgaccaatgcggtcggaaagcaggccaaacggaatctgaaaaacggcctgagtcagaccataaataccaatggcaataccgattaatgcttcgctggcaccttgcagagccatgccgtacgtggtcagaaccggcagaaccataaacatgcccagcatgcgcaacgagaatacggtccctaaaccccaggtcgcgcgcctctcacctggcgtcattttataatcgttcattaccacctctgttttaaattcgcgactagtgtaaagcggcaaacgaatggggtaaacatgcggattttttagtaaatatttcgagagggatatgtttctaatgctaagaaaaaaggtgccgtagcacctttttaatagagaggttttgttaccacacagcagccagcagcgtatgcgagtccggtaccataaaatcaacggacatcatcaccgagagggcagtgatggcgatgatagagaagccgaacagcttgcgcgcccagattctgtcatcagcaactttataaccgcgcagagccatacctaaccaccagacgctaaccgccgcggcgaccaccagatatttatacccagcgtaaccgccaagagagagcatcagcgtggcaacggcaaaggcgatgatatacagcgtgatgtgattcttcgccaccgaaatgccttttaccactggcaataccggaatgtttgccgcctggtaatccttaaagcggaaaatggcgatggcataggagtgaggcatctgccacaggctgaagatagccagcaggatcgctgcgccgctatcgaactcaccggttaccgcacagtagccgatcaccggcggcgcagcgccggagagcgaaccaatcaacgtgccgtagacagagtggcgtttcatgtacaggctataaacgccgacataaaccacaaagcccatcacccccagccagcaggccagcggattcgcgccaaaccacagcagcataaagccagcaatacccagcaacgtggcgtacaccagcgagacagcaggagagatcaggcctttcaccagcacccgattcttcgtcctttccatctttctgtcgatatccctgtcgatgtagttgttaaacacacaacccgacgccacaaccagtgacaccccaaccagcgtgtagataaacaggggataatcaatgctgccctttgaggccagcaggaatcccccaatcaccgagatcaggttgccaaagatgatgcctggtttcgttacttgcaggtattgcttaaacatcataaccgccgctcttagtgcatcatcatgttgtagttgaggttccacataatccagatggagcctacaaccaggatagcgatgattagcacggtgaagacaaacgccgtcatgttccagccttcatctgatttggtattcatgtgcaggaagcacaccagatgcaccagaacctgtaccactgccattgccaggattgttcccagaattacggccggagaggcagctcctgtcatcaccatccagaacggaatcaccgtcagaatgatcgacaggataaagcctgtcatgtaggtttttacgctgccatgggacgcgccgctgtgatcggtagaatgactcattacatcgcccccatcagataaacaacagtgaacacacagatccaaaccacatccaggaagtgccagaacaggctcaggcacatgatgcgggtacggttagtgctggtcaggccgcgacgggcgatttgcaccatcagcaccgccatccagataagaccagaagtgacgtgcagaccgtgcgtgccgaccagcgcaaagaacgctgacaggaagccgctgcgatccggacccatgccgttaacaatcaggtgatggaattcatagatttccatcccgataaatccggcaccaaacaaccaggtcaacgccagccaggagataacctggcttttgttgtttttgtacatggcgatagccgccatgccgtaggtgatggagctgaacaacagcaagaaagtttcaaccagaacgaacggcagttcgaaaatgtccttacctgtcgggccgcctgcggtgccgttcaccagaacggcataggtagcaaacaagatagagaacagaatgcagtcgctcatcaggtagatccaaaatccgaagattttggttccgcctgcatcgtggtgcccgtgttcgtgcgcgtgggcagtcgcgtgcgtcaaagtatcagttgccatttttcagccctgccttagtaatctcatcgaaatgctggttttccagtttttcgatttctgccaccggcacgtagtaatccacgtcctcgtcgaagcttttcacgatccaggtgatgatcatgcctgcgaagccaacaatcgccagccaccagatatgccagatcatggcgaaaccgaagatggtggagaaagctgcaatgacgatacctgcaccgctgtttttcggcatatgaatttcttcatagtggtcaggctttttatacgcttcgcctttctctttcatttcccagaatgcatcacgttcgtgaacgtgcggcactacggcaaagttatagaacggaggcggggaagaggttgcccactccagcgtacggccaccccacgggtcgccagtcaggtcacggttctggtcgcggtcgcgaatagaaacgtacatctgaataacgaggcagagaatacccagcgcaatcagtactgcaccgctggctgcaatcatcagcatggtgtggaactgcgggtcaatctgctggctcaaacgacgggtcatgcccatgaagcccagcgcatacagtggcataaaggcaacgaagaagccgatgatccagaaccagaacgcgcgtttaccccaggtttcgttcagtttgaaaccgaacgctttaggccaccagtaggtcatccctgcgaagcagccgaagaccacgccgccgatgatcacgttatggaagtgcgcaatcaggaacaggctgttatgcagaacgaagtccgcgcccggtacggccagcagcacgccagtcatcccgcccaccgagaaggtgacgataaaaccgatggtccacagcatcgcagaatggaacacgatgcggccctgatacatggtgaacagccagttgaagatcttcaccccggtcgggatggcgataatcattgtggtgataccaaagaaggcgtttacgttcgcgcccgcacccatcgtaaagaagtggtgcagccaaacgatgaacgacagcacggtgatacagacggttgcccataccagcgaggtataaccaaacagacgtttacgcgagaaggttgccgcaatttcggagaacacaccgaaaacaggcaggatcaggatgtaaacttccgggtggccccaggcccaaatcaggttgatgtacatcatcatgttgccacccatatcgttggtaaagaaatgggtgcccagatagcgatccagggtcaacaacgcgacggtaaccgtcagaattgggaaggaagcaataatcagtacgttcgcgcacagtgatgcccaggtaaatactggcatcttgaacatggtcatgcccggtgcgcgcatcttcagaatggtaacgaagaagttgataccggtaagcgtcgtacctataccggatagctggagactccatatccagtaatcgacaccgactcccggactgtactctattcccgatagcggtggataggccagccagccggtctgcgcaaattcgcccacgccgagagaaacgttaaccagaatcacaccaacaacggtaaaccagaagcttaagttgttgaggaacgggaacgcaacgtcacgcgcgccgatctgcagcggaaccaccaggttcatcagaccgataacgaaaggcatcgccacgaagaagatcataatcacgccgtgcgcggtaaagatctgatcgtagtggtgaggtggcaggaagcccgcttcgcccgccgaggcaagagcctgctggctacgcatcataatggcgtcagcaaaaccacgcagcaacatcacaatcgccacgatgatatacatgataccgaggcgtttatggtcgacggaggtcagccactctttccacaggtaggtccacttaccgaagtaagtgatcaggccaacgagcgccagacctcccaaaataatgccagcgatcgtaaccatgacgataggttcatggaacgggactgcatcaagtgataattttccgaacatctttattcttcctcaacccctttaatgggcggattccgcgtggctcatgtccatgccttccataccttcgtgtgcgctgtgctcaccttctggctgggtcatgtccatgctcttaccgtgagccataaacttgttaattacatcggcaaacaagtctggtttcacgttggagaaatattccacctggttgtattcgctaggcgcggccagtttttcgaacgcagccatgtcagacatggtgttcggcgactgcttcgcttttgcgacccactggtcgaatgcggcgcgatccggtgttgcaatagctttgaacttcatgcctgagaagcccgggccgctgtagctggcggagataccgtcataagtgccgggttcgttggcgatcagatgcaggcgagtctgcataccggccatggcataaatctggctacccagacgcggaatgaagaaggagttcatcacggagttggaggtcactttgaagtacaccggagtgttcgccgggaaagcgatttcattcacggtagcaatgccctgttccgggtagatgaagaaccatttccagtccatggaaaccacttcgatggtaatgggcttctcgtcgtgtgccagcggcttgctaggctcaagagcgtgagtggttttccaggtcagtactgcaaggaagatgatgattaagataggtaccgtccagaccacagcttccactttattggagtgtgaccagttcgggctgtacttagcatctttattgctcgcacggtacttccaggcgaaaccaacagccatcaagattgcgggaataacgacaatcaacatcaggccaaatgccgtcagtatcagtgaacgttgctccagaccaatctgtcctttgggatctaacagcgcagaattacagccactgagcaatacagtgcctgcaaataatgacaaccatcccaaacttttattgtatttcctgagtctcatttaacgacctcaattccacgggatctggtggcgtttaaagtgtgtgggcattttacgggaaggttacattactgtaaacatgattaaattcctgttacttggatttggctgccaggtcacatatgttgcaaaacatatcaggttgattttaagaagctgttgcaaaagggcgttataacaaaaggggagtgctgaaggagtctgggcgggcaattggtataaccaatgtgaaataaaacaattatttaacaaataattatcattagagtgacaactgggtgatgagaaaataaagactcattagctgaatcgtgtaagaaaaatagaatttataaatggcgccaataatttccaaacgctaagccgcacaaaagaacaaatattaataagcgatactgatgtttatttagccgtaataattacggcgagtgattactacagctaaataatatttacagattacgtcagatgcgtttttcgtagcgccagataatccagcaaaccaccaagcacgacgccagaaagggcgactaaaaccccgacttccagcagagcaggcaggaaagagaagtgcgtcaaatccagcgcgtccatcgtcaatagcagtaaccacacggccaacaggctgacgcccgccgccagtgtccacatggcaaaggcataacctgccggatatgcggtacgggagataaagttgtcatttactcgtgtatattcaagcgtctggcggcaaaccagcagcaaaataagccctggtacggcagcggcgacggagaatagatagaatgtcgaccagccgtgtgcttcaacaaaccaacccgccacggggccgacataaactcgccctacagcagaaagcgctgagagcagggcaaattgagtagcggaaaatgacttattacatagcgtcattaacagcgcgacaaaggctgatgtgcccatcccgccacagaggttttcgaaaaagacggctgcgcccatgctgtagagatgcttatcagtaatcgacagcagccagtaaccggcgttagacgcaccttgtaaaatgccgaaaatcagcagtgcccggaacagtgacaggcgctgcatcaaaatcccaccgtacaatgcgccaacaatggtcgctagtaagccaagcgttttgttaaccacgcctacttcacccgcatcaaacccgacgccgcgaatcaaaaacgtggttgtcaggctcatggcgaatgcgtcgcccagcttatacagcacgataagaagcaaaataagccaggcattattgcgaccaaagaaatctcgcagaggtgcaacaaccgcttgttccagcgttttgggcacaggaatggtgtcggttggttctggtgcaagcaacgtcgcgataatacaggggatcaacagtgccgccattaaccagtacatgccctgccagcccagccatttatctgccagccacagggctaggccgccggaaaccagcatccctaaacggtaacccagcacgctgattgccgcgcccgcaccacgttcttctgccggaagcacatcggttttccacgcatcgaagactatatcctgggaagcagagcaaaaagcgatcaccactgccagcgccgccatccagcggagttgggtgcctggttcgagaaaacccatcgccgcaatggcgactaataacaggatttgcgtggcgagcagccaaccgcgccgccgcccaaaaaatggaggcgtgtagcggtccatcagcggtgaccagaggaatttaaaaacgtaagcctggcctaccagagagaagaaaccaatggttttgagatcgatattctcgaccgtcatccaggcctgtaaggtaccggatgtcagggcgagcggtagcccggaagcaaaacccaggatcagcaatatggctgaacgcggctgttgaaaaatacgtaaatattgactggacatgggcgtctacaggcccggcttgcaccgggccagagggcagaaattaacgcgcgttctgcttgatgaattcgtggatgctggtgtcctgagacatatcagcgatggtatcggtcagcacactgttaaccgcatcggcgatatttttgttggaggcctggaacgcaccttcaacgttgtagctggcacgatagtttttggtcattttgttgccattctgcgcggtagcgatgatggcgatatccgctttggtcgcgatgttgtagcgcacgttgccctgggacacgtcagcatacagttggctaacgatgatttgcagattaaccgggccattcggaccaaccatgtaaccacgcgcggtcatctgtttttccagcacttcttgcagcaggaaacgcagatcgcgggaggcggtcagggtaacgatttgattatcgcgggtgacttttgccagcgcctgatcggtacgctgatcggcaccattaatgcttacggtgacgcccatcaggcttggatcctgctgtggcagtgtaatcgtcggggaaacttcaatagttgttggcggttttgcgcatcctgcaagcataaacagagcaactaacgggaagaggatttttttgaacatgttcgggctctcagagactcttaagcgtgtttggtaaaaattcccgccatcataacattgccaacggcgaggggaagtgggtaaggcatgtaaattcatcatgttgacgaaataatcgcccctggtaaaagaaacactgatgcgaggcctgtgtttcaatctttaaatcagtaaacttcatacgcttgacggaaaaaccaggacgaaacctaaatatttgttgttaagctgcaatggaaacggtaaaagcggctagtatttaaagggatggatgacatctcagcgttgtcggaggagatatttcatgatgatacgtgagcggatagaagaaaaattaagggcggcgttccaacccgtattcctcgaagtagtggatgaaagctatcgtcacaatgtcccagccggctctgaaagccattttaaagttgtgctggtcagcgatcgttttacgggtgaacgttttctgaatcgtcatcgaatgatttacagtactttagcggaggaactctctactaccgttcatgcgctggctctgcatacttacactattaaggagtgggaagggttgcaggacaccgtctttgcctctcctccctgtcgtggagcaggaagcatcgcgtaaaaacgcatttgcaactgtcggcgcttttccagtatgttgctaaagattttatgaaaaacggcctgcgggccgttttgttttgtctggattttgcgctttttgcccagcattcagacgaaaattgcccgggaattgtgaaaaaatacgcgacagcgcgcaataaccgttctcgactcataaaagtgatgccgctataatgccgcgtcctatttgaatgctttcgggatgattctggtaacagggaatgtgattgattataagaacatcccggttccgcgaagccaacaacctgtgcttgcggggtaagagttgaccgagcactgtgattttttgaggtaacaagatgcaagtttcagttgaaaccactcaaggccttggccgccgtgtaacgattactatcgctgctgacagcatcgagaccgctgttaaaagcgagctggtcaacgttgcgaaaaaagtacgtattgacggcttccgcaaaggcaaagtgccaatgaatatcgttgctcagcgttatggcgcgtctgtacgccaggacgttctgggtgacctgatgagccgtaacttcattgacgccatcattaaagaaaaaatcaatccggctggcgcaccgacttatgttccgggcgaatacaagctgggtgaagacttcacttactctgtagagtttgaagtttatccggaagttgaactgcagggtctggaagcgatcgaagttgaaaaaccgatcgttgaagtgaccgacgctgacgttgacggcatgctggatactctgcgtaaacagcaggcgacctggaaagaaaaagacggcgctgttgaagcagaagaccgcgtaaccatcgacttcaccggttctgtagacggcgaagagttcgaaggcggtaaagcgtctgatttcgtactggcgatgggccagggtcgtatgatcccgggctttgaagacggtatcaaaggccacaaagctggcgaagagttcaccatcgacgtgaccttcccggaagaataccacgcagaaaacctgaaaggtaaagcagcgaaattcgctatcaacctgaagaaagttgaagagcgtgaactgccggaactgactgcagaattcatcaaacgtttcggcgttgaagatggttccgtagaaggtctgcgcgctgaagtgcgtaaaaacatggagcgcgagctgaagagcgccatccgtaaccgcgttaagtctcaggcgatcgaaggtctggtaaaagctaacgacatcgacgtaccggctgcgctgatcgacagcgaaatcgacgttctgcgtcgccaggctgcacagcgtttcggtggcaacgaaaaacaagctctggaactgccgcgcgaactgttcgaagaacaggctaaacgccgcgtagttgttggcctgctgctgggcgaagttatccgcaccaacgagctgaaagctgacgaagagcgcgtgaaaggcctgatcgaagagatggcttctgcgtacgaagatccgaaagaagttatcgagttctacagcaaaaacaaagaactgatggacaacatgcgcaatgttgctctggaagaacaggctgttgaagctgtactggcgaaagcgaaagtgactgaaaaagaaaccactttcaacgagctgatgaaccagcaggcgtaatttacgcagcataacgcgctaaattcgcacaaaggcccgtcaccgccaggtggtgggcttttttttgtcatgaattttgcatggaaccgtgcgaaaagcctctttcggtgttagcgtaacaacaaaagattgttatgcttgaaatatggtgatgccgtacccataacacagggactagctgataatccgtccataaggttacaatcggtacagcaggttttttcaattttatccaggagacggaaatgtcatacagcggcgaacgagataactttgcaccccatatggcgctggtgccgatggtcattgaacagacctcacgcggtgagcgctcttttgatatctattctcgtctacttaaggaacgcgtcatttttctgactggccaggttgaagaccacatggctaacctgattgtggcgcagatgctgttcctggaagcggaaaacccagaaaaagatatctatctgtacattaactccccaggcggggtgatcactgccgggatgtctatctatgacaccatgcagtttatcaagcctgatgtcagcaccatctgtatgggccaggcggcctcgatgggcgctttcttgctgaccgcaggggcaaaaggtaaacgtttttgcctgccgaattcgcgcgtgatgattcaccaaccgttgggcggctaccagggccaggcgaccgatatcgaaattcatgcccgtgaaattctgaaagttaaagggcgcatgaatgaacttatggcgcttcatacgggtcaatcattagaacagattgaacgtgataccgagcgcgatcgcttcctttccgcccctgaagcggtggaatacggtctggtcgattcgattctgacccatcgtaattgatgccagaggcgcaactgtgccgctatacttatccagggcggcacaacgctgtaagcggcttgcgcctgagaatggcatttgcgtcgtcgtgtgcggcacaaagaacaaagaagaggttttgacccatgacagataaacgcaaagatggctcaggcaaattgctgtattgctctttttgcggcaaaagccagcatgaagtgcgcaagctgattgccggtccatccgtgtatatctgcgacgaatgtgttgatttatgtaacgacatcattcgcgaagagattaaagaagttgcaccgcatcgtgaacgcagtgcgctaccgacgccgcatgaaattcgcaaccacctggacgattacgttatcggccaggaacaggcgaaaaaagtgctggcggtcgcggtatacaaccattacaaacgtctgcgcaacggcgataccagcaatggcgtcgagttgggcaaaagtaacattctgctgatcggtccgaccggttccggtaaaacgctgctggctgaaacgctggcgcgcctgctggatgttccgttcaccatggccgacgcgactacactgaccgaagccggttatgtgggtgaagacgttgaaaacatcattcagaagctgttgcagaaatgcgactacgatgtccagaaagcacagcgtggtattgtctacatcgatgaaatcgacaagatttctcgtaagtcagacaacccgtccattacccgagacgtttccggtgaaggcgtacagcaggcactgttgaaactgatcgaaggtacggtagctgctgttccaccgcaaggtgggcgtaaacatccgcagcaggaattcttgcaggttgatacctctaagatcctgtttatttgtggcggtgcgtttgccggtctggataaagtgatttcccaccgtgtagaaaccggctccggcattggttttggcgcgacggtaaaagcgaagtccgacaaagcaagcgaaggcgagctgctggcgcaggttgaaccggaagatctgatcaagtttggtcttatccctgagtttattggtcgtctgccggttgtcgcaacgttgaatgaactgagcgaagaagctctgattcagatcctcaaagagccgaaaaacgccctgaccaagcagtatcaggcgctgtttaatctggaaggcgtggatctggaattccgtgacgaggcgctggatgctatcgctaagaaagcgatggcgcgtaaaaccggtgcccgtggcctgcgttccatcgtagaagccgcactgctcgataccatgtacgatctgccgtccatggaagacgtcgaaaaagtggttatcgacgagtcggtaattgatggtcaaagcaaaccgttgctgatttatggcaagccggaagcgcaacaggcatctggtgaataattaaccattcccatacaattagttaaccaaaaaggggggattttatctcccctttaatttttcctctattctcggcgttgaatgtgggggaaacatccccatatactgacgtacatgttaatagatggcgtgaagcacagtcgtgtcatctgattacctggcggaaattaaactaagagagagctctatgaatcctgagcgttctgaacgcattgaaatccccgtattgccgctgcgcgatgtggtggtttatccgcacatggtcatccccttatttgtcgggcgggaaaaatctatccgttgtctggaagcggcgatggaccatgataaaaaaattatgctggtcgcgcagaaagaagcttcaacggatgagccgggtgtaaacgatcttttcaccgtcgggaccgtggcctctatattgcagatgctgaaactgcctgacggcaccgtcaaagtgctggtcgaggggttacagcgcgcgcgtatttctgcgctctctgacaatggcgaacacttttctgcgaaggcggagtatctggagtcgccgaccattgatgagcgggaacaggaagtgctggtgcgtactgcaatcagccagttcgaaggctacatcaagctgaacaaaaaaatcccaccagaagtgctgacgtcgctgaatagcatcgacgatccggcgcgtctggcggataccattgctgcacatatgccgctgaaactggctgacaaacagtctgttctggagatgtccgacgttaacgaacgtctggaatatctgatggcaatgatggaatcggaaatcgatctgctgcaggttgagaaacgcattcgcaaccgcgttaaaaagcagatggagaaatcccagcgtgagtactatctgaacgagcaaatgaaagctattcagaaagaactcggtgaaatggacgacgcgccggacgaaaacgaagccctgaagcgcaaaatcgacgcggcgaagatgccgaaagaggcaaaagagaaagcggaagcagagttgcagaagctgaaaatgatgtctccgatgtcggcagaagcgaccgtagtgcgtggttatatcgactggatggtacaggtgccgtggaatgcgcgtagcaaggtcaaaaaagacctgcgtcaggcgcaggaaatccttgataccgaccattatggtctggagcgcgtgaaagatcgaatccttgagtatcttgcggttcaaagccgtgtcaacaaaatcaagggaccgatcctctgcctggtagggccgccgggggtaggtaaaacctctcttggtcagtccattgccaaagccaccgggcgtaaatatgtccgtatggcgctgggcggcgtgcgtgatgaagcggaaatccgtggtcaccgccgtacttacatcggttctatgccgggtaaactgatccagaaaatggcgaaagtgggcgtgaaaaacccgctgttcctgctcgatgagatcgacaaaatgtcttctgacatgcgtggcgatccggcctctgcactgcttgaagtgctggatccagagcagaacgtagcgttcagcgaccactacctggaagtggattacgatctcagcgacgtgatgtttgtcgcgacgtcgaactccatgaacattccggcaccgctgctggatcgtatggaagtgattcgcctctccggttataccgaagatgaaaaactgaacatcgccaaacgtcacctgctgccgaagcagattgaacgtaatgcactgaaaaaaggtgagctgaccgtcgacgatagcgccattatcggcattattcgttactacacccgtgaggcgggcgtgcgtggtctggagcgtgaaatctccaaactgtgtcgcaaagcggttaagcagttactgctcgataagtcattaaaacatatcgaaattaacggcgataacctgcatgactatctcggtgttcagcgtttcgactatggtcgcgcggataacgaaaaccgtgtcggtcaggtaaccggtctggcgtggacggaagtgggcggtgacttgctgaccattgaaaccgcatgtgttccgggtaaaggcaaactgacctataccggttcgctcggcgaagtgatgcaggagtccattcaggcggcgttaacggtggttcgtgcgcgtgcggaaaaactggggatcaaccctgatttttacgaaaaacgtgacatccacgtccacgtaccggaaggtgcgacgccgaaagatggtccgagtgccggtattgctatgtgcaccgcgctggtttcttgcctgaccggtaacccggttcgtgccgatgtggcaatgaccggtgagatcactctgcgtggtcaggtactgccgatcggtggtttgaaagaaaaactcctggcagcgcatcgcggcgggattaaaacagtgctaattccgttcgaaaataaacgcgatctggaagagattcctgacaacgtaattgccgatctggacattcatcctgtgaagcgcattgaggaagttctgactctggcgctgcaaaatgaaccgtctggtatgcaggttgtgactgcaaaatagtgacctcgcgcaaaatgcactaataaaaacagggctggcaggctaattcgggcttgccagcctttttttgtctcgctaagttagatggcggatcgggcttgcccttattaaggggtgttgtaaggggatggctggcctgatataactgctgcgcgttcgtaccttgaaggattcaagtgcgatataaattataaagaggaagagaagagtgaataaatctcaattgatcgacaagattgctgcaggggctgatatctctaaagctgcggctggccgtgcgttagatgctattattgcttccgtaactgaatctctgaaagaaggggatgatgtagcactggtaggttttggtacttttgccgttaaagagcgtgctgcccgtactggccgcaacccgcagaccggtaaagagatcaccatcgctgctgctaaagtaccgagcttccgtgcaggtaaagcactgaaagacgcggtaaactaagcgttgtccccagtggggatgtgacgaagttcaagggcgcatctactgatgtgccttttttatttgtattcggtgactttctgcgtcttgtgggctgacaattgcccccgtttcttgtcacaataggcctttgcgcgcatcgatacgttgcgtgaggtacacagtcatctacagcggagtgttgttacaccatgatggacagcttacgcacggctgcaaacagtctcgtgctcaagattattttcggtatcattatcgtgtcgttcatattgaccggcgtgagtggttacctgattggcggaggcaataactacgccgcaaaagtgaatgaccaggaaatcagccgtgggcaattcgagaacgccttcaacagcgagcgtaatcgcatgcagcaacagctgggcgatcaatactccgagctggcagcgaacgaaggctatatgaaaaccctgcgtcaacaggtgctgaatcgtctgatcgacgaggcgctgctggatcagtacgcacgtgagctgaaactgggtatcagcgatgagcaggttaaacaggcgattttcgcgaccccagccttccaggttgacggcaaatttgataacagccgctataacggtatcctcaaccagatggggatgaccgccgatcagtacgcccaggcgctgcgtaaccagctcactacccaacagctgattaacggcgttgccggtaccgattttatgctgaaaggtgaaaccgacgagctggcggcactggtcgcgcaacaacgcgtggtgcgtgaggcgactatcgatgttaacgcgctggcggcgaagcagcctgtgaccgaacaggagattgccagctactacgaacaaaacaaaaacaatttcatgacgccggaacaattccgcgtgagttacatcaagctggatgccgcaacgatgcagcaaccggttagcgatgcggatatccagagctactacgaccagcatcaggatcaattcacccagccgcagcgtacccgctacagcatcatccagaccaaaactgaagatgaagcgaaagcggtacttgatgagctgaataaaggcggtgattttgctgcattagccaaagaaaaatctgccgatattatctctgctcgtaacggcggcgatatgggttggttagaagatgccactatcccggacgaactgaaaaatgctggtctgaaagaaaaaggccaactgtctggtgtcatcaaatcttcggtcggtttcctgattgtacgtctggacgacattcagccagcgaaagtgaaatcgttagacgaagtacgtgacgacattgcggcgaaagtgaaacacgaaaaagccctcgatgcgtactacgcgctgcagcagaaagtgagcgatgcggcaagcaacgacaccgagtctctggccggtgcagagcaagctgccggcgttaaagccactcagacgggttggttcagcaaagataacctgccggaagagttgaacttcaagccggttgccgacgctatctttaacggcggtctggtaggtgaaaacggcgcgccgggcatcaactctgacatcatcaccgtagacggcgaccgcgcattcgtgctgcgcatcagcgagcacaaaccggaagcggtgaaaccgttggcagatgttcaggaacaagttaaggcattggttcagcacaacaaagctgaacaacaggcgaaagtggatgctgagaaactgctggttgatttgaaagccggcaaaggtgcggaagctatgcaggctgccggtctgaaatttggcgagccgaaaaccttaagccgttccggtcgtgacccgattagccaggcggcgtttgcactgccactgccagcgaaagacaaaccgagctacggtatggcgaccgatatgcaaggtaatgtggttctgctggcgctggatgaagtgaaacaaggttcaatgccggaagatcagaaaaaagcgatggtgcagggtatcacccagaacaacgcacaaatcgtctttgaagctctgatgagtaacctgcgtaaagaggcgaaaatcaaaattggcgatgcgctggaacagcaataatcctgaagccgcctcgcaaaaaaatgcgttgcagctgtaacaagaaaaggtcgctttcgcggccttttccatttctgaacattgccatttgtttactgttttcactgccgttaaggtgattccactgttaacaaacaaggagaaaacagtatgaaacacggaattaaagcactgctcattaccctgtccctggcctgtgccggaatgtctcatagcgcgctggcggcagcttctgtggcgaaaccgacggcggtagaaaccaaagcggaagctcctgcagcacaaagtaaagcagcagtaccggcgaaagccagtgacgaagaaggcacccgggtcagcattaataatgccagcgcggaagagctagcccgcgcgatgaatggcgttggcctgaagaaagcgcaggcgattgtcagttatcgcgaagagtacggtccgtttaaaactgtggaggatctaaagcaggtgccggggatgggcaattcgctggtggaacgtaatctggcggtattaaccctgtaattaatttgcatagtggcaattttttgccagactgaagaggtcataccagttatgacctctgtacttataacaacaacgtaaggttattgcgctatgcaaacacaaatcaaagttcgtggatatcatctcgacgtttaccagcacgtcaacaacgcccgctaccttgaatttctcgaagaagcccgctgggatgggttggaaaatagcgacagttttcagtggatgacggcccataacatcgccttcgtcgtggtcaatatcaatattaactatcgtcgcccagcggtattaagtgacctgttaactattaccagtcagttgcagcaattaaacggtaaaagcggcatcttaagccaggtcattacactggagccggaagggcaggtggtagcggatgcgcttattacgtttgtttgtattgatcttaaaacgcagaaagcattagctctggaaggggaattgcgcgaaaagctggagcagatggttaagtaaacgttttgtggtgccggatgctcaagccgcatccggcgacacccggaataattacctcaacccggttttctgcttcatcgctgccatcaccgtcggtttatcggccagataatgattcaaaccgttggcgcgtaaattacatgccgcacaatgaccgcaaccgtcgcctttaaagccgttatagcaggtcaacgtttcgttacggactaaatccagtttgccgtaataatctgccagcgcccaggtttccgctttatcaatccacatcagcggcgtttcaaaacgaatatctttcgccatgcccaaactgacggcatggtttagtgctttcacaaactcatcgcggcaatccgggtagccggagaaatccgtttcgcagacgccagtaattacggcttctgcttttacctgatacgcatatattgccgccagcgtcaggaacaaaatattacgccctgggacaaacgtattcgggataccatcggcttcaggttcataatcaggcaccggaatgctgtcacgcgtcaggctactgaccgccagctcgttgagcagggtgacatccagcaccttatgcgcgcgtgcccccagtttcagcgccagttcgcgtgccacgtcgatttctgcgcgatgccgctgaccgtaatcgaacgtcacgcaatggacttcatcatattgttgtaatgcctgcaccagacaggtggtggaatcctgacctccactgaacacaacgacagcacgtttcatagataatcctgcttgaacaataaaagcgttatggtaacgcctgcgattaacccggaccagctattcattgcgatggcgcgggaagccaggcttcggtaaattcaaaccagccgcgcggtgtcagtcgcacaccgttcacgccgggaggggcactaatgcgatagtgatagttgaacagcggcgtcagcgtcgcatctgtcattaactggctaaaaaccgctttcagggcattaaatcggttttcttcatcaggcattatttgcacggcatccagtgtcgattgtagatgtgcgtatgctggagcgtcgaaaacatgtggccacagcggatcgcagcgcagccattgctccagagtatattccggtgcttcgccaattaatctgtcgcccatcatgaggtctgcgtgtgcctgtagggtcgtgtcgtcccagttttttgcgttatgaaaaataattgtgagttcacagccttccgctgccagtgtcgcctgtaggcgttctgccatggtatgaagttctatcggtaggtgataaaccagcgtcaaggttttcggtagtttgacttcatccggtacctgccaatgcggaatagtccagcctggcagtaatgcatgactggcggtgatcaggttttctccgacttctaacgtttgtaataaaccggattgatgaataatggagatcacttttcgcgcctgccagagggagagtcggggacttttgcgcaacgtcaaatagcaaaaacctaaactgatgccgctactgacctggctgacccgttgcagctcctccggtttgccgatggtgatttgcacgggatgccgacaactggttcccaaatctttttcgaaaagcggcggagttatccagtactcaaccgctttaagcagcggatgacgtaaatggtaataatcatggctttccaggcgcaccagctctgctgtgaattgtgttaagcgaaaaggacccgtgccgatcagtgggaattgcggatgcgccagatggctgcaatagctcgccagccggtgcgcaagccagtaatcagggcgatgtaaaaagaaggtcagacactgcggatgggtgacttcaatacgcttcacgctaataaataattgatccagtgctggcagttgtaacagcatcaataatcgctggtgtaagtgtgaggcttttactgcatcgccgttatgccagtgtagggttgaacgaagataaaagtcccagcgtaacccgtcagtagaggtttcccagtgatgcgctaaatcgccaatcgggcgctgagtattattatcgaagcgggtcaggccggaaaatatctgcccggcgagatgctgctcggcacggccgggcaaaaagcctggttgtagcggttcgagcgggcgatagtagggaatacgcaacgtgggtgtatcgttttgccattgtccgcccataaacggctgtaacagagtgcgcagctcacctggggccagttgcgccagctccagcacatcttgctgctttccggtttccagtgcctgttccatcatcgcattgcgtagcgattccggcgtgaccagaaagcgtaattgtccgcgctttccgcgtcctgactgcgcctgccactccagccatcccgcctcctgtgcctgacgcaacagcgtacgaacatggcgttcgctgcaaaaacagcgttcggccagttcgctgacggtgacggtttgcggctttccggcggaaggttgccacagacgttgatactggttaagacggttgagcaatcgcatataaacccggaacaatattatttaactattcactattacttccgtatatatcaggtgatactcaatcaccattaaccgtgtcacagagtggagaaagaaatggctcgtctggcagcatttgatatggatggcactttattgatgcccgaccatcatttaggtgagaaaaccctctctactttggcgcgactgcgtgaacgcgacattaccctcacttttgccacggggcgtcatgcgctggagatgcagcatattctcggggcgctatcgctggatgcgtatttgattaccggcaacggaacgcgcgtgcattctctggaaggtgaacttttacatcgtgatgatttacctgcggatgtcgcggagctggtgctgtatcagcaatgggatacccgagccagcatgcatatcttcaatgacgacggttggtttaccgggaaagagatccctgcgttgttgcaggcatttgtctatagcggttttcgttatcagataatcgatgtcaaaaaaatgccactcggcagcgtcaccaagatctgcttctgtggcgatcacgacgatcttacacgcttgcagatccagctatacgaagcattaggcgagcgtgcacatttgtgtttttccgccacggattgcctcgaagtgctgccggtgggctgcaataaaggcgctgcattgacggtgctgacccaacatttaggtttatcgttgcgcgattgcatggcctttggtgatgcgatgaacgatcgcgaaatgttagtcagcgtcggtagcggatttattatgggcaatgcgatgccgcaactgcgcgcggagctcccgcatttaccggtgattggacattgccgaaatcaggctgtctctcactatttgacgcactggctggactatccacatctaccttattcccccgaataacgagatcccttccagcaccgggcaattgcccggttttttttgcgttgaatttgtcattttgtgccgtggtgtttaaaccgcacagaataaattgtcgtgatttcacctttaaaataaaattaaaagagaaaaaaattctctgtggaagggctatgttagataaaattgaccgtaagctgctggccttactgcagcaggattgcaccctctctttgcaggcactggctgaagccgttaatctgacaaccaccccttgctggaagcgcctgaaacggctggaggacgacggtatccttatcggcaaagtcgccctgctggatccggaaaaaataggcctcggcctgaccgcttttgtgctgataaaaacgcaacatcacagcagcgaatggtattgccgctttgtcacggtggttaccgaaatgccagaagtgctggggttctggcgcatggctggtgaatacgattatctgatgcgcgtccaggttgccgacatgaaacgctacgacgagttttataagcgtctggtaaacagcgtgccggggctgtcggacgtcacttccagcttcgcgatggaacagattaaatacaccacttctttacccatcgaataaatatccagaatcaggtcaggacacaacgcgtgcgattatttgctcaattaagctggtatttccgtcgggaatggcgtcgctatctcggggctgtcgccttgcttgtcattatcgcgatgctgcaactggttccgccaaaagtggttggtattgttgtcgatggcgtgacagaacaacactttactaccgggcagatcctgatgtggatcgccaccatggtgctgattgccgttgtggtttatctcctgcgttacgtctggcgggtattgctgtttggtgcgtcttatcaactggctgttgaactgcgtgaagattattaccgtcagctaagccggcagcatcctgagttttacctgcgtcatcgcaccggtgacctcatggctcgtgcgaccaatgacgtcgatcgcgtcgtgtttgccgccggagaaggggtgctgacgctggtggattcactggtgatgggctgcgctgtgttgattatgatgtctacgcaaattagctggcagttgaccttattttccctgttgccgatgccagtgatggcgatcatgattaagcgcaacggcgatgctttgcatgaacgctttaagctggcacaggcggcgttttccagtcttaatgaccgcacccaggaaagcctcaccagtatccgcatgatcaaagcctttggtctggaagatcgccagtcggcgttatttgccgcggatgccgaagataccggcaaaaaaaacatgcgggtggcgcgtattgatgctcgtttcgacccgaccatctatatcgcgattggtatggcgaacttgctggcgattggcggcggtagttggatggtggtgcagggcagtttaacgctgggccagctcaccagttttatgatgtatttaggtctgatgatttggccaatgctggcgctggcatggatgtttaacattgtggaacgtggtagtgctgcgtacagccgtattcgcgcgatgctggcggaagcgccggtggtgaacgatggtagcgaacccgtgccggaagggcgtggcgaactggatgtaaatattcaccagttcacgtatccgcagactgaccatcctgcgctggaaaacgtcaatttcgccctgaaacccggtcagatgctgggtatctgcgggccgactggttccggcaaaagtaccctgttgtcgctcattcagcgtcatttcgacgtcagcgagggggatattcgctttcatgatattcctctgacgaagttacaactcgatagctggcgtagccgcctggcggtagttagccagacgccattccttttttctgacactgtggcgaataacatcgcgctgggttgcccgaatgccacccagcaagagattgagcatgtcgcgcggttagccagcgtacatgacgatattttgcgtctaccgcaaggttacgatacagaggtgggcgagcgcggtgtgatgctttccggcgggcaaaaacagcgtatctccattgctcgtgcgttattagtcaacgcggaaatcctcatccttgatgatgcgctttcggcggtggacggacgcactgagcaccagatcctgcataacctgcgtcagtgggggcagggaagaacggtaatcatcagtgcccatcgcctttctgcactgacggaagccagtgaaattattgtgatgcagcacggacatatcgcccagcgtggcaatcatgatgtgctggcacaacaaagcggctggtatcgcgatatgtatcgctatcaacaactggaggcggcgctcgacgacgctccggaaaatcgcgaggaggccgtcgatgcgtagttttagccaactgtggccgactctcaagcgcctgttagcgtacggttcgccgtggcgtaaaccgctggggattgcggtcctgatgatgtgggttgcggcggcggcagaagtcagtgggccgctgcttatcagctattttatcgacaatatggtagcgaaaaataacctgccgttgaaagtggttgcagggctggctgcggcgtatgttgggctgcaactgtttgccgccgggctacattacgcgcagtcgctgctgtttaatcgggcggcagtaggcgtagtgcaacagttgcgtaccgacgtgatggatgctgcgttacgccagccattaagcgagtttgatacccaacccgtcgggcaggtgatttcccgcgtcactaatgacactgaagtgatccgcgatctctacgttaccgtagtggcaactgtcctgcgcagtgccgcgctggtgggcgcgatgctggtggcgatgttcagcctcgactggcgaatggcactggtggcgataatgattttcccggtggtgctggtggtaatggtgatataccagcgttacagcacgccgattgtccgtcgtgtgcgcgcctatttggcggatatcaacgacggctttaacgaaatcatcaatggcatgagcgttatccagcagtttcgtcagcaggcgcgatttggcgaacgtatgggggaggccagtcgttcacactatatggcgaggatgcaaaccctgcgcctcgacggttttctgctgcgtccgctgctgagtctgttttcatcgctcattctttgtggcttgttgatgctgtttggcttctccgccagcggcaccattgaagtgggcgtgctgtatgcgtttatcagctatcttgggcgacttaacgaaccattaatcgaactgaccacgcaacaggcgatgctgcaacaggctgttgttgctggtgagcgcgtgtttgaactgatggacggaccgcgccagcaatatggcaatgatgatcgcccgttacagagtggcaccatcgaagtcgataacgtgtcatttgcttatcgcgatgacaatctggtgctaaagaacattaatctctctgtgccttcgcgcaattttgtggcgctggtcgggcataccggcagtggcaaaagcaccctcgccagtttattgatgggctattacccgctaacggaaggtgagattcgccttgatggtcgtccattaagttcgctaagtcacagcgcgctgcgccagggcgtggcaatggtgcagcaagatccggtggtgctggcggataccttcctcgccaacgtgacgctggggcgggatatctccgaagaacgcgtctggcaggcgctggaaaccgtgcaactggcggagctggcgcgtagcatgagcgacggtatttacacgccgctgggcgagcaggggaataatctctcagttgggcaaaagcaactgctggcactggcgcgcgtgctggtcgagacgccgcaaatcctgatccttgatgaggcaaccgccagcattgactccggtactgaacaggcgattcaacatgctctggcggcggtgcgtgaacataccacgctggtagtgattgctcaccgcttatcgaccattgttgatgccgacaccattctggtgcttcatcgtgggcaagccgtggagcagggcactcaccagcaactgctggcggcccagggacgctactggcagatgtatcaactgcaacttgcgggcgaagagctggcagccagcgtgcgtgaagaggaatcattgagcgcctgaatagcgcaatatttcatcgttggtgcaaaaatgtaacgcactgtgcactgtcatagtgcgttttcattttcaaacttcttaacttcctgctctctttctcgtttttcatttctggcacaccgcttgcaataccttcttcgtgtagcagaaccattaccgaattctgaccggaggggatctatgaagctggtgaccgtgataatcaaaccattcaagctggaagacgttcgtgaagcgttatcttccattggtattcagggcctgaccgtcaccgaagtgaaaggtttcgggcgtcagaaagggcatgccgagctgtaccggggggcggaatacagcgtcaatttcctgccaaaagtaaaaattgatgtggcgattgctgatgaccaactcgatgaagtgatcgatatcgtcagtaaggcggcttacaccggaaaaattggcgacggcaaaatcttcgtcgctgaattgcaacgcgtcattcgtattcgtaccggcgaagccgacgaagcggcgctgtaatctctggcacacagcaacaggaacgaaaaatgaagatagcgacgataaaaactgggcttgcttcactggcgatgcttccgggactggtaatggctgcacctgcggtggccgataaagccgacaatgcgtttatgatgatttgtactgcgctggtgctgtttatgactattccggggattgccctgttttacggtgggttgattcgcggcaaaaacgtgctgtcgatgctgacgcaggtgacggtgacatttgcactggtctgtattctctgggtggtttacggttactcgctggcgtttggtgagggcaacaacttcttcggcaacattaactggttgatgctgaaaaacatcgaactgacggcggtgatgggcagcatttatcagtatatccacgtggcgtttcagggatcgtttgcctgcattaccgtcggcttgatagttggggcgctggcggaacgaatccgcttctcagctgtgttgattttcgtggtggtatggctgacgctctcttacattccgattgcgcatatggtgtggggcggtggtttgctggcttctcacggtgcgctggatttcgcgggtggcaccgtggtgcacattaacgccgcaatcgccggtctggtgggcgcgtatctgataggaaaacgcgtgggcttcggtaaagaggcgtttaaaccgcacaacctgccgatggtcttcaccgggactgccattctctatatcggttggtttggctttaacgccgggtcagcgggcacggcgaatgaaatcgcggcactggcatttgtgaatactgtggtcgcaacggcggcggcaattcttggctggatcttcggtgaatgggcgctgcgtggtaagccttcactgctgggggcgtgttctggcgcgattgccggtctggtcggcgtgacgccagcctgcggctacattggggttggcggcgcgttgattatcggcgtggtagctggtctggcgggcttgtggggcgttaccatgctcaaacgcttgctgcgggtggatgatccctgcgatgtcttcggtgtgcacggcgtttgtggcattgtcggctgtatcatgaccgggatttttgccgccagctcgctgggcggcgtgggcttcgctgaaggtgtgacgatgggccatcagttgctggtacagctggaaagcatcgccattacgatcgtctggtccggtgttgtggcatttatcggctacaaattggcggatctgacggttggtctgcgtgtaccggaagagcaggagcgagaagggctggatgtcaacagccacggcgagaatgcctataacgcgtaacaagcactgcaaaaaacagccggacggttttcacctccggctatttttttaattgtgattacgcatcaccccttcctgaacggtcgaggcaaccagtacgccgtcttgggtataaaactcaccgcgcacaaagccacgtgcgctggacgccgaggtgctctccacgctatacagcagccattcattcaaattaaacgggcgatggaaccacatggaatggtcaatggtggcaatctgaatccccggttcgagaaaaccgatgccgtgcggctgtagagctaccggcaggaagttaagatcagaagcgtaaccgagcagatactgatgaacgcgcaggtcatccggcacgctaccatttgcgcggatccacacctgacgatgtggttctgcgacgtgacctttcagtgggttatgaaactccaccggacggacttccagcggacgatcgcagatgaatttatctttcagcactggcggcagcaggtgcgccagcgattgggcgatttgcgtttccgaagggaggccatcaggcgctggcgcggacggcattgttttttgatgttcgaaacccgcttctggtgcctggaaagaggcagtcatataaaaaatcggtttgccgttttgaatagcagcaacccggcgggcgctgaagctgttaccgtcacgcagcgtttcgacatcataaataatcggcttcttactatcgccagggcgaagaaagtagctgtgaaacgaatgtaccagccgctcttcagggacggtctcttttgcagcatacaaggcctgacccacgacctggccgccaaacacctggcgtaaacctaaatcttcactctggccgcgaaagagtccttcctcaattttttccagatttaacaatgtcagtaaattttttagcgcctgactcatataactctccagtaacaaagctgccgcagcaagccaaagtgagttgagtataacgcaaatttgctactggtccgatgggtgcaatggtctgaattacgggctaattacaggcagaaatgcgtgatgtgtgccacacttgttgacgttactattttgttaaccactcttccggcgaggaaagttagcccgctggtgcattgataataaggagaaatgaatgaaactcgtgcacatggccagtggtttagcggttgcgattgcgttggcggcttgcgcagataaaagcgcggatattcagacgccagcaccggctgcaaatacgtctatttcagcaacacaacaaccagctatccagcaaccgaatgtctccggtaccgtctggatccgtcagaaagtcgcactgccgcctgatgctgtgctgaccgtgacactttctgacgcgtcgttagccgatgcaccgtcaaaagtgctggcgcagaaagcggtgcgtactgaaggtaaacagtcaccattcagctttgttctgtcatttaacccggcagatgttcagccgaacgcgcgtattctgttgagtgcggcgattaccgtgaatgacaaactggtatttatcaccgataccgttcagccggtgatcaaccagggcggaactaaagccgacctgacattggtgccggtacagcaaaccgccgtgccggttcaggccagcggtggcgcaacgactaccgtaccttcgacttcaccaactcaggtgaatccgtcttcggcagttccagctcctacgcaatattaagcgacgttaaccctctccgcccggagagggttagtagttccagcgataacgctgcaagtcgatttgcccgcttcccgataccatcacaccttctgccagtaatgcctgtcgctgacgctgtaaatccggtccggttagcgaaattgtgccgtggcgattaaccacccggtgccagggtaaggtgctgccttcagggagacgctttaacacaccgcccacctggcgcgcggcgcggggcgatcccgccagtttcgccacatcaccgtaagtggtgacatagccttcgggaatagcggcgacgatttgccagacgcgttggggaaatgaatcttctttttccatcttttcttcctgaggtaatttttcagcataatctggaaaaacgcccgagtgaagtcgcattgcgcaagaaaccagcatctggcacgcgatgggttgcaattagccggggcagcagtgataatgcgcctgcgcgttggttctcaacgctctcaatgggggctctgttggttctcccgcaacgctactctgtttaccaggtcaggtccggaaggaagcagccaaggcagatgacgcgtgtgccgggatgtagctggcagggcccccacccatttctgcctcccaccgtttcgtcaaaaaatcccaacatggctaaactttaaccacaactgacgtcgcaagaattgtctggctgcgcagtacgcttcggaggtatgtctgatgaagtatgttgatggttttgtggttgccgttcctgccgataaaaaggatgcctatcgggaaatggccgctaaggctgcgccattgtttaaagagtttggcgcgcttcgtattgtcgaatgctgggccagcgatgtaccggatggcaaagtgaccgattttcgtatggcggtgaaagcggaagagaatgaagaggttgtctttagctggattgaatacccttcaaaagaggtccgcgacgctgctaatcaaaagatgatgtcggacccacggatgaaagagttcggcgagtccatgccgtttgacggcaagcgaatgatctatggcggattcgagtcaatcatcgacgaataggtagcgtgacgggctgtgcggcgtgccgtcagcccaaaaattcacaaatgttgctcggcccagcgtaagaaatcttctttcggtaatgccttgctgtagagccagccctgaccgtagtgcacgccatgctggcgtaaccactcttcttgtttactggtttcgattccctccgctaccattttcagtttcagtgtttttgccatttcgatgatatgcggcgtgacatttttatattccagcgcatcaacgaaagatttatcgatcttcagaatgtcgacatccagatcctgtaaataacttaaacttgaataccccgtaccaaaatcatcaagataaatttcatggcccgcctcccggtagcgagaaattatcggggcgctggttttcggatcggcaaactcgcgttcagtgagttcaagcgcgatctgtctgggattaacctgatagtgattgatcatgtcacgcagcaattgcgggattttttccgaggtgagcacgggggattcaagattgatcgaaatatgctgctgtggatgctgacgcagccagtcgcccatatcttcaaagacgcttcttataatcagtagcgtcaatggctcagaaaggcccgtttgctgtgccagcggaataaaactatctggtgacaaccaactaccgtctgtctgcggccagcgcgccagtgcctcagcaccgacaattttgccattggctaaggagacaatcggctgatagtgcacgcaaatatcacgattttcgatagcatcctgcagccgatgatgcggtgactgaatacggcgcaaaatacgcagcacaaacatcgctgccagcaggccaatcaccaacccgagcggtaaccaaataaagacttgccgatgccagcctttctgcaacattttcgttgaagcccatgtgatgatcgaaatattcatctccggtaagggcaggatatcgtaaatgattccattattttcgatatgctcaccgggtgttttttgtagcctggtaataattccctgagcaatttcatcgctgctggttatgacaacgttatgggcattgccaataatggcggcatcaatttgccatgagctatagggaatgacatcaataaaggaagcggggtcgatcatgacgacataatgtgccgttcccatggcgaccatgtaacggataatgcctaaatcgttatgcgatgttaaccagacacgataaccatctttcgaaattttacctggctcggggaaggtatcgggcggactttcatgctccagagacgaacactggggaacgttgttatcgatataagccacttcctgaatatagcgataactgtaagatacccgacgcatttccatgagatgggcttcgctacaggcagcgccttgccatctttccagctcctgcagcgcatctttcccttgtgtcgccaccttattggctcgaatagcgacgcgggaggaataggtatccagctcttcaataaacgatgtttctacctgctgatgggccagccagatgcttaagccgacaggcagcaatactgaaagaatcagtactcccgaaataaggccgaccagatgtcgtgttctcaccagcatatccttattaacacagtgtagggaaagtatatctgattgtggaaaaaggctggctggagataaggaggtagagctggtatttcatgaagtgatgggtggaaacgatcattgtcatttgaccaggcgcagagctttacgcctggtatgtaaccctaacttaagatgttgattcggcgcgagcgagggtaaaaatatcgtaaaaagacagttcacctttacggacgatcattttttgcagttgttccttatgaacatccgcgacacgcggagagttcaagatggcttcaaccagcgcggcaggtacaaagcgcgtgttgtaccattcgccgttatagcaaacgcggaaatccagcacgtcgatatcttcatagcggtagcgtgggtagacatcgaaaaagaagaaaccattaagcaggataaataatacaaccagtagccagacagagcctgacagcgtttcggactgcaacatcaccgccagggtggcaaaaaaagcaacgtacataccgataaacagccccggatgtttacggataaaactgatactaaagcggggtttgttgtcgcgtttttcgcgggtattcagagactcaatcgtttcggtcagcaggcgttgtatttcggtcatcgtttgccttcgtggtatctgcaactttccagggaacaccctattttaacgtgggaatagtagaggggaagtaacagatctaccacaattttgcataacagttgcgaaaaaccgattacaattttttaattattctggctggattaccgcccacgacaacgttgtccgggacatcttttgtgacaactgcacctgaggctaccacgacgttatcaccaatggtcacaccagggttaatgaccgcgcgtccgccaatccagacgttattaccgatggtgacgggtttccccagttcagcaccgctattacgtgctacagggtcgatgggatgtgttgccgtgtagatatgaacgcctggtgccaacatacagttatcaccgatgcgaatagggcagacatcaagcatcacgcaatcgaagttggcgaaaaaattattaccgagaaaaatgttatagccatagtcacagcgaaacgttggctcaatataagcctctgtcacctgaccgaatagatcagcgagaatttgctggcgtaatgtgtgctcttccgccagggaatgattgtatcggtgaataagctgacgagcgcgcaggcgatcgcgagataacgtctcatctgccgagcgatacaactcaccagcaatcatcttttctttttctgtgctcattactgacctccggttgctgaaaatgcggcaacacagtaagacgaaaagtcagtgaagagaacgttcccattacatctgtgtgataaagatcacatagggtatgtcttcatggcgaaaaagtataaaattcttaataaacagccggttatagctccgaaagcgaattatttattagcgaataaatttccatactgaggaagggatcttgtcgtacagtttattcatggtcaattcggcgaggcggtgatctgcggctgagtaaaataccgccagttcattatctgataattcgtatttatttttctcgataacacgctccagcgtgtcaattgtctggcaacgacgtaaacgcattaaataatcggttttcgttaaaggtttttcggacatacttctacctatggttgtaataattctaacaagataaactcgcaggattctctttcgtcgcattgacaaaacaacggaatagtcgattacctgacttccgccatttctgaagatcctgcatattaataccataactactgaacaacataaaggtgtcatccagatattcgtcgatctgctcaatgagcttattgtcttcattatacttaattttgtaattaagtgcgaaggtcgcaatatgctcaatcagttcattcaactggaggttgatcgccgaggttgggtcgtttacccagccatgattgctttcttcaaggtttgcaaggcagtcatgatacagggtttcacagagaaacttaagctgtgcgatatcatgtcttttgggtgagtattcatccataacgcgtccccttcttagcggttgaactaacggacacctttcgggatggaaaaaacttactgacctggacttgccctctcgtttgttagcttaactataagccactctttgcaggttttcatcgcattattacgaaaaattacaattaggaaggaagcgggacaggactcactttttcatactagcactaacccgcagcaggtaaaagcagtttgctcgaactattcataacatttcaggattatcgccagatgaaattggtgacactaataccaggattgctctgaatatgacgtaataaccgaggaatgaataaagaattaccgcaaataattaagaatagcctctaaatgattatggattattaaatctattagcgctacttaatataaattaactaacaatcagtattttttatgaattttatccgtggttaatactggttttcgtatgagatcctgagttggtggttcaattactccttaatgttcgtaggttatgcataaaaaaggccgcttacgcggccttagtgattacacgttgtatcaatgatgatcgacagtatggctgtgctcgatatcttcattcttgcggctaaagcggcggcgaaccaccacaaagaataccggaacgaagaagattgccagtaccgttgcggtcaccatcccgcccattacaccggtacctactgcgttctgcgcgccggaaccagcaccagtactgataaccagcggcataacgccgaggataaacgccagcgaggtcatcaggatcggacgtaaacgcatccgcaccgcatcaagcgtcgcttcaatcagacctttaccttctttatccatcaagtctttggcgaattcgacgataaggatcgcgttcttcgccgacaacccaatggttgtgagcaggcctacctggaagtaaacgtcattggtcaggccacggaaggtggcagccagcaacgcaccgataacccccagcggaacgaccagcataacggagaacggaatcgaccagctctcgtacagcgccgccagacacaggaacacgacaatcaacgaaatcgcgtacagtgaaggtgcctggttgccggagagacgttcctgataggacatccccgtccagtcatagccaacaccggtaggcagtttgctcgccagttgttccatcagctccattgcttcaccggtacttttacccggtgccgcctggcctaagatttccatggatggcaggccgttgtaacgttccagacgcggcgaaccgtactcccaacgagaagaggagaacgccgagaatggcaccatctgaccatcagcagcacgaacataccagtcgccgatatcatccggcagcatacggtatttcgcttctgacatgacataaactttcttcacacgaccgcggtcgataaagtcgttcacatagctgccgccccatgcagcgcccagagtggtgttaatgtcgttgatagaaacacccagcgcctgcgctttttcctggtcgatatcaatcttaaactgcggggtatcttccagaccgtttggacgtacgctggtcaacatatcagggtgcttcgctgcttctgcaagcaactggttacgcgcctgagtcagtttttcgtgaccaaggccagcctggtcaatcagctcaaagtcaaagccggttgcagtacccagttccacgattgcgggcaggttaaaggcgaaaaccatcgcatctttgatttgcgagaaagcgcgtgttgcacgcatggtaatcgcttcaactttgttttcttcgcccggacgatcggcccagtccttcaaggaaacgaacgcaataccggtattctgaccacgtcccgcaaagccgaagccgttaacggcgaacaccgactcaacgttgttcttttctttggtcagatagtaatgcgttacctcattgagcactttctgtgtacgttcctgcgttgcacctgctggcagctgaaccatggtcataaacacgccctggtcctcatctggcaagaaggagcttggcagacgcacgaacagataggccatgccgaccacgatgatcagatacagcaccaggtaacgccccgtactgcgcagaataccgcctacgctgtcggtgtagtggtgcgtgctcttctcgaacatgcggttaaaccagccgaagaagccttttttaccttccccgtgatcgcctttggcaatcggtttcagcatggtggcacaaagagctggagtcaggatcaacgccaccagtaccgacagcgccattgctgaaacaatggtaatagagaactgacgatagatagcaccagtagaaccgccaaagaaggccatcggtacgaataccgccgacagtaccatcgcgataccgaccagagcgccctgaatctgccccatcgacttacgggtagcttcttttggcggcaaaccttcttccgccataacacgctcaacgttttctaccacaacgatggcgtcatccaccaacaggccgatggcgagcaccatcccgaacattgttagcgtgtttatcgagaagccaaaggcggcaaggacggcaaaggtcccgagcaataccaccggtacggcaatggtcggaatcaacgtcgcgcggaagttctgcaggaacagatacataaccaggaacacgaggatgatcgcttcgaccagcgttttaaccacttcgtgaatagagattttcacgaacggcgtggtgtcgtatgggtaaacaattttcagacccgacgggaagaacggttccatcttcgccagttcagcacggattgccgcagcggtatccagcgcgtttgcaccggtcgccagcttgatccccagaccggaagccggttggccgttaaactctgcgatgatgtcgtagttctcaccacccagctcaatcttcgcgacgtcacgcagcagcacgcgggaaccatcctgattcactttcagcaggattttgccgaactcttcagtagaggtcagacgcgtctgagcaataatagaggcgttaagctgttggcctttcaccggcggcgtaccaccgagctgacccgccgcaacctgggcgttctgcgctttgatggcggtaatgacatcaaccggcgttagctggaatttgttcagctcattcgggttcatccagatacgcatcgcgtactgtgaaccgaacaactgaacatcacccacgcccgacgtacggctgatggcatctttcatattcgccgccacgtagtcggagatatcctcctgcgtcatggtgccatcggtgttgataacgccgacaaccatcaggaagctgctggatgatttctcaacgctcaccccttgctgctgaacttcttgcggcagcaacggcatcgccagctgcagtttgttctgcacctgaacctgcgcgatatccgcatcagtaccagactcaaaggtcagggtgatctgcacggtacccgtggagtcactgttagaggacatgtacatcaggttatcgataccgttcatattctgttcgataacctgtgtcaccgtgtcctgcactgttttcgcatcagcgccggggtaggaggcggagatcgttactgccggcggtgcaatcgtaggatattgcgccaccggcagtttgaggatcgccagcccccctgccaacatgatgataatggcgatcacccacgcaaaaatcgggcgatcgataaagaaattaggcatgtcttaacggctcctgtttaagttaagacttggactgttcaggctgagcaccgcttgcggcttgctggttattatcagcggtaacttcttgtgcttttacctggacaccaggacgcactttctgcagcccacttattactacgcgatcgcctgctttcagaccttctgtcaccagccacttatcgccaatagcctggcttgcaacgatcggacgggtttccactttgtcatccgcgccaactaccagtacggtggcatcgccacgcggcgtacgggttacgccctgttgcgggactaaaatagcgtttggattaagcccttcttccagacgtgcgcgcacgaacatacccggcagcagagtgtgatccgggttcgggaagatagcgcgtagggtgatagacccagtggtctgatcaacggtaacgtcagagaattccagcgtaccgtcctgcgggaacttaatgccgtcactggtgatcagtgacactttggctttgccgttctcttgtttcagcgtgccattcgccagttcctgtttcaggcgcaggaagtcgttgctggactgggtcacatcaacgtagatcggatcaagttgctgcacggttgccagcgcagtcgcctgaccgttctgtaccaatgcgccttccgtcacgttcgacttaccaatgcgaccgctaatcggagaggtgactttggtgtaagccagattgatccgcgcagtttcaacggcagctttcgccgcagttaccgcagcattcgcctgttgcgcatcagccagagcctgatcgtactcttgcttactgatgtactgagtaccgagcagtttctgataacgattcaccgtcaattgcgcgatattggctgcagcctgggctttcgccagatcacctttcgcactgtcgtatgtcgcctgataggtcgcaggatcaatctgatagagagagacacctgcttcgatgtcgctaccttctttgaaattacgcttcaggataatcccgctaacttgaggacgaacttctgcgatccggtaggcactggtgcgacccggaagctcggttgtgatctgcagaggttcagttttgactgttactacgccaacggcgggcatctgctggccaccttgttgggcctgtttgtcgtcacatcctgttagggctaagctgcctgagagcatcagaacgaccgccagaggcgtaaaccctctgtttttgttcatatgtaaacctcgagtgtccgatttcaaattggtcaatggtcaaaagttaataaacccattgctgcgtttatattatcgtcgtgctatggtacatacattcacaaatgtatgtaaatctaacgcctgtaaattcacgaacatatggcacgaaaaaccaaacaagaagcgcaagaaacgcgccaacacatcctcgatgtggctctacgtcttttctcacagcagggggtatcatccacctcgctgggcgagattgcaaaagcagctggcgttacgcgcggtgcaatctactggcattttaaagacaagtcggatttgttcagtgagatctgggaactgtcagaatccaatattggtgaactagagcttgagtatcaggcaaaattccctggcgatccactctcagtattaagagagatattaattcatgttcttgaatccacggtgacagaagaacggcgtcgattattgatggagattatattccacaaatgcgaatttgtcggagaaatggctgttgtgcaacaggcacaacgtaatctctgtctggaaagttatgaccgtatagaacaaacgttaaaacattgtattgaagcgaaaatgttgcctgcggatttaatgacgcgtcgcgcagcaattattatgcgcggctatatttccggcctgatggaaaactggctctttgccccgcaatcttttgatcttaaaaaagaagcccgcgattacgttgccatcttactggagatgtatctcctgtgccccacgcttcgtaatcctgccactaacgaataaccctgaatctgactccaggatttttcctggacattttcgtcgttgctattctggttcactgcgtcgtgatattcttgcggtttgactttttcaggtcgttcttcaggttcagaaaccttcattcatcatgactatgttccagtattacaaacgatcacggcattttgttttttcagcatttattgcttttgtttttgtcttgttatgccagaacacggcgtttgcgcgggcgtcatcgaatggtgatctgccgacaaaagcggacctgcaggcgcaacttgactcactaaataaacaaaaagatctttctgctcaggacaaactggtgcagcaggatctgacagatacattagccaccctcgataaaatcgatcgcataaaagaagagacagttcagctacggcaaaaagtcgctgaagcgccggaaaaaatgcgccaggcgaccgcggcgttaacagcacttagcgatgtcgataacgacgaagaaacgcgcaaaattctgagcacgctgtcgttgcgccagctggaaactcgcgttgcccaggcgctggacgatttgcaaaacgcacaaaacgatctggcgtcttataacagccagctggtttcgttacagacgcagcccgaacgcgtgcaaaatgcgatgtataacgcttcgcagcagctgcaacaaattcgcagtcgtctggatgggactgatgtcggcgagacagccttacgtcccagccagaaagtgttaatgcaggcccagcaggcgttgctgaatgcggagattgaccagcagcgtaaaagcctggaagggaacaccgtcttgcaggataccttgcaaaagcaacgtgattacgtgacggcgaacagcgctcgtctggagcaccagttacaactgttgcaagaagcggtaaacagcaagcgcctgactttaaccgaaaaaacggcgcaggaagccgtctccccggatgaagccgcgcgtattcaggctaatccgctggtgaagcaggaactggaaattaaccagcagttaagtcagcgtctgattaccgcgactgaaaacggtaatcagttgatgcagcaaaacattaaagtcaaaaactggctggagcgggcgctgcaatcggaacgcaatattaaagagcagattgccgtcctgaagggcagcctgctgttgtctcgtatcctttaccagcaacaacaaacgctgccctcggcggatgaactggaaaacatgaccaaccgcatcgcggatttgcgtctcgaacagtttgaagttaaccagcagcgtgatgcactcttccagagcgatgcgttcgtcaacaaactggaagaaggtcacaccaacgaagtcaacagcgaagttcacgatgcgttattgcaagtggttgatatgcgtcgcgaattgctggatcaactcaacaaacagttgggtaaccagctgatgatggccattaacctgcaaatcaaccagcagcagttaatgagtgtgtcgaaaaacctgaaatccatcctgactcagcaaatcttttgggtgaacagtaaccgtccaatggactgggactggatcaaagcgttcccgcaaagcctgaaagatgaatttaagtcgatgaaaatcacggtgaactggcaaaaagcctggcccgccgtttttatcgctttcctcgctggtttgccgctgctgttgattgccgggctgatccactggcgtctgggctggctgaaagcgtatcaacaaaaactggcttccgctgtgggttccctgcgtaacgacagccagctcaacacaccaaaagcgatccttatcgacctgatccgtgcgctgccggtgtgcctgattattctcgcggttggcctgattctgttgaccatgcagctcaacatcagcgaactgctatggtcgttcagcaaaaaactggcgatattctggctggtgtttggcctgtgctggaaggtactggagaaaaacggcgttgccgtacgtcacttcggcatgccggaacagcagaccagccactggcgtcggcaaattgtccgcatcagtctcgcattgctgcctatccatttctggtctgtggtggcagaactttccccgctgcatctgatggatgatgtgctggggcaagcgatgattttcttcaacctgctgctgattgccttcctggtatggccgatgtgccgcgaaagctggcgtgataaagagtcgcacaccatgcgactggtcaccattaccgtgctgtcgataatcccgattgcgctgatggtgctgactgctacaggctacttctacactacgctgcgtctggcaggacgctggattgaaaccgtttatctggtgatcatctggaacctgctgtaccagacggtactgcgtggcttaagcgtagcggcgcggcgtatcgcctggcgtcgtgcgctggcgcgtcggcagaatctggtgaaagagggcgcagaaggtgctgaaccgccggaagaacccaccattgcactggagcaagttaaccagcagacgctgcgtattaccatgttgctgatgtttgcgctgttcggtgtcatgttctgggcaatttggtccgatttgatcaccgtgttcagctatctcgacagcatcacgctctggcattacaacggcactgaagctggcgctgcggtggtgaaaaacgtcaccatgggcagtctgttgtttgcgattatcgcctcaatggtggcctgggcgttgattcgcaacctgcctggtttactggaagtgctggtgctctcgcgactgaatatgcgccagggcgcgtcgtatgccattactaccatccttaactacatcattattgctgttggtgcgatgacggtgttcggatcgctgggcgtctcttgggataaactccagtggctggccgcagcattatccgtaggtcttggttttggtttacaagaaattttcggtaacttcgtctccggtttgatcattctattcgaacgtccggtgcgtattggcgatacggtaaccattggtagcttctcggggacggtaagtaagatccgtattcgtgcgacaacgattaccgatttcgatcgcaaagaagtgatcatcccgaacaaagcgtttgttaccgagcgtctgatcaactggtcgttgactgacactactacgcgtctggtgatccgtctcggcgtggcctatggctccgatctggaaaaagtgcgtaaagtgttactgaaggcggcgactgagcacccaagggtgatgcacgaaccaatgccggaagtcttctttacggcatttggtgccagcacgttggatcatgagctgcgtctgtatgtgcgtgaactgcgtgaccgtagtcgtactgtcgatgagctgaaccgtactatcgatcagctgtgccgtgaaaacgacatcaacattgcctttaaccagcttgaagtgcatctgcacaacgagaagggcgatgaggtgacggaagtaaaacgcgactacaaaggcgatgacccgacgccagcggtagggtaaaaacgaaagggggcaacatttagttgccccgagattgctaacaaagtgcgcgttgttcatgccggatgcggcgtgaccgccttatccggcctacgaaaccgcaagaattcaatatattgcaggagcggtgtaggcctgataagcgtagcgcatcaggcagttttgcgtttgcccgcaaccttaggggacatttagcgaccccatttatttctcacttttccgcctcatcatcgcgcgttaatttcttttcataatcacgctttacaatatccagcgcgcgcagcacggtactggcagggatctgattttcctccagcagcacaatcaaatcgacagccagtttgacatcgtcaggggcattttccagtgacatattctctccattgctagcgggttaaacgcgctaacctgttttcgattttttccagcgcatggcggcagcgtgccaggcgcgcttcataggcttccacttcacgatgcagcgtttgctgttccacgagatcggtcacccgcgccagacgggctctgcgttcggcaaccatctcacgtagccgccgctcaaaatcctgatgctgaatacgtttacgctgccagcgggcaattttcggtggtgcactgtcccactcgcgcaatgaccaggcggaggcttcacgcgcgatggcttccagttgtgccgccagatgttccgccagccaggccacttgcggcagctgttgctgctcaactgcatgacgaagcgcagccagattatcgcccgcctcgtcgagacaagcctgtagtgttgtcgcacgagtctgaaaaagatgcctgtcgaaacgagcacttagcgtggcgaactgtgacaccggggcacaacgctgacgcagcgtagcgagctgtccttccagtttttccagcagcagggcggttttcacgataagacctcaatgaaaatgataattgttatgctaaagtagccactctgtaagctgacaacactcaatatgcaacgaatcattttaatcatcattggctggctggcggtagtgctgggtacgctgggcgtggtattaccggtattaccgacgacgccgtttatcctgctggcggcctggtgctttgcccgttcttccccgcgctttcacgcctggttgctgtaccgctcatggtttggcagctatctacgtttctggcagaaacatcatgcgatgccgcgcggcgtcaaaccgcgggcgattttgcttattttgctcacgtttgccatttctctgtggttcgtccagatgccatgggtgcgcatcatgttgctggtaattctcgcctgtttgcttttctatatgtggcgaattccggtgattgatgaaaagcaagaaaagcactgaagcacaacaatcgcagttgcaattattgcgtacagccagtacattctggcgttttcgagcacaggcgcaggcggtcaaaggttaaacaactgttacttttgatacgtttaaaacgcgccgtgagtaccaccgtaacaagcaggcatacacttatgaccgcgactgcacagcagcttgagtatctcaaaaatagcatcaaaagcattcaggactacccaaaacccggcattcttttccgcgatgtcaccagcttactggaagacccgaaagcttacgctctcagcatcgacttgctggttgagcgttacaaaaatgcgggcattaccaaagttgtcggcaccgaagcgcgtggcttcttgtttggcgctccggtagctctgggtctgggcgttggctttgtaccggtccgtaaaccgggcaaactgccgcgtgaaaccatcagtgaaacttacgacctggaatacggcaccgatcagctggagatccacgttgatgccatcaaaccgggcgacaaagttctggtggtggacgacctgctggcaaccggcggcactatcgaagcgaccgttaaactgatccgtcgtctgggtggtgaagtggctgacgctgcgttcattatcaacctgttcgatctcggcggcgaacagcgtctcgaaaaacagggcattaccagctacagccttgtcccgttcccgggccattaattatcgccagtcttgtgctgcccacgctacggacagcacaagatgtgcattcagcctcgccgttctgacggggctgtgttagcattaccccttcgtgaatccaccttccagcgtttcagagcctgccaatgagttatcaggtcttagcccgaaaatggcgcccacaaacctttgctgacgtcgtcggccaggaacatgtgctgaccgcactggcgaacggcttgtcgttagggcgtattcatcatgcttatcttttttccggcacccgtggcgtcggaaaaacctctatcgcccgactgctggcgaaggggctaaactgcgaaaccggcattaccgcgacgccgtgcggcgtgtgcgataactgtcgtgaaatcgagcaggggcgctttgtcgatctgattgaaatcgacgccgcctcgcgcaccaaagttgaagatacccgcgacctgctggataacgtccagtacgctccggcgcgtggtcgtttcaaagtttatctgatcgacgaagtgcatatgctgtcgcgccacagctttaacgcactgttaaaaacccttgaagagccgccggagcacgttaagtttctgctggcgacgaccgatccacagaaattgccggtgacgattttgtcacgctgtctgcaatttcatctcaaggcgctggatgtcgagcaaattcgccatcagcttgagcacatcctcaacgaagaacatatcgctcacgagccgcgggcgctgcaattgctggcacgcgccgctgaaggcagcctgcgagatgccttaagtctgaccgaccaggcgattgccagcggtgacggccaggtttcaacccaggcggtcagtgcgatgctgggtacgcttgacgacgatcaggcgctgtcgctggttgaagcgatggtcgaggccaacggcgagcgcgtaatggcgctgattaatgaagccgctgcccgtggtatcgagtgggaagcgttgctggtggaaatgctcggcctgttgcatcgtattgcgatggtacaactttcgcctgctgcacttggcaacgacatggccgccatcgagctgcggatgcgtgaactggcgcgcaccataccgccgacggatattcagctttactatcagacgctgttgattggtcgcaaagaattaccgtatgcgccggaccgtcgcatgggcgttgagatgacgctgctgcgcgcgctggcattccatccgcgtatgccgctgcctgagccagaagtgccacgacagtcctttgcacccgtcgcgccaacggcagtaatgacgccaacccaggtgccgccgcaaccgcaatcagcgccgcagcaggcaccgactgtaccgctcccggaaaccaccagccaggtgctggcggcgcgccagcagttgcagcgcgtgcagggagcaaccaaagcaaaaaagagtgaaccggcagccgctacccgcgcgcggccggtgaataacgctgcgctggaaagactggcttcggtcaccgatcgcgttcaggcgcgtccggtgccatcggcgctggaaaaagcgccagccaaaaaagaagcgtatcgctggaaggcgaccactccggtgatgcagcaaaaagaagtggtcgccacgccgaaggcgctgaaaaaagcgctggaacatgaaaaaacgccggaactggcggcgaagctagcggcagaagccattgagcgcgacccgtgggcggcacaggtgagccaactttcgctaccaaaactggtcgaacaggtggcgttaaatgcctggaaagaggagagcgacaacgcagtatgtctgcatttgcgctcctctcagcggcatttgaacaaccgcggtgcacagcaaaaactggctgaagcgttgagcatgttaaaaggttcaacggttgaactgactatcgttgaagatgataatcccgcggtgcgtacgccgctggagtggcgtcaggcgatatacgaagaaaaacttgcgcaggcgcgcgagtccattattgcggataataatattcagaccctgcgtcggttcttcgatgcggagctggatgaagaaagtatccgccccatttgatcgtaagcacagcttacgttcgtcatccttaacgtgattgagagagaaacctatgtttggtaaaggcggtctgggtaacctgatgaagcaagcccagcagatgcaagaaaaaatgcagaaaatgcaggaagagatcgcgcagctggaagtcaccggcgaatctggcgcaggtctggtaaaagtgaccatcaacggtgcacacaactgccgtcgcgtagagatcgacccgagcctgctggaagacgacaaagagatgctggaagacctggtggctgcagcattcaacgacgcagcacgtcgtattgaagaaacgcagaaagaaaaaatggcctctgtatcctccggaatgcagctgccgcctggctttaagatgccgttctgatgcaaaccagcccgctgttaacacagcttatggaagcactgcgctgtctgccgggcgttggcccgaagtcggcgcagcgtatggcgttcacgctgcttcagcgcgatcgtagcggcgggatgcgtctggcgcaggcgctcacccgggcgatgtcggaaatcggccactgcgccgattgccgcactttcaccgaacaggaagtctgtaacatctgttcgaatccgcgtcgtcaggaaaacggtcaaatctgcgtggtggagagtccggcggacatctacgccattgagcagacggggcagttttcaggtcgttattttgtgttgatggggcatctgtcaccgctggacggcatcggtccggatgatatcgggcttgatcgtctggaacagcgtctggcagaggaaaaaatcactgaagtgatcctcgccaccaaccccacggttgaaggtgaagctaccgctaactacattgccgagctttgcgcgcaatatgacgtggaagccagccgaatcgctcatggcgttccggttggcggcgagctggaaatggtcgacggcaccacgttgtcacactcccttgccgggcgtcataagattcgtttttaagcaaacgagagcaggatcacctgctctcgcttgaaattattctcccttgtccccatctctcccacatcctgtttttaaccttaaaatggcattattgaggtagacctacatgaaaggacaagaaactcgtggttttcagtcagaagtgaaacagcttctgcacctgatgatccattctctctattccaataaagaaatcttcctgcgtgagcttatctctaacgcctccgatgcggcggacaagctgcgtttccgtgcgctctctaacccggacctgtacgaaggtgatggcgaactacgcgttcgtgtctctttcgataaagacaagcgtacgctgaccatctccgataacggcgtggggatgacccgcgacgaagtgattgaccatctggggactatcgctaaatccggtaccaaatcattcctcgaatccctgggttctgaccaggcgaaagacagccagctgatcggtcagtttggtgttggtttctactctgcgtttatcgtggccgacaaagtgaccgtgcgtactcgcgcggcaggcgaaaaaccagaaaatggcgtcttctgggaatcggctggcgaaggtgaatacaccgttgccgacatcaccaaagaagatcgtggtactgaaatcaccctgcatctgcgtgaaggcgaagacgagttcctcgatgactggcgcgtgcgttccatcatcagcaaatactccgaccatatcgcgctgccggtagagatcgaaaaacgcgaagagaaagacggcgaaaccgttatctcctgggagaaaatcaacaaagcgcaggcgctgtggactcgtaacaagtcggaaatcaccgatgaagagtacaaagagttctacaaacacatcgcccacgactttaatgatccgctgacctggagccacaaccgtgttgaaggtaagcaggagtacaccagcctgctgtacatcccgtcccaggctccgtgggatatgtggaaccgcgatcataaacacggcctgaaactgtatgttcagcgtgtgttcatcatggacgacgcagaacagttcatgccgaactatctgcgcttcgtgcgtggtctgattgactccagcgatctgccgctgaacgtttcccgtgaaatcctccaggacagcacggtaacgcgtaacctgcgcaatgcgctgaccaagcgtgtgctgcaaatgctggaaaaactggcgaaagacgacgcggaaaaataccagaccttctggcaacagtttggcctggtactgaaagaaggtccggcggaagatttcgctaaccaggaagcgatcgccaaactgctgcgttttgcttctacccataccgattcttctgcgcagaccgtatctctggaagactacgtttcccgcatgaaagaagggcaggagaaaatctactacatcaccgcagacagctatgcggcagcgaagagcagcccgcacctggaactgctgcgtaagaaaggcatcgaagttctgctgctttccgaccgcatcgatgagtggatgatgaactatctgactgagttcgacggtaaaccgttccagtcggtgtctaaagttgacgagtcgcttgaaaaactggctgacgaagttgatgagagcgcgaaagaagcggagaaagcactgactccgttcatcgaccgtgtgaaagccctgctcggcgagcgcgtgaaagatgtccgtctgactcaccgtctgaccgatacgccagcgatcgtttcgaccgacgcggacgaaatgagcactcagatggcgaaactgttcgctgcggcgggccagaaagtgccagaagtgaaatacatcttcgaactgaacccggatcacgtactggtgaaacgtgcggcagatactgaagatgaagcgaagttcagcgagtgggtagaactgctgctggatcaggcgctgctggcagaacgcggcacgctggaagatccgaacctgtttattcgtcgtatgaaccagctgctggtttcctgatgtaatgccggatgaccttcgtgtcatccggcatttttcttttcatcatctgcactttccgcaaattatctcgccattaaccgtttcagccccaggtgcctttcttgaggcaatcgcctgttggtggtatcgtttatcgctttttcaaaaaattcgacacattttaaggggattttcgcaatgcgtatcattctgcttggcgctccgggcgcggggaaagggactcaggctcagttcatcatggagaaatatggtattccgcaaatctccactggcgatatgctgcgtgctgcggtcaaatctggctccgagctgggtaaacaagcaaaagacattatggatgctggcaaactggtcaccgacgaactggtgatcgcgctggttaaagagcgcattgctcaggaagactgccgtaatggtttcctgttggacggcttcccgcgtaccattccgcaggcagacgcgatgaaagaagcgggcatcaatgttgattacgttctggaattcgacgtaccggacgaactgatcgttgaccgtatcgtcggtcgccgcgttcatgcgccgtctggtcgtgtttatcacgttaaattcaatccgccgaaagtagaaggcaaagacgacgttaccggtgaagaactgactacccgtaaagatgatcaggaagagaccgtacgtaaacgtctggttgaataccatcagatgacagcaccgctgatcggctactactccaaagaagcagaagcgggtaataccaaatacgcgaaagttgacggcaccaagccggttgctgaagttcgcgctgatctggaaaaaatcctcggctaattcgaaagcgcgcacggacagtcccctcgccccctcggggagagggttagggtgaggggaacaggcccgcacaagcaaacttatcagcaatctcaggccggatattcattcggccttttacaaaaacctcaatctgcgctattcctttttctgatttgacctctcacagcaattagttcttcttcctcacttttccgctacaattatcaacaagttgaatcgataagaggcggtaatgcgtcagactaaaaccggtatcctgctggcaaacctgggtacgcccgatgcccccacacctgaagcggtaaaacgctatctgaaacaatttttaagcgacagacgcgtggttgatacctcacggttgttatggtggccattgctgcgcggcgtgattttgccgctgcgctcgccgcgtgtggcgaagctgtatgcctctgtctggatggaaggtggctcgccgctgatggtttacagccgccagcaacagcaggcgctggcacaacgtttaccggagatgcccgtagcgctgggaatgagctacggctcgccatcactggaaagcgccgtagatgaactcctggcagagcatgtagatcatattgtggtgctgccgctttatccgcaattctcctgttctacggtcggtgcggtatgggatgaactggcacgcattctggcgcgcaaacgtagcattccggggatatcgtttatacgtgattacgccgataaccacgattacattaatgcactggcgaacagcgtacgcgcttcttttgccaaacatggcgaaccggatctgctactgctctcttatcatggcattccccagcgttatgcagatgaaggcgatgattacccgcaacgttgccgcacaacgactcgtgaactggcttccgcattggggatggcaccggaaaaagtgatgatgacctttcagtcgcgctttggtcgggaaccctggctgatgccttataccgacgaaacgctgaaaatgctcggagaaaaaggcgtaggtcatattcaggtgatgtgcccgggctttgctgcggattgtctggagacgctggaagagattgccgagcaaaaccgtgaggtcttcctcggtgccggcgggaaaaaatatgaatatattccggcgcttaatgccacgccggaacatatcgaaatgatggctaatcttgttgccgcgtatcgctaaagctgagcggtaaagaactgagcgccgtcgcgaagagcctcgtcggcggttttcatcatccgtgaataatgcaaaaaggcgtgcagcgtgcctgggtagagtttgaactcacagggctgctgatgcgccgctaacgtctggtaaagcagacggctgtcatccagcagcggatcgaactccgccccggcaataaaacagggcggaacttcgcgagtgagatcattattaaacagacagtaatacggcgactcgcggtccgcgtcgttgcttaaatatgcctcttcgtacatctgcaaatcctgttgcgttaagccatcccagacaccgcccaacagacgacgagtcacggaatcccgtaatccgtaaagcccataccacagcaaaacgcccgcaactttaccgcaatcgatctgtttatcacgcaaccacaacgcactggcgagcgccagcatggcacctgcggaatcaccggcaaagccaatgcgggacatattgatttgataatcctccgcctgctggtggaaataacaacaagcagccacaatttcctctatcgcttgcggaaaacgcgcttcaggtgaaagggtgtaatcaataccaatcaccgtacattggctgtagcttgccagcaggcgcatgatgcgatcgtgggtatcgagattgccgagaataaaaccgcctccatgcaaataaaatagcgtcgctgggctatctggctgcggacaaaagagacgtgtttccacctgcccatattttgttggaaccatgtaagctctggttgccatttctggagcgcccgcattccagaatcggcgctcaagcgtgtaatactgtcgttgctcagcaatcgttcccgttgcgggccagggcggtaaatccggctgaagagtattcacaacggtcttcatttcagcagaaataaggtccagaacaggtagtttgttttccggcttcatacaaaaactcctttcaaattacgtcattgtaaggaaccactgccatgaaaatgcgatcccgcctgctgatattgaaactggctgcgtctcgcgcgctcccgtcagattgtgttaacattcgccgctcagttaaccacccgtaaaaacaaccatgaaatttcccggtaaacgtaaatccaaacattacttccccgtaaacgcacgcgatccgctgcttcagcaattccagccagaaaacgaaaccagcgctgcctgggtagtgggtatcgatcaaacgctggtcgatattgaagcgaaagtggatgatgaatttattgagcgttatggattaagcgccgggcattcactggtgattgaggatgatgtagccgaagcgctttatcaggaactaaaacagaaaaacctgattacccatcagtttgcgggtggcaccattggtaacaccatgcacaactactcggtgctcgcggacgaccgttcggtgctgctgggcgtcatgtgcagcaatattgaaattggcagttatgcctatcgttacctgtgtaacacttccagccgtaccgatcttaactatctacaaggcgtggatggcccgattggtcgttgctttacgctgattggcgagtccggggaacgtacctttgctatcagtccaggccacatgaaccagctgcgggctgaaagcattccggaagatgtgattgccggagcctcggcactggttctcacctcatatctggtgcgttgcaagccgggtgaacccatgccggaagcaaccatgaaagccattgagtacgcgaagaaatataacgtaccggtggtgctgacgctgggcaccaagtttgtcattgccgagaatccgcagtggtggcagcaattcctcaaagatcacgtctctatccttgcgatgaacgaagatgaagccgaagcgttgaccggagaaagcgatccgttgttggcatctgacaaggcgctggactgggtagatctggtgctgtgcaccgccgggccaatcggcttgtatatggcgggctttaccgaagacgaagcgaaacgtaaaacccagcatccgctgctgccgggcgctatagcggaattcaaccagtatgagtttagccgcgccatgcgccacaaggattgccagaatccgctgcgtgtatattcgcacattgcgccgtacatgggcgggccggaaaaaatcatgaacactaatggagcgggggatggcgcattggcagcgttgctgcatgacattaccgccaacagctaccatcgtagcaacgtaccaaactccagcaaacataaattcacctggttaacttattcatcgttagcgcaggtgtgtaaatatgctaaccgtgtgagctatcaggtactgaaccagcattcacctcgtttaacgcgcggcttgccggagcgtgaagacagcctggaagagtcttactgggatcgttaagttatcgtcggttcgtaggccagataaggcgttcacgccgcatctggcatttggctctcgatgcctgatgcgacgctggcgcgtcttatcatgcctacatatttttcatattttacatccggcaaccaccgtttaccccgtcaccacctcacccgccggtggcgtttccagcagttccagcatggtacgggcgatttcacgctcgcccatcactacctgattcgcaccacgttcggtgatatacgccacttcatcgtcataatgggcgcgggcaataatctcaatatccggatttttcgcgcgggcagatgccacaatctcacccgcttcataaccgttgggaatcgtcaggatcagccattttgcacattccagatgcgccagttgcataatttcttcgttcgccgcattgcccaatactgcgcggaccccgcgctctcgcagctcatcaacacgggttcgtgacgtctcaatcaccaccagcggaatatcagaggcgagcaatttctcccccagcaggctgcctacacgaccgtaacccaccagtagcgcatggttgcaaatatccactgggatctgcttctcttcttcgattgcctcttccagcgtctgctcttccagcgtttcggtcttcgccagatatttctccagtagtgcgaacagtaccgggttgagcataatcgacaggatcgcccctgccagtaccaggttttgtccggcctgcggcagtaaattcaatgccattcccagtcccgccaggataaacgcgaactcaccaatctgcgccaggctggcggcgatggttaatgccgtacgttgggagtgaccaaacagtcgcaccaggaaaaatgcggctaacgacttaccaaacagaataatcgccagcgtcgccagcactgccagcggttgctgaatcagaattaacggatcaaacaacatcccgacggagacaaaaaacagcaccgcaaacgcgtcgcgcaatggcagcgtatcgtgggcggcacggtgactcagttcagactcgttcagtaccatcccggcaaagaacgcaccgagtgcaaaggagacatcaaacagctctaccgcaccaaaggcaacccctaacgccagcgccagcaccgacagggtaaacagctcgcgagaaccggttgccgcgctgcgtgccataatccacggcaccagacggcgacctaccagcatcataatggcgataaatgcgatcactttgccgatggtgatccccatatcgactgcaagagtggcaaagcccacatcgccctgttccatcattcctgccactgcgggcagcaacaccagcgtcagaaccattaccaggtcttccacaatcaaccaaccgatggcgatttgcccacgctgactgtcaattaattgccgttcttcaagtgcgcgcagtaacaccacggtactggcggtggaaagacataaaccgaacacgataccggtcattaacgaccagcccagcacggcagagagcgccatacccagcagcgtcgccacggctatctgggcgatcgcaccgggaatggcgatggcctttaccgccatcaaatccttcagcgaaaagtgcaaaccgacgccaaacatcaacagaatgacgcccagttcagccagttccggggcaagcttggtatcggcaacaaagcccggagtgaatggtcctgccagcacacccgctaacagatatcccaccagaggagaaatacgtagtttattggccagcatgccgaggataaaggcgagcacaaggccgccaacaatggtggtgataagcggggtggcgtgatgcattccgtctccttttcctggtggttattgtccatttttggccgggaaaaccaaaattacaggtaatagtttatgacaatttcattgatgatgttcatgaataattattgaattttgcagaaaaatggaattagctgcaaaaaaagcacggatcggaaaacagaaggcggtttaacagaggaaaggcttatggcgactgtaaaacgatgcagccaaagtttgcctttggctgcaatgaaatcagtctttatgccggttatcaggcaggaatatggtcaacatccccaatagtggcaggaaagcacagattttatagactaactcgatgctggtgtgatcggcgataagccccagaactgccgctcccagacctcccatgccaaaagcaaaaccgaaaaagagtccagaaaccataccgatacgtcctggaagcagctcctgagcgtagaccagaatggcagagaatgccgaagcgaggataaatccaataatcaccgttaaaacccccgtccagtgcaggctggcgtagggtaaaatcagcgtaaacggcgcaacgccgaggatagagccccaaatcacatatttccgcccaattttatcccctacaggcccgccgatcaccgtacctgccgcaacggcaaacaggaaggcaaacagatgaagctgagcattctggatagataatccgaatttttgcatcagataaaaggtgtaatagctgctgatgctcgccatatagaaatatttcgagaaaatgaggattaacagaatgctgaccgccagtacaactttattgcgcggcagtggattgataatcgtcgctttgggttttcctttattcattcggtgctgtgccgagtaccaacggctgatttgcgccaacaccacgatcgccagcagtgccgcaagcacaaaccaggcaacgttgcctttgccataaggcgcgataatcaccgccgccagcaagggtcccagggaactgccaaagttgccgccgacctgaaagatagattgcgccaggccatgccgcccgccggaagccatacgggccacgcgagaagattccggatgaaagaccgatgaaccggtaccgaccagcgccgccgccagcagaactgcgccaaaactgcccgccagcgcaagcagcaccagaccgcttaaggtaaagcacatgccaattggcaacgaccatggcatcggatatttatcggtccagtagccgaccactggttgcagtagcgaagaggcgagctggaaggtgagggttatcatgccaatctgcataaatgtcagagaaaattctgactgaagcagcggataaatcgccagaatcagcgattggatcatgtcgttcagcagatgtgagaggctgatagcacctaaaataccaaacgatgttcgggccttggtcgttgacgcagccgcgcccgccacaggctggggttgttcactcattgccataggaaagtcactttttcagggttgcgatgtaaagaatgatcttatttgtgattattaccagactaacatacctgtatgcgtcgtctgaaggaagtctcaacgccgaatacagaatttctaatctggatgcagatttatcttcaccggacgcagacttgtctatgatgtcgcgtcatactatttttcaacacgttgaaatcaggtcagggagagaagtatgaaattattgcagcggggcgtggcgttagcgctgttaaccacatttacactggcgagtgaaactgctctggcgtatgagcaggataaaacctacaaaattacagttctgcataccaatgatcatcatgggcatttttggcgcaatgaatatggcgaatatggtctggcggcgcaaaaaacgctggtggatggtatccgcaaagaggttgcggctgaaggcggtagcgtgctgctactttccggtggcgacattaacactggcgtgcccgagtctgacttacaggatgccgaacctgattttcgcggtatgaatctggtgggctatgacgcgatggcgatcggtaatcatgaatttgataatccgctcaccgtattacgccagcaggaaaagtgggccaagttcccgttgctttccgcgaatatctaccagaaaagtactggcgagcgcctgtttaaaccgtgggcgctgtttaagcgtcaggatctgaaaattgccgttattgggctgacaaccgatgacacagcaaaaattggtaacccggaatacttcactgatatcgaatttcgtaagcccgccgatgaagcgaagctggtgattcaggagctgcaacagacagaaaagccagacattattatcgcggcgacccatatggggcattacgataatggtgagcacggctctaacgcaccgggcgatgtggagatggcacgcgcgctgcctgccggatcgctggcgatgatcgtcggtggtcactcgcaagatccggtctgcatggcggcagaaaacaaaaaacaggtcgattacgtgccgggtacgccatgcaaaccagatcaacaaaacggcatctggattgtgcaggcgcatgagtggggcaaatacgtgggacgggctgattttgagtttcgtaatggcgaaatgaaaatggttaactaccagctgattccggtgaacctgaagaagaaagtgacctgggaagacgggaaaagcgagcgcgtgctttacactcctgaaatcgctgaaaaccagcaaatgatctcgctgttatcaccgttccagaacaaaggcaaagcgcagctggaagtgaaaataggcgaaaccaatggtcgtctggaaggcgatcgtgacaaagtgcgttttgtacagaccaatatggggcggttgattctggcagcccaaatggatcgcactggtgccgactttgcggtgatgagcggaggcggaattcgtgattctatcgaagcaggcgatatcagctataaaaacgtgctgaaagtgcagccattcggcaatgtggtggtgtatgccgacatgaccggtaaagaggtgattgattacctgaccgccgtcgcgcagatgaagccagattcaggtgcctacccgcaatttgccaacgttagctttgtggcgaaagacggcaaactgaacgaccttaaaatcaaaggcgaaccggtcgatccggcgaaaacttaccgtatggcgacattaaacttcaatgccaccggcggtgatggatatccgcgccttgataacaaaccgggctatgtgaataccggctttattgatgccgaagtgctgaaagcgtatatccagaaaagctcgccgctggatgtgagtgtttatgaaccgaaaggtgaggtgagctggcagtaatccgaaagtgccggatgtttgcatccggcacaatgcttaatcgcggcgggcgatatcagcaaatttggcatcgaggatctttgccagatcgcctgccgccagttcgatatccagtccgcgcttgccgccggaaacataaatagtggcaaattcttgtgcgggggcgtcgataatcgttggcagacgttttttctgccccagtgggctaatccccccaaccaggtatcccgtcgaacgctgcgcgaccatcggatcggccatctcaactttcttggcacccagcgcttttgctacttttttaagatccagttgacctgcgaccggcgtaacggccacggcaaggtgtttcatatcaccgttcactgccaccagcagcgttttgtagacctgatccggattcaaacctaattttttgacgacttcatcgccaaaattggtttcagccggatcgtgctcgtaggtatggatttgaaacgaaatcttgtttttttcgagtaatttaactgcgggtgtcatggtaattttcctgccttaaacaaaaaaacgaagcaagcatacgcctgatggcggtccaaaaaaaagagtcatcttgcctaagagtattggcaggatggtgagattgagcgacaatcgagttacaccgtcgcttaaagtgacggcataataataaaaaaatgaaattcctctttgacgggccaatagcgatattggccatttttttagcgcaacatttgcggcaaattcccttctccatacaggtgtagtgcaccgaccgcgaccacatatcgccccggcggcatggcgcgtaatttatcccgccaggcgagatttcgctgatgcatcagcacatcgtacagcgactgactgaacgtattgggcagcgttatatcattattttgcggcggtgcattcagccaccagctcatcatttgttgcagcaaccgtgcgttggtatgccagtgggtcagcgtatcgtccagcagcgccagtcctttgtcagggagctggagcaacatggcaatctggttttcagccccttccagttcaatcacgggtttatgttgttgcttcgccgcctgcaatagctggtaatcgataccgtattctgcccgcagccccagtttttgtgcctgcgtcgcctgaagaaccatcgcgatttgccacagcggttgggtagaaaagagtgagggagaaatgcccatctcctggctaatgtgctgcaggttttggagttgctcctcgctaatgcgctcttccagcgcctcgcaggcaggcaaattagcaaaaggcgtatcgctggtggaaacatccgcctcgacgatcagcgcatcggcgtttttgagctttttgagcaaacgggtgggcaggggagccatatcgtggctacccatatgaatactgccaatcagatgaaaatggcgattgccggggagggtgatatcgatggcaggccaggtgtaatgattaccgcgcagcgcggcccaaagcgtttttacccggtacaacagatccatacgacctccctttgtgaaatatcatgctagcgcgcggtgagggatggcgcaaatggagttggagacttgtttaatgtgtttgtatgattcagtatgttcttgcatcgctattcacaaggaagcaacagttaaaaaccatgaaacaggcaacaagaaaaccgacgacacccggagatattcttctctatgaatatctggaaccgctcgatttgaaaatcaatgagttagcagagttgctgcatgttcatcgtaatagcgtcagtgcactgatcaataacaatcgtaaactcactactgagatggcatttcgtctggcgaaagtttttgataccacagtcgatttttggctaaacctccaggcggcggttgatctttgggaagttgaaaacaacatgcgcacccaggaagaattgggacggattgaaacagtggctgaatatttggcacgccgtgaagagcgtgcaaaaaaggtcgcgtaaggccaaaacatcgcttcatctcgtaggccggataaggcgttcacgccgcatccggcatccgagcaccattgcctgatgcgacgcttacccgtcttatcaggcctacaaacttgtgcctgaaccgtaggccggataaggcgtttacgccgcatccggcatccgagcaccattgcctgatgcgacgcttacgcgtcttatcaggcctacaaacctgtgcctgaaccgtaggccggataaggcgtttacgccgcatccggcagtcatgcgtcgatgccaaatgcgccaccctaaagcagcgcatccgcaatgatgtacttattccttcggtttaaaccgcagcaaccggttggcgttactcactacggtaatcgacgagagcgccattgccgctccggcaactaccgggttaagcagtgttccagtgaacggccacaaaataccggcggcgaccggaataccgatactgttgtagataaacgcaccgagcaggttctgcttcatgttgtgcagcgttgcgcgggaaatagcgagcgcatccgcaacgcccatcaggctatggcgcatcagggtaatcgccgcggtttcaatggcaacatcactgccgccacccatcgcaatgccgacatccgcctgagccagcgctggcgcgtcgttaatgccgtcgcccaccattgccacctgacgtccttcactttgcagatgtttgatcgcttcggctttaccgtccggcagcaccccggcgatcacctcatcaatccctgcttctttggcgatcgcattggcggtggttgggttatccccggtcaacatcaccagacgatatcccgctttatgcaggcgttgcagcgccgccacgctatcactacgcaacggatcgcgtactgccagcagggctaccgctttcccgtcaaccgccagcagcacaggcgttgccccttgcgatgcctgagcagtaatctccgcttcgatagctttggtaccaacctgttgctcatttaacagcgcctgattgcccagcaataacgcatgaccttcagcttcaccgctcacgcccagcccgcgcaatgtgcggaaaccgttgacctgcggtagctgcatatcacctgctttatcgaggatcgctcgtgccagcggatggctggaaccttgctccagtgccgccgccagacgcaatgcctgcgcttcatcaacatcagcaaatgttttcactgcgacaacctgcggcttcccttcagtcagcgtcccggttttatcgaacactacagtgtcgagtgtactggcgcgttgcagcgcgtcagcgtcccgcaccagcacgccaaactcagccgcccgcccgacgccggaaataatcgacatcggcgtcgccagccccagcgcacacggacaggcaataatcagtaccgtggtggcaatcaccagggtatagacaatctgcggtgccggaccaaagaaataccagattgccgcactgacaagcgcaataaccaccactaccggcacaaatacggctgagattttatccgccagctgaccgatttctggcttgctgctctgggcctggcgcaccatgcgaatgattcgtgacagcgtagtatggctgccaaccgcactggcacgaaacagcacactgccgtcctgtaccactgtcccggcatggacgctatcgccttcgcctttttgctgcgggattggttcgcccgtcagcatcgcttcatccagccatgcttcgccctgggtaatctcgccatctaccggcacgcgatcgccggtcgtcaggcgcagcaacatacctggctgcacttctgccagaggcacgcttttttcaccttcgtcagtaaccaggcgtgccgtcggcggggttaaatcgagtaacttttccagcgccttagaagaacgctggcgtgcgcgcgcttccagcatatggccgagattgatcagaccgataatcatcgcgctggcttcgtaataaagatgtcgcgcttccatcgggaaccactgcggccacaggttgacgctcatcgaatagagccacgccacgccagtacccagcgccaccagcgtatccatcgtcgccgcaccgttcagcaggcttttccatgcactgcggtaaaaatggccgccggcgaaaaccatcactgccagggttatcaggccgataaccaaccacaggctgcggttgtcagcggtgaccatcatgttatcgccgatcatcccccagaccatcaccgggatacccaccgccagtgcgacaattgcctgccagcggaagcgcttcatcgtagcgacggcggtttcttgctggcgctcgcggcgtttagcgtcatcttcaatcgcttccgcgccgtagcccgctttttccaccgcctgcactaaatcttgtggggaggcactgcccatcaccagcgcagtacgctccgccaggtttacccgtgcctgagtgacgcccggtacgctttgcagcgcattttgtacgcgggtgacacagctggcgcagctcatgccgctcagcagcaactgctggctgtcatcgtcatcggcggtcgctgccggaagcgcctcagaaaccgctgtcagtgcttccgacgggattgatgactccgccagcggtttagcctttgggtggcttacagatgcgtcataacccgcttgtttgatggtttcgatcagctgttctgcactggcagtcccggtaacgtgcgcttcagtgatagacacatccgcctgctcaacatccggacgctgttcaagactttctttcacgcgtttaacgcagtgaccgcaggacaggccgtccagggtcaggtcgatagtttgtgacataaaacactcctttaagacagttttgactggctgtgataaaggttaaaccttccagcaaggggaaggtcaagaaattaataaaccaggcgggtaaaagtccgtaaagattaaaaaatcggctcgatttgcatcaggattagacatttatctctttgttttcctgtagttaagttgcgggtgctaagttaaatcaggatgcctgaaaatcggcaccggggtgaggaattacctcccgcatctataaaaaggagttaacaaaagatgttagatgcaaacaaattacagcaggcagtggatcaggcttacacccaatttcactcacttaacggcggacaaaatgccgattacattccctttctggcgaatgtaccaggtcaactggcggcagtggctatcgtgacctgcgatggcaacgtctatagtgcgggtgacagtgattaccgctttgcactggaatccatctcgaaagtctgtacgttagcccttgcgttagaagatgtcggcccgcaggcggtacaggacaaaattggcgctgacccgaccggattgccctttaactcagttatcgccttagagttgcatggcggcaaaccgctttcgccactggtaaatgctggcgctattgccaccaccagcctgattaacgctgaaaatgttgaacaacgctggcagcgaattttacatatccaacagcaactggctggcgagcaggtagcgctctctgacgaagtcaaccagtcggaacaaacaaccaacttccataaccgggccatagcctggctgctgtactccgccggatatctctattgtgatgcaatggaagcctgtgacgtgtatacccgtcagtgctccacgctcctcaatactattgaactggcaacgcttggcgcgacgctggcggcaggtggtgtgaatccgttgacgcataaacgcgttcttcaggccgacaacgtgccgtacattctggccgaaatgatgatggaagggctgtatggtcgctccggtgactgggcgtatcgtgttggtttaccgggcaaaagcggtgtaggtggcggtattctggcggtcgtccctggagtgatgggaattgccgcgttctcaccaccgctggacgaagatggcaacagtgttcgcggtcaaaaaatggtggcatcggtcgctaagcaactcggctataacgtgtttaagggctgatcatgatgaacacggaaggtaataacggtaacaaacctctcggtctatggaacgtcgtttccatcggcattggggcaatggtgggggcggggatcttcgcgctgctggggcaggctgcattgctaatggaagcctcgacctgggtcgcctttgcttttggcggtattgtggcgatgttttccggttatgcctatgcgcgtctgggggcgagctatcccagcaatggcggcattatcgacttctttcgtcgcggattaggcaacggcgtcttttcgctggcgctctcgttactgtacctgttgacgctggcggtgagcatcgccatggtcgcccgtgcttttggcgcttatgccgtgcagtttttgcatgaaggcagccaggaggagcaccttattttgctctacgcgttggggatcattgcggtgatgacgcttttcaactccttaagcaaccatgcggtagggcggctggaagtgatcctcgtcggcattaaaatgatgatcctgttattgctgattattgccggtgtctggtcgctgcaaccggcgcatatttccgtctctgcgccccccagctccggtgcgttcttctcctgtattgggataactttccttgcctatgcgggctttggcatgatggcgaacgcggcggataaagtgaaagatccgcaggtcattatgccacgggcgtttctggtggcgattggcgttaccacgttgctttatatctcgctggcactggttttgcttagcgatgtatcggcattagagttagaaaaatatgccgataccgccgtagcgcaggctgcttctccgctgctcgggcatgtgggttatgtgatcgtcgtcatcggcgctttactggcgacggcttcagccattaacgcgaacctgttcgccgtgtttaacatcatggacaacatgggcagcgaacgcgaactgccgaagctaatgaataaatccctgtggcggcagagtacctggggcaacattattgtcgtggtgttgattatgctgatgacggcggcactgaatttaggctcactcgccagcgttgccagcgccacctttttgatttgctacctggcggtgtttgtggtggcgatccgcctgcgtcatgatattcacgcctcgttgccgattcttatcgttggtacgttggtgatgttgttggtgatcgttggctttatctacagtctgtggtcccagggtagccgtgcgttgatatggattattggctcactcttactcagccttattgtggcaatggtcatgaagcgcaataaaaccgtataacatctctctgtgcgcagtacttcctgtattattgtggtggcggtcgatattcgcactggcaaaaaaacgtgcttgaatatctgttgaaaccctttaacaaagcacaggaggcgttgcgcgaacgatgaacatcagcgatgtagcaaaaattaccggcctgaccagcaaagccattcgcttctatgaagagaaggggctggtgacgccgccgatgcgcagcgaaaacggttatcgcacctacacgcagcagcatctcaacgaactgaccttactgcgccaggcacggcaggtgggctttaacctggaagagagcggcgagctggtgaatctgtttaacgacccgcagcggcacagcgccgacgtcaaacggcgcacgctggagaaggtggcggagatcgaacgacacattgaggagctgcaatccatgcgcgaccagctgctggcactggcgaatgcctgccctggcgatgacagcgccgactgcccgattatcgaaaatctctccggctgctgtcatcatcgggcagggtgattaagacgagacggctcggatatgtagggttatcccttctatcgcaatgacttcaacatgcgtacctgcaccgagatcctcgctggcgctgacaggccatgaactgtcaccgacgcgcatatgaccgcgcccgttgaccagcggagattccagcacaaaacgtcggccaatcagctgctgcccgcgctggtttaaatgactatcgctgtgcttttgttcgcgcacccgccgcgacaaccatttccaccacagccaggcggcgagcagcgtcaggatggcaaacattaccccttgccactcccaacccagcggcaccagccagaccaccaggccggtaatcaccgctgccacgccgctccacaacaaataaccatttccgcccagcatctcggctgccagcagcaaaccgccgagactgagccagaaaatatgtggatgaacgaccattaactccatcatggctgagtccgtttgttggcgctgtctttcaccagctcggcaatcccggcaatcgaccccatcaggctgctggcctctaatggcatcatcactactttgctgttactggaggaaccgatctgctgtaacgcttcggtgtatttctgcgctacgaagtagttcaccgcctgaatatcaccggaggcgatagcttcagacaccattttggtggcgcgggcttctgcttcggcggaacgttcacgcgcttcagcctgtaaaaacgccgactgacgttcgccttccgctttcaggatttgcgactgtttttcaccttcggctttgaggatttccgcctgacggatcccttccgcttcaagaatgtaagcgcgtttggtacgttccgctttcatctgcgcgttcattgaagagataagctctgccggtgggcgcacgtcgcgaatttcaatacgggtgactttaatcccccacgggttggtggcttcatcgacaatacgcagcaggcgtgagttgatgctgtcgcgctgagagagcatttcgtcaagttccattgaacccagcacggtacggatgttagtcatggtcaggttgatgatcgccagctccagattgctgacttcataagccgcgcgcggcgcgtcaatcacctgaataaagcacacggcgtcgatggtaacgttggcgttatctttcgagataacttcctgggaagggatatcgagcacttgctccatcatattgatcttgcgaccaatgcgatccataaacggcaccaccagactgagccccggctgtaacgttttggtatagcgaccaaagcgttctactgtccactgatagccctgcggtacgattttgacacccgcgccgacaatgaccagcgcgacaaaaatgagaatcgggataaagataagcatcggaaaaacctcctgttgtaccgtccataatcagcaaaattgctgcttgattaaacaaattatacctgattactgaaagagagttcccccttattcctgcgaaggataaactgtttttagtaaaaatcagaaaaagggaacagcgatgcaggaaaatagtcctttgcttcagctacaaaacgtaggatatctggcgggtgatgcgaagattcttaataacatcaatttttcgctgcgtgctggcgaatttaagttaattaccggtccttctggttgtggcaaaagtacgctgctaaaaatagttgcttcattgatcagcccaaccagcggaacgttactgtttgaaggtgaggatgtcagcacactaaagccagaaatctaccgccaacaagtctcttactgcgcccagacaccgacgctgtttggcgatacggtatacgataatctgatctttccctggcagatccgtaaccggcagcctgacccagccatttttctcgattttctcgaacgcttcgccttgccggacagcattttgacgaagaatatcgccgagctatctggtggtgaaaaacaacgcatctcattgattcgtaacctgcaatttatgccgaaggttttattgctggatgaaataaccagtgcgctggatgaaagtaataaacataacgtcaatgagatgatccatcgttatgtgcgcgagcaaaatattgccgtgctgtgggtgacacacgataaagacgaaattaatcatgcggataaagtgattacactgcaaccgcatgccggagaaatgcaggaagcacgctatgaactcgcataatattactaacgaatcattagcactggcattaatgctggtggtggtggcaatcttaattagccataaagaaaaactggcgctggagaaagatattctctggagcgtcgggcgagcgataattcagctgattattgtcggctatgtgctgaagtatattttcagcgtggatgatgccagcctgacattattgatggtgttatttatctgctttaatgcggcgtggaacgcgcaaaaacgcagtaaatatattgctaaagcttttatctcatcgtttattgccattacggtcggggcgggaattaccctggcggtgctgattctctcagggtcgattgaatttatcccgatgcaggtgatccctatcgccgggatgattgccggtaacgccatggtagcggtggggttgtgttacaacaatttagggcaacgggtcattagcgaacagcaacagattcaggagaaactgagtcttggtgcgacgccgaagcaggcttcagcgatattgattcgcgacagtattcgcgcggctttaattccgacggtcgattcagcaaaaacggttggcttagtgagtttaccaggaatgatgtccgggctgatatttgccgggattgatccggtgaaggcgattaaatatcagattatggtgacctttatgctgctctcaaccgccagcttgtcgaccattattgcctgctatttaacctatcgtaagttttataattcgcgccaccagttggtggtgacgcaattgaagaagaaatgatgcgatgccggatgcgcagcatcgcatccggcgttgtggttcatgtgccgatcaacggaatatcaatacaacaatgcatacagctggcggcgatacttcgacgccagtgcatcacccgtacccagcgcagcgaggatctcctggaacgttttacgcgtctgaccgtctgcggcggtgagatctttacgcagatgcccgaacagcaactccagcgcctcttcattgcgcccaacctgatgcagttgcagcgccagttgcgtcgccagtgcggcatcttctggattctccgccacctgctgttgcaactgttgaatttccggcgtatcagccgcctgcttcagcagttcgatttgcgccaccagcccctggtagcgggtgtcctgatcctgcaacggaatggttttcagcaccgcttccgcatcttcagaacggttcagcgcaatcagcgtttctgccagcagcaggccgatctccccgttctgattcgacaactgccaggcgtctttcagcaatggcagggcatcggtgtaattgctttcctgcatcagttgcatcgcctgctgcgctttcagctcttcttcgcgcggcagcactttatccagcagggcgcggatcgcctcttccggttgcggcccctggaagccatctaccggttgcccgttctggaacagatacacggtcggaatcgcacgcagaccaaactgcgcggcaatcatctgctccgcgtcgcagtccagcttcgccagaataaattgcccgttgtactgcgccgcgaggctttccagaattggggttaactgcaaacagtgctggctacgttcagaccaaaaatagaacagcaccggagtggtcatcgactgttcaagaacctgttgcaggttagattcgttaatgttgacaatattttctacggacatggagtcgctctctgttgtcgatattttctttgacatgggggcttaagcgcgcgcttcaactcacccctgcaatattttgtccatcacgcgccccggcagcaggcgcttaagcaccattaccgcccaggtcaccagcgtcaccggatagcgcatcttcggcttctcgctaataaaagcatggcgtactttgtccaccaccgcttccggtcccaacgtaaagcgggcggcgatgccgggattttcgactggtttatcactttgcgtctggttgacgttgtcggtgaagcgagtacgaatgggaccgggttcgatcaggctgactttaattccgctgtggcgcagctccatgcgcagtgcatctgaccacgcctccagcgcatatttactggccgcgtaagcgccacgacccggcgtggagattaatcccatcaccgatgatgtcatcacaatacgcccttcaccgtgcggtaacatcgcgggtaacaggcgcatggtgagctggtgtgcgccgaaaaagttggcggaaaactgctgttccatctgcgcacggctgatggtggaaagggggccatacatgccgaatccggcattgttaaagatcccatacagacaattatcggtcagggcgatcacctcgtcggctgcgcgatcaacactttctggtgaatccagatcgatcaacacgccggtaaatcccatgctgttcatgcgctcaacatcatccggtttccggcaacctgccagcacatgaaaaccctggcgttttaattcgagcgcgctttccaggccaattccactggaacatccggtaattaagaccgatttttgcataactttacctgtcaggatctccgttgctttatgagtcatgatttactaaaggctgcaactgcttcgccatccagtcggcaataaacggctgggcgtcgcggttgggatgaataccgtcatcctgcatccattgtggcttgaggtagacctcttccataaaaaagggcagcagcggaacatcaaactctttggcgagtttggggtaaatggcgctaaaggcttcattataacggcgaccatagtttgcaggcagacgtatttgcattaacaatggttcagcgttggcggctttgacatcctgcaaaatctggcgcagcgtttgctcggtttgctgtggctgaaaaccacgcaaaccgtcattgccgcccagttcaaccagcacccaacgcggctgatgctgtttcagcagagccggaaggcgcgccagtccttgttgcgaggtgtcgccgctgatgctggcattaactaccgacgttttactctgccacttatcattcaacaaggcaggccaggccgcgctggcagacattcgatacccggcgctcaggctatcacccagaatcaataacgtgtccgctgcggcggcacggaaggttaacaggaccaggaacaggaagggcaaatgccagcggaaaacattgttgaagttcatcatcttaagaagtccgtcggtcagggggagcatgaactctccatcctcaccggagttgagctggttgtcaaacgtggcgagaccatcgcactggtgggcgagtcgggatcgggtaagtcaaccttgctggcgatcctcgccgggcttgatgacggcagcagtggcgaagtgagtctggtgggacaaccgctacataatatggacgaagaagcgcgggcaaagttgcgcgcgaagcacgtcggctttgtttttcagtcatttatgttaattcctacccttaacgcgctggaaaacgtcgagcttccggctctgctgcgcggtgagagtagcgcggaaagtcgtaacggggcgaaagcgttgctcgaacagttagggctgggtaaacgtctggatcatcttccggcacagctttccggcggtgaacagcaacgagtggcgctggcacgagcctttaatggtcgacctgatgtgctgtttgccgacgaacccaccggcaaccttgaccgccagacgggcgataaaattgccgacctgctgttttccctcaaccgtgaacatggcaccacgttgattatggtgacccacgacctgcaactggcggcacgctgcgaccgctgcttacggctggtgaacgggcagttgcaggaggaagcatgattgcacgttggttctggcgcgaatggcgttcgccgtcgctattaattgtctggctggcgctaagcctggcggtggcctgcgtgctggcgctgggcaatatcagcgatcgcatggagaagggcttaagccagcaaagccgtgagtttatggcgggcgatcgggcgttgcgcagttcacgcgaagtgccgcaagcgtggctggaggaagcgcaaaagcgcggcctgaaagtcggcaagcagctgactttcgccacaatgacctttgcaggcgacacaccgcagctggcgaacgtcaaagcggtggatgatatctacccgatgtatggcgatctgcaaactaatccccctggcctgaaaccgcaggcgggcagcgtattgctggccccacgcctgatggcactgcttaacctgaaaacgggcgacaccattgacgtgggcgatgccaccttgcggattgccggagaagtgattcaggaaccggattccggttttaaccccttccagatggctccgcgtctgatgatgaatctggcggatgtcgataaaaccggagccgtgcagccggggagtcgggtcacctggcgttataaattcggcggcaacgagaaccagctcgacggctatgagaaatggttgttacctcagcttaaacccgaacaacgctggtacggtctggaacaggacgaaggcgcgctggggcgatcgatggaacgctcgcaacagttcctgctgctttcggcgcttctgaccttgctgctggcagtggcagcggtggcggtagcgatgaatcattactgtcgcagtcgctacgatctggtggcgatcctcaaaacgctgggggcagggcgagcgcaactgcgtaagctaatcgtcggtcagtggttgatggtgctgacgctttcagccgttaccggtggggccataggcctgttgttcgaaaacgtgttgatggtgctgctcaagcccgttctgcctgctgcactaccgccagccagcctctggccgtggctgtgggcgcttggcaccatgacggtcatctcgctgctggtggggctacgaccatatcgcttgttgctggcaacgcagcctttacgcgtattacgtaatgatgtggtagcgaacgtctggccgctgaagttttatctgccgattgtcagtgtggtggttgtgctgctgctcgccggattaatgggtggcagcatgctgctttgggcggtgctggcgggcgcggtagtactggctttgctgtgcggtgtgctgggctggatgctgctgaatgtacttcgccgcatgacgctgaaatcgctgcctctgcgcctggcggttagccgcctgttacgtcagccgtggtcaacgttaagtcagctttcggcattttcgctctcctttatgctgctggcactgctgctggtgttgcgtggcgatctgctcgaccgctggcagcagcagctacctccagaaagcccgaactactttttaattaacatcgccacagaacaggtagcaccgctaaaagcgttcctcgcggaacatcagatagtcccggaatcgttttatccggtggtgcgggcgcggctgacggcgattaacgataagccgacagaaggtaatgaagatgaggcgcttaaccgcgaactcaatcttacctggcaaaatacgcggcccgatcataatccgattgtcgccggtaactggccgccaaaagccgatgaagtgtcgatggaagaggggctggcgaaacgcttaaacgttgccctcggtgataccgtgacttttatgggcgatacccaggagttccgcgctaaagtgaccagcctgcgcaaagtggactgggaaagtctgcggcctaatttctattttattttccctgaaggggcattagacgggcaaccgcagagctggcttaccagtttccgctgggagaatggcaacggcatgttgacacaactcaaccgccagttcccgaccattagcctgttagatattggcgcgattttaaaacaggtcggtcaggtgctggagcaggtaagtcgggcgctggaagtgatggtggtactggtcaccgcctgcggtatgttgctgttgctggcacaggtgcaggtgggaatgcgtcagcgtcatcaggagctggtggtgtggcgcacactcggtgcggggaaaaaactgctgcgtaccacgttgtggtgtgagttcgccatgcttgggtttgtttccggcctggtggccgcaattggtgcggaaacggcgctggcagtgttgcaggcgaaagtgtttgattttccgtgggagccagactggcgattgtggattgttctgccgtgcagcggagcgctgctgctgtcgcttttcggcggctggctgggtgcgcgactggttaagggtaaggcgctgttcaggcagtttgcggggtgatgagagtaaataaggggcgttctggttgaatggaacgccttgtttaaattaattctacaatatgtttcattgatgatgttattgaattggtgatttcctatctttctattgctgatattaatctgaatcggtggagtttattgattttaaatatagccctacaaaaataactcagactaataaaatcataaatcatatgcgttgaatggatattatccatatagtgaatttgttgatgatgaattcatctgtgctaaaaatgttagtttaataaaatattgaaagtgacctgtaataacagttgttgttgattgagaacaaataagtttatgtgaaaaatatataaatacattagctggtcttgtgtgtcattttatttttttttgttgctaacacagggatatgaacaataactaaaagggcactttatatgagcggaaaaccagcggcgcgtcagggagatatgactcagtatggcggtcccattgtccagggttcggcaggtgtaagaattggcgcgcccaccggcgtggcgtgctcggtgtgtccgggcgggatgacttcgggcaacccggtaaatccgctgctgggggcgaaggtgctgcccggcgagacggaccttgcgctgcccggcccgctgccgttcattctctcccgcacctacagcagctaccggacgaagacgcctgcaccggtgggcgttttcggccccggctggaaagcgccttctgatatccgcttacagctacgtgatgacggactgatactcaacgacaacggcgggcggagcattcactttgagccgctgctgccgggggaggcggtgtacagccgcagtgagtcaatgtggctggtgcgcggtggtaaggcagcacagccggacggccatacgctggcgcggctgtggggggcgctgccgccggatatccggttaagcccgcatctttacctggcgaccaacagcgcacaggggccgtggtggatactggggtggtctgagcgggtgccgggtgctgaggacgtactgccagcgccgctgccgccgtaccgggtgcttaccgggatggcggaccgcttcgggcggacgctgacgtaccggcgtgaggccgccggtgacctggccggggaaatcaccggcgtgacggacggtgccgggcgggagttccgtctggtgctgaccacgcaggcgcagcgtgcggaagaggcccgcacctcttcgctatcttcttctgacagttcccgccctctctcagcctcagcgttccccgacacactgcccggtaccgaatacggccccgacaggggtatccgcctttcggcggtgtggctgatgcacgacccggcatacccggagagcctgcccgctgcgccactggtgcggtacacgtatacggaagccggtgaactgctggcggtatatgaccgcagcaatacgcaggtgcgcgctttcacgtatgacgcgcagcacccgggccggatggtggcgcaccgttacgcgggaaggccggagatgcgctaccgctacgacgatacggggcgggtggtggagcaactgaacccggcagggttaagctaccgctatctttatgagcaggaccgcatcaccgtcaccgacagcctgaaccggcgtgaggtgctgcatacagaaggcggggccgggctgaaacgggtggtgaaaaaagaactggcggacggcagcgtcacgcgcagcgggtatgacgcggcaggaaggctcacggcgcagacggacgcggcgggacggaggacagagtacggtctgaatgtggtgtccggcgatatcacggacatcaccacaccggacgggcgggagacgaaattttactataacgacgggaaccagctgacggcggtggtgtccccggacgggctggagagccgccgggaatatgatgaaccgggcaggctggtatcggagacatcgcgcagcggggagacagtacgctaccgctacgatgacgcgcacagtgagttaccggcgacgacaacggatgcgacgggcagcacccggcagatgacctggagccgctacgggcagttgctggcgttcaccgactgctcgggctaccagacccgttatgaatacgaccgcttcggccagatgacggcggtccaccgcgaggaaggcatcagcctttaccgccgctatgacaaccgtggccggttaacctcggtgaaagacgcacagggccgtgaaacgcggtatgaatacaacgccgcaggcgacctgactgccgttatcaccccggacggcaaccggagcgagacacagtacgatgcgtggggaaaggcggtcagcaccacgcagggcgggctgacgcgcagtatggagtacgatgctgccggacgtgtcatcagcctgaccaacgagaacggcagccacagcgtcttcagttacgatgcgctggaccggctggtacagcagggcggctttgacgggcggacgcaacgttatcattatgacctgaccggaaaactcacacagagtgaggatgagggacttgtcatcctctggtactacgatgaatcggaccgtatcactcaccgcacggtgaacggcgaaccggcagagcagtggcagtatgatggccacggctggctgacagacatcagccacctgagcgaaggccaccgtgttgccgtccactatggctatgacgataaaggccgcctgaccggcgaatgccagacggtggagaacccggagacgggggaactgctgtggcagcatgagacgaaacacgcatacaacgagcaggggctggcaaaccgcgtcacgccggacagcctgccgccggtggagtggctgacgtatggcagcggttacctggcgggaatgaagctgggcgggacgccgctggtcgagtatacgcgggacaggctgcaccgtgagacggtgcgcagcttcggcagcatggcaggcagtaatgccgcatacgaactgaccagcacatacacccccgcaggccagttacagagccagcacctgaacagcctggtatatgaccgtgactacgggtggagtgacaacggcgacctggtgcgcatcagcggcccgcgacagacgcgggaatacggctacagcgccacgggcaggctggagagtgtgcgcaccctcgcaccagacctggacatccgcatcccgtatgccacggacccggcgggcaaccggctgccggacccggagctgcacccggacagtacactcacagtgtggccggataaccgcatcgcggaggatgcgcactatgtctaccgccacgatgaatacggcaggctgacggagaagacggaccgcatcccggcgggtgtgatacggacggacgacgagcggacccaccactaccactacgacagccagcaccgcctggtgttctacacgcggatacagcatggcgagccactggtcgagagccgctacctctacgacccgctgggacggcgaatggcaaaacgggtctggcggcgggagcgtgacctgacggggtggatgtcgctgtcgcgtaaaccggaggtgacgtggtatggctgggacggagacaggctgacgacggtgcagactgacaccacacgtatccagacggtatacgagccgggaagcttcacgccgctcatccgggtcgagacagagaacggcgagcgggaaaaagcgcagcggcgcagcctggcagagacgctccagcaggaagggagtgagaacggccacggcgtggtgttcccggctgaactggtgcggctgctggacaggctggaggaagaaatccgggcagaccgcgtgagcagtgaaagccgggcgtggcttgcgcagtgcgggctgacggtggagcaactggccagacaggtggagccggaatacacaccggcgcgaaaagctcatctttatcactgcgaccaccggggactgccgctggcgcttatcagcgaagacggcaatacggcgtggagcgcggaatatgatgaatggggcaaccagcttaatgaggagaacccgcatcatgtgtatcagccgtaccgtctgccagggcagcagcatgatgaggaatcagggctgtactataaccgtcaccggtactacgatccgttgcaggggcggtatattactcaggacccgatggggttgaaagggggatggaatttatatcagtatcctttaaatccactacaacaaattgaccctatgggattattgcagacttgggatgatgccagatctggagcatgtacggggggagtttgtggtgttctttcacgtataataggaccaagtaaatttgatagtactgcagatgctgcgttagatgctttgaaagaaacgcagaatagatctctatgtaatgatatggaatactctggtattgtctgtaaagatactaatggaaaatattttgcatctaaggcagaaactgataatttaagaaaggagtcatatcctctgaaaagaaaatgtcccacaggtacagatagagttgctgcttatcatactcacggtgcagatagtcatggcgattatgttgatgaatttttttcaagtagcgataaaaatcttgtaagaagtaaagataataatcttgaagcattttatctcgcaacacctgatggacgatttgaggcgcttaataataaaggagaatatatttttatcagaaatagtgtcccgggattgagttcagtatgcataccgtatcatgattaattttagtgcttttattagtggggcctataaggagattcaatgaaatatagttcaatattttcgatgctttcattttttatactatttgcctgtaatgagacagctgtttacggttctgatgaaaacattatttttatgaggtatgtggaaaaattacatttagataaatactctgttaaaaatacggtaaaaactgaaacaatggcgatacaattagctgaaatatatgttaggtatcgctatggcgaacggattgcagaagaagaaaaaccatatttaattacggaactaccagatagttgggttgttgagggagcaaagttaccttatgaagttgcgggtggtgtatttattatagaaattaataagaaaaatggatgtgttttgaatttcctacatagtaaataatgctggcgctgatggatgcggatggaaacattgcgtggagcggggagtatgatgagtggggcaaccagctgaatgaagagaacccgcatcacctgcaccagccgtaccggctgccggggcagcagtatgataaggagtcggggctgtactacaaccggaaccggtactacgatccgttgcaggggcggtatatcactcaggacccgatagggctggaggggggatggagtctgtatgcgtatccgctgaatccggtgaatggtattgatccattagggttaagtcccgcagatgtagcgctaataagaagaaaagatcaactaaaccatcaaagagcatgggatatattatctgatacttatgaagatatgaagagattaaatttaggtgggactgatcaatttttccattgtatggcattttgtcgagtgtctaaattaaatgacgctggtgttagccgatcggcgaaagggctgggttatgaaaaagagattagagattacgggttaaatctgttcggtatgtacggcagaaaagtaaagctatcccattctgaaatgattgaagataataaaaaagacttggctgtaaatgaccatgggttgacatgtccatcaacaacagattgctcagatagatgtagtgattatattaatccagagcataaaaaaacgataaaggctttacaagatgctggctatctcaagtaatctatcaaagatgataatatttatttttgctattataatcattgttgttttatgcgtaattacttatctttatttatacaaagatgaatctcttgtaagtaaacattacataaactatatggcaataccagaaaatgatggagtttttacatggctcccagatttttttccgcacgtagcggtggatatatcaatatacacaaatgtagaagatgattatttttttcttatttttccctaacaaatgatgatgggggtaggtttaagaaaacattgacagtgagggccagggaacaagtggcgaaaatcgtatcaaagaatgatccagatacaaaaaaagtgtggtgtaaatatggtaagataccagggcaaggggatggtgtaaaccttttttttgttggtgaaattaatgttacgcattattttataacaaatattggagctggattgcctgatgcttgtgcagagtaattgcttgaattaagagtctatcccatatcgaagtcgtcaacttcgtagtgaggaaaagtaaaattcctgactgagaaaagacatgtcggctattgtgtaaagccatatagctcagacgatgaatatctactcgtattcagttgtttattgagggtgagttccgaccctgaaacaacaaataaaatgaacagtcagagagtttacatagaattgcactggtcttttacgatatctgacattgtgtaatacatattcagccatgcattaattaaaatgttacgtgtttaatgtgagtccctatctgaaaataaataatccttccggattaaaataaattcttgccgggaaagaaagaggaaataaaccattagcggaaaaccagcggcacgccagggtgacatgccccagtacggcggcccgatagtccagggttcagcgggggtactgatagtcgcgccgactgcatcgagaactccatacaactttttacggaacgtcacctgataaaatttgttcagtatcgtcttttgagattctcaaggttatggagtaaccagacagaacggacaccactgtcggagataaaaaccccctgtttacgcagctcgttgctggcccggtgctgaccatgtgtcgggaaagcgacggcgtaatcaacaacagcctgttcagttgcctcatcggtacggttcttaaggttaggagcgcggcgactacgattaatctgcgcatccacaccgccttcagcgaccagttcgcggtaacgataaaacgtatcacgcgaaacgcccatgattttacaggcttttgatacgttgctgagttcttcagccagattgagcaaaccggctttgtgtttgatgacgggattggcagtatgaagcatgagagttacctcttgttttggataaggattcgacactcatatcaaaaccggtaactctcaacctttcaaggccatgtgtcagatcaagtcgcgactaatacaaatacgtccctcattaccgcgccttaacccattccgccacttccgcccactcaccgcgaaagacaactttttccgcttttttctcaagctgatagcgatacatcgggtcgtaatattcttcaagtaacggcaccagccaggccagatgaccgtcggtgctgccggtggtgagttgcgttgtcagtgctgcatccagccttgcagccagttcgttatagcgctgtagccccagccgacgcttaatcgccgaaagtccgtgatgcaggtattcgcaatactcctgccagccctgttcgtcgccgtacgcgtgggtaaaatcatgatgcatacgcaagaaatactcttcgttcaggcgctcaagacggatctcaaacggatcttctaccaccgcaatcgccgcctgagtcattcgctcgcgcaggcattccggcaggtgattcgaaccgatcatccggctttcgtcttccagcacccacaggcgcaaattctgacgggcgtcggtttttagcatttcggcagccagcaggttttcaaaactcgcctggctaagttgtggttgtaacgtgcgaccaaacgccgaaccgcgatgacgcgccaacccttccagatcaacaccgttcggctgttgctgcactaacagcgttttaccgctgccggtacaaccgccaatcagcactatcggtttttgtgccagttcaatagtcgcctgaatcgcggtctggcgcagtgccttataaccgccttccaccagcggataatcaatccccgctgcatgcaaccagctttgcacaatatgtgagcgctgaccgccacgggcgcagcagagaataccttgcggattttgcaggcacgctgcccgccaggcgtccatgcgctgctgacgaatttcacccgccaccagtttatgtcccagcgccagcgctgcgtctgagccttgctgtttatagcaggtgccaacggcggcgcgttcatcgttattcattaacggcagattgatagcggcgggcattgcgccgtgctcaaactcgataggggcgcgaacatcaataatgggcgtatcagcaatcagcagggcacgatagtcctgttccgtgtgtctctcttgcatagttaaaagtgaacctcaaatcagcttgcgcgctattttacgcgccaacgcgcaaggaaacttgatttttaactgcgtgggttgccgaaaatttctaaaaatccgctgatttccggcctgcgctgggtaaacaaggtcacaatatcttctaccgctttgccgctgccaaatttgcgccatgccagactcaatggcgaaggagggcgcatcgttgggattacccggctgaccagttgttgattatcgatcattgactggcaaagcgattttggcaaaaaaccaatgccaacgcccgccagatgggcggcgattttcgtttccatatcgggaacaataatctctttttgccctggcaatcgccaggcgacgcgtttggttaaggtgcgggcgctgtcttcaatattgaccgccggaaagcgccgcaactgcgcttctgttagcggctcttcaacgttcgccagcggatgatccgccgccatgacaaagcgccattgcaccgatcctaagggatcaagactaaaggtatttgccagcgcctcagttcccgtgacgccgatagccagcgaaaaaccttcgtacaatagcgagtcccagacgcccatatagatttgtcgggagatgtgaaactgggtaaaggggtaacgctcattcagccacgccagcaactgggcgacggcctgggggttgtagagcaggttgttgatgacaatattcacctggcgttccacgccatcattcacctgttgcagctcgcttggcatactttccagccagctcagccagtctctggcctgggaaagtagatgctcgccagccgctgtcaacgtcacgctgcgagtcgtacggaaaaacagcgctactccggtattctcttccagaagtttaatgcgataactgatcgtcgccgtggttttacataatcgttctgccgcttttgaaaaacttcctgtttcagcaaccgcaatgaaagtccgcaaggtttctggatcgaacatcttcaggtatccccttttaaatccgcaagttgcgtgattttcttatcctctgatttatcagtatttttacatgataaccctgttcaatttgtggactaaatctagttttggaaaaatattccaacttttgtattgatgttgttctcttaaggttttagattgcctgttattgaaaccaagctgaccggtcggcggtggttgaacggaattatgttacaaggacaaaaagatgaaacttcaggtattaccgttaagtcaggaagcctttagtgcttatggcgacgtaatcgaaacgcagcaacgggattttttccatattaacaatggcctggtggagcgttaccacgatttggcgctggttgagattcttgagcaagactgtacgcttatcagcattaaccgcgcgcaaccggcgaatctgccgctgaccattcacgaactcgaacgtcatccgctgggtactcaggcctttatcccgatgaaaggtgaggtgtttgtggtggtcgtggcgttaggtgacgacaaaccagacctgtcaacgctgcgggcgtttatcaccaacggcgaacagggagtgaattaccatcgtaacgtctggcatcacccacttttcgcctggcagcgcgtcaccgattttctgaccatcgatcgcggcggcagtgacaactgtgatgttgaaagtattcctgaacaggaactctgttttgcgtgacgcctgcaaccgacttgcataagataaactaattgttcattgtttatgctcacttgtaggtcggagttaacgtaggtatgacggaagttagacggcgcggcaggccaggacaggcggagcctgtggcacagaagggcgcacaggcgttagagcggggaattgcgattctgcaatatttggaaaaaagtgggggaagttcgtcggttagcgatatttctctcaatctggatttgccgctctccacgacctttcgcttgctgaaggttttacaggcagcggattttgtctatcaggacagtcaattaggctggtggcatataggattaggtgtctttaacgtcggtgcggcgtacatccataaccgcgatgtcctctccgtcgccgggccgtttatgcgccgcctgatgttactttccggcgaaacggtcaatgtcgcgatccgtaacggcaatgaagcggtattaattggtcagttagagtgtaaatcgatggtcaggatgtgtgcgccactgggcagtcgtctgccactgcatgcttccggtgcgggcaaagcgctgctttatccgctggcggaagaggagttgatgagcatcattctgcaaaccggtttgcagcagtttacgccaactacgcttgtggatatgcccaccttgctgaaggacctggaacaagcgcgtgaactgggctataccgtagataaagaagagcatgttgtaggtctgaattgcatagcttcagcaatttacgatgatgtcggtagtgttgttgccgctatctccatctccgggccttcatcaagactgacagaagatcgttttgtcagtcagggtgagctggtcagagacaccgcccgcgatatcagcacggcgttgggactgaaagcacatccataatgtctgtcgcatcccgctctgcggagcgggtttttttgacaaaatttgaaagttggaaaaattttccaataaatagaggtaggaataaaatggcaaaaatgagagccgttgacgcggcaatgtatgtgctggagaaagaaggtatcactaccgccttcggtgttccgggagctgcaatcaatccgttctactcagcgatgcgtaagcacggcggtattcgtcacattctggcgcgtcatgtggaaggtgcttcgcacatggcggaaggttatacccgcgcaacggcagggaatatcggcgtatgtctggggacttccggtcctgcgggcacggacatgatcaccgcgctctattccgcttctgctgattccattcctattctgtgcattaccggccaggcaccgcgcgcccgtctgcataaagaagattttcaggccgtagatattgaagcaattgctaaaccggtcagcaaaatggcggttacagttcgtgaagcggcgctggtgcctcgcgtgctgcaacaggcatttcacctgatgcgttctggtcgtccgggtccggtactggtggatttaccgttcgacgttcaggttgcggaaatcgagtttgatcctgacatgtacgaaccgctgccggtctacaaacctgctgccagccgtatgcagatcgaaaaagctgtagaaatgttaatccaggccgaacgtccggtgattgttgccgggggcggggtaattaatgctgacgcagctgcactgttacaacagtttgctgaactgaccagcgttccggtgatcccaacgctaatgggctggggctgtatcccggacgatcatgaactgatggccgggatggtgggtctgcaaaccgcgcatcgttacggtaacgcaacgctgctggcgtctgacatggtgtttggtatcggtaaccgttttgctaaccgtcataccggctcggtagagaaatacaccgaagggcgcaaaatcgttcatattgatattgagccgacgcaaattggtcgcgtgctgtgtccggatctcggtattgtctctgatgctaaagcggcgctgacactgctggttgaagtggcgcaggagatgcaaaaagcgggtcgtctgccgtgtcgtaaagaatgggtcgccgactgccagcagcgtaaacgcactttgctgcgcaaaacccacttcgacaacgtgccggtgaaaccgcagcgcgtgtatgaagagatgaacaaagcctttggtcgcgatgtttgttatgtcaccaccattggtctgtcacaaatcgctgcggcacaaatgctgcatgtctttaaagaccgccactggatcaactgtggtcaggctggtccgttaggctggacgattccggctgcgctaggggtttgtgccgctgatccgaaacgcaatgtggtggcgatttctggcgactttgacttccagttcctgattgaagagttagctgttggcgcgcagttcaacattccgtacatccatgtgctggtcaacaacgcttatctggggctgattcgtcagtcacaacgcgcttttgacatggactactgcgtgcaactcgctttcgagaatatcaactccagtgaagtgaatggctacggtgttgaccacgtaaaagtagcggaaggtttaggttgtaaagctattcgggtcttcaaaccggaagatattgcgccagcctttgaacaggcgaaagccttaatggcgcaatatcgggtaccggtagtcgtggaagttattctcgagcgtgtgaccaatatttcgatgggcagcgaactggataacgtcatggaatttgaagatatcgccgataacgcagcggacgcaccgactgaaacctgcttcatgcactatgaataagggagataaataatgttacgtttctctgctaatttatcgatgttatttggagaatatgattttctcgcccgttttgagaaagctgcgcagtgtggttttcgcggcgttgaatttatgtttccttatgactacgacattgaagaattaaaacatgtgctggcgagtaataaactcgaacatacgctgcacaatttaccggcgggtgactgggcggcgggggagcgcggtattgcctgtattcctggccgtgaagaagagtttcgggatggcgtagcagcagcgattcgttatgcccgtgcgctgggtaataaaaaaattaactgtctggtcggtaaaacgccggctggtttcagcagtgaacagattcacgcaacgcttgtagaaaacctgcgttatgccgcgaatatgctgatgaaagaagatattttattactgattgaacctattaaccattttgatattcctggtttccatctcaccggaactcggcaggcgctgaaattgattgatgatgttggttgctgcaatttgaaaattcagtatgacatttatcatatgcagcggatggaaggtgaattaaccaacaccatgactcagtgggctgataaaattggtcacctgcaaattgccgataatccgcatcgcggcgaaccgggaaccggagaaattaattatgattatctctttaaggtaatcgaaaattctgactacaacggttgggttgggtgtgaatataaaccccaaaccaccacggaagccggtttacgctggatggatccgtaccgttaaaacgtaacgctattcagacaatgcttttttaggccgctaagttggcaggggatcgtgttgtctgaattcaggaaaagcgaaatttaaaagaggttaattatgaaactgggatttattggcttaggcattatgggtacaccgatggccattaatctggcgcgtgccggtcatcaattacatgtcacgaccattggaccggttgctgatgaattactgtcactgggtgccgtcagtgttgaaactgctcgccaggtaacggaagcatcggacatcatttttattatggtgccggacacacctcaggttgaagaagttctgttcggtgaaaatggttgtaccaaagcctcgctgaagggcaaaaccattgttgatatgagctccatttccccgattgaaactaagcgtttcgctcgtcaggtgaatgaactgggcggcgattatctcgatgcgccagtctccggcggtgaaatcggtgcgcgtgaagggacgttgtcgattatggttggcggtgatgaagcggtatttgaacgtgttaaaccgctgtttgaactgctcggtaaaaatatcaccctcgtgggcggtaacggcgatggtcaaacctgcaaagtggcaaatcagattatcgtggcgctcaatattgaagcggtttctgaagccctgctatttgcttcaaaagccggtgcggacccggtacgtgtgcgccaggcgctgatgggcggctttgcttcctcacgtattctggaagttcatggcgagcgtatgattaaacgcacctttaatccgggcttcaaaatcgctctgcaccagaaagatctcaacctggcactgcaaagtgcgaaagcacttgcgctgaacctgccaaacactgcgacctgccaggagttatttaatacctgtgcggcaaacggtggcagccagttggatcactctgcgttagtgcaggcgctggaattaatggctaaccataaactggcctgatacccgcaataaaaatggccgatatcagaaaatgaatcggccagcaatattaaaaaagaaagcagccaaagatgttgcttcagtattaaaaataatatttttattttatttgttcctcatagctagattaaaacaacgttattcgatacgtgaaattaagagggatttatggaacatcagagaaaactattccagcaacgcggctatagcgaagatctattgccgaaaacgcaaagccagcggacctggaaaacatttaactattttaccttatggatgggttcggttcataacgttcccaattatgtgatggtcggcggcttttttattctcggcttgtctacctttagtattatgctggcaattatcctcagcgcctttttcattgccgcggtaatggtattaaacggtgctgcgggcagtaaatacggtgtgccttttgccatgatcctgcgtgcttcttacggtgtacgtggtgcactgtttcccggattattaaggggcggaattgccgccatcatgtggtttggtttgcaatgttacgcggggtcactggcctgcttgattctgattggcaaaatctggccgggatttttaactctcggtggtgatttcactctgttaggcctttctctaccgggcttaattactttcttaatcttctggctggtcaacgttggtataggttttggcggtggcaaagttttaaataaattcactgccattcttaacccgtgcatctatatcgttttcggcggtatggcgatttgggcgatttcactggtcgggatcggtccaatctttgactacattccgagcggtattcagaaagcagaaaacggtggcttcctgttcctggtggtgattaacgcggtagttgcggtctgggcggcaccggcggtgagcgcatccgactttacgcaaaacgcccactcgtttcgtgagcaggcgctggggcaaacgctgggtttagttgtggcctatattctgtttgcggtcgccggggtatgtattattgccggagccagtattcactacggcgctgatacctggaacgtgctggatattgttcagcgttgggacagcctgttcgcctcgttctttgcggtactggttattctgatgacaactatctccactaacgcgaccggtaatattattccagccggttatcagattgccgccattgcaccgacaaaactgacctataaaaacggcgtactgattgccagtattatcagcttgctgatctgcccgtggaaattaatggaaaatcaggacagcatttatcttttcctcgatattatcggcggaatgcttggtccggtaattggtgtcatgatggcgcattattttgtggtgatgcgcggacaaattaatcttgatgaactgtataccgcacctggcgattataaatattacgataacggttttaacctcactgcgttttcagtaactctggtggccgttattttatctcttggcggtaagtttattcactttatggaaccgttatcgcgtgtttcatggtttgtcggcgtcatcgtcgcctttgcggcctacgccttattaaagaaacgtacaacagcagaaaaaacaggagagcaaaaaaccataggttaattaatcccgatattgaacattgagttaaaaaccaatctgtattttacaaggagtttgttatgtcttttgatttaatcattaaaaacggcaccgttattttagaaaacgaagctcgcgttgtagatatcgccgttaaaggcggaaaaattgctgctatcggtcaggatctgggcgatgcaaaagaagttatggatgcgtctggtctggtggtttcgccgggcatggttgatgcgcacacccatatttctgaaccgggtcgtagccactgggaaggttatgaaaccggtactcgcgcagcggcaaaaggtggtatcaccaccatgatcgaaatgccgctcaaccagctgcctgcaacggttgaccgcgcttcaattgaactgaagttcgatgccgctaaaggcaagctgactattgatgcggcacaactcggtggcctggtgtcttacaacatcgaccgtctgcatgagctggatgaagtgggcgttgtcggcttcaaatgcttcgttgcgacctgtggcgatcgcggtatcgacaacgacttccgtgatgtaaacgactggcagttcttcaaaggtgcgcagaagctgggcgaactgggtcagccggtgctggtgcactgcgaaaacgcgctgatttgtgacgaactgggcgaagaagcgaagcgtgaaggtcgcgtaaccgctcatgactatgtggcttcgcgtccggtatttaccgaagtggaagcaattcgccgcgtactgtatctggcgaaagttgctggttgccgtctgcacgtttgccacgtcagcagcccggaaggtgttgaggaagtgactcgtgcacgtcaggaaggtcaggacgttacttgtgaatcctgcccgcattactttgtactggataccgatcagttcgaagaaatcggtactctggcgaagtgttcaccgccgatccgcgatctggaaaaccagaaaggcatgtgggaaaaactgtttaacggtgaaatcgactgcctggtttccgaccactctccatgcccgccggaaatgaaagccggtaacatcatgaaagcatggggcggtatcgccggtctgcaaagctgcatggacgtgatgttcgatgaagcggtacagaaacgcggtatgtctctgccaatgttcggcaaattaatggcgactaacgcagcagatattttcggtctgcagcaaaaaggccgtatcgccccaggaaaagatgccgacttcgtcttcattcagccgaatagcagctatgttcttaccaatgacgatctggaatatcgccacaaagtcagcccgtatgttggccgtaccattggcgcgcgtatcacgaaaaccatcttacgtggtgatgtgatttacgacattgaacagggcttccctgttgcgccgaaaggtcaatttatccttaaacatcagcagtaatctggcccctgcaatgcccgtccttgcggcgggcattctccggttaaggtgtgtttatgttcaattttgcagtcagccgcgaaagcctgttatcaggatttcagtggtttttctttattttttgcaacacggttgtggttcctcctacgctactttctgcttttcagttgccgcaaagtagcctgcttacgctcacgcaatatgcttttcttgctaccgcactggcctgcttcgctcaggcgttttgcggtcatcgtcgcgctattatggaagggccaggtggcctgtggtggggaaccatccttactatcacccttggtgaagcatcgcgcgggacaccgatcaacgatatcgccaccagcctggcagtggggattgcactctccggcgtgctgacgatgttgattggttttagcggattaggccatcgcctggcacggttatttacgccgtcggtgatggtcttgtttatgttgatgctgggcgcgcagctgaccactatctttttcaaaggtatgctcgggctgccgtttggcatagccgacccgaattttaaaattcagttaccgccgttcgcgctctcggtggcggtgatgtgcctggtactggcgatgattatcttcctgccgcaacgttttgcccgttatggcctgctggtcggcaccataaccggctggttgttgtggtacttttgctttccttcttcgcactcgctctccggtgagttgcactggcagtggttcccgctcggcagtggcggtgctttgtcgccgggaattattctgacggcggtgattacaggtctggtaaatatcagcaatacctacggtgcgattcggggcacggatgttttttatccgcagcagggcgcagggaatacgcgttatcgtcgtagctttgtggcgaccggatttatgacgctgataaccgtaccgctggcggtaattccattttcaccgtttgtttcatccattggtttattaacccagactggcgattacacgcggcgttcgtttatttatggcagcgttatttgcctgctggtggcgctggttcctgcactcacgcgactgttttgcagtatccctttacccgtgagtagtgcggtcatgctggtttcttatctgcctttactcttttccgcgctggtgtttagccagcaaataacgtttaccgctcgcaatatttatcgactcgcattgccgttatttgtcggcatatttttaatggcattaccgcctgtgtatctgcaagaccttccattaacgcttcgtcctctgctcagtaacggcttattggtcgggattttactggctgttcttatggataaccttattccgtgggaacgcatcgaataatttgttgaaaaaggattgataatgaagattgtcattgcgccagactcttttaaagagagcttaagtgcagaaaaatgttgtcaggcaattaaagccgggttttcgaccctctttcccgatgcgaactatatctgtttgccgatagcggatggcggcgaagggacggtggatgcgatggtcgccgcgacgggcggcaacatcgtgacgcttgaagtctgcgggccgatgggcgaaaaagtgaatgctttttatggccttaccggcgacgggaaaacggcggtgattgagatggcggcagcaagtggcctgatgctggtcgcgcctgaaaagcgtaatccgttgctggcctccagttttggtacgggggagttaattcgtcatgcgctggataacgacattcgccatattattctcggcattggcggcagtgcgacggtcgacggcggtatgggcatggcgcaggcgctcggtgtgcgtttccttgatgccgacggtcaggcgctggcggcaaacggtggtaatttagcgcgcgtggcaagcattgagatggatgaatgcgatccgcgtctggcgaattgccatattgaagtagcatgtgacgttgataacccgctggtaggggcacgcggcgcggcggcggtgtttggcccgcaaaaaggggcaacgccggagatggtcgaagaacttgaacaggggctgcaaaattacgcccgtgttttacaacagcaaactgaaattaatgtctgccagatggcgggcggcggcgctgcgggcggtatgggtattgcggcggcggtatttctcaatgcggatattaaaccgggcattgaaattgtgttgaatgcggtcaatcttgcgcaggcagtgcagggcgcagcactggtgattaccggggaagggcgcatcgactcgcaaacggcaggcggtaaagcgccgctgggtgtggcgtcggtggcgaagcagtttaatgtaccggtgattgggattgctggcgtattgggtgatggcgtggaagtggtgcaccagtacggcattgacgcggtattcagcattttgcctcgtctggcacctttagccgaagtgctcgccagcggtgaaaccaatctcttcaacagcgcgcgaaatattgcctgcgccattaaaataggtcagggaattaaaaactaacccttacctttaaagcggatgcgatttatatcgcataagagtgcagtactcatgccggatgcggcatgagtaccatatccttcctgaaaatcgcgcaaattctatatattgcagagatcatgtaggcctgataagcgaagcgcatcaggcaatgttacaaaaaaagccacggtataaaccgtggcaaaatccaacatagctaaaaataatcaggcgagtggtatgacttaaatctctacgtcgcggttacaatctttcgagtaaatatagctgaacgcttcaccacgccctacaccataaccagcctgtaaagaataagcgcccataaagatgtaatcgccttttttcaccgggatccagttattgtcgaggttataaaccccctgaccggaaagaatataggcaccgtgttcctgaacgtgtgtttcgatataaccgtggctggcacctggtgcaaaagagaggatatgcatgttcatatcaaaacctaactctttgggcagaaaatccagcagaataacatcgtccatgccttcataatgaatgcgttccagttcgctggcattgccagaaaccagccacggtgcatagccttctaccggaacatagcggcgcttatataaaaagatttggctgtcttcggcctgggcgttaacaaacgtcattaaggagcctggcgggcaataaagatagccaccttcgcttaaggcaaatgttttgccttcggctttggcagtgatatttccagagatcacatacaggaacgtttcaatgccttcgccaccgaagccctgttggttgccaccgttttgatgcagtgtgaccagataatcaacaaaagaggcacccagctttggcgtggagaggattgtcgcgtcacaattttcaaagcccggaataatattttttaccagaccatccggggttaacagtgcgaaattaccgtgtttaacaatcgcacggttagccagtaaatcttcgcggtaaccggtgacgttatttaaatatcccatttatgactccttatttctgccaggcaagttgataaagcatgagtgccaacgttttgaccccttcggcaaggtcggtaatattggtgcgttccgccgggttatggctgatcccgttgatgctggggataaaaatcatgcaggttggtacgcgaggcgcgaaaatttgcgcgtcgtgcccggcaccactgtgcatcacccggtaattcagtttttctctttcacacaattctgtcagggtggcgaccagctccttattcatcggcacgggttcttcgtccatccataaatcgatatcaataccaatgtccatttcatcgcaaatcgcccgcatgtcgttttctaactgttgggtgaaatcgcgcagcacggcagcgtcggtatgacgacaatcaatggtgaacgtggttttacccggcaccacatttaccgtattcgggcgcggctctactttgccaaaggtcagaaccagcggatcgcccatccttttcgctttttcgaccgactgatggcaaatgcgactgaaagcgtaaactgtatcacgacgataacccatcggcgtggtgcctgcatggtttgattcgccgttcagcgttaccgtataacgacgctgcccgacaattgcattcaccacgccaattgattgcccattactttccagcacacagccctgttcaatatgcagttcaacaaaggctttaatatcctgacgcggagttagtggggcgttcggaagagtaaatccgcaagccttcatcgcatcgacaaaactatttcctttggcatcacagatattccgcacgtcgtcaggattcgccagcccaaaaatatttttactgccccagaagacatacgggaagcggctgccttcttcttctgccatcgccaccacttcgaccgtacgtagcggcgcgccgtattgcgttttcagccagtcaattgccagccacgccgccagcgcgccgaattgcccgtcaaggttaccgccgttaaccacggtatcgatatgcgaaccgctcagaaccacttcctgtggatattcggtgccattcaggcgaccgtataaattccccacttcatcgaaacgtgtttccagcccgcttgctgccattctttttttaaattgctgctgggtttccagccattccggcgaataaagtaaacgggtcatcccacccgctgggtcagcgccaaaagaggaaagccagggcagcgtttcttctatagcttgacggaaatgtgtaatcataagaaagtcctgtctcaataattattgcgcaaagggatttttcgtttcgtatgacgtgttataaagcgcgtcggaaattaaatactggtaaatatcatcaacaatttcgatgccttcgacggcggctttgcgttgtttaatatcctgatcctgtccgggataataaacctgattaaaaccgggcgcgggggtaatggcatttaattcgcgcatggtctggctaagatgttgacggaataattcgctggaggagaaaaagttcggattaataactatatgtaattgccccaaattacgccctgcgtgtaaatcgtcatacatcgaactaacctgtcgcccgaacggtaagccgagtaagacgcctgagaggacgtcaatcatcatcatcaggccatacccttttggcccggcggcggggagcagagcatgtaccgcgaacggatcggttgttggtacaccgtttttatcgaccgcccaggtatccgggatagacatattacgcgagcgggcgtcgagcacttttccccatgcctgtacggtagtcgccatatcaaaggtaaggatctcgtcgccttctcccggcgcggcaaaggccagggggttagtaccgtagtaaatttccgcgccgccaaacggcaccaccattggatcggactggcacatcgaaatgccaatgaatccggcgcgggctgcctgctgcacaaaataagagattgcgccgctgtgacccatccggctgataccgaccaccgcaacgccattttgctgggcggttttgatggcatgttccatacccattttcgccgcgacctgtccggcggcattgtcggcatgtaaaattgccgagcacggcccggtttcctcaagacgaaactccggttcgcggttggtgccgccttttgaaatgcgttccgcgtagtattccacgcgcaccgcgccatgagagtggatccctctggcatcggcgtaaaccaatacttcagccacggttgcagcgtgctcacgttttaacccagcctggcagagtttattctcaattagctggtggagtgtttcccgactgattttcatctgtcttcctttttaacgacggtgtgaagcatgactgcaattaacatacagggaaaatatctggattatgtgatccagacaggcaaaaaaatatagttagaatttatttgataatccgctcacttttaacctgatttttaaaacaacaacgcttattaaaaaataatgagtaatagcctggtggttatttgaattcttttgttaataattcctgtgtgatattcatcaccttatttactcgttgtcatcgataccgtaatcgccacattaacactgctcgtgcaattgccatgggtgcaatttttaaggagttgttatgatccacgcctttattaaaaaagggtgttttcaggattcggtcagtttaatgattatttcacgaaaactcagcgaatcagaaaatgttgatgatgtttccgtaatgatgggtacgcccgccaataaagcgttattagataccacaggtttctggcatgacgattttaataacgccacgccgaacgatatttgcgtggcaattcgtagcgaagcggcggatgcggggatcgcgcaggcgattatgcagcagcttgaagaggcgctaaaacaactggcgcaggggtcaggcagcagccaggcgttgacgcaggtgcgtcgctgggacagtgcctgtcagaaattacccgatgccaatctggcgctgatttcagtggctggcgagtatgcggcggagctggcaaaccaggcgctggatcgcaacctcaacgtgatgatgttctccgataacgtcacgctggaagatgaaatccaacttaaaacccgcgcgcgggaaaaaggcttgctggtgatggggccggactgcggtacgtcgatgattgccggcacaccgctggcttttgctaacgtgatgccggaaggcaatattggcgtcattggcgcttccggtaccgggattcaggagctgtgttcgcagattgcgctggcaggggagggaattactcacgcgattggccttggcgggcgcgacctcagccgtgaagtgggcggcatcagtgcgctaacagcgctggaaatgctcagtgcagacgagaaaagcgaagtgctggcatttgtttcaaaaccacctgccgaagctgtgcgtctgaaaattgttaatgccatgaaagcaaccggcaaaccgacggtggcgctgtttttaggttataccccggcggtggcccgcgacgagaatgtctggtttgcctcctcgctggatgaggccgcacgcctggcttgcctgctttcacgcgtcacggcgcgacgtaacgcaatagcgcctgtcagcagcggatttatttgcggtttgtataccggcggtacgctggctgccgaagcggcgggattacttgccggacaccttggcgtggaagccgacgatacccatcaacatggcatgatgctggacgccgatagccaccagattattgacctcggcgatgatttctacaccgtcgggcgtccccatccgatgatcgacccaaccttacgcaaccagttaattgccgatctcggcgctaaaccgcaagtgcgcgtgttgctgcttgatgtcgtgattggcttcggtgcgaccgccgatcctgccgcctcgctggtgagcgcctggcaaaaagcctgtgccgcgcgtttagataatcaaccactgtatgccattgccacggtgacaggcactgaacgtgacccgcaatgccgctcgcagcaaatcgccacgctggaagatgcggggattgcggtcgtgagttcgctaccggaagccaccttgctggcggcagcgttaattcatccgctctcgcctgccgcacagcaacacacaccgtcattactggaaaacgtcgccgtgattaacatcggattacgcagctttgcgctggagctacaaagcgccagcaaaccggttgtgcattaccaatggtcgccagtcgccggtggcaataaaaaactggctcgtttattagaacgtttgcaataaggggttcccatgtttacatcagtggcgcaagccaatgctgcggttatcgaacaaattcgtcgcgctcgtccacactggctggatgtgcaaccggcttcttcacttatcagcgaactaaacgaaggcaaaacactgcttcacgccgggccgccaatgcgctggcaggagatgaccggacccatgaaaggggcgtgcgtgggcgcatgtctgttcgaaggttgggcgaaagatgaagcgcaggcgctggcaatactggagcaggggaagtgaacttcattccttgtcaccatgtgaatgccgtcgggccaatgggcggtattacttctgccagtatgccgatgctggtggttgagaacgtgaccgacggcaaccgggcgtactgcaacctcaacgaaggtatcggcaaagtgatgcgttttggcgcttacggcgaagatgtcctgactcgccatcgctggatgcgcgatgtgttaatgccagtattaagcgcggcgctggggcgcatggagcgcggtatcgatctcacggcgatgatggcgcagggcattacgatgggcgatgagttccatcaacgcaatattgcttcctctgcactgttaatgcgtgcgctggccccacaaattgctcgcctcgatcatgataaacagcacatcgccgaagtgatggatttcctcagcgtgaccgatcagttcttcctcaacctcgcgatggcttactgcaaggcggcgatggatgctggcgcgatgatccgcgcaggcagcatcgtcacggcaatgacccgcaacggcaatatgttcgggattcgggtaagcgggctgggcgaacgctggtttactgcgcctgtaaacactccgcaaggtctgtttttcaccggcttctcgcaggagcaggcgaacccggatatgggcgatagcgcgattaccgaaacctttggtatcggaggtgcggcaatgatcgcagcgcctggcgtaacgcgctttgtcggtgcgggtggcatggaagcggcaagagcggtatctgaagagatggcggaaatttaccttgaacgcaatatgcagttgcagatcccaagctgggattttcagggcgcgtgcctggggctggacattcgtcgcgtggtagaaaccggcattacgccactcatcaataccggtatcgcccataaagaggcggggatcgggcagattggcgcaggcaccgtgcgggcaccgctggcgtgctttgaacaggcgctggaagcactggctgaaagcatgggtattggttgaggaacgcgcaatgacgatcatccatcctctgcttgccagtagtagcgcaccgaattatcgccagtcctggcggttagcgggagtgtggcggcgggcgattaacctgatgacggaaagcggcgaactgttaacgttgcatcgtcagggtagtggtttcggccccggaggatgggtgcttcgccgtgcgcaattcgatgcgttatgcggtggattatgcggcaatgaacgaccacaggttgtggctcaagggattcgcctcgggcgtttcacggttaaacagccacagcgttattgtttgctgcgtattacgccgcctgcgcatcctcaaccacttgcagctgcatggatgcaacgcgcggaggaaaccgggcttttcgggccactggcgttggcggcaagcgatccgctgcctgctgagttacgccagtttcgtcactgttttcaggccgcgctcaatggcgttaagaccgactggcggcactggctgggtaaaggccccggattaacgccgagtcatgatgacacgctgagcggaatgctgctggcggcctggtattatggcgctttagatgcgcgctccggtcgtccgttttttgcctgttccgacaatctgcaactcgttaccacagcggtgagcgtcagttatttacgttatgccgcgcaaggatatttcgcctcgccactcctgcactttgttcatgctctgagttgcccgaaacgtaccgctgttgcgattgattcgctgctggcgctggggcatacgtcaggggcagatacgctgctggggttctggcttggccaacaattattacaaggaaaaccatgaaaacactggttgtggctcttgggggcaacgccttactccagcgcggtgaggcgctgacggcagaaaatcaatatcgcaatatcgccagtgctgtacccgcgctggcacgcctggcccgttcttatcggttggcgattgttcacggcaacgggccgcaggtggggctgctggcattgcagaatctggcgtggaaagaggtagaaccgtatccgctggatgtgctggttgcggaaagccaggggatgattggctatatgctggcgcagagtttgagcgcacagccgcagatgccgcccgtgacgacggtgctgacgcgcattgaggtttcgcctgatgatccggcgtttttgcagccagagaaatttattggtccggtttatcagccagaagaacaagaggcactggaagcggcttacggctggcagatgaaacgtgatggtaaatatttgcgccgggtggtggcgtctccgcaaccgcgtaaaattctcgacagcgaagccatcgagttgttgctcaaagaggggcatgtggtgatttgcagtggcggcggcggtgtgcctgtgacggatgacggagcagggagtgaagcagtgattgataaagatctcgccgctgcgttgctcgccgagcagattaatgcagatggactggtgatcctcaccgatgctgatgcggtatatgaaaactggggaacgccgcagcaacgtgccattcgccatgccacaccggatgagttagcgccatttgccaaagccgatggttcgatggggccgaatgtaacggcggtgagtggttatgtcagaagccgtggtaaacccgcgtggattggggcgttatcgcgaattgaagagacgctggcgggcgaagcggggacctgtatttcgctgtagtcgtaggcattagacatttgtgcctgatgcgacgcttgacgcgtcttatcaggcctacaaccggtgccgcatccggcaattggtgcacaatgcctgatgcgatgcttgacgcatcttatcaggcctacaatgggtaccggatcggtaggccggataaggcgtttacgccgcatccggcaagaatagagcaccagttaaccgaacttactctgcgcccaaatcacgccgctggcatattccggcggcagcagcgggattaaggcttccagcgtcgcagtcagacgcgatgtgtcgctgtcggtcaaattcagatgccccactttacgccccggacggacttctttgtcgtaccagtgcagatgcaccagcggcagtttcagccagtcataattcacatcgctaccaatcagattgatcatcaccgacggattattcaccactggttgcggtaacggcagatcggtaatcgcccgcagatgcagctcaaactggctgatgctggcaccgttttgtgtccagtgaccgctgttatgcacacgcggtgccagttcgttgatcaacagaccttgcggggtgacaaaacactccatcgccatcacgcccacatagcccagctcctgcataatcgccgacagcatctcttcggcttgcgcctgctgctgtgcgttggcctgcggaaaagcgacgctggtgcgcaaaataccgtcctgatgcaggttatgcgtcagcggataaaacacggtgctgccatcaaagccgcgcgcgccaaccagcgacacttcaccagagaagttaatgccctgctcgacaatacattcgccgtaacactctgccggtaactgttcggtttcatttgcgcgtaaacgccattgaccgcgaccgtcataaccaccagtgcgacgcttaacaatcgccagctcacctaaacgatcaaacaccgcaggccactcgctgcgttcggcaagtaactgccacggtgcagtcggcaggtggagcttatcgaaaagctgcttctgagtcagacggtcagcaataatcgggaacacatcgcggttcacaaaggccggatggcgcgccagctcgcgggttaatgcggtttccggccagcgttctatctcagcggtaatcacgctttgttgaaaaggcaccgccgccggttcagcgtccagcccgactggccagacagcaatgcctaacggttcgcctgcctgacgcagcatacggcctaactgcccgttaccgaggacgcaaacctgtttcatgccgcacctcgcgggtccgggttttccagcacttcgtcggtctgggctttgcgccagtcattcagacgctggtgcagttctttatcatgagtcgcaagaatttgtgctgccagtaacgccgcgtttgccgcgccagctttaccaatcgccagcgtacccaccggaatgccgcgcggcatttgtacgatggagtagaggctatcgacaccgctcagtgcggcgctctgtactggcacgcccagcaccggcaccagcgttttggcggcaatcatgcctggcagatgcgctgcgccgcctgcgcccgcaataatcacctgataaccgttctcttcggcgctttcggcgaagctgaacagtttatcgggggtgcggtgagcagaaaccacttcaacgtggtgcgggacattcaggatttcgaagatttcggcggcgaactgcatggtagcccagtcgcttttggaccccatcacgatggcgacacgcgccggattattgcgggaagacatgcgtcttaaaactcctgtggtgcacaactctcggctttagagggcacagagaatagcacggaaagagagcaaggaaaacggttgcgtggctgtgaaatcagcaaagttgcgggttttttaaaacggaaaatgaatcagctcaacgtcatccgccgtgactttcaccattgaaccttccgtatgccaggcacccagtaccacgcgaaaagcaggttgctgattggcgataagttcatgcaccgccgggcgatgggtatgcccgtggatcagccattgcacctgatgtttttccatcgcactgaccaccgcgttttggttaacgtccatgatcgccagcgatttactgctgttggcttctttgctgttcgcgcgcattcgcgcggcaatgcgtttgcgcacaaacaacggcagggcgaggaatagcgtctgcagccagggtttgtggaccttggcgcgaaaagcctgataacccgcgtcatcggtgcacagcgtgtcgccatgcataatcaacacccggcgaccataaagttcgagcaccttttcttccggcaataacgtcatgccactttcacgggcaaagcgtttgccgagcagaaaatcacggttgccatgaatgaaataacagggaacgccggaatcggacaccgctttgatcgccgccgccatcttgcgatggagtgggttgggatcgtcgtcgccaatccatgcttcaaacagatcgccaagaatatacagcgcgtcggccttgcgggcttcccccgctaaaaaacgcagaaaaccggcggtgatcgccggttcttccacgcagagatgaagatctgcaataaagagtgtcgccacgattactcgctaacggtcacgctttcaatgataacgtcttcttttggcacgtcctggtgcataccgctacgaccggttgcaacacctttgattttgtctaccacgtccatgccgtcaaccacttcagcaaacacgcagtagccccaaccttgcaggctttcgccagagaagttcaggaagtcgttatcaaccacgttgatgaagaactgtgcagttgcagagtgcggagcctgagtacgtgccattgccagcgtaccacgggtatttttcaggccgttgttggcttcgtttttgatcggttctttggtggctttttgtttcatgcccggttcaaaaccgccgccctgaatcataaagccgttgataacacggtggaaaatggtgttgttgtaaaaaccttcgcggcagtagtccaggaagtttttaactgtttcaggtgctttatcgtcaaaagttttgatgacaatatcgccgtgattggtgtggaaagtaaccatttttgcatcctgttccgtttgattggtgcttcaacccagttcgggtcatatatagggtggtgttatagcataaccgcacgatcggatcatcacgcaatgtatgctgattcgcgcgggaaatatgggtattatacgcaactcaattacccacacatgtctaaacggaatcttcgatgctaaaaatcttcaatactctgacacgccaaaaagaggaatttaagcctattcacgccggggaagtcggcatgtacgtgtgtggaatcaccgtttacgatctctgtcatatcggtcacgggcgtacctttgttgcttttgacgtggttgcgcgctatctgcgtttcctcggctataaactgaagtatgtgcgcaacattaccgatatcgacgacaaaatcatcaaacgcgccaatgaaaatggcgaaagctttgtggcgatggtggatcgcatgatcgccgaaatgcacaaagattttgatgctttgaacattctgcgcccggatatggagccgcgcgcgacgcaccatatcgcagaaattattgaactcactgaacaactgatcgccaaaggtcacgcttatgtggcggacaacggcgacgtgatgttcgacgtcccgaccgatccaacttatggcgtgctgtcgcgtcaggatctcgaccagctgcaggcaggcgcgcgcgttgacgtggtcgacgacaaacgcaacccaatggacttcgttctgtggaagatgtcgaaagagggcgaaccgagctggccgtctccgtggggcgcgggtcgtcctggctggcacattgaatgttcggcaatgaactgcaagcagctgggtaaccactttgatatccacggcggcggttcagacctgatgttcccgcaccacgaaaacgaaatcgcgcagtccacctgtgcccatgatggtcagtatgtgaactactggatgcactcggggatggtgatggttgaccgcgagaagatgtccaaatcgctgggtaacttctttaccgtgcgcgatgtgctgaaatactacgacgcggaaaccgtgcgttacttcctgatgtcgggccactatcgcagccagttgaactacagcgaagagaacctgaagcaggcgcgtgcggcgctggagcgtctctacactgcgctgcgcggcacagataaaaccgttgcgcctgccggtggcgaagcgtttgaagcgcgctttattgaagcgatggacgacgatttcaacaccccggaagcctattccgtactgtttgatatggcgcgtgaagtaaaccgtctgaaagcagaagatatggcagcggcgaatgcaatggcatctcacctgcgtaaactttccgctgtattgggcctgctggagcaagaaccggaagcgttcctgcaaagcggcgcgcaggcagacgacagcgaagtggctgagattgaagcgttaattcaacagcgtctggatgcccgtaaagcgaaagactgggcggcggcggatgcggcgcgtgatcgtcttaacgagatggggatcgtgctggaagatggcccgcaagggaccacctggcgtcgtaagtaattgcgctattgccggatgcgagttttcgcatccggttatcgtctgcgccaccacaacattcccatcagtagcatccccggcaaccacacccacatcaattcagaaataatcacctgatgcccgtacggcgtggtgtaacgagacaatgcaaacggcgcgacttttatcacctgccagggagcgaaaaagcgttcatctgaccacggccacagccagccaacgcctttaccgccagtggttaccgaatccagcaagctgtgcgatagcaacgagacggttaaaaacagccagcagcgaatcagcccagccctgaaccatcggcgtccaataaacacacataacagcgggacaacaaacgcaaacaccagcgaatgggtaaacccgcgatgaccaaaaacattgccgtaagcaacgccaaatttaaacgacaatacgtcggcgtcgggcagcatcgccaggatgattccggcaaataacagacgcggagggatgactttcgaacccaaccctaaaccaatgcataggggaacggcggcgtgcgtaataacggttggcatgatggtcgcttcggcaaaatgtcgatgctatcagcatggatgaacggggcgtagagggcaaaagtctgaaaagagaaccggcctgttgatacaggccgggaaagggatcaggcaacaacctgtacgctgtgacctgcaaaactcactgtctgaccggcgacgattttgcagcgtttgcgcgtttcaaccgcaccgtcgactttcacctggccttcggcaatcgcgattttcgcctgcgcgccgctttcgctccagccttccagtttcagcaagtcgcacagctcaacgtgcggatgtttacctaaagaaaatgtcgccatgttactcatcctgtggatcatgatattcaacgcacgcctgtagcgtgttttcaatcagcgtggcaaccgtcatcgggccaacgccgccgggaacaggcgtaatgtatgaggcgcgtttagccgcgtcttcaaacacgacgtcgcccacaactttgccattttccagacggttgatgccgacatcaatcacaattgcgccttctttgatccagtcaccgggaataaagcctggcttgccaacggcaacgatcaatagatcggcattttctacgtgatgacgcagatttttagtgaagcggtgagtcactgtagtggtgcaacctgccagcagcagttccatgctcatcgggcggccaacgatattcgatgcgccaatcaccacggcgttgaggccgaaggtatcaatgttgtaacgctcaagcagcgtgacgataccgcgcggggtgcagggacgcagacgcggcgcgcgctggcacagacgaccgacgttgtaaggatggaaaccgtccacgtctttgtccggatgaatacgttccagcactttgacgttatcaatacccgccggtaacggcagttgaaccagaatgccatcgatggtgttgtcggcattcagcgtatcgataagctccagcagctccgcttcgctggtggtttccgggaggtcataagagcgggagacgaacccgacttcttcacaagccttgcgtttgcttgcgacataaatttgcgatgcagggttactacccaccagcacaacggccagtcctggtgcccgcagtccggctgcaatacgcgcctgaactttttgagcaacttcagagcgcacctgctgcgcaatcgttttaccgtcaataatctttgctgccatcagagagaggattccatctgttacgtagatcgaaggggatgcgcctattttgtcagaagcggggcgcgctgtcaggtttcgtttcagatttatcgcgtgaagcgacctcttgcgaaggtgaggcgcaccgtcgctgagactgaaagcttcatttttcgtccatgatggcgttgtaaatctggaactgatttatttccttgtctaaggattaagataatttaagaaatacctgacaatataaaaagaattttcagcctggtaatttaccgcttcaggtctatatttgtgttgaatatattttgcgcggaagtattcatctaacggggctctctattttttagaatagagtgcatattttcaattaagacattcttagaggataaaaaggaatttactactatcagtgtcttaaataaagtaatcggttatatacggatgtggagtcgataaatgagattgaaggaatatatatgaaattaagatttatttcgtctgcgctggctgccgcactattcgccgctacgggtagttatgctgccgttgtagatggcggtacaattcactttgaaggcgaactggtgaatgctgcctgttcagtgaatactgactcggcagaccaggttgtcacactcggtcaatatcgtaccgatattttcaatgctgttggtaatacctctgcattaattccattcaccattcagttgaacgactgcgatcctgttgttgccgctaatgctgccgttgcattttctggtcaggctgatgcaatcaatgataatttattggccattgcatccagtaccaatacaacaacagcaacgggtgtcggtattgaaatacttgataatacatccgcaattctcaaacctgatgggaatagcttctcaaccaaccagaacttgatccccgggaccaacgttcttcatttttctgcacgttataaaggcaccggtacaagtgcatcagcagggcaagcaaatgctgacgcgacttttattatgagatatgaataatcaaaaccacgttgttttgaattatatatcacgtcttataacaaagtaatgtaccggttgtctgaagcggtatggtggcaatgtaaatcgaaatcatgttcactttgtatcatgccgctttattaaatgaaaagggaatgatgtgttgtaagaaaccaaagcaatcatttctttatattccttatttttgccgtcaggaatacacaaggcgtattaactatgatgactaaaataaagttattgatgctcattatattttatttaatcatttcggccagcgcccatgctgccggagggatcgcattaggtgccacgcgtattatttatcccgctgatgctaaacagactgcggtatggattagaaatagccataccaatgagcgctttctggtcaattcgtggattgaaaacagcagcggtgtaaaagaaaagtcattcatcattacaccgccactgtttgttagtgaacccaaaagcgaaaatactttgcgtattatttacaccggtccaccgctggcagcagatcgtgagtctctgttctggatgaatgttaagacgatcccttcggtagataaaaatgcattgaacggcaggaatgttttgcaactggcgattttatcgcgcatgaaattatttctccgtccaattcaattacaagaattacccgcagaagcgccggacacactcaagttttcgcgatccggtaactatatcaatgttcataatccatcacctttttatgtcaccctggttaacttacaagtgggcagccaaaagttggggaatgctatggctgcacccagagttaattcacaaattcccttaccctcaggagtgcagggaaagctgaaatttcagaccgttaatgattatggttcagtaactccggtcagagaagtgaacttaaactaaccgaatcatctgacaatatcagagctaattatgaaaatacccactactacggatattccgcagaggtatacctggtgtctggccggaatttgttattcatctcttgccattttaccctcctttttaagctatgcggaaagttatttcaacccggcatttttattagagaatggcacatccgttgctgatttatcgcgctttgagagaggtaatcatcaacctgcgggcgtgtatcgggtggatctctggcgtaatgatgagttcattggttcgcaggatatcgtatttgaatcgacaacagaaaatacaggtgataaatcaggtgggttaatgccctgttttaaccaggtacttcttgaacgaattggccttaatagcagtgcatttcccgagttagcccagcagcaaaacaataaatgcatcaatttactgaaagctgtacctgatgccacaattaactttgattttgcagcgatgcgcctgaacatcactattcctcagatagcgttgttgagtagcgctcacggttacattccgcctgaagagtgggatgaaggtattcctgctttactcctgaattataatttcaccggtaacagaggtaatggtaacgatagctatttttttagtgagctcagcgggattaatattggcccgtggcgtttacgcaacaatggttcctggaactattttcgcggaaatggatatcattcagaacagtggaataatattggcacctgggtacagcgcgccattattccgctgaaaagtgaactggtaatgggagacggcaatacaggaagtgatattttcgatggcgttggatttcgtggtgtacggctttattcttctgataatatgtatcctgatagccagcaagggtttgccccaacggtacgtgggattgcccgtacggcggcccagctaacgattcggcaaaatggttttattatctatcaaagctatgtttcccccggcgcttttgaaattacagatttgcacccgacatcttcaaatggcgatctggacgtcaccatcgacgagcgcgatggcaatcagcagaattacacaattccgtattcaacagtgccaattttacaacgcgaagggcgtttcaaatttgacctgacggcgggcgattttcgtagcggtaatagtcagcaatcatcgcctttcttttttcagggtacggcactcggcggtttaccacaggaatttactgcctacggcgggacgcaattatctgccaattacaccgcctttttattagggctggggcgcaatctcgggaactggggcgcagtgtcgctggatgtaacgcatgcgcgcagtcagttagccgacgccagtcgtcatgagggggattctattcgcttcctctatgcgaaatcgatgaacaccttcggcaccaattttcagttaatgggttaccgctattcgacacaaggtttttatacccttgatgatgttgcgtatcgtcgaatggaggggtacgaatatgattacgacggtgagcatcgcgatgaaccgataatcgtgaattaccacaatttacgctttagccgtaaagaccgtttgcagttaaatgtttcacaatcacttaatgactttggctcgctttatatttctggtacccatcaaaaatactggaatacttcggattcagatacgtggtatcaggtggggtataccagcagctgggttggcatcagttattcgctctcattttcgtggaatgaatctgtagggatccccgataacgaacgtattgtcggacttaatgtttcagtgcctttcaatgttttgaccaaacgtcgctacacccgggaaaatgcgctcgaccgcgcttatgcctcctttaacgccaaccgtaacagcaacgggcaaaatagctggctggcaggtgtaggtgggaccttactggaaggccacaacctgagttatcacgtaagccagggtgatacctcgaataatgggtacacgggcagcgccacggcaaactggcaggccgcttacggtacgctggggggcgggtataactacgaccgcgatcaacatgacgttaactggcagctgtctggcggtgtggtcgggcatgaaaatggcataacgctgagccagcctttaggggataccaatgttttgattaaagcgcctggcgcaggcggtgtacgcattgaaaatcaaactggcattttaaccgactggcgcggctatgcggtgatgctgtatgccacggtttatcggtataaccgtatcgcgcttgataccaatacgatggggaattccatcgatgttgaaaaaaatattagcagcgttgtgccgacgcaaggcgcgttggttcgtgccaattttgatacccgcataggcgtgcgggcgctcattaccgttacccagggcggaaaaccggtgccgtttggatcactggtacgggaaaacagtaccggaataaccagtatggtgggtgatgacgggcaagtttatttaagtggtgcgccattgtctggtgaattactggttcagtggggagacggcgcgaactcacgctgcattgcgcactatgtattgccgaagcaaagcttacagcaagccgtcactgttatttcggcagtttgcacacatcctggctcataaaggaaattatcaataagataatctgcagattattattggcgatggcatgtttgtgtctggcaaacatatcctgggctactgtttgtgcaaatagtactggcgtagcagaagatgaacactatgatctctcaaatatctttaatagcaccaataaccagccagggcagattgttgttttaccggaaaaatccggctgggtaggtgtctcagcaatttgtccacccggtacgctggtgaattatacataccgtagttatgtcaccaactttattgttcaggaaactatcgataattataaatatatgcaattacatgattatctattaggtgcgatgagtctggttgatagtgtgatggatattcagttccccccgcaaaattatattcggatgggaacagatcctaacgtttcgcaaaaccttccattcggggtgatggattctcgtttaatatttcgtttaaaggttattcgtccctttattaacatggtggagatccccagacaggtgatgtttaccgtgtatgtgacatcaacgccttacgatccgttggttacacctgtttataccattagttttggtggccgggttgaagtaccgcaaaactgcgaattaaatgccgggcagattgttgaatttgattttggtgatatcggcgcatcgttatttagtgcggcagggccgggtaatcgacctgctggtgtcatgccgcaaaccaagagcattgcggtcaaatgtacgaatgttgctgcgcaggcttatttaacaatgcgtctggaagccagtgccgtttctggtcaggcgatggtgtcggacaatcaggatttaggttttattgtcgccgatcagaacgatacgccgatcacgcctaacgatctcaatagcgttattcctttccgtctggatgcagctgcggcagccaatgtcacacttcgcgcctggcctatcagtattaccggtcaaaaaccgaccgaagggccgtttagcgcgctggggtatttacgcgtcgattatcaatgaggtacggagaatgagaagagtactctttagctgtttctgcgggctactgtggagttccagtggatgggcagttgaccctttaggaacgattaatatcaatttgcacggtaacgttgttgatttctcctgtaccgtaaacacagcggatattgataagacggtagatttaggcagatggcctacgacacaactactgaacgctggcgataccacggcactcgtcccttttagcctgcggctggagggatgtcctccgggttcagttgcgattttatttacgggaacgccggcatccgataccaacctgctggctctggatgatcccgcaatggcacaaaccgtcgccatcgaattacgtaatagcgatcgctcccggctcgcactgggggaggcgagcccgactgaggaagtagatgcaaatggcaatgtcacactaaacttttttgccaattatcgagcgttagccagcggtgttcggccaggtgtggcgaaagcggatgcgatatttatgatcaattataattaatattatattaattcgtataatttggcgtagtcgataagctctacaattgaatgcaaacctagcttgccataaatattagatttatgcgcactaactgttttattgctaagtaataacttatcggcaatttctttattagataatccgctaaccagataacgtaatatggtcacttcacgattagatagcacagtgaccgttgaactattcgtactacatttattgctttttatatagttaagcgtttcgctgggaaaaaacgtgtatccggagaggatcatctgaacggcatgaaaaatatcattctgatcattgcatttactgacaaaaccgttagcaccagcttgtatcgctctgccagcataaaagcattctgatttcgatgataaaaataacactttcactgtgctctggatttgtttgatccttttcaggaaggtaaaaccgtctgttccgggcaagtctatatccataatgattaaatcaacaggacgggttcggagataatcgatggttatgcgataatcatccgttttcaggacaatctgcaattcactgtttttttgcaacagaacttcaatagacattctgatgataggatgagtatccataatgatcaccgacgttggtttcatagttaccagtctcataggagcggacaattttccgttaggtcgggaaattgtactttgatacatgaaaatacgggttttcttgattcagacgcgcagcggtgtgcgtttgtttgccgctatagcgaaataaatcagaaaatcagacgcggtcgttcacttgttcagcaaccagatcaaaagccattgactcagcaagggttgaccgtataattcacgcgattacaccgcattgcggtatcaacgcgcccttagctcagttggatagagcaacgaccttctaagtcgtgggccgcaggttcgaatcctgcagggcgcgccattacaattcaatcagttacgccttctttatatcctccataatttcagagtgggacatatttgggacattatcaccaaaaatgtcgtctattttcctcgcatgctctgtcaaatgattaggcgcaaggtgagcatacctacgaaccatttctatggactcccatccgcccatttcctgaagcactgataatgggacgcctgactgaatcagccagcttgcccaggtgtgtctgaggtcatggaaacggaaatcttcaattcctgcacgacgacaagctgatagccatgatgtcttgctgtcgatgcgcatcttcctgaccgcaggcgttgatgttccatctgctcgcttagccgccttggtatgtacaaacacccatttgtgatgcttgcctatttgatcacgcaacactttacaggcggtatcgttcagcgccacaccaatggcgcggtttgatttgctctcttctggattcacccaggcaactcgtcgctgcatgtcgatttgttgccattccagatttatgatgttcgactttctcagaccagttgccagcgcaaacttgacgacagatttcagtggttcggggcactcatcaataaggcgttttgcttcctccttttccagccatctgactcgcttgtttctgaccgctggtatcttgatgacaggcgctttttccagccacttccagtcgcgttctgcagcacggagaatggcctttatcatggcaagatgctttgcctttgtctgagttgatactggctttggttcataaacaggcagttctttacctttcctgatggcggcctgaactttctgtttccatatttctttcgtctttctgttatgcattctgcttacagcagagtaaatctttgcctccgagatatctttaagccttataccctcaaaatgttcaagccagaactcaatccggcttttatctgaatcgagagattttttatcagctttttcctcaagccatcttaggcaggcctcttcaaaagtgacatcaggtaaatcccctagcttttctactcgccagagttctgcttttcgcttgtcgtgcaactcctgagcttgccgtttgtcctttgtgccaagagattccttaattcgtttcccgcccgggagcgaatacgaggcataccatatttcatttctgcggaagagtgacattttctttcctctgttatgccatcacccgcgctcacctggacagtatgcagcggagactgaagcgccgcaatgcaggcttgccgtgttgtgaggtacccggatattatcgtgaggatgcgtcatcgccattgctccccaaatacaaaaccaatttcagccagtgcctcgtccattttttcgatgaactccggcaccatctcgtcaaaactcgccatgtacttttcattccgctcaatcacgacataatgcaggccttcacgcttcatgcgcgggtcatagttggcaaagtaccaggcatcttttcgcgtcacccacatgctgtactgcacctgggccatgtaagccgattttattgcctcgaaaccaccgagccggaatttcatgaaatcccgggaggtacgagtattgccggaagcgtggcctgtatccggatgcagagtcttatccgtggaaatcgaacgcgcattactggttggttaccaacttgtaccagaacatgcgggccaatgcgctggctgacgcggaattacggcgcaaggctgccgatgaactgacctgtatgacagcgcgaattaaccgtggtgagacgatacctgaaccagtaaaacaacttcctgttatgggcggtagacctctaaatcgtgcacaggctctggcgaagatcgcagaaattaaagctaagttcggactgaaaggagcaagtgtatgacgggcaaagaggcaattattcattacctggggacgcataagagcttctgtgcacaggacgttgccgcggtaacaggcgcaaccgtaatctgatcttacccagcaatagtggacacgcggctaagtgagtaaactctcagtcagaggtgactcacatgacaaaaacagtatcaaccagtaaaaaaccccgtaaacagcattcgcctgaatttcgcagtgaagccctgaagcttgctgaacgcatcggtgttactgccgcagcccgtgaactcagcctgtatgaatcacaactctacaactggcgcagtaaacagcaaaatcagcagacgtcttctgaacgtgaactggagatgtctaccgagattgcacgtctcaaacgccagctggcagaacgggatgaagagctggctatcctccaaaaggccgcgacatacttcgcgaagcgcctgaaatgaagtatgtctttattgaaaaacatcaggctgagttcagcatcaaagcaatgtgccgcgtgctccgggtggcccgcagcggctggtatacgtggtgtcagcggcggacaaggataagcacgcgtcagcagttccgccaacactgcgacagcgttgtcctcgcggcttttacccggtcaaaacagcgttacggtgccccacgcctgacggatgaactgcgtgctcagggttacccctttaacgtaaaaaccgtggcggcaagcctgcgccgtcagggactgagggcaaaggcctcccggaagttcagcccggtcagctaccgcgcacacggcctgcctgtgtcagaaaatctgttggagcaggatttttacgccagtggcccgaaccagaagtgggcaggagacatcacgtacttacgtacagatgaaggctggctgtatctggcagtggtcattgacctgtggtcacgtgccgttattggctggtcaatgtcgccacgcatgacggcgcaactggcctgcgatgccctgcagatggcgctgtggcggcgtaagaggccccggaacgttatcgttcacacggaccgtggaggccagtactgttcagcagattatcaggcgcaactgaagcggcataatctgcgtggaagtatgagcgcaaaaggttgctgctacgataatgcctgcgtggaaagcttctttcattcgctgaaagtggaatgtatccatggagaacactttatcagccgggaaataatgcgggcaacggtgtttaattatatcgaatgtgattacaatcggtggcggcggcacagttggtgtggcggcctcagtccggaacaatttgaaaacaagaacctcgcttaggcctgtgtccatattacgtgggtaggatcaaccagcataaatcaggctgcggctaaaatggcgcgggcaggaatcctggtcgttgatggtaaggtctggcgaacggtgtattaccggttcgctaccagagaagaatgggaaggaaaggtgagcacgaatctgatttttaaggagtgtcgccagagtgccgcgatgaaacgggtattgagggtatataaaagaacatcaatgggaacacaatgatgaaacaggtgagttgagttcaaactgtagtacaattctctccagtttgaacaggaaagaatatgctatgaacccttatatttatcttggtggtgcaatacttgcagaggtcattggtacaaccttaatgaagttttcagaaggttttacacggttatggccatctgttggtacaattatttgttattgtgcatcattctggttattagctcagacgctggcttatattcctacagggattgcttatgctatctggtcaggagtcggtattgtcctgattagcttactgtcatggggatttttcggccaacggctggacctgccagccattataggcatgatgttgatttgtgccggtgtgttgattattaatttattgtcacgaagcacaccacattaaaataatttgtttctaaacgactaaaatatggaggctcttatatttatatgagcctcgttttatgctttttgttaatgtctttattttttatgtattcttttgtgctttcaagattatggcgtaagaaaattgcaatacgattattgttgtatattcaagataatgtgaccttaattgtctttttaaataaaaaataaacaaaaattatatcccaccactaaggtttataaaagcatacgttagcaggtgtcaccatgaaaaaagccatagcatatatgcgattttcatcaccaggtcagatgtctggcgactcattaaaccgacagagaagacttattgctgaatggttaaaggtaaatagtgattattatcttgataccataacatatgaagatttaggattaagtgcattcaaaggaaagcatgcacaatcaggagctttttcggaatttttagatgctatagagcatggttatatattgccaggaactacattgttagttgaaagtctggacagactttcaagagaaaaagtcggtgaagcgattgaacgtctgaaattgattttgaatcacggtattgatgttataactctttgcgacaatacagtctataatattgactctttgaatgagccatattcattaataaaagccatacttatagcacaaagggcaaatgaagaaagcgagataaagtcaagtcgggttaaattatcatggaagaaaaaacggcaggatgcactggaatcaggtacgattatgacggcgtcttgtccgagatggctctccttagatgacaaaagaacggcttttgttccagaccccgacagggtgaaaactattgagctaatttttaaactcaggatggaaaggcgctcattgaatgcaatagccaagtatttaaatgatcatgctgtaaagaatttctcaggaaaagaaagtgcatggggaccttctgtaattgaaaaattattagcgaataaagctctgataggtatttgcgtaccttcatatcgtgcaagagggaaagggataagtgaaatcgctggctattatcccagagtcatatcagatgatttgttttacgctgtacaggaaattcggttggcaccttttggtattagcaatagtagcaagaatcctatgctaataaatctacttcgaacagttatgaagtgtgaggcttgtggtaataccatgattgttcatgcggtatctggaagtttgcatggctattatgtttgtccgatgagaagattacatcgatgtgacaggccatcaataaaaagagatttggttgattataatatcattaatgaattgctttttaattgtagcaaaattcaaccagttgaaaacaagaaagatgctaatgaaactttagagttaaaaattattgagcttcagatgaaaattaataatttaatcgttgcattgtctgtcgcgcctgaagttaccgctatagcagagaaaataagactattagataaggaattacgaagggcttcggtatcattgaaaactttgaagagtaaaggtgtaaattcattcagtgatttttatgctattgacttaaccagtaaaaatggacgagagttatgccgtacacttgcctataaaacattcgaaaaaatcataattaatacggataataaaacctgtgatatctattttatgaatggcattgtttttaaacactatcctttaatgaaagtaatatccgcccagcaggcgataagtgctctcaaatatatggttgatggtgagatttatttctaaataatgatctcggattttaagttatgctatggtgataaagtgcaagacagaattaattatctttgacgaaacttaatgggtaattactttgtttgctcccacaagcgagttttgtacggctgtattggggtagtaaatgagctatacaatcttaatcatttgttaggtgagaactcttggtcgcagattcaaatactgaaaatacgtgacaaattattatgagcaaaatggtgtatgtcacgtattttgaatggtaggttaaaaaataacaccgactttcgtaggtgttactaataataaagcagagtttttagatagtatcaatgtgctttgtgtatattgtggcaaataattgggttgggggtacaattgtgattgcttttgcatgaacattgcgcctttatgcataatgagataaaggaatatcaaataaaataacgataggtcataacaaagaggtttttatgaaaacacttatcgtttcaactgtattggcattcataacattttctgcgcaggctgcagcatttcaggtcactagtaatgaaataaaaacaggagagcaacttacaacgtctcatgtcttttctggatttgggtgtgaaggtggtaatacatcgccctcattaacctggtctggtgttcctgaaggtaccaaaagctttgccgtaactgtatatgatccagatgcacctacaggcagtggttggtggcattggactgttgttaatattccagcaacagtaacatatttgcccgttgatgcagggagacgtgatggaacaaaactgccgactggtgctgttcaaggccgaaatgattttggctatgctgggtttggtggcgcatgtcctcctaaaggagataaaccacatcattaccagtttaaagtatgggctctaaaaactgaaaagattcctgtagattctaactccagcggagcgttagttggttatatgcttaatgctaataaaatcgcaaccgctgagataacaccagtttatgagataaagtagggtgagagtatgctggcaagaggtaagactaacttaaagatcgaagaaatacggatgcataaacatcatgagattcatagggttaagcctcttatgccagctttgtgtcgtatccgtcagggaaagaaagttatcaattgggagacgcatactttaactgttgataataatcaaataatattatttccttgtggttatgaattttatattgagaattatcctgaagcagggctttatcttgcagaaatgctttacttacccattgatttaattgagagtttccaaaaactttatacggtaactgatcaaatacgtaacaaaacaagtttctttttacctcagaatcctgagttaatatattgttgggagcaactaaaaacatctgtttcccgaggcttctcaactaaaattcaggagcacttagcaatgggcgttctactttcgttaggagtgaatcatgttaatcatttacttttatcatatagtaaacaatcattgataagtcgttgttataacctgctgctatccgaacccggcacaaaatggacagcaaacaaggttgctcgatatctctacatttctgtttctacattacatcgccgtctagcaagcgagggggtaagtttccaaagtatactggacgatgtgaggttaaataatgcgttgtctgctatacaaacgacggtaaaacctataagcgagattgccagagaaaatggttataagtgtccttctcgttttactgaaagatttcataatcgttttaatataacaccaagagagataagaaaagcttccagagagtaaaagtgttttaagaaggagcaattctatcgattttgattttgggaaatcaacacggcataattatgtcaccggagcctgaacaactccggtgacttctgcgctaaacggggacgtttatgcgcacatacaatccaaactctcttctcccttcacagatgcagaaatgcacctgcaattctttgcatctagcgtttgacctctgcggaggggaagcgtgaacctctcacaagacggcatcaaattacatcgcggcaacttcaccgctatcggtcggcagatccagccttatctggaggagggcaaatgctttcgcatggtgcttaaaccgtggcgtgagaaacgcagtctttcccagaatgcactcagccacatgtggtacagcgaaatcagtgaatacctcatcagcaggggtaaaacgttcgccactccagcttgggtaaaagatgctctcaaacacacatatctcggttatgaaaccaaagacctggttgatgtcgtaaccggtgatatcaccactatccagtcgttacgccatacctccgatcttgataccggagagatgtatgtcttcctgtgtaaggttgaagcctgggcgatgaatattggttgccacctgactattccacagagctgcgagttccagctgctgcgcgacaagcaggaggcgtaatggctacaccgcttattcgtgtcatgaacggacacatctacagagtaccaaatcgtcgtaagcgtaaacctgagctgaagccatccgaaataccaacactgctcggatataccgccagcttggttgataaaaaatggttgcgactggcagcaaggaggagtcatggctgatttgagaaaagcagcgcgtggtcgggaatgccaggtaagaatccctggcgtatgtaatggcaaccctgaaacgtctgtactggcacatatccggctgactggattgtgcggcaccggtacgaaaccgccagacctgattgccaccattgcatgttctgcctgccacgacgaaatcgaccgccgcacgcattttgttgacgctggatatgcaaaagaatgcgcgctggaaggtatggcgagaacacaggttatctggctgaaagagggggttattaaggcgtgaatacctacagcatcacattaccctggcctccgagcaataatcgctattaccgccataatcgcgggcgcacgcacgtcagcgcagaggggcaggcataccgcgataacgtcgcccgaatcattaaaaacgcaatgctggatatcggcctggctatgcctgtgaaaatccgcattgagtgccacatgccggatcgccgtcgccgtgacctggataatctgcaaaaagccgcttttgacgcactcactaaagcaggtttctggctggatgatgctcaggtcgttgattaccgcgttgtgaagatgcctgttaccaaaggtgggaggctggaactgaccatcaccgaaatggggaatgaatgatgtttgagtttaatatggcagaacttcttcgccaccgctgggggcgtctgcgcttatatcgtttccccggttctgttttgaccgattaccgaatactgaagaattacgccaaaaccctgacaggagcaggagtatgaagtcagagataacaatcaactaatactgttttgttgatttttgcttgtaattggcgttctggtctgatttttgtggagtaagttgatgcgtgatattcagatggttcttgagcgttggggagcgtgggcggctaataatcatgaagatgtgacctggtcgtccattgccgccggttttaagggattaattacttcaaaagtaaaatctcgcccgcaatgttgtgacgatgacgcgatgatcatttgcgggtgcatggcccgtctgaaaaagaacaacagcgatttgcacgatttattagtagattattatgtagtcggtatgacattcatgtcactggcaggtaagcattgctgctctgatggttatatcgggaaaaggttacagaaggctgagggcataattgaagggatgttaatggcattagatatccggttagagatggatatcgttgttaataactctaattaatatgccaattgtttactaaaaattattaaaaatggggcgttgagacgcccccaaaaataaagggtaatatataacagaaggtttatatagttagaagcaaggttgtgcttctaaaggaagtggcttgagggagccacttatatgttggggaggcaacgcctcccgcaacatatctttttcgtaatcagattagaactggtaaaccagacctacagcaacgatgtcatcagtgcttacaccgagtgctttagggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccttagtgaagtcatttttgtcaagcaggttgattttgtaatcaacgaaagtagacatatttttgttgaagtaataggttgcacctacatcaacatatttgactaagtcctgatcgccccatactccaagatccttacctttagattgcaggtaagcaacggacggacgcagaccgaaatcgaactgatattgtgcaacagcttcgaagttttgggctttattagcaacgaagtgatcagcaaatacagtcatattctgggtttcagaataggtagtggccaggtaaatgttgttagcgtcatatttcagacctgcggcccaaacttctgcatttttaccggaagcaaatacttcaggaagaactttccctgcattaacttgagtgtcggtacgatcagatttcgcataagttgcaccgataccgaatccttcgtattcataggtagcagagaaaccgaagccatcaccgttaccttcagtgtagttatcgaaatcgctacgatcgtttttgccttggtactgagcagcaaagttcagaccatcaaccagaccaaagaagtcgttgttacgataggttgcaacaccagttgcacgttgagtcatgaacacgtcggtttgagtccaagtgtcaccaccgaattctggcaggacgtcagtccacgcaccgatgtcgtatgctacaccgtagttacggccgtaatcgatggagccgtagtcaccgaatttcaggccagcgaaggcaagacgggttttatctttggaggaaccttgagattcagcgcggttgcctttgaattcatattcccactgaccgaaaccagtcagttgatcgttgatttgggtttcacctttgaagccaagacgggcataagtagtatcaccatcatctgcatcattagaggagaagtagtgcttagcattaactttcccgtacagatccagcttgttactgtctttattataaatttcagctgcctgagcagacatcgccattagtactgatgcagctacagcagaaattgccactgttaattttttcatcgtgagccctttttttgaactattattaaaaaatgatgtcactgcgcgataaatattcatctaatcaatgtgattatttcaagatgtaagttttggtttctcgtttgatttgtgaagtagatctctatttttatctgaacttttttctatcgaatcctattcatggctcttggctgaataaaaataaatctattagccaatttatattaacggctgttatttataagtgctctataatttgaaggttcaatttaaaccggctaaaaataacactggaaattattttttggttatttgttgagatttgcttatgtatttgtagtggtgttttcaatactcggtagcattctctcaaatatcatttagtggtttacgtacgtaaaaaattggttatgctgttaagagtggttacttcgtcacacagcttaaacccgccgtcgagcgggtttttccattttttgagtctcgatattagctgataacccaatacctgagttattcactgactccgagtctgttacgtttcgtagtattccctcaatttacacccgctttgtctgcgaggtggggttatgaaatccatggataagttaacaacgggtgtcgcctatggcacctcagcaggtagtgccgggtactggtttttacagctgctagataaagtcactccctcacagtgggcagcaataggtgtgctgggtagcctggtatttggcctgctgacgtacctgacaaacctttatttcaagattaaagaagataagcgcaaggctgcgagaggtgaataatgcctccatcattacgaaaagccgttgctgctgctattggtggcggagcaattgctatagcatcagtgttaatcactggcccaagtggtaacgatggtctggaaggtgtcagctacataccatacaaagatattgttggtgtatggactgtatgtcacggacacaccggaaaagacatcatgctcggtaaaacgtataccaaagcagaatgcaaagcactcttgaataaagaccttgccactgtcgccagacaaattaacccgtatatcaaagtcgatataccggaaacaacgcgcggcgctctttactcattcgtttacaacgtgggtgctggcaattttagaacatcgacgcttcttcgcaaaataaaccagggcgatatcaaaggcgcatgtgatcagctgcgtcgctggacatacgctggcggtaagcaatggaaaggcctgatgactcgtcgtgagattgagcgtgaagtctgtttgtgggggcaacagtgagcagagtaaccgcgattatatccgctctgattatctgcatcatcgtcagcctgtcatgggcggtcaatcattaccgtgataacgcaatcgcctacaaagtccagcgcgacaaaaatgccagagaactgaagctagcgaacgcggcaattactgacatgcagatgcgtcagcgtgatgttgctgcgctcgatgcaaaatacacgaaggagttagctgatgcgaaagctgaaaatgatgctctgcgtgatgatgttgccgctggtcgtcgtcggttgcacatcaaagcagtctgtcagtcagtgcgtgaagccaccacggcctccggcgtggataatgcagcctccccccgactggcagacaccgctgaacgggattatttcaccctcagagagaggctgatcactatgcaaaaacaactggaaggaacccagaagtatattaatgagcagtgcagatagagctgaccatatcgatgggcaactcatgcaattattttgagcaatacacacgcgcttccagcggagtataaatgcctaaagtaataaaaccgagcaatccatttacgaatgtttgctgggtttctgttttaacaacattttctgcgccgccacaaattttagctgcatcgacagttttcttctgcccaattccagaaacgaagaaatgatgggtgatggtttcctttggtgctactgctgtctgtttgttttgaacagtaaatgtctgttgagcacatcctgtaataagcagggccagcgcagtagcgagtagcatttttttcatggtgttattcccgatgctttttgaagttcgcagaatcgtatgtgtagaaaattaaacaaaccctaaacaatgagttgaaatttcatattgttaatatttattaatgtatgccaggtgcgatgaatcgtcattgtattcccggattaactatgtccacagccctgacggggaacttctctgcgggagtgtccgggaataattaaaaacgatgcacacagggtttagcgcgtacatgtattgtattatgccaacaccccggtgctgacacggaagaaaccggacgttatgatttagcgtggaaagatttgtgtagtgttctgaatgctctcagtaaatagtaatgaattatcaaaggtatagtaatatcttttatgttcgtggatatttgtaatccatcggaaaactcctgctttagcaagattttccctgtattgctgaaatgtgatttctcttgatttcaacctatcataggacgtttctataagatgcgtatttcttgagaatttaacatttacaacctttttaagtccttttattaacacggtgttatcgttttctaacacaatgtgaatattatctgtggctagatagtaaatataatgtgagacattgtgacgttttagttcagaataaaacaattcacagtttaaatcttttcgcacttgatcgaatatttctttaaaaatggcaacctgagccattggtaaaaccttccatgtgatacgagggcgcgtagtttgcattatcgtttttatcgcttcaatctggtctgacctctttgtgttttgttgatgatttatgtcaaatattaggaatgttttcaattaatagtattggttgcgtaacaaagtgcggtcctgctggcattctggagggaaatacaaccgacagatgtatgtaaggccaacgtgctcaaaccttcatacagaaagatttgaagtaatattttaaccgctagatgaagagcaagcgcatggagcgacaaaatgaataaagaacaatctgctgatgatccctccgtggatctgattcgtgtaaaaaatatgcttaatagcaccatttctatgagttaccctgatgttgtaattgcatgtatagaacataaggtgtctctggaagcattcagggcaattgaggcagcgttggtgaagcacgataataatatgaaggattattccctggtggttgactgatcaccataactgctaatcattcaaactacttaacctgtgacagagccaacacgcagtctgtcactgtcaggaaagtggtaaaactgcaactcaattactgcaatgccctcgtaattaagtgaatttacaatatcgtcctgttcggagggaagaacgcgggatgttcattcttcatcacttttaattgatgtatatgctctcttttctgacgttagcctccgacggcaggcttcaatgacccaggctgagaaattcccggaccctttttgctcaagagcgatgttaatttgttcaatcatttggttaggaaagcggatgttgcgggttgttgttctgcgggttctgttcttagttgacatgaggttgccccgtattcagtgtcgctgatttgtattgtctgaagttgtttttacgttaagttgatgcagatcaattaatacgatacctgcgtcataattgattatttgacgtggtttgatggcgtagatgcacgttgtgacatgtagatgataattattatcattttgtgggtcctttccggcgatccgacaggttacggggcggcgacctcgcgggttttcgctatttatgaaaattttccggtttaaggtgtttccgttcttcttcgtcgtaacttaatgtatttatttaaaataccccctgaaaagaaaggaaacgacaggtgctgaaagcgagctttttggcctctgtcgtttcctttctctgtttttgtccgtggaatgtgcaatggaagtcaacaaaaagcagctggctgacattttcggtgcgagtatccgtaccattcagaactggcaggaacagggaatgcccgttctgcgaggcggtggcaagggtaatgaggtgctttatgactctgccgccgtcataaaatggtatgccgaaagggatgctgaaattgagaacgaaaagctgcgccgggaggttgaagaactgctgcaggccagcgagacagatctccagccagggactattgagtacgaacgccatcgacttacgcgtgcgcaggccgatgcacaggagctgaaaaatgccagagactccgctgaagtggtggaaaccgcattctgtactttcgtgctgtcgcggatcgcaggtgaaattgccagtattctcgacgggatccccctgtcggtgcagcggcgttttccggaactggaaaaccgacatgttgatttcctgaaacgggatatcatcaaagccatgaacaaagcagccgcgctggatgaactgataccggggttgctgagtgaatatatcgaacagtcaggttaacaggctgcggcattttgtccgcgccgggcttcgctcactgttcaggccggagccacagaccgccgttgaatgggcggatgctaattactatctcccgaaagaatccgcataccaggaagggcgctgggaaacactgccctttcagcgggccatcatgaatgcgatgggcagcgactacatccgtgaggtgaatgtggtgaagtctgcccgtgtcggttattccaaaatgctgctgggtgtttatgcctactttatagagcataagcagcgcaacacccttattccagctggcttcgtggctgttttcaacagtgatgagtcatcgtggcatctcgttgaagatcatcggggtaaaacggtttatgacgtagcgtcaggggacgcgttatttatttctgaactcggtccgttaccggaaaatgttacctggttatcgccggaaggggagtttcagaagtggaacggtacagcctgggtgaaagatgcagaagcagaaaaactgttccggattcgggaggcggaagaaacaaaaaacagcctgatgcaggtagccagtgagcatattgcgccacttcaggatgctgtagatctggaaatcgcaacggaggaagaaacctcattgctggaagcctggaaaaaatatcgggtgttgctgaaccgtgttgatacatcaactgcacctgatattgagtggcctacgaaccctgtcagggagtaatcattgggattatgccgcagcacgtcttaagcaagaacatgctgcggttggatgctatttttttcctgaagcggaaaacattactacagtaccttgaaccttggttttaacattctcgaaatgctctgagagtatatgtgttaagccttcttcggaatcttttgtgtttgaaaagatgcctttctgattgtaaatgcgcatcagtttttgaccgaagctattgtgcacaactccatcgccaagaattgtggctccgtatagagttccatcgtcagttaaggcctgcgccgcattgcgtattacacagctttttgtagatatatttccaggcaggcagtgaagaaggtaagacatggaaatggaatcaaattgaccatgtaacgccgcgggataaggttcaaaaacatcatggctaattttatgtttaatttttgattccccagcccttgtagatgccgcgttcaggctagcttcgttcaaatccattaaagatatcagactactctcaggtacgtgagtaaggtaaaacccagttccaacaccaatatccagatggttgttacctaaatgttccagaaagtgtggaagaaggtgttcctttgtaggacatccccatgcaagccgatttgatactcccaaaacccaccagtcataaagctttagggtaagtggtgtgtaaattctagccccatcatctgtgtttttttattaatttcaccatgttatagttttatttgtgaattaaatcaattatggcaatgaattacaaggggttaaatgctgccgcagcatagcgatattgaaatagcctggtatgcttcaatacagcaggagccgaatggctggaagaccgtcaccacacagttctacatccaggaattcagtgagtatattgcgccactgcaggatgctgtagatctggaaatcgcaacggaggaagaaagatcgttgctggaagcctgaaaaaagtatcgggtgctgctaaaccgtgtggacacttccgtagcaccagatatcgagtggcttattcaaccataataaacagtatgtatatcataggttattaattgtgagttttttcggtgtgttatttgtttgtttgatgttatgcttttgcgccccaaaaggttgtttagatgtattttatcaattgattttcaatatcgtttaataaagaaaaattaagcaagctggatgttggttttttgttaattgaatggttctaataatgtttttttactgttgttgaatgtgacttgataagaaatgcaagtaaaaatgatactctttttattttaaattcaaacggttgacatatatatagcaagaggtttcaggtgcgttgtagtgagtttatgttaataaaaagcatagtaagcgttgaaaaatgtaactttgaaataagttagaataaaaaacaacatacatataataatttaatcttaaatgaaatttattaaaatttgcaaactataattttgtgtataaaaatataaatgcacatcatcctgattatgattgtgtatttaattggttgttatttgactactatcaacttgttttaattttatgataggtgcaagatggattatgtttgctccgtagttttcatctgtcaatcatttgatttaattataaacaggagagttatctcgttcaaaaaaaattcattgtttattgtaagcgacaaaattagaagggagttaccagtatgcccctctaaactaagaattgttgatatagataagaaaacatgtttatccttttttatcgacgtgaataatgagctgcctggcaaatttactcttgataagaatggctatattgctgaagaggaacctccattatcgcttgttttttctctgtttgaagggattaaaatagcagactcacactccctttggttaaaagaaagactatgtatatccttacttgccatgttcaaaaaacgcgaaagtgtaaattcatttatactaacaaatataaatacatttacctgtaaaattactggaataatcagttttaatattgagcggcaatggcatttaaaagatattgcggaattgatttatacgagtgaaagtttaataaaaaaaagattaagggatgaaggaacgtcatttactgaaatattgagagatactaggatgaggtatgcaaaaaaactcataacttcaaactcttattctatcaatgtcgtagcccagaaatgtggctataacagtacttcatatttcatatgtgcatttaaagattattatggtgtcacgccatctcattattttgagaaaataatcggcgtcacagatggaataaacaaaacaattgactgataatgtttattacaagttgtctacatgttaattataatattatacagcgttttttttgatgtgatattctggaaccattaatttgtaattgggttgctgtcgcctattttatacatactataattgatggttttctatgtgatttagttaataaccttctgggtttattttaagggttaattgttacattgaaatggctagttattccccggggcgattttcacctcggggaaattttagttggcgttcttaaaatgtgtacttaagaccagcagtagtgatgaagttatagttttctatacctgctccatttttgctgtagtctgaagtgttattattgtgatcataaagtgaagtattaccttttttattcgtaacccgattccatgcgccttcaacataaacttttgcgttaggtgtgacgtaataacctgcattgactgcaacagaatagtaattttggtctttgaccttactgcgataagtgattctttttcccgggtcatagtgttcatcgttatcagatgattccacccagccgctgtatttaaatgtgccaccgagttcaaaatcttcataacgataacttccagtcaagccaatgtagggcattttaaaacgttgtttgtagccgattgctctttctccattcgggaaggagccgatatcatctctgaatccctcctcagaactgtagatataggaaccacctctggctgtaaagctataacggctttcctgatatccggccatgagtcccaggcggtaattgggttcgttgaggagccagcctttgatattcagatcaaattcgttggcataattgagttgtgtatcagggtgtctactttcatccgtccaggttccggggttactggaatccatccagtcctgatcgaccatattgccacctcggctgccgagagttgtccagccagcagccccgatagatatctggggcatcaaatcccaattaattgcacctttaataattgcagcgttattgaatttccagtcgagttgactgacttttcggcctccttcttcggctagataaacacgctcttttgtttttccgctcagagttccaagactaatgtccgcatttatgttgtcaggagtaaacgataaagtctcggtagaagcaaaagagctgatcgcaataggggttgtcaggactattcccagaagtttcgcccgcataaaagttctccattcaatcgttttaatgattgaatatgtattttttatatctaacttaatgagtcaattacatattgctccactgtttatattttgtttagtattgaatgattatcacaatgcgctatctgtttttggtttaattatctgttattgtttcatatttcggttttactgtgtggtttttttatgcttttgtggtgcttttatctatttaagtgccatgcctttagaggcatataagcgaaaatagcatgaggtttatcctcaattactatgttttttagtacaaaaaagagggacaaaactgagacacataaggcctcgcaatggcttgcaaggctttacatgttttgaggtagtgggacgtgtgagcgcagagatggcgcggtaagttgttgacttaaaatgtcgttctaggaacttctaagtcgtgggccgcaggttcgaatcctgcagggcgcgccatttcttcctcatttatgcccgtcttatccgtttccgctttgcccttcaccacatcactttttgtcgctgtttggcgagataattcaacggtgtcaggccgtaaaacgccttaaaaacagagataaagtacgacgtgctgctatagccacataattgcgccacctgagtgatatttttgttatccatcaataacatctgtacggcgtaacgcatacgacactctgtgacaatctggctatagctggtattttcgttttttaatttctttttgagcaggctggggcttaaacatagcgaactggcgacaattcgcagattccagtaatgctgaatatcgctttgaataatgcggcagacgctgtcgcggacgctgctgcgtaagatatacatcagtagggcaataaaccgcgattgctcaagaaagttagacaatacggtaaaaagcaatgcgcgcgtcaactccgcttcgcagggtctgctgggttgctgcttgctgtggttggcggctagccggaacacttccggtgtacggctatgacaagcgataaccggggttgccagccgcgaccagggctttacacaggttaagttcttatttaaaaacaacagataatcgttgatgatgttacggttgatgtgggtgattaatacgtgatttaacgttgagagttcaatgacgttattgttgcacgcgaaggcggccaggtagtttttcggaagggtaaacgtagcatggttattgacgcttacctctacctctttttcggtcaggatcaccacgcaaggttcactgctgctcaattgcatttcgcactcctcagatatcagaaactccgctcaaaggatctatgcttcctgcatgagtgatcggcccgttcgccgataacgatcttctttctttagcacgctttttagcaattaatcttgatggaattctgatgagagcgaaagaggtaagccaggtcgtacccgacttacctggaggagatttaatactcgagaatgccgtgcgcgacgggcaaatagcgcagagagaaatagagagtgtctttaccgcaagaggaacgtttcgctaacagcgaggcaatttctgcgtccggtttcggtttcgctgtaaaggttttgcctttgccggcgacaaaaagttcataaacaacgccgctggcaggggcgggactttggcaatcggcgctggcctgtaaataacgttcacgctgttcagcggtcagtttatccacgccgctgccatcctgtacccagacattaacgccggttgctttaacgtgttccagcagttggcgatagccatcgggcgacatgtttccggcgaaaaaactactgatataaaccggttttgctgaaacatcgctaatcagccgctgcgcgttgtttaaccatgttagcaaaggctgacgggcggcttcgctgcgccagttcaggtcgtcaatttccgcgctgatgtaccagccatccggcgttatgccaggcgcggcgctccataatctggcttgctggagatcggcagccagcaggcgattaagatagctttccagcgctgcggacgactgtttctggtgcataaaaaattccggatcggcgttcagcccgacaataagcttcagaccagcctgttgcgcagctgcggcccgcttaaacaataacgtgcgctgttctggctgggtaaatgcatcgccgtaacgggtccattgcaaaacaagggtatcgaagccttgcaaacgtaactgactcatcagcccctgccactgggtatcggtaacctgactatctcggttttgtggttgccagataatacctttcatcgcaaaggaaaaagggctgaccaaaagcagtgtcagcaatacgaaaatgaacttacgcatttaccagtgcactccaatggtgagaaacgcgttgttgcgctctccgttacgttgattaatcgccttaaaggtatgttgatactcgacgccgagactgactttgtgcggccaggcgtcgtagtgcgtctcgccggtccagatattccagcggaccccgactccgccaagctgcgcgccctgagtgcctttatcacgatagccgttgtcctgaacgtgagcgtaaggctcaatagtctgtccgttagctaccttctgatgccagctgacgcgataatctgccgtccacgcctgaatatcctggcggatatattgcgccgcatcgaggtacaggttttgggcaaaccagcctgaaccgttcgggtgccattcgtcgctgtatttgccgccattaaagaatgaggcgctggcgcgcagcatggtatcggatgcgccattttggccgttcagcggcaactgctgttcgacggcgatgaaaaagatctgatcgcgcagcggcttccagcgcagaccggtgccggacatcggatttttcaccggcatcatcaccccgttttctccggtatcggcaaagacgcggctataaactgagagcaggtcgccttccagcagcatattgcgtccgatgcggtactcggcttccagttgtccgtagctacgatagcttttccctggcgctgcgccgccgacattattgttagcggtactcattgcgccggaacgcaagccgatggaagaatcgaaactgaacgtccagcggcgaccgacctcctcatgcaaacggcggaaattgaagcgttgttgattttgttctggggtcagtggggttatcagcgcctgattatcaatgtcatcaatcaccagccgggcgtagtgctgcgtcgcaggcatgtcatccagacgctggttcacgtaggccagttgtcggatcagtgccggatcgtccggaagccctttatgcgccggttcgagcatttcccgcgactgtgcgatatcaccgctatcccacaaggcgtaaccaagcgctgcctgggtgttgctattattcggttccagttccagcgcggcgcgcaaatcactcaccgcggccgggacattatgacgttggcgataaattgtcgcccgcgcaacgtaagcgttggcagaaggcgcaatattgattgagcgcgtgagatcgttcagtgcgagttccggctgaccaggaatgtaacgttgcgcatgcagccaccagtagagggcattgcttcccagtccacgtttttctgcctgttgtagccagcgatcgcgagccgcaccatttcctgccgcctgggcggtattggcagcagcaagcagatcctcattgctcatgtcgtgaagactgattttctgccaggccgccagtgcggtggcgtagtcctcaacctgatacgcctgataggctaccgcacgatgttgccaggcgctcggttgtcgttgttcggcctgaagccatgcatacaacgccacaccgggtagcgtgtcccgataacactttgccagacggttccaggcggcggcatcgtaggaaggcgacatatcgcccagcaagcgaactattgccgggcaattatctgcaatacccggcaactgactttgccactgacgttgctccgccagcggtaagggtttcgataaaatcgccaccttcgccggcgttgccaggtaaggatgactttccagcagagacgccagtcgcgccattaaagtctggctgacacgcgcatcgccctggaaaggatagcgttgcagcaataaatcggcagcttcgcgtgactgctcgttctgcatcagttgccaggttagttgatccaggcgggtaagatttgccggttcttgctgatacagcaatcgtgccagacgcagagcttcagccttgttacgggtcgccacgctgacagcataacgctcctcaagcatttcattggcggggagggtggcgagcagtttttgcgctgcgtcgtactgaccttcttttaacagcaccggtagcgtcgcgccaacaacatactggcggttgtcggcaaactgtaccgtataattcgccaacgcctgaacggggttagcgctgtatttagataacagatagagccaacttttctcttgtgcgtccgtggtaaatagtggcttattttcaatgagataatgctggaggcgtgctttttcgccacgataagccagcgcggtcgcgtaagtaatatatgactgaggatcggtgaagatcccctgtgattgcagtgccaggatccgatcgtccagctgcccggcaagaagcacgtcaaaccactgacggcgttctgccgcgcttaatgtgttctgctggcgtgcttcattgtatagcgtatctgcctgggaccattgtttcaggtagattgcccgttgcagcagatcggttcgcagcgtttttccttccggcgatgcagcaaacgtcgcatcgttcagttgcgctctggcgacaggtaactgtgccagccgcagggcattctgcccgacttcactgcgacaacgcagggtcggcgcagcatcgcacgctttttgctgggcaagcagttcttcaactgtcgtaacgcttttcacttcaaccggaatagccgccagactgcgctcaagtcgggcatctcctgggtgacgtttcagttgatcctcaagcaacagccgcgcccggtcatcatgaccaaaatggcgataggcttccgcaaggtataaagtcagcggaatattatccggcacctgctggtgtatatattcaaattcgcggatggcggttgcttcgtcgttatttttctgtgccttcagcgctttatcgagacggggataaataacaaaatggcgataatcgctcagccccagctcttctgcgctggtgccgatattgtctgcgagtgcgctggtactcaataaagacgtcagcagtaaaccagaccatccgatgacgcgattaaggttattctccttcattttcggactccagttgcgcaacctgttctgtgtttaaacctgctttgagtaatagtgattgcatcgaaacttgtaattcgcgttgaattgtcaggacgcgatccaacgtttcctggctgataacgccttcggtgaccaaaaacttgccgagcggcagagaactgcgttcatggcgcaataacaacacgttaattgctgaacgattaatatgaccgagcgtggtcagtatttcggcgaacaggaactgatgcggcacatattgccgccagatttcaccggcctgctgttccgtgagccactgatgctgaaccgcattgtacaacattgcccgcggatcgtgaccgcgtcggcgtgcataccagtgacgtaaccctgtgacaatttgtccccgcagaacaatgacgtaacgcactttgcgtccgactttacgcgtcagggccgccagcgaaaccgggtcaataccatcttcactgccgacaattaactcgtcattttccagacgcagcggcagtaccgcataatgcagcgccacggaggccggcatttcggcaatcagcgaggaagggatctgccaggcatcgatggattcccacgccacgccgttttgctctgccagcgcctgtgccagctgctcggcgctaatcagcccctgcatcagcattgaaccgcccaggcgtagaccttcgacgcgattacgcagtgctgtatcgagttgttcttcagtgatgacctgattttccagcagaatttgacctaacgggcgcaacgagcgggtatcgccagtcacgctggggaagtcatgcgttgttttatcccacgccacgcgacgtggatcgccgtgttgaagtacctgttttagcgcgcgccagttggccatgaagttaatcaggttgccccagaaaagacgcaggacggaaagcagcccctgcgtcaggccgtagtagccagtaacgaaaatcacccgctgcacgatgcggttaaccatcaaaccaaagtttagccacagcagggtcattaaccatgcgctgccgctgaaaatagaaaggaaatgccaggcatcgggccacaaactttcatacgccagcaacagcaaaagctggatcatcaccagcatcgcgaggaagctgacaaagttactgattgcccctttgcggtcgcgccagagaaagtagttcagcgtcaggctggaggtccatttatgggttttaaagccttggaaaacaatgccgatgatccagcgggatttttgtcgaaccgcagtcgaaaaggtatcggggaaatattcgcgcacgcagatcatgtttgatgtccgcgcgtgctgtaaaaatttacgctgctcgcgttctttggcttcgtccaccaccggaaaacggacaaaaatttccgtcatacctttttctttcaggcggaagccaatgtcgtaatcttcagtaagactctgcacgtcgaaagcaataccgtcaccgtcagctaacagtgcggtcacggcgcggcggctgaaacaggtgccgacgcctgcgctgggcacttgtccggcgagggcttcacgcaccggaacatctttgccatgcagctctgaaaactcatcaatgtaagtcatgctggtgaagtgcgtccattcgcgttcgaacggatacaccgggatctgaatcagatctttacgctcgaccagatagttgaacagacgcaattccatcggtgaaatcacatcttcggcgtcatgcagaataaaaccagcaaaagcgaaattggcgctacgctcaaattgggtgatggcgtccagcacgttgttcagacagtcggctttgctggtggggccaggacgcgcgcagactaccttatgcacattcgggaagcgagcgcacacttcgtcaacatcacgctgagtatcggggtcgttggggtaggtgccaacaaagatatgatagttttcgtagtcgagcgtggtcgccgccagctcggccatattgccgatgacgcccgtttcattccacgccggaaccataatcgctaacggtttttcatctggtttatacagttcgcggtaactcattcgcgggtagcggcgataaacactcaacttgcgtttaatgcggcgtacccagtagacgacatcaataaaaaaatcgtccagcccgctgatgaacatgatgaccgctaacgttatcgcgattacttttaagccgtagagccaggtagcaaaaacatcaagaagccagtccacacaaaaaccttacattaacgctggttatgtttagggtggcgtatattaaggttttttatgaattgtgacagctttttaccattaataggtatgactattgcggcacgttatttttacactggttataaaagttgccgtttgctgaaggattaagcgggtaatgtgataacaaaccttgtcccccgcgcatccgacgttaccgcaaccgtgcctttatgcgcgacaacaatcgatttcactatcgccaggccaataccgctaccttcaccttttcgctggcgggaggggtcaacgcgatagaaacggtcaaacaatcgcggtaagtgctcgggcgcaatgggcgtaccggggttttcgacgataacttgcaccaggtgatcgaccgtctgacagcgcactacaattgtctctccggttggcgtataacgcagggcgttcgaaagcaggttgcttagcgcccgacgcagcatcagcggatcgcccgcgacctgacacttgtcgccaacaaaccgcaactccacgccgcgatcttccgctaacgcctcgaaaaaatcgaacactttgccgacttcatccgccaggttgagcattttcttttcggggattagctggttgttatcggcctgagcgagaaacagcatatcgctgaccattttcgccattcgcgtcagctcttcgagattagagtagagcacatcttccagctccttctggctgcgcgactggctgagggcgatttcggtttgcgttatgagattcgtaattggtgtgcgaatttcgtgagcgatatccgctgagaaattggactggcgggtaaagacatcctcaatacgctcgatcatatggttgaacgacagtaccagctgttccagctcaatgggcacggtctgcgggtcgaggcgaacgtcgagatctttcgaggtaatattctggatttgacggctgacgctgcggatcggcgcgtgacctttatgtaccgccaacagtacgataaagacgatcaggatgctgattaccgatgcggtcataataagtttattcatcaaatcatttatgtaatgaagatgaaaatcgatcgaaagcgcgatgtagagcgtataaatcggtttgccgtccaccaacgggccaaccggcaagttaatcatccgccagttgctgtgttccatatgcccgtgaccgtggcctggcatcatcatcgtcgggccggaaaggagatacacctcgccaccctgagcgtctttatcgggtatggcgtcacgcgtaaactcgcggatatccggcgcaccgggggagtgatacaccgttttaccctgactatctgccagggaaatcaacacattggaataaccactgacgatatcttccagcgtcattaagcgtcgggcttgcgtttcgtcagggtgatttagtacccgttcaagggtggcgctaatctcttttaaatcattaatatcctgctcggcaaaatgaacttttactgagtggatcatgatccatgcaaaggcgaaaaacgccgcgatggtggccaggctgataaaaaaggtcaggcgggttgccagcgaaaacgggcgctgaaatggcttactgaccatccggcacctcaagcatgtaacccacgccgcgcacggtctgaattagcttcggctcaaagtcgttgtcgattttgccgcgcagccgcttcaccgccacatcaatagcattggtatcgctgtcaaaattcatgtcccatacctgcgaggcgataagcgagcggggcagcacttcgccctgatggcgaaggaagaactccagcagagtaaactctttactggtcaaagtgatgcgcgtgccgctgcgggtgactttgcggctgacgagatcgaccatcaaatcggcaacctgaaactgactttcgataatcaccgccgccccgcgccgcagtaatgtgcgcacccgcgccagcagttcagcaaaagcgaatggcttcaccaggtagtcatctgcccccaactccagccccttgacgcgatgttcaatggtgccaagcgcggtaagcaacagaatcggcatccctttattggcggagcgtaacatgcgcacgatatcccagccgttcacgtccggcagcataatatcgaggattatcagatcataatcaccggtcatcgccagatggtagccattcagcccgttgtcggccaaatcgaccacaaaaccggcttcggttaaccctttggtcaagtattctccggttttcttttcatcttcgacaatcaacagtttcatatttcctccgcatgttgcccgggcaattctagagtagcgggatcagatggcaatcgcttattggcaaaatgacaattttgtcatttttctgtcaccggaaaatcagagcctggcgagtaaagttggcggcataaaatcaccagaaattatgagcctatgtctccttgtaaacttctgccattttgtgtggcccttgcgctaaccggttgttcactggcaccggattatcagcgtccggcaatgcccgtgccgcagcagttctcactcagccagaacggcctggttaacgcagcagataactatcagaacgcgggctggcgcaccttttttgttgataatcaggtgaagacgctgattagcgaggcgctggtgaataatcgggatttgcgcatggcgacgctgaaagtgcaggaggcacgggcgcaatatcgtctgaccgatgccgaccgctacccacagctcaatggcgagggcagcggcagctggagcggtaatcttaaagggaataccgccacgacacgggagttttcgaccggccttaacgccagctttgacctcgattttttcggtcgcttaaagaacatgagcgaagccgagcgacaaaattatttagccactgaggaagctcagcgcgcggtgcatattctgctggtttctaatgtcgcgcaaagctatttcaatcagcaactggcgtatgcgcaattgcaaatagccgaagaaacgctgcgtaattatcagcagtcatatgcgtttgtcgaaaaacaactgttgacaggtagcagtaatgttctggcgctggaacaggctcgcggggtgatagaaagtacccgcagcgacatcgctaaacgtcagggggaactggcgcaggcgaataatgcattgcaactgttgctgggaagctacggcaagctgccgcaagcgcagacagtaaacagcgacagcctgcaaagcgttaaattaccggcgggattgtcgtcgcaaatcttattgcagcgcccggatattatggaagctgaacacgcgttaatggcggctaatgccaatattggcgctgcacgcgcggcattttttccgtctataagcctgaccagcggaatatcgaccgccagtagcgatctatcgtcattatttaacgccagcagcgggatgtggaattttatacccaaaattgagatccccatttttaatgccggacgcaaccaggccaatctggatatcgccgaaattcgccagcagcagtcggtggtgaattatgaacagaaaatccagaacgcctttaaagaagtggcagatgcgctggcattacgtcaaagcctgaacgatcaaattagcgcccagcagcgttatctggcatcgctgcaaattactttgcaacgggcgcgggcattatatcagcacggcgcagtaagttatctggaagtgctggatgccgagcgttctttatttgcaacccgacaaactttacttgatctgaattatgcccgtcaggttaacgaaatttctttgtataccgcacttggtggcggttgacagcaatatactcgtcatacttcaagttgcatgtgctgcgtctgcgttcgctcaccccagtcacttacttatgtaagctcctggggattcactcgcttgtcgccttcctgcaactcgaattatttagagtatgacttttaactccaggagagaataaatgaaaaaagcactgcaagtcgcaatgttcagtctgtttaccgttattggctttaatgcccaggctaacgaacatcatcatgaaaccatgagcgaagcacaaccacaggttattagcgccactggcgtggtaaagggtatcgatctggaaagcaaaaaaatcaccatccatcacgatccgattgctgccgtgaactggccggagatgaccatgcgctttaccatcaccccgcagacgaaaatgagtgaaattaaaaccggcgacaaagtggcgtttaattttgtccagcagggcaacctttctttattacaggatattaaagtcagccagtaacccaggtttaatgagatgaaaaaaatcgcgcttattatcggcagcatgatcgcgggcggtattatttctgcggcaggttttacctgggttgcaaaggcggaaccgcctgcagaaaaaacgtcgaccgcagaacgtaaaatcttattctggtacgacccaatgtatcccaatacgcggttcgataaaccaggtaaatcgccgtttatggatatggatctggtgccgaaatatgccgatgaagagagttctgcgtctggtgtgcgcattgacccgactcagacgcagaatctgggggtgaaaacggctaccgtcacgcgcggaccgctgacttttgcccagagtttcccggcgaatgtcagttacaacgagtatcagtatgccattgtgcaggctcgcgctgccgggtttatcgacaaggtgtatccgcttaccgtgggcgataaagtacaaaagggcacaccgcttctcgacctgaccattcctgactgggtggaagcgcagagtgagtatttactgctgcgcgaaaccggcggtacggcgacccagactgaaggcattcttgagcggctgcgactggcgggaatgccggaggcggatattcgccgcctgatcgccacgcaaaaaatccagactcgctttacgctcaaagcgcccattgatggcgtgatcaccgcgtttgatctgcgcgcgggaatgaatatcgccaaagataacgtggtagcgaaaattcagggtatggacccggtgtgggtcactgctgcgatcccggagtctatcgcctggctggtgaaagatgcctcgcagtttaccctcaccgttccggcgcgaccggataaaacactcaccatccgcaaatggacgctgctacctggcgtggatgccgcgacccgcacgctgcagctgcgtctggaagtcgacaacgccgacgaggcgctaaaaccgggcatgaacgcctggttgcaactcaacaccgccagcgaaccgatgctgctcattccgtcacaagcgctgattgataccggcagcgaacagcgggtgattaccgttgatgccgacgggcgctttgtaccgaaacgcgttgctgttttccaggcatcgcaaggcgtcaccgcattacgctctggtctggcggaaggtgaaaaggtggtttccagcggcctgttcctgattgattccgaagccaatatttctggcgcactggagcggatgcgctctgaaagtgctacccatgcgcattgagggaataaccaatgattgaatggattattcgtcgctcggtggcgaaccgttttttggtgctgatgggcgcgttgtttctgagcatctggggcacctggaccatcattaatacgccagtggatgcgctgccggatctctccgatgtgcaggttattattaaaaccagctatcccggtcaggcaccacaaatcgttgaaaatcaggtgacttatccgctaaccaccaccatgttgtcggtgcctggcgcgaagactgtgcgcggtttctcacagtttggcgactcttatgtgtatgtcattttcgaagatggcaccgatccgtactgggcgcgttcgcgggtgctggagtacctcaaccaggtacagggtaagctgcctgcgggagtcagcgccgagctggggccagatgccacgggtgttggctggatctatgaatatgcactggtggatcgcagcggtaagcacgatctggccgatttacgctcattacaggactggtttctcaaatatgagctgaaaaccatccctgacgttgcggaagtggcgtcggtgggcggtgtggtgaaagagtatcaggtggttatcgatccccagcgcctggcgcagtatggcatcagtctcgccgaagtaaaaagcgcgctggatgcttcaaaccaggaagcgggcggttcgtcgatcgaactggcggaagcggaatatatggtgcgcgccagcggctatctgcaaacgctcgacgactttaatcacatcgttttaaaagccagtgaaaatggcgtgcccgtttatctgcgcgatgttgcgaaggtccagattggcccggagatgcgccggggcattgccgaactaaacggcgaaggcgaagtggcgggcggggtggtgatcctgcgatccggcaaaaacgcccgagaagtgatcgccgccgtgaaggacaaactggaaacgctgaaaagtagtctgccggaaggcgtggagatagttacaacatacgatcgcagccagctcattgaccgcgccatcgacaacctcagcggcaagttgctggaagagtttattgtggtggcggtagtctgtgcgctgtttctctggcatgtgcgctcggcgctggtggcgattatttcgttgccgctggggttgtgtattgcttttattgtcatgcacttccagggactgaatgccaatattatgtcgttgggtggcattgcgattgccgtcggggcgatggtcgatgctgctatcgtcatgatcgagaatgcgcataaacggctggaagagtggcagcaccagcatcctgacgccacgctggataataaaacgcgctggcaggtgatcaccgatgcgtctgttgaagtggggccggcgctatttatcagtctgctgattatcacgttgtcgtttatcccgatcttcaccctggaagggcaggaagggcgtctgtttggcccgttggcgttcaccaaaacgtatgcgatggcgggtgcggcgctgctggcgatcgtagtgatcccgatcctgatgggctactggatccgtggcaaaattccgccggaaagcagtaacccgctcaatcgctttttgattcgtgtttatcatccgctgttgctgaaagtactgcactggccgaaaaccacgctgctggtggcggcgctttcggtgctgacggttctctggccgctcaataaagttggcggggaatttttaccgcagatcaatgaaggcgacttgttgtatatgccatcgacgctgccggggatttccgcagcagaggcggcgagtatgctgcaaaaaaccgacaagctaattatgagcgtacctgaagtggcgcgggtatttggcaaaaccgggaaagcggaaaccgccaccgattctgctccgctggagatggtagaaacgaccatccagcttaagccgcaggagcagtggcggccaggcatgacgatggacaaaatcattgaggaactggataacaccgtgcggctgccggggctggcgaatctgtgggtgccgccaattcgtaaccgtatcgatatgctctcaaccggcattaaaagccccatcggcattaaagtttccggcactgtgctggcggatatcgacgcgatggctgagcaaattgaagaagtagcgcgaacggtgccaggcgtagcttctgcgcttgccgagcggctggaaggtgggcgctatatcaacgttgagattaaccgtgaaaaagccgcacgttacggtatgacggtggcggatgtgcagttgtttgtgacttctgcggtgggcggggcgatggttggcgaaacggtggaagggattgcccgttatccaattaatctgcgttatccgcaaagctggcgcgatagtccgcaggcactgcgccagctgccgatcctgacgccgatgaagcagcaaatcaccctggcagacgtggccgacattaaagtctctaccggaccgtcgatgctgaaaaccgagaatgcgcgcccgacgagctggatttatatcgatgcccgcgatcgtgacatggtgtcggtggttcacgatttgcaaaaagcgatagctgaaaaagtgcagttaaaaccgggcaccagcgtggcattctccgggcagttcgagctactggagcgcgccaaccataagcttaaactcatggtgccgatgacgttgatgattatcttcgtgctgttgtatctggcgttccgtcgggtgggcgaagcgttgctgattatcagcagcgtaccgtttgcgctggtgggcggcatctggttgctgtggtggatgggctttcatctttccgtggcgacgggcactggctttatcgccctcgccggggtcgccgccgaatttggcgtggtgatgctgatgtatttacgtcacgccatagaggccgtgccgtcgttgaataatccacaaacattcagcgagcagaagctggatgaggcgttatatcacggcgcggtcctgcgcgtgcgcccgaaagcgatgacggtggcggtgattatcgccggtctgctgccgattctgtggggaacgggggctggttcagaggtgatgagccggattgccgcgccgatgattggcggcatgatcaccgcacctttgctgtcgctgtttattatcccggcggcgtataagctgatgtggctgcaccgacatcgggtacggaaataaaagcaggataccccgtttaaccgtgtggattgtgtcttgcgacgatgggcactaaatgttaaaaggtgcccctcaacaaaaaagacacacaggggaaaggcgtgaaaaacgcgtcaaccgtatcggaagatactgcgtcgaatcaagagccgacgcttcatcgcggattacataaccgtcatattcaactgattgcgttgggtggcgcaattggtactggtctgtttcttggcattggcccggcgattcagatggcgggtccggctgtattgctgggctacggcgtcgccgggatcatcgctttcctgattatgcgccagcttggcgaaatggtggttgaggagccggtatccggttcatttgcccactttgcctataaatactggggaccgtttgcgggcttcctctctggctggaactactgggtaatgttcgtgctggtgggaatggcagagctgaccgctgcgggcatctatatgcagtactggttcccggatgttccaacgtggatttgggctgccgccttctttattatcatcaacgccgttaacctggtgaacgtgcgcttatatggcgaaaccgagttctggtttgcgttgattaaagtgctggcaatcatcggtatgatcggctttggcctgtggctgctgttttctggtcacggcggcgagaaagccagtatcgacaacctctggcgctacggtggtttcttcgccaccggctggaatgggctgattttgtcgctggcggtaattatgttctccttcggcggtctggagctgattgggattactgccgctgaagcgcgcgatccggaaaaaagcattccaaaagcggtaaatcaggtggtgtatcgcatcctgctgttttacatcggttcactggtggttttactggcgctctatccgtgggtggaagtgaaatccaacagtagcccgtttgtgatgattttccataatctcgacagcaacgtggtagcttctgcgctgaacttcgtcattctggtagcatcgctgtcagtgtataacagcggggtttactctaacagccgcatgctgtttggcctttctgtgcagggtaatgcgccgaagtttttgactcgcgtcagccgtcgcggtgtgccgattaactcgctgatgctttccggagcgatcacttcgctggtggtgttaatcaactatctgctgccgcaaaaagcgtttggtctgctgatggcgctggtggtagcaacgctgctgttgaactggattatgatctgtctggcgcatctgcgttttcgtgcagcgatgcgacgtcaggggcgtgaaacacagtttaaggcgctgctctatccgttcggcaactatctctgcattgccttcctcggcatgattttgctgctgatgtgcacgatggatgatatgcgcttgtcagcgatcctgctgccggtgtggattgtattcctgtttatggcatttaaaacgctgcgtcggaaataaggcattcacgctacatccgacaaaacgatgtcaaccatccgaaaccgctctcatccattcgatgagagcggtttttttaattactgcttaaatgcacccgccagagagcgaatatcattgccggttggcgactgatgaagtcgcagaccaaactcttcgacaatcgcaaatatgtgatcgaatatatcagcctgaatgctttcatattccagccacaccacggtgttagtaaacgcgtagatctcgagcggtaaaccgttatcacctggagccagttggcgtaccattaaggtcatatctttacgaatccgcggatggttacgcagatattcgttcagataggcacgaaaggttccaatattggtcattcggcgcagatttaataccgactccgtagaaccttgctggcgattccactcattaatttcctgatggcggctggttaaataaggctttaacaaatgcgctttattcagacgttgcatttcgtcttcatcaagaaaacgaatactggtgacatcaatactgatactgcgcttaatacgtcgcccgccagatgctgacatcccgctccagtttttaaaggagtcagaaaccagagaccaggtgggaatagtggtaatggtattgtcccagttacgcactttgacggtggttaacccaatatcgatcaccgcgccatccgcgccgtatttcggcatctccagccagtcgcccagtttcagcatatcgttcgcggaaagctgaatacctgccaccagaccaagaatcggatctttaaataccaacatcagcacggcagccattgcaccaagaccgctgatcagaatcgctggcgactgaccaatcagcagcgagatcatcaaaatgccgaccagaatcgcgccgatcagtttaatcccctgaaatatccctttcagcggtaactgagatgctgccgggaatttctgcgccagattcaaaataacatccagcaacgagaagactgaaagcagcgcatacatcatgatccacaactgcgcgcaggtagtcagaatatctgccgcttcggtgcctttttgcagccagaataccgcctgaatattgacgataatcccctgcagggtaaaagctaaacggtggaagagtttattctgggtaatgatttgcaaccaaagccgtgaactggcgatggcacgtttttcgaaggtccgcagtaccacccaatgcaaaataatatgcaccacgacggcggtcagaaaaataataccgaaaatcatcaccatcgaggtggtgtgatcgatctcaatacccgctaaatcttcaacctgggatattaaatcctgcataacgtctcctttatacaacagcagcctatgatgacggctgaaacagggttatgcaaatcaggagaatctgagaggaaatagccgggcagatgcccggcaagagagaattacacttcggttaaggtgatgttttgcggcagacgagatttcggcagcgtagcgttaaaatcttcaacgctgtgatgacctaccggaacaaccaccagactggtgtagcctttctctttcagaccaaattctgcatcgaggatggcggcgtcaaaaccttcgatgggtaccgcgtccagacccagagccgccacgccgagcaggaagttaccgacgttgagataaacctgttttgccatccactctgcatcatcatgcagatctttacggtgcatatcagcgaagaacttgcgacctttatcgttcgcggctttcgcttccggcgtggcaaagcggccatcggcatcttcctggtcaacaaccagcttcagccagacatcgtccatcgcggtttttgcacagaacaccacgacgtgcgaggcatcaagcattttacgctcgttgaacacgtaattaccggcagcggatttggcaacacgcgctttaccttcttccgtgctggcaacaataaaatgccacggctgggagttggtgctggatgggctgtattgcagtagcgttttgatctgctcggcctgttccggggtaagttttttgctggcatcaaatgccttagtggaatgacgctttaaggcgacagaaatgatatccataaagactccatgtgaaagtaattttgcgtgccagcagattacaaggttcaacgagaaatggtaagcgagaaaaatgcgctatagatttccgctttagcctggacgcactcttttttgatcgcgtttagccagaccatcaaccaccagattccacgaatcgttgatcagatcgcgaagtaacgcttcggagatttcttcgccgggatacactgaaatccagtgctttttattcatgtgataccctggcttaatgcttgggtatatttgctgatttaacagggatttttgtggatcggacttcagattgataaaggggacgccgcgtagctccgacgacagcataaaaatcttgccgccaattttaaaaacatcgaactccgggccaaaaggccagcaaagctcgacaaagggtaactcaagggccaggcgtttcgccgtttcgtgcagtgattgcttatccataaacgttcctttaggcgaaggagaataagcaaagtatgccgcgaagtacggcgataatcgacgtttaatccgccagcgagaaccagcgtcgccagataaagcgcagaacaaaatactcaatagcgcccagcactaaaaaccacagacaaaacaataaagtgtaaagctgactaagatccatcagatggaacatggtcaccagtttttgtgccagcgccagccccagtgcgggggcgggcagcagcaggcaagagaggaaagccatcagcaaaatgcctgctgcggtggtcaaggtttctaaagggtgtttcataacattgttaaatgtaagttaaaacaccattgtcagggatattcttctgtaaggcaattcccggcttagtcaccggcccagatctcacaatgctttttcaccagcccaatcagcgagccgccatcggcgacgaaatcgcgcattagctgcgcttcattcagaccgctgacgacctggcgatgcagggcctcaatcgcgctcgatgcaccaattttatgtgcggaaggggcgattttttccagcaatcgcaaggtatcttccgttagcggtcgacgatctccagtgtgcggatcggtgatgacgccttcaagcccatagcgacaggcctggaaacggttgaatttatacagcaggtaatctttttcctgatgtttaaacgggcgttccgtcagtaaccagtgggcggtagcctgaattaatcccgccatatttactgcgtggctaagggttaacggggtatccatcacccgaacctccaccgtgccaaaatgaggactggggcgaatatcccagtgcagatctttaatgctgtcgatcatcgtggtgtaactcagacagcgaaacagggcttcaaattgttgccagttactgacccacggcatcgggccattatcaggaaaggcggaaaaaatattcggtcgtgaggaggcaaaacgcgtatccgttccctgcatatatggcgacgcggcggaaagggcgataaagtgcggcacaaatcgtgacaagccgtgcagcaaataaatggcgtcatcgccactggcgcagccaacatggacatgctgaccaaaaacggtcgcctgctgaatgagataaccaaagttttccagcgtgcgttgatagcgttcgttatcgcatacctcctgacgctgccatttctgaaacgggtgcgtgccaccgccgcaaatttccagatgatggtctgtggctgcctgcaatacgactttctgcatcgctgaaaactgcccggcagcctggttgatatcacggcaaacatccgtcgccagctccagcatactttcggtgatatcgtgctttacctctccggccgtgatcttatttttaaccgcgtcaatcagcattgaagagtcctggcttaagtcatagcccggcggattaaccacctgcatttccagttcaataccgagggtaaaaggttcagaaacatgaaaatcgggtaatggcataggtttctcttatgttggcgttttctattcagtatagaagtcggagcggctgggcgagatgcggaagttctggaatgtttcttttttttggtgatggtgaactgatggtgcctgaagcaatttggctacttttgcaatgtgacaagttatggcagtgctgactggtggcgaagaattttgacgattgagtcatgcagaaaaaaacgggttcagcttcagttgattaaatgaggagtgagaagtccgaaacaggactcactgtataaataaacagctattttgttgaggaagggtaagataacggcgggtgcctgaagctttccggtttcaggtttactctgaggtctggaaagatgaagccccaggagatatttctatcaaccctggggctgccactccaaacccgaacaatttggatggtagtcccttcttcgcatggaggcaatataaacatgctgacgaaatatgcccttgcggcagtcatagtgctgtgtttaacggtgctgggatttacgcttctggtcggagactcgctgtgtgagtttacggtgaaggaacgtaatattgagtttaaggctgttctcgcttacgaaccgaagaagtagccgttgtgcggggagtaatcccataagcgctaacttaagggttgtggtattacgcctgatatgatttaacgtgccgatgaattactctcacgataactggtcagcaattctggcccatattggtaagcccgaagaactggatacttcggcacgtaatgccggggctctaacccgccgccgcgaaattcgtgatgctgcaactctgctacgtctggggctggcttacggccccggggggatgtcattacgtgaagtcactgcatgggctcagctccatgacgttgcaacattatctgacgtggctctcctgaagcggctgcggaatgccgccgactggtttggcatacttgccgcacaaacacttgctgtacgcgccgcagttacgggttgtacaagcggaaagagattgcgtcttgtcgatggaacagcaatcagtgcgcccgggggcggcagcgctgaatggcgactacatatgggatatgatcctcatacctgtcagttcactgattttgagctaaccgacagcagagacgctgaacggctggaccgatttgcgcaaacggcagacgagatacgcattgctgaccggggattcggttcgcgtcccgaatgtatccgctcacttgcttttggagaagctgattatatcgtccgggttcactggcgaggattgcgctggttaactgcagaaggaatgcgctttgacatgatgggttttctgcgcgggctggattgcggtaagaacggtgaaaccactgtaatgataggcaattcaggtaataaaaaagccggagctccctttccggcacgtctcattgccgtatcacttcctcccgaaaaagcattaatcagtaaaacccgactgctcagcgagaatcgtcgaaaaggacgagtagttcaggcggaaacgctggaagcagcgggccatgtgctattgctaacatcattaccggaagatgaatattcagcagagcaagtggctgattgttaccgtctgcgatggcaaattgaactggcttttaagcggctcaaaagtttgctgcacctggatgctttgcgtgcaaaggaacctgaactcgcgaaagcgtggatatttgctaatctactcgccgcatttttaattgacgacataatccagccatcgctggatttcccccccagaagtgccggatccgaaaagaagaactaactcgttgtggagaataacaaaaatggtcatctggagcttacaggtggccattcgtgggacagtatccctgacagcctacaaaacgcaattgaagaacgcgaggcatcgtcttaacgaggcaccgaggcgtcgcattcttcagatggttcaacccttaagttagcgcttatgggagtaatccccgcatatccggttgtcaggtcaggatggtaaggcacctgctttacactttcgcccgtggtcagtgatggctgcgggcgaatcgtaccagatgttgtcaattaatcgtgttggcacagcgttatgactatcttttcttttatctgccagtgcacagcaaacatctcattctcacgatgaatgatgacctgctgtttattccagctaattatctgatagtccagaaaacctgcatcagtttggatctcacttgccttaaatgcgctctctttggcggaaaatgccagtgtcagcgccagagaaaaggctaaaccgcagtctgcgagtcgctcgtgttccgctggtgtaataatgttgtctgtcaattctcttgcggtttgtacagaaaaaatttcttctatatcaatgccaatcggttgacgagataccacggctaatgccgtagtcccacagtggctaatactgccgtatacctccgcaggccagacaggttggcgtagctcgccgattgcgggcacacatttatagccatattcccgcaaagcataaacagcagcgatccgtccggctaaatgctctgttttacgtttacgtccagcgtgttgcagttgtgcgtagtgcggcagccagagtaaatcctgctcacaaaaattcgccggatcgaactcaacaaaatgcagcgtatgtccggcaaaggggagggaggtatgcgtagttttcatatcgaccatattcgagactgatgacaaacgcaaaactgcctgatgcgctacgcttatcaggcctacatggtcctgcaatatattgaattggcaagatttttgtaggccggataaggcgttcacgccgcatccggcatgaacgacgcgcactttgtcaacaatctgacgttagcatcagaagtgggtgtttacgctcatataccacgtacgtcccggctcgttataggtatacgccccggcaccggcgatatagttggcccctgccaaatcgcccgtggtctgggcattacccgcacgccacaaacgtttgtcgaacagattgtccacgccgccggtcagactgacattcttcgtcacatcccaggtcgcgctcaggccaacaatgctgtaaggactaatttctttggtttccggtccaaccgctggctgacctttatagttgtacttcttcggctgctgcttgccgtaccaggtgaaggtcgtttgcatcgacaaatcttcccgtgcctgccagctcagcgttgagttcaacgtatactccgggatgatcgacaaacggtcgcccgtggttttgttttcactcttcagcatataagtgatgttattggtccacatcaccgtttcgctaaccggtacgtttaacgatccttccagaccttcaaccaccgctttcggcacgttatcccactgatagagatcggtgccgactgcgttttgccctacagccacatagcccgcttcaatcttattgcgataatcgttacggaaccaggtgacgcccgccagccacccgtcgcgtttgaactccagaccaatctctttgttgatgctggtttctgctttcaggtcatcgttaccttgcagatagcagccgcccgcgctggcatagcaaccctgacctttactgtagagaatgtagttcgggttagtctggtacaggctcggcgctttataagcacgggcgatgcccattttcagcgtgaagtcatcgcctaaaccttgcgatatgttcagcgccgggctccagttattgccgacaatactgtgatgatcgaaacgcagccccggcgttacgatggtgctgtcagtcagctccatgttgttttcggcaaacagcgagaaaatttctgcttttgaatacgggctacggtcggtggtactcacgccatcaatagcgccaccggtattcgttccggtcagtgcctgggtgttggaacttaagtccttcatccgttgctgattccactccgtacccagcgtcagcgtctggttaacgaggaaatcaatcggcaggttaacttcgctgtgcagcatcacgtcatcaagatcgatatcgacgaaatcctgtgtcgctttttcgttaaatttcccttcggtaccgcccgccagaccttccggaatacgcgagttacgggtgtgttcgtactgcacccagttgctggtggtcacgccgttatcccagccaccgttccaggtcagcgcgtagttctggcgatacagacggttggtttcatcgccatatttcgagcgggtataggaatcggagttggtattctgggtgtcgcccgcatacaggttaccctggcggctgtaacctgcttccagttccagcgattgcaatggcgcgaaatcccagcgcaccacgccattaatatctttgttgattaccccttcgcgcccggctggtaacgtcgtggcatacgttccggcacgcgcggactgatggccctggttgatatcccacgcgtcagcctgggttttgtcgaggttgccatacaaacggaagctgaattcgtcgcccagcggaccggtcaggctaaagttagtgcgtttggtggcaccttcctctttatgttctggcgcattgaaatatgcgtcccaggagccgtgccactcgccgctgccttttttggtaatgatgttaaccacgccgcccgccgcgccgttgccataacgcgcagctgccggaccacgcagaacttcaatacgttcaatcatttcaggtggcacccaggaagtatcaccacgggtatcgcgctcgccacgccagccctgacgcaccgagttacggctgcttaccggcttgccgtcaatcaaaatcagcgtgttttccggacccataccgcgaatatcaatctgtcggttattcccacgctgaccactggtggagttaccggtcaggttaacgcctggcatggtacggatgatcttcgacacatcgcgggcaaccgggtttttgcggatttcatctgcggtgatggtcgaaacgccaggcgcctgtaagttctgctcggcggcggtaacgacaatagtatcgtcatgtgaaacaggagtatcggtcggctcttgtgcctgcgctaccccataaatccccagattgaccaacaaggccagggaatgaatcttcttgttcattgttttattcctgcatttttgccacgaattgcaactgtcgggcatggtcgtcatcaacacgacgcatcccgctaccgcgaaaacctttgatcctgaaagacacgcagtgcagttggttaattaatgtccgcgcttcccacggcgcgccattacgctattgcaaatgcaaatagttatcaataatattatcaatatatttctgcaatcaatgaaaaattgcacagtaaacatggggttatggtgtgacggcgttaaaagtaggaagtgagagctggtggcagtcgaaacatggcccggaatggcagcgtctgaatgacgaaatgtttgaggtcactttctggtggcgtgatccccaaggttctgaagaatactcgacgataaagcgcgtatgggtctacatcactggtgtgaccgatcaccatcagaacagccagccccagtcgatgcagcgaattgcaggcactaacgtctggcagtggacgacacaactcaatgccaactggcgcggcagctactgctttattcccaccgaacgcgatgacattttttctgtaccatcccccgatcgcctcgaattgcgcgaaggctggcgaaaactattaccccaggcgatagccgatccgctgaacctacaaagctggaaaggcgggcgagggcacgctgtttctgcactcgaaatgccgcaagcgcctctgcaaccgggatgggattgtccgcaagcgccagaaatacctgccaaagaaattatctggaaaagtgaacggttgaaaaagtcacggcgtgtatggatttttaccaccggcgatgcaacagcagaagaacgcccgctggcagttttgctcgatggcgaattttgggcgcaaagtatgcccgtctggccagtgctgacttcgctgacccatcgtcagcaacttcctcccgccgtgtatgtgttgatcgacgctatcgacaccacgcaccgcgcccacgaactgccgtgtaatgcggatttctggctcgcagtacagcaagagttattacccctggtgaaagctattgccccttttagcgatcgtgccgatcgcaccgtggttgccgggcagagttttggtgggctttccgcgctgtatgccggactgcactggcctgaacgctttggctgtgtattaagccagtcaggatcgtactggtggccgcatcggggcgggcagcaagagggcgtgttacttgaaaagctaaaagctggtgaagttagcgccgaaggtctgcgcattgtgctggaagcgggtattcgcgagccgatgatcatgcgggccaatcaggcgctgtatgcgcaattacaccccataaaagaatccattttctggcgtcaggttgacggcggacatgatgcgctttgttggcgcggtggcttgatgcaggggctaatcgacctctggcaaccacttttccatgacaggagttgaatatggcattcagtaatcccttcgatgatccgcagggagcgttttacatattgcgcaatgcgcaggggcaattcagtctgtggccgcaacaatgcgtcttaccggcaggctgggacattgtgtgtcagccgcagtcacaggcgtcctgccagcagtggctggaagcccactggcgtactctgacaccgacgaattttacccagttgcaggaggcacaatgagccagcatttacctttggtcgccgcacagcccggcatctggatggcagaaaaactgtcagaattaccctccgcctggagcgtggcgcattacgttgagttaaccggagaggttgattcgccattactggcccgcgcggtggttgccggactagcgcaagcagatacgctgcggatgcgttttacggaagataacggcgaagtctggcagtgggtcgatgatgcgctgacgttcgaactgccagaaattatcgacctacgaaccaacattgatccgcacggtactgcgcaggcattaatgcaggcggatttgcaacaagatctgcgcgtcgatagcggtaaaccactggtctttcatcagctgatacaggtggcggataaccgctggtactggtatcagcgttatcaccatttgctggtcgatggctttagtttcccggccattacccgccagatcgccaatatttactgcacatggctgcgtggcgaaccaacgcctgcttcgccatttacgcctttcgctgatgtagtggaagagtaccagcaataccgcgaaagcgaagcctggcagcgtgatgcggcattctgggcagaacagcgtcgtcaactgccgccgcccgcgtcactttctccggcacctttaccggggcgcagcgcctcggcagatattctgcgcctgaaactggaatttaccgacggggaattccgccagctggctacgcaactttcaggtgtgcagcgtaccgatttagcccttgcgctggcagccttgtggctggggcgattgtgcaatcgtatggactacgccgccggatttatctttatgcgtcgactgggctcggcggcgctgacggctaccggacccgtgctcaacgttttgccgttgggtattcacattgcggcgcaagaaacgctgccggaactggcaacccgactggcagcacaactgaaaaaaatgcgtcgtcatcaacgttacgatgccgaacaaattgtccgtgacagcgggcgagcggcaggtgatgaaccgctgtttggtccggtactcaatatcaaggtatttgattaccaactggatattcctgatgttcaggcgcaaacccataccctggcaaccggtccggttaatgaccttgaactggccctgttcccggatgtacacggtgatttgagtattgagatcctcgccaataaacagcgttacgatgagccaacgttaatccagcatgctgaacgcctgaaaatgctgattgcccagttcgccgcggatccggcgctgttgtgcggcgatgtcgatattatgctgccaggtgagtatgcgcagctggcgcagctcaacgccactcaggttgagattccagaaaccacgcttagcgcgctggtggcagaacaagcggcaaaaacaccggatgctccggcgctggcagatgcgcgttacctgttcagctatcgggaaatgcgcgagcaggtggtggcgctggcgaatctgctgcgtgagcgcggcgttaaaccaggggacagcgtggcggtggcactaccgcgctcggtctttttgaccctggcactccatgcgatagttgaagctggagcggcctggctaccgctggataccggctatccggacgatcgcctgaaaatgatgctggaagatgcgcgtccgtcgctgttaattaccaccgacgatcaactgccgcgctttagcgatgttcccaatttaacaagcctttgctataacgccccgcttacaccgcagggcagtgcgccgctgcaactttcacaaccgcatcacacggcttatatcatctttacctctggctccaccggcaggccgaaaggggtaatggtcgggcagacggctatcgtcaaccgcctgctttggatgcaaaatcattatccgcttacaggcgaagatgtcgttgcccaaaaaacgccgtgcagttttgatgtctcggtgtgggagtttttctggccgtttatcgcaggggcaaaactggtgatggctgaaccggaagcgcaccgcgacccgctcgctatgcagcaattctttgccgaatatggcgtaacgaccacgcactttgtgccgtcgatgctggcggcatttgttgcctcgctgacgccgcaaaccgctcgccagagttgcgcgacgttgaaacaggttttctgtagtggtgaggccttaccggctgatttatgccgcgaatggcaacagttaactggcgcgccgttgcataatctatatggcccgacggaagcggcggtagatgtcagctggtatccggcttttggcgaggaactggcacaggtgcgcggcagcagtgtgccgattggttatccggtatggaatacgggtctgcgtattcttgatgcgatgatgcatccggtgccgccgggtgtggcgggtgatctctatctcactggcattcaactggcgcagggctatctcggacgccccgatctgaccgccagccgctttattgccgatccttttgccccaggtgaacggatgtaccgtaccggagacgttgcccgctggctggataacggcgcggtggagtacctcgggcgcagtgatgatcagctaaaaattcgcgggcagcgtatcgaactgggcgaaatcgatcgcgtgatgcaggcgctgccggatgtcgaacaagccgttacccacgcctgtgtgattaaccaggcggctgccaccggtggtgatgcgcgtcaattggtgggctatctggtgtcgcaatcgggcctgccgttggataccagcgcattgcaggcgcagcttcgtgaaacattgccaccacatatggtaccggtggttctgctgcaacttccacagttaccacttagcgccaacggcaagctggatcgcaaagccttaccgttgcctgaactgaaggcacaagcgccagggcgtgcgccgaaagcgggcagtgaaacgattatcgccgcggcattctcgtcgttgctggggtgtgacgtgcaggatgccgatgctgatttcttcgcgcttggcggtcattcgctactggcaatgaaactggcagcgcagttaagtcggcaggttgcccgccaggtgacgccggggcaagtgatggtcgcgtcaactgtcgccaaactggcaacgattattgatgctgaagaagacagcacccggcgtatgggattcgaaaccattctgccgttgcgtgaaggtaatggcccgacgctgttttgtttccatcctgcgtccggttttgcctggcagttcagcgtgctctcgcgttatctcgatccacaatggtcgattatcggcattcagtcaccgcgccccaatggccccatgcagacggcggcaaacctggatgaagtctgcgaagcgcatctggcaacgttacttgaacaacaaccgcatggcccttattacctgctggggtattcccttggcggtacgctggcgcagggtattgcggcgcgactgcgtgcccgtggcgaacaggtggcatttcttggcttgctggatacctggccgccagaaacgcaaaactggcaggaaaaagaagctaatggtctggacccggaagtgctggcggagattaaccgcgaacgcgaggccttcctggcagcacagcagggaagtacttcaacggagttgtttaccaccattgaaggcaactacgctgatgctgtgcgcctgctgacgactgctcatagcgtaccgtttgacggtaaagcgacgctgtttgttgctgaacgcacacttcaggaaggtatgagtcccgaacgcgcctggtcgccgtggatagcggagctggatatctatcgtcaggattgtgcgcatgtggatattatctctccagggacgtttgaaaaaattgggccgattattcgcgcaacgctaaacaggtaaattaatattatttataaacccataattacagaaaataattatgggttttttatttgtttgatttataggtttgatgaatatttctcttaaatagagtgaatgttgcattcagtggaaggaatttacaaacttcagcttcggataattatcaccaactggtaaagtgagcgccgtggagatttccccctattggactcattttcaggttataccccatgtcatcactgaatattaaacagggaagtgacgctcattttcccgattatcctctggcgtcgcccagtaataatgaaattgatttacttaatctaatctcagttttatggcgggccaaaaaaacggtcatggcggtcgtttttgcgtttgcctgcgcaggcttgctgatctctttcatcctgccgcaaaaatggaccagcgcggcggttgtcacgcctccagaacctgttcagtggcaagagttggagaaatcattcactaagcttcgtgtgctggatctggatatcaaaattgatcgtacagaagcatttaacctgtttatcaagaagtttcagtcggttagcttgctggaagagtacctgcgttcatcaccttatgtgatggaccaattaaaagaggcgaaaatcgacgaactggatttgcatcgcgcaattgtcgcattgagcgaaaaaatgaaagcggttgatgacaatgccagtaagaaaaaagatgaaccgtcactgtatacctcctggacgctaagttttaccgcgccaaccagtgaagaggcgcagaccgttttgagcgggtatatcgattatatctctacgttggtggtgaaagagtcgctagaaaacgtccgtaataaactggagatcaaaacccagtttgaaaaagaaaaactggctcaggatcgcattaaaacgaaaaatcaacttgatgcaaacattcagcgcctcaattattcactcgacattgccaacgcggcaggaattaaaaagcccgtttacagtaatggtcaggccgttaaagatgaccccgatttttctatttctctcggtgcagacggtattgaacgcaaactggaaatagaaaaagcggtcactgacgttgcggaactgaacggtgaattacgtaatcggcagtatcttgtcgagcaattaacaaaagcacatgtcaacgatgtgaattttacgccgtttaaatatcagttaagcccgtcattgccagtgaaaaaagacggtccgggtaaggcgattattgtgatcctttccgcgttgatcggcgggatggtggcttgtggtggcgtgctgttgcgctatgcgatggcatccagaaaacaggatgccatgatggcagaccacttagtttaactatttgcggttgaaggtgccgttcgtccgagcggcaccacaagcggcgttccggcaactggatcgtcaatgatcatgcagcgcagaccataaatgcgctcaatcagttcagcagtgacaatctccttcggcgctccctgagcaacaattttcccttcccgcaatgcaatcaaatggctggcgtaacgacaggcctgattaagatcgtgcagcaccgccgccagggtatagcctttttcgcggttcagttcgcttaacaactccagcaaatcaatctgatgactgatatccagccaggtcgtgggttcgtcgagcagcataattgccgtttcctgggccagcaccatcgcgatccacgctcgctggcgttgtccgccagaaagggtatccacgctttgatctgccagatgagttattcccgtggcctgcattgctttcgttaccgcttcttcatcctctttgcgccagcgggtaaacagcggttgatgcggataacgtccacgcgccaccagctcctgcacggtgatatcgcccggcgtggtagcattttgcgccaacagaccaatccggcgtgcaacctctttactggcgtaatgttgaatgtgctcgccatccagccagacatgcccatgagcaggcgtcatcaggcggcttaaggtacgcagtaacgtggatttaccgcagccatttggcccgataattgccgtgaagtgaccatcaggtatttctacagtcagattttccgcaacggtatatttgccatatcccagggttaactgttcgccgcgcaaacgggctactgattcggtcattttttgcgagactcctgaattaacaagacgataaggtaaataccgccgaggctgacggtaacgacgccaaccggaagttgatacggcataaacagttgttgggcgcagagatcggccgccagcagtaacagcgccccgcatagcgccgcctgggttagcccccagcgagcggtgccgctaatgcgtcgggcaatgtgcggtgcgactaaagcaataaaggaaatcggcccggcaagcgctgttgccgcagcggtaagcaccactgcaaccagcatcattaacagacgcgaacgttcgacgctgacgcccagcgcacacgcggtatcatcgcccatttccagcaagcgcatccggcgtaccagtaaggcggcggcaatgagcatcaatataatgatgggtgcggaaggcgaggtttttgcccacgtcaggccgttgagcgatccggcattccacaaacctgctgttagcgccgtttctaaagacgctttcagcaacagccaggtattaaaggccaccagcatggcgcgaacgccgataccgataataatcaaccgaaaggtgtcgatgccgttgcgccaggcgagcagccagaccagcagcgaagtgacaatgccgcccaccattgctgacagcgcgatagccgtcaggtcctgaccaaacagcaccatcgccaccagcacgccgctccacgccccggtgttaaagcccattacgtcagggctgccgagcgggttacgcatcagcgactgaaaaatcgcgccactgacgcccagtgctgcgccaatcaacagcgccatcagcacgcgtggtaaacgccattcggtgaccaccatcgtcatactgcgcggcgcatcgcccatcagcgcggcgaatacctgcgaggtttccagcgtgacggcaccgctgcgtaatccccagatacctgcaaccacacaggcggaaaccagcagcaaacaggtgatgagtaatcggcgagagacgtaaatcatgcaccacctcgcgttttacgtcgcacgaggaagatcagcaccggtgcaccaataaacgcactgaccacagaaacgcgcagttcgccgggcacaatcacccgcccgatgatatcggcaaacagcagcagggcaggggtagcaagtagcgtgacgggcagcgaccagcgatgatcggcacccaccagccaacgcgccatatgcggcatcatcaggccaataaaggcaatcgggccaactattgccgtcgcactaccacaaagcacggtaatcgccagcagaccaatcaactgtgtgcgcgccacgcgactgcccagcgccgtcgcggtgtcgctgccgaggctcaaactgttcagcgcgcgactcagtaatagcgcagttgctccggcgatcagcaccgggatcagcaccacttttaaggtatgtagattgcgaatatccagcgaaccggcttgccagaaacgcaactgatcgtagacgtcaggattaagcagggcgatgccgctggtcagtccttccagcaccgccgccagcgccacgcccgccagggttaaacgcaccggacttaactgcccgccgccctgactgccggtaaaggcaacaatcaatgaggccaccagcgccccggcgaaggccatcgccagttgttcctgcgcggaagagtaaccaaacagcgccgcacccagcacaatggcaaagctggctccggcgttcacgccaagcaagccggggtcggcaagtgggtttcgggtgagggtttgcattaacgccccggcaaggccaagcgcgccgcctgccagtaaaccggcaagggtacgcggcagccgcgcgtcgagcacgatggtgcagtcggcgctctggcaggtgccggagaaggcctccagcactacggaagcggggagtgattttgccccaatgagcaggcttaatgccgtcgcgataatcagtaataacagcaatccgggcacggcaatggcgcgtgtcacggcaacagaaccagacatacgaacttccatgataatgaaattaattatcgttatcgatcttatttggatatgttagcatgtgcagcctaagaataggtatttaaaatatttgatggcaaggcattgtaatgaataaacaatcctggctgcttaacctcagcctgttgaaaacgcacccggcgtttcgcgcagtattcctcgctcgtttcatctcaattgtgtctctgggtttgctcggcgtcgcggtgccggtgcagatccagatgatgacacattccacctggcaggtggggctttcggtgacgctgaccggcggcgcgatgtttgttggcctgatggtcggcggtgtgctggcggatcgctatgagcgcaaaaaagtgattttgctggcgcgcggcacctgtggcattggcttcattggactgtgccttaatgcactgctgccggagccgtcattgctggcaatctatttacttggtttatgggatggttttttcgcatcgcttggcgttacggcgctattggcggcgacaccagcactggtagggcgtgaaaacttaatgcaggccggggcgatcaccatgttgaccgtgcgtctggggtcggtgatttcgcccatgattggcggtttattgctggcgaccggtggcgtagcctggaactacgggctggcggcggcgggcacgtttattaccttgctaccgttgttaagccttccggcgttgccaccgccaccgcagccgcgtgagcatccgttgaaatcattactggcaggatttcgttttctgcttgccagcccgctggtgggcgggattgcgctgctgggtggtttattgacgatggcgagcgcggtgcgggtactgtatccggcgctggctgacaactggcagatgtcagcggcacagattggttttctctacgcggcgatcccgctcggcgcggctattggtgcgttaaccagcgggaagctggcacatagtgcgcgaccagggttattgatgctgctctccacgctgggatcgttcctcgccattggtctgtttggcctgatgccgatgtggattttaggcgtggtttgtctggcgctgttcggctggttgagtgcggtcagctcgttgctgcaatacacaatgctgcaaacgcaaaccccggaagcgatgttagggcggattaacggtttgtggacggcgcagaacgtgacgggcgatgccataggcgcggcgctgctgggtggtttgggcgcgatgatgacaccggttgcttccgcaagcgcgagcggttttggtttgttgattatcggcgtgttgttattgctggtgctggtggagttgcgacattttcgccagacgccgccgcaggtgacagcgtccgacagttaatgcttaaaacagcgccttaagcctatccagcacttgcatggcgctgtagtaatccagacggaacgtctcggttcccagcgcataaacctgcttgttttgtactgcaggcaggtgcgcgagcagcggattagcataaatagcatcggcatctttctgatcaccggcgaacaggaatagtgactcgccatttaaccctgcagccagattttccccaccaagctgaatgatgtcatggcgtttaccctgactttggctggcatttaaccctgcgggtaacttcgccagcgtaaagccgagttgttccagcatctgcccttgtgctgattctggcgtccagagattggcactgtgtgcagcggcagtatagacaatggcagtgaccggctgcggcggtaatttgatttgctctttcgccgccgccagttgcttatcaaactgcgcaatccgctctgccgcttgtttctcatgcccggtaatttcgccaagttgcgttaacagcgactgccagcttttgtcgtcgtaattgatgattaatgtcggggcgatggtggaaagctgatcatacagtgccagcgccgaatccccgccggttgcgctaattaaaatcagatccggcatttgcgcggcaacggcttcggcgctcggttcgccgatatagagccgttgcagtttgcgttctttcgccaccttgctccactggcgtaaaaagccctggtcatccgcgacgcggttattcggcgtggtcgcgccgctggcgatcaccggagcatcaatcgccagcagtgagccggtcagggtgacgctggtggaaacaatacgctgcggctggctttccagtgtatgtgtgccacggctgtcagtaatctgacgcggccagtcagcggcctgaactgcggctattcctgaaagcaaaagtcctgttaatagaagggcgttgcggtagagcggggcgagtctcacaaatcagcttcctgttattaataaggttaagggcgtaatgacaaattcgacaaagcgcacaatccgtcccctcgcccctttggggagagggttagggtgaggggaacagccagcactggtgcgaacattaaccctcaccccagccctcaccctggaagggagagggggcagaacggcgcaggacatcacattgcgcttatgcgaatccatcaataatgcttctcattttcattgtaaccacaaccagatgcaaccccgagttgcagattgcgttacctcaagagttgacatagtgcgcgtttgcttttaggttagcgaccgaaaatataaatgataatcattattaaagcctttatcattttgtggaggatgatatggatacgtcactggctgaggaagtacagcagaccatggcaacacttgcgcccaatcgctttttctttatgtcgccgtaccgcagttttacgacgtcaggatgtttcgcccgcttcgatgaaccggctgtgaacggggattcgcccgacagtcccttccagcaaaaactcgccgcgctgtttgccgatgccaaagcgcagggcatcaaaaatccggtgatggtcggggcgattcccttcgatccacgtcagccttcgtcgctgtatattcctgaatcctggcagtcgttctcccgtcaggaaaaacaagcttccgcacgccgtttcacccgcagccagtcgctgaatgtggtggaacgccaggcaattccggagcaaaccacgtttgaacagatggttgcccgcgccgccgcacttaccgccacgccgcaggtcgacaaagtggtgttgtcacggttgattgatatcaccactgacgccgccattgatagtggcgtattgctggaacggttgattgcgcaaaacccggttagttacaacttccatgttccgctggctgatggtggcgtcctgctgggggccagcccggaactgctgctacgtaaagacggcgagcgttttagctccattccgttagccggttccgcgcgtcgtcagccggatgaagtgctcgatcgcgaagcaggtaatcgtctgctggcgtcagaaaaagatcgccatgaacatgaactggtgactcaggcgatgaaagaggtactgcgcgaacgcagtagtgagttacacgttccttcttctccacagctgatcaccacgccgacgctgtggcatctcgcaactccctttgaaggtaaagcgaattcgcaagaaaacgcactgactctggcctgtctgctgcatccgacccccgcgctgagcggtttcccgcatcaggccgcgacccaggttattgctgaactggaaccgttcgaccgcgaactgtttggcggcattgtgggttggtgtgacagcgaaggtaacggcgaatgggtggtgaccatccgctgcgcgaagctgcgggaaaatcaggtgcgtctgtttgccggagcggggattgtgcctgcgtcgtcaccgttgggtgagtggcgcgaaacaggcgtcaaactttctaccatgttgaacgtttttggattgcattaaggagcgaggatgagcattccattcacccgctggccggaagagtttgcccgtcgctatcgggaaaaaggctactggcaggatttgccgctgaccgacattctgacgcgacatgctgcgagtgacagcatcgcggttatcgacggcgagcgacagttgagttatcgggagctgaatcaggcggcggataacctcgcgtgtagtttacgccgtcagggcattaaacctggtgaaaccgcgctggtacaactgggtaacgtcgctgaattgtatattacctttttcgcgctgctgaaactgggcgttgcgccggtgctggcgttgttcagccatcagcgtagtgaactgaacgcctatgccagccagattgaacccgcattgctgattgccgatcgccaacatgcgctgtttagcggggatgatttcctcaatactttcgtcacagaacattcctccattcgcgtggtgcaactgctcaacgacagcggtgagcataacttgcaggatgcgattaaccatccggctgaggattttactgccacgccatcacctgctgatgaagtggcctatttccagctttccggtggcaccaccggcacaccgaaactgatcccgcgcactcataacgactactactacagcgtgcgtcgtagcgtcgagatttgtcagttcacacaacagacacgctacctgtgcgcgatcccggcggctcataactacgccatgagttcgccaggatcgctgggcgtctttcttgccggaggaacggttgttctggcggccgatcccagcgccacgctctgtttcccattgattgaaaaacatcaggttaacgttaccgcgctggtgccacccgcagtcagcctgtggttgcaggcgctgatcgaaggcgaaagccgggcgcagcttgcctcgctgaaactgttacaggtcggcggcgcacgtctttctgccacccttgcggcgcgtattcccgctgagattggctgtcagttgcagcaggtgtttggcatggcggaagggctggtgaactacacccgacttgatgatagcgcggagaaaattatccatacccagggttacccaatgtgtccggatgacgaagtatgggttgccgatgccgaaggaaatccactgccgcaaggggaagtcggacgcctgatgacgcgcgggccgtacaccttccgcggctattacaaaagtccacagcacaatgccagcgcctttgatgccaacggtttttactgttccggcgatctgatctctattgatccagagggttacatcaccgtgcaggggcgcgagaaagatcagattaaccgtggcggcgagaagatcgctgccgaagagatcgaaaacctgctgctgcgccacccggcggtgatctacgccgcactggtgagcatggaagatgagctgatgggcgaaaaaagctgcgcttatctggtggtaaaagagccgctgcgcgcggtgcaggtgcgtcgtttcctgcgtgaacagggtattgccgaatttaaattaccggatcgcgtggagtgtgtggattcacttccgctgacggcggtcgggaaagtcgataaaaaacaattacgtcagtggctggcgtcacgcgcatcagcctgaaggagagaacacgatggctattccaaaattacaggcttacgcactgccggagtctcacgatattccgcagaataaagttgactgggcctttgaaccgcaacgtgccgcgttgttaatccatgatatgcaggactattttgtcagcttctggggcgagaactgcccgatgatggagcaggtgatcgcgaatattgctgcgctgcgcgactactgcaaacagcacaatatcccggtttattacaccgcccagccgaaagagcagagcgatgaagatcgggcgctgttgaatgatatgtgggggccgggcctgacccgctcgccggaacagcaaaaggtggtggatcgcctgacgccagatgccgacgacacggtgctggtgaagtggcgctacagcgcgtttcatcgttctccgctggagcaaatgctgaaagagagtggacgtaaccagctgattattaccggggtatatgcccacattggctgtatgaccaccgcaaccgacgcatttatgcgcgatattaaaccgtttatggtggcggatgcgctggccgatttcagccgtgacgagcatttgatgtcgctgaaatatgtggccggacgttctggccgggtggtgatgactgaagaattactgccagcacctatccccgccagcaaagcggcgctgcgtgaggtgatcctgccgttgctggacgagtccgatgaaccgttcgatgacgacaacctgatcgactacggtctggattcggtgcgcatgatggcgctggcggcgcgctggcgcaaagtgcatggtgatatcgactttgtcatgctggcgaaaaacccgaccatcgacgcctggtggaagctactctcccgcgaggtgaaataatggatttcagcggtaaaaatgtctgggtaaccggcgcaggtaaaggtatcggctacgccacggcgctggcgtttgttgaggcgggagcgaaagttacaggttttgatcaagcgttcactcaggagcaatatccctttgcgaccgaagtgatggatgttgccgacgctgcgcaggtcgcgcaagtgtgtcagcgactgttagctgaaacggagcgactggacgcgctggtcaatgcggcgggaattttacgcatgggcgcgaccgatcagctcagtaaagaggactggcagcagacttttgcggttaacgtcggcggtgcgtttaacctgttccagcaaaccatgaaccagtttcgccgtcagcggggcggggcgattgtcactgtggcgtccgacgccgcgcacacgccgcgtattggcatgagtgcttatggcgcatcgaaagcggcgctgaaaagcctggcgttgagcgtcgggctggaactggcgggtagcggcgtgcgctgtaatgtggtttcgcctggctccaccgacaccgatatgcaacgcacgctgtgggtgagcgatgacgccgaagaacagcgtattcgcggctttggcgagcagtttaaactcggcattccgctggggaaaatcgcccgtccacaagagatcgccaacacgattttgttcctcgcctctgacctcgccagccatattaccctacaggatattgtggtcgatggcggctcaacgctgggggcataagcatgatctggaaacgccatttaacgctcgacgaactgaacgccaccagcgataacacaatggtggcgcatctgggaattgtgtatacccgtctgggcgatgatgtgctggaagccgaaatgccggttgatacccgtactcatcagccgttcggtttactacatggcggcgcgtcggcggcgctggcggaaacgctgggatcgatggccggatttatgatgacccgcgacggacagtgtgtggtaggcacagaacttaatgcaacacaccatcgcccggtgtctgagggaaaggtacgcggcgtctgccagccgctgcatcttggtcggcaaaatcagagctgggaaatcgtcgttttcgatgaacaggggcggcgttgctgcacttgtcggctgggtacggcagttttgggatgaacccgacagaattagatgagattgcaggaaaactcggttaacggagtgatcgagttaacattgttaagttaaatattggtttcaactccgatttacatggttgctgtgttgttaaattgtacaaagatgttatagaaacaaaatgtaacatctctatggacacgcacacggataacaactatgaacaaatcagggaaatacctcgtctggacagtgctctctgtaatgggagcatttgctctgggatacattgctttaaatcgtggggaacagatcaacgcgctgtggattgtggtggcgtcggtctgtatctatctgatcgcttaccgtttttatgggctgtatatcgccaaaaatgtgctggcggttgacccgacgcgtatgacgccagcggtgcgccataacgacgggctggactatgtgccgacggacaagaaagtgctgttcggtcaccattttgcggccattgccggagcaggtccgctggtggggccggtactggcggcgcaaatgggctacctgccggggatgatctggctgctcgctggggtggttctcgccggtgcggtgcaggatttcatggtgctgtttgtttctacgcgccgtgacggtcgctcgctgggtgagctggtcaaagaagagatggggccaaccgccggggtgattgcgctggtggcctgctttatgatcatggtcattatccttgcagtgctggcgatgatcgtggtgaaagccctgactcatagcccgtggggaacatataccgttgcgttcaccattccgctggcgctgtttatggggatctacctgcgctatctgcgtccggggcgtattggcgaagtgtcggtcatcggtctggtattcctgattttcgccattatctctggcggctgggtggcagaaagtccgacctgggcaccgtactttgactttaccggcgtgcagttgacctggatgctggtgggttacggttttgtggcggcggtgctgccggtgtggttactgctggccccgcgtgactacctctctaccttcctgaaaatcgggactatcgtcggtctggcggtaggcattttgattatgcgcccgacgctgaccatgcctgcgctgaccaaatttgtcgatggcactggcccggtatggaccggtaacctgttcccgttcctgtttatcaccatcgcctgtggcgcggtgtctggcttccatgcgctgatctcttctgggaccacgccgaagatgctggcgaacgaagggcaggcgtgctttatcggctacggtgggatgttaatggaatccttcgtggcgattatggcgctggtttccgcctgtatcatcgatccgggcgtgtattttgccatgaacagcccgatggcggtgctggctccggcagggacggcggatgtggtcgcttctgccgcgcaggtggtgagtagctggggctttagcattacaccagatacgctaaaccagattgccagcgaagtgggtgaacagtcgatcatttcccgtgcgggcggtgcgccgacgctggcggtggggatggcctacattctgcacggcgcgctgggcggcatgatggatgtggcgttctggtatcacttcgccattttgtttgaagcactgtttattctgacggcggtggatgcaggtacgcgtgctgcgcgctttatgttgcaggatctgctgggcgtggtgtctcctggcctgaagcggaccgattcactgcctgctaacctgctggcaacagcgctgtgcgtactggcgtggggctacttcctccatcagggcgtggtcgatccgctgggcggcattaacactctgtggccgctgtttggtattgccaaccagatgctggcagggatggcgctgatgctctgtgccgtggtgttgttcaagatgaaacgtcaacgttacgcctgggtggcgctggtaccaacggcctggctgctgatttgtaccctgaccgcaggctggcagaaagcgtttagcccggatgcgaaagtcggcttcctggccattgctaataagttccaggcaatgatcgacagcggcaatattccgtcgcagtatactgagtcacagctggcgcaactggtgttcaacaaccgtctggatgccgggttaaccatcttctttatggtggtcgtggtggttctggcactgttctcgattaagacggcacttgcggcattgaaagatccgaagccaacggcgaaagaaacgccgtatgaaccaatgccggaaaatgtcgaggagatcgtggcgcaggcaaaaggcgcacactaaagtcagagtgagggggggatgttggcgaatgttggcttagtgcccagggttccctctcaccctaaccctctccccggtggggcgaggggactgaccgagcgcgttgatagcatttgtaggccggataaggcgttcacgccgcatccggcactctttcagcaacatggttagcggaggccaagatgtttgattcactggcaaaagccggaaaatatttaggtcaggcggcgaagctgatgattggtatgcctgattacgacaactatgtcgaacatatgcgggttaaccatcccgatcaaacgccgatgacctacgaagagtttttccgtgagcggcaggacgcgcgctacggtggaaaaggcggcgcgcgctgctgctaaatttgtacgtcaggctttaaacgattccacttttttgaacgctgcacgcaacgtatctggtgtcagcgtgactggcaggtaatgaatggactccaccggacgcagggtgtgggcaatcactttgtcgatctccgcctgattattgatatccacttccagctccgccagtgtagtcggcagatgaaaacgctgatacgctccagttaattgcgccagcacatcatcctgacccagcaaggcgctttgcaccagaattccgtaggcgactttggtgccgtggagaaacttctcggtttgcggcagcacggtcagaccgttatgcacggcatgagctgccgccacacgcgtaaaacgatcgcccagaccaccaaccatcccaccaccagcaataatagcatccaccacatcgcaaaatgattgcgttaactgttgattttgctgatcgctcagcgcctgttcgctactgtttaacaagacgtcgcgaatggcttgcgcattattgatccccagtcgcacggttagcggcaacgtttctggttgcggagccagcaccaccgcttcataccatttcgccagcgtgtcaccgatccccgccagcagatattgttgcggtgcattgaggataatctccggttccaccagcaccataaaattggcgtcgtcgaaaatctcataatgcagcgcctgtccggcatcattataccagacggagagcggtgtccaggcggcgcaggtggcggcgatcgtcggaacggcaacaaacggcagaccgagacggcgggcgagggctttcgcggtgtcgagcagtgcaccgccaccgacgccaatcaccacgctgcggtcgtcaccggactcagccgccagttgttgtacatcgctttcgctgcaatgaccgcgaaacaaaatatgctttgcccctggcagtccaaacgctggcggaagtttggtttgcgccgcagcaatggcgcgtttgccgtagatccacaccgcgcgagaaagttgttcatcagtgaaaaaatcgtgcaggtgattgaaacttcctggatgtgaaaagtagttagccgggccgacgaccacgcggataggattgtgaggcatgttgtgttgtccttattgttttatttagacatctaaacgtcttgattgccaaatactagcatcgtgttatagtgccttcaacacgcaacttcgtcaggtacaataaaaatgacaaataaccctctgattccacaaagcaaacttccacaacttggcaccactattttcacccagatgagcgcgctggcgcagcaacaccaggcgattaacctgtcgcaaggctttcctgattttgatggtccgcgctatttacaggagcggctggcgcaccacgttgcacagggggcaaaccaatacgcgcccatgaccggcgtgcaggccttgcgcgaggcgattgctcagaaaacggaacgtttgtatggctatcaaccagatgccgatagcgatatcaccgtaacggcaggggcgacggaagcgttatacgcggcgattaccgcactggtgcgcaatggcgatgaagtgatttgttttgatcccagctatgacagttacgcccccgccatcgcgctttctgggggaatagtgaagcgtatggcactgcaaccaccgcattttcgcgttgactggcaggaatttgccgcattattaagcgagcgcaccagactggtgatcctcaacactccgcataaccccagtgcaactgtctggcagcaggctgatttcgccgctttgtggcaggcgatcgccgggcacgagatttttgtcattagcgatgaagtctacgagcacatcaacttttcacaacagggccatgccagtgtgctggcgcatccgcagctgcgtgagcgggcagtggcggtttcttcatttggcaagacctatcatatgaccggctggaaagtgggttattgtgttgcgccagcgcccatcagcgccgaaattcgcaaggtacatcagtatctgaccttttcggtgaataccccggcacagctggcgcttgctgatatgctacgtgcagaacctgagcattatcttgcgttaccggacttttatcgccagaagcgcgatattctggtgaatgctttaaatgaaagccggctggagattttaccgtgtgaaggtacatactttttgctggtggattacagcgcggtttctaccctggatgatgttgagttttgccagtggctgacgcaggagcacggcgtagcggcgattccgctgtcggtgttttgcgccgatcccttcccacataaactgattcgtctctgttttgccaagaaggaatcgacgttgctggcagcagctgaacgcctgcgccagctttagctatttaaccgtccaggcgcgggaatattgacggtcggcaaacaactcttgcaggccgttaatttgcttcaggcgcagcacttcgtcgctgtccattcccagctctttgccaattttattatcgtcccatcccaactggctaagttcacggacgatttccgacatggcggtgatttgatggcgtccacgagcgcgattatgacgaatagtcgcggcgatgcgttgattacgcgtaccttccagacaggtcaccggcaaataaccttttaagcgtaattttaatgatgatgagcctttaccaatttcatggcggtgaaaaccatccacgatttccatggcatttttatccgtatgtgtgaccacaatgggttgggtaaaaccatctatttcaatggatttttgcagcagttttttttcgggtggtgccacgttgtttgggttgtaatcattaggcataagttggctgtttttaacccacagaacgcaatccactggctcttcacgaaaggggctaacctgatggatcgccatgcggatttcattaatcgctttgatgcgatcatcttccggcaagctggcgagaaattgcgttaaatcctgcgttaatcgttgttgcatagtatcccccattcctgacgttttccttttatccgttcgttataacgctgatagttcttcgattttgtggggctaaatgataatgcccgacaccagtaatcgttattgagtaaaactttgcatatccgccgccaggaggggatatctttcgcgccaatgtccccttgctgggtttgtggaacctcgatgccttttttctgataccagtgcaaataaatggcgattttattgcggtaatgctcagctgttttttccggcatgctattgagcagcaataatgcatattcttgccagtctaaatgttctggcttgaggattttccgatgcccatagaaatgattgtcatgtccggcgtaaatgccgccactttttaccccgctgactcgtgcgcacatagcagcccagcgatccggttcgataacgtgatagagccataatccttgtcgttgctccgggccaaaaggttcgcaaattcgcatatgacgcagaggaacgcctgcctgatacattaggttatacagtgggttgcagagactttgatgatttgcataccaggtccagatatcagccactttccagtcgtaaatggggtaaatgtaccagctatgaccgcctggtgcggccgtagtccagggtttatcgtcggcaaaacgttgtttatttaaactggcgatggcgacaaaacggttgtaggactcatccgcacggatgccgatcatcatcgccgccggacgtttttgtgaaaaccattcggcaaactcacgtacaaattgttcgaaggtcatgcctggctggtaaaagcagaaaaagtcagggtcggttatcgcatcttggggaggttgacgtacccattcgacatcaggttcccagcactgccattcgggttggtattgtgaaagggaattttgcgtcgtaagcgggagcgcaacccagtaaaactcttcgatgacatcggtgtacaactcgcgcagggactgaacatagttaatggtgcaagagaattgcgcctcccagtcgataaacaaaacgcagatttttttgcccatttgtcgggcaagttcggctgtcagatgcagcattaaaccagagtctttgccgccagaaaatgagacacaaacgcggggtagggtgttgagtgtccaggtaatacgctctcgtgcagcttccagaatattgagcggaagaggaattttataaatagacatctgaagacgctctctgaacgttacagggtgatcagtgagataagtctgttaattataaagtaaacactgtaaagcagagtgttttatttttcattcgcgctgtgaataaatagatgaaagttatagtagctgtctgtagttatatatcaaaaactctcatttagacggtcaataaatcgggagaacaccaaattatttaaagaagatttattataggaaatgtaaagctttattgaaggtaacggatgttctagttttatctcttttaagttaagaaagtcacggtaggaattataaagttcataggggactattcccagtaaatctgtaactgcaatgctattaatgattgtcagcaaagaggaaccacgaaatgagattttgcgattcataaatctctcgtctatttccatttgaatatcatcaacccctgctgatttagatattaattgggtgaactcttctgccataatttgttcataagtgctattgtcagtaattcgtggatgcctattactacaaattagagtattgcgaatcgtatgcaatggcatgcaaatgacggaacggctgatcactggcatttgggtgatcaccagatcggctttgcggtgaaccaacagttcttcagcattctctgctgacatgaggatatcatggcactcaatctcgacagaggaatcttgccgtaggcagcggatcagcatactattattagagcaagaaatgagctgagggccgtagataataaagtttttctttagttcggacttattgactatattaattgtttgttcaaggcctctgagatttttctcaagatggtgatgcagatttaaccctgttgtcgtcggcgcgataccttttcctgagcgaatgaataaagggtcattaaattgcgcacgtaagcgttgtaacgactggctcacggctgatggggtgatatatagtgattcagcagctttgctaatgcttaaatgctggtaaatacactcaaatatgacaagaagatttaagtcgaactttttcaagtcgtagagattggccatacactactccggttatatttttcttccatgatatattcacttaatcaatgttttttgcgtatatatttttattgattatgtttttttgcttaactcaggattaagtttttctaaaatagcacagccacttagggcagagcgagcaattcatgcttttttaggatggttgaaaagcagggatatagttcaaccatccatgaattaccttttatttattccccataatgatattaagcgttttctgatcgggcaaccccacggcctgttgtagcgtattttccttactcatgtaatagatagccggcgtgacatttgcccccagatcgtccatcagtttctcattgtcacttaacactttcatttgctctgtacttacgtttgcaggcacgtttagcttaagcttgccaccagaggcttcatattgttgccaggtttttgcgggatctttggaggcaagaattgccgctgctgtcgccgggctttctggcttgataaccccaaccaacaatgttcttaattgcactttgccagaatctacccacgggcgcgcctgctgccagaactgtttacaatatgggcagaacggatcggcgaagacgtagacaatgaccggcgcatcttttttaccgtcgaggagccagtgggattgttccatccgttgccacatttcgcgtccggctggtgcgtaaatttctttttcgataagtgtgttactcaggttttcacctttctcgttgtacatgtaaccagagatagcgtgcttaccatctggagtcaggtagatggtgacgcccatatcctgatactttccgagataacctttcattcctccgggggcatcgaatgttttgatgattgtaatgccctgtttttcaatcgcttttactggagcaggaagttcctctgcgaaggcgattgcaggaagcagagccagtaaaagtatcttttttaacattaatttgtccttttcagtcagtgcaaaagtcgagtaaaaggcataacctatcactgtcataggtaagagcttagatcaggtgattgccctttgtttatgagggtgttgtaatccatgtcgttgttgcatttgtaagggcaacacctcagcctgcaggcaggcactgaagataccaaagggtagttcagattacacggtcacctggaaagggggccattttactttttatcgccgctggcggtgcaaagttcacaaagttgtcttacgaaggttgtaaggtaaaacttatcgatttgataatggaaacgcattagccgaatcggcaaaaattggttaccttacatctcatcgaaaacacggaggaagtatagatgtccttgattaacaccaaaattaaaccttttaaaaaccaggcattcaaaaacggcgaattcatcgaaatcaccgaaaaagataccgaaggccgctggagcgtcttcttcttctacccggctgactttactttcgtatgcccgaccgaactgggtgacgttgctgaccactacgaagaactgcagaaactgggcgtagacgtatacgcagtatctaccgatactcacttcacccacaaagcatggcacagcagctctgaaaccatcgctaaaatcaaatatgcgatgatcggcgacccgactggcgccctgacccgtaacttcgacaacatgcgtgaagatgaaggtctggctgaccgtgcgaccttcgttgttgacccgcagggtatcatccaggcaatcgaagttaccgctgaaggcattggccgtgacgcgtctgacctgctgcgtaaaatcaaagcagcacagtacgtagcttctcacccaggtgaagtttgcccggctaaatggaaagaaggtgaagcaactctggctccgtctctggacctggttggtaaaatctaaatttccttcgtctttcacgccatagcggcgttggcgtcgcccgctcaccccggtcacttacttgtgtaagctcccggggattcacaggctagccgccttgctctgacgcgaaatacttcggaaattcacctaattcttcgggtgctgcggcacccgattttcttccccgcaccatgatgcaagctgcatccaggtagccgcagaggccgcttgcatgatgatgtttaaagcccaggagataaacatgctcgacacaaatatgaaaactcaactcaaggcttaccttgagaaattgaccaagcctgttgagttaattgccacgctggatgacagcgctaaatcggcagaaatcaaggaactgttggctgaaatcgcagaactgtcagacaaagtcacctttaaagaagataacagcttgccggtgcgtaagccgtctttcctgatcaccaacccaggttccaaccaggggccacgttttgcaggctccccgctgggccacgagttcacctcgctggtactggcgttgctgtggaccggtggtcatccgtcgaaagaagcgcagtctctgctggagcagattcgccatattgacggtgattttgaattcgaaacctattactcgctctcttgccacaactgcccggacgtggtgcaggcgctgaacctgatgagcgtactgaacccgcgcatcaagcacactgcaattgacggcggcaccttccagaacgaaatcaccgatcgcaacgtgatgggcgttccggcagtgttcgtaaacgggaaagagtttggtcagggccgcatgacgttgactgaaatcgttgccaaaattgatactggcgcggaaaaacgtgcggcagaagagctgaacaagcgtgatgcttatgacgtattaatcgtcggttccggcccggcgggtgcagcggcagcaatttactccgcacgtaaaggcatccgtaccggtctgatgggcgaacgttttggtggtcagatcctcgataccgttgatatcgaaaactacatttctgtaccgaagactgaagggcagaagctggcaggcgcactgaaagttcacgttgatgaatacgacgttgatgtgatcgacagccagagcgccagcaaactgatcccagcagcagttgaaggtggtctgcatcagattgaaacagcttctggcgcggtactgaaagcacgcagcattatcgtggcgaccggtgcaaaatggcgcaacatgaacgttccgggcgaagatcagtatcgcaccaaaggcgtgacctactgcccgcactgcgacggcccgctgtttaaaggtaaacgcgtagcggttatcggcggcggtaactccggcgtggaagcggcaattgacctggcgggtatcgttgagcacgtaacgctgctggaatttgcgccagaaatgaaagccgaccaggttctgcaggacaaactgcgcagcctgaaaaacgtcgacattattctgaatgcgcaaaccacggaagtgaaaggcgacggcagcaaagtcgttggtctggaatatcgagatcgtgtcagcggcgatattcacaacatcgaactggccggtattttcgtccagattggtctgctgccgaacaccaactggctcgaaggcgcagtcgaacgtaaccgcatgggcgagattatcattgatgcgaaatgcgaaaccaacgtgaaaggcgtgttcgcagcgggtgactgtacgacggttccgtacaagcagatcatcatcgccactggcgaaggtgccaaagcctctctgagtgcttttgactacctgattcgcaccaaaactgcataagaagaagtaagattcacctgcaattgcttagccgccggggtcaaacctggcggcttttttatggcattaaaaagccccgccgggatggctccgggcagggcgggatacttattctggcaattaacgcacaaccagcaccggcagattggcgtggcggatcacgctcgaggcgttagaacctaacagatgggtcgaaatcgatgggttgcgagaaccaataactacaacatcagcccccagttcttctgccaactcattgacttcatcccgcacgctaccaaaacggacatgttgtttaatgcgggaaggatcgatggtgaagtggctgaccatcgtttgcagacgttcttgtgcttcatgttgcagatgctcttcaaaacgacgcacatcagcggcaaaacggtgcaggctcaggctggctgacccgggtagtacgtgaagtagatgaataactccgtcatcctgggcgaggaattcagcgtggcgaacagctttgtcgctcaattccatttcaaatacatcaactggcataatgattgtcttatacataaccctttctccctgttaatcatgaacaaatcattcgccatgattataatatttatccctgatatttgtctggttctttttccttacgaactgtttctgtgatgaatatattctcactgaacaccaggaattctcccaaaacctgtggtaccgcccgttttcccgctgtgatagctacccttaaagactgactcttttttgaactgtctctggaggttgcatgaaagcattgacttatcacggcccacatcacgttcaggtagaaaatgttcccgatccgggcgttgaacaggcagatgatattattctgcgtattacggcaacggcgatctgtggctctgacctccatctttatcgaggcaaaatacctcaggttaaacatggcgatatttttggtcatgaatttatgggggaagtagttgaaaccggaaaggacgtaaaaaatttgcaaaaaggcgaccgagtggtaattccgttcgtcattgcttgtggcgactgttttttctgtcgattgcaacaatatgccgcctgcgaaaataccaatgcgggtaaaggcgctgcgctcaataaaaaacagataccagctccagcggcattgtttggttatagtcacctgtatggcggcgttcctggtgggcaggcggaatatgtccgcgtccctaaagggaatgtggggccgtttaaagtaccgcctttgctttcagatgataaagcgcttttcctttctgatattctgccaacggcatggcaggcagcaaaaaatgcgcagatccaacaaggttcaagcgttgcagtctatggtgctggtcctgtgggattgttgacaatcgcctgtgcacggttgctcggtgcggaacagatttttgttgttgatcatcatccctaccgcttgcatttcgccgccgaccgctacggcgcgatcccgattaattttgatgaagacagcgatccggcacagtcaattattgaacaaacggcaggtcaccggggcgtggatgcagtaatagacgccgtcggttttgaagcgaaaggcagcaccacggaaacggtgctgactaacctgaaactggagggcagcagcggtaaagcgttgcgtcagtgtattgcggcggtcaggcgtggcggcattgttagcgtaccgggcgtctacgctggatttattcacggtttcctgtttggcgacgcctttgataaagggttgtcgtttaaaatgggacagacccacgttcacgcatggctgggagaattattaccgttaattgagaaaggattactgaaaccagaagaaattgttacccactatatgccgtttgaagaggccgcccggggatatgagattttcgaaaaacgtgaagaggagtgccgtaaggtgattctggtacccggtgcacaaagcgcagaggcggcgcagaaggcggtttcaggtctggtgaatgcgatgccggggggaacaatatgatcgtcaggagtggttttcgaggtaaaggacagccatgacgataatcgccgccataatcagaaatcctatcaggatgtaaaatgcttctgccatggttattcccacaaacgaaacggaataattttgcagcaaaagtgaacagtgagaaccaggaaaaattgctgattttgcgtaaagaggatgcgagtgcatcctctgggcaaagcgagttatcgcttgtgcagatgggattaaagcaggtagtcgccagcagcttctggctggtattcgagttccagcacttcaaggtgggttgcaacgccgcccggaagttcccagtgaatggaatcgccaacgcgcagccccagcagtgcggcacctaccggagccataacggaaagctgagtattgctatcggtcatttttgccggatacaccagcgtgcgcacacgcacttcgccatcgctaagattgcggaatttaacccggctgttcattgtcaccacgtcgtgtggcatctcttctggcgaacacatttgggcgcgatccaactctgcgtttaacgcgtcggcgattggcaaaccagcataggcgggttgctccagcagaatatcgatgcgttcggcatccaggtcgttaatgatgatagttggtctggacatttttactccatgtcgtcggtgctgcgagtgtcgcagataaacatacccaaaagaaaaccctcaccgtcaggcggcgagggtttaactcacatgatgatactgactgttgctcactctttgaagtgatttgcgtcacattcagggaattcctcaatgcagcgcattatgtataaatcttaatcgccttggtttatggaagacgaattagcgtgttttgtaaatcagatgattaataacccgctttatcaatcacaaaggttttgccacagttacctgggtgaggttgtggcaagaatgagtttgcagaaagcggagcgttgatggcgtcagctttgatcgagatctgaatttcagtcaaatacgcagggttaccctggcacgttagcttaactgctttcacgttctcttttccccagcttttggcaaaggcggcgtcaaagtcacggcggctcactgttttaccgtaattatccgcaaggaattttccggcttcgctctctttaatttcttgattcaggcgtaccatcgtaccgaagtatgcgtccggatcaaaaccaaagcaggcaccgtgtttggcatattcgtagcgttccaggcaggaacgtccgccagctcctggcatgacttcacttagtttagcggccgtttccagtgataatccggtttccggcgatgaacacattcggctggcgcgcgcttctggtagattcgggattgggcgagtagcgcaaccgaagcgcatccagcggcgttcatcaacaccacgggcagcaaccgatttaggcaatcctggccacagaccatgtacggtcagaaaatcagctttgttggtcgtttcggtttgcaggcgacattcatctcgttcgttacgatttcgatcgtgttgactctggcaaaatccggtttgccaggagagggccaggacatagcgatcaaaatcgccatactgttttgcctgcaacgctaaggcgttggcagaagagaagggaagcagagaaaccgcgagcaacgcggcgttacgccagaatgctttcataatgggtgtggaactcatacatacactgaatactatctattaaatcataaaaaagcccgccaggtgggcttacctggcgggcgtgatgatttattcagcgtttggcgaacgtattagttccacatggcgagaatcggccagccaaccaacagcaacatagagatgtaaatcaccccgaagattgcgccaagacgccagtaatcttttgatttcacatagccacagccgtaaataatcaccccaggaccggttgcatacggcgtcagacagcccatgataccgatagacagcaccagcaggatacacagttgttccattggtacgcccggaatacctttaccgacggccagaataaccggcagcatggttgcggtgtgcgcagacaggctggcaaacaggtagtgtgcaaagtagaacaccagaaccagtacaatcaccgttgcgtttggtgagaatccttccaggtgcgtactcatggtaccggcgaaccagtcaataaaaccagaacgagtcaggccgttagccatcacaaccagagttgccaggttgaccagtgtgttccatgcgctgttatagcgggtaatgtctttccaaggcacaacgtgcagggccagcattagcgaaactgccagcagaccaaccgcagtagcattaatgacttcactgccaaatacccacaaacctaagctgagcaatacaaggccaatcagtgtccactctctgcgtgtcagcgcacccatggttttcagttcatcacccgcccaggttgccacttcttcactgtgtgtgatttccggtttgtacagcacgtaggaaagccacggcgcaatgataagcaagataaccccaaccggcaggaagcagaggaaccactgcaaccagctaatctggataccggcaattttgctgacgaactccagacccagcacgtttggtgccgcaccggtgacaaacatggacgaactcagactggtactaatgaccatcatccacatcaaatagccgccaatacgacgcgcggacggatcgttcgggaatgatttaaacaacggcggcaggtttttaatgaccggaaaaaccgtacccccggtacgcgcggtgttggaaggtgtaaacggtgccagcagaatgtcgataatgacaatcgcataacccaacgtcagcgtgcgtttgcccatgaatttcaccaggaaaagggcaatgcgacgacctaacccggaaacttcataccctaatgcaaaaataaatgcgccaaataccagccataccgtggtgctggaaaaaccagccaggccccatttcagcgcctgtttttgcgcattaaacgctgggtcagctaattctttggcatcaaagagcaggtaattactgccaataacgcaaatagtaaccgcaataaaactgatcgctgttgccggaattggctcgaggatcatgccgacaatcattgccacaaacacagcgaagtaatgccatgcctgcggcggcataccgtcggggacagggataagaaacatgacacccatcaccaccagtggggccaatagtttccatatattatcttttgctaaagacatacgggttctccgaaaattaatatttccaaatttatcaagtgcttaaataattaaatctgtgctaaaaaccaggtaaggatcagtaggtcagcactgccgcctggactgagatttcgttcgatacactccctgtcgaactgccggagataatcgagatcggcgggggttcgaatgccccctttttgcaataatgtttgcgcctcgcgctgtagccagcgcaggcccccctcgccaccgcgcgatgcaacgttggtatcgccgttgatcgccatcagtaggagcaaggtatcgagcaatgccagttcaggatctaacccctgatccagcagagtgaggtaatgcggcaaggcgtgattgatcaccagtggataacccgcttcggcttcaccgcgtgcgccggtaaggccaagctgttggtacaaccgttgacctgccgtcagttgtgaattattggtacgcagttcgcgatcggtcaggccacggcagaaacttgccgccgtagaacaaacggttgttggcgttaccggttggttgagttgaagcaaacggccaattgccgcacatagcagccctaaagaaaaaatgctgcctttatgcgtgtttacgcccgcagtggcgcggaacatatcaccttcgcaagccataccaattgggcgtaatccgtggagtaccgcttctggtgccatttccgcactacaggcaccaaattcaatgaaacggggtagccagccctgaatcgccagcgcgctgcggtggaaatcttccagcgccatatctttgtgcgcaccgcagttaatgcgatccacgaggcctggtttcggtgacagattgacttcagtcagcatggcgcgccagcccagcagggcgtactcatcgattaatgacgtcgcaagctttgtggttttagttgacgttgcaggcatcgacatcgttcagcagtgcctccatgcggttgagtaaatcggtcagttgatgggtttttccacgcgcgcagacggctgcgctttgttcgcacaacaggcagcggcgaggcggcagtgaatagtcgcggcgggagagaatttcgccttcgggcgtcaggacatcgatatcccataaccgcccgagaggatgactatgttcaagctcaatggtggcgagcttgaggtcgcgagccggggcggcaatgctcaacatgccctccggcccgctggcggaaaccagtgcagcctgctcctgaatttgccagccctgttttgcggctaaggcacgcaaggctgtcacgccatgattaaaaattcggcgtgtgacctcgctgtctttaatcggcccaggcgcaaccacggtaaaggagaccagtggaacaggatggcgcttgagccagacgtgttgccgtgcttgcctttcatcccggctgacgagcagctcgggaattgataccgcatggtggctggcgagttcaggaagcaggtgcatggcttattccttcacctgatgcacaacatcgatcaccgagccatcgcggtaacgcacaacggcaacgacgcggtctgtgaattcaatcggctgtggttcaccggtcagcagacgcgcacgttcgcgcagccactcaatggaaaccactttaatgcccgcttcctgcagacgttctgccagttccggacgtgccgggttaactgcgataccgtggtctgtgaccagaatatcgacactggagcctggggtgatgcaggtcagtacgttatccaccagagtcggaatacgaccgcgtaccagcggcgcgacgatgatggaaagcgcagaggcaatcgcggtatcgcagtgaccaccggaagcaccacgcagtacgccgtcagagccggtcagcacgttaacgttgaactgggtgtcaatttccagcgcgctcagtaccaccacgtcgagacgatcaaccgatgcgcctttcgaaccccagttagcgtactggttggcgctgatttcgatgtgattggggttacgggccagcgattgcgcagcatggctgtcaaagctctgcacatccagcagtttgcggatcagacctttttcgtgcaggtcaaccatcgtcgcggtaataccgccaagggcgaagtcggcgcgaatatcgcggctacgcattttgtcttccaggaaacgggttaccgccagcgatgcgccgccggtgccggtttgcatggagaaaccttctttgaagtagccagagttgacaatcacatccgcagcgctacgggcaataagcagttcgcgcgggttagtggtcatacgggtcgcgccagcgccgatttttgcagcatcgccaacgcggtcaactttgacgatcaaatcaacctgatcttgctcaatgcttgccggattatgcggataaggcagcagttcttcggtaagcatcacgacctgttttgcgttgtcggcatcaactattgcatagccgagggagccgcagcaggctttaccggtgtagccgttggcattaccgaattcatcacaggacgggacgccgaggaaagccacgtcgatattcagttcgccgctctgtaccagatgcacacgaccgccgtgagagtggatctgcaccggttctgccagcagaccacgggagatctcttccgccagtggaccacgcaggccggaggtataaatgcgggtaaccacgccctggcgaatgtgttctaccagcggcgcatggcaatcactcagggagctggacgccagggtcaggtttttaaagcccatcttcgcgatgacgtccatcaccatattgacggtcaggtcaccgccacggaaagcgtgatggaaggaaaccgtcatgccgtcctgtaaaccagagcgacgaatcgcttcttccaggttggcgcacagtttgcgatcgcgcgctttttcagcctggtaggtttgctttggcgagttctggaaagcggcaagatcgcattcagcgcgacgattccaggccgctacccgttcttgtcgttgagattgttcaattttctgcgtcattttgattgccttattcttcgcggatgccggaaagttctgcacgggagagcaccagacgggcgcgatcgataaccggaccgtccaccatcttgccgttcagggaaaccacgccgaggccttcgcgagcggcggcttcagcggcttctacgacgcggcgggcgtgatccacttctttctgggtcggtgcgtagaggttgtgcagcagatcaatctgacgcgggttgatcagcgatttgccgtcaaagcccagctgtttgatgtgggcggcttcttgcagaaatccggcttcgttgttagcgtcggaatagacggtatcgaacgcctgaatacccgcagagcgcgcggcctgcaaaatggaacagcgtgcgaacagcagttcagttccttccggggagcgttctgtacgcaggttgcgcacatagtcttctgcaccgagggcgataccgatcaaacgctcggaagcgtgagcgatttccactgcgcgggtaatccccagcggagattcaatcgccgccagcaggccggtgctgccgggttcacgaccacaggctttttcgatacgcaggatctctttttcaatatccagaacatcctgagcggtatcggttttcggcagacgcacaacgtccgcaccaccgcgaacgacggcttccaggtcgttaacaccccattcggaatccagcgcgttgacacgcacaatggtttcaatatcgcgatacagcggatgttgcagcgcgtggtaaaccatgcggcgggcggtgtctttttcacgcaatgctacggagtcttcgaggtcaaacatcagggcatcagccgggtagatgaaggagttgctgaccatcgcggcattggcaccaggcacaaacaacatgctgcggcgggtgcgagttttacgttgttgcagcgaagcggaaatcattggcaatcctcccatggcagagccgggataccgctggcgcgtgccagcagggcttccagtcgtgcacgtaaaatgcagtccagtgcgcctttgtcatcgacattcagctgtacgccgcgcacgttgtagcgggcgagaacgtccagaatggtggtgcgaattgcatcgccaaactgtttctcaacgctgctattgatttgcaggtcgatatcctgcgtatcgagtggggcgatgcgtatcatcacatccccagactcaagggtgcctgcaacggcgggctggtttattttcatttttcacctgtttctcatgcgggggtcttttgacgagctgccgcgtcctggcgggagtgctcaagcaggttctgcaaataatgcagcgtgactgcagggaccagcggcgcgatagccgtgagatcgtttttcgccagcagttgacgtacccgggaagcggatatcggcatctcctggtaacgcagccgctcaatttcaaccagttcgatgggcggtgcggagatagtcggcgtttccagccagtagcgcatatcctggttgtactgggcggtaacgcgacaaaagggttcagtaccgacaaagcggtgagttacacccagcgcgggagcgaggtactgacggaaaatcttcagatcaatttcggtgtaacaatggttaatgacgctctgttctttaatgaagtagcaagggaacgtagcgcgggagatgatgtattcggagccacgatgcacagtcaggcgtggaatatcggcggtgccttttaacaccaaatccagccggtcttcataggggaagcgtgaagaatcttctttgactaaaaacagatgcaaccagtcgcactgtgccgcagcctgttgaatcagataacggtgaccattcgtaaagggattggcgttcatcacaatgcagccaatcttgttccctggatgacgaaattttttcagcgattcggcatagcgtttcagtcgcgtggcgctgttttccatcagcaccatcacgccgggtacgctggtcagcgtggaaaaaccgcactggcggaacagcgcctcgtattcggttttggtataaataaacagatgcgtgctgtgccgctcataggcgaggtttatcaattcagtggctaatgtcagcgccagtccttcaccgcggacggattcactgatagcaacgcatttaataatatttccggcaattccaccgcacgcgataagcttttcatcgcgggttacggtaataaatacttcgactgtggtgtcaacgctcaaatcattttcatgcaggaattgggcgatttccgccatttttttattttctgaacgttttacgcgggtgaaaatatcattgccgaacataataaatagtatcctgaaggtgcatgttgttatcgatttgcaacgaatgttgttcaatgttgcaaactgataaccttttattttcacttgggagaaagggggtgatcgaggtatatctttttctcctttcgctatacatcctaaggagtatttcggcgtgaaattttgatttatttcacatagagttagtggttttttatttatttaatgattttaagttttttaattaatgtaattacgaaatgactcgcaggtttaagtgatttaattgatttaatgaataaaatttgccacgatcataattaatatctatgtattttgattcaacattttaattacatccgtcaaagaggctcgggacaacccgcaaggaaaacaatgttgcagcttaacgagaataaacagtttgcatttttccaaagactggcatttccgctgcgtatctttttgctgattctggtgttctcaatatttgtcattgcagccctggcgcaatattttacggccagttttgaggactatttaacgcttcatgtacgcgacatggcaatgaatcaggcgaaaattattgcctccaatgacagtgtcatctctgcggtgaaaacgcgtgactacaaacggctggcgaccatcgctaacaaattacaaagagataccgattttgattatgtggtgattggggaccggcactcgatccgcctttaccatcctaatccggagaaaattggttatcctatgcagttcaccaaacagggcgcgctggagaaaggggagagctacttcattaccgggaaagggtcaatggggatggcgatgcgcgccaaaacgccaatctttgatgacgatggaaaagtcatcggcgtggtgtcgattggctacctggtgagtaaaatcgatagctggcgggctgagtttttattaccgatggcaggtgtgtttgtcgtgctgttagggattctgatgttgctgtcgtggttcctggccgcgcatatccgtcggcagatgatgggcatggagccaaagcaaatcgcacgcgtggtccgtcagcaagaggcgctgtttagttcggtttatgaagggctgattgcggtggatccgcatggttacattaccgccatcaatcgtaacgcaagaaagatgctggggctgagttcccccggacggcaatggttgggtaaacccattgttgaagtggtcaggcccgccgatttctttaccgaacagattgatgaaaaacgtcaggatgtggtggcgaactttaacggtctgagcgttattgccaaccgggaagctattcgttcaggtgatgatttgctgggggccattatcagctttcgtagtaaagacgaaatttccaccctcaatgcgcaactgacgcaaataaaacaatacgttgagagccttcgtacattgcgacacgagcatctcaattggatgtcgacgctcaatggtctgttgcagatgaaagagtatgatcgcgtgctggcgatggtgcagggggagtctcaggcccagcaacagcttattgacagcctgcgcgaggcgtttgccgatcgccaggtggcggggctgctttttggtaaagtgcagcgcgcccgggaactggggctaaaaatgatcattgtccccggtagccagctttcgcaactgccgccaggactggatagcaccgagtttgcagccattgtgggcaatttacttgataacgccttcgaagccagcctgcgtagcgatgaaggaaacaagatcgttgaattattcctcagcgatgaaggcgatgatgtggtgattgaagtcgccgatcagggctgcggcgttccagagtctctacgagacaaaatatttgagcagggggtcagtacgcgtgctgacgagcccggtgaacatggcattgggttgtacttgattgccagctacgtaacgcgctgcggtggtgttatcactctcgaagataatgatccctgcggtaccttattttcaatctatattccgaaagtgaaacctaatgacagctccattaaccctattgatcgttgaggacgaaacgccgctggcagagatgcatgcggaatatattcgtcacattcccggattcagtcagatattactggcgggaaatctggcgcaggcccgaatgatgatcgagcgttttaagccggggctaatcttgctcgataactatcttcctgacggtagagggattaatttactgcatgaactggtgcaggcgcattatcccggcgacgtggtgtttaccactgcagccagcgatatggaaacggtgtctgaagccgtacgttgtggtgtatttgattatctcattaagcccattgcctatgaacggctggggcaaacgctaacccgtttccgccagcgtaaacatatgctggaaagtattgatagcgccagccagaagcaaattgatgagatgtttaatgcttatgctcgcggtgaacctaaggacgagctaccgaccggcattgaccccttgacgctaaacgcggtgcgaaaactgtttaaagagcctggtgtgcaacatacggcagaaacggtggcgcaggcactgaccatcagccgcaccactgccaggcgttatcttgaatattgcgccagccgccatctgattattgctgaaattgttcacggcaaagttggcagaccacaacgcatataccacagtgggtgacatgataaagccggaggaaacttgcctccggcattactatttacttgcctgtgaccgctgctgccgttcctggcaccatcagctctgtagcaacgataacaatcaccaaaccaacaagcaccggtaccgaggtgcgttttacgacttcaaacggcgagatcttcgccatcccggcaaccgcaacgactacgccagaaacgggcgaaagggtacggccaaggtttgacgcctgcagcatcgggatagtcaaatacgccgggttaatgccggaagagtgcgccagtttcgggatcatctcaacaaacgcataaaacggcgcattgcctgaaccggtcgtgactgccgccagcattgtcagaatcaccaataccagcatcaggatgatactcgccgaaccaaacgaggtagcgatagaaatcagactttgaataaagccgatggtgctaagcccctgagcgaataccccagcggcaaccagcagcatcaccacgttagcaaacgcatctgccatcccgcgataagccacttccagaccagagaaaactttctgggtattaaagctgcggaggaactccagaatggaggcaatcagcatacaaatcaccagaatagtgatgatgtgtaattgcggaccccatttaccgtcaaaaatcagtacaccgatgatcggcgtgaacggcaaaatggcataaaacgcaggagcagtggtggtgatttcactgacatctaacatttcatgagagatgtgctcttttttatccagataacgttgccagaagaagtgggcgatcgccatgccgataattgcagcaattgagataggcagcgtcgttttgaaggcgaagtcaatcagcgacatttcggaagcttgcgccgccagcaccacatcccctgaagtcggtgcgagaataatcgccgccggggaggcacaaatggcagcagctgcgccacgactgataccaacgtttaccatcaccggaaatagggttgccatcagcaaaacacccagaccggttgcggaagagacggccagagacatcagacaggcgacaaaataggcggcaatcatcagcaggtaaggggagttaatatactgcaatggttttgacgccagcttgaccaccatatcattcgcgccgatatgggtcatgtaagcggcaaatccacacagcatcataatcatcatgccgaggtcgccgccgcggctcattagtaatattttaacgtattcaacgatatccgtggcgctgtagcctgttgaagcctggctggacggtaacactttgtgccccataatggcactgataatcagcaataacaggccaccgacaaataacacaccagtggcggaataccctttaatgatgtagcgagctacacccacaataaccacaaccccaataaggagctcaatgaatgtcagcataatttttcctgtctccaggccccaaagtaaataataaaaaattcctaaagcttaaggaaaaaatatgcccaataaattggcgatgaatgctgattaaaatcaagaaaaactgccattaagacattgaagttgctgtttttatacatagataacaaaacgcatatttagcggttggcaattatcacataataatgtgtgcaaattgatggtggattgatgcaaatttgttaattgcaatggtgttagctgcggctgtgcgctcaaaaaataatctaatatgagcataggttgacgatatatattatatacttcgttaagatgattgttgtatctcgttaaaaaataaaataatttttccttgattgcattttgtcatcaaaaaagacttggtttttcttttttgactattcccatcgcagaaaacgacgcatcatctttaatcgatgcgcggaaatatttaacttgaacaagcggaaataaatagagcagctattcagattattctttatgttgggtctattaaggttatgttaattgtagctttgctatgctagtagtagatttttgataaatgttttatggtcacaaatgaacgtgagtaaatatgtcgctatcttttcctttgtttttattcagttaatcagcgttggtaaagtttttgctaacgcagatgagtggatgacaacgtttagagaaaatattgcacaaacctggcaacagcctgaacattatgatttatatattcctgccatcacctggcatgcacgtttcgcttacgacaaagaaaaaaccgatcgctataacgagcgaccgtggggtggcggttttggcctgtcgcgttgggatgaaaaaggaaactggcatggcctgtatgccatggcatttaaggactcgtggaacaaatgggaaccgattgccggatacggatgggaaagtacctggcgaccgctggcggatgaaaattttcatttaggtctgggattcaccgctggcgtaacggcacgcgataactggaattacatccctctcccggttctactgccattggcctccgtgggttatggcccagtgacttttcagatgacctacattccgggtacctacaacaatggcaatgtgtactttgcctggatgcgctttcagttttgagacaaatgaagttttagtaacttctttaaaatcaatagctaaaataagtaacatcaaaaataacgcgacttttatcactttttagtaaagttacactggacaaagcgtaccacaattggtgtactggtaaccgacacagcatttgtgtctatttttcatgtaaaggtaattttgatgtctaagattaaaggtaacgttaagtggtttaatgagtccaaaggattcggtttcattactccggaagacggcagcaaagacgtgttcgtacacttctctgcaatccagactaatggttttaaaactcttgctgaaggtcagcgcgtagagttcgaaatcactaacggtgccaaaggcccttctgctgcaaacgtaatcgctctgtaagatacgtcagcaagaattcaaaacccgcttaatcagcgggttttttttggtctttagtgtgcggttgaggccgaaaacagccagaatgccagtgcggtcatggcaaaagaccccagaaggttgacgaaaacgttcagtaatgcccagccaaagcggccctcttgtaacaaaaacaccacttctgccgaaaatgttgagaaggttgttagaccgccacaaaatccggtggtgattaatactttccacactggatcaatgttcgtcatcctgctgaaccatgcgaatcctattcctatgatgaatgccccaatcaggtttgctgtcagcgtccccaacggaatcgcctgatgcagtgggttaaatcgcatacttaacagccatctcgccacgcttcccgtaccaccgccaataaaaactgctaaaagaagttgtaacactgcaaaatcctgctatttgatttgtatgagtgataagtgtaacgccgaataatcgtcgttggcgaattttacgactctgacaggaggtggcaatgctggttgccgcaggacagtttgctgttacatctgtgtgggaaaagaacgctgagatttgtgcctcgttgatggcgcaggcggcggaaaacgacgcatcgctgtttgccctgccggaagcattgctggcgcgcgatgatcatgatgcagatctatcggttaaatcagcacagctgctggaaggcgaattcctcggactttacggcgagaaagtaaacgtaacatgatgacgacaattctgacgattcatgttccttcaacgccggggcgcgcatggaatatgctggtggcacttcaggcaggaaacatcgtcgcccgttatgccaaactgcatctctatgatgcatttgccattcaggaatcacgccgtgttgatgctggtaatgaaatcgctccgttactggaggtggaagggatgaaggtcggtctgatgacctgttatgacttacgctttccagagctggcgctggcacaggcattacagggagctgaaatcctggtacttcctgccgcctgggttcgcgggccgctcaaagagcatcactggtcaacgttgcttgccgctcgtgcgctggataccacctgttatatggtggcggcgggggagtgcgggaacaaaaatatcggtcaaagccggattatagatccctttggcgtcaccattgcggcagcgtcagaaatgcctgcactcattatggcggaagtgacgcccgaacgtgtgcgtcaggtgcgcgcgcaactgcccgtcttaaacaaccgtcgctttgcgccgccgcaattattatgatgtttttttactcggcgcttgattcaccttgttacagattgctattgtgtgcgcgcgtcgaatgaccgttaatattctctggtttttaaggcgcgttctgttgccggttatatgtcaagaaggtatctatgggtgagattagtattaccaaactgctggtagttgcggcgctggtcgttctgctgtttgggactaagaagttacgtacgctgggcggagaccttggagcggccattaaagggttcaagaaggcgatgaatgatgacgatgctgcggcgaaaaaaggcgcagacgttgatcttcaggctgaaaagctctctcataaagagtgacgtggcgagcaggacgctccctcaatatcttgttcgatacaaaaaacccgcttcaaaaagcgggttttttatcagacagatgtaagtaattattacaggattacttaacttccatccctttcgcctgcaaatcggcgtggtaagaagagcggacaaacggaccgcatgcagcatgggtaaagcccatcgccagcgcttcggctttcatttcgtcgaactcatccgggctaacgtaacgttgaaccggcaggtgatggcggcttggctgcaaatattgccccagcgttaacatcgtcacaccatgacggcgcaggtcgcgcattacctcaataatttcttcattggtttcacccagtcccaccatcagaccagacttggtcgggatttccggatgcgcttctttaaagcgttccagcagcttcagcgaccagttgtaatctgcaccaggccgtacctgacggtaaatacgcggtacgttttccaggttatggttgaacacatctggtggcgttgcagtcagaatatccagagcacgatccatacgaccgcggaaatccggcaccagagtttcaattttgatttgcgggcttttttcccgaatggcagtaatgcaatccgcaaagtgctgggcaccgccatcgcgcaggtcatcacggtcaacggaggtgataaccacataacgcagcgccatatcggcaatggtctgcgccagtttcactggttcattggcatcaggagctaccgggcgaccgtgggcaacatcacagaacggacaacggcgggtacaaatagcgccgaggatcataaacgttgctgtgccgtggttgaagcattccgccaggttagggcaggaggcttcctcgcagacagaatgcaggccatttttgcgcattgcggctttgatgccctggatacgtgtagagtccgctggaagcttgattttcatccattccggcttgcgcagcagggcttcgcgctctgttgccacgtttttaaccgggataagggccatcttatcggcatcgcggtatttaacaccgcgttccatcacaatgggtttactcatagcgtgcgtgttccagttgcgaattacgaaggaaagcgtttcaattcaatagattgttgtaattatcaactatttttgaattaacgactggcagtatatcattgaaacggacctgaaagcagccaaagcggtcgcgaaaatgtaaaattgttgttggattgtgccattttatcgttctgcgctgtgatctggctgtaacaatactttttcaaaatgcattacggataacatctattactccgtgcaggatgggatcacgcaggctgaatttgttgtagtggatagagaaatctatttgctcctcatttaaggacggaaaaggcagtttttccagcggccagcagcggctaaacaggttataaaaacggctgggaataatcgctaacatgtcactgttggcaaccagtgcagcgattgtcaaaatgttgtagctggtgaaattgatttgccggtccggaaacatttcttgaactctctgccgcagaccgctgaaattttgctcttccggtaacagaagtacatgcgcagcgttgtcgatagtctctctgtcatcttctaaagagagtagtggatttccctcgcggcaaattaacaccatattgtcggtgaacagaacatgatgttgcaccgtacgattggtgcaaaacatgttatcgatgatgagatcggtttgaaactgactgagttggttttccgcgtcgctgatgggcgggttgcgcagtaaaagctgcggatagtgagttttaatcgcccgatagatgacaggaaggaccagtgctccgaccgagggagtggtcgcaatagttatcgttcgttgcttatcatagcttccttcgatatccagcgcgccaagaatggactcaaggccctgactgatatactcatgtagatgcatcgcaaatgcggtaggagtgacaccctggcctttgcgaataaacaatgggtcagggaatataacgcgcagtttctgaatagactgactgattgccgagggggtcagattaagcactttcgctgcattaacgatccctttatgtacatatacagcttcaaaaatagtcagaaggttaagatcaatatttcgtaaggttgtaaatatttgtggtttaccttctgacgactttctgcttaaacagggttcaatttgattattactatccacgcacttactccaattttattcatggaaaaataatatttaaaaaattacaataatcttatgtctaattggaacggaacgcttttgctcaccataatcaactatttcaataggttaatcaatggggtgagttacggagcaaggcgtggcaccgcatttctgcaagtgataaagaaaatatacaaacgcgaaggagatgtaaagcattagcagatattatgagtaatgacccagtgtaaattgggccattgatgtatggaattaagcggtaatatattcgaagtccggattgtttagtagcgctaaaatattttccagtaaacgtggagcaatattattagtcgtcgcttcgggtttccattgtgatattttagccatttccattccggcatacccacaaggattaatacgtaaaaatggtgaaagatccatattgacgtttaatgccagaccgtggaatgaacaaccgcgtcgaatacgtaaacccagtgagcaaattttcttttccccaacatagacacctggcgcgtcagcccgaggatgcgcttctatacccagttcagccagggtattcaccactgtttgctcaagcaaggtcaccagttcacgcacaccgagtttacggcgtttcaggttaagcaacacatacatcacctgttgccccggcccgtgataagtcacctgcccaccgcgatcgctctggatcaccggaatatcacccggcattaaaatgtgctccgcttttcctgcctgaccttgggtgaataccggatagtgctcgaccagccagatttcatcaagggtactatcatcgcgggtatcggtgaattcatgcatagcctgggagattggctcgtaaggctgaagaccgagctggcggacaagaattttatcctgatacaaaacggcatctccgtggagaatgagtaaaagtgggggaaaagtatatcacagcgaggagaggggagttacccgaccaggagccgggtaacggagaagcgagttacagaaccatgcggacaatatcgattttgcccagttcttcatacagtgtttcaacctgctcgatatgagtggcgttgatagtgatagataccgagtggtagttgcctttgctgcttggttttaccgttggggtgtagtcacctggcgcatggcgctgtaccacttcaaccacctgatcaaccagctcaggtaacgcctgccccataactttgtaagtaaaaggagtagggaattcaagcagttcgttaagtttggttttcatgtcagctccggcgtaacgtaattaaatagcaactcccgccagaaggcgggagttttttactgatgcttagtatatggggacggaaattacactttcaagtgtttaatttttaaccaaaccagtgatggaacattaatttaatgtaatcaatgattttgccgaagaagttaccttccgggatttcttgcaacacaaccagcgggcgttgctcgatcgttttgccatcaagctggaagttgatagttccgacgacctgattcttttgcagcggcgcatgcaattcactgctgttcagcacatagctggctttcagatctttcatgcgaccacgcggaatggtcaggtacacgtctttatcaacccctaacgaagcgcgatcagaatcaccaaaccaaaccggttcagaggcgaactctttacctactttcagtgggttaacggtttcaaagaaacggaagccccaggttagcagttttttactttcggcttcacggcctttaaaagtacgtccgcccattaccgcagaaatcaagcgcatctggccttcagtcgcagaagcaacaaggttgtaacctgctttgtcagtgtgtccggttttgatgccgtcgacattcaggctgttatcccataacaggccgttacggttcagctggcgaataccgttaaacgtaaattctttttctttatagatcgagtattcattcggtacgtcacggatcaatgcctggccgatcagcgccatatctcgcgcggagctgtactgaccatcagcatccagaccatgtaccgtctggaagtgggtatttttcaggcccagtgcgttaacgtagctgttcatcaagccaacaaaagcgtcctggctaccagcggcaaaatcggccatggcgacacaagcatcgttacccgattgcaggttaataccgcggatcagctgagaaaccggaacctgcatgcccggtttgaggaacatcagcgaagaacctttaaacaccgggttaccggtggcccatgcgtcgttgccgatagtgactaaatcagtttctttaaatttaccggctttcattgcctggccgataacgtaactggtcatcattttggtcaggctggcaggatcgcggcggacatctgcgttctgttcggcgagcactttgccggagttatagtcaatcaggatgtaggactccgcatcgatctgcggtacacccgggatcatagttttgatattcaggtcatcggcatgtgcagcagagataaaggctgtgcaaagagccgtggtgagcgccaggcgcttcatgatacgagcggaaaaaatggtattcatggtctgaactacgacatccgtgatggaattaaaaaagtgccctactatagcaaatgcactaccggcaggcatctgactttccgcgtgactttgttaacgtcatttacagaaattgacacatcagatgcctgctttacgctactgcgcggtagtaataaatgactgtaattgggcttcggtttgcaaacgttgctgcaaggtactggcttcggctttgctggcgaatgggccaagctggatccgccagaccgcgccattttgagttacgcgaccggggacgccgaacttctgtcccagttgctgttggtactgttgcgcacgagcctgatcgcttacggccccgacttgcaccataaagttgccgctggcgctttgcgagacggcttgcggtgtcaccattgcaggcgaggttgcaggcgttgtcgacggagctgtaacaacgggctgtggcgcaggcgtcggttcgctgccttccagtacaccaggcgctaaggtcgttggtgcgccgaggaaaccgctactggttaccggcgcgccggtcggatcttcgctttttagcgtcgaattactgaccggaagaatgtcaccctgcgggccagacactgaacttgttcccgcgccaccgcttaaatcgggaggtgcaggcagggcgtaagtctgtttggcgactgtggtacaagccataccaggaccagaaagcgaaccatcctgggcaacaataatcggatcgatacgaactttggtgttgtttgacgtgttaagacggtcagctgccgcgcgagaaagtgaaataacgcggtcgttgccgtaagggccgcgatcattaatgcgcaccacgatcattcgcccgttagccaggttagtgattctggcgtagctggggatcggaagcgttggatgggctgccgtcagctgtgtcggatcgaatgcttcgccagaggccgtcaggttactgccgggttcggcatcatagattgccgccagtcccgcctggctaaatcgagacggatcctgcacgattttgtagcttttaccgtcgcgctggtaatcctgatttgccgtcgcgttcagtggttcgaaacgcgggtccgccccgctaatttcaactatagggccgttacataccgcaggctgcggtacacttaccgtctgttgctgaccatcatcgcttgtacatgccgcgagcattcctgccgcgatgcagatcccgagccactgcttacgcattgcgcacctcttacacgcttttcgacaacattttcctgtgggtgtggattgacattacaatcccgaacccagccatcagcacaattagcgccgatcctccataactgaccagtgggagcggaacccctacaaccggcagaataccgcttaccataccaatatttacgaagacataaacgaataatatcagcattaagccgccagccatgacgcgaccaaaggtggtttgcgctctggcggctatccacagcccgcgcatgatcagcagaatgtagagagcgagcagaatcagaatgcccactaatcccagctcttccgccagtaccgcgaagataaagtcagtatggcgttcggggagaaattcaagctgtgactgagtgccgtgcagccagcctttgccgcgtaatccgccggagccaatagcaattttagactgaataatgtgatagcccgcgccgagtgggtctgattccgggtccaggagcatcattacgcgctggcgctggtaatcatgcatcaggaagaaccacagaatcggaatgaacgccgctaccagcactactgcgacgccaatcagacgccagctaaggccagagaggaacagtacaaacagaccggaaagcgcaacgaggattgatgttcccaggtcaggctgtgcagccaccagcagcgtgggcataaatatcagcaccagcgcgatgccagtgttcttcaacgatggcgggcaaacgtcgcggttgataaagcgcgcaaccatcagtggtacggctattttggcaatttccgacggctgaaaacgaacaataccgaggtccagccagcgttgagcacctttagagatggcaccgaaagcatctaccgccaccagcaaaataatacagatgatatagagatagggggcccagccttcataaacgcgtggaggaatttgcgccatcaccaccatgatgaccagacccatcgcgatttggccgattttacgctccatcatgccaatatcctgaccgctggcgctccagataaccagggcgctgtaaaccagcaatgccagtaagatcagcagcattgtgggatcgagatggactttatcccagaatgtttttttattcggattatccgtcatgattaatggtcctccgctgcggcaaccgctggattttccgcaggcagatcggtgttgttatcacccagcataatgtggtcgaggatctggcgcatcagtgtaccaaccgccggacccgcaccaccgttctccagaatcatggcgacagccacttgcggattgttgtatggcgcaaaggcggtcatcagtttgtggtcacgtaaacgctcggcaattttgtgcgcattataggtttcgttcgctttcagaccgaagacctgagcggtaccggatttcgccgcaattttgtacggtgcgctagcaaagtatttatgcgccgtaccgttagggcggttagcaacaccgtacataccgtctttcgccagctcccagtaaccggaatgaatatcgccgacgggcggttcatgcggctgtacccatggcacctgtttgccgtcttcggcggtgctcatcagcaaatgaggaaccttcacgataccgtcattaatcaggatcatcagtgccttactcatctggattggggtcgctgtccagtaaccctgaccgataccaaccggaatggtgtcaccctgataccacggttttttaaagcgtttctgtttccattcgcgggtaggcatgttgccggaacgttcttccgccaggtcgataccggtgtaatgaccataaccgaatttacccatccattcggagaggcgatcgatccccatatcgtaggccacctgatagaagaaggtatccgcagattcttccagcgatcttgtgacattcagacgcccgtggccccattttttccagtcacgataacgtttttccgaacctggcagttgccaccagcctgggtcaaacagcgtcgtattgcgcgtgatcaccccggcgctcaatgccgaaaccgccacatagggtttaactgtagacgcgggaggataaaccccctgtgtggcgcggttcaccagcggtgtattcggatcgttcaacaaggcggaataatctttgctggagataccgtcaacaaacaagtttgggtcataactaggcgtggaaaccagcgccagcaccccacctgtacgcggatcggtgactaccacagctgcgcggctacccgccagcagcgtttcaatatattgctggagtttgagatccagcgtcaggtaaatatcgtgtccggcttgcggtggtacttcttttaactggcgaataacacgcccacggttgttaacttcaacctcttcataaccggtctgaccgtgcagcacatcttcatagtaacgctcaatgcccagcttaccgatatcatgcgttgccgcatagttggccagtttgccgtcattattcaggcgttcgacgtctttatcgttgattttcgacacatagccgatgacgtgggtcaacgccgaaccgtaaggatagtaacgacgtttatagcctttaacttcgacacccggaaaacggtactgattgacggcaaagcgagctacttgtacttcggtcaggttagttttcaccggaatagaggtgaaacggtgtgaacgtgcgcgctcttttcggaatgcagcaatatcgtcatcggtcagatctaccacgctgcgcaaagcgtccagcgtttgctgcacgttatcgactttctccggcatcatttctatctggtagatagtgcggttgagggccagagggataccgttacgatcgtagataatgccgcggctgggcgcgataggcaccagcttaatgcggttttcattagagcgggtctggtagtcggtaaagcgaacaatttgcagattatacaggttggcgataagcacgccggtcagcagcaaaatccccaaaaaggcgaccagcgcccggcgcacaaacagcgcggactctgccgtatagtcgcgaaaagagttctgtagtttcatccgctgcgttttctactcaaagctcccttatcactcacggtgataaggatggttggtggtgatgctccacgcccggtacagactctctgcgaccagcacgcgaaccagcggatgggggagggtaagcgccgacagcgaccagctctgctcagccgccgctttacaggcaggcgacaacccttcaggcccgccaatcagtagactgacgtcgcgaccatccagcttccagcgttccagctcagcggctaactgcggcgtatcccagggcttgcctggaatatcgagggtgacaatgcggtttttgcctgcggccgccaacatctgctcaccctctttgtcgagtatgcgcttgatgtccgcattcttgccgcgttttccggccggaatttcaatcagctcgaagggcatatctttcggaaaacgacgcaggtactcggtaaaaccggtttgtacccagtccggcattttcgttcccacggcgacaagttgcagcttcacgcattaactccagagtttttccagttcatacaggcgacggctctcttcctgcatgacatggacaatcacatcgcccaaatccacgacaatccagtcggcgctgttttcaccttctacgccgagcggtaacaggcccgctgcgcgagactcctgcacaacgtggtcagcaatggacataacatgacggctggacgtacccgtacagatgatcatgcagtcggtgatgctggatttgccctgaacgtctaaggcgatgatgtcctgacctttgaggtcatcaattttgtcgataacaaaatcctggagtgctttaccctgcaagttttccccctgggtgaatcaaatagataaaaatggtctgtcagtatacctgaaccagaggcgatttcgggacaattgtcgccgaatcggctttcgaaagtgggctatcatcccaccccgcgccgcagattgcatcgccatttttgtaaaacaatttctacaaagtcgtgtctggcggaaaaagtctggctgcggagaatatcagcctgcccgggtctgtcaatggtcgttgcggcttacccgtaaaaaaacagaaaagtcatgcattctcgaccccgatggcacggctattgaggacgcgtagcgtcgcgaatttttggttgatatcaatggcgctccaacacccctggtcaacgcgaaaatgccacatagcttcggcaggcatgccaattaaacgggcgattaacagactcagtacaccctgatggctgacgactaaaatattctgatagtgctgaaattcactaagccttgcgataaagcgttccacacgttgcgaaaatgcctgaaatccttcaccgttcgtggggattgcatgctgccagtcattgcaccacgcgctatagttttcggcatcttcttgcatgaggtcgcgatgatgtcgcatctcccagtcgccaaaaaacatttcgttgagttcaggtatgatttgcacggggagctggcggtcactgagaaccagtcgcgcggtatgctgtgcccgttccagttcactgcataaaaccagatcaaaggaaacaccatgtagcagcgtatgcagattttgcgcttgctcaataccgcgcgcggtcaggggggtgggcgcatgaccgctgtaaagaccatcgatattcgcttgcgtttcaccatgacgaattaaccacagtcgcatcatgccctccgtaacgacaggtatcagcgatacaagccttgttggttaatgtaagtcagtaccggttccggcaataaatcctcacatgattcaccgttttgcaaacgttcgcggatgatggtcgccgagatgttaaaccacggcgtttcagccagataaattttaccggcaggctgaaggtgaagatcttccgggttatgtgtcaaatgatcttccagccattgctggtattgcggttgcgccatttcaagtgggtaacctggacgccgacagacgatcaaatgtgcattgtcgagtatcgtttcgtattcgtaccaggtcggaaaggtcagcagtgaatcctgaccaataataaacgccagcggcacgtccggtccttgttcctgccgccactctttcagtgtttgcgcagtgtaagagggggcattgcgctttagctcgcgttcatcaagagtaaataatggcttgtcggcaatcgccagttcaagcatgtgtttacgctgcacgctgttcgcttccggctggggacgatgcggaggaacattattagggatgattgtgacccgcgtcagaccaatcaaattcgccagcgtttccacgggttttagatgaccatagtgcaccggatcaaaggtgccgccaaacagagcctgtaaagatttcatatcaaccgtcgataaatacgtccgccaggggtttatggcacaacagaagagataacccttccagctctgcccacactgactgaccgtaatcttgtttgagggtgagttccgttcgtgtcaggagttgcacggcctgacgtaactgcgtctgacttaagcgatttaacgcctcgcccatcatgccccggcggttctgccatacccgatgcttatcaaacaacgcacgcagtggcgtatgggcagactggcgtttcaggttaaccagtaacaacagttcacgttgtaatgtgcgcaacaaaataaccggttcgctgccttccagacgcagttgctgaagaatatgcaatgcgcgcttactttttcccatcaacaaagcatcaacccaatgaaaaggggtgaaatgcgcggcatcattcaccgcctgttcaacgcgcggtaatgtcaatttgccgtctggccagagcagcgataaacgctccagtgcctgagccagcgccagcaggttaccttcataacagtagcagagcacctgatttgccgcgtcatccagttctaagttgagctgttttgcgcgcgcagcaacccagcggggaagctgagcctgctccggtgtctgacaggtcacctgcacgctgcgattcgcaagcgcagtaaaccaggcggcattttcttgcgctttgcttaatttattaccgcggacgatcaacagcaggtcgtcatgcagaagtccggtgagtgtgagaagttgctcattgatcgccgcattcggtccgttttctggtaacaacagcaatagcgtttgtcgactggcaaacagactcatagcctggcataacgaaaagatcgcattccagtcagtgttgggatcaatggaaaaagtgtggtgttcttcgaatccttgtgccgcagctacctgacgaacagcgtcctggctttcctgcaataacagaggatcgttaccaagtaaaagatacgccgcgcgcagcccttcattgagctgcgcgcggagttgttccgggtacaaccgaatcatcagttacccagcgtggtggagacgcgtgcaggcgttgccggagtatccgttgtggtcgacgtctgttcttcgtcggaacgaatatccgcagcacggatgcttggcagcttacgaatcagctgttcggcagcacggtcgtacatctcttttacgatcatgtcttgttcgttatctttcgctaacgccatttgcgggttatcgaagaacgaacggaagactttggcgctaatcgggtagatatcacggccggggatcaacacggtcgcattaaccgtcatgatcatctgatactctgctgtttgaccgttacggaataccgatgcggtatctttcgcgatgctcactttacccaaacgcaaggatggaacgtccttacgcgtggtttctttatcaagcaactcgacaccattcagacgtaactggttacgcaccgcacggcttaatggcccgttcggatcgcctgagtccaggatcatgaccttcatagtggaaggaacctgcgtggtatcacgcagatgccagccacacccggcggtgattaacaccgccagagataacaacaatgttgccagatatcgcacgcttcctcccgcgcttagccaacgaccagattgaggagtttacctggtacgtaaatcactttacgtacagtaacgccatcaagatattttgctaccagatgttcctggccagcacgttcgcgaacctgttcttccgttgcgtccaccggaacggtgattttggcacggactttaccgttaacctgcaccacgaccagcgtggagtcttccaccatcgctttttcgtcagcaaccggccacggcgcgttgtcgatatcgccttcgcctttcagttcctgccacagcgtgaagcagatgtgcggggtgaacgggttaagcatacggacaacggccagcagtgcttcctgcatcagagcgcgatcctgctcgccatcggttggtgctttcgccagtttgttcatcagctccataatcgccgcaattgcggtgttgaaggtctgacgacggccgatatcatcggtcactttagcgatcgttttatgcacatcgcgacgcagcgctttctgattttcagtcagcgcatcaacgttcagtgccgcaacatcaccttttgctgtgtgctcgtaaaccagtttccagacacgtttcaggaagcggttagccccttccacaccggattcctgccattcgagagtcatatcagccggagaagcaaacatcataaacagacgaacggtgtccgcgccgtaacgttcaaccatcacctgcgggtcgataccgttgttcttcgacttggacattttgctcatgccggtataaaccagttcatggcctgccgcatctttcgctttcacgatacggcctttctcgtcacgttcaacgatagcatcaaccggggaaacccagttacgttcgccgttttcgccaacatagtagaaggcatctgccagcaccataccctgacacagcaactgtttcgctggttcgtcagagttcaccatgcctgcatcacgcatcagtttgtggaagaagcggaagtagagcaggtgcataatggcgtgttcaataccaccaatgtagatatccaccggcagccagtagttagccgcttcggaatccagcataccttctttgtactgcgggcaagtgtagcgcgcatagtaccaggaggactccataaaggtgtcgaaagtgtcggtttcacgcagtgctggcataccgttaacggtagttttcgcccactccggatctgctttaatcgggctggtaatgccgtccattaccacatcttccggcaggatcaccggcagctggtcgtccggggtcggcattacggtaccgtcttccagcgtcaccatcggaatcggcgcgccccagtaacgctgacgggaaacaccccagtcgcgcaggcggtagttcactttacgctcgccaacgcccatcgcagtcagtttatcggcgatggcgttgaaggccgcttcatggtcaagaccgttgaactcgccagagttgaacagcacgcctttttcagtcagggcttgctgagaaagatctggctcagagccgtcagctgccaggataaccggtttgatgttcaggccgtatttagaggcaaactcgtagtcgcgctggtcgtgccccggtaccgccataactgcgcccgtgccgtactccatcaatacgaagtttgctgcccaaacgggaatttcttcgcccgttaatgggtgaaccgctttaaagccagtatcgacgccttttttctccatcgtcgccatttcagcttcggcaactttggtgttacggcattcgtcaataaaggccgccagttcaggattattttccgccgctttctgcgccagcggatgacccgcagctaccgccaggtaggtacaacccataaaggtgtccgggcgggtagtgtaaacggtcagcgtgttgtcatagtcgttaacgttgaaggtgatctccacgccttcggaacgaccgatccagttacgctgcatggttttaacggtgtctggccagtgatccagtttatccagatcgttgagcagctcgtcagcgtaagcagtgattttgataaaccactgcgggatctctttacgttcaactttggtatcgcagcgccagcagcagccgtcgataacttgttcgttcgccagtacggtctggtcgttcgggcaccagttgaccgcagaagtcttcttatataccaggccttttttatacagctcggtgaagaatttctgttcccaacggtagtattccggcgtacaggttgccagctcgcggctccagtcataaccaaagcccagcattttgagctggtttttcatatacgcgatgttgtcgtacgtccacggtgccggagcggtgttgtttttcaccgccgcgccttccgcaggcagaccaaacgcgtcccagccgatcggctgcaggacgtttttgcccagcatacgctggtagcgggcgatcacgtcaccgatggtgtagttacgtacgtggcccatgtgtagtcgaccagaaggatagggaagcatagacaggcagtaatacttctctttgctctcgtcttcggttacttcaaatgtgcgcttctcatcccaatgaagctgtactttggattctatctcttccgggcggtattgctcttgcatggcagccagtggtcctgttttcaatacggctacaaatgtagcgttgaggtggtttttcagatccgcatagcatagcccaaacgtccgcgtcaaaacagcctttcgcgcactcgacgttgaaatgatgcccggattattcatacattaatttacagagtttgtgggcgtattagcaaagcaaggaacaaagaacgtctattattatagtcagttaacgacccgggagatgaaacgatgaacaaggttgctcaatattaccgtgaactggttgcgtcactgagcgaacgcctgcgcaatggcgaacgtgatatcgacgcactggtggaacaggcgcgcgagcgcgtaataaaaacaggggagttaacgcgaaccgaggtcgatgagctgacgcgagctgtcagacgtgacctggaagagttcgccatgagctatgaagagagcctgaaagaagaatctgacagcgtctttatgcgggtgattaaagaaagcttgtggcaggagctggcagacatcaccgataaaacgcagcttgaatggcgcgaagttttccaggacctcaatcatcatggggtttatcacagcggagaagtggtcgggctgggaaatctggtctgcgagaaatgtcacttccatctcccgatctacacaccggaagtgctgacgctatgcccgaaatgtggtcatgaccagttccagagacgcccgtttgagccgtaatagtctgatttcgcacagcaataaagagaatatgggccgaatgaaattccccggcccttgtttttatctctacagtaaatcttcagtctcacgaatttcctgactgacatctctggttccggatgactgaactttacgatacaggtcgagagcctgtcggagatcgacaggtcttccttctccgtagtgatacataatggccaggttataccaggcagtggcgtcattgcattcagcggctttcgtaaaccattcaaaggcagcctgataatctttctcaacgccttgtccgtgtttatacatataaccgatgttgacgtaagcgccgacgctcccctgagcggcagccttcagataccagtacatcgcttgcttatagtcctggtccaccccttcgccagcgttataatcccatgcaatttgaaactgggcgtgccgattaccctgctgtgcgcttttcaaataccagaatgcggcgagtgtcttgttttgagcaacgccttttccgtcttcataaagatcggccagattgttttgcgcgtcactatggccttgtaatgcagcttgtttgtaccagaaaaatgccagcgcatagtcttttgcgactccgttgccatttctgtacatccacccaagattattttgcgcataagacattccgctctccgcggctatctgataccagacaaccgcttctttataattgggggcttctccacgatccagtgtccagccaagggcgttggaagcgaaagtatggccttgtagggcagcttttttcagccagaagatggcttgctcattatctttatgacggcttttatcctcggtatacttttgccctaaggaatactgtgcttcacaatgaccttgctcagcggccagcttcagccagtaaaaggctttttcgtcgtccggagaatcaattgcgctatcgcgattataataaaacccaacaatatattgagcctcgcaatcgcctttttcagcacgttcgataatctcatctattgataaattatcgcagcaacttgacgtgaaaatcattatcatttccttatggttgcagataaaacatattatatttttatgtgttccatttttgcgtaagccttattttatgcgtattatgtcgcgtcagaaaagtataaataaacgagcctcgcaatgcggctaatattcatttaatgaatatttaaggataaattatatggacatggagtcgcaaaaaatattgtttgcactttccactccgatggaaatacgcaatgaatgctgtttaccttcgcattcatcacccaaaatgtatttaggtacatgcttttttgacctttcttcctcatggggaattgatgaccgtgatgacctgctgcgcacaattcaccgaatgatcgataacggtcatgccgctcggttggcagggttttatcaccgctggtttcgttattcgccatgtgaatggcgtgactatcttgctgaactaaatgagcaaggtcaggcttatgcgcaatttgtcgccagcaccgccgaatgctgtggcgaagggggaatcaaagcctgggattatgtccggatgggttttttaagccgaatgggcgtacttaataactggttgagcgaagaagaaagtctatggatccagtcgcgcattcatctacgggctctacgttattatagtaactggcggcaatactttgccggttatacctttggtcggcaatattggcagtctcccgaagatgatcatctgcctttattacgcgaattcttagcgcgtaaagaatacgacgattccggcaatgatatgttttatcaattatttgccagtgatgatgcgtattaccctaccttgtcctggcaaccattggcttactattctgcatgcccggaaacgcttaaggatatgagcgacctatgaaaaattgctggaagatcctcgatatagaggaaacgactgacgtcgatattatccgccgcgcttatctggcgctgttaccgtcctttcatccagaaaccgatccgcagggttttaaacaacttcgtcaggcgtatgaggaggcgctacggattgcgcagtcgcctgctaaatctgtttggcaaccagaagaatatgaggtagcagaacatgaaattctgctcgcctttcgtgcgttacttgcctctgatagtgaacgttttctgccctccgcctggcagcgattcattcagcaattaaattattgctcgatggaggagattgatgaattacgctggtcgctgtgcacaatcgccatgaacactgcccatttatccttcgagtgcgtggtgttattagcagaaagattgcggtggttacaggaggaaaataccggggaaatagacgaagaagaactggaatcctttttatatgccattgcgaaggggaatgtttttaacttccagaccattctgcatctgcccgttgccgtgcaaaatgacaccatcgatttttaccaaatgttcgctcggatttggtcatcgcatccacaatggctgacattgtatttagcgcaacatcgcgcagtgattatccccgatgatgcaaaactgcacagaaatttactccgctggtatagcgcaggtcgcctggatatccccgaacttctggattacgcccagtcatggcgggaaactgaacctgataatgaagatgcgccttattatgaatacgcgcaacgcgtctattgtggagaaggcgaaagcctgttggcagaactttgtgactactggcgcgagtatccctccacccaggcggatgctttaatgttgcaatggtgccgtcagcatcgggtcgattattacccattactggtgatgatgattgaagcgcgtgatctggttaacgatcagggaaaaccgctactttatgtccccggcgacagcgcccgtacgcgttttcatttatacgaaatactcagcgatgaaaaactctctgcgctggggcgttcactggtcgagatggttttgcacaaaggacgtaagccgcggatctcactcacgcgtgatacagaacataccttatggccattatatctagttgccaaacaattagtgcaggcctgccaacctacagaagaatcattaatgccgattgtgagccgccttgatgcagaaaatcgttgtccactggaagcattaattattcgtcgattattaattcaggcggcgaattttaccgagaagcaaactgttgaaccggagccgcaaccgcagccaatgcccgttgacgatggtgggccaggctgtctgggcatcattaaaattattttctatatttttatctttgctggtttgatagggaaaatactccatctgttcgggtgacagtcgacgttaatgtgcgggaagcccggcaagtaatctttccgcatttttgtaatgttgtttggcggtcagttttaaccatttttgagattcataatggttaacattaatacctgagccatttctgtagatcaaacctaaagtatattgagcatgagcatacccttgttcagctgcttccttataccagagaattgctttacgggtgtcgggtttgacccccagacctttgaggtagatccaccccagtttactttgcgcgcgtggattttcctgttccgctgattgctcataccagtatctcgcctgtgtataatccagtggtttaccgtcgctaccatgaagataaaattctccaaggcgatattgcgacgttgagtgaccatgaatcgcggaaagctccgtggctgccgtggtgaatggaagactgcccggtgagcttaaataatcaaaggcataattcaccatggctttatcacgcaacgtcgttttcttgggttggctaatacaggtaattgctgcaactataaaaattgcgaatatatacattaattttttattcatgtgtgaatgcttcgattttctttttattttgaaagcgtcaagtttatactcatcaataataaaaaagtagtcagttaatgcacttaagggattattaacaaatgaataaggaagaacaatatcttctttttgcgctttctgcgcccatggaaatacttaatcagggttgcaaacccgcgcatgactcgccaaaaatgtatactgggataaaagaattcgagctctcatcatcctggggaataaataatcgtgatgatttaattcagactatttatcagatgactgatgatggtcatgccaatgatttagctggcttatatctgacatggcatcgctcttcccctgaagagtggaaagcattaattgctggtggctcggagagagggttgatttatacccaattcgttgcccaaaccgctatgtgctgtggggaagggggaatcaaagcctgggattatgttcgaatggggtttctgtcacgggtcggtgtgctcaacaagtggctgacggaagaagagagtttatggctgcaatcgcgcgtctatgtacgagctcaccattactatcacagctggatgcactatttttccgcctattcgttaggacgtctctactggcaatcttctcagtgcgaagacaacacttcgctacgcgaggcgctaaccctgtacaaatacgatagcgccgggagtcgtatgttcgaagagctggcagcgggaagcgatcgtttctatgccacgcttccctggcagccattaactgtccagtctgaatgcccggtaacgcttaaggatgtgagcgacctatgaaaacatgttggcaaatcctcgaaattgaaagcacgacgcaaatagacattatccgccaggcttatcttgctcgcttaccgttgtgtcatcccgaaaccgatccgcaagggtttaaagcattacgccaggcctatgaagaggccctgcgactggcggtaaatcctgtcgaggaagcagatgatgaagaaaaagatgctgccgctgaacatgaaatactacgtgcattcaggacattactggattcagaaagtgatcgttttcagccttccgcctggcagaaatttattcagcaattaaatacctggaacatggaggatgtcgatcaattacgctggccgctgtgtgcaatcgccatagaagcgcgatatctttcattaaattgtgcttctttgctggcagagcgtttgaactggcattcatttaatgacagcgaaggaatggatgaggaagaaagggaggcttttcttgaggccattcaggctggtgattgtttcgatttccttagccttctggaatatcccattgcgttgcagaaccagactgttgagtattacttcgcgctggaacgttgctgccgttaccatcctgactatgtcactgcgtttttggcgatggaaggtccgtggttaattcctgatgatgcaaagttacatcgcaaactgttgcgctggtacagctcggtgcaaacaggtatggcggaactcattcctgtcgctcaacagtggcaaacggaagaaccagaaagcgaagatgcccggtattacttgtgtgcacaacgtttgtactgcggcgagggggaaagcctgcttgccgatctctgcgcgtactgggaaagttacccatctacacaagctgataatttgttgttgcagtggagcaagcgtcattgcccggattatttcgcgttattagtgatggttatcgaagcgcggagcatggtagatgcgcaaggtcaaccgctgaaatatgttcctggtgagagcgcccggacgcggctgttatgggcggagattttacatagcggaaaattatcgccgttaggtcaatcgtttattgagtcgttattcttcaagcgcaaagcatgggcgtggtggaaatcgagagtcggtagcgagacagagcaagattcaccgttcctggatttgtatcgggtagcggaacaggtagtacttgaagcgtttccgaaacaagagatgctggcccgtcttaatacaaggctggaaggcggagatgctcatccattagaggccattgtcacccggatgcttttgacgaaagtgaaactcgagccggaggatgaagatgtcgatgagccaacacctgaaaatcatgaagaaaaaaatgatgagggtgaaaaaccacagagcattaccagcattatcaaaatcagtttaacggtgctggtgataggttatgctctcggcaaaatcgcgatgttgtttagctgacgatgtgttttttgcgccgatgccggatgcagcgtttacgccgcatccggcagccgtgtttatgggatctcaatggctaaataatcgctcgcccgccgccgaacttcatccacgcgggccatatcgtttgactgcaacgccgcatcaaaatcggtgatcacccggccgatctcttctcgctcgtcacccagcgcccgcgcccacaactcttccagtttggctttaaaggtgcgattgatgagcatatcgcgcggataaattttcaatgcggataaccgcgtccgactctcttcaatctgctgcgcgctcaatgttaccgggctgtggttaatcactctggacttaacgctgccgtcttccagaagcacgtcaacttcaagcaacccgttgatatcataactaaagcgaatatcaatcgactgataagccccggttttcttcaacggcacatcgaaggattccaccagaatgttgtttttaactttgtggttttctccctgatagacgttaaccgtaattgaatcctgttccgggtgcatggttgaataagtttctacacgcgacacgggcacagtggtgtttcgttcaataatcggcgagaaaatgccggaaacgccctggcggttaacttcaacgcccaacgagtaagggcaaatatcagtgaggattacctcttcaatatcttcactgcgtaagcggcaggcggcctggattgctgcgcccagcgcgacaatggtgctcggatcgtaactttgatacggtaatttgccaaacagacgcacggcgattcgctgcaccagcggcatttgtgacgcgccgccaaccagcaccagactgtcgatttgactcggcttcagacgcgcatcgcgcaacgcctgttcaatcggcactcgcaagcgattgagcagcggcaaccacaaatcttccagttcgttctcgtaaaattcgcattcccgcgtttcttcctgatactgccagcgaatgtgcaatggcgattgattgctacattttgccgcttccacacaggcgtacaaggctgccagttcactctcgttaagcgtggtcctggcgacatccgcgcgttttaaaacctcatcgaccagcatatgggtaaaatcttcgccaccaagaaagttgtcgccagcggaggcgtgaacttcaatcaccggcgtggcgtactcaagcaccgtaacgtcaaacgtgccgccaccgagatcaaacaccagcgaacgggtattttgttgggtatgcaggccatacgccatcgcagctgctgtgggttcattaattaagcgtaccgcatttaacccggctaactccgctgctaaacgggtatgcttgcgttgttcatcgctgaaataagccggaacggagatcaccacatctttaatcggacgttgcagaaattcttcggcatcttcttttaatgagcgtaataccaaagaggacagttctggcgcgttaaatgtgtcgctgcctaaccgccagttggtattactgcccattgcacgtttaaataacgctgccgttttatccggatgcgaagtacgccgtgatacagccggttttccgactaaaatatgattattttcatccatgctaattatggatggtgttaaatattcaccgaacttatttggaattaattgcgcggcaccgtctttccagacggcaattaaactattggtagtaccgagatcgataccaatggcgagttctgcattatccattgcatttatatcttgaaagaaaaagagataaacagattaagaccacccaggtaacgcgtggtgatcttaatcaatgacgtgtgttaagcgtaaaatttcagacgatcagccagtaaatcaacaaagccctgacgatcaacatcgaccattacggtggcattcggtttattgcctgtcagataataataatcaacaaccgtcataccctgggtatatttcccctgtgtttccacgccaacccagcgctcaacagaggtaaataactccggtttcaacagccaggcgatggtgcatgggtcatgcagtggtgcgccgacaaagccccatttttcgtctttatgatattcgaggaagaaatccagcagttcggcaacaatggttgaaacagggttaccaatcgcgcggaaacgctcggtgtcttcaacgtggatttgtgctttatgagtaacatccagaccggccatcaccaccgggatccctgactggaagacaatttctgccgcttccgggtcaacgtaaatattaaattcagccgcaggcgtccagttacccagccccatagcgccacccataatcacgatacgggcaattttgctatgcagttccggatggctattgagcagcaaggcaacgttagtttgcggtccggtagacacaatggtgacaggttccgcactttcacgcagcgttttcgccatcagctctaccgccgtacagttttgcggtgcgaatgtcggttccggtaatgccgggccgtcgagaccgctttcgccgtgcacattgtccgcgataatcaactcacgcattaacggttttaccgcgccgcctgctaccggaatatcggtgcgattaagcaaggtcagcatacgcagaacattgcgtaaggttttttctggtgtctggtttccggcggaagacgtaattgctttgacatcaagctctggtgaggcgagggcgagaactattgcgatagcgtcgtcatgacctgggtcgcaatctaacagaattggcagtgccattgttgctccttgttgtgtgcttctttgcgacaagggtaacgccaggatgtaacagatacgaggggcgaaacgataaagcgtgagatggcgcgcaattgggtatgcgcgccagagtgattaatgcaggattttcgcgaggaagtcttttgcgcggtccgatttcggatcatcgaagaaagcgtctttcggcgagtcttcgacaattttaccctcgtccataaagatcacccgattcgccactttacgggcaaagcccatttcgtgggtcaccaccatcatggtcattccttcgttcgccagttccaccatcacgtccagtacttcgttgatcatctccggatccagcgccgatgtcggttcgtcaaacagcatcgcaataggatccatacacaacgcgcgagcgattgccacacgctgctgctgaccgccggaaagctgcgccggaaacttattggcgtgagcagaaagcccgacacgctccagcagtttcagggctttttcacgagccggcgctttatcgcgtttaagcactttcacctgcgccagggtcaggttttcgataatcgacagatgagggaacagctcgaaatgctggaataccatcccgacgcgggaacgcagctttgccagatcggttttcttgtcgttaaccacgataccatcgacggtgatttcaccttgctgcaccggttcgaggccgttgacggttttaatcagcgttgatttgccggaaccagacgggccgcaaaccaccaccacttcgccttttttcacttcggttgagcagtcggtcagcacctgaaagtgaccataccattttgaaacatttttcagggtaatcattatgctgtccttcttttcaagtagctgaccaacaacgacgcgctaagactaataacgaaataaacaaatccggcaaacaggatcatctcaacctgcgtaccatcacgctcaccaatggttgaggcggtacggaagaaatcggccagggataacacatacaccagtgaggtatcctggaacagtacgatgccctgagtgagcagcagcggcaccatcgcgcggaacgcctgcggcagaataatcagtttcatcgactgccagtgagtcattcccaacgccagcgcggcgctcgattgaccacgagaaatactttgaataccagcacggataatctctgaatagtaggccgcttcaaacatcgaaaacgccaccatcgccgaaattaaacggatatcattttttggcgataatcccagcacgttttgcagaaaacccggcacgatcaggtaaaaccacagcaaaaccataactaaaggaatcgagcggaatacgttaacgtaggctttggcaaaccacgccacgggcgcaaagctggataaacgcatcaccgccagcatcgtgccccacaaaataccaatcactaccgccgtgacggtgattttcagggtgatcaccagcccgtcgagcagatatggcagggaagggacaatggaactccagtcaaactcgtacattatttgccccccatgttgccaggcaggcgaactttacgttcaaccagcgtcatcaccagcatgataaaagcgttaatcaacacatacgccagcgtaatggcggtaaacgactcccaggcatgggctgagtaatcgagcaatttacccgcctgcgccgccatatccaccagaccgatagtcgaggcgatggcggagtttttcaccaggttcatcatctctgaggtcatcggcgggacgataacgcgataagcattaggcagcagtacgtatcgataagcctgcggtagcgtcaggcccatcgccagcgcggcatttttttgccctcgcggcagcgactgaatcgcggcgcgtacctgttcgcaaacacgggcggcggtaaacagccccaggcagagcatggatgaaaggaaaaactgaatattgggatccagctcggccttaaaccacatgccgattttctccggcagcagctccgggatcaccagataccaggtaaagaattgcacaatcaacggcacgttgcggaacagttcgacatacaacgtacccagaccagagagaaaacggtttggaacggtacgtaaaatgccgaaaaatgaaccgacgaggaaagcgataatccaggcgcagatcgacaaagcgatcgtcacctgaaaaccactccagatccaaccaagataggtggtgttgccgaacggggcttgttgtaaaaaaataccccagttccagtctatagacataaatctactccagaaaaaagagggtagcagcgttaactgctaccctcgaagattgttacccagcgtattgcggttttcaggcccgatggggaacgaccatcaggcgtatagtctgtccgtgctacgtaacaatcgagagggctggaatttccgcccctggttcttgtaattagttcagtgccttgtcattcggttctttgaacagtgctttcatttcgtctgacagttcgaaattcatgttcaggtttttcggcggaattggatttttgaaccacttatcaaaccatttttccgcttcaccggaggtctgcacctgagcgatggtgtcatccatcagctttttgaactgcggatcatctttacgcaacatacaaccgtaggcctcctgagactgcggcttgccgacgatttcccagttgtctggtttcttcgctttcgcacgttcaccggccagcagagcgtcatccatcataaaggcaacggcacgaccgctttccagggtgcggaaagagtcaccgtgatctttggcgctgatgatgcgcatattcattttttgctcttcattcagtttgttgagcaaaacttcagaggtagtgccggaagtgacgactacggctttgtctttcaggttggcaaaatctttgatatcgccaccctttttggtcaacaggcgcgtaccgaccacgaaaatagtgtcagagaaagccgcctgtttttggcgttcgacgttgttggtggtagaaccacattcaaaatcgaaagtgccgttttgcagcagtggaatacggttttgtgaggtaatcggaatcagttttacctgcaagtccggtttgttgagtttctttttcactgcttcaacaatggcgttggagtaatcctgcgagtaacccaccactttttgctgattgtcgtaataagagaaaggcactgaagattcacggtgaccgacgacaatcacaccgtttttggcgattttgtccagagtactgcccgctgccggggcggcgtcatctgcctgtgccagtcctgcggaaagcgccagggcgaggattgctgtggcaggtttacgtaattgcatatccaactcctttatcttctgcgttaagaacgcatggatacccgttgtgagtgtttgtgttgttatcgtctgcaactttattgtgcagtgttgtgcctgttagggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccttaggtaacatttagtttggctaaatgtaaagatattgctgttttattgtttgtttttgcgagatgcgccgcaccattccgaagcaaaattcttaaaatgcactcttttagtgctaccgctggattactgtggtgcaactaggttgtactgatgctgtttcagggtttgccttgtataacaaagcaatagatgtgccaaagttggataggagaatattgttatccggataatgcactgatgccgcatccggtgagcgtgccgaaatatgggatgtattccggcacgataagaagggattatttacgtcgctgacgcagactcatcaacacagcagcaaaaccaaacaatgccgtcagcacccacagcggccagttgccggtacgtgcgtatggtgtgagtccggtggtcggcgtcacgttagtggttaacacctcgcgggtgaactgcgggatcatcgcctgaatctcaccctgcgggccaatcaccgccgtaatgccgttgttggtgctgcgcaacagtgggcgcgccagctccagcgcacgcattcgcgccatctggaagtgttgccatggaccaatagatttaccaaaccacgcatcgttggagatagtcagcagatagtcggtatccgggcggaagttatcgcgcacttgctcgccgagaatgatctcgtagcaaatagccgcagtaagctcaataccatttgccgacagcggcggctggatatatggcccacggctgaacgacgacatcggcagatcaaagaacggtgctaacggacgcagaatcgactccagcgggacaaactcgccaaacggcaccagatggtttttgttatagcgatcggctgattcgtagctgtacggcgcacctttacccagcgtgatgatggtgttgtaggtatcgtagcggttctgcttattgagacgcgcgtcgacaatcccggttaccagcgagctacctttatcacgcaactcaccgtccagtgctttgaggaacggttgctgattaatttccagatcggttatcgccgactccggccagataatcaacgatgatttgcccatcagcggtgccgttgcgttgtagtaaatcttcagcgtattaagaagctggccttcgtcccatttcagcgattgcggaatatcgccctgaaccatcgaaacctgaatggttttctccggttgtggggtaaaccactggatgtaacgcagcgggaagggaagggcaaacagcacgacggccaccaccagcggacgccagttgcgtttgaccaacgccagtgccagcaggccactaaccatcatcagcaggaagttaatggcttccacgcccattatcggtgccagcccttttaacgggccatcaatctggctatagccgaactgtaaccacgggaagccggtcagtacccaaccgcgcagaaactcggtcacttgccagagggcaggggcggcaatcgctacgcgcagccaggtggttttcggccacagacgcgacagcacgccagcaaacagtccggtatacagcgacaaatacgccgccagcagcaccaccaggaagatgttaaccgggccaggcattccgccaaaggtcgcgatgctgacatagacccagttaataccgctgccaaagaggccaaatccccagcaaaagccaatagcggcagactggagtggacggcggttaaaggtcaacgcctgaagccccatcagcgaaataatcgccgcaggccagacgtcgtaaggagagaaggccagcgttccgcaggcaccgaataataacgccagcagcaggcgaatgcgctggcgttcaattaatgaggcaaaagccatgtagttatctatccagtttcggttttattcatccagcttcggctggggtgagtcatccgggattttgacatgaacctgaataatacgccgactgtcggccatcgccactttgaactggtaaccgtcgatgtcgatagtttcgccacgcgccggaagatgcccaaatgcctgcatcaccagaccaccgatagtgtcgacttcttcatcgctaaagtgggtgccgaacgcttcgttgaagtcttcaatggaagccagtgcgcgtacggtccaggtatgacgactcagctgacggaagtcgatatcatcttcttcgtcatactcgtcttcaatctcaccaacaatcagttccaggatgtcttcaatggtcaccagaccggaaaccccaccgaattcgtcaataacgatcgccatgtggtaacgctgagagcgaaactctttcagcatccggtctacgcgcttactttcaggaacgacaaccgcctgacgtaacactttgtccatgctgaaggcttcagcatcgctgcgcataaacggcagcaagtctttcgccatcagaatcccttcaatgtgatctttgtcttcgctaatcaccgggaaacgtgagtgggcggactcgatgatgacatcaagacattcgtccagcgtctggttgcgtttcagggtaatcatctgggagcgggggatcatgatgtcgcgaacgcgttggtctgcgatgtccatcaccccttcgagcatatcgcgcgtatcttcgtcgataaggtcgttctgcccggaatcacggatcagcgccagcagttcgtcacggtttttcggttcaccgtggaaaagttggctgagtaacagggagaaaaatcccttcttgttgcttatcgtgtcactactgtgtgaattgtcgtcgctcatggcgtcgtatgggttctcatgttagttaatcaaaacgccgtcgttaatcaccaacggcggggacgtctgccagtcaaatgcctggcaaattattctttctcggcaatgtacggatcctcatagcccagagcaagcataatctctgtttcgagggcttccatttcttctgcttcgtcatcttcgatgtgatcgtaacctaacaaatgcagactgccgtgcaccaccatatgcgcccagtgcgcctccagtggtttgccttgctcctgagcttccttctcaaccacctgacggcagataaccagatcgcccagtagcgacatttccatgccaggcggcacttcaaacgggaaggagagcacgttggtcggcttatccttaccgcgataggtcagattcagactgtggctttcggcggtatcgaccacgcgaatcgtcacttccgattcttcctgaaactgcgggatcaccgcattcagccatgtctgaaactggctctcttccggtaacccggaattatcttcacatgccagttgtaaatcgaggatcacctgactcatttttgttcctgttcttcgcgcttgcgttctgctgccagcgccgcttttcgtttttgttcggcttcttcccaggcttcataggcgttaacgatacgcgccaccacagggtgacgaaccacgtcttcgctgtggaagaagttaaagctgatctcttcgacatcggccagcacttcgatggcgtgacgtaagcctgatttagtattacgcggcaggtcgatctgtgtgacgtcgccggtgataaccgcttttgagttaaaaccgatacgggtcaggaacatcttcatctgttcgatggtggtgttctggctctcatcgagaatgataaacgcgtcgttcagcgtacgaccacgcatataggccagcggtgcgacttcaataacgttgcgctcaatcagtttctcgactttctcaaagcccagcatttcaaacagcgcgtcgtacagcgggcgcagatacgggtctactttctggcttaaatcgccaggcaggaagcccagtttctcaccggcttctactgccggacgagtcagcagaatacggcgaatttcctgacgctccagggcatcaactgccgcagccactgccaggtaggttttacccgtacccgccgggccaacgccgaaggtaatgtcatggtcgagaatattggcgatgtactgcgcctggtttggcgtgcgcggcttaattacgccgcgtttggttttgatattgaccgctttgccgtactccggcacgctctccgcgctttgctccagtacccgcgcttctttaatcgcaaggtggatctgttccggttcgatatcctgaatctgaccgcgcatcggggcagtatcgacatacaggctacgcagaatgtctgccgcagcggtgacgcaaatcggacggccggtcagtttaaagtggttatcgcggcgattgatctcgatgccgagacggcgttcgagctgcttgatgttgtcatcaaacgggccgcacaggctcaacagacgcgcattgtctgctggctccagggtgatttcgcgagtgtctatgttcaaaccgttcctcttatctgtatgccgccggaagctgaacattcaccggcctataaggaaattattcacgccacaggaaaaaggcgcaagcattgcaataaagatggggataaagagagaaaaaacaaggcccaccggaacggcaggcctgagaattacggctgataataacccacgccaaggtcgttttctttgcgggtacgggcaatcactgattccggtgtttctgccacgcgcagacccatttcatcttcagtacgcaccactttaccgcgcagagagttcgggtagacgtcggtaatttctacatcgacgaatttaccgatcatatccggcgtgccttcgaagttgaccacgcggttattttccgtacgcccggaaagctccatgatgctcttacgcgatgtaccttctaccagaatacgctgggtggtgccgagcatccggcggctccacgccatcgcttgctgattaatgcgctcttgcagaatatacagacgctgcttcttctcttcttccggaacatcatcaaccatatcggcggctggtgtacccggacgtgcagagaagataaagctgtagctcatgtcgaaattgacgtcggcaatcagcttcatcgttttctcgaagtcttcggtggtttcgccagggaagccaacgatgaaatcagaactgatctgaatatctggacgcgccgcacgcagtttacggatgatcgctttgtactccagcgccgtatgggtacggcccatcaggttcagaatgcgatcggaaccgctctgtaccggcagatgcaggaagctcaccagctccggcgtgtcgcgatacacttcgatgatatcgtcggtgaattcgatcggatggctggtggtaaagcgaatacgatcgatcccgtcgatcgcagcaaccagacgcagcagatcggcaaacgatccggtggtgccgtcgtagttttcaccacgccaggcgttcacgttctgaccgagcaggttgacttcacgcacgccctgagccgcaagctgggcaatctcaaacagaatatcgtcggacggacggcttacctcttcaccacgggtgtaaggcaccacgcagtaggtgcaatatttattgcagccttccatgatggagacaaacgcggtcggcccttcggcgcgcggttccggtagacggtcaaacttctcgatttccgggaagctgatatctacaaccgggctgcggtcgccacgcacggagttgatcatctccggcagacggtgcagcgtttgcggcccaaaaataatatcgacatagtgggcgcgctggcgaatgtgctcgccttcttgcgatgccacgcagccaccgacgccgataatcaggtctggattcttctcttttaacagtttccagcgacccaactgatggaagactttttcctgagccttctcgcggattgagcaggtgttcagcagcagcacatccgcttcttccgccacgtcggtcagttgatagccgtgggtggcatccagcagatcggccatcttcgatgaatcgtactcgttcatctgacagccccaggttttaatatggagttttttggtcatcgacttgctcttgcgaaatagtagccaggaatgcagggcgcatagtgtaatgctttgctgccgttgtgaccagtatgagcgttatcagcccttaggggtaaaaatcctgtaaacttaaagcatattgctaacaggatgattgaccatgacaaatcaaccaacggaaattgccattgtcggcggaggaatggtcggcggcgcactggcgctggggctggcacagcacggatttgcggtaacggtgatcgagcacgcagaaccagcgccgtttgtcgctgatagccaaccggacgtgcggatctcggcgatcagcgcggcttcggtatcattgcttaaagggttaggggtctgggatgcagtacaggctatgcgttgccatccttaccgcagactggaaacgtgggagtgggaaacggcgcatgtggtgtttgacgccgctgaacttaagctaccgctgcttggctatatggtggaaaacactgtcctgcaacaggcgttgtggcaggcgctggaagcgcatccgaaagtaacgttacgtgtgccaggctcgctgattgcgctgcatcgccatgatgatcttcaggagctggagctgaaaggcggtgaagtgattcgcgcgaagctggtgattggtgccgacggcgcaaattcgcaggtgcggcagatggcgggaattggcgttcatgcatggcagtatgcgcagtcgtgcatgttgattagcgtccagtgcgagaacgatcccggcgacagcacctggcagcaatttactccggacggaccgcgtgcgtttctgccgttgtttgataactgggcatcgctggtgtggtatgactctccggcgcgtattcgccagttgcagaatatgaatatggcacagctccaggcggaaatcgcgaagcatttcccgtcgcgtctgggttacgttacaccgcttgccgctggtgcgtttccgctgacgcgtcgccatgcgttgcagtacgtgcagccagggcttgcgctggtgggcgatgccgcgcataccatccatccgctggcggggcagggagtgaatcttggttatcgtgatgtcgatgccctgattgatgttctggtcaacgcccgcagctacggcgaagcgtgggccagttatcctgtcctcaagcgttaccagatgcggcgcatggcggataacttcattatgcaaagcggtatggatctgttttatgccggattcagcaataatctgccaccactgcgttttatgcgtaatctcgggttaatggcggcggagcgtgctggcgtgttgaaacgtcaggcgctgaaatatgcgttagggttgtagccttacaacattgccggatgcgtgccaaccgtaggtcggataagacgcggcagcgtcgcatccgacattgaaggataagacgtgtcaacatcgcattcgacattgaatgaacgcagaaaagcaaaaagctcgccgaagcgagcttttttaatgtggctggggtacgaggattcgaacctcggaatgccggaatcagaatccggtgccttaccgcttggcgataccccaactgggtgcacttacaaggtaagcgtcttgaataaattggctggggtacgaggattcgaacctcggaatgccggaatcagaatccggtgccttaccgcttggcgataccccaacaaattggttttgaatttgccgaacatattcgatacattcagaatttggtggctacgacgggattcgaacctgtgaccccatcattatgagtgatgtgctctaaccaactgagctacgtagccagattgtttcttcgatggctggggtacctggattcgaaccagggaatgccggtatcaaaaaccggtgccttaccgcttggcgataccccaataaccgggcggtgaaccgcttactcgaagaagatggctggggtacctggattcgaaccagggaatgccggtatcaaaaaccggtgccttaccgcttggcgataccccatccgtacaacgctttctggtgaatggtgcgggaggcgagacttgaactcgcacaccttgcggcgccagaacctaaatctggtgcgtctaccaatttcgccactcccgcaaaaaaagatggtggctacgacgggattcgaacctgtgaccccatcattatgagtgatgtgctctaaccaactgagctacgtagccatcttttttttcgcgataccttatcggcgttgcggggcgcattatgcgtatagagccttgcagcgtcaacctctttttcaaggaaaattgctcgaaagtgactgtttggttaggttgcgaacagcgtggcgctatattcgtcaattattgtttactttgtgttttttcccaccctacagccattcttttgtcatacaggatgaaattcggaatttaacaatagtggtgggaaattaatctatgaaatactggcctacagtgatgagttgtcaaacagtgatgtggcaaacccggaacatttccttactgcatatcagaatcaacaagcacctcaataactgaaacagccccggatttcaccggggctgtttcgcatttcttacttatacgccgactggtgaacaccaaccgcgcgaccagacggatcgtccattttcttgaacgcttcatcccattcgatcgctttagcggaagaacaagcgacggaaggaccgcccggcacgcactcagcggcgctcggaagcgggaatagttcttcaaagatctcccgatacaagtacgcttctttagaggttggcgtgttgtacgggaagcggaagcgggcagtttccagttgctgatcagaaacctgctgcgcagccacttctttcagggtgtcgatccaactgtaaccgacgccatcggagaactgctctttctgccgccaggccacgcttgcaggcagatacgcttcaaaacattcacgcaggatgtgtttttccattttgccgttaccgcacattttatcctgtgggttaatacgcatcgccacatcaaggaattttttgtcgaggaacggaacgcgtgcttccacgccccaggctgacatcgctttgttggcacgcgcgcagtcatacatatgcagggccagcagtttacgcaccgtctcttcatgcagttctttggcattcggtgctttgtggaagtaaagataaccgccgaacacttcatcagaaccttcaccggacagcaccattttaatgcccatcgccttgatcttacgcgacattaaatacatcggtgttgaagcgcgaatagtggtcacatcataagtttcgatgtggtaaatcacgtcgcggatggcatccagaccttcctgtacagtgaagtgaatttcgtgatgcaccgtgcccagatggtttgccacttcctgggctgctttcagatccggtgaacccggcagacctacagcaaaggagtgtaactgcggccaccaggcttcagagcgttcctgatcttccacgcgacgggctgcgtatttcttggtgatagcggaaataattgaggaatccagaccaccagaaagcagcacaccgtaaggcacatcagacatcagatggcttttaactgaatcttccagtgcctgacgcagctcgtttttgtcggtcacgttatctttcaccgcatcgtagtcgaaccagtcgcgatgatagtaagaacggatttcgccgtcctggctccacaaatagctccccgccgggaactctttaatcgtgcggcaaactggcaccagcgctttcatttctgaggccacatacagctgaccgtgttcgtcataccccatatacagtgggatgatccccagatggtcgcgaccaatcaggtaggcatctttttcgctgtcgtacagtgcaaaggcaaacatgccctgcaagtcgtcgagaaattccggccctttttcctgatacagcgcgaggatcacttcacagtcagacccggtctggaactggtaacgatcgccatattcggcgcgcaatgcctggtggttgtagatttcaccgtttaccgccagtacgtgggttttttgttggttgtagagaggttgcgcccccgcgttaacgtcaacaattgacagacgttcgtgggcgagaatggcgttatcgctggcataaataccggaccagtccgggccacgatgacgcatcaggcgtgacagctcgagggctttcttacgcagctcaactgcgtctgttttgatatcgaatacgccaaaaattgaacacataaccttctccgttaacctggtatttgttgcttgttgtgtttgcttgtttaaaaaaatgccgcaaagcagcactgtgcgcaagcgatttggcggtgaaaaaataaaaaacgtaatggtgattgtcgattggtgaaaaaaggtctggtgtgaggatatatttattgatgaatcgataatttttagcgggttttattgaatgtttatattttacgggggccaaattgctgacaaagtgcgatttgttcatgccggatgcggcgtgaacgccttatccggcctacaaaagcatgaaaattcaatatattgcaggagctgcgtaggcctgataagcgtagcgcatcaggcagtttggcgtttgtcatcagagccaaccacgtccgcagacgtggttgctattcagataacgtcgatttcagcgactgacgggtaaatccagctggggcggaaaggcatactgtcgatatcgtcgagcgacgaaacaccagaaagcaccagaatcgtctccagacctgcctggaagccggccagaatatcggtacgcaggttatcgccgacaatcaccgtttcttccgaatgcgcctgcattttgtttaatgctgcgcggatgatccacgggctgggcttaccaacatagaacggtttgcgcccggagattttctcaatccctgcacacaacgcgccacaagcgggataaaaaccgcgcccgtgggtgtccggattggtggcgataaaacgtgcaccgttagcgacgaaataggctgctttatgcatcatgtcccagttgtaggaacgcgtttcgccaacaatcacgaaatcagggttcacatcggtaatagtgaaaccggctttgtacagttcatgaatcagtgcgccttcgcccaccacatacgctttcttgccttcctggcgacgcaggaaatcggcagtcgccatcgcagaggtataaaacacgctgtcaggtacatcgacacctgcggtggcaaagcggttcgccagatcttgcccagtctgcgaaggatagttggtcagcaacaccagcggcaggcctttatccataatcccgtgcaaaaattccgctgcacccggtacggcgacgttatcgtgcatcagcacgccgtcgatatcgcaaattacatttttaatggtcatggactacccagaatattgacaacaataagcgccactataaaagcacattaattttccagcaaatgctggagcaaaataccgttgagcatggcgcgttttaccagcgcaaaagcgccgattgccgagcggtgatccagctcagaacgtaccaccggcagattagtgcgaaacgccttcagcgcctgggtattaatgcagctttcaatagcagggagcagcactttatcggcttcggtgatttcaccggcaataacaattttttgcggattaaataagttgatagcaatggcgatggttttacccagatgacgaccgacatactcaattacttccgacgccagactatcgcctttgttcgcggctttgcagatagttttgatggtgcagtcgtccagcggcacgcggctctggtagccctgctttaacagattcaacacccgttgttcaatggcagcgttggcagcgatagtttccaggcagccaaagttgccgcagtggcagcgttcacccagcggttcgacctgaatatggccaatttcaccgacgttgccgttgcggccaataaaaatgcgcccgttagagataatcccggccccggttccgcgatggacacgcaccagaatggagtcttcgcaatcctgacttgcaccgaagtagtgctccgccagcgccagactacggatatcgtgaccaacgaaacaggtcactttaaaacgttcttccagagcttctaccagcccccagttttctacctgaatatgcggcatgtaatgaattttgccgctgtccgggtcaacaagccctggcaggatcaccgaaatcgcgatcagctcgcgcagtttgcgctggtagctatcaataaactgagcaatggcattcaacagggcatgttccagcgtttgctgggtacgttccggcagcgggtaatgttcttctgccagcactttgctgctgagatcaaacagagtgatggtggcgtcatgacgaccaagccgtacgccgattgcgtggaaattgcgggtttcggtgacgatggagatagcgcggcggcccccggtggaggcctgctgatcaacttctttgatcagcccgcgttcgataagctgacgcgtaattttggttacgctggcgggggcaagctggctttgctcggcaatctgaatccgcgagattggcccgtactggtcaatcaggcgataaaccgccgcgctgttaagctgttttacgagatcaacattacctatctgagcttgtccgcctggtgtcatactttctcttattgagttacgacctcgttaccgttaacgatggtcttggtgattttaaaatcaggtgtgaatgcagtcaggttggctactttacctgcggcgagtgtgccgagacgtttctcaacgccaatcgcacgcgccggatagagcgtcgccatacgtagcacttcatccagtgcgataccgcaatgttcgaccagattacgcacgccttcaatcatggttaaggatgaaccgcttaacgtaccgttctcatccacacaaagtccgttacggtagtatattgttttacccgcaaaaatgaactgttcaatgttggcacctgctggcgcggtggcgtcagtaaccagacacagtttgtcgcctttcagacgtttagcgttgcgaatgttggcgtaatcaacatgcaggccatcagcaataataccgcaataaatgtcagcttcgtcgaggatcgcgcccgccaggccaggttcacgaccggtaatatacggcatcgcgttgtacagatgggtggcaaaggtaatccccgcgcggaaaccggcttttgcttctttcaacgtcgcgttggagtgaccggcagaaaccacaatcccggcatttgccagtttgctgatgacttccgcaggaaccatttccggtgccagggtcactttggtaatgacgtcggcgttttcacacaggaaatcgaccagcgcggcatcaggcttacgcacaaaattcggattatgggtgcctttttttaccagattcagccacggaccttccagatgcagacctaacgcctgattcggatgttttgccaggtactcgcgcataacgcgcacgccctgtttcatcagctcatcgctggtggtgataagcgtcggcagatagttagtacagcctgatttctcattggctttctgcatgatttccagcgtttccacgctgaccgcttcagcggtgtcgttaaactgtacgccgccgcagccgtttaactgcacatcgataaaaccgggggagagaatggccccgttcagtgaacgttgttcgatctctggcggcagttccgctaccggacagacgcttttaatcaggccatcagcgataacaaccgcgtggtcatcaagaaattcgtggccggtaaagatccggccctgggttaatgcatacattctgacccccgattttaaaaaatattgccctgagcaaggagccagggcagggataacaattacagacctttgatattttctgcttctaattcattgaaatatcttaaagtcttaactttcagctccatggtggaaggttcatcgcacaccatgatcgctttcggatgcagttgcagacagctgatggtccacatatggttcacgcaaccttcaacggcggcctgcagcgccagtgctttctggctacccagcaccagaatcatcacttcttcggcatccagcagtgtaccaacaccgacagtcagggcatattttggcacctgattaacatcgttatcaaagaaacgagagtttgcgacgcgagtgtcatgagtcagggttttgatacgagtacgagaagccagagaagacgccggttcgttaaatgcaatatgaccgtcgttacctacaccgcccataaacagatgaatttttccgtaagaacggattttttcttcatactggcggcactcggcgtcgatatccggggcgttgccgttgagaaggttgatgttttctgctggaatatcaacgtgatcgaagaaattacggtgcataaagctgtagtagctttccggatgctctttcggcagaccgacatattcgtccatgttgaaggtgacaacgtgcttaaagctgacctggcctgctttatgcatttcgactaacgctttataggtggtcatcggcgtgccgccagtcggcaggcccagtacaaacggacgatcggcagtcggtttgaacgcattgatacgattgacgatatggcgagcagcccatttgccgacctgttcagcggtagtcagggggatcagtctcattattcacctcaataagtaaaatgtaagccgttggcggattaggcatctttaagcgtaacctggatttgcgcagacaggcgtcaatccgacctgattttttgaatgataaaataagttttctggtttagccagtaaaagggagtgataataacgatatttggtgacaaaactcacaaaagacacgcgtttaatttgcgatacgaattaaattttcacacactctgtagcagatgatctaacaatctgattacagaacatcggcagtacaatttgcagcaaaataaaaatacggcttgaaacgagccaaatagggttctcgtagggggaataagatgaatattttaggttttttccagcgactcggtagggcgttacagctccctatcgcggtgctgccggtggcggcactgttgctgcgattcggtcagccagatttacttaacgttgcgtttattgcccaggcgggcggtgcgatttttgataacctcgcattaatcttcgccatcggtgtggcatccagctggtcgaaagacagcgctggtgcggcggcgctggcgggtgcggtaggttactttgtgttaaccaaagcgatggtgaccatcaacccagaaattaacatgggtgtactggcgggtatcattaccggtctggttggtggcgcagcctataaccgttggtccgatattaaactgccggacttcctgagcttcttcggcggcaaacgctttgtgccgattgccaccggattcttctgcctggtgctggcggccatttttggttacgtctggccgccggtacagcacgctatccatgcaggcggcgagtggatcgtttctgcgggcgcgctgggttccggtatctttggtttcatcaaccgtctgctgatcccaaccggtctgcatcaggtactgaacaccatcgcctggttccagattggtgaattcaccaacgcggcgggtacggttttccacggtgacattaaccgcttctatgccggtgacggcaccgcggggatgttcatgtccggcttcttcccgatcatgatgttcggtctgccgggtgcggcgctggcgatgtacttcgcagcaccgaaagagcgtcgtccgatggttggcggtatgctgctttctgttgctgttactgcgttcctgaccggtgtgactgagccgctggaattcctgttcatgttccttgctccgctgctgtacctcctgcacgcactgctgaccggtatcagcctgtttgtggcaacgctgctgggtatccacgcgggcttctctttctctgcgggggctatcgactacgcgttgatgtataacctgccggccgccagccagaacgtctggatgctgctggtgatgggcgttatcttcttcgctatctacttcgtggtgttcagtttggttatccgcatgttcaacctgaaaacgccgggtcgtgaagataaagaagacgagatcgttactgaagaagccaacagcaacactgaagaaggtctgactcaactggcaaccaactatattgctgcggttggcggcactgacaacctgaaagcgattgacgcctgtatcacccgtctgcgccttacagtggctgactctgcccgcgttaacgatacgatgtgtaaacgtctgggtgcttctggggtagtgaaactgaacaaacagactattcaggtgattgttggcgcgaaagcagaatccatcggcgatgcgatgaagaaagtcgttgcccgtggtccggtagccgctgcgtcagctgaagcaactccggcaactgccgcgcctgtagcaaaaccgcaggctgtaccaaacgcggtatctatcgcggagctggtatcgccgattaccggtgatgtcgtggcactggatcaggttcctgacgaagcattcgccagcaaagcggtgggtgacggtgtggcggtgaaaccgacagataaaatcgtcgtatcaccagccgcagggacaatcgtgaaaatcttcaacaccaaccacgcgttctgcctggaaaccgaaaaaggcgcggagatcgtcgtccatatgggtatcgacaccgtagcgctggaaggtaaaggctttaaacgtctggtggaagagggtgcgcaggtaagcgcagggcaaccgattctggaaatggatctggattacctgaacgctaacgcccgctcgatgattagcccggtggtttgcagcaatatcgacgatttcagtggcttgatcattaaagctcagggccatattgtggcgggtcaaacaccgctgtatgaaatcaaaaagtaatctgctttatgcctgatgcgacgcttgagcgtcgcatccaacaatgacaagcggtggagatcttctctgccgctttttttttcatcaatcatccccataatccttgttagattatcaattttaaaaaactaacagttgtcagcctgtcccgcttataagatcatacgccgttatacgttgtttacgctttgaggaatccacgatgagtgaggcagaagcccgcccgactaactttatccgtcagatcatcgatgaagatctggccagtggtaagcacaccacagtacacacccgtttcccgccggagccgaatggctatctgcatattggccatgcgaaatctatctgcctgaacttcgggatcgcccaggactataaaggccagtgcaacctgcgtttcgacgacactaacccggtaaaagaagatatcgagtatgttgagtcgatcaaaaacgacgtagagtggttaggttttcactggtctggtaacgtccgttactcctccgattattttgatcagctccacgcctatgcgatcgaactgatcaataaaggcctggcgtacgttgatgaactgacgccggaacagatccgcgaataccgcggcaccctgacgcaaccgggtaaaaacagcccgtaccgcgaccgcagcgttgaagagaacctggcgctgttcgaaaaaatgcgtgccggtggttttgaagaaggtaaagcctgcctgcgtgcgaaaatcgacatggcttcaccgtttatcgtgatgcgcgatccggtgctgtaccgtattaaatttgctgaacaccaccagactggcaacaagtggtgcatctacccgatgtacgacttcacccactgcatcagcgatgccctggaaggtattacgcactctctgtgtacgcttgagttccaggacaaccgtcgtctgtacgactgggtactggacaacatcacgattcctgttcacccgcgccagtatgagttctcgcgcctgaatctggaatacaccgtgatgtccaagcgtaagttgaacctgctggtgaccgacaagcacgttgaaggctgggatgacccgcgtatgccgaccatttccggtctgcgtcgtcgtggttacactgcggcttctattcgtgagttctgcaaacgcatcggcgtgaccaagcaggacaacaccattgagatggcgtcgctggaatcctgcatccgtgaagatctcaacgaaaatgcgccgcgcgcaatggcggttatcgatccggtgaaactggttatcgaaaactatcagggcgaaggcgaaatggttaccatgccgaaccatccgaacaaaccggaaatgggcagccgtcaggtgccgtttagcggtgagatttggattgatcgcgccgatttccgcgaagaagctaacaagcagtacaaacgtctggtgctgggtaaagaagtgcgtctgcgtaatgcttatgtgattaaggcagaacgcgtcgagaaagatgccgaaggtaatatcaccaccatcttctgtacttatgacgccgataccttaagcaaagatccggcagatggtcgtaaagtcaaaggtgttattcactgggtgagcgcggcacatgcgctgccggttgaaatccgtttgtatgaccgtctgttcagcgtgcctaacccaggtgctgcggatgatttcctgtcggtgattaacccggaatcgctggtgatcaaacagggctttgctgaaccgtcgctgaaagatgcggttgcgggtaaagcattccagtttgagcgtgaaggttacttctgcctcgatagccgccattctacggcggaaaaaccggtatttaaccgcaccgttgggctgcgtgatacctgggcgaaagtaggcgagtaattttaagtttcgctatgccggatggggcgtttacgtcgcatccggcaaggaacagacaaacagtttcaaacgctaaattgcctgatgcgctacgcttatcaggcctacatgatctctgcaatatattgagtttgcgtgcttttgtaggccggataaggcgttcacgccgcatccggcaagaaacagcaaacaatccaaaacgccgcgttcagcggcgttttttctgcttttcttcgcgaattaattccgcttcgcaatttatccataaaataaatttaaaataacaaaacataattaaataaaatgtaaccgctttcatcttgctggaatttcacgcttttattcttctgcaagcctttcaaccgcaaacttaagccttgtaacaaaaatcatcaaaatatgtgcggttgctcatgttcttacattctggttacagaaagagattgataattcgcgtcgcgaaaaatagtctgttcctgtagtcagcgagacttttctcaacgctacttttttaatttttattttttcgctgttcacctttggtgcagcaatttatacgtcaaagaggattaacccatgcgtacgtttagtggcaaacgtagtacgctggcgctggctatcgccggtgttacagcaatgtcgggctttatggcaatgccggaggctcgcgccgaaggattcatcgacgattcaaccttaaccggcggtatctattactggcagcgtgaacgcgaccgtaaagatgttaccgacggcgacaaatacaaaaccaacctttctcactccacctggaatgccaacctcgattttcagtccggttatgctgctgatatgttcggccttgatattgctgcgtttacggcgattgaaatggcggaaaacggcgacagctcccacccgaacgaaatcgcgttttcaaaaagtaataaagcctatgacgaagactggtccggcgacaaaagcggtataagcctgtataaagctgcggccaaatttaaatacggtccggtttgggcgagggcaggttacattcagccaactggtcaaacgctgttagcgccgcactggagctttatgccaggtacttatcagggggcggaagccggggcgaattttgattacggcgatgctggtgcgttgagtttctcctacatgtggaccaacgaatacaaagcgccgtggcatctggaaatggatgagttttatcagaacgataaaaccaccaaagttgattatctgcactcctttggggcgaaatacgacttcaaaaataacttcgtactggaagcggcatttggtcaggcggaagggtatatcgatcaatattttgccaaagccagctacaaatttgatatcgccggtagcccgttaaccaccagctaccagttctacggtacccgagataaagttgacgatcgcagcgtcaacgacctttatgacggcaccgcctggctgcaagcgttgacctttggttaccgggcggctgacgtagtggatttgcgcctcgaaggcacctgggttaaggctgacggtcagcagggatacttcctgcaacgtatgactccaacctacgcttcctcaaacggtcgcctggatatctggtgggataaccgttctgacttcaacgccaacggcgaaaaagcggtcttcttcggtgcgatgtatgacctgaaaaactggaatcttccaggcttcgccatcggcgcttcctacgtttacgcatgggatgctaaacctgcgacctggcagagcaatccggatgcgtactacgacaaaaaccggactattgaagagtctgcctacagcctggatgcggtctataccattcaggacggtcgcgccaaaggcacgatgttcaaactgcatttcaccgaatacgacaaccactccgacatcccaagctggggcggtggttacggcaacatcttccaggatgagcgtgacgtgaaatttatggtaatcgcaccattcaccatcttctgatgcccgacgcggcaggttttgtgcctgccgcacgtttgaggaatttgctatgaaaaaactgattctcatcgccataatggcatcggggctggtagcttgtgcgcaatcaaccgcgccacaggaagacagtcgtctgaaagaggcatacagcgcctgtatcaacaccgcacaaggttcgccagaaaaaattgaagcctgccagagcgtgttaaacgtgctgaagaaagagaaacaacatcagcagtttgccgaccaggaaagtgtacgcgtactggattatcagcagtgtctgcgtgcaacgcaaaccggaaatgatcaggcggtgaaagccgattgtgataaagtctggcaggaaatacgcagtaataacaaataagtgagagctgtaactctcgcttttcttatttcccttgcataaaaaagccaacccgcaggttggcttttctcgttcaggctggcttatttgccttcgtgcgcatgttcatcttcgcggcaatcgccttcggcacagtgaccgtaaagatagagactgtggttagtcaggcgaatgccatgttttgcggcaatttcacgctgacgcgcttcgatggaatcatcactaaattcgataaccttgccgcagtcgaggcagatcaggtgatcgtggtgatgttgctgtgtcagttcaaatacggatttaccgccttcaaaattgtggcgggtgacgataccagcgtcgtcaaactggttcagtacgcgatataccgtagccagaccaatttcttcacccatatcgatcagacgtttgtataaatcttccgcactgacgtgatggttgtccggctcctgaagaacttccaggatttttaaacgaggaagcgttactttcaggccagctttctttagggcggtattgttatcagtcatgcggaatctgtcctgttactaagcggttcacttcattagaagaagtgacagaatttgctcttgagataatgcgtatcattatagaattgccacgcctaaatgaaaaccacaagtccctggcaaatattgttaataaaaacgtggcacagcttacatttacaacggcaaggccacttgaacaccgggacattgtacaggtacaacagcaaaagttacaaatttgtagcaattattttgattggcattatctattaatacggcgtagacatgagtctacgccgcatcacatcaggcattgagaatttcgtcgagatgcaactcttcagaaatctgtttaacccatttttctacacgttcagcggtcagttccggctgacggtcttcgtcgatagccagaccgacaaagtggtcgtcatctgccagaccttttgatgcttcgaaatgatagcccgcagttggccagtgaccaacgatggttgcaccgcgcggttcaatgatgtcgcggatggtgcccaatgcgtcgcagaaatattcggcgtaatcttcctggtcaccacaaccaaacagcgcaaccagtttgccgttgaaatcaatctcttcgagagtcgggaagaagtcatcccagtcacactgcgcttcgccgtaataccaggttgggatgcccagcagcagaatgtcataagcttccagatcttctttgctgctttttgcaatgtcatggacatcggcaacgtctttaccaagctgtttttgaatcatttttgcgatattttcggtattaccggtgtcgctgccgaaaaagatgccagtgatagccatgagtgaaataacctcttgaaacttattgaaatgggggtggaaaattgcccacggataaaggcaatcatagcagaacaggcagtcttgcggaatcagcaaacgagcaggactgcacactgtgctacatgaaagtggaaatttaaacgatgccctgactacgcagcgccgccagttgctgcattaacatctcttcgatcagttcgctacggctcatattgcgcgactccgccagctcgttcagcgcctcgacagcttccgcgttcagcttcagttcgacacgcttaaggccacgtactttgtcgcgttttagctggttgcgtttattaatacgcagctgttcatcgcgcgaaagcggattagttttcggtcgtcccggtcgacgctcgtgcgcgaacagatctaatgtcgtacggtccgtttgttctttggccatgatcttggtgacttcgggggaaacaatcagccaggcctctgcccggatggatagcgcgccataatacatcagcgcgatgagtcacgccaacgcccacgcgcggaaagcgacgcggacgctgggtttttaatcagttgcgttaatcattgagatagcgacggatagcgcgtaataccgcatccggtttttcagcatggacccagtgacccgcgcctgcaatcacatgcgcccgtgcctgtggaaattgagccagtaaatcatcacggtactgctcgctaacatacggagaattgccgccagggataaacagggcagggtgatcccatgccgggattttctcccaacctacaatatgcggatactgatcccacaataccggcacgttaaagcgccactccccgtcaacaaaagatttcagcagaaactgaatcaccccttcttcattaagatgctggcgcattattgctgctgcttgctggcgagtttgtgcgtccgattcactgaccgcgttgatagccgcaaaaatctcatcatgacggcgtacgtgatagtcgaccggcgcgatatcgatcgccaccagtttatcgatgcgatcggaggctagtgcagtaagtgccattaccgctttaccgcccatggagtgaccgataaatgttgctttgtcgatctgctgtgcatccagagtatcaacaagatcctgcgccatcgccgggtaattcattaccggatctctcggtgaaagaccgtggttacgcatatcaacctggatgatattgtgatcgtttaccagatcgcgagccagtacgccaaggttgtcgaggctgccaaacagaccgtggacaagaacgatgggagaattattgtgctggttttgtgcagtttgcgcgcggatattcaatttcatggcaaagttctttttttcgcgttgtcgggttagggtattatgttgaccattgtgccacagggctgcaacaaataaggtttattccgagtttttctgcaagccaggcttgacgctatccgctgccgggatttattcatatactcctggcgacttgtattcagctaagacactgcactggattaagatgaaaacgattgaagttgatgatgaactctacagctatattgccagccacactaagcatatcggcgagagcgcatccgacattttacggcgtatgttgaaattttccgccgcatcacagcctgctgctccggtgacgaaagaggttcgcgttgcgtcacctgctatcgtcgaagcgaagccggtcaaaacgattaaagacaaggttcgcgcaatgcgtgaacttctgctttcggatgaatacgcagagcaaaagcgagcggtcaatcgctttatgctgctgttgtctacactatattctcttgacgcccaggcgtttgccgaagcaacggaatcgttgcacggtcgtacacgcgtttactttgcggcagatgaacaaacgctgctgaaaaatggtaatcagaccaagccgaaacatgtgccaggcacgccgtattgggtgatcaccaacaccaacaccggccgtaaatgcagcatgatcgaacacatcatgcagtcgatgcaattcccggcggaattgattgagaaggtttgcggaactatctaaaacgttgcagacaaaggacaaagcaatggcaatccacaatcgtgcaggccaacctgcacaacagagtgatttgattaacgtcgcccaactgacggcgcaatattatgtactgaaaccagaagcagggaatgcggagcacgcggtgaaattcggtacttccggtcaccgtggcagtgcagcgcgccacagctttaacgagccgcacattctggcgatcgctcaggcaattgctgaagaacgtgcgaaaaacggcatcactggcccttgctatgtgggtaaagatactcacgccctgtccgaacctgcattcatttccgttctggaagtgctggcagcgaacggcgttgatgtcattgtgcaggaaaacaatggcttcaccccgacgcctgccgtttccaatgccatcctggttcacaataaaaaaggtggcccgctggcagacggtatcgtgattacaccgtcccataacccgccggaagatggtggaatcaaatacaatccgccaaatggtggcccggctgataccaacgtcactaaagtggtggaagacagggccaacgcactgctggccgatggcctgaaaggcgtgaagcgtatctccctcgacgaagcgatggcatccggtcatgtgaaagagcaggatctggtgcagccgttcgtggaaggtctggccgatatcgttgatatggccgcgattcagaaagcgggcctgacgctgggcgttgatccgctgggcggttccggtatcgaatactggaagcgtattggcgagtattacaacctcaacctgactatcgttaacgatcaggtcgatcaaaccttccgctttatgcaccttgataaagacggcgcgatccgtatggactgctcctccgagtgtgcgatggcgggcctgctggcactgcgtgataagttcgatctggcgtttgctaacgacccggattatgaccgtcacggtatcgtcactccggcaggtttgatgaatccgaaccactacctggcggtggcaatcaattacctgttccagcatcgtccgcagtggggcaaagatgttgccgtcggtaaaacgctggtttcatctgcgatgatcgaccgtgtggtcaacgacttgggccgtaaactggtagaagtcccggtaggtttcaaatggtttgtcgatggtctgttcgacggcagcttcggctttggcggcgaagagagtgcaggggcttccttcctgcgtttcgacggcacgccgtggtccaccgacaaagacggcatcatcatgtgtctgctggcggcggaaatcaccgctgtcaccggtaagaacccgcaggaacactacaacgaactggcaaaacgctttggtgcgccgagctacaaccgtttgcaggcagctgcgacttccgcacaaaaagcggcgctgtctaagctgtctccggaaatggtgagcgccagcaccctggcaggtgacccgatcaccgcgcgcctgactgctgctccgggcaacggtgcttctattggcggtctgaaagtgatgactgacaacggctggttcgccgcgcgtccgtcaggcacggaagacgcatataagatctactgcgaaagcttcctcggtgaagaacatcgcaagcagattgagaaagaagcggttgagattgttagcgaagttctgaaaaacgcgtaaacacatttaataaaaaaagggcggtcgcaagatcgcccttttttacgtatgacaaacacagaattgcctgatgcgctacgcttatcaggcctacgaggatggtgcaatatattgaatttaagcgattttgtaggccggataaggcgttcacgccgcatccggcaaaaacaacgaacactttgtcaacaaactgagtagctcaaggaaatcccaatgaagaccaacaggagtctggtcgtcatagtgtcactaattaccgccacattactgctgactgcatgcgcccaacctgaacaatcatcattagctggcgactggttactgacccctaaagataaaaccagaggattaacgggtagcattgcggtaaatattgcacctttccggtgtaagacaaattgccgtggtgataacttacctgataatacccgccgctggcagttgtcaggcgggaacgaaaaagaacttacttatcttcataatatgtcagcacaagaaaaggtcggtttaaatcccggttggcaatgctacacctcattttttatgcgggtttgccagggcaagcccggcactcgaccgatagtcaatgaggattatgtcagcgaaagcggattttttggctcgatgatgcatgtcgggattattgagttacgacgctgccagtcagaaaattgccagcaagaattgaaagcgataaatacacattaaaatagtgagtccgggaatgaaacccggacctgaacatgtcttattgcgtgaatgtttctttcatttgatactgcatttcccagagttcagtaagcgaaataacttttcttgttcttgcttcttcactttgtacccataagaaagggtagaacgtgaaggcttccgttgccgataattttattacgtcttctcgccattgctgccatcgtacattttcatagaaggtatctaaatcaccggataatgcccactgaagaaactcagaatatccaacttccagactttcccaattcagcgtatctggcgcaaaataataaacgcagccagtatcttccccaagatcgccaccattaagagcaaaaattacccctgcgacatcgtcagcgatgggtaaagcccgcacgcctgcgaattcagggcgttgtgtccaacttactggatctcgtggcaaccgggggtgaccagatcctgctatgcgtaactaaccattatcaatcagcagacctccggagccatagacaagcgcacccatcggtgattttgttgtcacctgtaattgataaagtgcggtttcggctaaatctttattaaccggtaagagttcggtatggtttgtggcgtcttttaaccagttctggattattggccaggctgaatcttcagtatttactaactgattcatttcacgcatcgctacttgctccttgtgtgctacggtgtcatttatgatgaggaattgtatggaacattttttaaatattaagttccttatatttgaataaaaaatgactttatccatacattgccacttttttcaaagcataaaccgatacccaataccggtttcagtaataaaatggcgaggccgggccggatcctgttccagtttttgtcgcagatgccccatataattacgcaaatagttgctgtgttcgatcgcgtttagaccctacatctgccggatgcggcataaataacgaactatttgccaacaaacagaaagggcgatcattcaatcgcccttttttactttgttttattaaccgtgtttatttttcagttcaaagcgtggtgataccagaccatacagtgtccaaccaaggaaggtcacgatggaaccgtacagcatggcttcttccccggatgagtacagcgcataaaagctatacatcgcgccaacaaaagcaacaaagtttgcaactttcgcttttgaggggggcacattagcgaccttctgaataatgactaatgccgccattgacagaatatacggaatgatattggtcaccacggccaggttaaccagcacgttgaactgactgtttagcgacgggctaatggtcatcagtgccaatccactctgaataatcacaatggtcaacattccctgcaccggtgcatccactttggttacacgggagaaaattttagggaagtagccttcatcagatgaagatttaaacacctgggcaatggtgaactgccagccaagtagcgaaccgcagcaggacatcaccatcagcgccataatgactttacccacttccggcgtgaacatctgcgcgaaggccagaccaaatggtgccgttgaatttgccagctccatatttggcacaatcccggcaatcacgttggtggagacgatataaatcaccgccgcacctaacgtaccgccgagtaccgcgattggcacattacgttccgggttttccactacatcagtattcgcacacgcagactccagaccaagaaaagcccacagcgtcatagcgatggaagaacctaccgcactgaagaacggtgcatgatgcggattccaggaatcaacgtacagcgtcgggctaaaccagaaccagccaataatgcacagaccgacgaccggaataatgaccccccacacggtaatgctactgatttgcccggtaatgcgcgcaccaccaaagttagccacggtacaaatccacagcaccccgatggtcgcaagaccaatctgcactggcgacaaactcgcgccgagcagttcggtgccgtaaccaaccgccgaaatagcaatcgcgacgttagcaatcagcagtgagacgccgtaggtatagttcgccataaagttaccggatttaccgaaagcatactcggcataaccgcccataccgcctgatttacggctgaacataccgcattttgcgaatgcccatgccagtgccattgagcctacggctgtcaccagccaggagataattgagattgtcccgacttcggcaagctttgtcggcagcatgatgataccggagcccatcatgttgaccatcgtcagtatggttaactgaacgacgcccattttgttcgatttagcctgactcataatttttcccctttcaacagggtgctttgcgcatcacgaggcttgatgacatagcaccaaacttgcttacgaccatcatgttcttcgatatagacaccctgcagctccggtgcaaaacctggcagcaggttgatcccttcttccagagcgctgaagtaacgcagaacagcaccaccccagatttcacccggaacaacacacagcacacccggaggataaggaagcgcaccttcggcagcgatacggccttctgcatccggcagacgaaccagttccacttcaccgcgtaaataggcgtagttggcttcttgcggattcatgctgacgcgtgggaagtgctccttacggaacatctctttttgcagttgtttcacgttgtggcgggcatacaaatcatgcatttcctgacacaactgacgcagggtataaccggcgtagcgctcttcatgctgtttgtagatggaaggtagcacttctgctaatggcgcgtcggactcaagcagtttttcgaagcgtaccagcagggcaacaagttgctgaagtttggccatatcttctgccggagtcagcaggaagaggatggagttaagatcgcatttttccggcactacgccattttcgcgcaggaagttagcaagaatcgtcgcgggtacaccgaacgcttcatattcgccgttacgtgcatcaatacctggggttgtcagcaacagtttgcatggatcgacaaagtattgattctctgcatagccttcaaaagaatgccagtgttcccctggtacaaactggaagaagcgcagatcaaccgcaatttgcgctgtttcatacgactgccagggtttaccatccaccagttcaggtacgaacggacgaatatgctgacagttatcgaggatcagtttgcgggcattaatgccatttaccacacaatccatccacatattacgaccgctgacaccttcatgcattttggcgttgatattcagtgcggcaaacagcggatagaacgggctggtggaggcgtgcatcataaaggcgttgttcatgcgtttgtgcggtacataacgctgttgccctttgatgtggctgtcttttttatgaatttgtgaagtctgagaaaaaccagcctgttgtttatgcacagattgcgtaaccagaatacccggatcgttctcattaagatccagcaacagcggcgaacagtccgccatcatcggaataaactgttcatagccgacccatgctgagtcaaacaggatgtagtcacacagatgaccaattttatccaccacttggcgggcgttataaatcgtaccgtcgtaggtgcctaactgaatcacagcgaggcggaaaggacgagcctcttttgcccgctgcggtgcgacttccgcgatcagctcacgcaggtaactttcttcaaaacagtgcgcatcaatgccaccgataaagccatacgggttacgtgccgtttccagataaaccggtgttgcaccagcctgtagcaacgctccgtggtggttagatttgtggttattgcgatcaaacagcaccagatcacccggtgttagcagggcgtttaaaaccactttgttagaagatgaagtgccatttaaaacgaagtaggttttatcggcattaaacacttttgccgcatgttgctgtgcaatgcatggcgcgccttcgtgaatcagcagatcgcccatcgctacgtcggcgttgcacaagtcggcacggaacagcgcctcaccaaagtattccacaaactgattccccgccggatggcgacggaaaaattcgccgccctgatgaccagggcaatcaaacgcgctgttaccttgattgacataatcgaccagtgcgcggaagaaaggtgggcgcagttgagtttcataatggctggcagcggtttctaactggcgaccataaaattctcgtcgcgattcgcaattctcaaagacacccgaaatacggggcaaatactctgcgggtacacgttcttgattttcagtagcaataaataccgggatgccataacccgtggcatcgatttcatcgagttttccgcatgtaacatcgttgagcgataaaactattgccgccacatcgatattacgactttcattaatgtagatacattctcgctgcgtggtaaaacagtccgggcaagaatcactaaccgcaatttttaattttgacatttttcatctctttattttaggtaatagcaggtcctcaatttctcgaatgagaaatcgatcgtgccggaaaaaagcaaagttaccccgctgataaataaatcaggtagattgcttttttcagaatgcagaaacccttaccagtcaggtggctgataatacaagggttaacagagaatgagcactgcggaatacaggcatatgcctgtaatacagagagtcaggaagacctgtacgctgaagtgcccttagtcggtagactaacgggcattgaagaagtgaaagtcgaagctattgcgatgagcaaacttcataatatgagttgtccgccttatatggggcatagtgcggctgttattttccatttaatttacctttcctgatgtgaatgaaggtgaagatattctatccaggaaatacggttgaactgtgaaggtgatcaataaaaaatgatcaatcttaatttatttaatgatgagctttttactcagtaatataaaatattgaattgttatttttgtgtgttgtttaagataaaaagccgtatttattattacggctttaattaataaaaggcaggctgtattaaaattaatattcaaagcataaaccgatagccaataccggtttcagtaatgaaatggcgtgggcgggcgggatcctgttccagtttttgtcgcagatgtcccatataaatacgcaaatagtgactgtgttcgaccgcgtttggcccccacacctggttaaggagctggcgctgggtgagtacttttccggcattgttgagcagcaccgccagcaggcggaactcaattggtgtgagatgcacctcttcctcaccccggtgaatcacgcgggcggctaaatcgacggtaacatcggaaaattttaccagcggatcgggcgcggtggtggcagagtggcggcgtaatgcgacgcgcagacgggcctgcaattcgccaatgccaaacggcttactcagataatcatccgctccggcatccagcgcggcgattttgtcgctctcttcgctgcgtgcggaaagcacaatcaccggcaccgcgctccactggcgcaggtcgcggataaactcaatcccatcaccatcgggcaggccgagatcgagaataatcaaatctggcttacgggttgccgcttccagcaagccgcgttgcagcgtttcggcctcaaagacgcgcatcccgtcgccctccagcgccgtgcgcagaaagcgacgaatagcctgttcatcttcaacaatcagaacgtttgtcacatatcctcatgaaattcttcaagttcaggggcagtttgctggggaagtgtaacacgaaaacaggcaccaccttccggtcggttgaacgcggtaatagtgcccccgtgtacatccactatcgcccgacaaattgccagtccaagccctacccccggtactgccgactctttattcccgcgagcaaacttatcaaatatcgtctgctcctggcctggcggaagaccggggccgttatcccagacatccagttgtagattttcgccctcaacgtgggcatcgataccaatttcggcctgcgcacccgcatatttcaccgcgttctccagcagattaatcagcacccgttcaaagagtggcccgtcaacgtggattaaggtcagcggttctggcagagaaagattgatgggcgacgataaacccggttccagcatttgcagcgcgctgccgactacttcttccagcgttaaccactctttcttcaaattaaagccgccggactgaattcgcgccatatccagtagattattcaccagtcgggtagtgttcagcacatgctgacggatctcgctggcctggcgggcgtggggtgatccttcgcttgccagatcgagcgttaagatttctgcctgaccaaacagcaccgtaagcggcgtgcgtaaatcatgcgaaagcgccgccagcagggcgttgcggatctgttcacgttcgcttgccatccgcgcctgttcttcgctggcggttagcgtcagccgctcaagggcattggcgactaacagcgtaaacgtctccagcaggcgctgctgttccgggatcatcaactggcgcagattccccggctccaccaccaccagcccgtaggttttctcgccgctttttagcggcaaaatctggtacggtacaccgggtaacgtgtcggtgcccgcgcccgcaggcaggcctttatcaaaactccactgcgcgatggcatcgtcccacggcgtcattccttgcggatgtgttaacggctgcaatttaccgttgtcatcgggcaacaacacctgactgcgggcatgaaacgtggaggcaataaattgttcgctggtggcagcgatatcctgcggactgcggcccaccgccagagctttcgacatttcatataagtgccgtgtgcgttgctcgcggtaacgggctacccgcgcctgataacgcacgccagcagtaaggttcccgatcaccagcccgacggttaacatcaccgcgaaggtcagcagatattgcacatcagagacggcgagcgtgccgcgtggggcgataaaaaagagatcgaaactcactacattaatgacggtggcaaccactgaaggccagcgtccataaaatagcgccaccaccaccacgccaagcagatacagcatcaccaggttggcggcatcaaacgccatcagccactgcatggcaattaaggtgataacggcgcataacgcggcggcaaccacgcatccctgaatttgtacacgccacttgtctttaaaagagcggttatccggcgcgttgttaatcgtgcgggcgggtggttcatcaagcgcgaccagcacctgatcgagatcgggggcgatgcgcgccagtcggtcagcaaacgtttcccgacgccaccagcggcgcgaggccgggcgaccgagaataatcttgccgagattatgttcacgggcataacgcactaccgctttctcttccgctggatcagaaagtgttgccgtctccgcgcccagttcctgcgccagacgtaaggcgctgagaattgcccgacgttttttttccggtaagcggtgcagggcaggggtttcaacatacaccgcgtgccagacgctacccagccgtgacgccagccgcgccgctgcgcggaccagtttttcgctgccggtgttatggccgatgcataaaaggatcgcgtcgcgcgtgtgccacactttctcttcgccaggatgcccccgccaggcgcgcatttgctcatcaacgcgatcggcagtacggcgcagtgccagttcgcgcagggcgatcagattacctttgcggaaaaaatgttcaatggcgcgctccgcctgcccggcaatatagactttgccttctttcagccgctggcgcagatcgtccgggggcaagtccaccagcaccacgtcgtcggcggcatcgaaaaaaggatcgggcacggtttcccgtacctgaattccggtgacgccgctgaccacatcattcagactttccagatgctgaacgttgacggtagtgaaaacatcaatgccagcttccagcagttcttcgatatcctgccagcgtttgggatgacgggaacctggcgcattactgtgcgccagttcgtccattaagatcagcgccgggcggcgggcgagggcggcatcgagatcaaactcgctgatatgccgcccacggtacgcctggcgttttaacggcagaacagccagcccttccagcatggcggcggtatcttttcgcccgtgggtttctaccacgccaaccacaatatccagcccttgcgcccgcagtcgctgggcttctgccagcatcgcccaggtcttcccgacgcctgcacaggcaccgaagaaaactttcagcttcccccgatgcggcgcggcagtttgttccagcagacgatcggggtcgggacgtaagggttcgttattcatcaagtttatccagcgccagattgagttcaacaatgttgacaaccggctggccgatatatttcaccagcggttgttggctgtattttgcgatcagttgcgtgagctgttcaacgctgagattacgcgctttcgccacgcgtgggatttgccaggccgccgcttgcggggtgatattattgtccagcccgcttgccgatgccgtcaccagttcaaccggaacgctcgcgctggcatccgggttagcggcccgtaatgcagcaacgcgtgcggctattagtttatccagctcagggttactgaccgccagattgctcccgccagaagcctgtggattatagggcatttctgccgttgccgacgggcgaccatgaaaatagccgttgccggtaaaattctgcccgattaatgccgaaccgcgcaccgtatcaccttcacgaatcaacgaaccattggcctgccagggaaaccaccattgccccagtacggtggtcagcagcgggtaaacgccgccagtaatcaataacagaaagataaatgttgataatgccggacgtaatccactcatggtaaacctcacaccagaccgcaaacggtcagcagtaaatcaatgactttgataccgataaacggcaccagcagcccacccagaccgtaaatccataagttacggcgcaacatggcagaagcggtaagcggtttataactcacgccttttaacgccaggggaatcaaaaagacgataatcaaggcgttgaaaatcaccgcactgaggattgcggagtcgggcgaatgcaggcacatgatgttcagcgcatttaactgcggatacgttgccgcgaatgccgccggaataatggcgaagtatttcgccacatcgttggcaatgctgaaggtggtcagcgagccacgggtcatcagcatctgtttgccaatgtgcaccacctcgatcaacttggtcgggttagagtcgagatcgaccatattgcccgcctctttcgccgcctgggtgccggagttcatcgccaccgcgacatctgcctgcgccagcgccggagcatcgttggtgccgtcgccggtcatcgctaccaaacgaccttccgcctgatactgacggatcaatgccagcttggcctccggtgtcgcttcggcgagaaaatcatcgacacccgcttccgcagcaatcgcggcggcagtcagacggttatcgccggtaatcatcaccgttttaatgcccattttgcgcagctgggcgaagcgctctttaataccgcctttgacgatatctttcagcgcaataacgcccagcacacgagaaccttccaccaccaccagcggcgtggctccctgacgcgcaacctgatcgactttttgatcaacatcggtagggaagtgaccaccgttagcctcaacatggcgacgaatggcatcgacagaacctttacggatcatgcggttgtcgatgttgatcccgctcatccggctttgcgcagtaaacggtacaaaggtggcatggagcgactgcacatcgcgctcgcgcaggttaaaacgctgcttggcgaggatcacaatactgcggccttccggcgtttcatcagccagcgaagccagttgtgcggcgtcagccagcgttttttcatccacgccctgcgcggggataaactccgacgcctgacggttaccgagtgtgatggtgccggttttatccagtagcagaacgtcaacgtcacctgccgcttcaactgcacgtccgctggtggcaatcacattcgcgcctagcatccggctcatcccggcgacgccgatcgctgacaacaggccgccaatagtggttgggatcagacagaccagcagcgccaccagtaccgttacgctgactgcattaccgccccacgcggaaaacggccacagcgtggcggttgccagtaaaaagacgatagtcagggcaatcagcagaatggtcagggcaatttcgttcggcgttttgcgtcgctgtgcgccttccaccatcgcgatcatccgatccagaaatgtctcgccggggttaacgctacactcaatcaccagccagtcagaaagaatacgcgtgccgccggtgacggaggcaaaatcgccgccggattcacggatcaccggtgccgattccccggtgatggcgctttcatcgaccgatgcacccccttcaataacttcaccatcgcaggggataatatcgccagcttctaccagtacgatatcgcctttacgaagttggtcggcaggaactttgtccgccgcagcgccatatttcggctcacgcagcttgcgggcaaaggcagtttttttcacccctttcagactgttggcctgcgctttactgcggccttctgccagcgcctcggcgaaattagcgaacagtacggtgatccacagccaaccgctaatggccgcgctaaacagcgcattgccgggcatcgcaccgcttgccatcgcgatgctaatacaggtggtcagcagactgccgatccagacgataaacatcaccggattgcgccattgcgcctgcgggtttaattttttcaccgcttctttcagcgcctgaacgacaagtgttggttcgaatagcgccagttgtttacgactcatattcagtgctcactcaatatcatcaggagagatattccgccaccggaccaagcgccagggcagggataaaggtcagtgcgccaaccagcaacacggtgccgattaacaggccaacaaacagcgggccgtgcgttggcagcgtgccggagctggcggcttggctctttttactcaccagcgaaccggcaattgccatcaccgggataatcaccccgaagcgaccgacaaacatgcagaacgccagtaaacagttccagaacggagagttggcgcttaatccggcaaaggcgctgccgttgttgttagcggcggatgacacggcgtacagcacttcgctaaaaccatgcgggccagggttgagcatggcgctacgtccggcgtcggtcatcatcgccaacgccgcgcccatcagcaccagcgtcggggtaaccagaattgccagtgcagtcagtttcatctcgcgtacgtcgatttttttacccagatattccggtgtacgaccaatcatcagcccggcaataaacaccgccagcaggacaaacagcatcatgccgtaaagaccagaaccgacaccgccgaacaccacttcaccaatttgcatcagccacatcggcaccatgccaccgagagcggtaaacgaatcatgcatcgcaatcaccgcgccacaggaagccgccgtcgtcacgaccgcaaacaggctactgaccagcacgccgaaacggctctctttaccttccatattgatgctgctgtccgtgcccagtgccagcagatgaggattaccctgaacttctgcccacatcaccacgcctacgcagatgacaaaaatcactgacatcgcccacagcaacatgcgcccctggcggcgatcgcccatcacttcaccaaaggcaaagcacagcgccgttgggatcaagaagatcgccagcatctgcacgaagttggtcagtgcggttgggttttcaaacggatgcgacgagttggcattaaagaagccaccgccgttagtaccgagcatcttgatcgcttcctgagaagctacaggccccatgggtaacagctgttgcgctccttcaacggtattcacagcctgataaggcagaaagttttgcagcgcaccttgttgaataaaaaacagtgcaatcaacaacgccacagggactagcacccataacgtgatgcgtagcagatcgacccaggcattcccgagcgtgctcatgctctggcgggtaaacgcacggatgagggcaaaaatcaccgcaatcccgctggcggcagaaagaaagttttgcaccgttaagcccgccatctggctgaaatagctcaacgtggtttcaccgctataagattgccagttggtattggtgacaaagctgacggcggtattcagcgccagatcccacgacagccctggcaactgctgtggattaagcggcagatagtgctgaccgagcaacataaaaaacagcaccgccagccccagcatgttcaggccgagaatggcacaaagatattgcttccagttcatctcacggtcagagacgccaagtgcgcgaaaaagtacgcgctcaacgcccgttgtaccgggaagaggaatgtcattaatcagccgcgccagcccgctgcctaaaggacgcgccagcaccattaacaccagtaaaaacgtggcgatcagtaagaacccttgcgcagccatcagaacgcctccgcattgatcagggcataaaccagataacccagtaataaaaacaccagcaatacgccggttatcacgcctgcactcacagtgcacctccagtggcctaaaagtgataccggaagggtagaattctggctgcaaagatttcgcaaaaatctgcgggcggggtgtaaaaaaagtataaaaatggcaaaagccatgatttaactaatgtttagtattaatttaacttttgtgtaacttaattacaggatgaatgtaaataaaccatcaataagcaaaaataagtggtcggatgagtagtaaaattacacaaaaggcggtactattttcatcagataaacaaattcatttttccggtgccattcaccgggtagatacaaaagggggagaaaagtatggaactctacagagaatatcctgcatggcttatctttttacgccgtacttatgcggttgcagcgggcgttctggcgctgcctttcatgcttttctggaaagaccgcgcccgcttttacagctacctgcatcgcgtctggtcgaaaaccagcgataaaccggtgtggatggatcaggccgaaaaggcaactggtgatttttattgattgctgagttttgaatacattgaaaaccgccagcggaaacgctggcggttttttgtatcaggaagatgttcagaggaatatttagacatcgttataccaatcgaaacatatattcatgaaatatatataaatattttcctaattgttcttatctgacagatatctcacttaaggctttcttataaatctgtagggtttcgcctgtcagcagacaaataacccgataaaacaaggatgagcagatgagcggaaaaccggcggcgcgtcagggcgacatgacgcagtatggcggtagcattgtccagggttcagccggggtacgcatcggtgcccccaccggcgtggcctgttcggtgtgccccggcggggtgacgtccggccatccggtcaatccgctgctcggtgcaaaggtccttcccggtgaaaccgacatcgccctgcccggcccgctgccgttcattctctcccgcacctacagcagttaccggacaaaaacgcccgcgccggtggggagcctcggccccggctggaaaatgcctgcggatatccgcttacagctgcgcgataacacactgatactcagtgataacggcggcagaagcctgtattttgagcacctgtttcccggtgaggacggttacagccgcagcgagtcactgtggctggtgcgcggcggcgtggcgaaactggatgaaggtcaccggctggccgcactctggcaggcgctgccggaagaactccgcttaagtccgcatcgttatctggcgacaaacagtccgcaggggccgtggtggctgctcggctggtgtgagcgggtgccggaagcggatgaggtgctgcctgcgccgctgccgccgtaccgggtactgaccgggctggtggaccgcttcgggcgcacacagacgttccaccgcgaagccgccggtgaattcagcggcgaaatcaccggcgtgacggatggtgccgggcgtcacttccggctggtactgaccacgcaggcgcagcgggcagaagaagcccggcagcaggccatttccggcgggacggaaccgtccgcttttcctgataccctgccgggttacaccgaatatggccgggacaacggcatccgtctgtctgccgtgtggctgacgcacgacccggaatacccggagaatttacctgccgcgccgctggtgcgctatggctggacgccccgcggcgaactggcggcggtgtatgaccgcagcaatacacaggtgcgcagctttacttacgatgataaataccggggccggatggtggcgcaccgtcacacgggccgaccggaaatctgttaccgttacgacagcgacgggcgggtgacagaacagctaaacccggcaggcttaagttacacgtatcagtatgagaaggaccgcatcaccatcaccgacagcctgaaccgccgtgaagtcctgcacacgcagggtgaaggcgggctgaagcgggtggtgaaaaaggaacacgcggacggcagcgtcacgcagagtcagtttgacgcggtgggcaggctcagggcacagacggatgccgcaggcaggacaacagaatacagtccggatgtggtgacgggcctcatcacgcgcatcaccacgccggatggcagggcatcggcgttttactataaccaccacagccagttaacgtcagccaccgggcctgacgggctggaaatacgccgggaatatgatgaatggggccgtctgattcaggaaactgcccctgacggcgatatcacccgctaccgttatgataatccacacagtgacttaccctgcgcaacggaagatgccaccggcagccggaaaaccatgacgtggagccgttacggtcagttgctgagcttcactgactgttccggttatgtaacccgctatgaccatgaccgttttggtcaggtgacggcggtgcaccgcgaggaagggctgagtcagtaccgcgcatacgacagccgtggacagttaattgccgtgaaagacacgcagggccatgaaacgcggtatgaatacaacgccgccggtgacctgaccaccgtcattgccccggacggcagcagaaacgggacacagtacgatgcgtggggaaaagccatctgtaccacgcagggcggtctgacgcgcagtatggaatacgatgctgccggacgggtcatccgcctgaccagtgaaaacggcagccacaccaccttccgttacgatgtactcgaccggctgatacaggaaaccggctttgacggccgcacacagcgttatcaccacgacctgaccggcaaacttatccgcagcgaggatgaggggctggtcacccactggcactatgacgaagcagaccgcctcacgcaccgcaccgtgaatggcgaaaccgcagagcggtggcagtatgacgaacgcggctggctgacagacatcagccatatcagcgaagggcaccgggtgacggtgcactatggttatgacagtaaaggccgcctcgccagtgaacacctgacggtgcatcatccgcagacgaatgaactgctctggcagcatgagaccagacatgcgtacaacgcacagggactggcgaaccgctgtataccggacagcctgcccgccgtggaatggctgacctacggcagcggctggctgtcaggcatgaaactcggcgacacaccgctggtggagtacacccgcgaccgcctgcaccgggaaacgctgcgcagcttcggccgttatgaactcaccaccgcttatacccctgccgggcagttacagagccagcacctgaacagcctgctgtctgaccgcgattacacctggaacgacaacggcgaactcatccgcatcagcagcccgcgccagacccggagttacagctacagcaccaccggcaggctgaccggcgttcacaccaccgcagcgaatctggatatccgcatcccgtataccacagacccggcaggtaaccgcctgcccgacccggagctgcacccggacagcgccctcagcatgtggccggataaccgtatcgcccgtgacgcgcactatctttaccggtatgaccgtcacggcaggctgacagagaaaaccgacctcatcccggaaggggttatccgcacggatgatgagcgcacccaccggtaccattacgacagtcagcaccggctggtgcactacacgcggacacaatatgcagagccgctggtcgaaagtcgctatctttacgacccgctgggccgcagggtggcaaaacgggtatggcggcgtgaacgggacctgacgggctggatgtcgctgtcacggaaaccgcaagtgacctggtacggctgggacggcgaccgcctgaccacgatacagaacgacagaacccgcatccagacgatttatcagccggggagcttcacgccactcatcagggttgaaaccgccaccggtgagctggcgaaaacgcagcgccgcagcctggcggatacccttcagcagtccggtggcgaagacggtggcagtgtggtgttcccgccggtgctggtgcagatgctcgaccggctggaaagtgaaatcctggctgaccgggtgagtgaggaaagccgccgctggctggcatcgtgcggcctgacggtggcgcagatgcaaagccagatggacccggtatacacgccggcgcgaaaaattcacctgtaccactgcgaccatcgcggcctgccgctggcccttatcagcacggaagggacaacagcgtggtacgcagaatacgatgaatggggtaacctgctgaatgaagagaacccgcatcagctgcagcagcttatccgcctgccggggcagcagtatgatgaggagtccggcctgtattacaaccgccaccgctattatgacccgctgcaggggcgatatatcactcaggatccgattgggctgaaagggggatggaatttttatcagtatccgttgaatccgatctcaaatatagatccattaggattagaaacactaaaatgcattaagccactgcattcaatgggcggaactggtgaaagaagcggtccagatatatgggggaatccgttctatcatcaatatctttgtgtcccagatggtaaaggggactatacttgtggtggccaagaccaacggggagaatcaaaaggagatggtctatgggggccaggtaaagcaagtaatgatacaaaagaagctgctggccgttgtgacctcgttgaaaccgataatagttgtgtggagaactgtttaaaagggaagtttaaagaggtaaggccgcgttattctgtattgcctgatatattcacacctataaatttagggctatttaaaaactgccaagactggtctaatgattctttagaaacatgtaagatgaagtgctccggaaataacattggacgttttattagatttgtattcaccggagtgatgtaatgaaatatattatttttttattcagagctatatggctggctttatcgcttttaatactattcttttccatgcatagactttcactattagactccactcgtgatgtgagcgagttaattagtctcatgtcttatggaatgatggtaatatgttttccaacaggcatagtattctttattgctctaatatttatagggactgtatcagacattattggcgtaaggattgatagtaagtatattatggcgataataatatggctttattttctgtcaggagggtatattcaatggtttgtattaagtaagcgcattataaacaaataaattaagttaattgctcttattattatatgtaacctgggcattgatatcccgtatgccacagacccggcaggtaaccgcctgcccgacccggagctgcacccggacagcaccctcagcatgtggccggataaccgtatcgcccgtgacgcgcactatctttaccggtatgaccgtcacggcaggctgacggagaaaaccgacctcatcccggaaggggttatccgcacggatgatgagcgcacccaccggtaccattacgacagtcagcaccggctggtgcactacacgcggacacaatatgcagagccgctggtcgaaagccgctatctttacgacccgctgggccgcagggtggcaaaacgggtgtggcgacgtgaacgggacctgacgggctggatgtcgctgtcacggaaaccgcaagtgacctggtacggctgggacggcgaccgcctgaccacgatacagaacgacagaacccgcatccagacgatttatcagccggggagcttcacgccactcatcagggttgaaaccgccaccggtgagctggcgaaaacgcagcgccgcagcctggcggatacccttcagcagtccggcggcgaagacggtggcagtgtggtgttcccgccggtgctggtgcagatgctcgaccggctggaaagtgaaatcctggctgaccgggtgagtgaggaaagccgccgctggctggcatcgtgcggcctgacggtggagcagatgcaaaaccagatggacccggtgtacacgccggcgcgaaaaatccacctgtaccactgcgaccatcgcggcctgccgctggcgcttgtcagcacggaaggggcaacagaatggtgcgcagaatacgatgaatggggcaacctgctgaatgaagagaacccgcatcagctgcagcagcttatccgcctgccggggcagcagtatgatgaggagtccggcctgtattacaaccgccaccgctattatgacccgctgcaggggaggtatatcactcaggatccgattgggctgaaggggggatggaatttttatcagtatccgctgaatccggttcagtatatagattcaatgggactggcatcaaaatatggacacttaaataatggcggatatggagcgagacccaacaaaccgcctacgcccgatccaagtaaattgccggacatagcgaaacaattaagactgccatatcctattgaccaggccagtagtgcgcctaatgttttcaaaacattcttcagagcattaagcccttacgactacacactgtattgcaggaagtgggtaaaaccaaatctgacttgtacgccacaggatgattcccagtatccagggatggatacaaagacagcaagtgattacctgccacagacaaattggccaacaactcaattaccaccaggatatacttgtgcagaaccctatttattcccagacattaataaacccgatgggccagcaacagcagggatagatgatttgggtgaaattttagctaagatgaaacagagaacatcgagaggaataagaaaatgaaaagagttttgttctttttgctgatgatatttgttagttttggtgttatagctgattgcgaaatacaagctaaagatcatgattgttttactattttcgctaagggtactattttttccgcgtttcctgtcttaaataataaagccatgtggagatggtatcagaatgaggacatcggtgagtattattggcaaacagaactgggtacatgtaaaaataataaattcacaccaagcggggcgagactcttaattcgcgtcgggtcactacgccttaatgaaaatcatgccatcaaaggaacgttgcaggagttgataaatacagcagaaaaaacggcgtttctcggcgatcggtttagaagttatataagagcgggtatctatcaaaaaaagagcagtgatccagttcagttgttggcagtccttgataattcaatcatggtaaaatattttaaagatgagaaaccaacttatgctcgaatgacagcacatctcccgaacaaaaatgagtcttacgaatgtttaataaagatacagcatgaactaattcgtagtgaagagaaataaaatctcttcctgagaaaacaaattaatcattgtgaaaaattatataactcatggaataggtgtttattttgcgttccatttgcagggaaagatcacgtaacgctacttttttgtactaaataattcgaattttaagttcaacaattgagatactacttattgtctaaagctgtttttcatagcttatacatgatcaaatactccttacataaataaggtgaacaaatggaacttaaaaaattgatggaacatatttctattacacccgattacagacaagcctggaaagtggtgcataaattgtcagatattctactgttgactatttgtgccgttatttctggtgcagaaggttgggaagatatagaggatttcggggaaacacatctcgattttttgaagcaatatggtgattttgaaaatggtattcctgttcacgataccattgccagagttgtatcccagggaaagatcacgtaacgctacttttttgtactaaataattcgcattttatgtttaaaaattgagatattccttattacctaaagctgtttttcatagcttatacatgatcaaatactccttacataaataaggtgaacaaatggaacttaaaaaattgatggaacatatttctattattcccgattacagataagcctggaaagtagagcataaattgtcaggcatcctactattgactatttttgccgttatttctggtgcagaaagttgggaagatatagaggatttcggggaaacacatctcgatttcttgaagcaatatggtgattttgaaaatggtattcctgttcacgatactattgccagagttgtatcctgtatcagtcctgcaaaatttcacgagtgctttattaactggatgcgtgattgccattcatcaaatgataaagacgtcattgcaattgatggaaaaacgctccggcactcttatgacaagagtcgccgcaggggagcgattcatgtcattagtgcgttctcaacaatgcacagtctggtcatcgggcagatcaagacggataagaaatccaatgagatcacagctatccctgaacttcttaacatgctggatattaaaggaaaaatcatcacaactgatgcgatgggttgccagaaagatattgcagagaagatacaaaaacagggaggtgattatttattcgctgtaaaaggaaaccaggggcggcttaataaagcctttgaggaaaaatttccgctgaaagaattaaataatccagagcatgacagttacgcaatgagtgaaaagagtcacggcagagaagaaatccgtcttcatattgtttgcgatgtccctgatgaacttattgatttcacgtttgaatggaaaggactgaagaaattatgcgtggcagtctcctttcggtcaataatagcagaacaaaagaaagagccagaaatgacggtcagatattatatcagttctgctgatttaaccgcagaaaagttcgccacagcaatccgaaaccactggcacgtggagaataagctgcactggcgtctggacgtggtaatgaatgaagacgactgcaaaataagaagaggaaacgccgcagaattattttcagggatacggcacatcgctattaatattttaacgaatgataaggtattcaaggcagggttaagacgtaagatgcgaaaagcagccatggatagaaactatctcgcgtcagtccttgcggggagcgggctttcgtaatctttccctgctttttgtactaaataattcgcattttatgtttaaaaattgagatattccttattacctgaagctgttttttattgcttatacatgatcaaatacttcttacataattaaggagaacaaaatggaacttaaaaaattgatggaacatatttctattatccccgattacagacaagcctggaaagtggaacataaattatcggatattctactgttgactatttgtgccgttatttctggtgcagaaggctgggaagatatagaggattttggggaaacacatcccgattttttgaagcaatatggtgattttgaaaatggtattcctgttcacgataccattgccagagttgtatcctgtatctgtcctgcgaaatttcatgagagctttattaactggatgcttgactaccattcttcagatgataaagacgtcatcgcaattgatggaaaaatacaccggcattcttatgacaagagtcgccgtaagggagcgattcatgtcattagtgcgttctcaacaatgcacagtctggtcatcggacagatcaagacggataagaaatccaatgagatcacagctatccctgaacttcttaacatgctggatattaaaggaaaaatcatcaaaaccgatgcgatgggttgccagaaagatattgcagagaagatacaaaaacagggaggtgattatttattcgctgtaaaaggaaaccaggggcggctaaataaagccttcgaggaaaaatttccgctgaaagaattaaataatcccaagcatgacagttacgcaattagtgaaaagagtcacggcagagaagaaacccgtcttcatattgtttgcgatgtccctgatgagcttattgatttcacgtttgaatagaaagggcagctatggttagaaactacctgacgtcagtccttgcggggagcaggctttcgtaaatttgtcctgctacaacaggattaacttcacaaatatcatttctcaacgtctacacttactcctgtaaaccgctcaggagcagtaatgaatctacaacgatttgatgacagcaccctaatccgtatctttgcccttcatgagttacatcgactgaaagaacatggcttaacgcgcggggcgcttctcgattatcacagccgctataaactcgtctttctggcgcattctcagccggagtaccgcaaacttggcccgttcgtggctgatattcaccagtggcaaaatctggatgactattacaaccagtaccgccaacgcgtagttgttttgctttctcaccccgccaacccgcgcgatcacaccaatgttttgatgcacgttcagggttattttcgcccgcatattgattccacagaacgccagcagctggctgcgcttatcgacagttatcgccgtggcgagcaaccacttcttgcgccgctgatgcgtatcaaacactatatggcgctttatcctgacgcctggctttcagggcagcgttatttcgaactttggccgcgtgtgattaacttgcgccattcaggagttttatgactacccatctggtctggtttcgccaggatttacgtctgcacgataatctcgcactggctgccgcctgccgcaattcgtctgcacgcgtgctggcgttgtatatcgctacaccacgccagtgggcgacgcataacatgtcgccgcgtcaggctgaacttatcaatgctcaactgaatgggctacaaatagcgcttgcggaaaaaggtattcctttattgttccgtgaagtggatgactttgtcgccagtgtcgaaatagttaaacaggtgtgcgcggaaaacagcgttacccacctgttttataactatcagtatgaagtgaatgagcgggcgcgggatgtggaagttgaaagagcgctgcgtaacgtggtgtgtgaaggatttgatgacagcgtgatcctgccgcctggcgcggtgatgaccggtaatcacgagatgtacaaagtctttacgccttttaagaatgcctggctgaaacggctgcgggaagggatgccggagtgcgtcgctgcgccaaaagttcgtagtagcggatcgatagagccctcgccatccattacgctgaattatcctcgtcagtctttcgatactgcgcattttccggtggaagaaaaagcggcgattgcgcaattacgccagttttgccagaacggtgccggagaatatgagcaacaacgagattttccggcagtggaaggcaccagccgtttgtcggccagcctggcaacgggcgggttatcgcctcgccagtgcttgcatcgcttgttggctgaacagccgcaggcgctggacggtggggccggtagtgtctggcttaatgagctgatctggcgcgagttttaccgtcacctgataacgtatcacccctcgttgtgtaaacatcgtccatttattgcctggacggatcgtgtacagtggcagagcaatcccgcacatttacaggcctggcaggaaggcaaaacgggatacccgattgttgatgccgctatgcgtcagcttaacagcactggctggatgcataacaggctacggatgattacagccagttttctggtgaaagatttattgatcgactggcgcgaaggcgagcgatatttcatgtcgcagctgattgatggtgatttggcagccaataacggtggctggcagtgggccgcttcaaccggaaccgatgcagcgccgtattttcgtattttcaacccgacaacccagggcgagaaatttgatcatgagggcgagtttatccgccagtggctaccggaactgcgcgatgtgccagggaaagtggtgcatgagccgtggaagtgggcgcagaaagcaggtgtgacgctggattatccgcaaccgatagtcgagcacaaagaagcgagagtacaaacgttggcagcgtatgaggcggcgcggaaggggaaataacagacgcgtcaggcaatcgagcccagatgccggatgcggcgtgaacgccttatccagcctacaaatttgtgcaaattcaataaattgcaggaaatacgtaggcctgataagacgcgtcaagcgtcgcatcaggcatcggtgctggcctattaagactccagcgccagcgcgcggtttctgaatttcagcgcctgatacagccaaatcatcagtaccagtcctacacacgccagtgcgccccaggtaatttgatcaaatacttcaatatatgcattgatggagtagttgatcgccccggaagcatcaaacgaagcctgcgatgtctgatcggcaatcacgcccgccagatagttcgcgatcgcgccagaaagcagcatgtagatgccggttaatacgccggtcacaccggggatttcaatgcgcgtaatttgcgacatggcaaccgggtcgataaacagttccgcaaagcccatcaccgccaggcctaataccatcagtggcagagaagagtgaccatacattgcggaccagcgggcgcttaaggtcagaatgcagaatccggcgctcatcaggccaaggccaagagcaaatttcccccagatgcgcacggtacgattacccgcgacactctcttttaccacccacgccaggaacacaccgcacagcataactgcgaaggcattaatcgactggaacatcgcggtcggaacggtataaccaaacatatcgcggttaacgaagcggtcgatataaaggctaatcgagctaccgccctgttgtgcgaaggcccagaacaacatactgaagaaggtgagcgtcacaatcagccccagctccttccgctgtttctggttttctgctttgcgataaatttttgccagtacacccaggccaataatagtcgcgacaattaaggcgtataccgaccactctttccagaacagtatggtaatcagtgcaggcgttgccaccagcagaaccagcagccatccccagttcggcaggagaaagtttgtcgcacgcagtacttttttgttaacgccgcgggtatgagtgaaatgacgattgccacataagaaaatgaccagacccgcgatcatgccaaccgccgccaggccaaagcccatcgcccagctgtactcttcctgggcgtaaccacaggcgataggtgcgataatagaccccacgttacccgccgcatacatcagcgagaaaccgccatcacgacgcggatcggttggctcatacagctcgccgagcagacagcttacgttagatttaaacaggccatagccgcagacgataatcgccagggacagatagaggaatgacggatggatctcactggcacccagcaccacatgaccgatcgccatcaacaacgcccccagcatcaccgccatgcgattgccgagaactttatccgccaaaaagccaccgaggattggcgtgacatacaccagcgaacagtaggcgctaaataactcgtaggcgtgagtatcgttgtattttagttgattggtgagatagagaatcagcagggcacgcatgccgtaaaagctaaaatattcccagatttgcagcgcaacgacatagtaaatagcgcgcggctgtgatgcgtgtttattcataataattccacaattgacggcaacgtcacgtaatagttgcgcggcgtgcttgtgtttccttaaagttaaaactttgatacagatctgattatttatgcaatatgctgtctgattgcataaatatacattagctgaagcgtgatgatataaacaatttgcgtcttttggcgtcgggtttgtttcttaatatgtcaaaagattggctatcgacgaactggcgaggtaacgctatgttaacggtgtagctatcagaatacggaaggcgcgaagatgaaaaacaccgaactggaacaactgattaacgaaaaactgaacagcgcggcgattagtgattacgcgccgaatggtttgcaggtggaaggcaaagagacggtgcaaaaaattgttaccggtgtcaccgccagccaggctttgctcgatgaggcagtgcgtctgggcgcggatgcggtcattgtgcatcatggctacttctggaaaggagagtctccggtcattcgcggaatgaagcgtaaccgtttaaaaacgttgctggcgaatgatatcaacctgtatggctggcatttgccgcttgacgcacatcctgagctgggcaataacgcacagctggcggcgttactggggatcacggtcatgggcgaaattgagccgttggtgccgtggggcgaactgaccatgcctgtgccgggactggagctggcttcctggattgaagcgcgtctgggacgtaagccgttatggtgtggcgataccggacctgaggtggtccagcgcgtcgcctggtgcacgggcggcgggcaaagttttatcgatagcgccgcgcgttttggcgtggatgcttttattactggcgaagtttctgaacagaccattcattcagcccgcgagcagggattgcatttttatgctgcaggtcaccatgccactgaacgtggtggtattcgcgcattgagcgagtggctgaatgaaaataccgatcttgatgtgacctttattgatattcctaatcctgcataacgaataatcagagggatcgaaagtgcaacgagcgcgttgttatctgataggtgaaacggcggtagtgctggaactggaaccgccggtgacgctggctagccagaaacggatctggcgactggcgcagcgtctggtggatatgccgaatgtggttgaagccattcccggcatgaacaatatcacggtgattttgcgtaatcctgagtcgctggcgctggatgccatagagcgtttgcaacgctggtgggaggagagcgaggcgctggagccggagtctcgctttattgaaattccggtggtttacggtggtgcaggcggaccggatttggcggtggtcgcggcgcattgcgggttgagcgaaaaacaggttgttgaattgcactcctccgtggaatacgtggtctggtttttaggttttcaaccgggcttcccgtatctcgggagtttgccggaacaactacacacgccacggcgcgctgaaccgcgcttactcgttccggcaggttctgtcgggatcggcgggccgcagactggtgtttatccgctggcaacgccgggtggctggcagttgattggtcatacctcactcagcctgtttgatccggcgcgtgacgaacccatcttattacgtccgggagacagcgtgcgctttgtaccgcagaaggagggagtatgctgaagattattcgtgcgggcatgtataccactgtgcaggatggcggtcgtcacggttttcgccagtcgggtatcagccactgcggcgcactggatatgcccgcgttacgcattgctaacctactggtgggtaatgacgccaatgcccccgcgctggagatcacgctcggtcagttaactgttgagttcgaaactgatgggtggtttgctctgacgggtgccggttgcgaagcgcggctggatgataatgccgtctggaccggctggcgattgccgatgaaagcaggccagcgtttaacgcttaaacgcccgcagcacgggatgcgcagttatctggcggtcgcgggtggtattgatgttccgccggtaatgggctcatgcagcaccgatctcaaagtggggattggcgggctggaaggccgtttactgaaggatggtgaccgactcccgattggcaaatcgaagcgtgattctatggaagcgcagggcgttaaacagctgctgtggggcaaccgcattcgcgccttgccggggccggaatatcatgagttcgatcgcgcctcgcaggatgcattctggcgttcgccctggcagcttagctcgcaaagtaaccgcatgggctatcgcttacaggggcaaattttaaaacgcaccaccgatcgcgaactgttatctcacggtttgttaccgggcgtggtgcaggtgccacataacgggcagccgattgtgttgatgaacgacgcacagaccaccggtggttacccgcgtattgcctgtatcattgaggctgatatgtaccatctggcgcaaattccgctcggtcagccgattcattttgtccagtgttcactggaagaggcactaaaagcacggcaagatcagcaacgttattttgaacaattagcgtggcggctgcacaatgaaaattgacctgaacgccgatctgggcgaaggctgcgccagcgacgcagagctattaacgctggtttcctctgccaatattgcctgtggatttcatgcaggcgatgcgcaaatcatgcaggcttgcgtgcgtgaagcaataaaaaatggtgtcgcgattggcgctcacccgagttttcccgacagggaaaattttggtcgcagcgccatgcagctgccgccagaaaccgtttacgcccagacgctgtatcaaattggcgcgctggcaacgattgcccgtgcgcaaggcggcgtaatgcgtcatgtcaaaccgcacggcatgttgtacaaccaggcggcgaaagaagcacaactggcagacgccatcgccagagcggtatacgcttgcgatccagcattgattctcgtcgggctggcgggaagcgagctgattcgtgcaggcaagcaatatggtctgacaacgcgcgaggaagtgtttgccgatcgcggttatcaggctgacggctcgctggtgccgcgaagccagtcaggcgcgttgattgaaaacgaagaacaggcgctggcgcaaacgctggagatggtgcaacacggcagagtcaaaagtatcaccggcgaatgggcaacggtcgcggcgcaaacggtctgcctgcatggcgacggcgagcacgcactggcgttcgcccgccgactacgctctgcatttgccgaaaaggggattgttgtcgcagcataaccccgattaataaagaatgaaaaaaggatatcaccatgcctgaaggcccggagatccgccgtgcagcggataacctggaggcggcgatcaaaggcaaaccactaactgatgtctggtttgccttcccgcagttaaaaccttatcaatcacaacttatcggtcaacacgttacccatgtggaaacgcgtggtaaggcgttgttaactcatttttccaacgacttaacgctctacagccataatcagctttacggcgtctggcgcgtggttgataccggcgaagagccgcagaccacgcgagtattgcgggtaaaactgcaaacggctgacaaaaccattctgctttatagcgcctcggatattgagatgttgaccccggaacaactgaccacgcatccgtttttacaacgcgttggtcccgatgtgctggatccgaatctgacgccggaggtggtgaaagaacgattattgtcgccgcgctttcgtaaccgtcagtttgctggattactgctcgatcaggcgtttctggctgggcttggcaattatttgcgggtggagatcctctggcaggttgggttgactggaaatcataaagcgaaagatctcaatgcggcgcaactggatgcactcgcacacgcgttactggagattcctcgattttcctacgctacgcgggggcaggtggatgagaataagcatcatggggcgctgtttcgctttaaggtttttcatcgagatggcgaaccgtgcgaacgttgtggcagcatcattgagaaaaccacgctgtcatctcgcccgttttactggtgccctggctgccagcactaggccgaccgcttcggcgcataggttgaaataaaccgcgcaatggcaggccctgtcagcaaaatactgaacaggcgtagggtttgcatcgccataatgagcgccatatcggcattgctccctgcggcgatgaccgccacggtatcaagcccgccggggctggtggcgaggtaggcagtcataaaatcaatgtgcataaaccgggtcagcccccacgccatacccgcacaaatagccagcagagcaaaaatcgacagcaggatttgcggtagcgggcgtagtgcccgcagtaagatttgtttatcgaaaccaagaccaatccgccagccaattgccatatacgccatcgccagcagccattccggtagttcgatggtgatgagctgaccagactggagcactgcgcccgccagcatcgggatgagcatcgtgccggaaggaagacgcagcaggcatcccactgtaccggcaacgaccgcgagcaaaatagtaagcaggagattaatgctcactggcgggaaccagacgatatgctggttaaccgcttcagcgttatcgcccagcatcatgcgggtgaccagaacagcggcccccgcgacgaacagcactcgcagatattgcataaacgccaccaggcgaatatctgcgccgtaatcttgcgccatagcgaccattgccgccgcgccgccaggagaggagccccaggcaccggtatttccaggcaatgagctatagcgcaccaataaccaacccacaatggcgctggaaagcagcgttaccagtaaaattgcaagcacgatcggccagttgacggccagggtggtgagaatcgaaccagtgaggttttgcgcaatcatgcagccaagaatggcctgggcggcgagaaaagcagagcggggaagttgcagagtaattccgcgcatactaaagatgatcccggcgatcatcggcccaagtaatagcgccgccgggagatgtaccgcgaggaaaccaatagaaaggagaagtgatagcacacataacattccccactgcaaaactggcatccttcgctccctcattattttctctttggtgtatcgatacagcataaagaaagctgggccaggaaaaaataacagcaatcaaggaaaaggggaaaatcagcaattttctgaaagagatgccctttccggcggcaaagggcatcatggtaaatcagttatagttaatcttaaaaagcaccactgtatcgaaggggccagcctcgatgggggtgcctggaatggacgaaagttcagccgtataggttttttcgtagaccaacatgtcactggtgaaatcggcgtattcagcatatttattgaaggtataaggcgaggcgttttcatccagtaaacgtagcttcagaccattaccaatcaacaatgctttatcttcttcaaccaacgtttcttcggtataaaaggaggaactgactttaaatccgtcggtgcattgatcgttttggctcttggtcgttttaatactgaacgttttcgacattgtgtggcgacgtatatccagcaaattaaatttaccaaaatcaatcacctgtgtttccggtgaaatggaaaaattgacgctgcaatccagcacgcgaatgttttccagaccagtaatatgatatttcaggttttgggcagtagggtcttcgttaacgctaccggcaccgtcaaattgcacgacgatatagtcgctaagcgtactttgataatcatgcggcggcatttctcgtattttgacgtataaccgcatgcgagcgagaaaggtacgcgacatatgaatattagcgggatcgcccgagcaaattttgttctgccatcccatcgcgatgatctgctcaggggtataaatatcaatgttcttactgtcgatacactggttagtgtcgatgcgactttttcccagactggcatcgtaatcgacaccgttgtatgtcacgccgagttgataataacgatcctgcacccccggataggggtttacccaggcgtagacatgctcgctttcaaagttgccgttggtattgttgtcacaatagacgggaattttaatatcgtcagattcccagatcttatcaccgggtttggcattgcctggtacagcaaacggttgaatcgcttctgatttttctactgcgccaccagatgtaccaaaatagcagttcagcgccattgcagacttcaacggcagaaataacaggcagatgacgagcaacaatcccttgccagcactcatttcgcctccactgcttgtaaacggcattgtccgctgcagttgagcgtcgtcatgcgtaatgcgccgtaatcatccatgtaaccgagataaaactggctgccgctataacttccggtgtttgtgttgaccgtactaaaaggtgcaaccatcacggttttgaagcctgggagaacgcctttttcatttctccccagataggcaatggtcagataatacgcggtaggatttttcagtgtcagttggttgccctgctggctgacctgtaactgcagttcgaccttttctcctgctttcttgcgtaatgcagccggtcgccagaacaatttaatacgactttgaatagcgacctgaagtatcgcatggtcgctgcttttatccggagcgggaggaatttcgcgcatattgtagaaaaatagcgtttcgcgatcgccaggtaattgtgtggttgaggcttgtttcacaacccgcacctgcgatgtcgctttcggttccagacgttgaatagggggcaaagcgaccagaagagcatcgcttttctcccctttttcattttctatccaggaataagcaagataaggcagtttgtcactttggttttcgatacgcaggctggtggctttgtcattggcgttaaacacaatgcgtgtgcgatcgggttgcaccgcagcattgcaacccaagctgatggttaacaacattaagggtaatcctttaataaatgtcattctcttttccttaattaatgacaaggtaaaatcaggcgtttggtcgtgtcttccagacgttctggcagatgaataatgcagctttgctcaccccagaccacggtaaacagttgattttcagcgacaccgcttaaccaggcatgtccttcctcgccaaccatacccacgctaatgccgctgtcatcctggcggatatccgcaccgaggggagggaactgaccgctggcgttgcgtatgatgacgttaacgtctttaccggaacgggaagccagtgatttgtaacctatcgcgccttcaatccatgtttccttgatgacgttttctgcaactgttacgccgtcgggtaagtcattcatgttcaccgccacggtggaaggctggtaactggaaatcaacggcaccaccgcaatgccaaaatggttggtgtagtcgagattgccctgaaccggaatatctgccacgccatcggtgctgaccatcaggcgtggttcattggtggagctgcggcgatgaaatgctgcaccatattgggttgcggtgaaagaaccgctccagctgctgctgacggaactgtaatcactggcggcataggtaccagaaatatcccactcacccgctgaactcaggtgctgatagttaccgctcacctgggctccattgtccggacgatcggattgcagtccggcagacatgccccagctattacgttcatccagcgtatcgttccacgacatgcggtgtatggtgctgtggctactgttttgcatgtcatagccaacccgaccaccgttaccgaaggggagcgaaatcgacagataaatctggttgtcgcgatctttatcttcgtagtgggtcgtattgaatgacgtcgaaatcgagatatctctccagtcaccaatatcaacattaaaacctgctgtgatgttggcggtcgtggaggcgtctgcattccaccaggtttgatgtagcaggttggcgtaaagattgaggtttagtggggtaatcggttggcccacggataagctgatcgtctgtttttcgtcctgcgcatcgctgtcgttgtatttgtgatccagatagttggcgtagctgtgaaaatgacgatctgagaagcgataagcggcgagcgaaatcgtgctgttggtggcatccacttgtttgctgtaattaaaacggtagcttaagccccgctcgtcctgctgagtatcaaaatggctactggcccaggtgacatcaaaggacagtgcgccaagccacagcatattttgcccgatacccattgcggcagaatggtagtcatcatcagaaatcagcaggccgccgtacagcgaggtgtttgagagcatcccccaggaaacttcattgctaaaaaaggtttcattttcagtttgatgtgacatggaaggccgtggctgacccgcggccaatttatagcgaacctgtccctggcgagtcaggaagggcgtcgatgctgccgaaacctggaaattgttcacccgaccatcttcttccgtcactttgacatccagcgtgccctgaacagactgattgaggtcatcaataataaacgggcctggcgggacttttttctggtaaatgacgcggcctgattgactgatcgtcaccgtggcattggtctgtgcaataccgctaatttgtggggcgtagccacgcagctcccacggtaacattcgatcgtcactcgccagtgccgcgccggtataagaaaaaccatcgaaaatattggaactgaaatcggtttcgccgagggttaacttagagcctaattgcggtaatggacgaaaaagataggtgcgcgatattccgcctgactggtcatggttatcttcgctatcggtcttattaagctggtaatcactgcgtaagcgccatgccccggcgttaattccggcggtaccgtaggcattcaggttagtgctgctgctgccgtcctgtgggcggtagctgctggcaaacaagttgtaatccatcaggacaccggcaacaccttctttccatgtagaggggggagcccagttttctgagtgccacgccagccaggcttgcggaatactaatattcagttgctgattggcttgatcgaaattgaagagcatttcaggtcgggaactgaaatcaatacaccgatctatctgtggcaaggactgacggatatctggttttaaaccaaatttatcgaccagtgaatcattgatgcatggaatggttttgtcaccctttttttgccagttaattttttgcccattactgattttgttgttattcaccgcaacgctaacaaaatattcaccgggagcaatgactcctttttcctttaataatgaaatatcaatgcggtcgcgcattgatttatcgagaacattcagattgaattcgaccgccattgcgcaaggcatcgccatgaccaggcaggatacaaaagagagtcgataaatattcacggtgtccatacctgataaatattttatgaaaggcggcgatgatgccgccaaaataatacttatttataatccagcacgtaggttgcgttagcggttacttcacctgccgtgacatcgactgcattatcaatttgttccatccaggcgaaaaagttcagcgtctgttctgatgagcttgcatccaggtcaagatctggcgcggctgaacctaatacgatgttaccgtcatttttgtccatcagtcgtacaccgaccccagttgcttcgcctgcactggtgttgctcaacaaaggcgtagcaccagttgtcttagccgtgctatcgaaggttacgccaactttggataccggcattccgctaccgttgtcagaagcaggcagatcacagttgatcaagcgaatgtcgacggccactttattgctatgatgctcccggtttatatgggttgtcgtgacttgtccaagatctatgtttttatcaatatcttctggatgaatttcacaaggtgcttcaataacctcccccttaaagtgaatttcgccagaaccttcatcagcagcataaacaggtgcagtgaacagcagagatacggccagtgcggccaatgttttttgtcctttaaacataacagagtcctttaaggatatagaataggggtatagctacgccagaatatcgtatttgattattgctagtttttagttttgcttaaaaatattgttagttttattaaatgcaaaactaaattattggtatcatgaatttgttgtatgatgaataaaatataggggggtatagatagacgtcattttcatagggttataaatgcgactaccatgaagtttttaattgaaagtattgggttgctgataatttgagctgttctattctttttaaatatctatataggtctgttaatggattttatttttacaattttttgtgtttaggcatataaaaatcaacccgccatatgaacggcgggttaaaatatttacaacttagcaatcaaccattaacgcttgatatcgcttttaaagtcgcgtttttcatatcctgtatacagctgacgcggacgggcaatcttcataccgtcactgtgcatttcgctccagtgggcgatccagccaacggtacgtgccattgcgaaaatgacggtgaacatggaagacggaatacccatcgctttcaggatgataccagagtagaaatcgacgttcgggtacagtttcttctcgataaagtacgggtcgttcagcgcgatgttttccagctccatagccacttccagcaggtcatccttcgtgcccagctctttcagcacttcatggcaggtttcacgcattacggtggcgcgcgggtcgtaatttttgtacacgcggtgaccgaagcccatcaggcggaaagaatcatttttgtctttcgcacgacgaacaaattccggaatgtgtttaacggagctgatttcttccagcattttcagcgccgcttcgttagcaccgccgtgcgcaggtccccacagtgaagcaatacctgctgcgatacaggcaaacgggttcgcacccgaagagccagcggtacgcacggtggaggtagaggcgttctgttcatggtcagcgtgcaggatcagaatacggtccatagcacgttccagaatcggattaacttcatacggttcgcacggcgtggagaacatcatattcaggaagttaccggcgtaggagagatcgttgcgcgggtaaacaaatggctgaccaatggaatacttgtaacacatcgcggccatggtcggcattttcgacagcaggcggaacgcggcaatttcacggtgacgaggattgttaacatccagcgagtcgtgatagaacgccgccagcgcgccggtaataccacacatgactgccattggatgcgagtcgcgacggaaagcatggaacagacgggtaatctgctcgtggatcatggtatgacgggtcaccgtagttttaaattcgtcatactgttcctgagtcggtttttcaccattcagcaggatgtaacaaacttccaggtagttagaatcggtcgccagctgatcgatcgggaaaccgcggtgcagcaaaataccttcatcaccatcaataaaagtaattttagattcgcaggatgcggttgaagtgaagcctgggtcaaaggtgaacacaccttttgaaccgagagtacggatatcaataacatcttgacccagcgtgcctttcagcacatccagttcaacagctgtatccccgttgagggtgagttttgcttttgtatcagccatttaaggtctccttagcgccttattgcgtaagactgccggaacttaaatttgccttcgcacatcaacctggctttacccgttttttatttggctcgccgctctgtgaaagaggggaaaacctgggtacagagctctgggcgcttgcaggtaaaggatccattgatgacgaataaatggcgaatcaagtacttagcaatccgaattattaaacttgtctaccactaataactgtcccgaatgaattggtcaatacttccacactgttacataagttaatcttaggtgaaataccgacttcataacttttacgcattatatgcttttcctggtaatgtttgtaacaactttgttgaatgattgtcaaattagatgattaaaaattaaataaatgttgttatcgtgacctggatcactgttcaggataaaacccgacaaactatatgtaggttaattgtaatgattttgtgaacagcctatactgccgccaggtctccggaacaccctgcaatcccgagccacccagcgttgtaacgtgtcgttttcgcatctggaagcagtgttttgcatgacgcgcagttatagaaaggacgctgtctgacccgcaagcagaccggaggaaggaaatcccgacgtctccaggtaacagaaagttaacctctgtgcccgtagtccccagggaataataagaacagcatgtgggcgttattcatgataagaaatgtgaaaaaacaaagacctgttaatctggacctacagaccatccggttccccatcacggcgatagcgtccattctccatcgcgtttccggtgtgatcacctttgttgcagtgggcatcctgctgtggcttctgggtaccagcctctcttcccctgaaggtttcgagcaagcttccgcgattatgggcagcttcttcgtcaaatttatcatgtggggcatccttaccgctctggcgtatcacgtcgtcgtaggtattcgccacatgatgatggattttggctatctggaagaaacattcgaagcgggtaaacgctccgccaaaatctcctttgttattactgtcgtgctttcacttctcgcaggagtcctcgtatggtaagcaacgcctccgcattaggacgcaatggcgtacatgatttcatcctcgttcgcgctaccgctatcgtcctgacgctctacatcatttatatggtcggttttttcgctaccagtggcgagctgacatatgaagtctggatcggtttcttcgcctctgcgttcaccaaagtgttcaccctgctggcgctgttttctatcttgatccatgcctggatcggcatgtggcaggtgttgaccgactacgttaaaccgctggctttgcgcctgatgctgcaactggtgattgtcgttgcactggtggtttacgtgatttatggattcgttgtggtgtggggtgtgtgatgaaattgccagtcagagaatttgatgcagttgtgattggtgccggtggcgcaggtatgcgcgcggcgctgcaaatttcccagagcggccagacctgtgcgctgctctctaaagtcttcccgacccgttcccataccgtttctgcgcaaggcggcattaccgttgcgctgggtaatacccatgaagataactgggaatggcatatgtacgacaccgtgaaagggtcggactatatcggtgaccaggacgcgattgaatatatgtgtaaaaccgggccggaagcgattctggaactcgaacacatgggcctgccgttctcgcgtctcgatgatggtcgtatctatcaacgtccgtttggcggtcagtcgaaaaacttcggcggcgagcaggcggcacgcactgcggcagcagctgaccgtaccggtcacgcactgttgcacacgctttatcagcagaacctgaaaaaccacaccaccattttctccgagtggtatgcgctggatctggtgaaaaaccaggatggcgcggtggtgggttgtaccgcactgtgcatcgaaaccggtgaagtggtttatttcaaagcccgcgctaccgtgctggcgactggcggagcagggcgtatttatcagtccaccaccaacgcccacattaacaccggcgacggtgtcggcatggctatccgtgccggcgtaccggtgcaggatatggaaatgtggcagttccacccgaccggcattgccggtgcgggcgtactggtcaccgaaggttgccgtggtgaaggcggttatctgctgaacaaacatggcgaacgttttatggagcgttatgcgccgaacgccaaagacctggcgggccgtgacgtggttgcgcgttccatcatgatcgaaatccgtgaaggtcgcggctgtgatggtccgtgggggccacacgcgaaactgaaactcgatcacctgggtaaagaagttctcgaatcccgtctgccgggtatcctggagctttcccgtaccttcgctcacgtcgatccggtgaaagagccgattccggttatcccaacctgtcactacatgatgggcggtattccgaccaaagttaccggtcaggcactgactgtgaatgagaaaggcgaagatgtggttgttccgggactgtttgccgttggtgaaatcgcttgtgtatcggtacacggcgctaaccgtctgggcggcaactcgctgctggacctggtggtctttggtcgcgcggcaggtctgcatctgcaagagtctatcgccgagcagggcgcactgcgcgatgccagcgagtctgatgttgaagcgtctctggatcgcctgaaccgctggaacaataatcgtaacggtgaagatccggtggcgatccgtaaagcgctgcaagaatgtatgcagcataacttctcggtcttccgtgaaggtgatgcgatggcgaaagggcttgagcagttgaaagtgatccgcgagcgtctgaaaaatgcccgtctggatgacacttccagcgagttcaacacccagcgcgttgagtgcctggaactggataacctgatggaaacggcgtatgcaacggctgtttctgccaacttccgtaccgaaagccgtggcgcgcatagccgcttcgacttcccggatcgtgatgatgaaaactggctgtgccactccctgtatctgccagagtcggaatccatgacgcgccgaagcgtcaacatggaaccgaaactgcgcccggcattcccgccgaagattcgtacttactaatgcggagacaggaaaatgagactcgagttttcaatttatcgctataacccggatgttgatgatgctccgcgtatgcaggattacaccctggaagcggatgaaggtcgcgacatgatgctgctggatgcgcttatccagctaaaagagaaagatcccagcctgtcgttccgccgctcctgccgtgaaggtgtgtgcggttccgacggtctgaacatgaacggcaagaatggtctggcctgtattaccccgatttcggcactcaaccagccgggcaagaagattgtgattcgcccgctgccaggtttaccggtgatccgcgatttggtggtagacatgggacaattctatgcgcaatatgagaaaattaagccttacctgttgaataatggacaaaatccgccagctcgcgagcatttacagatgccagagcagcgcgaaaaactcgacgggctgtatgaatgtattctctgcgcatgttgttcaacctcttgtccgtctttctggtggaatcccgataagtttatcggcccggcaggcttgttagcggcatatcgtttcctgattgatagccgtgataccgagactgacagccgcctcgacggtttgagtgatgcattcagcgtattccgctgtcacagcatcatgaactgcgtcagtgtatgtccgaaggggctgaacccgacgcgcgccatcggccatatcaagtcgatgttgttgcaacgtaatgcgtaaaccgtaggcctgataagacgcgcaagcgtcgcatcaggcaaccagtgccggatgcggcgtgaacgccttatccggcctacaagtcattacccgtaggcctgataagcgcagcgcatcaggcgtaacaaagaaatgcaggaaatctttaaaaactgcccctgacactaagacagtttttaaaggttccttcgcgagccactacgtagacaagagctcgcaagtgaaccccggcacgcacatcactgtgcgtggtagtatccacggcgaagtaagcataaaaaagatgcttaagggatcacgatgcagaacagcgctttgaaagcctggttggactcttcttacctctctggcgcaaaccagagctggatagaacagctctatgaagacttcttaaccgatcctgactcggttgacgctaactggcgttcgacgttccagcagttacctggtacgggagtcaaaccggatcaattccactctcaaacgcgtgaatatttccgccgcctggcgaaagacgcttcacgttactcttcaacgatctccgaccctgacaccaatgtgaagcaggttaaagtcctgcagctcattaacgcataccgcttccgtggtcaccagcatgcgaatctcgatccgctgggactgtggcagcaagataaagtggccgatctggatccgtctttccacgatctgaccgaagcagacttccaggagaccttcaacgtcggttcatttgccagcggcaaagaaaccatgaaactcggcgagctgctggaagccctcaagcaaacctactgcggcccgattggtgccgagtatatgcacattaccagcaccgaagaaaaacgctggatccaacagcgtatcgagtctggtcgcgcgactttcaatagcgaagagaaaaaacgcttcttaagcgaactgaccgccgctgaaggtcttgaacgttacctcggcgcaaaattccctggcgcaaaacgcttctcgctggaaggcggtgacgcgttaatcccgatgcttaaagagatgatccgccacgctggcaacagcggcacccgcgaagtggttctcgggatggcgcaccgtggtcgtctgaacgtgctggtgaacgtgctgggtaaaaaaccgcaagacttgttcgacgagttcgccggtaaacataaagaacacctcggcacgggtgacgtgaaataccacatgggcttctcgtctgacttccagaccgatggcggcctggtgcacctggcgctggcgtttaacccgtctcaccttgagattgtaagcccggtagttatcggttctgttcgtgcccgtctggacagacttgatgagccgagcagcaacaaagtgctgccaatcaccatccacggtgacgccgcagtgaccgggcagggcgtggttcaggaaaccctgaacatgtcgaaagcgcgtggttatgaagttggcggtacggtacgtatcgttatcaacaaccaggttggtttcaccacctctaatccgctggatgcccgttctacgccgtactgtactgatatcggtaagatggttcaggccccgattttccacgttaacgcggacgatccggaagccgttgcctttgtgacccgtctggcgctcgatttccgtaacacctttaaacgtgatgtcttcatcgacctggtgtgctaccgccgtcacggccacaacgaagccgacgagccgagcgcaacccagccgctgatgtatcagaaaatcaaaaaacatccgacaccgcgcaaaatctacgctgacaagctggagcaggaaaaagtggcgacgctggaagatgccaccgagatggttaacctgtaccgcgatgcgctggatgctggcgattgcgtagtggcagagtggcgtccgatgaacatgcactctttcacctggtcgccgtacctcaaccacgaatgggacgaagagtacccgaacaaagttgagatgaagcgcctgcaggagctggcgaaacgcatcagcacggtgccggaagcagttgaaatgcagtctcgcgttgccaagatttatggcgatcgccaggcgatggctgccggtgagaaactgttcgactggggcggtgcggaaaacctcgcttacgccacgctggttgatgaaggcattccggttcgcctgtcgggtgaagactccggtcgcggtaccttcttccaccgccacgcggtgatccacaaccagtctaacggttccacttacacgccgctgcaacatatccataacgggcagggcgcgttccgtgtctgggactccgtactgtctgaagaagcagtgctggcgtttgaatatggttatgccaccgcagaaccacgcactctgaccatctgggaagcgcagttcggtgacttcgccaacggtgcgcaggtggttatcgaccagttcatctcctctggcgaacagaaatggggccggatgtgtggtctggtgatgttgctgccgcacggttacgaagggcaggggccggagcactcctccgcgcgtctggaacgttatctgcaactttgtgctgagcaaaacatgcaggtttgcgtaccgtctaccccggcacaggtttaccacatgctgcgtcgtcaggcgctgcgcgggatgcgtcgtccgctggtcgtgatgtcgccgaaatccctgctgcgtcatccgctggcggtttccagcctcgaagaactggcgaacggcaccttcctgccagccatcggtgaaatcgacgagcttgatccgaagggcgtgaagcgcgtagtgatgtgttctggtaaggtttattacgacctgctggaacagcgtcgtaagaacaatcaacacgatgtcgccattgtgcgtatcgagcaactctacccgttcccgcataaagcgatgcaggaagtgttgcagcagtttgctcacgtcaaggattttgtctggtgccaggaagagccgctcaaccagggcgcatggtactgcagccagcatcatttccgtgaagtgattccgtttggggcttctctgcgttatgcaggccgcccggcctccgcctctccggcggtagggtatatgtccgttcaccagaaacagcaacaagatctggttaatgacgcgctgaacgtcgaataaataaaggatacacaatgagtagcgtagatattctggtccctgacctgcctgaatccgtagccgatgccaccgtcgcaacctggcataaaaaacccggcgacgcagtcgtacgtgatgaagtgctggtagaaatcgaaactgacaaagtggtactggaagtaccggcatcagcagacggcattctggatgcggttctggaagatgaaggtacaacggtaacgtctcgtcagatccttggtcgcctgcgtgaaggcaacagcgccggtaaagaaaccagcgccaaatctgaagagaaagcgtccactccggcgcaacgccagcaggcgtctctggaagagcaaaacaacgatgcgttaagcccggcgatccgtcgcctgctggctgaacacaatctcgacgccagcgccattaaaggcaccggtgtgggtggtcgtctgactcgtgaagatgtggaaaaacatctggcgaaagccccggcgaaagagtctgctccggcagcggctgctccggcggcgcaaccggctctggctgcacgtagtgaaaaacgtgtcccgatgactcgcctgcgtaagcgtgtggcagagcgtctgctggaagcgaaaaactccaccgccatgctgaccacgttcaacgaagtcaacatgaagccgattatggatctgcgtaagcagtacggtgaagcgtttgaaaaacgccacggcatccgtctgggctttatgtccttctacgtgaaagcggtggttgaagccctgaaacgttacccggaagtgaacgcttctatcgacggcgatgacgtggtttaccacaactatttcgacgtcagcatggcggtttctacgccgcgcggcctggtgacgccggttctgcgtgatgtcgataccctcggcatggcagacatcgagaagaaaatcaaagagctggcagtcaaaggccgtgacggcaagctgaccgttgaagatctgaccggtggtaacttcaccatcaccaacggtggtgtgttcggttccctgatgtctacgccgatcatcaacccgccgcagagcgcaattctgggtatgcacgctatcaaagatcgtccgatggcggtgaatggtcaggttgagatcctgccgatgatgtacctggcgctgtcctacgatcaccgtctgatcgatggtcgcgaatccgtgggcttcctggtaacgatcaaagagttgctggaagatccgacgcgtctgctgctggacgtgtagtagtttaagtttcacctgcactgtagaccggataaggcattatcgccttctccggcaattgaagcctgatgcgacgctgacgcgtcttatcaggcctacgggaccaccaatgtaggtcggataaggcgcaagcgccgcatccgacaagcgatgcctgatgtgacgtttaacgtgtcttatcaggcctacgggtgaccgacaatgcccggaagcgatacgaaatattcggtctacggtttaaaagataacgattactgaaggatggacagaacacatgaacttacatgaatatcaggcaaaacaactttttgcccgctatggcttaccagcaccggtgggttatgcctgtactactccgcgcgaagcagaagaagccgcttcaaaaatcggtgccggtccgtgggtagtgaaatgtcaggttcacgctggtggccgcggtaaagcgggcggtgtgaaagttgtaaacagcaaagaagacatccgtgcttttgcagaaaactggctgggcaagcgtctggtaacgtatcaaacagatgccaatggccaaccggttaaccagattctggttgaagcagcgaccgatatcgctaaagagctgtatctcggtgccgttgttgaccgtagttcccgtcgtgtggtctttatggcctccaccgaaggcggcgtggaaatcgaaaaagtggcggaagaaactccgcacctgatccataaagttgcgcttgatccgctgactggcccgatgccgtatcagggacgcgagctggcgttcaaactgggtctggaaggtaaactggttcagcagttcaccaaaatcttcatgggcctggcgaccattttcctggagcgcgacctggcgttgatcgaaatcaacccgctggtcatcaccaaacagggcgatctgatttgcctcgacggcaaactgggcgctgacggcaacgcactgttccgccagcctgatctgcgcgaaatgcgtgaccagtcgcaggaagatccgcgtgaagcacaggctgcacagtgggaactgaactacgttgcgctggacggtaacatcggttgtatggttaacggcgcaggtctggcgatgggtacgatggacatcgttaaactgcacggcggcgaaccggctaacttccttgacgttggcggcggcgcaaccaaagaacgtgtaaccgaagcgttcaaaatcatcctctctgacgacaaagtgaaagccgttctggttaacatcttcggcggtatcgttcgttgcgacctgatcgctgacggtatcatcggcgcggtagcagaagtgggtgttaacgtaccggtcgtggtacgtctggaaggtaacaacgccgaactcggcgcgaagaaactggctgacagcggcctgaatattattgcagcaaaaggtctgacggatgcagctcagcaggttgttgccgcagtggaggggaaataatgtccattttaatcgataaaaacaccaaggttatctgccagggctttaccggtagccaggggactttccactcagaacaggccattgcatacggcactaaaatggttggcggcgtaaccccaggtaaaggcggcaccacccacctcggcctgccggtgttcaacaccgtgcgtgaagccgttgctgccactggcgctaccgcttctgttatctacgtaccagcaccgttctgcaaagactccattctggaagccatcgacgcaggcatcaaactgattatcaccatcactgaaggcatcccgacgctggatatgctgaccgtgaaagtgaagctggatgaagcaggcgttcgtatgatcggcccgaactgcccaggcgttatcactccgggtgaatgcaaaatcggtatccagcctggtcacattcacaaaccgggtaaagtgggtatcgtttcccgttccggtacactgacctatgaagcggttaaacagaccacggattacggtttcggtcagtcgacctgtgtcggtatcggcggtgacccgatcccgggctctaactttatcgacattctcgaaatgttcgaaaaagatccgcagaccgaagcgatcgtgatgatcggtgagatcggcggtagcgctgaagaagaagcagctgcgtacatcaaagagcacgttaccaagccagttgtgggttacatcgctggtgtgactgcgccgaaaggcaaacgtatgggccacgcgggtgccatcattgccggtgggaaagggactgcggatgagaaattcgctgctctggaagccgcaggcgtgaaaaccgttcgcagcctggcggatatcggtgaagcactgaaaactgttctgaaataaatatctgtaataagaaatagccctcgccgcttccctctacaggaatggcgaagggctgtcggtttcgacatggttggccatcgtatgatggccttttttgtgcttatcgcgatgattttcgctgcgctatcagggtaaatttatagtcatcggtattaaaagcgttgcggctatattcaaacacccgaccatcaactaaatatccacgcgatactttttcaagaatcggctttgtctggctgatattaagcagacggctcatctcttcggttggcatcagaggaatgatttcctgttcgctacgatcgataaccattttcttcacttcttcgataaagtgatatttcgaattttccatgacctgccaggtgagatccgggaacaacgcaagcggcatccaggtttcttccagcgccattggcttttgcttgcgatagcgcacgcgcttcacatgccacacacgatcctgcggggtgatttgtagctgttgctgaagaaaatcgtcagccggaatcacttcgaatatcagaacttcactgtgtgtatcgacgtgacggtccgacagtttttcatcaaaactggttaactgaaaaatatcgtaattgacccgctcttctttgacgtaagtcccgctgccctgaatgctttcgaggatctgctgctcgactagctggcgcaaagcctgacgcaccgtaacccggctgacgccaaactctgtttgtagcgctgattcagtgggtaacgcatcgccaggtttaagctcgccacgcgcaatttgttcacgaatgcgatcggcaatctgccggtataagggcttgtgtcccatttttagtatctcattaatacgaatttaaccattatgcccgataaattcatcctgtaaataatacaaatacaatacaaataatttcaatcaagtgaaattgatcacataatggtattgttttatcgggcacactggcgcgactataaaaacgatcaagtgaggatcatgatgaatctgacgactctgacccaccgcgatgcgttgtgtctgaatgcgcgctttaccagccgtgaagaggccatccacgcgttgactcaacgtcttgctgctctggggaaaatttccagtactgagcaatttctggaagaagtgtatcgccgtgaaagccttggcccgaccgccttaggtgaagggttggctgtgccgcatggcaaaactgctgcggtaaaagaagcggcgtttgcggtcgccacactcagcgagccgcttcagtgggaaggcgttgatggcccggaagcagttgatttagtggtgctgctggcgattccccccaatgaagcgggtactacgcatatgcaactgctgacagcgctgaccacgcgccttgcggatgatgagattcgggcgcgtatacagtcggcgacgacgcctgatgagttgctctcggcgctggatgacaagggaggcacgcaaccttctgcctctttttccaacgcgccaactatcgtctgcgtaacggcctgtccggcgggtattgctcacacctatatggctgcggaatatctggaaaaagccggacgcaaactcggcgtaaatgtttacgttgaaaaacaaggcgctaacggcattgaagggcgtttaacggcggatcaactcaatagtgcaaccgcctgtatttttgcggctgaagtcgccatcaaggagagtgagcgttttaatggcattcccgcgctttcagtgcctgttgccgagccgattcgccatgcagaagcgttgatccaacaagcgcttaccctcaagcgtagcgatgagacgcgtaccgtacagcaagatacgcaaccggtgaaaagtgtcaaaacggagctgaaacaggcactgttgagcggaatctcttttgccgtaccgttgattgtcgcggggggcacggtgctggcggtcgcggtattactgtcgcaaatcttcgggctacaagatctgtttaatgaagaaaactcctggctgtggatgtaccgcaagctgggcggcgggctgctcggaattttgatggtaccggtgctcgcggcctataccgcctattctctggcagataaaccggcgttagcgccaggctttgcggctggacttgccgccaacatgatcggctccgggtttctcggcgcggtcgttggcggattgatagccggttacttgatgcgctgggtgaaaaatcacttgcgtcttagcagtaaattcaatggattcctgactttttatctctacccggtgctcggtacgttgggagcgggcagtctgatgctgtttgtggtgggggaacctgtcgcctggatcaataactcgcttaccgcctggctgaacggtctgtcaggaagtaacgcgctgttgctgggtgccattctcggttttatgtgttcctttgaccttggagggccagtgaataaagccgcttatgcattctgcctgggcgcaatggcgaacggcgtttacggcccgtatgccattttcgcctccgtcaaaatggtttcggcatttaccgtaaccgcttccacgatgctcgcaccgcgcctgtttaaagagtttgaaattgagaccgggaaatccacctggctgttagggctggcaggtattaccgaaggggcgatcccgatggcgattgaagatccgctgcgggttattggttcgtttgtgctgggctctatggtaacgggcgctattgtcggtgcgatgaatatcggcctttcgacacccggtgccggcattttctcgctctttttacttcatgataatggcgcgggcggtgttatggcggcaattggctggtttggcgcggcattggtgggggctgcaatctcgactgcaattctcctgatgtggcggcgtcacgcggttaagcatggcaactatctgactgatggcgtaatgccataaacaaaaaggaaacgacgatgaaagcagtatctcgcgttcacatcaccccgcatatgcactgggatcgagagtggtatttcaccaccgaagagtcacgtattctgctggtcaataatatggaagagatcctgtgccgactggaacaggacaacgaatacaaatattacgtactcgacgggcaaacggcgatcctcgaagattatttcgcggtgaaaccggaaaacaaagaccgtgtgaagaaacaggtagaagccggcaagttgattatcggcccctggtatacccagaccgataccacgattgtttctgcggaatccatcgtccgtaatctgatgtacggaatgcgtgactgcctcgcgtttggcgagccgatgaaaataggttatttaccagattcctttggcatgtccgggcaactgccgcatatctacaatggatttggcattacccgcaccatgttctggcgcggatgttcggagcgccacggtactgataaaaccgagtttttgtggcaaagcagtgacggtagcgaagtgacggcgcaggtgctgccgctgggctacgccatcggtaagtacttacctgccgacgaaaacggattacgtaaacgcctcgacagttattttgacgtgctggaaaaagcgtctgtaaccaaagagattttgctgccgaatgggcatgaccagatgccattgcagcaaaatatcttcgaagtgatggataagctacgtgagatctaccctcaacgtaagtttgtgatgagccgctttgaagaggtatttgagaagatcgaagcgcagcgagataatctggcaaccctgaaaggggaatttattgatggcaaatatatgcgcgtgcatcgcaccatcggttctacgcgtatggatatcaaaattgcccacgcgcgtattgaaaataagattgttaatctgctggaaccgctggcaacactggcctggacgttgggttttgaataccaccacggcttgctggagaaaatgtggaaagagatcttaaaaaatcatgcccacgacagtatcggctgctgctgtagtgacaaagttcatcgcgaaatcgtcgcccgcttcgaactggctgaagacatggcggataatctgattcgtttctacatgcgcaaaattgccgacaacatgccgcagagcgacgccgacaaactcgtcctgtttaacctgatgccctggccgcgtgaagaagttatcaacaccactgtgcggctgcgcgccagccagtttaatttgcgggacgatcgcggtcagcctgtaccgtattttattcgccatgcccgtgagatcgatccaggcctaatcgatcggcaaatagttcattacggtaattacgatccctttatggagtttgatatacagatcaaccagattgtcccttctatgggctatcgcacgctttatatcgaagcgaatcagcctggcaacgtaattgcggcaaaaagtgacgctgaagggatactggaaaatgctttctggcaaattgcgctcaatgaggatggttctctgcaactggtagataaagacagcggtgtgcgctatgaccgggtattgcaaattgaagaaagctctgatgatggtgatgaatatgactattcacccgcaaaagaagagtgggtaattaccgcagcgaacgcgaaaccgcaatgcgatattattcatgaagcctggcagagcagggctgttatccgctatgacatggcagtgccgctcaatttgtcagaacgcagcgcccggcaatccactggcagagtaggggtggtgttggttgtcactcttagtcataacagcaggcgtattgatgtggatatcaatcttgataaccaggctgacgatcatcgccttcgtgtcctggtccctacaccttttaacaccgacagtgttctggcagatacgcagtttggttcgctaacgcgccccgtgaacgacagtgcaatgaacaactggcagcaagaaggctggaaagaagcgccggttccggtatggaatatgctcaactatgttgccttacaggaagggcgtaacggcatggctgtctttagcgaagggttacgtgaatttgaagtcatcggtgaagagaagaaaacctttgccattacgttgctgcgtggcgtgggcttactgggcaaagaagatctgcttttaaggcctgggcggccttcgggaattaaaatgccagtcccggactcacaactacgtggtctgctttcttgtcgcctaagtttattgagttataccggtacgccaaccgccgctggtgtagctcagcaggcgcgagcatggctgactccagtacagtgttacaacaaaatcccatgggatgtgatgaagctcaacaaagccggattcaacgtgccggaaagttatagtttgttgaaaatgcccccagtgggatgcctgataagcgcacttaagaaagctgaagaccgacaagaagtgattttacggctgtttaatccggctgaatcagcaacctgtgatgcgactgttgctttcagtcgcgaggtgatttcttgctcagaaacgatgatggatgaacacattaccaccgaggaaaatcaaggttcaaatctatcggggccttttttacccggccagtcacggacgttcagttaccggcttgcctgaatagcaatcaaaccgaagccacatatgcgcggccagattgttgacaaagggcgctttgttcatgccggatacggcatgaacgctttattcggtctacaaaagcaggcaaattcaatatattgcagagatgatgtagacactggcaagcgtagcgcatcaggtaattttgcgtttatcttcactctcaagccacgtatatgtggctttatttttaacaaaataataaccctgggtgagttaattataatataattataagttaactaaatgttaatattggcggggtggatttatgcctttattagtaatcctgaaactctgcgtcgtattagccagtgaccaaaaaaagaattaaggtcaaccgtgctgtttttgcttcgtctctttttatctttaattgccaaccgaaactaatttcagccttataactcacacattttaaacataaatgtcactaaagttaccttattgaaacatgattaacataatttgtaggaattgatatttatcaatgtataagtcttggaaatgggcatcaaaaagagataaattgttctcgatcaaattggctgaaaggcggtaatttagctataaattgatcaccgtcgaaaaatgcaaatttgcttcaacaaaaacctgtttattgtaaggattttgcggcgtaatatatacgtgggatcaatttgagtttttattaacatgtttgcaacctttctttacgccgtttttgtgtgcattcacatggtatgatgaaagtgttcaaacaaatttctattggggcatgcgtgtgaccctttctaacggggttcactctcggagtcttcatgcgatgagcaaggagtcatgatgttagatatagtcgaactgtcgcgcttacagtttgccttgaccgcgatgtaccacttcctttttgtgccactgacgctcggtatggcgttcctgctggccattatggaaacggtctacgtcctctccggcaaacagatttataaagatatgaccaagttctggggcaagttgtttggtatcaacttcgctctgggtgtggctaccggtctgaccatggagttccagttcgggactaactggtcttactattcccactatgtaggggatatcttcggtgcgccgctggcaatcgaaggtctgatggccttcttcctcgaatccacctttgtaggtctgttcttcttcggttgggatcgtctgggtaaagttcagcatatgtgtgtcacctggctggtggcgctcggttcaaacctgtccgcactgtggattctggttgcgaacggctggatgcaaaacccaatcgcgtccgatttcaactttgaaactatgcgtatggagatggtgagcttctccgagctggtgcttaacccggttgctcaggtgaaattcgttcacactgtagcgtctggttatgtgactggcgcgatgttcatcctcggtatcagcgcatggtatatgctgaaaggtcgtgacttcgccttcgctaaacgctcctttgctatcgctgccagcttcggtatggctgctgttctgtctgttattgttctgggtgatgaatccggctacgaaatgggcgacgtgcagaaaaccaaactggctgctattgaagccgagtgggaaacgcaacctgcgcctgctgcctttactctgttcggcattcctgatcaggaagaggagacgaacaaatttgcgattcagatcccttacgcactgggcatcattgcaacgcgttccgtggataccccggttatcggcctgaaagagctgatggtgcagcatgaagaacgcattcgtaacgggatgaaggcgtactctctgctcgaacaactgcgttctggttctaccgaccaggcggttcgtgaccagttcaatagcatgaagaaagacctcggttacggtctgctgctgaaacgctatacgccaaacgtggctgatgcgactgaagcgcagattcaacaggcaaccaaagactccatcccgcgtgtagcgccgctgtactttgcgttccgtatcatggtggcgtgtggcttcctgcttctggcaatcatcgcgctctctttctggagtgtcatccgcaaccgcattggcgagaaaaaatggcttctgcgcgccgcgctgtacggtattccgctgccgtggattgctgtagaagcgggctggttcgtggctgaatatggccgccaaccgtgggctatcggtgaagtgctgccgacagctgtggcgaactcgtcactgaccgcaggcgatctcatcttctcaatggtgctgatttgcggcctgtataccctgttcctggtggcagaattgttcttaatgttcaagtttgcacgcctcggcccaagcagcctgaaaaccggtcgctatcactttgagcagtcttccacgactactcagccggcacgctaagacaggagtcgtcaaatgatcgattatgaagtattgcgttttatctggtggctgctggttggcgttctgctgattggttttgcagtcactgacggtttcgacatgggggtgggcatgctcacccgtttcctcggtcgtaacgacaccgagcgtcgaattatgattaactccattgcaccacactgggacggtaaccaggtttggctgatcaccgcgggcggcgcactctttgctgcctggccgatggtctatgccgctgcgttctccggcttctatgtggcgatgatcctcgtgctggcgtctttgttcttccgtccggtcggttttgactaccgctccaagattgaagaaacccgctggcgtaacatgtgggactggggcatcttcattggtagcttcgttccgccgctggtaattggtgtagcgttcggtaacctgttgcagggcgtaccgttcaacgttgatgaatatctgcgtctgtactacaccggtaacttcttccagttgcttaacccgttcggcctgctggcaggcgtggtgagcgtagggatgatcattactcagggcgcaacctatctgcaaatgcgtaccgtgggcgaactgcacctgcgtacccgtgcaacggctcaggtggctgcgctggtgacactggtctgtttcgcactggctggcgtatgggtgatgtacggtatcgatggttatgtcgtgaaatcgacaatggaccattacgcagcctctaacccactgaataaagaagtggttcgtgaagctggcgcatggctggttaacttcaacaacacgccaattctgtgggctattccggcactgggtgtggttctgccgctgctgaccatcctgactgcacgtatggataaagccgcgtgggcgtttgtgttctcctccctgacgctggcctgcatcatcctgacagccggtatcgcaatgttcccgtttgtgatgccgtccagcaccatgatgaacgcaagtctgacaatgtgggatgcaacttccagccagctgacgcttaacgtcatgacctgggttgcggtggttctggtaccgatcattctgctctacaccgcctggtgttactggaaaatgttcggtcgtatcaccaaagaagatattgaacgtaacacccactctctgtactaagtaaggagctaaaaatgtggtatttcgcatggattctgggaacgcttcttgcctgttcgtttggggtaatcaccgcgctggcgcttgaacacgtcgaatcaggcaaagccggtcaagaagacatctgatgagtaagattatcgcgactttgtatgcggtaatggacaagcgccccctgcgggcgctttccttcgtgatggcgcttctgttagcaggatgtatgttttgggacccatctcgttttgccgcgaagaccagtgaactggaaatctggcatggtttattgctgatgtgggccgtctgtgctggtgtgattcacggcgtgggctttcgtccgcagaaggttctttggcaagggattttttgcccattgcttgccgatattgttctcattgtcgggctgattttcttcttcttttaaatcagaattctctttaaaaaattatgggccgctccaggcccataaatttttacgctcccttaacttgccctcattcccaaacctcaatcgcgcgcgtatagtagcagcgtttaaaagctctaacttttgttgcattaccgggatgtaaagtgaatacaacgctgtttcgatggccggttcgcgtctactatgaagataccgatgccggtggtgtggtgtaccacgccagttacgtcgctttttatgaaagagcacgcacagagatgctgcgtcatcatcacttcagtcagcaggcgctgatggctgaacgcgttgcctttgtggtacgtaaaatgacggtggaatattacgcacctgcgcggctcgacgatatgctcgaaatacagactgaaataacatcaatgcgtggcacctctttggttttcacgcaacgtattgtcaacgccgagaatactttgctgaatgaagcagaggttctggttgtttgcgttgacccactcaaaatgaagcctcgtgcgcttcccaagtctattgtcgcggagtttaagcagtgactgacatgaatatccttgatttgttcctgaaggctagccttctggttaaacttatcatgttgattttgattggtttttcaatcgcatcttgggccattattatccagcggacccgtattcttaacgcagcggcgcgcgaagccgaagcgtttgaagataaattctggtctggaatcgaactctctcgcctctatcaagagagccaggggaaacgggataatctgactggttcggaacaaatcttttacagcgggttcaaagagtttgtgcgcctgcatcgtgccaatagccatgcgccggaagccgtagtggaaggggcgtcgcgtgctatgcgtatctccatgaaccgtgaacttgaaaatctggaaacgcacattccgttcctcggtacggttggctccatcagcccgtatattggtctgtttggtacggtctgggggatcatgcacgcctttatcgccctcggggcggtaaaacaagcaacactgcaaatggttgcgcccggtatcgcagaagcgttgattgcgactgcaattggtctgtttgccgctatcccggcagttatggcctacaaccgcctcaaccagcgcgtaaacaaactggaactgaattacgacaactttatggaagagtttaccgcgattctgcaccgccaggcgtttaccgttagcgagagcaacaaggggtaagccatggccagagcgcgtggacgaggtcgtcgcgatctcaagtccgaaatcaacattgtaccgttgctggacgtactgctggtgctgttgctgatctttatggcgacagcgcccatcatcacccagagcgtggaggtcgatctgccagacgctactgaatcacaggcggtgagcagtaacgataatccgccagtgattgttgaagtgtctggtattggtcagtacaccgtggtggttgagaaagatcgcctggagcgtttaccaccagagcaggtggtggcggaagtgtccagccgtttcaaggccaacccgaaaacggtctttctgatcggtggcgcaaaagatgtgccttacgatgaaataattaaagcactgaacttgttacatagtgcgggtgtgaaatcggttggtttaatgacgcagcctatctaaacatctgcgtttcccttgcttgaaagagagcgggtaacaggcgaacagtttttggaaaccgagagtgtcaaaggcaaccgaacaaaacgacaagctcaagcgggcgataattatttcagcagtgctgcatgtcatcttatttgcggcgctgatctggagttcgttcgatgagaatatagaagcttcagccggaggcggcggtggttcgtccatcgacgctgtcatggttgattcaggtgcggtagttgagcagtacaaacgcatgcaaagccaggaatcaagcgcgaagcgttctgatgaacagcgcaagatgaaggaacagcaggctgctgaagaactgcgtgagaaacaagcggctgaacaggaacgcctgaagcaacttgagaaagagcggttagcggctcaggagcagaaaaagcaggctgaagaagccgcaaaacaggccgagttaaagcagaagcaagctgaagaggcggcagcgaaagcggcggcagatgctaaagcgaaggccgaagcagatgctaaagctgcggaagaagcagcgaagaaagcggctgcagacgcaaagaaaaaagcagaagcagaagccgccaaagccgcagccgaagcgcagaaaaaagccgaggcagccgctgcggcactgaagaagaaagcggaagcggcagaagcagctgcagctgaagcaagaaagaaagcggcaactgaagctgctgaaaaagccaaagcagaagctgagaagaaagcggctgctgaaaaggctgcagctgataagaaagcggcagcagagaaagctgcagccgacaaaaaagcagcagaaaaagcggctgctgaaaaggcagcagctgataagaaagcagcggcagaaaaagccgccgcagacaaaaaagcggcagcggcaaaagctgcagctgaaaaagccgctgcagcaaaagcggccgcagaggcagatgatattttcggtgagctaagctctggtaagaatgcaccgaaaacggggggaggggcgaaagggaacaatgcttcgcctgccgggagtggtaatactaaaaacaatggcgcatcaggggccgatatcaataactatgccgggcagattaaatctgctatcgaaagtaagttctatgacgcatcgtcctatgcaggcaaaacctgtacgctgcgcataaaactggcacccgatggtatgttactggatatcaaacctgaaggtggcgatcccgcactttgtcaggctgcgttggcagcagctaaacttgcgaagatcccgaaaccaccaagccaggcagtatatgaagtgttcaaaaacgcgccattggacttcaaaccgtaatcgcgatgttgactgttcggacggtcaacatcaggcaccggttgccacggggttctggtagttttgtgtattttagtttgttaacattctgctaaattatcgtgggccatcggtccagataagggagatatgatgaagcaggcattacgagtagcatttggttttctcatactgtgggcatcagttctgcatgctgaagtccgcattgtgatcgacagcggtgtagattccggtcgtcctattggtgttgttcctttccagtgggcggggcctggtgcggcacctgaagatattggcggcatcgttgctgctgacttgcgtaacagcggtaaatttaatccgttagatcgcgctcgtctgccacagcagccgggtagtgcgcaggaagtacaaccagctgcatggtccgcactgggcattgacgctgtagttgtcggtcaggtcactccgaatccggatggttcttacaatgttgcttatcaacttgttgacactggcggcgcaccgggtactgtacttgctcagaactcgtacaaagtgaacaagcagtggctgcgttatgctggtcataccgccagtgatgaagtgtttgaaaaactgaccggcattaaaggtgcgttccgtactcgtattgcctacgttgttcagaccaacggcggtcagttcccgtatgaactgcgcgtatctgactatgacggttacaaccagtttgtcgttcaccgttcaccgcagccgctgatgtctccggcgtggtcaccagacggttctaaactggcttatgtgaccttcgaaagcggtcgttccgcgctggttattcagacgctggcaaatggcgctgtacgtcaggtggcttcattcccgcgtcacaacggtgcacctgcattctcgccagacggcagcaaactggcattcgccttgtcgaaaaccggtagtctgaacctgtacgtaatggatttggcttctggtcagatccgccaggtgactgatggtcgcagtaacaataccgaaccgacctggttcccggatagccagaacctggcatttacttctgaccaggccggtcgtccgcaggtttataaagtgaatatcaacggcggtgcgccacaacgtattacctgggaaggttcgcagaaccaggatgcggatgtcagcagcgacggtaaatttatggtaatggtcagctccaatggtgggcagcagcacattgccaaacaagatctggcaacgggaggcgtacaagttctgtcgtccacgttcctggatgaaacgccaagtctggcacctaacggcactatggtaatctacagctcttctcaggggatgggatccgtgctgaatttggtttctacagatgggcgtttcaaagcgcgtcttccggcaactgatggacaggtcaaattccctgcctggtcgccgtatctgtgataataattaattgaatagtaaaggaatcattgaaatgcaactgaacaaagtgctgaaagggctgatgattgctctgcctgttatggcaattgcggcatgttcttccaacaagaacgccagcaatgacggcagcgaaggcatgctgggtgccggcactggtatggatgcgaacggcggcaacggcaacatgtcttccgaagagcaggctcgtctgcaaatgcaacagctgcagcagaacaacatcgtttacttcgatctggacaagtacgatatccgttctgacttcgctcaaatgctggatgcacatgcaaacttcctgcgtagcaacccgtcttacaaagtcaccgtagaaggtcacgcggacgaacgtggtactccggaatacaacatctccctgggtgaacgtcgtgcgaacgccgttaagatgtacctgcagggtaaaggcgtttctgcagaccagatctccatcgtttcttacggtaaagaaaaacctgcagtactgggtcatgacgaagcggcatactccaaaaaccgtcgtgcggtactggtttactaagagaattgcatgagcagtaacttcagacatcaactattgagtctgtcgttactggttggtatagcggccccctgggccgcttttgctcaggcaccaatcagtagtgtcggctcaggctcggtcgaagaccgcgtcactcaacttgagcgtatttctaatgctcacagccagcttttaacccaactccagcaacaactttctgataatcaatccgatattgattccctgcgtggtcagattcaggaaaatcagtatcaactgaatcaggtcgtggagcggcaaaagcagatcctgttgcagatcgacagcctcagcagcggtggtgcagcggcgcaatcaaccagcggcgatcaaagcggtgcggcggcatcaacgacgccgacagctgatgctggtactgcgaatgctggcgcgccggtgaaaagcggtaatgcaaacacggattacaatgcagctattgcgctggtgcaggataaatcccgccaggatgacgcaatggtggcatttcagaatttcatcaaaaattaccctgattcaacttacctgccaaacgccaattattggctgggtcagttaaactacaacaagggtaaaaaagatgatgcggcgtactattttgcttcggtagtgaaaaactatccgaagtcaccaaaggctgcagatgcgatgtttaaagtcggcgtcatcatgcaggacaaaggtgacaccgcaaaagcgaaagccgtataccagcaggttatcagtaaataccctggtactgatggcgctaaacaggcacaaaaacgtctgaacgcgatgtaatgcataacacacgaccagaagtcgcattatttctggtcgtgtcgtgcgaatcataagcagttgagtgatctacatcgaaatttttgttgcgctcaagtctgaaatcagtaatatatgccgccgttgccacgggatatcaaacaaaccgaaagcaacgaaaaagtgggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccaatcgctaaggtggaagcggtagtaaaacgtgaaggataacgttgcatgagcaacggcccgaagggcgagacgaagtcgagtcatcctgcacgacccaccactaacatagttagttgtagtatccagcgtagtatcgggtgattagctcagctgggagagcacctcccttacaaggagggggtcggcggttcgatcccgtcatcacccaccaccgggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccagttttaacatcgaagacagatgttaagcgtgtaggataacgttgcgtcagcaacggcccgtagggcgagcgaagcgagtcatcctgcacgacccaccactaatgacggtgggttcggtggaagtagtttgtagtatccagcgcagtatcgggtgattagctcagctgggagagcacctcccttacaaggagggggtcggcggttcgatcccgtcatcacccaccactcgggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccagttttaacatcaaactcagatgttaagcgtgaaggataacgttgcgccagcaacggcccgtagggcgagcgaagcgagtcatcctgcacgacccaccaatcttaaagattggccccgagtaaaaatctttcaggtaacacccgtatgggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccaatttaaaggtggttactggtagagaacgtgaaggataacgttgcgttagcaacggcccgaagggcgagacgaagtcgagtcatcctgcacgacccaccatcctgaatgattaaggcagcataatcccgcaaggggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccaatgtaaaaaagcgccctaaaggcgcttttttgctatctgcgatactcaaagattcgaacctgcagcaggtttgagttgagcgcagcgaaacaacggagccgctcgcggcgacggcccgaagggcgagcgaagcgagtcatcctgcacgacccaccaatgtaaaaaagcgccctaaaggcgcttttttgctattcaggcatcctcaatttcactttgtaaacctgatgacatcgtcagagcttactgtgcaagcaactctatgtcggtggaattaggcgtaaaatgacgcatcctgcacattaggcgtaattcgagtgacttttccccaccattcgactatcttgtttagcatataaaacaaattacaccgataacagcgaatattacgctaatgtcggttttaacgttaagcctgtaaaacgagatggtaagatgagcgtaatgtttgatccagacacggcgatttatcctttccccccgaagccgacgccgttaagcattgatgaaaaagcgtattaccgcgagaagataaaacgtctgctaaaagaacgtaatgcggtgatggttgcccactactataccgatcccgaaattcaacaactggcagaagaaaccggtggctgtatttctgattctctggaaatggcgcgcttcggtgcaaagcatcccgcttctactttgttagtcgctggggtgagatttatgggagaaaccgccaaaattctcagtccggaaaaaacaattctgatgccgacacttcaggctgaatgttcactggatctcggctgccctgttgaagaatttaacgcattttgcgatgcccatcccgatcgtactgtcgtcgtctacgccaacacttctgctgcggtaaaagcgcgcgcagattgggtggtaacttcaagcattgccgtcgaacttattgatcatcttgatagtttgggtgaaaaaatcatctgggcacccgacaaacatctggggcgttacgtgcaaaaacagacgggtggagacattctatgctggcagggtgcctgtattgtgcatgatgaatttaagactcaggcgttaacccgcttgcaagaagaatacccggatgctgccatactggtgcatccagaatcaccacaagctattgtcgatatggcggatgcggtcggttccaccagtcaactgatcgctgctgcgaaaacattgccacatcagaggcttattgtggcaaccgatcggggtattttctacaaaatgcagcaggcggtgccagataaagagttactggaagcaccaaccgcaggtgagggtgcaacctgccgcagctgcgcgcattgtccgtggatggccatgaatggccttcaggccatcgcagaggcattagaacaggaaggaagcaatcacgaggttcatgttgatgaaaggctgcgagagagggcgctggtgccgctcaatcgtatgctggattttgcggctacactacgtggataacgaataataaggcgtaacgttacgctttgggggaaagatggatttttttagtgtgcagaatatcctggtacatataccaataggggcaggcggttatgatctctcatggatcgaagcggtaggcacgatcgccgggttgctgtgtattggccttgccagtctggagaagatcagcaactacttctttggcctgatcaacgtcaccttgtttggcattattttctttcagattcagctgtatgccagcctgctattacaggtgtttttctttgccgcgaatatttacggttggtatgcgtggtcgcgacaaaccagtcagaacgaggcggagttgaaaattcgctggttgccattgccgaaggcactcagctggttggcggtttgcgttgtttcgattggtctgatgacggtatttatcaatccggtgtttgcatttttgacccgcgtggcagtcatgatcatgcaagcattaggattacaggttgtgatgcctgaactgcaaccggacgctttcccgttctgggattcatgcatgatggtgttatctatcgtggcaatgattctgatgacgcgtaagtatgtggaaaactggctgttgtgggtgattattaacgtgattagcgtcgttatttttgcacttcagggcgtttacgccatgtctctggagtacatcatcctgacctttattgcgctcaacggcagccggatgtggatcaacagcgcacgtgaaagaggctcacgcgcgctgtcccattaatggtgatgatgtgaatggccagacaccccttcattcaggtggcagtctggcccatgacaaggttgatattccatctgaatggtggcgtgctcaatctgatagtgatccatcaggtagtgttggatctgatccaacaaggcatcgtgatcgtgtggcgggatcacctgcacatgcaacgtcatcaccggcttctcgcctaccatccatacatgtacatggtgcacattgcggacttccgggatttcccggcacatacgacgcttcagttcagcgatatccagcgataccggtgcaccttcaagtaattcattcacgctatctttcaacagtcgccacgcgctacgcagaaccagaagcgacaccagtatcgagagaatggggtcagcaggtgtccagccagtccagataataatcaacgcggcaataatagccccaaccgaacccagcaggtccccgagcacatgcagtgccgctgctcgtacgttgaggtttttctcttcgctgccgtgatgaagtaaccagaaagaaagtatatttgccagcaacccagccacggcaattgccatcatcatgccgccctcgaccggacgcggcgtgcggaagcgttctatcgcctcccagacaatcaaaatggtaattaccacgagggctatggcattcacaaacgccgcgagcgtggtcagtcttagccaaccgaaagtgtggcgaatggtgggaggacgacgtgaaaattgcacggcgagtagggcgaaaagcagggcggcagtatcggtcaacatatgacccgcatcggccagcaatgccagagaaccagaaagaaaaccaccaacgacttctaccagcataaacccggcagtcacgccgaaagcatacaacaagcgacgagcattattatcttctggcaggtgtgaggacgtgtgtgagtgtgagtgcgccatgacgagtcatcccttaattattctcacttaactttatgacatcatactgcttttagaagtgaaaaattaaaagggagagactccgctctcccattattggctattttgcagggttactgcgtggtaccgtcggttttggtatcgacatcattattgatgccatcaccggtttgtacctttttattgatatccggacagcgaccatctttgcacatggtgttcttgtgctcttcatctttggtcattccgtcattgttcattgaagaaccatccgaatgcagcattgtgccgccagaaccggtatttaccccgttattgtcgacgttatttggcgcgacattttcacgggcgtcaggggctacctggcccgcatcagctgcggcgtttgcctggccgttattagtttgcgctccgctatcggcagccagtgcggcaccgctggcaaggcttagagtggcagtcagaaataatgtggccagttttgtcattttcataggatgctcctgttatggtcgttatgtcggataacctcttccaacagtgcatttgcaggtgaatataaggcattggtttaagatttcagccaggttatgaaacgcagcagagaatcttgaaataattaacaaacaaaggagttacagttagaaattgtaggagagatctcgtttttcgcgacaatctggcgtttttcttgctaattccaggattaatccgttcatagtgtaaaaccccgtttacacattctgacggaagatatagattggaagtattgcattcactaagataagtatggcaacactggaacagacatgaattatcagaacgacgatttacgcatcaaagaaatcaaagagttacttcctcctgtcgcattgctggaaaaattccccgctactgaaaatgccgcgaatacggttgcccatgcccgaaaagcgatccataagatcctgaaaggtaatgatgatcgcctgttggttgtgattggcccatgctcaattcatgatcctgtcgcggcaaaagagtatgccactcgcttgctggcgctgcgtgaagagctgaaagatgagctggaaatcgtaatgcgcgtctattttgaaaagccgcgtaccacggtgggctggaaagggctgattaacgatccgcatatggataatagcttccagatcaacgacggtctgcgtatagcccgtaaattgctgcttgatattaacgacagcggtctgccagcggcaggtgagtttctcgatatgatcaccccacaatatctcgctgacctgatgagctggggcgcaattggcgcacgtaccaccgaatcgcaggtgcaccgcgaactggcatcagggctttcttgtccggtcggcttcaaaaatggcaccgacggtacgattaaagtggctatcgatgccattaatgccgccggtgcgccgcactgcttcctgtccgtaacgaaatgggggcattcggcgattgtgaataccagcggtaacggcgattgccatatcattctgcgcggcggtaaagagcctaactacagcgcgaagcacgttgctgaagtgaaagaagggctgaacaaagcaggcctgccagcacaggtgatgatcgatttcagccatgctaactcgtccaaacaattcaaaaagcagatggatgtttgtgctgacgtttgccagcagattgccggtggcgaaaaggccattattggcgtgatggtggaaagccatctggtggaaggcaatcagagcctcgagagcggggagccgctggcctacggtaagagcatcaccgatgcctgcatcggctgggaagataccgatgctctgttacgtcaactggcgaatgcagtaaaagcgcgtcgcgggtaaggtttaattgtcggatgcgccgtcagagtggcgtatccgatgaatcaccacaggcctgataagtcgcgcagcgtcgcatcaggcaatgtgctccattgttagcaacaaaaaagccgactcacttgcagtcggctttctcattttaaacgaatgacgtttacttcgctttaccctggtttgcaaccgccgctgctttcgctgcgatctcgtcagcattacccagataatagcgtttcagcggtttgaaattctcgtcgaactcatacaccagcggcacgccagtcgggatattaagctcaagaatctcttcttcgctcatgttatcaagatatttcaccagcgcacgtaaagagttaccgtgtgcagcgatgatcacgcgctcaccgctcttcatacgcggcagaatagtttcattccagtaagggatcacgcggtcaatggtcagcgccaggctttccgtcagcggcagttctttctcgctcagtttcgcgtaacgcggatcgtgacccggataacgctcatcatctttagtcagttccggcggagtcactgcaaaaccacgacgccactgtttcacctgctcgtcgccatacttttcagcagtttccgctttgttcagaccctgcaacgcaccgtagtgacgttcgttcagtttccaggatttctcaacgggcagccatgcctgatccagttcgtccagcacattccacagggtatggatagcgcgtttcagcacagaagtgtaagcaaagtcaaagctgtaaccttcctctttcagcagcttacctgctgcttttgcttcgcttacgcctttctcagacagatccacgtcgtaccaaccggtgaaacggttttctttgttccactgactttcgccatgacgaaccagaaccagcttagttacagccatatacttactcctcaaatcatcttttaatgataataattctcattatattgccgcgacgaagcaacagcaatgcttacgcataaccatagcgaaaatagtggcgcagtgtaaggttgttgtgaatattgagttgcaaatatgtcggtgtttgctggtgatttgaacaatatgagataaagccctcatgacgagggcgtaacattactcagcaataaactgatattccgtcaggctggaatactcttcgccaggacgcaggaagcagtccggttgcggccattcagggtggttcgggctgtccggtagaaactcgctttccagagccagcccttgccagtcggcgtaaggttcggttccccgcgacggtgtgccgccgaggaagttgccggagtagaattgcagagccggagcggtggtgtagaccttcagctgcaatttttcatctgctgaccagacatgcgccgccactttcttgccatcgcctttggcctgtaacaagaatgcgtgatcgtaacctttcactttgcgctgatcgtcgtcggcaagaaactcactggcgatgattttggcgctgcggaaatcaaaagacgttccggcgacagatttcaggccgtcgtgcggaatgccgccttcatcaaccggcagatattcgtccgccagaatctgcaacttgtgattgcgcacgtcagactgctcgccgtcaagattgaaatagacgtgattagtcatattcaccgggcaaggtttatcaactgtggcgcgataagtaatggagatacggttatcgtcggtcagacgatattgcaccgtcgcgccgagattacccgggaagccctgatcaccatcatctgaactcagggcaaacagcacctgacgatcgttctggttcacaatctgccagcgacgtttgtcgaacccttccggcccgccgtgcagctggttaacgccctgacttggcgaaagcgtcacggtttcaccgtcaaaggtataacggctattggcgatacggttggcataacgaccaatagaggcccccagaaacgcggcctgatcctgatagcattccgggctggcacagccgagcagcgcctcgcggacgctgccatcggaaagcggaatacgggcggaaagtaaagtcgcaccccagtccatcagcgtgactaccatccctgcgttgttacgcaaagttaacagtcggtacggctgaccatcgggtgccagtgcgggagtttcgttcagcactgtcctgctccttgtgatggtttacaaacgtaaaaagtctctttaatacctgtttttgcttcatattgttcagcgacagcttgctgtacggcaggcaccagctcttccgggatcagcgcgacgatacagccgccaaatccgccgccggtcatgcgtacgccacctttgtcgccaatcacagctttgacgatttctaccagagtgtcaatttgcggcacggtgatttcgaaatcatcgcgcatagaggcatgagactccgccatcaactcgcccatacgtttcaggtcgccttgctccagcgcgctggcagcttcaacggtgcgggcgttttcagtcagtatatgacgcacgcgttttgccacgatcgggtccagttcatgcgcaacagcgttgaactcttcaatggtgacatcacgcagggctggctgctggaagaaacgcgcaccggtttcgcactgttcacgacgggtgttgtattcgctgccaaccagggtacgtttgaagttactgttgatgatgacgacagccacacctttgggcatggaaactgctttggtccccagtgagcggcaatcgatcagcaaggcatgatctttcttgccgagcgcggaaattagctgatccatgatcccgcagttacagcctacaaactggttttctgcttcctgaccgttaagcgcgatttgtgcgccgtccagcggcagatgataaagctgctgcaatacggttccgaccgcgacttccagtgaagcggaagaacttaacccggcaccctgcggcacattgccgctgatcaccatgtccacgccgccgaagctgttgttacgcagttgcagatgtttcaccacgccacgaacgtagttagcccattgatagttttcatgtgcgacaatgggcgcatcgagggaaaactcgtcgagctgattttcataatcggctgccatcacgcgaactttacggtcatcgcgtggtgcacaactgatcacggtttgataatcaatcgcgcagggcagaacgaaaccgtcgttgtagtcggtgtgttcaccaatcaaattcacgcggccaggcgcctgaatggtgtgagtggcagggtagccaaatgcgttggcaaacagagattgtgttttttctttcagactcatttcttacactccggattcgcgaaaatggatatcgctgactgcgcgcaaacgctctgctgcctgttctgcggtcaggtctcgctgggtctctgccagcatttcataaccaaccataaatttacgtacggtggcggagcgcagcagaggcggataaaagtgcgcgtgcagctgccagtgttgattctcttcgccattaaatggcgcgccgtgccagcccatagagtaggggaaggagcactggaagaggttgtcataacgactggtcagctttttcaacgccagcgccagatcgctgcgctgggcgtcggtcaaatcggtgatccgtaaaacgtgggctttgggcagcagtagcgtttcgaacggccaggcagcccagtaaggcacgacggctaaccagtgttcggtttcgacaacggtacggctaccgtctgccagctcgcgctgaacataatccaccagcattggtgatttctgttcggcaaaatattctttttgcaggcggtcttcgcgctcagcttcgttaggcaggaagctatttgcccaaatctgaccgtgcggatgcgggttagagcagcccatcgccgcgcctttgttttcaaaaacctgcacccatgggtacgttttccccagttctgcggtttgctcctgccaggttttgacgatttccgtcaatgctgcaacgctgagctctggcagcgttttactgtgatccggtgaaaagcagatcacccggctggtgccgcgcgcgctctggcaacgcatcagcggatcgtgactttctggcgcatctggcgtgtcagacatcaaagccgcaaagtcattagtgaaaacgtaagtcccggtgtaatcggggtttttatcgcctgtcacccgcacattacctgcgcagaggaagcaatctggatcgtgcgcaggtaacacctgtttggctggcgtttcctgcgccccctgccaggggcgcttagcgcggtgcggtgaaaccagaatccattgcccggtgagcgggttgtagcggcgatgtggatgatcaacgggattaaattgcgtcatggtcgttccttaatcgggatatccctgtggatggcgtgactgccagtgccaggtgtcctgcgccatttcatcgagtgtgcgcgttacgcgccagttcagttcacggtcggctttgctggcgtccgcccagtaggccggaaggtcgccctcgcgacgcggtgcaaaatgataattaaccggtttgccgcaggctttgctgaaggcattaaccacgtccagcacgctgttgcctacgccagcgccgaggttgtagatgtgtacgcctggcttgttcgccagtttttccatcgccacgacgtgaccgtccgccagatccattacgtggatgtaatcgcgtacgccagtaccatcttcggtcggataatcgttaccaaaaatcgccagcgagtcgcgacggcctacagcaacctgggcgatgtatggcatcaggttattcggaatgccttgcggatcttcgcccatatcgcccgacggatgcgcgccaaccgggttgaagtagcgcagcagggcaatgctccagtccggctgggctttttgcagatcggtgaggatctgttccaccatcagcttgcttttgccgtaagggctttgcggtgtgccggtcgggaagctttcaacgtatggaattttgggctgatcgccataaacggtggcggaggagctaaaaataaagtttttgacgttagcggcgcgcatggcgctaatcaggcgcagagtgccgttgacattgttgtcgtaatattccagcggtttttgtaccgattcgcccacggctttcagcccggcgaagtggatcacggtgtcgatagcgtgatcgtgcaggatctcggtcatcaacgcttcgttacgaatatcgccttcaacaaacgttggatgtttgccgcctaaacgctcgataacaggcagtacgctgcgcttactgttacagaggttatcaagaatgatgacatcatgaccgttttgcagtaattgcacacaggtatgacttccaatgtaaccgctaccaccggtaaccagaactctcataattcgctccattaggcttatggtatgaaataaccatagcataacaaagatgcgaaaagtgtgacatggaataaattagtggaatcgtttacacaagaatttagccgttttttatgcgcgattaagtgattataaaacagagggtttatgaatgattgcgctttttatctgaaaaaagacgcggtttcatgcctgcatgcgtcgaaccgttggccggagagggtgctaaggccgcctccggcaaggtcagcactaccgactcaatatatttttgtcagcacatagcgatagagtccaccgtccggcacgaactcaagacgatgggtaatacaggcaggcgcatcttcagcgtggtgcgaaacaaacaacaattgcgtttcaccttcgctaatcagcacatcaacaaaacggcggataagctggcgattcagcggatcaagcccctgtagtggttcatcgagaataagcaacgtcggatgtttcaccagtgcgcggacaatcagcgccagacgctgctgtccccaggaaagactatggaacggagcgtcagccgtgcgtttatcaatgccgagaatatccagccactgctgcaccagtttttgctggcgatccgaaacggcctgataaatgccaatcgaatcaaaatagccagaaagaatcacattacgcacggtagtgctgacccggtaatccagatgcaaactactgctgacgtaaccgatatgctttttgatatcccagatggtttcgccgctgccgcgacgtcgtccgaaaagcgtcaaatcgttgctgtaaccttgcggatgatcgccagtaaccaggcttaataacgtcgattttcctgcaccatttggcccgacaatttgccagtgttcgcctggattcacctgccagctaaggttattaagaatggggcgatcgttataagaaaccacgccattgttcagcacaatgcgcggttcgttggcgggtaaggcgtgacgtgctgaaggttcatccggctccggcagttgcacaccttcaagctgttcactatgcgccagttgcgcgacgagtgcttgttggagcagttcctctttagcgccagtttccgctaacgtgcaatccgccagcacgccagcaaactggacaaactccgggatctcatcgaagcgattgagcaccagtaccagagtaataccggactgatgtaacgaggcgagtcgctcagccagctgctgacgtgaggcaacatccaggccatcgaacggctcatcaagaatcaacaagtcaggctccgacatcagcgcctgacacagcagggtttttcgcgtctcgccagtggaaaggtatttaaagcgtcggtcgaggagggcggtaataccgaactgctgcgccagttgcatgcaacgcggtgcatcctttacttcatcctgaatgatctcagccgtagtgcgtccggtgtcatcttcgccagggccgagcatatcggtgttattccgctgccattcgtcgctgacgagtttttgcaattgctcgaaggagagacgagtgatgtgggaaaactggctttgccgttcacctttcaaaagcggaagttcccccgccagcgcgcgggccagggccgatttcccgcttccattcgaaccgacaaacgcccaactatcacccgcgtttaacgttagctgaggcaattgcagcgtttttgtgtcgctaagacgaaacgtgccttgcaaaatttgcaacgatgacattttatatcccactttgtgcagcgattactgacagggatacgtgtttcataacaaattgtcaacacgcttagcacagcgtggcgataatcacgctgtcggcattaaagtaggccgtgacattctgtccttgctgaagagaagtcgcttcatttaccggcactgtggcgcacagtgtttgcccgtcgggtagcgccattaatacttcgcactgctctgcgccgcgctcaatatgactaataatacccggtaattggttgtcagcgttttgcgcgaccgcctcgtcctgagtaatacctacccacggcgcttttagcaatatcaacacttctttgccttcatccagccccagacgcgcgccgctttgtgcggtaattgcgactttcaggcgtgtttttccgtcagccagtaagacatcaacatgctgttgaacgtcatcatgatcgcgggcggtgatggtaccgaaccactggttacgggcgctggtttgcagtgaaaaacgtgagatcgcggccagcaggctgttcagcggcagggcgtcatcgtcacttaacacatcaaaggctttttgctggatttgcgccagtaagtcatagagctgaatcagtcgctgaccatagcgggtcagtactgcgccgccgccacctttaccgcctgttgcgcgctcgaccagaatatgctcacttaactgattcatctcgttaatggcatcccaggcgcttttatagctaataccggcatctttcgctccctggctaatggaaccggaaagcgcaatgtgttttagtagcgaaatgcggcgcgggtcggcgaataatttttgttggagcttaagggtgagaaggatttcggcctgcataacaatgtcctggcaaaagtcttattgtgacggaaaacgaacgccacgcaaagctgaccgcacaaaaggggagtgcttttctgtgcttagcggttagaatagtctcatgactatatctggagttgaccatgttagagttattaaaaagtctggtattcgccgtaatcatggtacctgtcgtgatggccatcatcctgggtctgatttacggtcttggtgaagtattcaacatcttttctggtgttggtaaaaaagaccagcccggacaaaatcattgattccctgaatgcccgcttagtcgggcattttctttttctcaacttcctgcttttcctgccgatattttttcttatctacctcacaaaggttagcaataactgctgggaaaattccgagttagtcgttatattgtcgcctacataacgttacattaaggggttaccaatggctcgtaaatggttgaacttgtttgccggggcggcactctctttcgctgttgctggcaatgcactggcagatgaagggaaaatcacggtgttcgccgccgcatcactgactaacgcaatgcaggacattgctacgcagtttaaaaaagagaaaggcgtggatgtggtttcttctttcgcttcgtcatctactctcgcccgtcagattgaagcgggtgcgcctgcggatctgtttatttctgccgatcagaaatggatggattatgcggttgataaaaaagcgatcgatacagctacgcgtcagacactgctcggcaatagcctggtcgttgtagcaccgaaagccagcgtgcagaaagatttcaccatcgacagcaaaaccaactggacttcactgctgaatggcggtcgcctggcggttggcgatccggaacatgttcccgctggcatttatgcaaaagaagcactgcaaaaactgggcgcatgggatacgctctctccgaaactggccccagcggaagatgttcgtggggcgctggcgctggtcgaacgtaacgaagcgcctctgggcattgtctacggttctgacgcagttgccagcaaaggggtaaaagtggttgccaccttcccggaagattcacataaaaaagtggaatatccggttgctgttgtggaagggcataacaatgcgacagtgaaagcattttatgattatctgaagggaccgcaggcagcggaaatctttaaacgttacggatttacaatcaagtaatgatactgaccgatccagaatggcaggcagttttattaagcctgaaagtttcttccctggctgtgctgtttagcctgccgtttgggatcttttttgcctggttactggtgcgttgcacgtttccgggcaaagctctgctcgacagcgtactgcatctaccgctggtgttaccgcccgtggtcgtcggttacttattattagtttcgatgggacggcgcggatttatcggtgaacgtctgtatgactggtttggtattaccttcgcctttagctggcgcggcgcggttctcgctgccgccgtcatgtcgtttccgctgatggtgcgggcaattcgtctggcgctggaaggggttgatgtcaaactggaacaggccgcaagaacactgggggccgggcgctggcgcgttttctttactatcacgttaccgctgaccttaccgggaattattgttggtacggtactggcttttgctcgttctctcggtgagtttggtgcaaccatcacctttgtgtcgaacattcctggtgaaacgcgaaccattccttctgccatgtataccctgatccagacccccggcggggaaagtggagcggcgagactgtgcattatttctattgcgctggcgatgatctccctgttgatttcagaatggctggccagaatcagccgtgaacgggcggggcgctaatcatgctggaactgaatttttcccagacgttgggcaaccattgcctgactattaatgaaacgctgcccgccaatggcatcactgctatctttggcgtctccggtgccggaaaaacttcgctgattaacgccatcagtggactgacgcgcccgcaaaaagggcggattgtcctcaatgggcgggtactaaatgatgccgaaaaaggtatctgcctgacgccggaaaagcgtcgcgttggctatgtttttcaggatgcgcggctgttcccgcattacaaagtgcgtggcaatctgcgctacggcatgtcgaaaagtatggtcgatcagttcgataagctggtggcgcttttaggcattgaaccgttgcttgaccgtttaccaggcagcctgtccggaggcgaaaaacagcgcgtggcgattggtcgggctttgctgacagcaccggaattgctgttgctggatgaaccgctggcgtcactggatattccgcgtaaacgcgaactgttgccttatctgcaacggctgacacgggaaatcaacattccgatgttgtatgtcagccattcgctggatgagatcctccatctggcagacagagtgatggtactggaaaacggtcaggtgaaagcctttggcgcgctggaggaagtgtggggcagtagcgtgatgaatccgtggctgccgaaagagcaacaaagtagcattctgaaagtgacggtgcttgagcatcatccgcattacgcgatgaccgcgctggcgctgggcgatcagcatttgtgggtcaataagctggacgaaccgctgcaagctgcgctacgtatccgcattcaggcttccgatgtttctctggttttacaaccgccgcagcaaaccagcattcgtaacgtattgcgggcaaaagttgttaatagttatgacgacaacggccaggtggaagtggaactggaagtcggcggtaaaacgctgtgggcgcgtatcagcccgtgggccagggatgaactggcgatcaaacctggcctgtggctgtacgcgcaaattaaaagtgtgtcgataaccgcctgattaaatcaggtggctataaatgaactgggcaatgctgtcggtggtgttatcaccaatcacaatgttggcgcgcgcttttaccgcgtcatcggcgttgcccatcgccacgcctgtaccagcggcttccagcatactgatatcattaaagttatcgccgaatgccacgacgttttccatcgaccaaccttgcgcctcaacccatttcgtcaaacgtttacctttgctgttgccgccgcgtgcaatatcaacctgatcgtgccaggaccattcacactccagtcccagttcatgttcgacatgcttaccaaaatgctgcaattgcggcaggtcatcgtgcgtcagggcgaacttccatacggcgttaacttgttgcgccgtttcagccagagaagcgacttgtgtgaaagtcggacgctgttccggcggcagggtttgcgcccagttagatgtgcgaatgacatgcccggtcgggtgctcatagaccattgcatcatcgacatacatcagaccgtgaatgtggtgttcattcagcatctcaatgagttgcagggctttaataacgggcattgggtccgcttccagcacggtttttgcatgataatcatacaaataggtgccattacagcaaatagcaggtgtatccagcgccagcgcctgataaaaaggatgaatagcgacgtgatggcgacctgtgacgatgattaattgatagcctgcttcgcgagcgcgggccagggcttctatcgatgaaggaagcagggtctttttcggggtcaataaggtgccgtctaagtcgagagcaatcacgcgtgtggtcatggcgtattccagattaaggttaagaattttcgtctgcgcgaatggtacaccgataccactatcggacaaaattctgcgttttaattcagcattcaccgccaaaagcgactaattttagctgttacagtcagttgctaaatgcaaaggagcattcatgaagcaaacagtttatatcgccagccctgagagccagcaaattcacgtctggaatctgaatcatgaaggcgcactgacgctgacacaggttgtcgatgtgccggggcaggtgcagccgatggtggtcagcccggacaaacgttatctctatgttggtgttcgccctgagtttcgcgtcctggcgtatcgtatcgccccggacgatggcgcactgacctttgccgcagagtctgcgctgccgggtagtccgacgcatatttccaccgatcaccaggggcagtttgtctttgtaggttcttacaatgcgggtaacgtgagcgtaacgcgtctggaagatggcctgccagtgggcgtcgtcgatgtggtcgaggggctggacggttgccattccgccaatatctcaccggacaaccgtacgctgtgggttccggcattaaagcaggatcgcatttgcctgtttacggtcagcgatgatggtcatctcgtggcgcaggaccctgcggaagtgaccaccgttgaaggggccggcccgcgtcatatggtattccatccaaacgaacaatatgcgtattgcgtcaatgagttaaacagctcagtggatgtctgggaactgaaagatccgcacggtaatatcgaatgtgtccagacgctggatatgatgccggaaaacttctccgacacccgttgggcggctgatattcatatcaccccggatggtcgccatttatacgcctgcgaccgtaccgccagcctgattaccgttttcagcgtttcggaagatggcagcgtgttgagtaaagaaggcttccagccaacggaaacccagccgcgcggcttcaatgttgatcacagcggcaagtatctgattgccgccgggcaaaaatctcaccacatctcggtatacgaaattgttggcgagcaggggctactgcatgaaaaaggccgctatgcggtcgggcagggaccaatgtgggtggtggttaacgcacactaaccgctgatttacccggcgcagtctctcctgcgccggtgtattaacctatctcctgtaacgcgtgtctctggcgttcgacgatattggtccacaaattgtctttatcgtcagtccataaattaatcagcaaggcaaaaaagcgttctgctgctggagaaagtacggcatctttacggcgaattattcccaatgttcgacgtataacgggttccaccaatgggataccaataatcgaagaatagggcgcatgaggcattgccaggccaggaagcgccgaaatccccagtcccgcctccaccagtcctaatgacgtcgaaagatgacgcacttcgtaaaaccagtccagcttccagggcttgtcggccagctgttgttctatcaacagtcggttgccgctggaggagcgtacgccaatcattttgtaacccactaactcctgccattctacaagctgctttttggccaatggatggtcacgccgacaggccagcacgaacggctcgttgaccagtggggtaaaatcaatggatgaatttgtgacgttgttcatgtttatgccaaagtctgattcgttacacagcaccgattccatgcaattattcgtgccttgttccagaatccgcactttaatattgggatacagctcattaaatttaccgattgccagcggtaaaaaataaaatactgcggtcggaatacacgctaacgtcaccataccacgatgataagcattcatatcacgaatattaaaaagcgtttcatcgaatttctttattaattcccgcgcctccgggagcaacctttttcctgcttttgttaacgtaaccttgcgagttgtacgctcaaatagttgaacatgtaaatcttcctccatcttttttattcttcgcgttaatgcaggttgcgtaatattgagtaatttagcggcattgttaaacgaactggactctgccagtatgacaaatgccttcatacttgataattcatgcttcattattactccggaaaatggaagcgacgattttgggtggctggccgttaaaaattttaactgcatttagccaacttaaattaatgaaaaaatgttattaatcgttgagctaaagtcattagagatgctttgcccttaatgtaaccatatcgcaataagttatgtttttaaattgagggcattattatgaaaaaaataccctgcgtgatgatgcgaggtggaacctcgaggggcgcgttcctgttagcggaacatttacccgaagatcaaacgcagcgcgataaaatattgatggcaattatgggttccggtaacgatctggaaattgacggtattggcggcggtaatccactgaccagtaaagtcgccattattagccgttccagcgatccgcgtgctgatgtcgattatctgtttgcgcaggtaatcgttcatgagcaacgtgtcgataccacgcctaactgcggcaatatgctgtctggtgttggggcattcgccattgaaaatggtttgattgcagcgacttcgccagttactcgcgtacgtatccgcaacgtcaatacgggtacgttcatcgaagctgatgtgcaaacgccaaatggtgttgtcgagtacgagggtagcgccagaattgacggcgtaccgggtactgccgcaccggttgcgctcactttcctgaatgccgctggaaccaaaaccggaaaagttttcccgactgataatcagattgattattttgacgatgtcccggtgacctgtatcgatatggcgatgccagtcgtcattattccggctgaatatctgggaaaaacaggttatgaattaccggcggaactggatgccgacaaagcattattagcccgcattgaatctatccgtctacaagcgggtaaagcaatgggcttaggtgatgtcagtaatatggttatccctaaacctgtgcttatttctccagcgcagaaaggcggggcaattaatgtgcgttattttatgccgcattcttgccatcgcgcgctggcgataaccggtgctattgctatttccagtagttgtgcattggaaggcaccgtcacccgacaaatcgtcccttctgtaggatacggcaatatcaatattgaacaccccagtggtgcgctcgacgttcatttaagtaatgaaggtcaggatgccacgacgttacgcgcatctgttattcggacgaccagaaaaatattttccggtgaagtttatcttccctgaaaaaattcgttgtcaggataaggacaatcaataaaggacttctgtatgagtcatacagaaagaacaggattttaaatgaataagaaatcgttatggaagctaattctgatattagcgatcccatgtattattggttttatgccagctccggcaggattaagcgaactggcgtgggtgctttttggtatttacctggcggccattgtggggctggttatcaagcctttcccggaacctgtcgtactgttaattgccgttgctgcctcaatggtggtggtcggtaacttatccgacggtgcgtttaaaaccaccgccgtattaagcggttactcttcaggtaccacctggctggtgttctcggcgtttaccttaagcgccgcatttgtgaccaccggtttaggtaaacgtattgcctatctgctgattggtaaaatcggtaacaccacgctgggtctgggttacgttacggtattcctcgatctggtactggctccggcaacaccgtctaacaccgcgcgtgcgggcggcattgtgttaccgatcatcaacagcgtggcggtggctttggggtccgaaccggaaaaaagtccgcgtcgtgtcggacattacctgatgatgtccatttacatggtcaccaaaaccaccagctatatgttctttaccgcaatggcggggaacattctggcgctgaaaatgatcaacgacattctgcacctgcaaattagctggggtggatgggcgctggcagccggattgccgggcatcattatgctgctggtcaccccgctggtgatttacaccatgtatccaccagaaattaagaaggtggataacaaaaccatcgctaaagcgggccttgccgaactaggaccgatgaaaatccgcgaaaaaatgctgctcggtgtctttgtgctggcgctgctgggctggattttcagtaagtctctgggggttgatgaatccaccgtggcaatcgttgttatggcaaccatgctgctgctgggtatcgttacctgggaagacgtggttaaaaataaaggcggctggaataccttaatctggtacggcggtattatcggcttaagctccttattatcgaaagttaaattcttcgaatggttagctgaagtctttaaaaataacctggcatttgatggtcacggtaacgttgctttcttcgttattattttcctcagcattatcgtgcgttatttcttcgcttccggtagtgcctatatcgttgctatgttaccggtatttgccatgctggcgaacgtctccggcgcaccgttaatgttaaccgcgctggcactgttgttctccaactcctatggcggcatggttactcactatggcggcgcggcaggtccggtcatctttggcgtgggttataacgatattaaatcctggtggttggtcggtgcggtactgacgatattaaccttcctggtgcatatcaccctcggcgtgtggtggtggaatatgctgatcggctggaacatgctgtaaatattctcgtcatacttcaagttgcatgtgctgcgtctgcgttcgctcaccccagtcacttacttatgtaagctcctggggattcactcgcttgtcgccttcctgcaactcgaattatttagagtatatccatttattatctttctgcgcacttcacggtgcgcagatatctggagcatttgatgatcaagttatctgaaaaaggcgtgtttctcgccagtaataacgaaataattgccgaagaacatttcaccggcgaaattaaaaaagaagaagccaaaaaaggcactattgcctggtctattctctcttcgcataatacgtccggaaatatggataaacttaaaattaagtttgattcattagcctctcacgatattacctttgttggtattgtacagaccgctaaagcgtccggtatggaacgtttcccgctgccgtatgtgctgaccaactgccataactcactctgcgccgtcggcggcactattaacggtgatgaccatgtttttggtttatcggcggcccagcgttatggcggtatttttgtgcctccgcatattgcggtcatccatcaatatatgcgtgagatgatggcaggcggcggcaaaatgatcctcgggtcagacagccacacccgttacggtgcattagggacaatggcagtcggtgagggcggcggtgagttggtaaaacagctgcttaatgacacctgggatatcgactatccgggcgtggttgcggtgcatctgaccggaaaacctgcgccgtatgtggggccacaggatgtggcgctggctatcattggcgcggtgttcaaaaacggttacgtcaaaaacaaagtcatggagttcgttggaccgggcgttagcgcgctctctaccgatttccgtaacagcgttgacgtgatgaccactgaaacgacctgtttaagttctgtctggcaaaccgatgaagaagtccataactggctggcgctgcacggtcgcggccaggattactgccagcttaaccctcaaccgatggcgtactacgatggctgcatcagcgttgatttaagcgccatcaaaccaatgattgcgctgccgttccacccgagcaacgtgtatgaaatcgacacactgaaccagaacctgaccgacattctgcgtgagattgaaattgagtccgaacgcgtggcgcacggtaaagccaaactctcgctgctggataaagtggaaaatggtcgcctgaaagtgcagcaggggattatcgcgggctgttctggcggtaactacgaaaacgtcatcgcggcggcgaatgcactgcgcggtcaatcctgtggcaatgacaccttctcgctggcagtttacccgtcatcacagccggtgtttatggatctcgccaaaaaaggtgtggtagcagatttgattggcgcaggcgcaatcatcagaaccgcgttctgcggcccatgctttggcgcgggcgatacgccaatcaacaacggtttgagtattcgccacaccacgcgtaacttcccgaaccgcgaaggctctaagccagctaatgggcagatgtcagcggtggcgttgatggacgctcgttctatcgctgcgactgcggcaaacggtggctatttaacctctgccagcgaacttgattgctgggacaacgtgccggagtacgccttcgatgtaacgccgtataaaaaccgtgtttatcagggctttgtgaaaggggcaactcagcaaccgctgatttacgggccgaacattaaagactggccggaattgggtgcgctgactgacaatatcgtcctgaaagtgtgctcgaagatcctcgacgaagtgaccaccaccgacgaactgattccttccggtgaaacctcttcttatcgttcaaatccgattggtctggcggagtttaccctgtctcgccgcgatcccggttatgttagcagaagtaaagcgactgctgagctggaaaatcagcgtctggcggggaatgtcagcgagctgacagaggtgtttgcgcgcattaagcagattgctggtcaggagcatattgatccgctgcaaactgaaattggcagcatggtctatgcggtgaaaccaggcgatggttctgcgcgtgaacaggcggcgagctgccagcgtgtgattggcggtctggcgaatattgccgaggagtacgcgactaaacgctatcgttctaacgtcatcaactgggggatgttaccgctgcaaatggcggaagtaccaacctttgaagtgggggattacatttacatccctggcattaaagcggcgctggataatccgggtacgacgtttaaaggttatgtgatccatgaagatgcgccggtaacggaaattacgctctatatggaaagtctgactgctgaagagcgcgagattatcaaggcgggtagtttgattaacttcaataaaaaccgtcagatgtaaaaagcgccatgtgaatgtaggtcgcattcggcacttattgtcggatgcgatgcttgcgcatcttatccgacctacgaatcgcatcgaatctgtaggccagataaggcattttcgcagcatccggcacttattgtcggatgcgatgcttgcgcatcttatccgacctacaaatcgcatcgaaccgtaggccggataaggcgtttacgccgcatccggcaaatagttaattgctcttacttcttcgcctctgcaaccactttactacccacgccgcggttattgtattcccacatgcggttgtagttagtgtcattcagattgcgctgtatttcgtcgttatcatctacgctgccggtattacccgcaaacggacgattagagatcaccgcatcggcccacggtttagccgtgttaaaaccttcgttgatggcgctatcacggatcaccacctgaccgttggtattggcatcaacatccagcgagcggcccagttgcgccacaccatcaccgaaagcattgaaacggctgtttacggcgaggaaaccgtagtaaatgttggacagcgtagccggtgcaaacacatacgcttcttgctgagtacgtgagttcaccacgcggaattcggtgttatcgaacaccactgcgccgcgaccagaaacgatatccacatccccttcaatgtagctgttggtcaccagcgtacgcggctgacgattcgtttccagacggttctgcacaccgctgttggtgacaaagaaggtgttctgacgaccgagaatgttaacgttgttaatctgtacctggtcaccatcagtacgcagtgccaccgccggatggttacctgcatctacgctatcgcccagcgtgttttcgatggtcagattttgcagttgcaggccattgttttgtgaccagaagaccgcagagcagagaacaccgatactgtcgctgcgtttgctctggcagctatcgtacatataccacgctggtttacctggcatatatttgccgcgcgggttgacgtcgtgacgccagtcggcagggctcatgccaccatcaagggaaagcccaatcttcacatcaatcggtttttcacctgtaccgtacagagtaattccacccggagcggcagggacatataccgttccctgatactcaccaggcatcacggcaatatactggcgcttgttggtacgcttgataattgccgcatctaccgccgcctgaatcgtggtatgcgttacaccttgagtgcccgccgggccgacaacaaagtcaggttgcgcaggcagggtaatcggggaaggattccacgctgcagcacctggtgtcagggatgcaaaatagtgttgagcatcgaaattctgcgcttcttttgccgacagaatcgggcgagaagaggtaccaggcgcggtttgatcagaaggacgttgatcgggcggggttgagctacaggcggtcagcgtcacgccaaaagccaatgccagcgccagacgggaaactgaaaatgtgttcacaggttgctccgggctatgaaatagaaaaatgaatccgttgaagcctgcttttttatactaacttgagcgaaacgggaaggtaaaaagacaaaaagttgtttttaatacctttaagtgataccagatggcattgcgccatctggcagagtgattaactaaacatcgcagtaatcgaggcgcttgccagagagtggaaatgaacgttaaacccgaccatcgcgccgctggcaccttcatcgacatcaatacgttctatatccagcgcgtgaacggtaaaaatgtagcgatgagtttcgcctttcggcggtgctgcgccatcgtacccggttttaccaaagtcggtacgcgtctgcaaaacgccgtctggcattgctaccagaccagagccaaacccttgcggtaatacgcgggtatcagcgggtaagttaacaactacccagtgccaccagccggagccggttggcgcatccgggtcgtagcaggtgacaacaaaacttttcgttcccgcaggaacatcatcccacgccagatgcggtgaaatattatcgccatcgtaacccatgccgttaaagacatgacgatgcggcaatttatcgccatcgcgcagatcgttactgatgagtttcatgaaccctcctttcttgtttgcagaaagtgtagccagaaaccctcacgcggacttctcgttattggcaaaaaaatgtttcatcctgtaccgcgcggttaaccgctgcggtcagacgctgcaactgttgcgggagaataatatagggcggcatcaggtaaatcagtttgccaaaaggccggatccagacaccctgttcgacaaagaatttttgcagcgccgccatattcaccggatgagtggtttcgaccacgccaatggcccccagtacgcgcacatcggcaaccatttcggcatcacgggcgggggcaagttgctcgcgcagctgtacttcaatatccgccacctgttgctgccagtcgccagattcgagaatcgccaggctggcgtttgctgccgcgcaggccagcggattgcccataaaagttggcccatgcataaagcaaccggcttcaccgttactgatggtttctgcaacctcgcgcgtggtgagtgtggcggaaagggtcattgtgccgccggttaaggctttaccgaggcacaaaatgtccggcgcgatttctgcatgttcacaggcaaacagtttcccggtacgaccaaatccagtggcgatctcgtcggcaatcagcaagataccttcgcgatcgcatattttgcggattcgttttaaccattccggatggtacatgcgcatcccgcctgcgccctggacaatcggctcaatgatcaccgccgcgatttcatgacgatgcgccgccatcaggcgggcaaagcccaccatatcgcgctcatcccattcgccatccatgcggctttgcggggcgggagcaaacaggttttctggcaggtagcctttccacagactgtgcattgagttatccggatcgcacaccgacatcgcgccaaaggtatcgccatgataaccattgcggaaggtcagaaaacgctggcgcgcttcgcctttggcttgccagtactgcaacgccattttcatcgccacttccaccgctacggaaccggagtccgcgagaaaaacgcactccagcggttgcggcgtcatcgccaccagtttgcggcacagctcaatggctggcgcatgggtgataccgccaaacatcacatgcgacatggcatcaatttgcgacttcatcgccgcattaagctgcgggtgattgtagccgtggatcgccgcccaccaggacgacataccgtcaaccaggcgtctgccgtcagacaaaatcagctcgcaaccttcggcgctcaccaccggataaaccggcagaggggaggtcatggatgtgtatgggtgccagatatggcgttggtcaaaggcaagatcgtccgttgtcataatcgacttgtaaaccaaattgaaaagatttaggtttacaagtctacaccgaattaacaacaaaaaacacgttttggagaagccccatggctcaccgcccacgctggacattgtcgcaagtcacagaattatttgaaaaaccgttgctggatctgctgtttgaagcgcagcaggtgcatcgccagcatttcgatcctcgtcaggtgcaggtcagcacgttgctgtcgattaagaccggagcttgtccggaagattgcaaatactgcccgcaaagctcgcgctacaaaaccgggctggaagccgagcggttgatggaagttgaacaggtgctggagtcggcgcgcaaagcgaaagcggcaggatcgacgcgcttctgtatgggcgcggcgtggaagaatccccacgaacgcgatatgccgtacctggaacaaatggtgcagggggtaaaagcgatggggctggaggcgtgtatgacgctgggcacgttgagtgaatctcaggcgcagcgcctcgcgaacgccgggctggattactacaaccacaacctggacacctcgccggagttttacggcaatatcatcaccacacgcacttatcaggaacgcctcgatacgctggaaaaagtgcgcgatgccgggatcaaagtctgttctggcggcattgtgggcttaggcgaaacggtaaaagatcgcgccggattattgctgcaactggcaaacctgccgacgccgccggaaagcgtgccaatcaacatgctggtgaaggtgaaaggcacgccgcttgccgataacgatgatgtcgatgcctttgattttattcgcaccattgcggtcgcgcggatcatgatgccaacctcttacgtgcgcctttctgccggacgcgagcagatgaacgaacagactcaggcgatgtgctttatggcaggcgcaaactcgattttctacggttgcaaactgctgaccacgccgaatccggaagaagataaagacctgcaactgttccgcaaactggggctaaatccgcagcaaactgccgtgctggcaggggataacgaacaacagcaacgtcttgaacaggcgctgatgaccccggacaccgacgaatattacaacgcggcagcattatgagctggcaggagaaaatcaacgcggcgctcgatgcgcggcgtgctgccgatgccctgcgtcgccgttatccggtggcgcaaggagccggacgctggctggtggcggatgatcgccagtatctgaacttttccagtaacgattatttaggtttaagccatcatccgcaaattatccgtgcctggcagcagggggcggagcaatttggcatcggtagcggcggctccggtcacgtcagcggttatagcgtggtgcatcaggcactggaagaagagctggccgagtggcttggctattcgcgggcactgctgtttatctctggtttcgccgctaatcaggcagttattgccgcgatgatggcgaaagaggaccgtattgctgccgaccggcttagccatgcctcattgctggaagctgccagtttaagcccgtcgcagcttcgccgttttgctcataacgatgtcactcatttggcgcgattgcttgcttccccctgtccggggcagcaaatggtggtgacagaaggcgtgttcagcatggacggcgatagtgcgccactggcggaaatccagcaggtaacgcaacagcacaatggctggttgatggtcgatgatgcccacggcacgggcgttatcggggagcaggggcgcggcagctgctggctgcaaaaggtaaaaccagaattgctggtagtgacttttggcaaaggatttggcgtcagcggggcagcggtgctttgctccagtacggtggcggattatctgctgcaattcgcccgccaccttatctacagcaccagtatgccgcccgctcaggcgcaggcattacgtgcgtcgctggcggtcattcgcagtgatgagggtgatgcacggcgcgaaaaactggcggcactcattacgcgttttcgtgccggagtacaggatttgccgtttacgcttgctgattcatgcagcgccatccagccattgattgtcggtgataacagccgtgcgttacaactggcagaaaaactgcgtcagcaaggctgctgggtcacggcgattcgcccgccaaccgtacccgctggtactgcgcgactgcgcttaacgctaaccgctgcgcatgaaatgcaggatatcgaccgtctgctggaggtgctgcatggcaacggttaataaacaagccattgcagcggcatttggtcgggcagccgcacactatgagcaacatgcagatctacagcgccagagtgctgacgccttactggcaatgcttccacagcgtaaatacacccacgtactggacgcgggttgtggacctggctggatgagccgccactggcgggaacgtcacgcgcaggtgacggccttagatctctcgccgccaatgcttgttcaggcacgccagaaggatgccgcagaccattatctggcgggagatatcgaatccctgccgttagcgactgcgacgttcgatcttgcatggagcaatctcgcagtgcagtggtgcggtaatttatccacggcactccgcgagctgtatcgggtggtgcgccccaaaggcgtggtcgcgtttaccacgctggtgcagggatcgttacccgaactgcatcaggcgtggcaggcggtggacgagcgtccgcatgctaatcgctttttaccgccagatgaaatcgaacagtcgctgaacggcgtgcattatcaacatcatattcagcccatcacgctgtggtttgatgatgcgctcagtgccatgcgttcgctgaaaggcatcggtgccacgcatcttcatgaagggcgcgacccgcgaatattaacgcgttcgcagttgcagcgattgcaactggcctggccgcaacagcaggggcgatatcctctgacgtatcatctttttttgggagtgattgctcgtgagtaaacgttattttgtcaccggaacggataccgaagtggggaaaactgtcgccagttgtgcacttttacaagccgcaaaggcagcaggctaccggacggcaggttataaaccggtcgcctctggcagcgaaaagaccccggaaggtttacgcaatagcgacgcgctggcgttacagcgcaacagcagcctgcagctggattacgcaacagtaaatccttacaccttcgcagaacccacttcgccgcacatcatcagcgcgcaagagggcagaccgatagaatcattggtaatgagcgccggattacgcgcgcttgaacaacaggctgactgggtgttagtggaaggtgctggcggctggtttacgccgctttctgacactttcacttttgcagattgggtaacacaggaacaactgccggtgatactggtagttggtgtgaaactcggctgtattaatcacgcgatgttgactgcacaggtaatacaacacgccggactgactctggcgggttgggtggcgaacgatgttacgcctccgggaaaacgtcacgctgaatatatgaccacgctcacccgcatgattcccgcgccgctgctgggagagatcccctggcttgcagaaaatccagaaaatgcggcaaccggaaagtacataaaccttgccttgttgtagccattctgtatttggttaaattgcgagcgagatcgcgtcttcgattgactgcaatttaaccaattaaattctaaaataatcacgaaaaaaattttacttccgcctcatgcggcgaatgtgggaattgcccaggcggcgggggataggggctggagacagttatccactattcctgtggataaccatgtgtattagagttagaaaacacgaggcaagcgagagaatacgcggcttgcacgcgaattggcgttaaagacggctcaaagaaatatcttttattttttaactggttagataaatgcaatggcagtcactgaacaggcatctcttgccataaaactgtcatcactcatcttgacaaatgttaaaaaagccgttgctttggggataacccggtaaggccggagttttatctcgccacagagtaaattttgctcatgattgacagcggagtttacgctgtatcagaaatattatggtgatgaactgtttttttatccagtataatttgttggcataattaagtacgacgagtaaaattacatacctgcccgcccaactccttcaggtagcgactcatgagtaaaccgttcaaactgaattccgcttttaaaccttctggcgatcagccagaggcgattcgacgtctcgaagaggggctggaagatggcctggcgcaccagacgttacttggcgtgactggctcagggaaaaccttcaccattgccaatgtcattgctgaccttcagcgcccaaccatggtacttgcgcccaacaaaacgctggcggcccagctgtatggcgaaatgaaagagttcttcccggaaaacgcggtggaatatttcgtttcctactacgactactatcagccggaagcctatgtaccgagttccgacactttcattgagaaagatgcctcggttaacgaacatattgagcagatgcgtttgtccgccaccaaagcgatgctggagcggcgtgatgtggttgtggtggcgtctgtttccgcgatttatggtctgggcgatcctgatttatatctcaagatgatgctccatctcacggtcggtatgattatcgatcagcgcgcgattctgcgccgactggcggagctgcaatacgctcgtaatgatcaagcattccagcgtggtactttccgcgttcgtggcgaggtgatagatatcttcccggcagaatcggatgacattgcacttcgcgtggaactgtttgacgaggaagtggaacgattgtcgttatttgacccgctgaccgggcagattgtttccactattccacgttttaccatctacccgaaaacgcactacgtcacaccgcgcgagcgcatcgtacaggcgatggaggagatcaaagaagagctggccgccagacgcaaagtgctgttggaaaacaacaaactgctggaagagcagcggctgacccagcgtacccagtttgatctggagatgatgaacgagctgggctactgttcggggattgaaaactactcgcgcttcctctccggtcgtggaccgggtgagccaccgccgacgctgtttgattacctgcctgccgatgggctgctggtcgtcgatgaatctcacgtcaccattccacaaattggcggcatgtatcgcggtgaccgggcgcgtaaagagacactggtggagtacggcttccgcctgccatcagcgctggataaccgtccgcttaagtttgaagagttcgaagcattagcgccgcaaaccatctatgtttcggcgacgccgggtaattacgagctggaaaaatccggcggcgatgtggtggatcaggtggtgcgtccaaccggattgcttgacccgattatcgaagtgcggccggtggcgacacaggttgatgatcttctttcggagattcgtcagcgagcggcaattaacgaacgcgtactggtcaccacactgaccaagcggatggcggaagatcttaccgaatatctcgaagaacatggcgagcgcgtgcgttatcttcactcagatatcgacaccgtcgaacgtatggagattatccgcgacttgcgtctgggtgagttcgacgtgctggtagggatcaacttactgcgcgaaggtctggatatgccggaagtgtcgctggtggcgatcctcgacgctgacaaagaaggcttcctgcgttccgaacgttcgttgatccagaccattggtcgtgcggcacgtaacgttaacggtaaagcgattctctacggcgataagatcaccccatcaatggcgaaagcgattggcgaaaccgaacgtcgccgtgagaaacagcagaagtacaacgaggaacacggaattacgccgcaaggcttgaacaagaaagtggtcgatatcctggcgctggggcagaacattgccaaaaccaaagcgaagggcagaggaaaatcgcgcccgattgttgagccggataatgtgccgatggatatgtcgcctaaagcgttgcagcagaaaatccatgagctggaagggttgatgatgcaacacgcgcagaatctggagttcgaagaagcggcgcaaattcgtgaccagttgcatcagctgcgtgagctgtttatcgcggcatcgtaacaggatagcgaagaagactgatgacaaacggaaaacagcctgatgcgctacgcttatcaggcctacattttctccgcaatatattgaatttgcgcggtttgtaggccggataaggcgttcacgccgcatccggcataaacaacgcgcactttgtcttcaataggaagccggaattttccttcggatttccgttaacctaaagcctgtaacgccttttccagcgcgttatgtaacaactggcggtcatgacgatacggaatatcgctggcctccagtacctcctggatcacaatccgctctttcaccgccgagacatccacttttggcccgacgatgaccgcatcaatgacctttttaccaacatactgctccataattgccagcttgctttccagcttcaaattagccgcaggtaaactcaactcacgccccagattgccgatataaaccatcggcgctggcgtgcggcgtaatgcctgggcgatttccttcagcagcagaattggcatcaggctggtataaaaactgccaggcccaataatgatgagatccgcttcattgatagcgtgaaccgcctcacgcgttgcgggtacattaggcgttaacaataactcttgaatcggcgtagttaactggtcgatattgacctcgccgtaaacttcatgcccctgatcgtcaatcgccatcagatcaacaggatgctctgacattggaatcaaatgcgtatccactttcagcagattacgaattaaattgatggcttccagaggccgcacgctaaggtgatccagcgcctttaacatcaagtttccgagattatgaccggaaagttcgccattgccaccaaaacggtattcaaacatcgcggaggcgacgctcggttccgttatcagctggttgaggcagttgcgcatatcgccccaggcaatgccgccttctgaacggcgaatacgccccgtcgagccaccattatcggtggtggtgacgatacccgttaaacgagaacccaaagacgaaagtgatgagagaacgcgtcccagtccatgccctccgccgagagcaacgacacgatcaagatcagccagcgtacgattgcgcatatagtttcctggagtcagattatccgcgctacagtagcgcaaattgcggggaaacagcaattaacctgccaatattgaggatacaaactattttcttctacctctaaaggacgatgcacgctatgcctccctgatgatgtatatcaaagtaaaaccgccattttcccttattctgtagcgaaatagcacgatcatgacgctatatacatgattacatagcgaaagtgtggatggtaaaaatctcatttacacgctagtatcggcataaccactaaacactctagcctctgcacctgggtcaactgatacggtgctttggccgtgacaatgctcgtaaagattgccaccagggcgaaggaagaaatgacttcgcctcccgtatctggaaaggtgtacatggcttcacaactgactgatgcatttgcgcgtaagttttactacttgcgcctgtcgattaccgatgtgtgtaactttcgttgcacctactgcctgccggatggctacaaaccgagcggcgtcaccaataaaggctttcttaccgtcgatgaaattcgccgggttacgcgcgccttcgccagactgggcaccgaaaaagtgcgcctgacaggaggagagccgtctttacgccgcgactttaccgatatcatcgccgctgtgcgggaaaacgacgctatccgccagattgcggtcacaaccaatggttaccgtctggaacgcgatgtggcgagctggcgcgatgcgggacttactggcattaacgtcagtgtcgacagtctggacgcccgccagtttcacgctattaccgggcaggataaattcaaccaggtcatggcagggattgatgctgcatttgaggccggttttgagaaggtcaaagtcaataccgtgctgatgcgtgatgttaatcatcaccagctcgacacctttctgaactggatccagcatcgccctatccagctgcgtttcatcgaactgatggaaacgggcgagggcagcgagctcttccgtaagcatcacatctctggtcaggttctgcgtgacgagctactgcgtcgcggctggatccaccaattacgtcaacgcagcgacggtcccgcgcaagtcttttgccatccagattacgccggagagattggccttatcatgccgtatgaaaaagacttctgcgccacttgcaaccgcctgcgcgtttcctccattggtaaactccatctctgcctgtttggtgaaggcggcgttaacctgcgcgatctgctggaagacgatacccagcaacaggcgctggaagcgcgtatttcagcggcgctgcgggagaagaaacagacccatttcctgcatcaaaacaacaccggtattacgcaaaacttatcgtacattggcggctaaaacgtcaaaaggagagatcagatgagtcaggtaagcactgaatttatcccgacccgtattgctattcttacggtttctaatcgtcgcggtgaagaagacgatacctccggtcactatctgcgcgattcggcgcaagaagcgggccatcacgttgtcgataaagccattgtgaaagaaaaccgctacgctattcgcgctcaggtatctgcgtggatcgccagcgacgatgtacaagtggtattgattacgggtggtactggcctgacggaaggtgatcaggctcccgaagcattgctgccgttgttcgaccgtgaagttgaaggttttggtgaagtgttccggatgttgtcgtttgaagagattggcacttccacgttgcaatctcgtgcggtagcgggcgtcgccaacaaaacgctgattttcgccatgccgggttcgaccaaagcgtgccgtaccgcatgggaaaatatcatcgcgccgcagctggatgcccgtacgcgtccgtgtaatttccatccacatttgaagaaataagtatgtcgcaactgacccatatcaacgccgctggcgaagcgcacatggtggatgtctccgccaaagcggaaaccgtgcgtgaagcgcgggcggaagcctttgtcaccatgcgcagcgagacgctggcgatgattattgatggtcgccaccacaaaggcgacgtatttgccactgcgcgtattgccggtattcaggcggcaaaacgcacctgggatctgatcccgctctgtcatccgctgatgctcagcaaagttgaagtcaatttacaggccgagccggagcacaatcgggtgcgtatagaaaccttatgccgcctgaccgggaaaaccggtgtcgaaatggaagcattaaccgcggcctccgtggcggcgctgaccatttatgacatgtgcaaagcggtgcaaaaagatatggtgattggtccggtacgtttgctggcgaagagcggcggcaagtcgggtgactttaaggtggaagcggatgattaaagttctttttttcgcccaggtgcgcgagttggtgggaacagatgcaaccgaagtggctgcggatttcccaactgttgaagcgttacgccagcacatggctgcgcagagcgatcgctgggcgctggcgctggaagatggcaaattactggctgccgtcaaccagacgctggtgagttttgaccatccgctgactgacggcgacgaagtagctttcttcccgccggtaaccggaggttaagatggcagaaaccaaaattgttgttggtccgcagccgttcagcgtaggagaagagtacccgtggctggcggagcgtgacgaagacggtgcggtagtcacctttactggtaaggtgcgcaaccataacctgggcgacagcgtcaacgcattaaccctcgaacactatccggggatgactgaaaaagcactggcagaaattgttgatgaagcgcgtaaccgctggccgctggggcgcgtcactgtgattcaccgcatcggggaattatggccgggcgatgaaatcgtttttgtcggtgtcaccagtgcgcatcgcagcagtgcgtttgaagccgggcagtttattatggattatctcaaaacccgcgcaccgttctggaagcgcgaagccacgccggaaggcgaccgctgggttgaagctcgggagagcgatcagcaggcggcaaaacgctggtagttttttgttagccggataaggcaccgctgcgtccggcaatttcaccgctcagtacatacgtttacgctgcgtcgatgcacagcctcatcattttgcagtatccttaagatattccttatatcttcaggagatcgtcatggacagattcccacgttctgattcaatcgtacaaccccgggctggcttgcaaacttatatggctcaagtctatggctggatgaccgttggcttgttgctgaccgcatttgttgcctggtatgcggctaattccgcggccgtgatggagctgttgttcactaaccgtgtctttttaatcggtctgatcatcgcgcaattagcattggttattgtgttatcagcgatgattcaaaagctgagcgcaggtgtaacgacgatgctctttatgctttattcggcgctgacgggtcttacgctttccagtatattcattgtctataccgctgcttctatcgccagtactttcgtcgttactgccgggatgttcggcgcaatgagcctgtacggttacaccacgaagcgcgatttaagtggctttggcaatatgctgtttatggcgttaatcggcattgtgctggcatcgctggtcaacttctggttgaaaagcgaagcattgatgtgggcagttacctacatcggcgtgattgtctttgtcggattgacggcgtatgacacgcagaaactgaaaaatatgggtgagcagattgatacccgcgacacgtcgaacctgcgcaaatattccattcttggcgcgttaaccttgtatctggacttcatcaacctgttcctgatgttgttgcggatcttcggcaaccgccgttaattctttttcaccatcactatcccggccatgtgtcgggatttttttcttactaaaaacgacacttaacaagtaccaggtataaaatatgccttatggacgagcggaagcgttttctgtatccataaatgcaaaagtattttgtatgcgtggttttaaatttattgatggtgaatattaatattttttctaaggataactaaaagaatggaatcatactcgcaaaacagcaataaattagattttcagcacgaggccaggatattaaacggtatatggctcattaccgctttaggtttggtggcaaccgcaggactagcctggggagctaagtatatcgaaattacggcaaccaaatatgattcaccaccaatgtatgtcgccatagggttattattactttgtatgtatggcttaagtaaggatatcaacaagataaatgccgccatcgcgggcgtaatatatctgtttttactctctttggtggcgattgtcgttgcaagtttagttcctgtatatgccattatcatcgtgttcagcactgcgggcgcgatgtttttaatcagtatgctggccggtttattatttaatgttgatcctggttctcaccgttttatcattatgatgacgttgacagggttggccctggtaatcatcgtgaatgcggcattaatgagtgaacggcccatttggataataagttgcttaatgattgtgttatggtcaggcattatctcgcatggacgaaataagctccttgaattggcggggaaatgccatagtgaagagttgtggagtccggttcgttgcgcttttacaggtgcattaacactctattactattttatcggcttctttgggatacttgccgcgatagctataacgcttgtctggcaaaggcatacgcgtttttttcattagccgtaaatgcacatactaaagaacttaactaaacttcacatcgccgcttcatttttcgcccgtagcttcttcgcctggctttccagcaacaggtaacagatcagcgccagcagcagtgggataaagtaatacagcacacggtaagcgagtagggcggcgataattgtacctttggaggtatgctccccagccagtagtgcgataaacaccgcttccagcacaccgatccccgccggaatatgcacgatgacgccagcaatactactaaccagtaacacgcccagtacaaagaaatagttcacgctttgaccaagtaacagccagataatcgcccccattaccatccagttaacgctggaaatcagcatctgagcgagggcgaatttccatgaaggcagcaccagcttttgccctttgatggtcatatggcggtgcttcgcgaaagcgcaaaaccacaaataaaccgcgataatcatcagtaagccaatgccgagaatacgcagcgtagtttgatcgacataccagtgatccggcaactccaccacgcctgcggtaaagataatccctgccagtaaaatgtagcccagccagttggtggtaatactgagcgagaaaatccgcgtaatagtgctaccgggcaaccccagacgagagtacaaacgatagcgcataccaatgccgccgacccaggtactgagcgtcaggttgaaggcgtagcagataaacgacaccagcatcacctggcgcttcgccagtttgtgaccgcagtaaaagcgggcgagcaggtcatagcagccgtaaatcagatagctgacgaccaccagcccgaccgcactaagcagcgcaacgcgattgtagtcgcggatgaccttccagacctcttcccagtccacttttttggcgtagaccaccagcaacacaatcaccgcgataaaaaacagccaggtgaggatcttctttgctaagcgccagcgcgggtgtgatttactcatcagggttttacccccgtgttttcagtttctacccgatcctgcgtttccattgtcggttgtgcgggcggatcaacctgcgccagacgtggcgtgtgtgccggaagccagccaaccagcgccgggaagtggcgtaaaaagtggaacgccagcacgcttttggtcaggttccaccaggtgcgtttgggcagcatggtttcatccacctgctgacaatctgcggcaataatgccgttcagattatcgcgcagcgtctggttaaaatgacgatcgtggatgatgacatttgcttcgagattcagtgacaaactgagcggatcgagattactggaccctactgtcgcccagtgatcgtccatcaatgccactttgccgtggagcgggcggcggcggtactcaaaaacctgaacgccgcctttaaccagatagttatacagcaagcgcgcaccgactctgacaatcggcatatccggttcgccctgaatgatcagtttgatccgcaccccgcgccgtgccgctttacgcaaggcgtgtaaaaatcgatagccggggaagaagtaggcgttggcgataatcacttcccgccgcgcctgagtgagcattttcaaataatggcgttcaatatcatcgcgatgttcttcgttatcgcgccagaccagcaatacctgcgcttctcccggctggcggttctcttccgctttgtgatgacgtcgccaccagcgtcgtgccgcgctctgtccaggcaggttttccagctcaaactggagaatatcttcgacaatcggcccttcaaggcgtaccgcgtaatcctgtttagcctctggaccgtagctggacatatgctcggcggagtaattcagcccgccaataaaggctatacgcgcgtcgatcaccacaattttgcgatgcatccggcgaaacacattggtgcgcataccaaaaaggcgagggcggggatcgtagtagcggaacactacgccagctgccgtcagttcattgacaaactcatcgctgagatccggcgaaccgtagccatccagcaagacttccgctttaaccccgcgttgcgctgctgccagtagtgccgcatgcagttgtttgccgacgtcatcctcaaaccagataaacgtttcaagaatgatgcgttcttgtgcctcgccaatcgccttaaacaccgcgggataatattgctcgccgttttccagcaactggatcttattgccttcgcgccagctacatttcataaatgaatctccgcacttaaaggggcatgatcagaaaggtgtcgccatgtccgcagcggcaacgcggttggcgcgctggcgctggcatttttgacgtagatcctgtccagtcgtagtagaggaaattgcaccggaaacgtgcgcgccgggcgtccgtgggcgcgggtaaaaatctcatccagtccggcctgcacttttaacggatgattagctttttgccgccagtcattgaaatcacccgccaccaataccggttcgccgtccggtagctcattcacccattcggcgagcatcgcaagctgcgcctgacggtgcgcctcacgcaggcccagatgtacgcacatcacatgaatcgcttttccggtcatcggcggcacaatgcggcagtagagcacgccgcgcttttccgcaccatcgaccgaaacatcgcgattctcataatgttcaatgggataacgcgacagtacggcgttgccgtgatgcccttccgggtatacggcattgcgaccgtaggcaaaatcgctccacatagtgtcggcgagaaactcgtagtgcgaggtatcgggccagttttccacatgcagcggatgaacttcgtgcgcgcccatcacttcctgcaggcaaacaatatcggcgctgacggtacgcacggcgtcgcgaagttccggcaaaatgaagcgtcggttaaacgcggtaaagcctttgtgaatattgatggtgagcaccttgaacgaaaattgttgtgtttgatcgggcataattttcctgtctttgcctcttatctcattgaaatagtgtagtcggcgtcacaaaaaggtgcggtcttacggaattttccgtaaagttcggtactctgagtaagtagagataaattcttcaggagagaagccatgaagtggcaacaacgtgttcgtgtcgcaacgggtctaagttgctggcagattatgttgcatttactggtagtggcgctgctggtggtgggctggatgagtaagactctggttcacgtcggcgtgggattatgcgcactgtattgtgtcacggtagtgatgatgctggtgtttcagcgccaccccgagcaacgctggcgtgaggtggcagacgtgctggaagagctgaccacgacctggtattttggcgcagcgctgattgtgctgtggctgttgtcccgcgttctggaaaacaactttttgctggcaattgcagggctggcaatccttgccggcccggcggtagtgtctttgctggcgaaagataagaagttacatcaccttacgtctaaacatcgcgtacgccgctgaccctgtcgtggccgttatcaccagtagcggccacaaactattccacacaatatccagactcgcatccttcaaataaatctgcttggtaatgtccgtaaagtggcgaatagggttaatccacgtcaggttttgcagccataccggcatgttttccaccggagaaacgtaaccggaaaggagaatggcgggcatcataaagacaaacacgccgataaacgcctgctgttgtgttgaacagagtgatgaaatcaacagaccgaatcccaccagcgataaaccataaatcaccatcgtaaagtagaacagcgccagcgatccggcgaaggggatttgatacgcccagataccaatcgccagcacaatggtggcctggaaggtggcgacaattaacgccggtacggctttgccgatgaagatctgccaggtggtgagcggcgaaaccagtagctgatcgagcgtaccttgttcacgttcgcgggcgacggaaagtgaagtgacgatcattacgccgatagtggtgatcatggcgatcagtgacggcaccacaaaccatttgtagtcgagattcgggttataccagttgcgtaccaccagctcgctgttgttaggtttcggttttccttccagcagctcctgctgataatttttgacgatctgttgcaggtagttggcggcaatttgcgcactgttggagttacgcccgtcgaggatcaactgcaaaggcgcggtctggaaggtatccagtttgcgcgagaagtcagccgggaaacgcaccagtagtaacgccttttgtgtgtcgatggttgggcggatctcctgtgggcttttcagcagcagcacatgagtaaaggcgctggcgcgggcaaaacgttgggtcagctccaccgaatgctcgccgttatcttcatcgtagatggcgatggtggcgttagtcacttccagcgtggcggcgaacgggaacaggatcacctgaattagcacgggtaaaatcagaatcgcgcgggtttgcggttcgcgcagcaacgactgcaactctttgcggattaacgtccataagcgatgaaacatgctcttctccctaatccagccgacgtttggttttcagccacgtcaggccgataaacatcaccgccgaagcgatcaaaaacagcacgtttaccaccagcaccactggaatattcccggcgaggaacaggctttgcagggtgctgacgaaataacgagcgggaataatgtacgtcaccgcgcggatcaccgcgggcatactgtcgatctgaaaaataaagccggaaagcataatcgacggcagaaaagcggcgttcagggcgacctgagcggcattgaactggttgcgggtaatcgtggaaatcagcagccccatccccagggtactgagtaaaaacaggctggagataaaaaacagaatcagcagcgacccgcgatacggcacgccgagaataaacactgacaccagcatacacagcaacatcgccagcatcccgagaaagtaataagggatcagcttacacagcagcagttccgtgcgggtaatctccgtagagagcagagcctccatggtgccgcgttcccattctcgcgccaccaccagcgaggtgagaatcgcgccgatgaccgtcatgataatggtcaccgcaccggggataatgaagtgctggctaatcgccgccgggttaaaccagtagcgggtttgtacatcaataagcggttcaaaagtctgcccgttgtcctccgctcgctgcatttgccagatctgccagatcccttcgacatacccctgtacaaagttagcggtattcggctcactgccgtcggtgatcacctgaatcggtgcggtggcgttggcgcgctccatctgttccgcaaaatccaccggaataaccaccagaccgcgaattttccccgcctgcattttggcgatcagttcctgacggttatcgctgatggtggcgtcgatgtagggcgaaccggtcatggtgtgggtgaaatccagcgccgcttcgctacgctgttccagtaaaatcccgacccgcagcttgctggagtcgaggttaatgccgtaaccaaaaataaacagcagtagcagcgggatcactaccgcaatcagccagctactcggatcgcgaacgatctgccgcgtctctttaacgcacagcgcccgtacgcgacgccaggacaggatcgggttactcattgctatgctccttatcccagtcgtggatcaactgaataaaggcttgctccatggtgggatcgggttgctcatcgttagccgactgtgctttcaaatcgtccggcgtgccgctggcgattaatttcccgcggtacaccaggccgatgcggtcgcaatattccgcttcatccataaagtgggtggtgaccatcaccgtgacgcctttctctaccatgctgttgatgtgcagccaaaattcacggcgggtgagggggtcaacgccggaagtcggttcgtcgagaaacagaatgtccggttcatgcatcagcgaacaggccagcgccagccgctgtttaaaacctaatggcagttcatcggtggcgtgggaggcgatacttttcaggccgaacgcctcgctcatgcgggagattttttcgttctgcgcccgaccgcgtaagccatacacaccagagaaaaagcgtaaattctgttcgaccgtcaggttaccgtagagcgaaaatttttgcgccatatagccgagatgctggcgcgctttaccggaactctctttcagatccatccccagcaccagcgcctggccggaagtcggcaccagcaaaccgcacatcatcttaaaggtggtcgatttacccgcgccgtttggccccagcaaaccaaaaatctccccacgtttaacggcaaagttgacgtgatcggtggcggcaaaatccccaaatttcttggtcagttctttcgcttcgatcaccgtctcgccgggtgtgccttctaccgtatgtaatattgcgcccagcggcgattccgaggttccggcaccgcccagcaaatcaataaacgcatcttcaaaacgcggcgtagtttcgttgatgttgatttccggcatcccgtcggcatggcgaatatcgtctggtgtggcctcttttttgaggatcagacgtaccgatttcccctgaatcatgccgtcgctgacctgcggcagtttcaaggcgcgttgcaacagtttgcggttgccctcgtgtggactggtcatcagaaagctgcgtccggccatggtttgtgtcagggcttttggttctccctgatacagcaactcgccttcgttcatcagtaacacgtcacggcactgctcggcttcgtcgagatacgaggtactccagaggattaacatcccttcgcccgccagctcatgcaccatctgccacagttcgcgccgtgagatagggtcaacgccgacgccgggttcatcgagcagcaacactttcggttcgcccaccagggtacaggccagaccgagtttttgtttcatcccaccggagagcttgcccgccaggcgtccggtaaacggcccaagagacgtaaactccagcaggcgagcaaaagtttgcttacgtgcctcgccggtgacgctgcgcaaatccgcgtacagattgaggttctccatcaccgtgagatcttcatacagaccaaatttctgcggcatataaccgagcacggcgtgcagcgcgccgtcgtttttgatcggatcaaagccaatcaccgtggcactgccgctgtcgggtttcagtaatcccgccaacatccgcatcagcgtggttttacctgcaccgtccggccccaccaaccccgtcacataaccggcgtgaatggtacaatcgagcggcgcgacggcgggcttgtccatgcccggaaagcgtttttccaggccgttcagcgtgataacggcatcattcatgtcctgcctcgtcaccgaattgtaccgtcactggcattccctggcgtaacgcatcatcggcgtcggtcaccacaatacgcaggcgatagacgaggtcggtacgcagatccggcgtttcgacggttttcggggtaaattcagcagtcggcgaaacgaaaccaatctgcccgtgatacggcttgtccgggcgaccatcggtataaagcagcactttgcgccccggctgggcctggtcaagattacgttcatcaacataagcgcgcacccacaccggacgcgttagtgaaacggtaaacaccgtgccaccttcattgaggaccgtgcctggctccaccgcgcgcgttaacagcgtgccatcagacggggctatcaacgttgagtcctgtaaattcaactccgcctgcgccagttgcgcctgcgcctgttcgaggctggctttcgcctgagcgatgtcctgttcacggttaccggaacggtactgacgcaatttatcctgtgctgatttcagcgttgcctgcgcctggtcgcgcgaggagcgggcattttccaggtcatttgccgaaatagtgcggcttttccacaacccttgctggcggttatagaagttctgcgcatagtcataggcggcttgcgcctgtttcaccgctgcggcggcctgagcgatttcttcattgcgatacccggcaagcatcaggtcatactgcgcctgtgccaccgaaacacccgctttcgcctgcatcagggcaatctcatacggcttgtgatccagttcgcccagcacctggcccgctttgatagcatcaccttcgtccaccgccagcgattcaacgcgccccccaacacggaaactaagatttaccgtacgaatatccacgttgccatacagcgtcaggccgttatcctggcggctttgataccaccagtagcctccggcaaccacggcggcaagtaccactaccgccaatccgatcacgacaggttttttcatcactacaaactcctttgcgataatccttgcaaaatcaggtcgatatgacaggtcaccgtctggttgatcagttcggtcttttcttcatcgaacgcggtccagccggtacgtaacagaattgtttctttgccaagacggaacgccagaatctcaccaatcaacgcatgggtatgaaggatcatgcgggtgtcattggcgtcgcagccggtccaggcggcaatcaggcgtgtcaggtggctgtgtagcggactaatcacctgttcgtgcaccaggtggtaggctgccgtgggagagagctgctcacgggagataaacttgctgaggttgacggtgtcatcctgggtgagcagcttaatcatgttcctgcaggcgcgaaggatcagttcacggatggcagcccgatcaggctgtggttgcgcgaacaagcgttcggcttcctcggcatgcggacggaactgctcgccaataaaatcggcaatccactgggcgcaggcgaggtacaaatcttctttcgaaccgaagtagtaggtgatggcagcgatattctgcccggcctgggcggctatctcgcgagtggtggcgttcattccatattcaccaaactgcgccagtgcggcagcaatcagctgttttttcgcctgttcacccttgattgtcatggcaggattattcatcgcacagtccattcttaatcaaatgattgattaagattatgactccataggggagttgtccagtatggctaagaattttagcaacgccagtcacagggataatttatgcgctgcgtcacaaaaactgctacactccgctccctcatgacattgtggtttttgtcattttccttttcagtatctccctgaaaactacaccggtaacggtcggggcggttcggagtagttatgtctttcgattctttgggtttaagccctgatatcctgcgcgccgttgccgagcagggttaccgtgaacccacccctattcagcagcaggcgatccctgcggtgctggaaggccgcgacctgatggctagcgcccagaccggcaccggcaaaacagcgggctttacgctgccgctgttgcaacacctgatcactcgccagccgcacgccaaagggcgtcgtccggtacgtgcgctcattcttaccccgacccgtgaactggcggcgcagattggcgaaaacgtccgtgattacagcaaatacctgaacattcgttcgctggtggtgtttggtggtgtgagtattaacccgcagatgatgaaactgcgtggcggcgttgatgtgctggtggcaaccccgggacgtttgctggacctggaacatcagaatgcagtgaagctggatcaggttgaaatcctcgtcctcgatgaagctgaccgcatgctcgacatgggctttatccacgatatccgtcgcgtgttaacaaaactacctgcgaagcgccagaacctgttattctccgcgaccttctctgacgatattaaagccctggcggaaaaactgttgcacaacccgctggaaatcgaagtggcacgccgcaataccgcgtctgatcaggtgacccagcacgttcactttgtcgataagaaacgcaaacgcgaattgctgtcgcacatgattgggaaagggaactggcagcaggtgctggtgtttacccgtaccaaacacggcgctaaccatctggctgaacagctcaataaagatggcatccgtagtgcggcgatccacggcaataaatcgcaaggtgcgcgtactcgtgcgctggctgattttaaatcgggcgatattcgtgtactggtggcaactgacatcgctgcgcgcggcctggatattgaagagctgccgcacgtcgtcaactatgaactgccaaacgtacctgaagattatgtccaccgtatcgggcgtaccggtcgtgcggctgctaccggtgaagcgttgtcgctggtgtgtgttgatgaacacaaactgctgcgtgatatcgaaaaactgctgaaaaaagagatcccgcgcattgcgattccgggctatgagccggacccgtcaatcaaagccgaaccgatccagaacggtcgccagcaacgtggcggcggcggtcgtgggcaaggtggtggtcgcggtcaacagcaaccacgccgtggggaaggtggcgcaaaatctgcaagcgcgaaacctgcagaaaaaccgtctcgccgcctcggcgatgccaaaccggcaggcgaacaacaacgtcgccgccgtccgcgtaaacctgccgctgcgcagtaatcttttatgccgggctatgcccggcatcaggctgatgaacaaacgcaaaactgcctgatgcgctacgcttatcaggcctacgtgaactctgcaatatattgaatttgcatgcttttgtaggccggataaggcgtttacgccgcatccggcatttcacaacaagcacttgtcagcaatttgagaacacgggaaaaaatttatctgttttaccgcccataagccaccgagacgttacttctctatagccaattgttcgcgcaactccattaaaaggtagcccagtcgattcttgcccttaccatgaccaccgtctccccagtaagcatcgttttccgtatgctcaaccagttttgcgggcgcggttgccagcaagagcgcacgcagttctgcatgctgttcgaatttagcgcgaagtgcttttcgcatcacctgttctttgaccgactcccagtttttacgcagaggcttagaacgatcgcgccccatgcgtgcggcgaccataggggaagaaacccgacggatctcttcgcggtatttttcatcaaggaatttttgtgcctgaaaatagtgttctgaggtaggccaggttttcccgtcaaccttgatgggccaggcggcaaagttagaaaaatcaccgtagtcatcgctggtgctgtagaaatttatgatggtgtcttgcatgacgtgttggatcctttgtgctcgaacgggcattaaaccgcattatgttggtggttattgcgagccgctttccagaaacagaaaaaccattacccctgaaaaccgaaaaatgccacaatattggctgtttatacagtatttcaggttttctcatggcattaaccgccgcgcttaaagcgcaaattgccgcctggtataaggcgcttcaggaacagatccccgactttattccccgtgcgccgcagcggcagatgattgcggacgtcgccaaaacgctggccggagaagaagggcgacatctggcgattgaagcccccaccggcgttgggaaaacgctctcttatttgattcccggcatcgccattgcccgcgaagagcaaaaaacgctggtggtgagtaccgccaacgtggcattgcaggatcagatttacagcaaagatttaccgctgctgaaaaagatcattcccgatcttaaattcactgccgcttttgggcgtgggcgctacgtttgtccgcgtaatctgacggcgctcgccagtactgaacccacgcaacaggatctgctggcgtttcttgacgacgaactgacgccgaacaatcaggaagagcaaaaacgttgtgcgaagctgaagggcgatctcgatacttataaatgggatggtctgcgcgatcatactgatatcgctatagatgacgatctctggcgtcgtttaagtaccgacaaagccagctgcctcaaccgcaattgttactactatcgtgaatgcccgttttttgtcgctcgtcgggagattcaggaagcggaagtggtggtggcaaaccatgcgctggtgatggcggcgatggaaagcgaagcggtattgcctgacccgaaaaatttactgctggtgctggacgaaggccatcacctgccggatgtggcgcgggatgcgcttgagatgagcgccgaaatcaccgcgccgtggtatcggctacagctggacttgttcacgaaactggtcgctacctgcatggagcagtttcgcccgaagaccatcccaccgctggcgatccctgaacgtttgaatgcgcattgtgaagagttgtatgagcttatcgcctcgttaaacaacattctcaatctctacatgcctgccgggcaggaggcagagcaccgttttgcgatgggcgaactgccagatgaagtgctggagatctgccagcggctggcaaaactcaccgagatgctgcgtggcctggcggagttatttcttaacgatttaagtgagaaaaccggcagccatgacattgtacgtctgcatcggttgattttgcagatgaaccgcgcgttggggatgttcgaggcgcaaagcaaactctggcggctggcttcgctggcgcaatcttccggtgcaccggtgaccaaatgggcgacgcgggaagagcgcgaagggcagctacacctctggtttcactgcgtgggaatacgtgtcagcgatcagctggaaaggctgctgtggcgcagtattccgcacattattgtcacctccgcaaccttgcgttcgctgaacagtttttcgcgtttgcaggagatgagtggtctgaaagagaaagcgggcgaccgttttgtggcgctggattccccctttaaccactgcgaacagggcaaaattgttattccccggatgcgcgttgagccttccatcgacaacgaagagcagcatattgccgaaatggcggcctttttccgtaagcaggtggagagcaaaaaacatctcggtatgttggtactgtttgccagcggacgggcgatgcagcgctttctcgactatgtgacggatttacgtctgatgttgctggttcagggcgatcagccgcgttaccgtttagttgaactgcaccgcaaacgcgtcgccaacggtgagcgcagcgtgctggtgggcttacagtcatttgccgaagggcttgatttgaaaggtgatctgctcagccaggtgcatatccacaaaatcgcttttccgcccatcgacagcccggtggtgatcaccgaaggggaatggctgaaaagcctcaaccgctatccgtttgaggtgcaaagcctgccgagcgcctcgtttaacctgattcagcaggttgggcgactgattcgaagccacggttgctggggcgaagtggttatctacgacaaacgcttgctgaccaaaaattatggcaagcgactactggatgcattaccggtatttccgatagagcaaccggaagtccctgaaggtatagttaaaaagaaagaaaaaacgaaatccccacgccgtcggcggcgttaatgatgtgagtcaggtaaggagtcgtaaatggactatcgcaaaatcattaaagagatcgggcgcgggaaaaaccacgcgcgcgatttagaccgggatactgcgcgcggtctgtatgctcatatgctcaatggtgaagtccctgaccttgagttgggcggcgtattgattgcgctgcgtatcaaaggagaaggggaagcagagatgctcggcttttacgaagccatgcaaaatcacaccatcaagctgacgccgccagcaggcaagccgatgccgattgtcatccccagttacaacggcgcgcgtaaacaggccaacctgacgccgttgttggcgattctcctgcacaaactcggttttcctgtggtggttcacggggttagcgaagatccaacccgcgtgctgactgaaaccatttttgaattgatgggtattacgccaacgttgcacggcgggcaggcgcaggcgaagctcgacgaacatcaaccggtgtttatgccagtcggcgcgttttgcccgccgctggaaaaacaactggcgatgcgctggcggatgggcgtgcgtaacagtgcacataccctggcgaaactggcgacgccatttgccgaaggtgaggcgctgcgtctttccagcgtttcgcatccggaatacattggacgcgtcgcgaagttctttagcgatatcggcgggcgggcgctactaatgcatggtactgaaggtgaagtgtatgctaatccgcagcgctgcccgcagatcaatctcattgaccgtgaagggatgcgggtgctgtatgaaaaacaggacactgctggtagcgagttactgccacaagcaaaagatccggaaaccacggcgcagtggattgagcgttgccttgctggcagcgaaccgattcccgaatcgctgaaaatccagatggcttgctgcctggtggctacgggtgaagcggcaactatcagcgacggcctggcgcgcgttaatcaggcattttaattcttttctcagccggatgagccatgtcatccggcttttaccccaccgcaatatgaaattcctgcatctttattgaccttcccacgcccggcgtgcagcataaaaatacaacaaacacataacataaacaggagttaaccatggaaagtggtcatcgctttgatgctcagacgctgcacagttttattcaggctgtatttcgtcagatgggtagcgaggaacaagaagcgaaattagttgccgatcatttaatcgcggcaaacctggcagggcatgattcacatggtattggcatgatcccaagctatgtacgctcctggagtcaggggcacctgcaaattaaccatcatgccaaaaccgttaaagaggcgggggcggcggtcacgctcgatggcgatcgcgcatttggtcaggtcgcggcacatgaagcgatggcgctggggattgagaaagcgcatcagcacggtattgccgccgtggcgctacataactcgcatcatatcggccgtatcggttactgggcggagcagtgtgcagcggcggggtttgtctctatccactttgttagcgtggtcggtattccaatggtcgcgccgttccacggtcgcgacagccgctttggcaccaatccgttctgtgtggttttccctcgtaaagataatttcccgctgttgcttgattacgccaccagcgccattgcatttggcaaaacccgcgtcgcctggcataaaggcgtccccgtgccgccaggttgcctgattgacgttaacggcgtgccgacgaccaatccggcggtaatgcaggagtcgccgttgggttcgctgttgacctttgccgaacataaaggctacgcccttgcagcgatgtgtgaaattcttggcggggcgctttccggcggtaaaacgacgcatcaggaaacgttacaaaccagtcccgatgccattcttaactgcatgaccactatcatcatcaacccggaactcttcggcgcgccggattgtaacgcgcagaccgaagcctttgccgagtgggtgaaagcctcgccgcatgatgatgataagccgattttgctaccgggcgagtgggaagtgaacacgcgtcgcgaacggcagaagcaggggattccactggatgcgggaagctggcaggccatttgtgatgcagcgcggcagattggtatgccggaagagacgttgcaggctttctgtcagcagttagccagctaaaaaaaagcccgtccagtggcggacgggcaaacaagggtaacataggatcaatgagggttagagcatatgcgtctgtcggcaaacagacagggaaatacttgtgctggacgtagcgtaaacgcctgatccgtccaacggttcggattttgtaggcctgataagacgcggtagcgtcgcatcaggcatctgttgccggatgcggcgtaaacgccttatccgtcctacgaattacttataaattaccgcagtaccgcttaatttattgttgttggtggcggaagtgatgctgtatccactggcaccggctgccgcggctttctcagccagtttcgcttccagggcatcgagggtggatgcgccatcggcagaaaccacgccgattttattcatgttctgtgcctgggatgccgttaccggttccgccgcgaacacgccaaatgacagagttgaaagagccatagcagcaacaacagtattgatagttttcataattaatctctcgcaggtgatttttgtataagtgacgttgtttcgtcgatgtgatgagtatcacgtttttttacgagagataaaatcgaagagaattgaccgccttgttcaaataaattgattgatatctaacctactgataaaccatttatttgttgtacttatgaacttgttttataccgcgtggcagtcacagcagcgttaaaggcacggaatgacacgcaaaatacaaattatactcgctatgcatctcgccagttgtagttaacgtaactggctgtctttcgaacctctgcgattatatcctgtataagctggtttttgtaaatctttctcctgctgacaatgaatacataagcgcacgccaggaatggcttcccgacgggcctgcgggatgggggcaccgcactcttcacattcatccaggctttcgccgcgcggaatttcaccccgagcgcgggcaatcgcatcttcaattgtactgttgatctgttcgttgacggcgtcatcgttagcccaaccggatgccatatcgacctccccatatcaatacttgtacagttaagtgtagctaatccagggacgaactcgggcagttcaagcatcagatctccgaccattcccgcagcagattatgataaagattaagcagcgacaggatctcttcactttcgccgtagcggcttttcagcgactgaatattgttgtccagttcaaacagcatggcgcgctttttatcatcgcggatcatcgactggatccacataaatgatgccactcgtacgccgcgggttacgggtgtcacgcaatgcaggctgctggagggatacaacacgagatcgcctgccgggagttttacccgatgttgtccgaaggtgtcattaacgaccagttcgccgccgtcgtagctttgtggatcgcttaaaaacagcgtggcagaaaggtcagtacgcatccagccgttttgtggatggctgcgtactgcgccatccacatggaaaccataggtttcattgttctgatagcgattaaacagcggcgtggaaagggtacgcggcaaggccgcggcaaagaataaagcatgttggttaaccgcgttcagcacctcattttgcagggcggcgtataacgtgctgcgggtgtcgacctgttgattgttcttaacttgcgcaccttgtgcgccggtggtgacgcgtccatccacccattcggcttgttccagttgttcgcgaaaacgagcgacgtcctgtggcgataacacgccgggaatgtggtacatcatacaatttctccaaaaagtggggcctgcgccccacatctgaatcagaaatgcatattggctgtgagcaagaaggttcttggctcgcccgggtgataacggtagccgctcttgttgattgaggcgacgtaatcggtatcaaacaggttgtaaacgtttagctggaagtcgagattgcgattaactcgataccccagtttggcatcggcgacccagtaaccttcggtaaacgctggcgttcccaccgcgccgtctgaacctttatgcatactgccgatatagcgtgcgcccgcgccaacagagatatcgtcggttgcctgatattggctccataaggtgaaggcgtgctccggggtatacggcagcgatgaggaaccatcctgggcaacatctttgccgtttttgatggttgctttttgctgggtatagccgccaatcacctgccacgcgggagtgatattcccggccacggatatctcatagccttcgacgcgtttcttaccgtattgcgagtaagttccgtcatcattttgctcaacttcattttcgatatcagtgcggaacagcgcggcggtgagcaacagacgtttatccagaacctgccatttggtgccaatctcgctggtgttggctttttgcggtttaaaatcggtgcggttggcactgttaccgctgccagactgcgcaagggcgaagttgttgccgcccggaggctgctgggaaacggcatagttaatatagacattgccgttttccgtcaggtgatacagcgccccggctttccagttcatcagattgcccgacttggcggtgtcgacggtggtgaccggagaaccttttgccacaccagttgggcaggtgatggcaccgcgtccgctgccgccgcaggcggtggcactgtcatattcagtatgataattatccagacggatcccgccgttcagctcaaaatcacgggtgatttgcagcgtatcaaaggcgtaaattgcgaaggtatccgtctgaccattggcgtttgcgccgttgcgcgtcaggccgccgggatgaatgctgctgtcaggatgataaatatttaccgcgggtaacgtcaccggattaacgccgtagttagtctgcgtttcacgggtaaattccacgccggtactgacatcatgaccgatagaaccggtatagaacgtcgaggtcaggttggtctggttggtgagaattttattactcacatctttggtattcgccgtgcgtgaccaggtccagctattcacatcgctggtgggctgagtaatattcgacgccccgcccataatcgccgtcatcaggtaatcctgctttacgcgcgaccaacgggtagtattgcgaatggtggtgttatcgttgatgtcgtgctcaaaacgcatggtggcggtgtcggtggtcgaatcgtcgtaatcggaatccgtgccgtaaaagttatgagtatcaacttttccggaatgattcagggccgccgttcccgcagatggggcagaatagcccggcaaaccgatggtcggaatgccgccgtctggcgtgttgtgctgggtgacatgcagataattaagatacaaacgattcgctgtaccaaggccaaaagcgacagaaggggcgacgccgtaacgctcatttttgactttgtcgcgtccggcatcgtgcgttttttcgcccattacattcaggcgcaccgcggtggtatcaccaatgacctgattgacgtccagcgtgccgcggcggaaccaggcgctgccaatactggcggaggcgtcaatgccggaatcattgcgcggctgcttgctgatcatattgatcgagcctgtcggtgcgctgcgcccgtagtcggtgccggacggccctttaatcacttcgacctgctcggtattgaaggtgtcgcgcgagacgctgccgatatcgcgaatgccatcaatataaatactgttagaggtatcggcaccacgcatataaatggcgtcgccagtggtggagttaccgttctcacccgcaaaaaacgcacccacgccggggacgtttttgagcgcgtcggtaaggttggttgcgccctgatctttaatcacttgttcagaaattaccgtcatcgtgcgggtagtatccgctaccggacgcgagaatttcggatcggcagattgttgtggcgcataaagcgaaggcgttgatgcttcgacaaccagcgtgtcatccgcgttagtttgcccttcggcggcgagtgcctgagccacaggcgtgatgccaatacaaagaccggcaaagaacgtgagcgaatgaaattgtctggcagggaaattgcgattgttttccattttgcaggtgactttttcttatatgttgaaattttcactgccacgagaaagcctctctgcggatgcgatgccactgttaatcccgtgatagtgctcgtgaaagtgataataattttgataagcattatcacttggagcgattttctatcacccattgcgcgaaaaagaaatacatttatttacattgagttcatatttgatgttttttgattacaaaacagacgaaaactgcatccagaggcgaatgcagttacgttggtggggttatttgtagatggttgcagtaccgaacatctggtcatttccgcctgcggaattaatgacataacctttcgcgccttgttcgcgcgctttttctgccagtttatcctccagatcgcttaggtttgatgcgccagttgccgaaacggtaccggcgggccgtagctgaccgctgtccaggttactcatcggttgcgcggcataagccgtgagagagattccgctcaggacggtggcaatcagtagtgtgaggcactttttcataatgacatcctcataaatacaacgggtagtgcctgataagtgtaggtcgcctgcgcgatgcaaatgacgcaaaaaattgacagagatgtgcttattttttgaacgatatatttttacaaaataagacaaatcaatgacatgcataatgctgatttttatgatgaattgccataaaccatagccatgttaaggttttggggaatgataaacgcagccagatatttaccctgtcgcgttatgcgggtatcttacgccgctgcttaaaggagaatgctatgtccgcccagaaaccggggttgcatccgcgcaaccgtcatcacagccgctacgatctcgccacgctttgtcaggtcaatcctgaactcaggcaattcctcacgcttacacccgccggggagcaaagcgtagactttgccaatccgctggcggtgaaggcgctcaataaggcgttgctggcccatttttacgccgtagcgaactgggatatccccgacggttttctctgcccaccagtaccgggccgggcggattatattcatcaccttgccgatttactggcagaagcaagcggaacaattccagcgaatgccagcattctggatatcggcgttggtgcgaactgtatttatccgctgattggcgtacatgaatatggctggcgttttaccggtagtgaaaccagcagccaggcgttaagcagtgcgcaggcgattatcagttctaatccggggcttaaccgcgccattcgtctgcgtcggcaaaaagagagtggggcgatttttaacggcatcatccataaaaacgagcaatacgacgcgaccttgtgtaacccgccattccacgattccgccgctgcggcacgggcaggtagtgagcgtaaacgccgtaacctggggctgaacaaagacgatgcactgaactttggcggccagcaacaggagttgtggtgtgaaggcggtgaagtcacctttatcaaaaagatgattgaagagagcaaaggcttcgcgaagcaggtgatgtggtttacatcactggtatctcgtggtgaaaacttaccgccgttgtatcgtgccctgacggacgtgggcgcggtgaaggtggttaaaaaagagatggcccaggggcaaaagcagagtcgctttattgcctggacctttatgaacgacgagcagcgccgccgttttgtcaatcgccagcgttaaagcgttggttcccccggcggtaacggttcagccggggtcgcgcccggagcaggcagcacctgataagtctgcactggcgcgcgaacgcccgccaggtcgaaatgttttttcacctggctgtcgagggcaaagcgtaccgtccactgtttgagtggcagcgtggtgaacgaaacacgcagtgtaaacgcggtattgcttaagccgacaatcccggcaaaattcggttcaccaataatcagcccgcgaatttcttcgttttccattaattccgctaccgcatctttcagtgcctgattggctttatcagcatcttcatggcgatcaacatcataatttgccaccaccgaaccaatgccgcggacaaagttagcaaaggtggttatcgaagaccacggaatgatgtgatacgccccggtatcctgtcgtacgcccacggagcgaatcgacatccgttccactgtgccggtcaacggcccgatagtcaccaaatctccagtgttcatgccgttttcaaactgaataaataccccggtgataatatctttcaccagcgtttgcgaaccaaacgagatagccagacctaatgccccggcacctgccagcaatggcgcgatattgacgccgatttccgacaacacaatcatgatggtgatggtactgataatcaccgccagcgcgttacgaaacagcgtaagcagggtacgcgtgcgggcgctgggtagcgggcggccatgaatatccgaagccagccggttttcgatcaaactggcgagcaccgtccagccaaccgccgagaagaaaagaatgagtgcgatacggatcaggatatctacggttttctgccccgcgccgttttgcagccagttccagaaatcgaacaatccccatgcgctcaacagcaacattaccgccacgcagactgtcagaatacgcgccgttttcagcgccgccgacagccagccattcaaccgtttttgcagctccggatagttacgctgagtatgtggcgagagagtgatggttttcgccagccagcgggaaaacataccggaaacaaacgctgcgataccaataatcgccaggctgcgcaccgttgcacccatcataaatttcaggctgttgcccggatcgaacaacgaaaagaaaaacagcacgataaaataggcgcttgccagccagtgccacaccagcgcaaaggcgcggataaacaggctgaaaaaggccagcgaatgctccgcgaagttgagcaaatgctgggtaatctcttttttattacgaaagatcaggtacaacgcccagacggtcatgcacagcataatgatgacgttcgccagcgcacctatctgtacattcacctgattagagataatcggcacggccacaatcaggccataacctatcaaactgcttaaccagctcaggcgacgactccagtaacgggcgctctcgtcctgaatcgtgaacgggcgcagctccgccacgtttgggcaaaaaatcaggcgtagtacggctttgaaaaattcaatgagggcaaaggcgttgagaaacaaactttgttggaaagcgatggtgcgactgcctgcattcaggttgtcgcttaatacctggccgacaaataatgtcagggccagtaacagcaggtcgataataaacgccccgataatcatcgccggaagctgcaaccagttgctgcgctcacgatttttttgccgcgcccactgacccattttgcgatacagcggcagtgcgcacaggcgaatcagccagtaaaaaccaaacactaataccgctaacattgaaaaatgggtcagcgcattgctgaaggtttgtggattaaacggcttatgcggggagccggtgatattgcgataaagttgcccgaagcgggcggaaagggcttcaccataatggcggctgacttcggtgaccttttgcagcacggtttgctcttcgaccagcgtcggcggcactatttttggtaccggttcagcagggggcgtagcggcaacggtgcgcaactggtcgatcaactctttacgcgaggtgtcattatccagcacatccgccagtgcgccataggccgcttttttttgttcgatatccggttccggggccggttcagtcgttgagtccgttgtcgttgtggttgtaacgccgggtatggataccgcgtgggcaggtgcgcccagcaggcagaagaggatgaacaggatccaccgcatgactcctccagtgagaaaatagagcaaaaagataagtatagatgctggaggaggggcgattttaaatgagaggaatctggtgtgcctccctttcgggtgaaagggaggaagggatattaagcaggttgctgacaacgtgcgggcttttttgccggatgcggcgtgaacgccttatccgtcctacaagttcatgcaattttaataagttgccagatatcctgtaggcctgataagcgtagcgcatcaggcaatgtgtcttattaagagacgtgctgcaaaaattcctgcaagcgctggctcggcgggttcttgatcaacacctgcggattgccatcttccgcaatccggcctttgtcgataaagatcagccgcgaagctactttctcggcaaaaccgatttcgtgggtcacgatcaccatcgtcatcccttcttcagccagatcctgcataaccttcagcacttcatggcgcagttccgggtcaagagcggaagtcggttcatcaaacagcatcattttcggcttcaccgccagcgcgcgggcaatcgccacacgctgctgttgaccaccagaaagttcggaagggtagtgatgtgcacgttctgccagaccgactttcgccagcagctcacgtgccagtttttccgcctcttctttgttcgcgccacgcacgcgtagcgggccaaacatgacgttttccagcgctgtcagatgcgggaagaggtaaaactgctggaacaccatacctgcttcctggcgaatcaggcgctcgtcaactttcggatcgttaaccttcaggccatcgacaatcagatcgccggaggtgatttcttccagtttgttgatgcagcgcagcagggtcgatttaccggaaccggacggcccgataatcaccacgacttcgccctgggcaatgttcaaatcgatattgtgcagcacctgggttgggccaaagtgcttggagacgtttttaaattcaatcacaggattttcatccttctttccagacgacgcagaataaagctcagcaccagggtaataatcagatagaacaccgccacggcgctccagatctcaagggcgcggaagttaccggcaataatttcttgcccctgacgggtcagttccgccacgccgatcacaataaacagcgaggtgtctttaatgctgatgatccactggttacccagcggcggcagcatacgacgcagtgccagcggtaaaatgacgtagcgaatggtttcccaacgtgaaagaccgagcgccagtcctgcttcacgaaaacctttgtggatagacagcaccgcaccacgcgtgatttccgcaatatacgcgccggagttgatcatgatggtgaccaccgccgcagtaaatgggtcgatgcgtaagtcgttaaacgccatcggcagggcgaaataaataaacatcacctggacgacgataggtgtgccgcggatcacttcaataaagaccagcgcgacgtggttggctatccaacctccgaaggtgcgtgcaaaacctgccagcaatccgattaccagaccgcctgccagaccgaggaccgaaatccacagggtcattttggcaccttcaatcagaagcggaatggcaggccagatggcactccagtcaaactgcatatgttgttcctgttaccgtggtgtaaataatcaaattcagggtaattaatggccccggagcgggtttgcgcccctcaccctaatcctctccccataggggagagggaactgccagtgcgttttacaggtgtagcgttattatttcggttcagtaccgaaccattttttgtagatttcgttgtaagttccgttctcgcgcagggttttcaacgcgccgttgactttgtcacgcagctcgtcgctacctttcgggaacgcaataccgtattgctgcgcttccagagagtcacctaccgctttgaactgaccgttaccggcggttttgatgaagtacagaatgtttggcgtatcgtgcagaacggcgtctgcgcggttggtgcccagttccatataggcgttatcgatgttcgggaactgacgcagatctttagttttgatgtttgctttcgcgtaatcaacggagccagtaccgctcttcacagcaaccactttcccgtcgagatctttcacgcttttcacatcgttattgttagctttcaccatcactaacaggccgcttttgtagtagccgtcagagaaatcgatcgcttttttacgctcgtcggtgatggtaatgcccgccagcgccagatcgacgtttttggtttgcagtgccggaatgatcccactgaaatccatcggcttcagttcgtaatccagcttcagctctttagcgatggcagcccacagatcaacgtcaaagcccacatatttatcgccctgtttaaattcaaacggaacgaaggcggtatccgtcgcgacaactaattttttatccgcggcatgagaagaaaccgcaaaagccagggtcagtgcagccagtgaaacttttaatacagacttcatagcatttccttttttctatccacgggacgatcccctgcgtgacattcacatatatgaaaaaatcgtgccagttttgcaactccttgatttttcgagatgcggcaaaaacgtgatgcacgatttatagggcaataccctgaagatgcaccattctggggcaccaatctggtgcgctaaaattgtgcactcaacacagtgattatttagcgtaaaacctgatgaaaaaacaatctttatgtaacgattgtgtgatgatgtggatacaaaaaatttacttaatcagctggagatagcagatggatgcactaaataagtgcgttgaggtgggctgcaaaacaaaacggcctcctgtcaggaagccgcttttatcgggtactaaagttctgcaccatcagcgatggatttattcgatgttagactcgataaaccacaggaatttatccaggtcgcgagacgcggcggtcaggatatctgcggtgtcgtcatctttcgcttcgccaatcgctttgcgtacgtcattagcgacgattgcgtaacggtcagccagttctttcaggtgatcctgaacgttgtggatgtccagcgggtaacttttcagcggggttttgctgttgataacttgagtggtccccagagctacaccgcccagctgcactgcacgttctgccatggtatccagatgatcgatcagtgcggtgcggaagccatccagcatttcatgtacggcaatgaagttagcgccgcgcatgttccagtgcgcttgtttggtaatcaaagaaagatcaataaactggataacctggcgattcagcaactctactgttgcttttttctcgctgtcggagacatcgttgcgggtataaagcagattggtcgcttttgatttaactaatttagcggtactcataatttcatatcctcttgatgttatgtcccagtaattaacgagattaagtatagcaccggctatgtgttccgctattctggctgttcctatcacactaatagtggtaacaagcgtgaaaaacaaaactaataaagattcaatgagttagatatattgataagaacaattcttatttatctgctcgccaggaattttcggaataaatatgcttttgcataattcgatatataaagacggtgtagaggaaaagtagcgagaaattctgcatggttatgcataaccatgcagaaatgtaaatttaattaatgtctaattcttttattttgctctctttgcgtactgtcagcgtagaccccattgaagcggcgatgatagcgccgagcgccagtagctgtatgggtgtcagtgtttctccgaggaaaatcatcccggaaacggcagccagcgccggttccatgctcatcagcgtaccaaatgtccgtgttggcaaacgggtgagggcaatcatttccagcgaataaggcagagcggtcgagagaatagcgacagccagacccaatggaataaccgaccagtgccagagtgcttcaccagcctgaagcgctccaattggcacgaaaattaacgctgcaatcaacgaaccaattgccaccgtcgcagggccatgttccgctcctgcgcgttgcccacttaaaatgtaaatagcccaacaagccccggcccccagtgccagcgcacagccggttaaatcgacatgggaaacgtcttgccccagcggtagcaggaaccacagaccaagaaccgccagcacaacccagacgaaatctaccgggcgacgagaagagaacagcgccaccgccagtggtccggtgaactccagcgccaccgcaatacccagcggtactgtctgaatagaaagataaaaaagataattcatcccacccagcgaaacgccgtaaaacaacagcggtaaccgttgctctttggcaaagcgcagtcgccatggcttaaagaacgcgatgaggatcagcgttcctaatgccagacgcagcgcagtgacacccggtgcgcccaccagaggaaaaagtgacttagctaacgaggctccaccctgaatagacgccatggcaacgagcaatatgactattggtaaccagaccggcattttacgtaatgaaccaggcatcctttctcccacaaatatctagacttaagtaaagcgtggagtgtactggatatacccaatgctggttgagcatttgttgaaaaaattttcccccgttttgactaaaatgcgccaggattgatggaatcattagtctggtgattaggaataatctggatgaatgacagggaaaacatgcgtaatacttacgcagttctctgaaaaagtgatttaaatttagatggatagcggtgtatggaaacgttctgttacatgaaatggcccgttagacatcacaaatcgcgaagagtttcccattaatttttgatatatttaaaacttaggacttatttgaatcacatttgaggtggttatgaaaaaaattgcatgtctttcagcactggccgcagttctggctttcaccgcaggtacttccgtagctgcgacttctactgtaactggcggttacgcacagagcgacgctcagggccaaatgaacaaaatgggcggtttcaacctgaaataccgctatgaagaagacaacagcccgctgggtgtgatcggttctttcacttacaccgagaaaagccgtactgcaagctctggtgactacaacaaaaaccagtactacggcatcactgctggtccggcttaccgcattaacgactgggcaagcatctacggtgtagtgggtgtgggttatggtaaattccagaccactgaatacccgacctacaaacacgacaccagcgactacggtttctcctacggtgcgggtctgcagttcaacccgatggaaaacgttgctctggacttctcttacgagcagagccgtattcgtagcgttgacgtaggcacctggattgccggtgttggttaccgcttctaatcactttggtgatataaaaaatccgcctctcggggcggatttttgtttttaaggtttcgggtcgaaaatatcggttccgagatggttgtaatccaccttctgtaactggaagttggtgatgtatatcggcccggctttcttctcagatataaacgggtatttgatgttaatttccttcgctttaatccccgtccactgggagaaaaagcctaagaagtcattggctgagcggcgggctttaatcacacgatgcgctttatcgtcgctggaaatgaccataaaaggcacctggaaattttgctgatatttatcatcatgggcaaggtattgcacgtctttaccgcgctctttaaaggccagaccgtggtcagaaaagtaaaccagcgagaagctgctgccgctgttgcgtaactgatcgtacagcttgcgcagtaaatcgtccgtttgcgtcatggtatagagatagcacgacgtttctttcgattgcacaaaggtttcgtattttccttgtgtcctgtcgcaggcctgcggatgtgagcccatcagatgtagaacaatcagctgcggttgcgagtgctcttgcgccagcacttgagcggtcatatccagtaacgcttcgtctttggtgtttttatctgcttcaaaattaccttctttcaggaagtacacttcatctgctcgtttggcgatgctggcgatagcggtatcgtattcgccgatttgaccctggttggaaaaccaccaggtctggaagcccgcgcgatttgccagggtgacaaagttatcctgaaactgtggtttgccatcgacaacgcgattgagcgttaagccaagcgatttctgcgtggagccactggcggcaatgtagtcagcaaatatcaaaccgttaacgctgctggcaaacggggtattgtcccagtgaccgccaaaggcaccgagggcatcgcgacgcgcgctttcaccgatcaccaccacataggtctgatacttcggcttaacggcagtgaccgtccaggtatctttcattccggaaagttttgccatccgttcttgctcttcaatcacctcgttattattgacgatgacatccttagcaaaacgaaataccggatagccagtatctttcagtttaaatacgccaccccaggccaggttttgcacgggagcaacaaaaaatgtcgccacactgaataccagacacaggctgtcgaaggtattccagcgcgctttttcattctctttttttcgcctgattgctattacgccgagcgcaaaaataaataagccgaccaggtagctgtaccacggaaaaatcgtcaggatttcggtcgactcttccatattggtggagtgcaatgccagcaatgtattgaaattaggcgcgccgtaggcctgagcaaaagggaaataacaagccgccaccagcgaactgacaccgaccagaactttttgtacgcgaggcaatgttcgccatagcaaaagcaaaatagccgtaaacgcagcggtgtagagcaaactgaaggggtaacctaagccgaggttaattaatagcgactgtaaaaagtagaacgcagtccacgggctaaatacccggctacgggtaacaagcgattctttgagggttaaattcatatgccactatcgtaacaaacgccatgtgcttaccctggcgtcaagggtcaatacctgcaagagtgcgtgaagagtggaaaggggtccgcatccgcgagccgcaatatacgcagggctgcaagaagatagagcgagccgccgttcaggtcaactactgacgaacaaatcttttgcgaaggggattgcaaatccgacaaaaagtggggtttttcagaccaaaacgcgttatgcctgcatgaaagcaggagtgaagcggcgtaccgcgacgccgctatttatcggaaggtttatcttgctgcggtttgttgttgaccatatcgcacaacatagagagcagcattaaccgtactttaaagggagaatgactaaacacgcgcatacacctcttgaactcattcataagacctcctgacttgctaatcccgtcgatccttgagggatgattgcattacatacagatatagcacaggctatattatatagctattgctaaaacgttaattttttgtaccttcgcaactctggtttacaatgtgcgcacgaaatgagaacgctatgtatgcgtcaccataatgaggaagcacaatgagtcgtcgcgcaggtacgccaacagcaaaaaaagtgacgcagttagtgaacgtggaagagcacgttgaagggttccgccaggtcagagaggcgcatcggcgcgagcttattgatgattacgttgagctgatttctgacttgatcagggaagtgggggaagctcgtcaggtggacatggctgctcgtctgggagtttcgcaaccgacggtggctaaaatgcttaagcggctggcaaccatggggctgattgaaatgatcccctggcgtggcgtgtttttaacggcagaaggagagaagctggcgcaggaaagccgcgagcgacatcagatagtcgaaaatttcttgttggtgttgggcgtcagtccggaaatcgcccgtcgcgacgcggaaggcatggagcaccatgttagtgaagagacgctcgacgcttttcgtttgtttacccagaaacacggtgccaaatgagcctgccttttttacgcacgctgcaaggcgatcgtttttttcagttattaattcttgttggtatcggattaagctttttcgtgccctttgcaccgaaatcctggcctgctgctatcgactggcacaccatcatcaccttaagcggcctgatgctgctgaccaaaggtgtggagttaagcggttattttgatgtgctggggcgcaaaatggtgcgccgctttgctacggagcgtcggctggcgatgtttatggtgctggcggcggcgctgctttctacctttctgaccaacgatgtcgcgctgtttattgttgttccgctgactatcacgctaaaaagactgtgtgagatcccggttaatcggctgattatttttgaggcgctggcagtcaacgctggttcgctactgacgccaattggcaacccgcaaaatattcttatctggggacgttctggtctttcgtttgccggatttattgcccaaatggcaccgctggctggcgcaatgatgctgacgctcctgctcctgtgctggtgttgtttccctggaaaggcgatgcaataccatacgggggtgcaaacaccggagtggaaaccgcggctggtgtggagttgtctggggctgtatatcgtctttctgacggcgctggagttcaaacaagagctgtggggactggtgattgtggcggcaggctttgcgctgctggcacgtcgcgtggtgctcagtgtggactggacgctgctgctggtgtttatggcgatgtttatcgacgtccatttactgacccagcttccagcgttgcaaggcgtgttgggtaacgtgagtcatctatctgaacccgggttatggttaacggcaatcggtttatcgcaggtgatcagtaacgtgccgagtaccatattgttgctgaactatgtgccgccgtctttattactggtatgggcggtaaacgtaggtggctttgggttattacccggatcgctggcaaatttgattgcgctacgtatggcgaacgatcgccgcatctggtggcgtttccatctctattcaataccgatgctgttgtgggcggcgttggtgggatatgttttgttagttatactcccggccaactagggtctggcaaataaaaaaggcggattatgagtccgccttttgctttaagttttgaagattaattcagacgaaccggcatcccggagcggtttttaatcgcttcatcaagaacaacctggtcaacatctggctgaccggtcactgtctgcacgctcttcgtcagggtaattggcacaatttcctgaccttcaaactgggcttcggtggtagacagcgggttatggacttcaatataacggctgccgtctggctcggtggtcgcttttaccggctcatcaataaactgtacgcgggtaccgaccggtactttctcgaacaggaatttgatgtcttcgttacgcagacgcacacaaccatgacttacacgcaggccgataccgaagttggcgttggtgccatggatagcatacaggcgaccgatatagagtgcatacagccccatcgggttatccggacctgccggaacgacagccggaagcggttcgcccgcagcgcggtactctgcgtgcattttggcggtcggcgtccaggtcgggcctgcttttttacgctcaactttggtggtccagttgataggcgtatctttgcctaactgaccaatgccgatcggcagcacgataacggtgttggtccctttcggatagtaataaagacgcatctcagcactgttaatgacgatgccttcatgaacggtatccggcaggatcagctgctgcggaatgttcagtacagtaccgcctttcggcaggaaggtatccacacccgggttcgcttccatcatattggaaagccccatctggtactcggcggcaaaatactccagcggctgagtgttaccttcaggaatggtgatcacctgattctgaccaaccaggcgactcccgtcggttggcagaggataagttaccgcagaggcggtactgcaaaagccgacaacagcgaaggccgctgcgaataatgttttcaatttcatattcatgttaagcgagattttgtgcctggcaggccattgggttgagaatattagagtattggaagcgcattataagttcattccagctcacagtgaaatcagatgtgtacgaaatcacattttttgcctttggcttgagtgtagaccttaagcgaggagcaggatcttctttcagacttatggcataatgcgcggtttgtcatatctcttttcaggatacgcctgtgttagtttccagtaacgtcaccatgcagttcggcagtaagccgttgtttgaaaacatttccgtcaaatttggcggcggcaaccgttacggcctgattggcgcgaacggtagtggtaaatccacctttatgaagatcctcggcggcgaccttgagccgacgctgggtaacgtttccctcgatcccaacgagcgcattggtaaactgcgtcaggatcagtttgcctttgaagagttcactgtgctggatacggtgatcatggggcataaagagttgtgggaagtgaagcaggagcgcgaccgcatctatgctttgccggaaatgagtgaagaagacggctataaagtggccgatctggaagttaaatacggcgaaatggacggttactctgcggaagctcgcgccggtgaactgttgcttggcgtgggaattccagtggaacagcactacggcccgatgagtgaagttgctcctggctggaagctgcgtgtgcttctggcgcaggcgctgtttgctgatccggatattctcctgctcgacgaaccgaccaacaacctcgacatcgacaccattcgctggctggaacaggtgctgaacgagcgtgacagcaccatgatcatcatctcgcacgaccgtcacttccttaacatggtctgtacccacatggcggatctggattacggcgagctgcgcgtttatccgggtaactacgatgagtacatgacggcggcgacccaggcgcgtgaacgtctgctggccgataacgccaagaagaaagcgcagattgctgagttgcaatctttcgttagccgctttagcgccaacgcctcgaaatctcgccaggcaacttcgcgcgcgcgccagattgataaaatcaaactggaagaggtgaaagcctccagccgtcagaacccgttcatccgttttgaacaggataagaaactgttccgtaacgcgctggaagtggaaggtctgaccaaagggtttgataacggtccgctgtttaaaaatctcaacctgctgctggaagtgggtgaaaaactggcggtactgggtaccaacggcgtcggtaaatcaacgctgctgaaaacgctggtgggcgatctgcaaccggacagcggcaccgtaaaatggtctgagaacgcgcgcattggttactatgctcaggaccacgaatatgagtttgaaaatgatctgaccgtgttcgaatggatgagccagtggaagcaggaaggcgatgacgagcaggcggtacgcagtattctcggtcgtttgctgttcagccaggacgacatcaaaaagccagctaaagtgctttccggtggggaaaaagggcggatgctgtttggtaagttaatgatgcagaagccgaacattctgatcatggacgaaccgaccaaccacctggatatggaatccattgagtcgctgaacatggcactggaactgtatcagggcacgctgatctttgtttcacacgaccgtgagttcgtaagctccctggcgacccgcattctggaaatcaccccggaacgcgtgatcgactttagcggtaattacgaagattacctgcgtagtaaagggatcgagtaagtgattatccgtcaccccgatactgtcggggtgacggcggctgatgacaaatgcaaaatagcctgatgcgctacgcttatcaggcctacgcagtacctgcaatatattgaatctgcaggactttgtaggccggataaggcgttaacgccgcatcaggcattaacaaagcgcatttgtcagcaatctgagtaacgtcgaatcgattttcttaatcccacatcaattcacttccattaattctcaaacatccatgcccaacgctcgcttaccgtgaatgttgaggtcggcaagcgtaaagcgtccttcccagtttgtttcatagtcctcgcgcgggaagtcgcccggcgatgcgcctttttccagtgcggccttcaccttgtgcgcgtaggcaagatttttctcgcacatcggtgccgcaggaatgtacatcacgttgccccaaccttgttgattttcaacgggggcaacggaatggatgacgtcgcagtgccaccagacggagtctccggcttcgagttttggaatgctggttaacgcctcaatcaacagtggatgccattgctctgataccggcaatactcttccgggcgctacgccgcacagttcatcctccggcacatcatcaagcagcggacgtaacagtacgtacgccatagcttcaggaatgggcacgacgtgcagcagcccctgaccaggcagcatatcagagagcgctgtccagccctggaatgtccgaaacacggaacatttggtggtgttgtccaccgtgtactcttcaacttccgtacgatgtgccgcatgccagggatcatattgcgccagattgccattaaagacgttggcgaaaacgcgctgatacgctggaagcagccagcgttccagtgccccggagtcggtatgcgctccaagacctttggaggtcgttccgggcggacggcggcggatacggtcagggtagatgacgctcacatccgggttaaaccattgctttccatcactttcaaatgtccacagacgattgagaaacgactgcgcattcgccatttcttcactctggcgggcctgcatttgcgcctgcgaccagtagatggggtaaatctcgggacgtgaagcgctgagcgtcccgaagaaattatcgccggggcctttgtagacctcgtcaaagcggttgcggtccagatagtccagcatcgactgatcccagcctagcgcttgttcgcgggggaaatggccttttatcaccgcacaaccgcgacgtttaatctgttcgcgctgctctgcagtaacatgacctgctttgatatcggcataagacagcaccggccagacggcatcgccctgtgctttgagtgcgttgatttcagccactcgcgtggcaatgtcatcgcttagctgattaaagatctgctggacgtcgccaagctgcgcccgcagcgcgtgcttcatctgacggatagctgctttgtgatcggcaggcaatgtgtcgctggtaaaagtagaagccataaccacctctcattaactttcattcgaaaccattctgatttgcatgtgacaatataagttataaataagttaatgcaagtttaatgatttgatgtgatgtacaggatgtaaaaagaagggaaaaccggagcgcacggctccggtagagaggtcagctgttaaaaggggatgtgttatccagcaccgcctgaatcacattcagcgcgccttcatgattattatcatcggtagcgtaacgggcgatttgtttaatgttttccgcagcattgcccatcgcaaaggaataacgcgccattttcagcatctccgcatcgttaccgctgtcgccaatcgctaccacattttgcggtgacagatcccagcgtttcagtaaccgcgaaataccgtttgctttatgtagaccgggaataatcaggtcgataaagccaaaaccactggtaacgggtttcataatgccatcgagcgctacgtgcagtttgtcgatcactaacgggatttgttcatccggcaggttgagcgaaaacttgaacagtacgtcgtcaatctcctgataatcttttacaggtttcaggcgatggtagtgttttgccatcagtgcgacaaatgcttcgggggcattttcgctgacatatgcactttgcagaccgcaggcgacaaaattgagttgcttatcttttagcaactcgccaataacaatccgcgattcatgtcgggtcagttcgccgtggaacaactgcttgccatgttcgtaaaccagtgcgccgttttccgcgacaaaagagatctcatcctttagctcaggaaagaatgaaataagctggtaatactgattaccgctggcaacaacgaacttaatgccgcgctttttcagttcctgatattgcgccataaaacgtggttggttgtacgttttggcgtcgttaagaaaagtaccgtccatgtctgtgacgataacttttacgctcataggtgtgctcctggctcgaaaatgaaaccgtaacagtgtaataacaatgtgacgcagagcacaaattatatttcgaatgaaagtaaggatgaaattgatgatgtgaatgatttagcccggcgacgacgccgccgggccgaggagattacagcatatgttcagtacgggcgatgatatcgtcctgagcgtctggagagagcgcggtgaagaacgcggaatagcccgcgacacgcactaccagatcgcgatactgatcgggatgttttttcgcatccagcagcgtttcgcgggaaacgatgttgtactgaatatgccagcctttatgcacttcaaagaaggtacgcagcaggatcatcagtttctgcttgtcagattcgttctccagcgttgccggattcagtttctggttgagcaacacgccgccgagaatcgctgccgtaggcagtttacccactgagccaatgaccgcagtagggccaagatggtcagtaccggaggccgggcttgcgccttctgccagcggggtgtgggctttacgcccgtccggtgttgccatagtctgcgcgccaaacggtacgttagcggagattgatgacgtacccgcgtaatagttgccgccaaccggaccacgaccgtagcgcggattatggtactgtttcagttcgtcgatataggtctgataagcgcgagccagcagcgtatcgacagtatcatcgtcgttgccgtacttcggcgcaccgttaatcagccgctgacgcagctgctcgtgagtcaggccgtcgaagtcatctgccagtgcggcagcaagctgttgctgaccaatcgcaccttgttcaaacaccagtttcttcactgccgccaggctgttgccgaggttggcaatgccgacctgcaggccagaaacccagtcatatttcgcgccgccttgcttgatacttttcgctcgctcaatacagtcatccaccagcgccgagcagagaatatcgtgcacgttctcttccagcatggtgtcgacgacatattcgatttcgattgatttgcgggtgtagtaacggatttgcgtatcccacgcgtccatcacttcatcgaagttgttgaagttacctgccgacaacgctttttcttgtggcaggaacactttgccgctggtggcatcatgcccgccttccagcgccgccagcatcacgcgggcgaagttgataaagctcatgccggtacagcgatagccccatttgccaccgacggcggtttctatacaaccaatcgctgcgtagtcataagcgtcctgcggttcaataccgagtttaataaattccgggatcacgatttcgtcgttgttgaacgccggcatcccgaagccgcaacggatcacctgtacgcaggcgtcgaggaaatcgttgctcattcctgcatggtaacgcacgctgaggttaggctgagtggaacgcaggcgaccgcaggattcgaggatcgcgtaagagagtggattcaccgcgtccattggttgaccatcaaccagattttgcccgccaatagtgacgttctgatacagcggacttcccgcagaggcttttgagtgtgagccggagcggatcttgttcacttccagcagtttcagccagcagctatgcagcatctcgatggcgtgttcgcgatccagcgtctggttgagttcaacgtcgcggcgatagtacgggtagagatactggtccatacgaccaaacgatactgagtgaccgttagattcgatctgcaaaatcaactggatgaagtaacacagttgcagcgcctgccagaaagtctgcggcggctggtgggcgataagatcgcagttttctgccatcgccagcagttcatcgcgacggctttcgcgggtttcggtcgcggccatttcacgcgccagggcagcgaaacgttcaatgtgttcactgactgccaccagcacgatatcaatcgctttcaggaattgctcaccgtgtaaatcttccagcaccgtcaggttgatgcgcgagcgacgttccgctacttcctcgcgcagaccatcaagccctttttccagcagcagcgggaaattcaccgccaggtgcgcatcgccggaggtcatattgccttccgctttaatgattccggtcgccagcagacctttttgctcatcggtaaacatgccgtagcagcgatcctgtacggtctgaccgcgccaccacgggcacacttcatgcagaacgcgtttgttctcttcgctcaccgcaaagccagcaccgggacgatctgccagatcatcaatctctttttcgatccacgagacagtatattccgggaagatcggcgcggcgcgaacttcgcttgcctggttgccaatgatcaactcatcgtgtttgatccagatggtgcgattcgccaggtgatgcgccagtgccagcgcgcgacgtaccgggatcggcttatcgagatgttgttgatacatctcggtatagtgctgcgcgcgctcggtacagactggcggtttcacaatatgcaccagcgcatttttgtgcgctttaatgcggtcgctgagcgtgtccagtttcagtgtggtcatggttgttatcctcgtaaggtcgcggttaaccctttctggcaggcatactgctgggcaaagtcgagcagttctggcgcatcaagcggtttttccggggcgtcatagggcagattaagtaagtgatatttgttgatgcccagcgtgtggtagggcagaaaatgaatttcgccaacgtgcagctcgtcggcggcaaaatcggtaatggcttttacagaggtttcgtcggcattaaagccctgaatcagcggcacgcggataatgatttttttgcccgctgcggcgagttttttcaggttatccagcactctggcggcgttaccgtcggtccactgtttaaacggcgcgtcggcaacgtgttttaaatcggcaagaaacagatcgatatagggcagagaaggggcgatatatttccacggcacatgcagacaggtttctaccgcagtatgaatgcctgcctcgtggctggcttgcagtagcgccatcgccatttccggctgcataaagggctcaccacccgaaagcgttaaaccgccgccgctgcgatcgtaaaacggtttatcgcgcagaacggtcgtcatgatctcctcaacgcttttcacttcaccacacacggttaatgcctgtgtcggacagcagtcggttaacgccgtcagatgctccggggttaacttttcccgatgaataagcaaaccattcagcgcgcgctcaatcacttccggcgcggccttagcgcacagctcgcagccttccagacacagtcgtgcgtcatacagcagatcctgcgtgcgggcgcggctttccgggttctgacaccagcggcagcccagcgaacagcctttaagaaatacgaccgtgcggataccggggccatcatgggtcgagtagcgctgaatattgaaaatcatagttgcctctctatttcgttcaagcattaaaatactttcgaatgaaagttagattgatgtgcgtcaactgttcagagagttttcccgtgatagtctacattcagacaaaaagtacattttgaggatggttatggaactgtatctggatacttcagacgttgttgcggtgaaggcgctgtcacgtatttttccgctggcgggtgtgaccactaacccaagcattatcgccgcgggtaaaaaaccgctggatgttgtgcttccgcaacttcatgaagcgatgggcggtcaggggcgtctgtttgcccaggtaatggctaccactgccgaagggatggttaatgacgcgcttaagctgcgttctattattgcggatatcgtggtgaaagttccggtgaccgccgaggggctggcagctattaagatgttaaaagcggaagggattccgacgctgggaaccgcggtatatggcgcagcacaagggctgctgtcggcgctggcaggtgcggaatatgttgcgccttacgttaatcgtattgatgctcagggcggtagcggcattcagactgtgaccgacttacaccagttattgaaaatgcatgcgccgcaggcgaaagtgctggcagcgagtttcaaaaccccgcgtcaggcgctggactgcttactggcaggatgtgaatcaattactctgccactggatgtggcacaacagatgattagctatccggcggttgatgccgctgtggcgaagtttgagcaggactggcagggagcgtttggcagaacgtcgatttaaccggacgttctgcatcctcataaattgctgatgacgtggcggagtgccgcgtcttatcaggcctggaggtggcaattactgcccacacacctcacaccccggattacgcatcagtttcatttcgcgaaactgacaggtcatcgcatcgtacatgacgattttcccgctggccggtttgccataacctgccagcattttgatcgcttccattgcctgcaacgaaccaattacgccgatcaacggtgccattacgcctgcttccacgcaggttaatgcattttcaccaaacaaacggctaaggcagcgatagcacggttcaccgtcctgataagtaaagacggtgatttgaccttccatacgaattgccgcgccggaaaccagcggtaccttcgcggcaaaacagcctgcgttcagttgattacgtaccgcaacgttatccgtacagtcgagcaccagatcgtgttcagcaatcaatgctgcaagttctgcgtcatccagcagtgcattgactggcgtaatcgcgatatgtgggttgatccgcgtcagggcgtcacgggcggattccaccttcggttgcccgaccgtggcatcactgtgcagtgtctggcgttgcagattcgagagcgaaaccgtgtcgaagtcgagcagcgtcaggttaccgacaccggcgcttgccagatactgcgaggctgcacagccgaggccgcccaggcccactatcagcacgcgagaatctttcagcgcctcctggccgtcaaaatcaaagccgcgcagaatgatttgccggttgtagcgcagcatctcctgatcgctgagttccgccattacaggcctccgaacaacgcgttaaacggttctacttccacccattcgcccacttccacattgccgcgatcgcgttccagcacgataaagcagttgccgaggctaaaggagctaaatatatgtgaaccctgatgtccggtggtcgtcacttccagttcgccatcggcgttgcgttgcagcacgccgcgctggaaatcaagacgtcctggcgtttttttcaggcgggacgctgtgcgtacgcgctggcgcgcgggcaggccgctggcggtgttaccgcttagttttgccagcaaaggctgtaccagttgatagaaggtcagcgtcgctgaaaccgggttgcccggcaggccgcagaaccagctattgctgagtttaccgaacgcgaacggtttacctggtttaatcgccagcttccagaaggcgatctcccccagctcttcaagaatcgttttggtgtaatccgcctcacccactgaaacaccgccggaactgatcaccacatccgcctggctgtcggcttcaataaatgcggcgcgcagggcatggggatcgtcgcggataatccctaagttaattacctcgcatcccaactgttctaacatcaggtgtacggcgagacggttggtatcgtagatttggccgtcgcccagcggctgaccgggcaactggagttcatcaccggtagaaaaaagcgctacacgcactttacgaatcaccggaacttcggcaatccccagtgaagcaattactggcagctctgcggtagtcaggcgagttcccgccgggaaaacaaccgcacctgcagagatatcttcaccgcgacggcgaatattttgcccgctacgcacttcagcagtaaaacgcacgccattgtccatttgttcagtctgctcctgcatcaccaccgcttcgcagccttccggcaccggcgcaccggtcataatacgaatgcaggtacccgcaggccattcaccatggtatggctgaccggcaaaggatttaccggcaacgggcagcggttgcccggaggcaatatcggctaaacgcaccgcgtagccgtccattgcggagttatcaaaccccggaacatcaagcggcgaaacgacatcgctcgccagaatacgaccaaaacactgtaccagtggcagcgtttcctgggcggtcagtggggtgacgcgagaaagcatctcattaagcgcggtgtcgagcgacatcaatccggtggtaaattccatgaaaacactcctgcggaggcaaaatcgaatttgcctattatgtcagaaaaacgccacagactgtatgccacctcgggcgtagcgctgggtcctgcctttacatgccatatccatctttctatattcaaaaattgaatgagtaattcataaaaattctgatatttatagcaaaagtggcgaaccacccttaatggacgaatactatgggcaaagcagtcattgcaattcatggtggcgcaggtgcaattagccgcgcgcagatgagtctgcaacaggaattacgctacatcgaggcgttgtctgccattgttgaaaccgggcagaaaatgctggaagcgggcgaaagtgcgctggatgtggtgacggaagcggtgcgtctgctggaagagtgtccactgtttaacgccggaattggcgctgtctttacgcgtgatgaaacccatgaactggacgcctgtgtgatggatggtaacaccctgaaagccggtgcggtggcgggcgttagtcatctgcgtaatccggttcttgccgcccggctggtgatggagcaaagcccgcatgtgatgatgattggcgaaggggcagaaaattttgcgtttgctcgtggcatggagcgcgtctcgccggagattttctccacgtctttgcgttatgaacaactactggcagcgcgcaaggaaggggcaaccgtcctcgaccatagcggtgcgccactggatgaaaaacagaaaatgggcaccgtgggggccgtggcgttggatttagacggcaatttggcggcagccacgtccacaggcggaatgaccaataaattacccggacgagttggcgatagtcccttagtgggtgccggatgctacgccaataacgccagtgtggcggtttcttgtaccggcacgggcgaagtcttcatccgcgcgctggcggcatatgacatcgccgcgttaatggattacggcggattaagtctcgcggaagcctgcgagcgggtagtaatggaaaaactccctgcgcttggcggtagcggtggcttaatcgctatcgaccatgaagggaatgtcgcgctaccgtttaacaccgaaggaatgtatcgcgcctggggctacgcaggcgatacgccaaccaccggtatctaccgtgaaaaaggggacaccgttgccacacagtgatgaacttgatgccggtaatgtgctggcggttgaaaatctgaatattgcctttatgcaggaccagcagaaaatagctgcggtccgcaatctctcttttagtctgcaacgcggtgagacgctggcaattgttggcgaatccggctccggtaagtcagtgactgcgttggcattgatgcgcctgttggaacaggcgggcggtttagtacagtgcgataaaatgctgttgcagcggcgcagtcgcgaagtgattgaacttagcgagcagaacgctgcacaaatgcgccatgttcgcggtgcggatatggcgatgatatttcaggagccgatgacatcgctgaacccggtatttactgtgggtgaacagattgccgaatcaattcgtctgcatcagaacgccagtcgtgaagaagcgatggtcgaggcgaagcggatgctggatcaggtacgcattcctgaggcacaaaccattctttcacgttatccgcatcaactctctggcgggatgcgccagcgagtgatgattgcgatggcgctgtcatgccgcccggcggtgctgattgccgatgagccaaccaccgcgctggatgtcactattcaggcgcagatcctgcaattaatcaaagtattgcaaaaagagatgtcgatgggcgttatctttatcactcacgatatgggcgtggtggcagagattgccgatcgggtactggtgatgtatcagggcgaggcggtggaaacgggtaccgtcgaacagatttttcatgcaccgcaacatccttacacccgtgcgctgttagctgctgttccgcaacttggtgcgatgaaagggttagattatccccgacgtttcccgttgatatcgcttgaacatccagcgaaacaggccccccccatcgagcagaaaacggtggtggatggcgaacctgttttacgagtgcgtaatcttgtcacccgtttccctttgcgcagcggtttgttgaatcgcgtaacgcgggaagtgcatgccgttgagaaagtcagttttgatctctggcctggcgaaacgctatcgctggtgggcgagtctggcagcggtaaatccactaccgggcgggcgttgctgcgcctggtcgaatcgcagggcggcgaaattatctttaacggtcagcgaatcgataccttgtcacccggcaaacttcaggcattacgccgggatattcagtttatttttcaggacccttacgcttcgctggacccacgtcagaccatcggtgattcgattatcgaaccgctgcgtgtacacggtttattgccaggtaaagacgcggctgcacgcgttgcgtggttgctggagcgcgtgggcctgttacctgaacatgcctggcgttacccgcatgagttttccggcggtcagcgccagcgcatctgcattgctcgcgcgttggcattgaatccaaaagtgatcattgccgacgaagccgtttcggcgctggatgtttctattcgcgggcagattatcaacttgttgctcgatctccagcgtgatttcggcattgcgtatctgtttatctcccacgatatggcggtggtagagcggattagtcatcgtgtggcggtgatgtatctcgggcaaattgttgaaattggtccacggcgcgcggtcttcgaaaacccgcagcatccttatacgcgtaaattactggcggcagttccggtcgctgaaccgtcccgacaacgaccgcagcgtgtactgctgtcggacgatcttcccagcaatattcatctgcgtggcgaagaggtggcagccgtctcgttgcaatgcgtcgggccggggcattacgtcgcacaaccacaatcagaatacgcattcatgcgtagataacattcaggcggagaataaaatggcaagagctgtacaccgtagtgggttagtggcgctgggcattgcgacagcgttgatggcatcttgtgcattcgctgccaaagatgtggtggtggcggtaggatcgaatttcaccacgctcgatccgtatgacgcaaatgacacgttatctcaggccgtagcgaaatcgttttaccaggggctgttcggtctggataaagagatgaaactgaaaaacgtgctggcggagagttataccgtttccgatgacggcattacttacaccgtgaaattgcgggaaggcattaaattccaggatggcaccgatttcaacgccgcggcggtgaaagcgaatctggaccgggccagcgatccggcgaatcatcttaaacgctataacctgtataagaatattgctaaaacggaagcgatcgatccgacaacggtaaagattaccctcaaacagccgttctcagcgtttattaatattcttgcccatccggcgaccgcgatgatttcaccggcagcgctggaaaaatatggcaaggagattggtttttatccggtgggaaccggaccgtatgaactggatacctggaatcagaccgattttgtgaaggtgaaaaaattcgcgggttactggcagccaggattgcccaaactggacagcataacctggcgtccggtggcggataacaacacccgcgcggcaatgctgcaaaccggtgaagcgcagtttgctttccccattccttacgagcaggccacactgctggagaaaaacaaaaatatcgagttgatggccagtccgtcaattatgcagcgttatatcagtatgaacgtgacgcaaaagccgttcgataacccgaaggtccgtgaggcgctgaattacgccattaaccgtccggcgctggtgaaagttgcctttgcgggctatgcaacgccagctactggtgtggtaccgccaagtatcgcctacgcgcaaagttataaaccgtggccttacgatccagtgaaagcgcgcgaattactgaaagaggcgggatatcccaacggtttcagtaccacgctgtggtcgtcacataaccacagcaccgcgcagaaagtgctgcaatttacccagcagcagttagcgcaggtcgggattaaagcccaggtgactgcgatggatgccggacagcgggcggcagaagttgaaggtaaagggcaaaaagagagcggcgtgcggatgttctacactggctggtcggcttcaaccggcgaagcggactgggcactatcgccgctgtttgcctcgcagaactggccaccgacgctgtttaataccgcgttttacagcaataaacaggtggatgacttcctggctcaggcactgaaaactaatgatccggcggaaaagacccgcttatataaggcggcgcaggatatcatctggcaagaatcgccgtggatcccgctggtggtagaaaaactggtgtcggcacacagtaaaaacctgaccggtttttggatcatgccagacaccggcttcagctttgaagacgcggatttgcaataagcaacgcagggagtggaatgcttaattacgttatcaaacgcttactggggttgattccgacgctgtttatcgtctcggtgctggtgtttttatttgtccatatgctgcccggcgatccggcgcgattgattgccgggcccgaagctgatgcgcaggttatagaactggtgcgtcagcagctggggttggatcagccgctgtatcaccagttctggcactatatcagcaatgctgtgcagggggattttggcctgtcgatggtgtcgcgtcgtccggttgccgatgagattgccagccgctttatgccaacgctgtggctgaccataaccagtatggtctgggcggttatatttggtatggcggcgggaattatcgccgccgtctggcgtaaccgttggccggatcgattgagtatgaccattgcggtgtcggggatctcgtttccggcatttgctctggggatgcttttaattcaggtattctccgttgaactgggctggctgcctaccgtgggagcagacagttggcagcactacattttaccctccctgacgctcggcgcggcagtggccgccgtgatggcgcgctttacccgcgcgtcgtttgtcgatgttttaagcgaagattatatgcgtaccgcgagggcgaaaggggtgagcgaaacctgggttgtcctcaaacacgggctacgtaacgcgatgatcccggtagtgaccatgatgggcttacagtttggctttttgctcggtggttccatcgttgtggagaaagttttcaactggccgggacttggacgcttactcgttgactccgtagaaatgcgtgattacccggtgattcaggcggaaattctgcttttctcgctggaatttattcttatcaacttagtggtggatgtgctttacgccgccattaacccggctatcaggtacaagtaaggatgcgactatttaactggcgacgtcaggcggtgttaaacgccatgccactggtcaaacctgaccaggtacgtacaccgtggcatgaattctggcgacgatttcgccgtcagcatatggcgatgaccgccgcattattcgttattttattgattgtggtggccatttttgcacgctggatcgctccctatgacgccgaaaattattttgattatgacaatctgaataacggaccttctttgcagcactggtttggcgtcgattcactggggcgtgacattttcagccgtgtcctggttggtgcgcaaatctcgctggcggcgggcgtgtttgccgtgtttatcggtgcggcgatcgggacgttgctgggcttgctcgctggatattatgaaggctggtgggatcggctgatcatgcgcatttgcgatgtgctgtttgccttcccgggtattttactggcgatcgctgttgttgcggtgttgggaagcggcattgctaacgtgattattgcagtcgccattttttccatccccgcgtttgcccgcctggtgcgcggcaacacgctggtgttgaaacagcaaacctttattgagtcagcacgcagtattggtgccagcgatatgaccgttttgttgcgtcatatcctgcctgggaccgtctcttctatcgtggtgtttttcaccatgcgcattggtacctcgattatctctgccgccagcctctcatttctcggcctcggtgcgcagccgccgacaccagagtggggagcaatgctcaatgaggctcgagcggatatggttatcgcgccgcatgtcgctgtttttccggccctggctatttttctgaccgtactggcgttcaatttgttgggcgatggtttacgcgatgcgctggatccgaaaattaaaggatagttacgtttgaatattgcttgaaagggtaatcacctcacaggaaattattgccctaagcaagtgttgtaactttctgctgattttgtagaatcgggtaatttggttaaaaagccgcagcaagggacaatttttgcagcggcacagcgttcagatagttattttgttaaatgtattaacatgctgagtttatacgaaaagataaagataaggctgataattttatttttattggcagcactgtcatttattggtctttttttcatcattaactatcaactggtatcggagcgcgcggtaaaacgtgccgatagccgctttgaacttattcagaaaaacgttggctatttctttaaagatattgaacgttcggccctgacattaaaggactcactgtatttattaaaaaatacagaggagattcaacgcgccgtgattcttaaaatggaaatgatgccatttttagactcggtgggactggtacttgatgataataaatattatcttttttcgcggagggcgaatgataaaatcgttgtttatcatcaggaacaagtaaatggaccgcttgtcgacgagtcagggcgggttatttttgccgattttaacccatcgaaacgaccgtggtcggtggcttcagatgactctaacaacagctggaatccggcatacaattgctttgatcgtccgggtaaaaaatgtatctcttttacgctacacatcaacggcaaagatcacgatttgttagcggtggataaaattcatgtcgatttaaactggcgatatctgaacgagtatcttgatcaaatcagcgctaatgatgaagttctatttttgaaacaaggccatgagatcattgccaagaatcaactcgctcgtgaaaaactgattatttataatagcgaaggtaattataatattattgattctgtcgatactgaatatatcgaaaaaacatcagcggtgccaaacaacgcattattcgaaatctatttttattatcctggcggtaatttattgaacgcatcagataaacttttttatctgccgtttgcgttcattattatcgtattgctggtggtttatttaatgaccactcgtgtgttccgtcggcaattttctgaaatgacagagctggttaatacgctggcgtttttgcctgactcaacggatcaaatcgaggctctgaaaattcgtgaaggcgatgcgaaagagattatcagcatcaaaaattcgatcgcggaaatgaaagatgccgaaattgaacggtcaaataaattgctctcactgatctcttacgatcaggaaagtggttttattaaaaatatggcgattattgagtctaacaataatcagtatctggctgtggggatcatcaaactgtgtggtctggaagccgtggaagcggtgtttggtgttgatgagcgcaataaaatcgtcaggaaattgtgtcagcgaattgccgagaaatatgcgcaatgctgcgatatcgtgacattcaatgccgatctctatttacttctgtgtcgggaaaatgtacagacatttacccgtaaaatagcgatggtaaacgattttgacagcagctttggctaccgcaatctgcgcatccataagtctgccatttgtgaacctttgcagggggaaaacgcctggagttacgcagaaaaactgaaactggcgatttccagtatccgtgaccatatgttctcagagtttattttctgtgatgacgcgaaactcaacgaaatagaagagaatatctggattgcgcgtaatattcgccatgcaatggaaattggcgaactattcctcgtctatcaaccgatcgttgatattaacacccgcgccattctgggcgcggaggcgttgtgccgttgggtgtctgcggagcgggggatcatttcaccgctgaagttcattaccattgctgaagatatcgggtttatcaatgagctgggttatcagattattaaaacggcaatgggtgaattcagacattttagtcagcgtgcgtcgctgaaggatgatttcttactgcatattaatgtttcgccctggcagttaaacgaaccacactttcatgagcgttttaccaccatcatgaaagaaaatggcctgaaggcgaacagcctctgtgttgagatcactgaaaccgtgatcgagcgaattaatgaacatttttatctcaatattgaacaactgcgtaaacaaggggtacggatatcgattgatgactttggcaccggtttgtcaaacctgaaacgtttttatgaaattaatccagacagcataaaggtggactcgcaattcaccggcgatattttcggtactgcgggaaaaattgtgcgcattattttcgacctggcacgctataaccggatcccggtgattgcggaaggcgtagagagcgaagacgttgcgcgcgaattaatcaaattaggatgtgttcaggctcaggggtatctgtaccagaaacccatgccattctccgcctgggataaaagtggaaaattagtaaaagagtagtttacgtatgtccagaatcaataagttcgtacttacagtcagtctgctgatttttatcatgatttcagcagttgcctgcgggatctacactcaaatggtaaaggaacgggtgtatagcctgaaacagtccgttattgatactgcttttgcggtggcaaatattgctgaatatcggcgtagcgtggcaattgatcttatcaacacgctaaatcccacggaggaacagctgttggttggtttgcgcacagcttacgccgactcggtttccccctcttatttgtacgatgtcggtccttatctgatttccagtgacgaatgtattcaggtaaaggagttcgagaaaaattattgtgcagatattatgcaggttgtgaagtatcgacatgtcaaaaatacagggtttatctcttttgacggtaaaaccttcgtctattacctctatccggtaactcacaatcgtagtctgatatttttgcttggtctggagcgtttttctttactgtcaaaatcgctggcgatggacagcgagaacctgatgttctctctatttaagaacggtaaaccggtgaccggtgatgaatataatgctaaaaacgccatcttcaccgtttcggaagcgatggagcacttcgcctatttgccgaccggattgtatgtatttgcgtataaaaaagatgtttatttgcgggtttgtacattgattattttctttgccgcattggtggcagtgatatcgggtgccagttgcctctatctggtacgcagagtgattaatcgtggtattgtggagaaagaagccatcattaataaccattttgaacgcgtactggatggcgggcttttcttttcggctgccgatgtcaaaaaactctacagtatgtataactcggcgttcctggacgacctgaccaaagcaatgggcagaaaatcctttgacgaagatttaaaagcgctgccggaaaaaggcggttatttgtgcctgtttgacgtcgataaattcaaaaacattaacgacaccttcggtcatttgctgggcgatgaagtgttgatgaaagtggtgaaaatccttaaatcacagatcccggtagataaaggtaaagtctaccgcttcggcggtgacgaatttgcggtgatttatacgggtggaacgctggaagagttgctatcgattctaaaagaaatcgttcatttccaggtgggaagcattaatttaagtaccagtatcggtgtagcacattcaaatgaatgtcctaccgtcgaacgcttgaaaatgctggcggatgagcggctgtataagagtaagaaaaacggcagggcacagattagctggcagtaatcattattcgcaggccggacaaatgattttgcccggcctgaattaattaaacccggctaccccacaaatcgtactcatcggcgtgctcgactttcacacgcaggatatcacccggcttaacgttggtttcaccattgagataaaccgcgccgtcgatttccggtgcatctgccatgctgcgaccaatcgcgccttcttcgtccacttcgtcgataatcaccagaatttcacggcccactttctcttgcaggcgctcggcggaaatctgctgctgcagctgcatgaaacggttccagcgttcttctttaacttcttccggaacctggtcaggcagggcattggcgtctgcaccttcaaccgggctgtatttaaagcagccaacgcgatccagacgcgcttctttcaggaagtcgagtagcatctggaaatcttcttctgtctcgccagggaagccgacaataaaggttgagcgtagggtcagttccgggcagatttcgcgccactgtttgatgcgcgccagttggcgatctacagaacccggacgcttcatcagtttgagaatgcgcgggctggcgtgctgcaacggaatgtccagatacggcaggattttgccttctgccatcagtgggatgacgtcgtccacatgcggataagggtaaacgtagtgcagacgtgtccagatccccagtttcgataactgttcgcacaggctgaccatgctggtttttaccggctcgccgttgtggaagccagtacgatgtttaacatcaacgccataggcggaagtatcctgcgagatcaccagaatctctttaacgcccgcatctaccagacgtttcgcttcacttaacacttcgccaatcggacggctcaccaggtcgccgcgcatagacggaataatgcagaaggtgcagcggtgattacagccttcagaaattttcagataggcataatgacgcggcgtcagtttcacaccttgttctggcaccaggctcaggaatgggttgtgtttcggttttggcacgtagtgatgaacgtgctccagaacctgctcatagctatgaggcccggtgatttccagcactttcgggtggacttcgcggatctgatcttcttttgcccccagacaaccggtcacaataaccttgccgttttcattcaacgcttcaccaatggcttccagtgattcttgtaccgcgctgtcaataaagccgcaggtgttgacgatcaccatgtccgcatcgtcatagctcggtaccacgtcataaccttcagtgcggagttcggtgagaatacgctctgaatcaacaaggtttttcggacagccaagggaaacaaagccgattttcggctggggagttactttgctcatagcttaaaaaatattcagttacaggaaaggtcagggcagggattctacagagttctggataaaatttgtatcgcaatctcattcgctggcggaggcgaaggaaatgtaaattttgttaattcggcgtgaagaattgatcctggacagcattttgctcaaaaaatagccatactatttaattgcaacaaggctgggaagaggaggatcgaagtatgttcgttgacagacagcgaatcgatctgctgaaccggttgatcgacgcacgcgttgacctcgccgcatacgtgcaactgaggaaggcaaaaggatacatgtccgtcagcgaaagcaatcatctacgagataacttttttaaactgaatcgcgaactgcacgataaatcgctgcggttgaatcttcatctggatcaggaagagtggagtgctcttcatcatgctgaagaagcattagcgacagccgcagtatgtttgatgagtgggcaccatgattgcccgactgttattaccgtcaacgccgataagcttgaaaattgtctgatgagcttaacgctgagtatccagagcctgcagaagcacgccatgcttgagaaggcctgaaaactaagggggagaaagcgtctcccccttcatgtttaagtttttgtaaaaatgaatttgttatctcctccactgactacgctttaagccagagtcaatccggaggcgttatgcatcgacaatcctttttccttgtgccccttatttgtctttcttccgctctctgggcggctcctgcaacggtaaatgtcgaagtactgcaagacaaactcgaccatccctgggcactggcctttttacccgataatcacggtatgttaatcactctgcgcggcggcgagttgcgtcactggcaagcaggaaaaggattatctgcgccgctttccggagttccggacgtttgggcgcacgggcagggcggcctgctggacgtggttttagcgcctgattttgctcagtctcgccgcatctggttaagttattccgaagttggcgatgatggcaaagccggaactgctgtgggttatggccgcttaagtgatgatctctcaaaagtgaccgacttccgcaccgtctttcgccagatgccaaaactgtctaccggcaaccattttggcgggcggctggtattcgacggtaaaggttatctttttattgctctgggcgaaaacaatcagcgcccgacggcgcaggatctggataaattacagggcaaactggtgcgtctgaccgaccagggcgaaatcccggatgataatccttttataaaggaatccggtgcgcgcgccgagatctggtcttatggcattcgtaatccgcaaggaatggcgatgaatccgtggagtaatgcactgtggctgaatgaacatggcccgcgcggtggtgatgaaattaatatcccgcaaaaaggcaaaaactacggctggccgctggcaacctggggaatcaactattcaggctttaagataccggaagcgaaaggggagatcgtcgccgggaccgagcaacctgttttttactggaaagattcgcccgctgtgagcggcatggccttctataacagcgataaattcccccagtggcagcaaaaattatttattggcgcgctgaaagataaagatgtcattgtgatgagcgtcaacggcgacaaagtgacagaagatggccgtattttaacggacagagggcagcgaattcgtgatgttcgcactggacccgacggttatttatacgttctcaccgacgagtccagtggggaattacttaaagttagcccacgcaattagctaacgggaatcatcaccactttgcgcactgcggggcgttcagtgagttgctgataccagcgttgcagatttggacgcggtgtccaggtcaggccaacgttaaacaaattgtagatgaacggtgcgatagcgatatcgcccacaccaaactcgtcgccagagaaccattttacttttgccagttccgcatcgagcagggcaaacagggcgtcgcactctttgcaactggcatcaatggcggcctgatcgcgctcttccggtggtgttctgactaatcccatcaggatcccgcgatgagcattactgagcgtctggtttgcccagtccatccatttttccgcttccgcacgacgtgccggtgagtcgatccacaggcgtttttgcccgtactgtgccgccagatagcggacaatggcgtttgattcccaaagaatgagatcactttcgtcgtcacgcaacaacggcaccagcccgttagggttcatcgccagaaaatcagcatcgtgatttatcccaaactcacggcccgcgagaatttgctcataaggtagttccagttcttcgagcgtcagcaatactttttttacgttagttgaattattccgaccccacagcgtaatcatactcaccccttttccgacaggcagccacaggctgaacaggactccgatggtgaagtaaagttaacttttaagcaacagctggcaaaaaaatgacaccagaagcagcgaagcggcaggatattgcataaactttaaaaactttaccaacttacggtttctttaagtttgtgtgtgcgttattaatcaccaaacttatcatacggcgatataacgtattttttttgaatggatactcgggtggcatttatgacgcaatactcctctctccttcgtggtcttgcagcgggttctgcatttttattcctttttgccccaacggcattcgcggcggaacaaaccgttgaagcgccgagcgtggatgcgcgtgcatggattttaatggattacgccagcggtaaagtgctggcagaaggcaatgcggatgagaaactggatcccgcgagcctgactaaaatcatgaccagctatgtggttgggcaggcgcttaaggccgataagattaaactcaccgatatggtgacggtcggtaaagatgcctgggcgacgggaaatccggcactgcgtggttcatcggtaatgttcctcaaaccgggcgatcaggtttcggtggcagacttgaacaaaggtgtgattatccagtccggtaatgacgcctgtattgcgctggctgattacgttgccgggagccaggagtcatttattggtctgatgaatggttatgccaaaaaactgggtctgaccaacactaccttccagacggtgcacggcctggatgcgccggggcagttcagcaccgcgcgcgatatggcattgctgggtaaagcattgatccacgatgtgccggaagagtacgccattcataaagagaaagagttcaccttcaacaaaattcgtcagcctaaccgtaaccgtctgctgtggagcagcaatctgaatgttgatggcatgaagacaggaaccacggcaggcgcgggatataatctggttgcttcggctacccagggcgatatgcgtttaatctccgtagtgttgggggcgaaaaccgaccgtatccgttttaatgagtctgagaaattattgacctggggtttccgcttctttgaaaccgtgacgccaattaaacctgatgccacctttgtgactcagcgcgtctggtttggtgataagagcgaagtgaatctcggggcaggtgaagcgggctcagtgaccataccgcgtgggcagctgaaaaacctgaaagcgagttatacgttaacggaaccgcagcttaccgcaccgctgaaaaaaggtcaggttgtcgggaccattgatttccagcttaacggtaaatccattgagcagcgtccgctgatcgtgatggaaaatgtggaagagggcggattctttggtcgggtgtgggatttcgtgatgatgaaattccatcagtggttcggcagctggttctcttaatcttctgataaccggatggcgcgaaacgtcatccggttatacgtcattaatacatcaacttaatgcgctgcgtctgcgcgtacttcacatactcatcttccgggcaacaatcgctcaccacaatatcaaagcgtttcaggtcacccatgcgcgccggacgcaccttgccaaatttactgtggtcgacaaccagcacatgcttttgcgccatcgacatggcccagtgttttaccggcaactcttcaagattaaaacaggtagcgcctttactgacatgcacgcccgccgcagaataaaaagcgatatccgggcaaaaattattcagcgtttgctgaaaatcgatgggtttgaaaatggcgttgctggcgtgaaattcaccaccgcaaagaaacgcgcggcaatggggtttctctttcagcgccagaaaggtatttagcgaataacaaacggcggtaaaagggatttcattatcaatcgcttcaataatccacggcgtggtggtgccacagtcaaaaaagagggtctgatcgggttctaccagcgtcgcagccagttttgccgcccggcgtttttcttccaccaggcgggatttttgatcgcttaacaggtaatggctggcactgcgcggttccagaacaatatagccgccgagcaaaacgacgggcgcactgtggttgttcagatcgcgacgaatcgtcatctccgaaaccccaagcagggcggcggcgtctttaagatgtaacttatcgctgcgttttaattcttgcagcagctgcccgatacgctcttcgcgacgtgtttccataatccctctgaatagttattgaagcgagccgctcaatactacactttttagcagagatcagtcacgcacccagcctttgcggatcggtaatgcaaaacagacgcgataccacgattgcagacgttgatagagtttatgccccatcgcttgccagataatctgggcactaaggcagccaatcatacctgccagcaatccaccgagcatatccagcggccagtggacgccaagataaacgcgcgaccaggcaatgacgacggccagcaccattaaaagtgagccggaccacaggcgatgccagcataaaaatgccagtgcaaaggtgaaaatcaccgtaccgtgatcgcttgggaatgagtcatccgccgcatgatgcaggaagttatagccgatattttcgacaaagggtcggtcgtgcggaaaaagatgtcccatcgtccaggacacaaacaggctgaccgccagcgcgatagcgatttttatcaccagttgccgttgtgctgtaagcccccacaaccaaagtaccacggccagcaacggcaccacggtaatcaaatctttagcaataaaaatcgccaacgagatcatccacggagccgagtctggcgtcgcgttaataagagagaatagagagagattcaaattttccagcataacttcccgacgcaaagtgattaaaagggagccaatacaggcaagtcgttgagaataaagtgcaggttaaactgggtaaagcggcatcgtcttatttccctcaagcggcctgtttacggtgggtgattgtaacgggcataggttaaataaaacttaaagaaagcgtagctatactcgtaataatgtaagaatgtgcttaaccgtggtttcagctacaaaattcgctttctcgttagctgcgcttttattaaactctgcgcgattattattggcgaagaaattgcatgcaaaataaattagcttccggtgccaggcttggacgtcaggcgttacttttccctctctgtctggtgctttacgaattttcaacctatatcggcaacgatatgattcaacccggtatgttggccgtggtggaacaatatcaggcgggcattgattgggttcctacttcgatgaccgcgtatctggcgggcgggatgtttttacaatggctgctggggccgctgtcggatcgtattggtcgccgtccggtgatgctggcgggagtggtgtggtttatcgtcacctgtctggcaatattgctggcgcaaaacattgaacaattcaccctgttgcgcttcttgcagggcataagcctctgtttcattggcgctgtgggatacgccgcaattcaggaatccttcgaagaggcggtttgtatcaagatcaccgcgctgatggcgaacgtggcgctgattgctccgctacttggtccgctggtgggcgcggcgtggatccatgtgctgccctgggaggggatgtttgttttgtttgccgcattggcagcgatctcctttttcggtctgcaacgagccatgcctgaaaccgccacgcgtataggcgagaaactgtcactgaaagaactcggtcgtgactataagctggtgctgaagaacggccgctttgtggcgggggcgctggcgctgggattcgttagtctgccgttgctggcgtggatcgcccagtcgccgattatcatcattaccggcgagcagttgagcagctatgaatatggcttgctgcaagtgcctattttcggggcgttaattgcgggtaacttgctgttagcgcgtctgacctcgcgccgcaccgtacgttcgctgattattatgggcggctggccgattatgattggtctattggtcgctgctgcggcaacggttatctcatcgcacgcgtatttatggatgactgccgggttaagtatttatgctttcggtattggtctggcgaatgcgggactggtgcgattaaccctgtttgccagcgatatgagtaaaggtacggtttctgccgcgatgggaatgctgcaaatgctgatctttaccgttggtattgaaatcagcaaacatgcctggctgaacgggggcaacggactgtttaatctcttcaaccttgtcaacggaattttgtggctgtcgctgatggttatctttttaaaagataaacagatgggaaattctcacgaagggtaaaaaaatgcctgactgctttgtgcgatcaggcattctcgaattaatggtgatggtcgtcaatctggtgttcgataaccatcccttcacctacgctggcaagatggcgaacataaggatgcgggcggtaagccggagctggcgcaggagccacatagacggtttgcggcacagtcgcgacgctgaccgcttgtggaacgctgactgaatcaggaaccacaaccactttgtatccactcggcacatcgacggtgacactttgcgccatcgccacaccagtaaagcccattaaaagcgcgcccaacagtagacaatttttcataatcatttcgcctgaaataatgcagcgggttaatttccgcgaattatgcagccttcattcaggcattgtgttgccgggcgtgctgccggttttattggtcaaatggcgcttcgtgtttaagaactttatcgatcacatccagtacgccttcacggttattggagcctgcgcggtattttgccgctgcgacgaccgcgctaccggcattttccattgcaaaactaaagcctgcctgacgcagcatctcaatatcgttaccgccatcgccaaagaccaccacttcgctgtcgtctattccccataatttctgcagttggcgaaggccattggctttatgtacgccggggataatcagatcgatgctgccgttgccggtgtggaccgacaccataatatcgccgatggcctcatgtaatgctttttgtacttgtggaatcagttcatcggaaagattcaggccaaacttaaagaagatatcctctaagttgtcaaagttatcgacgtattccagacggtgataatacatttccgccaccgttttcatggcatcgtcatattttttgagtgtataggcactattttttccgcaggcaataatttccacttccgggcgcgtcagcaaatgttccacgacagtagcaaacgcatccttcgatagctcgccattaaaaacatctttgccttcgctcactacccagccgccgttttcagccacaaaggcaatttcattagcaatttcagggaagaaagagatcaactgataatattgattcccgctggcgactacaaagcgaattccttgtgctttcatttgctgatactgagccataaaccgctcacggttataggttttttgatcgcttaagaaagtaccatccatgtctaccgcaattaatttaatgctcatcaactattctccatcgccgtctgcgttttggtatcgggtttggcgacggctttcgcgacaatagccgcgagaataaccagcgccagtacaaccagcattgcactacgtaatccataatgttcgccgagatagcccagcagcggcggcccgacgaggaaagccagataaccggtcgttgctaccacactgacgcgggttggtgcatcggggccggtatcgctggcggcagaaatggtcagcgggaagcccagcgaggcacccagtccccagagtacaacagacaccccagcgacccaggcgctatcgacaaaaataatcagcccaatacccaacgcccccattagtgcactggcccgaaccacggcaacgcgactgtaacggtcgatgaaccaaccgccggtgaagcgtccaacggtcatccccagggtaaaaccggcataaatcagcgagccggaagtagggctaaaaccgtgaccgtcaaccattaataagggtaaccagtcgttggcagaaccttcggcaaaggccatcgccagcaccacaacacctatcagcagcaactggatatcgcgataaaaaggtacgcctttttcgccatgctgggtgccatcggcagcatttttgcccgtaccgtcagggattgcctgaatggcgatataaataggtgcgatacctaccagcgccgccaataaaatgtgcaccgttgccggaacgccaaaggccgtcagtgccatcccgacacctgcgcctgccagcgtgcccaggctataaaaaccgtgcatcatcggcaaaaccgtcttattcatttctcgctcaacggcagcaccttcaacgtttatcgccacttccgcagaaccaaaacttgccccaaagacgccgagaccaacggcaaagagcaggggcgatgtcagccagagtgccagacttaatatcatcatcccgatcaatgcgcaggacatcgtgaccaggatgacattacgtgtcccaaagcgtttcactaaccacgccgagcagagaataccgctcatcgaaccgatcgacagaccaaagagaacaccgcccatttcagcgatcgagacagagagaatatcgcggatagcaggcgtacgggttgcccaggacgccattaacaggcctggcaaaaagaagaacataaacagcgcccaggttcggcgtttcaatgcattacgtgaagaatttacggtcatagatcacgtcaaaataagaagagggaagacaacattagcaaggttgtgtacatttgtacacaattgcagagagaggaaatgacatgcgtcgcgctaacgatccgcaacggcgagaaaaaattatccaggccacgctggaggcggtgaaactttacggaatacatgctgttacgcaccgcaaaattgctacccttgccggggtaccgttgggatcgatgacctactatttttcaggaattgatgagttgttactggaggcgttcagcagttttactgagatcatgtcccggcaatatcaggcattttttagcgatgttagtgatgctccgggcgcatgccaggctatcaccgatatgatctacagctcacaggttgcaacgccggataacatggagctgatgtaccagctctacgcgctggctagccgaaaaccgctattaaaaacggtaatgcaaaactggatgcagcgcagtcagcaaacgctcgaacaatggtttgaacccggaaccgcccgcgcgcttgatgcgtttattgaggggatgacgctgcattttgtcaccgaccgtaagccgctatcgcgcgaggagattttgaggatggttgagagggttgcagggtagtagataagttttagataacaaaaaacccatcaaccttgaaccgaaatggcggggttgatgggctccacaaaatggggacatcaaagaaaagcagtggcactaattaagactgatgccctgcggaaaagttctgcggttgtgcaaaaaaatttcattttcagggcaacttcagttttatcctaatcctggccataccatgacgatgattgtccctgccagcgtcagcaggacgttggcgattgcataggtgcccgcatagcccagcgccgggatgttactgcgagctgtatcactgatgatctccattgccggcgcgcaggtacgtgcgcccatcattgcgccgaacaacagcgcgcggttcattcgcaatacataagcaccgaacaagaaacagataaccacgggcaccagactgacaatcaatccggcaatcaacatctgaccgccaatcgcgcccaggccgttattaataccgctaccggcgctcagaccaacgcctgccataaacaccatcaagccgaactctttcaccatgcttaatgcaccctgcggaatgtaaccgaaggtcgggtggttagcacgcataaagcccagcataattccggcgaataacaacccggcagcgttccccatgccgaaactgaatgtgctgaactggaaggtgatcatcccgatcatcagcccaataacaaagaaggcgcagaatgccagcaggtcagtgacctggctgtgaatcgagataaagccgatgcgatcggcgatggtttttacgcggcgggcatcgccgctgacttgtaaaacgtcacctttgttaagcacgacgttgtcatctatcggcatctcaatctggctacgaatgacgcggttaaggaagcaaccgtgatcggtcaacttcagttgtgcgagacgtttacctacagcgttatggtttttaacgaccacttcttcagtgacgatacgcatgtcgagaaggtcacgatcgaaaacttctttaccgttacggaagctgggatcgagtcgggcatgggcgtcgggatagcctaccaacgctatttcatcgcccatttgtagcacggcatcaccgtctggatttgccagaatcccgttacgtcgaatacgttcaatgtagcagccggtttgtcgataaatacccagttcacgcagatttttgccgtcggtccaggccaccagttccgggccgacgcgataggcgcggatcaccggtaaataaaccttacggttggcatcagtgtccaggccacgttcgcgggcgatttgctgggcgctggtctgtaagtcctgatgctgcaatttcggcaagtaacgcgcaccaacaatcaaactcaccagaccgattaaataggttaaggcatacccgaggctcagattatccagtgccagtgagagctgcctgctttccatgccggaatgacgcagtgtatcgccagcaccgaccagaaccggtgtcgacgtcatagagcctgctaacataccggccgtcaggccaatatcccagccaaacagcttacctaaccctaaggcgatcaccagcgcactgccaaccatcaccagtgctaacattaggtaatttttcccatcgcgaaaaaaaatggaaaaaaagttcggtccggcttcgaccccgacgcagaaaataaacagcataaagccaagattaagcgcatcggtgttaatgctgaaatgttgttggcctaataacagcgatacgactaaaacgccaatggaattacccagttggatcgaaccaagtcgtaactttccgagacatagcccaagcgcgaggaccacaaataataacagaatgtaattcccatttaacaattcggcgacgtttatattcacggaggctaacttcttgtttactagtaagctgttgaaagaaatggtaatttacgataatgttttttaccagaattcagggcgcagattcattcagcgcacctaaacgatagtaaagtaacaatatattttactagtgtaatcacattaggtatcaacggctatatgaattgcgttggcctatattagcatggaatgcgaagcggctttatcttactgaacgccacactggcgaaaaatgtgttcgatagacgcagtgtcaggaggaacgagtgaaacataaacaacgttgggcgggggcaatctgctgttttgtcctcttcattgtggtgtgcctttttctggcgacgcacatgaaaggcgcttttcgggctgccgggcatcctgaaatcggcttgctatttttcattcttcctggagcagtcgccagcttcttttcacagcgtagagaagtcctgaaacctctgtttggcgcaatgctggcggcaccctgttcgatgctcattatgcggctgtttttttcaccgacgcgctcattctggcaagagctggcatggttactaagcgcggtgttctggtgtgcgctgggggcactgtgtttcttatttatcagtagtttgtttaaaccacagcacagaaaaaatcagtaaagccctcaacgcgagggcttgtcagacgatcaggcgtccagattttctttcacccatgcagcaaaatcggtatagccgccgatatgttgctgatcgacaaaaatctgcggcacggtttctacgggtttacctgccttttgttgtagatcttctttagtgatcccttccgcacgaatatctacatactgatactgaaaatcatcgcgttcattgctcaatttctcagccagatcttttgcacgcacacagtaagggcaacccgaacgaccaaaaataacggtttgcattatttctctcctcatagatttatgcctgtaatgatcacgctaaaatgtattcgctgaaagtaggtttaacctgttgcattaattgctaaaagctataactgttaaacacaatacagtgaaaagttttagactgaaggctcactttgcagagggaagcgtatgcgcgcgatcggtaaattgcctaaaggcgtgttgatactggaatttatcggaatgatgctactggcggtggcgctgctgtcggtaagcgactccctgtcgctgcctgagccattttctcggccagaagtgcagattctgatgatttttctcggtgttttgctcatgcttcccgctgcggtggtggttattcttcaggtggcaaaacgtcttgccccacagctgatgaaccgtccaccgcaatattcacgttcagaaagagaaaaagataatgacgccaaccattgaacttatttgtggccatcgctccattcgccatttcactgatgaacccatttccgaagcgcagcgtgaggcgattattaacagcgcccgtgcgacgtccagttccagttttttgcagtgcagtagcattattcgcattaccgacaaagcgttacgtgaagaactggtgacgctgaccggcgggcaaaaacacgtagcgcaagcggcggagttctgggtgttctgtgccgactttaaccgccatttacagatctgtccggatgctcagctcggcctggcggaacaactgttgctcggtgtcgttgatacggcaatgatggcgcagaatgcattaatcgcagcggaatcgctgggattgggcggggtatatatcggcggcctgcgcaataatattgaagcggtgacgaaactgcttaaattaccgcagcatgttctgccgctgtttgggctgtgccttggctggcctgcggataatccggatcttaagccgcgtttaccggcctccattttggtgcatgaaaacagctatcaaccgctggataaaggcgcactggcgcagtatgacgagcaactggcggaatattacctcacccgtggcagcaataatcgccgggatacctggagcgatcatatccgccgaacaatcattaaagaaagccgcccatttattctggattatttgcacaaacagggttgggcgacgcgctaaaaccgccacgtcgatgtatgatacgcgggcttttgaccaggtctgacagagaggtgcagggtgaaaattgccatattgtcccgggatggaacgctctattcgtgtaagcggctgcgtgaagccgctatacagcgcggtcacctggttgaaattcttgatccgctttcttgctacatgaacataaatcctgcggcgtcttctattcactacaaaggccgcaagttaccccattttgacgcagtgatcccgcgtattggcaccgccattaccttttatgggacggcggcactgcgccagttcgagatgctggggagctatccgctcaatgagtcggtcgccattgcccgggcgcgtgacaaattgcgttccatgcaactgctggcgcgtcagggcatcgacctgcctgtcacgggcattgcgcattcgccggatgataccagcgatttaatcgacatggtcggtggtgcgccgctggtggtcaagttggttgaaggcacgcagggaattggcgtcgtgctggcggagacgcgtcaggcggcggaaagcgtgattgacgctttccgcggtctgaacgcgcatattctggtgcaggaatatatcaaagaggcgcaagggtgcgatatccgctgtctggttgttggcgatgaagtggtcgctgcgattgaacggcgggcgaaagagggcgattttcgttccaatttgcatcgtggcggcgcggcaagcgtcgccagtatcacaccacaggagcgtgaaatcgcgataaaagccgcgcgaacgatggcgctggacgttgctggtgtggatattctgcgtgctaatcgcgggccgttggtgatggaggtgaatgcgtcgccggggctggaaggaatagaaaaaaccaccggtatcgacatcgcgggtaaaatgatccgctggatcgaacgccacgctacgacagaatattgcctgaaaacgggtggttagtcgcaatcacattactgatcatggttttgcctgcgctttttgcgtaagctgtgccggtctttttatcgaaagaggttgtacaaaattatgacatcgctggtcgttcctggtctggatacgctgcgtcaatggctcgatgacctggggatgagtttttttgaatgtgataactgtcaggctctgcatctgccccatatgcagaatttcgacggtgtctttgatgccaaaatcgatctgatcgataacacgatcctgttttctgccatggcggaagtccgaccttcagccgtattgccgctggcggcggatttatctgccatcaatgccagttcgctgaccgtgaaagcatttcttgatatgcaggatgataatctgccaaagctggtggtttgccagtctttatccgttatgcagggcgtaacctatgagcagtttgcatggttcgtgcgtcagagcgaagagcagatttcgatggtcattcttgaagctaatgcccatcaactgctgttaccgactgatgatgaagggcaaaacaacgttaccgaaaactatttcctccactgataactcctttcgagcacgcagtcgctggtgcagtggctgcgcgctgcaaaattatctgctgtttttaaccttttcttaaagattatttcacttctcttgtgtcgatttggctttatcacatagagcaaatatgcataaaaatttgttaaataccgttttttaatccgagctatagtctcaaaccctggctaaagttattcttgcgatgcttttatatagcgagcagtgctggccgggagaaagttctcttttcttacaccgcgccgataaaaaatatgcacgtttattgcatatctttcagtgtgacaacttttgttcgtttgttaacgaactttcagaaggaaagagatatgaccgccttaaataaaaaatggctatcgggtctggttgcgggtgctctgatggccgtctctgtcggcacgctcgcggctgaacaaaaaacactccacatttataactggtctgattatatcgccccggacacggtggccaattttgaaaaagaaaccggtattaaagtcgtctacgatgttttcgactctaacgaagtactggaaggcaaattaatggccgggagtaccggctttgatctggtggttccatctgccagctttctggagcgccagttgactgcgggagttttccagccgctggacaaaagcaaattgccggagtggaagaatctcgacccggaactgctgaagctggtcgccaaacacgatcccgacaataaatttgctatgccctatatgtgggcgacgaccgggattggctataacgttgataaagttaaagcggtgctgggcgaaaacgcgcccgtcgatagctgggacttgatcctcaaacctgaaaatctggaaaaactgaaaagctgcggtgtctctttcctggatgcgccagaagaagtttttgctaccgtgttgaattatctcggcaaagatcccaacagcactaaagcggatgattacaccggaccggcaacagatctgctgttaaagctgcgcccgaacattcgttatttccattcatctcaatacattaacgacctggcaaacggcgatatttgcgtcgctatcggctgggcaggtgatgtctggcaggcgtcaaaccgcgcgaaggaagcgaagaatggcgtgaatgtctcgttctcgattccaaaagaaggggcgatggcgttctttgatgtattcgccatgcctgcggatgccaaaaacaaagacgaagcctatcagttcctgaattacctgctgcgcccggatgtagtagcgcatatttccgaccatgtgttctatgccaacgccaataaagcagccacgccgctggtgagtgcggaagtccgtgagaacccaggtatttatccgcctgcggatgttcgtgcgaagctgttcactctgaaagtgcaggatccgaaaatcgaccgtgtgcgcacccgcgcgtggaccaaagtgaagagcggaaaataatccgcagtcgtagatgccggaggggcgcaccacacccgccggcaattcgcaccattatggtgcgcttgcacacattcaatgccggagagcagccgtgaatgacgctatccctcgcccgcaggcgaaaacccgtaaggcgctgacgccgctattagaaatccgcaacctgaccaaatcctacgatggtcaacatgcggtggatgatgtcagcctgaccatctacaaaggtgaaatcttcgcgctgctgggcgcatccggctgtggcaagtccacgctgctgcgtatgctggcaggtttcgaacaaccttctgccggacagataatgcttgatggcgtcgatttgtcacaggttccgccttacctgcgccccatcaatatgatgtttcagtcttacgcgctgtttccgcatatgaccgtggaacagaacatcgcttttggcctgaaacaggacaaactaccgaaagcggaaattgccagccgggtcaatgagatgctcggcctggtgcatatgcaggagttcgccaaacgcaaaccgcatcagctttccggtggtcagcgacaacgtgtggccctggcccgaagccttgcgaagcgcccgaaactattactgctcgatgagccgatgggcgcgctggataaaaagctgcgtgacaggatgcagcttgaagtggtggatattctggagcgcgtcggtgtgacttgtgtgatggtcacccacgatcaggaagaggcgatgaccatggcggggcgcatcgccattatgaatcgtgggaaatttgtccagattggcgaaccggaagagatctacgagcatccgactacccgctatagcgccgaatttattggctcggtaaacgtctttgaaggcgtactcaaagagcgtcaggaagatggcctggtgcttgattcgccggggctggtgcatccactgaaagtcgacgcggatgcctcggtggtcgataacgtgccggtacatgtggcgctgcgcccggaaaaaatcatgctttgcgaagagccgcccgccaatggttgtaacttcgcggtgggggaggtgatacacattgcctatctcggcgatctttcggtgtatcacgttcgtctgaaaagtgggcagatgattagcgcccagctacaaaacgcccatcgtcatcgtaaagggttaccgacctggggcgacgaagtgcgtttgtgctgggaagtggacagctgtgtggtgctgacggtttaaggagcaaagatgagtacacttgaacctgctgcccagtcgaaaccgccgggcggatttaagctgtggttgtcgcagctgcaaatgaagcatgggcgcaaactggtcattgcgttgccatatatctggttgatcttgctgtttctgctgccatttctgattgtctttaaaataagcctggcggagatggcgcgcgctattccaccttataccgaactgatggagtgggctgacgggcaactgtccatcactcttaatctcggtaattttctgcaactgaccgacgatccgctctatttcgatgcttatctccagtcgctacaggtggctgcgatttcgacattttgctgtttactgatcggctatccgctggcgtgggcggtggcgcacagtaagccttcgacccgtaatattttattactactggtgatcctgccgtcgtggacctcgtttctgatccgcgtttatgcctggatgggaatattaaaaaacaacggtgtgctgaataattttctgctgtggctgggggttatcgatcaaccgctgaccattctgcataccaatctggccgtttatatcggcattgtttacgcttacgtgccgtttatggtactgccgatttataccgcgttgattcgtattgattattcgctggtggaagcagcgctggatctcggtgcacgaccgctgaaaacgttctttactgtgatcgtgccgctgactaaaggtgggattattgccggatcgatgctggtgtttatcccggctgtgggcgagtttgtgatcccggaactgctcggtggcccggacagcatcatgatcgggcgcgtgctatggcaagagtttttcaataaccgcgactggccggtggcctcggcggtagcgatcatcatgttgctgctgctaattgtgccgataatgtggttccacaaacaccagcaaaaaagcgtgggagaacacggatgaataatttaccggtagttcgttcgccctggcggattgtgattttgctgctgggctttacctttctctacgcgccaatgctgatgctggttatctattcgtttaacagctcgaagctggtgacggtgtgggccggctggtcaacgcgctggtatggtgagttattgcgcgatgacgcgatgatgagtgcggttggtttaagtctgacaattgcggcctgtgcggcgacggcggcggcgatcctcggaactattgcggcggtggtgctggtgcgctttggcaggtttcgcggatcaaatggctttgcctttatgatcaccgcgccgctggtaatgccagatgtcatcacgggcttgtcgctgttgttattattcgtcgcgcttgctcatgccattggctggcctgcggaccgcggtatgctcaccatctggctggcgcatgtcactttttgtacggcttatgtggcggtcgttatttcttcaagattgcgggaactggatcgctcgatagaagaagcagcgatggatctcggtgcgacgccgctgaaagtgtttttcgtcattacgctaccgatgatcatgcccgcgatcatttctggctggttactggcttttactttgtcgcttgatgatctggtgatcgccagctttgtttccgggccgggagccaccacgttaccgatgctggtcttttccagcgtgcggatgggggtgaatccggaaatcaacgccctggcaacattgatcctcggcgcggtcggaattgtcggatttatcgcctggtatctgatggctcgcgcagaaaaacagcggatacgcgacatccagcgtgcaagacgtggctgaagacactaaaatttgccaacctggctacataatgccgcgcatgtcgcggcattgttttcatggaagacgaaacgttgggattttttaagaaaacatcttcatctcatgctcgcctgaatgtgcctgcgctggtgcaggtggcggcgctcgccattattatgatccgtggcctcgacgtgctgatgattttcaatacgctgggcgtgcgcggtattggcgagttcattcatcgcagcgtacaaacctggagtttaacgctggtctttttaagcagtctggtgctggttttcattgagatctggtgtgcgttttcactggtgaaagggcgtcgctgggcgcgctggctatatctgctgacacaaatcaccgccgcaagttacttgtgggcggcttcgctggggtacggttatccggagctgttcagcattcccggtgaatcaaaacgtgaaatcttccatagcctgatgctgcagaagctgccggatatgctcatcctgatgctgctgttcgttccctcgaccagtcggcggttcttccagttgcaataatgtgtataatcgtcgcccctgatgatgtgaaggtcaatgtatgcagtgcgcactttacgacgcgggtcgctgtcgttcctgtcagtggataatgcagccgattccagagcaactctccgctaaaaccgccgatcttaaaaatctgctcgccgactttccggttgaggaatggtgcgcgccggtgtcaggcccggaacaagggtttcgtaataaagccaaaatggtggtgagtggtagcgttgaaaaaccactgctcggtatgctgcatcgcgatggcacaccagaagacctttgtgactgcccgctttatcctgcctcatttgcgcccgtttttgcggcgctaaaaccgtttatcgcccgagcggggttaacgccctacaacgtggcgcgtaagcgtggcgaactgaaatacattctgctgactgaaagccagagtgatggaggcatgatgctgcgctttgtactgcgttctgataccaagctggcgcaactgcgtaaggcgctgccgtggttacacgaacaactaccgcagctgaaagttattaccgtcaatattcagccggtacatatggcgattatggaaggggagacggagatctacctgaccgaacaacaggcactggcggagcgttttaatgacgtaccgctgtggatccgtccgcaaagtttcttccagactaatccggcggtcgccagccagttgtacgccaccgcgcgcgactgggtacgacagctgccggttaaacatatgtgggatctgttctgcggtgtggggggctttggtttacactgcgcgacgcctgacatgcagttaaccgggatcgaaattgcatcagaggccattgcctgtgcaaagcagtcagccgctgaactgggcttaacgcgtttgcaatttcaggcgctggactccactcagtttgccaccgctcagggggatgtgccggagctggtgctggttaacccgccgcgccgcggcattggtaaaccgctgtgtgattatctctcaacgatggcaccgcgttttatcatctactccagctgtaacgcccaaactatggcgaaagatatccgcgaactgcctgggtttcgtattgaacgggtgcagcttttcgatatgttcccgcataccgcgcactatgaagtgctgacgctgctggtgaagcaataaaaaagccgcatgtgcggcttcagattgctgacaaagtgcgcgttgtttatgccggatgcggcgtaaacgccttatccggcctacaaaagcgtgcaaattcaatacattgcatgggccatgtaggcctgataagcgtagcgcatcaggcaattttacctttgtcatcagtctcaagccgcggttgcggctttctgaatcttactgtgggaaccactggtcactgattttttgataagtaccgtcagctttaattgctgccagcgcgttattcagtttttccagcagggctttgttatccggacgtacagcgatgcccaggccggtgccaaaatattgcggatcggtcactttctcagtagcaacaccaagttgtggattggttttcagccattcgtttaccaccgctgtgtcaccaaataccccatcaatacgaccatttttcagatcgataaaggcattctgataactgtcataagagacagttttcacttccgggtgctgatcctgaatatatttctggtgcgtagtaccgttttccatcccaatacgtttgcctttcagatcggcaaacgttttgtaggtatcttttttggcaatcacgacggctgagttttcatagtagggcgtggtaaacgatacctgtttgctacgctccggggtgatatccataccggagattacggcgtcatattttctgaatttcagggacgggatcaggctgtcgaacgcgtgattagtaaaagtacattctgcctgcatttgtttgcacaaggcttttgccagatcgatatcaaagccgacaatctcattattagcacctatagattcaaagggtggataggtggctgaaacgccaaaattgattttctctgcggcagaagcaccgaaagtaaaggaagcaagtaaagcggcaagaactaactttttcatgatggaactcccgtctgtcaatcttatgatttttggccgtgtctgcggcatgggataacaatgccatcaagtgaatttatatgcaataaacatgattaaataatttaaatgaaataaaaaagacggacaacttagtgggttgtccgtcttcattataagaatttatgcactatgtaggccggataaggcgtccccgccgcatccggcacaggcaccgtgctgatgtctgatgcgacgctggcgcgtcttatcagacctacaaaaccccccggcgaatgtacgcagccacattaatttcgccgttcgaatgccagcgctttgcgctcgatcagacgcatcatcagcgtcagcaggccgttaacgaccaggtaaataatccctgccgcaccgaacaccattacatcgtaggtgcgtccgtacaacaactggctgtatcccatcacttccatcagcgtaatggtgtatgccagagaggtacttttgaataccagcaccacttcgttggaataagaagagagcgagcgtttaaaggcatacggcagcaggatcgccagcgtatcttttttgctcattcccagggcgctacaggactgccactgaccttccgggatcgcacgaattgcaccgtaaaacagctgcgtggtatacgccgcactattcagcgacaacgcaatcagcgcacataaccacggttctgacaacaaatgccacagtgccggatactcctgcaaagtcggaaactggcccggcccgtaataaatcaggaagatctgcaccagcagcggcgtaccggtaaacagcgtgatataaccccgcaccagccacaccagcaccggcgttttcagcgtcaggatgatggtaaaaatcaatgccagaatcagtgccacaatcagcgaggcaacggttagcgtcaggctggtgtgtagccctttcatcagttcgggtaaatactcaaacattagctgggcctccgctcaaaacgtgtcgcgcgcaggtcaatgcgtttgagaatgtactgactgagcagggtgatcaccaggtaaatcgccgccgccacaatgtaccaggtaaatggttcctgggtacgagtagcgatgctttttgtttgcagcattaaatcattcacactaatcaaactgaccagcgcggtatctttcagcagcaccagccactggttaccgaggccaggcagcgcatgacgccacatctgcggcatcaccagacggaaaaagatagccgatttcgacagccccagcgcctgaccagactcccactgacccaccggcaccgctttcaacgcgccccgaagcgtttgcgaggcataggcggcatacagcagtgacagagcgatgacaccacaaaggaacgggctaacgtcgaagttctcaatgtccatctgcactgggatctgcacgaacccaagattgatagtgaagccatccgaaagcgtcagcagcagctgcgaggagccaaaatagataaacagcaccaccagaatttctggcaggccacgcagaatggttaccagcgctgaacctgcccacgcgacaggacgccattttgccgactcccataccgcaaagaacatcgccagcgccagcccgacaatcaatgcacaaacggcaaggccgacggtcatcccggcggcgcttgctaaaggaaaaaattcattcatcaggaattacttctggaaccatttgttgtagatggtttcgtaagtgccatctttcttcactttttccagcgcagtgttgagtttctgctgcagctcagtgttgccctgacgtaccgcgatgccgaggccagtgccgaagtaatctttatcggtcactttgtcgcccaccgccgccagtttcgggttatctttcagccactcagtgaccactgcggtgtcaccgaagacgccgtcgatacgcccgttttgcagatccagttttgcgttctggtagctgtcatacggaacggtagtgatttccgggtgcttatccataatgaatttctggtgtgtcgtcccgttctgtacgccgacttttttgcctttcagctgatcaacactggtgtatttgccttgctgacccacaaacagggcagagttgtcatagtacggggtggtaaacagcacctgcttttcacgctccggagtgatatccatgcccgccatcacggcttctacgcgacggaatttcaggcttgggatcaggctgtcaaacgcctggttagagaaagtgcaggttgcatcaatctctttacacagcgcttgtgccaggtcgacgtcaaaaccaacgatctggttgtttgcatcaatcgattcaaacggaggataggaggcttcggtagcaaaacgaatggtttcggcagctgtggcggaaagactaaaacctgcaattaacgcggcaatcagaacttttttcattgttgttatcccgaatcttagtgagagagatagtttttaaatgcttcggtttgcggctcggtaaagcagctcgcgtcgccttgttctacgatatgaccattttccatatacaccactcggctggcggttttacgcgccacttcaacttcgtgggtgacgatcacctgggtaatattcgtttctgccagctcacgaatgatgctgacgatttgtgccgtaatttccgggtccagtgcggcggtcggttcatcgaacagcagtacctgcggttccatcatcaacgcacgggcaatagcaacacgctgctgctgaccaccagaaagatgcagcgggtaacgatcgctataaggtttgagacgcagacgttccagcagtttttctgcacgggccagcgcctgatctttactcaaccccagtacacggcagggcgcttcaatcaggttttgctgcacggtcagatgcggccacaggttgtattgctgaaacaccatgccaacgttacgacgcaaatcgcgaatcgctttgtcagagggtgttttggtgaaatcgaaatggttgcctgcaatgttgagcgtaccggagcgcggcatctcaagcagattgagtacacgcagcagcgagcttttacccgcgccgctggggccaagtaacaccagcgtttcgccctgtgggcaatccagcgtgatatcgaacagcgcctgatgcgcgccgtagaagcaattaatgccgtttaattgaatactcattgacactcgtatactggcagtctgatagctattgaggtcgaagatagtacctttgacagaataattatgcaatatttctgctttaaaagttaaaagcaaagcgcattattcaataaacatagcacaaaataacgggggcggtggtcggcgagcataaatgtcggcattcctcacgaaatgccggacaatttacggggtttattggttgatcaaggcgttagcgattctcgatggactgacggagcgtacccgccgtggcatgaacgctaccgcctaagtaacgcacatcgtcgatgacccaacactggccttcctgaatcattaacacttcatcctgccaaccctggtcaccctgtttgagatccacgcgcaatggaatgttacgggcatcacgattagggatagtcgatgcactggcaacgtgggcgctatctggcaaggtggttcgactggagaatggatcgttggtcagtagttcccgatggttattatcccgggaggcatcgctaagcagtgtcgccagtttgtcgctcagataagggcgcaaggcggtgatgtcgttgctgcggtgcaaaatgcggtagtcataaaattgctgggccacgttatccgggcctccttcaacgcaaggaccactgcgtgtgccgttatctttataagctggagtgactgtggtgcaggcactgaggagcagtgcgcaggggataagcattgtcaatttgctgtagcgcataatgatttccttataagcgatcgctctgaaagcgttctacgataataatgatatcctttcaataatagcgtatcagtctgataatgcttttgagatcgaaggcttagcaaacaaggagatcgatcatgcaattttctacaaccccaactctggaaggccagaccatcgttgaatattgcggtgtggtgaccggcgaagcgattttaggtgccaatattttccgtgatttctttgccggtatccgcgatatcgttggcggacgttccggtgcgtatgaaaaagaactgcgtaaagcacgggagatcgcctttgaggaattaggctcccaggcgcgggcgctgggggccgatgccgtcgtcggtattgatatcgactacgaaacggtcgggcaaaacggcagtatgctgatggttagcgtcagcggtacggcggtgaaaacgcgtcgatgagaagattcttctggctggtcgctgccgctctgttattggcagggtgtgcaggcgaaaaaggcattgtcgagaaagagggatatcagcttgatacccgacgccaggcgcaggcggcgtatccgcgcattaaagtgctggtgatccactacaccgcagatgattttgatagctcgctggcgacactgaccgataagcaggtcagctcgcattatctggtccctgcggtaccaccgcgatacaacggtaaaccgcgcatctggcaactggtgccggaacaagaactggcctggcatgcggggattagcgcctggcgcggggcaacgcgccttaacgacacctctattggcattgagctggaaaaccgtggctggcaaaaatcggccggagtgaaatattttgccccgtttgaaccggcacagattcaggcgcttattccactggcgaaagatattattgcccgttatcacatcaagccggaaaacgtagtggcacatgcggatatcgcaccgcagcgcaaagacgatccggggccattatttccctggcagcaactggcgcagcaggggattggtgcctggccggatgcgcagcgggttaacttttaccttgccgggcgcgcgccgcacacaccggtagataccgcgtcattgctggagcttttggcgcgctacggttatgacgttaaacctgatatgacaccgcgcgagcagcggcgcgtgattatggcattccagatgcatttccgcccgacgttatataacggcgaagcggatgcagaaactcaggcgattgccgaagcattgctggagaaatacgggcaggattagcgcggcagttttccgtggtcgcgtagccaggcggcagttttctcgataccttcatccagggtgatgaccggctgataacctaactcttcctgcgcacgcgtaatatccagcgtaaagtcaaaattcaacttggagacgccgtagtgggtcagcggcggctcttttgctgacttgcggcctaaacgctccatgctgcgggcgatcatatccagcatcgggtaggggacggaacgaatacgacagtcaatattcaactcgtcgatcagcttctgcacgatgctgcgcagtgtgcgatgctcgccgttggtgatgttgtacacacgcccggaaggtagcttatcgcaggcttcctggcttgccagccacattgcgtgcacggcattttcatagtaggtcatatcgaccagcgcactgccgccatgcggtaacagaatactgccgtagtggtgcatcatatgcgccagacggggaataaagactttatcgtgcggtccgaacagactttgtgggcgcagaatagtaaagcgcgtttgtggattcgcctgcgaaagcatattgatcacttcttcgctggctgctttgctgcgggcaaactcgttggcgaagcggtgagggcgaaaatcttctttaatatcgcgatggtggtgataatcgaagtacagggagggggaagagatatgaataaagttacgcacaccccaggcgacagcccattcacccaggcggcgagtggcgcgaacgttagccagatcgaaagcctgttgtgtcccccagggtgaggtaaagctggagcagtgccacagcgtatcaatgcccgcgagcatcactttagcttgtgatgaaaccagctcggtcagatccgccggaacaaactctgcgcccattttttccagcaatttgcccattgcctcgttgcgaccggtcgctcgcacgctgatgcctttctggcataaaaactctaccgcgtttcgacctaagccgctggtggcgccggtaaccagtaccttcatatcaatccactgttgttgagaaaataacgtgcgcattcttccgtgatttcccccatgatgcaatgggaaacatgaaagaataacgcaggttttgtcgattaatctgtgctttgttctgccagtctggcgatttgttttgccattccgcgaaaaataaacagatgcgcggggatcatcaataaccagtaaaacagccccggcataccgtgcggatgccagaaagcgcggacatcgatagtacgatagtcgcctttatcttccaggctaaaacacagtcgtcccagccccggcgctttcatgccaaataacaacgtaagttgtttttccggttcaacgacaatcactttccagctatccaccgcatcgccagtctgtaaatattcgcgctccgggcggcctttcgccagcttatgaccgatcgcgcggtccatcaacgcccgtgtctgccacaaaatattgccaaagaaataacgctctttaccgccgatttggttcactacctgccataaagcagcaaggctggcggacgttttaacggtaaaccccgcctgtttggcaaaataaccgtactccggtcgccagcgggcaaaggcctgagcgtcgtagccccagtcgctggagttgaccagtttttcctcctctttcaacgtgctacgtaccgcgtcatcgaaagcgatcagccgttgtgggatgagtgcacgtagcgcggtatcatccgccagcagatcgtgtttcagcccctgaatcaacgccctggcggtggtgggcggtacggaagtaatcacattgagaaaccacaccgaaatccagcgggtggggagggggatggggatcaaccagcggcgcttaccgctcaccgccataaaatgttcaaactgttgctgataactgagcacctctggtccggcggcttcgaagatgcggtgttcgctggccggatgatctaacaacgcaaccagatagtgcagcaagttttccagcgcaatgggcgtggtgcgtgaacgaacccagcgcggaggcgttaagactggcaggttgtagaccatatcgcgcatgacttcgaacgccgcggaacctgcgccaacgataattccggcccgcagttcggtcacgggtacattcgcttcacgcagaatgtccgccgtagcctgacgagcacgcagatgatccgactgctcatgtggcggggcctgcaacgaactaagaaagattaattgcttaactggtacttcacgtagcgcatcgcggacgttgagagccacctggcgctcctgagcgataaaatcgccgccttcgcccatgctgtgcaccagaaaatagaccgtatcgatatcctgcaacagggccggtaggttatccggccagctgagatcgactttatggcaactgacgtttgccagttgcagctttgcaagcctgtcgacatgacgtgccgccgccaggatctgatgcccttgctggctgagtgtgcgcaccagatgctgaccaatgtagccactggcaccgagaactaaaatgcgttgcggcacgtctctctccttaacgcgccaggaatgcacgccagtgggcggcgacttccgccagttgttcgcgcgagacgtcaagatgcgtcaccaggcggacaatcggcgaggcgttaatcagcacgtttctcgctttcatgtattcgcctaacgcggcagcattttcttccccgacgcgaacaaacagcatattggtgtcctgacgcatcacatccgcgcctgcttcacgcagctgctccgccatccaggcagcgttgtcgtggtcttcctgcaagcgcgcaacgttatttttcagggcatatatcccggcggcagccagaatgccggactggcgcatcccgccacctgtcattttccgccagcgaatggcacgtttaatgtaatcacgattaccgacgagtaatgaaccgactggcgtcccaagacctttcgacaggcaaatggtgaacgaatcacaatattgcgtgatctctttcagttcgcagccgtaagccaccacggcattaaagatgcgcgcaccgtcaacatgcagcgccagattgcgctcgcgggtaaattcccatgcttctttcaggtattcccgcggcaacactttgccgttgtgggtgttttccagactgagtaatttggtgcgggcgaaatggatatcgtcgggtttgattttcatcgccactttatccagcggtagcgtgccgtcggcagccgcgtctatgggttgcggttgaatactgcccagcaccgccgcgccaccggcttcaaacagatagttatgcgcggcctgaccgacaatatactcttcgccgcgttcgcagtgactgagcagagcgaccaggttggcctgagtgccggtaggcagaaaaatggcggcttctttaccggaaagctctgctgcgtagtcctgcagagcattaacggtagggtcgtctccgtaaacgtcgtccccaaccggggcggccatcatcgcttcgagcatggcgcggcttggtcgggtaacggtatcactgcgtaaatcaatcatggcatgtccttattatgacgggaaatgccaccctttttaccttagccagtttgttttcgccagttcgatcacttcatcaccgcgtccgctgatgattgcgcgcagcatatacaggctgaaacctttggcctgttcgagtttgatctgcggtggaatggctaactcttctttggcgaccaccacatccaccaacaccggaccgtcgatggagaaggcgcgttgcagggcttcatcaacttcagacgctttttctacacggatacccgtaatgccgcacgcttcggcaatgcgggcaaagtttgtgtcgtgtagttcggtgccgtcagtcaaatagccaccagctttcatctccatcgccacaaagcccagcacgctgttgttaaagacgacaattttcactggcagtttcatctgcactactgagaggaaatcgcccatcaacatgctaaaaccgccatcgccgcacatggcgaccacctgacgttctggctctgtcgcctgcgcacccagcgcctgcggcatggcgttagccatcgaaccgtggttaaacgaacctaacaggcgacgcttgccgttcatttttagataacgtgccgcccacaccgttggcgtaccaacgtcacaggtgaaaatagcgtcatcggcggcaaaatgactaatttgctgcgccagatattgcgggtgaatggctttctcgctcggtttagctaaatcgtccagccctttgcgggcgtcgcggtaatcttccagcgctttatccagaaacttgcgatcggctttttcttccaccaatggaagcaatgcacgcagagtcgacttgatatcgccgaccagtgccatatccaccttgctgtgagcgccgatgctggctgggttgatatcaatctgaatgattttggcatcggtcgggtagaaggcgcggtagggaaattgcgtgccgagtagcactaacgtgtcggcgttcatcatggtatggaaacctgacgagaagccgattaacccggtcattccaacatcatacggattatcgtattcgacatgttctttaccgcgcagggcatgaacaataggcgctttaattttcccggcaaactcaactaactctttatgcgcccccgcgcagccgctgccacacatcagggcgatattgctggaataacgcagcagttgcgccagtttgcgtaactcttcttcttccggcgtcacgactggttgtggcgcatgataccagtgcatggttgccccttctggcgcaggttttaacgccacgtcgcctggtaacacgacaaccgaaacgccacggttaagcaccgctttgcgcatggcaatcgccagtacttgtgggatctgctccgggctggaaaccagctcgcaatagtgactacattcgcggaatagctcttgtgggtgggtttcctggaaatagccgctgccaatttcgctggagggaatatgagcggcaatcgccagtaccggaacgtgattgcggtggcaatcgaacaggccgttgattaagtgcaggttgccggggccgcacgatccggcgcagaccgccagttctccgctaagttgtgcttcagcgccagcggcaaaggccgccacttcttcgtggcgggtggacatccactcgatggtgcccatgcgattaagactgtcactaagaccgttcagagagtcgcctgtgactccccagatgcgtttcacccctgccgattcgagtgttttggcgatataagctgcaaccgtttgtttcatggttctccatctcctgaatgtgataacggtaacaagtttagttcatctgacggagggggaagggatgggagagaaaggaggcactaacggttaaatagcccgatgaaaggaatatcatcgggcataaggcgattatgcgagaaccaaatccccctgcggatggcaggagcaggccagtacgtaaccttcagcgatttcggcgtcggtcagcgtcattgtgctgctcaccgtatattcaccggaaaccacttttgtcttacagcagccgcaaacacccgcacggcaggcagcgacaaccggaacgttattgctttccagcgcctccagtagcgtggtgccaaccggggcgtaaaattctcgtgccggttgcagtttggtgaatttcagaccgctggtcgccgcttctgctactggggtgaagaatttctctttaaagaaacgcgtcacgccgagcgctttcacttcctgctctacccaatccatatacggagccgggccgcaggtcatcacggtacgtgaagctaagtcaggtacacctgccagcagttcgcgagtgagacgaccagcgataaagccttcggtaacgttattttctgccaccagcgttaccggatagttacgccactcatcggcgaaaataacatcctgcggcgtacgcacgttgtagatcacccgcacatcggcctgtggacggttcttcgcaagccagcgacgcatcgacataatcggcgtgacgccgcagcctgccgccagcaacaggaatttatcttctgctttatcgtcgcaggtaaattcccccatcgcgtccgaaagccagagataatcaccgcgttttacatcgcgcgtcagccactgggagccgacaccgtcatcaatccgccgcacggtcagggtgatatattcactcacgcctggcgtggaggaaatggtgtaagcacgcagcgtttccgctgagtttcgcacgctgaccagtgcatattgcccggcgcgatatgggtagtaatcgtggcaaatcagggaaatcgtccacacatccggcgtttcttgcgtaatgtgatgaacctgcatccgccacgggcattgattcgttggcatcgtcatcgacaaactccttacgcgctcaacagttgcttcatgtcttcttcaacagtggtgatagaacgcaggccgaatttctcgttcagcaccgccagcaggtctggtgtcaggaaaccaggtgcagtcgggccggtgacgatatttttcacgcccagagaaagcagcgtcagcagaatgacgatcgctttctgttcaaaccaggagagcaccagcgacagcggcagatcgttgacaccgcagcccagtttctctgccagagtgacagccagaataatcgctgagtaagcatcgttacattgacctgcatctaccagacgcggcagaccttcgatatcgccaaactcaagtttgttaaagcgatatttaccacaggcgagggtcaggatcaggcagtcatccggcacgctggtggcgaaatcggtgaagtagtggcgctcgccgcgtgcgccgtcacagccaccaagcaggaagatatgacgcagtttttcacggctcaccagatcaatcagcgtatcagcagcgccaagcagcgtctggcgaccaaaacccacggtgataaggtgcggaatttcgctgtacgggaagcctgccatctgttgcgcctgggtgataaccgcagagaaatcatcaccgtccagatgacgcacgccaggccagccaacaatgctgcgggtccagatacgatcgtcataagcgcctacggttgggtcgatgatgcagttcgaggtcatcacgatggggccagggaaacgagcgaactccacttgctgattctgccagccgctgccgtagttaccgaccagatgcttgaatttacgcagctccgggtagccatgcgcaggcagcatttcgccgtgggtgtagacattaacgcccgtgccttcggtctgttccagcaggttgtagagatctttgagatcgtgaccggaaatcagaatgcatttacccgccgtcgctttgacgttgacctgggttggcgtcgggtgaccgtatttaccggtttcgcctgcatccagaatgctcatcactttgaagttcatctggccgatttccattgaacactcaagaagcgcgttcatatcggcaggccaggtccccagccacgccatgattttatggtactgggcataaatatcgttgtcgtattgaccgagaacatgcgcgtgttccatataggccgccgcacctttcaggccatacaggcacagcagacgcaggccgagaatgttttcgccaatcgccgctttatctttgttaggggtaaattctgctgcctgacgttgcagctcgccgagatcgtcgctcaccagttgcaggtcagccatcgggttatcgacgcgcgcgttggcatctacagccaggcattgcgctttcagcgcctcgcgcagggcaatcgcttcacgagcgtagccgacaatacgcggagaatcgaagttaacgttggtcagggttgagaaaaaggcacgtggcgcgaagctgtcaacatcgtggttgatgatgccgtattcacgcgcttttaccgcccaggcagaaagcccttgcagcgccgcgatgagtaaatcctgaaggtcagaagtttccgccgttttaccacacatcccctgcgcgtatgagcagccgtttcctgccggagtacggatagtttgttcacattgcacacaaaacatgatcacaccttttaaagttatatttaatatacatgtttaaggttaagacgcttaacgcggggataaaagggatttttcatgcaactttaagggagattgatttagcgcaattttggcggcagggatctaccgccagagaggtattacgcagagaaaaaggcgatgaggatcggcactaacaggctaagaataaaaccgtgaacaattgccgccgggaccatatccagcccgccagtacgttgaagaacgggcagggtgaaatccattgatgtggcaccgcataagcccagtgcagtagagcggctgcggcgaatcagcccagggatcaacataatagcaatcagttcacgggccagatcattaaaaaacgccgcgctcccgattaccggaccaaaagattcggtcaataaaataccggaaagagaataccagccgaaaccggaggccattgccagcgcggtattgatggggagatcaagaataaaggcgttaattaaaccaccaattaatgaactgacaaccaccaccacggcgacaatcattccccggcgattaaggacaatctgctttaaggtcatgccattattgcgcaactgaataccaacgaggaaaagtagcaaaattaacgtgtattcactggcttcggtcgcgtgttgtaagaaagccagtccacttagaccaatggcaaaaccaatcactactacgccgcacagttttagcgactccagcgccatcgcaatacgcgacgggagtttttcttgctgatggtggttgcgccacggcaggcctcgctccagccacatcagggcggcaatattacacagtaaaataacggtaatactgacggcagaataatgcagaatcgccaacaggttactggcgaggttatcgagaaacgccagactgatacccataaaaaagagaataaggtaaaccatccagcttaatagctgattaataacttttaacgcagcttgttggcgaagcggaatgaggtaacccacaatcaggggaaccagaatgattaacagcccagaaaacatgaaaacccagtccttgcaaagatgaagtcgaaatgcgcgatgacacactactgaaagcggaaggacgagtaaagttgcaattaaaaggaaatgttatgcataaggagcagtagagtattcgttttcatttaaagatattcttgcgctttaattacaaactgcaccgatgttggtggcgtcaaaatcgccgaggcgttccctgaaggccggggcagcccacatggatgtgggctgagggcgcgttttacagggatgttacctcgcgcccgacccggtagccgtaagggataagtcgagggcaccgcgcagcggcgattttgttcgccagagcccgggggtgcagggggcggcggcgattggccgccccctgcgcgctccttgcgccagtggcaatatgttgcttagctcatgaaaggagcgcaacaagatgatgaatcaacatataacaacatcttaaaaaaaggcctgacattacgccaggccttctgcgttaattaatcacgcttttccagcagggtccggtaaatcagaccaccgataatgccgccgacaattggcaccacccagaagaaccacagttgttctaatgcccagccgccctggaagatagcaaccgcggtgctgcgcgccgggttaacagaagtgttagtcaccggaatactaattaagtgaatcagggttaaggccagaccaatagcgatcggcgcaaaacctgccggcgcgaatttgtcggttgcgccgtggatcaccaacaggaaacctgcactcaataccagttcaactaccagcgcggaaagcatggaataaccgcctggtgaatgctcgccataaccgttagaagcaaaaccgctggctgccgcgtcaaaacccgttttaccactggcaattaaatacagcagcgccgctgcaacaataccgccgacaacctgggcaattacgtagccaacgacttcttttgccggaaaacgtccgccagcccataaaccaatagtgaccgccgggttaaaatgaccaccagaaatatgaccaacagcaaaggccatcgtcagaacggtcagaccgaacgccaacgccacgccggcaaaaccaatgcctaattccgggaagcctgcggccagtacagcactaccacagccaccaaaaacaagccagaaagtaccaaaacattcagctgctaattttctgaacatatccaccacaattaaaaattgaccctgtgaaaaatatggtcgttttatagggtcgtcgtaaaaaagtgacgacggaaataatgcgcggctattttaaaaacgaaggcgagtcattcaccagataaataaatccagtaaatttgatttagggcaacagcgggttgccccatatagtcatttgtctgattgacagtgtagtgcacgcaaaagatttaatcctttaggcgtaataaaaaataatttatcatgctaattatttgattttgttgtttttgcagacttatcagcaagagggagtataacgcgattattcgctcatttttcagacatttgccatgcttaaatgtgatgtcatcacgtattagcaaggcctttcccgttatactgccagcgtaaaggataagtcacatatttctggaggggatatgattcttgagcgcgttgaaattgtgggttttcgcggtatcaaccgtttgtcgttgatgctggaacaaaacaacgtcctgattggggagaacgcgtggggtaaatccagcttgctggacgccttaactctgctgctatcgccagaatcagatctctaccattttgagcgcgacgatttctggttcccgccgggagatatcaacgggcgagaacatcatctgcatattattttgaccttccgcgaatcgctgccaggccgacatcgggttcgccgttatcggccgctggaagcgtgctggacgccatgcaccgatggctatcaccgtattttttatcgtctggaaggggagagtgcggaagacggcagcgtgatgacactgcgcagttttctcgataaagacggacatccgattgatgtcgaggatattaacgatcaggcacgccatctggtgcgtttaatgccggtgctgcgcttgcgtgatgcccgttttatgcgccgtattcgtaacggcacggtgccaaatgtccctaatgtggaagtcaccgcgcgccagctcgatttcctcgcccgtgagttatcctcacatccgcaaaatctctctgatgggcagattcgtcagggactttccgcaatggtacagctgcttgagcattatttctctgagcagggggccggacaggcgcgatatcgtttaatgcggcggcgagccagcaatgagcaacgaagctggcgctatctggatatcatcaaccggatgattgaccgacctggtgggcgctcgtatcgggttattttgctcggcctatttgctactttgttgcaggcaaaaggcacattgcgactggataaagacgcccgtccattgttgctgatcgaagatccagaaacccgtttacaccccattatgctttcagttgcctggcatctgttgaatcttctgccattgcagcgcattgccaccaccaactcgggtgagttgctttcgttaacgccggtagagcatgtttgccgactggtacgtgagtcctcgcgcgttgccgcctggcgtctggggccgagtggcttgagtaccgaagatagccgacgcatatcctttcacattcgttttaaccgtccgtcatcgctgtttgcacgctgctggttgctggtggaaggggaaacggaaacctgggttatcaatgaactggcgcgtcagtgcggacatcattttgatgccgaagggatcaaggtcattgagtttgcccagtccgggctaaagccactggttaaatttgcccgccgaatggggattgaatggcatgtactggtcgatggcgatgaagcagggaagaaatatgccgctacggtacgcagcctgttgaataacgatcgggaagccgaacgagaacatttaacggcgttaccggcgctggatatggaacattttatgtatcgccagggattttccgatgtgttccaccgcatggcgcaaatcccggaaaatgtaccgatgaatctacgcaaaattatctcgaaagcgatccatcgctcttccaaacccgatcttgccattgaagtggcaatggaggcaggacgtcgtggtgtggactccgtaccgacgctgctgaaaaaaatgttctcacgcgtgctgtggctggcgcgcggtcgcgcggattaaccgcgaaacatcgtggccatttgtggctgaatagcgtcgagcatctcatagcgccgacggtattcagcccgttttttactggcgatttcggcaatctcttttcgtgctatctgtgctggaaggcggtaatggcgttcagcatcacatacgccgccaaccgattcccagaaagcgttgtaatcagcgtggatcttgccttctttatcgcgataacgcaggctgcggtaaatatgcgtttcattgctgacggcaataatctgctctacctgcaaacgttgggcaaacagacaggccgcttccatcacgaggcgtttgggaaatagcccgtggcaggctttcgtcgcattctggatttcctgatgtggaatttcccattttgcgccttgcagtccgccaataaacatcgttcttttcccctgatattcacacagggtaaacgtgatctctgccagaggaataccttcgctgttgcggaacaggattgtgctgtcaccttctttatccattgagatcatcatggtcagctcaagcgtgaactgctcgccgtttttgccttccagcttcgccagttgcagcccgggggtattcaaatataagctgaattcttccgccgacatacattcgcggagtaacgcataatggtaacgtaacgcctccagcaattgcttacggctaagattcgccgcaaggtaagggcgatgcagacgcacaggcagtcgcggctggcgcgttaacaatacattgagattaggccagtgggaaagttcgttcatccactcaacgcttaaacgcggcataatcaacgagcgcagcaaaaatttctggcgaaaactacggcgatgccagaatttacccggccgacactgtccacgtgccagactaagaaaaagtgacaggctgctgagagattcagatggcgtaaaggtccgttcagttagctgcgacatattcatgaaatcaatggttatacatggcgtcgatttcaccattgcgtatcttaaccaaacatcaatagtgtgattactaacgtaaattttagggttttgttgatatttcgttgaagttaatgacccggattggcatatggagtattcagaaaatttatgaaaaagcggaaaaccgtgaagaagcgttacgttattgcgctggtgatagtcatcgccggactgattacgttatggagaattcttaacgcacccgtgccgacttatcagacgctgattgtgcgccccggtgatttacagcaaagcgtgctggcgaccggaaagctggacgcgctgcgtaaggttgatgtgggcgcgcaggtcagcggtcagttgaaaactctgtcggtggcgattggcgataaagtaaaaaaagaccagcttttaggggttattgatcctgaacaggctgaaaaccagattaaggaggtcgaagcaacgctgatggagctacgtgcgcagcggcagcaggcggaagcggagctgaaactggcgcgggtgacgtattcccgtcagcaacgtctggcacaaacgaaggctgtttcacagcaggatctcgacaccgccgcgacggagatggctgtgaaacaggcgcaaattggcaccattgacgcgcaaatcaagcgcaatcaggcttctctcgatacggctaaaaccaatctcgattacactcgcatcgttgccccgatggccggggaagtcacgcaaatcaccactctgcaaggccagacggtgattgccgcacaacaagcaccgaacattctgacgctggcagatatgagcgccatgctggtaaaagcgcaggtttctgaagcggatgtaatccacctgaagccggggcaaaaagcctggtttacggtgcttggcgatccactgacgcgctacgaggggcaaatcaaggatgtactaccgacgccggaaaaggttaacgacgctattttctattacgcccgttttgaagtccccaaccccaatggtttgctgcggctggatatgactgcgcaagtgcatattcagctcaccgatgtgaaaaatgtgctgacgatccctctgtcggcgttaggcgatccggttggcgataatcgttataaagtcaaattgttgcgtaatggtgaaacacgcgagcgtgaagtgacgattggcgcacgtaacgataccgatgttgagattgtcaaagggcttgaagcgggcgatgaagtggtgattggtgaggccaaaccaggagctgcacaatgacgcctttgctcgaattaaaggatattcgtcgcagctatcctgccggtgatgagcaggttgaggtgctgaagggcatcagcctcgatatttatgcgggtgagatggtcgcgattgttggcgcttcgggttccggtaaatcgaccctgatgaatattctcggctgtctggataaggccaccagcggcacctatcgcgtcgccggtcaggatgttgccacgctggacgccgatgcgctggcgcaactgcgccgcgagcatttcggctttattttccagcgttaccatttgctttcgcatttaaccgccgagcagaacgttgaagtacccgccgtctatgctggtcttgagcggaaacagcgactgcttcgtgcccaggagttgctgcaacggctggggctggaagaccgtacagagtattatccggcacagctttcgggtggtcagcaacagcgcgtcagcatcgcgcgggcattgatgaacggtggtcaggtaattcttgccgatgaaccaaccggcgcactggacagccattctggcgaagaggtgatggcgatcctgcatcagctgcgcgatcgtgggcatacggtgattatcgtcacccacgatccgcaggtcgctgctcaggccgagcgggtgatcgaaattcgcgacggcgaaattgtgcgcaatcctcccgccattgaaaaagtgaatgttactggcgggacggaacctgttgtcaacacggtgtctggctggcggcagtttgtcagcggttttaacgaggcgctgacgatggcatggcgggcgctggcagcgaataaaatgcgtactttactgaccatgctggggattattatcggtattgcgtcggtggtttccattgtcgtggtgggtgacgccgccaaacaaatggtgctggcggatattcgttctattggtacgaatactattgatgtctatcccgggaaagattttggcgatgacgatccgcaatatcagcaggcgctgaagtacgacgacttaatcgccatccaaaaacaaccgtgggtcgcctcagccacacctgccgtctcgcaaaacctgcgcctgcgttataacaatgttgatgttgctgccagtgccaatggcgtgagcggcgattattttaatgtctatggcatgaccttcagtgaaggaaacacctttaatcaggagcagctgaacggtcgtgcgcaggtcgtggttctcgacagtaatactcgccgccagcttttcccccataaagcagatgtggttggcgaggtgattctggtcggcaatatgcccgccagagtcattggtgtggcggaagaaaaacagtcgatgtttggtagcagtaaagtgctgcgtgtctggctaccttacagcacgatgtccgggcgagttatgggccagtcgtggcttaactccattactgtcagggtgaaagaaggatttgacagcgccgaggcggaacagcaactcacgcgtttactttcactgcgccacggaaagaaggatttctttacctggaacatggacggcgtcttgaaaactgttgaaaagaccacacgtactttacaactgtttctgacgctggtggcggtgatttcgctggtggtgggcggtattggtgtaatgaatattatgctggtgtcagtgaccgagcggacgcgggaaattggcattcgcatggctgtaggtgcgcgagcaagcgatgttttgcaacagttcctgatcgaagccgtactggtttgcctggtcggtggcgcgttgggaataacactgtcactgttaattgctttcaccttgcagcttttcttacccggctgggagattggtttttcaccgttggcgctgctgctggcgtttctctgctcgacggtcaccgggattttatttggctggttacccgcacgaaatgcggcacgactggatccagtagatgctctggcacgagagtaatttttgagataaaaatgccagccgatcgggctggcattttgcctttaggatgtacacaatgagacagaagagctatgcgactgccgcttctacttcgacgggcacaataacactggcgtgattgccttttggcccctggtggacatcaaactgaacggattgtccagcttttagcgttctgtaaccatccatctgaatggtggaataatgagcgaaaatatcttcgccgccgccttcagggcagatgaaaccaaaccctttggcattgttgaaccacttaacagtacccttttccatgcttcgacatccttcgcaaatcttatacaagtaagatggaataaaccggggtcagagagggggctgttcaaaacctcgccaactctagaaatacaatttagagaattagggcgagccgtcaagcatttgacaggggacaaggggcaggtatgaatcaaaaatttgaagcagttaacgctattgacaggaatgtgacagatgtcgctgatgccaacgatagatgatagttatctatcatgtggagtagattggtcaggcaaataagctcttgtcagcggcagggcgttctgccgataaccgtaaccgaagatgataactgacaatgggtaaaacgaacgactggctggactttgatcaactggcggaagaaaaagttcgcgacgcgctaaaaccgccatctatgtataaagtgatattagtcaatgatgattacactccgatggagtttgttattgacgtgttacaaaaattcttttcttatgatgtagaacgtgcaacgcaattgatgctcgctgttcactaccaggggaaggccatttgcggagtctttaccgccgaggttgcagaaaccaaagtggcgatggtgaacaagtacgcgagggagaatgagcatccattgctgtgtacgctagaaaaagcctgaatgcaggcataaaaattgggggaggtgcctatgctcaatcaagaactggaactcagtttaaatatggctttcgccagagcgcgcgagcaccgtcatgagtttatgaccgtcgagcacttgttactggcgctgctcagtaacccatctgcccgggaggcgctggaagcgtgttctgtggatttggttgcgctccgtcaggaactggaagcctttattgaacaaaccacacccgttctgcctgccagtgaagaggagcgcgacacacagccgacgctgagttttcagcgtgtactgcaacgtgcggtcttccatgtccagtcctccggtcgcaatgaggttaccggtgcaaacgttctggtcgctatctttagcgaacaggagtcgcaggcggcatatctgttgcgtaaacatgaagtcagccgtctcgatgtggtgaactttatctctcatggcacgcgtaaagacgagccgacacagtcttctgatcctggcagccagccaaacagcgaagaacaagctggtggggaggaacgtatggagaatttcacgacgaacctgaatcagcttgcgcgcgtgggcggaatcgacccactgattggtcgtgagaaggagctggagcgtgctattcaggttctctgccgtcgccgtaaaaacaacccgctgctggtgggggaatctggtgtcggtaaaaccgcgattgcggaaggtcttgcctggcgaattgttcagggcgatgtgccggaagtgatggctgactgtacgatttactctctcgatatcggttctctgttagcgggcacaaaatatcgcggcgactttgaaaaacgttttaaagcgttgctcaagcagctggagcaggacactaacagcatcctgtttattgatgagatccacaccattatcggtgcgggtgcagcgtctggtggtcaggtcgatgcggctaacctaatcaaaccgttgctctccagcggtaaaattcgtgtaattggttcgacaacctatcaggagttcagcaacattttcgagaaagaccgtgctctggcgcgtcgcttccagaaaattgatattactgaaccgtcgatcgaagaaactgttcaaatcatcaatggcctgaaaccgaagtatgaagcgcaccacgacgtgcgttataccgcaaaagcggtgcgtgcggcggtagagctggcggtgaaatacattaacgatcgtcatctgccggataaagccattgatgttatcgacgaagcgggcgctcgcgcacgcctgatgccggtaagcaaacgcaagaaaaccgttaatgtggcggatattgagtccgtggtggcccgtattgcacgcattccagagaagagtgtttctcagagtgatcgtgataccctgaaaaacctcggcgatcgcttgaaaatgctggtcttcggtcaggataaagccattgaggcgctgactgaagccattaagatggcgcgtgcaggtttaggtcacgaacataaaccggttggttcgttcctgtttgccggccctaccggggtcgggaaaacagaggtgacggtacagctttcgaaagctttgggcattgagcttctgcgctttgatatgtccgagtatatggaacgccataccgtcagccgtcttattggtgcgcctccgggatacgttggttttgatcagggcggtttgctgactgatgcggtcatcaagcatccacatgcggtgctgctgctggacgaaatcgagaaagcgcacccggacgtgttcaatattctgttgcaggtgatggataacggtacgctgaccgataacaacggacgcaaagcagacttccgtaacgtggtgctggtgatgaccaccaacgccggggtacgggaaactgagcgcaaatccattggtcttatccaccaggataacagcaccgatgcgatggaagagatcaagaagatctttacaccggaattccgtaaccgtctcgacaacattatctggtttgatcatctgtcaaccgacgtgatccatcaggtggtggataaattcatcgtcgagttgcaggttcagctggatcagaaaggtgtttctctggaagtgagccaggaagcgcgtaactggctggccgagaaaggttacgaccgggcaatgggcgctcgtccgatggcgcgtgtcatccaggacaacctgaaaaaaccgctcgccaacgaactgctgtttggttcgctggtggacggcggtcaggtcaccgtcgcgctggataaagagaaaaatgagctgacttacggattccagagtgcacaaaagcacaaggcggaagcagcgcattaatctgattgttaggtaggttggtcaagtccgtaatctcgaaagaggttacggactttttgtttatggggtggaggaggttcagaccctttttttaatgatgatggtaagttgttgataattagtgctgcgggaaggtaaggataaaaaagggtgctgcaggagaatgggatggttttgctttattaacaacgggctaaacgtgtagtatttgagttcactgccgtacaggcagcttagaaattcacaggtaacatactccacccgcccaccatgttcactgccgtacagacagataaaatgcgaaaaaaaagctcgcactttcgtacgagctcttctttaaatatggcggtgagggggggattcgaacccccgatacgttgccgtatacacactttccaggcgtgctccttcagccactcggacacctcaccaaattgttttgctaccaaacctcatgggtggcaacggggcgctactatagggagttggagtaaaacggtcaagaagaattttaatgataattattgtttgctcatactgtaaacaagttgtgcagtatatctacatcgagacaagttacggacttatacttccaaagtacttcatacatatcacaaaataaaaaggccggttaaaccgaccttttactcgttctttctcttcgcccatcaggcggtaaaacaatcagcgactacggaagacaatgcggcctttgctcaggtcgtacggggtcagttcaacagtcactttgtcgcccgtcaggatgcggatgtagtttttgcgcattttaccggagatgtgtgcagtaaccacgtgaccgttttctaactctacgcggaacatggtattaggcaacgtttcaagaacggtaccttgcatttcaatattgtcttctttggccatctaatcctctggggtatcactaccgtaatttgaaccggcaagataatgccgaagttctgtaaataagtaaagatttgcgcgctaaatcgcaacaaacaggttcggcacattactccgaaaacacacggctaagccgcaccaaaagcgcaacgtataagggagcggtgagataaacgatgggcgttacctgacgcgaaaaattccttatcggcagcggggtaatgagcgtaaccaactctgcgaccgcaattataacactctggggagaaatgtgccgaaaacattcattcttgtggtgaaaacaagcatcgtggtacccagaaattattcggcaatcgtccgaggcgcatttgattgagataattaaggtaatcccggcggggaatttcgcaggcaccaagcgatgctgtgtgatcgttaaggacctggcagtcgataagcttaccgccatgaccgataaattcctcacagaataccagaagcgccgttttagacgcattttccatccggctgaacatggactcgccacaaaatagcgttccctgggccacgccgtacataccgccgacaagctcatcttcacgccagacttcaatggagtgggcatggccgagttcgtgaaggcgatggtaggcttcgaccacgccacgcgtgatccaggttccttcttcgcgatcgctggcacagccttcaatgacctgaccaaaagcgtaattcatcgtgacacgatagggcgagcgtttatgaaatcgcttcatactacggctgatatgcagtgattctggccatagcaccgcgcggggatcgggcgaccaccagaggatggggtcgcctggagaaaaccacggaaaaataccacgctggtaagccattaacaggcgcgcagggctaagatcgcccccaagtgccagcaggccgttaggctcacgtaatgcgccttccggggaagggaaggctattgaatggcgagaaagctgaaccaggcgcatgaccgcaaaactccacgcaagtcggatcgttcaataatagcttacaaaccctgcttgaactggtaataacgcccctgtctggcaagcagttctgcgtgagtaccttgctcaataatttgcccgttgtccatcactattatttgttggaaacgagagagtccgcgaagtcgatgggtgaccattaacaccgttttctcacgcatcatttctgcaagcaattcaaggatctggctttcggttgtggcatctaagccttcggtaggttcatccagcaacaccagtggcgcatcatgtaacagcgcacgggcgatagccagacggcgcagttcaccaccggagagctggcgtccgccttcacctaaccaactgttgagacctgcatcctcgagcagcttttccaggccaacgcgacgcaagatctccgacagagcctcatcactactgccaggcgaggcgagtaaaagattatcacgcagcgtggcgctaaacagatgcactcgctgaggaacaacgctgatggtctgtcgtagagccgcttcattcaggctggctatggggctatcgttaagcaaaatctcgccctgttgcgggtcccatgcgcgggtcagctgttgtaacagtgttgatttgccgcatccggttcgcccgagaatcgctatatgttccccggcgtttacctgaagagaaatccctttaagtgcctgttgagattgctccggataagtgaactgaacatcccgtaacgtcagcgaaacgcgatcggcaacacgagtttgggtatcaggaaaggtgacctccggtttttgatccgttaagtcagagatacgtacggcagaggcaatgacttgccccagatgctgaaatgcacccgttactggtgccagtgcttcaaacgcggctaacgcgcagaagacaaacagggcaattaacgcgccgggttgagcattgccgccaacgccgccagacgccatccacagcatcaggatcaccgctaacgcgccaatgagcagcattatcgcttgcgacaatgcggtcagttcagattgacggcgttgcgcttccagccattgaatttctgtattctctagttgcgtgcgataacgatcgctggcaccaaaaatggtcagctcagcttgcccttgcagccaggccgtcagttgttggcgatactgtccgcgaagatgagtcagattttgcccggtgctttttcccgcacgataaaacagcggtggcatcaggaaaagcgtcagtaacataatgccgcccagcgtaaaggcgagggtgaaatcaaggaaacttaacccgattgtcaccaccataatcaccacaaaagcgcccaccagcggcgagataacgcgcaggtaaagatgatcgagcgtatcaacatccgccaccacgcgattgagcaattcgccctgacgatagcgcgccagtccggcaggggagaggggcagcaatttgctgaaggtgtaaatgcgcagatgctgcaacacgcggaaagtcgcgtcgtgacttaccagacgttcaaaatagcgcccggcagtacgggtgattgctgcgccacgcacgcccgcagcgggtagcatatagttgaagctgtacagtccggcaacccccgcaaccgctgaggccgagaggaaccagccggaaagtgtcaacagaccgatactggcgagcagcgtcacaattgccagcacaataccaagacttaacatccatttatgacgtttatacagtgccagatagggtagcaaagcgcgcatttaaatctcctcctgacgatgggccagtaatgtggcgaatgggccaccagccacacttaattccgcgtaacgtccttgctcaataatccggccatcctgcataacccaaatgacatcccagtcagcaagatcttctaactggtgggtgaccattaacgttgtctggcgcagagaggcggcattcagcgcctccattacgcgctgttcactgtgagcatcaaggctggcagcgggttcatccaacagtaatagcgaacagggatttagtaacgcacgggccaccgccacgcgctgcgcctgccccacggaaaggcgggcagcctggtcgccaacaggcgtatcaacgccttgtgggaggagcggtagaaactcgctgacccaggcgttatccagcgctgcttgtaattcttgttcgctggcatcaggtcgcgccagtagtacgttatcccgcaatgttgctgccggtaattgtgggttttgcccaacccaggagagatgtttacgccatgattctggtgataaatcgcgtaattctatcccgttgattcgtagcgatccctgatatgagagaaaaccagaaagcgcgttcagcagtgagcttttacctgaaccgctgcgaccaaccaacaccgcacgttggcctgctggcaaagtaaagttcagcggtccggccagcgttttaccttccggcgacgtgataaacagctcctcggcctcaatggtcaccggatcggtcgatgctaattccgcctcaccacgttgcggatgggcgagcggggtttccataaacgttttcagactgtcagctgcgccaacagcctgggctttagcatgataaaacgtaccgagatcgcgtaatggctggaaaaactctggcgcaaggatcagggccagaaaacccgcagccagcgtcacaccggtatcgtagtgaccaaaatccagctcgccgagataggaaaaaccaaagtagaccgccaccagagcaattgacagcgaggtaaaaaattcgagaatgccggaggataaaaacgccagccgtagcacttccattgtccgttggcggaaatcttccgaagcagaacgaatactttcaatttcagcttcaccacgaccaaaaatacgcaatgtttccatgccgcgcaggcgatcgaggaaatgcccacttaagcgagcaagagcgagaaagttacgtcggttagcatcggcagcccccattccaaccagcgccataaacaacggaattaacggtgcagtgcccagcagaatgagcgccgcagcccagttagaggggaagattgccaccacaatcagcaacggcaccgacactgccagcgccatttgcggcagatagcgtgcatagtaatcatgcatatcgtcaatttgctcgagtaccagcgtcgcccagctccccgcaggtttaccctgaatccacgctggccctgcttgttgcagacggtcgagaacctgacggcggatggcaaagcggatatgctgcccggcgtgataacccacccgttcgcgtaaccagaccacccatgcgcgcagtacaaaggtcagaaccagtaacgtaaagggaagcagcagggcttcacggggaatattctccataatcatatgttgcagaattcgcgccatgaaccaggcctgggcaatgatcaatatgccgctcacaaagcccagcagacgagaaatattcagccaacgttgggagatgacgctttgctgttttaaccagcgggttaactctttttgacgagatttattcattgcacgcttagcaggtgagttatcagaattatttgcagagcaatgttacaacggggaaaaaataaaggcgacccatagtcgcatggtgtcgccttctttacttttgttactgatttgtaaaattattttgcgtcagctaaaccatcgaggtagcgttccgcatcaagtgctgccatgcagcctgtaccggccgaagtaatggcctggcgataaatgtgatccatcacgtcgcctgcggcaaagacgccaggaatgctggtctgggtggcattaccatgaatacccgactgtactttgatgtagccgttttccagttccagctgcccttcgaaaatcgcagtattcgggctgtgaccgatagcaacaaacagaccggcaacgtcgagtgactcgatgttatcgctgttttgcgtatcgcgcagacgaacgccagtgacacccatttgatcgccggtcacttcttccagcgtacggttggtgtgcagaatgatgttgccgttctccactttatccatcaggcgcttaatgaggattttttccgcgcggaaaccgtcacggcggtgaatcagatgcacttccgaagcgatgttagacagatacagcgcctcttcaaccgcggtattgccgccgccgatgaccgcaactttctggttgcgatagaagaaaccgtcgcaggttgcacaagcagaaaccccacggcctttaaaggcttcttcagagggcaggccgagatagcgtgcagaagctccggtggcaataatcagcgcgtcgcaagtgtattcgccgttatcgccattcagacggaacggacggttttgcagatccaccttgttgatatgatcaaaaatgatctcagtttcaaacttggtggcatgttcgtgcatgcgctccattaataacggaccggtcagatcgtttggatcgccaggccagttttccacttccgtggtggtggtcagttggccgcctttttccatgccggtaatcagcacaggttgcaggttggcgcgcgccgcgtagacagcagcggtgtatcccgccgggcctgaacccaggataagcagtttactgtgtttggtcgtgcccatgagatccccatagttgttggcagacaatgggcaggattgtagggaatttacagacgtaaaaaaagagtatgacgattttgttaacaatttgtgcaatcggcagcatcgataagcaggtcaaattctcccgtcattatcacctctgctacttaaatttcccgctttataagccgattaaatgatgaataaacgcccctgttaatgaatatctggcatgttgtactaaaaatcgatgttttgctttgacaatcccctggtgttttgcgaaaacattcgaggaagaaaaaaaacagtattcttatatgcgcataaccatgcatgtaaataccatgtttaccgtgctagtgaaatctacgtatggcgtggacagacgccattcgtgatgtcgatagctgccacaaggcaacggtcttctcaccgtagacccaggcattgcgcgccgtgaatcttcatgatttcggtctatcgtgacgggtagcgactctgaacagtgatgtttcagggtcagacaggagtagggaaggaatacagagagacaataataatggtagatagcaagaagcgccctggcaaagatctcgaccgtatcgatcgtaacattcttaatgagttgcaaaaggatgggcgtatttctaacgtcgagctttctaaacgtgtgggactttccccaacgccgtgccttgagcgtgtgcgtcggctggaaagacaagggtttattcagggctatacggcgctgcttaacccccattatctggatgcatcacttctggtattcgttgagattactctgaatcgtggcgcaccggatgtgtttgaacaattcaataccgctgtacaaaaacttgaagaaattcaggagtgtcatttagtatccggtgatttcgactacctgttgaaaacacgcgtgccggatatgtcagcctaccgtaagttgctgggggaaaccctgctgcgtctgcctggcgtcaatgacacacggacatacgttgttatggaagaagtcaagcagagtaatcgtctggttattaagacgcgctaacacggaacaggtgcaaaatcggcgtattttgattacactcctgttaatccatacagcaacagtactggggtaacctggtactgttgtccgttttagcatcgggcaggaaaagcctgtaacctggagagcctttcttgagccaggaatacattgaagacaaagaagtcacattgacaaagttaagtagcggccgccgccttctggaggcgttgctgatccttattgtcctgtttgccgtctggttgatggctgccttactaagctttaacccttcggaccccagctggtcgcaaacggcctggcatgaacctatccataatttaggtgggatgcccggtgcgtggttggcagatacgctgttctttatttttggcgtgatggcttacaccattcccgtcattattgtcggcggttgttggtttgcctggcgtcatcagtccagcgacgaatacattgattattttgccgtttcgctacgcatcattggcgttttggcgctcatccttacctcctgtggtctggcggcaatcaacgctgacgatatctggtattttgcctccggtggcgtcattggcagcttactaagcactacgctacaaccactgctacacagtagcgggggaactattgcgctgctctgcgtttgggcagcgggcctgacgttgttcaccggttggtcatgggtgaccattgctgaaaaactcggcggctggattttaaacattctcaccttcgccagtaatcgtacccgtcgcgatgatacctgggtcgatgaagatgagtatgaagacgacgaagagtatgaagatgaaaatcacggcaaacagcatgaatcacgccgtgcccgtattcttcgcggcgcgctagcgcgtcgtaaacggttggcggaaaaattcattaatccgatggggcggcaaacagacgctgcgttgttctccggtaagcggatggatgatgacgaagagattacctacactgcacgcggtgtggctgccgacccggacgacgtcctattttcgggcaatcgtgcaacgcagccagaatatgacgaatacgatccattattaaacggtgcgccaattaccgaacctgtcgctgtagcagctgctgctaccacggcgacacaaagctgggctgcgccggttgaacctgtgactcagacgccgcctgttgcctctgttgatgttccacctgcgcaacctacagtagcctggcagcctgtaccgggtccacaaacgggagagccggttattgctcctgcaccggaaggttacccacagcagtcacaatatgcgcagcctgcagtgcaatataatgagccgctgcaacaaccagtacagccgcagcagccgtattatgcacctgcagctgaacaacctgcgcaacagccgtattatgcccctgcgccagaacaaccggtggcaggtaacgcctggcaagccgaagagcagcaatccacttttgctccacagtctacataccagactgagcaaacttatcagcagccagccgctcaggagccgttgtaccaacagccgcaacccgttgaacagcagcctgttgtggagcctgaacccgttgtagaagagacaaaacccgcgcgtccgccgctttactactttgaagaagttgaagagaagcgagcccgtgaacgtgaacaacttgcggcctggtatcaaccgattccagaaccggttaaagaaccagaaccgatcaaatcttcgctgaaagcaccttctgttgcagcagtacctccagtagaagccgctgccgctgtttccccgctggcatctggcgtgaaaaaagcgacactggcgacgggggctgccgcaaccgttgccgcgccagtcttcagtctggcaaatagcggtggaccgcgtcctcaggtcaaagaggggattggtccgcagttgccacgaccgaaacgtatccgcgtgccaactcgtcgtgaactggcgtcttacggtattaagctgccctcacagcgtgcggcggaagaaaaagcccgtgaagcccagcgcaatcagtacgattctggcgatcagtacaacgatgatgaaatcgatgcgatgcagcaggatgaactggcacgtcagttcgcccagacacagcagcaacgctatggcgaacagtatcaacatgatgtgcccgtaaacgcagaagatgcagatgctgcggcagaggctgaactggctcgtcagtttgcgcaaactcaacaacaacgttattccggcgaacaaccggctggggcgaatccgttctcgctggatgattttgaattttcgccaatgaaagcgttgctggatgatggtccacacgaaccgttgtttacgccaattgttgaacctgtacagcagccgcaacaaccggttgcaccgcagcagcaatatcagcagccgcaacaaccagttccgccgcagccgcagtatcagcagccacaacagccggttgcgccgcagccacaatatcagcagccgcaacaaccggttgcgccacagcagcaatatcagcagccgcaacaaccggttgcgccgcagcagcagtatcagcagccacaacagccagttgcgccacaaccgcaggataccctgcttcatccgctgttgatgcgtaatggcgacagccgtccgttgcataaaccgacgacgccgctgccttctctggatttgctgacaccgccgccgagcgaagtggagccggtagatacctttgcgcttgaacaaatggctcgcctggtggaagcgcgtctggctgatttccgtattaaagccgatgtcgtcaattactctccggggccggttatcactcgctttgaattgaacctggcaccgggcgtaaaagcggcgcgcatttctaacttgtcacgggaccttgcccgttcactttcgacggtggcggtgcgtgtcgttgaagttattcctggcaaaccctatgtaggtctggagttaccgaataaaaaacgacaaaccgtttatctgcgcgaagttttggataacgccaaattccgcgataatccgtcgccattaaccgtggtgctgggtaaagatatcgccggtgagccggtggttgccgatctggcgaaaatgccgcacttgttggttgcggggactaccggttccggtaaatctgtcggtgtgaacgcgatgatcctgagcatgctttataaagcacagccagaagatgtgcgtttcatcatgatcgacccgaaaatgctggagctttcggtttatgaaggcattccgcatctgttaacggaagtcgttactgatatgaaagatgccgccaacgcgctgcgctggtgtgttaacgagatggagcgtcggtataaactgatgtctgcgctgggtgtgcgtaatctggcgggttataacgaaaaaattgctgaagccgatcgcatgatgcgtccgattccagacccgtactggaagccgggtgacagtatggatgcccagcatccggtgctgaaaaaagaaccatacattgtggtgttggttgacgaatttgccgacctgatgatgacggtaggtaaaaaagtggaagagctgatagcacgtctggcgcaaaaagcccgtgccgcgggtatccacctcgtactggcaactcagcgtccatcggttgatgttattactggtctgattaaagcgaatattccgacccgtatcgcctttaccgtatccagtaagattgactcacgtaccattcttgatcaggctggcgcggaatcactgctgggtatgggggatatgctctactctgggccgaactccacgttgccggtacgtgtccatggtgcttttgttcgcgatcaggaagttcatgccgtggtgcaggactggaaagcgcgtggtcgcccacagtatgttgatggcatcacctccgacagcgaaagcgaaggtggtgcgggtggtttcgatggcgctgaagaactggatccgttgttcgatcaggcggtgcagtttgtcactgaaaaacgcaaagcgtcaatttctggcgtacagcgtcagttccgcattggttataaccgtgcagcgcgtattatcgaacagatggaagcgcaggggattgtcagcgaacaggggcacaacggtaatcgtgaagtgctggccccaccgccgtttgactaactaatgcatcgtatgccggataaggcgcggtagcgtcgcatccggcactctatcaactgaaaattcagtattttcttctttcctcaagctgattattagcctggaatagagagtagagggaactcccgatcgggagtgacgtaatttgaggaataatgatgaaaaaaattgccatcacctgtgcattactctcaagcttagtagcaagcagcgtttgggctgatgccgcaagcgatctgaaaagccgcctggataaagtcagcagcttccacgccagcttcacacaaaaagtgactgacggtagcggcgcggcggtgcaggaaggtcagggcgatctgtgggtgaaacgtccaaacttattcaactggcatatgacacaacctgatgaaagcattctggtttctgacggtaaaacactgtggttctataacccgttcgttgagcaagctacggcaacctggctgaaagatgccaccggtaatacgccgtttatgctgattgcccgcaaccagtccagcgactggcagcagtacaatatcaaacagaatggcgatgactttgtcctgacgccgaaagccagcaatggcaatctgaagcagttcaccattaacgtgggacgtgatggcacaatccatcagtttagcgcggtggagcaggacgatcagcgcagcagttatcaactgaaatcccagcaaaatggggctgtggatgcagcgaaatttaccttcaccccgccgcaaggcgtcacggtagatgatcaacgtaagtagaggcacctgagtgagcaatctgtcgctcgatttttcggataatacttttcaacctctggccgcgcgtatgcggccagaaaatttagcacagtatatcggccagcaacatttgctggctgcggggaagccgttgccgcgcgctatcgaagccgggcatttacattctatgatcctctgggggccgccgggtaccggcaaaacaactctcgctgaagtgattgcccgctatgcgaacgctgatgtggaacgtatttctgccgtcacctctggcgtgaaagagattcgcgaggcgatcgagcgcgcccggcaaaaccgcaatgcaggtcgccgcactattctttttgttgacgaagttcaccgtttcaacaaaagccagcaggatgcatttctgccacatattgaagacggcaccatcacttttattggcgcaaccactgaaaacccgtcgtttgagcttaattcggcactgctttcccgtgcccgtgtctatctgttgaaatccctgagtacagaggatattgagcaagtactaactcaggcgatggaagacaaaacccgtggctatggtggtcaggatattgttctgccagatgaaacacgacgcgccattgctgaactggtgaatggcgacgcgcgccgggcgttaaatacgctggaaatgatggcggatatggccgaagtcgatgatagcggtaagcgggtcctgaagcctgaattactgaccgaaatcgccggtgaacgtagcgcccgctttgataacaaaggcgatcgcttttacgatctgatttccgcactgcataagtcggtacgtggtagcgcacccgatgcggcgctgtactggtatgcgcgaattattaccgctggtggcgatccgttatatgtcgcgcgtcgctgtctggcgattgcgtctgaagacgtcggtaatgccgatccacgggcgatgcaggtggcaattgcggcctgggattgctttactcgcgttggcccggcggaaggtgaacgcgccattgctcaggcgattgtttacctggcctgcgcgccaaaaagcaacgctgtctacactgcgtttaaagccgcgctggccgatgctcgcgaacgcccggattatgacgtgccggttcatttgcgtaatgcgccgacgaaattaatgaaggaaatgggctacgggcaggaatatcgttacgctcatgatgaagcaaacgcttatgctgccggtgaggtttacttcccgccggaaatagcacaaacacgctattatttcccgacaaacaggggccttgaaggcaagattggcgaaaagctcgcctggctggctgaacaggatcaaaatagccccataaaacgctaccgttaatgttatcgttgcggtaatgttgttactgtatccctgtggtcgcaggctgtggccacatctcccatttaattcgataagcacaggataagcatgctcgatcccaatctgctgcgtaatgagccagacgcagtcgctgaaaaactggcacgccggggctttaagctggatgtagataagctgggcgctcttgaagagcgtcgtaaagtattgcaggtcaaaacggaaaacctgcaagcggagcgtaactcccgatcgaaatccattggccaggcgaaagcgcgcggggaagatatcgagcctttacgtctggaagtgaacaaactgggcgaagagctggatgcagcaaaagccgagctggatgctttacaggctgaaattcgcgatatcgcgctgaccatccctaacctgcctgcagatgaagtgccggtaggtaaagacgaaaatgacaacgttgaagtcagccgctggggtaccccgcgtgagtttgactttgaagttcgtgaccacgtgacgctgggtgaaatgcactctggcctcgactttgcagctgcagttaagctgactggttcccgctttgtggtaatgaaagggcagattgctcgcatgcaccgcgcactgtcgcagtttatgctggatctgcataccgaacagcatggctacagtgagaactatgttccgtacctggttaaccaggacacgctgtacggtacgggtcaactgccgaaatttgctggcgatctgttccatactcgtccgctggaagaagaagcagacaccagtaactatgcgctgatcccaacggcagaagttccgctgactaacctggtgcgcggtgaaatcatcgatgaagatgatctgccaattaagatgaccgcccacaccccatgcttccgttctgaagccggttcatatggtcgtgacacccgtggtctgatccgtatgcaccagttcgacaaagttgaaatggtgcagatcgtgcgcccagaagactcaatggcggcgctggaagagatgactggtcatgcagaaaaagtcctgcagttgctgggcctgccgtaccgtaaaatcatcctttgcactggcgacatgggctttggcgcttgcaaaacttacgacctggaagtatggatcccggcacagaacacctaccgtgagatctcttcctgctccaacgtttgggatttccaggcacgtcgtatgcaggcacgttgccgcagcaagtcggacaagaaaacccgtctggttcataccctgaacggttctggtctggctgttggtcgtacgctggttgcagtaatggaaaactatcagcaggctgatggtcgtattgaagtaccagaagttctgcgtccgtatatgaacggactggaatatattggctaatacccaatttttctgaatctaaaaagcgcctgcgggcgctttttttgtctccctttgataccgaacaataattactcctcacttacacgtaatactactttcgagtgaaaatctacctatctctttgattttcaaattattcgatgtatacaagcctatatagcgaactgctatagaaataattacacaatacggtttgttactggaatcaatcgtgagcaagcttgagtgagccattatgaaaacgaaaatccctgatgcggtattggctgctgaggtgagtcgccgtggtttggtaaaaacgacagcgatcggcggcctggcaatggccagcagcgcattaacattaccttttagtcggattgcgcacgctgtcgatagcgccattccaacaaaatcagacgaaaaggttatctggagcgcctgtacagttaactgtggtagtcgctgcccgctacgtatgcacgtcgtggacggtgaaatcaaatatgtcgaaacggacaataccggcgatgacaattacgacggcctgcaccaggttcgcgcctgcctgcgtgggcgttccatgcgtcgccgtgtctacaatccggaccgcctgaaatatccgatgaaacgagtcggggcgcgcggtgaaggcaaattcgagcgcattagctgggaagaagcctacgacatcatcgcgaccaatatgcagcgcctgatcaaagagtacggcaacgagtctatctatctgaactatggcaccggtacgctgggcggcaccatgacccgctcctggccgccgggaaataccctggtcgcgcggctgatgaactgctgcggcggctatctgaaccattacggcgactactcctccgcgcaaattgcggaaggtttgaactatacctacggcggctgggcagatggcaacagcccgtcggatatcgaaaacagtaagctggtagtgctgtttggtaataaccctggcgaaacgcgaatgagtggcggtggggtgacttactatcttgaacaggcacgccagaaatctaatgcccgcatgatcatcatcgatccgcgctataccgacaccggtgccgggcgcgaagatgagtggatccctattcgtccgggaacagatgccgcactggttaacggtctggcgtacgtcatgatcactgaaaacctggtggatcaggcattcctcgataaatattgcgttggctacgatgagaaaaccctgccagccagtgcgccgaaaaatggccactataaagcttatattctgggtgaagggccagatggcgtggctaaaacgccggaatgggcctcgcaaatcactggtgttccggcagacaaaatcatcaaattggctcgtgaaatcggtagtaccaaaccggcgtttatcagccagggatggggcccgcagcgtcacgctaacggtgaaatcgcaacccgtgctatctcgatgctggcgattctgaccggtaacgttggtattaacggaggcaacagcggcgcgcgtgaaggttcatacagcttaccgtttgtccgtatgccgaccttggaaaacccgatccagaccagcatttcgatgtttatgtggaccgatgccattgaacgtggcccggaaatgacggcgctgcgtgatggtgtacgcgggaaagataagctggatgtgccgatcaaaatgatctggaactatgccggtaactgcctgattaaccagcattctgaaatcaaccgtacccatgaaatccttcaggatgataagaagtgcgagctgattgtggttatcgactgccacatgacctcatcggcgaaatatgctgacatcctgctgcctgactgcaccgcttccgaacagatggactttgcgctggatgcatcctgcgggaatatgtcttacgtgattttcaacgatcaggtgattaaaccgcgctttgaatgtaagaccatctatgaaatgaccagcgaactggcaaaacgtcttggcgttgagcaacagtttactgaaggccgtacccaggaagagtggatgcggcatctgtatgcccagtcgcgggaagcgattcctgaactgccaacgtttgaagagttccgcaagcaggggatctttaaaaagcgcgacccacaagggcatcacgttgcttataaagccttccgtgaagatccgcaggcaaacccactgactacgccatcgggcaaaattgagatttattcgcaggcgctggctgacattgccgctacctgggaattgcctgaaggcgatgtgatcgatccactgccgatctacacgccgggctttgaaagttatcaggatccgctgaacaaacagtatccgctgcagcttacaggtttccactataaatctcgcgttcactcaacttacggcaacgttgatgtgctgaaagcggcttgccgtcaggaaatgtggatcaacccgcttgatgcccaaaaacgcggtatccacaacggcgataaagtcaggatctttaacgatcgtggtgaggttcatattgaggcgaaagtgacgccacgaatgatgccgggtgtggtcgcactgggtgaaggtgcctggtatgacccggatgcaaaacgtgtcgataagggtggttgtattaacgtactgaccactcaacgtccgtctcctctcgctaaggggaatccgtcacatacaaaccttgttcaggttgaaaaggtgtaaggagtaaccgatgacaacccagtatggattttttattgattccagccgttgcaccggttgcaaaacctgcgagctggcctgtaaagactacaaagatttgacgccagaagtcagcttccgccgcatttatgaatatgctggcggcgactggcaggaagataacggtgtctggcaccagaacgtgtttgcctactatctgtcgatttcatgtaaccactgcgaagatccggcttgtactaaagtctgcccgagcggtgcgatgcataaacgtgaagatggttttgttgtggtcgatgaagatgtgtgcattggctgccgctactgccatatggcttgcccgtatggcgcaccgcaatataacgaaacgaaaggccatatgaccaaatgcgatggttgttatgaccgtgttgcggagggtaaaaagccgatctgtgttgaatcttgtccgctgcgggcgctggatttcggccctatcgacgagctgcgtaaaaaacatggcgatctggcggccgttgcgccgttgccgcgagctcactttaccaaaccgaatattgtgatcaaacccaatgccaatagccgcccgaccggggataccactggctatctggcaaacccgaaggaggtgtgagatgggaagtggatggcatgaatggccgctgatgatcttcacggtcttcgggcaatgtgtagcaggtggttttatcgttctggctttggcgctgctcaaaggcgacctgcgagcagaagcccagcagcgtgttatcgcctgcatgtttggtttatgggtgctgatgggcattggctttatcgcctctatgctccatcttggttcaccaatgcgcgcttttaactcgctcaaccgggtaggggcttcagcactcagtaacgaaatcgccagcggttcgatcttttttgccgtaggcggcatcggctggttgctggcaatgctgaaaaagctgtcaccggcattgcgtacgctgtggctgatagtgacgatggttcttggcgtcatctttgtctggatgatggtgcgtgtgtataacagcattgataccgttccgacctggtacagcatctggacgccgatgggcttcttcctgacgatgtttatgggcggcccgttactgggttacctgttgttgagtctggctggcgtcgatggctgggcgatgcgtctgctgccagcaatttctgtactggcactggtagtgagtggcgtggtgtcagtgatgcagggcgcagagctggcgactattcatagttctgtgcagcaggccgcagcgctggtgccggactatggtgcgctgatgtcctggcggatcgtgcttttggccgttgccctgtgcttgtggattgcaccacagctaaaaggttatcagcctgcggttccgctactttctgtatcattcattctgcttctggcaggggaattaatcggtcgcggcgtattctatggtttgcatatgaccgtggggatggccgtcgcaagctaatcataacaaccggggtttcggccccggttctcttttatttctgcttcgttaacgtgtcataactggtcatcaaattacgataatcaggaatgtggttagagaacaacgtcgccagtccttcaatatcattacgccagtcgcgatgcagctcgcacgccacgccgaaccatgtcatcaattgcgcaccagcttgcgacaagcgatcccatgccgaatgccgggtaatttcattaaaggtccctgacgcgtcagtcacgacaaagacgtcaaacccttcttcaatggctgaaagcgccgggaatgccacgcaaacttcggttaccacaccggcaataattaactgttttttacctgtcgctttgacagcttttacaaaatcttcgttatcccaggcgttaatatttcccgggcgagcaatgtaaggtgtatcggggaattgtgctttcagttctggaactaatgggccgttaggaccggtttcaaaactggtggtaagaatagttggtaagttgaaatacttagccaggtcacccagcgccagcacgttatttttaaacttatcgggttcgatatcccgtacaagggaaagtaaaccagcctggtgatcaacaagcaaaacggcagcatcatttttatcaagacgaacatacggtttggtcatcctcttctcctttcgagagtcagtggtacgtctgaaatcgatcagacgcgatgcattgctctgaaagcatagacgggaaatatgagtttgctgtgaccatgaaatttttcgactgaacgaagcgtatgaaatttgtgttagttcaataaaaacaatcagatgagactaatcatctcttcagcattagcgttatgaatgagtaatataaatcgataataccgccgctgggatatcgcgtattttcacccattgacaatgtttttggcggtggcatgatgcgcatgaaatttgaacttcctcacggttttaattcatgtccacgtatacccagcctgtcatgcttttgctgtctggcctgcttttgttgactctggcgattgcggtgttaaatacactcgtgccgctttggctcgcccaggaacacatgtccacatggcaggtaggcgttgtcagctcatcctattttaccggcaaccttgtcggtacattgctgacagggtatgtcattaagcgcattggctttaaccgcagctattatctggcctccttcatttttgccgctggctgtgccggccttggcctgatgattggattctggagctggttggcttggcgttttgtcgcgggcgtcggctgtgccatgatttgggtggttgttgagagcgcgctgatgtgcagtgggacgtcacgtaaccgtgggcgtttgcttgctgcgtatatgatggtttattacgtgggaacgtttttaggccagttactggtcagcaaagtttcaaccgagctgatgtccgtattgccgtgggttacaggtttgacgttggcagggatcttaccgctgttgtttacgcgtgtgctgaatcagcaggctgaaaaccatgattcgacgtcaattacgtcaatgctaaaactccgtcaggcgcggcttggcgtgaatggctgcattatctcaggaatcgttctgggatctctatatggcctgatgccgctgtacctcaatcacaaaggggtgagcaatgccagcattggtttctggatggcggtactggtcagtgcgggtatccttggacaatggccgattggacgtctggcggataagtttggtcgactgctggtgttgcgtgttcaggtctttgtcgtcattctcggcagtatcgcgatgcttagccaggcggcgatggccccagcgttattcatcctcggtgccgctggctttacgctatatccggtggcgatggcatgggcttgcgagaaagttgaacatcatcaactggtggcgatgaaccaggccttactgttgagctatactgtgggaagtctgcttggcccgtcatttaccgctatgctaatgcagaatttctccgataatttattgtttatcatgatcgccagcgtatcgtttatctatttgctgatgctgctgcgcaacgccggtcatacgccgaaacccgttgctcacgtgtaaatgaattcaagcagagtgtgaacttactgtttcacactctgcttttttgtttcttctatctgacttgctttattccaaattttattcgtttaaaaataaaatgtgcagcaggttataattttgcatttcgctatttccgcacttcttatttgccgcgcataatccctcgttttaccgatgcccctttaattttggcgaaggatttgtctatggctgggaatgttcaggaaaaacagttgcgatggtacaacattgcgctgatgtcttttatcactgtctggggttttggcaacgttgttaataactatgccaaccaggggctggtggttgttttttcatgggtgtttatctttgcactctatttcacaccttatgcgctaattgttggtcagttaggctcgaccttcaaagatgggaagggcggggtcagtacctggattaaacacacgatgggacccggactggcttatctcgccgcgtggacctactgggtggtgcatattccctatctggcacaaaaaccccaggcaattctgattgcgctcggttgggcgatgaaaggcgacggttcgctaatcaaagaatattcagtcgtagcgttacaggggttaacgctggtgctgtttatcttctttatgtgggttgcttcacgcggtatgaaatcgctgaaaatcgtcggttctgtggcagggattgctatgtttgttatgtcactcctgtatgtggcgatggcggtaaccgcgcctgcaattactgaagtgcatattgcgaccacaaacattacctgggaaacgttcattcctcatatcgactttacctacattaccactatttcaatgctggttttcgcggttggcggagcagagaagatttctccttacgttaatcaaacgcgcaacccaggaaaagaatttccaaaagggatgttatgcctggcggtgatggttgcggtttgtgccattctgggctcgctggcgatggggatgatgtttgattcgcgtaatatcccggatgacttaatgaccaacggtcagtattacgcctttcagaagctgggcgagtattacaacatgggtaatactttaatggtgatttacgccattgcgaataccctgggacaagtagcggcgctggtattctcgattgatgccccgcttaaagtgctattaggtgatgctgacagcaaatatattccagccagtttatgtcgtaccaacgcttctggtacgcccgttaatggctattttctgaccctggtactggtggcgattctgattatgctgccgactctcggcattggtgatatgaacaatctctataaatggctgttgaaccttaattcggtagtgatgccgctgcgttatttatgggtatttgttgcatttattgcagtcgttcgcttggcgcagaaatataaaccagaatatgtctttattcgtaataagcctctggcaatgaccgtcgggatttggtgttttgcctttaccgcctttgcctgtttgacggggatcttcccgaaaatggaagccttcactgcagagtggaccttccagttggcgctgaatgttgcaacgccgtttgtgctggtaggattaggactgatattcccgctgctggcgcgtaaagcgaatagtaaataattattgtggtcggtgacgctgactctggcagatctgacccgtttttacataatcgagaaatgcgcgcaagccgcaggacatatactggcggtttggataatagatctggaagcctggacgctctgtgctccagtcttccagtacacattctaaacgaccagtatcaaggtactccttgatctgttcatagagcagatacccgataccagcacccatcaaaacggcctccagttcagcatcaacatcatccagaatgatatttcctgcgacagcaatttccagctcctttgcaaattgccagtggaaaggtttgccgctgggataacgaaaaacaacacattgatgattaagcagatcatgaggatggcggggtttgccatatcttgcaaagtactctggcgttgctgctacacataatttcactggcgggccgatcgccacgctgatcatatctttttcgacgatgcaactaagtcgaacgccagcgtcaaagccctgttggacgatatcgacaagagagtcgtcagttgtgagctcgactttaatatcaggatattcacgtgtgaaaccaaccagtaaagacattaaaaatatacgtgcagctacccgggcggcattgattttgagcgttcctgtcggtgtcagacgaaaatcattcatctcatctaacatgatctgaatttcgtcgaaagctgggcgcaatcgttcatagagattagaacccgcttccgttaacgatacgcttcgggttgtccgattgaataagcgaattttaagacgttgttccagtgttttaatactatggctaatggcggacgaggataagcctaactcatcgcccgctgcacgaaagctttgattacgggccacggcaaagaaagtggcaaagtcagacatattcatccgcattagtgaaaatccttcattaactcatcctgaatcatcacgtttacaggattatgccgcctgcgtaaagtgcgctccagaacttaacgtggaggtaaaattatgcagtctgaacgtatttatttggtatgggcccatcctcgtcatgattcattgaccgcacatattgctgatgcgatccatcagcgggcaatggagcggaaaatacaggtgacggaactcgatttatatcggcgtaatttcaacccagtgatgacgccggaagatgaaccagactggaagaatatggataaacgttattctccagaggttcatcagctttattcagagctgcttgaacatgacacgttagtggtggtttttcctctctggtggtacagcttcccggcaatgctaaaaggatatattgacagagtatggaataatgggctggcttatggagatgggcacaaattaccattcaataaagttcgttgggtggcgctggttggaggagacaaagaatcatttgtccagatgggctgggaaaaaaatataagcgattatttaaaaaatatgtgcagttatcttggtattgaagatgccgatgtcactttcttgtgtaatacagtggtattcgatggggaagaacttcacgcgagctattatcagtcgttattatctcaggtacgggatatggtagatgcactataagatgtgttaaaaacgctgtagcagaatgaagcgcggaataaaaaagcggcaactcaataaagttgccgctttacggggaaattagaacattaccttatgaccgtactgctcaagaatgcctttcacgcgttccatggtctctttcttcggtggtttaacaccgtcgagtttgtactcttcacccattgccacccatttgtgtttgcccagctcgtggtaggggagaagctcgattttctcaacgttgcccatatcacgggtaaattcaccgaggcgatgcgctgaatcgtcatcgtcagaccagcctgggacaacaacgtagcggatccacaccttcacatttttgttcgccagatatttagcgaactccagcgtgcggtggttggaaactccaaccagattttggtggatctcgtcgttcatctgtttgagatcgagcattaccaggtcggttacttccagcagttcatcaatcaccggatcgtaacgacgaacaaaaccgttggtgtccagacaggtatgaatgccttcttttttgcaggcgcggaaccagtcacgaacaaactcagcttgcaggattgcttcaccgccggatgcggtaacgccgccgccggaagcgttcataaagtggcgataggtcaccacttccttcatcaaatcttcaacggtaacttctttaccgccatgcgtgtcccaggtgtcgcggttatgacaatacaggcagcgcatcaggcagccctggaaaaaggtgataaagcgaatacctgggccgtctacggttccacaggattcaaaggagtgaatgcgaccaataactgacattgcggtgtttctccagatgtggcccatctgaggccgtgttggtgcgcagctcgaaggctacgtcgagtctgttttggcagtcaccttaaagtatagatagctgacaaaaaaggctctcgcgctaaaaaaggccccactttcgtggagcctttattgtacgctttttactgtacgatttcagtcaaatctaattacatagattgagtgaaggtacgagtaataacgtcctgctgctgttctttagtcagcgagttgaaacgtactgcgtagccagatacacggatggtcagctgcggatatttttccgggttttccatcgcgtcgagcagcatttcacggttcatcacgttaacgttcaggtgctgaccaccttcgatggatgcttcgtggtggaagtaaccatccatcagaccagccaggttggtcttacgaacttcgtcgtctttacccagtgcgttcggaacgatagagaaggtgtaggagataccatctttagcgtaagcaaacggcagtttagcaacggaagtcagagaggctactgcacctttctggtcacgaccgtgcatcgggttagcacccggtccgaacggcgcgccagcacgacgaccgtctggggtgttacccgttttcttaccatacacaacgttagaagtgatggtcagaacagactgagtcgggatagcgtcacggtaggtgtgcagtttctgaattttcttcatgaaacgttctaccaggtcaacagccaggtcatctacacgcggatcattgttaccaaactgcgggtattcgccttcgatttcgaagtcgatagccagaccgtcttcgtcacgaatcggtttaactttcgcatatttgattgcagacagggagtcagcagcaacggacagaccagcgataccacacgccatggtgcggataacgtcacggtcgtgcagcgccatcagagaggcttcgtagctgtacttgtcgtgcatgtagtggatgatgttcagtgcagtgatgtactgtttagccagccagtccatgaagtgatccatgcgctccatcacttcatcatagttcaggacatcgcctttgatcggttcagacttcggaccaacctgcattttcagtttttcgtcaacgccgccgttgattgcgtacagcatggttttcgccaggtttgcacgcgcaccgaagaactgcatttgtttaccaacgatcatcgggcttacgcagcaagcaatagcgtagtcatcgttgttgaagtccggacgcatcaggtcatcgttctcatactgcagagaagaggtgtcgatggacactttagcggcgaatttcttgaagttcagcggcagtttttcagaccacagaatggtcatgttcggttccggagacggacccatggtgtacagggtgttcaggaaacggaagctgtttttggtaaccagggtacgaccgtcgaggcccataccaccgatagattcggttgcccagatcgggtcgccagagaacagttcatcgtattccggagtacgcaggaagcgaaccatacgcagtttcatgaccaggtggtcaaccatttcctgcgcttcttgttcggtgatcttgccagctttcaggtcacgttcgatgtacacatccaggaaggtggaggtacgaccgaaggacattgcagcaccgttctgagacttaacagcagccaggtagccgaagtaagtccactggatagcttcctgagcgttggtagccggaccagagatgtcgtagccgtatttcgcagccatttctttcatctgacccagagcgcggtgctgttcagcgatttcttcgcgcagacggatagtctgttccaggtttacgccgttttccagatcagcctgcagagaagtgaactgtgccagtttgtctttcatcaggtagtcgataccgtacagcgcaacgcgacggtagtcaccgatgatacggccacggccatatgcatctggcagaccggtcagaacaccagatttacggcaacgcaggatgtccggagtgtaaacgtcgaacacgccctggttgtgagttttacggtattcagtgaagatttttttgatcatcggatccagttcgcggttgtacgctttgcaggaaccttcgatcattttgataccaccgaacgggataagagcacgtttcagcggagcttcagtctgcagaccaacgattttctcaagctgcttgttgatgtagccagcgtcgtgagaggtgatggtggaagcaacagcggtgtcaaagtcaactggcgcgtgagtgcggttttccagtttaacgccttccattactttgtcccacagggtggtggtcgcttcagtagcgccagccaggaaggactcgtcaccctcgtacggagtgtagtttttctgaatgaagtcacggacgtttacttcattctgccagtcacctttggtaaaaccttcccaggctgtggctaacttttcattaagctcggacatgtaacacctaccttcttaagtggattttttatttactgcgtacttcgacaaccattaatggtggtcgttttcacgcaggtaaatgacccagtatgtcaacccaaccaacaaaccaccaccgataatgttgccgatcgtaaccggaatcaggttatcagtgatgaaattcatcacggtcaggtgagaaaaattttccggtgcagaaccgactgcggtccaaaattccggggatgcgaagtcgcggattacaatacccatcgggatcataaacatgtttgcgatactgtgctcaaaaccgctggcaacaaacatcgcgaccggcagcaccataatgaacgctttgtccatcaggctgcggccagaataactcatccatactgccagacataccatcaggtttgccaggataccaagacagacggcctcaataaaagtatggtgcactttgtggtcggcggtttgtaggacgtttagtccccattgaccatttgcggtcatatactcgccggaaagccacattaaaagtacaaacagcagtgcgccgaccaggttgccaaaatagacatttagccagtttttcgccaactgaccccaggtgatgcgcccactcgccttagcaacaacaatcaacacggtggaagtaaagagatcggctccgcagacaacacaaagaatcagccccagagagaagcaaatgccgccaaccagttttgccatgccgaagggcattgtgcctgtgccagtggttgctgtgatatagaagacgaatgcgattgagatgaaaacaccggcggtaatcgccagatagaaagtcttaagcggatgtttcgttgctttatagacacccgcctcttcggccactttggccattgcagcaggaagtaaaagatcaaaagggttgtcagctttcacactaactctctctttattaagtcggcgacgagatactaacaaagcattatagatgagaaattgatatagatcatatctcgcctggcttataggcccgtaactcgcatggtttttatgcaaatacggagtaaatatttgattatccaaataaaaataaattttaaaaattaacaaatgagttgaattttttccgcatcctccgctaaaacagttaattaaaagggagcatcaggcgaataaagtaacaatatcgatcgtatttattaaatacaaattaccgatatttaaccttataattacaattattttattaatgcaaatatatgtaaagcggggcattaaaaaaacgccccgtaatataactcagactaatcattaagcctacattgcgtaggctatttgattttattttgcccagaatgctgctttggcgcgctgcagcttttcgtaggccttcaacaacgactgatgtgcagcaaacgcgtgcagatcgctatctaccggttgcaggccgtaaaacgccgcttcgccgctcattgccgcactggcggcttctacggcatctgcgccgtacatgcgaacaaacgcattcagatattgcagcggctggcgatcttcttcctgtgccagtaataacaacgtttgcaggcagcgataatagttggcgcgttccggactaaatactgatgagttaaactccatcgtccattcggtccagaccagagcctgttccagatcgccaccagccagcgccagcatggcttttaattcaccgatacgcagggtgtaccaaccgttatccgacccggtcgccagacccaacagctcacgcacgcgggtaaagtcatcaaaaccttcttcatccagttgctcgatgaggttcaggtaatcttctttttcccactcgctgcctggtagcgaaagaatcgtttcacgtaaatggctgcccatactgttattcgcgagccacagatcttcagccggataaatatcggacatgccaggcacgataatacggcaagcataaacgcccagatgctcgtaatcggcaatataaacttctttatcttctttgttgaagatagccatcagtgtggcgaactcttcttccgtggtgccggagaaattccagtccacaaacggataatcggcatcctgcttgaacaggtcccaggagattaaaccgctggaatcgataaagtgcgtttcgaggttggtatgttcagcgacttcttcatcatcgaaggttggcggagtaaacacatccaaatctttcaggccacgaccttgcagcagctcggtcacggtacgttccagtgctacgccaaaatcaggatgcgcaccgaaagaggcaaagcaggtaccgttagcaggattgaacagtaccacgcaaatcaccggatactggccgccaagcgaaccgtcataagcgaagattgggaaaccctccgcttccagcgtttcgatggcttcaactactgctgggtaacgcgccagcacgtctgccgggatctctggcaggctgatgctttcagcaataatgcggtttttcacgtagcgttcgaaaacttcagacaatccctgaacgcgtgcttcgttgcgggtattacctgcggacataccgttggagacgtacaggttaccaatgatattcatcggaatataaacggtctgattgtcggactgacgcgtaaacggcaggccgcaaataccacgatcttcgttaccggattgtaggtcaatcagcatgctgccggtcagttcattctccggatcataaaacgcgcgcagacggtcatcgagcagcccttctggcacatcgtcattttcggtcagtgggaaccatttttcgttgggataatgcacgaacggaccgttggcgatggtttcgcccagccagaagtccgcaaaaaagtagttggttgagagacgctcgaaatattcaccgagtgcagaagccagcgccgctttcttggttgcgcctttaccgttggtaaaacacagtgcgcactctttgtcgcgaatatgtacagaccagacgttaggcacgggattcagccaggaggcctcttcaatctgaaagccgaggtctgaaagtttttgctggaagcgagcgatggaatcttccagagcggcatctttgccggggataaatgtttgcgtcatgaaaatcactttagtcgtacggaaagcgcgcaataatacgggttttatctcaaaggcgctatcaccgccgccatgccgatgaactgttgactatgcttttagcggataaaccacgttaagagcataaaaatgaaggcgttcgatctccaccgtatggcatttgataaagtgccttttgatttccttggcgaagttgcactacgtagtctttatacctttgtactggtctttttgttcctcaaaatgaccggaagacgcggtgtgcggcagatgtcgctgtttgaagttttaatcattctgacgctgggatcagcggcgggagatgtggcgttttatgatgatgtgccgatggtcccggtacttatcgtctttattactctggcgttgttataccgcctggtaatgtggttgatggcgcacagtgaaaaactggaagatcttctggaaggcaagccagttgtcattattgaagatggcgagctggcctggtcgaaactcaataactccaacatgacggaatttgagttctttatggagctacgattgcgtggcgtggagcagctggggcaggtacgtctggcgattctcgaaaccaacgggcaaatcagtgtctatttctttgaagatgacaaggtgaaaccgggtttacttattttacccagtgattgtacgcagcgttacaaagtggtgccggagtcggcggactatgcctgtattcgttgtagtgaaatcattcatatgaaagcgggggaaaaacaattatgtccgcgctgtgcaaatccagaatggacgaaggcaagtcgggcaaaacgggtgacctgacagtaaaaacatcggctttttgctaataatccgagagattcttttgtgtgatgcaagccacatttttgccctcaacggttttactcattgcgatgtgtgtcactgaatgataaaaccgatagccacaggaataatgtattacctgtggtcgcaatcgattgaccgcgggttaatagcaacgcaacgtggtgaggggaaatggctcaaatcttcaattttagttctggtccggcaatgctaccggcagaggtgcttaaacaggctcaacaggaactgcgcgactggaacggtcttggtacgtcggtgatggaagtgagtcaccgtggcaaagagttcattcaggttgcagaggaagccgagaaggattttcgcgatcttcttaatgtcccctccaactacaaggtattattctgccatggcggtggtcgcggtcagtttgctgcggtaccgctgaatattctcggtgataaaaccaccgcagattatgttgatgccggttactgggcggcaagtgccattaaagaagcgaaaaaatactgcacgcctaatgtctttgacgccaaagtgactgttgatggtctgcgcgcggttaagccaatgcgtgaatggcaactctctgataatgctgcttatatgcattattgcccgaatgaaaccatcgatggtatcgccatcgacgaaacgccagacttcggcgcagatgtggtggtcgccgctgacttctcttcaaccattctttcccgtccgattgacgtcagccgttatggtgtaatttacgctggcgcgcagaaaaatatcggcccggctggcctgacaatcgtcatcgttcgtgaagatttgctgggcaaagcgaatatcgcgtgtccgtcgattctggattattccatcctcaacgataacggctccatgtttaacacgccgccgacatttgcctggtatctatctggtctggtctttaaatggctgaaagcgaacggcggtgtagctgaaatggataaaatcaatcagcaaaaagcagaactgctatatggggtgattgataacagcgatttctaccgcaatgacgtggcgaaagctaaccgttcgcggatgaacgtgccgttccagttggcggacagtgcgcttgacaaattgttccttgaagagtcttttgctgctggccttcatgcactgaaaggtcaccgtgtggtcggcggaatgcgcgcttctatttataacgccatgccgctggaaggcgttaaagcgctgacagacttcatggttgagttcgaacgccgtcacggttaatgccgaaattttgcttaatccccacagccagcctgtggggtttttatttctgttgtagagagttgagttcatggaatccctgacgttacaacccatcgctcgtgtcgatggcactattaatctgcccggttccaagagcgtttctaaccgcgctttattgctggcggcattagcacacggcaaaacagtattaaccaatctgctggatagcgatgacgtgcgccatatgctgaatgcattaacagcgttaggggtaagctatacgctttcagccgatcgtacgcgttgcgaaattatcggtaacggcggtccattacacgcagaaggtgccctggagttgttcctcggtaacgccggaacggcaatgcgtccgctggcggcagctctttgtctgggtagcaatgatattgtgctgaccggtgagccgcgtatgaaagaacgcccgattggtcatctggtggatgcgctgcgcctgggcggggcgaagatcacttacctggaacaagaaaattatccgccgttgcgtttacagggcggctttactggcggcaacgttgacgttgatggctccgtttccagccaattcctcaccgcactgttaatgactgcgcctcttgcgccggaagatacggtgattcgtattaaaggcgatctggtttctaaaccttatatcgacatcacactcaatctgatgaagacgtttggtgttgaaattgaaaatcagcactatcaacaatttgtcgtaaaaggcgggcagtcttatcagtctccgggtacttatttggtcgaaggcgatgcatcttcggcttcttactttctggcagcagcagcaatcaaaggcggcactgtaaaagtgaccggtattggacgtaacagtatgcagggtgatattcgctttgctgatgtgctggaaaaaatgggcgcgaccatttgctggggcgatgattatatttcctgcacgcgtggtgaactgaacgctattgatatggatatgaaccatattcctgatgcggcgatgaccattgccacggcggcgttatttgcaaaaggcaccaccacgctgcgcaatatctataactggcgtgttaaagagaccgatcgcctgtttgcgatggcaacagaactgcgtaaagtcggcgcggaagtggaagaggggcacgattacattcgtatcactcctccggaaaaactgaactttgccgagatcgcgacatacaatgatcaccggatggcgatgtgtttctcgctggtggcgttgtcagatacaccagtgacgattcttgatcccaaatgcacggccaaaacatttccggattatttcgagcagctggcgcggattagccaggcagcctgaatgaacaacgggcaataaatagccaaatctttctttatcaaaacgtcggcacattgtcggcgttttttttcggaccttgtgagtcattttgattaatggtagcgtcgcttgtcaatgtaagttgttgatacataatatttatatatgattaatcaacggatgattcacatgaagaatactaaattactgctggcgattgcgacctctgcagcattactgacagggtgtcaaaatacccacggtattgataccaatatggctatcagctccggtttaaatgcctataaagcagcaacattaagcgatgccgatgcaaaagcgattgccaatcagggctgtgccgaaatggacagcggcaatcaagtcgcaagtaaatccagcaagtacggtaaacgtctggcaaaaatcgccaaagcattgggtaacaatattaatggcacgccggtcaactataaggtttatatgaccagcgacgtcaacgcatgggcgatggcgaacggctgtgttcgtgtctacagtggcctgatggacatgatgaatgacaacgaaattgaaggcgttctgggccatgaactgggccacgtcgcgttgggtcactcgctggctgaaatgaaagcttcttatgcgatcgttgccgcacgcgatgccatttcagctaccagcggtgtggcttcccagctttcccgctcacaattaggtgatatcgcagaaggcgctatcaatgctaaatactcccgtgataaagagtccgaagcagatgatttctcctttgatctgttgaagaaacgtggcatcagcacccaggggctggttggcagctttgaaacactggctagcctggatggcggtcgcacccagtccatgtttgactctcacccaccatcaacagagcgtgcgcaacacatccgtgatcgtatcgcctctggtaagtaaatcattgtcatctttcgggctggtcttctgccagcccgctataattgcgcaataaatccccatctgaatacagacaaaactggtttttgcacacaacgttaacgatttgtggcgtcggcgcgtataatgcgcgcggttatgttaacggtacgcctgttttaaggagataaagatgacggcaattgccccggttattaccattgatggcccaagcggtgcagggaaaggcaccttgtgtaaggctatggcggaagcgttgcaatggcatctgctggactcgggtgcaatttatcgcgtactggcattggcggcattacatcaccatgttgatgttgcgtcggaagatgcgctggtaccgctggcatcccatctggatgtacgttttgtgtcgaccaatggcaatctggaagtgatcctcgaaggggaagatgtcagcggcgaaattcgtactcaggaagtggcgaatgcagcttcacaagtcgcggcattcccacgcgttcgtgaagcattattgcgtcgccaacgcgcgtttcgcgaattaccaggtctgattgccgatggccgcgacatgggaacggtggtattccctgatgcaccagtgaaaattttccttgacgcctcctcggaagaacgtgcgcatcgccgcatgctacagttgcaggagaagggctttagtgttaactttgagcgccttttggccgagatcaaagaacgcgacgaccgcgatcgtaaccgagcggtagcgccactggttccggcagccgatgctttagtgttggattccaccaccttaagcattgagcaagtgattgaaaaagcgctacaatacgcgcgccagaaattggctctcgcataagcgaccgaatttgcagtacccccgttgcaatggaatgacagcgggtatgttaaacaaccccatccggcatggagccaggtggacgttaaatataaacctgaagattaaacatgactgaatcttttgctcaactctttgaagagtccttaaaagaaatcgaaacccgcccgggttctatcgttcgtggcgttgttgttgctatcgacaaagacgtagtactggttgacgctggtctgaaatctgagtccgccatcccggctgagcagttcaaaaacgcccagggcgagctggaaatccaggtaggtgacgaagttgacgttgctctggacgcagtagaagacggcttcggtgaaactctgctgtcccgtgagaaagctaaacgtcacgaagcctggatcacgctggaaaaagcttacgaagatgctgaaactgttaccggtgttatcaacggcaaagttaagggcggcttcactgttgagctgaacggtattcgtgcgttcctgccaggttctctggtagacgttcgtccggtgcgtgacactctgcacctggaaggcaaagagcttgaatttaaagtaatcaagctggatcagaagcgcaacaacgttgttgtttctcgtcgtgccgttatcgaatccgaaaacagcgcagagcgcgatcagctgctggaaaacctgcaggaaggcatggaagttaaaggtatcgttaagaacctcactgactacggtgcattcgttgatctgggcggcgttgacggcctgctgcacatcactgacatggcctggaaacgcgttaagcatccgagcgaaatcgtcaacgtgggcgacgaaatcactgttaaagtgctgaagttcgaccgcgaacgtacccgtgtatccctgggcctgaaacagctgggcgaagatccgtgggtagctatcgctaaacgttatccggaaggtaccaaactgactggtcgcgtgaccaacctgaccgactacggctgcttcgttgaaatcgaagaaggcgttgaaggcctggtacacgtttccgaaatggactggaccaacaaaaacatccacccgtccaaagttgttaacgttggcgatgtagtggaagttatggttctggatatcgacgaagaacgtcgtcgtatctccctgggtctgaaacagtgcaaagctaacccgtggcagcagttcgcggaaacccacaacaagggcgaccgtgttgaaggtaaaatcaagtctatcactgacttcggtatcttcatcggcttggacggcggcatcgacggcctggttcacctgtctgacatctcctggaacgttgcaggcgaagaagcagttcgtgaatacaaaaaaggcgacgaaatcgctgcagttgttctgcaggttgacgcagaacgtgaacgtatctccctgggcgttaaacagctcgcagaagatccgttcaacaactgggttgctctgaacaagaaaggcgctatcgtaaccggtaaagtaactgcagttgacgctaaaggcgcaaccgtagaactggctgacggcgttgaaggttacctgcgtgcttctgaagcatcccgtgaccgcgttgaagacgctaccctggttctgagcgttggcgacgaagttgaagctaaattcaccggcgttgatcgtaaaaaccgcgcaatcagcctgtctgttcgtgcgaaagacgaagctgacgagaaagatgcaatcgcaactgttaacaaacaggaagatgcaaacttctccaacaacgcaatggctgaagctttcaaagcagctaaaggcgagtaattctctgactcttcgggatttttattccgaagtttgttgagtttacttgacagattgcaggtttcgtcctgtaatcaagcactaagggcggctacggccgcccttaatcaatgcagcaacagcagccgcttaatttgcctttaaggaaccggaggaatcatgaccaagtcagaattgatagaaagacttgccacccagcaatcgcacattcccgccaagacggttgaagatgcagtaaaagagatgctggagcatatggcctcgactcttgcgcagggcgagcgtattgaaatccgcggtttcggcagtttctctttgcactaccgcgcaccacgtaccggacgtaatccgaagactggcgataaagtagaactggaaggaaaatacgttcctcactttaaacctggtaaagaactgcgcgatcgcgccaatatttacggttaagttttttactcaaacttgaacgagagaaaagcacctgtcgggtgcttttttcatttctctaatctggaactggaagctgcctcgcagagttttgaacagttttcaccctttcgttaaattcttctgaatatgcctcggggaacgcaaaattcccaccagacaaccgctcaacaaagttgcacactttccataaacagggaggggtgcatgaaaataacgacagtcggtgtatgcataattagcggaatttttccgttgctgattttgccccaattgcctgggacattaacccttgcgtttctgactctcttcgcctgcgtactggcatttatccctgttaaaaccgtccgttatatcgcgctgacgttgctgtttttcgtttggggcatattatcagcaaagcaaattttgtgggcaggagaaaccttaactggcgcgacgcaggatgcaattgttgagatcactgcaactgacggcatgaccactcattacggtcaaattactcatctacaaggtcgacgtatattccctgcgtcaggtctcgtgatgtatggcgaatatcttccgcaagcggtttgtgctggacaacaatggtcaatgaaactcaaagttcgtgcagttcatggccaacttaatgatggcggctttgatagccagcgttatgccattgcccagcatcagccgctcaccggccgttttctgcaggcaagtgtcattgaaccgaattgtagcctgcgtgcacagtatctggcgtcactacaaacaacgctgcaaccctatccgtggaatgcggttattcttggtttaggtatgggggaacggttatccgtccccaaagaaatcaaaaatatcatgcgcgatactggaacggcgcatttaatggcgatatcgggattgcacatcgcttttgcggcgttgctggctgccggactcattcgcagtggacaaatttttctgcctgggcgctggatccactggcaaataccattaattggcggaatctgctgtgctgctttttatgcctggttgacgggaatgcaacctcctgcattgcgtaccatggtggcgcttgctacgtggggaatgcttaagttaagtgggcgacagtggagtggctgggatgtatggatatgttgtctggcggcaattttgctgatggatcctgttgccattctctcgcaaagtttatggctctctgccgctgcggtcgcggcattgatattttggtatcagtggtttccctgtcctgagtggcaactgccgccggtattgcgtgcagttgtttccctcatccatctgcaactgggaatcacacttctgcttatgcccgtgcaaatcgtcatatttcatggcattagtctgacctcgtttattgcaaatctattagcaattcccttggtgacatttatcacggttccgttgatcctcgccgcgatggttgtgcatttaagcgggccgttaatcctggagcaagggttatggtttcttgccgaccggtctttggctttacttttctgggggttaaagagtttgccggaagggtggatcaacattgctgaatgttggcaatggctatcattttccccatggttcttactggtggtatggcgattaaacgcctggcgaacgttgccagcaatgtgtgtggctggaggcttgctgatgtgctggccgctgtggcaaaaacctcgacctgacgagtggcagctgtacatgcttgatgtcgggcaagggctggcaatggtgatagccagaaacggcaaagcgattctctatgacacaggactggcctggcctgaaggggatagtgggcaacaactgattatcccctggctccactggcataatcttgaaccggaaggcgttattctgagccatgaacatctggatcaccggggagggctggattcaatattgcatatatggccgatgttatggatcagaagtccgttaaactgggaacatcatcagccctgtgtgcgtggcgaagcgtggcaatggcaaggattgcgtttcagcgcgcactggcctttacaaggtagcaacgataaaggaaataaccattcctgtgtggttaaggttgatgacgggacgaatagcattcttctaaccggtgatattgaagccccagctgaacaaaagatgctaagccgttactggcagcaagtgcaggcaacattgcttcaggtacctcaccatggcagtaatacctcatcatcgttgccattaattcagcgagtgaatggaaaagtggcactcgcatcggcatcgcgctataacgcatggcgactgccctctaacaaagttaagcatcgctatcaactgcaaggatatcaatggattgatactccacatcaaggtcaaacaacggtcaatttttcagcgcaaggctggcggattagcagcctcagggagcaaattttacctcgttggtatcatcagtggtttggcgtgccagtggataacgggtagaatatgcggctatttcaacaaatgctggttttttgaatgcataacgacaaagatctctctacgtggcagacattccgccgactgtggccaaccattgcgcctttcaaagcgggtctgatcgtggcgggcgtagcgttaatcctcaacgcagccagcgataccttcatgttatcgctccttaagccacttcttgatgatggctttggtaaaacagatcgctccgtgctggtgtggatgccgctggtggtgatcgggctgatgattttacgtggtatcaccagctatgtctccagctactgtatctcctgggtatcaggaaaggtggtaatgaccatgcgtcgccgcctgtttggtcacatgatgggaatgccagtttcattctttgacaaacagtcaacgggtacgctgttgtcacgtattacctacgattccgaacaggttgcttcttcttcttccggcgcactgattactgttgtgcgtgaaggtgcgtcgatcatcggcctgttcatcatgatgttctattacagttggcaactgtcgatcattttgattgtgctggcaccgattgtttcgattgcgattcgcgttgtatcgaagcgttttcgcaacatcagtaaaaacatgcagaacaccatggggcaggtgaccaccagcgcagaacaaatgctgaagggccacaaagaagtattgattttcggtggtcaggaagtggaaacgaaacgctttgataaagtcagcaaccgaatgcgtcttcaggggatgaaaatggtttcagcctcttccatctctgatccgatcattcagctgatcgcctctttggcgctggcgtttgttctgtatgcggcgagcttcccaagtgtcatggatagcctgactgccggtacgattaccgttgttttctcttcaatgattgcactgatgcgtccgctgaaatcgctgaccaacgttaacgcccagttccagcgcggtatggcggcttgtcagacgctgtttaccattctggacagtgagcaggagaaagatgaaggtaagcgcgtgatcgagcgtgcgactggcgacgtggaattccgcaatgtcacctttacttatccgggacgtgacgtacctgcattgcgtaacatcaacctgaaaattccggcagggaagacggttgctctggttggacgctctggttcgggtaaatcaaccatcgccagcctgatcacgcgtttttacgatattgatgaaggcgaaatcctgatggatggtcacgatctgcgcgagtataccctggcgtcgttacgtaaccaggttgctctggtgtcgcagaatgtccatctgtttaacgatacggttgctaacaacattgcttacgcacggactgaacagtacagccgtgagcaaattgaagaagcggcgcgtatggcctacgccatggacttcatcaataagatggataacggtctcgatacagtgattggtgaaaacggcgtgctgctctctggcggtcagcgtcagcgtattgctatcgctcgagccttgttgcgtgatagcccgattctgattctggacgaagctacctcggctctggataccgaatccgaacgtgcgattcaggcggcactggatgagttgcagaaaaaccgtacctctctggtgattgcccaccgcttgtctaccattgaaaaggcagacgaaatcgtggtcgtcgaggatggtgtcattgtggaacgcggtacgcataacgatttgcttgagcaccgcggcgtttacgcgcaacttcacaaaatgcagtttggccaatgatcgaaaaaatctggtctggtgaatcccctttgtggcggctattgctgccactctcctggttgtatggcctggtgagtggcgcgatccgtctttgctataaactaaaactgaagcgcgcctggcgtgcccccgtaccggttgtcgtggttggtaatctcaccgcaggcggcaacggaaaaaccccggtcgttgtctggctggtggaacagttgcaacagcgcggtattcgcgtgggggtcgtatcgcggggatatggtggtaaggctgaatcttatccgctgttattgtcggcagataccacaacagcacaggcgggtgatgaacctgtgttgatttatcaacgcactgatgcgcctgttgcggtttctcccgttcgttctgatgcggtaaaagccattctggcgcaacaccctgatgtgcagatcatcgtaaccgacgacggtttacagcattaccgtctggcgcgtgatgtggaaattgtcgttattgatggtgtgcgtcgctttggcaatggctggtggttgccggcggggccaatgcgtgagcgagcggggcgcttaaagtcggttgatgcggtaatcgtcaacggcggtgtccctcgcagcggtgaaatccccatgcatctgctgccgggtcaggcggtgaatttacgtaccggtacgcgttgtgacgttgctcagcttgaacatgtagtggcgatggcggggattgggcatccgccgcgcttttttgccacgctgaagatgtgtggcgtacaaccggaaaaatgtgtaccgctggccgatcatcagtctttgaaccatgcggatgtcagtgcgttggtaagcgccgggcaaacgctggtaatgactgaaaaagatgcggtgaaatgccgggcctttgcagaagaaaattggtggtatttgcctgtagacgcacagctttcaggtgatgaaccagcgaaactgcttacgcaactaaccttgctggcttctggcaactagttacgccgcggcagcgttcgattgatggagtcatgaatgtcgctgccgcacctctcccttgctgatgcgcgtaatcttcaccttgccgcacaaggcctgttaaacaaaccccgccgtcgagcgtcgttggaggatattccggcaacgatctcccgcatgtccttgctgcaaatcgataccatcaatattgttgcccgtagtccatatctggtgcttttcagtcgtctgggaaattatcctgcccagtggctggatgagtctctggcgcgtggcgaattaatggaatactgggcgcatgaagcctgctttatgccgcgtagcgactttcgtcttattcgccaccgcatgctggcacctgaaaaaatgggctggaaatacaaagacgcctggatgcaggaacatgaggcggaaattgcacagttaattcagcatattcatgataaggggccggtacgttcagccgattttgagcatcctcgtaaaggtgcaagcggctggtgggaatggaagccgcataaacggcatctggaaggtttatttactgccggaaaggtgatggtgattgaacggcgcaacttccagcgcgtttatgatttaacccaccgtgtcatgcctgactgggatgatgagcgcgatctcgtttcgcaaacagaagcagaaatcatcatgctggataacagtgcgcgtagcctgggaatattccgcgaacagtggctggcagattactatcggctgaaacgtccggcactggcggcgtggcgcgaagcgagggctgaacagcagcaaatcattgctgtgcatgttgaaaaattgggcaatctttggctgcatgatgatttgctgccgctactcgagcgagcgctggccggaaagctcactgcaacgcacagcgcggtactttcgccttttgatcctgttgtctgggatcgcaaacgcgcagagcagctttttgattttagctaccggctggagtgctataccccagcgccgaaacgccagtatggctattttgttctgccgttattacatcgtgggcaattagttgggcgaatggatgccaaaatgcatcgccagacaggcatccttgaagttatctctctgtggttacaggaaggtattaaaccaacgacaacgctgcaaaaagggctacgtcaggcgattactgatttcgctaactggcagcaggcaacgcgggtgacattaggatgctgcccgcaaggcctctttactgattgccgcaccggctgggaaatagaccccgtcgcataaatgattatgataagatttatgcattcataacccgatccatctggaggaactatggatcatcgtctgcttgaaatcattgcctgcccggtttgcaacggaaaactttggtataaccaggaaaaacaagagcttatttgcaaactggacaacctcgctttcccgctgcgtgatggcattccagtgttgctggaaacggaagcccgcgtgctgactgctgatgagagtaaatcatgagttttgtggtcattattcccgcgcgctacgcgtccacgcgtctgcccggtaaaccattggttgatattaacggcaaacccatgattgttcatgttcttgaacgcgcgcgtgaatcaggtgccgagcgcatcatcgtggcaaccgatcatgaggatgttgcccgcgccgttgaagccgctggcggtgaagtatgtatgacgcgcgccgatcatcagtcaggaacagaacgtctggcggaagttgtcgaaaaatgcgcattcagcgacgacacggtgatcgttaatgtgcagggtgatgaaccgatgatccctgcgacaatcattcgtcaggttgctgataacctcgctcagcgtcaggtgggtatggcgactctggcggtgccaatccacaatgcggaagaagcgtttaacccgaatgcggtgaaagtggttctcgacgctgaagggtatgcactgtacttctctcgcgccaccattccttgggatcgtgatcgttttgcagaaggccttgaaaccgttggcgataacttcctgcgtcatcttggtatttatggctaccgtgcaggctttatccgtcgttacgtcaactggcagccaagtccgttagaacacatcgaaatgttagagcagcttcgtgttctgtggtacggcgaaaaaatccatgttgctgttgctcaggaagttcctggcacaggtgtggatacccctgaagatcttgagcgcgttcgcgctgaaatgcgctaatttcacttcacgacacttcagccaattttgggaggagtgtcgtaccgttacgattttcctcaatttttcttttcaacaattgatctcattcaggtgacatcttttatattggcgctcattatgaaagcagtagcttttatgagggtaatctgaatggaacagctgcgtgccgaattaagccatttactgggcgaaaaactcagtcgtattgagtgcgtcaatgaaaaagcggatacggcgttgtgggctttgtatgacagccagggaaacccaatgccgttaatggcaagaagctttagtacgcccggaaaagcccgacaactggcatggaaaaccaccatgctggcaagaagtgggactgtccgtatgccgactatttatggtgtgatgacgcatgaagaacaccccggccccgatgtcctgctactggagcggatgcgtggtgtttcggtggaggcaccagcccgaacaccagaacgctgggaacaactcaaagaccaaatcgttgaagccttactggcctggcaccgtcaggacagtcgcggttgcgtcggcgcggtcgacaatactcaggaaaatttctggccctcatggtaccggcaacatgttgaagtgctatggaccacgctcaatcagttcaataacaccggtctgacgatgcaggataagcggatcctgtttcgcactcgcgaatgtctcccggcattatttgaaggctttaacgacaattgtgtgctgattcacggtaacttctgtttacgcagcatgttgaaagattcgcgcagcgatcagttactggcgatggtcgggccgggactaatgctttgggcaccgcgagaatacgaactgttccgactaatggataattctctggcggaagatttgctctggagttacctgcaacgcgcgccagtggcggagtcgttcatctggcggcgttggttgtatgtgttatgggatgaagttgcgcaactggttaataccggacgatttagtcggcgcaacttcgatctggcatcaaaatcactcttgccgtggctcgcctgacgaaccttttagccactgccagatacggccaagcgtttcatagccaacacgatcgctatgcatcaaccagaccggagaagggattgcccgttcccacgggttaagcggcgagtcgatggccaactgattcgccggggctggtagcggatttaacccttcctgctgaaaaaagatcatcgcccgcggcagatgtgatgcggaggtcaccagcaggaaaggggcgtcaccaatcgcctgtttcactgctgcagcttcttcttcggtatcttttggcaaatccagggtgataatttgctcgcgcggcacgcccagcgattgcgcaactctggcacctacttccgctgtactcaccgtattggtttttgctacgcctcccgtgaagatcagttttgatcccggattttcgcgccataagcgaataccttcattcaggcgtggcagactgttattgattaaattagagctcggtgcccactgcgggttccaggtataaccacctccgagcaccacgatatagtccactttttgcgaattattccatgtcggataggtgctttcgatgggacgcagcaggcggtcggctaccggttgcaaactcaataacaagagcgccagccacccaatgctaataaaaatcttcccggttttttgaaaacggctaaaccacagcagcgccaggccagcgccaataatcaacaacatcagcggaagtggcagcaacatattgccaatcacttttttcagtgtaaaaagcatcctttctggttccttttttaaccatatagcaagggatcgccagcgatattacaccagacgggttcattctcgccgtggctgtgacaaaatagcgtctttatcagaaaacgtcttagccaaccggtggagaaagcaatgcaggatcgcaattttgatgatattgcggaaaagttttcccgtaacatttacggcaccaccaaagggcagcttcgacaggctattctgtggcaggatctcgatcgcgtgctggcggaaatgggcccgcaaaaactgcgtgtgctggatgctggcggtggagaagggcagaccgcaatcaaaatggccgagcgtgggcatcaggtcattttatgcgatctttctgcgcagatgatcgaccgcgcaaaacaggcggcagaagcaaaaggtgtgagcgacaacatgcaatttatacattgcgccgctcaggatgttgcttcgcatttggaaacgcccgttgatctgatattgttccatgcggtgctcgagtgggtggctgatccccgcagcgtattgcagaccctctggtcagtgttgcgtccaggcggcgtgttgtcgttaatgttctacaatgcgcatggtttgttgatgcataacatggtcgccgggaattttgattacgtgcaggcgggaatgccgaaaaagaaaaaacggacgctttcgccagattatccacgcgacccggcgcaggtttatctgtggctggaagaagctggttggcaaattatgggtaagacaggcgttcgcgtgtttcatgattatctgcgcgagaaacaccagcagcgcgactgctatgaagcattacttgaattagaaacgcgttattgccgtcaggaaccgtatattaccctggggcgttatattcatgtcaccgcgcgcaaaccgcagagcaaggataaagtatgagtgaattttcccagacagtccccgaactggttgcctgggccagaaaaaatgacttctccatctcgctgccggtagaccgactctcttttctgctggcggttgccacgctgaacggcgagcgtctggatggtgagatgagtgaaggcgagctggtggatgcattccgccatgtgagtgatgcgtttgagcaaaccagcgaaaccatcggcgtgcgcgccaataacgcgatcaacgacatggtgcgtcaacgtctgctgaaccgctttaccagcgagcaggcggaagggaacgcaatttaccgtctgacgccgctcggcatcggcattactgactactacatccgtcagcgcgagttttctacgctgcgtctttctatgcagttgtcgattgtggcgggtgagctcaaacgcgcagcagatgccgccgaagagggcggtgatgaatttcactggcaccgtaatgtctatgcgccactgaaatattcggtagcagaaattttcgacagtatcgacctgacgcaacgtctgatggacgaacagcagcagcaggtgaaggacgatatcgcccagttgctgaacaaagactggcgggcggcgatttccagctgtgaattgttgctttcggaaacttccggaacgctgcgtgaattgcaggatacgctggaagcggcaggcgacaaattgcaggctaatctgttgcgcattcaggatgcgacgatgacccatgacgatctgcatttcgtcgatcgtctggtgttcgatctgcagagcaaactcgatcgtattatcagttggggccagcaatccatcgacttgtggattggctacgaccgccacgtacacaaatttattcgtaccgcgatcgatatggataaaaaccgcgtctttgctcagcggttacgtcagtcggtacaaacctattttgatgagccgtgggcgctaacttatgccaatgccgatcgtctgctggatatgcgtgacgaagagatggcactgcgcgatgaagaagtgactggggaacttcctgaggatctggaatacgaagagtttaacgagatccgcgaacagctggcggcgatcatcgaagaacaacttgccgtgtacaaaaccagacaagtgccgctggatcttggtctggtggtacgcgaatatctgtcacagtatccgcgtgcacgtcactttgacgttgcgcgtattgttattgatcaggcggtacgtcttggcgtagcgcaagcagatttcaccggactgccagcgaaatggcagccgattaatgattacggagccaaggtacaggcgcatgtcatcgacaaatattgaacaagtgatgccggttaagctggcgcaggcgctggcgaatccgttatttccggcgctggacagcgccttacgttcaggacgccatattggcctcgacgaactggataatcatgcattcctgatggattttcaggaatatctggaagagttttacgcgcgttataacgttgagcttattcgcgcaccagaagggttcttctatttacgcccacgttccaccacgctgatccctcgttccgtcttgtcggaactggatatgatggtcgggaaaatcctctgttatctctatctcagcccggaacggctggcgaatgaggggattttcacccagcaggaactgtacgacgaactgctcaccctggccgatgaagcaaaactgctgaaactggtgaacaaccgttcaaccggttcagacgttgaccgtcagaagttgcaggagaaagtacgttcttcgctcaaccgtctgcgtcgtttaggcatggtgtggtttatgggccacgacagcagcaagtttcgcattaccgaatcggtgttccgcttcggagccgatgtgcgtgctggcgacgatccccgtgaagcacagcgtcgcctgattcgtgatggcgaagcaatgccgattgaaaatcatctgcaactcaacgatgaaaccgaagagaatcagccagatagcggagaggaagaataatgattgaacgcggtaaatttcgctcactgacgctgattaactggaacggcttttttgcccgaacttttgaccttgacgagctggtcacgacgctttctggcggtaacggggcgggtaaatccaccaccatggcggcgttcgttacggcgctgatccccgacctgaccctgctgcatttccgtaacactacggaagccggggccaccagcggttcgcgcgataaaggtctgcacggtaagctgaaagcgggtgtctgttattcgatgctcgacaccattaactcgcgccaccagcgcgtggtggtcggtgtgcgtctgcaacaggttgccggacgcgatcgtaaagtggatatcaagccgtttgccattcagggactgccgatgtcggtgcagccgacacagctggtgaccgaaaccctgaacgaacgccaggcgcgcgtgctgccgcttaacgagctgaaagacaagctcgaggcgatggaaggcgtgcagtttaaacagttcaactccattactgattaccactcgctgatgttcgatctgggcatcatcgcgcgtcgtctgcgctccgcatctgaccgtagcaaattctatcgtctgatcgaagcttcgctgtatggcgggatctccagtgccattacccgttctctgcgcgactacctgttgccagaaaacagcggcgtgcgtaaagcgttccaggacatggaagcggcgctgcgtgaaaaccgtatgacgctggaagcgattcgtgtcacccagtcggaccgcgacctgtttaagcatctgatcagcgaagccaccaactacgtggcggcggactacatgcgtcacgccaacgagcgccgtgtccatctcgacaaagccctggagtttcgtcgcgagctacatacttcgcgtcagcaactggcggctgagcagtacaaacacgtcgatatggcgcgtgagctggcagagcacaacggtgccgaaggcgatctggaagcggattatcaggcggccagtgatcacctgaacctggtgcaaaccgcactgcgtcagcaggagaagatcgaacgctacgaagcggatctcgatgagctgcagatccgtctggaagagcaaaatgaagtggtggcagaagccatcgaacgccagcaagagaatgaggctcgtgcggaagctgccgaactggaagtggacgagctgaaaagccagcttgctgactaccagcaggcgctggacgtccagcaaacgcgcgcgatccagtataaccaggcgattgctgcgcttaatcgtgccaaagaactgtgccatctgccggacttaaccgccgactgcgccgccgaatggctggaaaccttccaggcgaaagagctggaagcgactgaaaaaatgctctctcttgagcagaaaatgagcatggcgcaaaccgcgcacagccagtttgagcaggcttatcagctggtggtggcaatcaacggcccactggcgcgtaacgaggcgtgggatgtcgctcgcgaactattgcgcgaaggggtcgatcagcgtcacctggcagagcaggttcagccgctgcggatgcgattaagcgaactggaacagcgtctacgcgagcagcaagaagctgagcgtctgctggcagatttctgcaaacgtcagggcaagaattttgatatcgacgaactggaagccctgcatcaggaactggaagcacgcattgcctctctttccgatagcgtgtctaacgcccgtgaagagcgcatggcactgcgccaggagcaggaacagctgcagtctcgcattcagagtttgatgcagcgtgcgccggtttggctggcagcgcaaaacagtctcaaccagttgagcgaacagtgcggcgaagagtttacctccagccaggacgtcaccgaatatctgcaacagttgctggagcgtgagcgagaggcgattgttgaacgcgatgaagtgggcgcgcgcaaaaacgccgtcgatgaagagatcgaacgtttaagccagcctggcggctctgaagatcagcgtctgaacgcgctggcggagcgttttggtggtgtgctgctgtcagaaatttatgacgacgttagcctggaagatgcgccgtacttctcagcgctgtatggcccgtcacgccacgccatcgtggtgccagatctgtcacaggtaactgaacacctggaaggcttgaccgattgcccggaagatctctatctgatcgaaggagatccgcagtcattcgatgacagcgtgttcagcgttgatgagctggaaaaagcggtagtggtgaaaatcgccgatcgtcagtggcgttattcacgtttcccggaagtgccgctgtttggtcgtgctgcgcgtgaaagccgtattgaaagcctccatgccgagcgtgaagtgctttccgaacgcttcgccacgctctcctttgatgtacagaaaactcagcgtctgcatcaggcgttcagccgctttatcggcagtcatctggcggttgcgtttgagtctgacccggaagcagaaatccgtcaactgaacagccgtcgcgtcgaactggagcgggcgttaagtaatcatgaaaatgataaccagcagcagcgtattcagtttgagcaggcgaaagagggcgttacggcgctgaaccgcattctgccgcgtctcaacctgttggctgatgacagcctggcggatcgcgtcgatgaaatccgcgaacgtctggatgaagcccaggaagccgcgcgttttgttcagcagtttggcaatcaactggcgaaactggaaccgattgtttcggtattgcagagcgacccggaacagttcgaacagttaaaagaagattacgcgtactctcagcagatgcagcgcgatgcccgtcagcaggcgtttgccctgacggaagtggtgcagcgtcgtgcgcactttagctattctgactcggcagaaatgcttagcggtaacagcgatctcaacgaaaaactgcgtgaacgtctggaacaggcggaagcggagcgtacccgcgctcgcgaagcgttgcgcggtcacgcagcgcagttgagtcagtacaaccaggtgctggcttcgctgaaaagttcttacgacaccaaaaaagagctactcaacgatctgcaacgtgaattgcaggatatcggcgtgcgtgctgatagcggggcagaagagcgggcgcgtattcgccgtgacgagctgcatgcgcaactgagcaataaccgttcacgccgcaatcaactggaaaaagcgcttaccttctgcgaagcggagatggacaacctgacccgcaaactgcgcaagctggagcgggattactttgagatgcgcgagcaggtagtgaccgccaaagcgggctggtgtgcggtgatgcgcatggtgaaagataacggcgttgagcgccgcttacaccgtcgtgagctggcttatctctccgctgatgatttgcgttccatgtcggataaggcgttaggtgcgctgcgtctggcggtggcggataacgaacatctgcgcgacgtgctgcgcatgtcggaagatccgaaacgtccggagcgtaaaattcagttcttcgtggcggtttatcagcatctgcgtgaacgtattcgtcaggatattattcgtaccgatgatccggtggaagctatcgaacagatggagattgaacttagccgtctgaccgaagaattaacctcccgtgaacagaaactggcgatcagttcccgcagcgtggcgaacatcattcgcaaaaccattcagcgcgagcagaaccgtatccgtatgctcaaccaggggttgcagaacgtatcgtttggtcaggtgaacagcgtgcgtctcaacgtgaacgtgcgtgaaacgcacgccatgctactggatgtgctctctgaacagcacgagcagcatcaggatctgtttaacagcaaccgtttgaccttctcggaagcgctggcgaaactgtatcaacgtcttaacccgcagattgatatggggcagcgcacgccgcagaccatcggtgaagaactgctggattaccgcaactatctggaaatggaagttgaggttaaccgtggttccgatggctggctgcgcgcagagtctggtgcattgtcgaccggtgaggcgattggtaccggtatgtcgattctggtgatggtggtacaaagctgggaagatgaatctcgccgcctgcgcggtaaagatatctctccttgccgcctgctgttcctcgatgaagcagcgcgactggatgctcgttctatcgccacgctgtttgaattgtgtgagcgtttgcaaatgcaactcatcatcgcagcgccggaaaatatcagcccggagaaaggcaccacctataaactggtgcgtaaagtcttccagaataccgaacacgttcatgtcgtcggcctgcgaggatttgcgccgcaactccctgaaacgcttccaggaactgacgaagcgccttctcaggcgagttaaaattaaggcggcagcaatgccgccttttctttttccgaaaactccgtttctgcactaaaaaagtggcacattacggcgcgcttttctttaaacttctttacattaggttatgtaaaaacgtatcggcgtttatatactgaagataagcctgatgagtaacaggcttgctcgtcatactttcgtgagtattggcgttgtacaggcaagtcgtaaaataacagcctggctattcagagtatgataaaaacagggggcaagggatgttgcttaatatgatgtgtggtcgtcagctgtcggcaatcagtttgtgcctggccgtaacattcgctccactgttcaatgcgcaggccgatgagcctgaagtaatccctggcgacagcccggtggctgtcagtgaacagggcgaggcactgccgcaggcgcaagccacggcaataatggcggggatccagccattgcctgaaggtgcggcagaaaaagcccgcacgcaaatcgaatctcaattacccgcaggttacaagccggtttatcttaaccagcttcaactgttgtatgccgcacgcgatatgcaacccatgtgggaaaaccgtgatgctgttaaagccttccagcaacagctggcagaggtggcgattgccggtttccagccgcagtttaataaatgggtagagttactgaccgatcctggtgttaacgggatggcacgcgacgtggtgctctctgatgcgatgatgggctatctccatttcattgcaaatattccggtcaaaggcactcgctggctatatagcagtaaaccttatgcacttgcaacgccgccgctctcggtgattaaccaatggcagctggcgctggataaaggtcaattgcctacgtttgttgcaggactggcaccgcagcatccgcaatatgcggcgatgcatgaatcgttactggccttactctgtgacaccaaaccgtggccccaactgaccggcaaagcaacgttgcgcccagggcagtggagtaacgacgtaccggcgttgcgcgaaatattgcaacgcacaggcatgttggacggggggccgaaaattactctacctggcgatgacacgccaactgacgcggtagtcagcccatccgctgttactgttgaaacagcagaaactaagccgatggataagcaaacgacgtctcgtagtaaacctgcgcctgccgttcgcgccgcctacgataatgaactggtggaagccgttaaacgttttcaggcatggcaaggattgggggcagatggtgctattggcccggcaacacgtgactggttaaacgtaacgcccgcccagcgtgctggtgtgttggctctcaacatccagcgattgcgcttgctgccaacagagctttctaccgggatcatggttaacattccggcctattcgctggtctactatcagaacggcaatcaggtgctggattcgcgagtcattgtcggtcgccccgatcgcaaaacgccgatgatgagcagtgcccttaacaacgtagtggtaaacccgccgtggaacgtacctccaactctggcacgcaaagatattctgccaaaagtgcgcaacgatccgggatatctcgaaagccatggctatacggtgatgcgcggctggaacagcagagaagcgattgacccatggcaggttgactggtctacaatcacggcctcgaatttaccgttccgcttccagcaggctccaggcccacggaactcgctggggcgctataaattcaatatgccgagttcagaggccatttatttgcatgacacgccgaaccacaatctgttcaagcgtgatacacgcgcattgagctcaggctgtgtacgagtgaataaagcttccgatctggcgaatatgctgttgcaggatgcaggctggaatgacaaacgtatttctgatgcgctgaagcagggtgatacacgttacgtcaatattcggcagtcgattccggtgaatctctactacctgacggcctttgttggtgcagatggtcgtacccagtatcgtacagatatttacaattatgatctgcctgcgcgatccagctcgcaaatcgtatcgaaagcggaacaattaatcaggtaaatgaagtagttcggggaaatcagttgtcgtaataattagcatgattgggggcgattctctgcagcccccgtcactgctggggttgagtcatcttgacgtctgctttacgggcggttaaggtgcctcttgtgcgccagaagtgcatataaacgataacattgacctgtagacttgattatcatggacaaattcgacgctaatcgccgcaaattgctggcgcttggtggcgttgcactcggtgccgccatcctgccgacccctgcgtttgcaacactctctaccccacgcccgcgcattttgacactcaataatcttcataccggagagtcaatcaaagcggagtttttcgatggcagaggctatattcaggaagaattggcaaaacttaaccattttttccgcgattaccgcgcgaacaaaataaagtccatcgacccaggattattcgaccagttgtatcgcctgcaagggttgttaggcacgcgcaaaccggtgcaactcatttccggttatcgttctattgataccaacaatgaactacgcgcccgcagccgtggagtagcgaagaaaagctatcacactaaaggccaggcgatggatttccatattgaaggtatcgcgttaagcaatattcgcaaagccgcgttatctatgcgcgcaggtggtgtaggatattatccacgtagtaactttgtgcatattgataccgggccagcacggcactggtagtaattgcttaacgaaacaggggcagtatgaactatcgtattattccggtcaccgcattctcccagaactgttcattaatctggtgtgaacaaacccgtctggccgcactggtcgatcctggcggcgatgcggaaaaaatcaaacaggaagttgatgacagcggcctgacactgatgcagatcctgctgacgcatggtcatctggaccacgttggcgcagcggcggaactggcgcaacattacggcgtgccggttttcggcccggaaaaagaagatgagttctggctgcaaggcttgcctgcgcaaagtcgtatgtttggtctggaagagtgccagccgctgacgccagatcgttggctgaacgaaggcgataccatcagcatagggaatgtgactttacaggtgttacattgccctgggcatacgccgggtcatgtcgtgttttttgatgatcgggcaaagctgctgatttctggcgatgttattttcaaaggcggagtagggcgcagtgacttcccgcgtggcgatcataatcaactgatttcttcaatcaaagataaattgctgccactgggggatgacgtgatatttattccgggtcacggaccattatccacacttggttatgaacgcctgcataatcccttcctgcaagacgaaatgcccgtctggtaaggcacataaaaaagcccgcttttaatgctggcctggatttctggcaaagtgcgctttgtttatgccggatgcggcacgagcgccttatccggcctacaaaatcgtgcaaattcaaaatattgcaggggacgcgtaggcctgataagcgtagcgcatcaggcaatgttgcgtttgtcatcagtctcagcccgcttttcagcgggcttcattgtttttaatgcttacagcactgccacaatcgcttcgcacagcggagccatgttatctggtgtcatcccggccacatttacgcgaccagaagcaaccgcatatacgccaaactcttcgcgcagacgcagcacttgttcttttgtcaggccactgaaggagaacatgccgttctgtttgatgataaagctgaagtcgcggtttgcgcctttttcctgcagcgtattgacgaacaactgacgcatacgctgaatacgctggcgcatatcagtcagctcttgttcccaaatcgcacgtaacgcatcgttgctcaggatggtggcaacaacagaagcgccgtgtgctggtgggttagagtagttagcgcgaatcgccgctttcatttggctgaatgcgcgatcaacggtttcactgtcggcagcaaccagagtacaagcgccaacacgctcgttgtacaggccaaagtttttagagtaggaactggcaacaatcagctctttatgcatagccgcgaaagcgcgcagtccttcagcatcttcttccagaccacgggcaaaaccctggtaagcgaagtcaaacagcggtaaccagcctttctcaacggagagttgtgccagtgtttgccattgttccagcgtagggtcgataccggttgggttatggcagcagccatggaacagcactacgtcgccagcctgagcttcattcaggctgttaatcagtgcatcgaagtcaagagtgtgattttccgcatcataataagcgtattcacgaacttccagacctgcagagttaaagacgctcttatggttcggccagcttgggttgctcacccacacacgcttaacgctggtattttttgccaggaaatcggcagccacgcgtagtgcgccagtgccccccggagtctgtgccgtgcgagcacgtttgtcattgatcagggcgctacctttaccaaacagcagttcctgagtgcagcgaccaaattcagggatgccgtcaatgccgaggtaatttttggtggtttcattttcgagcagatactgttcagcctttttcacgctggtcagtaccggggttttgcccgtctcatctttatagacaccaatcccgaggttaattttgccgggacgttcatcggcacgaaacagatcggccaggcccagaatcgggtcggcaggagcggcggtaatgttctcaaacatgacgaggttccattatggttacagaagggaagtccgctatcagggtaacgggagatttacaaaattccaactattactgatgaaaacgcaggctgtttttgcaagacgtgagattgctctggaaggtataaaaaaaacaggaccaaagtcctgttttttcggcatttaacaaagaggtgtgctattagaactggtaaacgatacccacagcaacggtgtcgtctgaacctacgcccagtttgttgtcagaatcgatctggttgatgatgtagtcaacataggtggacatgtttttgttgaagtagtaggttgcgcccacttcaaagtagttcaccagatcaacatcaccgataccttctacgtctttcgctttagatttggtgtaagcgatggacggacgcagaccgaaatcgaactggtattgcgcaactaacagaacgtcttgcgttttgttggcgaagccgctggtgtttgtaaatttattagtgatcggcgtagcgttacgggtttcaccgtagttcgctgccaggtagatgttgttcgcgtcgtacttcagaccagtagcccactgttcagcttttttaccgttgccaagaggttgagcttcttgcaggttggtacggtcagctgcaccataagcaccaacgataccaaagccttcgtattcgtagctgatagaaccgccaacaccgtcgccgttagaacggcgtgcagtgtcacgctcgtttttacccaggtactgaacagcgaagttcaggccatcaaccagaccaaagaagttggagttacgataggtagcaacgccgccaacacgaccaacgaagaagtcatcgctgtatgcagtatcaccaccaaattctggcagcatatcggtgtaacccagtgcatcataaaccacaccgtagttacggccgtaatcgaaagaaccaacgtcagcgtatttaagacccgcgaatgccagacgcgttttgttaccagtttgagcgtcagcgccttcagagttgttaccctggaagttatattcccactgaccataaccggtcagatcggaattgatttgagtttcccctttaaaaccaagacgggcataggtcatgtcgccattgccaccgtaactgttttcaccgttacccttggaaaaataatgcagaccaacagctttaccgtacagatctactttgttgccatctttgttatagatttctgcagcgtttgcagtacctgctactaacagagcagggacgatcactgccagaatattgcgcttcatcattatttattaccctcatggttttttttatgacacctgccactgccgtcaataagttctgtcaataaaaatttacggaactattgatgagagtttggtgtctttatgtgtctgcaggcatctttccattcaaactaacgtttcgctaccgtgaaagtgctacaaagataaagatttggtttcaaaaagaaaaaatatgtaaccaaaagtaaaatttaaggaactttgtgaacaccgtcatatttccatagagacgtgatgatatttacagcaattttaatctatttatatgatttccttatatttaaattaactaaacggaaattttgtttctgatggaaactttatcgacctggcacaaaatcttctttcagacatccagaatgccaaaaaatagtatgaaaattgtgctattagctaagaaaaaactaatccgcaataagaatgcggattagtttttgcgcgtaaatgttgcaatgtaatattccgtaacaggatgatcgttatggcggggttgcaaatagattgcttgacttaacaaacagataacttgacagaaaagataaaaaaagagccagcgggcgctggctcttgaagacgctaaattagaagctggcgttacgcggagtacgtgggaacggaatcacatcacgtacgttttgcacgccagttacgtaagcaatcagacgttcaaaaccaagaccgaaacctgaatgcggaacagtaccgtagcgacgcagatcgcgataccaccagtaatcttctttattcaggcccatttccagcatacgctcgtccagcacgtccagacgttcttcacgctgggagccaccaatgatctcaccgatgcccggagccagaacgtccatagccgcaacggttttaccgtcttcgttaaggcgcatatagaacgctttaatatctttcggatagtttttaaccactaccggtgctttaaagtgttcttccgccagataacgctcatgctcagaagagagatcgactccccagtaaaccgggttttcaaacttcctgccgcagttttcgagaatggtcactgcgtcggtataatccacctgcgcaaaatcggcttcaatgaagcgttccagacgtgaaacggcatctttatctacgcgttcagcgaagaatttcatgtcgtcagcgcgttcttcgagaaccgctttgaagacatatttcagcatggcttcagccagacccgcaatatcgttcaggttagcaaacgccacttccggctccagcatccagaattccgccaggtgacggctggtgttggagttttcagcacggaaagtcgggccgaaggtataaattttggacaatgcgcaagcgtaggtttcgccgttcaactggccagatacggtcaggaaagactctttaccaaagaagtctttgtcgaaatccactttgccctgatcgttacgcggcaggttttccagatccagcgtagaaacgcggaacatttcgcctgcaccttcggtatcagatgcggtaatcagtggcgttgaaacccagaagaatccctgctcgttaaagaagcgatgcagcgcctgcgccagcgtatggcgaacgcgcgcgacggcaccaatcaggtttgtgcgcggacgcaggtgagcgacttcacgcagatactcaatgctgtggcgttttgccgccatcgggtaagtgtctggatcttcaacccaaccagcaacttcaaccttgctggcctgaatttcaaattgttgcccctggcccggcgacgccacgactttacccgtcacaatgaccgagcagccggtggtcagacgcaggacgtcttcattgtaattgggcagagaattattgatgacagcctgtacaggatcaaagcaggaaccgtcataaacggcgaggaaggagatgccagcttttgaatctcggcgggtacgtacccatccgcgcacggtgacttcgctgtcaacggctacacggccctggagtacgtcggctacaggcacaacgctcataatattctctctgttaatagtcggaaaaaataaacacttgtccacccgtaaatggggggatacctatgttacctggcatctgcaatcagacaagcagaattcgcaaatgcagcgaaagatttcggaattaaaggtaaaaaaagggagccgattagctccctgatgatattaactggcttttttaatatgcggaaggtcgaacgctttgcgcagcgcccgaacaaacgctttatcatggcagatagttttgccagggctgtcagaaagtttcgccaccggtttaccgttacactctaccaacttaatgacaatattcaggggttttacctgggggatatcgcaggtcaggcgagtcccaataccaaaacttaattgcacgcgggaagagaagtggcggtatagctcaaccgctttgcgtaaatccagattgtcagagaaaaccagcgttttactctgtggatcaattcccagcttttcataatgtgcaatggctttttcaccccattcaaccgggtcgccagagtcatgacgcaggccctgataccgactagcgaactcgacaccgaaatcacgcaggaaagcatccatagtgatgcagtcggttaatgcaatgccaagttggtcgggatactcttccagccaggcagcaagtgcagctcgctggctgttggctagatccgggctgatttgctgatgtgcctggaaccattcgtgtgcctgtgttcccatcggcgtgagggaaagccgacgcgccagatcgtagttgctggtgcccacaaaccaggattcctgttgcagacgcttaacgatggtttcttgtacttcgcgagaaaaacggcgacgggtgccaaaatccatcagatggaagcgcgacatatcaagaccggcggttaacgccgagaagtcgactaatttgctttccagcgtgtcgagggcttgcgcaacgtcggcctgcggtgagcgatagcgatgtaccatttcactgataaccgccagcaaaggaacttcccagaggatgacttcacgccacgggccgcttaaacgaatatccagcttgccattatcgttggacacggtgacttgttccgggttaaagcggaactcgcgtaaccagttaagatagtcggccttaaagaaaggcagggcagaaagccactgatattcatcatcctgcaggcgcaggtgctgcatcgcctgaacctgttcacgaatagcatcggcataaatacccagcagatcgtcacctcggcaacgaaactccgccgcgacatgcacatcgtaatagtgatgaaacacggcttgctgcatatgcaacttataagcatctgtatccagcaacgagtgcagaacaggagaagcgaattgtgtcataggtgcgcagtagcgtcctcgtacaggagcgtttagtacaataaacatcttcaggaactgctggagtataccttgtttcgcaatttattgaaccccgatcacaccatatgccacctttctggtcgatggcattacgcggtgtatgttataaaaatgtagcaataaaggcgtttgtacctgaaaagatgaagattctgcatagcgcgatttacgcaacaggaatagactgaacaccagactctataaaagatgctaaaggttatttatgactcaacagccacaagccaaataccgtcacgattatcgtgcgccggattaccagattactgatattgacttgacctttgacctcgacgcgcaaaagacggtcgttaccgcggtcagccaggctgtccgtcatggtgcatcagatgctccccttcgtctcaacggcgaagacctcaaactggtttctgttcatattaatgatgagccgtggaccgcctggaaagaagaagagggcgcactggttatcagtaatttgccggagcgttttacgcttaagatcattaatgaaataagcccggcggcgaataccgcgctggaagggctttatcagtcaggcgatgcgctttgcacccagtgtgaagccgaaggtttccgccatattacgtattatctcgaccgcccggacgtgctggcgcgttttaccaccaaaattattgccgataaaatcaaatatcccttcctgctttccaatggtaaccgcgttgcgcaaggcgaactggaaaacggacgccattgggtacagtggcaggacccgttcccgaaaccgtgctacctgtttgcgctggtggcaggcgactttgatgtactgcgcgatacctttaccacgcgttctggtcgcgaagtagcactggagctgtacgtcgatcgcggcaaccttgatcgcgcgccgtgggcgatgacctcgctgaaaaactccatgaaatgggatgaagaacgctttggcctggagtatgacctcgacatctatatgatcgtcgcggtggatttcttcaatatgggcgcaatggagaataaggggctgaatatctttaactccaaatatgtgctggcccgcaccgacaccgccaccgacaaagattacctcgatattgaacgcgttatcggccatgaatatttccataactggaccggtaaccgagtgacctgtcgcgactggttccagctcagcctgaaagaaggtttaaccgtcttccgcgatcaggagttcagctctgaccttggttcccgcgcagttaaccgcatcaataatgtacgcaccatgcgcggattgcagtttgcagaagacgccagcccgatggcgcacccgatccgcccggatatggtcattgagatgaacaacttctacaccctgaccgtttacgagaagggcgcggaagtgattcgcatgatccacaccctgcttggcgaagaaaacttccagaaagggatgcagctttatttcgagcgtcatgatggtagtgcagcgacctgtgacgactttgtgcaggcgatggaagatgcgtcgaatgtcgatctctcccatttccgccgttggtacagccagtccggtacaccgattgtgaccgtcaaagacgactacaatccggaaaccgagcagtacaccctgaccatcagccagcgcacgccagccacgccggatcaggcagaaaaacagccgctgcatattccgtttgccatcgaactgtatgataacgaaggcaaagtgatcccgttgcagaaaggcggtcatccggtgaattccgtgctgaacgtcactcaggcggaacagacctttgtctttgataatgtctacttccagccggtgcctgcgctgctgtgcgaattctctgcgccagtgaaactggaatataagtggagcgatcagcaactgaccttcctgatgcgtcatgcgcgtaatgatttctcccgctgggatgcggcgcaaagtttgctggcaacctacatcaagctgaacgtcgcgcgtcatcagcaaggtcagccgctgtctctgccggtgcatgtggctgatgctttccgcgcggtactgcttgatgagaagattgatccagcgctggcggcagaaatcctgacgctgccttctgtcaatgaaatggctgaattgttcgatatcatcgacccgattgctattgccgaagtacgcgaagcactcactcgtactctggcgactgaactggcggatgagctactggctatttacaacgcgaattaccagagcgagtaccgtgttgagcatgaagatattgcaaaacgcactctgcgtaatgcctgcctgcgtttcctcgcttttggtgaaacgcatctggctgatgtgctggtgagcaagcagttccacgaagcaaacaatatgactgatgcgctggcggcgctttctgcggcggttgccgcacagctgccttgccgtgacgcgctgatgcaggagtacgacgacaagtggcatcagaacggtctggtgatggataaatggtttatcctgcaagccaccagcccggcggcgaatgtgctggagacggtgcgcggcctgttgcagcatcgctcatttaccatgagcaacccgaaccgtattcgttcgttgattggcgcgtttgcgggcagcaatccggcagcgttccatgccgaagatggcagcggttacctgttcctggtggaaatgcttaccgacctcaacagccgtaacccgcaggtggcttcacgtctgattgaaccgctgattcgcctgaaacgttacgatgccaaacgtcaggagaaaatgcgcgcggcgctggaacagttgaaagggctggaaaatctctctggcgatctgtacgagaagataactaaagcactggcttgataaataaccgaatggcggcaatagcgccgccattcggggaatttacccctgttttctcaggcgagtttcagattcaccacgttgcatcacccgttgcaacacctccgcttccagctccgctaatcgcaccgaccctaatcgacgcggacgggggatatccactgtcaaatccagaccaatttttccctcttcaattaacagcacccggtcagccatcgctaccgcttcgctcacatcatgcgtcaccaacagtacggtaaagccgtgctcctgccaaagtgacacaatcaaatcctgcatctcgagtcgcgttaaggcgtccagcgccccgagcggttcatcaagcaacaataatcccggtcgatgaatcaacgctcttgccagcgccactcgctgtttctgcccgccagaaagtgcggcaggccattcccctgcgcgattctccagtcctaccgcagccaacgctcgacgtgcggcatcgcgccactggcctttaaggcctaacccaacgttatcaatcaccgatttccacggtagcagacgcgcatcctgaaacatcattcgcgtgtcttcctgaatttcagccagcggtgtggtgcccgctaacacatcgcctgcggttggcgtttccagacctgccagcaggcgcagcagggtacttttgccaccaccgctgcggcccaccaccgccacaaactgacctgccggaatatgtaaatccagttggttcaggacgatattttccgcgtaatgtttgcttactgcattgagcaacaatggcgtgccctggttcagacgagcagtattcataccgtggcctccttcaaatgataagccgggttccagcgcaaccagaggcgctctaacagctgcgcgctgacgtcagccagtttgccgagcagggcgtaaagaataatagcgactaccaccacgtccgtttgcaaaaactcccgcgcattcatcgccagataaccaatgcctgaattggcagaaatggtttcggcaacaatcagcgtcagccacatcaggcccaacgcaaaacgcacgccgaccataattgagggcagggcaccaggcaggatcacatggataaacagcggtatgccggataatccatagctacgcgccatctccaccaacccgcgatcgatattacggatgccatgccaggtgttgatataaatggggaatagcgtaccgagcgccaccagaaagatttttgcggattcatcaatgccaaaccacaaaatcaccagcgggatcagcgccagatgcggcacgttgcgcaacatctgaattgaggtatccagcagccgttctccccagcgagatagcccgctaatcagtcccaaaatcaaccccagcgatccgccaattgaaaagccaatcagcgcccgccaggagctgatcgccagatgctgccacagttcgccgctggcggagagcgtccagaacgccgtcaccactccttccggtgaaggcaaaatacgcgtcgacagccagccaaccgaggaggccagttgccacaccgccacgatgcccaccggtaaaaaccagggggcaacgcgcaataaccacttcttcactggcgttgccattatttcttccttagctttgcgcgactttacgggggataaaatcattcgccaccgcttcgccttgcggattcagcggctgcggctggggaatttccgggatggcgacatccagaagcgggaacagcaactcgccaacccgatacgcttcttccagatgcggatagcccgaaagcacaaaactgtcgatgccaagcgcggcatattcgttgattcgcgcagcgaccgtaggaccatcgcccaccagcgccgtcccggcaccgccgcgcactaagccaacgcccgcccataaattggggctgatctccagattgtcgcgcttgccgttatgtaacgccgccattcgctgttgccctacggaatccgtccgggcgaatgcggcctgtgctttggcgatagtttcatcatcaagatgcgagattaaccgctcggcggcctgccacgcttcgtcgttagtttcacgaacaatcacatgcagacgaataccgaaacgaattttgcgtccatgcgcggcagctttcgcccgcacttgttcgattttctctttaaccagttccggcggttcgccccaggtgaggtagagatcaacctgttctgccgccagctcctgggcgacatctgacgatccgccaaagtaaagtggcggatacggctgttgaatcgccgggaagagcagttttgctccgcgcacatgaatatgtttaccgttgaaatcgacggtttctctctgcaataaacgccgccagacctgggtaaattccgccgaggcttcgtagcgctcgctatgatcaaggaacactccgtcgcctgccagctcttgtggatcgctgcctgtgaccaggttaaacaacgcacgtccatttgagagacggtcaagcgtggcggcctggcgggcggcaacggtaggtgaggttacgctgggacgcagggcgacaagaaacttcagccgctgcgtcaccgggatcatcgatgcggcaaccagccacgcatcttcgcaggagcgccccgttggaattagcacaccggtatagccaagacgatccgccgcttgcgcaatttgttgcagataaccgtgatcaaccgggcgtgaaccttcttccgttcccagataatgcccgtcaccgtgggtcggtaaaaaccagaacatattcagactcataattgttttccttccagttgagtgggctgccagatgcgctggcgaatatcgacttttttcggcaccagacgattttcataaaacagatctgccgtttgctgctgtaaggcggcaacctcggcgttaaccggtttgatggtggtaggagggcgatgatctaagtaagaggcaatcaccggtgccggtaagcccatcgtttttgccagtaaagcgatgctttgctcgcgctggctgcgggttaacgcatcggcctcactaaaggttgccagtacgccctgaataaaagcgccgtttttttctgcatagggacgagctgccagataaaacgatccagtttgattgagatcggtgccgtctttcagcacccgcacgccgccctgtaataatgcagcagagtagtagggatcccagatagcccaggcgtcaacgttaccttgctggaacgcggcgcgggcatcagcgggcgtcaggtaagtgggttggatatcggtaaacttaagtccggcctgacgcagtgcacgcagtaaaaggttgtgtgaactggaacctttctgaaaggcaactttgtgacctttaagatcggctacggttttgatcgggctgttttctgccaccagaatcacttcggctttgggcttcggtggctcgacgcccacgtacaccaaatcagccccggcagcctgggcaaagattggcggaatatccccggtactgccgagatcaatactgccaacgtttaacgcttccaacatttgcggacccgcggggaactccacccaggagatttttgattccggatagcgtttttccagtaactggtggctttttgccagcaccataccaatactgcctttctgatagcctatacgtaacgcttcaggcgaggattctgcagcaaccgcaaaagtagagacgctaagcaatcccgccagcgccagtttaatgatgttacgcatgggcattacctcgcagagacagaaggtcaggaacctgaacatcgcggcggtgcaatgcctgccagaaagtttctagcgcggtatcaagacgggtttgcagatttggcgtgaactggggtctgtgatggtaatcaattacttgtgagtcatcggcaaacacgccgtgcaggatctcctgagctttcagtgcgcttaaaactggtttaagggcataatcgaccgccagcagatgggccacggtaccgcccgtcgccagcggtagcaccactttgccttgcaaagcgcgttctggcagcaggtcgagcagggttttcaacgcaccggaataggcggctttatacacaggcgtggcgacaatcagcccatcggcctgttgcagctgttcggtgaaggtcttgagtgccggactatcgaaacgagcataaagtagatcttccggggcgaagttttgcagattccagtgataaacctctacatccaggccatttagtttttcccgcgcatattccagcaaggagctggagcgagaaggaaagcgaggactacccgccagggtgatgacacgcatactctctccttataaccaattgttctttttttgttaacattgataacaattcggtcagtctgtcggagagacaagaaaattccaaatataaattttgtgtatctttttctgaaaataaactaaagaaagggctttatatatcacgcatatttatttattggatagtcattagatgttgaatcaatgaattactcgttcagttaatatttaaatattcatgaaatctataaattaaagatttgtcacttattggatttagtatgcttgatttaaatggcggacaattattgttattattaagtctaatgtcatttaaaggcattatcatatttacgaagagatcaggatgataacgatgaaaaaaagtgtattgacggcgtttataactgtggtatgtgcaacgtccagcgttatggctgctgatgataatgctatcacggatggctcagtaacatttaatggtaaagttattgctccagcttgtaccctggtagctgcgacgaaagattccgtggtgactttgccagatgttagtgccacgaagttgcaaaccaatggtcaggtttctggcgtgcaaattgatgtgccaattgaattaaaagattgtgatactaccgtaacaaaaaatgcaacgttcacctttaatggcactgcggatactactcagattacagcgtttgctaaccaggcctcatctgatgctgctacaaacgtggccctgcaaatgtatatgaatgatggtacaacggccatcacgccagacacagaaaccgggaacattttgttgcaggatggagatcagacgttgacttttaaagttgattatatcgctacggggaaagcgacttcaggtaatgtgaatgcggtaacaaatttccatattaactattattaatagaactcattaattgttttattaattagtacccctccagtgttctggaggggatattcatattttttaagagtgactatttatgaaaacttgcataacaaagggaattgtgaccgtaagtttaacggcaatattactcagctgctcatccgcatgggcggcaggtaaaggcgggattggacttgcagcaacacgtcttgtttattcagaaggtgaagagcaaatttcactgggtgtacgtaacaccagtccggatgttccttatcttattcagtcatgggtgatgaccccagataataaaaaatcagcagactttattattacaccaccgctatttgtgctgaatccggcaaatgagaatctgttacgcattatgtacattggagcgccgttggcgaaagacagagaaacccttttcttcactagcgtacgggcagtcccttcaacaacgaagcggaaagagggaaataccctgaagattgccacacaaagcgtcatcaaacttttctggcgaccaaaaggtttagcgtatcccttaggcgaggctccggcgaaactgcgttgcacttcgtcagctgacatggttacggtcagtaacccaacaccttatttcattaccctgacagacctgaaaataggtggaaaagtagttaaaaatcaaatgatttccccctttgataaataccaattttctctgccaaagggggccaaaaatagcagcgtaacgtatcgaaccatcaatgactacggggcggaaacgccgcaactcaactgtaaatcgtaagccgtcttcagttaagagagcgagatgtatagaactcatcgacaacacagcctgttaagctctggtggagtgccatcgtttattggtgggctggtggtgtttgtgtcggcagcgttcaatgcacaagctgaaacctggttcgatcctgcttttttcaaagatgatccctcaatggtggccgatttgtctcgtttcgaaaaaggacaaaaaataacgccaggggtttatcgtgtcgatattgttctgaatcagacaattgtagatacgcgcaacgtcaattttgttgagataacgccagagaaggggattgccgcctgtttgacgactgaaagcctggatgcaatgggtgttaatactgatgcgtttccggcttttaaacaactggacaaacaagcgtgtgtgccattggcggagattattccggatgccagcgtaacgtttaatgtgaataaactccgtctggaaatttcagtaccgcaaatcgccatcaaaagtaatgcccgtggttatgtcccccctgaacgttgggatgaagggatcaacgcgctattactgggatattcgtttagcggggctaacagtattcatagcagcgcagacagtgattctggcgacagctattttctgaatttaaacagtggcgttaatttaggcccatggagattgcgcaacaattcaacatggagtcgtagtagtggccaaaccgcagaatggaagaatctcagcagctatttgcaacgggcggttattcctctgaaaggcgaactgaccgtaggtgatgattatactgcaggcgattttttcgatagtgtcagctttcgtggtgtgcagctggcgtcagatgacaacatgctgccagacagcctgaaagggtttgcgcctgtggtgcgtggtatcgccaaaagcaatgcccagataacgattaagcaaaatggttacaccatttaccaaacttatgtatcgcctggtgcttttgaaattagtgatctctattccacgtcgtcgagcggtgatttgttagttgaaatcaaagaagcggacggcagcgtcaatagctacagcgtaccgttctccagtgtgccattactccagcgtcaggggcgaatcaaatacgcggtgacactggcgaaatacagaaccaatagtaatgaacagcaggagagcaaatttgcccaggccacgttgcagtggggcggaccgtggggaacgacctggtatggtggtggacaatatgctgaatattaccgtgccgccatgtttggtctgggatttaacctcggcgatttcggagcaatttcgttcgatgcgacccaggcgaagagtacgctagcagatcaaagcgaacataaaggtcagtcatatcgttttctgtatgccaaaacgctcaaccacttgggcactaactttcaattgatgggctatcgctattcgacgtcgggtttctacaccctttccgacaccatgtataaacatatggatggctacgaatttaatgacggtgatgatgaagatacgccgatgtggtcgcgttattacaatttgttttacaccaaacgtggcaaactgcaggtcaatatctcccagcaattaggcgagtacggttcgttttatttaagtggtagccagcaaacttactggcatacggatcaacaggatcggctattacagtttggctacaacacgcaaattaaagatctttcgctggggatttcctggaactacagtaagtcccgtggtcaacctgatgctgatcaggtgtttgctctaaatttttccctgccgctcaatctgttgctccccagaagtaatgatagctataccaggaaaaaaaattacgcctggatgacctctaacaccagtatcgataacgaagggcacactacacaaaacctgggtttaacggagacattactcgatgacggtaacctgagctacagcgtgcaacagggatataacagcgaggggaaaacggctaatggtagcgccagcatggattacaaaggggcgtttgcggatgcccgagtgggctacaactacagcgataacggcagtcaacaacaactgaactacgctctttcaggcagtttagttgcccattcacagggcattaccctggggcaatcgctgggggaaactaacgttctgattgcagcaccaggcgcagagaatactcgtgtggcgaacagcaccgggctgaaaactgactggcgcggatataccgttgttccttatgccacttcttatcgggaaaatcgaatcgcacttgatgcggcgtcgttaaaacgtaacgtggatcttgaaaatgcagtagtcaacgtggttcccaccaaaggggcgttggttctggcggagttcaatgcccatgcgggtgcaagggtattaatgaaaacatcaaagcagggtataccgctgcgttttggcgcgatagcgacgctggacggcgtacaggctaatagcggcataattgatgatgatggctcgctctatatggcgggtttaccggcgaagggaacaataagcgtgcgctggggcgaagctcccgatcaaatttgtcatatcaattacgagcttaccgaacaacaaattaactctgcgattacgcgaatggatgccatatgcagataatctttggagaaaaatgcgtgtcattactacgactattttttgccgccgtcttaatgttatggtgcgctcaaaccgctgcttatagcgggcagtgtcatactactcaggggaatccgtatattggcgtcaattttggcgttaaaaccctggaggaagaagcaaatacggcaggggtagttaaagacaaattttatcagtggaacgaatcgaatgattattatgtttcctgtgattgcgataaagacaatgtcagaagtggccgatgggcattcgccgcggattcaccgttagtctatttaggcgacaactggtacaaaattaatgactatcttgccgccaaagttttattgcaggttaaaggcagttctcctactgcggttcctttcgaaaacgtgggcacagggggggatacccgatggcatatttgcgaccctggcggtcaacgtttaggtgggcagggggcaagcggtaatagcggtagcttttccctgaaaatattgcagccgttcgttggctcggtcgtcattcctcctatggcgctggcgcgattatatgaatgctacaacatacccgcaggtgattcctgcacgactacaggtacaccggttttagtgtattacctgtctggtacgatcaattcacttggctcatgttccgtcaatgccggagagacaattgaagttgatttaggtgatgtcttcgctgccaatttccgtgttgtagggcataaacctcttggggccagaacggcagaacttgcaattccagtcaggtgtaacacgggaaacgcgggattagttaatgtcaacctgagtctgacggcaaccacagaccccagctatccccaggcgattaagacgtcacgtcctggcgtgggcgtggtggtgaccgatagccagaacaacattatttcccctgctggtggaacattaccgctctctattcctgatgatgcagacagtatcgcgcgaatgaatgtctatccagtcagcacgacaggtgtaccaccagaaaccgggcgatttgaagccacggcaacggtgagaataaattttgattaacgcgtgaacgtatgaagaaaaaaacgatatttcagtgcgttatcttgttctttagcattcttaacatccatgtcgggatggctgggcctgaacaagttagtatgcatatttatgggaatgtggtcgatcagggctgtgatgtcgccaccaaaagtgcattacaaaatattcatattggtgattttaatatcagtgattttcaggccgcgaataccgtaagcactgctgctgatttgaatatcgatatcaccggttgtgccgctggtattactggcgcggacgtcctttttagcggcgaggctgacacccttgcgccgacactgctcaaactaactgacacaggcggaagcggtggtatggcaacggggattgccgtgcaaattcttgatgcgcaaagtcagcaagaaatcccgctcaatcaggtccagcctcttacgcccttaaaagccggggataacacactcaaatatcaacttcgttataagtccacaaaggcgggagcaacgggcggtaatgcgacggcggttctctattttgatctggtttaccagtgaaggagtgatgttgaaacggataatctggattctgttcttattgggattaacgtggggctgtgagctatttgcccatgatggcacggtcaacattagcggatcgtttcgccgtaatacatgcgtgctggcacaggatagcaagcaaatcaatgtgcagttaggcgatgtctcgctgacacgtttttctcatgggaattatggcccggagaaatctttcatcattaatttgcaggattgcggaacagatgtcagcacggttgacgtcaccttttcaggaacccccgacggagtgcagagcgaaatgttgtccattgaaagtggtacggatgcagccagcgggctggcaattgcgattctggatgatgcgaagatattgattccgcttaaccaggcgagtaaagactacagcctacatagcggtaaggtgccattaactttttatgcgcaattgcgacctgtcaatagcgatgtgcagtcgggtaaagtgaatgccagcgcgacatttgtacttcattatgactaatacgtggaacagattggcgctcttgattttcgccgttttatcgctgctggtggcgggtgaattgcaggcaggagtggtggtcggcggaacgcgatttatctttccggcagacagagaatcgatatctattttactgactaataccagtcaggaatcctggcttattaacagtaaaatcaaccgcccaacgcgttgggccgggggggaagcgtcgacagtgccagcaccattactggccgctccgccacttattctcctgaagcccggtacgacaggcacgttgcgcttgctgagaacggaaagcgacatcttgcctgtggatcgcgaaacgctatttgagttaagcattgccagcgtgccatccggcaaagttgaaaatcagagcgtaaaagtggcgatgcgctcggtatttaaactgttctggcgacccgaaggtttgccgggcgacccgctggaagcttatcaacaattacgctggacacggaattcgcagggtgtacaactcactaacccaacgccttattacattaacctgattcaggtgagtgtaaatggtaaagcgttaagtaatgtgggagttgtgccgcctaaaagccagcgtcagacaagctggtgtcaggcaatcgcaccgtgtcatgtcgcctggcgggcgataaatgattacggcgggttgagtgcaaagaaggagcaaaatctgccctgaaacaggttcggaaaacgtttgcgttttttttgccgcaggtcaattcccttttggtccgaactcgcacataatacgcccccggtttgcacaccgggaatccaggagagttcatgtactaccccttcgttcgtaaagcccttttccagctcgatccagagcgcgctcatgagtttacttttcagcaattacgccgtattacaggaacgccgtttgaagcactggtgcggcagaaagtgcctgcgaaacctgttaactgcatgggcctgacgtttaaaaatccgcttggtctggcagccggtcttgataaagacggggagtgcattgacgcgttaggcgcgatgggatttggatcgatcgagatcggtaccgtcacgccacgtccacagccaggtaatgacaagccgcgtctctttcgtctggtagatgccgaaggtttgatcaaccgtatgggctttaataatcttggcgttgataacctcgtagagaacgtaaaaaaggcccattatgacggcgtcctgggtattaacatcggcaaaaataaagatacgccagtggagcagggcaaagatgactatctgatttgtatggaaaaaatctatgcctatgcgggatatatcgccatcaatatttcatcgccgaataccccaggattacgcacgctgcaatatggtgaagcgctggatgatctcttaaccgcgattaaaaataagcaaaatgatttgcaagcgatgcaccataaatatgtgccgatcgcagtgaagatcgcgccggatctttctgaagaagaattgatccaggttgccgatagtttagttcgccataatattgatggcgttattgcaaccaataccacactcgatcgttctcttgttcagggaatgaaaaattgcgatcaaaccggtggcttaagtggtcgtccgcttcagttaaaaagcaccgaaattattcgccgcttgtcactggaattaaacggtcgcttaccgatcatcggtgttggcggcatcgactcggttatcgctgcgcgtgaaaagattgctgcgggtgcctcactggtgcaaatttattctggttttatttttaaaggtccgccgctgattaaagaaatcgttacccatatctaattatttcttcgaattcctctttataagataatcagggctttattttcagccctggttgttttatattcatcgctgttgcttatttagacattttgtacttttattgttgaggttattaagcgaagcgacaatggattgtgttgctgcggttttatagggtaggggagaggcagatgcgaattaaaccagacgataactggcgttggtattacgatgaagagcacgatcgaatgatgctcgatttagccaatggtatgctatttcgctcacgttttgcgcgcaagatgttgactccagatgccttttctcccgcaggcttttgcgttgacgacgccgcgctctatttctcttttgaagaaaagtgccgcgattttaatttatctaaagaacaaaaagccgaactggtgctgaatgcactggtagcaattcgctatctcaaaccgcaaatgccgaaaagctggcattttgtttcccatggtgaaatgtgggtgcccatgccgggcgatgcggcctgcgtttggttgagcgatactcacgagcaggtcaatttgctggtcgttgaatctggcgaaaatgccgcactatgcctgctggcacaaccctgcgttgttattgcgggtcgcgcgatgcagttgggcgacgccattaaaatcatgaacgacaggctgaaaccgcaggttaatgttgacagcttcagcctcgaacaggcagtctaacgcgccaacttaagtgcagtcttcggtacacagctacagcaaagaatggtgccatcatcgcccattgctgattttttcagcggcgtgacttcgccttctaaaagctgaacacggcaacttccacaaatgcccgcgcggcaagaataagggatacgaattccctgattttctaattgctccagcaacacctgttggttatttccacgaaatgcctgtccctgccagtcaatatctacatttgcgtccggttgttgcgtgatgttggcggtatcatcagcggcagctgcgccgtaaatttttgccggagccgttgccagaatttccacctcatcgccaacgcgaatcacgccgctattacgggcaattaaattctgaccaaaatcgacatcgccgttatcctgggcagtgcggaaagattgcaatgtttttaatggttcgcctgccggatgtttttgccctttttctgggctgacggtggtgaaaatacagcggctacaaggtttaaccacatcaaacaccacatcaccaatgcgaatcactttccagcgatcttcttcccaggctgacgcgccggaaaccaccagattggggcggaattgctccatttttacactggccggacaacgttgttggagatcacgtaacgaggcttcgttagcaagaaggtaaggatagccatcagcaaatgacagaggtacagtgttgtggcgtttcacgcgccgggtcatttgtggccccacccagcgtaattgcacttcgcgggagaaaaatccacttagccatttgttgatcgcgtctggcgcaattcgcgcggtaaaatgtgtgccccaaacttcggttggtgcgtcttgtgtggcgaaatcagcaaaacgaacatatgcgctactgccatctggtgcggtgagatgcaagccatcatgcacaggtgaaggagtaaaccgtaccatctggggaaactggcgagcggtaataaacgtaccgtcaggttccgtgatcataaagatgcgatcgaaggccagaccactgacatctgccagagcatgtgtaagaccaatgccgcgcatcgatttaacaggatgaataaaaagccggattaatgtcgccacggtgcggtcctcaaatgaaaataagccctcaactttatgacatgacgcgcttattagctataatgcgcaacaattttcttagcgcctgtcccattaggctattttatttgtcagtttggccctgggttatgctcgaaatcctcacgtacttgtgtacgctccggtttctccgcgctgtccatgtccagactgactgcaacaattacgcctactgcggtaggctcttagagtaaaagtgacgatatgaattctctgtttgccagtacggcccgtgggctggaagagctgttaaaaactgaactggaaaacctgggggccgttgaatgccaggtggttcagggtggggtccatttcaagggcgacacacggcttgtttaccagagcctgatgtggagccgcctggcctcgcgtattatgttgccgctgggcgagtgtaaggtttacagcgatttagacctctatctcggtgttcaggcgatcaactggacagagatgtttaatcctggcgcgaccttcgctgtccacttcagtggtttgaatgacaccatccgcaacagtcagtacggcgcgatgaaagtgaaagacgcgatcgtcgatgctttcacgcggaaaaatctgccgcgtccaaatgttgatcgcgatgcgccggatatccgcgttaacgtctggctgcataaagaaaccgccagtatcgctcttgatctgagtggtgatggtttacatctgcgtggctatcgcgatcgtgctggtattgcgccgatcaaagaaaccctggcagccgctattgtgatgcgatccggctggcagccaggaacaccgctgctcgatccgatgtgtggttccggtacgttgctgattgaagcagcgatgctggcgaccgatcgcgcaccaggcttgcaccgtgggcgttggggctttagcggctgggcgcagcatgatgaagctatctggcaggaagtgaaagcggaagcgcaaactcgcgcccgtaaaggcctggctgagtatagctctcatttttacggttcggacagcgacgcacgggtgattcaacgtgcacgcactaacgcccgtcttgcggggattggtgaactgatcacctttgaggtgaaagatgtcgcgcaactgaccaatccgctgccgaaagggccgtacggcacagtgttgagcaacccgccatacggggaacgtctggacagcgaaccggcgctgattgcgctgcatagcctgctgggtcggatcatgaaaaaccagtttggtggctggaatctctctttgtttagtgcctcgccggatctgctaagctgcttgcagctgcgtgcagacaaacagtacaaggcgaaaaacggcccgctggactgcgtacagaaaaattaccacgttgccgaaagcactccagacagcaaaccggcgatggtagcggaagactacaccaaccgcctgcgtaagaacctcaaaaaattcgagaagtgggctcgccaggaagggattgaatgttaccgcctgtatgacgccgatctgccagaatataacgttgccgttgaccgttatgccgactgggtggtggtgcaggagtatgcgccgccaaaaactattgatgctcacaaagcgcgtcagcgtctgttcgatattatcgctgcaaccatttcggtactggggattgcgccaaacaaactggtgctgaaaacccgtgaacgccagaagggcaaaaaccaataccagaaactgggcgagaagggcgagtttcttgaagttaccgaatataacgctcacttgtgggtgaacctgacggattatctcgatactggtctgttcctcgatcaccgcatcgcccgtcgtatgctcggtcagatgagcaaaggcaaagatttcctcaacctgttctcttataccggcagcgccaccgtgcatgcgggattaggcggtgcacgcagcaccaccaccgtggatatgtcgcgtacttatctggaatgggcagaacgcaacctgcgtctgaatggcctgaccgggcgtgcgcatcgcctgattcaggccgattgcctggcgtggctgcgtgaggcaaatgaacagttcgatctgatctttatcgatccgccaaccttctctaactcaaaacgaatggaagatgcgtttgatgttcagcgcgatcatctggcgctgatgaaagatttgaaacgtctgctgcgtgcaggtgggacgatcatgttctcgaacaacaaacgtggcttccgtatggatctcgacggcctggcaaaactgggactgaaagcacaagaaattacgcaaaaaacgctctcccaggatttcgcccgtaaccgccagatccacaactgctggctgattaccgcagcctgaaaggaatagtaatgtcattaatcagtatgcatggcgcatggctgtcgttcagcgacgcgccgcttctcgataacgcagaactgcatatcgaagataacgaacgtgtttgtctggtgggccgcaacggcgcaggcaaatcgacgttaatgaaaatcctcaaccgtgaacaagggctggatgacggtcgcattatttacgagcaagatttgattgtagcgcgtctgcaacaggatccgccgcgtaacgttgagggtagcgtttatgatttcgttgccgaaggcattgaagaacaagcggaatatctgaaacgctatcacgatatttcgcgcctggtgatgaacgacccgagcgagaaaaatctcaacgaactggcgaaggttcaggaacagctggatcaccacaacctgtggcagctggaaaaccgcatcaacgaagtgctggcgcaactggggttagatcctaacgttgcgctgtcgtcgctttccggcggctggttgcgtaaagcggcattaggacgcgcgctggtgagtaatccgcgcgtgctgttgcttgatgaaccgacaaaccacctggatattgaaaccatcgactggctggaagggtttttgaaaactttcaacgggacgattattttcatctcccacgaccgttcgtttatccgcaatatggcgacgcgcattgttgatctcgatcgcggcaagctggtgacctatccagggaattacgaccagtacctgctggaaaaagaagaagccctgcgcgtggaagaattacaaaatgccgagttcgatcgcaaactggcgcaggaagaggtgtggatccgccaggggatcaaagcacgccgtacccgtaatgaaggccgcgtacgcgccctgaaagcgatgcgtcgcgaacgtggtgaacgtcgcgaagtgatgggtaccgcaaagatgcaggtggaagaggccagccgctccggtaaaatcgttttcgaaatggaagacgtttgctaccaggttaacggtaagcaactggtgaaagatttttctgcccaggttctacgtggcgacaaaattgccctgattggtccgaatgggtgcggcaaaaccacgctgctaaaactgatgctcggtcagcttcaagcggacagcgggcgtattcacgttggcaccaaactggaagtggcttatttcgatcagcaccgcgcggaactggatcccgataaaacggtgatggataaccttgccgaaggtaagcaagaggtgatggttaacggcaagccacgccacgtattgggctatttgcaggactttctgttccatccgaaacgggcgatgacgccggtacgtgcgctttctggcggtgagcggaaccgcttgctgctggcgcgtttgttcctcaaaccaagcaacttattgattcttgacgaaccgaccaacgatcttgatgtcgaaacgctggaactgctggaagaactgatcgacagctatcagggcacggtattgctggttagccacgatcgtcagtttgtcgataacaccgttacagaatgttggatcttcgaaggcggcggtaaaattggtcgttatgtcggcggttatcatgatgcccgtggtcagcaagagcagtatgtggcgctcaaacagcctgcggtgaaaaaaaccgaagaagccgccgcggcaaaagcagaaactgtaaaacgcagcagtagcaaactaagctataaattgcagcgcgaactggagcagctaccgcaattgctcgaagatctggaggcgaagctggaagccctacagacgcaagtggcggatgcttccttcttcagtcagccgcatgagcagacgcaaaaagtgcttgctgatatggctgctgcagagcaggagctggagcaagcctttgaacgctgggagtatcttgaagcgttaaaaaatggtggctgatcgcaaaatagtcgatttaaacagagacagctgacaacggtaaaattgcctgatgaactgggtttatcaggcatgaaaaccaacactttgttagtcatctgtaaaatagcgcatcattaaggagtaccaatgtgcgaacatcatcatgccgcgaagcacatcctgtgctcgcagtgtgacatgctggtggcgttaccgcgccttgagcatggtcagaaagcggcatgtccccggtgtggcacaacgttaaccgtggcgtgggatgcccctcggcagcgtcccaccgcctatgcgttggctgcactgttcatgctgttgctgtccaacttgtttccttttgtgaatatgaacgttgcaggagttaccagtgaaattacattactggaaattcccggcgtgcttttttctgaggactacgccagcctcggcacctttttcctgttgtttgtgcaactggttcccgcgttttgtctgataaccattctgttactggtgaatcgcgcggaattaccggtccgtttaaaagagcaactggcacgggtgctttttcaactcaaaacctggggaatggcggagattttcctcgcgggtgtgctggtcagtttcgttaaactgatggcttacggcagcattggggtaggcagcagctttctcccctggtgtttattttgtgtcctgcaactgcgcgcttttcagtgcgttgatcgtcgctggttatgggacgacatcgccccgatgccagaactgcgccagccgctaaaaccaggcgtcacggggatacgtcaggggctgcgttcgtgctcctgttgtacggcaatccttcctgctgatgaacccgtgtgcccgcgttgtagtaccaaagggtacgttcggcgtagaaacagcctgcagtggacactcgcgctgcttgtaacgtccatcatgctgtatcttccggctaatattttgcccatcatggtgacggatttattaggctcgaagatgccgtcgacgattctcgctggggtcattctgttatggagcgaaggctcttatcccgtcgctgcggtgatctttctggccagtattatggtgccaacgttaaagatgatcgccatcgcgtggctgtgttgggatgccaaagggcatggcaagcgcgacagtgaaagaatgcatttgatttatgaagttgttgagtttgtaggccgctggtcgatgattgacgttttcgttatcgcggtgctctcggcgctggtgcgtatgggaggtttaatgagtatttatccggcaatgggtgcattaatgtttgctttagtcgtcataatgacaatgttttctgctatgacgtttgacccgcgtttgtcgtgggatcgtcaacctgaatcagagcatgaggagtcctgacagtatggaatctaataatggggaagccaaaatccagaaagtgaagaactggtctcccgtgtggatatttcctatcgtcacggcgctcattggggcctgggttcttttttatcattacagccatcagggaccggaagtgaccctgatcaccgcgaatgcggaaggaattgaaggtggcaaaaccaccattaaaagccgtagcgttgacgtcggcgtggttgaaagcgccacactggctgatgatttgacgcacgttgaaatcaaagcgcggctgaattccggtatggaaaaattgctgcataaagacaccgtcttttgggtggtgaaaccgcagattggtcgcgaagggattagcggcctgggaacgctgctgtctggagtttatatcgaactgcagccaggcgcgaaaggcagcaaaatggataaatacgatttgctggactcgccaccgttggccccgcctgatgcgaaaggtatccgtgtgattctcgatagcaaaaaagccgggcagctctcgccaggagatccggtgctgttccgtggctatcgggtaggttcggttgaaaccagcaccttcgatacacaaaaacgcaatatcagctatcaactgttcatcaatgcaccttatgaccgactggtgaccaacaatgttcgcttctggaaagatagtggcattgcggttgatctgacgtcagcagggatgcgtgtggagatgggctcattgacaacgctgctgagtggcggtgtcagctttgatgtgccggaaggtctggatttagggcagccagtggcaccgaaaacagctttcgttttgtatgatgatcagaagagcattcaggattcgttgtacaccgatcacattgattatctgatgttctttaaagattcggtacgcggtctgcaaccgggagctccggtagagttccggggtattcgcctgggtaccgtaagcaaagtgccattctttgcgccgaatatgcgtcagacatttaacgatgattaccgtattccggtactgattcgtatcgagccagagcggctgaaaatgcagcttggcgaaaatgcggatgttgttgagcaccttggcgaattgttgaaacgtggtttacgcggatcgctgaaaaccggaaacctggtcactggtgcactgtatgttgatctcgatttctatccaaatacgcctgcaataaccggtattcgtgaatttaatggttatcagattatcccgaccgttagcggcggcctggcgcaaatccagcaacgactgatggaagcgttggataagatcaacaaactgccattgaatccgatgattgaacaggcaaccagtacgctttctgaaagtcagcgcacaatgaaaaacctgcaaacgacgctggatagcatgaacaagatcctcgctagccagtcgatgcagcagttgccgacggatatgcagtcaacgttgcgtgaattgaatcgcagcatgcagggcttccagcctggctccgcagcctacaacaagatggtggcggatatgcagcgccttgatcaggtgttgcgagaactgcaaccggtgctgaaaacgctcaatgagaagagtaacgcgctggtatttgaagcgaaggacaaaaaagatccagagccgaagagggcgaaacaatgaaaaagtggctagtgacgattgcagcactgtggctggccggatgcagctccggcgaaattaataaaaactattaccagttacctgtggtgcagagcggtacacaaagtaccgccagccagggcaatcgtctgttatgggtagagcaggtcactgttcctgactatctggcggggaatggtgtggtttatcaaaccagtgatgtgaagtatgtgattgccaacaacaacttgtgggccagcccgttggatcaacagttgcgcaacaccctggttgccaacctgagtacgcaactgcccggctgggtggttgcctcccagcctctgggaagcgcccaggacacgctcaatgttaccgtaacggagtttaacggtcgctatgatggcaaggtcattgtcagtggtgagtggctgttgaaccaccagggacaactgatcaaacgtccgttccgtctggaaggagtgcaaactcaggatggttacgatgagatggttaaagtgctggccggtgtctggagtcaggaagccgcttctattgcacaagagataaagcgtctaccttaattataaagatttgtaaatataaccgtctccggtatgttgcctgaggcggtttttttgtctctaacgtgcggaaaaatttgttcctcttcacattttttgtacaaccgacatgcccgtgtagctcacaaatatgacagtggcgtgaattttgcgcattgacggcagttatgattcgcggtattgcttaactgtgattgcacatttagtaatcactgttttcttttccaccagaaaccagtatgagggaaacgaggcatgaagagacaaaaacgagatcgcctggaacgggcacatcaacgtggttatcaggccggcatcgccggacgctcaaaagaaatgtgtccctatcagacgctgaatcaaaggtcacaatggctgggaggctggcgagaagccatggcggacagggtagtaatggcctgattctgtctctttaaaaagaaacctccgcattgcggaggtttcgccttttgatactctgtctgattataatcagaaggcagacgtatcctggaacagaccgactttcaggtcgctggcggtatagatcagacgaccatcaaccagcacttcgccatccgccaggcccataatcagacgacggttaacaatgcgtttaaagtgaatacggtaggtcacttttttcgctgtcggcagtacctgaccagtgaatttcacttcgccaacgcccagcgcgcggcctttaccttcgccgcccagccagccgaggtagaaccctaccagctgccacattgcgtccaggcccaggcatcccggcataaccggatcgccaataaagtggcatccgaagaaccacagatccggattgatatccagttctgcttcaacataccctttgtcgaagttaccacccgtttcggtcattttgaccacacggtccatcatcagcatgttcggtgctggcaattgcgggcctttagcgccaaacagttcaccgcgaccagaggcaagaaggtcttcttttgtataggattcgcgtttatctaccatgttctctgtaagccttattttattgaagcacgcaggatagctaacacgtgtacgctgaacaagtccgatcagttcggaataaaccagttcagccaacgtaatggccatggaaaacggtgacgtccttcctgttgcgatgcttgcgcgatacgttcctggatggtttgcatcagcgtcgtttggccttcgccatcccacaccagatttaataataacggcagtgcgtcagtcacatcgtctactgcccagatggtgaatttgccttcttctaccgctttcaccagttcactgtgaagacttaaatggcgaacgttagctgtggggataatgacaccttgtttcccggttaactcacgttgctggcaaatagcaaagaagccttcgattttctcatttaaaccaccgaccggctgggcgcgaccgaactgatcgactgaacctgtgatagcgatactctgattcaccggcacatcggcgagggcgcttatcagggcgcagagttcagccatcgaggcactatctccatcaacttcactgtatgactgctcaaatgtcagcgatgctgagaaggggatctgttgctcaagctgtagttccgacatcaggaacgcttgcatgatcatcatccctttcgcatggatattgccgccaagctccgctttgcgttcgatgtcggtgaattcaccatcgccaatatgcacaacgcagctaatgcgagaaggttcgccaaaagcgcgtggatgacccggaaattcaatgaccgaaagggcgttaatttgcccgatgcgttcgccttcggtttcaatcaggatttgctcctgaaggatctcatcctgcatacgttcagcgaggaaaccttcgcgccattcacgctgctgcagcattaagtttagctgctcgccggagaaggtgtcgccatcacacagggaggcgacctctttacactggcggaggatccactgcgggctaagcggaagtgtttcttgttcaccggtgtagcgtgctgcttcgcggataagtatcggccaggcatccgctcccggtgcaggtaagtgattatgtctggcggtaaatgtcacccagcgacaccactgggttactgactccgcatcgacaatctgcagagtatcttcaaattcgctataaatagcctgctctgaaagctctggctccatctcctggaaatcagccaatgattcgcgttcgcctaccagaatgactttcagcttcaatggcatcgaaggcacagagacggggagagggcgcgactcatcaaacgcaacccagtcaaaacgctcgcggttaacgatatttttcagccgcatccacagcagaggttgcgccagcagtgtacgcaaagagataatgagaataccgccatttgcctgatgcaccagaccaggctgcagggtaatgtcgccattaaactggcgcaggcagccaaagagttgctccgcttctacccagtcggcagcgacaacttgcgttaaagtcgcaaaattatcatctgcactcactgcgtgacgtaagcggatggagtggccggaaacctcatagtgaccgcccaccagttggcctgcatcgctttgtagcgtacgcgcggcattggcaataagattcagatactcagactcttccggggccttcgccagcataaaagaggaggatgctcgcgtatgcagcaactgctccagcgcaaattgcagccgcggttgagtatcactgaataaaggatcgttttcgtcaatcaaatgtggctgagcaaatatttcctgatagctatcggtatcaggaaccaggtcacgccatgcaagtttcgtaatggtcaaagttgatgttttttagtctgttgtcaaagccgcgattataccgtaaccggcactacagcacacgtagaaagcaccgacaatactcctggcatgggcgttaaagctcacaggatggagattcttttcttcactggcctaaaaagctgatattctgtaaagagttacacggtaacattgagatcgctatgaaatatcaacaacttgaaaatcttgaaagcggttggaaatggaagtatctggttaagaagcatcgcgaaggggagttaatcacccgttacatagaagccagtgccgcccaggaagccgtcgatgtgttgctctcgctggaaaatgaacccgtgctggtaaatggctggattgacaagcatatgaatccggaactggtcaatcgcatgaagcaaaccattcgggcaagacgaaagcgccattttaatgcggaacaccagcatacgcgcaaaaaatcgatcgatctggaatttattgtctggcaacgtctggctggtcttgcgcagcgtcgcggtaaaacgctttctgaaacgattgttcagctgattgaagatgcggaaaacaaagagaaatacgcgaataaaatgtcttctctgaagcaggatctgcaggcattgctgggtaaggaataactgacgaaagtcagttcaatttactaaaggcaaaaaaaaccccgcagcagcggggtttttctaccagacgagaacttaagcctgcggctgagttacaacgtctttgatacctttaacttcgatctctacgcgacgatccggagccaggcagtcgatcagtgcagcacgctgtttcacgttgtcacaggtgttgccagtaaccgggttggattcgcccataccacgtgcggagatcttgtctgccgggatacctttggagatcaggtaatcaacaacagactgagcacggcgctcggacagaccctggttgtaagcgtcagaaccgatgcggtcggtgtaacccagaacaactacggaaccgtctttcggatccaggttgctcagctggctgtacagctgatccagagcagcctgaccttccggtttcagggttgctttgttgaagttgaacagaacgtcagacttcagagtgaagtgcttggtctgtacttccggtgccggagctggagccggagcaactactggagctgcttcgccctgaccgaaacggtaggaaacacccaggctcagcatgccgttgtccggacgagtgccgatggtgtgtgcgtcaccgatgttgttggtccactggtattccagacgggtagcgatttcaggagtgatcgcgtactcaacaccgccagcgaagaccggagaaacgccggtgtcgtggtttttaccataaacgttggatttagtgtctgcacgccataccatgccacccagacgagtgtagatgtccaggtcgtcagtgattgggtaacccagtttagcggtcagttgaacgccctgagctttgtatgcaccgttttcaacgctgcctttgtacggcatacgacctaaccagtcgtaacccatttcaaagccaacatacgggttaacctggtaaccaccaaaagcaccagcgcccagttggttttcatgggtcgggccattgttgttgatgaaaccagtgtcatggtactgggaccagcccagtttagcaccagtgtaccaggtgttatctttcggagcggcctgcgctacggtagcgaaaccagccagtgccactgcaatcgcgatagctgtctttttcattttttgcgcctcgttatcatccaaaatacgccatgaatatctccaacgagataacacggttaaatccttcaccgggggatctgctcaatattaactctaccgatatcttcggcttatgccgagcacccctggcgatgtaaagtctacaacgtagttgaaaacttacaagtgtgaactccgtcaggcatatgaaaaaaaagtcttgtataaggtatgtttaatcttttttgtcagcgacaatttacagaagagaatcgcggaaaccgcttcagacaagcctccgcaaggaaaattagtcacgactgaaagcattggctgggcgacaaaaaaagttccaggattaatcctaaatttacttaatgatacaaattagagtgaatttttagcccggaaagttgtctcgtggcgtgagaggatgcgcttaccggacgcataataaaccccatagcgttaccttcatttgccgcatcaacaagttcagcatgctcttcttcagtcaaatcatctgccaaccaaccgatcaccacactgtaattgcccgtgcgtaaagcgcgaaccattgactccacagtgtggcaaggggagagctggctaatctgcattactttcgttaagggtagcccagatgcctgaacccattcccgactcagtttttgttgcggtgttaaccagagttgccagcgcgattgctgaccgagttgctgtaacaatggcaacagtagaagttgcgtcatcatgggctgatcttcgcgatagacaacttcactgataagcccggctgtagtgttttccgtagagacacgcgcaattttacttgctgcggatgagaacgacgaagaacgatgtgcatagcctgaagtgtacataatcaatccagcccctgtgagttactgtatggatgtacagtacatccagtgacaacaaagatcaaccctattttcggaaagagcctcgcaaattttgtcgttggtgacgggaaaacataaattaatcttgccccttaagaataagttgcctattttcgtagttaacggatccgttaatgtgaatcattcttttatgttatgattttaaaaggaattttatgaaaagcctctcctataagcggatctataaatcacaagaatacctggcaacgttgggcacaattgaataccgatcattgtttggcagttacagcctgaccgttgacgacacggtgtttgcgatggtttctgatggtgagttgtatcttcgggcttgtgagcaaagtgcacagtactgtgtaaaacatccgcctgtctggctgacatataaaaagtgtggccgatccgttaccctcaattactatcgggttgatgaaagtctatggcgaaatcaactgaagctggtgcgtctgtcgaaatattctctcgatgcagcgctgaaagagaaaagcacgcgcaatacccgggaaagactgaaagatttgcccaatatgtcttttcatctggaagcgattctcggggaggtggggattaaggatgtacgggcgttacgtatacttggggcaaaaatgtgttggttgcgactgcggcagcaaaacagtctggtgacagaaaagattctgtttatgcttgaaggtgccattatcggcattcatgaagctgcgctcccggtggcacgccgccaggagcttgcagaatgggctgactctcttacgccgaaacaggagtttcctgcggaacttgagtaatctggcgttgcagacgaccaatctcaggcagtaatgcaatcaataatccaacttgttgtacgaccagaggttctttgctgtctgcccgtggttcaagttgctgcatccgctgtttcaggctagctaatgcctcattgacgcgttcttcatcagcaggttgatgatgtaacgcgtcatcaacatagcaaactgcgtcatcaagaaacgccagaatttcaggattagttaactgctcccggtgagcaccgagggctgagatatagctggtaaacgtatggttaaggcacagcaaccgaaacgcggcttcgcgaatttgcggggtaacgttcggctcgctggacatatttgataccaccgacgccagctcagcatcacggttgtgtgcatcgcggcgggcaatacgatacgccagacggttatcacgcccctgatggtattgctccagtatggcatcgagataccgacagttggcctctgtggcgcgttcgagcatgcgcggcagattgcgaaactgccagtcaggccagatgtagctcactgccgcccacgcaatggcacaaccaatcagcgtatcgattacgcgaggtaacgctacttcaaaaccttcacccagtaagttaaaacacagtagcaccaaaagtgtgatgaacatcgttgcatgagcgtattgcacgttacggaaggcaaaaaagagcacgccggtaataaccagcagcaccagctgcccttccagtgatggcacaaaccacagcacaggaatgccaatggcgatacctaccagcgtaccaataatccttaacttcaggcggtggcgcgtggcgttatagtttggctggcagacaaacaaacttgtcagcaagatccaatacccgtgatgcattccggttatctgaatgatggcgtagccgaagcacaacaccagcgacattcttaccgcatgacggaagagggcggattccggcgtgaagtgacggctaagacgcagccagatatcactcaacccgtgcgggctgtcatcagcgagctcattttcgtcattattatggggtagtgcctgggcctgttctgattcaattgttgccagttgggcatcaatggcgcgtaaattgttcagcaaaaatcccagtgttttgagtaaatcggcgggtgcgccgttatcgcgcatccgctccagcgcagcatcaatatgcgtaaaagcgcgctcaaaatgcggatcatgttgataaggctgacgcaacaaaatacagcgtgacagttgctggcacgcctggccctgcatcgacatcagccgctgaaaacggaacagcacgtcgctgtggcgaaaatgttcacgcaatgtttgatactgaatatgagaagagctggcacgctcgtgaatatcctgtgcgacaaagtaataatgcagcgtgcgacgcgttccccgttgaccacgatcgccacgtaagcgggtcagcagcgagagtttcgtctgattcaatgtcgccatcagcagaccgttggcgagagccaaatcgtacagcggtgcctggctttgatcttcaatatcaggatcaaacatgcgcgacttgagctcaagataacgcgccagttgttcatagcaacgcgccaggttgtcctgcagcgggcggaccgggaacagcagatgaccaataagtgtcaggacgttgtaccagacggcaccggccagcagatacatcggctgctgataccagtgctcatacagtgatgttcccaacatagtgtaaatggcgatcagcaatgcaccgaaggcaattgttgcatagcgttgacccagaccgccgagcaaaatgaagccgctggtagagagcgttaagccaatcgcaaatagccagggccagggaaacagcaattctactgaggccgaggcgataaaaaagcagaacagcgtaatgatgaggttacgcaaacgtcccgccagtcggtcatcgagatcggtcagcgccgctgccaccatccccagcgttagcggaatcgtcagttttacatcacccagccaccacggaaacgctgtggttccacaaagcgcaataaaaatacgcgcgtaatacagccaggcgctgttccaggtatagcgtttgagcaaaggacttagcataaaggccatattagtggattattcaaaacgacgacgtgcattggcttcacgcgcagcttgcgctgtttctaccgataccacgcgacgaccaaccggccatagtgcaatagcggcaattttaaagttcgcaatgccgacaggaatgccaatgattgaaatacattgtgcgatgcccgttgcaatgtgcatcaggcataaccaccagccaaagaaaatcagccagaaaatattcaataccgtaccgccagtattcagcagcacatttttgccagccgggttcagttcatcgacatgaatagcttcattgccataaggcaccagagacagtttagtgatctcccagcaggatcgtgtcagcggtaaggtaaaaatcagcacaatactgaccagagtcgccaacagccagcccagagtggtggcaaatccgccaagcacaaagttcagaatgttcaaaacggtacgcataaaacctcgctttactgtggttttcagtaatgggcggcaattgtaacgtttttttgggctggagcacgttttctctgacggttacactgataagaaataatttcgtgtggatctacagagtcatggaactgaaagcgacaacgcttggaaaacgtctggcacagcacccttacgatcgggcggtgatcctcaatgccgggattaaagtctccggcgatcgccacgaataccttattcctttcaatcaattactggcgattcactgtaagcgcggtctggtatggggcgagctggaatttgtactgccggacgaaaaagtggtgcgtctgcacggcaccgaatggggcgagacgcagcgtttttaccatcatcttgatgctcactggcggcggtggagtggcgagatgagcgaaattgcgtctggtgttttacgccagcaactggatttgattgccacgcgcactggggaaaataaatggctgacgcgtgagcaaacctctggcgtgcagcaacaaatccgccaggctttgtcggcgttgccgttgccggttaaccgactggaagaattcgataactgccgtgaggcgtggcgtaaatgtcaggcctggttgaaagatattgaaagcgctcggttgcagcataaccaggcgtataccgaagccatgcttaccgagtatgcggattttttccgccaggtcgagtcttcaccgctgaatccggcgcaggcccgggcagtcgttaatggcgagcattctctgttagtgctggcaggtgcaggaagcggaaaaacgtcggtgctggtggcccgtgcaggctggttgctggcgcgtggtgaagcgtcccctgagcaaattttattgctggcgtttggtcgcaaagccgctgaagagatggacgagcggattcgcgaacggctacataccgaagacattaccgcacgcacgtttcatgcgctggcgctgcatattattcagcagggcagcaaaaaagttccgatagtcagcaaactggaaaatgataccgctgcccgtcatgaactctttattgctgagtggcgcaagcaatgcagcgaaaagaaagcgcaggcgaagggctggcggcaatggctgacggaagaaatgcagtggtcagtgccagaaggtaacttctgggatgatgaaaaattacagcgtcgccttgcctctcgcctcgatcgctgggtaagtctgatgcggatgcacggtggtgcacaggcagaaatgattgccagtgcacccgaagagattcgcgatctgttcagtaaacgtatcaagttgatggccccgttattaaaagcctggaaaggtgcgctgaaggcagaaaacgctgtcgatttttcgggccttattcatcaggcgattgtgattctggagaaaggtcgctttatcagcccgtggaagcatattctggttgatgaatttcaggatatctcgccgcagcgggcagcgttgttagcggcattacgcaagcaaaacagtcagacgacgttgttcgctgttggtgatgactggcaggcgatttaccgattcagcggtgcgcaaatgtcgctcaccaccgctttccatgaaaactttggtgaaggcgaacgctgtgatttagacacgacttaccgttttaacagtcgtatcggtgaggtggcaaaccggtttattcagcagaacccaggccagctgaaaaagccgctaaacagcttaaccaatggagacaaaaaagccgtcacgttattggatgagagtcaacttgacgctttgctggataagctctctggttatgccaaaccggaagagcgcattctgatcctggcgcgttaccatcacatgaggcctgccagcctggaaaaagcggcaacacgctggccgaagttgcaaatcgactttatgaccattcatgccagcaaagggcaacaggcggattacgtcatcatcgttggcttgcaggagggaagtgatggttttccggctgcggcgcgggagtcgattatggaagaggcgctactgccaccggttgaggatttcccggacgctgaagaacggcggttaatgtacgtggcgctgacccgggcacgccatcgggtatgggcactgtttaacaaagagaatccctctccctttgtggaaatactgaaaaatctggatgtgccggtggcgagaaaaccgtaagaaacaggtggcgtttgccacctgtgcaatattacttcagacggtccgcgagataacgctgataatcggggatcagaatatcgaccgcgtcgttgaaatgcggcgactggattatgaagtctgccgttgccacgttggtggcgaccggaatgttccataccgtcgccagacgcagcaaggctttcacgtcaggatcgtgcggcacggcatttagtggatcccagaagaaaatcaatacatcaattttcccttctgagatcaatgcgccaacctgctggtcaccccccattgggccactcaacatcgcgttgacgttcatgccggtcgcgcgggaaattaagttaccggtagtgcctgttgcatacagtacgtgttgttccagtaacggttgatgccgttccacccagctcatcagcatttgtttgcagtgatcgtgtgccaccagcgcaatatgtttccgcgcaggtaaagtgcgagtcgtcagttccataatgtacatccgtagttaactttcctacagattactgtaagcacttatcgctgcaagataaagaccgaaaaagcctgcgcacaggcacaaaaatctcaggaagatggttgtttttccgcccactgcaggaaagtatttcgcgtttgtgggtcagccagtttaaaccaatacttcagccgttgttctgtgagcacctgagactgcggtggaatagcatccagctcggaaacacccgaaagcagcgtactgtcatctgccatcatcgtggcaaattgcggtagtgaagcgcgtttcgcggatttgttatagcgttcaacctcgacctcataatcaatcgtttttgccgttgaggtaatggcgagaatatccagctttaccggaatcggcgtcgcatcgccatccaacaattcaaggcgcggcgcggcatcaaaatggttagcttcccgctcattctccaggcgaggcaggcgaaaattgacctggttgatgagctgggtattaaaactgaccaccagcggtggggagatatacagccgttcttcactattggaaagatgaatcgtcttctcaacgcgaaacactaactgatgcggtccattatccagttcaatgctgtccgcaccgcgcagcagagagctggaaaccttcttgccgtcgagtaccagaagatcgacatcggttgaaagccgcagcgtggtggcaaaaacggataccggcaaacataatgcaatcaaggtggtcacgatgccggttttcataggtagctcctgtcaaaagaccgcccgaataataatgtgtcaaaatttttctttaatcatacttactaacatatagacatatttcccgcttttgctctcattcattcgtattagctgcatggttggcatgtcggctttgtcgtacactttgttaaacagtctggaggaaataatgaaagaaaccgatattgcaggcattttaacgtccactcacaccattgcgctggtgggggcaagcgacaaacccgatcgtcccagctatcgcgtgatgaaatatctactcgaccaggggtatcacgtcattccggtttcgccaaaagttgccggcaaaacgctgctgggccagaaggggtatggcacgctggcagacgttccggaaaaagtcgatatggtcgatgttttccgtaattcagaagcggcgtggggcgtggcacaggaagctattgccattggcgcgaaaactctctggatgcaactgggggtgattaatgagcaagcggcagtactggcacgggatgccgggttaaatgtggtgatggatcgctgcccggctattgagatccctcgcctgggcctggccaaataaaaaatccccggaaggcaaaaaccttccggggatttgttcagggattagttacgcagacgcggggcctggagttgtttgcggatggtctgcgccagctcatccatggatggctgttcaggatgttcatcctgcaattcgctacttagctgggcttcagccaggtaggtatgaaccggtaggccgttatcgtcctccatcactacgtgataccacggagcggcgcgaagctcgtcattcaccgccagctcatcaggcgacggttcagagagcgaataaaccgggtcgatatccacgaccactccgagataacctaacagggaatggcggacctgctggccgataccgaatttgctggcaatcatagtcacctcccgggaaatctttacctttgatataagggtaaaattccacatttcaagttacatgacgcgacaggcaaaccctttcagatatagcccttccggataggtagcgatcaccggatgatcggctgcctgacggaactgctctataaattgtacatcacgaccggcatcaattgcggcatccgcgatgattttctgaaataaatcgctggtcatcagaccggaacaggagaaagtcaggagaataccgccttcattcagcagctgaatcgccagcatgttgatgtctttataaccacgacacgcgcccatcaactggcttttattctcaacaaacttcggcgggtccatcacgataacgtcaaatttttcaccgcgatcgcgataagtacgcagcaatttaaagacatcatcacggacaaactcagccttgctcagatccagtttgttcagctcaacgttctgccgtgcaatatccagcgcttcctgggaggtatcaacgctgacaacctggctgcaaccgcccatcagtgccgatacggcgaaaccaccggtataggagaaacagttcagcacacgtttattttcaacgtagcggcgggtagccaggcggctatcacgctggtccaggtagtagcccgttttgtgtccgtgctgaatatccaccagcagtttcattccgtgttcttcaatcggcagcagggcaggtggcaactcgccggtgacggggccctgggtcagctccattccttcttttttacgtaccgcgacgtcgctgcgatcgtaaatcgaacattccgggtacagcgtttgcagggcactaattaatgccgcgcgctgatattctgccccagcactcagcagttgcagcaccagaaaattaccgaaacgatcgatagtaatacccggcaggccatcagattctccggcgattaaacgatagctgtcgaggccatctttttgcgccagccagtcacgccatttttgtgcttgttgcaaacggcgggaaaaaaaagcaatgtcgatagactcagacgggtcaaacgtccagacgcgcgcccggatttgcgaagctggcgaataagcgccgcgtgctaaccattttccctgatgatcaacaatatcgatggtttcaccgaggctggctttaccttccatgcgggcaacggccccggaaaagacccacggatggcgacgaagtaatgatttttcgcgccctttggctaacactaaacgtacactcataatttacttttctgtcgatgcaaagaaatgggcgtcattgtccggagttttccatggatttgcaacgcgtccattaaggataaggagagcagcaatgtcgaaagtctgcataattgcctgggtttacgggcgagttcagggcgtaggatttcgctacaccacacagtacgaagcgaaaagactgggtttaaccgggtacgccaaaaatcttgacgatggcagcgtggaagtggttgcttgcggtgaagaagggcaggtggaaaaattaatgcagtggttaaagagtggcggcccgcgttctgcgcgtgtagaacgggtgctcagcgagccgcatcatccctcgggggaattaaccgattttcgtatccgttaaatacattttaccggttttggcaggccagcaattttggtggcttgcttagccggacctttcggaaacagtcggtataaatagcggctgttacctttttcttcgccaaatttattcgccatcgcttttaccagcatacgaatcgccggagaagtattgaattccagatagaaatcacgcacaaaacgcaccacttcccagtgttccggtgacagcgaaatcccttcgttctctgcaatcaccacagccagcggctcactccactggctgctttctttgagatagccttcggtatccgtttctatctctttaccttcgaagatcagcataattattactaccttaatcagactggcggcagtgtaacaaaaaacaaagccccgcataaagcgaggctatgaaagtgttagcgggtgagattaatcgcggctagcgaagcccagaatgctcagcaggctgacgaagatgttgtacagcgaaacatacaggctaaccgtggcacgaatatagttcgtctcaccgccatgaatgatgttgctggtttcaaacaagatagcgccagaggagatcagaatgaagaccgcgctgatcgccagatgcagagcaggcagctgcaggaagatattcgcaaccataccaatcagcaccaccacaatacccgccatcagcataccgccgaggaacgacatatctttgcgggtggtcagcacatatgcagagcagcagaagaacactaacgccgttccgcccagtgccatagcgattacgtcacccattccggcagacagataggtgttcagaataggtccgaggatataacccagaaaaccggtaaaggcgaatgcggagataatcccggtcggcttattcgccgttttataggtcaggaacatcaaaccatacatacccaccagcgtcagaatcagacccggagatggcagcatcagcaccgtactggcagttgcggtaatcgccgaaaaggccagcgtcaggctcagcagaaaataggtattacgcagcaccttatgggtgctaagcagtgatgtacggtcatgtgaagaactaacaatacgatccattgagtcactctctatgacagatgtaattaattaagcagcataatgataatgcgtaagggcacccagaagttttacccatctttacgcatttgatctggaacaggtttaacagcggattatcaggtcattaagcaaatataacgccctgagaatttcgacaggcaaaagaaaaaggggttagcatttagctaaccccttatcttatttggcggaagcgcagagattcgaactctggaaccctttcgggtcgccggttttcaagaccggtgccttcaaccgctcggccacacttccggaatgacgcgcactataaacatcccgatgcggcgtgtaaacccctaatttgtttgtttgcctgaaaaacagccaaaagtgcattgatagcgtgaaataacagcagattgatcatttcatcaccatgaattccttctcttttactcgtttagcaaccggctaaacatccccaccgcccggccaaaagaaaaataggtccatttttatcgctaaaagataaatccacacagtttgtattgttttgtgcaaaagtttcactacgctttattaacaatactttctggcgacgtgcgccagtgcagaaggatgagctttcgttttcagcatctcacgtgaagcgatggtttgccttgctacagggacgtcgcttgccgaccataagcgcccggtgtcctgccggtgtcgcaaggaggagagacgtgcgatatgaataacgaggaaacattttaccaggccatgcggcgtcagggcgttacccggcgcagctttctcaaatattgtagtctggctgccacgtcgctgggattaggcgcgggaatggcaccaaagattgcctgggcgctggagaacaaaccgcgcattccggtggtatggatccacggtctggaatgcacctgctgtaccgaatcttttatccgctccgctcacccactggcgaaggacgtcatcctttccctgatttccctcgattacgacgatactttgatggctgccgccggaacccaggcggaagaagtctttgaagacatcatcacgcaatacaatggcaaatatatcctcgcagtagaaggtaatccgccgctgggcgagcaggggatgttctgtatcagcagcggtcgaccgtttattgagaaactcaaacgtgccgctgccggagccagcgcgattatcgcctggggaacctgcgcgtcctggggctgcgtgcaggccgcgcgacccaatccgacgcaggcaacgcctatcgacaaagtcatcaccgacaaacccattatcaaagtacctggctgcccgccgatcccggatgtgatgagcgccatcattacttacatggtgacctttgatcgcttgccagatgtcgacagaatgggccgtccgctgatgttctatggtcagcgaatccacgataaatgctatcgccgcgcccacttcgacgccggagagttcgtccagagttgggatgatgacgctgcccgcaaaggttactgcctgtacaaaatgggctgcaaagggcctaccacctataacgcctgttcctccacacgctggaatgatggcgtttctttcccaatccagtctggtcacggctgcctgggctgtgcggaaaatggtttctgggatcgcggttcgttctacagccgcgtggtcgatattccgcaaatgggtactcattccaccgccgataccgtcggtttaaccgcgcttggcgtggtggcagcggctgttggtgtgcacgcagtcgccagcgccgttgaccagcgcagacgtcataaccagcaacctacagaaaccgaacatcagccaggcaatgaggataaacaggcatgagcactcagtacgaaactcagggatacaccatcaataatgccggacgccgcctggtggtcgacccgattacgcgcatcgaaggccacatgcgctgcgaagtgaatattaacgatcagaatgtgatcaccaatgccgtctcctgcggcaccatgtttcgcgggctggagatcatcctacaagggcgcgacccgcgcgatgcgtgggcgttcgttgaacgtatctgcggcgtctgtactggcgtacacgccctggcttcggtttacgccatcgaagatgctatcggtattaaagtgccggacaacgccaatatcatccgcaacattatgctggcaacgctctggtgccacgatcatctggtgcacttctatcagcttgccgggatggactggatcgatgtgttagatgcgctgaaagccgacccgcggaaaacctccgaactggcgcaaagtctctcctcttggccgaaatcatcccctggctatttcttcgacgtacaaaaccgcctgaaaaaatttgttgaaggcgggcagttggggatcttccgcaatggctactgggggcacccgcagtacaaactgccgccagaagctaacctgatgggctttgcccactatctcgaagctctcgatttccagcgtgaaattgtcaaaatccacgcggtctttggcggtaaaaacccgcatccaaactggattgtcggcgggatgccttgcgccatcaacattgacgaaagcggcgcggtcggggcagtcaatatggaacgcctgaacctggtgcagtcaattatcacccgcacggcggacttcattaacaacgtgatgatccccgacgccttagccatcggtcagttcaacaaaccgtggagcgaaatcggcactggtctttctgataaatgcgttctcagctacggcgcattcccggatattgccaacgactttggcgagaaaagtctgctgatgcctggcggcgcggtgattaacggcgacttcaacaatgtgctgccagtggatttggttgatccgcagcaggtgcaggagtttgtcgaccacgcctggtatcgatatcccaacgatcaggtcgggcgtcatccgttcgatggcatcaccgacccgtggtacaaccccggcgatgtcaaaggcagcgataccaacattcagcagctgaatgaacaggaacgctactcgtggatcaaagcgccacgctggcgcggtaacgcgatggaagtggggccgctggcgcgcacgttaatcgcttatcacaaaggcgatgctgcgaccgttgagtcggtcgatcgcatgatgtcggcgttgaacctgccgctttccggtatccagtcaacgttaggccgcattttgtgccgcgcgcacgaagcgcagtgggccgcaggtaagttgcagtatttcttcgacaagctgatgaccaacctgaaaaacggcaatctcgccactgcttccacggaaaaatgggaacctgcaacctggccgacagagtgccgtggtgtcggttttaccgaagcgccgcgcggggcgttaggccactgggccgccattcgcgatggcaagattgatctctaccagtgcgtggtgccgaccacctggaacgccagcccgcgcgatcccaaagggcagattggcgcttatgaagcggcgctgatgaacaccaaaatggcgatccccgagcaaccgctggagatcctgcgtactctgcacagctttgacccgtgcctcgcctgttcaacacacgtgctgggcgacgacggtagcgagctgatctccgtgcaggtgcgttaacagcgaaggagaatcatcatgcaacagaaaagcgacaacgttgtcagccactatgtctttgaagcgccagtgcgcatctggcactggttgacggtgttatgcatggcggtgttgatggtcaccggatactttatcggcaagccgctaccttccgtcagcggcgaggcgacgtatctgttctatatgggctacatcaggttaattcacttcagcgccgggatggtttttaccgtggttttgctgatgcggatctactgggcttttgttggcaatcgatactcccgcgagctgtttatcgtgccggtatggcgtaaaagctggtggcagggcgtgtggtatgaaatccgctggtatctgtttctggcaaaacgtccgagtgccgatataggccataatcccatcgcccaggcggcgatgttcggctatttcctgatgtcggtctttatgatcatcactggttttgcgctgtacagcgaacacagccagtacgctatttttgcgccgttccgttatgtggtggaatttttctactggacgggtggcaactcaatggacattcacagctggcatcggctggggatgtggctgattggcgcgtttgtgatcggtcatgtctacatggcgctgcgtgaagacatcatgtccgacgacacggtgatctccaccatggtcaacggctaccgtagccacaaatttggcaaaataagtaacaaggagcgttcatgagcgagcaacgcgtggtggtcatggggctgggcaacctgctgtgggccgatgaaggcttcggcgtgcgggtggcggaacggctgtatgcccattaccactggcccgagtatgtggagattgtcgatggcggtactcagggactgaacttgctggggtatgtcgaaagcgccagccatctgttgattctcgatgccattgactacgggctggaacctggaacgctgcgaacctatgccggagaacgcattccggcttatctcagcgcgaagaaaatgagcctgcatcagaacagtttctccgaagtgttggcgctggcggatatccgcggacatctgccagcacatattgccctcgtcggtctgcaacccgcaatgctcgacgactacggcggtagcctgagcgaactggcacgggagcaactgcccgctgcggaacaggcggcgctggcgcagcttgctgcgtggggaattgtgccgcaaccggctaatgaatcgcgctgtctcaattatgactgtctgtcgatggaaaattacgaaggcgttcgcttgcgccagtaccggatgacacaggaggagcagggatgagcaacgacacgccatttgatgcgttgtggcaacgaatgctggcgcgcggctggacgccagtcagtgaatcccgtcttgacgactggcttacgcaagcgccagacggcgtggtgttattaagcagtgacccgaaacgcacgccagaggtcagcgataatccggtaatgattggcgaattactgcgcgagtttcccgactatacatggcaggtggcgattgctgaccttgagcagagcgaagccatcggcgatcgctttggcgtctttcgctttcctgccactttagtgtttaccggcggaaactatcgcggcgtgctgaatggtattcacccgtgggcggaactgataaacctgatgcgcgggcttgtcgaaccgcagcaggagcgtgcctcatgagcgaaacttttttccatctgctggggccaggaacgcaaccgaacgatgacagtttcagcatgaatccactgccgatcacctgtcaggtgaatgatgaaccgagtatggcggccctggagcaatgtgctcacagcccgcaggtgattgcgctgttaaacgagttacaacatcaactaagcgaacgccaaccgccgttgggcgaggtgctggcagtcgatctgttaaatctcaacgccgacgatcgtcactttatcaatacgcttctcggggaaggggaagtgtcagtgcgcattcagcaggctgacgacagtgaaagtgaaatacaggaggcgatcttctgcggattatggcgggtgcgcagacgtcgcggcgaaaagttgctggaggacaaactggaggctggctgcgcgccgctggcgttgtggcaggcggcaacgcaaaatctcttgccgacagattcgctgttaccgccgcccattgatggcctgatgaatggcctaccgttggcgcatgagttactggcacatgtacgtaaccccgacgcgcagccgcacagcattaatctgacgcaattacccatcagcgaggctgatcggctttttctctcacgtctctgtgggccgggaaatattcagattcgtaccattggctatggcgagagctatatcaacgccacggggttacgccatgtctggcatttacgctgtacggacaccttaaaaggcccgttactggaaagttatgaaatctgcccaataccggaagtggtgctggcagcgccagaagatttggtcgactctgcgcagcggcttagcgaggtatgtcagtggctggcggaagctgcaccgacgtaaaaagacggtaagtatcgctttcagtcttatgaatatcgcaatcggcgaatacctctggtcgtagagtttcaggataaagagggagatctaccattatcgggttatttttctctcttcgcctacaggagtgcgcatgtgggatgtcattgatttatcgcgctggcagtttgctctgaccgcgctgtatcactttttatttgtaccccttaccctggggctgatttttttgctggctattatggaaaccatttacgtggtcaccggcaaaacaatctaccgcgatatgacgcgcttctggggtaagctcttcggtatcaattttgctcttggcgtggctaccggcctgaccatggagtttcagtttggtactaactggtcattctattccaactatgtgggcgatatttttggcgcaccgctggcgatggaagcattaatggccttcttcctcgaatccacctttgtcgggctgttcttcttcggctggcaacggctgaataaataccagcacctgctggtgacgtggctggtggcgttcggttcaaatctctctgcgttgtggatattgaatgccaacggttggatgcaatacccgaccggtgcgcattttgatatcgacaccctgcgtatggagatgaccagcttcagcgagctggtctttaatccggtcagccaggtgaaatttgtgcacaccgtaatggcgggctacgtgaccggggccatgtttattatggcgatcagcgcctggtatttactgcgcggacgggagcgcaatgtcgcattacgctcgtttgccatcggttccgtcttcggtactctggcgattatcggtaccctgcaactcggagacagttctgcgtatgaagtcgcgcaagtacaaccggtaaaactggcggcgatggaaggggagtggcaaacggaacctgcacctgcaccgttccatgtggttgcctggccggaacaggatcaagagcgtaacgcctttgccctcaaaattcccgcgctgctagggatcctcgccactcactcattagataaacccgtgccgggtctgaagaatttgatggctgaaacctacccacgcttgcaacgcggacgtatggcctggctgttaatgcaggaaatatcgcaaggcaatcgtgagccgcatgtgttgcaggcattccggggactggaaggtgacctgggctacggcatgttgctctcccgctatgcgccggatatgaatcatgtcacagccgcacagtaccaggcggcgatgcgtggcgcgatacctcaggttgcgccggtattctggagtttccgcatcatggtgggctgtggttccctgctgctactggtgatgctgattgcgcttgtccagacgctgcgtggcaaaatcgaccagcatcgctgggtgctgaaaatggcgctctggagtttgccgttgccgtggattgcgattgaagccgggtggtttatgaccgagtttggtcgtcagccgtgggcgatacaggacatcttaccgacatactccgcgcactccgctttaaccacaggacaactggctttctcactgatcatgatcgtagggctttacaccctgttcttaatcgccgaagtctacctgatgcagaaatatgcccgtctggggccgagcgcgatgcagagtgaacaaccgacgcagcaacaggggtaaaggagaaaatcatgtttgattatgaaacattgcgcttcatctggtggctgctgattggcgtgatcctggtggtctttatgatctccgacggatttgacatggggatcggctgtctgctgccgctggtggcgcgtaatgatgatgaacgccggatagtgataaacagcgttggtgcacactgggaaggcaaccaggtctggttgatcctcgctggtggggcattatttgccgcctggcccagagtgtatgcagcggcgttttccggcttttatgtggcgatgatcctggtgctgtgctcactgttcttccgcccgctggcctttgattatcgcggaaaaatcgccgatgcacgctggcgtaaaatgtgggacgccggtctggtcatcggcagtctggtgccgccggtagtcttcggtatcgccttcggcaacttgttgctcggcgtgccgtttgccttcacaccgcaattacgcgtggagtatctcggcagcttctggcaactgctgacgccattccctttattgtgcggattgctcagccttgggatggtgattttgcaaggtggcgtctggttacaactgaaaactgttggtgtgattcatctgcgttcacagctggcgaccaaacgcgctgcactgttggtgatgctgtgctttttgctggcgggttactggctgtgggtcggtattgatggctttgtactgctcgcccaggatgctaacggtccttccaatccgttaatgaaactggtggcagtgctacctggtgcctggatgaataattttgtcgagtcgcccgttttgtggatcttcccgctgctgggattcttctgcccattgctgacggtgatggcgatttatcgtggtcgcccgggttggggatttttgatggcatcattgatgcaatttggcgtgattttcacggcaggcatcacgctgttcccctttgtcatgccgtcaagcgtgagtccgatctccagcctgacgttgtgggacagtacttccagtcagctgacgctgagcattatgttggtaatcgtgctgatatttttgcccattgtgttgctctacactctctggagctactacaaaatgtgggggcgcatgacaacagaaactctccgccgtaacgaaaacgagttgtactaaggagcagaaacaatgtggtatttactttggttcgtcggcattttgttgatgtgttcgctctccacccttgtgttggtatggctggacccgcgtctgaaaagttaacgaacgtaggcctgatgcggcgcattagcatcgcatcaggcaatcaataatgtcagatatgaaaagcggaaacatatcgatgaaagcgatcttaatcccatttttatctcttctgattccgttaaccccgcaatctgcattcgctcagagtgagccggagctgaagctggaaagtgtggtgattgtcagtcgtcatggtgtgcgtgctccaaccaaggccacgcaactgatgcaggatgtcaccccagacgcatggccaacctggccggtaaaactgggttggctgacaccgcgcggtggtgagctaatcgcctatctcggacattaccaacgccagcgtctggtagccgacggattgctggcgaaaaagggctgcccgcagtctggtcaggtcgcgattattgctgatgtcgacgagcgtacccgtaaaacaggcgaagccttcgccgccgggctggcacctgactgtgcaataaccgtacatacccaggcagatacgtccagtcccgatccgttatttaatcctctaaaaactggcgtttgccaactggataacgcgaacgtgactgacgcgatcctcagcagggcaggagggtcaattgctgactttaccgggcatcggcaaacggcgtttcgcgaactggaacgggtgcttaattttccgcaatcaaacttgtgccttaaacgtgagaaacaggacgaaagctgttcattaacgcaggcattaccatcggaactcaaggtgagcgccgacaatgtctcattaaccggtgcggtaagcctcgcatcaatgctgacggagatatttctcctgcaacaagcacagggaatgccggagccggggtggggaaggatcaccgattcacaccagtggaacaccttgctaagtttgcataacgcgcaattttatttgctacaacgcacgccagaggttgcccgcagccgcgccaccccgttattagatttgatcaagacagcgttgacgccccatccaccgcaaaaacaggcgtatggtgtgacattacccacttcagtgctgtttatcgccggacacgatactaatctggcaaatctcggcggcgcactggagctcaactggacgcttcccggtcagccggataacacgccgccaggtggtgaactggtgtttgaacgctggcgtcggctaagcgataacagccagtggattcaggtttcgctggtcttccagactttacagcagatgcgtgataaaacgccgctgtcattaaatacgccgcccggagaggtgaaactgaccctggcaggatgtgaagagcgaaatgcgcagggcatgtgttcgttggcaggttttacgcaaatcgtgaatgaagcacgcataccggcgtgcagtttgtaatgcataaaaaagagcattcagttacctgaatgctctgaggctgatgacaaacgaagaactgtctaatgcgtagaccggaaaaggcgttcacgccgcatccggccactttcagttttactctttctcggagtaactataaccgtaatagttatagccgtaactgtaagcggtgctggcgcgtttaatcacaccattgaggatagcgcctttaatattgacgcctgcctgttccagacgctgcattgacaaactcacctctttggcggtgttcaagccaaaacgcgcaaccagcaggctggtgccaacagaacgccccacgaccgcggcatcactcaccgccagcatcggcggcgtatcgacaatcaccagatcgtaatggtcgttcgcccattccagtaattgacgcatccgatcgcgcatcagcagttcagacgggttaggtggcacctgaccgcgagtaatcacatcaaagcctcctttgccaaaatgctggatcactttgttgagctcatctttacctgccagatattccgacaagccatgttcattactcacggtaaacaggttatgcgaataaccacggcgtaagtcggcatcaataaataacactttttgatcggactgggcgatcaccgctgccagagttgaactgacaaacgttttaccactgtctggcgtcgcaccggtgatcattagaatgttattctccgtctccatcatagcgaaatgcagactggttcgtagcgcacgtacggcttccacagcagaatccgccgggttatccaccgccaggaaggggatatttttagtacgatggcgctgctgattagaaaataaatttttcttacgcagacgggtgcgtttatccagccactcggacattgggatagtggcataaacgctgatgccgtgctcttccagttgttccggggcttctacaccacgacgcaacatcgcacgcgccagcacggcacccacagaaataaacaggccaagaataaaaccaagcaccacgttcaacgcttttttcggtttcactggctgcggctgagtgactgccgggtcgataatccgcacgttaccaatggcactggatttcgaaatactcaactcctgctggcggttaagtaattgcagatataccgcacggcccgcttctacgtcacgacttaaacgcaacacttcctgttgggtggaaggcattgccgatacccgcttattcaggcgtttgcgttcttgctccagcgtctggcgtttttccagcagcgcacgataagttgggtgatctttcttatacagctgggagatctctgcctcgcggaaggtcagctcattgagttgattatcaacgttcacaatctgctcaagaacggctttggcttccaggttaaggtcaaccgaatcgcgctgctggcgataaacgttgagtttttcttccgcttggtccagctcgctgcgcacttcaggtaactggcgctgtaagaattcaaggctttgtgaatcctgcgccgcctggcgagcgatattctgttgcaaatagttgttagcgatgctgttcagaatacgagtaatcaactggggatcatcaccagtcatggtaagttccagcatcccgctttctttactgcgttcgctaacggtaaaggtttcctgcaatgcgttaatcgcttccagttcggtacgctggctcaggacaaactgtgttcctggtttggccttaatgtccgcgatagtcagcgcaacgccatctttttccagacgctggccgaccataccattgacggtgaactcttcaccttccagtgtatagtggccgttttccccaaccgtgagtgtcagttgctgatcctgaccattcagttgtggaatatgcatccagctgatcgccagctcacctggtttttctttggttaatctcgcccagccgcgacccacaatcggaaaatacttctgctcaactatgtcgcgcagattcagttcagcaatggttttaccgagaatcatgcgcgattgcagcagttggatctccggtgcagactcgggcgatgagttagggatcatatcgctcaggccgctgagaatggcgttgccctgtttttgctcaacctggaccagagtatctgcctgataaattggtgtgcttaacagcgagtaagcgacagcgatcagcgtgaataacgcggtcacgctgataataaacttacggtgatcccataactcgccgaccagacgaagcagatcgatctcattttcctgagtgctgcctggtggcgtattcatatttttagttgtcatcgtattttataaactcaaattaccggctgaggcgcttcgcccattcctgactggcgcgctccaacataccgtagacatgttcaaatgcgtcctgacttttacgatagggatccgggatctctttctgttccagccattgcccaaacagcattgtcttcccgcggacctcgggagcaattgcggtaacctgagcaatatgttccgactccattgccagaatcagatcgtaatttcgtgccatctcagcagtgagcttacgtccggcatgtccttcaagagatacgccatgattagcggcaacatctgccgctgtcgcatctgcagggtgttttaccagaccatgaacacctgccgatttgacttttacgcccggcagacgtttacgcagcaagcgctcgccaatgggcgaacggcaaatgttgccggtacaaaccaccaggattgagttaaattttagttgggccatgtttgaatccaccgtgaagtctctgtcaggtcatgcaccccggaaatcgtcggtaccagcagagaaatcacacggttccaacgagccagcggcgcggtagtgacataaacaatgtcgtaaggttcaagctggaattccgttccgagtatcattgccgatgcgtccttcgcattcagctgataaatattggcgattttgccattctgcttgttttgcgttgcacgaataacaaaaatccccgtcgcatcagcgacatcctgattcataccctcagcgttacccagcgcttccgccagggtcataccgctgcggtccattttcagcgtgctctgtttacccacttcacccatcacgaagactttcagatcatcgttgcgcggaataaataaaatatcgcccgggtgcagcagtttgttctggcgcaagtcgccacgctgcatcagcgcatagaggttcactttggtctttacgccattctgggtgagcaccacgttgcgccagtctgcatctgcggtcagaccgcccgcggcgttaatcgcatccatgatggtcagaggaatattggtaatcggctgctgacccgatttgctgacttcgccggtgacgtacgctttttgcgatcggaacgccgcgacgctgacatcgacttgcgggctttcaatgactgaatcgagacgcgctgtaatctcgttgcgtacctgggtaagtgttttcccggccactttcaggcgaccaatataggggtagaaaatcgcaccatcggcgttaacccagttgccggtatcactggcgctacggtattgccctgcgggggtggttagttccgggtgatcccagaccgtaaccatcaacacatcaccaatcccgatacgatattcatagtttgcgatttgctgctccagctccgggttagcctgcgacataatcggtttggcgcgcaactgatcaatcaatcctggcgtgacgggatagatattgaccattttgtccaggtcatactgattgtcaggtagttcaatgacatccttgttactggtcgataaattctgaccaggaacaagggtacatgctgtcaaagacagaacagccaatgtcagtaccgaaaacttaaaaatgttctttttcattggtttatatttatcagtcaatgtaatgttatgaattacgtcaggttattgtccaaccggtacttctcgctctgccgtcattggatagagctggtatttgcgtgacagcatttgtccaccatcacgcgtcaatggtgtccacgaaaccaccgcgcggttgcggttaggtccaatggtcatcaagtcgaatggaatcgagatataaaaacctttactaaagccgccttcgccgtagtcatctttagatacgttactgattgccgcccatacccctaccgccacgccgctgtcaaagcgtttggcgacgtcgatcgttgcgcctttatcttttgccagatattgcccaacgctaagtttcatcagtacgccattgagcgtcggcgggttccagtaagccgtcacgaaacctgttggcgtggaataatcggtgaaacgcatcatgttgtcccagtcacgttgcttcacgtagttaacgtccacacccagcgcccagcaggcatctagcgggcgataaagcagctcggaaccgacaccggcgtacatcgtttccagataaccgccatacacctggccatagaaaccattgcctaagtcagcaaaatagttcgcctgcaagttgttgagataaacgtcattgcgaacgtagtcacggatatgcgtgcgcacgcggggcagggtagagtccgcgggcaacagcgaagacttaaacttgtcgtagttgttgtaaatattggtgaaaataccgccatcaagcagcaggtggtcggtaaaccagtagcgggcactggacatcagccccagctggaacatatagaaatcttccgggccgcccagcgactgtgaaagtgttgggttgaaagagtagctaaagcgatcttcacgaatacggtagccccgaccaaaggcagaaagatcttcagcttcaacacgttgttgttgcagtggctctgattgaccaggcgctgtacctgccagctgtttgcgcaggctggctacgtcggtttcggtagtcaccatcgccatatgctcgcgcttttgcgtcacgctaatcttctcaacgccttgcggcaggttattcaccagaatccggttggcacgatcgaccgcttcacgagagtcacggtatttgtattgctgaccagacatatacagtgtcttatcgcgtagctgaatttctggcgcgtcaaagcccgcgttatacttcagggcggtaagttggtttgctaccgtggtgtactgcaatccttcagattcaggcgcaggttgatatgccggttttggcgtatcgcgcagggcagggcgcagatcgttgaaattggtccgtaacgtgaagccaaacatcaacgtgttaccgcgttcataactcaggttgagatctgcccagctggcagcgcgataaactgcgccgacgttgaaatggcttgcctgaggcagtttgccagcgaaatcattctggtaattgtttccatcgtattcgagtttcagacgcaggggattccacggcgtttgatactcaatgccgccaaagatggaagccgggccacgaaagatatcgctaaagctgatatcgcccgcatcgtgagactctgcgcgatgacaatatttatcgctcacccggcaaaacgggttggtaatattgcccgcattaccggcgtagccccatgccatcccgagggtgaaatcaaatggccccgcttgcttgctggccaccagatactcaccgtcaaacagacccgtaccagcaatatcacgtttaccaaacgccacttgcggtagccagtaaccttcttcccacaggcgaagtttaaaatcgaatgatttgtctttgtatgactgatcgccgctgaaatcttcccactggctatatttgcgtgtgcgcacatccgtataacgaatggtgccttccagccatgggaacagcgccacggaggtggagtagaaccggtattgatcgttatcccggtagttgacgctgaattcaccttccggtgcgatgcgcgcatttggcatctgcaacaatcctgtgccgccaaagtctgattgcgacgaacccagcggatccgggtaggttaatacttcagcatgacaggcactggagacggcaatggccaggcagcttaaaagataagaattcttcttcatcagtcaggaacacgttgcgttaaaacagacacaatctggtcatttaaatcagcatatttttcgggcagtacatgcgcagaaaagcccaaccaaagctggctgccaggcggtggttccacatgtcttttattccacagggcaacaggggcgacgacagtctcaccctcaggcgtaatcaccataacgttattcttgtccgcgcctgcaaggcgggggtgatcttgcagataatcggtaacgctacggcctgcctgccagggcaattgcccggccccagaaaccgcacccagcagagtaatagtcaccggacgctgtacggtatagagcgtatagtccccgaccaacgggggattgctgttctcatccactcgtacaaaatcagggtccagtttgaccggtaagcgaccagtgatattgagattgagtaactgctggcgcacggatttaatcgttgccgccacatcgtcgtcagcttctgcttcccaggaagcaagctgtgccatgacatgttggtagtctttaagcgctttagctttcgccgcagagtcggtcagcaaggcaccaggccaccagaggcgatcgcgcagttgcggttgtgtcaccaactggacaacattttccacggggccaacggaaagtgtctgttgttcgccaggcagataaatagtcaccgttccttgcgcaaaggcatggggtgtcattacgtaaagtacgctggcaatgaaatacgactgtaatttattcatggtgcgggtttaagaaacgtcatttctacgggaataacccctgcgcctaacatttgccgactttgacgaacctggccagtagccgaatcgacccagaatgtgttttgccactgtttttctggccgcgtggaagtcacctcttcctgccagacattacacagcacattgcgacccgcaatattcagcgtctctaatccagcaaaggaaaaagtagaactcagggtcgcagagcgaaaatggttgtcttcactccagagaatatcgcgcgtccagcggctgccatcttttattgccagcgcgttacgcagagggtcctgcccggaatttgtcacttccagcagattattattaagtttgacggtttttaaaagacgtccattgtgggtaaccagcatggcgttatcctgggataaccatttgctttgttcttgttctatatatcccagtaccacaaagattcgttgcccttcattaaggcgtaaatacatagtggaataaggcaacgcctggatctgctgatccgctacggtgatatcctgattatcgaaaaggctggcgcgaaatgtatcgaccatactttgctggctgtgcgtacatcccgcaagaaatagtgcgaaaatcgataaaataagagggcgcacctttaatccttgaaaggttaattaaaaaaatgcaaatctctaaagcccggtacgaatatcgcaaccgggtatcatttaactttaatttcgacgcgttaaagcagtattagcgtgtagtggacgtggtggttgaggtgttatgagaaccgccatcgccactgtcatttgctgcaacaactgccaacgtcgccacaccaacagccgttgccacaccgacaactgtcgccgtgccgacagcgccagcagccacgccaccagtggtagtagcagtcgtggttgcgccggtagtggtcgttgtggtgccagtagtacccgtcgttgcctcggtcccgtttgttgcttcaggggcagcaaacgcagctggcgtcgtcaacatgaaggccataaggattgcagaaagcttgtgtttcataacttttcctttattcatcgcatggacaatacgggtgatgctgccaacttactgatttagtgtatgatggtgtttttgaggttctccagtggcttctgtttctatcagctgtccctcctgttcagctactgacggggtggtgcgtaacggcaaaagcactgccggacatcagcgctatctctgctctcactgccgtaaaacatggcaactgcagttcacttacaccgcttctcaacccggtacgcaccagaaaatcattgatatggccatgaatggcgttggatgccgggcaacagcccgcattatgggcgttggcctcaacacgattttccgccatttaaaaaactcaggccgcagtcggtaacctcgcgcatacagccgggcagtgacgtcatcgtctgcgcggaaatggacgaacagtggggatacgtcggggctaaatcgcgccagcgctggctgttttacgcgtatgacaggctccggaagacggttgttgcgcacgtattcggtgaacgcactatggcgacgctggggcgtcttatgagcctgctgtcaccctttgacgtggtgatatggatgacggatggctggccgctgtatgaatcccgcctgaagggaaagctgcacgtaatcagcaagcgatatacgcagcgaattgagcggtataacctgaatctgaggcagcacctggcacggctgggacggaagtcgctgtcgttctcaaaatcggtggagctgcatgacaaagtcatcgggcattatctgaacataaaacactatcaataagttggagtcattaccgacaatacgtacgcttgagatcaggattgtctactttgagtataacatccttgtgaaatctccctttcctcataccgcttgcactatatactgcgggtaggaaaggcgcgcagagggaaatataagattgttaactatccccctctggaaatacgacttgtgagcataagataaatcttagcaaaatacaaattaaagataaggaaattgttacgaaagctattaattattgttggtaatatagtttcaagtggtactataactggctgttaaatggcatttataactattaggtgcagagatattcgcttaaatggattagtttctttgtggaaaagtaactgatgttataatgtatgatgttgactatttcactattccaataaaaccagtcagctttaaacaagcagcgtcatattaagagagataaacatttgccgctgttggtcctcgcaggccatttacgcggcaaaattccacacgtaatcctggtataagcacttctgcgtcgcggggagtgaatgcggaaatatggacctgaacttctttacgaccgtcggaggggataatgaatcctttgccgcttttgcgatcaaaggttttgacaattcctgtcattttacgggacaaacaaattccttactgaaaatactgcgctgcactatacggggttaataaaataaagccagcgatatttaagaccgccggacggctaaaataaaatttgcttaatctcaattatcatgcgttaatagctgcgtcggtttgaaagacagacagcatacaaagtagtttactaaagcagttctcattatcaggcattatccccttcttttgagtctctctcctgaacactaagtagtttctgtattaaagccctgtttgccgaaaggcccaaaatgaaggaagtaaaatatgtctaataaaatgactggtttagtaaaatggtttaacgcagataaaggttttggctttatcactcctgatgatggcagcaaagacgttttcgtccatttcaccgccatccagagcaatgaattccgcacgctgaacgaaaatcagaaagttgaattttctattgagcaggggcaacgtggccccgcggcagcgaacgttgttacgctctaaggttgccattattactcaacatctccatttccgctgtccatgttgtcatggttcacagtaccgcacatcggcattcgatgtgacggagcgaaaccctttgggcgctaagtgtattttttgtaaatcgacgatgatcacctttgataacgtcgcgctgcaaatacgcactgaccatgcgccgctggatttcacaaaataatatcaggctccctcgtggagccttttttatatctgccttatttttcttcaacgctgtatgtatagtaagcgataacctgttgattattgaatctttcggggagatggcttataacatttcttacctgaccagggtaccgggaaccaacaccttactggcgtgttgctgtcttttaagaccagaagaggttaacagtgaatattgaagagttaaaaaaacaagccgaaacggaaatcgccgactttatcgcgcaaaaaatcgccgagctgaacaagaatacagggaaagaagtctctgaaattcgcttcaccgcacgagaaaaaatgaccgggcttgaaagttatgatgtcaaaatcaaaataatgtgattttgtgaacatcaccccgtgcgaggtgatgttccgcttgttgctaatttagtgaccaatcattggcgcttgtggaattaagcgtcggtacaattcctccggcaccgggctttgccatactcccgcatacattgcgtaaccaatcaccgcaaacataatccccagaaccagtagcgtcattaaccagccagacaacgcaaaggcttttttatttgccgcaggtttttgcagtgaaaaggtcaatgttgaggctaccggacatgactctacgcaagtcatacagccggtacattccactgttcgtacctgaattaatttatcgaccgggatccgtgatgggcaattttttgcgcatttgccacagtcgatacaactttcggcattgcgacgaatcttaaacggcgacaatagcgaaaccacgcccatcagcgcgccatatgggcaaagataacgacaccaggcatggcgaataaacaggctggcaatcagcaaaacggtcacgctgattaatgtcgcggtccccatatgacgaaagaaatcgagcattttaacgtccatcaccacgctgtagggcgacaacataaaatagtgaatcgcctgagcgggcatcaataacgcgatatagataaaaaaactcaacagcaaatacttcacgccgcgcagaggaatatccagccagcggggaaggacacattgccgaccaaacagtttgttaccgagatcgccgattaattcagaaagcgtaccaaccgggcataaccatgagcaaaaggcctttttgagtaatagactgatgacgataaaagcgaccaataacagcatcgcggcggcgtggacggacggtaactgacctgttacaaggctatatttcagattcatcagcccggcaatcggtagccagccttcgatacctcccggtctggcgacaaatgtcgtgctacttgccgtttcgtaatagcgcacccaataccagaacgtgatggcaatataaatattcattgccaacagtaataattgcgtcgctttacgccaggtcgtggcattacgccagtcattccacggtaatttgccgcccgtcgtgcctggccgccgctgccagcgggttcttttattctctgccatgattttgccagtccgttaagttgtataccaaatgccactattctagttgttcttaactggctgatattgattcaaatcgcgttcaggtctttcttatgcaaccatgcttccagagcggcaacactgcgtgtaatttcttcgtgtggaaggggggcagataatggctgctgctccagttgtgcgcatagctggctggcgatatgcattcccagactcgagcaactgctttttagctgatgcgcggcacgctttattttctcgctatcctgactggcgcgggcaatgtcgatttcatcgagaagcggcagggcatgttgtgtaaataataccagccattcgtggatcttctccgtccccattaactgagcatcttcattgagttgcgatacatccagcgattgatcattattgacttgcagttggagatagtgcgccagtaactgaccgagcacttcacgcggcaccggtttagggataatcccgcggaataatgaactggtacgctggcgcagcgtttcgtcaatgacatgggcgctaaagccaatcaaaaccagcgacggatattgctgtgccagttgtcgggcaagcgtaatgccgtcgatatccggcagatcaaaatccaccagtgcggcagcaaacggttcgctattttgcagtgtctctaaagcctgcgcggcattgccaacagcaacaatctgcgcaccactggttttcagcatctcaatggtaattcgctgggttagcgggttatcttcaattaacagcaaacgtaaaccgtcaagacgcaccgcctgattgactgtttttggcacgggtgccgtggcaacacgtaacggcaagcgtaaacaaaaacagcttccaacctccggcgtgctggtggcgctcagttcgccgcccatcgcctgggccagacggctactgatagtcagtcccagcccggtgccgccgcgtttgccgcttacctgcacaaatggctggaagatttctgccagtttcgcgggatcaataccgcagccgctgtcttccacttcgaccagccattgctcgccatcagtgcgactacgcaggataatgtacccttcgtcagtaaaacgcagggcgttgctcaacaggttggttataacctgacgaatacgtcgtggatcgcccattaacgcgcacggcatatcatcggcaattgccgttgccaggcgaatcgggcgacctttcacccgtccgctcattaattgcagggtactttccagcagcgggcgcggttcaaagggctcatcgctgaccgaaacattcttgccacctgcttcgatagcggaataatcgagaatatcgttgaggatggtcagcaacgattcaccagagtcagtaattgcccgcaaatcatcacgctgggcgttaagtgcggggttatctgccagcagttgagcagtgccgagaataccgtacagcggtgtgcggatctcatggctcatcgccgccagaaacgccgattttgcctggctggctttttctgcttccgcccgtgcctgtcggtgttctatcaccagttcctgcaattcagctgtacgcgctttgacctgcgccgccagctgttcgcggtggcgattcagtgcatgaacattgctgcgaaacgcatccatcagccgcccgatggtatccagctcccgtacgccagcggtttccgggaaaggggagtcaatatcaccgtccagcagccgttgcagcgcctgcgtttgttcggcaagtggacgcgtgactgagcgataaaccacgcgccagaggatcagaatcagtgcgcaaagtgaaaccatccccagcaataacaggctgtattgcccgcgtgcactcgctttttccagatgcgccagtccgtgctgattacgcagctcaatggtgtcgaccagctgactgacttcgctactaaactgcgcgaactgggcgatgttattttgtgcgagagtttgtaggtgattgctgatttcactgtcctgctgatacagcgccagcaaatcgctatattggctaacggtagttaacgttgttgcgacctgcgcacgaacacccggatcttcaatgcgtatttgccgacgttgcagaattttcaccgcattattgagctgcttttccagcgttggtgcatttttctggatctgctccagccccagattcatcaccatttgctgcacccgcagagcgctaaggcgcagttcattcatctggttaacatactcaagatcgatatcaatcagccgatcgagtgcactttcagcagcctgacgctgatcttgttcgatcaaatcgtaaatcccggcctgggtcgctccagcggaagttgtcgcattattcgcctgaccttgcgccaggcgtgcgatctcatcggcggcagcgactatctgctgactgagttgctgttgttgctggcgcagttgcaaacgctgccccaccagttccccttgctgacgtaacgaacgggagatctcctgctcctgttgttcaatagcggtggtatcaaaaccttgttcccgtaacgcttgcagcaacgcattaatcttcaggctttgtgcggtgagcattcgcccctgcgcctgccacatcttttcgttatcggcactggtcaggttctgcgcggcgaaaagttcccaggcgctggcttcgctcaactggcgcgccatattcatggtaggaatcaatgcctgagtgttgtctttttccacctggctgataaagcgcaggttgtaccatcccaccagggtactggtcagggttaacagcgccatcagggcaaagcccatccagagtcttcgggtcagggttaaattcacggtcggtgcactttaggtgaaaaaggttgagtcgcaaagcggaatgcatctagcataaagccttattattgatgaggctatcatgcgcgtactgctatttttacttctttcccttttcatgttgccggcattttcggctgataacctgttgcgctggcatgatgcgcagcatttcacggtgcaagcctctacgccgcttaaagccaaacgcgcatggaaactgtgcgcgctttatcccagcctgaaagattcatattggttatcgttgaactatggtatgcaggaggctgctcgccgctacggtgtggatttaaaagtgctggaggcaggcggctacagccagttggctacccagcaagcacaaatcgaccagtgtaaacagtggggcgcagaggccattttgctcggtagtagcacgacctcatttcccgacctgcaaaagcaggtagcaagtctgccggtgatcgaactggtaaatgctattgatgctccccaggtgaaaagccgcgttggtgtgccctggtttcagatgggctatcaaccggggcgatatctggtgcaatgggcgcacggtaaaccactgaatgtgctgttgatgcccggacccgataacgccgggggcagtaaggagatggtcgaaggttttcgcgcagccattgccggaagcccggtgcgtattgttgatattgcgcttggtgataacgatattgaaatccagcgtaacctgttgcaggagatgctggaacgccatccagaaatcgacgtcgttgccggaacggccattgcggcagaggcggcaatgggggaagggcgtaacctgaaaacgccgcttaccgtggtgtcgttttatctttcacatcaggtgtatcgcgggctgaagcggggaagagtgattatggctgccagcgatcaaatggtctggcagggggaactggcggttgagcaggccatcaggcaattacaggggcaatcggtttctgataatgtcagcccaccgattttagttctgacgccgaaaaatgccgaccgtgaacatattcgccgctcgctgtcaccagggggatttcgtccggtctatttttatcagcacacatcagcggctaagaaataaccttcaccatgttgcgtcaccagtaaatccgcgctgagtttatgacgtaaacgacgaattaacacatcgacggtgcgcaggtcagggttttccacccgacgcgcagaaagcatacgtagcagacgttcacggctgagaatttcgcccggattcgtcacaaatgccaccaacatttcatactctgcgcgggtcagtttaatcggctcgccatcccgctccagcgtatggcgcgacacattcaggcaataaccggcaaagcgatagcagttgtcctgagtgtgcggttgagcttgtcgcgcgaggtcgattcgccagagcagatttttcacccgtactaccagttcgcgcagttccagcggtttggtgacgtaatcgtctgcgcccatttccagcccaacaatacggtcaatccgatcgctgcgtccggtaaccagaataatccccaccgttgagcgttctcgcagggcgcgggttaacatcaggccattttcatcgggtaagttgatatccagcagaattaaatctaccgactgattctgcataatttcccgtagcccagcaccgctcgccgtaacggaaacggtatacccctcctgagtgaagtaggattgtaatcgcgcctgggtaaccggctcatcttcaacaataacaatgtgatgtggcatcagagggttttactcattctgttcatatctgttcatattctgccgtaagccgttcatcctgaccagtgccgctgttcatatttgctcattaagatcgcttcactaaaccataattctacaggggttattatgcggaaactctggaacgcgctacgccgacccagtgctcgttggtcggtactggcgctggtcgcaattgggattgtgattggcattgcgctgattgtattgccacacgttgggatcaaagtcaccagcacaaccgaattttgtgtcagttgccacagtatgcaaccggtgtatgaagaatataaacagtcggtgcatttccagaacgcctccggcgtgcgagctgaatgccatgactgtcatatcccgccggatattccaggcatggtgaagcgcaaactggaagcgagcaatgatatctaccagacctttattgctcactccattgatacacctgaaaaattcgaagccaaacgcgcggaacttgccgagcgtgaatgggcgcgaatgaaagaaaacaactcggcaacctgccgctcctgccataactacgatgcgatggatcatgcgaagcagcatcctgaagcagcacgtcagatgaaggtggcagcgaaagataatcaatcctgcatcgactgtcataaaggtattgcccaccagttaccggatatgagtagcggcttccgtaagcagttcgatgagctgcgcgccagtgctaatgacagtggtgacacgctgtactctattgatattaagccaatttatgcggcgaaaggcgataaagaagcctctggttctctgctgcctgcttcggaagtgaaagtccttaaacgtgacggcgactggctgcaaattgaaattaccggctggacggaaagcgccggacgtcagcgtgtactcacccaattcccaggtaaacgcatctttgttgcctcgattcgtggtgatgtgcagcagcaggtaaaaacgctggagaaaaccaccgttgccgacaccaataccgagtggagcaagttgcaggccactgcgtggatgaagaaaggcgacatggtgaacgatatcaaaccgatctgggcttatgcggattcgttgtacaacggcacctgtaaccagtgccacggcgcaccggaaatcgcccactttgacgctaacggttggatcggcacgctcaacggcatgattggctttaccagtctcgataaacgtgaagaacgcaccttgttgaaatatctgcaaatgaatgcgtctgacaccgcaggtaaggctcacggcgataagaaggaagaaaaataatgaacaataacgatctctttcaggcatcacgtcggcgttttctggcacaactcggcggcttaaccgtcgccgggatgctggggccgtcattgttaacgccgcgacgtgcgactgcggcgcaagcggcgactgacgctgtcatctcgaaagagggcattcttaccgggtcgcactggggggctatccgcgcgacggtgaaggatggtcgctttgtggcggcaaaaccgttcgaactggataaatatccgtcgaaaatgattgccggattgccggatcacgtacacaacgcggcgcgtattcgttatccgatggtacgcgtggactggctgcgtaagcgccatctcagcgatacctcccagcgcggtgataaccgttttgtgcgcgtgagctgggatgaagccctcgacatgttctatgaagaactggaacgcgtgcagaaaactcacgggccgagtgccttgctgaccgccagtggttggcaatcgacggggatgttccataacgcttcggggatgctggcgaaagctattgccttgcatggtaatagcgttggtacgggcggagattactctaccggtgctgcgcaggtgatcctgccgcgcgtagtcggttcgatggaagtgtatgaacagcaaacctcctggccgctggtattgcagaacagcaaaaccattgtgctgtggggctccgatttgctgaaaaaccagcaagcgaactggtggtgcccggatcacgatgtttatgaatattacgcgcagctaaaagcgaaagtcgccgccggtgaaattgaggtcatcagcatcgatccggttgtcacatccacccatgagtatctggggcgcgagcatgtgaagcacattgcggttaacccgcaaactgacgtgccgctgcaactggcgctggcacatacgctgtacagtgaaaacctgtacgacaaaaacttccttgctaactactgtgtgggttttgagcagttcctgccgtatctgctgggtgagaaagacggtcagccgaaagatgccgcatgggctgaaaaactgaccggcattgatgccgaaaccattcgtgggctggcgcggcagatggcggcgaacagaacgcaaattattgctggctggtgcgtgcagcgtatgcagcacggtgaacagtgggcgtggatgattgtggttctggcggcgatgctggggcaaattggcctgccaggtggtggttttggttttggctggcactacaacggcgcaggcacgccggggcgtaaaggcgttattctgagtggtttctccggctctacgtcgattccgcctgttcacgacaacagtgactacaaaggctacagcagcactattccgattgcccgttttatcgatgcgatcctcgaaccggggaaagtgatcaactggaacggtaaatcggtaaaactgccgccgctgaaaatgtgtatttttgccggaactaacccattccatcgccatcagcagatcaaccgcattattgaaggcttgcgcaagctggaaacggttatcgccatagataaccagtggacctcaacctgccgctttgccgatatcgtactgcctgcgaccacgcagtttgagcgtaacgatctcgaccagtacggcaatcactccaaccgtggcattatcgccatgaaacaggtggtgccgccgcagttcgaggcgcgcaacgacttcgatattttccgcgagctgtgccgtcgctttaatcgcgaagaagcctttaccgaagggctggacgaaatgggctggctgaaacgcatctggcaggaaggtgtacagcaaggcaaaggacgcggcgttcatctgccagcgtttgatgacttctggaataacaaagagtacgtcgagtttgaccatccgcagatgtttgttcgccaccaggcattccgcgaagatccggatctcgaaccgctgggcacgccgagtggcctgattgagatctactcgaaaactatcgccgatatgaactacgacgattgtcaggggcatccgatgtggtttgagaaaatcgaacgctcccacggtgggcctggctcgcaaaagtatccgttgcatctgcaatctgtgcatccggatttccgacttcactcgcagttatgtgagtcggaaacgctgcgtcagcaatatacggtagcgggtaaagagccagtattcattaacccgcaggatgccagcgcgcgcggtattcgtaacggtgatgtggtacgcgtctttaacgctcgcggtcaggtgttggcaggggcagtggtttctgaccgctatgcacccggcgtggcacgaattcacgaaggggcatggtacgatccagataaaggcggcgagcctggtgcgctgtgcaaatacggtaaccccaacgtgttgaccatcgacatcggtacatcgcagctggcgcaggcgaccagtgcgcacactacgctggtggaaattgagaagtacaacggaacagtggagcaggtgacggcgtttaacggccccgtggagatggtggcgcagtgcgaatatgttcccgcgtcgcaggtgaaatcatgaccacgctgacagcacaacagattgcctgtgtttacgcctggctagcgcagttgttctcccgtgagctggacgatgaacaactgacgcaaatcgccagtgcgcagatggctgaatggttttcgttgctgaaaagcgaaccgccgctcactgcggcggtgaacgagctggaaaaccgtattgccacgctgacagtacgtgacgatgcccgtctggaactggccgcggacttttgcggcctgtttctgatgaccgacaaacaagcggcgctgccgtatgcatcggcctacaaacaggacgagcaagagattaaacgcttgttagttgaggcagggatggaaaccagcggcaatttcaacgaaccggcagatcatctggcgatctatctcgaattgctcagccatctgcatttttcgctgggagaggggaccgttcctgcgcgaagaatcgacagtttgcggcaaaaaacactgacggcgctgtggcaatggttaccagagtttgttgcgcgttgtcgtcagtatgacagctttggtttttacgcggcactaagccagttattgctggtgttagtggagtgcgaccaccaaaacagataacgtcgtttgtgcgcctgaaaagacgcgtttagcgtcgcatcaggcattatggcgcagttgccggatgcggcgtgaacgtcttatccggcccacaggaactgtaatctttgtagaccggttaagatgcgtcatcgcatccggcaaacacacatcacggatgagctacaaaccgggaaagccgctggcgcagcaggcggttttcctgcttcaggtgcgcaatatcatccattaacgtcagcgccaccgcgatccccggccagtccagagccagttcatgacgcaggcgtaccgcgcgttgcaccacaatggcggcatggtcgtcaaatacccaggttgtttcctggatctcacgcggttcaaccacccccaaaccgacaatttcattcaactcctcttcagagatgccggtatgcaggcaaaattcggtaatagtaaaagtcaccgtaacattagccattatgctttcccccaatctttacgtggatcaaaagacgactgggcgtctgccagttgctgccacagcgcggcagtgttttcatccggtttcggcggcatcacgattttcagtaccgcatacagatcgccggtctgttttttgctcaccagacctttgcctttaacgcgcaatcgttgcccggcctggctgcctggcgggatagtcagcaaaatgctttctttcagtgttggaacggtgactttagcacccagcgccgcttcccacgggctaaccggcaccacaatttccagatcctggccgacaatatcaaacagcggatgtggcgcaatatgaatcaccagccacaaatcgccatttggaccgccgttttcgcccggcgtcccctggcctttcagacggatgcgttgaccattgccgacgcccgccgggatcttcacattcagcgttttcggaatttcctgttcgatcatgccaaaggcgttataaaccggcaggttatagctgatggtacgcttatgctcagtaagcgtttcttcgaggaataccgccacttcgatttcaatatcgtggccgcgtgtggcggggcgttgacggctctggcgggcatgctgaccgaaaattgacgagaagatatcgtcaaaatcttcggcgttaaaactctgaccgtcgccatggtggaactgacggttaaattgcggatcgttgcgatgttgccacatctgatcatactcagcgcgacgttgttcatcacttaacacttcccaggcttcagcgacctctttgaagcgggcttcggcatccggttctttgctgacatcaggatggtatttgcgggcaagtcgacgataggcggtcttgattgtcttgagatcgtccgtcggtttcacgcccatgatggcgtaataatcctttaattccatagcgttatctcgcgtaaatcaacacaaattgaaggaacccctgtaaggtaactcctataagtgtagggtaatcctcaaaatttcatatgccaacacagaatatgttattgaaatcatcgcggagaggaggtcgccatcaagatgggttgctgaacatattttaaacaggtgaaaaagggtgagcgatttttgatagttgaaccaggcactttaagtttaactagggcgtcattatttattaaattttatagacgctatatatgggtagtaatatacatggaattagttgcactgcaaataattatttgaaacaggcctggaacgatataaaaaatgagtacgaaaaaaatcaaacatattcaatcacgctttttgaaaacacactggtgtgttttatgcggttatacaatgaactcagacgtaaagtaaatgaagaggatactccatgtctggaatgtgaatcactagaaaaagaatttgaggaaatgcagaatgataatgatctatcattatttatgagaatattgcgtactaatgatacacaaatttattcaggggtttcaggaggtattacatatactatacaatatgttcgagatattgatattgttagagtgtccttgccgggcagagcttcagagtctatcacagattttaaaggttattattggtataactttatggagtatattgaaaacattaatgcgtgtgatgatgttttttctgagtattgttttgatgatgaaaatataagtgtccagccagagcggataaatacgccgggaatatctgatttggattctgacattgatttgtctggtatatcttttattcagcgtgaaactaaccaggcattaggattaaaatatgctcctgtagatggcgatggatattgtctgttaagagctatactggttttaaaacaacatgattattcatgggcgctggtcagttataagatgcaaaaggaagtttacaacgaattcattaaaatggttgataaaaaaacgatcgaggctcttgttgatacggcattctataatctcagggaagatgtaaagacgttatttggcgttgatctacaatctgacaaccaaattcaggggcagagtagtcttatgtcatggagctttctgttttttaaaaaacaattcattgatagttgcttgaataacgaaaaatgtatcctgcatttacccgagtttatatttaatgataacaagaacttgcttgctttagataccgacacgtcggataggattaaagcggtgaagaattttcttgttgttctttcagatagcatttgctcattatttattgttaatagtaatgtggcatcaatctccttggggaatgaatccttttcaacagatgaagatcttgagtatggttatttaatgaacactggcaatcattatgacgtttacctccctcctgaactttttgctcaggcttacaagttaaacaataaggaaatgaatgcgcaactcgactatttaaatcgttatgcaatttaatggcaaaggcatatgctaaaaaccattgttattagtctcacacttttttattggtaaatattgtctctgtattggtaacgccgcagatattctgtttagccacaggtgcaattatcagcggcgtacgcgaggcaggggctaatcaggcatagtttgcgtcaaaccttgcctgtttttgaagatgtatatagaaaaacaggcgttcaacaagccattttgcgaacctgttcccggaaaaaagtcatatttctgtcacactctttagtgattgataacaaaagaggtgccaggaatgaacaaaacgctaatcgccgcagctgtggcagggatagttttactcgcttcaaacgctcaggcacaaaccgtaccggaaggctatcagctacagcaagtgctcatgatgagccgccataacttacgtgcgccgctggcgaacaatggcagtgtgctggagcagtcgacgccgaataaatggccagaatgggacgtccccggtgggcaactcaccaccaaaggtggcgtgctcgaagtgtatatgggccattacatgcgtgaatggctggcagagcaggggatggtgaaatcgggggaatgcccgccgccgtacaccgtttatgcctatgccaatagtctgcaacgtaccgttgcgaccgcacagttctttattaccggcgcattcccggggtgtgatattcctgtgcatcaccaggaaaaaatgggcactatggacccaacctttaacccggtgatcaccgatgattccgccgcattcagtgaacaggcggtggcggcaatggagaaagagctcagcaaactccagcttaccgacagctaccagctactggaaaaaatcgttaactataaagattcccctgcctgtaaagagaaacaacagtgttcgctggtggatggcaaaaatacctttagcgccaagtatcaacaagaaccaggtgtttccgggccgctgaaagtcggcaactcgctggtagatgcgtttactttgcaatattacgaaggttttccgatggatcaggtggcctggggagaaatcaaatctgaccagcagtggaaggtgttgtcgaagcttaaaaacggctaccaggacagcctgtttacctcaccggaagtggcgcgcaatgttgcgaaaccgctggtcagttatatcgacaaagctctggtcaccgatcgcaccagcgcaccgaaaattacagtgttggttgggcacgactccaacattgcctctctgttaacggcgctggatttcaaaccgtatcagttgcatgaccagaacgaacgcacgccgattggcggcaaaatcgttttccagcgttggcatgacagcaaagccaatcgcgatttgatgaaaattgaatatgtgtatcagagtgcggaacagttacgtaatgccgatgcgttaaccctgcaggcacctgcgcagcgtgtgacgctggaattaagcggttgcccgatagacgctgatggtttctgcccgatggataagtttgatagcgtgttgaatgaagcggtgaaataacagaaaactcccccgcgagaagcgggggagtcgctggttaaacgtttttacgttcgatggtctgttcgccccaaaaaagcgaatctttatcggtcttagcaaaggctttgactaacacttcatcactaccttcttcccaaatcttttccgccattttttcgtcgtacccggcgacttcgaaaatggcctcggctatttccggcgacgtattgcgcagagatgcccattcaccgacgtgatgagctttcgcttcttgagttggcatgcgtatcctcctgttgaagattagccgttaagtttaactgccagacctgcgacatattccccttgataacgagcaatagacagttcttcctggctgggctggcgtgaaccgtcaccgcctgcgatggtggttgcgccgtacggcgtaccgccgcgaacctgtgaaacgtcaaataattcctgcgctgcgtagccaatagggacaattaccatgccgtgatgcgcaagggtcgtccaggtggatgtgatggtttgttcctgaccgccgccagtaccggtggaactaaagacgctcgccagttttccgtatagtgcgccggaagcccacaggccgcccgtctggtcgaggaaggtacgcatttgaccggacatgttgccaaagcgggtaggtgtaccaaaaataatggcgtcgtaatcggccagttcttgcggggttgcaaccggtgcagtttgcgttttaccgcctgctttttcaaataattgcggcggcatggtttccggtacacgcttaacgacaacttcagcgccatccactttgcttgcaccctcagcgactgcgcgtgccatcgtttcaatatgtccgtacatggaataataaagcaccagaactttagccatttctaaccactcctcgtgttatctctattccgtagcgattcgctaccacttatttaaagataagacgtccttttcagagtgcaaatttcacaaccacttatttgatttataacaactttcacaagcacgtaattttgtcgcaaaatgacacatttttatctcatcgcgtttttttaatcataagagcggcttatggataattattggagatgatatctattctcgctaagaagctgttgcaggatattaccaaacgcgggtctgcccgcgtcagttcactaagcttagtcccacgtagcgaaaatatggcagccgccatacgccgcgttaattctatgcaatatgatgtctatacccagacggaggtcagtaatggcaaaccatcgaggcggttccggcaattttgcagaagaccgcgaaagagcatcagaagcaggtaaaaaaggtggacagcacagcgggggtaatttcaagaatgacccgcagcgcgcatctgaagcaggtaaaaaaggtggtaagagcagtcacggcaaaagcgacaactagccgggctaatcaatgacgaatgcatttttgtctgtagctcgtcaaaaagccatcaccgccggttacccggtggttgatactgatgacaaatgtaagcttgcctgatgcgcgatgcttatcaggcctaccagaagattgcaatatattgaatttgcactgttttgtaggccggataaggcgtttacgccgcatccggcatgaacaatgcgtacgttgtcaacaatctgcaccgccggtaaccccggcggttttctgtttatggctcctgatgaacaacttctggcggtggaacgtcaaccaactttctgcttaacaacgcattgagtaaaatcgcgccaaaggttgctgtaccaatccctcccaacgtaaaaccgcccagcgtgagagcaaaatcacccgcgcccagcactaaggttactgcgaccataatcaaattaccgttctggcttaaatcgacacggttttgtacccatatccttgcgcctgcgacggcaatcagcccgaacacaacaattgatgcaccaccaataaccgcggccggaatggtatgaatcagcgcaccaaatttcggtgaaaagcccaacagcatggcgatgacggcagcagcaacaaacaccagcgtcgagtagactttggtcacggccatcacaccgatattttcagcataggtggtcacgccgctaccgccgacagagccggaaagcatcgttgccagaccatcgcctacgaatgcccgccccatatacgggtccatattgcgtccggtcatcccggcgactgccttgagatgacctaagttttccgccaccagaatcaccgccacgggcgcaatcagcatcattgcctgaccattaaaagcaggagtggaaaaatgtggcagaccgaaccaggcagcatggctgacgagagtaaaatcgacggcttttcccagccctaaaacgttggtcatcacgccatacagcagacaggcgacaattaatcctacgagaatcaataaccgctggatcatgccacgggtaaacaccgccaccagcccaatacacagcaccgtcattaccgccatccagctatcaaaggccgaagccgatacacttttcactgcgataggcgctaagttcaggccaatcgccatcaccaccgcacccgtcaccaccggcggcatcagtcgttcaatccagcgcgtaccgattttcatcaccaccaggccaatgacggtataaaccagcccacaggcgataatcccgcccagcgcaatgctgatattcgggttaatgccctgaccgttaaagcccgtcgcggcgatcaccacgccgacaaaagccgcgctggagccgagataactggggacgcgcccgccggtaataaagaaaaacagtaacgtgccgatccccgacattaaaatggaaagattgggatccagccccatcagaatcggcattaacaccgtcgcgccaaacatcgccaccgcgtgttgaacgcccattactgccgtctgagcaaacggcaatcgttcatccggcgcgaccacgccgctctctgtagaggtcgattttaactgccagtgaggaaaaccgaacattgccatcagctgtctccttaaggaggttaacaagcagggcgcatcagcgcgtgataactgcgatcgaaccacaccagcccgtagggtgtggtgtgacgatgaatcgcttcgatggcgcaaaacagaatgtcgtgggtgccgacgctcaccacctggctgatacggcagtcaaacgaaaccagagcctcttccagttgcgggcatccggtcacccccgtctgccagcgggcggcggcaaagcggtgttccatgggcgttttgccgccaaaaaggtttgaaagcggctcctgcccggcgctaagtgtatttacacacagcgttcgattttcattgaatgccggccagacggacgccccacgattcaggcacaccagtaatgtgggcggcgtatcggtcacactgcagacggcgctggcggtgaacccggcgcgcccggctggaccgtccgtggtgataatattgaccgccgcgcccatgcaggacatcgcatcgcgaaaagtttgttgatcgacaatgttcatagtttgctccttacaacagcccgcaggcttcttcaaaggacagacgtggcaggcgcgcataaagcttgctgctatcgccatagccgatattaatcagcagattgctcttcagcgtgctgcccgtaaaaaaggcgtcgtccacgtgttgacggtcaaagcccgacatcgggccggtatccagtcccagcgcccggcaggcgacgatcagataggccgcctgcatggaactgttgcgaaacgctgtttcttcggcaagttgtgggctggaggtaaaccaactgcgggcatcaccgtggggaaacagtagtggtaaccgttcataaaattcactgtcccaggcgacgatagcggtgacgggcgcggtcagggttttttgcagattgccgctggaaagtgccgggcgcagacgttcttttccttctgccgtgcgggtaaacacgatccgtgccggagaacagttagctgatgtcggcccccatttcatcagggcataaatctcccgtaacgtctcatcgctgacgggtgtctcccgccagccgttgtgagtgcgggcatcggtgaacagggtgctaagcgcacctgggctaacggcttcgttcatagcaattccttacagggcggcttcacggtgatgtaacaggctggcaagcccgttgagtaacagagcattaaacgtttcgggatcggtcacgttgcaggcgtgtccgccatagggcatcaccattttctggctatcgggcagggcggcatgaagttcactggaacatgctgttggcaccagcagatcatcactggcgcagatgatttgcaccgggcagcggatgcgatccgcatggtgactaaagtcagcgcgtttgagggcgttaagtcgacgcagtaaattatttttgccctgaaaatgcgccagtgccagcgcgtcttctgcctccaggcgaggtgcgcgggccgccatccagtcggcgggatagaggaacaacggctgcgcttccacccatgcctgcgcgccgccgctatacagtaatcgttcgcgaacctgaaaacagcggcgcgtatgggcgtttattcgtagccagccgttaacgctgatcagcacagttaccgacgcgggataatccagcgccagctgcattcccaccagcgcaccgagcgcatggccgaccactgcgtaatgctcaatccctgcggctaccagcgcctgatgcagttccgctgccatctgggcgatactgtaatcttctgccagcgtgtcgggattattgccggtgccgcgctggtcgtaacagactacctgatactcctgctccagcaccgccagttgcggtaaccagtaactgccgctacccccaagacccgaaatcaacaccactacgggcgcatcagcataagggggaggtgagagtgaaagtttcatcgcggcctcacttggcgatatgcgcaattgtggcgatttccaccagcgcgtcaggttttaccagtccgcactgaatgcagaatcgcgccggtttatcacccggaaaaaactcggcgtagatttcgttaatcgcggcgtaatttttccagtcggtaataaagatgctgttgaaggtcacatccgccatcgtgccacccgccgtctcgatcaccttgcggatagtttccagaacgtggcgggtttgcgcctttgggtcatcggcaaacagcacgttattatgttgatcaaaagccagcgtaccggagacatacaccacgccatcagccagcgtgccgggaacgaagggggccagcggtgcgctgctgccagcgggaataattacggattttggcatcgttaaactccttaagcgatatgagcaaaggacgtgggagaaagcgcgtcgcagaatgtttcgacgtcgctgacccagccaaaaaaggtttcgatattgaacaacgcggctttctgcgcaaatttcggccccgcctggtgagttgcgtcttcaagcaccacgccgaaatactccagaaaaaagccgtcgcgtagcgtcgattcgacgcagacgttggtagcgatgccggtgaaaaccagatggcgtattccgcggctgcgcaaaatgctgtccagcggcgtattgaagaaaccgctgtagcgcggcttcggcagcacaatatcgccaggctgcggcaccagttcatccaccagttgataatcccaggagcctttcgccagcaatttcccctgcagctgcggctgcttacgcatggttttcagggcgttcgatttatgaaaattcggtgagccgggtccgccagcctcgacatactgttcatcccagccattttgaaaccagatgatcagcatccctgccgctcgcgctgcggtcacggcggtttgaatgttggcaatgaccgggcgagtggttgagacatcaaacccggcgagatctaagtagccgcctggcgtggcataagcgttttgcatatccaccacgatcagcgcactttgctgcggatcgaaggtaatggcttccggtcgagcggttaaggtcgtcatcatgccacctcctgagtcagcgcaggtagatgggcgcggcattgcatcagtggttgaatgcgctcgccgaaggtttcgattcccgacagaaaatcgtcgaaggttaacagcacgccttcggcaccaggcacgcttgcgacttcatctaacatgcgcgcgacactggcgtaagaaccgactaacgtccccatattgatgtttaccgccgaagtgggatcggccatctgacgaacgttggtgtcagtaccggagcgggtatctttctgactttgttcggttagccagcttaacgcctcttcatccgcgcccgctttgtagtgttcccatttggcgcgagcggcatcgtcggtttcatcggcaatcaccataaacaacacataagagccaacgtcgcgtccggtttgctctgcggcctgtttcatccgcgcagcggtcggggcgaaagccgtgggtgtatttacgcctttgccgaaacagaagttgaaatcggcataccgggcggagaacgccatgccagcgtcgctttgcccggcgcagatcactttcatggggacactcggttgcggactcacgcgacaatcattcatggtgaaaaaatcgcctttaaaatcgcttttccccgtgccccacaggtcgcgcagcacctgaacatattcggtgagatagtcgtaacgacgggagaaatagtcatcgccaggccagatacccatctgctcatactcgggcttttgccagccagtcacgaggttgacgccaaaacgcccgccagagatggagtcgatggttgcggccatacgggcgacgattgccggaggtaacgttaaggtggcagcagtggcgtaaatctgaatgcgcgaggtcacggccgccagccccgccatcaaggtgaacgactcaaggttgtgatcccagaactcagttttgccgccaaagccacgcagtttgatcatcgacagggcgaaatcgaaatggtagtgctccgctttttgcacaatggctttattcagttcaaaggtcggcatgtactgcggcgcgtgggtcgaaatgagccagccgttgttgccaataggtacgaatacgccaattttcatcatcaacctctcttcgtctcgtaaagtgaaagtcagacggggcgctgcatcctgcatatccttttcagccgcgtattggcttgtttgcaaagcggatgccagtttttaaaaagttaatgttattaatctgttaacattacgttatctaaaatatctggtaaaaagtggactaaacggtcaaaacagttgcacataaaacatgcatctgtgcgcgatgagagtgcagaaggtcgaggccgggcgggggttttgctatcctgttgccaatctacaagaggggagagcgcatgacgcaaggcgcagtgaaaacaacgggtaaacgttcgcgcgcagtaagcgcgaagaaaaaagcgattcttagcgcagcactggacactttttcacaattcggttttcacggcacaaggctggagcagatcgcagagttggcgggtgtttcaaaaaccaatctgctgtattactttccgtcaaaagaggcgctgtatattgccgtgctgcggcagattctcgatatctggctggcaccgttaaaagcgtttcgtgaagatttcgccccgctggcggcgatcaaagagtacatccgtctgaagctggaagtctcacgcgattatccgcaggcttcgcgcctgttctgtatggagatgctggcaggcgcgccgctgttaatggatgaactgacgggcgatttgaaggcattaattgatgagaaatcggcgctgattgccggttgggtcaaaagcggcaaactcgcgccgattgatccgcagcatttgatttttatgatttgggcttccactcaacattacgccgatttcgcccctcaggtggaggcggtgacaggcgcgacgttgcgcgatgaggtatttttcaatcaaacggttgaaaacgtgcagcggattattattgaggggattcgaccacgttaaagatgccggaggaggttgtaacatcctccggctacctgtttaacctatagtcattaagctggcgttaccgccagcggcagcggtattcacactcagcgaacgctcgatatacagccgttccagaaggatattgctttcgccacgggcaaaaccctgcaccgaaacaattgtgccatcccgcgcggcaactgcttcacacaatgcgcgaagctgatccgaatcaccgtggaagatcaccgcatcaaacggttgagcggttatattttccgctttcgccagttgaatacgttcgctgactgccgatggcaatgccttcactaactgacgatgcagcgcgtcatccggccacagtacctggctgcccaccgccagcacggcggcgagctgagtcagcgcatcctgctcatcatcggcaatacacaacacgcgctcacgcggcagcagcgtccaggtgttgcgttcacccgtcggccccggcagcaatcgttgtgttcctgcctgcgccagctcgccatattgcgtacataacgcctgcaattctggacgatttgctgcccattcccgcagtgcatttagcggctgagtcaatgcggctttcaactgcgcatcgaccggatactttgcatcctgacgcgcgagcgtcactgccagcgcactttccgggcgattcgccagcagacggtagagatagagcggaccgcctgctttcggcccggtaccggacaacccttcgccgccgaacggctgcacaccaaccactgcgcccaccatattacggttaacatacaggttaccaacatgggccgagccagtgacctgggcgatggtttcatcaatgcgcgtatggacgccaagcgtcagaccataaccggaagcgttaatctgctcgatcagctctggtagctggttacggttgtaacgcaccacatgcagcaccggaccaaagacctctttttgcaattcggcaaagtcatccagttcgatcagcgtcggggcgacaaaggtgccgctttgccattcacgggcatcttcgctgttttcccgcaccgcctggaacaccggacggcctttgctacgcatggtctgaatatggcgctcaatattggctttcgcttcgctatcaatcactggaccgatatcggtggtcaggcgacccggattacccatccggcattcggccattgcgccgcgcagcattttcaacgtgtggtcggcaatctcatcttgcaggcacagcacgcgcagcgccgaacaacgctgacccgcactgtcgaacgccgaggccagtacatccacgacgacctgttcggtcagtgctgaagaatcgacaatcatcgcgttcatgccgccggtttcagcgatgagcggaatagggcgaccctgagcgtccaggcggctggcgatattgcgctgcagtaacgtagcgacttcggttgaaccggtaaacatcaccccgcgcacgcgatcatcacccgtcagttgcgcgcccacggtttcaccccgacctggcagcaattgcaccacgcctggcggtacacccgcttccagcaaaatggcgatcccttgcgcggcaatcagcggcgtttgttctgccggttttgccagcacgctgttacctgccgccagtgcggcggcgatctgcccggtgaaaatagccagcgggaagttccacggactgatacacaccacaggccctaatggacggtgggtttcgttagcgaaatcatcccgcacctgtccggcgtagtagtggagaaaatcgaccgcttcgcgcacttcggcaatggcgttactgaaggtttttccggcctcacgcaccagaataccaatcagttgctgcatctggctttccatcagcacggcagcgcggtgcaaaatcgctgcgcgttcagccggaggcgtggcaaaccagattggcgcgttattaaccgcactttccagcgcctgttctacttcacgcggcgtggcttcacgcacatagcccacaatatctttcggttccgcagggttaataacgggcgacatctcacctgccgctaccggttgttccagcattggcaaggcctgccatttttgcagtgcactattgagcagggcagaggagagcgaggccaggcggtgttcgttagcgagatccagccctgccgagttgtcgcgcccgtgaccgtaaagatcgcgcggcaggggaattttcggatgcggtaatccagtttgcccttcctgttgcgccagtttttctacagcagtgaccggatcggcgaccagttcatccagtggcaaagaggtgtcggcaatacggttaacaaacgaggtgttagcaccgttttccagcaggcgacgcaccagatacgccaacagcgtttcatgtgtgccaaccggagcataaatacgacacggacggttaagtttgccgtcggcaactttcccggtgacctgctcatacagtggctcgcccataccatgcaggcactggaactcgtactgacccgggtagtagttctgccccgccagttgataaatcgccgccagcgtatgggcgttgtgcgtcgcgaactgcgggtagattagattcggcaccgccagcagctttttcgcacaggcgagataagaaacgtcggtatacaccttgcgggtataaaccggataaccttcaaggccgtccatctgcgcacgcttaatttcactatcccagtacgcgcctttcaccaggcgaatcatcagacggcgacggctgcgggtggcgagatcaatcaggtaatcgatcaccaacgggcagcgtttttgataagcctgaataacaaaaccgatgccgttccagcctgccagttccggctcgaaacagagtttttccagcagatcgagggagatctccaggcgatcggactcttcggcgtcaatgttgataccaatatcgtactgacgcgccagcagggtgagtgatttcagacgcgggtaaagctcttccattacccggtcatactgggcgcggctataacgcggatgcagcgccgacagtttgattgaaatgcccggcccttcatagatgccacgaccgttagacgctttaccgatggcgtgaatcgcctgctgataggaaaccatatacgcctgtgcatctgcggcggtcagcgcggcttcgcccagcatatcgtaagagtaacggaaacctttctcttccagcttgcgggcattggctaacgcttccgcgatggtttcgccagtgacgaactgctcacccatcaggcgcatcgccatatccacacctttgcggatcagcggttcaccgcttttaccgataatgcggttcagcgagcgggagaggctggcttcgttatgggtggaaaccagtttgccagtaaacagcagcccccaggtggcggcattaacaaacagtgacgggctacgaccaatgtgtgactgccagttaccgttgctgattttgtcgcgaattaacgcgtcgcgggtggctttgtcgggaatacgcaacaacgcttccgccagacacatcagcgccacgccttcctgcgatgacagcgaaaactcctgcaataacccctggaccatacctgcgcgaccactggcatttttttgattacgcagtttatcggccagctgatacgccagtttgtgcgcctgttcagcaactggctgcggcaggcgggcttgttccagcagcatagaaaccgcttcggtttccgggcggcgataggccgcggtgatcgcggcgcgggaaaccgactggggcaatatttgctcggcaaagtcgaggaatggctggtgtggttcctctgccggagtcggtgcttcatcgctctcattggccgcgccagaaagcagcgcaggtagctccggcagagtatcgctgttttccagttgttcgagataagaaaaaatcgcctgcttaattaaccagtgtggtgtgcgatcgatacgtgtcgcggcagacttaatacgctcacgcgtcgcgtcgtccagcttaacccccatggtggtggttcccatgccattactcctgttgttcagaaaggtgcaacttaacgttatcgtgaaatatccatgatgttgcaactttgtgcaaccatgttaaatgtgacatgcgtagcaagcttaaaaatgaatgaaatgttaataaaagaaatcgatatgacagggattaaaaaaataactcagactttttctctgcggcagttaacatttttgaaaggtgcaaccgcaaaaaatgtgagagagtgcaacctgatgaaaaatagtgtcgctgagcactaaaatttaatgtaaatggtgtgttaaatcgattgtgaataaccagcgcttccggcaggatacggtcgccctggtaaaacataaactctgttaccccgttccggtggcagatataacggcaagtttcgacattgccgataataattttttggagactttagatggctattagcacaccgatgttggtgacattttgtgtctatatctttggcatgatattgattgggtttatcgcctggcgatcaacgaaaaactttgacgactatattctgggcggtcgtagtcttgggccattcgtgacggcattatcggcgggtgcgtcggatatgagcggctggctgttaatggggttgccgggcgctgtttttctttccgggatttccgaaagctggatcgccattggcctgacattaggcgcgtggattaactggaagctggtggccgggcggttgcgtgtgcataccgaatacaacaataacgccttaacactgccggattatttcaccgggcgctttgaagataaaagccgcattttgcgcattatctctgcgctggttattttgctgttcttcaccatttattgcgcttcgggcattgtggcaggcgcgcgtctgtttgaaagtacctttggcatgagctacgaaacggctctgtgggcgggcgctgcggcgacgatcctttacacctttattggcggtttcctcgcggtgagctggactgacactgtacaggccagcctgatgatttttgccctgatcctgacgccggttatcgtcattatcagtgtcggtggctttggtgactcgctggaagtgatcaaacaaaagagcatcgaaaacgttgatatgctcaaaggtctgaactttgttgccattatctcactgatgggttgggggctgggttacttcgggcagccgcacattctggcgcgttttatggcggcggattctcaccacagcattgtccatgcgcgtcgtattagtatgacctggatgatcctctgcctggcaggggcggtggctgtcggcttctttgggattgcttactttaacgatcatccggcgttggctggtgcggtaaatcagaacgccgagcgtgtgtttatcgaactggcgcaaattctgtttaacccgtggattgccgggattctgctgtcggcaattctggcggcggtaatgtcaaccttaagttgccagctgctggtgtgctccagtgcgattaccgaagatttgtacaaagcgtttctgcgtaaacatgccagccagaaagagctggtgtgggtagggcgtgtgatggtgctggtggtggcgctggtggcgattgcgctggcggcaaacccggaaaaccgcgtgctgggcttagtgagctacgcgtgggcaggctttggcgcggcgtttggtccagtggtgctgttctcggtgatgtggtcacgcatgacgcgtaacggtgcgctggcggggatgatcatcggtgcgctgacggttatcgtctggaaacagttcggctggctgggactgtacgaaattattccgggctttatcttcggcagtattgggattgtagtgtttagtttgctgggtaaagcgccgtcagcggcgatgcaaaaacgctttgccgaggccgatgcgcactatcattcggctccgccgtcacggttgcaggaaagctaagggacttagcctgcggcggttttgtttggcttcagcagcgggttgcgctcccttaatgtgcctcgccatataaattgaatggtgcagggagcgcgcagggggcggccaatcgccgccgccccctgctgtcccggccttcggggaacgcttcagcgattttgacgccaccaacacccgagctgttattatgttccgggcaaaaagttagatttgataatcgcggatggacgaaattgcttgatacacccgcttatcagttttacatggaagctctgatgcattgagtctggacagttttgtcggctggatacggcgtttacgcggcatccggcaagaacacatggttctttgcaaacaatcccatctttctaccctggaataatcgtttatatcccttggcattacctctctttgtttacattccaacatcattttataaacattccgcttgtgtttttctttgccgtaatgataatcgctatcactgcgatttacttttctttgcatagattgactcagaaaaacgtttaagggtgggtggcatgtttgttccgtttctcattatgttgcgcgaaggacttgaagccgcgctgattgtcagtttgattgccagctatcttaagcgtacccagcgaggccgatggattgtgtgatgtggattggcgtgttgcttgccgctgcgttgtgcctgggcttgggtatcttcattaacgaaaccaccggcgaatttccgcaaaaagaacaggaactgtttgaaggtatcgtggcggtgatcgccgtggtgatccttacctggatggttttctggatgcgcaaagtgtcgcgcaacgtcaaagtgcaactggaacaggcagtcgatagcgcattgcagcgtggaaatcatcatggctgggcgctggtgatgatggtcttttttgccgttgcaagggaagggctggagtcggtctttttcctgctggcggcatttcaacaagatgtcgggatctggccgccgctgggtgcaatgctcggtcttgctactgccgtggtgctaggcttcctgctctactggggcggtattcgcctcaatcttggtgcattttttaaatggaccagcctgtttattctcttcgtcgccgcagggctggcagctggtgccattcgcgcatttcatgaagccggattgtggaaccactttcaggaaatcgccttcgatatgagtgcggtgctctcaactcactcgctgtttggcacgctgatggaagggatttttggctatcaggaagcgccgagcgtcagcgaagtcgccgtctggtttatttatctcatcccggcgctggtggcatttgctctgccaccacgcgcaggggcgacagcgtctcgctccgcgtaacaaatacgacgcaaactcttgcttagttacaacatactttaaagggatagtctcgtcatgaccattaacttccgccgtaacgcattgcagttgagcgtggctgcgctgttttcttctgcttttatggctaacgccgctgatgtgccgcaggtcaaagtgaccgtgacggataagcagtgcgaaccgatgaccattacggttaacgccgggaaaacacagttcattattcagaaccacagccagaaggcgctggagtgggagatcctcaaaggcgtgatggtggtggaagagcgggaaaatatcgcccctggctttagccagaaaatgacggcgaatttacagcctggcgaatacgatatgacctgcggtctgctgactaacccgaaagggaagttgatcgtcaaaggtgaggcaacggcggatgcggcgcaaagtgatgcgctgttaagtcttggtggtgcaattactgcatataaagcgtatgtcatggcggaaaccacgcagctggtgaccgacaccaaagcctttaccgacgcgattaaagcaggcgatatcgaaaaagcgaaagcactgtatgcaccgacgcgccagcactatgagcgtattgaaccgattgctgaactgttctccgatctggatggcagcattgacgcccgtgaagatgattacgagcaaaaagccgccgacccaaaattcactggtttccaccgtctggaaaaagcattgtttggcgacaacaccaccaaagggatggatcagtacgctgagcagctttataccgatgtggtcgatttgcaaaaacgcatcagtgaactggctttcccaccttcaaaagtggtcggcggcgcagccggactgattgaggaagtggcagccagcaaaattagcggtgaagaagatcgctacagccacaccgatctgtgggatttccaggctaacgttgaaggctcgcagaaaattgtcgatttgctgcgtccacaactgcaaaaagccaacccggaactgctggcaaaagtcgatgccaactttaaaaaggtcgataccattctggcgaaataccgtactaaagacggttttgaaacctacgacaaattgaccgatgccgaccggaatgcactgaaaggaccgattactgcgctggcggaagatctggcgcaacttcgcggtgtgctgggactggattaagcgttatgcagtataaagatgaaaacggcgtgaatgaaccgtcacgccgacgtttactgaaagtgataggtgcactggcgctggcgggaagttgtccggtcgctcatgcacaaaaaacgcaaagtgcgccgggtacgctttcaccggatgctcgcaatgagaaacagccgttttatggtgagcatcaggcagggatcctgacgccacaacaggccgcaatgatgctggtggcgtttgatgtgcttgccagcgataaagccgatcttgagcggttgtttcgcttgttgactcagcgttttgcttttctgactcagggcggagcagcaccagaaacgccaaatccgcgcctgccaccactcgattccggcattcttggcggctacattgcgcccgataatctcaccatcacgttatcggtgggtcactcattgtttgatgagcgctttggccttgcgccacagatgccaaaaaagctgcagaagatgacgcgtttccccaacgactcgctggatgcggcgttatgtcatggtgatgtgttgctacagatttgcgccaacacccaggacacggttatccatgcgctgcgcgatatcatcaaacacacgccggatttgctcagtgtgcgctggaagcgggaagggtttatttccgatcacgcggcgcgtagtaaaggcaaagagacgccgattaatttgctgggtttcaaagacggcactgccaatcccgatagccagaatgataagttgatgcaaaaagtggtgtgggtaacggcagatcagcaggagcctgcgtggacaatcggtggcagctatcaggcagtacgcttgattcagtttcgagtggaattttgggacagaacgccgctgaaagaacagcagacgatttttggccgtgataagcaaaccggtgcgccgctgggaatgcagcatgagcatgatgtgcctgattacgccagcgacccggaagggaaggtgatcgcgctggacagccatatccggctggcgaatccccgcacggcggagagtgagtccagcctgatgctgcgtcgtggctacagttattcactgggcgtcaccaactccgggcaactggatatggggttgctgtttgtctgctaccaacacgatctggaaaaaggcttcctgacagtacaaaaaaggctcaatggcgaagcgctggaggaatacgttaaacctatcggcggcggttatttttttgcgctgccgggggtgaaggacgcgaacgattatttcggaagcgcgttattgcgggtttaatgtttttaggcggataaggcatttgtgcgcagatgcctgatgcgacgcttgcgcgtcttatcatgcctacaatcagtgcgggtttggtaggctggataaggcgttcacgccgcatccggcgatcgtgcactgatgcctgatgcaaatcctgctgaaagcacacagcttttttcatcactgtcatcactctgtcatctttccagtagaaactaatgtcactgaaatggtgttttatagttaaatataagtaaatatattgttgcaataaatgcgagatctgttgtacttattaagtagcagcggaagttcccggcagtgatagtcagtcactatggagatcgcggatggtaacgtcctgtactggacatgttttagataatcaacgcgccaccactcgcggagttttctcctccggtagtcatctcgtcactttgcattttcaacctcatcctttcttttcatgtgttaccgacgccgtaaacggtgcgcgtagccgtttttcggcattttatccaaaagcaaactatggcttacaaggaagccaaccctctgatgttcgtgcgcataatcgcgctgccaacggcgcgtgtgatgaatacaaacaactcaaggtgctctccatgggaagacaaaaagcagtgatcaaagctcgtcgcgaggcaaaacgtgtgctgagacgggattcgcgcagccataagcagcgtgaagaagaatcggtcacctcgcttgtgcagatgggcggcgtagaagccattggtatggcccgcgacagtcgcgatacttcgcccatcctcgcgcgaaatgaagcgcaattgcactatctgaaggctattgagagtaagcagctgatattcgccacgggcgaagccgggtgcggaaaaacctggatcagcgcagcaaaagcggcagaggccctgatacataaggatgtcgacaggattatcgtcacccgtccagttctgcaagccgatgaagatcttggcttcttacctggagatatcgcagaaaagtttgctccctattttcgcccggtctacgacgtgctggtccggcgcttaggggcttcctttatgcagtactgcctgcgaccggaaatagggaaggtggaaattgcgccgttcgcctatatgcgtggacgtacctttgaaaatgcagtcgtcattcttgacgaggcgcagaatgtgactgccgcgcaaatgaaaatgtttttaacccgcctcggggagaacgtgacggttatcgtcaacggtgatatcacgcaatgcgatttgcctcgcggcgtgtgctccggattaagtgacgcgctggaacgtttcgaagaagatgaaatggttgggatcgtccggttcggtaaagaggactgcgtacgttcggcactttgccaacgtacgctgcatgcctacagttaagtgtgttatcggtgcagagcccgggcgaaccgggctttgttttgggtgtttatgcccggactagcgctttttctgaaacaaccatttttatttgcccctggctggtgaagtgtacgctcatcctgtggcttttttgtagttgctgatagagctcatcaggtattgctaagctctctgcatattcttgcggcgtatattggtaggctgcatgatgctgctgtttttgaaaacgcagcttattgtacagcgcccagacaattaacacgacggcattcgccactgccagcaaaaaatagaactgaagtcggcttctggcctcgctttgccagtaataacccgtcagcagatccatggcgaataagaatatgaacaacgcaaataatgtccacaagatggttgtggcaacataatcaaccagtaaacgtactggtgattgtcgggtcgtaataattaaattgttcatattaacctctcagaatcccgcgatcgggacttacccaacgggcgcgttgctttttaggcatcaacatgactcgtgtaaatgataccaatgtcgttgccaggctcagcatccagaaaataaccgggaaccaaataatccagaaaagcgatgaagtcagattatgctcatagcgattctcgatcatcaggctgacaataaattgcagtaaacataacgtacacaataatattccggcagtatgtgtcgcagcgatatgtgtcaattcaatatttaacggtacaccggcaagttggactgcgtaaataatgaaaccgaccaggcaggtgaaggcccatattgtcgtcaggcagtattcaaaaaacagcggccacattcgaaagttttctttgcgccacaaccttgtcatatttttgaggaatacttctgcaccgccctgagcccagcgcaggcgctgtttccacagcccttttaacgtttcaggcattaatatccagcacagtgcccgtggctcgtaaaaaatcgtccactgattcaactgcagcttccagctaatatcaatatcttcggtgatcatatcgtcactccagtaacccacttctgccagggcgctgcgacgaaatgcggcaataacaccggaaacggtaaatacgtttccatagatacgctgggttcgcttgatcaaaccaataattgaggaatactcgccaacctgaattttacccaccagggtagaacgtgttcgaatacgaggattaccggttacggcacccacacgcgggttgtacaacatcggttccacaatatatgccgccgcatcgcggtctaataacgcatcgccatcaatgcacaccagatattcacttttcgccgcggcagctccggttttaagcgcaatggctttcccctggttttgcgccagatgaatgacccgcaaatggggaatttgtgcagccatgcgatccaggatggcacgggttttatctgttgaaccgtcatttacggcaataacttcaatgttctcataacgctgtgctaaagcggcgtgtatggtttcctcaacgtttttctcctcattaaaacagggaatgataatggagatagacggattatctttcaactggggagctggtgcgttttctccccacggccagtggcgttcacgatagacccagaaatagacgccgccaacaatccacataatggacataaaaaacggccagaagaaaacgaacctcatcatcagttcaccagagtgaaagtacgctacgcataggggtatgcataacaccagacataatataaaaaacgatacgatgcgattaatcatttttcggataccaggctgttgaaaactcaggacgaataaggtctatttcaggttggttatgcagaaaattgtcgggataataaccatagtttttcactccattcagttgtaataggctcatccagtgagcgagttgttgcgaagaaatagcctgatgctgaccatttttctgccagttttgtgcctgtaattctaaaatagatttgtctttagcctgagggatgtttttaatttgattggtcaattgtattaaccattggtcagccgatttttctgcgacaccttccagataaggcatagccataatagcggtccagtcatagctttttaggaaatcagcataattctgtgcaaaccaggcttcactttcaggttgtattaccggaagtgcaaaaatatttcgtgcagttttaatatgtggaccgcgaatggcttttacgcgcgcactaagttctaaagtgaagtcagttaacgcacgacttttaaagcgggcccactgtttaaattgctccgggttttgtcgaatttcgctcagactcccgctaaagcctgcttgctgataagccgtgatagccggtgcactggcatcttcataatctgaaagcaaagcatcatcgtggaacaatatgccatcaaaagcagcatgtccggcaagatcttcatataacatgccaacttgtgctctgactctgtcatcgaaaggagagagacggtgatattgttcaggatgaatttgtgcttttttctcccctgttggtaagtattttactcgcgttaatgtgggatctaaatcccagcttaataccggcatccacgcatagatgtttacacctgagcgggtacgtaattgccaggcaacccgactaaaaatatctgctttcattggtagcaaacgatttggaaaccagacctctttgaccagcccatcaccatcgggatcagcaaatgcctgcaaatacacggttgatatttgcatatctttcacccgctgaattagcacatcaatattgcgatccatttgctggaggttttcgtcataaacgtaatcaagatcgatatgcattatccgttgtggtgatttttcctgtacggtaataatttgctgggcaaactcttttaatgagggattattggcgattaatacccgcggaatggaatccaattgcgacgcatttgccaaacctgattcaagggtgaagaacatgtcataaccgagtttttttaattcctctatcgctatgccattcgcttcgccataaggccaaacaaaaacgtgtggatttacctcaacctttgtacgcaggtattccgtcatttttacagcatccagacgaattctttcccggtattctgctgcggtttcataccgtgcgtggtcagtaaaatatgcacgatttacatatacaggcaataagctgccggtggcattagcctgaataccgtagtgagaattccatgtatgagaagcgagctcaacgagccgggaacgcgcaacttctcgcacttgttgccacgtggcaaaatattctcgatcgaccaactcatcgccaaattttacttgtttatccgctggcgtatcgacccaactgccgacgggggcccatacagcaggccactggaaggcctgaagaattgggaagacgcgggtataaaaactctggtagccgtcatcaaaagtcagcactacagctttttccggtagcggttttcctcctcgatgtgcttcacgaatttgagcaatactgaccggttgataaccgttctcgcgcagccaggcaaattgttcacgcagtgctgatgtccgcactgacataaaacgctggtcggcagcttcgtcttcaacgttatgccatgaaatcgctacaaaaccattatgcggccacggttgctcggcgagtaaagattcgcgatcctgtggcggtataaatgatgttcttgactggctaatgcacgcggtgagcataattatactcaccagcatcaggagatatttatttccattacgtaacatatttatccttaaaatctgaatgtcatatcgaattcaacgtataagttgtgttctctgtcaccgtcataaggtcgtttttcccagcgtagcgttgcgccagcatcaatcacgtcattccaactaatgcgttgcccgtagccgagttgggtgacgacatccgtgccataatgtttttgccaggaggcaccaacacctgcgctgaatatttgctcccagctattttcatagcttcgccataacaaatggcttgcctcaaatgccggaacaatatcgaacgtttttatagggttgtagtatggggtatcgtgttctgtattttgttcgtaatacagactgggtaggaaatcgacaatcaaatatggtgaagaccagatgcgttcctgaccctcaagtgagacttcatgacgctggttactgtcggaaaaatcagtgaaagcccaggagacaccgtacttacgccgctcattttgataccagcgaacataagcctgagcactgttgcctgtaacaccatttttcattgcccgtaatggaacgcggtgagagaggcgttccagttgcgaaccaatacgccagttatcattaaaatcataccagccagacaggcgcgcgccgggtttatgctcatgattgaaaacgcgttcagcgtactctgcctcgagccagatattacgtgaccgccactcaacacccgcaagccagtcgcgaacaatcccttttccttcgctaaattgtccatcggcataaccgaatccagcaaaaccgcgccagttatccttcagcggtggtgaataaacgatggtggttaagtcgacatcatgtttaccactatccgggccttcggcatcaattcctgttgagccagcgatacgaagctctgcaagattatgtacatcaaccgcacgttttaatcgtacaacgccgggatcttgcggttcacgttcgacaacatcgtgcgttaagacagctgcctgctgccattcttgtaacgttaatgctgtccaggcttgttcaacctccagattaatattacgtggctcgatcacttctgctttttttaattcattttctgctgcacgaggccaaccgcgggcttgtaacacactcgcgtaatcaatgcgcagtccctgatttcctggtgcgttataagcaagctctctggctgtcatttcagcctgaggaagatcattactatattttgctacggttgagagaaacgaatgcccctgtaaccaggtatcattcgggatgctcgtaggcgtgcccattaaccgaaggaaaggcggcgaagtattaatggtatgttgggtgacagttagcgcgcccggataattttcactctccaggtggctgtaaaagagatccgcaagttcttcatcggataaatccggggcaatggtctccttgtgataaaagagctcggtcattattgactgtgcttttttcggctgatgatctttgagataagccgatgcaacccaatattgcccccagggcggaataatttgccccgtcttttttaatcgctgatagtgagaaataacgtctttataacgatcgcgagttaataacgcgccaagatgatcaacctgaatacgctggtactgggcagtgcggtctgggttatcgtgccacagaatttctaatgcagcgtattgggcgagggcgcgatcggcaatggcataacgttcactttcactgcgcgtaggcataaacgacagtctgaccagttcggcatgaatatcagcgcgaatatctggcgttaaattggcatcgtcaatcgcggcagcaagttgattattacgtaatgcctgcacgtattctgtgggatattgttgcgtagatgcattttcaggtaatgactctgtcatcgcccgtaattcatcctgatgacgccccgccagtttatagatataggcttctgcgagtaaattggctttgtccggtgctccagagttaagctgcttaagtttaaccagcgcagtatcatagtgaccagcatctgccagggttaaaatttgtccccgttgataatccttattttgcggctccagagagagcgccttttgccacagtgtaagcgagttttgccattgttgcaggttacgataagcgacggcgacagctgcataaccacgcgctggtaattgctgatgacggtagcggttgtaaacggtaataacctgtttatcttgcccggcccataaggcaatctgtaaccagtcagcaatttggttattgctgagtgctgattttagtgcaaaccatgacaaagctggctgagtattacccttgcgagcttcaataatcaatgcatcataggcgttattaacagcactcttcgccgcgggactcgctgctaaaaatgcggcagtaagaagtttcaaagcccatttggttttcgggcacctttttctgctacttgaatacatcctgtattactccatgtattgccaaaatctctctctgtatctaattacaggtaactgaaaagaaagatatttttgcacctcataatccgttattaaacgcggaagagagacgtgaattgttgatgatgagaagaagaaatgatgagcagagtgtccatataaaatccttttctcgcccgaaaatccattccaatgatgaggatcttcaggaatacggcataaatcccaatgcctttttcaaaataaattaggattaaaataattaaatcagtaaattccgatgcatgatttcggatttttcgaaagtcctgatgaaaggctgcgctacggcactcacggatttaattgttattcctaatgtatctatgaattaatgttttataaggattttctataaccatttataagtattttcaagcctggcttgttgcaaacaatgtataaagcacttaggcaataataattacattcagcaactatcatcatcggtattgtttgtgggcggaatttcatattgacaacagtacagttcttatatctattaataatagaaagggatctacaacctacagattggtgtagctttatggaaaaagactatttgagaattagtagtactgtattagtgagcttattgtttgggcttgctttggttttggtgaatagttggtttaatcagccaggcgttgaggaagttgttccacgatcaacctatctgatggtaatgattgctttattttttatcgatactgttgcatttatttttatgcagttgtatttcatttatgaccgtaggcaattttcaaactgtgtacttagtttggcttttctgagttgtttgatttactttgttataaccgtcattatcattcagcaaattattgaggagcgtttgacaagcagtgttgtccaaaatgacattgcaatctattatttgtttcgtcagatgagtttgtgcatattaatatttctggcattggtgaataaagttagtgaaaacacaaaacagcgcaatttattttccaaaaaaatgactttgtgcataagtttgttttttgtttttggggggccgatagttgctcacatactttctagtcattatgagagctacaatttacacattgccgagttaaccaatgaaaatggtcaggtggtttggaaagcctcatatgttaccataatgattttcatgtggttaaccttgctttcggttaatctatactttaatggtttacgctatgatatctggaatggagtgacggtgattgctttttgtgccgtactgtacaatatctctctgttatttatgagcaggtatagcgtgtccacttggtatattagtcgcactattgaagtagtcagtaagttaaccgttatggtaatatttatgtgccatatattcagtgcgctacgagtaacaaagaacattgcacatcgcgatcccttaaccaatatatttaacagaaattatttttttaatgaactgacagttcaatcagcatcagcccaaaaaacgccttattgcgtcatgattatggatatcgaccacttcaaaaaagtcaacgacacctgggggcatccggttggcgatcaggtgataaaaacagtggtgaatatcattgggaaaagcatacgaccagatgaccttttagcgcgcgtcggcggcgaagagtttggcgtcttgctgacggacatcgatactgaacgtgcgaaagctttagcggaaaggattcgggaaaatgttgagcgtttaactggcgataatcctgaatacgctataccacaaaaagtgacgattagtattggcgctgttgtgactcaggaaaatgcgttaaacccaaatgagatctatcgactggctgataacgcactttacgaggcgaaagagaccgggcgtaataaggtggttgtgagggatgtggtgaatttttgtgagtcaccataaagcggcattttgatcctacccacgtaatatggacacaggcctaagcgaggttcttgttttcaaattgttccggactgaggccgccacaccaactgtgccgccgccaccgattgtaatcacattcgatataattaaacaccgttgcccgcattatttcccggctgataaagtgttctccatggatacattccactttcagcgaatgaaagaagctttccacgcaggcattatcgtagcagcaaccttttgcgctcatacttccacgcagattatgccgcttcagttgcgcctgataatctgctgaacagtactggcctccacggtccgtgtgaacgataacgttccggggcctcttacgccgccacagcgccatctgcagggcatcgcaggccagttgcgccgtcatgcgtggcgacattgaccagccaataacggcacgtgaccacaggtcaatgaccactgccagatacagccagccttcatctgtacgtaagtacgtgatgtctcctgcccacttctggttcgggccactggcgtaaaaatcctgctccaacagattttctgacacaggcaggccgtgtgcgcggtagctgaccgggctgaacttccgggaggcctttgccctcagtccctgacggcgcaggcttgccgccacggtttttacgttaaaggggtaaccctgagcacgcagttcatccgtcaggcgtggggcaccgtaacgctgttttgaccgggtaaaagccgcgaggacaacgctgtcgcagtgttggcggaactgctgacgcgtgcttatccttgtccgccgctgacaccacgtataccagccgctgcgggccacccggagcacgcggcacattgctttgatgctgaactcagcctgatgtttttcaataaagacatacttcatttcaggcgcttcgcgaagtatgtcgcggccttttggaggatagccagctcttcatcccgttctgccagctggcgtttgagacgtgcaatctcggtagacatctccagttcacgttcagaagacgtctgctgattttgctgtttactgcgccagttgtagagttgtgattcatacaggctgagttcacgggctgcggcagtaacaccgatgcgttcagcaagcttcagggcttcactgcgaaattcaggcgaatgctgtttacggggttttttactggttgatactgtttttgtcatgtgagtcacctctgactgagagtttactcacttagccgcgtgtccactattgctgggtaagatcagtgcctggcacacgcgtttgatggaagacggcgttcaggcaatgcgcgattatcttgccggactggatatcgcttcgccagagcatcaggttctgatgaacgtaacagcaaaaagcgaggtcgctccgtcaattatcaaagaaaatctctcattacacttaactcatacggtgaaatggactgaatctctcgatacatttctgaatatgccaaccccggtagctttccttgaaataagtaataagccctatttggggaatatgttaaatgattttgctggcgtggatcagcaacgagttatgcattgtcgtaaagcatttagtgatgcaaaggtattcaaatgattcctgattatttaacttttattcgctttcaggataaacgaaatctgatatacatttatgctattggacttattctgataggcttttattggaagaatgcagggtttacttttccatcagaggatattggtgtagttagtgggattctggctctggtgctgtataattttatttttgatctcaaggcgtactgggcttataaatgcgtcacgaagaatatcgatttttcgtggtttaagaaaaagcagaaccacaaaatagaattatttcttacacaacctctggtggcaggatttctgtcgttaatcatgttgagtgcaatgagttgggggctataccagcttctaccctcgttatatgcgctgttcctgatttcgttacttgggccgttggtcatctttctgctgtttcggatgatccgcaccagttatgtcaagcaggtcgctatttcagtagcgaaaaaagtaaaatataaaagtctgactcgctatgtgctgctttcggtgtgcatctcaacggttgttaacctgcttactatcagcccgttgcgtaacagtgattcttttgtgacagaggggcagtggttaacgtttaaatcgataattgcattgctcattctttgtggcgtagtgttggcgattaatctgttttttctgcgcttctccaagcggtacgcttttctgggcaggctttttttgcaggaaatcgatctgtttttctccagtgaaaatgcgttgtcgaccttttttgccaagccgctttggcttcggttattcatattgctggttattgaagtgatgtggattacgctggtgtcggtattggcaacgcttgtagaatggcggatttggtttgaagcctattttttactctgctatgtaccgtgcttaatttactattttttctattgtcgattcctctggcataacgattttatgatggcatgtgacatgtatttccgttgggggcattttaataagtgaggaagtgataggaagtgaccagataatacatatatgttctgtactctcttgcgcattttgattgttgactgagtaaccagacagttgatgtgcacgatttcccctcgccctaacagacgtgggcgggggcacccggtgtgtgcaatatacgaaaaaaaagcccgtactttcgtacgagctcttctttaaatatggcggtgagggggggattgactcgcttcgctcgccctgcgggcagcccgctcactgcgttcacggtctgtccaactggctgtcgccagttgtcgacccccggtcggggcttctcatccccccggtgtgtgcaatacacgaaaaaaaagcccgtactttcgtacgagctcttctttaaatatggcggtgagggggggattgactcgcttcgctcgccctgcgggcagcccgctcactgcgttcacggtctgtccaactggctgtcgccagttgtcgaaccccggtcggggcttctcatccccccggtgtgtgcaatatacgaaaaaaaagcccgtactttcgtacgagctcttctttaaatatggcggtgagggggggattgactcgcttcgctcgccctgcgggcagcccgctcactgcgttcacggtctgtccaactggctgtcgccagttgtcgaaccccggtcggggcttctcatccccccggtgtgtgcaatatacgaaaaaaaagcccgtactttcgtacgagctcttctttaaatatggcggtgagggggggattcgaacccccgatacgttgccgtatacacactttccaggcgtgctccttcagccactcggacacctcaccaaattgtcgttcctgtcttgctggaacgggcgctaatttagggaaatcatgacctgaggtcaacaaactttttgaaaaaatcgcgcgtttattcaaacttcaatcaatgtgtggttttaataagcgaaatctgctttttttgccaccgaccacggatttgttatgctggtggcctttgtagatcataacgataagtgcgaataaatttcgcacaacgcttttcgggagtcagtatggatatcatcttttatcacccaacgttcgatacccaatggtggattgaggcactgcgcaaagctattcctcaggcaagagtcagagcatggaaaagcggagataatgactctgctgattatgctttagtctggcatcctcctgttgaaatgctggcagggcgcgatcttaaagcggtgttcgcactcggggccggtgttgattctattttgagcaagctacaggcacaccctgaaatgctgaacccttctgttccactttttcgcctggaagataccggtatgggcgagcaaatgcaggaatatgctgtcagtcaggtgctgcattggtttcgacgttttgacgattatcgcatccagcaaaatagttcgcattggcaaccgctgcctgaatatcatcgggaagattttaccatcggcattttgggcgcaggcgtactgggcagtaaagttgctcagagtctgcaaacctggcgctttccgctgcgttgctggagtcgaacccgtaaatcgtggcctggcgtgcaaagctttgccggacgggaagaactgtctgcatttctgagccaatgtcgggtattgattaatttgttaccgaatacccctgaaaccgtcggcattattaatcaacaattactcgaaaaattaccggatggcgcgtatctcctcaacctggcgcgtggtgttcatgttgtggaagatgacctgctcgcggcgctggatagcggcaaagttaaaggcgcaatgttggatgtttttaatcgtgaacccttaccgcctgaaagtccgctctggcaacatccacgcgtgacgataacaccacatgtcgccgcgattacccgtcccgctgaagctgtggagtacatttctcgcaccattgcccagctcgaaaaaggggagagggtctgcgggcaagtcgaccgcgcacgcggctactaataaagcatcaggattcctgctatccttggcgggaattgaatacaggagagagttatgtatcccgtcgaccttcatatgcataccgttgccagcacacatgcatatagcacattaagtgattacattgcccaggccaaacaaaagggcattaaactttttgcgatcaccgatcatggcccggatatggaagatgcgccgcatcactggcacttcattaacatgcgtatctggccgcgagtggttgatggggtagggatcctgcgcggcatcgaagctaacattaaaaatgttgatggtgaaattgactgcagcggtaaaatgtttgactcgctggatctaattattgccggttttcatgagccggtttttgcgccacatgacaaagcgaccaatacacaagcgatgatcgccactatcgccagcggcaatgtgcatataataagccatcccggaaatcccaaatatgaaatagatgtgaaagccgttgctgaagcagccgcgaaacatcaggtggcgctggaaatcaataattcctcatttttacactcacgtaagggcagtgaagacaactgtcgtgaggtagccgcagcggtacgtgatgctggaggttgggtggcattaggctcggattctcacaccgcgtttaccatgggggaatttgaagagtgtcttaaaatcctcgacgcggtagattttccgccagagcgcattttgaatgtttctccgcgccgcttactgaacttccttgaatctcgcggtatggcaccgattgcggaatttgcagacctttaattactagtaatggaaatatattaatgaacgagttttctatcctctgtcgtgtgctgggttcgctctattaccgccaaccacaagatcctttactggtgccgctgtttaccctgattcgtgaggggaaactggctgcgaactggccactggagcaggatgagttgctgacacgtttgcagaaaagctgtgatatgacgcaagtctctgccgattacaatgcgttgtttatcggcgatgaatgtgctgtgccgccatatcgtagcgcatgggttgagggcgcgacggaagcggaagtgcgcgcttttctttctgagcgagggatgccattagcggatacgccagccgatcacatcggcacattgctgctcgcagcttcctggctggaagatcagtcaacggaagatgagagcgaagcactggaaacactgttcagtgagtatctgttaccctggtgtggtgcgttccttggcaaagtggaggcccatgcaaccacgcctttctggcgcaccatggcaccgctaacccgcgatgccattagtgcaatgtgggacgagctggaagaagattctgaagaataagtgtgatctacgtcactcataactgcaacggataatttgttgttgcataaaatgtgtgctcgatctcattcatggccgcgttttctgctatcatgcgcggcatgaacatacttctctctattgcaatcacaacaggcattctctccggtatctggggatgggtggctgtttccctgggcttactaagctgggcgggcttcctgggctgtacggcctactttgcctgcccgcaaggtgggctgaaagggctggcgatctccgctgcaaccctgcttagtggcgtggtgtgggcgatggtcattatttacggtagtgcactggcaccacatctggaaattctcggttatgtcataaccggtattgtcgcgtttctgatgtgtattcaggccaaacagctgctgctttcatttgttccggggacgtttataggcgcatgcgcgacgtttgccgggcagggtgactggaaactggtgttaccttcgctggcgcttgggctgatatttggttacgcaatgaaaaacagtggcctgtggctggcggcgcgtagtgcaaagacggcgcaccgtgagcaggaaatcaaaaataaagcgtgaggggcactcacgctttcgcttaaacagtaaaatgccggatgataattccggcttttttatctgtcaggattccggtggaaccgacatatggcggtatttcaccagaatgtcattctgccgttctgctttattttgcaaatcccacagaccacggtcgataccatcattaatcaggaaaatgacccctgtttcgatagccgacatcaggcacagcataacaggttcgttcgaggtgtaacccacttccccttcaagcaagcgctggtagtcaataaagcggaaaaccccggcctgaacttcataggaaagtatcgtcttactggtgttcaccgaagaaaggatctcgccggtactcacattgacgacgcgcaggttcacggcaatctgatcgagctggtattgcgtgtcggcaccgatgccaaaatatcttgccccaaccccgccagatttgacgttgctttcataaccgataatcgaaccttcaaccatgatatttgccgccgttaaagattgcagcgggattcggttattaatggcaaccgtgccgttttcttgtgccgcacgaataatcttgcgctcgttaagcaggttttgtaagccctggcgctccagcggtataaaccagcgagaatctttcagtgccgtgaccagcattgccgtggcgctttgcggaacagcagtggagaagttacttgccgggtagggtttaaattgcccggtttcgtcctgaatgttgtataccgaaacaaagattttacccgtcggcgctggcagatgggtcaaatctttgtagctctgagcacgaggcattaatgtcggtctggcggcttctttaggcggggcggttaagcatccgctcagtaacatgacggcaaccaaaagaaataagcgctgcatgattattttccttatgaagctggggcttaaaaatcggttgagttattttgtaaacccgaaacctggatggtcgaggtttgtccggttttacgatctgtcacgttcaactgcaattgaccatcgcggttggcaatatcgacaatataatcgttggtcaccatgcggcccggtttaccggtattaatattcgacagtagcccacctaaaatttgtgactggatggcctgagtaaagttatctaacgctgagggtgtttcaataccaaagtcatcgttatagctcggatctttataagagttttgggcctgagcgctatttaataaaaaagcgccattatttgggttaccaccaaagtttggattacggaactggaaagtcatggttccagcccaacttaatggcgaaataagcatgagtagaactactgcatgtttgacacgcattgcagcctccgaacaattttttatttagaattcatcatgcgccaaatcgcccgtacttaataacgcctgatttatctggcgacgatttagtgcttcttcagtttgaatcagtgcaaagacgacagttttctcgaagtctcttttcaacggaaataaaaaagtctggaaaataacgtcctgattgaccgttatagtgatccagcttccccatcgtgcactgggcctttcattaatcgttaagttacccgtatagtcactttcccatttatcactaaaggctcggtaaaaatcatggccaatagatgaaacagtatggtcagttagcaatcccgggacttctacctcaacggcgtgaagattccctgcggcgaacagaaattctgccgccacaatccagcgtaaataacgtttcatggctttatcgcctgaggttatcgtttgcccaggaaaccgcttgtgtccggttttttacggctatcttcttgaaaagattataaagatgcgttttaaccgtattttcgctgatgaacaacgaacgagcgatctcgttattagacgcgccgatacgcagcttattcaggatctctttttcccgatgagtaaggagggctgattccgtgctgttataacgatagttacctgaatgcgtaatcaggtagctggcaagcttttgcgtaaagtagcattcgccgcgcaggacgccttgcaacccattgacaacacgttcttgatcctccatggaataaaaaacgccgttgatatgaggccagttttcaatgtcgcggtacgggtaatcttcaggcgtatttagcaacaatattttgatattgttgtttttcctgctcaaagtatcctgccaataatggataagctttttatccgcttccatcatatccagaagaataatagagcctgaagagatatcgtccagagaacgttgaatattatgtaattttcctgtaattgccagcgattgtttaaggtgctgcaagagagctgtcgcctgcaaagaagatttagtgatcaacaataatgtatgaccatgaatactatggacttcattaaacatgatgaaaccccgctttttttattgatcgcacacctgacagctgcctctaaaatagaagcaccagaagtactgacagatgttgcactgctgtgtgtagtaataaatcagccctaaatgggtaaaatataaaactaatggattacatctgatttcaatctagccattacaaatcttaaatcaagtgttaaacatgtaactaaatgtaactcgttatattaaaatgttaaccttaaggttttattaagtttagaaatgatagaaaagttgtacatttggtttttattgcacaattttaaaaaatcatacaaatggtgataacttactaataatgcatataaaaaatatttcggtgtagtcctttcgtcatgtaaaacgttcttgttttttctccacacctccgtggacaattttttactgcaaaaagacgaggtttgtcacggcttgtgcgcaagacatatcgcagcaatcagcgacgggcaagaagaatgactgtctggtgctttttgatagcggaaaacggagatttaaaagaaaacaaaatatttttttgcgtagataacagcgtatttacgtgggttttaatactttggtatgaactaaaaaagaaaaatacaacgcgcgggtgagttattaaaaatatttccgcagacatactttccatcgtaacgcagcgttaacaaaatacaggttgcgttaacaaccaagttgaaatgatttaatttcttaaatgtacgaccaggtccagggtgacaacatgaaaaacaaattgttatttatgatgttaacaatactgggtgcgcctgggattgcagccgcagcaggttatgatttagctaattcagaatataacttcgcggtaaatgaattgagtaagtcttcatttaatcaggcagccataattggtcaagctgggactaataatagtgctcagttacggcagggaggctcaaaacttttggcggttgttgcgcaagaaggtagtagcaaccgggcaaagattgaccagacaggagattataaccttgcatatattgatcaggcgggcagtgccaacgatgccagtatttcgcaaggtgcttatggtaatactgcgatgattatccagaaaggttctggtaataaagcaaatattacacagtatggtactcaaaaaacggcaattgtagtgcagagacagtcgcaaatggctattcgcgtgacacaacgttaatttccattcgacttttaaatcaatccgatgggggttttacatgaaacttttaaaagtagcagcaattgcagcaatcgtattctccggtagcgctctggcaggtgttgttcctcagtacggcggcggcggtaaccacggtggtggcggtaataatagcggcccaaattctgagctgaacatttaccagtacggtggcggtaactctgcacttgctctgcaaactgatgcccgtaactctgacttgactattacccagcatggcggcggtaatggtgcagatgttggtcagggctcagatgacagctcaatcgatctgacccaacgtggcttcggtaacagcgctactcttgatcagtggaacggcaaaaattctgaaatgacggttaaacagttcggtggtggcaacggtgctgcagttgaccagactgcatctaactcctccgtcaacgtgactcaggttggctttggtaacaacgcgaccgctcatcagtactaatacatcatttgtattacagaaacagggcgcaagccctgttttttttcgggagaagaatatgaatacgttattactccttgcggcactttccagtcagataacctttaatacgacccagcaaggggatgtgtataccattattcctgaagtcactcttactcaatcttgtctgtgcagagtacaaatattgtccctgcgcgaaggcagttcagggcaaagtcagacgaagcaagaaaagaccctttcattgcctgctaatcaacccattgctttgacgaagttgagtttaaatatttccccggacgatcgggtgaaaatagttgttactgtttctgatggacagtcacttcatttatcacaacaatggccgccctcttcagaaaagtcttaatttgttgaaatatcgagcataagatgaatctggagagaatggtctgctgcgaatcagccaacctgaaagtatggataacacaaccctcaaggatgactaatcattgaggaaatagaataaatgttcagaccttttttaaactctcttatgctcggcagtttgttttttccttttattgccattgctggaagcaccgtgcaagggggcgtgatccatttttatggccaaattgtggaaccggcatgtgacgtcagcacccagtcatcacccgtagaaatgaactgcccacagaatggttctattccgggcaaaacctactccagcaaagcgttaatgagcggcaatgtcaaaaacgcgcaaatagcctcagtaaaagtgcagtatcttgataaacagaaaaagctggctgtaatgaacatcgaatataactaagtttctgaacaactcacgttgctgagcagaaaaatgcgatttaaccaaaaagcctgctgtacacttaagaaacaagaaggtgtaaggaggcgttatgaaaacgcgtattcatgttgtgcagggtgatattaccaaactggccgttgatgtgattgtgaatgcggctaatccgtcattaatgggaggcggcggcgtcgatggggccattcatcgcgcagcgggtccggccctgctggatgcttgtttaaaagtcaggcaacagcagggcgattgccctacggggcatgccgttattacgcttgcaggcgatcttcccgctaaagccgtagtgcacaccgtcgggccagtctggcgtggtggtgaacaaaacgaagaccagcttttgcaggatgcctatctcaatagcctacgactggtggcggcaaacagctatacgtcagtggcttttcctgcaatcagtactggggtttatggttaccctcgtgcggcagcggctgaaatcgcagtaaaaaccgtttcagaatttattacccgtcacgctttacccgaacaggtatactttgtctgttatgatgaagaaaacgcccacctctacgaaagactccttacccaacaaggagatgaatgatttgccccggctggcgagcgcggtgctgccactgtgttcgcaacatcccggtcagtgtggcctttttcctctggagaaaagtctggatgcgtttgccgcccggtatcgtctggccgaaatggcagagcatacgctcgatgttcagtattacatctggcaggacgatatgtcgggtcggttactgttttccgccctgttagccgcagcaaagcgtggcgttcgcgtccgtttgttgctggacgacaacaatacgcccggacttgacgacattttacgcttgcttgacagtcatccacgcattgaagtccggctttttaatcctttctcgtttcgcttgctgcgtccgcttggttatatcaccgacttttcccgtcttaatcgccgtatgcacaataaaagtttcactgtcgatggcgtggtgaccctggtgggaggacgaaatattggtgatgcctattttggagcaggggaggagccacttttttcggatttagatgtcatggcaataggacccgtggtagaggacgttgccgatgatttcgcccgctactggtattgcaaatcggtttcacccttacagcaggtgctggatgtcccggagggtgaaatggcggatcgcatcgagttacccgcctcctggcataacgatgccatgacgcatcgttatttacgcaaaatggaatccagtccatttataaatcatctggttgatggaacattgccgcttatctgggcgaagacacgtttattaagtgatgatccggcgaaaggggagggcaaggcaaaacggcattcactgttaccgcagcgcctgttcgatatcatgggctcacccagtgaacgcatcgatattatctcttcctattttgtaccgacacgcgcaggtgtggcgcaactcttacggatggtgagaaaaggggtaaagattgcgatcctaaccaattctcttgccgctaacgatgttgctgtcgtccatgccggatacgcgcgctggcgcaaaaaattgctccgctatggcgtggaattatatgaactcaagccgacgcgtgaacaaagtagtacgttacacgatcgcggcataaccggtaattccggagccagcctgcatgctaaaacctttagcatcgatggtaaaacggtgtttatcggctctttcaatttcgatccgcgttcaacattgctcaatactgaaatgggcttcgtgatagagagcgaaacgctggcacagttaattgataaacgctttattcagagccagtatgatgcggcctggcagctccgtctggacaggtggggacggatcaactgggttgatcgtcatgcaaagaaagagattattctcaaaaaagaacccgccaccagtttctggaagcgggttatggtcagactggcgtcgatattgcccgtggaatggttattgtaaatgtggcttaacgggctggtgctttatcgttctcacgcttaacaaccggtttaccagagaacaaaaacttcagtaacgggatgcgcaaatgaatttcatacagaattatcgcaatccctactacaaatatcaggccacagagaaaaccaagccagttggaggtgatgtgcggtgtaatgtatgcgccgaaaaacagcgttaacgggtggtgaaccagatagataaacagcgatgcgttaacaaaataagtcacccgcgctgactggaagttaagcaaacggtggccaaaggagaagaccacattcaccatccacagaccgaggaccatggtgatcaccgactcggtttcgtacatccaggcatcgccactgccatagcgctggttgagtaaataagcgacaaacgccaatgctgctgcaagggtacagccacgagacggcgtggtaaacaaggctttaagatgagggaaaatgaaagccagtgcgccgaggataaagaacggcaaataaaacagcgtttgcatgacaataaaattgaacatgccattactcagaatgggcggatacacaataaaaatcgttcttcttattaccgcataaccgatgccgaggcataaaaaaatcaccgatagttttaccatcgagaattttttattcgttttatcagaattttctaaattatttctgatgcgcttaaatatccatacgcacagcgtcgtcatgaccactaacaccagtaaaaaccacaggtgtgatattaattcccaggccaacgtattatatttgtcatacaatgacagcccaggccaactttccgcttttcctttgacatattgcagcataataaattgcggtaatgtcagtagggggatggctgttaacatcgggatacctacacgttcgacacgtactttccaccattttttcaagggatagcgtaaaaaaagcatgtaggaaaagtagccggatataacgaaaaatacctgcatgcggaacgagtggatgaagtcattaaaaagggtcagccacaatgatgattcggcgctattcacatgccatgtatggctcgaatagattaaagaaatatgaaaaggtatccctaacaacatcagccaggcgcggatggagtcgaggaaatattcacgttgcgcgggtactgggttcatatatggttaactaatctcggatttttcgtcttatccctgtcgggttatgcctttaggcttgttgccatagtgacaccgacctgaccgcgccaggcgcaggcttcaaggtttttatgcatagcatcatcgctaccactaaccagaatggaagcgtctgtaagacggttgataaataaatttgctggcaaaccctacacgaagtcgatgcttctgtctttaggagaagcacggaaagtgaaaacggttgcaatcaggtgcttaatccatgagccagcgtgctgaacgataccgggattctgttgtcggaatggctggttatccattaaaatagatcggatcgatataagcacacaaagggggaagtgcttactaattatgaaacataaactacaaatgatgaaaatgcgttggttgagtgctgcagtaatgttaaccctgtatacatcttcaagctgggctttcagtattgatgatgtcgcaaagcaagctcaatctttagccgggaaaggctacgagacgcccaaaagcaacttgccctccgttttccgcgatatgaaatacgcggactatcagcagatccagtttaatcatgacaaagcgtactggaacaatctgaagaccccattcaaactcgagttctaccatcagggtatgtacttcgataccccggtcaaaataaatgaagtgactgccaccgcagtcaaacgaatcaaatacagcccggattatttcactttcggcgatgttcagcatgacaaagatacggtaaaagaccttggctttgccggttttaaagtgctttacccgatcaacagcaaagataaaaacgatgaaatcgtcagcatgctcggggccagctatttccgcgtgattggtgcaggtcaggtttatggcctttctgcccgcggcctggcaattgataccgccttgccatcgggtgaagaatttccgcgcttcaaagagttctggatcgagcgtccaaaaccgactgataaacgtttaaccatctatgcattgcttgactcgccgcgtgcgacaggtgcttacaaattcgtggttatgccagggcgtgacacggttgtggatgtgcagtcgaaaatctatctgcgcgataaagtcggcaaactgggggttgcaccgttaaccagtatgttcctgtttgggccgaaccaaccgtcgcctgcaaataactatcgtccggagttgcacgactctaacggtctctctatccatgccggtaatggcgaatggatctggcgtccgttgaataacccgaaacatttagcggtcagcagcttctccatggaaaacccgcaaggctttggtctgttgcagcgcggtcgtgatttctcccgctttgaagatctcgatgatcgttacgatctccgtccaagcgcatgggtgactccgaaaggggagtggggtaaaggcagcgttgagctggtggaaattccaaccaacgatgaaaccaacgataacatcgtcgcttactggacgccggatcagctgccggagccgggtaaagagatgaactttaaatacaccatcaccttcagccgtgatgaagacaaactgcatgcgccagataacgcatgggtgcaacaaacgcgtcgttcaacgggggatgtgaagcagtcgaacctgattcgccagcctgacggtactatcgcctttgtggtcgattttaccggcgcagagatgaaaaaactgccagaggataccccggtcacagcgcaaaccagcattggtgataatggtgagatagttgaaagcacggtgcgctataacccggttaccaaaggctggcgtctggtgatgcgtgtgaaagtgaaagatgccaagaaaaccactgaaatgcgtgctgcgctggtgaatgccgatcagacgttgagtgaaacctggagctaccagttacctgccaatgaataagacaactgagtacattgacgcaatgcccatcgccgcaagcgagaaagcggcattgccgaagactgatatccgcgccgttcatcaggcgctggatgccgaacaccgcacctgggcgcgggaggatgattccccgcaaggctcggtaaaggcgcgtctggaacaagcctggccagattcacttgctgatggacagttaattaaagacgacgaagggcgcgatcagctgaaggcgatgccagaagcaaaacgctcctcgatgtttcccgacccgtggcgtaccaacccggtaggccgtttctgggatcgcctgcgtggacgcgatgtcacgccgcgctatctggctcgtttgaccaaagaagagcaggagagcgagcaaaagtggcgtaccgtcggtaccatccgccgttacattctgttgatcctgacgctcgcgcaaactgtcgtcgcgacctggtatatgaagaccattcttccttatcagggttgggcgctgattaatcctatggatatggttggtcaggatttgtgggtttcctttatgcagcttctgccttatatgctgcaaaccggtatcctgatcctctttgcggtactgttctgttgggtgtccgccggattctggacggcgttaatgggcttcctgcaactgcttattggtcgcgataaatacagtatatctgcgtcaacagttggcgatgaaccattaaacccggagcatcgcacggcgttgatcatgcctatctgtaacgaagacgtgaaccgtgtttttgctggcctgcgtgcaacgtgggaatcagtaaaagccaccgggaatgccaaacactttgatgtctacattcttagtgacagttataacccggatatctgcgtcgcagagcaaaaagcctggatggagcttatcgctgaagtcggtggcgaaggtcagattttctatcgccgccgccgtcgccgcgtgaagcgtaaaagcggtaatatcgatgacttctgccgtcgctggggcagccagtacagctacatggtggtgctggatgctgactcggtaatgaccggtgattgtttgtgcgggctggtgcgcctgatggaagccaacccgaacgccgggatcattcagtcgtcgccgaaagcgtccggtatggatacgctgtatgcgcgctgtcagcagttcgcgacccgcgtgtatgggccactgtttacagccggtttgcacttctggcaacttggcgagtcgcactactggggacataacgcgattatccgcgtgaaaccgtttatcgagcactgcgcactggctccgctgccgggcgaaggttcctttgccggttcaatcctgtcacatgacttcgtggaagcggcgttgatgcgccgtgcaggttggggggtctggattgcttacgatctcccgggttcttatgaagaattgccgcctaacttgcttgatgagctaaaacgtgaccgccgatggtgccacggtaacctgatgaacttccgtctgttcctggtgaagggtatgcacccggttcaccgtgcggtgttcctgacgggcgtgatgtcttatctctccgctccgctgtggtttatgttcctcgcgctctctactgcattgcaggtagtgcatgcgttgaccgaaccgcaatacttcctgcaaccacggcagttgttcccagtgtggccgcagtggcgtcctgagctggcgattgcactttttgcttcgaccatggtgctgttgttcctgccgaagttattgagcattttgcttatctggtgcaaaggaacgaaagaatacggcggcttctggcgcgttacattatcgttgctgctggaagtgcttttttccgtgctgctggctccggtacgcatgctgttccatacggtcttcgttgtcagcgcgttccttggctgggaagtggtgtggaattcaccgcagcgtgatgatgactccacttcctggggtgaagcgttcaaacgccacggctcacagctgctgttagggttagtgtgggctgttgggatggcgtggctggatctgcgtttcctgttctggctggcaccgattgtcttctcgttgatcctgtcaccgtttgtttcggtgatttccagccgtgccaccgttggtctgcgcaccaaacgctggaaactgttcctgatcccggaagagtattcgccgccgcaggtgctggttgataccgatcggttccttgagatgaatcgtcaacgctcccttgatgatggctttatgcacgcagtgtttaacccgtcatttaacgctctggcaaccgcaatggcgaccgcgcgtcaccgcgccagtaaggtgctggaaatcgcccgtgaccgccacgttgaacaggcgctgaacgagacgccagagaagctgaatcgcgatcgtcgcctggtgctgctaagcgatccggtgacgatggcccgtctgcatttccgtgtctggaattccccggagagatattcttcatgggtgagttattacgaagggataaagctcaatccactggcattgcgtaaaccggatgcggcttcgcaataaaaacgtagttgcctgatgcgctacgcttatcaggcctacatcgttcctgcaatttattgattttgcaagactttgtgggtcggataaggcgttcacgccgcatccggcaaaaacaacgagccaataaaaataccggcgttatgccggtatttttttacgaaagaggtatcaaatgcgtttaattgtggtgagcatcatggtgaccttgctgagtggctgtggcagcattattagtcgcactataccggggcaggggcatggcaaccaatattatcccggtgtgcaatgggatgtgcgtgactccgcctggcgttatgtcacgatccttgatctgccattctctctggtttttgatactttactgctgccgatcgacattcatcatggcccgtatgagtgattaacgttcatcccactcatcagctgctgcgcgtccttcctcggtatccagcggtggctcaagctgaaattccccctcgtcccattcatgtaatgtattctcttcctgccactcctggcgtatctctatctcatcatagtcgccatcaaaaacactttgcgcggcttcaccgctaagcataggtaaacattcaccttcttccccttcgtcggcaaaaaactcaacttgccacatgatgtcgccgtcctgcaaaacgtatttttgggcattgaactgttgcacattcgcatcttcggcgtcgatgccggggttgtctgcaagaaattcttcgcgtgcagcgtcaatggcttcttcaagcgttgcgtacatggtcatcacgattctccctttgagttgatgaggtttcagggaaaaggatagctgattctccgcttttgcaagtatgaaaggcgaaaaatcagttcgatacctggggtattcgacgacgacgtagactgttccatgaatagactgcgttgaataacactacgccagcggtgacgagaaataccgctctgaaaccgtagttcgctgaaatcgctgctcccatcaatggtccggtaacgttgccaatatcacgaaacgattggttatagctgaagatacgcccggcgatctggttgctcgagttgtaaaccaacagtgtctgtacggcggggagtagtgcaccatcggcggcaccgagcaaaaaacgtaaaatcccaagttgcaatggcgtctgaacgtaagacattgggatcaacagcagtacagaaaagatcagcgctgtaatcaggatcttttcgggtccgattcgatcgccaagtttgccgagtcgtggtgcacttagcagagccgccacgcctggcaccgaggcgatcatgccactgataaaggcgacgttactgacgttacccgccagttcgcggacatacagcgtcagaatgggggcaattgagcccgtcgccacctggatgattaacgtagtgacaaacaggctgagtaccagtttcgggtttttaagtgatgtcaccacttcccgcatgtgcagcatctcttttttgctgaccggctggaatttttctctgatgcaaaacagggtgacgaaaaagcagagtatgagcacactggcggtaataaagaataccggacgtaagccgtagctatcggcgagcaggccgccagccattgggccgagcaacgcaccactaacgccgcctgtggagagcgtacccagcgcccagccgcttttattacgcggtacttgtgtggcgataagagcattagcgttggggacaaatccgccaagtaacccaagaagcgcccgcaggatcaaaaactgccagatattttgtgccagccccatcaacaccatcacgatgcccatgccgagggcagagcgtaatagcatgagttttcggcctttacggtcggcgagtccaccccaaaacggtgaggcgatggccgaaaataaaaatgtaatgctgaagacaataccggaccacatattcagggcggagtgaccggtaacgccaagctgctcaacgtagaggggtaagaagggcattaccagactgaaggcggcaccggtaagaaaacagcctagccaggcgacgatcaggtttcgtttccagtttataggggtgtcattttcacagggtgacatagcaatccgctgttggtgcgccaggcgcggtgaacataagaagaaaagataagcacactaattatgcgcccgacttccagggggcgcaatccagagagcttttatcgctaaatcagggggatttgctgtggtaatgccggatgccattctgaagcatccggcatgggagatttaatagcgtgaaggaacgccttccgggcgtgttttaaagcgacggtgtaaccacatatactgctctggtgccatcatgatgcatttttcgaccactttgttcatccacgcggcggtagtttcggcatcatccagtggcggagaacactctggcggcagcataatcaattgataccctttgccatctggcttacggcgtggaacgaagggcaccagacatgcgccggacatccgtgccagcatccaggttccggtcgtggtcgcagcctgctcaacggcaaacaacgggacgaaaacgcttgagcgcgggccgtaatcatgatccggtgcgtaccagaccacttcgccttttttcagggctttaatcatgccttttaaatctttgcggtcgagcatcgatttatttgagcgcaaacggccccaggtttgtagccagtcaatcagtggattatcgttcgggcgataaacgccaatacccggttcctgcataccaaactgccgcgcacccagctccagtgtcagaaaatggatgccaactaacaggatgccgcgtttttgcgcctgcacgtcacgaatgtgttccatgccgatcacttccgtccagcgggcgattcggcggtccggccagaaccacgccatgccggtttccatcaggcccatgccaacggattcgaaattcttcaccaccattttacggcgttcttgttcgctcatttccgggaagcacagttccaggttgcgatgcacaatttttgcgcgtcgtttcataaaacgtaacgccagttttcctaatccacaaccgaggcggtagataaccgggtagggcaattgcacgactaaccaaagtacgccaatacccaaccaggttaaccaataacgcggatgaagcagtgcggtggagaacttgggtagattcgtcatatcaatcctgtttttcaacctattcgggcaattgtatgtattgtcgcattttttcgcccgcaaccaaaatttgtggctgaagactgggcgaaattgccgcgcttgtaaataacaaataatttttaatgcgcaaatgtagcgtaaaatgtgtggatgttaattatcgataattgctatatcatgccgcggatttttactttcccatctcgcaggaaccgtacaccatgccagtgttacacaaccgcatttccaacgacgcgctaaaagccaaaatgttggctgagagcgaaccgcgaaccaccatttcgttttacaagtatttccacatcgccgatcctaaggcgacccgtgacgctttatatcagctgtttaccgcgctgaatgtttttgggcgagtgtatctggcgcatgagggcattaacgcgcaaatcagcgtacctgcgagcaatgttgaaacatttcgcgcgcagctctatgccttcgacccggctttagagggtttacgcctgaatatcgcgttggatgatgacgggaaatccttctgggtactgcgcatgaaggtacgcgatcgcattgttgccgacggtattgacgatcctcactttgatgccagcaatgttggtgagtatctgcaagcggcggaagtgaacgccatgcttgacgatcccgatgcactatttatcgacatgcgtaaccactatgagtatgaagtggggcactttgaaaacgcgctcgaaattccggcagataccttccgtgagcagctgccaaaagcagtcgagatgatgcaggcacataaagataaaaaaatcgtcatgtactgcaccggcggcattcgttgtgaaaaggccagtgcctggatgaaacataacggattcaacaaagtctggcatatcgagggcggaattattgaatacgcccgtaaggcgcgcgagcagggcttgccggtgcgttttattggcaaaaattttgtttttgacgagcggatgggcgaacgtatatcggatgagattatcgcgcattgccaccagtgcggcgcgccgtgcgacagccataccaactgtaaaaatgatggctgccacctgctgtttattcagtgtccagtatgcgcggaaaaatacaaaggttgttgtagtgagatttgctgcgaagaaagcgcgttaccgccagaagaacagcgacgccgtcgggcaggacgtgaaaatggcaataagatctttaataagtctcgtggacgtctgaatacaacactgtgcattcctgatccaacagaataaatatcattgccggatgcgtgccatccggcaacatttcacgcttacttctgctgtacgccttccactgaaataatcagatccacttcctgagaagctggacctaaatctgtcttgatattgaagtccttgagcttaattttgccttcggcctcgaagcctgcacgtttaccaccccatgggtcgtcgccctgaccaattaatttcgcttccagcgtgacgggtttggttacgccattcagcgtcagatcgccggtaatatccagttcgtcaccgtctttcttcacgctggtggaggtgaatgttgcctgtggatattttgcggtattgaggaaatctgcactgcgaagatgtttatcgcgttcggcgtgattagtatcgacgctggtggtgttaattgtcacattcactttatcggcagccggatttttttcgtcaaaggtaaaagtaccgtcgaaatctttaaaggtgccgtataaccagctatagccaaggtgctggatgcggaaattaacaaaggcgtgctgaccttctttgtcaattttgtaatcggcggcaaccgctgaaccggcagagaacatcagggacgcgaaggttaaaccaagcaggctttttttcattttttatactccatagtcagatgacgactttcccagcatgcgcttcagagtgtcgtctttatcgatgaaatgatgcttcagggccataaatccgtgcataacggacagtactacgacgctccacgcgagccaaaaatgcagggcaccggcaaagtctgcctgtgcgccagcgtcggcaagggtcgcggggacgtcaaaccagccaaaaacgctgatcggtttaccatcggcagttgagatcagatagccgctgatgccgatggcgaaaagcaataggtacaatgcgagatgtccagctcttgcggcaagacgagtcatgggcgaataactcggcagcggacccggcggtggagatatgacacgccacagaacgcgaataaccagccccatcattaacaaaataccgatgcttttatgcagttcgggtgctttgtgataccagccatcgtaataactgagcgtgaccatccacagacctaaagcaaacatgccgtagacaataattgcgcttagccaatggaaggccgcagatataacaccatagcgttcaggggtatttgtgaatgacataagtgcatccaaaacgaatttgcgagagaaagaaaatggcgtgtcggagaatgaattgcaacacaaaaataacaaattgaatgatatttatttttatttcaataattttgaattaataatgaaagaatcttcataagtttagtgggttcagcatcagagatgtctggtgagtgctgtagaagcaggaataatctcattcaatttttcacgctaaatgaaagggagattaaatatttgtcagtttatgtcagtgcggaaaactaaaaataaaacacatagatcagatccataattgccaacaatccccagagaaaaagataaagcatcagatgctcgcgaatattattgatgagatagtgcaacagccgacgcattaaatactcctgtaaaaacggcctcattctggaggccgtaatgatgattattggaagcgggaaagcctgaatggcgtcaaatcaaaatcgctttttttgtcttgcgcaaaatcggcagctatttcccctaaaactgacgcaaatttaaaaccgtgcccactcaggccggtaatgagcagtgtattatcgtggccgggtagggtatcgataataaaatcttcgtcaggcgaattatcataggtgcaggcagcgccgtacaggcagcaaccgatacccggcaatacattgcgcaagaacgggaaggcttctgacccatcactggccacttccgcaaacggaacacgttcatccgctgaatggataacctggcctccgttatgtttgccaatcttcaacgcgtcgttttctgccggaaaaccataatattgatcgccattgggcagttcaccggtaaacgccgggaatttattcttcacgctatagcggccatcggcctgataccaggcaaatactttgcgtacgggctggacaggcagctccgggagcaggtcttttacccatgttcccgcgcagacaatcgcttttttcgcctgatactcaccgtcagccgtttcaatagttacgccatcatcgtcatgacgaattgcggtgaccgggcagttgaacagttgcgcacagcccgcttccttcgccagttggatccaggttttaatcgccagttcgctgcgcaaaaaaccggaatcagtttcaaataagccgatgtagttgtccgggacgcgtatttccggccagcgggccataatcccttgcgcatcgagcttttcaacgttgagttgccattgttcggcgctgtgggcgacgttggcgagaaatgtggaatcagccgggccaaggttaatgacgccagagcgtacaaaaatgggatcttcttcgttgtggcgggagagttcatcccacagcgtttgcgcgcggaggaccagcgggacatacttttcgccttcaccataagcatggcgaattaatcgcgtatcgccgtggtggctgccgtgttgatgcggtggcatatgggcgtcggtcattagcacgtttaaaccggcgcgggttgcataatacccggcggcagcgcctacggaaccgctgccaataatgatgagatcgtatttcatttttttctctctgctctcatggtttaagcagagtaattaactgaatgcagatatacaacccagaaatggtaaaggcaccggtgaggtgccttttgggtggatggtcatgtcatgttaatgacgccgatactcgtttacctggaaatcaccggattcaattttggcgattcctgcttctaatatcgaaataaattgtctggcaacatcagtggttaaccagagcgtctgaccaacttcagtcccttcctgctcggacttatttggggtctggtagtgcaaacgcaacatcagcgcatcatagctatcaacggtgctgatgtcccaccctacgagcggatgagtctgaatgacttcattatttttttccatcatggccccctaattcgtgttactagacaacgttattcgaggttcaatgcgtttttatctgaagcaacttcagtataccaataagtaagggtattcaccgaatttttaaagggggaaacagataaatttctgcttttaagatttatatgaacaataaaacagcatgtcattcatatttttttagcatattgtgcaattattttgaggaagtgtagaaattttgtactcaaaattcgtaagtaaaataaaaaagccggggcgacccggcaaaaaaaatcactgcatattattcgctgacaaaccagtcatcggcgctttcccacgtttcctggagaatttcactaatgcgctgtttatcttcttttgtcgcgccaataaccgataaattattcgctgcggcataacgtaccgatacgtggccttcattatcaggaaacgcatactgaatacggcgggaaagttcgccagccagggcgtcaatagccccagctggcaatggagaagttttcgctatggtgacttcaattcgcataatagccccctgttgaatatactggttatttatacaggtaaaataacctaatgacaacaggaagctacgatttttattgtttaacggaccagcgtaccgtttccccggcgaggaatggcaccagcgtgtcatcagtcagtgcgatgctttcagcaacctgttgctcttcacgtaccagttcgatgaatgtgtcgttgaccggcaacccatagaactgcgggccgtttacagaacagaatgcttcaaagtgctgcaaagcattcatttcttcaaagacggtagcgtaactgcccagcgcggttggggcgttgaagcagcccgcgcagccgcaactgctctctttgcgatgacgtgcatgtggcgcagaatccgtaccgaggaatactcgattaaaaccgctggcgaccagttcacgcaatgcctgttggtgaatattacgtttgaggatgggtagacaatacaggtgcggacgcacgcctccaaccagcatatggttgcggttaaacatcagatgctgcggagtgatggtggcagccagccgttcatttccgtcacggacatagtcggcagcatctttggtggtgatgtgctcaaaaacgactttcagcgcagtcaggcgctggcgcagaggttccatcacgctttctataaagcgcgcttcacgatcaaaaatgtcgatatctgcatgtgtcacttcaccatgcaccagtagcggcataccgattttttccatgcgctcaagtaccggcatgattgcgtcaattgacgtcacgccgtggctggagttagtggttgcgtttgccgggtaaagttttgcagcggtgaacacgccttcgttaaatccgcgctccagctcattaggatccagcgaatctgttaaataacaggtcatcaatggggtgaaatcgtgcccggcaggtacggcgtcaagaatacgctggcgatacgccacggcagcctcaacggtggtcacgggcggagccagattgggcattacgatagcccgtccataaatttcgctggtatatggcacgacagtttttaacatgtcgccatcgcggaggtgaaggtgccagtcgtctgggcggcggatctttaatacctgggatggtgcagtcattaatctctatgctccggctgaagggatgtttttgccggacacaaaggataagcggaaacgttttcctttgcacgaaaaataaagggcgcgaatgcgccctcgtgattaatcagtaaatggaatgacaatttcgcctggcttcacttcaatgcctttcgccagttttttcgccattgcttcgccctggctgccatcttcgcgcaggacgtaagcaggttgctggttaaagtaattgcgtaatgcctggttcaaatagggaagcaacgtttgcatcaccgtttgcattttttccggttgtaccgtcgcatcgaccacttccatctctttcaggaagatcgcacctttttctttatcaaacacgggcagcgctttcagcttcagtttcatggtcgctttctgactaccgaacagggagttcatgtccagattggcgtctccggttagggtaaccttattcggctcttcgcgaccaatttggctggtcaggtttgtcagaacaatatgggcgtcagccacgccgggtaaaccgatatcttttgagaaattattatgtttcgcaagcgactggttaatttcttgttcggtgatggtgtattgggtgagttgattacagccaacgagcaggccactgacgatcaatgcagcggcaaataaaaacttgttcatggtagtcctcgacatgaaatctgcgtcaatatcctgacacaacgcagcatgtgtcaccagcgataaactcgccagcagaaaaaactgaaaacggcggcaacccgcgaatacaggctgccgcggcgggtcaggattaaatcgccattgatgataacaaattgatttgtgtctgtttcgccatattatcgcggtaatcagcaacgcggcttggccagttaattccggctaccagcgtcagattacgcagtagcgggaatagctgaatatcatcttccgaaagttcgccattcacggcgttcggtttgacgatcagtttgtccagcgcacgtaaatcatcgctgatattcttaatcagaccgtcagagtgggccagcaggtcggcaaaattacccgcgctggcctctttcttgtcgacgaaatatttgcgcgcggcgggagtagaaaactcatcaaatgccgatttggcaaaacgcggcaacagcagtttgttggcgtagccattgaccttgcgcagccactcttcaatggcaggggaacgtttgccggtcagtaacggtttgccgtcgagtttatcgacatagtgaacgatgtccatgctttctggcatatagcggctgtcatctttttgcagaatgggaacctgtttttgaccgaccatccgggtgggtgtttctgcgtcgtcgttgagcagaacatgtaattcgacggggatatttttcaggccgaaaatcatgcgggctttgaggcagtaagggcagtgatcgtaaatgtatagcttcacgtgactcctccatttggctgtcagttcactttcagtatgaaggagtcaggggggagtatcaaatcaggcgtcgcgttcaagcaaacgacgcgcggcgcgtttctggctaaactgccaacccagcgcaaggaaagtgaagatgccaataatgcccagcatcatccacggaagctctggctggtgcgccgatttgcccaggtcaaacagccagccgccaccgatataaccaatagcgccgccaatcgccagacccagacggctaaaccccatatagctgccgcgagctcttgcgtccgccagcgaagcacttaaggtttcacgcgcaggctcggcaatgatcgacccgatataaaacagacaaatcagggtgaaaagttgttgcaggccgctgaccatgcccaccggcatcatgcttaatgacattatcaacagcccagccatcaaccggtgttccagacgaaaatgcttttcactccagcgggcgatagggtagagcaacgttaacgacagacacgcttcaatggcatacatccatttaacggcagagggcgcgccagccacgtcgttgaccataattggcagcatcagcatcacttgtacagccagcatgtagtaacccgccagcgtcagaacataggtgacaaaacgcttgtcacgcatcacgcgggtcatgccttcgcgaacgggcgtgcgtacggtggagagtttccatgctggtaacaaccacgcattgaacgccgcacatagcacaaatagaactgcccctgtggcgcagaccaggcgaaagtcgtattgcaacagccagctccccaacaatgcgccaatgaccgcaccggcactgtcctgcatcatcaacagcgagaaaaaacgaccacgctgctgtggacggattaatttcaccaccagcgccgaacgcggcggatcaaacaacgtgccaccgagtcccgagagcaggcatgaaaaccacaatagccacggttcgtgggcgatacccattgtggcgaatccggcggcgcgcatcagcataccggtaacaatcatcggtttggcaccaaagcggtcggcaattgcaccgccgaaaatacccagaccttgctgaataaattggcgtagaccgagagcaataccgaccatgacggcggcccagcccatttgatcaacgaagcggatagagatcagcgggaagacaacaaagaaccccagcacgaccagcatattatcgatgagcaggaaatatttacccaggttcctcgcctgcgacacgcgggacatttcccctcccgggaaataaaagatgagcactttctattctgcattgccgctaagacttttcccatcacttcggggacaatatttttttatcaaaacgtcgctttgatagagagtttttatcaaatatgtgaataatgcagaaaatggcattttggacttttcacagggtctggttgcgcaggtatagtaatacttacagcgtattaaagacgttacgggaaggagtaggtatagaatgtttggctatcgcagtaacgtgccaaaagtgcgcttaaccacagaccgactggtcgtgcgtctggtgcatgatcgtgatgcctggcgtcttgcggattattacgcagagaatcgccatttcctcaagccctgggagccagtgcgcgacgaaagccactgttatccatcaggctggcaggccaggctggggatgattaacgaatttcataaacaaggttcagctttctactttggcttattcgacccggacgaaaaagagattattggcgttgccaatttttccaatgttgttcgtggctcttttcatgcctgctatctcggttattcgattgggcaaaaatggcagggcaaaggactcatgtttgaagccctgaccgcagccattcgttatatgcagcgcacccaacatattcatcgcattatggctaattatatgccgcacaataaacgcagcggtgatttactggcgcgactgggttttgaaaaagaaggctatgcgaaagactatctgttgattgatggacaatggcgcgatcacgtactgacggcattaactaccccagactggacgcccggccgctaaggagaatctcatgaaatatcaacttactgcccttgaagctcgcgtgattggttgcttgctggaaaagcaggtgaccacgccggagcaatacccgctctcagtcaatggtgtagtcacggcctgtaatcagaaaacgaaccgtgaaccggtcatgaatctgagtgaatccgaagtgcaggaacagctggataatctggtcaaacgtcattatctacgcacagtgagcggttttggtaatcgggtcaccaaatatgagcaacgtttttgtaattcagaatttggcgatctgaaactgagcgcagcggaagtggcgttaatcaccacgttgttattgcgtggtgcccagacgccaggtgaactgcgcagccgcgccgcgcgaatgtatgaattcagcgatatggcggaagtggagtcgacgctggaacaactggcaaatcgcgaagatggtccttttgtggtgcgtctggcccgcgaaccgggtaaacgcgaaaaccgctacatgcatcttttcagtggtgaggttgaagatcagccggcggtgacggatatgtcgaacgcggttgacggtgatttacaggcccgcgtcgaagccctggaaatcgaagtggcagaactgaaacagcgtcttgattcgttgctggcccatctgggagattaaagtgaaaaaattacgtatcggcgtagtgggattaggtggcattgcgcaaaaagcgtggttaccggtgctggcggcagcgtctgactggacgttacaaggagcctggtcgcctacgcgcgcgaaagccctgccaatttgtgaaagctggcgcattccttatgccgattcgttatccagccttgccgccagttgcgatgcggtttttgtgcattccagcaccgccagccactttgacgtggtcagtacgttactcaatgcgggggtacatgtctgtgtcgataaaccgctggcagaaaatctgcgcgatgctgaacggctggtggaactggcggcgcggaaaaaactgacgttgatggtcggttttaaccgtcgtttcgcaccactctacggtgagttaaaaacgcaactcgccaccgcagcctcgctaagaatggataaacatcgtagcaatagcgtcgggccacacgatctttatttcacgttgctggatgattatctgcatgtggtggataccgcgctgtggttgtcgggcggcaaagcctctctggatggcggtacgctactgactaacgacgctggcgaaatgctgtttgccgagcaccatttttcggctggtcctttgcagatcaccacctgtatgcatcgccgtgccggaagtcagcgtgaaaccgtgcaggccgtgactgacggtgcgctcatcgacattacggatatgcgcgaatggcgtgaggagcgcgggcagggcgtagtgcataaaccgattcctggttggcagagtacgcttgagcaacgtgggtttgtcggctgtgcgcggcacttcattgaatgtgtgcaaaaccagacagttccgcaaaccgccggcgaacaggccgtgctggcgcaacgtatcgttgacaagatctggcgcgatgcgatgagtgaataaaccctgtaacatctggcggtagcaattcaccataatccaggtagactattcgcctctttcagcgcctgccttgcaggcgttttgcccgtgggtctggattagaacaccgatgaatttattaaaatcgctggccgccgtcagctcgatgaccatgttttcgcgtgtgcttggcttcgcacgagacgcaattgtcgccagaatctttggcgcagggatggcaaccgacgcctttttcgtcgcttttaaacttcctaacttgttacgccgtatctttgccgaaggggcattttcccaggcatttgtaccgattctggcggaatataaaagtaagcagggtgaagacgccacgcgggtctttgtctcttatgtttctggcctgctgacacttgcgctggcggttgtgacggtcgctggcatgctcgccgcaccgtgggtgatcatggtgaccgcgccaggcttcgctgacacagctgacaaatttgccctgaccagccagctactaaagattacctttccctatatcttgctgatctccctggcgtcgctggtgggagcgattctgaatacgtggaaccgcttctcgattccggcgtttgctccaacactgcttaacatcagcatgattggtttcgcgctgtttgccgcaccgtactttaacccaccggtgctggcgctggcgtgggctgttacggtcggcggcgtcctgcagctggtgtatcagctaccgcacctgaagaagatcggcatgctggtcctgccgcgcattaacttccacgatgccggagcaatgcgcgtggtgaaacagatgggaccggcgatccttggcgtctctgtgagccagatctccttaatcatcaacaccatttttgcctcgtttcttgcttccggttcggtgtcttggatgtattacgccgaccgcttaatggagtttccgtccggtgtgctgggcgtggcgcttggcaccattttgctgccgtcgctgtcgaaaagttttgccagtggcaatcatgatgaatacaaccgtttgatggactgggggttgcgtctttgtttcctgttggcgctgccgagtgcggttgcgttgggcattctttccggtccgttgaccgtttcgctgttccagtacggtaaatttaccgcgtttgatgcgctgatgacccagcgggcgttaattgcctactcggtgggtttgattggcctgattgtagtgaaagtgttggctcctggcttttattcccgccaggacattaaaacgccagtgaaaattgccatcgttacgctgattttaacgcaattgatgaacctggcgtttattggtccgttgaaacatgccgggctgtcactttctattggtctggcggcgtgtctgaatgcttcgctgctttactggcagttgcgtaagcagaaaatctttaccccgcaacccggctggatggcgtttctgttgcgtctggtggtggcggtactggtgatgtctggcgtgcttttaggtatgttacatatcatgccggagtggtcattgggtaccatgccctggcgtttactgcgtttaatggcggtcgtgctggcggggattgccgcgtacttcgctgcactggcggtactgggcttcaaagttaaagaatttgcccgccggacggtgtaacaatgcattccggcctgcagtgcaggccggagataatcttcagatcgaaatctttttaccgccgcgatgggttgttgaggtctgaccgttcgccccatatagcgtcggttcctgatgcggtttcaacatttccagcgcctgttgattgcgctcaatctgtccttccagtaaccagccgttatgttgattcatttggcgtagttgctgcgttttcacagtaatttcctgccagcgttgactaatatcaacgctatttgctgtattgggttctttcctgcgtaactgttcgaggtaatccagcgtcgccagcagtgagcttttttgttctgtaatccattgcaactggctgccgttgatctgccccatagagagatgttgctgctcttgatccattaccgttttgagatcgttaagcacagcggacatctggtcgaggatctctgcaagacgtgtcatacgatcagttactctgcaagtcttgctgcgcttcgttgatcagcgcatcggcaattttgccggtgtccatttttagttcaccgttacgaatcgccagttttaacgcttcgacacgttcaagattgatatcactgctgccgggttgcatcagttttgcttgcgcgtcgcttaacgtcacactggtgctggtggaggcggttgtttttgccgcccggctgttcgttaccggcgcgtcagtggtttcgcgcggttgaacggtgcttacaggcttcagaggcgaagtgcgatcaatactcatggtttattcctcattgagggcgcttttatcatgtgttgcttatttatcggcaagggacgggtaatctttaacagcttacaggtttataagaatattcccatctgcatcaacaacgccgctgactacctgtcccgataccatgcgcacccgcgcattctgtgcgacggctgcattgttcagcgcctgaccttctgcgttggcgctaaacccatcaccgctggcgatcacattgacgcgttgtcccgcttttacccgccatgcctggcgaaactgggttaactggataggttgatcgggtgatagatcgcgcaggctaatggcatcaacaagttgattgatatccagcaccgtacgcggtggcagggtatccagccgtccgcgtttcagtttgacattgccagcttccagctttcctccccgcgcaatgggcatcgcggcaaccacataatttcctgtggcctgtacattaacctgtaaatatcgtttgtcgttaccgcagcgtgccaacacattcacattgccccacaggcgggaattattgctcatcgaaagcaatggctgctcgcatggcggtagtagattgggcgctgtacgaatagaaacacgaacctcatcacttacccccgcgagttgggcgctaaaaaagttgtgcaattgcgatgtgagattgctcgccgtacttaacggactgaacagtatcgcgatgatcgccacgctacgttttattatcagcattttcgcccccagccatttctacaacgtgaattgtacctgtccgcaatgaccatcaacggcataaatagcgacccattttgcgtttattccgccgataacgcgcgcgtaaaggcatttaagctgatggcagaattttgatacctgcggaggagatatgctcgataagctcgacgccgccttacgttttcaacaagaggcgctcaatctgcgcgcccagcgtcaggaagtgctggcagcaaacatcgccaatgccgatacccctggttatcaggcgcgcgatatcgattttgccagtgaacttaaaaaagtcatgcaacgtggacgggatgcaaccagtgtggttgcactgacgatgacctcaacgcaacacattccggcgcaggcgctgacgcctcctaccgcagaactgcaataccgtattccggaccagccttcgcttgacggtaataccgtcgatatggatcgcgaacgcacccagtttgccgataacagcctgcaataccagatgagccttagcgcgttgagcgggcaaatcaaaggcatgatgaacgttttacagagcggaaattaacggatggcactgctgaatatttttgatatcgccgggtcggcgttaactgcccagtcccagcgcctgaacgtggcggccagtaatctggcgaatgctgatagcgtgaccggtcccgatggacagccatatcgggcaaaacaggtggtattccaggttaacgctgcaccaggtgctgcgacaggcggcgtaaaggttgccgatgttatagaaagtcaggccccggacaaactggtttatgaaccgggtaatccgctggcagatgcaaagggctacgtaaaaatgccgaacgttgatgttgtcggagagatggttaacaccatgtcggcgtcacgcagctatcaggccaatgttgaagtgctcaacacggtgaaaagcatgatgctgaaaacccttacgctcggtcaataaaggagaaagctatgtccattgcggtaaccaccaccgatccgacaaataccggcgtcagtaccaccagcagtagttcgctcacgggcagcaacgccgcagatttacaaagcagttttctgactttgctggtggcgcagctgaaaaaccaggacccgaccaatccaatggaaaacaacgagctgacgtcgcaattggcacaaatcagcacggtcagcgggattgaaaaactcaataccacgctcggatctatttccggacagattgataacagccagtcgttacaggccagtaacctgatcggtcacggcgtgatgatccccggcaccactgttcttgcgggaaccggcagtgaagaaggggctgtgaccacgaccacgccgtttggtgttgagctgcaacaggcggcagacaaagttacggccaccatcaccgataaaaatggcgcggttgtgcgcaccattgatattggtgaactgaccgccggagttcacagtttcacctgggacggtacgttgactgatggcagcactgcgccgaacggttcttacaatgtagcgattagcgccagtaacggtggtacacaactggttgcccagccgctgcagtttgctctggtgcagggtgtgatccgcggcaacagcggtaatacgctggatctcggcacttacggcaccaccaccctcgacgaagtacggcagataatttaagccttcacatttcaggagtcagtcatggccttttctcaagcggttagcggattaaacgctgccgccaccaacctcgatgttattggcaacaatatcgccaactccgccacctacggctttaaatcaggcacggcctcttttgccgatatgtttgccggttcgaaagtgggactgggggtaaaagttgccggtatcactcaggactttaccgatggcacgaccaccaacaccgggcgaggtctggacgttgctatcagccagaacggttttttccgtctggtagacagcaacggttcggtgttctacagccgtaacggacaatttaagctggatgaaaaccgtaacctggtgaatatgcaaggtttacagctgacgggttacccggcaaccggtacgccgccgactattcagcaaggggcgaatccgaccaatatttcgatcccgaataccctgatggcagcgaaaactaccaccacggcatcgatgcagatcaacctgaattccagtgatccgcttcctactgttacgccattcagcgccagcaatgcggatagctataacaaaaaaggttcggtgactgttttcgacagtcagggtaatgctcatgacatgagcgtctactttgtgaagaccggggataataactggcaggtctacacccaggatagcagtgatccaaacagcattgcgaagacagcgacaacactggaatttaatgctaatggcacattagtggatggtgcgatggcgaataatatcgcaaccggcgcaattaacggtgcagaacccgccacgtttagtctgagcttcctcaactccatgcagcaaaataccggcgctaacaatattgtggcaaccacccagaacggctacaaaccgggcgatctggtgagttatcaaatcaatgatgacggtacggttgtcggcaactattccaacgaacaaacccaactgctggggcagattgtactggcgaactttgccaacaacgaaggtctggcatccgaaggcgacaacgtctggtctgcgacgcaatcttctggcgtggcgctgttggggacagccgggacgggaaactttggcaccctgaccaacggtgcgctggaagcgtccaacgtcgatctcagtaaagaactggtcaatatgatcgttgcccagcgtaactatcagtctaacgcccagaccatcaaaacccaggaccagatcctcaacacgctggttaacttacgctaatcgctgacgggatagctcaatggatcacgcaatttataccgcgatgggagcagccagccagacactgaatcaacaggcggtaaccgccagtaatctggccaatgcctcaacgcccggttttcgcgcgcagttgaatgctttacgcgcggtgccagtggaagggctttctctgcccacgcgcacgttggtcacggcgtcaacgccgggcgcagatatgacgcccggcaaaatggattacacctcgcgcccgctggacgtcgcgttgcagcaggatggctggctggccgtgcagaccgctgacggcagcgaagggtatacgcgtaatggcagcattcaggttgatcccaccgggcaactgacaattcaggggcatccggtgataggcgaggctgggccaattgctgtgccggaaggggcggaaatcactattgctgccgatggcacaatctcggcgctcaatccgggcgatccggcaaatacggttgcgccagtagggcgtcttaaactggtgaaagccacgggcagcgaagtgcagcgcggtgacgacggcatttttcgtttaagcgcagaaacccaggccacgcgtgggccggtactgcaggcagatccaaccttgcgtgtgatgtcgggggttctggaaggcagtaacgtcaatgccgttgcggcaatgagcgacatgattgccagcgcgcggcgttttgaaatgcagatgaaggtgatcagcagcgtcgatgataacgcaggccgtgccaaccaactgctgtcgatgagttaattgaaaggatacatgacaagtataagttgcccgatgcgcaagtttatcgggtctatgggggcaatcgcaatttatcgattttgcgagcacttgtaggccggataaggcgtttacgccgcatccggcaagaagacatatgcactttgtcactaatccactacaggacattttatgatcagttcattatggatcgccaaaacgggccttgacgcccagcaaaccaatatggacgtcattgccaacaacctggcaaacgtcagtactaacggttttaagcgtcagcgcgcggtgtttgaagatctgctttatcaaaccattcgccagccgggggcacagtcttccgaacaaaccaccttaccctccggattacaaatcggcacgggggtacgcccggtcgccactgaacgcttacacagccagggaaacctgtcgcagaccaacaacagcaaagatgtcgcgattaaagggcagggctttttccaggtgatgttgccagatggttcatcagcctatacccgtgacggctctttccaggtggatcagaacgggcagctggtgacggctggtggttttcaggtgcagccagcgatcaccattccggcgaatgcgttaagtatcaccatcggtcgtgatggcgtggtcagcgtaacccaacaaggccaggcagctccggttcaggttgggcagctcaatctcaccacctttatgaatgacaccgggctggagagcattggcgaaaacctctacaccgaaacgcaatcctctggtgcaccgaacgaaagcacgccgggcctgaacggcgcgggactgctgtatcaagggtatgttgaaacgtctaacgtcaacgtggcggaagaactggtcaatatgattcaggtgcaacgcgcttacgaaatcaacagtaaagcggtgtccaccaccgatcagatgctgcaaaaactgacgcaactctaaggcttaaccggtggcaggttcaccggtttactgatttttgaagatgatagccatgcaaaaaaacgctgcgcatacttatgccatttccagcttgttggtgctttcactaaccggctgcgcctggataccctccacgccgctggtgcagggggcgaccagtgcacaaccggttcccggtccgacgcccgtcgccaacggttctattttccagtctgctcagccgattaactatggctatcaaccgctgtttgaagatcgtcgaccacgcaatattggcgatacgctgaccatcgtgttgcaggagaacgtcagcgccagcaaaagctcctctgcgaatgccagccgtgacggtaaaactaattttggctttgatactgtgccgcgctatttgcaggggctgtttggtaacgctcgtgccgatgtcgaagcctccggtggtaacacgttcaacggaaagggcggggccaatgccagcaatacctttagcggcacgttgacggtgacggttgaccaggtactggtcaacggcaacctgcatgtggtgggtgaaaaacagattgccattaatcagggtaccgaatttattcgcttctctggcgtggttaatccacgcactatcagcggcagcaataccgtaccgtctactcaggtggcggatgcgcgcattgaatacgtaggcaatggctacattaacgaagcgcaaaatatgggctggttgcagcgtttcttccttaacctgtcgccaatgtaagtgaggctgtggtgattaaatttctctctgcattaattcttctactggtcacgacggcggctcaggctgagcgtattcgcgatctcaccagtgttcagggggtaaggcaaaactcactgattggctatggtctggtggtggggctggatggcaccggtgaccagacaacccagacgccgtttaccacacaaacgcttaataacatgctctcacagctgggaattaccgttccgacgggcaccaatatgcagctaaaaaacgtcgctgcggtaatggtgacagcgtcacttcctccgtttggacgtcaggggcaaaccatcgatgtggtggtttcttccatgggaaatgccaaaagcttgcgtggaggtacgttgttgatgacaccgcttaagggcgttgacagtcaggtgtatgcgctggcgcagggcaatattctggttggcggcgcaggagcctccgctggcggtagcagtgttcaggttaaccaactgaacggtggacggatcaccaatggtgcggttattgaacgtgaattgcccagccagtttggcgtcgggaatacccttaatttgcaacttaacgacgaagatttcagcatggcgcagcaaatcgctgacaccatcaaccgcgtgcgtggatatggcagcgccaccgcgttagatgcgcggactattcaggtgcgcgtaccgagtggcaacagttcccaggtccgcttccttgccgatattcagaatatgcaggttaatgtcaccccgcaggacgctaaagtagtgattaactcgcgcaccggttcggtggtgatgaatcgcgaagtgaccctcgacagctgcgcggtagcgcaggggaatctctcagtaacagttaatcgtcaggccaatgtcagccagccagatacaccgtttggtggtggacagactgtggttactccacaaacgcagatcgatttacgccagagcggcggttcgctgcaaagcgtacgttccagcgccagcctcaataacgtggtgcgcgcgctcaatgcgctgggcgctacgccgatggatctgatgtccatactgcaatcaatgcaaagtgcgggatgtctgcgggcaaaactggaaatcatctgatgatcagcgacagcaaactactggcaagtgcggcctgggatgcgcaatcactcaacgaactaaaggcgaaagcgggcgaagatccggcggcaaatatccgtccggtggcccgtcaggtggaagggatgttcgtgcagatgatgttgaaaagcatgcgcgacgctttaccaaaagatggcctgttcagcagcgagcacactcgcctgtataccagtatgtatgaccagcagattgcccaacagatgacggcgggcaaaggtctggggcttgcagagatgatggttaaacagatgacgccagaacaaccattgccagaggagtccacgccagcagcaccgatgaaattcccgctcgaaactgtggtgcgttatcaaaatcaggcgctttcgcagctggtgcaaaaggccgtgccacgtaactacgatgattcgctgccgggtgacagtaaagcattcctcgcgcaactctcgctgcccgcccaactggcaagccagcaaagcggtgtgccacatcatttgatcctcgctcaggcggcactggaatctggttgggggcaacggcaaatccgccgcgaaaacggcgagccgagctataacctgtttggtgtcaaagcctctggcaactggaaagggccagttactgaaatcaccacgactgaatatgaaaacggcgaagcgaagaaagtaaaagcgaagtttcgcgtctacagctcgtatctggaagccttgtcggattacgttgggctgttaacgcgtaacccgcgctacgccgccgtgacgaccgccgcgagtgcggaacagggggcgcaggccctacaggacgcgggctatgccaccgatcctcactatgcccgcaaactcaccaacatgattcagcagatgaaatcgataagcgacaaggtgagcaaaacctacagtatgaacattgataatctgttctgaataactcaagtccggcgggtcgctgccgataatactctgtaattgaaggcttataaggaacctccatgtccagcttgattaataacgccatgagcggactgaacgcggcccaggcggcgttaaatacggcaagtaataatatctccagctataacgttgccggatatacccgccaaaccactattatggcgcaggccaatagcacgttgggcgctggcggctgggttggcaatggtgtctacgtttctggtgtgcagcgtgagtatgatgcgtttattaccaaccagttacgtgcggcgcagacgcaaagtagcggtctgactgcccgctatgagcagatgtcgaaaatcgacaatatgctctccaccagtacctcttcgctggcaacacagatgcaggatttcttcaccagcctgcaaacgctggtgagtaacgcggaagacccggcagcgcgccaggcgctgattgggaaatcagaaggattggtgaatcagtttaaaaccaccgatcaatatctgcgcgaccaggacaaacaggtcaatatcgcgataggtgccagcgttgatcagatcaacaactacgctaaacaaattgccagcctgaacgatcaaatctcgcgcctgacaggcgtgggggcaggggcgtcacctaacaatctgctggatcaacgcgatcaactggtgagcgaattaaaccagattgttggtgtagaagtcagcgttcaggatggcggcacttataacatcacgatggccaatggttactcactggttcagggaagtacggcgcggcaactggcggcagttccttccagcgctgacccttctcgtacgactgtcgcttatgttgatgggacggcaggcaatattgagatcccggagaaattactgaataccgggtcgctgggcggcattctgacattccgttctcaggatctggaccagacgcgtaatacgcttggacaactggcgctggcatttgccgaggctttcaacacccaacacaaagccggatttgatgctaacggcgatgccggtgaagatttctttgctatcggtaagcccgcggttctgcaaaacacgaaaaacaaaggtgacgttgcgatcggtgccacggtaactgatgcctccgcggtactggcgacagattacaaaatctcgttcgataataatcagtggcaggtcacccgccttgccagcaataccacttttacggtgacgccggatgccaacggtaaagtggcatttgatggtctggagttgacgtttacaggaacgcctgccgttaacgacagcttcacgctgaaaccagtaagtgacgccatcgtcaacatggatgtattaatcaccgacgaagcgaaaatagcgatggcgagcgaagaagatgcgggtgatagcgataaccgcaacggtcaggccctgctggatctgcaaagcaacagtaaaacggtgggcggtgcgaaatcctttaacgacgcttatgcctcgttagtgagtgatatcggtaataaaaccgcgacgttgaaaaccagtagcgccacgcaaggtaatgtggtgacgcagctttccaatcagcagcagtcgatttccggtgtcaatctcgatgaggagtacggaaatctgcaacgttttcagcagtattacctggcgaatgcgcaggttctgcagacggcaaacgcgatttttgatgcgctgattaacattcgctaaggggagataagatgcgtttcagtacacagatgatgtaccagcaaaacatgcgtggtatcaccaattctcaggcagaatggatgaagtacggcgaacagatgtcgacgggtaagcgagtcgttaacccttctgacgatcccattgctgcatcacaagccgtagttctctcccaggcacaggcgcaaaacagccagtacacgctggcgcgtactttcgccactcaaaaagtgtcactggaagagagtgtacttagccaggtcaccactgctatccagaatgctcaggaaaaaattgtctacgccagcaatggcaccttgagtgacgatgaccgggcctcgctggctacggatattcaggggcttcgtgaccagttgctgaatctggcaaacaccactgacggtaacgggcgctacatttttgccggttataaaacagagactgcgccgtttagcgaagagaaagggaaatacgtcggtggagcagaaagtattaaacaacaggtcgatgcttcgcgttcgatggtgatagggcacacgggtgacaaaattttcgacagtattaccagcaacgcggtagcggaaccagacggtagcgcttctgaaaccaatctttttgccatgctggatagtgccatcgcagccctgaaaacgccggtcgcggatagcgaagcggataaagaaaccgccgctgcggcgttagataaaaccaaccgcggactgaaaaactcgctgaacaatgtgctgactgttcgcgcggaattaggcacgcagctgaacgaactggagtcgctggattcattaggtagcgatcgcgctttagggcaaacgcagcagatgagcgatctggttgatgtggactggaatgcaactatttcatcttacatcatgcagcaaacggcattgcaggcatcgtataaagcatttaccgatatgcagggattgtcgctcttccagctcagcaaataatttcgctttaaaacatatcatgaaactgggtatgttttgtctgcctgctctgggatcgctggggcgggcatttttttgcctattttgcattgttggttagcaaggatgccattcgatgaattttaatatgttgattcaaagatgaaataaaaaagccctggcagttaccagggcttgattactttgagctaattattactcaacaggttgcggacgcgcaggagcggcagaggcatgatgtgttgccgtatgaccacctgcggcacctttaccttcgaaggcaaaagtagggcgctgccagtcactgtgacgcggtgcctccggaacatattccggtgctggagcgcgcgtcattggcgcggtagcgtggttatgctcaacggtgacctcaggttcgaccgcagctaccgtttcaacttctgctgcgacttcagcgactactggcgcggcaggttgagcaacaacttcaggttcagcaactacaacctcagcagtttcgacaacttcttcaatatctgccgtctcttcctgcggttcaaccaccggttctgcttgttctgcaacttcctgggctacggcaacatcagactcggtaatcacctgcggctgttcagttaccgcggcagcgatcacttcaggatgcgtcgtttcaaccacttccggttgcggttcggcaacctgaacgggggcttctacgacaccggccacttcttcaacaactggcgcgctaacaaccggttcgatagcggcggcgacagggacctcagtcaccatcggctgcacatgtacttcttcctgttcgcgctgctcttcaacctgtacatcttgcggacgtacaattggatagcggatccagactttgccagaggccagttccggagacgcgcacgctacggtcaacggcattggcgactgggttggataacgctcgtcacgatagcgacgacgacgctgaccacttacgcgcaggtgacgaggcgagcggcgagaacgacgcggcatgccaccgttgtcacggttatcagcattgttctcttcttgctgttctggtgcagtttgcgctacgactggcagcgggactttcaccagttctgtgcgtggagctggcgcttcctgaacaattggttcggcagcgacagtttcttcaaccaccggtgcgactaccgcttcttcggctacgctttgctcgtaacgcactttctgattgagctgacgctgtttacgacgcggctgaaccggacgtacacgttcttcctgttcggtttcctgaacagattgctcttcaacattcagcgccttcgcttcttgttgcgcctgacgtttatcatcattacggcggcggctacgttcacgacgcggcgcttgctgctcgtcggcggtacgcgctttttccgttacctcagcctgctgacggctctcacgcgtctcggcagtctgctgctgtgcctggcgacgattacgacggttttcttcgcgattatcgctgccttcagtacgttcactacgggtgtcgcggcgctcattacggtcacggcggttgttctgacgaggcttgcgacgatcctgttgacgttccggtttcgcttctgctttcggtgctggttgctcggtcggtttggtttcttcaccaccgctgaacagcgctttcagtgcgccgaagaagcggctcaacagcccaggttgtgcaggagctgctggtgttgccggtgcagctttcggtgctggagctacaacaggcgcggcaggttcagctggcgttggcgcaggcggcacatccggcatggcaaaggttgccagcgcaggttgttccggacgcttacgttcagcgaactcttcttcagacggcagcgccatcgcttcttcatgcagcttcggcagcatgtagcttaaggttggggtttcttcccctttacgcacgcgcagcacgtggtagtgcggggtttccatctgatcgtttggcacaattacacagcgcacaccgtcctgacgagtttcaatggcatttaccgcagaacgtttttcattcagcaggtaagaagcgattggcacaggaacaatggcgtgaacttcctgggtgttctctttcagcgcttcttcttcgatcagacgcagaatagagagcgacagcgattcgttgtcacgcacggtgccagtaccagaacaacgcggacaaacgtgatgactggattcacccagtgatgggctcaggcgctgacgggacatttccagcaggccaaagcgagaaatatggctgatttgaatacgcgcacggtcctgacgcaccgcttcacgcagacggttttctaccgcacgctggtggcgtactggcgtcatgtcgatgaagtcgataacaatcaggccgccgaggtcacgcaggcgcagctgacgagcaatctcatcggcagcttcgaggttagtgttaaacgcggtttcttcgatatcgccgccgcgggtcgcgcgtgcggagttgatgtcgatggccgttaacgcttcggtgctgtcgataacaatggaaccaccagacggcagacgaacttcacgctggaaggcggactcgatctgtgactcgatctggtagtggctgaacagcgggatctcgccggtgtacagtttgattttgctgctgaaatccgggcgacctaatgcagcgatatgctgacgtgccagttcgagcactttcgggttatcgataaggatttcgccgatgtcctgacgtaagtaatcgcggaatgcgcgaacgattacgttgctctcctgatgaatcaggaacggggccgggcggctttcagcggcttttttgatggcttcccagtgtttcagacggaagcttaaatcccattgcagcgcctcagcagatttgccgacgccagcggtgcgcacgataagccccatgccttccggcagttcaaggcttgccagtgcttcttttaattcggtacggtcgtcgccttcgatacggcgagaaatgccacccgcgcgcgggttgttcggcatcagaaccagatagctacccgccagactgataaaggtggttaatgccgcgcctttgttgccgcgctcttctttatcgatctgaacaatgacttcctgaccttcacgcaacacatctttaatgttgggacgaccatgagcactgtagttagcagggaaatattcgcgggcaatttcttttagtgggaggaaaccgtgacgttcagcgccgtaatcaacaaaagcagcttccagactcggttcaatgcgggtgattttacctttgtagatgtttgcctttttctgctcgtgccctggactttcgatatccaggtcatacagacgctgcccatctacaagggcaacgcgcaactcttcctgctgagttgcgttgattaacattcttttcatcgtaacttactcattattcttacattgacgactaagctgcgggcaaagtaacgcctttccgggtgtgaaccgatggcctcgtgtctagtcgcgtcgccaacctcacggttatcgtcagctcaaagaggcgcagagtgtcggttgcccgtttttcatgcggaaaaacagcgcaattatcaaagaaacagactgggtattactctccagaaatatttccatctaccggtaaggactgcaacccgcagcccgctaactgcctgaaagatcaatacgtcttacgccattgctgcgtggatgatcggtcgggcaaaatgggttattccgtaaaatttcttgttttaacaaggatggacacggaaacggcctcattattccactgcaagccttgttatagcaagatgacttttaccatttatcacccgcttactcacagttttttcacttcttgctggtgattggtttaataaccatcaataaagtgatcacgcagtgaagtaataaggtgcaaaagtaaatataagcatagaaaaatgagtggcgcgaatcctgttggctaattagaatcgccaaccatgaaaacagagactccatccgtaaaaattgttgctatcaccgctgacgaagcggggcaacgtatcgataactttttgcgtacccaattgaaaggcgtaccaaaaagtatgatttaccgtattttgcgtaaaggcgaagtgcgggtgaacaaaaaacgtattaagcctgaatataaactcgaagcgggtgatgaggtgcgtattccaccggttcgcgttgctgagcgggaagaagaggcggtttcgccacatctgcaaaaggtggcggcgctggcggacgtcatcttatatgaagatgatcacatcctggtgctgaataaaccttccggtacggcggtacatggcggcagtggtttaagcttcggcgttattgaaggtttgcgggcgttgcgcccggaagcgcggttccttgaactggttcatcgtcttgaccgggacacctcaggtgttttgctggtagcgaaaaaacgctcggcgttgcgttctctgcatgagcaattacgtgaaaaagggatgcaaaaagattacctggcgctggtgcgcggtcagtggcagtcgcatgtgaagagcgttcaagcaccgttactgaaaaatattctgcaaagcggcgaacgtatcgtgcgtgtgagtcaggaaggcaaaccgtcggaaacacgctttaaagtggaagaacgctatgcatttgccaccctggtgcgttgtagcccggtaacagggcgtactcaccagatccgtgtgcatacacaatatgcgggtcatccgattgcctttgacgatcgctacggtgaccgtgaatttgacaggcagctcactgaagcaggcacgggattaaatcgcctgttcctgcacgctgcagcgttgaagtttactcatccggggaccggtgaggtgatgcgtatcgaagctccgatggatgaaggtttgaagcgttgtttgcaaaagctgcgtaacgcgcgctaatacaagcatataaacctgataatgggcggttggcctgataaggcgtttacgccgcatcaggccgccagcaccgattgccggatgcgacgtaaccacatccggcgcaaaaaactatcccatcagcgggtttttcccttcccgacgtaacatctgacacagcgcgattagcggtaaaccaaccagcgtgttaggatcacgcccctctaaacgctcaaacagcgtaatgccaaatccttcactcttaaagctacccgcgcagtgcaggggatgctctttacgcacgtaattatcaatctccgcctcgctcaggtgacggaaatggacgtcaaaaggctccacttctgtttgcagatgcccattcgccgaattaaacaacgccagtccagtatagaaggtgacgatattgccgctggctttgcgtaattgcagacgggcattttcttccgttaacggtttaccggtgatttcgccatcaagaacacatacctggtctgaaccaataattaaatgatccggataacgtgacgccagagattgcgctttttcttgtgccagtcgaagcaccaactgtcgcggtgattcgtcgctgcgtggggtttcgtcgacctctggtgctgcacattcaaaagagatttgcagtttttccagaagagcgcgacgccatggcgaggtggaggctaaaataagtttaggcatatttttttccatcagatatagcgtattgatgatagccattttaaactatgcgcttcgttttgcaggttgatgtttgttatcagcactgaacgaaaataaagcagtaacccgcaatgtgtgcgaattattggcaaaaggcaaccacaggctgcctttttctttgactctatgacgttacaaagttaatatgcgcgccctatgcaaaaggtaaaattacccctgactctcgatccggttcgtacggctcaaaaacgccttgattaccagggtatctatacccctgatcaggttgagcgcgtcgccgaatccgtagtcagtgtggacagtgatgtggaatgctccatgtcgttcgctatcgataaccaacgtctcgcagtgttaaacggcgatgcgaaggtgacggtaacgctcgagtgtcagcgttgcgggaagccgtttactcatcaggtctacacaacgtattgttttagtcctgtgcgttcagacgaacaggctgaagcactgccggaagcgtatgaaccgattgaggttaacgaattcggtgaaatcgatctgcttgcaatggttgaagatgaaatcatcctcgccttgccggtagttccggtgcatgattctgaacactgtgaagtgtccgaagcggacatggtctttggtgaactgcctgaagaagcgcaaaagccaaacccatttgccgtattagccagcttaaagcgtaagtaattggtgctccccgttggatcggggataaaccgtaattgaggagtaaggtccatggccgtacaacagaataaaccaacccgttccaaacgtggcatgcgtcgttcccatgacgcgctgaccgcagtcaccagcctgtctgtagacaaaacttctggtgaaaaacacctgcgtcaccacatcactgccgacggttactaccgcggccgcaaggtcatcgctaagtaatcacgcatctgcgtgatgaagcttagtgaggattttccccaggcaactggggaaagaccaaaccgggcggcgacgataccttgacacgtctaaccctggcgttagatgtcatgggaggggattttggcccttccgtgacagtgcctgcagcattgcaggcactgaattctaattcgcaactcactcttcttttagtcggcaattccgacgccatcacgccattacttgctaaagctgactttgaacaacgttcgcgtctgcagattattcctgcgcagtcagttatcgccagtgatgcccggccttcgcaagctatccgcgccagtcgtgggagttcaatgcgcgtggccctggagctggtgaaagaaggtcgagcgcaagcctgtgtcagtgccggtaataccggggcgctgatggggctggcaaaattattactcaagcccctggaggggattgagcgtccggcgctggtgacggtattaccacatcagcaaaagggcaaaacggtggtccttgacttaggggccaacgtcgattgtgacagcacaatgctggtgcaatttgccattatgggctcagttctggctgaagaggtggtggaaattcccaatcctcgcgtggcgttgctcaatattggtgaagaagaagtaaagggtctcgacagtattcgggatgcctcagcggtgcttaaaacaatcccttctatcaattatatcggctatcttgaagccaatgagttgttaactggcaagacagatgtgctggtttgtgacggctttacaggaaatgtcacattaaagacgatggaaggtgttgtcaggatgttcctttctctgctgaaatctcagggtgaagggaaaaaacggtcgtggtggctactgttattaaagcgttggctacaaaagagcctgacgaggcgattcagtcacctcaaccccgaccagtataacggcgcctgtctgttaggattgcgcggcacggtgataaaaagtcatggtgcagccaatcagcgagcttttgcggtcgcgattgaacaggcagtgcaggcggtgcagcgacaagttcctcagcgaattgccgctcgcctggaatctgtatacccagctggttttgagctgctggacggtggcaaaagcggaactctgcggtagcaggacgctgccagcgaactcgcagtttgcaagtgacggtatataaccgaaaagtgactgagcgtacatgtatacgaagattattggtactggcagctatctgcccgaacaagtgcggacaaacgccgatttggaaaaaatggtggacacctctgacgagtggattgtcactcgtaccggtatccgcgaacgccacattgccgcgccaaacgaaaccgtttcaaccatgggctttgaagcggcgacacgcgcaattgagatggcgggcattgagaaagaccagattggcctgatcgttgtggcaacgacttctgctacgcacgctttcccgagcgcagcttgtcagattcaaagcatgttgggcattaaaggttgcccggcatttgacgttgcagcagcctgcgcaggtttcacctatgcattaagcgtagccgatcaatacgtgaaatctggggcggtgaagtatgctctggtcgtcggttccgatgtactggcgcgcacctgcgatccaaccgatcgtgggactattattatttttggcgatggcgcgggcgctgcggtgctggctgcctctgaagagccgggaatcatttccacccatctgcatgccgacggtagttatggtgaattgctgacgctgccaaacgccgaccgcgtgaatccagagaattcaattcatctgacgatggcgggcaacgaagtcttcaaggttgcggtaacggaactggcgcacatcgttgatgagacgctggcggcgaataatcttgaccgttctcaactggactggctggttccgcatcaggctaacctgcgtattatcagtgcaacggcgaaaaaactcggtatgtctatggataatgtcgtggtgacgctggatcgccacggtaatacctctgcggcctctgtcccgtgcgcgctggatgaagctgtacgcgacgggcgcattaagccggggcagttggttctgcttgaagcctttggcggtggattcacctggggctccgcgctggttcgtttctaggataaggattaaaacatgacgcaatttgcatttgtgttccctggacagggttctcaaaccgttggaatgctggctgatatggcggcgagctatccaattgtcgaagaaacgtttgctgaagcttctgcggcgctgggctacgacctgtgggcgctgacccagcaggggccagctgaagaactgaataaaacctggcaaactcagcctgcgctgttgactgcatctgttgcgctgtatcgcgtatggcagcagcagggcggtaaagcaccggcaatgatggccggtcacagcctgggggaatactccgcgctggtttgcgctggtgtgattgatttcgctgatgcggtgcgtctggttgagatgcgcggcaagttcatgcaagaagccgtaccggaaggcacgggcgctatggcggcaatcatcggtctggatgatgcgtctattgcgaaagcgtgtgaagaagctgcagaaggtcaggtcgtttctccggtaaactttaactctccgggacaggtggttattgccggtcataaagaagcggttgagcgtgctggcgctgcctgtaaagcggcgggcgcaaaacgcgcgctgccgttaccagtgagcgtaccgtctcactgtgcgctgatgaaaccagcagccgacaaactggcagtagaattagcgaaaatcacctttaacgcaccaacagttcctgttgtgaataacgttgatgtgaaatgcgaaaccaatggtgatgccatccgtgacgcactggtacgtcagttgtataacccggttcagtggacgaagtctgttgagtacatggcagcgcaaggcgtagaacatctctatgaagtcggcccgggcaaagtgcttactggcctgacgaaacgcattgtcgacaccctgaccgcctcggcgctgaacgaaccttcagcgatggcagcggcgctcgagctttaaaagaggaaaatcatgaattttgaaggaaaaatcgcactggtaaccggtgcaagccgcggaattggccgcgcaattgctgaaacgctcgcagcccgtggcgcgaaagttattggcactgcgaccagtgaaaatggcgctcaggcgatcagtgattatttaggtgccaacggcaaaggtctgatgttgaatgtgaccgacccggcatctatcgaatctgttctggaaaaaattcgcgcagaatttggtgaagtggatatcctggtcaataatgccggtatcactcgtgataacctgttaatgcgaatgaaagatgaagagtggaacgatattatcgaaaccaacctttcatctgttttccgtctgtcaaaagcggtaatgcgcgctatgatgaaaaagcgtcatggtcgtattatcactatcggttctgtggttggtaccatgggaaatggcggtcaggccaactacgctgcggcgaaagcgggcttgatcggcttcagtaaatcactggcgcgcgaagttgcgtcacgcggtattactgtaaacgttgttgctccgggctttattgaaacggacatgacacgtgcgctgagcgatgaccagcgtgcgggtatcctggcgcaggttcctgcgggtcgcctcggcggcgcacaggaaatcgccaacgcggttgcattcctggcatccgacgaagcagcttacatcacgggtgaaactttgcatgtgaacggcgggatgtacatggtctgaccgcgatttgcacaaaatgctcatgttgcgcgcagtctgcgtggttatgagtaataattagtgcaaaatgatttgcgttattggggggtaaggcctcaaaataacgtaaaatcgtggtaagacctgccgggatttagttgcaaatttttcaacattttatacactacgaaaaccatcgcgaaagcgagttttgataggaaatttaagagtatgagcactatcgaagaacgcgttaagaaaattatcggcgaacagctgggcgttaagcaggaagaagttaccaacaatgcttctttcgttgaagacctgggcgcggattctcttgacaccgttgagctggtaatggctctggaagaagagtttgatactgagattccggacgaagaagctgagaaaatcaccaccgttcaggctgccattgattacatcaacggccaccaggcgtaagtgaacatctccaggcggtcgttcgaccgcctgagttttatctttttgtcccactagaatcattttttccctccctggaggacaaacgtgtctaagcgtcgtgtagttgtgaccggactgggcatgttgtctcctgtcggcaataccgtagagtctacctggaaagctctgcttgccggtcagagtggcatcagcctaatcgaccatttcgatactagcgcctatgcaacgaaatttgctggcttagtaaaggattttaactgtgaggacattatctcgcgcaaagaacagcgcaagatggatgccttcattcaatatggaattgtcgctggcgttcaggccatgcaggattctggccttgaaataacggaagagaacgcaacccgcattggtgccgcaattggctccgggattggcggcctcggactgatcgaagaaaaccacacatctctgatgaacggtggtccacgtaagatcagcccattcttcgttccgtcaacgattgtgaacatggtggcaggtcatctgactatcatgtatggcctgcgtggcccgagcatctctatcgcgactgcctgtacttccggcgtgcacaacattggccatgctgcgcgtattatcgcgtatggcgatgctgacgtgatggttgcaggtggcgcagagaaagccagtacgccgctgggcgttggtggttttggcgcggcacgtgcattatctacccgcaatgataacccgcaagcggcgagccgcccgtgggataaagagcgtgatggtttcgtactgggcgatggtgccggtatgctggtacttgaagagtacgaacacgcgaaaaaacgcggtgcgaaaatttacgctgaactcgtcggctttggtatgagcagcgatgcttatcatatgacgtcaccgccagaaaatggcgcaggcgcagctctggcgatggcaaatgctctgcgtgatgcaggcattgaagcgagtcagattggctacgttaacgcgcacggtacttctacgccggctggcgataaagctgaagcgcaggcggtgaaaaccatcttcggtgaagctgcaagccgtgtgttggtaagctccacgaaatctatgaccggtcacctgttaggtgcggcgggtgcagtagaatctatctactccatcctggcgctgcgcgatcaggctgttccgccaaccatcaacctggataacccggatgaaggttgcgatctggatttcgtaccgcacgaagcgcgtcaggttagcggaatggaatacactctgtgtaactccttcggcttcggtggcactaatggttctttgatctttaaaaagatctaagttgtcattttccacccttataaaaggtccgcttgcgggccttttttcttagcttttattccgacttgttccgtagtgaacatgctgccacactaacaattctctgataaggagccggtatgttcttaattaacggtcataagcaggaatcgctggcagtaagcgatcgggcaacgcagtttggtgatggttgttttaccaccgccagagttatcgacggtaaagtcagtttgttatcggcgcatatccagcgactacaggatgcttgtcagcggttgatgatttcctgtgacttctggcctcagcttgaacaagagatgaaaacgctggcagcagaacagcaaaatggtgtgctgaaagtcgtgatcagtcgcggtagtggcgggcgagggtacagcacattgaacagcggaccggcaacgcggattctctccgttacggcttatcctgcacattacgaccgtttgcgtaacgaggggattacgttggcgctaagcccggtgcggctggggcgcaatcctcatcttgcaggtattaaacatctcaatcgtcttgagcaagtattgattcgctctcatcttgagcagacaaacgctgatgaggcgctggtccttgacagcgaagggtgggttacggaatgctgtgcggctaatttgttctggcggaagggcaacgtagtttatacgccgcgactggatcaggcaggtgttaacggcattatgcgacaattctgtatccgtttgctggcacaatcctcttatcagcttgtcgaagtgcaagcctctctggaagagtcgttgcaggcagatgagatggttatttgtaatgcgttaatgccagtgatgcccgtatgtgcctgtggcgatgtctccttttcgtcagcaacgttatatgaatatttagccccactttgtgagcgcccgaattagtcatgaaaaaagtgttattgataatcttgttattgctggtggtactgggtatcgccgctggtgtgggcgtctggaaggttcgccatcttgccgacagcaaattgcttatcaaagaagagacgatatttaccctgaagccagggaccggacgtctggcgctcggtgaacagctttatgccgataagatcatcaatcgtccacgggtttttcaatggctgctgcgtatcgaaccggatctttctcactttaaagccgggacttaccgctttacaccgcagatgaccgtgcgcgagatgctgaaattgctggaaagcggtaaagaagcacagttccctctgcgactggtagaagggatgcgtctgagcgattacctcaagcaattgcgtgaggccccgtatatcaagcatacgctgagcgatgataagtacgccaccgtagcgcaggcacttgaactggaaaacccggagtggattgaaggttggttctggccagacacctggatgtataccgccaataccaccgatgtcgcgttactcaagcgagcgcacaagaaaatggtgaaagcggtcgatagcgcctgggaagggcgtgcggacggtctgccttataaagataaaaaccagttggtgacgatggcatcaattatcgaaaaagaaaccgccgttgccagtgaacgcgataaggttgcctcagtatttatcaaccgtttacgcattggtatgcgcctgcagaccgacccgaccgtgatttacgggatgggagagcgttataatggcaaactttctcgtgcagacctggaaacgccgacagcgtataacacctataccattaccggtctgccgccaggtgcgatagcgacgccgggggcggattcgctgaaggctgctgcgcatccggcaaaaacgccgtatctctattttgtggccgatggtaaaggtggtcacacgtttaataccaatcttgccagtcataacaagtctgtgcaggattatctgaaagtgcttaaggaaaaaaatgcgcagtaagtatatcgtcattgaggggctggaaggcgcaggcaaaactaccgcgcgtaatgtggtggttgagacgctcgagcaactgggtatccgcgacatggttttcactcgggaacctggcggtacgcaacttgccgaaaagttaagaagcctggtgctggatatcaaatcggtaggcgatgaagtcattaccgataaagccgaagttctgatgttttatgccgcgcgcgttcaactggtagaaacggtcatcaaaccagctctggctaacggcacctgggtgattggcgatcgccacgatctctccactcaggcgtatcagggcggcggacgtggtattgaccaacatatgctggcaacactgcgtgatgctgttctcggggattttcgccccgacttaacgctctatctcgatgttaccccggaagttggcttaaaacgcgcgcgtgcgcgcggcgagctggatcgtattgagcaagaatctttcgatttctttaatcgcacccgcgcccgctatctggaactggcagcacaagataaaagcattcataccattgatgccacccagccgctggaggccgtgatggatgcaatccgcactaccgtgacccactgggtgaaggagttggacgcatgagatggtatccatggttacgacctgatttcgaaaaactggtagccagctatcaggccggaagaggtcaccatgcgctactcattcaggcgttaccgggcatgggcgatgatgctttaatctacgccctgagccgttatttactctgccaacaaccgcagggccacaaaagttgcggtcactgtcgtggatgtcagttgatgcaggctggcacgcatcccgattactacaccctggctcccgaaaaaggaaaaaatacgctgggcgttgatgcggtacgtgaggtcaccgaaaagctgaatgagcacgcacgcttaggtggtgcgaaagtcgtttgggtaaccgatgctgccttactaaccgacgccgcggctaacgcattgctgaaaacgcttgaagagccaccagcagaaacttggtttttcctggctacccgcgagcctgaacgtttactggcaacattacgtagtcgttgtcggttacattaccttgcgccgccgccggaacagtacgccgtgacctggctttcacgcgaagtgacaatgtcacaggatgcattacttgccgcattgcgcttaagcgccggttcgcctggcgcggcactggcgttgtttcagggagataactggcaggctcgtgaaacattgtgtcaggcgttggcatatagcgtgccatcgggcgactggtattcgctgctagcggcccttaatcatgaacaagctccggcgcgtttacactggctggcaacgttgctgatggatgcgctaaaacgccatcatggtgctgcgcaggtgaccaatgttgatgtgccgggcctggtcgccgaactggcaaaccatctttctccctcgcgcctgcaggctatactgggggatgtttgccacattcgtgaacagttaatgtctgttacaggcatcaaccgcgagcttctcatcaccgatcttttactgcgtattgagcattacctgcaaccgggcgttgtgctaccggttcctcatctttaagagagacatcatgtttttagtcgactcacactgccatctcgatggtctggattatgaatctttgcataaggacgtggatgacgttctggcgaaagccgccgcacgcgatgtgaaattttgtctggcagtcgccacaacattaccgggttatttacatatgcgggatctggtaggcgaacgtgacaacgtcgtattttcttgtggcgtgcatccactcaaccagaatgatccctacgatgtagaagatttacgccgtctggcggcagaagagggtgttgtagcgctgggtgaaaccgggctggattattattacacgccggaaactaaagtacgtcagcaagagtccttcatccatcatatccagattggtcgtgaactgaacaagccggttatcgtccatacccgtgacgcccgtgccgatacgctggcaattctgcgcgaagaaaaagtgacggattgcggtggcgtactacactgttttacagaggacagagaaacggcgggtaaattactggatctcggattttacatctccttttccggcattgtgaccttccgtaatgcggagcaactgcgcgatgctgcgcgttatgtccccctggatcggttactggtggaaactgactcaccttaccttgcgccggtaccgcatcgaggaaaagagaatcaacctgcgatggttcgtgacgttgcagaatacatggctgtgttgaaaggtgttgccgttgaagaactggcgcaggtaaccaccgataacttcgcccgtctgtttcacatcgacgcttcccgccttcaatccatccgttgaatgagtttttttaaagctcgtaattaatggctaaaacgagtaaagttcaccgccgaaaattgggcggtgaataaccacgtttgaaatattgtgacatatgttttgtcaaaatgtgcaacttctccaatgatctgaagttgaaacgtgatagccgtcaaacaaattggcactgaattattttactctgtgtaataaataaagggcgcttagatgccctgtacacggcgaggctctccccccttgccacgcgtgagaacgtaaaaaaagcacccatactcaggagcactctcaattatgtttaagaatgcatttgctaacctgcaaaaggtcggtaaatcgctgatgctgccggtatccgtactgcctatcgcaggtattctgctgggcgtcggttccgcgaatttcagctggctgcccgccgttgtatcgcatgttatggcagaagcaggcggttccgtctttgcaaacatgccactgatttttgcgatcggtgtcgccctcggctttaccaataacgatggcgtatccgcgctggccgcagttgttgcctatggcatcatggttaaaaccatggccgtggttgcgccactggtactgcatttacctgctgaagaaatcgcctctaaacacctggcggatactggcgtactcggagggattatctccggtgcgatcgcagcgtacatgtttaaccgtttctaccgtattaagctgcctgagtatcttggcttctttgccggtaaacgctttgtgccgatcatttctggcctggctgccatctttactggcgttgtgctgtccttcatttggccgccgattggttctgcaatccagaccttctctcagtgggctgcttaccagaacccggtagttgcgtttggcatttacggtttcatcgaacgttgcctggtaccgtttggtctgcaccacatctggaacgtacctttccagatgcagattggtgaatacaccaacgcagcaggtcaggttttccacggcgacattccgcgttatatggcgggtgacccgactgcgggtaaactgtctggtggcttcctgttcaaaatgtacggtctgccagctgccgcaattgctatctggcactctgctaaaccagaaaaccgcgcgaaagtgggcggtattatgatctccgcggcgctgacctcgttcctgaccggtatcaccgagccgatcgagttctccttcatgttcgttgcgccgatcctgtacatcatccacgcgattctggcaggcctggcattcccaatctgtattcttctggggatgcgtgacggtacgtcgttctcgcacggtctgatcgacttcatcgttctgtctggtaacagcagcaaactgtggctgttcccgatcgtcggtatcggttatgcgattgtttactacaccatcttccgcgtgctgattaaagcactggatctgaaaacgccgggtcgtgaagacgcgactgaagatgcaaaagcgacaggtaccagcgaaatggcaccggctctggttgctgcatttggtggtaaagaaaacattactaacctcgacgcatgtattacccgtctgcgcgtcagcgttgctgatgtgtctaaagtggatcaggccggcctgaagaaactgggcgcagcgggcgtagtggttgctggttctggtgttcaggcgattttcggtactaaatccgataacctgaaaaccgagatggatgagtacatccgtaaccactaatccgtaagacgttggggagactaaggcagccagatggctgccttttttacaggtgttattcagaattgatacgtgccggtaatgctgaaattacgcggtgtgccgtagacgatagaaccttccacgttggtatcgtaggttttgtcgaacaggttattgacgttcccctgtaacgagaagtttttcgtcacctggtagcgggtgaagagatccaccagcgcgtagctaccttgctcggcgcggaaggtgccatacggcgtcacggtgtcggtatacacgcgattttgccagttaacaccaccgccgaccgtcaactctggcatgacaggcaaccgatagctggtgaacattttaaccgtggtgcgtggcagattaggattaacggcgtttccttcgttatcctctgcaatatagcgcgttgcgccaaatgtcagctgccagttgtcggtaattgcgccgttgagttcaaattccacccctttactgactgtcccatccaccgctttataggcggtttcgccgttgctgccggggataggtgtaccggtggactgagcgacattatcctgctcaatacggaagatggctaacgtggtggtcagacggctattcatccagtccgatttcagacccagctcgtagttgttaccggtgattggagccagatatttgcctgaactgtcacgatcattttgcggctggaaaatagaggtatagctggcgtaggtcgaccagttgtcattgatgtcaaacaccagaccagcgtaaggcgtggtgtggtttttctccatgctgtaagtcagcgtatcaacccgccagttggtataacgtgcgccgaggatcagatgcagcggatcggcaagggtgacacgagtggcagcatataacgatttcatatgtgtggtatcgtcctgcgccaggctctgtggtgaccagtcggtttgtgggaaattgccattaaagttgtagaaactgccaatttcatccgggaagatgttggcccatgaactgaagtaacgattgttttgtttgctgtaactgccaccaaacattagattgtgctgacgaccaaacaattcataactaccgtcagcgaacaaatccagcgcatcaactttacgtttgccactgttccaaccggtgccgccgacataatcaaagccaggtccataattactgtatggcccaaccagcataccatccgctttgtttacataggcatcgacatacatcattttgctgtcaaattcgacttcagagtgggtggcattcagtgtcgcttgccaggtatcagcaaactgctgcttcagggtcataaagaccttgttgatctctttatcgttgtacgcccagtcaggtgcggtactgcgtgcgcgatcgtaactgttgctgctgccatcagtattccagcgcggtaaaccgccccaggtagggctattaacatcaatgcgctgatattcgtaaccggctgaaagcgtcgtaagatcgcctaaatcagcatcgacaatgcccgagaagaaggtcttttcactgttgtagcggtccagccatgagtcgttattctggtagccgccgacaattcgcgcgcggattttaccgtcttcggtgagtgggctttgtaaatccgccacataccgttctttgttccagctaccgtattccgccgagacatcgcctttaaattcacgactggtcgcgtgttttcgaaccatattaattgccgcagatggattacccgtcccggtcatgagtcctgtcgcgccacgcactacttctacgcgttcaaagagtgccatatcagaaagtgcgtcgcccagattccagcgcgattcaaaataggtggggataccatcaaccatatagttatcgatctggaatccgcgggaataataaagagcacgatcggaatccgcctgacttttgctgatccccagcgtgttttccatcacttcgcccagcgtttgtaactgctgatcttccatccgctgctggctaacaatagtgaccgactgaggaatatcacgttgagtcatctgcattttggtacccgcagaggtagacgttacgctgtaatcattttcgccatcatctggagctgtggctgaaccctcaacaatcaccgtttcttcagtggctggtgcagcaaaagcggcagaaggtaatagtgccagtgctatgcaaccggcaagtagtgacggtttggtgatggcttgatattgattatccctgttaaattgtgttgaaagcatttgaaatctcttggtttatgttgtcgtcaggctcatgccggaggagggtgatgagcgattatatttagtgtgcgaataattttgtttgtaaatgcaaatgagaaatatacgcattcatatttgtcatgtaaaccaaacagagaatgtcttttcagcgcattcgcaggcagaaatgggaataatggcgatatatacggcagcaaaacgattttttgcttaagaaatcgtgagttaaggttgaaagagcaggtttaactcgaccatactctatactcgcagtgtggcgcggcgtagcatggcgcaacgcatggctatttgaaaaaggaaaatgtcgtggcagaagaaactatattcagcaaaattattcgtcgtgagatcccctccgatatcgtctaccaggatgatctggtaacggcgtttcgcgatatttcgccgcaagcgccaacgcatattctgatcattccgaatatcctcattccgactgtgaacgacgtctcagctgagcatgagcaggcgctgggacgcatgatcaccgtagcggcaaaaattgctgagcaagaaggtattgccgaagatggctatcgtctgatcatgaataccaaccgccatggcggacaagaggtttaccacatccatatgcacttgttgggtggccgtccgctgggaccaatgctggcgcataaaggtctgtaacgatgagaaaaggatgctttgggctggtgtctctggtgttgttactgctggtgggctgtcgttcacatccggaaattccggtgaatgatgagcaatcgctggtgatggagtcatctttattggctgcgggcatcagtgcagaaaagcccttcctttcgacgtctgatattcaaccttcagcatcctcaacgctttataacgaaaggcaagaacccgttaccgttcattatcgtttttactggtatgacgccagagggctggagatgcatcctctggaaaggccacgcagcgttaccattcccgcacattcggcggtaacgctgtacggcagcgccaattttctgggggcgcacaaagtcagactttatctatatttgtaaggggtgaatcttgatgacaaaaatgagtcgctacgccttgattaccgcgctggcgatgtttctcgccgggtgtgtggggcaacgtgaacctgcaccggtagaagaagtgaaaccagcgccggaacaaccagccgagccacaacagcctgtccccacagtgccctcggtgccgacgatcccgcagcagccaggcccaattgagcacgaagatcaaactgcaccgcctgcgccgcatattcgccattatgactggaatggcgcaatgcagccgatggtcagtaagatgcttggggctgacggggtgactgcgggtagcgtcctgctggttgatagcgttaacaaccgtactaacggttcgctgaatgccgcagaagcgaccgaaacgctgcgaaatgcgctggctaataacgggaaatttaccctggtttccgcccagcaactgtcgatggcgaagcaacagttaggtttgtcgccgcaggacagtttaggcacccgtagtaaagccataggcattgcccgcaatgtcggcgctcattacgtgctgtactccagcgcctctggcaacgttaacgctccgaccctacaaatgcagctgatgctggtgcagacgggcgaaattatctggtcaggtaaaggtgccgtttcgcagcaataatcccatcacgcgcgacgaattgctgtcgcgctttttcccgcagtatcatcccgtcacgacgtttaatagtgggcttagtggcgggagttttctcattgaacatcagggccagcgttttgttgtgcgtcagccgcacgatcctgatgcgccgcagtccgcgttcttgcgccagtatcgggctttatcacaactacccgcatgcattgcaccgaagccgcatttatatctccgtgactggatggtagtcgactatctgcccggcgcggtaaaaacgtatttgccggataccaacgaactggcaggcttgctgtattatctacatcaacaaccacgttttggctggcgaataacgctgttgccgttactggaactgtactggcagcaaagcgatccggcgcggcggacagtgggttggctgcgaatgttaaaacgtctgcgcaaagcgcgggaaccacggcctttacgcttaagtccattgcatatggatgtccacgccggaaatttagtgcatagcgcgtcagggttaaaactcatcgactgggagtatgccggagatggtgatatcgcgctggaactggcggcggtgtgggtggaaaatactgaacagcaccggcaattggtcaatgactatgccactcgcgcgaagatttatccggcgcaattatggcgtcaggtcaggcgatggtttccctggctgctgatgctcaaagcagggtggtttgagtaccgctggcgacaaaccggcgatcaacaatttatcaggctggccgatgacacctggcggcagctattaataaaacaataaggagagcagtgtgggtccagtaatgttggatgtcgaaggttacgaactggacgcggaagagcgtgaaatactggcgcatccgctggtgggagggctgattctctttacgcgtaactatcatgatcctgcccagttacgtgaactggtgcgccagatccgcgcagcttcgcgcaatcgtctggtggtggcggttgatcaggaaggtggacgcgtgcagcgttttcgtgaaggttttacccgcttgccagcggcgcaatcattcgctgcgctgtcaggaatggaagagggtggcaaactggcgcaggaggcaggttggttgatggccagcgaaatgatcgctatggatattgatatcagctttgcgcctgtgctggatgtcgggcatatcagcgcggcgattggcgagcgttcttatcatgccgatccacaaaaagccctggcaattgccagccggtttattgatggtatgcatgaagccggaatgaaaacgaccgggaaacacttcccaggacacggtgcagtaacggcagactcacacaaagaaacaccgtgcgatccacgtccacaagcggagattcgcgctaaagatatgtcggtcttcagttccttaatccgcgaaaataaactcgacgccattatgcctgcgcatgtgatctacagtgatgttgatccgcgtccggcgagcggttctccctactggctgaaaaccgttttgcgtcaggaactgggttttgacggcgtgattttctctgacgatttatcgatggaaggtgccgcgattatgggcagttatgccgaacgcgggcaggcttcactggatgcgggttgcgatatgatcctggtctgcaataatcgtaaaggggccgtcagcgtgttagataatctgtcaccgatcaaggcagaacgtgttacacgtttgtatcataaaggttcattttcgcgacaggaactgatggactcggctcgctggaaagcgatcagcacccgtctgaatcagttacatgaacgctggcaggaagagaaagcaggtcactaaccctggcttatgtgaggaagcgatgattatctatttacacggttttgactctaacagtccgggtaaccacgagaaagtcttacaattgcagtttattgacccggatgtacgcttgataagctacagtacgcggcatccgaaacatgatatgcagcatctgcttaaagaagtggacaaaatgttgcaactgaacgttgacgagcgtccgctaatttgcggcgttggcttgggcggatactgggcggaacggattggttttctttgcgacatccgccaggtgatcttcaaccctaatttgttcccttatgagaacatggaaggcaagattgatcgcccggaagagtatgccgatattgccactaagtgtgtgaccaacttccgtgagaagaatcgcgatcgttgcctggtgattttgtcgcgtaatgatgaagcgcttaacagccagcggacatctgaagagttgcatcattattacgagattgtctgggacgaagagcagacgcacaaattcaagaatatctccccgcatttacagcgcattaaagcgttcaaaaccctcgggtaaatgccctcgtcgcatcaggtaaccttgccggtacctgatgcgctccgaattctgtgggtcggataaggcgtccacgccgcatccgacagtcgagcatcaatgcctgatgcgcttcttatcaggcctaccgaacgccctgcatacacccctcactctatatcactctcacaaattcgctcaaataataaacaataaactctgttttttgatctcacccggtaaagtcgcctatcttttcagcaacaaaacttgattaacatcaattttggtatgaccaatgcaccattcatgttattctcaatagcgaagaacattttcattgctgtaacctgttgttaattaagagctatgttaataaccattaattaacaattggttaataaatttaagggggtcacgttgactacgccattgaaaaagattgtgattgtcggcggcggtgctggtgggctggaaatggcaacacagctggggcataagctgggacgcaagaaaaaagccaaaattacgctggtcgatcgtaaccacagccacctgtggaaaccgctgctgcacgaagtggcgactggctcgcttgatgaaggcgtcgatgcgttgagctatctggcccatgcgcgcaatcatggtttccagttccagctgggttccgtcattgatattgatcgtgaagcgaaaacaatcactattgcagaactgcgcgacgagaaaggtgaactgctggttccggaacgtaaaatcgcctatgacaccctggtaatggcgctgggtagcacctctaacgatttcaatacgccaggtgtcaaagagaactgcattttcctcgataacccgcaccaggcgcgtcgcttccaccaggagatgctgaatttgttcctgaaatactccgccaacctgggcgcgaatggcaaagtgaacattgcgattgtcggcggcggcgcgacgggtgtagaactctccgctgaattgcacaacgcggtcaagcaactgcacagctacggttacaaaggcctgaccaacgaagccctgaacgtaacgctggtagaagcgggagaacgtattttgcctgcgttaccgccacgtatctctgctgcggcccacaacgagctaacgaaacttggcgttcgcgtgctgacgcaaaccatggtcaccagtgctgatgaaggcggcctgcacactaaagatggcgaatatattgaggctgatctgatggtatgggcagccgggatcaaagcgccagacttcctgaaagatatcggtggtcttgaaactaaccgtatcaaccagctggtggtggaaccgacgctgcaaaccacccgcgatccagacatttacgctattggcgactgcgcgtcatgcccgcgtccggaagggggctttgttccgccgcgtgctcaggctgcacaccagatggcgacttgcgcaatgaacaacattctggcgcagatgaacggtaagccgctgaaaaattatcagtataaagatcatggttcgctggtatcgctgtcgaacttctccaccgtcggtagcctgatgggtaacctgacgcgcggctcaatgatgattgaaggacgaattgcgcgctttgtatatatctcgctataccgaatgcatcagattgcgctgcatggttactttaaaaccggattaatgatgctggtggggagtattaaccgcgttatccgtccgcgtttgaagttgcattaatcgacgtacactggcggatgtggcataaacgcctcatccgcccttgaggaacagcgcgatcggcagccgcgttgtatcaggcatcctttcagactcctccgaatccttaagtatttccagccattcccgcgcttttcatcttctgtctgatagctgcttttctccttcgcttgcatgattggcataactgcaaagaaggaggtgttcccgtgaataaatcaatgttggcgggtatcgggattggtgtcgcagctgcgctgggcgtagcggcagtggccagtctgaacgtgtttgaacggggcccgcaatacgctcaggttgtttctgcaaccccaatcaaggaaacggttaaaacaccgcgtcaggagtgtcgcaacgtcacagtgacccatcgtcgaccggtgcaggatgaaaatcgcattaccgggtcggtgctcggcgctgttgctggcggcgtgatagggcatcagtttggtggtggtcgcggtaaagatgtcgccactgttgtgggggcgctgggtggtggatatgccggtaaccagatccagggctctctccaggaaagcgatacttacacgactacgcaacagcgttgtaaaacggtgtatgacaagtcagaaaaaatgctcggttatgatgtgacctataagattggcgatcagcagggcaaaatccgcatggaccgcgatccgggtacgcagatcccgctagatagcaacgggcaactgattttgaataacaaagtataacaaggctgtactctgcaatttggcccctcattcgctcaggctgaggggctttttttgcgacttatttcaccagttcgggccataaacgcaaagtcgttccggcaatctgcatcagtttttccagcgatgcaccttcgcgtgcgctgatcgacatcccctgaataatacaattaaggaattctgccagatgtgtcacgtcacagtggggcgggatttccccgcgcgcttgtcgttgacataaaaactgctgcaaagtgcgctcttgcatcgcatggcgtgatttcaacgtattggcgatatctcctgaatctggggagagggtggtgcagttgttgatcatgaagcagcctgccggggtgtctttgctggtaaagcagttggcgatggcagcaaaatagtcagccagcgcagactccacgcttttctcttcacaaaacagctgtgcttcatgcttagcggcaaaacgatcgatatagcggtcgagaacggcacgaaataacccctctttgttggtaaattccgcgtatagcgtgggcgctttggctccggtcgcttcgacgaggtccgcaagagaagtcgcttcataaccgtgttgccagaacaatttcatggccttatcaagcgcggcatccctgtcgaacacttttgggcggccacggcttttttttacacattgtgttgagtcagttgccatgatgccgttgtacctggtgactgtgaatgaaaggttattataaaaataatcacctccgttcaccagtccagatcccataaaaataattgctttctatttaactgaaatttaaagatttttaaattaattaatgattgttataaaaaatatcttgtatgtgatccagatcacatctatcatttagttatcgatcgttaagtaattgcttgcgacgtcattcatctgcataaggccactattatgaaaaacgtaaaaaccctcatcgctgcggcgattttaagctccatgtcatttgccagctttgcggctgtcgaagttcagtcaacgccagaaggccaacaaaaagtcggtacaatcagtgctaacgcggggacaaatctgggatcgctggaagagcagctggcgcaaaaagcggatgagatgggcgcaaaatctttccgtattacttctgtaaccggtccgaataccctccatggaacagcagtaatttataaataagcattaaccctcattaatgcctgctactgctgattttttccccgcgacatgccgtgtcgcggggatttttttatccgggctttacagcgtttgtgggctcacttgatgacggcggacatccaccggcatcccggaacggacatccatcacatgttgcatcacttcagcgtcagtttgtgctgcatctttaaatgattgcattgcgctattcagcgtaattggcagcagctgcggatcgtcatcaatcttctctgacagcggctgatgtacttcaaccagacgcgcaccgtttggttcggcagagacttttatcggagtgttgatgatattcactttggtgcctggggtgacctggctaaagagtgttttgatatcgtcatcccgcagacgaatacagccagaacttacccgcatgccaatgccgaaatcggcgttcgtaccatgaagcaaataaacgccgccataggccgccagacgaatcgcatgatggcccattgggttatccagtccagccggcactaccgcaggcaactcaattccctgtgctttataacgggcgcggatgtttgccgttggcgtccaggttgggtttgcacgtttgtctgaaacggtggtcaccattgtcggtgtcagcgtgtcaccacctaactgaccaatacctattggatacacggttaccgaatttttacccggcgggtagtaatagagacgcagctccgcaatgttgatcacaatgccttcgcgcggcgcatctggaagtagggtttgcaacgggatcgttaacacgctgcccgcgcgcggtacgtaaggatcaacgccggggttagcctgtaacagagcgagaaagccgacgttgtattttttggcgatggcttccagagaaccaccgtcattttccaccacatgaaatttgttttcgccaaccagacgactgcccgctggcggcagcggccaggtgttggcttttgccggtagcgccagcgccacggcagcggcgaacgtaaaaaacgttagccagcgagaaaaacgcgttttgatcatcaccaaaaatccataataaatataaggttattgtaataaacagataagcctgaattatggatggtgacagtgtcggatagtgcagggaagtgcaaagaatttgtaaatgttgcagatgggggcgcagaaacgcccccgatttaccattaagcgatcgcgttctcttccagttcacgcataaactggcgtacccattcgatacgcgttttccgctcactcaaatcctgaataaatttcaggcgcgtcggaccatcaaggcggtaatgctgcggctgtttttgcagcaaaccaatcaaccaggccggattaacgtgattcttctcggcaaattcgatcaccccgcctttctcattaccttccagcttcctgatccccagtttctgcgcttgctggcgcagacgggcaatatccagcagggtacgcgccggatctggcagcaggccgaagcgatcgataagctcgactttgatctcttccagttcgttttccgttttggcgctggcaatacgtttgtagaacgacagacgcgtgttcacgtcagggatgaaatcatctggcaatagcgacggcatccgcagctcgacttctgtttgctggctggtgagatcttccagcgacggctcgcgtccggctttcagtgcatcgacggcgttttccagcaactccatatacagcgagaaaccgatggtttccattgagccgctttgttcttcgccaagcagttcacccgcgccgcgaatctccagatcgtgcgttgccagcgcaaaacctgccccgagatcttccagcgaggcaattgcttcaagacgtttttgtgcatcggtagtcatcgcttttggatgcggtgtcagcaaccatgcatatgcctgatgatgcgaacgtccgacgcgaccgcgtaactggtgcagctgcgccagaccgaagtgatccgcgcgttcaatgataatagtgttggctgtcgggatgtcgatcccggtttcgataatggttgtacaaaccagcacgttgaaacgttgatgatggaaatcattcatcacccgttccagttcgcgctcgcgcatctgcccgtgaccgatggcgatccgcgcttctggcaccagttctgccagccgttcggcggctttctgaatgttttccacatcattgtagagataataaacctgtcctccgcgcaaaatttcacgcaggatcgcctcccggaccaccatgctgtcatactcacggacaaaggttttaactgccagacgacgggcgggcggcgtggcgataatcgacaggtcacgcattccgctcattgccatattcagcgtacgtgggatcggcgttgcagtaagcgtcagaatatccacgttcgcgcgcatcgctttaatgcgctctttatgacgcaccccgaagcggtgttcttcatcgacaatcagcaggcctaaatctttaaacttgacgtcactttgcagcagtttgtgcgtaccgatcagaatatcgattttcccttccgccacttccgcaaggatttgcgtctgctctttggcgctgcggaaacgggagatcatttcgatacgtaccggccagttggcgaaacggtcgcggaagttgtcgtaatgctgctgcgcgagaagggtggtaggcaccagcaccgccacctgcttgtggttatctactgccaggaaagctgcgcgcatcgccacttctgttttaccaaagccaacatcgccgcacaccagacgatccattgccagcggctgacacatgtcgctaagtaccgcattaatggcctgcgcctgatccggcgtggtttcaaacgggaagctgtcgcagaacaactgatactgctcacgatcgtgtttaaacgcgaagccctctttggcggcgcgttgcgcgtagatatccagcaattccgccgccacatcacgcactttttccgccgctttctgccgcgcgcgtgaccacgcatcgccgccaagtttatgcagcggggcgttttcttccgcgccacctgcgtaacggctaatcagatgcagtgacgacaccggaacatacagtttggcgtcgttggcataggtgagcatcagatactcgccagtaatgccacccgcttccagcgtggtcattccggcataacgaccgacgccgtgctccagatggaccaccggctgaccaatatgcagttccgcaaggttacggatcagtgtatcggggttgatggtgcggcgagaatcctgacgacgacgggcaacgcgttcaccgagcagatcgctttcgcaaatcagcgccagattacgcaccgtatcgacaaaaccatgttcggcagcgccaatcatcagataacgcccacggtcgctggcttcatcaagacgcataatgcgttgcggagcaattttaattcgtgcgagcagttcacccagcgcttcacggcgaccttcactttctaccgagaacaccaccggaccgtcgaaagtctcgaggaacttacgcagcgcatccagcggcgctttttgttgtgcctgaacggccaggtctggcagtttctggaaacctaaattggcattcgcggcttttgtcggtaaatgttcagtttttagctgcacccggggccagtttttcagctctgagaagagctcgtccacccgcagccagagcgattgtggtggcaacagcgggcgcatcggatcgacgccgcgattctcaaaacgcgccagcgtgtcagcctggaaacgttcggcactggtttccagatcgccagtattcacgagcaaggtattggcagggaaataactgaacagcggcggcagtggttcgctgaagaacaatggctgccagtactcgatcccggcaggtaatgtgcctttactcacttgctggtaaatatgttctggatcgcgcttcacttcgaaggtatcgcgccactggctgcggaacagttcaattgccgctttatcggtcggaaattcgtgcgcgggcagcagattgatcgcttctacttcctccagcgtgcgctggctgtcgacgtcaaacacccgcaggctgtcgatttcatcatcaaagaaatcaagacgataaggcagctcactccccatcgggaagagatccagcaacgcgccgcgcgtggcgtattcgccgtgctccatcacctggtcaacatggcgataaccggcgctgtccagttgggttcgtaatgcatctcgtgacaggcgctgaccttttttcatcaccagcgcatgaccgtggagaaaactgtgtgggcaaacgcgctgcataagcgtattcaccggaacaatcagtacgccacgctgcatcgtcggtagctggtaaagggtggaaaggcgcgaggagataatgtcctgatgaggcgaaaaactgtcgtagggaagagtttcccagtccgccagattcatcaccatttgatcggtaaactggctgatttcatcatgcaaacgcagagcattttgcatatctggtgcaatgagtaccaccggaccggcgtgacgttcggcaatttccgctaccagcgttgcacaggctgcgccggttaactcgcccagcagacgctgctcacccgctttgacgggcagcgtataacgatattgttcaggcataacggttgtcagattctcgttaggatatgcctcaacatatgggggcatatctctgataagcaatgctgttcattatccgtaatcgacatggtttagcaaattgaatcgccccggctggggcgatggcttagcgggagtaactgacggcagcgggcagtgaaggcggggagaacaacagatcgctgaatgcacgctgtgaaagttttcttaccagcaagcccgcaacagtacagatgaacaaactgacaaagggataaaccagcaggagtgtcagttcgacttgcggcgaccagcgtgctgcgttcatttgcgcaagcagagttaagctgaatatttcaaccagaatgcgatgggtggtgtagatagcaatggtgttggagccaatcacattcagcaggctggtggagcgcataccgaatcgttgctcgtattgataaaacagcttcatgatcaccacaatcgataccagcgacaacagcagcgagatagtaaacaaccaggcaccgaccgccagaacggtaagcaaagaagccatcagcagatggcggcgcaacggcacctctttaacacaggtcattattgttgcgccaaaccatgcgccaaggctgtaataaggcaaattgcggatcacactgttcattccccaccacggcgtgggaacgaaattaaccgccacactcagcagtacaaacaaggcgaatagtggcagcgccagacggctaaaaattttacataccacgaaatagacaattaacgcatacagataccacaagctggtgctggcggtgatcatcccgtgcaggaactcaccggtggaatcggcataagcggcattggaggcattgcttaaatcgcgctcaggtgccagccactggttcagcgcacttaacgccagccactgcaccacgccccaaagcgccagcacccagaagatgttccagatccgtttatcgagacaatttccccacggtacgctgtcgatatagcggcgaatcaaatagccggatataaagaaaaaaaccggcatacgaaagggggcaaggtaaagattgaaatagatccagcatttgctcaggacttccgataacggatgctgaaaagtggtcagatgcggataaaaggtaatgaccgagtgataaatcaccaccagacaaatacataaccctttgatctggttaatccatagctctttttgtttcatcaggacaacacgctcttttttaatttacatgcggttgatcctgcgggttatgacccgaggtgtaatgggtatctgtctgtattggatgatttttcagattaagatcaggcggcaagattgatgataaaacatggcaatttagccgattgatttacgggggcttttcagattagccctgacgatcacttacagttcagacgtttacccatcttgctttcgcttatatactcgtgtctttgctacagcaaccagacggatttcatgtaccaacctgtcgctctatttattggcctgcgttacatgcgtgggcgtgcagcggatcgcttcggtcgtttcgtctcctggctttctaccatcggcattaccctcggggtgatggcgctggtcacagtattgtcagtgatgaacggctttgagcgcgagctgcaaaacaacatccttggcctgatgccacaggcaattctctcttctgagcatggctctcttaacccgcagcaactcccagaaacggcagtcaaactggacggcgttaatcgcgtcgcacctattactaccggtgatgtggtactgcaaagcgcgcgcagcgtggcggtcggggtgatgctcggtatcgacccggcgcaaaaagatccacttacaccgtatctggtcaatgtgaaacaaactgacctcgagccggggaaatataatgtcatcctcggcgaacaacttgcctcacagctaggcgttaatcgcggtgatcaaatccgcgtgatggtaccatctgccagccagttcacgccgatggggcgtattccaagccagcgcctgttcaatgtgattggcactttcgccgccaacagtgaagtcgatggctatgaaatgctggtgaatattgaggatgcctcgcgtctgatgcgttatccggcaggcaatattaccggctggcgtttgtggctggatgagccgctgaaagtcgactcattaagtcagcaaaaactgcctgaaggcagcaaatggcaggactggcgtgatcgtaaaggcgagttgttccaggccgtacgcatggaaaaaaatatgatgggtttactgctgagcctgattgtcgccgttgcggcgtttaacattattacctcactagggctgatggtaatggagaagcagggcgaagtagcgatcctgcaaacgcaaggcttaactccgcgacaaatcatgatggtctttatggtgcaaggggccagcgccgggattatcggtgcgatcctcggagcggcgcttggcgccctgcttgccagccagttaaataatctgatgccgataatcggcgtcctgcttgatggcgcggcgctgccggtggctatcgaacctttacaggtcattgttattgcgctggtggcgatggctatcgcgctgctgtctacgctttacccttcatggcgcgctgccgccactcaacccgctgaggctttacgttatgaataagatcctgttgcaatgcgacaacctgtgcaaacgctatcaggaaggcagtgtgcaaaccgatgtgctgcacaatgtcagtttcagcgtcggcgaaggtgaaatgatggcgatcgtcggtagctctggttccggtaaaagtaccttgctgcacctgctgggcgggctggatacgccaacctccggcgatgtgatttttaatggtcagccaatgagcaaactgtcgtcggcagcgaaagctgaactgcgcaaccagaagctgggctttatttatcagtttcaccacctgctgccggattttaccgccctggaaaacgtggctatgccgctgctgattggcaagaaaaagcccgctgaaatcaacagccgtgcacttgagatgttaaaagcggtggggctggatcatcgtgcgaatcaccgcccatctgaactttctggcggcgaacgccagcgtgtggcgattgcccgtgcgctggtgaataacccgcgcctggtactggcggatgaacctaccggtaacctcgatgcgcgtaacgccgacagcatcttccagttgcttggggaattgaatcgcttgcagggcaccgccttcctggtggttactcacgacctgcaactggcgaaacgtatgagccgccagttagaaatgcgtgatggtcgtctgacggcggaactgagcctgatgggggcggagtaatggcgatgcctttatcgttattaattggcctgcgttttagtcgcggacggcggcgcggcggcatggtgtcgctgatctccgttatttctaccattggcattgccctcggcgtggcggtattgatcgtcggcttaagcgcgatgaacggctttgaacgcgaactgaacaaccgtattctggcggtggtgccgcatggtgaaatcgaggcggtggatcagccgtggactaactggcaggaagcactggatcacgtgcaaaaagtgccgggtattgccgctgccgcgccgtatatcaatttcaccgggctggtggaaagtggcgcgaatcttcgcgcaatccaggtgaagggcgttaacccgcaacaggaacagcgtctgagcgcattaccctcgtttgtccagggcgatgcgtggcgcaattttaaagcgggcgaacagcaaattatcatcggcaaaggcgtggcggatgcgctgaaagtgaagcagggggattgggtgtcgattatgatccccaactcgaatcccgagcataaactgatgcagccaaaacgtgtgcgtttgcacgttgccggtattttgcagttgagtggtcaactcgatcacagttttgccatgatcccgctggcggatgcccaacaatatcttgatatgggttccagcgtgtcaggtattgcccttaaaatgacggatgttttcaacgccaataagctggtacgcgatgcgggtgaagtgaccaacagctatgtttatattaaaagctggattggtacttacggctatatgtatcgcgatatccaaatgatccgcgccattatgtatctggcgatggtactggtgattggcgtggcctgtttcaacatcgtctccaccttagtgatggcggtgaaagacaagagtggcgatatcgcagtattaagaacgctgggggcgaaagatggtttaattcgcgccatctttgtctggtatggattgctggcagggctgttcggcagcctgtgtggtgtgattatcggcgtagtggtttcactgcaacttaccccgattattgagtggattgaaaagttgatcggtcatcagttcctctccagcgatatctattttattgatttcctgccatcggaattgcactggctggacgtcttctacgtactggtcacagcattgttgctgagtcttttggcaagttggtatccggcgcggcgcgccagtaatattgaccctgcgcgagtccttagcggccagtaaaggcagtacattaaaacaaggagcggcaatgtattacgggtttgatattggtggaacaaaaattgcgcttggcgtgtttgatagcggtcggcagttgcagtgggaaaagcgggtgccgacaccgcgtgacagctatgacgcatttttagatgcagtgtgtgagctggtagctgaagctgaccaacgttttggctgtaaaggttctgtcggcatcggtattccgggaatgccggaaacagaagatggtacgctgtatgccgccaatgtccccgctgccagcggtaaaccgctgcgtgccgacctgagcgcacgtcttgatcgcgatgtacgccttgataacgatgccaactgttttgccctttcagaagcctgggatgatgaatttactcaatatccactggtgatggggttgattctcggcaccggtgttggcggcgggctgattttcaacggcaaaccgattaccggtaaaagctacattaccggcgagtttggccatatgcgtctgccggttgatgcgttaaccatgatggggttggatttcccgttacgccgctgcggctgtggtcagcatggctgcattgaaaattatctgtctggtcgcggttttgcgtggctgtatcaacactattatcatcaaccgttgcaggctcccgaaattattgcgctttatgatcaaggcgatgagcaggcaagggcgcacgttgagcgttatctggatttattagcggtttgtctgggaaatatcctgaccatcgttgaccctgacctggtcgtcattggtggtggcttatcgaatttcccggcaatcacaacgcaactggcggacaggctgcctcgtcatctcttacctgtagctcgtgttccgcgcattgaacgcgcgcgccacggtgatgcgggaggaatgcgtggtgcggccttcctacatctaaccgattaaacaacagaggttgctatgctgtcgcgtcggggtcatcggttaagtcgttttcgtaaaaataaacgccgcctgcgcgagcgtttgcgtcagcgtatttttttcagagataaagtggtgccggaagcaatggaaaaaccaagagtactcgtactgacaggggcaggaatttctgcggaatcaggtattcgtacctttcgcgccgcagatggcctgtgggaagaacatcgggttgaagatgtggcaacgccggaaggtttcgatcgcgatcctgaactggtgcaagcgttttataacgcccgtcgtcgacagctgcagcagccagaaattcagcctaacgccgcgcatcttgcgctggctaaactgcaagacgccctcggcgatcgctttttgctggtgacgcagaatatcgacaacctgcatgaacgcgcaggtaataccaatgtgattcatatgcatggggaactgctgaaagtgcgttgttcacaaagtggtcaggttctcgactggacaggagacgttaccccagaagataaatgccattgttgccagtttccggcacccttgcgcccgcacgtagtgtggtttggcgaaatgccactcggcatggatgaaatttatatggcgttgtcgatggccgatattttcattgccattggcacatccgggcatgtttatccggcggctgggtttgttcacgaagcgaaactgcatggcgcgcacaccgtggaactgaatcttgaaccgagtcaggttggtaatgaatttgccgagaaatattacggcccggcaagccaggtggtgcctgagtttgttgaaaagttgctgaagggattaaaagcgggaagcattgcctgatgcactacgcttatcaggcctgcaaggggacgcaattaattgaatttgcgggttttgtgggccggataaggcgttcgcgccccatccggaataatacacgcgcacttttccggcctcttttatcgtttactcgtcaataacaatgcggcaataaacgtacagacaccaattagccctgcccagagtggcgatattctggtaatcgcaaagctattatcgatatacaaacataaagcctgataacccatattggcaatagtcatcgccactgcaaattttaacgcataaataaaacgagtcgtgtagtaaaagatcctggaaaataagataaacgtcgcagcccaggcgataaaacctaatgtgttggtgctgccggggggagcattttcatgctgttgtcctggatgcggataatacgttagtggcggcgtcgattgttttaatatctgtgcttgtagaacagccaatgcattattgattccctgataccagagatctgcatttaaataagccagcgtgtgattttctatcagaaggccgagatgtttatcgtccagaccactttcaacctggccgttggtgatcataattaaccgtggttcgcgggtagtaaatagtaacagaacacttccttttacatcactcaatgaagatgacgcatgcgccagcatcgctttaccattttgtctgagactggcttcattattaatgtcgggtaaaaccacaataaacggtgcaattcccgtttgttggcgaaaaagctcggctttatgcgcgatctcttcagcatctggtacagtaccggtaacgtccgtaaaaagtgtcttcattattggaattaatggcttgctggctgctgtcagaggcaggagtatcagtaaactgagcagtataatgaattttttcatgggcgggacttccgtttcctgcgtgattttttagaggagggcatacttattaataaaccgacggcgataaaaataacgcccataatgccgataaacccccatttaaaaaaattaacccacgggttatttatctcagccttttcaggatgcccgggagaataataaacattaactttatcgccttcgctgtcttcataaaaatcgctgccgatactcgaattgaaaattagcgtgtaatctggcgtcggtcgaaaggcaacgacgggataccacgaaccatctttacccgtgcgatgagaatgactggagtgccagacggtatcaacaatgacgccttcggtatgaatcgcgtctttgctataggtgaactggttataaaagacaacaacagaaatgaggatcagtaccagaccgataccgaggaatatacgaaagaaaactttactgtcctgactcattagccacatccttgctaactaaaaaacgggcggtaataccaccgcccgcttgctgaattaacgtcctgctttcagcttctgataatactcttcataaatgctgctggctgcgccaacgtcattctgccattcgccatttttaatggtttcagcatccgggtagagtgttttatcgttcgccacttctggacttaacagcttacgcgccgcaaggtttggcgttggataaccgatagtttcagcaacctgttttgccacatccgggcgcagcaggaagttgatcaatttcagcgcgccttctttgtttttggcatttgccgggatcgccaggctgtccatccagaaaatgccgccttctttcggccacaccacgtcaattggcgtacccgcctggcgtgcaacgaaagcagaaccgttccagatcatgccgaggttaacttcgccttccatgtacgggttcgccgggttatcggagttaaaggctgccacgtttggcatcagttttttcagctcgttatatgcagcttcaatctctttcggatcggtggtgttaccggagtagcccagcttacgcagcgccatctggaacacttcacgggcatcgtcggtcaacagcaggctgcctttgtactctggcttccacagatcggcccagctggtgacagatttcggatccaccgcatcaccgttaacaccaatcgccgtcgcaccccagatatacggaatggagtagtcgttattcgggtcaaaaggcttgttgagcatgtctggatcgagattgctgaagtttgttaacttcgacttgtcgatcttctggatcatcccttctttacgcattttatcaacgtaataggttgaaggaaccaccagatcataggcaccgtctttgtatgttttcagcttggcgtacatggtttcgttcgactcgtaagtcgaatagataaccttaataccggtttctttggtgaactgttcaagcagtcctggcggcacgtactcggtccagttgtagaaatacagcgtgttgttgtcatcggcgtgagcggcgctcatgcccagtgccagagcacccgccgcgagcaggtggcgtgaccattttttcatttaacgtcccctgtgttacctttcgttttatcacgagcaataagctggctggcaataaccatcaccagcgacagcaccagtaatatggttgccagcgcgttaacttccggcgatacgccgactttgaccatcgaataaatttttaacggcagaatttcataacttggtccggtgacgaacgaagaaactaccacatcgtccatcgacagggtaaagcttaacacccagcccgccgccaccgctggcattgccagtggcagaatgatttttcgcagaatggtaaattcgctggcaccgagatctttcgccgcttccagcattcgcacgtcaaaacctttcaggcgcgaatacaccgtcaccaccacaaatggcaggcagaaggtgatatgcgagaacagcagcgaccagaagccaagctgaatacccagcagcataaacagcaccagcagcgaaatcgccatcacgatatctggtgacatcatcaccacaaacagcattccgctaacgaacggcttaccacgaaagcgataacggtacagcgcaactgccgtcagtgaaccgataagcgtagcaaacgtcgccgaaaacaccgccattgttagtgaatgctgcgctgcctgtaacaggctgtcgttgttcatcagcaggctataccatttggtggtaaagccctgccagttgatgccaaagcgcgagctgttaaaggagttcacaatcaaaataatgattgggatatacaggtacgcgtagatagcggtcataaaaccgccgcgaagcagtcgaccgatcattcgagttccaccttcttattcagcaaacgagaagcgcgccagtaaaccagcaacatcaggcccattacgatagtcagcgtaatgctggtagctgcaccaaacggccagtcacgaatattaaggaactggaccttgatgacgttaccgatcagcaggtttttcgcaccgcccatcaggtcggatacatagaacaggcccatcgctggcagcatcaccagcagacatccggcaataattcccggcatcgtcagtggaataatgatacggataaaagtctgtaacttgctggcaccgagatcgcgcgccgcctcaagcaacggcttatccagtttttcgatactggagtacagcggcatcaccataaacggcagcagaatgtaaaccagaccgataatcaccgcactgggcgtgaacatgatacggattggtgtgtcgataacgcccagccagagcaaaaactcgttgagatagcctttggtgctgaggaaaattttcagcccgtagatacgaattaatgagttggtccagaacggaacaatcagcagaaacagcagcagcggacgcaccttgtgtggcaacttcgccagaaaccaggcaaacgggtagcccagcaccaggcaggcgagggtggcgatcagcgccatattcagcgagtgcaatagcacttcaaaatagagcggatcgagcagacgcgtgtagttatccagcgtaaagaccattttgacaaaactggcgtcgtcgcgggtcaaaaagctggtgccaatgatcatcaggttgggcagaaagacaaacaacacaagccaaccgacaatagtgacaatcactacattctggaacttacttgtgttcttcatcagccagtacgacctcccagctttctacccaattaatggccattttttggtcgagagagtggtcaaagtcaggatcgtcttcattgaagaattcgctgaccatcaccatcttgccattttccagttcaacaaccgactccagcgtcatgcctttgtagttacgctcgcgaacgtaaccaatcagcccttcagcgtggttgtcgtcgttaatctcttcaacacgtaagtcttccgggcgcagcagaacatgcagtttttgccccggttcaacggcgaagttaacgtagatattacattcgcggccttcaacgttggcgcgtacgcgctgctcgtctagacgttcgatgacagtggcgttaaacatattgatttcgccaatgaagccggcaacaaacaggtttttcggctcttcgtagatttcacgcggcgtgccgtcttgctcaatgcgaccatcgcgcatcaccacaatcctgtctgacatggtgagtgcttcttcctggtcgtgagtcacaaagacgaatgtaatgccaagcttacgctgtaacgctttcagctcgttctgcatttgcttacgcagtttgtaatccagcgctgagagcgactcatccagcaacaacagacgaggcttgttaaccaccgcgcgagcaatggcgacgcgttgctgttgaccaccagagagctgatgcggtttgcgttgagcgaaggtttccaactgcaccatccgcagggcttccatcacgcggggcgtaatttcagcagcgggggttttttgcatgcgcaacccaaaggccacattttcgaacacggtcatgtgggggaaaagtgcgtagctttggaaaacagtgttcacatagcggttttccgccggaacgtgggtgatgtcctcgttatccagcatgatgcgtccggaatcaacagtttccagacctgcaatcaggcgaagaacggttgttttaccgcagccagaagggccaagcagcgtgaggaactcgccattgttgatagtcagatccagctggggaatgacctctttaccatcaaagcatttgcgaattcccgccaattgcaccagcggtgaaagcgaactcggttgtttattcaattttttactctgtcccatgtaaacgcaacggatggcttaccgatgcggggtttgtggttaaccaccttggtgactcttaatgagggcggtaattctacggcaaaccgcttgaatcgccaatctttgttgtgaattactggcttagctttatattcattaaggtaatgctgataaatattcccgcttgcaggggtaaaagtgacctgacgcaatatttgtcttttcttgcttcttaataatgttgtcacaaaaagtgagggtgactacatggataaactacttgagcgatttttgaactacgtgtctctggatacccaatcaaaagcaggggtgagacaggttcccagcacggaaggccaatggaagttattgcatctgctgaaagagcagctcgaagagatggggcttatcaatgtgaccttaagtgagaagggcactttgatggcgacgttaccggctaacgtccctggcgatatcccggcgattggctttatttctcatgtggatacctcaccggattgcagcggcaaaaatgtgaatccgcaaattgttgaaaactatcgcggtggcgatattgcgctgggtatcggcgatgaagttttatcaccggttatgttcccggtgctgcatcagctactgggtcagacgctgattaccaccgatggtaaaaccttgttaggtgccgatgacaaagcaggtattgcagaaatcatgaccgcgctggcggtattgcaacagaaaaaaattccgcatggtgatattcgcgtcgcctttaccccggatgaagaagtgggcaaaggggcgaaacattttgatgttgacgccttcgatgcccgctgggcttacactgttgatggtggtggcgtaggcgaactggagtttgaaaacttcaacgccgcgtcggtcaatatcaaaattgtcggtaacaatgttcatccgggcacggcgaaaggagtgatggtaaatgcgctgtcgctggcggcacgtattcatgcggaagttccggcggatgaaagcccggaaatgacagaaggctatgaaggtttctatcatctggcgagcatgaaaggcaccgttgaacgggccgatatgcactacatcatccgtgatttcgaccgtaaacagtttgaagcgcgtaaacgtaaaatgatggagatcgccaaaaaagtgggcaaagggttacatcctgattgctacattgaactggtgattgaagacagttactacaatatgcgcgagaaagtggttgagcatccgcatattctcgatatcgcccagcaggcgatgcgcgattgcgatattgaaccggaactgaaaccgatccgcggtggtaccgacggcgcgcagttgtcgtttatgggattaccgtgcccgaacctgttcactggcggttacaactatcatggtaagcatgagtttgtgactctggaaggtatggaaaaagcggtgcaggtgatcgtccgtattgccgagttaacggcgcaacggaagtaagcgaaaagggatgcggcatgtgatgccgcatccggcttaaatccaaacttacccttcgaagaaccaatacccgctattgaccagcgccgcgagcatcgcgaggaatgacggatcttccagcgcatcgccaaaattctccgcagtcagcgcaatgttgctggcgagtgcatccagtgccggacggtgcggggaatcgatcttctcaccattggcatacacgtcgtcgccaatgcgcaatacgcgcagaccacccaggcgcaccagcacttcaccttgtttcagcgcatcgtagatttcatccggctgataaggcggctctggcggcgcgatatccagttcatgacgtgactgggatataaactcgccaaaccattgcttaaagtgttccggctggttgatcaattcgagcatcatctcacgcagtttatccatctcttgcggcagaacatccgcaggatgagcgcgaggtggaacatccggatcgctgtagtagttgccgcccagttcacgttgcagcacataatcggcaaatccactaatcagttcccgcgtatttggcgcgcgaaagcccacggaatagttcatcgcattttccagcgcgtagccttcatgcgggaatcctggcggaatataaagaatatcaccaggctccagctcttcatcgatgatggcttcgaacggatcgacctgtaacagatccggatgtgggcagtgctgtttcatttgcagcttttcgcccactcgccagcgacgacgtccggtaccctgaatgataaacacgtcgtactgatcgagatgcgggccgacgccgccgccgggtacagaaaaagaaatcatcagatcatcaatacgccagtccggtagttcacggaacggtcgcatcagcgcggcggtcggctcatgccagtggttcactgcctgtaccagtaatgaccagttggtttcaccgagatgatcgtagctttcgaacgggccgtggctgacctgccatttgccatcctggtgactgaccagtcgactgtcaacttcgctttccatcgccagacccgccaactcgtctggagagatcgggtcaataaaattattaaagccgcgttttaacaccaccgggcgtttctgccagtgacgttcaagaaaatcgggccagttaagagtgagttggtattccatgttaagcatccacaggctggtatctgcaaccgattataacggatgcttaacgtaatgcgtgaagtatgggcatatttattcatctttcggcgcagaatgctggcgaccaaaaatcacctccatccgcgcaccgcccagcatgctctctccggcgacgattttaccctcatattgctcggtgatttcgcgggctaccgccagccctacaccttgcccagggcgtaaagtatcaacccgttgaccacggtcgaaaatgacctctcgcttgcttaatggaataccggggccatcatcctcgaccacaatatagagatgctcgtcggtttgccttgcagaaatttcgacaaactcgaggcaatatttacaggcattatccagcacgttgcccatcacctcgacaaaatcgttctgctcaccgacaaagctgatctctggcgaaatatcgagagagatattgacccctttgcgttgatacactttgttcagcgctgaggtgagattgtccagcagtggggcgaccggatgcagctcgcggctgagcaatgtcccgccgcgcatactggcacgatgcaggtagtagccaatttgctgtgaaatgcggctgatttgctccagcattaccggctcagcatcactgacgctcatcttttcactacgcagagaacgcagcgtactttgcagcaccgccagtggcgttttcagactatgggtcaggtcggtgagcgtcgtacggtatttgtcgtaacgttcgcgttcactttttaacaatcggttcaggtttcgtaccagactggtcagttctcgcgttgtggctggattgagcaattcgcggttatgttcttccagttcgcggacttcttttgccagggcttcgatggggcgtaaactccaccaggcggcgacccacagcagcgggatcactaacagcagattggctgagagcacatagataaaccagctccagaccatataggaactttttagctccaccggaatggtatccaccaccacaatggttaattttggcatccgcgatgttgccgggtagacgtttactgccaccgagtgggtcatctccgcgtcgtcatcatcttcccgcacttcctgcaactgttgctgtatcgaatgatctccactcagcaagaggctggtatcgttaacatccgcttcaatttcatgaaaaccattcgatttcagccagtcaggctggatcatcttcatcagccagggcacgtcacgttgcgcccataaaagctgcccgttctcatcataaattagcgtcatggtggggctttgcttgtcgatattttcgggtaactcgacatgcaacttattgttttcccacttcgcaagggtatagaacagattgctctcgccacgtaacagccgaaacgtagttttatcgaaactgacgctataaccgatcagcgcgaccattccgtaggcaagcgaaagcaccagtactaccgctgccgttgccaacagaaaacgtacccgcagcgagagcgggaaaaaaagacgcagtaattttttcatcagcgcaattcgaacagatagccctggccgcgaacggtggtaatcacttcttggggatattgtgcctgaatttttttgcgcagacgtcccatcagtacatcaatggtatggctttcccgcagctccgcatccggatagagttggagcattaacgaatctttgctgaccactttgccattattgcgtatcaacgtttccataatagtgtattcgaacgcggtcagtttgatcacttcgtcattaatagataattcacggcgagagagatcaacctgaaacggggggagcgaaatgacctgtgaagccagaccgctattacgccgcattaatgcctgcattcgcgccatcacctcttcaatatgaaacggtttagtcacataatcatcagcaccggcacttaatacttcgactttgtcctgccagctttcacgggcggttaataccagaatcggcagtgaaacatcgttgctacgccagcggcgaatcagtgacagaccgtcctcgtctggcaatccgagatcgacaatcgcaatatccggtatatgttcattgagataataatcggcttctttggcatcttctgcgtcatcgacctgatgaccagcatcctgaatctgaactttaaggtggtgacgtaacaacgcattgtcttcaacaaccagtacgcgcatttttatttctccctgtcttaattattaaaatagtgtaacgcgattatgtggttatgggggtaaacattaaataaaccagcggggaggggaggtaaagtgaaaaaataaaaagcggataatcttaataagcaggccggacagcatcgccatccggcactgatacgaggtttatttcagctcatcaaccatcgtgatagctcgaccaatatagttagccggcgtcatcgctttcaggcgggctttctcttcttctggcaacgccagaccatcgataaactgcttcatgccttcggcgtcaacgcgcttaccgcgagtcagctctttcagcttctcgtacggtttttcgatgccatagcgacgcataactgtctggattggttcagccagcacttcccagttgtgatccagttcatccagcagatggtcacggttcacttccagtttgctcacgcctttcagggtggattgatatgcaatcaaggcataaccgatacccacgccgaggttacgcagcacggtagagtcggtcaggtcacgctgccagcgggaaaccggcagtttgcttgccagatgctgcaataccgcgttggaaaggcccagattcccttcggagttttcgaagtcgatcgggttaactttatgcggcatggtggaagaaccaatctcaccagcaatggttttctgtttgaagtggttaagggcgatataaccccagacgtcacggtcaaagtcgatcagaatagtgttgaagcgcgcaacgcaatcaaacagttcggcaatgtagtcgtgcggttcgatctgggtggtgtacgggttccactgaatacccagcgaggtgacgaactcttcgctgaactgatgccagtcaacttccgggtaagcggcgatgtgggcgttatagttaccgaccgcgccgttgattttgccgaggatctccacctggttaagctggcggtactggcgctccatacggtaggcgacgtttgccatctctttaccgatggttgacggcgtggctggctgaccgtgggtacgagacagcagcgggatatcgcgatactgaacggcgagatctttaatgccatcaatcagttgacgccagtatggcaggatcacttcatcacgcgcggttttcagcattaatgcgtgggagaggttattgatatcttccgaagtacaggcaaagtggatgaattcagaaaccgcgtgcagttccgggatctccgccactttttctttcaggaaatactcaaccgctttaacgtcgtggttagtggtacgctcgatagttttgatgcgcgccgcatcttcttcgctgaaactggcgacgattgcatcaaggtaaccgattgcgtcggcagcaaaagcaggaacttccttgatcgctgcgtgcgcggccagtttttgcagccaacgtacttcaacttgtacacggaatttcagcaaaccatattcgctgaaaatcccgcgcagcgcgctgactttatcgccgtagcgtccatcgacaggggaaacggcggtcagtgaggataattccatagatcacaactccggggttaaatgagcaagaatttgttttgcctgagtggtcaggcgattacgagaaaacatcagttgcagacgtccgccgccgacctggtgccagagcacggcggcgcgaatgcctgccagcagggttgcgcgaactttcgcctgcacttgtgggctttgcagtacagcaggggaaccggtgacctgaatgcgcgggccaagcgggctaatcacatcaacatagatagcagccatcgcgctcatcagcgtttcggactgtaaatcgaagtgttcgagctggcgttgcaggccgttgatccggttgcccagagtgtcgagcgcgcctttcgctgaggagagtttgcgctcaagcaccatcaagctgagtgtgtagcgggttaattcggcgtttaagccctggcgactgctggcattgagcacgccgagcagggtttccagcccgacgcgcaggttggcttcgctaccgccaaaaaccgccagcgtcgagctggggttcatatcaataatactgttgagtgagacgtgtagcgcatcggcatcacaatgcccctggtgagcgagttgttgcaccaggcgtgccgactgacaaataccggccagggcgagggtgatgtcatagtaattctttgccacgttcactgcttccttgttttaagtaaagataataatcagaccggcagcggcagacgctgctcaataataccgccaccgaggcacacttcaccgttatagaagacggcagactggcccggcgtcacggcggcaaccggttcatcgaaaatcacttcaatgcgatcatcgtccagcgccttgacggtgcaagggatatcggtctggcgatagcgggtttttaccgtgcaacgcatagtgccggtgaatggttcgcgatcgacccagtgcaactgctgggcaatcaacccgacagacatcagccgcgggtgttcatggccctgagcgacaaccagaatgttgttttcgacgtctttgtccaccacataccacggttcttcggtaccttctttggtgccaccgatacccagacctttacgctgaccgagagtgtgatacatcagcccctggtgctcaccaatttcatcgccatcgacggtaatgattttgcccggttgcgccgggagataacggcccaggaactcgcggaatttacgttcgccaatgaagcaaatgccggtagagtcttttttcttcgcggtgaccagaccaagatcttcagcaatcttacgcacctgcggtttttccagttcgccgaccgggaacaggctttgcgcaatctgctcatggctgagcgtataaaggaagtagctctggtctttattgctgtccagaccacgcagcaggcggctcttgccatcgacatcggcccgacgtacgtaatgaccggtagcgatataatcggcacctaaatcttcggcggcaaattcgaggaaggctttaaatttgatctctttgttgcacagaatatccggattcggcgtgcgaccggctttatattcggcaaggaacagttcgaagacgttgtcccagtactcggcagcaaagttaacggtgtgcagttcaatgccgagcttgtcgcagacagcctgggcatcagccagatccgctgccgctgtgcaatattcctcaccgtcgtcttcttcccagttcttcataaacaggccttcgacctgatatccctgttgttgcaacagccaggcagaaacggaggaatcgacaccgccggacatgccgacgattactttttttgcggtttcagacattggatcactcacgacattgaacttcaaggcggcgtattctatcacgcagccttttagatgacaccctttgtaaaaggccagttaaaatcgccaatcatctccagcggataacgttgcccgctttgataacaacgaatactttccgccaccagcggcgaacgaagatttgacgcctgtaaaatttcttcggcgctgacccaacggcagcagtcgatatcgctgtcatgaggctgggtcgggcatatttgctcaagctcaatggcaaagaggaaacgcaaaaacggcgttttatctggcgcaatccactgatgcatacgaataaagtgttgcggctgcgcgctgatgccggtttcttcccacagttcacgggcggcggcttccactaaggtttcatcggcttccagatgcccggcaggttggttccataacgctttaccattaatcgtctcttcaacgactaaaaatttgccttctgcgtgcaccacgcaagcaacggtaacgtgcggtttaaacattttgcatccttaatctgtcacttctcgccattcaccattggcaagattatccaaagagtaatcacccatcgcatagcgaatcagtcgcagcgtggggaagccaacatgggcggtcatgcggcgcacctggcgattacgtccttcatataaggtgatcttcagccagctggtgggaatacttttgcgttcacgaattggtggattccgcggccataaccacgcgggttcgtcaaccagctccgcgccggcgggcagggtagggccatcatttaaggttacgccattgcgcaaggcttcaagtgcgtcttgtgtgggaataccttccacctgcacataatagatttttccggtgcgtttacccggctgggttaaacgcgcctgcaacgcgccgttattggtcagcaccagcaacccttcgctatcgcggtcaaggcgacctgctgcataaacaccctgaaccgggatgaattcttttaatgttttgcgtccggcttcatcggtgaactgcggaagaacatcgtagggtttattgaacaggatcacacgcgtgggctggttttcaggtttacgcctggtagaacgttgcgagctgaatcgcttaacctggtgatttctaaaagaagttttttgcatggtattttcagagattatgaattgccgcattatagcctaataacgcgcatctttcatgacggcaaacaatagggtagtattgacaagccaattacaaatcattaacaaaaaattgctctaaagcatccgtatcgcaggacgcaaacgcatatgcaacgtggtggcagacgagcaaaccagtagcgctcgaaggagaggtgaatggaaagtaaagtagttgttccggcacaaggcaagaagatcaccctgcaaaacggcaaactcaacgttcctgaaaatccgattatcccttacattgaaggtgatggaatcggtgtagatgtaaccccagccatgctgaaagtggtcgacgctgcagtcgagaaagcctataaaggcgagcgtaaaatctcctggatggaaatttacaccggtgaaaaatccacacaggtttatggtcaggacgtctggctgcctgctgaaactcttgatctgattcgtgaatatcgcgttgccattaaaggtccgctgaccactccggttggtggcggtattcgctctctgaacgttgccctgcgccaggaactggatctctacatctgcctgcgtccggtacgttactatcagggcactccaagcccggttaaacaccctgaactgaccgatatggttatcttccgtgaaaactcggaagacatttatgcgggtatcgaatggaaagcagactctgccgacgccgagaaagtgattaaattcctgcgtgaagagatgggggtgaagaaaattcgcttcccggaacattgtggtatcggtattaagccgtgttcggaagaaggcaccaaacgtctggttcgtgcagcgatcgaatacgcaattgctaacgatcgtgactctgtgactctggtgcacaaaggcaacatcatgaagttcaccgaaggagcgtttaaagactggggctaccagctggcgcgtgaagagtttggcggtgaactgatcgacggtggcccgtggctgaaagttaaaaacccgaacactggcaaagagatcgtcattaaagacgtgattgctgatgcattcctgcaacagatcctgctgcgtccggctgaatatgatgttatcgcctgtatgaacctgaacggtgactacatttctgacgccctggcagcgcaggttggcggtatcggtatcgcccctggtgcaaacatcggtgacgaatgcgccctgtttgaagccacccacggtactgcgccgaaatatgccggtcaggacaaagtaaatcctggctctattattctctccgctgagatgatgctgcgccacatgggttggaccgaagcggctgacttaattgttaaaggtatggaaggcgcaatcaacgcgaaaaccgtaacctatgacttcgagcgtctgatggatggcgctaaactgctgaaatgttcagagtttggtgacgcgatcatcgaaaacatgtaatgccgtagtttgttaaatttattaacgggagcgtaacgctcccgttgttttttgttaggctgctaacggttatcaaaattttatcaaaaaaagttatcaaaacccctcggtagttttggggtaggctggccggtcaggtggtagttctactactagtctcccacatagatattccttagctttttattattgctggcggacgctcgttaatatttaaggtcttcattgattaagacatccccaaagttagttatgtattcactgttattaggacaattatgaattaccactccttacacccgctcaaatattgttaaattgccggttttgtatcaactactcacccgggactcgccaggggacagccaacaggcattgggtgcaatcaccttagcgttcaggtacatgcggaatgtaaaaaaggccgcgagcgcggccccttcacatacatctttagtactgagactgtttaacctagggaattattatcgtattatattgcattacaactcccaacagtgacatatgaacttcctgctttactccacgactttaatatttcaaggccatgtgaagaacatatttcttgcactgcgagttcatcgagtaatccatagtaagaaacactttttgaatttttgtaaatgtatccgtaaagatgttttcttcctgtttcgtattttttgaagtatgagcttttatattgatttacaataagagtctcacctcctgattttagtaatctcttgatgctaagaactattttgtcgattgtatcccgacaaggaacggcagagagaacattagagcaaaggatgaaatcgtaacccccaattattttgtcgacatcctcgaaagcaactgtatttgcatttttataatatcgtgggacatagtcaataattttagttttaattcctctaataatttgctctctttcaagttgccttttcgagtctagaaaagtaacttcatcaaatttactgattaattcatcagaatatctaagttttccgcagccaaaatcaagggcgtggccatttttctcaatgcttctaatatactcgcaaagatatctagagggcatcgtatgaggttttgctgcattctctgagcgaatattaactccgtgcatattatagttcaaagcaagtaccattcaattaatgttatttttagtgaaaaattcttttattttatcgtccgggatttttccgacttgactttcagttctgggcttaactgtcaaagcaaagataataccactcactgagaatgataaaattacaaaaaagaataaagacagcaaagaaccttcaacatgaaaaatatccatttgtttgcaaaaaaagattattaggaaggaaattaatgcaattatcgaaaattcaaaaaatatccaaaaatagtatactttattccagaagagttcaatataatgtttgtcttcaatttttcttacttcagggtaatatagattgctcattacattgtgagcttcatctttatttaattttctgttgactccagctctccgtgataacggttttataattagatgcttatcccaaagatatcgcacccgaagtagtttggctgcattgttatgtaggtctaacgcaccgctaattaaatatgcaaaaatcgcaaaagcacaaggtaatataccaaaagatagtgcccaattaataaagctctcatgatctttaataggtgggacatacttggttggtaatgttattaaagggatgtattcgtaaataactagaagtatgcaatatattagcgtatttaagaaagttgctttatgaagtttaggcaacatttcattataatttttggggggttcgaacatattattcacctgagtcacgctttaggatagtgtaatggtaatatttaattaagtgtcattatatacttttcagtaggttagttacaattttttgtatctgttcaggctgacctagcttcgctgacagacaatattgtgatcagtagcacgtatcgaggaggagtagcgctacaaatttgacgctgggtgagaatctgaaattgatagaaatgaaataatgaaataatgaaatgatgaaatgatgaaatgatgaaatgatgaaatgatgaaatgatgacagagtgtccagtgggcacggatggtgtcttacgacatgcttaccttaatcgttcccagtgtgcctatagcagatattctaaacatgtcgataattcattacgcatatagtatcgaacatagaaaaaactgaagattcatcttattttgtatatactacctagcccaacaatgtagaggttaacgaaaaatgcgctcaccaatttgtcatcttttctcagcaattaattcatcaccatttaagattgcaccagagaaggagcaagatcttaaaacgatagttgacgacaaaaaaattataatttcagttgtgagtgaacctggttttaatatccgagtcaggaagaatgagagtaataattcacatgaaatagttctaacagtagcttcacttgaatatatttgggcattttccaatttcttttgggtttttacgcaagagtactccaaatctcagaaaaataatgatgagcactttgatttaacaggaaaaaataggcttaaaaagtctgatgaacttcttaaatgggcaaggaaaaacttgcaaacaacaggttgcgaatcatggcctaaaaaatgtcccaagccagaagcatatttacaaggaagcgaagactcacaagttgctagcgagatatttctttgtgctattgcttggattcttcatcatgaaataagtcatgttgttttacagcatccattggtcactacagcattctccactcaagaggagcgtgaagcagattcacatgctacaaaatggatattaggcaacctgtatgaatccgctcctgaattaaagaaacgtgcacttggcattgctacggcagtgctttgtatacaaagcttagaagttgaaaattacttctgtttacaaaatacacacccagctgcatatgagcgtatatattcgaatatttcatgctaccctgtcggaaatgaagagttgattgaagctctatgtacagtgatgcttcaatatcttttccatggcaaaaatatcaatgtgaatctagatggggagtccttttcatcgattttaggtgatcttctctgtgatatttcacgtcttaccagtaactgatatggctgtccgccgctcgcttaaagtggactttttagtttttatcatgtgcggtgagaaattcaatgtggcgttgagatgcttaaaggttcacaacgctactttgctccatcctttacctcgatcatcatgataacgatcggtttgttgttgtgttttatgaccaagtagtttttgtgtgtctaacccctgttctttatacagacgttcagataaagacctttgctcatggaatgtcgcaggtgaaccctctccccagtcaattcttgctaaatctctcgctttactaaaattcatcgtcaatgtattggctttaacctgcgctccgcgctctgcttgtgaagttgaacgaaaaaaatgcactaagtatgcactgactgcatagtcacggcagcgggctactacatcgcgtaaactccagttaatcgcattgaggcgaagagaaagaggaattgcgattttgctcccggtcttttcctgaatgacatgaagatgatcatcccaaatatcgctaaatttcatacgcgaaatatcacctaaccgctgaccagtaaccagcgctaacagcatggcatttcccatgtaacgatgagtagcgtctgcgatatcgaagatttttttccattcttcaaggctcagccgttgtcgggtaatttttcttcttggttgtttagtggctaatgctgggttatagccaggaggtacttctccgtagtgctgcgcctctttgaaaacatcaatcaggacggagcgaactacttgtgccattcttggccgcccagcggcgatatactcatcaagcaattgtgctatatctctgacatcaacggctgagatcaacttcattcctgctcgttctctgagcaaggatactggtttagctttttgtttataggtgttgagtcttatatcaccacttttaagcctgtcatcctggatcgcttgatagcgatctaaccaggttgacgttgtgatagcctttcctttgctggttgcgatcctgtcactgatagccagaatctgccgggttctttgttcagccaggcgagtgttggcctcagtggcaatagcgatagcttcagcttcgtttgttcccaaagcatggaattttcctgtcactggatgcttataccgccaatagactttatttaccttcctactataaagcggatataagttagggactgaaacattattcttacgcggtctggctgccattactcaaaatccgttgcaaaagtaatgagtcatttttcttgattacaggtgttaccaactccccaactaactcggcgtcctcacgcactcgccataaccggccttgtttcatggccggtggacaaaataaattctgcttagcataacgacgcaatgtggacacacttggaggattacttctgtatttttcagcagcccattcttcaagagttaacatttgaagcatatgcgatcaccttattactacactaactgcttagtctcagcatatcgaccctgcacggtcggttagtttctccacaaaacagagaagagcacctgtggccacagctatcaggatgggtcgggttattaacccgtcatccggggatactcttctctgttttgtaaaaagggcggtaccagaaaggactaaggaaaaaactggtaccgccaagactacacacagcataaagttgtggtgtcgggtgcccccggtgcctggcgaaggttgcacaccaggcgggtgggtatccacagaaggtcgattgtcagcctcaaccttaacccgcgtgcgctgagccgcattcaccacaacgctaaggattctctctggttgaaaatacttagctgttatgtgcctgtcttttcaccacttcaggctcggtggtatgctggagttctcacacagccagcaagcaaggaaacttaatgaaccagttttatgttcacgttcgtctatttgaagacacagccgaacagaccaaaaaatttgaagaattaatgcttaactttctgtaccagaaaacagttaaagagtctgacgatagctgctgcagactgattccagagggatatatcctcaaaagtacaatgaactgccaacaaatccttgatcaaacattttcaattgctaacagtgccggtgttgacgcaaatatatttgtctgtaaatttgaacaaagcgcatgcttacttccgtctgcttccttagttggtaacgatttcgttcattacgatcttacgcctaagcccatcaagctcgattcttaaagccttaaccattgtgtcgtgataaacacggctcaccttctctccattgcatggcagaggggtgagtgtgttagccatgaaattcatgaactcggttcgaccaggggcttgcgccccgcaagtctttaatgcctgttttgctaacaaaatgcgggcctcagtgcctgcatttggctctatctgctgcaaacgtttagcgtcttccagcaacaatgcgatcacatgcttcaaattctgctcattcatctattctctccactgaaatcatccgctaacgaatcatcccggtcttcgtacgtaccgggcgggctacttcgtgggcgtcctgcctgtttgttgtttctcttgggtacattatgtatctcaaaggtacattgtcaagtataaaaaaacctgccgaagcaggttcataaacattgattaggctttgattttgtatcttcttggttttcctgagaaaatcacagtaccaattatagagcaattaccgttgatcttaatgtaaggctcaggccagtttgggtttaacgctttgagataacgctgtgtcccatcttctatcaaccttttgaaggtggtttcacctgtatcgtgcatcaatgcaataacgtcgtcaccgtggcaggcaggtacttcaggatcgacaaaaatcatgtctcccgggcggtactcatcaatcattgaatcacctattacccgcaagatataagtcatttccccacagggtacagggcagggatacgtttctgctgtgctcaaatcaacctcagaatatccaacttctttccatgctccggcctgtacccatgatatgacagggactaatgtgatttgtttattagtgattgaaacatcaggtttttttgtgatgttcgttgtctggtgttcttgatcgagccatcctacaggcaggtcgaaacatttttcgatgtgtcgtgccatgctgtcaccgatatttttagtagcaccatctcccataaacctgctggtctgggttggctcgcgatcaatcatagtggcaaaggaagaattcccgccaacaccatctctcagttttctggcgttagaccgccggatgtcatggattgttttcataacgaaattaaaacccttgtaccgttaaggtacaagtatcttgaaggttcatttcaatcatgtaatatgtacaccggaggtacatattgtatgaaagcgtattgggactctttaaccaaagaacagcagggcgagttggccggaaaagttggctcaacacctggctacttacggctggttttcaatggctataaaaaagccagttttgtgctggctaaaaaacttgagcaatacacatcaggtgcaattacgaaatctgacttaagaccggatatctatccgaaagattagcagaacactttcaatttttaaccacagaacgatgaggctaatcgtgggtaagcatcactggaaaatagaaaaacagcctgagtggtacgtgaaagctgtcagaaaaactatcgcggcgttgccgagtggttacgctgaagcggctgactggctcgatgtaacagaaaacgctttattcaaccgccttcgtgcagatggcgatcagattttcccgctgggatgggcaatggttttacagcgtgctggtggcactcacttcattgctgatgctgtggcgcagtctgcaaatggcgtctttgtgtctcttcctgacgtcgaggatgtggacaacgccgatattaaccagcgtctgctggaagtcattgaacagatcggcagttattcaaaacagattcgttcagcaatcgaagacggtgtagtggaaccgcatgagaagacagcaattaacgacgagctgtatctctcaatttcgaagctgcaggagcatgcagcacttgtctacaaaattttttgcatttcagaaagtaatgacgcccgcgagtgtgcagctccgggcgtcgtggcgtcgattgcttctggttgtggagaaactaacgcatgaacagtttaacaacacactaccgtcgctcgcaactgattgcgcttcctgtaccgggtggaaaagcgaaggtggaatattgctatgcagtgaatgtaccaggtgacagggaaattgtaacccacagctttgcagagtgggctgtgggtgatttcaaccggcagaaggagacagtcctttgcgacaagttaaccgctggttcaaagatcactacggagtgcccgtcagagtcattcgttgggagccggaaacacaacgggttatctacctccgcgaaggttatgagcatgaatgcttcagcccgctcgaacagtttcgtcgtaaattcagggaaatagaggtcggtcatgagcactaaattaaccggctatgtatgggatggttgcgctgcatcaggcatgaagttatccagcgtggcaattatggcccgcctggctgatttcagtaatgacgaaggtgtgtgctggccatcaattgaaaccattgcccgtcagattggcgcggggatgagtaccgtcagaacggctatcgcacggctggaagcagaaggctggttaacgcgtaaggcgcgtcgccagggtgatggttcatcaccccactgtgccgtggtggatgaatatcacgagcacgccacagatgcgctttacaccacgatgcttaccgggatgggggcgcgacgccagccactgatgtgggccattaccaccgccgggtacaacattgaggggccgtgctacgacaaacggcgggaagtcatcgagatgctcaacggctcggtgccaaacgatgaactgttcgggatcatctataccgttgatgaaggtgacgactggaccgacccgcaggtgctggaaaaagccaatccaaatattggcgtgtcggtttatcgcgaatttttgttaagtcagcagcagcgtgcgaaaaataacgcccgtctggcaaacgtctttaaaacaaaacacctcaatatctgggcgtcggcgcgttcggcgtatttcaacctggtgagctggcagagctgcgaggataaatcactgacccttgagcagttcgaggggcagccgtgcattctggcctttgacctggcgcgtaagctggatatgaacagcatggcgcgactttatacccgcgagattgacggtaaaacgcattactacagtgtggccccgcgtttctgggtaccgtatgacacggtgtacagcgtcgagaaaaatgaagatcgccggacagccgaacgctttcagaaatgggtggaaatgggcgttctgaccgttaccgatggtgcggaggtggattatcgctacatcctcgaagaggccaaagcggcgaacaaaatcagcccggtcagtgagtcacccatcgaccccttcggggcgaccgggctgtcacatgaccttgctgatgaagacctgaaccccgtcaccatcattcagaactacaccaacatgtccgatccgatgaaagagctggaagcggcgattgaatcggggcgctttcatcatgacggcaatcccatcatgacctggtgtatcggcaacgtggtcggcaaaaccattccgggtaacgatgatgtggtgaagcccgtcaaggagcaggcggaaaacaaaatcgatggtgcagttgcgctgattatggcggttggcagagccatgctgtacgagaaagaagacacgctgtctgatcacattgagtcctacgggatccgctcgctttaactgaggtaattatgatcatgctgattctcgcgcctctggtgggcgtgctgggtgcgcttttgctggcgtatggtgcctggctgatttatcccccggcgggttttgttgttgccggggcgctgtgcctgttctggtcgtggctggtggcgcgatatctcgaccgtacacagtcgtctgtcggcggaggtaaatagtgttcttttcgggattatttcaacgaaaaagtgacgcaccggtgaccacgccagcagagctggcggatgccatcgggctgtcgtatgacacctataccggaaagcagatcagcagtcagcgggctatgcgactgacggcggttttttcctgcgtcagagtgctggcagagtcggtcgggatgttgccctgcaatctgtatcacctgaacggcagcctgaagcagagagccaccggcgaacgtctgcataaactgatctccacgcatcccaatggctatatgacgccgcaggagttctgggagctggtggtcacctgtctgtgcctgaggggaaacttttacgcctacaaagtgaaagcatttggcgaagtggctgaactgctgcccgtcgatcccggctgtgtggtatatgcgctgggaaggtgtcagcgatggcctgaaggtgaccgccgggagtgttattcagcgcgatgacctggtgcagtacacgacaactgacgatgcaaccagctccggtggtgtcctgcgcgtgccgatcgcctgctcaagtgcaggtgcggtcggtaacgctgacgacggtacggcattaatcctggtcacgccggtgaatggtctgccgtcttccggtgtggctgacaccctgacaggcggatttgatactgaagagctggaaacgtggcgcgcccgcgtcattgagcggtattactggacgccgcagggcggggctgacggggactatgtcgtctgggctaaagaagtgcccggcattacccgcgcatggacataccgtcacttgatgggaacgggaactgtcggtgtgatgattgccagcagtgacctgattaatcccattccggaagaatcaacggaaacggcggcaagacaacatatcgggccactggccccggtggcaggctctgatttgtatgtgttcaggccggtggcacatacggtggattttcatatccgcgtgacgccggacacaccagaaatacgggctgccattaccgcggagttgcgttcgttcctgctgcgtgatggttatccgcagggagaactcaaggtatcgcgtatcagtgaggcgatttccggtgcgaacggggaatacagccatcagttgcttgcaccggtggacaatatctccattgcgaaaaacgaactggcggtactggggacgatttcatggacgtgacaaacgatgattacatccgcctgttatcggcactgttgccgcccggtccggtgtggtcagccagcgatccggcgattgccggtgcggcaccgtcattaacccgtgttcatcagcgtgcggatgccctgatgcgggagctggatccgcgcaccaccactgaactgataaaccgctgggagcgtctgtgcggtctgccggatgaatgtattccggcgggaacgcagacccttcgccagcgtcagcaacggctggatgcgaaggttaacctggcgggcggcatcaacgaggatttttatcttgcacagcttgctgccctgggcagaccagatgccaccatcacgcgatacgacaaaagcactttcacctgctcatcggcctgtactgacgcggtgaatgcgccggaatggcggtattactggcaggtcaacatgccagccaccaccaactccacctggatgacatgtggcgatccctgtgattccgcactgcgtatctggggtgacaccgttgtcgagtgtgtgcttaacaaactctgcccgtcgcatacctacgtaatttttaaatatccggagtaatccatgcatcgtatagacacgaaaaccgcgcagaaggataagttcggcgcgggtaagaacggttttacccgtggtaacccccagaccggcacgcctgccaccgatctggatgatgactactttgacatgttgcaggaggaactttgcagcgtggtggaggcatccggtgccagcctggagaaggggcggcacgaccagttacttaccgcacttcgcgcgctgctgttaagccgcaagaatccgtttggcgatatcaaatcggatggcactgtgcaaacggctctcgaaaaccttggtttgggagaaggagcaaaactcaatgcagcaacggctacattaggacgcaccggtttcatagctataccggttatgattggtggtattgagcaatcagtaatcattcagtgggggtggaatgccgcaaaagcatctgcctctgggggggatggaaatacagttgtattcccggttgcgtttaataatgcctgtgttgccgttgttgcaaattatgacaatgtcagcgcacctatcaatgcagtggcaacggggggatatacaaccacttcgtttttattacggtgcgcagctcaaacgggtagttattactataactggattgctattgggtattaagatgaaaatatactgttgcttaaataccgttggtttttttatggatggctgtggcgtcattccgccagattctaaagaaataacggcagaacactggcagtcattattaaaatctcaagctgaaggaggcgtgatcgatttttctgtttttcctccttctattaaagaggttatccgtactcatgatgatgaagtcgcagatgcgaactttcaaaagcagatgcttatctctgatgcaactgattttatcaatagcagacagtggcagggtaaggctgcattgggaagacttaaagaagatgagctgaaacaatataatttgtggctggattatctggaagcactggaactggttgatacatccagtgcgccagatattgaatggcctacgcctccggcagttcaggccagatgacatccggcgcggtgctggtatctgttgccgtcaccgcgtcaatgtaatccagcacagcgttaagtctggttgtttctgcctgcgtcagtttacgtccggcctgcaatttcagttgaatcagactaatggaagccattgcagcatcaatcagtgactggcgctgtgcttctgccgcgtctactgcggcgctatgctgtgcttcagtatcggtcacccatttctcaccatcccatttatcgtatggagataaaggggcgatagtggttgtattttcagggtaatcacccggagctttgatttcttttgattctccagttttggtgctatagaccgtttcaccgcgatggtctggcacatattcccatgagttaaaatctgcagaacggcagattgcataaccagccttatgtgtaccaggggcatctaaacaggaacatgccggaatgccgacaccaacggcaagatattcatttgaagtggaaatatattcccgtgtttcaccatcgtagttataaacggtaacatcccctgcctttgttgcaataaggtcactatttaatattgctttatgcatcaggctgccctcacgatatagttaaatgcaatattacgcggacgcgtttctgaggctgcggcacctaaaccatccactgattgtttatatgttttaaaggttccataatccggggctggtaatccggcatcgtttgtgtttcctcttttgataatgtcagtgccactatttacccatatttcatcaaaatagaaattaatcgttgcatcagtcacaatcgtggatcttgacggtaatccatgagcatgatcctccgttgcatacccctgaatacttaaaatagagcgacctgtatcaatcccccgcccgtcatcccagccacgaataaactcaccacgtaaatcaggcaatttatttgtcggataagcctttgccagttccgggtattcttcagcagaaaaagcggcaccattgcatttcagccagcctgttggcggagtggctgaaggccacggaaccgggacaccaacaggtaatgcagagccttctcccaaaccaacgtttatgaaaatgaagaaataacaagcaaatggcatcattcctgcttttaccagggggatttaacatgcttattggctatgtacgcgtatcaacaaatgaccagaacacagatctacaacgtaatgcgctgaactgtgcaggatgcgagctgatttttgaagacaagataagcggcacaaagtccgaaaggccgggactgaaaaaactgctcaggacattatcggcaggtgacactctggttgtctggaagctggatcggctggggcgtagtatgcggcatcttgtcgtgctggtggaggagttgcgcgaacgaggcatcaactttcgtagtctgacggattcaattgataccagcacaccaatgggacgctttttctttcatgtgatgggtgccctggctgaaatggagcgtgaactgattgttgaacgaacaaaagctggactggaaactgctcgtgcacagggacgaattggtggacgtcgtcccaaacttacaccagaacaatgggcacaagctggacgattaattgcagcaggaactcctcgccagaaggtggcgattatctatgatgttggtgtgtcaactttgtataagaggtttcctgcaggggataaataaagttaaagacactttgtgtacaaaagaaagtaaaacaacagcaacttgttgcaattttatcaataaaagtagtattgtcgtgaaaaattgattaaagattaatattatgcatgtttttgataataatggaattgaactgaaagctgagtgttcgataggtgaagaggatggtgtttatggtctaatccttgagtcgtgggggccgggtgacagaaacaaagattacaatatcgctcttgattatatcattgaacggttggttgattctggtgtatcccaagtcgtagtatatctggcgtcatcatcagtcagaaaacatatgcattctttggatgaaagaaaaatccatcctggtgaatattttactttgattggtaatagcccccgcgatatacgcttgaagatgtgtggttatcaggcttattttagtcgtacggggagaaaggaaattccttccggcaatagaacgaaacgaatattgataaatgttccaggtatttatagtgacagtttttgggcgtctataatacgtggagaactatcagagctttcacagcctacagatgatgaatcgcttctgaatatgagggttagtaaattaattaagaaaacgttgagtcaacccgagggctccaggaaaccagttgaggtagaaagactacaaaaagtttatgtccgagacccgatggtaaaagcttggattttacagcaaagtaaaggtatatgtgaaaactgtggtaaaaatgctccgttttatttaaatgatggaaacccatatttggaagtacatcatgtaattcccctgtcttcaggtggtgctgatacaacagataactgtgttgccctttgtccgaattgccatagagaattgcactatagtaaaaatgcaaaagaactaatcgagatgctttacgttaatataaaccgattacagaaataaaattatttattaaagtcacatttaagacgtaataccctacagggtaaaaattttctctgatcttaacttctgcaaatgttaactgctatttttatgctaaaaatggttatcaaaactcaaaaacacatgtttataatcaatgagttatagaaatgctaagggctaatgagttatatgcaaattagtaaaattatgttgctatgtcagatagttacgatttagtcatctaactaatgctgcgccatatgggttggactgaagcggctgacctgattgttaaaggtatggaaggcgcaatcaatgccaagaccgtaacttatgacttcgaacgtctgatggaaggcgctaagctgctgaaatgttcagagtttggtgaagcgatcatcgaaaacatgtaatctctccatgtgttaaatattgaaacgggcgtataacacgcccgttgttttatttatgtggatattattaatagcatatcgagcatatttatatgaagcccattacttgagcccatatgggcatatttttataatgcaactattatgtaaacatttatttgttattttgctttctcctggaggacactcttgactgcttttgagtaaactccataaatccttgttgaatggtgcgatgtgataaatagtaataggatattctttatccttaaggataataccagacttaaccggtgtaaatatactgccaggagggagaaatatagtagattgataccagatgatcattttcatattaccccatatggctgaaaaagatataccacatgtaggttgaattaccgtgtcaattactatccacttcatttgttatgtcttatcccacggtatttaatatggttcattaggatgtttatttcttgattttgcatatgagtatattacccccccctcaaaaaaataaattaattaaaatgatggcttatataaaataaaatttaaagcaaggaatctcaatggatgttaaacaaaatgagattttgtgaaagcaataaattattgacttcgttttagatttgtttagctataatgttatacattcaaatgactgaacatcctgtaattaaaacatagcctttatgctactttgtgccaatttgctaaacattatggttgcctttttatataacgataataatgaatataagcatgacatgagaataaggtttcaatttttgagttatataggaatgatttaacctgttcctggctaaaatacatataaccggatgatgactaaaccaaaatacatgtgcgttaagtattgaaacggacgtgtggcacggccgttgtttttataaatatgttaaccgttataaaataacgtatcaaaagtcaagtgatcacatttcaaatatcaagttgatagtattagtctggtgattatttatgggtgacaataaaaagacagtattaatcatccatagagatagtctctgcacttttatttccattatgctaatgccttactgaattatgaagcatttcttaagtatccaactttagctagattaatggtttattattttctacatcttcaatatataaaagcgtattatcaatggcgtagtaactgcgtttgttatgattaacatcagtaacccaccggaaaacgcccgcgcctgccagtgttgaacagtattcccgaaatgtagattttccgcaaatatgaagcaatgcggcctcttttattttagcagggttcttggtcgtactaacttttaacaggttcctggttcctcttaataacaaaaccgtatcatcgtgagtaataattctgatgttatccgtagccagataataaatgtaatgtgcaatacggtgatgttttaattctgaataaaaccaggagaagttttgctcttttctcacttgctcaaacatcttttgaaaaacaacgacctgatccatcaggataataacctcttgttagttgtgagactgcgtagtgtgcacgatcggttttaccacttcaatctggtctgtcctttggctgtgatatgtacagagtgtgatagagggaatatctgaattctcccggtgagcattttgcaacggaccagctccggtacaaacgctgttgtgggttcagattataacattctgtctaaggggcgggataaaggtgaaattagggggcatgaaagatgactttataaccttgctcaccccagtgttgtaaaagttcgttttgccttctcgttggtgccatgcctgtccagacaatcaatgtttgcgtcgggaacagttccgggcgcggcgattcaatgggatcagcaagaacagaaatgtgccatcctgacaatgataaacgccatgcttccagccacaatcgtgctctctcttcaacattccacgccatcagaatggcttctttaccgggcttacggcgcatttcgaaaagcgaggttgctgcgtattcaattaatgcgccgtcaaacatactgctcataatgcgggaggtgttgtgatcaagcacgagacgctggcgaacaggaaggtaaacatgattaatcaattgatctactgggtactctcgacccagtgaaataattctcgcgcgtagtttggcaggattagccatgcgaagaattgacatcatctcttcttgcaggcggctccagtcatcttccgtatcctggctggtggtttccagtaatgctttaactttgcctacagggacgccattacttatccaacgcttgatctcttcgatgcgttgtatgtcttcttcatcaaagagtcggtgtccgccttcactgcgctgtggttttaacaaaccgtagcggcgttgccaggcccggagagtgacaggattaatcccgcaacgttcagcaacatcaccaatgctgtaataagccacaattcctccttgcggtcacaaatctccgtcgcctgtacacgacccaataatactttgtacaatatacgctaaaattgtacaaagtataaataagatttcagctaaattggatgaaacattatttttaatgtggattaaatttaaacgtaacgtattcattttcacgatgatttactgaaatcatgtgaaagaatgtgctgaaaattattttttctctggccacgctatggaagggataccattcaatttagctttagcaaacagatctccctgaaacatctcaattcctgcggattcaagccacatccactcttctggtgttgccacgcccatagcactgacttgaatttcaagtgatgtacagcattttatgatcgcctgaataattgcctgccgtggcccacttttatgaacattggtaatcaattcctgactgattttaattctgtcaggctggaagcgtgacaggagtaacaaaccagcaaaacctgcgccaaaatgatcaattgctacactgataccagcagcctttagcgatttaatcgcttcggcaaactcatcaaaccgagatatgacttcactttcagtaaattcaacgatgatttgttcaggcaccagagcattggcctttatttcattaagtaaaaaagagactgcgtcaggttcgttaaccagggtcataggtaatagattgattgaaatcattttatcaccgagctcaagtgcgtgtgccatcgtgaatgcaagcgccttacttttgagatccgctgtgtagatttccccgtctttacgctgcccaaccgctatggctgatgggctatcttcatttttttgcacaatggcttcaaaagcgattatccgccgcgataagggatcgacaataggatgaaaggcaaagtggtcgtttatagttggtgaaagggcacaggaatcaagttctttatcagatccgtcagcgataaaaagccaggagtcttcggcagggatctcgaaataggttgattgttcggttgcaaggacaaaagtacgaaaaaattgtagcgctctgtcatcataagttagctgaaattttgatgtgcctttgtcgaatacggcctgtaaaacgtcatctcgctcgtgcaggcgcaaatcaaataattccattcccgctttgccaaaacggcgagcaggcgcgtaatcgcacagcagctcaacaatattatagtgccgtggatcctggcatatagcccgatatatcattttaacctgttcttccggaccttccagaagctggaaaaaatgagaaccattaaacagtaagatccctgttacgtcagactgcatgttcctgcgatttgctatcgaaaccatttcttcgatttttttgacaggttcgtcgtcacgtatatggctacgataaataagggtggtaagcattaacaatccagggtaatgggtgaggcgagagtaagacggtaacagacatatcttcttgtgtctttcttttaataccaaaacataaccgtttctttacattgataaaaaatggaaaaagttgaacactagttggcgaaaaatcttgtatagattgtcagttaaatgatgcaatatgttttatcataacacattgttttatatgcattagcactaattgcaaaaaattaatttatcattctgtacacatatttcgtacaagtttgctattgttacttcacttaacattgattaacatttttaacagaggcgtagcatgcatcaaaattcagtgactttagattctgcgggagcaatcactcgttactttgcaaaagctaacttgcatactcagcaggaaactctcggggaaattgtgactgagattttgaaagatggacgtaatctgagtcgaaagtcgctttgtgccaaacttctttgccgactggaacacgcgactggggaagaggaacagaaacattataatgcactaattgggttgctttttgaataatgcaacagcctgattatttaacaggttagctatgaagtcgttatgaagacatctgataatgaacgtataaaatatgaaattactggccaggcggtgctccagatactgcgcatgaagataaatttttcattgcagactcttattaagcaattactcgtaatgaaatcggctgaggaagatgctttccgacgcgatttaattgacagcataattcgtgattttagcaatagtgattcaggagggccaaaccgaagaacagcgacagctgacaataaaagtatgttcaatggtaagaaaataaacagaatacattaaaatttcataagtaagatgagaggttaccatgcttgaagatactacaattcataatgcaataactgataaagcgttagcaagttactttcgcagttcgggtaatttgttagaagaagaatcagcagtgttagggcaggctgtcaccaatttaatgctttcaggcgataatgttaataataaaaatattatcttaagtctgatacactccttggaaacaacaagtgatattctcaaagctgatgtgattagaaaaacactggaaatcgtgttgcgatacacagctgatgatatgtaacttctaattattaagtataagtttatagaaaactcattcatcttatttttgtctgtcgctttagactatacacagcataattttattgggttaatatttctacgaggctgacatgaataattcaatcccagagagatttatttttcaatgtgctttgtttaaaaatctcgagagggaggtgttcatgacgcatgggtatgttgatagtcatattattgatcaggctttacgcttgcgtttaaaagatgaaaccagtgtgattctttctgatctctatctgcaaatattgcagtacattgaaatgcataagactacactaacggatatcattattaatgacagggaatccgtgctctcttagaacttgagtaaggttttagaataaacatcagctgtatcaccatgctgatgcaaagtgagcatttcaggcgttatgctttcttattatgtccgcaatatcaggtgtcaagaatggagagttctcgctctccattcttgacgcctgatatcccgcctaacttattttgtactgcctacattatgctcaataattaatgggttagatcaagatggagaaaattttatcttcggcgtggatatttcttatgctctctaccatgctctctgtagatgccagcgcgagcgaatgaatggcattttcatgtattaaaccctttggccgggacaagcaaatgcgcaatacactcatacccatcctcgttgcgatatgcttgtttattaccggtgtcgctattttgaacatccagctctggtattccgcaaaagcagagtacctggcgggagcgagatatgccgccaacaatatcaatcatatacttgaagaagcgtcacaagcgactcaaacagcggttaacattgccgggaaggaatgcaacctcgaggagcaatatcagcttggcactgaagcagctctgaaacctcacctgcgcacaatcatcattctcaaacagggaatagtctggtgtacatccctgcctgggaatcgggtcctgttgtctcgtattcctgttttcccggacagtaatttactgttggctccagcaatcgacaccgttaatagattacctatcctgctctatcagaaccaatttgcagatacgcgcattttggttacgataagcgatcagcatattcgtggggcacttaatgtacccttgaaaggggtaaggtatgtattacgcgtggcggatgacattattggaccaacgggtgatgtgatgacgcttaatggacattatccctataccgagaaggttcactccacaaaatatcatttcactattatctttaacccgccgccactctttagcttctacagacttatcgataaaggctttgggattttaatatttattctgttaatcgcctgcgccgctgccttcctgcttgatagatatttcaataaaagcgcaacgcctgaagagatcctgcgacgggcaataaataatggggagatcgtccctttttaccaacctgtggtaaatggtcgggaagggacattgcggggagttgaggtgttagcccgctggaaacaacctcacggtggatatatatcacccgcggcatttattccacttgctgaaaaatccggattaatcgttccgcttacgcaaagcctgatgaatcaggttgccagacagatgaacgctatcgcgagtaaattgccggaaggttttcatattggaattaattttagcgcttcgcatattatttcgccgacgtttgtcgacgagtgtttaaatttccgtgacagttttacccgccgcgatttaaaccttgttctggaagtcaccgagcgtgagccattgaatgttgatgaaagtctggttcagcggttgaacatactgcatgaaaatggttttgtcatcgcactggatgatttcggtactggctactcagggctttcttatcttcatgacctgcatattgattatatcaaaattgatcacagtttcgttggccgcgtaaacgcagacccagaatcaacccgaattctggattgtgtattggatctggcgcgtaaactttcgatcagtatcgtcgctgaaggtgtcgaaacgaaagaacaacttgactatctgaaccaaaattatatcacatttcagcagggttattatttctataaacctgttacatacatcgacctggtcaaaattatcctttctaaaccgaaggtgaaggttgtggttgagtgaaaattgatcagtaaggccatagtgcggtgtaattatagacagctaattagctcgttgcctcttgttactattgttcattattttgtttgctataattgtttgaaagttttgacaggattgccattagtagcatgaacaatagtaataatctggattatttcactctctatatcatattttccattgcatttatgctgatcaccctcctggtcatccttattgcaaaacccagtaccgggctgggagaagtgcttgtgacgataaatttgcttaatgcccttgtttggctggcgatcaatctggttaatcgattaagagaaagactcgtcaaccacagggatcagcaataatctttcagtttctcactgtcagtatgcggctgaatgggttgctggcagtgaacgcctggatcattgaaggaaaggcattattgcgcaaatagttgtcaaccctggtgttatcacggttgtttttatatatcaccgaaataatcctcatcgcaactattaacaattttgatgtcgaagagttatttgttaaacaaaatcgtcacctcaaagtgatcaatgtcatgaaaataaggtgaaaaatgataatgccgacttatttatcatttatatattgtcgctgtttatctatttaaattttttgtgcttttgtttttgtctttaccctccgttttggtaatctgagctcataggttatttgaccaggaatgtttgttaatccaatgaatggatggttaatctatgaaactgaaaaaactccccgggtttagtttgggacttattgctctggcggtgggtaatgcatatgcaacacaattgttggatgattatagtataatttcctatatgactgatgaagaatcgccgattgaaatcaaagataataatccgataagtaatggagagtatctaaccactgaagacgaaagccatgctgtgaaagtggatgacggtgtaactggatatataaataatgccagtgtgatgactagtggtgatggatcttatggtatttctgttgatagtcaaaacaaagtattatatataagcgatagcgatattaagacctctggaagcgtatctgacaaagaaaatggagggataacagccagcgcagtagtcagtgaatttggtggcaccatctttatgaatggtgataattcagtcgagtcgggtggggcatattcagcgggacttttaagccaggttaatgattctgaaaagatggtaaataacacccgtcttgaaaccacagataaaacgaacattgttacctctggggaaaatgcagtaggtgttcttgcatgttcaagtcctggagagtctcgaacatgtgtcgatgctgtagatgatgaagttagtgattctaacagttacgaagttattagccgtgctgatttaaaaatgaatggtggttccataacaactaatggcattaatagctatggtgcttatgctaatgggaaaaaagcatatattaatttagattatgtggcacttgaaactgtggctgatggaagttatgcagttgctattcgacaaggtaacattgatataaaaaatagttctattacaacaacaggcactaaagcccccattgcaaaaatatacaatggtggagagttatttttttccaatgtcaccgcggtatcaaaacaagataaaggaatatcaattgatgcatcaaatatcgattctcaagccaaaatagcactattaagtgttgaactttcaagtgctttggatagtattgatgttaacaaaactacaacggatgtaagtatccttaatcgaagtattatcacacctggtaataatgttctggttaataatactggaggtgacttaaacataatttcgtccgactctattctaaatggagcgactaaactcgtcagcggcacaaccacgctgaagctttcagaaaatacaatctggaatatgaaagatgactccgttgttacccatctgactaattcagacagtattatcaatctttcgtatgatgatggtcaaacatttacccaaggaaaaacattaaccgtaaaaggtaattatgtcggtaataatggtcagcttaatatccgcaccgtattaggtgatgataaatcggctacggacagacttattgttgagggtaatacttcgggttcaactaccgtctatgtgaaaaatgctggaggaagcggcgcggccacgctaaacgggatcgaactcataactgtgaatggcgatgaatctccagcagatgccttcagataaggtgatgcaaggattgcagctggagctttcgaatatcaactaaaacaacaaggcaaaaactggtatttgacaagttatcagtcagtgaatgaggaggataacagctcagagggaaattcagaatcaacagaaacgcctacccccgtcctgcgccccgaagctggaagttacgtcgctaacctggcagctgctaacactctttttgttatgcgtctgaacgaccgtgcgggtgaaacgcgctacatcgatcctgtaactgaacaggagcgttcaagccgactttggctacgtcaaattggcgggcataatgcctggcgtgacagcaacggacagttgagaacgacctcgcatcgctacgtctcgcagttagggggcgatctgttaaccggtggttttaccgatagtgacagttggcgtttgggagtgatggctggttatgcccgcgactacaacttaactcattccagcgtgtcggattatcgttcgaaagggagtgtcagaggctatagcgcagggctgtatgccacctggtttgccgatgacatcagtaaaaaaggcgcatacattgactcctgggcgcaatatagctggtttaaaaactcggtgaaaggggatgaattagcctatgaatcctatagcgcgaaaggtgcaaccgtctcgctggaagcgggttacggttttgccctgaataaatcctttggtctggaagcggcgaaatatacgtggatcttccagccacaggcacaggctatctggatgggcgtcgatcataatgcgcacacggaagccaatggctcacgtattgagaatgacgcaaataacaacatccagacccgactcggcttccgcacctttattcgtactcaggagaaaaacagcggtccgcacggtgacgactttgaaccttttgttgaaatgaactggatccataacagtaaagattttgctgtctcaatgaacggtgtgaaagtcgaacaagatggggcgagtaatttgggggaaattaaacttggcgtaaatggcaacctgaatccagcggccagcgtctggggaatgtgggcgtgcagctgggtgataatggctacaatgacaccgcagtgatggtgggcctgaaatataagttctgatcccgccgttagctaaaaaaccgcgtcgtattcatcgacgcggtacatatgaaatattattttttgccgatagcacgcatggtgtcatcaattgccgtgatcaacagcatttgcgggtctttagcgcaaacctgattcagtttttctaccactttggcgctcagttccggagattgctcaatttttaaatcacggctggcaacgctggcattacccattaccgcaacaatttctgcaacctgtgcgctgtcagtttttgccatttcgttggcttctgcgcaagtaatataggtttctgacggcaaaccgtttttaatattgtagtcctgcgcccaggtcattggtgcgaaaacaaacaggcccgccagtaaagcaaattttttcatcatcattccttatttcattttacccagaattgcaccacccgtaccgccaatcacggcacctttaatcgccccttcgaggccattgccggtcagaacgccagtgacagcaccaacggcggcacccacttttgcacctttacgcgcatttttaccgtcgcggcctttttctgttactgcaccaacaccagcgccaacagctgcacctttcagtacgccattaacaccattgccagtaagtaaaccaacgcctgcgcctagcaatgcacctttcgtggtgcggttcatatccgccatcgctggcgtggagcagaacaatgctgagataagcccgaaggcaagtatttttttcttcaacttagatgtccggtattaagtaagttgcacacacaataatttcgtcttcaattaagatctgcttaactaaagaacgctcgctattattcagataattcaaaatgagcgtggctgtgatgataggaattatgttttttacgtgaatgagaataatcttaaatgaggaataactcattgattgacaatatttttattcaagaagtgtcattgactgttaacgcaatgttgtaaaggtaagataatctgatttatcaatattattgtgtgatttttatgtgagcagaagatattcatcagcaacgattacattagtcattttattttgccgacggcctcattgtcgaaagataagcgtacgacagtattatcagaaaagagtgattttttatccaactacacttcagcgcactgcgtgtaaaaaatgcctctttcttatgcgggatatcatcatttcatcatgatgtctttggtgagcggtgaacacaatacacctgcgctgtctcttcaggatgaatcccctggtctggtgcctgcgggctgatgttgcagcagagcttaggtcacttagacgctactatcatttatccaatggcatggaatcgaaatcagtcgatacccgcagtatatatcgtgaactgggtgcaacgctgagttacaacatgcgcctggggaacggtatggaaatgaaccctggctgaaggcggctgtgcgcaaagaatttgtcgatgataaccgggtgaaggtgaataatgacggtaatttcgtcaatgatttgtcgggcagacgtggaatataccaggcagctattaaagcctcattcagcagtacgtttagcggacatctcggggtggggtatagccatggtgccggtgtggaatccccgtggaacgcggtggctggtgtgaactggtcgttctgaccatcaacgattaaactgcgcttcggcgcagttttcgtttacaggatgttgaaagggaaaattctggggcaaaaaaagcccgccagttacggcgggaaacctcatcctatgggagaacaatgaataatgaaattgcggggttatcatctcccagtatatccatactaacaataaggttatttactcaaccaggcataaacattttgttttgtgcgtgggaacagccttaaggtgtaaagggggaggtggaaatagcaatgaggagtatcagcaagaatactcgccgctttaccacaacgtggatgagagggatgaaaaactcaaggcagagataactctgccttgaagataaatgcgcttttacagcgggcttatttcagctcttctgcttccggtaaggtcacgttcagctcaagaatagaaatatcgccatctttttgctcaagctgtacggttaccatctcaggatcaatttgtacgtatttacaaatgacctcaagaatatctttacgcaactgcggcagataatgcggttctgcatcgctgcgacggcgttcagcaacaataatctgcagccgttcttttgcaatgttggctgtgtttttcttccgcgagagaaagaaatcgagtaatgccataacttatcctccgaacaagcgtttgaggaagcctttcttctcttcttcaatgaagcggaaaggacgttcttctcccaacagacgttctacggtatctgcgtaggctttacccgcatcggcgttaatgtcgagaatgaccggttcaccctggttagaggcgcgcaatactgattgatcctctgggatcacgccgacgagtttgatgcgcaggatctccagcacatcttccatgctcagcatgtcacctctgcttacgcggcctgggttatagcgcgttaacagcaggtgctctttaataggctcttcgccattttctgcgcggcgtgatttcgacgccagaatgcctaaaatacggtcagagtcgcgtactgaggagacttccgggttggtggtaataatggcttcgtctgcaaaatagagtgccattaacgcaccggtttcaatccctgccggggagtcacaaacgataaattcaaaatccatcgctttcagatcatcaagaactttggcgaccccttcacgggtgagggcatctttatcgcgtgtttgcgatgccggcagaatatagagattttcagtacgcttatctttaattaacgcctgatttagcgttgcatcgccctgaatgacgttgacgaaatcgtaaacgacccggcgttcacaacccataatcaggtcgagattacgcaggccgatatcaaaatctatcacgacagttttctttcccttctgggccaaaccagtggcgatggccgcgctggaggttgtcttaccaacaccccctttgcccgaagtaacaacaataatgcgtgccatagaaattccttgttaaaaagggatcaatttaacggttgaacggtcaaagcgttttcgactaactgcagtcgcgccgctttgccataaaattctgctgggatttgatcactcagccagtattcacctgcgatggacaccagttccgccatcaggttcgtacaaaatatttgcgtttcccggtcaccacttgcccctgccagcgcacgaccgcgcatcatgccatagacatgaatgttcccatcggcaatcaattcggccccagcgctaacgtggcttgtaacaatcagatcacattgtggagcataaatacgctgaccggaacgcaccggggtatctattaaacgcgtttttgtgaccggcgttgtattttgcgctggagcctgcggtgtgggagctggacgtggcgctttttcctttccttccgtcaggataggcagccccatcttttcaatttcggctttaagttgcgcatctttgcagccacttacgccaataacccgcaaaccggttgccgaaaccgccttatgcatcgctgaccagtttaccgggtcttccagtgcactgacgttgagtacaacgggggcatgttttaaaaatgcgggggcctgagcgattttgtcttccagcgcctgatggataaccttaggttctgcctcatgcagatgaaccacagataaagtgaagctactgcctttaagctcgattggcgtgtttgacatcctggccttactcaattagctattaatcatcgccagcgcgcgatgatgttccgaagactataaggcatgttatagtctggattatattgaggcaagtcaccctcccatttattcagagtaaaagtctattctgtgataaatggcgctgattcatagcttaaaaaatacccttgtcaatcaacccattgccgtcgtacttttgattgttcttatttacgcttcctttttccgcaccctaatcgtgacagcatctccagacctgtttaaatatccagtattgaggcaagtgtattttttcaccacgccaggctttcttaactttccattttttgcggcatcattaaagaacagatacccgttatcttaatatccgccacagaattgctctatcatagaaaccgcagaagacgtctgatacttctgtcaggtcatcgtaactcgtccaggtcagcggttttgattacggattgatgatgaaatgagcataagtgttgtacggttggattatcaggatgtgctatgaatatgatgcgtattttttatatcggattgtcaggtgtggggatgatgttctcatcaatggcgtctggaaatgacgctggcggacttcaatctccggcgtgcggcgttgtttgcgacccgtatatttgtgtgaactcagatggcatttccccagagttaacaaggaaatatctcggcgaaaaagccgctgaaaacttacaatcattacaaggctacgatcccagcgaatttacattcgctaacggtgtattttgcgatgttaaagaaaaattatgtcgtgatgatcgttattttggtgtggatggtaagcggagtggaaaaatcaatcaaaccaccacaaagatgttatttatgtgtcgtgagtgatgtcttgtttacattatgttctattcgtcattaacctcttgagcgacagagaggagtggggcattaacgtttatgacggggagagtccccgtcggttgacatttacttaatttgaatatcgacgttatattttttagttttgtttttacgggcgtcgtttcgggtttgcaacactcgcagctcatatttgccagaagcagggagtgagtattgtccgtgactatcgagttctggggaatatctggataaatcaactgaatcatcgattcctggcccgaagaggtaagtatcagcgccttcattagagatactcacatgcactttctgaccttttttggcatagaaggtatatgtatcgtaatcgtatccctttatttcgccggagtactgagcgctgctatggccttttctgaactcaacattgacattcttacccgcagcaaagctcgtggaggttagcagtgcaagcagcaatacagccttcctgatgctcttgattttcattggtagtctcctgttcagaatgagtacgatgaactgttataatataacaatccctaacgggagaattccagtggctttcctgcgttcggtaaaatcacgttgcggcatttttgccggggggattacttataaagggggcatggactcaacaaaccgtagaaatctacagctggctggcttgtggcgcgggtttcattgatgttagcttatgccaaaacctggcatcttaaagagtaaaagtatgttttgtgtgatttatcgaagcagcaagcgtgaccagacctatttatatgtcgaaaaaaaagacgatttttcgcgtgttcctgaggaactgatgaaaggttttggtcagcctcagttagcgatgattctgccgctggatgggcggaagaaactggtcaatgccgatattgaaaaggttaaacaggcattaaccgagcaaggttactatttgcagttaccgccaccacccgaagatttgctgaagcaacatctttccgtcatggggcagaaaacagacgacactaacaaataaccgatatccggcggtggcattatctttgtcggcgcgggttttcatatccacgataaggtgaggggaacgttatgtatcaacatcacaactggcaaggtgcgctgctggattatccggtgagtaaagtagtctgtgttggcagtaactatgccaaacatattaaagagatgggcagcgcagtgcccgaagagccagtgctgtttattaaaccagaaacggcactgtgcgatctgcggcagccattggcgatcccatccgatttcggttcagttcatcatgaagtcgaactggcggtgttgattggcgcgacactgcgtcaggctacggaagagcatgtccgcaaagccattgccggttatggcgtggcgctcgatctgacattgcgtgatgttcagggaaaaatgaagaaagccgggcagccgtgggaaaaggctaaagcgtttgataactcttgtccgctttccgggtttattcccgcggcggaatttaccggcgacccgcaaaatacaacgctgagcctgagcgtaaacggcgaacaacgccagcaaggtacgactgcggacatgatccataaaatcgttccgctgatcgcttatatgagcaagttttttaccctcaaggccggtgacgttgtgttgacaggcacgcctgatggcgtcggcccgttgcaaagcggtgatgagctgacagtcactttcgatgggcattctttgacaactcgcgttttgtaatactttttgccgcctgaaagcggcggcaaaacttgcatcgctgtgccagactggttataaggtgcgttttaacgtaatggcggaacacctgatgagcgatgtacctttctggcaaagtaaaaccctggacgaaatgagcgatgcggaatgggagtcgttgtgtgatggttgcggtcagtgttgcctgcataaactgatggatgaagacaccgacgaaatctacttcactaacgtcgcctgtcgccagctcaatattaaaacctgtcaatgtcggaactacgaacgtcgtttcgagtttgaacccgactgcattaaattaacccgtgaaaatctgccaacattcgaatggctgccaatgacctgcgcttatcgtttgctggcggaaggtaaagatttacctgcgtggcatccgctacttactggttcgaaagcggcaatgcatggtgaacgtatctctgtgcgtcatatcgcagtgaaagaatcagaagtgattgactggcaggatcatatcttaaataaacctgactgggcgcagtgataaatttaatagatgctgatgggggctttcttaatatacgtctggatgctcgccatttcgtagccctgtttttgaaagcgctctgtcataatgagagttacccgataccttattatcaacaggtaactctcaatctttaaaaaacgtctgtgtttttaaatgtgataaaccttataccttgagtacatggagagaataatcgcttatcagacttcaggtacctcaaagagtgtctttttaccgtgtcttttctgatactcattacaggtgttaatcatttttttggccgcttcttttagcaaagaaagcattaaatcatcataatcaacgtagaatctggttgtttcagtttccgtttttatctcaccgatggcggctatttcggtggttaatttcaatttggcggcatcgatatctttattcgcttgtttaaccgtgttagacagggtggtaaagaaattctgcacagattttaacttgttcttcaattctggaatcagttttccttcaactacgcccgcagcaatagaataggaaatgattaatccaaatggaccggcgacgacaccggctgcggcaccggcatatgcttccttcctgattttatctacctgtgactggaaatagctgcttttttctgaaaaatcattggttaactggctatctaacgccagcagtttcccggaagcgttgttgaaactttgtgagcttaccagcagggatttttgcgcttcattcagcttcgtgatgccgtcatccagtaccttaatgagaatgtctttctgggcggatgctttcttctcattgtactcatcaaatagcaaaatatacgctgcgagcaattgcgtcgcaacaccacaccattcatacactgtttgggttgcttcaaaatacttatcctggctatccataagtaaggttttaatatcgccgactaaaacggaggctgcctgtgaatactcctgtttaaagcgacttaactcttttatggtttcatcaaaggtctgccaggggatgacctgatcgagatatttattataaagatctaatgctccatctgcggtttcgattgcgtttttaactacttctaccgttttatctgcaacgatttcagtcataatcattcgcctctttaaatatataaattgtaatgaaactcctgttttacaactattaataaattttacttcatctaattcatagttagccgggcgggatgcgtcaatgtctttatttctattaatatgataaatatcaaacaatgtttaatgtcattatggcgaatgcttctattctattttttagccgggtgatatttttcatttctgctggatgagcgtcgtcgccagaaggccacgtgagcacaagataagagaacgaaaaatcagcagcctatgcagcgacaaatattgatagcctgaatcagtattgatctgctggcaagaacagactactgtatataaaaacagtataacttcaggcagattattatgttgtttatcaagcctgcggatctccgcgaaattgtgacttttccgctatttagcgatcttgttcagtgtggctttccttcaccggcagcagattacgttgaacagcgcatcgatctgaatcaactgttgatccagcatcccagcgcgacttacttcgtcaaagcaagtggtgattctatgattgatggtggaattagtgacggtgatttactgattgtcgatagcgctattaccgccagccatggtgatattgtcatcgctgctgttgacggcgagtttacggtgaaaaaattgcaactacgcccgacggtacagcttattcccatgaacagcgcgtactcgcccattaccatcagtagtgaagatacgctggatgtctttggtgtggtgatccacgtcgttaaggcgatgcgctgatgtttgccctctgtgatgtaaacgcgttttatgccagctgtgagacggtgtttcgccctgatttatggggtaaaccggtggttgtgctatcgaataatgacggttgcgttatcgcccgaaacgctgaggcaaaggcgcttggcgttaaaatgggcgatccctggttcaaacaaaaagatctgtttcgtcgctgtggcgtggtttgctttagcagcaattatgagctttacgcagacatgagcaatcgggtgatgtcgacgctggaagagctatcgccccgcgtcgagatttacagtattgatgaggcattctgcgatctgacaggtgtgcgtaattgtcgcgatctgactgattttggcagagaaattcgcgcaacggtgctacaacgtacccatcttactgttggtgtggggatcgcccagaccaaaacgctggctaagcttgccaatcatgcggcaaaaaaatggcagcggcagacgggtggggtggtggatttatcaaatctggaacgccagcgtaaattaatgtctgctctccccgtggatgacgtctgggggattggacggcggatcagcaaaaaactggacgcgatggggatcaaaaccgttctcgatttggcggatacagatatccggtttatccgtaaacattttaatgtcgtgctcgaaagaacggtgcgtgaactgcgcggcgaaccctgtttgcaactggaagagtttgcaccgacgaagcaggaaattatctgttcccgctcgtttggtgaacgcatcacggattatccgtcgatgcggcaggccatttgtagttacgctgcccgggcggcggaaaaacttcgcagcgagcatcaatattgtcggtttatctccacgtttattaagacgtcaccatttgcgctcaatgaaccttattacggcaatagcgcgtcggtaaaactgctgacgcccactcaggacagcagggatatcattaacgctgctacgcgatctctggatgccatctggcaagcgggccatcgttaccaaaaagcgggcgtgatgctgggggatttcttcagtcagggagtcgcgcagctcaatttattcgatgacaacgcaccgcgccccgggagtgagcaattgatgacggtaatggatacactgaatgctaaagagggcagaggaacactctattttgccgggcaggggatccagcaacaatggcagatgaagcgagccatgctttcaccacgttatacaacgcgaagttctgatttactgagggtcaaataaatatagcggcaggaaaaaagcgctcccgcaggagcgccgaatggattagcgaccgaacagatcacgttttttcgctttaaacggctgggaaatcaccaccagcactgcgacaatcaggtaagcgataaaaataccgagcagccactgcggcatttccagacctaaaaaatcccactgacgctcggcgcaatcgccagaggcgacaaacacttgcggcacccacttatccagcggcagccattccgggaaacgaaccataaaatcacaggtggcaaacggcgaaggatagagctgaagcatggtgtgctcgtaagttaactgcacaccgcggaacgcactatacaaccagataaccatcgctacataacgcagcggagttttcggggcgatcgcgccaatcagcgcagcacccagaacgccgaataacgcgcagcgttcataaatacagagcacgcaaggtttcagtaacatcacatgctggaaccacagcgccgtcagttccagtgccagagcagtaaacgccatcaacagccacgcgccccggccttgtgaacattggttcaaaaatcgcaacataatcatttccctgcaatatgcatagagtgcgcagtttaaaccaattcattcgctgcgccaccaggaggcagcaaaaataggacgcaattggacaattatcgggcgaaaaggcaaaccgggcatttatatgcccggtaagttgttatcaaagcgttgctatccagcccatttgcataaaccattcggttacaggggcaagcgtaaactcgacgcagagcaagccgacgagtgtcaggacgagggtgtaaggcagggccatccacaccatgcggccataagagaggcgaatcaatggcgcgagtgcagaggtcagcaggaacaggaacgcagcctgaccgttcggcgtagcgacggagggcagattggtaccggtattaatggcgaccgccagcagctcgtattgcttcaacgtgatagcgccactttccattgccgctttcgcttcgttgatataaatcgtccccacgaagacgttatccgaaatggatgacagcagaccgttgaaaatatagaacagcgacagctgagcatgttccgatgcctgcaacacaaactgaataattggcgaaaacagttgttggtcgataatcaccgcgactaccgagaaaaacaccgtcaacagtgcggtgaatggcagagattcggtgaaggctttaccgatagcatgctcatcggtgacaccggtcaatgatgttgccagaataatgactgacaaaccaatcaagccaacttccgccagatgcaacgccagcgcagtcaccagccagacgccaataatcgcctggacaatcagacggattttatcctgacgggtacgctggtggcggctttgatcgtcaaactgttgcaacacttcgcggactttctccggcagcgtttcaccgtagccaaaccaacgcagcttctctaccagcaggcaggttaacaggccacaaatcagaaccggaacggtcaccggcgacatgcgcaggaagaaatcgccaaaatgccagccagccgctttagcgatgatcaggttctgtggttcgcccaccatggtcattacgccgcctaatgcggtgccgacaccggcatgcatcatcaggctacgcagaaagccacggaactgttccagaaccactttgtaatgcttgtcgatatgactatcgtcttgcaggtcggtgtcttcggtacgggaagaggctacgcggtgataaataccataaaaaccgactgcaacgctgatcaccaccgccacgacggttaaggcatcgaggaacgcggagaggaacgcagccgccacgcaaaaagagagcgacagcagcattttggagcgaatgcttaacagcaaacgggtaaatatgaacagcaacagctgtttcataaaatagatacccgccaccataaacatcagtaacagcaagacttcaagatttgccgccacctcttcacggacgtgttccgcgctggtcatgccgatgaataccgcttcgatagccaacagaccaccggggagcagcgggtagcatttcagggccatcgccagagtgaaaataaattccgctaccagcaaccagcccgcgacgaaagggctgatgaggaaaattaacgggtttacgattaagaaaatgatgagggcgagtttgtaccagtcgggggactggcccaaaaaattgcgccatagcgcgcggccccaggagatctccatgatggtttcccttaccttacaaataatcaatgatgtttttatgtttaaacgcaaagcttaacggtcaggcaggagtgaggcaagtcttgatagtcaaggggaaagagatgcggaaaatgaagccttgatccctttttcttctttttgtctgctatcagcgtagttagccctctggtatgatgagtccaactttgttttgctgtgttatggaaatctcactatggtcattaaggcgcaaagcccggcgggtttcgcggaagagtacattattgaaagtatctggaataaccgcttccctcccgggactattttgcccgcagaacgtgaactttcagaattaattggcgtaacgcgtactacgttacgtgaagtgttacagcgtctggcacgagatggctggttgaccattcaacatggcaagccgacgaaggtgaataatttctgggaaacttccggtttaaatatccttgaaacactggcgcgactggatcacgaaagtgtgccgcagcttattgataatttgctgtcggtgcgtaccaatatttccactatttttattcgcaccgcgtttcgtcagcatcccgataaagcgcaggaagtgctggctaccgctaatgaagtggccgatcacgccgatgcctttgccgagctggattacaacatattccgcggcctggcgtttgcttccggcaacccgatttacggtctgattcttaacgggatgaaagggctgtatacgcgtattggtcgtcactatttcgccaatccggaagcgcgcagtctggcgctgggcttctaccacaaactgtcggcgttgtgcagtgaaggcgcgcacgatcaggtgtacgaaacagtgcgtcgctatgggcatgagagtggcgagatttggcaccggatgcagaaaaatctgccgggtgatttagccattcaggggcgataatcccttccgtttaaagagcaaacccctcaaacgaggggttttttgttgtttttacagatttcccattcttggcgggcaacgttccagcaactcgatgctgccgtcttcgttttgctgttcgagcatcacatcaaatccccacaggcgatgcacatgcttcaggacttctttgcgcccccgatccagcggtgcgcgattatgtggaatataacgcagcgtcagcgaacggtcgccgcgcaaatccacgttccagatctgaatattcggctccagattacttaagttatattgcgacgataaccggttacggatctcccgataaccttcttcattatgaatagcggaaatctccagataattatgccgatcgtcatccagcacggtgaagaagcggaaatcacgcatcactttcggtgacaggaactggctgataaaactctcatctttgaaatcacgcatcgcgaaatgcagcgtttccagccagtcggaaccggcgatatccgggaaccagtatttgtcttcttccgttggcgactgacaaatccgtttaatatcctggaacatggcgaacccgagggcatacgggttgatgccgctgtaccacgggctgttataggggggctggaagaccacattggtgtggctgtgcaaaaactccagcataaaacgttccgttactttcccttcatcatacagatggttaaggatggtgtagtgccagaaggtcgcccagccttcgttcatcacctgagtctgtttttgcggataaaaatactggctcaccttacgcacaatacgcaggatttcacgctgccatgattccagcagtggcgcatttttctccataaaatagagcaggttttcttgtggttcggacggatagcggcgcgcttcagcaaccgttttctcttcctcgcgcttcggcagggtacgccagagcatattgacctgactttgcagatactcttcgcgacttttctgccgggctttctcttcttgcagcgagattttttgcgggcgtttgtaccggtccacgccgtagttcatcagcgcgtggcacgagtccagaagccgttctacttcatcaacgccataacgctcttcgcactcggtaatatatttacgggcaaaaatcagataatcgacaatcgaactggcgtcggtccagctacggaataagtaattgtttttgaagaaagagttatgcccatagcaggcatgagccatcaccagcgcttgcatggtaatggtgttctcttccatcaggtaagcgatacacgggttagagttaatgacgatttcataggccagtccttgctgaccgtgcttatacagccgttcagtctcgataaactttttaccgaatgaccagtgcggatagttaattggcatgccgacgctggagtaggcatccatcatctgttctgaggttatcacttcaatctggtgcgggtaggtatccagccggtagagtttcgccacccggtctatctctgccagataaacatccagcaggtcgaacgtccagtcgggtccatcgctcaaacgtgtggtgtccttattcatagaatcgatcgtcgccatacgcgcacctcattgttgtcggcgctctctgtgtggagcacctcatttcaagcatagaacacctgttaaaaaccgcgtcgccggagaatttttttctttgcgatttcttattatcagagtgccactaatccgcttctgaacggaattttatgctggataaaaagggcgttcagcaggagatactaaagacgccatattgccgcagagtcagggagatgtgagccagctcaccataaaaaagccgcatgttgaataatattttcaactgagttatcaagatgtgattagattattattcttttactgtatctaccgttatcggagtggctatgcgagttgtcatactgggaagtggtgtggtaggcgttgccagcgcctggtacttaaatcaggcaggacatgaggtcaccgtcattgatcgggagccgggggccgccctggaaaccagtgccgcgaatgccgggcaaatctcccccggatatgctgcaccgtgggcggcaccaggtgtgcctttaaaagcgattaaatggatgttccagcgccatgcgccgctggcggttcgtctcgacggtacgcagttccagttgaaatggatgtggcaaatgttacgtaactgcgacaccagccactacatggaaaacaaagggcggatggtgcgtctggcggaatacagccgtgattgcctgaaagcattgcgcgccgaaaccaatattcagtatgaagggcgtcagggtgggacgctgcaactgttccgtaccgaacaacagtatgaaaatgcgacccgcgatatcgccgtgctggaagatgccggcgtaccgtatcagctgctggaatccagccgcctggcggaagtggagcccgcgctggcagaagtggcgcacaaactgacgggcggcctgcagttacccaatgatgaaaccggagactgtcagctatttacccagaatctggcgcggatggcggagcaggcgggggttaaattccgctttaatacgcccgttgaccaactgctttgcgacggcgagcaaatctacggcgtgaagtgtggcgatgaagtgattaaggccgatgcgtatgtgatggcgtttggttcttactcgacggcgatgctcaaaggcattgttgatattccggtgtatccgctgaaaggctactcgctgaccattccaattgcgcaggaagatggtgcgccggtatccaccattcttgatgaaacctacaaaatcgccattacccgtttcgataaccgcattcgtgttggcggaatggcggagattgttggttttaataccgagctgttgcaaccgcgtcgtgaaacgctggagatggtggttcgcgatctctatccacgcggcggtcatgtcgagcaggcgactttctggactggtctgcgcccgatgacgccagacggcacgccggttgtcgggcgtacacgctttaaaaatctgtggctgaataccggtcacggcacgctcggctggacgatggcttgcggttccggtcagttgttaagcgatctgctctctggtcgcacgccagcgatcccatatgaggatctaagcgtagcgcgctacagccgtggatttacgccatcacgtccgggccatttacatggcgcacacagctaaggaaacgagatgacccgtccgatacaggccagcctcgatctgcaggcattaaaacagaatctgtccattgtccgccaggccgcgacgcacgcgcgcgtctggtcggtggtaaaagcgaacgcttacgggcatggtattgagcgtatctggagcgcgatcggggccaccgatggctttgcattgcttaacctggaagaggcaataacgttacgtgagcgcggctggaaaggaccgatcctgatgctggaaggatttttccatgctcaggatctggagatttatgaccagcaccgcctgaccacctgcgtacacagcaactggcagctcaaagcactgcaaaatgcgcggctaaaagcaccgttggatatttatcttaaagtgaacagtgggatgaatcggttgggcttccagcccgatcgcgtgcttaccgtctggcagcagttgcgggcaatggcgaatgttggcgaaatgaccctgatgtcgcattttgccgaagcggaacatcctgatggaatttccggcgcgatggcgcgtattgagcaggcggcggaggggctggagtgtcggcgttcgttgtccaattcggcggcgactctgtggcacccggaagcgcattttgactgggttcggcctggcattattttgtatggcgcttcgccgtccggtcagtggcgtgatatcgccaataccggattacgtccggtgatgacgctaagcagtgagattattggtgtccagacgctaaaagcgggcgagcgtgtgggctacggcggtcgctatactgcgcgcgatgaacagcgaatcggcattgtcgccgcagggtacgccgacggttatccgcgccacgcgcctaccggtacccctgttttagtggacggcgtgcgcaccatgacggtggggaccgtctcgatggatatgctagcggtcgatttaacgccttgcccgcaggcgggtattggtacgccggttgagctgtggggcaaggagatcaaaattgatgatgtcgccgccgctgccggaacggtgggctatgagttgatgtgcgcgctggcgctacgcgtcccggttgtgacggtgtaacttgttgtaagccggatcggaggcaacgtcttctgggtgcaaaaaaatcatccatccggctggtcagcaactgtagttgttaatgtgacagagccattgcccatgatagtgtccattaaaaggatggacactatttccccggaacctgaactcaccgcacaggcgttctacataaaacgcttacgcttcattgttgactcgaactcgacttcagataaatcacgctttacccttgatggagcctgtacatagatttgtgtaattgcctgattttgatatgttcaattcaacatcaaatgaaggttaaattatggacgacaaacaattgcaggctcaggctgcgttcagcaaagcatcgcaaccggcgatagatgcttcattaaatttaagattcagcttcctcttcagccacccgtacgccaatcttcaacacttcattatcttctttctcggccaccgtccagatcatcccggcaaactctacctggtcaccgacaaccggtgccgcgcctaacaactgctggacaatttcacccagcgtttgctgcttatcacgatattctcgcccgtcttccaggccatatatcagcgcaacatcagcatatttggcgctggcttcgagaatgaagtcaccaaagaagcgttgatccagcgcgaccggcggcgactggctgaacagtttaccgagcgccggaagatcgcgttcccgaccaattacacacaacacatcgccttcgcgcagtcgggtgctgccggtaggatgaagcaactggttatcacgaaacagtgccgcaatacgcgtctcttttggcatatgcaaatcgcgcagtgccgcgcccacgcaccatttatcggcactcaattgataaacaaactgctcccacggattttccggatgaatatccaggccaacgcgtgacaccggacgtcccactggcggaaccaccactttggcttttttagccgcccacgagagtgatgttccctgcaagagcagtgaaaccagaaccacaaagaaggcgacattaaagaacagacgtgcattctccagccccgccatcatcgggaacacggccaggatgattggcaccgcgccgcgtaatcctacccagctgataaacacgcgctcacgcagattgaaaccgcggaaggggagcaatccagcaaataccgaaaggggacgggcgaagaatatcatccatgcggacaaaatgagcgccggaatggcaataggcagcagatcgcttgggttaaccaacagccccagcaccaggaacatggcgatttgcgccagccaggcgaggccgtcgaaattttgcaggatgccgtagcggttgcgaatagggcgattacccagcagaaaaccgcacagatacaccgccagaataccgctaccttccagcgcagtagttaatgagaaaatcagaataccgccacttaatgccagcaatggatataatccggcgggcagggcgatgcggttgatcatttgcagtagtaaataaccgccgccaagacctattacaatgcccagaccaaattgttgcagaatatcgacaatgaacatccagctaatattgctctcatgatgctggatcatcgcaattagggtaatcgtcagaaagaccgccattggatcattactgccggattcaatttccagcgtcgagccaacacgttcgttaagccccttaccacccagcagagaaaagaccgctgcagcatcggtagagccgacgatagcgccgattaataagccttcaatcaaatcaagattaaacagccacgccgccatcatgccggttaaaccagaggtgataagcacgcccagcgtcgccagcgacagtgccggtcctaacgccacacgaaaggaactggcctgagtgcgcatcccgccgtcgagcaaaataatcgccagtgccaggttacttaccatgtaggcgaaggggtaattatcaaacgggataccgccgacgccatcgactcctgccagcatgccgatcgccagaaaaataaccagaataggaatgccaagacgggaagaaaatgaactaagtaatatactgctggtgacaaggatggatcctaagatgaaaaggctaattattgttgtggcatccaacggtcggttactcctgattacgctgtctcttatataaaccctaccatattagcggcagagacagcgttttacttagccctgaagcgtgatttttttacattttaagaacaggatgaccgctaatcgtcaactgagtgccttcccgggtgttattcagaatggcatgtgcgcccaacggcagcgtaaccgtgcgttgttcatgaccaaaatcgaggccggtaatgagtggaatcgacaggcgggaacgcaaaaacgcgtacactgactccaggttgtaacctgcgtcataatcattgggcgtgctgccgctaaagctaccgagaataatcgccttctgacgtggcaaaattcccgcatgatagagctgcaacagcatacgttcgacccggaaagggtgctcgttaatatcttccagcaccagaataccgttctcaatttttggcatccacggtgtaccgatcagtgaaatcagcatcgcaagattgcctccccacaacgtgccttcggcccgacatgtcgggccttccccttgccattcaatggtgaaggtttcattgcgtaacgccagccagaaatggtgctcggtaaaggcgttcagttcatccgcgccaaagtttgctaccagcatggggccgctaaaggtgatgacattgccatgcgccagaagaccgcactgaatggcggtaaaatcgctatgtccgcaaatgagcaacgggtcatgttgttggcgagccaccagtgcctgccagtcaatatctgccagtaaacgactggcaccgtaaccgccgcgtacagccagcacgatggtgttgggggtagtcagtctggcaagggaattgagatcttccagacgctctgtttccgtacccgcaaaacgctcacaacgacgggcaataacctcgacgttattgacttgatgccccgcgtcggtaaggcgctggataccacgcagcgcggcgtgctgtttaatgcagtaacccgatggggcaattaagtgaaacagagacatggcaattccttgctgacaacagaaacgaaatgtatatcatgccgcttaggtgtgccgttgtcacctcaacggcgattccaggctataaggatagaagaagtgaaattgagatggtttgcctttttgattgtgttattagcgggttgttcatcaaagcatgactatacgaacccgccgtggaacgcgaaagttccggtgcaacgtgcgatgcagtggatgccaataagccagaaagccggtgcagcctggggcgtcgatccacaattgatcacggcgattatcgctatcgaatcgggtggtaatccgaacgcggtgagtaaatcgaatgccattggtttgatgcagttaaaagcttcaacctccggacgtgatgtttatcgccgtatgggctggagtggtgagccgacgaccagcgagctgaaaaatccagagcgtaatatttcaatgggggcggcttacctgaatattctggaaaccggcccgctggcaggcattgaagatccgaaggtactgcaatatgcgctggtggtgtcatacgctaacggggcaggtgcgctgctacggactttctcgtcagatcggaaaaaggcgatcagcaaaatcaacgatttggatgctgacgagttcctcgaacacgtagcgcgaaatcaccctgcgccgcaggctccgcgctatatctacaaacttgagcaggcactggacgcgatgtaaatcagtcgcgcactttgtccgctttttcccgggcttctcgctcgagagagaaaataatccgctgtaattgccgctccaccgtcgggctgacgttaagaaaacggaagctcagacggggagtggtgatggtttcattcttgccatcaatcactttgcgctcgctgatggagattaactgggcgtcaaagtgaaaaacaccccattgccccatgttgacttcaatctgagcgaagcgcatgccttcttgtaattcggcaggctttgctgtttccagtaatgcgcccatgccgcctaacgacaaatcatacaggcggaaacgtaacgtactgttatccgccagtttggtctggcaaaaataaggcggatggagtggggcggagatgcggaaatatcggcgtcgttgtacaaaccataaggtgggaggcggtacggtaataaatgccggaagctgcaagtattcactctgctgtagttgttcaacagtaaactcgactttcgcaccctgagtttcggcggtaatggtaatgtgctgtgcctttagcacggcgatgttgtcttcggcttgactgccgaaatccagcaccagtttatccggggttattgccagtaatttgctgatcagctgcccgccattccaactgagacgcaaaggaattgcggctttgtgcaaatcgcgtaacacgcccaggacggctaacggattttgtttcaggaactgctcatggtaatgactcacgcggaaaaactcctgactgacaaactgtctttggtttatcggtcacagttaacaaaacttaatacaaatgcgtgaatattttttacatgttgttcttaaatcagccgacatacgcccagcatcgatcccgcccttgcctatacttagagcgttgatgtaagcatttcttgcgtccgattcatcgaaacgagggcctgaacatgggaattattgcctggattatttttgacctgatagccggcattatcgccaagctaatcatgccggggcgtgatggtggtggatttttcctgacctgtattctcgggatagtcggtgcggtggtcggcggctggctggcgaccatgtttggcattggcggctccatcagtggttttaatctgcacagcttcctggtggcggtggtgggagctattctcgttctgggcatattccgcctcctgcgaagagaataagattttcataaggcggatagcgatacagatgccgctatccgctttcacatcagaacgtatactcgacacctgctttacgggtgaaaaaaatcaatatagcacttcgatatccgataaagtcggttcccggtaacaacaacagaatccttttttaattattgtttcgttgtttttggtgtgattcagaaaataaatattttagacagtagccagtcaggcgttaaaaatggggcggatagtgaggcggttttggctgcgcttattgaacatttagaattgatcaatccttctggcagattaagccaaaatacccgttcggcaatgcttcagttacgcgaagaggaatggtctgaattctttttttggttgctaaattctctggagtgtctggattatgtgattattaatttaactccagaaagcaaaaaaacgttgatgagtgaacaccgtaacaatattcaggtagcaattgatgctttatatagccaacgtcggcgtaaatcgccgggtgatgaaagtgaaacacttacccgtagaaatgacgctatcttcggcaaccacgtatggcaaacatttgcgcaatacttcccgccaggacttgaaaaaccgtctgtgtagaaaaaaccatagctatggtgttatctgccgacaacgccatccggagaagccgaatgacgttgtcggagtaagcgctggttaaggtgtgggttgtgcctctttggttgagggttgcgtcgttgctgacttaacggtcggacgcgtcgccggaacattgtcacacggttgctctttcgggcagatcaaatccagcattttcagcgtcacgccattggtccagccaaagccatcctgtaatggatattcgccaccgccgccccccgttccggtggtgctgacatcatatttttccaccagctttttctcccggtcataggtgtgctgaacattggtcaggaagtgccagctaatgtccatcgccacctctttttgcccgtagttttgtaatccttctgtcgcgacccactgtaacggtgcccagccatttggcgcatcccattgttgcccacttttcaccgacgtggtgttcaggccgccgggttgcagcagatgtgttttcgtcgccgtcgccattttgttggcgcgatctttcgctgccgcattgacgtacagcgggaacagggcggccgcggttaactgattgcgcactttatgacttttcaggtcgtaatcggcataccagccttgttgatcgttccacaggtatttttcgatccctttttgacgggcatttgccagcgtttcgtactggtttgccatcgcgttatctccggcagctttgctggcgcgggcgaggattttttccattttaaacatcaggctgttcagatcgaccggtacgatgctggtggtgcgtaaggtatttaactgctgcgggttgtccatccagcgcgagctgaaatcccagccagacgcagcggcagagcgcaggtcgcggtaaatttcagtggcaggtcgattcggattgcttttggcggtggcaatatcttccacccatgactctggtcgtggcgtatcgcgatcgtcccagtagcggttgagaagggtaccatcctgaagtttgacaacgcgtttttcctgttgtccggcttgcaggttttcaacaccgtccatccagtaagcatattctttttgcatttgcggcaggtattgcttcaacgcggcatcgccttcatgctgcgccagtaactctaccatcagggcaaagaagggcggttgcgagcggcttaaatagtaactgcggttgccgttgggaatatgaccgtaagtgtctatttcatgagcaaaattggccaccatatccgcgactttatcccagtgaccgctttcggcaagtcctaacatggtgaagtaactgtcccagtaatatacctcgcgaaagcgtccgcccggcacgacataaggttccggcagcggtaacagagaatcccatttttcggtgttttcggtagaacgcgttaataccggccaaagtccgtcaatatgttcgcgcagtgactgcccctctggcggaacatatttctcgccttctttcggcagggtgaaattgacgttaacgaaatggcgcagatcaaatccgctctggttttgctgcatccgataatcagcaaggatcatcagcggatcgctgttcggcacggcatcggcaaaggttttttggtccggaaaaagtttggcgttttgcacatcattaaacagcggccctaataaaatatcaggcggctgtggtgttaccggtgtttcttctgcctgcaccgatagcgcagcgaaacacaaaaagatacaggctggaattaacgccattttttgcgggcgagaaggtgcgggggatttcatcaatcattctcctttggcgaaaccgaataaaacggtattcaagtatcagaaaaccttagttcaggatcgcactagctgcatgatcgaaatctcattctgcgaactgtcaggcattttagaaaagggaattaaagggataaataacggcgaaatagagtgatcaaataacgtctgtttattagccagccagcggcgttgggttcgtgattagcgaagaaaaatcatcataaattggtgaaaaatataacaggtagttaaaaaccattagtgctgagtaaattgccggatgacatcagaacgatgccatccgaacagtggcttaaccctgacggttgaaacgttgcgttttaacgtccagcgttagcgtttcttctggttgtatcgcatacagtttctcaccctgctggcaaatccagccaatccccagttcacgggcgattagggcgctgtgggataccggacttccggcgctaaggcagataccttttacaaccgccggatccagttgcagtactgtggaaggataaatgttctccgccagtagaatagttggcgagttaaactgcgggagttcttctttcgtttgggtcaggtggaccagggtgcgatgcagaagatcgtccacatcaatatagcgagcttgtagatattcatcatccagttgctggtattgctggctaagttctttaagaacttgctgccaggcatattctgccgtgcaatgttcatgctgaaggagttcgcttgccgccgccagcagttccggatcatctaacagtgtatggtgaccagaaaagattgcggcaatatcgtcaagcccgctggcttctgctttcgctgttaacgtcatcagatctaataacgtgaagtcaatagcctggcgtaatcgatcttgttcttcttccacggtcagggttgattttgcctgtaccgtacataaaactggttgataataaaaggctttacccgaaacaggcggaacgggacgcagagtaggtggagcgacttcctccgtttcaccaaagttatcttcagccagctgacggaaagcgatcagtgcctcttcagcttctggccctttcgcaatcaggcgcagcgtatcgttatagcgaacttgtagtaacgcaatctggttaatactctctggtgtgacgcatttgccgtttttttccagcaacatatcggcattaaatgtcgataaggtataaaccagccgggaggccggacgtacatgcaggccgttacggttttttatgaccaccgccagagaacgggcttcttcatcgtacgcaggacatgtgtcagagatttcagtgtcggaggacggtaaacccagttgttcacgtttggcttccagcgcatgcatggcgtcaaagataactttgtcgatatccgcccccgaggccgcgctgaccgttgctgccagtgtaccttcgaccaacggcgcagcacacaaacgtacttttgcggcgatctcgggagccagcaattccagcgcagtttcagcactcaataatgcgctacccatatccatcatgaccagcacatggtcggcatcagcaacagattcgatggcctccatcactttgacggcatcggtaccaatgggattttgtggatcgtcaattcccgcggcaatggcgattttacaactatcactcattaacatctgacgggctaattcaccgacaccttctcccagtcggctgctatgtgaaactatgaccaggtttaccatcaccaattccttactcttttgcggctaacgccaacatttgcatcataaacatcaccgaggtcgcgccgggatcctggtgaccaatactgcgttcaccgagataactggcgcggcctttgcgggcttgcatcgtaatcgtactttgtgcagcggattcggcgatgctactggcagcttcgagcgccaccggaacagagagattttgctcgctggactgacgtaacgattccaccaccggcacccacacatcacacatggttttatcgccaggttcggctttcccgcgactgattacgccgtccgcgccatcgcggaacatctgataaagctcttccagtgtcaggctttgccgtgcctgggtcgcctgtgcggcgcggataaagaaggtaccgaacagcggaccactggcaccaccgacgctggaaagcagcgtcataccggtattcttgagaatgaaaccgatatctttatctgcgatagcagggagtttttccaccactttgctaaagcctcggttcatatttagcccgtggtcagcatcgccaatttcgcgatccagtccggtaagatactcgctctcggtgctgaaaatatcgccacaacgagtgagccagttaacaatttgagttctgctcagtgacattgctttctccttatttaccccagttaagggccggggtgtggaccggggcgtcccagagtgccagcgtttcgtcatcaactttcagtaaggtgattgagaaaccggtcatatccagtgaggtgcagtacgcgccaattaaattacgttcgatagtcaatcccgcttgctggcaacgtgtggtcaggcggttatagacgccgtacagctcagaaagcggagttgcgccaagattgttaaccagcgcaatcacccgatcgccagactggagcggttgtttggtttgttgttcttcctgccaactgccttgttgataatcccagaaacgcaaagtgcgatggtatgagccatttaccagcagggtgtcgaacatttcatcgacggtttgatcaagggaagagaaggggcggcggtcaatacccggctcaccatgaatgccgacgccaaactccatctcattatccgccagggtaaaagaaggtttgcccgcggcaggaacggtacaggcaccgagagcgatacctattgagtggccttgattattcagcttacgccccagttccgcacaggcgtccagtgagtcgccacgctccgccgctgcgcctacgagtttttcaattaatacggtgttggcaacgccgcgtcgcccggcagtataaagactgtcttttaccgcaacgtcgtcatcaatgaccacagtggtcacttttacgccgctatcgtgcagtaactcggtcgctgtttcaaagttaagaatatcgccggtgtaatttttgataatcaacagtacaccttcgccgccatcaacttgcatggcgcattcaaagattttatcgggcgtcggtgaggtgaaaatttcgcccggacaggcccccgaaagcatcccctgaccgatataaccacagtgcatcggctcgtgtccgctgccgccacccgacagcagggcgacttttcctgcaacaggggcatcagctcgggtgacatacaccggatcctgatgcagtgtcagcgatggatgcgctttcgccagtcctgccagttgttcgtccagtacgtcttgcacatcattgatcaattttttcattattttgctccagcaattacggtagggcatggatgatgttcaacgacacggcgaccactgactgccgatgaatccattgtgcatcaggcaagggaaaagaaaattagcccaaattatgtttcatagtgaaacatatgctttaatgaatgttccatattgaaacttttacgtgtattaatacttaaaattgcgagccggaacaccttttgtcataagggatgcgggatatgagtggcgcttttaacaacgatggtcggggcatatctcccttaattgcaacctcctgggagcgatgcaataagctgatgaaacgggagacatggaacgtaccacatcaggcccagggcgtgacatttgcttctatttatcggcgtaagaaagcgatgctgacgctcgggcaggctgcgctggaagatgcctgggaatatatggcaccgcgagagtgtgcgctgtttatcctcgatgaaaccgcctgcattctcagccgtaatggcgatccgcaaaccttgcagcagctaagtgcactgggattcaatgacggcacgtattgcgccgagggaattattggtacttgtgcgctatcgttagcggctatctctggtcaggccgtgaaaacgatggccgatcaacatttcaaacaggtactctggaactgggccttttgtgcaacgccgttgtttgacagcaagggccgattgacgggaacaatagcgctggcgtgtccggttgagcaaactaccgcagctgatttgccgttgacgttggcaatcgcccgcgaggtcggaaatttactgctgacggacagtttgctcgctgaaactaaccgtcatttaaatcaacttaatgccctgttagaaagtatggatgatggcgtgattagctgggacgagcagggtaatttgcaatttattaatgcccaggcggcgcgggtcttgcgccttgacgcgacggcaagtcagggacgggcaatcactgaactcttaacgttacccgccgtattgcaacaagcaataaaacaggcacatccgctcaaacacgtagaagcaacctttgaaagccagcaccagtttattgatgcggtgataacccttaaaccgataatagaaacgcagggaaccagctttattttgttgctccatcctgtggaacagatgcggcagttgatgaccagtcaattaggaaaagtcagccataccttcgctcatatgccacaggacgatccgcaaacccgccgcttgattcattttggtcgccaggcggcgcgcagtagctttcctgtcctgctttgtggagaagagggcgtgggcaaggcactgctaagtcaggcaattcataatgaaagcgagcgtgctgcaggtccttatatcgccgtcaattgtgagttatatggtgatgctgcgctggcggaagaatttattggtggcgatcgcacggacaatgaaaatggccgtctgagtcggctggaactggcacacggcggcacgctgtttcttgaaaagattgaatatctggcggtggagttacagtctgctttgcttcaggttatcaagcagggggttatcacgcgactggatgcgcggcgtttaataccaattgatgtcaaagtgattgcaacaacgaccgcggacctcgcaatgctggtggaacaaaatcgttttagtcgccagctgtattacgcgctgcatgcatttgaaattaccatcccgcctctgcgtatgcggcgtggcagcattccggcgctggtgaataacaaattacgcagtcttgaaaaacgcttctctacgcggctgaaaattgatgacgatgccctcgctcgcctggtttcttgtgcatggccaggcaacgattttgaactttacagcgtcatcgagaatcttgctctgagtagtgataacgggcgcattcgcgtcagtgatttgccggaacatctgtttaccgagcaggcgacagatgatgtcagcgccacccgcctttccaccagtctgtcatttgcggaagttgaaaaagaggcaattattaacgcagcccaggtcacaggcggtcgcattcaggaaatgtcggctttacttgggatcggccgcactacgctgtggcggaaaatgaagcaacatggcattgatgcagggcagtttaagcgccgggtatgaaagacagaaacgatttctgatacatcagagtgatctgtatttcattccggcgcacgctaacaattttcagcatcgtttaagggcttgtctatcccgcacttaaaagctgaagcgatatcctccgttgacttgcttctgatcaaagaggttaccctgcgtgtaatccgcttcgagatagaatgtgtgctgtttgttatactgtgcactgactcccacgccgttattccagccattacctttgaaactgtacttctcccgggagttgttcaacagatattcggtatcccctgaaaactcgcggatagcgccagtcttcacatagacattcagctggctgttgcctgcggtgatgtcataccccagtatcatgctggcacgccccagcagcgattcgtagtgattcagatgtatattgaggccattactcgccttcatagtcatctcattctggtggctgtatgtaagctgggtttgcggctctatatagaacccataaccagtaggggacaggttgaacctctgcccggcttccagggagatgctcattccattcgcagtgccgttggcgttaacgccgttgttctgactgtccagtacgtggaaactatttttctggcgcgatgcttttataacgagatcgctgtaaaaaccgttttgtgccatgtaactggcgtacattcccatgtagtctgaacgtgcggtaccgtcgcctccgctatagtccggcgatgcatgtgttgagccaatatacagaccgacatacaacggcattacatcagagagacgtttatccccaccaaactggataccgctgtaacccatgtcaaagccgctcagtttgccactggcaaaggagtccaggcttcccccataactgcgcaaccagatattaccgtctttactctgatttcgcaggtcacccatccgttgcatcagcgtacggttttcaacatagttcaataagtaaccgacattgagataattgccgccagcatctgcggtcgtggtgggtttaggcgtgggagcgggttcaggcgtaggatcggggttgactatgggaggctgagcgggagctggtgtgggttcaggattaggagtcggttccggaactgtcccggaagcgtaaagctcccagttagtgccatttttacgcacatcgtacagatatccccccaactcaacctgagaagacgcgctgaacgaggccgcgccgtcagtggtttttaccactgtcagaacttcatttcccgttgtggcctcgctgccctggttgcggatagccaatacgtgattaccagcactactcccgctgatattcaataaatcccctttattattaacgccattaccctcgccaacaacatcagcacgcataataaaggtactgttaccgctcaggttctctacgtttaatgtggcaaatgtgccggcagttgacccgtggctggcaaaatcgacagttgaatggctcagcgccagcgtgtcgagattagaattacttgttacgttccagacgctgttattcattgcaacgtccagttttccgccattgacattatcgctgagggaggaacctgtccaaaccgacccagggtgcatatccagattgattagcccacctttggaaagaacgctaccgttgataagcatacgacccgaggcgttgatgcggctggcggcataaccatcgtcatgttgcgttgcgatggccatctggtcgggtgtactcatatcaatgaccagatcgctcgtgaggtcgatctggctgttggtcatggcataaattcccctggctcctgccgcgccggtgatagccaaactgtctccggttattctaccgccgctgagagcccacaaacccagcgccagactgccattacgatcaactgtaatatcggtattttgcatgttgacaacagccgttgccgtctgggccgaggcaccataagaaccgccggaaaagatgctgtttcgttgcgctgccgtgccagtaaaattgattatcgcgtctgaaccactggtgacgaggccaccgccctgcgcggaagaaatatggctatctgcaccgatagtggttgtaccaccacgaacttcgacgccattggccgcggctccagttacatcaacagtgagtgcattcgcgctaacctggccaaagctccagaggccgtgagcattatcgccattggttttaatggtactgtttgttccgagatcgacaacagagtttttctgtacgtttatccccatggcgctgtagccctgaacatcgattgtcaggtctgtagccgtaaaacgcgcagcaccattggcgttattgccgttgagaccaccgatataaacacctgtacttccatcggtcgtgattttacttccgcttccaagatcgacactggtgccatagtcattgatggttaggcctataccgttcgagttttcaatggtgaattgagtggctgttagtgttgagctatgcccaataatgatgccgtcatcgttactcttaatggtgctgcctgtgcctaagtcagcatgggtatagtcaccaattaagttaatgccgatggcagaggtttgaccaacaacatctactgtgagtcggttagctgtcagggagctgtttttgccctgaataatgattccttttgcatatccagaggcgtcgttgacattgacggtgacatcattacccaggttgatattgccaggcgtgtttcctgctggggtcattacaccatagaggtttcctgatggatcggcggtatctcctgtaattctgtcaccatcattaatagtaatattggtgccatattgacttcctgtatcagcagctatcagcaggggggaaaagataattgcattcaaaccaatagcgccaaattttatcagttgaattgagggcgaacggatttttaattcagcgagacgatctgctttggtattcccattgtgttgtttgatgcccataccactcctatatagtacccagactatgggtctatggattttgtcattttgtttaaatcaatgaataatatcctcttatcatcatgatatttgtatggtgcaatcatgatgagcttctcagagaataattctctattaccgggcaaaatcaggaacacaggaattaatatatatttaacatcccccttacaaaggtgagtttatatcgagttattccctaagttgtcgttacttattccaattcgttactataaatatggcaaaaatattacaacaaacagcggttaaaaaatttggtgaagattttttgtaataatcctaattagttatgggaatttcgcttgatgtatctgcataacaaaaacaatatgcgccatttttgcattactaataagaaaaagcaaaaaacatcgatattcatttttggtcaatgggttttctggcctatcgttgttattgtgctactggttatcattttcatcttgccagcatattggagcgtgatcaattttgatcagctgtgaagggggctgatgtgtagtgatacaaaaacttacgttatatcactgctaatgagatatccggcatctgaacacttatgtctttaattattctcgtggttcactataggcaataagcacaaaagtgtaggatgttacaagaatgattaggactcggtgaaatgaaaaatccacgcaattgcgtggattttatatacttttgcgctcttcatgagatttagcgaaacctcatgagacaataaattaattagacgttgaaaaggaagttcatcacatcgccatctttcacgatgtaatctttaccttctgcacgcattttgcctgcttctttcgcgccttgttcacctttgtaagtgatgaaatcttcaaacgagatggtttgtgcacggataaagcctttttcaaaatcagtatggattttgcccgctgcctgcggcgcggttgctccaaccggaatggtccatgcacgcacttctttcaccccagcggtgaagtaagtttgcaggttcagcagtttataaccggcacggatcacacggttcaggcccggctcttccagcccaagctcctgcataaactcgtcacgttcttcgtcgtccagttcggcaatgtctgcttcaacagcagcacaaaccggaaccacaacagaaccttctttcgccgcgatttcacgcacctggtcaagatatgggttgttttcaaaaccgtcttcgttgacgttggcgatgtacattgttggtttcagcgtcaggaagctcaggtaacgaatagccgctttctcttcagcgcttaaatccagcgcgcgcagcatacctgcattttccaactggggcaggcatttttccaggaccgccagctcagctttcgcgtctttatcgccacctttggctttcttctgtacgcgatgaatcgcacgttcgcaggtgtcgaggtctgccagcgccagttcggtgttgataacttcaatatcgtcagccgggttaactttgccggaaacgtgaatgatgttgtcattttcaaagcagcgaacaacgtgaccgatcgcttcggtttcacggatgttggtcaggaactggttacccagaccttcgcctttcgatgcgccttttaccagaccggcgatatcgacaaattccatggtcgtgggaagcgtacgctgcggttttacgatttcagccagttgatccaggcgaggatcaggcattggtacgacgcctgtgttcggctcaatggtgcagaatggaaagttggccgcttcaataccggctttggtcagcgcgttgaacagggtagatttcccgacgttgggcaaaccgacgataccgcatttgaatcccatgatttaaatcaccttaatatcttaataatcaacctgttattgctaacagattgcagaaatggaaataactttgcctattatacacggcactcggcaaaaatgccgcagacaacgacttattgcgctttaaaggcgtgcaatcggttcgttgctttggtcaagccatctgtaaaccacatttcagtacaacgcgccgcttcgtcaatggcttcatcaattaacttctgttcactaacaggcggtttgcctaacacaaaaccgacaactttatttttatcgcccggatgaccgattccgatgcgtaaacggtgaaagttagggttattacccaatttactgatgatgtctttcagtccattgtgaccaccatggccaccgcccaatttaaatttggcgacgccaggaggcagatccagttcgtcgtgggccaccagaatttcgtccggattaatgcggaaaaaactggccatcgccgcaacggctttgccgctgagattcataaatgtagtcgggactaacaggcggacatcttcgcctccaagagtgactcgcgaagtataaccaaagaatttagcctcttcgcgcagcggagcgcgcaaacgctctgccagtaagtcaacgaaccaggcaccagcattatgtcgcgttgcggcgtattcagcaccggggttcgccaggccgacaatcaatttaatcgtcacgtttttttgtcctgagtgtgtacataactggcgcgtagtttactggttgcggccccgcttgacaaaaaactgcgtatcaaatgcagataacgtaataattgcctgagtggactattagaaagtcaaggtgttcaggcgtttatttgtaaagttttgttgaaataagggttgtaattgtgatcacgcccgcacataacccactgggtgttgtctatactttacacataaggaagaggggtattccctgttacaacccagaaagttccggaggtgacatatgaaacgcaaaaacgcttcgttactcggtaacgtgctcatggggttgggtctggtggtaatggtggtcggcgtggggtattcaatcctcaaccagttaccacagtttaatatgccccagtatttcgcacatggtgcagtgctaagtattttcgtcggtgccattctctggctggcgggtgcccgtgttggcgggcatgaacaggtgtgcgaccgttactggtgggttcgccactatgacaaacgttgccgccgtagcgataatcgccgtcatagctaacaaataatgcagtttgctgaccagtcagtttgcgctgactggtcaatctcgtacttataaatccgccatcgccgcgcgacgattcgggaagaacgccaggcgtcccgggatcggttgaatgccagcgcgagccatagtgcgcagtggctggaattccacgttgcacacgcgcagttcacatccctcgggcagacgcttcacaaaacgctggaacgcatcaagaccaccagcatcaagtaccggaacggcatcccacttcagaatcacaatccgtttgccttcaagacgtgactccaggtccgtgaataagccttcagcagcagcaaaaaacagcgggccaataacgcgcagaaccaggacatcgtctggaacatctacgactaccggtgccaggcgagtcatacgtgcgatacgacgcataaacagcagcgatgccagcacgatccccacgctgatggcaataaccatatcaaacaacacggtcagcgacatgcacagcagcatgacgatgatgtcatctttcggcgcatgacgcagcaagtcgaccactttgtgcgcttcactcatgttccacgccaccatcaacagcagggctgccatggcggaaagcggcagccaggagagcagcggtgccagtaccagcagggcaagaataaccagaatagagtggatcaccgccgagataggggacgttgccccggcacggacgttagcggcagaacgcgcgatggcagctgtagcggtaataccaccaaagaacggagcgataatattccccagtccctgtccaaccagttcgctgttcgccttgtgtttcgtcccggtcataccatccagcaccacggcgcagagcagagattcgattgcgccgagcattgccattgagaatgccgcaggcagcagtgtgcgaatagaatcccaggttagcgtgaattctgaattaggcagatcccacggcagcaccagttgcggcagcagttgcggaataccgttaccctgagaaccatcggccaggacgtagtggaattgcgaaccgatggtagcaacatgtccgccgagcaggttaacaatccccatcaccgcgcaaccagccagcaaggccggaaggtgaccgggtaaacgaatgcccagacgcggccaaaaaacaagaatacctagcgtcacaatgccaatggcagcatcacccacattaatggtcggcagcgccataaataatgcgccgactttttgtagataatgttccgggacatgggccatttgcagaccgagaaaatctttaatctgcatggtaccgatggtgatcccgatacccgaggtgaaacctaaggtgacggaaaccggaatatactcaatcaggcgaccaaagcgtgccagacccatcagaatcaaaaagatccccgacagcaaggtcgcaaccagcagtcctgccagtccaaactgttgcgacacgggatagagaattaccacaaatgccgcagtcggaccggaaacgctaaagcgtgacccacccgtcagagcaatgacaatccccgcaacagctgcggtatataaaccgtactggggtgccacaccactaccaatagccaacgccatcgccagcgggatagcaataatcccgacggttatcccggcaatcaggtcacgggtaaaccgtgcggcagtatatttttctttccagcaagcgtcgatcagagcgcggaaaggcatcacatgtgaggaaaatattttgttcacaataatgtttcatccgtgagcgcatcatctgtcaactaaatggcaggtgaaggaggcataggtcatacaaatggatattacagacaaaaaaacccgccgcagcgggtctttgagccgggttcgattagtgttcgaacatggcagagatcgattcttcgttgctgatacgacgaatcgcttcggccagcatacctgacagggtcagagtacgcacgttcggcagtgatttgatttcatcgctcagcggaatggtatcgcagacaacgacttcatcaattacagagttacgcaggttgttcgccgcgttgccagagaagatcgggtgagtcgcgtacgcaaatacacgtttagcaccacgttctttcagagcttcagcagctttacacagcgtaccgccagtgtcgatcatatcatcgaccagtacgcagtcacgacctgcaacgtcaccgatgatatgcatcacctgtgaaacgttcgcacgcggacgacgtttgtcgatgattgccatatcggtatcgttcagcagcttagcgatagcgcgggcacgcacaacgccgccgatgtccggagaaaccacaattgggttatccagattcagctgcagcatgtcttccagcaggatcgggctaccaaatacgttatcaaccggaacgtcgaagaaaccctgaatctgttcagcgtgcagatccactgtcagcacacggtcaacaccgacgctggagaggaagtctgcaaccactttcgcagtgattggtacacgagcggaacggacgcgacggtcctggcgcgcatagccaaagtaggggataacagcggtgatacgacctgcggaagcacgacgcagggcatcaaccataacgactaattccatcaggttgtcgttagtaggggcacaagtggactggatgatgaaaatatcaccaccgcgtacattttcattaatttgtacgctgacttcgccatcgctaaagcgacctacagcggcgtcgccgagtgaagtgtacaggcggttggcaatacgttgtgctagttccggggtggcgttaccagcaaaaagcttcatatcaggcacgagaagaacctcaggcatgcgtccattggtggaaagaatctgccgaaaactgtgcgggccaggcatgatcctttccaggcggtgtattaaagagcgcgatgcaacgtctggaacaaggtgacgttgtcaccgaaactcagcttgcccggcttaaagcatggctctgtgcaatggggaaagattagcgcctttcgccacaaagccattgagccattccggggcttgctctagcacctggcgggcttcagactctgtatcaaattcagcaaagacacaggcccctgtcccagtcaggcgcgacggggcgtattctaacagccaggaaagcaccgcatcaacctcgcgaaaacgttttcttgcgataacctcgcaatcattgctgaattcacattttagcaacgtttctattgacctttttggcgtattgcgcgggagttcaggatctttaaaaatcaccggagtcggaatacttacaccagggtgcgccaccagataccacttctctggcggatccaccggcgttagtatttcaccaacgccttcggcaaacgcggcatgcccccgaacaaagacaggaacatctgcgcccagcgtcagccccatttccgccagctcatccatgcttagcccgcattgccagagatgatttaatgccaccaggaccgtcgcggcattggatgaaccaccgccgagaccgccgcccatcggcaaacgcttgtcaatgctgatattcgcaccgcttcccgtcggaagacgcccgctgtctgccgcagttttcatcaacaatcgcgctgcgcgaacgatcaggttatcttcatgttccacgccttcaacgggcgttaacagacgaatatccccatcgtcacgaagctcaatgctgatggtgtcgccgtaatcaagaaactgaaacagcgtttgcagcgtgtggtaaccatccgcacgctgaccggtaatgtataaaaacagattaagttttgccggagagggccactgtgtccgcattatttcactatccagttatccatttttaacttgatgcgttgaccaccgtcggtgagttccatattggctggcatcgcaggttgcgttttggtgtcataaccaccataaacaaccttccagtttttgccattctggctgtaggtaatttcgctcaggcggtactggtcgtccagtttgtagtcggttgcatcacccggtaaacctaaaatccactggcgcaagctgttgagcggaattggcattccggtcaatttgccaatcatctcttcggcgtcatcggcggtataacgctgacctttattgtcgactaactgcacgttacccggttgagcattcagctccagttccgtgctgcccaatgggttagtgagcagcagacggtagcgatcctggccggtttgctgccagaaaaagcgggcgtacactttttgttggtcagaaatataagcgaacgcgccgcgagtctgatactgattaagattgcgcacgtcttgctgatgctgacgccattgtggcgaatccgggcttttgccaggacctttgggcgtggtaacggaacaggcagtgagcacaagagcagccagcggtagcaggcggataagacgaaaatcgggcaggggcatagtgatgacaagtccttgagatacgttgcagttataacccttaatgctagcgttaccgtccgctatcgtctatgttcaagttgtcttaattgccagaatctaacggctttcggcaattactccaaaagggggcgctctcttttattgatcttacgcatcctgtatgatgcaagcagactaaccctatcaacgttggtattatttcccgcagacatgacccttttagcactcggtatcaaccataaaacggcacctgtatcgctgcgagaacgtgtatcgttttcgccggataagctcgatcaggcgcttgacagcctgcttgcgcagccgatggtgcagggcggcgtggtgctgtcgacgtgcaaccgcacggaactttatcttagcgttgaagagcaggacaacctgcaagaggcgttaatccgctggctttgcgattatcacaatcttaatgaagaagatctgcgtaaaagcctctactggcatcaggataacgacgcggttagccatttaatgcgtgttgccagcggcctggattcactggttctgggggagccgcagatcctcggtcaggttaaaaaagcgtttgccgattcgcaaaaaggtcatatgaaggccagcgaactggaacgcatgttccagaaatctttctctgtcgcgaaacgcgttcgcactgaaacagatatcggtgccagcgctgtgtctgtcgcttttgcggcttgtacgctggcgcggcagatctttgaatcgctctctacggtcacagtgttgctggtaggcgcgggcgaaactatcgagctggtggcgcgtcatctgcgcgaacacaaagtacagaagatgattatcgccaaccgcactcgcgaacgtgcccaaattctggcagatgaagtcggcgcggaagtgattgccctgagtgatatcgacgaacgtctgcgcgaagccgatatcatcatcagttccaccgccagcccgttaccgattatcgggaaaggcatggtggagcgcgcattaaaaagccgtcgcaaccaaccaatgctgttggtggatattgccgttccgcgcgatgttgagccggaagttggcaaactggcgaatgcttatctttatagcgttgatgatctgcaaagcatcatttcgcacaacctggcgcagcgtaaagccgcagcggttgaggcggaaactattgtcgctcaggaaaccagcgaatttatggcgtggctgcgagcacaaagcgccagcgaaaccattcgcgagtatcgcagccaggcagagcaagttcgcgatgagttaaccgccaaagcgttagcggcccttgagcagggcggcgacgcgcaagccattatgcaggatctggcatggaaactgactaaccgcttgatccatgcgccaacgaaatcacttcaacaggccgcccgtgacggggataacgaacgcctgaatattctgcgcgacagcctcgggctggagtagcagtacatcattttctttttttacagggtgcatttacgcctatgaagccttctatcgttgccaaactggaagccctgcatgaacgccatgaagaagttcaggcgttgctgggtgacgcgcaaactatcgccgaccaggaacgttttcgcgcattatcacgcgaatatgcgcagttaagtgatgtttcgcgctgttttaccgactggcaacaggttcaggaagatatcgaaaccgcacagatgatgctcgatgatcctgaaatgcgtgagatggcgcaggatgaactgcgcgaagctaaagaaaaaagcgagcaactggaacagcaattacaggttctgttactgccaaaagatcctgatgacgaacgtaacgccttcctcgaagtccgagccggaaccggcggcgacgaagcggcgctgttcgcgggcgatctgttccgtatgtacagccgttatgccgaagcccgccgctggcgggtagaaatcatgagcgccagcgagggtgaacatggtggttataaagagatcatcgccaaaattagcggtgatggtgtgtatggtcgtctgaaatttgaatccggcggtcatcgcgtgcaacgtgttcctgctacggaatcgcagggtcgtattcatacttctgcttgtaccgttgcggtaatgccagaactgcctgacgcagaactgccggacatcaacccagcagatttacgcattgatactttccgctcgtcaggggcgggtggtcagcacgttaacaccaccgattcggcaattcgtattactcacttgccgaccgggattgttgttgaatgtcaggacgaacgttcacaacataaaaacaaagctaaagcactttctgttctcggtgctcgcatccacgctgctgaaatggcaaaacgccaacaggccgaagcgtctacccgtcgtaacctgctggggagtggcgatcgcagcgaccgtaaccgtacttacaacttcccgcaggggcgcgttaccgatcaccgcatcaacctgacgctctaccgcctggatgaagtgatggaaggtaagctggatatgctgattgaaccgattatccaggaacatcaggccgaccaactggcggcgttgtccgagcaggaataatggaatatcaacactggttacgtgaagcaataagccaacttcaggcgagcgaaagcccgcggcgtgatgctgaaatcctgctggagcatgttaccggcagagggcgtacttttattctcgcctttggtgaaacgcagctgactgacgaacaatgtcagcaacttgatgcgctactgacacgtcgtcgcgatggtgaacccattgctcatttaaccggggtgcgagaattctggtcgttgccgttatttgtttcgccagcgaccttaattccgcgcccggatacggagtgtctggtggagcaggcactggcgcggttgcctgaacaaccttgccgtattctcgatctcgggacgggtaccggggcgattgcgcttgcgctggctagcgagcgcccggactgcgaaattatcgctgtagatcgtatgcctgatgctgtctccctggcacaacgtaatgcccagcatctggcgatcaaaaatatccacattctgcaaagcgactggtttagcgcgctagccgggcagcagtttgcgatgattgtcagcaatccgccgtatattgacgagcaggaccctcatcttcaacaaggcgatgtccgctttgagccgctcactgcgctggttgcggcagacagtggaatggcagacatcgtgcatatcatcgaacagtcgcgtaacgcgctggtatccggcggctttctgcttctggaacatggctggcagcagggcgaagcggtgcgacaagcatttatcctcgcggggtatcatgacgtcgaaacctgccgtgactatggtgataacgagcgcgtaacgctcggccgctattatcaatgacaagtttttctacactgcttagtgttcatcttattagtatcgcgctttctgttgggctattaaccttacgtttctggctacgttatcagaagcatccacaggcatttgctcgctggacgcgcattgtgccgccggttgtcgatacgctgttactgttaagcggcattgcgttgatggctaaagcgcacatcctgccattttccgggcaggcacagtggctgactgaaaagctgtttggagttatcatttatatcgttttgggttttattgcactcgattatcgtcgtatgcacagtcagcaggcgcgcattattgccttcccgctggcgttggtggtgctgtacatcatcattaaactcgccaccacaaaagtaccgttactggggtaagtcatgagatcgttagctgatttcgaatttaataaagcgccattgtgcgaaggcatgatcctggcttgcgaagcaatccgccgcgattttccctcgcaagatgtttacgacgaactggagcgtctcgttagtctggcgaaggaagaaatcagccagcttctgcctttagaagagcagttggaaaaactgatcgcgctgttttacggcgactggggatttaaagcctcacgcggtgtttatcgtctttccgatgcattatggctggaccaggtgttaaagaatcgacagggcagtgcggtatcattaggtgcggttttattatgggtcgcgaatcgtctcgatttgccgctgctgccggtgattttccctacgcagctgatattgcgcattgaatgtccggatggcgaaatttggctgattaatccttttaacggtgaatcgttaagcgaacatatgctggacgtatggttaaagggaaatatcagcccgtcggcggaactgttttatgaagaccttgatgaagctgataacattgaggtaatccgcaaattgctggatacactcaaagcctcgttgatggaagaaaatcagatggagctggcgttacgcaccagcgaagctttattacaattcaaccctgaagatccctatgaaattcgcgatcgcgggttgatttatgcgcaactggattgcgaacacgttgcgttgaacgatttaagttatttcgttgaacagtgtccggaagacccgatcagcgaaatgatccgtgcgcaaataaataacatcgcgcataaacatattgtgctgcattaattaatcgacattttactcaagattaaggcgatcctatgaaacaaaaagtggttagcattggcgacatcaacgtagcaaatgacctgccgttcgtactgtttggcggtatgaacgtgttggaatctcgcgatctggcgatgcgcatttgcgagcactacgtaactgtgacccagaaactgggtatcccttacgtgttcaaagcctcttttgacaaagccaaccgctcctccatccactcttatcgtggaccgggcctggaagaagggatgaaaatcttccaggagttgaagcagacttttggcgtgaaaattatcaccgacgttcacgaaccaagtcaggcacagcccgttgctgatgtcgtggatgtgattcagttgccggcgtttcttgctcgccagactgacctggttgaagccatggcgaaaaccggtgcggtaattaacgtcaagaaaccacagtttgtcagcccgggacagatgggtaatatcgttgataaattcaaagaaggcggcaacgaaaaagtgattctttgcgatcgcggtgctaacttcggctatgacaacctggttgtcgatatgctgggcttcagcattatgaagaaagtgtctggtaactcgccggtgattttcgacgtgacccacgcactgcaatgccgcgatccgtttggcgcagcttccggtggtcgtcgtgctcaggtggctgagctggcacgagccggtatggcggtaggtctggcggggctgtttattgaagcgcatccggatccggaacatgcgaaatgtgatggtccatccgcgctgccgctggctaaactggaaccgttcctcaagcagatgaaagcgattgatgatctggtgaaaggtttcgaagaactggataccagcaagtaatcttttttgcttgaaaaataaagtattagcgttctgcgttaagacttttttcatgggtgccggatacaaaaaaggccgcaggctgttacccctgcggccggtttcgggcgcatattgccatcacggcagcctgacgcccgttttcaccttacttccggttacgccaccagctgacaatcgctgcggtaataattcccgccaggatcggtgctgccaggtcgtgccagaaaatcatggcaaactgcgcgagcgtcatatagccgccttgttgtaatgacaacattttgcggctattcttgaattgttctggttcaagattagcccccgttctgttgtcaggttgtacctctcaacgtgcgggggttttctctttccagcaaccaatgccaccagggataaagcccccgcaacattgcgcctcaccggataacgccggcttggtgtggatactacgactcaattcatcttcacttcatccctgaaatgtttgcaatgaagagtgcattccggtttttcaacagctgttacagtcatttcatgagtgctctggatgaggcttccagctcgggttgccaatatttacttgtggaagtgataaagacaaaaatggccgcaggctgttacccctgcggccggtttcgggcgcatattgccatcacggcagcctgacgcccgttttcaccttacttccggttacgccaccagccgacaatcgctgcggtaataattcccgccaggatcggtgccgccaggtcgtgccagaaagtcatggcaaactgcgcgagcgtcatatagccgccttgttgtaatgacaacattttgcggctattcttgaagtgtctggtttcaagattagcccccgttctgttgtcaggttttacctctcaacgtgcgggggttttctctttccagcaaccaatgccaccagggataaagcccccgcaacattgcgcctcaccggataattccggcttggtgtggatactacgtctcaattcatcttcacttcatccctgaaatgtttgcaataaagagtacattccggcttttcaacagctgttgcagtcgtttcatgagtgctctggatgatgcttccagctcgggttgccaatatttacttgtggaagagataaagacaaaaatggccgcaggctgttacccctgcggccggtttcgggcgcatattgccatcacggcagcctgacgcccgttttcaccttacttccggttacgccaccagctgacaatcgctgcggtaataattcccgccaggatcggtgctgccaggtcgtgccagaaaatcatggcaaactgcgcgagcgtcatatagccgccttgttgtaatgacaacattttgcggctattcttgaagtgtctggtttcaagattagcccccgttttgttgtcaggttttacctctcaacgtgcgggggttttctctttccagcaaccaatgccaccagggataaagccccgcaacattgcgcctcaccggataacgccggcttggtgtggatactacgtcgcaattcatcttcacttcatccctgaaatgtttgcaatgaagagtacattccggcttttcaacagctgttgcagtggtttcgtgcagggtgtggtacaggctcgcaattctgattaacgacctgtccaggtagtatgaagaaatacaataagcaggaatttatattatctcccccgattaccgtcatcggaggagatataactgtcaggcaaatatcgtcatcaaataggcggcaaacagtgccagatgcgctgcgccattgagcacgttagtacgtccggtggagaaggagatatggcacagcactaaagaggccaccatcaccaccatttctggcgcaccaagtgcaaactgcaattcgttacccgtcataaaggcaattagcgtgacgacaggtacggtaagcgaaatggttgctaacactgaaccaaagaacagattcatcgcgcgctgaacctggttgttcaacactgcttttaatgcacctaaaccttccggcgacagaatcaacagtgccaccaggaagccagtaaaggcgacaggggcattcatgctgtcgagcaatgtctccagcgagctggcgttcattttggtcaccgcaataacggcaatcagatggataatcaaccagatagcatgccacaggctgctatgggcagacggtttaccgtgatgcgggtcgtcatcatcactgtcatcttcgtgctcgtagacaaacaaactttgatgcgttttggtctggatcagcaaaaatacgccatacattgccgcagaaattaatgctaccagtaacgcctgaccggttgaaaaattcgccgcaggcagagccattggaaataccagtacgattatcgccagggggaacagcgcaattaaatactgcttgataccaaacagattcatatattgggtggcaaacttacgaccgcccaacaataatgaaaagccaaccagcccaccggtaacaatcataatgattgaatagagcgtatcacgcattagcgttggcgcggcgtcgccggttgccattaaagctgaaatcaaactgacttcaagaataaccactgaaaggctaagaataagcgaaccgtaaggttctcccaggcgatgggctaatacgtccgcatgacggacaacactaaaggcgctacttaaaataccaataagcgcaagaagattgatggcaatgaccactggtagtgtctggctgcttccccacaggaacagcactaccagcgccagaaccgggaaaataagcgaagtctccttgtggcgggtttttaccgcctcttgagcatttgacattatggttatccctttgcagatgaatttatcgaaaatgtaaaaaataggtaggaaaaataacagaaagtgtctggatatcggtaacattttacgaatttttaccccgctgtcgattttttactcattggggcataaaaataagtattacgtttagacaatgtttgttttagcgtctcttaagaagagtctgacctgaaaattcttatgttttggcaagagtagatattgttgaccacacttaatgttcaactttgtaaaaggagtcaacgatgccgtataaaacgaaaagcgatctgccggaaagcgtaaagcacgttctaccgtctcatgcccaggatatctataaagaagcgttcaacagcgcatgggatcaatataaagataaagaagatcggcgtgatgacgccagtcgcgaagaaaccgcgcataaagtggcctgggctgctgtgaagcatgaatatgccaaaggggatgatgataaatggcataaaaaatcgtaaaaccggtcgcttagttaaagctattcgtgcggtgttgccttgcaagtggtccgtggattgcatattgtcccgttagtggtttcaaaatgagcagtaaaaatgtccggaagacaccaaaaagttgtcgcagggaagtatgcagtggcggaagtgtaaggtgataacgcgtgatttcttgatgaatgccgattgtaaaacggcatttggtgccattgaagaatcactcttatggtcagcagaacaacgggcggcttcgctggcggcgacgctggcttgtcgacctgatgagggaccggtgtggatcttcggctatggatcgttgatgtggaatccggcactggagtttaccgaatcgtgcaccggtacactggttggatggcatcgcgcattttgcctgcgcctgaccgccgggcgcgggactgcgcaccagccgggacggatgcttgcactgaaagagggcggacgcaccacaggcgtcgcctatcgactgccagaagagacgctggagcaggaactaaccctgttgtggaagcgagagatgattaccggctgttatctgccaacctggtgtcagcttgatcttgatgatggacgcacagtaaacgccattgtgtttattatggacccgcgacatccagaatatgaatctgatactcgcgctcaggtcatcgcgccgttgattgcggcggcgagcggtccgctgggaaccaacgcacaatacctgttttcactggaacaggagcttatcaaactgggaatgcaggacgatgggctgaatgatttgctggtatcggtaaaaaaactgctggcggagaattttccggatggtgtgttacgtccgggattcgcctgagtaaacttcccgcatagtggggcgtcagacgccccctcaaacattaaaatgtgagcactttatcggctgacagcgtccattgcgccagttccacaagagtaccgatttccaccccatcaatcagaggaagtgtactaatcccgcgcccgtcggtacaggttttgcacaatttcaccggtacattctgagcggtaaggatctccagcatttgctgaatgttgtagccttcccctggtttttgcccgcgcaacccggctgtgaccgcatcagacatgaggaacagacgcagatccagattgctctcctgctctcgtaacgcaatggccagccgcaagctgttaaacaaggattcgctcccgtaaggtgcgccattggcaacgatcacgattttttgcattatttactcctgtattcagggaattagacactcatcttctatcttactgcttctgcagcgtctgaccaatcggtcacatttttaaggattttcctgaaagcgcgagaaaatacgacaaaagttgccagtaatcgttattctttaaggctatggtttttcattattaccggaagttaccgacgttttgagccgtttcgttcctcgcattatcccgttttatttactcttgcttgtagcaggcggtacagctaacgcacaatctaccttcgagcaaaaagcggcaaatccctttgataataacaatgatggtctgccggatttaggcatggctcccgaaaatcatgatggggaaaaacactttgctgaaattgtgaaagatttcggcgaaaccagtatgaatgataacgggctggatactggcgagcaggcaaaagctttcgcattgggaaaagtccgcgacgcgcttagtcaacaggttaatcagcacgtagagtcctggctatcaccgtggggaaatgccagtgttgacgtcaaagtggataacgaaggacatttcaccggcagtcgtggaagctggtttgtgccgttacaagataatgatcgttatctcacctggagccagcttggtcttactcagcaggataatgggttggtgagcaatgtgggcgttgggcaacgctgggcgcgcggcaactggctggtgggttataacactttttatgacaacttgctggacgaaaatcttcagcgagcgggctttggtgccgaagcgtggggcgaatatttgcgattatcggcaaacttttatcagccgtttgctgcatggcatgaacagacagccacgcaggaacaacggatggcgcgcgggtacgacctgacagctcggatgcgcatgccgttctatcaacacctcaataccagtgtcagcctagaacagtattttggtgatcgtgttgatttgtttaactctggtacgggttatcacaatcccgtcgcgttgagtctgggattaaattacacccctgtgccattagtcactgtgacggcccagcataaacagggtgaaagtggcgaaaatcaaaataacctcgggctgaatcttaattaccgctttggtgtaccgctcaaaaaacaactttctgcgggcgaggttgccgaaagtcagtcgttacgtggtagtcgctatgacaatccgcagcgaaataatctaccgactcttgagtaccgacagcgaaaaacgttaacggtgtttctggcgacaccgccgtgggatctaaaacctggcgaaacagtgccgctgaaattacaaatccgcagtcgttacggtattcggcaactgatttggcagggcgatacgcagatattaagtttgacgccgggcgcacaagccaacagcgcggagggctggacgctgatcatgcctgactggcagaacggggaaggggcaagcaatcactggcgattgtctgtggtggtggaagataaccaggggcagcgtgtctcctccaatgagatcacgctaacgcttgtcgaaccgttcgatgcattgtcaaacgacgaactgcgctgggaaccgtaatcagaaaatgcgctcctgatgcacccataccgctgcttccacgcgagacttgagcttcattttcttcagcatgtgcttgacgtgcacttttactgtgctttcggtgatatccaggcggcgggcaatcatcttgttcggcaaaccctgggcaatcagcttgagaatatcgcgctcgcgtggggttaactggttaacatcgcgctcagtagtggcacggttagcgcgcaagctggcggccagaacaggcgttaatgcttcgcttaataccatttcgccagcagctgcctgatgcaatgctttcagcagatcttccggttccatatcttttaacagatagccatccgcgccgcgtttcagtgcggtgaccacatcttcttcatggttagagacgctgaataccacaatgcgccctgagagggacttttcgcgcagtttatccagcgtttccagaccgttcatgccgggcatattgagatctaacaggatcagatcgggatcaagagactccgccagttcaataccctgttcgccattactcgcttcgccaaccacggtgatatctggtgccatactgataagctgttttacgccagttcgcagcatcgggtgatcgtcaatcagcaggatagtagccggttcctgattactcatgggtatctccttggacgtctgtgaaagttttttcgggaataaaggtgaccaccacttcggtgccacctgattcacgacggcggacgcggcaatcgcctcgtaaactttgcgcacgatcgcgcattattatcatgccgtagtgattgctgcggatggcattttcaggcacgccgcagccgttatcctggacggtcagtttgacctgattatcgttttgcgccaccgtcaccacgacttcactcgcttgcgaatgtttgagggcgttacttaatgcctcacgggcaatttgcaacaagtggattgcctgatgcgaaggcaccaggcgaggcggcaattgataatccagcttcaccgggaagccaaatttggcgctgtactcttcgcaactcgcctccagcgccggacgtaatccaggctcggtgagctgcaagcggaatgtggtgagcaattcacgcaactgcgcccaggatgcattcagttcgttacggatctgacttaacagttcgcggctgctttctggcagcgcatcgccctgcatctgtaaacaactcacctgcatcttcatgcaagagagagattgggcaatagaatcatgcagttcgcgcgcaatggtggcacgctcttccatcacgatcaactgttgctgacgttcctgatggcgatccagcgccagcgtggcggtgagttgttcaaccagggtatccaccagttgttgttgatcatggctaagatgacgcccctgcggcagggtcgccagcaaaataccgtactgcgtatgagagtcagccagccgccacttcagggtcgtgccgcgatcaccaacgggtaatacgccgcgcgggcagagctggcagcctttatcatcacaagtcatatctggctggcaggtaaactcctgatgattctcttcatcatcagtgtcatacacccgcaattcgatatcacgtagcagggttaaattctgtaagccgttgagtacaggtgacaggcgttcacacagcggggcgcgggaatgcaaacggcggttagcctgccataaaaaagagaggatctgatttttatgctccagcccggcggttttctcctgaacccgctgctcaagtacggcataactttcggccagttctgcagacatattgttcaacgcagttccaagcatcgccatttcgttgcgcccgctgatgtttgcgcgttgggtaaaatcgcgatgactgacggcactcgccattgccagcagttgccgccacggttgtagcagtcgcgcccgcaaccagataatagtgaacaccagtaaaagtgccataaataccgccattacccgatggaccagtaccactgtctcgatgcgcatttccgtggtgcggtcaaaaccagataccagttgatcaagcccggcaacaaactggctgacatccgctgacaccgtttctcggttttgtgcacgcatcagcgcagggatcagttcattacgccagtaatcttgtaaaccctgtaattgcgccagttgtccgtctcgttctgctgctcgagtcaactcggcgctaaatgccgtttgttccatctctttaattaagggcttgtctttctcgcttaatggcactgccgccaacagacggtaactttgcatgcgcagcgatcccgctttgttgatcgcatgggcgctgccctgaacgccttgcaccagccagccagaaaccgccatccctgccagtccaatagcagtagaaagcaacacaataagcgcaacctgattaaccagggtgagcggagagagacaacgtttaagcatgtaaacctcttccttcaggctttaaatgagcaataaccttaatgaatgtgacgatacattctggaatggcagtattctcggctattggctgaagtatacccatacccggaaagagttactccttatttgccgtgtggttagtcgctttacatcggtaagggtagggattttacagcaccgtgaaaaatctcataatttttatgaagtcactgtactcactatgggtaatgataaatatcaatgatagataaagttatcttatcgtttgatttacatcaaattgcctttagctacagacactaaggtggcagacatcgaaacgagtatcagaggtgtctatgagtcactcatccgcccccgaaagggctactggagctgtcattacagattggcgaccggaagatcctgcgttctggcaacaacgcggtcaacgtattgccagccgcaacctgtggatttccgttccctgtctgctgctggcgttttgcgtatggatgttgttcagcgctgttgcggtgaacctaccgaaagtcggctttaattttacgaccgatcagctatttatgttgactgcgctgccttcggtttctggcgcgttattacgtgttccatactcctttatggttcctatcttcggtggtcgtcgctggacggcgttcagcaccggtattctgattattccttgcgtctggctgggttttgccgtgcaggatacctccacgccttatagcgtcttcatcatcatctctctgctatgcggctttgctggcgcgaacttcgcatccagtatggcaaacatcagcttcttctttccgaaacagaagcagggtggcgcgctgggtctgaatggtggtctgggaaacatgggcgtcagcgtcatgcagttggttgctccgctggtggtatcactgtcgattttcgcagtatttggtagccagggcgtcaaacagccggatgggactgagctgtatctggcgaatgcgtcctggatatgggtgccgttccttgccatcttcaccattgcggcgtggtttggcatgaacgatcttgctacctcgaaagcctccatcaaggagcagttgccggtactcaaacggggtcatctgtggattatgagcctgctgtatctggcaaccttcggctccttcatcggcttctccgcgggctttgcaatgctgtcaaaaacgcagttcccggatgttcagattctgcaatacgctttcttcgggccgtttattggtgcgctggcgcgttctgcaggtggtgcattatctgaccgtctgggcggaactcgtgtcacgctggtgaactttattctgatggcgattttcagcggcctgctgttcctgaccttaccgactgacgggcagggcggaagcttcatggcgttcttcgcggtcttcctggcgctgttcctgacagctgggctgggtagtggttccactttccagatgatttcagtgatcttccgtaaactgacaatggatcgcgtgaaagcagaagggggttctgacgaacgtgcgatgcgtgaagcggcaaccgacacggcggcggcgctgggtttcatctctgcgattggcgcgattggtggcttctttatcccgaaagcgtttggtagctcgctggcattaacgggttcgccagtcggcgcaatgaaggtatttttgattttctatatcgcctgcgtagtgattacctgggcggtatatggtcggcattctaaaaaataaaccgttactcgtcatacttcgggttacatgtgctgcggctgcgttcattcaccccagtcacttactttagtaagctcctgggattcattcacttgccgccttcctgtaaaccgaattatatagagtaaaatatttgattatcctttgcgcggcatgatgtcgcgctttttttatgcgtcatttagttacaacatactaatgttatatggtttatttcgccggatttcattaagagccattaatatgttacccatggggaatactccttaatacccatctgcataaaaatcttaatagtttaaataactacaggtataaaacgtcttaatttacagtctgttatgtggtggctgttaattatcctaaaggggtatcttaggaatttactttatttttcatccccatcactcttgatcgttatcaattcccacgctgtttcagagcgttaccttgcccttaaacattagcaatgtcgatttatcagagggccgacaggctcccacaggagaaaaccgatgagtaaattcctggaccggtttcgctacttcaaacagaagggtgaaacctttgccgatgggcatggccagcttctcaataccaaccgtgactgggaggatggatatcgccagcgttggcagcatgacaaaatcgtccgctctacccacggggtaaactgcaccggctcctgcagctggaaaatctacgtcaaaaacggtctggtcacctgggaaacccagcagactgactatccgcgtacccgtccggatctgccaaaccatgaacctcgcggctgcccgcgcggtgccagctactcctggtatctttacagtgccaaccgcctgaaatacccgatgatgcgcaaacgcctgatgaaaatgtggcgtgaagcgaaggcgctgcatagcgatccggttgaggcatgggcttctatcattgaagacgccgataaagcgaaaagctttaagcaggcgcgtggacgcggtggatttgttcgttcttcctggcaggaggtgaacgaactgatcgccgcatctaacgtttacaccatcaaaaactacggcccggaccgtgttgctggtttctcgccaattccggcaatgtcgatggtttcttacgcatcgggtgcacgctatctctcgctgattggcggtacttgcttaagcttctacgactggtactgcgacttgcctcctgcgtctccgcaaacctggggcgagcaaactgacgtaccggaatctgctgactggtacaactccagctacatcatcgcctgggggtcaaacgtgccgcagacgcgtaccccggatgctcacttctttactgaagtgcgttacaaagggaccaaaactgttgccgtcacaccagactacgctgaaatcgccaaactgtgcgatctgtggctggcaccgaaacagggcaccgatgcggcaatggcgctggcgatgggccacgtaatgctgcgtgaattccacctcgacaacccaagccagtatttcaccgactatgtgcgtcgctacaccgacatgccgatgctggtgatgctggaagaacgcgacggttactacgctgcaggtcgtatgctgcgcgctgctgatctggttgatgcgctgggccaggaaaacaatccggaatggaaaactgtcgcctttaataccaatggcgaaatggttgcgccgaacggttctattggcttccgctggggcgagaagggcaaatggaatcttgagcagcgcgacggcaaaactggcgaagaaaccgagctgcaactgagcctgctgggtagccaggatgagatcgctgaggtaggcttcccgtactttggtggcgacggcacggaacacttcaacaaagtggaactggaaaacgtgctgctgcacaaactgccggtgaaacgcctgcaactggctgatggcagcaccgccctggtgaccaccgtttatgatctgacgctggcaaactacggtctggaacgtggcctgaacgacgttaactgtgcaaccagctatgacgatgtgaaagcttataccccggcctgggccgagcagattaccggcgtttctcgcagccagattattcgcatcgcccgtgaatttgccgataacgctgataaaacgcacggtcgttcgatgattatcgtcggtgcggggctgaaccactggtatcacctcgatatgaactatcgtggtctgatcaacatgctgattttctgcggctgtgtcggtcagagcgggggcggctgggcgcactatgtaggtcaggaaaaactgcgtccgcaaaccggctggcagccgctggcgtttgcccttgactggcagcgtccggcgcgtcacatgaacagcacttcttatttctataaccactccagccagtggcgttatgaaaccgtcacggcggaagagttgctgtcaccgatggcggacaaatcccgctataccggacacttgatcgactttaacgtccgtgcggaacgcatgggctggctgccgtctgcaccgcagttaggcactaacccgctgactatcgctggcgaagcggaaaaagccgggatgaatccggtggactatacggtgaaatccctgaaagagggttccatccgttttgcggcagaacaaccagaaaacggtaaaaaccacccgcgcaacctgttcatctggcgttctaacctgctcggttcttccggtaaaggtcatgagtttatgctcaagtacctgctggggacggagcacggtatccagggtaaagatctggggcaacagggcggcgtgaagccggaagaagtggactggcaggacaatggtctggaaggcaagctggatctggtggttacgctggacttccgtctgtcgagcacctgtctctattccgacatcattttgccgacggcgacctggtacgaaaaagacgacatgaatacttcggatatgcatccgtttattcacccgctgtctgcggcggtcgatccggcctgggaagcgaaaagcgactgggaaatctacaaagccatcgcgaagaaattctccgaagtgtgcgtcggccatctgggtaaagaaaccgacatcgtcacgctgcctatccagcatgactctgccgctgaactggcgcagccgctggatgtgaaagactggaaaaaaggcgagtgcgacctgatcccaggtaaaaccgcgccacacattatggtcgtagagcgcgattatccggcgacttacgaacgctttacctctatcggcccgctgatggagaaaatcggtaatggcggtaaagggattgcctggaacacccagagcgagatggatctgctgcgtaagctcaactacaccaaagcggaaggtccggcgaaaggccagccgatgctgaacaccgcaattgatgcggcagagatgatcctgacactggcaccggaaaccaacggtcaggtagccgtgaaagcctgggctgccctgagcgaatttaccggtcgtgaccatacgcatctggcgctgaataaagaagacgagaagatccgcttccgcgatattcaggcacagccgcgcaaaattatctccagcccgacctggtctggtctggaagatgaacacgtttcttacaacgccggttacaccaacgttcacgagctgatcccatggcgtacgctctctggtcgtcagcaactgtatcaggatcaccagtggatgcgtgatttcggtgaaagcctgctggtttatcgtccgccgatcgacacccgttcggtgaaagaagtgataggccagaaatccaacggcaaccaggaaaaagcgctcaacttcctgacgccgcaccagaagtggggtatccactccacctacagcgacaacctgctgatgctgactttaggtcgcggtggtccggtggtctggttgagtgaagccgatgccaaagatctgggtatcgccgataacgactggattgaagtcttcaacagcaacggtgctctgactgcccgtgcggttgtcagccagcgtgttccggcagggatgaccatgatgtaccacgcgcaggaacgtatcgttaacctgcctggttcggaaattacccaacagcgtggtggtatccataactcggtcacccgtatcacgccgaaaccgacgcatatgatcggcggctatgcccatctggcatacggctttaactactatggcaccgtaggttctaaccgcgatgagtttgttgtagtgcgtaagatgaagaacattgactggttagatggcgaaggcaatgaccaggtacaggagagcgtaaaatgaaaattcgttcacaagtcggcatggtgctgaatctcgataagtgcatcggctgccacacctgttcagttacctgtaaaaacgtctggaccagccgtgaaggcgtggaatatgcgtggttcaacaacgtggaaaccaagccgggccagggcttcccgactgactgggaaaaccaggaaaaatacaaaggcggctggatccgtaaaatcaacggcaaactgcagccgcgcatgggtaaccgtgccatgctgctgggtaaaatcttcgctaacccgcatctgccggggatcgacgattattacgagccgttcgattttgactatcagaacctgcataccgcgccggaaggcagcaaatcgcagccgattgcccgtccgcgttcgctgattaccggggaacggatggcgaaaatcgaaaaagggccgaactgggaagatgacctgggcggtgagtttgacaaactggcgaaagacaagaacttcgacaacatccagaaggcgatgtatagccagttcgaaaacaccttcatgatgtatttgccgcgcctgtgcgaacactgcctgaacccggcatgtgtggcgacctgcccgagcggtgcgatttacaagcgtgaagaagatggcatcgtcctgatcgaccaggataaatgccgtggctggcgtatgtgcatcactggatgcccgtacaaaaaaatctacttcaactggaagagcggtaagtctgagaagtgcatcttctgctatccgcgtattgaagcgggtcagccgaccgtgtgctcagaaacctgtgtcggtcgtatccgttatcttggcgtgctgttgtacgatgccgacgctattgaacgtgcagccagcaccgagaacgagaaagatctttaccagcgtcagctggacgtgttcctcgatccgaacgatccgaaagtcatcgagcaggcgattaaagacggtattccgctgagcgttattgaagccgcacagcagtcgccggtttataaaatggcaatggaatggaaactggcgctgccgctgcatccggaatatcgcacactgccgatggtctggtacgtgccgcctctgtctccgattcagtctgcagcagacgcgggtgagctgggtagcaacggcattctgccagacgtcgaaagcctgcgtattccggtacagtatctggcgaatctgctgaccgccggtgataccaaaccggtactgcgcgcactgaaacgtatgctggcgatgcgtcattacaaacgtgctgaaaccgttgacggtaaagttgatacccgtgcgctggaagaggtcggtctgaccgaagcccaggcacaggagatgtaccgttatctggcgattgctaactacgaagatcgctttgtggtgccgagtagtcatcgtgaactggcacgggaagccttcccggagaaaaatggctgcggctttacctttggtgatggctgccacggttcagataccaaattcaatctgttcaacagccgtcgtatcgatgccatcgatgtgaccagcaaaacggagccgcatccatgatcgaactcgtgattgtatcgcgtctccttgaatatccggatgctgccttatggcagcatcaacaagagatgtttgaggcgattgccgcgtcgaaaaatctgccaaaagaggatgcccatgcgctgggcattttcctgcgcgatttaacgacgatggatccgctcgatgcccaggcgcagtacagcgaactgttcgaccgtggccgcgccacgtcactgttgctgtttgaacatgtgcacggcgaatcccgcgaccgcggccaggcgatggtggacctgctggcgcagtacgagcagcacggcttgcagttaaacagccgcgaattgccggaccatctgccgctgtatctggagtacctggcgcagctgccgcaaagcgaagccgtggaaggtttgaaagatatcgcgccgattctggcattgctgagcgcgcgtctgcaacagcgtgaaagccgttatgccgtgctgtttgatctgctgctgaaactggcgaataccgctatcgacagcgacaaagtggcggaaaaaattgccgacgaagcgcgcgatgatacgccgcaggcgctggatgctgtctgggaagaagagcaggttaaattctttgctgacaaaggctgcggtgattcagcaatcactgcgcatcagcgtcgctttgccggtgccgtcgcgccgcaatatctgaatatcaccaccggaggacagcactaatgcaattcctgaatatgttcttctttgatatctacccgtacatagccggggcggtcttcctgattggtagctggctgcgttatgactacgggcagtacacctggcgcgcggcgtccagccagatgctggatcgcaaagggatgaacctggcgtcgaacctgttccatatcgggattctggggatttttgtcggtcacttcttcggtatgctgacgccgcactggatgtatgaagcctggctgccgattgaagtgaaacagaaaatggcaatgtttgctggtggtgccagcggcgtgctgtgtctgattggcggcgtgctgttgctgaaacgtcgtctgttcagcccacgcgtgcgtgcaaccactaccggagcggatatcctgatcctgtcgctgctcgttatccagtgcgcgctgggcctgttgaccattccgttctccgctcagcatatggacggtagcgagatgatgaaactggttggctgggcgcagtcggtggtgaccttccacggtggcgcttctcaacacctcgatggtgtggcgtttatcttccgtctgcacctggtgctggggatgacgttattcctgctgttcccgttctcgcgtctgatacacatctggagcgtaccggtggagtatctgacacgtaagtaccagctggtgcgcgctcgtcactaagcgaattttagttcacatagaccctgcttcggcggggtttttttatgggcacggtgcggggtgagttgtcggatgcgcttcgcttatccgacctacaggggaggatattgtaggcccggtaaacgtggtgccatcgggcaaaattagctcggagtaacaggttttgattatttaaggaagcgatggtggtgggggaaggattactcagcgctgcgcgcttcgcccttcgggtcgttgcctgcggcaacgctctctcgctggcgctcaagtcgaaccttggtcgaagcttctcatccttccccgcttgggcagaatatttgattgcggattcgtttgagaattccggggcttttgaaagtgatggtggtgggggaaggattactcagcgctgcgcgcttcgcccttcgggtcgttgcctgcggcaacgctctctcgctgacgctcgagccgaaccttagtcgaagcttctcatccttccccgcatgggcagaatatttgattgcggattcgcttgagagttcagggacttttgaaagtgatggtggtgggggaaggattactcagcgctgcgcgcttcgcccttcgggtcgttgcctgcggcaacgctctctcgctggcgctcgagtcgaaccttggtcgaagcttctcatccttccccgcatgggcagaatatttaattgcggattcgttgggaagttcagggacttttgaaagtgatggtggtgggggaaggattcgaaccttcgaagtcgatgacggcagatttacagtctgctccctttggccgctcgggaaccccaccaggggtaattcaaattttgaggtaatgcttgagatggtggtgggggaaggattattcgtcgcttcgctcctcacccttcgggccgttgcctgtggcaacgttctctcgctttcgctcgaatcgaaccttagtcgaaggttctcacccttccccgatgagtgcaaactttcacaatctcaccgaagttaccacatcgctgtggtgaattatggtggtgggggaaggattcgaaccttcgaagtcgatgacggcagatttacagtctgctccctttggccgctcgggaaccccaccacggggtaatgctttttactggcctgctcccttatcgggaagcggggcgcatcatatcaaatgacgcgccgctgtaaagtgttacgttgagaaaaatgaactggttgcgtaattttcatccgtaacggattaaaggtaaccagttatttttgctggcgattaaagaataatcgttcgattaccgtaaacaaagacgcgctgtgccagtactttgtatagtgcacgacttaagacgtttttctcgacgtcacgacctgcgcgcatcatatcttcagctgtgtaggtatgatcgacatgaataacgtcctgcatgatgattgggccttcgtccagattgtcattcacatagtgagcggttgcgccaataatcttcacaccacgttcataggcctggtgataaggacgtgcgccaataaacgctggcaggaatgaatggtgaatattgatgatcttattcgggaagcgtgccacaaattccggcgttaatacccgcatatacttcgccagcaccacgtagtcaggttgataagcatcaatggcatccgccatcttttgatcgtgctcgttgcgggttaacccttcatggcttaccagctcaaacggaatatcaaaacgctcaaccagagaacgtaaagtatcgtggttaccaataactgccgcgatttcgacatccaggccgccgtaattggctttcatcaacaaatcgccaaggcaatgcgcttctttagtgaccagaatcactatccggcgacgaccggcaggattcagctcacgcacggagccttctggcaatgcgctatcgagatccgccagcagggtggaatcattaaaaatcccttccagttccgtgcgcataaaaaagcgcccggtacggtgatcaacaaattcattgttctgtacgatatttaactcgtgcttgtagcaaatattggtaatacgtgcgatcagacctttttggtccggacaaatagtacgcagaactttacgttggagtgaatgcattgctggaaaaaccttgttgagagtgtttgctaaaccgtaccgtcaaccattattggccgcagcactttttaaattttttacctgaaccacaagggcagggatcgttgcgaccaaactgcggacgtgtaccgtcaatatagtaccattgaccgttttctttcaaaaatcgcgaacgttcaattattgcacctgttttaccaccttcggtaaatcgagcaacaaaactgacaaatccgatattgtcggcgtcctgccaacaatgttcaaatacggtcaatcccaaccattcagtatgcgcaaatccggccatcaattcggcacgtaacgccgctgctccacaagagggatgccaggtctttattaaataatctgcgtcttgcatcacaaaagcgcagtaacgcgaacgcatgagatgttctggatcaggtgcaaccttttcaccagacacataagggtggcaacataggctatactcgacagcactaccacagggacaaagctgagacacaaataatctccctggaaacaataacggcgtattaaccgcctgagtagcactatgttaaccgagcagtagcgatgtggctacgattgcattccaggggaatcttgcgggaataatgagaaagataaaaatagggctggcgctgggatctggcgcggcgagaggttggtcgcatattggcgttattaatgcgctaaaaaaagtgggtattgaaattgatatcgttgcaggatgttcaattggttcgctggtgggcgctgcctatgcatgcgatcgattatctgcgctggaagattgggtgacctctttcagttattgggatgttttacgcctgatggatctctcctggcagcgcggtgggttactgcgcggcgagcgtgtcttcaatcaataccgcgaaataatgccggaaacagagatcgaaaattgttcccgtcgctttgcggctgttgccaccaatttaagtacgggacgtgaattatggtttactgaaggcgatctccatcttgctattcgcgcatcatgcagtattccaggactcatggcacctgttgcacataacggctactggctggttgatggagcagtcgttaacccaattcctatttccctcacgcgtgcattgggggctgatattgtgatagcggttgacctgcagcacgatgctcatttgatgcaacaagatttgctctcctttaatgtcagtgaagaaaatagcgagaatggtgattctctgccgtggcatgcgcgtctgaaagaaaggttaggcagcataacgacacgtcgggcggtgacagcgccaacggcaacagagattatgaccacttctatccaggtgctggagaaccgccttaaaaggaaccgcatggcaggtgatccgcccgatattctgattcaacctgtttgcccgcaaatatctacgcttgatttccatcgcgcgcacgctgccattgcggccggacagctggcagtggaaaggaaaatggacgaacttttgccgttggtacgcaccaacatttgaccagaatttttatctacacttaagttaattctgacaggcgcaggtggcaatagcatgccactattgagtaaagccagtcaggggagagaacatgacgcagccattggtcggaaaacagattctcattgttgaagatgagcaggtatttcgctcgcttctggattcatggttttcctcattgggagcgacaacggtactggcggctgatggggtggatgcccttgagttgctgggaggtttcactccagacctgatgatatgtgatatcgcgatgccacgaatgaacgggcttaaactgctggagcatatacgtaacagaggcgaccagaccccagttctggtgatatctgccactgaaaatatggcagatattgccaaagcgttacgtctgggcgttgaagatgttttgctgaaaccagttaaagatctgaatcgcttgcgcgagatggtttttgcctgtctctatcccagcatgtttaattcgcgcgttgaggaagaggaaaggctttttcgcgactgggatgcaatggttgataaccctgccgcagcggcgaaattattacaggaactacaaccgccggttcagcaggtgatttcccattgccgggttaattatcgtcaattggttgccgcggacaaacccggcctggtgcttgatattgccgcactttcggaaaacgatctggcattttattgccttgatgtcacccgagctggacataatggcgtacttgctgccttgttattacgcgcattgtttaacggattattacaggaacagcttgcacaccaaaatcaacggttgccagagttgggcgcgttattgaagcaggtaaaccatttacttcgtcaggccaatctgccggggcagtttccgctattagttggctattatcatcgcgaactgaaaaatctcattctggtttctgcgggtctgaatgcgacgttaaataccggcgaacaccaggtgcaaatcagtaatggtgttccgttaggcactttaggtaacgcttatttgaatcaattgagccagcgatgcgatgcctggcaatgccaaatatggggaaccggtggtcgactgcgcttgatgttgtctgcagaatgagcaaacgataacgcgggctaaatttgcattacctgctaatgtcggctggtggtactatcgtcgccattcgtataagtaattgtcttaattatgctaactcgcctccttttcagaacttagccccttcggggtgctgatatactgggatgcgatacagaaatatgaacacgttcaaaacacgaacagtccaggagaatttaaatggctgccattaatacgaaagtcaaaaaagccgttatccccgttgcgggattaggaaccaggatgttgccggcgacgaaagccatcccgaaagagatgctgccacttgtcgataagccattaattcaatacgtcgtgaatgaatgtattgcggctggcattactgaaattgtgctggttacacactcatctaaaaactctattgaaaaccactttgataccagttttgaactggaagcaatgctggaaaaacgtgtaaaacgtcaactgcttgatgaagtgcagtctatttgtccaccgcacgtgactattatgcaagttcgtcagggtctggcgaaaggcctgggacacgcggtattgtgtgctcacccggtagtgggtgatgaaccggtagctgttattttgcctgatgttattctggatgaatatgaatccgatttgtcacaggataacctggcagagatgatccgccgctttgatgaaacgggtcatagccagatcatggttgaaccggttgctgatgtgaccgcatatggcgttgtggattgcaaaggcgttgaattagcgccgggtgaaagcgtaccgatggttggtgtggtagaaaaaccgaaagcggatgttgcgccgtctaatctcgctattgtgggtcgttacgtacttagcgcggatatttggccgttgctggcaaaaacccctccgggagctggtgatgaaattcagctcaccgacgcaattgatatgctgatcgaaaaagaaacggtggaagcctatcatatgaaagggaagagccatgactgcggtaataaattaggttacatgcaggccttcgttgaatacggtattcgtcataacacccttggcacggaatttaaagcctggcttgaagaagagatgggcattaagaagtaacatccgtatcggtgttatccacgaaacggcgttgagcaatcgacgccgtttttttatagcttattcttattaaattgtcttaaaccggacaataaaaaatcccgccgctggcgggattttaagcaagtgcaatctacaaaagattattgcttgatcaggaaatcgtcgagggatttaccttgctcatccattgcttttttgattacagctggagtacggccttggccagtccaggttttagtttcgccgttttcgtcaacgtagctatattttgccggacgctgagcacgtttagctttggtgccagatttaacggcagcaaggctattcagcagttcgttcgggtcaataccgtcagcgatcagcatttcgcgatattgctgcagtttacgagtgcgctcttcaacttcagcagcagccgcgctttcttcttcgcgacgttcgttaacaacaacttctaatttttccagcatttcttccagcgtttcaagtgtacattctcttgcctgcgcacgaagagtacggatgttgttcagaattttaagtgcttcgctcattgtagtaatctcaaacttatattggggtggtttgttgaggtaataatagagccttaaattcagttgtgcaatagccaggaatgtaaggaattcaaaattgttctttattttgtgccgccaataaatatcttttcataaaattagccagaaaagacgcggcatatagccctatttacaccgatgatttcgcagcacgtgaggttaaaacttcctgattcatgtcacattttatggggagattatcgtaggctgacgacctttcagtcttctgtattagttgtgtttacgagaattccctattaagcgaatgatgaaaagtagaacagtcgcaataagagcatggacttagtattgcactatctcctggaggtcaacagagggctattacttgcgcaacaggttaaagattgtgaatagttaccagcagtcatttacccgcttataacaagcgaggcagttgtaatgatagctcagaaggattatgcaaggcttcgtaagggagaacgcatatacccacttctgtgcatactgttgagctgaaaaactgacgaattatgataaactccagccaactttatttcatatcattgagggcctgtggctgatggcacagctatatttctactattccgcaatgaatgcgggtaagtctacagcattgttgcaatcttcatacaattaccaggaacgcggcatgcgcactgtcgtatatacggcagaaattgatgatcgctttggtgccgggaaagtcagttcgcgtataggtttgtcatcgcctgcaaaattatttaaccaaaattcatcattatttgatgagattcgtgcggaacatgaacagcaggcaattcattgcgtactggttgatgaatgccagtttttaaccagacaacaagtatatgaattatcggaggttgtcgatcaactcgatatacccgtactttgttatggtttacgtaccgattttcgaggtgaattatttattggcagccaatacttactggcatggtccgacaaactggttgaattaaaaaccatctgtttttgtggccgtaaagcaagcatggtgctgcgtcttgatcaagcaggcagaccttataacgaaggtgagcaggtggtaattggtggtaatgaacgatacgtttctgtatgccgtaaacactataaagaggcgttacaagtcgactcattaacggctattcaggaaaggcatcgccacgattaataagaatttctttactgacagggtgagcagggcacttttatcctgtcagttcgttttacgcacttcttccgggctatatacccttctcggcagttttttaacgccgctatacgcctcacagggctcttaagcaccgacgttgacttgtgacctgtaaagtacaatatccctgtgtttaggcgttatacatcgtcgcaaatatgatgaaggctaatgctgtcggtttatggaaaagttgctttgggtaaacaaaaaatacggccccagaagggcaatgccgttcacttaagaggagcggcactatgtttcacaggataacgggtttttgatatcttaaccgacctcggccttgatggtcgggggcgttttgttatgaacaccacttccagagcaccccgaagatgctccagtcgtttcgggatggtccctggtgacgccgtgtttcccagctctatcatttctgatgcgatattcttccacgcaggcagtagccagtggcggttacaacccttctggttcagcgtcagcagcaggtcttcgctgtaaaaaagtttatcaaacaacgtaatagagttatccgggatggtggcgagcatggagtgggccagcacagtttcgctctgccggtaaggtgcggtcacggcattcagcagaatgtgacttcccaggttcattaaggccaccagacgcataaccgggtaggcgttctgccgcttagtggatgtgttggcagacccataatattcacgcagctcgggtttatcaggtgtcctgaactgtgcgccatcaatggcaaaaagttgcaggccgtgccagtcatccttcaggtaacgttccgcgcccctgtctgtgcggtctggcggaagagccattccactggggcggcccccacgcgctgacgcgcctgggtgacagcgctgcgggccagcaggttcatccccgcttcgccatccgcgctcaggttcagacggcgaacaacatcggtaattggctcattgcaccaccatccagataaccatgtcccccggtaaacgacggcggcgaacggtcgcatgagcagaaagcgtcaggcagtgttgtatccactcggtgggaaggtgttctgcaaatagttgtgcagagggcggaggcataagcggatggtcactgaaatcgagcagatcattgagaagtggcataagaaaacggctccctgttgtggaagccgttatagtgcctcagtttaaggatcggtcaactaatccttaactgatcggcattgcccagaaggggccgtttatgttgccagacagcgctactgattaagcggattttttcgcttttttctcagctttagccggagcagcttctttcttcgctgcagtttcaccttctacataatcacgaccgtagtaggtatccagcagaatctgtttcagctcggagatcagcgggtaacgcgggttagcgccggtgcactggtcatcgaatgcatcttcagacagtttatccacgttcgccaggaagtctgcttcctgaacgccagcttcacggatagatttcggaatacccagttcagctttcagcgtttccagccatgccagcagtttctcgatcttagcagcagtacggtcgcccggtgcgctcagacccaagtggtcggcaatttcagcataacgacggcgagcctgcggacggtcatactggctgaatgcagtctgcttggtcgggttgtcgttcgcattgtagcgaataacgttacaaatcagcagggcgtttgccagaccgtgcggaatatggaactgggaacccagtttgtgcgccattgagtgacatacacccaggaaggcgttcgcaaacgcgatacccgcgatagtcgctgcactgtgaacacgttcacgcgctaccggatttttagacccttcgtggtaggacgctggcagatattctttcagcagtttcagtgcctgcagagcctgaccatcagagaactcagatgccagtacagaaacataagcttccatggcgtgagttactgcgtccagaccaccgaaagcacacagggacttcggcatgtccataaccaggttggcgtcgacaatcgccatatccggagtcagcgcatagtctgccagcggatatttctgaccagtagcgtcgtcagttacaaccgcaaacggagtgacttcagaacctgtaccagaagtggtggtgacagcgatcattttcgctttcacgcccattttcgggaacttgtagatacgtttacggatatccataaagcgcagcgccagctcttcgaagtgagtttccggatgttcgtacataacccacatgatcttcgcggcgtccatcggggaaccaccacccagcgcgataatcacgtctggtttgaaggagtttgccagttctgcacctttacgaacgatgctcagggtcgggtccgcttctacttcgaagaagacttcagtttcaacgcctgctgctttcagtacggaagtgatctgatcagcataaccattgttgaacaggaagcggtcagtcacgatgagcgcacgtttgtggccatcagtaatcacttcatccagcgcgattggcagggagccacggcggaagtagatagatttcggaagtttgtgccacaacatgttttcagctcgcttagcaacggttttcttgttgatcaggtgtttcggaccaacgttttcagagatggagttaccaccccaagaaccacaacccagagtcagggaaggtgcgagtttgaagttatacaggtcaccgataccaccctgagacgctggggtgttaatcaggatacgcgccgttttcattttctgaccgaagtaagaaacgcgagccggttggttatcctggtcagtgtacaggcaagaggtatgaccgataccgcccatagcaaccagtttctctgctttttctaccgcgtcttcgaaatctttagcgcggtacattgccagagtcggggacagtttttcatgtgcgaacggttcgctttcatcaacaacggtcacttcaccgatcagaatcttggtgttttctggtacagagaagcctgccagttcagcaattttataggctggctgaccaacgatagccgcgttcagcgcaccgtttttcaggataacatcctgaacagctttcagctctttaccctgcaacagatagccgccgtgggttgcaaaacgttcacgtacagcgtcataaacagagtcaacaacaacaacagactgttcagaagcacagattacgccgttgtcgaaggttttggacatcagtacagatgcaactgcacgtttgatatcagcagtttcatcgataacaactggagtgttgcccgcgcctacaccgatagctggtttaccggagctgtatgcggctttaaccatgcccggaccaccagtcgcgaggatcaggttgatgtctgggtggtgcatcagtgcgttagacagttcaacagaaggttgatcgatccagccgatcagatctttcggagcaccggcagcgatagcagcctgcagaacgatatcagccgctttgttggtggcatcttttgcacgcgggtgcggggagaagataatggcgttacgggtcttcagactgatcagcgatttgaagatagcagttgaagtcgggttagtggtcggaacgataccgcaaataataccgattggttcagcgatagtgatggtaccaaaagtgtcgtcttcagacagaacaccacaggttttttcatctttataggcgttgtagatatattcagaagcaaagtggtttttgatcactttatcttcgacgatacccatgccggattcggcaacggccattttcgcgagtgggattcgagcatctgcagcagccagagcggcggcgcggaagattttgtctacttgctcttgagtgaaactggcatattcacgctgggctttttttacacgctctacgagtgcgttaagttcagcgacattagtaacagccataatgctctcctgataatgttaaacttttttagtaaatcatctgctcgaatacgagagtatagtcagtgcggtgatgatttgcttaacctatgaaaatcaaaagcttactcgcgctcacactcactgtgatttactaaaagagtttaaacattagagttattatctctaatgcgtcacttccaggtggcgtaagcaagattactcacttctgggtactgattacgtgatccaaatcaaatttttgcaaagctgacacctttcagcatcgcttttcgccattatagctaacagttaataaattgtagtatgatttggtggctacattagcatgttttgcacaactagataacaataacgaatgatagcaattttaagtagttaggaggtgaaaaatgctgtcaaaaggcgtattgtcagcgcgtcttttcaaccttatttatggctaacattatccggcttttgcttcggagctaaccgtgattcagaccttttttgattttcccgtttacttcaaatttttcatcgggttatttgcgctggtcaacccggtagggattattcccgtctttatcagcatgaccagttatcagacagcggcagcgcgaaacaaaactaaccttacagccaacctgtctgtggccattatcttgtggatctcgctttttctcggcgacacgattctacaactttttggtatatcaattgattcgttccgtatcgccgggggtatcctggtggtgacaatagcgatgtcgatgatcagcggcaagcttggcgaggataaacagaacaagcaagaaaaatcagaaaccgcggtacgtgaaagcattggtgtggtgccactggcgttgccgttgatggcggggccaggggcgatcagttctaccatcgtctggggtacgcgttatcacagcattagctatctgtttggtttctttgtggctattgcattgttcgctttatgttgttggggattgttccgcatggcaccgtggctggtacgggttttacgccagaccggcatcaacgtgattacgcgtattatggggctattgctgatggcattggggattgaatttatcgttactggtattaaggggattttccccggcctgcttaattaattcctttcaaatgaaacggagctgccatgctccgtttacttcgtcattatttttactttgttcccgcgcagttatcaaaagcaaaaggaataggtaaaaatattcttctcaaattacagttagttataaggatttccttaactgcttctcctcaccatcatgttattttcgccacatcataatcctgggcttgctgaagaataattgaaatgatattattaattccactgcctttggtagaggaaagtgctaaataataatcaattgttaaattattgtgcatttcactactggaactgtaatcagaaaagatagacatgcttagccaatctctatttgattgaattgaaagatgtttgttaaggcatggatgcaagctatagattctgatacggtcaataaaagagaattgcttaacaattttgcaaaatgtattggcgagtaagaaccgcatttggtactttccgggcaaccgccagacgattctttattggtaatgagaataattaacaattaaagagcgtcgcgaaagaataatgtgtctcgacaggggagacacagtacgaatcgacataaggtgatcgtctgaatcaccagaataaataaagtcggtgatagtaatacgtaacgataaagtaacctgacagcagaaagtctccgagcctgtgcagggtcccaatccgggattacacatgctggttaataccagtaattataatgagggagtccaaaaaacaatgaccaacatcaccaagagaagtttagtagcagctggcgttctggctgcgctaatggcagggaatgtcgcgctggcagctgatgtacccgcaggcgtcacactggcggaaaaacaaacactggtacgtaacaatggttcagaagttcagtcattagatccgcacaaaattgaaggtgttccggagtctaatatcagccgagacctgtttgaaggcttactggtcagcgatcttgacggtcatccagcacctggcgtcgctgaatcctgggataataaagacgcgaaagtctggaccttccatttgcgtaaagatgcgaaatggtctgatggcacgccagtcacagcacaagactttgtgtatagctggcaacgttctgttgatccgaacactgcttctccgtatgccagttatctgcaatatgggcatatcgccggtattgatgaaattcttgaagggaaaaaaccgattaccgatctcggcgtgaaagctattgatgatcacacattagaagtcaccttaagtgaacccgttccgtacttctataaattacttgttcacccatcaacttcaccggtgccaaaagccgctatcgagaaattcggcgaaaaatggacccagcctggtaatatcgtcaccaacggtgcctataccttaaaagattgggtcgtaaacgaacgaatcgttcttgaacgcagcccgacctactggaacaacgcgaaaaccgttattaaccaggtaacctatttgcctattgcttctgaagttaccgatgtcaaccgctaccgtagtggtgaaatcgacatgacgaataacagcatgccgatcgaattgttccagaagctgaaaaaagagatcccggacgaagttcacgttgatccatacctgtgcacttactattacgaaattaacaaccagaaaccgccattcaacgatgtgcgtgtgcgtaccgcactgaaactaggtatggaccgcgatatcattgttaataaagtgaaagcgcagggcaacatgcccgcctatggttacactccaccgtatactgatggcgcaaaattgactcagccagaatggtttggctggagccaggaaaaacgtaacgaagaagcgaaaaaactgctggctgaagcgggttataccgcagacaaaccgttgaccatcaacctgttgtataacacctccgatctgcataaaaagctggcgattgctgcctcttcattgtggaagaaaaacattggtgtaaacgtcaaactggttaaccaggagtggaaaacgttcctcgacacccgtcaccagggtacttttgatgtggcccgtgcaggctggtgtgctgactacaacgaaccaacttccttcctgaacaccatgctttcgaacagctcgatgaataccgcgcattataagagcccggcctttgacagcattatggcggaaacgctgaaagtgactgacgaggcgcagcgcacagctctgtacactaaagcagaacaacagctggataaggattcggccattgttcctgtttattactacgtgaatgcgcgtctggtgaaaccgtgggttggtggctataccggcaaagatccgctggataatacctatacccggaatatgtacattgtgaagcactaatggcaatacgtggggcaggagtgtcctgctccacggtgtctgatttttatcgcattacagaaggcacaggccagaaggtagggcaatgttaaaatttattctacgtcgctgtctggaagcgattccgacgctatttattcttattactatttcgttctttatgatgcgcctcgcgccgggaagcccttttaccggcgaacgtactttaccgccagaagtgatggccaatatcgaagcgaaatatcatcttaatgatccgatcatgacacagtatttcagctacctgaaacaactggcgcacggtgatttcggtccatcgtttaaatataaagattattcggtcaatgacttggttgcatccagttttcccgtttctgccaaactgggagccgcagcatttttccttgcggtaatactgggtgttagtgctggcgttattgccgcattaaaacaaaacaccaaatgggactataccgtgatggggctggcaatgaccggggttgttatccccagttttgtggttgcaccattattagtcatgatatttgcgatcattttgcattggctgccgggcggtggctggaatggtggggcgcttaaattcatgatattgccgatggtggcgttgtcactcgcttatatcgccagtattgcgcgtattacccgtggctctatgattgaagtattacactccaattttattcgtactgcccgggcgaaagggttacctatgcggcggatcattttacgtcacgcattaaaacctgctctgttacccgtgctctcttatatgggccccgcatttgtcggcattattaccggttctatggttatcgaaaccatttatggtttgccggggattggacaactgttcgttaatggcgcattgaaccgtgactattccttagtgttaagcctgaccatcctggttggtgctttaaccattttgtttaatgccattgtcgatgtgctatatgcggttatcgacccgaaaatccgttactgatactggagctcgcgatgatgttaagtaagaaaaacagcgagacgctggaaaatttcagtgaaaagctggaggtcgaagggcgcagcttgtggcaggacgcacgtcgacgttttatgcataaccgtgcggcggttgccagtctgatagtgctggtgctgatcgcgttatttgtaatcctggcaccgatgctttcccagtttgcctatgacgatactgactgggcgatgatgtccagcgccccggatatggagtccggtcactactttggtactgactcatccggtcgcgacctgcttgtgcgcgttgcgattggcgggcgtatctcactcatggtcggtgttgctgcggcactggtggctgtggtcgtcgggacactttatggttcgctttccggttatctgggcggtaaagtggattcggtaatgatgcgtctgctggaaatcctcaactccttcccattcatgttcttcgtcattttgctggtgacctttttcggtcaaaacatcctgctgattttcgtggcgataggcatggtttcctggctggatatggctcgtattgtgcgtgggcaaaccctgagtctgaagcgcaaagagtttattgaggcggcacaagttggcggtgtatcgacatcgggcattgttattcgccacattgtgccgaatgtactcggtgtggtggtggtctacgcatcacttctggtgcccagcatgatcctctttgaatctttccttagcttcctggggttgggtacgcaagagccgttaagcagctggggtgcattgctgagtgatggcgcgaactcgatggaagtctctccatggttattgttgttcccagcgggattcctcgtggtgacgctgttttgtttcaactttatcggcgatggcttgcgtgatgccctcgacccgaaagatcgttaaggagtgcagccatgaacgtaattgaaactgcaactgtgccgctcgcacaacaacaggctgacgcactgctgaacgtgaaagatttgcgtgtcacctttagtaccccggacggcgacgtcacggcggtcaatgatttgaatttttccctacgtgccggagaaacgctgggtattgtaggtgagtctggttcgggtaaatcgcaaactgcatttgcgttgatgggcctgttggctgccaacggacgtattggcggatcggcaaccttcaatgggcgtgaaatcctcaatttgccagagcatgaactcaataaactgcgcgctgaacaaatctcaatgatttttcaggacccaatgacttcgttgaatccctatatgcgcgtcggtgagcagttgatggaagtgctgatgctgcataagaacatgagcaaagctgaggcgtttgaagagtcggtgcggatgctcgatgcggtaaaaatgccggaagcgcgtaaacgcatgaaaatgtacccgcacgaattttctggcggcatgcgtcagcgagtcatgattgcgatggccttgttatgtcgacctaagctgctgattgcggatgaaccaacaactgcgctggacgtcaccgtacaggcgcagatcatgacgctattaaatgaactgaagcgggaatttaataccgccatcattatgatcacccacgatcttgtcgtggtggcggggatctgcgacaaagtgctggtaatgtacgccgggcgcacgatggaatatggcaacgcgcgcgatgtcttttatcaacccgttcatccttattctatcggtttgctcaacgcggtgccgcgtctcgatgcggaaggtgaaacaatgttgaccatcccgggtaatccgccaaacctgctgcgattaccgaaaggttgcccgttccagccacgttgtccgcatgcgatggaaatttgtagtagcgcaccgccgctggaagagtttacgcctggccgtctgcgtgcttgctttaaaccggtggaggaactgttatgaatgctgtaactgaaggaagaaaagtcctccttgaaatcgccgatcttaaagtgcactttgaaatcaaagatggcaaacagtggttctggcaaccgccgaaaacgctcaaagccgtcgatggtgtcactcttcgcctgtatgaaggggaaacattaggtgtggtaggggaatcgggatgcggtaagtccacctttgctcgcgccatcatcggtttggtcaaggcgaccgacggtcatgttgcctggttaggtaaagagttgctgggcatgaaacccgatgaatggcgtgccgttcgcagtgatattcagatgattttccaggatccgttggcatcgctaaacccgcgtatgaccatcggcgagatcatcgctgaaccactgcgtacttatcatccgaaaatgtcacgccaggaagttcgcgagcgcgtgaaggcgatgatgctgaaagtcgggttattgcctaacctgattaaccgctatccgcatgagttctctggtgggcagtgccagcgtatcgggattgcgcgtgctcttattcttgaaccgaagctgattatctgtgatgagccggtgtcggcgctggacgtgtcaattcaggcacaggtggtcaacctgctccagcaattgcaacgtgagatgggattgtcattaatttttatcgctcatgacctggccgtggtaaaacacatttccgatcgtgtgttggtgatgtatctcggccatgcggtagaactggggacctatgatgaggtctaccacaatccactacatccttacaccagggcattgatgtcggcagtccccatacctgatccggatctggagaagaacaaaaccatccagttactggaaggggaattaccgtcgccgatcaacccgccttccggttgtgttttccgtacccgttgcccgattgccggtccagagtgcgccaaaacacgtcctgttctggaggggagtttcagacactccgtttcttgcctgaaagtcgatccgctttaaaaacaataagggctgacagttgtcagccctttttcacgctaaaagcgattatttattcccgccagatgatatggcaaagtttgtgatctttttcgcggcataacagaatgcgggcaaaaacatcgttgatttcaccatcttcactgtccgccagaccaatcaccacttcggcaaaaaagtccgggttcaaatcgaaatcaacatgttcctgccagtcttccgccggatcgaataactccgcgccgccgcgctcttcaaactgaagattgaacagcagaacatcagctggatcgagattgtcggcagccagttcgagaaaaatatcgtaggcctgttcaagcgtttcatcttcagtcaggcgattgtttagatccatatccatagttactacctgtttaacctctgttggcgacgttttacagcaacggactgaagaagtaaaacagtcgctcggcgacacgttgccataatggacgttttagccataaacgggcatcgagcagacgtgaacgcgaaatataatcgtcctgaacggcggcgaggtcagcaccaaaacctttatcgtcgattgccagggtaatctcgaaatttagccacagactacgcatatcaaggttaactgtgccaaccagacttagttcgccatcgaccagcacgctcttggtatgcagtaacccgccttcaaactgataaattttaaccccagcagccagcagttccgtaaagaatgcgcgactggcccagccgaccagcatcgagtcattttttcgcggaaggataatactgacatccaccccgcgctgcgccgccgtgcaaatcgcatgaagtaaatcatcgcttggcacaaagtagggcgtggtcatgatcaaatattcacgcgccgaataagccgcagtcaataatgcctggtgaatgagatcttccggaaagccggggccagaagcaattgtgtgaatggtgtgaccgctggcctgttcaaacggcataatattgacatctggtggtggcggcagaatacgttttccggtttcaatctcccagtcgcaggaataaataatccccatcgcggtggcgatagggccttccatacgcgccatcagatcaatccattgccctacgcccgcatcttgtttgaagtagcgaggatcgaccatattcatgctgccggtgtacgcgatgtaattatcgatcatgatcatcttgcgatgttggcgcaggtccatacggcgtaaaaacacacgcatcagattgacctttaaggcttcgaccacttcaataccggcattacgcattagctcgggccacgggctgcggaaaaaagccacactcccggcggagtcgagcatcaatcggcaatgaatgccgcgtcgcgcagccgccattaatgattcagccacctggtccgccatgccgccgggctgccagatataaaacaccatctcaatattatggcgcgcgagctggatgtcgcggattaacgcctgcatcacatcatctgactcggtcatcagttgtagctgattccctttgaccccagcgatcccctgacgacgctcgcaaagcttgaataatggcgcagcgacactgctattttcttcggcgaagatatgcttacaggctttaaggtcgttaagccattttgcggtggaaggccacatcgctctggcgcgctcagcgcggcgtttgcctaaatggagctcgccaacggcaagataggcaataattccgactaacggcagaatgtaaataatcaacagccaggccatcgcggagggaactgcgcgtcgtttcattagaatgcgtaaagttacgcctgcaatgagcaaccagtatcccagaatggccaaccaactcaccaacgtataaacggttgtcatagattagaaatccttttgaaagcgcattgttatgagtttacgcatatggattcatctggcaaataaaaacgcgggaaaagcactggtcagcgtcgggggtgggggtataatgaccattctgttattgcatagagtagttaacatgaagcggagtagaacggaagtggggcgctggcgcatgcagcgtcaggctagccgacgtaaatcgcgttggcttgaggggcaatcgcgccgaaatatgcgtatccacagcatcaggaagtgcattctaaacaaacagcgtaactcgttattgtttgcgatctacaatatctaaatgtactgggcaccattgcggtgcccaataagtttactcttccgtctttaaactctatttttgcgccgattctttactgtcagctttcgtttctagttcatcgttatcgctgaaaataccatgacctgagttcaacaacattgaaacgagcatatcattattaatctcttcaccatttaaaactcgcgccagaatttcgctgccaaacagttgcggtgagagaatgatatccggatgtaccatcttaatcttattcaggtttttgctatcactgacggcgagaactgttttgacatcactgctcatatcttttgccgagagtacaacaaacgcgttatctgcatcgttatcactcagcgccagaatggcccggcaacgatcgattcccgctttctttaatacagaactgtcattactgtcaccggggataacatcagcattatcgcctaagcgttgctcaagttgcttgatatcatcttcaggcaagttgctgataaccgttacgttttgtccgcgttgattcagttgcaggatcgtattgatggcgagaatcgaatgtccgcaaacaataaaatgatctttacgatgcattgtatgattgtttccttttacaagtttgttgaatcccccgcggataagcggaccaaaaattgaggtcatagatgtggcaaaaacggtaatgccggaaataatgaccgaaatagtgaacaatcgtgctgattcagaaacagggacaatatcgccatagccgacggttgacatggtttctatcgaaaaatagaacgcggtcatcaaactttctattcgcggattaaaaccttcgcttaaataaagcgcaccgtaggttgagtaaaacagtaatgtcgtgaaactaataaatgcaaaaattgtcccggctgcggcgctactgtgggagaagtctttgcgcagtatcagcaaaaacaccagcgtaaaaatgcaaaatccaatactaaatttcagccagggataaaaatgcagggtgtaaattagcgctatcaacaacaaaatgatactgattgcccatgcgagctttgcccggaacagtaagccaatggagttcaggacaagaaagacgccgagcataaagagtggggcgtttgccagcaaggagagatccaactctgaaaatgctttgatatggaaaatatcaagcaaattgaccgacataccatagattgttttaaaaataagcaatccatttaaaaagacggccagcgcgagaatgtcgtgccgaagggtcacccataaatttgttgctgtttgtttgaatgtagcccagtgactcactgatacctctgtaaccacaattttgtttaattatcttagcgtgcacattttctgaacatacatgcagcgcgtgaatgtgttaaacaatagtagatgactttatccgcagtaatcaaaggatttgagcgagcaactgtacctcaggaaaggtcatttttcctgaatatgctcacatcatataaagaaatacagataaagttattatctgcttgtggtggtgaatgcactgaccggctataaggaaaggccaaacaagaacacggttgcaaaaaccgtgcccttaaatattgaatctctattcagaacactttcttaaatggtttcactgaaacgtgttcatagactcctgccgctacgtacgggtcagcatcggcccaggcctgagctgcttccagcgattcaaattcagcaataacggttgagccagtaaatcccgcagcccctggatcgttactgtctaccgctggcattggaccagctgtcaacaaacgaccttcatcatgcagtaactgtaaacgtgctaaatgtgccggacgaacggaaaggcgtttttcgaggctatcagctttgtcttgagcgtaaataacatacaacacgggcacaactccttgttcgggaaagttgtaaagtacgttatttgaaagggcgaagatctgcaacggaaagatgatgtctttgttaaggccatgcataaagtaagggtaattacgccaaaaatgacattttcactgatcctgatcgtcttgccttattgaatatgattgctatttgcatttaaaatcgagacctggtttttctactgaaatgattatgacttcaatgacccttgatttacctcgccgcttcccctggccgacgttactttcggtctgcattcatggtgctgttgtggcgggtctgctctatacctcggtacatcaggttattgaactacctgcgcctgcgcagccgatttctgtcacgatggttacgcctgctgatctcgaaccgccacaagccgttcagccgccaccggagccggtggtagagccagaaccggaacctgagccgatccccgaaccgccaaaagaagcaccggtggtcattgaaaagccgaagccgaaacctaagccaaaaccgaagccggtgaaaaaggtacaggagcagccaaaacgcgatgtcaaacccgtagagtcgcgtccggcatcaccgtttgaaaatacggcaccggcacgcctgacatcaagtacagcaacggctgcaaccagcaagccggttaccagtgtggcttcaggaccacgcgcattaagccgtaatcagccgcagtatccggcacgagcacaggcattgcgcattgaagggcaggttaaagttaaatttgacgttacgccggatggtcgcgtggataacgtacaaatcctctcagccaagcctgcgaacatgtttgagcgtgaggtgaaaaatgcgatgcgcagatggcgttatgagccgggtaagccaggcagtgggattgtggtgaatatcctgtttaaaattaacggcaccaccgaaattcagtaagcagaaagtcaaaagcctccgaccggaggcttttgactattactcaacaggtaaggcgcgaggttttccttcaggatcaaccgcgacatacttaaataatgcttctgtcgctttatagcgttgcccaattggttcagacgctacttttttcacccacacttcaatattaatgctgaccgatgtcgtccctttctggacacagcgtgcatagcagcacaccacatcgccgaccgcaaccggccgtaagaaagtcattccttcaacccgcacagtcactacgcgaccgtgggcaatttcttttgccagaatagcgccgccaatatccatttgtgacattaaccaaccaccaaagatgtcaccattggcattggtatcggcgggcatggctaaagtacgtaaaacaagatcgccctgagggacgttatgtgttgtagacatggtaaaaccgacttaaaaggaaaatcacaggcgcgatgctactatgattttcctgaggagaacagaggagatacagcgccagccccgaaggactggcagtctggttaggatttatcttcctgcggcatgtggcggtagatatagataccgcttaacaatgtgaagattaaggtaagggcggtcaggccaaagactttaaagttgacccaaatattttgcggcagccagaatgcgatgtagatgtttgccagaccgcaaaggataaagaaaacagcccaggccagattcagcttcgaccataccggttgcggcagcgtgagttctttacccagcatccgctgaattagcggctttttcatcacccattggctgactaacagggctcccgcaaatagagcataaatgacagtaaccttccatttaataaactcatcattgtggaagaacagcgtcaagccaccgaagacgaccaccagaacaaaagtgatcagggccatcttctcaaccttacgaaagcgaacccagctatagataagcacaatcgccgtggcgacgatcagcgccgcagtagccgcatagatgtcataaatcttgtaaaacgcgaaaaagacaaccagcggtaaaaaatcaagaaactgcttcattttacgattccgtaatcaaatgcttaaggttattggcgaatcaacatatacaggcggaacagatagatgagcaatatggctgaaatcaggttgctcaaggtgttcgccagtacggcaccaatttccggggttaatgcggcaaaagaagaggcaaaaagcagcaacagtgtttttgccagcaaccagctcagtactgcgggtgccaccagacgcatattcgcccaagtcagccgcatactgctacgcatcgaggcaaaaacgcccattttgtcctgtaccaacatcaccggtgccagggccagtaaaatggccatgataattcccggaacgaccaccagcatgatgccaatctgtactaaaagggtagtcagaaaaatcagaataaataactttggcaatatcggcgcactggcaccaatagctcgcagcgcactgactctctgacccgcagacaccagctggataattaatattacgcctccggcgagaatggcgttaccgattaatcctgaaaaagtggacgccgctgaagcctgcagcaaaatttgttgctgttccggtgacatattctgaaccaggtcgaacaacccactactgccgctaacgggcacgccgtcattgagctgcgcaagctgtgcatcactgggtgagaaaacatgccctaacaccactgtgataaacgcacatagcaacgataccaacagaatggtcataaattgattacggaagaaatttccggtgtcacggtatacggactgcgccgtgatagacatgcactctccttgagttttatgcaggtgttaattagcgggcaattgtaccctggttaagcctcgggtggcagcatcaggtcttgtatggaaaagcatatctttgtaaagcggaggtaattgctggccttcaggcatgggcaaatcgcggcaagtggcgaccgagttaatatttgcgtagcgaaaatatttaaaaattgatttaaatcacattaaccaggattctcaatgcaacttctaaattaatccagatcaataaagggtgaattatcatatgtaatgtgatctatgtaggatcatttgttactccaatgtaggtatattcgtcacgtttttataaccataacgacggagcggatatgaaaaagttaacagtggcggctttggcagtaacaactcttctctctggcagtgcctttgcgcatgaagcaggcgaattttttatgcgtgcaggttctgcaaccgtacgtccaacagaaggtgctggtggtacgttaggaagtctgggtggattcagcgtgaccaataacacgcaactgggccttacgtttacttatatggcgaccgacaacattggtgtggaattactggcagcgacgccgttccgccataaaatcggcacccgggcgaccggcgatattgcaaccgttcatcatctgccaccaacactgatggcgcagtggtattttggtgatgccagcagcaaattccgtccttacgttggggcaggtattaactacaccaccttctttgataatggatttaacgatcatggcaaagaggcagggctttccgatctcagtctgaaagattcctggggagctgccgggcaggtgggggttgattatctgattaaccgtgactggttggttaacatgtcagtgtggtacatggatatcgataccaccgccaattataagctgggcggtgcacagcaacacgatagcgtacgcctcgatccgtgggtgtttatgttctcagcaggatatcgtttttaattccgcacaaaaacgaccccgtaatatacggggtcaataaggacatggtataaagggtattatttcttcgcttctacgccatcagtttcagagcgaattaaaaatttctcagttgtttgcggaatattctgaatcagccagtcggccatttgcttttcctcatttaaaatcgcttcgatggttggaattgaagctgtatcaccggcattttttgctgctgctaatagtgaggtgtaacaggcgatttcaaattgctcgaagacatatccgctaatagagcctttgactatttcatcagaagggaatataccaccgattgactgcccaagcgcagccattttactcatggaatctttaatgactgaacgtgaaatgtcattacgatcaagaatagtttccagttgaacaatctggtttttggtttcactaagatgttgttcaatacgagcgcgtagttcaggataattatctatacggctggccatggattcaagcatagattcggcttgcttttccattgcgtgggcgtcacgtaaccagtcatgataatgttcaatacgattcatgaaaatgtcctctttataaaatgactaaaagttaaaattcatatttcaggctttattttcggctttcttatttacgttattaatggccagatcagtcagtttgatgtcggtggccttttcttcttccagggtttctttcagaagcttcgctgctttacggtaacctaattgttcagccagcgtcgctaatgtcccgtaactggcaatctcataatgctcgactttctgtgctgcggcaatcagtgcggcatcacgcacttcgtttttctcggtactttcgatgacctcattagcttcttcaataagaccttccattgccacacatttcatgcgcttaattttcaggttcgattcggactccacaacttgatcaatacgttcaatctgtccatgagtttcctcgaggtgcgcatgaaaagcctgacttaatttttcatttgatgttgctcttgcgagttttgccagtgcccgggttaattgtttttctgcgctgtaggtatctgaaagcaggtgaataaatacatcttcaatggtcttcatattcatatttttctccagtgaaatcactgcgagccatacggcccgcagatgcaattatctttatcagctgatattaataattaacggtgaatcaggatttgcctgatttattaccaccgctttgttgaccgccttttttacccgcttcagatgcgcgttgcggatcatttttaaaattaccgccgctatgctgaccgcctttacggcctgcgtcggatgccttctcacggtcttcggcgaaatttcctgaaccaccacgatgttcggccatgttatttctcccgttgcgttgcattgtttcattaatatgagtgttgtgtgtcgacactcattaaaattagtcgctaatgagaattagtcaaattaagcgcaacgagaagatagagggaaaatatattttgaggaacattctggatatattaacaattacctgaggaataagtgacttagagaaaattattgattttactggtgttatgttgcgggattaatttgtttgattatattactgttgggcggaaaaatgacgtaagttgacgttcgaccggggtaagcgaaacggtaaaaagataaatattaaatgaatttaggatttttccggcttcattaaagaaagttaaaatgccgccagcggaactggcggctgtgggattaactgcgcgtcgccgctttcatcggttgtacaaaaactttcagtgccgccagcattttctctggctcattaatatgttgctcgatgattttaacaatggccgaaccagaaatcgcgcccgcagctcctgcatcaatcgctgcttttacctgatccggggcggaaataccaaatccctgcaatggaggtgcagcgttgtactctttcagcttcgcaaccagatgattgaggggtaacgcggcgcggttttctgcgccggtcacgcctgctcgtgacagcaaataggtgtaaccacgaccgtaagaggctatctggcgcagcaggtcgtcatcggcatttggcgggcagatgaagataggtgcgacattatgacgcaacgcggcctggcggaagggcgcggactcttcaactggcacatcggcaaccagcaccgaatcgacgccgactttttcgcactgggcataaaactcatcaatgcctttgttaaacaccagattggcatacatcaacaggccaatgggaatggtcgggtgtttctggcgaatcagtgccagcatttcaaaacattgtgccggagtcacacctgccgcaaaggcgcgcagagtggcgttttgaatcgtcgggccatccgccagtgggtcggagaaggggatacctaactccagcgcgtcagcaccggcttcaattagcgtatcgataattttcaatgactgctcaatgcccggatcaccgagcgtgacgaaaggaacgaatgcgccttctttgcgctccttcaactgggcaaacagagattcgtagcgttccatcagatttcccctcgtgctttcaaaatatcgtgaacggtgaagatgtctttatcgccgcgaccggaaaggttaaccaccagtagctgctctttatccgggttttcgcgcatcattttcaacgcatgggccagggcgtgggaggattccagcgccgggatgatcccttcgtgcaggcacagcgttttgaaggcttcaagggcttcatcatcggtaatagacacgtaatcagcgcgtccagtgctgttaagatacgcgtgttgtgggccgacagacgggaaatccagtccggcggagatggagtaagattcttcaatctgcccgtcttcggtttgcatcatcggcgctttcataccgaaatagatacccacgcgaccatgttttagcggtgcgccgtgctcgccagtttcgataccgtgaccacctggctccacaccaatcaggccgacgttggtttcattgatgaaatcagcaaacatgccgatggcattcgaaccgccgccaacacaggcgataacggcatccggcaggcgaccttctctttccagaatctgcgctttggtttcttcgccaatcatccgctgaaactcacgcacaatggtcggataaggatgcgggccagctgcggtgcccagcatatagtgcgcggtttcgtaactaccggaccagtcgcgcagcgcctcgttacaggcatctttcagcgtcgcggaaccgctatgcaccgggatcacttccgcacccattaagcgcatacgaaaaacgttaggcgactggcgttcaacgtctttggcacccatataaatacggcatttcaggccgagcagggcgctggcaagggccgacgccacgccatgctgaccggcaccggtttcggcgatgatttcggttttacccatccgcttcgccagcaacgcctgccccagcacctggttagttttatgcgcgccgccgtgcagcaaatcttcacgcttgagatacagcgtggtgttcgtcccggctgtaatgttctggcatttggtcagcgcggttggacgcccggcatagtttttcagcaggtcgttgaactgagcctgaaattcaggatctttttgcgcactgacaaaagcttcttccagctggcgcagagcaggcatcaggatttgtggcacgtacatgccgccaaactcaccaaaataggggttaagtaatgttgtcattgttcctttccttaatatgcgcgcagcgtctggaaaaccgaggccaaaagacgtgcgtctttgatgcccggttgcgactctacagcagaattaaaatcaagtccggcgcagccggtttgtgccgcttccacgcagttatctgcgcctaagccccccgccagcagaacgttgccaagcgattgaccatttaatagtgaccagtcaaaacgttgcccgcttccaccctggccgttgtctaaaacatatttatcaacgtgctgaaactcgcgggcgggcagggtttcaccgacgcttaatgctttccagatggcaacatgtgctggcagagcttcacgcagcgtatcgatatacagctgttcttcattaccatgcagttgcactgccgccagcgataacaccttagctttgtccaccacatcggcaatatcgtgattgcggaacacgccaacatactgcaacggtgccgcagccatcacttcctgcgcctgttcaacgttgacgcaacgcggtgatgtcgcaacaaaaatcaacccaccgtaaatcgcgcccgcgtcataagctgctttagcatcttgcccacgcgtcaggccacatactttattctcacccagcaacacccggcgcacggcggcgtgcaaatcgtcatgggccatcaacgccgaaccaatcagaaaaccgttagcgaagtggcttaactcgcgcacctgagcgtaagtattgatgccggattcgctgattaccgtcacgttgtgccccagtttcggcgcaagctcgcgggtacggttgagatcaatcgacaaatcacgcagatcgcggttgttgatgccaacgacctttgctcccaatgcaatggcgcgctcctgttcctcttcattactgacttcggtcagcacccccatctccagactgtgagcgacggcggcaagctggcgatattggtcgtcatccagtactgaaagcattaataagcaggcatcggcctggtaatagcgcgccagatagatctggtaagggtcgataatgaagtctttacataaaatcggctgcggggcgatttggctgacgatggggaggaaattaaagctcccctgaaaatatttctcatcagtcagcaccgaaattgccgaagcgtaatgtttataaatggcggcaatgcgtgctggatcgaaatcatcacggatcacgccttttgacggcgacgctttcttgcactccagaataaacgccgtgcgcgcaccctgtagcgcatcataaaaatgtcgcgtgctcggctgaacctcattctgaaaactggccagcggttgctgctgtttgcgggcttctacccaaatcgccttgtctgcgacgattttcgctaaaacggtttgcatcatttaccctcgtgccgccagtgcggtgactctgtcgtaagcggaaccactgcgcagtacctcaagaacggtttgcgcattggcttgcagatcttcatggccatgcaggcgcattaacatggcgacgttcgcagcgacggctgcttcatgggcggcgtcgcctttaccttgtaacaaacgtgttaaaatgtcacggttttcttccggtgttccgcctgccagttgctcctggtggtagggtgtcaggccaaagtcttctgcggtgagctgatagcttttaatttcgccgtcatgcagttcggcaacgattgtcggcgcgtgtaatgaaacttcatccatcccgccgctgtgcaccaccgccgcgcgttgataccccagcacgcgcaaggtttcggcaatcggcagcaccagttccggactataaacaccaattaacgccagcggcggatgcgccgggttaatcaatggccccagcacattgaacagggtgcgggttttcagttgctggcgaaccggcatcgcgtggcggaatccggtgtgatacttcggcgcaaagaggaaacatacacctaactcatccagcgcctggcgcgatttatcggcgttcatatcaagattaataccgaacgccgccagcagatcggacgaaccagatttactggagacgctacggttgccgtgtttcgccactttcagcccacaggccgcggcgacaaacgcactggcggtagaaatattgatactgttgctgccgtcaccgccagtaccgacgatatcagcaaacagataatccgggcgcgggaacggcgctgcgttttccagtagcgcggttgctgccccggcgatctcgttcgggtgctcaccgcgaattttcatgctcaccagcgccgccgccagttgttccggcttcagctcgccacgcaccaccgctgaaaacagctggtggctttcttgttggctaagcgtctgcgcctgatacagtttttccagaatcggttgcagcgtgttggctggctctagtttctgctgcgcccaggccagcgtttgttccagcaggcgagcgccctgggtggtgagaatggattccggatggaactggaatccacaaacgcgatccgcatcgtgacgtactgccatcaccatgccattaaaatgggcgttgatggttaaaccggccggaatgttactgccaaccagcgagtgataacgcgccaccggcagcgggtttgttaatccggcaaacatcgcctgaccgtcatgttcaatgctggaggctttaccgtggagaatttcgcccgcctgaccgacatagcccccgtaagcttcgacaatcgcctgatgtccgaggcaaatgccaataatgggcagcttgccacgcaagcgggtgaggagttccggcatacaaccggcttcgctcggcacaccggggccaggagaaagcatcagcaccggattgctcatggtcgccaggcgttcaattaaggtttgcgccggaatatggttgcggtaaatcaccacgttatgcccattgctgcgcaactgatctgccaggttgtacgtaaaagagtcgatattatcgagcagcagaatgtcagccatcagaaagtctcctgtgcatgatgcgcggtggcaatagcgcgcagtacagcgcgggctttgttacgggtttcgtcggcttccgactgcggaacagaatcaaggactacaccagcacccgcttgcacggtggcgataccgttttccaccagcgccgagcggatcacaatgcaggtgtcgagatcgccatgcgcggtgaaataacctaccgcgccgccgtagctgccgcggcgacgaccttccgcctcggcaattaactgcatagcgcgtactttcggcgcaccgcttaacgtccccatattcatacaggcgcgataagcgtgcagggcgtcaagatcgtgacgcagttcgccgactacgcgagagacgaggtgcatcacataggaataacggtcaactttggtgagatcggcgacgtagcggctgccgggggtgcaaatgcgtgccagatcattacgggcgagatcaaccagcatcagatgttcagacagctctttatgatcggtacgcatttccagttcaatacggctgtcgagatctctgtccagtgaaccatcggcgcgacgaccgcgtgggcgtgttccggcaatcgggtagatctcaatctggcggctggtggcatcatacttgagcgagctttccggcgacgcgccaaatagggtgaaatcattatcctgcataaaaaacatgtacgggctgggattactctttttcagcacgtaataggccgccagcggtgacgggcagggcagagagaaacggcgagatggcaccacctggaaaatttctccagcgcgaatcgctttttgcaacaaacgcactacgccaccgaactcttcatcgctctgattacattcacaacgcatatgcggcacggaaaccactggcagcggcggcgcggcttcggtcagttgctgacgtagttcgttcaggcgagcagtgagacgttgtttttcttcttcattcggagcaaacaggctggcctgaatacgggtgctttttttctgatggtcaatcaccatcagcgtttcagcgagataaaaacagaaatcagggcagttattttccgctgacagttgcggtaaatcttcaaatcccgccacaaggtcataagagaacaggccgccgaagaacatggcttctcgttcttccttcggtacattcaacagattctgcaataaacggaaagcgtcaaaaaccgaaagggagcataagcgggcgtcttcatccagcagtggactgacaggggggaagcgcagcacacggcagtttggtgattgttcactttccacacccgcaggcagggcgttatccagtagtgccaggagggcttcgccgttgccggaaagtgcctggattgtgacagtgtcacctaaagctgtaatgcgcagcgcactgtctaccagcagcaggctttttaaatcatctttgctgtcgatatctgcggattccagcagcagcgttgccggacgatccccacacaactggtgaaaaagcgcggtgggattgtcgcgataagcgccttcgcaggttagcagttcgagagtcggtttttgtgtttgcattgttattctctaattttgttcaaaaaaaagcccgctcattaggcgggctgggtatctgattgctttacgcatggtgaatacactgcccgtttcaggaagtgcgccaccaacctttcagtacgaaaattgctttcattgtcgataccctttttacgtgaacttgcgtactagttaactagttcgatgattaattgtcaacagctcatttcagaatatttgccagaaccgttatgatgtcggcgcaaaaaacattatccagaacgggagtgcgccttgagcgacacgaattatgcagtgatttacgacctgcacagccataccacagcttccgatggctgcctgacgccagaagcattggtgcaccgtgcagtcgagatgcgcgtcggcaccctggcgatcaccgaccatgacaccacagctgcaatcgcgccagcaagagaggaaatttcacgttcgggactggcgttgaatcttattcccggcgtggaaatttccacggtctgggaaaatcatgaaattcatattgtcgggctgaatattgatattactcatccgctaatgtgtgagttcctcgcgcagcagacagaacggcgcaatcagcgggcgcagctgattgccgaaagacttgaaaaagcgcaaatacctggggcgctggaaggcgcacaacgactggcgcagggcggcgcagtgacgcgcggtcattttgcgcgtttccttgttgagtgcggcaaagccagttcaatggcggatgtctttaaaaagtatctggcgcgcgggaaaaccggatacgttccgccacagtggtgtacaatagaacaagctattgatgtcattcatcattctggcggtaaggcggtgctagctcatcctgggcggtacaatcttagtgctaaatggctgaaaagattggttgcgcattttgccgaacaccacggtgacgcgatggaagtcgcgcagtgccagcaatcgcccaatgaacgtacccagctggcggcccttgcgcgtcagcatcatttatgggcatcacaaggatctgattttcatcagccatgcccgtggatcgaactgggtcgtaaactctggctgcccgcaggcgttgaaggcgtctggcagctatgggaacagccgcagaacaccacagagagggaattatgagccagtttttttatattcatcctgataacccacagcaacgtctgatcaaccaggcggtggagatcgtgcgtaaaggcggggtgattgtttatccaactgattccggctatgcgctcggctgtaaaattgaagataaaaacgcgatggagcgtatttgtcgtattcgccagctgccggacggtcacaactttaccctgatgtgtcgcgatctttctgaactctcgacctattcatttgttgataacgttgcgtttcgtttaatgaaaaacaacacgccgggcaactataccttcatcctgaaggggacgaaggaagtgccacgccgtctgttgcaggaaaaacgcaaaaccatcggtatgcgtgtgccttctaaccctatcgctcaggcgttacttgaagcattgggcgaaccgatgctttccacttcgctaatgctgccaggcagcgaatttaccgaatcggacccggaagaaattaaagatcgtctggaaaaacaggtagatttgattattcacggcggctatctcgggcagaaaccgacaacggttattgatcttaccgatgatacgccggtcgtggtgcgtgaaggcgtaggtgatgtgaagcctttcttataacaaattgcgttccacggatggaagactatggcagggaagtttcgctgcattttgctgttgatagcagggctgtttgtatcatctctaagttatgcagaaaacacggagatcccttcttatgaagaagggatctcgctctttgatgttgaagccactctgcaaccagatggggtgctcgacatcaaagaaaatattcattttcaggcgcgaaatcagcagattaagcacggcttttatcgtgatttaccacgactatggatgcagcctgatggggacgctgcactgctgaactatcatattgttggcgtcacccgtgatggtattcctgaaccctggcatcttgactggcatatcgggttaatgagtattgtcgtgggcgataaacaacgtttcttgcctcaaggcgactatcattatcaaattcattatcaggttaaaaatgctttcctgcgtgagggggattctgatctgctaatctggaacgtgaccggtaaccactggccgtttgaaatttataagacccgtttttctctccagttctctaatattgcgggtaatccatttagcgaaatcgatctttttaccggagaagagggcgacacatatcgtaatggccgcatccttgaggacggaagaattgaatcccgcgatccgttttatcgtgaagatttcacggtcctctaccgctggcctcacgctttacttagcaatgcctcggctccgcaaacgacgaatattttcagccatcttcttttaccctccacgtcatcgttgttaatttggtttccgtgtctgttcctggtttgtggatggttatatctctggaagcgcaggccgcaatttacgccggtagatgtgattgaaaccgatgtcattccgccagattacacgcccggcatgttacgtctcgatgcgaagctagtttacgacgataaaggtttttgtgccgatatcgtaaatctgattgtgaaaggaaaaattcatctggaagatcagtctgacaagaaccagcaaatcctgattcgtgttaatgaaggcgcgaccagaaataatgcggtattactgcccgcagagcagttattactggaagcgttatttcgtaaaggcgataaggtcgttcttacggggagacgcaacagagtcttacgcagggcatttttacggatgcagaaattttatctgccgcgtaaaaagtcttcgttttaccggtctgatacttttttgcaatggggtggactggcaatattggcggtcattctttacggtaacttgagtcctgtaggctgggcaggaatgagtctggtgggcgatatgtttattatgatctgctggattattccttttttattttgttcccttgagcttttgtttgcccgcgatgatgacaagccttgcgttaatcgtgtaatcatcactttgtttttaccactgatttgttcaggcgtggccttctattctctctacatcaatgtcggagatgtattcttttactggtatatgccagcgggttattttaccgctgtttgcctgaccggttatctcactggcatggggtatatttttctgccaaagtttacccaaactggacagcaacgttatgcccacggtgaagctatcgttaactatcttgcgcgtaaagaggcagcaacacacagtggacgtcggcggaaaggggaaacacggaaactggattacgcgttgctaggttgggctatatcggcaaatttggggagggaatgggcgttacgcattgccccttcgctttcttcggcgattcgcgctccagagattgcccgtaacggcgttttattctcattacagacgcacctaagttgcggggccaataccagtttgttggggcgaagttattccggtggtggtgctggcggcggcgcgggtggcggaggcggtggtggctggtaattaagctgatgttaatcgaaacaagctttaaccataaagatagtgtagtatgttgcgcctcaaagccaggccgataaacgtcgagtcgtttacttaaggcctgaagagttcaaacagactttactatcagtgagtcagatgtaagttctgactcactgttgcacaaaagcatatcagacgcctgggaaggcgacaccaaaaggaagctctatgagcgaaaagctacagaaagtgctggcgcgtgccggccacggttctcgccgtgaaatcgaatctattattgaagccggtcgtgtgagtgttgatggcaaaattgctaaactcggcgatcgtgttgaagttacccctggattgaaaatccgtatcgatggtcacctgatttcggtacgtgagtccgctgaacaaatttgtcgcgttctggcctattacaaaccggaaggtgagttgtgtacccgtaacgatccggaaggacgtccaacggtgtttgaccgtctgccaaaactgcgtggcgcacgctggattgccgtgggtcgcttggacgttaatacctgtggtctgctgctgttcaccaccgatggtgaactggcaaaccgtttaatgcacccaagccgtgaagttgaacgtgaatatgccgtgcgtgtatttggtcaggttgacgacgcgaaactgcgtgatttgagtcgtggcgtgcagttggaagatggtccggcagcttttaaaaccatcaagttcagcggcggcgaagggatcaaccagtggtacaacgtgactctgaccgaaggccgtaaccgtgaagttcgtcgtctgtgggaagcggttggtgtgcaggtgagccgcctgatccgtgttcgttacggtgatatcccactgccaaaaggtctgccacgcggtggctggacggagctggacctcgcccagactaactatctgcgcgaactggtggagctaccgccagaaaccagctctaaagtcgctgtagaaaaagaccgtcgtcgcatgaaggcgaatcagattcgtcgtgcggtgaaacgtcacagtcaggtgagcggcggtcgtcgttctggcggacgtaataataacggttaatcaaagtatgccggacgtcatatccggcatttttacagattaataatcgatccctatctgcgcttttacaccggcatcaaacgcatgtttgacggggcgtaattcacttaccgtatctgccagttcaagaatatcccgatgacaaccacgacccgtgataatcaccgtctgttgatgtggacgttcatttaacgcctgcaccacttcttccagtggcaaatagtcatacgccaccatatacgtcagttcatcaagcaaaaccatatccagtgaggaatcagcaagcatccgctttgcatgttgccagacttcgcggcaggcggcggtatcagactcgcggttttgtgtatcccaggtaaagcccgttgccatcacctgaaactcaacgccatgtggctccagcagattgcgttcgccattaggccaggtgcctttaataaactgcacgacgcctactttttttccgtgaccaactgcgcgtgttgccgtaccaaatgccgcggtggttttgccttttccattgccggtaaagacgatgataataccgcgttcatcctgggcctgggccacacgagcatctactttttctttcactcgctgctgacgctgttggtagcgttcatcactcattgggaaattcctggtttacggcccggttgggcgtcaaaggtcatgccggttttacggcggctgtcatcgcccatcagccagaggtagagcggcatgatatcagcgggtgttttaagtttctgtggatcttcggtcgggaaggcgctggcacgcattgcggtgcgcgtaccgcctgggttaatgcagttgacacgcaggcgctgctgatattcatcggccagtacctgcatcatcccttcggtggcaaatttcgacgctgcatatgcaccccagttggctcgtccctgacgtccaacgcttgatgaagtaaagaccagtgaaccggcgtccgatttgagtaataaaggaagcagtgcctgggtgagcataaaggtggcattaacgttgacctgcatgacgtcctgccagacctgcggattttgttcgctcattgggcaaacatcgccgagcaatccggcattatgcaaaacaccatccagacgcggataattaacggcaatgcgctgtgccagttgttggcaattttcggacgtgcaggtcagcaaatcgagaataaaccactgtggctgacgcccagtttcttcgtttatgtggctggctacctgacgtaatttttcttcattacggcccaacagaatcactgtcgcaccatagcgtgcatacgtcatcgcggcttcacgaccaataccatcgctggctcccgtcaccaggataatgcgatcattgagtaaatcttgttttggctggtaatgcatggctactcctcaacgacgttgtctgtcgcgctgccagtgtactttatgactttggggctttatgcctgaaacagaagggcatttcaatcagcctggggcgataacaccgcaaaatggatactttgtcatactttcgctgcaataacatctctgcgagacggcttaacatgcctgttgtaaactgtgagccaaagcgttgtttaaccaaggtggggactcgtggaattgttgtctgaatatggtttgtttttggcgaaaatcgttaccgttgtgctagcgattgcggcgattgccgccattattgtcaatgttgctcaacgtaataaacgccagcgtggcgagttacgggtcaacaatctcagcgaacagtataaggagatgaaagaagaactggccgcggcgctgatggactcacatcagcaaaaacagtggcacaaagcgcagaagaaaaagcataagcaagaagcgaaagcagcaaaagcgaaagccaaactgggcgaggtggcaactgacagtaaaccccgcgtctgggtgctggattttaaaggcagcatggacgcccatgaagtgaactcgctacgtgaagagataacggctgtactcgcagcattcaaaccgcaggatcaggttgtgctccgtctggaaagccctggtggcatggtgcatggttacgggctggcggcttcgcaactgcagcgtctgcgcgataaaaacattcctttaactgttacggtagacaaagtcgctgccagcggcggttacatgatggcctgtgtggcggacaaaattgtttccgcaccgtttgctattgtgggttccattggcgtggtggcgcaaatgcccaactttaaccgcttcctgaaaagcaaagatattgatatcgaactgcacactgccgggcagtataagcgcacgctgacgttgctgggtgaaaataccgaagaagggcgggagaaattccgcgaagagttgaacgaaacgcatcagttgtttaaagattttgtgaagcgtatgcgtccttctctggatattgaacaggtggcaacgggtgaacactggtacggacaacaggcggtagagaaaggcctggttgatgaaatcaacaccagtgatgaagttattcttagcctgatggaaggccgtgaagtggtcaatgtacgctatatgcagcgtaaacgactcattgaccgattcaccggcagcgcggcagagagcgccgatcgattgttgctacgctggtggcagcggggtcaaaagccattgatgtaaaagacaaacgcgaggctaagacctcgcgttttgctttaatcaaccagatgatatttttctgaaagcacatgggccaggtgtttgaacatattaaacaccgcggtgcttttggctgttggcaatccttgttcatctaaaaagtagtcgccggtaaataccagcacgccattacgctgcgtgacgccggtggcttcaatccctgcgagcgtatcctcatgctcacgaatgattttgttggcctctttcaacagcgtttcgcggtcgatgggttgtgtctctttgttcattatttactccttaaacaaggacattagtctacgccaggcatggcttgcagacaaatataccacgctggtggcaagagcgccttactggcaactttggattttgcatgctaataaagttgcgtatcggattttatcaggtacagtgtgacgctttcgtcaatctggcaatagatttgcttgacattcgaccaaaattccgtcgtgctatagcgcctgtaggccaagacctgttaactcagtcacctgaattttcgtgaacagagtcacgacaaggggttgatatccgcagagagcgagtccatatcggtaactcgttgccagtggaaggtttatcaacgtgcgacgcattcctggaagaatcaaattaggtaaggtgaatatgggtaaagctcttgtcatcgttgagtccccggcaaaagccaaaacgatcaacaagtatctgggtagtgactacgtggtgaaatccagcgtcggtcacatccgcgatttgccgaccagtggctcagctgccaaaaagagtgccgactctacctccaccaagacggctaaaaagcctaaaaaggatgaacgtggcgctctcgtcaaccgtatgggggttgacccgtggcacaattgggaggcgcactatgaagtgttgcctggtaaagagaaggtcgtctctgaactgaaacaactggctgaaaaagccgaccacatctatctcgcaaccgaccttgaccgcgaaggggaagccattgcatggcacctgcgggaagtgattgggggtgatgatgcgcgctatagccgagtggtgtttaacgaaattactaaaaacgcgatccgccaggcatttaacaaaccgggtgagctgaatattgatcgtgttaatgcccagcaggcgcgtcgctttatggaccgcgtggtggggtatatggtttcgccgctgctatggaaaaagatcgctcgtggcctgtctgccggtcgtgtgcagtcggtggcggttcgcctggtggtcgagcgtgagcgtgaaattaaagcgttcgtgccggaagagttctgggaagtcgatgccagcacgaccacgccatctggtgaagcgttggcgttacaggtgactcatcagaacgacaaaccgttccgtccggtcaacaaagaacaaactcaggctgcggtaagtctgctggaaaaagcgcgctacagcgtgctggaacgtgaagacaaaccgacaaccagtaaacctggcgctccttttattacctctacgctgcaacaagctgccagcacccgtcttggatttggcgtgaaaaaaaccatgatgatggcgcagcgtttgtatgaagcaggctatatcacttacatgcgtaccgactccactaacctgagtcaggacgcggtaaatatggttcgcggttatatcagcgataattttggtaagaaatatctgccggaaagtccgaatcagtacgccagcaaagaaaactcacaggaagcgcacgaagcgattcgtccttctgacgtcaatgtgatggcggaatcgctgaaggatatggaagcagatgcgcagaaactgtaccagttaatctggcgtcagttcgttgcctgccagatgaccccagcgaaatatgactccacgacgctgaccgttggtgcgggcgatttccgcctgaaagcacgcggtcgtattttgcgttttgatggctggacaaaagtgatgcctgcgttgcgtaaaggcgatgaagatcgcatcttaccagcagttaataaaggcgatgctctgacgctcgttgaacttacaccagcccagcactttaccaagccgccagcccgtttcagtgaagcatcgctggttaaagagctggaaaaacgcggtatcggtcgtccgtctacctatgcgtcgatcatttcgaccattcaggatcgtggctacgtgcgagtagaaaatcgtcgtttctatgcggaaaaaatgggcgaaatcgtcaccgatcgccttgaagaaaatttccgcgagttaatgaactacgactttaccgcgcagatggaaaacagcctcgaccaggtggcaaatcacgaagcagagtggaaagctgtactggatcacttcttctcggatttcacccagcagttagataaagctgaaaaagatccggaagagggtggtatgcgcccgaaccagatggttctgaccagcattgactgcccgacttgtggtcgcaaaatggggattcgcacagcgagcaccggggtattccttggctgttctggctatgcgctgccgccgaaagagcgttgcaaaaccaccattaacctggtgccggaaaacgaagtgctgaacgtgctggaaggcgaagatgctgaaaccaacgcgctgcgcgcaaaacgtcgttgcccgaaatgcggcacggcgatggacagctatctcatcgatccgaaacgtaagttgcatgtctgtggtaataacccaacctgcgacggttacgagatcgaagagggcgaattccgcattaaaggttatgacggcccgatcgttgagtgtgaaaaatgtggctctgaaatgcacctgaaaatggggcgtttcggtaaatacatggcctgcaccaacgaagagtgtaaaaacacacgtaagattttacgtaacggcgaagtggcaccaccgaaagaagatccggtgccattacctgagctgccgtgcgaaaaatcagatgcttatttcgtgctgcgtgacggtgctgccggtgtgttcctggctgccaacactttcccgaaatcgcgtgaaacgcgtgcgccactggtggaagagctttatcgcttccgcgaccgtctgccggaaaaactgcgttatctggccgatgcgccacagcaggatccggaaggtaataagaccatggttcgctttagccgtaaaaccaaacagcaatatgtctcttcggaaaaagacggaaaggcgactggctggtcagcattttatgttgatggcaaatgggttgaaggaaaaaaataacctttaattctgtcaggtttttataaacaaagggtcgcgaaagcggcccttttttattgcatattattttttcttcacacctatacactaaggctataaatgatatagtggttatagttagcaccttttttattattaaatcgtattagtcacccgccaggtgtgacgaaaaaacgatgttctgatggcgtctaagtggatggtttaacatgaaattacaacaacttcgctatattgttgaggtggtcaatcataacctgaatgtctcatcaacagcggaaggactttacacatcacaacccgggatcagtaaacaagtcagaatgctggaagacgagctaggcattcaaattttttcccgaagcggcaagcacctgacgcaggtaacgccagcagggcaagaaataattcgtatcgctcgcgaagtcctgtcgaaagtcgatgccataaaatcggttgccggagagcacacctggccggataaaggttcactgtatatcgccaccacgcatacccaggcacgctacgcattaccaaacgtcatcaaaggctttattgagcgttatcctcgcgtttctttgcatatgcaccagggctcgccgacacaaattgctgatgccgtctctaaaggcaatgctgatttcgctatcgccacagaagcgctgcatctgtatgaagatttagtgatgttaccgtgctaccactggaatcgggctattgtagtcactccggatcacccgctggcaggcaaaaaagccattaccattgaagaactggcgcaatatccgttggtgacatataccttcggctttaccggacgttcagaactggatactgcctttaatcgcgcagggttaacgccgcgtatcgttttcacggcaacggatgctgacgtcattaaaacttacgtccggttagggctgggggtaggggtcattgccagcatggcggtggatccggtcgccgatcccgaccttgtgcgtgttgatgctcacgatatcttcagccacagtacaaccaaaattggttttcgccgtagtactttcttgcgcagttatatgtatgatttcattcagcgttttgcaccgcatttaacgcgtgatgtcgttgatgcggctgtcgcattgcgctctaatgaagaaattgaggtcatgtttaaagatataaaactgccggaaaaataatttcttgcgttattttcggcaccttttatgtagcgaaggtgccggaatatattctcttttgttacttatttctataccgtgcacaatatttttatccctcatatttatagggtaaattacctgtaaagtagtgtctaattacccgcctcgcaaactccagttttcaaatatctatttcaggtcaaaagattgaattattcactggagacgattcgtaaattcgctggatttttgactaaagtttctttaggatttgtctcatcgtatgattaattacaccaatcgttcaacgtcttgctgataagtgatggcgattatatgaggttagcaatgccttctggaaatcaggaaccccgccgcgatcctgaattaaaacgtaaagcctggctggcggtttttcttggttctgcacttttctgggtggttgtcgcactgctgatttggaaagtgtggggataactatggtcggtcaggagcaactggagtcgtcaccattatgccagcatagtgacaatgaaacagaaacgaaacgggaatgttccgtcgttattccagacgactggcaactaacatcgcagcagcaagcctttatagaactgtttgctgaagatgatcagccgaaacaataattatcatcattcttattacccatttttaatgaattaaagggcttttaatacaccgcagcaataacagcttgagttatctcaacacaaaataataaccgttaagggtgtagcctatgatcaacacaaatatgaaatattggtcctggatgggcgcgttttctctgtcgatgctcttctgggccgaactcctctggatcattactcactgatccttgaccccgctgcggcggggttgtcatttgctttgccacaaggtttctcctcttttatcaatttgggttgttatcaaatcgttacgcgatgtttgtgttatctttaatattcaccctgaagagaatcagggcttcgcaaccctgtcattaaggaggagctatgtcgtcaaccctacgagaagccagtaaggacacgttgcaggccaaagataaaacttaccactactacagcctgccgcttgctgctaaatcactgggcgatatcacccgtctacccaagtcactcaaagttttgctcgaaaacctgctgcgctggcaggatggtaactcggttaccgaagaggatatccacgcgctggcaggatggctgaaaaatgcccatgctgaccgtgaaattgcctaccgcccggcaagggtgctgatgcaggactttaccggcgtacctgccgttgttgatctggcggcaatgcgcgaagcggttaaacgcctcggcggcgatactgcaaaggttaacccgctctcaccggtcgacctggtcattgaccactcggtgaccgtcgatcgttttggtgatgatgaggcatttgaagaaaacgtacgcctggaaatggagcgcaaccacgaacgttatgtgttcctgaaatggggaaagcaagcgttcagtcggtttagcgtcgtgccgccaggcacaggcatttgccatcaggttaacctcgaatatctcggcaaagcagtgtggagtgaattgcaggacggtgaatggattgcttatccggatacactcgttggtactgactcgcacaccaccatgatcaacggccttggcgtgctggggtggggcgttggtgggatcgaagcagaagccgcaatgttaggccagccggtttccatgcttatcccggatgtagtgggcttcaaacttaccggaaaattacgtgaaggtattaccgccacagacctggttctcactgttacccaaatgctgcgcaaacatggcgtggtggggaaattcgtcgaattttatggtgatggtctggattcactaccgttggcggatcgcgccaccattgccaatatgtcgccagaatatggtgccacctgtggcttcttcccaatcgatgctgtaaccctcgattacatgcgtttaagcgggcgcagcgaagatcaggtcgagttggtcgaaaaatatgccaaagcgcagggcatgtggcgtaacccgggcgatgaaccaatttttaccagtacgttagaactggatatgaatgacgttgaagcgagcctggcagggcctaaacgcccacaggatcgcgttgcactgcccgatgtaccaaaagcatttgccgccagtaacgaactggaagtgaatgccacgcataaagatcgccagccggtcgattatgttatgaacggacatcagtatcagttacctgatggcgctgtggtcattgctgcgataacctcgtgcaccaacacctctaacccaagtgtgctgatggccgcaggcttgctggcgaaaaaagccgtaactctgggcctcaagcggcaaccatgggtcaaagcgtcgctggcaccgggttcgaaagtcgtttctgattatctggcaaaagcgaaactgacaccgtatctcgacgaactggggtttaaccttgtgggatacggttgtaccacctgtattggtaactctgggccgctgcccgatcctatcgaaacggcaatcaaaaaaagcgatttaaccgtcggtgcggtgctgtccggcaaccgtaactttgaaggccgtatccatccgctggttaaaactaactggctggcctcgccgccgctggtggttgcctatgcgctggcgggaaatatgaatatcaacctggcttctgagcctatcggccatgatcgcaaaggcgatccggtttatctgaaagatatctggccatcggcacaagaaattgcccgtgcggtagaacaagtctccacagaaatgttccgcaaagagtacgcagaagtttttgaaggcacagcagagtggaagggaattaacgtcacacgatccgatacctacggttggcaggaggactcaacctatattcgcttatcgcctttctttgatgaaatgcaggcaacaccagcaccagtggaagatattcacggtgcgcggatcctcgcaatgctgggggattcagtcaccactgaccatatctctccggcgggcagtattaagcccgacagcccagcgggtcgatatctacaaggtcggggtgttgagcgaaaagactttaactcctacggttcgcggcgtggtaaccatgaagtgatgatgcgcggcaccttcgccaatattcgcatccgtaatgaaatggtgcctggcgttgaaggggggatgacgcggcatttacctgacagcgacgtagtctctatttatgatgctgcgatgcgctataagcaggagcaaacgccgctggcggtgattgccgggaaagagtatggatcaggctccagtcgtgactgggcggcaaaaggtccgcgtctgcttggtattcgtgtggtgattgccgaatcgtttgaacgaattcaccgttcgaatttaattggcatgggcatcctgccgctggaatttccgcaaggcgtaacgcgtaaaacgttagggctaaccggggaagagaagattgatattggcgatctgcaaaacctacaacccggcgcgacggttccggtgacgcttacgcgcgcggatggtagccaggaagtcgtaccctgccgttgtcgtatcgacaccgcgacggagttgacctactaccagaacgacggcattttgcattatgtcattcgtaatatgttgaagtaacaactatttgcttgccggttattttgcttccggcaagcaaatgaattacacaatgcaagagggttatttgttcagcaaatggcccattttctcggctttggtatcgagataatgttcgttattggggttacgacctacaatcaatggtacgcgttcaacaatattaatccctgcttcggtcagaatttcgacttttttcgggttattggttaacaagcggacttcattgacgccaaggagtttgaacatatcagcgcaaagagtgaagtcgcgctcatcagcggcgaagcctaactggtggttagcctctacggtatcgtaaccttgatcctgcagtgcgtaagcgcggattttattcagcagaccaatgttacgaccttcctgacggtgatacagcaaaataccacggccttcctcggcaatttgcgtcaatgccgcttcgagctggaagccacaatcgcagcgcaagctgaacagggcgtcaccggtcagacattcggaatggacgcgcgcaagtaccggggtatgcccggaaatatcgccatagactagcgcgacatgatcgtgtccggttgccagttcttcaaatcccaccatcaggaaatcgccccatggggttggcagtttggcttctgccacacgtttaagctgcatgaaattctccagataatgctggttctgtattggcttattttgccataacgagaaggggttcacctaatcacgacgcgtcgatcgttcacggaatggcacaaatctgtcaatttttcctggaactggcgttttcagttatgattgtgggacttatcaaaaaggagaggccatgcgttcgattgccagacgtaccgcagtgggagctgcactattgcttgtcatgccagtagccgtatggatttctggctggcgttggcaacctggagaacaaagttggctactaaaagcggctttttgggttactgaaactgtcacccagccctggggcgtcattacacatttgattttattcggctggtttctctggtgtctgcgttttcgcattaaggctgcctttgtattatttgccattctggcggccgcaatccttgtgggacaaggcgttaaatcctggatcaaagacaaagtccaggaaccacgaccttttgttatctggctggaaaaaacacatcatattccggttgatgagttctacactttaaagcgagcagaacgcggaaatctagtgaaagaacagttggctgaagagaaaaatatcccacaatatttgcgttcacactggcagaaagagacggggtttgcctttccttccggtcacacgatgtttgctgccagttgggcactgctggccgttggtttgctgtggccgcgtcggcgaacgttaaccattgctatcttgctggtctgggcaacgggagtcatgggaagccgcctgctgctcgggatgcattggccacgcgatctggtagtagctacgttgatttcgtgggcgctggtggcggtggcaacgtggcttgcgcaacgaatttgtgggccattaacaccacctgcggaagaaaatcgcgaaatagcgcaacgagaacaagaaagttaacgctggttgattttccgaatttagcccttaaatcatcaacaatgcgtgtggatgccatttcgcagacggcgcgaaaatggtactttaaagggctattgcggtaagttgaccataatttattcgctctaaccacataacgggaagtaatgtgaaatatttactcattttcttactggtgttagcgatcttcgtgatttcggtcacgttgggtgcgcagaacgatcaacaggtgacgtttaattatctgttagcgcaaggggagtaccgtatttccacattgctggcggtattgtttgctgcggggtttgctatcggttggttgatttgtggcctgttctggctgcgagttcgtgtttccctggcgcgcgctgaacgtaaaataaagcgactggaaaaccagctttcacccgcgactgacgtggctgtagtgccgcactcgtcagcggcgaaggaataactttctatgctggagttgttgtttctgcttttgcctgtagccgctgcctatggctggtatatgggccgcagaagtgcgcaacaaaacaagcaagatgaagccaaccgcttgtcgcgtgattacgtagcgggggttaacttcctgcttagtaatcaacaggataaagcggtagacctgtttctcgatatgcttaaagaggatacaggcaccgttgaagcccaccttacgctcggaaacctgttccgttcgcgtggcgaagttgatcgcgctattcgcatccatcagaccctaatggaaagcgcctcgctgacctatgaacagcgtctgttggcgattcaacaactggggcgtgattacatggccgccgggttatatgaccgcgcggaagacatgttcaatcagctgaccgatgaaactgacttccgcattggcgcgctgcaacagttgctacaaatctaccaggctaccagtgagtggcagaaagcaattgatgttgccgaacgcctggtgaagctgggtaaagataaacagcgcgtcgaaattgcccatttctactgtgagttagccctgcagcatatggccagcgacgatctcgatcgtgccatgaccttgctaaaaaaaggggcggcggcagataaaaacagcgcccgcgtatccataatgatgggacgcgtgtttatggcgaaaggagaatacgccaaagccgtcgaaagtctgcaacgcgtgatatcccaggacagagaactggtcagcgaaacgctggaaatgttgcaaacctgctatcagcagttgggtaaaactgccgaatgggcagaattcctgcagcgtgcggtggaagagaacaccggtgccgatgctgaattgatgcttgctgatatcatcgaagcgcgcgacggtagtgaggccgcacaggtctatattacgcgccagcttcagcgtcatccgaccatgcgtgtgttccataagttaatggattaccacttaaatgaagcggaagaagggcgtgccaaagagagcctgatggtgctgcgtgacatggttggcgagaaggtacgtagtaagctcgttatcgttgccagaaatgtggttttaccgcatacaccctctactggcattgtccgtcttgtcgggcctggtcaaccattaaaccgattcgcggtcttgatggcctgtaatttttaaaaaaaatccgactttagttacaacatactaattattaatgttccattgtgctccggcaacgacggcgcagaaaaagcctgccaggggagaaatcgcaactgttaattttttatttccacgggtagaatgctcgccgtttacctgtttcgcgccacttccggtgcccatcatcaagaaggtctggtcatgacgttaactgcttcatcttcttcccgcgctgttacgaattctcctgtggttgttgcccttgattatcataatcgtgatgacgcgctggcctttgtcgacaagatcgacccacgcgattgtcgtctgaaggtcggcaaagagatgtttacattgtttgggccacagtttgtgcgcgaacttcaacagcgtggttttgatatctttcttgacctgaaattccacgatatccccaacactgcagcgcacgctgtcgctgctgcagctgacttaggcgtgtggatggtgaatgttcatgcctctggtggggcgcgtatgatgaccgcagcgcgtgaggcactggttccgtttggcaaagatgcaccgcttttgattgctgtgacagtgttgaccagcatggaagccagcgacctggtcgatcttggcatgacactgtcacctgcagattatgcagaacgtctggcggcactgacgcaaaaatgtggccttgatggtgtggtgtgttctgctcaggaagctgtgcgctttaaacaggtattcggtcaggagttcaaactggttacgccgggcattcgtccgcaggggagtgaagctggtgaccagcgccgcattatgacgccagaacaggcgttgtcggctggtgttgattatatggtgattggtcgcccggtaacgcaatcggtagatccagcgcagacgctgaaagcgatcaacgcctctttacagcggagtgcatgatgagtgattccaacagccgtctggtctactcaacggaaaccggacgtattgatgagcccaaagcggcccctgtacgccctaaaggcgacggtgtggtgcgtattcagcgtcagaccagtggacgtaaaggtaagggcgtttgcctgattaccggtgtcgatctcgatgatgccgaactgacaaaacttgcagcggaactgaagaaaaaatgcggctgcggcggagcagttaaagatggagttattgaaatccagggcgataagcgtgatttattaaaatcactacttgaagcgaaagggatgaaggtaaaactcgcaggcggttaacataaaaagccacggatatatccgtggctttcgaatattttactgtgcgtattattcagttatttcgtactgaacagaatcaagcgtattataattgcgagtcgataatcgacatttatttacgattatttaccgacctggtgaccaataacacctccgacagctgcaccacctaatgtacccaacgtactgccatcggtcagtactgcaccgcctaatgcccctgcacccgcgccgattgcggtgttgcggtcccgtttagaccagttagaacaggcactcagagacattgccaaagtaattgccagaacagccgcggtcatttttttgctcgttacaaacataatactctctcctgaatttatgattcacggaagtaagctctctataactataatagctaagaataagtctggtgaaattattccgtgaaatctgctcgcgcgcagggttatatcacgcaggtgataatgacttcctgttatatcgctgataataattttatatcttgagagtgttaataacaggtaaatagtcttaattatcaaccaggaatcatcttagagcggatgatttgccaaactgcaaatcatccgtagagaagggaaatggttaaatgtcaacgacgtgaatggtgagtttactgtgctcaagatgcatcagatcgctggcgcgtattttcgaatcggtaatcacgcgattgaatcgctcaacgggaccgatggagtatgaatgtacagcaccaaatttcgagctgtcagtcaggactatcgcttcgcactctttttccagcacggcattgaccacatcggtacgcatcatatcgcgaccggtaaatccagtttcaggttgccagccatcaataccaataaatgctttgctgaaatgcacctgttggatgcactggcgtgtcaaagggccaaccatactttcgctttttttctgatacacgccaccgagcaaaataacttcacaaggcgcgtctttcagcaaatgcgcgatgtagctgctgaccgtgatgatagtgacatttttcttctgctcgcccagagtccgggcgagtagggcattgctgctgccattttcgataaagatggtttcgcccggttgaaccagcgacgcggcaaactcggcgagttcacgcttcagcgtatagttgctcatcatacgggtttcgacgtcatcactatcaagcgaaacagcaaagccatgtgcacggcggaggtaactcagtttttcgagtgtgttgagatcctggcgaatggtaacttcagaaactccagtggcttttgccagatcggttacgctaacctgaccctggtcaatgaccatctgtagaatagtttgttgtcgggaattcatcgctgtaattcttataacgttataatacttaataaaaaaatactgacgcgccgggcatcctcaaataggaaaacctgaaggcacgattgttaaatctcccacggtgccttcgggatgtctggcgtagattcagcaacctggcgcaagagttctgctttaagtatctcgagattatggatcgcagagtggtaatcgcctgccacaaggatatctaacacaatatcaatacgttcggcaacgcgctgggcatcaaattcagacatcaaggacatccttatagcaaaagggggaaaatgaataatgcaaaaattgccgctaaaagagaagtgtttaacagcaacggctaattatcatccaggaatacgatatataatgacgggatatagcgctaagtatatatattcatctacttatgcgcgcttcagatagcgtttataccagcgttcgaaggcgacggcgggcatcggtttggcaaacaaaaatccttgccgctcattgatcccgttcttggttaaaaaagcatcttcctttgcactctctacaccttcggcgatcacctgaagattcaatgcctgggccacagcgacgatcgcccggaccagtgactgcgagacaggttgtttgtgaatatctcgaacaaaaacctggtcaagtttgatggcatcgatcggaaagcgcgccagttgcgaaagtgaagagtagccggtaccaaaatcatccagatgcacttgcgcacctagttggctaaattgttgaataacagacagtgccagttcatcattctcaatcagacaactctctgtcagttcaacatctatagggcagtattcaaaattgagttcctggagaacctgtttcagggcggtgaaaatggtttgatcggcgagctgacgtgcagaaatatttaccgccactcgcaggtttatgcctttatcccgccactttgccacctggcgtacgacatcgagaatcacccaacggcctaaaggcacaattagccctgactcttcggcgtaggaaatgaagtccaacggtggaatcaacccacgttcaggtgactgccaacgtactagtgcttccagactgcgcacttcgccacgccaggtgattttcggttgatagtgaataaccaactgatcgttttccagtgctttacgcaagttggtatccagccagagatattcaaatacccgttgattcatttctggggtaaaaacgcaaaattgtcctcgtccgccttccttcgctgtgtacattgctgtgtcggcgtgacgaataatagccgtgctgtctgaaccatgttcgggagagagtgcaatacctactgaacagctggtataaacttcaattaaaccaatgcgaaaggggagccgtaagcgggtcaaaattcgtgatgccattgcttccagcgcgctttgtgaggtgttggatgccagtaccagaaactcatccccacctggacgcgccaacacctggtcatgttcgagacagcttaaaatagccaatgacacgtcgcgtaataactggtcaccaaacaaatgcccataggcgtcgttgacctttttgaaattatccaaatcaagatacacaaccccaactttattgttatctgcatgattaatagcgtgatcgattaaatcctgcattgcgttacgattcggcagtccggtgatactgtcggtatttgccagaatacgcagtcgctcctgagcgcggcgctcttcggtaatgtcggtgccggaacagattaaaaaaatctcgtttttgccactgccgctgtggacaaatttattgcgaaacagaaacagccgctggcctttacatgttggtatccacagttcgacttcatatgcattgccgcttcgaaaaaatacacggttattgcgcctggatgccgcagcttcacgacggctcataaacagtttaaacacgctttgcccaatgacgtcgtgttctttcaaccctgtgtaatcttcacataaccgattgaagcgttggatattcccccggctgtcgagaatcactattgcggaatgtgcttcagaaactacctgctcagcaaaggaaagcccgtgtgataaatcacgagcaaccgccggtgtgtcatgccatgcagacgcgttgccagcccattcccgtttattgatttttcgtcctaccagatgcacagaaagatcgctttcatcgacggtcagactcatcatcaggctggaggtgatgaccgtcatttccctgatgcgagcagcctgttcggcagataactgcaatgtacgatcaggttctgtggtttcggtggtagaaaagcgcaaaacatcgctgctttccgtcaaccgccagtatggattgtgcgatccgagaaagttgtacaacgttgtggactccctaacggttttcatgatgcatatcctccggttaacagcggagtccgcggttaaataaaaggaacaacatgacttacatgaaattaacggcggctaaacgcattgttttttttatatatttatttgtaatccagttttggaaaaacgccagttttcaaacgaaagtcagttaaaaaatctgcctggatataacgaaggtagagcggggaaataaacggcccatccatgaggaatgggccgtgaaaggagattacgcgaccgggcgcgcaataatgctgcgggtttccatgcggacttcggcaatagtgacgtcaataacgtcagtcactttgtaaaccgtttcacctttaatttgtacagtgccgttttcctggctgcaaaccagttcatcgcgcacagcgtgtaagaaaggtgccggaataaaggcgatagcgccgttatcaaccaaacgaacacgcatgccgccacggctgatatcgacaatttccgctgcgaaacgggtgtcggtcccggctttgtctttcaggaagcgtgcgtataaccagtcaccaacatcacgttctgccatccggttgagacggcgacgctcggccatttggacagtgatttcatcctgtgggcgcgtcgcagtttcgcctttgataaccgctttcagcagacggtggttgatcatgtcgccatatttacggatcggcgaagtccaggtggcgtatgcttccagaccgaggccaaagtgaggaccgggttcagtgctaatttcagcaaatgactggaagcgacgaatgcggctgtcgaggaaaccagttggttgcgcgtccagttcacgacgcagtttgcagaaaccgtccagcgtgagcacttcttcggcatcgacatgcagaccgtgcgttttcagcaacgctgccagcgcgtcggcattcgccggatcaaagcccatatgcacgttatagatgccaaaaccgagcttatcgcgcagtacgcgggccgcacaaatgttagcggcaatcatcgcttcttcgacgatacggttggcaatgcgacgaggctcggcgacgatatccagcacttcacctttttcaccgagaataaagcggtaatccgggcgatctttaaacaccagtgcgtggttatgacgccactcgccgcggcgttggcaaatttgcgctagcaaacggacttgttcggcaattgcttcactttcaggctgccagtcaccggtattttccagccagtcagaaacctggtcatacaccagctttgctttggattcgatggtggcggcaaagaattcgatattatcttcaatggtgccatcagcggagagcgtcatgcggcatgccagtaccgggcggacttcattggcgcgcagtgagcagagatcgtcagaaagctcgcgaggcagcatagggatgttgaagccaggcagatagttggtgaatgcgcgaattttcgcggctttgtccagcttgctgccttcagcaatccacgcggttggatcggcaatcgccacaatcagctgaagtttgtcatccggcaacgccttagcgaaaagggcgtcatccatatcttctgtgctggcactgtcgatggtgacaaaatccagcgcggtcagatcttcacgaaccagaccttcatcgagcatttcggtagcgacgccgtctggtgcttctttttccagattatggcgtgcaagggtaacccaccacggtacaaagtgatcgtcaccaaaagtgatgtattgtgtcagttctgcatagaaagaacgatcgcctttcagcggatgacggcgcatttcggcaaccgcccagtcgccttctttaaactcgtggttcaggccacgggctgcgcggcaaggaatggcgtcttttaagagtggatgatcaggaacgatggccagacggtcatttttgccctgaaccttacccacgaaacgagtcaggaacggttcaaccagttcttctggctctgcggattcacgttctttttcactgtggatcaccgcgataattcggtcgccatgcatgacttttttcatctgcggcggcggaatgaaataacttttttgcgcgtcgacttccaggaagccaaagcctttttctgtggcttttaccaccccttcagcgcgtggcgtctgggaatgcagttgctgtttaagctgcgctagcagcgggttgtcctgaaacataattgtctattttggtggccattagagcggctgacagttttacgcgaatctgtctgacgcggcaaggttaatatgtctcacccaacgcgatttttaagcgatttatccagccacacagcccgctccataccagcagattaataatctgcgttgatgatttttcgtgttcgagtaaagggctgaactgggcggcgctaaagcgatcgggtgctcgggtcagccattgtatcgcctgaacggtagcgcgctcaacagaatgacggtcagcccattggttaatttcattttcgcccttgcgcataagggtgctgatttttttatattcatttgatgaatccatacaggtggcaaaacaagcaggactgccatttatacgcgcgcataacaacgccgcaagctgattatccggctgtgtattgccccgtgtgctgtttaacaacttttcgagaagggaaagtgaaatagggtggagagagagtatttcggccagttggcaaagttctgcagttgaactttttgtgtgctcttcaggtagtttttccacctcatagctgcttcgccagcgtaatgattcatcagcaaacagtgacgcgtcggcgtagttttgtatctccagcccgggtaaccagcgtaccggatgcccgagataagcctgaaatgtcgcaattgtccgcgcctgaaagccaataaaaccaatgatttggctaatgatcacacagtcccaggcagtaagaccgacgtcattcagatgctggcgcgatcggttgtcgataatagaaggcgagctagccagttggcgggcatattgcgtgatttgtgccaaccgatgattactttccctggtggaatcaggcccggggagcggcgtaagtcgcgccgaatagtagttacataaccgctggacgccgcaaacctgagcaaccgtcagggccgtcgacaagcgttcataagcggtgaaggtctgtgaacgggtcacggtaagctggtcagggaacaaatccactgcaagaacacgcgcagggtccagccatgaaaggaagggggccagcgtttctttttcaaggatcacgtcgagtagaaagggatcgctgacctttgcggcttccgggaccagaggcagaacgtcatactccgtagtactggattgcgtttcatgataccagtggcttttgccggtgatgtggcgttgttccatgggcgctccttggtcgtaaaggaaatcgttatcctgacgcaaggcgggaaggggagaaagacggatcggcgataacaaatatcagaaaggtataacagagataacgggcggcagaacgccgcccatctttaccaacagaacgattatttcagttcgagttcgttcattgcagcaatgctgaaaccgccgtcaacgtggaccacttcaccggagataccggcagagagatcggagcacaggaatgccgcagagttacccacatcttcaatagtaacggtacggcgaatcggggtaacggcttcgcaatgagccagcattttgcggaagtctttgataccggaggccgccagagtacggatcggaccagcagagatggcgttaacacgcacaccttccggacccatcgcgttcgccatatagcgcacgttcgcttccagagacgcttttgccagacccataacgttgtagttcgggatagcgcgctcagcgccaaggtaggaaagggtcagcagggcagaacccggattcagcatggagcggcaagcttttgccattgcaacgaagctgtaggagctgatgtcgtgggcaattttgaagccttcacgggtaacggcgttaacatagtcaccatccagctgatcgccaggtgcaaaaccaatagagtgtacgaaaccgtcaaatttcggccaaactttccccagttcagcgaacatggtgtcgatgctggcatcttctgcaacatcgcactgcagaacgatgtcagaacccaattgagcggcaaattcttctacgcggcctttcagtttgtcgttctggtaggtgaatgccagttcagctccttcgcggtgcatcgcctgagcgataccgtaggcgatggatagtttgctggcaacaccggttaccagaatgcgcttaccggaaagaaaacccatagctttaatccttattgttgatgcttgttgtgcctgaaaatcaggcgattcgtcgttttagtaaacagtacgaacagataaacggttattataatcaacctggctgtgagtagctatagttgccaggtccgaccggagcaggctgcggcagggggggcgcttttcccctcaccctaaccctctccccagaggggcgaggggaccgtattgtgcaaatattgttaccccagcaacaaacaggctcatacagcccctaaccctttcatggcgatggctgggacggttcagaccttgccgaatattctccagcaccgtctccatgttttcaccacaacagctattcggctcggtctgccccctcgctctttcagggagagggtgaccggcggttcagttcctgcagaatattctccagcaccgtctcctcattacaatcaatctcgttattccagaaacgcagcacggtccagccctgcgactcaagccagctagtgcgcctggaatcataggcaactgctaaatcatgctgcccaccatccagctcaacgactacacgcgccgagcagcaagcaaaatcgagaatgtagctccccactggatgttgacggcgaaatttgaaatcactaaaacgtcggctgcgaagatatcgccagagctttcgttcctgcaaagtgagattgcgtcttaaatcacgcgcatttgatttaattttatctatcacctcattctgacaagatttaatcttttgtcagaatgaggtgaataatctggaaggaggattcagaaaattagcgatctttacgccacgcatccgccgtcaatgcctcgccaaaatgaccggcaatcagccgtttggtgagttcatgcagcggcgatgccagcacatccgcggtgctgcctcgctcgacaacctcgccctgatgcatcaccagcacctggtcgctaatgtgcttcatcattccgatatgctgggtaacataaatatacgaaatgccctgtttttcctgtaattccagcatcagattaatcaactgcgaacgcatcgacatatccagtgaagcgagggcttcatcggcaataatgacttttgggcgcaatatcagcgcgcgcgccagacccagacgctgtttttgtccgggtgccaacatatgcggatagtaactgacgtgatccggtagcagcccaaccatacgcatcgtttcaataatctgtttgcgacgctgttccggttccaggtcggtgttcaggcgcagtggaaaatccagaatttgcgagatacgttgacggggattcaacgaggtcgaaggatcctgaaaaatcatgcgaatacgctgactgcggaaggaataatcgccaaaatgcagtggatgatcgtcaatcaataactcgccgctggtaggctctatcattcccgccagcatttttgccagcgtggatttacccgaaccattctcgccaataatcgccagtgtctggccttcacgtagcgtaaagctcaagggttttaccgcttctacggtctgacgacgaaaccagccggtccggtagcggaacgttttacttaaattacgcacttcaagcagcgtttcgatcatctcactctttctccatgttcagcgggaaatgacaggcatagagatgatttttcgcccccgtcaaacgtggcgtcacaatgcattctcgttgtgcatacgggcaacgtggccccagacgacaaccaatcggtaactgttccagcagtgggatagcgccgggcagcgtattgaggcgacttttatgcggcatcgcgctgccgaagtctggtatcgcgcggatcagcgcctgggtataaggatgatgtggcatcgtcaccaactccttactcggcgcggtttccactgtttgaccgcagtaaagcacgttaattttatccgcccattggctaagcatttgtaagtcatggctgataagcaaaatagtggtattgctgttttggttgagacgcgtcagcaggcgaaagatttgcgcctgggttgttggctccattgagttggtcggttcgtcagcaatcagcagacgcggttgattcgccagtgcaatggctatcatcactttctgacattcaccttcggtcaactcatagggaaaactgcgcatcgcatctttgtgatctttaatccccacgcggtgcagcagttcaatggcacggcgtttgcgccagccaaaacgctgccaccaacggcctttataggtccaggctgggatgttttgcatcaactggcggcccacacgttctgaagggtcaagacacgactgcggttcctggaaaatcatcgacacgttatggccaaccagtttgcgccgttcgcgtgcggagagacgcagcaaatcgatatcatcaaaacgcatacggtcagcagtaacacgccagttatctttattcaccccacaaatcgctttcgcaatcaaactcttgccggaaccggattcaccaacaagaccgcggatttcaccttcggttaaggtcatacttacccggtcgacggctttaacccactcatcaccggttttaaattcaatggtcaggttacgaatatcgagtaatggcattattccacccccgcaataatcgcacgacgaacgccatcgccaaggaggttaaccaacaacacgctaatcataattgccgcacctggcagcatgacagtccacggggcgacataaatcagttccagcgcatcaccgagcatcgctccccattcaggcgaggggagttgtgcgccgagatcgagaaagcccagcgcggcgatatcgagaattgccatcgacagtgcgcgggtgatctcggtgaccagcccggcggtgatgtttggcatcacagcaaaccagagaatattcagcgttgatgcgccatccagacgggcggcgataacgtactctttttccagttcgtcatgcaccatgctgtaaatcgaacgtaccatacgcggcagcaatgccagccagacagcaaacatagcgtgggacaaactcggtccggcaaacgctacaacgataattgccaacagcagcgaagggatcgccagtaaggtatccagaatatggttaagcaccgctgagcggaggccgtgtgtcgccccggcgaaggtgcccagtaccaggccacagatcgtcgcggcaagcgtcaccacaaatgcgccacccacggttggcgcagctccgctcagtaaacggcttaaaacatcgcgtccgaggtcgtcagtccccaggaagaaagaaacttcgccatagcgcgaccatgacggcggcaataattgataaccgagaaattgctggtcgatgccgtaaggcgcaaaccagccgccaaaaatacacagtacagccagccccgcgcagccgtacaggccgaccatcgcagaggcgtcactataaaatttgcgccaggcggtacgcagcgtgcccggcgggcgcttttcgctgtatacgctatcgtaaggcataccattccttatgtttcagagggttagccatggcacccaaaatatcagaaatcacgttaacaataatgaccagtgagccacacaccatcactccggcggaaatggctgcgtaatcctgctggcggatggcgttaattaaccagcgccctaaacccggccagctaaaaaccatttcggtgatcatcgccagcgtcagcatggtggaaaactgtaagcccaggcgaggaataaccggcggtaacgcgttatgcagaacgtggcgacgcaaaatagtaaagcgcgacaaaccgcgggtcgccgccgcttttacatagttctggtcatacacttcgatagtgctgatacgcatcaggcggatcacttcagttgttggcgcaaccgacagggtgatcacgggcaatatcatatggcggattgcgctcatgatcatttcatcccgccatggtgagtccgaaagccaggcatcaatcaacgcaaaaccggtaatcggtttcacttcgtagagcagatcgaaacgccctgaaacgggcaaccaacctagcgtgagtgaacaaaacagcgtcaacagaagcgccagccagaacaccgggattgaaaagcccagtaaggcgatggcgttgatcaagttatcctgccacttatggcgcgtaatcccggcaatcatccccacggggatgccaacaatcagcgcaaaaccgaaggcgaggatgcacagttccatcgtcgccgggaagacctcttttaactgttcggcaatcggttgaccgttaatgctggaaacaccaaaatcccagtggatcaggccgttaaaccagaacacccaggcattccacagtgacgcgccttgtaacggcgcatgaggggtgaaatagctcaagctgaagccaacgaaggtcagcaggaacaaggtgacaatcaataacaaaatgcggcgtaaggtgaagataatcatggttttttcacctcatcctgtttctcgcgatacaccccagcaaaggaggcgttaccaaacgggctaagtaccagacctttgatatcgtaccgataggcctgcaaacgcaatgacgacgccagcggcaaaatgggcaattcctgcgccagaatactctgcgcttcgtcataggcttcaatacgcgccgccagctgctgcgaagagagcgccttacgcaatacgctgtcgaatttcggatcgcaccagtgggcgaggttggtctgcgaatgaattgccgcgcagctcagtaacggacggaagaaactgtccgggtcgttactgtccgtcgcccaaccggataacgtcagatcatggctcatatccatcaaccgcgcctcctgaaagcgaccttctaccggcacaatcaccacttttacgccaacctgcgccatatccgcctgaatcagttcggcagttttcagtggactggggttccacgcctgcgaacgtgtgggcacccacagtttcagcgttaaattttccagccccaacgacttcaactgttcgcgcgatttcgccggattgtattcagtaattttagcctcgttgtcataggcccacgaggcgcgcggtaaaatagaggccgccgtttcagccgtaccataatagatggattgcatcaggcgctggttattaatcgccagtgccagcgcatggcggacagcgggattatttagcggcggtttggcggtgttaaatgccagataggcgacgttcatcccaggacgcagcgttaaacgcaagcgcgggtcgtcacgcaaaatggatagctggctggcagcaggccaggccagaacgtcgcattccccggtcaggagtttcgacagacgtccggtgccgccggagcctaaatccaccactacctgcggcattaacggtttaccgcgccagaagtcatcatgacgttgtaggcgaataaattgcccggcgcggtattccgacaactgatacggaccggtgccgaccggttgacggtcgagttgctcctggcgatcttctttctctaacttccgggcatattctgccgacatgaccgaagcataatgggttgcgaggtgccacaaaaaagaagcatccggctgggcgagtcggaactcaacggtatgattatccagtttgcggacgcttttcacgttatcggcaaattgcaggctgtcgaagtaggggaagttgctgccgttgacgttatgccacgggttgttgcggtcaaaaattcgctggaaggtaaacaccacatcgtcggcattcattttacgagtgggagtaaaccagtcggttttttgaaacggaacatcgcgacgcaggtggaagcgataggtcgcgccgttgtcgagtacttcccagctttcggcaagttccggcatcaggcgataggtatagggatcgacatccagcagtcgatcataaaactgggcggcaagggtatcgacaattaacccactgctcgctttggatgggttaaaggtgttgacttgcccgctgacgcaatagacaaaaccgctgtcgcggatatcagcatgcgggggagattcaggcgcggcgattgcctgaccactcacaagtccagcaatcaccaaaagagacgataatacctggcgcataatattaagggattttatgtaaagaggctatcttactaatatttaatgacatttgccattaccgtttgtgttcaggggtcgtaatgagggccgtgtggttggtcgttgaacaggtgacgtcgccatctgttcaacattcgtacccgtgatttctctataactataactcacagaacaacttagcgaggagcagagcggtacgatcgtgagaaacccattaaagcacgctgcagtgcgtgtcattgttagccagatgcggcgtgaacgctttatccggacaacgatactgaccgatcgtctgcaattaaatcattactcattaccccattgattcaaaaactctgcgatctcatcaatgcgtacgggattaatccccgcttcagcagccatttcatgttgggcttcttcgctgatctcttcattgttcatcaaacgggtgagcagtaactggaagtagtgggccagcggtgtgcgttcagcctctgcgacaggctctgcgcattcggtcgcgtactcatcggcaatatcaaaatattttagcgggatatcgtggttcattatttgcccctggggttaatgcgctaagcataagggcggatgatagcactcgtgatccgggtcatacatctttttatagttaatggcgcggcgcgttaccctcaggcaggataatgcgccgcgcatccgactattacgtttcactcaccggcgttctgtcaccatcatacaacggcactttgcgatagcggcggatcagataccataaatatgcgccgcctaacgaagcccataccagaccgagtgtcagtgacgttgactcgaggttaacccacagcacacccaccgtcagcgcgccaaccagcggcatcagcaaatagtggaagtgatccttccagcttttattcattcctttacgccgccagaaatgattaaacaccgacagattcacgaaggtaaacgccaccagagcaccgaagttaattaacgctgtggcggtaactaaatcgaagaacagcgccgacaacgcgacaatcccgaccataatgacgttgagtgccggagtccgccattttgggtgcacatagccaaacacgcgctccggaaacacattgtcacgccccatcacatacagcagacgcgacacgctggcatgtgaagccaggccagaggctaacgtgttcacaaacgtggtgcagaggaaaatcgactggaagagcttgccgccgacgtacagcgcaatttcaggcagtgcggcatccggatctttaaagcggctgatatcgggaaagaacagctgcataaagaacgacgccgcgataaagataacgccaccgtagaccgccgtcaggaagatggctttcgggatcacgcgtgcggcgtccggcgtctcttccgaaagcgtggtcaccgcatcgaaaccgaggaaggagaaacagacaatcgtcgccccggtaataatcgggatcaggtgcgcgttctcgctgataaacggctgaagtgaccagacggtgccaacgccttctcctttatgcagtccctgaactaccaggaagataaacaccaccatgatggagatttgcaccagtacaaacagggtattgaagttagcgaccaggttgacgctcttcagattcgcggcggttaaaatggcgacgaaggttaccacccacacccacggcggcacttccgggaagagggcggagagatagattttcgccaacaagacgttaatcatcggcaaaaagagataatccagcagcgatgaccagccgaccataaatccgacgtgcgggttaatcgacttttgcgcgtaggtataggccgaaccggcctccggaaactggcgaaccagtttgccgtagctgatagcggtaaacagcacacccgccagcgccagcaaataggacgccggaacgtgaccgtcgctaatgccggagacaataccaaaagtatcaaatacggtcatcggcgtgagataggccagacccatcatcaccacctgccacaatttcagtgattttcgcagacgggttttgccgggttgcgcagcaatattcagtggtgaattaatagccataattgctgcctcccctgcgtaataaggtttgcggtcgtgtcgacctgaaatcaaacctgtttagcaagggaagcaaagggggcggagtccagtcagtagcaggaggggcgcatacgcagcctccctcgccatgcggggatttaatcatcggcatcatctcatttcctcgtcacagtcttaatcgttaacggaagcccgttgccgcccgcgctccataacgcgacatccgggaaatgtctggattaccagcaaatgtcaggcctggctccgctcaggccgatgaaacaaccccgcaaggggtattacgcgtttttcaacatccactcaatttctgtttctgtgatgaggcgctcaaactgcaacagctcatcatttttacaggcgtgatagacatggcagaagcgttcgcctaaatagcggcgcaggtgatcattctcgataaactcacccagggcatcgctctggcgaatcggaaagggtaagccttcctgttccagcccgttgccttcgacttcttcctgcaacggcagctcgttatcaaggccatgcaaaataccggcaaaaatcgctgccatcaccagatatgggttggcatcggcacccgccacgcgatattccacgcggtgattatgacggtcgccgcacggaatacgcagggcgacggtgcggttgttatggccccacgacgcctgcgtcggcacatacattcccggctggaagcggcgatacgagttcacgtttggtgccagcaacgccatcgacgacggcatcaggtcaatcatcccggcgagcatctttttcagcagcggcgaatcttcgccttccgcgtcagaaagcacgttctcgccacgattattttgcatactgatatggatatgcattccgctgcccgcgtgctcttcatacggcttcgccataaaagtggcgtgcatcttatgcttttctgccatcagacgcaccaggcgttttagtgccagcgcatcatcgcaggcttccagcacgttatcagtatggtaaaggttgatttcaaactgacccggcgaggcctcagcgaccgcgccatctgccggaatcagctgtaactgcgccagttcatcaatatcattgagcacgtcggcgaagtggttgaggttatcaacggagtaaacctggctttgtgtattgcggtcatcggtgccaggcgcgcagggcggttgcagatacccttcagcgtcgcgctggcgatccagtaaatagaactccagctctaccgctacgaccgggaacaatccgcgctggcgcagctgctgccacaggcggttaagaacgttccgcggctcaacgtcaaagggagcgccatcttcatcgaccatggtcaggagcatctgaccgataaactctggatcggcggcagaaggagttaaggaaccgagaacaggaacacaggtacgatccggctcgcccatttcctgacccagacctgcttcttctactacgttgcccagaatatccattgcaaataccgaggccgggaaataacaccctttctcgagcttcttcaggcttgaaacaggaatacgctttccacggaagcaaccatttaaatcggtaagtaaaacatcaacatattgcgtattcgggtagcgctccaggtagcgtttcacttcctgcgtaaaggcgctaccccgcctctcttctgactgctgaacaaagttctctacttcaacgatattggtttccatgattcttcgcctttggtttgttttccgctcgttatcaaagcgtaaaatataatgaccaccattcgaatctgtatgcaaactaaatgtttgtcaaatgttaaattgagtttgcaaaaatgaaaacccactgctagattgaaaaaatattgaacataaaggtcatttaaagcgcagtaatggcgataatttagtccactttgtgagattgagcatggaaaatataatgaacaatccggttatcggtgtcgtaatgtgcaggaacaggcttaagggtcatgcgacccagactctgcaagaaaagtacctgaatgccatcatccatgcaggcggcttgcctattgcgctaccacatgcgctggcggaaccgtcattacttgaacaacttttgccgaaactcgatggcatttatcttcctggtagtcccagcaatgtgcagccgcacctatatggtgaaaacggcgatgagcctgacgccgatcccgggcgtgatcttctgagcatggcgataattaatgccgcactcgaaaggcgcatccccattttcgccatctgccggggtttacaagaactggtggtggcaaccggtggttcgttgcatcgcaagctgtgcgaacagcctgaattgctggaacatcgggaagatcccgaactgccggtggaacagcaatatgcaccgtcgcatgaagttcaggttgaagaggggggattactgtctgcgttgttacctgaatgtagcaacttttgggtaaactctctacatggacaaggggcgaaggtcgttagcccacggttgcgtgttgaagctcgctcgccggatggcttagttgaggcggttagcgtcatcaatcatccttttgcgctgggcgtacagtggcacccggaatggaacagtagcgagtacgcgctttcgcgtatattgttcgagggctttatcaccgcttgtcagcaccatatcgctgaaaaacagcgactctgaccactacagtttaaggaaatgcaaatatgagtgatgagggactggcgccaggaaaacgcttgtcggaaatccgccagcagcaggggctttcacaacgtcgtgccgccgaactctccgggctgactcacagtgctatcagtacgatagaacaagataaagtcagccctgccatcagtacgctgcaaaagctgctgaaggtgtatggtctgtcactctcggaattcttttccgagccggaaaaacctgatgagccgcaggtcgtcattaatcaggacgacttaattgagatgggtagtcagggtgtgtcaatgaagctggttcataacggtaacccgaatcgcacgctggcgatgatctttgaaacgtaccagccgggcacaaccactggggaaagaattaagcatcagggtgaggaaataggcactgtactggaaggtgaaattgttctgacgattaatggtcaggattaccacctcgtcgcggggcaaagttatgccattaataccggcatcccgcacagtttcagtaatacgtcggcaggtatttgccgaattatcagcgcccatacgcccaccacgttttaatctttttgttctgtaagccgggtaagcgcaatgcgcccggcaatctatacacaaaatcattcaagttgcatcaaggcggcaagtgagcgaatcccgatgagcttactcaggtaagtgattcgggggagcgaacgcagccaaggcagaggcggcttgaaggatgaagtgtatataaagaatgtcgccagaaataaacgggcatacggcccggggatctctgcgccctgacgttcacaaactgcatatatctgatagacgtgaaacaggagtcataatgaattttcatcatctggcttactggcaggataaagcgttaagtctcgccattgaaaaccgcttatttattaacggtgaatatactgctgcggcggaaaatgaaacctttgaaaccgttgatccggtcacccaggcaccgctggcgaaaattgcccgcggcaagagcgtcgatatcgaccgtgcgatgagcgcagcacgcggcgtatttgaacgcggcgactggtcactctcttctccggctaaacgtaaagcggtactgaataaactcgccgatttaatggaagcccacgccgaagagctggcactgctggaaactctcgacaccggcaaaccgattcgtcacagtctgcgtgatgatattcccggcgcggcgcgcgccattcgctggtacgccgaagcgatcgacaaagtgtatggcgaagtggcgaccaccagtagccatgagctggcgatgatcgtgcgtgaaccggtcggcgtgattgccgccatcgtgccgtggaacttcccgctgttgctgacttgctggaaactcggcccggcgctggcggcgggaaacagcgtgattctaaaaccgtctgaaaaatcaccgctcagtgcgattcgtctcgcggggctggcgaaagaagcaggcttgccggatggtgtgttgaacgtggtgacgggttttggtcatgaagccgggcaggcgctgtcgcgtcataacgatatcgacgccattgcctttaccggttcaacccgtaccgggaaacagctgctgaaagatgcgggcgacagcaacatgaaacgcgtctggctggaagcgggcggcaaaagcgccaacatcgttttcgctgactgcccggatttgcaacaggcggcaagcgccaccgcagcaggcattttctacaaccagggacaggtgtgcatcgccggaacgcgcctgttgctggaagagagcatcgccgatgaattcttagccctgttaaaacagcaggcgcaaaactggcagccgggccatccacttgatcccgcaaccaccatgggcaccttaatcgactgcgcccacgccgactcggtccatagctttattcgggaaggcgaaagcaaagggcaactgttgttggatggccgtaacgccgggctggctgccgccatcggcccgaccatctttgtggatgtggacccgaatgcgtccttaagtcgcgaagagattttcggtccggtgctggtggtcacgcgtttcacatcagaagaacaggcgctacagcttgccaacgacagccagtacggccttggcgcggcggtatggacgcgcgacctctcccgcgcgcaccgcatgagccgacgcctgaaagccggttccgtcttcgtcaataactacaacgacggcgatatgaccgtgccgtttggcggctataagcagagcggcaacggtcgcgacaaatccctgcatgcccttgaaaaattcactgaactgaaaaccatctggataagcctggaggcctgaaatgaccgaacataccagcagttactacgccgccagtgcgaataaatatgcaccattcgacacgctgaatgagtcaatcacctgcgacgtttgcgtggttggcggcggctataccgggctctcctccgcgctgcatctggcggaagcgggctttgacgtagtggttctcgaagcctcacgcatcggctttggcgcaagcgggcgcaatggcggacagcttgtgaactcctacagccgcgacatcgacgtgatcgaaaaaagctacggcatggacaccgcccgtatgctcggcagcatgatgttcgaaggtggtgagatcatccgcgaacgtatcaaacgttatcagattgactgcgactaccgccccggcggcctgtttgtggcgatgaatgataaacagctcgccacacttgaagagcagaaagagaactgggaacgctacggcaataaacagctggaattgctggacgccaacgccattcgccgtgaagtagccagcgatcgctataccggtgcgctgctggatcacagcggtgggcatattcatccgctaaaccttgccattggcgaagcggacgccatccgcctcaacggcgggcgcgtgtatgaactttctgccgtgacgcagatccagcacaccacgccagccgttgtgcgaactgccaaaggtcaggtgacggcgaagtatgtgattgtcgccgggaatgcgtatctgggcgataaagtagagccggaactggcgaaacgcagcatgccgtgcggcacgcaggtgatcaccaccgaacggctgtcggaagatttagcccgttcgctgatcccgaaaaactactgtgtggaagactgtaactatctgcttgattactaccgtcttaccgccgacaaccgcctgctgtacggcggcggcgtggtctacggcgcgcgcgacccggatgacgttgagcgccttgtggtgccgaaactgctgaaaaccttcccgcagctgaagggcgtgaaaattgattaccgctggacgggcaacttcctgctgaccctgtcgcgtatgccgcagtttggtcgcctcgataccaacatctattacatgcagggctacagcggccacggcgtgacctgtactcatctagccggacgtttgattgccgaactgctgcgcggcgacgccgaacgtttcgatgccttcgccaatctgccgcattacccgttccccggcgggcgcacgctgcgtgtgccgtttaccgcgatgggcgcggcgtattacagcctgcgcgatcgtctgggcgtttaatttccgattaaccgtgaagagtcaaaaggtgtgaaacatgagcaacaatgaattccatcagcgtcgtctttctgccactccgcgcggggttggcgtgatgtgtaacttcttcgcccagtcggctgaaaacgccacgctgaaggatgttgagggcaacgagtacatcgatttcgccgcaggcattgcggtgctgaataccggacatcgccaccctgatctggtcgcggcggtggagcagcaactgcaacagtttacccacaccgcgtatcagattgtgccgtatgaaagctacgtcaccctggcggagaaaatcaacgcccttgccccggtgagcgggcaggccaaaaccgcgttcttcaccaccggtgcggaagcggtggaaaacgcggtgaaaattgctcgcgcccataccggacgccctggcgtgattgcgtttagcggcggctttcacggtcgtacgtatatgaccatggcgctgaccggaaaagttgcgccgtacaaaatcggcttcggcccgttccctggttcggtgtatcacgtaccttatccgtcagatttacacggcatttcaacacaggactccctcgacgccatcgaacgcttgtttaaatcagacatcgaagcgaagcaggtggcggcgattattttcgaaccggtgcagggcgagggcggtttcaacgttgcgccaaaagagctggttgccgctattcgccgcctgtgcgacgagcacggtattgtgatgattgctgatgaagtgcaaagcggctttgcgcgtaccggtaagctgtttgccatggatcattacgccgataagccggatttaatgacgatggcgaaaagcctcgcgggcgggatgccgctttcgggcgtggtcggtaacgcgaatattatggacgcacccgcgccgggcgggcttggcggcacctacgccggtaacccgctggcggtggctgccgcgcacgcggtgctcaacattatcgacaaagaatcactctgcgaacgcgcgaatcaactgggccagcgtctcaaaaacacgttgattgatgccaaagaaagcgttccggccattgctgcggtacgcggcctggggtcgatgattgcggtagagtttaacgatccgcaaacgggcgagccgtcagcggcgattgcacagaaaatccagcaacgcgcgctggcgcaggggctgctcctgctgacctgtggcgcatacggcaacgtgattcgcttcctgtatccgctgaccatcccggatgcgcaattcgatgcggcaatgaaaattttgcaggatgcgctgagcgattaatagcccaacgcaataatgtctgatgcgctgcgcttatcaggcctgcaaacgacgtattgattatgtatgccgaataaagcattcacgccgcatccggcaagttgtattgctcaacttcgctaaatctggtgctttttcaacaacgcgcggaactgatgataagttaaccccagtaattcagccgcgcgcttctggttatatttcccttgttgcaaactgagttgcagcaactctttttcctgctgcatctgaaactcacgtaaatccagcggcagtgttggaagcgaggtggtttctgaaacggcgatagcgtcttcaggcggacgccgtttaaagggatcaataatgatgtcatcaagcggataatcgctggtgccgtggcgatacactgaacgttccaccacgtttttcaattcacgaatatttcccggccaacgataattcagcaatgtttctctggcgcgctccgtaaaccccgggaacagaggcagcttgatttcccgacacatctggatggcaaagtattctgccatcaacattatgtcgctttcgcgctcgcgcagtggtggcagttgtacaacatcaaaagccagtcggtcgagcaggtcagcgcgaaaagtgccttcattgaccatcgccgggagatcggcattcgtcgcgcataccaaccgcacattcacctgcaatggttggctgccgccaacgcgctccagttcaccgtactcaatcacgcgcaataatttctcctgcaccatcatcggtgccgtagcgagttcatcaagaaatagcgtaccgccgtcggcacgttcaaatctccctggatgacgtttttgcgcaccggtaaacgcccccgcttcgtgaccaaacagttcggaatccagcagattttcatttaacgccgcgcagttaagggaaataaacggcccttgccaacgggaggagagataatgcaggcggctggcaatcagctctttaccggtgccgcgttcgccgatgatgagcaccggtttgtccagcggtgcgagatgcgaaacctgttccagcacttcgagaaagctgttcgcctcaccaagtaaattatctttgtattctgccatgatgaaattcgccacttgttagtgtaattcgctaactcatcctggcatgttgctgttgattcttcaatcagatctttataaatcaaaaagataaaaaattggcacgcaaattgtattaacagttcagcaggacaatcctgaacgcagaaatcaagaggacaacattatgggtattttttctcgctttgccgacatcgtgaatgccaacatcaacgttctgttagagaaagcggaagatccacagaaactggttcgtctgatgatccaggagatggaagatacactggttgaagtacgttctacttcggcgcgcgcgttggcagaaaagaaacagctgactcgccgtattgaacaagcgtcggcgcgtgaggttgaatggcaggaaaaagccgaactggcgctgctgaaagagagagaggatctggcacgtgcagcgttaattgaaaaacagaaactgaccgatctgattaagtccctggaacatgaagtgacgctggtggacgatacgctggcacgcatgaagaaagagattggcgagctggaaaacaaattgagcgaaacacgcgctcgccagcaggcattgatgttacgtcatcaggcggcaaactcgtcgcgcgatgtgcgtcgtcagctggacagtggcaaactggatgaagcaatggctcgtttcgaatctttcgaacgtcgtattgaccagatggaagcggaagcagaaagccacagcttcggtaaacaaaaatcgctggacgatcagtttgccgaactgaaagccgatgatgcaatcagcgaacaactggcacaattaaaagccaaaatgaagcaagacaatcaataataacatccaggcggcgtccgaacgcgccgccgctcatcgtctaaggagtacttatgagcgcgctatttctggctattccgttaaccatttttgtgctgtttgttttaccgatctggttatggctgcattacagcaatcgttctggtcgcagtgaattgtcgcaaagtgagcagcagcgattagcgcaactggctgatgaagcaaaacggatgcgcgaacgtattcaggcgctggaatctattcttgatgcagaacatccgaactggagggatcgctaatggcgggcattaatctcaataaaaaattatggcgtattccacagcagggcatggtccgcggcgtctgcgccgggattgccaactattttgatgtaccggtaaaactggtgcgtatcctggtggtgctgtcgattttcttcggtctggcgctgtttaccctggttgcttacatcattttgtcatttgcgcttgatccaatgccggacaacatggcctttggtgagcagctaccttccagcagcgaattgctggatgaagtcgaccgtgaactggcggcaagtgaaacgcgtttacgcgagatggaacgttatgtcacttccgatactttcacgttacgtagccgtttccgtcaactgtgaggaaagttatgaatactcgctggcaacaggccgggcaaaaggtaaagcctggtttcaaattagcaggcaagctggtacttcttaccgcactgcgctatggcccggcgggtgtggcgggctgggcgataaaatcagttgctcgccgaccgctgaaaatgttgctggctgtggcgctggaaccgctgttaagtcgggctgctaataaactggcacagcgttataaaaggtgaggggagtttcgcaaaaattgttaaatctcaggcgtataatggatggcaattttcatccatagaaggacgcttacatgtttaaaaaaggcttacttgctctggcactggtgttttcactgcccgttttcgccgctgaacactggatcgatgttcgtgttccagagcagtatcagcaagagcacgttcagggggccatcaatattcccctgaaggaagtgaaagagcgcattgccaccgccgttccggataaaaacgacaccgtgaaagtgtattgcaatgccggacgccagtcagggcaagcaaaagagatccttagcgagatgggatatacccacgttgagaacgccggtggcctgaaagacatcgcaatgccgaaggtcaaaggttaaaagaattcaccatgagcggcgcttatgcgccgtttttttttctgtcacaccttatttacatccccatagattatttgcgtcagctcacaaatacgctttttccctggtaaaaaatgatttcctgcgtgactaaaacccttgtgctcaattgacagtttattttctgcggagtagtctctcgtttcatgggaccgctaccacggaaaggcaacatgaaacagaaaattacggattacctggacgaaatctacggtggaacatttaccgcaactcatttacagaaacttgtaacgcgtcttgagagtgcgaaacgattaattacacagcgacgtaaaaaacactgggatgaaagtgatgtcgtgttaattacctatgccgatcaatttcacagcaatgatttaaaaccattacccacatttaatcagttttaccatcaatggctgcaaagcattttttcacatgttcatttgttgccgttttatccatggtcatctgatgatggcttttcggtaattgattatcatcaggtcgccagtgaagcgggggagtggcaggatattcagcaactcggtgaatgcagtcatttaatgtttgattttgtctgcaaccatatgtcggcaaaaagtgaatggtttaaaaactatttacaacagcatccaggttttgaagatttttttattgccgttgacccgcaaaccgatctcagcgccgtcactcgcccgcgtgcgttaccgttattaacgccattccagatgcgcgatcattcaacgcgccatttatggaccacctttagtgacgatcaaattgacctgaattaccgtagccctgaagtgttgctggcgatggtggatgttttactctgttaccttgcgaaaggtgctgagtatgtccgcctggatgccgttggctttatgtggaaagagccgggaacaagctgcatccatctggaaaaaacacatctgattatcaaactgttacggtcgattattgataacgttgcgccaggtacagtgatcattaccgagaccaatgttccgcataaagacaacattgcttactttggcgcaggcgatgacgaagcacatatggtgtaccagttctcgctgccgccactggtgctgcatgcggtgcaaaaacagaacgttgaggcgctttgtgcgtgggcgcaaaacctgacactaccttccagcaacaccacctggtttaacttcctcgcctctcacgatggcatcgggctaaacccgctacggggcttgttgcctgaaagcgaaatattagagctggtcgaggcgttacagcaggaaggtgcattagtaaactggaaaaataatcccgacggtacacgcagtccgtatgaaataaatgtgacctatatggatgcgttaagccgccgtgagagtagcgatgaagaacgttgcgccaggtttatccttgcccatgcgattttgttaagtttccccggtgtgccagcgatatatattcaaagtattcttggctcgcgtaatgattacgcaggtgtcgaaaaactcggatataaccgtgcgattaaccgtaaaaaatatcacagtaaagagataacccgagaactgaacgatgaagctacattaaggcatgcggtatatcatgagttgtcgcgtttaattacacttcgtcgcagccataacgagtttcatccggataataattttaccattgatacgattaattcatccgtaatgcgtattccaagaagtaacgctgatggtaattgtctgactggattgtttaatgtcagtaaaaatattcagcatgtaaatattactaatctgcatggtcgggatctgattagtgaagttgatatattgggtaatgaaataacgctgcgcccctggcaggttatgtggattaaataaaaaggaacatctcatgattaaatcaaaaatcgtgctgttatcagcactggtttcatgcgccctgatttcaggctgtaaagaagaaaataaaacgaatgtatccatcgaatttatgcattcttcggtggagcaggagcgccaggccgttatcagtaaattgattgcccgttttgaaaaagaaaaccctggcatcaccgttaagcaagtgcccgtggaagaagatgcctataacactaaagtcattactctttcacgtagcggttcgctgccggaagtgatcgaaaccagccatgactacgccaaagtgatggacaaagagcagcttatcgatcgcaaagcggttgccacagtcatcagcaacgttggtgaaggcgcgttttacgatggcgtactgcgtattgtgcgtaccgaagatggtagcgcatggaccggtgttcctgtcagcgcctggattggcggtatctggtatcgcaaagatgtgctggcaaaagcggggcttgaggagccgaaaaactggcaacagctgctggacgttgcacagaaactgaatgacccggcgaataaaaaatacggcattgcgctgcctacagcagaaagcgtgttgacggaacaatccttctcccagtttgcgttatccaaccaggctaacgtctttaacgccgaaggcaaaatcacccttgatacaccagagatgatgcaggcactgacctattaccgcgaccttactgccaacactatgccgggttctaacgacatcatggaagtgaaagacgcctttatgaacggcaccgcgccgatggcgatttactccacctatatccttccggctgtgattaaagaaggcgacccgaaaaacgtcggtttcgtggtgccaaccgagaaaaactctgcggtctacggcatgttgacctcgctgaccattaccgccgggcaaaagaccgaagagacggaagcagcagaaaaatttgtcacctttatggagcaggcagacaacattgccgactgggtgatgatgtcgccaggtgctgcgctgccggtgaataaagcggtggtgactaccgccacctggaaagacaacgacgttattaaggcgctgggtgaactaccgaatcagctaatcggtgaactgccaaatattcaggtttttggcgcagtaggggataaaaactttacccgcatgggtgatgtgacgggttctggcgtggtgagttcaatggtgcataacgtcaccgtgggtaaagccgatctctctactacgctgcaagcgagccagaaaaaactggatgaactgatcgaacagcactaaacccaggacaggaatccgcaatgaacaggcttttttcaggtcgttccgatatgccctttgcgctgctgcttctcgcgcccagcttattactgctgggcggtctggtggcgtggccgatggtgtcgaatatcgaaatcagttttttacgtctgccgctcaatcccaacatcgagtcaacgtttgttggggtgagcaactatgtgcgtatcctctccgatcccggcttctggcattcgctgtggatgacggtctggtataccgcgctggtggtggcgggcagcaccgtgctcgggctggcggtggcgatgtttttcaaccgcgagttccgcctgcgcaaaaccgcgcgttcgctggtgatcctctcctacgtaacgccgtccatttcgctggtgttcgcctggaaatacatgttcaacaacggctacggcattgttaactacctcggcgtcgatcttctgcatctctatgagcaggcaccgctgtggttcgataatccgggcagtagctttgtgctggtggtgctgttcgccatctggcgctacttcccgtatgcctttatctcgtttctggcgattttgcagaccatcgacaaatcgctgtacgaagcggcagagatggatggcgctaatgcctggcaacggtttcgtatcgtcacgctgcccgcaattatgccggtcctggcgacggtggtgacactgcgcaccatctggatgttctacatgttcgcggatgtttatttgctgacgaccaaggtcgatattctcggtgtatatctctacaaaaccgcctttgcctttaatgatttaggaaaagcggcggcgatctcggtggtgctcttcatcattattttcgctgtcattctgctgaccaggaaacgggtgaacctcaatggcaacaaataaacgcacactcagtcgcatcggtttttactgcgggctggcgctgtttctcatcatcacgctgtttccattttttgtgatgctgatgacctcgttcaagggcgcgaaagaggcgatctcactgcatcctacgctgctgccgcagcagtggacgctggagcattacgtcgacatttttaacccgatgattttcccgtttgtcgactacttccgtaacagtctggtggtgtctgtggtttcatccgtggtggcggtattcctcggcattcttggggcttacgcgctttcccgcctgcgctttaaaggtcggatgaccatcaacgccagcttttacacggtgtatatgttctctggcattttgctggtggtgccgcttttcaaaatcatcaccgcgcttggcatttacgacactgagatggcgctgatcatcaccatggtgacgcaaactctgcccaccgccgtgtttatgctgaaaagctacttcgacaccatccccgatgagatcgaagaagcggcgatgatggatggcctcaaccgtctgcaaattatcttccgcatcaccgtgccgttggcgatgtccgggctgatatccgtgttcgtctactgctttatggtggcgtggaacgactatctgtttgcgtcgattttcctctccagcgccagcaatttcaccttaccggtgggcctgaacgcgctgttcagtacgccagattacatctggggacggatgatggcggcctcactggtgaccgcattgccggtggtgattatgtatgcgctttcggaacgttttattaagagtggtttgaccgccggtggcgtgaagggctaaagcggccagtttctttacaaggagttttaaatgaaaaagttagtagccacagcaccgcgtgttgctgcgctggttgagtatgaagatcgggcgattttagctaatgaagtgaagatccgcgtgcgtttcggcgcaccgaaacacggaacggaagtggtcgacttccgcgccgccagcccgtttattgatgaagactttaacggcgaatggcagatgttcactccgcgtccggcagatgcgccgcgcggcattgagtttggcaaattccagcttggcaacatggtggttggcgacattatcgagtgcggcagcgacgttaccgactacgcggtgggcgacagcgtatgcggctacggcccgctctccgagacggtcatcattaacgcagtgaataactacaagctgcgcaaaatgccgcaaggcagctcctggaaaaacgccgtctgctacgacccggcgcagtttgccatgagcggcgtgcgcgatgccaacgtgcgcgtaggggattttgtggtggtggtagggcttggcgcaatcggtcaaattgccatccaactggctaaacgcgctggcgcttctgtggtgattggcgtcgatcctatcgcccatcgctgtgatattgcccgtcgccacggcgcggatttctgccttaaccccatcggcactgatgtaggtaaagagatcaaaacgctgaccggcaagcagggtgccgatgtgattatcgaaaccagcggctacgccgacgcgctgcaatcggcgctccgcggtctggcttatggcggcaccatctcctatgtcgcgtttgccaagccgtttgccgaaggttttaacctcggacgcgaagcgcatttcaataacgccaaaattgtcttctctcgcgcgtgcagcgaaccgaacccggattatccgcgctggagccgcaagcgtattgaagaaacctgttgggaactgctgatgaacggttatctcaattgcgaagatttaatcgacccggtggtgacctttgccaatagcccggaaagctatatgcagtatgtcgaccagcatccggaacagagcatcaaaatgggcgttacgttttaattcaaaggaatgaaaaaaatgaaaatcggcacacagaatcaggcgttctttccggaaaacattctggagaaatttcgttatatcaaagagatgggcttcgatggttttgagattgacggcaaactgctggttaacaacatcgaagaagtcaaagcggcgatcaaagaaaccggtttaccggtgaccaccgcctgcggtggctatgacggatggattggcgactttatcgaagagcgtcgtcttaatggcttaaagcagatcgagcgcattctcgaagcgctggcagaagtgggcggtaaaggcatcgtcgttccggctgcgtggggcatgtttaccttccgcttaccgccgatgacctcgccgcgtagcctggacggcgaccgcaaaatggtgagtgattccctgcgcgtactggaacaggtcgccgcgcgtaccggaaccgtggtgtatctcgaaccgttaaaccgctatcaggatcatatgatcaacaccctcgccgatgcccgccgttacatcgtcgaaaacgatcttaaacatgtacagattatcggcgatttctatcacatgaatatcgaagaagataacctggcgcaggcgctgcatgacaaccgcgacctgctcggtcatgtgcatattgcggataaccatcgctaccagccgggcagcggcaccctggatttccacgcgctgtttgaacagctgcgcgcggataactatcagggctatgtagtgtacgaagggcgtatccgggcggaagatcctgcccaggcgtaccgtgattcgttggcctggttgcgtacctgctaagaggtctttgtgaaaagtgcaatgacaagctctccgctgcgggtcgcgataataggcgcaggccaggtggcggataaggttcatgcttcgtactactgcacccgcaacgatctggaactggtggctgtctgtgacagccgcctttcccaggcgcaggcgctggcagaaaaatacgggaatgcatccgtgtgggacgatccgcaggccatgctgctggcggtgaaacctgatgtggttagcgtctgctcacctaaccgttttcattacgaacataccctgatggcactggaagcgggctgccatgtgatgtgcgaaaaaccgcccgccatgacgccagaacaggcgcgggaaatgtgcgataccgcgcgcaaactgggcaaggtgctggcctacgactttcaccatcgttttgcgctcgatacgcaacagctgcgtgaacaggtgaccaacggcgttttgggagagatttacgttaccaccgcccgcgccctgcgtcgctgcggcgttcccggctggggtgtctttaccaataaagaactgcagggtggtggcccgctgatcgacatcggcattcatatgctggatgctgcgatgtatgtgctgggctttccggcggtgaaaagcgtgaatgcgcatagctttcaaaagatcggcacgcaaaagagctgtggtcaatttggtgagtgggatccggcaacttacagcgtcgaagattcgctgtttggcaccattgaatttcataacggcggcattctgtggctggaaacgtcatttgcactcaacatccgcgaacagtcgattatgaacgtcagcttttgtggtgataaagctggtgcgacgctgtttccagcacatatctacaccgataacaacggtgaattaatgacgctgatgcaacgggaaatagcagacgacaaccgccatttgcgcagcatggaagcctttatcaatcacgtacagggcaagcccgtgatgatagccgacgccgagcaggggtacatcatccagcaactggtggcggcgttgtatcaatccgcagaaacagggacgcgtgtggaattatgaccaggccagtaacgttatcagaaccccatttcagccagcataccctgaacaagtatgcatcgctgatggcgcaggggaacggctatcttgggcttcgcgccagccatgaagaagattacacgcgccagacgcgagggatgtatctggcggggctgtatcatcgggcgggaaaaggtgaaatcaacgaactggtgaacctgcctgatgtcgtggggatggagattgccataaatggtgaggttttctcgttatcccacgaagcctggcagcgtgagcttgactttgccagtggcgaattacgccgcaatgttgtctggcgtaccagcaacggctcaggttacaccatcgccagccgtcgctttgtttcggcagaccaactgccgctcattgcgctggaaatcactattacgccactggacgccgacgcgtcagtgctgatttcaacaggcattgacgccacgcaaaccaatcacggtcgccaacatctcgacgaaacccaggtgcgggtgtttggtcagcatctgatgcaggggagctacaccacccaggatggacgcagtgatgtggccatcagctgttgctgtaaggtgagcggtgatgtgcagcaatgctataccgccaaagagcgccgtttactgcaacataccagtgcgcagcttcatgcaggcgagacaatgacgttgcaaaaactggtgtggatcgactggcgggatgacaggcaagctgctttagacgagtggggcagcgcgtcgcttcgccagcttgaaatgtgcgcgcagcagagttacgaccaacttcttgcagcatcaacagaaaactggcgtcaatggtggcagaaacgtcgtatcacggtaaatggcggcgaagcgcacgatcagcaagcgttagattatgcgctttatcatctgcgcatcatgacgcctgcccacgacgagcgcagcagcattgcggcaaaaggcttaaccggcgaaggctacaaaggccacgttttctgggatacagaagtatttttgttaccgtttcatctgtttagcgatccgacggttgcccgaagtttactgcgttatcgctggcacaacttgccaggcgcgcaggagaaagcgcgacgcaacggctggcagggcgcgctatttccgtgggaaagcgcgcgcagcggcgaagaagagacgccggaatttgccgccattaacattcgcaccgggctgcggcaaaaagtggcctcggcgcaggcggaacatcatctggtggccgatatcgcctgggcggttattcaatactggcagaccacgggggatgaaagtttcattgcgcatgaaggcatggcgctacttctggagacggcaaagttctggattagccgcgcggtgagagttaacgatcgtctggaaattcatgatgttattgggccagacgaatataccgaacatgtcaataataatgcatacaccagctatatggcccgctacaacgttcaacaggcgctgaatattgcccgccagttcggctgtagcgacgatgcgtttatccatcgcgccgaaatgttcctcaaagagctatggatgccagaaattcagcccgacggcgttttgccgcaggatgattcgtttatggctaagccggcgattaatctggcgaaatacaaagcggcggcggggaagcaaaccatactgctggattattcacgcgcagaagtgaacgagatgcagatcctcaaacaagctgatgtggtgatgctcaattacatgctgccggagcagttctcagcggcatcgtgtcttgccaatctgcaattttatgaaccgcgcactattcacgactcgtcattaagtaaagcaatccacggcattgttgccgcacgctgtggcctgctgacccaaagttatcagttctggcgcgaggggactgaaatcgatcttggtgctgatccgcatagttgtgatgatggtatccatgctgccgcaactggcgctatctggctgggggcgattcagggttttgccggggtgagcgtgcgtgacggtgaattgcatctcaatccggcgttacctgagcagtggcaacagttgtctttccctctgttctggcagggctgcgaattacaggtcactcttgacgcgcagcgtattgcgattcgaacttctgcgcccgtttcactgcgtttgaacggtcagcttataaccgtggctgaagaatctgttttctgtttgggtgattttattttgcccttcaatgggaccgctaccaaacatcaggaggatgaatgaaactgcaaggggtaattttcgatctggatggtgtaatcaccgataccgcgcatctgcatttccaggcgtggcagcagattgccgctgaaattggcatcagcattgatgcgcagtttaacgaatccctaaaagggatcagccgcgatgagtctctgcggcgcattctgcaacacgggggcaaagagggcgactttaactcgcaggagagggcgcaactggcgtatcgcaaaaatctgctctatgtccactcactacgcgagttgacggtcaacgctgttctacccggcattcgctctttgctggcagatctccgtgcacagcagatctcggttgggctggcttctgtctccctgaatgcgccgacgattttagcggcgctggagctgcgcgagtttttcaccttctgcgcggatgcttcccaacttaaaaactcgaaaccggacccggaaatctttctcgccgcctgtgcagggctgggcgtgccgccgcaggcatgtatcggcattgaagatgcgcaggcgggcattgacgccattaacgccagcggtatgcgctcggtggggatcggcgcgggcttaaccggggcgcaattactgttgccttcaacggaatcactcacctggccgcggttatcggccttctggcaaaacgtatagcaaaggaatcaacatggctcagctttcgttacaacatattcaaaaaatctacgataaccaggtgcatgtggtgaaggacttcaacctggaaattgccgataaagagttcatcgtgtttgtcggcccgtcgggctgcggtaagtcgaccaccctgcgcatgattgccgggcttgaggagatcagcggcggcgatctgttgatcgacggcaaacgaatgaatgacgttccagccaaagcacgcaatatagcgatggtgttccagaactacgcgttgtatccgcatatgacggtttacgacaacatggcgtttggtctgaagatgcaaaaaatcgccaaagaggtgattgatgagcgggtgaactgggcggcgcaaattctcggcctgcgtgagtacctgaaacgtaagccgggggcgctttccggcgggcaacgtcagcgagtggcgcttgggcgggcgattgtacgcgaagcgggcgtgtttttaatggatgaaccgctctctaaccttgatgccaagctgcgcgtgcaaatgcgcgcagagatcagcaagctgcatcagaaactgaacaccaccatgatctacgtgacccacgatcagaccgaagcgatgaccatggcgacgcggattgtgattatgaaagacgggattgttcagcaagtaggtgcgccgaaaaccgtttataaccaacccgcgaatatgtttgtttccggatttattggatcaccagcgatgaattttattcgcggcacgatcgatggcgataaattcgttacggaaacgcttaaattaaccattcccgaagagaaattagcggttctgaaaacacaggaaagtttgcataagcccatcgtgatgggaatacgaccggaagatattcatccggacgcgcaagaggaaaataacatttccgccaaaattagcgtggcagaattaaccggtgcggaatttatgctctacaccacggttgggggcacgagttagtggtccgtgctggtgcgttaaatgattatcatgcaggagaaaatatcactattcattttgatatgacgaaatgtcatttctttgatgcagaaacggaaatagcaattcgctaaatacagggggaaggcattcccccaggataatacaaggaacaataatgaaaaagttattaccctgtaccgcactggtgatgtgtgcgggaatggcctgcgcacaggccgaggaaaggaacgactggcactttaatatcggcgcgatgtacgaaatagaaaacgtcgagggttatggcgaagatatggatgggctggcggagccttcagtctattttaatgccgccaacgggccgtggagaattgctctggcctattatcaggaagggccggtagattatagcgcgggtaaacgtggaacgtggtttgatcgcccggagctggaggtgcattatcagttcctcgaaaacgatgatttcagtttcggcctgaccggcggtttccgtaattatggttatcactacgttgatgaaccgggtaaagacacggcgaatatgcagcgctggaaaatcgcgccagactgggatgtgaaactgactgacgatttacgtttcaacggttggttgtcgatgtataaatttgccaacgatctgaacactaccggttacgctgatacccgtgtcgaaacggaaacaggtctgcaatataccttcaacgaaacggttgccttgcgagtgaactattatctcgagcgcggcttcaatatggacgacagccgcaataacggtgagttttccacgcaagaaattcgcgcctatttgccgctgacgctcggcaaccactcggtgacgccgtatacgcgcattgggctggatcgctggagtaactgggactggcaggatgatattgaacgtgaaggccatgattttaaccgtgtaggtttattttacggttatgatttccagaacggactttccgtttcgctggaatacgcgtttgagtggcaggatcacgacgaaggcgacagtgataaattccattatgcaggtgtcggcgtaaattactcgttctgataatgggctaaattgccggatgcggcgcgagtactttatccgatctataaatgtaggccggataagatgcgctagcatcgcatctggcattcaggcaaggtagctggtatttatttcagcgtcatatgcgtggcaacggtaatattctgtggtgacggttttccagaaattaagcggaataataactcgcagctttgttgacctaactcctgcgtcggaacatcgatgccgcccggtgcaggcgttaaaataaatgacagcgtttcattgctataacccaccaccgctaactgctgcggaatagcaatatttttctctgctgccgcacgataaatgctcattaatttcaggctgtcagtggcaaacaccgcctcaggcaacggtgactggcttaataattgccgtgctgcttttaatgcagtttcatgggtataaccgccatcaacaatccattcatcacgcactgcaatattatgcgcagccaggctctgcttataaccattaacgcgatcaaccgaaacatggacatcaagcggagcatgcaggcaggcaatattttgatgcccactttcaattaatgcatcggtcaacgcaatgctgtcgccaaaattatcggtatcgacagaataaacatgggcatattgaccttcaactttgccaatcaccaccaccggaatatcatatttatcgagttgggcaaaaaatgactcatccgctggcgaactgagcataataatgcctttaatcattttctgcttaattttgctttcgcatttttgcagatcttctgccggattgtgcgacgtttgtaatatcacgtcgaaaccttcttcttcagctttggcggtgatggcatgcaaaacttcagagaaaaacggattacccgccgtagttttggtcgaacgggtagaaatcaccataatggcatcaaaacccgaagaggtcagcgcgcgggccagcttgtttggctgatactgtaattcttcaatggcccgtaacactttttcgcgcgcttccggggagatattagtttgcttattcagcacgcgtgatacggtggattttgatacgcctgcaaccctggcaatatcataaatagtaggggacataggtcaggaactccgtccgaacgtgaatgctgcacatcttatggagttcgccggtcgatgacaacacgggcagttgataatcaatggcctggcccccacattcatatccttacgaatgattttttttctggtcttcagagcagcacaggacagcaatgaagcgacttaaaaatgaactcaatgcgctggtgaatcggggtgtcgacagacatctgcgcctcgctgtaaccggacttagccgcagcggcaaaacagcgtttatcaccgcgatggttaatcagttgcttaatattcacgccggagcacgtttgccgctgttaagtgcggtgcgtgaagagcgcctgctgggcgtgaaacgcattccccagcgtgactttggcattccgcgcttcacctatgacgaagggctggcgcagttatatggcgatccacccgcctggccaacgccaacgcgcggcgtcagtgaaatccgcctggcgctacgttttaaatcgaatgattcgctgctacgccactttaaggatacctccacgctgtatctggaaattgtggattatcccggcgaatggttgctcgacctgccgatgctggcgcaggactatttaagctggtcgcgccagatgacgggcttactcaatggtcagcgcggagaatggtcggcgaaatggcgaatgatgagcgaagggctggacccgctagcgcctgccgacgaaaaccggctggcggacattgccgccgcgtggaccgattatctccaccactgtaaagagcaggggctgcactttattcagcctgggcgctttgtcttgccgggagatatggcaggtgcgcccgcgctgcaattcttcccgtggccggatgtcgatacctggggcgagtccaaactggcgcaggccgataagcataccaatgccggaatgctgcgcgagcgctttaattattactgcgagaaggtggtgaaggggttctataagaatcattttctgcgctttgaccgccagattgtgctggtggattgcctgcaacctctcaacagtgggccacaggcatttaatgatatgcgtctggcactgacgcagctgatgcaaagttttcactacgggcagcgtaccctgttccggcgtttgttttcgccggttatcgataagctattgtttgctgccactaaagcggaccatgtgaccatcgatcagcacgctaatatggtttcattactgcaacaactgattcaggatgcctggcaaaatgcggcgttcgaagggatcagcatggactgcctggggctggcgtcagttcaggcgaccaccagcggcattattgatgttaacggtgagaaaatcccggcgctgcgtggtaatcgacttagcgatggcgcaccgctcactgtttatcctggcgaagttcccgcacgtttgcctggtcaggcgttctgggataagcaaggcttccagtttgaggcatttcgtccgcaggtgatggatgtcgacaaaccactaccgcatattcgtcttgatgctgcgctggaatttttaataggagataaattgcgatgaccgaaccgttaaaaccacgtattgatttcgacggtcctctggaggtcgatcagaatcctaaattcagggcgcagcagacctttgacgaaaatcaggcgcaaaattttgccccggccacgctcgacgaagcgcaggaagaagaggggcaagtcgaagcggtaatggacgcagcgttacgtccgaaacgcagcctgtggcgcaaaatggtgatgggagggctggctctgtttggcgcaagcgttgtcgggcagggtgtacagtggacaatgaatgcctggcaaacccaggactgggtggcgctgggtggatgtgccgctggggcattgattatcggcgctggcgtaggttctgtggtaacagagtggcggcgcttatggcgcttgcgacagcgcgcccatgaacgcgacgaagcgcgtgatttattgcatagccacggcacgggcaaaggccgcgcattttgcgaaaaactggcgcagcaggcgggtattgatcagtcgcatccggcgctgcaacgctggtatgcctcaatccatgaaacgcaaaacgaccgtgaagtggtcagcctgtatgcgcatttggtccagccagttttagatgcccaggcgcggcgcgaaatcagccgttcggcggcggaatcaacgttgatgattgcggtcagcccgctggcgttggtcgatatggcgtttatcgcctggcgcaatctgcgtttaattaatcgcatcgccacgctgtatggcattgaactggggtattacagccgtttgcgtctgtttaagctggtattgctgaatatcgcttttgccggagccagcgaactggtgcgcgaagtggggatggactggatgtcgcaagatctcgctgctcgtttgtctacccgcgcagctcaggggattggtgcaggacttctgacggcacgactcgggattaaagctatggagctttgccgcccgctgccgtggattgacgatgacaaacctcgcctcggggatttccgtcgtcagcttatcggtcaggtgaaagaaacgctgcaaaaaggcaaaacgcccagcgaaaaataatgcaatatcgggtgctgaccggatatctttacgccgaagtgcccgtttttccgtctttgtgtcaatgattgttgacagaaaccttcctgctatccaaatagtgtcatatcatcatattaattgttcttttttcaggtgaaggttcccatgcgtctggaagtcttttgtgaagaccgactcggtctgacccgcgaattactcgatctactcgtgctaagaggcattgatttacgcggtattgagattgatcccattgggcgaatctacctcaattttgctgaactggagtttgagagtttcagcagtctgatggccgaaatacgccgtattgcgggtgttaccgatgtgcgtactgtcccgtggatgccttccgaacgtgagcatctggcgttgagcgcgttactggaggcgttgcctgaacctgtgctctctgtcgatatgaaaagcaaagtggatatggcgaacccggcgagctgtcagctttttgggcaaaaattggatcgcctgcgcaaccataccgccgcacaattgattaacggctttaattttttacgttggctggaaagcgaaccgcaagattcgcataacgagcatgtcgttattaatgggcagaatttcctgatggagattacgcctgtttatcttcaggatgaaaatgatcaacacgtcctgaccggtgcggtggtgatgttgcgatcaacgattcgtatgggccgccagttgcaaaatgtcgccgcccaggacgtcagcgccttcagtcaaattgtcgccgtcagcccgaaaatgaagcatgttgtcgaacaggcgcagaaactggcgatgctaagcgcgccgctgctgattacgggtgacacaggtacaggtaaagatctctttgcctacgcctgccatcaggcaagccccagagcgggcaaaccttacctggcgctgaactgtgcgtctataccggaagatgcggtcgagagtgaactgtttggtcatgctccggaagggaagaaaggattctttgagcaggcgaacggtggttcggtgctgttggatgaaataggggaaatgtcaccacggatgcaggcgaaattactgcgtttccttaatgatggcactttccgtcgggttggcgaagaccatgaggtgcatgtcgatgtgcgggtgatttgcgctacgcagaagaatctggtcgaactggtgcaaaaaggcatgttccgtgaagatctctattatcgtctgaacgtgttgacgctcaatctgccgccgctacgtgactgtccgcaggacatcatgccgttaactgagctgttcgtcgcccgctttgccgacgagcagggcgtgccgcgtccgaaactggccgctgacctgaatactgtacttacgcgttatgcgtggccgggaaatgtgcggcagttaaagaacgctatctatcgcgcactgacacaactggacggttatgagctgcgtccacaggatattttgttgccggattatgacgccgcaacggtagccgtgggcgaagatgcgatggaaggttcgctggacgaaatcaccagccgttttgaacgctcggtattaacccagctttatcgcaattatcccagcacgcgcaaactggcaaaacgtctcggcgtttcacataccgcgattgccaataagttgcgggaatatggtctgagtcagaagaagaacgaagagtaagcgcgaatatgcctgatggtgcaacaccatcaggcatattaaattatgctttcagtacagccagagctgcttcgtaatccggctcggtggtgatttcatccaccagctggctgaaaatcacattgtcattttcgtcaataaccacaacggcacgcgctgccagacctttcagtgggccatcagcaattgccacaccgtaagcttgcagaaattcagcgttacggaaagtggagagggtgataacgttgttcagaccttctgcgccgcagaaacgagactgggcgaacggcagatcggcagagatacacagcacaacggtgttgtcgatctcagttgccagttggttaaacttacgtactgatgcggcgcaaacaccggtatcaatactcgggaaaatgttcagcactttgcgtttacccgcaaactgaccgagggtgacgtcagacagatcttttgccacgagagtaaaagtctgcgctttgctacccgcctgcgggatggaattggcgactgtaaccgggttgccctggaaatgaacggtttgtgacatgattatctttcctgtttacatatagttaacgtcacacctagtttatgctaactgtcaataacacagcaaacgctatttgcgcttaatccgcagaccaccgcgacaacaaggagtaaagatgagaaccgttaaggtattcgaggaagcctggcccttacataccccgtttgtgattgcccggggaagtcgcagtgaagcgcgcgtggtggtggttgaactggaagaagagggtattaaaggcaccggcgaatgcacgccgtatccgcgttatggggaaagtgatgcctcggtaatggcgcaaattatgagcgtcgtgccgcaactagagaaagggctgacacgggaggagttgcaaaaaattctccctgccggcgcagcacgtaatgcgctggattgtgcattgtgggatctggccgcgcgaagacagcagcaatcgctggctgatttgatcggcataacgcttcccgagacagttatcactgcacagacggttgtcatcggtacgcctgatcagatggccaatagtgcatcaacactctggcaggcaggcgcgaaattactgaaagtgaagctggataaccatcttatcagtgagcggatggtggcaattcgcacagctgtgcccgatgcgacgctgatcgttgatgcaaatgaatcctggcgtgcagaagggttggcggcgcgttgccagctattggcggatttaggcgttgcgatgcttgaacaaccgcttcctgcgcaggacgatgcggcgctggagaattttattcatccgttgccgatttgtgctgatgaaagttgtcatactcgtagcaatttgaaggcgctgaaagggcgctatgagatggttaatattaagctcgataaaaccgggggtctgacggaagcgctggcgctggcgactgaagcgcgtgcacaaggtttcagtctgatgctgggctgcatgttgtgtacctctcgtgccattagcgccgctttaccgctggtgccgcaggtcagtttcgccgatcttgacggaccgacctggctggcggtagatgtggaaccggcgcttcagttcacgacgggcgaattgcatctttaggatgccagcgcagcaagtttgccatcgcaaagagatatttttcgctggcttcgtcggaggagatgggcggaaactctgcggtgatgcaatgcaagttcagatctgcacaccaactgccgaaagagccaggcgtttcataaccgacgctggttaccagaggcaattcaaacgcctgagccagccattcgcctaattcgctgtgtctgggatcttcaatacaggccagtggatcgtggaatgagaccacccaggcaggttgaatgcggtgtataagctggcacagcgcctgggtttcaggttcggagccaggtttgtcacctgtcagtaatacgacatcgcgttcttcagcggcgctgttccagcgataaacggtttcaccttccttccagttcgccgccggaaagtttctgtttaaatccacaccattagcattggcccgtaaccccaactggcagccgtcaggattcacacacagcaccacatgatgacggcgcaaagaaggtgtcaacgtccgcagagcacaggagagcgtgacgaccgaagagttttcatcaccgtgagtgccagccagaatcaaaccactttcgcggctggctgcaggggcaggaaaccagattaacggcgcgcccaataatgaacgtccgtaatgttctgttccgggcggaaatgcgccgcgttcggcgcgtgggcgggttacggtcatgatcgtctctggttcaggaagtattacaggcagtgttgtgcaaattttgcggattatcaaatccttttcttcaacgctatgtcatcgatcttgtatcacttttttgccggaagttgtttgcattttattagttggatagggtttgtggatttttgctggctgacgggcaaataaagtttgtttaatggtttgcttatctgccagttgattaatcacatggcgggctatctgaccgccagcaccaagaatcagtacatttttcatgaaaattatcccagattattggcagcaatatgccagtccatatcactattgcggatttgaatatgtttcattacagagtttcctcaaagaacggagctaatactgaaattgcttcagccacataggctttgccgtcataaagatccatatggtttgcgccttcaacaatgtgatagcgtttatcctggcttgatgctcgatcgtacaggtcgtcactcatccatttgctccctgcctggctgcccgccacaatctgcgtcggctgagtcaggtacacttccgccatatggtaagcatcataggtaataatctggttaaggctgcgcaaagtagcgtaacccggtgctgttggatactgcgcgcgaggggtgtggtaatactcccaggcctgacgcagttcttcgttcggcgcatcggactccttcattggtgccagtggcataatggcgtattctccgctgctaatatcgctggttctggcgtttgaacccgcttcaacgtatggcagggcatcaatagatttcacattgttttcccaaccattacggaatatcgaaccaatattgaccgcactaacggtaccgatggccttgatgcggcgatcctgaattgcagcattggctgtatatcctgcaccggcacaaattcccatcgcaccaattcgggtattgtcgacataagaaagcgttgtcaggtaatcaatcacggcactgatgtcttcagtacgaatgtatgggttttctaactgacgcggctcgccgccactttcaccttgataagatgcgtcataagcaatagtgacaaatcccttttccgccagttttttggcataggttccggccgtttgttctttaacgcccccacctgggtgagataacacaattgcctgatactgacgggtttcatcaaattttggagggaaatagatcactgcagacaaagagatggttggattattgctgttagtgaagctgactttattattcatcattccgttcctcatggagttgtcggttcgttttaacggttggtgatatcactatagatattgatcattaagttgattagacccaaaatcatgattagacctatcatttaaatgattaatagattgcatggagatactgaatgaagcgtgaagaaatcgctgatctgatggcgtttgtcgtcgttgcagaggagcgtagcttcactcgtgcagcagcccgcctgagcatggcgcagtcagctttaagccagatagtgcgtcgtatagaagaacgattgggattgcggcttctgacgcgaaccacgcgcagcgttgttccaactgaagcgggcgagcatcttttgtctgttcttggccctatgttgcatgacatagattcagccatggcatccctgagcgatctgcagaaccgcccatccgggacaatacgtattactactgtagaacatgcagcaaaaacgatattgttaccagcaatgcgcacattcctgaaatcgcatcctgaaattgatattcagctcaccattgattatggtttgaccgatgtcgtttctgaacgttttgatgcaggcgtccgtctgggtggggagatggataaagatatgatcgccattcgaatcgggccagatataccaatggctattgttggctcaccggattatttttctcgccgaagtgttccaacgtcagtgtcacaattaatagatcatcaggcaattaatttgtatcttcccacatcgggtacagcaaatcgctggagattaatacgcggtggacgtgaagttcgtgttcgcatggaaggtcagcttttactgaatacgatagacctgatcattgatgctgcaattgatgggcatggattggcgtatctaccttatgatcaggttgagcgggctattaaagaaaaaaaactgatacgtgttttggataaattcacaccagatttacccggttatcacctgtactatccacaccgtcgacatgctggctcggcattctcattatttatagataggctgaagtataaaggtgctgtttagcactacttgctgatacattaatttaattcttctcttaacgtattctcagttcctttcaacgttttggtcattttttattcttcgtacaatggcgacagatgctgattatgataccgaaaacgggtttgaacgtgcgaagcccgaacgtagtgttcggagttctatgtgctttaccgcattttggagactattatttacactaaatctgatttgatatattgatacttaaaacatttgatgcttcctttgtcacttttttgatggaagttgtttgcatttctttaaggcgaaacaaataattacgcatcaattttaatgtcggttagagggaaacttatgaagcactctgtttcagtcacgtgttgtgcgctgttggtcagcagcatttctctttcgtatgctgcagaagttccgagcggcacagtactggcagagaagcaggagctggtgcgccacattaaagatgagcctgcgtcgctggatcccgctaaagccgtgggcctgccagagattcaggtcattcgcgatctgtttgaaggtctggtgaatcagaacgaaaaaggggagattgtccccggcgttgcgactcagtggaaaagtaatgacaaccgtatctggacttttaccctgcgcgataacgcaaaatgggcggatggcacaccggtaacggcgcaagattttgtctacagctggcaacgtctggtggacccaaaaacattgtcgccatttgcatggtttgccgcgctggcgggaatcaacaacgcacaggcgattattgatggtaaagctacgcctgaccagcttggcgtcaccgcagttgatgcccatactttgaaaattcagcttgataaaccgttgccgtggtttgtgaatttaaccgctaactttgccttcttcccggtgcaaaaagccaacgtagaaagcggtaaagagtggacgaaacccggaaatctgatcggcaatggcgcttatgttcttaaagagcgcgtagtcaatgaaaaactggtcgtggtaccgaatacccattattgggataacgccaaaacggtactgcaaaaagtgaccttcctgccaattaatcaggaatccgcagccactaagcgttacctcgcgggggatattgatatcaccgaatccttcccgaaaaatatgtatcagaagctgttgaaggatattccggggcaggtttatacgccgccgcagctcgggacctattattatgcgtttaacacgcaaaaagggccgacggcagatcagcgcgttcgtctggcattaagtatgacgatagatcgccgcctgatgaccgaaaaagtattagggacgggcgaaaagccagcgtggcattttacaccagatgttaccgcgggatttacgccggaaccttcgccgtttgaacaaatgagtcaggaagaactgaatgcgcaggcaaaaactttgttgagcgcagctggttatggtccgcaaaaaccgctgaagctgacgcttttgtataacacttcagaaaaccatcaaaaaattgcgattgctgtagcatcgatgtggaaaaagaaccttggcgtagatgttaaattgcaaaatcaggaatggaaaacctatatcgatagccgtaacaccggcaattttgatgttatccgcgcctcgtgggtgggggattataatgaaccctccactttcctgacattattaacgtcaacgcattcaggaaatatttcacgctttaacaatccggcatatgacaaagttctggcccaggcatcgacggaaaataccgttaaagcgcgtaatgccgattacaacgcggcagaaaaaatcctcatggagcaagcaccgattgcaccaatttatcaatataccaatggacgattaatcaagccgtggctgaaaggttatcccattaataatcctgaagatgtggcgtacagtcggactatgtatattgtgaagcattgatgtgatgggaactggcgttacccttgtgcataacgccagtgatgtctgatttagcgaccctgttccggcggtgtaatgttatccatatacagcgtctggctggggaaggcaaagtccgcgccgtgtgactgtacaatatcgataatcttcaaataaacgtcttgctgtgcagcaagccattcagcccataccgtggttttggtaaagcaataaaccataatattcaatgaagagtcagcaaactggttgaaataaaccagtaaggtttgtcgctggtcgatggccgggtgatttttcagcatctcacgtacagcttcgacaataacgcccacttttgccgcatcctcataacgtaaaccaatggtcgtggtaatgcggcggttggtcattcgtcctgggttttctacgctgatcgacgaaaacagcgagttcggtacgtacaatggacgattatcaaaggtcgtaattttggtaattcgccagccaatttccgctactgtaccttcgatatttctgtccggtgaacggatccagtcgccaatactgaaaggacggtcgaaatagagcataatcccggaaaagaagttactcagaatatctttaccggccataccgacagccagaccaccaataccaccaaaggtcagcaagccagaaaggctcatgccgaaatgttcgccataaagcagaacaagcaccacaataatggtgattttgatgatacgcgacataatccgcgcactggtgatatcgcgaccttttttaatctgctgtttttcaaactgattaatcagcagaaatagcttaatcgtcagaataaccgcaatcagggacgtacagataaaatcgataacgcctggggtgataaatttgagtttatagttttctataacataattaataatgctaccaacagcactgataattatggtgtagattaaaaattgcaccgcatggaataaaaatccttttcttttacgatttccacggcgaaaccaaaagctcatcagaatcaatgctgcgcagctaccgaaaataatgaccagattaagcgcattatttgtaaacagttcagcgatcattgttttatcaggctcctccagataattgtcgtcatgccggaaacccctggcggggctattttaccgcgacaattcattcagatcatcaatagtcagggaaggaagtagcaacattagctaaggaaggtgcgaacaagtccctgatatgagatcatgtttgtcatctggagccatagaacagggttcatcatgagtcatcaacttaccttcgccgacagtgaattcagcagtaagcgccgtcagaccagaaaagagattttcttgtcccgcatggagcagattctgccatggcaaaacatggtggaagtcatcgagccgttttaccccaaggctggtaatggccggcgaccttatccgctggaaaccatgctacgcattcactgcatgcagcattggtacaacctgagcgatggcgcgatggaagatgctctgtacgaaatcgcctccatgcgtctgtttgcccggttatccctggatagcgccttgccggaccgcaccaccatcatgaatttccgccacctgctggagcagcatcaactggcccgccaattgttcaagaccatcaatcgctggctggccgaagcaggcgtcatgatgactcaaggcaccttggtcgatgccaccatcattgaggcacccagctcgaccaagaacaaagagcagcaacgcgatccggagatgcatcagaccaagaaaggcaatcagtggcactttggcatgaaggcccacattggtgtcgatgccaagagtggcctgacccacagcctggtcaccaccgcggccaacgagcatgacctcaatcagctgggtaatctgctgcatggagaggagcaatttgtctcagccgatgccggctaccaaggggcgccacagcgcgaggagctggccgaggtggatgtggactggctgatcgccgagcgccccggcaaggtaagaaccttgaaacagcatccacgcaagaacaaaacggccatcaacatcgaatacatgaaagccagcatccgggccagggtggagcacccatttcgcatcatcaagcgacagttcggcttcgtgaaagccagatacaaggggttgctgaaaaacgataaccaactggcgatgttattcacgctggccaacctgtttcgggcggaccaaatgatacgtcagtgggagagatctcactaaaaactggggataacgccttaaatggcgaagaaacggtctaaataggctgattcaaggcatttacgggagaaaaaatcggctcaaacatgaagaaatgaaatgactgagtcagccgagaagaatttccccgcttattcgcaccttccctaactaatcaatgcgttgattgtaaatccagctaagaggtgaggttttcagagcagacaacggtgaaatgtcatggtattgttacgtttaggtaacaagaaatttgtctgcacaaggattacatcatgattatggcgaaactgaagtcagcgaaagggaagaaatttctctttggtttgttggcggttttcattattgcggcgtcggttgtgactcgcgcgaccatcggcggcgttatagaacagtacaatattccgctgtctgagtggacgacatcaatgtatgtgattcagtcatcgatgatttttgtttatagcctggtctttactgtgttgctggcaatcccgttgggaatttatttccttggcggcgaagagcagtaagtaaaaaataggcccgataactcgggccttgtcagttattgaagagtcgttaatcgtcttcttcgtcatccagttcaacgggtgtctgatactggtcaggtttaatgaccagcaggtcgcagcgaagatgatcaatcacctgttccgccgtgttgccgaggaatgctgctgaaataccggtgcgtcctaccgtgcccagaaccacaatccccgcctgtaagtgctccgccaaatcaggaatcacctcttctggcagacctttttctacgtgcgtcatgttttcattaatgccgaatttctgccgcagggctttcattgccagcaaatgttgcccacgaatggcatcgttataaacgctcgggtcaaattccggcagttcaatcgcgatattaattggcgttaccggataagcgccaaccagatgaacttcggtatggttgacttgttctgccagttcgatcgtctctttgaccagtttttcattgagcgcattatgatacggctcttcactggcgagattcaccgccaccagcgccttgcctccttccggccacggctggtctttcaccatccacaccgggcttgggcatttgcgtaacagatgccagtccgttggcgtaaaaatcaccgcttccagacggtcatgttggtgcgccatttttagcaccaaatcgtgtccgccgctgatcacttcctgaatgatggcttcgaaaggacggttatgccagaccactttaatttcaatgggaacgccagcattgagataatattttgcctgctcgtggatccaggctgtacgctggctgatgacgccctgacgcatagcggtacgttcgtccggggagagcagggtggtcatttcgtatgagaagtcatagatcggcaaaaaggctttaattttgccaccaatccgttgatgtaaataaacagctcgccgcaatgctggttggtcgtcctggttaggatcgataacaacgagcatgttctgatacatagccatacagggtctccttacaacaactgtcaacgcagtttgtaattaaaagattaacccatatctggtgaatgaaacagtgatgaaccttctgccagatcaataaatcagaaaaatttaatgatatgacagaaggatagtgagttatgcggaaaaatcaggcaacgttacgcgtatgaccagcaagctgggccagcgcatcgttattttcgatggtgatgtatttacctttgactgccagcatgccgcttttctggaagcgacccagcagacggctgatggtttctaccgtcaggcccagatagttaccgatatcgccacgagtcatcgtcaggcggaattcacgaggggagaagccgcgttgggcaaaacgacgggacaggttgtagatgaatgcagccagacgttcctcggcatttttcttcgacaacagcaggatcatgtcctgatcgcctttgatttcaccgctcatcagacgcatcatctgctgacgcagattcggcattttaccggacaaatcgtccagcgtttcgaacgggatttcacataccatcgaggtttccagcgcctgcgcgaagctcgggtgatggccgctgccgatggcgtcaaatcccaccaggtcgcctgctaaatggaaaccagtgatttgctcgtcgccttgctcagtgatggtataacttttaatcgtaccggagcggatggcataaagcgatttaagttcatcaccagccttaaacagcgtctggcctttctgaataggcttcttccgctcaatgatattatcaagctgatcaagctcatgttcgttgagtgtgaacgggatgcaaagctggctgatgctgcaatcctggcaatggatagcacaaccgccagactgaatgcgccgtataattcgcttttccgggatcataggtctgctcaagccgtaattgatatttgtcaattttaacatctttttagggagcaagtaagtctaagcaaaccttaacagcagagaattccgatattagatgtaaatatatgtctatctatttgaaaacccttaagttgttaagggtaactttacataaaagtgtgaacaagctggcacaaattgtttaatgtttacagcaaaagataaccttcatggcgcaataaccactcttttcgctgaactccgcctgcatatccggtcatggtgccgtttcggccaataacccgatggcaaggtacgacgatgctgatgggattcgatccgtttgccgcaccaacggcacgcgccgcgccaggacggcccaattgctcagccagttggccgtaatgcattacctgcccgcaggggatagtgcgtagtgttttccagacttcgcgctgaaatggcgtcccccccgtagcagtgggaagcgtatcaataatgctaagattaccggcaaaatattcacgaagcttgtcgcttaaaccgcctggattggtggcagaaatgcgctcatagccttctttgcgataatggatgtccagcagctgcaccatgcgttcgctgtactcttcccattcaaccgcccgcaggcgaaattgctcatcgcaaatcacccacagtggacccagtggcgtggcaattttttcttcaagtaatctcagcatccgttctctcttaagacaaacgtgggtaaatacccggacctatcggcagaccgacaagataccacgccagcaacatcagcagccataccaccaaaaagataagtggatagggcaagactaacgaatagtaagtacccagtttcgcgtctggtttgtagcgttgcaggaatccaagaaacagtggaacaaaaggagataccggcgctaaaggcaatacggatgagtcggcaatacgaaagaggatttgcgcaaatgccgggtgaaagccaagtagcataaacattggtacgaaaatgggggcgagaatcgaccagattgcggaaccgctggcaataaacatgcataagaaagaggaaagcaacgccagaccgacaaacgccgggatgccgctaagccctgaactttccagtatatcggtcagccccacggcgatgaatttccccatgttgctccagttaaacatggcgacaaattgggcgaggggaaaaaccatcacgataaatcccgccatctctttcatcggttcaatcattaaatgcggtaaatccgcctgacgtcgaattgtgcgggtagcgatgccataagccagcgagacaacaaagaaaaaaagaatgatcagtggcacgatacctttaataaagggtgatggcatcacggtgtgattaatcggatcgcgcaatatcccgttttgcgggatcaccatcagcgcaatcgcagcaataaaaagtagcgatacgacacctgctatgcgtaaaccaaaacgctgactttcggtcaatgtctgcagtttctcatcgctgtttccctgccattgacctaaccgtggctcgatgattttgtcggttatcaggccgccaacaatcgtcagtacgactacggagctggccataaaataccagttatcaattacactgacgtgcatttgcggattgaacgcagctgccgcttccgtgctgatccccgacagcaacacgtcggttgtgacaatcagtaaattagccgtaaagccgcaacctacgcctgcaatggcagccagtaaacctgcaactggatgcctgcccaccgccagaaaaatcagcgcacccatcggtggcatgatcactaacgccgcatcggaagaaatgtggctgaaaaaagcaataaacagcaccatataactggcgtagcgggcattaacatgcgatgccattttaaccattagtgctggcagtaagccgacgcgctccgccagaccggcacctaaaaccagcgccaggatcgcaccaagtggagcaaaaccgctaaagtttttaataacattgggtaaaaaccagtgtaatccttccacactgagcaggtttttcaccacgaccggcgtaccatcggtcgggtttttcgcactgacgccaaaggccgacaaaattgccgtcgtcaccatgagtacgataatcaaatagataaagagcagaaaaggatggggaaccttgttaccaattctttcgacccagccatagagcttcccggattgggaggacgacggtatggatgacatactcatgggcattcctcggttgttgtgtttgcgttgttgttgttattttaaaggtgacggtgtcacgtttttcgggatagggcagtgatacggttgcgtgtccgttacttgctgatgctcttgttggcattcttgcaatagccctgaatcaaggaagagattgactgtggttgctgccatagttttcgccgccagcagcattcctttatgagcaatagatgttcgcccctggctaaccagttgccacgtatgtagcggtgtaccgacggcaaaacaggggctgaaacactgggcaacaggcagtttccaactgacgtcgccgacatcagtcgatgccgcaagcacgttatcggtggcggcatatggagcgacttcattcgccagtaccgtttcacgatgacgtagtgcaaaaaccttgccgttttcgccaccggttgcggcgatattattcagactgttttgccgatcgttggaggtgagcgtagcctgaatttgtttcgcaaaagccagttcttcggagttccattccggggtaccaaaatgggatagggcctggtacatggcattttctaaggtgcgattcgggagataactggaacaggctttgtcgaagcggcattcaaccgtggtttcggtcatcaatgccgcaccttcggcgattttggcgacccgatcataaatatgctgcacgtcggtcatttcgggggcgcggataagataaagcacttctgcctgcgcctggaccacgttgggcgagatcccgccgctatttgtgatggcatagtgtacgcgcgctttttcaataatatgttcgttgaggaagttggtgccagtggtcatcaacgttacggcatcaagggcgctgcgtcccaaatgaggggaattcgcggcatgtgctgcgatccctttaaagcgccatgatgcctgaatgtttgccagcgtgcgggtattgaacataccggcaaaggcttccgggtgccaggtgagtgccgcatccacatcatcaaataccccctcgcgaaccatgaacgttttacccgagccgccttcttcgccaggacaaccataaaagcgcaccgtgccgccttgcccatattgttccagccatttcttgacggctattgcagcggcaaaggcggcggttcccagcaaattgtgtccgcaaccgtgaccattttcaccgggcgtcacggatgtaggttgcgcgcaacctgcttgctgacttaaacctgccagggcgtcatattctcccagcagggcgataaccggtttgccttgaccaaacgaagcaataaaggcatttgggatattgcctacgttgcgggtaacggtgaagcctgcagattccagcgccgaagccagatgctccgctgaccagaactcttcaaaacgtgtttctggatgatcccagatttgatcggcaatatcggtataacgttggcgatcggcttcaatcgcatcgtcgataaaacgatagatttcctgcatcagatacctcgcgtccagggaaaattgagcgcggtgcgcgccagcgtttcgacggcaatagcgagaacctgctcgtcaaaatcgaatttttcgttgtgatgacctgccgccagctgtgtgccaaacaccacgtaggaggcttgcccttgatgttgctgcacgcgggccatcattaatgtggcatcttcggaacccgcaggcgcttcaacacgttcaatggcctgattgacccccgcgacctgagccgcctgactttgcaaccatgcgacccattgcggcgaaggagaactggcggtagctgcacccatcagacgagtttcaacgccgacaccatacatggttgctgcgccctgaatcgcttgttgtgcacggtcaaaaacatattgattaatgacgtcgctggccccgcgtgtttccactttcagcaacgccgaggcaggaacaacgttacgaccgcttcctgcctgcataacgcccacgtttactctggaagctccttcgctgtgcggggcgattgcatgcagtgcaagagtggcttgtgctgccgccaacaaggcattgtgaccgtcttctggttttgcgcctgcgtgagcggcggtaccggtgaagtgcgcgtcaaatttggtggttgccataaaattatcactgccgcacaccacggtgcccgcaggtacgccagtgccaatgtgcacggcagtaaaataatcaacatcatctacgacacctgcatcgaccatcgcccgcgcgccacgcgtaccttcctctgcaggctgaaaaatcagtttgatgacgccatgtagtccggactcgaactgtttaagggtatgcgccagcccaagcccaatggcggtatgtccatcatgaccacaggcatgcatcattccggcgttacatgacgcaaaaccgtcgcggtaggggcgatggctgacatcctgctcttcactgagatccagcgcgtccatatcgacacggaaagccatcaccggaccggggcgaccggtatccagggtggcgacgataccagtgaaaccaccttcaaaagccgcaatccattgtgctagcgcaccctgttgacgagcgcgctcgaattcgcgttgtagagtgaattcatcaggtaatcccatccggctactttcattaactacttcgcgacccagcgccagtgaatagccgagctggtgcaattcttccgcaacaagggtggcagtgcggaattccacccagccagactctgcatagtgatgaaaatcacgtcgccagtgcgataattttggggcaagcgaattaacaaattgattcaaagactccataacctttcccgtcatcagtaaaaagtgtgacccggttcacgtagcgatagtttttacttatcactaactgatttttcacagttttaaccgttcataaattaccctgacacaatcatctgcattaaagtagatgccagtttctttggtctgataaataacggttatcggtggcgtcatggcttttcaggtaaaaattcatcaaattcgggcttttgttgaagtggctcgtcagggcagcattcgcggagcgagccgaatgttgaatatgtcgcaaccggcactgagtaaatctattcaggagctagaagaagggttagcggcgcaactcttttttcgccgtagtaaaggcgtgacgttaactgatgccggtgaaagtttttatcagcacgccagtctaattcttgaagagctgcgcgcagcccaagaggatattcgccaacgacaagggcaactggcagggcagattaatatcggcatgggggccagtatttcccgcagtctgatgccagctgtcatatctcgttttcatcagcagcatccgcaggtaaaagtacgcattatggaagggcaactggtgtcgatgattaatgaattgcgtcagggagaattggatttcaccatcaatacctattatcagggaccgtacgaccacgaatttacttttgagaaattactggaaaagcaattcgcgatcttttgccgcccgggacaccccgccattggtgcccgttcgatcaaacagttactggattacagctggacaatgccgacgccacacggcagctactacaaacagttgagtgaattgcttgacgatcaggcgcaaacgccacaggtcggtgtagtctgcgagacgttctcagcctgtatcagtctggtggcaaaaagcgattttctcagcaaactgcctgaagaaatgggctgcgatcccttgcacggacaggggctggtgatgttgccggttagcgaaattttaccgaaagcggcctattatttgattcagcggcgtgatagtcgccagacaccactgaccgcgtcattaatcacgcaattccggcgagaatgcggctatctgcaaagttaaaactgcataaaaaaatagagtctgtcgacatccgccagactctacagtacacacagcagtgcatccgcgtcttaaatccggcattgtctcctctgcgccggtgactgtgttataacggttttaacctttagttgccaattttcttcagtgacagatttcacgaaaatataagttacattattaatatcgtgaatgaataatcatgcataagtattttgcttaaaatatcggcaatatttggaacttattactggaaatttgggtaatacgttgttggaccgacccggtctggttatcatatcgcgctcttaattgcgggaggatgtaacatgaaccttgacgacaaatcgctgtttcttgacgccatggaagatgtccagccgctgaaacgtgctaccgatgtccactggcatccaacgcgtaaccaacgtgcgccgcagcgtatcgacacgctgcagcttgataatttcctcaccaccggatttctcgacatcatcccactaagtcagccgctggagtttcggcgggaagggttgcaacatggggtgctggataagctgcgcagtggtaaatatccgcaacaggcgagcctgaatcttttgcgccagccggtggaagagtgccgcaaaatggtgttcagttttattcaacaagccctggcggatggtttgcgtaacgtgctgattattcatggtaaagggcgggatgataaatcgcatgccaatattgtccgcagctatgtggcgcgctggctgaccgaatttgatgatgttcaggcatattgcaccgcgctaccgcatcatggcggcagcggggcgtgttacgtcgcactacgtaaaacggcgcaggcgaagcaagaaaactgggagcgccacgctaagcgcagtcgttgatctcgagacgcatccgcggcttatgccgccagcacgcggttgcgtccatcatttttcgcccgatacaaagcatcatcaacgcgtttaaacagttcatcgatgctttcatttccttcgtgatgcgccacaccaatgctgacggtaaagcgtggtaagcccgaaatactcacttttgccacgcttacgcggatagtttcagccagcgaaagcgcggtatccagtggggttcttggtagcaataagacaaactcttcgcctccccaacgaaacaccaaatcgcctttgcgagcgcaactttcgagggtgcgggcgagggcgcataacacctcatcacctttagaatgcccatagagatcgttaatgtgtttaaaacgatcggtgtcgatgagcaacaagctgtaatcctgagcgatggcgagatgctgcatttggcctggttccgtaatgtgataaaactgtcgccgattcagtaatccggtcatcgcgtcatggtgagcagcatgttccagctgctcctccagccgtttttgctcagtaatatcatgcacaatacataacatgagcttgtcgccataaatttcaatcggtccggcataggtctgcacatgacgagtcgaaccatccgccagtttatgaacaaaattcaaaggtttatgaccaccgggtaaatgcgagatttcatgcatgataggcatgacgcgacgcccgagcatatttatttcccaggtatgtttctggcacatcgtttcatggttataaccatagaaattgagcgcggcgaggttagcatcgacgatttgtccatctcgtgacgggtcaatcaacaacattggtgcagagttagtcagaaaaaagcgcgcataaaaaccttgttttttgcgctgataatttgccgagcgactggcttttaaacccagcgttgccggcgcttcgataccttcgaaaataatcaccggttctgtttctgtcagctttcgcaaaacaagccgacagctcaatgctgtttcctcttctttacgctgaacagtgaggatttcgataatatcgtgttggttttgcagatcggagaggtatttcggcagttctttttgtgaggagacggaatagggtccggttcgtagctgactaaacgtgaggtcttgcatcaacagtttcgccgcgctattggcataaattaactgttcctcaaagggcgaaacgatccagacaggactggtgagtaagtccagggtattgaagttgtgcgtaatcattgagatcccgttatttttatcaatttttgttgctatccgatcgcaaaaaagccacgtcatatgatcagataattctgataatgatagacgctatttaacacttcacacggtttgtatacggaaaagcattttgctttttgtattcaatttagacagaattttattaatcatttcagggtaatggggtgatgagatgttgcgtaacagggccagaaggctagactacaaaataatgcgttgatgatggaggcactgtggaagcgattaagggatcggacgttaatgtcccggatgcagtatttgcctggatgctggatggtagaggcggcgttaaaccgctggaaaatacagatgtgattgatgaagcgcatccctgttggctccaccttaattatgtacaccatgatagcgcccaatggctggcgacaacaccgctgcttcccaataacgtacgtgatgcgctggcgggcgagagcacgcgtccccgagtcagccgtctcggtgaaggcacgctgattacattgcgctgtataaacggcagcaccgatgaacgccccgatcaactggtcgccatgcgtgtatatatggacgggcggttaattgtttcgacccgacaacgcaaagtgctggcgctggacgatgtggtgagcgatctggaagagggcacgggtccgaccgattgcgggggatggctggtggatgtgtgcgatgcgttgaccgatcattccagtgaatttatcgagcagctgcacgataaaattatcgaccttgaagataatctccttgatcagcaaattccaccgcgtggattcctggctctgctgcgcaaacaattaattgtgatgcgtcgctatatggcaccgcaacgtgatgtttatgctcgtcttgccagtgaacgtttgccgtggatgagcgatgaccaacgccgtcggatgcaggatattgccgatcgccttgggcgcggccttgacgaaatcgacgcctgtatagcacggactggcgtgatggcggatgaaatcgctcaggtgatgcaggaaaatttagctcgtcgtacctatacaatgtcgttgatggcaatggtctttttacccagtacctttctgaccgggttatttggcgtcaaccttggtgggatccctggcggcgggtggcaattcggattttcaattttttgtattctgttagttgttcttattggtggtgttgctttatggttgcatcgtagtaaatggttgtaacaaaagcaatttttccggctgtctgtatacaaaaacgccgcaaagtttgagcgaagtcaataaactctctacccattcagggcaatatctctcttgcaggtgaatgcaacgtcaagcgatgggcgttgcgctccatattgtcttacttccttttttgaattactgcatagcacaattgattcgtacgacgccgactttgatgagtcggcttttttttgcctgttatttatcagcgtctaccctttaagagtccacccaatgaccagagggaaatatgacgacacttatttatttgcaaattcctgtccctgaaccgattcctggcgatcctgttccagtgcccgatccgatccctcgcccgcaacccatgcctgacccaccacccgatgaagaaccgattaaattgtcgcatcgtgagcgtagatctgcgaggatacgcgcctgctaactttgcgtcgatgaccacgagaatagattgtgaccgctttttctaccctgaatgttttgcctcccgcccaactcacgaaccttaatgagttgggttatttaaccatgacgccggtgcaggccgccgcgcttccggcgatccttgccggaaaagatgttcgcgtgcaggcgaaaaccggcagcggcaaaacggcggcttttggcctcggcttgttacagcaaattgatgcgtcgctatttcaaacccaggctttagtgctgtgtcctacgcgtgaactggcggatcaggtggcaggtgaattgcgtcggctggcgcgttttctgccaaataccaaaattttgacgttgtgcggtggtcaaccgttcggtatgcagcgtgattcgttgcaacatgcgccgcatattatcgtggcaacgccggggcgtttgctggatcacctgcaaaaaggcacggtatcactggatgcgttgaatacgctggtgatggatgaggccgaccgcatgctggatatgggatttagcgatgccattgatgatgtcatccgttttgcgcctgcatctcgacagacgcttctgttttcggcaacctggccggaagccatcgctgcaatcagcggacgagtgcaacgcgatcctttggcgattgaaattgactcaacagatgctttgccacccattgaacaacaattttatgagacatccagcaaaggcaaaattcctctgttgcaacggttattaagcttgcatcagccatcctcttgcgtggtgttttgcaataccaaaaaagattgccaggctgtctgcgacgcgctgaatgaagtagggcaaagtgcattgtcattacacggcgatttggagcaacgcgatcgcgatcagaccctggtacgttttgctaacggtagcgcccgtgtactggtcgcgactgatgttgctgcgcgtggtctggatattaaatcgcttgagctggtggtgaactttgagctggcgtgggaccctgaagttcatgtacatcgcatcggtcgtacagctcgtgcaggaaatagcggtctggcgatcagtttctgtgctccggaagaagcacagcgggccaatatcatttctgacatgttgcagataaaacttaactggcaaacgccgccagctaatagttccattgcgacgctggaagcagaaatggcaacgttgtgtatcgatggcgggaaaaaagccaaaatgcgcccgggtgatgtattaggtgcactgacaggagatatcgggcttgatggcgcagatattggcaaaatcgccgtgcatccggcgcatgtctatgtcgcggtccgtcaggctgttgctcataaagcatggaaacagttacagggcgggaagattaaaggaaaaacgtgccgggtgcggttattaaaataatgaaatgttgaattgccgggtgcaagagtaaacatcttattcgggattgccggatgcgacgctggccgcgtcttatccggcctccataagagtagcccgatacgcttgcgcatcgggcgctatcctggttatttcacttcaaccacattcagccgtaactcatccaactgattttcatcttcttctggctgccagcacgccggttgtagtgggatctcttcgcgatcaaacgccagatcacccccgttaaccacttcagaaccgtgggtgatgcctttgaaatcgaacaggttggtatcgcacagatgcgacggcaccacattctgcatcgcgctgaacatcgtctcgatacgccctggataacgtttatcccagtcacgcaacatgtcagcaatcacctgacgttgcaggttaggctgtgaaccgcacaggttgcacggaataatcgggaacgcttttgcatcggcaaatcgctgaatatctttctcgcggcagtaggccagcggacgaataacgatatgtttgccatcatcgctcatcagtttcggaggcatacctttcatcttaccgccgtagaacatatttaagaacaacgtttgcaggatatcgtcacgatggtgacccaacgcgatcttcgtcgcccccagttccgttgcggtacgataaaggataccgcgacgaaggcgagaacacagtgagcaagtggttttgccctctggaatcttctctttcacgataccgtaagtattctcttcaacaatcttgtactcaacgcccagcttttcaagatactcgggcagaacgtgttccgggaagcccggttgcttttgatcgaggttaacagccaccagcgaaaaattgattggcgcgctttgctgcaaattgcgcagaatctccagcatggtatagctgtctttacccccggagaggcaaaccatgatgcgatcgccttcttcaatcatattgaagtcagcaatggcttcgcccacgttacgacgcagacgtttttgtaatttgttcaggttgtattgttctttctttgtaatttgttgattttcttgcattatttcagttctctggtactaaatggggcaaattgggggcaaactttgcaactacgataaccgcgcattcaacatggctatctgttcgtcgttcatgtcatcaatccacataccgtaaatttcatacaccatctgcgcagtttcatgccccatttggctggctataaatgccgggttcgctcctgccgtcaacagccagcaggcaaaagtatgccgcgtatggtacggattacggcggcgaataccagcacgttttactgctgcattccaccttgcccccaaactgcttaccgagtaataaggtttttgttttccgttacacaccctgggcatgaaaacaaaatgcagtttttgcttttcggttctgccgtactcccgatgataaaaggtgatttcgcttttgcgatgatgcccggtcagtttgtattgctccttcagtgcttcaagagcaggctgcagtagtgttactgttcggatcccggcatttgtttttgggggaccgaacatatcaagtatcgtcaggtttcttctgacattcactattcccttttcgagatccacatcctcccacgccagagctgccagttccccgtgacgaagtcctgagtaaacggcaaatttccacaagttctggctctgtcctttttcactttccattaatgcattgaattctgttttagataacggatcaggctttattctgtttcgctgtaatttttttactccttcaaatggtttggttgatataaatcccgactgatacgcaaaacgcaacagcgaacagagcagggcgatatagttatcaactgtgcgcacggttcttccttttttgttggatcttggattatccaggtaaagcgtttctccatgcagcagttcattccggtagtttaagatatcgctataacgaatatgtgatatcggggtactttcacaaattattattctgagtgtttttaattgtgatttcgttttcttcattgtgtttgttgttaactctgtctctttaatttttgtccagatatcacaaagctctccgaacgtttttatgactctcgttgtcaccatttttgccccagtgctggactggggaaaacgtcttaaatactcaaattcaccggagtttatttcatgaactatcagcgctcttaaatttccggcctttttaatattactgtttgtaatctcccagccttttaatgtttcccgacatcgttttcctcgaaacatgaaccagatgcgaatgtatctacctctaatctcgacacctgttggtaatttagacatatcatgagtctttgataaactgatttatctttggatagttgtaccagataatccctcgtttgctgtctggcttacctaaaggagatactcgtttgaagtggaagccctccacccaacagttctggcggtatgcttcaatttgtctggcccccagaccagtgcgaagcatcaggccgtattcaaccatccactcttcattaaagattacttgtgccatcgcatcacctctggcaggcgccaatgttagactgaaattgacgcccgatgttgattattaataatcagctatgaagttttaatttgaatacaatgcaattctcgaggactgaagtttctcgcaattaaaatttatcagttttactttctgctctctggaaacgcctgcttcttttttacctgagagcattttttcgcattctgatttcgttagtttagattttgaatatcttgtccagttagtaggagtgccaccttccttttcaatagtggcggtaattttatacatgaacacctccattattatttccagtggttcgtttattccatctttcgagtgcttctttttcacttccaccataaccggttcgggattcgcatccgttacacttcgctcggtaatatcctgaaatggctttcaccgttactgatggacaaccacaaaatggacatggtttaacattgtcatatctcataatttttctcataaaaaatatttcaagttggcggtgcattacaccgccaggctgaattattcctctgaattatcgattacactgtattccccggttaatacagaggaatctgcaggatcgattgtcagtggttccttttcatccattgatactgcacgctggatctcaattgatacgggcaaatatttgaacaggcgacgaatagccgttttctttgccatttcttcccagtgagttacccacggcccgttattaccagctttactcaggctgcgcaccagctcaatctgtttgcgcgtcataacttcaaactgagtacctccgtctttcagtcttgcgacagcatagacgtgggtaaccggggcatcttcgttttctcccgggcggtgtattaacttttcatcaaggccaaattcgaagctaaactcgtcaccttcacggacaacacgggctgacaggctggcgatttgaccagaacggcgagccagatcaatcatgccgcgatagccaatgattagctgaacgttctttttaccgctcttttcgtttttattaccaaaaggcagtaaatatgcatgaccgagggcgctacctggctcaagtccgagctgtgaacactgtacgatcgcactgacaaaactcatagtgtcacagtttcctaacgccggaactttacgaatttctgtggtggcgatacggatcatacgttcagccgtcatatggcgtggaagagctgctgccagttgctctttcattgatggctggttaataaaactaatcacgtcgctatttttaactgctgctggtgcacggtttccctgagttttttgcagatcggcttttgcgattggtggttgcttagtcatttgcatattccttagcccagcggggcagtgataatgtcttaatagctggccattcatcggtattcaggcagtcagacagggttcgcagattgcggtgatattcctgttgacctgccagttttgcttcttcgcccatcatgaaaatttcaaccggataacgtccgcattcaatagttgtgctggcaaccagaaaaacgaaagttggctgcactccaaactgtgcttcataaccgtcactgtagaatgcatcctgaacgtgatagcggtagtcgtaataagcggttttgaatcgttgaatatccgccgtagttttcacgtccatgatccagtgaaattcagggataattttgtccggacggcaccgacacaaaattcctgtttcaggatcttcccagtaaattgatgattcagcgtgtccggcgctttcaacaagccattgccccagcggcaaagccataacgctttgatacatgagttcaattttccggccttcttccgcagtgataaccgtttttcctgtgcttgcgcattccatcagaaacgctttctcttcttcttttccggcgtttgtacggcggttaaattcaggtgctacgataaagcggttactgaattcttccggttcaagtacccggcagtggaaagcagttcctaaatcgagcgtttttgtctttgtggtgtccacgggggcatttttacgccacaaatatagtgccggagtatcagcaatgtcatcgagctgagacttactgataccgggacccgcgtggtaattctcattcgaaattccgtaataaatacctggctctatgtcttctacgattacgggatctgcgacttcgccagtttcatcactgcaatcgcgatgcggatcgctgccagcattctcattgtgcggatgttcagcgccttccatttcctccggatcattttccttagcttcaacctgactctcttcatcgaatgtttcctggtatgttgcgtcgcccatcaccgcaccacagtcagggcagttatccccgccagtctggccgcaggcattgcaggctatttccggttcctgttgcactactggctcaggttgattcatatctgggctggttttttccgtttctggctggttctggtacacacaatcgcgagtctggatcccctttacccatttcggatcgttcgggtcgctaattccgtcaacaaattcaccacgtgatgcagcaagcaatttatcgtcatcgacaggattttttgatggaatgtttttccgggcttcatggagttctgcccgcagttcctgatatttcgcatcaacagaatttacctgtgactgagcatccagcggctgcgtgtcctgatgatgttcagttgcgtccggttccattgtttcagcctctccctgttcaactgccgttgttccagatggttgcggtttttcttcatcatcctgttttccttcttctgttactcgctgcggcatcggggcagaggagcgaccgcaggcaatatccacgatttccggatcagggttggcatgatcggtttcagtcagtactttgttcagatattcagtgacgtgcgcggggatgacctcgatcccaattggtgcttcttttacggacgcaaccacgatggcgcgggaataatccagcccgccaggcatggtgatgaatttgtcgcggaaaacagaaaagggcggtttattttcagcgataatttcctcaatgcgtttagcgtgtgccggatgaaggttatagatgtccagatccattgaacgggccagtacgccagtggctacgtcgcgcgccagtgacgtcagatcgtgtacgaaaccttcgccgcgatcggtgaggtttccgccgccagcattagcaccggaagccgtgcgagtgatgtgtgaaacacgattacccttcatccactcttttgtcagcagtcctcgatcggtgtagtcagcgttcaggtatgcttcgaaaaaagcagttatcagtcccaggtttgaattaccaggattagggaaaactttgtcagtgtcacgaaccagtttgtggagttcgcgaatttccagcgggtcgagcaggctggttttgtgggaaacagccagggcagtaacagccggtagttcttcagcccgagcaatgtgtaatgcctggagtccgtcgcgtgaaacgtgcgttaccggtttttcgctgccgtgttgagcaagccaacgaatgggcagttcctggccagaaattgggagtagcatattctcctcaatctcagtcatgtcttcgccgttgacgttggtattgccttgatagtgagcgttgtctggtgctgctcccggttttagttcccatgtcatggagtctttgctgagttgatagcgttcactccaggtaaaatcgatctcaccttcagcgggcaggtcattaacgacaggaaaattcgtggcaacagctttaaaatagctgctcagttttttacctgacttaacgatcaggtagtccagagtggcacaggtcgattcaaaatcgttgcttgcccacaggacgacgtcaggttcaccggatgattttttcgctttccgtaacaggaagagtggttttgtgctcattgttttttaacctcaactcagattaaaattcgttttgttcagtgaatgatcttgccggatacacactgttcatagcctgcgccatacgcaggctatttctttcagatttcaccttttaatttcattgcaattagagttgccagaaattcggcttttttttctgcgggcagattctttccgatatgcaccaggcacatttttttgacaccttcatcaagtgtttttacgttgcctgatggaccatcgatatcaaccacagtgaatggggtttctttattttctgttttaattacgtagccaatgcgctttccttccagattcacctcgtgaacaatgtcatcggtagttacaacagtggcttcataattggtaatcatgtttttctccttaattaaggttgagcgaatacctgccatttctggcataaattcagtttcgaatagtcaattaattaaagttcatgtgccatctggtctttttcggcacaagcttcactgcaatattttctcggttcgtcttttgataaaatcccgtgcatgaagtgaagcattctttcaatagctttgctttcttcaacgtcttttttgcaaaggtggtaagcacattttattttcttagtcatcaccatgactccgcctttacaggtaaaccatcacgaccgaggaagactttaatcatgcggtcagtaatgaatgtttttgtggtcaggttacgaatatatagttttcgctttttaatattgtttgccgaggcaatatatgtccggccttcatgaagaacataatcgccaggagtcacacactgacgtggtatttcatcagttccgaagtgatgtgcaatcataattatctccatttttacaaatgaactttgttgatgcggtgtctggtgcctccaggtgactgcaaccagttaacaattacagtcggctttcccacccaaaccaataaggactaacatgacttttaactgtgccacgtgcgcttagccgcattcaccgcatcacaaaattcactttaaaaagggcggacatcagccgaacttcaagaaaaaaactgatgccgccaggactacacacagcaatgtcgttatttacaaccggaggcgcactcccaccatttaaatttaacagacaagaccgactctttatggatatcggaaatgcgccttcgtgttgtgcccggttttatttcaccacctccgggcttcggtggtctcggctatacccctacagcgagagcttgtgttaacatttcaatacccttacagttgagagttattgatatgttggatgtatttactccattgttgaaactttttgctaacgagccactcgaaagacttatgtatacgattatcatttttggtctcactctctggctgataccgaaagagtttactgtcgcattcaatgcttatactgaaataccttggctctttcagattatcgtttttgccttttctttcgtggtcgccatttccttctcaagattgcgagcacatattcaaaagcattattcattactaccagagcaacgagtattgcttcgtttatctgagaaagaaatcgctgtatttaaagatttccttaaaacaggaaatcttattatcacttctccttgccgtaacccggttatgaaaaaattagaacggaagggcatcattcaacatcagagtgatagcgcaaactgttcttattatctcgtcaccgaaaaatactcccattttatgaagttattctggaacagcaggagtagacgttttaatcgttagcttactgtgtgcttctccaaccatcggcgcgcaccagtttcggttttaaatgttttgcttttggtatacgtcatggcagtgaacgttccatcctggttggggaacacgccgcacaccagggattcgttgttgccgaggtcgattttttgcattttgcgaatctcacatcttgttgctacgtatagcgacttctgcctgccagagatcccagtcgttgctgcgtaaagcctgcacagcctggttgtaagtgataccgcaacaatccatcaaatactgaactacttcgtaatgcaccatcttatctctccccttaacgccgggtggcggaactaactgctgcactgcaaaatttgaatcccgccgtcatgttcatacgcctcgggctggctacttaaccccttaccactgcctggtaactcgaagtattgcccggcgttctgtggggcggggtgggtggtatgctggaactataggtaatgcctaattgattgtcaataggctatgcctaatgttttgagcgtaacctaataggtgatggcgacagcagaaagtgatgggggggttaaataacggaatccaggagttttccgtcagaccatataagtttaagttccagtttttgtgatgttctggcttttccgttcagattcaagagctttcagatacttacccactttcatttccatcgctgctatgtaggcgcgaacatcgtggtcaacccaatctggttctgtagcatttccagataacaggaaagctacaatcgctcttatttcatcagaggctgcttgataaaggttgtttatatctaaaagttcactttttgtatctgaattggtgggggttggtatggggtattcgttaagcccccaatgctctggaccaacaacatcagaaaagaaacgccataattctggaagtttatctttacttatagagcctttcttaatccagtcataaattgatggtggttggactttaaagtggcgtgcgacctccgcctttgatttgacggatcccgatgcgatttttttgttaatggcctgctctatcgctcggcctaagtctttaccactaagcattgcttaatattctcctatgcgcattacattaggcaatccctacccttactgcattaggcacagcctattgacaattgcgttaggcgtcgcctaatatttctgtgtgtttttggagttcattcgatgaaaaaagagaactattcattcaagcaagcttgtgctgttgtcggtgggcaatcagcaatggctaggcttttaggtgtatcacctccaagcgtaaatcaatggatcaaaggggtacgtcaattgcctgccgagagatgtccagcaattgaacgtgcaacaagaggtgaggttctgtgcgaagaacttcgtcctgatattgactggtcatatttacgacgttcggcatgttgttcgcagaatatgtcagtgaagcaactaaatgacagtaacaaatcctcatttgatcatacctgaaacatcaagaggcaaatgattcatgaaaatcaagcatgagcacatcgaatcagtgttgtttgccctagcagccgaaaaagggcaggcatgggtagccaatgcaattactgaagaatatctgcgccaggggggcggcgaattgcccctggttccaggcaaggactggaacaatcagcagaatatctatcaccgttggttgaaaggtgaaacgaaaacgcaaagagaaaaaattcagaagctgatcccagcaattctggcaatccttccgcgcgagctgcgtcaccgactctgcatcttcgataccctggaacgccgtgcattactggcggcgcaggaagcgttaagtacggcaattgatgcgcatgatgatgcagtccaagccgtttaccggaaagcgcatttcagcggcggcggttcttccgacgattctgtcattgttcattaagcaaaagtttccatgctgtttgtgcttattctaagccaccgggcagcatcatacggggcaattatggccgcattaccatacatgcaactgtacatagctgattacctggctgacaccatgcatttgtcagcagaggagcatggtgcgtatttgttgctgatgttcaattactggcaaacaggaaagccaatacctaaaaacaggctggcaaaaattgcccgtctgactaacgagcgatgggctgatgttgaaccatccttgcaggagtttttttgcgataacggcgaggaatgggtgcatcttcggattgaggaagatctggcatcagtcagggaaaaattaaccaaaaaatcagccgcaggaaaagcatctgttcaggccagaagaagcagaaaggaagcagatgttcaaacaaaacaagagagaaatttaacaggtgttcaaacagatgttgaagtggtgtttgaacatgatgtcaacacaaaggcaactaataaagatacagataaagatctaaaaacagatccccccctaaatcccccccgggggaatcgaggtgtcaaaaagtttgaccctctggatattactttgccgaactggatttctgtctcgctttggcgtgagtgggttgaatttcgccaggcattgcgaaaaccgattcgaacggagcagggcgctaacggggcgatacgggagctggaaaaattccgccagcagggtttttcacctgagcaggtgattcgacacagcatcgccaatgaataccagggcttgttcgcgccgaaaggtgttcgacctgagacgttactccgacaggttaacaccgtctcgttaccggatagtgcgatcccgccaggcttcagggggtaactgaccatgaaaaatattgcgacaggcgatgttcttgaacgtatccgcagactggccccgtcacatgtaaccgcgccattcaagacggtagcggagtggcgcgagtggcaactttccgaaggccagaaacgttgtgaggagatcaaccgtcagaatcgtcagttgcgggtggaaaaaattctgaatcgctctggcatccagccattgcaccgcaaatgctcgttttcgaattaccaggtgcagaacgaagggcagcgatacgcgttgagtcaggcgaaatccatcgctgatgaactgatgaccgggtgtacaaattttgcgttcagcggaaaacctggtaccgggaagaaccacttagcggcagctatcgggaatcgcctgctgaaagacggtcagacagtgattgtggttaccgtggctgatgttatgagtgccctgcacgccagctatgacgatgggcagtcaggcgaaaaatttttgcgggaactgtgcgaagtggatctgctggttcttgatgaaattggcattcagcgcgagacgaaaaacgagcaggtggtactgcaccagattgttgatcgccggacagcgtcgatgcgcagcgtggggatgctgacaaacctgaactatgaggccatgaaaacattgctcggcgagcggattatggatcgcatgaccatgaacggcgggcgatgggtgaattttaactgggagagctggcgtccgaatgtcgtccagccaggaattgcgaagtaatttttaccgggagaaaaatttaatggagactgtttttgacgcactgaaagcaatgggaaaagccacatccatagaacttgctgcgcgacttgatatcagtcgtgaagaagtgctgaacgaactatgggaactgaaaaaggctggttttgttgataaaagcgcgtacacctggcgtgtggctgataacaatgttcagcaggaacagccagcgcaggcagaactgccggaagaaatcaccacagcaacagtagcgaaaatctcagagtgcgatttaaccgcgacgattgaacaacgaggaccacaaacggctgatgagctggctacattgtttggtaccacatcacgcaaagtggcttcaacgctggcaatggcaatcagcaaaggtcgtctgattcgcgtaaatcagggcggtaaatttcgttactgcataccgggcgataatttaccagcagagccgaaagcagcatcggtatctccgctctggttatctgcatcgtcgtctgcctgtcatggggtgttaatcattaccgtgataacgccatcgcctacaaagaacagcgcgacaaaaatgccagagaactgaagctggcgaacgcggcaattactgagatgcagatgcgtcagcgtgatgttgctgcgctcgatgcaaaatacacgaaggagttagctgatgcgaaagctgaaaatgatgctctgcgtgatgatgttgccgctggtcgtcgtcggttgcacatcaaagcagtctgtcagtcagtgcgtgaagccaccaccgcctccggcgtggataatgcagcctccccccgactggcagacaccgctgaacgggattatttcaccctccgggaacgactggtaatgatgcaggcccaacttgaaggtgctcagcaatacataaccgagcagtgtttaaagtaaaatcttaactacaatatgattcattttgatgattgtttcataaggaacagtgaagtaagatctaagaggagttaaattttatacagtataatcataatattgcagcaaggtggttataattgaaagaatatttagatatgaatacatctcatgtaagagttgttactcatatgtgtgggttcctggtttggctctatagtctttcaatgttgccaccaatggttgtagcattgttttataaagaaaaaagcctgtttgttttctttataactttcgttatatttttttgcattggtggcggagcgtggtatacaactaagaaatctggcattcaattacgtacccgtgatgggtttattataattgtaatgttttggattttgttttctgttattagtgcattccctttatggattgactcagaacttaatttaacgttcattgatgctctgtttgaaggggtttctggaataacaacaacaggagcaactgtaattgatgatgttagttcattacctcgggcatatttgtactatcggtcacagttaaattttataggtggtttaggagttattgttctggcggttgctgtattgccattattgggtattggtggtgcaaagctttatcagtcagaaatgccggggccatttaaggatgacaaactcactccccgcctggccgatacgtcacggacactgtggataacttattctttattaggtattgcttgtattgtctgttatagacttgcaggaatgcctttgtttgatgctatttgtcacgggatttccacagtttcgcttggtggtttctcaactcatagcgagagtatcggatattttaataactatttggttgagctggtggctggttctttttccctgctatcggctttcaacttcactctttggtatattgttattagcaggaaaacgataaaacctttaatcagagatattgaacttcgtttctttctgttaatagccttaggggtgatcattgttacctctttccaggtctggcatataggtatgtatgacttgcatggaagttttattcattcgttttttcttgccagctccatgctcactgataatggtttagctacgcaggattatgcaagttggcccacgcacacgatagtgtttttgctgttgtcaagtttctttgggggatgtataggttcaacttgtggtggaattaagtcacttcgatttcttatacttttcaaacaaagcaaacacgagataaatcagctttctcatcccagagcgttgttgagtgtaaatgtaggagggaagatagttacagatcgtgtaatgaggtctgtatggagtttcttttttctttatactctcttcacggtgttttttatactggtgttaaatggtatgggatatgattttcttacatcatttgcaacagtggctgcatgtattaataatatgggattaggttttggggctactgcatcgtcattcggagtgcttaatgacattgcaaaatgcttaatgtgcatagctatgattcttggtcgccttgaaatttatcctgttattatattgttttcaggttttttttggcgctcctaatatatggctgatttataattgtgagtttaatattatgttgactcactcattgatccaatacctaactttaccagcaacacctccgtccccagtagcactggctgctggggtgcgttttattcataaagcaaggctgtatgagcgagaaattaaagatagtctatcgcccattacaagaattgtcaccgtatgcgcacaacgccaggacgcacagtactgagcaggtggcacaactggtagaaagtattaagcaattcggctggactaatccggtgctgattgacgaaaagggcgaaattattgcgggtcacggtcgtgttatggcggctgaaatgctcaaaatggattctgttccggtcattgttctgtctggcctgacggatgagcagaagcagcgataacgatcagtatcgctcccgtaatgcattaatccgtcgccacattgagaaaatggatgccagtttgcacgtcggaacgaaggagtttgatatttcaaaggtttccgaggtggattctgttgatgatttactcattgataatgccgctcgttatctgctgaaagactggaaaggggttggtgaactggttaatggtgttgaggttgcactggaatatacggcagaacgagggatcgcgctgcttaagcagaatccagagttgtactggcagatccttgcagaagcagccagcatcgcccagggtaaagagcagcagaagcaggatacgataaaaaagccatagctgcccagcggtggttatcggagttcgggggagaaaggggggaaaaggcaagatggaagcgagaaaaactcaggttgccaccgataccggaaccagaaatagacccggtgcttaaggagttgttgtacgcctattcggtaatatcccgtgcccgacgttatgctggaatggctggggtgcctttgcctttatctctgacagagataaatgaatatttagccactcatccggtattgattgagcgcgatgaatttgaagcagtgatctttgcactggatgaccagtattttcaggagcagtgtgtgtagttgttaattacgtacactctgttacagagatgtgatggtgtctttaattaaatcgatgatgctcctggagaaaagcattgcgtggcctcgtaatcgctatatctactattatgtcgcctgaaacccacttcgcggtgggttttttgttgtcaggagttttaataaatggcagagcaaacctcgcgtctcgcaataattattgatagcactggagcgaaaaataatgctgacaatctgacctcctcattagtcaaaatgacgcaggctggggaaactgctgcaaatagcgcagggaaagtgactaaggcaacagaagatgagaagaacgcgctcgcaaaattaaaagcagctattgatccagttggtgccgcaattgatactgtcggtcgacgctattctgaattaaagaaatttttcgataaagggcttattgataaagaagaatatgaatttcttgtccgtaaacttaatgaaaccacagaggaattgagcggggttgcgcaagcgcagagagaagccgagaaggccggaaaacttgctgccgctcagcaggaagcgcaggctcaggcctttcaaagaatgctggacaagatcgaccctctggctgcggcgctaagaaatcttgaacaacagcatgatgaacttaatgctgcgtttgcatccgggaaaataaatggttctcagtttgagaattatagccgaaaaatacaggaaacacggcgagagcttaccggagaggctcaggcagagcgagaagcagcaaaagcgcatgatgaacaggttgttgctttgcaacgtctgattgctcaacttgatcctgtcggaactgcttttaatcgtctggtagaacaacagaaacagctcaatgaagcaaaagctaaggggatgctttctcctgaaatgtatgaggagctttctggaaaacttcgtgctatgcggagtgagcttgaggttactcaatcacaattaagcaaaaccggaatgtcggcaaaacaaacggcttttgctatgcgcatgttgcctgcacaaatgacggatattgttgttgggttgtccactggtcagtcgccatttatggtgttaatgcagcagggcggccattcagctatgcaggagacaagaatcgccagcttacccgttacagcgatacccgctggcatgaagattccgtgcgtaaccgctggttcagcgtgatggtggggccgtctgtgcgcgtgaatgaatggttcagcgcgtatgcgatggcgggtatggcttacagccgtgtgtcgactttctccggggattatctccgcgtaactgacaacaagggaaggtgcgaataagcaggtcatttcttcccaagctgactcgctgattaaaatttcgcggatctgggccgatttttttcccgcaaacacatcgaatcagcctatttaggctattttttccaccatttctggcgttatttccggtttttactgagatctctcccactgacgtatcatttggtccacccgaaacaggttggccagggtgaataacatcgccagttggttatcgtttttcagcagccccttgtatctggctttcacgaagccgaactgccgcttgatgatgcgaaacgggtgctccaccctggcacggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgcggattctgcttcaaggtttttaccttgccgggacgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgctccttggtagccggcatcggctgagacaaattgctcctctccatgaagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtagagctgggtgcctcaatgatggtggcatccaccaaagtgccttgggtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattgacgggccagttgatgctgctcgagcaggtggcggaaattcatgatggtggtgcgatccggcagggcgctatccagggataatcgggcaaacaggcgcatggaggcgatttcgtacagggcatcttccatggcaccgtcgctcaggttgtaccaatgctgcatgcagtgaatacgcagcatggtctccagcggatagggccgtcggccattgcccgccttgggataaaacggctcgatgacagcggtcatattctgccatggcagaatctgctccatgcgggagaggaaaatctcttttcgggtctgacggcgcttagtgctgaattcactatcggcgaaggtgagttgatggctcatgatgtccctctgggatgcgctccggatgaatatgatgatctcatatcaggaacttgttcgcaccttcccaaggggaaaacgcacgacgtgctgaccggaagtgatgacggtcgccacagcaacacgtctctggcgtggggagctggcgtgcagtttaacccgaccgaatccgtggccattgatattgcttatgaaggccccggcagtggcgactggcgcactgacggtttcatcgtgggtgtcggttataagttctgattagccaggtaacacagtgttatgacagcccgccggttcaggcgggcttttttgtggggtgaatatggcagtaaagatttcaggtgtactgaaagacggcacaggaaaaccggtacagaactgcacaatccagctgaaagcaaaacgtaacagcaccacggtggtggtgaacacgctggcctcagaaaatccggatgaagccgggcgttacagcatggacgttgagtacggtcagtacagcgttattctgttggtggaaggattcccgccgtcacatgccgggaccattaccgtgtatgaagattctcaacccggtacgctgaatgattttctcggtgccatgacggaggatgatgcccgtccggaggcactgcgccgttttgaactgatggtggaagaggtggcgcgtaacgcgtccgcggtggcacagaacacggcagccgcgaagaagtcagccagtgatgccagcacatcagcccgtgaggcggcaacccatgcggctgatgctgcggactcagcacgcgcagccagcacgtcagccggacaggccgcgtcgtcggctcagtcagcgtcttccagcgcaggaacggcatcaacaaaggccactgaagcatcaaaaagtgctgccgctgcagagtcctcaaaaagcgcggcggccaccagtgccggtgcggcgaaaacgtcagaaacgaatgcttcagcgtcactacaatcagcagccacatctgcatccaccgcgaccacgaaggcatcagaagctgcgacctcggcccgggatgcggcggcctcaaaagaagcggcaaaatcatcagaaacgaacgcatcatcaagcgccagtagtgcagcttcctcggcaacggcggcaggaaattccgcgaaggcggcaaaaacgtccgagacgaacgccaggtcttctgaaacggcagcgggacagagcgcctcggctgcggcaggctcaaaaacagcggctgcgtcgtctgccagtgcagcgtcaacaagtgccgggcaggcctcagccagtgccaccgccgccggaaaatcggcagaaagcgccgcatcgtctgcttcaacagccacaacgaaggctggcgaagccactgaacaggccagcgcagcagcgaggtctgcttccgcagcgaagacatccgaaacgaacgcgaaagcgtcggaaacaagcgcagaatcctcaaaaacggctgccgcatcgtcagccagttcggcggcgtcatcggcatcatcggcgtctgcttcaaaagatgaggcgaccagacaagcgtcagcagcgaagagcagcgccacgacggcatccacgaaggcgacagaggctgctggcagtgcgacggcggcagctcagagcaaaagtacggcggaatccgcggcaacgcgcgccgagacagcagctaaacgggcagaggatattgcatccgccgtggcgcttgaggatgcaagtacgacgaaaaaggggatagtacagctcagcagtgcgaccaacagtacgtctgaaacgctggcggcaacgccaaaggcagtaaaatcagcctatgacaatgcagagaaacgtctgcagaaagaccagaacggcgctgatatacccgataagggatgcttcctgaacaacattaacgcggtcagtaaaacagactttgctgataagcgtggtatgcgttatgtgcgggttaacgctcctgcaggtgcaacatctggaaaatattaccctgttgttgttatgcgttctgctggctcagtaagcgaactggcatcaagagtcattatcaccacggcaacgcgaaccgcaggcgatccgatgaataactgcgagtttaacggatttgttatgcctggtggctggactgacagggggcgttatgcttatggcatgttctggcaatatcaaaacaatgaacgagccattcactcaataatgatgagtaataagggcgatgatttgcgctctgtgttctatgttgatggcgctgctttccctgtttttgcgtttattgaagatggcctgtcaatatccgcacctggtgctgatctcgttgttaatgatacgacctataagtttggggcaacaaatccggcgactgaatgtatcgcggcggacgttatccttgattttaagagtgggcgtggtttttatgagtctcattcgttaatcgttaacgataacttgtcgtgcaaaaaactttttgccacagacgaaattgtagcgcgtggtggtaatcagattcgaatgataggtggggagtatggtgcattatggcgtaatgatggcgctaaaacttacctgctgcttaccaatcaaggtgatgtttatggtggctggaatacattaagaccgtttgctattgataacgcaaccggcgaactggttattggaaccaaactgtccgcaagtctgaacggtaatgcattaacagcaacaaagctgcaaacgccaagacgggtttctggtgttgagtttgatggttccaaagatattactttaaccgccgcgcatgtggctgcttttgccagaagggcaacggatacatatgccgatgcggatggtggcgttccatggaatgccgaatctggcgcttacaatgtcacccgctctggcgacagctatattctggttaacttctataccggagtcggaagttgccggaccctgcagatgaaggcgcattacagaaatggtggtctgttctaccgttcttcaagagacggttatggttttgaggaagactgggcagaagtttatacctcgaaaaatcttccaccagaaagctacccagtcggcgcaccaatcccgtggccatcagataccgttccgtctggttatgccctgatgcaggggcaggcttttgacaaatctgcttacccgaaacttgcagccgcttatccgtcaggcgtgatccctgatatgcgtggctggacgattaagggcaaacctgccagtggtcgggccgtattgtctcaggaacaggacggcattaaatcgcatacccacagcgccagcgcatccagtacagatttggggacgaaaaccacatcgtcgtttgattacggcactaaatccacgaataacaccggggcacatacacacagtgtgagcggctctacaaactcggctggagcacacacacactcactagccaacgtgaacacggctagtgctaactccggtgctggtagtgcatcaacaagattgtctgttgtgcataatcaaaactatgcaacatcatctgctggcgcacatacccactcactgtccggcactgctgcaagcgcaggtgcacacgcgcatactgtcggtattggtgctcatacgcactccgttgcgattggttcacatggacacaccatcaccgttaacgctgctggtaacgcggaaaacaccgtcaaaaacatcgcatttaactatattgtgaggcttgcataatggcattcagaatgagtgaacaaccacggaccataaaaatttataatctgctggccggaactaatgaatttattggtgaaggtgatgcatatattccgcctcatacaggtctgccagcaaacagtaccgatattgcaccgccagatattccggctggcttcgtggctgttttcaacagtgatgagtcatcgtggcatctcgttgaagatcatcggggtaaaacggtttatgacgtggcttccggcaacgcgttatttatttctgaactcggtccgttaccggaaaatgttacctggttatcgccggaaggggagtttcagaagtggaacggcacagcctgggtgaaggatacggaagcagaaaaactgttccggatccgggaggcggaagaaacaaaaaacaacctgatgcaggtagccagtgagcatattgcgccgcttcaggatgctgcagatctggaaattgcaacggaggaagaaatctcgttgctggaagcatggaaaaagtatcgggtattgctgaaccgtgttgatacgtcaactgcacaggatattgaatggccagcactgccgtagggtaaaacatataaattctataattagatgtatctttccatttacggcaaggaagggggcttggaagacgtaaagcatctcacaccgagattattttttatatgtcaggtgtctgaagttttgctttggctcttaaaatggtttgccgcgaggttttgaattcccgggcaatggcacttatacttacacctgacttaattcgttcgaataccacctgtttctgttcttcatttaacacaggaggtcgaccaaaacgtttccctgcgccgcgggctcttactatcccggaatgagtgcgttcaagtaaaaggtctcgttcaaattcagcgactgctgaaattacttgcatcatcatttttcctgttggactggtcaggtcaatgccacccaatgctaagcaatgcactctgatacctgtttcggtcagttgttccactgttttcctgatatccattgcattacaaccaaggcgatccagttttgtcacaatcaattgatcaccacatttcaggcgagcaagcaaccggttaaaaccaggacgctcactggttgctgctgagccgctaatgtgttcttcgattatttgctgaggtttgattttaaaacctgcactttcgatttcccggcgttgattttcggtggtctgatccagcgttgatatccgacagtaagcaaaaattcgagacatagtgagactctatacgaaattggtgttcatatcataatgcatctcagaaaataattatgattatttttgtgcatatttgtatgtacacgttcgaaaataaacgaatgcgtatgcaaccccgtaattttggtgagacccaaaatcgattttgtgaaaaatggctttaactcggtttgtttttcgagttccgggcggactcaaggaagaagaatagtgttgcgtgttattttaaccagatttcaagttgtttggtcgtggaaaagtggagcaaaatgttgttaaagtggaaaaatgataaaaaagtaagtttattatattacattttaccatttaaattttggttgtctttaagaactgatatcgctgtttgtaataattctttgttatccagccatgatgttttctttatgtttccttcaatgtaatcaagcaatgttctggtattgataggtcttccctgttttgctacttccactacagcatcccctaggataattcttacttcaggaagctgcgcagggaaccactttagggtgtcttttgatttcatgaagatattccttaaaatattattgattttcattgcgatattgtatgtctgattcaggatatgttgacttatacatcggttttgtctgggttattggatatgccaatccctaattttattagagcatgactaaaaatgctgaatatgataaggagcgaagtgattatcagtatgctgttcatatagcctcgaattagtaatgtgttatatatgatatagttgacaatttttatcctgggtgttcttaaagttcgtagataaacattgtcgtttcaggtatacaggaatgctaacaggtggcggcaaaaatcaggcggtttatggcgcaagctgaagtggcaactgcaaactatcttatgcagagactctacacggattgggtttaaaagtatacatagataacagtttttatctgaagaagaaaaatatcaaggtgatatagcctatatgcctttgatgcggaggaatgaatgtgatgggagtgatgtatctgaatagttgaaaaaccgcagtcacgtcgtatgcaagaacgtgctgcggttggtttgactttgattgagacgttttggaatttttttcggtggcaaaaatggggcaaaacgctgcaaaaggggcaaaaaaggggcaaaaaaagagtggattatcgtagcttattgttgtcgctgatgatatttaacacattgaaaaataagtaaaatacttatgagtcagagagttgtgatttttgcccttacttgttcaggttgtattgttctttcttactaatttcttgattttgcgacatttaaaagcgactcaattcgttatatggcatcagaagagtatgcgtcatgccggaacgcccagcataagaaatctgatataaaaaactgtggcgtgtatggtacggattagaggggaaaatgtcagcacatttgcgaaatgaatcaaaaagcccgcagcaatgtgcgggcgttagtgtcagcgcacaaccagcacggagcactctgcgtgacgcactacagctgcggcgttggaaccgagcagataagtggtgatatccggtcgatgggaagcaatgatgatcatatgagcggggatcttcttcgccaattccagaatgcggtctttgggcgagccttcctcaacatggacatgcactctgtcggttggcagtttaaattttttaatgatctcttccagttgcgatttggcttccgctttcaggtcatccattgccggtaattctgcggaatacgctaaacccagagaggcatagtagggcagtgaaggtattaccgtcaggaaatgaacctctgcatcatcaatctttgcctcttcctcaacgtggctaatcacgcgttgagttaattctgaatcggaaatatcgatagggacaagaatcgttctgttcataaaacctcctgttttagtatccgcataaagtgtaacgccagatgacactttttgtgtaatgacggagttcacatttttaatttagatcaaaggaggaagaataagcagaaaaagcccgccataacagcgggcaggaggatttagaactgataaaccagacctaaagcgacaatatcatcggtagagatgccattggcagcgtagaagctgtcatcttcatccaacaggttgattttatagtcaacgtaggtggacatgtttttattgaaatagtaagtcgcgccaatatcggcgtatttaaccagatctttatcatcaacacctgccgggttgtctgcaccacccgcagcgtgcaggtcacggcctttagacatcaggaaagagactgccggacgcagaccaaaatcaaactggtactgtgcagtgacttcaaaattctgggttttgtttgccacagcataatcgctgtcgccaaacggggtcatattacgcgtttctgaatacatggttgccaggtaaatattgttagcatcgtattttagcccagcagtccacgcgtctgctttatcaccacccgccgcagtatggttaacctggtcattggtgcggtcagaagaggtgtatgccgcaccagcgctaaagcccatgcctaaatcatatgttgtggaaagaccccagccgtcaccgttttcatggcgaacatcacgtccgttgttggtgccttcctgaccattactggctccttcgttgttaccttgatactgcaccgcgaagttcagaccatttaccagaccgaagaaatcagtattacgataagtcgcgacgccattggctcgaccagtcataaagttgtctgcattggtataagagtcaccgccaaattcaggcagcatatcggtccagccttcgatgtcgtacattacgccataattacgtccgtaatcgaaagaaccgtaatctgcaaatttcagcccggcaaatgccagacgggtccatgactggttttttgaagattcagtgttgtttgcctgaatattgtattcccattgaccgtagccagtgagttgatcgttaatttgggtttcgcctttaaaacccagacgcgcatagctctggtcgccatctttcgctgaattatcagaaaaataatgcaggccatcaactttgccatacagatctaatttgttgccgtctttattataaacttcggctgcatgtgcagcacctgcggcgagcagggcaggaattaaaagtgccagtactttgcttttcattgaataaatcctttagttattttatttgccttttatccccatttcggggagtgaaaacatcctaaaggagaagttcagttagccgataaatatcatttgttacgccttaagtaaaaccttaatcaaataattcctctgaaatgataataagtctggtgaatgtatcgaagataatacatacaaaataaaaattatacttttaatttgctatacgttattctgcgcgggttatatgcctttattgtcacagattttattttctgttgggccattgcattgccactgattttccaacatataaaaagacaagcccgaacagtcgtccgggctttttttttagaattggataatccttatccagagcatttaatcggtgttgcttttttccgcttttccggccatttgtgccaggaagtcatagcgtttttgcaaatcagctgcagcatctttccataactgttctgccacttctggctgctgcgaattcagccgacggaaacgttgctcgtgaagtaacgtttcttccggtgcttctgacggcgggcgtgaatccaaggccagcggcagtttgccttcatcggcacgacgcggatcaaagcgatatagcggccagaagccggtagctgtgagttggcgcatctggtcgtggctgagtgccagatcgtaaccatgctcttcacacgggctataagcaatgatcagcgatggccccggatacgcttccgcttcctgaatcgctttcaccgtctggttcagctgcgcgccgagagaaatctgcgccacataaacatgaccgtacatcatcatactgacgccaagatctttacgcgctttacgtttgccgtgctcgccaaatttagttactgcacccagcggtgtcgctttcgacgcctgaccaccggtgttggaatagcattgcgtatccagcaccagaatgttgacgttttccgtcaaactcaatacatgatccagaccgccaaagccgatatcgtaagcccagccatcaccaccaatcagccagattgatttttccaccagtgcatctgcatcacgtagcagttcatgtgcttcggcaacatcgttgagttgctggcgtaaagctgcaacctgttcacgacgaacctctggcgtggcgtctgatttcaacgccgtcagtaattccgccgggattttatcggcaaattgatccagcagacgcagcacgcggacacggtgttgatcgaccgtcaggcggaaaccaaggccaaattcggcattatcttcaaatagagagttcgcccatgccggcccacgaccgttggcatcggtggtatacggtgtagagggcaggttaccgccataaattgaagaacagccagtggcgttagcgatcaacatccggtcgccatagagctgagtcagtaatttaatatacggcgtctcgccacaaccggagcaagcacctgaatattcaaacagcggtgtaatcagctgcgatgtacgaatatcaatacgttccagtttgctacggtcgatttctggcaggttgaggaagaaatcgtaattgattttctcttcttcgacatgttccaggcgagacatcatattgatggctttaatctctggattctgacggtctttcgccgggcaaacttcgacgcacaggttacaaccggtgcaatcttccggtgccacctgcaagacatatttctgcccgcgcatatcacgcgatttcacatccagcgaatgcaggctggcaggggcgttttccatcgcttcaggcggcaccacttttgcgcgaatagctgagtgtgggcaagcggcaacgcagtggttacattgggtacagagttcctctttccagatggggatctcttcggcgatattgcgtttttcccagcgcgtagtgcccatcggccaggtgccgtctggcggcagcgccgaaacggggagggcgtcaccaagcccggcgagcatcgcagcggttacggttttcacgaaatcaggggcggcatcggaaaccactggcggtcgattggcgctgtgcggatttaccggttgcaacggaacttcttctacggattcacgcgccagcgccagagcctgccagttgcgttccaccagatcctggcctttgctactgtaacttttggcaatcgcaccctgcaattctgcgagggcgctatcgccaggcagaatttgcgtcagatggaaaaaagccatctgcatgacggtattaatacgggccgccaggccacattcgcgggcgattttcgccgcgttaatcacatagaagcgcgcttttttctggtttaacacggcctgaacttcttgcggcaagcgcgaccacacttcatctgcgctgtacggcgtgttgagcaggaaaatgccgccaggttttaaacgctcagccatctgatatttatcgataaactgcaactggtggcagccaacaaaatcagcctgggaaatgagataagcggaacgaatcggctgttcgctcactcgaaggtgagaaaccgtcaggccgcccgcctttttggagtcgtaaacaaaatagccctgtgcgtaccacggcgtggaattaccgataatcttgatattgtttttggtcgcggaaacgctgccatcactaccaaggccataaaacaaggcttccagtttcgccgagtttggcagggtgttttccggcaacggcagtgacagattggtcacatcatcgtaaataccaaccgtaaagcgcgctttcggtttagccgcgttgagctcggcaaataccgccagtacacagtctgggccaaattctttggatgaaagaccatagcgcccaccaatgacacggggcagagtttcgcgctcgccattattaaaggcttctgccagtgcggtcattacatccagatagagcggttctgcctgggcaccgggttctttggttctgtccagtaccgccacgctgcgtacggatcccggcagagcttgcagtaaatgtttagcggagaaggggcggtacaggcgaactttcagcacgccaactttttcgccacgggttagcaattcatcaaccacttcttcacaggtgccaatggcagagcccatcaggataatcacccgttccgcttgcggatgcccgtaatattcaaacggctgatactgacgacctgtcgcggcagagaaatcattcatcgcctgttcaacatggtcatagaccgcgttgtaccatgggttggtggcttcgcgagactggaaataagtgtcaggattggcggacgtaccgcggatcaccggatgttccgggttgagtgcccgggcgcgatgagcatcaatttcgacctgcggcatgagatcaagaatcgtgtcatcggccagcgggacaattttattgatttcgtgggacgtgcggaaaccatcaaagaaatgaataaatggcacgcggcttttcagcgtcgcgatttgcgaaatgagagcaaagtcttgcgcttcctggacgtttgctgcacacaacatcgcgcaacccgtctggcgcaccgccataacgtcggaatgatcgccaaaaatagagagtgcatgtgtggcaacggtacgtgccgctacatgcaggacaaacggtgttagttcgcctgccagtttgtacagcgtcgggatcatcagcagcaaaccctgcgatgacgtaaacgatgttgaaagggcacccgtctgcaaagcgccatgcacggtagcgatagcacccgcttccgactgcatttcaaccacgcgtggtgtgtctccccaaacgttctttaagccgtttccggcccaggcatcagcctgttctgccatcgtggaactgggggtaatagggtagatggcgataacttcactggtgcgaaatgcgaccgaagcaaccgcgccattaccgtcaatagtaatcatatgacacccttacattgcgcaaatgaggggcgcacgaaattgctgcgcgcccagtagtaatctttcaattttagcaaatggctttcttctgcattttcgcttttgtgtcccccacatcagcgtaatgaatgttttgatcaaacagagggcaaaaaaatagccataaaaaagtaaaaatgcggggcaacgcgcaggacagctctcgacgccgccctctgtgctgcctattatttatggcggtgtcgtttggcttgaagatcagaggaagaaaagatgcgagcagcgttttgggtagggtgtgccgctttattgttgtcggcgtgtagtagtgaacctgttcagcaggcgactgccgcgcacgtagcgccaggtttaaaagcgtcgatgtccagtagtggagaagcaaattgtgcaatgatcggcggttcgctttctgttgcccgtcaactggatggtacggcgattgggatgtgtgcattacccaacggcaaacgctgtagcgaacagtcacttgccgccgggagctgtggcagctattaattcattaaatccgccagcttataagttaatgtctgttttgcggtcgccagcgttaactggttcgcggtcagatccacttgtgcaccttctttcagcatttcgctaatggtgttatcgagttcattaagctgcgggttagcgcacatcatacgggtcattgccagccctttggctgtcagttcaccattagacagtttgccttcaccgctaaagcggttacacatgctgccggaaatcatcattttttcaccaaagctgatttctggcggatttttatcgctggtcacgggcttaccgtttacgctttccagcacaaagcgatgatgctgtagctgttctggcgtaacagcaattttgtcattacttacacatcccgccatcagcaggcttagcgcaacaaacgcggctactttcttcattgtggttctcaattacagtttctgactcaggactattttaagaatagaggatgaaaggtcattggggattatctgaatcagctcccctggaatgcaggggagcggcaagattaaaccagttcgttcgggcaggtttcgcctttttccagattgcttaagttttgcagcgtagtctgagaaatactggtcagagcttctgctgtcaggaatgcctggtgcccggtaaacagcacgttgtggcaggcagacaggcgacggaatacgtcatcctggatcacgtcgttggatttatcttcaaagaatagatcgcgttcgttctcatacacgtccatacccaacgaaccaattttctgatttttcagcgcttcaattgctgcctgagaatcaatcaatgcaccgcgactggtattgacgatcatcacgccatttttcatctgttcgaaggcggcttcgttcaacagatgatagttttccggtgtcagcgggcagtgcagagagataacgtctgattcagagaacagggttggcagatcgacatactccacaccgagttccagcgccgctgcacttggatacggatcgaacgccagcagacgcataccaaaacctttcagaatgcgcagcatcgccacaccgattttaccggtaccgataacgcctgccgttttgccatacatagtaaagccggtcagaccttccagagagaagttagcatcacgggtacgctgatacgcgcggtgaatacggcggttcagcgtcatcatcataccgatggcgtgttcagcaacggcctctggatcataggctggaacacggactactttcagccccagttcttttgccgcgtcaaggtcgacgttattgaaaccggcacagcgcagggcgatatatttaacgccgtgctttttcagctcttccagcaccgggcggctgccgtcatcgtttacgaaaatacataccgcttcgcagccattggcagttttagcggttttttccgtcagcagaaagtcaaaaaattccagctcaaagccaaaggactcgttcacctgttgcaggtacttcttgtcgtactgttttgtgctataaacggcgagtttcataagactttctccagtgatgttgaatcacatttaagctactaaaaatattttacaaaatttcaaatttaattgaaagctatggcgatattgaaaaattcatcaacaactatgcttagtgtaggcgcaaccttcaactgaacggttaaacatgccacaatacccgtattgaatgcttaatttttcgctaaatcaggatattaactacccatgctgggtaaatataaagccgttctcgcgctgttattactgattattcttgtgccgttgacgctgctgatgacgctcgggctgtgggttcccacgctggcgggcatctggctaccgctcgggacacgtattgcattagatgaaagcccacgcattacgcgtaaaggtttaatcattcccgatctccgttatctggtgggagattgtcagcttgcgcatatcaccaacgccagcctttcacatcccagccgctggttattgaacgtcggcacggtagaacttgattctgcttgtctggcgaaattgccgcagacggagcaatcgccagccgctccaaaaacactcgcgcagtggcaggccatgctgcctaacacctggatcaatatcgataaactgattttttctccctggcaggaatggcagggaaaactctctctcgcattaacctctgatatccagcaactgcgttatcagggcgaaaaagttaaatttcaaggccagctgaaagggcaacaacttacagtcagcgaactggatgtcgtcgcgtttgaaaatcagccgccggtaaaactggtgggggaatttgctatgccgctcgtgccggatggacttcctgtaagtgggcatgctactgcgacgttaaacttgccgcaggaaccgtcactggtggatgccgagctggactggcaggaaaatagcgggcaattgatcgtgctggcacgggataacggcgatccgttgctcgatttgccgtggcaaattactcgtcaacaattgaccgtaagcgatggtcgctggagctggccgtatgcaggttttcctttgagtggccgactgggtgtcaaagtcgacaactggcaggcagggcttgagaacgctctggtcagcggacgactgagtgtgctgacccaggggcaagcgggtaagggcaacgcggtgcttaattttggcccaggaaaattaagcatggataacagtcagctgcctctgcagctgaccggtgaagcgaaacaggcggacctcattttatatgcccgtttacctgcgcagctaagtggaagtctgtctgacccaacgctgacctttgagccaggcgcgttacttcgttcaaagggaagagtcatcgattcgctggacatcgatgaaatccgctggcctttagcgggtgtaaaagtcacccaacgtggtgttgacggacgtttgcaggccatcttgcaggcgcatgaaaatgaactgggcgatttcgtgctgcatatggatgggctggcgaatgattttctccctgacgctggccgctggcagtggcgctactggggaaaagggagttttacaccgatgaatgccacctgggatgtcgcaggaaaaggtgagtggcatgacagcacgattacgctgaccgatctctccaccggtttcgaccagttacaatacggtacgatgacggtagaaaagccgcgattaattctcgacaagcccatcgtctgggtacgtgacgcacagcatccctcctttagcggcgcgctgtcactggacgccgggcaaacgctgttcactggcggcagtgtgttaccgccatcaaccttaaaatttagcgtcgatgggcgcgatcctacctatttcctctttaaaggcgatttacatgctggtgagattggcccggttcgggtaaatggtcgctgggacggtattcgtctgcgcggtaacgcctggtggcctaaacaatcactgaccgtattccagccgctggtgccacccgactggaagatgaacttacgcgatggtgaactgtatgctcaggttgcattttctgctgcgcctgaacaaggattccgcgcgggaggacacggcgtgttgaaaggcggtagtgcctggatgccagataatcaggttaacggtgtcgattttgtcctgcctttccgttttgccgatggagcctggcatctggggactcgcggccccgttacgttgcgaattgccgaagtgattaatctggtgacagcgaaaaatattacggctgatttgcaagggcgttatccgtggactgaagaagaacccttgctgttgactgatgttagcgtcgatgtgttaggcggtaacgtactgatgaaacaattacgtatgccgcaacatgacccggcgctgttgcggctgaataatctctcatccagcgaactggttagcgccgtcaatccgaaacaattcgccatgtccggggcatttagtggtgcactgccgttatggctgaacaatgaaaaatggattgtgaaagatggctggctggcgaatagcgggccgatgacattgcgactggataaagacactgcggatgcggtggtaaaagacaatatgactgcgggttcagcaattaactggttgcgctatatggaaattagccgttcatcgacaaaaattaatttagataatctcggtttattaaccatgcaggccaacattacaggtaccagtcgcgttgatggtaaaagcggtacggtaaaccttaattaccatcatgaagagaatatttttacgctgtggcgcagtttacgctttggcgataatctccaggcatggctggagcagaacgcacgtctgccgggaaatgactgtccgcaaggaaaagagtgtgaggaaaaacaatgaaaattttactggctgcgttgacgtcatcttttatgctggttggctgtacgcctcgcattgaagtcgctgcacctaaggaaccgatcactatcaatatgaacgttaaaattgagcatgagatcatcatcaaggcagacaaagatgtcgaagagctgcttgaaactcgtagcgatcttttctgaggtgatgatgaagaaaacattacttctttgtgcgtttcttgttgggctggtaagcagcaatgtaatggcattgactctggatgaagccagaactcaggggcgggtaggtgaaacattttacggttatctggttgcgctgaaaacggatgctgaaacagagaaattagtagccgacattaatgccgaacgtaaagcgagttaccaacaactggcaaagcaaaataatgtgtcggtagatgatatcgcgaaactcgccgggcaaaagctcgtagctcgggccaaaccgggggaatatgtacaagggataaacggtaaatgggtgcgaaaattttaatagcaaaaccgcaatatcgggataacgctacaggagaaggcgattgatctattttcctgaaacaaggtgaatattcaaaaactcctgtcaaattgccttttgccctgaaaaatgcatagtcaaatatctgttttaactaattggcgttgcagtacatgcaacgccaattagttagcggaatttacgtcgatactcgcctggcgtcatcccaaagcgttgcttaaataccgttgaaaaatgactctggtcagaaaatccccaatgaaagccgatgcctgccagtttttcatcatctgcggcatggcgaatcgcatctgcacaaaaatcgagacgacggttacgaatatattgcgcgactaccaaacctttatcggcaaacattcggtacaaactacgtactgacatacctgtctctccggctatccactccgggcgtaatatctcttcgcgaatattatcgtctatcaacgtaaccactttttgaaactgacgttcacgacgaggttgaacagattcccgctgatgaagtaccgggcgcagcagacacaccatcgcctgtagcgcagcttcactttctgtttcagaaagtgccggattattcatgctctcctgtaacaggcgatgactgagttgcaccatgggtaagtcagcgtccagtctttctgcgcagataggtttttgatggggaaaatattgttccagcagagtgcgtggcaaaagtaatgaaatctgtttagaagactcctgccagtaaagcgaacaggggcgtgaggcatcgagtaacgtaatatcgccagcgccaatctgcacctgacgctcatcctgctccattattgcctgaccactaagctgaaaaacggtgtaaaaccaggcatcgtcgctgccttttacttcctgccaggtgcgggataaattcaccccgctggttgtcacggtactcagctttagtcctttggcaaaatgcgtgtccagtacacccgtgtaacgctcagtcagcaggcgtccggtaaaatttccgcatacctgattgatttgggaaagccattgctgaaactcattatccactgcggggttcatggcacgttttcgctctgtgaaatgtatttttattgttgcatttgtgttgcaataaacgaagctaatgagcctgactataggaaataagtcttgtcaggcatagagacataagcggttattgtcacgatttgcggagcttgtcacagctgacaaagcgaatgtcacagcgaaaaaagtgacttttcttgtcgctgcgtacactgaaatcacactgggtaaataataaggaaaagtgatgacagagccgcatgtagcagtattaagccaggtccaacagtttctcgatcgtcaacacggtctttatattgatggtcgtcctggccccgcacaaagtgaaaaacggttggcgatctttgatccggccaccgggcaagaaattgcgtctactgctgatgccaacgaagcggatgtagataacgcagtcatgtctgcctggcgggcctttgtctcgcgtcgctgggccgggcgattacccgcagagcgtgaacgtattctgctacgttttgctgatctggtggagcagcacagtgaggagctggcgcaactggaaaccctggagcaaggcaagtcaattgccatttcccgtgcttttgaagtgggctgtacgctgaactggatgcgttataccgccgggttaacgaccaaaatcgcgggtaaaacgctggacttgtcgattcccttaccccagggggcgcgttatcaggcctggacgcgtaaagagccggttggcgtagtggcgggaattgtgccatggaactttccgttgatgattggtatgtggaaggtgatgccagcactggcagcaggctgttcaatcgtgattaagccttcggaaaccacgccactgacgatgttgcgcgtggcggaactggccagcgaggctggtatccctgatggcgtttttaatgtcgtcaccgggtcaggtgctgtatgcggcgcggccctgacgtcacatcctcatgttgcgaaaatcagttttaccggttcaaccgcgacgggaaaaggtattgccagaactgctgctgatcacttaacgcgtgtaacgctggaactgggcggtaaaaacccggcaattgtattaaaagatgctgatccgcaatgggttattgaaggcttgatgaccggaagcttcctgaatcaagggcaagtatgcgccgccagttcgcgaatttatattgaagcgccgttgtttgacacgctggttagtggatttgagcaggcggtaaaatcgttgcaagtgggaccggggatgtcacctgttgcacagattaaccctttggtttctcgtgcgcactgcgacaaagtgtgttcattcctcgacgatgcgcaggcacagcaagcagagctgattcgcgggtcgaatggaccagccggagaggggtattatgttgcgccaacgctggtggtaaatcccgatgctaaattgcgcttaactcgtgaagaggtgtttggtccggtggtaaacctggtgcgagtagcggatggagaagaggcgttacaactggcaaacgacacggaatatggcttaactgccagtgtctggacgcaaaatctctcccaggctctggaatatagcgatcgcttacaggcagggacggtgtgggtaaacagccataccttaattgacgctaacttaccgtttggtgggatgaagcagtcaggaacgggccgtgattttggccccgactggctggacggttggtgtgaaactaagtcggtgtgtgtacggtattaatctggttcgctcataagtaaaaaacggcacctggtgccgtttttttgtctgaaacaatcacttatctttcttcagcgcccctagcgttggcgtttcgtcaaagaagttccatggtttcagcagagtatgtacccattcggtcggcataatcggccactcttcggcgcgggccacatgtgtggtgccggtggtcatccagacaacggcgtcggtgttgtccagcgactcgttatccttactgtattgtccaagaccggtgtcatgagtagaacggttcggatatttgccttccgggaaacgctcgccaggatgataacgcgttacccagagctgcttgtccataaagcttaaacgatgatagatccactcgtccggcgcgaactgggcaccttttgctaccgggtgagtaccacctgcataaggaataatttgataggaaaccggattgcccatgcggttctctttgttcgggttactcaacagacgaatcgtgcccggatcaaatttctgtgcggcatcctgttcattgccgatgttgtactgattaacttgcatggtactggtgcgtgggccaccggcagtattcggttttaccactgggtccatcgccaccaggctgttattctcgccatctacatccagatcgaggcggaaattataaatatgttggtgtgtagtacccacgatattgtgatcgataagcgtgccgtagcgcgtgtcatctttcgccgtctcatcgtgcatggttttcgctttaacacctttcaccgcttcgatgcccgtagcaccggcatcgatgccaatagtgccgttttcatggaagatccagtcaaaaatgtagtcatagttacccactgtactgatccagcgcaccactaactcccggcgttcggtactgacgttgggctggcccatttcctgatgcttatactccggcccggcataacgttcaaataccgcgatagcgcgagggatctccatcggcacgccagtgtagtcggcgatggtttcattaaggagcactgcgttagacggggcatctttaccacgagcaattggtgaggttagcgtgcccataccgtagtcaccagagtccagatacgctttaaagtaccagccaatatcaggatcaccgtaaggcacaatcatgccgccgagagaaccttcgtacatgactttgcgtttggtgccattgtcgttataagtcacggtggagatcatcggcccgacgcgagagttcatgctgaggtgaaaatcccagttccgccagtgaatcatatcgccagtaatggtgtaatttttaccttcaggctcaatgatttgcataggcttaactgccggagcaacgcggtcacggccatcaaatgggcgtgcggtcattggcaccggaactaccggaccttcttcaatcttaacgatttttttctgttctaaatcaacgaccgccaccaggttttcgatgggatgtgcccagtagttgccatcaccgacatcaagatagctgatgactttgagcaaccgggcatcttgtttcaggccatctttaccatcgaaataacctacggtcagcggcgtggtaatcacttttttcgcatcagtaataccgcgtttcttcacggcagcggcaaattcttcactgttgttaataatgttctgcacactggcgaaatcatccagcaacaccataccgtgggcgtctttaatgggttgccaggagagcagtttgttgttttgcagatccaccaccgcttcgatgatatgtttgccgtcgagcataatgacgtcggctttgcgcggctggtcaaccggtttgttttccagcgcaaacgcccagacagcttctttatctggcggtagcagggagatctcagtaaaacgggtattgggtttgaagtccgcggaagctttaacaatttcaacggcctgtttaatttcgtccgcagttagcgcattaagtgggtgagggcgcttttctacctgaaaggtttgatccagcccggactggaaaacatcgttaataaaggtgtcagaaacccaggctttattgtctttcatcactaccggtacttgcagtgccagaggctgaccattaacaattgctgtttgcgcaccaggcttcactttcacgtacgcgccatctttaatcagggtaaagagctgggcgtagtcgtcccactgcacatcggcaccaaattctttaagcgttttatccattggcaccatatgcgcttcaccaccgtgggcaaataccggcgcttgccaggcgaaacttaaggcgactgccaacgccagggttgttttacgggcagaatacagagaggggcttcccattattaacctcgtcagatgttgtgttcttgttagcaaccgcgctctgtgggcggtttagtcaggttcacattatcagtactgatgcaaaggggattgcctgcacctgccaggttgtttggcaggtgtgccagcttttcatacagtggatgccctgaaaatagatgtacacatcatgcataatgtgacaacgtcacaaaacttagtgaaataaaagggcaactattcgccgttgcccttcattcaccgattaatcgacaaaatcaccgtgctgcctggccaccagcgtcagaattgaatacagcgccaccggggtttgatgctgattgaatacctctacagcccattccaccacacctgttggtttttcttctgcgctacgctgttttttcagcgtcttgcgcttacaggtgagacgcacctggatggtatcgcctggctttacgggttcgataaaacgcaagctttccagcccgtagttagcaatgaccggaccgacaccggcatcgacaaacagacccgcagccgcagaaagcacaaaatacccatgcaccacccgctcaccgaaaatagattcggcagcagcaatcttatccatatgtgcatagaaatgatcgccgctgaggcaagcaaagttaacaatatcggcctctgtcattgtgcggcggggagtcaacaggctgtcgcctggttgtagctcctcaaaatatttgcggaacggatgaatacgatcttcttcgactttcgcaccgcgcacccactgtttactgatagcggcaagcatcgtcggactaccctgaacagcggttcgctgcatgtaatgtttcaccgctcgtaaaccgcctaattcttcaccgcctcctgcgcgaccaggcccaccatgtaccagttgtggcagtggggagccatgcccggtggattcttttgccgactcttcattgaggatctgaattcgcccatgcgtacgtgccgcgtcggcaataaactgacgcgcaatttgcggatcagccgtcaccagcgttcccgcaaggctaccgccgcctgcacaagccagttgcagagcatgtcgctggttttgtgctggcatcagcgttgcgacagggccaaaggcttctgttgcatgtaccgccggtgtttcatccggctgcggacagtacaataaggttggcgggaagaaggcacccgcagcagataaatccgcctgaccaccgaggcgaatctcgcatcctgcagccagcaatatgttcactttttcctgcacatcggcacgctgctcagcatttaccagtgcgcccattttcacgccttcctgagcaggatcaccgaccacgactttctgtaatcgcgcaaccagagcatcactgacagcattaaccaatgcctgcggcacaataatccgccggattgccgtacatttttgcccggcttttgtggtcatctcacgcacaacttcacgaataaacagcgcaaactccggttgatccggggtgacatcttcgcccagtacgcagcagttcagggaatcagcttccatagtgaaggggatagatttggcgacgatatttggctgaactcgcagcatctgtccggtcgccgctgaccccgtgaaagtcaccacatcctggctgtccagatgatccaacaagtcgccagcactaccgcagatcagactaattgcgccttcgggaacaagaccactatcgacaattgatttcaccatcgcctgagtcagttgggccgtcgcggtagctggtttgatgatggctggcattccgcccagccacgttggtgccagcttttccagcattccccagcaggggaagttaaaggcgttaatatgcactgccacgcctgactttgaggtcagtaaatggcgcgcggcaaatccaccttctttcgataaggggatcaattcatcttccggccacagcgtatcgtcaggcagctcccggctaccgaggctggcgtaagtaaataacgtcccaatgccaccttcaatatcaacccaactgtctgcccgcgttgcgcctgtttgcgcagaaagagcatagaaacgctctttttcactcagcagatgtttagcgaccgctttaagcatcgccgcacgttcgataaaggtcatagcgcgaagggcgggggcacctttttcaatggcaaactggcgggcagccgccatatcaagaccttcactggtcacttcccataacgcctcgccgctaatagcgtggtgaatcaaacggctacggccccggccagactgccaggtaccggataagaaactggctaactgctgcatcgctactctccagatgtttcacatttctgttgctaatagttaaatcgcgaatcataaaaagcaaaggatcttttaacgaaatgttaactatgcgatctgtatagcaactgcggaaaacattaatgcactgataaataatgatttataaaaatagggtgcgaaatccgtcacagttcaaacatacaaaatttgtgattttacttaactattgtgtaactttcataaaacaatgtgattcgtgtttttaattaattcacgaaaactggaatcgtaaaggtgatgacgtgacccaagaagaacgctttgagcaacggatagcccaggaaacggctatcgagccacaggactggatgcccgatgcttaccgaaagacattgatccgccagattgggcagcatgcgcactccgagattgttggtatgttgcctgaaggtaactggatcactcgcgcaccaaccttgcggcgtaaagccattctgttggccaaagtgcaggatgaagccggtcatggtctgtatctctatagcgccgccgaaacactgggctgcgccagagaagacatctaccaaaaaatgctcgacggacggatgaaatattcctccatctttaattatccgacattgagttgggctgatatcggtgttatcggctggctggtggatggcgcagcgatcgtcaatcaggtggcgttatgccgcacttcttatggcccgtatgccagagcaatggtgaaaatctgcaaagaagagagttttcaccagcgtcaggggtttgaagcctgcatggcactggcgcagggcagcgaagctcaaaagcagatgttgcaagacgccattaaccgtttctggtggccagccttaatgatgttcgggccaaacgatgataactcgccaaacagcgccagaagtctcacctggaaaatcaaacgtttcaccaacgacgaactccgccagcgtttcgtggataacaccgttccacaggttgaaatgctcggtatgaccgttcctgacccggatctgcattttgacactgaaagcggtcactaccgctttggtgagatcgactggcaggagtttaacgaagtaattaacggtcgcggaatttgtaatcaggagaggctcgacgccaaacgtaaagcctgggaagaaggtacctgggtacgggaagcagcgctggcccatgcacaaaaacaacatgcccgtaaggtcgcataaggagattcaaaatgagtaatgtttactggccgttatacgaagttttcgtgcgtggcaaacagggcttatcacaccgccatgttggcagtttacatgctgccgatgagcggatggcactggaaaatgcccgtgatgcttacacccgtcgtagcgaaggatgttcaatttgggtggtgaaggcgagtgaaattgttgcctcgcaaccggaagaacgcggtgaattttttgatccggctgaaagcaaggtctatcgccatccaacgttttacaccatccctgatggcattgagcacatgtgaggtcggaaatgaatcagttaacggcttacaccttgcgcctgggcgataactgcctggtgctctcccagcggttgggtgaatggtgcggtcacgcaccggaactggaaatcgatctcgcactggcaaacattggcctcgatttattaggtcaggcacgcaacttcttatcgtatgccgctgaattagcgggagaaggcgatgaagataccctggccttcacccgagacgagcgccagttcagcaacttattgttggttgaacaaccaaacggcaattttgccgacaccattgcacgccagtatttcatcgatgcatggcatgtggcgctctttacccgtctgatggaaagccgtgatccgcaactggcggcgatttctgccaaagcaattaaagaagcgcgctatcacctgcgttttagtcgtggctggctggagcgactgggcaatggtactgacgtatcagggcaaaagatgcagcaggccatcaacaagttgtggcgttttaccgccgaactgttcgatgccgacgagattgatattgcactgagtgaagagggtattgcggttgatccacgcactttacgcgcagcgtgggaagccgaagtttttgccgggatcaacgaagccacattgaacgtaccgcaagagcaggcgtatcgcactggcggtaaaaaaggactgcataccgaacaccttggacccatgctggcagaaatgcagtatctccagcgtgtcttgcccggtcagcaatggtaacagaggagatgggtatgcaacgtctggccaccattgcaccgccacaggttcatgagatatgggcgctactcagccagatcccggacccggagatcccggtgctgaccattactgatttaggcatggtgcgtaatgtgacacagatgggagaaggatgggtgatcggctttacgccgacatattccggttgtccggcaacggaacatttgattggcgcgatacgtgaggcaatgacaaccaacgggtttacccccgttcaggttgtgctgcaactcgacccggcatggaccaccgactggatgacccccgatgcccgtgagcgtctgcgagagtatggcattagcccgcccgccggacacagttgccatgcccatttgccgccagaagtacgttgcccgcgctgcgccagcgtccataccacacttatcagtgaatttggttccacggcctgcaaagcattgtaccgctgcgatagttgccgcgaacctttcgattatttcaaatgtatttgaggatgccatgacaacgtttcattccttaacagtggcaaaagtcgagtcggaaacccgtgatgcggtgaccattacctttgcggtgccccagcctttgcaggaggcgtatcgctttcgccccggtcaacatttgaccttaaaagccagctttgatggtgaagaattacgccgttgttactccatttgccgcagctatctgcctggcgaaattagtgtggcggtgaaagccattgaaggcggacgtttctcccgctatgcccgcgaacacatccgccagggtatgacgctggaggtcatggtgccgcaggggcatttcggctatcagccgcaggccgaacgccaggggcgctatctggcaattgcagcaggatcaggtattacgccaatgctggcgattatcgccaccactttacaaaccgagcctgaaagtcagttcaccctgatctacggtaaccgtaccagccagagcatgatgtttcgccaggcactggcagacctgaaagacaaatatcctcagcgtttacagttgttgtgcattttcagtcaggaaaccctcgacagcgatctgcttcacgggcgtattgacggtgaaaaattacagtcacttggggcctcgctcattaattttcgtctttatgatgaggcatttatttgtggtccggcggcgatgatggatgacgcggaaaccgccttaaaagcactgggaatgccagataaaaccattcatctggagcggtttaatacgcctggcacgcgcgtcaaacgtagcgttaacgtgcaaagtgacggacaaaaagtgactgtacgtcaggatgggcgggatcgggaaatcgtgcttaatgccgacgatgaaagcattctcgatgcggcattgcgccagggggcggatctgccctatgcctgcaaaggcggcgtctgtgcgacctgcaaatgcaaagtgctgcgtggcaaagtggcgatggaaaccaattacagtctggaaccggatgaactggccgcaggttatgtgttgagttgccaggcactgccgctgaccagcgatgtggtggttgactttgacgcgaaggggatggcatgagcgaactgatcgtcagccgtcagcaacgagtattgttgctgacccttaaccgtcccgccgcacgtaatgcgctaaataatgccctgctgatgcaactggtaaatgaactggaagctgcggctaccgataccagcatttcggtctgtgtgattaccggtaatgcacgcttttttgccgctggggccgatctcaacgaaatggcagaaaaagatctcgcggccaccttaaacgatacacgtccgcagctatgggcgcgattgcaggcctttaataaaccacttatcgcagccgtcaatggttacgcgcttggggcgggttgcgaactggcattgttgtgcgatgtggtggttgccggagagaacgcgcgttttgggttgccggaaatcactctcggcatcatgcctggcgcaggcggaacgcaacgtttaatccgtagtgtcggtaaatcgttagccagcaaaatggtgctgagcggagaaagtatcaccgctcagcaagcacagcaggccgggctggttagcgacgtcttccccagcgatttaaccctcgaatacgccttacagctggcatcgaaaatggcacgtcactcgccgctggccttacaagcggcaaagcaagcgctgcgccagtcgcaggaagtggctttgcaagccggacttgcccaggagcgacagttattcaccttgctggcggcaacagaagatcgtcatgaaggcatctccgctttcttacaaaaacgcacgcccgactttaaaggacgctaatgatggaattcatcctcagtcatgtagaaaagggcgtgatgacactaacgctcaaccgcccggaacgcctgaacagttttaatgatgagatgcacgcacaactggcagagtgcctgaaacaggtcgagcgcgacgacactatccgttgcctgttacttacaggtgccgggcgcggattttgtgctggtcaggatcttaacgatcgtaacgttgatcccacaggccccgcaccggatttagggatgtcagttgaacgtttctataacccactggtacgtcgcctggcaaaactgccaaaaccggtgatctgtgcagtcaatggcgtggcggcaggggcaggcgcaacactggcactggggggcgacatcgttattgctgcccgttcagcaaaattcgtcatggcgtttagtaagttaggcttaatacccgattgcggtggaacctggttactgccacgcgttgccggacgagcgcgcgccatggggctggcactgctggggaatcaactgagtgctgaacaggcgcacgaatgggggatgatctggcaggttgttgatgatgaaacgctggcagataccgcgcaacagctggcacggcatctggcgacacaaccgacatttggtcttggacttatcaagcaagcgataaatagcgctgaaaccaatacgctcgatacgcaactggatctggaacgtgactatcagcgacttgccggacggagcgcagattatcgtgaaggtgtcagtgcgttcctggctaaacgctcaccgcagttcacggggaaatagcatgatgataaatgtgcaaactgtggcagtgattgggagcggcaccatgggggcaggcattgctgaagttgctgccagtcatggacaccaggttttactgtatgacatttctgctgaagcgctgacccgcgcaatcgacgggatacacgcgcggctaaattcacgcgtgacgcggggaaaactgactgctgaaacctgtgaacgcacattgaaacgcctgatcccggtgaccgatattcacgcgctggcagctgcggacctggtcattgaagcggcgtctgaacgtctggaagtcaaaaaagcgctctttgcacagctggcggaagtttgcccgccacaaacgctattgaccactaacacttcgtcaatctctataaccgcgattgctgcggagataaaaaatcctgaacgtgttgcggggctgcatttttttaacccggcaccggtgatgaagttggtggaggtggtcagtgggctggcaacggcggcggaagttgttgagcagttgtgtgaactaacgttgagttggggtaagcagcctgtgcgctgtcattcgactcctggatttatcgttaaccgtgttgcgcgtccttattattccgaggcctggcgggcactggaagagcaggttgctgcaccagaagtgattgacgctgcacttcgcgatggcgctggtttcccgatggggccgctggaattaaccgatctgattggtcaggacgtcaattttgctgtcacctgttcggtgtttaacgctttctggcaggagcgtcgttttttaccttcgctggtgcaacaggaactggtgattggtggacggttgggcaagaaaagtgggctgggcgtgtacgactggcgcgcggaacgtgaggcagttgttggcctggaagcggtaagcgacagttttagcccaatgaaagtagaaaagaaaagtgacggtgtcacggaaattgacgatgttttattgattgagacacaaggcgagacggcacaggcgctggcaatacgactggcacgcccggtggtagtgatcgataaaatggcgggcaaggtggtgaccattgctgctgcagcggtgaacccggactcagcgacccgcaaggccatttattacctgcaacagcagggcaaaacagtgctgcaaattgcagattacccaggaatgctgatttggcgaacggtagcaatgatcatcaatgaagcccttgatgcgcttcaaaaaggcgtggcctctgaacaggatatcgataccgccatgcgtcttggggtgaattatccatatggcccacttgcctggggagcgcaacttggctggcagcgaatattaaggctccttgaaaatctacagcatcactatggcgaagaacgctatcgcccatgttcattgctgcgccaacgggcgcttctggagagcggttatgagtcataaggcctggcaaaatgcccatgcaatgtatgagaacgatgcctgcgccaaagcgcttggcatcgacattatctcaatggatgaaggctttgctgtagtgaccatgaccgtcactgcacaaatgcttaacggtcatcaaagttgccacggcgggcagctattttcactggctgatactgcctttgcctacgcctgcaatagccaggggctggcagccgtcgcttctgcctgcacgattgattttttgcgtccaggctttgccggagacaccttaactgctactgcgcaggtacgtcatcagggcaagcaaaccggtgtttacgacatcgaaattgttaaccaacaacaaaaaacggttgcgctgtttcgcggtaaatctcaccgcatcggcggcaccattacaggagaagcctgatgcgtgaagcctttatttgtgacggaattcgtacgccaattggtcgctacggcggggcattatcaagtgttcgggctgatgatctggctgctatccctttgcgggaactgctggtgcgaaacccgcgtctcgatgcggagtgtatcgatgatgtgatcctcggctgtgctaatcaggcgggagaagataaccgtaacgtagcccggatggcgactttactggcggggctgccgcagagtgtttccggcacaaccattaaccgcttgtgtggttccgggctggacgcactggggtttgccgcacgggcgattaaagcgggcgatggcgatttgctgatcgccggtggcgtggagtcaatgtcacgggcaccgtttgttatgggcaaggcagccagtgcattttctcgtcaggctgagatgttcgataccactattggctggcgatttgtgaacccgctcatggctcagcaatttggaactgacagcatgccggaaacggcagagaatgtagctgaactgttaaaaatctcacgagaagatcaagatagttttgcgctacgcagtcagcaacgtacggcaaaagcgcaatcctcaggcattctggctgaggagattgttccggttgtgttgaaaaacaagaaaggtgttgtaacagaaatacaacatgatgagcatctgcgcccggaaacgacgctggaacagttacgtgggttaaaagcaccatttcgtgccaatggggtgattaccgcaggcaatgcttccggggtgaatgacggagccgctgcgttgattattgccagtgaacagatggcagcagcgcaaggactgacaccgcgggcgcgtatcgtagccatggcaaccgccggggtggaaccgcgcctgatggggcttggtccggtgcctgcaactcgccgggtgctggaacgcgcagggctgagtattcacgatatggacgtgattgaactgaacgaagcgttcgcggcccaggcgttgggtgtactacgcgaattggggctgcctgatgatgccccacatgttaaccccaacggaggcgctatcgccttaggccatccgttgggaatgagtggtgcccgcctggcactggctgccagccatgagctgcatcggcgtaacggtcgttacgcattgtgcaccatgtgcatcggtgtcggtcagggcatcgccatgattctggagcgtgtttgagcatatcaacctgcgagtaccctacaatgataaccaatacaaagcttgacccgattgaaaccgcgtctgttgatgagttacaggcgttgcaaacacagcgtctgaaatggacgctcaaacacgcgtatgaaaatgtgccgatgtatcggcgcaaattcgacgcagcaggcgtacatcctgatgatttcagggaactttcagacctgcgtaaatttccctgtaccaccaaacaggatctgcgcgacaactatccctttgacacctttgccgtgccaatggaacaagtggtgcgcattcatgcttcttcgggaaccacaggtaaaccgacagttgtcggctatacgcaaaacgatattgataactgggccaatattgtagcgcgttctttgcgtgcggcagggggctcgcccaaagacaaaattcatgttgcctatggttacggcctgtttactggtgggctgggtgcgcactatggtgccgaacgtctgggcgctacggtgatcccgatgtctggcgggcagacggaaaaacaagcgcaactgatccgtgattttcaaccagatatgatcatggttacgccatcttattgccttaacctgattgaagagctggagcggcagttgggcggtgatgccagcggttgctcgctgcgggttggagtatttggtgctgagccgtggacacaggccatgcgtaaagagattgagcgtcgcctggggatcaccgcactggatatttatggcctgtcagaagtgatggggccgggggtggcgatggagtgtctggaaactaccgacggcccaaccatttgggaagatcatttctatcctgaaattgttaatcctcatgacggcacaccgcttgccgatggtgaacatggcgaactgttattcaccacgctgaccaaagaagcattgccggtcattcgttaccgcacgcgtgatttaacccgactgttaccaggaacggcgcggactatgcgccgcatggatcgcatcagcggacgcagcgatgacatgttgattattcgcggtgtaaatgtctttccgtcacaactggaagaagagattgtcaaattcgaacatttatcgccgcattaccaactggaggtgaaccgccgggggcatcttgattcactttctgtgaaagtggagttgaaagaaagtagcctgacattgacgcatgagcagcgttgccaggtatgccaccagctgcgccatcggattaagtcgatggtggggatctctaccgatgtgatgatcgttaactgtggcagtatcccgcgttcagaaggcaaggcgtgtcgggtgtttgatctgcgcaatattgttggtgcctgacgtatcgtctggccctggtggggtaaagcgccagggccagaagtcgatacgacctgtgctatgattcataaatcacaacaataacaacagactgaagcgaatgagtaaacttgatacttttatccaacatgctgtaaacgctgttccggtcagtggcacatctttgatctcctctctgtatggtgattcgctttcccatcgtggtggtgaaatctggttgggtagtctggctgctttgctggaagggctgggatttggtgagcgtttcgtgcgcaccgctttgtttcgtcttaataaagaaggctggctggatgtttcccgcatcgggcgacgcagtttctatagcctcagtgataaaggcttgcgcctgacgcgacgggcagaaagtaaaatttatcgcgcagagcaacctgcatgggatggtaaatggctcctgttgctctcggaaggtttagataaatcaacgctggctgatgtcaaaaagcagttgatctggcaaggttttggcgcactggcacccagcctgatggcatcgccgtcgcaaaaactggccgatgtacagacacttttgcatgaagcgggtgtggcggataacgtgatttgttttgaagcgcaaataccactggcgctttctcgcgcagcactgcgtgccagagtagaagagtgctggcatttaactgaacaaaatgccatgtacgaaacctttattcagtcattccgcccgctggtgccgcttttaaaagaggcggcagacgagttaaccccggagcgggcatttcatattcagcttttactgatccatttttatcgccgtgtcgtccttaaagacccattgttgccggaggagttgcttccggcacactgggcagggcatacggcgcgtcagctgtgtatcaacatttatcagcgcgtagcgcctgctgctttagcgttcgttagtgaaaaaggtgaaacctcggtcggtgaactgcctgcgccgggaagcctgtattttcaacgttttggcggcttgaatattgaacaggaggcgttatgccaatttatcagatagacggtctgactccggttgtgccagaagagagttttgtccatccgacagcggtattgatcggcgatgttattctcggcaagggcgtttacgttgggccaaatgccagcctgcgtggcgattttggtcgtatcgtggtgaaagatggcgcgaacattcaggataattgcgttatgcacggttttcccgagcaggatactgttgtaggagaagatggacatattggtcatagcgctatccttcacggctgcattatccgccgcaatgcattagtgggaatgaacgcggtagtgatggacggtgcggtgattggcgagaacagcattgttggtgcatccgcatttgtgaaagccaaagcagaaatgccagctaattacctgattgtcggcagcccggcgaaagcgattcgtgaactcagtgagcaggagttggcatggaaaaagcagggtacgcatgagtaccaggtgctggtgacacgctgtaagcagacgttacatcaagtcgagccattgcgggaaattgaacctggcaggaaacgcctggtatttgatgagaatctgcgaccgaaacagtaacagatgtaaaattattttgtccctttaattataaagcagagttatgtttaagctctgctttatttatttgagtattaattcataccgttttttcatcatataattatttataatgagaatgtggttttaatttgtaatttatattatatacacaatttatatatttcatggtctttttttattcacctgaattataattgtgaattataggaaagtatgtttgattagataataatctactggcaatattggatgtcttctatgttttaaataactaattggtcgggttagtgcatccggctttctttatattcgccagaaggatttattatgcaaaggaaaactctattgtcggcctgtattgcattagctctgagtggtcagggttgggcggcagatatcacagaggtagaaaccaccacaggtgaaaagaaaaataccaatgtgacttgtccggcagacccaggaaaactcagtccggaagagcttaaacgcttaccctctgaatgctctcctttagtcgaacaaaacctgatgccatggctttccacaggcgctgctgcgttaatcacggccttagccgtagtggaactaaacgacgatgatgatcatcatcatcgcaacaattctccactcccaccgacaccccctgatgatgaatcagacgacactccagttcccccaactcctggcggagatgagataataccggacgatccggatgatacgcctacacctcccaaaccggtttcgtttaataatgacgttattctcgataaaacagaaaaaacgttaactattcgcgattcagtttttacttataccgagaatgctgacgggactatatctctgcaagatagcaatggtcgtaaggcaacgattaatctttggcagattgatgaagcgaataacactgttgcccttgaaggggtgagcgcagatggcgcaacgaagtggcaatataatcacaacggtgagcttgttattacgggtgataatgccacagtaaacaacaatggcaaaaccaccgttgacggtaaagattccaccggtacggaaatcaacggtaataacgggaaagtgattcaggacggcgatctggatgtcagcggcggcggtcacggtattgatatcaccggtgacagcgcgacggtggataacaagggcaccatgaccgtcaccgatccggagtccatgggtatccagatcgacggtgacaaggccatcgtcaataacgaaggcgagagcaccatcaccaacggtggcaccggcacccagattaatggtgatgacgccacggcaaacaacaacggcaaaaccaccgttgacggcaaggattccaccggtacggaaatcaacggtaataacggaaaagttattcaggacggcgatctggatgtcagcggcggcggtcacggtattgatatcaccggcgacagcgcaacggtggataacaagggcaccatgaccgtcaccgatccggagtccatcggtatccaggttgacggcgaccaggcggttgttaacaacgaaggcgagagcgccatcaccaacggtggcaccggcacgcagattaacggtgatgacgccacggcaaacaacaacggcaaaaccaccgttgacggcaaggattccaccggtacggaaattgctggcaataacgggaaggtgattcaggacggcgatctggatgtcagcggcggcggtcacggtattgatatcaccggcgacagcgcaacggtggataacaagggcaccatgaccgtcaccgatccggagtccatcggtatccagattgacggcgaccaggccatcgtcaataacgaaggcgagagcactatcaccaatggcggcaccggcactcagatcaacggtaacgacgccaccgcgaataacagtggaaaaaccactgttgatggaaaagattccacgggtaccaaaatcgcgggcaatatcggcattgtaaatctggatggtagcctgactgttacaggcggtgcgcatggtgttgagaacattggtgacaacggcacggttaacaacaaaggagatattgttgtttccgatactggatcgattggcgtgctcatcaacggtgagggggcaacagtatccaatacgggtgatgttaacgttagcaatgaagcgacagggttcagcatcacaaccaacagtgggaaggtttcgctggcaggcagtatgcaggttggcgatttctcgaccggggtagatcttaatggcaacaataacagcgtgacgctggcggcaaaagatctaaaagtggtcgggcagaaagcgacgggcataaacgtttctggcgatgcgaatacagtgaatatcactggtaacgttctggttgataaggataaaaccgcagacaatgcggcggaatatttcttcgatccatccgtgggtatcaacgtttacggcagtgataataacgtgacgctggatggaaagttaactgttgtatcagacagtgaggttacttctcgtcagagtaatttatttgatggcagcgcagagaaaacgtcaggtctggttgtgattggcgatggcaataccgttaatatgaatggtggacttgaactgattggagagaaaaacgcgcttgcagatgggtcgcaggttacttccttgcgcacaggatatagttataccagcgttattgtcgttagtggtgagtcgtcggtatatctgaatggagatacgacaatcagcggagaattccctctggggtttgccggggttattcgggtacaggataaagctttgctggaaattggcagtggcgctacgctaacaatgcaggatattgacagttttgaacatcatgggacaagaaccctggatttgcccctatatttccagacatctgttatcacttaacccattacaagcccgctgccgcagatattcccgtggcgagcgataacccagcgcactatgcggatgccattcgttataatgctcgaacgcctctgcaaggttctttgctgccgttaacccgtctggtttgggcatgatactgatgtagtcacgctttatcgttttcacgaagctctctgctattccgttactctccggactccgcaccgccgtgttcttcggttcaagtcccaacatccgggcgaactggcgtgtttcattagcccggtagcatgaaccattatccgtcagccactccactggagacgacggaagatcgttgccgaagcggcgttccaccgctcccagcatgacgtcctgtactgtttcactgttgaagccgccggtagtgaccgcccagtgcagtgcctcacgatcacagcagtccagcgcgaacgtgacacgcagtctctctccgttatcacagcagaactcgaacccgtcagagcaccatcgctgattgctttctttcacggccactctgcctgtatgtgcccgtttcgatggcggtacagcaggttttcgctcaagcaacagcgcattctggcgcatgatccggtaaacacgtttggcattgatcgcaggcataccatcaagttctgcctgtctgcgaagcagcgcccatacccgacgataaccatacgttggcagctctccgataacatggtgtatacggagaagcacatccgtatcatcagtgtgacgactgcggcggccatccatccagtcatcggttcgtctgagaatgacgtgcaactgcgcacgcgacacccggagacaacggctgactaagcttactccccatccccgggcaataagggcgcgtgcgctatccacttttttgcccgtccatattcaacggcttctttgaggagttcattttccatcgttttcttgccgagcaggcgctggagttctttaatctgcttcatggcggcagcaagttcagaggcaggaacaacctgttctccggcggcgacagcagtaagacttccttcctggtattgcttacgccagagaaataactggctggctgctacaccatgttgccgggcaacgagggagaccgtcatccccggttcaaagctctgctgaacaattgcgatcttttcctgtgtggtacgccgtctgcgtttctccggccctaagacatcaatcatctgttctccaatgactagtctaaaaactagtattaagactatcacttatttaagtgatattggttgtctggagattcagggggccagtctaaaccccagaacttacttatgctgattccggtgcgaaaattgttaataaaggtacttgtagattcaattggtcaacgcaacagttatgtgaaaacatggggttgcggaggttttttgaatgagacgaacatttacagcagaggaaaaagcctctgtttttgaactatggaagaacggaacaggcttcagtgaaatagcgaatatcctgggttcaaaacccggaacgatcttcactatgttaagggatactggcggcataaaaccccatgagcgtaagcgggctgtagctcacctgacactgtctgagcgcgaggagatacgagctggtttgtcagccaaaatgagcattcgtgcgatagctactgcgctgaatcgcagtccttcgacgatctcacgtgaagttcagcgtaatcggggcagacgctattacaaagctgttgatgctaataaccgagccaacagaatggcgaaaaggccaaaaccgtgcttactggatcaaaatttaccattgcgaaagcttgttctggaaaagctggagatgaaatggtctccagagcaaatatcaggatggttaaggcgaacaaaaccacgtcaaaaaacgctgcgaatatcacctgagacaatttataaaacgctgtactttcgtagccgtgaagcgctacaccacctgaatatacagcatctgcgacggtcgcatagccttcgccatggcaggcgtcatacccgcaaaggcgaaagaggtacgattaacatagtgaacggaacaccaattcacgaacgttcccgaaatatcgataacagacgctctctagggcattgggagggcgatttagtctcaggtacaaaaaactctcatatagccacacttgtagaccgaaaatcacgttatacgatcatccttagactcaggggcaaagattctgtctcagtaaatcaggctcttaccgacaaattcctgagtttaccgtcagaactcagaaaatcactgacatgggacagaggaatggaactggccagacatctagaatttactgtcagcaccggcgttaaagtttacttctgcgatcctcagagtccttggcagcggggaacaaatgagaacacaaatgggctaattcggcagtactttcctaaaaagacatgtcttgcccaatatactcaacatgaactagatctggttgctgctcagctaaacaacagaccgagaaagacactgaagttcaaaacaccgaaagagataattgaaaggggtgttgcattgacagattgaatctacactgttgaaattcagaatttaggttttgcttttgttactggtgaaaatacaacaggtataaatagtggcacgatctcgttattacaaaatggtaaagatccggcaccgtctcccattgttttactggctactaacggagggagcgccactaatgcaggtacgatcacaggtaaagtgacggaacaacatagcgtatttaacaagtattcaacgggcacatcgaattcatttatttttaataacgatgtcagtagcataacagggttagtcgctcaatcgaatagcacaattatcaatactgacagcggcatcattgatttgtatggtcgtggtagtgtcggcatgcttgctatagcagattcaacagcagaaaatcagggtaaaattacactggattctatgtgggtagatgcaaatgacactaccgcaatgcgagatatagctagcaacagcgccattgacttcggtacaggtgtgggagttggtactgatagttatagtggtgcagggaaaaatgcaacagcaattaaccaattgggcggtgttataactatttataacgccggcgcaggtatggcggcctatggcgccagcaatacagttattaaccaggggacgattaacctcgaaaaaaatggtaattatgacgatagtctggcagcaaatactctggtagggatggctgtttatgagcatggtactgctatcaacgaccagacgggtgttatcaatatcaatgttggtactggtcaggcgttttataacgatggcacaggaacaattgttaactatggtacaatctgcactttcggcgtgtgccaatcggggaatgagtacaataatacagatgatttcacctcactgatctataccggtggcgatacgattacacgaagcggagaaactgtaacgctaaataaatctgctgctgtgactgataagctggctgggaatgttgttaatagcggaacgctttccggtgatcaaattacggtatcaagcggtcttctggaaaataccagcggtggcatcatcaataacttagtaaaacttgacaagggtgccgtcattaaaaatgccggggtgatgacgaataacgtcgatgttagcggtggaatcctcaataatgccggagaaatgactgcgcaaattaccatgaatgctggtgctgatagttcgttagtgaacaacaccggaaccatcaataaaatcgtgcagaacgcgggggtattcaataatagtggcagtgtaacagggcggatgatgtcggctggcggggtctttaataatcaaactgacggggcgattatgagaggtgctgcgctgacaggtactgcagtggcaaataacgaaggaacctggaacctcggaagtagtagtgagggtaacaacaccgggatgctggaagttaataataattcagctttcaataaccgcggcgagtttattcttgataacgacaagaatgctgtgcacatcaaccagtccggtacgctttataataccggtcacatgaacatcagtaattcttcccacaacggagccgttaatatgtggggcggaaatggtcgttttatcaatgacggaacgattgatgtttctgcgaagtcactggtagtcagcgctaataatgccggcgatcagaatgccttcttctggaaccaggataacggggtcatcaacttcgatcacgacagcgccagtgccgtgaaagtcacccacagcaactttattgcccagaatgacggcatcatgaacatcagcggcaccggtgctgtggctatggaaggtgataagaacgcgcagctggttaacaatggcaccatcaacctcggtaccgcaggcactactgacacgggtatgatcggtatgcaactcgatgccaacgccacggcggatgcggtaatcgaaaacaacggcaccatcaatatcttcgccaatgactcgtttgcatttagcgtactgggtacagtaggtcatgtggttaacaacggcacggtggtgattgccgatggggttacgggttctggactgatcaagcagggcgacagcatcaatgttgaaggtatgaacggtaacaacggtaatagcagcgaagtgcattatggcgactatacgttgccggatgtgccgaagcccaatacggttagtgtaacgtcgggaagtgatgaggctggtggcagcatgaacaacctcaacggctatgtcgtcggtaccaacgttaacggcagcgccgggaagctgaaggttaacaatgccagcatgaacggcgtggagattaacacgggctttaccgctggtacggcagacaccactgtgagttttgataacgtagtggaaggtagcaacctgaccgacgctgacgccatcacctcaacgtccgtggtatggactgccaaaggcagcaccgatgccagcggtaacgttgacgtcaccatgagcaaaaatgcctacaccgatgtggcaacagatgcctcggtgaatgacatcgcgaaagcactggatgcgggttacaccaacaacgaactgtttaccagcctgaacgtcggcacgactgctgaactgaacagtgctctgaaacaggtcagcggtagccaggcgaccacggtattccgcgaagcgcgcgtgttaagcaaccgctttagtatgctggcagatgccgcgccgaaagtgggtaacggtctggcgttcaacgttgtcgcgaaaggcgatccgcgtgccgagttaggtaataataccgaatacgacatgctggcattgcgtaaaactatcgacctgagcgaaagccagacgatgagtctggagtacggtatcgctcgtctcgatggtgatggtgcgcagaaagcgggtgataatggcgttacaggcggttatagccagttttttggcctgaaacatcagatgtcgttcgataacggcatgaactggaataacgccttgcgttacgacgttcacaaccttgacagcagccgctcgattgcatttggcaacacgaacaaaacggctgataccgacgtgaaacagcagtacctggagttccgcagcgaaggggcgaagactttcgaaccgagcgaaggactgaaggttacgccatatgcgggtgtaaaactgcgtcacacactggaaggtggctatcaggagcgcaatgccggagactttaacctgaatatgaacagtggcagcgaaacggcggtggacagcatcgtcgggctgaaactggactacgcaggtaaagacggctggagcgctagcgctacgctggaaggcgggccgaacctgagctacgcgaagagccagcgtacggcaagcctggcaggcgcaggcagtcagcactttaacgtcgatgacggtcagaagggcggcggcatcaatagcctgacaagcgtcggcgtgaagtacagcagcaaagaaagttcgctgaatctggatgcgtacaactggaaagaggatggcatcagcgataaaggcgtgatgctgaacttcaagaaaacgttctaatttttagcatgtgatccctaaaccgcaacgctgatacaggttgcggtttttttattgccggatgtggtacgtgacgcgttttgttttgtgtctttcaggacaatagagcaactcatccagtaatcttgtttacaccttcgcattatttatctcttttcgtttctatactgatttttcttaatccgttttattacagggcagggtgcgatgagcagcaatacatttactctcggtacaaaatccgttaaccgtcttggttatggcgcgatgcaactggcaggtcctggagtttttggccccccacgagatcgccacgtcgctataaccgtgctgcgtgaggcgctggcattgggcgtcaatcatattgataccagcgacttttatggtccgcacgtcaccaatcagattatccgcgaagcgctttatccttactctgacgacctgacaattgtcactaaaattggtgcgcggcgtggagaggacgcatcctggttgcccgcattttctccggcagagctgcaaaaagcggtgcacgataatctacgtaatctcgggctggacgtgctggatgtggttaacctgcgcgttatgatgggggatggtcatggcccagcggaaggatcgattgaggccagcctgaccgtgctggcagagatgcaacaacaaggcctggtaaaacatattggcctgagcaacgtcacaccgacgcaggttgcagaggcgcgcaagattgccgaaattgtctgtgtgcaaaacgaatacaacatcgcgcaccgtgctgatgatgcaatgattgatgctttggcccacgatggcattgcctacgtgccgttcttcccgctcgggggctttacaccgctgcaatcgtccacactttccgatgttgctgcgagcctgggtgcaacaccaatgcaggtggcgctggcgtggctgttacagcgttcaccgaatattttgctgatcccagggacgtcttcggttgcgcatttacgggagaatatggctgctgaaaaattgcatctttctgaggaagtgttgtctacgttggatggtatttcgcgagaataacgaatatacaaaagggaaagatgcatttccctttttttcttttttaatggcatggagtgcatatgttgaaggccaggaattgcggctggatacgtttactgcccctgtttatgctgagtctaccagtacaggcggaacttcgatgtgttgcaaatgcagttgatattgaatcatttttttctgcggctaccgctgaagataaacaacaagttgaacaagctatcaacagtagcgtgaatcttgtccccttcggtttatctgcatcgaactggaaagtgcatcgtggcgatttagtggtagaaggtaatatagagagtaatcaaaaattgattgttcttgggaatttgacagtcaaaggtaatatttccactttctctctttctaatccatgggttattctcggtaacgtgacggcaacgaatatagttgcggattcaccactgttaattaccggttcgataaatgcaagtggactggtatttatcgactcatattacgataatccgtctacgattaaggggagtattaatgcgcgtgggatatttatcaatgacataattgcacctgttgttgcgtcttcgacaaatagtgaattcatggtccgtgcgagtgacaaacatgacactgaaaatgtcaaaaaagcgctgatgataataaatcctgatgcatattattgggggctaattaatgatgaagatgctctgaaagaaatttttaagcgaagcaatattcgcatggcagggaatgtctgtaatcagatgaaaaaagaagcgctgtttcgccctaagccttctcctgagttagtgcaagaattgcaaatgctggatgaaggcaaagttgctgcatttgaaggacgagacattgcgacatttgatcttgccgtaatgcgaactctcccaaggcttaaaggaatttcagctaacctacgcaaacaacttattaatagcaatgatgaacaaacgattgaaagtatggcgagatatatgcctgacaatgagattctggagttgaccgatcagcaattgggttaccagcctgttgttctggggttgctcgaccgtgaaccgctctctgtcgaaataatgacgcgaatgagtcgtctacctgatggtgtcggtccgttgaatcttgcgctacgtgaaaatctccctctggatatcgtcatgactctggcgaaaagagattgggatatgatcattcaggagctttataaagatgcgtggttattgcctgaatccattattgatggctatatccgcagtgatgattcctctattcgtcaggtcggtgctggaggacaactcacctacaatcaggcaatgcagttggcgaacgattcatcaaacaatgttgtcacaagcttagcgttcaagctggcagagatgaaacaccatggtcaattgttgcggatgacgccacaagagagtgacaaagttgcaggctatttataccaaaaattcgagaatgacgatgatctaatacgtgtgttatttttagcattgccagataacttacagtttaattttgttaaaaggatggagaaaaaatccccggcctacttttgctgtcgggatatgcaggtaattcactctgacgctgctttacaacggttattgacacgtttcaacgatcctgaagggtggagtaatctggcgaaaaatcagtatctgagcacgtcgatgaaacaaaaaatttggcaacgtgctttatcgcatcggaaaaataatccgaaagcagattcagatgcatatgaaaccagcgctgatatgattttgtctgagctgattagccacggcgaagttgatgaccagatgctattaaatgccaccgccctgatacgttcggacgactgggactttttagagagtgcattaattagttgggataatttacccgctgttgttctcaaggaattacagcaaaacacgccacgcaatgatatttgggcgaagttttttctgaggcaggaaaacagttcccgtgcgcaggttgacgaagcgttacgtgtttattatgcactagaccccgatgcgttagcacaactggatgtactggcaaaacaaccggatcgtatatggtggagtacactggcgaaaagcaatctcacatttttcaagttcggcgcacttaacaaccgccacacaccgcctgcagtactggcggcagaaattgatcccgagtggtggattgtggcgatgaataatccccgttttccagttgatgtattaaaggcgaggctgaaacgtgatcctttgctggcgttagagcttgttaaccctgaactggatttagtccgccagctggcgcttaacggtaagacgcgcgcaatacgggaacaagcgatgagaaaacttgatgagttgtattgatccacaacgtaatgttttttaactatctgattaattggggataatcattcctgacagtgagtccccaataccttgatatattctgaatttttaatgaaacggcgtgttgcgatatctccgtcaggggaattgatgcaccatagcgcaaaccgaattatcaaggattgataatgacgctctaccagataaaaccgctctttcagtcgctgttaaggccgacgatgttttggctttataagcaccacgttacagcgaatcacatcactcttgctgcactggcgctttctcttcttaccggattgctgttgatgttggcggcacaacccatcctctttttgctattgcccatcgtgctttttatccgtatggcgctcaatgcgctggatggcatgttggcgcgtgagtgcaaccagcaaacacgtctgggggcgattttgaatgagactggcgatgttatttccgatattgcgctctatttaccatttttatttttaccggaaagtaacgcatcactcgtgatactcatgttattttgcaccatattgaccgagttttgcggtttactcgcgcagacgattaacggtgttcgcagttatgccggtccatttggcaaaagcgatcgcgcgttaatatttggtctgtggggtctggccgttgccatttatccacagtggatgcagtggaataatcttttatggagcattgcttcaattctgcttctctggactgcgattaatcgttgtcggagtgtgcttcttatgagcgctgaaatataatgctggaaaaatctctggcaacacttttcgcgttgttaattttagcaacgctgataaaccgttttctgctatggcggttaccggagagaaaagggggtgaggttacattacgtattcgtacctggtggggcatcgtcatttgtttttcaatggtgatttcaggtccacgctggatgacgttgacgttttttgcgctgataagttttctggcattgaaagaatattgtacgcttatatctgtacattttccgcgttggttatattggggtattcctcttaactatttgcttatcggttttaattgctttgagctgtttctgttatttatacctttggctgggtttctgatattagccaccgggcaagttttagtgggtgacccctctggttttctgcataccgtgagcgccattttttggggctggataatgaccgttttcgccttgagtcatgccgcctggttattaatgttgccaaccacaaatatccagggcggggcgttactggtgttatttcttttggcattaaccgagtcaaacgatattgcacagtatttatggggaaaatcctgcggcagaagaaaagtggtccctaaagtcagcccgggaaaaacattggaaggtctgatgggcggcgtcatcaccatcatgattgcgtcactgattatcggaccgttactgacaccgctaaatacattacaggcattattagcgggtttgttaattggtattagtggtttttgcggcgatgtcgtgatgtcagccatcaaacgagatattggtgttaaagatagcggaaaactattgccaggacatggcggactccttgacaggattgactcattaattttcaccgctccggtatttttttattttatacgctactgctgttactgaaggaaaatagagaaaatggaaaattcacgcatccctggggaacatttttttaccaccagtgataatacagcgttgttttatcggcactggcccgctttacagcccggggcgaaaaaggtcatcgtcttatttcatcgcgggcatgaacattctggtcgtctacaacatctcgttgatgaactggcgatgccagatactgctttttatgcctgggatgcccgagggcatggaaaaagttcggggccgcgtggttatagcccatctcttgcgcgttcagtgcgggatgtcgatgaatttgtccgttttgctgccagcgacagccaggttggactggaagaggtggtagtgatcgcgcaaagcgtcggcgcagtgctggttgccacatggattcatgattatgcacctgcaattcgcgggctggtgctggcttctccggcctttaaggttaaattgtatgtgccgctggcacgtcctgcgctggcgttatggcatcgtctgcgtggtctgttttttattaattcctatgtgaaaggacgctatttgacccacgatcggcaacggggggcgagtttcaataatgatccgctgatcacacgggcgattgccgttaatatcttgctcgatctctacaaaacgtctgaacgtattattagagatgcggcggcgattacgctccccacgcaacttctgatatcaggcgatgactatgtggtgcatcgccaaccgcagattgatttttatcagagattacgtagccctctgaaagagctgcatctgctgccaggcttttatcacgacacgttgggtgaagagaacagggcgctggcatttgaaaaaatgcaaagctttattagtcgtttatatgctaacaaatcgcaaaaatttgattatcagcatgaagactgcacaggaccatcagcggatcgatggcggctactttctggtggacccgtgccattatcgccggttgatttagcgtatcgctttatgcgaaaggcgatgaaattgttcgggacgcactcttcgggcctgcatctcggaatgagcaccggctttgattcaggcagttcgctggattatgtctatcaaaatcaaccgcaaggtagtaacgcattcgggcgtttagtcgacaaaatctacctgaacagtgttggctggcgcggtattcgccagcgcaaaacccatttacaaatactgattaaacaagccgttgccgatctccacgccaaaggtttagccgtccgcgtggttgacattgccgcagggcatgggcgctatgtactggatgcgctggcaaacgagcctgccgtaagcgatattttgttacgtgattacagcgagttaaatgttgcacaggggcaagagatgattgctcaacggggaatgtctgggcgggtgcgttttgaacagggcgatgcgtttaacccggaggaactcagcgcgttaactccgcggcctacgctggcgattgtctctggcctgtatgagctttttcccgaaaatgagcaggtaaaaaactcactcgcaggtcttgccaatgccatcgaaccgggcggcattctcatctacaccgggcagccgtggcaccctcaactggagatgattgccggggtgttaaccagtcataaagatggtaaaccgtgggtaatgcgcgtgcgttcgcaaggggagatggattcactcgtgcgtgatgccggatttgataaatgcacacaacggattgatgagtggggtatttttacggtttcgatggcggtgcgtcgtgataactgaacgtcggaacgtattgctacaaggcgctggctggttattgttgctggccccgtttttcttcttcacctatggatctcttaatcagttcaccgcggttcaggaccttaacagccatgatatccccagtcaggtattcggttgggaaacggcgatcccttttcttccctggactattgttccttactggagtctggatcttttatatggattttcgctgttcgtttgtagcacgacattcgaacagcgccgacttgtccaccggcttattctggcaacggtaatggcctgctgcggttttttgctctatccgctgaagtttagttttatccgtcctgaagtgagtggggtgacgggatggctattttcgcaacttgaactgtttgatctgccttataaccagtctccttcgctgcatattattctctgctggctactttggcgtcactttcgtcagcatctggctgagaggtggcgtaaagtctgcggcggatggtttttactcatcgccatttcgacgctgacgacctggcagcatcattttattgatgtcatcacagggctggcggtaggtatgttgattgactggatggtgcccgtcgaccgtcgttggaattatcagaaacctgatcaacgtcgaatcaaaatagcactgccctatgtcgtaggcgcgggctcgtgcattgtattgatggagctaatgatgatgattcagttatggtggtcagtctggttatgttggccagtattatcgctactcataattggccgtgggtacggtgggcttggcgcgataacaacagggaaagatagtcaggggaaactaccgcccgccgtttactggctgacattgccctgccgcatcgggatgtggctgtctatgcgttggttttgtcgtcgcctggagccggtgagcaaaatgactgctggtgtttatttaggggcgtttccacgacatattccggcacagaatgcggttctggacgtcacctttgaattccctcgcggacgagccacaaaagatcgactctatttttgtgtaccgatgctggatctggtggttccggaagagggggagctccgacaggccgtggcgatgctggaaacattacgcgaagagcaaggcagcgttctggtccattgtgcattgggattatcgcgcagtgcgctggtggtggcggcatggttgttatgttacggacactgtaaaaccgttaatgaagcgattagctatattcgagccagacgcccgcagattgtgctgacagacgagcacaaagcgatgctgagattatgggaaaacaggtaagtggattgagatgtggactgaatatctacagtccacatcaagaccgtgtccggttatgcagaaacaatgctgtcgatggctgcttttgcgtcagactgtgctttcgctgccatttccggaccgtatgcgatcccttcggcgaagacaaatttcacatcggtaatgccgataaagccgaggaacgtggacagatacggcgtcaccaggtccgttggtccatctttgtggatcccgccgcggctggtaataacgatggcttttttacccgttaccagaccttccggaccgttctcggtatagcggaaagtaacgcctgcgcgggcaaccaggtcaaaatagtttttcaactgagtcgagatgttgaagttatacatcggtgccgcaataacgataacgtcgtgggctttcagctcggcaatcaactcatcggaaagtgccagagcttcctgctgacgcggagtcagcggcgcatcgctcggacgcagagcgccaaccagttcgccatccagtaccggaatcggatttgcagccaggtcgcgaacggtgatttcatcagcggagtgcttttcgcgccattgttcaacaaaataatcggacaactgattagactgagagtaccctgccaggatgctggatttaagaactaataccttgctcatggtgtttccttatagatgtttgaatgggcgatgccccgttgcttgttgacactttattcacaatcctgccacagagatagcgcaataaatcgaagcctatgttcgaatttattgaacaacgcatagaaagccgcgatgtggtactctatatctatcatttaaaagaaaattaatcaggcagactactgcccactaacgttatgacagaacaacaaaaattgacctttacggccttgcagcagcggctggattcgctgatgctgcgtgacagactgcgtttttctcgccgtctgcacggcgtgaagaaggttaaaaatcctgatgcacaacaggccattttccaggagatggcgaaagagattgaccaggcggcagggaaagtcctgctgcgtgaagcggcacgaccggaaattacttatcctgacaatttaccggttagtcagaaaaaacaggacattctcgaagcgattcgtgatcaccaggtggtgatcgtcgccggggaaacgggttctggtaaaacgactcagttaccgaaaatctgtatggagctggggcgcgggattaaaggactgatcggccatacccagccgcgtcgtctggcggcaagaacagtggcgaaccgtattgcggaagagctgaaaacggagccgggcggttgcatcggttacaaagtgcgtttcagcgatcacgtaagtgataacacgatggtcaagctgatgaccgacggtatcctgctggcggagatccagcaagaccgcctgctgatgcagtacgacactatcattattgacgaagcgcacgaacgcagcctgaatatcgattttttgctcggctatttgaaagagttgctgccgcggcgtcctgacctaaaaatcattatcacttccgcgactatcgacccggaacgcttttcgcgccactttaataatgcgccgattattgaagtctccggtcggacctatccggtggaagtgcgctatcgcccgattgttgaagaagccgatgacaccgagcgcgatcagttgcaggcgatttttgacgccgtagacgaactgagtcaggaaagccatggcgacattctgatctttatgagcggcgagcgggaaatccgcgataccgccgatgcgctgaacaagctgaacttacgccataccgaaatcttgccgctttatgcgcggctttcgaacagcgaacaaaatagggtattccagtcgcacagcggacggcgcattgtgctggcgaccaacgtcgcggaaacgtcgctgaccgtaccggggattaaatacgttatcgaccccggtacagcgcgtatcagccgctacagctatcgcaccaaagtgcagcgtttgccgattgagccgatttcccaggcgtctgccaatcagcgtaaaggccgctgtggtcgtgtgtccgaagggatctgtattcgtctctattccgaagacgatttcctctcgcgcccggagtttaccgatccggagattctgcgtaccaacctggcctcggttattttgcagatgaccgcgctggggctgggcgatatcgctgcgttcccgtttgtcgaagcaccggataaacgcaatatccaggatggcgtgcgtctgctcgaagagctgggcgcgatcaccactgatgaacaggccagcgcctataaactgacgccgctcggtcgccagctctcgcagttgcctgtcgacccacgtctggcgcgtatggtgctggaagcgcaaaaacatggctgcgtgcgtgaggcgatgattatcacgtccgcgctctccattcaggatccgcgcgaacgtccgatggacaaacagcaggcatcggacgaaaaacatcgtcgcttccacgacaaagagtctgactttctcgcgtttgtgaatctgtggaattatcttggcgagcagcaaaaggcgctttcttccaacgccttccgtcgcctgtgtcgtaccgattatctcaactatctgcgcgtgcgcgaatggcaggatatctacacccagttgcgtcaggtggtgaaagaacttggcattccggttaacagcgaaccggcggagtatcgcgaaattcacattgcgttgctgaccggtttactttcccatatcggcatgaaagatgccgataaacaagaatataccggcgcacgtaacgcgcgtttctccatcttccccggttctggtttattcaaaaaaccgcctaaatgggtaatggtggcggaactggtagaaaccagccgcctgtgggggcgcattgctgcgcgtatcgacccggaatgggtggagccagttgctcagcatttgattaaacgcacctacagcgaaccgcactgggaacgggcgcagggcgcggtgatggcaacggaaaaagtcactgtttatggtttgccgattgttgccgcgcgcaaggtcaactacagccagatcgatccggcgttatgtcgtgaactctttattcgccacgcgctggtggaaggtgactggcagacgcgtcacgcattcttccgtgaaaacctgaaactacgggcggaagtagaagagctggaacacaaatcacgtcgccgcgatattctggttgatgacgaaacgttgtttgagttctacgaccagcgcatcagccacgatgtaatctccgctcgccacttcgacagctggtggaaaaaagtcagccgcgaaacgcctgatttgctcaactttgaaaaaagcatgttgatcaaagagggcgcagaaaaaatcagcaagctggattacccgaacttctggcatcagggcaatctcaagctgcgtttgagctatcagtttgagcccggcgcggatgctgacggtgtgaccgtacatattccgctgccgttacttaaccaggttgaggaaagcgggtttgaatggcagatccccggtctgcgccgcgaactggtgattgctctgattaaatcgttgccgaaaccggtacgccgtaattttgtacccgcgccaaactatgccgaagcgtttttaggccgcgtcaaaccgctggagttaccgttgctcgacagccttgagcgcgagttacggcggatgaccggcgttaccgttgaccgcgaagactggcactgggatcaggtgcccgatcacctgaaaattaccttccgcgtggtggatgacaaaaacaagaagctaaaagaagggcgctcgctacaagatctgaaagatgcgctgaaaggcaaagtgcaggaaacgctatctgcggtggcggatgacggtatcgagcagagcggcttacatatctggagttttggtcagctgccggaaagctacgaacagaagcgtggcaactacaaagtgaaggcgtggccggcgctggtggatgagcgcgacagtgtggcgatcaaactgtttgataacccgctggagcaaaagcaggcaatgtggaacggtcttcgccgtctactgctgctgaatattccatcgccaatcaaatatttacatgaaaagttaccgaacaaagccaagctgggactgtactttaacccgtatggcaaagtgctggagctgatcgacgactgtatctcctgcggtgtggataaattgatcgacgccaatggtggcccggtctggacggaagaaggctttgctgcgctgcatgaaaaagtgcgtgccgaactgaacgacacggtggtggatattgcgaagcaggtcgagcaaatccttacggcagtgttcaatatcaacaaacgtctgaaagggcgggtggatatgaccatggcgctggggctttctgacattaaagcgcagatgggcgggttggtatatcgcggttttgtcactggtaacggcttcaaacggctgggcgacacgctgcgatatttgcaggcgattgaaaaacggctggaaaaactggcggttgatccacatcgcgaccgtgcgcagatgctgaaagtcgaaaacgtccagcaggcgtggcagcaatggatcaacaaactgccgcccgcacgtcgtgaggatgaagacgtgaaagagatccgttggatgatagaagagttgcgcgttagttacttcgctcaacaacttggtacgccttatccgatttcagataagcgtattttgcaggcgatggagcagattagcggttaaccctgctatttgcctgataaagaaaaaacccggtaagcatttagcgccgggttttttattaattctaaaacggtaagggtaaaaattcaggaattcagaaaaatacaattctctgctgcaagatgaataatgtttatctacagcatttccttaaaagatatgtcaggcttgcggagtggcggttaaggacatacgatttcctcctttcagagtgctccgcttctcactattatctcacgcagtattcttaagggaacgataaggaggaaccatgaacattaccccgtttccgacgctttcgccggcaactatagatgccataaatgttatcggacagtggctggcgcaggatgatttctccggtgaggtgccgtatcaggccgattgcgtgatccttgcaggcaatgcggttatgccgactatcgatgcggcatgtaagattgcccgcgatcagcaaattcctttactgattagtggtggtatcggtcactcgacaacttttttgtatagcgccatcgcacagcatccgcactacaacactatccgcaccactggcagagcagaagcgaccatcctggcggatatcgctcatcagttctggcacattccgcatgaaaaaatctggattgaagaccagtcaacaaactgcggtgaaaacgcacgctttagcatcgcgctattgaatcaggccgtagaacgagttcatacggctatcgttgttcaggaccccaccatgcagcggcgcacgatggcgacgttccgccgtatgactggggacaatcccgatgcaccacgctggttaagttatcccggattcgttcctcagttaggaaataacgcagacagtgtaatctttattaatcagttacaaggattatggccagttgagcgttatctctcactactcactggcgagctgccgcgtttacgcgatgatagcgatggctacggtccccgcgggcgagattttatcgttcacgttgattttccggcagaagtcatccatgcatggcaaacgctgaaacatgatgcggtgctcatcgaggcgatggaaagtcgctcgttacgttaaaaattgcccgtttgtgaaccacttgtttgcaaacgggcatgactcctgacttttatttctgccttttattccttttacacttgtttttatgaagcccttcacagaattgtcctttcacgattccgtctctctgatgattgatgttaattaacaatgtattcaccgaaaacaaacatataaatcacaggagtcgcccatgtcagtacccgttcaacatcctatgtatatcgatggacagtttgttacctggcgtggagacgcatggattgatgtggtaaaccctgctacagaggctgtcatttcccgcatacccgatggtcaggccgaggatgcccgtaaggcaatcgatgcagcagaacgtgcacaaccagaatgggaagcgttgcctgctattgaacgcgccagttggttgcgcaaaatctccgccgggatccgcgaacgcgccagtgaaatcagtgcgctgattgttgaagaagggggcaagatccagcagctggctgaagtcgaagtggcttttactgccgactatatcgattacatggcggagtgggcacggcgttacgagggcgagattattcaaagcgatcgtccaggagaaaatattcttttgtttaaacgtgcgcttggtgtgactaccggcattctgccgtggaacttcccgttcttcctcattgcccgcaaaatggctcccgctcttttgaccggtaataccatcgtcattaaacctagtgaatttacgccaaacaatgcgattgcattcgccaaaatcgtcgatgaaataggccttccgcgcggcgtgtttaaccttgtactggggcgtggtgaaaccgttgggcaagaactggcgggtaacccaaaggtcgcaatggtcagtatgacaggcagcgtctctgcaggtgagaagatcatggcgactgcggcgaaaaacatcaccaaagtgtgtctggaattggggggtaaagcaccagctatcgtaatggacgatgccgatcttgaactggcagtcaaagccatcgttgattcacgcgtcattaatagtgggcaagtgtgtaactgtgcagaacgtgtttatgtacagaaaggcatttatgatcagttcgtcaatcggctgggtgaagcgatgcaggcggttcaatttggtaaccccgctgaacgcaacgacattgcgatggggccgttgattaacgccgcggcgctggaaagggtcgagcaaaaagtggcgcgcgcagtagaagaaggggcgagagtggcgttcggtggcaaagcggtagaggggaaaggatattattatccgccgacattgctgctggatgttcgccaggaaatgtcgattatgcatgaggaaacctttggcccggtgctgccagttgtcgcatttgacacgctggaagatgctatctcaatggctaatgacagtgattacggcctgacctcatcaatctatacccaaaatctgaacgtcgcgatgaaagccattaaagggctgaagtttggtgaaacttacatcaaccgtgaaaacttcgaagctatgcaaggcttccacgccggatggcgtaaatccggtattggcggcgcagatggtaaacatggcttgcatgaatatctgcagacccaggtggtttatttacagtcttaatgagtgaaagaggcggaggttttttcctccgcctgtgcgcgtcagagtttagcgaatttttcgagggtgcgaataagctgtgtgacgaagccatattcgttatcgtaccaggcgaccgttttcaccagttgtaaatcgcccacggcggtaatttccgtttgcgtggcatcaaacaccgaaccgaaatggctgccaatgatatcggaagagactatttcttcatcggtataaccaaatgactcgttattggtggttgcttgtttaagtgcgttattcacctcttcggcagtcacttttttccgagaatcgataccagttcagtgaccgaacctgttttcaccggcacgcgttgcgcatgacctttcagtttgccgctcagttccgggatcaccagaccaatggcttttgccgcccccgtagtgtggggaatgatattttctgccgctgcgcgtgaagcacgtaaatctttaccacgcgggccatccaccagtgactgggtgccagtataggcatgaatggtcgtcatcgtgccgacttctatcccgaaactgtcatgcaaggctttggccatcggcgcaagacagttagtggtgcatgacgccacggaaacaatggtgtcgttgccatccagagtgtcgtcattgacgttataaacgatagttttcatttcaccggcaggggcggaaatcaacaccttcttcgcaccagcatcaagatgcgcctgcgatttctcggcggaggtataaaagccagtacattcgacaatgatttctgcacctttcgctttccacggaatatttttagcctctttttcggcgtaaaccgcgatacttttcccatcaacgataagtgaatcttccgtaaaatcaacgctccaggggaatggtccgtagtttgaatcatgtttcagcaggtaggcgagaatttatggggaagtgagatcattaatagcgacaacgtctatgttgcttttgacttcaagtaatcgacccaacaccagtcgaccgatacgaccaaaaccgttaataccaactttactcatggttttctcctgtcaggaacgttcggatgaaaattgatcctttccaagcttagaccaggatggcgggatgggcaatctccattctcacagtgaaacgtaacgtactgaaaacgggtgaacaatatttaatgaaattttgagaaaagcccgttatgttaacggaaaattatgttaaagcaggaaatgttatggaaaataaatattcaaggttacaaatcagcattcactggctggtctttttactggttatcgcagcgtattgcgcaatggagtttcgtggtttcttcccacgtagcgatcggccactcatcaacatgattcatgtttcctgtggcatctcaattctcgtgctgatggtcgttcgtcttttgttaaggctgaaatacccaaccccgccgattatacctaagccaaaaccgatgatgacgggactggcgcatttgggacatttggtgatttatctcctgtttattgcgctgccagtgattggtttggtgatgatgtataaccggggcaacccgtggtttgcgtttggtttgacgatgccttacgcttcagaggccaatttcgaacgggtagatagcttaaagtcgtggcatgaaacgctggcgaatctgggatattttgtcatcgggttgcacgctgcggctgcactggcacaccactatttctggaaggacaacacacttctacgcatgatgccgcgtaaacgttcctgaaggatatttaaagaaaacgcctgtactaaaaccgacccgtggtacaggcgaagaatacgggtctacatcggaagcgcctattatatttatttgtatgataaataaaaccataatccttgcccatacgtccatctggcttatttttaatcaattcacccgatctttgatctcatcaacggtatcaaaataaaccagcgtataacgttcaaatcgaacataagattcgataaaccatggaggttatatgaaaaaactggcacttattttgtttatgggaacgcttgtttccttttatgccgatgccgggcgcaaaccctgttctggttcgaaaggggggatctcacactgtacggcaggcggcaaatttgtctgtaatgatggttctattagtgcatcgaaaaaaacatgcactaactgaagtgtaaaaggggtgccatgagaaaatgaatctgctagtcaaatgcgcggggaaaatccccgcgcttgcccttacctggacgtgcaggccatgagcgcagcaacctccttatcaccgtcccggaaccgcagttcgtagagcgtttgtcgggtcaggagtgtgaatgtcagaatcgtaatgcagataatgagcagacacaccaccagagggttgtgcttcatagcctttctccttgccggatggcgggtaagaggctaagatctgaattgctaggttcattcgttggcctcggttgatagaaatatcggtcggggccttcgtctttctgattcccggttagcctgaaaacagaaagtctcaggcacccgcaggcatcctatgaggtttccttagggacgaaaataatcacttcacgaaattgcgtgctgttttccagaatttttcgtcattcgggttagccagtttagccattcgttactctcttcattccaatagcattaattttctatgcaataattgttgtaaaaatgtgacgcaaagaggtttttggtcataagtaattaccgtcaagtgccgatgactttctatcaggagtaaacctggacgagagacaacggtaatgaatacaactccctcacagcgattaggttttttgcatcacatcaggttggttccgttatttgcctgcattctaggcggtatcttagttctattcgcattaagttcagccctggctggctatttcctctggcaggccgatcgcgatcagcgtgatgttactgcggagattgagattcggaccgggttagcgaacagttcagattttttgcgttcagcccggatcaatatgattcaggccggggctgcgagtcgtattgcggaaatggaagcaatgaagcgaaatattgcgcaagccgaatcggagattaaacagtcgcagcaaggttatcgtgcttatcagaatcgaccggtgaaaacacctgctgatgaagccctcgacactgaattaaatcaacgctttcaggcttatatcacgggtatgcaacctatgttgaaatatgccaaaaatggcatgtttgaagcgattatcaatcatgaaagtgagcagatccgaccgctggataatgcttataccgatattttgaacaaagccgttaagatacgtagcaccagagccaaccaactggcggaactggcccatcagcgcacccgcctgggtgggatgttcatgattggcgcgtttgtgcttgccctggtcatgacgctgataacatttatggtgctacgtcggatcgtcattcgtccactgcaacatgccgcacaacggattgaaaaaatcgccagtggcgatctgacgatgaatgatgaaccggcgggtcgtaatgaaatcggtcgcttaagtcgtcatttacagcaaatgcagcattcactggggatgacagtagggactgttcgacagggcgcggaagagatttatcgtggcaccagcgaaatttcagctggcaatgcggacctgtcatctcgcaccgaagaacaagcggcggctatcgaacaaactgccgccagcatggagcaactcactgcgacggtgaaacagaatgcggataacgcgcatcatgccagcaaactggcgcaagaggcttctattaaagccagcgatggcgggcagacggtttccggtgtagtaaaaacgatgggcgctatctccacgagttcgaagaaaatttctgagatcaccgccgtcatcaacagtattgctttccagacgaatattctggcactgaatgctgccgttgaagccgcgcgagcgggtgagcaagggcgtggatttgccgttgtcgccagcgaagtacggacactcgcaagtcgcagcgctcaggcggcgaaagagattgaaggcttgatcagtgaatcagtcaggttaattgacctggggtcggatgaggtggcaacggccgggaaaaccatgagcactattgttgatgccgtcgcgagtgtcacacatatcatgcaggaaatcgccgccgcctcggatgaacaaagtagaggcataacgcaggttagccaggcgatttctgaaatggataaggtgacgcaacagaatgcttctctggtagaagaggcctcagcggcggcggtgtcccttgaagaacaggcggcacgattaactgaggcggtggatgtattccgtctgcacaaacattctgtgtcggcagaacctcgcggagcgggtgaaccagttagtttcgctacggtgtgaaaatgttcaaggagggatcgacagatcccttcacctttcagaacggcattgattttcgaatagcgttaatcatcaactggcaaccagaagagaacgtcgcatctacgcgggtcagtattccaatcggttcgcctgcaccatgtcccggaacaggcagggccaccagcgtggcatgacgcaggtcgtcttttacagcgccagaagggacaaaccacacgtaatcgtattcaaccgtaagttgacgagatagcgaagcagacagcgtttcgatacaacccgaaggaattttacagccctggctctgcactaatgcatctgaatgctggcgtggcgcagtgccttctggtgatacaacgaccggccattccagcacccggcttagcgttacgttctcctgaagtagcgggtgattagggcggacaaccagcttcaacgattcaagaaacagcagttcgtaattaagcccggtcatcagttcaggatctgacatccgaccaatgccgatatcgatttccccggtttttaaacccgccagaatcatagggttactcattgtcgcaacttgcaaggtcgtctctttttgttgctgatgaaactgacctataaccgaaggtaatatccccagtgccgcagtaggtagtgcaccaaccctgacgacatcattattaagaccttctttacgatgaagcgaccgtccggcagtgttgatggcgtcaagaactctgactgcatgcgttaaaaattgttcgccgggtaaggtaagttgcgccccctgacgaccacgctcaaacaagcgagcgccagtcagctgctccagttcattcaatgtcttagagagcgcaggttgactcaaattaagggtttcagccgcgcgccccaaagttccttgttgtgcgacagctacgaatgtatgaaggtggcgcaaacggatgcgctgactaaacagactatttttttccataagcgatgttaaaaacgaagcggtgtcgctgacaagtgaagttgtttgattatgataacttgattgcaaaatattattaacaattaaagcaattatgttacagcaaaatggataatattgatgttttcgcggcgagatcacagtttgtaaattcttcccgcaagagtgaatgcggttacctacactccagattactgaccactggaggcagacactatggcgaacagcatcacggcggatgagattcgggaacagttttcgcaggcaatgtcagccatgtaccagcaagaagttccgcaatatggcacgctgctggaactggtagctgatgtgaatctggctgtgctggaaaacaatcctcaactgcacgaaaaaatggtaaatgcagacgagctggcgcgactgaatgttgaacgtcatggggcgattcgcgttgggactgcacaagagcttgctactcttcggcggatgtttgccattatggggatgtacccggtgagctattacgatctctcgcaggcaggggtgccggtacattcgacagcatttcggcccattgatgatgcttctctggcgcgtaatcccttccgcgtttttacctccttactccgccttgagcttatcgagaacgaaattttgcgccagaaagcggcggagattctgcgtcagcgcgatatcttcaccccacgttgtcgacaactgttagaggaatatgagcagcagggcggttttaacgaaacacaggcacaggagtttgtgcaggaagccctggaaacgtttcgctggcaccagtcagcaacggtagatgaagaaacctatcgcgcattgcacaacgaacatcggttgattgctgatgtggtctgttttcctggatgccatatcaaccacctgacgccacgtacgctggatattgaccgggtgcagtcgatgatgcctgaatgcggaattgaacccaaaattctcatcgaggggccgccgcgccgcgaggtaccgattttactacgccagaccagctttaaagcactggaagagacggtgttgtttgcggggcagaaacagggcacgcataccgcgcgctttggtgaaattgagcagcgtggcgtggcattaacgccgaaagggcgacaactgtatgatgatcttctgcgtaacgctggaaccgggcaggataatctcactcaccaaatgcatttacaggaaaccttccgcacttttcctgacagtgagtttttaatgcgtcagcaagggttggcatggttccggtaccgtctgacgccttcgggtgaggcgcatcgtcaggcgattcatcctggagacgatccacagcccttaattgaacgtggttgggtagtggcgcaacccatcacctatgaagatttcttgcccgttagcgcggcggggatcttccagtcaaatctgggtaatgaaacgcagacacgcagtcacggtaatgccagtcgcgaagcatttgagcaggcgttgggttgtccggttttggatgagttccagctttaccaggaagcggaagaacgcagtaaacgtcgctgtggtttgctttaaaatctgaccatccgcctttgcaaaaatttgcctgattttacaaacgaatcaggctcatcccatcgacataaaaaaaatgccgatttatgcatattctctcagttcaacaattggattattaataaatattgtctagagtgagcggtcataaataagcactttcttgccgctgaaaacgaccagcgcgggaccattcacaacaccagaaggactcactttcaggtatggatcgtagacgatttattaaaggttcaatggctatggccgccgtgtgcggtaccagcggcattgcttctcttttttctcaggcggcattcgcggcagattctgatattgccgacgggcaaacccagcgttttgacttctccattctacagtcaatggcgcacgacttagcgcaaacagcgtggcgtggtgcgcctcgtccgttacctgacacgctggcgacaatgacgccgcaggcttataacagtattcaatacgacgccgaaaaatcgctctggcataacgttgagaaccgtcaactggacgctcagttcttccatatgggaatgggattccgtcgccgcgttcgtatgttttctgtagatccagcaacacatctggcgcgtgaaattcactttcgcccggagttgttcaaatacaacgatgcaggtgttgatacaaaacaattagaagggcaaagcgatctcggctttgccggttttcgcgtgtttaaagcccccgaactggcgcgccgtgatgtagtatcatttctcggcgcgagttatttccgcgccgttgatgatacatatcaatacggtttgtcggcccgcggcctggcgatcgacacttacaccgacagtaaagaagagttccccgactttaccgccttctggtttgatacggtaaaaccgggggcaactacctttaccgtttatgcgttgctcgatagcgccagcattactggtgcctataagttcactatccattgtgagaaaagtcaggtgattatggatgtggaaaatcacctgtatgcgcgcaaagacattaaacagctgggcattgcgccgatgaccagtatgttcagctgcggtactaatgaacgtcggatgtgcgatacaattcatccgcaaattcatgactctgatcgtctgtccatgtggcggggcaacggcgagtggatttgccgtccgctgaataatccgcaaaaattgcagttcaatgcttacaccgacaacaacccgaaagggtttggtttattgcaactggatcgtgacttctcccattatcaggacattatgggctggtataacaaacgcccaagtctgtgggtggaaccgcgtaacaagtggggtaagggcaccatcggcctgatggaaatcccaacaacgggcgaaacgctggataacattgtctgcttctggcagccagaaaaagctgtaaaagcaggtgatgagtttgcattccagtatcgtctgtactggagtgcgcaaccgcctgttcattgcccattagcgcgcgttatggcgacgcgtaccggcatgggcggtttctcggaaggttgggcgccaggtgaacactatcccgaaaaatgggcgcgtcgttttgccgtcgatttcgttggtggtgatctgaaagctgccgcgccaaaaggcattgagccggtgattacgctttccagtggggaagcgaagcaaatcgaaattctctatattgaacccatcgatggttatcgtattcagtttgactggtatccgacttcggactccactgatccggtcgatatgcggatgtatctacgttgtcagggggacgctatcagtgaaacatggctgtatcagtatttcccgccagcgccggataaacgtcagtatgttgacgaccgcgtgatgagttaatcgttttttcttcggcaccttcttcgggaggtgccgtctggttaaacacgatcccgctcgcatttttccctaagttaaatgagtaatctgatggtgtgtatttcagatacaccttgtcagccactaacagggagtgcgtatgtttccagaataccgagatttaatatcccgtctgaaaaacgaaaatcctcgctttatgtccttgttcgataaacacaataaacttgatcatgaaattgccagaaaggaaggttccgacggtcgagggtacaatgcggaagtggtccgcatgaaaaaacaaaagctacagttaaaagatgagatgctcaaaatcctgcagcaggagagcgtcaaagaggtgtaaactttcctaagccgccagccaggcggcttttttaacaactgcatggattgactggagataagatgactgaaacgataaaagtaagcgaatcacttgaattacatgctgttgcagaaaatcacgtcaaacctctttatcagttaatctgtaaaaataaaacctggttacagcagtcgctaaactggccgcagtttgttcaaagtgaagaggacacgcgaaaaacggtgcagggtaatgtgatgttgcatcaacgcggctatgccaaaatgttcatgattttcaaagaagatgaacttatcggcgttatctcgtttaatcgtattgaaccactgaataaaaccgctgaaataggctactggctggacgaatctcatcaggggcaggggatcatttctcaggcgctgcaggcattgattcatcattacgcccagtctggtgaacttagacgcttcgtgatcaaatgtcgggtggacaatccgcaaagcaaccaggtcgctttgcgcaatggttttatccttgaaggttgcctgaaacaggctgagttcctgaatgatgcctatgatgatgtgaacttatacgcgcgtattatcgattcacaataaccctgccagcggcgttcgcgtaatgcgctcctcgccgttaatgacttttggaccacggacatgaaccgtgtcgccatcaaaggcttcaacgacggcgtggtcggttaactccacatggttttcaattatcaccgcacctgtaatacggctctcaccttgtatgacaacgtgctcgtcgagcagaatcggtccgccacgtaccacggcatttccgccaaccaagacatgatgttttaacacacaattaccttccacaatggcatattccgccacctgcgaactgtaatgaatcgtcggaatggcatcttcttctatgccagctttcacctgcgcgtgaccgtagactttagcgcaatcgcatagccagacattgttctcttcattaccttcaatactggcaaaatcaaaaacttcggcgcgatgttcaataaaagcataccggacgacggcatcgccataaatttgtgcctggtggacaatacgcgaggcgctaacccttgcgcgatcataaatttggagcaggagttgatggtcgggcgttaagccttgtgcggcgacgatcatagaatgttgatcaattaaggcgtgaccaaatattctacattgcccgtaaactaatgagtcatgaatggtgacgctgtcacttatatatgcaccctggctgatttcactattatcgatccagacgttatccgttgcgtaaacctctccccacagcacgctggtgccggtgatacgcgtattaccggaaatcaccgctccgccgaacgcaatagcattctggtcgtaaatccagcaatttccttcttgtgctaacaccgtttcgcgatcgatccagccgccagcggttcctgctatcacatcgttaaaatcgctaatggcgataatctgccgtaataacacattttttttagtgccatcttcctgataactaaaggctcgctgttcttcacttagacgatatttgcgcatagcgttttcccacaggtgacttactataaccgtagcaaattctgcggctctggctatgctcgagaaaattccataaaatgcatttcaaatatactttataaattaaacaaaatgagtaagaagatgcagagcgataaagtgctcaatttgccggcaggctactttggtattgtgttggggacgatagggatgggatttgcctggcgctatgccagccaggtttggcaggtcagccactggttaggggatgggctggtgattctggcgatgatcatctggggattattgactagcgcatttattgcccgactcatacgctttccgcatagcgtgctggcggaagttcgccatccagtgctgagcagttttgtgagtttgtttccggcaacgacgatgctggtggcgattggttttgttccgtggtttcgcccactggcggtgtgcctgttcagttttggtgtcgtggttcagttggcttatgccgcctggcaaactgcgggattatggcgcggatctcaccctgaagaagctaccacgcctggactgtatctgccgacagttgccaacaactttatcagcgcaatggcctgtggtgcgttgggctacaccgacgccggtctggtgtttttaggcgcaggcgttttctcatggctaagccttgaaccggtgatcttgcagcgtctgcgcagttcgggagaattacccacggcactgcggacatcactcggcattcagctcgctcctgcgctggtggcttgtagtgcctggctgagcgtcaacggcggcgagggtgacacgctggcgaaaatgcttttcggttatggactgctgcaactgctgtttatgctacgtctgatgccatggtatctctcccagccatttaatgcttcattctggagtttctcgttcggcgtatctgcactggcaaccaccggtttgcatctggggagtggcagcgataatggatttttccatacgctggcggtgccgctgtttatctttaccaattttattattgcaatactgctcatccgtacttttgcgcttctgatgcagggaaaattgttagtcagaaccgagcgcgccgttttaatgaaagcagaggacaaagaatgatcattcgtgacgaaaactattttactgataaatatgaattaacccgcacacactctgaagtactggaagcggtgaaagtggttaaaccgggtaaaacgctggatctgggctgtggcaatggtcgtaacagtctttacctggcagccaatggttatgatgttgacgcatgggataaaaatgccatgagtatcgccaacgtcgagcgcattaaatccattgaaaatctggataatttacacacccgagtcgttgatctgaataacctcacatttgatagacagtacgattttattctttcgactgtggtgctgatgttccttgaggctaaaaccatccccgggttgattgccaatatgcaacgttgcactaaacctggtggttacaacctgattgtggcggcgatggataccgctgattatccatgtaccgtcggcttcccgtttgccttcaaagagggagaattacgtcgatattacgaaggctgggagagggtgaaatacaatgaagacgtcggcgagctgcaccgcaccgacgccaacggtaatcgtattaaactgcgtttcgccacgatgctggcacgtaaaaaatgacccggtaagcacaaaacgcgtgaaaattccccacgctgagatgatttactgttcttcttttcggtaagcatattttttatcgaagggatgtgaaattaatcacagtagtcgaagtttttagcagcttaacttactgaaatttaagtactgatgattgacttagcccctttttcggcattgactatgtcgtctgaaaaggggctgaaaaatttattttcaccaacactttttttgccacaacacgaagcggcgctttttgctataacttagaaagtaatataatcatctcaggaaactattcatgcgtaccacatcatttgcgaaagttgcagctttatgcggcttattggctctgtctggttgtgcatctaaaatcacccagccagataaatattctggttttttaaacaattactctgatttaaaagaaacaacctcggctacaggtaaacctgttttacgttgggtagacccgagttttgatcaaagcaaatatgacagcatcgtctggaacccaatcacttattatccggtaccgaaaccgtcgacccaggtagggcagaaagttctggataaaattttgaactataccaacaccgaaatgaaagaagcgatagcgcagcgtaaaccactggttaccaccgctgggccgcgtagtctgattttccgtggggccattaccggtgtagataccagcaaagaagggctgcaattctatgaagtggttcctgttgcattagtggttgcggggacgcaaatggctacaggccaccgtaccatggatactcgcctctattttgaaggtgagctgattgatgcagcgactaataaaccggttatcaaagtcgttcgtcagggcgaaggtaaagacctgaataacgaaagtacgccaatggctttcgaaaatattaaacaagttattgatgacatggcgaccgatgccaccatgtttgacgttaacaaaaagtagttccagacgcgccatcgttagatggcgctttttatccggtgcgccgtaaaaccccatccttcagggcggggatataaggcgcggttttccacctgaccaggtgtttgctgttgttcaatgtattggcggatgacggatattggcgcacctccgcagctactggcaaaatagccaggactccacaaaacgcctttgtagtaatacctgaatgcaatatctggtcgatctcgtcgcagtcacctacccgatacgcctttgaggctgtttaccagactggatatcgccagtttgggaggatagttaattaacaaatggacgtgatctggttcgccatccatttcaaccagttcagcttcaaaatcagcacatacatttgaaaagtaagtgcgtagtttttctgtcgcgtcatggtcaaaaatctggcgtcggtatctggtgacaaagagcaggtgaacatgcatcaggaaaacacaatgccttccacgccggatatcggtttcttttttcacagaccaaagtatcatttgacctgtgaaacgattacaggcatttaaattccagttaagacccggtggtcaacaggagtgtgaaatgaggcgcttcgcaggcgcatgtcgtttcgttttcaatcgtgctctggcacgtcagaatgagaatcatgaggccggtaataaatacatcccttacgggaaaatggcttcctggctggttgagtggaaaaatgccactgaaacgcaatggcttaaagattctccctcacagccattgcaacagtcactgaaagaccttgagcgggcttacaaaaacttcttccggaagcgggctgcttttccccgattcaaaaagcggggacagaatgatgcattccgctacccgcagggcgttaagctcgatcaggaaaacagccgtatttttctgccgaaactgggctggatgcgctaccggaacagccgtcaggtcacgggtgttgtgaaaaatgtcactgtcagccagtcctgcggtaagtggtacatcagtattcagacagaaagtgaagtatcaactccggttcacccttcagcatcaatggtcgggctggatgctggcgtggctaaactcgccacgctgtcagatggcacagtctttgagcctgtaaacagttttcagaaaaaccagaagaagctggcgagacttcagcgacagttaagccgcaaggtcaaattcagcaacaactggcaaaagcagaaacgcaaaatacagcgactgcattcctgtatcgcaaatatccgcagggactaccttcacaaagtcacaacggccgtcagcaaaaaccacgcaatgatagtcattgaggatttgaaggtcagcaacatgtcaaagtcagcagcgggtacggtcagccagccggggcgcaatgtccgggcaaaatcaggtttaaaccgttcgatactggatcagggctggtatgaaatgcgccgccagcttgcgtataagcagctctggcgtggcggtcaggtgcttgctgttccgccagcgtatacaagccagcgttgcgcgtactgtggtcatacagcgaaagagaaccgcctgtcacaaagtaaattcagatgccaggtatgtggatatacagcgaacgccgatgtaaatggcgctcgcaacattttagcggcggggcacgccgttcttgcctgtggagagatggtgcagtcaggccgcccgttgaagcaggaacccaccgaaatgattcaggcgacagcctgaacgtagcagggatccacgtccttcagggcgtggaggatgtcaatatcggtttctgtcagcgattaaattcaacaccacgtaacaaacgcctccggcaattaatccccaaaacgcagaaccaatcccgaccagcgtcaatccacttgccgttaccagaaatgccaccaccgccgcgtctcgctcacgctcattatgcagcgcctgatacaaactgccgccgatggtacttaacagcgccagacctgccagcatctggatccaacttacgggcagggcagccatcatcccggtaatggcactaccaaacagacctgcgagcaaatagaaaatgcctgcaacggcagcggccagccaacgttgatctttatccggatgcgcttccgggctttggcaaatagccgcggtgattgccgcaataccgacggaataaacgccgaaaggggaaaaaaccagtgccagcaatccagtaaatacaattaatggcgaaacaggagccgaatatccagctgctttcattgctgcgatacccggtgcgttttgcgatgccatcgtcaccagaaaaagggggagtgcaacgctcaggctgtgagcaaacgaaaaatcaggggtaatataagtggggagaacgggtttaaagacaacatcagttgtgacaacgtcaccttgcgcgatgacgatcacgatcccaataatcatcgcggcaattaccgcatagcgcggcgcaacggccttggttgccagccataccagcaacatacttccacacaacgtaaattgaccgtccagactggcaaacgcctgtaaaccaaagcgtaataaaatcccggcaagcattgccgccgcaagcgagtgcggaataatgcgcatcagacgagcaaagagtcccgttatgccgcagaggactattagcgcgttggtgacaataaaaacgccgatggcttcgttaagtgttagtccctgcaatccggtgaccaacaaagccgcgccaggcgttgaccatgcggtgagaacaggtacgcgataccataatgtcagagtcagcgtactgacgcccattgccagccccagcgccgtcatccagccagagatttgtgcagtggtggctccggcgacaatcgctgcttgccagattattgccgctgaactggcgtagccaattaataccgccagaaaccccgccagtagcgtgggtggaggaatagaaaacagacgcatagtcacctcgtgcgttatagcgtacaggcaccgtagcatttgtccgttataacgcacaagtgataaacttccgttttgccggaggagtcgcatggaaaatctcgctcgctttttatccaccacacttaaacaactacgccagcagcgcggctggagtctttcgcgactggcagaagcgacgggcgtttctaaagcaatgttagggcagattgagcgtaatgagtccagtccgacggtcgcgacattatggaaaattgccaccgggttgaacgtaccattttcaacatttatttctccgccgcagtccgctacgccttcagtttatgatccacaacagcaggcgatggtgatcacttcgctgtttccttatgatccacaactctgctttgaacacttctcgattcagatggcatctggtgcaataagcgaatcgacgccccatgagaagggggtaatcgaacatgtcgtcgtcattgatggacaacttgatctgtgcgttgatggggaatggcagacccttaattgtggggaaggcgttcgatttgctgcagacgtcacgcatatctatcgtaatggtggggagcaaaccgtacattttcattccctcatccattacccgcgcagttaagcgggaaaactatttcgcaacgtcgcgcttgtggctaaaatagccgccatttttcagctactggataagaatgtgaccgtatcttctcatcgacttgaactgttaagcccggcacgcgatgccgccattgcccgcgaagctattttgcacggtgccgatgctgtttatatcggcggccctggttttggtgcccgtcataatgccagtaatagcttgaaagatattgccgagctggtgccgtttgcccatcgttatggtgcaaaaattttcgtcacgcttaacaccattttgcatgatgatgagctggaacccgcgcaacggctgattactgacctctaccagaccggtgtcgatgcgctgattgttcaggatatggggattctggaacttgatattccgccgattgaactgcacgccagtacgcagtgcgacattcgtacagttgaaaaagcgaagttcctctctgatgttggcttcacgcagattgtgctggcgcgagagctgaatcttgatcagatccgcgcgattcaccaggctacggacgcgaccattgaattctttattcatggggcactgtgcgtggcctattcgggtcagtgctacatttctcatgcgcaaacagggcgtagcgccaaccgtggcgattgctcgcaggcgtgccgtttgccatacacattgaaagacgatcaggggcgggtggtttcctatgaaaaacatctgctgtcgatgaaagataacgatcagactgccaacctcggcgcgctgattgatgctggtgtacgctccttcaagattgaagggcgttacaaagatatgagctacgtgaagaatatcaccgcccattatcgccagatgcttgatgccattattgaagaacgtggcgatctggcgcgcgcttcatcaggtcgtactgaacatttctttgttccatcgacggaaaagactttccaccgtggtagcacagattattttgtgaatgcccgtaaaggcgatattggcgcgttcgattcgccgaaatttatcggcctgccggtaggcgaagtagtgaaagtggcgaaagatcatctcgatgttgccgttaccgagccactggcaaatggcgatggcctgaacgtgttgattaaacgtgaagtcgtcggttttcgtgccaatacggtcgagaaaaccggagaaaatcagtaccgcgtctggcccaatgaaatgccagcagatttgcacaaaattcgtccacatcacccactaaaccgtaatcttgatcataactggcagcaggcactgacaaaaacctccagcgaacgtcgggtggcggtagacattgaactgggcggctggcaggaacaactgattctgaccctcaccagtgaagagggtgtcagcatcacgcatacgctggacgggcagttcgacgaagccaataacgccgaaaaagcaatgaacaatctgaaggatggtctggcaaaactggggcaaaccctctattacgcccgcgatgtgcaaattaatttgccgggggcgctgtttgtaccaaacagtctgttaaaccagttccgccgtgaagctgctgacatgctggatgctgcgcgtcttgccagttaccagcgcggcagccgtaaaccggttgctgatcctgcgccggtttatccgcaaacgcatctgagtttcctcgcgaacgtatacaaccagaaagcgcgtgaattttatcatcgctatggtgtgcagctgattgacgcggcgtatgaagcacatgaagagaagggcgaagtcccggtgatgatcaccaagcattgtctgcgctttgcctttaatctgtgcccgaaacaggcgaaaggcaatatcaaaagctggaaggcgacgccaatgcaactggttaacggcgatgaagtattaacgctaaagtttgattgccgcccatgcgagatgcacgtcattggcaaaatcaaaaatcacatactgaaaatgccgttaccgggaagcgtagtggcatccgtaagtccggatgagctgctgaaaacattgccgaagcgaaaagggtaaaacgccagttttctggttactcacaacttattgaatctgcatgatattgcctgccgggtaaggcgttacgccgcatccggcatcaaatgactcaacgttgtcccgcttctggtttgcgcgatttttgccagtaaaaatgctcgcgcaaaccttccgccgactcttccgccacagcacgcaattcatcgctgtccgcttcatgacgcagctgatgatccacattctttacccacacaaattcatgtcctttgtgccctgccatgagttgtcctgaaaacagagcacacgttaataagacaaccgataacgccttcgtaaacatcctgccacctttttcttaccttttgccgctatgatgccgatcgtttcttgaggttattattcagttttgcaaattagcgcaaagaaattctggaatcttccttcctgattttgcattgcattctgccgttgcggcgatttagtgctattttcgagcaaattacacacggaggtaaacactaatgtttactttgttgatatactcagcggcagggaggcgatgtgaaacaaagcgagttcagacgttggctcgaatctcagggcgtcgatgtagcgaatggcagcaaccatttgaaactcaggtttcatgggaggcgcagtgtcatgccgcgtcacccctgcgatgagattaaagaaccattgcgtaaagcaatcctgaaacaactcggtttgagttaatcgccaattaaaaaggttaatgacatgcgagagacagtcgaaattatgcgttatcccgtcactcttacacccgcgccggaaggcggttatatggtttcttttgtggatatccctgaagcgttgacccagggcgaaactgtcgctgaagcgatggaagcggcaaaagatgctttactgaccgcatttgatttttattttgaagataacgagcttatccctttaccttcgccattaaatagtcacgatcactttattgaagtacctttgagcgtcgcctctaaggtattgctgttaaatgcttttttacagtcagaaatcactcagcaagagttagccaggcgaattggcaaacctaaacaggagattactcgcctatttaacttgcatcatgcgacaaaaatcgacgccgtccagctcgcggcaaaggcgcttggcaaagagttatcgctggtgatggtttaattacagttaacgaaaagttgtcatttttaacaactgatatagactgccgaatcatctgcacataattacgattcgataatgaaaaaataccagcagcttgcagaacaattacgcgagcagattgcgtcgggtatctggcaacccggcgatcgtttgccttcgttgcgtgaccaggtggcgctttcaggcatgagctttatgactgtcagccatgcctatcagttgctcgaaagtcagggatatattatcgcacgaccgcagtcgggttattacgttgcgccacaggcaataaaaatgccgaaagcgccagtcattccagtcactcgagatgaagcagtcgatatcaacacttatatttttgatatgttgcaggccagtcgcgatccgtcggtcgttccgtttgcctcggcctttcccgacccgcgacttttccccctccaacaactaaaccgctcgctggcgcaggtaagcaaaaccgccacagcgatgagcgtgattgaaaacttaccgccaggaaacgcagaactgcgtcaggctattgctcgtcgctatgccttacagggcatcaccatttctcctgatgaaattgtcattactgccggggcgttagaggcattaaacctcagtttgcaagcggtaactgaaccgggcgattgggtgatagtagagaatccttgtttctacggtgcgttgcaggcgctggagcggctacggctgaaggcgttatcggtggcgacggatgttaaagaagggatagatcttcaggcgctggaactggcgttgcaggagtatccggtgaaagcgtgctggctgatgactaatagccagaatccactcggatttaccttaacgccgcaaaaaaaagcacaactggtggcgttgctcaatcagtacaacgtaacgctgattgaagatgacgtttacagcgaactttattttggacgggaaaaaccgctgcctgcgaaagcgtgggatcgccacgatggcgttttgcattgctcttcgttttcgaaatgtctggtgcctggttttcgtattggttgggtcgccgccggaaaacatgcacgtaaaattcaacgcttgcagttgatgagtacgctttccaccagctcaccgatgcaacttgcgctggtggattacctttccacgcgccgatacgacgcccatcttcgtcgcctgcgtcgccagcttgcggaacgtaaacaacgtgcctggcaggcactgctgcgttatctgcctgcggaagtgaaaattcatcataatgacagtggttactttctctggttggagctccccgagccgttagatgccggcgaattaagcctggcggcactgacgcatcatatcagtattgcgccgggtaaaatgttttctaccggtgaaaactggtcacgttttttccgttttaataccgcgtggcagtggggagagcgtgaagaacaggcggtaaaacaattaggcaaacttattcaagaacggctgtaatagcgtttaatttaattcctcttagattgggtaatatgaatttcgaatagcagtcatatttcctaactccttgactatactccagaagataaccttacagacggcataatgcgcggtagctcacaacctgaataaattttctcaggggcgaaggtgtgcctgcaagccgccgtctatggttaaacaaggagatatttttacggcacggcggctgaacaattaattacgacaggagtaagaccttatgagcaagacatttgcccgcagcagcctgtgtgcgctcagcatgacaataatgaccgctcacgccgccgaaccgcctaccaatttagataaaccggaagggcgactggatattatcgcctggccgggatacatcgaacgcggacaaactgataaacaatacgactgggtaacgcagttcgaaaaagagacaggctgcgcggtgaatgtgaaaaccgccgcgacttccgatgaaatggtcagtctgatgaccaaagggggttacgatctggttacggcatccggcgatgcctcgctgcgtttgattatgggtaaacgcgtgcagccgattaataccgcattgattcccaactggaaaacgctcgatccgcgcgtggttaaaggcgactggtttaatgttggcggcaaagtttacggcacaccttaccaatgggggccgaacctgctgatgtacaacactaaaaccttcccgacgccgccggatagctggcaagtggtttttgttgagcaaaatctgccggacggcaagagcaataaaggccgcgttcaggcttatgatggccctatctatattgcggacgctgcgttgttcgttaaagccactcagccgcagttgggcatcagcgatccgtatcaactcaccgaagaacagtaccaggcggtgctgaaagtgctgcgcgctcaacacagtttgatccatcgctactggcatgacactaccgtgcaaatgagcgatttcaaaaacgagggtgtggttgcttccagtgcctggccctatcaggccaacgccctgaaagccgaaggccagcctgttgctaccgttttcccgaaggagggtgttaccggttgggctgataccaccatgctgcatagcgaagcgaaacatccggtttgcgcctacaaatggatgaactggtcattaacgccaaaagtgcagggcgatgtggcggcctggtttggctcgttaccggtagtgccggaagggtgtaaagccagtccgttattaggcgaaaaaggttgtgaaaccaacggttttaactatttcgacaaaatcgccttctggaaaacgcctatagcagaagggggcaagtttgttccctacagtcgctggacgcaggattacattgccattatgggcggtcgctaacttcgctggggtgctttatgacgtacgcagtggagtttgacaacgtctcgcggttgtacggtgacgtgcgcgcagtagatggcgtcagtattgcgataaaagatggtgagttcttctctatgctggggccgtccggctccggcaaaaccacctgcctgcgcctgattgctggcttcgaacagctttccggcggggctatctctatctttggtaaacccgccagcaatctgccaccgtgggagcgggacgtgaatactgtctttcaggactacgcgctatttccgcatatgtcgattcttgacaatgtcgcctatgggctgatggtcaaaggcgtgaataaaaagcagcggcacgcaatggcgcaagaggcgctggagaaagtggcgttggggtttgtacatcaacgtaaaccgtcacaactttctggtggtcagcgccagcgggttgctatcgccagagcattggtgaatgaaccgcgcgtattgctgttggatgaaccgctcggcgcactggatctcaaattgcgtgagcagatgcagctggaactgaaaaaactgcaacagtctctcggtatcacttttatcttcgttacccacgatcagggcgaagcgttatcgatgtccgatcgtgtggcggttttcaataatggacgcattgagcaggtcgattccccgcgcgatctctatatgcgcccgcgcacgccgtttgttgccgggttcgttggtacatcgaatgtttttgatggactgatggcagagaaactttgtggcatgacgggaagcttcgccctgcgaccggaacatatccgcctcaacacccctggtgaactgcaggccaatggcacgatccaggcggtgcaatatcagggcgcggcaactcgttttgaactgaaattgaacggcggtgaaaaactgcttgtgagtcaggccaatatgacaggcgaagaactgcctgccacgctcacgcccggacaacaggtgatggtttcctggtcgcgtgatgtgatggtgccgctggttgaggagaggtgaatggcgatgaatgtattgcaatcaccttcacgtccaggtctgggtaaggtgtccggtttcttctggcataatccggggctggggctgtttttactgctgcttggcccgctaatgtggtttggcattgtctatttcggctcgctgctgacactgttatggcagggattttatacttttgacgatttcaccatgtcggtaacgccggaactgacgctggcgaatatccgtgcgctgtttaatccggcgaattacgacatcattctccgcacgctgactatggctgtggcagtcactatcgccagcgccattctggcttttccaatggcgtggtatatggcgcgctataccagcgggaaaatgaaagcgtttttttatattgcggtaatgttgccgatgtgggcgagctacattgttaaagcctatgcctggacgttattgctggcaaaagatggcgtggctcagtggtttttacaacatcttgggctggaaccactgctgactgcgttccttacattacctgcggtgggcggaaatacgctgtcaacttccgggctggggcgctttctggtgtttctctatatctggttgccgttcatgatcctgcccgttcaggcggcgcttgagcgtttgccgccgtcattgttgcaggcgtcggctgatctcggcgcacgtccacgacaaacctttcgctatgtggtgctgccgctggcaatcccgggtattgccgctggctctatctttaccttctcactcacactgggcgattttatcgtcccgcagctggttggtcctccaggatattttatcggcaatatggtttattcccagcagggggcgattggcaatatgccgatggcggcggcattcaccctggtgccgattattctcatcgcactgtacctggcgttcgtgaaacgtctgggagcgttcgatgcactctgaacgcgcaccgtttttcctcaaactggcggcctggggcggcgttgttttcctacattttcccatcctgataatcgccgcctatgcgtttaacactgaagatgcggcgtttagttttccaccgcagggcctgacgctgcgctggtttagcgtggcagcacagcgtagtgatattcttgatgccgtgacactgtcacttaaagtggcggcgctggcgacattaattgcgctggtgttagggacgctggcagctgccgcgctgtggcgacgagactttttcggcaaaaacgccatttcgctgttactgctgctgcccattgcgctgccgggcattgtcactggtctggcgttattaaccgcctttaaaaccatcaatctggagccgggatttttcaccatcgtggtcggtcatgcgactttttgtgtagttgtggtgtttaacaatgtcatcgcccgttttcgccgcacctcctggagtctggttgaggcgtcaatggatcttggggccaatggctggcaaaccttccgctacgtagtgttgccgaatctcagttcggcgttactggcaggaggaatgctggcgtttgccttgtcgttcgatgaaatcatcgttacgacctttacggcaggtcatgaacgaacgttaccgttgtggttgctcaatcagcttgggcgaccgcgtgatgtaccggtaactaacgtggtggcactgctggttatgttggtaacaaccttgccgatcctgggggcctggtggctaacccgcgaaggcgacaatggtcaataaccactgatacaggaatatgctatgcaacataagttactgattaacggagaactggttagcggcgaaggggaaaaacagcctgtctataatccggcaacgggggacgttttactggaaattgccgaggcatccgcagagcaggtcgatgctgctgtgcgcgcggcagatgcagcatttgccgaatgggggcaaaccacgccgaaagtgcgtgcggaatgtctgctgaaactggctgatgttatcgaagaaaatggtcaggtttttgccgaactggagtcccgtaattgtggcaaaccgctgcatagtgcgttcaatgatgaaatcccggcgattgtcgatgtttttcgctttttcgcgggtgcggcgcgctgtctgaatggtctggcggcaggtgaatatcttgaaggtcatacttcgatgatccgtcgcgatccgttgggggtcgtggcttctatcgcaccgtggaattatccgctgatgatggccgcgtggaaacttgctccggcgctggcggcagggaactgcgtagtgcttaaaccatcagaaattaccccgctgaccgcgttgaagttggcagagctggcgaaagatatcttcccggcaggcgtgattaacatactgtttggcagaggcaaaacggtgggtgatccgctgaccggtcatcccaaagtgcggatggtgtcgctgacgggctctatcgccaccggcgagcacatcatcagccataccgcgtcgtccattaagcgtactcatatggaacttggtggcaaagcgccagtgattgtttttgatgatgcggatattgaagcagtggtcgaaggtgtacgtacatttggctattacaatgctggacaggattgtactgcggcttgtcggatctacgcgcaaaaaggcatttacgatacgctggtggaaaaactgggtgctgcggtggcaacgttaaaatctggtgcgccagatgacgagtctacggagcttggacctttaagctcgctggcgcatctcgaacgcgtcggcaaggcagtagaagaggcgaaagcgacagggcacatcaaagtgatcactggcggtgaaaagcgcaagggtaatggctattactatgcgccgacgctgctggctggcgcattacaggacgatgccatcgtgcaaaaagaggtatttggtccagtagtgagtgttacgcccttcgacaacgaagaacaggtggtgaactgggcgaatgacagccagtacggacttgcatcttcggtatggacgaaagatgtgggcagggcgcatcgcgtcagcgcacggctgcaatatggttgtacctgggtcaatacccatttcatgctggtaagtgaaatgccgcacggtgggcagaaactttctggttacggcaaggatatgtcactttatgggctggaggattacaccgtcgtccgccacgtcatggttaaacattaaggataatattgcagatcgtaagagtatgagatgatcttgcgtactgtcagagcactgatttctctgacagtacgtgctgcgtgcaaaatcactacatcaaataaaccagccaaatctcatagagataagagtaaacaaaccaacagcagcaaagaaatttatcagtactacagttctactggaaacattcatttttgccaccttttatcattgcccctatgtgtatagtacgggttaagaaaatccgcaataatactcattctgaagatggataagggcaagttgctgtttgatgattttttctcaaactggtgaaaaaacttgatgcacgtcaaaaaatgacgcatatttgcgcgcgttttattcatctggctggacgcccgtacatgtctctctatcaacacatgcttgttttttatgcggttatggcagcaatcgcatttcttatcacctggtttctttctcacgataagaaacgcatccgtttcttaagcgcctttctggtgggggcaacatggccgatgagtttcccggtggcgctgttgttttcactgttttaaatcttactcactggcttgacggcaccacgcagacttatatcatttggatgaatcgataaatttcacaagtggctaaggagaaagtatgtcgcatctggatgaagtcatcgcgcgcgtggatgccgcgattgaagagagcgtcattgcccatatgaacgaattattaatcgccctgagcgatgacgcggagttaagtcgggaagatcgctacacccagcagcaacgtctgcgcacagcgatcgcccatcacggtcgcaagcataaagaagatatggaagcgcgccacgaacagttaaccaaaggcggcaccatcctctgattaaaatgagcgtctggctaccaaccaggcgccaaccacaagtaaaattgcgccacaaattgggccgaacaacgcccgtagtggtacgccatgactgcggaagatatccagcatcagaccgccaatcagctgactggcgaccagtacagcaatagttgtcgccgctcccacattctgatatccgctgatactggcgaagacaaaaaacgatcccagcaagccaggtataagtgtccaccagcgcacgctggacaccagttcgccaaaccccgccatgccttgtttaaaccataaaatagaaacaaagagcacaatccccaccagtgagttcagcaacatggcgatgagaatggtagaggaggtctgggtgatgcgcaccatcagcgtgttctggacaaccagaccaattccggcggcaatcaaaaaagcaagggtgagcgactgattcatccaatcgcgtccggttcagtgcgctcgtcgagttgcaactgcataaatgtcagatccagccaacgaccaaatttagtgcctacctgcggcatttgcgcggtgacgacaaatcccagcgactggtggagatgcagcgaggcctgattttgcgattcgatcccggcgaccatgacatgcttcccgcaatcccgcgcttcatcaatcaatcggcttaacaatttacgccccagacctttgccctgatgatcgggatggacataaaccgaatgttccacggtatggcgaaaaccatcgaaactacgccagtcgccaaacgaggcatatcccgtcactacgccgttttcctcgctcaccagcactggataacctgctaaagtccgcgcttcaaaccaggcaatgcggttatcagcatccaccgtttggtcattccagatagccgccgtatacaacacggcgtggttataaatttccgcaatggcagcacagtcggctttgcgggcaaaacggatggacatgtctggcctcaataaaataatgatgatgatgttatcaatactatcgaaaacagcccgaagcaacggattcctcgatgaaattattgcgtgttgcagaggggatgtgacggctgcaaacaaaaccaatcccgtgagcctgctactattgatggattcatgccaaaagcacaggagagcattatggggcaacaaaagcagcgtaatcgacgttgggttctggcctcgcgtccacatggcgcacctgttccggagaatttccgtcttgaagaagatgatgtcgccacaccgggtgaaggacaggtgttactgcgcacagtttatttgtccctggacccgtatatgcgtggacgtatgagcgatgagccatcttattcaccgcctgttgatattggcggcgtgatggtcggcggtacggtgagccgtgtcgtggagtcgaatcatcctgattatcagtctggcgactgggtgctgggctacagtggatggcaagactatgacatatccagtggtgatgatctggtgaaacttggcgatcatccgcaaaatccatcgtggtcgctgggtgtgctagggatgccaggctttaccgcttatatgggcctactggatatcggtcagcctaaagagggcgaaacgttggtggtagctgcggcgacaggaccagtgggggcgacggtggggcaaatcggcaaacttaaaggttgcagagtggtgggggtagccggtggcgcggaaaaatgccgccatgctaccgaggtgttaggcttcgatgtttgtcttgatcaccacgcggatgattttgccgaacaactggcgaaagcgtgcccaaaaggtattgatatctattatgaaaacgtgggcggtaaggtattcgatgcggtgctaccgttacttaatacatctgcgcgcattcccgtctgcggattagtgagcagctataacgctacagagctaccacccggtccggatcgtttacctctgttgatggctacagtgctgaaaaaacgtattcgcttgcaaggttttattatcgctcaggattatggtcaccgcatccatgagtttcagagggagatggggcaatgggtgaaagaggataaaatccactaccgcgaagaaattactgacggtttagagaatgcgccacagacgtttatcggcctgctgaagggtaaaaacttcggcaaagtggtgatccgcgtggcgggtgatgattaaagtttcaacggcggcgtaagccgccataaaaatccaggcaaaaagcttattttcagctttaattaactaaccacatcattgttctgctgctaataacaacaaaggtgagtggtttatgattattcactttaatacaccaggtgaattccttctgccatgcaggcagggttggacagaaaacacgcgaaggaattaaaatgcctggaacgggaaaaatgaaacatgtcagtttgactctgcaggttgagaacgacctgaaacatcagcttagtattggcgcattaaaacctggcgcacgcctgattactaaaaatctggcggagcaattaggtatgagtattacacctgtgcgtgaagcattattacgtctggtttcggtgaatgcgctttctgtcgcacctgcacaagcatttacagttccggaagtggggaaacgtcaattagacgaaatcaatcggatccgctacgaactggaattaatggcagttgctctggctgttgaaaacctcaccccgcaagaccttgcggaactccaggaattgctcgagaaattacagcaggcgcaagaaaagggcgacatggaacaaatcattaatgtaaacaggctatttcgcttagcgatttatcatcgctcaaatatgcccatcctgtgtgagatgattgagcaactgtgggtcaggatggggcctggtttacattatctctatgaagcgattaatccagcggaattacgggagcatatagaaaactatcatctgttactcgctgcgttaaaagcaaaagacaaagagggatgcagacattgtcttgctgaaattatgcaacaaaatattgctattttataccagcaatacaatcgttaaagtaaatgcccggcaaataccgggcatcaaggtaattactcaaatctccacgcaatattcatgccgacaccataatttcgtccgggcgaaggttcgtaatatcgcccgtttgactcattgacaatgacagaaccaacgtattctttatcgaataaattatcgacacgaccaaataaatccacagttaaattgtggtaattgtatttatacccggtgaataagccgacgagagtataagacggcgcttttgccgtattttcatcatctgccataatatcgcccatataacgcgcttccgtgcctgcataccaaccatcttccggtacataacctatcgacgcaaagcccatattacgggcgatccctggcatccgattaccgttacaatcctgttcattgcaaacattgctgcgataggtcgcatcaagccaggtccaggacgcgtttacgcgaaaatctcctgcgaaacgttgatcccatgccagttcagcgccttgacgacgggtctttccggcatttttgtaagtcgtacgcccaccgctactgctatcgacaacaatttcatcatcagtgtcggtctgaaacaatgcgagactaagcagcccatcaccaatacgcgttttactgccgatctcaattgtatcgttggtggatggttttaaacctaagttcataccgctttgcccatcagcacgataagacagctcattaatcgtcggcgtttcaaaacctcgcccggctgccagatagatattccaggcatcggtcattgcatattttaacgaaccggcaggtagccatttatgataactggcatcaccgctgtcatcgccgttacccggagtaacgtaatggtcgttggaatcaaaccacacggagctgtagcgcacgccagcatccagcgacagtttttcgctcagctgccactgcgtctgtaaatagggatcgatgttccacatcagattgcgttcgtcgcgacgcaactcacctttttgcccgtactccggcatgccgctattcaggcggaagttattgtagcccttgcggttttcactcatgttttcgtagttcaggccggtagtgaacgtgaccggaacgcccagttcaccacggtgtgtccagcggctgtctattccctggtaatggcgttgcagggtaatcacgccgcccgcatgtgacgggttaagttgtggtgccatgggtattgactggtactgggtcgtttctcgctctccggcatacatcatcacactcatatcatcccgcgaactcaggctacgctcatagcgcaacccagcctgagtttgcttgatggtttttcgcgtgtcgtactgttctgcacgaggcgcttgttgtggattagccttccattctgctttggttagcccacctgggtcatctgctttgatatccacactattgaaaatcagacttaatttgctggcttcatcaatgcgtacgcccagtttggcattggctaaatttttctgtgcgccactatggtcacgatagccgtgggtcgtaaaacgcgtggttgagacggtgtaatcgacatcgccaggctgtgtgccgtctcccgttgcgcccgttgctttcagcccatagcgccagctgccaaaactgccgtagtaactactggcttcaatggttggtggctgttgtccggtctgggtggtgacattcattaccccaccagacgcgttgccatacagggcagagaaggggccacgcagcacttccacattttgcacactgcttaaatcgatgttggatgtttgcccttgcccgtcgggcatggtggcgggaataccgtccacatacaggcgaataccgcgaataccgtaagtggagcgggagccaaatccgcgaatcgacagctgtaaatcttgcgcatagttctgccggttttgtacctgcaaaccaggcacgccggtcagtgattcggacaagttaatgcgcggtgttgccaggcgcatctcctcgccatccaccacgcttactgctgctggggtatccagttctgaaaccacctgcggtgcggcactgacaatcatagtctgttcatcagcggcaaaaacaacgggggaaaggacaagcagtgcgggcaaaacggtctgtcggacggaaaaaatcttcatgaaaaaagccaggttaagaatgggaaaacgccgtcatggtaatgaaattgtaaatttatggaaaatgaaacggcacaatacgttaagtaattgagaaaattgtagtcgtaacggcaagaaatgctccacatttgagaaaataatgattaccattcccatttataacaagagcgtaacgatgattacgcttagcgaagcattgtgaagcagcaaaaatatcggttcatcaaagggagtcgtcatgcatttacgtcatctgttttcatcgcgcctgcgtggttcattactgttaggttcattgcttgttgtttcatcattcagtacgcaggccgcagaagaaatgctgcgtaaagcggtaggtaaaggtgcctacgaaatggcttatagccagcaagaaaacgcgctgtggctcgccacttcgcaaagccgcaaactggataaaggtggcgtggtttatcgtcttgatccggtcactctggaagtgacgcaggcgatccataacgatctcaagccgtttggtgccaccatcaataacacgactcagacgttgtggtttggtaacaccgtaaacagcgcggtcacggcgatagatgccaaaacgggcgaagtgaaaggccgtctggtgctggatgatcgtaagcgcacggaagaggtgcgcccgctgcaaccgcgtgagctggtagctgacgatgccacgaacaccgtttacatcagtggtattggtaaagagagcgtgatttgggtcgttgatggcgggaatatcaaactgaaaaccgccatccagaacaccggtaaaatgagtaccggtctggcgctggatagcgaaggcaaacgtctttacaccactaacgctgacggcgaattgattaccatcgacaccgccgacaataaaatcctcagccgtaaaaagctgctggatgacggcaaagagcacttctttatcaacattagccttgataccgccaggcagcgtgcatttatcaccgattctaaagccgcagaagtgttagtggtcgatacccgtaatggcaatattctggcgaaggttgcggcaccggaatcactggctgtgctgtttaaccccgcgcgtaatgaagcctacgtaacgcatcgtcaggcaggtaaagtcagtgtgattgacgcgaaaagctataaagtggtgaaaacgttcgatacgccgactcatccaaacagcctggcgctgtctgccgatggcaaaacgctgtatgtcagtgtgaaacaaaaatccactaaacagcaggaagctacccagccagacgatgtgattcgtattgcgctgtaatagatatggcgagggtgaaaacggtgagacttgcctgccttttatcacggcgtatccggcactttcgtcagtaatctgaatttgcccggcacgtagccgggcaattttgcaattaactcgccgtttcaggcttaaacacaatttcctgtttttcttcatcttcctcgacgactggcgcagtgctgtgaatttcagcaacgcgtttgcgcacaccaaaccagcctataaccagcaaaataccgataatcggcagcgccgcgatagtataagtcccgttcgggtaatcgaacgccatcagcacaaggacactcagtaaaaacagtaatgtcagccaggaagtgaagggcgcgccaggcagtttaaaactgacatccgctgctttgccttctttaatcgctttacgcaggcgcatctggcacacgatgataaacgcccatgaagcgatgattcccagcgacgcgaagttcaacacaatctcaaatacgcgcgacggcaccagatagttgaggaatacgccgacgacatacacaactagtgtcgccagaatcccggcatacggcacatgctgacgactcattttcgccataaaactcggtgcggaaccgcccatcgccattgagcgcagaatacgtccggtgcagtacagacctgaattcaggctggagagggcagcggtcagcaccacaatgttcataatgctgccgatatatggcacacccagtttagagaaaaacgtcacgaacggactttgccccgcctgatacgcgctccacggcaataacataaccagcaacaccacggagccgacgtaaaacaggccaatacgccaaatcacactgttaatggctttaggcaccatggtctgcggatctttacattctccggcagctgtacccaccatttcaatggaggcaaaagcaaacactacgccctgaatcaacaccagcgcaggcagcaaaccgtgggggaagaagccgccattatcggtgattaaatgaaagccagtggtgttgccatccagcggctgaccactaccgaggaacactgtacccacgaccaaaaaggtcacaatggcgagcactttaataagcgcaaaccagaactccatctccgcaaaccatttcacaccgatcatattcatggtgccaacgatggtaagtgcagcgagcgcaaagacccactgcggcacgccgccaaacgcaccccagtaatgcatatacagagcgacggcggtaatatcaacaatccccgtcatcgcccagttgatgaagtacatccagccagcaacataagcggctttctcacccaaaaactcacgggcataagaaacaaaactgccactggaagggcggtgtagcaccagctcacccaatgcacgcagaataaaaaacgaaaacaagccacaaattaaataaaccagtgccagtgcgggccccgccatttgcagtcgggctcctgcacctaaaaacaagccggtgccaatcgcgccgccaatggcgatcatctgcacctggcgattgcccatcgctttgtgatacccctcttcgtgggcattaagccagcggcgtttcgcggcgtgttgatctgaagtgtcggtgtcgtgtttactcattgctctccctgattgctttaatgaaaaagtcatataagttgccatgaacaatgtttattcatcctggcgatgatagttatcaccattattctttatgggtataaaactatcggcgcagcatcctacccgttatcgataaacgatgcaaaacatccccttacaatcctgaaggggattaatacaactgacgaaaaaatgacaaatccttttgctggttaacctgtgtactgtcctacacttaatctttaaaagattgtgaggggcatatgattaaggtgtatggcgtacccggatggggctctacaatcagtgagctgatgctaacactggctgatattccttatcagttcgttgatgtcagtggttttgaccacgagggagcttcacgcgagttattgaaaaccctgaacccgttgtgtcaggttccgacactggcattggaaaatgacgagattatgacggagacagcggcgattgcattgatggttctcgatcgtcgcccggaccttgcgccaccggttgggcgcgccgaacgtcagctgtttcaacggctattggtctggctggttgctaatgtctatccaacattcactttcgccgattaccctgagcgttgggctcctgacgcacctgaacagttaaagaagaatgttattgaatatcgaaaatcgctttatatctggttgaattcgcagctcactgctgaaccttatgcgtttggtgagcaactaacgctggtggactgttatctttgcactatgcgcacatgggggcctgggcatgaatggtttcaggataatgccacgaatatcagtgcgattgctgatgctgtatgtcagttaccgaaattacaagaagtattaaaaaggaatgaaattatttgagtgggataccagaagattatgttatttattattcagtaactttatccacaatgatgggcgtaattaattaaattcatggtatgttttttaatttatatcactctccttttcattcagcgtgtctatttcatttcctctgaaaagaaactaactattcacatcgtgcagatgtttcagttgttatcacaggcattctataatctcaaaatgtttttaatgatggatatgctcggagttggagatgcaattaatattaatacaaataaaaatatccggcaggtatgctaaaaggataaatggcgttctctgtatttattcgcaattatctgtaggacaaatatggagagcttgatgagtcagagctaaaacagcaattgattaataaacatgttgatttattcaagaaaatggatgtattttaaatgttgattcttaatataacctaatcaatagattatcaagtgagagctacacattattggaggggcaggggaaaacaccattttgggaacaatgcatcaggtactcttaccactgaagcaagatcatccggcaccaggtggtggtgcagtgctttggaaatggtcccctcgggggagttgtcattattttctatgctatttgcttattatattcatcaggtgaatttaataaattcctaatttgaaatatccactattaagctagtgtttaacgacgttaagatggcaatgtgcagatcatgttatcagggtggggcggtagcgtatattccttatacaaaccatcattcatttcaatgattgttattgaattatttattgttgtgaataaaaagacattatgaatattggtttgactttgcatatcaggttttttattactcgctgtaatgtacgagcctgtcgtgaataacgtcgagaacccatccgttgcgtttgtgattattttgttgactaaacagacacccgtttctctgaagtaaaatcccagactaaatcatcacataaccatgacatttttctgatattccccggtaacgccagatgtcgactcgcttaaccaccctcagccataccagtgaaggccaccgcgtgtcggtccactacggctatgacgataaaggccgcctgaccggcgaacgccagacggtggagaacccggagacgggggaactgctgtggcaccatgagaccggacatgcgtacaacgaacaggggctggcaaaccgcgtcacgccggacagtctgccgccggtggagtggctgacctacggcagcggctatcttgcgggcatgaagctgggcgggacgccgctgctggagttcacgcgcgaccgcctgcaccgtgagacggtgcgcagcttcggcagcatggcaggcagtaatgccgcatataaactgaccagcacatacacccccgcaggccagttacagagccagcacctgaacagcctggtgtatgaccgtgactacgggtggaatgacaacggcgacctggtgcgcatcagcggcccgcgacagacgcgggaatacggctacagcgccacgggcaggctggagagtgtgcgcaccctcgcaccagacctggacatccgcatcccgtatgccacggacccggcgggcaaccggctgccggacccggagctgcacccggacagtacactcacagtgtggccggataaccgcatcgcggaggatgcgcactatgtctaccgccacgatgaatacggcaggctgacggagaagacggaccgcatcccggcgggtgtgatacggacggacgacgagcggacccaccactaccactacgacagccagcaccgcctggtgttctacacgcggatacagcatggcgagccactggtcgagagccgctacctctacgacccgctgggacggcgaatggcaaaacgggtctggcggcgggagcgtgacctgacggggtggatgtcgctgtcgcgtaaaccggaggtgacgtggtatggctgggacggagacaggctgacgacggtgcagactgacaccacacgtatccagacggtatacgagccgggaagcttcacgccgctcatccgggtcgagacagagaacggcgagcgggaaaaagcgcagcggcgcagcctggcagagacgctccagcaggaagggagtgagaacggccacggcgtggtgttcccggctgaactggtgcggctgctggacaggctggaggaagaaatccgggcagaccgcgtgagcagtgaaagccgggcgtggcttgcgcagtgcgggctgacggtggagcaactggccagacaggtggagccggaatacacaccggcgcgaaaagttcatttttaccactgcgaccaccggggcctgccgctggcgctcatcagcgaagacggcaatacggcgtggcgcggggagtatgatgaatggggcaaccagcttaatgaggagaacccgcatcacctgcaccagccgtaccgtctgccagggcagcagcatgatgaggagtcggggctgtactataaccgtcaccggcactacgatccgttgcaggggcggtatatcaccccggacccgattgggttgagaggtggatggaatatgtatcagtatccgttgaatcccatacaagtgatagacccaatggggttagatgcgattgagaatatgacatcaggtggactaatttatgccgtatctggtgtacctggattgattgctgcaaacagcattactaacagtgcttaccagttcggttatgatatggatgctattgttggcggagctcataatggggccgccgatgcaatgagacattgttacttgatgtgtcgaatgactaagacatttggatcaacaatagctgacgtgataggtaaaaatcatgaggcggcaggggatagacaaggtcagccagctaaagaaagaatcatggatcttaaaaataacactgtcggtattgcttgtggcgatttttctgccaaatgtagcgatgcatgtattgaaaaatataacactgggcaactcttcgggttagatggtataaaagcagataatccaataaaagcaaagcaagggagttcagatgcttcaaattattagaggcaaacttgtcatttttttaattaccctttgtttatttgttgtttaccttgggtttgataacaattcaaattctgacatcgtattttatggacataaaacaccaaagagcgttgagatatatctttctgaaaaaaatattatttataaaataattaatgaccaaaaaattagtagagggaatggtcattttataagtataatggttaataattacaggacgcactgtggagtggttgatataaatcttaattttttcaatgatattctttatagcgtgcgattaaaaaacattagtaaactggagaatatggagttctgcgctacaaaacaacgggtgtattttagtgataaaaacaagaaggctagttataaaataattaattatggagactattatgatgttgattattatgataacaatttgaaaaatgaagtttttgactggattggtaaatggtcataatgaacaacaccagaaagagaaaaatataaaatacatacagaaagacatgagagcaagggacggggcagggcaagatcatgaaaattgtgatgtaaatcacgattttcatctttgctttaacgcctacaggtgatcaaaatttaacctttggaataactaaaaagataaaaaaggacgccaggtgagtattcaaagtttgcttgattatatttcagtgacccctgatatacgacaacaaggaaaggttaaacataaattatctgctattttgtttctcaccgtatgtgcagtaattgcaggtgccgatgagtggcaggaaattgaagattttggacatgaaagacttgaatggctaaagaaatatggtgattttgataatggcattccggtcgatgacaccattgcacgcgttgtgagtaacattgacagtttggcctttgaaaagatgtttattgaatggatgcaggagtgccatgaaatcactgatggtgaaattatagcaatagatggaaagaccataagaggctcctttgataagggaaaaagaaaaggagcaatccatatggtgagtgcattctcgaacgaaaatggtgttgtactggggcaggtgaaaacggaagccaaaagtaatgagattacagccattccagagttgcttaacctactgtatttaaagaaaaatttgataaccattgatgctatgggctgtcagaaagatatcgcttcgaagatcaaagataaaaaagcagattatcttctggcagtaaaaggcaatcaggggaaattacatcatgcattcgaggaaaaatttcctgtaaatgtgttttctaattataaaggcgattcgtttagtacgcaggagataagtcatggaagaaaagaaacacgtttgcatattgtcagtaacgtaacgcctgaacttttgtgattttgaattcgaatggaagggattaaaaaagctttgtgtagcattgtcattcaggcagaagaaagaagataaatcagcagaaggtgtaagcatccgatattatatttcatcaaaggatatggatgctaaagaatttgcacatgctatcagagcgcactggctgatcgagcacagtcttcattgggtgttagatgtaaaaatgaatgaagatgccagccggataagaagaggaaacgcagcctaaataatatctggaataaagaagatggcactgaatttattaagagattgcaaagacattaagggtgaagaggaaaagaaagaaggctgcgttaaacacagggaaagatcatcagaagttcactttttgtactaaacaattcgcattttatgtttaaaaattgagatattccttattacctaaagctgttttttattgcttacacatgatcaaatactccttacataattaaggagaacaaaatggaacttaaaaaattgatgggacatatttctattatccccgattacagacaagcctggaaaatggaacataagttatcggatattctactgttgactatttgtgccgttatttctggtgcagaaggctgggaagatatagaggattttggggaaacacatcccgattttttgaagcaatatggtgattttgaaaatggtattcctgttcacgacaccattgccagagttgtatcctgtatcagtcctgcaaaatttcacgagtgctttattaactggatgcgtgactgccattcttcagatgataaagacgtcattgcaattgatggaaaaacgctccggcattcttatgataagagtcgccgcaggggagcgattcatgtcattagtgcgttctcaacaatgcacagtctggtcatcggacagatcaagacggatgagaaatctaatgagattacagctatcccagaacttcttaacatgctggatattaaaggaaaaatcatcacaactgatgcgatgggttgccagaaagatattgcagagaagatacaaaaacagggaggtgattatttattcgcggtaaaaggaaaccaggggcggctaaataaagcctttgaggaaaaatttccgctgaaagaattaaataatccagcgcatgacagttacgcaatgagtgaaaagagtcacggcagagaagaaatccgtcttcatattgtttgcgatgtccctgatgaacttattgatttcacgtttgaatggaaagggctgaagaaattatgcgtggcagtctcctttcggtccataatagcagaacaaaagaaagagctcgaaatgacggtcagatattatatcagttctgctgatttaaccgcagagaagttcgccacagcaatccgaaaccactggcatgtggagaataagctgcactggcgtctggacgtggtaatgaatgaagacgactgcaaaataagaagaggaaatgcagcagaattattttcagggatacggcacattgctattaatattttgacgaatgataaggtattcaaggcagggttaagacgtaagatgcgaaaagcagccatggacagaaactacctggcgtcagtccttacggggagcgggctttcgtaatcttgccctgggcattattgtcgtataaacgctttaccggacacatgacattcacaatgtgtgttaattttactgacatctttcaaaaggagcgtaatcatgccgcacatcgacattaaatgttttccgcgtgaactggacgaacaacaaaaagcagcacttgctgcagatattaccgacgttattattcgtcatctgaacagtaaagacagttcgataagcattgctctacagcagattcaaccagaatcttggcaagctatctgggatgccgaaatcgcgccccaaatggaggctttgataaagaaacctggttatagcatgaatgcttaacccgccgtaacacgcttgccgctggtaacaaacgtcccagcacctaaatgatgcaacgtattgagcttatcatcatcaaactgccagcggccttcgacaaatacccgtgcgtctgccgctgctgatactacttcgccaaacagcgtgtcgtattcttcttgcgcagaagtcgcaggtagcaatcgacactccatccacgccagacatttttcctcgaccagaggcaaaccaaataccgggcctctcacaaccggaatgccatagcaattaaatttatcttcatcacgccccgacacacttcccaccgcccacgtccagttagttgctgcaacgcccgggataacgatgccaaatttaccgttatgttcaatcaactccctggtccatgtcgatttatctaccacaatcgccacgcgtggaggttcaaactccaccggcattgaccaggctgcagccataatgttacgccgctgggattgctcatcgaaactggtgatcaagaccgttgggccatgatttaacagacggctggcatggtgtaattctatggggatgaatcggctcatggtatcgcctcgcgaagaaggtttttttaagcgtagtccgtaacgcaataagtaacgaaattaacgggattggcgatttgcgaacgtgatgcatgtccgcgatcgcacaaaatagccggtgcggcgtctattccaggttataagttgagaaaaccactaagggaaacgcctgatgacgcccattctgaatcactattttgcccgtattaactggtcgggagctgctgcggtcaatattgatacgcttcgtgcattgcacctgaaacacaattgcaccattccgtttgaaaacctcgacgttttgctgccgagggaaatacagcttgataatcaatcgccggaagagaaactggtgatagcccgtcgtggcggttactgttttgagcagaatggcgtgtttgagcgggtgttacgcgagctggggtttaacgttcgcagcttgttagggcgcgtagtgttatcaaatccgccagcattaccgccgcgcacccatcgtttgctgttggtggaactggaagaggaaaaatggattgctgatgtcggtttcggtgggcagacgctaaccgcgccgattcgtttagtttccgatctcgtgcagaccacgccacacggagagtatcggttgttgcaggagggtgatgattgggtgttgcagtttaatcatcatcagcattggcagtcgatgtaccgttttgatctctgcgagcagcaacaaagcgattatgtgatgggcaatttctggtcggcgcactggccgcagtcgcattttcgccatcatttgctgatgtgccgccatttgccggacggcggcaagctgacactgaccaattttcattttacccattatgaaaatgggcacgcggtggagcagcgaaatctaccggatgtggcgtcattatatgctgtgatgcaagaacagtttggtctgggcgtggatgatgcgaaacatggctttaccgtggatgagttagcgctggtgatggcggcgtttgatacgcacccggaggcgggaaaataatttatgtcaggttgccggatgcggcgtaaacgccttatccggcatacattagcccggttgtagacctgacaggcgaagcgcatcagacaacggtttcagagttcaattgcccattcggcatgaaacaaaatcaccgctgtgcctgaaatggtgactttttccggttggttatcacgaattgtcaccgtcacttcaatcataccgtcacgccccaatgcgcgcccctgatggcctttaacacgcaacacgttgccatcgtggggcaatacgttgtgatgtaccaaccatgcacccatcgggccattggcattgccagtcaccggatcttccacaataccaatcgcaggcgagaacatgcgaccatcggtttcgtttttgcctgggcggatctggaacgggaagaaaccattgcagccaatctttttgctgatagcggtcagcgcattaaggtcaggcgaaagggcgtcgatatccacttccggtttcagtgggatcatcacttttgagtgtcctgttgttgccacctgaattggcaagcctggcagaatatcgtcctcagtgagatgaagcgcgttgataatcgccgcacgtgtttcaccttccagcggtggctcaaagcccggcgtaccttgttccagcgaaatacgataatcatcgttgtgcttttcgatagtcacgcgatgttttcctgccagcgatgtttgccagatcgtgcaatttcctaaacctaacaccttcgcacgtacatagtgcgcagctactgtcgcgtgaccgcaaatcggcacttcaaccgttggcgtaaagtagcggatgcgcacatcgctgtcgtcgctgtgcagcagaaaagcagtttccgaatggcctaactcgcgggcgataagctgcatttgcgcttcgctaagattatcggcggggaaaacaacaccggcagaattgccgcgaaacggttgtgaggtaaaagcatcgacgtggtacacctgcggtttcattaacgttctcctgtgactggagaactatcatagcctgcaagtggccggagagcgaagggctatccggccagggtgaaattatcgccgcgaacgcacaatttgatatcgacgagtaaagtactcaaacggcgcgctccacacatgcaccagtcgggtgaacgggaagagcaggaagatggtcattcccaacaccagatgcaggcggaagacgaacgctacgccgttgagcatctctgacgatccaccacggaaagtgacaatgctttgcgcccaacccaccagcttcatcatttcgctaccatcaggatactgtgctgaaaacggtatggtacttagccccaacagacactggatcagcaaaatgctcatgatgatgatatccggcgtagtggaagtggcacgcacgcgctgatttgtcagcctgcgccacagcagtcctgcgccgccaatcaacgtcaacacaccgcaaataccgccgagcaccatcgccatgagttgtttcgctgccactggcaaaaaccacgcgtacatccagtgcggcgttaacatgccgaacaagtgcccgaagaaaatccccaaaatgccgatatggaacagattcgaccatatcaccatcccgcgtttatcgagcatttgacttgaggaggcgcgccaggtgtactgcccgtagtcgtagcgcagccagctgccgaggaaaaacaccgtcgcacaaatgtacgggtagatatcgtaaaaaaagacgttcagatactgaatcatttcccacctcccgcactgatgtcgacatattgcggcgcgacatcctggctaaagcgtcgctgatattgattaagcggcgagctgtcacacgccgtggcgttatcttcaataaacttcacctgttcctcttcccacactgcatcaagcgcctggcgggtgtcatcgcgctcttcgctgtttacttgttttgtgacactgtcacttgaaagggagcttcccgccagttgcagcagagcatcaaacaacgcgtaccacggtgcctcgcgttgttttaagcgaccgccaagcagggcgaggatcggcgcaacattgagcaatccttctttcgcctgatcgtcaggcagtacgcttaaatactccagatacagcggtagataatcgggcagttcccgacaatccagctgcaggccgaccttttcatactccgccagcaggtccaccattgcctggccgcgatcgcgggactcggcatgaacatgttcgaacagcagcagcgacgtggtgcgcccgcggtcaaacacttcgcaccattcggcctgtttatccagcagcggcgcgttaagcaggttgtgggtgaaatccgtaagcatcggcgcgtcgcggcggatcaacgccagcgcgtcctccttgcattcccacaacagctcgtccggatactccatcaacaggccgatcactttgaggatctgcattattcgccctccgctttgtcgcgcacttcggtgatgttgatggcatcgatacggctactgttgaacaggttgaatttactgtccgaaccgtggcaaccgtcgccaaaggtaaaaccgcagccgttgcgttctgcgaaggcatcgcccgccatttcccgatggctggtcgggataacaaaacgatcttcatagttggcaatggcgagatagcgatacatctcttcgacctgggcgacgctcaggcctacttcgtcgatggcacgagtatcagtaacgccttccacggtttgtgaacgcatatagtggcgcatcgccatcatccgtttcagcgcccgcagtaccggaccggtatcgccggcactcaacatattggcgagatattgcaccggaatacgcaggctttcgatggcgggcagcacgccttcgcttttcggcaaaccgcccgcatctgcgtaggactgaatcggtgacagcggaggaacgtaccagaccatcggcagggtgcggtattcagggtgcaacggtagtgccagtttccagtccatcgccattttgtagactggcgaacgctgggcagcgtcaatcacattttgtggaataccttgtttcagggcttcctcgatcactgagggatcgtgtggatcgaggaacacttcgcactggcgttcatagaggtcaacttcgcgctcggtgctcgccgcttcctcgatgcggtcggcgtcgtaaagcagcacgcccagataccggatgcgacccacgcaggtttctgagcacacggtcggttgaccggactcaattcgtgggtaacagaagatgcatttttctgacttgccgcttttccagttgaagtagatttttttgtacggacaaccgcttatgcacaaacgccagccacggcatttatcctgatcaatcagcacaatgccgtcttcttcgcgtttgtagatagcgccgcttgggcaggtcgccacgcagctgggattgaggcagtgttcgcacaggcgcggcaggtacatcatgaaggtgttttcaaactgcccgtacatctccttttgcatggcctcgaagttgcggtcgcgggcacgtttttcgaactcaccgcccagcagttcttcccagtttggcccccagatcactttgtccatccgtttgccgtcaatcagtgaacgcgggcgagcagtaggaatatgtttgccttccggtgcgctatgcaaatgttcgtagtcgaaggtgaaaggttcgtagtaatcatcaatctgcggcaccaccgggttggcgaagattttggttattacgcccatcttgttgcccagacgcgggcgtatcttgccattcacatcacgcacccagccgccttgccactcttcctgatcttcccagtttttcggataaccaatgcccggtttggtttcgacgttgttaaaccatgcgtactccatgccttcgcgcccggtccagacgtttttacaggtcaccgaacaggtatggcagccgatacatttgtcgaggttaagcaccatgccgacttgtgaacggattttcattttttcgcctcctgtacctgatcgcgaccttcatcatccagccagttaacgttcttcatcttgcggatcatgatgaactcatcgcggttcgatccgacggtgccgtagtagttaaagccccaggccagctgcgcgtaaccgccaatcatatgcgttggtttcgggcaaacgcgggtaaccgagttatgaatgccgccgcgcatgccagttacttccgaaccaggaatattcataatgcgttcctgggcgtgatacatcatggtcatgcccggcggtacacgttggctgaccaccgcgcgggcagtcagcgcgccgttggcgttgaatacttccacccagtcgttatcgacaatggtcagttctcgggcatctgtttcgctgatccagacaatcggtccaccgcgagagagcgtcagcattagcaggttttcactgtaggttgagtgaatgccccatttctggtgcggcgtcaggaagttaagtgctttttccgggaagccgtttggcggtatctggcgcatctcactgacgctacgggtgtcgataggcgggcgataagccaccaggctttcaccaaaagcacgcatccacggatgatcctgatagagctgctggcgtcccgacagcgtgcgccacggaattaactcatgaacgttggtgtatcccgcgttataggagacgtgatcgctttccagaccggaccaggtggggctggagataattttacgcggctgcgcctgaatatcgcgaaagcgaatcttctcgtcctctttgtgcagcgccagatgggtatgttcgcgcccggtgatctcgcccagcgcctgccacgctttgactgcaacatgaccgttggtttccggtgccagtgccagaatcacttctgaagcgtcaatggcggtgtcaatcagcggacgcccctgtgccgggccatcacgcttggtgtaattgagtttgccgaggaaatcgatttcatcctgggtattccacgaaatccctttaccgccattgccaagtttgtccatcaatggcccgagcgaggtaaagcgttcatacgtagcagggtagtcgcgctccaccgccacaatattcggcgcggttttgcctggaatcagatcgcattcgcctttgcgccagtcgagcacttcacacggctgtgagagctctgccggagagtcatgcagtaggggttgtaataccacgtcggtttctttgccaagatgacccacgcacacttgcgaaaatgctttggcgatacctttgtagatttcccagtcgctgcgtgattcccacgccggatcgaccgccgcagaaagcggatgaataaacggatgcatatccgaggtgttcatatcgtctttttcgtaccaggtggcggtgggcagaacgatatcggagaacaggcaggtactggacatgcggaagtcgagcgtcaccagcaggtcgagcttgccttcaatcgctgcagtttgccactcgacttcttccggtttgatcccgtcgctggcaccgagttcctcgccctgaatcccgctttcggtccccagcagatacttctgcatatactcgtggcctttgccggaggagccaagcaggttagagcgccagacaaacaaattacgcggatgattgctgctgctatctggttgttcgcaggccatacgtaaatcgcccgatttcagcgcctgggcggtaaattctgtgggggataatccggccttgtcggcttcagctttaatcccgagcgggttacgccccagctgcggcgcagaaggtagccagcccatacgttcggcgcgaacgttgaaatcaatcagatgaccgctgtacttactggcatcggcgagcggtgaaagtaactcctgagcagagactttttcatagcgccattggctggaatgattgtagaaaaacgaggtgctgttcatttggcgcggtggtcggttccagtcgagcgcaaaggccagtggcaaccagccggtttgtgggcgcagtttttcctggccgacatagtgtgcccagccgccaccgctttgcccgacacaaccgcagaagatcagcatattgatcatcccgcggtagttcatgtccatgtgataccagtggttaacacctgcgccgaggataatcatcgagcgcccatgcgttttatgggcggtatcggcaaattcacgggcgatggtttcaatatactggcgcggcacgccggtaatttgctcaccccaggctggggtgtacggtttgatttcagcgtaatctttcgcactgttttcatcttccagcccgcgatcgaggccgtaattcgccagtaccaaatcataaacgctgaccaccggacaggtgttgccatcgactaacgtcaggtttttaacgggcaattggcgcaccagcaccggattgtgttttacgctgcgaaaatgcggattttcaatgccgccaaagtaggggaaggccacgcctgcaacagcgtcatgttgaccgagcagggttaacgacaattcggtttccgtaccggcggcaatggattccagattccatttgcctttttctccccagcggaaaccaatcgaaccgttcggcactaccaattcacctgcggtattaactgctacggttttccactgcggattgttgctttcgcccagtccatccaccaggtcagatgcgcggatcatgcgcccgggaacgtagctaccatcgtcgcgaggctccagcattaccagcatcggcatgtcgctgtagcggcggcagtagttgataaagtagtcgctgggattatcgagatgaaactcttttaaaatcacatggcccattgccatcgccagggcgctatcagtgccttgtttcggtgccagccactggtcgcacaatttggccacttcagagtagtcaggggtaatggcgatggttttagtgcctttgtagcgtacttcggtaaagaagtgggcgtccggcgtacgtgtctgcggtacgttagacccccaggcgatgatgtagctggagttataccagtcggcagattccggtacgtcggtttgctcgccccaggtcatcggcgaggcgggcggcaggtcgcaataccagtcgtagaaacttaaacaggtgccgccaagcagcgacagataacgcgttccggcggcgtaagaaaccatcgacatcgccgggatcggcgagaaaccggcaacgcgatccgggccgtaggttttgatggtccagacgttagcggcggcaatcagctggtttagttcctgccagttggagcggataaacccgccgcgcccacgcacttgtttgtagctcaggcacttttgcggatcgttcataatcgatgcccacgccagtaccggatcgctgtgttgcttgagggcttcgcgccacagttcaatcagtcgtttacgaatgagcgggtatttcaggcggttagcgctgtaaagataccaggagtaacttgcgccacgcgggcagccgcgaggttcatgattgggcaggtcagggcgagtgcgcgggtagtcggtctgttggatttcccaggtcaccagaccatttttaacgtagattttccagctacaggagcctgtacagttaacaccgtgggtggaacgcacgattttgtcgaactgccaacgctggcgatagctgtcctcccagtcgcggttgctatgcatcacctgtccgtgaccatcggcaaaggtttcgcccttttgtttgaagtagcgaaagcgatccaaaagtttactcatgacatgactcctgctccaggaatgaattgggatctgatgccttgtcggatgcgacacggttgtacatcaggcatcgatctcttatttttggctgaacttccgccgaccataaaccagccaggtcagcagcacacaaacgatgtagaagattaaaaacactttcatcgcgccgaccggagagccggtcatattgagcgacatgccaaacgcctgcggaataaaaaagccgcccactgcgccaatggctgagataaagcccagagccgccgccgtttcggtgacggcttctttatgagcttgctcatcactaccgcctttcatctttacccgataaatggttatctggcgaaagatgacggcgatcatctggaaagtagaaccacttcccagacccgcagtcagaaacagccccataaatacggcgtaaaaggcgatgaaattaccggagcctgtgcccggtaaggtaaggaacagcagggcactgaaaatcgccataaaaataaagttgatcaacgtcacccgcacgccgccgaacttatcggaaatagcaccaccaaccgaccgcgcgatggcaccgataaatgggccaaagaacgccaggcgcagaatattcacatccgggaactgggtttttgccagcatggcaaaacccgcagaaaaaccgataaacgaaccgaaggtggcaaggtaaagcaggctcagcagccagagatgcaggcgttgtaagacagggagctggtcggcaattgaggcgcgtgaactggcgatatcattcatccctgaccatgcggcgatcgtggcaatcgccagtagcggtacccaaatccatgcggcattcgccagcgacatcaccgaaccgtcggcctgcggtacgccattgacgccgagaaaggcaaatacaggtacaaaaatgaccagcggtgcaaccagctgcattacacttacacctaagtttcctaatccgccattaatcccaagagcgctcccttgtttggcttttggaaagaagaaactgatattgcccatgctcgaagcaaagtttgcacctgcaaaaccgcatagcaaagcgataacgataaatatcccaaaaggagtattcggattttgcacggcaattccgagccagacgcaaggaataatcaggattgcagtactaaaaaccgtccatcggcgtccaccgaatataggcaccataaaggagtagggaacacgcaataatgcgccagaaacggagggtaatgcggttaataaaaagagttgatcggtagtaaaattaaaaccgattttattgagattaacggtaactgcgctaaatagcatccagacacagaaggcaagaagtagacaactgactgatatccagagatttcttcgagcaatatgttttcctttattttcccagaaggccggattttctggtttccagtcgcgcaaaagataacgactatttttctcattttgcagtgccatattgttcctcacatgcacacattggtaatgaaaaaaagacaaaacacgaggtaaggcgcaatagccagttattagaattaaggatgaattgggtgaagtgctgattgaaagaatagataagaaagcgtaaccgcgggggcagaatggggattaagtagccagatatgtgttactaaatgtaactaacaagctaaccttcaaacggggttaatctttgaacgtatgtcatgtttcaacccttcagatcgtgaatctaaagggttacatattaactatattatcaacaagaccagacacttatagaattagtgatgatttattcactaaaaaggccatgaactggaggaaaacgatctgtccagaaggtctatcggttcctctcttattgcctgattgtaataatcgttattacagtaagtattgtttatttcatctaaggtcatgtttttaacttttatattcatctggtttacaacttcctctgtcttgtaagtgtgtatattatatggggtatatgcttttttaataggatagtgaaacaattcgttatccacatctattccgtcagagtgaacttcaaatgcaccaggcgaaagaattgccaggccagtattaagcttaagtgctggggaaaacaaattaaataacatgagctgcatagtagggcaattgttcttcccagaaacatttaaaaaatttaagttttgctctgttttattatggggaataaagttccaatatcggatgtattattagtatcaatgtgggttattttattattgtccagtcttaaacttttgatagatggaagataagtcaggaaatcaagatttatatatttcaactggttgttagcagcgtttaatgtctgaacattgcagaagttgctatagaatattttaatttcagaaagcaaattgttgttaataagtaacgtattcaagttgggaaataagtcattgtgtaaacttgttagtttattatgggatagatccagcagtaagagttcatttttattacctgcaacaatatcagttaattgattatggctgagattcaggtattgcagccattcgcaagattctaattgcacaaactctagttgattatgtgccgcactaaaataagtaactgatgaaagcctatctatatcaatatttctgagagcattattattcatagatatatgtgtaatacttacatttctgccttgaggaaaatttattgactcaagagcattactattcagacttagctttacgagtctatcgtagttggttgcatcaaaatgtgtgaattggttattatcaagattgatagatgtgaagttttgcagccctggtggttgagtggttaaattaagtcctgataaatcaatggtcacttcattagtgtcatcaattatatttcttactgcagtccagtactgcatttgtgcaagtggatcattgttgatgccgttaactaatacatgccaaagatgttttgatgatattagttgatcaatgtcattggttggcagtaaattgttattgcttaagtttaaatattccagttttgtagtgtttttggcgtttaaatgtgcaatatggttgtcgtttaaagtgattgttttcatcctgggatgattgtgtaatataaggtcagtgatcatattgtgatgggcacttaactcaatcagagattcttgccgcgcgagccgttggcttcatcgttatagcctttaaaatcatattcccagtgaccaaaaccaatcatttgatcattgatttgcgtttctcctttaaagccgagacgggcataagttttatcaccatcgtcacgcttatcatcagtaaaataacgtagagcggtaaccttgccataaaggtcgagtttattaccatccttgttatagacttcggcagcgtgtgctacgttcgcagctaacaaaccagttacaaccaccgcaactatttttaatttcatttaacagaatccttttaattatcgttaaacgtattttctaaacgaattttaaacggcgtcatttataaatgacatactgtttttaaaatagaatggtgattaaaaacaatgagaaaaatagatgaaataatattatttatcgatatgtgatcgaagtcgaaatgagatataaggtgaattactggtatttgaaatttatttttttaatattgtcggaatttatctgattaactaccgggccgtagacccggcagttattttaaccacgacgtgtcgccagccagcagagcagggaaccgccgcagaccatcagcgcgccttgccagaacgagaacgacagcggggcgctgagcagcacggctgcaagcgctgaggaaagtacaggcgtaaaatacgaacctaccgccataatggtgacattgccatgcaatataccgacattccatgcagcataagcaaatcctaaggtaaatgccgcagagatgagtttaatcatgacgggcgtgctaaatatcatttctggttgtggcgtaagaaaatagtaaacccacagacttgctcccgttagcaggacaaaaacggtaattccattaaatccgcgtgcgtatttattcgttactgtgcaataggctgcccagataaacgcaccaatgaacgccaggaaataactcaatgggctggtggtgatattattgatgatttcatcataatgtaacccattgtcaccgcctaacacccaacagacgccgacgagggctaataataatccaggtacaatcaaccagttggttttctgaccattaaacagaatggcaaagagaattgtcaggctgggccacagatagttcaccatacccacttcaatcgcctgatgatgggtcgccgcataccctaaggaaagcgccagacagatttcatagctgacgaataacagactcccggcgagtaaatagcctttcgggatttgccgaatacgcggaaatccaaccgtgaagattaacagcagcccgcttaatgaatagatagcagctgcgccgccgaccgggccgagcccctcactgacaccgcgaatcaatcctaccatcgtgctccacaggacgatcgctatcagccctatgagcgttgctttttgtcgtgtcatgctcgctgttttgtctctcttgccgttaaaaattaagctgaattttatagcatttttttaactggcctgtcaggcagtggtgcgtttttctaccgctattgaggtaggtcaatttgcgaaggcggattattttgtggcaaacagatgttctttttgatttcgcgcaaaaagattcagaattttactgttagtttcctcgcgcagtaatacccctgaaaaaagaggaaagcaatggacgtcagtcgcagacaattttttaaaatctgcgcgggcggtatggctggaacaacagtagcggcattgggctttgccccgaagcaagcactggctcaggcgcgaaactacaaattattacgcgctaaagagatccgtaacacctgcacatactgttccgtaggttgcgggctattgatgtatagcctgggtgatggcgcaaaaaacgccagagaagcgatttatcacattgaaggtgacccggatcatccggtaagccgtggtgcgctgtgcccgaaaggggccggtttgctggattacgtcaacagtgaaaaccgtctgcgctacccggaatatcgtgcgccaggttctgacaaatggcagcgcattagctgggaagaagcattctcccgtattgcgaagctgatgaaagctgaccgtgacgctaactttattgaaaagaacgagcagggcgtaacggtaaaccgttggctttctaccggtatgctgtgtgcctccggtgccagcaacgaaaccgggatgctgacccagaaatttgcccgctccctcgggatgctggcggtagacaaccaggcgcgcgtctgacacggaccaacggtagcaagtcttgctccaacatttggtcgcggtgcgatgaccaaccactgggtggatatcaaaaacgctaacgtcgtgatggtgatgggcggtaacgctgctgaagcgcatcccgtcggtttccgctgggcgatggaagcgaaaaacaacaacgacgcaaccttgatcgttgtcgatccccgttttacgcgtaccgcttctgtggcggatatttacgcgcctattcgttccggtacggacattacgttcctgtctggcgttttgcgctacctgatcgaaaacaacaaaatcaacgccgaatacgttaagcattacaccaacgccagcctgctggtgcgtgatgattttgctttcgaagacggtctgttcagcggctacgacgctgaaaaacgtcaatacgataaatcgtcctggaactatcagctcgatgaaaacggctatgcgaaacgcgatgaaacactgactcatccgcgctgtgtgtggaacctgctgaaagagcacgtttcccgctacacgccggacgtcgttgaaaacatctgcggtacgccaaaagccgacttcctgaaagtgtgtgaagtgctggcctccaccagcgcaccggatcgcacaaccaccttcctgtacgcgctgggctggacgcagcacactgtgggtgcgcagaacatccgtactatggcgatgatccagttgctgctcggtaacatgggtatggccggtggcggcgtgaacgcattgcgtggtcactccaacattcagggcttgactgacttaggcctgctctctaccagcctgccaggttatctgacgctgccgtcagaaaaacaggttgatttgcagtcgtatctggaagcgaacacgccgaaagcgacgctggctgatcaggtgaactactggagcaactatccgaagttcttcgttagcctgatgaaatctttctatggcgatgccgcgcagaaagagaacaactggggctatgactggctgccgaagtgggaccagacctacgacgtcatcaagtatttcaacatgatggatgaaggcaaagtcaccggttatttctgccagggctttaacccggttgcgtccttcccggacaaaaacaaagtggtgagctgcctgagcaagctgaagtacatggtggttatcgatccgctggtgactgaaacctctaccttctggcagaaccacggtgagtcgaacgatgtcgatccggcgtctattcagactgaagtattccgtctgccttcgacctgctttgctgaagaagatggttctatcgctaactccggtcgctggttgcagtggcactggaaaggtcaggacgcgccgggcgaagcgcgtaacgacggtgaaattctggcgggtatctaccatcatctgcgcgagctgtaccagtccgaaggtggtaaaggcgtagaaccgctgatgaagatgagctggaactacaagcagccgcacgaaccgcaatctgacgaagtggctaaagagaacaacggctacgcgctggaagatctctatgacgctaatggcgtgcttattgcgaagaaaggtcagttgctgagtagctttgcgcatctgcgtgatgacggtacaaccgcatcttcttgctggatctacaccggtagctggacagagcagggcaaccagatggctaaccgcgataactccgacccgtccggtctggggaatacgctgggatgggcctgggcgtggccgctcaaccgtcgcgtgctgtacaaccgtgcttcggcggatatcaacggtaaaccgtgggatccgaaacggatgctgatccagtggaacggcagcaagtggacgggtaacgatattcctgacttcggcaatgccgcaccgggtacgccaaccgggccgtttatcatgcagccggaagggatgggacgcctgtttgccatcaacaaaatggcggaaggtccgttcccggaacactacgagccgattgaaacgccgctgggcactaacccgctgcatccgaacgtggtgtctaacccggttgttcgtctgtatgaacaagacgcgctgcggatgggtaaaaaagagcagttcccgtatgtgggtacgacctatcgtctgaccgagcacttccacacctggaccaagcacgcattgctcaacgcaattgctcagccggaacagtttgtggaaatcagcgaaacgctggcggcggcgaaaggcattaataatggcgatcgtgtcactgtctccagcaagcgtggctttatccgcgcggtggctgtggtaacgcgtcgtctgaaaccgctgaatgtaaatggtcagcaggttgaaacggtgggtattccaatccactggggctttgagggtgtcgcgcgtaaaggttatatcgctaacactctgacgccgaatgtcggtgatgcaaactcgcaaacgccggaatataaagcgttcttagtcaacatcgagaaggcgtaagggggcgaacagatggctatggaaacgcaggacattatcaaaaggtccgcaactaactccatcacgccgccttctcaggtgcgtgattacaaagcagaagtcgcaaaacttatcgacgtttccacctgtatcggctgtaaagcctgtcaggtggcgtgttcggagtggaacgacatccgtgatgaagtggggcactgcgtcggggtttacgataaccccgccgatctgagcgccaagtcctggacggtgatgcgctttagcgaaaccgaacagaacggcaagctggagtggctgatccgtaaagacggctgtatgcactgtgaagatcccggctgcctgaaggcgtgcccgtctgctggtgcaatcattcagtacgctaacgggattgtcgatttccagtcggaaaactgcatcggctgtggttactgcattgccgggtgtccgtttaatattccgcgcctcaacaaagaggataaccgggtatataaatgcacgctctgcgtcgatcgcgtcagcgtcggccaggaaccggcttgtgtgaaaacctgtccgaccggggctatccacttcggcaccaagaaggagatgctggagctggcggaacagcgcgtggcgaaactgaaagcgcgtggttacgaacatgctggcgtctacaacccggaaggggtcggtggtacgcacgttatgtacgtgctgcatcacgccgatcagccggagctgtatcacggtctgccgaaagatccgaagatcgacacctcggtaagcctgtggaaaggcgcgttgaaaccgctggcagcggctggctttattgccacttttgccgggttgattttccactacatcggtattggcccgaataaggaagtggacgatgacgaggaggatcatcatgagtaagtcgaaaatgattgtgcgcaccaaatttattgatcgcgcctgtcactggaccgtggtgatttgcttcttcctggtggcgctgtccgggatttcgttcttcttcccgacgctgcaatggctgacgcaaaccttcggtacgccgcagatgggacgcattttgcacccgttcttcggcattgcgattttcgtcgcactgatgtttatgtttgtgcgttttgtgcatcacaacatcccggataagaaagatattccgtggctgttgaacattgtcgaagtattgaaaggcaatgagcataaagtggcggatgtcggtaagtacaacgccgggcaaaagatgatgttctggtcgatcatgagcatgattttcgtgctgctggtgaccggggtgattatctggcgtccgtactttgcgcagtacttcccgatgcaggttgttcgctacagcctgctgatccacgcggctgcgggtatcatcctgatccacgccatcctgatccatatgtatatggcattttgggtgaaaggatcgattaaagggatgatcgaagggaaggtaagtcgtcgctgggcgaagaaacaccatccgcgctggtatcgtgaaatcgagaaggcagaagcgaaaaaagagagtgaagaagggatataatctcttttgaactttaagctgaaaatggcgctgtaaaaggcgccattttcatattgtagacaacgtaggctttgttcatgccggatgcggcgtgaacgccttatccggcatgaaaacccttcaaatccaatagattgcagtgaacgtgtaggcctgataagcgtagcgcatcaggcaatgttgcgtttgtcatcagtttcaaatggcgctgtaaaaggcgtcattttcatattgtagacaacgtaggctttgttcatgccggatgcggcgtgaacgccttatccggcatgaaaacccttcaaatccaatagattgcagtgaacgtgtaggcctgataagcgtagcgcatcaggcaatgttgcgtttgtcatcagttctaaatggcgctttataaagtgccatttttttattgcgtaaccagacggcgtaatcgcgacacatccactgttttttctgcctctgccagactccaggcgttttgcagattcagccacatttgcggcgaactgccgatcaccacggaaagtttaatcgccatttctggcgtcaaagctgcttttcctgtcagcaatcggcttgccgttgagggagcaatttccattgctctggcaaactcgcgcaggctgacattaagttcgtccagtgattcctgaataatgtcccccgggcggggatgattggccattttcattagtgtctttactctcagtagcgttccttcactgggaacactatcattattgttccttcctacgcaacaataatccatttagccatttcatgttggagagtgtgcgatgctgcgacccgaacatggcagtcgcagcaaaggcctcttagtgacggaaatcaatcaccatgcggccacggattttgccttcttccatctcagtaaagatggtgttgatgtccgctaacggacgcagggcgactttcggcaccactttaccttcggcggcaaactggaaggcttcagttaaatcctggcgcgtgccgaccagcgaaccgaccacttcaataccatccagcacaagacgtgggatatccaggctcatagactccggcggtagaccgacagccacaacacgaccgcctgcacggacagcatcaactgccgagttaaacgcagctttagctaccgctgttaccaccgcagcgtgagcgccaccagttttctcctgcacaattttggcggcgtcttcggtgtgtgagttaatcgctaaatctgcgcccatttcggttgccagttttaactgctcatcattgacatcaatggcgatcactttggcgttaaagacattcttcgcgtattgcagggcgaggttacccagaccgccaagaccgtagatagcaatccactgccctggacgaatttttgacagcttaacggctttgtaggtggtgactcccgcacaggtaatgctgctggccgccgccgagtccagaccatctggcacttttaccgcgtaatcggcgaccacgatgcactcttccgccatcccgccatcaacgctgtatccggcatttttaactgaacggcagagcgtttcgttaccactgttacagtattcgcaatgaccgcatccttcgtagaaccacgccacgctggcacgatcgcctggttttaatgaggtgacacctggacccacttctgccaccacaccgatgccttcatggcccagaattacgccggttttgtcaccaaaatcgccattcttaacatgaagatcggtatgacatacaccacaacactccattttcagcagggcttcgccatgtttcagtgagcgcagtgttttatacgtaacgtcaacatgatgatccttcgtaacaactgcagccttcatagttcctccttttcggatgatgttctgcatagcaggtgaggcaaatgagatttattcgccactacccagtatggatgagatctgaaaaagggagagggaaatagcccggtagccttcactaccgggcgcaggcttagatggaggtacggcggtagtcgcggtattcggcttgccagaaattatcgtcaatggcctgttgcagggcttcggcagaggttttcaccgccacgccttgctgctgcgccattttgccaaccgcaaacgcaattgcgcgggagactttctgaatatctttcagttccggcagtaccataccttcgccgttcagcaccaatggtgaatactgcgccagcgtttcacttgccgacatcagcatctcatcggtgatacgtgacgcgccggaagcaataacacccaggccgatgcccgggaaaataaaggcgttgttacactgggcgatagggtagattttatctttccataccactggattaaacgggctgcccgtggcgaccagcgcgttaccttcggtccaggcgataatgtcctgcggtgtggcttccacgcgtgacgtcgggttagacagcggcatcacgatcggacgcggacagtgtttatgcatctcacggatgatctcttccgtaaacagcccggtctgtcctgagacgccaatcagaatatctggttttacattgcgcaccacatccagcagtgacagcacatcgctgtcggtatcccagtcactgaggttttcgcgcttctgcaccagtttggtctggaaaggcagcaggttcggcatcttgtcagtcagcaagccaaagcgatcgaccataaagactttctgccgcgccgcttcctcgcttaatccttcgcgctgggtctgggagatgatcatttcggcaatgccgcatcccgctgaacctgcgccaaggaagacgatttttttctcgcttaactgaccacctgccgcgcggcttgctgcgatcagtgtgccgactgttaccgccgcagtgccctgaatgtcatcgttaaaagaacaaatttcattgcgatagcggttaagtaacggcatcgcatttttttgagcaaagtcttcaaactgcaacagcacgtctggccagcgttgtttcacagcctggataaattcatcaacgaattcatagtattcgtcgtcagtgatacgcggattacgccagcccatatacagcggatcgttaagcagctgttggttgttcgttccgacatccagcaccaccggaagggtatacgccgggctgatgccgccacaggcggtatagagcgacagtttaccgatcggaatgcccatcccgccgatgccctggtcaccaagccccagaatgcgttcaccgtcagtcaccacaatcactttaatattatggttcggcacgttttgcagaatatcgtccatattgtgccggttctggtaagagataaacacgccgcgtgaacggcggtagatctcagaaaaacgctcacaggctgcgccgacggttggggtataaataacaggcatcatctcatcaagatgattgtttaccagacggtagaagagggtttcgttagtgtcctggatgttacgcaggtagatgtgtttgtcgatttcggttttgaatccctgatactggatccatgctcgttccgcttgttcttcgatggtttcgaccacttccggcagtaaccccagcaggttgaagttacggcgttcttccatgctgaaggcactgcctttattcaacaacggaaattccagcagtacagggccagcgtaagggatataaagcgaacgctgtttttttgtttttggttccatgtcactcactcttttttgaatatccatccctggggggcttttatcgtctttgctttaccgccagggcgtcggcctcaagtataaagcagataaaaacaaaaacaccattgcgcaggcaatggtgtttaatcgtcattgaggactgatggttatgaattacttttcagcggggcgttttctgccggttgggttatttactacgctggatttgtcaccttcggtaactattttgcgctggttagaaattttatggtccagtccaagaatatgacgtgcctgacggttcgatttcattttaactcctcaatcctgtagctagttttaaggacaacatcgccgtagcgaagaaacacgtgctaaacccctaaattaggttgccgatcaagcatagcaccttaaagcgtagggtgctggccactgaccacataattgatcgtttgctggtagatatcactgaggatgtcgttatcagaagcttcaacccatttggtcagctccatgagaatgtcatcttcagtgacaacaccatgctgtgcccgaaggccttgctcaatggcattaaccagagcgggttctgctgttgaattttctgcctgataataagtaaacatagtgattctccgtgtctgtgtatttatggtgtctgctacggatcgcagatttataaagcacattcagcatggcaaatatttgccgcttcgttgttaagattagtcctggttgatgatttttatattttaacaccatgatattcatagggattgtgattggtatgatccgattaatattgatacaatatcttttgggttatatattcccggtaatctattgtgggaatttaatttaagtgcagaagtaatattttcgccggattttattcggaatatcctgcttatcctcgtgctgtttctcacgtagtctataatttcctttttaagcccacaggagagcaacaatgacaatccataagaaaggtcaggcacactgggaaggcgatatcaaacgcgggaagggaacagtatccaccgagagtggcgtgctgaaccaacagccgtatggatttaacacgcgttttgaaggcgaaaaaggaaccaaccctgaagaactgattggcgcagcgcatgccgcatgtttctcaatggcgctttcattaatgctgggggaagcgggattcacgccaacatcgattgataccaccgccgatgtgtcgctggataaagtggatgccggttttgcgattacgaaaatcgcactgaagagtgaagttgcggtgccgggtattgatgcctctacctttgacggcataatccagaaagcaaaagcaggatgcccggtctctcaggtactgaaagcggaaattacgctggattaccagttgaaatcgtaaagcattgccggatgacgcgtcaggcgcgtgaatgcctgatgcgttgttagcatctctacagcgcccgccagcaccggagctcacgtccgtcctcccttattgctaatgattgccggacttcacatccgtgggttgccagcgggcaacgttcgtagaaaaaacagccttgcggcaacgtgcggtttcccggcagatccgttttacgtaatgcccattcttcctccagcggtttatcaatggcggggagggaatccagcaataatcgggtgtatggatgtgcaggtgccgtcagcacctgctgcgcgtcgcccagttctacaatctgcccgagatacatcaccgccacccgatcgctcatatgacgtatcaccgagacattgtgtgaaatcagcacataggtcagcccgtgattttcctgtagcgttaccagtaaattgaggatctgcgcctgaacggagatatccagcgcagaggttggctcatcaagcacaatcacgtcaggctgcgaagagagtgctctggcaatggcgatacgttgccgctgcccgccggagaacgcatgaggcaggcggtcgagatactccggacgaatacccacctgcacagccaactcctctgccaacgctcgccgctgttgttcactactacgcttagctatccagagcggttctgtgatgatgcgccacaccggtaagcgcggattaagcgaagagagcgggtcctgaaacaccatctgcataatgcgttgtgagccagaacggatgtactgcccgtggctcggttgcagcatacccattaaaagctgtgcgagggtgcttttgccgcagcctgactcgccgacgatccctaaggtttcaccacggcggatctgtaaatcaataccattaatggcatgaacatgttccgtagttttaccaagccagtttttacgggccgggaaattgatatggacgtcgcgtaacgttaataacgtgtcagacacttataacctcctgctgcggataccaacaggcacagcgctggttgttgtcaccacacgctgtcagcgccgggacgttttcacactgtgcacctgccgcatagcaacgatcgcgaaaagcgcagccgtcaggcaaatgggtgaggtttggtaccgtccctggaatggcgggtaatagctggcgtggtactccatgttctggtgcgcattgcagcaaaccaatggtatacggatgccggggatgatggataacgtctgccgtcacgccgctttcaattacgcttccggcatacatcacgtaaacgctatcgcacagttgcgacaccacggccatatcatggctgatgaacagaaccgcagttccactggcgcgggctttatgtttaagcaaacgcagtacctgcaactgcaccgtgacgtccagcgccgtagtcggttcgtcggcaataatcaattgcggctcgcaggagaatgccagcgcaatcattacccgctggcgcataccacctgaaagctcaaacggatagcgcgacataacttccacggcatccgggatttgcatctcttccagcaggtcaatcgctttagctctggcttcccgacgacttattggttgatgatggcggatcacgtccatcatctgaagacctattcgacgtgtcggattgagggcggtcatcggttcctgaaagatcatcgccactcgtgcgccgcgccactgacgaagctgtttttcccgcgcgttaagaacatcttctcccagcagggaaatctgcccccgatgtacgcaataactgcccgtcggtagcagacgcataatcagcattgcggtgactgatttacctgagccggattctcccaccagaccgacaatttcaccgcggttaatctgcaaggacacattgttgagcgcgtgaacatcaccgttaaaaccggggaaactcaaatgcagttgttgaatgtccagaacgggttgggtcatgactgctttcctcctgctttcgggtcaagcagatcgcgaataccatcaccaaagagattaaacccgacggcggtaagcaaaatcgctgcccccggaaatgcgcaataccaccactgatcgagtacatagttgcgaccatttgctaccatcgcgccccattcagcactcggttgttgagcacccaggccaataaatcccaacgtggcggccattaaaatcgcgctaccgatatccagcgatgcctgcacgatcagcggcggtagggagttacgtaaaatatgccagttgatcagatgccaacgagacgcgccaaaggttttcgccgcctgaacataggtatactggcgtacaactaatgcttgcccccgcgccaggcgcacataaaagggaattcgcacaatagcaatagccagcatggcgttaaacaaactcggcccgagagcggcagccagtgccattgtcagtaccaacgaaggaatcgacagcataatgtccatgatgcgcatgatgatggcgtctgcgcgtccaccaagcacaccggatagacatccgagtagcgaaccaatcatacccgcaatggcaaccacgactaatccggcgagaattgattgctgactgccgaccagtacgcggctaaacagatcgcgtcccacttcatcggtgccaaaccagtgcgccgcagaaggcggcaaaaggcgggcggttaaatcaatggcgttgggatcatgcgtcgccagccacggtgaaaaaatcatcatcaatagcattaatacaatgatgactgcgctggtcacggtgagcggactgcctttcagcatccataccagttttgcaccgttaaatcgcgtttgtttttgtgggcgtacggcggacgtttcctcgcttagcatcattcaccacctccacgtccgatacgcggatcaatccacaaatagagcaaatccaccaccaggttgaccagcacataagcaaatgaaaccacgacggcaaagcccatcactgccgggaagtcgagcgcctgtattgatgttactacccatgcacccattccgggccaggcaaaaacggtttcggtgagcactgcgccatacaacaaatcgcccagcgccaaacccaatacggtaatcgatgggatcaacgcattgggtagcgcataacataaaacgatataccagccgggcaagccgctggcccgggcggtacgaatgtagtcttcactcaattgttccagcatcgctgagcggatctggcgagcgacaattcccaggtgaacgaacgccagcgttaatgccggtaagatgagatgttgcaacgcattgaagaagacttcaccgttgccttcaagcagcgcatcgagcagataaaagccggtaacgtgcgttggtggatccagccagtcatcaagccttccgccgccgggaagaatttgcagatgaccataaaacagcacaatgacgcccagcccaagccagaacgcaggtgtggagattccggtaatggccattattcgcaccagatgatccagccagcgatttcgccagactgcagagagtatgcccagcgggatgccaatcaggagtgccagcagcagggcaccaaaagccagctccagcgtcgccgggaaaaatatacgcaactcttccagcaccggacgcccggtacgaatggatgttcccaggtcaccatgaaacaggtcgctgacgtagcggtaaaactgtacatacagtggctggtccagtcccagttgctggcgaatattttccacgatagcatcgctggcgcggtcacccgccagtaaccgcgccggatcaccagggatcagatgcgagataataaacgtaatcacgcagacgcccgccaccacgagcaccagcccccagcagcgttggcgtaaaatactccagaaggtcacgttatttactcatggtattgatattgaagacctgttccagcatgggattgaacacaaagcctttcacctctttgttcatcgccagttggtagtttttctggaacaggtacacataagcagcgtcatcaatgacgattttctgtgcctgctggtagtcccgggtacgctgcgtctggtcggtggtcgcaagcgcattgcgcagtaacttatcgacctcactgttttcatagaacgagcggttacccggcagaccttttttgtctgactcaaaccagtaattcataaacatatacgggtcggcaaaatccggactccagttgccaatcgcaatgtcgtaatcacctttacccactctgtcgcgcatggtggcgttcgccagcttttccagcttcacaatgatgcccagcttgttgagactggattgtgtcgccagagcaataggctcccagttcggatcgttatcggagtagagaaacgtcaggctggtgggtttgctcgtcactttatcccattcggctttggctttcgtttcgtcatggttgtattgcattgccgtcgcatcgtagccccacatgccttccggaatcgggccgcgcatctgttttccgttaccactcagaatgccgttaaccatgccctgataatcggtagaccaggaaatggcccgacgcagatccgcctgattaagaggcgctttgctgttattcagatacagataggtaacgcgcagtgacggatactctgccacattgactttattttcctgcttcagggcgttgagttgatccaccggcagcgcatcggcaatgtcaatgtcgccacgggagagctgcaggcgacgggaggcactttcaccaataatttttaccgatacccgtttgaagttcggtttattgcctgggtaatgcggatttggcaccagaactaattgctgacctttttgccagcttttcagcataaatggtccggaaccggcggtattttgcgcgaggaagccgcgagcatcatccgctgcatgttcctttaagaccgccggattgataatggatgcaccgtcattcgccagcgtgtagaggaacggtgcgaatggttggctaagggtaaacttcaccgtatgttcgtcgggagcatcaatctttaaatctttgggaaatgcttctgctggcccctggccgatttttagtagccgctcaaaagaaagttttactgcttcggcagtgacaggtgtgccatcggcaaatttagcattatctttcagggtgaacgtccactctttttgatcgtcagacgctttccagctacttgccagatcgccttcaacgtcggttgagcctttatcaccgtccgttttgtactgaaccagccgctgataagacgggtaggtcactgtccagtcgttattatctattgttaccgccgggtcgagggtttgtggatcggcggccttaccaatcaccagcatatcttttggtacggcggcgtgcgcaaccgggaaatttgtggcaaggacgagcgcgagcaatgtgggacgaaacgatatcgatctcttcatgacagtttcctgattaactgacgtgctgtgtgccaggggatataaaacaagagaattgatcagcgagcagagggtaactcgctgcctggggtaattcgaagtgccaccattcgctggagataccgacaaaaccgccaccagtcattatcgcattcagcaacagccgattgcgctgagcggcgggcgggacggaagggtgataggcatgggagcgctcgtgcatttcatcgaaccctgcgcccatatcgaggatgttcccgtgctcatcacgaagcgtcaggtcgatcgccgtgccacggctgtgattagaaccgaccgtcacatcaacaacatattgcgggtctgggcaggcttgccacaacatcgcctgtgcttgttgtgggcgatacgcatcgtaaatcaccagttgtaaccctgacagctgggcgatgctgatacttttcgccagcgcggtaatcgcatccttgtgtaacagacaacgcgcttgctgataaatagctttacctgtgatgttatcagcgcaggcgtatttcaattcgatctccagatcagggaagattacggctaaatcaaccagttcggtggtatccgacataaacggttcctgtataagacaaaaattgctgcgctttccgcttatgcagatctcatgccatgccgggataagcgccagaatgctggcttaaagttatattttttaacttttgatcaacatttgtgcagcgtagtgcagttttggtgcaagaggggaagttaaggaaggaatctcccggaatcgtagctgaaatcacagtatttaagtgacagtgtcacgttaaatgaaaacccgcgagtgcgggcgagaggaatttgtcagattttcagcggtaacacgctgctcatccagcctggaatttcttcggcgggtagggggcgggaaaagaaatatccctgaataacgcgacagtggatcttgcgtagcatctcaaattgctctttggtttcgacgccttccgccacgacggttaaattgaggctttgcccaatgctggtaatggcttcaagtaaggcaaggatgcgtttttcggtcagacaacgatcgacaaaacttttgtcaattttgatttccgttaccggaagactgactaagcgggataatccggaaaagcccgtaccaaaatcatctaccgataagcccacgcccatatcacgcaggatctgaatgcgcttaaagatttcggtatcgtgttccatcatcatgctttccgtgatttctaccgtcagctggtggccgtcaataccccaggcgtgcattgcatcagacacctgattaggcagttgattactgcgaaagtgcagcgccgacaagttcacggataacgccgggatatgaatattctggctacgccattctgctaactgacggcaagcttccgcgatgacccagcgcccaatattttcgatttcaccaatctcttctgcgagaggaataaaccgtgaagggggcacatgaccatgcaggggatcgtgccagcgagcaagggcttcgatgccgtacagttcacccgtttctgcgaagatttgcggctggtaaaccagtttcagttggttattgctaatcgcttctttcagcgctgcgcctaaaaccaaacgctcttttaccatttcgttcatcgccgggctgaagaactgccagccgttaccgccattcttgcgaatataatccattgcattgtgagcagtggagagcaagtaatcgcggtttttacccaggtcgtagctgatgccaatactcaaggtaagcgggaagggtttatcgtcaatcattatcggcttgctgaccacattccgtagctcatcggcgatttgggtaatgttactgacgtcgttttcgaggctcacgaggacaaactgcgtaccttcgatacgacagagatactgatccggtttgagtttttcacgaaagcgattgaccacttccagcaatgcctgatcggcccacgcatagccaaggctatcaatcacatcctgaatatggtcaacaccgatgagatacaccacgggagagacggctttgtcgaccaggtcatcgaggtaattgtgcaggttattgcgatttggcagaccggtcatcggatcaaattggatgagttgttcaatatgctgacggcttttttcctgttccagcgccagcgcggccatatgctggctgatatctgccacgcgttcgataaaggcgctggtttctgctcctgacgaggttttaatttgcaggatccccgcaggcgcgccatcacgctgacgaatggtcgctgaccagctttgcgcattttgaatttctgcaccgtgggaagatgacgcccagtgtatcggcatcccgttgcgcagtgcgaacagcgaaacatgcgattcgttgagtacagattcgatgttacgacaaatgatttcccccatttcatgaaatggcgggctgctgcacatggcggcgagaatattgccttcaagctggcgaatctgccgttcttcggtgatatccgagaaagtcattaccaggttctgcagatgcgcgagcacgtcataaaccgggctgatagaggctttaatccagattttttcaccggtgcgcgtcaacagcagaaattcgtcctgatcgcgggcggttttccatagcaactgttgtaaacgaatgcggttatcggcagggaattcaggaatgttcaggagtgtatcgggctgcataccgctggcttcgctaatgcagtaaccaaacatttcggtaaatgcgcgattgcactgcacaatatggcgttccggatcgaggacaatcaccggtcggtcgagatggtcaacggcaataatcaattgtcgggtctgttctttttgcgccatttctacgctggcatcccgtaccagcgccaggtaataaactttcccctcggcgctcactttcgatagcgcaaaacgggtccagattttactgccgtcttttttctccagctgcagctcccgactcatcccctcaacacgcgctttaccgccttcacggttgtgacgaatgtattcaggatgcgcaggacgcaaatcccgcggaatcagcatatcaatgttattgccaatgacttcttcacgtttgtatccccagagcttctctgcggcggggttgaaaaacatcacttcatcattttcgttaattaacaccgcacccatcatattttgctcaagggcggggaaaaaaatgccatcggcggcattatccgcatcggttagcttcatgattacctctgcatcctggcgcatctaaagactggctttccagagttcaacacggtttctacctcgtcttttggcgatatacagagcttcatcggctatttgaatgaggcgctcatagtcaggatgaccattaaacatggcggcaccgatggaaagtgagagggcaatatcttcgccgtttgcggctttcagtttggttttctccacccgactgcgaatacgttctgcggtacgtaacgtttcgttttcagaagcttcagtcaaaacaatgataaattcatcgcccccgtagcggaaaacataatcactactgcggacgttgtcataaaaggcctgagagactttacgcagaatttcatcaccagtgttatggccccacgtatcgttgatctctttgaatttatcaacgtcaataatcagcactgacagcggtgtaccggtccggttggcatgggcaatttcgcgtttgaagatagtcggtaggaaacggcggttaagtaatttcgtcagtacatccataccgacttcgtggcgcgatacttcttcaaacaattcacgcagcaaggtaataatttgcgatacggtatttcttatctgtaataaaaatttcacccgcagacttctgttattcaaatttctggtgttacgcatggtttgattgaaaataccgtcgaaatcctgaatcagacgggagatatggcctacttcggcaataccactaaaataatgtcgacctttatggttaaaccacaggccaaaatcagcctggcttaaaggcaaactactgcctaaatcagaatccagcaggattttatagataatatctatttcccatgaaagtattgaggctatttgccgttctttttcttcttcggcgttttccagtaacgagaagatacgatagttttcatcttcctttgaggcactactgtcactaaaggtaaacgcgcgagtcatcacttccatcgcgatatcaatactgttaatcgagaaatggtagacctgaagtttttctgcggcggaataatccgaagagaagatcaccggatagaggatttttttcagcacccgaaaccccatctcgacaatttctaccggaattcctatgcgggcatgcacttccgcgacggtatgctggatttgtattagcctttcgacatcgtcaacctgggcagaaagcacgttaataatccagcgttccatcgcactcttcaactgccgctcaacttgttcattactcaagaattcttcggcatgcgggtcgatgcggacaattcgataaaactcgatactcagataatgagcatgcgcaacggcaatttccgcggctttagcacgaatgggcggatctgcctgttcgacaagtccggtccactcatctttcattcttttaaaatacatctccataattcacacccttataaggctgggaaatcagacggaatcaaaatgaaacgcaacgtgcgagatcgactaactgcaccatattctcctgaaatatgaagatatactgaaaagaaataagcgatttaggacagtttcaatctacgctactgttcttcagaagagtatagcccatcgtaattatttttcggtgacagcgaatatcgtatggtttttcatattcatacatttttattagggatttatggctgtttaactaagtgtggttaatttgacttaagtaagcatgattattagtgggatagtttaagagggtaacaagccggtgggtaaagcaccggcttgttacaaagtaagaatgggagtttaactgccccagcgactttgcagatagctgaccgcttgttgagtctgcggtttattcagatagtcctcacggaacaagatggtgccgctaatttcgggcacagcatcgttaagatcgagctgctttttcagttccggtacgccgccgttaatcatccagtctggctctatctttgaaggttcacccactttatagaaggcgataccgatatacaggcgggtcctggtcggtttaacgacatccgcccaccattttgccaacacgtcataacgcgcggcactccgtgagaacggccagtaaatttggggagcaatgtaatccagcaatccttgttccacccatcgacgggtgtcagcgtaggattcgtcataggctgccgcgcctcgggtatcggaaccgagcggatcgtgtgatcggttacgccacacgcctgccgggctaacaccaaattcgactcccggcttaatgcttttaatggtgtgcgatacctttgcaattaactgctgagtattgttgcgccgccagtctgcttttgacgcaaatgcgcctccgtatttacggtacgtttcgttatcatttagccgtgaacccggtgactccgtatagaaatagtcgtcaaactgcacgccatctacgggatagcgggaaaccacttctgcgactattgatgtgatccagtcctgaacctcagggatgcccgggtcgaggacaaagcgatcgccagacgttctgatccagtcgcggtgttgcacatagacgctcgccggttgttgagacagagtgctattcagttccctgatagtaccgggcttcgtattaaccgatacgcgataggggttaaaccaggcgtgtactttcatcccacgcttgtgggcttcgtcgagcataaattgcagcggatcgtaacccggattttcaccaatcttaccggtcataagatcggaccacggcaaaattttcgatggccacagggcggtaccgtccggcttgacctggaaaaagaccgtgtttatgccgagacgttgcagatgatccagtttgtcgatcatcgcctgttgttgtacacgggcccggctggtggggttactaatgttaaccgaggaaaccggtggccagtcgagccgagaaaccgtggccagccagatgccacgcatcggttgtgacgattgttgcgtcgtggctggtggctttgaacctgctggtggtgtcaccatggactctggaggcgtgcttttacaactacacagtaaaagtgccagtgcaactagtatcgctggtcttctaatcgttaatttcttgtttcgggagcagatatccatatgtgctggtttccggtaaacagatgtgcgctcattctcgtacttatccccgttaagtcaatacgacagcaagcacgaaaaagggagcgatgaattatcgctcccttgtcttataaccattcagacatggttagtgtttcttgtcattcatcacaatatagtgtggtgaacgtgcacgcgggtgcaggaagaagtgaccttttggtgcgttctgactgttgattggctccagagtgacgccggtatttgctttgcctttacgatcatgaacagcatagagaataaagggcagggcaagtaccaccaggaaactaacaaccagtaattcaacatacatatcggtagaatcaccctggatgttatccggcggcaggaaggaaacaataaacgccataattgaagtcagcagaccgacaattgccacgaccagtttcacccctttaccaccagggatattaaatgtgcgttttaagtcaggatgtttaagaaccaacacaatgtagccaataaacagcatgaaataagcacacagataaatcaccaccgtcagcgccagtgcgatcaggaaggacatgttgttaccgccaccggtattggtgaggatgatcaacgcgatagacgtaatcaccagctgcgaaatgaccagcgttaccggtacgccatttttgttcattttagcgaatgccgctggcagcaggtttttctgcgctgttacatacatcccgcgagaaggaccaacaatccaggaggcgatttccgccagaacacccagcaacagcagtgcggagatcacgcgaaccgtccactcaatttctggtgccacatgggacatcagaacggtaaaggtttgcattacccctgcggagaggttgatttcattacccggaatgaccatcgcaatagacaaaccaccaacagagcttaagcagattgccgccaccatcagcagtaacatagccaacggatagtcgcgccctgggttgctcatttcattgacgtgggttgcggatgcttctacgcccatataactcaaaatgaaggcaacaaatactaccagggtgcccactttagagaagtcagggaagaaggtcttcgaatccatttcgatagcaacgggggcaccggagtgcagataaatagccgctaatgcgatcaaaataaatgcaggtaacaggataccggcgaagaagccaactttagcaattcgcgccgtgtatttcgtgccaccaaactgcgttaatgccagcgcccaaagaatgatgagtgctgcaatagttttggtaatggggtcttcattcagcgctggccatttcaggatgtaggagagtgcccctaacacgaaatagagcatcggaataaaaccaatggcgatttgcagatagccaaatgagatcgctgcaaatccccatctcggccccagagtatttgatacccaggcgaagacaccaccttcttcccagccgtcgacggtggccatttccgcagcacaaagtcccacgggaataaaccataaaatcccgcctaatagcaggaagaagactaatgaaaagcccgatgttgcgaaggtagggtattcataaacagccattaccatcgatgccgttatggcaaagaatccaagtaatgtgagctgcttagctttacctgtctgtactgatgtagccatattatccccctaaaacggtattcctgtcggaaccgcacctgttttgttctgaagcgtattcagaacaatattttccgttgctaatgccagtgaacagactttggaaattgtcccgaaacgggttcgtttcgggacaccgttaccgttaaacgttatcaggtatgtttaaagctgttctgttgggcaataccctgcagtttcgggtgatcgctgagatatttcagggaggctttgtagtcttccagcaacagttcagcaaagtccatttcgaagccgcgacgacacataatgcgcatcaccacgatgtcggtggcttcaccgccgagagtgaaggccggaacctgccagccgcgcagacgcagacgttcagagaggtcatacagggtgtatcccggatcttcaccatctttcagtttgaagcaaaccgccgggatgccttcgtccgggcgacccgtacagatgaactcatacggccccagtttggcgatttcatccgccagataagcggcaacctggtaagaggcgttctgtactttggtatagccttcacgaccgaggcgcaggaattcatagtactgtgcaattacctgacccgccgggcgggagaagttgatggcaaaagtaccaatttgaccacccaggtagtcaacgttgaacaccagttcctgcggcagcgcttcttcgtcacgccagataacccagccgcagcccagcggagccagaccgaatttatggcctgaagcactgatcgatttcacacgcggcaggcggaagtcccagacgatatccggggcgacgaacggtgccaggaagccaccgctggcagcgtcgatgtgcatgtcgatgtcgataccggtatcggcctggaatttatccagcgcatcgtgcagcggttgtgggaactcatagttaccagtgtaggtcacgccgaaagtcggcaccacgccgatggtgttttcgtcacaggcttcaatcatgcgtttcgggtccataaacaactgaccggggcgcatagggatctcacgcagctccacatcccagtagcgggcgaatttatgccagcagatttgtaccggaccgcacaccaggtttggtttatccgttggtttgcctgcagcttccatacgcttgcgccaacgccatttcatcgccatcccgccgagcatacaggcctcggaagaaccaatggtgttggtgccaacggcctgaccatttttcggcgcaggcgcatgccacagatcggcaaccatatttacgcaacgcaggtcgatggctgcggattgcggatattcttctttgtcgatccagtttttgttaatggataaatccatcaatttgtggacattttcgtcgtcccaggtctggcagaaagtggccaggttctgacgagcgttgccatcaagatataattcgtcattgataatctggaatgcgacatcgtcgcgcatttcgtgcagcggaaaacgttttgattctgcgatagtggaaatagacttcgcaccaaaacgtgaatcgagtagttccgaccttaaatccgttacttgcttcttatccattttaaactccttaaaatgattggatcgcattaaaaaagtaggatttatcgataaagtaagcaagtgcaaaggactcgtgtttaaataacaaaatcctaatgttatttatcgtgagatattacgcgaataatattttttcattgaaaaacaatacaatatgaaattcttgggtggtggtaaggtgttttatgctgttatttttatgcgcattctgtgtctcctgaattatcacgtaaaaatcagaccttaaaatatcactattagtacttgattattattttgaacgcatttataaaattattacataaaaatagcgaatattgctaaaatccccgccaacgatgtgttgacggggctgttattattttggcaataatactccggtataagtatttaccggatgagaaagatattgtttaacggcagtgttaacattctctaccgtcatttgtttcaacaattgctcctgctcagtccatgctgcaggatcgtcatattgaataagactatttacaatagtgttcgctaattgttgaacgctacgctgttggatatcgaggctgcgctgaacgttttgctggtattcattcagttcttgctcactgatccctttagccagacgcttaaccatcacttcattcgctaacgttaacagttcatcatgtcgttctggttgacaagtaaaagccagcaaatgactgatatctttggcctgaggatcaaccgagaggcgagaagaaacgctgtatgctccagatgcctgttcacgaatattaacacgtagatcttttgccagtgcgacgttaaaagcatcgagcgccatacgcgtcggcagattaacaggtgtccgggaatcataacgcttccactgtgaaacctgtgccacaggttcattttgttcttttacagtaaccgatgcgttgtccgtcgcgcgagttaatggtttacctgcggctaatggcgaatcagagtgtttgattgatcctaagtaacgcgtaattaacgccacgagtttgtcttctgcgacattaccgacaatgacaaacgtgatatccgctggagatgaaaacaattggcgatcggcagccagcgcatctgcggcagtaaactgtgcaatctgattttcttgcagtaatttcgtgcggtcatcagcatagcgcgtctcatacatctgctgggcgaatttctccgctggacgctggtcgagcgttttcaacgcctgaatttgagcattttgtagcgatgcccaaatattatcgttaatcgtgctgtgggtgattcgctggttaatcaactgaaaaccaggttcagggttattagtccgcgcgctaacggagagcaacgtattcatgccactgactttactgctcatggttaccgaattttccgcactccagcgtttcaggctggaagaggagagttcgccaacgccgcttccgctaactgctttatttgccagcgcgataagtgatttttgctgcgcagggaaacttaaatcgcctttattcgatacggcaataatttgtagcttttgctcttcacccgcggattttgccagaataaccctggcaccattggaaagtgttaatgatgtcagattctccgccagcgtttctttgctgctaatttccgcctgtgggtctgcgtctactgttaacgataaatttctgcctgggaagacgtaagccgccagctttttgttggcgtactccttttccagcgccaggatagccgcaggagacaatgcttttttggcggcaacctcattgtttaccatttgctcccaaaatgcgtcctggttctttcttaactgctgccatttttccgccagactttgcacggtaatttgctgccacagacgtttcgaaagttgatatgtctcttccggcgacaagaacggcgtattatttaatgagctggatgccaggcgactggtcagcatacgtaaatcacgttcagcttgctgatcaaccgcatttttcagccaggtgaggcgggtagatttgacatcatcgagttcttcagcagaaaaaccatgctgatcaatggttgccaactctgccattaatgcattcgcagcatcctgcatattatcgtctcgtgcatttacacggaaaaacagcgactgataatcgggtgcaattttaacgctgcgcgcagtgccgccagaaatagtcttcaactcgcccgactgtatgcgttcctgcagacgttgattgaacagctgaactaacatgctccattcagcttgttcgataaagctttgctcatcgttcacttgtaccattggcaggcgataatagagtgcgatgccgttcacccggttttctttatcattaatgatattaaagcgcaggtggttttcggcttttgtcggccagacgcgattttcagctgctttgttagccggaagcttacttaaattatcctttatcagcgccagcgcttctttactgtcgatatcgccgaccacgataaaggtcatattatttggttgataccagcgttgataaaattggcgcaattgtgccggtgtgaccgtggcgacagtatccatcaggccgataggttcacggtctaaattacgggtatttgccagcaggaaagggcggcgcgcctgagaggtgcgccatttcgcatcctgatgggcacgccattcctcagtaattacgccacgttcagcgtctacttcgagtttttcaaaggttgcggcattactccattcactgaagattgccatcacttgttgcagattttgtttctgcgtagtcggcaaactcacctgatacaccgtttcgtcatagctggtataggcattaacatcgcgaccaaaacgcaggcccattgactcaaatgtttcgatgactttattacccggccatgtttttgtgccgttaaacatcatatgttctacaaaatgagccacgccgagctcattgtcttcttcctgcaatgaaccggtatgaatttgcagccataaatttacctgatcctttggatgagcatgcggataaatcatatatcgcaagccattgtccagttgcccggtaattaacttttcatcctgcggtaaggcggcggcaatcagccgcccggggagcaacagagttgccactaacgtcagtaagaaacagaggtttctcataattatctccatgcgaaaaccgggcgaatttacccggttaagtaaaatccgaactattaaaatttcatgctgacatcaagccagaaagtacggccactggcgtaggtcgccacaccggtgttcgttgtatcaacagcggttttgctatccagtacattgagaatatcggcactgatcgtcaggttttgttgttgcagaaattgtggcgtccaggacaagcgggtgtcccaggtcaggctgctatccagtttttcgtcaacatactgcttgtaatctgaatattcgctgatgtattgcgcatttgtcttaccaaggataatgcgagctttacgcgcttcttgccaggccagcgtattcgcccacactaacccgctcggttgatgcgtgaaatccatgtttaaggagatctttaatgggttattaaaatctgccactggaacgctatcgtaagagaccagattaccgttataaaccacctggttatcaccggtattgctctcctcataaccattgtttaacgacaagttgcccttgctcttgatatagctaaagacaatttgtgggttaatatctacctggcggatatgcaggggttcggccagttcaaaactgaggctgaacgaatgcgttttggttttgccatcgttgttatattcagtaatggtggttttagtcgcgctgtcggtacgactgcttttgctgatttgatcatgcgcttcacggtaaacatagtttgcacgcgcaataacgttcttaccgattttctgctgcaatcccattgccagttcatcgttataaggcgttttcaaatcctgataacgcgtcagagttttattacctgataccgattccgtccagctattgcggatatcacgtaatcccatatcaagaatattcccgccatagtaacggttataacctgctgtaatcattgaggtttgattagcaaaaatatcccattccgtcataaagcgcggggagatattgtggtttgacagatagttgtcatagtcataccgcacgccgggcattaatgacacattacgccagctaatgcgatccgccatatacagcgtgtagttgtcaattcccaggcggcctttacctttatggtaaatggtatggttagttttctttccggcagcattaatcacataggattcagactggttatggcgttcagtccacgcatcggaatagatgtattccgcgccgaagtagggttgatgcgaaacattacccacggcgaatttttgccagtccaggcgtgttttgaaggtgtaattatctacagcctgggaaatgtgtcctaatccgccacgggtgcaacgccctgtaatatcaccatatgtacatgaaagttcggtgtaccagatgtcatgatcgtgacgggtataatcactaatatgatcccaaccaacggtggtacgcagtttggcccatgcgagctgcgtatccatatcccatgccagaccataggatttattacccatttcgcgatcagactgcgggaaggtgctggtattataatcacggctggagccggtatattttaaggttaaatcgtgggtaaagcggtcgctggcaaaccaggtaaatttgcttaatgcagtatcgataacgtttttatactgtgcccgaccggcgacaatgccgtcattcgaaacataatccgcgcgggtgatatcagactggcggcgcgataaaccggcggtaacgccgaagttatcagcgagttcctgattaaacgacaaggtataaaagttctttttaaaatctggggagtaataagtacttcctgaagagccttgattaaatgcgctcttgttattctcatcgatatgcgatgttaaccagtccgaacgcgtagtgcgataacccaatttcaccttgctatcatcagcgttgaagcgtttgatctttgcatcaattaccccgccattgaagcgaccaaattcaaccggcacaaaactgtcataaagcgtcacattgtccagtaagctgacatcaagataatacccctgtgacatcccgctaatattggttgcactactggcatcggactcattcgctgggttcaggttattagttgcactaataccgtcaatcaaataggcattctggtagggcgacgcaccgtgaatagagattttctcagggcgaatatctccctggttcaacgaggtactttgcgttgaatccatgcgtaccgcagggttggttctcagcagatcgctgatattgccattcccggtcggtaaacgctcgatgctttcactggtgtaatgcgtgttgccgtttacgggtacagggacaggagcatagaccgtcatctcttcaaaaaaatgcatgtacatgtttttgtcatcgacggcctgcgccacatcagcgccacataaaatgacgccaggaataagaactcgcttcatttatttatatctccgtacagcagggcttttattgtttttataaaaccgcgctaatgtcacaaatatcatcggccaggttccagacaccgggttgatgtgtaaccataatgacgccgcttgtgggtagtttttcacgcactaaacgcagtaagcggatagcctcttgttcctcaagatgagaggtagtttcgtcaagaaatatccatttcggacgtcgtaaaattaatcgtgccagggcgatacgttgtttttcgccgctggaaagaatatctccccagcgatcgtggtcatgaatacgcgcagccaatttcccaagaccaacctgatgcagtacttcgctcaacgatttatcgtctacgggcaggggaagtgctttacaaataatctctttcagtaagccggttttgattaacggtgtttgtgacacataccaactgtcagcaggagaagaaatatcacctttaaaccacggccagcagtgggataatgttttaagcagtgtggtttttcccgcgccagagtagcctttcagtaatagccatttgcctggcgaaacatgaaagttcaggttctctaatatgatcttattatcaggcgtacgaatactcgcatcagccacttgtaccgcatgttggcaatttttaggcttattcgtagggcgctgttcagtgagttgatggaactcatacaagcgatcgataaccgcagccagttcagcaagttcgtcatatttataaataaaccagcttaaattgttcgataccagcataaatgcctggcgcgatttcatcagtccgcccagattgatctgcccgctaataaactgcggcaataacagaaagtagggaagaacgctaagcgagcgcgaataaatattctgccagtaatcaagccaccgctgacgattcattaaacgatgccagttctctttaatggtatgaaaattgtcgctcaactcctggcgttgtagagactcagcattgcttagcgcaatcagttctgcctgcttattatgctgcacaagatttgttcgaaatgtcgcttcgctacgttgtttttccacattaagcggacgaatacgtttacccaccttatgggtaaataaagttccaccgatcacaatgagcacgacggtatagaccatatacccctggatattccattctgttccaccaacagtgaatgagagcgtacccgcgctttcccaaagaataacggtaaaggtgatcagcatgctaagtgactggatgaagccaaatgaaagactgagcgttttgctgatcagtaagagaatgtcttcagcgatacgttggtcagggttatctgtatttttatgctcgccgtagatctgcgtgaagtagtagtttttatctgcaaaccaccgattaaggtagtaatctgttaaccattcgcgccagcgaatagtcagtagtttaattaaccatgttttgtttacggatattaatacaaagatccccagcagggcagggaaccaaaggacaagctgccaaagcttatcggtttctttctggcttagcgcattgaaaaaatcattattccagtcgtttaaccagacctgaattttaaccacgccaaggatcatggcgaggataataatgattaacaacactgaagttttattattcttacgcagccaaaagggcttcaacagacagagatactttgctatcaacatacgaagcgtaatgggaatggttatcattagcgaaaattgattgtgccatccaatgattatctatggcaatgatttactgatgaaatttatttaagtatcatttaacaatatgaaatataaaggaatatttcattttcagtggttatggttatgctattgataatcaaggatattgctaatgccctgatgcataccacgtaagccaggattttcgcaagggaagatgatgatgacgaaacacccgacaggaatttatgtcgggtgccttgttaaggtcataagaaggaggctaagaatggagttaaaagagagcgttattaattattctccatttgttttgcaacatccataatgtggtaaagcggtactctgttcttagctaactctaccatggcgttcatataaggtaccatggttgaaaaaaggattttataaccttcgcaaaaataagaaacagtctcattgtttactttagtaatacgatgcttaggacaaccgccattgcagataggtttatatgcacattgctgacatttcgctggaatccgttttttttgcgctgtcagttgtacactgttcatcgttttgagttcagatttattaatgtttccaattttgtactgtggatagacaaaatggtcgcattcgtaaatgtctccattactttcaacaaccagattatccttgcaggactcctggaaaatacaactggtatgcccattccccaaaaaacggctgacaaagctttcaaactgacggatgaaaatttcacccacatcgtttttaacccattgcataaaaatggttgacataaacttgccataagccgtgggaggcacagaaaaatcaatgatacggaatgtgttctcactatgaccactgaaatcaatattcggcgtcccggtttctagcaattcgataaattgcatatgtttactgccgatagattttaaaaaatgataaacctcaagagggtaatggacattaacgttattaatgacggttaacgtattaaactctacttgatatgatttcagacgctcgatggctgctatcacttttgcaaaagtaccgttacctgaattactgcgtctgtaacggtcatgtaactcctgggggccatcgatcgagataccaaccagaaattcatgttctttgagaaaggcacaccattcattattcaataaaatgccattcgtttgtaatgcattaaaaatacgtttttggcctgcatagcgttgttgatagtgaataactttacggaaaaaatccaggccagccagagtgggttcaccgccttgccaggtaaaatagacctgattgccagacgctgcgatatattgtttgatgaactctttcagagtgctgtcatccatccatttttcatgagtaaactgcgactctttttcaaggtaaaaacagtaatcacatttgagattacattgaaaactggagggcttggctgtaacgtgcatcgctatctcgctcaataaggcggcggaaaaatccgccgcatgaaggtttagttatttcgcttcgcttagtgctttcttgatattgttaaacttctcctgatttacctcgctaagcggtggctggctgctgtcgataaactctcttaccacgccttgcatctctttaacgacctgcggattggcggcggcaaggttatctttttgctgtagatccgtcagtttgtagagacctaactgattgttttctactgtatagacaagcgaataatcgttatttctcaccgtataagagaattggcttaagtcctcagtgttggggttatgcgggtaatcgtctgactgatggcgaacaaatttgtggtaattatcccagaatggaatattttcctcgtcaaaccagtgagaataagaggttatccaggtcagatttttatgtggctcgccttgtttcttatcttgcaaccagggcagcaaggaaacgccatccagcttaaggtcttttggaatgctgatatcggctgcatcaagagctgtcgggtagaaatccattgcggaaatcagcttgtcataattaccgggttgaagttttcctttccaccacataaacattggggtgtgagtaccgccaggataggtctgactcttatagcctttttgcgccccgttcagcggcagaggaccatcgataaccgcaccattatcggaggtaaagagaataattgtattgtcatactgtccgtttttcttcagttgttcgagaatgcgttttacaccctgatcaacagaataaacggaagcgtagtagttatctgctgtttgactaccggtattaaattgcttctgatattgatccggtgcaggattatcatttggcaggtgcggagcattataagccaggtaaagcataaaaggctggtcaagtgttttggcacgatcaacaacgccaattgcctcatcggttaactgatcgctgatataaccttttgcggggacacgttcacgatttttgaacagtgaaggggagttgtaatatgccgttcctgcagcgtggaatcccataaagtaatcaaagccacggttttgaggttgccattcttccgcagaaaatgtggtgaagttgtcatgatagtcacgcgtttgtttatcttccggtaccggcacattactgatttttgacaagtgccatttacctactgctgcagtgtaataaccatgattctggaataattcaggcaagaaagtttctgttagcggaataccatcctgagcatcggtattggaatagacaccaaagcgggcgggagctcgaccggtcattattgcggcgcgggaggggccggaaacaccgtgtgccacatagccgttagtaaaacgtacgccttcatccattaatgaaaggagcgtcggcgttgatttttgtgcagcttcaatggctttatctatccctattttgtaggtatcgacaacttcacgattttccattgtttttgggtcaaaagatcccttatcaaaaggaagttgtccataaccaagatcatccatggtcagtacgataatatttggctttcctttggtactgtattctgtcggcgtaaagtctgagaaagcaacgtttgttttggttgctttcagctttacatcatctgccgcatgagcagcaaatgcagccataccagatgccagtatcaaagatatcgaggtacttacgacacttttctttaatgcagacttcataaatgttcctcttcttattgtacttaattccaaagtaattttacgaagagaaataagtggatgtaagtgaagttagtcacataaagagatagcagatttagctaaaaaaagggaaaaaacagtccataaagcgttgacattactttctgttctattaagtaatttctcgccgataaacaactaatttattgatatttaataaattattgcattttactgacaaaatgcagaattgagatcataaataatcatgcaacaggttatgcaagtgcataaatatgtgatggatgtcacttatttatttcaataaatatatcgcctaaaaacaacgcggggcagggaatggctgccccatttaattcttacgcagcgtgtgtggttgactactcgttagcaaataatcaaatagctaaagcattcatcgtgttgcccgtattcatacccgtgtgactttgacaacggtactccttagaaactctcttcggactgttgccgaaatgtttgcggaacgcataaataaaataagatgtactggcataaccacattgttcggcaattttattgactgaaccttctacgcgtatcaaattttttgcgtgctgcattcttgcatctaaaagaatctgtgagaatgtcgtttgctcttgcttaagttttttcttcaacaggctttcactgatgtacaggcagtcacaaatatctttcagcttccatgggtgcgccggcttcatgttgacaatatttctcactttcccagaaacggatagcacaccgttagttaatagtgtaatgaaacctttgcatgcggcaaaaatagacaggcaagaaaaaagcaaaagttctgaaaaattatgatgattgcgttcttccgagttgagataagcaatcatttcattaagcaatccagtcggtacatttgaagcacgtaaaaacttcgcaggaacaggcaccgtcactgtctggatgttagtgcattgtagatattttttaatggtattttcagtaaatccgatctctttaaaatgccgctcataaggttcaaaatgcgtacgaacagcgttatctaccatcaggatctcgccgtcagagaaggcgtaatctttatctaaaatgttagcgttgaaggcatgatgaataaatataacagaacaaacgagcgacattttatctccttaaaacaataaagtttttatcgatacttttttaacatttcatatttataatttgctgtttgttttcagccttgcaaactattgataatgaaatgtgtaagatctcttgcaatgcgacccatttctgaaatactcagctgatcaattgccgaaaaaatggctatcaacgtaagtgtcagtaataagacaaccacaattgcagacatgatttctttatagttgtctctttgcgtgattttgtttttcactgtggtcgcatgcatttcaaatatgtttatttagcggataacgttaaaaatcgttaatcagtatgcttaatataacaggctggagaaaagaggaaataggactggtgcttcagtactgagcggagtttcttacagctgtaggcagaagtttatatcttatagtatgtagtttaatttaatccatgtgagcaaattgcgaaataatagtcaatgaggaattcttctgctgtgcggatgacagcagaagaaatgagaagaggcattaatttgatggttctaattcaaccggaatacttttatagccaggaatgccacttaatggatcgtggttatcaagtgttagcatgtgattcgattctggaaaataggtcaccagtgagcggtcagccatagggtaaatgaccacttttaatctatccatgcggcgtgagctgcgcttaccgtctggcgtaagcgcaataagattaactctttcgccgttttttacacggcaaattttagcttgtttagcactcataaagaccacatctcgttgaccgaatacccctcgatagcgatcatccataccataaatcgtcgtgttgtactgatcgtggctgcgtactgtcgccatgaccagcttactgttaaacgctgaagagggatcttctaacagccctttgctggtaatgaaattagccttacctgacggcgtcatccagcgcctttcagcagctgcatttatcaggtgaaaaccaccgggatgacggatgcgctggttatagtcggcgaactctggcagcacagcttcaatgtcattgcgaatgcgatcataatcttccaccagatactcccaggctaccacgctctggggtagtgctgcctgcgcgattcccgcgaccactgcacactctgatttcagcattacaccggcgggttttaacacgccacgcgaggcatgaatcatcgacattgaatcctcaacggttaccgcctgcgcaccgtttttttgcatgtcaatctcgctacgtcccaggaccggcagaatatagctatgccgtgcggtcaacagatgagagcggttaagcttagtggctacgtgtaccgccaaatctaattgcgttaacggtacagcgctcgcttcccgatctggcattgccagcgcaaaattgccccccatgcagatcaatgctcgagcctgccccgtacatattgcttgcatgctggcaattgcagcatgtccaggtgcatgaggtggggtgaagccatagcgctcacccagacgagccagaaactctgcagacggtttctcggtgataccgacggttcggtcgccctgtacattagagtgtccacgtagtgggcagatacccgcaccaggcttgccaatgttacctttcatcaacagcagattgaccagttgctgtacgttctgggtaccatgttcgtgctgagtgatccccattccgtaacagataatggtgcgttcggcagcggcatatgcgtcagccagttcggcgatttgtgtctgacttagtccagaaatacgttcgatatctttccactcggaattgagaacgtcacggcgtagctcgtcaaagccgacggtatgcgtttgaataaactcgtcatcaagcaatgaaggccgacctgcggcgcttgcagcatcatcgcgctcaattaacaggcgcatcatccccttgagcaacgccatatcgccaccaatgcgcacgttatagtaggcactggccaactgagtctcagagttcgtcagcatttcaaacgggttttgcggtgcggtaaatcgctccaggccacgttcctgtagaggattgatggcgatcattttcgctccccgtttcactaaagcgcgcaacgaagtcagcatgcgagggtggtttgtaccagggttatgcccaatgcaaatgactaaatcgcacttctcaaagtcttccagcaacacggtccctttacctacaccgatactcgctgccaaacccacgcttgtcggttcatggcacatgttggagcagtcgggaaagttattgctcccgtattcacgggcaaaaagctgataaagaaaggcagcttcattggaagtgcggcccgaagtatagaattcaacctgattgggatcactatagctttgaaggcgtgcgccaatttcgtcgaaagcttgttgccagcttaatggcttgtaacagtcgctgacggcatcatatttcaaaggctgagtgagtcgccccgcagcctcaagctcgtggtctccccaggtaagtaatgattgaaccgtattctcagcaaagaaagaggcgtttacctgcttatccgtgacttcccaggcgattgcttttgcgccgttttcacaaatgtcgaatgacgcactgtgcttaggatctggccatgcacaacccggacagtcaaagccctctggcttattcatgtcaaacatggcaataacatcctggcgtatatccatctgcttacgtactgcattcgctacggatttaacagcaccccaaccacctgcagcaccctggtaggattcaatttttttcttcatctacttatcctgtgtggaaatgaattattaggatttgtaatagcgatgatgcacagtacatacaaagggattatcgccaacatggatatataagagtaggggactactctctttctatttttaatctattatcgttaaacaatagattaaatacgataagttaagcatcatctctcatagtgtttaaattaacatatttttcaatataaaaaataagactctggcttcaattgtgcgcggattttcttacaggtgtaggctaatagccttcacaaaataattatccgcgcaattttcgtgaatggagcgcatagactaaggtcaaaatcacaattattcatagataaaagtgacaccaatgactgactggacggttccggctgaaaccttgtttcctgtttgtccataggttgcgcttaaacccagaggtactttgcttttatttactgtccccagggagacattttctcccgtagccagtatttttccattacgcattagagtgacacccactcccgatgcttttgttgcatcaggtgctgtgttagcaaacacttgtcggctactgtcagtggtggcacccgaaagataaaatgagagcttttgttcgcttgagcaatatacgccaaggggtatttctgcgcttccaggaaagtccgggagatccacggtgacatttcgactatcaacggtgcagccgcctgttggcataacaacattgttatttgaaataatattccacgtaaaattacgcggatttccgcttcctaatgttgcaattttatacatatgaatacgggcaatgacttcccccgcttttatgacaactccaccggccgccccaactggggtaatatagagttttaacggtaatggcatcggtgtcttatcaccaatatccaatacgttggtatttgtcgtcaacgggaaggggtaggtcacattattccagtacagcgatcctttatatgactgtagggagcctgcgaaagctgagccttgtaccaggtttatatgatcagtgtcgtaccagccgccgtaatcattccagcaacttatatgctgagacaagtctacaaccagattctggcccggctgtattacagggtcgagattaacataaacagaggttgtacctgctccaatacttgacccgccatcgacattacaactgaaggcaaaaactttgcctgccattaatagaagataaataccgaacaggacctttatactgattgttttacccatgatatatcctaaggttaaaaattgatttaaaaagaaggctaagaaaatcgaatcgacgttattgccaggtgtagatcacattgattagcgcctcgatcgttccctggcttgcgtttccattcaccgtgatagctcttgccttaagtggaaactgtgcattacgagtgatctcatcaacaataaccgttttgctatcgccattttttaacgcagcatcctggtcatccctcagctctatctgaatattttcggcagtaccttcatttttgtaataacccgtattgtcagttgaacctgtcacgattgccgtcactgcacttgtttcaaccggacaatcggttaatgacaaagtaatattgtgccagccagatgcagaaccaggttgttgcagattgcgcgtataaagatccccgagattaacgttagcttctttggtttgaatagtgcagggtttagcgactacccgaccattaacagtgatagtgacatcggcggcctggagagttgctgtgaataacgcgcaaaacgtagctaacaggaacctcttgtgaagtcttttcatatctgactctgattattgaaattcaagggtaaaggttgccgaagccctcaccagtcccggattgacggacttctgagttgacttcagacgagcggagtaaggcaaaatattgttctgttctggtaccagtgggatccactgcatcccggcatgaagatcattcagtttcaccggacgcatatttgcgtccaatatttctatacccaaaccggaggccgtattgcttccttcatccagtttcaacaaagtattattttctgcatcctcaataccgttaaatgcaacccgaacccccgttgtccctttgctgcattcacttaacgtaatctgaaaagggacggctggacttgtgctaccggtcgttggaaattgtctggcactgtttttttggagatctacggtaaaattaagcgaatccgatgagactgtgcagccataatcgaggacgcgcccgctaattttaataacgctatctgcggataaagcagaataggtggttaaccccagacataaaccgaggaaaataatgttattgtatttcataatctattgttccttagcgacagattgctgtctgctggttcagtaaggtaccaggagaaacttcaggaagcttgtactcgacaatacagtttgagtttttatctttgccccatgaaacctgtaattgccctgactgtggaagtccagtcagataaacctgaccattttccgcgacaatgctgccatttttattctctccgtgtgtgacaattgcaccgaatggaacgctcttattaccgtacttcaacgtcattaatactttcccgccgatttgtgcattaaatgttgctctggcaatagcaccgtgagttgggatgacagtgaccacggtttcatccagttcaacattatctgcaagggaattcgcgttaagagcaacacggttttctctatattctgtcgcaaatggtaatatggcatagccacgccagtcggtatgaattccggtctggttctctattttgacattatcagcaccaggagccttaaccagaaccattgtgtcgcccagcggctgtccaaaggtgatgccatcagcatgagcaataatcccaccactcattccgtaataaatctggctgctgtcaccactccgactgtaaccgacattagtattaccataagctccacgataattaagagaactgtaaccactggtgccagacgatgtattacctccgtgggtgttaccgacctgaacgctataattcaggttattatccggcagcagagtgccataaacccccgatagattggtcatgccgcctttcaaatcgtttgacatactgtaactggcgtttgaattacgaaatgccgactgactgtctgtacgcatccaatgactgaagggaacattaagcgtaaaagcgagtaaatgatcccgatcgttttgccatatattattggaatagctgtaattcagcgaagtcgtaatatcaccaaacggcacatttaatccaaatgatatttgctggtcgctgcgtgacgtgttccagtaactttggcgactggcactgaaaaatgtcgtaccgtaatttccaagctgctgagagatgcttatttgttcctgaccacgcttactgtagaacagattaaaataatcaataaattgtgtctgctcattggtgtctccggtaggaggcttgacggtgtaaccactcattcgactgtaggcactgtcggataagttataaaaaccttgcgtagaatagcgatatcctgcgacctggatattggttccacaacaagtttattgctgcacttgttgaagagagtatttgcaaaaacattttatgtcgctaaataacatgacgatttcattatgcatgttatttataaaccgtgactaaacagaatattattgcgaacaagggaagtgtcaggaaaggtcaagagctaccaatggttaatatggctataaatcattagctatggttaatgtttgcttgctgaaactaacaccgaattgctctaaacagataagtgcagggtttattaaagctgtccgacagactttcttaacctggtaatatctctcttgggtgactctccaaacatccgcgaatattcccgactgaaatgggatagctttcgtaaccgacagcataggctgctgtggtgacatcgtaatgttcattcagcatctgtcgcctgacttcattgagacgtagccatttctgataccggagtggactcattcccgcttgatccgtccttaaataagtaacagcaccctctggtgttttcgtatgcagtgtctatgcgacagacactgcgctcttagcatggggcagggaataaccaggctatttctccatgcacaggccaattatgaaagaggagaggcttaagttcttgaaccctgaacgaataacgactaccagaaaagcacttcgcatcactcagacatgatttaacataatatacattatgcgcaccaatataaaccaaggaagaatccagtcgttggcggtcatgattgtcatgctcattaacaatgaccaaaccccatatctcacttactaccgtattctcggcttaaccgtccatgcaacctcaacacattgctttcaactgccgtcaccacgttctccggaaaatctgtcggtaatgaagtcttcacgttatccagtgctgctggaatcattctggcaaagtcactcaggatttcatgcatctgcacttccgggaatctcagcacctttgctgtcgccaaaaaatgtcgcggataaattttatcgattgccgtttttttgcctttggatgcgttaagccccattgccagtttgagatcgctgatgtgtattcccgtaccgccaaggaccggaaatgctgaaatgatgtcgtaaaatggcgtgagtcgataactgccgccagcctgaataaatacggagaagttttttgcatgaccgtccgttgcgccaatcaaccactggaagacctggaatttcataaaatcatagcgatctttcagcgcctcgctggaccccatcaaaaaagccatgatccgcgcgatgcctgggcctccatctgattcatatttcaccgatgaaggtaaaccgaatgtctgacacatatcctcctgtggcaagcgaagtaaaaccgttcgctcagcattccaacgcctgtcaaaacgttcgaccgctaacgcgcgcacatttcccgctttaatgatttctgcgtccggaacattcaacccaagttctttcgccagcagcagacagtaatactcattatcaacgctttggctgagatcgagcgtcgcattgggctgcctgatttcgccaatcggtaatttaatgatgtgcgtcgtcggcgttattcctttcggaatgcaccagtcattgcctattctgagcagtgctgtcttctcctgtgcgccagcaaccgagatgcgaaagtcattttcttctctaatcatgcctagcgggatatctgctttataagccgttaatacttcttcaagtctggcttcagtaagcttttcccatgccattatcggatgcgttacggtttcgtcttcgggtattaacgtcacggcaccaacgctgtctcgccctatttctgacaataaatcaaacggttgtctggatttggcatgataacgtttaacgatccggtcacgtacaatcgggctatcgggtaacaggttatcgaagaagttaaatacggcatcagaggtgatattccccctctgcaatggcagcgaaagtgacaacggtctggcataacggcttgctaaccactccggtgcatacttaaaggtgtgcgcgccgttggctaacttcgttaactcgcctacccgctggttgttcatccaagtgacaagtttaggcattaccactccagattttgctgttctgttgattctggcgaggcatttttcgcgtcgcatagcgtcattgagagttcaagcgactgtaaaatcttaaaaaatgtcgtgagcgtggtattgtcagggttgttttcgaaattggaaatcgtcgcctgcttaataccaatttttttcgccagctcgctctgcgtccagccattttgctggcgaaccagtttcattgcattcgccaattgcgttgggctatagatcttctgaaagctcatcatgtcatacgtccacagcaagtttatccgcttaaggggatattataagttttatcctttagtgaggataagtcaatctggaaacacatcttatccgctctacgggataaacgctgcgatatccgcgatcgcggataaaaaggaggatttaaataaggcgttgatgcgccgtttgaagtcggcaatattaagccgcatgccatctcgacatgcggcttatacggtttaccagctatatttcactcccagcatgccctgagtatcgctatagcctttatcacctagttgcacaccgacattcccccacaggctaaggttgttatttactttcgcctcaaccccggtacgtacttcaccgagattacgcgcaccttcacggcctacggtttgaccattcatcttcacggcgtagactttgctattgttgatccagttcgcttcaatgtaaggctggaactcacgctgtttaccatcgtcacgctggtgatggctgttcaggtaggttttcaccccaagtcgcgtttgcacatttccgtcgccttccgtttcaatgcgcgttccgtctttccgggtatggtcggaatctttcacacccatccaggtgatttgcgcctgtggctggacgtaccaggtattcagcgtcccttcgctgccgctaaatgttcccgcttcaaaggtatacccaccctcaacagaggccgtcacaccgcgagaatcatagtcgtcagcagaacggttatcggaactgacgctgttatcaaaccagttatacagcgcccagctgtcaacataagcgccggtcttattcgcatcgttctgataccaggtcgcgtacagcccagcgctgtaaccgctgatgcgcccatccgatttataacccacacgattactctgagtattactgtgctgattggcgtagcctgccatcacgccaagatgccagcgatcctgcgcgttgctactccactgcgccaaatcgccgcctagctgcaatacatagcggttagcctgagtatttagctgaccgtcaccggcccttgaacgttcgtgccctccgacatgacgcatccacatactgcttgccgacccctgagaatgcagtgaatctgtatactgcggctcacccagacggtcgtgtaaacgatggctaaacagcgagttggctgcggcaatgttgctgatatagcttccggcctccgggcgataaactgatgggccttccggatccacaacagggggattattgatgggatcgggtgtatccgctggcgttacgccgtcccatttactggtcagataccagtttttctcgtcattccccttccctttagccagcgtgtagacgtaagccccagcttcgacagttccggtggtcagcgcgaagttacctgcagaattaccgccaacctcaatgagttcaataccgttgaccgtttgtgcaccgacgccgccaatgttatcaacccgaacgcgagtgttcccttgggtatcgcctttcacgttcatcttatcggtgggcgaattatcgccgcccagcgtcgcgttgaacgtcatcaggccattgtttccggtatagttgccgttaacggtcagtacattccccggtttccccccttcgctattcatttgaaccgtgccgccattctccaggttgccgccgatagtggttttagcgacacgcagtgccccccccaggcataacgttcatatcacctgcagtggtgacatttcccgacatcacaccgctgttatggatattaatgtgttgacttgccatattaatggcagagtcggaaccgaaagcaatttccccccccacgatatccgtcgtaccctgatacgccgcggaatcgttgttaagagtcaggatcccggtacccagttttgtcacatcaccgctaccgctgatactgtgcgtcatcgcccagctacgctcagtggagatggtgagcaggccattattgataacggaagcatcacccaggtttttctgctcgttgacgctgagcgcgctgcctgtatcaatgttgaattgccccacaaagcggctattatcgccatccaactctacatctgtcctggcggttgcgctcacgatacccttcccgcttatgctattacgcagttcgccagtcacgttttttagcgttaacagaccgtcattggcaatatttcctctgcctaacccctgagtattatcgaggctgacttccgcatttgggctaatgctggttaacgcattgtagcgtgcattaagcccctcgatagccagcgttccccctgtaacattcaggtttccgccacctgtcagttcaccctgactgatcccacctttatttaccgtcagcgccccctctttgaacaaaacagtcgaacccatctgcccggtgaatgtctctaccgtctgcgtcgatccattaagatcgacgatggccgcgttgctgatgttcagttcccgggtgttgccaagtgcaccatccgcatcggtacgtaatgtccccatctgaacgtaggttgccccctgatagtcgttctgaccgttggaaagcgaaacctgtcgcaccgtattgattgccagatccccttcaccaccgatttttgccgacatatcggccgttgcgccataggctccgccatgttcggctaacgtcagcttttgcccaccatggatgttcagcgctttcagcccatagttaacgtacaaaccattacctggtgcggtcgtgaggcggaatccataatcaccctcggcgaccaccgttccgttttgcgcaatgtgtaacgttttgtccgcttccacctcgtcgccctgtaaatcacgtaacgttaatgagccacccgacccaataaccgtttgcgccttcaccagttgaacgccgacatggctatcgtcgtgttccagcaaattgagcgtcgtcagagggttattcgccatgggatcattccacggtttaggcacgtcgataagcacgtcgcccgtcccgtttacctgatagttacggcctttccaggtgtagtcacccgcgccgacaaccagcgtatcgacgctgatatatccctccgcgagcgtcgcagcaggaatatccgtatcgaaaatgatggtacctccattcatggccagtccaccaatggattgctctccaacttttaccgatgtggtattttcactgtcagactgcaacatcgcgtgagtaagcgcagcggtgttgtcgcgttccagagtgaaggtactgtctttcagttgggcaacaccggcgaattcagtccctgttgcatgggtaaagccaaacatcttgtcggaggatgacagctgcactcgcatcaagccatcgcctttgagcgcattggtcagcgtgtaatctcctgcactgttcgttgatgcgagaatgtcgagcgtaccggggtttgcaatggttacttcactcgaccccatgcccgttaccccatctgccgtatgagacgcaatggtcaggaggccgtcattgaccagcgttttaccgctataagtattccctgcattgaacaccgtatggcctgcatcatggatcacttttccgtctttatcgtcacctgtaatcagcatatcgacctggtagccggcatcactgttattggtatgattaaagacaaaaacgccttcgccaagaccaaactccactttcgtcgcattggtgataaatccggcatctgccgccgcctcaccgtgagcagcaccaatgtttagcgttcctacagcaggctcaaaaacacctaagtaaacttctccaccttcgacattcagcgtaccgttattcgtcagggttaacgtacccgtaccagatgtccctacgtacatattgaatgtttcaagaagagagttctgcccatccaccctcacgtcgcccttacttttgtcattgagagctatctgtgtatcacgcgctttaactatacctccggtggtaatattcagttcacccgtgcctaatacaccgacctgtagcaattgtgcgttagtagatgatgtctttaaattccagagactgtccgttgaaatattaactatccccttaccggaggcatttcctccgataaatccatagcccgttgaattaagggtggcaccattactgacatttacgataccgctaccaaaattaccgacattgatacccacagtatcgaacgatgatgtcgcatccatcaggttcagtgtgccgataccgcttgctttatcgcccaaaaaagtaatattttgcgatacgaacttaccgccatcgctaatattgaggtttccgacgcccgcaacaccaatggtggtatagacattcttattgacctcccacattccccccgtggtgatgctgacattcccgacgccggtttctccataaccgagtgaacttcctccgttgctgacaacaagcccctgattactgatattcatttcgccgtggccgtcataaccaagattagttccgagattagtgataacggagttcttatccttaacagtaatgttgcctgtgcctgtttctttcatccccgcagtgataattcccgaatctactttgccttcactcgagacattaagttcaccgtcgccagcatcaccgatatagatatagcggaaagcttcgcccgttccgaggaaattccaatgccctttatcggtcacgttgacgacaccgtgggaaccgtcctgaacgcccaccaatgaatattctttgttattaatcagtccattattggaaatattgactgtgccattaccgaaatatccattatagagtctgcgtaccgtgatgacagagtcttgatcctgcacattcagggttccgataccggtggcattgccaccgataatcgtattttcagccgtaaccaaccccccctcgcgaatagtcgcctccccagttccttgattaccaatttgaaattcaattgaggaatcattattttttattagccactcgccacccttttcaacgacaacctggccattactgcccgcctgatagcctaaaatggcgacgattgaactcgtgacgtaacccttatccgtaatatttaatgaacctgtgccatagctacctatttcgaataattcggtcgtcagaacagagtcctctccctcaacattgaccgtcccgacgcctcctgtcgaagaacctaatcttaaatagcctccatcgacgtgacccttctgtttaatattcagcgtccccgttccggattgacccacatttaaaggccttgcattatttccgctatcatacaatcgccaggtgccacccaaaacattaacggtgccctctgagtcctcattagcgccaatgacgctggtagtaatagtggttaaggaggcattaccgccagccaaaatattaagcactccagtgccataccagccaaccaggtaggcatcataagcaacatcagtatcaatattggtaatctgatcattatcaacttccagacttgcaccagacgctgaaccgcttagtgccagcaaaacacccagcgtcaatctactgaatttcgttgtcagtccagaggatttacgcaaattaaccgtcgatgttttacctgccctgcgagttaattccgagcaggcctgaaatacctgtagagtgcaattccatatcacgcgatagattctattcatataaacgctccatatacaaacaatacagccacgaaagagatgagtcgtcagacattaaaaatgaaacttattaaattgtcagaggtctgtattgagtgttagttggaggtgggaaggtgtcaatttggctaatttgctaatgctttcgaattgatagattaaaaattgcatagttcttattttatttaaatatgaactatgagttattgttgcttaataagaaaactgtttctttcaataggaaaattatcatcatcatatttaacaaagaatagcactaattgctaaaaatcgaagtttattaaaccccttttgcatccattagtgtctttaggaatattcgctataaaataagggttgtgcttaatgctttaagaaaaatagcaattttcccttgaatatcgtactggtgatggaacgatgaatctgcaagctggcttttaacaagccagctctaaaagaagggaaataagaataactatactcaaaaactaacagccacggtcatcatgatgtggctgtcaatgaaactataacccaggcgctttccataacgacgtcgtcagtccatgatcaaccagccccagctgatcctgataaactgcctgccacttatcgcgtgaatcctgataaagttcatgcttttccgggtctggtgtgtgcgtccgttcccagcgaaccaggcgttctccggtttctgccattgatgaaaaaattccggcaccgacgccagctgcaatggcacatcctaatgcagtggcttctttgaccaccggaatattgacgggtaatcccgagacatcagcgagaatttgactccataatttcccttttgaacctccgcctgcaaagactaacgatgaaggatgaatattcgagaaatcagcaatttgctgcaagttacacgctgatacaatcgccgcattttcttccagcgcacggaacaatgtcgctttgttacatttatccgggtcaatggacaagttaataaaggaaggcgcagcgtgataccaggttttaaagcgcattctgtcggagaagatcggcattacgccccacgacccaggcggcacccgactggccatctcttccagcagcgtataggtgtcgatgcctaaacgttcggcaatcagtttttcttcggcacagaaagcatcgcggaaccagcgcatggtgagtccggtaaaaaagcttatagattcagcttgtaccatgccaggaataacatgaggattaacgcgcacgttcatttctgggtctgtcaccggcgcggctaaatttacaacttgctgccagaatgtgccgccaagaaccgcggtttgtgccggacgcacaacgcctaacccaaggcaaccaagctgcacgtcgcctcctccaacgaccaccggagtgcccgccttcagaccgcagagttccgccgcttgtgaacttaccacgcccagcaatgtgccggtttctttgacaggagaaagaatatcggcacgtaggccagccatatccagcaatgcaggtttccagtcacgggtggttagatcaagaagtcccgtggtgccagcgttagagggatccaccgccagttcgccgctgagcatataggccagccagtcgctgatcatggtgatggttgatgcctgacggtaaatatcggaacgatggtgcgccagccaaagtaatctggggatggcacttaaagccagtgtttgtccggtcgcgcgataaacttcgttttcaaaggtattgttgtgcagttctttaagttcgctaacttcgcgtgccgctctggcatccacattggcgcaggcccagatcggggctccttcattattatataaaacaatgccttcacgcatcgaacatgccgaaacggcagcgatatactccggggctatgccggcgttgtgcagcgcctggcgcatacactcacacgccagttgccagtttttgttgagatcaaattccatagaaccaggaacgtccggtactgccagatgccgccactccgcctgtcccactgctatttgattgccttccaggtcgaatatcacagcccgaatacttccggtgcctgcatccagcgccatcaggtagtactttgattctgaaagggtaaagagtcgagccattagattatcctcggcttatgcgttctgtctgttcctctatacgttctccatcattcccggtaataaggtcatgcaaatttaactacgtaaaatcgccgctgctgtgtcctgatcggtaaccagtgcgttgatataaccgcctttcattgcagcggcaattgcttcggctttattttctccccctgccacgccaacccggacgggtatggtcttcagcgcgcttaaaggtaagccaatcagttcgttatgtattttgatattcgtgacaacgtcaccttttgcatcaaaaaagtagcctaaaatgtcgccaaccgccccttttcggccaatcattaactgttcgccctggctgatataaccggagcgaatgattgtcgcatcgtcctgttgactcacagcaccaatgccgacaatcgccacatccgctgcttgcgcggctaacagaacatctttgacgcaattttcattttttagcgtacgggcaatgtcagcggaggatgcccgcaacggagccggaataatattcacactgcacgccgcgttaagctgcccgattcccgtcatataagaaccgacgccaccggagagcgtgaccaggcgaatttgctgtgacgaaataaaaccacttaagcgttgcagcgtattcatggttgcctcgccaaaaccaatcgccagcatctgttgtggttgaagtaaactcatcaacatatgcgccgcgcctatccccagtcgcccaccgacatcagcatccgcaagcccagggatcacccggacatgttgcagcgaaaactgacgacgtaattgagtttcatattccagacagccttcaaagcgagaattaatctgtacgcgaataatgccggactgatgccctttctccagcaatcgcgacactttcaaacgtgtcaggccgagacgatcgctgatctcgctctgggtcagcccgtcgtgatagtaaaaccacgcgatccgcgcgacctgttcttcttcacacattccctgttctgaaattgccgaatcgttgattgtcataattcattcttcactttgaacatatttaaatctttaatgcaattgttcagttcttgctcatttatatctgtgatggcaaccacagtttgactctacgagcatgaacaaacgcaaccgtgaaaatcaaaatagcataaattgtgatctattcgtcggaaatatgtgcaatgtccacctaaggttatgaacaaattaaaagcagaaatacatttgttcaaaactcacctgcaaaactgaacgggggaaatatgcaaacgagtgatacccgcgcgttaccgctactttgcgcccgctcggtttataaacagtattcaggggtcaatgtcctgaaaggcatcgattttacgttgcatcagggggaggtccacgccctgctcggcggcaatggtgccggtaaatcgacgttaatgaagattattgccggtattacccctgctgatagcggtacgctggagattgagggcaacaactacgtcagattaacgccagttcatgctcatcagctgggtatttatctcgttccccaggaaccgctgcttttcccaagcctgtcgataaaagaaaacatcctgtttgggctggcaaaaaaacagctctccatgcagaaaatgaagaacttgctggcggcgctgggctgccagtttgatctgcatagtctggcaggatcgctggatgtcgccgatcgccaaatggtggaaatcctccgcgggctgatgcgcgactcgcggattctgatcctcgatgaacctaccgcctcgcttacccctgcggaaaccgaacgcttgtttagtcgcttgcaagagctgcttgctactggcgtgggtattgtttttatctcgcataagctgccggaaattcgccagattgccgatcgaattagcgtgatgcgcgacggaaccatcgccttaagcggcaaaaccagcgaactgtctaccgacgacattattcaggccatcaccccagcggtacgggaaaaatcgctctctgccagccaaaaattatggctggagttacctggtaaccgcccacaacatgccgccggaacgccggtgctgacactggaaaatctgaccggcgaaggtttcaggaatgtcagcctgacgctcaatgccggagaaattctgggcctggctgggctggtgggggccggacgcacagaactggccgagacgctctatggtctgcgtactttgcgtggcggacgcattatgctgaatggtaaagagatcaataaattatccactggagaacgtttactgcgcggtctggtttatctgccggaagatcgccagtcatccggactgaatctcgatgcttcgctggcctggaacgtctgcgcccttactcataaccttcgtggattctgggcgaaaaccgcgaaagataatgccaccctggaacgttatcgtcgggcgctgaatattaaattcaaccaaccggaacaagctgcacggacattatccggtggcaaccagcaaaaaatcctcattgccaaatgcttggaagcttcgccgcaagtattgattgtcgatgagccgacgcgcggcgtggatgtctcggcccgtaatgatatctaccagctgttgcgcagcatcgccgcacaaaatgtggctgtgctgcttatctcctccgacctggaagagatcgaactgatggcagatcgtgtgtatgtgatgcatcagggcgaaattacccactctgcactgaccgagcgcgatattaatgtcgagactattatgcgcgttgccttcggcgatagtcagcgtcaggaggcgtcatgctgaagtttattcagaacaaccgtgaaatcacggcactgctggcggtggtgctgctgtttgtattacccggttttctcgaccgccagtatttaagtgtgcaaacgctgaccatggtttatagcagcgcgcaaatcctgatcctgctggcaatgggcgcgacgctggtaatgcttacgcgcaatattgatgtttcagtgggttcgattaccggaatgtgcgcggtgctgttggggatgttactgaacgcaggatattcactacctgttgcttgtgtcgcgactttactgcttggtttgctcgcgggatttttcaacggtgtcctggtcgcgtggctaaagatccctgccattgttgccacccttggcacgttagggttgtacagaggcatcatgttgctgtggactggcggcaaatggattgaagggttacccgccgaactgaaacagctctccgccccgctgctgcttggcgtttcagcaattggttggttgacgataattctggtggcatttatggcctggctgctggcaaagacggcgtttggacgcagtttttatgccacgggcgataatttacagggcgctcgtcaactgggcgttcgtactgaagccattcgcattgtggcattttcgttgaacggctgcatggcggcactggcgggaattgtgtttgcttcgcagattggttttatccccaaccagaccggtaccgggctggagatgaaagcaattgcagcctgcgtgctgggcggcattagtttgctcggtggttccggtgcgatcattggtgcggtactcggcgcatggttcctgacgcagatcgatagcgtactggtgctgttgcgcattccggcatggtggaatgattttatcgcgggtctggttctgctggcggtgctggtgtttgatggacgcctgcgttgtgcgctggaacgtaatctacggcggcaaaaatatgcccgctttatgacgccaccgccatccgttaaacccgcttcgtcaggtaaaaaacgggaggccgcataatgcgtattcgctacggttgggaactggctcttgccgcactgctcgttattgagattgtcgcatttggtgcaattaacccgcgaatgttagatctcaatatgttgctgttcagcaccagtgactttatctgcattggcattgtcgccctaccgctaacgatggtgattgtcagtggcgggatcgatatttcgtttggttcgaccatcggcctctgcgccattgcattgggcgtactgtttcaaagtggtgtgccgatgccgctggcgatactcctgaccttactgctcggcgcattgtgcgggctgatcaacgccggattaattatctataccaaagttaacccgctggtgattacgcttggcacgctgtatctgtttgccggaagcgctctgctgctttccggtatggccggagcgacggggtacgaaggtattggtggattcccgatggcgtttacagatttcgctaacctggatgtgctgggactccccgttccgctgattatcttcctgatatgtctcctcgttttctggctctggctgcataaaacccatgccggacgtaatgtgtttttgattgggcaaagcccgcgcgtggcgctttatagcgcgattccagttaaccgtaccttatgtgcgctctatgccatgacggggctggcgtctgcggtcgccgctgtgctgctggtatcgtattttggttcagcacgttccgatctcggtgcgtcgtttctgatgcccgccatcaccgccgtggtgcttggcggggccaatatttatggtggttccggttccattatcggcaccgccattgcggttttattagtgggatatttgcaacaaggtttgcaaatggcaggagtgccaaatcaggtgtccagcgccctttccggtgcgctacttatcgtcgttgtcgtaggtcgttccgttagcctgcatcgccagcaaattaaagagtggctggcgcgtcgggccaataacccattgccataaaggatatcttcatgacacttcatcgctttaagaaaatcgccttacttagcgctcttggcattgccgcaatctctatgaatgtgcaggccgcagagcgtattgcatttattcccaaactggttggcgtgggattttttaccagcggtggcaacggcgcacaacaagcgggtaaagagctgggcgttgatgtgacctacgacgggccgacagaacccagtgtttctggtcaggtacagttgattaataacttcgtcaatcaaggttataacgccattatcgtttctgcggtttcgcctgatggcttgtgtccggcactgaaacgcgccatgcaacgtggtgtgagagtgctgacctgggactctgatactaaaccggagtgccgctcttactacattaatcagggaacgcccgcccagttaggaggtatgttggtggatatggcggcgcgtcaggtgaataaagacaaagccaaagtcgcgtttttctactcaagccccaccgttacggaccaaaaccagtgggtgaaagaagcgaaagcgaaaatcgccaaagagcatccaggctgggaaattgtcactacgcagtttggctataacgatgccactaaatcgttacaaaccgcagaaggaatattaaaagcgtatagcgatctcgacgccattatcgcccccgatgccaacgccctgcccgctgccgcacaagccgcagaaaacttgaaaaatgacaaagtagcgattgtcggattcagtacgccaaatgtgatgcgcccgtatgtagagcgcggcacggtgaaagaatttggcctgtgggatgtggttcagcaaggcaaaatttcagtgtatgtcgcggatgcattattgaaaaaaggatcaatgaaaacgggcgacaagctggatatcaagggcgtaggtcaggttgaagtctcgccaaacagcgttcagggctatgactacgaagcggatggtaatggcatcgtactgttaccggagcgcgtgatattcaacaaagagaatatcggcaaatacgatttctgatgtgcattacttaaccggagtaagttatggcagatttagacgatattaaagatggtaaagattttcgtaccgatcaaccgcaaaaaaatatcccttttaccctgaaaggttgcggtgcgctggattggggaatgcagtcacgcttatcgcggatatttaatccgaaaacgggtaaaaccgtgatgctggcttttgaccatggttattttcagggaccgactaccggacttgaacgcattgatataaatatcgccccgctgtttgaacatgccgatgtattaatgtgtacgcgcggcattttgcgcagcgtagttccccctgcgaccaataggccggtggtactgcgggcgtcaggtgcgaactctattctggcggaattaagtaatgaagccgtggcgttatcgatggatgacgccgtgcgcctgaacagttgcgcggtggcggcgcaggtttatatcggcagcgaatatgaacatcagtcgatcaaaaatattattcagctggttgatgccggaatgaaagtgggaatgccgaccatggccgtgactggcgtgggcaaagatatggtgcgcgatcagcgttatttctcgctcgcgactcgaatcgccgctgaaatgggggcgcaaattatcaaaacctattatgtcgaaaaaggttttgaacggattgttgccggatgtccggtacccattgttattgctggcggtaaaaaattaccggagcgcgaggcgctggaaatgtgctggcaggctatcgatcagggcgcttctggtgtggatatggggcgtaatattttccagtctgaccatccggtggcgatgatgaaagccgtacaggcggtggttcaccataacgaaacggctgatcgggcatatgaactctatctgagtgaaaaacagtaactgcggatctaaggagaagaattatgcacgtcacactggttgaaattaacgttcatgaagacaaggttgacgagtttatcgaagtttttcgccagaaccacctgggctctgtacaggaagaaggcaatttgcgcttcgatgtcttacaggacccggaagtgaattcgcgcttttatatctacgaagcctataaagatgaagacgcagtggcgttccataaaaccacgccccactacaaaacctgtgtcgcgaaactggaatctttaatgaccgggccgcgtaaaaaacgtctgttcaatggtttgatgccgtgaggcgaatttatcaattttatctacaattggggtaacgcgctgacgggagtaaaaaaatgtctgactggaacccctctttatatctacacttttccgctgaacgatcgcgtccggcggtggagctgcttgccagagtgccgctggaaaatgtcgaatatgttgccgatcttggctgtggcccaggtaacagcaccgcccttctacaacaacgttggcctgcggccaggataacaggcatcgactcgtctccggcgatgattgctgaagcgcgcagtgctttgccagactgccagttcgtggaagcagacatccgcaactggcaaccggtacaggcactcgatctgatttttgctaatgcctcactgcaatggctgcccgaccactacgaattgtttcctcatctggtttctttacttaatccgcagggcgtgctggcagtacagatgccagataactggctggagccgacccatgtgctcatgcgcgaagttgcctgggaacaaaactacccggatcgcgggcgtgagccgttggctggcgttcatgcttactacgatattttgagcgaagccggatgtgaggtcgatatctggcgaaccacctactatcaccagatgccgtcacaccaggcgattatcgattgggtgactgccactggattacgtccgtggttacaggatctgaccgagagcgaacagcagctttttcttaagcgctaccatcagatgctggaagagcagtatccactgcaagagaacggacagatactgctggcatttccgcgtctgtttattgttgcccggcgtatggagtaaatatcacgtcagctggtaatgacgatcgggaagaatttttgctggaatttcggcttcatcgttcatctgtaacaggtcaatttcaatagcgttgcagatggcatccagtggtaaatcattgttttcagtaccgaacggatcttccagttcttccgccagacaatccagcgaaataaaagtgtaggaaatcagcacagagataaaaggcgtcatgtaatgcaggtccacgaccagcgcgaacggcagcatgatacaaaacagataaacggtacgatgcaaaatcagggtgtaggcaaagggaattggcgtataggcaatgcgctcgcatcctgccaggaccgctgaaatatcattaagccgatcgttgaggctaataaacaggatatctgaaagctgtccattgcggcgctgaaccgccaaccattctcccattattaacaagatacggttagctggagagttcgaagccagtacacgctgaagatcttcagtcttgagataatgagccagcacttccgcctgtggctgtttgcgtaatgtcatgcgtaaacagtgggcgaaagcgatttgcagccgggcaaactcccttacacttgccgaatccggcaatgtcgtttttacctcgcgcagtaacgaccgtgaggcaatcatcaactgcccccaaagttttcgcgcttcaacgtaacgggcgtacccggcattattacgaaaaccaagaaaaatggcgatggcgacaccgagaatgctgaacggtgcgagggtgaatttgatgcccagatgcgtgtaccagggcagcatgaaaataacagcgatagaaaagagaaaattgagtagtaagcgcgaggatatcttggataatactgagccgtgccagacaaaaatacggcgcagccagtgttgttgtggacgaacaatcatggttatcttcaggcgtggaaaagtcgccctattaaacgtgattacgatcacattctcaagacgctacttacaaattacctacaagcttacaacattagcaggcgctgcatgtggcacctgttaatgataaaggcatataggatgttgtaactaatatggtgaaataagaaacccggtcgaaaccgggttcagaagtaacggtgttattagcacaacggacgtacagcttcgcgcatccctttttcgagaatcgcatccaggtcattagcaacctgctcgaccagaccaggcacttgcgtcaggtcctgctcccagtggtctttttctgccaaaacaatcgctaccagttcctgggtgccgataacacggtcacgatgctggctccagagttgctgataacgttccagccagtgtgcatcgtcctgtaccggatatgtttcgccgttacgctcaccacgatagaacgcaatcaatgccgctaatgcgaaagtaaggcgcgccggaagtgtgccgtttgccttctgccctgccagcagctgtggcaggatgcgggtgcggaacttggtcataccgttgagcgcgatagacagcagctgatgcttaatgtacgggttacggaaacgcccggtgactgcactggcgaaagattccagttcatcacgaagcaaatccagtaccggaataatttcttcgtagatagctttttcaacgaatgcgcaaatttcagcatcgttcatcgcttcacctacggtatccagccctgcctggaacgccaccggcaccagcgcggtgtgcgcaccgttgaggattgccactttgcgttctttgtacggtttaatatcgtcaacaatcagcacgttgagcggatatttgtccagacgcagttcagtcgctaaggatttcggtccctgaatcacaaacaggtaaaagtgttcagcggtgtcgagaaaaccatcgtgataacccagttcttcttccagtttagccacttcatcgcgcggataaccggtaacgatacggtccaccagcgtagaacagaagctgttagcctgatccagccattgaataaatgcttctggcagtgcccactcttgcgcatagcgcagcaccagttcacgcaacgcgtcgccattgtagtcaatcaactcacacggaatgatgatccaacctttatccagcgcaccgttgaaatggctaaagcgttcgaacagcagacgggtcagttttgccggatagcttaccgctggcgcgtcatcgaatttatcgcccgcatggtagctgatacccgcttcggtggtgttagagaaaacaaagcgcatttccgggttgtgcgccagtttcaggaattcatcgtattcactgtagacgctgatttcacgattaaccgagcgaatcagacgcgcgtcgctgaccgcttcccccttctcattcaggccacggataatggtggtgtacagaccatcctgcgtgctcagtgacggcgggaatgaagtttcaatcggacgaacaacgaccacgccagaattcagatcggtgtgctcattcaggagatcgatttgccagtcaacaaaggcgcgcaggaagttaccttcaccaaactgaatgatacgttctggatactgtgcaccgggaaaatcgcgacgatttagtgttttcacaatgggttcccttctgattagtcatacaacctgtttgaattggtacgacaggttagcaaactttaatacgccgaacccctgttttgatcaactcctgatgattaatgagcagttttatgagaaaagtgtggcgcggatcatggtttaatcgaggaaaaacgccttttcctggatcataaagtggtagaacacattgcattcaaatcgcgcgtaatgaataaagatgtcagacaacttcctcaccgtaacgcatagtgctggtacggttgcgcccatctttcttcgagcgatacagacacgtatcggcttcgaccatcaatttattaaagtcatcggtcagcgttaggtacgatgcgcgaccactaccgacgccaatacttaccgtgagataaagcgttttttgttgccaggtgaatggttgcagttcaacgcctttacggattttttccgccattagcagaccatcgacaggattcaccgacggcactgcaacagcaaattcttcgccgcccattcgcgccaccagccccttatcaccgacaatcttctgaatatgccgggcaaacacgcttaacactttatcgccacattcatgtccatagttatcgttaatgcttttgaaatagtcgatatcaagcagcatgacagtcagatgttgtgtctgtttcagcgatggacttttcagcgcctcataaagaccggaccgtgagtaaacctgagtcagaaaatcaaagtcggctcgcagcgcaacttgcttcattagcgaattgatcgctgccacgctaaaagaaaccataattgggcatatcgccatcgtggcaataccgagacgtgcggagaacatttgcggaatggagaacggcgaaccgaccgagatatcaatcaccgaatttgccaccagtacgatttccaccgcaccggtgacaaaggtcaacagacatgttacctgcggcgtatagcgcactgcacaccagattaatgcaggcagcgggaacgccagactccccgctccgccaatgactaccgaggcaataaccgacacaataagcgcgatggcgggcatcatctgttctgctttaaagcgcggcagcactccaggaatagccaacgtcagcatacaaggcacgatcaacacgcccgttgagaattgctcactgaaccagtccgcaagcaaaggccagaaatccagactatcaatactgaccgaaccaagatagcatgttcgctgacagcggcggcaaataaaggtaccctgggaatgctattttgtcgttttccgcaattctcatggctgattcatctgtacaaccagccagtgatagattaccgccacgatataacgttgttgttcttcgcttaacgaaacaccctgcggaatgttatgccacttagccagacaaccgcgacagcaggtcgcggtggcgtgctgagcgataaacaccggatgcccgcgcatgggggtttgcttaccgtcattagccggtaatgccggagcaagacgtttagcgacaaaatccgccgcatgttgttcgatgactggcgcgcctttctccaggcaatactgacgctctttcatgcccagacgaaagcgagagcgaaattttgaacgggataaacgcgcgaagagtggatcgagagactgcattaataaaccgaacgccctaactgtttcgtcaattgttcaagaacggcaatacccgcaagcgagttacctgcatcatccagttccggactccagacagcgatggccatttcatgcggaacaatcgccacaataccgccaccaacgccagatttcgccggtagccccacccgccaggcaaactcccccgcgttctggtacataccactggtcgccatcagcgcgttaatttgccgcgcctgcattggcgtcaccactggttcatcaatatgaatagctttcccctgattagccagaaagacaaacgtccgggccagctctacacagctcattttcagagcgcagtaatgaaagtagttttgcagaacggttgtcacgtcatgatggaaattgccaaacgacttcatcagccaggcgatagccgcatttcgcgcggaatgttcaaattcggaacgcgctaccaccgtatcgtaggaaatatcagacacaccgcttaagccgcgcacgacttccagcatacgttgccgtggtgcgcttaatcgcccttgcaacatatcgcagaccaccagcgcaccggcattaatgaacggattacgcggtataccctgctccatttccagttgcactaaggaattgaacggtgatccagacggatctttgccgacgcgttgccagatttcctcttcggagtaatgacgcatggcgacaacgagactcagcactttggaaatagactgaatggaaaaacgttcttgcgcgtctccggcctgaaaaagctgtccgtcaacggtacagatagcaatccccaatcgggaaccgtctactgtagccagcgccggaatataatccgcgactttaccctgaccaatgagcggccgcacttgccgcaagatgttttctaaaattgcattatccatggcgactgccactttctactcctggaccgcaggtctgaaaagacctgcgagtatatcagagctgaatatgtcgcgtcagatccggtctttccacaccgtctggatattacagaattcgtgtaagccgaaatgggaaagctcacgaccaaagccactctttttcacgccaccaaaggccactcgcgcgtcgctggcacaataaccattgataaacaccccaccgcattccagacgtgccgccatctgtctggcctgtgtttcgtcagtggtaaaaatggtcgctgaaaggccgaactcactatcattagccagttccagtgcatgttctgcatctttcgcaatggtgattgccgcaacggggccaaacatttcttcccgaaacgcggtcatttctggggtaacattcgccagaaccgttggcggatagtagttacctgccccagccatcttttccccgcccagtaacaaacgcgcaccctgcgccagggttttctccacctgatgatgcagctcatcacgtaaatcaaaacgagccattggtccgagagcgttctcttcgtcacggggatcgcccattttcaaggctgccgcagctgccacaaaacgttcggtaaatgccgaagcaattccctcttcgataataaagcgttttgccgctgcacatacctgtccggtattctgataacgtccggctaccgccgctttcaccgccagttccagatcggcatcgttaagcacaataaacggatccgaaccgcccagttccagtacgcattttttcagtgccgctccagcctgtgcgccaatagccgctcccgcacgaacacttccggtcaccgtgacagcagcaatgcgcgagtctttaatcatctgactgacaccgtcgttgtcggcattcagccagccatatacgccttgtgggatacccgcatctttaaacacctgggcaatgagctgtgcacagcccatcacattcggcgcatgtttaagtaagtagccgttacctgcaagaatgatgggaacagcgccacgcatcacctgccataacggaaaattccacggcataatcgccagaatcgtccccaacggtcgatactcaataaccgcctgctgattttccaccagcgtaggttccgccttcagcattgccggaccatgttctgcataccagtcacacaaattcgccgatttcgccacttcagcgcgcgcctggttgattggtttgcccatttcgcgggtgatcatttgcgccatttcttcgctacgagcgcgcagagccttaccgatatcacgcagtttttcagcacgataatctatatttgtctcgcgccagtcgcgaaagcctgctgccgccagctgaagtgcgttttcgatatcgtcagcgccagcccacggcagcacagaaagttgttcacccgtggcaggatttatcgaaattgcatgagttgccggagtaatggtcatcggggtatctcctttatgagtcatggtatgaagatacgcagatttactcttgctttaaaatgaataatattaagccacttattcacgaatcgagaatgctatggatctgacccaactggagatgttcaacgcggttgccgaagctggcagcataacccaggctgcagcaaaagtgcatcgcgtgccgtcgaatctcactacccgtctgcgccagctggaaacagaactgggggttgatctgtttattcgcgagaatcagcgtttacgtctctctcctgccgggcataactttttacgctatagccaacaaattctcgcgttagtggatgaagcgcggagcgttgtcgctggcgatgagccgcaaggtttattttctcttggttcgctggaaagcaccgctgcagtgcgcattccagccacgctggcggaattcaaccgtcgttatcccaaaattcagttttcactttccaccggcccttccggcactatgctggatggtgtactggagggaaaactgaatgcggcgtttattgatggacccattaaccatactgccatcgacgggataccggtataccgcgaggaactgatgatcgtcacgccacaaggatatgcgccagtaacccgtgccagtcaggttaatggcagtaacatttatgccttccgcgccaattgttcgtatcgtcgccacttcgagagctggtttcatgctgacggtgccgctccgggaactatccatgagatggagtcttatcacggaatgttggcctgtgtgatcgcaggagcaggcattgcgcttattccgcgctctatgctggaaagtatgccggggcatcaccaggttgaagcgtggccgttagctgagcaatggcgttggttaacaacctggctggtctggcgtcgtggtgcgaaaacacgtccgctcgaggcatttattcaactgctggatgtgcctgactcggcaagacagggatatcaatgagctatttttgatagttcttgcggttaatatgctctatatagtgatgttccgatgacttatgactatatggggcaaatatggttacgccagtaagcatcagcaattacatatctcttcctgatgattttcccgtacgtaatattgcaccgcaggtaaaagaagttttaaaggattttattgatgcacttagtacaataatatgtaatgaagagtggcgcacgtctttaaacatcaactcagccacaaaaaagatatttaataaccttgacaacttatcatatattcagaggacttcttttcggggtaacgacacgctatacaatgaaaaggttcagtttaaactcacttatcccgccaggaatggaagacacaaagaaaatattgaatttcaggtagtaataaatttaagccctatttatttagataattttcgccatgatggagaaattaatattttttgcgctcccaacccaaagcctgtcactatggggcgcgtatttcagaccggcgtcgagcgtgtactctttctgtttctgaatgattttattgaacaatttccaatgatcaaccctggtgttcccatcaaaagagcgcatacaccacatattgaacccctgccttcggatcaccataccgctgcagattacttacgccagtttgatttgcttgtcctgaattttatctctcgcggtaattttgtcatactcccccgattatggaataactctgaggttcacagatggttcgtcaataaagatcctaacttgatcaccgccattctcgacataacggacagcgaattaaaagaggatttgttgcaaagcctgatggattcattaggttctaacaaacatgtactacccgaagtctgcatctgctttttatcccttttagcagaacaagaatctcctcattttcagaacttgtttttatttttcgccaatatgttattgcactatcaccaatttatgaatcccaatgaaagtgatttgaatgacgtgttgatgccagcatcattaagtgatgataaaattatcaaacatatggcgcgcaggaccctcaaactgtttgtaaaaaatgaaacaccgccaaaagttactcacgaagacctggtgaaaaacaggcctcgctcccctgtcagaccacctatacccgcaaccgccaaaacgccagacctccctgaacgtcattaaaccgtgatgttaccgactctctgacgcgtgaaagaatcagcgtcagagaaacggaaaacgcgatccagatcacaaatgcattgtattcacatcattaaccgttttaagatcatttcatcactttttcgcaactcacccgataatctgttatgacaacaaacactgtttcccgcaaagtggcgtggctacgggtcgttacgctggcagtcgccgccttcatcttcaacaccaccgaatttgtccctgttggcctgctctctgacattgcgcaaagttttcacatgcaaaccgctcaggtcggcatcatgttgaccatttacgcatgggtagtagcgctaatgtcattgccttttatgttaatgaccagtcaggttgaacggcgcaaattactgatctgcctgtttgtggtgtttattgccagccacgtactgtcgtttttgtcgtggagctttaccgttctggtgatcagtcgcattggtgtggcttttgcacatgcgattttctggtcgattacggcgtctctggcgatccgtatggctccggccgggaagcgagcacaggcattgagtttaattgccaccggtacagcactggcgatggtcttaggtttacctctcgggcgcattgtgggccagtatttcggttggcgaatgaccttcttcgcgattggtattggggcgcttatcacccttttgtgcctgattaagttacttcccttactgcccagtgagcattccggttcactgaaaagcctcccgctattgttccgccgcccggcattgatgagcatttatttgttaactgtggtggttgtcaccgcccattacacggcatacagctatatcgagccttttgtacaaaacattgcgggattcagcgccaactttgccacggcattactgttattactcggtggtgcgggcattattggcagcgtgattttcggtaaactgggtaatcagtatgcgtctgcgttggtgagtacggcgattgcgctgttgctggtgtgcctggcattgctgttacctgcggcgaacagtgaaatacacctcggggtgctgagtattttctgggggatcgcgatgatgatcatcgggcttggtatgcaggttaaagtgctggcgctggcaccagatgctaccgacgtcgcgatggcgctattctccggcatatttaatattggaatcggggcgggtgcgttggtaggtaatcaggtgagtttgcactggtcaatgtcgatgattggttatgtgggcgcggtgcctgcttttgccgcgttaatttggtcaatcattatatttcgccgctggccagtgacactcgaagaacagacgcaatagttgaaaggcccattcgggccttttttaatggtacgttttaatgatttccaggatgccgttaataataaactgcacacccatacataccagcaggaatcccatcagacgggagatcgcttcaatgccacccttgcccaccagccgcataattgcgccggagctgcgtaggcttccccacaaaataaccgccaccaggaaaaagatcagcggcggcgcaaccatcagtacccaatcagcgaaggttgaactctgacgcactgtggacgccgagctaataatcatcgctatggttcccggaccggcagtacttggcattgccagcggcacaaaggcaatattggcactgggttcatcttccagctcttccgacttgcttttcgcctccggtgaatcaatcgctttctgttgcggaaagagcatccgaaaaccgataaacgcgacgattaagccgcctgcaattcgcagaccgggaatcgaaatgccaaatgtatccatcaccagttgcccggcgtaatacgccaccatcatgatggcaaatacgtacaccgaggccatcaacgactgacgattacgttcggcactgttcatgttgcctgccaggccaagaaataacgcgacagttgttaatgggttagctaacggcagcaacaccaccagccccaggccaattgctttaaacaaatctaacattggtggttgttatcctgtgtatctgggttatcagcgaaaagtataaggggtaaacaaggataaagtgtcactctttagctagccttgcatcgcattgaacaaaacttgaaccgatttagcaaaacgtggcatcggtcaattcattcatttgacttatacttgcctgggcaatattatcccctgcaactaattacttgccagggcaactaatgtgaaaagtaccagcgatctgttcaatgaaattattccattgggtcgcttaatccatatggttaatcagaagaaagatcgcctgcttaacgagtatctgtctccgctggatattaccgcggcacagtttaaggtgctctgctctatccgctgcgcggcgtgtattactccggttgaactgaaaaaggtattgtcggtcgacctgggagcactgacccgtatgctggatcgcctggtctgtaaaggctgggtggaaaggttgccgaacccgaatgacaagcgcggcgtactggtaaaacttaccaccggcggcgcggcaatatgtgaacaatgccatcaattagttggccaggacctgcaccaagaattaacaaaaaacctgacggcggacgaagtggcaacacttgagtatttgcttaagaaagtcctgccgtaaacaaaaaagaggtatgacgatgtccagacgcaatactgacgctattaccattcatagcattttggactggatcgaggacaacctggaatcgccactgtcactggagaaagtgtcagagcgttcgggttactccaaatggcacctgcaacggatgtttaaaaaagaaaccggtcattcattaggccaatacatccgcagccgtaagatgacggaaatcgcgcaaaagctgaaggaaagtaacgagccgatactctatctggcagaacgatatggcttcgagtcgcaacaaactctgacccgaaccttcaaaaattactttgatgttccgccgcataaataccggatgaccaatatgcagggcgaatcgcgctttttacatccattaaatcattacaacagctagttgaaaacgtgacaacgtcactgaggcaatcatgaaaccactttcatccgcaatagcagctgcgcttattctcttttccgcgcagggcgttgcggaacaaaccacgcagccagttgttacttcttgtgccaatgtcgtggttgttcccccatcgcaggaacacccaccgtttgatttaaatcacatgggtactggcagtgataagtcggatgcgctcggcgtgccctattataatcaacacgctatgtagtttgttctggccccgacatctcggggcttattaacttcccacctttaccgctttacgccaccgcaagccaaatacattgatatacagcccggtcataatgagcaccgcacctaaaaattgcagacccgttaagcgttcatccaacaatagtgccgcacttgccagtcctactacgggcaccagtaacgataacggtgcaacccgccaggtttcatagcgtcccagtaacgtcccccagatcccataaccaacaattgtcgccacaaacgccagatacatcagagacaagatggtggtcatatcgatagtaaccagactgtgaatcatggttgcggaaccatcgagaatcagcgaggcaacaaagaagggaatgattgggattaaagcgctccagattaccagcgacatcaccgccggacgcgttgagtgcgacatgatctttttattgaagatgttgccacacgcccaactaaatgctgccgccagggtcaacataaagccgagcatcgccacatgctgaccgttcagactatcttcgattaacaccagtacgccaaaaatcgctaaggcgatccccgccaattgtttgccatgcagtcgctccccgaaagtaaacgcgccaagcatgatagtaaaaaacgcctgtgcctgtaacaccagcgaagccagtccagcaggcataccgaagttaatggcacaaaaaagaaaagcaaactgcgcaaaactgatggttaatccataccccagcagcaaattcagtggtactttcggtcgtgcgacaaaaaagatagccggaaaagcgaccagcataaagcgcaaaccggccagcatcagcggtggcatgttatgaagccccactttgatgaccacaaaatttagcccccatacgaccactaccagtagcgccaacaccccatcttttcgcgacattctaccgcctctgaatttcatcttttgtaagcaatcaacttagctgaatttacttttctttaacagttgattcgttagtcgccggttacgacggcattaatgcgcaaataagtcgctatacttcggatttttgccatgctatttctttacatctctaaaacaaaacataacgaaacgcactgccggacagacaaatgaacttatccctacgacgctctaccagcgcccttcttgcctcgtcgttgttattaaccatcggacgcggcgctacgctgccatttatgaccatttacttgagtcgccagtacagcctgagtgtcgatctaatcggttatgcgatgacaattgcgctcactattggcgtcgtttttagcctcggttttggtatcctggcggataagttcgacaagaaacgctatatgttactggcaattaccgccttcgccagcggttttattgccattactttagtgaataacgtgacgctggttgtgctcttttttgccctcattaactgcgcctattctgtttttgctaccgtgctgaaagcctggtttgccgacaatctttcgtccaccagcaaaacgaaaatcttctcaatcaactacaccatgctaaacattggctggaccatcggtccgccgctcggcacgctgttggtaatgcagagcatcaatctgcccttctggctggcagctatctgttccgcgtttcccatgcttttcattcaaatttgggtaaagcgcagcgagaaaatcatcgccacggaaacaggcagtgtctggtcgccgaaagttttattacaagataaagcactgttgtggtttacctgctctggttttctggcttcttttgtaagcggcgcatttgcttcatgcatttcacaatatgtgatggtgattgctgatggggattttgccgaaaaggtggtcgcggttgttcttccggtgaatgctgccatggtggttacgttgcaatattccgtgggccgccgacttaacccggctaacatccgcgcgctgatgacagcaggcaccctctgtttcgtcatcggtctggtcggttttattttttccggcaacagcctgctattgtggggtatgtcagctgcggtatttactgtcggtgaaatcatttatgcgccgggcgagtatatgttgattgaccatattgcgccgccagaaatgaaagccagctatttttccgcccagtctttaggctggcttggtgccgcgattaacccattagtgagtggcgtagtgctaaccagcctgccgccttcctcgctgtttgtcatcttagcgttggtgatcattgctgcgtgggtgctgatgttaaaagggattcgagcaagaccgtgggggcagcccgcgctttgttgatttaagtcgaacacaataaagatttaattcagccttcgtttaggttacctctgctaatatctttctcattgagatgaaaattaaggtaagcgaggaaacacaccacaccataaacggaggcaaataatgctgggtaatatgaatgtttttatggccgtactgggaataattttattttctggttttctggccgcgtatttcagccacaaatgggatgactaatgaacggagataatccctcacctaaccggccccttgttacagttgtgtacaaggggcctgatttttatgacggcgaaaaaaaaccgccagtaaaccggcggtgaatgcttgcatggatagatttgtgttttgcttttacgctaacaggcattttcctgcactgataacgaatcgttgacacagtagcatcagttttctcaatgaatgttaaacggagcttaaactcggttaatcacattttgttcgtcaataaacatgcagcgatttcttccggtttgcttaccctcatacattgcccggtccgctcttccaatgaccacatccagaggctcttcaggaaatgcgcgactcacacctgctgtcacggtaatgttgatatgcccttcagaatgtgtgatggcatggttatcgactaactggcaaattctgacacctgcacgacatgcttcttcatcattagccgctttgacaataatgataaattcttcgcccccgtagcgataaaccgtttcgtaatcacgcgtccaactggctaagtaagttgccagggtgcgtaatactacatcgccgattaaatgcccgtaggtatcattaaccaatttaaatcggtcaatatccaacaacattaaataaagattcagaggctcagcgttgcgtaactgatgatcaaaggattcatcaagaacccgacgacccggcaatcccgtcaaaacatccatattgctacggatcgtcagcaaataaattttgtaatcggttaatgccgcagtaaaagaaagcaacccctcctgaaaggcgtcgaaatgcgcgtcctgccagtgattttcaacaatagccagcattaattcccgaccacagttatgcatatgttgatgggcagaatccattagccgaacgtaaggtaattcatcgttatcgagtggccccagatgatcaatccaccgaccaaactggcacagtccataagaatggttatccgttatttctggcttactggcatctctcgcgaccacgctgtgaaacatactcaccagccactggtagtgggcatcgatagccttattgagatttaacaagatggcatcaatttccgttgtcttcttgatcattgccactcctttttcacagttccttgtgcgcgctattctaacgagagaaaagcaaaattacgtcaatattttcatagaaatccgaagttatgagtcatctctgagataacattgtgatttaaaacaaaatcagcggataaaaaagtgtttaattctgtaaattacctctgcattatcgtaaataaaaggatgacaaatagcataacccaataccctaatggcccagtagttcaggccatcaggctaatttatttttatttctgcaaatgagtgacccgaacgacggccggcgcgcttttcttatccagactgccactaatgttgatcatctggtccggctgaacttctcgtccatcaaagacggccgcaggaataacgacattaatttcaccgctcttatcgcgaaaaacgtaacggtcctctcctttgtgagaaatcaaattaccgcgtagtgaaaccgaagcgccatcgtgcatggtttttgcgaaatcaacggtcattttttttgcatcatcggttccgcgatagccatcttctattgcatgaggcggcggtggcgctgcatcctgttttaaaccgccctggtcatctgccaacgcataaggcatgacaagaaaacttgctaatacaatggcctgaaatttcatactaactccttaattgcgtttggtttgacttattaagtctggttgctatttttataattgccaaataagaatattgccaattgttataaggcatttaaaatcagccaactagctgtcaaatatacagagaatttaactcactaaagttaagaagattgaaaagtcttaaacatattttcagaataatcggatttatatgtttgaaaattattatattggacgagcatacagaaaaagcaaatcacctttacatataaaagcgtggacaaaaaacagtgaacattaatagagataaaattgtacaacttgtagataccgatactattgaaaacctgacatccgcgttgagtcaaagacttatcgcggatcaattacgcttaactaccgccgaatcatgcaccggcggtaagttggctagcgccctgtgtgcagctgaagatacacccaaattttacggtgcaggctttgttactttcaccgatcaggcaaagatgaaaatcctcagcgtaagccagcaatctcttgaacgatattctgcggtgagtgagaaagtggcagcagaaatggcaaccggtgccatagagcgtgcggatgctgatgtcagtattgccattaccggctacggcggaccggagggcggtgaagatggtacgccagcgggtaccgtctggtttgcgtggcatattaaaggccagaactacactgcggttatgcattttgctggcgactgcgaaacggtattagctttagcggtgaggtttgccctcgcccagctgctgcaattactgctataaccaggctggcctggcgatatctcaggccagccattggtggtgtttatatgttcaagccacgatgttgcagcatcggcataatcttaggtgccttaccgcgccattgtcgatacaggcgttccagatcttcgctgttacctctggaaaggatcgcctcgcgaaaacgcagcccattttcacgcgttaatccgccctgctcaacaaaccactgataaccatcatcggccaacatttgcgtccacagataagcgtaataacctgcagcatatccgccaccaaaaatatgggcgaaataactgctgcgatagcgtggcggtatagcaggaagatccatattttccgccaccagcgcccgcaattcaaaatcatcgacatcctgcattgcttcgttttcttccaggcaatgccagcgcatatcgagaagtgcggcgctaagcagttcgctcatctcataccctttgttgaacaggctggcattacgcattttctgttgcagttcgtcaggcattgctgccccgctctgataatgccgggcgtagcgagcgaatacctgcggatgcgttgcccagtgttcgttgatttgcgacggaaattcgacaaaatcacgcggcgtgttggtgccggaaagcgtggcataacgctggcgggcaaaaaggccgtgcagcgtatgaccaaattcatggaataaggttatgacatcatcccagagtaacaacgcaggctcaccggcagcgggtttctgataattgcagacgttataaattaccggatgtgttttattaagcgttgattgctcaacaaaattgcccatccatgcaccgccgctttttgaatcacgggcgaagaaatcaccgtaaaataacgccagccccacgccattatgatcaaaaatttcccacacacgaacgtcaggatggtagacaggaatatcaaaacgttcgacaaacttaataccgaagagctgattcgcggtccagaatacaccttcatttaacaccgtgtttaattcaaaatatggcttgagctgcgcctcatcaagatcaaatttctcccgccgtacctgttccgcataaaatgcccagtcccacggctgcgcgctaaacccgccctgctgcttatcgataaccgcctgtatggaggctaattcatcgctcgcacgttgacgcgccgctggaacaatttcccgcataaagttaagtgctgcttcaggtgtttttgccatctgatcggcgattttccatgcggcataatgaggaaaaccaagtagtgttgcctgttgtgcacggatctccaccagacgttgaatgatagcgcgggtatcattggcatcatttttttccgctcgcgtccagcccgcaataaacagtttttcacgcgtcgcacgatcgcgcatttcggcaagcgccggttgttgggtggtattcagcagcggaatcagccatttgttatccagacctttctcgcgagccgcctctgccgccagcgcaatctcttgctcactcattcctgccagctgcgcgatatcgttcacaaccagaccgccggatttatttgctgccagtaatcgctggttaaactggctggtcagggtcgcagcttctgtattcagtacttttaattttgctttatcagcttgcgcaagtttggctccggcaaggacaaaacgttgatgaatcacctccaccaggcggatggattcactatcaagccccagggattcacggcgctgccagacagcatctacccgcgcgaataattcaccgttcagatagatatcattagccagttccgccagttcagcggaaaactgctcgtcaagacgctgtaattcatcattggtatgcgccgcagtcatcgcaaaaaagacgctggtaacgcgggtaagtaattctccgctttgttccagtgccagaatagtattgttgaaatcaggcatttgcgggttaagcgcgatggcagcaatttctgcccgcttttgctgcattccctcatcgaatgccgggcgatagtgatgattggcaatttgatcaaaatggggagccagatacggcagtgtgctttgcacaaggaaaggattcattgttgtcattttcttctcctgaacgcgaggtgttccatagcgtaggcttactgataacggagtgcaatcttgcaatccagtattacccgctcttaagcatcccgtgctatgttattgacacacaaaagcgttgaggaacagtgagatgatcgttttagtaactggagcaacggcaggttttggtgaatgcattactcgtcgttttattcaacaagggcataaagttatcgccactggccgtcgccaggaacggttgcaggagttaaaagacgaactgggagataatctgtatatcgcccaactggacgttcgcaaccgcgccgctattgaagagatgctggcatcgcttcctgccgagtggtgcaatattgatatcctggtaaataatgccggcctggcgttgggcatggagcctgcgcataaagccagcgttgaagactgggaaacgatgattgataccaacaacaaaggcctggtatatatgacgcgcgccgtcttaccgggtatggttgaacgtaatcatggtcatattattaacattggctcaacggcaggtagctggccgtatgccggtggtaacgtttacggtgcgacgaaagcgtttgttcgtcagtttagcctgaatctgcgtacggatctgcatggtacggcggtgcgcgtcaccgacatcgaaccgggtctggtgggtggtaccgagttttccaatgtccgctttaaaggcgatgacggtaaagcagaaaaaacctatcaaaataccgttgcattgacgccagaagatgtcagcgaagccgtctggtgggtgtcaacgctgcctgctcacgtcaatatcaataccctggaaatgatgccggttacccaaagctatgccggactgaatgtccaccgtcagtaatttttatacccggcgtaactgccgggttattgcttgtcacaaaaaagtggtagactcatgcagttaactcactcacaagcaagaacgaatgaccgtcgaaacgcaacttaatcccacacagcctgtcaatcagcagatttatcgtattcttcgtcgcgacattgtccattgcctgattgctccaggcacaccgttgtcggaaaaagaagtttctgttcgtttcaatgtgtcacgccagccggttcgtgaagcctttattaaactggcggaaaacggcctgattcaaattcgtccgcaacgtggcagctacgtcaacaaaatttccatggcccaggtgcgcaacggcagttttatccgtcaggccattgagtgcgcggtggcgcgtcgggcggcgagcatgattaccgaaagccagtgctatcaactggaacaaaatcttcaccagcaacgcattgccattgagcgcaagcaactggatgatttttttgaacttgatgacaacttccatcaactcctgacgcagattgccgactgtcaactggcgtgggataccattgagaacctgaaagcgaccgttgatcgcgtgcgctatatgagtttcgaccacgtttctccaccagaaatgctgttacgccagcatcttgatattttctctgccctgcaaaaacgtgatggcgatgcggtagaacgtgcaatgacgcaacatttgcaggaaatcagcgaatccgtgcgccagatccgccaggaaaacagcgactggtttagcgaagagtaattcatttcctctcatcccatccggggtgagagtcttttcccccgccttatggctcatgcatgcatcaaaaaagatgtgagcttgatcaaaaacaaaaaatatttcactcgacaggagtatttatattgcgcccgttacgtgggcttcgactgtaaatcagaaaggagaaaacacctatgacgacctacgatcgtaaccgtaacgcaatcaccactggcagccgtgttatggttagcggcaccggtcacactggcaagatcctgtcgattgatactgaaggtctgaccgctgagcaaatccgccgcggaaaaaccgtagttgttgaaggttgtgaagagaaactggcaccactggacctgattcgtctcggcatgaactaagcgtgtgaatgccgccgatggcggcattgcttttttacttcacggaatattttgccacggtcgctttcgcgccatgcgctaataaagacaagtacgtttccgtcactcttgcagtaaacaaactattgtctggcaaatcatcaccaaagatcgccttaatcgccagcaatgactggacgcgcgctttcccttcggcactactttgtacagccttctgaataacaggtaacagtgggtcactgatttctatcggatttccctgttcatcaacaccaccgacataacgcatccaacccgcgacgcccagcgccagcagatcgaacttgctgtcatgcgccagatgccagcgaacagaatccaacatccgctgtggcaatttctggctaccatccatcgcaatctgccaggttcgatgacgtaacgccgggttgctatagcgtgcaattaatcggttagcgtaatcttgcaaatcaacgccctgcactttcaacgtcggcgcttgttcctgcaacatcaagccatacgccgcataacgataatgttcatcttccatacagtcattaatgtgctgatatcctgcaagataccccagatacgccaggaatgaatgactgccgttgagcatgcgcaacttcatctcttcataaggcagcacatcgctaaccagttcggctcccgctttttcccattccggacgtccggcaacaaagttatcttctattacccactggcggaaaggttcacaggcaacgcccgcaggatcgcgcacaccggtaagttgttcgattttcgccagcgtatcctctgtcactgcgggcacaatacggtccaccattgttgatgggaaagtcacgttatcttcgatccattgtgccagttttacatcaacggcttgtgcgtaggaagtgacaacgtcacgcataacatgaccgttttctggcatgttgtcacatgacatgacggtaaatgcgggaagtcctgccgctttacggcgagccagcgcctcaacaatcacccctgttgctgttttcggctggtggggattttgcacgtcggcagctaccatcgggtgatcgagcattaactgtccggtcgccggagagtggaaataccctttttcggtgattgtcagagagacaatcgcgatttgcggttcacacatcgctgccaacacggtttctaagccatctatctgtacgtgcaaggcttttttaacgacgccaacgacgcgagccgtccacacatcggccgacatttccgcaacggtataaagattatcttgctgttgtaaatcggcaatttgctgttcgccgccgattaagttgacctcataatatccccagtcactgaaatgttccgtagcaagaatatcggcatacacaccctgatgcgcacggtgaaatgcaccaaagcctaaatgaacaattcttggagccaggttattaagatcataaacagggagtgtcgcttttgctgataacaaattatttcccataacaattccttaaatataaatatggcaagctatatgttttgttatatgaataaaaatcccctctccggtaagagaagggattaagggtttacagacttctggaaggttgcgcagctcttacaacacgcggttgatcttccgcagcgtcttccagcgcacttaaatcacggtctttcacctctggcattttcagcgcagagattaaaccaatcactgaatatgccatgatcataatggcgatcggataccaggattccgtcatggtgcagaaaatacccgccaggataggaccaaaaccggaagcgataagaccaccaatttctttagaaatagccatccgggtaaagcggtttttacagccgaacatttctgccatggtaatgttttccagagcaaataatcccagcaccgcacagttatgaatcacaatcagtgcaaccataatggtgctcggggcatagcttttatctacaatgatagaaagcattggccatgccagcacaatcgcggaggtattcataataatatacgggatccggcgaccaattttatcggataaccaaccaaggaacggaatggtcataaagccgagaatcgaactgatcatcaatgcatctgttggaattgctttgttaaacaataacgtctgcactaaatagcctgcaaggaaagtctgaattaacccggagttacccgcctgaccaaaacgcagccctgttgccagccagaaggatttgctctggaacatgctaccagcaggtgcaggttttgctgtcggttggttactgtcgttaaccttctcaaagaccgggctttctttcagattcatacgcaaccagatagcaaagaccatcacgacaacactcgccaggaacggtatacgccatccccacgccagcagttcctctttactgagaatgaagaacataaaggcccagattgccgttgcgctcaaggttccgcagttagttcccatagccacaaatgaggagataattccgcgcttaccttttggcgcatattccgccagcatcgtaccggcaccggaaatttccgcacctgcacccaacccctgaataatacgcaacgtcaccagcaagatgggtgcaaaaacaccaatctgtgcataggtcggtaacacaccaattaaggtggtacagatccccatcatggtgatggtaataaagagcacttttttacgccctattctgtcgcccattttgccgaaaataaatgctccgacaatacgcgccacataacctgcaccgtaggttcccattgccagaattaacgccattgccgttgatgattcaggaaaaaatatttcatgaaacactaacgctgcgccgagcgaatataactggaaatccataattcacaggtgttttttcccatcctgtggtttccttggcgttttctaggttttttcagatagttgcatttttttaaaaagcatcctaagttcgatctcagtgtctatctggggcctatttctgtcccatatatgccccaaaaaaactccccaacagataagtagttttttcatggatttatgcgtaaaatcaagaacggctggaaatcattcaatactcacactatcgaaaaatttaccagccaatcgcagcacgttcttgcataaggtgtgtctgcggtttttcaactattcagatacatcactcccatcacattcattcctccgcatcaaaggcatataggctatatcaccttgatatttttctttttcagataaaaactgttatctatgtatacttttaaacccaatccgtgtagagtctctacataagatagtttgcagttgccgcttcagcttgcgccataaaccgcctgatttttgctgccacctgttagcattcctgtatacctgaaacgacaatgtttatctacgaactttaagaacacccaagataaaaattgtcaactatatcatatataacacattactaattcgaggctatatgaacagcatactgataatcacatctctccttatcatattcagcatttttagtcatgccctaataaaattagggattggcatatccaataacccagacaaaaccgatgtataagtcaacatatcctgaatcagacatacaatatcgcaatgaaaatcaataatattttaaggaatatcttcatgaaatcaaaagacaccctaaagtggttccctgcgcagcttcctgaagtaagaattatcctaggggatgctgtagtggaagtagcaaaacagggaagacctatcaataccagaacattgcttgattacattgaaggaaacataaagaaaaaatcatggctggataacaaagaattattacaaacagcgatatcagttcttaaagacaaccaaaatttaaatggtaaaatgtaatataataaacttacttttttatcatttttccactttaacaacattttgctccacttttccacgaccaaacaacttgaaatctggttaaaataacacgcaacactattcttcttccttgagtccgcccggaactcgaaaaacaaaccgagttaaagccatttttcacaaaatcgattttgggtctcaccaaaattacggggttgcatacgcattcgtttattttcgaacgtgtacatacaaatatgcacaaaaataatcataattattttctgagatgcattatgatatgaacaccaatttcgtatagagtctcactatgtctcaaatttttgcttactgtcggatatcaacgctggatcagaccaccgaaaatcaacgccgggaaatcgaaagtgcaggttttaaaatcaaacctcagcaaataatcgaagaacacattagcggctcagcagcaaccagtgagcgtcctggttttaaccggttgcttgctcgcctgaaatgtggtgatcaattgattgtgacaaaactggatcgccttggttgtaatgcaatggatatcaggaaaacagtggaacaactgaccgaaacaggtatcagagtgcattgcttagcattggggggcattgacctgaccagtccaacaggaaaaatgatgatgcaagtaatttcagcagtcgctgaatttgaacgagaccttttacttgaacgcactcattccgggatagtaagagcccgcggcgcagggaaacgttttggtcgaccacctgtgttaaatgaagaacagaaacaggcggtattcgaacgaattaagtcaggtgtaagtataagtgccattgcccgggaattcaaaacctcgcggcaaaccattttaagagccaaagcaaaacttcagacacctgacatataaaaaataatctcggtgtgagatgctttacgtcttccaagcccccttccttgccgtaaatggaaagatacatctaattatagaatttatatgttttaccctacggcagtgctggccattcatatcctgtgcagttgacgtatcaacacggttcagcaatacccgatactttttccatgcttccagcaacgagatttcttcctccgttgcaatttccagatctgcagcatcctgaagcggcgcaatatgctcactggctacctgcatcaggttgttttttgtttcttccgcctcccggatccggaacagtttttctgcttccgtatccttcacccaggctgtgccgttccacttctgaaactccccttccggcgataaccaggtaacattttccggtaacggaccgagttcagaaataaataacgcgtcgccggaagccacgtcataaaccgttttaccccgatgatcttcaacgagatgccacgatgactcatcactgttgaaaacagccacgaagccagccggaatatctggcggtgcaatatcggtactgtttgctggcagacctgtatgaggcggaatatatgcatcaccttcaccaataaattcattagttccggccagcagattataaatttttatggtccgtggttgttcactcattctgaatgccattatgcaagcctcacaatatagttaaatgcgatgtttttgacggtgttttccgcgttaccagcagcgttaacggtgatggtgtgtccatgtgaaccaatcgcaacggagtgcgtatgagcaccaataccgacagtatgtgcatgcgcgcctgcgcttgcagcagtgccggacagcgagtgggtatgagcaccatctgatgatgtcttccctgcattacgagtctggccactaccgcttgttgtgctcataatccccgcgcttagatttgaaatcgcggtataaccattagggaaaatgctcgtgttcgtgccaccaaatgcaccggaactcttgtgttggtgcgcaccggcactatttgcggtcccgctaatactatgggtatgcgccccggtgttattcgtggatttggttccgtaatcaaacgacgatgtggtttccgtccccaaatccgtactggatgcgctggcgctgtgggtgtgcgatttaatgccgtcctgttcctgagataatacggcccgaccactggcgggcttgcccttaatcgtccagccacgcatatcagggatcacgcctgacggataagcaactgcaagtttcgggtatgcagatttgtcaaaagtctgcccctgcatcagggcataaccagacggaacggtatctgatggccacgggattggtgcaccgactggataaaactctgcaggaggatgagccgaggtgtaaagctgcgcccacggcgaccagtttgcgtcggtcgtatcccgtcgtgaacgaataaatgccggagcatgagcaccgcttgtaccactccagccgatgagtaactcaccttcgccaacggctgtcatccctttcaggtgaatgatatttccatacgctgttggatatccgttgttatacacctcgtataactcaagacctgctgccccctgcgtattgtctgtcagcgcggttatattcactcagcaaccccggtatcagttcatccagcgcggctgctttgttcatggctttgatgatatcccgtttcaggaaatcaacatgtcggttttccagttccggaaaacgccgctgcaccgacagggggatcccgtcgagaatactggcaatttcacctgcgatccgcgacagcacgaaagtacagaatgcggtttccaccacttcagcggagtctctggcatttttcagctcctgtgcgtcggcctgcgcacgcgtaagtcgatggcgttcgtactcaatagtccctggctggagatctgtctcgctggcctgccgcagttcttcaacttcccggcgcagcttttcgttctcaatttcagcatccctttcggcataccatcttataacggcggcagagtcataaagcacctcattacccttgccaccgcctcgcagaacgggcattccctgttcctgccagttctgaatggtacggatactcgcaccgaaaatgtcagccagctgctttttgttgacttccattgttcattccacggccaaaaacagagaaaggaaacgacagaggcccaaaagctcgttttcagcacctgtcgtttcctttcttttcagggggtattttaaataaaaacattaagttacgacgaagaagaacggaaatgccttaaaccggaaaattttcataaatagcgaaaacccgcgaggtcgccgccccgtaacctgtcggatcaccggaaaggacccgtaaagtgataatgattatcatctacatatcacaacgtgcgtggaggccatcaaaccacgtcaaataatcaattatgacgcaggtatcgtattaattgatctgcatcaacttaacgtaaaaacaacttcagacaatacaaatcagcgacactgaatacggggcaacctcatgtcaacgaagaacagaacccgcagaacaacaacccgcaacatccgctttcctaaccaaatgattgaacaaattaacatcgctcttgagcaaaaagggtccgggaatttctcagcctgggtcattgaagcctgccgccggagactgtgctcagaaaaaagagtttcttctgaagcaaacaaagaaaagagtgacattactgaattgctcagaaaacaggtcagaccagattgaagcaatttagataatcgtgcagactacgccccctcatatcacatggaaggtttatctatggatcaggtagtcatttttaaacaaatatttgataaagttcgaaacgatttaaactatcaatggttttattctgagctaaaacgtcacaatgtctcacattacatttactatttagccacagagaatgttcatattgtattaaaaaatgataatacagtgttattaaagggcctaaaaaacattgtgtctgtcaaattttcaaaggataggcatcttatagaaacgacctctaataagctgaaatccagagagatcacatttcaggaatacagaagaaaccttgctaaagcaggagtttttcggtgggttacaaatatccacgaacaaaaaagatattactatacctttgataattcattactatttactgaaagcatccagaaaactacacagatcttaccacgctaaaccataacgtccggcttctctcactcctgagccggactgcattggtttaataaaaaccatcaacaattgtgatttagatattcggaaccattcaaatataacaaaaccccgtaaaaacgaggtttatggataaattttattattgaatacatcagattaaattaatcttgacatcatagctttcaagacccgtcattttttcccgtgcggtaaactgaatactggtaacttctttcccggtctttttcttaagttcaataattttttttgttatatattcagaaatatctgcttctgcttttgtttttaagttttcaatattcatcatttcctcttttagtctgttatgactttccagttacacagtaagtcgattatatggtgcaaacgtgtaaaagataagatgaaacatcgcaataatcaacatacgatagtctaaattttacacaaacagacaaagagaattttcctgaattatcaatgcaatagcatcaaatcaactcaagagccttattgctgcttccagaatttcttctgaagtaacatgtcgatccgcggctacataaatgactttatgatctccggtcagagatggaaaccctgcggccattacagtaaggtgtgttttttcgccatttggatattcacgcatgatggtgttaactccagtcatcgctggcactaccactgctggttcagagttaaaaaaactatgatttttttcatgatgttaccgtagtatgtgagtatccatcgaatagacaccaagcaaaaaagctcccgaaggagccttcattttcacttttttaaatccaacgacagacggctggcatttaagtattgtgaaatattatcaaatgtaatcatcattgatttacaaaagatacattttgccccgaaaggattcatgtcagaaacatcaaaagatgatgttctatactgggaaccatgacaacacgggcatctaaagtgaatatggtttgtaatattgtctacctcaaagcgccactacatgaacagcggcaggacctttaggtccgttctcaataccaaattcaacttcctgattctcagttaatgttttgaaatcgttgctctgaattgctgagaaatggacaaacacatctttgctgccatctttcggcgtgatgaaaccaaaacctttttcagggttaaaccatttcactaaaccagtcattttgttagacataattattaccttttgaagaaattagcccttgggcagaatggtccgaaaaaaaatatcagagagaaaaaccaacaaggaaatctcaagaggtacaaataataaaattataacaatgactgcttcagataaatttgtaacaaaccagaacaccattaacgcatgattaaccacccatagcaaggattacttttgtaaagaaaaacacagcaatgaaagaatagctttatttattaataaaacgtgtcattctgattaagaccttttatcttacccttaagatttcaggaattttggctcatggaagagtcctttttatttaaattttacattccgcgatgtaaatgttccgatttaatattaccctacatttgatgctttttatctcttaaagattcatagatctgttgacaagtcactcctgcgatgtagcgttcgtcagcaatttcagcataaagctgagcttctgctgcaatatctccgagcatgttggtgagcattccttcggcggttttggttgttttgcctctgacggcagcggcaagatctgcggtatgcttcgctgcgtcaaggcgtatggcatatttttttgcttcggcacgcaactggttaacactatcagacagataagcagccctggcagaaatttcagcagatttctgttgcgcatctttaacagcctcatcacgggctatagttcgcccctgttcaattattcgagcagcaaattgagcatttacctcttgtgataatgcggcagcatcacgttccgcccattttttttgccatcctcggtcgctccagacatttccgacgataaatcctgacaacacgagaaaaatcaccatgaatatctgattcactgttctatcccccagcaggttaatgcgctctcctggtcacgacgaataacctgaccgtaacagttatttgaacgaatgcggcaatcgcgtccgccatccttaatccaccagcgaatcgcttcgcatgcacctttacgatcaccagcattcagccgcttataaaacgtcgacgggaaacacttaccggggccaatgttatagggacaaaatgacgcgatacccgctttttgtggttcggtcagtggtactttaatattgcgctccacccatgccagcgccttatcacgctcaatggcgttgacctggtcgcatttttccttcgacagtttcatattgggaaaaacggtttttccatccaccactgtggcaccccgacagatggtccatatgccagaaccatcgcggtatgccattgtgtggttaccttctttttcgtccagaaactggtcaagtatctgaggagcagatgcgccagcaccaatcagcgccagaacggcagccgacaggccgtatctgatttttgtgttcatagatatttatgatgaggacgctcgtgcttattggcaggattttcaatcttaaaggagtactgatgctgcagataagactcaactttttctgacaatttttctgctacttccaggaagacttgccggacgctccttctggctgctgcctcataaaactccagcgcagctccttcaacacggtccatggcgacatccaggtcaaaaatttcaccgtcaaagcgttctttgtcctgtaaggctacagttaccgtaactttattctcaaaattacggactcctttcacaaccagttcatagtcttgagtcattggattactctcctctcgcagccttacgcctgtcttctttaatcttgaaataaagatttgtcagatacgtcagcaggccaaaaaccaggctacccagcacaccgattgcagcccactgtgacggagttactttatcgagtaactgcaatgcccagaaaccagcattacccgccgatgtgccataggcaacacctgttgttaacttatccattgatttcatatcctcaccccgatgtacacggatggtgcaatatgtttgaaaagatcggagtctacggggtagttttgacagcacacgttgttctcaacggcgctaaaaaaacatacacattaaaaatgtgggtaattattttgaaagaaagtcatatataaaataataatacgagaaatgttttcatatttagtgtactgtatacggccatttatacaggaaaagcctatgtcagaacgtaaaaactcaaaatcacgccgtaattatctcgttaaatgttcctgcccaaactgcacccaagagtcagaacacagtttttcaagagtacaaaaaggtgcccttttgatctgccctcattgcaacaaagtattccagacaaatcttaaagctgtagcctgattgattttattagtaacaagtattttttatattttaataatatatttaaagcagataataaaaaacccgcctgagcgggtttgagattgtggtgctttttgtgggagtcatccacttacgcactttgttttgccatgccagcagttagcttctgctgtaaaactattcatgcagcaaacctgcacttcaccacaatggttagcatacttttcctgattaagattttgccaaatatgctagccattgtttcatgtattggacctccttactttttattaaagagatccaatattcactactctgtccgtatctctactcaggcatcagccttcttcgttatcgtatacagacgagcgatgaattttaatcagtaatgatgacatttgctgctgcaggacctttagcaccactctctatagagaaggtaaccttttgaccttcaaataaggttcgataattatcattctgaatcgcagaaaaatgcacaaacacatctttactaccatcaacaggagaaataaagccgaaacctttatcagcgttaaaccattttactaaaccagtcattttatttgacattctacattccttaacttgagcctttcggcataaatggtttgcataacagaaacgacttcgtacttaattggagagactcaaagaaggaataagtgaataacacctgaaatgagaactgctttagtaaactacttcgtatatcgtctgttcttcaaaccgacgcaatcattaacgcatagttgaacatatgaagcaatgtttattttagacatccagccatcttcaaccccatcaaaaaactatagctttcttcaggaacgtgtgtatagtgcgccaagttatcagtattaaggaatttttttgtcccgtaaaatgacaggaattgtcaaaacctttgacggcaaaagcggcaagggtcttatcaccccatccgatggtcgtatcgatgtccagcttcatgtttcagcgctcaatctccgcgatgcagaagaaattaccaccggattacgcgtggaattttgccggataaatggtctgcgtggcccttcagctgccaatgtttacctttcatgagctatattaaagctttaatttcaggccccatcggatcacacatggagagtttttatgaataaccccgtctgtcttgatgactggttgattggctttaaaagcttatgctgtactttggccgtaatagctctgctaataatataataagcagactcattgtgtttagggacattgtactggaagaaaacattttaaacatcaggcaaataaccaagtcaccagctaaataataagttaacagacatgagtcccgggatgagattcaacattaccattgccccatttaaagcacaaaacccgctcatcagcgggttttctactttttcttaacgtcgggtatacaaagcccatcgttgaaaaaattttatccatattttttgaaaaatgcaaacatcatgtcgccatcttcagcaaaaatcatttatctcgtcaccttcctcaattgcgcttccgcgtatgcttcttcctgccagcactttgttaccagtttaccaatgacgtccgcataccccttataccactgataatcggtcaggtctggtaccagcttctggacatgacgtcgtgccagcgtggtcggtaaacgactaaaccggtttccattacaacgcccacaaatcttatataccggtacgccatgaaaccgggttcttttttcatccagaacaatccctttacccttacaccctctgcacgctgtgctggcttcgcccttaccatggcaatgctgacatagttccttcacccattcttccttgattacagattccccgcgtctgtagtgtttcaccacttcgcgcaatacattataaaatcccgtacctgaacaatgctcacagcgagccttacttgccgcagacctggagtaatcagcaaaggcaaaactcacgaggtaaggaataatctgtaaccggatttcttcactcaatttgttcaatgtcgggttatccagtgccatcgcgtaatttagcaggccttcaatcgcaaactgagggtcctgaacaccaacttttgccagaaataaggccaacccaagtggtgctttcgactgcaccatcccctgcgctgccattacatccgtaattgttaaacaaccggtgcctgtcgctggagcgtcatcgctcaattttggagattttggggagtaatattttggtaaggcttcaaggttcatgctcgttctccacttacgccagtacgccaattgccagcgcgcgatcgataaaacgaaatatcagctccagttgggagccatacttatcttcaaatgccactgtatccgtatgcagctcgttgtgatgctttctgcacaaaggcaacacaaagagatcatgtgcttttgttcccattccgccctgcccgtgaccaatcagatgatgcggatcgtcggctggcataccgcagcaagcacacggctgtgtcttaacccaacgtgtgtatttctccttaacccagcggcgacgtttaggcagcttcatgaaagattccggagactctggatcaacggtgatgcttaccaccgtcttttcctgtggtgatttttgttgctggtgggcgtaaggcaacggtgcaagattttttgtgcgttgtttcaatatgctggtggcggtcagctctcccggtacgatgtcgctttcgcggtacaccgagcagattttttccgctggtaatcccagcgaacgacgcgatacagcctcaggtagtgcatccaccacctgattgcagaccgcccaccaggataattcagccaaagataattcccgctcctgcgtaccgcttattgcgtgacggatgacgtcaatcacccatgctgtcagattttgttgagcaagcagctccagtgattccgatgtctggtcacgcagttggttgtcgcagtgccagcacaacaccattgcgccggtaccataacggtgaatgactgtttcagtgtgatggtaatcgccattaggccactggcaggatgtaacatgacgtaatagccagtcggacaatgcgccaacgccgccagcagcacgaatcacccgttcgttactaaaaaacggcagcaatgttttgtcttccgccagcggctggcgaacggcaggaacgactccggatggcagattacgcatgctttttggttccggttccaccagcactcgaggattatgaaatatctgtatggattcacggcccggcttaaggaccaccagcccaagctcaggcaccagaacaggtctaagtaatacccgcacgttacctccagatccgttgctggaaagtgcgggacgcacgtggtgggcgttcggaataaggcagcctgacagagattatccagtgccgatagtcgagactgagagctttcttaacctcgaacccgcgcctgcggtaagaatgaatcagccattcggcctgttctgcagtgcatggagggtgctggaaccattcagacttgaatgcgtgagaataccgcccgtgcgtgcaggcaagaacgggcgaattatcagaattgtaatattttgcgttgcgtgccatcggttttctccggtggcacggtgttactcagcgggagttcagccccgcgcaagattgtagatgagtttattctcctgaaaaagcagaaaagccagcttttattccgatctctttcaatgcctgtaatgaagtgacaaactcaccttcgcgcaagataaatccgtccgtgacccgagcatccacaaaattaattaacgcagccccattctttcgcaaacacataatgcggtaatgactaacaagatttccattttcaacgcacacagcatagaggccatcttcacaaaaaattttacgcagttcttcgatgttcatcatcagaatccttccggataattagctctcccctttaagggaccatccctcttatccctgcgcgctacttaagtatttttgattctattccggcaccgtccagaacttcaaacgcgttgaaaataaaaacaaaaacccgccgaagcgggttaagtgcgggtgcgttgaggatgcctgccacatcagaggtggcgagggatttctcccccgccgggtctcttactcctcaggttcgtaagctgtgaagacagcgacctccgtctggccggttcggattcgtacctcgcagaggtctttcctcgttaccagtgccgtcactatgacggttaaacagatgacgatcagggcgattaacatcgccttttgctgcttcatagcctgcttctcctgtcaacgcaaagcagaagtgtcaccttcggtgcgaaacagagatgtcatgctttggttcagagaatgcgtttgaccgcctcgctatatacttccgagcgttctcttttcccaacagaaatcacgaaaacgacaactttctcgtctataacctggtatacaaggcgatagcctgaagaccggagcttaatcttgtaacaatcaggcataccacggagcttgtttgcttcaatccggggtgactcaagtacttcaaccagcttctttttcaactgttcacgtaccgtcgagcccagctttcgccattcctttagtgcccgctcgtcaaaatccagaaaatacgccatcagagttcatccagcgtcacacgtactggcttaggattacgaagccgttctttcactatctccacaagttcagcatcttcatcactcaggagtgtctgtttgaacggcaagcgttcattgtcagcgatatactcgagcatgagacgaagcgcttcagaaggagttacacccattttttcaagcgcggcgtaagaacgcgctttaagttcatcgtcaatacgcaggttaatgctacccatgtcttacacctcttgtaattacaaatgtcattacaagtatcgcactacaacatgcttagggcaagtcacgaaggaagtcagaaagtagtcgtaagaacggtgatcactgtccgctttgtgccaggagcagccattgctaagtccatcctgtattgtgcaggtcagctcgtttttaaagagtccggccatcatcttactggtacagacaccatatactttgtgacggtcaggctacatatgcacaactcaacttattcatctattttttgctttagcatgtcagtgttgctttctcgtcggcgggtgagcggtgacctgacctgtcgataaaggaacgtaacacgttttatgcaacacccgcatgcggcagaaaattattgccgaacgtttacccctgtcaacaagctttactttctgaggcgcgccagcccgcgaggaaaacaatctgaacatcaaacaattaatgacacaagaaatacgattaaagatttttttgtgcatgccgatagtgcttttttaaaaggagaaatctatgtctgtcacaattcagggaaatacctcaaccgttatttcaaacaactccgccccggaaggaacatcagaaatagccaaaatcacaagacaaattcaggtgctgactgaaaagcttgggaaaatctcatcggaagaggggatgacgacacagcagaaaaaagaaatggctgcattggtacagaagcaaattgaaagcctctgggctcaactggagcagttgttaaggcagcaggcagagaaaaagaatgaagacgcgacagttcagcctgataaaaaagaagagaaaaaagacgatacaaataccgctggcaccattgatatttacgtctaagtgacagccgtattgtggccctcatcgggccacttttcgccatcagccttttctttaaagacatattatctttgtatcatttctgatagttaacattacaagatataagtaatggacgcactcccaattagtctatttaaatcgccacgagtttaactgacaacccatgatcaattatgaattgcaactatttctgtagtcacttttgtggggacagtccacaaaactgccaacttccgcttcttgctcttagcggacattagcataggctatttaccataacgcctcattacgcgcaccgcccagactgactcagcgcgtttctggcatatccccggtaaaacaagtaacaaaccacccgaaaatgaacaccagaaacgcgacttaagaatctaccctatgaatggatatgcactcaaccgaatcgatcttggtttcaatcttttttatcgggatcaggcttctttttaggtaacttcgggggcttaacttgctgatgactttgcgttcggcgcgtaagccagggatggtcagctttaggtttaacatagtattttgagcgtaaatcaatacgggcattatccactcgttcatggacactcttttcatcatccagtggtagcctccataattgcaggcactagcgccgtgaacttttcacgcttatccctggtgtcgatagccttccagcgttcaaatatcttcactcgattaacgccaagcgctcgctgatcaatcgcgccaccttcatatgtgacacgctgaacatcgatgttcgggcgctctttcaaagcccagaatgcttcagtgattaatatcgtcgcctgctcctgtgtcattcctggtcgacatatccaggcatccagagcctcacgagcctgttcaggagtgattttcattgttcaaccgccccgcccgcttcgtcttacgatattcatcataaactttgggatcatactgaagctccccgccagatgcctcctgtagacgcatcgcgcgaccttcgggaactaaatcccctttccagctataaagcgaagccaaacgaatacctgctgcttgtgcaagttttgtttttgaaccgaaatacaaaagagcgtcagttttaagcatttaaaacacctttattgttagtcataactaacaagatagatgttaacaaaaacatagtcaatacgatttagcattagctaactatggaaacaaaaaatttaactatcggcgaacgcatcaggtatcgtcggaaaaacctcaaacacacccaaaggtctcttgctaaagccctgaaaatctcccatgtgtctgtatcacaatgggaacggggtgatagtgaacctacagggaagaacctttttgccctcagtaaagtattgcaatgctcaccaacatggattctatttggcgatgaagacaagcaaccaacaccacctgttgagaagccagttgccttatcccccaaagaactagagctccttgagctgtttaatgcactgccagaatcagaacaggatacccagctcgccgaaatgcgagctcgagtaaaaaacttcaataaactctttgaagaattactaaaagcccgtcagcggacaaataaaagataacatcatcaatgagttatcttttaccacatcaattatgttagctatagcatacaaaatcacttgaccgatatgttagtcatggctaatcttgtttgcatcaacacaccgcacggtgttctcagcaaacagttccgctaccccagcgttaaggggaaatgaggtcagcatggatactatcgatcttggcaacaacgaatctctggtgtacggcgtgtttccaaaccaggacggcacgttcaccgcaatgacgtataccaaaagcaaaacgtttaaaaccgaaaatggtgcccgtcgctggctggaaagaaactcaggtgagtgatatggatttcgacacaatcatggaaaaggcttacgaagaatacttcgaaggccttgccgaaggcgaagaagctctcagcttcagtgagtttaaacaggcgctttccagttcggcaaaatctaacggctgataagcgaaacagcaccgcgaggaatcagtatgcagaaacgagaacccgtcatcatcgcgccagactataccgatgatgaactttatgagtggatgcgccagaaaattaatgcagcgcaggatctgaaatgggctaatgaagccagggctaagcaggctgaaaatctgtccgctctggagcaggatatcaccaatctggaaaaagcagcggcattaagcattgccagaatgattacatacccgcgttagtagctaatcaacaaagctaaggttagtaattaaggagttctccacgggtgaggtggagtgcgtgcgccggacacgggtgcgcatccggaactgacagtttactgaaaggatatttccctgaaaagtcagaccataacgcgaaagcgcatggcgaggtagctggttcatagatagcctgtcgttaaattttcgtcgaccgtgcgcttccggttgtggcaacccgcgaaatggcgcggcggtaagtatggcggggttattccttccccgttgaggacaccgggttgtcaggttgaccatacgcttaagtgacaaccccgctgcaacgccctctgttatcaattttctggtgacgtttggcggtatcagttttactccgtgactgctctgccgccctttttaaagtgaattttgtgatgtggtgaatgcggctgagcgcacgcggaacagttaaaaccaaaaacagtgttatgggtggattctctgtatccggcgttaattgttaactggttaacgtcacctggaggcaccaggcactgcatcacaaaattcattgttgaggacgcgataatgaaaacgttattaccaaacgttaatacgtctgaaggttgttttgaaattggtgtcactatcagtaacccagtatttactgaagatgccattaacaagagaaaacaagaacgggagctattaaataaaatatgcattgtttcaatgctggctcgtttacgtctgatgccaaaaggatgtgcacaatgaattcagcatttgtgcttgttctgacagtttttcttgtttccggagagccagttgatattgcagtcagtgttcacaggacaatgcaggagtgtatgactgcagcaaccgaacagaaaattcccggtaactgttacccggtcgataaagttattcaccaggataatatcgaaatcccggcaggtctttaaaacagttccgtaataaatatccggtttcattcttatatgccagcaatggcagggatttgttcatccttaaatctgtcatgaggttaaaacaaatgagtaaagtctttatttgcgccgctattcctgacgaactggcaacaagggaagaaggcgctgtggctgtagccacagccattgaagctggcgacgaacgccgtgctcgagcaaaatttcactggcaattcctggaacattatccggctgctcaggactgcgcttataaatttattgtctgcgaggataaacctggcataccccgccctgccctcgattcatgggatgctgaatatatgcaggaaaaccgctgggatgaggagtctgcttcttttgtcccggttgagactgaatccgatccgatgaacgtcacttttgacaagctggcccctgaagtacagaacgctgtcatggttaagttcgacacatgtgaaaacatcaccgttgatatggttattagcgcacaggaattgttgcaggaagacatggcaacattcgacggacatatcgttgaagcgttgatgaaaatgccagaagttaacgccatgtatccggagcttaagttgcacgccattgggtgggttaagcataaatgtattcctggtgctaaatggcccgaaattcaggcagagatgcgcatctggaaaaaacgtcgcgaaggtgaacgcaaggaaaccggaaaatacacgtctgttgttgatctcgcccgcgccagagccaatcaacagtacactgaaaattcaacaggaaaaatcagcccggtcattgctgccattcatcgcgaatacaagcagacatggaaaacactggatgacgaactggcctatgggcgctgcttcgcagacaggcagaacttgatggtatgcctgcgatcaatgccaaacgtgtttaccggatcatgcgccagaatgcgctgttgcttgagcgaaaacctgctgtaccgccatcgaaacgggcacatacaggcagagtggccgtgaaagaaagcaatcagcgatggtgctctgacgggttcgagttctgctgtgataacggagagagactgcgtgtcacgttcgcgctggactgctgtgatcgtgaggcactgcactgggcggtcactaccggcggcttcaacagtgaaacagtacaggacgtcatgctgggagcggtggaacgccgcttcggcaacgatcttccgtcgtctccagtggagtggctgacggataatggttcatgctaccgggctaatgaaacacgccagttcgcccggatgttgggacttgaaccgaagaacacggcggtgcggagtccggagagtaacggaatagcagagagcttcgtgaaaacgataaagcgtgactacatcagtatcatgcccaaaccagacgggttaacggcagcaaagaaccttgcagaggcgttcgagcattataacgaatggcatccgcatagtgcgctgggttatcgctcgccacgggaatatctgcggcagcgggcttgtaatgggttaagtgataacagatgtctggaaatataggggcaaatccacaggtgaactacgctcctctgtttgttacgcaataaaaactggtgttttcgactatgcaaaacagtttccctcctcacgcaatctggaaaaatttggtgaggcccgacaagatttaaccataaaagaactggctgaaaaatttctggcactgaaagaaactgaagtcgccaaaacatcactcaacacataccgtgccgtcatcaaaaatatcctgagcataatcggtgaaaaaaatcttgcctcatcgattaataaagaaaaattactggaggttcgtaaagagttactgactggataccagatccccaaaagtaactatattgttacacaaccagggagatcggctgtaactgtaaataattacatgacaaatcttaacgccgtgttccagtttggtgttgataacggttacctggcagataatccgtttaaggggatctcgccattaaaggaatcaagaaccattccggatcctctttcgcgggaagaatttatccgtcttatcgatgcgtgcagaaatcagcaagcaaaaaatttatggtgtgtttctgtttatactggagttcgccctggtgagctgtgtgcacttggatgggaggacatagatctgaaaaatggaacaatgatgatcaggagaaatttagcaaaagaccgtttcacggtaccaaaaacacaggcgggaaccaatcgggtcattcatcttattaagccagcaatcgacgctctccggagtcagatgacattaacgagactgagcaaagagcatatcattgatgttcacttcagagagtatggcagaacagaaaaacaaaaatgcacctttgtttttcaacctgaagtgtcagcgagagtaaaaaattatggtgaccattttaccgttgactcaataaggcagatgtgggacgcagcgataaaacgtgccggactccgccatcgaaaatcatatcagtcgagacatacttatgcctgctggtcgctgacagctggtgctaacccggcatttatagcaaaccagatgggccatgcagatgcgcaaatggtatttcaggtatacggaaaatggatgtctgaaaacaataatgcacaggtagctttgttaaatacacagttaagcgagtttgccccaaccatgccccataacgaagcaatgaaaaattaatttaatatttatcaaatagttaacacgcatgactcttgaaatccataaattcaagcgcagtgcccagccatcccgatactgctgctttcaccaaatccttagtgcttctttcgtgtttttctattgtcataatggttatctctaaaaaagaggtaagatgcgtactacttactcgccgttattggtattattcagaaaaagtgagtaagactttgcagcaatgtttttgatcctgttcaaataaactaatggcatcagcaacatgctggaaatcaaacgtatgggtaattaatttttctggtttaattaaccctttacttaaccagtcgataacgatcgggaatttatttgcatttaagcgtgaagagaaaatagagagttcttttccggtaattccttgctgaatcacttcagacggttcactggagaaccccatcaatacaatacgtgccgctggagaagccagcgttacggcctctttcaggatagaaggatgacaagccgcatcgataattaatgtcggcttgatgcctttttcagtgaaaatctcgccaagcggtgtctggctgttattaatcgcccagtcagccccgctctctttcgctttttccagtcgttcatcaatgcgatcggcaacaatcacatttttaacgttatagacgccttttaatacctgaacgatcgtcaggccgattggaccggcaccataaaccagaacggtatcattttcagtcggttgaccatgtccggttacgttagccgcaatggtaaaaggttcgatcattaccgcatattgatcggccactgcttcaggaattttccacgcattttttgccggaaccacggcatattcactgaaaccaccgtcagcgtgcacacctaatacagccagtgtcgtacaaacgttcggtttacctatagagcacggatagcaatgcccacagctgaccaccggatcgacagcaacacgttcaccgactctggcgctttccacgccttcacccactgcatcaatgacgccaaagaattcatgaccaatgacgcgcggatatttcgcaaaaggattatgcccacgataaatatggctatctgaaccacaaattccggcaagtttcacttttactcgtacttcacccgctgacggggtgggtatttcacgttcgacaatcgccagttgattcggtttttcaattaatatgcttttcattatcttactccttaccagttccacagcgtgccatcttccagacgtgcgactggtagataagcaggttcatagggatatttcgccgccagcttttcatcgaattcgataccaagacccggtttgtctcccggatgcatatagccgttatcgaaagtccagttgtgcgggaagacttcgagcatttgttcggaataacccatgtattcctggacaccgaaattggggacccacagatcaaagtgcagcgccgcagccatgcagactggtgacaaatcggaaggaccgtgtgagccagtacgtacctgatacagcgaagcaaaatcggcaatccggcgcataccggtaattccgcctgcatgggtcagcgtggtgcggatataatcgatgagttgctcttcaatcagttgtttgcagtcccagatgctgttgaagacttcacccactgcgatgggtgtgacggtatgttggcgaatgagacggaagcattcctggttttccgcaggcgtcgggtcttccatccagaacatgcgataatcttcaatgcttttaccaaagcgcgccgcttcaataggcgttaagcgatggtgcatgtcatgcagcaaatgttcattaaaaccaaacttgttacgtaccgcgtcaaacaatttcggcatgaaatcgaggtatttctccgtcgaccacagctgttcttccggccactgtcctttggttgcgggttcataagccagacctttacctttcgacatgccgtaggtggttttcataccagggattccgcactgcacgcggatggctttgaatccaagctcttgatgacgggcataatcatccagagcttcatcaatactgtgaccggtggtatggcaataaaccatcaccccttcacgagacgcgccgccgagtaactggtaaagcggcatgttggcagctttggctttaatatcccacagcgccatatcaaccgctgaaatggccgacatcgtaaccggaccgcgacgccagtaagcacctttatagaaaaactgccagatatcttcgatacggtgcgcatcgcgaccaataagctgcggacaaaggtgatcctgcaaataagaggccacggaaagctcacgtccattgagggtggcatccccaaggcccgtaataccgtcctcagtggtgatttttaatgtgacgaaattacgccccggacaggtaacaaaaacttcagcctttacgatcttcatgttcgattccttgcatcgcttgtcgtgatgcatgaaatctacgcaactgagctactaccatacaagtataaagatcgaaaaaagccggagtgatcacaaaaaaaggcgtatatttgcgctgtgaatggttgacaaaagatgaaatagaataccttttgtcagctgacacttcctcttatcttattgataaaatggatttatgttcctacgtgcgcccccagcccgcaacaatgatcaacatgccgcaaagcgcaatcaacgcacccgtccagtcataaagagtcagtttcacgccatccacaacgcgcagccacatcaacgccgtgcagacataaacgccaccataagccgcgtaaacacgcccactcgccgctggatgcaacgttaacaaccagacaaacagcgccagtgaaatccccgccggaagcaacagccagatactggcgtttcgttttaaccacaaccagggcagaaagcatccaataatttcacacagcgcagtagcaaaaaatagtaacgttgttttaatcatctttgtctcttattgacatcatgtatagttatagggcgacataatatcatcaatataaacaccctcctggtacgttttgcgtccgcagtggatggtgtagaatcacctttaatcattcatacagggaatgaattatgaaaatcactctcagcaaacgaatcggcctgctcgctattctgctgccttgcgcactggcattgagcacaactgttcatgccgaaactaacaaactggtgattgagtctggcgacagtgcacaaagccgccagcacgccgctatggaaaaagagcaatggaatgacacgcgcaatctgcgccagaaagtgaataaacgcactgaaaaagagtgggataaagccgacgccgcttttgataaccgcgataaatgtgagcaaagcgccaacatcaatgcctactgggagcccaatactttgcgctgcctggaccgtcgaactggccgcgttattaccccctaacctgttattgatttaaggaatgtaaggacacgttatgccaagcgcccacagtgttaagctacgcccgctggagcgtgaagatttacgctatgtacatcaactcgacaataacgccagtgtgatgcgttactggtttgaggaaccctacgaagcctttgttgaactctctgatctgtatgataagcatattcacgatcagagcgaacggcgctttgtggtggaatgtgacggcgaaaaagccggtctggtggagctggtggaaattaaccatgttcatcgccgcgcagaatttcagataattatctccccggagtatcaggggaaaggtctggcaacccgtgccgccaaattagcaatggactatggctttaccgttctcaatctctataagctgtatctgatcgttgataaagagaatgaaaaagcgattcacatttaccgcaagcttggcttttcggttgaaggtgaattgatgcacgagttctttattaatggtcaatatcgtaatgccattcgcatgtgtatattccagcatcagtatctggcagagcacaaaacaccgggtcagactctcctgaagccgaccgcacaatagcattaataataatcgatcgtatttttgatggtgtaaacccgttcgacggcgggttttactccttcatcaacaatgattagctgacagtccaccggattagcgtgactgtcatattcacagctctgttttacattaccaacccgttgattattcagtaaagtaaccgctgtgtaatctaattttttgatcggatccgttgatggcgtggcgctgacagataatgttttgtcgttacttttcgtggttttacccagcggataaccctgatcatcatagcgatattccatctgcatttgtttgctgctggctttaatcacgaagccattatcatcggtttcccaactcaccccggcagaaggtaattctgctagctggcattttccctgtaaacgtactctcttctccagcgtctcggcatcacggtaataattggcgtccagtaccagagcgaccacggtattattttccagatccagtaattcgagtgaatcaaaacagccttcttccgacaaagtcccagaaacacgtttcgtcacttcaccttgctcatccattaatgtctgagtgaaatcttttaccggaccacgcagcggatcaaaatcgaattcattagagaaactggccatctcaggggtaaatgaaagtgttacctctgtgcggtcacatcctgtgaggaatatcgcgagtaagcatggtagtaatttgtatttcacaacagtcaccagagagtagagatgattctcaatcatagtagcaaatacagtactttacacgttaaatgctatgcttaaagaagttatcttcgcgtaaggagcttatgatgaaactctcaacctgctgtgccgcgcttctgctcgccctcgcctcacccgcggtactcgccgcgccgggatcctgtgagcgcatacagagcgatatatcacagcgcattatcaataatggcgtacccgaaagcagcttcacgttaagtattgtacccaatgaccaggttgatcagcctgattcccaggtcgtcggccattgcgctaatgatacgcataaaattctctatacccgcaccaccagcggtaacgtctctgctcccgcgcagtctagccaggatggcgcgcctgccgaaccgcagtaacacattatcgactgaacgccggatatgacaaatccggcgatttgaacatacaacataatcccaccttattactcatacccttctattgatatggattaataattcttaacccaaaatgggtagactccctctattgttagcgcgctaaatattcaatatataaacttttatataacgataaagaacagggagtgagttatgtccaaaaatgaacgaatggtgggcatcagccgcagaacactcgttaaatctaccgcgataggttctctggcgctggctgcaggcggtttttctttgccgtttaccctgcgcaatgcagcagcagcggtacaacaggcccgcgaaaaagtggtctggggtgcctgttccgtcaactgtggtagccgctgtgcacttcgtctacatgttaaagataatgaagtgacctgggtggaaactgacaataccggcagcgatgagtacggcaaccatcaggtacgcgcctgtttgcgcggtcgctccatccgccggcgtattaatcatcccgatcgcttgaattacccaatgaaacgcgtgggcaaacgcggcgaaggcaaattcgaacggattagctgggatgaagccctggatactatcgccagtagcctgaagaaaaccgtcgaacaatatggcaatgaggctgtatatattcagtactcttcggggatcgttggcggcaatatgacccgctcttcgccatcagcctcggcggtcaaacgcctgatgaactgctacggcggttcactcaaccagtatggctcctacagcactgcgcaaatttcctgtgccatgccctacacctacggcagtaatgatggcaacagcaccacggatattgaaaacagcaagctggtcgtgatgtttggtaacaacccggcagaaacccgcatgagcggtggtggcatcacttatcttcttgaaaaagcgcgcgagaaatcgaacgccaaaatgattgttatcgatccgcgatataccgatacggctgccggtcgtgaagacgaatggctccctattcgcccgggcaccgatgccgcgctggttgcgggtattgcctgggtattgattaacgaaaatctcgttgatcaaccttttctcgataaatactgcgtcggctatgacgaaaaaaccttacccgcagatgcacccaaaaatggtcactataaagcctatattcttggtgaaggtgacgataaaacagcgaaaacgccgcagtgggcttcgcaaattaccggtatcccggaggaccgtatcatcaaactggcgcgtgaaattggcacagcaaaacccgcttatatctgccagggctgggggccacaacgccaggcaaacggcgaactgactgcacgcgctattgctatgttacctattttgacgggcaatgtcggcatcagcggcggaaatagtggcgcgcgtgaatcgacctataccattaccatagaacgcctgccggtgctggataatccggtcaaaacgtcaatctcctgcttcagctggacagatgctatcgatcatggtccgcaaatgacggcaatccgcgacggcgtccgcggcaaagataaactggatgtgcccattaagttcatctggaactacgcgggaaataccctcgttaatcagcattctgacatcaacaaaacgcatgaaattctgcaggacgaatcgaaatgcgaaatgattgtggtcatcgaaaactttatgacctcatcggcaaaatatgccgacattctgctgccagacctgatgaccgttgagcaggaagatattattcctaacgactacgccggtaacatgggatatctcattttcctccagcctgtcaccagcgaaaaattcgaacgcaaaccgatttactggatcctgagtgaagtcgcgaaacgtcttggacctgacgtctatcaaaagttcacagaaggtcgcacgcaggaacaatggttacaacatctgtacgccaaaatgcttgccaaagatccggcgttaccgtcttacgacgaactgaaaaaaatgggtatctataagcgtaaagatcccaatggccattttgtcgcctacaaagcatttcgtgacgaccccgaggcaaatccacttaaaacgccttccggtaagattgaaatttattccagcaggctggcggaaattgcccgtacctgggaactggaaaaagatgaagtgataagcccattgccagtttatgcctcaacctttgaaggctggaactcccctgaacgtagaaccttcccactgcaactgtttggtttccattacaaatcccgtactcactcgacctacggcaatattgatctcctgaaggctgcctgccgtcaggaggtgtggatcaaccctatagatgcgcagaaacgtgggattgccaacggcgatatggtgcgggtgtttaaccatcgtggcgaagttcggctaccagccaaagtaacaccacgtattctccctggagttagcgctatgggccagggagcctggcacgaggccaatatgtctggcgataaaatcgaccatggcggctgtgtgaatacgctaaccactctgcgcccttcaccactggcgaagggaaacccgcagcacactaatctggtcgagatcgaaaaaatataacccacgacaaccataaattctggcatgacattttgtttgaaaagcaataagtgagtaatgatgaaaatccataccacagaggcgctcatgaaggctgaaatcagccgtagaagtctgatgaaaacctccgcacttggcagtcttgcgctggcaagcagtgctttcactctgccattttcccaaatggtccgggcggcagaggctccggtagaagagaaagcggtctggagttcctgcaccgttaactgcgggagccgctgtctgttacgtttgcatgtgaaagatgacaccgtgtactgggtggagtctgatacgacaggtgacgacgtctacggtaatcatcaggttcgagcgtgtttacgcgggcgctctatccgccgacggatgaatcatcctgataggttgaaatatcccatgaagcgcgtcggcaagcgcggtgaaggtaaatttgaacggataagttgggacgaagccctggataccatcagtgataatcttcggcggatcctgaaagattacggcaatgaggctgtacatgtcctgtacggaacaggcgtagatggcggaaacatcaccaactcaaacgtcccgtaccgtctgatgaactcttgcggtggttttctcagtcgctatggcagctacagtaccgcacagatcagtgccgcaatgagttatatgttcggtgccaatgatggcaacagcccggatgatatcgccaatacgaaactggtcgttatgttcggaaataacccggcagaaacgcggatgagcggcggtggtgtcacttactacgtcgagcaagcccgcgaacgttcaaacgcacgcatgatcgtcatcgatccacgttataacgacactgctgccgggcgtgaagatgaatggctgcccattcgccctggcaccgatggcgcactggcctgtgcgattgcctgggtactgattactgaaaacatggtcgatcagccatttctcgacaaatattgtgttggttacgatgaaaaaacgctgcccgccaacgcaccacgtaacgcgcattataaagcctatattctgggcgaagggcctgacggcatagctaaaacgccggaatgggcagcaaaaatcaccagcatcccggcagaaaaaattatccagttggcacgagagatcggttcagcaaaacctgcttatatttgtcagggttgggggccacaacgacattccaacggcgagcaaacatcccgcgctattgccatgctttccgttctcaccggcaacgtcggcataaacggcggcaactcaggcgtacgcgaaggtagctgggatctgggggtagaatggttcccgatgctcgagaatcctgttaaaacgcagatttccgtctttacatggacagatgccatcgaccatggtacggaaatgaccgcgacccgtgatggtgttcgtggaaaagaaaaactggatgtccccatcaagtttttatggtgctacgccagtaacacattgatcaatcaacatggcgacatcaatcacacccatgaggtgcttcaggatgacagcaagtgcgagatgattgttggcattgaccacttcatgacggcctcggctaagtattgcgatatcctgttgcccgacctgatgccaacagagcaagaagaccttatctctcatgaatctgcagggaatatgggctatgtgatcctcgcccaacccgcaacctcagcaaaatttgaacgcaaacccatctactggatgctgagtgaagtcgccaaacgcttaggaccagacgtttatcaaacctttactgaaggtcgcagtcagcatgaatggatcaaatatctccatgcgaaaacgaaggaacgtaaccctgagatgcccgactacgaggagatgaaaacgaccgggatctttaagaaaaaatgcccggaagaacactacgtcgctttccgcgcattccgtgaagatccacaggcaaacccgttgaaaacaccttcggggaaaatcgaaatttattctgaacgactggcgaagattgcagatacctgggaattgaaaaaagatgaaattattcatccccttcctgcgtataccccaggttttgatggctgggacgatcccctgcggaaaacctatccactgcagttaacgggcttccattacaaagcgcgtacccactccagctacggcaatattgatgtgttacagcaggcctgcccacaagaggtgtggatcaaccccattgatgctcaggcacgcggtatccgtcatggcgataccgtgcgggtatttaacaataatggagaaatgctgattgccgcaaaagtgactccgcgtattctgcctggcgttaccgccatcgggcaaggtgcgtggcttaaagcggatatgtttggtgaccgggtcgatcacggcggcagtatcaatattctgacctctcaccgcccttcaccgctggcaaagggaaacccgtcgcacagcaatcttgtccagatcgaaaaggtttaaggagtagcccatgaccacacaatatggattttttatcgattccagccgctgtactggctgtaaaacctgcgaactggcgtgcaaagattttaaagatcttggcccggaagtcagtttccgccgtatttatgaatacgctggcggcgactggcaggaagataatggcgtctggcaccagaacgtgttcgcttattatctctccatctcctgtaaccattgcgatgaccccgcatgtacaaaagtctgccccagcggcgcaatgcataagcgtgaagatggctttgtggtggttgatgaagatgtttgtatcggctgccgctactgccacatggcttgtccgtacggcgcgccacagtacaatgctgaaaaagggcacatgacgaagtgcgatggttgttattcgcgcgtcgccgaggggaaacaacccatatgtgtcgaatcctgcccgctgcgtgcacttgagttcggtccaattgaagagctgcgccagaagcacggcactcttgctgccgtcgcgccactgccgcgcgcgcatttcacaaaacccaatatcgttatcaaacctaacgccaacagccgcccgaccggcgataccactggttatctggctaatccggaggaagtgtaaaatgggaaatggatggcatgagtggccactggttatctttaccgtattgggtcaatgcgtagtaggcgcgctgattgttagcggaattggctggttcgccgccaaaaatgacgcagaccgtcagcgtattgtccgtggcatgtttttcctctggctgttgatgggcgtcgggtttattgcctctgtcatgcacctgggatcgccactgcgggcgtttaactccctgaatcgaatcggagcttctggtctgagtaacgagattgctgccggttccatattttttgccgttggcggattatggtggctggtggcagtcatcggtaaaatgccgcaagcgttggggaaactctggttacttttcagcatggcgctcggcgtcattttcgtctggatgatgacctgcgtgtatcaaatcgacaccgtgccaacctggcataacggttacactacgctggctttcttcctgacggtattgttgagcggtccaatacttgctgccgcaattctgcgggcagctcgcgttacatttaataccacaccatttgccatcattagcgttctggcgctgatcgcttgtgccggggtgattgtgctgcaaggtttgtctctggcgtctattcactcatccgtgcaacaagccagcgcactggtaccagattacgcctccttacaggtctggcgtgtggtattgttatgcgcaggtcttggatgctggctttgcccgctcattcgtcgccgtgaacctcacgttgccggacttattctggggctaatcctcatacttggcggtgagatgatcgggcgtgtgctcttttatggcctgcacatgacagtaggaatggctattgcaggttaacaaattggtgcggggcaacccgcacatttcaggatgttaggaatgacccatttttcacagcaagataatttttctgtcgcggcgcgcgtgttgggcgcgctgttttattacgctccagagagtgcggaagccgcacctctggttgcggtactcaccagtgacggctgggaaactcagtggcctctaccagaagcgtcattagcgccgctggtgacggcttttcagacacagtgtgaagagactcacgcccaggcctggcagcgtttgtttgtcggcccgtgggcactgccgtctccgccgtgggggtcggtctggctggatcgcgaatctgtgctgtttggcgattcaacattggcacttcgtcagtggatgcgcgagaaaggcattcagtttgaaatgaagcaaaacgaaccggaagatcattttggttcactgctgttgatggctgcgtggttggcggagaatggtcgccagacagaatgcgaagaattgctggcatggcacctttttccgtggtcaacacgttttcttgatgtttttatcgaaaaagcagaacaccctttctaccgtgcactgggtgaactggctcgcttaacgctggcgcaatggcaatcacaactgttaattcctgtcgcggttaaaccgctgtttcgataggatcaccgtaatattgccggatggtgacgattacgcgcaatccggcaataataggttacagtgtcacgtttttttatctcttaaagcacgcactgcttttgcggctggcctcttttgccgcaaaatagtcgcccgtgtttcattgcccatttctgctcatgcatcatctacacatctatccggatctgcgcactatgttccaccgtctgcttatcgcaacagtcgtcggtattctcgcggcctttgccgttgccgggtttcgtcatgcgatgctgctactggagtggttgttcctcaataatgactccggcagtctggtcaatgcagcgacaaacctttccccctggcgacggttgctaactccggcgctcggcggactggcggcgggtttgttgctgatgggctggcagaaatttacccaacaacgccctcatgcgccgaccgattatatggaagcgttgcaaaccgatggacagttcgattacgcagcaagcctggttaaatcgcttgcctctctgctggtagtaaccagcggcagtgcaattggtcgcgaaggtgcgatgattcttttagctgcccttgccgcctcctgttttgcccaacgttttacgccacgccaggagtggaaattatggatcgcctgtggggccgcggcgggaatggctgcggcctatcgtgccccgcttgctggcagtttatttatagccgaagtgctgtttggcactatgatgttggcctctctcggcccggtgattatttccgccgtcgtggcattgctggttagcaatctgattaatcatagcgacgcgttactctacaacgtacaactctcagtgacggttcaggctcgtgactatgcgctgattatcagtacaggtgtgctggcaggtctgtgcggaccactgttgttaacgttaatgaacgcctgtcatcgtggatttgtgagtctcaaacttgcgccgccctggcaactggcactaggcgggttgatcgtgggtctgctttccctgttcacacctgcagtgtggggcaacggctatagcaccgtacaatcctttttaaccgccccaccactgttaatgatcattgccgggatcttcctttgtaaactgtgtgccgtgctggcgagtagcggttccggcgcacccggtggggtctttacaccgacgctatttatcggtcttgccattggcatgttgtatggtcgtagcctgggattatggttccctgatggcgaagaaattacacttttactcggattgaccgggatggcgacactgttggcggcgaccacgcacgcgccgattatgtcgacgttgatgatatgtgaaatgaccggggagtatcagctactccccggtttattgattgcctgcgtaattgcgtcggtaatttcgcggacgttacaccgtgactctatctaccgccagcacactgcgcagcatagctaagcggatgtattgccccagttcacgctgttcggcgcgcggcagataaggcagttcaccaatgagcggtgccggaagttttttacccagcacatcaatgatttccgcataatgcgccagtcctgggttgattcggttagccacccagccaatgagcggcagcccgtcgttggcgatcgcctgagctgttagcagtgcatggttaatgcaaccttcctgaataccgacaaccatcaacaccggcagttgttcctgcactacccattcagagagtggacgcaaatcattcatcagactgcgccagccgccagtcccttctaccacgacatgatcgactttttcggtcaggtttgccaggccgtttgaaatgagggtgtaattgattgggcaactgtgcgccacgctactttcttcttcgcttaacgcgataggattaactgcttcataaggcagttcgatggttgaaacactctgcaacaccagggcatctttattacgcagcccttcgggtgtctctttgctccccttcgctacgggtttatatcccgcaaccgtttttccctgggaggctaacgcttgtagcaatgcgcgggaaaccaccgttttccctacagaagtgtctgtaccggtaataaagaaacgcttcagcatcactaactccaccgttatgcttcacaaatataaaccaggaaaataattaaccttgaaagtctaagttatgctttcctggcccaaattgagatagcgcaaattttggtagaacagttaaaaaatgttaaccctgcaacagacgaatcaacaaagaaccgttatacatcgcgtcttttaccagtgcagcgcctgccatcgtgccctggttagaaaactgagtactctcaacgctgatgtgctgactatacgcaggaagggcctgctgacggatgctgtctgagatgaccgggaagaggatatctgccgctttacttaacggtgagccaatcagtattttttgtgggttaaataaattcaccatgatggcaagaatgcgcccgacatgcgcgcccaccccggtaatgatgtcttttgccagtagatcgccgcgcaatgccgcctgacacaatgagtccacggttaacggttgtccatgtaacatcgagctcatggattgattaagacgcagctgtgccagctcaagaatactgtccacgctggcgatggtttcgaggcagccgtgattcccgcaataacagcgtttcccatacgggtcgacctgtgtgtggcctatttccacgagactactgctgcctgcgtgtagcagatgaccatcggtaatgacgcccgcccccacgttgtgatcgataaccacctgaatcacatcgcgcgccccgcgtgaggcaccaaacaaggcctctgccatcgtccatgcgctgatatcatgctgaatataaaccggaacgccggtatgctgctccagcgcctcgccgagcggcatctcttttacatcctcgtagaacggcatgcgatgtacaataccattttccgtatcaataattcccggcaaggttatggcaatcgaagttagacgctcaagttttttctggtggcggataaaaaactgatcgatatgggaaataatacgatccagcaatggcaagtcatcttttaacgccagttcctgcgactcttccaccaccagtttgctgctcagatcgcgcagagcaaggaaaatctccccgcgactaatgcgcagagaaagatagtgccaggcttcagtttcaaccaccagccccaccgccggacggccacggttccccgcttctttgatttccagctcttgcaccaggtgtgcttcgagcatctcacggacaattttagtgatactggcaggagccagttgcgccagacgggaaagatcgatacgcgagactggaccaagctgatcaatcaggcgataaaccgcgcccgcgttggtctgctttatttgatcaatgtgcccaggctggttttcagcaaccaccgcatactccctatattttcgcgctccgaaataatctgtaggctatggtgaagcacttcaatacgtgtcgtcaaatttttacttaggcatgtgattaacagcacatttttcgggctttttcgctgaaatttccctcacctgagagcattcagcagatgaatacgaaagttacgcgcagccggactttgttcatgatgtttcggccagaccaaccacatttcagaaaccgcatcctcttcagcaatcggcacccagcgcatttcgttgagctgaacacgtttaaatgacgcaggcaaaattgaaacacccagaccggcggaaaccagaccgatgatggtcattgcctcgcccacctcctgagtgatgacgggcgtcaaatggtaacgtcgcatcagcccgagaatatcgtcatacagccctgtcccgacgtgcggatcaaaaaagacaaagggttctttcgccagttcagccagcgttacattcgggttatttgccaggggatgatcgtgcgggatcatcgccataagcggttcatggacgatgactgcgtgttcaagcgactccggtaacgctgtgttacgcagcaatcccatatccagcgttccttcaatgagcggagcgatttgctcgcgagtgttcatttcgcgggtttgtaaatggacatcaggataatcacggcgaaacagcgataacgtatcggacaccgcccgaataaaaggagccgacgaagtaaaaccaatgcgcaactcccccgcttcaccctgatgcagcctttcagcgcgagcggcagcgtcatccaccatagacaggatttgccgactatctgcaagaaactgttttcctgctgccgtcagcaatacactgcgattggttcgtgccagcagtcgggcaccaatttgttgctccagcgcctgaatctgctgacttagcggcggttgcgaaatattcaggcgggcagcggcgcgcccgaaatgcagctcttccgcaacagcaacaaagtaacgcagatgacgaagttcaatattcatatttaaaacatcttatttgagattattaatatattagacagaacaattcgattttcctaccctatgtataagcctgatctacaggcatatttagcaaggatttcaagtgagccgtactacaactgttgatggcgctccggcaagcgacactgacaagcaaagcatttctcagccaaatcaatttattaaacgcggtacgccgcaatttatgcgcgtcaccctggcgctgttctctgccggactggcaacatttgcacttctctattgtgtgcagcctatccttccggtgctttcgcaggagtttggcttaacccccgcgaacagtagtatttcactgtccatttccacggcgatgttggctattggtttgctgtttactggcccgctatccgatgccattggtcgcaaaccagtgatggtcacggcgctactgttggcctccatttgtacgttactttcgacaatgatgaccagctggcacggcattttgattatgcgcgccttgattgggctttcgttaagtggcgtggcagctgttggcatgacttatcttagcgaggaaatccatcccagtttcgtggccttttcaatggggttgtatatcagcggcaactcaattggcggcatgagcggacgcttaattagcggtgtcttcacggactttttcaactggcgaattgctctggcggcaatcggttgtttcgcgctggcctcggcgttgatgttctggaaaatcctccctgaatcacgccattttcgcccgacttcgctgcgccctaagacgttgtttatcaactttcgtctgcactggcgtgaccggggattaccgttattgttcgcagaaggctttttgctgatggggtcgttcgtcacgctgtttaattacatcggctatcggttgatgctctccccctggcatgtcagtcaggccgtggttggcttattatcgctggcttatttgaccggtacatggagctcacccaaagccggaaccatgaccacccgctatgggcgtggtccagtgatgttgttttcgacgggggttatgctgtttggtttactgatgaccttattcagctcgctgtggctgatctttgccggaatgttactcttctcagcaggattcttcgcagcccactcagtagccagcagctggatcggcccccgcgcaaaacgcgctaaaggccaggcctcctcgctgtatctgttcagttactatctggggtcgagtattgccgggacgctgggtggtgttttctggcataactatggctggaacggcgtcggcgcatttattgctctgatgctggtcattgctctgctggtcgggacgcgtttgcatcgtcgtctgcacgcctgaaaaataagtccggactgcggtaaatacccgtccggacttattgccagctcaaaccaacgttaatagccatcctaaaatagacgaagcgccagccaattcccgcagcgcgtctagcgtcatcaggattataagtacccaaataaacggattcattttgctgtgtgtcatttattactgatgcgcagttattctactgctttgtaagtagtaaaatagttaacccgatcaagactactattattggtagctaaatttcccttaagtcacaatacgttattatcaacgctgtaatttattcagcgtttgtacatatcgttacacgctgaaaccaaccactcacggaagtctgccattcccagggatatagttatttcaacggccccgcagtggggttaaatgaaaaaacaaattgagggtatgacaatgaaaaaagtattagctctggttgttgccgctgctatgggtctgtcttctgccgcctttgctgcagagactacgaccacacctgctccgactgcgacgaccaccaaagcagcgccggcgaaaactacacatcataaaaaacagcataaagcagcacctgcccagaaagcgcaggcggctaaaaagcatcataaaaatacgaaagctgaacagaaagcccctgaacaaaaagcgcaggcagcgaagaaacacgccaagaaacacagccatcagcaaccggcaaaacctgctgcacaacccgcagcgtaagttttcaacagtaatgctggcgcgccccctcgcgcctgaaaattacggtgctaagcgggtaacgtttagcaccgcctttagcggagggtagtatggtgggccgttatcgctttgagttcattctgatcatccttattttatgcgcactgattaccgcccgtttttatctttcctgattgtagttatctgattttactcccactttcatcccgtcccgtctatagtatttatgagggtttgcttttaataatcataattacccaccagagtgtgatatgcgtacaaccattgctgtagtgttgggtgcaattagtttgacgtctgcttttgtgtttgcagataaaccagacgttgccagatcggcaaacgatgaggtcagcaccctgttttttggtcatgatgatcgtgtgccagtgaatgacacgacccaatcaccgtgggatgcggttgggcaactggaaacggccagcggcaatttatgtacggcgacgctgattgcacccaatctggcattaacggcaggacactgtttattgacacctccaaagggtaaagccgataaagcagtggcgctgcgttttgtgtcaaataaaggtctttggcgctatgagatccacgacatagaaggccgcgttgatccgacactgggaaagcggttaaaagcagatggggatggttggattgtacctcccgcagccgcgccgtgggacttcggattgattgtgctacgtaatcccccttctggcattacgccgttgccgttatttgagggagataaagccgcgcttaccgccgcattaaaagcggcaggtcgtaaagtgactcaggcaggctaccctgaagatcatctcgatacgttgtacagtcatcaaaactgtgaagtgactggctgggcgcaaacgtcggtgatgtcacatcagtgcgataccttgccgggtgacagcggttcgcctctgatgttgcataccgatgacggctggcaattaattggggtgcaaagttcggctcctgccgcgaaagatcgctggcgcgccgataaccgggccatttctgttaccggttttcgcgacaagctggatcaactgtcgcaaaaataatgttcaaacgctgcccgacagcgcgggcagcgtcttcatcaggcaagtttcaccatgatcattccagccaacagcaagaccaggccaatccagcctttacgatttaaccgttgaccaaacaagatccaacctgcggctaacgtggcggcaataccaaacccgccccacaatgcataagcgacagacaagtcgatccctttaacggcttgagaaagcgcactaaaggcagccagcaccgccgccagggagagcaagccaaatattttgcgacgaaagccgtcagaaaatttcaaaaagacgttagcaacgatttccagcacgattgccaatgccagccaggcggcgtgaacccattcaaactgcgccatggttcacctccagttcaggtttacgcgctttacgggtacctgattttatcaacacaatcccggcgaccagggtggttaacccggcaattttcatcagcgataaactttcgtcgaataacaaaacgctaaacaaggtaataaataaaataccgataccttcccacagcgcataagctacgcctaaggcgatttttttaacggcgaaagagagaaatatatacgacagagaaatcatcaccagcattaaaataaagccgccatttccctcactgacgctcgcccatttcattgacagcgtaccggtaatttctgtagcaatagccagacctaataaaatccaataaatatacattgtccttctcctgcaagagaattattttaattttcgcttaattcagcgaaaccaaagtaaagtggtcaagccccgcgcatagcgcaagctttggcagaagaaaggactaaagcgcgttgcgccagtgctgctcacctacgagcaagatagtggatgaggtacgaagatgggtaaatgtagaaaataacgtcctgaacaaattgtccataatattacaattatccgcagtgttgcttctcgtcatcgcggatgataattgtcctcggtagttgaacacgcctgatttgtatcatagcttaagaattaactcaaaatattttcacttctttacctgagcggtttgattttcgttatgatgacggagcgaaaaagacattattattagcaaaggaagaaaaaacggggacaagcatggcaaagccgatcatcacgctcaatggcctaaaaatcgtcattatgttgggaatgctggtcattattctctgcggtatccgttttgccgccgagatcatcgtgccgtttattctcgcattatttattgctgttattcttaacccgctggtgcaacacatggtccgctggcgtgtgccgcgtgtactggcggtgtcgattttgatgaccatcatcgtgatggcgatggtgttgctattagcttatctgggttccgcgctcaacgagttgacgcggacgttaccgcaatatcgcaactctattatgacgccgctgcaagcgcttgaaccgttgttgcaacgcgtagggattgacgtctcagttgaccagctggcgcattatattgatccgaacgcggcgatgacgttgctcaccaacttattgacgcagttatctaatgccatgtcatcaatatttttattgctgctgacggtgctgtttatgctgctcgaagtgccacaattgcccggaaaatttcagcaaatgatggcgcgtccggttgaagggatggcggcgattcaacgtgcgattgacagtgtttctcattatctggtgctgaaaacagccatcagcatcatcaccggcctggtcgcctgggcgatgctcgccgcactcgatgttcgcttcgcttttgtctggggattgctggcctttgcgcttaattacatcccgaatattggttcagtcctcgcggcaatcccccctatcgctcaggtactggtgtttaatggcttctacgaagcgttgctggtgctggcgggatatctgctgattaatctggtcttcggcaatattctggagccgcgtatcatggggcgtgggctggggctttccacattggtggtatttttgtcgttgattttttggggatggttgttaggaccggtgggtatgctgctttccgtgccgttgacaattattgtcaaaattgcgcttgaacaaacagcgggaggtcaaagcatcgccgttctgttaagcgatctcaataaagagtgacggcctcagcagaggccgtcagggttacagagctttcaggattgcatccacgctggctttggcgtcaccaaacagcatgtgggtgttttccttgaagaacagcgggttttgcacaccagcatagccagtgttcatcgaacgtttaaagacaatcacgttctgcgctttccacacttccagcacaggcataccagcaatcggactcttcggatcatcctgcgccgccgggttaaccgtatcgttagcaccaatcaccagtacggtatcggtatcagcaaagtcatcattgatctcgtccatttccagcacgatgtcatacggtacttttgcttcagccagcaatacgttcatatgtccaggcaaacgccccgcgaccgggtggataccgaaacgcacattaataccacgagcgcgcaatttctcagtaatttcagcgacaggatattgcgcctgcgcgactgccatgccgtaccccggagtaatgatcactgaatgggagtttttcagcagttccgctgtctcttctgcggtgatttcgcggtgctcacccacttcctgatcatcgccagtagaagagccgtcggtgccgaaaccacccgcaataacgctgataaaggaacggttcatcgccttacacataatgtaagaaaggatagcccccgaagaaccgaccagcgcaccggtcacaatcagcaggtcgttgctgagcataaagcccgcagccgcagccgcccagccggagtacgagttcagcatcgacaccaccactggcatatctgcaccaccgatggaggcgactaaatgccagccgaataccagcgcaattgcggtcattatcagcaatgccagcacttgcaggccgacgctgtccgtgcgaacaaatacaatcagcagcaggaaggaaacgaccagagccgccaggttcattttgtgacggtttggcagcatcaatggtttagacgaaatcttgccacacagtttgccgaacgccaccaccgaacccgtgaacgttaccgccccgatgaagataccgaggaacacttccgtcaggtgaatattgaccagaatcggtgccattcccgcgtcatgatgcagatagctgttaaagccaaccagcactgccgccagacccacgaagctatgcaggatcgccaccagttctggcatttcggtcatttcaactttcttcgccagacggataccaattgccccaccaatgaccatcgccagcaagatccagccaacattacccgtatccggtccaaaaatggttgcgattaacgcaatcgccatcccggcgataccgaagttgttaccctggcgagacgtttcatgtttcgaaagaccggccagactgaagataaacaggatcgcggcaacaatgtatgcagctgtaactaatcctccagacatatgttaccccttaatttttgcggaacattttcagcatgcgctgagtcacggtgaagccaccgaaaatattaatgctggctataagcaccgcgataaaactaaggaagctaacccagccgccctggccaatctgcaacagtgctccgacaacaataatccctgaaatcgcgttggtgaccgacatcaacggtgtatgcagcgcgtgcgatacattccacaccacgtaataaccgacaacgcaggccagcgcgaaaacggtgaagtgcccaaggaattctttcggcgcaacgcttgccatccagccaaaaagaatgattgccagcgccatcaacgcgtatttacgccacggtgagcaggtacatttttcctcagttttcacttccggtgccgctttttgtgccgcctgcggctgagctgatacctgaatcggcggtgccggccaggtaatttcgcccgcacggatcacggtcacgccgcgaatcaccacatcatcaaaatcaacagtgatattgccgtctttctctttgcacaacagtttcagcagattaacgaggtttgtgccgtaaagctgtgaggattgcgtcggcagacggcccggaagatcggtataaccaatcactttgacaccattttccgtagtgaagatttcacccggcacggtgtattcacagttgccgccgttttgggctgccaggtcgacaatcacactgcccgccttcatggagtcaaccatttcacgggtaattagcttcggcgctggtttgcctggaataagcgcggtggtgacaatgatatcgacctcttttgcctgggcggcaaagagttccatttccgctttgatgaacgcgtccgacatcactttggcatagccatcgccgctgccagcttcctctttaaaatccagctcgaggaattccgcgcccatactttgaacttgttctttcacttccgggcgggtgtcgaatgcacgcacaatcgcgccgagactgtttgctgcgccaatggcggccagacctgcaacacccgcaccaatcaccatcacttttgccggtggcactttcccggccgcagtaatttgcccggtaaagaagcgcccaaattcatgtgccgcttcaacaatggcgcgataaccggcgatgttcgccatcgagcttagtgcgtccagcgattgtgcgcgtgagatacgcggcacagagtccatcgccatcacggtcacgttacgttccgcaagtttttgcattaattccggattctgcgcaggccagataaaactcaccagcgttgtcccaggattcagtaacgcaatttcatcatctaacggcgcattgaccttcagaatgatctctgactgccagacgctattcccttctacaatttcagcgcccgcttgcacaaacgctttatcgtcaaaacttgccagttgacccgcgccgctctctaccgcgacggtaaaacccagtttcagcagctgttccactgtttttggcgttgctgcaacacgggtttcattggttaaccgttctcttggtatgccaattcgcatgatattcccttccatcggttttattgatgatggtttgcctgtgtcaggagccacacaagctgctcatgtacgagctaaatgttactccgttaaaataaattagtaacaaacgccctataacgtactgaaaattatgcctgtgatctagcgccaaaaatcagtatttcggcgtgaactcgcaaaatattaacgattcagccgtgatagtgggataaacaccttagaacgccggataaagactgataattgtcttcgacggtcgggtaaaacgagacatcgccccggcacgaatcactacttaacattaaattaacttatacaattcagttgcttcagtagtaatgatgctgatacggctgttttttaagcatagacggtcatttgagcaggattaaaattggcttaaggaatgtgatatgaaaaatgacgcagacagttacaccgtttaaatgcaataatcagccacgtttctcgttaataacaataccagtacctggtttgcgcaaggcgaaggattatttttatgaagcttaagaacaccctcctggcgtcggcactgctttctgctatggcattctccgttaacgcagcaacagaactgacaccggagcaagcggcagcggttaaaccttttgaccgtgtagtggttaccggtcgttttaatgctattggcgaagcggtgaaagccgtttctcgtcgcgcagataaagaaggtgccgcctctttttatgttgtcgacacttctgattttggtaacagcggtaactggcgtgtggtcgctgacctctataaagccgatgctgaaaaagcagaagaaacaagtaatcgcgtaattaacggtgttgtcgaactgccgaaagatcaggctgttctgattgaaccgtttgacacggtcaccgtccagggcttctatcgtagccagccagaagtcaatgatgccatcaccaaagcggcaaaagcgaaaggtgcctactctttctacatcgttcgtcaaatcgatgccaaccagggcggcaaccagcgtattactgcattcatctataaaaaagatgctaagaaacgtatcgtccagagcccggatgtgatcccggcagattccgaagcaggacgtgcagctctggctgccggtggcgaagccgcgaagaaagttgagatcccgggtgttgcgactaccgcatcaccaagttctgaagtcggtcgcttctttgaaacccagtcatcaaaaggcgggcgttacaccgtcacgctcccggatggcactaaagtcgaagaactgaacaaagcgaccgcagcgatgatggtcccgttcgacagcatcaaattctctggcaactacggcaacatgaccgaagtctcctatcaggttgcgaaacgtgccgcgaagaaaggtgctaagtattaccacatcacccgccagtggcaggaacgtggtaataacctgaccgtcagcgcagatctgtataaataactattcagttactcctataaggcggcttgatgccgcctttcgcatttttagtcacaaatttccccgcgaccattgcatgcagacacatctcttcgtaaaatcccgcgcttcagtggcaaactccatttttatgcgttttgccctaatatttattcttcttatcacgttttaatcactggatatcgatggaaaagaaactgggactgagcgcactcaccgcgctggtattaagctcaatgctgggcgcgggtgttttcagtctgccgcaaaatatggcggcagttgccagcccggcagcactgctcatcggctggggtattactggcgctggcattttattgctggcctttgccatgctgatcctcacgcgcattcgtcccgaacttgacggcggtatctttacctatgcccgcgaagggtttggcgagctaatcggcttttgttccgcatggggatactggctgtgcgcagtcatcgccaacgtctcctatctggtgatcgttttttccgcgttaagcttttttacggacacgccggaattgcgcctgtttggcgatggtaatacctggcaatcgatagtcggtgcatcggctttattgtggattgttcactttttgatcctgcgcggggtgcaaaccgctgccagcattaacctggtggcgacactggcaaaattgttgccgctgggtctgtttgttgtgctggcgatgatgatgttcaaactggataccttcaagctcgacttcaccggacttgcacttggcgtacccgtttgggaacaggtgaaaaacaccatgctgatcaccctgtgggttttcattggtgtggaaggtgccgtggttgtttctgcgcgtgcgcgtaataaacgtgatgttggcaaagcgacactgctggcggttctctccgctctgggcgtttacttgctggtaacgctgctttcgctgggtgtggtggcacgtcctgaactggctgaaattcgtaacccgtcaatggccggtctgatggtggaaatgatgggaccatggggcgaaatcatcatcgctgccggtttgatcgtttccgtttgcggcgcgtacttaagctggaccatcatggcagcagaagtaccgttcctggccgccactcataaagcattcccgcgcatttttgcgcgccagaacgcacaagctgcgccatccgcctcactgtggttgaccaacatctgcgtgcaaatttgtctggtactcatctggctgaccggttccgattacaacacgttgctgaccatcgcctcagaaatgattctggtgccctatttcctggtcggcgcgttcttgctgaaaatcgcaacccgtccactgcataaagcggtaggtgtcggtgcctgcatttatggcttatggttattgtacgcctctggtccaatgcacttgctgttatccgttgttctgtatgcaccggggctgctggttttcctgtacgcgcgcaaaacgcatacccatgataatgtactgaaccgtcaggaaatggtgctgattggcatgctgttaattgcctcagttccggcgacctggatgctggtgggataacgttcatcccatcgttggatagcaaaggagataacgatgggtaaaacccagcccttgccaatattaattactggcggaggtcgtcgcatcggcctcgccctcgcatggcatttcattaatcaaaagcaaccggtgattgtcagctatcggacacactatccagccattgatggactgattaatgcaggtgcgcagtgtattcaggctgatttttcgaccaacgacggtgtgatggcgtttgccgatgaagtactaaaaagcacccatggtctgcgtgctattttgcataacgccagtgcgtggatggcggaaaaaccgggtgcgccactggccgacgtactggcttgcatgatgcagatccacgttaataccccatacctgctcaaccatgcgctggaaagattactgcgtgggcacggacacgccgccagcgatatcattcactttaccgattatgtggtggagcgcggtagcgacaaacatattgcgtatgctgcaagcaaagcggcactggataatatgacccgctcgtttgcccgcaagctggcaccggaagtgaaagtgaattctattgcgccatcgctgatcctgtttaatgaacatgatgatgccgaatatcgacaacaggcgctgaataaatcactgatgaaaaccgcgcctggcgagaaagaagtgatcgacctggtcgattacttacttaccagttgctttgtcaccggacgcagtttcccacttgatggcggtcgtcatctgcgttaatgcagctttatccagcatataatcaacacccatgcgcttatcccccaacacgcaacagaaccaacaaaagcggcgggcaagcgcatcattccggtgaaataccacagcgacaccaggtaaacaaaatagggaataatcgaccacatactaaaaatgatggttgcgcgtaaggcttcaatgccgcgttcgctggcaacaatataatgcgcgataagcgcaaaggtcgggaaaagtggaatcagcccggcgatataataatttttcgtttttgctaaaacaccaatcaacagcactaccagcgcaccgagcgcggctttgattaccagccccatctttttaccttaacacttccataacaagtcatcagtagaatacctgatgaaaacttgtttagaaacgattgatagtaagtaaaaacagcgcggtgtattgtgacgtttttatatctaccgtgaatgttatgaacactatcgtatttgtggaagatgatgcggaagtcggttcactgattgccgcgtacctggcaaaacatgatatgcaggttaccgtagagccgcgcggcgaccaggccgaagaaaccattttgcgagaaaatccggatttggtgttactcgacatcatgctaccaggcaaggacggcatgaccatttgtcgtgatttacgcgcaaagtggtctggaccgattgttcttctaacctctctcgatagcgatatgaaccacatcctggcactggaaatgggtgcctgcgactatattctcaaaacgacgccccctgctgttttgctagcgcgtttacgtttgcatttgcgtcagaatgagcaagccacactgaccaaaggtcttcaggaaacgtctctgactccctacaaagccctgcatttcggcacgttgaccatcgatcccatcaaccgcgtagtcaccctggctaacactgaaatctcgctctcgacagctgatttcgaattattgtgggaattagctacccatgccgggcaaatcatggaccgcgatgcattgctgaaaaatttacgcggcgtcagttatgacggactggatcgtagcgtggacgtggctatttcgcggttaagaaaaaaactgctcgataacgccgcagaaccttatcgcattaaaactgtgcgtaacaaaggctatctttttgcgcctcatgcatgggaataagcgatgaaaaaactgtttatccagttttacctgttattgtttgtctgcttccttgtgatgtctctgctggttgggctggtgtacaaatttaccgccgaacgcgcgggcaaacagtcgctggatgatttgatgaacagttcgctgtatctgatgcgcagcgaattgcgtgagatccccccacacgactggggtaaaactctgaaagagatggatttaaatctctctttcgatctgcgtgtcgagccactgagtaaataccatcttgatgatatttccatgcaccgactgcgtggcggcgaaattgtcgccctggacgatcagtacacgtttttgcagcgtatcccgcgcagccactacgtgctggcagttggtcctgttccttatctttattatctccatcagatgcgattgctggatatcgccctgatcgcttttattgctatttccctcgcctttccggtgtttatctggatgcgtccgcactggcaggatatgttaaaactggaagcagcggcgcaacgatttggcgatgggcatctcaatgaacgtatccactttgatgagggttcgagctttgaacgacttggcgtcgcatttaaccagatggcggacaatatcaacgccttaattgccagcaaaaaacagcttattgacggtatcgctcacgaactgcgaacaccgttagtgcgcctgcgttatcgactggagatgagcgataacctgagcgccgccgaatcccaggcgttgaatcgtgatatcagtcaacttgaagctttaattgaagagctgctgacttatgcccgactcgatcgcccacaaaacgagcttcatcttagcgaaccagacctgccgttgtggctgtcaacgcatctggcagatattcaggcagtaacgcccgataaaacggtacggataaaaacgctcgtgcaaggccattatgcggcgttggatatgcgcttaatggagcgcgtgctggataatttgctcaataacgccctgcggtactgccattcaacggttgaaaccagcctgctactgtcggggaatagagcgacattaattgttgaggatgatggcccagggattgccccagaaaaccgcgaacatatctttgaaccttttgttcgcctcgatcccagccgggatcgctcaaccggcggctgcgggctggggctggcaattgtccactctatagcactggcaatgggcggtacggttaattgtgacaccagcgaactgggtggtgcccgcttctcgtttagctggccgttatggcataacatcccgcaatttacctctgcctgacactacgcgcacgatggtcaagtcaccacgactgtgctataaaataagtatgttgtaactaaagtggttaatattatggcgcgttacgatctcgtagaccgactcaacactacctttcgccagatggaacaagagctggctatatttgccgctcatcttgagcaacacaagctattggttgcccgcgtgttctctttgccggaggtaaaaaaagaggatgagcataatccgcttaatcgtattgaggtaaaacaacatctcggcaacgacgcgcagtcgctggcgttgcgtcatttccgccatttatttattcaacaacagtccgaaaatcgcagcagcaaggccgctgtccgtctgcctggcgtgttgtgttaccaggtcgataacctttcgcaagcagcgttggtcagtcatattcagcacatcaataaactcaagaccacgttcgagcatatcgtcacggttgaatcagaactccccaccgcggcacgttttgaatgggtgcatcgtcatttgccggggctgatcacccttaatgcttaccgcacgctcaccgttctgcacgaccccgccactttacgctttggttgggctaataaacatatcattaagaatttacatcgtgatgaagtcctggcacagctggaaaaaagcctgaaatcaccacgcagtgtcgcaccgtggacgcgcgaggagtggcaaagaaaactggagcgagagtatcaggatatcgctgccctgccacagaacgcgaagttaaaaatcaaacgtccggtgaaggtgcagccgattgcccgcgtctggtacaaaggagatcaaaaacaagtccaacacgcctgccctacaccactgattgcactgattaatcgggataatggcgcgggcgtgccggacgttggtgagttgttaaattacgatgccgacaatgtgcagcaccgttataaacctcaggcgcagccgcttcgtttgatcattccacggctgcacctgtatgttgcagattaacgcccggctttcatactgccgaccatctgttctggccgtacccagctgtcaaactcggcttcgctaagataccccagcgcaagggccgcagcttttaaggtcagcccttctttatgcgcttttttggcgatctcggcggctttgtcataaccaatgtgggtgttaagcgcagtcaccagcatcagcgattcattgagtaattgattgattcgctcacgattcggttcaatacccactgcgcagtgtttgttaaaactttccatgccatctgccagcaagcgcaccgattgcaggaaattgtggatcaccattggacggaagacgttcagttcaaagttaccggaagcgccccccatgttgatcgccacgtcgttccccatcacctgacagcagagcatggttaatgcctcacactgtgttgggttcactttccccggcatgattgagctgcccggctcattttccgggattgagatttcaccaattccgcagcgcgggccagaggccagccagcggacatcattggcgattttcatcagtgacgcagccaaccctttcaacgcgccgtgcgcctgaaccagggcatcacaggtcgccagcgcttcaaatttgttcggcgcggtaacaaacggtgcacaggtaatgactgccagttcatctgctacgcgacgcgcatactccggatgggtatttagtccagtacccaccgctgtaccgccaagagccagttccgctacgtgaggcaggctgtattcgatatgtttgagattatgctcgagcatcgctacccagccggaaatctcctgccccagcgttaacggcgtggcatcctgcaagtgagtacgaccaattttgacgatatcggcaaaagcacgggatttctcattcagtgtctgtgtcagggttttaagctgaggaatgagttgcttgcgcagcgccagcagcgccgcaacgtgcatcgccgtcggaaagacatcgttggaactttggcttttgttcacgtcgtcgttagggtgaactttacgttccatcccgcgcacaccgccgagtaattcactggcccggttagccagcacttcgttcatgttcatgttactttgcgtgccggagccggtctgccagatagccagcgggaattcgtcgtcatgctgtcctgccagtacttcatccgccgcctgacgaatggcgctcgctttctcttcagacaacaagcctaaatcttcattaacttttgccgctgcacgcttggttagcgccagcgcatgaatcagtgaggtgggcattttctccgtcgaaatgcggaaatgctccagcgagcgttgagtttgtgcgccccacagcttatctgccgggacatcaatcgcccccatcgaatctttttcgctgcgtactgtattcatgacctgctcctcacctgattaattttttctttctgttttgctttcgttaagcaacttttagctcacttattatttaccatttgataacaaatgtttggtctttcgtgccatgtaaaaaaaccgccccgaagggcggctctgtttatttcacacagcgggtgcattgtgtgagttgtatctgctggaagaagtcatttcctttatcatccacaaggataaacgccgggaaatcttccacttcaattttccagatggcttccattcccagttccggatattcaacacattccaggctcttaatacttccctgcgccaatacagcggccggaccaccgatactgccaaggtagaagccgccgtgttttttacaggcatccgtcacctgctggctgcggttgcctttcgccagcatgatcatacttccgccctgcgcttgcagttgatcgacataagaatccatccgtccggcggtcgttgggccaagagaaccggaggcataaccttccggcgttttggccggacccgcgtagtaaatcggatgatctttgatgtactgcggcagcccttcaccgttatccatccgctctttcagtttggcgtgagcaatatcacgaccgacgataatcgtgccgttaagcgataagcgtgtagaaacgggatactgcgacaactgtgcgaggatctctttcatcggacggttaaggtcaacgcgcaccgcttcgccttctcccgctttgcgcagctcttccgggatatatttgcctggattatgttccagtttttcgatccagatcccctgacggttgatcttcgctttgatattacggtcagcagagcaggagacgcccataccgaccgggcaggatgcgccgtgacgtggcaggcgaatcacgcggatgtcgtgagcgaagtatttaccaccaaactgcgcacccagaccaagattttgcgcttcgatcagcaattctttttccagttccacatcgcggaacgcctgaccgtgctcattcccttccgttggcagttcatcatagtatttcgcggaagccagtttcaccgttttaaggttcgtttctgcagaagttccaccaataacgaacgcaatatgatacggaggacaggccgccgtacccagcgtgcgcatcttctcaaccaggtaatttttcagtttccccggcgtcagtaacgctttggtttcctgatagagatacgtcttgtttgccgaaccaccacctttggcgatacagaggaatttgtattcgtcgccatcaacggcataaagatcgatctgcgctggcagattggtgccggtattcacttctttatacatatccagcggcgcgttttgcgagtagcgcagattatcttcgatataagtgttatagacaccgcgcgccagcgccgcttcatcaccaccaccggtccatacacgctgcccttttttaccaacaataatcgcggtgccggtatcctgacaggttggcagaacgcctttcgccgcgatgtcggagttacgcaggaattgcagcgccacatatttatcattttcgctggcctccgggtcacgcagaatgtcggccacctgttgttggtgcgccggacgcagcatgaacgacgcatcatgaaacgcctggcgcgccaacagagttaacgcttcgggtgcgactttcaaaatctcctgcccttcaaattcagatacgctaacgtgttcgctggttagcaggtaatactcagtatcatcttttttgagtggaaaaggagcctgataatgaaagggtttgtttgacattgttctctcacttactgcctggtttggttatgctctgggcgggtgttccgttgccctgttaaaagcgagtaacaatatcctacacacttttttaacaaaaactgagactagtacgactttttgcggctccaggttacttcccgtaggattcttgctttaatagtgggattaatttccacattaaaacagggattgatcatgcaaaaactcattaactcagtgcaaaactatgcctggggcagcaaaacggcgttgactgaactttatggtatggaaaatccgtccagccagccgatggccgagctgtggatgggcgcacatccgaaaagcagttcacgagtgcagaatgccgccggagatatcgtttcactgcgtgatgtgattgagagtgataaatcgactctgctcggagaggccgttgccaaacgctttggcgaactgcctttcctgttcaaagtattatgcgcagcacagccactctccattcaggttcatccaaacaaacacaattctgaaatcggttttgccaaagaaaatgccgcaggtatcccgatggatgccgccgagcgtaactataaagatcctaaccacaagccggagctggtttttgcgctgacgcctttccttgcgatgaacgcgtttcgtgaattttccgagattgtctccctactccagccggtcgcaggtgcacatccggcgattgctcactttttacaacagcctgatgccgaacgtttaagcgaactgttcgccagcctgttgaatatgcagggtgaagaaaaatcccgcgcgctggcgattttaaaatcggccctcgatagccagcagggtgaaccgtggcaaacgattcgtttaatttctgaattttacccggaagacagcggtctgttctccccgctattgctgaatgtggtgaaattgaaccctggcgaagcgatgttcctgttcgctgaaacaccgcacgcttacctgcaaggcgtggcgctggaagtgatggcaaactccgataacgtgctgcgtgcgggtctgacgcctaaatacattgatattccggaactggttgccaatgtgaaattcgaagccaaaccggctaaccagttgttgacccagccggtgaaacaaggtgcagaactggacttcccgattccagtggatgattttgccttctcgctgcatgaccttagtgataaagaaaccaccattagccagcagagtgccgccattttgttctgcgtcgaaggcgatgcaacgttgtggaaaggttctcagcagttacagcttaaaccgggtgaatcagcgtttattgccgccaacgaatcaccggtgactgtcaaaggccacggccgtttagcgcgtgtttacaacaagctgtaagagcttactgaaaaaattaacatctcttgctaagcttattaaaggcttataacaccttcaggcggccagtccgcctgatttcattttatggataatcattatgaataaatcgctggtagcggtaggcgtcattgttgcgctaggcgtagtctggacaggcggcgcatggtatacaggcaagaagattgaaacccatctcgaagacatggtcgcgcaggcgaacgcgcaactcaaactgacagctcctgaatccaacctggaagtgagttatcaaaactatcatcgcggcgtattcagcagccagttgcaactgttggtgaaacccattgccgggaaagaaaatccgtggattaaaagcggtcagagcgtcatcttcaacgaatcggttgatcatggtcccttcccgcttgcccagcttaaaaaactgaacctgatcccgtcgatggcatcaattcaaaccacgctggttaataacgaagtaagcaaaccactgtttgatatggcaaaaggtgaaacgccttttgagattaactcgcgcattggttacagcggtgattccagttccgatatttcgctcaagccactgaattacgagcaaaaggatgaaaaagtcgcctttagcggcggcgagttccagttaaatgctgacagagacggcaaagccatctccctttccggggaggcgcaaagtggtcggatagacgcagttaacgaatacaaccagaaagtgcagttgacctttaataatctgaaaaccgacggttccagcacgctggcaagttttggtgagcgtgtaggaaatcaaaaactgtcactggaaaaaatgaccatttcagtggaaggcaaagaactggcactgctggaaggcatggagatcagcggtaaatcggatctggtcaatgacggtaaaacgatcaatagccaactggattactcgctaaacagcctgaaggtacagaatcaggatctgggcagcggcaagctgactttaaaagtcggccagattgatggtgaagcctggcatcagtttagccagcaatataacgcgcaaactcaggcgctgctggcacagccagaaattgccaacaaccccgaactttatcaggagaaagtgacggaagccttctttagcgccctgccgctgatgctgaaaggcgatccggtgattactatcgcgccgctaagctggaaaaacagtcagggtgaaagtgccctgaatctgtcgctgttcctgaaagatccggcaacgactaaagaagcgccgcaaacgctggcgcaggaagtagatcgttcggttaaatctctggatgcgaaactgaccattccggtggatatggcaactgagtttatgactcaggtagcgaagctggaaggttatcaggaagatcaagcgaaaaaactggcgaaacagcaagttgaaggtgcatcagcaatggggcagatgttccgtctgaccaccttgcaggacaataccatcaccaccagcctgcaatatgctaacggtcagataacgttaaatgggcagaaaatgtcgttagaagattttgttggcatgtttgcgatgccagctcttaacgttccggctgtaccggcaattccgcagcagtaattcacggccaaaacgccggagaattttcactccggcgttttcatctgaaaacaaaccagagattgcctgatgcgctacgcttatcaggcctaccttttcctgcaacactttgaatttatgagtttttgtaggctggataaggcgtttacgccgcatccggcataaaaaacgcgcactttgtcaacaatctgaaacgccggagatttttctctccggcgttattttttacttcagcataaagtcatactgaatactcattttcacatcccagtaattcaggcgatcgcccagcgtactgccatcgcgcttttcccgccctttatcggcagcaagaaagaaattcatcccttgtaacggcccttcgctgacccgatagttcataccacctaagatacccgtgccttcaatccgcacatctcgtttactggattcatagccgcgagtcacaatcggtgcaaatgtcagcgtaaattgcggcgttaaacgatagttgacgcccaattgccaggactgcattccttcacggttacgatcaagacttaatgaaaagggatagccaatgtcggtatccaccacggcaccattcattgcatggcgcaaataaccaccactgccaaatacacttccccacggcgcattccaggtcaattgtccactaaccaacgccgtttcattgggctggctggtattacgacttaaaccttcgagctgcgcgtaaaagccgagcaactcccctttcaacgtataattcgggtcgagcggtatgcttttctcgagaatactttgtatctgattggaaacatctttctgtaccgatgcccccagagaatagcgactggtatcatcatgccaactggcggctaaaaaagaacgtgcgcgatgtttatcgtattttcccgtctggctgttatacaccccttcatcacgaataccggttgttgaatcagtccataaaaatactcgtgaacgccacattccccacagatcaatatttggtgttaaagcccaataacctaatgctccttcagaaactgtcggtaatgtacgttgcgaactgccagccattaacggaatacgataaggtaagctaccataactataatccgtcccgaagcgacctaatttaagcaggctattttcactgggttttatttttactgcccccagggcaaagccaaaacttttatcaccatcaagataccaccgggtactcatatcagcacgagcacctaatttataaacataatacgccccgccttcaacgccaataatattggaataataaccactattgaaatcgagcaatcctccctgtacccatgcgtaaatatctcttcccgcgccagcactgggcttatccgccctgcgcaattcgtttttcagtctgatgcgtagtcccgcttcatcgtcagccagttgcgccgcataagcagaggtaaggccagaggcagccgtcaggcaaataacggccatggccactatttttctcatagttgcacctttgatgttctgattatttttattgaatattaattagtgatatcgctgattaattgctgctgcacttttttacgattatcaatttcaaccacgatttctttgaattttttatccgtgagcggataaaaccagataataacgaatgccagtagcataaatccgcaaggtactaaggcaattgatgtgcggatgcccataataacttccggcgtttgcacctgattggcgatatatccgcttaaccccaaaataaaggcaggaattgaacctccgattgcctgaccgcatttacgggtaaatgagaatagtgaataggtgagcccttcaattcgcacgccggtcaggtattcaccgtattctacggtatcagcttccagcgcccacatcacggtcatggtaacgccctgaccaattgaagcgatggccaacgcaaccaacgccaccggcagtgaccagacggaaacccagaagaacagcagataaccgcaggttcccagcaaagcgccaatcaggaaggtattctttttaccgatcctcgcgaccatccccggcaccagcggtgccgatgccacagtaccaaccaggttttgcaccagtaccagcacagtgaacagcccggtatcatttaacacatagcgcacgtagaacaacgacgaggcgctgaccgcaaaggtcgaaatcagcacacacagcgcaccgatgcacaacataaacagcgggcgattccgtttcagggtttgcagactgatattcaatgacggctgcgcaacgatacgtaccacattctcacgcgtcgatttgaagcagatgaagtaaagcaccattccggcaatcgccagcacaattgtccagaaatggtataccgacaccatctcttccgggctggagttcttaatgctcggtcctatcagaaatgccaggcagacaaaggtcaatgaagcggcaatcccacgagccgcgcccagacgggcgcgggattgtggttgttgggtcatcgcggtagcaagtgaaccataaggaatattcaccaggctgtagcaaagcccgaggcccatgtaggtcaaatatgcatacaccactttgctaccatggctccagtcggtcagcacccagaataccagcacgctgaagatcattaacggcgcagtaccgaagagtaaaaacgggcggaattttccccagcgggtattcacactgtccaccactcgtccggcaaagacgtcggcgaaggcatcgaatacccgcaccagtaacagcatggtgcccgccgcagcggcaccgacgccagcgacgtcggtgtagtaactcaacaggaagagcgcccccattgcgaaggcgaagttattggcgacgtcaccgaggctgtagccgacgatggtgcgccaggagagttgttgattcattgtttgcctccctgctgcggtttttcaccgaagttcatgccagtccagcgtttttgcagcagaaaagccgccgacttcggtttgcggtcgcgagtgaagatccctttcttgttaccgccaacgcgcaatatgccttgcgaggtcgcaaaatcggcgaaattccatacctgttcaccgacgacggcgctgacgcgatcaaagacgcggtgatacatatccagccatgcacactgatactcttcactccacatgtcggtgtacattgagtgcagcccggctaacgtatccacgccgtattcggtgatgataatcggctgatgcagtttctcctgccaggccagaagttctttttccagtaccttctctgccgtttccaaatcgccgctttggacataccatccgtaataacggttcaggcacagcacatcaaagagatcgctgatggtatcggtgtgagcgtcgcagaacattacattgacgcaggtgatcggacgcgtcgggtcgagtttacgcgttgcttccgccagtggcgcgaaatattcccgtgcaccttgcggacgggtatccggttcgttggcaatactccacatcaccacgcttgggtggtttttgtcacgcgctatcagctctttaatcgcctgtaagtgcgcttgctgagtttccccgttgactgcctcttcgctgtacagttctttcggcttgttgcccgcttcgaaaccaatgcctaaagagaggttaaagccgacagcagcagtttcatcaatcaccacgatgccatgttcatctgcccagtcgagcatctcttcagcgtaagggtaatgcgaggtacggtaggagttggccccaatccagtccattaatgcgtggtcgtgcaccatcagcacgttatcgaatcctttgccacgcaagtccgcatcttcatgacgaccaaagccagtaaagtagaacggtttgtggttaatcaggaactgttcgcccttcactgccactgaccggatgccgacgcgaagcgggtagatatcacactctgtctggcttttggctgtgacgcacagttcatagagataaccttcacccggttgccagaggtgcggattcaccacttgcaaagtcccgctagtgccttgtccagttgcaaccacctgttgatccgcatcacgcagttcaacgctgacatcaccattggccaccacctgccagtcaacagacgcgtggttacagtcttgcgcgacatgcgtcaccacggtgatatcgtccacccaggtgttcggcgtggtgtagagcattacgctgcgatggatcccggcatagttaaagaaatcatggaagtaagactgctttttcttgccgttttcgtcggtaatcaccattcccggcgggatagtctgccagttcagttcgttgttcacacaaacggtgatacgtacacttttcccggcaataacatacggcgtgacatcggcttcaaatggcgtatagccgccctgatgctccatcacttcctgattattgacccacactttgccgtaatgagtgaccgcatcgaaacgcagcacgatacgctggcctgcccaacctttcggtataaagacttcgcgctgataccagacgttgcccgcataattacgaatatctgcatcggcgaactgatcgttaaaactgcctggcacagcaattgcccggctttcttgtaacgcgctttcccaccaacgctgatcaattccacagttttcgcgatccagactgaatgcccacaggccgtcgagttttttgatttcacgggttggggtttctacaggacgtaacataagggactcctcattaagataataatactggtcaacctttaatctgattagttaaccaattctgtgttgcacacagttatctgtgagaaacccatggaagagaaatggaaataaaaagaactgacaccgcgatcaaaaaaccaaaaactgcaatacccacagcgtgatatagatcgcattaatctttaaaacagcgttgacagaagccataaaataagcaaccgaacgttcgttcgagcgtattgggaacgataaactctcatgacatatggctacagtgaatattttggggggaattctccgaagccgggaaggataatttttgcacagagaaattacgatatgaaacgcgggcacagttatcaccagcccgccgaaaaagagagagaatcaggatgcggttaagataccgccaatcatcgcgcgtaatccctgagcaaacgacgcttcacgcgccaggtcttccgcttcgatatcggccagtacaccgtaggtcagatccagcagtaaacgtgaagtcattgccgtgttgatgtctgggcttatctcgcctttttgctgggcatcacgcatccgctgggcaacaaattccgtgatcgtcatatgcttatttttaagcatggcggcgacctgtgggttacgcatcccttccgccataatttcaaccaccagcgcccgttgtccaaaggcttcatgggtgagagagacaatggactcgaccatatagtcaacgaaatgaatcccttcaatcggttcccggaaacgggccagcgccctctcctggtcctgtaagataatcgcctgaatcaaggcttctttggagatgaaatggtgatagagcgtcccgggactaatggcgcaagatttacagatggctttcatcgaggcactgtgaaatccattttctgaaaaaatctctctggcagcattgaggatccgggtccgtgtcggttgtgcttcagtctgcatgttatccatcattaaaccattatagttagcgtgaataactagtttaccgcgttgtcaggtgagcgcctatcattgctgttgaatagtgcgaaggcacactctattcgtatacttttcactctgaaattggttaaccaatagccgtgatttggctgccagttatttagcagagacgttgatgagtttatcccggtaaacaacacgcacggttgtttaccggtccgttagtgtattaattgagctcctgtaccccaccaccggagacggtgagaatttgtccgcttacccagctcgcagcaggcgagcaaaggaacagcgctgcgttagcaatatcttgcggttggcccagacgtctgatcggcgtgtgctgtaacattttttgttcaatttctggtgtaataacggatttcagggcatcggttaatattgcccccggcgcaatgccatttacccgaatatttttttcacccaggtcaaacgccatatttctgaccagatgactggccgcagctttagatgatgcataggaagtcatgtttatatttttattttctgccgccatagaagtgatggtcagaataacgccaccgccatttttttccatttctggcgcaacaagttgtgacagatggaaaaaagaaaacacattcagttcataagcacggcgaaaatccgccattggcatatcaaacggtttaggtccaccgccaccggcgttgttaaccagaatatcaactttacccagcttactgatagcaaagtctgccagtgcagagagttcctgttcggaagtaatatcacaacggcaggcaaatgcctgaccacccagttgttgaatttcgtctacaacatggttagctgcgtcggcgttaatatcactgaccaccacagatgcgccagctgtcgcgaatgtaatggcgatttctttaccaatacctgcacccgcacctgtgatgatggcgcattttccgtcgagtctcaggttgtcagaattaaacacataaacctcctgtgaacttcagtaaaaataaaaggcaccgcctgtgtgccacattttttatcattaaccttgaggaaaggacactaccaggtatagcagataaagagaggattatttcgctgcaatgagccgggcgggaataataagattgcgtgaatgcgtctcttcatgggtgattttttgcatcatgcgatccgcaagtgtgataccaagttcccgcgctggcgtgctggcccaggtaacaggtatatcatcaagtgtggttggtgtcgcatcggtaaatgccgccagcgaaacctgttgctcaaagtaacgatcgactccgctttccccgctttgccgccctgctttgagcaaaccaaaccatgcccccatcgcaatagtttcgttatagcaaaccacggcactgatggtcgggttatgacgtaaaagcgccgtgatagcttccgcggcttgcttctggctggaagtgcactccaacacccaatcgctatgaaacggcaggccaaattttagtagagttgcacaatagcccccaacccgttctgcacgggttaatgaggaactttgccctcccagccaggcgatccgctgatgcccattgcgaatgagatgctccgtcaacaactgtgcagcctgcatgttgtccgggcgaaccgtatcaacatcatcaagataactggcacgggaagcgaaaatcaccgggatagctttttcttctgccatccgtcgcaggtcatcgctacttcctgcagctccggcaattaccacaccatcgacaccctgattcagtaacagtgaaaaccgctgtgccagctgctcaccgtctttaccgccgtgaagcaaaaaaaccatccgtccctgcgcttccagagcttccgtcaatccggccgtcaattcggcgtaaaacggcgcagataaatcacggacgatcaaaccaatgacgccgctttgcccgccgcgcagcgccgacgcctggcgattgcgcacaaatcccagctcttcaatggcggcgttaacgcgttctcctgtggcggtagagattcgccctttgccactaagcaccagcgaaacggtacttaccgacacgcccgcagccagcgcaacatcatgaatggttatttttttggcggtagccatgcagatgacctactccctgattatgtgacagataaaacgttttaccttttatttatcttatacccgctattatcgttgcgtaatgtgatttatgcctcactaaaatttgataaaacgttttatcttctcgcgcaatttactgaatccagattgttctctacgaggagtcgttttatgacggcgaaaacagcaccgaaagtcacgctgtgggagttcttccagcagttaggcaaaaccttcatgttacccgtggcattattgtcgttctgcggcattatgctcggcattggtagttctcttagcagccatgatgtcataaccctgatcccggtcctgggcaaccccgtgttgcaggctatctttacctggatgagtaagattggctcgtttgcttttagtttcctgcctgtcatgttctgtatcgccatcccgctgggcctggcacgcgaaaataaaggcgtagcggcattcgctggcttcatcggttatgcggtaatgaacctcgcggtaaacttctggttgaccaataaaggcattctgccaaccacggatgccgcggttctgaaagccaataacatccagagcattcttgggatccagtcgatcgataccgggatcctcggtgcggtgatcgccggtattatcgtctggatgctgcatgagcgtttccataatatccgcctgccggatgcgctggcattcttcggcggtacgcgcttcgtaccaattatctcctcgctggtgatgggccttgtcggcctggtgattccattagtctggccgattttcgccatgggtattagcggcttgggccatatgataaacagcgcgggtgatttcggaccgatgctgtttggtaccggtgaacgtctgctgttgccgtttggtctgcatcacattctggtggcattaattcgctttaccgacgcaggcggcacgcaggaagtctgcggtcaaaccgtcagcggcgcactgaccatcttccaggcgcaattgagttgcccgaccactcacggtttttctgaaagcgccacgcgtttcctttcgcaaggtaaaatgcctgcgtttctcggcggtctgccaggtgcagcgttagctatgtatcactgcgcgcgcccggaaaatcgccataaaattaaaggtctgctgatttctggcctgatcgcctgcgtcgttggcggcactaccgaaccgctggaattcctgttcctgttcgtagcgccagttctgtatgtcatccacgcgctgttaaccggcctcggcttcaccgtcatgtctgtgctcggcgtcaccatcggtaataccgacggcaatatcatcgacttcgtggtgttcggtattttgcatggtctgtcaaccaagtggtacatggtgccagtggtggcggcaatctggtttgtcgtttactacgtcatcttccgtttcgctatcacccgcttcaatctgaaaaccccggggcgcgatagcgaagttgccagctcaatcgaaaaagccgttgccggtgcgccgggtaaatcaggttacaacgttcctgcaatcctcgaagcattaggcggtgccgacaatattgtcagcctcgataactgcattacccgtctgcgtttgtctgtgaaagatatgtcgcttgttaatgtgcaggcactgaaggacaatcgggcaattggcgtagtacaacttaatcaacataacctgcaggttgttatcgggccacaagttcagtcagtaaaagatgaaatggccggtctgatgcatactgtccaggcataaggataagatatgttcgatttttcaaaggtcgtggatcgtcatggcacatggtgtacacagtgggattatgtcgctgaccgtttcggcactgctgacctgttaccgttcacgatttcagacatggattttgccactgccccctgcattatcgaggcgctgaatcagcgcctgatgcacggcgtatttggctacagccgctggaaaaacgatgagtttctcgcggctattgcccactggttttccacccagcattacaccgccatcgattctcagacggtggtgtatggcccttctgtcatctatatggtttcagaactgattcgtcagtggtctgaaacaggtgaaggcgtggtgatccacacacccgcctatgacgcattttacaaggccattgaaggtaaccagcgcacagtaatgcccgttgctttagagaagcaggctgatggttggttttgcgatatgggcaagttggaagccgtgttggcgaaaccagaatgtaaaattatgctcctgtgtagcccacagaatcctaccgggaaagtgtggacgtgcgatgagctggagatcatggctgacctgtgcgagcgtcatggtgtgcgggttatttccgatgaaatccatatggatatggtttggggcgagcagccgcatattccctggagtaatgtggctcgcggagactgggcgttgctaacgtcgggctcgaaaagtttcaatattcccgccctgaccggtgcttacgggattatagaaaatagcagtagccgcgatgcctatttatcggcactgaaaggccgtgatgggctttcttccccttcggtactggcgttaactgcccatatcgccgcctatcagcaaggcgcgccgtggctggatgccttacgcatctatctgaaagataacctgacgtatatcgcagataaaatgaacgccgcgtttcctgaactcaactggcagatcccacaatccacttatctggcatggcttgatttacgtccgttgaatattgacgacaacgcgttgcaaaaagcacttatcgaacaagaaaaagtcgcgatcatgccggggtatacctacggtgaagaaggtcgtggttttgtccgtctcaatgccggctgcccacgttcgaaactggaaaaaggtgtggctggattaattaacgccatccgcgctgttcgttaaccccaattgcgcaacgtaaaaaatcgttgcgcaatcgtggatttttaccctgctttgtttttataatggtgcgcacttttatatccagaaaaagagtgcgaccatgattgataccaccctgccattaactgatatccatcgccaccttgatggcaacattcgtccccagaccattcttgaacttggccgccagtataatatctcgcttcctgcacaatccctggaaacactgattccccacgttcaggtcattgccaacgaacccgatctggtgagctttctgaccaaacttgactggggcgttaaagttctcgcctctcttgatgcctgtcgccgcgtggcatttgaaaacattgaagatgcagcccgtcacggcctgcactatgtcgagctgcgtttttcaccaggctacatggcaatggcacatcagctgcctgtagcgggtgttgtcgaagcggtgatcgatggcgtacgtgaaggttgccgcacctttggtgtgcaggcgaagcttatcggcattatgagccggaccttcggcgaagccgcctgtcagcaagagctggaggcctttttagcccaccgtgaccagattaccgcacttgatttagccggtgatgaacttggtttcccgggaagtctgttcctttctcacttcaaccgcgcgcgtgatgcgggctggcatattaccgtccatgcaggcgaagctgccgggccggaaagcatctggcaggcgattcgtgaactgggtgcggagcgtattggacatggcgtaaaagccattgaagatcgggcgctgatggattttctcgccgagcaacaaattggtattgaatcctgtctgacctccaatattcagaccagcaccgtagcagagctggctgcacatccgctgaaaacgttccttgagcatggcattcgtgccagcattaacactgacgatcccggcgtacagggagtggatatcattcacgaatataccgttgccgcgccagctgctgggttatcccgcgagcaaatccgccaggcacagattaatggtctggaaatggctttcctcagcgctgaggaaaaacgcgcactgcgagaaaaagtcgccgcgaagtaacaaaatggatggtgcaaatgcaccatccatttttcatgcaaggcacaaagtcgcgcgatgtttggcggattcgatgcccagctcaatcaactccattacctggattgcctggcttgccggaaccggattttcaccatcgccatttaacgcatcacgaatagccgcatagtaagccggataattcccaggcaccgtcaacagcgtttcttcgacacgttcctcaccttccacgcgggtaagtacgccatcacgcatatcgtagccccagtcttcctgcggtagacgctcgccatttttcagacgttcttcctgtggatcgaggccatatttcacataactgcctcgggatccatgcacgatataccgtgctgactcagcggctgccagcatggtaccgtgtaaaatgactcgccgctgtggataggacaagatggcgtggaaataatcggtcgactgcgctccgggccgtaactgtgccaaatctaccgtcatgctgaccggtaaaccaaaaagcgtaatggcctgatcaagaagatgtggtgctaaatcgtaccagataccgctgcctgggccgccctgttcacgccaacgatcgcgcacctgcggacggaagcggtcaaaatgagactcaaagtaagcaacttcacccagcacgccttccgcgagtaaaccttttagcgtcaagaaatcgctatcccagcgacggttatggaatacagacagcacacgccccaggctttttgccagcgcatccagctctcgcgcttgtgacagtgtcacggtaaagggtttatcaacgaccacatgtttacccgcctcaagcgccgctttggctaacgggaaatgggtatcgttgggtgtaggaatgacaatcaggtctatgttgggatcgttaaacagatgcttcggctcagagacaaccgtaaccgttggccagtcggcttttacttttgtttcatcactgctggagattaccgccagttcctgcccgggcgtgcccgcaatcaggggcgcatggaaggttttgctcgcataaccatacccaatcaacccaacacggatgttgtcgctcatgtcattgcctctcattgaagtatgatggctatttgacactatcctttacccacgctcaacagtttaataacctgccagcaataagggatgttgtttaacttaagtcaaaaaaatagcgaattttccaacgacaaaagctaaatatcgcaaaaacctcagtaaaaatcttgctggagctattattgctaagtaacatttaccccctgaagttaatggatcaatcaagagagatgtgggctgtaatgaatcgtcttattgaattaacaggttggatcgttcttgtcgtttcagtcattcttcttggcgtggcgagtcacattgacaactatcagccacctgaacagagtgcttcggtacaacacaagaagctctgcacttgtggagcgacatgctgcccgtccgggtgcatgttttcacttgtcggatattaaaccaggaatttattatcttgttcgatgttgttggtgattgtcagggatagtaaagcgcgttactcttttcagagcagtttttcatccctgaatatttgccatcagcgcattcttattattgtaataacacaagcgttcacttttggtgaaattttatcatcactaataatacctacccctttggtattaattattttatggaccttttatgactgttcaggactacttattaaaatttcgcaaaatcagttcactcgaaagtctggaaaaactctacgaccatcttaattacaccctgacggacgatcaggaactgatcaatatgtatcgtgctgccgatcaccgtcgcgcagagctggtttctggcgggcgtttgtttgacctcggccaggtaccgaagtccgtctggcactatgtccaataaagaaagtagcgatcggttataaaagccttataataacgcccctaaaattagatttgcctgtttgcgtcgctattctggagaacctatgaccaccacaacgccacaacgtattggaggctggttgcttggcccgttggcctggcttttagtcgctctgttgagtacgacgctggcgttgttgctgtataccgctgcgttatcttctccgcaaacatttcaaacgctcggcggacaagcactgacgacacaaatcttatggggcgtttcttttattaccgctatcgccttgtggtattacacactgtggttgaccatcgctttctttaaacgtcggcgttgtgttcctaaacactatattatctggctgcttatttccgtattgctggcagtaaaagcattcgctttttcacccgtggaagatggcatagccgttcgccagttgctgtttactttgttggcaaccgcattgatcgtcccctatttcaaacgctcgtcgcgggtaaaagcgacgtttgtgaatccgtaataaccttacagttaacctgttgtcgcctgctctggattaacggataataggcggcttttttatttcaggccgaaaaatgactgactacctgttactgtttgtcggaactgtactggtcaataactttgtactggtcaagtttctcggtctctgtccgtttatgggggtttccaaaaaactggaaaccgcgatgggcatggggctggcaacaacgtttgtgatgacgctggcgtctatttgcgcctggcttatcgatacgtggattttgatcccacttaatctgatttacctgcgcaccctggcatttattctggtgattgctgtggtcgtgcagttcaccgagatggtggtgcgcaaaaccagcccggtgctttaccgtctgctggggatttttttgccgcttatcaccaccaactgtgcagtgctcggcgtggcgttgctgaatatcaatctcgggcacaatttcttgcagtcggcgctgtacggtttttccgccgctgtcggtttctcgctggtgatggtgctcttcgccgccatccgcgaacgccttgctgtggctgatgtcccggcaccttttcgcggtaatgccattgcgttaattaccgcaggtcttatgtctctggcctttatgggctttagtggtttggtgaagttgtaatgaatgctatctggattgccgttgccgccgtgagcctgctgggcctggcgtttggcgccattctgggttatgcctcccgccgttttgcggtggaagacgatccggtcgttgagaaaattgacgaaatcttaccgcagagccagtgtggtcagtgcggttatcccggctgtcgcccctacgcggaagccatcagctgtaacggtgaaaaaatcaaccgttgcgccccaggtggcgaagctgtgatgctaaaaattgccgagttgcttaatgtcgagccgcagccgctggatggcgaagcgcaagagataacgcctgcgcggatggtggcggttattgatgaaaataactgtattggctgcactaaatgtattcaggcgtgtccggtagacgccatcgttggcgctacccgtgccatgcatacggtaatgagtgatctctgtacgggctgcaatttatgtgttgatccgtgcccgacgcactgcatctcgttgcaaccggtcgcagaaacacctgactcctggaaatgggatctgaacaccattcccgtgcgtatcattcccgtggaacaccatgcttaagttattctctgcattcagaaaaaataaaatctgggatttcaacggcggcatccatccaccggagatgaaaacccagtccaacggtacacccctgcgccaggtacccctggcgcagcgttttgttattccactgaaacagcatattggcgctgaaggtgagttgtgcgttagcgtcggcgataaagtattgcgcggccagccgcttacccgtggtcgcggcaaaatgctgcctgttcacgcgcccacctcgggtaccgttacggctattgcgccccactctacggctcatccttcagctttagctgaattaagcgtgattattgatgccgatggtgaagactgctggatcccgcgcgacggctgggccgattatcgcactcgcagtcgcgaagagttaatcgagcgcatacatcagtttggtgttgccgggctgggcggtgcaggattcccgacaggcgttaaattgcagggtggcggagataagattgaaacgttgattatcaacgcggctgagtgcgagccgtacattaccgccgatgaccgtttgatgcaggattgcgcggctcaggtcgtagagggtattcgcattcttgcgcatattctgcagccacgcgaaattcttatcggcattgaagataacaaaccgcaggcgatttccatgctgcgcgcggtgctggcggactctaacgatatttctctgcgggtgattccaaccaaatatccttctggcggtgctaaacaattaacctacattctgaccgggaagcaggttccacatggcgggcgttcatccgatatcggcgtattaatgcaaaacgtcggcactgcttatgcagtgaaacgtgccgttattgatggcgagccgattaccgagcgtgttgtaaccctgactggcgaagcaatcgctcgcccgggcaacgtctgggcacggctggggacgccagtgcgtcatttattgaatgatgccggattctgcccctctgccgatcaaatggtgattatgggtggcccgctaatgggctttaccttgccatggctggatgtcccggtcgtaaagattaccaactgtctgttggctccctctgccaatgaacttggcgaaccacaggaagaacaaagctgcatccggtgtagcgcctgtgctgacgcctgccctgcggatcttttgccgcaacagttgtactggttcagcaaaggtcagcaacacgataaagctaccacgcataacattgctgattgcattgaatgtggggcttgcgcgtgggtttgcccgagcaatattcccctggtgcaatatttccgtcaggaaaaagctgaaattgcggctattcgtcaggaagaaaagcgcgccgcagaagccaaagcgcgtttcgaagcgcgccaggctcgtctggagcgcgaaaaagcggctcgccttgaacgacataagagcgcagccgttcaacctgcagccaaagataaagatgcgattgctgccgctctggcgcgggtgaaagagaaacaggcccaggctacacagcctattgtgattaaagcgggcgaacgcccggataacagtgcaattattgcagcacgggaagcccgtaaagcgcaagccagagcgaaacaggcagaactgcagcaaactaacgacgcagcaaccgttgctgatccacgtaaaactgccgttgaagcagctatcgcccgcgccaaagcgcgcaagctggaacagcaacaggctaatgcggaaccagaacaacaggtcgatccgcgcaaagccgccgtcgaagccgctattgcccgtgccaaagcgcgcaagctggaacagcaacaggctaatgcggaaccagaagaacaggtcgatccgcgcaaagccgccgtcgaagccgctattgcccgtgccaaagcacgcaagctggaacagcaacaggctaatgccgagccagaacaacaggtcgatccgcgcaaagccgccgtcgaagccgctattgcccgagccaaagcgcgcaaacgggaacagcaaccggctaatgcggagccagaagaacaggttgatccgcgcaaagctgccgtcgaagcggctattgcacgcgccaaagcacgcaagctggaacagcaacaggctaatgcggtaccagaagaacaggttgatccgcgcaaagcggcagttgccgcggctattgcccgcgctcaggccaaaaaagccgcccagcagaaggttgtaaacgaggactaaatggtattcagaatagctagctccccttatacccataaccagcgccagacatcgcgcattatgctgttggtgttgctcgcagccgtgccaggaatcgcagcgcaactgtggttttttggttggggtactctcgttcagatcctgttggcatcggttagtgctctgttagccgaagctctcgtactcaaactacgcaagcagtcggtagccgcaacgttgaaagataactcagcattgctgacaggcttattgctggcggtaagtattccccccctcgcgccatggtggatggtcgtgctgggtacggtgtttgcggtgatcatcgctaaacagttgtatggcggtctgggacaaaacccgtttaatccggcaatgattggttatgtggtcttactgatctccttccccgtgcagatgaccagctggttaccgccacatgaaattgcggtcaacatccctggttttatcgacgccatccaggttatttttagcggtcataccgccagtggtggtgatatgaacacactacgcttaggtattgatggcattagtcaggcgacaccgctggatacatttaaaacctctgtccgtgccggtcattcggttgaacagattatgcaatatccgatctacagcggtattctggcgggcgctggttggcaatgggtaaatctcgcctggctggctggcggcgtatggttgctatggcagaaagcgattcgctggcatattcccctcagcttcttagtaacgctggcgttatgcgcaatgttgggctggttgttctcaccagaaacactggcagcaccgcaaattcatctgctgtctggagcgaccatgctcggcgcattctttattttgactgacccggttaccgcttctacgaccaatcgtggtcgtcttattttcggcgcgcttgcgggcttattagtctggttgatccgcagtttcggcggctatcctgacggcgtggcttttgccgtcctgctggcgaacatcacggttcctctgatcgattactacacgcgtccgcgcgtctacggccatcgcaaagggtaaaccatgctgaaaactatccgaaaacacggcattacgttggcgctatttgcagcgggttcaacagggttaactgcggccatcaaccagatgaccaaaacgacgattgctgaacaggccagtctgcaacaaaaggcgttatttgatcaggtgctgccagccgaacgctataacaatgcgctggcacagagttgctatctggtaactgcgccagagttaggtaaaggtgagcatcgggtttacatcgccaaacaggatgacaaaccggtagccgccgttctggaagcaaccgcgccagatggctattccggtgcgattcagctgctggtgggagccgattttaacggcacggtacttggcacgcgcgtgacagagcaccacgaaacgccagggcttggcgataaaatcgaactgcgcctttctgactggatcacccattttgcgggtaaaaaaatcagtggtgcagatgatgcgcactgggcggtgaagaaagatggtggtgatttcgaccagttcaccggcgcgacgattactccccgcgcggtggttaatgcggtaaaacgcgccggattgtacgctcagacgttaccggcacaactttctcaacttcctgcctgtggagaataaagcgtgagcgaaattaaagacgttattgttcaggggttgtggaaaaacaattctgcgctggtccagttgctcggcctttgtcctctgttggcggtcacgtccactgccactaacgctctgggtttaggacttgcgactacgctggtactgacgctgaccaacctgaccatttcgacgctgcgtcactggacgccagccgagatccgcattcccatttacgtgatgatcatcgcctcggtggtcagcgctgtacagatgctgatcaacgcctacgcctttggcctgtatcaatcattagggatttttattccgctgattgtcactaactgtatcgttgtgggccgcgctgaagccttcgccgccaaaaaaggtccggcgctttcggcactggacggcttttcaattggtatgggcgcaacctgcgccatgttcgtgctgggttcactacgcgaaattatcggcaatggcacattgtttgacggtgcagatgcgctgttaggtagctgggcaaaagtattacgcgtggagattttccacaccgactcccctttcctgctggcgatgctgccaccaggtgcatttattggcctgggactgatgctggcaggaaaatacctgattgatgaaagaatgaaaaagcgccgtgctgaagcagctgcagaacgtgcattgccaaacggtgaaacagggaatgtctgatgaataaagcaaaacgcctggagatcctcactcgcctgcgtgagaacaatcctcatcccaccaccgagcttaatttcagttcgccttttgaattgctgattgccgtactgctttccgctcaggcgaccgatgtcagtgttaataaggcgacggcgaaactctacccggtggcgaatacgcctgcagcgatgcttgaactgggcgttgaaggggtgaaaacctatatcaaaacgattgggctttataacagcaaagcagaaaatatcatcaaaacctgccgtatcttgctggagcagcataatggcgaggttccggaagatcgtgctgcgcttgaagccctgcccggcgtaggtcgtaaaacagccaacgtcgtattaaacactgcattcggctggccgactattgctgtcgacacgcacattttccgcgtttgtaatcgtactcaatttgcgccggggaaaaacgtcgaacaggtagaagaaaagctactgaaagtggttccagcagagtttaaagtcgactgccaccattggttgatcctgcacgggcgttatacctgcattgcccgcaagccccgctgtggctcttgtattattgaagatctttgtgaatacaaagagaaagttgacatctgaagaaaaggggtaacaccgattaccccattgataacctttctttatcctcttttaaaacatctttttaacgtcaatgatgccattgcttagcgttatcatcaggtaatccgtttgcggataaccaaaaatgcaggttaattgtttttttaatagcgaaattttctattcattcgtgatcaagatcacgatgctgtcgcaatgtaaaaacattgcaagaatcaggttaaaatcatttaaatttacacacgcaacaaatattgacctacaaaacattacactggctatttttcagaaactggactatctcactagtaaaaacgctaaatagcagaacatatcgccgttaagccatcacccccctctcagtgcagtgaaaaaatctgccgttacgttttttgaaaaatttaacgctggataacatttcccggaatggttgaattccccgcctcagttatatgtaacagattattacaaaggacttgtctgaaagtgcaagatagtgaacattacctgccgtttcccctcccactataacaattgcgcgtatgttttttatacataacgcgagaaagcacccccgttaatatgggatgtaaaaaaagaggtaaaagtgtccactgcaaaccaaaaaccaactgaaagcgtcagtttgaacgctttcaaacaaccgaaggcgttctatctcatcttctcgattgagttatgggaacgttttggttattacggcctacaaggaattatggctgtttacctggttaaacaactgggtatgtctgaagcggattcaatcacccttttctcttcctttagtgccctggtttatggtctggtcgctatcggcggctggttaggtgacaaggtactgggtactaaacgcgtaattatgctcggcgctattgtgctggcgattggttatgctctggttgcctggtctggtcacgacgccggtatcgtttatatgggtatggcggctattgcggtcggtaacggcctgtttaaagctaacccgtcttctctgctttctacatgctatgagaaaaacgacccgcgtctggacggtgcattcaccatgtactacatgtccgtcaacatcggctctttcttctctatgattgctacgccgtggctggccgcgaaatacggctggagtgttgcgtttgcgttgagcgttgtaggcctgctgatcactatcgttaacttcgccttctgccaacgctgggttaaacagtacggttcaaaaccagacttcgagcctatcaactaccgtaacctgctgctgaccattattggtgttgtggcactgatcgctatcgccacctggctgctgcacaatcaggaagttgcgcgtatggcgctgggcgttgttgccttcggtatcgtggttatcttcggtaaagaagccttcgcgatgaaaggtgctgcgcgtcgtaaaatgatcgttgccttcatcctgatgctcgaagccattatcttcttcgtgctgtacagccagatgccaacgtcactgaacttctttgcgattcgtaacgttgagcactccattctgggtctggccgtagaacctgagcagtatcaggcactgaacccgttctggatcatcatcggtagtccgattctggccgctatctataacaagatgggcgataccctgccgatgccaaccaagtttgcaatcggcatggtgatgtgttctggtgcgttcctgattctgccgctgggtgcgaaattcgcgtctgacgctggtatcgtgtctgtaagctggctggtcgcaagctatggcctgcagagcatcggggaactgatgatctctggtctgggtctggcaatggttgctcaactcgttccgcagcgtctgatgggcttcattatgggtagctggttcctgaccactgccggtgcaaacctgattggtggttatgttgcgggtatgatggctgtgccggataacgttaccgatccgctgatgtcactggaagtctatggtcgcgtattcttgcagattggtgtcgctactgccgttattgcagtactgatgctgctgaccgcgccgaaactgcaccgcatgacgcaggatgacgctgcagacaaagcggcgaaagcagccgtagcgtaaaattcagggaaactcttttacaagccgctaacttttcgttagcggctttttttttgttcagcaacgcactaccatactttaaaccacagacaaaaggagttaccgatgaaattgttctacaaaccgggtgcctgctctctcgcttcccatatcaccctgcgtgagagcggaaaggattttaccctcgtcagtgtggatttaatgaaaaaacgtctcgaaaacggtgacgattactttgccgttaaccctaaggggcaggtgcctgcattgctgctggatgacggtactttgctgacggaaggcgtagcgattatgcagtatcttgccgacagcgtccccgaccgccagttgctggcaccggtaaacagtatttcccgctataaaaccatcgaatggctgaattacatcgccaccgagctgcataaaggtttcacacctctgtttcgccctgatacaccggaagagtacaaaccgacagttcgcgcgcagctggagaagaagctgcaatatgtgaacgaggcactgaaggatgagcactggatctgcgggcaaagatttacaattgctgatgcctatctgtttacggttctgcgctgggcatacgcggtgaaactgaatctggaagggttagagcacattgcagcatttatgcaacgtatggctgaacgtccggaagtacaagacgcgctgtcagcggaaggcttaaagtaatagccatcggcccacaggtcgttgtgggccgaaatgagatatttcagagctttgttgcgctgaagtaatgttctggtttggcaatacgatcctgagcagccaccacttgcagctcatattcctgcattgctttggtggtcaccatgatttcgtagactgcagcggtcacatgttccagcgcctcctgcagcgttgccccctgaagcagtttcaccagcagtaaaccgctcgtcacatcaccaacacctaccggctggcgcataccaaaatccaccagcggacggctgatatgccaggcttcatcggcggtgaccagcagcatttcaaaacggtcacggctgtagccagctcgcgccaggtgtttaaccaacacaatttgtggcccttgcgcaatgagttcgcgcgctgccagaaccgcttcttcgacgttatttaccgcatgctcacagagtatttccagctcaaccagatttggcgcaatgatatcgctggcaggcaaaccgtgccgcacatgaaactctgcgacacccggtgcaacgatacagcctttttccggatgacccattaccggatcgcaaaaatatttcgcctgcggattcgcggctttcacctgacggacgataccgaggatatgttcaccctgctccgccgatcccagatagccacttaatacggcatcacaggtgtgtaatttatcaatggcggcaatgccttgcacaatttcggttaaatggctgggcggcatcacgcagccagtccatttgccgtattgggtgtgattagaaaattgaacggtgttcagcggccagacgttcgcgcccaggcggcgcatcggaaactctgccgcactgttacccgcatgaccataaacaacgtgagactggatagcgagaatatttttcatcatgttccctgtataaaaaccagggggagtgatttctcactccccctttccacttaatgcattatttccagcaaatcagacagtaattctttttaccgcgacgcagtaaggtaaaacgaccaaacagacgatcttcttctttaaagaagtattcaggatcggactgtttttcaccgttaatggtgatggcattggaggcgatagttttacgtgcctgaccacgggaaggttgcagttcagaatcgaccagtgcctgcatcaggtctgcgcccttttccatctcaaccatcggtacgccgtcctgcgccagctgttcgaagtccgcttcactcagcgcactcaaagaaccgctgaacaggcattcggtaatacgttttgccgcctgtaaaccttcttcaccgtgaaccagacgagtcacctgctccgccagtacatactgggcgcgcggtgctttaccgctgtttttatcttcttcttccagggcgttgatctcttcaatgctcataaaggtgaagaacttcaggaagcggtaaacgtcggcatccgcagtgttgatccagaactggtagaatttgtacgggctggttttcttcggatccaaccagactgcgccgccttcagttttaccaaatttggtgccatctgctttagtgatcagcggaacggtcaggccaaacacctgattctgatgcagacgacgggtcaggtcgataccagaagtgatgttaccccactggtcagaaccaccaatttgcagcaccacaccgtactgtttgttcagacaggcgaagtcataaccctgcaacaggttgtaggaaaactcagtgaacgaaatcccctgatcttcacggttgagacgctgcttaaccgcttctttgttgatcatctggttaacggagaagtgtttgccaatatcgcgcaggaaggtcagcacattcatattgccgaaccagtcatagttgttcgccgcgatagcagagttttctccacagtcgaaatcgaggaacggggcaacctgcttacggattttgtccacccactcctgaacagtttcttcggtgttcagcttacgctcggcagctttgaagctcgggtcgccaatcagacccgtcgcgccgcctaccagcgcaaccggcttgtggcccgcctgctggaagcgtttcaggcataacaatggaacaagatgccccaaatgcaagctgtcagcggtaggatcgaagccgcaatagagcgcgatcgggccttgcgccagtcgctctgctaacgcttcctcgtccgtcacctgggctaccagcccccgctcttgcaattgtttaatcaagttactgcttgccatcaaaatctccatgtatataacgactgcacctttgccggtacacgacttttcgccagatgcgaaagagacatagaataaagtgccagaatcaggagtaccagcgattaaagcaagatttttgcatcttttcagggtgcaagacgatcaatcttccacgcatcattttcacgctggtacaaaaagcggtcatgcaggcgatgctcaccaccctgccagaactcaatctgttcaaggctgacgcgaaaaccgccccaaaagctcggcaatggcacttcgccctgttgaaacttctgcttcagctccaggaatttactttcaaggataccgcgggcagaaatgcgactggactgcttcgaaacccatgcaccaatctggctatcacgcgggcggctatgaaaatatttcatcacttcgagagtcgaaagtcgttctgctttaccgatcaccatcacctggcgctcaagggtatgccacgggaacagcaggctaacgcgcggattattttcgatttgatgtgctttacggctgccgaggttggtgtaaaacaccatgcctttttcgtcgtaatgtttgagtaaaacgatgcgctgataaggctgaccatgttcatccacggtagcgaccaccatcgcggtagggtccgccagtttggcttcacaagcctgagagagccaacgttcaaaaagggttaatggatcggcgggaagatcgcggcggcgtaacccgcctttggtgtattcacggcgcagatgcgcgatttgctgcaattcgtcgttatcagacatggttttctttacggattgtcagtgggtgacgctattgtgcgccgcccctggaaaaatctcaacgctgtggattttgtaactgacagttattcaagacgatgcggtcgcgtttatagacagtcgcttcatcgcctttcgaccagaaaacatagattccgtcagtgtaacgcgcgccagaggctgaaatgccctgtttgagatgcagtagttgattatcgtaaacaaaactgacctcctggcgcggattattcagtttgaccgtcaacggtttttcatcacactggtattccagcgtatcggtttgcatgcgctcaaccagctgattaaaggcgctacagccggagagaaggaccggcaaaatgataattaacagttttttcatagtcatatcccgaagactttcctggtctggagggcaatacgccctccctaacgttccaagtgtaacggcagacgcggtaagaaaaattcagttaactctgatatcacgggttagcggggaaaatagcccccagtaccgtctcctggcttgcgccagtgacggaaggcagatttcctggtaatcccgccagcgtccgccaggcaagccaggcgaaagccaatgcttccatgtcatcgccactaatgccaacggcatcggtggtggtgacttctgtgcctggcagtaatgccgccagacgcgccatgagtagcggattacgactacctccaccacataccatcaatcgttcgcagccaccgctcaacaaaacttgttcagaaatggtcacggcggtgagttctgccagtgtcgcctgcacatctcggggatcaacacccggaaaatggcgcaaatggcgctccagccaaccatagttaaagtattcgcgtccggtgcttttcggtgcaggttgcgagaaatacgggtcgctgagcatattttgcagcagtgggagaataactttacccgcccgtgcccactcggcatctttatcgtaaggtttaccggcctgacgccagatccaggcatccatcagcatgttaccaggaccggtatcgtagcccccaaccggctgcccaggaatgagcagtgacagattggcgatgccgccaatattgagcaccattcgtcgctcggttgggtgagccagcagcgcatgatggaacgcaggtaccagcggtgcgccttgtcctcccaaggcaatatcgcgacggcgaaaatcaccgacaaccgtaattccggtgcgtgccacaatttgattgttatcgccaatctgtaaagtgtgtggtgccacgcccgtcggttcatgccagacggtttgaccgtgacaaccgatcgcaactatatctcttgcctgcagattttgttccttaagcaaggcattgaccgcatcagcaaaaagttgcccgagttgagtatcaagctgtccaaactgcgaaagtgtaagctgctggccctggcaaatatccagtacagcctgtttcagagataccgggatcggccaactcaaacttgccagctgtgcgacccggtgttcatcaattgtcgccaacacaacatcaacaccatcaaggctggtgcctgacataacgccaataaagcggcccgatttcatagttcatcctttttcaatctgacgtttgcgcaccactcaaacataaacttttcgtgaataccatgcggaatgaccgatttttaccgttggtagtaaaacattatcttcaaatcaataatcatcatgaatgttttgtttataattggttgatcctactttcattatgatttgctcatatttggtagaacatgtaaccatggattcacatatgccatatactttgaccatgagggatgcttgcgtggcgtttcatggtgaacaggagatttttcaatgattaaacgcgtattggttgtttcaatggtaggtctgtctcttgtcggttgtgttaataacgacaccctgtcaggggatgtttataccgcttctgaagcgaaacaagtacagaatgtcagctatggcaccatcgttaacgtacgtccggtacagattcagggcggtgatgattccaacgttatcggtgcaattggcggtgctgttcttggtggtttcctggggaatactgttggtggcggaaccgggcgttctctggctactgcagcaggcgctgttgcaggtggcgtaactggtcagggcgtacagagtgcaatgaacaaaacgcagggtgtcgagctggaaattcgtaaagacgatggtaataccatcatggtggtacagaaacaaggcaacactcgtttctctccgggccaacgtgtcgtactggccagcaatggcagtcaggtgaccgtttctccgcgctaaataagtttgcgtgtggtcaggttactgaccacacgcccccttcatttcaccctttggcctgtaactcaatgatattatgctcaagttttgcgatgagcgtaatcagttgctccagttcctctgcggagatgccatgtaatatttccgcgcgggttttgttaataacagcttccatttcgctgatcagcggctctgccttttccgtcagtttaatacgtttagcccgacgatcgctggcacaagtttgacgcgaaattaaccctttttcttccagttggtccagagtacggaccagtgatggctgctcgatgccaatcgcttttgccagttgaatttgcgactggtctggaggtaactgatggatattgtgtaacgtaacccaatgggtttgtgttaactccagcggtttcaggcgatggtctatcagagcacgccatatgcgcaccaaccgtgccagatcagaacctagtggcgattccaatttcatctccttataattagcttgctaagatattatgcggcttttagaatagtgtgcagcaattgtattgctaaaacaaatgtattgctgcatttggttaccgtcagacatatttttcagaaattgcgcgtaaatttttcgcacttaaagaatatttattaatctaacgcaatatattcggtcgtaaaggaatctactttgtgaagtttatgctcaatgcaacaggattgcccttacaagatctggtgttcggtgcgtccgtctactttcctccgtttttcaaagcattcgcgtttggattcgtcatctggcttgtcgtacaccgcctgcttcgtggctggatctacgccggtgacatctggcatcccttgttaatggatttatcgctgtttgcgatttgcgtttgccttgctctggcaatactgattgcgtggtaactatgtcaattaaaacaattaagtatttctcaacaatcattgtagcggtagttgcggttcttgccggatggtggctgtggaattattacatgcaatctccgtggacacgcgacgggaaaatacgcgcagaacaggtttctatcaccccacaggtgtcgggacgtattgttgagctgaatataaaagacaaccagctggttaacgcgggggatcttctgctcacgatcgataaaacgccctttcagatcgccgagctgaacgcacaggctcagctggcgaaagcgcaatctgacctcgcaaaagccaataacgaagcgaatcgtcgtcgtcatctctcacaaaattttatttctgccgaagaactcgataccgctaacctcaatgttaaagcgatgcaggccagtgttgatgccgcacaggcgacgctgaaacaggcacaatggcaactggcgcaaacggaaattcgcgccccggtgagtggatgggtgactaaccttactacccgcatcggcgattacgctgataccgggaaaccgctgtttgcccttgtcgacagccactcgttttacgtcattggttattttgaagaaaccaagttgcgccatatccgcgaaggtgcaccagcacaaattaccctctatagtgataacaaaacgttacagggtcacgtttccagtatcggtcgggcgatttatgatcagagcgttgaaagtgactcaagccttattccggatgttaaacctaacgtcccctgggttcgactcgcccaacgcgttcccgtccgctttgcgctggataaagtcccaggcgatgtcacgttggtgtcgggcaccacctgtagcattgccgtaggtcaataatgaacgcatcgtcatggtccttgcgcaatttgccctggttcagggccacgctggcgcaatggcgttatgcgttacgcaataccattgccatgtgtctggcgctgacggttgcctattatttaaatctggatgaaccctattgggcgatgacctcggctgcagtggttagctttcccaccgttggcggtgttatcagcaaaagcctcggacgcatcgctggcagtttgctcggagccattgcggcactgcttcttgccgggcatacgctcaatgagccgtggttttttctattgagcatgtcggcgtggcttggcttttgtacctgggcctgtgcgcacttcacgaataacgtcgcgtatgcatttcaactggcgggctacacggctgccatcatcgcctttccgatggttaatattactgaggccagccagctgtgggatatcgctcaggcgcgcgtttgcgaggtaatagtcggtattttgtgcggcggcatgatgatgatgatcctgccgagcagttccgatgctactgcccttttaaccgcattgaaaaacatgcacgcccgattactggaacatgccagtttactctggcagcctgaaacaaccgatgccattcgtgcagcacatgaaggggtgattgggcagatactgaccatgaatttgctgcgtatccaggctttctggagccactatcgttttcgccagcaaaacgcgcgccttaatgcgctgctccaccagcaattacgtatgaccagtgtcatctccagcctgcgacgtatgttgctcaactggccctcaccgccaggtgccacacgagaaattctcgaacagttgctgacggcgctcgccagttcgcaaacagatgtttacaccgtcgcacgtattatcgccccgctacgcccgaccaacgtcgccgactatcggcacgtcgccttctggcagcgactacgttatttttgccgcctttatctgcaaagtagtcaggaattacatcgtctgcaaagcggtgtagatgatcataccagactcccacggacatccggcctggctcgtcataccgataacgccgaagctatgtggagcgggctgcgtacattttgtacgttgatgatgattggcgcatggagtattgcttcgcaatgggatgccggtgccaatgcattaacgctggcagcaattagctgcgtactctactccgccgtcgcagcaccgtttaagtcgttgtcacttctgatgcgcacgctggtgttactttcgctattcagctttgtggtcaaatttggtctgatggtccagattagcgatctgtggcaatttttactgtttctctttccactgctggcgacaatgcagcttcttaaattgcagatgccaaaatttgccgcattgtgggggcaactgattgtttttatgggttcttttatcgctgtcactaatcccccggtgtatgattttgctgattttcttaacgataatctggcaaaaatcgttggcgtcgcgttggcgtggttagcgttcgccattctgcgtccaggatcggatgctcgtaaaagccgccgccatattcgcgcgctgcgccgggattttgtcgatcagctaagccgccatccaacactgagtgaaagcgaatttgaatcgctcacttatcatcacgtcagtcagttgagtaacagccaggatgcgctggctcgccgttggttattacgctggggtgtagtgctgctgaactgttctcatgttgtctggcaattgcgcgactgggaatcgcgttccgatccgttatcgcgagtacgggataactgtatttcactgttgcggggagtgatgagtgagcgtggcgttcagcaaaaatcactggcggccacacttgaagaattacagcggatttgcgacagccttgcccgtcatcatcaacctgccgcccgtgagctggcggcaattgtctggcggctgtactgctcgctttcgcaacttgagcaagcaccaccgcaaggtacgctggcctcttaattacttaattacaccacaggcatagcgttcaccgccaccgcccagcggtttaggttgatcggacatattatcgccgccaacgtggaccatcagcgctttgtctttgatttcatccagtgatttcagacgaggcgcgatgacggcatcggtagctttgccgtcattattgacgaccagtgcaggcagatcgcctaaatgcccggcaccttctggcccttcatgtttaccggtattttgtggatcaagatgcccgcctgcggattccgcggcgctggctttgccatctttggtggctggctggcagcttcctttggcatgaatatggaagccatgttcaccggggggtaatgctttcagatcgggcgaaaactccagacctttatcggtttcagtaatggtgacgctaccaattgactgccctaccccttgcgacgtgacgaggttcatctcgactttttcactggcagcttgtgcgccggttgcaacaaccagcgccagaatagccagactaaaacgtttcataggacctccgttcattgtgcattcctgaataagtgtaaaccagtgacacatttttgaacggcggctattcctaaaagtgcttacggtacgtcgtaccccagtgccgctttacggatacgaaaccattgttgacgggtcattttcagtgtttctgcttcgacagctgcccgtacgcgctcaattttacctgaaccgataattggcagcggctgcgatggtaaacgtaatacccaggcgttaaccacctgttcaatcgagcccgcgtttaactcctctgccaccacagccagttcatcacgcagcggctggaaataatcatcattaaacagacgaccaccaccaaggcaggaccacgccatcggacgaacacgcagttgttgtagttggtcgagcgtgccatccagcagtaacggctgatgcaccggggatatttccacctgattagtggcaagggtaaacggcagacgtgattgcaacagggcaaattgcgcaggcgtaaagttcgatacgccaaaatgacgcactttgccgctctgatgcagatgtttgaacgcgtccgccacttcatcggcatccattaacgggtctggtcggtggattaacagcaaatccagatgatcggtcgcgagattaattagcgactgttcggcgctcttaatgatgtgatcgcggtcagtgatgtaatgaccaatgacgttttcttcacgcgcggtcgtcgcgataccgcatttactgacgatttccatccgttcacgcaggtgaggtgccagtttcagtgcctcgccaaacgccgcttcgcactgatagccaccataaatatcagcatggtccacggtggtcacgccgagatccagatgctcttcaataaaactgaccagctggcgggcggacatattccagtccatcaatcgccagtagcccatcacaaaacgggaaaactccgggccttgcggcgcaatagtaatacgctgaaccataatcgcttcctcttatcagatatgagaggagtatacgcaagattaggttcaaaagagtgatggttgctccggttcgtctgatgacgctggcttatttgcgcgtaatttgcgcattaatcgctgccgacaaaggcgcagcacctcttgtttttcgccatcgctcattttattccagttaaaacgctcatcacgactacgaaaacagccgcgacaaaacccgcgttcgtcagactggcaaattccccggcacgggctctggacgggaaagaactctaattgctccgccacttcgccctcctcagataagattattaccattattgaagctgttaatgtccaaagtagcaactttgcttgcactagaccgactggtctactacactccaacgcatgaacaaacacaccgaacatgatactcgcgaacatctcctggcgacgggcgagcaactttgcctgcaacgtggattcaccgggatggggctaagcgaattactaaaaaccgctgaagtgccgaaagggtccttctatcactactttcgctctaaagaagcgtttggcgttgccatgcttgagcgtcattacgccgcatatcaccagcgactgactgagttgctgcaatccggcgaaggtaactaccgcgaccgcatactggcttattaccagcaaacactgaaccagttttgccaacatggaaccatcagtggttgcctgacagtaaaactctctgccgaagtgtgcgatctgtcagaagatatgcgcagcgcgatggataaaggtgctcgcggcgtgatcgccctgctctctcaggcgctggaaaatggccgtgagaaccattgtttaaccttttgtggcgaaccgctgcaacaggcacaagtgctttacgcactgtggcttggcgcgaatctgcaggccaaaatttcgcgcagtttcgagccactggaaaacgcgctggcccatgtaaaaaacattattgcgacgcctgccgtttagcaggcattttttatcaccagacgaccgggagcctttatgtcatctgaaaaactgtattccccactgaaagtgggcgcgatcacggcggcaaaccgtatttttatggcaccgctgacgcgtctgcgcagtattgaaccgggtgacattcctaccccgttgatggcggaatactatcgccaacgtgccagtgccggtttgattattagtgaagccacgcaaatttctgcccaggcaaaaggatatgcaggtgcgcctggcatccatagtccggagcaaattgccgcatggaaaaaaatcaccgctggcgttcatgctgaaaatggtcatatggccgtgcagctgtggcacaccggacgcatttctcacgccagcctgcaacctggcggtcaggcaccggtagcgccttcagcacttagcgcgggaacacgtacttctctgcgcgatgaaaatggtcaggcgatccgtgttgaaacatccatgccgcgtgcgcttgaactggaagagattccaggtatcgtcaatgatttccgtcaggccattgctaacgcgcgtgaagccggttttgatctggtagagctccactctgctcacggttatttgctgcatcagttcctttctccttcttcaaaccatcgtaccgatcagtacggcggcagcgtggaaaatcgcgcacgtttggtactggaagtggtcgatgccgggattgaagaatggggtgccgatcgcattggcattcgcgtttcaccaatcggtactttccagaacacagataacggcccgaatgaagaagccgatgcactgtatctgattgaacaactgggtaaacgcggcattgcttatctgcatatgtcagaaccagattgggcggggggtgaaccgtatactgatgcgttccgcgaaaaagtacgcgcccgtttccacggtccgattatcggcgcaggtgcatacacagtagaaaaagctgaaacgctgatcggcaaagggttaattgatgcggtggcatttggtcgtgactggattgcgaacccggatctggtcgcccgcttgcagcgcaaagctgagcttaacccacagcgtgccgaaagtttctacggtggcggcgcggaaggctataccgattacccgacgttgtaatccaacattgcgagcggcgtaaagccgccgctatactaaaacaacattttgaatctgttagccattttgaggataaaaagatgcgtcttcttcataccatgctgcgcgttggcgatttgcaacgctccatcgatttttataccaaagtgctgggcatgaaactgctgcgtaccagcgaaaacccggaatacaaatactcactggcgtttgttggctacggcccggaaaccgaagaagcggtgattgaactgacctacaactggggcgtggataaatacgaactcggcactgcttatggtcacatcgcgcttagcgtagataacgccgctgaagcgtgcgaaaaaatccgtcaaaacgggggtaacgtgacccgtgaagcgggtccggtaaaaggcggtactacggttatcgcgtttgtggaagatccggacggttacaaaattgagttaatcgaagagaaagacgccggtcgcggtctgggcaactaatctcctgccgggcgtgaactcatcgcgcccgcatctttactgcatcgacaagtaatatttgtcataatgcgcgctgcaatttatccgtattaagagaatcagatgtccgataacgctcaacttaccggtctgtgcgaccgttttcgtggtttttatcctgttgtgatcgatgttgaaacagccggatttaacgccaaaaccgatgcgctgcttgagattgccgccatcaccctgaaaatggatgaacaaggctggctgatgccggacaccacattacatttccacgtcgaaccatttgtcggcgcaaatttgcaaccagaagccctcgccttcaacggcattgacccgaacgatcccgatcgcggcgcggtcagcgaatacgaggcgctgcacgaaatttttaaagttgtacgtaaaggtattaaagcgagcggctgtaaccgcgccattatggtggcgcacaatgccaattttgatcacagctttatgatggccgccgcagaacgcgcctcactgaaacgtaacccgttccaccctttcgccacttttgacactgctgcactggccgggctggcactcggacaaaccgtattgtcaaaggcttgccagaccgctggcatggacttcgacagcacccaggcgcactccgcgctgtacgacaccgaacgcactgctgtgctgttttgtgaaatcgtcaaccgctggaaacgtctgggaggctggccgctatctgccgccgaagaggtgtaatcgagtcgatgcctgatgacatgcaatgattcaggcatctatagtgaggctattccacgcatcctgcatgatattcacggggaatagcgttaatggcagataatccagacccttcatcgctcctgccggacgtgttttcaccggcgacccgcgactggtttcttcgcgcctttaaacagccgaccgctgtccagccgcaaacctggcatgtggcggcgcgaagcgaacatgcgctggtgattgcaccgaccggctccgggaaaacgctggcagcatttctctacgccctcgatcggctcttccgcgaaggcggcgaagatacccgcgaggcgcataagcgtaaaacctcacgcatcctctatatttcaccgataaaagccctgggcaccgacgttcagcgcaacttgcagatcccgttgaagggtattgccgatgaacggcggcggcgcggcgaaacggaagtcaatcttcgcgtagggatccgtactggcgatacgcctgcacaggaacgcagcaaactcacccgtaatccgccggatattctgatcaccacacccgaatcactctatctgatgctgacctcccgcgcgcgcgaaacgctacgcggcgtcgaaacggtaattattgatgaagtccacgcggtagcgggcagtaaacgtggtgcgcatctggcgttaagtctggagcggctcgatgcgctgctccacacctcagcacagcgaattggcctttctgccactgtgcgctcagccagcgatgtggcagcatttcttggtggcgatcgcccggttacggtagtcaacccgcccgcaatgcgccatccgcagatacgaattgtcgtaccggtcgccaatatggatgatgtctcatcggtcgccagcggcaccggcgaagacagccatgccggccgggaaggctccatctggccatatattgaaacgggtatccttgatgaagtgttgcgccatcgctcgaccattgtctttactaattcgcgggggctggcggaaaaactgacggcacgattaaatgagctttacgccgcacgcttacagcgttccccgtctatcgccgttgatgcggcccatttcgagtcgacctccggcgcaacctctaaccgtgtacaaagtagcgacgtttttattgcccgctcacaccacggctccgtctctaaagaacaacgagcaatcaccgaacaggcgctgaaatcgggtgaattacgctgcgtggtcgcaacctccagtcttgaactggggattgatatgggcgcggtggatctggtgattcaggtggcaacgccgctttctgttgccagtgggttacaacgcattggtcgcgccggacatcaggttggcggtgtatctaaagggctgtttttcccccgtacccggcgtgatttagtcgattccgcagtcattgtagagtgtatgttcgcaggcaggctggaaaacctgacaccaccgcataatcctctcgacgtccttgcgcagcaaaccgttgccgccgcggcgatggatgcattacaggtagacgaatggtactcccgcgtacgccgtgccgcaccgtggaaagatctgccaagacgtgtttttgacgccacgctggatatgctttccgggcgctatccctctggcgatttttctgcttttcgccccaaactggtctggaacagggagaccgggatattgaccgcccgacctggcgctcaattgttggcggttaccagcggcggcaccattccggatcgtggcatgtatagcgtgttattacccgaaggtgaagaaaaggccggttcgcggcgggtgggtgaactggatgaggagatggtatatgagtcgcgggtgaacgacattatcactctcggcgctacctcatggcggatccagcaaatcacccgcgatcaggtgattgtgactcctgctccgggtcgttctgcccggctccccttctggcgtggtgaaggtaacggacgtccggctgaattaggcgagatgatcggcgattttcttcatttgctggcggatggcgcgttcttttccgggactattcccccgtggctggcagaagaaaatacgatcgccaatattcaggggttgattgaggagcagcgcaacgcgacgggcatcgttccggggagtcgccatctggtcctcgaacggtgccgtgatgaaattggtgactggcgtattattttgcactctccctatggaagacgggtgcatgaaccctgggcggtggcgattgccgggcgaatacatgcgctatggggcgctgacgcgtcggtggtcgccagtgatgacggcattgttgcacgtattcctgacaccgatggtaaattgcccgatgccgcgatttttttgtttgaaccagaaaagttgctgcaaattgtccgcgaggcggtaggcagctcggcacttttcgccgcccgttttcgcgaatgcgccgcgcgggcattattaatgccggggcgcactccgggccatcgcaccccgctttggcaacaacggctgcgcgccagtcagttgctggaaatcgctcagggatatccggattttccggtcattctcgaaaccctacgcgaatgtctgcaagatgtttatgatcttcccgcactggaacgtttgatgcgtcgcctgaacggtggcgaaattcaaatatccgatgtaacgaccactacgccctcgcctttcgccacaagtttattgttcggctatgtcgcggaatttatgtaccagagcgacgccccgctggcagagcgccgggcatccgtactgtcgctggacagcgagttactgcgcaatctactcggacaggtcgatccgggggaattactcgacccgcaggtcattcgccaggtggaagaagagttgcaacgactggctcctggcagaagagcgaaaggtgaagaaggattgttcgacctgctgcgcgaactggggccaatgaccgttgaagacctggcgcaacggcatacaggcagcagtgaagaggttgcgtcgtatctggaaaatcttcttgcagtaaaacgaatcttcccagcgatgattagcggacaggagcgtcttgcctgtatggatgatgccgccaggctgcgtgatgccctcggcgtacgactaccagagtcattgccagagatttatttacatagagtcagttacccgcttcgcgacctctttctgcgctatctccgggctcatgctctggtcacggctgaacaactggctcatgagtttagtctcggtattgccattgtcgaagagcagcttcagcaactgcgtgaacagggtctggtgatgaatctgcaacaagacatctgggtgagcgatgaagtatttcgtcgtctgcgtttgcgctcgctgcaagccgccagagaagcgacgcgtcccgttgcagccacgacctatgcgcgattgctgctggaacgtcagggcgtattacccgccaccgatggtagcccggcgctctttgcctcaacatcgccaggcgtttatgagggcgtagatggcgtgatgcgggtgatcgaacagcttgccggagtcggtttacccgcctcactctgggaaagccagatcctgcctgcccgcgtacgcgactattcgtcagaaatgctcgatgaattactggcaaccggtgcggttatctggtcggggcaaaaaaaactgggtgaagatgacggcctggtggcactgcatctacaggaatatgctgcagaatcgttcactcccgccgaagcggatcaggcgaatcgttcggcgctgcaacaagcgatagtcgctgttctggctgacggaggagcctggtttgcacaacaaatcagccaacggatacgcgacaaaatcggcgaatcggttgatctctctgccctgcaagaggcgttatgggcgctggtctggcaaggcgtcatcaccagcgacatttgggcaccgttacgcgccctcacccgcagcagttccaacgcacgcacctcaactcgccgcagtcaccgggctcgtcgtggacgtcctgtctatgcgcaacccgtctcgccgcgggtatcttacaacacaccaaatctggctggacgctggtcgttattgcaggtggagccactaaacgataccgaaaggatgctggcgctggcggaaaatatgctcgaccgctacggcatcatcagtcgtcaggcggtgatagccgaaaatatccctggcgggtttccatcgatgcaaacgctttgtcgaagtatggaagactccgggcgaattatgcgaggtcgttttgtagaaggtctgggtggcgcgcaattcgctgaacgtctgactattgaccgattgcgcgatctggcgacacaagccacgcaaacgcgccactatacaccagtggcgctctctgccaacgatccggctaatgtgtggggaaatcttctgccctggcctgcacatccggcaacgctggttccaacgcgtcgggcgggtgcgctggtggtcgtttctggcggcaaattgttactctatctggcgcaaggtggcaaaaaaatgctggtctggcaggaaaaagaggaattactcgccccagaggttttccacgcgctgactaccgcactgcgtcgcgaaccacggctgcgctttacgctaacagaagtgaatgatctaccggtccggcaaacgccgatgtttacgctgctgcgtgaggcgggattttcaagttcgccacaagggctggattggggatagagaaaggactgacggatgcccgttcgcatccgtcagtattgcaggacggattattccgcgtccggctcttcagacttgtatttagcggcagtttctttgatcagctgctgcagttcgccacgctgatacatttcgatcacgatatcacaaccgccgaccagctcgccgtcaacccacagttgcgggaaggtcggccagttagcatatttcggcagttccgcacgaatgtccggattctgcagaatatcaacataggcaaaacgttcgccacatgcggcaagcgcctggactgcctgggcagagaaaccgcagctcggcagtttcggtgaacctttcatgtacagcaggatcgggttttcagcaatctggcgttggattttttcgatagtggtgctcattgtcttgcttcctcaaacttctttacggcagtaatctgacattgtagcgggtcagtgcggcatcggaaaataacattttcatcacgcttttgctattttatccctttgctctatttgttgcatttcaaatattcgtttcttctctgatgccggcaaactggcgtatttataaccatttttagctttcactgctgcatttttttgcgctcgccaacgaaacgtattttttaacaataaaagctattaactttctcttcttctatgcattagaatcatcaagttttgtaaatcagacgcaggcatgatagacctgcctttacagagggacgctcagtggcgcggataaaccgtatttcgatcacgctctgtgctttactttttaccaccctgcctttaacgcctatggcccatgcttcaaagcaagccagggagagttctgctaccactcatatcaccaaaaaagcagataaaaagaaaagcacggcaaccaccaaaaagacccagaaaacagcgaaaaaagccgccagtaaaagtacgaccaaaagcaaaaccgcttcttccgttaaaaaatcttccattaccgcttctaaaaacgccaaaactcgcagcaaacacgccgtcaataaaacggcctcagccagctttaccgaaaagtgtaccaaacgtaagggctataaatcgcattgtgtgaaagtcaaaaatgccgcgtcaggaactcttgccgacgcgcacaaagcgaaggtgcaaaaagctacgaaagtggcaatgaataaactgatgcagcaaattggtaagccatatcgttggggtggcagctcaccgcgtaccggttttgattgcagcggcctggtttattacgcttataaagatttggtgaaaattcgtattccgcgtacggcgaatgaaatgtatcacctgcgtgatgcagcgccaatcgaacgtagtgaactgaaaaacggcgacctggtctttttccgtactcagggacgcggcacagccgatcatgtcggcgtgtatgtcggcaacggcaaatttattcagtcaccgcgcacaggtcaggaaattcaaatcacttctctcagtgaagactactggcagcgccactatgttggcgctcgtcgggtaatgaccccaaaaacacttcgctaaaactttaccctgttgttacggcaacagggtaagttcatcttttgtctcaccttttaatttgctaccctatccatacgcacaataaggctattgtacgtatgcaaattaataataaaggagagtagcaatgtcattcgaattacctgcactaccatatgctaaagatgctctggcaccgcacatttctgcggaaaccatcgagtatcactacggcaagcaccatcagacttatgtcactaacctgaacaacctgattaaaggtaccgcgtttgaaggtaaatcactggaagagattattcgcagctctgaaggtggcgtattcaacaacgcagctcaggtctggaaccatactttctactggaactgcctggcaccgaacgccggtggcgaaccgactggaaaagtcgctgaagctatcgccgcatcttttggcagctttgccgatttcaaagcgcagtttactgatgcagcgatcaaaaactttggttctggctggacctggctggtgaaaaacagcgatggcaaactggctatcgtttcaacctctaacgcgggtactccgctgaccaccgatgcgactccgctgctgaccgttgatgtctgggaacacgcttattacatcgactatcgcaatgcacgtcctggctatctggagcacttctgggcgctggtgaactgggaattcgtagcgaaaaatctcgctgcataataactgatggcaaatgcagcattgcctgaagcgctacgcttatcaggcctacgcggatcatcgatgtaggtcggataaggcactcgccgcatccggcaagataaatcgcacgttgtcagcaactgtaacgcagaaggttatccttctgcgtttttgtttaattagctgttagcaacgcaaactgtttcaggttgttttctggctgacataaacaccagcaataatgccagtcccgcgacaatcgctcccatcaccggcacaaagctgtatcccagcccagcggaaattaccgcaccaccagcagctgctcccagcgcatttccaagattaaaggcaccaatattgactgatgaagacagacctggcgcttcactggcgacacgcatcacgcgcatctgtaacggcggtacgaccgcaaaggttgctgcgccccacaccaccatgctaatagctgcgccgaactcattgcgggccaggaacgggattgccagcataatcaccatcaacaacaacaaaaagcctttcaacgtgccgttaactgaacgatctgccagtttgccgccgagatagttaccgatagagaatccgacaccaatcagcaccagcattgccgtgacgaacaccggtgttgcgtgggtaatactttgcagtaccggagagatataggtgtagagagtaaacattgcaccagctcccagtaccgtcgtcagcaatgcagacagcacctgcggacgcattaataccgccagctcttttttcacttcaggtcgtgcccctgcaccacctttaggtaatgagaagaacagacttaccattgaaatcactcccagccccgccgttgccagaaatgacatccgccagccgatggtttcacccaaccaggtcgccgccggcacgccaccgatatttgccagggttaaccccataaacatagtggcaactgcgctggcctgtttatgttttggcaccacgcttgcggccacgactgaacccaaaccaaaaaatgctccgtgattcaggctggtcaaaatgcgtgaaagcatcagggtcatataatccggcgcgatggcggaaagtacgttgccgagcgtgaaaattgccatcaggaaaatcaacgcactgcggcgggcacgatgagaaagtagaagcgtcatcagcggcgcgccaaccattacgccaactgcataggcactgattaacattccggcagcgggaatcgagacatccacaccgcgcgcaatgacgggcaacaagcccattggcgagaactccgttgtcccgataccaaacgcgccaatcgccagcgccagcaacggatagttaattttcatgccttatctccacctcttcgcgtcattacgcgatattcattaaagtggcgaaagcatgacagcaatcacaaaaaaatgaaaataacaaaaagagaaaacacttttgccattttgctaacaaacaggaaggagatgcgagggagaacgcgctccctcgagaggaaatcagtgcagcgcggcagtcaaacccacggctacgatcaaaccgaggacgataatcgttgttaccagtgaaaatttaaggtcggtgctcatcaagttttctccttttttattaccacacaaaaagtgatattacgcatttttacacactgtgatgaaaaaatctcccgtcatttataatgataagtgtttttaccacttccccttttcgtcaagatcggccaaaattccacgcttacactatttgcgtactggccattgaccccttcctgacgctccgtgtcgtttttccggcgtaccgcaacacttttgttgtgcgtaaggtgtgtaaaggcaaacgtttaccttgcgattttgcaggagctgaagttagggtctggagtgaaatggaatggcaacaataaaagatgtagcgaaacgagcaaacgtttccactacaactgtgtcacacgtgatcaacaaaacacgtttcgtcgctgaagaaacgcgcaacgccgtgtgggcagcgattaaagaattacactactcccctagcgcggtggcgcgtagcctgaaggttaaccacaccaagtctatcggtttgctggcgaccagcagcgaagcggcctattttgccgagatcattgaagcagttgaaaaaaattgcttccagaaaggttacaccctgattctgggcaatgcgtggaacaatcttgagaaacagcgggcttatctgtcgatgatggcgcaaaaacgcgtcgatggtctgctggtgatgtgttctgagtacccagagccgttgctggcgatgctggaagagtatcgccatatcccaatggtggtcatggactggggtgaagcaaaagctgacttcaccgatgcggtcattgataacgcgttcgaaggcggctacatggccgggcgttatctgattgaacgcggtcaccgcgaaatcggcgtcatccccggcccgctggaacgtaacaccggcgcaggccgccttgccggttttatgaaggcgatggaagaagcgatgatcaaggtgccggaaagctggattgtgcagggtgactttgaacctgaatccggttatcgcgccatgcagcaaatcctgtcgcagccgcatcgccctactgccgtcttctgtggtggcgatatcatggcaatgggcgcactttgtgctgctgatgaaatgggcctgcgcgtcccgcaggatgtttcgctgatcggttatgataacgtgcgcaacgcgcgctattttacgccggcgctgaccacgatccatcagccaaaagattcgctgggtgaaacagcgttcaacatgctgttggatcgtatcgtcaacaaacgtgaagaaccgcagtctattgaagtgcatccgcgcttgattgaacgccgctccgtggctgacggcccgttccgcgactatcgtcgttaatcacccgttgcgggagtctcttccggctcccgcagccactccttattcagcgtctcactatcgccgagatactcaagcaaccaggttaacgcaggcgacatatcattttgctgccatgtcagacaacatgccgaatccggaaaggggttttccagttctaatgctacccacttcccctcattaagccacggtttggcgaaatgtgttggcaccatccctatgcataatcctgccgagatacaggttgccgatgattcccagtcaggcacgacaactcttttttggttatccagcaaccaggtaatacgtttaggtagcgttcgcgaggtgtcttcgcgcaccaacgacggccagttgcgcaacgtatcatcgctgaacgggccatccatcaacgccagcgggtggtgactggcaacaacgcaactccagcttagcatccccatatcccggaaggcataacgaccgcctaccggaatcgcgcgtgttgcgccaatcgccagttccacgcgcccgtcggaaagcgcatcccagacaccgttgaacacttcctgaaagacaagaagttcgacatcatcaaaatggcgataaaaatcaacgatcatctgccgtgtacgttctggcctgacaatattatccactgcgatagctaactgaccgcgccagccgttcgctatctgctgacattgctggcgggtgatctgcatttttttgacaacagagcgcccttctttgagaaaccacgctccagcagcggtcagctccacatcacggtgccgtcgttcaaagagcggcaccgccagccactcttccagctgacgcacggtatagctgaccgcagaaggaacgcgatgcagctcctgtgccgcagcgctaaaactaccattacgcgctaccgcatcaacaacttcgagtgaatattctgaccacatagtctgcctgcaaaatttttgaaaccagtcatcaaatattaccgtttcacaacactaatttcactccctacactttgcggcggtgtttaattgagagatttagagaatatacatgcaacctgggaaaagatttttagtctggctggcgggtttgagcgtactcggttttctggcaaccgatatgtatctgcctgctttcgccgccatacaggccgacctgcaaacgcctgcgtctgctgtcagtgccagccttagtctgttccttgccggttttgccgcagcccagcttctgtgggggccgctctccgaccgttatggtcgtaaaccggtattattaatcggcctgacaatttttgcgttaggtagtctggggatgctgtgggtagaaaacgccgctacgctgctggtattgcgttttgtacaggctgtgggtgtctgcgccgcggcggttatctggcaagcattagtgacagattattatccttcacagaaagttaaccgtatttttgcggccatcatgccgctggtgggtctatctccggcactggctcctctgttaggaagctggctgctggtccatttttcctggcaggcgattttcgccaccctgtttgccattaccgtggtgctgattctgcctattttctggctcaaacccacgacgaaggcccgtaacaatagtcaggatggtctgacctttaccgacctgctacgttctaaaacctatcgcggcaacgtgctgatatacgcagcctgttcagccagtttttttgcatggctgaccggttcaccgttcatccttagtgaaatgggctacagcccggcagttattggtttaagttatgtcccgcaaactatcgcgtttctgattggtggttatggctgtcgcgccgcgctgcagaaatggcaaggcaagcagttattaccgtggttgctggtgctgtttgctgtcagcgtcattgcgacctgggctgcgggcttcattagccatgtgtcgctggtcgaaatcctgatcccattctgtgtgatggcgattgccaatggcgcgatctaccctattgttgtcgcccaggcgctgcgtcccttcccacacgcaactggtcgcgccgcagcgttgcagaacactcttcaactgggtctgtgcttcctcgcaagtctggtagtttcctggctgatcagtatcagcacgccattgctcaccaccaccagcgtgatgttatcaacagtaatgctggtcgcgctgggttacatgatgcaacgttgtgaagaagttggctgccagaatcatggcaatgccgaagtcgctcatagcgaatcacactgatctatatcgatatacttatacttaggctgctaacaaaattttgttgtatgattgaaattagcggcctatactaatttcgagttgttaaagctacgataaatattatgtttttacggggacaggatcgttcccgactcactatggatagtcatttcggcaagggttcctcctttccctctgttctacgtcggattatagactcgcggttttttctgcgagatttctcacaaagcccaaaaagcgtctacgctgttttaaggttctgatcaccgaccagtgatggagaaactatgagttcatcgtgtatagaagaagtcagtgtaccggatgacaactggtaccgtatcgccaacgaattacttagccgtgccggtatagccattaacggttctgccccggcggatattcgtgtgaaaaaccccgatttttttaaacgcgttctgcaagaaggctctttggggttaggcgaaagttatatggatggctggtgggaatgtgaccgactggatatgttttttagcaaagtcttacgcgcaggtctcgagaaccaactcccccatcatttcaaagacacgctgcgtattgccggcgctcgtctcttcaatctgcagagtaaaaaacgtgcctggatagtcggcaaagagcattacgatttgggtaatgacttgttcagccgcatgcttgatcccttcatgcaatattcctgcgcttactggaaagatgccgataatctggaatctgcccagcaggcgaagctcaaaatgatttgtgaaaaattgcagttaaaaccagggatgcgcgtactggatattggctgcggctggggcggactggcacactacatggcatctaattatgacgtaagcgtggtgggcgtcaccatttctgccgaacagcaaaaaatggctcaggaacgctgtgaaggcctggatgtcaccattttgctgcaagattatcgtgacctgaacgaccagtttgatcgtattgtttctgtggggatgttcgagcacgtcggaccgaaaaattacgatacctattttgcggtggtggatcgtaatttgaaaccggaaggcatattcctgctccatactatcggttcgaaaaaaaccgatctgaatgttgatccctggattaataaatatatttttccgaacggttgcctgccctctgtacgccagattgctcagtccagcgaaccccactttgtgatggaagactggcataacttcggtgctgattacgatactacgttgatggcgtggtatgaacgattcctcgccgcatggccagaaattgcggataactatagtgaacgctttaaacgaatgtttacctattatctgaatgcctgtgcaggtgctttccgcgcccgtgatattcagctctggcaggtcgtgttctcacgcggtgttgaaaacggccttcgagtggctcgctaaaggctattctatcgccccctctccgggggcgatttcagatcaggcttctgtgcctggttgattcatggcattttctcgtgccgccagcacacgttctaccgtatctaccactgcctgagtttgtggatcgatttcaatgttgacgcgtgcgccaagttttttcttcccaagagtcgtgcgttccagtgtttccggaattaaatggacgcaaaaacgcgttggcgtgacttcgccgacggtcaggctaataccgtcgatgccaataaatcctttgtacagaatatatttcatcaactgactatcctggactttaaaccagatctggcgattattttctgaggttaatattttcgccacttcagcagtggtcataatatgacctgacattaagtgtccgccaatttcatcactgaatttcgccgcacgctcaacgtttacccaatcccccacttttaaatcgccaagattggtaatgcgtaacgtttctttcatcaggtcaaaactgacatggttgccgttaatttccgtcacggtcaggcagcaaccgttatgcgccacggaagcaccggtttccaggccgtccagcatgtggtcgggtaactccaccacatgcgtacgaaaatttggtttctcgtcaatcgacaccagttttgcggtgccctgtacaatccccgtaaacatacttacaactcctgaaatcagttaagacattctgttcagcacaatagcaggtggaaaacgcccttaccagtgaaggggtaagaatggctattttttcactggagaattaataaatcctcgctacaatagactgaatttcccctgcttcttctttttgctgcccattcaggcggctttttagtctctcatataactacaaataaaaggtgttcacgtgcagaagtatatcagtgaagcgcgtctgttattagcattagcaatcccggtgattctcgcgcaaatcgcccaaactgcgatgggttttgtcagtaccgtgatggcgggcggctatagtgccaccgacatggcggcggtcgctatcggtacttctatctggcttccggcgatcctctttggtcacggactgctgctggcattaacgccggttatcgcgcaattaaatggttccggtcgacgtgagcgcattgcgcatcaggtgcgacaaggtttctggctggcaggttttgtttccgttctcattatgctggtgctgtggaatgcaggttacattatccgctccatggaaaacatcgatccggctctggcggacaaagccgtgggttatctgcgtgcgttgttgtggggcgcgccgggatatctgttcttccaggttgcccgtaaccagtgtgaaggtctggcaaaaaccaagccgggtatggtaatgggctttatcggcctgctggtgaacatcccggtgaactatatctttatttatggtcatttcggtatgcctgagctcggtggcgttggttgtggcgtggctactgcggcggtgtattgggtcatgttccttgccatggtttcttacattaaacgcgcccgctccatgcgcgatattcgtaacgaaaaaggcaccgcaaaacccgatcctgcggttatgaaacgactgattcaactcggtttgccgattgcgctggcactgttctttgaagtgacactgtttgccgtcgtggctctgttagtgtctccgctcggtattgttgatgtcgcaggacaccagattgccctgaactttagttcactaatgttcgtgcttccaatgtcgctggcggcagcggtaactatccgcgtaggttatcgtctgggtcagggctcaacgctggatgcgcaaaccgctgcgcggaccgggcttatggtgggtgtctgtatggcaaccctgacggccattttcacggtttcactgcgggagcaaatcgccctgttgtacaacgacaatcccgaggttgtaacgctggctgcgcatttgatgttgctggcggcggtatatcagatttctgactcaatccaggtgattggcagtgggattttgcgtggttataaagatacgcgttccattttctatattacctttacggcttactgggtgctgggcttgccaagcggctatattctggcactgaccgatctggtcgttgaacctatggggccagcaggcttctggataggctttattattggcctgacgtcggcagccattatgatgatgttgcgtatgcggttcctgcaacgtctgccgtcagccatcattctgcaacgagcatcccgctaataaagacaaggcgcaaccttcacgggttgcgcctgtatttttacgcaggctggagcgttgcgccaatcccgtcttcgtctggctgtaatttcagagcgttacacagagtttgccgactggcatctgttatctcaacgtgtatatccccggtaacttcccctttcacattgatgaagtcaggtgaaatttcttttgcactggtttgcaggcaaatcgctccctctccgcgcaggcgtttcactttcagttgcacatgcgttgccgcatcagtgatcagccacagttttccaccattcagattgatgttaccaacaatgaaagtgacactgtcaccttttaccgtactgccgtctagaatcaacacaccgccctgctgtacagtaatcgttgattgttgcagctctgcgccataaccaataatcattgaagcgccgtccagtaatgcaacactcccggtcagttcaaccggtgcgcgatcttcctctacgacaaaattttcgtccgcgctggtgggtgacaacaggatcactgtcccaccttgtattaccgcgttttccagcgtaccggcatgcacttcagcccgaccacccacattcacggacaggttttgcgtcttaccggaactgtagagctgaaggccatccgtccccagacgataaatggatccattctcaacaatagtgtcagagtcttcaccaccgagattattcatggtgccaccagcaagcaacgtatcactggctttcccggccagcataaaaacgccgccctgattaatctcacaattgctggcttccccacctggatacaccaacaattcaccaccttcatctaccacgaccgctgaggttgtcccattaaccaacaggccgccctcttgatcgagaatgattttttccgcgcgatgtccttccagtacacgcaggttaccgccattttccagcaacaaaccgcaggcataacctttatcaacgctgaattcaccttcgggatggcggccattaaccgtagcgagcgtagagagactaattgcgcctccctcggactgaacaatatctgtggcaatggcaccatcgctgaccgatagcgtgccattgttaccgtactgtgtgcatttggcgatcccaccggttgccactttcaaccagccagcccccgtgaccacggtattttcggctcttccgccagcttcaacaatcaactcgccttcagtaagttgcgtcgcgccaatgacctcgccggtcttaacaatttgcacgttcccgtcgctcatcaagtttttcgcatcagatcccatgatttattcctttgctgcatctgtgtgcctttattgctacctaagtgtaaaggctacggaggatttatccacgacagatttgagatggtggcaaacaactctgtttaaactctgatacacgaattattgggttgtatcagatgtaaatgcgatcctgaataaaaatcacccttgcaaatcaacaaaatatagccaatttgcttaaaagctctgcaaacggtcgaaatagcgcagaaaattacgttttgcctcttgccaccttcccactctgccgctaatattcgtccccgttgtcacctacaacgttgcgttcatagctcagttggttagagcaccaccttgacatggtgggggtcgttggttcgagtccaattgaacgcaccatcctgcgtccgtagctcagttggttagagcaccaccttgacatggtgggggtcggtggttcgagtccactcggacgcaccagattttcttaatctggtcttctcctttttccctctgtttcttctctgtatccaatacgttaaaagatttacactgtcttcgtatgcgttatcagaaggagaatcgctatggcaactttgttacaacttcattttgcttttaatggcccatttggcgacgcaatggctgagcagcttaaaccacttgctgagtcgattaatcaggaacctggttttctgtggaaggtatggacagaaagtgaaaagaaccacgaagccggtgggatctaccttttcactgatgaaaaaagcgcccttgcctatctggaaaaacatactgcccgactgaaaaatctcggcgttgaggaagttgtcgccaaagttttcgatgtcaatgagccacttagtcaaatcaatcaggcaaaactcgcctgacagaatttaatcaagggcggttagcgcccttttcatccctgtctgaaatttctcaaattctaaaaatctcaaccaaacttatctgataacactaaattcgaaagaatgcgtacaggtaagtaacaatgaaaaaaattgctattgtgggtgccgggcctacggggatctacaccttattctcgcttctacagcaacaaactccactttctatttctatcttcgagcaggctgacgaggccggtgtcgggatgccatacagtgatgaggaaaactcaaaaatgatgctggcaaatattgccagtattgaaataccgccgatttattgtacgtatctcgaatggctacaaaagcaagaagacagccatctccagcgttatggcgttaaaaaagaaaccttgcacgatcgtcagtttttaccgcgaattctgctgggcgaatatttccgcgatcaatttttacgactagtagaccaggcacgacagcaaaaatttgcagtggctgtttatgaatcatgccaggttaccgatctgcaaattacaaatgctggcgtcatgctcgctacaaatcaggatttacccagcgagacgtttgatttagcggtgatcgccacgggtcacgtctggcctgatgaagaagaagcaacccgaacgtattttcccagcccgtggtcaggcctgatggaagcaaaggtcgatgcgtgtaacgtgggtattatgggaacatccttgagcggactggatgcggcaatggcagtggctattcagcatggttcgttcattgaagatgataaacaacacgtcgtttttcaccgcgataacgcaagtgaaaagctaaatatcacgttgttgtcgcgcacgggtattttacccgaagccgatttctattgccctattccctacgagcccttacacatcgtcaccgatcaggcattaaatgctgagattcaaaaaggcgaagagggccttttggatcgggtatttagattgatagtagaggaaatcaagtttgctgatccagactggagtcaacgcatagccttagagagcctgaatgtcgattcctttgctcaagcctggtttgccgagcgcaaacaacgcgacccatttgactgggcagaaaaaaatctccaggaagtcgaacgcaataaacgagaaaaacatactgttccctggcgttatgtcattctgcgcctgcatgaagccgtacaggaaattgttccacatctgaatgaacacgaccataaacggttcagtaaaggccttgcccgggttttcatcgataattatgcggcaatcccttcagagtctattcgtcgcctacttgccttacgtgaagcgggaatcattcatattctcgccctcggtgaagactacaaaatggaaattaatgagtcgcgcaccgtcctgaaaacggaagacaacagctactcgtttgacgtttttattgatgcccgcggacaacgtccgcttaaagtgaaagatatccctttccctgggctacgcgagcaattacagaaaacaggggatgaaatccctgatgttggcgaagattatacgttacagcaacccgaagatattcgtgggcgcgtagcgttcggcgcgttgccctggttgatgcacgaccagcctttcgttcagggacttacggcatgtgcagaaattggtgaggcgatggctcgggcggtcgtaaagcctgcatcccgtgctcgtcggcgtctttcgtttgattaaaggtaaagctatcagcactcaacaaactgatgctgttcattaagacgatagcggactccggctcgaatattgttttcaccttcaatggcgacggcgaagcgaactctttcgccgtcatgatatgccagtgcggcgcttcctcctggcccgagaataattgagtcgaccacgcccgtgctcactaccgttgaattttcaccgctggcaatgatgtgtacattgtcgccgctgttggcaattctggcgtttgcgccaaagctggcgatttgcaccaggtcaccattactggcgacatgacaccgttcacccaatgtacaaacgcgtactcgcattccggtattcgcaatccgactgctatctccagcgctgcttatccgcgaagaattaccggttacagcaacccgtgcgcgttcaccggagctgccaatgtgactgttaaagccgacacttccaatccgcacgctataacccatactggcaatttgcgcggcatacccagcggttgcgattctggcgttatcctcacaacagccgatgcgagcatgatcgtcgctgcgggcaaactgactgcaaaatggtctctctccggggtctgtggccagtttttgcatagaggaaacttcctgatgcgcgaagttttcatccgccagccattttttccacgcatactcaaccagactctccgcccagtccgtatatccttcctcaatcagtgcatgatgaatatcggcataactaccgccgcgtgggaaatggcgcaggaaccagcgatacatcaccgctccgatacgccattctcgcaggtctgcttgtgtaatgatcattcgttagtgccggtgatagccatcgaccatgcttttaaaggtttcgtgtggcgtacgccccgtggtgcaaagataaagatgaccgaagataaaaaagaggcttataaatgccagagcaaaatgtgtctgcaataaccagtatcttacgccaggaaacacatctcccacggcttgcggatagagacacagcagccccgtcaatagtaacaacggcagcaatccatacatgacaccaacataggcgacctgctgtaagggattaaatttagactgggttgttgccgggaaaggatgttcttccccctgcataatgccaaacaaataaaatcgcgtttgttttgccgctcgttccagccacccctgacgacgaatgcgatagtggtgaccattatccccaacggcattgatcagcacaaagccgagccagcatgccagtaacaaaaatccgcaaacttcatgcaccgcaaccagacttttaaccgcagttgcgcccaccatcgcaaagtgatttatcagcccactggccagcaacaatacaaagagtaacgcattcgaccagtgccataatctgaccgctttgctgtaaagataaatcttctcaccatgatcggtggctgatttcttcacgccacgagcacgaagcaaggcatgcagccccagcaccaaccacatcccaaccagcaatactccggcaatgatcaaccacaccggccaaaattcgggagtgaactgtggcacatagttcgctaactggctctgaaactgttcagcatgttgcgacgggttcatacattttcctttttaatcaaatgttgaccgaaccggcgatacagatgcggtttcccggcaccaggtagctgatattgatagtatttattttgctgcaaccacgcctgaatttctgggctatcttcgcgaccaaagatcaatgcgtgttccgggcaggcgctgacgcaaatgggcggaaagccttttgccagtcgggactcagcgcagaaatcacatttatctgccactttagtgacagggttaaggtagcgaacctggtacggacaagcgccaatgcaataactgcagccgatgcactgcgatttttctacccgcacgatcccctgctcatcacgccacgacgcccccgtcgggcaaacgtcgatgcacggagcatcttcgcagtgctgacatgactggcgaaaaaagtgatactgcgtttcgttgtcgttatcggtgactggaatgtgtgctatcgataaacggcttccctgagcggggacgtggttagttttacggcatgcgcgggcgcaaatattacagccattgcaccgtgactcgtcatgaatcatggcataccgaacttccttttcttgcctcgtgttcgctaacagagaagacgcagaaccagtaaaaaagattactgttcccatccccagaacaaatttgcgtcgagtgaaggacatctgattatcccctaatgcagtggctgcaactgtccaccctatccatgacatctccctgaaatttcaggggttctgaaactgctctacctcgaaccattcgcataagccataagccttgccataggtcataaatcgctcgctaaacaagtacaacaccgccgtcgatgactccacctgccgtatatcggcatattcaggtgcaacatccatcgcggcgatcgcggcttcaatctgcgcttcctggaagtaatatggcgcttgcatcagcatggcgactttgtaaggacgaggatacgtctggcactcaaaacgaacggcgtgtgcaatggcgcgacaaatgtcctgctccacaacttgcaaagacatcgccgcgtagttttcactcatggcctgcgttgagtaatagtaatcatccttgcttcccgtcaaacaagcgatatccgcgtagtctccgttctgcttaatgctttccagcaaaactgacagttcctcttctgcaaccaaatagggtggcgagagaaacacggcgcgcgccaccagctgcccagccgcagaatgctggcgaatgaactcagccaggatttcagcaggttctggttcggttaccgtatcaacggggtgacgcatcccctgcaaccattgccgcttcgcctcgtcaacttcgctgactttcgctaacggcaattcatcctgatggttcatcttacccattccttacgcaggcagtagattgtgtgctgccagatcggcggcaatatcttccagccccagacgctgcaatgtttcgcgggttggacaaccaagctgtgggtcccagcccatttctttgtagaacatcgtgagcgaagcatgcatatcgtcacgatccattttgtcagtaccttcagtaaagaccgggatctgcggatccttgtcgaatacccaggaacagataagatcgtgttcattacgcatatctttggtttgcatcagttttaccgtgtaggcacgatgcaacgtaaaaatacgctctgcagctaaatctaatttttcctgagtcatctcttcgccggtgatcgctttgaagaatttggcttcaagcgccagatcgccccggtaattacggcttttcagcggcgaaacggtcattggccagacccagttgcacagggtgacggcgttatgcaaacagacccgcaacagcgaccactttgcatatttaatttttgcgtcattgattggcgtgtagtttttggtttcatcgtaagcatcttcagaaccaaaaagttctttcgccacttcacgttgcagtttcaatggcaagccggaaccaataaagttgatatgggtatgcgtcatgcagtcacggttgaacatacagttaacaatggaaccgacctgcgctgacgcttcattggcatggtgaaccggatagccaaacggcgaccagagtttatttttcgcgtagccccagtactcttcacccaaattccagcgttctgcgatggcatatgaaccatcagccaggtgactcagctcacccacacgatgcgccagacggtagtaaaaatctttaatgaagttaacgtcacccgcttccagttgatcccagcgaatttctgcatactcttcagctggcagaacacgcttgaacacacctttgctgtaacaataagtaaagtcgcgatgcaactgcccgtagttacaccataggccgtagtcatcgaacaaattcagacccaccaggttaccaatcacacgaccatcgtctttatcttcaaaatctttcggcccgttcgggaagatggtggtatggacaaagtttgctacacaagtgttaccacctgtgctgggcacgccaaactctttcacccgaggaatattcatttgggtcatacaacggatcgggcaagagtggcagccgctcatttttactgtgtatttctctgccgccggtcctaagtcaaaaacggatttataggtacgaaagccgaccgtattctgattgcctggcggaatttcacccgtttcaatcggaccaccttcagccgcgccccaaaacagccctttacgtgctgtccagcgtgacttgggatctgaatactctgcccacgattgtggcgtacttggcacgacatggttgttattcgcaccaataagttcagtcatcatgtaatcattgagacgcttcatctcctgacgatcggcaatgttgacccctttcgtcccttcaaccgcaatcgctttcaggtttttcgaacccattattgcgccagttcccgcaccgccgctgtggttacggctattcaacatgccagagagaggaacaaggttttccccagcctgaccaatagccgccacacaggtttccggactggtcaatcgacaaatttcttccgtcgttgcgcgcgtcccttttccccataagaaatcggctttttccaggctaactttgtcatctttaatcttcagccataccggtgatttcgccttcccttcgataataatgacgtcgtatccagcgaatttcatttgcgctgcaaaaaagccacccatatgggcatcgacgactaaatttcctttggtaaaagtagaaagtgaggtgatatttacgcgagaactacagggggcaccagatccagttaatgggccggtagcaaagactaatttattcgcttcatcgaaaggtttcgtgcctggcggtacttcgtcatacataattttgtagccgaagcccatgccaccgacaaaacttttaaacttactggaatcttcgagggtaatatttcctgtcgtgagattgactcttaatatattacctgtccaaccgttagccatgattttttcctttgcaagattcacacagtaatatctttccactcgataatttttaacgcccctgttgggcaggcgtttgcgcattcaccgcataacacacatttcgaggattttttactttcggtatttacggtggccatcatccacgggcatgccgtagtacaggcgctacagccaatacagcgtttatgatcgacggtaatacagccttctttctgctgccaggtaatcgcaccaatcgggcagacgttcatgcattgcggctctttgcattgacggcaggtgtccgcggtatagttgagatcgccatacaggccgccgccagagccaaccccgttgtcgccaaagaaataattgcgatggattttgatacgggagaagaatgtccctactgagccatcgttgaagttggtacaagagatttcacagcggtggcaacccgtgcatcgcgctcgctgggtcaccagcacccctttgggggtatttatcaaccctactgtgccgctatcaatatcttcctgtttgcaacccaaaagtgacagtaacgcaggggcaattgttagaccagcaaggccttttcctgatatacgcaagaattctaatcgcgttaagccaatatctaatagtggacgatcaaccgggttcatttatttcgcatcctcttcgcaaacacagtgctgacaattcagcagcctgatattaagcattcaactaatacgctgctgactctgtccccaacaccagatattttccctaacccgatagtgtatgagaaaagattaacgccgataaactaatcctttatggttaggagaaaaaataatgtgattattctgagcccttaacattgatcgttatcaattaaaattacaaagcaagaaattataagtgaactgatatttattatcatttgaaataaatttaacttaagcgacaattatttgtgactttcattgcagaaaataaaaataacattatcgctataaattaaaatacataccgaaattcgtataatttcagcagttgttatttagaatgattaactggaccgcaactgaagcaagaatatcaggatgaagcttaccgcctcatcctgaatggtcattttaccagtgcgttaatgacggtttccatcgcctgcttttccagctcactgcgctgaatgcgtttattggctaatgctgtacgtaatacgcctgcgataacaatatgctttggttcctgccccagatcgcgcatttccagcacaactttaccgacaactctgcacatttctcggtacagttcatcctcttttgtccgatttcccattctttatacctatttatcatgccaactatcagcatatatcaatctaaccaattaaacaaaaatcaaacaaaatcagacaaataacgcgataaattattttaactgtagcaattgagcgatgatatatttatacaccggatgaactttcacttatcctcacactgacaacttcggcaccagacgttgcgcaaacagtgaagtttttgcgtaaccttttccctggaacgttaaatctttgataacaatttattgtctaacaagttgtatattttttgaaacgctgtttttgttttccttttggattaatttcagcgtataatgcgcgccaattgactcttgaatggtttcagcactttggactgtagaactcaacgactcaaaaacaggcactcacgttgggctgagacacaagcacacattcctctgcacgctttttcgatgtcacctatccttagagcgaggcaccaccactttcgtaataccggattcgctttccggcagtgcgcccagaaagcaagtttctcccatccttctcaacttaaagactaagactgtcatgaaaaagaccaaaattgtttgcaccatcggaccgaaaaccgaatctgaagagatgttagctaaaatgctggacgctggcatgaacgttatgcgtctgaacttctctcatggtgactatgcagaacacggtcagcgcattcagaatctgcgcaacgtgatgagcaaaactggtaaaaccgccgctatcctgcttgataccaaaggtccggaaatccgcaccatgaaactggaaggcggtaacgacgtttctctgaaagctggtcagacctttactttcaccactgataaatctgttatcggcaacagcgaaatggttgcggtaacgtatgaaggtttcactactgacctgtctgttggcaacaccgtactggttgacgatggtctgatcggtatggaagttaccgccattgaaggtaacaaagttatctgtaaagtgctgaacaacggtgacctgggcgaaaacaaaggtgtgaacctgcctggcgtttccattgctctgccagcactggctgaaaaagacaaacaggacctgatctttggttgcgaacaaggcgtagactttgttgctgcttcctttattcgtaagcgttctgacgttatcgaaatccgtgagcacctgaaagcgcacggcggcgaaaacatccacatcatctccaaaatcgaaaaccaggaaggcctcaacaacttcgacgaaatcctcgaagcctctgacggcatcatggttgcgcgtggcgacctgggtgtagaaatcccggtagaagaagttatcttcgcccagaagatgatgatcgaaaaatgtatccgtgcacgtaaagtcgttatcactgcgacccagatgctggattccatgatcaaaaacccacgcccgactcgcgcagaagccggtgacgttgcaaacgccatcctcgacggtactgacgcagtgatgctgtctggtgaatccgcaaaaggtaaatacccgctggaagcggtttctatcatggcgaccatctgcgaacgtaccgaccgcgtgatgaacagccgtctcgagttcaacaatgacaaccgtaaactgcgcattaccgaagcggtatgccgtggtgccgttgaaactgctgaaaaactggatgctccgctgatcgtggttgctactcagggcggtaaatctgctcgcgcagtacgtaaatacttcccggatgccaccatcctggcactgaccaccaacgaaaaaacggctcatcagttggtactgagcaaaggcgttgtgccgcagcttgttaaagagatcacttctactgatgatttctaccgtctgggtaaagaactggctctgcagagcggtctggcacacaaaggtgacgttgtagttatggtttctggtgcactggtaccgagcggcactactaacaccgcatctgttcacgtcctgtaatattgcttttgtgaattaatttgtatatcgaagcgccctgatgggcgctttttttatttaatcgataaccagaagcaataaaaaatcaaatcggatttcactatataatctcactttatctaagatgaatccgatggaagcatcctgttttctctcaatttttttatctaaaacccagcgttcgatgcttctttgagcgaacgatcaaaaataagtgccttcccatcaaaaaaatattctcaacataaaaaactttgtgtaatacttgtaacgctacatggagattaactcaatctagagggtattaataatgaaagctactaaactggtactgggcgcggtaatcctgggttctactctgctggcaggttgctccagcaacgctaaaatcgatcagctgtcttctgacgttcagactctgaacgctaaagttgaccagctgagcaacgacgtgaacgcaatgcgttccgacgttcaggctgctaaagatgacgcagctcgtgctaaccagcgtctggacaacatggctactaaataccgcaagtaatagtacctgtgaagtgaaaaatggcgcacattgtgcgccattttttttgtctgccgtttaccgctactgcgtcacgcgtaacatattcccttgctctggttcaccattctgcgctgactctactgaaggcgcattgctggctgcgggagttgctccactgctcaccgaaaccggataccctgcccgacgatacaacgctttatcgactaacttctgatctacagccttattgtctttaaattgcgtaaagcctgctggcagtgtgtatggcattgtctgaacgttctgctgttcttctgccgatagtggtcgatgtacttcaacataacgcatcccgttaggctccacggaatatttcaccggttcgttgatcactttcaccggcgttcccgtccgcacgctggagaacaaggctttaatatccggtgcattcatgcgaatacaccctgaactgacgcgcaaaccgacgctgtccggcgcactggtaccatgaatgaggtattcgccattaccatgcgcgaggcgcagtgcgtaacgtcctagcgggttatttggtccggcaggaacgactggcggtaatttaatgccacgctccagcgaacgctgacgaatgcctgccgtaggcgtccaggttgggttagggattttctgcccaacacgcgtttccatcaccggcgtttccagcccctgcaatccaatacctattggataaacctgcacaatattttctcccggcggataataataaaggcgcagctctgcaaggttaacgataatcccctgacgcggtgcatcaggtaataacagttgtgaaggaatagttatcgtcgtaccaggttttggcaccggggcgatagtgttattggcttcaaggatcaacattgccgcagtatcaaaacgtcgggcaatagcctgaaggtttttatccccttcttgcaccgtatacgtttgattttgcccaaccagtcggcttccggttggtggtagcggataatcaaccgcccaggcagcctggatggcgctaaaagcgccgataagcgtgagtgtaagcaaagacgcgcgtttcattgtaaacctcctgtatttgccggagactcacgctgaaacgtcggatggcgcttatgttcacctgaaaccaaaacactcctgtgcaggtcagtgtaaacattgaccatccggcaatgtgagccaaccggatgaaagctgtccttttagtttagctaagtgcagcggctttggcgcgaattgcgcgaatcatcgcttccagaccttgtgaacgagatggggtgagatgttgggtgagcgccattttttcaaaccacggacgcacatcgaaattgacaatatcctgcggcgtcatctgatcgtagagaataaagacgaccgcaataagccctttcacaatcgccgcatcgctgtcgccctgtaattcaataattccctgggcattctggcgcatgacaatccacacctgactctgacagccctgaatgctattttgtggacttctgtcttcgtcgcgtaattctggcagacgctggcccagctcaataatgtagagatatttctcttcccagttggcgcagcgtaaaaaattacgcagcaacttttctttatccggcaataaagccatagtgcctccctgttatcccagcaaacggtgaatacgttgcaggccggtcaccagacgatccacttcttcatgggtgttatacatggccagcgacgcccgacacatcgcagggacgttgtaataggccatcaatggcattgcgcagtgatgtccggtacgcacagcaatgccgtaattatcgagaaaactgccaacatcataggcgtggtgtttaccgagattaaaagcaataacgccaagcctgttttgtgggccatagagagtgagatccggtacagattccagctgtgatagcgcataatgcatcagattctgttcatactcggctatgttattaagccccagcgccgaaacatactccagcgccgcgccaagaccaatgatgcccccggtattgggtgtaccggcttcaaaccgccatggtgctttggtccaggtagtgccttcactcaggctgacggtggcgatcatagaaccgcccccttcccacggcggcatctcctgcaacaaggcttctttcacataaagaatgccaattccggtggggccatacagtttatgcccggagaacacgtaaaagtcgcaatccagcgcctgaacatccaccggatgatgcatcaccgcctgagcgccatccaccagcacttttgcgccatgctggtgcgcaagcgtgatcatttccgccagtggattttctgtgccaagcacgttggagacatgagtaattgccagcaggcgagttttctcatcaaacagcgtaggcagcgtctccagttgcaacgtaccatcgggattgagcgggatcacacgcagctctgcgccaacgcgtgcgcaaagcatctgccagggaacaatgttagcgtggtgctccatctgactgatgatgatgttatcgcccgcccgcacgttgctgttgccccagctattggcgaccagattgatcccttccgtcgtgccgcggacgaacaccagctcttccgccgaacgggcattaataaacagcgatgcccgcttgcgcacgttctccattttctcggtcgcctgggcgcttaaggtatgaataccacgatgcaccgccgcgtagccatgacgataaaactcggcctcggcgtcaatcacctggctcggtttctgcgcactggcggcgctgtcgagataagccagcggcaaaccgtttacctcacgcgaaagcaccggaaagtcggcccgcactttgtcgacggaaaaaatcatcttgcacctcctggcagccgttgaccgattcgggccagcacctgctgtttaagcccctcatcacgcagtgcttccgtcagttcggcagcgaaggcgtaaatgatcatctgctgggcatcctgctgattgatcccgcgcgagcgcagatagaatatctgttcatcatcaatacgccccaccgtcgcgccgtggctgcatttcacatcatctgcatagatttccagctgcggtttcgtatccacttccgccagtttgcccatcagcagattgttgttggtcatctgaccatccgttttgatggcgtgctgcgcgacgttgatcaaaccgttaaataccgcgcggcctttgtcgctgacgatagttttgtgcaactgtcggctgttacaaaaacctttattgtgttccagccaggtacgggtatcacacacctcgtttttcaccggcatcgccaggctattgatccgcagcgtgctgttttcgccattgagttgcgtactggtgttgtgtcgtaacactgcgccacccagcaggaaactgtggctaaatgcggtggcatcctcagccagcaacaaatcgttatgagcaaagtggtgactgagcgggttttcaaacgccagcttgatatgctgcaagtgggcattcgctgcgacgttgatagtgaaccgtgccccggtaaaatgacgagcatcattcaggctgacaaaatgttcgatcaccgttgcttcggcaccttccgccagatccagatgatgtcggtaatgggcagtgttcacctcttcacctgccacgccctgggtgatatgcattaacagcaatggctttgccggccgttgaccgcgcttcacggcgatatgcgtcacgctttgtgccaggctttccgtcaaatgcagaaacacttccgcctgaatagcgtcgggtaaaccctgacggtcgtcgttaatgctcacttcatatccgctgccttcagttgcatcgctcagtgcgggcacgtaacgcccatcgacaaacaccagccgcacggagtctaacgttaacgctaaggcatcacgctgctgtggggatatctctcccgcaatgctgacaaactggctattgatcagcccttccagcggcgtatatttccagttttcatgtttacgtgtcggcagtccggtacgcagcaattgttgtaaatgctgctgtgcttgcggggagcgttttgtcccttcagcttcaaacaagtgatgccactgttgcagcgcgttactgctgttcggtaagccagccataaccctgctcctccagttgtttgaccaacgtgaaatcgccggatttcacaattcgtccctgatatagcacatgaacgtaatcaggcttgatgtagtcgagaatgcgttggtagtgcgtaacaatgatgaatgagcgcttgccatcacgcagcgagttcacgccatcggcgaccacttttaatgcgtcaatatccagcccggagtccgactcatcaagaatgcataactccggttccagcaccgccatttgcaaaatatcgttgcgctttttctcgccgccggaaaaaccaacgtttaccgaacgggttaataaatcttccggcatcttcaggagagcgattttctcttccatcaaatcctgaaaatcaaagcggtcgagcgtttcctggccgcgatagctgcgcaccgcattaagtgccgtttgcaggaaaaactggttactgacacctggaatctccaccggatactggaaggccataaagatgccttcgcccgcgcgatcttccggcgacagcgcaagcaaatctttgcctttgaactcaaccgtgccgcccgtcacttcataatcttctcgcccggcaagcgttgccgataaggtacttttgcccgaaccgtttggccccataatggcgtgaacttcgccgggatgaacgtcgaggcttaatccgcgcaggatagctttatcttccacgctgacgtgtaaatctttaatacttaacatgtttattccttatccgacgctgtgttcaagactgatggcgaggagtttttgtgcttcaacggcaaattccaacggcagctccgagaacacgtctttgcagaaaccgttaacaatcatcgagatggcgtcttcttcgctgatcccgcgttgcaggcagtaaaacagttgatcttcaccaatacgtgatgtcgttgcctcgtgttccagttgcgcactattgttacgacactcaacatacgggaaggtatgcgccccacaattagcgccaatcagcattgagtcgcactgagtgaaattgcgcgcattggttgccgtcggcatgattttcactaagccgcgataactgttctgactatgtccggcagagatccctttcgagataatggtcgatttggtgtttttaccgatgtggatcatcttggtgccggtatccgcttgctgatgaccgctggtcagcgccactgagtaaaactcaccaatggagttatcgccgcgcaaaatgcagctgggatatttccacgtaatcgctgacccggtttctgattgcgtccatgacattttgctgttttcgccttcgcacaaagcacgcttggtgacgaagttgagaataccgccggtgttgttatcgccaggaaaccagttttgtaccgtggaatatttcacctcggcgtttttatggatgatgacttccaccactgccgcgtgtaactgatagctgtcacgcaccggagcggaacagccttcaatgtagctgacgtagctgtcttcgtcggccaccagaatggtgcgctcaaactgcccggttttttctgcgttaatgcgaaaataggtggaaagttccatcgggcagcgcacgcctttaggcacataaataaacgtaccatcagaggctaccgccgcattaagcgcggcaaagaagttgtcattccccggcaccacggtgccgagatatttacgcaccagttccgggtgatcgtggatcgcctcaccaaaggaacagaaaataattccctgctccgccagtttttcgcgataagtagtggcaaccgaaactgagtcgaaaatggcatccaccgccacctctttgccttcccgcacgggaacgcccaactgctcaaacgccgcctccacctctttacttaaaaaggcgttcgcgccagtttgctgcaccgcgccaggttcagacgcgcaagtgtcgtcacaattaccgcacgatggtgctgagtagtagctgtaatcctgataattcagcttgtcgtagtgcgctttcaaccagtgcggttcttccatctccagccatgcgcgataggcgtttagacgaaactccagcatccactccggctcattacgcttcgccgaaattgcgcgcaccacctcttcgtttatcccctttgccagctcatcggtggctaactgggtgaagaatccttctttataattcagcgggccgccggtccaggttttgacatcgtcagttgcttcagtattacgagacatagtaccgcctataccccaaagctttcgccacagccacattcattctgggctttagggttgtgaaatttgaatatctgattaagtccttcacgaacgaaatcgacttccgtgccatcaataaacggcatcgcttgcagcgggacaaacagcttcgcgccgtcgtgttcaaacagcagatcgtctttgtccggctcgctaacactgtcgagcacatagccaaagcccgcgcagcccgtttgcttcacgcctaagcgcacgccgaccatacccggctgctttgccaccagctcacggatgtgtatcgccgctgcgggtgtcagcgttaagccttgccaggcgaaatcttgtgggttaaaggttcctgaatgcatgtccatcgatttacctcacttcatcgctttcagcgtataacagcatgttagtgataatgattatcagttcaacccagcaaacgcaggggctttaccgtaaaacatgctttttgcctgcttttaataagcatagaccctgatgtgtgggttaacaggcacgctaagaattaggtatctcattgttagataatggttattatctaaggagcattaaggctgtgatgaaaaagaaaaagttgtattgaaaatgactatttaagagataggtaaaaaagtgcagcgttcagaaataagaaaacccttaagtctgtgcgacacaggcttaagggtttctaccccatccggcgcttatctccggcactctcagtggcttagctcttgaaggggcgataagaataatctcataaagctaacccgccgttttaacacaaactgcgattagtattatttttgaacaatatcaggcggtagataagcagtattaagaaggtcatcgaacctggacggaggttaatccaggtcgatttggcgaacttgcggcattaagtcaggatcaatgcacgcccagacgccaggcaaagtagatttcttcttttaattcagcagaagagagagtaagcaggtcagcaaattcaagttctagttgtttcagacgtttgagatattgggcaggtgaaagattgctctggtcacggcgtaaaaattcaatggccagctgggtgggatcaagttgagtagacatagcatcctcgcttttagacaagacctgcacagtataccaccgtttactgtgcagataatgaccaaaagcaatatgcgtcacacttttctggtgacaacgtcacaaaatggcggtcgtcaatcgtgacgaacagcacaaacgccctttctcatcgaagatttcaatctgccagacctggtgacgcgaaccgagatgcaacggtttgcatacgccgcgcacccgcccttctcgtgccgagcggacgtggttagcattgatttccagaccaaccactttttgctcaccttcggtacataaataaccggcaacggaaccgatactttcggccagtaccacggatgctcctccatgcagcaacccgaaaggctgctttgtccgcgagtctactggcattgtcgcttcaagggtgtcatcaccaatatgttcaaagcgaatatccaggaaccccaccatgtttccttcacccatagcattcagtgcttccagggtgattttccgtttccatatcatttaataatctccagtaaagcctgcacaggatggcgtacccccgtgccttcaacccgttttacctggctacggcaggaatatccggtcgccagacagcggttacgcggcagtcgctgcatagcctgatgccaggataactcatagatcccgagcgaattttcatggtttttcgcttcatgtccgtaagtccctgccatgccgcagcaacccacgctgacattttccagtttcgcgccaaaacgggcaaatatcgcggcccattgtgctggcgcacccggcaaggcggtaacttcggtacagtgaccaaagaaataccatgattcaccgctgactgtagccactggctgtgactcaagtgcgcttgccagccattcattcgccagtaagacgttaaactcgccacgctcctcgcccagcgccagtttatattcatcgcgataacaaagtaccagcgccggatcgacgcccaccattggcatacccagcttcgccatacggttgaggaaatccgccgtctttttcgccgtcttcgcaaaacgattaagaaaacctttaatatgctgggctttgccatttggcgaaaatggcagtaacacaggctggaaacctaatttttcgaccagacggacaaaatccgccaccacttgcgcatcgtaatagctggtaaaggggtcctgcaccaccaacactgtgcgcgctttctgctctgcattgagagattcaagctgttccagcgtcatgtttgccgagcgatgccccaccatttgttgttgtagcgaggggaccgacagcagcggcaaatcaaccatgccgatatgtttttccgagagtttgcgcaccagcggctggttaatgaagaagttaaaggttttcggcgcgcgtgccatcagcggcgcgtagctctcgaccgtagcgacgaggtggtcgcgcagcgggcgtaaataacgggtgtgatagagctgcagaaaacgagagcgaaactccggcacatcaattttgatggggcactgggtcgaacacgctttacaggccagacagcccgacatcgcctctttgacttcgtgtgagaagtcatattcgcctttattcgcatgccagctattgcgcgtgcgggcaattaacgtccgcaaactgacgccggattcaggcagttcttgttccagtttgagtggatcaacgccgcgatccgccaacaaacgcagccattcacgcaccagcgttgcgcgccctttcggtgaatgaatccggttctgggtgatcttcatcgacggacacatcggactacgggcatcaaagttgaagcataaaccgttgccgttacactccatcgcaccgcgccactgctggcgtaccgcaatggggatctgccgatcgaatgtaccgcgcttcaccgcgtccactttcatcatcggcgcatcgagaccttctggcgggcaaatcttccctgggttgagtcggttatgcgggtcaaatgccgctttcactttgcgcagttctgcaaaaagttcctcaccgaaaaacgccgggctgtattcagcgcgaaaacctttgccgtgctcgccccacaacaaaccaccgtatttcgcagtcagcgccaccacgtcatcagagatttgcttcatcaaaatctcttgttgaggatcgcacatatccagcgctggacggacgtgcaagacacctgcgtcgacgtgaccgaacataccgtagcttaagccgtggctgtcgagcagcgcgcgaaattcagcaatataatccgccaggtgttccggcggtacgcaggtatcctcagcaaacggaattggcttagcggcacctttggcattgccaagcagaccaacggcttttttgcgcattgcatagatacgttcaacccccgccagctcacggcacacctgccagccgatgacacctgcttgatgactggcgatcagctcatccaaccgcgcacagagtgcatttacccgctcatcaatcagcgcctcatcatcaccagcaaattccacaatgttcagcccgagcatctcttggtcaggcacatcggtaatcaactcgctgacggaatgccagacaatatcttcccgcgccagattcagcacttttgagtccaccgtctctaccgaaagcgcccgcgcctcaaccataaacggcgcgttacgcagcgcagagtcaaaagagtcatatttgacgttcaccagacggcgcactttaggcaagcgtgtaatatccagccgcgcttcggtaataaaggccagcgtcccttctgaacccgtcagaatgcgcgtcaggtcgaactcggtcatctcatcgttaaagacatgacgcagatcgtaaccggtaagaaagcggttaagtttggggaagttgtcgataattaactggcgttgctgacggcaacgttgataaaccgtgttataaattcgcccgattgtggtattggatttacccagcgtttccgccaattcgacgggtaaaggttgcgtatcgagaatatcgccccccaacaacaccgcgcgtacgccaagtacgtgatctgacgttttgccatagaccagcgatccctgaccggatgcatcggtattgatcatcccaccgagcgttgcccggttgctggtcgaaagttccggcgcaaaaaagtagccgaacggtttcaggtactgattgagttgatcttttatcaccccggcctcaacgcgcacccagccctcttcagggttaatttcgatgatgcggttcatatggcgggacatatcaacaataatcccctggttgagcgcctgaccgttagtgccggtgccgccgccgcggggggtaaagatcagcgatgaatagcgttcctgcgcggcaagacgggcgatcagcgccacatctgcggttgaacgcggaaataccaccgcatcggggagaagttggtaaatactgttgtcggtcgacattgtcagacgatcggcataacttgtcgccgtatcgccggtaaaaccttgttgctccagctcttgcaaaaaattaagcaccagttgaacgacgccgggtgcctgggaaatctgtggaatcattatattgaccctttcctgcggtctgtgatgtaggtcgatacactattctttcaggctgctgcaatagcgcactgaaaggtgatgtttgtttactctatggatttcgtgttgcaggaaggcggcaagcgagtgaactccaggagcttacaatagtaagtgactggggtgaacgaacgtagccgcagcacatgcaacttgaaatacgacgagtaaatcgtttgcgtgttgcctgagttgttgtaccacatttttttctaacacgcccatcagaattaagggcagaatcggcctgttaaaaaccgctgaaattgctcatcattatgcaggtgagtttcgcgtgttcacgtcgcgtcgacgatttgacgcacaaaaaaggtgaaaagtagttatggtaaatgttcgtcagcccagggatgtcgcacaaattctgctttcggtgctgtttttagccatcatgattgtggcatgtctgtggattgttcaaccctttattctcggctttgcatgggccggtacggtggttatcgccacctggccggtattgttacgtttgcaaaagatcatgtttggccgccgctctctcgccgttctggtgatgacgctgttattagtgatggtgtttatcatccctattgctttgctggttaacagtatcgtcgacggcagcggcccgctaattaaagccatttccagcggtgacatgacgttacccgatctggcgtggcttaataccattccggtgattggcgcgaagctgtatgcaggctggcacaacttgctggatatgggggggacggcgatcatggcgaaagtccgcccttatattggcaccaccaccacctggttcgttgggcaggcggcgcatatcgggcgctttatggtgcattgtgcgctgatgcttctcttcagtgccctgctgtactggcgcggtgaacaggtggcacaaggcattcgccattttgcaacccgtctggcaggcgttcgcggagatgccgccgtgctgctggcggcacaggctatccgcgcggtggcgctgggtgtggtggtgacggcgttagtacaggcagtgcttggcggtatcggcctcgccgtatccggcgtaccttatgcaacgttgctaacggtgttaatgatcctctcctgccttgtccagcttggcccgttgccggtactgattccggcgattatctggctctactggactggcgataccacctggggaacggtattgttagtgtggagcggtgtggttggcacgctggataacgtcatccgcccaatgttaattcgcatgggtgccgatttaccgctgatcctgattctctctggcgttattggtggtttgattgctttcgggatgatcggtctgtttattggtccggttctgttagccgtttcctggcgtctgtttgccgcgtgggtggaagaagtcccgccgccgacggaccaaccggaagaaattctcgaagaacttggcgaaatcgagaaaccgaataagtaatttctcatcaggcggctctgccgcctgattgttaaccaccgctaattgatatttgcttgctcttccccatattttcctgcttaccgccattcagctggtagtacctgtcgcaaattctttacagtttttaaactaatgagacgaatctgatcgacgcaaaaagtccgtatgcctactattagctcacggttataaatcaacatattgatttataagcatggaaatcccctgagtgaaacaacgaattgctgtgtgtagtctttgcccatctcccacgatgggcttttttttaacatttttccgcttcgctacctcgcccctcactctttccaataatgttgcacaagatactgtgactctcttcaagccgtcagcaggctgataatgttatttatattttattgtttatttcatgcagccattacacgatgaacgcttatgaactccaggcactccgccatatttttgccatgactattgatgaatgcgcgacctggattgcccagaccggtgacagtgaaagctggcgtcagtgggaaaatggcaagtgtgccattcctgatcgtgtagtcgagcaactgttggctatgcgtcagcaaagaaaaaaacatcttcatgccatcatagagaaaataaataaccgcatcggcaacaacaccatgcgttttttccccgacttaaccgcatttcaacgagtctaccctgatggcaattttattgactggaagatctatcaatcggtagctgctgaattatatgcacacgatctggagcggctttgttaatttttccacagaaaggaattgtcgttgttacaacaataatgaacggatgctgacacaacatcgcttcactttttaaagcacctttgctaagtagaacctatgaaaaatccctatttccctaccgcacttgggttgtattttaattacctggtgcatggtatgggcgtccttttgatgagcctgaatatggcctcgctggagacactttggcagactaatgccgcgggtgtctcgatagttatctcatcgctgggcattggtcgattaagtgtcttgctttttgcaggattattatccgatcgctttggtcgccgcccttttatcatgctcgggatgtgctgctatatggccttcttttttggcatcctgcagaccaataacatcattatcgcttatgtttttggctttctggcgggaatggcaaacagttttctcgatgcaggcacttatcccagtttgatggaagcttttccacgctcacctgggacagccaatattttaattaaagcatttgtttccagcggacaatttttattaccgctaatcattagcctgttagtgtgggctgaactgtggttcggttggtcctttatgattgctgcaggcattatgtttattaacgctctgtttttataccgttgtacgttcccaccccatccgggtcgtcgcttacctgtcataaagaaaaccaccagctctacggaacatcgctgttcaattatcgatttagccagttataccttatatggctatatctcaatggcaacgttttatctggttagccagtggctggcacagtacggacaatttgttgcaggcatgtcatacactatgtcgatcaaactactcagtatctacaccgtgggttcgctgctttgtgtatttattaccgctccactcattcgtaataccgttcgcccaacaacattactgatgctgtacacctttatctcatttattgctctgtttaccgtctgcctgcatcccacattttatgtggtgataatatttgcttttgtcattggttttacctctgctggaggtgttgtgcaaattggcctgacgttaatggctgaacgtttcccttacgctaaaggtaaagctacagggatctattacagtgcgggcagtattgcgacctttactattccgttgattacggctcatctgtcccaaagaagtattgccgatattatgtggttcgataccgccatcgctgccatcggttttttactggcactgtttatcggcttacgcagccgcaaaaaaacgcggcatcactcgctaaaggaaaatgtcgctccgggtgggtaatgcaatattcttttcaggtcatgcaagatcttacggataaataactctttctgcgctaactaaggaaaatcgcgatcaaaaacaaactatgacatgcaatattcctggaaacataaactttatgccatgtacccagggaaaatcatcttcagtatagtaattatgtaaaccgtcggagaacaatacgtacggtaacgaaattatctttcagcaaggagctgtgaaaatgtctcaaaataaggctttcagcacgccatttatcctggctgttctttgtatttacttcagctacttcctgcacggcattagtgttattacgcttgcccaaaatatgtcatctctggcggaaaagttttccactgacaacgcgggcattgcctacttaatttccggtatcggtttggggcgattgatcagtattttattcttcggtgtgatctccgataagtttggtcgtcgggcggtgatattaatggcagtaataatgtatctgctattcttctttggtattcccgcttgcccgaatttaactctcgcctacggtctggcagtgtgcgtaggtatcgctaactcagcgctggatacgggtggctaccccgcgctcatggaatgctttccgaaagcctctggttcggcggtcatactggttaaagcgatggtgtcatttgggcaaatgttctacccaatgctggtgagctatatgttgctcaataatatctggtacggctatgggctgattattccgggtattctatttgtactgatcacgctgatgctgttgaaaagcaaattccccagccagttggtggacgccagcgtaactaatgaattaccgcaaatgaacagcaaaccgttagtctggctggaaggtgtttcatcggtactgttcggtgtagccgcattctcgaccttttatgtgattgtggtgtggatgcccaaatatgcgatggcttttgctggtatgtcagaagctgaggcattaaaaaccatctcttattacagtatgggctcgttggtctgtgtctttatttttgccgcactactgaaaaaaatggtccggcccatctgggctaatgtatttaactctgcactggcaacaataacagcagccattatctacctgtacccttctccactggtgtgcaatgccggagcctttgttatcggtttctcagcagctggcggcattttacagctcggcgtttcggtcatgtcagagttttttcccaaaagcaaagccaaagtcaccagtatttatatgatgatgggtggactggctaactttgttattccactgattaccggttatctgtcgaacatcggcctgcaatatatcattgttctcgattttactttcgcgctgctggccctgattaccgcaattattgtttttatccgctattaccgcgttttcattattcctgaaaatgatgtgcggtttggcgagcgtaaattttgcacccggttaaacacaattaagcatagaggttaaaggagttaattatggatgttaccgcaaaatacgaattgattgggttgatggcctatcctatccgccacagtttatcgcccgaaatgcagaataaagccttagaaaaagcgggattgccatttacctatatggccttcgaagtggataacgatagctttcctggagcaattgaaggattaaaagccctcaaaatgcgcggaactggtgtatcgatgccgaacaaacaactggcgtgtgaatatgttgatgaattaacaccagctgccaaactggtgggggccatcaacaccatcgttaatgatgatggctatctgcgtggctataacaccgacggcacgggccatattcgcgccattaaagagagcggttttgatatcaaaggcaaaacgatggtgctgttaggggccggtggtgcctcaacggcaattggcgcgcagggggcaattgaaggtttaaaagaaattaaactctttaaccgtcgggatgagttcttcgataaagccctcgccttcgcgcagcgggttaatgaaaacaccgattgtgtcgtcacggtcaccgatctcgccgatcagcaagcctttgctgaagccctggcttccgccgacattttaaccaatggcacaaaagtgggtatgaaaccccttgagaatgaatcattggttaatgatatcagtctgttacatccgggacttctggtcactgaatgcgtgtataacccgcatatgacgaagttattgcagcaggcgcaacaagctggttgcaaaacgattgatggatacggcatgttgttgtggcaaggggctgaacagttcacattatggactggcaaagatttccctctggaatatgttaaacaggtcatggggttcggtgcctgacaggctgaccgcgtgcagaaagggtaaaaaatgaaaaccgtaactgtaaaagatctcgtcattggtacgggcgcacctaaaatcatcgtctcgctgatggcgaaagatatcgccagcgtgaaatccgaagctctcgcctatcgtgaagcggactttgatattctggaatggcgtgtggaccactatgccgacctctccaatgtggagtctgtcatggcggcagcaaaaattctccgtgagaccatgccagaaaaaccgctgctgtttaccttccgcagtgccaaagaaggcggcgagcaggcgatttccaccgaggcttatattgcactcaatcgtgcagccatcgacagcggcctggttgatatgatcgatctggagttatttaccggtgatgatcaggttaaagaaaccgtcgcctacgcccacgcgcatgatgtgaaagtagtcatgtccaaccatgacttccataaaacgccggaagccgaagaaatcattgcccgtctgcgcaaaatgcaatccttcgacgccgatattcctaagattgcgctgatgccgcaaagtaccagcgatgtgctgacgttgcttgccgcgaccctggagatgcaggagcagtatgccgatcgtccaattatcacgatgtcgatggcaaaaactggcgtaatttctcgtctggctggtgaagtatttggctcggcggcaacttttggtgcggtaaaaaaagcgtctgcgccagggcaaatctcggtaaatgatttgcgcacggtattaactattttacaccaggcataagcaataatatttcggcgggaacaccctccccgccgaactaaaaaatatattcaatcgtatttaataaaaatatttcgtgagtctctgtgcgctaattctccatttggcgtagggaaaatcacatctgaatcaggaattaacaatgaaacctgtaaaaccacctcgtattaatggacgagtgccggtcctgtcggcacaggaagcggtgaattatattcccgacgaagcaacactttgtgtgttaggcgctggcggcggtattctggaagccaccacgttaattactgctcttgctgataaatataaacagactcaaacaccacgtaatttatcgattattagtccaacagggcttggcgatcgcgccgaccgtggtattagtcctctggcgcaagaaggtctggtgaaatgggcattatgtggtcactggggacaatcgccgcgtatttctgaactcgcagaacaaaataaaattattgcttataactacccacaaggtgtacttacacaaaccttacgcgccgccgcagcccaccagcctggtattattagtgatattggcatcgggacatttgtcgatccacgccagcaaggcggcaaactgaatgaagtcactaaagaagacctgattaaactggtcgagtttgataacaaagaatatctctattacaaagcgattgcgccagatattgccttcattcgcgctaccacctgcgacagtgaaggctacgccacttttgaagatgaggtgatgtatctcgacgcattggttattgcccaggcggtgcacaataacggcggtattgtgatgatgcaggtgcagaaaatggttaagaaagccacgctgcatcctaaatctgtccgtattccgggttatctggtggatattgtggtggtcgatccggatcaaacccaactgtatggcggtgcaccggttaaccgctttatttctggtgacttcacccttgatgacagtaccaaacttagcctgcccctaaaccaacgtaaattagttgcgcggcgcgcattattcgaaatgcgtaaaggcgcggtggggaatgtcggcgtcggtattgctgacggcattggcctggtcgcccgagaagaaggttgtgctgatgactttattctgacggtagaaacaggtccgattggcggaattacttcacaggggatcgcctttggcgcgaacgtgaatacccgtgccattctggatatgacgtcccagtttgatttttatcacggtggcggtctggatgtttgttatttgagttttgctgaagtcgaccagcacggtaacgtcggcgtgcataaattcaatggtaaaatcatgggcaccggtggatttattgatatcagtgccacttcgaagaaaatcattttctgcggcacattaactgcgggcagtttaaaaacagaaattaccgacggcaaattaaatatcgtccaggaaggacgggtgaagaaatttattcgggaactaccggaaattactttcagcggaaaaatcgctctcgagcgagggctggatgttcgttatatcactgagcgcgcagtattcacgctgaaagaagacggcctgcatttaatcgaaatcgcccctggcgtcgatttacaaaaagatattctcgacaaaatggatttcaccccagtgatttcgccagaactcaaactgatggacgaaagattatttatcgatgcggcgatgggttttgtcctgcctgaagcggctcattaacaggagtataatgatggatttttctttaactgaagaacaagaactgctgctggccagtattcgcgaactgattacgactaactttccggaagagtatttccgcacctgcgatcaaaacgggacatatccgcgtgagtttatgcgggcgctggcggataacggtatttccatgcttggcgtgccggaagaatttggtggtatccctgcggattacgtcacccaaatgctggcgctgatggaagtgtcaaaatgcggtgctccggcatttttaattaccaacggtcaatgtattcacagtatgcgccgtttcggttctgcagagcagctacgtaaaacggcagagagcaccctggaaacgggtgatcccgcctatgccctggcgttgacggaaccaggtgctggctcagataacaacagtgccactaccacttacacgcgtaaaaacggcaaggtctacatcaacggacaaaaaacctttattaccggtgcgaaagagtacccgtatatgctggtgctggcgcgcgatccgcaaccgaaagatcccaaaaaagccttcaccctgtggtgggtcgactccagtaagcccggcattaagattaacccgctgcataaaatcggctggcatatgctcagcacctgcgaagtctatctcgacaacgtggaggttgaagagagcgacatggtgggcgaagaaggaatgggtttcctcaatgtgatgtacaactttgagatggagcgcctgatcaacgccgcgcgcagcaccggctttgccgaatgcgcctttgaagatgccgcccgctatgccaaccaacgtatcgcttttggtaagcccattggtcataaccagatgatccaggaaaaactggcgctgatggcgattaagatcgacaacatgcgcaacatggtgctgaaagtggcatggcaagccgatcagcatcagtcactgcgcaccagcgcggcgctggcaaaactgtactgtgcacgtaccgcaatggaagtcattgatgatgcgattcaaatcatgggcggtctgggctataccgatgaggcgcgcgtctcccgcttctggcgtgatgtccgttgtgaacgtatcggcggcggtacagacgaaattatgatttacgtagcaggtcggcagatcctgaaagactatcagaacaaataatctgcaggcggcgcagcttcttaacaaactgcgccgccagatttatccaacaagacttaccggttgaggaaattcagataggatttcttgttccgcaaaacagtttttaaattgtctacggtaatcgctgggcgaacaaccgacatggcgcaaaaacagtttggcaaagtgatcgacattttcataacccacacgccaggagatctctgcctgtgataattcagtattagtgagtgaccattttgcttccgtcatacgccgttgaataacatagttaataggggaaatacgatactctttggtaaattcatggcaaatataactgacgctggcacgaaattttttcgataactgttctaaagtgattttttcgcgataattattattcagatagaaaagaatatcttttatcagaacatcttttttaatatacccctgctccgaacgataagcatttttaaaattttcgtagtaaagaatggctaacgtataggcaaatgcatcccataacgaagatgtttggctatttttactttgcggcaaaatcacacttagctcattaaataaggtttttatgacttcttttccctgccccgcggcaattaccggacaagaatgcggttgcagtagctgattttcctcagccccctgaaactgaaagccgtacagcgcacaggtacacgtcgttgccggatcgttaacgtcagaggccaccgcatgcagcctgccgcgttctatcaccacaatgtcatccgcatgtgcgacatataacgaagaatcgatggtaaaccttgcaacccctttcttgacgtaaatcaactcggtttcattgtcatgaacgtgatgtccggactcccattttggatcatcgctaaatgcaaaacgtgaaagccgtggcgttttaccggcgacaaacagcgtttcactggcgttatcaaaacagcgttgatacatgacaacctccctattccatgagcaagcaaaaacaatatatgccggataaaatacggcgtgtattgcggttatacaaccgcgtttagcgagagctaaacaagattatttacactgaatgcaagattgtacggtcatggaataactatattgccgcaaattgcacttttgttttagcgatcgcattttttttgcaagattgttggcaagggaaaacagcttgctccgtcgaaaaccccgcaccgctatcgcacactattttcaggccatttttaccttccatcggagatggttccgtatgcgactcacaggagaaatcatgaaaataataacctgctttaagctggtgcctgaagaacaggacattgttgtcactccagaatacaccctgaatttcgacaatgccgacgccaaaatcagccagttcgatctcaatgccattgaagctgcaagccagctcgcaacagatgacgatgagatagccgcgctgaccgttggcggctcattgttgcagaactcgaaagtgcgcaaagacgtgctatcccgcgggccgcacagcctgtatttggtgcaggatgcgcaacttgaacatgcactgcctctcgataccgcaaaagcgctggcggcagcaattgaaaagatcggcttcgatttactgatctttggtgaaggttccggcgacctttatgcccagcaggttggcttgctggtcggagaaattctgcaacttccggtgattaatgcagtgagtgctattcagcgtcagggcaatacactggtgattgaacgcacgcttgaagatgatgttgaagttattgaactctctgttccagccgtgctctgcgtcacctccgatattaacgtgccacgcattccttcgatgaaagccattctcggcgcgggtaaaaaaccggtaaatcagtggcaggcaagtgatattgactggagccagagcgcgccacttgctgaactggtcggcattcgcgtaccgccgcaaacagaacgtaagcacatcattatcgataacgattcgccggaggccattgccgagctggcggaacatctgaagaaagccctgaactgaagcctacggagaagaaacgatgagtcaattaaacagcgtctgggtctttagcgataatcctgaacgttatgctgaactgtttggcggcgctcagcaatggggccaacaggtgtatgccattgtacaaaataccgaccaggcgcaggcagttatgccttatggtccaaaatgtctttatgttcttgcgcaaaacgacgcgctgcaacgcactgaaaattacgccgaaagcattgctgccctgctgaaagataaacaccccgctatgttgctgttggccgcgacgaaacgtggtaaagcgctggcagcacggttaagtgtgcaactgaatgcggcgctggtgaacgatgccacggcggtggatattgtcgatggtcacatttgcgccgaacaccggatgtatggcgggttagcgttcgctcaggaaaagatcaacagcccgctggcgatcattacccttgcacccggtgttcaggaaccgtgcaccagtgatacctctcatcagtgcccgacagaaacggtaccttatgttgctccgcgtcatgaaattctctgtcgcgaacgccgtgcgaaagccgcaagcagcgtggacctgagcaaagcaaaacgtgtggttggcgtcggtcgtggactggcggcgcaggatgacctaaaaatggtccacgaactggcggcggtgctgaatgctgaagtcggctgttcacgtccaattgccgaaggcgagaactggatggagcgtgaacgttatatcggtgtctccggcgtgttgctgaaatccgatctctacctgacgctggggatctccgggcagatccagcatatggttggcggcaacggcgcaaaagtgattgtcgccatcaataaagataaaaatgcgccaatcttcaactatgccgactacggtctggtgggcgatatctacaaagtcgtccctgccctgattagccagttgagccgctaattcccctttcaaccacatctcccgctgtaaacgcagcgggaagggagcataacgcatgtcggatgacaaatttgatgccattgtggtcggtgcgggcgttgctggtagcgttgccgcactggtcatggcacgagccgggctggatgtcctggtgatagaacgcggcgacagtgccggatgtaaaaacatgaccggcgggcgtctttatgcccacacacttgaagcaatcattccaggctttgcagtatcagcgccggtagaacgcaaggtcacacgcgagaaaatctccttcttaaccgaagaaagcgccgttaccctcgattttcaccgcgagcagccagatgttccgcaacacgcatcttataccgtattgcgtaatcgtctggacccgtggttgatggaacaagccgagcaggcgggcgcgcagtttatcccaggcgttcgcgtcgacgcgctggttcgtgaaggaaacaaggtcactggcgtgcaggctggggatgatattctcgaagcgaatgtggtgattctggctgatggcgttaactcgatgcttggccgctcgctgggaatggttcccgcttccgatccgcatcattacgctgttggtgttaaagaggttattggcctcacaccagaacagatcaacgatcgctttaatattacgggcgaggaaggtgccgcctggctgtttgccggttccccttctgacggcctgatgggcgggggatttctctataccaacaaggattccatatccttggggctggtttgtggattgggtgatatcgcccatgcgcaaaaaagcgtgccgcaaatgctggaagattttaaacaacaccccgccattcgcccgctgattagcggcggcaaactgcttgaatattccgcgcatatggtgccggaaggcggtctggcaatggtgccgcaactggttaacgagggcgtgatgatcgttggtgacgccgcaggcttctgcctgaatttgggttttacggtccgcggcatggatttagccattgcatcggctcaggctgccgccacaacggtgatcgccgccaaagaacgcgcggatttctccgccagcagtctggcgcaatacaaacgtgagctggaacaaagctgcgtcatgcgtgatatgcagcattttcgcaagatcccggcgctgatggaaaacccgcgcctgtttagccaatacccacgaatggtagccgacatcatgaacgagatgttcaccatcgacggcaaaccaaaccagccggtacgaaaaatgatcatgggacatgcgaagaaaattgggctgatcaacttgctgaaagatggcattaagggagcaaccgcgctatgagccagaacgctacggttaacgtcgacatcaaattaggcgtcaataaattccatgttgatgagggccacccgcatatcattctggcggaaaatcccgatatcaatgaattccataaattaatgaaagcctgccctgccggactttataagcaggatgacgcaggaaacattcattttgattccgccggttgtctggagtgcggcacctgtcgggtgctgtgcggtaacactattctcgaacagtggcaatatcccgcaggcaccttcggtattgattttcgctacggctaatcatgcatcccacaggcccgcatctcgggcctgatgttctgtttcgagagtccaacatgaaagtgacattaacgtttaacgaacaacgtcgtgcggcgtatcgtcagcaagggttatggggcgatgcttcgctggccgattactggcagcagaccgctcgtgcgatgccagacaaaattgccgtggtcgataatcatggtgcatcgtacacctatagcgcgctcgatcacgccgcgagctgtctggcaaactggatgttagcgaagggtattgaatcaggcgatcgcatcgcatttcaactgcctggctggtgtgaatttaccgttatctatcttgcctgcctgaaaatcggtgcagtttccgtgccgctgttgccttcctggcgggaagcagaactggtgtgggtgctcaataagtgtcaggcaaaaatgttctttgcaccgacgttgtttaaacaaacgcgtccggtagatttaatcctgccgctgcaaaatcagcttccacaactacaacaaattgtcggcgtggacaaactggctcccgccacctcttccctctcattaagtcagattatcgccgacaatacctcactgaccacggcgataacgacccacggcgatgaattagctgcggtgctgtttacctccggaaccgagggtctgccaaagggcgtgatgctaacgcataacaatattctcgccagtgagcgggcttattgcgcgcgactgaatctgacctggcaggatgtctttatgatgcctgcgccacttggtcacgcaacgggctttctgcatggcgtaacggcaccattcttaattggcgctcgcagcgtgttgttagatattttcactcctgatgcgtgtctcgcgctgcttgagcagcagcgttgcacctgtatgctcggcgcaacgccgtttgtctatgatcttttgaatgtactagagaaacaacccgcggacctttcagcgctgcgtttctttctttgcggcggaaccacaatccccaaaaaagtggcgcgtgaatgccagcagcgcggcattaaattattaagtgtttatggttccacagaaagttcgccgcatgcggtggtgaatctcgatgatcctttgtcgcgctttatgcacaccgatggttacgctgccgcaggtgtagagattaaagtggtcgatgacgcacgcaagaccttaccgccaggttgcgaaggtgaagaagcctcgcgtggccccaatgtgtttatggggtattttgatgaacctgaattaaccgcccgtgccctggatgaagaaggctggtattacagcggcgatctctgccgtatggatgaggctggctatataaaaattaccggacgcaaaaaagatattattgtccgcggcggcgaaaatattagcagccgtgaagtggaagatattttattgcagcatcctaaaattcacgatgcctgtgtggttgcaatgtccgatgaacgtttaggtgaacgatcatgcgcttatgtcgtgctgaaagcgccgcatcattcattatcgctggaagaggtagtggctttttttagccgtaaacgggtcgcaaaatataaatatcctgaacatatcgtggtaatcgaaaaactaccgcgaactacctcaggtaaaatacaaaagtttttgttaagaaaagatattatgcggcgtttaacgcaggatgtctgtgaagagattgaataagtttcatcttcggggatcacataaccccggcgactaaacgccgccggggatttattttatttcttcagttcagccaggcttaaccaggtttgcaccacggtgtccgggttcagagacaggctatcgatcccctcttccatcaaccatgcggcaaagtcttcgtggtcggacggaccctgaccgcaaatcccgacatatttgccctgtttcttcgcggcacggatagccatcgacagcagtgctttcaccgcatcgttgcgctcatcgaacaattcagacaccacgccggagtcacggtccagaccgagcgccagctgcgtcatatcgtttgagccaattgagaagccgtcgaaatattcgaggaactgctcggccagcaaggcgttggacgggatttcacacatcatgatgattttcagcccgttctcgccacgtttcagcccctgacgcgccagttcttcaaccaccgctttcgcctgatctacggtacgcacgaacgggatcatgatctcaacgttggtcagtcccatgtcgttgcgcacacgtttcactgcttcacactccagcgcgaaacagtcgcggaagctgtcggaaacatagcggcccgcgccacggaagccgagcatcgggttctcttcatctggctcgtaacgctcaccaccgaccaggttggcatattcgttcgatttaaaatcagagagacggacaatgacgcgcttcggataaaacgcggcacccagcgtcgcgatcccttcagtcagacgaccaacgtaaaattcacgcggagaatcaaaacctttcatcatctcgcggatttcgttttgcaactgcggttcctgatcgtcaaactcaagcagtgcgcgtgggtggacgccaatcatacggttgatgataaattccagacgcgcaaggcccacgccttcgttcggtaggcaggcgaagtcgaaagcacggtccgggttaccgacgttcatcatcactttcaacggcagatccggcatcgtttctacgctggagcttttcacgctaaattccagcaactccgcatagacgtaaccggtatcaccttcggcacaagaaacagtgacgttctcaccgtctttcatccgttctgttgcatctccacagcccactaccgccggaatgcccagttcacgagcgatgatcgccgcgtgacaggtacgaccgccacggttggtgacgatggcagatgctttcttcatgatcggttcccagtccgggtcggtcatgtcagtaaccagcacgtcgccaggttcgatgcggttcatttcgctgatgtcatggatgactttcaccggacccgcaccgatgcgatgaccgatagcacggccttcggcgataatcttaccctgtgaatgcagcgtataacgctccatgacctgaccgcgtgagcgcacggtttccggacgcgcctgcacaatgaacagtttaccggtgtggccatctttcgcccactcaatatccatcgggcgaccgtagtgtttctcaatttgtacggcctgttttgccagttcctgcacttcttcgttggtcagcgagaagatgtcacgctgttcctgcggtacgtcttcgattttaacctgcttgccgtgctcctgggtcggcgcgtaaaccatgcggatttttttcgaccccatggtgcggcgcacgatagccgggcgattcgccgccagtgtcggtttatgcacgtaaaactcatccgggttaaccgcaccctgcacgaccatctcaccaaggccccatgcggaagtgataaacaccacctggtcaaagccggattcggtatcaatggagaacatcacgccagatgatgcgaggtcagagcgcaccatccgttgaacaccggcggagagcgccacaccacggtgatcgtaaccctggtgcacacgataagagatggcgcgatcgttaaacagagaagcaaatacatgtttcactgccacgagaacggcgtcaaaaccctgaacgttgaggaaggtttcctgctgaccggcaaaagaagcgtccggcatatcttctgcggtggcggaggagcgcaccgcaaaagaggcgttttcgtcatcggcggaaagctgtgcataggcttcgcggatggcgttttccagctcaggctggaagggagtgtcgataatccactggcggatttgcgcgcccgctttcgcaagctgagtaacatcgtcaatatccgttttatccagcagttcataaatgcgctggtttacgccgctttggtccagaaactggttaaacgcgtcggcggttgtggcgaaaccattcggaacggaaacacccattccggaaagattagtaatcatttcacccagggaggcatttttgcccccaaccctgtctacatcattcatgccgagttggttataccaaagcaccagcggtgacgagccattgttggacatcgaacaatccttttgtgataaatgaacggtttgagaaacacatttctgcgcatttatctttgcatatttaaccggatgaaaaaaacggtgaatcgttcaagcaaatatatttttttactttttaagactgatcccagcgttgcgcaaatctgctctcttcgacaatttccacataaaccatcggtataaacgaaaccataaaaatgaaatgctgttttcataaaaaataaaattgaaggttcattttataaaccagacataacgttctacgcttctgtgcgtttttaatttatgctttcatagaattatgtctgcatcacgggaagaacaaaatggataatgctgttgatcgccacgttttttatatttctgatggtacggcaataactgcggaggtattaggacacgcagtaatgtcacaatttcccgtcactatcagcagcatcacgctgccgtttgtcgaaaatgagagccgtgcacgggcagtgaaggatcagattgacgcaatttatcaccagacaggcgtgcgcccgctggtcttctactccatcgtgttgccggagattcgcgccatcatcttgcaaagtgaaggcttttgccaggatatcgttcaggcgctggttgccccgctacaacaagagatgaaactggatccaacgccgattgctcatcgtacccatggccttaaccctaataatctcaataaatatgatgcgcgcattgcggcgattgattacaccctcgcccacgatgacggcatttcgttgcgcaatctggaccaggctcaggtgatcctgctcggtgtttctcgctgtggtaaaacccccaccagtctgtatctggcaatgcagtttggtatccgcgcggcaaactacccctttattgccgacgatatggataatctggtgctacccgcgtcgctcaaaccgcttcagcataaattgttcggcctgactatcgacccggaacgtctggcggcgattcgcgaggaacgtcgggagaacagtcgctatgcctcgcttcgtcagtgcaggatggaagtcgcggaagtggaagccttgtaccgtaaaaatcagatcccgtggattaacagtaccaattattcggtagaagagattgccaccaagatcctcgatatcatgggccttagtcgccgaatgtactagagaactagtgcattagcttatttttttgttatcatgctaaccacccggcgaggtgtgacacacctcgcacttgaaatcagcagcgattggtttatcgtgatgcgcatcacttcccggcagtcctgccgtagaagcaacaaatttctgagacttgtaatgaacagaactgacgaactccgtactgcgcgtattgagagcctggtaacgcccgccgaactcgcgctacggtatcccgtaacgcctggcgtcgccacccatgtcaccgactcccgccgcagaattgaaaaaatactgaatggtgaagataagcgactgttggtcattattggcccctgctcgatccacgatctcaccgctgcaatggagtacgccacccgtctgcagtcgctgcgcaaccagtaccagtcacggctggaaatcgtaatgcgcacctattttgaaaaaccacgaactgttgtcggctggaaaggactaatctccgatccagatttaaacggcagctatcgggtaaatcacggtctggagctggcgcgcaaattacttttacaggtaaatgagctgggcgtcccaaccgcgaccgagttcctcgatatggtgaccggtcagtttattgctgatttaatcagttggggcgcgattggcgcacgtactaccgaaagtcagatccaccgcgaaatggcttcggcactctcctgtccggtaggttttaaaaatggtaccgatggcaatacgcggattgctgtggatgctatccgcgcagcccgcgccagccatatgttcctctcgccagacaaaaatggtcagatgaccatctatcagaccagcggcaacccgtatggccacattattatgcgtggcggcaaaaaaccgaattatcatgccgatgatatcgccgcagcctgcgatacgctgcacgagtttgatttacctgaacatctggtggtggatttcagccacggtaactgccagaagcagcaccgtcgccagttagaagtttgtgaggatatttgtcagcaaatccgcaatggctctacggcgattgctggaattatggcggaaagtttcctgcgcgaaggaacgcaaaaaatcgtcggcagtcagccgctcacttacggtcaatccattaccgacccgtgtctgggctgggaggataccgaacgcctggtcgaaaaactcgcctctgcggtagatacccgcttctgaatgcgtgcccattcctgacggaatgggcatttctgcgcaacttgttgtcttctcaacaaattactgcttgctctggtcagccataatattgataataagaatcattgttatatcaattattattaatttttatgcgttatacggatagcagaaaactcacgcctgaaacggatgccaatcacaagaccgcttccccgcagcctattcggcgaatttccagccagacactgttaggtccggatggcaaactgattatcgatcatgacgggcaagaatatctgctccgtaaaactcaggctggcaagctgctgttgaccaagtagcctttaactcgagcagctgacttccagccgtttaccccagtcaggtggacgactgacatagtcatcatctctgtcgctgaaaggatttcgcaacgcctcatgcaggcggtgcaattccgtcatatcacccttttctgccgcttcaatcgcccgttgcgccaaccagttgcgcaataccagagcggggttaacgctttgcatcagttgctgacgctcactatcgctaacctcgtcttgttgcaaacgcccccgataacgggcaaaccagtcatcaaatgccgcacgatcaataaactcatcacgtagcggtgacgccgcgctgtgctgctcggtcagactcagcatgcggaatgtgcgggtataatcgctgcgctctcgcgccatcagactgaataattcattcagtagcgcgttatcctctttttgctccgtcatgaagcccagtttctgccgcatccgttctccataatgcgtcaacaaaacctgctgatagctgtccagggcctcattcagggcatctacggcaacaaatggcgacaatgtctgcgccagacgctgtaaattccacaacgcgacggcaggttgattatcaaagctgtaacgcccttgatgatccgagtgattacaaataaaaccgggttcgtaatcatcaagaaaaccaaacggcccgtaatcaagcgtcagccccagcagcgacatgttgtcggtattcatcaccccatgagcaaagccgaccgtctgccattgggcaattaacgacgcggtacgtgcgacaacatcgctaaaccagagacggtatttgtcctcatcatctgcaagatgtgaccagtaatgacgaatagcaaagtcagctaactgacgaaccttttccgactcgcggcggtagtaaaaatgttcgaaatgaccaaagcgcagatgacttggtgccacacgcatcagcatcgcgcctggctccgccgtttcccgatacactggcgaatcgctggtgacgatacttaacgcgcgggtcgtcggaatgcccagataatgcatcgcctcactggcgagactttctcgtatcgtcgaacgtaaaaccgcccgtccatcacccattcgcgaataaggcgtcaggccagcacctttcagatgccagtccattgtagtgccatcagcaagcagttgttcgccgagtaaaatgccgcgcccatcacccagttggcccgcccagacgccgaactgatgaccactgtaaacctgcgccagtggtgacataccaggcagtagggcttcgccgccccagacacctgcgccatttttaaacagcgacgatggaatactcagcgtgttagccagttcggtattatgccaaatcagccgggcattatttaaaggcgtaggggaaagtgctgtataggtttctggcaattcatcgcgccagcgggtaacaaaagacagggtcatagatcctcctgtttgatagtgtagacggttactctcgtcttaaacaccagcaaacagaagggttatcgctgaaccaacgtcgttatctgatttatgggaacggcaggccacaggcatccctggagagcatggaaatcgaagggggtaatctgtgccaatatttctgccgtatcaatgcctcccgcaatgatgcaattgcaacaaggggaaatttgcgcctggatcgcacgaataaacggttcgaaggagcggtgcgtgatttgttgctgaataaaacttttatccagcatgacgcgggtgaaaagaccatcaaaaaccgctttcattgtgctattgcctgctcccaaattacctaacacaaggggatacacttgcgataaggataaaagaccgcgattatcttttccttcattgagatgcgggtaattctcattaatcaacagttcaataaacggatattttaatagttcgcctgcgtaattatccctctctaataataatgtagccacttgtggcgttaaattaagccaggcaaagagtttatgttgaataaaaaaatgttggcatgattttagtaattccaactgctctgaaaataattgccaatgttgctcctcggtaagttgcgctataacccgactcgtcgggatacgaaccgtaccatcttcactggagaaatgggtaattaactcaacgccgacaaggacttgctggttgtctcttatcggcaggaaatagcaatcagaatgataaagattctccaaaaaaatcttcatggtaaccgtccctctcgaaggatgtttttcagtatccggctaaaagggatgaggccataagacataacaattacagaaggagtaactttcatttgttccatgttaaccactttttcaggggtcctttttttagattatcctgattataaacgaataatccatttacggaatttttgtctgcaaaatactactgtattcaggagtaaatggacggcgatgtatcatcgccgtccatttttcgacatactagattcgtctcgcctgccagaaatttttctgccaatagacattatcaagtgaggaacgcatcactcccttgctggtagaggcgtggataaattggttgttggtatcgtaaatacctacatgcaaaccattttgtccggaccccgttttgaaaaagaccaggtcacctggcagcaactcgtctttatcaatttgcgtgccaatagaggcttgttgtttggtttcacggggcagctgcaaatcgaaacgatcgcgcatcgtcacaaccacaaatcccgaacagtccacaccgcgccgcgtcatgccaccataacgatacggcgtgccatgccagctttgtagctggtcgttcaaaccggcaataacggtaatcgaatcagaaagtctggcatttggcggcggtgctttatggtggctacacccggccagaagcagtgctgtgatcaaaataaggcagaaacgcattccgtacggttcctctgttttttattcttgcattaatttagcgtcgtaattacccgattttcaagatactaatgaaatcagatggtcgaaatcagcattctgtgaccttcgatatccagacggcgaaaattcatcccataggcctgcgccagatttggcggcgtgagcacctcttccctgcgtccactggccagcatttttccaccttttagcaaccacgcccgatgcgcatgacgcaatgtgtggttgagatcgtgactgctcatcacaatcgccagtccttgctgacacagcgcgctcagaattttgtctaacgcactttgttgcgcaacatcaagactgttcatcggctcatcaagaagcagcaattggcctgcgggattggcttgtggtgtgatttgcaacaccaccgcagcaagacgtacgcgttgccattcaccgccggaaagttgattggtgctacgtccgagtttgtcatcaagagccagcgcccctgcgacatcattcagtagttcggtacgcgttttatcgtgctgatgcagtgtcaggtagtgccagaccggcgttgcaaacggcggcgtctgctgttgtgaaagataggcgcgatgcagcgcgagttttgttgcggaccatgcttccagtggttgccccgcgaactgaatgcttcccttaccgctggtcattccggccattcgcgccagtaaggtactcttacccgcgccattcggccccaccaggtgcaggatctccccagcccgaacctcgccagaaagcggccccaggcgggtagattccgcaacatcttgtaactgcatcacaatagacattattttgccaacgccagtttaatgctttccatcacaatgggatcttccggcgtcatatccggggaaaaacgctggatgacttttccgtccctgccaaccaggaatttttcaaaattccataaaatatcatccgggtacagcggtgcacggcctttgctgaccatacgggcatagaatccgctctcttccggcgcgactgcggtcggcgctgcggcaatcaatttttgatacagcggatggcgtccttcgccattaacttcaatcttactgaacatcgggaacgtcaccccccatgtggtggtacagtaagttttaatctcttcatcgctgcccggttcttgttccagaaactggttgcacgggaatcccagcaccataaaacctcgatcgacccaggctttctgaatattctccaactgctcatattgcggcgttaagccacactttgaggcgacattgacaatcaacagcacattaccggcgaacttctccagcgtggtcacttcaccgtcgatatctttcactacggtcgtcagaatggaatcttgcatcgtttctcctgggtgtggtcagtaaaaatcttagcttttaatcatagaccgtctttttgcggctaacgtcctgcttttaacaataaccagataaacaccggcgcacctaacgttgcggtgaccacgccaataggcagctctgcggcagctaatgccaggcgcgctacaatatcggccagcagcaatgcgctcgcccctgccagcgcgcagccgggaagtaatacgcgatgatcggttaaaccacacaaccggagaatatgggggatcaccagaccaataaagccgatagcacccgccagcgccacactgacgccaaccatccagccggtcgctgccaccagcacattgcgccagaaccacaggggtaaacccagttgccgcgccgagatctcgccaagtgctaacatattcatcggcctggactgacaacagatccacaacaacacggggatcaatgccagcatcagccagctttgccgccagtctacgccgccaaaaccgcccatcatccagtacatcagctgacgcaaatcaactgaggtggaaaagtagatagcccacgtcattagtgcgctacagataatccctaatgcaacgccagccagcaataaccgactggtcgaaagatgacgacgggcgaaacgtaagagtattaaagtgatgataagcgcgccagcaatcgcacacagccctagcgcccagttggggagttgcccttgcccaagcaataccgcggcgataagccccacgcctgcgccgttagagacgccaagtagtccaggttctgccagaggattttcaaacaacgcctgcattacagcgccggatatagccagcgccgcaccaaccagcaatacagccagcgtacgtggcaggcgaatttgccagacgaacagttcgccacgaggagtaaaccagtcacctggcgagatccattgttcaccggcgcaaaggcttaagagaagcgccagcagcatcaaaactgacaggcataataaccagcgaatattttgtcgctgttgttggcgggcaagtgtcagcatggtatccgttctgctgaagtgtcatggcgttgattttacggtgactcttcgacagtgaaaagaaaaaaggccgcagagcggcctttttagttagatcagattactcgtctttgggcgaagcgttttcgacccggctttttaacttctgcccgggtctgaaggtcaccacgcgccgtgctgtaatgggaatatcctcgcccgttttcgggttacgtcccgggcgttgattcttatcacgcagatcgaagttaccaaaaccagagagtttcacctgttcgccgttttccagagcgcgacggatctcttcgaaaaacagttcaaccagttctttggcatcccgcttgctaagcccaagcttatcaaacagatattctgacatttcagcttttgtaagcgccataggttcaatccctcaatgatgcctggaatcgctcttttaatgcctctacacatttggcgacggtagcggcaatctcctcttcttcgagtgtacggctggtatcttgcaggatcaggcttatggcgaggctcttatacccctccgcaacacccttaccgcggtacacgtcaaataagtttacgccaactacctgatttacgccaactttcttacattcggataaaatatccgctgcgggaacgttttctgcgaccaccaccgcgatgtcacgacggttcgccgggaagcgagaaatctcgcgcgcctgaggcaccacgcggtctgcgagcttgttccactccagttcgaacaccagagtgcgaccgttaagatccagtttacgttccagttcaggatgaacaaccccaacaaaaccaatacgttcacctttcagataaatcgctgcggattgccccggatgcagtgccggattcgcttctgcacggaactcaacctcattcagtttaccggtcaggtcgagaacggattcaagatcgcctttcaaatcatagaaatcaacggtctcttttgccaggttccagtgctcttcgtaacggttaccgcaaatcacaccggctaacatcagatcctgacgaatgcccaacggtgcctgagtatctggtacgaaacgcagaccgctttcgaaaatgcgcacacggttctgctgacggttctggttgtacaccacggttgccagcaggccagtccacagagaaagacgcattgctgacatttcaacagagatcgggcttggcagcagtaaggcttcaacgcctggatggatcatctgctgcactttcggatcaacgaagctgtaggtgatcacttcctgatagcctttgtcgttgagcagcgttttcacgcgcttgagcgacaggtcagcttcacggtgagtacccataatcaggcttgcctgtaccggctcatccgggatgttgttgtagccgtaaacacgcgcgacttcttcaaccagatcttcttcaatctccatatcgaaacgccagctcggcgcaactgcctgccattcgtctttgccttcggtcacttcgcagccgagacgacgcagaatgtcagttacctgctcatccgcaatatgatggccgatcaggcgatccagtttgctacgacgtagagtgatggttgcacgcttcggcagcgttgcttcgttggtgatatcaattaccgggccagcctcaccaccgcagatgtcgatcagcagacgggtcgcacgttccatcgctttgtgctgcagtgccggatcaacgccacgctcataacggtgagacgcatcggtatgcaggccatgacgacgagcacgaccggtgatagacagcgggctaaagaacgcgcattccagcagcacgttttgtgtttcgtcattcacgccagagtgttcgccaccgaagatgccgcccatcgccagcgccttgttgtggtcggcgatgaccagagtgtcagcattcagcttcgcttcagtaccgtcgagcagcaccagcgtttcgccctctttcgccatccgcaccacaatgccgccttcaatgcgatctttatcgaaagcgtgcatcggctggcccagttcgagcagcacatagttggtgacgtcaacaactgcatcgatagaacggatcccgcaacgacgcagtttttctttcatccacagcggagttggcgctttaacgttaatgccttttaccacacggccaagataacgcgggcaggcttccggcgcttcgactgtaatcggcagcgtgtcgtcgatggtcgcaccaaccggaacgatttccggttgaaccagcggcagctggttcagcacggcaacgtcacgcgcaacaccaatgatgcctaagcagtcggcacggtttggcgtcacgctgatttcgatggtgttgtcatcaagtttcaggtattcacggatatcggtgccaatcggcgcatccgcaggcagttcgataatgccgctgtgatcgtcagaaatgcccagttcagagaaggagcacagcatcccttcagacggttcgccacgcagtttcgccgctttaattttgaaatcacccggcagaacagcaccaatggtcgctaccgctacacgcaggccctgacggcagtttggcgcaccgcagacgatgtccagcaggcgatcgccgccgacattcacttttgtcacacgcagtttgtcagcgttcggatgctgcgcacactcaaccacttcaccaacgaccacgccgtggaagctgccggcaaccggttctacaccgtcaacttccaggcccgccatagtgatttgatttgccagcgcatcgctatcaatcgccgggttcacccattcgcgtaaccacagttcactgaatttcataatctattcctgccttatttaaactgtttgaggaaacgcagatcgttttcgaagaatgaacgcaggtcggtgacgccgtaacgcaacatagtcagacgctccatccccatcccgaaggcgaaaccagagtaaacttccgggtcgatgccaacgttacgcaacacgttcggatgcaccatcccgcagcccagcacttccagccatttaccgtttttacccatgacgtccacttctgcagaaggttcggtaaacgggaagtaggaaggacggaagcgaatctgcaaatcttcctcaaagaagttacgcaggaagtcgtgcagcgtgcctttcaggttggtaaagctgatgttggtatcaacaatcagaccttccatctgatggaacatcggcgtgtgagtctggtcgtagtcgttacgataaacacggccaggcgcgatgatacgaatcggtggctgctgggctttcatggtgcggatctgtacgccagaggtctgggtacgcagcaggcgggtagtgtcaaaccagaaagtgtcgtggtcagcgcgcgccgggtggtgaccaggaatgttcagagcatcgaagttatgataatcgtcttcgatttccggcccggttgccacggtaaagccaagctcaccgaagaaactttcgatacggtcgatggtacgggtaaccggatgcagaccgccgttttcaatgcgacgacctggcagagagacatcaatcgtttccgccgccagacgcgcattcagtgcagcgctttccagttccgctttacgcgcattcagcgcctgctgaacctgctctttcgcttcgttgataaccgcaccagctgccggacgctcttctggcggcagctcacgcagggtcgtcatctgaagggttaagtgcccttttttacccaaatattcgacgcgcacattatctaacgcggcaacatctgacgcctggctaatggccgccttcgcactggcaaccagttctgcgagatgtgacatggttttcctcattgtgtcagtggtgacactggttcgttggacttagagcctatcccatcaggctattttacttgccattttggtcccgggctgtgctcgaaattctcacgtacttaaatacgctccggtttctccgcgctggccgtgtccagtctggctgcgacaattacacctgatgagacaggctttttatttttcaaaacgcgcatacaaaaaaagcctccactgggaggctttcaggcgctgttttccgtttctcttctcacgcgctagcctcctggattcaggtgctaaagtaaaaaaagaagcggaaaatagcagcattcattgcttgcgttaccttttggtactcttcaaaagacctttattgaaaaggctacggcgataaaagtcaatgttttgatggcgttgaaacgaaaagagggagactagctccctctttcaactggcttatgccagagctgctttcgctttttcaaccagagcggtgaacgctactttgtcgaatactgcgatatcagccaggatcttacggtcgatttcaacagaggcttttttcaggccattgatgaatttgctgtaagaaataccgttctgacgtgctgctgcgttgatacgcgcaatccacagttgacggaactgacgcttacgttgacgacggtcacggtaagcatactgaccagctttgataacagcctggaaggcaacgcggtatacgcgagaacgcgcaccgtagtagcctttagcttgtttcaaaattttcttgtgacgtgcacgtgcaataacaccacgttttacgcgagccatatgtgctctcctgtatctatattctaattaaaaagttaaaaacgttaacggcttatgcgtacggcaggcacgcgattaccaggcccagatcgcctttggaaaccatggctttcggacgcaggtgacgtttacgtttggtcgcttttttggtcagaatgtgacgcaggttagcgtgcttgtgcttaaaaccacctttaccggtttttttgaagcgcttagcagcaccgcgtacggtcttaatttttggcattttaataacttccacttcgcattgttaataaacgaaacaaaggcgaacaaagcctgtgaagcccgaaggctccacagacagtgctacttgaaggccttactgtttcttcttaggagcgagcaccatgatcatctggcggccttcgatcttcgttgggaaggattcgaccactgccagttcttgcaaatcgtctttcacgcgattaagcacttccataccgatttgctggtgcgccatctcacgaccgcggaaacgcagcgtgattttggctttatcaccctcttcgagaaagcgaatcaggctgcggagttttacctgatagtcgccttcatctgtaccaggacggaatttaatttccttaacctggataactttttgctttttcttctgttccttagaagacttgctcttttcatagaggaatttgccgtaatccattatacgacaaaccggcggctcggcgttagggctgatctcgactaagtctactccggcttcttctgctttctccagagcttctctcagactcacaataccaagctgctcgccttccagacctgttaagcgaacttcctgggcgcgaatttcgccattgatacggttagggcgcgccgtttgaactcgttttccgcctttaataccttattcctccaattgtttaagactgcggctgcgaatctcttgttgcagcttctcgatcacttcatttacgtccatgcttcccaggtctttaccacggcgggtgcgaacggcaactttgcctgattccacctctttatcaccacagaccagcatatatgggacgcgacgcaaagtgtgctcgcggattttaaagccaatcttctcatttctcaagtctgctttaacacgaatgcccgcatttgatagtttttgcgtcaattcgttaacgtattcagactgtgaatcggtaatattcatgataacaacctgaaccggcgcaagccaggtcgggaagaaaccagcgaactcttcggtcaggataccgatgaaacgttccatcgaccccagaattgcgcggtgaatcattaccggtactttacgttcattgtcttcgcctacataagaagcgctcagacgagacggcaaagagaagtccagctgtactgtaccgcactgccatgcacgatcgaggcagtcatacagggtaaattcaattttcggaccgtagaaagcgccttcacccagttgatattcaaacgggatgttgttttcttccagcgcaaccgccaggtccgcctcagcacgatcccacatttcgtcgctgccaatacgtttttcaggacgagtggagagtttgacgacgatcttctcgaagccaaaagtgctgtacatatcatagactaaacggatacatccgttaacttcatcgcgaatttgttcttcagtacagaagatatgcgcgtcatcctgggtaaatccacgcacgcgcatcaggccatgcagcgaacctgacggctcgttacggtggcagctaccaaactcggccatacgcagcggcagatcgcgataagacttcagcccctggttgaaaatttgtacgtgacccgggcagttcatcggcttaatgcagtattcacggttctcagaagatgtggtgaacattgcatctttgtagttgtcccagtgaccggttttttcccacaggacacggtccatcatgaacggacctttaacttcctgatactggtactctttcagtttagaacgaacaaacacttccagttcacggaagatggtccagccgtcgttgtgccagaataccatacccggcgcttcttcctgcatatggtacaggtcgagctgtttaccgattttacggtggtcgcgtttcgcggcttcttccaggcgctgcaggtaagcgttaagtgcttttttgtctgcccacgccgtaccgtaaatacgttgcaacattttgttgttgctgtcgccacgccagtaagcccctgccgttttcattagtttgaaatgatggcagaaacgcatgttcggtacgtgcggaccgcggcacatatcgacatattcttcatggaagtacagacctggcttgtcatcatgggcgatgttttcgtcaagaatggagactttgtagctctccccacggttggcgaaagtttcacgcgcttcgtgccagctgactttcttcttaatgacgtcgtagtttttctcagcaagctcatgcatccgcttctcgagtgcttcgacatcttcctgggttaacgtgcggtcaagatcaacgtcgtaataaaaaccgttgtcaataaccgggccgattgccattttggtatgcggccaaagttgtttaatcgcgtgccctaacaggtgcgcacaggagtgacgaatgatctccagaccttcttcgtctttggcggtaatgatcgacagttgtgcgtcgttttcaatcagatcgcaagcatcaaccagttcgccattaacgcgccctgcgatacaggctttcgccagacctggaccaatgtccagcgcaacatccatggggcttacagcgtgatcgtaatggcgttggctgccatcaggaagagttataacaggcattttatatccttatttgcagtggtgacccacacgaaagatcacatacaaagaaaaatttgtttattaacagttcattgcgaaaccatctagccaacaaatgctaaattggttcgcaatcaggtacacaaatgaaagacattaacctctcaccttccacccggttgagcgatgttaacactaaaaaaagggagattgtacctttccgtttcacattgattcgattcgcaattcgtttgtagtgagtacaccagcaaaacgcttaaagaacaactgataacatcacggtgcgtctgaaaggtttactgcgagcggatttacagcagcataaactgaatccagcaaagttcgttgcgtgatttggcggtagtattttaaacgctcatgagattaatgacgaagtggtcatatcacaatgataaaagtgacacaattcttataacaatttttcgtgcacatttcgttctggcgataataattaatcatcatcctcaaaacctccagatatatataaggcgaacagattatgagtcaaaacgatatcattatcagaactcattataagtctcctcatagattgcacatcgatagcgacataccaacaccttcatcagagcctattaatcaatttgcgcgccagctcatcaccctacttgatacctctgacttaagttcgatgctgtcatactgtgttactcaggaatttaccgcaaactgtcgaaaaatatcacaaaattgttattccactgccctttttaccattaactttgccacttcacccatccatacagaaaatatactcattacattacactataaaaaagaaatcatttccttattactggaaaccacgcctattaaagctaaccatttgcgaagcatactggattatattgaacaggaacagttaactgctgaagatcgtaaccattgtatgaaactgtctaaaaaaatccatagagaaaaaaactatacacccaacagtaaatctcaatggtagtgcatgttttttgcaatctccttctgacgctattttttgtcgccatctgtcattgcaatacgcccttgattcattgagaaatggaaaaggcaaagtcaacctgattaaacattactcctccgttgaatccatacagcagcatgtccccttagtccgggacgcggagttcagagcattacttcgccatcctcctgcagggagtcgcgttatcgcgagtaaggattttggcttcgctttagatattttcttttgtcgaatgatggcaaacaatgtcagtcatatgtccgcgattttatatatagacaatcatactttgtcagtaaggctacgaataaagcagtcagtgtatggacaattaaattatgttgtgtccgtttacgacccgaacgataccaacgttgccgtcagagacacccacaggacagcacggggctttctttcgcttgataagttcatcagttcaggtcccgatgctcagacctgggctgatagatatgttcgcaactgtgcaattgctattctgcccctattacctgtgggagttccaggggctattttcgcgggtattgcatcacgaatgccatttgcccctatacatccatcggcaatgttgttaataatggctacaggccagtctcaacagcttattacattattcaaacagttgcccatactccctgaaaaagaaatcattgaaataataactgcgcagaatagcgttggtacacctgctttatttttggctatgatgaacggacatactgacaacgtgaaaatatttatgcaagaaattcagtcactggtagataatcacatcattcatgaagataatctggttaaattactgcaaactaaaagtgctaacgaaacacctggactttatatctccatgttgtatggattcgatgaaataatcgatatctttctgaatgcattaaccactccaatagcacaagagcttttaaacaaaaaactggtgatgagtattttagccatgaaaatacatgatggtgagccaggattatacgccgcaatggaaaataatcaccctttgtgtgtcacacggttcctctctaaaattaatggcatcgcctttaaatacaagttgagcaaagctaacatcatggatttattaaaaggagctacagcacagggaacccctgcattatacatcgccatgagcaagggtaatgaagacgtcgtgttatcttatatatcgacgctgggtgcttttgcaaaaaaacattcttttagtcaacatcagttatttacactattggccgctaaaaatcatgacaacatgtcagctgttcatatagccattcatcataagcattataaaactgtagaaacatattatgctgctattaatgcaatcagccaaagcctgagttttagtgctgatgaaataaagacgtatttataaccagctatttacgatatatatcgatacataattttatttttttcataaaacgcagaaacagtgaccatgtgcacaacgccacccgacggctgtaataacaaaaaatcccttgatgcctgtcccttttgttacactccgttatcacgcacaagagatatgcaggacactggtatgccgactaaacgctttgataaaaaacactggaagatggtggtggtgctactggcaatctgtggcgctatgttgttgctacgttgggcagcaatgatttggggctgagcagtgacaaacgaagacagccagaccgcataacacggtccggcagataattttacatgctgtagcccagcgataaggttgtccgacggtcggtatgttccggtgcagactctggaggttcagagttccatgtgacgttgtaagccaccttcagtccaaaatgttcattaatagcaacatttaatgcgctttcggagttcagcgttgtgtcttccgcgccaaagaccgaaacaccctgcgtaaatttagcgttgtcagtcaactgccatgcataagccccggaggcatagcccagcggctgggtttcactggcattgtcggtatatttgtcgtaacgcacacctggaccgaattcaaagcggaaactgtgtaccgggccattcaaaaactgacgaccataacccgcggtcaacacatcgcgctctcgatagccgttataacggtctgtcagccagcttgcctgaccaaataaatagtcataatcagttaaattaaaacggctacgcccgcccgccgcatatttttctgaagaacgctcatcattagaagaagtattactggcgttcccccacagcgaccaggcagtggtgtgtccataccaggtcatggtggtgtcagccgtaagtgaggagcttttcgtattgcctgattgtgcaagatatcctgcgttcagattaccttcgaaaggttttttagcgctggcaggatcatccatgacagtaaaaacggaatcatcggcagctgcattcagtgacgcaaacatgccccccgccaacataacgatggcaggaactgtcttcaaaagcttcatttatcaagagtccgtacaacaaaaaaagagaccatcgcggtcccggaaactttcttaaggatcaaagattagcgtccctggaaaggtaacgaattataaaaaggcgcgaataacttagcaatgtattcttatttcattttttgaataagcatgtggcgaaaacagatttttatttatatatatttatctgcaaaattttaaataaagctccaataaatcatattgttaatttcttcactttccgctgattcggtgccagactgaaatcagcctataggaggaaatgatggtacgtatctatacgttgacacttgcgccctctctcgatagcgcaacaattaccccgcaaatttatcccgaaggaaaactgcgctgtaccgcaccggtgttcgaacccgggggcggcggcatcaacgtcgcccgcgccattgcccatcttggaggcagtgccacagcgatcttcccggcgggtggcgcgaccggcgaacacctggtttcactgttggcggatgaaaatgtccccgtcgctactgtagaagccaaagactggacccggcagaatttacacgtacatgtggaagcaagcggtgagcagtatcgttttgttatgccaggcgcggcattaaatgaagatgagtttcgccagcttgaagagcaagttctggaaattgaatccggggccatcctggtcataagcggaagcctgccgccaggtgtgaagctggaaaaattaacccaactgatttccgctgcgcaaaaacaagggatccgctgcatcgtcgacagttctggcgaagcgttaagtgcagcactggcaattggtaacatcgagttggttaagcctaaccaaaaagaactcagtgcgctggtgaatcgcgaactcacccagccggacgatgtccgcaaagccgcgcaggaaatcgttaatagcggcaaggccaaacgggttgtcgtttccctgggtccacaaggagcgctgggtgttgatagtgaaaactgtattcaggtggtgccaccaccggtgaaaagccagagtaccgttggcgctggtgacagcatggtcggcgcgatgacactgaaactggcagaaaatgcctctcttgaagagatggttcgttttggcgtagctgcggggagtgcagccacactcaatcagggaacacgtctgtgctcccatgacgatacgcaaaaaatttacgcttacctttcccgctaacaaaaacattcccccagcattgggggaatcatcaccaacctgtcggcaacgcgtttctccgactatgctcaaaagtcatgtgataacaaaggggtgaactatggccagtggcgatcttgtccgttatgtcataaccgtcatgttgcatgaggatacattgactgaaattaacgagttgaataattacctgactcgcgacggttttttgctcactatgacggatgatgagggaaatatccatgagctgggaactaacacttttggacttatcagtacccaaagtgaagaagaaattagagaactggtttcggggcttacccaaagtgcaaccggcaaagatcctgaaatcaccatcacgacctgggaggaatggaatagcaacagaaaataaatggtttttgggcaataatcagtctgtggtgtgcgttagctcgtgtttttacaccgcattcttgcgctaaccttatgatctggcagacaacatgggagagacatcatgtggcaggcaatcagtcgtcttttgagcgagcagttaggtgaaggcgaaatcgaactgcgtaatgaactgcctggcggagaagtccatgccgcatggcatttgcgctatgcaggacatgattttttcgtcaaatgtgatgaaagggaactgcttcccggttttaccgccgaagccgaccaactggagttactgtcgcgtagtaaaaccgtcaccgtgcctaaggtttgggcagttggcgctgaccgtgactacagttttctggtgatggattatctcccacctcgtccgctggatgcgcatagcgcatttattcttggtcagcaaattgcgcgtttacatcaatggagcgaccaaccacaatttggccttgatttcgataacgcgctctccacaactccacagcccaacacctggcaacgtcgctggtcaacgttttttgctgaacaacggattggctggcagttggaactggctgcagaaaaagggatcgctttcggcaatatcgacgccatcgtcgagcatattcagcagcgtctggcctcacatcaaccgcagccttctctgttgcacggcgatttatggtccggcaactgtgcactgggtccggatggcccgtacattttcgacccggcctgctactggggtgaccgagagtgcgacctggcgatgttaccgctgcatactgaacagccgccacaaatctatgacggctatcagtcagtatccccgctacctgccgatttccttgaacgtcaaccggtttaccaactctacacgctgttaaatcgtgcaaggttatttggcggtcagcatttggttattgctcagcagtcattggatagattattagcagcatgatatgggttgaggataatggccgctccgtgcggccttttgattaaataaacccaagcagagaaaagaacacataacctgcagcaatacaaataaccggcaggatatacagtgagaaaaactgcaggaaaatagtatggtgcggaacaacaatacgggactcaatttgttcacgcgttagcccctcttcccctttggctttttccagaatgagttgatcttcaacaccttcccgcaagaagcgcgcctggcgactcatccgggcaccggaatcctgcaacgccagtccgacaaaaatcaggatgaaaatcacccagaacataacgttcacgccaccattaaaattgggcgtcggggagttataccagaatagattcaaaaaaggcgtattcgcctgcatcatatcgatcatgacatgagtaaagtcgagcatgaccgcattaatgccttccttgttttcctgccgggtattcataaatttcagcaaagaaatcaatgtagagatcaatgcaggtataaaaatcacccaacccaaaatccttttcaaaacagcaatgcgtccagcttgttgatacgtcatgagttctccttgattaagacgcgtcgtttcacttagtttacctgtagatatctgttttcgcccattctttaaaggcgatatgataggcgcttaatcataagcacggcttaataccttacacataatgctctaaaggagaggttgtaatgtcaaccccgcgtcagattcttgctgcaatttttgatatggatggattacttatcgactcagaacctttatgggatcgagccgaactggatgtgatggcaagcctgggggtggatatctcccgtcgtaacgagctgccggacaccttaggtttacgcatcgatatggtggtcgatctttggtacgcccggcaaccgtggaatgggccaagccgtcaggaagtagtagaacgggttattgcccgtgccatttcactggttgaagagacacgtccattattaccaggcgtgcgcgaagccgttgcgttatgcaaagaacaaggtttattggtgggactggcctccgcgtcaccactacatatgctggaaaaagtgttgaccatgtttgacttacgcgacagtttcgatgccctcgcctcggccgaaaaactgccttacagcaagccgcatccgcaagtatatctcgactgcgcagcaaaactgggcgttgaccctctgacctgcgtagcgctggaagattcggtaaatggcatgatcgcctctaaagcagcccgcatgcgttccatcgtcgttcctgcgccagaagcgcaaaatgatccacgttttgtattagcagacgtcaaactttcatcgctgacagaactcaccgcaaaagaccttctcggttaatgaccaggggcagtgatctcgctgcccctggttctttatctgaaattgcattcaactgacggattaatcgtcaatttaagagaaagagttacaccgtcaccacttccgtgcactgtataaaaatcctatactgtacgtatcgacagtttagtgagttttatcatgacggcggaaggtcaccttctcttttctattgcttgtgcggtatttgccaaaaatgccgagctgacgcccgtgctggcacagggtgactggtggcatattgtcccttccgcaatcctgacgtgtttgttaccggacatcgatcacccaaagtcgtttcttgggcagcgattaaaatggatatcaaaaccgatcgcccgcgcttttgggcatcgtggttttacccacagtctgctggcggtatttgcgctgctggcaaccttttaccttaaggttccggaaggctggttcattccggctgatgcgctacaaggaatggtgctgggttatttgagccacatacttgccgatatgctgacacccgccggtgttcccctgctctggccatgccgctggcgtttccgcttgcctatcctggttccccaaaagggcaaccaactggaacgttttatctgcatggcattatttgtctggtcggtatggatgccccattcattacccgagaacagcgctgttcgttggtcatcgcaaatgatcaataccttgcagatccagtttcatcggcttattaagcatcaggttgaatactaaaaaggcaaaaatcacctttctggaataagcaattccatttgaatataagagccagctcacagttctgttaatcttgcgccaacactatgactgctacgcagtgatagaaataataagatcaggagaacggggatgaactttccattaattgcgaacatcgtggtgttcgttgtactgctgtttgcgctggctcagacccgccataaacagtggagtctggcgaaaaaagtgctggtgggtctggtgatgggtgtggtttttggccttgccctgcataccatttatggttctgacagccaggtacttaaagattctgtacagtggtttaacatcgttggtaacggctatgttcaactgctgcaaatgatcgttatgccgttagtcttcgcctctattctgagcgcggttgcccgtctgcataacgcatctcagttaggcaaaatcagttttctgaccatcggtacgcttttgtttaccacgctgattgcggcgctggtcggtgtgctggtcaccaacctgtttggtttgacggctgaaggtctggttcagggtggtgcagaaactgcacgtctgaacgccattgaaagtaactatgttggtaaagtctctgatctgagcgttccgcagctggtcttgtcctttatcccgaaaaacccgtttgccgatcttaccggagccaatccgacgtcaattatcagcgtggtaatttttgccgcattcctcggcgtagctgcattgaaactgctgaaggatgatgcgccgaaaggtgaacgcgtcttagccgctatcgataccctacaaagctgggtgatgaaactggttcgcctggtcatgcagttgaccccttacggcgttctggctctaatgaccaaagtggttgcaggttctaacttgcaagacatcatcaaactgggaagtttcgttgtcgcgtcctacctcggtctgctgattatgtttgcagtgcatggcattctgctgggcattaatggcgtgagtccgctgaagtacttccgtaaggtatggcctgtgctgacgtttgcctttaccagccgttccagtgctgcgtctatcccactgaatgtggaagcacaaacgcgtcgtctgggcgttcctgaatccatcgccagtttcgccgcctctttcggtgcaaccattggtcagaacggctgcgccggtttgtatccggcaatgctggcggtgatggttgcgcctacggttggcattaacccgctggacccgatgtggattgcgacgctggtcggtattgttaccgttagttccgcaggcgttgccggtgtcggtggtggtgcaactttcgccgcactgattgtactgcctgcgatgggcctgccagtaaccctggtggcgctgttaatctccgttgaaccgcttatcgacatgggccgtacggcgttaaacgttagtggctcgatgacagctggcacgctgaccagccagtggctgaagcaaaccgataaagccattctggatagcgaagacgacgccgaactggcacaccattaattcttatgctggcaacggtccgttttgtataggggccgttgccttactttttaaatgttccatcgcggcgatgcatactgactcatatttaaacagatcgtcagcgaaaaaaatgtccaacttatcaatacattcctggctcaatgaatgtgcctgtagcgagaagcttaaaacctcatacccgagacgttttctaagtgaactatctggaatactcataatatcttcaagcacaccacttcccattcccggaagatttagtggattaaaaagaagattgatattaagcattgatattatcgaaggaaactttaggagactctcatttttttgaatcgcagcaaaaatgctcccgacaggatgtatataattttgttcatagtatatagtccttaaatagtgaataaccaacctgttttttatactgatcaaattggtcattttttctgggcgaaatacagaagtgacatccattccaataaaatctttatttatacctcttatccgaatttcactaccataaagattattaattattactctatatttaacattgtcctgcagatatgtatcaaaactaagtgctggcgctcctggctttgaggcatcatagttaatgttagacatataggcaatcatataattaaagtttgattctgctatttcatcgcagtcacattgacccgttgatataaagaaagtgagtgctgtcatagtagactgcagcctttctttaaaagagtcgaaagccaggcttttaatatttaaatcaccataattactctgtattaagtttgtagaaaacatctcccgcctcatattgttaacaaaattattatctcatttaaatctaagtcatttacaatataagtttaagagcgacgccacaggatgaactatcaaaaatagctcatcatgattagcaaaacttaaccattttaaaataaataaacaattaaagaaaaaagatcacttatttatagcaatagatcgtcaaaggcagctttttgttacaggtggtttgaatgaatgtagcaacgaaatacagaatttcaggtcatgtaactcccggcaaaaccgggaggtatgtaatccttactcagtcacttccccttcctggcggatctgatttgcccaacgttgggcagattcaggcacagtaaacgccggtgagcgcagaaatgactctcccatcagtacaaacgcaacatatttgccacgcagcatccagacatcacgaaacgaatccatctttatcgcatgttctggcggcgcgggttccgtgcgtgggacatagctaataatctggcggttttgctggcggagcggtttcttcattactggcttcactaaacgcatattaaaaatcagaaaaactgtagtttagccgatttagcccctgtacgtcccgctttgcgtgtatttcataacaccgtttccagaatagtctccgaagcgggatctggctggtggtctatagttagagagttttttgaccaaaacagcggccctttcagtaataaattaaggagacgagttcaatgtcgcaacataacgaaaagaacccacatcagcaccagtcaccactacacgattccagcgaagcgaaaccggggatggactcactggcacctgaggacggctctcatcgtccagcggctgaaccaacaccgccaggtgcacaacctaccgccccagggagcctgaaagcccctgatacgcgtaacgaaaaacttaattctctggaagacgtacgcaaaggcagtgaaaattatgcgctgaccactaatcagggcgtgcgcatcgccgacgatcaaaactcactgcgtgccggtagccgtggtccaacgctgctggaagattttattctgcgcgagaaaatcacccactttgaccatgagcgcattccggaacgtattgttcatgcacgcggatcagccgctcacggttatttccagccatataaaagcttaagcgatattaccaaagcggatttcctctcagatccgaacaaaatcaccccagtatttgtacgtttctctaccgttcagggtggtgctggctctgctgataccgtgcgtgatatccgtggctttgccaccaagttctataccgaagagggtatttttgacttcgttggcaataacacgccaatcttctttatccaggatgcgcataaattccccgattttgttcatgcggtaaaaccagaaccgcactgggcaattccacaagggcaaagtgcccacgatactttctgggattatgtttctctgcaacctgaaactctgcacaacgtgatgtgggcgatgtcggatcgcggcatcccccgcagttaccgcaccatggaaggcttcggtattcacaccttccgcctgattaatgccgaagggaaggcaacgtttgtacgtttccactggaaaccactggcaggtaaagcctcactcgtttgggatgaagcacaaaaactcaccggacgtgacccggacttccaccgccgcgagttgtgggaagccattgaagcaggcgattttccggaatacgaactgggcttccagttgattcctgaagaagatgaattcaagttcgacttcgatcttctcgatccaaccaaacttatcccggaagaactggtgcccgttcagcgtgtcggcaaaatggtgctcaatcgcaacccggataacttctttgctgaaaacgaacaggcggctttccatcctgggcatatcgtgccgggactggacttcaccaacgatccgctgttgcagggacgtttgttctcctataccgatacacaaatcagtcgtcttggtgggccgaatttccatgagattccgattaaccgtccgacctgcccttaccataatttccagcgtgacggcatgcatcgcatggggatcgacactaacccggcgaattacgaaccgaactcgattaacgataactggccgcgcgaaacaccgccggggccgaaacgcggcggttttgaatcataccaggagcgcgtggaaggcaataaagttcgcgagcgcagcccatcgtttggcgaatattattcccatccgcgtctgttctggctaagtcagacgccatttgagcagcgccatattgtcgatggtttcagttttgagttaagcaaagtcgttcgtccgtatattcgtgagcgcgttgttgaccagctggcgcatattgatctcactctggcccaggcggtggcgaaaaatctcggtatcgaactgactgacgaccagctgaatatcaccccacctccggacgtcaacggtctgaaaaaggatccatccttaagtttgtacgccattcctgacggtgatgtgaaaggtcgcgtggtagcgattttacttaatgatgaagtgagatcggcagaccttctggccattctcaaggcgctgaaggccaaaggcgttcatgccaaactgctctactcccgaatgggtgaagtgactgcggatgacggtacggtgttgcctatagccgctacctttgccggtgcaccttcgctgacggtcgatgcggtcattgtcccttgcggcaatatcgcggatatcgctgacaacggcgatgccaactactacctgatggaagcctacaaacaccttaaaccgattgcgctggcgggtgacgcgcgcaagtttaaagcaacaatcaagatcgctgaccagggtgaagaagggattgtggaagctgacagcgctgacggtagttttatggatgaactgctaacgctgatggcagcacaccgcgtgtggtcacgcattcctaagattgacaaaattcctgcctgatgggaggcggcgcaattgcgccgcctcaaatgatttacatagtgcgctttgtttatgccggatgcggcgtgaacgccttatccggcctacaaaactgtgcaaattcaatatattgcaggaaacacgtaggcctgataagcgaagcgcatcaggcagttttgcgtttgtcagcagtctcaagcggcgcagttacgccgcctttgtaggaattaatcgccggatgcaaggttcacgccgcatctggcaaacatcctcacttacacatcccgataactccccaaccgataaccacgctgagcgatagcacctttcaacgacgctgatgtcaacacatccagctccgttaagcgtgggaaacagtaagcactctgacggatagtattatcgataaacgccggatgacacatcacctccagcgaacgatcaccccgatggcctgcgtcatccagcacttgcaggaacagcgactcactgatctcttcaccgtagaatgcactgctgaatccctgggtagtgcgcaggttgaccggcaaatcaaacgccatctgacgatccgcccgcaacgcaatgccctgctctgccgcaaacctggcaacaatcgggaaaatctgcgggaacatatgcacatgatgatggctatcaagatgcgtaggtttgcgtccaaatagctcaatgaaacgcaaatactgactgacaagctcctgagtaatttcttccagcggtaaagcatcttcttctgccaactgccagatccattttcccagcacaccatcgcgggttaaccccggcatagctgtcagtggcttacccatagtaaggacaaagtgcatccctatggccagactcggttcatcacgactcaactgcaccgcatggtcaatagcctgcccattcaccagcgccgtcgtcgacgtgacaatcccattgcgacaggcctcgataatgccgtagttctgacctttgcttaagccaaaatcatcggcattaacaatcagtaagcgttccataatcagcctcggttaatgtgcttttttaagctctgcgatgcagtcggcaaagtttggcagccatttctcgtgcgccagaatcatctcgcgtgccagcagctcagcatcgcgatcggaatgcaccaacggactaaggtttagcgccagtaacacatcgttaaattctccgctaagtgcggcgttactggcagcaatctcgaagcctttaatggtgtgaatcagccccattactttatcatcgaaatgcgtaatgcgcggatgtggcgtcgcgccatcgcgccccagcttacaggtcatttctactgcccagtctgccggaatattatcaatctgcccatgatgcgggatattaacgtaatgttctgcttgcttgtcgttgtagatagcgttgatcacttcgcatgctgcatcagagtaataagccccaccgcgctgttccagttctttcggcttaactttcagctcaggatttttatacagctcaaaaagttgtttctcgactttctgtactacctgcgctcgtgcgccgcctttgtagtattcgcccatttcaatagccagcatctctttctgcttgaagtaatacagcagataagaacatggcagcagattcaacgaacgaattaagccctcactaaatggcagatcgaaaatattttttacagaggacgcttttaactgccctgacgccacaccatcaagcaattcggcaaagcgcgacttgccatttatcagcacatccttaatgaacaccatatggttgaggccgaacaaatcgatagataaatcatcgctgtctttcagcatcagaacatcgcgaataaacatcttcatgccgatcggaatattacacacgccgataaagcgtttaaatccggtatgacgataaacggcttcagtgaccattcccgccgggttagtgaagttaatcacccatgcattcggacaaagttcttcgacatcttttacgatgtcaaaaatcaccggaatggtacgcagacctttaaacaaaccgcccgcgccgttggtttcctgaccaagataaccatgacttaatggaatacgttcatccagttcacgcgccggtaattggccaacgcgcagttgggtagtaacgaaatcagcatctttcaatgcttcgcggcgatccagcgttttataaagcttcatcgggacgccagcgttatcaatcatccgttggcagagatcgaaaataatatccagtttcggtttaccaccttcgacatccaccagccataattcgctgaccggcaattcgtgataacgcttaataaatccttccagtaactccggggtatagctgctcccgccaccaatagtgacgacttttaatttctggctcataatttctcccttcagtacagaatactgatatctggcatatctgcccccccggacataaataatccagcaacaggacagatatgtgaattgtcaggtataacgacttactgattaaattcagtcaatttcttacgatagctcttaggcgtaaaggacgttaatttcttaaacgttttaataaacaaactcgggctactataaccggcctcaaacgcaatatccgtcactgaatagttggtcatttccagttgttttttggcaaaattaatacggatttcattaataatctgcattggcgttttgccataatatcgttgagtcgctcgcgtcaaatattcctgtgatttggctgacaacgccaccatattctccagcgccgattcactaaactgctctttatcatgcatcttttctaccgtacttttcagccactgcggtacatcatcaatcacctgttcttcgcggtaatgacgtaaacggttaatgacataaaaagtaaccatctcaacaaactcttccagccctgtttcgcggaaattcaatgaagaaatcactgtttccacataggtgagaaaagcgttattggtccggtatacctgcgaagcgacaaagcaataaggcaacaatggcaggtaatgctgctcaaaaaagcgtttactgatcccaacgttcaatatgcgcgtggcaccaaactcataaaaactttgatggtgcgaacctaacggaataaaaacaaaatcgccccgttccagtaacacgcgcttaccgttaatctcctggaaataacgcccggttaataccagagtaaattcataatagtcgtgctgatgcagtccgctgatactctcagttttgttatagataaacacatggaagtttttgccattaaacaactgctgttctcgggcagtggcaatttccggcgcgttaatcactggctgcatcatcgactccttatgccttcagtttttcatgaagctcaattaattcagtaatcagttcacgcgcaagcatggacgtcattaaatgatcctgagcgtggaccagcaccagactcactttcatcttaccttcgcccgcatcgccttcaatcagtttcgtctgtaccagatgcgcttcattcaatgccatccgtgactgatccatcatggcttttgctgcggcaaaatcgccctgcttcgcctgtttcagtgccgcatacgccaggctgcgcgcttgtccggagttgatgatcagccccatcaccacttcttccagctcttcagcttccgtttgcgtatcgggaatgttatcgagatccatcatacatcgttcctctcttttcttaccggcacgattacccgtaccggcatcgattaaaatttcagggcgttagcgatatcttcttcgctctcttctttatcaatcgcattttgtgctttgttagccaccacaacaaagggcagataaattaacgttgcgatgccaaggttgaagagtgcgaccagcaatgcggcgacgctaccgttggtgttaaagaaggctcccagaccggttggcatggtccacggtgcaatattggtcaccggaggaataatgcccatgtagtacgctgcgagggtgattgccgccagaatcggttgtaccagtacaaacgggataaacatcaccgggttcatgataattggcagaccaaacagaatcggttcgttaatctggaagatgccggacggcagcgccagttttgccacctgacgataatcagcacggcgagaggcgataaagatagccaggatcaggcctaaagtcgcaccactgcccccaaggaaaataaaggagtccagcatcggcttggcccagatatggaaggtcttaccggctgccagcgccgcttcgacggaaccatattgctgataggtcgcgatattttccagtgcccacggcgtcataatgccgttgtccagtgcggtcagcgccagcgcgccatgaataccgaagaaccagagcagtggaacaaagatcacataggcccagcccaccacgctacccaacgatgccagtggggttgagatggtatccataatgatctgatggaagttggtgccccaggtattcaacgcccaggcaataatccccatcacggaaagaataataaagccgggaattaatgccgagaaggaacgcgatactgaagcaggtacgctgtcgggcagtttaatgacccaattgcggcggacaataaaggtaaacatttctgccaccaccaggccaataataatcccggagatgatattcgccccacctaaccagtttgcaccaaccgcataggcctcaccgacactatatggggtgacggtcataaatgctgcaacggataacaacccagccgccagcgcatcgactttacgctcttctgccagcgccatgccaataaagaacggtgccattaaagacattattcctaatgttccgttatatacgttgccgccaatacctttcagaccattaagtgtttcaatggttgaggcgtcgaggcgaatacctaaggaataaaaaaacgacccctccccaaagcttagaaaaacgttgttaattaatacaaacatggcccccgcaagggttaacggcattaagcgaataaagccatttttgattgcattaacgtgtggctgctttcctattttaactgcaaaagggaggagtaccttttcaagcgatgcaataacattactcatagaaaaatacccttaaaaaccgcaatttaaatattgcggtattgatttatgaaataactctttgacgggaaaatttaaaataaattaatttgctgcggcttttttaatcgctgcaaccgcagccttaagcacgcctaaaccatcgactttgccataaagcagcgagtcaattacttcaaccggtttgttgggtaacaaacgctggatttcgggcaacatataagcaatctgcggccctaataacacgacatcggcattctgacctttttcaccagccagtgtttccggaaatgcttcaataatgaccggaacttcatatttttctgcctgtgcgcgcatttttgataccagtaaagaggtagacatgcccgcagaacaaaacagataaatgtgtttcttttccataaaactgccctcatcgacgattatctgtcagccagacactccgcaagccttaacctgcttccatgctctgggtaacttgcgaaaccaacatgactttttttgtggctgaaaggagtatacggtatagacctgagcaatagtatttctttgaccttataaattgtttctccttgacctgtggttatgaccctcttcacatttcgggcaaataattcgcgaagataattaagaactcaggccaaaaaaaaccggcgcaatggccggtttccgttgttactcaagctttcagacgaattgattacttcgcagcctgtggatcagtgtcgtattcagcacaggtctgataaccggagttgatgacatgtccggtatcatctaacgcgacaaagtaggtttctgctttaccatcacgttgacccaggatgtaggtctggcaagtaccgcgagcatggatcatgctcacttcagacgaaggtttacccgcaatttgtgcaacctgcgcccggctcatgccttttttgacgtctttcaccacaggctgtacaaactggtctttggtacgatcataagccgtacaacccgccagcatggttaataccgccgctgcactcagaattcctgccatattcttgttcatattccgtcctcttgtttatcagcgtgttagataagcctggaatacattgggcgctttttcaagcccgtgaacgaaacggctccgctttcagaggattcctgtatgacgttttaaccaccattcagcccgctgtcgcttgtcgtttcagtagcaacgggttagctttaaggaagttttgtcttttctgtctggaggggttcaatgacattgcaacaacaaataataaaggcgctgggcgcaaaaccgcagattaatgctgaagaggaaattcgtcgtagtgtcgattttctgaaaagctacctgcaaacttatccgttcattaaatcactggtgctcgggatcagcggcggtcaggactccacgcttgccggaaagctgtgccagatggcgattaatgagctgcgcctggaaaccggcaacgaatcactgcaatttattgccgtacgcctgccctatggtgttcaggccgacgaacaagattgccaggatgccattgcctttattcaaccggatcgcgtattaaccgttaatatcaagggcgcggtattggccagcgaacaggcattgcgggaagcaggcattgaactgagcgattttgtccgtggcaatgaaaaagcgcgtgagcggatgaaagcacaatatagcattgcgggtatgaccagcggtgtcgtggtgggcaccgatcatgcagcagaagccattaccggattcttcactaaatatggtgacggcggtacggacattaatccgctgtatcgtctcaacaaacgtcagggtaaacagttactggcggcattagcttgcccggaacacctttataagaaagcgccaacggccgatctggaagatgatcgcccttctctgccagatgaagtggcactcggcgtgacctatgacaatatcgacgactatctggaagggaaaaacgtacctcaacaggtcgccagaacaatagagaactggtatctgaaaaccgaacataaacgccgtccgccaattaccgttttcgatgatttctggaaaaagtaataatttgcacatattggattgtgcgaaaaagagtaatttgttcacgccggatgcggcgtgaacgccttattcgacctataaaactatgcaaattcaatacattgcaggagtcgaataggcctgacaggcgtagcacgtcagacggtgtaacctttgtcatcgacccgcctcttttttaatcgcttcccgcctgttacactggatagataaccagcattcggagtcaacagtggtacggcgtttaacttctccgcggctcgaatttgaagctgcggcaatttatgaatatcccgaacatttacgttcattccttaatgacttacccacccgaccaggggtgtatctgtttcatggtgaaagtgacaccatgccgctctatatcggcaaaagcgttaacatccgcagccgcgtcctttctcatttacgtaccccggatgaagccgccatgctacggcaatcccgacggatcagctggatatgtaccgccggtgaaatcggcgctctgctccttgaagcgcgattaatcaaagaacaacagccgctgtttaataaacggttgcgccgcaatcgccagctctgtgccctgcaattaaatgaaaagcgcgtcgatgtggtgtatgccaaagaggtggatttttcacgagcccccaacctgtttggcctgtttgccaataggcgcgcagctttgcaagcattgcagaccatcgctgatgaacaaaaactttgttatggcctgctgggactggaaccgttaagtcgcggtcgtgcatgttttcgttcagcgctaaaacgttgcgccggagcatgctgcggtaaagagagccatgaggaacatgcgctacgcttgcgccagtctctggagcgtttgcgggtggtgtgttggccttggcaaggggcggtggcgctgaaagaacagcacccggaaatgactcaatatcatattattcaaaactggctgtggctgggggcggttaattcgctggaagaagcgacaacgttaattcggacacccgccgggtttgatcacgacggttataaaattctttgtaagccgctgctttccggtaactatgaaattactgaacttgatccggcgaatgaccagcgagccagttgatttcactgaacaacagtttaccttgcggttgtaaaagccgcagggtgtgcctgccatcgaaccagcacgcgccctggtcggtagtgagcaatttatcgcccagttgccacgccccgttaatcacaaacaccaccccgccgcgtgagccaaaggtagtaaacgtacgttcggcaattctgactttcgccttacagacatccaggcgtgtcatgatgttgaaatccatcgacatctgccctgccgtcagtttcgcttttaccacctggtccgctgcaaaggcaaaaggctggaacggttttaaggtatggttaaagcggtctgcgctttcaaggagcatctcgccgccttccagcaacgtcactatcctttccatgccgggaaacaaagaaaactccccattcgccgcgatggatgcaatgctggcacgccagtaaaaatcacgttttgccggtgggaacgtgcaaatttcgcgcgtttcaccggcagcatttcgccacagattcaccgacattttacgcatatcaaagtattccatactcgctcccggcccgttcttttcattgttatcgttcaggtaaccgtggatggttatcggcaactcgggtgatttacgttagtggtgatcaggctttttttacaactgtttgagaagagaaaagaaaaccgccgatcctgtccaccgcattactgcaaggtagtggacaagaccggcggtcttaagttttttggctgaaagattattcagcagttgcaggcattttaccttttgccgctggacgttctgtcagacgcttctcaaaattagcattaaattgctttttctgttccggcgtcaggatgttgtaaattttgttctgggtttccatgtgcgccagcatgttagctttgcgctgttcttccatttttgcgatctgcgcttcagcttttactttatcgaaggtatcgctggcaatgatgtcatgcattgcgcggcgttcttccagcggcggacgtttcatctggtcacgctggcctttcatgatttcgcggatctgctgtttctgcgcgtcggtcaggttcaggtctttgaacatcatgtcctgatgcggaccgaacttgcctttgtggtgcatcatcggcttcgcgtcagccggtgctgcggtagtggtgtctgcggcatgggccaggttagccgcgccaagagccagggtagaggcaacaaacagtgcagttaatttacgcatattctatatccttcctttcagttatttattacggctttcttaagtagcgtgccgtgttgacgagattaactttactgactttagcgtcaattaatcagagcaacggtaaaacaatgaaagtgtaaaaaacacttttgcgccaattatggagaaaaaaagaaaatttgatggagagtgatgagagaatattacaacacgatgattttgcagagattatgaagaactataccggatgactggtgataaataaagcaaataaccaggattaatctgtattaatttataagaaagcaacttaatacccgcagaatgatttctgcgggtaagtattagcttattttttcgagcattaatcccgcgcgtaatcccaacgctaccaacggattagggaataacacatactctacatcatgggttacggtaaaacgttcctctccgtcctgcgccagcaatgttcctttctcaaacggcataaaattcagcgtgtcacttgccatatgcatttcgaaggacggcgagtggcgagtaatttgcgaaaccacccgataacggagcggcggtgttctcacgataccgacactctcaccagatagcagcgcagcaattgcgctggcagttactgcaaactggcgaagatcgttttgcccaaagggcaacgctttgccaagttccagcgtacaggccagcgcgccaaaatgtctggcgctgaaatgggtaaacgtaccaccaggttcctgatggaacaccagcgcctccagccccgccgcacccagccacgtcagaaatttctcgtcccagggaatgtcgcgttgcggtaatacaccgaactgcggatgcaaggagccacgaattgcggtatgtagatcaaggtgccagcgcacagattctttgccctggtcataaaaatcttccaggcactgttccagttcgcgcgcccgacaggtttctccgctttcagcaaatagctgccaacgaccgccaaacattcgattcatatcgctatggcaataacgtttcccttgcttcagcgcaggaggattcccgaggatcaccagcaaccgccaacgtaacgggatctcgccgtgagatatcgcgccaagcaacgcgtccagcatctccacaggtgccgtctcattaccgtgtattcccgctgaaatcaccagtgcgccttgcggtggcgttaatggcgtcagttccagcacaccatcgcccagccagcgccagcgaacgccgttgatttctcgctcggtgataaccggttttttacccgttaaggtcagagcaagaaaattatccattgccccctccctcgcgctggaacggataaaccgaaccgagattcagtaattggctcaatacatccagtgcttcccgcccttcgcgcagcaattgcgggtcggccagatcggcagcagtaaggcgatcgcggtagtaacgatccacccagtcattgagcgcattaaacagcgtatcgttcatcatcaccgccggattcaccgcccggcgttcttcttctgtcaataccacccgcaaccgcaggcacgccgggccgccgccattcgccatgctttcacgtaaatcaaagacttttagttcgctaatcgggttgtcagcggcaaggagttcattgagataaccccatactccggcgtgttcccgacactcctgaggcagcaccaacatcatggaaccatcatcgcggctcagcagttggctgttaaacagataggtagacaccgtatcagacacggaaacctgagttgccggaacttctatcgccataaaaccattgacccgcgcacgcaggtttgccagtaactgtgactggcgagcgaacgcctgttggtggcaaaacagcacctggcggttactcacggcaatcacgtcattatgaaaaacgccctggtcgataacgtccgggttttgctgggcgaaaatcacctgttggggattcacctgattcagccttgccaccgcctcgctggcttcgcgagtctgtcgcgccggataacgggaaggccgggtatcattgccttcttctcgcccgtagacaaaaagttgcatacccggttcaccgtaatgaccgccgagacgattgtggtttgccgccccctcatcaccgagcaacgctacctgtggcaacgccgaatggacgctaaatttctcttcgtcgttaaaaatcgcttttaacagcgattcagtgacgggcgcttccagcgaacggtgaaatttattgttcaggttggcaacggtgagatgcactttgccatccagcgtatcggcagatggcgcgatcgttgccgcattggctacccacattggcgaagcggaactgacgctggaaagccagtgcggtgcctggcgtgcaactttttccagtacctgctcatcgctaccactgaatcccaactgacgcagcaccggaataaacggacgctcgtgcggcgggatcacggcctgggggaatcccgcatcggcaagggctttcattttcagtaagccctgcttcgccgccagtcgcgggttagacacctgaaaacggtgacgggtagaggcttcattaccaaacgacaggcccgcgtaatgatgcgtcagccctaccagcccgtcgaaattgacttcccaggcgttcatcgcaccacctcatcggaaaaatccagcccggggttaagcgtggcgggcaatgttaacgagtccgactccaggctcgccatcggccatgcgcagtaatctgcggcataccaggcgctggggcgatggttaccggaagcaccaatgccgccgaatggcgcggtactggcagcaccggtaagcggtttgttccagttaacaatccccgcccgcgcctccagcaacagttgatcgaacttttcccgctcgggggaaaccagaccgcaagagagtccgaagcgagtgttattcgccattcgaatcgcttcatcgaaagtatcataacgccagacgcgcaataacggtccgaacacctcttcatctggtacgccagcaacgcctgtcatttcaatgatccccggcgtcagcaacgatgtccctgcttgtaataagcgcggcgcaagcaggggtcgtccgcccatcgcttccagttgctgccatgcagtaaccacctgctgtgcggcctgttcagaaatcagcccgccaataaacggctgcggttcgtcatcccagttgcccggcgttaatcgctggctgacggcaaccagacgagcaagaaacgcatcgccctgcgccccgcttttcagcaataaacggcgggcgcaggtgcagcgttgaccggctgtgacaaacgccgactgaatggtcagatggacagccgcgtcgatatccgccacctcatcgataattagcggattattaccgcccatctcaagggcgagaattttctccggctgaccggagagctggcgatgcaactggtagcctgtattggcgctaccggtaaacagcaaaccgtcgagatcctccagcgcactcagcgcctgacccgtttcacgcccgccctgcaccaggttcagcacgcctggcggcaagccagcctgctgccataaacgcattaccgcttcgccactccacggtgtcagttcgctgggtttaaagataatggtgttacctgccagcaatgccggaacgatatgtccgttcggcaaatgaccagggaaattatacggcccaaacaccgccagcacgccgtgcgggcgatgtcgcaggctcgccgcgccgtccggcatttcactacgctgctcgccggtacgaacgtgatacgccttaattgatatcgcgattttattgatcatcgccgtcacttcggttgccgcttcccagcgcggcttacccgtttctctggcaataatcgcggttaattcggctttattgctttccagcagtgcggcaaagcgttcgacaacggcatgacgttcagcaaatgaaagccgcgcccagcgcggaaacgccgcacgggctgcccgacaagcctgctcgacctgagcggcatcggcatcattgccttgccataacacctcgcccgataccggattacgcttcacacgcgatgcgccctggcccgttatccagtcaccgttaatccataaagtcatgctgttttctcctctgcgcacaggcgcaccagacgaacgcgatccccggcgtggcatttgagggcatccagttgtgcggcggttaaaatcaaacgctcggttgccggatcggtacgcaccagcaccacgcggaaatggtgataattttcattggcgaccaggcaggctgggaaatcgccctgcgcaggctgcccttctgccacttccaccagccgacttttacggatggcgcgcacgcggtcgatgtcacactcaagcgtcggcccaccgtcaaagatgtcgatatagttacggtagcgaaaaccttctttctccagcaccgcgcgggcaggcgcggtttgcggatgtacctgaccgatgacgtcctgggcttcctgggataaaaagtgggtatagatcggatgtttcggcatcagttctgcaataaatgccttttgcccggtgccgcagagaaaatcggcgcggctaaaatccatcgaaaagaagcgtttaccgaggctttgccagaacggtgaatagccgtgttcgtcaatcaccccgcgcatttcagcaaccactttgtcattaaacttgtcgcgaaaagccgccataaacataaagcgcgatttcgacagcaaatagccgttgccctctttgcgccagtccgggtcgagaaacagcgtgcacagctcgctgctgccggtgtgatcgttactgagaaacagcgtcggcaatgcgttatagacattcagctcttttgaggcgtgaaccaacgtgccgacgcgatagttgtaccagggatcgttcagcccaaccgccacctcaatggcacaaatccccgccacggtgcctgtctcgctatcttccagcacgaacacatagccctgctcacttttgggcagttcgccttgccaggttttgattgccctttcgatacgcgccgaaagcgtggcttcattggcgggaagcgacgtcaggccgccgcccgttttgctggcaagctgcatcagcgccgagacatctgatcgctcaacgggacggatgaccatcatgatgaacctcggctaacaaagtgttcgcaagcagctgcaaagcgatccagtccggtcgtcacctcttcttcgctgacattgagcgcaggcgcaaaacgcaccacgttgccacccgcaatcagtaccatcacgcctgctttcgccgcttcctgagagatctgtttcgcttgcccggcgtaatcggcattcagtacacagccaatcagcaaacctaagccgcgaacttcactgaacaaaccatagcggtgattaatagtattaagacgctcaacaaaccagtcgtgacgctgtttaacgccattaagcatctctggtgtgttgatgagctccagcactttgcctgccaccgccgaggccagcggattaccgccataggtggtgccatgagtgccaacggtcatcacgcgggcgcactcttcggttgccaacaacgcaccgaccgggaaaccgccgcccagcgctttggcggtagttaacagatcaggcgtcacgccgtagtgcatataggcatacagttccccggtgcgcccgacgccggtttgtacttcatcaaaaatcaacagcgcattgtggcggttacacaattcacgcagaccttgtaaaaacgcgttgctggctggcaccacaccgccttccccctggatgggttcgacaatcaccgcacaggtagagtcgtcaatcagcgcgctggcagagttaatatcgttatatgcagcatgacgaatatccgccggcagtggcgcaaaatcctgtgaataggctggctgcccacccgcactgacagtaaacagcgtgcgaccatgaaacgcatttttgaacgccacgatgccgctcttatggctgccgtagcggtcgtgagcgaatttacgcgccagttttagcgccgcttcgttggcttccgcaccggagttacaaaagaagacgcgatcggcaaacgtggcgtcgatcaattttttcgccagtcgcagtaccggctcgttggtgtaaccgttgccggtatgccagaacttactcgcctgttcgttcagcgcttcacgcagttccggatgcgcatggcccagcgcgttcaccgcaatgccacccgcgaagtcgatatactctttcccctgctgatcccacaagcgcgaaccttcgccacgtaccggtataaagggtgccggagcgtaaacaggtatcatccattcatcaaagttttcacgcgtaattggctgagacatagcgacctctacagtaaataattcgttatttatatgttaataataagtaatgtttgcgctgtaaatgtagattgcagggttcgtgccagccagtgataaaagtgcataaacggcggaggctaactggaaatcaaggagttataaccaaaccatatgcatttaaagtgcatataaagtgaatacgtttgcgatgtgggtgaataaaaagaataaaaaacgcaatgttatgcagaagtaaaatataattctggaattgtgatcattgacgaaatttactggaaattactgcgccattctgacgcagcgcgcaccaaaagcgggcattttttgcgccatcgttgacatcattaacaaccatcgatcaaatcacttaacaacaggcggtaagcaacgcgaaattctgctaccatccacgcactctttatctgaataaatggcagcgactatgaaatttgtctcttttaatatcaacggcctgcgcgccagacctcaccagcttgaagccatcgtcgaaaagcaccaaccggatgtgattggcctgcaggagacaaaagttcatgacgatatgtttccgctcgaagaggtggcgaagctcggctacaacgtgttttatcacgggcagaaaggccattatggcgtggcgctgctgaccaaagagacgccgattgccgtgcgtcgcggctttcccggtgacgacgaagaggcgcagcggcggattattatggcggaaatcccctcactgctgggtaatgtcaccgtgatcaacggttacttcccgcagggtgaaagccgcgaccatccgataaaattcccggcaaaagcgcagttttatcagaatctgcaaaactacctggaaaccgaactcaaacgtgataatccggtactgattatgggcgatatgaatatcagccctacagatctggatatcggcattggcgaagaaaaccgtaagcgctggctgcgtaccggtaaatgctctttcctgccggaagagcgcgaatggatggacaggctgatgagctgggggttggtcgataccttccgccatgcgaatccgcaaacagcagatcgtttctcatggtttgattaccgctcaaaaggttttgacgataaccgtggtctgcgcatcgacctgctgctcgccagccaaccgctggcagaatgttgcgtagaaaccggcatcgactatgaaatccgcagcatggaaaaaccgtccgatcacgcccccgtctgggcgaccttccgccgctaatttagcagctctcctggctcaaactgggtcaggagaattaaccttgagaaaaatcaacaaactgtcagtaatgatttgttgcctgccgtcctttgttataccgtctctgcgtttttagttgtctgaccacttctctattatcaagtttgatataggaaactccacgatgaacgctgagcgtaaatttctttttgcctgtcttatttttgcgctggtcatttacgctatccacgctttcggtttattcgatctgctcaccgatttaccccacttacagacactcatccgccagagcggatttttcggctatagcctctatattctgttattcatcattgccaccctcttgctgttaccaggaagcatactggtgatcgcgggaggaatagtttttggcccgctcttagggacactactctcattaattgccgccacgctggcctcctcgtgctcattcctgctggcgcgctggctgggacgtgatttactgctgaaatacgttggccatagcaataccttccaggccattgaaaaaggcattgcgcgtaacggtattgattttcttattctgacccgcttaatcccgttgtttccttacaatattcaaaattacgcttacggattaaccacaatcgccttctggccttatacccttatttcggcactcacgaccctacccggtattgttatttataccgtgatggcaagcgatctcgccaatgaaggcattacgctgcgctttattttacaactctgtctggcgggcctggcgctgtttattctcgtccagctcgcaaaactctacgcccgacacaaacatgtggatctgtctgcttcgcgccgcagcccacttactcacccaaaaaatgaaggatagaacgatgttgcaacattattcagtgtcatggaaaaaaggactggctgcactctgtttactggctgttgctgggcttagcggctgcgatcaacaagagaatgcggcggcaaaagtggaatacgacggactttcgaacagccaaccgctgcgtgtcgatgccaataaccatacggtaaccatgctggtgcaaattaatggtcgtttcctcaccgacgacactcgtcacggtattgtgtttaaagatggctccaacggacataaatcgctgtttatgggttatgcgaccccgaaagcattttatgaagccctgaaagaggcaggtggtacgccgggcgaaaacatgacgatggataataaagaaacgactcatgtcacaggcagcaaactggatatttcggtcaactggcaaggggcggcaaaagcgtattccttcgatgaagtgattgttgacagtaatggcaagaaactggacatgcgctttggcggtaatttaacggcagcagaagagaagaaaacgggttgcctggtgtgtctggatagctgcccggtcggcatcgtcagcaatgcaacatacacttatggtgcggttgaaaaacgtggtgaagttaaattcaaaggcaatgcctcagttctcccggcggataacacgctggcaacggttacctttaaaatcgccgaataaagccaggataaaggatgatgatgatgcaatcgcgaaaaatctggtactaccgtataaccctcatcatcctgttgttcgctatgctgctggcatgggcgctgcttcccggcgtccatgagtttatcaatcgcagcgttgcggcgtttgccgccgtggaccaacagggtatagaacgctttattcagtcttacggcgcactggcggcagttgtctcgttcttgttgatgattttgcaggccattgctgcaccgctacctgcgtttttgatcacctttgccaatgcgtcgctgtttggcgcgttctggggcggcttgctgtcgtggaccagttcgatggccggcgcggcgctgtgcttttttatcgccagagtgatgggccgcgaagtggtggaaaaattaaccggcaaaaccgtgcttgacagtatggacggctttttcactcgctacggcaaacacaccattctggtctgtcggttattgccttttgtccctttcgatccaatcagctatgctgccggtttgacttcaatacgttttcgctcgttttttatcgccaccgggcttggtcagttaccggcaactattgtttattcctgggcgggcagcatgttaacaggcggtactttctggtttgtcaccggactgtttattctgtttgccctgaccgtggtgatttttatggcgaagaaaatatggcttgaacgccagaagaggaatgcctgatgggtttaccgccgcttagcaaaattcctttaattttacgtccacaggcgtggctgcatcgtcgccattacggcgaggtgctaagccccattcgctggtgggggcggatcccgtttatcttttatctggtgtcgatgtttgttggctggctggagcgcaaacgctcaccgctcgatccggtagtacgatcgcttgtcagcgcgcgcattgcgcaaatgtgcctgtgtgagttttgtgtggatatcaccagtatgaaagtcgccgagcgcaccggcagcagcgataaactgctggcagtggctgactggcggcaaagcccgctctttagcgatgaagaacggctggcgctggagtacgccgaagccgcaagcgtaacgccgccaacggtcgatgatgccctgcgtacccgactggctgcgcattttgacgctcaggcgctcaccgaactgacggcattgatcggcctgcaaaatctgtcagcccgttttaattctgccatggacattcccgctcaggggctgtgccgtattcctgaaaaacgttcttaaggagagatgatgcgccattgtgggtggttgctgggattgttatcgctgttttctctggcaacacatgccagtgactggcaagaaattaaaaatgaggccaaagggcaaaccgtctggtttaacgcctggggcggcgataccgcaattaaccgctatctcgactgggtgagcggcgagatgaaaacccattacgctataaacctgaagattgtccgtctggcggatgccgcagacgcggtgaagcgcattcagaccgaagccgcagccggacgtaaaacgggcggctcggtggatctgctctgggtgaacggcgaaaacttccgcaccttaaaagaggccaatttattacaaacgggctgggcggagactctgcccaactggcgctatgtcgacacacagctgccggtgcgggaagatttttctgtgccgacacaaggtgcggaatcgccctggggcggcgcacaactgacgtttatcgcccgccgcgatgttacgccacagccaccacaaacgccgcaagccttactggagtttgctaaagccaatcccggcacggttacctatccgcgcccaccggactttaccggcacggcgtttcttgaacagttgctgattatgctgacgcccgatcccgccgcattaaaagaagcgccggacgatgcgactttcgcccgtgtcactgctcccttgtggcaatatcttgatgtgctgcatccgtatttgtggcgcgaaggaaaggatttcccgccttcacccgcgcggatggatgctctgctgaaagccggcacattgcgcctgtcgctgacctttaaccccgcgcatgcgcagcaaaaaatcgccagcggcgatttgcctgcaagcagttacagttttggctttcgcgaggggatgattggcaacgtgcatttcgtcaccattcctgccaacgcgaatgccagtgctgcggcgaaggtagttgccaatttcctgctctcacccgatgcgcaactgcgtaaagcagatcccgctgtctggggcgatccttctgttctcgatccgcaaaaactgcctgacgggcagcgcgaatcattgcaatcaagaatgccgcaggatctgccgccggtactggctgaaccgcacgcaggttgggtaaatgcgctggaacaagaatggctacaccgttacggtacgcattaatctttttgctgtgggcgatggtggcggtgatttatgcaccgctgatcccggcagctctcacgctgatatcgcctgctttgtcgttgacacactggcaggcgttatttgccgatccacagttaccgcaggcattactggcaacgctggtgtcgacaaccatcgcggcggtcggggcattgttgattgccctgctggtgattgtggcgctgtggcctgggccgaaatggcagcgtatgtgcgcccgtctgccgtggctgctcgccattccccatgtggcttttgccaccagcgcccttctgctctttgctgacggagggctgctttatgactatttcccgtatttcactccgccaatggaccgatttggcatcggtctgggcctcacccttgcagtgaaagaaagcgcatttctgctgtggatcttagcagcagtattgagcgaaaaatggctgttgcagcaggtcattgtgctggattcgctgggctacagccgctggcaatgcctgaactggctgctgttgccctccgtcgcgcctgcgctggcaatggcgatgctggcgattgttgcctggtcgctgtcggtcgtggatgtggcaattattctcgggccaggtaatcccccgacgctggcggtaattagctggcagtggttaacccagggcgacattgaccaacaaacaaaaggcgcgcttgccagcctgctgttgatgctgttactcgccgcctacgttttgctgagctatctgctatggcgcagctggcggcgcactattccccgcgtagatggcgttcgcaagcctgccacgcctttattgccgggcaatacgctggcgatttttttacccttaaccggtgtgctgtgtgtggttctgctggcgatcctcgcggatcagtcgacgatcaatagtgaagcgctcatcaacagcctgacaatggggctggtggcgacattcatcgctttgctcctgttactgctgtggctggaatgggggccacagcgtcgccagttgtggctatggttgcccattttattacctgctctgccactggtggcgggccagtacacgctggcgctatggctgaaactggatggaagctggacggcggtggtctgggggcatctgctgtgggtgatgccgtggatgctgtttatcctgcaacccgcctggcagcgcattgattcacggttaattttgattgcgcaaacactgggctggtcgcgggccaaaatcttcttttacgtgaaatgcccactcatgttgcgccctgtgctgattgccttcgcggtgggatttgcagtcggtattgcgcagtatatgccaacgctgtggctgggcgcggggcgttttccgacgctcaccactgaggcggtggcattaagcagcggcggcagcaacggtattctcgccgcccaggctttatggcaactgctattaccgcttattatttttgccctgaccgcgttagtcgcaaaatgggtaggttatgtcagacaaggactccgctaatgctctgcgtgaaaaatgtttcgctacgtttaccagaaagccgcttgctgacaaacgttaactttacggtggataaaggtgacattgtcacgttaatggggccgtctggctgtggaaaatccactctgttttcatggatgattggtgcactggccgaacagttttcttgtacaggtgagctatggctcaatgagcaacggattgacatcctacccaccgcacagcgtcagattggcattctttttcaggatgcactgttatttgaccagttcagtgtcgggcaaaatttactgctggcgctaccggcgacacttaaagggaatgcccgacgtaatgccgtgaatgatgcacttgagcgttcaggccttgagggagctttccatcaggatcctgccactttgtctggcggtcagcgagcgcgcgttgctctactacgcgcccttctcgcccaaccaaaagcgttactcctggatgagccattcagccgtcttgatgtggctctgcgcgataattttcgccagtgggtgttcagcgaagttcgcgccctggcgatccccgtcgttcaggtaacgcacgatctccaggatgttcctgctgatagttctgttctggatatggcgcagtggtcagaaaattacaacaaactgcgataacgcaaagtttttctcaatgcgtcagttcagaatggcgcactcaaaactacaatgtcgggattttcgatgaaacgtgtttctcaaatgaccgcgctggcaatggctttagggctggcttgcgcttcttcgtgggccgctgaactggcgaagcctcttacacttgaccagcttcaacaacaaaatggcaaagcgatagatactcgccccagcgcgttttataacggctggccacaaaccttaaatggcccttctggtcatgaacttgccgccttaaacctctctgccagctggcttgacaaaatgagcaccgaacagctcaacgcgtggatcaagcaacataacctgaaaaccgatgctccggtggcgctgtacggtaatgacaaagatgtcgacgccgtcaaaacgcgactgcaaaaagcaggtttaacgcatatctccatcctgagtgacgcgctaagcgaaccttcccgtctgcaaaaactgccgcattttgagcagctggtttatccgcaatggctgcacgacctgcaacaaggtaaagaggttacggcgaaacctgccggtgactggaaagtcattgaagcggcctggggcgctcctaagctttaccttatcagccatattcccggcgctgactacatcgataccaacgaagtggaaagtgaaccgctgtggaacaaagtttctgatgaacaactaaaagcgatgctggcaaaacacggcattcgccatgacaccacggtcattctgtatgggcgtgacgtatacgctgcagcgcgtgtggcgcagattatgctttatgctggcgtgaaagatgtgcgcctgctggatggcggctggcaaacctggtccgacgcgggactgcctgttgagcgcggaacgccaccgaaagtgaaagcggaaccggatttcggcgtgaagatcccggcacaaccgcagttgatgctcgatatggaacaggcccgtggactgctgcatcgccaggatgcatcgctggtgagcattcgttcgtggccagaatttatcggtacgaccagcggttacagctatattaaaccaaaaggtgaaatagccggcgcacgttggggacacgctggtagcgactcgacgcatatggaagattttcataacccggatggcaccatgcgcagcgccgatgatattaccgctatgtggaaagcgtggaatatcaaaccagagcagcaagtttcattctactgcggcaccggctggcgcgcgtccgaaacctttatgtacgcacgcgccatgggttggaagaatgtttccgtgtatgacggcggctggtacgaatggagcagcgatccaaaaaatccggtagcaaccggtgaacgcggcccggacagtagcaaataacattgcaattactgacgctggagcgacttcagcgtcagatacccactccacacccgcgtaaaggtcgtcatccagcacaacgcaccgaagatccacgcaaaccacgcaaaccatgcagggaataaacatcccagcacaaacagtaagatcgtttctgtgccttcggttaatccccccagatagtaaaacgacttatgtgcataaccggggttatcaatctgatgttttgctgccagtgcagcaaaggcgagaaaactgctgcccgtgccgataaacgcaaacaacaaccagccgcctgccagcgcattttgctccggtgcagcaagaataaagccaaacggcaccagcgcgtaaaagagaaaatcgagagaaatatcaagaaagccgcccgcgtcggtaagctctctgcgccgcgccagcgcaccgtccagaccatcaagcagcctgttcaacaaaatgacgactagcgccgccagataccagcccagcgccagaaacggcagagccagcacgccgatggcaaatcccactaatgttaaaccatctggcgtaatgcccggtttatcaagaacccgcacgcactgatgcaacaacggtttaatccggggatgaagatggcggtctagcacaggcactccttaaatataaagcctttctgattgagcaacagtgcggatattatggcatttttcgcttatctgcccgtgtgtaatttatgaaaatgattgaagttgttgccgccatcattgaacgtgatggcaaaattttactcgcgcaacgccccgcccagagcgatcaggcgggattatgggagtttgccggtggtaaagtcgagccggatgaaagtcagcggcaggcgctggtgcgtgagttacgcgaagaactgggcatcgaagcaactgtgggtgaatatgttgccagccatcagcgagaagtttcggggcggattatccatcttcatgcctggcacgtacccgacttccacgggacgttacaggcacatgaacatcaggcgctggtctggtgctcacctgaagaggcgctgcaatatccgctggcccctgctgacattccattattagaggcgtttatggctttacgcgccgccagaccagcggattagtgctaagggttttgtcatcacgctggcattgcagcagtattccttcggctttaattaccgccccttcagaataattttgatcctgataaacgcagcactgagtacagggctgcgctgactgcccgcctgaactgaacacttctggcggtacgtttacctccacgtccggacgataatgcgggttagccagtgcaattaatggaaatgctaatactacggcgaacaatgctcgactcacagggaactccttaacgttattgtctctgctactgataacggtagccgggtggcaaaactttagcgtctgagttatcgcatttggttatgagattactctcgttattaatttgctttcctgggtcatttttttcttgcttaccgtcacattcttgatggtatagtcgaaaactgcaaaagcacatgacataaacaacataagcacaatcgtattaatatataagggttttatatctatggatcagacatattctctggagtcattcctcaaccatgtccaaaagcgcgacccgaatcaaaccgagttcgcgcaagccgttcgtgaagtaatgaccacactctggccttttcttgaacaaaatccaaaatatcgccagatgtcattactggagcgtctggttgaaccggagcgcgtgatccagtttcgcgtggtatgggttgatgatcgcaaccagatacaggtcaaccgtgcatggcgtgtgcagttcagctctgccatcggcccgtacaaaggcggtatgcgcttccatccgtcagttaacctttccattctcaaattcctcggctttgaacaaaccttcaaaaatgccctgactactctgccgatgggcggtggtaaaggcggcagcgatttcgatccgaaaggaaaaagcgaaggtgaagtgatgcgtttttgccaggcgctgatgactgaactgtatcgccacctgggcgcggataccgacgttccggcaggtgatatcggggttggtggtcgtgaagtcggctttatggcggggatgatgaaaaagctctccaacaataccgcctgcgtcttcaccggtaagggcctttcatttggcggcagtcttattcgcccggaagctaccggctacggtctggtttatttcacagaagcaatgctaaaacgccacggtatgggttttgaagggatgcgcgtttccgtttctggctccggcaacgtcgcccagtacgctatcgaaaaagcgatggaatttggtgctcgtgtgatcactgcgtcagactccagcggcactgtagttgatgaaagcggattcacgaaagagaaactggcacgtcttatcgaaatcaaagccagccgcgatggtcgagtggcagattacgccaaagaatttggtctggtctatctcgaaggccaacagccgtggtctctaccggttgatatcgccctgccttgcgccacccagaatgaactggatgttgacgccgcgcatcagcttatcgctaatggcgttaaagccgtcgccgaaggggcaaatatgccgaccaccatcgaagcgactgaactgttccagcaggcaggcgtactatttgcaccgggtaaagcggctaatgctggtggcgtcgctacatcgggcctggaaatggcacaaaacgctgcgcgcctgggctggaaagccgagaaagttgacgcacgtttgcatcacatcatgctggatatccaccatgcctgtgttgagcatggtggtgaaggtgagcaaaccaactacgtgcagggcgcgaacattgccggttttgtgaaggttgccgatgcgatgctggcgcagggtgtgatttaagttgtaaatgcctgatggcgctacgcttatcaggcctacaaatgggcacaattcattgcagttacgctctaatgtaggccgggcaagcgcagcgcccccggcaaaatttcaggcgtttatgagtatttaacggatgatgctccccacggaacatttcttatgggccaacggcatttcttactgtagtgctcccaaaactgcttgtcgtaacgataacacgcttcaagttcagcatccgttaactttctgcgatagcagcagatatgccagtaaagaaatcccatttgactatttttttgataatcttcttcgctttcgaacaactcgtgcgcctttcgagaagcaagcattatataatgccaggccagttcttcttcaattgtcccgttttgaaaagctgtgcttgatatcgagatcatccatgataattccgccgcccatattagcttcgccgaggatttaccggagctatgattagcgcaatcagagatatagtctgagggaaaaacagcaaatttattcaacaaggcgataacctgctctggggcttcctccatgtttgctttaaaggtattggctccatggtcgccagaaagaaaatgctccattaaggcacaataactttcgctatcttcgataccccattgatcctctaaagactcgcgtcttttacttatgatatcgatcgagtcaaaaggaagcacatgatattggaaggtatctttgccaggttcaggctttcgcggccagaactccagcgtttcagaccattgcttatgatagaatcgataaggtgcgatcaattgtagcgcctgtaacttctcgatactgagcggctcaatacctttagcctgataataatgcagttgttctttttttgctttaaaaccggcccgaacaataagccccatcataattaatagataaagaaaagagcatcccgcggtaatcaggcctctttcattcaaaccgttggatgttatcgctgcgaacacaaacattacagcgacaacacatgttaaataaaacccccacttacaaagcagcatggccttattttctttaatcatccgttcaaaattactattaaatatttcccagccattaaaagaatacttctcgctcccaggatggttttgtaataaaacttttttcatcacattccctgttattacatactttagaggcgataattttatccatgcaaaaaaaatatccaacgaattttcttgatccgctggatatttcagaatatgactcgaatagcacgaaagattcactcgcttacgctatcgccccgcttccgacttcatctgctggcggactttttttcgcactacgtttacgcggtgcagcctttttcttatcagcactgccaccactgcccggagccacaatgccgcgaaactgccgcaccggcgtacgtttggcttgatcaataagctgatatagcgtccccaccagcggctgcataaagtcctgatagcgacactgcttttcgctgatttgcgtcagcaccgattcccagtgcgcggtcatgtccggtcgcgtcgccatctccggcagcgaatggaatagcgcttttccggcgtcggtggagtggatatagcgcccttttttggtcaggaaaccacgcttgaacaacagttcaataatcccggcacgcgttgcctctgtccccagaccatcggtcgcacggaggatctttttcagatctttatcctgcacaaagcgcgcgatcccggtcatcgccgaaagcagtgttgcatcggtaaaatggcgcggcggctgggtttgccgctctaccacttcacctttttcacacagcaactcatcgcctttcgccaccacaggcagtggcgtgccgtcgttttcttcatcgcgctctttgctgcctaacagcgtgcgccagcctgcttcagcaagaaaacgcgctttagcgacaaatttgcctttggcaatgtccagttcgataacacacttgcggaacaccgcatccgggcagaattgcatcagatactgacgggcaatcaggttatagaccttcgcttcgttctccgtcaggttgatcgcagaactccgtgcggtcggaatgatggcgtggtgcgcatcgacctttttgtcatcccaacagcggttgcgtatatctggatctaccactggctgcggcaacagatccggtgcatgaacactgatggcattcatcaccgcgtggcgtccggcaaaatgttcttctggcaaatagcgacaatcagaacgcggataagtgattagcttgtgcgtttcgtacagtttctggcagatatcaagcacgttctgcgcactcagaccaaaacgttttgccgcttcaatctgcaacgctgaaagcgaaaaaggcagcggcgcggattctgattcccgtttatcgttatagctggtgacaatagccggttgaccactaatgcggttaaccacatgctccgccagtggacgatgtaacaagcgcccttcttcatcctggtacggttcacacgcttcgctcggttgccagatagcggtaaaccgctcatcggcaggtgtcacgatatgtgctttgacttcaaagaagtctttcgccacgaagttttcaatctcttcatcgcggcgcaccaccagcccaagcacgggcgtctgcacgcgtcccacggaaagtacgccctgataaccggcattgcgaccgagaatggtatacgcacgggtcatattgatgccgtacagccagtcggcacgcgctcgcgccagcgcagaaacgcacagcggtacaaactcactgttggaacgaagacggtcgatcgcccgctcaaccgcctgcgggttcaggtcgtttatcaagcaacgctgtacctgctggcgcttttccggtgccagttgcagatagtccagcacttcatccaccagcaattgcccttcacgatccgggtccccggcgtgaacgatttcgctggcttcatgcaggaaccgtttgatgacgttaagttgtttggtcacggagggtcggggctgtaattgccacttttccgggacaatcggcaaatccgcaagattccagcgcgcatagcggctgtcgtaggcgtctggctgcgcctgctcaagcaggtgaccgatacaccaggtcaccacctgaccattaccgcactcgataaagccatcgcctttccggtgcggtttgggcaggacatcagcaatggcgcgcgccagactcggtttttcggcaataaacaaccgcattgaattaacgaatctcaaccatggcacgaccgccgcgcgctggcaccagttcgccaattgccgtcagttcaatgccaaactcggcggctgtagctttgacctcattttctgcttccggcatgaccgccagcagcaaaccgccagaagtttgcggatcacacagcagatcgcgcacttcacgcggcatttcacccatcagatgaccgtagctggcaaagttacgttcagtgccgccaggtactgcgcccaacttaatgtactcttcaacaccggggagtttcgggatcgcttcatagtcgacgcgtgcctgcacaccagccccctgacacatttcgctcaagtggcccagcagaccaaagcccgtaacgtcggtcatcgcttttacgccttcgatgttggcaaaggacgcgcctgcgatgttcatccggcacatcacttccgtcgccagtccctgatgttctggtttcaacagtgattttttctcagccgtggtaagaacgccgatccccagcggtttcgtcaggaacagtttgcatccggcttgtgcggtactgtttttcttcacccgctcggtcggtacgatccccgttaccgccagaccaaaaatcggctccggcgcatcgatggagtgaccgccagccagcgcaatacccgcctgacgacatgcatagcgtccaccttcggtcacttcgcgggcaatttctggggaaagtttgttaatcggccagccgaggatcgcaatcgccataatcggtttgccccccatcgcgaagatatcgctgatggcgttagtcgccgcaatgcggccaaaatcgaaaggattatcaacgatcggcataaagaagtcggtggtactgataacgctggtgccattgcccagatcgtacaccgccgcatcgtcgcgggtttcattacccacaagcaaattcggatcaacaaacttcgcctgctcactatgcaggatggtttccaacacttttggggaaattttacagccgcaaccagctccgtggctgtattgggtcaaacgaatcgagttctcgctcatggacatctcctgtcaatgcaatccgggtatggtaaccctcattccgtgaagtgataagtgagagtgtctgaattcctgcgcctttgctcacaatccagacagtttcgcgacaattatcagaaataagttacaaacggcgtcgggtccgggacgttaatcgacgtagatgctttcagctgcggcgtaccgaggtagagaaaaccgacaattttatcctgctcacggcaaccgaatgcttcacgcactaccggactttcagttaatgcgccactgcgccagatgccgccaaacccctgggcaactgctgccatttgcatcgccatgaccgcgcatccggcagacatttcctgttcccagcgcgggactttatgattctcttcgcatttcgccaccaccgtgatgatgagcggtgcgcggaacggcgcattacgggctttgtcgatagctttgtcatcactaccggcagcaatcgccccctgttccagtacggcgctgaaacgctcgcgcccttccccttcaatcacaaaaaaatgccacggttgcatggacttatggtccggcgcacgcatacccgcacgcaggatgttttgcagttgttcacccgttggcgcgggttcagccaagcgggaggcgctacggcgattgatcaatagttcgagtgcatccatttgattaactcctgtcgtgatatttattcacaaaattaacacgagagtggattttgttacagcacagtccgcaattcctgctgacaagtaccggttgggtcattacgataaccacatctattgcgcctgtgacaggtgtgaccttaagttgggagaatacatgcgaaccctttggcgatttattgccggattttttaaatggacgtggcgtctgctgaatttcgtccgtgaaatggtacttaacctgttctttattttcctcgtactggttggtgtggggatttggatgcaggtcagtggtggtgattcgaaagaaacggccagtcgtggcgcactgctgctggacatttctggtgtgatcgtcgataaacccgacagttctcagcggtttagtaaattaagccgccagctgcttggtgccagttccgatcgtctgcaggaaaactcactgtttgatatcgtcaacactattcgccaggcgaaggacgaccgcaatatcaccggtattgtgatggatctgaaaaacttcgcaggcggcgaccaaccgtctatgcagtacatcggcaaagctctgaaagagtttcgtgacagcgggaaaccggtttatgccgttggcgagaactacagccaggggcaatattatctcgccagtttcgccaataaaatttggctgtctccgcaaggcgtggttgatctgcacggctttgccaccaacggtctgtactacaaatcgttgctggataagctgaaagtttccacccatgtgttccgcgtgggtacgtataaatctgccgttgaaccgtttattcgtgatgatatgtcaccggcagcccgcgaagctgacagccgctggattggtgagctgtggcaaaactatctgaatactgttgccgctaaccggcagatccctgctgagcaggtattccctggcgcgcaagggttgcttgagggtttaaccaaaaccggtggcgataccgcgaaatatgcactggaaaacaagctggtcgatgcactggcatcgagtgcggaaatcgaaaaagcactgaccaaagaattcggctggagtaagactgataaaaattatcgcgccatcagttattacgattacgcattgaaaacgccggcagataccggtgacagcatcggtgtcgtctttgctaatggcgcaattatggatggcgaggaaactcaggggaatgttggcggtgataccactgcggcacaaatccgcgacgctcgccttgacccgaaagtgaaagcgattgtcctgcgtgttaatagcccaggcggcagcgttaccgcgtctgaagtgattcgcgctgaactggcagcagcccgggcagcgggtaagcctgtggttgtatcgatgggcggcatggcggcatctggtggttactggatttccacgccagctaattacattgtggctaaccccagcaccctgaccggttctatcggtatcttcggcgtgatcaccaccgtagaaaatagtctggattcgattggtgttcatactgatggtgtctcaacttcaccgctggcggatgtttctatcaccagggcactgccgccggaagcgcagctgatgatgcagttaagcattgagaatggctataaacgctttatcacgctggttgctgatgcgcgtcattcgacgccggagcagattgataaaattgcccagggccacgtctggaccggtcaggatgcaaaagctaacgggctggtcgatagtctcggggatttcgatgatgcggtcgccaaagcagcagagctggcaaaagtgaaacagtggcatctggaatattacgttgatgaaccgaccttcttcgacaaagtgatggacaacatgtctggttctgtccgggcaatgttgccagatgcgttccaggccatgttacctgcaccgctggcctcggtagcctctaccgttaaaagtgaaagtgacaagctggccgcgtttaatgacccacaaaaccgttatgcgttttgcctgacctgcgccaacatgcgttaagtcttgtactgagtggccgacagatcgtcggccacattattttttacgtcgacgaatcctcttcccgctgtttcgccccatatttccttatccgcatagtatcaggtgcgctccccctgcctcacgtatatacttttgctctttcgatatcattcatatcaatatcatgcaaaagaaatcaatttacgttgcctacacgggcgggaccatcgggatgcagcgttccgagcagggttatataccggtgtcaggtcatctacaacgccaactggcgctgatgccggaattccatcgcccggagatgccagatttcaccattcatgaatatacgccgctgatggattcttcagatatgacgccggaagactggcagcatattgctgaagatattaaagcgcactatgacgactatgatggttttgtcattctgcacggcaccgacacgatggcgtataccgcctctgcgctgtcgttcatgctcgagaatctcggtaaaccggtcattgtgacagggtcacaaatcccgctggctgagttacgctctgacggacaaattaatctgctgaatgcgttgtacgttgcggcgaattatccgatcaacgaagtaacgctctttttcaataaccgattgtatcgcggcaaccgcactaccaaagcccatgccgatggttttgatgcgtttgcctctccaaaccttcctccgttactggaagcaggtatccatattcgtcgtttgaatacgccacccgccccgcacggtgaaggggaattaatcgttcatccaatcaccccacaaccaattggcgtagtgacgatttatccagggatttctgctgacgtcgtgcgcaattttctgcgccaaccggtgaaagcattgattctgcgctcctatggcgtgggtaatgcgccacaaaacaaagccttcctgcaggaattacaagaagccagcgatcgcggtattgtggtggtcaacctgacacaatgtatgtccggtaaagtgaacatgggtggttatgccaccggtaacgccctcgcccatgccggcgtaattggcggtgcagatatgactgtagaagccacgctaaccaaactgcattacctgcttagccaggaactggatactgaaaccattcgcaaggccatgagccaaaacctgcgcggcgaactgacgccggatgattaaggagactgtaatgccccctcgcgccctgttactggtcgatttacaaaatgatttctgtgctggtggcgcgctcgccgtgccggaaggtgacagtacggtggatgtcgctaaccgcctgattgactggtgccagtcgcgcggtgaagcggttatcgccagtcaggactggcacccggcgaatcacggcagttttgccagtcagcacggtgtagagccttatacgccaggccaactcgacggtttgccacaaaccttctggccagatcactgtgtgcagaacagtgaaggcgcacaattacatccgttactgcaccaaaaagcgatcgcagcggtgttccataaaggcgaaaatcctttagttgacagttacagtgccttttttgataacggccgtcggcagaaaacctctctcgatgactggttacgcgatcatgaaatcgatgaattgatcgttatgggcctggctactgactattgcgtgaagtttaccgtgctggacgcgttacagttaggttataaggtaaacgtgattaccgatggttgtcgtggcgtgaatatccagccccaggacagtgcgcacgcgtttatggagatgtcagcagctggggcaacgctatatacgctggcagactgggaagagacacaggggtaattttacgctggcctacaattctgtactggcattgtaggccaaataaaacacgtcagtggcacatctggcaattgatgccatcaacgaaagatttaattcacctcagaaatctcttccaacgacaccttccgcgtttcgatgccaaaaatggagagaaccagcgcacagagcaataacataacaccaagtaccataaacaccgtgatcgacccataatgtgttaataatgccgcaacgccatagggcgtgaagactgcgacgatccgtccgacggcattaacgaaacccgaaccgcgcaggcgtaaatgcgttggccaaagctccgggatataaaccgccgacgcgaagcaaacatacatgtataaaaagaagatcatcaccagtccatagattaaaatcgcccactctgtagtctgaattgaatagatatagcctaacacggcaataataataagtaaggtggagccaaataaccgacgaggaaaatgatcaataattaatgccgcaataaatattcctaccggagcgccaatcataataacagcggtcattaatattgatttatcgacatcaatgccggagttaacaaatatggtcggtatccatacggtgatggtataaagcgaaatgttcattgcaattaaaacagtaatcgcgactaatgtacgtcgtaacatttcacctttaaacaggagccagaaagtacccttgattactttaaccttgctgttgctctgatacgaagtaagcgggggtaaacgaatactcttctctctttcaatttgctgctctacttcacgaagttggcattctgcacctgcgatttgccctttccctgccagccatcgtggcgactcgataaagtatttacctgagagaaaccaggctaacagtatgccaataccacccagcagaaacattattcgccaactaaaaaaagcgataaccaccacgcctatcgccgcagacagcatgggcgaccagttaccaacaaatgagagccgcgcggaccattttccacgcaccgtcgcggggataaactccgtaaatgaggcatagccaaccataatcagcgcccccattcctgttcccatcaggaagcgaaagaagatgagccagtacatatcagggacaaaagcggcccctgttgcagcaataccgacgatgagaagatttatgcgaaacgccctgcgccgcccaaagtagtcaccaataaacccaccagtaagtgagccgatgaaataaccaaacattaatgccgaggtaaaggcggcattgaggaaattatttgaccatccattgcttaccagctttgctaagacgacattaccggagtaactcaaaaaccctgttaataacagactaaagcttataataccaaatatacgataatgaaaccgggccaaaggcaagcggtccagtcttgcgccaatttgatcatattgttccattaggtgcctcggatttgctaaaaaggtagcaattgcggcaaattcacttgccgcatctttatcatcattttatttcaaggcgcaggaacaaataatattgacaacgtgtgcttaaattaccacaccagctggatattattgtctttgcaaaatgctatccactctgcacccggtgatttatcagttattatgtaattaatatgactaaaatcagctaactggacaaaagctttgcgatcaaacttagagtgatcaaccaataacgcaacttctgtcgcctgacggatcattgtctttttgatttcagcttccgcttcattagagtccagcgcgccgctgttaatatcaagacctttacaactcattaccatgatatcgacatgatagcgcctgatgatctctttagtaattcttccttgcagtgaaagtgtatttttgtttagttccccacccgttgaaacgactttaatttctgactgagccagaacatgaatcgcttccgccgagttggttagcaacgtcaggccactacggtcctgtaacaatttgagcaattccattacggtactactggaatcggctgccatggtggttttattgtcgataaagggtagtgccttgcgtgcaataagctgcttctcttcataaaacgatgaagcgcgcttataaaaatggatattctccgtcaacatcgctgtatttaaaacagcaccaccataggttctggtcaaaaagccttcatcttccagcttctcaagatcgcggcgaatggtttcttcggttacctgaaaaatcccactcaaatttgagactgtcacctttttatcgttggcaaccatttgcttaattgcctgaatcctgtcttttgccgccacgattacacccctgtatctttttacatcacattagcgcgattatcgcataaccgatgtttactttcaaaataacctgtttgaatcacagattttcatcacagttttcacagaaacagaggtgaatcgtgttgagtatttaacgctccagggcctctgccatttccctcatcaatgttgcgtctgcatccgataagttgatattcagtgccgcgacattttcgcgtacctgttccggtgcagtagccccactaagaatggagattaaatcactctgttttaatatccacgccagtgccagagtgggaattgtgcactgataacgagcacaaagtggctgccactgttcaagcatatcaatcactttcagcatgttttcacgctggaaccagactttatttgcccgagcgccgcccggaacgtaatcacgagtgatggtgccggtcaacaatccctgctctagcggggaataaacctgaaccacaatgccattatcacgacatagtggcagcagttcgttttccattgcccggtcgaggatactgtatttcgcctgaataatatccagttcaccatattgcagatactcgcggatatggtcagcatcgacgttagcagcgcctatagcgcgaattttcccttcagactttaactcattaagcactgcgacagtttcagcgatcggcgtaaaaaatggcggcaccgactgccagtgcgtcatgtagatatcgatgtaatcaatacccagacgttgcaagctcgctgctacctcttcgcggatagattccggggaaaggtttttatacaactgccgatcgccaactttgttgaataaacttccttttcgttcccagacaatgccgcatttggtttctactacaacctgttcacggggcagtttttttaacgcctgaccgacgataacttcactattgccaaagttatatcctggcgcagtatcaatcagattaatgccacaacgatgggcttcaagaatcgtatcaatacatatttgccgatcgagatcgccattccatgcaggaccgccgccaatggcccatgtccccaaccccattcgcgaaagcgtaatatccgttgtgcctaaaggtatctttttcatttgccttcattatccttcgtattcttccagcaattgttcgaccagctttctgttttttacgccggtggtggcaccgacgcttagaaccgagatagccgccgttgcattggcaaagcgtgcgcattcacgcagatttttgccttctaacagtgccgcaataaaacctgaagcaaagttatcgcccgcgccaatggtgtcgatggcggttattcctgcgaccgccggcaccttcatcgtcatgtcaccacgcttgataaagcagccgtctttacccgttttaatcaccaccgtttttacgccgcacgcaagaaagcagtcagcaatttcatccagtgtctctttcccggtgagtaattttgcctcggcaaaattaggaaacagataatcgacataactcaatgcttcgcaaatatcatccagcgtttcattcaaccgcggtttgatcatatcggcacagataatcatctgccgggctttagcttgcgtaaaaatttctgttagcgctttaccatccaatagtggactgttgaaaatactggccagtgataataatttcgcctgagaaaaccgcgcaaaatcaacatcgtcaatattcaatttccacagactgccattacggtttgtgacaaacgtccgctcgccatcctccgtcaccagtccaacgttaatagaggtatctatgctgacgtcctgcttcaggctttgaatatcaatattctctttgcggcaatggtcgagaataaattgccctgcggcatctttaccaatacgactcattaatgctgtgcgatggcccagacgagaaataattgttgcttcatttattgcatcacccccggtggtcattgcgattctttcaagaggataagaatccacatcaaagatatttttactgaccggttgcaatggaatatcaacaatagcggcacctatacaaataacgtcgagattatccatatcattattccgctttgccatcagaaccgaacagtttaattttttccaatgcccgttcttttacagctttacgtacttcacgttctaaatgcaggaaaggctgatcctggttttctttcactgcaaccattgcggcctgacagagctccgtatgaatgttgattttcgcgatacccaacgaaattgcagttttaatgtcggcatcactgatccccgatgcaccgtgcaaaaccagcggaacagaaacggcatcgcgtacgcgtttgacgacctcaaagttcaattgtggctctgacgtataaaccccatgctggttgccgatggcgacagccaatgaatcacagcccgtacgttcaacaaattcagccgcctggtcaggatcggtatagtgatagcccgccagcgcttcctcataaacggtttcattaccgacatgccctaattccgcctctaccggaatacccagcggatggaagaaatcgacagcctctttggttaaacgaatattttcttcgaaatcaaacgcggaagcatcacgcattaatgaattcataccatgagtccaggcgttatgaataatctccatactccgaccatgatcccaatgagttattaccggcaccgttgctttttgtgccattgataccatcatgtgagagaaatcttcaaatgaggtgttaccgacaaaacctgtaccaaaagaaataataaccggggatttcgcttcttcggctgcgtcgataacgcccatcaacatttctgcattccatacgttaaaatgggcaattgcataatgtttatttgtggcatcgttttcccaatatctgatatctgcgagcatgttctgttctcccgtattaattaatcgctaattttaataacgcctttaataatgtcgcgtttgttgttaactgactcttcaaatgcctgttgtacatcccgataatcgtaaatatgcgtcaccatcgatttcacatcgaatcgccctgaagaaatagcttcaatcgtgaccggataacgattggcatagcggaataccgtctggatagtgacttcgcgattgattttgaggaaattgattgccgaatcgccgggtacagtaccaacaatcataattttaccgccgcgcattaccagataaggtgcctgtttaacggtgaccgcagaacccgctgtttcgaaaacaatatctgcgcccatgtcttcggtaaattgctgacagcgtgcaatagtgtcttcttttgcgccgttaataaccactgtcgcaccaagctgttccgccattgccagacgtttttccagcacatcaacgacggcaatttccgttgctcccaggcatttgcacgcttgcaacgtcatcaaaccaatacaacctgctcccagaataattatcttcttacccggtttaacatctgccagcatcgcggcatgcatcccgactgcggcaggctccaccagcgccccttccatcgtgtccatattgtcgggcagtttgtaagtaaagctctccggatgacacagatagtgcgttaatgcgccgcggtagttgggttgtgtcgccataaaatcaacgtccgggcagatgttatatttgccttccagacagtaacgacagtgaccgcaaggaacgccaggttcgatatttacccgatcccccggtttaaatttgcgcacgcggcttcccacagccacaaccgtcccggcgcattcatgacccaggccaatttcttgatttgggtctttaggcggaataaacgggcctgattcaaaaccatgtacatctgaaccacaaataccgacatattctactttaatcaaaacttcatcttctttaggcactggtatttctgctgaaataattttcattgtgcccggcacctgcaatattgcttttgaatttttcattttgaatccacccgtattatttattggctactgcatcaatacttaaactttcaacggagacacctttggtttcgattccaatggtggcgatagcaattgcgacaataattgaaaccgcccccagaagaataaagactcccgtaacgccataactactgagcagcactgcaacggcataaggtgcggcaataccactgattcgccctaccgcattcgccagaccggagccacggagtttggcctctgtcggccagatttcagggacatacactgccgaggcatagcaaacgtacatatagacgaaagtaatcaggaagaaaccaatcaacgttatgagcaacatactggtttgcagtgaatagatatatccgagcaccgcaatcaggattaatagccccacacccattgttttacgcggaattttatccatcaccagcatggcaataaaaataccaaatggcgcgccaaacatactcatggtatttaaaacaatcgagtcttttaaattaatcccctgggtcatgaatattgttggcaaccagttaattagtgtgtactgcacaacgttcatggcaatcagcacacaagagcctaatatcacgcgtttcagtaatactcctgtcagtaaggctgaatacggcaccgcttgtggcgctttaccgtcatcagcaataaccacaggcggcaaaggtttacccgtctggcgtatgacgccttcttctatactccgcatgactttctcggcttcctgataccgtccgcgcgattccagccagcgcggggattcaggaaagtagcgccaggccagcgccgtagcgataagcgacaatattgcagggataagcagttgtacccgccagttccactctgcactaatcagcggcgtgagtcccatcgctatcaatgaacagagcggatatgaccagttgccaataaaggaaacccgacttgaccacgttccacgatttctaccgggcatatattcggtgaaaccagcaaacagcgtaaccagtaaagctcccagcccaactcccatcacaaaacggcaggcaataaggaaatccatattcggtgagaaagcaccgacaaccatcgaggcaatatgaatggcctcatagaggatgaacgcatttctgcgaccggttttgtcgccaatgatgccgcccaccagcgcaccgagaaacattccggcggtcgtgattgctgagaatgtggctgtggtggaattatctgtccagcccaacgctttcagctgcgcgaggatcaagccaccaacggcattactccagcagacaagcaagccaaacgcgacgatggcaaacattgatgaatgccagcggcaatccggtaagcgatccagccgtgcaccacaatgcggttttgttatctgttccatgcgataacgttccttcaggagagtggttattcatcaaagtcgtaagtcatgatcactttgattgcggttttatcgaccatcgcatcaaacccttcgcgccattgcgacaggccgatacgatgcgtgatcatcggtttgactttgatagcgccgctggctaatagcctgatagcgttacgccatgaggtggagtcataggccatatgcccaatgatgcttttgttccaggcggtaatgtcattaatcgagaaatcaagaggtttgaagcccattccaacgcgtaccacttccccgttcgggcggagcatttcgatggcttgtttcagtgcgatattggcaccggagcattcaatcaccagtcccagattgtctttgccacaaatttgctggcagcgcgccaccacatcttcggtagaaccatttactactgccgtcgcacccagttcttttgcaaccgggaagcggaccgccacatcttcttgcagaccaacgacgacgatatttaccgcccccataattcgcgccatttgtacggagaacagcccgagtgggccagtgccgatgacgaccacatcctgaccaggaaggaatttcgattgctgcgcgatggatttgtaggcattacagatagggtcaagtacggctgcgtcctcataatcaacaccatcagggatttcccacaacgcatgacgatgaattttgagaatttcaccaggaaccagacaatatttggaaaaaccaccgccccaggtattattatccagaccaaggtttactttttctgtacaacacagaaaatcaccttgttcacaggccggacaaacaccgcaaacgtgaccgctgttatccgatacgacgcgttgccccactttccagtctttgactttttcaccaacctgcgcaatacaacctgcgaactcatggccgcggatagagttaaactcatcagaaccgctatcgacattgtagtgcttcatgtctgcgccgcagattgccgcggctttaatttcaatcactacatcttccgggccacacatgggttgtgggacatcaatcatcttgtagccgccaaaggccttgccaaaccgagccagtgctttcattgcgtcatcctctgtgtttagttttgcttagatggccatcatacttacccacatgatttttgaggtcaacattaaatctgtaaaacacagataatgatctgcgttttacaactcagatcacaattacgcagaaaatggctgggtctgttacaggttgatggaaggcggggcgcaaaaagagcaaattcgagagggattaccggccaaataggtctgagacttaagttcaggagaagtcattcaggtgtgaacgggacggcaagagatcggactgggacttagccaggtcatggcgagataattgagatgagtcgtggggtcattgttggctatccccttcatagccgaggcaaaaaggggatgaaccacttacttaaacatggcaataggctttgctgagataccaaaatcttcttttaactgctgtttgctcttcatgaccatctgaccatttgtgtcaattgtcatatgctgtgcttcgatattatggcgggcttgccacagcatcaccagttgcaggcagttctctttttgttcctcggtcaacgcaacgccatcaggccatttccccagttcaacggcggtcgacaaacgctggtatacctcaggcatcatgctgttgataatgtcatcaagattcataatttttccgctcctgtggaataagttgctgaatcgttttttcaaccgttgatttcttcgccgttttcgccatcggtaaagcgtaaagaggcagagttaacacaataacgttcgcccgttggctgcggcccgtcggggaagacatgccccagatgggcatcacagttaccgcaacgaatttctatgcgctgcattccatgtgacaagtctttgatataacgaatggattcttcacttaccggttcgtagaaactgggccagccacagccggaatcatacttggtttgggaatgaaacagcggggcatcgcagatcaaacagtgatatacgccgtcacgcttgttatgcagtaaacgacccgtaaatggcggttctgtcccatgattctgcgtcacgtaaaactgcatctcggacaaattttttttcagttcttctgccgaaggtttattagccatttgctcacatctcactttaatcgtgctcacattacgtgactgattctaacaaaacattaacaccaactggcaaaattttgtcctaaacttgatctcgacgaaatggctgcacctaaatcgtgatgaaaatcacatttttatcgtaattgccctttaaaattcggggcgccgaccccatgtggtctcaagcccaaaggaagagtgaggcgagtcagtcgcgtaatgcttaggcacaggattgatttgtcgcaatgattgacacgattccgcttgacgctgcgtaaggtttttgtaattttacaggcaaccttttattcactaacaaatagctggtggaatatatgactatcaaagtaggtatcaacggttttggccgtatcggtcgcattgttttccgtgctgctcagaaacgttctgacatcgagatcgttgcaatcaacgacctgttagacgctgattacatggcatacatgctgaaatatgactccactcacggccgtttcgacggtaccgttgaagtgaaagacggtcatctgatcgttaacggtaaaaaaatccgtgttaccgctgaacgtgatccggctaacctgaaatgggacgaagttggtgttgacgttgtcgctgaagcaactggtctgttcctgactgacgaaactgctcgtaaacacatcaccgctggtgcgaagaaagtggttatgactggtccgtctaaagacaacactccgatgttcgttaaaggcgctaacttcgacaaatatgctggccaggacatcgtttccaacgcttcctgcaccaccaactgcctggctccgctggctaaagttatcaacgataacttcggcatcatcgaaggtctgatgaccaccgttcacgctactaccgctactcagaaaaccgttgatggcccgtctcacaaagactggcgcggcggccgcggcgcttcccagaacatcatcccgtcctctaccggtgctgctaaagctgtaggtaaagtactgccagaactgaatggcaaactgactggtatggcgttccgcgttccgaccccgaacgtatctgtagttgacctgaccgttcgtctggaaaaagctgcaacttacgagcagatcaaagctgccgttaaagctgctgctgaaggcgaaatgaaaggcgttctgggctacaccgaagatgacgtagtatctaccgatttcaacggcgaagtttgcacttccgtgttcgatgctaaagctggtatcgctctgaacgacaacttcgtgaaactggtatcctggtacgacaacgaaaccggttactccaacaaagttctggacctgatcgctcacatctccaaataagttgagatgacactgtgatctaaaaagagcgacttcggtcgctcttttttttacctgataaaatgaagttaaaggactgcgtcatgattaagaaaatttttgcccttccggtcatcgaacaaatctcccctgtcctctcccgtcgtaaactggatgaactggacctcattgtggtcgatcatccccaggtaaaagcctcttttgcattacagggcgcacaccttctctcgtggaaacctgcgggtgaagaagaagttctgtggttgagcaacaacacaccgttcaaaaatggcgtcgctattcgcggtggcgtaccggtttgctggccgtggtttggtccggcggcacaacaaggtctgcctgcgcacggttttgcccgcaacctgccgtggacgctgaaatcacatcatgaagatgctgatggcgtagcgctgacttttgaattgacgcaaagcgaagagacgaaaaaattctggccgcacgactttacgctgttagcgcatttccgcgtgggtaaaacttgtgaaatcgatcttgaatcacatggcgaatttgaaaccacctctgccctgcatacctactttaacgtgggtgatatcgctaaggtaagcgtcagtgggctgggcgatcgcttcattgataaagtgaatgacgcgaaagaaaatgtactgaccgatggtattcagaccttccctgaccgtaccgatcgcgtgtatctgaatccacaagattgcagcgtgattaatgatgaagcgctgaatcgtattatcgccgtaggccaccagcatcatctgaacgttgtcggctggaacccgggaccggcgctttcaattagcatgggcgatatgccggatgatggctacaaaacatttgtttgtgtagaaacggcttacgcttcagaaacgcaaaaagtgaccaaagagaaacctgcacatctggcgcaatccattcgcgttgcgaaacgttaatttacgttaatgttgtgtgccgggtgcaatgcatccggcacacaacatcacaccatatccagcgcagtttttccttttggtgccggatatgccttatccagcatagctaattccgctgaagaaagttcgacctcaagcacagccgcattttgttggacatgggcaatcgtggccgcttttggaatcgccatcacaccctgatgactgatcacccacgccaacaatacttgtgccgcgctgatattgtgagcatgtgcaatttcgttgactaccgcgttttttaacagtccattgcgcaaccgcccggcctgggctaacggactgtaagccatcaccggcatctgctgttgctggcaccaggggagtagatcgtactcaattcctcgtgaaccgagatggtaaagcacctgattagtggcacactgatttccccccggcagctgccagagttcctgcatatcagcataatcaaggttagaaacgccccagcggcggatttttccctgggcgatcaatttttccatcgctgcgacagtctcttcaaaagcgaaactgccagaccagtgtaataagtaaagatcgagataatcagtattgagacggcgtaaactggcttcgcatgcatttatcgctttttgcccgccagcattccacggatagactttagagacgagaaagaccttctctcgcagaccggttaatgcttccccaaccaccttttcggcaccgccatcggcatacatttcggcggtatcaatgagggttaaaccgagttcaatgcccgcgcgtagtgcagcaacttctgttttgcgctgactggcatcttcgcccatataccatgttccctgccctacggctggcagtgagacatcgccactaaattgaatcattttttgttgcattgtttcctcccaggtattgcaccaccgtaatgcaaaacagggcgtgacgccctgtttttatgcacaaaatgccctggaaagatgcattatcagaatttgtaggtgatcccggtagaaatcaggccagtccaggatttatccaccatcgggctgtcagtaacttcatcagacagacgggtgtagcgtgcggtaccgtaaacactccagtcgccgaggaagttgtagctggcgctcagctccaggtaagggctccagctgtcgttcgggttatagccacgcagaccgctgcgagcggactctttgcgcgatacgccataatagtattcgttctggttttcgctgttccactgcacaccaatacccggagtcacggtcaggccaccgttggtgtaacgatacaaccaggccatatcccagacgatgccgttgctgttatccagggtatcgccagccagggtggtacgcaggtaaccgtactgggtaaagtgagcataagacagaccagccatcatggtgctcttacggtcatccaggtgacgcatttggtgatcgccactgtctttcgctttgaagtaaagcggcgaccagtaagcggtaattgaaagtttatccgttgcgtcattccacaggtagtaaccaccacctaagccacggaaccagaagttatcgccttcatagttgattaccggtactgggtaaacatcggtatcgtaatctttatatgggtgttcaacgacacctacgcctgcgcccagggaaaatttaccttcagcgtgcgctacgcctgcagacgttgcgataagcactccaagtgccagaagtttgagtttggtcacaattaatcattccttaaacaaatgtttagcgggcgacaaagtttacccgtcaatacatcgaaacccaacctttttacgttttcattttttaaagtaactgtttaattttcctgacgcggatgacaccgcgcttacagccaaatgaatttagcgttactggcgagcctggtctttacattaattatgcaaaatttatggatgagttgttgatatgccattgaaattaagaaagccgtgcaggcaagttttccatttgccatctacgcttaattttgaaggtgtatcaccgggcacgttgttctcatcgtcgataaaatggcatgagagttgctgtgttttagcaagagacgtcgttcagtttacctcttccgggagcctctactattcatatgaacggctcttaacctgtgctaaaaaacgaaaggacggcataccatgaatatattcgatcactatcgccagcgatatgaagctgccaaggacgaagagttcacactgcaggagtttcttaccacttgtcggcaagatcgcagtgcttatgccaacgcggctgagcggctattgatggctatcggtgagcctgtcatggtcgatacagcccaggaacccagactttctcgactcttttctaaccgggtcattgcacgttatccggcgtttgaagagttttacggcatggaagacgcgattgaacagattgtctcttatctgaaacacgcggctcaggggctggaagagaagaaacaaatcctgtatctgctggggcctgtgggtgggggtaaatcatcgcttgctgagcgactgaaatcattaatgcagctcgtaccgatttatgtattgagcgcgaacggtgagcgtagcccggtcaacgatcatccgttctgtcttttcaatccgcaggaagatgcgcagattctggaaaaagagtatggcattcctcgccgttatctcggcaccatcatgtcgccgtgggcggcaaaacgcctgcatgaatttggtggcgatatcactaagttccgggtagtgaaggtctggccgtcaattctgcaacaaattgctatcgccaaaacggaacccggcgatgagaacaaccaggacatctccgcgctggttgggaaagtcgatattcgtaaactcgaacactacgcgcagaatgacccggacgcctacggctattccggtgcgctgtgccgcgccaatcaggggatcatggaattcgttgagatgtttaaagcaccgattaaagtgctgcatcccttgttaaccgccactcaggaaggtaactacaacgggacggaaggtatctccgccctgccgttcaacgggattattctcgcacactcgaacgagtccgaatgggtcactttccgtaataacaaaaacaacgaagccttcctcgatcgtgtttacatcgtgaaggtgccgtattgcttgcgcatttccgaagagatcaaaatctacgagaaattgcttaatcacagtgaattgactcacgccccatgcgcccctggcacgctcgaaacactgtcacgtttttccattctttcgcgcctgaaagagccagaaaactccagcatttattcaaagatgcgggtttatgatggcgaaagtctgaaagacaccgatcccaaagccaagtcgtatcaggaatatcgtgactacgccggtgtcgatgaagggatgaacggtctgtcgacgcgttttgcgtttaagatcctctcccgcgtgttcaacttcgatcatgtagaagtggcagcaaacccggtccatctgttctacgtcctggaacagcagattgagcgcgagcagttcccacaagagcaggcagaacgctatctggagttcctgaaaggttatctgatcccgaaatatgccgagtttatcggcaaagagatccagacggcctaccttgaatcctattccgaatatgggcaaaacattttcgaccgttatgttacctacgcggatttctggattcaggatcaggagtatcgcgatccggataccgggcagctgtttgaccgcgagtctcttaacgccgagctggagaaaatcgagaaaccggcggggatcagtaatccaaaagatttccgcaacgagattgttaacttcgtactgcgcgccagagcgaataacagcggacgcaatccgaactggaccagctatgaaaaactgcgcacggtcatcgagaagaaaatgttctccaataccgaggagctgttgccggttatctcgtttaacgccaaaacgtcaaccgacgagcagaagaaacacgacgactttgtcgaccgtatgatggaaaaaggctacacccgtaaacaggtgcgtttactgtgcgaatggtatttgcgcgtacgtaaatcgtcttaacaaccctggcccggtacacatgttaccgggcctacaacgacagcgaaccgtgggcctgagaagcggcaacacaggcgtagcatacagttggcaaatgtagtacggggggcatatgacctggtttattgaccggcgtctgaacggcaaaaacaaaagcatggtgaatcgccagcgttttttacgccgttataaagcgcaaattaaacagtcgatctccgaggccattaataagcgttcggtgactgacgtcgacagcggcgaatccgtatccattcccacggaagatattagcgaaccgatgtttcatcaggggcgtggcggtctgcgccaccgcgtgcatccgggcaatgaccatttcgtccagaacgaccgaattgaacgtccccagggtggcggcggaggttccggcagtggtcagggccaggccagccaggatggtgaaggtcaggatgaatttgtctttcagatttcgaaagatgagtatcttgatctgctctttgaagatttggccttaccgaatctgaaacaaaaccaacaacgccagctgaccgaatataaaacgcatcgggcgggttataccgctaacggcgttccggccaatatcagcgttgtgcgttcattgcagaactcactggcgcgacgcacagccatgacggcaggcaagcggcgggaacttcatgcactggaagagaatttggccatcatcagcaacagtgaacctgcgcaactgctggaagaggaacgtctgcgcaaagaaattgcagaattacgtgccaaaattgaacgcgtcccttttattgacaccttcgatttacgttacaagaactacgagaagcggcccgatccctccagccaggcagtgatgttttgcctgatggacgtttccggttcaatggatcaatccactaaagatatggctaagcgtttttatattctgctgtatctgttcctcagcagaacgtataagaacgtggaagtcgtatacatccgccatcatacccaggcgaaagaagtcgatgaacatgagtttttctactcgcaggaaacaggcggcaccattgtttccagcgccctgaaactgatggatgaggtagtgaaagagcgttataacccggcacagtggaatatttacgctgcacaagcatcggacggcgataactgggccgatgactctccgctttgccatgaaatcctggcgaaaaaattattacctgttgttcgttattacagctatatcgaaattacccgtcgtgcacatcagacattgtggcgagaatatgagcatctgcaatctactttcgacaactttgcgatgcagcacatccgcgaccaggatgatatttatccggtgttccgtgaactgtttcataaacaaaatgcaacagctaaaggctaaaactatcagccaggtcattatcgcctggctgatttttagcttactgtaaattatctcatttattacatacattagcttacaatcgctttaaatatgacagcataacctttacataatttagttccagaaaacaatcattcggaaaaatgattcagtcaacacgtatttccatggggttattctttaaatattttttatcgttaacgaaaattgatcctggtcaaaactatatatctctgccatcaataaaatccagcactcacattgctctcctttttatggtttctatgggtacacaaaaattaaaagctcaaagcttttttattttcagtttattgctgacgttaattttattttgcattactaccttatataacgaaaacacaaatgtaaaactcatcccacagatgaattacctgatggttgttgtggctttgtttttccttaacgccgtcatttttcttttcatgttaatgaaatatttcactaacaaacaaattttaccaacactcattttaagccttgcatttttaagtggccttatctatttagttgaaaccattgtaattatccataaaccaattaacggcagtacactgatccagacaaagtcgaatgatgtttctattttctatattttccgccaactcagttttatttgtttaacctcgctggcgctcttttgttatggaaaagacaacatccttgacaacaataagaaaaaaacgggaatcctgttgctggcgctgatcccttttttagtttttccccttctggcacacaatctgagcagttataacgctgactattctttgtatgtcgtcgattactgtccggacaaccatactgcgacctggggaatcaactatacaaaaatattggtttgtctgtgggcatttttactgttctttattatcatgcgcacacgattagccagcgaactatggccgttaatagcattattatgtctggcatcgctatgctgcaacttacttctactgactctggatgagtataattatactatctggtatatcagtcgcgggattgaagtttccagtaaactgtttgttgtgtcttttctgatttataacatttttcaggagctgcaactctccagcaaactggcagttcatgatgtgctgaccaatatttataatcggcgctactttttcaacagcgtagagtcattattgtcgcgacctgttgttaaggacttctgtgtcatgctggttgatattaatcagttcaaacgcatcaatgcccaatggggacatcgtgtgggtgataaagtgctggtttcaattgtcgatattatccagcaaagcatccgccccgatgatattttagcgcgactggagggtgaggtgtttggcttgctatttaccgaactcaatagtgcccaggcaaaaatcattgcggaacgtatgcgtaaaaatgtcgaactcctgaccggctttagtaacagatatgatgttcctgaacaaatgaccatcagtattggcacggttttttcaacgggtgacacgcgtaatatctcgcttgtcatgacggaagcagataaagccttacgcgaagcgaaaagcgaggggggcaacaaagtgattattcatcatatttaagtgcaaaaatattcagagccatgctttttgcgtggcttttgcatacaatttattactattacccctaaatttcccctccccagcggcgcagagatgagtataattagcgcccctgtgccaggccgcaatcgaactttatctggttttctcgtttcactaaccgaaggagtgccatttatcatgaaattgcaccatagaatgctccggcattttatcgccgcaagtgtcattgtgctgacatcttccttccttatttttgaacttgtcgccagcgacagagcaatgagtgcctatctgcgctatatcgtgcagaaagcagactcctcctttctttatgataagtatcagaatcagagtattgccgcgcatgtgatgcgcgctctcgctgctgagcagtcggaagtgtcgccagaacagcggcgcgccatctgcgaggcttttgagtctgccaataacacccatggcttaaacctgactgcccataaatacccgggcttacgcggcacactacaaaccgcatccactgactgcgacacaattgtggaagctgcagcactattacccgcttttgatcaggcagtggaaggcaaccgccaccaggatgattacggttcaggtcttgggatggccgaagagaaatttcactattatctcgatctcaatgaccgctatgtctatttttatgagccggttaatgttgaatactttgcgatgaataactggtccttcctgcagtcaggaagtattggcatcgatcgcaaagatattgaaaaggtatttaccgggcgtaccgtattgtcgagcatttaccaggatcagcgtactaaacagaacgtgatgagtttgctgacgccggtatatgtcgcagggcagctaaaagggattgtgctgctggatattaacaaaaacaatctgcggaatatcttttatactcatgaccgccctctcctctggcgttttctcaatgtcacgctaaccgataccgattcggggcgcgacattatcatcaaccagagcgaagataatctgttccagtatgtcagttacgtccatgacttaccgggcggcattcgtgtctcgttatccattgatattctttactttatcacgtcttcgtggaaaagcgttctgttctggattttgacggcgttaattttgctgaatatggtgcggatgcacttccgtttataccaaaatgtgtcgcgagaaaatattagtgatgcgatgactggactgtataatcgcaaaattttaacccctgaactggagcagcggttgcagaaactggtgcaatccggttcttcggtgatgtttattgctattgacatggacaagttaaagcaaataaatgacaccctcggtcatcaggagggggatttagcgattacgttattagctcaggcgattaaacagtcgattcgtaaaagtgattatgccatccgactcggtggcgatgaattctgcatcattcttgtcgattcgacgccgcaaattgcagcacaactgcctgaacgtatcgaaaaacgtctgcaacatatcgcgccgcagaaagagatcggcttctcttccggtatttacgcgatgaaagaaaacgatacgttacatgatgcgtataaagcttccgatgagcgtttatatgtcaataagcagaacaaaaacagccgttcatgataaccttctgtggttgtttgcttgtaatctcaggagcgtgaaatgactgaaatggctaaaggaagcgtgacgcatcagcggttaatcgctttattatcacaagaaggtgctgacttccgcgtcgttacccatgaagcggtaggtaaatgtgaagcggtgtcagaaattcgtggcaccgctctaggccagggtgctaaggcactggtatgtaaagtcaaaggcaatggcgtaaatcaacatgttctggcgatcctcgcagccgatcaacaggccgatctgagccaactcgccagccatataggcggattacgcgcttcgttggccagcccggcggaagtcgatgaactcacaggctgtgtcttcggcgcgatcccccctttcagcttccatccaaaactcaaactggttgccgaccctctactcttcgaacgatttgatgaaatcgccttcaatgcaggcatgctggataaatccgttattttgaaaaccgcggattatttgcgcattgcgcaaccagaactggtcaatttccgccgcactgcgtaactagccggtccgttcgataagaagaacggacaaaaccagtacaacagcaatggcaaaaaacgatgacgtgataatcagtgtctcgacaaacatttgatcgttcatagcatgcccccgggagatagctgttttcacgttattgttagcgtgcacaaatggcagtttgatgacagttcgcctgattttttatgcaaaaaacgtaaagattttctacttccttcctgcagcaagcgtaaagtaagcaggcttattattttttggcaaggaaaccacgatgtttgatgtcactttgctgatcctgctcgggttagctgcgctgggctttatcagtcataacaccactgtcgccgtttcaattctggtgttaatcattgtccgcgtcacaccgttaagcaccttttttccgtggattgaaaaacaggggctaagtatcgggataatcattctgacgattggcgttatggcccccatcgccagcgggacgctaccgccctcaaccttgattcactcgtttctgaactggaaatcactggtggcgattgcagtaggcgtgattgtctcctggctgggtgggcgcggcgtgacgttaatgggcagccagccgcaactggtcgccgggctgctggtaggcactgttttaggcgtagcgctgtttcgcggcgtaccggttgggccgcttattgccgcgggtctggtttcgctgattgtggggaaacagtagttaatctcgcaatatatcggcctggcgtttgccccaggcctttcttaaacatagtaataaaggccgttgttgaatcataccccagcgtatgagcaactttctgtacagtatcgcctttcactaatccctgaagcgccataatcagctgtaactgctgacgccactggcgaaaactcaaccccgtctcttttactatcagtcgggcaagattgcgttcactcatcgcaaaaaagccagcccattgccccaatgccccccactcgacaggccctttcgccatcatctccaccatcgtgcggattttaggatgagaagaaacgggcaggtgcagctgttgttgtggctgctgagggagttcatcaaacaggacctgaattaatctgcgggtcattggctcagcacgctgagtcgtcgtcctgtttgccagggttaaaattaattcccggcataagggcgatattttcaatgtgcaacatgttgtcggcattgtcactgcgctgggttcgataaacagaaaacagagttcagcattagctgttacttgattgctatgttccaccccgcccggtatccaaaccgcatattgtggcggcaccatccacaaagcattttccaccgtacaggtaattgcaccatgtagcgccagtatcagctgtcctttgcggtgctgatgtacaggactggttaactcatccgttccggcgtgaatacaaaatgcgaccgcggcttcatggtgtcggtcgggttcatagccattgagattcaacctgtgcatcattttgtccgaacttagcgataatttgtcattttagcttgattcaacataacaataaaaacggtaaggtacagcctcgtttgtaacaatgagaagcatatgacctgttcaacttcattaagcggcaaaaacaggattgtccttatcgctggcattctgatgattgccacaacattacgcgtcacctttaccggcgcagcaccgttactggatacgattcgttccgcttactcgctgacgacagcgcaaaccggcttattgaccaccctgccattattggcctttgcgctaatctcacctttggctgccccggtagcgcgacgttttggtatggaacgtagcctgtttgccgcgttacttttgatctgtgctggtatcgcaattcgctctctcccttcgccttacttattatttggcggtacagcggtcattggcggtgggattgcattaggcaatgtcttactgccaggattaattaaacgcgatttccctcattccgtcgccagacttaccggcgcatattccctgacaatgggagctgcagcggcactgggatcggctatggtcgtgccgctggctttgaacggttttggctggcaaggcgcgttgctcatgctgatgtgttttcctctgctggctctttttttatggctgccacagtggcgaagtcaacaacatgcaaatttgagtacctcgcgcgccttacatactcggggtatctggcgttcaccgcttgcctggcaggtcacattgtttcttgggatcaactcactggtctattacgtgattattggctggcttccggcgatcctcatcagtcacggctatagcgaagcacaggcgggttcactgcatggtttgctgcaactagccacagcagcacccggtttgctgatcccacttttcttacatcatgtgaaagatcagcgtggtattgcagcgttcgttgccttgatgtgcgcagtgggcgcggttgggctctgctttatgccagcgcacgcgatcacctggactctgcttttcggttttggttccggcgcaacaatgatactggggttgacgttcattggtctgcgggctagttctgcgcatcaggcggcggcactctcggggatggcacaatccgtcgggtatttgttggcagcctgtgggccgccgctgatgggtaaaatacacgatgctaacggtaactggtctgtaccacttatgggtgttgccatactttcactactgatggcgattttcggactttgcgccgggagagacaaagaaattcgctaatatccggtgctatagtgacgtaacaaatcatgcgtgaaagggagaacaaacacgatgaatattcagtgcaaacgcgtttatgatccggctgaacagagcgatggttatcgcatactggtcgaccgcctctggccgcgcggtatcaaaaaaaccgatttagcccttgatgagtgggataaagaaatcacgccgtcaacggaactgcgcaaagcctttcacggcgaagtcgtcgattatgcaacctttcgcgagcaatatcttgcagaactggcgcaacacgagcaagaaggaaagcggctggcggacatcgccaaaaaacagccgctgaccctgctctactcagcaaaaaacaccacgcagaaccatgcgctggtgctggccgactggctacgtagcttgtgattttagtacagcatccggcggttatttttcaccagccggatggtcacgccgccacaatgcccattcatcaatcgtttcaccgcccggtaatttgcaattgttgctgaccccttgcgctgtctgcactggaatgagcgtcccgcccttctgctggcaatagaccgacgccggatttgccataccaatctgcggcggtttaggtgcttctggctgagaaggggttgaacaaccagccaggaccagcaagcaaggcagaacaaaactgataattttcatttattgatctcacatatttatccaagattagagtatcgcggtatcgttttgttttgcagcactatttttattacattcactcaaaacatattacgtcttgtttcatctttgttgatgatgttttatcatgcctgcaaagattaaataatcagcatttacccgccgtatcctggagttgttccgtgtcagatcagattatcgcccgcgtctcgcaatcccttgccaaagaacagtcactggaaagtctggtccgacagcttctggagatgctggaaatggtcactgatatggaatcaacctacctgaccaaagtggatgtcgaagcgcgcctgcagcatattatgtttgcccgtaacagccagaaaatgtacatcccggagaattttaccgtctcgtgggattactcgttatgcaaacgcgccattgatgaaaactgctttttcagcgatgaagtccccgaccgttggggtgactgtattgcggcacgcaatcttggcatcaccacatttctgagcacgccaattcacttaccggatggatcattctatggcacgctttgcgccgccagcagtgagaagcgccagtggagtgaacgcgcggaacaggttttacagttattcgccggactgattgcacaatatattcaaaaagaggcactggttgaacagctgcgcgaagccaatgctgcgctgattgcgcaatcgtataccgactcgttaaccgggctaccgaatcggcgggcgatttttgaaaatctgacgacactgttttccctcgcccggcatcttaaccataagataatgatcgcgtttatcgatctggataacttcaaattaatcaatgatcgttttggtcataatagtggcgatctgtttctcattcaggttggcgagcgccttaatacgctccagcaaaatggcgaagttattggtcgtctcggcggtgatgagtttttagttgtttcactaaacaacgagaatgcggatatttcgtcgctgcgagaacgcattcagcagcaaatacgtggagaatatcacttaggtgatgttgatttgtattatcccggtgccagtcttggcatagtagaagtcgatcctgaaacaaccgatgcagacagtgccctgcatgctgccgatattgcgatgtatcaggagaaaaaacacaaacagaaaacaccttttgtcgcgcatccagcgctacattcctgaggcgtattcacatccttttgattggtgataacatgcgaatcggtattatttttccggttgtaatcttcattacagcggtcgtatttttagcatggttttttattggcggctatgctgccccgggagcataaagatgaaaaaaacaacgattattatgatgggtgtggcgattattgtcgtactcggcactgagctgggatggtggtaacgtcacctctaaaaaatagcaaaggctgcctgtgtgcagcctttgtgcaatttaagcgttaacttttaatcttcctgtagataaatagcacgacaatcgcaccaataacggcaaccacgaagctgccaaaattgaagccatcgactttaccaaagccaaacagcgtgctgatccatccgccgactacggcaccgactatccccagcaggatagtcataaagaatccacctccatctttacctggcatgatccacttcgccagaataccggcaataagcccaaaaataatccatgacagaatgcccattgtttcctcacttatctgttttgcattagcgggttagtcgctgataaaaagcatagcacaacatcgggagggcaagatttgtgacgagcatcacggaggttttttttgcgatggcgcagaaattgcgccatcaacgatcagtgataattaccaaccacaaacatcatgttcgttttccgtgtcataagaacgtacggtattcaccagatcttttatcacttcagccgccacttctggcaccagcaaagtcatcggcgtctctgtttcataatcgacagaaacgccattgctgttattggtgacggtcacggtatacgttgctttgcccatgattcatttcccgttatgaatgactttccgttgttgcgcaccttccatcaggacttcaggagccacgaagaagtcaatgttgaaataagtatcgtcagtcatggcttcaatgttgtgccacttttctggagggaacaccgcaaactgccccgcttcgataaggatcacctgatcaggctctgcactgtgttcatcagcgtagccgagatatttgaccgccccatgcataacggaaaggcgtgggtaaacccccgggcgcgttcctttatcaagatgacgttcgaatattccggcaggtgcagtttgtttattccagaaaggcgttgagcgcgtatgaatataattctgtgggatttgaagcatccttttccctccttcggtgaatgcgctgaaaacggtttattccagccgtttcagggtacgcctgataatttgcattttaaataccatttattggttactttttagcaccatatcagcgaagaatcagggaggattatagatgggaagcccgcgacaacgcgggctgaaagcatcaggattgcagcgtcgccagtcgggcagcgaaacccacgaacatcaaaccaatcagtgagttgccaactttagccagtttctttttggtacgtatgtactgcgtgacaaaagcaccagatataatcaggaagctcaaatagcagaaactcaccagttccagcgtcgccgccagaataaagaatgaaattcccgtatgtggggcattaacatcgataaactgtacgaaaaacgacacatagaacaaaatggctttcggattagtcaggctcaaaattaacgcgcgtttaaaaatagcaccgtattggggctcatcggatttggcctcgctatttttacccttcagggtcgcgtaaagaattttactccccagatagagcaaataaaacgcaccaagataacgtacaatgttgaataatatcggggtggtcttaattaatgtcgccactccagcccatgccagaaacatcaataccgcatcgccaataaatacaccgcaggccgcaagataaccgcctttcataccgctactgacgctatttttgagtacaaacagggtatttggccctggcaccaacacaataaaaatggccccaaccagataggtccagtaattcagaaccccgtattcagcgaacacattaacctctttaattatctttcgatcatgcgcgattaaaggtgaatatgctaaccaatctgtagcggcttagaaaggagaaaatcaggttttaacctgatatcaacccgataattgaatcattaatcaggcatgctccagtgaaaaattcgggtagtgctcggcaaaatactggcgtaaaaattctaccgttatccgcactttcgctgacgtcgccagccttgaaacataaacggcccagacgttcgctggctggtaatattccggtagcacttgcactaaatgaccactggcaatgttttcgctaacatcccaccaggaacgcagagcaatcccctgcccatcgagacaccactgatggacaatttctccatgattagacgacagtgggccggtgactttaatcgcatgggggccttctttattgcgtaattgccagacaccaaaaggatgatcgcgctctttaatgaccaggcacggcaatgcagaaagatcggttaaatgtttcggcgcgccatgttgcgcaataaattccggcgacgcgcagagaatacggtaattggtcgccagtttgcgggcgattaaattaggggcgatgtcatcgccaatgcgaatatcgagatcgacaccttcattgaccaaatcgaccagtcggtcttccacatcaaaacgtaattccagttgcggatacgccttcgccagcgctaataacgccggagccaccacctgtcgtccaaaaccaaagctgctgataatacgcagcatcccctgcggcacctgacgcacgtcagaaagttcgtccatcatctgaccgacatcctgcaaaatccgctgcgcccattcataaatccgctctccttcttcggtaatggtgacgcggcgggtggtgcggtgtaacaacaccacgtttagcgtttgctccagcaaggcgatgcgcttgctgacgaacgccggtgaaacgcccagttcttccgccacggcggcaaaaccagcccggcgagccaccagcataaagacgcgcaaatcattcagcagcggtaaattattcatgattcgtgttttatgtttcaccagttacggggattaattccttttcagtcaattataggatggtgatgttgtcaattttgatggtcaggaagtgagaacccaatgatgaaaacgatgcgtattgctgcgatcccgggagacgggattggcaaagaagtccttcctgaagggattcgcgtgttacaggctgccgctgagcgctggggcttcgccttgagttttgagcaaatggagtgggcgagctgcgagtattacagccatcacggtaaaatgatgccggacgactggcatgagcaacttagccgtttcgacgccatctattttggtgccgtcggctggccggataccgttccggaccatatttcgttgtggggttcgctgctgaaatttcgtcgtgaattcgaccagtacgtcaacctgcgcccggttcgtctctttcctggcgttccctgcccgctggcgggaaaacagcctggcgacatcgatttttacgtggtcagggaaaacaccgaaggcgaatattcctcgctcggcggtagagtgaatgaaggtacagagcatgaagtcgtcattcaggaatcggtatttacccgccgtggtgtcgatcgcattttgcgttatgccttcgaacttgcgcaaagccgtccacgtaagacactaacttctgccactaaatcgaacggtttagccatcagcatgccgtactgggatgagcgagtggaagcaatggccgagaattacccggagatccgctgggacaagcagcatattgatattctctgcgcgcgttttgtgatgcagccggaacgattcgatgtggtggtggcgtccaatttgtttggcgatatcctttccgatcttggcccggcctgcaccggcaccattggcattgccccatccgccaacctgaatccggaacgcactttcccgtcgctcttcgagcctgtccacggttccgcgccggatatctacgggaaaaatattgctaaccctatcgccacgatttgggccggggcaatgatgctcgattttctcggcaatggcgatgagcgtttccagcaagcgcataacggtattctggcagcaattgaagaagtgattgctcacgggccgaaaacacctgatatgaaaggcaatgccaccacgccacaggttgccgacgcgatttgcaaaattattttgcgttaaggtcaaaccagtttatttgaaccgcgtcactgacgcggtttttttattcgttctttgcagtaaataacctgcgtcatttcaccttttattgtttccgtttcgtgttttatggctttccgtattcttaattgtttaatttatgtaacatgcaaattttgttacgcgtacgttaggttccgccgtacaggtattggttttgctggcaatgggactggtgatttatttagccaccagtaaatacggcaatattcgtcttggcgaaggaaaaccggaatacagcacgctctcctggctgtttatgtttatttgtgccggtttaggttcttctacgctttattggggggttgctgaatgggcctattattatcaaacacctggattaaatatcgcaccgcgttcacaacaggcactcgaatttagcgttccctactctttcttccactggggcatcagcgcctgggcaacttatacgctggcctcattaatcatggcttatcactttcatgtgcggaaaaacaaaggtctgagcctttccggcattattgctgctattaccggcgttcgcccgcaaggcccatggggaaaactggtcgatttgatgttcctgatcgccactgtcggcgcactgaccatttcccttgttgttaccgcagcaacctttacccgtgggctttccgcgctgaccggtttacccgataacttcaccgtgcaggcatttgtgatcctgctttccggcggcattttttgcctaagctcgtggattggtatcaacaacggtttgcaacgtctgagcaaaatggttggctggggcgcgttcctgctgccattactggtgctgattgtcggcccaaccgaatttattaccaacagcatcatcaatgccatcggcctgaccacgcaaaacttcctgcaaatgagcttattcaccgatccgcttggcgatggttcatttacccgcaactggaccgttttctactggctgtggtggatctcatacacccctggcgtagcaatgtttgtcacccgcgtttcccgcggtcgtaagattaaagaagttatctggggactgatcctcggcagcaccgtcggttgctggttcttctttggcgtaatggaaagctatgccattcatcagtttatcaatggcgtaatcaacgtcccacaggtgctggaaacactgggcggcgaaacagctgtacagcaagttctgatgtcgttgccagccggtaaattgttcctcgccgcatacctgggcgtgatgattattttccttgcctcgcatatggatgcagtggcctacaccatggcggcgaccagtacgcgtaatctccaggaaggtgacgatcctgaccgtgggctgcgtcttttctggtgcgtggtgatcactctgatcccgctttccatcttgtttaccggtgcttcgctggaaacgatgaaaaccaccgtcgtgctcacagcccttcccttcctcgtcattttactggtgaaagtcggcgggtttattcgctggctgaaacaggattacgccgacattccggctcatcaagttgaacattatctcccgcagacaccggttgaagccctggaaaaaacgccagtgctccctgcgggaaccgtattcaaaggcgacaactgagcgccatcatcctaacgataaaggtatccctatgagcaatctgagccctgactttgtactacccgaaaatttttgcgctaacccgcaagaggcgtggaccattcctgcccgtttttataccgatcagaacgcgtttgaacacgaaaaagagaacgtcttcgccaaaagctggatttgcgtcgctcacagcagcgaactggcgaatgccaatgattatgtgacgcgtgagatcattggcgaaagcatcgtgctggtacgcggtcgtgataaggttttgcgcgcgttctataacgtgtgtccgcaccgtggtcatcagttgttgagcggtgaaggaaaagcaaaaaatgtgattacctgcccgtatcacgcatgggcattcaaactcgatggcaacctggcccatgcacgtaactgcgaaaacgtcgccaatttcgatagcgacaaagcgcaactggttccggtgcgtctggaagaatatgccggattcgtcttcatcaacatggaccccaacgccaccagcgtagaagatcaattacccggcctgggcgcgaaagtgctggaagcctgcccggaagtccacgatctgaaactggcggcccgctttaccacccgcacgcctgccaactggaagaacattgtcgataactatctcgagtgctatcactgtggtccggcgcatccaggtttctccgactccgtacaggttgatcgttactggcacaccatgcacggtaactggacgctgcaatacggtttcgccaaaccgtccgaacagtcgtttaaatttgaagagggtacggatgcggcattccacggtttctggctgtggccgtgcacgatgctgaacgtcaccccgatcaaagggatgatgacggtcatttatgaattcccggtggattctgaaactaccctgcaaaactacgatatttacttcaccaatgaagagttaaccgacgagcaaaaatcgctgattgagtggtatcgcgatgtgttccgtccggaagatttacgtctggttgaaagcgtacagaaagggctgaaatcgcgtggctatcgtggtcaggggcgcatcatggccgacagtagcggtagtggcatttccgaacatggtatcgcccatttccataatctgctggcgcaggtgtttaaggactaatgacatcggcggcggtattttccgccgctgggctgatttttgatggagtacagcaatgtcagactatcaaatgtttgaagtacaggtgagccaggttgaaccccttaccgaacaggtgaaacgcttcacgctggtggcaaccgatggcaaaccattacctgcgtttaccggaggaagtcacgtcattgtgcagatgagcgatggtgataaccagtacagcaatgcgtattcactactgagttcgccgcatgacacctcttgttatcagattgccgttcggctggaggaaaactcgcgcggcggttcccgctttttgcatcagcaggtaaaagtgggcgatcggttaacgatttcaacgcctaataacctgtttgcgctaattccctcagccagaaagcatctgtttatcgcgggcggtattggtatcacccctttcctgtcgcacatggcagagctgcaacacagcgacgtcgactggcagctacattactgctcgcgaaatccagaaagttgcgcatttcgtgatgagctagtccagcatccgcaggctgagaaagtccatttgcatcattcatcaaccggaacacgactggaattagcgcgattattggcggatatcgaacctggcacacacgtttatacctgtggccccgaggcgctaattgaagcggtaagaagtgaagctgcgcgtctggacatcgccgccgatacgctgcactttgagcaatttgctatcgaagacaaaaccggcgatgcatttaccctggtgcttgcccgttccggaaaagagtttgtggtgccggaagagatgactattttgcaggttattgaaaataataaagccgcgaaagtggaatgtttatgtcgtgaaggggtatgcggaacctgcgaaacagcaatactggaaggtgaagctgaccatcgggatcaatattttagcgatgaagagcgtgccagccagcaaagtatgttgatctgttgttcgcgtgcgaagggtaaacgcctggtgttggatttgtagtttgccgaagccggatgtggcgctgagcgcgcccagtccggcttcggaagattttactgcggatattcctgcaataaattgtgtaatgcttccgccatcagctcaccacgccagccggaaatcagctccggcaaattgttctgcggtttcagtttccagtgccagttcagcagttggttgatttgccgacgcgatgccagcaattcggcgctgatcttatgcgtttcgctcacgtcagtaatcagcgacttaatcgctttaaacgctttacgataacccggcatgtccatcaggttaagcatcggctgcggtaaggcatcttccggcaatgtctgcgctttttccaccagcgctagcagcgttttaccgtgaaagcggatttcgctaccggataaacccaggctgtccagttcgcctaaacttcccggcatataacgcgctaccgaccacaaatgctcttcacgcacgacaaagttcaccgccagatcgcgctctcgcgccttgcgcagtcgccagtcggctaacagttgcagacaggccagttggcgtgtgcgtaattgccaggcattggtgatatcacgccaggcatcttccggcgcaacgacttcctgacgacgcatttgcatcaggcggcattcatccagcgccgcaggtagccagccggaggcctccgtttctaccataagcttggcggtgatcggtaacagataccagacatccgccgctgcgtattcacactgacgttcggtcagcggtctggccagccagtcggtgcgcgattcactcttgtccagcgtaacgccggaatactcttccaccatggaagcgaaaccccatgacatcgggcgtccgcagaaggcagcaaggatttgcgtgtcaatcaagggttgtggtaattcgccaaagacattgaggaacacttccagatcttcactgcctgcatggagaaattttgtgatggacggatcgcgcaggatcgctttcagcggtgaccagtcggtgatcccgagtggatcgattagcgccagatgctcgccatcgaaaagttgaatcaaccccagctgcgggtaataagtgcgcgtacgaacaaattcagtatccagggctatcgccggaaaggcacggacggcttcacacaaagaagccagcgcatcgtccgtggtaatcatttggtaattcaaattgttttctctttagtgggcgtcaaaaaaaacgccggattaaccggcgtctgacgactgacttaacgctcaggctttattgtccactttgccgcgcgcttcgtcacgtaattctcgtcgcaaaatttttccgacgttagatttcggtaactcatcacgaaactccaccagcttcggtactttgtatcccgtgagctgacggcggcaaaaagtcaccagtgactcttcggtaagcgatggatcttttttcactacgaagattttcaccgcttcaccactggagccggaaggtacgccaacagccgcgacttcctgtacgccaggatgctgcatgacgacatcttcaatctcgttgggatagacgttaaaaccggaaaccagaatcatgtcttttttacgatcgacaatgcgcaggaatccttcttcatccattaccgcgatgtcgccggtgtgtaaccagccatttttgatgatttcatcggtagcatcgggacgctgccagtaacccagcatcacctgcggtcctttgacacaaagctcacccggttgacctggtggtacttcattatcatcatcatccaccagtttggcttccgtcgacggcaccggcaaaccgatgctaccactatgataatcaatatcatatgggttaacgctgaccagcggcgcacactcggtaaggccatagccttccagcagatactgtccggtcagtttcacccaacgctctgccaccacttgctgcactggcatcccaccgcctgcggaaagatgcagactggagaaatccagctgctggaactctttattgttcagcaacgcattgaacaaggtgttaacgcccgtgatagcggtaaacggatatttcgctaactcttttaccaaccctggaatatcgcgcgggttagtgataagcaggttctgcccacccagttcgataaacagcaggcagttaatggtcagggcaaaaatgtgatacagcggcagcgccgtcaccaccagctctttgcccggatgcaacagcggaccataggtcgcgttaacctgttccaggttcgccagcatattgcggtgagtcagcatcgcgcctttcgccacaccagtggtgccgccggtgtattgcagaaaagctaaatcttccggcaccagttcgggtttgacgtactgcatccggtagccgttatgcagtgcgctacgaaatgaaatggcatctggcagatggtatttcggcaccaaacgcttgatgtatttaacaacgaaattgactaccgtgccttttgccgtagatagctgatcgcccatacgggtcagaattacgtgctgaacggcggttttatcaaccactttttccagtgtgtgagcaaagttagacacgataacaatcgccgatgcgccgctatcgttaagctgatgctcaagctcacgcggggtatacaacgggttaacgtttacgacgatcatcccggcacgcaaaatgccaaacagcgccaccggatattgcaataaattaggcatcatcaacgcaacgcgatcgcctttcttcagccccaacccttgttgcaaataagcggcaaacgcgcgactgcgttcttccagcttgcggaaggtcattacctcccccatattcacaaacgcaggttgatcggcgtagcgcgcgaccgactgctcaaacatatctaccagagattgataacggtcagggttgatctccgtcggaacgtccgcgggataacggttaagccaaaccttcttcaattcttcacctctaaaatgcgtgttcgtcgtcatcgcaaccccaaatgatatacatgccgttaacataatattaactcatcataccagcttgataattacccaacgaaaaggttgcgaagcgcgtcactatttatttttatctttaccgtaagaatgcagaaacagcggaccagccgctgtttctttttctttaaaaacaagcaattattcagttacaactgtttgtactctcgcggggccgggattataccagccccatccgccgtagccatagggccagccacgaccgccataaaaccatggatcaatcggctgaggcggcataatcacctgctgggttaaatgccaacgtttgtaacccgttacttgcatcaccataaatttatagggcgtattgccgattttgccgtcaaccgcaccagtgattggcccgactaccgtaaccagttgtccacggaaatccaccgggtccagaaaaccgttcacatcggcataaatgcgaccgcgagaaggttctcccagcgtcggtctggctccgctgtccagcggtacggtagcaatttccaggcgagttttcccttgctggttttgtaccgcaaccactttgccaccaaagcgtgcctcctgaccaacgtacagctgcggcgcactcatcacccgaactaaatcttgttgcggcgtgggactgctgcctttaatggcgtccggcacagtgacacaaccgctcagcattagcgcaaacgtacctgccagtatgcctttgataacattcttttgaaccgccatggtgcgactcctttttttctcagggcatactcttaagattcattctttgcccggaagtttcttccatgcgacgttgttacgtaaataaaccggttcggcatgttccaccgccaccgttttaccctcagcaaacatctgacacgcaatcggcagcatatcttcagcagcaggcagtaacacttcgccatcgcgcaaaaccagcccgctctctttaccgagatccggccaagcttgccagcccgtccctaccgtcacccattcgccggaaagctgttgcattcgttcatggacgatttcgggtttgagtacggcttcggtttcttcaccgtgccagataccgttttcatcacgctgatattcggcccagtaaacttcgcccattcgcgcgtcaatggctgccagcacgcgggttgcgccgtttttgcgccacgccccttgcgccatcgtcattagcgtggagacgccaatcatcggtaattccgcgccaagcgccagcccttgcgcgatgccaataccaatgcgcacgccagtaaagctaccggggccgcgcccgtaagccagagcgttaatatcagtcagggaagttccgctggtggtcaggatatcctgcaccatcggtaagattcgttgagtatgttcacgagggcaaagctcaaaatgagcgttgacagtaccgtcgttccacagggcgacagagcaggcctctgtcgcggtatcgatagccagaattcgcatgggtcttcgtgcttagatcaataaaaaggcgcgcatcataccatactccgtaacaaattacctggaggatggtatcgcaaggaaacgaaccgcacgggcaatgtcacgggtgcgtggcgcgggcggcagactggcgagaaacgtcgcgccgtaaggacgcatcaccagccgattgtcacaaatcaccagcacgccacgatcgtcggcgtcgcgaatcagtcgccctaccccctgtttgagagtaatgacggcatctggtagttgcacttcatcgaacgggtcgccaccgcgcaaacgacaatcttccatgcgcgcttttaacagtggatcatccggcgaggtaaacggcaatttgtcgataattaccaatgacaatgtatcgccacgcacgtccaccccttcccagaaactgctggttgccacaagaagcgcattaccggcgctgacaaattgctgcaacagttgccctttgctggtttccccctgcaacaatacaggaagcgtcatggtagcgcggaactgctcggccagatcgcgcatcatggcgtgcgaggtacaaagcataaaacaacgaccgttgttagcttcgatgatcggtcgcagcattgccgctaactggcgagcagaacctggctggttggtttgcggcagattgcgcagcacacagagtaacgcctggcggctgtaatcaaatgggctgggcaacagcaacgactcggcctgttcgatgccaagccgcgaggtgaaatgatgcagatcgtcgttcaccgacagcgttgctgaggtgaagatccagctaccgggtttttgcgccattaactctttgaatttatccgccacgctgagcggcgtgagagccagagtaaaatggcgcgaagtgcattcgtaccagtagctgtagcccggctgattgatctcttttagccgcttcagccgtgtgcgatacaacgtggcgcgctcaaatgccgcatccagcaaggcggaacgccccagtgacagtttcgccacgtcataacaaagttccagggtgtcatcgagcagtaaaaatgcccgctgaatttgcggattagctaacagctcacgcaggttaccgcgataacctggctcaccgagttgcagacgaaaatcctgcgcactctgggcaagacgatcagcgcacttttgtaactgctgggtgtcttttaattcggtgcggtaggcgatggtgatgtcttttgccaggtcgagcagttgtcgactggagagtgactgaccaaaatactggctggcaatgtccggtagctggtgggcttcgtcgaagatcatgacgtccgcttccgggatcagttcgccaaatccactctctttaaccaccatatccgccagaaagagatgatggtttaccaccaccacatcggcgtccatcgcttttttacgtgctttgaccacaaagcaatctttatacatcgggcagtcgctgccaagacagttgtcgttggtgctggtgaccagcggccacgcctgtgaatcttccgccacgctgacgcaggtgctgatatcaccatcgactgtttgattagaccaggagcgcagcaggatcacatcgcttaagatttgtaccggcagatcgccccccgccagcgcctgctgttcgagacgttcgaggcagaggtagtttgagcgccctttcagcagcgccacgttgcccgtatatttcaatgcctttgagactgttggcaaatcgcggctgtagagctgatcctgcaacgcttttgagccggtcgagataatgactttctttttcgcccgcagcgcaggagccaggtaagcgtaggttttgcccgtaccggttcctgcttccaccaccagcggctggcctttttctatcgcctgggtgacggctaccgccatctgtcgctgtggttctcgcggcttaaagcctggtatcgctttcgccagctgaccgtctggtgcaaaatcgtccgtcacactaccccctgttgatttgaacagggattatgtcaggatgagggcgctttcgccagttgaagtggtgacggcgacctcacattgtggcagtctttgcagcacgaaaatggaagtataatgaggacaaaatgatgactatcgttcgtatcgatgctgaagcccgctggtctgatgtagtaatccacaacaacacgctctactacactggtgtaccggaaaacctcgacgccgatgcctttgagcaaaccgccaacacgctggcacagattgacgccgtgctggaaaaacagggcagcaataaatcgagcattctggatgccaccattttcctggccgataaaaacgacttcgcggcgatgaataaagcgtgggatgcttgggttgtcgcgggtcatgcgccggtgcgctgcacggtacaagcgggtttgatgaacccgaagtataaagttgaaattaagattgtggctgcggtgtaagctttatcgaagcaaaataagtcagacgataatttatcgataatactggtcggttttacataaatcgaccagagaataagatattactgttgatgcttctgctaattcattatttatatttataatttcaattttatctataaaactaactatataaataaacataaacatgccgttgtgttcgccctttgattagcaactctggttttctttcttagctgaacaatctggttatagcgtgcggactgaccgttaaatttctccatcttactggataacacaccatgagctgctacctttaaaacacctgaatgtcaacaggttaactcgtgccatatcgttataatccctttgatattagatgcaaattaaggtcatatatagccttatcgataacatggttaattttaaggataagaatatgcctgctgtaatagataaagccctggatttcattggtgccatggatgtatcagcgccaacaccaagttcgatgaatgaaagcacggcgaagggaatctttaaatatttaaaagaactgggagtacccgcgagtgccgctgatattacggcgcgagctgaccaggaaggctggaaccctgggttcacggaaaaaatggttggatgggcaaaaaaaatggagacaggtgaacgttctgtgattaaaaatcctgaatacttttcaacatatatgcaggaagaactaaaagcactggtctgagttaaatttatatcagcataaatgggtcaggacgcttttaatcacatataaaaagcgtcctttttctcacaatcaaatgatcatcggcttctataacgaaatcgatacggattagtgtgttactcgtcttcatcctcaaaacgcgccacgattcgctcgccggagtggttggcacgcagctcttctgccaccagcgcgattgcctggccgctgctcatcccttgtgccatcagttcctggatccgctcgacagctttttgctgctgttcatgggtgagtgaaggtaaacctgcaaacattgttaactcctgctaaattgttggcgctaattatttcatgctacccggcacatagccagtagagtcaggactgatgaagacgttatctcccgctgtgattactttactctggcgtcaggacgccgctgaattttatttctcccgcttaagccacctgccgtgggcgatgcttttacactccggctatgccgatcatccgtatagccgctttgatattgtggtcgccgagccgatttgcactttaaccactttcggtaaagaaaccgttgttagtgaaagcgaaaaacgcacaacgaccactgatgacccgctacaggtgctccagcaggtgctggatcgcgcagacattcgcccaacgcataacgaagatttgccatttcagggcggcgcactggggttgtttggctacgatctgggccgccgttttgagtcactgccagaaattgcggaacaagatatcgttctgccggatatggcagtgggtatctacgattgggcgctcattgtcgaccaccagcgtcatacagtttctttgctgagtcataatgatgtcaatgcccgtcgggcctggctggaaagccagcaattctcgccgcaggaagatttcacgctcacttccgactggcaatccaatatgacccgcgagcagtacggcgaaaaatttcgccaggtacaggaatatctgcacagcggtgattgctatcaggtgaatctcgcccaacgttttcatgcgacctattctggcgatgaatggcaggcattccttcagcttaatcaggccaaccgcgcgccatttagcgcttttttacgtcttgaacagggtgcaattttaagcctttcgccagagcggtttattctttgtgataatagtgaaatccagacccgcccgattaaaggcacgctaccacgcctgcccgatcctcaggaagatagcaaacaagcagtaaaactggcgaactcagcgaaagatcgtgccgaaaatctgatgattgtcgatttaatgcgtaatgatatcggtcgtgttgccgtagcaggttcggtaaaagtaccagagctgttcgtggtggaacccttccctgccgtgcatcatctggtcagcaccataacggcgcaactaccagaacagttacacgccagcgatctgctgcgcgcagcttttcctggtggctcaataaccggggctccgaaagtacgggctatggaaattatcgacgaactggaaccgcagcgacgcaatgcctggtgcggcagcattggctatttgagcttttgcggcaacatggataccagtattactatccgcacgctgactgccattaacggacaaattttctgctctgcgggcggtggaattgtcgccgatagccaggaagaagcggaatatcaggaaacttttgataaagttaatcgtatcctgaagcaactggagaagtaagacgtggaataccgtagcctgacgcttgatgattttttatcgcgctttcaacttttgcgcccgcaaattaaccgggaaaccctaaatcatcgtcaggctgctgtgttaatccccatcgtccgtcgaccgcaaccggggttgttgctgactcagcgttcgattcatctgcgtaaacacgctggacaagtggcattccctggaggtgcagtcgatgacacggacgcatcagctatcgccgccgcgctgcgcgaagctgaagaagaggtcgctataccgccttccgccgttgaagttatcggcgtgctgccgcccgtcgatagcgtcactggctaccaggtaaccccagtggtcggcattatcccgcccgatctgccgtatcgcgccagtgaagatgaagtctcggcggtgtttgaaatgccgctcgcccaggcattacatctgggtcgttatcaccctttagatatctaccgccgtggtgattcacatcgggtatggctgtcctggtacgaacagtattttgtatggggaatgaccgcaggcataattcgtgagctggcgctgcaaattggtgtgaaaccctgactatacttatctttacatctacaaaacactacttgagacaatcatcgcaatattagttaaatcgcggtttttgattagtttaattcatgtgaatagttaagccagtcgccgcgttccctcttacactatgcgctgttattagttcgttactggaagtccagtcaccttgtcaggagtattatcgtgattagtctattcgacatgtttaaggtggggattggtccctcatcttcccataccgtagggcctatgaaggcaggtaaacagttcgtcgatgatctggtcgaaaaaggcttactggatagcgttactcgcgttgccgtggacgtttatggttcactgtcgctgacgggtaaaggccaccacaccgatatcgccattattatgggtcttgcaggtaacgaacctgccaccgtggatatcgacagtattcccggttttattcgcgacgtagaagagcgcgaacgtctgctgctggcacagggacggcatgaagtggatttcccgcgcgacaacgggatgcgttttcataacggcaacctgccgctgcatgaaaacggtatgcaaatccacgcctataacggcgatgaagtcgtctacagcaaaacttattattccatcggcggcggttttatcgtcgatgaagaacactttggtcaggatgctgccaacgaagtaagcgtgccgtatccgttcaaatctgccaccgaactgctcgcgtactgtaatgaaaccggctattcgctgtctggtctcgctatgcagaacgaactggcgctgcacagcaagaaagagatcgacgagtatttcgcgcatgtctggcaaaccatgcaggcatgtatcgatcgcgggatgaacaccgaaggtgtactgccaggcccgctgcgcgtgccacgtcgtgcgtctgccctgcgccggatgctggtttccagcgataaactgtctaacgatccgatgaatgtcattgactgggtaaacatgtttgcgctggcagttaacgaagaaaacgccgccggtggtcgtgtggtaactgcgccaaccaacggtgcctgcggtatcgttccggcagtgctggcttactatgaccactttattgaatcggtcagcccggacatctatacccgttactttatggcagcgggcgcgattggtgcattgtataaaatgaacgcctctatttccggtgcggaagttggttgccagggcgaagtgggtgttgcctgttcaatggctgctgcgggtcttgcagaactgctgggcggtagcccggaacaggtttgcgtggcggcggaaattggcatggaacacaaccttggtttaacctgcgacccggttgcagggcaggttcaggtgccgtgcattgagcgtaatgccattgcctctgtgaaggcgattaacgccgcgcggatggctctgcgccgcaccagtgcaccgcgcgtctcgctggataaggtcatcgaaacgatgtacgaaaccggtaaggacatgaacgccaaataccgcgaaacctcacgcggtggtctggcaatcaaagtccagtgtgactaatacttcttactcgcccatctgcaacggatgggcgaatttatacccgctttctcgtctgctgtaatattccccactacacttccactgttgcgtcaggcgtttgtcgccatacgcttacagggtggcccgcatgcaaaaagcacaacggatcattaaaacctatcgtcgtaatcgaatgattgtttgtacgatttgcgcactcgttacgctcgcttcgaccctgagcgtgcgatttatttcacagcgtaacttaaatcaacaacgggtagtacaattcgccaatcacgctgtagaggaattagataaagtactgcttcccctacaggcaggtagcgaagtcttgcttccgctgattggtctgccctgctctgtcgcccatttgccattacgtaaacaggcggcaaaactccaaactgtgcgatccattggcctggtgcaagacggcacactttattgctccagcatttttggttatcgcaatgtgcccgtcgtggacattctggctgaacttcctgcaccgcaaccacttttacgcctgacgatcgaccgtgccctgattaaaggcagtccggttttgattcaatggacgcctgcagcgggcagtagcaatgctggggtcatggagatgattaacatcgacttactgacggcaatgctgcttgagccacaactgccgcaaatcagtagcgccagcctgacggtggacaaacggcatttgctctatggtaatgggctggtagattcccttccgcaacctgaagacaatgaaaactatcaggtttcttcgcaacgctttccttttaccattaacgttaatggtccgggggctacggcgctggcatggcactatcttccaacacaattaccgctggcggtgctgctaagtttactggtgggctacatcgcctggctggcgaccgcttaccgaatgagcttttcccgcgaaatcaatctgggcctggcgcaacatgagttcgaattgttctgtcagcctttgcttaatgcgcgcagccagcaatgtattggtgtagagattttgctgcgctggaacaatccgcgtcagggctggatttcaccggatgtgtttattcctatcgcggaagaacatcatttaattgtgccactgacccgctatgtgatggcagaaaccattcgtcagcgccatgttttcccgatgagtagtcagtttcatgttggcattaacgtcgcacccagccattttcgccgtggtgtgctgataaaagatctcaatcagtactggtttagcgctcacccgattcagcaactgatcctcgaaatcaccgaacgcgatgccttactggatgttgattatcggattgcccgcgagctgcatcgtaaaaacgtcaaactggcgattgatgacttcggcaccggcaacagctcgttttcctggcttgaaacattacgtcctgacgtgctgaaaattgataagtcatttaccgcagctataggttctgacgcggttaactcgacggtgaccgatatcatcatcgcgctggggcaaagactgaatattgaactggtggcggagggcgtggaaacgcaagaacaggcgaagtatttgcgccgtcatggcgtgcatattttgcaagggtatttgtacgcacagccgatgccgctacgtgattttcccaaatggctggcgggcagccaaccgccgcccgcccggcataatggacatatcacgcccattatgccgttacgttaacgcttactcatcttcatcgtgcgccggttgctctttaacaatgcgaaccagatcaacacgataatcattggcttcaatgatggtgatatgcagtggccctacatcaatcacatcgcccacacggggaatgtgaccatttgccgagatcacgaggcccgcgaccgtcgcgatatcatcgtcatcggcaaggtgctcaacatcaagcgcctgctgcaaggcatgcaaatctgtaccgccttttaccagccagccgtcaccatcagtaatgatttccggcgtttcgtcagcgtccgggaattcacccgcaatggcttccagcacatccagcggcgtgaccagaccttgtaccacaccaaactcgttggtcacgataacaaagctcccgcgagcacgacgcagcacgcccaacaggttgatcggatcgagggtttccgggacgataatcgccggagacgccgaagcaatcgccgccacatcaacgccctcttccagcgccaccagcagttctttagcacgtacaataccgatgatttcatccagttcaccgcgacataccgggaacagactgtgcggtgaagagagcagttgctcgcggatttcatcgaccccgagattagcgtcaacccagcttatttcaccgcgcggcgtcatgatcccgcgcagagaacgcgacgccagcgtcagtacgccgttaatcatgtaacgttcttcttcggcaaatgcaccttccgggatcggcatcggcatcgggttatcggcatcgtgctgaacattggcctgacgtttcccgcccatcaaacgcaggatggcatcggcagtacgcgctcgcagcggcaaagtcgactggtggcgaataaagttgcgacgcgcaatctggttaaacacttcgatgatgatcgagaagccaatcgcggcatacaggtaacctttcggaatgtggaaaccgaaaccttctgccaccagactcagaccaatcattaacaggaagctcagacagagcaccaccaccgtggggtgctggttaacgaatcgcgtcagcggtttggatgccagcaacataaccgccatcgcaatcactaccgccgccatcatcaccggcagatggttaaccatccctactgcagtaattaccgcatccaacgagaagacggcgtcaaggatgacaatctgtgtgacgaccacccagaaactggcgtagcctttaccgtggccggaatcatgatcgcggttttccagccgttcatgcagttcggttgttgctttgaacagcaagaatatccccccgaacaacataatcaggtcgcgtccggagaaggagaaatccatgacggtaaatagcggtttggtcagcgtgaccatccatgaaatcagcgacagcagccccagacgcataatcagcgccagtgataaccccagcaaacgcgctttatcgcgttgttttggcggcagtttgtcagcaagaatggcgatgaagaccaggttatcgatacccagcacaatttcgagaacaacaagcgtgagtagccccgcccaaattgaggggtccattaagaattccatgacaagctcctgcttaaggaatagctattcgacgccagaaataatgcaggcgtaacgacaaaatgcaaacgaaaggtgcggcatagagtgccagaaaggcaggcgttaaaaggcctgatgctgaaatgacgtcggtgacgatccatactgcgggctactgccctatactccatggttgttaaacgggagttaaacatatcagagacgcctctgatttggcaaagatttaccttcctttgcaaacgaatgtgacaaggatattttacctttcgaaatttctgctaatcgaaagttaaattacggatcttcatcacataaaataattttttcgatatctaaaataaatcgcgaaacgcaggggtttttggttgtagcccttatctgaatcgattcgattgtggacgacgattcaaaaatacatctggcacgttgaggtgttaacgataataaaggaggtagcaagtgaccattgctattgttataggcacacatggttgggctgcagagcagttgcttaaaacggcagaaatgctgttaggcgagcaggaaaacgtcggctggatcgatttcgttccaggtgaaaatgccgaaacgctgattgaaaagtacaacgctcagttggcaaaactcgacaccactaaaggcgtgctgtttctcgttgatacatggggaggcagcccgttcaatgctgccagccgcattgtcgtcgacaaagagcattatgaagtcattgcaggcgttaacattccaatgctcgtggaaacgttaatggcccgtgatgatgacccaagctttgatgaactggtggcactggcagtagaaacaggccgtgaaggcgtgaaagcactgaaagccaaaccggttgaaaaagccgcgccagcacccgctgccgcagcaccaaaagcggctccaactccggcaaaaccaatggggccaaacgactacatggttattggccttgcgcgtatcgacgaccgtctgattcacggtcaggtcgccacccgctggaccaaagaaaccaatgtctcccgtattattgttgttagtgatgaagtggctgcggataccgttcgtaagacactgctcacccaggttgcacctccgggcgtaacagcacacgtagttgatgttgccaaaatgattcgcgtctacaacaacccgaaatatgctggcgaacgcgtaatgctgttatttaccaacccaacagatgtagagcgtctcgttgaaggcggcgtgaaaatcacctctgttaacgtcggtggtatggcattccgtcagggtaaaacccaggtgaataacgcggtttcggttgatgaaaaagatatcgaggcgttcaagaaactgaatgcgcgcggtattgagctggaagtccgtaaggtttccaccgatccgaaactgaaaatgatggatctgatcagcaaaatcgataagtaacgtattgtgttgattatcactcagttttcacacttaagtcttacgtaaacaggagaagtacaatggagattaccactcttcaaattgtgctggtatttatcgtagcctgtatcgcaggtatgggatcaatcctcgatgaatttcagtttcaccgtccgctaatcgcgtgtaccctggtgggtatcgttcttggggatatgaaaaccggtattattatcggtggtacgctggaaatgatcgcgctgggctggatgaacatcggtgctgcagttgcgcctgacgccgctctggcttctatcatttctaccattctggttatcgcaggtcatcagagcattggtgcaggtatcgcactggcaatccctctggccgctgcgggccaggtactgaccatcatcgttcgtactattaccgttgctttccagcacgctgcggataaggctgctgataacggcaacctgacagcgatttcctggatccacgtttcttctctgttcctgcaagcaatgcgtgtggctattccggccgtcatcgttgcgctgtctgttggtaccagcgaagtacagaacatgctgaatgcgattccggaagtggtgaccaatggtctgaatatcgccggtggcatgatcgtggtggttggttatgcgatggttatcaacatgatgcgtgctggctacctgatgccgttcttctacctcggcttcgtaaccgcagcattcaccaactttaacctggttgctctgggtgtgattggtactgttatggcagtgctctacatccaacttagcccgaaatacaaccgcgtagccggtgcgcctgctcaggcagctggtaacaacgatctcgataacgaactggactaacaggtgagcgaaatggttgatacaactcaaactaccaccgagaaaaaactcactcaaagtgatattcgtggcgtcttcctgcgttctaacctcttccagggttcatggaacttcgaacgtatgcaggcactgggtttctgcttctctatggtaccggcaattcgtcgcctctaccctgagaacaacgaagctcgtaaacaagctattcgccgtcacctggagttctttaacacccagccgttcgtggctgcgccgattctcggcgtaaccctggcgctggaagaacagcgtgctaatggcgcagagatcgacgacggtgctatcaacggtatcaaagtcggtttgatggggccactggctggtgtaggcgacccgatcttctggggaaccgtacgtccggtatttgcagcactgggtgccggtatcgcgatgagcggcagcctgttaggtccgctgctgttcttcatcctgtttaacctggtgcgtctggcaacccgttactacggcgtagcgtatggttactccaaaggtatcgatatcgttaaagatatgggtggtggcttcctgcaaaaactgacggaaggggcgtctatcctcggcctgtttgtcatgggggcattggttaacaagtggacacatgtcaacatcccgctggttgtctctcgcattactgaccagacgggcaaagaacacgttactactgtccagactattctggaccagttaatgccaggcctggtaccactgctgctgacctttgcttgtatgtggctactgcgcaaaaaagttaacccgctgtggatcatcgttggcttcttcgtcatcggtatcgctggttacgcttgcggcctgctgggactgtaagactgttgtacactaccggggccttttggccccgtttttttatctggaggattaatgacaatcacggacctggtactgattcttttcatcgccgcactcctggccttcgcgatctacgatcagttcatcatgccccgccgtaacggccccaccctgctggcaattcctttgctccggcgtggtcgcatcgatagcgttatcttcgtcggattgattgtcattcttatctataacaacgtcacgaatcatggtgcgttaataacgacatggttattaagcgcactggctctgatgggtttttatatattctggatccgcgttccgaagatcatctttaaacaaaaaggttttttcttcgccaatgtctggattgaatatagccgaatcaaagcgatgaacttgtcggaagatggcgtgttggtgatgcaattagaacagcgtcggctgttaatccgcgttcgaaatatcgacgatctggaaaaaatttataagcttctcgtttcaactcaataagttatgaatttagccaaagctatgtttagtgtatttttaataatcagacatagcttaggctatattacctcttcccttatttgttatttattttaacgtttcattgatatataaatccaaatgaaaatcgttatcaataaagcaatgaaataatatattccaacagttgttttatattctcaaaatatgttaaggttgcgccctcatttggggagtagccgatttccagattccggaaatgtacgtgtcaacatactcgttgcaaaacgtggcacgtacggactgaatactttcagtcaggcgagaccatatgcacatcaatcgctatgcctgcatgaacgcgaaaaccatcacggcttgttgttcatgtatgcatgtttgctgggggcgatgatgtgttttatggataccccggtcaggacattgtcatgaatatcactgctactgttcttcttgcgtttggtatgtcgatggatgcatttgctgcatcaatcggtaaaggtgccaccctccataaaccgaaattttctgaagcattgcgaaccggccttatttttggtgccgtcgaaaccctgacgccgctgatcggctggggaatgggcatgttagccagccggtttgtccttgaatggaaccactggattgcgtttgtgctgctgatattcctcggcgggcgaatgattattgagggttttcgtggcgcagatgatgaagatgaagagccgcgccgtcgacacggtttctggctactggtaaccaccgcgattgccaccagcctggatgccatggctgtgggtgttggtcttgctttcctgcaggtcaacattatcgcgaccgcattggccattggttgtgcaaccttgattatgtcaacattagggatgatggttggtcgctttatcggctcaattattgggaaaaaagcggaaattctcggcgggctggtgctgatcggcatcggcgtccagatcctctggacgcacttccacggttaataagaacgctgccagaggtgaatattaaagtccgtctggcagtcgaacacttcttttgctgccagtgtttgccagacttctggcttcgcacgccaggcaaacggcgtcatctgcaataatgcgacggcttcatcaccgcgaagacgcatcggataacacaactccgcactctgctgtaatgtaaaaccttccagttgttctgcatgaggtgcatgaagatgtacttcattgtaaatcagccccttcagctccatcaaatgtcgcggtcccggcgtggcagtaatgacccagccgccgggcttcactactcgtgctaattcttctgctttacacggcgcgtaaatacgtattatggcgtccatactggtatcggaaaacggcaaacggtggctggaagcgacacaaaaagtgacctgcggatagcgtttcgccgccgcttttatcgctaccttcgaaacatccagaccaaacgtggtgatttcgggcaacgcatcggcaaatgcgtgtgtgtaatacccttcaccacagccaatatccagcaccgccgtggccttatcatcaagccgttccctcagttgggcgacaattgcatcacgcagcggctgataatgtccggcatctaagaatgcgcggcgtgcttgcatcatttccgcgctgtcgcccggatcacgagaccgtttatgctgaacgggcagcagattgacatacccttctttcgccatatcaaactgatgtcgctggggacagatatagctgtttttttcacgcgaaagaggctgatggcaaagtggacaggaaaaagacatgacaactccggcaggatactaaaggccgcaagtgtaacgcgaatcacgcggcgggcaaatatccgaacgccaggagcgaagataaagcatagtaaaaagcctcgcattcgacgaggctttatagcgagattgaagcgtattcacacttcagatcagtggattcgatcagatagctgttacgttaacagctgccggacctttctggccgtcctgaatttcgaactcaacgttctgaccttcagccagagttttgaagccattaccctggatagcggagaagtgtacgaacacatctttgctgccatcagccggagtaatgaagccaaaacctttagactcgttgaaccacttaacctgacctttaatctttgccatttgaaaaattccttagattgttttcttcgcccgcaggcataacatagataaaactgacacattactgcatgaggcaccaatataaggctcggcagagaagcggtattcaacgtcaacgtgtttactcaggacttctttactgaaaatgccacacataaacagaactgtacctcgtttaacccgaaatctgttatcacatacaacgttaattatggcaagccatttttaaacatgtctcgatcagacgcacaaatctcgatacgtcttccactttttttgcacacttatgcaacggaatacgcgccgatatatcattgtgcttaaccttgccagttcaggcagatacttaaactggcgtattttctaacatagttcaataagttcagttgttccaggccagtgggagaagttattacatagtgcgtgcaatatcacattttttgctatgcaatgaataaaaagttatatcactttttctcataaaacagtcagttaacggctattaattaccctaaagagaagtcaatccccaaagggattgtaaatttaaaataagaaaaattgatgaatgagcaaaaaaatcaagagagaaacgtttcgctaataaataataccacgcttaatcacaaatccgatgtaaacatcctaataaattaatggggtaaatatctttttctgatatcccgttacgcaaataaataatatgataattatttgaagtcagaccagagttttaatttgaagcagttgcaccatgacagtgcgtataatcaggatgaattgagtaacccttcaacgacggggttactcaagattgaggaaggattatcgttcggcgaccagacgaataatatcttcgtcttcaaccgatttttgactctcaacggtctttttatctgctttctctggttcgtttgcttcgcacaaacgacgtaacagtgcattttgacgtttttgctgatccagcaacgcctcaagcagttcaatctgttcgttagtccgtgaactggcacgattgataaaaaaccacaagatgagcccgataagaagaaccaccaccgatacaaccaaagacgcaatgttcatcacgcctgaatttacaacttcgttcatttcaccacctctgagtagaggcgctattctaccactgctggagaggaagaaaatctagtgctgaaaaaatgatatcaccacgggataaactggttaatggcacaaattccgctgaaaaattgtacatcctgatcgcacatcatgttgaatacctgcgcccaaagcagcaagcaagccaacaccacgacaaccagaacgacccatcgaaactttttcactccaatctccgtttcacctaccttatgtcattaaactagcatgcgttagttaaacagcgcctaactatgtcgatattcgtgctttttcggaatgagtcgcttgcttcagcgcatattgccgctacgattaagcgaacataaaaagagaagaggttgtaatgcgattcatcattcgcacagttatgctgatagcactggtatggataggattattactcagcggatatggcgttttgattggaagcaaagagaatgccgcaggattaggtttgcaatgtacctatctgactgccagaggcaccagcacggtacaatacttgcacactaaaagtggttttttggggataacagattgcccgctgttacgcaaaagcaatatcgtggtcgataatggttaagggcaataaataaccagattctcactcctgagtaaaatactcttatagcaagcgcgtttaatataacgccaccttcaactttatttttctcatgctaaataaagaacctgtctgtttgatattccgacaggttcttactctcatcagaacggatagtcgtgataacccatttgggcagaaattttgcgcgctgcggtatgcaacattgcgacatattcctgtaaacgctcttcagagaaacgcaacgtcgggaaggagatgctcaaaccggcaatgaccacgccaaagcgatcaaataccggtaccgcaatgcatcgcagcccttcttcctgctcttcattatcttcgccatacccctgctcgcgcacctggtccagaacgggtaataacgcttctgtactggtgatggtccgctcggtactgcgtttatactccacgccctcaagaatttgcttcacttcatcgcgatcgcgccatgccagcagtaccttaccaatcgcggtgctgtacagcggattacgacgcccaatccgtgaatacatgcgcaaattgtacatagagtcaattttgtgaatgtaaacaatactgtcttcgtccagtgcgccgaggtggatagtttctttggtcaggcgggagagctcacgcatctggatatctgcgctacgaattaaatcgacgttttgtaacgcgcgagcgcccagttcaaacaatttcagggtcagggaatatttctccgactccccttcctgcgccacataacctaaggttttcatggtctgtaaaaagcgataaacggtgctttttgacatcatgacgcgctgcgacagctcggttatccctatttcgcgctcttcacccagcgcctgcaaaatgccaaaaacttttagcacggaagatacagaatcaggctgtttatccagatctgcgttagccatttatcacctcattgcgagtgttttataaaaatcagaactgttttttattataatttcgcaccagggtggtcgcaatccatcttttgccggttagttacaattctgcgacatccaccgtgaatatcagtgctagaatcatacccctgttgattattcaccaaagatataaaattcctatgccaaaagttcaggccgacggcctgccattgccccagcgatacggtgcgatattaaccattgtgattggtatttcgatggccgtccttgacggcgcaatcgccaacgtcgccctgccaacaatcgccacggaccttcatgccacgccagccagttccatctgggtagtgaacgcctatcaaatcgccattgtcatctccctgctctcgttttcgtttctgggcgatatgtttggctatcgacgtatttataaatgcggtctggtcgtttttctgttgtcttcactgttctgcgccctttctgattcgctgcaaatgctcacccttgcgcgtgtcatacaaggtttcggcggtgcagcgttgatgagcgttaataccgcacttatccgcctgatctatccacaacgttttctgggtagagggatgggcataaactcgtttattgttgccgtctcttctgctgccgggccgacaattgctgcagcaatcctctccatcgcatcctggaaatggttatttttaatcaacgtaccgttaggtattatcgccctgcttctggcgatgcgttttctgccacccaatggttctcgcgccagtaaaccccgtttcgacctgcccagcgccgtgatgaacgcgttaaccttcggcctgcttatcactgcgttgagtggtttcgctcaggggcaatcgctgacgttaattgctgcggaactggtggtaatggttgttgttggtattttctttattcgccgccagctttctcttcccgtaccgctgctaccggtggatttactgcgtatcccgctgttttcactttctatttgcacatctgtttgctctttctgcgcacaaatgctggcaatggtttccctgcccttttacctgcaaaccgtgctcgggcgtagtgaagtcgaaacaggtttacttctgacaccgtggccgttagcaacgatggtgatggctccgctggcaggctatttgattgaacgcgtacatgcaggattgctgggggctttagggttgttcatcatggctgcggggcttttttccctggttctgctgcccgcgtcacctgcggatatcaatattatctggccgatgatcttatgtggtgctggatttggcttattccagtcacccaataaccacaccattattacctccgcgcctcgcgaacgtagcggtggagccagtggcatgttaggaacggctcgtctactgggtcagagtagcggcgcggcgctggtggcgctgatgctaaatcagtttggagataatggtacacacgtctcgctgatggctgcggctattctggcagtgattgctgcctgtgtcagtggtttacgtatcactcagccacgatccagggcataaaaaaagcgcgtcgatcaggacgcgctttttagtatttacttcatattacttcaggtattcacccgtacgcagagcttcaattcgtttatccagcggcgggtgggtcatgaacaactcactgagcgatttcgacttaccgttaatgcagagagccatcatgctggttgcttcttgcggttcatagctggttttcaggcgctgcagcgcggcaatcattttctcgcgaccaaccagttttgccgaaccggcatcagcatggaattcacgatgacgcgagaaccacatggtgataatgctcgccagaataccaaacaccagttccagaaccgttgcaaccgcaaagtagatcagcgggttgccgttgctctcttcaccttcatcacgatttccgcccataaaacccgcggcaagctgcgccagaatacgggaaataaagataacgaaggtgttcaccacgccctgaatcagcgtcatggtgaccatatcaccattggcgatgtggctgatttcgtgagcaattaccgcctcggcttcatccgggctcatgttctgcagcaaaccggtgctgacagcaaccagagaggcatcacggcgcgcaccggttgcaaaagcgttgatgtccggcgcatggtagatagccacttgcggcatagcgatccccgcctgacgagcctgggttgctacagtattgaccagccaacgttccctttcgttacgcggttgctcgatcacttccccgccaacagatcgtaatgccatccatttggacatcagaagcgaaacgaaggaaccaccaaaaccgaacagcaaggccatgatcatcagcccctgaacgctgctcgactgtatccctgtcaggctcagtaccagcccgaaaacgaccattacggccaggttcgttagcaggaagagcgcgattcgcatcataattttctttttacctcagtttaacaaaacgcaatatgcgatacccacatcgtatgggttacgcgactattttcaagtctggatagtgcgtaagtcaccagaaagacacaactttacattttgtagcatctgatttacggcatcttgtcgctgttaaaaaatcaggcacaatttcttgtgcctgattgatattacttgacgggagcgggttgttccgcgggtctggctttttcaagcttcgccagatcgagtgcgatattcaccgtctcatccagataaggatccggctcctggtaatctttcggtagatcatccagtttcttcaactccggtttaccttcgcgtttaaagcgttcgttcaaacgcgccagacgcgtcgcatcatcttcattattctctttctcacgcacagcgtaattcagagaaacgatattgcgcttgtccttcatagcgttgaagcgcgcgatatccttcatgatgttctggaactcaggatctttcgcgatacgcgcattatgttccttcagcagctccggttcaaaggccgttaaatctcctgatttcacataagtcgcggcatcaatgctatcccacggcagcgcgttatcttcgaatttctcacccgtttccgtttcttcattacccgtcggcatgatgatgtctggcgttacgcctttacgttgcgtactgccgccgttaacgcgatagaatttctggatcgtgtactgcacagaacccagcgctggccattcaggacgtaacatctgatcgtaaatacggttcaatgaacggtattgctgaacggtgcctttaccaaacgtcggttcacccacaaccagcgcacgaccgtaatcctgcattgccgcggcaaagatttctgaagccgaagcactgaagcggtcaaccagcaccaccagcgggcctttatagaaaacctgtccgtcggtatcgctatcttcacgaaccttgccgttgttatcgcggacctgaacaatgggacccgcaggaataaacagaccggagagcgatacggcttcagttaacgccccaccgccattgctacgcaggtcgatgatgacgctgctgacattctgtttttccagtttctgcagttgcactttgacatcgtctgtcaaacccacatagaagcccggaatatccagcacgccgactttctctttaccgacggtcttcaccgacattttaaccgcgcggtcttcgagacgaatacgttcacgggtcaacgttacagtacgggtcttggtccctttaccagcaggtaaaatttccagacgaactttactgcccttcggccctttaattaaggcaaccacatcatcaagacgccagccaatcacgtcaaccatcggcttgcctgtttgaccaacaccgacaattttgtcaccaacgctgatagctttactcttcgctgccggaccacctgccaccatcgaattgataacggtgtagtcatcatccatttgcagcactgcgccaataccttccagcgacaaactcatttcagtgttgaactgttcggtattacgcggggaaagatagttggtatgcgggtcgatttcacgcgcaaacgccgtcattgccagcgagaaaacatcttcgctgttggtttgcgccagacgacgaatggcaaatttgtagcggcgagtcagggtttcacgaatttctttatccgtttttcctgtcagcttcaggcttaactcgtcgaatttgactttactgtcccacagcgcgttcaactcagcctcgtttttcggccagggcgctttgctgcggtcaaggttataagtgtcgttgccggtgaaatccatcggcttttccagtaccgacaaagcgtactggtaacgctcaaaacggcgcttttgcgccagattgtagagatcgtagaaaacgtcgagtttgcctgaacgcagttcatcgcctaactcggttttctttttcgcgaactgttcaacatcgcttgccagcagcacgttgtggctgtaatcgagcagattcaggtagcggtcaaagattttggccgaaaatgcctgatcgaggtcgaactggcgataatgagaacgggtgaagcgcgacgttacgcgctcacttaccgtcgcatgctgcgtctcttcctttaataccggaatttgatcagcacgcgtgatatcttctacagcgaaggtctggcctgctattgcaagcaggccagctaacgcggtaagcctaaaaaacatgttcatgcctggcccggcctccgtttcagaacaccaggtgttctgcgcgcacaatcaaagacatacccgaattcagctggacgcggacgccgtctttggtgatttctaatacggtggcatccatcgcgttttgacccgctttcaccttcagggcttgtccgacagtcagagctgaaatgtcagaaaccggggtgtgctgttcttcgcgaggtgcttttactgtttttggcgctttctctaccggcttttgcgcacgaggtttacgttcagcgccttctttgcggcgtggcgtagtcggacgtggcttgcgttcgcggcgcggtgcgtcttctttctcaccagcagttgcggcagcttcgcgttttttcgcttgctgttcagcacgctgtgcctgaacacgcgctttcgcttcttcaagctgcttgcgagcatgctctacatgttgctcgtccagctcaccgcatgggttgccgtcaagatcgacacgcgttgcgccgggtttaacaccgtaaagataacgccagctcgaagtgtagagacgtaaagcggatcgcaattgcgttttgctcaggttcatttccccagcaacacgatcgaccaaatcctgaaaaataccgattttcagcggacgcgcttcaccttccgcactgaaacagtggggaaaacgttcggccagaaacgcgattacttctttactgctattcaacttaggttgattttccatgaaatttcctgattacaacggacgtagccaacaagcgcaggcatgaacaggcgtcattataatgacgctatcagtaaatgctacgttatccgttgattatcctgcgacgctcgcaaagaattttttgtaatccgtcgttgcaagcactttttcaagctgtgccacaagctgacgtaagccttgctcgtcctcgtctgtaaagcgaccgaagacggtactatcgatgtcgagaacaccaataatctgatttttcaccaccagcggcagaacaatttcagaattactcgccgcatcacaggcaatatgcccgtcaaacacatgaacatcctcgatacgctgcacttgattgcgggcaaccgcagtgccgcacacgccgcgcccgacgggtatccggacacaggcaattttgccctgaaatggtccgagtaccagtgtatcgtcctcaagcaaataaaaacctgcccagtttatgtcagtgagacgctcatataacaacgcactggtgttcgcaagcgttgccagaaaactggtttctcccgccatcagcgcgttaaagtcgcgatttaaatccgcgtaaaattctgttttgttcattatataatcacttggttgtcttacctggatctgccagcctattaaaataagcattaaatgcgttaatgctcaagatcattcccatcatgggttaagattaatgttaattcttattacatttggcacgtcatggctcttaacacaccacaaattacgccgacaaaaaagataacagtgagggcaatcggcgaggaactgccgcgtggtgattaccaacgttgcccgcaatgtgacatgctgtttagcctgcccgagataaattctcatcaaagtgcctattgtccgcgctgtcaggcaaaaattcgtgacgggcgcgactggtcgctaacgcgcctggcggcaatggccttcaccatgctgttgcttatgccgtttgcctggggcgaaccgctgttgcatatctggctgttaggcattcgtattgacgccaacgttatgcaaggcatctggcaaatgaccaaacagggcgatgcgataacggggtcgatggtctttttctgcgttattggtgccccgctcattctggtgacctccatagcttatttatggtttggtaaccgactgggaatgaatttacgtccggtactgctgatgcttgagcgacttaaagagtgggtaatgctcgatatctacctggtcggcattggcgttgcttctataaaggtacaggattatgcccatatccaggctggtgtcggcttgttctcttttgtggcgttggtgattttaacgacggtgacgttgtcacatcttaatgtcgaagaactgtgggagcgattttatccgcagcgccccgctacgcgtagggacgagaaacttcgtgtctgtcttgggtgccattttaccggctatccagatcagcgtggtcgctgcccgcgttgccatatcccgctacgcctgcgtcgccgtcatagtctgcaaaaatgctgggcggcgctgttagcgtcaatcgttttattgttacctgccaacctgttgcctatttctatcatttatctgaacggaggacggcaggaagatacaattctttccggaattatgtcgctggcaagtagcaacattgcggttgcaggaatcgtgtttatcgccagtattctggtaccgtttactaaagtgatcgtcatgttcactttactgttgagcattcattttaaatgccagcaaggtttacgcacacgcattctgttactgcggatggtgacctggattggtcgctggtcgatgctcgacctgtttgtcatatctttaaccatgtcgctgattaatcgcgatcagatcctcgcttttactatgggaccggctgcgttttatttcggcgcagcggtaattttgactattcttgctgtggaatggctggacagccgcttactttgggatgcacatgagtcaggaaacgcccgcttcgacgactgaagcgcagattaaaaataaacgccgtatctcacctttctggctgctgccgttcatcgcgctaatgattgccagttggctgatttgggacagttatcaggaccggggtaataccgtcaccatcgactttatgtcggcggatggtattgttccaggccgtacgcctgttcgttatcagggcgttgaagtcggaacagtgcaggatatcagcctcagcgacgatcttcgtaagattgaagtcaaggtcagcatcaagtccgatatgaaagatgcgctgcgcgaagagactcagttctggctggtgacgccaaaagcatcgttggcaggtgtctccgggctggacgccctcgtcggtgggaactatatcggcatgatgccgggtaaaggtaaagagcaggatcactttgtcgcactcgatacccaaccgaaatatcggctggacaatggcgatctgatgatccacctgcaagcccccgatctcggttcgctgaacagcggttcattggtctatttccgcaagatcccggtgggaaaagtctacgactatgccatcaatcccaacaagcaaggcgtggtgattgatgtcctgatcgagcggcgttttaccgatctggtgaaaaaaggtagccgtttctggaacgtttccggcgttgatgccaacgtcagtatcagtggcgcgaaggtgaaactggaaagcctggcggcactggttaacggtgcgattgccttcgattcaccagaagagtcgaaacctgccgaggcggaagatacctttggtctgtatgaagatctggcccacagccagcgtggcgtaataataaaactggaactgccgagtggggccggattaaccgccgactcgacgccgttaatgtatcaggggctggaagtcggacagctgactaaactggatttaaatcctggtggtaaagtcacaggggaaatgaccgttgatcccagcgtcgttaccctgcttcgtgaaaatacccgcatcgaattacgcaacccgaaattatcccttagcgatgctaatctcagcgccctgctgaccggcaaaaccttcgagctggtgcccggcgatggcgagccacgcaaagagttcgttgttgtgccaggcgaaaaagcactgctgcatgaacctgatgttctgacgctgaccctgaccgcgccggaaagttacggtattgatgcgggtcagccgctcattcttcacggcgtgcaggtaggccaggttatcgatcgtaaactcaccagcaaaggcgtcacctttaccgtcgccatcgagcctcagcatcgcgaactggtaaaaggcgatagcaaatttgtcgtcaacagccgtgtcgatgtgaaggtggggctggatggcgttgagtttctcggtgccagcgcctcagaatggatcaatggcgggatacgtattctgccgggcgataaaggtgagatgaaagccagctatccactgtatgccaatttggaaaaagcgctggagaacagccttagcgatttacccaccacaaccgtgagtttgagtgcagagacgctgccggatgtgcaggcaggatcggtagtgctgtaccgtaaatttgaagttggtgaagtgattaccgtgcgtccgcgagctaacgcgtttgatatcgatctgcatattaagccggagtatcgcaaccttctgaccagcaatagcgtgttctgggcagaaggcggggcgaaagttcagctgaatggtagtggtctgaccgtacaggcatccccgctctccagagcattaaagggagccattagcttcgacaacctcagcggtgccagcgccagtcagcgtaaaggcgataagcgtattctgtatgcttccgaaacagcggcccgtgcggttggcgggcagattacgcttcacgctttcgatgccggaaaactggcggtcgggatgccaattcgctatctcggtattgatatcgggcaaatccagacgctggatctgattaccgcacgcaatgaagtacaggcaaaggcggtactttacccggaatatgtccagacctttgctcgcggtggtacgcgcttctcagtggtcacaccgcaaatttcggcagctggcgttgagcatcttgatactatcctccagccgtatatcaacgtcgaaccaggccggggcaatcctcgccgcgactttgaattacaagaggccaccattactgattcgcgttacctggatggcttaagcattattgttgaagcgccggaagccggttcgttaggcatcggtacgcctgtgctgttccgtggtctggaagtcggtacggttacaggaatgacgctggggacattgtcagatcgcgtgatgattgcgatgcgcatcagtaaacgctatcaacacctggtgcgtaacaattccgtcttctggttggcatcgggttacagtctggactttggtctgacgggcggcgtagtgaaaaccggcacctttaaccagtttatccgtggcggcatcgccttcgccacgcctccgggtacgccactggcaccgaaagcccaggaaggcaaacacttcctgttgcaggaaagtgaaccgaaagagtggcgtgaatggggaactgcgcttcccaaataatgcccactgctccggcgtgcctgcgccggagcgtttatgctaaactgcgcgcctgtttttttgccagtggtacatgctcgtggcccaacacaccgtttatttcccggacgcctttctgacacaaatgcgcgaagcgatgccttcgacgctctcatttgatgattttcttgccgcctgtcagcgcccgttgcgccgcagcattcgcgttaatacgctgaaaatctccgttgctgatttcctgcaattaaccgctccttatggctggacgcttacgccaattccgtggtgtgaagaaggtttctggattgaacgcgacaatgaagatgcattgccattgggtagtaccgccgagcatttaagtggcctgttttatattcaggaagccagttcaatgttgcctgttgccgccttgtttgctgacggtaatgcaccacagcgggtgatggatgtcgctgccgcgcctggctccaaaacgacgcaaatttccgcgcggatgaataacgaaggggcaatccttgccaatgagttttccgccagtcgggtaaaagtgttacatgccaatatcagccgctgtggtatcagtaatgttgcgctcacacattttgatggccgcgtgtttggtgcggcagtgccagaaatgttcgatgccattttgctggacgctccctgctctggcgaaggcgtggtgcgtaaagatcccgatgcgctaaaaaactggtcaccagaaagcaatcaggaaatcgcagctacacaacgggagcttatcgacagcgcctttcatgcattacgtcctggtggtacgctggtttactcgacctgtaccttaaaccaggaagaaaacgaagccgtttgcctgtggctgaaagagacttaccccgacgcagtagagtttttaccacttggcgatctcttccctggtgcaaacaaagcgctgaccgaagaaggctttttgcatgttttcccacaaatttacgactgcgaaggcttcttcgttgctcgtctgcgtaaaactcaggcgattcccgccttacccgcccccaaatacaaagtcggtaattttccgttcagcccggtgaaagatcgcgaagctggacaaattcgtcaggcggctacaggtgttggcttaaactgggatgaaaacctgcgcctctggcagcgtgacaaagaactgtggttgttcccggtgggcattgaagccctgatcggtaaagtccgattttctcggttggggattaaacttgccgagacgcacaacaaaggttatcgctggcagcatgaagcggttattgctcttgcctcacccgataatatgaatgcattcgagctgacaccgcaggaagcggaggagtggtatcgcgggcgcgatgtttacccgcaagccgcgccagtggcggatgatgtattggttactttccagcatcaaccgattggtttagccaaacggattggttcgcgattgaaaaacagctatccgcgtgaactggtgcgcgatgggaaactttttaccggtaacgcctgacagcgcacaaaaaaagcgcactttttgactggcacattcggctgcctcaactaggctgaaaaatggtgcgatcggactggtcgtaccacaatcggcagctaaatggagagcacgaagatgaaaaccagtgtgcgcataggcgcttttgaaatcgacgacggcgaattacacggtgaatcgccaggtgatcgaacgttaaccattccttgtaaatctgaccccgatttatgtatgcaactggatgcctgggatgctgaaaccagtatccctgccctgctaaatggcgaacactctgtcctttaccgtacccgttacgatcaacaatctgatgcctggattatgcgtcttgcctgatccaaaaagaacccgtcggcatggcgggttatttgtcctggttattcccccgttgtaaaatctctcctaaacttaacggtacggcaccacacttcggggatgaaatgttcgcgctggtactttttgtttgctacctggatggcggttgtgaagatattgttgtggatgtctacaacacggaacagcagtgtctttattctatgagcgatcaacggatccgccagggcggttgttttccgattgaggattttatagatggtttctggcgacctgcacaggagtacggtgatttttaattattgcaattgcacaagagtcagttcgcccccaaagacagcaccggtatcaatataatgcaggttgccaatatccacgcgatgtcgcaacggtgtatgaccaaaccagaaatgatcagcacctgtaattccctgccctttttggcgttcacctaatcgcgagcggctccacaagacctgatgcaaatcaacgtccttttgccattcataaacatcatctggataatcggcatgagcaataacatgcttgccggtgcgactgtgtacttcaagaataaagggcaaatgctgacatttttccagcgccgttttcgcttgtttctgttgattatctgccagcgcaataaaccagtcgccgccattcatcaaccacaaagacatctgctgggatgccagcgcatccatcgccatctgttcatgattgcctcttaccgcacaaacccaatgttgttccagtaactgcagacaacgtaaactttgcggcccacgatcgataacgtctcccactgagataagtaaatctcgccacggatcaaaacgacaatgccataatttgcggcgcaactgctcaagacaaccgtgtatatcgccagaaagccagatatgtcgccattgatgacccgcaattctctgataaacgggcgcaggctgtttcatcaatattttcctcccgcgctaaagatcacataatcttaacaagaatgttaaaaaacgctggactcagacagtagagtgtgtgttatggttgactataaagtcagcgaaggaaatgcttctggcttttaacagataaaaagagaccgaacacgattcctgtattcggtccagggaaatggctcttgggagagagccgtgcgctaaaagttggcattaatgcaggcttagttgccttgccctttaagaatagatgacgacgccaggttttccagtttgcgtgcaaaatggtcaataaaaagcgtggtggtcatcagctgaaatgttaaaaaccgcccgttctggtgaaagaactgaggcggtttttttattggaaatcaaaaggctattttaggtaattaacagagtttttcagctcgttctataaacggtgccagactcattttttcgccgggattgttaggatcatcaatctgaatcaccgaaatgggttgggcattggtcttcccactggcaacttccttttgtgcgatatcgtttaaaggatactgcacgagggtactcggattaataacatacaaagcattacccggtcggcaagtcagcatcacctcttcgcgattaaacgcccatttgtctttacccacttcaaaacgactgacggtaatcacctgcggtgcagccagcgccgctgcagaactggtgagtaacagaaacgccagaatactttttttcatcattttcgtaatccatcaaaaaggttcgagagtcgcaagcaggctgatgatcaccagcactaccgcacctatcgcccattcgagtttagtcatccacacaaaccagggtgccgcacgatcttcatcctgcctcatgcgcggtacaagaacataacgattagccagcgcaatgaccaccataatcatcaccaggatggctttgagcaataagagttggccccagtaagtcgtaagcgtggggggaaatccggtaatcaacaatgcattaagcacgccgcttgccagtacgccgatcaccgcaaaatgcccgcaccaggaaaaacgcatcagcgcctgaatagcctggtgtcgccaacggcctttgatgagttgcatacaccagagcaccggcagtaatcccccaaaccacgccgccgcacaaatcaggtgaatcgcgtgattagtctgatggattttcgctgttaccccttcattcagcgtcgcatgccccactcccgccagcagaataaattgcgcggtagtgagcataaacagcaaacgtggcatattccgcggttgcataagggcgacgatcaacgttacgagggcgagaacaatttgccataaccagatgccaccaaactgcgtttgcaaaacagcctgccaaatgtttggcgaaaatacatctgtccatcccgttcccatcaacccgccctgaacggcgagcattgcagtggcactgatcaaactccagacggcagcgtgctgttgtaaacgcagaaaacgcttcgccagcaagcgacgaatcgtcaagggggccagccaggcaccgtacattgcgaagccaaaaaccagcatcagcgaggtgaaatggataaatcgcagcgcgatccaggtaaacgccagcatgatttatttcacgctaaaggtgtagtgtcctttcgttttatgcccgtccaccgaaacaacatgccagtcaacggtgtaggttccgggtttcagcgaatcggccagtggaacaatcagttgcttttggtcctgctcatttcgcttcgccggtaatgttttaatattttcgttttttggccccgtgatttttgcaccactgaatcctgtttcaacaccttccgagaagtttaaagtgattgcctgcggtgcagctgtcacttgcgcgtttgccgcaggatactgatgcgttaaatgcgcatgtgcccagacggaaggtgtcaccaacgaagtggtcaggattgccagcgcgtagcgaagggagcgtgcagttgaagccatattatctattcctttttgtaataacttttttacagagcataaccttgtctaatgtctgagtcgaggatcatcaattccggcttgccatcctggctcactcttagtaacttttgcccgcgaatgatgaggagattaagaatgctgaagaatctggctaaactggatcaaacagaaatggataaagtgaatgtcgatttggcggcggccggggtggcatttaaagaacgctacaatatgccggtgatcgctgaagcggttgaacgtgaacagcctgaacatttgcgcagctggtttcgcgagcggcttattgcccaccgtttggcttcggtcaatctgtcacgtttaccttacgagcccaaacttaaataaaacttatacagagttacactttcttacataacgcctgctaaattatgagtattttctaaaccgcactcataatttgcagtcattttgaaaaggaagtcattatgtcgttctggaaagttgcagcagcgcaatatgagcctcgtaaaacctcactcaccgaacaggtagctcatcatctggagtttgtgagggccgccgccaggcaacaatgtcagctgttagtttttccatcgctttctttactggggtgtgattattcgcgacgtgcccttcctgccccacccgatctctcactgttagacccgctttgttatgccgcaacgacctggcgaatgaccatcattgccggccttcccgttgaatataacgatcgctttattcgtggaattgcggtgttcgcaccgtggcgaaaaacgcctgggatctaccatcagagtcatggtgcatgtctgggccgtcgttccagaaccatcacggtggtcgatgaacaaccgcaaggtatggatatggacccgacctgttcactgtttactacagggcaatgtctgggagaacccgacctgctggcgtcggcccgtcgcttacaatttttttcacatcagtactcgattgccgtgctgatggcaaatgcccgtggtaacagtgcactatgggatgaatatggtcgtctcatcgttcgcgccgatcgtggttcattattgttagtcggtcagcgttcatcacagggttggcaaggcgatatcattccattacgctaggctttttcggcctggagcatgccatgttgcgcattatcgatacagaaacctgcggtttgcagggagggatcgttgagattgcctctgttgatgtcattgacggaaaaatcgtcaaccccatgagccacctggtgcgccccgatcgtcctattagtccacaagcgatggcgattcatcgcatcaccgaagccatggtcgccgataaaccgtggattgaagatgtgatcccacactattacggtagtgaatggtatgtcgcgcataacgccagctttgaccgccgcgtactgcctgagatgcccggtgagtggatttgcactatgaaactggcccgtcgtttgtggcctgggatcaagtacagcaatatggcgttatataaaacacgcaagctcaatgtacagacgccgccgggcctgcatcatcaccgcgcgttgtatgactgttatatcaccgccgcgttgcttatcgatattatgaacacctccggctggacggcagaacagatggccgatatcaccggacgtccgtcgttgatgacgaccttcacctttggcaaataccgtggcaaagcggtttccgacgttgccgaacgcgatccgggctatctgcgctggttatttaataacctggacagcatgagcccggagctgcgtttaacactgaaacattatctggaaaatacttagtccgcaggcgtagcgggtaatgttccctgcgccagcgcgaccagaaaagcatattccatcgctacgccttcgtacgatttaaagcgaccagatttaccgccatggcctgagtccatgtcggtacagagcaataaaagatggtcatcggttttcagctcgcgcaatttagcgacccattttgccggttcccaatattgcacctgagaatcgtgcaaaccggtcgttaccagtaaatgcggataagcctgtgcggtgacgttgtcatacgggctgtagcttttcatgtactcgtaatattgcggatcctgcgggttaccccactcttcaaactcaccagtggtaagaggaattgattcatcaagcatcgttgttacaacatcaacaaacggtacctgggcgataacgccgtggaataattccgggcgttgattaattgcaacgcccatcaacatgccccccgcactcccgcccatcgcataacaaagcgaaggagagccatagcccagttttaacaatgcatcgcaggcatcaagataatcattaaacgtatttttcttcttcagaaattttccgtcttcgtaccattgttgccccagctcaccaccgccgcgaacatggacaatggcgtagacaaagccacgatctaacaaactcaagcggctaaaactgaaatcggcatcaatacttgcgccgtaagaaccatagccatacaccagcaacgggttgtgtcctttgcgaaaatgtttgcgatggtagaccaacgaaaccggaacttcgacgccatcacgggcgactatccacaggtgttcactgcggtaattcgccgcataaaaaccaggaacttccgtttgttttaatacacgacgctcaccggtatccatatccagttcaaacaaagtgtctggtgtagtcatggaagaataaccataacgcaatcgcgcggtttcaggttctggattgtaggcaatccaggtcacataggccggatcatcaaaggcaataccaatgacttcccgggtcttgcggttaatttggcgcaaactggttaacccgcgctgacgctcttcaaccaccagccagtcggtaaacagcgtaaacccttccagcatgatgttttcgcgtggcggaattaactcttcccactgttgctcatcacgcatacgggtacggtataagccaaagtttttgccgtggcggttggaacgcagataaaaacgatgctggtagtgatcaaggctgtattcgtgatctttgcggcgcggcagaaaaacaaacggctcggcatcggccatttccgcgtccagcaggcgaacttcactggtggtggcgctggccaaatgaatgactacatagtgcttcgaggtcgttttatgcaggctgacgtaataggtatcgtctttttcttcgtagatcagtttatcttgcgatgctggcgtaccgatggcgtgacgccagacctgataaggcagcagcgtcaccggatgcttgcgaacatagtagaaaatccaggagtcatttgcccagacaaagctgggttcaacgttatccagcagttccgggtaccagttaccagtttccagattacgaaaacgaatgccgtactggcgtcgggaaagaaaatcttctgccagcgccataatggtgttatcgggcgtaatcgccattccgcccatcgaataaaactcactatgagctgcgcgcttattggcatcgagcaatgtttcccactcatcccactcttcactgaatgccgattgacgctggtagatagcatattcacagcctggttcataaatatgccgatagcggtagccatttttgatgtagggcgcagaaacttctcgttgcggaatgcggtcgatgatttcctttaagatgcgatcctgcaaggcttgttgtgaggccatcacccgatgaccgtaactattttcttgttgcaggtagtccaggacttctggctgagaacgcgtatcgtcccgcagccagtagtaattatcgatgcgcgtatcgccatgaagcgtcatggcgtggggaatgcgggcggcttttggtagcatgttattgttctttctggttgaaacatcttataagggtggcaaaactcaccggggatgcaagcgaaacaggggagtcattgcttagatgatgacaggtaatggcgcggatatcgaatgttatgcagacagagaaaatcagcctgttcaaatggctgtgcgattctggatagcccgaaatagtcaacttcaggctatccagagagcggaattattccgccaaagtgcgtttttgctgttcgagatcgcgttcaatgccgtcacgaacatcctgggggattttcagcgcgtcacccagtgcattcaggtaactgcgttccataaaatggtcaatatcaatagccgcgcaactcaggaaatagatttccagcgcctcttcttcattgcggaccccggtagccaggcgttgtggatccagcggttgttcgattgcctgctcaatgagtacacgcccctgctcttccacgccggctccacgcaattgctggtcgattgccgcacgttctttggcatcaatatgaccatcacttttagcggcaaagaccagcgcaaggatcaaacgtgctgtacgctcatccagcggcgtactttgcgcgccaaactgcggttcgtcctgatgcgccgcgcgaattttatctttgtatttattccacagcaccgtacccgctaccgctccgccgccaaccagtaacgcgttggtgccatatttcgtaagaagtttacgtgctgatttatttgcgaccagcagcccagccagtccgcctaatgcgcctggcactaacagtttgaccaatccctgatccgcagacgaggaggtagaagaactgctttgcccaagcagggattgcagttgatttaaccagttagccatatttgctcctcaataaccatttttagtgcctgtagcatagcggatgaggatgtcagaaaatgtatatcgagacaaaagatgcgcaaataagcggggcggtaggccgttattcaaagaaattcgcgccaggtaaggtatttactgtatatcaggtgataagggtattttaggtgaaagtagtttgtcgttttgagtggcattgtttgatgctgattgcccgatgcgacgctgttgcgtcttctcaggcctacgattgtggtgcgttctggggcggacaaggcactcgcgccgcatccgccaacagtcaatcgaattatcagaagccattaacgccgctgatattccgccattcccgctttgcagtccacgctgacctggtaatgaatatcggcacttttaccacgcacggttagcggtactgaccatttatcatctttaccctgaatgtcctgcaaactgacccaagccacgggatcggcctgaccgacaattttttgatcatctgcccaacgcgccacgcgattttgttgataatcacgttttacgctcgcggcaattccggcagcatccagatcttcacactttgggaaagtgaccgacttgctggtttcattattggcagcgaaaactgatgcgcaggcagaaaccaacaacagccctaaaaacgcccctctttttttcatgtttttctccatagcacaatgattcaggagaaagcatggtacaaattgtcaggagcgcaagttgcttcaggccgcgtgtgaggcatcttcctcttcggattcagcaccgacgacctgtggggacggtaatttgccggttttcagaatggtgctcagcacatctttttgttctgccagccatagcgaaagggcttcacgttgctcgtcttccatttgcactggagaatttgtcagccaggtgtcaagcagatccgccgtatcaagcattttgtcataagcatcggcttcctttttgctggtaaacgacattttctcttcgccctcacgaatgactacgtatttaacttcaaccgccatttgcagcctctcataataactgtgattttatacagtatatttcttttcggttgagaaatcaacatcagcaataaagacacacgcaaacgttttcgtttatactgcgcgcggaattaatcaggggatattcgttatgacgttattaggcactgcgctgcgtccggcagcaactcgcgtgatgttattaggctccggtgaactgggtaaagaagtggcaatcgagtgtcagcgtctcggcgtagaggtgattgccgtcgatcgctatgccgacgcaccagccatgcatgtcgcgcatcgctcccatgtcattaatatgcttgatggtgatgcattacgccgtgtggttgaactggaaaaaccacattatatcgtgccggagatcgaagctattgccaccgatatgctgatccaacttgaagaggaaggactgaatgttgtcccctgcgctcgcgcaacgaaattaacgatgaatcgcgagggtatccgtcgcctggcggcagaagagctgcagctgcccacttccacttatcgttttgccgatagcgaaagccttttccgcgaggcggttgctgacattggctatccctgcattgtaaaaccggtgatgagctcttccggcaaggggcagacgtttattcgttctgcagagcaacttgctcaggcatggaagtacgctcagcaaggcggtcgcgccggagcgggccgcgtaattgttgaaggcgtcgttaagtttgacttcgaaattaccctgctaaccgtcagcgcggtggatggcgtccatttctgtgcaccagtaggtcatcgccaggaagatggcgactaccgtgaatcctggcaaccacagcaaatgagcccgcttgcccttgaacgtgcgcaggagattgcccgtaaagtggtgctggcactgggcggttatgggttgtttggtgtcgagctatttgtctgtggtgatgaggtgattttcagtgaggtctcccctcgtccacatgataccgggatggtgacgttaatttctcaagatctctcagagtttgccctgcatgtacgtgccttcctcggacttccggttggcgggatccgtcagtatggtcctgcagcttctgccgttattctgccacaactgaccagtcagaatgtcacgtttgataatgtgcagaatgccgtaggcgcagatttgcagattcgtttatttggtaagccggaaattgatggcagccgtcgtctgggggtggcactggctactgcagagagtgttgttgacgccattgaacgcgcgaagcacgccgccggacaggtaaaagtacagggttaaacccggcaaaaaaacgctacaaaaatgcccgatcctcgatcgggcattttgacttttacagcttagcgccttctacagcttcacgcgccagcttagtaatgcggtcgtaatcgcccgcttccagcgcatctgccggaaccagccaggaaccaccgatgcacagcacgcttttcagcgccaggtagtcacggtagttagccggagaaataccacccgtcgggcagaaacggacctgggagaacggacccgcgatcgcctgcagggctttcacgccgccgttagcttcagccgggaagaatttgaactctttcaaaccgtagtccatacccagcatcagttcggaaacagtgctgatccccggaatcagaggaatagtcccttcggtagcagctttcagcagcggctcggtcagacccgggctaattgcgaactgtgcacccgcttcagtgacttctgccagctgctgtggattcagcaccgtaccggcacccacaatcgcttcaggcacttctttggcgatagcacggatagcgtcaactgcacactcggtacgcagagtcacttccagaacgcgcaccccaccagcaaccaacgcttttgccatcggcaccgcgtgttccagtttttttaccacgataaccggtacaaccgggccggtggtcaggattgattctgcacttgttttccagtttttcatcagagttttctctcgcctgattacaaatttgtcgtcttaaaaagtgatacaggttgcgccctgttcggcaccggacagtttttcacgcaaggcgctgaataattcacgtcctgttcccacgcgtgacgcgctcaggtcaggaatgtgcggttcgcgagcagccagttccgcttcgtctaccagcagcgtcagttcgcctgtctgtccattcacacgaatgatgtccccgtcgcgcacttttgccagcagcccgccatcgtaggcttctggtgttacgtggatagctgacggcactttacctgaagcgccggagagtcgtccatcggtaactaacgcaattttgaaacaccggtccaataatacaccaagtggcggcatgagtttatgtaattctggcattccgttcgcttttggcccctgatgacggacaacaacgacacaatcgcggtccagcaaacccgcttcaaaggccggcataacgtcatgctggctttcaaaaacaaccgctggcgcttcaatcacctggttctcaaccggcacggcagaggttttcataaccgcacggcccaggttaccgcttaacacttttgtcccaccatgatgagagaaaggttgttcgaaggaagcgatcacattgctgtcgagtgatttttccgccccttcccgccagtccagttcaccattattcagccatggttcaagggtataacgagacagaccaaaacctgccaccgtattgacatcttcatgcagcaggcctgctttgagcagttcacgcaccagaaccggtacgccacctgccgcctggaagtggttaatatcggccggaccgttcgggtagagacgtgccatcagcggtacaacatcagaaaggtcagagaagtcatcccagttaatctgaataccggccgcgcgcgccatcgccaccaggtgcatggtgtggttagtggaaccaccggtcgccagcagtgcaacgataccgttcaccaccactttctcatcgatcatcttaccgatcggcatccattcattaccattaccggtcatgcgtgtaacctgacgcgcagctgcggcggtcaaagcatcgcgcagcggagaatccggatgaacaaaagaagagcctggcaactgcatccccataaactccaccaccatctggttggtgttggcagtaccgtagaaagtacatgttcccggcgcatggtaagacgcggcttctgactccagtaaggccatgcggtccactttaccttcggcataaagctggcgaatacgcactttttctttatttggcaaaccgcttgccatcggtccagacggcacaaacaccgcaggcaaatgaccaaacgacagggctgccatcgtcagacccgggacaatcttgtcgcacacaccgaggaacagagcaccatcaaacatgttatgggacagccccaccgccgcagacatcgctatcacttcgcggcttagcagcgacaattccattccatcctgcccctgggtgacaccatcacacatcgccggaacaccgcccgcaacctgaccaaccgcattcgcttcatgcagggctttacgaatgatttctggatagtgttcataaggctggtgcgcggagagcatgtcgttataggaggtgatgatggcgatattgttacgcaacatgcttttcaaagaggctttgtcttctggctggcaggcagcgaaaccgtgtgccaggttaccgcatgccaactgcgaacgatgaacggtcgaagttttcgcttgttctatccgggcgagataagcagagcgagtctcgcgcgaacgttcaatgattcgatttgttacgcgtaacaattgtggattcataaaggctcctgaaattgagttgtcagagcaggatgattcacaacgcgtttcattcagaggatttatgactgaaacgcctgtaaccggagctcatagggcaaaaacgtttcagtcagtgtaataaaaaaagcctcgtgggtgaatccgcacgaggcctgaaagtgtaaaaattgttctacaatctgcgcaagatcatgttaccggtaaaataaccataaaggataagcgcagatattactcaaactcattccaggaacgaccatcacgggtaatcatcgccaccgaggcaacgggtccccaggttccggcctgatacggtttcggcgcatcattgtccatcgcccacgcctcagtaatggagtctacccatttccaggcttcttccacttcgtcgcgacgtacaaacagtgcctgaataccacgcatggtttccagcagcaaacgttcataggcatccgccagatgcgtctgattaaaggtttctgaatagctcagatccagcttggtgatttgcaggttatgtttgtggtcaaggccaggaactttattcagtacctggatatccacgccttcatcaggttgcagacggatagtcagtttattctgcggcagatcctgccacgattctttaaacagattcagttcaggtgttttgaaatagaccacgacttcagaacatttggtcggcagacgtttaccagtacgcaggtagaatggcacaccggcccagcgccagttatcaatgtcgacgcggatcgccacgaaagtttctgtattgctgctcttgttcgcgccctcttcttccagatatcccggcacttttttgccctgggcgaagcccgcagtatattgcccgcgtacggttttttcgcgtacgttggagcggtcgatgcggcgcagagacttcagtactttcactttttcatcgcggatgctgtctgcgctcaggtcagacggcggagacatcgcaatcatgcaaagaatttgcagcaggtggttctggatcatgtcgcgcatctgaccggctttatcaaaatagccccagcgcccttcgatccccacttcttctgccacggtaatctcaacatgatcaatggtgcgattgtcccagttattcacaaacagggagttagcaaaacgcagcgccaacaggttcagcaccgtttctttaccaagatagtggtcgatacggtaaacctggcactcctcgaagtattcgccaacctgatcattgatttcctgcgaggtcgccagcgacgtccccagcggtttctccatgactacgcgtgccggtttagcattcagttttgcctcgccaagccctttgcaaattgcgccaaaagtgctgggcggcatggcaaagtagttaatggtgatacgatttttttgatccagcatcgcgccgagacggctgaatgcagcagtgtcattgacatcgagattacaaaaatccagacgtgcactcagggtgtcccataaaccttcatcaatggtttctttcatgaaagtttcgagcgcctcgcggacaactttggtatatgccgctttatcccagtcagcacgccctacgccgataatccgggtgtccgggttgagctgaccggctttttccagttgatacagggaaggcagcaatttacgacgcgcaaggtcgcctttcgcgccgaaaatgaccaggtcacaggcctgggctgtttgcgttaccgccatgtcattctccttaagttaactaacccggtacttaagccagggtatacttgtaattttcttacggtgcactgtactgcttttacgagcttgcgaaaactgtaaacgcttatccacccgtgcgattacgggaaaagcgcgcaaagtgcggcaaaactgataaaaaaatcatcgttttccattgggtaaaaatctgacactgatcatgttatgaaaaaaaataacaacttttttatctgcttttgtcattaacacggcacacaggcgtaatatctgacaaaactgcatttcgatttctttcagtgcggaaatcgtcattacccgtgagtctctttacatcatgaatatgctggaaaaaatccagtctcagctggaacatttgagcaaatcagagcgcaaagttgccgaggtcattctggcttcgcccgataacgcgatccattcgagtattgctgctatggcactggaagccaatgttagcgaaccgacggtgaatcgtttctgtcgcagcatggacacgcgcggttttcctgattttaaacttcatctggcacagagtctggcgaatggcactccctatgttaatcgcaatgtcaatgaagatgacagcgttgaatcatacacagggaaaatatttgagtccgcaatggcaacgcttgatcatgtccgtcattcactggataaatctgccatcaaccgcgccgtcgacttgctcactcaggcaaaaaaaatcgcctttttcggattaggctcttcagccgccgttgcccacgatgcgatgaataagttctttcgttttaatgttccggtggtgtactccgatgatatcgtgctgcaacgcatgagttgtatgaattgtagcgacggagacgtggtggtgctgatttctcacactggaagaacaaaaaatctggtcgagctggcgcagctggcacgcgaaaacgacgccatggtgattgccctcacctctgcgggtaccccgctcgcccgggaagcaacgctggcaattaccctcgacgtaccggaagatactgacatttatatgcccatggtttctcgacttgcacagctgaccgtgatagatgtgctggcgacaggatttactttgcgacgcggtgcaaaattcagagataacttgaagcgggtcaaagaagcgctgaaggaatcgcgttttgataagcagttacttaatttaagtgacgatcgctaaaaacgactgtcactgtcctaatcttatacgacatccgaatgagattaatttatcgccatcgcggcgttatttcattcggatttcatgttcaagcaacacctggttgtttcagtcaacggagtattacatgtccagaaggcttcgcagaacaaaaatcgttaccacgttaggcccagcaacagatcgcgataataatcttgaaaaagttatcgcggcgggtgccaacgttgtacgtatgaacttttctcacggctcgcctgaagatcacaaaatgcgcgcggataaagttcgtgagattgccgcaaaactggggcgtcatgtggctattctgggtgacctccaggggcccaaaatccgtgtatccacctttaaagaaggcaaagttttcctcaatattggggataaattcctgctcgacgccaacctgggtaaaggtgaaggcgacaaagaaaaagtcggtatcgactacaaaggcctgcctgctgacgtcgtgcctggtgacatcctgctgctggacgatggtcgcgtccagttaaaagtactggaagttcagggcatgaaagtgttcaccgaagtcaccgtcggtggtcccctctccaacaataaaggtatcaacaaacttggcggcggtttgtcggctgaagcgctgaccgaaaaagacaaagcagacattaagactgcggcgttgattggcgtagattacctggctgtctccttcccacgctgtggcgaagatctgaactatgcccgtcgcctggcacgcgatgcaggatgtgatgcgaaaattgttgccaaggttgaacgtgcggaagccgtttgcagccaggatgcaatggatgacatcatcctcgcctctgacgtggtaatggttgcacgtggcgacctcggtgtggaaattggcgacccggaactggtcggcattcagaaagcgttgatccgtcgtgcgcgtcagctaaaccgagcggtaatcacggcgacccagatgatggagtcaatgattactaacccgatgccgacgcgtgcagaagtcatggacgtagcaaacgccgttctggatggtactgacgctgtgatgctgtctgcagaaactgccgctgggcagtatccgtcagaaaccgttgcagccatggcgcgcgtttgcctgggtgcggaaaaaatcccgagcatcaacgtttctaaacaccgtctggacgttcagttcgacaatgtggaagaagctattgccatgtcagcaatgtacgcagctaaccacctgaaaggcgttacggcgatcatcaccatgaccgaatcgggtcgtaccgcgctgatgacctcccgtatcagctctggtctgccaattttcgccatgtcgcgccatgaacgtacgctgaacctgactgctctctatcgtggcgttacgccggtgcactttgatagcgctaatgacggcgtagcagctgccagcgaagcggttaatctgctgcgcgataaaggttacttgatgtctggtgacctggtgattgtcacccagggcgacgtgatgagtaccgtgggttctactaataccacgcgtattttaacggtagagtaagtacgttgccggatgcggcgaaaacgccacatccggcctacagttcaatgatagttcaacagatttcgaatattctgaagcaaacttgaacttatcatcaggcgaaggcctctcctcgcgagaggcttttttatttgatgggataaagatctttgcgcttatacggctggatttcgcccggtttgcgagttttcagcaattttagtatccaggtgtattgttctggtcgcggaccaacaaaaatctcgacttcttcattcatccgccgcgcaatcgtatgatcatccgcctctaacagatcatccatcggtgggcgcacctgaatcgtcagacgatgcgtcttgccatcataaatcggaaacagcggtacaacgcgcgcacggcacactttcatcaaacgaccaatcgcgggcaacgtcgctttataggtggcaaagaaatccacaaattcgctgtgctctgggccatgatcctgatcgggtaaataatatccccagtacccctgacgtaccgactggatgaatggtttaataccgtcatttctcgcatgcagacgaccgccaaagcgacgacgcaccgtgttccagacataatcaaaaaccgggttgccctgattatggaacatcgctgccattttctgcccttgcgaggccatcagcatggcaggaatatcgacggcccaaccgtgcggcaccagaaagataactttctcgttattacgccgcatctcttcgatgatctccagcccttgccagtcaacgcgcggctgaattttctccggcccgcgtattgccaactcagccatcattgccatcgcttgcggcgcggtggcaaacatctcatcaacaatcgcttcgcgttcagcttcactacgttctggaaagcagagcgacagattgattaacgcacgacggcgtgagctttttcccagtcgtccggcaaaacgtcccagccgtgccagaatgggatcacggaactttggcggcgttaaagcgatacccgccatcgctgctacgcccagccatgctccccagtagcgcgggtggcgaaaggatttatcaaactcaggaatgtattcgctattattttttttcgtttccatgcttttccagtttcggataaggcaaaaatcaatctggtgatagtgtagcggcgcaacttgccccgcaccaaataaaaaaagccggtactgactgcgtaccggctgcgaatggatgttaattaatcaaaccgtagctgcggcacaatctctttggcctgcgccaggaattcgcgacgatcggagccggtcagcccttcggtacgcggcagttttgccgtcagcgggtttacggcctgctggtttatccatacttcatagtgcagatgcggcccggttgaacgtccggtattaccggaaagcgcgatacggtcgccacgtttcaccttctgtcccggtttcaccagaatcttgcgcaagtgcatataacgcgtggtgtagctgcgaccatgacgaatagccacataataacctgctgcgccactgcgtttggcaaccaccacttcaccgtcacccactgaaagcactggcgtaccctgcggcatggcgaaatcaacacctctgtgtggtgcaacgcgaccggtcaccggattagtacgacgcgggttaaaattagacgagatacggaactgtttcgccgtcgggaatcgcaagaatcctttcgccagaccagtaccgttacgatcgtagaatttgccatcttcagcgcggatagcgtaataatctttaccttctgaacgcaaacgtacgcccagcagctggctttgctcacgtttaccatcaagcatttctcgagacattaacaccgcaaattcatcgccttttttcagtttgcggaaatccatttgccactgcatggctttaatcactgcgctcacttcggcgctggttaaaccggcgtttctggcgctggcaacaaagcttcccccgacggtacctttcagcagattgttaacccactctccttgctgcatttcgctggtcattttaaaaccgttagcggcagtacggtcataggttcgggtttcacgacgagacacttcccaggtgaggcgctgcagttcgccgtccgcggttaatgtccaggagagttgttgaccgattttcaggttacgcaattctttgtcggccgcagccagttgggtgatatcacccatatcaataccatactgattgagaatgctgcttagcgtatcgccagtggaaacaacatattcatgcacgcccgcttcaccggcgattttgtcatccagttcgtcctggggaatggcttcatcttcttgtgcagcttgatcaatcggctcactggcttcaggtaagagcgaacgaatttcgttctgttccagctcaatggttttgacaattggcgtggcatcacggtgataaacataaggccgccagacagcgacggccagagtaagaacggtgagcgaccccaacataacgcggtgtggtcgcggtaaattattaaacgccagggcgacagagcgggctatctgttgcacgtaatcacttcctcattaatctcctttcaggcagctcgcatactggttggctaattgactcaggaattctgaatagcttgttttacccagtttgatattcgtccccaggggatccaacgttcccatacgaacggatgtccctcgtgcgacgctctcaacgaccgctggcctgaactgtggctcagcaaaaacgcaggttgctttttgctcaaccaactgtgttcttatttcatgtaaacgctgcgcgccaggttgaatctcagggttaacggtaaaatgaccaagcggtgtcagtccaaactgtttttcgaaatagccgtaagcatcgtgaaaaacgaaataacctttccccttgagcggcgcgagctcgttaccaacctgcgtttcggttgaggctaattgtgcctcaaaatccttcaggttggcgtcaagtttggctcgactttgcggcataagttccactaattttccatggattgcaaccgctgtagcccgcgctatctctggggaaagccaaagatgcatgttgaaatcgccgtgatggtgatcttcgtcacttttttccgcgtggtcgtgatcatcatcatcgccgtgaatacttttcatcagtagcggtttcacatcttcaagctgcgcaatcgttacctgcttcgctcctggtaatttgcttaccggtttttgcataaacgcttccatctccgggccaacccaaacgactaagtccgcgttctgtaagcgttttacatccgatgggcgcagtgaataatcatgttctgaagcgccgtcaggaagtaaaacctctgtttctgttaccccatcagcaatggcagaagcgatgaacccaacgggtttaagcgaagcgacaacggcggcatctgcggcctgtgttgcacctccccagagagcggcggataatgctgcgaaaagaagcgtttttttatgtaacataatgcgaccaataatcgtaatgaatatgagaagtgtgatattataacatttcatgactactgcaagactaaaattaacatgacaagtctggtttccctggaaaatgtctcggtttcttttggccaacgccgcgtcctctctgatgtgtcgctggaacttaaacctggaaaaattttgactttacttgggccaaatggcgcaggtaagtcgacactggtacgggtagtgctcgggctggtaacacccgatgaaggggttatcaagcgcaacggaaaactgcgcatcggctatgtaccgcagaagctgtatctcgacaccacgttgccactgaccgtaaaccgttttttacgcttacgccctggtacacataaagaagatattttgcctgcactgaaacgtgtccaggccgggcacctgattaacgcaccgatgcaaaagctctctggtggcgaaacgcagcgtgtactattagcgcgagcattgttaaatcgcccgcaattattagtgctggatgaacccactcaaggcgtggatgtaaatggccaggtggcgttatatgaccttattgaccaactgcgtcgtgaactggattgtggcgttttaatggtttctcacgatctgcatctggtgatggcaaaaaccgatgaagtgctgtgcctgaatcaccacatttgttgttccggcacaccggaagttgtttccctgcatccggagtttatttcaatgtttggtcctcgtggtgctgaacaactgggtatctatcgccatcatcataaccatcgtcacgatttacagggacgaattgttttgcgtcggggaaatgatcgctcatgattgaattattatttcccggttggttagccgggatcatgctcgcctgtgccgcgggtccgctgggttcgtttgtagtctggcgtcgtatgtcttatttcggtgatacgctggctcatgcctcattacttggcgtcgcgtttggtttgttgctggacgtgaatccattctatgcggtgattgccgttacgctgctgctggcgggcggtctggtatggctggagaagcgtccacagctggcgatcgacacgttattagggattatggcgcacagtgccctgtcgctgggcctggtggtcgtgagtctgatgtctaatattcgtgttgatttgatggcttacctgttcggtgatttgctggcagtgacgccagaagatctcatctctattgcgattggcgtggtcatcgtggtggctattttgttctggcaatggcgcaatttgctgtcaatgacgataagcccggatctggcgtttgttgatggtgtgaaattacagcgagtgaaattgttgttgatgctggtgacggcattgacgattggtgtagcgatgaaatttgtcggtgcgttgattattacttcgttgctgattattcctgctgctactgcgcgtcgctttgcccgcacgccggaacagatggctggtgtcgctgttttggtggggatggtggcagtgactggcggtttaaccttttccgcggtttacgatacgccggcgggtccgtcggtggtgctatgtgcggcactgttatttattctcagtatgatgaaaaagcaggccagctaatctatcgctgaacacatttgtcggatgcggcgcgagcgccttatccgacctacggttcggtatctctggtagtcctggtaagacgcgaacagcgtcgcatcaggcatattgccagtgccggatgcggcgcgagcgaccaatccgacttacggcatttctggcggcgttatgccaaagtgattccacgcccgcgtcgtcgccatacgcccacgcggtgtacgctgcaaaaagccttgctgaatcaaataaggttccagcacatcctcaatggtttcacgttcttcgccaatggctgccgccaggttatccagacctacaggtccaccaaagaacttatcgattaccgccagcaacaatttgcggtccatataatcgaaaccttcagcatcgacattcaacatatccagcgcctgagcagcgatatctgccgagatggtgccatcgtgcttcacttcggcgaaatcacgcactcgacgcagcagacggttggcaatgcgcggcgtaccgcgagcgcgacgagcaacttccagcgcgccgtcatcactcatctcaagccccataaagcgtgcgctgcgactgacgatatattgcagatccggcacctgataaaactccagacgttgcacaataccaaaacggtcgcgcaacggtgatgtcagcgaacctgcgcgcgtggttgcaccaatcagggtaaacggcggcaaatcaattttaatggagcgtgccgccggaccttcaccaatcatgatatccagttggtagtcttccattgccgggtacagcacttcttcaacaactggcgatagacggtggatctcatcaataaacagcacgtcatgcggttcaaggttagtgagcatcgcagccaaatcgcccgccttttccagcaccggaccagaagtcgtgcgtaaattaacgcccatttcattggcgacaatgttggcaagcgtagttttacccaaccccggaggaccaaaaatcaacaaatgatcgagggcatcgccgcgcagtttcgctgctttgatgaaaatctccatctgtgaacgaacctgcggctgaccaacatactcttccagtaatttggggcgaatggcgcgatctgctacatcttccggcaaagtggtaccggcagaaatcagacggtctgcttcaatcatcctttacctcataacgcggcgcgtagggcttcgcgaattaaagtttcactgctggcgtcagggcgagcgattttgctcaccatgcggcttgcttcttgtggtttatagcccagcgccaccagcgcggcaaccgcttcttgttcagcatcgtcggtcgccgggctggcaggagacgtgagtaccaggtcggcggctggcgtaaagagatcgccatgcaaacctttaaatcggtctttcatttcaacaatcaagcgttcggcggtttttttgccaatacccggcagtttcaccagtgcccccacttcttcacgctcaacggcattaacgaactgctgcgctgacattccggagaggatcgccagcgccaacttcgggccgacgccgttggttttgatcaactctttgaacaatgtgcgctcttgtttattgttaaaaccgtacagcagttgcgcgtcttcacgcaccacaaagtgggtgaaaacgatcgcttcctgacccgcttcagggagttcataaaaacaggtcatcggcatatgcacttcatagcctacgccgcccacttcaattaacaccagcgggggttgtttttcaatgatgatgcctctgagtctgcctatcacatgacgctcctgcgtaatgaatcaaagataatgctgtatgataaaaaaatgctggatagatatccagcgaaggatgaagaaaacttgcgaggtgtctcgatgaactgaaaaatggcacagtataatttattctacaggttatattggaagcaaatattttaatattacatattcagtgaagaaatgcgtaataaaaatatacattgcgcctcctgaaaaaataaattttttatgctattacgtatatttgtatctatttcaatggaatgacaacgtgaatattaattaccctgctgaatatgaaattggagatatcgtctttacatgtataggtgctgccttatttggtcaaatatcagctgcatcaaattgctggagtaatcacgtcgggatcattatcggtcataacggtgaagacttcctggttgcagaaagccgggttcccctttcaaccatcaccacgctatctcgttttattaaacgttcgtctaatcaacgctatgctataaagcgattagacgctgggctgacagaacgacaaaaacaacgaattgttgaacaggttccctcccggctacgcaaactttaccacaccggttttaaatacgaatcttcgcgccagttctgttcaaaatttgtttttgatatttataaagaagcgctatgtattccggtgggtgaaatagagacgtttggagaattgttaaatagcaatccgaatgcaaaactcactttctggaaattctggttcctgggttctattccgtgggagcgtaaaaccgtcacgccagccagtttgtggcatcatccgggtttggtgttgattcatgcggagggagtggaaacgcctcagccggaactgaccgaggcggtataacttaacgcagtcgccctctcgccaggttcagccgcgattcgctcatctgcatcgcattctgactaacgtggcagtgggtgatagcaatcgccagcgcatcggcggcatccgcctgtggattagcgggcagtttcagcaaggtgcggaccatatgctgcacctggcttttttcggcactgccaatacctaccaccgtttgctttacctgacgtgccgcgtattcaaatactggcaactcctgattcaccgccgccacaatcgccacgccgcgcgcctggcccagtttcagggctgagtcagcgttctttgccataaagacttgttcaatggcgaaataatcaggctggaactgggtgatgatttccgtcacgcccgcatagatgagtttcagacgagacggtaaatcatccactttggtgcggatgcatccgctacccaggtaggacagttgcctacctacctggcggatgacgccgtagccggtcacgcgcgaacccggatcaatgccgagaataatagccatcacgcgtctccgttttgctgtttagcaggcctcatcagagagtcgctgcgacctcatcagagatttcaccgttatggtaaacttcctgcacgtcgtcgcaatcttccagcatatcgatcagacgcatcagtttcggtgcggtttctgcatccatatcagctttggtagacgggatcatggaaacttccgcgctgtctgctttcagacctgccgcttccagagcgtcgcgcactttacccatttcttcccatgcagtgtagacatcaatcgcgccgtcatcataggtcacaacgtcttcagcacctgcttccagtgctgcttccatgatggtgtcttcatcgcctttctcgaaggagatcacgccttttttgctgaacagataggcaacggaaccatcagtaccgaggttaccgccacatttgctaaatgcatgacgcacttcagcaacggtacggttgcggttgtcagacagacattcaatcatgattgccgtgccgccaggaccgtaaccttcgtagatgatggtttccatgtttgcatcatcatcaccgcccacaccacgtgcaattgcgcggttcagtgtgtcacgggtcatgttgttagacagtgctttatccaccgccgcacgcagacgcgggttagcgtccggatcgccaccgcccagcttagccgcggttaccagctcacgaatgattttagtgaagattttaccgcgcttagcatcctgcgcagctttacgatgtctggtgttggcccatttactatgacctgccataaaaatatctccagatagccctgcctgttcaggcagcgttaattacaaactgttcaatcgcctgccggttgctccaggacttagtgagcgccgccgcagcaggcgcatcaagccacttgtaagccagatgttcagtgaaaacgatctgccgctcgtgcggaagcgcaagacagaaccatgattccgtattacgcgtcacgcccggcgcatagcgatgacgtaaatgtgaaaaaatttcaaactctaccgtgcgctgacagtcaattaaggtcagttgttcagcgacaacatcaatggtgacctcttcctttacttcgcgcatggcagcttgcggcgcggtttcaccctcttccacgctgccggttaccgactgccagaaatcgggatcgtcacgccgctgcaacatcagcacccgtttcgtatcttgtgcgtagatgaccactaagatcgaaacgggacgcttatacactttatccttcacgctgcctcttcgttgactgccttcgctcatcccattcacatagttatctatgctcatgggagttcactcagttgccgcctcgatgcaacgcgaatgatttcgtgtatttgagtcatatcagttattctcagccttcttcacaacctgaatgctcagctcagccagtgcagtcgggttagcaaagctcggtgcttcagtcatcagacacgctgccgccgtggttttcgggaaggcgataacgtcacggatattgtcggtgccggtcagcagcatggtcagacggtcaagaccgaatgccagacctgcgtgcggcggagtaccgtatttcagagcgtcgagcaggaagccgaatttctcgcgctgttcctcttcgttgatacccagaataccaaacaccgtctgctgcatatcaccattatggatacgtactgaaccaccgcccacttcgtaaccattgatgaccatatcgtaagcgttcgccaccgcattttccggtgcagctttcagttctgcagccgtcatatctttcggtgaggtgaacggatggtgcattgccgtcaggccgccttcaccgtcgtcttcaaacatcgggaagtcgataacccacagcggtgcccatttgctttcgtcggtcagaccaaggtctttacccactttcaggcgcagtgcacccatcgcgtcggcaacaattttcttgttgtcggcaccgaagaaaatcatatcgccatcttgcgcggcagtacgatccaggatgtcttcgatgatttctgcattaaggaacttcgctaccgggctgttgataccttccagacctttcgcgcgttcgttaactttgatgtaagccagacctttcgcgccgtagattttaacgaagttaccgtattcgtcgatctgcttacgggtcagcgatgcgccgcccggaacgcgcagagccgctacgcgacctttcggatcgttcgccggacctgcaaatacagcaaactcaacagatttcagcagatcagcaacgtcagtcagttccatcgggttacgcagatccggtttatcagaaccataacggcgttctgcttccgcaaaggtcattaccgggaaatcgcccagatccacacccttcacttccagccacagatgacgcaccagcgcttccatcacttcacgcacttgcggcgcggtcatgaaagaagtttccacatcgatctgagtaaattcaggctgacggtcagcacgcaggtcttcgtcacggaagcatttaacgatctgatagtaacggtcaaaaccggacatcatcagcagctgtttgaacaactgcggggattgcggcagtgcgtagaatttacctttgtgcacacgagaaggcaccaggtagtcacgcgcgccttccggcgtggctttggtcagcatcggagtttcgatgtcgaggaagccgtggtcatccataaaacggcgcaccaggctggtgattttagcgcgggttttcaggcgctgagccatttccggacgacgcaggtcgaggtagcggtatttcagacgcgcttcttcggtgttgacgtggttagagtcaagcggcagaacatctgcgcggttgatgatagtcagcgaggacgccagcacttcgatttcgccggtcgccatatcgcggttaatatttttttcgtcacgcgcacgtacggtgcccgtgacctgaatgcagaactcattacgcagttcagaggccagctttaacgcgtccgcacgatccggatcgaaaaatacctgcacgataccttcgcggtcgcgcatatcgatgaagatcaggctaccaagatcacgacgacggttgacccaaccacacagagtcacctgctgccccacgtgggacaaacggagctgtccacaatattctgtacgcatgagatatcccttaacttagctgccggcggatgccccctgctgcgcaggtgaccaagtcgcagcgttagctgtatgtcacaactgaatgaaaaaaggcggctattatactggaaattctgccgcaccgtaagagcctggcccgcgctggaacgcctcgttaccactttatatcgggcctgaaatcagactctacgccagtttgctataaaggtgttgcccgaactcataaaaattaacaaaatttgtcgttccgccatcggctaatcgcattaaggtgtgaggcacgattttgttttttcaggagtcattatgcttgaacttaatgctaaaaccactgcgctggtggtgatcgatttacaagaaggcatcttaccttttgccggtggtccacatactgccgatgaggtagttaatcgcgccgggaagctggcggcgaaatttcgcgccagcggtcagcccgtgtttctggtgcgcgttggctggtctgccgattacgctgaagcattaaaacagccggtcgatgcgccctcaccggctaaagtgttgcccgaaaattggtggcaacatcctgctgcattaggtgcaaccgacagcgatatcgaaatcatcaaacgtcaatggggtgcgttttacggtacggatctggagttgcaattacgccgccgaggtatcgatacaatagtgttatgtgggatctcgaccaatatcggtgttgaatccaccgcccgcaatgcctgggaacttggctttaatctggtgattgccgaagacgcctgtagtgccgccagcgccgagcagcacaataacagtatcaaccatatctacccgcgcatcgcccgtgtgcgtagcgtggaagagatcctcaacgcgttatgatttacatcggtctaccgcaatggtcgcatcctaaatgggtgcggttggggatcaccagccttgaagagtatgcccgccactttaactgcgtggagggcaacaccacgctttacgccctgccgaaacccgaggttgtcctgcgctggcgtgagcagaccacagatgacttccgcttctgttttaagtttccggcgaccatttcgcatcaggcagcattacggcattgcgatgatttagtgactgaatttttgacccgcatgtcaccgttggctccgcgcattgggcaatactggctgcaactgcctgccacattcggcccacgggagctgcctgcgctttggcattttctcgattctcttcctggcgaatttaattatggcgtggaagtccgccatccacagtttttcgccaaaggagaagaggaacaaacgcttaatcgcggtttacatcagcgcggcgttaatcgggtgattttagacagccgcccggttcatgcagcacgtccacacagtgaagctattcgcgacgctcaacgaaaaaaacctaaagttccggtacatgctgtactgacggcgacaaatccgctgatccgttttatcggtagtgatgatatgacgcaaaaccgggaattatttcaggtctggttacaaaaattagcgcagtggcatcagaccactacgccttatctttttttacatacgccagacattgcccaggcaccggaactggtacataccctgtgggaagacttacgtaaaacgcttccagagatcggagcagttccggctattccacagcaatcttctcttttctgaatttgccacctatcatagacaggtgccatcggccattttaaagggagtttgtatggtaagcgcgctgtacgccgttttaagtgcgttgttattaatgaagttctcttttgatgtcgttcgcctgcgaatgcagtaccgcgttgcctatggcgacggcggttttagcgaactgcaaagcgctattcgcattcatggtaacgcggtggaatatattcccatcgcgattgtgctgatgctgtttatggaaatgaatggcgcagaaacctggatggtgcatatttgcggcatcgttttgcttgctggtcgtctgatgcattattacggttttcatcaccgtctgttccgctggcgacgttccggcatgagcgccacctggtgtgcgctgttgctgatggtgctggcgaatctttggtatatgccctgggagttggttttctccctgcgttagcgcacaatacgccactttctttttcccggatttttacgttatgtctcaccgcgacacgctattttctgcccctatcgccagactgggcgactggacctttgatgaacgggtagctgaagtcttcccggatatgatccagcgttccgtacccggctattccaatattatttccatgattggtatgttagccgagcgcttcgttcaacctggtacgcaggtttacgatctgggttgttctctgggcgcggcgacgctctcggtgcgtcgcaacattcatcatgataattgcaaaattattgccatcgacaactccccggcgatgattgaacgctgccgtcgtcatattgacgcctataaagcccctacgccagtagacgtcattgaaggtgatattcgcgatatcgccattgaaaacgcatcgatggtggtgctgaattttaccctgcaattcctggaaccttccgagcgccaggcgttactggataaaatttatcaagggctgaaccccggcggcgcgctggtgctttcggaaaaattcagtttcgaagatgccaaagttggtgaactgttgttcaacatgcaccacgactttaaacgtgccaacggttacagcgaactggagatcagccagaagcgcagcatgctggaaaacgtgatgctgaccgattccgtggaaacccataaagcacgcctgcataacgccggttttgagcatagtgagctgtggttccagtgctttaactttggttcactggtggcattaaaagcagaggacgctgcatgatcgactttggtaacttttattctctgattgccaaaaatcatctttcacactggctcgaaacgctgcccgcgcagattgctaactggcagcgcgagcagcagcacgggttgtttaagcagtggtcaaatgcggtggagtttctacctgaaattaaaccgtatcgtcttgatttattgcatagcgttacggcagaaagcgaagagccactgagcgcagggcaaattaaacgcattgaaacgctgatgcgcaacctgatgccgtggcgcaaagggccgttctcactgtatggcgtcaacatcgataccgaatggcgttccgactggaaatgggatcgtgttctgccccatctttctgatttaaccggacgcaccattctggatgtcggctgcggcagcggttatcacatgtggcgcatgattggcgcaggcgcgcacctcgcggtggggatcgaccctacgcaactgtttctgtgccagtttgaagcggtgcgtaaactactgggtaatgatcagcgcgcgcatttgttaccgttaggtattgaacaacttccggcactgaaagcctttgataccgtcttttcgatgggcgtgctttaccatcgccgttcaccgctggagcatctatggcagttgaaagatcaactggtcaatgaaggtgaactggtgctggaaacgctggttattgatggtgatgagaacacggtgctggtaccaggcgatcgttacgcgcaaatgcgtaatgtctatttcatcccttccgcgctggcgctgaaaaactggctgaagaagtgtggttttgtagatatccgcattgcggatgtgagcgttaccaccacagaagagcagcgacgcaccgaatggatggttaccgaatcgctggccgatttcctcgacccacatgatccgggtaaaacggtggaaggttatccggcacctaaacgcgcggtgctgattgcgcgcaagccgtaaaggtctggtattactgccggatgcggcgtgaacgccttatccggcctacaaaaccttgctaattcaatatattgcagggactatgtaggcctgataagcatagcgcatcaggcagctttacgtttgcataacctcagcgcccgtttccgggcgctattcacgtcttacgcctgaacagctggctgatcaaacgccgttaacttcggtgcattgcccgtatatttttcgatatacaccaacgctgagttaccggcacaggcatttgccagctgcgagctggggatatccgccgttaacacgttcgcactgccgtttttacacaagccattttccagatctggccatgcaccttcatgcacgcataccacgccttttttgatcccgtcagtcaccaccgcgcctgtcaaaatctgaccacgtttgttccagacacgcaccagatcgccattcgcaataccaaagcgtgcagcatcttcggtgtgaatagtgattggttcacgatcggcgatcgcatattttttacgcagttccgcatagttaagctgactgtgtaaacggtgtgccggatgtgcggtcagaagctgtaactgcttctcgtcggcggtacctttccattcatcaggagccagccaggttgggtgtgccgggcaatccttatagccaaatttttccaacgtttttgaatagatttcaattttgccgcttggcgtacccagcgcatttttcaccggatcggcgcggaaatcaccataacgaacgtactgttcgttcttctcgctgtggcgcatttcgatcagtttattttgctgccagaaggcattaaacattggcatagtgacgcgttgcgcacgggcacctttctgagcggcatcatagaaaaatttcagccacgccatttcatctttaccttcggtatagatctcttttccgccaggtttgagtaattccgcaagatcggcaaacacgtcaaaatcgttacgcgcttcaaattgcggagcaacagcctgcttcatcggcacaatatgctggttgctgtaatcaccggtcatcgtcaagtcattgcgctcaaacgatgtggtgatcggtaatacgatatctgcgtgtttggctgctgcggtccagtagcattcagaaacgacgatcatctccggtttctgccatgctttaatcagacgattagtatcctggtgatgggtaaagttaccgccacccgcccaccagatcattttgatattcggatacgtttgttctttaccgttatgctgatatttgccgccaggattttccagcgcatcgacgatacgggcaacaggaatcgccgtcattccgccatcatcagcggcctcgctggcatgtccggcaatcgccgcagacatttccggcagcacgccgccaacacgcgtcgggttgccaccgttggagtaatgataagagaaaccaaaaccgccgcccggtgtaccaatctgccctaacatcgccgccagcgtcaccagcatccagtgtttctgttcaccatattgctggcgctgaattccccagcctgccatcagcattgtgcgattcgccgccatcagttcagcgagtttgactatctgcgcttccggtacgccagtaatttccgccgcccagaccgcgctcttcggcgtattatcgctcttacctgtcagatactcttcaaactgcggatacccggtagtgtatttttcaaggaacactttatcgtgtttgccttgtgtcatcagggtatgcgcaatccctaacatcagtgccacgtcggtgcccatattcggcgcgatccaggtggcattatcgtcaaagaattcgatggtttcggagcggataggatcaatggcaatcactggtttgccagattttttcagctgatggaagtattccagcccttgctcatcggtactgctccaggcaatttttaaggtattcagcgggttcattccccacagcaccacaacctggctgttttccagaatcagcggccaggaggtctgctgttcatacacctctacagaaccgaccacatgcggcatgatcacctgtgctgccccggttgaataatcgccgctatgcccggaataaccgcccgccaggttcatataacgttgcagtaaggtttgcgctttatgcaacacgccagaagagcgccagccgtaagatccggcaaaaatggccgatggtccgttagctttacgaatacgatcatgttgctcatgaatcagttttaatgcctgttcccagctcacctgtacataggtatcttcgccacgacctttcgccggttgcagtggattatcgagatagctttttctcaccatcggatgctgaatacgcgccgtggtgtgtacctgatccgccgccgtagactgtaaggaattcggtatggttttcgccagcgcgcctgttgaagaaacaatcttgccgtccttcacttctacgttcatcgctccccaacgtcccgcggtgaggattttaccgcccttctcttctgcccatgcggggagcggtgctgccgatgtcaccaccagcgctccagcggcaataccgctgtgtttaataaattcacgtcttgttaatgtcataacttcctccctgatcaacgaggatcactgtttctcggtaatatctttggcgttgtactggaaataccgcgttaaaatgtccagttcgttttcgctcatgctggttcgtgcccccattcctttggcaatggacggccacgcattgacggtgtaatggtcggcggcaataggggcatgacaaccagcgcaataggtatcgtcaagtttttcagcgtattgccatagcggtttacggtccgctaatgcgggatcggtaagcgcaccctgtaaagacgcctgacgccattgattgccgtattcgtcagcctgccattccccgtttacagtgagcgccttgataccttcttcacttaatgtggctagcgccagccgttgacctgccgccaggtagagcgtgttttcactgccctgcatttgataaccctgcaacagaacgatcggctgtttgccactggcatcaacgacggtgagatcggttccaggattcacggtagccagctcgcctatgtgagaagttttgaaaggataaatatgtgcgccattagtaactgaagtagcggcctgactttccagctcatgcgccgcgttgtcatccatttttatttctggcggaaaatgggcaatgcctttatgacaatcgatacaggtttcgctgtccttttgtgctttgttatgcattttctgcgcagattcactttgcgaggcaatatccatggcatcaaaagaatggcaactacggcacgttgcagagtcagtggcttttaattctttccatactgtttcggccatttcctggcgatgagcttcgaacttatcgtcactgtctattttgccgctaacaaattcatgataaatatctttagatgcctttaatttagcaaataaataatccatccctgactttggaatatggcaatcggcacattccgcacgtatccctttctggttcgaaaagtggacagttccctgatattcctcaaaaggtttactcatcgagtggcaggaaaggcaaaatgctgtatccgacgttttatgtaagactttttgcgccagcaataacccgccgccaccaaccacaaccgctatcagcaaaaacaataacccaatgcgttttttccctcgcatagattcctctaattaaattactggacaccgaaatcattgtataattaaatatacaacgaattaaccgcttgcataattaggcacaacactgcctgaaacaatcgataaagaatatgatttattacaatgtaatcattaattgctaaggaataacccagttgctatttagaatatatatttatcagttttagtaatttaaatcccataattaatgtgaatatatacaatatttttagcacaacgctatgcgcactgtcacccgctcaacagatcacggttatcgttcgttttttatactgttcagggataaaaaaaggcccctgttgaaattgcaggggcctggtacgagcaagcatcatattgggcgacatgatgcaacggtaaaaatcatttggcctgatggcgttcaatgattcctttcatttcagcaaccgccgccccgtctacgatataacgcgaatactcgtccgcgtgttcatctgatgacatggacaatccttgattacgataacgcatcggtgaggcttgccacgctcccgcggagctatggacttccagcactccggcatcgaggaagtggtgcaggttttctgcacggactcctgctccggccataatgattggagcatcacgatgggcaataagttccataatttttgataaaccttgcagtgcgtctgatttttgccctgatgtcagtacccgggcaatgcccaattccgcaagattattgagtgtatataaagggttagcgcacatatcgaaggcgcgatgaaaagtcactgccagcggaccggcagcagccattattttttccattcgtggcatatcgacattcccgtcaacatcgagaacgcccgtcaccagtccaggaaaacctaattcgcggaccgtgcgcacatcctcaagaatggcggcaaactcaccgtcgctgtagcaaaaatcaccaccgcgtgggcgaattatcggatgcacagggatcgtcacccgctggcgcacggatttcagtacacccaacgacggcgttaagcccccctcttttggggctgcgcataattcaactctgtctgcgccgttttgctgcgccgttagtgcacattccatgctgtaacagcaaatttccagtaatgccatttttactccttaattacgccgactgctcgctggcaacgatctcttcaatggaccacggatgaaacttaatagttgttttgccatcggtgaccgccagcgtcggattcggtaatcgctcatgctcaccttttggcgaactggttttcactgagatccccggtaggctgagtccttcatcagaaagcaatgccagcgcacgggcattcagcgtttctggatcacccggcagaacgatttcaatatgttcccaaccttcgtgtgggtaacgtttttccccgggccacggtagctccacaatagaaaactgccagtgcgcaacctgtaccggttcatgcaatttaaacagacaaatcggtctgccattgatcatattttctgacaaaagctcgccacactgttcaaacccgcgacgccagcgttcagcagtggcgttttgatggcaacgcaaagaaatgtgatcggcagtcagcggagtgatattcaaccccagacggcgggaaagttcatctaatgcgtggataaatcgcggtaaatccgatgcaatatcctgcagctcgtcgatagattgccagttcgccataatcactcttcgtctttcagtaaaagcgttaatttaccctgttgccctgtgccaaccaaccgctgatttcacgccgcttctgatgcaatagtgaaaacggcaatacgccacgcgcacgttgctgacgaaaacagccatttgcagtatactcccgccctaatttctttaactggtgcgggcaatttttgctcgcttcatcaatgtaaggtattccggtgaatattcaggctcttctctcagaaaaagtccgtcaggccatgattgcggcaggcgcgcctgcggattgcgaaccgcaggttcgtcagtcagcaaaagttcagttcggcgactatcaggctaacggcatgatggcagttgctaaaaaactgggtatggcaccgcgacaattagcagagcaggtgctgactcatctggatcttaacggtatcgccagcaaagttgagatcgccggtccaggctttatcaacattttccttgatccggcattcctggctgaacatgttcagcaggcgctggcgtccgatcgtctcggtgttgctacgccagaaaaacagaccattgtggttgactactctgcgccaaacgtggcgaaagagatgcatgtcggtcacctgcgctctaccattattggtgacgcagcagtgcgtactctggagttcctcggtcacaaagtgattcgcgcaaaccacgtcggcgactggggcactcagttcggtatgctgattgcatggctggaaaagcagcagcaggaaaacgccggtgaaatggagctggctgaccttgaaggtttctaccgcgatgcgaaaaagcattacgatgaagatgaagagttcgccgagcgcgcacgtaactacgtggtaaaactgcaaagcggtgacgaatatttccgcgagatgtggcgcaaactggtcgacatcaccatgacgcagaaccagatcacctacgatcgtctcaacgtgacgctgacccgtgatgacgtgatgggcgaaagcctctacaacccgatgctgccaggaattgtggcggatctcaaagccaaaggtctggcagtagaaagcgaaggggcgaccgtcgtattccttgatgagtttaaaaacaaggaaggcgaaccgatgggcgtgatcattcagaagaaagatggcggctatctctacaccaccactgatatcgcctgtgcgaaatatcgttatgaaacactgcatgccgatcgcgtgctgtattacatcgactcccgtcagcatcaacacctgatgcaggcatgggcgatcgtccgtaaagcaggctatgtaccggaatccgtaccgctggaacaccacatgttcggcatgatgctgggtaaagacggcaaaccgttcaaaacccgcgcgggtggtacagtgaaactggccgatctgctggatgaagccctggaacgtgcacgccgtctggtggcagaaaagaacccggatatgccagccgacgagctggaaaaactggctaacgcggttggtattggtgcggtgaaatatgcggatctctccaaaaaccgcaccacggactacatcttcgactgggacaacatgctggcgtttgagggtaataccgcgccatacatgcagtatgcatacacgcgtgtattgtccgtgttccgtaaagcagaaattgacgaagagcaactggctgcagctccggttatcatccgtgaagatcgtgaagcgcaactggcagctcgcctgctgcagtttgaagaaaccctcaccgtggttgcccgtgaaggcacgccgcatgtaatgtgtgcttacctgtacgatctggccggtctgttctctggcttctacgagcactgcccgatcctcagcgcagaaaacgaagaagtgcgtaacagccgtctaaaactggcacaactgacggcgaagacgctgaagctgggtctggatacgctgggtattgagactgtagagcgtatgtaatcgatttttcgtgagagtgaagcctgatcagggttagccgatcaggcttttttattgccatctaaatgtattctgaaaatggacatgccattgttttctcactgttggataagaggccagaagcgtaatatccggccccagggaaacgataacggttgaatttaaggaataccgcagtgtttaaatttcttgtattaacattaggcattatctcttgccaggcttacgcagaagatacggttatagtaaacgaccatgacatttcagccatcaaagattgttggcaaaaaaattcagatgatgatactgacgttaacgtgatcaaatcatgcctgcgacaagaatacaatctcgtcgatgcgcaattaaataaagcctatggtgaagcttatcgttatatagaacaagtgccacgcacaggtgtaaaaaaacctgataccgaacaacttaacttgcttaaaaaatcacagcgagcctggctggattttagggacaaagaatgtgaattaatcctttcaaatgaggacgttcaggatttaagtgacccttattctgaatcagaatggctctcatgtatgatcatacagaccaatacgcgaactcgccagttgcagctataccgtaactctgaagatttttatccaagccctttgacaagaggataattcacatctttttggcatgttttgttgcaagctattcctgataaataattgcaacaagacatcgagcctttttcactgagttattaaacatactcgcgagcgcgtaatttttttgtccttcagcgataattcacaatcacttcattacgttgtacctttagcggtggaattaaccgcccaccgcctggcacttcccagataaatcgcaacggttctgctgccgctataccggaaaaggccacggtggttccgctctgcccctctaattcgacacaacgagattgcgaacacaagcgaacccgcagtcctgaaggtgtcgggccgataagctgataacgccacgctaccagcgtcatcaatcctgaagcaggttgtcgcgtagaaagaggcgcagacgacatcgactcaccgcgatgatttagcgtaattcctacactacttgcctgccacatcccctccccggcggcttgcaccagcagcggaaacaataatattgctaataaggttctcattatttgccgccaattgtcgccgtcatgcggatatgtcggttatcagacagttccagattcgacaggaccactaactgcggcaagctgcggcgcaggaagcgagacaataatggtcgcagcgcgtggttcaccaacaatactggcggcgcacccagcatctcctgacgggatagcgcttcctgagtttgcgccagtaaacgatccgccagccctggctccagtcctcccccgccctgcagcgcctgtagtaacaaacgttccagcggtgtatcgaggccaataacatggacttcatctttgccaggaaaccactgctgggtaatcgcccgtcccaacgccacgcgcacgacggcggttaattcatgtggatcgctttggatgggcgcatgttccgccagcgtttcgagaatggtgcgcatatcgcgaatcggtactttttcatcgaggagattttgcagcactttatgcagtgtggtgagcgtgacgacgccaggaacgagatcttccgtcagctttggcatctcctgggcgacgcgatccaacagctgttgcgcctcctgacgaccaaacagctctgcggcatgctggctaatgaggtggttaagatgcgttgctaccaccgtgctggcctcaaccactgtgtacccctgaatctgcgcctgttcttttagcgcactttcaatccagatagcattcaggccaaatgccggatcgacggtcgcctcaccaggtaacgtcccggcagcggttccagggttaatcgccagccagcgccccggataagcatcaccactgccaatctccacgcctttcatcaaaatgcgatagcgggcaggttgcagatccatattgtcgcgaatgtgcaccactggcggcagaaatcccatctcctgggcaaatttcttgcggatactgcgtatacggcccaacaactcaccatcctgctggaaatcgaccatcgggatcagtcgataacccacttccattcccagagaatcttccagttgtacatcgttccacgtcgcttcgacaacggtattattctctgccatttttaccggtttgggttcggcaggcgctttttgttcgcgtccgcgtatccaccaggccagcccgagcaatccggcagtgaacagcaaaaataccaggttcggcattccaggcaccaggccgagtaaaccgagcacggcggcgcttaacaacataacgcttgggttactgaaaagctgattcaccatctgctcgccaacatcctgatcggtgctgacacgcgtaacgatgacccccgcggcggtagaaatcaccagcgccggaatttgtgccaccagaccgtcgccaatggtcaatagcgtataactttccgccgcgtgtcccatgctcatgccatgttgcagcacgccgaccagcaacccgccgacaatgttaatgaccatgatgaggatcccggcgatggcatcgccgcgaacaaacttacttgccccgtccattgagccgtaaaaatcggcttcctgagtcacttcggagcggcgttttttcgcctcatcttcaccaatcaatccggcgttaaggtcggcgtcaatcgccatctgcttacccggcataccatcgagaacaaagcgcgcacccacttctgcgatacgcccggcacctttggtaatgaccataaagttgatgatcacgagaatgacaaacaccacgataccgatagcgaaattgccaccaacgaggaagtgaccgaacgcttcgaccaccttccctgccgccgccgcgccggtatgcccttccattaaaatgatacgggttgaagccacgttaagtgccagacgcaacagcgtggtaaacaacagaatggtcggaaacgcagcaaactcaagcgtgcgctgggtaaacatcgccaccagcaacaccatgatcgacaaggcaatattgaaggtaaacaacaggtcgagtatgaatgcgggcagtggcagcaccatcatcgacaagatcaacaggatcaaaatcggtccggcaaggatctgccattgtgtcgatttcaggtttgcgggcaggcgcagcatcgcggccagattactcatgggtcggtttctcgttaataaaatccagggcttccggcaccggaagatgagtaggttgtacagggcgctgtccaccagccagacgccagcgtttcagttgccagacccaggccagcacttccgccaccgcggcgtacagttgacccgggatttgttgaccaatctccgcatgtcgatacagcgctcgcgccagcggcggcgcttcaagcgtcgggacgttattttcagcgccaatttcacgaatgcgcagcgcgaccagccctgcacctttagcgaccactttcggtgcgctcattttgttttcgtcatactgcaacgctaccgaatagtgggtcgggttattgacaatgacatccgctttcggcacatcggccatcatccgacgccgtgcagcagctcgctgcatctgacggatccgccctttaacatgagggtcaccttcgctttgtttgaactcatcacgaatatcctgccgtgacatacgcagctttttcaggtggctgaatatttggaaaaagacgtcaaatcccaccattggaatgacaccaagcaccaccagcagtgcgcatagccctaccaaatccatcgcattacccatggcggtaatcggagactcggccatcaagcgcatcatctgcggccagtgatgccagagaaaaaaccccgtcacgctgccaaccaggatggttttcaaaattgctttaagcaactccgcgccagtctgagccgagaacatccgtttaatgcccggtagcgggttgagtttggaaaacttcggctgcaaggatttgccgctaaataccagccctcccagcatgaccggagaaatgagcgccaccagcaccacgccgctaatcagcggcagcagcgccagcatggcttctctgatcagcagaataatctgcccgaggatcagattcgggtcattgataatactgtgatcaaaatgcagcccagcggagagcatgcccgacaatcgacgggccagcgacacaccgccaaaccagataacactaacgcccaccagcaaaatcagcagtgaggtcagttcacgggaacgcgggatttgcccctcttcccgcgctttttctagtcggtgaggtgtgggggcttctgttttgtcgtcgctctcgtcagacacgtcgccaatcctggaaagagtattaagcgtgaatgatgccagagcgcaaagcgttcaatggtttgagtaaggggcaaaacaggcgggatttagggcttttgctgccacacatcaagcatagtgtgcgtttgtcggatgcggcgtcatcgccttatcagaccgcctgatatgacgtggtcacgccacatcaggcaatacaaatcaaaatccaagactatccaacaaatcgtccacctgatcctgactggctaccacaccggctttgctggtatcgacctgaggtccattaagcaaactctggttttcacgttttggacgcgactcctgttccgggatgttttccaacagcaccatcagcaactggcgttcgatctcctgaatgacatccatcatccgcttaatgacctgcccggtgagatcctgaaaatcctgcgccatcatgatttccagcagttgcgcgttagtaaagctggtatgcgcgggtacatctgccagaaattgtcgtgtatctgttaccagttcacgggcgtcggcaaggtcaatcggatcggcaaaccagtcatcccaacgttgggttaacgcttttgctgatttctccatttgatcctgatgcggttgtgacgcctcaacactgttcagcgcccgctccgcagcctgggcggtcatctgcacaacatagtacaaacgatcgcgcgcatcggggatggcttccgccgcttcggcaatggcctgatccagccccagttcccgcaaactgtcgcgcagcatacgcgtcaggctgccgatgcgcgcaatgatatcgccagctgaatgctcgtcagcaggtttgattgatggttgcatcatagtcgcatcctcacatgcccagtttctcaaagattttgttgagtttttcctccagcgtcgcggcggtaaatggcttcaccacatagccactggcccccgcttgcgccgcagcaatgatgttctctttcttcgcttctgcagtcaccattaacactggcaatgccgacatcgcgccatccgcacgaattgttttcagcaattccaggccatccatattgggcatgttccagtcggagataacaaatccataaccgcctgcctgcaacttattgagagcgtcgacgccatcttccgcttcctcaacattattgaatcccagctctttcagcaggttacgcactatgcgtcgcatggtggaaaagtcatccacaaccaaaaatttaagttctttatccgccatttcacactcctgatttaaatacgtatcgcctgtccggcactaatttttgccaacatttgctggcttacctggctaagatcgaccacttcgcagacaccacccatattgatggcctcgcgcggcatgccgaacaccacgcaacttgcttcgttttgcgcaagggtccatgcccccgcctgacgcatcgccaacattcccgccgcgccgtcgttgcccataccggtcaggatcaccccaaccgcattacgccccgcctgtttggcgacagaatggaacaacacatctaccgaaggccgatgacggttaaccgccgggccatcgtgaattttgatttggtaatttgcgccactacgcgacagctccatatgccgatcgcccggcgcaatataggcatgccccggcaagacacgttctccgtcttcggcttctttaaccccgatctggcaaagcttattaagtctgtcggcaaaagagcgggtgaaaccgggcggcatatgctgggtaattaacagtgccgggctggaaagcggcaacggttgcagtacgtgacgaattgcctcagttccacccgttgaagcaccaatcgcaatcagtttttcagaactcaacaacggccccgccttcagcgttgtcggtgccgacaatggcttatgtgctgcaaggctcgcctttgctgccgtacgcaccttttcagcaatcatttcgttatacgccagcataccttcgcgaatacccagttgcggtttggtgacaaaatctatcgcccccagctccagcgcgcgcagcgtgacttctgaccctttgccggtcagggaagaaaccatcacaacgggcattggacgcaaacgcattaatttttcgaggaaatccagtccgtccatccgcggcatttcaacatccagcgtcagcacatcgggattgaatttcttaatcaagtcacgcgcgaccagcggatcaggcgcggtcgccaccatttccatgtcgctatggctgttgatgatttctgtcatgatctggcgcatcagtgccgaatcatcgacagataacaccctgattttgctcatcgttaatccttacttagcgcatacaccgtctgaccacgcagcgtgaagcggcgctcaaggtggctaaagttttcagagtgacccgcaaacagcaatccgtcgggtttaaggagcggaacaaagcggcgcaaaatctcctgctgggtagtttgatcgaagtagatcatgacgttacgacagaagatcgcatcaaacggccccggcacggtgtactgtttcgccagtagattcagcggggcaaaatcaacatagttcgccagctcctgacgcacgcgtaccagcccttcatgcggccccgtccctcgcatgaaataccgttgcagttgctgcggcgtcaggtttttcaactcttcatggcgatagataccgcttctggctttttccagcacttcggtgtcgatatcactggcaaacactttccagcgtccgggcgcggtgcccaatgtgtcagccagcgtcatcgcaatgctgtacggctcttcgccggtcgaagccgccgcgctccatacgcgatactcgccagaacggcgacgtgcgtgatccgcgagcagagggaaatgatgtgcctcacggaaaaatgccgtcagattcgtggtcagcgaattgataaacgcctgccactcaccgctgtgctgattagattccagcaagttcagataatgaccgaaatccgtcagtcccagcgaacgcaaacgacgaaccagtcggttgtaaaccatgtcgcgtttatggtcagccagaacgatcccggctcgttgatagatcaattgacttatccgccgaaaatgcgcgtcggaaagcgccaggcgctcggtcatctgtaacaataaagacgtttgcccacagggcagagatgaagtcatagcgccttctcaatcacttcaggataccactggcgcaatttgtaactgcaccgactcatgtcgtgctacttcatgttcttcaagggtaaataccgccacacgcgacgaaagatggtcggcctgattcgccagttgttccgttgccaccgccgcttcttctaccagcgaggcgttctgctgagtcacctgatccatctggctgacagcctgtgcaacctgctcaatcccccgctgttgttcttccgacgcagaggcaatttctcccataatgtcgttcacgcgggtcaccgaactgacaatatcgatcatggtcgcggcggcgttattcaccagtttcgaaccctgctggacacgattgactgactcttcgatcagccctttgatctcttttgctgcctgcgcgctacggctggcaagattgcgcacttcacctgccactaccgcaaaaccacgcccctgctctccggcgcgagccgcttccactgccgcattcagggccagaatattggtctggaaagcaattccgtcgataacgctgataatgtcgccaattttttgcgagctggtggcgatctcctgcatggtgtgagtcatggtactgacctgaacaccgcccgcctgcgccgttgtcgcggcattttttgccagttccgacgcctgtcgtgcgttatcggcgttttgccctaccgtggcggttaattgctccatactggcggccgtttgtgccagcgatgccgcctgctgttcggtacgacttgagagatcgttattgcctgcgacaatctccgcgataccaatgtgcatctcctggcttcccttacgcacatcacttaccgtcccacgcaaagcctgctgcatggtcttcagactggcaaaaatggcggtgatctcattacgaccatataccgcaatcggacgcgccagattacccgcagcaatgctgtcaaaatggctaccgataatggccagtggttgaacaatcatcttgcgcgtccaccacagcgcactgctgatgtagatcgccgcaacaataatcatgctgataaacaccagtgccgaaatctgatagttacgctggctttgcgcactggcggcttccagcacatggttgatctccagctgccaggcctcaaagttaacgtcaaacgcattctgtgatccctgcaccggcgcagtgaggaaatccgaaagttgattactttcaagccaggtcgcctgatgttcgagatcgttgtgccagcgggcaaaacttttctccgtctctttttgcaatcccctgacgtgctcgttgcccgcagtcatcgccataaaacttttaaacagcgtggtggattgcgtcagactggcgcgcgccgtcgtcatcaacgttttaatgtcatccgccggatagctaagtgccgtcagagtgcccgctttgttcagcgcggtactggcctgtaacattaccgcccgagtttgcgctaatgccgcacgttgctgattgctctgctcgacctgattcagtcgttgcaaatcgtcgcgaaatgcccaaaaagacatgccgttactgccaatctgcaagatcccgcagagaatcaaaattaaaaacagcgtggtcgaaattcgaatacgattaaacatcaacgctccccatcaggcggcaatgaccgcgttagtaaatactcgtcaaaatgtttcccagtttggatcttgttcagcaattcgcagtcgtggctgagccggtggttgctcactggcaggacgggatggtgtttgcggtttattggtgagtgggctggctgccagacggaacgcggaaactgcttgcgttaaacgactcgcctgttcttccagcgcagcggcggcggcagctgattcctgcaccagcgatgcgttctgttgcgtgacgcgatccatttccgaaaccgccaatgcgacttgatcgatgccacggctctgttcatccgatgccgatgcaatctcgcccataatgtcagtcacgcgagtgacagcattgacgatattgttcattgtttccccggcgctttcgaccagcaccgaaccggtatcaacgcgtgagacggagtcttcaatgagggctttgatctcttttgccgcctgggcgctgcgactggcaagattacgcacttcacccgccaccacggcaaaaccacggccctgttcacccgcacgcgcggcttcaaccgcggcattcagcgcgaggatattagtctggaaggcaataccgtcgataacgctgataatgtcggcaattttcttcgaactatcggcgatctcatgcatcgttttcactacgccatccaccactttgccgccgtgctgggcggtgtcggaggcactttgcgccagttgcgaggcctggcgggcgttatcggcgttttgcttcactgtcgcggtgagctgctccatgctggcggcagtttcttccagcgcggatgcctgctgttcagtacgggaggaaagatcggtgttgcccgccgcaatttcacgggtaccggcatagatggcatctgaaccttcgcggacatgagtgacggtgtcagtcaaagagcgttgcatatgtgaaacgctctgcgccaggtcgcccatttcactgcgcccgtcaatggtcagggtattcgccaggttaccaccggcgatttcgcgaatgtgagcaataatttttgccagcggagtaagcaacatacggcgaatgccgtaccacgccaccagcagaatcaataccaccaccagcgcgataaccgccagttgccactgggcaaatcggtaatcatctgcgttgtcagtgacgatatcgcgatacagtttttcactgctgagggcgtactgagcaaacgcttcgcccattgcattttgcattccctgggttggctgagcgaaataagctccagtattgccataatctagataatcaatcagttcagttaacgctgtgtaatagtttttatatttttcatcaatattacgactggtagcgaccatttcaggtaacggtgccatgcttttgaattttttataatgcgtcgctgcctgcgccaatgttttcctggcgctatcgagcaattcaactttggcgttactttgttgattggaggaatccatcatcatccgtaccgctgaacgactcaggttaatgcgcgtttgcagcattaaatcccaggttgacgtcagctcgccctgctgttcccgtaattgattggaaaccacaaagctcttctggctatggtgaagggaagaaaaaaacagactgccggaaataagctgtaacagtgcgaatacccccagcaccattaccaacagcgtgactacgcggatacggttaatcataaggcaccttcctgaaaacaagttgatctcgttatcggcaaggaggggggaaactttattgctgatgccacccgccgcgaaattgaaataaaaaacccgatgcgcagatcatcgggttcatttcaattgaggaaatcgggagaattacgccacttctgacgccgcgctatctaacagcgccatctcttcgctgttcagcagtttttcgatgttcaccagaatcaacatccggtcgcccagtgcgcccagtccagtgagatattctgttgaaagcgtcacggcaaattccggtgccggacgaatttgctccgccgtcaatgaaagcacgtctgagacgccgtcaaccacgatgccgaccacccgctgtccgagattcaggacgataactaccgtgttgtcgttatagtccacatccacctggctgaacttaattcgtaagtcaacaatcggcacaataacgccgcgcagattcgtgacgcctttgataaacgctggcgtgttcgcaatccgtgttacctgatcgtagccacggatctcctgcactttcaggatatcaataccgtactcttcatcaccaagggtaaataccagaaattcctggcctgacggctcgctggccagctttgttacattcgtcataccggtcatattgttacctttttactcattcaggcggcggtgttcgccatacgttgttcgcggtttatcgcctgcaaggcggagacatcaacaatcagtgccacgctgccgtcgccaagaatggtcgcagcagaaatgccggggactttgcgatagttactttcaaggtttttaaccacaacctggtgttgaccaattaattgatccaccagcaaggcgtagcggcgaccgccactttgtaagatcaccacaattccctgggtggcttcggttttcgcgcccgcgacgttgaacactttccacagttcgacgatgggcagatattcaccccgcacttccagcacccgctcgccgccggccagtggatggagatcggcttcacggggttgcagtgattccataacagcattcagcggcagaatgaaaacttcatccgcaacgcgtacggacatgccgtcgaggatggccagcgtcagcggcagtaaaatgcggatcgtagtgccagtaccctgcttcgactggatttcgacatgaccgcccatcttctggatattacgtttaacgacgtccatgccgacgccgcgcccggagacgtcggtgacctgctctgccgtggagaagccaggtgcaaatatcagcatcgcgacttcgtcgtcgctcatgttttcgctgacagtcaaaccttgcgaggccgcttttgccagaattcgctcacggtttagccccgccccatcgtcggtcacttcaatgcaaatgttgccgccctgatgttcggcagacagaattaaatttccgacgctgtttttacctgcggcgagccgtttttctggcagttcaataccgtgatcgaggctattgcgtaccaggtgggtcagcgggtcgataatgcgttctatcaggcttttgtcgagttcagtagaactgcccaccagcgtcagttctacctgcttgccgagttttcccgccagatcacgcaccagccggggatagcgactaaaaacatattccatcggcatcatgcgaatcgacatcactgattcctgcaaatcacgggcgttacgttgtaactgccccatgctggttatcaaatcaccatgattaaccgggtccagttcgctggaacgctgggcaagcatggactgggtgataaccagctcgccgacgaggttaattaattgatcaaccttttctaccgctacacggatgctggtggattcattgctgcgcgtcgttttttcccgctccacgcggccggttggcgcttgttcggctgccagtttaagcactggtggggtggatatttttggcgagacttctactgtttcaaaggtaatctgatcggcttcaatcacaaaacagagtaccgctgtgatgtcatcttcggcgatgtcgcccggtaatattgccgagagcgaatccgcccctttcaccacgtcagttaacgttgtcagatgtcccagttcttcttccagcaggtcgacttccccggccttcaggcgcgaaaggataattcgtcgcggcgactgactgcgactctgctcatcttgcggttcacttttggcaaccacacttaatcgggtcactgcggatggcgtttcgcctttcgcttctaatgccagttgacgcaaggcctggcagatataatcgaagctggcggcatccggctcttgcgactgtttataagcgtcgagctgttcttgcatgatgtccttcgtttccaaaaacagattgataatgtcggtgttgagttgcatctcacctcgtctggcttcatcgagcaggttttccatcagatgcgtggtttcctgcaaaacgctgaagccaaaagttcctgcccctcctttgatcgagtgggcagcccgaaagatggcattcaattgttcggcatctggcgcttccggctgcaaaaccagcaaatgctgctccatgtcagccaacagttcgtccgcttcatcaaaaaatgtctgataaaaatcgcttatatccatgctcacgctgtcacctcggttcggctgatggcattgtgggaacactgacctgtggtgcaacctcaggtttttccagggcgcttactggctcattctggctttcggcgttttcatgcaaaatggcctgttcggcttgtttgttcagtaccagcaggctgatgcgacggttgacggcatcatcaggtccgcgatcgcttaagcgcatcgttgccgccatgccgacgacacgtaacactttgccgctatccaaccctccgaccatcagttcgcggcgggatgcattggcccgatcggcagaaagctcccagttgctatatcctttctcaccgctggcgtaggggaaatcatcggtatgacctgaaaggctaatacggttgggaataccgttcagtacaggcgcaatggcgcgcagaatgtcgcgcatatagggttcgacatcggcactgccggttctaaacatcgggcgattctggctatcgatgatctgaatacgtagaccttcctggaccagatcgattttgagatggggacgtaacgcccgcagtttcggatcggactctatcaactggtcgagatcaccccgcaatttccgcaatcgactttgctccatgcgttttttcagctcttcgatgttcggctgcttattcacttccccctggctttgggtgtaatcatcaccaccgccgggaattgggctttcactattagaaatgcgatcgccgcccgtaaccgcagtcgccagtggagtccggaagtactccgcaatctgaatcagctcttttgggctggagatggagatcagccacatcaccagaaaaaaggccatcatcgcagtcataaagtcggcataagcaatcttccacgatccatgtgctgccccgtggcttttggctttgcgtcgtttgacgacaataatcggatgcgcttgattcttcatgcttcctcggttgtcgtctgttgttgcggatttttcaccgcacgcacatgctcttccagttcaataaacgacggacgttcgctggaatagagcgttttgcgaccaaactcaacggcgataggcggtgcgtaaccgttcagattagaaagcagagtgactttgacgcactgcatcattttgctggtttcggcgcttttctgacgtaaaacagtcgctaatggggaaataaatccgtaagccaataaaatgccgaggaaagtccccaccatcgcatgtgcgataagcgcacccagctcggcggcaggacgatcggctgaacctaacgcgtgaacgacccccattacagccgcaacaataccaaacgccggaagtgagtccccgaccagcgccagactgttcgccgggacttctgcctcgctttcgtgcgtctcaatctcttcatccatcagagcttcgatttcgaaggtgttcatgtgaccgctgataatcaggcgcagataatcgacgataaaatcaagcatgacgctatccgcgaggatgcgtgggtagctggcgaagatctcgctctcacggggattttcaatatcacgttccagcgaaaacatccccatctgccgcgatttcgccatcaaccgataaagcagagccagcagatccatatacattgctttggtgtatttggagcgacgaaacagcaacggcagcgccttcagcgtgcctttaatcgctttgccattattgccgacgataaacgacccaatccctgcaccggcaataatcaccagttcagcgggttgatagagtgctccaaggcttccaccggtcatcaaataaccgccgaaaactgtaccgagaacaaccaggtaacctaataagataagcacgacatcatccttccactgttgaccatgacaggatgttcagtcgtcaggcgttaacgcgcgattggggcaaaaaaaagcagcggtacgtcgttaccgctgctggaatgttgcgcctcaccgtatcagttaaacagcctgtactctctgttcatccagcagttgtgggataatatcggcaggattctgggaaagtttacgtctttttactgcccgggatggcggttgacataagctgcaggcaaagctgccaacaggctggtgagcgtgggtaataaaattgccgccgcagcagttgcagctggaaagttgcagtaatccactttcaacaaaccgcaccaatgtccaggcacgggttaatgccagcagtggtccttcttctgcttgtgggcactgttcaaggtataaacggtaggctttgatcaccgcatcgacgccattacacaaaccggttttcagtaaaaactgccatgcattacagaacatcgaagcatgaacgttttgttcccaggtcataaaccagtcggttgagaatggcagcatgcctttcggcggtgggcttccgcgcagttctttataaagttttatcaggcgtccgcgacttaactgtgtttcgctttccagcatctgcaaacgagcgcccagggtgatcaattccattgccagctgaatatcccgcgcttcctgaacaatgcttttttcactcatgatcaggcccttttcttgcgcagcgcttcttcaggctgattaacatcattcagcaagcgtgttgagagcatgatgccggtatgaatttgctggagatcgtcaacgcgggaatcttgcgtcaactgagtaatcgtctggtggctgtcaaaacggaagtgacaaaccagttgattggtttctgccagcttaaccatttgcggaagagtcagtgccgctaacgttgtcgccatttcttcatttatgccgagacgaaacatagcggacgctttgtcctgaacaatcaaacgctgtgcaagtagtaaatatgacaagttgatgtcataaatgtgtttcagcaactcggaggtatgcattattcccacccagaataaccaactttatttttatgcggtttcaccgcaccccgtgatgtcgccgggaagccccggtaaaaaataattagcattagaatagttgcgataagctgcaataagcagaaccacctttttggtttaatatgtccttacaaatagaaatgggtctttacacttatctaagatttttcctaaatcgacgcaactgtactcgtcactacacgcacatacaacggaggggggctgcgattttcaataatgcgtgatgcagatcacacaaaacactcaattacttaacataaatgggtaatgactccaacttattgatagtgttttatgttcagataatgcccgatgactttgtcatgcagctccaccgattttgagaacgacagcgacttccgtcccagccgtgccaggtgctgcctcagattcaggttatgccgctcaattcgctgcgtatatcgcttgctgattacgtgcagctttcccttcaggcgggattcatacagcggccagccatccgtcatccatatcaccacgtcaaagggtgacagcaggctcataagacgccccagcgtcgccatagtgcgttcaccgaatacgtgcgcaacaaccgtcttccggagactgtcatacgcgtaaaacagccagcgctggcgcgatttagccccgacatagccccactgttcgtccatttccgcgcagacgatgacgtcactgcccggctgtatgcgcgaggttaccgactgcggcctgagttttttaagtgacgtaaaatcgtgttgaggccaacgcccataatgcgggctgttgcccggcatccaacgccattcatggccatatcaatgattttctggtgcgtaccgggttgagaagcggtgtaagtgaactgcagttgccatgttttacggcagtgagagcagagatagcgctgatgtccggcggtgcttttgccgttacgcaccaccccgtcagtagctgaacaggagggacagctgatagaaacagaagccactggagcacctcaaaaacaccatcatacactaaatcagtaagttggcagcatcacccataaatgtataagtcatacttttgttttgggtgtatttcaatctgttaaaaagtttttcgctacgctagcaagcaaaaatgaaacaggaataatcgaaatgggatgttgcgcacagtcaaaataactcaccgtaaataatcatctgctataaataatcactttcatgcaataccagataagctatttttaaacagacacttaccgcacaacaaactaattaaatacaaagaaaggcaacaatcaacttaatgttaatgaaatgttttacatatattaaccacttgtttaatgcggagaatcagtacactattttcttataattacatttgaaattatatgatcaccgggagtgattgattaattatctttactaataatcagactaatatttacctgtttgaccgagttgggattgcgtcgtttctccattaggagtaaagctttaatgtcacctgaagttcacagaataaggaacaggttatgagctatagcaatattcttgtcgctgttgcggttacaccggaaagtcagcaactgctggcaaaagcggtatctatcgccaggccagtaaagggacacatcagtttaattactctcgcttccgacccggaaatgtacaatcaattagctgcgccgatgcttgaagatttacgcagcgtgatgcatgaagaaacgcaaagctttcttgataagttaattcaggatgcggggtatcccgttgacaagacgtttattgcctacggtgagttaagcgaacatattctggaagtatgtcacaagcatcatttcgatttggtgatttgcggtaatcacaatcacagtttcttttcgcgagcatcctgctcggcgaaaagagttattgcctcaagtgaggtcgatgtgctgttagttccacttacgggagattaaccgctcctacgcaagctttggaaaggtagcaactttatcgcgctgctggctttccgcgcttcgcggaactatctgctttaggtcgctaatgaagcactcctgccagtggttaatatcgtttttcacgataacgtccagcatttctgcatgacgggaaatacgttccgccagcgacatagtcaatgcacgatccagcgcagctgcaacttcgtcacgatcgtaggggttaacaattaacgccgacgttaactcgtttgccgctcccgcaaattgcgaaagaacaagaacgcccggattggctgggtcctgagcagcaacatactcttttgctaccaggttcatcccgtcacgcagtggcgtcactaagcccacgtcagagtagcggaatattttcatcagtaatttacggtcaaaatgctgattcaaataataaagcggcgtccagcctaattgcccgtatttaccattaattcgtccagcttcattttcgagctgatgacgaatatcctgataggcttgcacatcaccacgcgacgttggtgcaatctgggtataacgaattttaccatgatgctgcggatatttttccagcaacgcttcataggcgagaaaacgctctggcaaacctttggaataatccagccgttcgacagaaaagatattttgtacgtttttcagttccgctttaagttgcgccagttttggcggcagtggcccggcagcctgtttggctatttctttcggttcaatgccgatcgggtagacttctgttcgaaatgctttgccccaggctgtatggctttttgcgctacgtgtcgtgacgcgggtcaggttagaaagacaatccaggaacgccagacgatcgttttctgtctggaaacccagcaaatcataatcacaaagctgttcaagcaaggtgtcatatgtcggcagcgcgttgaagatttccggtgtcgggaaaggaatatgcagaaagaaaccaatgcgattattcactccccgtttgcgtaattcatgcgcaaatggcaacaggtgataatcgtggatccagataatgtcatcgtcttgcaacagcggcagtaatttatctgccagcaacgcatttacgcgtagatagccgtcccaggcaggacgctgaaattgcaccagatcgagccgataatgaaaagcgggccagagaacggcattggagaattggttgtagtattcgtcaaggtcctgttcgctgaggttaaaagaggcccacgtaatgttaccttttttcaccttttttagcggctgatcctcattccctgtttcaccactccagccaaaccacagtccgcctgcggctttcagtgcccccagtatgccaacggcaaggccaccggcactggcggcgtgctcgtctggtggtgcaatccggttagatactacgactaaacgactcatagtcatcactcctgttattttctcttttttgttgtaatgcggtggttatcatttcaagccagctccagacatccggcacacccgccagtcgccatgatgcctgagttgcacctgtgccaatttttactgacattccgcccagtcggttaacgactgcgaagccagattcatcggttaaatcatcgcccagaaatacgggcgttcgcccgataaagggagcttcctgcataaaagctgcaattgcctcacctttactggtacctctcggtttgatctcgacaacacactttccctgctgtaacgccatttgtggccagatctgagtaatacgttgcgctaatgtcattaatgcgtcttcatgctgcggagcctgacgataatgcagcgcaaaagccatccctttcgcctccagctccgcgccgggatactgagcgatgactgtatgcagttgcacgctaatatcacgcgcaatcgcatccggcagatgaacgatatgtgttttaccattgatgtcacggcgctccgccccatgcacgcccgctaacgggaagcgataaggttttgccagtgcgtcaagctccaccattgagcgccctgatatcaatgccaatgcaccatcacttgcggttgccagtagctgtagtccttgcagaatattgtcaggcacgacgacctgatcgggatgcggtttgatttccgccagcgttccatcaagatcaaaaaaccaggcatatttcgcggatagttcaggggtttcggttaacggttctgtcacccggttctcctccttctcttttcttattgtgttgcgcagaacgcgctttacagacatgtaagtatagacagtgtgacgggggtcgccatttgcaacgaagaacagccaaccgttatggcggttggctatggtgggaaaaaacgctaaattgttgcagaaaaaagcatcagacagtgcgtttcgctttttgcttgtaacggtcgaagatcaccgctgccagcaggattaagccgcgaaccacgtactgcgcgaaaggagaaatattaagcaggttcatggcgttttccacggtgcctaaaattaagatacccgccaccacatatgagatttttccgatgccacctttcagagaaacgccacctaaaacgcaggcggagataacaatcagctcataaccaatcgacgtcattggctgcccactggtcatacgtgaagccagaataattccggctatcgctgataccaggcctgagagaacaaagataataattttggtgcgaacaaccggtacacccgccagacgcgcggctcttcgttcccgccaatcgccagggtgttacgaccaaaggtggttttattcagcagcaaaccaaagataatcagacacgcgacggtgagccagattggcgcaggcagaccgaaccagttggcgtaaccaagggcaaagaagctttcatcttcgataccgaccgctttaccgtctgaaatgatgtacgccagacctcgaacaatctgcatcgttgccaatgtcgtgatcagagcatttattttcagtttggcgataacaaagccattgaccaggccacagagaacgcccagcaacaaccccgctgccacgccaatccacaggctttcagtcaggttaataaccaccgccgtggtgacacccgcacaggcaattacggaggcgacagaaaggtcaaagtcaccggaagcgaggcagaacaacatgccacaagccaccatccccgacatggaaattgccaggcccaaccctttcatattaatgaaggtggcaaaatttgggacaaaaatggcacaggcgataaagagcaccgcaaacaccaccagcatgccgtactgatcccagatacgcccgaagctgaatgacgacttaggtgcgccagaccccgatgtagaaacagaagacatcatactctccttactcaggcaacagcctggctgactttaggcatcgcaaggctcagtgcctgacgctcatctgcctgctcgtgtaacaattcaccggcgatttcaccttcccgcatcaccacaatccggtcggcaacgccgaggacttcaggtaagtcgctggaggcaaacagcaccgccacgccctgcgccgccagcgcataaattacgttatatatttcgtgcttagcgccaacatcaatgccgcgcgtaggttcatccagcaaaatgaccttcatctcttccgataaccagcggcccagaatggctttttgctgatttccgcctgagagattcatgatcagttgctccgcgcccggcgttttgatgttgagcgaacgaatgtggtgatcggcattgttttcttcccaaccgttgttgattacacaaccgccgagcacatgtttacgtctggcactgatgttgatattgtcgcgaacggagtgcacgggaataatgccttccgctttgcgatcttccgggcagagcatcatgcctgcggcaatggcgtggctcggtttacgaatatcgatcggctgttggtcgatataaacctgaccggcggtgatttgcgtcccgccaaacatgcctttcattaattcgctacgccccgcccctaccagaccaaacagcccaacaatttcaccactgcgaaccgccagacttattggcgtacgcacgcctggtgctttcacagcatcaagacgtaggcgctcctcgccataactacgcggttgccagccgtagatatcgccaatgtcgcgcccgaccatcgcctgcaccagcgcgtcgtggtcaacctgctgcatatcggtaaaggttttgacataacgtccatctttaaagacagtaatggcatcgctgagggcaaatatttcttccatacggtgagaaacgtataagattacccgcccctcttttcgcagttcacgaataacgcggaaaagattgtcgatttcacgggcagagagggagctggttggctcatcaaaggcgataattttggcgttacgcgccagcgctttggcgatttcaaccatctgccactgaccaatggagagatatttcagcggcgtgtccgggtcaatatccataccaagatgtttaagttgtaaacccgcctcataattcagcaatgagcgattcacaatgccgcctttatgcggcagctggccgagatagatgttttccgcgacggtcatttccggcacgagatgcagttcctggtaaataatcgccacgcccgcgttaagtgctgcggtcgtgtcggaaaaggacatttcctgcccattaatcactacagaacccgtggttggcgcatagttgccgctgaggatttttaagagagttgattttcctgcgccattttcacccatcaacgcatgaacctgaccggcatagcagtcaaaactaatatccgtcagcgccttaacgccgggaaacgttttaccgatgccgcgaaatgagagatacggggtagactgttgcataacgtctccgtgaatcactggtcgttcacaccccctctgcatcatgcagaggggaatttttccggcaaattacttaccgcctaaaccttttttctccagttcttctttaaagttgtcacgcgtgatcagtaccacgtcggtaacttcggtaaattttggcggttcaacgtcttttgctacccagttgtaaagcatttcgctggatttatagccatgtacgtccgggcttggcagcagggaaccgtagaagccggttgcctgtgctttagacagttcgctcaccgcatccacaccgttaatgccaatgccgatgatatcggccgctttaaagccctgaccttccgtcgcgcgtacgccgcccagcacggtgctgtcgttcataccgacgatcagccaatgtttaacttccggatgttgaaccagcattgagttggcagcgtcaaatgcccccgggatgtcgttagatttggtaggtacctgataaatttgtttttccgggaatccggccgctttcagcgcatccatagatcccgtagtacggcggcgggcggtatccagttcgttggcggtaatcgccatcaccgcgctttctttgacatcccagccacgtttctgcatctctttatacagttcctggccctgacgttcgccaattttagtcgccgccatcatcaccagcggaacggtatccattggcttacctttggcgttaacaaactggtcatccacggcaatgactttcatatcgtagccacgcgctttcgcgacgatggcagagccgagtttggggtccggagtacaaataacgaaaccttttgcgccactggcagccaggctgtcgatcgcgttcaatgttttttcgccatccggcacggcaatcttaataacctcaaaccctaaatccttcccggctttatcggcaaacttccattcggtctggaaccacggctcttccggttgcttcaccagaaaaccgagcttcaggttctccgccatagcggattgtgacataacggctgccagaccaatggctgccagggctttagtaaatttgtgcatggttctctccagctttagtgtcgttttgtgtagggcaaaaacgaatgacattcgttaaattaatcggaaaacaaagcattaccttttaactaaaagataagtgactgtgttgacatagttttagcgagaaattaattctccataggagagcaatatcacatcgcagaattacagtgagaacgtgcataaatttagcgggaaaagacataagggaaagccaatttgtcagacaaattgtcgaatgcacagcagattaatccataagattagcctggaaatccttgttgtctttggtacccatgcgggatgtcttctttttaaccagtcaataggccgcattacctggcgttgagtttttgaaatggtgtaataaccgcaactcaaagatgtggaaaatgcacgtcattcatttcgtcattaattatcactgtgctcattaattaacagaacacgtataatgagagccatctcgcaaaaatgaaaaaacgttttataaaatcatcacttcatcatgaattcaaattcattgattaatatcaacaagatacaaaaagcactatcattaaaattcattgcagttacattgatttcatcaatgaaatgtaaaaatatataaacttgatgatttaagcattttcttatacccgttcagacgttattcttatttcagatcatcgtcagaattgactccacgatcacatttcggaccggcagaaaggaattattctgcaaacagtaattatggtgttttgatttatcttgcacctctccacttctggatataaggatattaggtatggcaaccgctggaatgcttctcaaactcaactctcaaatgaaccgcgagttttacgcatccaatctctaccttcacctgagtaactggtgttctgaacagagtctgaacggcaccgccactttccttcgcgcccaggcacagagtaatgtgacccaaatgatgcgcatgtttaactttatgaagagtgtcggcgctacccccatcgttaaagccattgatgttcccggtgaaaaactgaactctctggaagaactgttccaaaaaacgatggaagaatacgagcaacgttctagtacgttggcacagttagccgatgaagcgaaagaactgaatgatgattcaaccgtcaatttcctgcgcgatctggaaaaagaacagcagcatgatggtctgttgctgcaaaccattcttgatgaagtgcgcagtgcgaaacttgcgggtatgtgccctgtgcagaccgaccaacatgttctgaatgtcgtgtcacaccagctgcattgatcatcatcggcgctaatgcattgcgccgatgaaggttttgagaaaccgctgcctcatctgtttgaagcagcggtttttttaatgggattcaccctgtggggtaaacttgagttcaataagcgcgatggctttttggattgcccgcatggtgaccgggtctgcggcggcgggatggttagtaaagtcgatattcttcagctgactggacattttttcacgaacttcaacgggcgcgattacatcgagaacatccagaatttgtttgataaccaactggcaagcaaccacatcagaaaccaattcctgatcggcattcagcggctgggacatcgtaaactcctgatagcattttgaaagccgttatagtagcgacttcacatcttcagcgatagtcacatccaccgtcatcaggacacaaaaaaacctgccggagcaggttttttgttatcggaacatattgcctggcggtacgtctttgaacgtcttgcaatagttattgaacatacttttcaggattttgcgcagtttcatcgcggcactccgaccatttgttatacaggtgttattgtctttgcgcttataatatgacaaccatcacaaaaatcaatctttatgtgatacaaatcacataaatacccctttaatgttataaaaatgataatcaaaaaacagcccccctatttctgacacctacagatggcaagaaatagcgcctgccaggcgtcttttccggccattgtcgcagcactgtaacgcgtaaaatagtgctttctcttactcttctggctggaccatgagacttctgattctgactctttcattaataacgctggcggggtgtacggttactcgccaagcccatgtgagcgaagttgacgcggcaacaggtattgtacggttagtttatgaccaggcttttttgcagcatgcccataccgatcgttatgtcagtcgcgggatcgccgatcgcgcatgccagcaggaaggctatacccacgcggtcccctttggtcagccagtaggcaactgtagcctttttgcgggttccttatgtttgaatacggaattcactttgtcatatcagtgccatcattccgccttccctgtctttctctaaatattttaatcagcgaggggatcttcgctgattaaagaaatagcggtaatgcgttttattcccattcgtatttttaataattgaagtttatattttaccttttgcaaataataaaataacaaattatagtgacgccacagcaacaaatataacctttgtggagcactatcatgctgaaaccagaaatgattgaaaaacttaatgagcagatgaacctggaactgtactcttcactgctttatcagcaaatgagcgcctggtgcagctatcataccttcgaaggtgctgccgcgttcctgcgccgtcacgcccaggaagagatgacgcatatgcagcgtctgtttgattacctgactgataccggcaatttaccgcgtattaataccgttgaatctccgtttgctgaatattcctcacttgatgaattattccaggaaacctataaacacgaacaattaatcacccagaaaattaacgaactggctcatgctgcaatgaccaatcaggactacccaacatttaatttcctgcaatggtatgtttctgagcagcatgaagaagagaaactgttcaaatcgattattgataaattaagcctggcaggcaaaagcggcgaaggtctgtattttatcgacaaagaactctctaccctcgacacacaaaactaatgctctccggcggcaggtttactgccgccgtttcaaatcagtgacggcaaatcttactctgatcggtcgaaaaaccgtctttcgaaggtataaatttgccttttgctgccagaaacgctaccagctctcccgctgtcatcccttctgccgagcaggtgtgaaaacgtgcctgttcaccaaaacgcgctttaatcgcagcttccagactggcatgcgtatattgctcgcctgattcaatcatcatatttaacacttcatgaccgtgaatagagtccatcgtccctcctcaaaaaaagcctagcgtagcgattgccgcttatgaagactttgcgccagcgcaggactgaatgctttttattgtacatttatatttacaccatatgtaacgtcggtttgacgaagcagccgttatgccttaacctgcgccgcagatatcactcataaagatcgtcaggacagaagaaagcgtgaaaaacagaaccctgggaagtgtttttatcgtggcgggaaccacaattggcgcaggcatgctggcaatgccgctggctgcggccggtgttggttttagcgttacgttaatcttgttgattgggctttgggcgttgatgtgctacacggcgctattactgctggaggtgtaccagcatgttccggcagataccggtctgggcacgctggcaaaacgctatctgggacgctacggtcaatggctgacgggcttcagtatgatgttcttaatgtatgctctgactgcggcatacatcagcggtgccggtgaattgttggcctccagcatcagcgactggacaggtatttctatgtcggcaaccgctggcgtgctgttgttcacttttgttgccggtggcgtggtttgtgtcggaacttcactggtcgatttatttaaccgttttctgttcagcgccaagattatttttctggtggtaatgctggtactactgctgccgcatattcacaaagtgaatcttttaaccctgccgttgcaacaggggctggctctgtctgcaatcccggtgatttttacgtcgtttggttttcacggtagcgtgccgagtattgtcagctatatggatggcaacattcgtaagctacgctgggtgtttataatcggtagtgcgatccccctggtggcatatattttctggcaggtggcgacgcttggcagcattgattcaacaacctttatgggattgctggctaatcatgctggattaaacgggctgttacaggcgttacgcgaaatggtggcctctccgcatgttgagctggcagtgcatttatttgctgatttagccctcgccacgtcatttctcggcgttgcgttaggcttatttgattatctggctgatttatttcagcgttcaaataccgttggtggacggttgcaaactggtgcaattacgtttctgccgccgttggcgtttgcactgttttatccacgaggatttgtgatggcgctgggttacgccggtgtggcgctggcggtactggcattgattatcccttcgctgttgacctggcaaagcagaaagcacaatcctcaggcgggttaccgggtcaaaggtggtcgtccggcgctggtggtggtgtttctctgtggtattgctgtgattggcgtgcaatttttgattgcggcagggttgttaccagaagtggggtgatcagatagcctcaaattccttattgggtgccagaattaacgctgacacccaatttggcctcttaatgcaggcagcactgcttaaatttcttaccactaccgcacgggcaaggatcgttacgccccggtttctcttctgctttgatcggttgctgaacagctttttcctgcggatgcgccatccagtacgcatgtagatcaagcgccgccagtcgaatggcatctacgctctcttcaaacgcttctggcgacatcttttctacccgctcgaagttttcctcagtaccgtgcagcgcaatcgcctccagcgctggttttaacgaatcgggcaacgttgaccagtcagaaagtgccacgccccgcatatagccaaagcaccactcctcaacaatcgtcagctcgctgccatcaacttctcgcaagccgaataacggctcaaactgctccgggaattcgttcagacgctctgcggtatcggccatatgttgaaaagccagattcataaagcgcgtcatctctttctctgacgcccagcgcggcacatagtcagccccaccccacacggcaaccagccactgttccggttcaatctcttgcggagaactcaacaccgccgtcaataaaccgtccagctccgccacatcaaggatggcgtggtcagtgttgtatttggtcagaatatcgtccagccattccaactcactttcgtttaacggtcccgttttcatacgcttttccttgtggatctcaactcgccagcacctatcttacatgccggtccgtatcagagatactttttgagtggctttgctggtgattaaaaattaaggagggtgtaacgacaagttgcaggcacaaaaaaaccacccgaaggtggtttcacgacactgcttattgctttgattttattcttatctttcccatggtacccggagcgggacttgaacccgcacagcgcgaacgccgagggattttaaatcccttgtgtctaccgattccaccatccgggctcgggaagaaagtggaggcgcgttccggagtcgaaccggactagacggatttgcaatccgctacataaccgctttgttaacgcgccaaattcttcaggcctttcagccagacatccgcttgacgccgatgtcttttaaactggagcgggaaacgagactcgaactcgcgaccccgaccttggcaaggtcgtgctctaccaactgagctattcccgcattcatcaagcaatcagttaatcacttgattttattatcgtctggcaatcagtgccgccgttcgatgcgttgcattctacttacctggcgcgatgagtcaacgatatttttcaccacttttgatcgtttgctgaaaattacgccgaaacgatcactgatcaagcaaatctgcacgcgcagcgctcaaatattgcaacattgaccacagagtcagtaccgcagccacaaagaaaagtgcaataccggcgtactcaacccaaatgttcggacgccacagcagccatgccaacgccaccatctgggcagtggttttcactttcccaatccaggagacggccacgctactgcgtttacccaactccgccatccattcgcgtagcgcagaaataataatttcacgggcgatcatcgttgccgccggtaatgtcacccaccagctgtgataatgctcggttaccagcaccatggcgatagccacgagaactttatctgccacagggtcaaggaaagcaccaaaccgggtactctggttccagcggcgtgccagaaaaccatcgaaccagtcagtcaccgccgcgacgcagaaaatgagcgcggcggcaaacggcgaccaggtgacaggcagataaaagaccaatacaaagaatgggataaggatgacacggaacagtgtaagcaacgtagggatattaaattgcataatgacgggtaactatctgttgtcagtaagattacccctatgttgctacagagacatcaatgtttcaacgaccagaagatcttttctgccagaccttgcgaaatacccggcacttttgcaatttcctcgacgctggcgttacgtaaaccttgcaaaccgcccatatatttcaacaacatttgccgacgttttggcccgacgccttcaatggtttccagggaactggtatttttgaccttcgcccgttttttacggtgcccgccaatcgcgtgatcatgtgattcatcgcgaatatgctggataacatgcagcgcgggtgaatctggcggcaaactaaatccctcaccttccggctcaaagaacagcgtttccagtccagccttacgatctgctcctttggcaacgccaagtagcagcggatgatttttatcccatgagacatccagttcggcgaagacatttttcgcctgcgcaagctggcctttgccgccgtcgataaggatcacatccgggatcttactgtcgtcaatggctttaccataacgccgacgcagcacctgattcatcgccgcataatcatcgcccggcgtgatgcctgtaatgttatagcgccgatactccgcacgcagcgggccgttagcatcaaacaccacacaggaagcgacggtttgttcgcccatggtatggctgatgtcaaagcactccatccgcttcacttccggcaatttcaacacgctggcaagcgcggtcagtcgctggtgaacggtagattgctgcgaaagtttgctggttaaggccgtcgccgcattggtgcgcgcgagtttcagataacgcgccctatcgccgcgaggtttggtttgaacattaatcttgcgtcccgccagttctgaaagggaatcggcgagcagcgttttatcgctaagattaaaatcgagcaggatctcacccggtaaggtgcgcatctggctgccttgtaaatagaactggcctacgaaggtttctaccacctcgctcagttccgtaccgccaggcactttcgggaaatagctgcggctgccgagcactttgccctgacgaatgaacaatacgtggacacaagccatgcccgcatcgaacgccacaccaataacgtcgaggtcgtcgccggtattggaaacgaattgtttttcggtgacgcgtcgcaccgcctgaatttggtcgcgaatacgtgcagcttcttcaaactccagattctggctggcagtttccatacgactaatgagttgcgtaagcacctgatcatctttgccagacaaaaacaggcgcacatactcgacctgctgagcgtattcttcttcactcaccagtccttcaacgcacggtcccagacagcgccctatctggtattgcagacacggacgcgagcgattgcgataaacactattttcgcactggcgaatggggaaaatcttttgcagtagcgccagtgtttcacgtacggcatagccattcgggaacgggccgaaatattcacctttggcatgcttcgcaccacgatgcatcgccagacgcgggtgggtatcaccactcaggaagataaaaggatatgatttatcatcgcgtagcaaaacgttgtaacgcggctgatagagtttgatgtagttgtgttccagcaacagcgcttcggtttctgtgtgagtaaccgttacatcaatttgctggatctgggcgaccagcgcttcggttttgcgcgaagcgaggttgctacggaaatagctggaaagccgttttttcaggtctttcgctttgccgacatagataaccgtaccaccagcatcgtacatgcgataaacgcctggctggctggttacggtttttaaaaacgcttttgcgtcaaactgatcactcactgacttgataatgtctccgcattacacagaccatggcgaattgccaggtgagtcagctcaacatcgccatgaatgtttagtttactgaacatacgatagcggtagctgttcaccgttttcggactgagattgagctgttctgagatctcattgaccttctggcccttggtgatcatcagcataatctgcaattcacgttcagacaaactggcaaatgggctttctgttttttctggttcgatctggcttaacgccatttgttgagcgatgtcagaagcaatgtaacgctgccctgaatagacagaacgaatcgcactcacgacttcctgcggagccgcgcctttgctgaggtagcccgcagcaccggcctgcatgactttcgctggtaaagggttttctgtatggacggtaagcatgatgattttgacatcagctgtggaacgcgcgattttacgcgtcgcctcaagaccgccaatgcccggcatactcatgtccattagcaccacgtcaacggcatttgtccggcaccacttaacggcgtcttcaccgcacgatgcctcaccgacgacttttataccctttatatcttccagaatgcgtcgtatccctgcgcgcaccagttcgtggtcatcaacaagtagaacgttgatcaaaggaatatctccagaaatagggataacgctactgatagttagtcattcgtatattagcggtttttattgcaactttgaaacgttaaaaatggtgggtattcgatttttctctcgtttttgtcaattcgattgtccacagttatggtcacgcccgtcaccaacggcttaccggatcgtttcacagtaagccctacgatgaaatgtgacaaaaattgactttattcagcaaaaatgaaaatcagcccgctgaatatgtaacattaattaacccgaacaatacgggcaaaaaacattcatgataaaaatatttattggtcattatattaacgtattttatagcactgccgatatcacgctcaaaaaacaaccactgctatttttagcaaagcttatggtatactccgccgccttaacatttttcaccgcaaattttcattgcaacatgacgaggaaaataaatgagtacgcctgatttttctactgccgagaataatcaagaactggcaaatgaagtctcctgcctgaaagcgatgctgacgctgatgctgcaggcgatgggacaagctgacgcgggccgcgtgatgttaaagatggaaaaacagcttgcgctgatcgaagacgaaacccaggctgcagtattttccaaaacggttaagcaaattaaacaagcctaccgtcagtaatataaaaccggctgatagcgtgcctttcagccggtttttgcatctggcacgcaggacagaaaagagatcaaattaagccagtagcggccgcgtaacaggcaacctgggtcttatttggtgcattaatttttttctgcatgtttttctggtggaaattgaccgtattctcagagattgacaaaatcatcgctatctctgctgatgttttcccttccgccgtccacctcagaatttctttttcgcgcttgctgaaattcatctctggcgtcatcactatttcatcatttaaacgcatcagagccatcagactttcgcgcaccagtaactgcatttttaattgcagttcatcactaagaatgggtatttcgcgcgcgctgcaacgggaaaaggacaaaaagcccagcgcccggtttggcagcattaaatactgagtgacaccgcggcgtaaaccatgtgcgcgcgcggcttcccataacggctgtgcttcgctgaataagtcatcattccacattaaatggccctgactaaagttttcagggttcagcaccggatcaattgcgagaaagttttttgcctgataataactaacccacgcctcagggtaattggtgtaaaaagccactttaggtcgagtgaatggtaccgggtggcggacacataacgaatagtaatcgtactccagctgctgagcctgaagctcaatttcatggtagacctcttctgcggtctccatcctctgaaaacgcaacagcatcgtgcgacgccagctgaaaaaatccttatcctgcatagtaaaccgcaacgcccctgagagtgagtatcatttataatgataattcaaactatcacataaataagatttatatataatttatattattcaggcaatgaattacttttgcaagccatcgcattctcttatgttattaatgagttatgctgatttgttaagcagttttatcaggcttgaaatggcgtccagccccgacaggtgaatcgtcggggctgattttttcttattattgcagcagaaacttctcgaggaactggcgggtgcgaggctgctcggggtcggcaaataacgcttttgcggccccctgctcgactatccgcccctggtccataaagatcgcccggtccgcaacatcccgggcaaagctcatttcgtgcgtcacaatcaccatcgtgcgcttttcctgcgccagctgacggatggtgttcaggacttcacccaccagctctggatccagcgctgacgttggctcgtcaaacaaaatcacctcaggacgcattgccagcgcacgcgcaatcgcaacacgctgctgttgaccgccagacaaacgacgtggatagctggtttctttacctgccagcccaacttttgccagcagctcgcgagcgcgcgccgtggcctcttctttcggttcacctttgacgatcaccggcccttcaataatgttctccagcaccgtacgatgcggaaacaaattaaagttctggaagacaaacccgacgtgctgacgcaactggcgaatcagagatttttgctgacttaatgaacgtgcagtatcaatagtgatatcgccaacggtgatcgttcccgcttcgggttgttccagcagatttatgctgcgtagcaacgtggttttgccggaaccactcggaccgataattgccaccacttcgccaggctttacctcaaggtcgataccgtgcagcaccgtctgaccgtggaattttttcaccaggttcttaacttcaatggcactcattttggttctctctcctggcgattaagttgattctcaaaatggttctgcaacgtcgataacacagtcgccatgatccagtagatgagcgaagccgccagatacatggtgaacacctccagcgtacgcgaggtaatcaactgcgcctgacggaacagctccggcacctggattgtcgcggccagcgacgtatcttttaccaggctaataaagctgttcgacagcggcggcaacgccacacgcgccgcctgtggcaaaatcgcgcgacgcatggtctgccacggcgtcataccaatactggctgccgcttcccactgacctttatcaatagaagaaatggcggcgcgcagcgtttcggcagcataggcggcagtgttcaacgacagaccaatcattgctgacggaatgggatctaattcgataccaaactgcggcaggccgtaatagatcataaacagttgtgcgatgagcggcgtaccacgaaaaatagagatataaaaacgcgccagccagcgcacgggccagattggcgacagacgcatcagcgcgagaataaacccgagcagtaagccaaaaaacatgccgccgatactgagttgcagcgtatacccagcccctttcagcaggaacggcaaggaatcaataaccagttgtatactttcttgcatgagcgtttccggagctaaacgtggggatgataggcgaacagcgcaggcgcaccgccggtatgaataaacagaatcggcccttcatctttgaagcgtttctgactgataccgtcaatcagccccgccatcgcttttccggtatacacaggatcaagcagaatgccttccagccgcgccagcaatttcactgcttccatgccttcgtcgttcggcacgccgtagccaggtgcaaaatagtcatcccagagtaaaatttccgctgatgcggtcagctccagttctttcgcaatcgcctgttgtaggttaaccactttcggcaattgatcggcaacggaacgcgacacggtcacgccaatcagttcgctttcaggcatcaggtgttccagcccaacagccagtccggcgtgagttccggcactgcccgatgcgactaccaccgatgaaatattaaccgccccttcacactgttgcgcgatttccagcgcactctccacataacctagcgcgccaagagcattagaaccgccaaccggaatgacatacgggcgaaagccttgtgcttcgactcgcgtcgccagctcttccagttgggcattgggatcggtcagtgcgtcgcacatttcaatctgggtattgaacagatccagcaacaagcgattgccgttggttaaatagttttctgcggttgtgccaataggattttccagcagcgccacgcagtgcagaccgagtttggcagcgactgcggcagtctgccgcacatggttagactggatcgccccggcagtaatcagcgtatcggcaccttcacgcagagcatctgccgcgagaaattccagcttacgtaatttattgccgcccattgccatgggggtgacgtcatcccgtttgatgaaaatttcccgtcctagataatcagaaaagcgcggcagatattcgagcggcgttggcgcgccgataaactccagccgtggaaaacgggttaaattatgcagtggcataacagcctccgatgtgtgttgttgtgattttcttattatgcacgctgaaaacgcgtaaataaaaaaggcgctagtgaaagcgcccttttttgtcattatgctgattatttggtcacatcagcaccaaaccatttttcggaaagggcttgcagagtgccatctttttgcatttccgcaattgcatcattcactgctttcagcaggtcctcatttcctttacgcagcgccacgccagactcctgacgggagaatgcttcaccggttactgccagcgtatcgttggttttcttcaccagatccagcgccgccagacgatcaacgaggatcgcatcgatacgccctacgcgcagatcctgatatttggtcgggtcatcatcataggtacgcacatcgacgccctgaacattctgccgcagccactcttcatagttggtgcccagaccgacccccacttttttgcctttcagatcatcggctgttttaatggtgccttcgttaccttttttcaccagcgcctgaataccagaaatggtgtacggggttgagaaatcgtattttttcttgcgctcatcagaaatggtgacctgattaatcaccacatcaatacgtttagagtccagcgacgccagcataccgtcccatttggtcggttttagtgacgcctcaacgccaagatgttttgccagctgttgggcaaattccacttcaaaaccggttaatttgccgtcatctccctgaaaactgaacggcggataagttccttccagccctaccagcagcgtgccgcgctctttaactttattaagcagaccttcatctgcaaaacttttaacgctcatgcccgcaaccagcgccacggccatcacacccatcaatgcctgacgtcccagatgtgctaatttcatattcaccccgaatgttgttatgtctgtttgcagtgtagagccattgtttgtaaacacaaaaacaactccgctacatcttattcttatttaatatatatcagaagaaggcaggctggaggatttctgcacaagtctggtacaggtttggcgctgatagtgttgatacttccgtaacgcgatgcggtaattgttggtgctggtggtgggcagccacggggcgaggatttcatcaaggaaaccgtcctgcagctgatcgagggaaatattttgctcgtgtagatgattccccaaacggcgcaaacgaacgacatattcacgcaccgtacctgggctcatttcagtttgctcaaaaagaaattgcttaaagccgataatatcgaaaaaatcactctgcgttttgcaatgtaaatcaccgcaaaatcggcacaatgccgcccatgatttttgttccgtttgccagccattttcatcaagcagcgtgtccaggcgggaaatctcgattttattcactattttgccgtcgcgaactaaggtaatgcgatcgagtaatttacggcaatgcgcgcaatgggtctggctgtgtttaaagtctttaagatagcggcttaatggccgtcttttcaggtgctgcaccatcattaagaactcctggtagtcaaagttaaagtgcggcatttactgacgttataacttacccagtttagtgcgtaaccgtttaatagcctggctgtgtaactgactgacccgcgattccccgacctccagcaccgcgccaatctctttgagattcagctcttcctggtaatagagggttaataccagtttttcgcgctccggcaacgtttcgatggcttccatcacccgctggcgcagattactgtccagtagttgttgtagcgggttttctcgctgatgatcatcagtaaccagttcgatgctatcgccgtgctcttcgcgccactcatcgtaggagaagagctggctgttattggtgtcgagcaacatttggcgataatcggcaatatcgatccctaaacgttccgctacctcagtttccgtggcgttgcggccaagttcctgctccagttgccctattgcctgtgccacttcacgcgcgttgcgtcgcacgctgcgcggcacccagtcacggctgcgaagttcatccagcatagcgccacggatacgctgcactgcgtaagttgtaaatgccgttccttgtagggcgtcatagcgttcgacggcattaagtaacccaatgccgcccgcctgtagcagatcgtcaagttccacgctcgcgggcagtcgaacctgcaggcgcaatgcttcgtgacgcaccagcgggacataacgctgccacagcgagtgtttatccattacaccttcagcggtatagagtgaattcacgataaacagccctgcgttatatgagttatcggcatgattatccgtttctgcagggtttttaatcggacgattagtgggtgaaatgaggggttatttgggggttacaggtaaattccaggcagaaaaaaaccccgccggtggcggggaagcacgttgctgacaaattgcgctttatgttgccggatgcggcgtaaacgccttatccggcctacaaaaatgtgcaaattcaataaattgcaattcaacttgtaggcctgataagcgcagcgcatcaggcaatttggcgttgccgtcagtctcagttaatcaggttacaacgattaaccctgcagcagagacagaacctgctgcggtacctggttagcttttgccaacacggagttaccggcctgctggatgatctgcgctttcgacatattggacacttcggtcgcatagtcggcgtcctgaatacgggactgcgcttcagacaggttggtagtggtgttgttcaggttggtaaccgcggaatccagacggttttgcaccgcaccgagggaagaacggaatttgtctacagatgcgatagcatcgtccagcgctttcagcggatccgtggttttaccatttgcaacagcagtcagagcctcaccaccagcagtcaaacctgtttgcagattaccgccatttaaatcggcagaatcgtatgttttaccatcaatatcgaccacttctgttttgccatcatctccgcccagtttgaccgcggttggagaactggcggcaccggaagagtcagtataggtaatagttttaacagaaacagcaccagtagtttcattcacatccgcagcgtaaagattgccatttgtatctttaagcgcatatgtatcggtatcattacccttggaatcctgcagttttactaagctaacagcaccaaggttggcagttgcggaacctgcagtattatcaatctgaacaggtgtaccgcctgaagtgatagttgtagctttagtagtatttgcatcagttacagttgcatttgccgttgctccagtcgccattgtcactgtaccatcattagcaactgttactgcgtaatacttcccatcgttatcaccaccggtgattttcgcatagtaatcattaccattatcagtataaacaccctcaattgaagctgggttagttccgccagtatcagtggctgcttccgtagaaagggtaattccagtaagtttaatattgtttgtggtggtagcaccaaaagcagttactggagcactagtggtaactgtatcgttatttttaacgctaaaaccatcaaggccaagagttttagcatcaatctgcttcagatcgatagtgatagtctggttatcatttgcgccaacctggattttcatggagccattttttgccagcacgttcacgccgttgaactgggtctgaccagatacgcggtcaatttcatccagacgggatttaatttcgtcctggatagaagacagatcagactcagagttagtaccggtagtggcctgtaccgtcagttcacgcacacgctgtaagttgttgttgatttcggacagcgcgccttcggtggtctgcgcaacggagataccgtcgttggcgttacgggccgcctgagtcaggcctttaatgttagaggtgaaacggttagcaatcgcctgacccgctgcgtcatccttcgcgctgttaatacgcaagccagaagacagacgctcgatagaactcgacagcgcagactggttcttgttgatattattttgagtgatcagcgagaggctgttggtattaatgacttgtgccatgattcgttatcctatattgcaagtcgttgattacgtattgggtttccacccgtcggctcaatcgccgtcaaccctgttatcgtctgtcgtaaaacaacctttagaatttttttcaaaaacagccattttttgttagtcgccgaaatactcttttctctgccccttattcccgctattaaaaaaaacaattaaacgtaaactttgcgcaattcagaccgataaccccggtattcgttttacgtgtcgaaagataaaaggaaatcgcatggcaagtatttcatcgctgggagtcgggtcaggtctggatttaagttccatccttgatagcctcaccgccgcgcaaaaagcgacgctaacccccatttcaaatcagcaatcgtcgtttaccgctaaacttagcgcctacggtacgctgaaaagcgcgctgacgactttccagaccgccaatactgcattgtctaaagccgatcttttttccgccaccagcaccaccagcagcaccaccgcgttcagtgccaccactgcgggtaacgccatcgccgggaaatacaccatcagcgtcacccatctggcgcaggcgcaaaccctgaccacgcgcaccaccagagacgatacgaaaacggcgatcgccaccagcgacagtaaactcaccattcaacaaggcggcgacaaagatccgattaccattgatatcagcgcggctaactcatcgttaagcgggatccgtgatgccatcaacaacgcaaaagcaggcgtaagcgcaagcatcattaacgtgggtaacggtgaatatcgtctgtcagtcacatcaaatgacaccggccttgataatgcgatgacactctcggtcagcggtgatgatgcgctacaaagttttatgggctatgacgccagtgccagcagcaacggtatggaggtctcggttgccgcccagaatgcgcagctgacagtcaacaacgtcgccatcgagaacagcagcaacaccatcagcgacgcgctggaaaacatcaccctgaacctgaacgatgtcaccacgggcaaccagacgctaaccatcactcaggacacctccaaagcgcaaacggcgattaaagactgggtgaatgcctacaactcgctaatagataccttcagcagcctgaccaaatacaccgccgtagatgcgggagctgatagccagagttctagcaatggtgcactgctcggcgactccacgctgcggacgattcagacgcagttgaaatcgatgctgagtaataccgtcagttcttccagctataaaacgttggcgcagattggtatcacgaccgatcccagcgatggcaaactggaactggatgccgacaaactcaccgctgcactgaaaaaagatgccagcggcgtaggtgcattgattgttggcgatggtaaaaaaaccggcatcacgaccaccatcggcagcaacctgaccagttggctttcgacaacgggcattattaaagccgctaccgatggcgttagtaagaccctgaataaattaactaaagactacaacgccgccagcgatcgcattgatgcgcaggtcgctcgctacaaagaacaatttacccaactggacgttttaatgacctcgttaaacagcaccagcagctacttaacgcagcagttcgaaaacaacagtaattccaagtaagcaatattcatcgggagacaggtcatgtacgcggcaaaaggcacccaggcctatgcacaaattggcgtcgaaagcgccgtaatgagcgccagccagcagcagctggtcaccatgctatttgatggagtgctgagcgcactggttagagcgagcctgtttatgcaggacaacaatcagcaaggcaaaggcgtctctttgtcaaaagcgatcaacatcattgagaacggactgcgggtgagtcttgatgaagagagcaaagacgaactaacccaaaacttgattgctctttatagctatatggtcaggcgcttgctgcaagccaatttacgcaacgatgtctccgcagtcgaagaagtggaagcattaatgcgcaatattgccgatgcctggaaagagtcgttactctccccttctttgattcaggacccagtctgatgaaccatgcaccgcatttatatttcgcctggcaacaactcgtcgaaaaaagccagctcatgttacgcctggcaacggaagaacaatgggacgaactcatcgccagcgaaatggcgtatgtgaatgcggtgcaggagattgcacatttgactgaagaggttgacccgtccaccacgatgcaggagcagctccgcccgatgctgcgcctgattctcgacaacgaaagcaaggtaaagcagttattacagattcggatggatgaactggcgaaactggtcggtcagtcatcggtgcaaaaatcggtgttaagtgcctatggcgatcagggcggctttgtgctggctccgcaggataacctcttttgaatctgaatgagtcgatggctcgcgaataatccgattacggctacgcttctaatgttccccttgaatggagtcgaagaatgcgtaatcccacgctgttacaatgttttcactggtattacccggaaggcggtaagctctggcctgaactggccgagcgcgccgacggttttaatgatattggtatcaatatggtctggttgccgcccgcctataaaggcgcatcgggcgggtattcggtcggctacgactcctatgatttatttgatttaggcgagtttgatcagaaaggcagcatccctactaaatatggcgataaagcacaactgctggccgccattgatgctctgaaacgtaatgacattgcggtgctgttggatgtggtagtcaaccacaaaatgggcgcggatgaaaaagaagctattcgcgtgcagcgtgtaaatgctgatgaccgtacgcaaattgacgaagaaatcattgagtgtgaaggctggacgcgttacaccttccccgcccgtgccgggcaatactcgcagtttatctgggatttcaaatgttttagcggtatcgaccatatcgaaaaccctgacgaagatggcatttttaaaattgttaacgactacaccggcgaaggctggaacgatcaggttgatgatgaattaggtaatttcgattatctgatgggcgagaatatcgattttcgcaatcatgccgtgacggaagagattaaatactgggcgcgctgggtgatggaacaaacgcaatgcgacggttttcgtcttgatgcggtcaaacatattccagcctggttttataaagagtggatcgaacacgtacaggaagttgcgccaaagccgctgtttattgtggcggagtactggtcgcatgaagttgataagctgcaaacgtatattgatcaggtggaaggcaaaaccatgctgtttgatgcgccgctgcagatgaaattccatgaagcatcgcgcatggggcgcgactacgacatgacgcagattttcacgggtacattagtggaagccgatcctttccacgccgtgacgctcgttgccaatcacgacacccaaccgttgcaagccctcgaagcgccggtcgaaccgtggtttaaaccgctggcgtatgccttaattttgttgcgggaaaatggcgttccttcggtattctatccggacctctacggtgcgcattacgaagatgtcggtggtgacgggcaaacctatccgatagatatgccaataatcgaacagcttgatgagttaattctcgcccgtcagcgtttcgcccacggtgtacagacgttatttttcgaccatccgaactgcattgcctttagccgcagtggcaccgacgaatttcccggctgcgtggtggtcatgtcgaacggggatgatggcgaaaaaaccattcatctgggagagaattacggcaataaaacctggcgtgattttctggggaaccggcaagagagagtagtgaccgacgaaaacggcgaagcaaccttcttttgcaacggcggcagcgtcagcgtgtgggttatcgaagaggtgatttaaattcatccccggcggcaagccggggagatttcattacggcagtggcgtcggtaacggcgctttatccagcgcggcggcacactctgctgtcgggcgatccacacgctccatcgtcataccatcgtactcaatggtgttaccgtcacgctcaacctcgtacagctcacgttttacggtaacgttagtgagatcatcagacatcaatgtcaacttacccggcacggcaatcacccgctgccactgacggcaatccagggtatcgccctctttagtgacaatcaggctgcctatcgcttccgggctgaccagcgcacgttgcggccctttggtctgccagtagcccgccagccagtccggcgcgggggttttcacgacattgttatagttttcgacttcggcacagcccgccagcaacaagagcgcgcctgcaattgcgagttttttcatcattcgtcctgcatgagaagaaaagaggattgtggcattaaagccctgatgtcgccagcctttcaaggttcagagagaaatttgatctaactattatttttgtgaattattaccccgaaaataaatttgcatggtgtatgattcgcgactcttgtttcaaaccttctgagttcagaggctacattcatgtcatggcagcaattcaaacacgcctggttgattaaattctgggcccccatccctgcggtcatcgcggcgggtattctctctacttactattttggcattactggcaccttttgggctgtcacgggtgaatttacccgttggggcggccagctcctgcaactgttcggcgtccatgctgaagagtggggttactttaaaattatccatctggaaggatcgccattaacccgcatcgacgggatgatgatcctcggtatgtttggcggctgctttgccgcagcgctgtgggccaacaatgtcaaactgcgaatgccgcgcagccgtatccgcattatgcaggccatcattggcggcattatcgccggttttggcgcgcgtctggcaatgggctgtaacctggcggcgttctttaccggtattcctcagttctcgctgcatgcctggttctttgccatcgccactgccattggttcatggtttggcgcgcgctttaccctgctgcccatcttccgtattcccgtgaaaatgcagaaagtttctgccgcctcaccgctgacgcaaaaaccggatcaggcgcggcgtcgttttcgtctcgggatgctggtctttttcggcatgctgggctgggcgctgctcacagcgatgaaccaacccaaactggggctggcaatgctgtttggcgtcggctttggtttactgattgaacgtgcgcaaatctgctttacttcagcgttccgcgatatgtggatcaccggacgtacccatatggcgaaagcaatcattatcggtatggcggtgagtgccatcgggatcttcagttacgtacagttaggcgttgaacccaaaatcatgtgggcgggaccaaacgcggtaattggtggtttactgtttggttttggcatcgtgctggctggcggctgcgaaaccggctggatgtaccgcgcggtagaaggccaggtgcactactggtgggtcggtctgggcaatgtgatcggctcaacgattctggcgtattactgggatgatttcgctccggcgctggccaccgactgggacaaaatcaacctgctgaaaacctttggtccgatgggtggcctgctggtgacatatttgctgttgtttgctgcgctgatgttgattatcggctgggaaaaacgcttcttccgccgtgcggcaccgcagactgctaaggagatcgcatgaaaaatatcgttcctgattaccgccttgatatggtgggtgaaccctgcccttatccggcagtcgcaacccttgaggcgatgccgcagttaaaaaaaggggaaatcctggaagtggtgagcgactgtccgcagtcgatcaataatattccactggatgcgcgtaatcacggctatacggtgctggatattcagcaagacgggccgaccattcgttatttaattcagaagtaatccctcattcccgctgtgacccacagcgggaacatcgttacctttgtatcacatagattttacccgcccccactcctattcttttcagtatgatctcaggaggtttctatgtgtggacgctttgcccaatcccaaacgcgtgaagattaccttgcgcttctcgcggaagatattgaacgcgatattccctatgatcccgaacccattggcagatacaacgtcgcgccgggaaccaaagtcctactgctcagtgaacgtgatgaacaccttcatctggatccggttttctggggatatgctcccggatggtgggataaaccgccgctgattaacgcccgcgtagaaactgcggcaaccagtcgtatgtttaaaccgctctggcaacatggtcgggcaatctgttttgccgatggctggtttgagtggaaaaaagaaggcgacaaaaaacagcctttttttatctatcgtgctgatggacaacctatttttatggccgcgataggtagcacaccatttgagcgtggtgacgaagccgaaggatttttgatcgtcactgctgcggcagatcaaggtctggtagatattcatgaccgccgcccactggtactgtcgccagaagctgcgcgggaatggatgcggcaagagattagcggtaaagaagcctcagaaatcgcggccagtggctgtgttccagcaaaccagttctcctggcacccggtatcgcgcgcggtgggtaatgttaaaaccagggcgcggagttaattcaacctgtttgataagcctggagattattgatcaacaatactgcgtcataagaaatctctattagacaaagatttcattacctgttggcatattgcaaaaataacaccaatacggaatcgtcatgttcacgattaaaacagatgatctcacccatccagcagtgcaagcattagtggcttaccatatttccggcatgctgcagcagtctccccccgaaagcagtcatgctttagatgtgcaaaaattacgtaacccgacagtgacattctggtcagtatgggaaggcgaacaactcgcaggaattggtgcgctgaagttgctggatgataaacacggcgagctgaaatcaatgcgtaccgcgccaaattatttacgtcgtggtgtcgccagtctgattttacgccacattttgcaggtcgcccaggacagatgccttcatcgcctgagcttagaaacgggtacacaggctggatttacggcctgccatcaactttatttgaagcatggtttcgctgattgcgaaccgtttgctgattatcgacttgatccacacagtcgatttttatcattgacgctatgcgaaaataatgaattgccatgagccagacgcagcacattcttgcattcgacgtgctgcgcctttatttatcaccagcaggaaacgccttgtccatagacgccccttccacatgcgccacaagaaacctctattccagtgacacaattgcgcctaattaattacatttaatatttaattatgagttcctcaccatctattacatactttttaaccatatcggaatatttatcataatcagcgggattcgtaacaatatattttcgctgcgatctttcatagcaaatccctgtcaaagtccatgatataaaaatgtctcttcaaaagaattacattctttaaaaagtaattctttattgctatatatcgcagagacaacctcaatatcacactccatacgtgctttctccagatgatttgggaagtattgaatttcttttatcttattatcgccacaattaaacagcttagtagtctcaggcattgctggtatttaccatattttattgcgataaatagaaattgtcatagcctttgacggagatgagtcaacacgcgatatcagattattatctacggagacctgggtaattccatcggatacttttggaaataccatataattattgaaatcgagctctaattctttgcagaatttgggaatttgtattgtggcaaggccattatgacgaagataaagcacctcaatccaggatggaagaggtggcaaagaccccaagtgaagatctgttaagtcaagtttactattgtggagttcaacacatttaaacaatctcaccaatgctatatccacattttttttgaagtcattcgatgcgccttcttttactgaattagcccagtcgctgaaacctttgcaaagtctggaatctgtaattttcgtaaagttgtctagaaactctgcaatattagtcgatataaactctaatttatgccgaatgggtgggttaccagttccctgattttttctatcatgataaaacctatcttattataaatcgagaaatcttgaaaccagagactataatcaccccattcgaaatattctgagtgcaataacttaaattctgacagcatattaaataatttgctgtcttcactaattggtgtaaacttaccatttccaagacaactgactaactcacttgataattcatttatgattgcatcatcagatactaactcatgttgttttatcgtagattcagtattagatgtgactttatttaattgaaccggctgagtttttaacgaaagatcatttaatggaaacatttacactcctgtttaataaattatattgcccagggcgcattctaaaacacaataaaattaccactatcaaaaatcgctcatatccatcgcccggaatatgaataaaaacatcaacaaagattaaattatccagaggttactgttgcgtctgtggtcgtaacaacatccgacgtggtgatgtgtcaaatgagacgctctgatgttcaggggggttatcgcgtatacggatcgtggatggcagaaaacgttcaggatcaggtatccattttaaaccagaaattgagtgagtttgccccatccatgccccacgcggtgagatcggatgtaattaacaacaggttacaaaacctacacctgcatgctcatcacttcctgatacgccgccaccagcttattacgcacctgaatccccatttgcatagaaactgaggctttttgcatatcggtcatcacatcgtttaacgccacgccgggttcaccgagagtgaatttttctgcctgcgtgcgggcagctgtttgtgtatcactaatgcgatcgagcgcggcgtgcagctgcccggcaaaactaatggtcggttgcggcagtgattcctgcgcacgcgcactcatcgccgtagcctgtaactggctgataaccccttcaatcccctgtatcgctgacattctcgtctcccggataatttctggtagcaaagcctaccagtaagtcaataagacaaaggcgctaaatagcaacaaaaaaacgggtttattggcggatagaaaaaaacgaaagcacaaataatgggagcgtcaatttttcgagtttgctgacccgggagtgagtcttgttccactttgccaataacgccgtccataatcagccacgaggtgcgcgatgaatgcgactgcagcccagacaaaatctcttgagtggcttaatcgcctgcgtgcgaatccgaaaattccattgattgttgccggttccgcggcagtggcggtcatggtcgcactgatcctgtgggcgaaagcccccgactaccgcacattattcagcaatctttccgatcaggatggtggcgcaattgtcagccaactgacgcaaatgaatattccttaccgcttcagcgaagccagcggcgctattgaagttccggcagataaagttcacgaactgcgtctgcgcctggcacaacaaggtttgccaaaaggcggcgcggtcggtttcgaactgcttgatcaggaaaagtttggtatcagccagttcagcgaacaggtgaattatcagcgggcgctggaaggcgagctttctcgtaccatcgaaactatcggcccggtaaaaggggcgcgcgtacatctggcaatgccgaaaccgtctttattcgtccgtgaacaaaaatccccttctgcatcggtgacggtaaatctgttacccggccgcgcactcgatgaagggcaaattagcgccattgtgcatctggtttccagcgccgttgctggtctgccgccgggaaacgtcacgctggtggatcagggcggacatctgttaacccagtccaataccagcgggcgcgatcttaatgacgctcagttgaaatatgccagcgatgtcgaaggccgtattcagcggcgtattgaagcgatcctgtcgcctattgttggtaacggtaatattcacgcccaggttacggcgcagctggacttcgccagtaaagaacaaacggaagaacagtatcgccctaacggtgatgaatctcatgcggcgcttcgttcacgccagcttaatgagagcgagcaaagcggttccggttatccgggcggcgtaccgggggcgttgtcgaatcaaccggcacctgcgaataacgcgccaatcagcacgcctccggcaaatcaaaataaccgccagcagcaggcgagcaccaccagcaatagtgggccgcgtagcacacagcggaatgaaaccagtaactacgaagtcgatcgcaccattcgtcataccaaaatgaacgtgggcgatgtgcaacgtctgtcagtcgcggtcgtggtgaattacaaaaccttgccagatggcaaaccgttgcctctcagcaacgaacagatgaagcaaattgaagatctgacccgcgaggcgatgggcttttctgaaaaacgcggtgactcgctcaatgtcgttaactcgccgttcaatagcagtgacgaaagcggcggagaactgccattctggcaacagcaagcgtttatcgatcagttacttgctgccggtcgctggttgctggtactgctggtggcgtggctgctgtggcggaaagcggtacgtccgcagctaacacgtcgcgctgaggcgatgaaagctgtacagcaacaggcgcaggcccgcgaggaagtggaagatgcggtggaagtccgcctgagcaaagacgaacaactacaacaacggcgcgctaaccaacgtctgggggcagaagtcatgagccagcgtatccgtgaaatgtctgataacgatccgcgcgtggtggcgctggtcattcgccagtggataaataacgatcatgagtaacctgacaggcaccgataaaagcgtcatcctgctgatgaccattggcgaagaccgggcggcagaggtgttcaagcacctctcccagcgtgaagtacaaaccctgagcgctgcaatggcgaacgtcacgcagatctccaacaagcagctaaccgatgtgctggcggagtttgagcaagaagctgaacagtttgccgcactgaatatcaacgccaacgattatctgcgctcggtattggtcaaagctctgggtgaagaacgtgccgccagcctgctggaagatattctcgaaactcgcgataccgccagcggtattgaaacgctcaactttatggagccacagagcgccgccgatctgattcgcgatgagcatccgcaaattatcgccaccattctggtgcatctgaagcgcgcccaagccgccgatattctggcgttgttcgatgaacgtctgcgccacgacgtgatgttgcgtatcgccacctttggcggcgtgcagccagccgcgctggcggagctgaccgaagtactgaatggcttgctcgacggtcagaatctcaagcgcagcaaaatgggcggcgtgagaacggcagccgaaattatcaacctgatgaaaactcagcaggaagaagccgttattaccgccgtgcgtgaattcgacggcgagctggcgcagaaaatcatcgacgagatgttcctgttcgagaatctggtggatgtcgacgatcgcagcattcagcgtctgttgcaggaagtggattccgaatcgctgttgatcgcgctgaaaggagccgagcagccactgcgcgagaaattcttgcgcaatatgtcgcagcgtgccgccgatattctgcgcgacgatctcgccaaccgtggtccggtgcgtctgtcgcaggtggaaaacgaacagaaagcgattctgctgattgtgcgccgccttgccgaaactggcgagatggtaattggcagcggcgaggatacctatgtctgataatctgccgtggaaaacctggacgccggacgatctcgcgccaccacaggcagagtttgtgcccatagtcgagccggaagaaaccatcattgaagaggctgaacccagccttgagcagcaactggcgcaactgcaaatgcaggcccatgagcaaggttatcaggcgggtattgccgaaggtcgccagcaaggtcataagcagggctatcaggaaggactggcccaggggctggagcaaggtctggcagaggcgaagtctcaacaagcgccaattcatgcccggatgcagcaactggtcagcgaatttcaaactacccttgatgcacttgatagtgtgatagcgtcgcgcctgatgcagatggcgctggaggcggcacgtcaggtcatcggtcagacgccaacggtggataactcggcactgatcaaacagatccaacagttgttgcagcaagaaccgttattcagcggtaaaccacagctgcgcgtgcacccggatgatctgcaacgtgtggatgatatgctcggcgctaccttaagtttgcatggctggcgcttgcggggcgatcccaccctccatcctggcggctgtaaagtctccgccgatgaaggcgatctcgacgccagtgtcgccactcgctggcaagaactctgccgtctggcagcaccaggagtggtgtaatgaccacgcgcctgactcgctggctaaccacgctggataactttgaagccaaaatggcgcagttgcctgcggtacgtcgctacgggcgattaacccgcgctaccgggctggtgctggaagccaccggattacaattgccgctcggcgcaacctgtgtcattgagcgccagaacggcagcgaaacgcacgaagtagaaagcgaagtcgttggctttaacggtcaacggctgtttttaatgccgctggaggaagtcgaaggtgtcctgcccggcgcgcgtgtttatgccaaaaacatttcggcagaagggctgcaaagcggcaagcagttgccgctcggtccggcgttattaggtcgcgttctggacggcagcggtaaaccgctcgatggcctgccctcccccgatacgacggaaaccggtgcgctgattaccccgccatttaacccgttgcaacgtacaccgattgaacatgtgctggacaccggcgtgcgcccaatcaatgccctgcttaccgttgggcgtgggcagcgtatggggctgtttgccgggtccggcgttggtaaaagtgtgctgctggggatgatggcacgttacacccgcgccgatgtcattgtcgtgggtttgattggtgaacgtgggcgcgaagtaaaagattttattgagaacatcctcggtgccgaagggcgtgcacgctcagtggtgattgccgctccggcggatgtttctccgctcctgcgaatgcagggtgccgcctatgccacgcgcattgccgaagattttcgcgatcgtggtcagcatgtgttgctgattatggactccctcacccgctacgcgatggcccagcgtgaaattgcgctggcgattggcgaaccccccgccaccaaaggttatccaccgtcggtgtttgccaaattaccggcactggtcgagcgtgccggaaatggcattagcggcggcggctcgattaccgcgttttataccgtgctcactgaaggcgatgaccagcaggatccgattgccgactccgcgcgggcgatcctcgacggtcacattgtgctgtctcgccgactggcggaagccgggcactatccggctatcgatattgaagcgtcgatcagccgcgcaatgacggcgttgatcagtgagcaacattacgcgcgagtgcgcaccttcaaacagctgttgtcgagttttcagcgtaaccgcgatctggttagcgtcggcgcgtatgccaaaggcagcgatccgatgctcgataaagccatcgccctgtggccgcagctggagggctatttgcaacaaggcatttttgaacgcgcggactgggaagcgtctctccaggggctggagcgtattttcccgacagtgtcataacccaggagataacggcagatggcagaacatggtgcgctggcgaccctgaaagatctggcagaaaaagaggtagaggatgccgcgcgcctgctgggtgaaatgcgtcgcggatgtcagcaggcggaagaacagctcaaaatgctgattgattatcagaatgaatatcgcaataacctcaacagcgatatgagtgccgggataaccagcaaccgctggatcaactatcagcagtttatccagacgctggaaaaagccattactcagcatcgccagcaacttaatcagtggacgcagaaagttgacattgccctgaacagttggcgagaaaaaaaacaacgtttgcaggcctggcagacactgcaggaacggcaatccacggcggcactgcttgcagaaaaccgcctcgatcagaaaaagatggatgagttcgcccagcgcgccgccatgaggaaacctgaatgattcgcttagcgcccttgattaccgccgacgttgacaccaccacattgcctggcggcaaagccagcgatgctgcacaagattttctcgcgttgttgagcgaagcattagcaggcgagacaactaccgacaaagcggccccccagttgctggtggcaacagataagcccacgacaaaaggcgagccgctgatcagcgatattgtttccgacgcgcaacaagctaatttactgatccctgtggatgaaacaccgcctgtcatcaacgacgaacaatccacatcaacaccgttaaccaccgctcagacgatggcgttggctgcggtggctgacaaaaatacgacaaaagacgaaaaagcggatgatctgaatgaagacgtcaccgcaagcctgagcgccctttttgcgatgttgccgggttttgacaatacgcccaaagtgactgatgcgccgtcaaccgtgttaccgacagagaaaccaacgctcttcacaaaactgacttctgagcaactcacaacagcacagcctgatgacgcccccggcacaccagctcagccattaacaccgctggtagcagaagcccagagtaaagcggaagtcatcagcacaccttcaccggtgaccgctgccgccagcccgctaatcactccacaccagacacagccactgcccaccgtcgccgcacctgttttgagtgcaccgctgggttctcacgaatggcaacaatcattaagccagcatatttcgctgttcacccgccaggggcaacaaagtgcagagttgcgtctgcacccgcaggatttaggtgaagtgcaaatctccctcaaagtggatgataaccaggcgcaaatccagatggtttcaccgcatcagcatgtacgcgccgccctggaagcagcgctgccggtactgcgcacgcagctggccgaaagtggcattcagttagggcaaagcaacatcagtggcgaaagctttagtggtcagcagcaggccgcttcccagcaacagcaaagccaacgcacagcaaaccatgaacctctggcgggggaagacgacgatacgcttccggttcccgtctctttacaagggcgtgtaacaggcaacagcggcgttgatattttcgcctaacgtcagaggtagcaccgtaatccgcgtcttttccccgctttgttgcgctcaagacgcaggataattagccgataagcagtagcgacacaggaagaccgcaacacatgactgattacgcgataagcaagaaaagcaagcgatcgctttggatcccgattctggtattcattaccctcgcggcctgtgccagcgcaggttacagctactggcattcgcatcaggttgccgctgacgacaaagcgcagcaacgcgtcgtgccctcaccggtcttctacgcgctggataccttcacggtcaatttgggcgatgcggatcgcgtactttatatcggcataaccctgcgcctgaaagatgaagctacccgctcgcggctgagtgagtatttgccggaagtccgtagtcgcttgctgttactgttttcgcgtcaggatgctgccgtactggcgacagaagaaggcaagaaaaacctgattgccgagattaaaaccacactttccaccccgcttgttgccgggcaaccgaaacaggatgtcaccgacgtgctgtataccgcttttattctgcgataacgacatgggcgatagtattctttctcaagctgaaattgatgcgctgttgaatggtgacagcgaagtcaaagacgaaccgacagccagtgttagcggcgaaagtgacattcgtccgtacgatccgaatacccaacgacgggttgtgcgcgaacgtttgcaggcgctggaaatcattaatgagcgctttgcccgccattttcgtatggggctgttcaacctgctgcgtcgtagcccggatataaccgtcggggccatccgcattcagccgtaccatgaatttgcccgcaacctgccggtgccgaccaacctgaaccttatccatctgaaaccgctgcgcggcactgggctggtggtgttctcaccgagtctggtgtttatcgccgtggataacctgtttggcggcgatggacgcttcccgaccaaagtggaaggtcgcgagtttacccataccgaacagcgcgtcatcaaccgcatgttgaaactggcgcttgaaggctatagcgacgcctggaaggcgattaatccgctggaagttgagtacgtgcgttcggaaatgcaggtgaaatttaccaatatcaccacctcgccgaacgacattgtggttaacacgccgttccatgtggagattggcaacctgaccggcgaatttaatatctgcctgccattcagcatgatcgagccgctacgggaattgttggttaacccgccgctggaaaactcgcgtaatgaagatcagaactggcgcgataacctggtgcgccaggtgcagcattcacagctggagctggtcgccaactttgccgatatctcgctacgcctgtcgcagattttaaaactgaaccccggcgacgtcctgccgatagaaaaacccgatcgcatcatcgcccatgttgacggcgtcccggtgctgaccagtcagtatggcaccctcaacggtcagtatgcgttacggatagaacatttgattaacccgattttaaattctctgaacgaggaacagcccaaatgagtgacatgaataatccggccgatgacaacaacggcgcaatggacgatctgtgggctgaagcgttgagcgaacaaaaatcaaccagcagcaaaagcgctgccgagacggtgttccagcaatttggcggtggtgatgtcagcggaacgttgcaggatatcgacctgattatggatattccggtcaagctgaccgtcgagctgggccgtacgcggatgaccatcaaagagctgttgcgtctgacgcaagggtccgtcgtggcgctggacggtctggcgggcgaaccactggatattctgatcaacggttatttaatcgcccagggcgaagtggtggtcgttgccgataaatatggcgtgcggatcaccgatatcattactccgtctgagcgaatgcgccgcctgagccgttagtgatgaataaccacgctactgtgcaatcttccgcgccggtttctgctgcgccactgctgcaggtgagcggcgcactcatcgccattattgccctgatcctcgctgctgcctggctggtaaaacggttgggatttgcccctaaacgcactggcgttaacggtctgaaaattagcgccagtgcttcactgggcgcgcgtgaaagggttgtggtggtcgatgtggaagatgcacggctggtgctcggcgttaccgcaggtcaaatcaatctgctgcataaacttcccccttctgcaccaacggaagagataccgcagaccgattttcagtcggtcatgaaaaatttgcttaagcgtagcgggagatcctgatgcgtcgtttattgtctgtcgcacctgtccttctctggctgattacgcccctcgccttcgcgcaactgccgggtatcaccagccagccgctgcctggcggtggacaaagctggtcgctcccggtgcagacgctggtgttcatcacctcgttgacgtttattccggcaattttactgatgatgaccagtttcacccgcatcatcattgtttttggtttattgcgtaacgcgctgggaacaccctccgcgccacctaaccaggtattgctggggctggcactgtttttgaccttttttattatgtcaccggtgatcgacaaaatttatgtagatgcgtaccagccattcagcgaagagaaaatatcaatgcaggaggcgctggaaaaaggggcgcagccgctgcgtgagtttatgctgcgtcagacccgtgaggcagatttagggttgtttgccagactggcgaataccggcccgttgcagggacctgaagccgtgccgatgcgcattttgctcccggcctacgtgaccagcgagttgaaaaccgcatttcagataggcttcacgattttcatcccttttttgattatcgacctggtgatagccagcgtgttgatggcattggggatgatgatggttcccccagccaccattgctctgccctttaaactgatgctgtttgtactggtggatggctggcaattgctggtcggttcgctggcgcagagcttttacagctagagaggcaaaatgacacctgaatcggtcatgatgatggggactgaagcgatgaaagtcgcgctggcactggctgccccgctattgttggtagcgttggtcacgggccttatcatcagtattttgcaggccgccacgcagattaacgaaatgacgctgtcgtttattccgaaaatcatcgccgtatttatcgccattattattgccggaccgtggatgctcaatctgttgctggattacgtccgcaccttgttcactaacctgccgtatatcatcgggtagccgtactatgttgcaggtgacaagcgaacaatggctatcctggttaaacctgtacttctggccgttactgcgcgtgctggcgctgatctccaccgcgccgattctgagcgaacgcagcgtaccgaaacgggtaaaactgggtctggcaatgatgatcacgttcgccattgccccatcattacctgccaacgatgttcctgttttttcgttctttgctctgtggctggccgtgcagcagatcctgatcggcattgcgcttggttttaccatgcaatttgcctttgccgctgtgcgaaccgctggcgaaattatcggtctgcaaatggggctgtcatttgcgacgtttgtcgatccggccagccatcttaatatgcccgttttagcgcgtatcatggatatgctggcgttactgctgttcctgacatttaacggtcatttatggttgatttcactgctggtcgatacctttcacaccctgccgattggtggcgaaccgttgaacagcaatgcgtttctggcactcaccaaagcagggagtttgattttccttaacgggctgatgctggcgttaccgctcattactctgctgctgacactgaatctggcattaggtttacttaatcgtatggccccgcaattatccatttttgttattggatttccattaactctgactgtcggcatctctttaatggcggcattaatgccgttaattgcacctttttgcgaacatttattcagtgaaatttttaatttgctggctgatattattagtgaattgccattaatataattccgtaacgtttatcatgttatcctaaggattatccgaaaaataatacctacgaacatcttccaggatactcctgcagcgaaatatttgttttaagctcactcacatatcgcaacatttactttactttaagacaattccaggcaaattatacaacactttacgggatagtaagtccgcctgaaaaatcgcgagagtggcgcattaggtgacccatgttgttccgtttagtcatgatgaaatattcaggtaaggggaattatcgttacgcattgagtgagggtatgccatgtcaacgattattatggatttatgtagttacacccgactaggtttaaccgggtatctgttgagtagaggggttaaaaaaagagaaatcaacgacattgaaaccgttgatgaccttgccatagcttgtgattcacagcgcccttcagtggtgtttattaatgaggactgtttcatccacgatgcttctaacagtcagcgtatcaagctcatcattaatcaacatcccaatacgttatttatcgtttttatggcaattgccaatgttcattttgatgaatatctattggtcagaaaaaatttattgatcagttctaaatcgattaaaccggaatctctcgacgatatccttggcgatattctgaaaaaagagacaacgataacctcgtttttaaatatgccgacgttatcattgagccgaaccgaatcgagtatgttgcgaatgtggatggcaggtcagggaaccattcaaatctctgaccaaatgaatatcaaagccaagaccgtttcatcgcataaaggtaatattaaacgtaagatcaaaacgcataataaacaggttatctaccatgtcgtccgactgacggataatgtgactaatggtatttttgtcaacatgcgctaacacattctgactggtggtttcccaccagtcaggctgaataagattactctgctttctccacaaagataccgtcctgatgccctgcttcattaaagaaccagatgccgagcgggtagtcttccagcgaaaccaggtacattgtgccttcactaaactcctcaactgccagtaccacgccaggacgacgcggaccgccatccgttttgactgttacccgatcattcaccttcatcgttttcctcctgtggctttgtgccagtgtagaacaatttcgtttttctggcagcgccaggcgcgcgcgagtgctgattttctcgacggtctatacttaagagatgccaggcggacttaacgactggcggcaacaacagagtaacggttgcgaggaaagatgatgaaaaccgcaaaagagtacagcgataccgcaaaacgtgaggtcagcgtcgatgtcgatgccctgctggcggcgatcaatgaaattagcgaaagcgaagttcatcgcagccagaacgattctgaacacgttagcgtcgatggacgtgaatatcatacatggcgtgaattggcggatgccttcgaactggatattcatgacttcagcgtctctgaagtgaatcgttgaatgcacaataaaaaaatcccgaccctgagggggtcgggatgaaacttgcttaagcaagaagcacttaaaaaattcgttacaccaggaaatctgatgtgttcatcaccttatccgcaatttttttcgctgacaagaaaatattcgccatatgaatgattaacgctacttatgaatagaaatgtgacgcacgtcaccccttggtggctctggcgtcagcgggatcgctcccgaaaaaatcatctttgataatttgtgcggttttgagaatcatcctggtaagaggagtactgcgcgactatgttttcaattcaacaaccactactggtttttagcgatcttgatggcaccctgctggacagtcatagttatgactggcaaccggcagccccctggctcacccgtttacgcgaagcaaatgttcccgtcattctctgtagcagtaaaacatcagcggaaatgctgtacttgcaaaaaacgttggggctacaaggtttaccgctgattgccgaaaatggcgcagtgatccagcttgctgagcaatggcaggagatagacggttttccacgcatcatctcaggtattagccatggcgaaatcagcctggttttaaatacgctacgcgagaaagaacattttaaattcacgacttttgatgatgtcgacgatgcaaccatcgccgaatggacgggattaagccgtagccaggcggcgctgacgcagcttcatgaggcgtcggtaacgctaatctggcgcgacagtgacgagcgtatggcacaatttaccgctcgtctgaacgaactgggcttacagtttatgcagggtgcgcgcttctggcacgtactggatgcttctgccggaaaagatcaggctgccaactggattatcgcgacctatcaacaattgtcaggcaaacgcccaaccacacttggcctgggcgatgggccaaacgatgcgcccttactggaggtaatggattacgcggtgattgtgaaagggctaaatcgtgaaggggtgcatctgcatgatgaggatccggcccgcgtctggcgaacgcagcgtgaaggaccggaaggatggcgtgaagggctggaccattttttctccgcccgttaagcgttatcgctcgcgaatacccgattacgcccagcctgtttagcgagataaagccgacggtcggccagtgactggagttgttcaaaatcataatcaccggtttcctcgctgctgcttacccccagcgaggcactgatgcgtatcgtcgtactcttggcgatcaacatctctttttcatttaatttcagtcgaatacgttctgcgacctccgcagcctccgtcagactcgcgcctggcagaatcacacaaaactcctcaccaccgacccgcccggcaacgtcctgcgcacgcaaggaactgctaattaatccggcagcatgagaaagaacacggtcgcccgcctgatgaccaaagcggtcattaatcgctttaaaatggtcaagatcgacctgaatgacagaaaaaggatgttggtgcgtctgacacaatttagcgagcggacgggctttttcgaacagtgcgccacggttatataaacgcgttaaggtgtcgtgccacgcctgccactgcaacgagctttgcagaacatacatgttgctaaccatccggcgaatcacataccaggagatgagtaacatggtggtaaagagcgcccacagcagggttaatgcaatgctgatactgccgaaatcgccgcgcacgccttcgcttaacgtatggacacgcaccagcacaccgtcgaaatggtccagacgttcccagctaacatagcgactgtccatacgaatgccgccccgcgtgtcatgttccattgcctgcgccagcaaggccagttcacgaggatcaaaaatattccctgttggatggtcaggattggaagaggtcaaaaatctcagcttactgtcatagagctgatactcaccatcgaggtttttatcgatggcgtttcttaaaaattgctgcatagtacgcacgggaatactcatccccagcacgccataccagtagttattactgtctaccggaacactgacggtaacctgcggttcagtattgctggcgtgttccggttgcgaagtgaaccagcgtaccgcgcggtgacgattttctcgttgtgaatggccaataaaccagggttgggtgacatagccgtaataacgcgttggaacattgcgcgtaaacaaggtcggctgcgtcgaaacgtaaaatccggcacgcgagacatacatcgcctgttcaaccatcgacgaggagttgtgcgctagtcgcagcaagtaaccaacttccagtgcagcggtaatttcattgtcgaggctttcattttcgcgagacaggagattcccctcgctgactaatgcatccgacacaccattaactggcagagtgcgtcgtcggttgagttcgattttccaggcgtgctcgtcgcgatgctgttcgaactcggttacagcatcacgcagagaggtgaaatccagtggcgctacgagagcttcgcgcatgccattacgtaaaaagatcagtttgtcgacgttatactgcaaatgcttatcgagcgcgttggcaacgttttccagatgattacgctggctggagatataggcatcttccagcaccaccacttcacgccaggtgagcaaggtggaaaaaagcaataccacgataaagcagagattaacgacatgaccaggccccaggcggcgtgcgagttttttcaaccagctctggttttccatttttgtctcgtgctgcaccctgacgactcccaacctgcttttttatgattctggcataacctggcgatagcgtaccgcaaaacagcgataattttataatggtggcatgataagacgcgactatcattcattgcaggcattagcacaccaggccggatgtgatccggcctgatgttaatgataccctttcacacttcttccgcagaacgactcccctcccccggaacaagctcggtttcatgaaaagcttcccgcttgaccccgtaaccgtcataccaacgacactcaaccataccgctggagtatccagtgacaatcatccgcgggccgccctctttaaccgtaacttcctcactaaccataaagctcatactcgcctccttttttcgagtgaaacttgttcaccttagttgaagatggcgaattttgcataatagccagtgcgagtattaatgtgcctgaccgcgcattttctctacggctttcactcccagcaccacgatgccgccgatgataaatccaagaatcagatttaaaacagtcggtaatatcatcgccactactgcactttgctgcccggcgaaatgttcaatggcgtgatgcagcggcgcaattccatgtaccacaatcccaccgccgacgaggaacatcgccagcgtgccgacaatcgataacgctttcatcagccagggcgcgataatcaataaccctttacctaatgcctgcatcagcgcgctggatttttccgccagccaataccccaggtcatcaatcttaacgataacccctaccagaccgtagacgcccacggtcactaccagcgcgatgcctgaaagcaccagcacctgattaagcaacggcgcttcggccacaatccccagcgtgatggcgacgatttccgcagacaatataaaatcggtacgaatcgccccttttattttgtccttttcaaacttcagcggatcctgcgccgccagcttctccagacgctgctggctctgcgccggatcttctttatgtttacgcgcctccagcatatgcagcactttctctactccttcaaagcagagaaacgcgccaccaatcatcaacagaggcgtaatcgcccacgggataaacgcactgatgatcagcgccagcggcaccagaatcactttattaatcagcgatcctttcgccacgccccagaccacgggaagttcccggttggcccgcacgcctgaaacttgttgcgcattgagcgataagtcatcccctaatacaccggcggttttcttcgccgccagtttgcccatcacggagatatcgtccagtagtgtggcgatatcatcgagcaacgtcagtaaactactcccggccaaaagcattccctctcatttttattgttgaagggtgtaagtatgaagcaaaaacggcagctctgatacttgcttcacaggtcaacatttttttaacaatcaagtgcaattatatctctcgccagcagaatgattttcacgtttactatgaaccacctttttatttccaccgtgagggattatgcgtttccgccagttgttaccgctttttggcgcgctgtttgcgttgtatatcatttggggctcaacctattttgtcattcggattggcgtggaaagctggcctccgttaatgatggcgggcgttcgattcctggcagccggtattttattgctggcatttttgctactgcgcggacacaaactccccccgctacgtccgctgctcaatgccgcgctgattggcctgttattgctggctgtcggtaatggcatggtgacggttgccgaacatcaaaatgttccttccggcatcgccgccgtagtggttgcaaccgtgcccctctttaccctgtgcttcagccgcctgtttggcattaaaacgcgcaaactggaatgggtgggtattgccattgggcttgccggaatcatcatgctcaatagcggtggaaatttaagcggcaatccgtggggcgcgattctgattttaatcggctcgattagctgggcgtttggctcagtttatggctcgcgcattaccttacctgtagggatgatggcgggtgcgattgagatgctggcggcaggcgtggtgttaatgatcgcgtcgatgattgcgggtgaaaaactgacggcgctcccttccctttcaggcttccttgcggtcggctatctggcgctgtttggttcgattatcgccatcaacgcttatatgtatttaatccgtaatgtcagtccggctctcgccaccagctacgcttacgttaacccggtggtcgcggtcttgctgggtacgggactgggtggagaaacactgtcgaagattgaatggctggcgctcggcgtaattgtcttcgcggtggtactggtcacgttgggaaaatatctcttcccggcaaaacccgtagttgcgccagttattcaggacgcatcaagcgagtaaatgaatcccctgcgtgtcgatctgcgcgctggcaccttcgccgcagatccactcttccagacgctcggtaagcgcttcatccgtcagcttctcgcgcccacgtaacgcgcactcccagacaatcaatacgcgccagccgagttcctgcaagcgactgatatcgcggcgatcgcgctcaacatttttacctatcttctccagccagaactcggttcgagtcgcaggcactttaaacagatagcagtgatgatgatgccagaagcagccatgggtaaatatcacgcagcgatattcatcaacgacaaaatccggacgtccgggcagactggcgtcctgaacgcgaaatgccaggccctgcccggttaacagactggcgaggcgcttctctatcgccgtatcacgcgtggcaatcgcgcgcatatttttgctgcgagtggccttatcgtgaacgtcggccatgttgtgcctcttgctgacgcaacgccaccgcctgtttgatttttggctcaagcagttttgccaccgcggcaaagaccggcacgaccaccgagttaccgaactggcgataggcctgagtgtccgaaaccggaatacggaatttcgcttctcccggcgcttcaaaacccattaagcgcgcgcattcccgaggcgttaaccgacgtggacgatgttgctgattcagcggatcgtcaaagtctttctcacccgtggccatatcccagccgcgatcgattaaaatttccgcgccatctttgtaataacgcgcagacagcgtacgcgtgacgctttgcggattgttcggataaaccattccataaccgaagccgttaccgcgcgcctgatgttttttcgcatatcgatagaggtacttccacagcaccggcgtcaggatatatttcgcctcgaccatcgggtccaacagctgcgccagcgtcactcgctgcgcagggaaacattcgctgatatcacgcagggtaaaatcggctttcagattcagatcgcgacgaaaacccaccagcacgatgcgttcacggtgctgcggcagaaaatgtttgccgtcgatgattttcggatcgtctggcccattatcttctgcatcagccacgtcatagcccagttcgtccagcgtctgcatgatgatgcggaacgttttaccctggtcgtgacttttcaggtttttgacgttttcgagcacaaacatcgccggacgacgcgcgtcgataatgcgtaccacatcaaaaaacagcgtgccctgggtatcgcaggcaaaaccgtgcgcccgcccgagcgagttctttttcgatacgccagccagcgaaaatggctgacaagggaaaccggccagtaaaacatcgtgttcaggaatgtgttgacgaatatgttccgccgccgcctcatcactcacgccttctttatggctgagggtgatgtcgcggatatcttcattaaaatgatgcgtcgccggatcgcaataatggttggctttataagtgcgtaccgcatgtttgttccattcgctggtaaacacgcactgtccgccaatcgattcaaaaccgcgacggatgccgccaattccggcgaatagatcgataaagcgaaacgcataatgcggatgatgtgccggtggtttgggtaataacgtttgcagatgggcgaactctttctcacttaaacggtgccatgccgagtcattcgccagcgcacgttttaaaattgccgcgctccagtgattctcacctacaccattaagctgcgccaccaacgttttaacatcataaatttgcagcagtttctccagcattgcctgtgcggcattcccggtgctgtatgaatcggttactgatatattttcctgcatagatttcaccggccatctgagatggccgacaggttaacataattacagccatttagggccacgcgctcagccagcggatgaaaacgcatctatcaccttgtgatcgacaccttcattctcccccgccagttcggcactgagcttcgccataaactcgactaaaaaatgcgcgttgtgctgcgccagctgcttgcctcttgcggtttgcatggtttgcggtagcttcagcaacttagtctggaaatgatccagcgcgtagcgtttatcatcaagcgggcgatgctgtgcgaacggatcttcaccatcaaacagcgccacgcccaatgcccctgaaacggcaaacacgcgcgccaggccaatcgcccccagggcttccagccgatccgcatcctggacaattttagcttccgttgttaagggggcgatttgcgcgctgaaactgtgagcggcaatggcatgacaaacggcctcgattttctccgccggaaattgctcgaactcttcacggagcaggcgacgcgtctcttctgccgccaggattgaagaacgctgcctttgcggatgatttttcgccaggctcacaatatcgtgaaaataacaggcggttaaaatcaccagcatatcgacatcgtcatctgccgccagcttctgtgccgtagcccagacgcggcgaaaatgacacacgtcatgggccgcgtcctggtgctgatgatggtttttcaaccagttttcgaactgtgcctgccagtgttgtaagtccatacgcgctccgttgccaaagagtcgccaccttagcagtttttattcatagcgtctgctacgtgcgggacgaggtcgggtgtaccaggcaatgctgcctaacaatgccccgaccagagccataaataaaaatccgaccagtgcccctaaccactttcccgcggtagagcctaaatcgctttcaaatcccgacacgggggcatcgggaatccggctcatcacccagatgtaacgcgccattgcccagacgaaatagccacaccatgtatagaaagcccacaaagccagtttgccgccagggctgcgagagagtctctcttccatctttgtcgaaccgtattccattttgagataacccggaaaattcagacttagtactattatgtgataaaagtcacatttttccacattggatgagccagtcaagactcaatcattttttgaacaaatagataaattttgcgcaacggcagtgaatacaggaaaaatcgttttgagcgattttatttatctctgatatcggctttattaattcatttaatcaatatattagcactgattacaattatacctttttattattctgtgtcatgatgcttccgttattagccttttatcgtcttgtttatattttttgggccggcatgatgccggcttttttttatgccttcattaatgtgcgcctgatcacaccagccgtttggcgcaacaatcattgataccccctatgtttccgctcaactcataacatattgatatacatttataattttcatgaatatttatatttagaattcataattatgaattatattaaatagattagaaacattttgatatcttttaaatacatttgttacatgtaatccttaaaataaaatgaacttcatagaatagtatccaaatgtgcttttttttggataacggcacttattgatatattcatgaagattataatcacaagggaatacataatgaaaagaaaagttctggcaatgctggtcccggcgttattagttgctggcgcagcaaatgcggctgaagtctataataaagatggtaataaactggatttgtacggaaaagtagtgggtctgcactacttctctgatgattctggcagcgatggcgacatgtcatatgcccgtatcggtttcaaaggtgaaactcagatcgctgatcaattcactggttatggtcagtgggaatttaacattggcgcaaacggtcctgaaagcgacaagggtaataccgcaacgcgtctggcatttgcaggtttaggctttggtcagaatggtactttcgactatggtcgtaactacggtgtcgtatatgacgtagaagcatggaccgatatgctgccagaatttggtggcgatacctatgctggcgctgacaacttcatgaacggtcgtgctaatggtgttgcaacctaccgtaacaatggcttctttggttaggtcgatggcttgaactttgctttgcaatatcagggtaataatgaaagtggtggaccattcgggcaggaaggttccggtagtggtgatggccgtagcctttccaaagaaaatggtgatggtttcggtatgtcaacatcctacgacttcgacttcggtttaagtctgggtgctgcatatcaaactctgatcgttcagatcgtcaggttggagttggtttaaatgatcgtaaccatagcaacagaaatgctggtggtgaaaccgctgaagcatggactgttggtgcaaaatatgatgctaataatgtgtatttagcagctatgtacgctgaaactcgcaatatgaccccatatggtggtggcgagtttgataatggtgaatcaagatcagccatcgctaacaaaacccaaaactttgaagttgttgctcagtatcagttcgactttggcctgcgcccgtccatcgcttacctgcaatctaaaggtaaggatttaggcggttgggctcatgacggcaacggcgacccacgttacaccaataaagatctggttaaatacgttgatattggtgcgacctactacttcaacaaaaacatgtccacctatgttgattacaaaatcaacctgctggacaacgacgatgacttctacgaagcaaacggcatcgctaccgatgatatcgttgctgtgggcttagtctaccagttctaatcagtcaactcgctgcggcgtgttactgtaaaactgaacactagcctgagttcgtccctcatcgaactcaggcttttttattggcatttcatctccatctgcggcacacgcaattgccgaagcatatcgatacagcaccttaccctgcccctcctggcacaataacatcaaccagctactcttcaagctaacacccaaatgcatttctttatgaattaatccgtaacaaacacgcttcccatatagaaatatttgcaaaaatagtgcatgaaataagctttttctctaccaatccgggatataaatattcatcagcaccacaatattccacagcactaaatctctccccgccaccccgtacctctgataatggtctaaaatcattgaagccacttgcgacgacgttgctcaataaggaaaatttggcgtgaataatattcaacaccagtgcagcatcatcattacatacttacagccgccgactaccgctttcgatatattgactcaattttccagcctggttaaaaatagcgaccagctcagtcgcaaatatagtgactaccctaactaagcaacaataaggaatacactatgactgttcaaacaagtaaaaatccgcaggtcgatattgctgaagataatgcattcttcccttcagaatattcgcttagccaatataccagtcctgtctctgatcttgatggcgtggactatccaaaaccttatcgcggtaaacataaaattctggtgatcgccgcggacgaacgttatttgccgaccgataacggaaaactgttctcgaccggtaaccatccgattgaaacgttgctgccgttgtatcatctccatgctgcaggtttcgaattcgaagtggcgaccatttccggtctgatgaccaagtttgaatactgggctatgccgcacaaagatgaaaaagtaatgccattctttgagcagcataaatcgttgttccgcaatccgaagaaactcgcggatgttgttgccagcctcaacgctgatagcgaatatgcagcaatctttgttcctggtggtcatggcgcacttattggtttacctgaaagccaggacgtggctgccgctttacagtgggcaatcaaaaatgaccgttttgttatctccctttgccacggcccggcggcttttctggcgcttcgccacggcgataacccactgaatggttattccatttgcgcattcccagacgccgcagacaaacaaacgccagagattggctatatgccgggtcatctcacctggtacttcggcgaagaactgaagaaaatgggcatgaatatcattaatgacgacatcaccgggcgagtacataaggaccgtaaacttctcaccggcgacagtccttttgcagcgaatgcgttgggtaaactggcggcgcaggaaatgctggcagcttacgcgggttaatccctgttacgtttgaatgtaagcgcataatcaatcgcggccgcgttagtactcacgacgtggctgcgttttttcacggttaatttatggcgtactgaagccctatgttaatttctttgcggtaacgtaatccggaacacattatgcttattgagatagtgatacgtagcacttcccccatgcaattcggcaatcgctttgactaaagaaaggcctagtccctgacctacggaatgacgcgaattatctccccgccaaaatctacggaagagtttttcaggctcattaattttcgttccagggctggcgatatcaatattaagatagctgttggtatcaagaaaactggttatatgaatacgcgatttttctggcgaatatctaatggcattaacaataagattcgataacattcgttgtagtaaaattttatccgcaaagatttgctgattgcactcgaccttaaagcaaatctctttctcgtctgaaaggtattcaagatagtccaacaaattttcgacttccttattgagagaaagcgagtccagtttcaccaaaacattgtttttatctgccctggcaagaaacagtatgttctctgttaaccgcgaaatattttccagctcttcaatgtttccggcaattgttttttgatattcagcgatacttctggtttgactgagcgtaacctgattctgacccagtaatgcattaattggcgttctaagttcatgagcgagatcgtcagcaaactgacttagacgctcaaaatctttgactaaagcatgatgcattttattcaacgcctgcccaagaggttttagttctctcggtaatgcgctaacctcaacaggctctcggctatcgttataattcagcgcttccgttacaccactcaactttttgatctctcgtaatcccgttctgattaacagcggacttaatactgagcaaagtacaatggcgacaatgcaaattataatgctattaattttatactgttcaagcatgttatgtctggctgaagccaatttagccacagtaaccgttaatgatggcgaaacttcatcaatattaattcgtaaagcatctatctctgtatcattaataatgcttctgtaaatgccagctgcgctgattgtctcactagcaggtatgttatttaacatgccatcactgacatttgtccggttaacaattttattgatgctatcaccatgaataatcaagatatcctgactaacatccatcatccggttaaagtacacaggtaacgtatctggatttaccccatcaattaacaactgcttgatctgcgctgtccggttaatgagtgttgtatcatcgcgccatttcaactcacttgccaggccattatagagagtccagacaattccggcgccagcaacagacagtagcaatataaaaagcaaggttaaacggacggttatagatagtcttttcattatttttttaccgctacgaatgaatagcccatcccccggattgtggcaattagcttttcaggaaaaggatcatcaacttttgcgcggagcctgcgaatggcgacgtccaccgtattggtatcactatcaaagttgattccccaaatttcactcgcaataaccgttctgggtataatttcgccagctctggaggccagtagccaaagtaactgaaactccttgcgcgtcagtgtaatactgatattgtccctgctcacactatgactaacagagtccattcttaagccgctgatttctaatgttgaattcaaagcgtgatgttgccttaattgtgcccgaacccttgccagcaactcagaaaatgaaaaaggttttaccagataatcatttgccccactgtccagccctctgactctgtcatcgacagaatcccttgcagtaaggcaaataacaggggtttgctttgctgttcttaacgtttgtaagatctgccagccatccatacccggaagcataatatccagaatgatcaatgcataatcatccttcagcgcaagataaagcccatctctgccatcagaaacggcatcgatgacataacccgcttcggaaagcccctgcgttacccattcctgggtcctttgattatcttcaataagtagaatcttcatgaaaataatatgccataaatcatatgttatagaaacagcctggttcattacaaaattgtaatgctgctgtaaggttaccctggacgctttttcgctatcctcaaaactcattcacatgacaaggatataaacatgttaaagcgttatttagtactctcggtagcaacggcagcattttcattaccttctttggttaatgccgcacaacaaaacattcttagcgtgcacattttgaaccagcaaacaggaaaacccgctgctgacgtgacagtcactcttgaaaagaaggcggataacggctggttacaacttaataccgccaaaacagataaggatggacgaattaaggcactgtggcccgagcaaactgcaactacgggcgattaccgtgtcgtatttaaaaccggggactatttcaagaaacaaaatcttgaaagtttcttccctgagatccccgttgaatttcatattaataaagtgaacgagcattatcatgtgcctttattacttagccaatatgggtattcaacctatcgtggcagttaatgcataaatatgtaaaagcagatctctgctactgttagggaggacactccctgacagattaacagtaaacggctcttgctggctaacgacaaaaaagtgtgatggcttatgaaaaagaatcaatttttaaaagaatcagatgttacggccgagtcggtattctttatgaagcgtcggcaggtgttaaaagcactgggcatcagtgcaactgcactttctttgcctcacgctgcgcatgccgatctgcttagctggtttaaagggaacgatcgcccgcccgcccccgccggaaaagcgctggagttcagcaagcctgccgcctggcaaaataacctgccactgacgccagcagataaagtttccggttataataacttctatgaattcgggctggataaagccgatcccgccgctaatgctggtagcctgaaaaccgatccatggacactgaaaatcagcggcgaagtggcaaaaccattgaccctcgatcatgatgacttaacccgtcgcttcccgctggaagagcgtatttatcgtatgcgctgcgtggaagcgtggtcgatggtggtgccgtggattggttttccgctgcacaaattgctggcgcttgccgaacctaccagcaatgcgaagtatgtcgctttcgaaacaatttatgcaccggaacagatgccaggccagcaggaccgctttatcggcggtgggctgaaatatccttatgtcgaaggattgcgtctcgacgaagcaatgcatccgctcacactgatgaccgtaggtgtttatggcaaggcgttaccgccacaaaatggcgcgccggtgcgactgattgtgccgtggaaatatggctttaaagggattaaatcgatagtcagtattaagctgacccgcgagcgtccgccaaccacctggaatctggcagcgcctgacgaatacggtttttacgccaacgttaatccgtatgttgatcacccgcgctggtcacaggctaccgaacgatttattggttcaggcggcatcctcgatgtacagcgccagccaacgctactgtttaatggttacgccgcccaggtggcatcgctgtatcgtggcctggatttgcgggagaatttctaaatgcgtctgacagcaaaacaggtgacatggctgaaagtttgcctgcatcttgccggattgttgccgtttctctggctggtctgggcgatcaatcacggtggactgggtgccgatccggtgaaagatattcagcattttactggtcgcactgcactgaaatttttgctggcgaccttgttaatcacccctctggcacgctacgcaaaacagccgttattgatacgcactcgccgcctgttaggattatggtgctttgcctgggcgacactgcatttaacaagttacgcattgctggagctgggcgtgaataatctggcgttattaggtaaggagttaattacccggccttatttaacgttaggtattatcagctgggtaattttgcttgctttagcgttcacttcaacccaggcgatgcagcgaaaactcggcaagcactggcaacagttgcataatttcgtctatcttgtcgcgattctggccccaatacattatctgtggtccgtgaagattatttcaccgcagccgctcatctacgctgggctggctgtactgcttttagccttacggtataagaagttgcgttccctttttaaccggttacgcaagcaggttcacaacaaattatctgtataacttcatattgccgacaaagtacgcgttatccctgccggatgtggcgcgagcgccctatccggcatacacagatcgcatcaggttatgtttcgtttgtcatcaacctcaaatcaccaaaataatttattttatttcaataagatagataagtagaactgagaaagccatgctctcgtttcctaagagttgttgcattttgctatatgttacaatataacattacacatcatatacattaactctggaggaaactgttttggcgattcgtctttacaaactggctgttgctttaggtgtctttattgttagcgctcctgccttttcgcatggtcatcactcacacggcaaacccttaacagaggtcgaacaaaaagctgctaatggtgtttttgatgatgccaatgtacaaaaccgaacgctcagtgactgggatggagtctggcaatccgtttatcctttactgcaaagtggcaaacttgaccccgtctttcagaagaaagcggatgcagataaaactaaaacatttgctgaaattaaagattattatcacaaaggttatgcaacagatatcgagatgattggcattgaggacggcattgttgaattccatagaaataatgaaacaacatcgtgtaaatatgattacgatggatacaaaatactcacctataaatcaggcaagaaaggcgttcgttacttattcgaatgtaaagatcctgaaagcaaagcccctaaatatatacaatttagcgatcatataattgcaccacgaaaatcatctcattttcacatttttatgggtaatgattcacagcaatctttattaaatgaaatggaaaactggccaacgtattatccatatcagttgagtagcgaagaagtggtcgaggaaatgatgtctcattgagtattctcatgataacgcctcgatgccgctttagtaagttatcataactgccactggtccatccacaaacgccactgaacgcaagctagctacagacacgctcatcactatgacgtgtctgtatattaataagctaacccgcattgagttaaccaataacggattccatacacaatacggccaacagagaaagatacctgtgctcacgccattgcttatattggctggttacaatatgcactatcaattttttaaataacaaattattaaaaccacatctgtataaggaatttttaaggttcgtgggatagcttgactgtgaaaatcacaggagctacaaaaatgaaccgattctcaaaaactcaaatttatttacattggataacgctgcttttcgttgcaataacctatgccgcgatggaactccgtggctggtttcctaaaggtagtagtacttatctgctgatgcgagaaacacattacaatgcgggtatattcgtttgggtgttaatgttttcacgcctgattataaaacaccgttatagtgatccttctattgtgccaccgccacctgcctggcaaatgaaagcggcttcgctaatgcacatcatgctttatataaccttccttgcacttcctctgctggggattgctttgatggcttacagtggaaaatcgtggagtttccttggtttcaatgtgtctccctttgttaccccaaacagcgaaattaaagcactgataaaaaatattcacgaaacctgggcaaatataggctactttttaatcgcagctcacgctggcgcagcactctttcatcactacattcagaaagataatactctgttacgaatgatgcctcgccgcaaataagtcgatccccttacaaggaaatgtgaaccatggacatcaacgcgtcataaatgtttacgcaagtgcacaatgcaccctttccactatcaacaaggaggagcagaaactgtgtaaatcgtacaatggtaagacttatcaaaaatacaggttaattttggtatttaaaccttttttacttgttagtatgatacaaaggctttcaaaaaagctgcgaaattcaacaactcttggaaattatggactttgtcccgcggctttaatctgacggccgcgttccttttttgactcaattattgaacccttctctacgcaacttcagttcccaccaccaactttgcggcagtttcataggatgaatgtctaaaagaataatggtgagcgataagaaaacgactgaataactgcacattttcgctcgaaagcttcctgtcagatccatagcgaatcaagtgctgaatgtcacagtatcgaacagaaaacagtgacgatctaacccttcaagaatattctacgattgttctgtttaggaaaagcaaggcgggaagtcgggagataagtcattgataaagtggcggagagagggggatttgaacccccggtagagttgcccctactccggttttcgagaccggtccgttcagccgctccggcatctctccgttcagatggttgccatgatgccaggaaatttggcattttaacagtccctgtccgtgcaattttgttcaagtgacgagtttgcgagcaaaacgatgattaagtggccctggaaagtacaagaatcagcacatcaaactgcccttccctggcaggaagcactatcgatcccccttttaacgtgtctgacggaacaggaacaaagcaaattagtcactcttgccgaacgttttttacagcaaaagcggcttgttcctttacagggctttgaactggattcattaagaagctgccggatagcacttctattttgcctacccgttctggagttaggactggaatggctggatggttttcatgaagtcttaatttatcctgcgccatttgtggtcgatgatgaatgggaagacgatatcggtctggtgcataaccaacgtattgttcagtcaggtcagagctggcagcaagggcctatcgttttgaactggttggatatacaagattcttttgatgcttctggttttaacctgattattcatgaagtcgctcataagctggacacccgtaacggcgatcgcgccagcggagttccctttattccgttgcgtgaggttgctggctgggaacacgatcttcatgctgcaatgaacaacattcaggaagaaatcgaattggttggcgagaatgcggcgagcattgatgcttatgcagccagcgatcctgctgaatgttttgccgtactttctgaatatttctttagcgccccagaactttttgctcctcgtttcccttcattgtggcaacgtttctgccaattttatcaacaagatcctttgcagagactgcatcacgctaatgatacagactcgttttcggcgacgaatgttcattaattaacaactttgcagattaattaaccaattgaaatgacttatgaaatttagtgttgacagacaaggtaccgctaagtaatattcgccccgttcacacgattcctctgtagttcagtcggtagaacggcggactgttaatccgtatgtcactggttcgagtccagtcagaggagccaaattctaaaaattcgcttttttagcgcaatgtcactgaccttagttgaacattgttttttaacggatagcgggtttttaacatcttaagcgccctcgacctttatggttgagggcgttttgctatgaacgccatcaccattttcccctcgattataaaacttgagttattcagtagtctcccctcttgcaactcacacccaaaactgcctaacgaaaagttattaattttcaatcatattgctatcagtatttacattttttcgctgtgctagaaagggcgcatttatgttagctcgttcagggaaggtaagcatggctacgaagaagagaagtggagaagaaataaatgaccgacaaatattatgcgggatgggaattaaactacgccgcttaactgcgggtatctgtctgataactcaacttgcgttccctatggctgcggcagcacaaggtgtggtaaacgccgcaacccaacaaccagttcctgcacaaattgccattgcaaatgccaatacggtgccctacacccttggagcgttggaatcggcccaaagcgttgccgaacgtttcggtatttcggtggctgagttacgcaaactcaaccagtttcgtacgtttgctcgaagttttgataatgtccgccagggtgatgaactggatgtcccggcacaagttagtgaaaaaaaattaaccccgccgccgggtaatagcagtgacaacctcgagcaacagatagccagtacttcacagcaaatcgggtctctgctcgccgaagatatgaacagcgagcaagcggcaaatatggcgcgtggatgggcctcttctcaggcttcaggcgcaatgacagactggttaagccgcttcggtaccgcaagaatcacgctgggcgtggatgaagattttagcctgaagaactcccagttcgattttctccatccgtggtatgaaacgcctgataatctctttttcagtcagcatactctccatcgtactgacgagcgtacgcagattaacaacggcttaggttggcgtcatttcactcccacatggatgtcgggcatcaacttctttttcgaccacgatcttagccgttaccactcccgcgccggcattggcgcggagtactggcgcgactatctaaaattaagcagtaacggctatttgcgactgaccaactggcgcagcgcacctgaactggacaacgattatgaagcacgcccggccaatggctgggatgtacgcgcagaaagctggctacccgcctggccgcaccttggcggtaaactggtctatgaacagtattatggcgatgaagtggccctgttcgataaagacgatcggcaaagtaatcctcatgccataaccgctggacttaactatacccccttcccgctgatgaccttcagcgcggagcaacgccagggtaaacagggcgaaaatgacacccgttttgccgtcgattttacctggcaacctggcagcgcaatgcagaaacagcttgacccgaatgaagtcgctgcacggcgtagccttgcaggcagccgttatgatctggtggatcgcaacaacaatatcgttctggaatatcgcaaaaaagaactggttcgcctgaccctgacagaccccgtgacagggaagtcaggagaagtgaaatcactggtttcgtcgctacaaaccaaatatgccctgaaaggctataacgtcgaagccaccgcactggaagctgccggtggcaaagtggtcacaacgggtaaagatattctggttaccctgccggcttaccggttcaccagtacgccagaaaccgataacacctggccgattgaagtcaccgccgaagatgtcaaaggcaatttgtcgaatcgtgaacagagcatggtggtcgttcaggcacctacgctaagccagaaagattcctcggtatcgttaagtacccaaacattgaacgcggattcccattcaaccgccacactgacttttattgcgcatgatgcagcaggtaatcctgttgtcgggctggtgctctcgacgcgtcacgaaggtgttcaggacatcaccctttctgactggaaagataatggtgacggaagctatacccagatcctgaccacaggagcgatgtctggcacgctgacgctgatgccacagctgaatggtgtggatgcggctaaagcccccgccgtggtgaatatcatttctgtttcgtcatcccgaactcactcgtcaattaagattgataaggaccgttatctctccggcaatcctatcgaggtgacggtagaactgagagatgaaaatgacaaacctgttaaggaacaaaaacagcaactgaataacgcagtcagcatcgacaacgtgaaaccaggagtcactacagactggaaagaaaccgcagatggcgtctataaggcgacctataccgcctataccaaaggcagtggacttactgcgaagctattaatgcaaaactggaatgaagatttgcataccgctggatttatcatcgacgccaacccgcagtcagcgaaaattgcgacattatctgccagcaataatggtgtgctcgccaatgagaatgcagcaaacaccgtctcggtcaatgtcgctgatgaaggaagcaacccaatcaatgatcataccgtcacgtttgcggtattaagcggatcggcaacttccttcaacaatcaaaacaccgcaaaaacggatgttaatggtctggcgacttttgatctgaaaagtagtaagcaggaagacaacacggttgaagtcacccttgaaaatggcgtgaaacaaacgttaatcgtcagttttgtcggcgactcgagtactgcgcaggttgatctgcagaagtcgaaaaatgaagtggttgctgacggcaatgacagcgtcacaatgaccgcgaccgtccgggatgcaaaaggcaacctgctcaatgacgtcatggtcactttcaatgttaattcagcagaggcgaaactgagccaaaccgaagtgaatagccacgacgggatcgccacagctacgctgaccagtttgaaaaatggtgattatagggttacggcctctgtgagctctggttcccaggctaatcaacaggtgaattttatcggtgatcaaagtactgctgccctgaccctcagtgtgccttcaggtgatatcaccgtcaccaacacagctccgcaatatatgactgcaaccttgcaggataaaaatggcaacccactaaaagataaagaaatcaccttctctgtgccaaacgacgtcgcaagtaagttctcgattagcaacggaggaaaaggcatgacggatagtaacggggttgcaatcgcctccctgaccggcacgttagcgggcacgcatatgatcatggctcgtctggctaacagcaatgtcagcgatgcacagccaatgacgtttgtggcggataaagacagagcggttgtcgttttgcaaacatcgaaagcggaaatcattgggaatggcgtggatgagacaactctgacagcaacagtgaaagatccgtcgaatcatccggtggcggggataacggtaaacttcaccatgccacaggacgttgcggcaaactttacccttgaaaataacggtattgccatcactcaggccaatggggaagcgcatgtcacgctgaaaggtaaaaaagcgggcacgcatacggttaccgcaacgctgggtaataacaataccagtgattcgcagccggtaacatttgtggcggacaaagcctcggctcaggttgtcctgcagatatcaaaagatgagatcacaggtaatggcgtcgatagcgcaacgctaactgcaacggttaaagatcagttcgacaatgaggtgaataatcttccggtaacattcagctcagcctcttcaggactcaccctgaccccgggagtaagtaataccaacgagtctggcatcgcgcaggccactctcgcaggcgttgcctttggtgagaagacggttactgcatcactggctaataatggtgccagcgacaacaaaactgtgcattttattggcgacacagcggcggcaaaaattatcgagttggcgcctgtcccagacagcataatcgccggtaccccgcagaacagctccggcagcgtcatcaccgccacagtcgttgataataatggctttccggtgaaaggtgtgactgtgaacttcaccagcaacgcagcgacagccgaaatgacgaacggcggtcaagccgtgacgaacgaacagggtaaggctaccgtcacttataccaatacccgctcctcgatagaatcaggagcgagaccggataccgttgaggccagtctggaaaatggtagctccacgcttagcacatcaattaatgtcaacgctgatgcgtctacggcacatctcaccttgctacaggcactttttgatacagtctccgcaggcgagacaaccagtctgtatattgaggtgaaggataattacggcaacggtgtcccccagcaggaggtaaccctcagcgtttcaccaagtgaaggcgtgacccccagtaataacgctatatatactaccaaccacgacggcaatttttacgcaagctttaccgctacaaaagccggggtttatcaattgacggcaaccctcgaaaatggcgattcgatgcaacaaacagtgacctatgtgccgaacgtcgcgaatgctgaaatcacgctggcagcctcgaaggatccggtgattgccgacaataacgatctcacgacactaacagcaacagtcgctgatacagagggcaatgcgatagccaacactgaggtaacatttactctgccggaagatgtgaaggcgaacttcacgctgagcgatggcggtaaagtgattactgatgctgaaggcaaagcgaaagtcacgctgaaaggtacaaaagcaggcgctcatactgttacagcatcgatgactggcggtaagagtgagcagttggtggtgaactttattgcggatacgctcactgcgcaggttaatcttaacgttaccgaggacaattttatcgctaataacgtcgggatgaccaggctgcaggcaacagtgactgatggaaacggcaacccgttagccaatgaggcggtgacattcacgctaccggcagatgtgagcgcaagctttactctcggacaaggcggttccgccattactgatatcaacggcaaggctgaagttacactgagcggtacaaaatccggcacctaccccgtgacagttagcgtgaacaattatggtgtcagtgatacgaaacaggtgactttgattgccgatgctggtaccgcaaaactagcctccttaacctctgtatactcattcgtcgtcagcacgaccgagggcgcaaccatgacggcaagcgtcactgacgctaacggcaacccggtagaaggcataaaagttaatttccgcggaacctccgtcacgctaagcagcaccagcgttgaaacggatgatcggggtttcgctgaaattcttgtgacaagcaccgaggtcggactgaaaacagtttcagcctctctggcagataaacctactgaagtcatctcgcgattactgaatgccagtgcagatgttaattctgcgacgattaccagtctggagataccggaaggtcaggtaatggtcgcacaagacgtagcagttaaagctcacgttaacgaccagtttggcaacccggttgcgcatcaacccgtgacattcagtgcagagccatcctcgcaaatgatcatcagccagaatacggtctctactaatacgcagggtgtagccgaggtcaccatgacgcccgaaagaaacggttcgtatatggtgaaagcatccctgccgaatggagcctcacttgagaaacaactggaggctattgatgaaaaactgacactcacggcgtccagtccgcttatcggtgtctatgcccctacaggcgctactctgacggcaacgctaacctctgcaaatggcactccagtggagggtcaggtcatcaactttagcgtaacgccagaaggggcgacgttaagtggcggaaaagtgagaactaactcttcaggtcaggctccagtcgttttgaccagcaataaagtcggtacatatacggtgactgcatctttccataacggcgtaacaatacagacacagacaaccgtgaaagtcactggcaactcaagcaccgcccatgttgctagctttatcgctgatccatcgactatcgccgccaccaacactgatttaagtaccttaaaggcaacggttgaggatggcagtggtaacctgatcgaaggtctcactgtgtacttcgccttaaaaagcggctctgccacattaacgtcattaacagcggtgaccgatcaaaacggaatcgcgacaacaagcgtgaaaggagcgatgacaggtagcgtcacggtaagcgcagtcacgaccgctggtggaatgcaaacagtagatataacgctggtggctggcccggcagacacctcgcagtccgtccttaagagcaatcggtcatcactgaaaggggactataccgatagtgctgaattacgtcttgttctgcacgatatatcaggcaatccgatcaaagtttctgaagggatggaatttgtgcaatcaggtactaacgtgccctatataaaaattagcgcaattgattacagtctaaatatcaacggtgattacaaagccactgttacaggaggcggagagggtatcgcaacgctgatccctgtattgaatggtgttcatcaagctggtctgagtaccacaatacaattcactcgcgcagaagacaaaataatgagcggtacagtatcagtcaatggtactgacctaccgacaactacattcccttcgcaggggttcaccggggcgtattatcagttgaataatgacaactttgccccaggaaaaacggcggctgattatgagttttcaagctctgcctcctgggtcgatgttgatgctaccggtaaagtgacatttaaaaatgtcggcagcaattcggaaaggattacggcgacgccaaaatcaggaggccctagctatgtatacgaaatccgtgtgaagagttggtgggtgaacgccggcgaggctttcatgatatacagccttgctgaaaatttttgcagcagcaatggctacacgctccccagagcaaactatttaaaccactgtagttcccgaggcatcgggtcactgtacagtgaatggggagatatggggcattacacgactgacgctggttttcaatcaaatatgtattggtcatctagtcccgcaaactcaagcgaacaatacgtagtttccctggcaacaggtgatcaaagcgtatttgaaaagcttgggtttgcttatgcgacatgttataaaaacctgtgattttccgttataatttcttaaagagtgttccattcggggcactcttttttacattccctctacagaactagcccttctctcacagaaaatgaataaataaaaatgcggcaccgccagaatcgcgttcgatgtgactatgatcattttcggtgagtactgctttgatctaaaggctggttttctgtgatgattgaccagcctcagagtattgatgacaccaccgttcataacagatcggcattactatgcataagtactgtctcatattctcgccaaaacactttttaatgcctttgcgaattcatccagacttatattgtcaattttttgcccaacgacgactgactccgagacatcggccattgcgggccatcgcgttttgtaatcagcataaattgcaacaacaggggtattataggcacttgccatatgtaatattgaggtgtcaggagttattgcgatataagcatcttttatgattgctgctgaacgtttaatcgagggtggtaaggataaacggtagacattattataacaatccactaatgccctggctttatcttcacctttgggtccatgaacgatcactattggtatatctgtttcactttaaatttttgctattagattttctgcaatcgataatgaaaatgtacgttcctgcgagctaccttctaaattgaacgcaatgtaagatcctaacgatcgcatttcctcgcgcacctcatcgagtacatcctcacttagtggcaattcatatattggcctgactgctggaaaacccgcctcacgcatcataaatgcccatgtcataggtacgggagcccggagtttctgatccatactggacgcgttcttgcacaaaggggagaagcaattcatggttataccaacaacctgaaaattcgtttttgctttcaactgactgataaataacatcgttttcaggttctttttacgcatcccctcaatgcaaagatccggcgtaccgtattgctgtgttatgttctttgctaaatcttttatttcttttaatgttgcgtgatcctgcatagtcattgtgactaatgttaatttagtctgttcaagtttaagcgcattaaagacttctaaattaattgtcgacgttacaattaaaagatgcttaattttatgcaattcaagcgcccgaataacaggaaagatggccatagcatcgccaatctgatcgggaatatggatgacaacaaagtctgttttttcaatattgaaattataagctttataatcgtagtaactaaatgcaatacgtctcaacaatgatgctaaaaacatacctaacctcgcctccctactggttataatgcaatgcagtctatcagactcatcagggtgccattttgtgcatatgcggacttttatgtttcatatctctaacctgtgggtcctctgcttaatccttaaacaacaccagcaactcctgcgctttcatcttccatcgaatttttcatgttgccgctaatcagccataaaatcatttgcagatgcgctctgtcgaggtagtctcataaggttcgtttatagatcgacggcaatgtgagttaccttttccatactaattataaaaagacagtacaaacaggatcattatggactccacgctcatctccactcgtcccgatgaagggacgctttcgttaagtcgcgcccgacgagctgcgttaggcagcttcgctggtgccgtcgtcgactggtatgattttttactctatggcatcaccgccgcactggtgtttaatcgcgagtttttcccgcaagtaagcccggcgatgggaacgctcgccgcatttgctacctttggcgtcggatttcttttccgtccgctcggcggtgtcattttcggtcactttggcgaccgactgggacgtaagcgcatgttaatgctgaccgtctggatgatgggcatcgcgacagccttgattggtattcttccttcattctcgaccattgggtggtgggcacctattttgctggtgacactgcgtgccattcagggatttgcagtcggcggcgaatggggaggcgcggcgttgctttccgttgaaagtgcaccgaaaaataaaaaagccttttacagtagcggtgtacaagttggctacggtgtaggtttactgctttcaaccggactggtttcattgatcagtatgatgacgactgacgaacagtttttaagctggggctggcgcattcctttcctgtttagcatcgtactggtactgggagcattgtgggtgcgcaatggcatggaggagtccgcggaatttgaacaacagcaacattatcaagctgccgcgaaaaaacgcatcccggttatcgaagcgctgttacgacatcccggtgctttcctgaagattattgcgctacgactgtgcgaattgctgacgatgtacatcgttactgcctttgcacttaattattcaacccagaatatggggctaccgcgcgaacttttccttaatattggtttgctggtaggtggattaagctgcctgacaattccctgttttgcctggcttgccgatcgttttggtcgccgtagggtttatatcacaggtacgttaatcggaacgttgagcgcatttcctttctttatggcgcttgaagcacaatctattttctggatagttttcttctccataatgctggcaaacattgcgcatgacatggtggtgtgtgtgcaacaaccgatgtttaccgaaatgtttggtgccagttatcgctatagtggcgctggagtcggttatcaggttgccagtgtggttggcggtggatttacaccttttattgccgctgcactcatcacttactttgccgggaactggcatagcgtcgccatttatttgctggctggatgcctgatttccgcaatgaccgctttgttgatgaaagacagtcaacgcgcttgatagcctggcgaagatcatccgatcttcgccttacacttttgtttcacatttctgtgacatactatcggatgtgcggtaattgtatggaacaggagacacacatgaataataagggctccggtctgaccccagctcaggcactggataaactcgacgcgctgtatgagcaatctgtagtcgcattacgcaacgccattggcaactatattacaagtggcgaattacctgatgaaaacgcccgcaaacaaggtctttttgtctatccatcactgaccgtaacctgggacggtagcacaaccaatccccccaaaacgcgcgcatttggtcgctttacccacgcaggcagctacaccaccacgattactcgccctactctctttcgttcgtatcttaatgaacaacttacgttgctgtatcaggattatggtgcgcatatctcagtgcaaccctcgcagcatgaaatcccttatccttatgtcatcgatggctctgaattgacacttgatcgctcaatgagcgctgggttaactcgctacttcccgacaacagaactggcgcaaattggcgatgaaactgcagacggcatttatcatccaactgaattctccccgctatcgcattttgatgcgcgccgcgtcgatttttccctcgcacggttgcgccattataccggtacgccagttgaacattttcagccgttcgtcttgtttaccaactacacacgttatgtggatgaattcgttcgttggggatgcagccagatcctcgatcctgatagtccctacattgccctttcttgtgctggcgggaactggatcaccgccgaaaccgaagcgccagaagaagccatttccgaccttgcatggaaaaaacatcagatgccagcatggcatttaattaccgccgatggtcagggtattactctggtgaatattggcgtgggaccgtcaaatgctaaaaccatctgcgatcatctggcagtgctacgcccggatgtctggttgatgattggtcactgtggcggattacgtgaaagtcaggccattggcgattatgtacttgcacacgcttatttacgcgatgaccacgttcttgatgcggttctgccgcccgatattcctattccgagcattgctgaagtgcaacgtgcgctttatgacgccaccaagctggtgagcggcaggcccggtgaggaagtcaaacagcggctacgtactggtactgtggtaaccacagatgacaggaactgggaattacgttactcagcttctgcacttcgttttaacttaagccgggccgtagcaattgatatggaaagtgcaaccattgccgcgcaaggatatcgtttccgcgtgccatacgggacactactgtgtgtttcagataaaccgttgcatggcgagattaaacttcccggccaggctaaccgtttttatgaaggcgctatttccgaacatctgcaaattggcattcgggcgatcgatttgctgcgcgcagaaggcgaccgactgcattcgcgtaaattacgaacctttaatgagccgccgttccgataataagttctgaaccttcttatcagaaatagatgtgaaggagtaagtaagacacctggcaaatagcctgcaataatcgtgggctgtttgcttccttgggcggatacgagttttattatcgtcttaatgatttccacatattaaaagcaagtatgctttcaaaacacaattataaaaaatcccgccaacaatataagtttttataaaattaaatataagattatggctttagaatatttttatttctaatagacgagatttttcctgttatgatataatatgctgaattaacacatgttaacgatttaccagtaatgtaaataaattttcgaggagatcattccagtgggacgtaaatgggccaatattgttgctaaaaaaacggctaaagacggtgcaacgtctaaaatttatgcaaaattcggtgtagaaatctatgctgctgctaaacaaggtgaacccgatccagaattaaacacatctttaaaattcgttattgaacgtgcaaagcaggcacaagttccaaagcacgttattgataaagcaattgataaagccaaaggcggcggagatgaaacgttcgtgcagggacgttatgaaggctttggtcctaatggctcaatgattatcgccgagacattgacttcaaatgttaaccgtacgattgctaacgttcgcacaattttcaataaaaaaggcggcaatatcggagcggcaggttctgtcagctatatgtttgacaatacgggtgtgattgtatttaaagggacagaccctgaccatatttttgaaattttacttgaagctgaagttgatgttcgtgatgtgactgaagaagaaggtaacattgttatttatactgaacctactgaccttcataaaggaatcgcggctctaaaagcagctggaatcactgagttctcaacaacagaattagaaatgattgctcaatctgaagttgagctttccccagaagatttagaaatctttgaagggcttgttgatgcccttgaagatgacgacgatgtacaaaaagtttatcataacgtcgcaaatctctaattatcttttaaagaaatctgtctttacggcagatttctttaatctcatataattcttataaaaaatataatattcaactcgtcatattgattatacccccccgttcccagagaaataatatttattaaaattccagttcttctttttctgattacagaaggcaaagtggcaattacgcatagtttcccgataaagacgcgatagcgacatcccgcataaggcatttttctctttatctttgtacggtacttcatggaacagagtttttgaccttgcgaatcgtgatgtctgttggggagggacaatttgctcactgaagcgtgagactcgattaagcgcacgaaacacagaaatcaaaaaacccggtcacttttttacaaggtaaccgggtaaaaataatttttattttttaactgttttgagactcatagagatgtctcaaaactaaaatttggctcctctgactggactcgaaccagtgacatacggattaacagtccgccgttctaccgactgaactacagaggaatcgtgagaacgaggcgaatattagcgatgcccacccacaatgtcaaagcctgttttttaaatttgaaatcgtttgctgaaataatctgcattttgtcgtttattccgacacaactggctttttttcacacttttgcggctcgggtcgagggtatttccatagccaacgtccagtaaccattcgccagtaaaacagcacggcccgcacagcccagtcggcaaacattcccatccagacaccaaccacaccccagccaagcatgattcccagcacataaccgatacaacccgacaaccccacatgctcaacatcgaaacccacatggcgtaacgggcatcacgagcacctttaaatccagcgggtagcacccatgaggcggaccaaataggcataaataaagcatttagccaaatcagaatcacaacgacatgtttaacctgtggatcctgggtgtaaaacgatgccataaccccggcaaagggagccgttagccaggcgatggccgttaatccaagagtggaaagccagaacacatgccgcaactgaatctctgcttgcgctatctgccctacccccaaccttcggcctgtaatgatcgtagaagcagagccgagcgcacttccgggtaagttgataagagccgcaattgaaaacgcgataaaatttccggcaataacactggtccccatcccggcaacgaacatttgggttaataaccgaccactggtaaataacactgattcgacactcgcgggaataccaatccccatgacttcccagataatgctaaaattcagcggtttaaaatagctctttaacgaaatccttagcgcaggattaaaaccaatcgccagcacccacaaaattgcaactgcgccaatataacgagaaatggttaaacccagccctgccccgacaaatcccagtcccggccaggagaaaaggccgtaaatcaatatgccgctaataataatattaagaatattcaggctaccgttaatcaatagcggtattttcgtattccctgcaccacgaagtgccccgctaccaataagagtgatggcagctgctggataactgagtaccgtcagctccagataagtcaacgccagtgctttaacttctgtcgtggcatcacccgcgacgaaatcaataatttgttcgccaaaatgatgaataagcgttgccaacagtacggcaaacaacgtcatgatcaccaatgactgccgcgtcgccaccctcgctcgtcgtcgatcccgcttaccgagactaaatgccacaacgacagtagtaccaagatcgatagcagcaaaaaaagccataatgaccatattgaagctgtccgccaatcccacgccggccatcgcatcttttcccagccagctgaccagaaaagtgctcagaacccccatcaacaggacacaggcattctccatgaagataggaacagcaagcggggttatctcgcgccagaacaacactttgtagctcttgcgtttagcgtgccagcgagtgccgtgaacaacctggcgtaaagcagaggagatattcaaagccgaccttaattgcagaaagtgaaaccacatttcaaataatgagggagaatcagcaaagctgcaaagattttcgccaacaaattgtctgcaaatgcaacaaactgttgatagaaacggcaaacagttggggaatttaaaaatcgggtttgacaaaagatttttcgccgttaagatgtgcctcaacaacgattcctctgtagttcagtcggtagaacggcggactgttaatccgtatgtcactggttcgagtccagtcagaggagccaaattcctgaaaagcccgcttttatagcgggatttttgctatatctgataatcaatttcctcttcactgctttccatcacctgccgcttgatatcctcaactgacagtcctgcattacaaagttccagaaagcgccagacatagttacgctgaagttgtcctcgcttcagtcccaaccagacagtattagcatcaaaaagatgccgcgtatccaggcggattaaattctcttcctcttgttcgccactggattgctcggcaactaatccgatcccaagcccaagagcaacataggttttaatgacatcagaatcctgcgcacttaatacaatatctgccagcaaacctttgcgggcaaatgcgtcatcaatacgtgagcgccccgtaatcccctgtcggtaagtgattaacggccacttcgctattgattccagcgtcaatggtgaaatttgcgtcaagggatgatcgtgtggaacaagcaaactatggtgccaacgaaaccacgggaaggcgacgagctgcgggtcattactcaaacgctcgctggcgataccaatatcagcttcgccattttgcaacaatgtcgcaatttcctgtggcgtcccctggattagctcgagccgaacctccgggaaaagttcgcgaaaagctttaatgacctctggcaagctataacgtgcctgagtatgcgtcgttgcaatagtgagaacgccagacgtatcgttggtaaacaggtctgcaagccgacgaacattactggcttcattcagaatacgttctgcaatgaccagtaatgctttgcccggttcagtcatgcccagcagtcgcttacctcgtcgaacaaatatttcgatgccaagttcatcctccagttcccgaatatgacggctgacgcctgactgtgaggtaaaaagcatattcgcaacctctgtcaggttgtaatcctgacgtgcagcctcgcggattatctttagttgttggaaattcacggtaaactccgggcagttcagatttcccgttattgttaaagtctaatgcccggcataacaaataataaaaacccgcatcttattccatcccgatataacacttagctcaccaattgccactgccttttttccatcactggagaactaatcactgacattaacaactctttcactgcctgtgcctgtggcgataagttcgctctggcgggtaaatttaatgacaaagagagactcatggaaggagtggtaatgcgtgacatccacccatttactgcgccacataacgaacgcgcggccgattcgggtaatactgcaacgcccatgccgctggcaatcgctgcggtaagcgtggcaatagactcaatttcaccaataacttttgccgtgagtcgccgtagggaaaaagcctcatcaacacgaagtctaatagcactgtaatcactggggagaaagaggttcatttgcgcaatagcattcacatcaacgctttgccccgggcaatcttgagttcctaccagaaaaagatcttctttcagcaaagcctgactggatacaccagccacaggggaatgctcataaatcaccgccatatcgagttggtgatttatcaatttttcgttaagcactgcaccactattttcatgaagatagataacgatctccggaaattcagcgcgaaccgcctgtaataagggcatggtgatggatgacgcagcggttcctggtgcaaagccaatcgagacttgccccgataatgcctgaccaacgttatgcaccgccagttgggcctgttcacactgacgtaaaatggcccgcgcatgggtatagagaatttttccggcgtctgttggtgtaacgccccgctttgtacggatcaaaagttgttgatttaactcaccttccagtgtggcaacctgctggctgagcgctggttgtgcgatatgcaatacttcagcagcctgggtcaggctaccaatatctacaatttttacgaagtatttcaggcgtctgaagttcatgttgcctccggtttttaagaatcggcccaagtgccgccattacttacaaccagattgcaagatgcttgccagttttattttggtgttgatgtacaagctaaccaactgtcaaataagagattatgatagattcgtcatttgctcctttaatcagctgtcgcgttcccctgccctataaaaggagggtatgcaccacgatggttcattacccaataagattgaaagctcaccactttgttgaaattgacagcaaacaaacaaaaaaatgcatttcaccctttgacatcaccatgcactgccattaatatgcgccccgttcacacgattcctctgtagttcagtcggtagaacggcggactgttaatccgtatgtcactggttcgagtccagtcagaggagccaaattcaaaaaagcctgctttctagcaggctttttgctttctaattaccaacgctcttaaaacatctgtcttgaaccagaactaatttgcacaggcattcccgatcgacgttgcaacgcagcatttgcgcgatttacatcaacttcttgcccgttgataaacgcccgcaaagatggggttaccggcaatggcacttttcggtcagactcatattctgcacgattgcgcgacaatggctcatgaacttccagccagttcgagccatctggttcagtggtgtattttactggctggtcgataatttgcacacgcgtcccaacaggaacattatcaaacagatatttgatatcgtcattgcgcagacgaatacagccctgacttacccggagcccaataccaaaattggcattggtaccatggatggcatacaacctgccaatataaatcgcgtacagccccatgggattatcggggcccgcaggaacaaatgcgggcaaactctcccctcgtttcgcatattcgcgccgagtgttcggcgttggcgtccaggttggagcttcttgtttacgttcaacggtagtcacccagttacgcggggtttctcgcccagcctggccgataccaataggaaagacttccacagtattactgtctggtgggtagtaataaagacgcatctcagcgacgttaacaacaatccctttacgaacagtgtcgggcaaaatcagttgctgcggaatggtgagttgcgagccagacttcggcaaaaaaacatcagcgcccgggttcgcttccagcatgttacttaacccttgcccgtattgtgcggcaaaagtctccagcggctgggtattgtgatcaggaacagttacagtaaacgactgccccactaaacggctaccctctggaggtaatggataagttaccgccaggctagtatggctggcaaaaagcagagcaaatgagcaaagaatatttacacgacgcatcatgtccctttcctatgtcgcgaaagctatccgttaagtatagcttttatcagacttttcgtttttaactgttcaaatcagaagtcgtattccccggtagaacaatattactggcagcaagttcgcccatgttgttgtatatcgcacaggcagcttcgatgatgggcatcgccagagctgcgccactcccctcacctaaacgcatctccatattgagataaggctccagccccaaatgcgagagcgctatacgcgcgcctttttctgccgacaggtgagaaggaatgagatacggtttgatcgcaggagacatctggcaggctgcgagcgcagcagcataagaaagaaatccatccagcaacacgggtaaaccgcaggaagcagcacctaacatcactccagctattccgaccaaatcaaatccacccacttttgccaggacatcaacaccatcctgaggatttggttgattcaacgtaatcgcccgacgcacaacatcaattttattagccagtttatctgtcggcaggtttgcgccaatcccaaccacttcttcaggatcccggccagtgattgtgctgactattgctgctgccggtgtcgtgtttgccatccccagttcacctacaccaaacagcgtgacaccgttttttgccagctcctgcgtataacatatgacgtccaaaagcaacttttcagcctgacggcgactcattgccggagctgaagcaatattgccgctacctcgtgcgacacgcatgttgataagcccggggataggctcagcagtatcaataccaacatcaattacgtggacgttagcgcccgcttgttctgccagcacacacacgccggttgttccacgggtcatattttcagcctgtatggctgtcacttcttttggagaaatagcgaccccttcctcccagacgccgtgatcggcacacataaccagtaccgcttttttgcccacatgcggtatgccattcaaccccggcattcctgccagttgtatggcaagcacctccagctttcccaggctaccaacaggtttgagtaacccgtcaatatgccgttgtgcacgcgacatagcggtagaatcgatggctgggatcgtattcagtaaatcggcaagtatttgcatctcacgtctctttatagcagtgccagcaggaagaccagttcaccaagctctatggctgctcccagcgtatcgcccgtttgcccgcccagcgtacgtttgagaagctgaccgaggatgaaaatcgccaccatcgtcaccaccatagcagccacaccatgcatacccggcaataatacggcagcaaaaatagcggctaagccgagtgtgacgcaggtttgtcgcccatcaattttgccaatgaacacattgccaagcccttcttcccgcgcataacgatgacgatacatcaataatgcggcagtcccgcggctgaccgcacatgctgccgccagcgatgcaaggatcgattcgccacgcagagccaactcgcttaacaccagaatctttgccagtaccacaaaaatcaatgccagaccgccgtgggtgcctaaacggctatcacgcatgatttccaacatgcgatcgcggctacgtgcagaaaatacgccatcacaggtatcagcgaggccgtccagatggaatcccccggtcatcagcaccagcacaagtacgctaaacagtgccgccagtggtgcgccacaccatgcctgcagcaccatgaagaccagcccgctaatcgcgccaagcaataatccaatcaaaggaaaagtaataataccgcgagaataatgctcgaaatccagtccctgggaccagcgacgcggtacaggcagacgcgtaataaatgagagcatcgcccaaaataatttactcatttgatttttactccaatacccgaaaccaccagccatacttcatttgccgcagcggccaactgctgatttacccgcccggcaatatcacgaaaatgtcgtgccagacgactctccggcacaatccccattcccacttcgttagtcactaatacaacctttgcggggcaacgttggcaggcagcaatcaacgactgaatctcagcattaatcgcctgttccatcgcctgataatcccattcatcagggtctttatcgccgccataatcaaacaacagattagtcaccattgtggtaacgcattcaagcaacacaacctcattcgggttaatgtctgcatgaattaattcatcaagatgttgccagcgctccactgtgcgccagtgctccgggcggccttgccgatgatgttctatccgtgcagccatctcatcatcaaggatttgcgaggtagcgatatacagaacctgtgaagagtccccaataagcgcctctgcgtggcgactcttcccgctccgtgcgccccccgtcaccaaaatcatcataccgactcctgattcaaatgtatgatggtattcattgaacagaacaatggatcccccaccgttgctgaccgcaaaacatttacgcgattaatactgcgcgtaatataattaaaaatccagcattctcaatccattacgaaataagatggcattacggaatagccagactttctcgtgttaacgtccgacaaaatgcgtcattgacagcggtttctgtggattgacacatttcattcagataatgaattaatgctactgccggaacaaccagcaaacgggcattgtgttctgaaatccaggctattgattcaacgtcagcgacagatctgcgctgtaaaagaacttgtaaaacaacgtaatagaattatccggaatggtggcgactatgcactagggaaggtgcgaataagtggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccttggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgactaggctgtgggtcaggccgctcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttccatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccctagaacaccacaatttcgctctctcggtaaggcactgtcacagcattcaacagaatgtgacttgccagatttattagcgccaccagatgtttaaccgggtaaccacgacccagtcggggatatattccatcttctcgctgacatcatcaagaataaaaaggtttatcacactcagagcaacgttcttcagcaggcgggataattcttcaacatttagaagatgtgttattaaaggcatacaaactggacgtattgtattttcttttggtggttgacctaaggtagcagtttatcctgatgcgctgagatttctgtaatatctacgtcaacattctcctcgaatagaaaatgcagccccggcaagtgattcacattttttaacaaaacgttgttagcgtgccattttcagaagctctccaagaaagcgaattcttttctcaaattctgcattctcagacacagctttctactccatggtaatggcccaaatacgaagttgctcaggatcattagtggtgctgagaagttaaataaccatgcggagtaccactcgtcatcacgtatttatatatcatgaagctattgttgtgttttgtacatcagtagatatattctgatatactccttttgctagacataacctttcacctgcttgcaaagcttctgtgttctgacattgccaaattgttgcaattctgtatccagccttctttcagtcatagcttcgggccgcgataagactcactgatctgaccctgattcctcttgcagactttatagaccaattaaaatgcagtttctgcaggtcaacgtctgaccatcattgtcatcactctggccattagagtaaccttctgcattcatccttttgtaaaaagtttatattagtatcagcaattaaccggacctgatactgatatgagtcttaccgcatatacggtcaatttcagcaattaattacattatccacgccaaagtatttgtcatcacaatgatggtaccttctttcagacaccattttttcaactccgttttccacggaccgcactcttatgtcaagagtgcggtccgtggatacaaccagagaccgactgacacgagtcagaggaaacgacggatatgttcagtcgtaaaatatctatcaaaaaacatgattaaggtcaaaaatgtttgatatttacaatttatgaagatgacaataattatagatatatgagaacataaatgaaaataattatcattacagtaatcatttgtactttgtattaatgagggatgaaatgttatataatataccttgtcgaatttatatcctttccactctgtcattatgcatttctgggatagtttctactgcaaccgcaacttcttcagaaacaaaaatcagcaacgaagagacgctcgtcgtgaccacgaatcgttcggcaagcaacctttgggaaagcccggcgactatacaggttattgaccaacaaacattgcagaactccaccaatgcctccatagccgataatttgcaggacatccccggagtagagataacagacaactccttggcaggccgtaaacaaatccgcattcgtggctggatttgcccctatatttccagacatctgttatcacttaacccattacaagcccgctgccgcagatattcccgtggcgagcgataacccagcgcactatgcggatgccattcgttataatgctcgaacgcctctgcaaggttctttgctgccgttaacccgtctggtttgggcatgatactgatgtagtcacgctttatcgttttcacgaagctctctgctattccgttactctccggactccgcaccgccgtgttcttcggttcaagtcccaacatccgggcgaactggcgtgtttcattagcccggtagcatgaaccattatccgtcagccactccactggagacgacggaagatcgttgccgaagcggcgttccaccgctcccagcatgacgtcctgtactgtttcactgttgaagccgccggtagtgaccgcccagtgcagtgcctcacgatcacagcagtccagcgcgaacgtgacacgcagtctctctccgttatcacagcagaactcgaacccgtcagagcaccatcgctgattgctttctttcacggccactctgcctgtatgtgcccgtttcgatggcggtacagcaggttttcgctcaagcaacagcgcattctggcgcatgatccggtaaacacgtttggcattgatcgcaggcataccatcaagttctgcctgtctgcgaagcagcgcccatacccgacgataaccatacgttggcagctctccgataacatggtgtatacggagaagcacatccgtatcatcagtgtgacgactgcggcggccatccatccagtcatcggttcgtctgagaatgacgtgcaactgcgcacgcgacacccggagacaacggctgactaagcttactccccatccccgggcaataagggcgcgtgcgctatccacttttttgcccgtccatattcaacggcttctttgaggagttcattttccatcgttttcttgccgagcaggcgctggagttctttaatctgcttcatggcggcagcaagttcagaggcaggaacaacctgttctccggcggcgacagcagtaagacttccttcctggtattgcttacgccagagaaataactggctggctgctacaccatgttgccgggcaacgaaggagaccgtcatccccggttcaaagctctgctgaacaattgcgatcttttcctgtgtggtacgccgtctgcgtttctccggccctaagacatcaatcatctgttctccaatgactagtctaaaaactagtattaagactatcacttatttaagtgatattggttgtctggagattcagggggccagtctagtggcgaagcatcctcccgtgttttaattctcattgatggtcaggaggtaacttatcagcgcgccggagataattatggtgtgggactgttgatagatgagtctgcgctggagcgtgttgaggtagtgaaaggtccatattccgtactgtacggttcacaggcaattggcggtattgttaacttcatcaccaaaaagggtgaatctccggactccctatatcacttaaattgatacaactttttagagtagtcattagtgaacagataattgataactcagaaccagtaaaatgcaaaagacgcaccacgctgggaaaatcgctgctattcagcagagttttgtatcgagaatggtggccagccacttattgctctcgcgtaagcgggtaccgtgacattctgcctgaacttgacctggtactgtggctgattaaagccgatgaccgtgccctgtctgtggatgagtatttctggcgacacatcctgcagtgcggacatcagcaggtgctgtttgtggtgacgcaggccgacaaaacggagccctgccatgaatgggatatggccggtattcagccttctcctgcacaggcacagaatattcgcgaaaaaacggaggcggtattccgtctgttccggcccgtacatccggttgtggccgtatcggcccgcaccggctgggaactggatacgctggtcagtgcgctcatgacagcgcttcccgaccatgccgccagtcccctgatgacccgactgcaggacgagctgcgcacggaatctgtccggtctcaggcccgtgaacagtttaccggtgcggtggaccggatatttgacacggcggagagcgtctgtattgcctctgttgcacgcacggttctgcgtgccgtccgtgacacggtggtctctgttgcccgtgcggtatggaactggattttcttctgaacctgtcgtgactgatgccctccctgactctgagtctgctcacaaaagcactgttttcgttactgtctctcttgtccgtgcaatagctcaataatagaataaaacgatcaatatctattttatcgatcgtttatatcgatcgataagctaataataacctttgtcagtaacatgcacagatacgtacagaaagacattcagggaacaacagaaccacaattcagaaactcccacagccggacctccggcactgtaaccctttacctgccggtatccacgtttgtgggtaccggcttttttattcaccctcaatctaaggaaaagctgatgaaacgacatctgaatacctgctacaggctggtatggaatcacatgacgggcgctttcgtggttgcctccgaactggcccgcgcacggggtaaacgtggcggtgtggcggttgcactgtctcttgccgcagtcacgtcactcccggtgctggctgctgacatcgttgtgcacccgggagaaaccgtgaacggcggaacactggcaaatcatgacaaccagattgtcttcggtacgaccaacggaatgaccatcagtaccgggctggagtatgggccggataacgaggccaataccggcgggcaatgggtacaggatggcggaacagccaacaaaacgactgtcaccagtggtggtcttcagagagtgaaccccggtggaagtgtctcagacacggttatcagtgccggaggcggacagagccttcagggacgggctgtgaacaccacgctgaatggtggcgaacagtggatgcatgagggggcgatagccacaggaaccgtcattaatgataagggctggcaggtcgtcaagcccggtacagtggcaacggataccgttgttaataccggggcggaagggggaccggatgcagaaaacggtgataccgggcagtttgttcgcggggatgccgtacgcacaaccatcaataaaaacggtcgccagattgtgagagctgaaggaacggcaaataccactgtggtttatgccggcggcgaccagactgtacatggtcacgcactggataccacgctgaatgggggataccagtatgtgcacaacggcggtacagcgtctgacactgttgtgaacagtgacggctggcagattgtcaaaaacgggggtgtggccgggaataccaccgttaatcagaagggcagactgcaggtggacgccggtggtacagccacgaatgtcaccctgaagcagggcggcgcactggttaccagtacggctgcaaccgttaccggcataaaccgcctgggagcattctctgttgtggagggtaaagctgataatgtcgtactggaaaatggcggacgcctggatgtgctgaccggacacacagccactaatacccgcgtggatgatggcggaacgctggatgtccgcaacggtggcaccgccaccaccgtatccatgggaaatggcggtgtactgctggccgattccggtgccgctgtcagtggtacccggagcgacggaaaggcattcagtatcggaggcggtcaggcggatgccctgatgctggaaaaaggcagttcattcacgctgaacgccggtgatacggccacggataccacggtaaatggcggactgttcaccgccaggggcggcacactggcgggcaccaccacgctgaataacggcgccatacttaccctttccgggaagacggtgaacaacgataccctgaccatccgtgaaggcgatgcactcctgcagggaggctctctcaccggtaacggcagcgtggaaaaatcaggaagtggcacactcactgtcagcaacaccacactcacccagaaagccgtcaacctgaatgaaggcacgctgacgctgaacgacagtaccgtcaccacggatgtcattgctcagcgcggtacagccctgaagctgaccggcagcactgtgctgaacggtgccattgaccccacgaatgtcactctcgcctccggtgccacctggaatatccccgataacgccacggtgcagtcggtggtggatgacctcagccatgccggacagattcatttcacctccacccgcacagggaagttcgtaccggcaaccctgaaagtgaaaaacctgaacggacagaatggcaccatcagcctgcgtgtacgcccggatatggcacagaacaatgctgacagactggtcattgacggcggcagggcaaccggaaaaaccatcctgaacctggtgaacgccggcaacagtgcgtcggggctggcgaccagcggtaagggtattcaggtggtggaagccattaacggtgccaccacggaggaaggggcctttgtccaggggaacaggctgcaggccggtgcctttaactactccctcaaccgggacagtgatgagagctggtatctgcgcagtgaaaatgcttatcgtgcagaagtccccctgtatgcctccatgctgacacaggcaatggactatgaccggattgtggcaggctcccgcagccatcagaccggtgtaaatggtgaaaacaacagcgtccgtctcagcattcagggcggtcatctcggtcacgataacaatggcggtattgcccgtggggccacgccggaaagcagcggcagctatggattcgtccgtctggagggtgacctgatgagaacagaggttgccggtatgtctgtgaccgcgggggtatatggtgctgctggccattcttccgttgatgttaaggatgatgacggctcccgtgccggcacggtccgggatgatgccggctgcctgggcggatacctgaatctggtacacacgtcctccggcctgtgggctgacattgtggcacagggaacccgccacagcatgaaagcgtcatcggacaataacgacttccgcgcccggggctggggctggctgggctcactggaaaccggtctgcccttcagtatcactgacaacctgatgctggagccacaactgcagtatacctggcagggactttccctggatgacggtaaggacaacgccggttatgtgaagttcgggcatggcagtgcacaacatgtgcgtgccggtttccgtctgggcagccacaacgatatgacctttggcgaaggcacctcatcccgtgcccccctgcgtgacagtgcaaaacacagtgtgagtgaattaccggtgaactggtgggtacagccttctgttatccgcaccttcagctcccggggagatatgcgtgtggggacttccactgcaggcagcgggatgacgttctctccctcacagaatggcacatcactggacctgcaggccggactggaagcccgtgtccgggaaaatatcaccctgggcgttcaggccggttatgcccacagcgtcagcggcagcagcgctgaagggtataacggtcaggccacactgaatgtgaccttctgacagaaccatcgcctctctgtggtcccggtcatcatgaccgggacccggaccggcgcaacggatcttcaacgccacattcgctggcattaacaataacatgatattcatcacggagtgactatgttacagatagtcggcgcgctgatcctgctgatcgcaggatttgccattcttcgccttttgttcagagcattaatcagcacggcttctgcgctggcagggctcatattgctgtgtctgttcggcccggccttactggctggctatatcaccgaacgcataacccggttgttccatattcgctggctggcaggcgtatttctgacgattgccggaatgatcatcagcttcatgtggggacttgatggtaaacatatcgcgctggaggctcacacctttgactctgtgaaatttattctgaccaccgctctcgccggtggtctgctggctgttcccctgcagatcaaaaacattcagcagaacgggatcacaccagaagatatcagcaaggaaattaacgggtattactgctgtttttatactgcctttttccttatggcgtgttctgcatgcgcaccattgatcgcgttacagtacgatatttcaccgtcactgatgtggtggggcgggttgttgtactggctggctgcattagtgacgctgctatgggcggccagccagatccaggcgctgaaaaaactgacctgtgccatcagccagacactggaagaacaaccggtgctcaacagtaaatcgtggctgaccagtttgcaaaacgattacagccttcctgactcactgacggagcgcatctggctgacgctcatttctcaacggatttcccggggagagctgagggaatttgaactggcagacggaaactggttactgaacaatgcctggtatgaaagaaacatggcagggtttaacgaacagttgaaagagaacctgtcattcacacctgatgaactgaaaacgctcttccggaaccgcctgaatttatcaccggaagcgaatgacgattttctcgatcgttgcctggacggcggtgactggtatcccttttcagaaggtcgccgttttgtatcattccatcacgtggatgagcttcgtatctgtgcctcctgcgggctgacagaagtacatcatgccccggaaaatcataagccggatccggaatggtactgctcctctctttgtcgcgaaacagaaacactgtgtcaggaaatttatgaacgcccttacaacagctttatttccgatgcaacggcgaatggtctgattctcatgaaactgccggaaacctggagtacaaatgagaaaatgtttgcttccggagggcagggacatgggtttgccgctgaacggggaaaccatattgtcgacagagtccgtctgaaaaacgcacggatcctcggtgataataatgccagaaatggagcagacagactggtcagcggaacagaaatccagacgaaatattgttcaactgcagcccgtagcgtcggtgcggcattcgacggacaaaacggacagtatcgttacatgggaaataatggccccatgcaactggaagtcccccgtgatcagtatgccggcgctgttgaaaccatgaggaataagatccgcgaaggtaaagtagaggagagatgacgcccggcgagcgcagcctcattcaacgggccctgaaaaccctggaccgccatcttcatgaacccggcgtggccttcacctccacccgtgcagcacgggaatggctgattctgaacatggcgggactggagcgtgaagaattccgggtgctgtatctgaacaaccagaatcagctgattgccggtgaaaccctcttcaccggcaccatcaaccgcacggaagtccatccccgggaagtgattaaacgcgccctgtaccacaatgccgctgccgtggtactggcacacaatcacccgtccggtgaagtcacacccagtaaggcagaccggcttatcaccgaacgtctggtacaggcactgggcctggtggatatccgggtgccggaccatctgatagtcggtggcaaccaggttttctcctttgccgaacatggtctgctttaacccttcacaaccacatcacacctgttttcacttttatcttctgtcttcagaggtatcccattatgaaaattatcacccgtggtgaagccatgcgtattcaccaacaacatccgacatcccgtctttttccgttctgtaccggtaaataccgctggcacggcagtgctgaagcgtataccggtcgtgaagtgcaggatattcccggtgtgctggccgtgtttgctgaacgccgtaaggacagttttggtccgtatgtccggctgatgagcgtcaccctgaactgagtgggaattctgatgagcagaattatcgccactaccggaccattcttagccgattttctgtaaggattttatcgtgtcagacacactccccgggacaacacttcccgacgacaatcacgaccgcccctggtgggggctgccctgcaccgtgacgccctgtttcggggcacgtctggtgcaggagggtaaccggttgcattaccttgccgaccgcgccggtatcagaggcctgttcagcgatgcagatgcgtaccacctggaccaggcctttccgctgctgatgaaacaactggaactcatgctcaccagcggtgaactgaatccccgccatcagcataccgtcacgctgtatgcaaaagggctgacctgcaaagccgataccctcagcagttgtgattacgtttatctggctgtttatccgacgcccgaaatgaaaaattaactctccagaatagccttctgctacggcctggtgttttcaccacgccacttttccatttttatatctgcatatcaggaaaatcttcagtatgaaaacattacctgtattacccgggcaggcggccagttctcgcccgtctcctgttgaaatctggcagatactgctgtcccgactgctggaccagcactatggcctcacactgaatgacacaccttttgccgatgaacgtgtgattgagcagcatattgaggcaggcatttcactgtgtgatgcggtgaactttctcgtggaaaaatacgcgctggtgcgtaccgaccagccgggattcagcgcctgtacccgctctcagttaataaacagcatcgatatcctccgggctcgcagggcgaccggcctgatgacccgcgacaattacagaacggtaaataacattaccctgggtaagtatccggaggcgaaatgatgacactggaagccgacagcgttaacgtacaggcgctggatatggggcacattgtcgttgacattgatggtgttaatatcactgaactgattaataaggccgctgaaaacggttattcactccgcgtggtggatgaccgtgactctaccgaaacaccggcaacttatgccagccctcaccagttgctgtaagacaatgcagtgatacagggtatagtgccattaaccacagaaacagcactgttgtcctgtattaagcaggcaagagaagatgtccttaccctgcgccatctgcagcttctgcaccagaaccggtgaatctcactcaacaggcttcatttctcctgacgccagcctgaatacagctggcgttttcatttataaacagaaaggaaaaccgataataatggaatggacgccccgaccatgaagcaacggtaggatattactgataaaccttccagtggaggtgcgttatggccgttttaacgattagcattgacctgacaaaaaatgaattccaaatccacggtctgggtaggaacagaaaaatctaagctcagaaaacggattaaagtaagcgtcaacggagcaccgtattgacgcttatttattggtgagaactacgttccatggcaggagttcgtcaacacggttggagggccattccggcagtatgctcagaatatggcgcagatacgcttccggatcgataccgttcagacggcaggtgcctgcttttctggcaacaagcaggaatctcagcgctgaagcaggaattagaggtaaaaacgccctaccgggccatgaatcacccggtcattggagtagtaaccaaagcagatttagccagcatggaacaaatatctttggtgaaaagttggttacgggaagctggagcgcacaacgtgttagtaaccagtgcagttaataacaatggagttacagaactttttgccttgctgcatacagaagaaggctgttgttaatttcgattggttctcggatgagaatgatgacggtgatacacagataagaatcaatgagcaatgagggttgccgggcaaccctcattgaataaaacgggaattacttcgcttcgccgtttttcatttcgcccatagctttcagctttttggagatatcgcggcgttctttggagagctcggcatttttgatgatgtaatcgtcaacgcgatcttcatagtcacctttcatgctggcgatgatgccctggattgcttcaacgctcatccccggcttgatgtaatcgctcaggttgtccagcagcaggacgcgcttctggttgtcacggatctttttctcaacgtcctgaatttcacgttgcagtttgttcttacgacggaacagacgaacaaattccagtacgtcctggaatgaaggcttggtagtttccatttttatacccctgataatgtgagagtcggattcgtttaagcaaccgctattcgttagggccaacattactcatagctgccgcagatgacaatgcttttatcccttttcactatcataccctttatccttgctgaatcgaagcagcagcaagatgattctgaagttcaggaattatttgcgcaaggcccggcaaatcagattcgatagcaactcaagctgatgcgccgtttccatgttcagccacacataaccatagattggtgtttccacaaccttcaggtcatggtggttattgagcaactgacgcagctcttccacagcatcgttcaatttttccgtattggcaaaaaccggctgcggattaccttcgtacagcgcatgaacaaggctcagcagtatttgctgcatcatgtgctgggtatcacgaagtttttgcgcgttcaataacacgaaatggctggggcgcgtggcccagtatgcattgatttgcaactccagcatacaaaccagattgcggttaatggtctggataccttcatatatcgattttggaatacgggtttctttgctggcgggcgcaatcagtccacgcattttcacggcatcggtcaggagtttttgtagatggctttccagacgtgggcgttcgagtaagttcggtgagaatgcagattgatagacccgattatactcggtcagacttttcgccagttgaatgcgccagtggatgaacgcccgttgtggccagataccggtaaacaacattgccagtaaagagccgaggatcacatcgccgcttcgccataacgccgtatcaatttcacctgtcggggaacccacaacaattgccagcgtcaccccaatcaataaaccttgatacggtttcttgcccagcgccagccaaccgcaaaggaacatggccgccgcgcaccagactaacatcagcggtaacgagattaactccagttgcagagcgataagacctaaaatcgaacccaacaccgtaccgccaatacgctcaaaggcgcgagggacaacgttaccccagaacgagattggccccataatcaccaccatggtgaccagcggccaggtgctttccgggatagtaaacaggcggataatgagaaaagtgagcaggaatgccagcgcgacccgagtaccatgcacaatgcggtaatggcggtatacccggatttcaaacgggcttaatgacttatcggcacgcacgcagaaactccgtaatgagattaaaagcgctcataactcatctgtcggccagaaggcgcgcctctgaattatccgacggacaaaccgggaacagtgtaatttcccggcaggagcgaaaaaattgaaaggcgcatcttactcttttcgctttcaaaaaaaagagtggtcatcgcgttaacacaccgccctgagatgaattagtgatgttttggctgcaccgcaacatacatttcgatatcccagtacccatcttccgcgccattgttcaaataaacctcgaagcagggctttggtaacatttcataagcactgtcctgcaagagactattaaagaactgataccagggtttagcaaaatcatcaccgactacacgagctaccgccaccgcatactgaccacctgtaatttctgtcagaatgacgccctcactgttttcgggaagcgtaaagtaacccggcaccgtcacgacggtgtcgcagcgtaatttttcggcgggtgtttcatctggattgtcgtaatagacagcaacccactccttcggcacaatatttttgctatctacccacatcatcaactgctcaaagcctttctttaccgtctgttcccacgggccaacgagatggaaacctgcaacggtacgtttctcttcctgcttaatctcgtagttcatgacgcctccattgatactgtttttatatacagtatagttgcaaaattaaaaccacaaggaatgagtgttgattatgcgagcagactcgcactcctgccagtctgctgcaaaagaaaggtcaggccttatggtggaaataatcactcaggcgagaaaacatgctgccttccccgacagattccagggtaaccagcggccagtgcgccacctgtttatcacggtcgtaaagttcaatttcccctacccgctgatgggcgctaattggcgcggtgagttctttaccatcaagggtatatttggctttgatatgtggaatttcggctttcggtagcaccatccagaactcttgttccgttcccaggtcgatattttctttatcgccataccagatgcgttccgttccgacctttttcccacggtgcaaaatttgcaccgtagtaaagttttgttgcccccaacgcagtaattttcttgcctcttcctcacgaccttttgcactgtcagcccccattaccactgcaatgagacgacgctgcccatctacagccgaagcaatgagattaaacccggcaccagaagtatgacccgttttcaggccgtcaacattcatggttttatcccacaacaacccgttacggttttgctgggtgataccgttccaggtgagacttttctcactgtacatatgataaaactcgggctcgccgtggatgatagcacgagaaagcacagctaaatcataagccgagctatgctggccaggtgcatccagaccatgcactgtttcaaaatgcgtatccttgagatgcagcttctcggcatagttgttcatcatttcaacaaactgccgttgcccaccggcaatatagtcagccagagcaacacaagcgtcatttccggaatccacaattaaaccacggcttaaatcacgtaccgatacgcgatcgccctctttcaaaaacatcagtgaagaaccgacaaacaccggattatctttcgcccacgcatcgcgccccacggtgacaatatcgtctggcgtaatgcgatgactatcgatagcgcgatccacgacataacccgtcatcagctttgtcaggctggcgggattgcgctgttgatgctcattacccgcggtgaggatctgaccggtggtgtaatccatcaatacccaggacccggcatgaatctctggaggctgaggtgaaaaaggaatgttttccgccgcaaaaccagacgataagttaaaaacgaacaaagaagcagcaataataagacggcgtttcaacagcaaaccctcaggagtttcaaatagctgttctttttacggaaatacttatgaactggctggaataaagtgcaagaaaatgtgactaccctctcatttttatctgacatgatctgttgccactcgctgccaaattgtggcgctaaagctgattagcacggtgatatttgatactctggcagacagcagaaataacggatttaacctaatgatgaatgacggtaagcaacaatctacctttttgtttcacgattacgaaacctttggcacgcaccccgcgttagatcgccctgcacagttcgcagccattcgcaccgatagcgaattcaatgtcatcggcgaacccgaagtcttttactgcaagcccgctgatgactatttaccccagccaggagccgtattaattaccggtattaccccgcaggaagcacgggcgaaaggagaaaacgaagccgcgtttgccgcccgtattcactcgctttttaccgtaccgaagacctgtattctgggctacaacaatgtgcgtttcgacgacgaagtcacacgcaacattttttatcgtaatttctacgatccttacgcctggagctggcagcatgataactcgcgctgggatttactggatgttatgcgtgcctgttatgccctgcgcccggaaggaataaactggcctgaaaatgatgacggtctaccgagctttcgccttgagcatttaaccaaagcgaatggtattgaacatagcaacgcccacgatgcgatggctgatgtgtacgccactattgcgatggcaaagctggtaaaaacgcgtcagccacgcctgtttgattatctctttacccatcgtaataaacacaaactgatggcgttgattgatgttccgcagatgaaacccctggtgcacgtttccggaatgtttggagcatggcgcggcaataccagctgggtggcaccgctggcgtggcatcctgaaaatcgcaatgccgtaattatggtggatttggcaggagacatttcgccattactggaactggatagcgacacattgcgcgagcgtttatataccgcaaaaaccgatcttggcgataacgccgccgttccggttaagctggtgcatatcaataaatgtccggtgctggcccaggcgaatacgctacgcccggaagatgccgaccgactgggaattaatcgtcagcattgcctcgataacctgaaaattctgcgtgaaaatccgcaagtgcgcgaaaaagtggtggcgatattcgcggaagccgaaccgtttacgccttcagataacgtggatgcacagctttataacggctttttcagtgacgcagatcgtgcagcaatgaaaattgtgctggaaaccgagccgcgtaatttaccggcactggatatcacttttgttgataaacggattgaaaagctgttgttcaattatcgggcacgcaacttcccggggacgctggattatgccgagcagcaacgctggctggagcaccgtcgccaggtcttcacgccagagtttttgcagggttatgctgatgaattgcagatgctggtacaacaatatgccgatgacaaagagaaagtggcgctgttaaaagcactttggcagtacgcggaagagattgtctaatttgaagcctccgccgctggtacggcggaggacaatgttgagtcaggctttttgaacggtgatgctccacgctgcatcgccaatctgctgataatcggtgatggcatgtccttcttctgccgcccactgtgggattgcttcagttgcctgggtgcaatcaaactcaatcactaactcatcgccgctgaccatttctgccagagctgcttttgcttctatgagtggaaacggacagacctgcgtcaccacatccagctttttaatcaccatctttacaccttacttaatttgccgcagcagttgccagtcgcgccttacgctgcggtcgaacatacacaagccaggacgcagtccagactccgagaatcataaatacaaggccaatccagccctgccaggtcatcattgcagtcataaccagtccattaccgatagagcaaccacctgcaatactggcaccgaagcccatcagtacaccacctaacccgctacgtaatgttgtttgtgcatcagctgcgcgaacgcggaactcacggctcgctttggctgcaataaatgaccccacgaagatccctaacaccaggaaaacgccccagttaatgtatttcatgtcacccgcgaccagaaattgcagaatattggccgttggggaagtgattcctaacccaaacatgcgtccggttgcttcactcaggggccaggctaaaagcgcaatcaaaccgatgagtacagctgtgacaaagggatgccagcgtttttcaaacagaatatgagcgatcccggttcggcgcggcggtaaggtcgcgactttgagttttggcttcttcaactctttcatcaccacccagagcgttatcaccagcaaaacggcaaccaacggccacacagacaaattaaaagtctcagcaatagagttatgttcagtactgtagtgctgcaaggtttgatttaaaccactggcatgtggagaacgcatcaccgcactcatcaccatataagtgaaaagcgcgatccaactgccgatcaatccctcacccgcgcgataccaggtcccggtggcacatccacccgccagaacaattcccagcccgaagatatacccacctataacagtaccaagccacgggaacgccccggcttcgtaagtcagtaggcccgcctgaattaacgcaaaaacccccacgctttgtaccgaaattgcaatcagcaaggcgtaaaacatgcgattatttttcacgatatacatatcgcgaaaaccacctgtcaggcaaaaacgcccacgctgcatgacaaatcccagcagagcaccacaaattagcccgcttaatatcattgaaaacataaattaattaaccagatgaatgttaatgaggaaattattcatgactggtggaatgcagaccaataaccaaattctctaaattagaacaaatggttattaatgaggagttcgatacaaaagaataaaaaaaccggagccaaatgttcattcgactccggtttattattagaaaagatgattatgctacgtcttcgtactgcggaaccggattacggaagctcttggtgacgcaagccaggtaaatcagaccgatagcagcccagatcagacccagaaccattgagctttcttccaggttaacccacagcgcaccaacggtcagcgcaccacacatcggcaggaacagatactggaagtgatctttcagcgtcttgttacgcttctcacggatccagaactgcgagatgaccgacaggttaacgaaagtgaacgccaccagcgcaccaaagttaatcagcgccgttgccattaccaggtcgaagttgattgccagcagggcaatcgcgccaaccaggatgatgttcatcgccggagtacgccatttcgggtgtacataaccgaagaagcttttcgggaatacgccgtcacgacccattacgtacatcagacgcgctacgcctgcatgcgccgccataccggacgccagtacggtaatggtggagaagatcagcgcgccaacctggaacgctttacccgcaacgtacagcatgatttcaggctgtgacgcatccggatctttaaagcgagagatatccgggaagtacagctgcaggaagtaagttgcaaagatgaagatcatgccgccgatcagcgcggtcaggaaaatcgcacgcgggatcacgcgctctgcatctttggtttcttccgacaggttgctgatgccgtcaaagccggtaaaggagaagcacaggattgtcgccccggtaatcatcgggataacatgcgcatcgccagaccagaatggacgagtgctcgccagcgtaccagcgccttcaccttcaaatacgccataaacaaccatgcccagaatcaccgcgatcagcactacctgcaacacgacgattacagtgttgaagttcgctacggatttcagactacgcaggttaaaggcggtcataaaggccaccagcgccaccacaaacatccacgatgggatggaaggcaccagagcttcaaaatagattttcgccagtagaatgttgatcatcggcgcgaacagatagtcgagcagagaagaccaacccaccataaagccgacagtcgggctaatggatttctgggcgtaagtgtatgcagagccagcagaaggatagcggcgaaccagcttcccgtagctcagagccgtaaacaggatcgcaatcaatgcgaacgcataggctgtcggcacatgaccatccgtgaggcctgaaacgataccaaaagtatcaaacagcgtcatcggctgcatataggcaagacccatcattacaaccggaactaacgtaagcgttttacgcaattccacgcgagaggtgtttggagtaacgttatgcgacatggtcattctcctttacggtgataaccgtcgcgtaagcaaaaaattgccccatttttttggattcctcagcgacaacaactgtcgatttttagtaaatatctatccggtacgaagcccggcctcttggtatgaatgattggtttgaagcaaaaaataaccgacgctgatgaaacgtcggtttttagtcattttttgacagcggcgcattgtgcctaaatgggggggaaatgacaagagaatgagaggcttgtcagaataatttttctttaaatggctgattttccgtcatcagattttgcataaacaccggcgatcgcactatttgctaaaatttcatcccgccaccagccactggcaagtcctgcggtctgttcgttccagccaatccagacgggttcaaagagagtttgggcgaccactttcttctcgattaacgcgccactatcgagaaaacgttgcgccagataacggggtaaatagccgcagccgaggccgctaatttgcagctccagtttggttttaaaatcgaaaacggtaatggcttcttgttcgtcgagaagttgtgatgccgtagaagcgcctgcctgcgcagtatcccccaccacaatcgcccgatatcgcttaataatacgacgatttaacggctcttcttccagggctaacggatgatgaggcgcgaccgcaaagacttgttccagatcgcccaaccgtgaaaaaccaaactcactggaagatggtggctcatgcatcgcgccaacaataatatccgctcgcccctgagtcagggcatcccatgaaccaccgagtacgccattgataaacttcaggcgcgtcacgctatgatgttgataaaaagcttcaatgagtggcgcaagcagagaaaaaggaaacgtgtcgtccacgccaatcaccagctcgttttcccagccttcatgcagtttgatcgcctgcttttccagttcccgcacggtatgcagaacttcccgccctttctctaataacatttttccggtgcgggtgaatttagcgcggtgtccgctacgatcaagcaattgaatattaaggtcgctttccagcttgtgaacggtgtaactcagagcggacggcgtcttgtagagtttggccgacgccgccgcaaaactgccttctttttctaaggcatcgaggatcatcaacacatccagcagtggtttcatacacgcccccttgcagtgcatgcggcgtcctgctggcgtgatcgtttactccagcggcattaccagcggatcgggatactggtattcaaatcccagttcattacaaatccgactgccatcaataatcttacctttgccgctgtccagactatttctgaactgcggaggttccagccccagtaaacgggccatctgcggatagaaaacattacgcgcagggtgagctggcgcacatatattatagatgtgtccgcctttaggtgcctgtaacaacagagtgatagcgccaataacatcttctaaatggactaaattaacaccatgttcaccatcaggcgcggtttttccggcaaagaagcgtccgggatgacgtcccggtccgaccaggcccgcaagacgcagaatatcgaccgaagtaccgggtaaattgtgcagccagtcttcgagttcttctaatactcgtccactgttggttactggattacgcggggtggtttctttcaccgtgccttgcgcgtcgccatagacagatgttgagctggtaaaaataatgcggggaatacgatgggccagcgcgctatccactaactcttgtaccgcttgtaaatagaactcatcgccggggccgctacgacgtgccggaagcgtaatgaccagcgcatcggcatccatcagggcatccagatcgtcagaatcgcaaactagctcaggctccatgcgaagcagatagctatcaatgccactcattcgggccgcttcgacaccatcttgtgtggttttactcccggtgacttgccagcctcgcgctgaaagtgacatcgccagcggcatgcctaaccaccctaacccgacaattgcgacctttttcatccgttatctcctgatacaccttagatctataaggctacgctagcgtatcaaaactgacaattcattctatgaatgaatctgttcaataatgataacgacatgctgcaatgagcagtgaatcgtcggtaaccgcgtataccagacggtgctcctctgtaatgcgtcgggaccagaaacctgacaaattatgtttcaggggttctggcttccccttaccttcaaatggcgttctgcgggtatctttgataagttcattgatctttttaacaattcgcttatctgtttcctgccagtacagataatcgtcccatgattcctcagaccagattagtttcactcaatgatgtccttttccgttcctttgcctgatttcaggctatcgattgagtccatcaatctccgggcgttagcgggggagcgcagtagataagccgtctcttccagcgagttgtattcttcgagtgacatcagaacacaagcctctccattctgacgagtaataaggatcggggcatgatcttcaacggctttcatcattgttgccgacaaattctgacgcgcttcgctgtagctaattgtacgcatgtcaatctcctcttttgtacagttcattgtacaatgatgagcgttaattaactatttattaattagtttgtagatcaaggtattgtcagtgagacgaaaatccaggcttcgctatttttggtgccatcagctaagaggacagtcctcttagccccctcctttccccgctcattcattaaacaaatccattgccataaaatatataaaaaagcccttgctttctaacgtgaaagtggtttaggttaaaagacatcagttgaataaacattcacagagacttttatgacacgcgttcaatttaaacaccaccatcatcaccatcatcctgactagtctttcaggcgatgtgtgctggaagacattcagatcttccagtggtgcatgaacgcatgagaaagcccccggaagatcaccttccgggggcttttttattgcgcggttgataacggttcagacaggtttaaagaggaataacaaaatgacagacaacactcgtttacgcatagctatgcagaaatccggccgtttaagtgatgactcacgcgaattgctggcgcgctgtggcattaaaattaatcttcacacccagcgcctgatcgcgatggcagaaaacatgccgattgatattctgcgcgtgcgtgacgacgacattcccggtctggtaatggatggcgtggtagaccttgggattatcggcgaaaacgtgctggaagaagagctgcttaaccgccgcgcccagggtgaagatccacgctactttaccctgcgtcgtctggatttcggcggctgtcgtctttcgctggcaacgccggttgatgaagcctgggacggtccgctctccttaaacggtaaacgtatcgccacctcttatcctcacctgctcaagcgttatctcgaccagaaaggcatctcttttaaatcctgcttactgaacggttctgttgaagtcgccccgcgtgccggactggcggatgcgatttgcgatctggtttccaccggtgccacgctggaagctaacggcctgcgcgaagtcgaagttatctatcgctcgaaagcctgcctgattcaacgcgatggcgaaatggaagaatccaaacagcaactgatcgacaaactgctgacccgtattcagggtgtgatccaggcgcgcgaatcaaaatacatcatgatgcacgcaccgaccgaacgtctggatgaagtcatcgccctgctgccaggtgccgaacgcccaactattctgccgctggcgggtgaccaacagcgcgtagcgatgcacatggtcagcagcgaaaccctgttctgggaaaccatggaaaaactgaaagcgctgggtgccagttcaattctggtcctgccgattgagaagatgatggagtgatcgccatgagctttaacacaatcattgactggaatagctgtactgcggagcaacaacgccagctgttaatgcgcccggcgatttccgcctctgaaagcattacccgcactgttaacgatattctcgataacgtgaaagcacgcggcgatgaggccctgcgggaatacagcgcgaagtttgataaaaccacggttaccgcgctgaaggtgtctgcagaggagatcgccgccgccagcgaacgcctgagcgacgagctaaaacaggcgatggcggtggcagtaaagaatattgaaaccttccacactgcgcaaaaactgccgccggtagatgtagaaacgcagccaggcgtgcgttgccagcaggtcacgcgtccggtagcttcagttgggttgtatattcctggcggctccgccccgctcttctcaacggtattaatgctggcgactccggcgagtattgcgggctgtaaaaaagtggtgctgtgctcaccgccgccgattgccgatgagatcctttatgcggcgcagctgtgcggtgtgcaggacgtgtttaacgtcggcggcgcacaggccattgccgcactggcgtttggtacggaatctgtgccaaaagtggacaaaatcttcgggccgggtaacgcctttgtcaccgaagcgaaacgtcaggtgagccagcgtctggacggtgcggcgatcgatatgcccgcaggcccgtcggaagtgctggtgattgctgacagcggcgctacgccggatttcgtggcttctgatttgctctctcaggctgaacacggcccggactcacaggtgattttactgacgcccgctgctgatatggcgcgtcgcgttgccgaggccgtcgaacgccaactggcagaactgccgcgtgccgaaaccgcccgccaggcactgaacgccagccgcctgatcgtgactaaagatttagcgcagtgcgtggagatctccaaccagtacggcccggagcacctgatcattcagacccgcaacgcccgtgaactggtcgatagcatcaccagcgccggttcggtatttcttggtgactggtcaccggaatcggcaggtgattacgcctccggcaccaaccacgttctaccgacttacggttacaccgccacctgttccagcctcgggctggcagatttccagaagcgcatgaccgtacaggaactgtcgaaagaggggttctccgcgctggcttcaaccatagaaacactggccgccgccgagcgcctgaccgcccacaaaaatgccgttactttgcgtgttaacgcccttaaggagcaagcatgagcaccgtgactattaccgatttagcgcgtgaaaacgtccgcaacctgacgccgtatcagtcggcgcgtcgtctgggcggtaacggcgatgtctggctgaacgccaacgaataccccactgccgtggagtttcagcttactcagcaaacgctcaaccgctacccggaatgccagccgaaagcggtgattgaaaattacgcgcaatatgcaggcgtaaaaccggagcaggtgctggtcagccgtggcgcggacgaaggtattgaactgctgattcgcgctttttgcgaaccgggtaaagacgccatcctctactgcccgccaacgtacggcatgtacagcgtcagcgccgaaacgattggcgtcgagtgccgcacagtgccgacgctggacaactggcaactggacttacagggcatttccgacaagctggacggcgtaaaagtggtttatgtttgcagccccaataacccgaccgggcaactgatcaatccgcaggattttcgcaccctgctggagttaacccgcggtaaggcgattgtggttgccgatgaagcctatatcgagttttgcccgcaggcatcgctggctggctggctggcggaatatccgcacctggctattttacgcacactgtcgaaagcttttgctctggcggggcttcgttgcggatttacgctggcaaacgaagaagtcatcaacctgctgatgaaagtgatcgccccctacccgctctcgacgccggttgccgacattgcggcccaggcgttaagcccacagggaatcgtcgccatgcgcgaacgggtagcgcaaattattgcagaacgcgaatacctgattgccgcactgaaagagatcccctgcgtagagcaggttttcgactctgaaaccaactacattctggcgcgctttaaagcctccagtgcggtgtttaaatctttgtgggatcagggcattatcttacgtgatcagaataaacaaccctctttaagcggctgcctgcgaattaccgtcggaacccgtgaagaaagccagcgcgtcattgacgccttacgtgcggagcaagtttgatgagtcagaagtatctttttatcgatcgcgatggaaccctgattagcgaaccgccgagtgattttcaggtggaccgttttgataaactcgcctttgaaccgggcgtgatcccggaactgctgaagctgcaaaaagcgggctacaagctggtgatgatcactaatcaggatggtcttggaacacaaagtttcccacaggcggatttcgatggcccgcacaacctgatgatgcagatcttcacctcgcaaggcgtacagtttgatgaagtgctgatttgtccgcacctgcccgccgatgagtgcgactgccgtaagccgaaagtaaaactggtggaacgttatctggctgagcaagcgatggatcgcgctaacagttatgtgattggcgatcgcgcgaccgacattcaactggcggaaaacatgggcattactggtttacgctacgaccgcgaaaccctgaactggccaatgattggcgagcaactcaccagacgtgaccgttacgctcacgtagtgcgtaataccaaagagacgcagattgacgttcaggtgtggctggatcgtgaaggtggcagcaagattaacaccggcgttggcttctttgatcatatgctggatcagatcgctacccacggcggtttccgcatggaaatcaacgtcaaaggcgacctctatatcgacgatcaccacaccgtcgaagataccggcctggcgctgggcgaagcgctaaaaatcgccctcggagacaaacgcggtatttgccgctttggttttgtgctaccgatggacgaatgccttgcccgctgcgcgctggatatctctggtcgcccgcacctggaatataaagccgagtttacctaccagcgcgtgggcgatctcagcaccgaaatgatcgagcacttcttccgttcgctctcatacaccatgggcgtgacgctacacctgaaaaccaaaggtaaaaacgatcatcaccgtgtagagagtctgttcaaagcctttggtcgcaccctgcgccaggccatccgcgtggaaggcgataccctgccctcgtcgaaaggagtgctgtaatgaacgtggtgatccttgataccggctgcgccaacctgaactcggtgaagtctgccattgcgcgtcacggttatgaacccaaagtcagccgtgacccggacgtcgtgttgctggccgataaactgtttttacccggcgttggcactgcgcaagcggcgatggatcaggtacgtgagcgcgagctgtttgatctcatcaaagcctgtacccaaccggtgctgggcatctgcttagggatgcaactgctggggcggcgcagcgaagagagcaacggcgtcgacttgctgggcatcatcgacgaagacgtgccgaaaatgaccgactttggtctgccactgccacatatgggctggaaccgcgtttacccgcaggcaggcaaccgcctgtttcaggggattgaagacggcgcgtacttttactttgttcacagctacgcaatgccggtcaatccgtggaccatcgcccagtgtaattacggcgaaccgttcaccgcggcggtacaaaaagataacttctacggcgtgcagttccacccggagcgttctggtgccgctggtgctaagttgctgaaaaacttcctggagatgtgatgattattccggcattagatttaatcgacggcactgtggtgcgtctccatcagggcgattacggcaaacagcgcgattacggtaacgacccgctgccgcgattgcaggattacgccgcgcagggtgccgaagtgctgcacctggtggatctgaccggggcaaaagatccggctaaacgtcaaatcccgctgattaaaaccctggtcgcgggcgttaacgttccggtgcaggttggcggcggcgtgcgtagcgaagaagatgtggcggcgttactggaagcgggcgttgcgcgcgtagtggtcggctccaccgcggtgaaatcacaagatatggtgaaaggctggtttgaacgcttcggtgccgatgccttagtgctggcgctggatgtccgtattgacgagcaaggcaacaagcaggtggcagtcagcggctggcaagagaactcgggcgtttcactggaacaactggtggaaacctatctgcccgtcggcctgaaacatgtgctgtgtaccgatatctcgcgcgacggcacgctggcaggctctaacgtctctttatatgaagaagtgtgcgccagatatccgcaggtggcatttcagtcctccggcggtattggcgacattgatgatgtggcggccctgcgtggcactggtgtgcgcggcgtaatagttggtcgggcattactggaaggtaaattcaccgtgaaggaggccatcgcatgctggcaaaacgcataatcccatgtctcgacgttcgtgatggtcaggtggtgaaaggcgtacagtttcgcaaccatgaaatcattggcgatatcgtgccgctggcaaaacgctacgctgaagaaggcgctgacgaactggtgttctacgatatcaccgcttccagcgatggccgtgtggtagataaaagctgggtatctcgcgtggcggaagtgatcgacattccgttttgtgtggcgggtgggattaagtctctggaagatgccgcgaaaattctttcctttggcgcggataaaatttccatcaactctcctgcgctggcagacccaacattaattactcgcctggccgatcgctttggcgtgcagtgtattgtggtcggtattgatacctggtacgacgccgaaaccggtaaatatcatgtgaatcaatataccggcgatgaaagccgcacccgcgtcactcaatgggaaacgctcgactgggtacaggaagtgcaaaaacgcggtgccggagaaatcgtcctcaatatgatgaatcaggacggcgtgcgtaacggttacgacctcgaacaactgaaaaaagtgcgtgaagtttgccacgtcccgctgattgcctccggtggcgcgggcaccatggaacacttcctcgaagccttccgcgatgccgacgttgacggcgcgctggcagcttccgtattccacaaacaaataatcaatattggtgaattaaaagcgtacctggcaacacagggcgtggagatcaggatatgttaacagaacaacaacgtcgcgaactggactgggaaaaaaccgacggacttatgccggtgattgtgcaacacgcggtatccggcgaagtgctaatgctgggctatatgaacccggaagccttagacaaaaccctcgaaagcggcaaagtcactttcttctcgcgcactaaacagcgacttgtgaccaaaggcgaaacgtcgggcaatttcttcaacgtagtgagtattgccccggactgcgacaacgacacgttactggtgctggcgaatcccatcggcccgacttgccacaaaggcaccagcagttgcttcggcgacaccgctcaccagtggctgttcctgtatcaactggaacaactgctcgccgagcgcaaatctgccgatccggaaacctcctacaccgccaaactgtatgccagcggcaccaaacgcattgcgcagaaagtgggtgaagaaggcgtggaaaccgcgctggcagcaacggtacatgaccgctttgagctgaccaacgaggcgtctgatttgatgtatcacctgctggtgttgttgcaggatcaggggctggatttaacgacggtaattgagaacctgcgtaaacggcatcagtgagttgcggggtaagcggatgcgatattgttgccgcatccggcaaaaaaacgggcaaggtgtcaccaccctgccctttttctttaaaaccgaaaagattacttcgcgttgtaattgcgtagagcattacgccccagcacaatccccgcgccaaccatgccacccagcagcaccgccagaatcaaggtaattgcctttttcgggctatcacgacgaataggtaacatcggtttcatcacataacggtaagcatgaatatcaagatcatcaacttttaagctttcgatatccagcaggttttgacgagtctgatagtagtttggcgagaacaccaacggacgggtcgcctcatgcttaatcatcgactccagcgcttcgctccccaaaaggaacaacgtatcttgtgtgatatcttcgccagtctgttgaatctgcggttttgtcacctgcgcctgattcgcatactgcaacgcttcctgaatctgacggatacgcagatctttctgctcctgcgcgactacttcctgcgttcttaaagagtcctgcaagtttttccgtcccagagcaatgttgtctttgagatccttttctagctcttgattcactttatcgtcaacttgctgaatgtattgggccaacttcatttgtgcgccctctgcagtttgcccaacataagaaacagtcaatggtaattgctggttcttaacagaaggttcgatggtaagtttttctcgttcttcctgattatccagcgtttctgctaatgcagagaaggcagaactgaagcgaccaattaacgtctcctgcaaatccgatactttcggtgcagcctgaccatagataacattcatggcattgttatagccagcaatttgccccacgtcgggctgagtgataattgctgttgacgtccatttctccttcgctactgccaaatatccaatagccagggcaatagccacaatgacggaaatgatgattgtcatcttgccacgccacaactgcactagtaaatcaatcaaatcaatctgttccgggtcatggttttgcccagaaacattattattttctactctcatcattaccctaactgacggaaatttccaagtccgcatagtttagcgataatcctcgtgaatgctataggataagtgataaaaataatgaattgttgtgtaagtaacaaaagacaatcagggcgtaaatagccctgataacaagatgttagtcgctgccaaagagatcgcgggtgtataccttatctgccacatccttaagctcttctgccattcggttagagataatgacgtcggcttgttgtttgaaggtggcgagatcacgttccaggcgagagttgaagaatgagtcttctttcatcactggctcgtagatgatcacttcaacacctttcgccttgatacgtttcataatcccctgaatagaagacgcacggaagttatctgaaccgctcttcataatcagacgataaatacccaccacttgcggcttgcgtgacaaaatggcatcggcaataaaatctttacgcgtgcggttagcatcgacaattgccgagatcaggttattcggcacagactggtagttcgccagtaactgcttggtatctttcggcagacaataaccaccataaccaaacgacggattgttgtaatggttgccaatacgtgggtcgagacaaacgccttcgattatttgacgggaattcagacctaaactttctgcatagctatccagttcgttaaagtacgccacgcgcatcgccaggtaggtgtttgcaaaaagtttaatcgcttctgcttcagtggagtcggtaaacagcatcgggatattttgcttaatcgcgccttcctgtaacagagcagcgaaacgttctgcgcgttctgaacgctcaccgatgacaatacgtgaaggatggagattatcgtaaagggctttaccctcacggagaaattccggggagaatataatattttcagtgcgatatttcttatgcatcgctgcggtaaaaccaacgggaaccgttgatttgatgaccataaccgcataaggatttatctcaactacgtctttaattactgattctacactggatgtattgaaataattagttttaggatcatagtcggttggagtggcgatgatgacataatcagcatcccggtaggcttcatttttatctaatgtggcattaaagtgtattttatctgattgcaaaaactgctgaatttccttatcaacaataggagatatccgatcattcagcatagcaacgcgtgacggtaaaatatctaatgccacaacctcatgattttgtgcgattagaagcccgtttgacaagcctacatagccagtaccggaaatggtgattttcatttcatgctctcagaattaacttaactgtgaatcatgatgtttttagcatcctgataagagctaaaagttttaacgctacgttgttcgatggtcaacgcaacgaaaaacaattcagattttctttataagaatagctgatatttattaagttaatattaagcagtgaaatttagtctataagatatttggcaaaaaaaagcccggtgcaatatacgccgggcctcaattttattgttggttaaatcagattaatccagccattcggtatggaacacaccttctttatcaatacgcttataagtatgcgcaccaaaatagtcacgctgtgcctggatcaggttcgcaggcagaacagcagcacggtagctgtcgtaataggcaaccgctgcggagaaggtcggaaccggaataccgttctgtactgcataagcaacgacatcacgcagcgcctgctggtagtcatcggcaatttgcttgaagtacggagccagcaacaggttagcgatctgtggattttcggcataagcatcggtgattttctgcaggaactgcgcacggatgatgcagccagcacggaaaatcttcgcgatttcgccgtagttcagatcccagttgtactcttcagacgcagcacgcagctgagagaagccctgggcgtaagaaacgattttgcccagatacagcgcacgacgaactttttcgatgaactcagccttgtcgcctgctggctgtgcttgcggaccagagagaactttagatgcggcaacacgctgatctttcagagaagagatataacgtgcaaacacagactcggtaatcagcgacagcggttcgccgagatccagcgcgctctggctggtccatttaccggtacctttgttagccgcttcatccaggatcacatcaaccaggtagttaccgtcttcatcttttttggtgaagatatctttggtgatgtcgatcaggtaactgctcagttcaccgttattccactcggtaaaggtctgcgccagttcttcgttggtgaggttcaggccacctttaagcagagaataggcttcagcaatcagctgcatatcgccgtattcaataccgttgtgaaccatcttcacatagtgacctgcgccatcggcaccaatataggtaacgcatggttcaccgtcttcagctacggcggcgattttggtcaggatcggtgctaccaattcataggcttctttctggccaccaggcataatagaaggacctttcagcgccccctcttcaccgccagaaacaccggtaccgatgaagttaaagccctctgctgaaagctcacgattacgacgaatagtgtcctggaagaaggtgttaccaccatcaatgatgatgtctcctttatcgagatatggtttgagggaatcaatagcagcatccgtgcctgcacctgctttcaccattaacaggatgcgacgaggcgtttccagagattcgacaaactctttcaccgtatagtaaggaaccagtttcttgcctggattttcggcaatcacttcttccgtcttctcacgggaacggttgaaaatagagacggtataaccacggctttcgatgttgagcgcaaggttgcgtcccatcactgccataccgactacgccgatctgttgcttggacattacatactcctgtcaggtgtgatcaccgcgctgaatgctcgcggcctggaatgttcgcaaataagtatacaaagtacttattaaagtataaatagcttatccatgcttatatgcttacggctttatattacgggtgaaaaactgatgaaattcgatcaaagttgcgatttgataaaatacgttttctggctaaatatctaaaagtactttttaagtgccatctgaaggcttttgaaaaaaaacttcgattgtcatgatgagcataatgtatcgcatgaaaagcgggaacataatgaagtctgacaccagccaggctaagcctcaagcacaggtcaatatcttcacagtacataaagtaaccttgatcgaagccatttacacgcacaaaatctgaaaaacgtaccagcataaatgatcctgcgcaccaatcaacaaccgtatcagaatagatactttctttaggaatttttgttttattaaggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccttaatccctaacataaatgacacaataaaatcagaaagcacaggaaattttcttacggaataatcatgtaaagatttcgcttcatctcggaacaggcataatgtactaaaagcataacgcttactttcgacatatttaatatatgtcagcaaatcatcatgcttcatgatgatatcgggattcaaaaacaaaatgtaatcatcatctgcgggtctatatttttcctttacatacgccaccgcaatattattattatgaccaaagccgtatacacctccactaatatagtccaggcctgcataatgctggcatatttgtttcaataatagagagtctttgttgtcgcgtacgataatcttgtagtgctcatcgtcagcattaagattttcgagtaattttttgatgtagtcttcatgtccgtgggaaacgattattatatataccatttcaatgttcttcagtaataaaattaactagttcatcaaacccaactaatacattttcattacgataaatgaaatttgcatcagagatatcttttttgaggttaccttttttgaagtcaataataagtttaactaacatgtcatcgttattagaatcaaaaaaagctttcttttcataactaccaagagtttctctagtaaatgggaaatctgatgctaatacccacttacctcgctctttagcttcagacaacggcaatccccatgtttctaacctagagggaaaacaaactatatctgaaatattataacaatgatcgattttttctttatccaagtacccgaggaaatgaacattatccagtccttctgcaagactgataatatattttgcatacgcattttctgtaccactgatagtaagcagaaatttaatattggattgttctttcaatttccttgctgcactaataataagctcgtaatttttaaatactcgtggaacagcagggtaaaatattgtcaactcagaagggttattcttaaattgagaatcatcatcagtaagttggcttttatcagataatttaatttctggccgactgacaatgatgttatttatagaatatttcttgataaatttttctttcatccagaattgttgaacaaacactgcagtattttttttaatgtttattttatatatcagcccgtatagcattttaaataagaaaaagctaggctccataagaatttcacggaataaaattcctttataaaaaggtgcagggttatgacaatacacatatctttttttagtgacgacattggccgtaatatcatgcagacaaatccaatgcgtagcattcagctcttttgaaagttttttacaaactacatattcaaagtgcaaacgttttagccacgaccctttaacctcaggaaactcaatgaatttaacccatggataactttcttttaactctttagcagaatggactaatgcgataaaactgacattttctttattattagttgctgccaaaaattttttcaaaatggtaaatggaccgccagtggtaaaattgaccgcagaaacaacgactatgctttttcccataatttggtctcatgattgtatttctttatgatttttgctggtactcccgcaatgacagtattttcgggaatagaacctctaacaacagaattggcgccgactacgactccattaccaataattgttccaggcaaaaccgtcacattctcacccaaccaaaccctctggccaattacaacagctgaagattccaacgtgcgcatgtctggaggtatatttggcgaactcattggatcagagtgcttaaaggaaccgtgattatgatcggtaataaatactttacttgcaataagcgtatcccgacctatcgtaacgctctcaattgaggcgatatgaacatagtcgttaacttgcacattatcggaaaaaaaaatcacgccacgtccaaatgcatccagcctgagaccgactccacttgtgaaattttcaccaaaattaatgctaccatcattgcgaatatagcagggaaatcgaataattctacagttccggtaaaatacacgagtcaataagacatctctaacaagccgaataaaaccacagagaccatatcgtttagcgagttttaagatcatcgatcacctcttcaagaacatccctgaagtaacttcctgttcgaattttctgagaaataatttttgtattctcactaatttgcttataagtttctattgtcatggagtcaacaatctcttgcatttctttgattgatcccactgcatatcctattctattatctacaatgaaatccgcaagggcggctttatcccatataaatactggaagttccattgaaagataaagagatgtcttatgagggttattaaactttaaatagtcgccaaaggcaccactacaggtttcgacagaatctccatcccaaatgagtccaaattgcatgcctgggaggttaatcttttccggagattgagcatcaaaacttccaagatatttaggattatctttattttcatagttgacaccaaagagagtaaaatcgcatccttcagtatatatgaaagaacatttatgcctagaaaggttgccagcatatatgacccctcgttgcttatccgtaacatctcgatgctccacatcagatgagacgaggtaatcaaatatttttatgtctttgattttatcctgagacatatatttactaaggtactttgtcatttgtggattgtgacttatgaccatatcacaggtagcaagccgcacagaatcactaccccctcctcctcttaattcatcaatatcatgaatcagaggtactattctaaattttagaaggcggtgaaagaatgacaatatatgccaaaatggtttggccatcgggaaattgaaaattaaaacatctttattttcaagaccgcagagaaatgtactaagcttaacagaactaataattctctggactactccaccccatagaggaatgttaacaacagaaatgttttcataatctgaagcaatgtccagtgcatcttttcttgctttaaatccagcatcgcgtctagagaaatttaaatcattcaaaaaatacattttcactttattttctgggccttaagaaattgagagaatactatgatacaaagagttatttgtatccaactgctaatattagtcatgaagctttcatgataaaaaatgaaagaaaaggtataaataaaatatgaataaaatattttcacagatatgtaatttcgagacaatctccataaaacacctgaaatacagccatgaataaccatcatcaaatagcttagctccgcggaaatataaacataatccgaaaaagcagtataaacatttgttggcaaacccacccacacaaattctttatgcaacgacatagagactccacctgttaatagccccatcagcctttcaaaaaaccaaaagacatgagaactggcagagttagatacttgctgaaaataaaactcctgaaacgcgattatagggctgaccaaatacatggatagataatatgccatccccccaggcagtccacgtaaaaagagcatatacaaggagaatagaacacctacagctgtaataagataaacataatgttttactctattaacacctacgatgaatgcataagagatgataaccataaagacaatttgcttaccagtattcagtataattgcaaagatgaatacaataaaaacaagtaaagtaaatgttttacttacctttgtattagtaaattttttagaccaaataaataaagcaaaagtagttagaatgattggctgcatgtatgctgagaaatttcttgatgtgtcttcaacatcagcatctcttatcaaattcatatagctaagtaagctagtcccgaactggtagttacttaacctcatgcatatatatatcatcgaaaaagaaataactaacaagcctacattatgcactttcttcgatggtatgctataaatagcattattgacttttctgatatttagatctaatacactttccgtcaataaacatgacagggtaaatgtcaaaacattgcaaagtagaaaaatcaacgtagcgtcatttaactgaaaagcatatatatctgacgttatttcatatcccaataagaccagtgcgaagatgatattaacgcatacggctggataaaatatatccttcttaagatataaacagataaatgctgtaatgagaaagacactaattacaagatagatcattaatccgtactcattatatttttcacttgataaagagcggcagatatcacttgatgcatatcataatatttatactcggccaaacgcccgccaaatataaccttgtcttctctgctagctaactctctatatttcttaaaaagctccatgtttttattatcattaactggatagtagggttcgtcgccaactttccactctaatggatattcttttgtaacaaccgtatgctttgtctcaacatagtcaaaatgtttatgctcaattattctggtatatggtacattagcatcagtgaaatttattactgcattcccttggaagtttggaaattcatggcgttccgtctcaaattttaaagagcgatattctaacgctccaaacctatagtcgaagtactgatcaatgggtccagtgtagatgattctatgggctttactcgctagagaatctttgtctttcaaaaaatcaatgcctaattttacgtccacaccttcaagcattttttcaataagcttagtgtagcctcccaccggaataccttgatagcgatcggaaaaataattgttatcaaacgtaaatctcactgggattcgcttaataataaatgcaggcaattcttttgcacttcttccccactgcttctccgtataaccctttatcaatgcttggtataagtcctccccaactaatgaaatcgcctgctcctccaaattttcaggtaccttgtcaccatacttttttttctgagcattaatgatattttgagcttcttgaggatctttaactccccacatttggtggaaagtattcatattaaaaggaaggttgaataatttgtctttataaatcgccagtggagaattagtaaaacgattaaattctactaaatcattaacgtaatcccatatatatttatcattggtatgaaaaatatgtgcaccatatttatgaatctggataccctcacagtcctctgtgtacgcatttccaccgatatgatttcttttctcaatcactaaaacttttttgtttagcttttttaactcattcgcacaaacggcaccaaacaaaccagaaccaacaatgatataatcgtacataaaatcctcagcaaaccagtaatttattatttcttacgaacatcagcatgagtgacgtaactaagcactctgttgcaagcaatgttattgctgcaccaatctctttaaaaagagttgttagcggaaaaatcaacaacaaactcaacaaacccgcagcgattaaaatcttactgaattctttcttataattatgggtcagcataacttgaatgccatagacattacttaatgaaataagaaaaggcagaggcgatataatcattagcacaatcactgcattatcatatcccggccctatacttatttttactagtatagatgcacccaagagcagaattaatgaaaaagcaccaccaatcaaactcaagcaggtcaatgattttttaattaaaatcacacccttcacacgattaagaacaagcgtacttgatattcttgggtatattgcttgggtgataggatttaatagcccttgaagcgcgtttcttatagtattggccgcattaaaattccctacggacgttggtccagatataaatcccaggataataactattcccgtagaatataaactaatagcagatgtggaaataaaaacatgaaaaccgtctgctaaagatcgacgcacattatgtaatgatagcgtaactttaccaatccaaccttcatgaacaacgatagctagtgcaataattccagcaaccagatttgcacttgactgaataaaaccggcaattgctatatctgactttgtgttcacaaaaataaatgttagagggataatagccaagcgggataaaatactacttaaagtcagccatttcattttttcttttccctgaaacagccagatagggtagattaaattcccgactaatgcaggaacaaacgaccatataattacggcatgcttgttatattcaggaacaagcaaggtcatcgacgttaagaaaatcaatgtaatgacgataagaactatttttgaaaatatcaccgcccaaaaaatagacgttactttatctttactatctgctgctttggcaatactctgagttgctgtgagattgaaaccatattcaacaaacattatcatatatagcatagtcgcttggcaaaaaccgaatataccgaaattttcaggaccaagtgttcttacaagatatggaaatgtaagcaatggtaaaagataattgctaccttgaacgacagccagatatataacgtttcttcttaaagataatttattcgtattcatgcaattaattttaatctgataagctcatctaacgtaaagagcctttcatcttttggcgaaaggattaaccctgatgtttggggccaatcaattgcaatgcgttcatcattccaacatattccacaatcgctttcaggatgataatagtttgtagttttatattgaaattcagcgatatcagacagaaccaaaaagccatgagcaaacccttttggtatccacaactgctgcttattatcagctgaaagcagaacaccaacccatttaccaaaggataccgaattgggtcgaatatcaacagcaacatcaaaaactgctccatgagtgcagcgtacaagtttatcttgtgcgtactcgccgcgttgaaagtgaaggcctctgagtacattttttgatgaacgtgagtgattgtcttgaacaaagctgaccggatagcctagaatatgttcaaatgctgattgattaaagctctcataaaagaaacctctatcatcaccaaatactcttggctccagaattagcacatcttcaatttcagttctaatcacattcattaatttgaatccttcgtcattttataaagatactgcccataattattctttattagtggtacagctaattttcttacttgctcaacatcaataaaacctttacgaaatgcaatctcttcaggacaggaaaccttcaatccctggcgctcttcaattgtcgcaataaaattacttgcttctatcagactctgatgagtccccgtgtccagccacgcgtagccacgccccatcatcgcgacagacagacgtccctgctcaagataaatacggttaatatctgtaatttctaactcaccacgtgcagacggcttcaagtttttcgccatctgaaccacgtcgttatcataaaagtacagacctgtaacggcgtaattactctttggttctaacggtttttcttccagactgattgccgtaccgtttttatcaaactcaacgacaccatagcgttctggatcattaacgtgataggcaaataccgttgcaccactttctttgttaacagcggcctccattagcttcggcagatcgtgaccgtaaaagatattatcaccaagaaccaaagcacaatcatcaccaccaataaactcttcaccgatgataaatgcctgcgcgaggccatctgggctaggttgcactttgtactgaagattcaggccccactggctaccgtcacccagcaattgttgaaaacgaggagtatcctgaggtgtactgataatcaaaatatcgcgaatacccgccaacatcagtgtagagagcgggtaatagatcatcggtttatcataaataggtaatagctgtttactgacagccatagtcacaggataaagacgtgtaccagaaccacccgctaaaataatacctttacgcattttcatttcatcattccttttaattcatcttgctccaccatcacgaacaagatgcaaaaactattaaattgctgtagtcgtaaataattcattgagcattcgtttcacgccaacctgccagtcaggcaagacaagcgcaaagttctgctgaaatttttctgtattaaggcgagagttatgtggacgacgagctggtgtaggataggctgttgttggtactgcgttgagcttgttgagtgcaaggggaatgcctgctttgcgcgcctcttcaaaaaccagcgcagcataatcgtaccaggttgtggtaccactggctaccaaatggtacaagcctgcgacatccggtttattcagtgcgacacgaatggcatgtgctgtacaatcagccagcagttcagcacctgttggcgcaccaaactgatcgttaataaccgctaattcttcacgctcttttgccagacgtaacatcgttttggcgaagttatttccttttcctgcatagacccagctggtccggaaaataagatgcttcgcgcaatattcctgtaacgctttttctccggctaacttggtttcaccgtaaacatttagtggtgcggttgcatccgtctccagccatggcatatcgccatttccagggaagacgtaatcagtcgagtaatggataacccaggctccaacttcatttgctgctttcgcaatcgcttcgacacttgttgcgttaattaattgtgcaaactccggttctgattctgctttgtctactgcggtgtgagcggctgcattgacaataatatccggccgaatgcttcttacggtttcagctacaccttcaggattactaaaatcaccgcaataatcagtagagtgaacatcaaaagcaatcaaattacccaaaggtgccagagcacgctgtagttcccaacctacctgccctgttttgccaaaaaggaggatattcattactggcggccctcatagttctgttcaatccacgattgataggcaccacttttcacattatcaacccattttgtattggacaggtaccattccaccgttttacgaatcccgctctcaaacgtttcctgtggtttccatcccaatgcgcgaccaatcttctcagcatcaatagcatagcggcgatcgtgtcccggacgatcagcaacataagtgatttgctcacgataagatttctctttcggtacaatctcatccagcaaatcacaaatagtgagcactacatcgatgtttttcttttcgttgtgcccaccaatgttataagtttcacccgctttaccttcggttacgacggtatataacgcacgcgcatgatcttcaacatacaaccagtcgcggatctgatctcctttgccataaataggtaatgccttaccttccagtgcattaagaataaccagtggaataagcttttccgggaaatgataaggaccatagttgttcgagcaattagtcacaattgtcggtaaaccatatgtacgtttccacgcgcggactaaatgatcgctggatgctttggatgcggaataagggctgcttggcgcgtaagctgtcgtctcagtaaataagggtaattcttctgtattatttacttcatctggatgaggcaaatcaccatagacttcgtcagtagaaatatgatgaaaacggaagctatttttcttgtcgctatcaagagcagaccagtaattgcgagcggcttccaaaaggacataagtaccaacaatattggtttcaataaatgccgcagggcctgtaattgaacggtcaacatggctttcagcagccaggtgcatcactgcatccggctgatgctgagcaaaaatccgtgccattgcaggtgcatcgcaaatatccgcatgttcaaaaacatagcgttcagaatcagaaacatcagcaagtgattcccggtttccggcgtacgttaatttatcgacattaacaacactatcctgcgtattatttataatgtgacgaactacagctgaaccaataaatcctgcgccaccagtaacaagtattttcacttaatttattccatattacttcagagcatgctgtgaaataagcggctctcagtttgattaatagaggtattaatgcacgctaccgcccctggctttacagctaccagagcactgcatgcatgcctatgatgtgacgagcgttacccactcgcgctaaacccgaaaaattcaaacgctaattgtcttaccaatccgctctggaaacaaggaaaatcctggaaaactttgaataaaaccctactgctaactcgttgttattctgatggtttatataaaacaacggcaggaagattcgcaacaaattacttttgctgcgaattttcactgccgttataattttcttatcaaccgttacatccggtcagattttcattattcgcttaacagcttctcaatacctttacggaacttcgccccttctttcaggttgcgtaggccatacttcacaaacgcctgcatatagcccatttttttgccgcagtcgtaactgtcgccggtcatcagcattgcatcaacggattgttttttcgccagctcggcaatagcatcagtcagctgaatacgtccccatgcaccaggctgagtacgttccagttccggccaaatatcggcagaaagcacatagcgacctacggccatgatgtctgagtccagcgtctgcggctgatccggtttttcgataaattcaacaatgcggctgactttaccctcacggtccagcggctctttagtctggatgacggagtattcagagaggtcacccggcatacgttttgccagcacctggctgcggcccgtttcgttgaaacgtgcaatcatggcagcaaggttgtaacgtagcgggtcggcgctggcatcgtcgatcacaacgtctggcagtaccacgacaaatgggttgtcaccaatggcaggtcgcgcacacaaaatggagtggcctaaacctaaaggttcgccctgacgcacgttcataatggtcacgcccggcggacagatggactgtacttccgccagcagttgacgcttcacgcgctgctcaaggagtgattctaactcataagaggtgtcgaagtggttttcgaccgcgttcttggacgcgtgagttaccaggaggatttctttgatccctgcagccacaatctcgtcaacaatgtactgaatcattggcttgtcgacgattggtagcatctctttgggtatcgccttagtggcaggcaacatatgcatcccgagacccgctacaggaataactgcttttaaattcgtcattatttcatccacctgtaaaatggttgctgaattatagcttgttcgatttttttcgccagcatcaattaccctgaattgattactgaattacttgtgatgttacgccgcttcgttgtggattgcagtagcattgttcctaagtatgactccatttttccaggaatggtcgcaaatctactccctcagttccggcaatctaaagttaatcttctccacattaacaatatggtgattaatcctgtcgatatcgacggagctttgtcctttttcattcaccgcatgaacatttgcaagagacagcagtgtttcttttttcgccataaaaacaccacgaacgtctttgcgcatgtcaaagttcatgctcaatgcgggtccaactgaggattcctgcatcacattgatatttcgcataaaaaaatgttgcggtttgttgtgtaactccagcgacgcacgcttcatctcaatgttagttagcgccacaaaggaaacagcattcccggcggagatttgaatgccgcgcaatttataagcaagatgagtattatccagttgaatatcattcacccggaaattttgcggtatcgagagatatttgcctttaattaccccatagccgattaacatcccggcgctattaatcatttcaatattatcaatcacgaaattgtcacaaccgtaaatagcgactgtcgcgttatcaatgcccgctttcttactgaaatccggcgtgatattgcgggctttgatattacgaataacaaaatgtttaccattttcaacatgtatcaactgccgacaatccgatcccgtgatattcgccacgacaaagtttttcactgcctggtcttccgggtagttgttatcataagtgcttcccgcaaggcctatgccgatgccccagttgattttgccgttggtacagttgatgcgctcgatgacatggtcagatatcaaaatatcacggtcgttaattgccacgttccattcaatggcgtcgccttgtaagtcgctgaacttacaattggtgatgttggcaccgataatctggttatgaaatccctggcgtaagatggcgtaattagcgtggctaacggtcaggttatcgatgatcaggttgcgcatgacccgtttgtttttgccgccgatataaatctgcgtcaccgggccaaagccgctcatagtcagccctttgatggtgcagtcagaaccacgcacatccagggtgatgttatgcatactgccgccatcctcccctgtcacctggctgccgtcctgtaagacaaatcgccctctgccgttgccgcgcaagcttccaagaatgtgtaacgttttaccgggagggataaagatgccggtgttgatattgtcacaaaccaatccggcaggcacgacgactgtttgcccttcgctgaaggcttgtttaaatgaggcgatccagtcgtgtgggttgtagtcgttaatgttaacgctttgtcgggcgggaagcgcgcgggcgaaaggggtatggaggaaggcaagcgccgagcttgccgtcaggaacgtgcgtcgggagagttttttaaatggcatgcgttctcctctataaagcctgcagcaagctggcgagttctcgattgatcacctgctggttaaaatcgtgttcaactttttcgcgcgcgcgtttgacgaccggagccaattcgtcggtgtccagttggctaaacgccgccagtcgttgcgccagtgcgcgagcatcgttctcaggcaccagccagccggatttgtcagcctccaccagttccggtattccactatgcagagtagaaaccaccggaataccgaccgccatcgcttccattagcgccaccggaataccttccatatcaccatccgcacctgtaaccgatggcaacaggaagacatccgcgtcgtcgagcatcgctttcacttcatggctcggtttaaagcccggcatctccaccacatcttccagttgatattgttcgatgagggtgcgcaggcgtctttcccacgggccaatgccgaggatgcgatagcgaaatgccacgccctgctctttcaactgacggcaggcttcgatcgccacatgcaggccttttttctcggttaagcgtgcgacggaaataatctccagcggcgttgcgggcgctttcacgggacgcgggctaaagcgcgtcatatctacgcccatgcgcgatacggcgattttttccctcgggcagcccattttttgcagccttccggcccacagatcgcttatcggtaacatcaggtcgccacggcgaaacagttgctgatattcgggagtgtagtggttgagcacttcccgactggagatatcaataccgtggaagatagtggcaattttgccgcgaatgacacccagttcgcggagttttgctgcggttacccccgcgggaccaaaatgagcgatgaacacatcggcgcgaaacggtgttgcgacctggccgcaaatggcagacaaaatcaggttccgcgactcggcaccatagcgtttgaggttgagcgcctgccaggtatttttacgatgaatgccgcgcaaggtctggctggctcggtggcgcagtttcgccactttgcccgtaggttcgtcctgtaaccagcgggttctggcagcaaggttgtatttcgtccatgccgcgtgggtgttttgtgtgtcgcctttttgcagcgcgagaatctctacctcaaatcccatatcaataaacgcggtaatttggttaaggacgaaggtttctgacgacagcgggaatttcagtaaaaagaagccgaccttcatttcacctccccgatgcgctcaagcacagactgcaccatctgcattcctgtctgacgctcacgactgacggcttcactaagtcgcgcattcagcgccggaagctggcctaaggtatccgcaaccatcgcttgcaggctgccgtctaataaatgacggatatcaattgccatctccggtagtcccagctgctgcataatcccggcggatttatgttcgtagttgatggcaattgccggagtggcaaaattcatcgagataatggcagagtgcaggcgcgtaccgacggtgagttcacaggcccccagaattttgcccatttccagatcgttgagttcatccatcactacgtggtaacgggcaggatcgctgatgtgctggcgcaggttgagcgccaccatgcggtcgtctttgttatagctgtcaatgcccgtacaggtggagagcgcaatcacctgatacccttcatcgagaatgcgattgaccaccccggcaaaggctttttcatacgcttgttgagtggtgccgagacgtttgtcaaacggtgccagttcgcgcagggtaatggccaccgttttctgttgtgcggcaacgtccagccagtgttgaacggcatagctggcggtgaagtcttctgtgtggtgatcgaccagccacgcggtatcgacgccatgttccacttttgcggtggtgatattgctgcgtttcatcagatcaaagctgaccgattcgcgcaggatcagcgcgtcgcagtgaccaaaaacgtagttcgccagttggttaaattgctcatcctggaacgggccaacactgtgaccaatcataaacagcggctttttcgccataaacgtgcaaagtgcatgttcaaactgcggcacgccatagagatcgacaaaaaacgatccgccgacctggataatggcgtcgtaacctgacagcaggcgcacgaagtcggtgaatccctgggcgatggcgatattgcgcagcttgccagtgtcggtgacgcgtgagagcaatacctgatgctggtagcggcgacggaggacttttttaacgcgcccgacaacgcccgccgcgctgttgtgttgtttcatttgcaggaacagcggatcgcccattaccgggcggttgagcagccaggaagaactgaccggatagcggctcatcacatccacttcggcgtgtggattgagaatgttgatggcatcaagtaagccgcgcaggatggcgctgtcgccacgattgccgcaagtgtggttgcccagaataagtaatttcattttttcctcataaatttgatgccaggtgaggctgcgtttgttttgttcgttgccgctttttgcctgatgcgacgctgacgcgtcttatcaggcctacaagacccgagcacagaaccgtaggacggataaggcgttcacgccgcatccggcattcagtgcctgatgcgacgctgacgcgtcttatcaggcctacaggtcccgagcacagaaccgtaggacggataaggcgttttacgccgcatccggcaaccgttgtcggaaccgaaaacagcaactcaccccgcccgtaaaagcattttcattttttcgctgcgacaaaactgacgcttcacttccaccaccagcggatggcgcgacagcacaatcatcaccacaaacgccagcacccccgtggctatttgcaccgccagcagcatccccagcgccagttgccctttcagcacaatgcccagcgcataactgaccaccagcgtcggcagcgagagataaaacggcagccataaactcaggatgtactggcgataactggaaccaagaaccggtttaatcatcacgaagtaactcagaatggtgttgataatttgcaccagcaggaagccaagcgtgacgccgatcgcgcccgccatctgcccacctataacaatcgccggaataaacagaaatgttttgaatacgttgaatttaaagctgatatcgacccgcgctttcgccatcagcagcgaaccaatcgggttacctacggagcgcagcagacccaccacacacagcaattgcagcaccggaataatgctgttccacttctcaccaaagaccagcggtacaaagttattcgacaccaccattagcccgagcagcgccggaaagttgataatccccactaccgacagcagcttgtagaagttaacacgcagcttttcggtatcgtcctgaattttggcgaatgccggaaacaacacgcgggtgatgattgggttcagcttcatcggtggcacaacggccacgttgtacgccaggttgtatccccctgccacgcccgcgccgagaatacgcgccagcacgagcgttgaaaggttggtattgagatagttgatgatgctgtccgccgtcagccaggcaccaaagcgtaagttcggtgccaccgacgccagcgagaaatgcagaccggggcgataaattttgcggccaaagtagccaaacagcagcgttctcaccgcactattgaccagataaccgaggatcgcggtcatcgccagcggccagaaatgggcgctaaccaccgtacaagtgaagcccgccagcaccgcgctggtttcgatcatgccgattttgttgaactccagctctttttgcatcaacgcgcggaactgttgcccgtgggggattaccacaaacgccagcgataatgttttaatcaacggtgccaggtccgggttattcagcacgtcgccgatgagatcactcaacaaaaacaccgccacgcacaccacgatccccagcccgacgttcagccagtacaacgtggtgagttcaaggtgactgatttcttttcgctgaataatcgagttagcgataccgaagtcagaaagcgtatctgccagcgcgataatcaccagcgacacggtaagcaggccgaactggtggttgtcgataatccgcgccagcacggtcatctgcaccagcccgaggccgatgatgatcaccgtggcaatcgccgaccacttcgcgccgctgatggttttttcacgtaagctcatatcaatatgccgctttgttaacgaaacctttgaacaccgtcaggaaaacgattttgatatcgaaccagacgctccattcgcggatgtactcaaggtcgaactcgacgcgtttttccattttctccagcgtgtcggtttcgccgcgccagccgttaatctgcgcccagccggtaatgcccggtttcaccttatggcgcagcatgtagccttcaatgagctgtcgatactgttcgttatgcgctactgcgtgcggacgtggaccgacaatcgacatccccccggtcagcacattgataaactgcggcaattcatccagcgaggtacggcgcagaaagttccccactttggtgacgcgcggatcgttctgcgtcgcctgggtcaccactttgtcgttctccatcactttcatggaacggaacttccacactttgatcggcttgccatccatgccgtagcgagtctggcggaaaataaccggccctggtgaactgagtttcaccgccagcgcaatacagcacagcaccggggagatcagcagcagaataagcgtcgccagcacaatgtcttccgcacgtttgagcaggcggttaaccccggaaagcggcgtgtcgtaaagcggcaccaccggtacgccgttcatctcttcgaggcgtgaatggagaatgttgaaggtaaagacgtcggggatcagcagcaccgaacaggtggtgtccgccagttgatggaccagttttttcactcgcgcgccgtcgcacatttgcatcgcgatatagacgttatgaatcttgcccgctttcgcgtcctcgaccagctgttgcaggttacccgcccagtcgttagaaacgccgcccggtttcgggtcgtggtaaacgcccaccacttcaaaccctaaccacggctggttacggaagctctccatcagcatttgcccggcggctaaatcccccgccaccgcgaccatgcgcttgttatagccatgattacgcagccagcccgccccaatgcgaatacacgaacggcaaaccaccagtccgatgctggtcagcgcataccacgccagccagattttcagttgcgtgtcgaaatcattgttgaacgccaccagtccggcgctgaaaatcacgcttaaggtccagttttgtagcaacagggcaaattctgtcgctgcccgaacaccgcgccatgagcgataaaaatcggtgatgccgcccagcatctggaacaccaccagcgtaatcagcgccaccaacaggtgcatgtagaggaatgacagtccgctgacttcgcaaaccagccatagtccggcaaacatgatggtgatatctgaaaagcgttgcaccatagagattaacgatgcattggttttcgctcgctcgcgcttttttagatttgtcatcgttgttcctgttattagccccttacccgcagtggggtaagggaagatccgacattactcgttcagcaacgtcagcagagttcgcgttcgcgcttccatcagcggcacatcaccgcgcgattccacattcaggcgcaccaccggttcggtattggaggtgcgcaggttaaagcgccagtcggcaaaggtcatgctgatgccatcggtgcgatccaccgccagcgcctcacggctaaaatgctgttccacgcggttaatcgcctcaacgggttgcgccagtttgctgttgatctcaccgcttgccggaaacgccgccatccggtcgcgtaccagttcgcccagcgttttatctttcaggcacaccagttcggcgaccagcagccacgggatcatgccgctgtcgcagtaagcgaaatcacggaagtaatggtgggcgctcatttcgccaccatagatggcgtcttccttgcgcatacgttctttaataaaggcgtgtccggttttcgacattaccggcgtgccacctgcggcagtcaccacatcaacggtgttccaggagagacgtggatcgtggatgatcttcgcgccgggatttttttcgaggaatgcttctgccaacaggccgacaatgtagtagccctcaataaactgccctttttcgtcaaacaggaaacagcggtcaaaatcgccatcaaaagcaatgcccatatccgcgccgtgtttgatgaccgcattgcgggtgtcgtcgcggcattccggcagtagtgggttaggaataccgttggggaaattgccgtccggcgtgttgtgcactttgattaattccacgggcgcgccgagggctttaaagcgggcttcaatggcgtccaccaccggacccgctgcgccgttcccggagttgatcaccagcttgagcggcgtgaggtttttgacattgatataaccgaacaggtgatcaacgtaagcgtcacgcaggttgatttgctgatagcgaccgcgtttggtttcatcgacgggaggaaagtcgttggcttcagccagacgctggacgtcgcgcagtccggtatctccgctgatcgggcgagccccctcgcgaaccagcttcatgccgttataatccatcggattatggctggcggtaacttcaatgccgccatccacgccgagatggaacgtggcgaaatagatctcttcggtgccggacataccaatatccagcacgtcaacgcccgcatcctgtaaacctttcgccagcgccagttttaaggtttcgctggtgaggcggacatcaccgcctaacacaatggttttcggtttgagaaattcgccataggcgcgaccaatgcgccaggcgatatcttcattcagttcttcgcctaatttcccgcgaatatcataggctttaaagcaggttaattttttcatatcgttaccctttttcaggcaatagttggccctgaccgaagcggccaattttatttttgtcgttatttacaccgcggtttcgcattcattgcctgatgcgacgtttacacccgtccgtagcgatccgcgaaacgcaccacatcatcctcttcgagataagagccggagcgcacttcaattaaatcgagcggaattttccccgggttttccaggcaatgcgtcgcccccagcggaatataaatggactcgttttcaccaagcagtttgatatcaccatcaatggtgacttttgccgttcccgcgacaaccacccagtgttccgcgcggtgatggtgcatctgtaccgacaagccctcgcccggtttcacggtgatgcgtttcacctggtagcggtcgcccgcgtcgatagagtcatatttgccccacggacgatacacttcgcgatgcacccgatgctcatggcgaccatcggctttgatctgctcgaccacttttttcacatcctgtaccgcgttacggtcggcaatcagcaccgcatctttggtctgcaccactaccagatctttcaccccgacggtggtgaccaggccagattcagcatacacatagctgttttcagttttgtgattaatcacatcgccgtggcaaacgttgccctcggcggtgtgggcgctgatctcccataatgaagaccaggagccaacatcgctccagcccgcatccatcggcaccacaacagcatctgccgtacgttccatgaccgcgtaatccaccgactcttccgggcaggcgagaaacgcttcttcatccacgcgaataaaattgagatccggatcgacggcgctcatcgctttttcacaggcatcgaggatatccgggcgatattttttcagttcttcgagatagcgtccggcgcggaacaggaacataccgctgttccagtaatattcgccgcttgccacataggcctgagcggtttccagattcggtttttcgacaaactgcgccacttcaaaggccaccatatcctgctcacccgcagacacttcaccgcgacgaatatagccataaccggtttctggtagatccggcacaatgccgaaggtcaccagcttgcccgcttcggcatatggcatggcattacgcacggcggcacggaacgcgtcttcatcggcaatcacatgatccgccgccaataccagcattaacgggtcgctctccgggctatgacgttttgccgccagcgccgccagcgcaatggcaggtgccgtgtttcgccctgccggttcgagaataatgttctcggtaagtttgttcagttgacgcagctgttccgcgacaataaagcggtgctgctcattgcaaatcaccaccgggctttcgcactccacgccgttcaggcggcagatggtggtttgcagcatggtgagatcgcctttcaggcataaaaactgcttgggataaagtacgcgggaaagcggccataagcggctaccggagccacctgccatcacaactggatagagtttcgactgcgccataattatccccgaatatcatttataaattgacgtaacacgttctctttatcgagcgtgcgttcggcatattcacgtgccaccgtgttgtgtttgggcagcaggagcgcctgacggatccccgccaccagcgcctcgaccgattccggttcaacgcaaaccgcaatgcccggaaaggtttcgcaaagctgccccagttctgtgtaggcttcagcagtaatcaccgcgttaccgcctactgccagaatattggtcagtttcgacggcaatacggcatctgccgcgccgcgtttttgcaccaccagatggcaatcgcccatcttcagcagtgcgggtaaagcgtcatacgattgcagcgggaaaaattgcatgttgcgcagtccacgctgctgcgccattttttccagccgcgctttgccgccgccctgcccgacaatggcaaaaatcagcggttcatcgcgcagacgatcggcagcttcaataacgttttccagcccctgcttttcaccaatattgccggagtaaagaatgatttttttgttatccggcaggtcaagctggttacgaagggcatcaacatcggcatctgcaacatgctgaaaacgggcaatttccgaccagttggggaagaagatgacgttttccgccgccacgcctttttcgatggctttattcatcatcgaacgcgaaatcgtggagacgttatcgacgttatgcagtccgctacgttcgaacgccgttgccagctgtgccactttgccgcctttgccttttccggcaaggcccagccccagcatggcgtccacttcgtaatcctgaatatgcagcacggtacgcgcaccagagagtttcgccagcaggcgcattcccggcgcgcaaaacagcgttggcaccacgccaataatgcgatccggcttccagcgacgttgcgccatcagcggaaagaaactgctgacggcaaaactgcccagatgcaacaggcgtttcagggtgctcggctgttttggcacatacagcgggcagcgccacaccgtggcggccccctcttctcgtttgtagcgccaggcggaatagttctcgcccacctgccattgcgggtagtaaggcggtgcggtaatgacccgcacctcatgaccttgtgccgccagccattccaccatctcgccggtgtatttgccgatgccggttaactccggcgagtagttaatgccgtagaccagtattttcataatccgggtactccggtacgcttctcagcgagaaaataggcgcggctgttagcatgaacattatcactggcgagcagcgcgtccgacgtcagccagcggtaatcgtcatgctgctcatccggcagtaacagctcttcttccgatactctgaagcgaaaaccgagcaccacatagtgagtggtgaaatccgtgccagagaagttatcgtcataaaagtgctgccagacaccgtaaaactggcctgctgttatcggcaaacgcagccccagttccgccatcgtcagccgctcaaatgcggcttccagcgtttcgtctttctgcacgcgccctcccggcacaaaccagtaaccctgcgccgggcggttggttcttttgccaagcagaaactcgccgcgactgttctcgacaataaagtcgagagagacaagcggagtggagcgcactaccgtggcaaagtcttcctgacgtaaaaacatcattacccccgaaagcggtcttgattctcaaggaaccactggtaagtgctggcaagccccgcttccagtgagatttcgtgataccagccaagctgatgcaggcgcgtcacatccagcagtttgcgcggcgtgccatccggtttgctggcatcaaaaaccacccggcctttgtaacccaccactttggcgatggtttgcgccagctcgcggatagtgcagtcaacgcccgtgccgacgttaatgtgcgacaacatcggctgggtgttctccagccagacttcatgcgccagctccatgacatgaatgctcgccgccgccatatcatcgacgtgcagaaattcgcgcatcggtgtaccgctgccccataccaccacgtccggcgcattctgtgccgtcgcctcgtggaagcgacgcagcaatgctgggatcacatgcgaattactcgggtggaagttgtcgtgtggcccgtacaggttggtcggcatgactgagcggtaatcgcgtccgtactggcggttgtatgattcgcacagtttgatcccggcgattttggcaatagcataaggctcgttagtcggctccagcgtgccctgcaacaactcgctttctgccatcggctgttttgccagtttcgggtagatgcaggacgatccgagaaacagcagtttgttcacgtcgttctgatgcgcggcgtgaatgatgttgctctcaatcatcatgttctggtagatgaaatccgccggataggtgttgttggcaacaatgccgcccactttcgccgccgccagatagacctggtcaatacgttcgctggcaaagaaatcatgcacggcgcggctgtccagcaggttcagctcgtcgcgggtgcgtaataccagttccacatcaccgcgctgttcgagctgccgcctgatggcggaaccgaccatcccgcgatgaccagcaataaaaactcgttgtttactcatgcttatgactccagcgcgatcgccacgtcgtagccgtgagatttcagcagagagtgttttttcgccgcttcgaggtcattagccaccatttcagacaccatctctctgagggtgatttccggtttccagcccagtttttcgtgcgctttggtcgggtcgccgagcagcgtttcaacttcagccggacggaagtaacgcgggtcaacagcgataatcacatcacccggtttaacgcccggcgcgtcatgcccggtgacggaaaccacaatgcccttctcttcaacgcccgtgccttcaaagcgcagtttgatgcccagctgtgctgccgccatttccacgaactgacgcacggagtactgaacgccggtcgcgataacgaaatcttccggctgttcctgctgcagcatcatccactgcatttttacgtagtctttggcgtggccccagtcacgcagggaatccatattgccgaggtacaggcacgactccagcccctgggcgatgttggcgattgcgcgggtgattttgcgggtaacgaaggtttcgccgcggcgcggggattcatggttgaagagaattccgttacaggcgtacatgccgtaggattcacggtagttaacggtgatccagtaggcgtacagtttggcgaccgcatacggagatcgcgggtagaacggcgtggtctctttctgcggaatttcctgcaccagaccatacagttcagaggtggaagcctgatagaaacgagttttcttttccagaccgaggaagcggatcgcctccagcaggcgcagcgtacccatcgcgtcgacgtcagcggtatattctggtgactcaaaagagaccgcaacgtggctcattgcgcccaggttgtacacttcatccggctgtacttcacgcaaaatgcgcgtcaggttagaggtatcactcaggtcgccataatgcagatggaatttcgggttgcaggtgtgcggatcctgataaatgtgatccacgcgctcggtgttgaatgacgatgcgcgacgcttaataccatgcacctcgtaacctttttccagcagaaactctgccaggtaagaaccgtcttgtccggttacaccggtgatgagagcgacttttgacatgtattattcctctgtatttttgaatttattcagtttcaacgcgttcgcgtatcaccactgcgggattcccccggcaaaccacatttgccggaagcgatttaaaaacactgcttcgtgcacccacgacggtgccgtcgccgattgtgacgcctggggcaacaaagacatcggttgccagccagcatttctcgccaatcacaataggcgtggcgttaatggtgaaatgttgacttgcatggtcgtggctaccggtgcataaataacttttttgcgatatcaccgaatgtgcgccaatggttatttcaccgagggtatataaattgacgtcatcgccgacccacgcgtaatcacctaaggttaatttccacggataggtaatttttactgacggacgaataactacgttttttcctatttttgctccgaataaacgtaataaaaaagcccgccagcgatacaatacttgtggcgaccaggcaaatattgttgcctgtactgcccaccataattgcactttaatagcgttgccgccccggaaccctttcggcaccgagaaaccgcttaaatcttgcattggttttccttatattcagactttgttatataaggctttcgtctttgaggtagtacgttggcgtaaatgccaggataattcagcccaaaagccaggcacatgtaatatttgtcgttggacttttttcgcgtcagcacacaattccatattattggtggtagataccccacccatggaaaattcagacaccaggccattgagttttttaaatgcataaccggctttatacattttggctgccagcgcgtagtcggaagaaactttatattccaggtcataacgccattttttcaagccggatacagggaaaaatatcgcctgatgactggcgggcaggctgtgataaatataccagcccggtttggcgctacgtttaattttatgcccgtcgccaaaatccagcagcgcatcgccggtgatcatcacgttatctttttgcatttttaacttacggacaaaatttgcggcattctgatgaaaaatatcgcccgaattgagaaacaacgcgaacttgccttgtgccatcgcaatgcctttgttcatggcgtcgtagataccgttatctggctcgctgacaaagcgtaggttaaagataccattgagattttccagatactcacgggtgccgtcgttggaaccgccatcgacaacaatccattcgaagctgatatcttccacctgcgccagatgcgccagcgaggcatgtgttttgactatcccttcgaggttacgaaacgcgacagtgattatgctaagcaacatgttcttattcttacctcgtaatatttaacgcttttcgcaaaataaacggacagacgattaaaaatgcatattccgggctaaatatcgaaccggtaaaaaacagcgataccggagtaaaaagatataattgcacgcgaaaattgcggttatcaccaaaagcgttgatcatcatttttatcactttccccatgtaccacagtgataaaaacaccgcgaaccaggaaaaataaataatcagcagatacaaaccattgtctatggtttttccgacatccgcaccgttaaatattccgaatgatgcgacatattcataaagtgagccaaatctgactacaccgtcaatatgggtcaaagaataaccgaccatcaccagcggaccgacaatacgataatatgatgacgatccttccgtacctaaatcgcccagacgggtggaaatataaggaaacgcgattaccacaccaaccaggaatacagccagagaaatcaatgctaacggtaactttttcttaatcgcctctttattcagatattgaaatgcccactccagcaaataaaacaggataaaggtcataacccctgaaaacgatccggataatattatccctgcgagaatcatagcatctgttttaggcgttttgataccaaactgtttgatgctgagccaaattgagattaatgccagagcgaaaaatgccggttcgaaataaagtgctgtcgtgcgcttgccgccgaatttaatgaaattcagcacatagctgttgctgtaaatcagatatttcgaaatcgactccataatactgctgccaccggtgaggataatttgtgccatctccaccgccgccagcgccaccaccagcccgaccaccagataaaagaaacgtaatatcttgcgatggttgtgtggcgaaattgttttaaaacgaatactccacaccatgccaataatgatcacaatatagacaaacagcatagttgaagtgacgtatttactggcatccagcgactgaccaaacagatagttaaacgccgtgagtcccgcgccaatccctaaggcaatcatcaattttttaacgctgatgcgttctaaaaacagcagtaacaagacaggtaaaaaagtgacgatggtgatggggaaactttcgccaagctgggcgattttgacgttaaccagcagataaatcagcggcagcaacaggtagctacagattctgatagaagttgacatactcctccagcatctgttgtccactgtaggcggcgcggctgcgttggctgaactcagccagcgtggtaccaaatatcgcctgcgcgatttccggtttgcttaactgcaccagttgcagcacctcttcttcgctgacggttttaccgccggatttttgcaacacttcccgcgccgcatcgctatgggtggcaatcaccggcacgccaatcgatagcgcctcacacaaaatcagcgggtagttatcgacgcgagaactgaataccagcgcatccatctgattgagcgcgctcatcagcttacgtttgtcggtttcaaagccgtgattaaccacgttgccagcggtgaacggcgagaacttaccaaaggtatgcagttcaattttgtcgcccagcgccatcatctcgcgtaccagttgctggttagttttgccgtcgtaacgcagatcatgcgccaccaccgcgattttcggcttgccctgggtttcgcgcaccggaggcaagtccgccagaatcgcttcagttgccatatcaatgccattattgataatccggcaacgccctggaccgtacaggctattgaaagcgtcagccacatgctggctgggggaaataaactgacagcccagcgccagcatctcacggaataactggcgtttgcccgccaccagttggtgtgcgcgatcaatcttcaccggcggatagttatttaaggtcgggcatttctggcagcctgttttccagccttcgcaaccgtcggtaaaggcgcagcgtccggtaacactccagtggtcgtgcagcgtccagaccagagtgacgtccggtttatggtttttcactttttcgcaaaagcgcaccacgctcttaagatttagccagtagctgtgcagcacatgaaaatgcaggaccaccggacccgctgtgcgagtaatggtgcgatataactcattgaaattgccaaacagatcgcgattaaacagacgaaacagagcaatattcgccatcgcggtcatccgcggcgtatgtttgatgacctgcggatagttctgatggctgacgctctctttgccgcctttgccgtaaccgtagacaaaatgtgacgccagcccctgttgcagcgcacgctggtggagatctaacgccacacctgctgccccgccttccgccagtcgcacattaaattgcaaaatattcatttaattaccttcactcgcgctttttctcccaccaccagcgcgttgtccgggacagagtcgagcaccacgctgcccgcgcccacggtgacgttgttaccaagcgtgatatcaccaagaataatgacgttggcaccgagttcgacgccgttgccaatgtgtggacatgccatgttatcggcaccacgattgccgatagtgacgccgtggcgaatggtaaaatcatcccccgctaccacgtttttattgatcacgacggcgtaaccgtgatggatagtaaagcggcggccaatggtcgcggcagcctggatttcataaccgaaaaagcattcggtgataatgcgatacagcaccagcagcggggccgcccacagattgttgaggacgttctttttgcgccacaccgaacaaaaatgagcaacacgataggcaagaaccatgcagcacgggcgtaaactccagctgttggcgcgcagatcttccagcatctttagcgcccccgaataccatcagccagacgtttgccgttacgcaccgacagcagcgtcagcaaagtgcgccaggtcatacgtttattgcggatctggtagagggtaaacagctgatattttttgctggcgcggtcgaatttgtctttgtgcttgcggtaaaagtggaagtacccggagaattttttcggtgacgaggtgatctgcatttcaccgtgattgatatgcaggatctgcgtcgcctcttctactttccacggttcgccgtactccaccaccatccgcaggaagatgtcgtaatcctgtgccgctttcagttcggtatcgaacaaacactctttgaaacgccatgcccaggtaaagacctggttgccaatgatattgcgtttgtagaacaggcggcgtgaatacggcgatttgggatacagcggcaagcttgccggttgggaatagacttcgccctggcaaacgtagtcgttagcgtacaaaaaggcgtgtgtgaccagttgctgtttatgggcgaggaagacgctcagacggttgggtgtccattcgtcatcgtcatcaatcccggtgatatattccccttgcgccagcataatcgcctggttacgtaccgcgcacgccccgctgttaatgtcgttgtgaatgtaagtgatacgcggatcgttgagggcggtgacgtactgttgcagttgttcccaggaggtggagcaatcatccacgatgatcatctcccagttgctgtagtcctggcgcaaaaccgattttattgcccgaatcgccagttgttggcggttccaggtcggcatatagattgagatcagcggattgtttttcataggttgttctcccggcttatgagctggtttgcttgccggatgcggcgtgaacgccttatccggcctacggggcggtgcgaatgcaggcgtcgttatttcgcatccgacttatattcgtattcgtaatagccataatcctgatacgcgctggcgcggcggaagatggagttcagaatcacccctttcaccggaataccgttttgctcaaagcggctcagactggtttccacttctttcaatgtgttgaccgcataacgcgccaccattaacgtggttccgacatgacgaccaacaattgccgcatcggtcactgccagaatcggcggcgtatcaatcaacaccaggtcatagtttttactcgcccagttcaccagttcggcaaagcgttcgctcatcaacagttcagaaggatttggcggcacctgaccgcgcgggatcaggtcaaatttggcaatagaggtcggtttagcagcggtagtaatatcgccctgaccaatcagaatttccgacaggccattaacgttattagtgcccaacagctcgtgggtgtagcctttgcgcatatcgcagtcgatcaacaacacgcgtttattggtctggctgatcaccgccgccaggttggcgcagacaaaggttttaccaattgacgggctaaccccggtcatcatcaacacattgttctgtgcctgcatcatcgcgaagtgcaaactggtacgcagactacggatggcttcaatcgccagatcggttggattccccaccgccagtagctggctctgtttatagcgtttaatccctttgatggttttgacgctatcacgcgctttctgccattccgacagcgggatgctggcatagacgctaataccgtgttcttccagtacttgcgggctttcaatgccgcgattaaacaacgagcgcagcagcacacccacgatagaaagcatcaggccaaggataatcgcgccgaggataatcagccctttcttcggtttcagcacgccaggctgagtgattgccgggtcaacaatgcgcacatcgccgacggtgctggcctcggtgattttcagctcctgctctttattcagcagttgcatatagacctgctgaccagactcgacatcgcgggtcagacggacaatctcctgctgggttttcggcatcgccgttacgcgaccgttaagtttggctttttcgtcttccagcgcctgacgtttctccagcagcgtgcggtacgccgggtgaactttggtgtacagcttggagatttccgcctctttaaaggtcagttcgttcaactgcgcatcgatgttcaccatcgaatcgagcaccgcttttgcttccagcggcagatcaacagaatctttatcctgacggaaggcattcagtttgttttcggcaacatccaagcggctacgtacttccggtaactgttgcgcgaggaaggcgaggcttttcgacgcttccgccgatttgcgctcaatattttgttcctgatagttacgggcgatgctgttaagaatgtcgcggatctgttcacgatcttcaccggtataagtcaggctcaaaacgccagcgtctttgccgttctccgttaccgtcaggctgttttgcagttggttgatcatccccagcgtggagtatttggtgacggtaaactcactgcccgggctggcgtgaatggcttcaaccatcagcgtgacgccttcttttttcagcatctggcccgcttgcccccgggcgctaaagccgccgtcgctgctcagggtgtagtttttgttgtccagcacattaagcgtaaacacctgatccgccatctctttcgggcggttaaaggtggtcactttcaccgtctcgttctgacgtcccatcaggcgatcccagcccgcaccgaaaatcgggaacgtgtttttgctcactgcaatatcgaggtcgagatcgtccaccgttttaccaagcaccagacgcgaacgaatcaactggatctcggcgtccgatgcaggcggtttgttggctaatgccgaaccaatgtcctgcactaacgaattgccgctgttttgctcgatttgtaccagtgcgtcggcactataaatcggcgtggcgaagaaggtgtaaaccacggcacagagggcgaatacggtggtgatgccaatcacccaccagcgcgcttcaatgacggtgccgaccaggcgaccaatatcgatttcatcactgcccgttaccggagcggcatgttgttttactttttctgtcattcttatacctgctctgcgttcaatgcctgcgcccactggcgggcagaccgttcaagtaatgtgtacaccgctgcaaacgtttcccggcttttgcgatacggatcggggatttcacattcgttatcccagtgaccaaacagcatcactttgccgcgcatctccggtgccatctcgcataagcgttcgatatggcgcttttccatggtcaaaatcaggtcgtagttgcgacacagacggcggctgatttgacgggcacagtgaccttccagagacagttgatgttctgcggcgacgctgatagcggtaggatcagcgcccttaccgaccagcgcgccgagtccagcggactccactttcagctccgggtgataacgttgcagtaagcgttccgccgtcggggaacggcaaatattgccgacacagacaactaagatgttgttaaacatgacgattaccagttatgaatgtcgctggctgtatccgtcatgtaacggacaccgctaatagttggcagcaactgattgatcagacggttccagcgggaaaccggggcggtggtgacatacaccacgtcataaggttgcaggcggaattctgtcgccatcaccagcgacgtggcatcggacatatccagctggtagatattggcaatcttgccgttacgcccgccctcgcctttcagcggacgaatgacaaagatgccgctggcgttggaggtggtcatgtcgatgccttcagcattgcccagggcttcagtcagggtcatgccgctaaagtccattttcagggtgctctgtttcttcacttcacccatcacaaatactttcagatcatcattacgtggcacgtagagaatatcgccggggtaaagcaggcgattctggttgaggtcgccgttttgcatcagcgcctgcaaagaaatgcgctcttcacgaccattgtgtgttagcaccacgttgcgccagtcagcggtgtcggtcaggccacctgcggcgttgatggcgtcgagaatagtcagtggcacgttggtgatcgcctgttgaccggatttattcacctgaccggagatataggccttttgtgagcggaaggcggcgatattaacgtccacctgcgggtcagcgatgtacgtcgctaagcgcccggtaatatcactgcggatttcagcgagcgttttcccgactacgtggaccttgccgatatacgggtaaaacatagtgccgtcaggctgtacccagttgccggtgtcgctggagctgcggtactgaccggctggcgtggtgagttccgggtgatcccagacggtgacattaagaacgtcccccggcccgacgcgatactggtaattcgcgatctcactttccagcgtcatattggggcgcgctacattcgggcgtgggcgtaattggtcaatcaggcgcggggtcagcggataaacattcaccattttgtcgagatcgaaatcagcgtcctgctgtttgatgacgtctttgcccatcgtcgacatattgctgcccggaagtactgtgcaaccgcttatcaaggttactgacaccaataatggcatcaatttcattttggatttcatcattgtttatttatcactttggcagagtaattatcctgtgcactattaatagcaatgtcgccatgcacatttaccttgcagttaattgaataaaaatttaactggcatcagtcctaaaaaaattgatttcatccgcaggctattgacagaataattcagactggtctttcaggcatccagacacgctaccgcccctggctttttagctaccaatacactgatttagtttaatttttcacaccctctcagcatgcagtcgttgatgagaaagggttattacggaaattaacttccgaatataaggtgacattatggtaattgaatattggctttccaataatgcaggaggaagtgttacagctaacggaatagcaggcaagataacaattcggtaattggctatttttaagaattatattaagtgtcattcaatatggtttttaggagtttctttaggttgacaatatttaatatagtgtctccacatgcgatatttcttaaataatgttttattattaccacttttaattcagggataatgtgaggttattaccctcaaataatatgagataaatagtgctgcaacattgcatttttgccccgatttatccatgatcgaattgtgacatttgtcatacaacgaataggttttgtacttactatggaatggattgccgatccgtctatctgggccgggttaatcacgctgattgtgatcgaactggtcctcggcattgataacctggtctttattgccatcctcgccgaaaaactaccgccgaagcagcgtgaccgcgcacgggttaccgggctgctgctggcaatgttaatgcgcctgttactgctggcgtcaatctcctggctggtcaccctgactcaaccgctgttcagcttccgctcgtttacctttagcgcccgcgacttaatcatgctgtttggtggtttcttcctgttgttcaaagccacgatggagctgaacgaacggctggaagggaaagacagcaataatcccacacaacgcaaaggtgcgaagttctggggcgtggtgacgcaaattgtggtactggacgccattttctcactcgactcagtgattaccgccgtcgggatggtcgaccatttactggtcatgatggccgccgtggttatcgctatcagcctgatgttgatggccagcaagccgttaacgcaatttgttaacagtcacccgacgatcgttattctctgcttaagcttcctgttgatgattggctttagcctggtggcagaaggtttcggcttcgtcattccgaaaggctacctgtacgctgccattggtttctcggtgatgatcgaggcgctcaatcagttggctatctttaaccggcgacgttttctttccgctaaccagacgctgcgccagcggactaccgaagcggtaatgcgcctgcttagcgggcaaaaagaagatgcggaactggacgccgaaaccgcgtccatgctggtggatcatggtaaccagcagatctttaatccgcaggaacggcggatgattgagcgggtacttaatcttaaccagcgtaccgtcagcagcattatgacgtcgcgccacgatattgagcatatcgatctcaacgcgccggaagaagaaatccgccagttgctggagcgaaatcagcatacgcggctggtggttaccgacggtgatgacgcagaagatttgctcggtgttgttcacgttatcgacctgctacaacagtctctgcgcggcgaaccgctcaacctgcgggtgttgattcgccagccgctggtgttcccggaaaccttgccgttgttacctgccctggagcagttccgtaatgcccgcacgcactttgcttttgtggtggatgagtttggctcggtggaagggattgtgacattaagtgacgtcactgaaaccattgccggtaacttaccgaacgaagtggaagagatcgacgcccgccatgatattcagaagaatgcggacggttcctggacggcgaatggtcatatgccgctggaggatctggtgcaatatgtgccgctgccgctggatgaaaaacgtgaatatcacaccattgccgggctgttgatggagtatttgcagcgtattccaaaacctggcgaagaagttcaggtgggggattatttgcttaaaacgttgcaggtagaaagccatcgcgtgcagaaggtgcagattataccgctgcgtaaggatggcgagatggagtacgaggtgtgatggtatcggtcattttacccaatagccgaaaggaataagatgagggaaccgcgccatcggcgatttaccgccgggagcccgggttgccagggtggtggagattgagccaccctggcacgttcaccggcttgagcgttccatagtagcgaggaacatcaagtgaacggaacagccttcgatcttacatattcagaatataatgatgccgccacgaacgcctgatgcgacgctttacgcgtcttatcaggcctacaggactggtcacctggtaacctacatcttctccagcaacttcttcacatctttgccattacgggaatctttattccgctcggcccagtcattcaggcgacgtttcgcttcgtcctgtagatgtttgcgcagtaactgatccacttgcaggctgtaattgagttgctgccagttgccataaacccgcagcggtactggcgtttctttcaggaaatcaatcagtttgctttccccgttccagccacccacgacccgaatatcaaactgggtgtcgcaggtttgatctgccagattcaacatgccttcccctgtcagcgccagcacaggcgattgaccttgcatgtcgtttaacgtcacgacgccatccttcaacgtcaaatcggtggtaaagcggtcaagccgcgtcacgttatcaaagttttcagcggccttcacatcaccgccattacgctctaccgcttgctgaatcatctgctggaagttcatcccttccatgcgcgtgtcggtcatttcgacatgtgcctgtccttgccagttgtggcggaatgcgtcggcatctatgtcagcaccggagaaatcaccagccagtgacatttttccggtcaacgaaatcggatagttaaacgccttcagaatggtaccaatctcaacgttttccagccgtggctggaagtttatccgcggatttattgatgtcgcgtccagcgtgcccggcagtgaaacctgtccaccgttaagtttgccctgcagttgagtaatttccagcaaacccgacttgttggtcatttgcgtggcaacatctgtaaaattcattccgcgccagcgcacgttactggcctgcaacaaaatatcagccgtaaagccttgcagtccctgataggccggttcatcaatacgcgaagaaatgaccgggcgcggcaacgttgattggctctgcccctgctgcgcggcaccgttttcaccattcgcggtttcattaagcgggatgaggttgtcaagattcagttgcgggaattgcagcctcagctgccattccggtttctctgtcagcgtaacctgtgcttgcccgcttagcgtactatcattggcggtcaaactaatttggttaaatgaaaggcgtttatgtgactcctgccactgggcctggaaactcccctgcccctgaataccttgttttggtaaatcggcaccctgcaactgccagttaatttgttcaatagccgccgttaaatcatgcggataatcagaagcatctaccgtaccgttaagggatatcgtgagatcgcgctgatcgcgattaacccgcccggagaactcaaatgaaccacgatgttggggatcttgttccatttgcaggcgaatattgcggattgtcacctgctcgtcatcttcatgctggaacaccagcacgctgtccgccaccttaagactggatatatcaaacgaccatccgcgatcgtctgacagatccggcaaggtattgtcgcgcggtgcaaccggagcgtcttcactgcgcaccgcttccgtctgcggcgtcagttggatcactgccccttttagcatcacctgcttaacgctcagttgatgactcagtagtggtaaaagcgccacgtccagacgcatgttgtcggcgcgaaccagtggctggcttgcgccctgggcggtgagagacattcgcccggagaggatactaagctgcggccagacgtgccaacgcagtggcccgtcgagctgcaattgataaccgctacgtgcagcaacttgcttgaccatatagtcgcggaaatcattcggattcaccagcaacactaacgcagataacccggccaccagcacgaccaggagtatcatcagcgtcgtcagaaatcgtctcatggtatcctcaatgggcctgaattagtctttatcgattcggctggctaccgcgccctgctggttgcgatatttcgcatcttcacggcggttgtaaggtcgcaccgccgggccggaaagcggctcaaagctcagcgcaccaattaacatgcccggacgcagcgccagcggcagcttaccggagttgtagaactccagcacaatgcaaccagaccagcccggatcgatgcggtgcgcggtgacgtgcaccatcagccccagacgcgccagtgaggaacgcccgtccagccagcccaccagatcggctggcagcgtcaccgactccagcgtcaccgccagcgccagctctcctgggtgaagatagaacgcctcgccctcgtcgagaacgatctcatcgctcatcacgcggtcaagcgcggcgctcacttcatctttgggaccgctcagatcgataaacgctgccgtgtgaccacggaaggtacgaaatttattgcccaggcgtacatccaccgtcgcgccgttaatacgctccactggcggacgtgggttgatcgacaaacggccttcatcaagccaggcttcaatatctcggtcacacagacgcatggcattttctcctttcgcgcatcactcccttaacgccaattacgtcaagggcatactaggttatcactgaacggtacacaatttatcaagcttattcaaagaactgacttattttcgctttcaatatatcgatcgcgatgcggtttttcccgccgcgcggcacgataatgtccgcatattgtttagaaggctcaatgaattgcaggaacatcgggcgcacggttttttgatattgcgccatcactgaatccattgaacgcccacgctcgttaacgtcacgcttgatgcggcgcatcaggcagatatccagcggggtatcaacgaaaatggagaagttaagttcgtcacgcaaacgcgcatccgtcagcaacaaaatgccttcgagaatgatgaccttcttcggctcaaccgtcaccgtttctttcatacgcgtatgttcaacatagctgtaaaccggcaggtcaattgccgagccgcgtttcaacgcttgtaaatgctcaagcagcagactgtgatccatcgcgctgggatggtcgtagttggtcttaacgcgttcttccatcgacagatggctttgatctttgtaatagcagtcttcgggaattacgccgatgtgttcatcaccgacttgctcacgcaattcacgataaagggtactggcaataagactcttgccggaagccgatgcgccagcgataccgataatgacgcactgatgagactgatcagtcatatatttagcgacctgattaacctggatgttaggaagggggcgacgaagcgccaaacgcggcaattatagggatttcatccgtctgataccagtcgaatagcgttgccgcgcgctcagagttaattgttgacaaagaattcccgggggcaaattacgttgatcagttttatgtaaggtaaaaaatgttaaacgcagttgcgcaaattatccgcctttacgtcactttatgagcaattcgcatataaaatgtaaaacttttgtactagcataaacacagaaacgaatactggcgaccaggtcttgcggataaagcggtaatgagcaaacaatcacagcatgtattaattgccctgccccacccgctgcttcacctggtcagtttaggtttagtctcgtttatctttacccttttctcgcttgagctttcgcagtttggcacccaactcgccccactgtggttcccgacgtccatcatgatggtggcgttttatcgccatgccgggcgcatgtggccgggaattgcgctgagctgttcgctgggaaatatcgccgcatccatcctgcttttttccaccagctcgctgaacatgacctggacgaccatcaatattgttgaagccgtggtcggggcagtgctgctacgtaaattgctgccgtggtataaccccttgcaaaatctggctgactggctgcgtctggcactcggcagcgccattgttccgcctctgttggggggtgttctggttgtcctgctgacgcccggagacgatcctctcagggcatttttgatatgggtactgtcagaatccatcggcgctctggcactggtgccgctgggattgttatttaaaccacactatctgctgcgccatcgcaacccacggttgctttttgagtcgctgctcacgttagccatcacactgacgttaagctggctttcgatgctgtatctgccgtggccttttactttcattattgtgctgttgatgtggagcgccgtgcgtctgccacgaatggaagcctttttgatcttccttaccacggtgatgatggtgtcgctgatgatggccgcggatccctccctgcttgctacgccgcgtacgtacctgatgagccatatgccgtggctaccgtttttgctgatcctgctgcccgccaacatcatgaccatggtgatgtatgcctttcgtgcggaacgcaaacacatttccgaaagcgaaacccactttcggaacgcgatggaatattccgctatcggtatggcgttagtgggcaccgagggacaatggctgcaaaccaacaaagcgctctgccagtttctcgggtacagtcaggaagagctgcgcggactcacctttcagcaactgacctggccggaggatctcaataaagatctccaacaggttgaaaagctgataagcggtgaaataaacacctattcaatggaaaaacgctactacaaccgcaatggcgatgttgtctgggcgttgcttgccgtctcactggtgcgccacacggatggcacgccgctctattttatcgctcagattgaagacattaacgagctaaaacgcaccgaacaggtcaatcagcaactgatggagcgcatcactctggctaacgaagcgggcgggattggcatctgggagtgggagttgaagccgaatatttttagctgggataagcggatgttcgagctgtatgaaattcctccacatatcaaaccgaactggcaggtgtggtacgagtgcgtgctgccggaagatcgccagcatgccgaaaaagtgattcgtgattcgttgcaatcacgctcgccctttaaactggaatttcgcattaccgtaaaagacggtattcgccatatccgcgccctcgccaaccgggtactgaataaagaaggcgaagtcgaacgtctcctcggcatcaatatggatatgaccgaagtgaaacagcttaacgaggcattgtttcaggaaaaagagcgcctgcacattacgcttgattccatcggtgaagccgtggtctgtattgatatggcgatgaaaattacctttatgaatccagtggcggagaagatgagcggctggacgcaggaagaagcgttaggtgttccgctcctgacggtgttgcatattacttttggcgacaacggaccattaatggagaacatttacagtgccgacacctcacgttccgcgatcgagcaagatgtggtgttgcactgtcggagcggcggcagttacgacgtgcattacagtattacgccgttaagtactctggacggcagcaatattggttcggttctggtgattcaggacgttaccgaatcacgcaaaatgctgcgccagctgagctacagcgcctcccatgatgcactgacgcatctcgccaaccgcgccagttttgagaaacaactgcgtatcctgctgcaaacggtaaacagtacacatcagcgacatgccctggtgtttatcgatcttgatcgctttaaagcggtgaatgacagcgccgggcatgcggcgggtgacgctttgctgcgcgaactggcgtcgttaatgctgagtatgctgcgttccagcgacgtgctggcgcgactcggtggggatgaatttggtctgctgctaccagactgtaatgttgaaagcgcgcgttttatcgctacacgcattatcagtgccgtgaatgactatcactttatatgggaaggccgtgtgcatcgggtaggtgccagtgccgggattaccttgattgatgacaacaatcatcaggcggcagaagtgatgtcgcaggctgatatcgcctgttatgcctccaaaaatggtggccggggccgggtgacggtttacgaaccgcagcaagctgccgcacatagcgaacgggcggcgatgtcgcttgatgaacagtggcggatgattaaagagaatcagttgatgatgctcgcccacggtgtcgcttcgccacggatcccggaagcgcgtaatttgtggctgatttcacttaagctctggagttgcgaaggcgagattattgatgaacaaacatttcgtcgtagcttcagcgatccggcgcttagccatgctcttgaccgccgggtattccacgaatttttccagcaggccgcaaaagcggttgccagtaaaggcataagcatctccctccccctttccgttgccggtttgagtagcgccacgctggtgaatgatctgcttgagcagctggaaaatagccctctaccaccacggttattacatctgattattccggctgaagcgattttagatcacgcagaaagcgtgcaaaaactgcggctggcgggatgtcggatagtgctcagccaggtgggccgcgatctgcaaatcttcaactcgctgaaagcgaatatggcagattacctgctacttgatggtgagttatgcgccaacgtgcagggtaatttgatggatgagatgctgattacgattattcaggggcacgctcagcgactcgggatgaaaaccatcgccgggccagtcgttttacccttagtgatggatacgctttctggcatcggcgtcgatctgatttatggtgaggtgattgccgatgcccaaccgctggatttgctggtgaatagtagttatttcgcgattaactgaggcgtgcttccccatcgcctgatgcgacgctaacgcgtcttatcatgcctacaaatcgctcattccccaggccggataaggcgctcgcaccgcatccggcgaccaacgtcatgcttcgtctggttgccagccttccgtataccagatatgcaacagcgcataagaacgccagggcttccagcgctcggcataacggcggatttgcgccggtgtcattcccggaaatcgctgtttaatcagataatcatccggcaggaaaacatctttcgcctgccagccacgcaaagcaaaataattcgccgtccagcgcccgatacccggaaaagtttgcagcgttttcatcgcctgctccacatcgcccggtattgtcattggtaaggtgccctccagcgccgcatttgccagatgaatcagcgcctctgcccgtttcaacggcatacctaacgcttttaatgcctgcgggtctgctgctgccagccgctgaggcgtcgggaagcagatatactccggaaaatcatccagccgttcgccataaagctgtgccactctggcggtcaattttgccgccatcgccacgctcaccagttggcctaaaatcgcccgcacgccctgctcaaaagcatcaacacagccgggtaaacgcaatccgggccgcgccgcgcctaacctgcccaacgcaccgttaacaatttgtgggttacattgcagatcaaacaggcggctcattttcgccagacactctgcggcaacaggttctaaacctgcacttaaatttatgtgcagagtatggcgggctatatccggaatagcagtcaccacgccgcgatattcgcccaccgccagactacgggcataataactgtccgcgaccgtttccacactgctcaccgcacgggcggcgagaaatcccaacatccacgaccagtcatacggcggctgccagttcagggtatacatcgcatctccttattcatccgctttcagcataaacgttattcagacgctgcgctttgctttcatattccggttgtcgcgacggcaacatttcgctaaagtcacgccccttcttcaccggcatggggattatttcgtgtttattggttttgattacggtacagcaaactgttcagtggcggtcatgcgtgacggtaaaccgcatttgctaaaaatggaaaacgacagcacgctgctgccttcaatgctttgcgcgccaacgcgtgaagcggtaagcgaatggctgtaccgccatcatgatgttccggcagacgacgatgaaacgcaggcgctgttacgtcgggcgattcgttataaccgcgaagaagatatcgatgttacggcgaaaagcgtgcagttcggtctttcctcactggcacagtacattgatgatccagaagaagtgtggtttgtgaaatcaccaaaatcgttcctcggtgccagcggcttaaaaccgcagcaggtagcgctgtttgaggatctggtctgcgcaatgatgttgcacattcgccagcaggcgcaggcacagctgccagaagcgattactcaggcggtgattggtcgtccgatcaacttccaggggctgggcggtgatgaagcaaacacccaggcgcaagggattctggaacgcgcggcgaagcgtgccggattcagggacgtggtattccagtacgagccggtcgcggctgggctggattacgaagccaccttgcaggaagaaaaacgggtgctggtggtggatatcggcggtggtacgactgactgttcattgctgctgatggggccgcagtggcgttcgcgtctcgatcgtgaagccagcctgctgggtcacagtggttgccgtattggcggtaacgatctggatatcgcgctggcgtttaaaaacctgatgccactgctgggtatgggtggcgaaaccgaaaaaggcatcgccctgccgatcctgccgtggtggaatgcggttgccatcaacgacgtacctgcgcagagtgatttctacagtagtgccaacggtcgtctgcttaacgatctggtacgcgatgcccgcgaaccggaaaaagtggccctgttacagaaagtctggcgtcagcgtttaagctatcgcctggtgcgtagcgcagaagagtgcaaaattgctctttcaagcgtagcggaaacccgcgcctcactgccgtttatcagcaatgaactggctacgctgattagccagcgagggctggaaagcgccctcagccagccactgacgcggattctggaacaggtgcaactggccctggataacgcccaggaaaaaccggacgttatctacctgaccggcggtagcgcccgttctccgctgattaaaaaagcgctggcagaacagttgccgggcattccgattgcaggcggcgatgactttggctccgtcaccgccgggctggcacgctgggcggaagtggtgtttcgttaattgaaaaatggctcagcagcggcttaaatctgcctgcgcctgagccagtttttctgctgcctgacgtaacggttccatcaacggcatggtccgtgctggagcatgaaggcggaatcgctgcaactctgtcgcgccgactgtcaacgccgattccagccgatgtcgtttggcggtcattttcgccattaccgcttgtctgtctgctggcgttatcgcttcattcggcctgaacacaaaacggcgttcacagctcgctttccagtcgataaccgcctgggtcagatggtcgccaaaccctttcacttgcttaacgccacgacgggtaacatctgcggctgtttcaataccaaaagaccgtaacgccgctttacgcgcagggccaacgccgggaatagaggcaacatcaataaaaaatccctccagaaacttctgcttctgccgttcccttgcagtgtcatgaagtgctgccagagcgcgtttctcttcttccggtaacccgagaatttcgtccttcattttttcgagcatcgtccgtttggcgataaaaccttccaggccgcctacctgctggatctggcggactaaatggtcatagtccattttcgcacgattaaatgcctcacggcgttgctgaacttctgctttgtacgctttgcttgtcagactgccaataatccagatagccgccagcacaggaaccaaaataatataacgcggttctgcctgaaggccgcaaagcagcagcgataatgctgacagtgcgatctcaagcagaatgatgtattcgcgccgtaacaggcctaaaggaagcggcctgccagtcggttggaaatgatcgggtaatggcagttgcaatgctggcggtgctactgacgccatcaccatcgcccagactttcgccagcacaaaattcccgccggtggtaatgacctcttcgccgagatcaataaaatagataacaccttgattatccagcgcacaccacgggcagtcagtcaaatgagcggggtaaacatgcattgctgaaacgatacatttctttaactgttggcgtagagagtccagtgccgctacccacgctttagccgtcggacgcccggttgccacgccactttccgtgaatgcctgctgaaacatggcttcaacatcactcggtaacatcgatagcggaatagatcgtggcggcggttttaaaccacgtcgctgattatctgacgcgtaggcataacggaaatgggtaatatccgtctccagcgcattacccgcatcagagataagcggcacaccagaataaggatgccgcccaccaaacaagacgtgaaaaattagcaacgcaaggccaaaattatcgtgattttctgtgcgttcaaaaccgacaaatgatggcaaggtttgtagctctggcggcgtaaaatgcgacacgccgacttcgcataaatgcagtgtgccattggcgttaatttgaaaggagtcgctatcaatcagtaccactttgctgtcgcgacctaccataaaactgttctggtttacgtcacccacgacgtgcccgtgctcgtgaaccgtagcaaaagatgaagcaatattgcgcgcaacatagagtagaaaatcccacgcacaatgagggtaactctggcgacgatgtgccgggctatagatcatatgaatcggttctttaccagaaacttttggcatcataaaaccgataacttttccgcctcgtccaccgtgaagcgttgcctgcggccaggcgacataattcaacaactgcgcgtcagctgtcgcagccataaaggcaagtttgtcctgttttaaggcgggtggcggcgtgtgataaatcttggcgacgctatcgacaaactcctcgatatcataaaccgcgccttcaccacctttgcccagttcacggccaagagtggtcaattcacctgtcgatgtaaatacttttatatttgttttcataatatttcgcgggtagttatattatatttcaatgaataataacaactaaccattaaaattatttctatatggggaaaacccactcaagaataaaaatgataatgcaattttatcaggatacaattcaatttcggcctgataatgattaacttccacaggtttttgctaactttgactacaaagggattctggagaaaaaatgaaaaagatattacttatgttgagtctgctattttttactaccgcgggctttagtgaagtttcggatacgttagtgacgggaggttatgataaacaagcgatgtctgacgcgattaaacatgcgcggaaagaaaccgataaattcatcgaggttatgaataaaaaagatgccgatactttcgcagtcaaagccccgataaccgatcacggaagaaccgagcatttctggcttacggatgtcacttattctaacggcatgtttattggcgtaatcagcaatgaccctggtattgttacaaacgtagaatatggccaggagtggaaaatcaagaaagaagatatttcagactggatgtatacgcgcggggataaaatttacggcggttataccattgatcctttattggtcacctatccaaaagaagaagccgacgagctaagagcaaaattagttcgctaatcagccgttatatttattgtttaaactggcggttgaattgttgtcttcaaccgccatgagaaactcactctgcccacagcgccagtgccaacgttttatcatcatccgtacgctcgtttaccgccgggctggacaaaaactgctttaacaattcaggtaataaatcgagttgttcctgcgttgctgccgccagtccattgaaaaacggggtaaagaaaggcacatgaggagaattatccagcatatttaacgccagtcgctggataccatccgtaaatgctgcaactttgtgcgcacgcccagtgctggtgaaagtttccagtctggaaacggcatcttcgtcggtaatgaagtgcgtcatgttggcatattcacccgccatcggcgtgagaggcaattgcagaccgtgacccaaatctaccaccacgccgccatcgccaatctgcataatcaaggtgccgtcaggcgatgaaatcagtcccagaaatgtgcaggcaaaatcgcgaaccgctaattctttggcttccgcctcggcaaaaagtcgttgacgaatggtcagtaccatatttgtggcgaggacatcattaagccccaattccccgccctgcactttttgcgacatataagccatcgcttcattgacggcgagcatcgcgccttcgccaccctgcgagacactgcctgcgccatcagcgacaaataccgacaataatggctgctggtcatttaaccaggcaatctgcatctggcaggcatcctgacaaggcaagtccgcgctgatgtgcgacgttccaacggttgatgcatagaccagacgccagctcacactgacgtccagccttttggcgcttccagcacaacttccgttcccggcgtggagcgggaaaccgaacgcagcgaactggataaccagctaaacagttcacggaattgtaatccttgcagaggcaaaggctgacgaacgctaatttgtgccagcgtcttcatatccgccccctgaacaccgatggaaaagaaagcaaaccttttatcttcttccccccgaaacactttgttggctgcagcctgccactcatcggttggtgcaccatcggtaatcaggaaaatccacgggcgataatacgaaataccatttgcacgatactcacgtttccgctcctctaccatatccagggctttggtaatggccgcacccattggtgtatcgccctgggcaaacaggatgggcggaaaaaaattagcggcgctggtaaagggttgttccacatgcaccgggccgaacgtcacaatgccgagttccactctttttaaagccagcggatcagcaagcagttcatcacgaaaggtaaccaatccggcgttaagttcattaataggtctaccgttcatagaaccagaaacatccagcagcaaaatgcaggggcaacgtggttccgggttactggcaaaatcgctggtggcaaacgtgatttgttcgctcataagaaatcctttcttagagaattatcgaggtccggtatcataccgactgcaataatgaaataagagcaaacgaagaaactttcagaattaggcccggcggcgcagaaaattttgctattcgcctcgcaagaacggagagccgtcgattgacactaagggcggagtgacataatttcaggagtgagggttagggagaggtttccccctccccctggtgttcttagtaagcctggaagctaatcactaagagtatcaccagtatgatgacgtgcttcatcataaccctttccttattaaaagccctcttctccgggagaggctttcccgtttcagcgtcccgctgaaatcatcggcttacctcctttcgccctgaatgcagtctatcgctaacgcgtgaataaaatagtttcctctgtgattattgcgtaacgactcgcaaagaatatttgctggcaggatcgcagactacaaagcctgcggattgacaatcttatcgtgaaggcatactttcaggagtgagggtagagcggggtttcccccgccctggtagtcttagtaagcggggaagcttatgactaagagcaccacgatgatgagtagcttcatcatgaccctttccttatttatggccccttcctcgggaggggctttcccgtttcagcgtcccgctgaaatcgtcggcttacctcctttcgccatgcaagcagtctatcgctaacgcgtagataaaatagtttcctgtgttattactggatgcgtgctcgcaaatgtgcccgtcattcagacgattccagacagtgtttcataattcctccatttttctcccttattggctggctacactagtatcattccgcgaaacgtttcaggaagagaaactcttaacgatgaaaggtagttataaatcccgttgggtaatcgtaatcgtggtggttatcgccgccatcgccgcattctggttctggcaaggccgcaatgactcccggagtgcagccccaggggcgacgaaacaagcgcagcaatcgccagcgggtggtcgacgtggtatgcgttccggcccattagccccggttcaggcggcgaccgccgtagaacaggcagttccgcgttacctcaccgggcttggcaccattaccgccgctaataccgttacggtgcgcagccgcgtggacggccaactgatagcgttacatttccaggaaggccagcaggtcaaagcaggcgatttactggcagaaattgaccccagccagttcaaagttgcattagcacaagcccagggccaactggcaaaagataaagccacgcttgccaacgcccgccgtgacctggcgcgttatcaacaactggcaaaaaccaatctcgtttcccgccaggagctggatgcccaacaggcgctggtcagtgaaaccgaaggcaccattaaggctgatgaagcaagcgttgccagcgcgcagctgcaactcgactggagccggattaccgcaccagtcgatggtcgcgttggtctcaagcaggttgatgttggtaaccaaatctccagtggtgataccaccgggatcgtggtgatcacccagacgcatcctatcgatttagtctttaccctgccggaaagcgatatcgctaccgtagtgcaggcgcagaaagccggaaaaccgctggtggtagaagcctgggatcgcaccaactcgaagaaattaagtgaaggcacgctgttaagtctagataaccaaatcgatgccactaccggtacgattaaagtgaaagcacgctttaataatcaggatgatgcgctgtttcccaatcagtttgttaacgcgcgcatgttagtcgacaccgaacaaaacgccgtagtgatcccaacagccgccctgcaaatgggcaatgaaggccattttgtctgggtgctgaatagcgaaaacaaggtcagcaaacatctggtgacgccgggcattcaggacagtcagaaagtggtgatccgtgcaggtatttctgcgggcgatcgcgtggtgacagacggcattgatcgcctgaccgaaggggcgaaagtggaagtggtggaagcccagagcgccactactccggaagagaaagccaccagccgcgaatacgcgaaaaaaggagcacgctcctgatgcaggtgttacccccgagcagcacaggcggcccgtcgcgcctgtttattatgcgtcctgtggccaccacgctgctgatggtggcgatcttactcgccgggattatcggttatcgcgccctgcccgtttcggcgctgccggaagtggactatccgaccattcaggtggtcacgctctacccaggtgccagcccggatgtcatgacctctgccgttaccgcgccgctagaacgccagttcgggcagatgtctggcctgaaacagatgtcgtcgcaaagttccggcggtgcgtcagttatcactttgcagttccagctaacattaccgctcgatgtcgccgagcaggaagtgcaggccgcgattaacgctgcgaccaacttgttgccgagcgatctgcctaacccgccggtttacagcaaagtgaacccggcagatccgccgatcatgacgctcgccgtcacctcaaccgccatgccgatgacgcaagtggaagatatggtggaaacccgcgtcgcgcagaaaatctcgcagatttccggcgtcggcctggtgacgctttccggcggtcagcgtccggctgttcgcgtcaaacttaacgctcaggcgattgccgccctcggcctgaccagcgaaaccgtgcgcaccgccattaccggcgctaacgttaactcggcaaaaggtagcctcgacggcccttcccgtgcggtcacgctttccgcgaacgaccagatgcaatccgccgaagagtatcgccagctaatcatcgcctaccagaacggcgcgccaattcgtctgggcgatgtcgcaactgtagagcaaggtgcagaaaacagctggctcggcgcgtgggcgaacaaagaacaggccattgtgatgaatgttcagcgccagcccggtgctaacattatctccaccgccgacagcattcggcagatgctgccacagctcactgagagtctgccgaaatcggtgaaggtgacagtgctttccgatcgcaccaccaatatccgcgcatccgtcgatgatactcagtttgaattgatgatggctatcgcgctggtagtcatgattatctacctgtttttgcgcaatattccggcgaccatcattcccggtgttgctgtaccgctgtcgttaatcggcactttcgcggttatggtgtttctcgatttttcaatcaataacctgacactgatggcgttaactatcgccaccggattcgtggtcgatgacgccatcgtggtgatcgaaaacatttcccgctatatcgaaaaaggcgaaaaaccgttggcggcggcgctcaagggcgcaggtgaaatcggctttaccattatctcgctgaccttctcactgattgcggtgttgatcccactgctgtttatgggcgatatcgtcgggcgactgttccgcgaatttgctattaccctggcggtagcgattttgatctcagcggtggtgtcgctgaccctgacaccgatgatgtgcgcgcggatgctcagccaggagtcgttgcgtaaacagaaccgcttctcccgtgcctcggaaaaaatgttcgacaggataatcgccgcctatggtcgtggactggcgaaagtgctgaatcatccgtggctgaccttaagcgtggcactcagcacgctgctgcttagcgtgctgctgtgggtgttcattccgaaaggtttcttcccggtacaggacaatggcattattcagggcactttgcaggcaccgcaatccagctcctttgccaatatggcccagcgacaacgccaggtcgcggacgtgattttgcaggatccggcagtgcaaagcctgacctcatttgttggcgttgatggcactaacccgtcgctgaacagtgcacgtttacaaatcaacctcaaaccgttggatgaacgtgatgatcgggtgcaaaaagtcatcgcccgtctgcaaacggcggtagataaagtgccgggcgtcgatctcttcctgcaaccaacgcaggatctgactattgatactcaggtcagccgcacccagtaccagtttaccttgcaggccacgtcactggatgcgctcagtacctgggtgccacagttgatggaaaaactccagcaactgccacagctttctgatgtctccagcgactggcaggacaaagggctggtggcgtatgtcaatgttgatcgcgacagcgccagccgtctggggatcagcatggcggatgtcgataacgccctgtacaacgcgtttggtcagcggctgatttccactatttatactcaggccaaccagtatcgcgtggtgctggagcacaacaccgaaaataccccaggcctcgcggcgctggataccattcgcctgaccagcagcgacggcggcgtggtgccgctaagctcaattgccaaaattgagcagcgttttgcgccgctctccatcaaccatctggatcagttcccggtaacgaccatctcctttaacgtgccggataactattcgctgggcgatgcggtgcaggcgattatggacaccgaaaagacgctgaatctgccggtggatatcaccacgcagttccagggcagcaccctcgccttccagtcggcgctgggcagcactgtctggctgattgtcgcggcggtggtggcgatgtatatcgtgctcggcattctgtacgagagctttattcacccgatcaccattctctcgacgctacccaccgcaggggttggcgcactgctggcgttgctgattgctggtagcgaactggatgtgattgcgattatcggcattattttgctgatcggtatcgtgaagaagaacgccatcatgatgatcgacttcgcgctggctgctgagcgcgagcaaggcatgtcgccgcgcgaggcaatctaccaggcttgtctgttgcgttttcgtccgatcctgatgaccactctggcggctctgcttggcgcgctgccgctgatgttgagtaccggggtcggcgcggaactgcgtcgtccgttaggtatcggcatggtcggcggtctgattgtcagccaggtgctgacgctgtttaccacgccggtgatttatttgctgttcgaccgcctggcattgtggaccaaaagccgctttgcccgtcatgaagaggaggcgtaagtgaagttttttgccctcttcatttaccgcccggtggcgacgattttactgtcggttgccattaccctgtgcggcatactgggcttccgtatgctgccggtcgccccgctgccgcaggtcgattttccggtgattatcgtcagcgcctcgctgcccggtgcgtcaccagaaacaatggcgtcttccgttgccacgccgctggagcgctcacttgggcgcattgccggagtcagtgaaatgacctccagcagttcgctcggcagcacgcgtattattttgcagtttgattttgaccgggatatcaacggcgcagcgcgtgatgtgcaggcggcgatcaacgctgcacaaagtttgctgcccagtgggatgcccagccgcccgacctatcgcaaagcgaacccgtcggatgcgccaattatgatcctcacgctgacgtccgatacttattcgcagggtgaactgtacgatttcgcctcgacgcagctggctccgacgatttcgcaaatcgacggtgttggtgatgtcgatgtcggaggcagctcactgcccgccgtacgcgtcgggctgaatccgcaggcgctgtttaatcagggcgtgtcgctggacgacgtacgcaccgccgtcagcaatgccaacgtgcgtaaaccgcagggcgcgctggaagatggcactcaccgctggcagatccagaccaatgatgagctaaaaaccgccgctgaatatcagccgttgattattcactacaacaacggcggcgcggttcgtctgggcgatgtggcgacggtgaccgactcagtgcaggatgtgcgcaacgccgggatgaccaacgccaaaccggctattttactgatgatccgcaaactgccggaagccaatattatccagacggttgacagcatccgggcaaaattaccggagttgcaggaaaccattccggcggcgattgatctgcaaattgcccaggatcgctcccccaccattcgcgcctcgctggaagaagtcgagcaaacgctgattatctcggtggcgctggtgattctggtggtgtttttattcctgcgctcgggtcgcgccactattattcccgccgtttcggtgccggtttcgctgattggtacgtttgcggcgatgtacctgtgcggattcagtctcaataacctttcgttaatggcgctcaccatcgctactggtttcgtggtggatgacgccatcgtggtgctggaaaacattgcacgtcatctggaagcgggaatgaaaccgttgcaagccgcactgcaaggtactcgcgaagtcggttttacggtgctgtcgatgagtctgtcactggtggcggtgttcctgccgctgctgttgatgggcggattgccgggccgactgttacgcgaatttgccgtgacgctttctgtcgccattggtatatcgttgctggtttctctgacattaacgccaatgatgtgtggctggatgctgaaagccagcaagccgcgcgagcaaaagcgactgcgtggttttggtcgcatgttggtagccctgcaacaaggctacggcaagtcactaaaatgggtgctcaatcatacccgtctggtgggcgtggtgctgcttggcaccattgcgctgaatatctggctgtatatctcgatcccgaaaaccttcttcccggagcaggacactggcgtgttgatgggcgggattcaggcggatcagagtatttcgtttcaggcgatgcgcggtaagttgcaggatttcatgaaaattatccgtgacgatccggcagtggataatgtcaccggctttacaggcggttcgcgagtgaacagcgggatgatgtttatcaccctcaagccacgcgacgaacgcagcgaaacggcgcagcaaattatcgaccgtctgcgcgtaaaactggcgaaagaaccgggggcgaatctgttcctgatggcggtacaggatattcgcgttggtgggcgtcagtcgaacgccagctaccagtacacgttgttatccgacgacctggcggcactgcgagaatgggagccgaaaatccgcaaaaaactggcgacgttgccggaactggcggacgtgaactccgatcagcaggataacggcgcggagatgaatctggtttacgaccgcgacaccatggcacggctgggaatcgacgtacaagccgccaacagtctgttaaataacgccttcggtcagcggcaaatctcgaccatttaccagccgatgaaccagtataaagtggtgatggaagtggatccgcgctatacccaggacatcagtgcgctggaaaaaatgttcgttatcaataacgaaggcaaagcgatcccgctgtcgtatttcgctaaatggcaaccggcgaatgccccactatcggtgaatcatcagggattatcggcggcctcgaccatttcgtttaacctgccgaccggaaaatcgctctcggacgccagtgcggcgatcgatcgcgcaatgacccagcttggtgtgccttcgacggtgcgcggcagttttgccggcacggcgcaggtgttccaggagacgatgaactcgcaggtgatcctgattatcgccgccatcgccacggtgtatatcgtgctgggtatcctttacgagagttacgtacatccgctgacgattctctccaccctgccctcggcgggcgttggagcgctgttggcgctggagctgttcaatgccccgttcagcctaatcgccctgatagggatcatgctattaatcggcatcgtgaagaaaaacgccattatgatggtcgattttgcgcttgaagcccaacggcacggtaacctgacgccgcaggaagctattttccaggcctgtctgctgcgttttcgcccgattatgatgactaccctggcggcgctgtttggtgcgctgccgctggtattgtcgggcggcgacggctcggagctgcggcaacccctggggatcaccattgtcggcggactggtaatgagccagctccttacgctgtataccacgccggtggtgtatctctttttcgaccgtctgcggctgcgtttttcgcgtaaacctaaacaaacggtaaccgagtaaatgacagatcttcccgacagcacccgttggcaattgtggattgtggctttcggcttctttatgcagtcgctggacaccaccatcgtaaacaccgcccttccctcaatggcgcaaagcctcggggaaagtccgttgcatatgcacatggtcattgtctcttatgtgctgaccgtggcggtgatgctgcccgccagcggctggctggcggacaaagtcggcgtgcgcaatattttctttaccgccatcgtgctgtttactctcggttcactgttttgcgcgctttccggcacgctgaacgaactgttgctggcacgcgcgttacagggcgttggcggcgcgatgatggtgccggtcggcagattgacggtgatgaaaatcgtaccgcgcgagcaatatatggcggcgatgacctttgtcacgttacccggtcaggtcggtccgctgctcggtccggcgctcggcggtctgctggtggagtacgcatcgtggcactggatctttttgatcaacattccggtggggattatcggtgcgatcgccacattgctgttaatgccgaactacaccatgcagacgcggcgctttgatctctccggatttttattgctggcggttggcatggcggtattaaccctggcgctggacggcagtaaaggtacaggtttatcgccgctgacgattgcaggcctggtcgcagttggcgtggtggcactggtgctttatctgctgcacgccagaaataacaaccgtgccctgttcagtctgaaactgttccgtactcgtaccttttcgctgggcctggcggggagctttgccggacgtattggcagtggcatgttgccctttatgacaccggttttcctgcaaattggcctcggtttctcgccgtttcatgccggactgatgatgatcccgatggtgcttggcagcatgggaatgaagcgaattgtggtacaggtggtgaatcgctttggttatcgtcgggtactggtagcgaccacgctgggtctgtcgctggtcaccctgttgtttatgactaccgccctgctgggctggtactacgttttgccgttcgtcctgtttttacaagggatggtcaactcgacgcgtttctcctccatgaacaccctgacgctgaaagatctcccggacaatctggcgagcagcggcaacagcctgctgtcgatgattatgcaattgtcgatgagtatcggcgtcactatcgccgggctgttgctgggactttttggttcacagcatgtcagcgtcgacagcggcaccacacaaaccgtctttatgtacacctggcttagcatggcgttgatcatcgcccttccggcgttcatctttgccagagtgccgaacgatacgcatcaaaatgtagctatttcgcggcgaaaaaggagcgcgcaatgaagttctggcgacccggtattaccggcaaactgtttctggcgattttcgccacctgcattgtcttgctgatcagtatgcactgggcggtgcgtatcagttttgagcgtggctttattgattacatcaagcatggtaatgaacagcgattacaactgttaagtgatgcgcttggcgagcagtatgcgcagcatggcaactggcgcttcctgcgcaacaatgatcgctttgtctttcagatcctgcgttcatttgaacacgataattcggaagataaacccggcccgggtatgccaccgcacggctggcgtacccagttctgggtggttgatcaaaacaacaaagtgctggttggtccgcgagcgccgattccacctgacggtacacggcgacccattctggtcaacggtgcggaagttggcgcggtgatcgcctcccccgttgagcggttaacgcgcaatactgatatcaatttcgataaacaacagcggcaaaccagctggttgattgtcgccctggcaacgttactcgcggcacttgccacttttctgctggcgcgcggtttactggcaccggtaaaacgacttgtcgatggcacgcacaaactggcggcgggcgatttcactacccgcgtaacgcccaccagtgaagatgaactgggcaaactggcgcaagacttcaaccagcttgccagcacactggagaaaaaccagcaaatgcggcgcgattttatggccgatatttctcacgaactgcgtacgccattagcggtgctgcgcggtgaactggaagccattcaggatggcgtgcgtaaattcacgccggagacggtggcgtctttacaggcggaggtcggtacactgaccaaactggttgacgatctccatcagttgtcgatgtctgatgaaggcgctctcgcctatcaaaaagcaccggtagatttgatcccactgctggaagtggcgggcggcgcatttcgcgaacgattcgccagtcgtggcctgaaactgcaattttccctgccagacagtattaccgtatttggcgatcgcgaccgtttaatgcagttattcaataacttactggaaaacagcctgcgctacactgacagcggcggcagcctgcaaatctctgccgggcagcgcgacaaaacggtgcgcctgacctttgccgacagtgcgccaggtgtcagtgacgatcagctacaaaaattgtttgaacgtttttatcgcaccgaaggttcccgcaaccgtgccagcggcggttccgggctggggctggcgatttgcctgaacattgttgaagcacataatggtcgcattattgctgcccattcgccttttggcggggtaagcattacagtagagttaccgctggaacgggatttacagagagaagtatgaccgagttaccaatcgacgaaaacacaccgcgtattttgatcgtggaagatgaaccgaagctggggcagttgctcattgattatctgcgtgctgcgagctatgcgccgacgcttatcagccacggcgatcaggtactgccgtatgtgcgccagacaccaccggatctgatcctgttagatctgatgctccctggcaccgatggcctgacgctgtgccgggaaattcgtcgtttttctgacattccgatcgtgatggtgacggcaaaaatcgaagagatcgatcgcctgctggggctggagattggcgcagatgattatatctgtaagccgtacagcccacgggaagtggtagcgcgcgtcaaaaccattttgcgccgttgcaaaccgcagcgcgagttgcagcaacaggatgctgaaagcccgttgattatcgacgaaggtcgttttcaggcttcatggcgcggtaaaatgcttgacctgacgcctgcggaatttcgtctgctgaaaacgctctctcacgaaccaggaaaagtgttctcccgcgagcaattgctcaatcatctttatgacgactaccgcgtagtaaccgaccgcaccatcgacagccacattaaaaacctgcgccgcaagctggaatctctcgacgccgaacagtcatttatccgcgccgtttatggcgtcggttaccgctgggaagccgacgcctgccgcatcgtttagttttagcgacattattttgttagccggagatggcgttcagaccagatccggcaacattatcccacgcatggtcagcaaactgacattatctctccgccctggcaggcatcagaaaatcgctcatactttaatcggtaaacagcacctttagatgctgttttcgatacacaatttcaatcaaggagtcattatggctggttggtttgaactcagtaagagcagtgataatcagttccggtttgtgctaaaagcgggcaatggtgagactatcctcaccagcgagctttatacctcaaaaacctctgcggaaaagggcatcgcgtcggtgcgtagcaacagcccgcaagaagaacgctatgagaaaaaaacggcaagtaacggcaaattctatttcaatctgaaagccgctaatcatcaaattatcggctccagccagatgtacgccaccgcgcaatctcgtgaaaccggaattgcctccgttaaagccaatggcacaagccagacggtgaaagacaatacgtaattacgatgccgggcgtgggttgttggcgtccggcgctttaccagagccccccacagcgctacaatgcccgcccttaaagtgggggcactcccctaaccgcttcatcaggtgaagcggatctgacctgtcatcagaacgagagaattatgtttaaaccggaactcctttccccggcgggaacgctgaaaaatatgcgttacgctttcgcttatggcgcagatgctgtttatgcgggccagccgcgttattccctgcgtgtgcgcaacaacgaattcaaccacgaaaatcttcagctcggcatcaatgaagcccacgcgctggggaaaaagttttatgtcgtggtcaacattgcaccgcacaacgccaagctgaaaacctttatccgtgacctgaaaccggtggtggaaatggggccggatgcgctgattatgtccgatccagggctgattatgctggtgcgtgagcacttccctgaaatgccgatccacctttcggtgcaggctaacgccgtgaactgggcgacggtgaaattctggcagcaaatgggcctgacccgcgtgatcctctctcgcgagctgtcgctggaagagattgaagagatccgcaatcaggtgccggatatggagatcgagatcttcgttcacggcgcgctgtgcatggcctactccggtcgctgcctgctctctggctatatcaacaagcgcgacccgaaccagggcacctgcaccaacgcctgccgctgggagtacaacgtccaggaagggaaagaagatgatgttggcaacatcgtacacaagtacgagccgattccggtgcaaaatgttgagccgacgctgggtatcggcgcaccaaccgacaaagtgtttatgatcgaagaggcccagcgtccgggcgagtatatgaccgcgtttgaagatgagcacggcacttacatcatgaactcgaaagatctgcgcgccatcgcccatgtagaacgcctgaccaaaatgggcgtgcattcgctgaaaatcgaaggtcgtaccaaatctttctactattgtgcacgcaccgcacaggtttaccgcaaagctatcgatgacgccgctgcgggaaaaccgttcgataccagcctgctggaaactctggaaggtctggcgcatcgtggctataccgaaggtttcctgcgtcgtcatactcacgacgattatcagaactacgaatacggttattcagtttctgaccgccagcagtttgttggtgagtttaccggtgagcgcaagggggacctcgcggcggtagcggtgaaaaataaattctccgttggcgacagccttgagctgatgacgccgcaaggcaacattaattttacccttgagcacatggaaaacgccaaaggcgaagctatgccgatagcaccaggcgatggttatactgtgtggctcccggtcccgcaggatcttgagctcaattacgcgctgctgatgcgtaatttctccggggaaaccacgcgtaatccccacggtaagtgattaatttcgattatttttcccggatggaaaattcttagaaaccgatcacatacagctgcatttattaaggttatcatccgtttcgctgaaaaacataacccataaaatgctagctgtaccaggaaccacctccttagcctgtgtaatctcccttacacgggcttattttttacgcgtaatacaatgaaataaaaggatttatttctggtcacgtccacacattgaccacatcgacaaaaaagcccctcgactgaggggcttcctgtttctaattacatccacataatttgctgccctgacggcaacgggtgcggccttacgacgtggacttctcccggcttcacaatgtatcgctgtaccgactcataagtgatgaacgtggcgctgcaattcacgttctgacactggtgataacgctcttttgtcgtgtcagtgatatagcggcttgtacgcgcatgtgcggcatgctggcataaaggacaatgaaacatcgcgagcacctcttccggttttgttgatggtgccattttagttaatttacccttacaaaacaaacagataaaataaaaacatcactcattatcttctgtttcgtaccccacatcagaaagcctgacctcaagctctaatgacgtcgtgaagccgctattattcagaaaatgtgtcaccttagtgattgtccagtcctgctcgtctatgacgcgcttaaagccagacactttgaccggtgtttccgtgtaaatatctgcccgaccggtagccaggctgatggagaactctgctacacgggcttatttttttatgcataagccctatctctggtaaccgtcttccattgaccacatcgatagaatcctccttcatagcacgatgcctttcacttatcggcatcgtgctcccacaggttccggctacgcacagccagaacgcgcatatttgacgcttaccaaaaaatattctcactctccacatttgaatgtcagacgagcgacaccatgtaatcctacaccttctgtcttcagctcaactatttgcatttttttgccctgagtaacacagaaatgagttgcatcattttttactatattttctgcaccagatattctacccctggctaaagaagcttcggcttcggtgtagtattggttatcgagtttacgctgaatattacttttatatgcaagaccaaatttaccgatacttgtctcatcattatgcacagcacaaccagacataataaaaatactaattaatgatatagcagctatctttttcatctcaccttcccccattaaataccaacgacactctctagtgtttaaatataataatggcatgattattataattgaataggattataataaatgttctgtacaacatttcctacataagtaggaattacggacattgaggcccttcagggtaactccatgggggctttaatatattatattgaagatgccactgtttagttgaatattaggtatatgctcttttttgaaatttatcggtggcagccgttagtattcgctgtccccattgcaagctcctggtggtaaccactgaatcctccatacttgaactgactttttatcctccgactttcatcctgttctgactccaccttttgttttctgctctacactatctacagaccaatcataaaggcacatacgatcatggcagaatttcccgccagcttactgattcttaatggcaaaagtactgacaatctacccttgcgcgaagcaattatgctgttgcgtgaggaaggaatgacgatccatgtgcgggtcacctgggagaaaggcgatgccgcacgatatgtagaggaggcccggaagtttggcgtcgcaacggtgattgccggtggtggcgatggcaccattaatgaagtttctacggcgttgattcagtgtgagggggatgacatacccgcgctgggaattttgccattaggaaccgccaatgattttgccaccagtgtagggattcctgaggcactggataaggcgctgaaactggcaattgccggtgacgccattgcgatagatatggcgcaggtcaacaaacaaacctgttttattaatatggcgacaggcggatttgggacgcgtattaccacagaaacgccggaaaaattaaaagccgcgctgggtagcgtctcttacatcattcatggcttaatgcgtatggatactctgcaaccggaccgttgtgaaatccgcggtgaaaactttcactggcaaggtgacgccctggtcattggtattggtaacgggcgtcaggccggtggcggtcagcaattgtgtccgaacgcgttaattaacgatggcttgctgcaactgcgcatttttaccggcgatgaaatacttccggctctcgtatcaaccttaaaatctgacgaagataacccgaatattatcgaaggcgcttcgtcgtggtttgatattcaggcaccacacgacatcacctttaatcttgatggcgaaccgttgagtgggcaaaattttcatattgaaatacttccggcagcgttgcgttgtcgattaccaccagattgtccactgttgcgttaatcaaactattctctcttgaaccagggagaatccgtaatgccggatgcggtgtaaacaccttatccggcatacagaacaatactacaccgtaattaattttacccgcgtcttctgcaatgccagtttatccacctctgacacagcatcatcggtaataataatgtcaattttttcgattggtagtacctgattaaaaccgcgacggttaaatttcgatgaatcgagaacggcaatcactttattagcggctgtgaccatcgcaccgctaatagaataaccttcattaaaggtcgtaataccattaaccgcatcaataccatcagcaccgacaaacattaaatcggcattaatatcctgtaatgaacgctcggcaatggaaccatgcatcgagcgcgttttatggcggaccgtgccaccacagacgaccagagtaatgtctttattttcggaaagggcaaacgctgccgggagactgttggtaatcaccgtgatatttttggcggtcattaatccttcggcgataagcattgtcgtacttccgctgtcgagaataacggtctgatcttacccagcaatagtggacacgcggctaagtgagtaaactctcagtcagaggtgactcacatgacaaaaacagtatcaaccagtaaaaaaccccgtaaacagcattcgcctgaatttcgcagtgaagccctgaagcttgctgaacgcatcggtgttactgccgcagcccgtgaactcagcctgtatgaatcacaactctacaactggcgcagtaaacagcaaaatcagcagacgtcttctgaacgtgaactggagatgtctaccgagattgcacgtctcaaacgccagctggcagaacgggatgaagagctggctatcctccaaaaggccgcgacatacttcgcgaagcgcctgaaatgaagtatgtctttattgaaaaacatcaggctgagttcagcatcaaagcaatgtgccgcgtgctccgggtggcccgcagcggctggtatacgtggtgtcagcggcggacaaggataagcacgcgtcagcagttccgccaacactgcgacagcgttgtcctcgcggcttttacccggtcaaaacagcgttacggtgccccacgcctgacggatgaactgcgtgctcagggttacccctttaacgtaaaaaccgtggcggcaagcctgcgccgtcagggactgagggcaaaggcctcccggaagttcagcccggtcagctaccgcgcacacggcctgcctgtgtcagaaaatctgttggagcaggatttttacgccagtggcccgaaccagaagtgggcaggagacatcacgtacttacgtacagatgaaggctggctgtatctggcagtggtcattgacctgtggtcacgtgccgttattggctggtcaatgtcgccacgcatgacggcgcaactggcctgcgatgccctgcagatggcgctgtggcggcgtaagaggccccggaacgttatcgttcacacggaccgtggaggccagtactgttcagcagattatcaggcgcaactgaagcggcataatctgcgtggaagtatgagcgcaaaaggttgctgctacgataatgcctgcgtggaaagcttctttcattcgctgaaagtggaatgtatccatggagaacactttatcagccgggaaataatgcgggcaacggtgtttaattatatcgaatgtgattacaatcggtggcggcggcacagttggtgtggcggcctcagtccggaacaatttgaaaacaagaacctcgcttaggcctgtgtccatattacgtgggtaggatcagtcatcccttcgtggatcattttgactgccgcctgcgctattctgttttttggcgcgctggcgagctgaaatcgctctttaaacccgacttcctgggtctcggtttcactattaccagacattattttcgccgcaccgccatgaaagcgcgtaaccacgcctttttgttcgagaaagcgcaaatcggcacggattgtcgcttccgaggcagcaaatactcccgccagatcctgaacaagcacggttccctgttcattcactaattggatgatcttattccttcgctcgaatgaattcatcgtcatttacccatattcaattgtggctagtgtaaacgaagggggaccattggtgaatgatctgttttgcacaataccgggccagcatcacgctggcccgcggtttcagggaatgagcaacactttgcccggcatagcattacgagcgatgtcacgcaccgcctgggcgaagctttcaaagcttccacggtgagcgattaatggctccaggcttaacttacgttctgtcagcaaccggctcgccgtttcccactcctgccccggccaagggctggagtagttcatccaactgccgataaccgtcagctctttacgcaatattttgccaaacgttgccgatgttaaatgcagatcctgatgcaacgtgcccaccagcgccagttgggcatgaggaccggcaatctctaccgccagttcgacagtttgcggtacgccagccgtctcgaggataagctgattaaagcgcagttcgcgtaaaacgctctgcatttgcggcgcgctcatttcgctactgttaaatgtttgcatcgcaccgaaagattttgccagtgccagtttttctgaactaatgtcgatcgccgtcacactctttgctcccagcgcgacagcgcactgaatggccagcaggccaatggttccggcaccaataataataacgtttttattctcacaaccttgcgctaaatgaaaagcatgcagaccaacggtaatcggctcaataaaagccccatcctcaataggcatatccgtgggtagagcaaagacattttttcgcttaacgacaatatattcagcaaatccaccatcacgccgcgagccaataaaatcatattttgcgcactgggaataaaaccctttcagacactctggacaagtaaaacagggtaataacggcacacaggcaaccgcatcgccagggtgtaaatcatcaacaccggatcccaccgcatcaatatagccgctaaattcatggcctaacgttattggataataatgtgcaccatttttaaatatcctgggtaaatcggaaccacataagcccgagctggcaatttttacccgcacctcatcctgatgtttaatttcaggaatgacgctttctgcaacgcgcacgataccatcagtatcattcaccactgatttcataaaaactcctgattgttaagggggataacctccccctcaggtaaaaattattctgcgagaacgactttctcttgtttaataaagccacgcgctctacgccaggtcatgaaaataccggtcagataaattgcaccgataataatgaaaccgggaatattttgcggggagaaaacctgaatcagtaaccaggtaatgggagaaccgccctgatccattgaagccaccatacccccggcttttaacgccccagcattagccgccagttgggtgtgcaaaccaatagtttgcgtcgcgatccacagggtgatgctcataatgatgacacccgagattaaggtgcggaacagatttccacgatgcacggcgaccgccatcgccacgaagaagccgatggtggcaagatcgccaaacggcagcacctgattacccggcacacaaacagcaattaaaatggtgagtgggataaaaatcaggcttgccgataccaccgccgtatgtcccagcagcaacgccggatcaaggccaatcaggaactcctgaccgccgaacttcgcctgtaaacgactacgagcctgcttagcgatgggcgttaaaccatccatgatgggtttaatcacccgtggcattagcagcatcactgccgccgtttttaccgccagctgcaatacacctttgacatcgtaacccgcgaggatgccgataatcagccccatcacaaaacccacggtgacaggctcgccaaatggaccaaatttgcgctgaatatcgtcggcgctaaatttaattcggttaacgcctgggattttctcgatgatagcatcgaccagcaccgcaatcggccccatatacgccgacgtaccgtgcggaatagcaataccttccagctcaaagaaatttcgggtatcgcgggcaaaccagtcgccgagcttataaacaaacgccgcgtgaattaccacacctgccatccctatcatccatgaaccggttgccagatgcagcaacgcgccggtgaaggtcatatgccagatattccagatatcaacatttaccacccgcgtcatacgggtcagtaacatcgccacgttaaccagaatcgcaatcggaatcgccaccagcgcaatttgcgacgcccaggtcattggtgaagagcccggccagccaacatcgaccacatgcagattcaggtcgaaattttccgccatcgctttcgccgccgggccaatggaatccagcattaagccaatcacaaggccaatgccaacaaagccaatcccgatatgcagacccgctttaaagcaatcgcctgccttcatgcctaatattttagaaaaaataatgatgacaatcggcagcatcaccgtagggccgaggtcgagaatataacgcatgacttctgaaaacataggtcacccctgtaagatagtcagaattttattttgtaatgcttcgataccgataccagaaataaaaggcatgccgtgaactaacggaatatcgccaaaactacgatccactttggcagtggtgcatatcaaatgcacaccatccatataggtttctatttcattaacccgacactggattaattcaacaggaatattatgattctgacacaactctttaatttcttccgccgccatcgtagaggtcgcaaccgcgcctccgcaagcgacaataatcttgcgtttcataaatagtcctttttattgttacagagggatttattcgtctgaatctaaaacatactttgtgaagtattcctttaactgggtttcaggaagagtgattagtgtctcgacgatatcgggctgttgtaacttgccaaataaacagcgtaaaagtttcaattgctgctgcggattttccacaatcaacgcaataaccaacgataccgccacgtcgttatcatcatccgcttgctgaaaatgaactttatttgttggccttaacagataaatggctgacgacttagcatgaatcgcctcacaatgcggtattgcaatagcgtgctgctcaagcattatcccggtagggaattctgcttctctggcaattaatgcctgtggccaggtatcatgaaccacacctttggcgagcatctcattaccgatatgggttaaaacttcgctacgatcgacaaaagaaattccgctacgaacaaacaggttagtcatataccgtccttattccgcacagccgtagcgataggcgcgcaaaacatcataaattttatccataatcagctgatgcggtattgctgataattccccggactgaatgcgttcaaattgtttgggaagatactgactaatcatgcccagtgggatgtccacgccttcaagattcaccatcatcgtttcgacgctatttttaatccgactatgcggccagtaataacgaatacgatccgacaggctgtaacgaatatccagtaatgaatcgttaaaacccgtacgataatattttttccagtattgcggttcgtcgagcatcacttcttcaattaccgccaggcaaccgctgcgattttcaggggcgataagttcctgctcaatttgtgccagtgcaaatatcgcctcgcgtaaagcaaaggttaatgcgggaccgactttcaatattgcaaagtgatcgcggactaattcccaataagccgtccgggtctggtaatcggtagaatgtgcttcataaaccattcgggtgttttctatccattgcgccagcggctgcgcttcctgcggctgataatggataatattgctgtgatcaaattccacacccggctgcaccacgatggcaatcacacgtgttaacgcctctgtcagcccacgggcaataaaggccttttgatgcgtacgtaaagtattggcggcatcttcaacatgggtgatgtgtactgactgaatggcgctggcctcaccgcccggaaccggaacttcggtgccaatgacatagctcagttgctcacgctggcaatctgtcgccacactttccgcagcaaagcaaagcacagcagctcgttccgcaaccgtttctggtgctaacggtatgggatcccccgcgcaggacattgacgcatcaagatgaattttactgaagccggcacgaacatattcctttaccagctcgacggatttttccatcgccgcatccgcattttcttgctgccagcagtttggccccagatgatcgccgccgagaataatgcgttcgcgtgcaaacccaactttatcggcaatcgtaaaaacaaattcgcgaaagtctgccggtgtcattccggtataaccgccaaattgattgacctggtttgacgttgcttcaatcagcactttgcgcgtgctgttgcgatcaaatgccagcgccgcttcgataaccaacggatgggcagaacagactgaacatatgccgatatgttcaccagctttatgccgggcaattaacgttttcatgttttttccttgttaaatggcaggtgcgttatgccctgccctcgcagccacaatcggcaatcactttgctcaccacatcgcgcattgcggatttagccgactgcaaataatcccggggatcggtcgcttcagggtgctcggtcaggtaattttttaacgcctgcgagaaggcatttttcagctccgttgcaacgttgattttgcatatccccagtttgatggtttgctgaatatccttagtcgataaccctgacgcgccatgcagcaccagcggtaagttcacccactggcgaatgttctccagtctagaaaaatcaagcgccggtgcgctggcatacatcccatgagccgtgccgatggcgaccgccagggaatcaattccggttgcctcggcaaattcacgcgcctgagcggggttggtgtacaacgcatcggcttcattgacttgcacatcatcttcctggccgccaagttgccccagctccgcctcgacgctgacatcaaagcgatggcaaaaatccaccacctctttgacccgtgaaatattttgcgcaaaaggcaaatgcgaggcgtcaatcatgactgagcgcacgccagaacgaaccttctgagcgatatcgtcaaatttcgtgtgatggtcgagatgaattgccagtggatggtgatattgcttcgccatcgcgctgaccagcgccaacagattttctgtaccagcatgagtaaatgtgccaggcgttccggcgatgatgaccggcgcatgcaggttggcagcggtttctaccaccacttgcatcgtttcgagattgtgaatattgaatgccggaaccgcataaccgccgcgctgtgcgttgttcagcatctgctttgtcgataccacgtacattttcatatcctgtcgtttgttttcgatttcaaaatataatgaaattatttgtttttaaatatcgagataacgatcacaaaaacgacaatatgaaaattattcgaggagtgaaaggcaaaaaaacggcctcccgatagggaagccgtagcaaagtgcgcgtgtttttatgccggatgcggtgtaaacatacgtggcagtgctatgtaggcatgataagacgcttcagcgtcgcatcaggcataggttgccggatgcagcgtaaacgccttatccgtcctacggggtggtgttgttcgtataaggcgtatcaggcgatagtaattttgctatcgagataaacgtcctgcacggcgttaatcagtttcacgccgtcagccatcgatttcttgaacgctttacgtccaagaatcagccccattccgcctgcgcgtttgttgataaccgcagtacgcactgcatcgctgaggtcagtttcaccgcccgcagcaccgccggagtttatcaacccagcccgacccatatagcagttagctaactgataacgcaccagatcaatcgggttttcgctggtcaatttgctgtaaacacgatcgtcggtgtaaccgtaattaattgctttatagccgccgttattttccgccattttttgtttgacgatatctgcaccgatggttgccgccagatggtttgcctgaccggtcaggtcggcggaaacatggtaatcaacgccatctttcttaaaggcggagttacgcaaataggcccacagcactgtcaccatacccagctcgtgcgcacgttcaaaagccgcagaaatttcttcaatctggcgacgtgactcttccgagccaaaatagatagtcgcaccaaccgcaaccgcgcccatgttgaacgcctgctccacgctggcatacagcgtttgatcgtaggtattcgggtaacttagcgtctcgttgtgattaagtttgacgaggaatggaatgcgatgcgcataacgccgcgataccgacgccagcacgccgtaagttgacgccacacagttacagcccgcttcgatcgccagttcaacaatgtttttcgggtcaaagtagagcgggttagcagcaaatgaagctccggcagagtgctcaacgccctggtcaaccggcagaatagaaagatatcctgtgccagccagacgcccggtgttgtacaacgtctgcatattacgtaacaccgctggcgggcgattattgtcaatcattacgcggtctacgtagtcatgtccggggagataaagctggtcagaaggaattgtcatacaacggtgctgtaaaaggttgtcggcgtctttgccaagcaactgcgcaatatctgtcattactatgctcccgtaaattccgattggatatcggctatggattgtcctggcccgccttttgcgggcaatcataatcctggtcgttacgggcgagtttttccatcttttggatgttttttcagcgttttctgttggctcgattcatcagaaaaaatgttagcgcggtcaagttttcaccgcaaaggtatttaaaaggtattattaagtggtattgtcatcgcgtaccttacattacctgtcatgaaggaattaaaagatgaaaacaacagcaaagctgtcgttcatgatgtttgttgaatggtttatctggggcgcgtggtttgtgccattgtggttgtggttaagtaaaagcggttttagtgccggagaaattggctggtcgtatgcctgtaccgccattgcggcgatcctgtcgccaattctggttggctccatcactgaccgctttttctcggcgcaaaaagtgctggcggtattgatgttcgcaggcgcgctgctgatgtatttcgctgcgcaacagaccacttttgccgggttcttcccgttactgctggcctactcgctaacctatatgccgaccattgcgctgactaacagcatcgcttttgccaacgtgccggatgttgagcgtgatttcccgcgcattcgtgtgatgggcactatcggctggattgcctccggtctggcatgtggtttcttgccgcaaatactggggtatgccgatatctcaccgactaacatcccgctgctgattaccgccggaagttctgctctgctcggtgtgtttgcgtttttcctgcccgacacgccaccaaaaagcaccggcaaaatggatattaaagtcatgctcggcctggatgcgctgatcctgctgcgcgataaaaacttcctcgtctttttcttctgttcattcctgtttgcgatgccactagcgttctattacatctttgccaacggttatctgaccgaagttggcatgaaaaacgccaccggctggatgacgctcggccagttctctgaaatcttctttatgctggcattgccgtttttcactaaacgctttggtatcaaaaaggtattattgcttggtctggtcaccgctgcgatccgctatggcttctttatttacggtagtgcggatgaatatttcacctacgcgttactgttcctcggtattttgcttcacggcgtaagttacgatttttactacgttaccgcttacatctatgtcgataaaaaagcccccgtgcatatgcgtaccgctgcgcaggggctgatcacgctctgctgccagggcttcggcagtttgctcggctatcgtcttggcggtgtgatgatggaaaagatgttcgcttatcaggaaccggtaaacggactgactttcaactggtccgggatgtggactttcggcgcggtgatgattgccattatcgccgtgctgttcatgatttttttccgcgaatccgacaacgaaattacggctatcaaggtcgatgatcgcgatattgcgttgacacaaggggaagttaaatgaaaacagaacgtattctcggtgctctttatgggcaggcgttaggggatgcgatggggatgccctccgagctttggccacgcagccgcgttaaagcacactttggctggattgaccgttttcttcctggaccaaaggagaataacgcggcctgttattttaaccgcgccgaattcaccgacgatacctcgatggcgctgtgtctggcggatgcgttactggaacgtgaaggcaagatcgatccggatctgattgggcgtaatattctcgactgggcgctgcgtttcgacgcctttaacaaaaacgtactaggtccgacctcgaagattgcgcttaacgccattcgcgacggtaaacccgttgctgaactggaaaacaacggcgtgaccaacggcgcagcgatgcgcgtctcgccattaggttgtttgcttccggcgcgtgatgttgattcctttattgatgatgtagcgctggcgtccagcccgacccataaatccgatctggcggttgcaggcgcggtagtcatcgcatgggcgatttctcgtgccattgacggagaaagctggtcagcgattgttgattccctgccttcaattgcgcgacatgcacagcaaaaacgcatcactacgttcagcgcctcactggcggcgcggctggagattgcgctgaaaattgtgcgcaatgccgacggcaccgaatccgccagcgaacagctttaccaggtcgttggcgcaggtaccagcactattgagtccgttccgtgcgccattgcgctggttgaactggcacaaaccgacccgaatcgctgcgccgtcctgtgcgctaaccttggcggcgacacagacaccatcggtgctatggcgacggcaatttgcggcgcgttgcatggcgttaacgctatcgatcctgcgttaaaggcggaactggatgcggtaaatcagcttgatttcaaccgctatgccacagcgctggcgaaatatcgtcaacaacgggaggcggtatgagcggcgctcgattacacacgctgctgcctgaattaaccacgcgtcagtcggtgatggtcgtcggcgcggcggtcattgacgtgatcgccgacgcttatgccctcccctggcgtgggtgcgatatcgaactgaaacagcagagcgttaacgttggcggctgcgcactgaatattgccgtggcgttaaagcgcctcggcatcgaagcgggtaatgccttgccgctcggtcagggcgtgtgggcggagatgattcgcaaccggatggcaaaagagggcttaatcagcctgatcgataacgccgaaggtgataacggctggtgtctggcgctggttgagccggatggcgaacgcacttttatgtcattcagcggtgttgaaaatcagtggaatcgccagtggctggcgcgattaaccgttgcgcctggcagcctgctctatttttccggttatcaactggcctcgccctgcggcgaattgttagtggaatggctggaagagctgcaagacgtgacgccgtttatcgattttggcccacgtattggcgatatcccggatgcattactggcgcggatcatggcctgtcgacctttagtgtcgctcaatcgtcaagaggctgagattgccgccgaacgttttgctttatccgcagagataacaacacttggcaagcaatggcaggagaaatttgccgcgccgttgatcgttcgtctcgataaagaaggcgcatggtatttcagcaacgacgcttctggctgcattccggcatttccaacgcaagttgtcgacaccattggggcgggcgacagtcatgccggtggcgtacttgccgggctggcctctggtctgccactggcggatgccgtattactgggcaatgcagtggcgtcgtgggttgtcgggcatcggggcggtgattgtgcgccaacgcgcgaggaactactcctcgcacacaaaaacgtatagatcgctgcgacagtggctaatgctgtactcaataggccgttgctgttggtcaagcgccacttgcttgatcaccagcaccggtattttgctatctaactgaatatgtgactgaaactcggcatccggcatccgggcgctaacgcgggaacgcgtacgttgtgggtaaatgtgctggctgcggaaatagtcataaagtgaaatcccgatggcatcaacatcatgaattaaatgcgccggaacccacgattcctcaatcgataccgcttcttcatcgacatagcgaatacgcttaagcaaaaagacatcacttcctgcttcgaccgccagctgctgcgcgacttcttcgggacatttcacgacacgcttgttaacccatagcgtatcgggctttttcccgcgcaataccacctgctgagaaaaacctcgcgcttctttcaacgagtattcgaagatgttgttgatctgcgtgccgtaaccgcgcgaacgcgtcaccacaccctcttcttccagcgcctgcatcgccttgcgcaccgtaatgcgcgaaacgccggttaactgacttaaatcacgctcaccgggcaaaatattgccatgctccagcaccccgctgcgcacggcattttttaccgtttcggcaaacttaatataaagcggcgtgttatccgccgctaaaatacgctcgttcagttgggcaatcagctgggtatgcgcttgttccatttgtctttttcctgccggggagtctggtgggagtatatcactgcttcttatttaaggcgtttctttaatcccatcaacgaatgcctgcaactcctccaccgtgccattaaatacattaaaatccaccggaccattgatgccatctacctgtccacggtcggaatgctgccagaagcgccaggccattccgtcattgtccggacgacgttgatagtagtgagccacccaccacggatattcattgaaatagcccgccagattggtgtgataaaaaacggctcctgagtaaataatcggctttttccccgtacttttttcgaccatttttagccactgacttacccgcttgcgtaattcttttgccgataattttccccgttcttctacgtccagcacggcagggaaatcgccttgtgagaaatccaccgtttgcagaaataatctcgcctgaactgaagcggataccgacggggagaaataatgatacgccccacgcagcaggccattttcgcggcttagttgccagttacgcgaaaaataggggtccaccagcttttcgccttccgtcgccttaataaaagcaaactgtaagcggataccattgtcgcgcatttttgccacccgctgccagtcgatccgctcctgccagcgcgaaacatctattccgtgaatggtgtaactggcaggaatgcgaatagcgaaagatttaaccgggcgataaccgtagaagtggatgtagtctgtaatctgaactgctgtcgaatagaaaaaattcaccgtctgacgcggataaattgcaacgatggaaattagcccaagagcgcataatagagaggtgagtttttttcgactggtaattcttagctgcattggtttcatccctgaatgtcagtgccaaaggctgacaataaccaaagcagctatagtacggtgctcaccaccaggcgtggaagtggtgaaccggaccaataccgtgaccaacttccagcgtgtcggcctgggctaacgccgatgaaagccagctttttgcctcctgtacggtgtcagcccagtttgtatggcgcgggcgtagtgcagccaacgccgcagagagtgtacaaccagtgccgtgggtgtttttggtcataatgcgcggtgcggtaaaccgttgttcaccctcgcgggtaaacagccagtccgggctttgctcatcatccagatgaccacctttcattagcactgcgccacagcccatcgccaacagcgatcgcccttgttccagcatttcctgttcggtgcgcgcgtgtggcgcgtcgagcaaggcggcagcttcgggcaagtttggcgttattaatgaaacctgtggcaataatcgactgcgcagcgtagcaaccgccgaaggtgaaagcagcgggtcgccgctttttgccagcataacggtgtcgagtaccacgttttggatctgataacgttgcaaccgttctgccaccgcttcaacaatatcggtttccgccagcataccgattttagtggtatcgattcgcacatcgctgaacaccgaatcgagctgggcggcgacaaaatcaggctcaatgcgatacaccgactgtacgccacgggtattttgcgccaccagtgcagtaataactgagcaaccataagcgccaagtgccgagaaggttttaagatcggcctgaatccccgcaccaccactcggatcagtaccggcaatcgtcagagcgttaattcgtttcatgcctgcacctcctgcgtcaattgccagagcgcatcaaggaaatgtggaacaaaactgcctggcccctcgcttctggcgactgcgcgttctccggcttgtttcatccagtgacaggcagatgcgacattttccagcgtatcgcctggtaacgcacagcaggcagcgacaaccgccgataatgcacagccagttcctaccactttggtcattaacggatcaccaccgtgaataccaatgatacgatgtccatcggtaacataatccatctcgccagtgaccacgacgattgcgccagtttcccgtgccagtgtttgtgcagcgggtatcgcgttagctgcggcgtcagtggtatccactccccgtccgccattagcaatgccagctaatgccatgatttccgaagcattaccacgtatcgctgccggtttaaaagataaaagttcatgacaaaaatggcggcgataatcgagcgcacccaccgctactggatcaagcgtccagggtgtttgagagctttttgcttgctcaacggcagcacgcatcgcctgagcgcgtggctgcgtcagtgtgccaacgttaatcaacaaggcactggcgatagccgcaaactgactggcctcttcggtttcgataaccatcgctggcgatgcaccgagcgccagcaaggtattggcggtaaaggtttgcaccacatcattggtcatgcagtgcacaagaggggaatgttggtgaaaaaggtgtaacgcgtgcgcagattgcgctgaacccagcaggtcgacttgcatagtttgctcctgccataacgtgaagaagcaatgacctggtggtccgtgacttccctacgctggcattatccagatcaggtgatacgggtatttctcagccttcacgcagaagggcaccccgagtcgtttggttgcgatgataaatcgcagaggaggatggtaatgtccagcgcacgcgttgtaaacgaggaaaaacggcagttttacaatcgcgttaataaattatttgatatatgaatccagcaccttcagaacgacatccagatcttcttcacgttttagctcatccccctggtgaacgatgtgttccgtcagatgacctttaatcacttcccgcatcagaccgtttaccgcgccacggatagcagcaatctgttgtaaaactgcagcgcattcgtgcggctcgtcgagcattttcttgagcgccacgacctggccctgaatcttactggcacgcgctttcagtttctgtttatcacggattgtatgagacatggcaacacctggttaacaagaatatgaaaaatcatagcactattaatctactggggggtagtatcaggtactgggggggagtagaatcagattgccgaattaatactaagaattattatcatgaccgaatttacaactcttcttcagcaaggaaacgcctggttcttcatccccagcgccatcttacttggtgcgcttcatggcctggaaccagggcactcaaaaacgatgatggcggcgtttatcatcgccatcaaaggcaccattaaacaagcggtgatgctcggactggcagcaactatttcgcataccgcagtggtctggttaattgcctttggcgggatggtgatcagcaagcgctttactgctcaatcagcagaaccgtggctccagctgatttccgcagtgatcattattagcaccgcgttctggatgttctggcgtacctggcgcggcgaacgcaactggctggagaatatgcacgggcatgattatgagcatcatcatcacgatcacgaacatcaccacgaccatggacatcatcaccatcacgaacatggcgagtatcaggatgcccatgcacgagcccatgccaatgacattaaacgacgctttgatggtagagaggtcaccaactggcaaattttgttatttggcttaaccggtggccttatcccctgcccggcagcaattaccgtgctgttgatatgcattcagttgaaagccctgacactgggcgcaacactggtcgtcagtttcagcattggcctggcgttaacgcttgtcaccgtaggcgttggcgcagcaatcagcgttcagcaggtcgcaaaacgctggagcggatttaacactctcgctaaacgcgccccctatttttccagtctgttgattggcttagtcggtgtgtatatgggcgtacatggcttcatgggcataatgcgataactcaatcctttaggcttgcatgttatcttcagcccaggatgattcttaaatcagctatttccgctgactctctgctcgctaaggatgcttttagggcatcctttcatttacactttttacgaaatcatgggatcactaacaaaatatcgcttgtcagttatattgtatggcaggaaagatatgcgactgatattacagatccccaaagtggagagtttatgaccattaaaaataagatgttgctgggtgcgcttttgctggttaccagtgccgcctgggccgcaccagccaccgcgggttcgaccaatacctcgggaatttctaagtatgagttaagtagtttcattgctgactttaagcatttcaaaccaggggacaccgtaccagaaatgtaccgtaccgatgagtacaacattaagcagtggcagttgcgtaacctgcccgcgcctgatgccgggacgcactggacctatatgggtggcgcgtacgtgttgatcagcgacaccgacggtaaaatcattaaagcctacgacggtgagattttttatcatcgctaaaaaaagccccctcatcatgagggggaaatgcagacaccttgttattttttattattagccacttgctcgtcttgcttgttattagtcgtatttcacgttgattaatgcggttgcctccagtgcgccagatttaactttgtttgtatcgtagacgtagtaactggctgttatcggaattgaaaccgttgtatctgtaagttttgacttcgccgcaacttcctttaaatttgtatatcctttactgctgttagtgatatttaaaagtgtgactggcgaaccattactttcaagaataaatcctacgccattatcttccgcacctttcagtattgtgttgctgttggttaacaagtcagaacttgataaatacacctgcattttccgtgatgtttgattttgttgacctaataaatttttacaacgcagaataatatccccttgtttactatttattgttgctttgttacctgtggctggtaattgtgaaacgggaatactgtctaaagtaattaataaatcgtccggtttgcaggttgtggttatcgggttgtatgacaatgtcagattaaaggaatagacacctgcattttgtgccaatgcatttctgtagctatttacacatgcatcccatgacttgccacctaataaacacagtagaaattgtactgcggcactcccgcgtgtcgatgatgaagcactggataatgtcgcaacaccattaatcatcactgaaccgccgccccccgcagaaacattcacttttgcattactggccgcaggtgtcaccgtaactgaataaccactggtgaaactggtctgattatttgacaacgtgatgttgtttttattggtccattcaaaatgtaaatttaattttatggtatcgttataaagtccaacaataatatccgacgggctcataggggtgatagtatttgtacttacgcatgacgaatcattaaaattatgctcatatgtcgccatttgtgtttgagtaagtgcaaaatccccctgaacaaccaagttgtgctgaacagataactcactataacatgccgcatagctcacaggcataaccatcatcattaatataaatagcattatgcgaatttccatagaaccacctgactattactggcaaatataatttctactttcatcaatctctttaccgaaggtgattgtgcatgaaagtccttgttgcttatcaattgccacattaaccgatggcggtacttcattggtgcgaataaataactgacttccctggccgacaacgccaatattatgaccatggatatcattgacttcataaccaaacgttaatgattgcccatctgctcttaacgcttttataaaccatggcttgcgctgatcggtatcaaaattaaccagtacaaccgcgccgcgataaggggcggcaattttccggttgccacgtaattctgcttcgctatcgctttgcgacacatccagcatcaggtgattttcccgataaggtgtcattccgtcgtatatcaccactccattacggtttgttgtgcgatatttttgcccattgacataagcatctttaattcctggcgcattcatcacagcaaacgtttcggaaagacggttcgccagattaacgccacccgaccaggcgacaatgccccctgaaacactggctccagcctgtcgataagtactcgactgactataactgccattcactgtcgcaaccggcgcgttccaggtcaaattcgccccagctgtcgtttcatttccctgatgttgatgactcaggttgacaccataattgaactgatcccgactccctactgttcctgataatcccgtattatttgaggcaaacccctgatcatcaaacgtcgttgagttagacatatatatttgccgacgaggcgtcgaaacgtcatcaccccaatcaaagggaatcgatataaaaatattaaaacgtttctcttcatgatgattctcgtcataagcctggcttgccgcgagggtatagcttatccgtcgcaggttgttggaataactcaactgataatccttactactgccgctacgcccccagtaatctcgccataacgtacttaatgacacagacccccaaccttctggcaatgactggctcatattggcggaaaagctatttttgcggccaaaatcgttctggtaataatcggcaatgtcatagacatcgttttcatcacggcgataattatctttattgtttgcccaaacgtgatcgttaaatgtccggtaatcacgcgacgaataacgccaggccgccagaccaaaacgcgtcgacgtttggctcacaaatttgttgtaggcaatttgataactttgcccgtcaaacacatcgccgttgtcttgtttactatgcgacttagtggcatcgacggaaatggcaccaatgcgtgtattccagccagcccccaaagtaaacgcgtaataattattcgcgaccatcgagccaccatacagcgtcaataaattattaaaaccatactgataacccgcctggacaaaatcactttgtttgctcgccccttcaatatggctacgacccgccgctaaatcatatttcgacacgccgggttgcagcatatttggcaccgctgcataaggcaccagataggtggttaccgagccgtccgcctctttcacgctgacatcaagatctgctccaccaccggccaactgcaaatctgtaatcgcgaacgggccaggaggaacctctttctgataaaccacaaaaccattctgttcaatagttaccagcgcgttactctgagcaatcccctgcacccgtggcgtaaaattttgtttcgagttaggcaacatctgcatatcacgaaacaaccgcacacctctgaagcgaacagaatcaaaaatatcgcttgatgtgtacatatcacccacgcgaagcgtgccgagaagttgggcaaatccacgttccagatacagggtattgcttttccacacccctggattgttatttgttttactgaaactggcatcagaatgcagttgccaccccagtaaatttaacccgctgttaaaacgtacatatgtactcttgttattacccgacgctttatagtcgctgtaatactgactcagataataagaggtataaaacgcattaataccccgctcccagttttccggtggaacatagccactttccagttcttccacccaggcctgcgggacactgaaatcgagacgaaaaaccccgatatcccaggtatagctcccaccctgaacaagttgctcaaatgttaaacattgcttaccgctggcgaagttatcgctattaatgcctaaccgcttgataacttctcttgataaacatgtttcttgcgggttgtctttaacaataatctcatatttcccgcgccattgcttattgacataaatatcgatgtcatactgccccggtaagggttgattatcatcaagacgaatatttgcaacctgctggtctttcattccacctatcataaaatgggtatcaaaggtttcttcagctgcataagcttcaatgccgagcaataacgctacgattgctgatgcaagtggggtcattctcaacataggcagctcctgcaattaaattttgtcactaatatagttgccatggtcatcgataatggtcagatgccagttatttgcattattacttttgacattaacactctgactttctaagggggcaatcataatagtttcataattgactttgacattattagctttgacatccgaaatcgtcacccaattagctgagtcattttttatcaccaaaccattgccactgcgatttaccagcaattttttaaatgtcgctttatttaccggagcaatacccgctggccggtaaaacaacttaattctgttttgcatcgcaaacttcagtgcattcttaccttcttgctctggactatttggtggaatatccagaacattcagataaaaaatgctttctttattagtgggcagtttattcggcataattttgatttttacttgctgcccggaatttgcccctatttttgccactggtggcgttaacatgaaaggaacctgaattttttctggtggtaatgacgtatcgccatcatcaatccacgcctgcagcagcgaagaacggtttccctggttcatcaactgcaccatcacttctttattttctgccgggtaaataatgcgcgtcccgtagataacaattccggcatgtgcaggaaggaccatagaaaaaatgagtaaagataataatcctttcattttaatgcctcttaaattaaaaggccgccatgggatagcggccatgtttattacctggagaaacttacaattttatttattaatcctgcgccacacgcataaccagagaagataacacatcacctgattgcactgagttatctgtcagtttcaggtattttgctttaaacggaatagcatattgaccttccgctgttttataactctcaatgttaaaaggtgcagaaacatccaggacatcgctgttatcacctaaatagagatagtaacccacggtatcgttgctactggctatcgccttatcgttaccggttattttatcgttggtaatcaacgagagttttacaccagcaacttctttcgggcagctaatttttaacatgctgctggttacaccgactgcatcatcataggtagaatatttagctttaccttcaaagacactggttggtacagtcggcatattaatacttactgaatcaccacccgcttcgaatttacacggagattctgcaatattccccttaatagttaatgttccggtatcaacgtctgcagcaaatactccagcgctcataaaaaaagaagaaaagacagcggcagcaataattgaacgtttcataatatgttccttaataaaatttatttttggttgttaagagtctgtatctcttggaaacaaatttctcacatcaaaaaagttgccgcaatgtaaacacattgttttattgatttaaaacaaattaaccattgcaatataaatacaaaaaatatttaagagtattaactatttatcgcatctatcaattaatgtagatttatgtaaatggtattgttgatatcaataaaaaagccgaaatcatttatataaatgatttcggctttctaaatgcaattaaaatcaggttgccaaattaatcgtagcgatttaacacgattcgacgtttgctatcgctacctgcaacaaccacttctgtcgttacacctttgacgggcgaagaaaacagatgacgggtgtcaacattatacgttaactgaccacaatgctgttgaggttgaccattaaccatagccatactgcatgttgggggactgatcctgccattaatcgctaatgtggcagtctctgaagagaatgcgggagaagccaatccataggcaagaaaaataattcctgacagccaatacttattcattgaacgttatccctgtagtaaaggttatgcctggatagaatgagtgcataacaaactatagctgtacatccactacacagccacgaaggatgataatgaagcattgcctgtatgatcaatcgactttgtagagtttcggacgaaggtccgcagaatattcgcagtattaaataagtgttcattaatgcggcaaaaactaatacaccgcatcaatgtaacatctctgcggtgtatgaagaataaccagaatggttaataggcgttagaccgcgcggaaggaaatctcgcctggaatgacttcaccctgccagtagagctgagctgcaacgcggtcagccagctggcggtagatagcggtaaattcgctctccggacggctgataaccgttggcgtacctttatcgagatcctcacgtaaggagatgtgtaacggcatctgccccagcagctgtgtatggtatttttcagccagtttctctgcaccaccggtaccgaaaatcggttcatggtgaccacagttactgcaaatatgcacactcatgttctcgacaataccgagcaccggaacctcgactttctcgaacatcacaatgccttttttcgcatcgatcagcgcgatgtcctgcggggtggtgaccacgactgcaccggttactggaatgttttgcgccagcgtcaattgaatgtcaccggtgcctggcggcatatcaagcaccagatagtcgagatccggccacaaggtttcctgcaacatctgcattaacgccttgctcgccatcggtccacgccacaccatcgcattgtcgtcagtgaccagataaccaattgaattggttgccaggccatgagacataatcggtgccatatgggtaccgtccggcgaagttggacgctgattttctgcgcccaacattgttgggattgatgggccgtagatatcggcgtccagaatgccgactttcgccccttctgccgccagcgccagtgccaggtttaccgccgtggacgatttacccacgccgcctttaccggaactcaccgcgataatgttcttcacaccgttaattcccggctgattcttcacgcgtttcagagtggctatgttatgcgacagtttccagtcgatagctttcgccccggtgatgcgcagcagttcggcgctacattgctcttttaactcttcgaacgcgctatgccagacaaacggcataaccagttccacatgcaacgtgtcgtccatccaggcgacatggtgcaacgctttcagcgtggtgaggttatgcttcagggttgggtgctgaaaattggccagtgtcccggcgaccattgcgcgcaaggcttctggtgatttggcctgggattgttcgttcatcccgactccttttttgtatagataaaccatcagctgatagtttacctgaagaatatagagaagtacttacttaacattttcccatttggtactatctaaccccttttcactattaagaagtaatgcctactatgactcaagtcgcgaagaaaattctggtgacgtgcgcactgccgtacgctaacggctcaatccacctcggccatatgctggagcacatccaggctgatgtctgggtccgttaccagcgaatgcgcggccacgaggtcaacttcatctgcgccgacgatgcccacggtacaccgatcatgctgaaagctcagcagcttggtatcaccccggagcagatgattggcgaaatgagtcaggagcatcagactgatttcgcaggctttaacatcagctatgacaactatcactcgacgcacagcgaagagaaccgccagttgtcagaacttatctactctcgcctgaaagaaaacggttttattaaaaaccgcaccatctctcagctgtacgatccggaaaaaggcatgttcctgccggaccgttttgtgaaaggcacctgcccgaaatgtaaatccccggatcaatacggcgataactgcgaagtctgcggcgcgacctacagcccgactgaactgatcgagccgaaatcggtggtttctggcgctacgccggtaatgcgtgattctgaacacttcttctttgatctgccctctttcagcgaaatgttgcaggcatggacccgcagcggtgcgttgcaggagcaggtggcaaataaaatgcaggagtggtttgaatctggcctgcaacagtgggatatctcccgcgacgccccttacttcggttttgaaattccgaacgcgccgggcaaatatttctacgtctggctggacgcaccgattggctacatgggttctttcaagaatctgtgcgacaagcgcggcgacagcgtaagcttcgatgaatactggaagaaagactccaccgccgagctgtaccacttcatcggtaaagatattgtttacttccacagcctgttctggcctgccatgctggaaggcagcaacttccgcaagccgtccaacctgtttgttcatggctatgtgacggtgaacggcgcaaagatgtccaagtctcgcggcacctttattaaagccagcacctggctgaatcattttgacgcagacagcctgcgttactactacactgcgaaactctcttcgcgcattgatgatatcgatctcaacctggaagatttcgttcagcgtgtgaatgccgatatcgttaacaaagtggttaacctggcctcccgtaatgcgggctttatcaacaagcgttttgacggcgtgctggcaagcgaactggctgacccgcagttgtacaaaaccttcactgatgccgctgaagtgattggtgaagcgtgggaaagccgtgaatttggtaaagccgtgcgcgaaatcatggcgctggctgatctggctaaccgctatgtcgatgaacaggctccgtgggtggtggcgaaacaggaaggccgcgatgccgacctgcaggcaatttgctcaatgggcatcaacctgttccgcgtgctgatgacttacctgaagccggtactgccgaaactgaccgagcgtgcagaagcattcctcaatacggaactgacctgggatggtatccagcaaccgctgctgggccacaaagtgaatccgttcaaggcgctgtataaccgcatcgatatgaggcaggttgaagcactggtggaagcctctaaagaagaagtaaaagccgctgccgcgccggtaactggcccgctggcagatgatccgattcaggaaaccatcacctttgacgacttcgctaaagttgacctgcgcgtggcgctgattgaaaacgcagagtttgttgaaggttctgacaaactgctgcgcctgacgctggatctcggcggtgaaaaacgcaatgtcttctccggtattcgttctgcttacccggatccgcaggcactgattggtcgtcacaccattatggtggctaacctggcaccacgtaaaatgcgcttcggtatctctgaaggcatggtgatggctgccggtcctggcgggaaagatattttcctgctaagcccggatgccggtgctaaaccgggtcatcaggtgaaataatcccccttcaaggcgctgcatcgacagcgccttttctttataaattcctaaagttgttttcttgcgattttgtctctctctaacccgcataaatactggtagcatctgcattcaactggataaaattacagggatgcagaatgagacactttatctatcaggacgaaaaatcacataaattcagggcagttgagcaacagggaaacgagttgcatatcagttggggaaaagttggcaccaaagggcaaagccagataaaaagtttttcagatgctgcggcagcggcaaaagcggagcttaagctgattgcggagaaggtgaagaaggggtatgtggagcaagcgaaggataattctttgcaaccttcccaaacggtaacgggctctctcaaggtagcggacttatccaccattattcaggaacaaccctctttcgtagcagaaacccgtgcgcctgacaaaaatacagatgctgttttaccgtggctggcgaaagatattgctgtcgtttttccgcccgaagttgtacacaccacgttaagtcatcgccgctttcccggagttcctgttcagcaagcagacaaattgccccaattacgtcgcttagcctgtagtgtgtcgcaacgggataataaaacagccacatttgacttcagcgcctgttctttagaatggcaaaacaccgtcgcccaggcgatcagtcagatcgacggcctgaaaacaacacagttaccatcaccagtaatggctgtactcacggcacttgaaatgaaatgcacaagatataaagtgcgtgaggatgttatggatcagatcgtccaggaaggcggtctggaatatgctactgatgtaataatacaccttcaacagattgatattgaatgggattatgcgaataatgtcattattattctgccgtctggcattgcacctagctacttggagcaatattccagatttgaatgacgcctacgtaaacatttatcactgacggaagagtctctctggcaaaaatgtgcacaaaaacttattgccgcaattccacatattccagaatggcggcaaccattaattgctttgttattacccgaaaaaccagaaattgcacatgaaattgcccagcgtctactggggcaaaaaaaattaccctcgcttgagtggttaaaaatagtggcgactgatgagcacattcttgcctcattagaaaaatatcacgaaccatatgccatttttgatgattactattgtggtgcgatatggtcagccaccgtattacaggagcaaggtgttgcagccctgccccgatttgctccctatgccgcaagtgactactgcgccgatgtgttgcgtcatatcaatcatccgttcgcattgacactgcttatacgtgtagccgggcaaactaaacgctgtcacgatcggatgacgaaagccattgctgcgttcccacatgcagcaatggcggcactgacggaacttcttgggcaaaaagaagagaacagttggcgcattatgctaatgacaatgcttatctcacaaccagcactggcagaacaggtcattccctggctctcgacacccgcagttgccgtactgaaatcatgccagcaacaactgacacagccctcaaaccatgccagcgccgatctactgccagccgtagtagtctcccctccctggctttcgaaaaagaaaaaatcgccgattccggtgctggatttagcgccattaggcattgagccaatctgttatctgacagaagaaatcagtaatcaacttttggcgaaatatatctggtattcaaaacacatcacggttagccatgaagaaagtactaccaacctgttggcaaggatgggttttcaacgacggatcgctggtacatatattaaagctcccgaagcggtagttgaggcatggctaaatgaagattattcaaccttactaagtgaatttaaggtgtttcattcacctaccgggcattattggcagttggggattttgacaacattgccgctggagaaagcagtaaaagcatggaatgcccttaccctatctccacataccgataccgaatactccatgttacattttggactcaaagggttacctgggttagtaaactcacttgcacgctatccacaagaagccttgcccatcacgaattacttcgcagcgagtgagctggctcctgccgtcgcccgtgccttcaacaaactgaaaacgctacgcgaaaacgcccgtagctggctgttgaaatacccggaacatgcccttaccggcctgctgcctgcggcgctcggcaaagccggtgaagcacaggataacgcccgcgctgccttgcgtatgcttaccgaaaacggtcatcagccattactgcaagaaatcgcccgacgttataaccagccggaagtaaccgatgcggtgaacgctctgcttgcgctcgatcccttagataatcacccgacaaaaatccccactcttccggccttttatcagccatcgctctggacgcgcccggtattaaaagcaaatgcccaatcactgccagatagcgccctcctccacctcggtgaaatgctccgcttccctcaggaagaggctctgtatccgggattattgcaggtgaaagacgtctgttccgccgactcactggcgggatttgcctgggatctgtttaccgcctggcagaccgctggcgcgccgtcgaaagagagttgggcgttcactgcgttaggcgttctcggtaacgatgacaccgcccgcaaactgacgccattaatacgcgcctggcctggtgaatcccagcataaacgcgccaccgttgggttggatattctcgctgctatcggtagtgatatcgcccttatgcagcttaacggcatcgcccagaaactgaaattcaaagcattacaggagcgggcaaaagaaaaaattgccgacattgccgagagccgcgaactcacggtggcggagcttgaagatcgggttagcaccggatctcggtctggatgataacggttcgctgctgctggattttggcccacggcagttcaccgtcagctttgatgaaaccttaaaaccgtttgtgcgtgatgtttccggcagccgcctgaaagacctgcccaaaccgaacaaaagcgatgatgaaacgcgggcgaacgatgcggttaaccgctacaaattgctgaaaaaagatgcgcgtaccatcgccgcccagcaggtagcaaggctggaatccgccatgtgcctgcgccgccgctggtcgctggaaaacttccagctcttcctggttgagcatccgctggttcgtcacttaacccgccgtctgatttggggcgtttatagcgccgaaaaccagctactggcttgctttcgcgtagcagaagataacagctccagcaccgctgacgatgatcttttcaccctgccggaaggcgatatctctatcggcactcctcacgttctggaaatatcaccaacggatgctgccgcctttggtcagctttttgccgactacgaactgctaccaccgttccgccagctcgaccgtaacagctacgccctgacagaagccgagcgcaatgccagtgaactgacccgctgggcaggcagaaaatgcccgagtggtcgggtcatggggctggcgaataaaggctggataaagggcgaaccacaggatggaggctggatcggatggatgatcaaacctttgggtcgctggtcgttaatcatggaaatcgatgaaggctttgcggtaggcatgtcgccagccgaactcagcgctgagcagctcttaagcaagctgtggctatgggaaggcaaagcagaaagatatggctgggggagtaattcaacacaggaagcgcagttctccgtaatcgatgccatcaccgccagcgagctaattaacgatattgaagccctgtttgaataaggaaagagcatggacaaggaattaccgtggctggcggataacgcccaactggaactgaaatataaaaaaggcaaaacgccgctcagtcatcgtcgctggccgggcgaaccagtgtccgttatcactggaagtctcatccagacattgggtgatgaattgctacaaaaagctgagaagaaaaaaaacattgtctggcgttatgagaatttttcactggagtggcagtccgccatcacgcaggccatcaacttgatcggcgaacacaaaccctcaatcccggcccggacaatggcggcgctagcctgtatcgcgcaaaatgacagccaacagttgctcgacgaaatcgtccaacaagaggggctggaatatgcgactgaggtggtgattgcacgccagtttattgcgcggtgttatgagagtgatcctctggtagtgacattgcagtatcaggacgaggattatggctatggttatcgctcagaaacctataacgaattcgatctccgactgcgtaagcatctctctctggcagaggaaagctgctggcagcgttgcgccgacaaactcattgccgcactaccaggaataaacaaagttcgccgcccttttattgcgctgatcctcccggaaaaaccagaaatagccaatgagttggtaggccttgaatgcccgcgaactcattttcattctaaggagtggttaaaagttgttgctaatgaccccacagcggtgagaaaactcgaacactactggagccaggatatatttagcgatcgagaagccagctacatgtcgcatgaaaaccacttcggctacgcggcctgcgccgcccttttgcgcgaacaaggactggcagccattccgcgcctcgcgatgtatgcccataaagaagattgcggcagtctgctggtacaaattaaccatccgcaagtcatccgcaccttgctactggtggctgataaaaacaaacccagcctgcaacgtgtagctaaataccataaaaacttcccccatgcgacgctcgccgcactggcagaactgctggcgttaacagaaccaccagcccgccctggttatccaatcatcgaagacaaaaagctgcctgcacagcaaaaagcacgcgatgaatactggcgtacgctgttacaaacgctgatggcatcgcagccacaactggcagcagaagtgatgccgtggttaagtactcaaccccagtcagtgctgaagagttatttatcggcaccgcccaaaccggttattgatggcaccgataacagcaatctgccagaaatcctcgtttcaccaccgtggcgtagtaagaaaaaaatgacagctccacgtcttgatttggcaccgctcgaattaactccgcaagtttactggcaaccaggcgaacaagagaggcttgccgccactgagcctgcccgttatttcagcacggaatctcttgcgcaacgcatggaacaaaaaagtggacgagttgtattacaggaactgggttttggggatgatgtatggctgtttctgaattatatactccccggaaaactggatgctgcacgcaattcactctttgttcagtggcattactaccaggggcgggttgaagagatcctgaatggctggaactccccggaagcacaattagcagaacaggcgctccgcagcggtcacatagaagcgttaattaacatatgggaaaatgacaactactcacattatcgtccggaaaagagtgtctggaacctgtatttattggcacagttgccgcgtgagatggctttgaccttctggctgcgtatcaatgagaaaaagcatctgttcgcgggtgaggactattttctcagtatcctcggattggatgcgctaccaggtctgctgttggctttttcacatcgtccaaaagaaacatttccgttaattttaaattttggcgcaacagaactggcgctgcctgttgcccacgtctggcgacgtttcgcggcgcagcgtgatctggctcgccagtggattttacaatggccggaacatacggctagtgcacttatccctcttgtctttaccaaacccagcgataatagcgaagccgcattacttgccctgcgtttactgtacgaacagggacatggcgaattgctacaaaccgtggcaaaccgctggcagcgtacagatgtatggtctgccctggagcagttgcttaaacagggtccaatggacatttacccggcacgcattccaaaagcccctgatttctggcatccgcaaatgtggtccaggccgcgccttatcactaataatcaaactgttaccaatgacgctctggaaattatcggcgaaatgctgcgctttacccaggggggacgtttttatagcgggctggaacaactgaaaacgttctgccagccacaaacgctggcagcttttgcctgggatctcttcactgcgtggcaacaagctggtgcccccgcaaaagacaactgggcatttctggcgttaagtctctttggtgacgaaagcacggcacgggatctgacgacacagatcctcgcctggccacaagaaggcaaatctgcccgtgctgtcagcggcctgaacatccttaccctgatgaataatgatatggcgctgatacagctgcatcatatatcgcaacgggctaaatcccgccccttacgtgataacgcggcggaatttcttcaggtggtcgcagaaaatcgcgggctaagccaggaagagctagcggacagattagtcccaaccctgggccttgatgatccgcaggcgttgagttttgattttggtccccggcagtttaccgttcgcttcgatgaaaatctcaacccggttatctttgatcagcaaaacgttcgccagaaaagcgttccccgtttgcgcgccgatgacgatcaactgaaagcgcccgaggcactggcccgactaaaagggctaaaaaaagatgctactcaggtgagcaaaaacctgctcccgcgtcttgaaacggccctacgtaccacccgacgctggtcgctggcagattttcattctctgtttgttaatcatccctttacccgtctggttacccagcgattaatatggggggtttatccggcaaatgaaccgcgttgtttactcaaagcctttcgtgtggccgcagagggggagttctgcaatgcgcaagatgagccaattgacctgcctgcggacgctctgattggcattgcccacccgttagaaatgacagcagaaatgcgcagtgaatttgcacagctttttgccgattacgaaattatgccgccttttcgccagttgtcgcgccgcacggtgctgctcacacctgacgagtcaaccagtaacagcctgactcgctgggaaggtaaatccgctaccgttgggcaacttatgggaatgcgatacaaaggctgggagtcaggctatgaggacgcatttgtctataacctgggtgagtaccggctggtccttaagttttcacccggttttaaccactacaatgttgatagcaaagcgctaatgagcttccgttctcttcgagtgtaccgtgacaataaatccgtcacttttgccgaacttgatgtgtttgatttgagtgaggcgttaagcgcacctgacgtcattttccattaaaacacagcgggcagtgatgcaactgcccgttatcaacacgacttaccagcggggaaagcgatgatcgtgcaaaaagagctggttgctatttacgattatgaggtccctgtacctgaagatccgttttccttcagacttgagatccataaatgctctgaattatttacaggttccgtctatcgactggagcgattccggctacgtccaacatttcatcaacgtgatcgagaagatgctgacccgctaataaatgatgcgttgatttatataagagatgagtgtattgatgagcggaaattacgaggtgaatcacctgaaactgtaatagcaatttttaatcgtgaactacagaatatattcaaccaagaaatagaataatatactctaaataattcaaattggtccgatccggcgcaacgtcccaatggcctggattataaatctcattatcttaattgcaacggggtccagccgtggttataattcgttcgttggaacacgatgttgcacaggctgtggtgttaggcctgaaaatagtaaataaaagaacctgcctcaccagcaggtttttttatttactgtgatctgctttccagatatttttcgctcaaacaactaatgcgccaaacatttattgcgcgtaaaatatcgtttatttcattaatacatttcagggatgaatatatgtcaccgcagaataatcatctgcagcgtccgcctgctgctgtgttatacgccgatgaactggcaaaattaaaacaaaatgataacgcaccttgcccgcccggttggcagttaagtttgcctgcggcccgtgcttttatccttggcgacgaagcgcaaaatatcagccgtaaagtggtgattagcccctccgctgtcgaacgtatgttagtcactcttgctaccggccgcggtttgatgttggtgggggaaccgggtaccgcaaaatctcttctttctgaattactggcaaccgctattagcggcgatgccgggttaaccatccagggcggggcatctaccaccgaagatcaaatcaagtatggctggaactacgccctgcttatcaatcatggtccgtcaacggaagcgctggtccctgccccgctttatcagggaatgcgcgacggcaaaatcgtccgtttcgaagagataacgcgtacaccgctggaagtgcaggactgtctgttaggtatgctttctgacagggtgatgacggggccggaactcactggtgaagccagtcagctctatgcgcgagaaggctttaatattattgccactgccaatacccgcgatcgcggcgtcaatgaaatgagtgctgcgctaaagcgtcgcttcgattttgaaacggtttttccgattatggatttcgcccaggagttggaactggtcgccagtgcttcggcgcgtttgctggcccatagcggtattccgcataaagtgcctgacgcggtactggaattactggtccgcaccttccgcgatctgcgtgccaacggcgaaaagaaaacgtcaatggatacactgacagcgattatgtccaccgctgaagccgtgaacgtggcccatgctgtgggcgtccgcgcctggtttttagcgaatcgcgcgggggagcctgccgacctggtggaatgtattgccggaaccatcgtcaaagataacgaagaagatcgcgcgcgtctgcgccgttacttcgaacagcgtgtcgccacacataaagaagctcactggcaggcttattatcaagcccgccaccgcctgccgtgaggaaagatgcatgagcgagccgttaattgtcggcatccggcatcatagtccggcctgcgcccggctggtgaaatcgttaatcgaaagccagcggccacgatacgtgttgattgaaggcccggctgattttaatgaccgggtagacgaactgtttttagcccaccagcttccggtagctatttacagttattgccagtatcaggacggtgcagcccccgggcgtggtgcctggacgccatttgctgaattttcgccggagtggcaggcgctacaagccgcacgtcgcattcaggcacaaacttacttcatcgatttgccttgctgggcgcagagtgaagaagaggacgattcgcctgatacgcaagatgaaagccaggccttactgctgcgtgccacccgcatggataacagcgataccctgtgggatcacttgttcgaagatgaaagccagcaaactgcattaccctctgcgctggcgcactattttgcccaactgcggggcgacgcctccggcgatgcgctcaatcgtcagcgcgaagcctttatggcccgctggattggatgggcgatgcagcaaaataatggcgacgtgttagttgtctgcggtggctggcacgctccggcactggcaaagatgtggcgcgaatgccctcagaaaattaacaagccagaattgccctcgctggcagatgccgttacaggttgttatctcacaccctacagtgaaaagcgccttgatgtgctggcaggatacctttcaggaatgcctgccccggtatggcaaaactggtgctggcagtggggcttgcagaaggccggtgaacaactgctaaaaactatccttacccgtttgcgccagcacaaattgcccgcttctaccgcggatatggctgccgctcatctgcatgcgatggcgctggcacagttgcgcggtcatacactaccgttacgcactgactggctggatgccatagcaggctcgctgattaaagaagccctgaacgcgccgttgccgtggagctatcgcggcgttattcatcccgataccgatccgattctgctaacgttgatagacacattagcgggtgacggattcggtaaacttgccccttctacgccacaaccgcctctgccaaaagatgtcacctgcgaactggaacgtaccgcaatctcccttccggcggagcttaccttaaatcgctttacccccgatgggctggcgcaaagtcaggtgttacatcggctggcaatactggagatccctgggattgtacgccagcagggaagtacactgacacttgcaggcaacggtgaagaacgctggaaattaacccgcccgcttagccagcatgcggcattgattgaggccgcctgttttggtgccacactccaggaagccgcacgcaataaattagaagccgatatgctggacgcgggcggaatcggcagtatcaccacatgtcttagccaggcggcgttagcgggtctggcgtccttcagtcaacaattactggagcaactcacactattaatcgcccaggaaaatcaatttgccgaaatgggccaggcgctggaagtgctttatgccttatggcggctggatgaaattagcggtatgcaaggcgcgcagatattacaaacgacgttatgcgcgactatcgatcgcacgctgtggctgtgtgaatctaacggcagaccggatgaaaaggagtttcacgctcacctgcatagctggcaagcgctttgccatattctgcgcgatctacatagcggcgttaatttacccggcgtttctctttctgcggcggtagccttactggagcgacgcagtcaggcaattcatgccccggcgctggatcgcggcgcggctcttggcgcactaatgcgtctggaacatcccaacgccagtgccgaagcggcgctgacgatgctggcgcagttatccccggcacaatctggtgaggcgctgcacggtttgctggcgctggcccgccatcaactggcctgtcagccggcatttatcgccggtttcagcagtcatttaaatcaactgagtgaagccgattttattaacgccctgcccgatttacgcgcggcgatggcctggctaccaccacgagaacgcgggacgctggcgcatcaggtgcttgagcattatcaactggcgcaacttcccgtttcggcgctgcaaatgccgttgcattgtccaccacaggccattgcacatcatcaacaactcgaacagcaggcactggcatcgctgcaaaactggggagttttccatgtctgaactgaacgatcttctgaccacccgtgagctacaacgctggcgattaattcttggcgaagcggcagaaacgacgctttgtgggctggatgacaacgcccggcagatagaccacgcgctggagtggctgtatgggcgcgatcctgaacggctccagcgtggtgaacgttccggtggattaggtggctcaaatctcaccacccctgagtggatcaacagtattcacacgctgtttccgcagcaggtgattgagcggctggaaagcgatgccgtgctgcgctacggcattgaagatgtggtgacgaatctcgacgtgctggaacgtatgcagccttctgaaagcctgctacgcgctgttttgcacaccaaacatctgatgaaccccgaagtactggctgccgcccgccggatagtgtgccaggttgttgaagaaattatggctcgactggcaaaggaagttcgtcaggctttttctggtgtccgcgatcgccgtcgccgttcatttattccactggcgcgaaactttgatttcaaaagtactctgcgcgccaacctgcaacactggcacccgcaacacggcaagttgtatatcgaatccccccgctttaacagccgcattaaacgccaaagcgaacaatggcaactggtcttactggttgatcaaagcggatcgatggtcgattcggtgatccactctgcggtgatggcggcctgtttgtggcagttacccggcattcgtacccatctggtggcgtttgacacaagcgtcgttgatctcacggcagacgttgccgatccggtagagttattaatgaaagtacagttgggcggcgggaccaatatcgccagtgccgtggagtatggtcggcaacttattgaacaaccagcgaaaagcgtcattatcctcgtgagcgatttttacgaagggggttcatcatcattactgacgcatcaggtgaaaaagtgtgtccagagcggcatcaaagtgctgggactggcagcgctcgatagcaccgcaacaccttgctatgaccgcgatacggcccaggcgctggttaatgtcggcgcacaaatagccgccatgacgccgggcgagctggcatcatggcttgcggagaatcttcagtcatgaattcactacgtccggaattattagaactgacaccgcaggccctgacggcgttaagcaatgccggttttgttaagcgcagtcttaaggaactggaaaatggcaacgtcccggagatcagccatgagaacgacgctttaatcgccaccttcagtgacggtgtccgtacccagctggcgaacggccaggcactgaaagaggctcagtgcagttgcggggccaacggtatgtgccgtcatcgcgtgatgctggtgttaagttatcaacgactttgtgccaccactcagtctacggaaaaagaagaagagtgggatccggcaatctggctggaagaactggctacccttcccgatgctacccgcaaacgcgcacaggcgctggtcgctaaaggcatcaccattgagttgttctgtgcgccgggtgaaattccctctgcccgcttaccgatgagcgatgtgcgtttttattcccgcagcagtattcgtttcgcccgttgtgattgtattgaaggcacactttgcgaacatgtcgtactggcggtacaggccttcgtcgaggccaaagcgcagcaagcagaatttaaccatttaatctggcagatgcgcagcgaacacgtcacatcatctgacgatccgtttgccagcgaagaaggcaacgcgtgtcgtcaatatgttcagcaattaagccagacattatggcttggcggcatcagccagccgctcatccattacgaggcagcattcaaccgcgcattgcaggcggcagagacctgcaactggcgctgggtgagtgaatcgctacggcaactgcgcgccagcgttgatgccttccacgcccgcgccagccactataatgccggagaatgcttacatcagcttgcggcattaaacagtcgattaaattgcgcacaagagatggcccggcgcgacagtattggtgaagttcctcctgtgccgtggcgcacggtcgttggctctggcattgccggagaagcaaagcttgatcatctgcggctggtgtctttaggtatgcgttgctggcaggatattgagcattatggtttacgcatctggtttaccgatcccgacaccggcagtattttgcacctttcgcgcagttggccgcgaagtgaacaggaaaactcaccggcagctacgcgtcggctgtttagttttcaggctggcgcactggcgggcgggcaaattgtttcacaagcagcaaaacgcagtgccgatggcgagctgctgttagctacccgcaaccgcttaagcagcgttgtgccgctgtcgcctgatgcctggcaaatgttgagcgcgccgttacgccagccgggcattgtggctttgcgggaatatttacgccagcgtccccccgcctgcatacggcctcttaatcaggtcgataacttatttattctgccggtcgctgagtgtatttcgctcggttgggacagcagccgccagacgctggatgcgcaggtcattagcggcgaaggggaagataatgtgctgacgttatcattaccagcctcagccagcgcaccttatgccgttgaacgcatggcggcgcttttgcaacaaacagacgaccccgtgtgtctggtttctggctttgtcagttttgttgaagggcaattgacactggaaccacgggtgatgatgacaaaaacccgtgcctgggcgctggacgcagaaactacgcctgtggcaccgctaccttctgccagcgttttgcctgtgccgtctactgctcatcagttgctgatacgctgccaggcgttacttattcaactgctccataacggctggcgctatcaggaacagagtgctattggtcaggcatagttgctggcgaatgacctcaccgcggtgggtttttatcggctggcacatgtgttgggacaatttcgtaatacagaaagcgaggcacgggtagaagcaatgaataacggtgttttgctttgcgaacaattattccccatgcttcagcaacaaggatgaaatagtgctttttactaagagttctactccagttccggactgctcacgccacggtattaggcatatcctatatagcccctggtgagagtcaccagttccttgattaaataaaatggagttttacatgaaggctttcaataagctgttttccctcgttgttgcatctgttctggttttctctcttgctggctgcggtgacaaagaagaatcgaagaaattcagcgccaatctgaacggcactgaaattgccattacctatgtctacaaaggtgacaaggtgcttaagcaatcttctgaaaccaaaattcaatttgcctccattggtgcaaccaccaaagaagatgctgccaagacacttgagccgttaagcgccaaatacaaaaacatcgcgggtgttgaagaaaaattaacctataccgatacctacgcgcaggaaaacgtgactatcgatatggaaaaagtggattttaaagccctgcagggtatttcaggaatcaacgtttctgctgaagatgccaaaaaaggtatcactatggcgcaaatggaactggtgatgaaagccgctggttttaaagaagtgaaataatcggttggcggtcatgctctaaacatgaccgccaattttttagccttttttcacatgctggcgcgctgccagtccacgcagaaaataacgtaaaaattgatcgccgcattcgcggaagtttttatgatccggtgcgcgcatcatcgctgtaatttccggcatcgaaacgcggaactgctgttcggtgaggatagccagaatgtcatcggttttcagcgaaaacgcgatgcgtaattttttcagcacgatgttgttattaatgcgacgttccggctccagtgccggagcagactcatccttgccgcgtttttcataaatcaggccattgaggaatgacgacaaaacaatgtccggacaacgctgaaaaccctcttcgtcttctttacgtagccagacggcgatctgttccgcggtggcttcgacattacccagcgccagaatacgcaccaggtcattattattggctttcaaaatgtagcgcacgctgcgcagaatatcgttacttagcatgaggccttcaggtgttgatgaggcaaaaagccattttagcagtcttttacaggccaatcgcctcttttaagcttttcagataacggcggctgaccggcacggttaagccattacgcaaaatcaactcggcctggccgttatcttccagacgaatctcctgtaaatgcgcgaggttaaccagatactgacgatggcagcgcagtagtggtgtacgactttccagggtacgtaatgtcaattcggtaaagccctctttcccttcgtggctggtaacgtagacaccgctcatccgactgctgacaaatgccacatctttcatttgcagcaaataaatccgactatgccccgtacaagggataaatttcagcgcctgttgattttccggtaacagcgaaacatcctgcttgctgcgctcctgacgcaatcgcgccagcgttttctccagtcgcgcttcatcaattggcttcagcagataatcaaaggcatgttcttcaaaggctttaattgcgtattcgtcaaacgcagtgagaaaaacaatatacgggcgatgttcgggtcaggcatccccaccatttccagaccactgatgcgcggcatctggatatcgagaaacagcacatccgggcgcagtttatgcaccgcgccgatcccttccacggcgtttgaacactctccaacgatttcaatatcgctctgctcctgcaaaaatacacgcaggttctcccgtgctaacggttcatcatcgacaattaagactttaatcatgcctcgtccctccatggtagtcgtaacgttattcgggtgtaactatcaggctcacaggcgacgcttattccatagtcatcgccaaaccgttcacgtaaacgcttatccaccagattcatccccagcccactggcattggttaccggttgatacaaaccggcattgtcttcgatctccagcatcaaatgttgcccctcacgtcgggcgctgattgccactcgccctgtatccagcagttgtgatgtcccatgtttaatggcgttttccactatcggttgcagggtaaacgcgggcaattgctgctgggataattcttgcggaatagcaatgttgacctgcaaccgcgactggaagcgcgccttttcaatttgcagataagcattcacatgttcaatttcgtcggcgagagtaacaaactccgaaggccgctttaagtttttgcggaaaaaagtggaaagatactgcaccagctggctggcctgttcgctgtcgcggcggatcaccgctttaatggtgttaagcgcattaaacaaaaaatggggattcacctgggcgtgaagcagtttgatctctgactgggtgagcatcgctttttgccgctcatattgcccggcaaggatctgcgccgaaagcaattgcgcaatcccctcacccaacgtgcggttgattgaactgaataaacggtttttggcttcatacaatttgatggtgcccatcacccgctgattttcaccacgcaacggaattaccagcgtcgaccccagtttgcattgcggatgcaaagagcaacggtaaggtacttcgttgccatcagcgtagaccacttcaccggtttcaatcgcttttaaagtataagttgaagaaatcggtttgccgggtaaatggtggtcgtcaccaattccggtaaaggccagcaatttctctcgatcggtaatcgcgactgcaccaatatccagttcctgatacagcacctgagccactttcatgctgttcacttcgttaaacccctggcgcaaaatgccttccgtcgaggctgccactttcagcgcagtggcagaaaaagccgaagtgtatttttcaaacatcgcgcgtttatcgagcaatatacgcataaacagcgccgcgccgacggtattggtgaccatcattggcgcagcaatattactcaccagacgcaccgcatcttcataaggtcgggcgatcgcaaggatgatcagcatttgcaccatttcagcgacgaacgtgacggcaccggcggtaatggggttaaagactttatcagtgcgcccgcggcggatcaggatgctgtgtaccaggccaccgagtaatccttcaacgatggtcgagatcatgcaacttaacgcggtcatgccccccatcgaatatcgatgtaagccgccggtcagcccaaccagcccaccgacgaccggaccgccgagtaagccgcccattaccgcgcctatcgcacgggtattggcaatagaatcgtcaatgtgcaacccaaaccaggtgcccatgatgcagaagatggaaaagacgatgtagcagagaaatttatgcggcagacgaaccgtgacctgcattaacggtatgaataatggcgttttactcattaaccatgcaatgactaaaaaaacgcacatctgctgaagcagcagcaacaccagattaaaatcgtacatacccgcaaaccacacttccctttaaaacgcgtaacatacattgcctgcgtttaactttctttgaactcttgcagaaaaatgagaattcgtgagtacgatcactcaaaatcgcctggcaaaaataaaatcaccctatagatgcacaaaaaacgggcaaaactacctggttcgcaaaactgcgtctaaagttaaaccgggacctcgcgagcaagggtgagacgatggcgctttacacaattggtgaagtggcgttgctttgtgatattaatcctgtcacgttacgcgcgtggcagaggcgttacggattgctgaaaccgcaacggacagacggcggtcatcggctgttcaacgatgccgatattgaccggatccgcgagatcaaacgctggatcgacaacggcgtgcaggtcagcaaagttaaaatgctgctcagtaatgaaaatgttgatgtgcagaacggctggcgcgatcagcaagaaacattactgacttacctgcaaagcggcaatctacatagcctgcgaacgtggatcaaagagcgcggtcaggattaccccgcccagacactcaccacacatctgtttattcctctgcgccgacggcttcagtgccaacaaccgactctccaggcgctgctggcgatcctcgacggcgtactgatcaactacatcgccatttgtctggcttcggcacgtaaaaaacagggtaaagatgcgctggtggttggctggaatattcaggataccacccgtctgtggctggagggctggattgccagtcaacaaggatggcgcattgatgtcctcgcccactcgctcaatcaactacgccctgaactattcgaaggccgtacattgctggtgtggtgcggtgaaaatcgaacctccgcccaacagcagcaactcaccagttggcaagaacaaggccatgatattttcccactcggcatttaatgattcgttaacaaatgcgctttactgtacaatcctttcgttaacataaggagtgcattatgcgcatagctaaaattggggtcatcgccctgttcctgtttatggcgttaggcggaattggtggcgtcatgctcgcaggttatacctttattttgcgtgctggctaagcgcctgcaccagcctttcaaacaggcggtctgcgatgatcgccgccagtgccaccagtaacgccccctggatcacatacgcggtattaaatccgctaagcccgatgatgatgggcgtacccagcgtgctggcccctaccgttgaggcgatcgtcgccgtaccaatgttgataatcaccgaagttcgcacgcccgccagaatcaccggagccgccagcggtagctcgaccttacgcactcgctgaccacgactcattcccatacctttcgcaacttctgtcacgctggcatcaatcgctcccagcccggcaagtgtcgcctgcaggacgggcagcacaccgtaaaggatcaaggcgataatcgctggttgcagaccaaagccgatcaccggaacggcgatcgccagcactgcgacgggcggaaaagtctgtccaacggcggcaatagtttccaccagtgggcgaaattccgcgccccacgggcgagtgacagcaattccggcaccagtgccaatgatcaccgcaaacaaactcgaaattcccaccagccagaaatgagccagtgccagagctgcaaaactttcttgctgataaacgggtcgtggcagttgtgggaacaaggcagcaaacagcggctggctgtaaggcagccagaaaatcagcgccacaaacagagcaatgagccagaacagcggatcgcgcaacatcttcatacgcttacgcctccaccagcagatcctgaaaatgcagcgtgccgcaaggctggccctgcatgttcaccaccggcagcacctcgcatccccgcgcaacaaacagagagagcgcatcgcgtagcgtcatctcttctgccagtgcctcaccatctgctcgttcttcgcgacgcacgtaatccgccacactacgtaacgaaagcaggcgcacacccagttcactacgtccaaaaaactggcggacaaaatcattcgccggacgagtcagcatcgtcagcggattgccctgctgcactacttcaccgtgatccatcaataccagatgttctgccagccgtagcgcctcatcaatatcatgagtgaccagcacaatggtacgccccagcaaacggtgaatgcgcgtcatctcttgttgcaacgcgccgcgcgttaccgggtccagtgcgccaaaaggttcatccattagtaagacttgcggatcggcagccagtgcacgcgccactcccacacgttgctgctgaccaccggaaagctgatgcggataacgctcacgcaaatttgactccagccccagtagcgccattaattcgtcgatacgatcgtcaatccgcgcccgcgaccatttttgtaattgcggcacggtagcgatgttttgcgccacgctccagtgggggaacaggccaatagattgaatggcatagcccatccggcggcgcaactccagtactggcagcgagcgaatttcttctccggcaaagcggatctctccgctgtcatgctccaccaggcggttaatcattttcagggtggtggatttgccggagccagatgtgccaatcagcaccgaaaaactcccttcctgaaaattgagattgagatcgttaacggctttttgtgcgccgaacagtttgctgacatggctaaattcaatcattacgtttcaccttcagcagtgcgataagcaaatcgaacagcgcgtcggtaagcaccgccagaacaattaccgggatcacccccagcaacactaaatcaatggcgctgcttagcagcccctggaaaaccagcgcaccaaaaccgcctgcgccgattaacgccgcaatcaccgccatacctacagtttgcaccatcaccacccgcaggctgcgcagaaataccggtaacgccagcggtaactgaacatgcaggaaacgctgcgccccgctcatccccatcgctctggcgctttccagcacatcgcgcgggatctggttcaaaccgactaccacgccgcgcaccagcggcagcaaggcatagagcaccagcgcaatcagtgcgggtgtcattccggttcctgctatgccgagcgtccccagccacggaaaggccgtaaccagcgcggcaagcggcgcaatcaacaggccaaagagcgccaccgaaggcacggtctgaatcacattgagcagagaaaaaattgccccctgccgagcagtggaaaagtagcaccagatgcccaacggcacaccaatcactaacgcaggcagcaccgcaccaaacagcaacgtcagatgttgtgccagcgcgtcgtcaaacacatcctgacggttggcgtattctttcattagtgagagatcgttaagcgtgccggagtacagcaaccacagcggaataatggcaatctgcatatgcaacaaccagcgccacagcggatgcgtggagattcggcggatggcatcgctacaggccagcaatgccagcgccgcagccagccagaaaccactgccgaggctggtacgcgccagcgcactgccattttgcgccagttgggtcgccgcctttccagctccccacaccagcaatacgaagacgaattgcgccagaatgagtgcacaaatgctgccttttttaccgggaataaaacaggccgtcagccaggcgcaaccaacgcccaccagcatccagatcgtttgcggccacagctgccagagatgacgcccctcacccgaaactaaacgattaggcgcgtaactgataaacggcagcgccgctgcgattgccgtcagcaacagcagcagcgccagaacaggattaatacggaaataagtcacgggaaattacttcgtccaccctttttgtttcaggtagtcggcagccacttttttggcatccagtccttccacagcaatgctggcattcagttgctgcaatgtttttgcatcgaggctggcgaagactggctgtagccactgtgccatttgcggatactccctcaacacggactcacgcaccactggtgcaggcgcgtagataggttgcacaccttgcggatcgcttaaggtttgcagccccagcgccgctaccgggccgtcagtgccgtaagccattgcagcattaacgccagaggtttgctgggcagcggctttgatcgtcaccgccgtgtcgccaccagccagtgacagcaactgatcctgaccgagcttaaagccataggctttttcaaacgcgggtaacgcatcggcgcgttcgataaactctgccgaggctgccagtttgaaggtgccgccctcttgcagataacgactcaggtcggcaagcgaagtgagtttatttttctctgccacatcctgacgcacggcgatagtccaggtgttatttgcaggcgcgggcgtcagccagattaacttgttgtgctccgaatcgagctttttgactttctcgtaaccttgctgcgcgtttttccacgctgcatcgttttcatctttaaagaagaaagcgccattgccggtatattccggatagatatccagttcaccggaagtaatcgccccgcgcaccacaggagtcgttccgagttgcactttattcaccgtcggtacgccgtggctttccagcacctgcaaaatgatattgccgagtagcgcaccttcggtatcgatttttgaaccgactttaacgggggaagccgcctgtagcggcaggctcacggctgccaacataaccagtgaacctgcccagagctttaagagtggcatgatgctttcctcattcttttactgttgttttcagcgaattaagagaaaagcatagttgataatggcggggttagcttgagcggaaggattcagttgcagaatcagataaatacttaagaggcatattcggtccggcgtttcctgccggatgcggcgcgagcgccttatccggcctacaaagggcgcaaacgtcgcgcccttactaaagcattacagcaactcaaactcgcctttcttaacgcgtgcggaatcagtgccgataaagacattgaacttgccaggctcggcgtcatatttcatctgttgattccagaacttcagcgcctcaatatcgatcgggaagctgacagtctgagtttcgcccggtttcagggtgattttctcaaagcctttcagctgtttcacagggcgactcatggaagccgtcacatcctgcaagtacatctgcactaccgtggcaccctcgcgcttaccggtgttcgtcacctgcacgctggcagtcactttgccgtcacgcttcatggtcggcgcagaaagtttcacatcagagacggtgaaagtggtgtagctcagcccatagccgaacggatacaacgccccgttagcttcatcaaaataacgcgaagtgtatttgttcggcttgtcggcattatacgggcgaccggtattcagatggctgtagtacaccgggatctgcccgacagaacgcgggaaggacattggcagcttgccggacgggttgtaatcgccaaacaatacatcggcaattgcattaccgccttcagtccccgcaaaccaggtttccagaatcgcatcagcctgctgatcttctttcaccagcgccagcggacgcccgttcatcagcaccagcaccagcggtttaccggtggctttcagcgccgcaatcaagtcacgttggctttgcggaatagtgatatcggtccggctggaggcttcgtgcgccatcccctgtgcttcaccgactacagccaccaccacatcagattgtttcgccgtctgcaccgcttcatcaatcatctcttgcggcgaacgcggatcgactttgaccgcttcttcatactgattcaggaaatcgataatgcctttgtcactggtaacgttcgcccctttggcatacagcactttaccgttttcaccgacggcatttttaatcccggtcagtacggtcacggattgatcggcaacaccggctgcggaccagctgcccatcacgtcacgtttactgtccgccagtggcccaaccaccgcaatggtggccgattttttcagcggtaacgtttcgagacggtttttcagcaacaccaagctttcgcgcgccacttcacgcgcttctttacggtgcaggcggctttcggcattggtatccaccgggtcagactctttcggccccaaatggctgtatgggtcgttaaacaaccccatatcatatttaacgttcagtacatggcgggcagcatcgtccagctctgccatcgtcactttgccggatttaatcaacccaggcagatacttcgagtagtactcgtcgctcatgctcatgttgattccggatttcagcgccacgcgcaccgcatcttccgggtctgccgccgtgccatgtttaatcagctctttgattgcaccgtgatcggaaacggtgatgcctttaaagccccactggtcgcgcagaacatctttcagcagccaggaatcggaggtggctggcgtgccgttcagcgagttcagcgccaccatcaccgcgccgctgcctgcgtccagccccgctttgtacggcggcatataatcattaaacaggcgctgcggactcatatcgacggtgttgtactctttaccgccttctaccgcgccgtatgcggcaaagtgtttgacgctggtcatcaccgagtagcgatctgccgggcttttaccctgcatcgcttccaccatggttttacccattgttgaggtgagatacgtatcttcgccaaaaccttcggaagcacgtccccagcgcggatcgcgcgagacatcgaccatcggtgcccaggtcatattcaggccatcatctgccgcttcataagcagagacacgtccgaccgttttcactgcatcgaggttaaaagacgaggccagaccgaggctaatcgggaacaccgtgcgctgaccgtgcagcacgtcgtaagcaaagaaaagaggaattttcaggcggcttaattccatcacctgatcctgcatggcgcggatatcctgacgggttacggtgttgaaaatcgccccaacctgaccgtctttgatcatctcgcggatcgcctctttcgggttatccgggccgacgctgattaagcgcagctgaccaattttctcatcaactgtcattttcttaagcagttcggtgacgaacgcatcccgcgcttcgggcgttaatggatggttgccgaataaatcatccgccagtgctggctgcagggccagactcaccgcgattcctactgaacatagccatttcatatggatttttcttcctttgttgcccgacgtggcagcgaaaatggtgcaaaaaccgtagtttgccataagcatgatggagagagaaaaagaatgctcagtttattgtctgaattttcaaaatattcactcgctgaattgttatacaaggcgctattctagtttgtgatattttttcgccaccacaaggagtggaaaatgtcttccatgacaacaactgataataaagcctttttgaatgaacttgctcgtctggtgggttcttcacacctgctcaccgatcccgcaaaaacggcccgctatcgcaagggcttccgttctggtcagggcgacgcgctggctgtcgttttccctggctcactactagaattgtggcgggtgctgaaagcctgcgtcaccgccgacaaaattattctgatgcaggccgccaatacaggcctgaccgaaggatcgacgccaaacggtaacgattatgatcgcgatgtcgttatcatcagcaccctgcgtctcgacaagctgcacgttcttggcaagggcgaacaggtgctggcctatccgggcaccacgctctattcgctggaaaaagccctcaaaccgctgggacgcgaaccgcactcagtgattggatcatcgtgtataggcgcatcggtcatcggcggtatttgtaacaactccggcggctcgctggtgcaacgtggcccggcgtataccgaaatgtcgttattcgcgcgtataaatgaagacggcaaactgacgctggtgaaccatctggggattgatctgggcgaaacgccggagcagatccttagcaagctggatgatgatcgcatcaaagatgacgatgtgcgtcacgatggtcgtcacgcccacgattatgactatgtccaccgcgttcgtgatattgaagccgacacgcccgcacgttataacgccgatcctgatcggttatttgaatcttctggttgcgccgggaagctggcggtctttgcagtacgtcttgataccttcgaagcggaaaaaaatcagcaggtgttttatatcggcaccaaccagccggaagtgctgaccgaaatccgccgtcatattctggctaacttcgaaaatctgccggttgccggggaatatatgcaccgggatatctacgatattgcggaaaaatacggcaaagacaccttcctgatgattgataagttaggcaccgacaagatgccgttcttctttaatctcaagggacgcaccgatgcgatgctggagaaagtgaaattcttccgtccgcattttactgaccgtgcgatgcaaaaattcggtcacctgttccccagccatttaccgccgcgcatgaaaaactggcgcgataaatacgagcatcatctgctgttaaaaatggcgggcgatggcgtgggcgaagccaaatcgtggctggtggattatttcaaacaggccgaaggcgatttctttgtctgtacgccggaggaaggcagcaaagcgtttttacaccgtttcgccgctgcgggcgcagcaattcgttatcaggcggtgcattccgatgaagtcgaagacattctggcgttggatatcgctctgcggcgtaacgacaccgagtggtatgagcatttaccgccggagatcgacagccagctggtgcacaagctctattacggccattttatgtgctatgtcttccatcaggattacatagtgaaaaaaggcgtggatgtgcatgcgttaaaagaacagatgctggaactgctacagcagcgcggcgcgcagtaccctgccgagcataacgtcggtcatttgtataaagcaccggagacgttgcagaagttctatcgcgagaacgatccgaccaacagcatgaatccggggatcggtaaaaccagtaaacggaaaaactggcaggaagtggagtaaaaattacggatggcagagtatcgccatccgaattcacttaatcgttctgtgccgtctgccccgccgccgccatttgggcggctttttgttttttatagctcaacgctgctgccggcacaggcatcactttaccggtttcaatccaggtacgcaggcggctggcatcggcaaaatgggtatatttgccaaacgcgtccatcactaccagcgccaccggtttattattgataaccgtacgcatcaccagacaatggcccgccgcattggtaaagccggttttggttaactgaatattccagttatcgcgatacaccagatgattagtattgcggaacggcagcgtatacgtcggattagagaaggttgccatatcttcccgggtagtacttaactgcccgatcaacggatattgtttgctggcaatgagcagtttggttaagtcacgggcagttgaaacgttatgcaccgacaatccggtaggttcaacaaagcgcgtgttgttcattccgagcgatttcgctttcgcattcattgccttaataaaggctttgtaaccaccgggataatggtgcgcaaggcttgccgccgcgcggttttctgaagacatcagcgccagcaacagcatatctttacggctgatttcgctattcagtcgtacgcgcgaatagacccctttcatctccggcgtctggctgatatccacttttagtttttcatccagcggcagtcgtgcatccagcacaaccatcgcggtcattaatttgctgatagacgcaatcggacgcaccagatccgggtggttcgaatagatcactttgttggtattcagatcaacaatcatcgcgctaccggaggcaatttccggttgtgaagcggtggtagcggctgccgttttcgcaacggcctgcggtgcaaaaggcacagccagcatcagggccaggctaaataaagaaactcgaaatttcggcatgatgagcattcagatagtggttcacgcgcacgggttgcgcaccgccggagtaaggatttactgaggctagcgacgccatcataacgagcaaaaagtgcgatcgtcaaaggagaatcgtgaggaaatgctgcattgctgacatttacgccagcaatgcaacgtcaaagaactttctagaacaaacgataaccgtagccccatagtataacggttagggcgagcagcacttccagtaccagcacgccaatcgccagcgtcgaactagagaagctaaggccttcctctttgttgatattcaggaagctcggaataccaaggtaaagcaggtagccggtgtaaaacagcgccaccgtgccgaccagcgcacacaaccagaccagtggataaagcgccaccagaccgcttaaaaacagcggagttgcaacgtagcccgcgaagaccatgcagtgcgcaagtgacggacgctgcggataattacgcgccatccaccagatgacccgccccatcaccgcgaccccagccagcataacgccgtaaaacaagacagccagcgccagtccggtaaaccaggataacttcaggatagtgccatcgccaaaattccagccaatctgtgtagtgccaatgaaggcgcaaatcaccggaatcgccgccatcagcaaaacgtggtgggtgtaatggtgagaaatcgtttcgttttcgcgattaatcacctgcatttcacgatcgggatgggaaaacagtccccagacatggctcataccgcccccttgttgtgagttcatgaacctgacagttcaagtataagtcagcttgtgattattttttgttcgcccatgtaattttcactgtctgatgaacgtcctttttcagcgtgaatgattcacagggtgtatgcttactggcaaccaaagggagacagactggcctatggatctcaatacacttatctcacaatatggttatgccgcgctggtgatcggtagcctggcggaaggtgaaaccgtgactttgctgggaggcgttgcggcgcatcaggggctattaaagttcccgctggtggtactttctgtggcgcttggcggcatgattggcgaccaggtgctctatctgtgcgggcggcggtttggcggcaagctgttacgccgtttctcgaaacatcaggataaaattgagcgggcgcagaaacttatccaacgccatccgtatctgtttgtcattggtacgcgctttatgtatggctttcgggtgattggcccgacgctgattggtgccagccagctgccgccgaaaatctttctgccgctgaatattctcggcgcatttgcctgggcgttgatttttaccactattggttacgctggtggtcaggtgattgcgccgtggttgcacaatctcgaccagcatttgaagcactgggtctggttgattctggtcgtggttctggtggtgggcgtgcgctggtggctgaaacgacgcgggaagaaaaagccggatcatcaggcgtaaaaccattgccctggataaggcgttcgcgccgcatccgacatccggagtaccatgcctgatacgacgcttgtgcgtcttttcatgccgaccaaaatattacccaatgaaatatccacgcacctcactgcgctattctgggttgaactgtggattcgccaacataaagccgccatccactatcaacgactgcccggtggtgtaatttgcgccctccgaacaaagccacaccaccaggctggcaatctcatgcgttgcgccaaaacgccgcaagggaatcgaaggctccgcgtcgggcttcacgtcgctgtcatccatgccattcattggcgtggcgatcgccccaggcgcgactgcgttcaccaaaatcttatgcctgaccagctccagcgccatcgctttggttaacccaccgagcgcatgtttagcggctgtgtaggcgctggcatccggcagcggcgtatgttcatgtaccgacgtaatgttgatgatgcgaccgccctgcccttgtttcaccatctgacgagccgcaatttgcgagcataagaatgcaccatcgacatcaacggtaaaaatcttgcgccactcatcaaaagccatatcaagaaacggcgctttggtcattgcacccgcattattcaccagcacatcaatgcgccccagccgttgaatgagtttctccagcgccagtgccccttctggtagattgccgagatccagctgcacgatctccgcacgtacgccgtggctaactacctcacgcgcggtatcttttgccccttcttcatctgagtgccaggtaataccaatatcaaacccctgctgcgccagtaataacgcgcactctttgccgatccccgaatcggaggcggtaataatcgcaacctgtgccatcgagttctccacttaacgctgaataaacgttaagtatagaaggcgcatatcatcagcgtttgtaccccccgcccaacgcaccagtgagttgaatggaggcatccagccactgcccttgcaataacaggccattggcccgctcacgcagcgcggggattctggcttcgctgacgcgggaaccagcaatgatgcccgcgttaaagcgcgcctgcgcaagacctaccacacgcaaggcatcgcgctcaatttgcgcctgatgctggtttttctccgccagtgtctgaacctgactggctgcccgcgccacgtcattcaccgcttcaaccaccgctttgttgtagctggcgatagacaagttgctttcggcttttgcgatatcgagattggcgttaagacgaccactatcgaaaatgggtagcgtcaggcctgccgtaacgcccatttgctgcgcggaatgacggaacagatcgcttaagtgcaacgcatcctgttgcaggaaggccatcaggttgatgtcaggataaaatgccgcttttgccgcatcaatggtgcttagcgatgactcaacgtaccagtgcgccgcctgcaaatctgcccgccgggccagtaaggagtaccccagttcatcaggaagctggcttgccactttcggcaacgcgaccggtttaagcttcaatgactttgtctggttatttgtaagtgcgcttaaccgtgcctcaataattttcattttccccgcgacatcgttgagctgctgccgggttttgctggcattaatatcggtttccacaccttcaactgaagaagtaatcccgttctgatatagctggcgatcggtcgcgataatggtgttctgctctttttctatttgctgcaagaccgtgtttaacgccgcctgggtttgccactcccagtacaggcgggctacgctgccagccagcaattggcgggtttgctcgcgttccgccgcccgtgctttaaccgtacccaggcgggcagtaacctccgcccgattctttccccagatatcgagatgccagcccgccgttaagccaaaagtaccgttggtgtaccacgggccggtcgtacctgcggccggatcgttcagagcaaacggccccattaagccttctgccgacattttttgccgctccatatccgccgaaaagtcgatctgcggaccatcctgagtggcaactgccttcgcctgggcttcagctagctgaatgcgctgttcagccacctgcatatccggtgcgttctgtagtgcattgttaattaaggaagtgagttgattatcgtgatactccagccaccattggctgtctggccaaccattttcagcgccgtgggtaatgcggtgtcaacttgtgcagcgggcgtttgctggcttaacgcctggcgggtttcatgcataggcgcacacccggccagcatcagtaacagcggaaaacaggcgatggctggataaaaggaatcacgattcatgggggaataatcaggtaagaaaaggtgcgcggagattaccgtgtgttgcgatatattttttagtttcgcgtggcaatacatcagtggcaataaaacgacatatccagaaaaatatacactaagtgaatgatatcttccgatttatcttaatcgtttatggataacggcaaagggcttcgttttttcctatacttattcagcactcacaaataaaggaacgccaatgaaaattatactctgggctgtattgattattttcctgattgggctactggtggtgactggcgtatttaagatgatattttaaaattaattaatgtcatcaggtccgaaaataacgagaatatttcagtctctcatcctgttgcgctcctgtcatgtgcattgcttcatataatcactggcgcaaggagcgcgcagggggcggccaatcgccgccgccccctgcacccccgggctctggcgaacaaaatcgccgctgcgcggtgccctcggcttatcccttacggctaccgggtcgggcgcgaggtaacatccctgtaaaacgcgccctcagcccacatccatgtgggctgccccggccttcagggaacgcctcggcaattttgacgccaccaaacaaccgtgcggcctattgataaagagctaacacattgtcaaaaaacatcactatggttttttagagtttctcgatatcaattgcctgaatagcccttgcaatatcaggggaattattcaacacccgaacatgctgaaataattccgttgcttcatcgtattctttacgcaaataactcaaccactgtttaatccgcgcaacgtgatataacccggtatcgccctgcttttccagacgggtatatttttgcagcaaagcaaccacctccggccacggcattcgcggttcgttatattttaccacccggctcaggttgggaatattgagcgccccgcgaccaatcatcactgcgtcgcagccgctgatcgccatgcattgttgcgcgctctgccagtcccagatttcaccgttggcaatcaccggaatattcagccgctggcgaatatcgccaatcgcctgccagtcaatatgctccgcgcggtaaccctgctctttcgtccgcccatgcaccaccagctccgtagcgccagcctgttgaaccgcatcggcgatttcaaatttcttctcaccgctgtcccagcccagacgcactttcacgctgacgggcaaatgcgccggtacagcttcacgcatcgcttttgcaccctggtagatgagttcaggatctttgagtaacgtcgccccgccgccgctaccgttaaccgttttcgacgggcagccgcaattgagatccacgccccaggaacctaactccaccgcacgggcggcgttctctgccagccattgtgggaactgacctaacaactgcacgcgcaccagcgtaccagatggtgtccggctggcgttttgtagctcagggcaaatgcgatgaaagacttttaccggcagcagttgatccaccacgcggacaaactcggtgatgcacagatcgtagtcgttaacttcggtcagcaattcacgcaccagagagtcaagcactccctccatcggtgccagtaacacacgcatatcatcacccgcaaaaaaatgaggcgctatgttagcgcctatggtcagcggattaaaggtctgcaaagagggattgctgcaaactgcaatccctctctatgcttgatgtatgcctgagttcgctgcgcattgcgtaatgccggggagcgaaaaaataagcgctgatttcttaatgtgatcggtagcacgttttacgaattaattgtatgatgaatccatctcatctggggtgttgattatgagtaagacactgaacattatctggcaatatttacgcgctttcgtcctgatttatgcctgcctgtatgcaggcattttcattgcttccctgctaccggtaaccattccgggcagcatcatcgggatgctgatcctgtttgtcctgctggccttgcaaattcttccggcaaaatgggtcaatccggggtgctacgtactgattcgctatatggcgctattgtttgtgccgattggcgtaggcgtcatgcaatattttgatttgctccgcgcacagtttggcccggtagtggtttcctgtgcagtcagtacgctggtggtttttctggtggtgagctggagttcgcaactggtacacggtgaacgtaaagtcgtaggtcagaaaggatcagaagaatgatggcgaatatctggtggtcattaccgctgacattgattgtcttttttgccgcccgcaaactggcggcacggtataagtttcccttgcttaacccgttgctggtagcaatggtggtgatcattccttttttaatgctgactggcatctcttacgacagctactttaaaggtagcgaagtgctaaacgatctgctgcaaccggcggtcgtcgcgctggcctatcctttatatgagcagctacaccagatccgcgcgcgctggaaatcgatcatcaccatctgttttatcggcagcgtggttgcgatggtgacggggacttccgtggcattgttgatgggcgcttcaccggaaatcgccgcgtcaatcctgccgaaatcagtcaccacgcctattgcaatggcggttggcggcagtattggcggtattccggcaatcagcgcagtttgcgtgattttcgtcggcatcctcggcgcggtatttggccatacattgcttaatgcgatgcgtattcgtaccaaagctgcgcgcggtctggcaatggggactgcctcgcacgccctcggtacggcgcgctgcgccgagctggattatcaggaaggtgcatttagttcgctagcgctggtgttatgcgggataattacttcgctgatcgcaccgttccttttcccgattattctggcagtaatgggctaaaatttgcgatgcgtcgcgcatttttgatgtatgtttcacgcgttgcataattaatgagattcagatcacatataaagccacaacgggttcgtaaactgttatcccattacatgattatgaggcaacgccatgcatccacgttttcaaaccgcttttgcccaacttgcggataacttgcaatctgcactggaacctattctggcagacaagtacttccccgctttgttgaccggggagcaagtctcatcgctgaagagcgcaacggggctggacgaagacgcgctggcattcgcactacttccgctggcggcggcctgtgcgcgtacgccattgtcgaattttaatgttggcgcaattgcgcgcggtgtgagcggaacctggtatttcggtgccaatatggaatttattggtgcgacaatgcagcaaaccgttcatgccgaacaaagcgcgatcagccacgcctggttgagtggtgaaaaagcgcttgcagccatcaccgttaactacacgccttgtggtcactgccgtcagtttatgaatgaactgaacagcggtctggatctgcgtattcatctgccgggccgcgaggcacacgcgctgcgtgactatctgccagatgcctttgggccgaaagatctggagattaaaacgctgctgatggacgaacaggatcacggctatgcgctgacgggtgatgcgctttctcaggcagcgattgcggcggcaaaccgttcgcacatgccttacagtaagtcgccaagcggtgtcgcgctggaatgtaaagacggtcgtattttcagtggcagctacgctgaaaacgccgcattcaacccgactctgccaccgttgcagggagcgttaattctgttgaatctcaagggttatgattacccggatatccagcgcgcggttctggcagaaaaagccgatgcgccgttgattcagtgggatgccacctccgcaacgctgaaagctctcggctgtcacagtatcgaccgagtgcttctcgcttaagcctggtgccggatgcggcgtgaacgccttgtccggcttgccagccctctcctggtgtcgaaattcccggcaaacagtttgccgtttcttgcgcaaaaccagcgggtaaagtagcctgatggaaattttccttagatcgagtctcctgcatgttaaagcgcgtgttcctcagcctgttagtcctgatcggcttgctgctgttgactgtgctcggcctcgatcgctggatgagctggaaaaccgcgccttatatctacgacgaattgcaggatctcccctaccgccaggtcggtgtggtgctcggaacagcaaaatattatcgtactggcgtaattaatcagtattatcgctaccgcattcaaggagcgattaatgcctataacagcggtaaggtaaattatctattactgagcggcgataacgcattgcaaagttataatgagccgatgaccatgcgcaaagatttaatcgctgctggtgtcgacccatcagatattgttctcgattacgcaggctttcgtacgctggattccatcgtgcgtacacgcaaagttttcgatactaatgatttcattattatcacccaacgtttccactgtgagcgagcattatttattgcgctgcatatggggattcaggctcagtgttatgccgtaccgtcaccgaaagatatgctgtcagtacgtattcgtgaatttgccgcccgtttcggtgcgctggctgacctttatatttttaaacgtgaaccgcgttttttagggccgctggtccctattccggctatgcaccaggtaccggaagatgcgcaggggtatcccgccgtcacacccgaacagttacttgaattacaaaagaaacaaggaaagtagttatggatgtacagcagttttttgtcgttgccgtttttttccttatcccgatattttgtttccgcgaagcatggaaaggctggcgcgcaggcgcgattgataaacgggttaaaaatgcaccggaaccggtgtatgtctggcgagcaaaaaatcccggactctttttcgcttatatggtggcatatatcggcttcggaattttatctatcggcatgattgtttatcttattttctatcgttaatattcccctctccagttaattattgagaataattattacttcacctgataagctgcggatatcacattcctaaccgcagctatttgtgaatcttttcacagtttaaattcccccgcacgcttagccttaatatcagtacattattatttactaaacgctcgccttaattacctatagcattaaggaagatcacatgccgcaacaaaattatctggatgaactcactccggcttttacgtctttactggcgattaaagaagcctctcgctgtttattatgtcacgacgctccctgtagtcaggcttgcccggcacagaccgatccggggaaatttattcgctcaatctactttcgtaattttaaaggcgctgccgagacaattcgcgaaaataatgccctcggtgccgtttgtgccagagtgtgcccgacggagaaattatgccaaagcggttgtacccgtgccggtgttgatgctcccattgatatcggccgcttacagcgttttgttactgattttgaacaacaaaccggaatggaaatttatcagcccggtactaaaacgctcggcaaagtcgcgattattggcgcaggtcctgccggattgcaggccagtgtgacactgacaaaccagggttatgacgtcacgatttatgagaaagaagcgcaccccggtggctggttgcgtaacggtattccgcaattccggttaccgcaatcagtgctggatgcagagatcgcccgtattgaaaaaatgggcgtgaccattaagtgcaacaacgaagtcggtaacacactcacccttgagcagctgaaagcagaaaaccgcgcggtactggtcaccgtggggttatcaagcggttccgggctaccgctgtttgagcatagtgacgttgagattgccgtcgacttcttgcaacgtgcacgacaggcgcaaggcgatatcagcattccacaaagcgcattaattatcggcggcggtgatgtcgcgatggacgtagccagcacgctgaaagttctcggctgtcaggcggtaacttgcgtagcgcgtgaagagttagatgagtttccggcaagcgaaaaagagtttaccagcgcccgggagctgggcgtttcgatcatcgatggattcacgccagtagccgtggaaggcaataaagtcacgtttaagcatgtacggttatcgggcgaactgacgatggcggcagataaaattattctcgccgtcggtcagcatgccagactagatgcctttgcggagttagagccgcagcgtaacaccatcaaaacacaaaattaccagacccgcgacccgcaagtctttgctgctggcgatattgttgagggtgacaaaaccgtggtctatgccgtgaaaaccgggaaagaagccgccgaggcgattcatcactatttagagggagcttgctcatgttaacgaaagatctttcgattactttttgcggcgtgaagtttcccaacccgttctgcctctcttcttcgccggtaggcaactgctatgagatgtgtgccaaagcctacgacacaggttggggcggtgtggtgtttaaaacgatcggcttttttatcgccaacgaagtctcgccgcgttttgatcatctggtgaaagaagataccggttttatcggcttcaaaaatatggagcagattgctgaacatccgttggaagagaatctggccgccctgcgtcggctgaaggaagattacccggacaaagtattgatcgcttcgatcatgggggaaaatgagcagcaatgggaggagctggcgcgcctggtgcaagaagctggcgcggatatgatcgagtgtaacttctcctgtccgcaaatgacttctcatgcgatgggtagcgatgtcgggcaaagcccggagctggtagaaaaatattgtcgggcagtgaaacggggttccacgctgccaatgctggcgaagatgacgccgaatatcggtgatatgtgcgaagtggcgctggcggcgaagcgcggcggcgcagatggcattgcggcgattaacaccgttaaatccatcaccaatatcgatcttaatcagaaaatcggtatgccgatcgttaacggaaaatcgagtatttccggatattccggtaaagcggtaaaaccgatcgccctgcgcttcattcagcaaatgcgcacccatccagaactgcgcgatttcccaatcagcggtatcggcggcattgaaacctgggaggatgcggctgagtttttattgctcggcgcagcaacgttacaggtgaccaccggcatcatgcagtacgggtatcggatagtggaagatatggcaagcgggttgtcgcattatctcgccgatcagggatttgattcgctgcaggagatggtaggtctggcgaataacaatattgtcccggcggaagatttagaccgcagttatattgtctatccccgtatcaatcttgataaatgtgttggctgtggacgctgttatatttcctgttacgacggcggtcaccaggcgatggaatggagcgagaaaacccgcacaccgcattgtaataccgagaaatgtgtgggttgtctgctttgtggtcacgtctgcccggtgggttgtattgagctcggggaagtgaagtttaagaaaggcgagaaagaacacccggtaacgttgtaaaaccagagacgcatccggcatttggttcctgtcgccggatgcggcttgaacgccttatccggcctacaaaaccatacaaatcagtatgttgagcttattgtaggccggataaaacgcgccagcgttgcatccggcatttggctcctgttgccggatgcggcgtgaacgccttatccggcctacaaaaccacacagatcatgatgttatgtgcgtttatgaccgaatgcggaccacattcacatcatttcttacgcgcgtatttcagtgaatccagcgctacggcgaagataataatcgcccctttgatgatgtactgccagtatgggtttacgccgatatacgtcaggccatagttgatgacggtaaaaataattaccccggtcaccacgccaatcaccgtccccacaccgccgctgaacgatacaccgcctaccacgcacgccgcgatagcatccagctcatacataaagccgaggttgttggtggcagagccgatacgtccggcttctaacatcccgccaaaggcatagaacacgccagacaacgcgtagatcatcagcaggttcaggccgacgttgacaccagatacttttgccgcttccgggttaccgccaatggcaaaaatgttcttaccgaagcgggttttgttccacaacacccagacgaacgccaccgcaatcaacgcgtagaaggtgatgtaagagagacggaaactccccagcgcgacaaagccctgagcaaaggtagagaagccactgtcaaaaccagaaattggcgacgccccgacaaagtcgtaatagagcgagttgatgccatagacgatgatcatcgtgccgagcgtggtaatgaacggcgtcacgttgagataagcgataatcagaccgttgatcaaaccgatcaccgcaccaatggcacagacaatcagaataaccagcgcaatcggcatcgtcgccatttccgggaacactttgttggcgttatccatggactgcaataatgtcgcagccaccactgccgccagccctacctgacgaccagcagaaagatcggtcccctgggtgacaattaaccctgccacaccgagcgcgataataatacgcaccgatgactgggtgagaatattacttaagttcaacagacttaaaaatgttgggtcctggaaaataataatcgccagcaaaactaaaagaacgacgtaaataccgccctctttcaggtaagtaagaaaacttttcttatttaacgcactcatgggaagcccctaatcttaaaggtgcaaagacgcaagacgcagaatttcgttttgcgttgttgtttttgtatcgacaattccggaaacgagaccattgctcatgaccagaatacggtctgttatccctaacaactcaggcatttcagaggagataataataatccccttgcctttcttcgccagttcggcaattaactgataaatttcaaacttcgccccgacatcaataccgcgcgtcggttcatcgagcattaatatttctggttgcgttagtagccagcgaccaataatcaccttttgctgattaccaccggagagcgaaccaatttgcgtccgatgacccggcgtttttacccgcatcgaatcaatcacccactgggtatcgcttttcatccgcgagttatccagtaaaccaactttatttttgtagttgcgaatattggaaattaacgagttaaaaccaatatccagataggcataaattcccgttgagcggcgctcctcagttaccagtgcaaatccatggtttatggcttcgttggcattatggttattgatctgtttgccgtgcaacgttatggtgccagccgatttctcgcgaataccaaataacgtctcaacaatatcggtacgtttcgcccccaccagaccggcaataccgaggatctcccctttatgcagatcaaacgagacatcgcgaatcgacggctggcgcagtgacgtcaggttacgtacctcgaggatgacttcgcccggtttgttttctttgtcagggaaacgctggttaagagaacgcccaaccatcatggcgatgatcttgtccatcgtcagtcctgccagcggttcggtggcgatccactgaccgtcgcgcaatacggtaacttcatcacataactggaagatttcttccattttatgcgagatataaacaataccgcagccgcgctcttttaatttacgaataatagtgaacagatgattgacctctttttcggttaacgaagaagtcggttcatccataatcacaattttcgcgttataggaaaacgctttggcgatttcgatcatctgcatttgcgaaacggataatgtgccgacgcgcgcacgcggatcgatatcaatatccagttcgtcaaaaatcgctttggtttcgcggtacattttgtcctgatcgacaaacatgcctttggtgggatatcgccccagccacatgttatccatcaccgaacgttgtaataccaggtttaactcctggtgtaccatcgaaataccattttccagggcttcttttgcagaatggaaatcgatctctttaccctggaataaaatggtgccggagtctttttgataaataccaaacaggcattttaataatgtcgattttcctgcaccgttttcccccattaatgcatggatagaatgtggccggacttttaaattaacgttatcaagtgccttaacaccaggaaaggacttgttgataccgctcatttccaacaagtattccccggaggacggagtcgttgagctgaccatataattttaccttgttggccatacaataagggcgcagtaatagactgcgcccaatcagtcttatttcttgctgaattcagccaggttgtctttatctacgccaacataaggtacgcggaccactttgttgtcgattttccagttggtgccatcagccgcacctttaccatcggccaggtttttcgccagatcaaaggtcgctttcgcctggttgttagcatcgttcagtacggtgcccgccagtgcaccggatttcaccagcgccagcgcttctggcagcgcatcgacgccaaacaccggaatgctggacttgttgtgtgctttcagcgcttcaaccgcgcccattgccatcgcatcgttgttggcgataaccacttcgattttgttggcgttcgggccagacagccaggcgtccatcttatctttcgcctgagcggtgtcccacattgcggtatctaactgtaactgttcagttttgatgcctttatcgttcaattctttaatcacgtaagtggtacgtgcttctgcatccggatggcccggttcacctttcagcagtacgaactgaatctgaccgtctttgttcagatcccaaccctgattcgccgcccagtgtttagcaatcaaatcgccttgaataatgccggactctttggagtcagtgccaacgtagtaggctttgtcgtagctatccagcgccttacgagacggttctttgttgaagaaaaccaccggcacgttttgcccacgcgctttctcaatcaccgtacccgcagctgccgggtcaaccaggttgattgccagtgccttcacccctttcgccagcaatacgtcgatctgatcgttctgcttggactggtcattctgagaatcattcatcagcagctgaacatctggcgcggctttcgcatcttgctcaatagccttgcgcactacagacataaagttatcgtcgtacttatagattgttacaccaatgcgagtatcagcagcgtgtgcagcggcaccgaataacatgctggccatcacagcagacagggttaacaccttcttattcatggtatctccggtttttcttatgcagggtagtgcttgagataaatgctcggcggggcagtagagttaatgaagtgttactgaacgccgaagctcactttttaaaattcgttcttccatgcccggtaacgctccagaaaacggctttaattgttgttatgacgctgttacctcggcaaaagtgattattcactgttacatacgggttacaacgttaaaacggtgcaatcatagctatcacattgttaagatactgtgaaatcactcacagattgaaagcggttacatcgcctgatttgttgagttagtgatcgccgccgcattctggcgtgttgcgacagaatggcgacgcactaacgtcggcataaaacagtggctggcacgaggatcaatattgcctgctgccccctgcaaggccagttcggtggctaatttcgccattgaagcaatgggataacgcacggtcgttaattgcgggtcggtgtaacgggcgatgggaatatcatcgaaaccgatgattgagagatgtaacggaatcgcaatgccattatcttttaatgctgtcagtgcgccagcggccatattgtcgttataagcaaatacagcggtaagttgtagattgcgccccagcagttcaaccatcgccgcctcaccgcccggcatgtccggcgtaccagcgccaatccagctttccggcggaataatatcctgctctttcaacgcactcatccagcctgctttacgcatggcgtcatcttcaatgccgtggctggaagaaagataaccaatacgttgatgaccgttattcagcaacatgcgcgtcgccattcgggcaccgctgagattatccaggcaaacgcaacgatgggcgtaccccggcacaacgcggttgattaacaccataccgggaatgttatccataaattgcgccagttcatcgtcactcaatgcttttgagtgaacaatcaacgcattacaacgctggcgaattaacacctcaatggcgtgacgctctttttccgcttcatgatagctattgccgattagcacgtatttctgatgctgctgagcgaccagatccaccgcttttaccagcgcgccgaaaaacgcatcagaaacgtccatcaccaccacgccaatggtgtcgctaacctgagttgccagcgcctgggcattggcgtttggccgataatccagctcactcacggctttcattactgcttcacgcgtgtcggcactgaccagcgtgctgttattgagcacccgggaaaccgttgccacagagacgccagcctgacgcgctacatcacgaatggtgatcatattcactacctgttatgagattgcagtaaatgactgcttgctggcggctattttgtcagcactgaatacaggacttcgtgaatcgagtcacagcaatggaaacggttacagccgttttgttaacgaatgtgatccagatcgttatcttgatgttttagatattgccggtccggcagcacgcaaagttaactgacgccagagccattccaccggcccctggcggaagtaacgcagccagataacagagaagaggatattcgccagccataccggaataacaaacgccagcagctccaggcggtcaaaatgcataaacaaaccgaggtggtaaaaaagcgtggtacaaatcagcgtttgcaatagatagttggtcagcgccatccgtccgacgcaggcgatcgcaagcaccagcttaaagcggctcaattgcggccagaagccataaaacagcgacgcatagccaatcgcctgaaacggcgcactcagttcccgcggcatttgaagtaagaaggcacaccagcgatacgcccagtccagctgccattgcagggcgatggcaggaaggttaatggtcaccccaatcgccaccagcacaaaaccagtacgacgatagtgacgtaagctgaactgccctttcagccagccgctgcgcatcagcgccgcaccaatgagcatcatccctgccagttgccagccatactgtgcgcccagtgccagtaaactgttgccaacaccatcggcacgattactgatcgcttcaacgccgccgtgaagcttccagtatttttcatacaaaatagccgatgcatccggcgtccaggcgcggctggtctggctgtcggaaatcagccccaataacagcaaaacgccaagccccaccagataaagcatgacgcctgtattaaacaggctttttaccgatggcgcatcgcgcaccagccgccagcagattaagcccaccagcccgtaagccagcaaaatatcgccgtcccagaacaataaaccgtgaataaagcccaacaagactaacagcgttaaccgcgactggatccagcgtctgccacggggcagcaacatttgcaggcccgcaccaaacagtagcgcaaaaagcgtgaggaatttcacctggccgatgagatcaagaaatgcccaagtccatgcatcccgcggcgtaatagcaccgtaccaggcgggattgagataagccgcctttggtagcccaaaggcgctgatgtttaatagcaggatccccagaatggcgacgccgcgaacaaaatcgagcgtgacgttgcgctccatggttcctgccttttaatcagttgtgatgacgcacagcgcgcagaaactcgtggcgcgtattctgactggatttgaacaatccaccaagagaggtcgttgtcgtggcactggttgcatcgcggatgccacgcgccttcacgcagtaatgcaccgcgtcgatcgagacagccacgttattggtgcccagcagcgtttgtagcgcaataagaatttgctgcgtcagacgttcctgcacctgcggacgctgggcaaagaactgcacaatgcggttaatttttgacagaccgatcaccgaatctttcgggatataggccaccgtcgctttgccatcgatggtaacaaaatggtgttcacaggtgctggtcagagtgatatcgcgcacggtgaccatttcatcgaccttcattttgttttcaatgagggtgattttcgggaaattggcgtaatccagaccggagaaaatttcatcgacatacattttagcgatgcgatgcggcgtttccatcaaactgtcatcagccaggtcgagattcagcagctgcatgatttcggtcatatgaccagcaataaggcttttgcgcgtttcgttatccatttcatgcacgggcgggcgcagcggtgtttccagtcctcgcgcaactaacgcttcatgaaccagggccgcttctttactgagtgatggcatttatgatttctcctgcaggtgtgacgcctccgccctgcgtgggggcaaagttattaagctgatttacagcctgattattgtgcgtgaggcggcgcacataatccagtattcacagcgataattattgtaattgccgctgcctttcatcagcagatgttaaaacatcgttatgcaaatacggaagtgaaagttactcacagcacattgaataaacggtatgatgaagaaattgcaaacaacacaacaaggagccacgcatggaaatgctcgaagagcaccgctgttttgaaggctggcagcaacgctggcgacacgactccagtaccttaaactgcccgatgacgttcagtatctttctccctccacctcgtgatcacactccgccaccagtgctgtactggctttccggattaacctgcaatgacgagaacttcaccaccaaggcgggtgcccagcgggtagcggcggaactggggattgtactggtgatgccagacaccagcccgcgcggcgaaaaggttgccaacgacgatggctacgatttaggccagggcgcaggcttttatcttaatgccacgcaaccgccgtgggcgacgcattaccggatgtatgattatctgcgcgatgaattaccggcgctggttcagtcgcaatttaatgtcagcgaccgctgcgccattagcggtcactcaatgggtggtcacggtgcgctgattatggcgctgaaaaatccgggtaaatacaccagcgtttcggcctttgcgccaattgtgaatccgtgcagcgtcccgtggggaatcaaagcgtttagcagctatttaggtgaggacaaaaatgcatggctggaatgggacagttgcgcactgatgtatgccagtaacgcgcaggatgcgatcccgacgcttatcgatcagggcgataatgatcagtttcttgccgaccagttgcaacctgcggtactggcagaagccgcgcgccagaaagcgtggccgatgacgctgcgtattcagccgggatatgatcacagttactacttcatcgcctcttttatagaggatcacctgcgcttccatgcgcagtatttactgaagtgaaagtccgcccggttcgccgggcatcttctcatcagaagcgataatccactgccataaagtaacgacgtccgtcttcgttatagctgtagtcgtcacgactgagatccttgtcgccaaggttcagcacgcctgcgcgcagtttgacgtctttagtcacctgccaggccgcgccggtattccagatggtataaccgcccggtgttttagccgtcgcgctgtcggcgcgtttctgcccggtatagtgcccagaaacatagaatgaccagtcttccagcgccagcggtttccagtccagcgtaccgttagcagtatggaacggcagatcggatagcggtttgttttcgccgttgctgacatcacgaccatcgttgtaggtgtagttgatcgacagtttccattcatcgttgaacggaattttcagttcggtttccacgccctgaatacgagctttgttaacgttgtagtagctaaataccggtatgcgccgtccgttagcgcccgtctcaaaaccaacaaagttttggtagcccggtgcagcgttgacgtcagacgtacggctgatgctgatacgatctttcacatcgttacggaaaacggtaacgctggattcaaccccttccagccagccttcttcacccatgtagtaaagccccagctcccaactttcgctggtttctggtttcagatccgggctacccacaatcttacatgcgccacggcaggaattgctcgtccagtcagggctaagttgcaacagagaaggtgctttaaatgccgtcgcccagccccctttcaccgttacggtgtcggtggcgttataaaccaggtaggcacgcggactccagtgttcaccgtaggtttcgtgatcgtccatacgcacgccggtcgtcagcgccagcggctcgaagatccgccattcatcttccacaaacagcgcgtactggctggcagacgttttggagctggttcccccggtcaggttcaccgcatcgctaagtttgtcgtgacgccattcaccgccaaccgtgagaaactgattaatcgccgtcagcggcaacgtgtatttgccgtcgaccgtattgctttcggaagttatcgggctgctgttgccagggtttttgttctcgactttctcaccgtagtatttcagttcgctggtgccgtaatcccaacgcccattatggctgacggagtagttctggcgttccaggcggtttttgtccagcgagtcggaatcacgatcctgacggtcgaaaccgtatccggcagtaaaatcgtgattttgattcggtgtccaggcaaattcgacattgccgtcgcggctggagaatccttcaatacgcggcgtttctccggtatcggtggtcgttgagttttgcgggtcatccttttcacgttttgccaggctgccgtaagctttcattcccagcacaccatcaattaatggtccactggtaaagaactgaccgttataggtgtcaccgcgatcgcgatgttcctgaatggtggtatcgacggtaacggtacccgaccatttctgaccgatttttttggtgatgatattcactacaccgccgagcgcatcggaaccgtacagcgacgacatcgggccacggaccacttcaatacgttcgatggaatcgaccgggatccagttcagatcgaaatcattgtggcggaagacggcattgcgggagttcacgcgtttaccgtcgacgagaatcagggtatagctgctgtccagaccacgaatactaacgcccttacggttatccccttcgttcgtcagttgtacgccaggcacttctttgaggacatccttcagattctgtaccggttttcgctgcaggtcttcctgggtaatgacgctgatactggcaggtgcatctttaagattttgttccacggaagatgcagtgacaaccatcgtttcgccatcatcatcgaccgctaacacaggccatgcacaagaaatagcggacaaacacagcccgacccgtacgaaagggttcaacctaaacattccatatctccatgaggtaactacgaaaataaaatgggttatcgctcacatcttcttcacgtccccttgcgtacggcagcatcgcggtggacttattttttatgcaggtgatcatcccagaaagccggaacagcctctgatttgtcagccttttttgattgcggcgtaacgataatgcaaacgataacaattatcaatccaaatgttaaattttatatccgcatgatttgtcagggaaatggaattgaaaaagccctctcggttgagagggcttagcaaggaagggaggaaacttatttcttatcgttctgcgggaacttcatttcgctgtagcgtacgaagtgagttcctttaatcagcttgtagccgaaccaaataatcaggaacagcgggataccaatatacgttgccgctacgccgccccagtcaatagtatctttcaggaacgcttcgtagttctggcccaaagtgataatcagacacagaatgaatgcgaagatcggccccagtgggaagaaacctgaacggtacggcagatcgttaatgtcgtgtccctgcaatacgtaaccgcgacggaagcgatagtggctaatggcaatccccagccaggcgataaaacccgtcatcccggaggtgttcagcagccacaggtataccgtctggttgccaaacatggaggtcaggaagcacagaccggcaatcaccgtcgtcgcatacagcgcattacgcggcacgccaccacgcgacagtttagcgaaaatgcgcggcgctttaccgtcacacgccagggtgtacagcatacgagtagacgcatacataccggagttacccgctgacagcaccgccgtcagaataactgcgttcatcaccgccgccgcagagagcagacccgcgtgctggaacaccagggtgaacggactaacgctgatgtctttaacatcgttacgcagcaggctcggatcggtgtacggaataatcaggctgataatcaggatcgcgaacacatagaacaacaggattcgccagaacacctgacgtaccgcgcgtggaatgtttttcgccggatcttcggactcgcctgcagcaataccgatcagctcggttccctggaaagagaagccgacaatcatagctacgccgatcatcgccgcaaaaccaccagcaaacggcgcttcgccgattgtccagttgctccagcccgcaggctgcgcgcctttgaagataccgataatcatcagcacgccaacgatgataaagacaataactgtcgtgactttgatcagtgagaaccagtattccgcttcaccaaagccacgaactgagatgtagttcagcaggaagataacgccgaggaacaacgcactccagatccagcccggtgtatccgggaaccaccagctcatgaccagctgagctgcaaccaggtcaacggcgatagtcaccgcccagttgtaccagtagttccagcccagcgcgaagccaaagccttcttcaacatagttctgaccgtaagtggcaaacgaaccggaaaccggcatatatgcagccagttcaccgagactggtcatcaggaagtaaaccatcaggccaatcagcatatacgagagcaatgccccgcccggacctgcctgagaaatcgttgcgccagaggcaacaaaaagacctgtaccgatggaaccgccaatggcaatcatcgtcaggtgacgcgcctttaattcacggcgtaagcccggcgcttctgtggttttagtttcggaaaccatacaaaaatgctatccatcttaaaaatgaggcgcgattgtagcagacgattggcaatccttccggcagaaatacacggttataagacaccttcatgatcgcccagggattataagtaaagcagccaatctcttttctggcgaatgcatgctgaaggcgctgcgtcacgaaatcgacacagcaccagcatgttcttgtacagcaacttaacgcggcacatttgcgggatcgcaatagtccagaaagcgccgtagcgcgttggaaaggtgtttttgccgatgatgtatacgccacaacgtacgcatcaggcgcggcagagggaccgcaacttcacttaatgtgcctgcctgcaattgatcttcaatcacacgtcgcgacaggcaactaattcccaacccatgacgcaccgcatgtttgattgcctcggagttacctaattccatcgccatctcaaacttcggtaaatgtgacagcaacagataatcgacaatctcccgcgtgccggaaccgcgttcacgcaggatccacggcgcagcggccagctgttctaaggtgaccggaccacgggccaacggcgaagtcggcgcggcgaaaaccaccagctcgtcttccagccacggttcagaaatgatttcagtgctgtggcacggtccttcaataaagccaatatcaacgcggaaatccagcaccgcttgcatcacgtcctggctattcccaacgctaagttcaatcggcaactgcggataatcatggcgataacgggcgataactgcaggcagaatgtagttaccgatggtactactggcatagatacgaatcgcgccgttgtcttcgcgaaacagttgttcgatttcaaccgcctgttcaagcaatgccaacgcacgcggatagagcagccgcccgtgttcattaacaaccagtcttttccccacgcgatcaaacagttgcacgccaagctgcccttccaggtcggtcaaggctgcgctcactgctgattgcgacaacgccagcatcaccgacgcctgggtggttgatccacttttcaatacttctgcaaaaacttccaactgccggagggtgatgtgcatagtcgcttaccacttataaagattaattataaatatataatcaattttatttttaaaccagttagtcgtaaccttatgcccggttaaaggagagggttatgacgaatatcaccttacagaaacaacatcgtacactgtggcattttattccggggttagccctgagtgcagttatcaccggggtcgccctgtggggtggttccattcccgcggttgcgggtgccgggtttagtgccctcaccctcgcaatcttgttggggatggttttaggcaacaccatctatccgcacatctggaaaagctgtgacggtggtgtgctgtttgccaagcaatatttattacgtctgggtatcattctttatggcttccgtctgacgttctcgcaaattgccgatgtcggtatcagtgggatcatcattgacgtgttgacgctgtccagtaccttcctgctggcttgcttcctggggcagaaagtgtttggtctggataagcacaccagctggttgatcggtgccggtagcagtatctgtggtgctgccgcggtactggcgactgagccggtagtgaaagcggaagccagtaaagtaaccgtggctgttgcaaccgttgttatcttcgggaccgtcgcgattttcctctacccggcgatatatccgctgatgtctcaatggtttagtccggaaactttcggtatctacattggttctactgtgcacgaagtggcgcaggtggtggcggcaggtcatgccatcagcccggatgcggaaaacgcagcagttatttccaaaatgctgcgcgtgatgatgctggctccgttcctcatcctgctggcggcgcgtgttaaacagctgtctggggcgaacagcggcgagaaaagcaaaatcactattccgtggtttgccatcttgttcatcgtagttgccatctttaactcgttccacctgttaccgcagagcgtggtgaacatgctggtaacgctggataccttcctgctggcaatggcgatggcggcgctgggtctgaccactcacgtcagcgcgctgaaaaaagctggggcgaaacctctgctgatggcactggtactgtttgcctggctgattgttggtggtggtgcgattaactatgtgattcaaagcgtcatcgcataaaccactacatcttgctcctgttaacccgctatcattaccgttttcctccagcgggtttaacaggagtcctcgcatgaaatacattggagcgcacgttagtgctgctggcggtctggcaaatgccgcaattcgcgccgccgaaatcgacgcaaccgcgtttgccttgttcaccaaaaaccaacgtcagtggcgtgccgcaccgctcacgacgcaaaccatcgatgaattcaaagccgcctgtgaaaaatatcactacacatcggcgcaaattcttccccacgacagttatctgattaacctcggacatccggtcactgaagctctggaaaaatcgcgcgatgcctttatagatgaaatgcagcgttgcgaacagctggggctttctttgctcaacttccaccctggcagccatctgatgcagatttcagaagaggattgccttgcgcgtattgccgaatccatcaacattgcgctggataaaactcaaggtgtgacagcggtgatagaaaacaccgccggtcagggcagtaacttagggtttaaattcgaacatctcgcggcgattatcgacggcgtggaagataaatcccgcgtcggcgtctgcattgatacctgccatgctttcgctgccgggtatgatttgcgtactccagccgaatgcgagaaaacattcgcggattttgcccgtactgtcggctttaagtatctgcgcgggatgcaccttaacgatgcgaaaagcacctttggcagccgcgttgaccgccatcatagcctcggtgaaggcaatatcggtcatgatgcgttccgctggatcatgcaggacgaccgtttcgacggcattccgctgatcctcgaaaccatcaacccggatatctgggcagaagagatcgcctggctgaaagcgcaacaaactgaaaaagcggtagcctgaagatgaataaccgggaaaaggagatccttgcaattttacggcgtaacccgctgattcagcagaacgaaattgcggacatgctgcaaatcagccgttcgcgcgttgcggcgcatattatggatttaatgcgcaaaggccggattaaaggcaaaggttacattctcaccgagcaggaatactgcgtagtggtggggacaatcaatatggatattcgcgggatggcggatatccgttacccgcaatcggcttctcatcccggtacaattcattgctcagcgggcggcgtgggacgcaacatcgcccacaatctggcgctgttaggccgtgacgtccatttgctttcagtgattggcgatgacttttatggcgaaatgctcctggaagaaacgcgccgtgccggcgtgaatgtctccggctgcgttcgtttgcatggtcaaagcacatcgacgtatctggcaattgccaatcgagacgatcaaaccgtgctggcgattaacgatacccatctgctggaacagttgacaccgcaactactgaacgggtcgcgcgatttacttcgtcatgcgggcgtggtactggctgattgcaacctgacagccgaggcgctggaatgggtctttaccctcgctgatgaaatcccggtgtttgtcgataccgtttcagaattcaaagcgggcaaaatcaaacactggctggcgcatattcacaccctgaaacccactttaccggagctggaaattttatggggacaggcgatcaccagcgatgctgaccgtaataccgcagtgaatgcattgcatcagcaaggtgttcagcaactgtttgtttatttgcccgatgagtcagtttattgcagcgaaaaggatggagaacaatttttgctgaccgcgccagcgcatacgacagtagacagttttggtgctgacgatggttttatggcgggcctggtatatagctttcttgaaggatacagtttccgcgacagcgcccgttttgcggtagcctgcgcggcaatttcgcgcgccagcggcagcttaaacaaccctaccctgtctgccgataacgcgctttcattagtgccaatggtgtaacaatgttgccggatgcgacgcttaacgcgtcttatccggcctacaaatcaggcaatttcagcaagtaaatgtaggcctgataagcttgcgcatcaggcaatgacactcaagctaaaccaataaagaacccggcaatggtcgcactcatcaagttggaaagcgtcgccgccgccagcgcccgtaaaccaagctgggcgatttccggcgcacggtgtggcgcaaccgcagaaaacgcccccaccaccaccccgatagaaccaaagttagcgaaaccgcacaacgcgaaggaaataatcgccacagttttagcatcgagagtgccagccgtttgcagatagggtgagaaattgagataagcgacaaattcatttattgccagtttctgtccaatcaaactcccggcaagattcgcatcactccagtccacacccatcacccacgccagtggagccagcaggtaacctaaaatggactccagcgaggcatgttcaaaaccaaaccagccaccaacgccgccgataataccgttaatcaacgcaattattgcaacaaatgccatcaccactgttgccacacctgcggcgattttcagcccggtcattgcccctgtcgcagcggcttcaataatgctttttggcggtgtttcggtgaaagagaggttattaaaggaaacctgcgaagattccgttgccgggcttaacaggcgggcaaacaagatcccgccagggatcgccattaatgatgccgccagcagatattccacaggcacgcccagtgcggcgtaaccaatcattgtcgaaccagcaatcgaggccatgccactacaaatcgctgtaaataattcattgcgattcagacgatcgataaagggtttgacgattgccggaatttcgttttgcccgaggaaaatggtggtgaccgcgacgaatgactcgatcttgctgatatttaatgctttctggaagataccgccgagaattcgaattaaaatccccatcacaccgatgtagtagagaatactcaccagcgcggtgacgaagataattgccggtaacaccctgaaaccaaagataaatcctgcaccatcaaataaggtatccattttcggtccgaccagagaaccgaagataaatgcgctacccgcgtcgctgtacgccatcactttatgcacgccaaaagcgactttttcagcgacccaacgccctggcggtaaccaaagcataatgccgccaatcacgacctgtaacactaacgccgcgccaacggtacgcaggctgatcttcttcttgtttactgacagtaaaaacgcaatcgtcagcaataccaccattcccagaacacttctcatgacatccatagtgattatctcttcatgtcatattgggcgacggctttctgcccatcagaaatagccaggcctgcatcttgcgataccggcccggcttgttatcaacacttaatgggttttgatgtagccgcgcacgcactcttcgactaatccccagaaccagtctgtatcaatagtgatgccgactttggtattggcgggcttgccaagaacgcccagctcgtcgcagacggtacgcccatagcaagggccactgttgacgtccacttcgacgtacatctcctgggttttaatgccatcagggttaatcagataaccgatgcaggtggcgtcgtgcaccgggccgccagcaaggccgtagttttcgaactgcgttttgagagtgaagttcatgatgtcgctgaacagctctccggcggggccgcctgccctttccatccgagcaatcacgtccggggtgcaaacggtctggttggtgagatcgaggcccatcatcactaatggaacgccggaggtgaacactacgcgtgcggcttccgggtcggcaaagatgttgaactcggcagatggcgtgaagttgcctgtaccgtaagcgccgcccattagcacaatttcacggattttgggcaggatcgcgggttgcatacgcattgccaccgcgatatttgaaagcggaccaaccggcaccagagtgatatcgccatcgcttgccatcagggtatcaatgatatatttcaccgcatgagtgctttctgcctggcgggtcagcggctcgaataccgggccatccagtccggtttcaccgtgaatattatcggcaacgatttgttgacgcataatgggctgcggcatccccgcataaaccggaacattaatctccagtttctggcaaacattcaggccattaattaatgttttatcaagcgtctgattacccgctacaatagtgatgcctaataaatctattgccggatgtttcgccgccatcattatagcaatagcatcatcatgacccggatcacaatccagaataatttttctcttttccattgtttatttcctctgtttccagttgcgttattttttctacagcaaagaaaattcgaccgggccgatgattgaatcttaacaacagcgtacgtatgctaaatatgagaaatctcatagcggataaacatcgtgaaagaaatccacaataatgatcttaagcagcaattgatgagtgaatccgcgtttaaggattgctttttaacggatgtttcagccgatacgcggctgtttcattttttagcgcgtgactacattgtgcaggaagggcaacagccgtcctggctgttttacctgacgcgaggccgcgccaggctttacgccacgctagctaatggtcgcgtgtcgctgatcgatttctttgccgccccctgttttattggcgagattgagttaatcgataaagaccatgaaccgcgtgcggtgcaggctattgaagagtgttggtgccttgcgctccctatgaaacattaccgtccgctgttattaaacgacacgctatttttacgaaaactctgcgtcaccttaagtcataaaaattatcgtaatattgtttctttaactcagaatcaatcatttccgttagtgaatcgcctggcagcatttatattactctcgcaggaaggtgatctttatcacgaaaagcatacgcaagcggcagagtatttaggcgtttcttatcgacatcttttatatgttctcgcgcagttcattcacgacggtttattaattaaaagcaagaaagggtatctcattaaaaacagaaagcagttgtcaggactggcgctggagatggacccggagaataaattctccgggatgatgcagtaaaaattattttcaatagcgcgattgccggatgcaacgcttaatacgttttatccggtctacaaatcgagcattacgccagaccaataaagaacccggcaatagtcgcactcatcaggttggaaagcgttgctgctgccagcgcccgtaaaccaagctgggcgatttccggcgcgcgttttggcgaaatagccgaaaatgcgccaacgacaacaccgatagaaccaaagttagcaaaaccacaaagcgcaaaggagataatcgcaatggttttcacttccagcgtgccgcccgtttgcaggtatggggagaaactcaggtaagcgacgaattcgttaatcgccagtttctgcccaatcaggctacccgcaagattggcatcactccagtccacacccatgatccacgccagcggtgccagcacatagccaaaaatactttccagagaggcattggcgaaaccaaaccagccgccaattccgccgataatgccgttgatcagcgcaataattgcgacaaacgccattaccaccgtcgccacaccagcggcgatttttagcccggtcatcgcaccgctcgccgccgcttcgataaagctttttggcggcgtttcgctgaacgacagattttcaaatgtgacctgcgaaggctcggttgccgggctaagaatacgtgcaaacaaaatcccgccagggatcgccatcagcgatgccgctaacaggtagtcaattggtacgcccattccggcataaccaatcatcatcgaaccagcaatggacgccatcccgctacaaattgcggtaaacaactcgttgcgattcatgcgatcgataaacggtttaacgatcgccgggatctcattttgcccgaggaaaatagtagtaaccgcaacaaaagattcgattttgctgatgttgagggctttctggaaaatgctgccaaggatgcgaatcagcagccccatcacgccaatgtagtacagcagactgatgagcgcagtaacgaaaataatcgccggaagtacgcgaaaggcgaagataaaacccgcaccgtcaaacaggacatccattttcggcccaaccagcgaaccaaaaatgaaggcgctaccggcatcactgtaagacatcactttatgaacgcctaatgccgcctgttctactgcccattttcccggtgggaagtagagcatgatgccaccaatagcgatttgcagcagcagtgcggctccaaccgtgcgcaaactgatgctctttttattcactgacaacagaaatgctattgccagtaacaccaccatccccacaacacttctcattatatccataatgattttcccttcatgccggtaaacccggcgtcagcgccaggttttggtatgcttgatgagtacgggcgacggctttctgcccgtcagaaattaacccgcgagacgctgatattctttggcaatttcgctcgccagaatggcgttgttgaacaccagctggatgttggatttcaggctgtcaccgccggtcagttcagcaacgcgcgccagcaggaatggcgtactttctttaccaatgactccctgagcttcagcttcagctaccgcctgatcgatcgccgcattgatagtgtgttccggcatagcaaactgttccgggatcgggttcgctaccacgaggccaccgttcagaccgctttgccatttcaccaccattgcacgggcaatttcgctggcgctgtcgagacgaatgctgacgtcaaacgggctggtgcggcagaaaaacgcaggcagcgctttagtctgatagccaattaacggcacaccgaaggtttctaaatactcagtggttaatcctaaatcgagaatagatttcgccccggcacaaacaacggtgacattagtatttgccagttcttgcaaatcggcagaaatatcgaaggtatgttccgccccgcgatgcacaccaccaattcccccggtggcaaatactttaattccggcaagcgccgcaataatcatcgttgaagccacagtggttgcgccattttttccggcggcaacaacaaaaggtaaatcgcgacgactaactttggtcacgttatgcccttcacgacccagtaattcaatttcttctttgcttaaccccactttcatcacgccgccaataatggcgatcgtggcaggtacagcgccctgtttacgaatagtttcttcaacttcaattgcggtctgggcattttgtgggaacggcatcccgtgagaaataatggtcgattccagcgccacaaccggttttttgttttttaaagcgtcctgcacttccggggaaatttgtaataattcaggggaaatttttaattcagacattctgcgttctccactaacgatataacgttggcaatcgataaatcggggttattggtgtattcacaggagagcgccattgacgaacatccctgtgcgaaacgaacagattcggcaaacggcattccgtctacccaacacgaagcaagtcccgccatcatggcatcgcccgctccggtaacattaataacattggttttgatcggcgcagaccagccactttcaccgctgatatcgctgtaataaacgccgtcgccgcccatgctcaataccagtcggttcaggccatgttgatggaaccaggcagcaacttttgccacatcttcacgccctgacagcgcaatcccactcagggtttccgcttcaaggcggtttggcttgagagtgtggatctgatttagacggtcgcgcactttgacacatttccatgccgaaaccggatcgacaaatacgggtacgttggcggcattatccagaatccatgccagtgcctcttcactgatattacagtccgcgacaatgacctttgccctctgaataaattcaccgtgctgtgcgagatattcagctgtaatagcgttgctaatattcatgtcatttatagcaaccagcatttcaccggtattatcgagtaatgataaataactcgacgtattttctcccggcacaatcaggcatttatcgacataaacgccagattgattggtttgcgttagcagcgattgaccataaaaatcactgcctacggcgctcagtagccaggctttgttacccagcaacgccaggttttgtgcaatattgcgccctactccaccaggcgtaaattttattttacctggatttgaatccgcataatttaatgattcatgtgaatatccggcgacatcaatattcgccgaacctataattacgacataatccttttcgcgcatagcacgtcctctggtaaaaaattaccaaccctgtcaatccacaagaatatagatactgcaaagacggtttaaacatgtgttcatatttaaacatgtgctcatagtatgcatgttttacgtaaagtaaattaccgccagagaggcaaaatgggcagatttgagcaggctcacaaaatgcgattaaatgcctgaattacaaaagcgaggaatttgtgacgggatgcacagaacagaacaataaaaaagggcagaaaataatctgcccttgaggaaataacctgagtgtttgatgaacgtttgaagtttctactgaaagataaaaccatttaaattcataaaattacattcacaaaccggtcattctctttgcgctcatcaaatgttacaggacaggaaatttctgccctgtaacacaccttttattacgctgctttcgctactgcgtccacttccggacgtttcaggaaggcataggccaaacccgccaccagcgtaccggcaataattgctaccaggtaacccaataccggcgtaatagcgccagggatcagcagaacaaacagaccaccgtgcggtgccatcagtttcgcaccaatcgccattgagattgcgccagtcagcgccccacccacgatacagcacggcagcacacgcatcggatcacgagcagcaaacggaattgcaccttccgaaatgaagcacagtcccaataccagagcggctttgccaccttcctgctgcgctttgtcgaatttgcgacgcgccaccattgttgccagacccattgccagcggtggcaccatacctgccgccataatcgccgccatcgggccataggtttgagtactcagcagacccacaccgaatgcgtacgctgctttgtttaccggaccgcccatgtcagtacacatcatgccaccgaggatcgcccccagcagaaccgcattcgcagtccccatggtctgcagccagtgagtcagcccttcgagaatgccagcaactggtttaccgatcaggtagatcatcgccagaccgaccaccagactggaaattagcggaatgatcaggatcggtttcagcgcctccatactctgtggcagtttcaattgcgtactgattaacttcgcaatgtaaccagccaggaagcccgcaataataccaccaatgaagccagaaccggtgctgaccgccagcataccgccaatcagacccggagtgaggcccggacgatcggcaatggaaaaggcaatataacctgccagtaccggcaccatcagcgcaaaggctgaaccaccaccaatctgcatcagcgccgcagccaacgtacccggctctttaaacgcttcgataccaaaagcaaaagaaagcgcgatacacagaccacctgcaacgaccatcggcagcatgtaagaaacgcccgtcagcaagtgacggtatgcgcctgcactctctttcttactttcagtggtcgccgtttgagctttgcccgccggttcatacggcgttgcttcagcaaccgctttatccagttcctgcgcggttttcttcagcgccagaccggtagaggtacgatacatcggtttaccagcaaatttcgccagatccacttcgatatctgccgccacaatcaccagatccgctgctgcgacttcttcgggagtgattgcattacccgcgccaacagaaccacgggtttcaactttcacccaccagccacgttttttcgcttcggtttcaatggcttcagccgccataaaggtgtgtgctacgccagtcgggcaagcagtcaccgcaactacgcgtttcggaccgctggcggcaactggtgctgtcgcagcgaccggcgcagtgtaaggtttcgcatggcctttggcttcactcaggaacagctcagggtgcgcaactgcccgggaaatatcgcccagccagacatttttaccgttcagcgcgctgtcgttcgggatggaatcaccgagaacaatcgccatttcagcgtcgttcggattgtcgatgatttccagttttgcttttcgcgccgccgcgcccagcagggtcttcgccatataggcgcgtgcctgaccgagattagcgtcaataatcagcagcgttttcattatgcctctcctgctgtcagttaaaaggttgtaagtcgacgcgcgccatcattgcggccaactgcggacgatcggtaatacccacattgctttgacttaccgccagggctgcaacagctgtcgccagacgcagtgtgtgttcactggattcacgcatcagcaagccataaatcaggccaccaaccatagaatcccctgcgccaacggtgcttacgacatcgactgacggtggtttggcgatccattcgccggaggcattaacccaaagcgcgccttcggcacccagtgaaataacaacatgcgcgatgccttgttcacgtagcgcatgtgcagcttcaatcacatctttcatttcaggcagtttacggcctgcccagatttccagctcgcggcggttaggtttcaccagccacggtgccgctttcaaacctgctactaacgcttcacggctactatcaaagataatgcaaggacactgactacgcaggcgagtcatccagtcggtgaacgcttccgggctgacgcctgacggtaagcttccgctgacacagaccatatcgaactgaccgagccagctcagagaatcagtcacaaagcgttcccagtcggcgggggtgacttcaaaacccgagaagttgaagtcggtcacttcgccgtctttttccgtcagcttaacgttaattcgggtgcgcccctgtacaacctggaaacggttggcaatgcccagctcgctgaacagttgctgaaaaccatcctgattgtctttacccaggaagccgccaacggtgacatcaattcccaggtcttttaatactttggccacgttgatgcctttacccgccgcatgcagaccggtggttttcaccaggttcacttcgccgcgttcaatttccgggcagaaaccaacaaggtcataagccggattaagggtgatagtagcaacacgtctgctcattatgcgccctccccaagaccagcagcgatagcgtcgccgattgctttcagcgcctgttcagcatctgcaccctgggcggtaaagcgtaggcgatgacctttcttaacgccaagtgccacaactttcatcagactacgtccgtttgccggtttgccggtaccatcaaggtttgtcacggtaatatcactgttaaattgtttaatggtattgaccagcatggtacctggacgagcatgcaggccgtgttcattgcgcaccacaaactccgcgcttaacacgtcgtcggtcggcgcatcatcgctggtcagcagcgccagcaacgttgccgcatccgctttcagcaagcggtcagctttattgtcgagcaataaatcagcgagacgcttaagaaccgcgatgggctgatcgtcattcatcgccacactcaccagcatggctgccgtttcgccgtccacatcaaaagcatttgccgcacggcttaccgcaatcgcgctacgcagattgccttcggcgctatcgctcagccagataccctgtccgagattcagcggttgttcattgatggctttggtgacgaaagtggcgtcaactgcccccgcctctttcagacgcgcagcgttcagcgcctgaagagtcagcagatcgctggcgacgatatccagtgtcagcatttcgttgtcgagcttcagctgctcactctgcttttcgcccatcagtaatgcgcgaagttcttctgctgttgttgctgacttcagttgttcagcaacggaatcatcgctcagtacgtgggtcagctggcgtagcaggcccagatgttcatccgagctggcagcaataccgattgccacgtacgctacctgaccgtcaccccaggtgacgccttccgggaactgaaatacctgaacgccggttttcagcacctgatcgcgggtgtcggtagtgccgtgtggaatagcaataccattgccgaggaacgttgaggtttgctgttcgcgcgccagcatgccattgacgtagccttctgctacattaccggcctgcaccagcgccgcagcgacctggcgaatcgcctcttctttgtctccggccttttcgcccggatggatgtcctgtacggataactggaacatagttctcctctcttgctgaattgaaacgattcagcctctatgagaaaaaaagcgccaacctggcttagggttaaagacaagatcgcgctgaaacgtttcaagaaagcataatacttctgtttcagcacgcaaggaaagccgtaaagttatgagcaaaagtttgatgtgctgcacaattttttgccatttttcctaattgctgatgggaaaatccgttatcagcaatttcatttcagcagcgtcagcagccaatcagcaacagtgaaatggcattttgactattcgtggcgcttttgatttcgctgtctgtttattttctgacaagcagcgtaaactccgcgtcttcctcttccagtgatcgaccagcatgcataactcccccgcagtctccagcgcgaaatcgtttgacctgacctcgacggcgtttttaatcgttgcctttctcaccggtattgcgggcgctctgcaaaccccgacactcagtatttttcttaccgatgaagtacatgcccgtccggcgatggtgggattcttctttaccggcagcgctgtcattgggattctggtaagtcagtttctcgccgggcgctctgataagcgcggcgatcgcaaatcgctgattgtcttttgctgcctgttaggcgtgctggcctgcaccctttttgcctggaatcgcaactactttgttttgctattcgttggcgtctttcttagcagctttggctcgaccgctaacccgcaaatgtttgcccttgcccgtgaacatgccgacaaaaccggacgtgaggcggtgatgttcagctcttttttacgcgctcaggtttcactggcatgggtcattggcccaccgctggcttatgccttagcgatgggtttcagctttacggtaatgtatctgagcgcagcggtagcgtttattgtttgcggtgtgatggtgtggctgtttttaccgtcgatgcgaaaagagcttccgctggcgaccggcacgatcgaagcgccgcgccgtaaccgtcgcgatacgctgctgctgtttgtcatttgtacattgatgtggggctcgaacagcctgtacatcatcaacatgccgctatttattatcaacgaactgcatcttcccgagaaactggccggtgtgatgatggggaccgccgccgggctggaaatcccgacgatgttgattgccggatatttcgccaaacgtctgggtaagcgtttcttaatgcgcgttgctgccgtgggtggcgtctgtttttacgcaggaatgctgatggcgcattcacctgtcattctgttgggcttgcagctgctaaatgctatttttattggcattctgggcggcatcgggatgctctattttcaggatctgatgcccggtcaggcgggttcagccaccacgctctataccaacacttcgcgcgtgggctggatcatcgcaggatcagtggcgggcatcgtcgccgagatctggaattatcacgctgtgttctggtttgcgatggtgatgattatcgccactctgttttgcttactgcggattaaagatgtttaaggcgcggtcagcatttccagatcgataagccaggtcatggcctgctgacgcgagttaccgcacatttcagcgctggcttgtaagcctgcacagactttcggtcgcagtggcgaggtgaaaattttacagcgttgctgttcatcaagctgaatgcagggcgtattggcgggcttgccatctggcataccgggaatagggctggaaattgaaggggcagtgcaacacgccccgcaacccggacggcattccatacgttgttctcttaaggttaaccaccggattgatgagcgcgcacagtaccaccttttttgcaccagcaaaagtgcgaataccacttgcccgaaaggcccgtcgcgagtactttgtcgcgatatttttgacattttcgactacaggaatttttcgatgccaagagcgaacgaaattaaaaaaggtatggtactgaattacaacggcaaactgctgctggttaaggatattgatattcagtcgcccactgcccgcggtgccgctacgctgtacaaaatgcgtttttctgatgtccgtaccgggctgaaagtagaagagcgtttcaaaggtgatgatatcgttgacaccgtgacgctgacccgccgttacgttgacttctcctatgtcgatggcaacgaatatgtctttatggataaagaagactataccccgtataccttcaccaaagatcagattgaagaagagttgctgtttatgccagagggcggcatgccggacatgcaggtgctgacctgggacggtcaactgctggcgcttgagctgccgcagaccgttgatctggaaatcgttgaaaccgcaccaggcatcaaaggggcatctgccagcgcccgtaacaaaccggcgacattgagcactggtctggtgattcaggtaccagaatacttaagcccgggcgaaaaaattcgtatccatatcgaagaacgccgttatatggggcgtgctgactaacttcagccgcatgcagaaaagggatagctcaggctgtcccttttttaatttattataccaatcttctattttgcgcttcctgaacaccttacgccctcaattttcactcgttgattgatcgccctcacacttcatcgcattaacaatccagaccaatttcaattgctgtcatataactttacactgtcgttgttaattaatcgttactaagacgtgactcctatgaatacaatcgcctccgttacgctcccgcatcatgtacacgctccacgctatgatcgccagcagttgcaatcacgtatcgttcattttggctttggagcctttcaccgcgctcatcaggcgttactgaccgatcgtgtgctgaatgcccagggcggcgactgggggatctgtgaaatcagcttgttcagcggtgatcaactgatgagccagctccgcgcacagaaccatttatataccgtgctggagaaaggtgcggacggcaatcaggtgataattgtcggtgccgttcacgaatgccttaatgcaaaactggattccttagcggcaattattgagaaattttgcgagccacaggtggcaattgtttccctgacgattaccgaaaaaggctattgtattgacccggccaccggtgcactcgacaccagtaatccgcggattattcacgatctacaaacccctgaagaacctcactccgcaccgggtattctcgtcgaagcactgaaacgccgccgtgagcgcggccttacaccgtttaccgtgctctcctgcgacaatattcccgacaatggtcatgtggtgaaaaacgcggtgctgggaatggcagaaaaacgttcgccagaactcgccgggtggataaaagagcacgtcagttttccgggaaccatggtcgaccgcattgttccggctgcaaccgacgaatcactggtggaaatcagccagcatctgggggtgaatgatccctgcgcgattagctgcgaaccgtttatccagtgggtggtggaagataacttcgtcgctgggcgtcctgcctgggaagtcgcaggtgtacaaatggtgaatgatgtcctgccatgggaagagatgaaactgcggatgcttaatggcagccactcttttctcgcttatctgggttacctctcaggattcgcccatatcagtgattgcatgcaggatcgcgcatttcgccatgccgccagaacattaatgctggatgagcaagcgccgacactgcaaattaaagatgtcgatttaacacaatatgcggataagttaattgcacgttttgctaatccggcgctgaaacataagacctggcaaatcgcgatggatggcagccagaaattaccgcaacgcatgctggcaggtattcgcatacatcaggggcgcgaaacggactggtcgttgctggcattaggcgttgcaggctggatgcgttacgtcagcggcgttgatgatgccggaaatgccattgatgttcgcgatccgcttagcgataaaattcgcgaacttgttgcgggcagcagcagtgaacaacgcgtaaccgccctgctttccctgcgtgaagttttcggtgatgatctgccagataacccgcattttgtgcaggccatcgaacaagcctggcaacaaatcgtacaattcggcgcacatcaggcgctattaaacaccctcaaaatttaacgatttctgcggttaaagcggatgaagctcaccttcgtccgctctccccttctcttttctgccttttttagccaggattaacgctcagttaacttaccagagtattgcggagccgttgtgaccaggaccaacctcatcaccggttttctcggcagcgggaaaaccacgtcgattcttcatctgttagcccataaagatcccaacgaaaaatgggcggtactggttaatgaatttggggaagtcggaattgatggtgctttgctcgccgatagcggcgcattgctgaaagagatccccggcggctgcatgtgctgcgttaatggtttacccatgcaggtagggttgaataccttactgcgtcagggaaaaccagaccgcttgttgatagagccgaccgggctgggccatccgaaacagatcctcgatctgttaaccgcaccagtctatgaaccgtggatagatctgcgcgccaccttgtgcattctcgatccgcgcttgctgctggacgaaaaaagcgccagcaatgaaaacttccgtgaccagctggctgccgcagacatcattgtcgccaataaatccgaccgtacgacgcccgaaagtgagcaagcgctacagcgttggtggcagcaaaatggtggcgatcgacaattaattcacagtgagcatgggaaagttgacggtcatcttctggatttgccgcgtcgcaatttagccgagttgcccgccagcgccgcgcattctcatcagcatgtcgtgaaaaaagggttagcagcgttaagcctgccagagcatcaacgctggcgtcgcagtctgaacagcgggcaaggatatcaggcctgcggctggatattcgacgctgatacggtattcgacaccattggcattctggaatgggcgcgacttgcaccggtggaacgcgtcaaaggcgtgctgcgtattcccgaagggctggtgcgaatcaaccgtcagggcgatgacctgcacattgaaacgcaaaacgttgcgccaccggacagccgtattgagctgatttccagcagcgaagctgactggaatgccttgcagagcgcgctgttgaagcttcgtttagcgactaccgcgtaaggttgcctgcgtttttcagtaagataattagagaaaatatgattaaaaatttgccgcaaatagtgttgttgaatattgtcggcctcgcgctgtttctttcctggtatatccccgttaatcatggattctggttgccgattgatgcggatattttttatttctttaatcagaaactggtcgaaagtaaggcctttttgtggctggttgcattgaccaacaatcgcgccttcgacggttgttcactgctggcgatgggtatgttgatgctgagtttctggctgaaagaaaacgcccctggcagacgacgtatcgtgattattggtctggtcatgctattaactgcagtggtattaaaccagctgggtcaggcattaattcctgtaaaacgggccagcccaacattgacttttaccgatattaaccgcgtcagcgaactgctctctgttcccacgaaagatgcctcacgagatagctttcccggcgatcacggcatgatgctgcttattttttcggcattcatgtggcgttatttcggcaaagttgcaggccttatcgcccttattatttttgtggtttttgcatttcccagagtaatgattggcgcacactggtttactgacatcattgtcggttcgatgaccgtgatattgatcggtttgccctgggtgttgctgacgccattaagtgatcgattaatcaccttttttgacaaatcactaccaggaaaaaacaaacatttccaaaacaaataactcacagtaattaacatcatcagggttatttttatagtgaggataatcctgatgatgcgcaccgtgctttcatctatcgaacgcaaaaatcattctctaagtaaatgaatggattgcatgcgtttcactcaattgtactttaattgaccaaccccgcttattaactttctgtatcactttttcttataaaaaatcatgtaaaaccgctcgccaagaccgcaccaatcgggtaatctcgaactcgttttgcctcggcggtagattatcctcacagcatataattttgtgcgttagtccacagatttggccttaaggaattgtttcaacatgcccaggtaattagtctcgtgtcgcttggcatttttttataacgatatttgtcgttaaggacttcaagggaaaacaaacaacatggtcaaatctcaaccgattttgagatatatcttgcgcgggattcccgcgattgcagtagcggttctgctttctgcatgtagtgcaaataacaccgcaaagaatatgcatcctgagacacgtgcagtgggtagtgaaacatcatcactgcaagcttctcaggatgaatttgaaaacctggttcgtaatgtcgacgtaaaatcgcgaattatggatcagtatgctgactggaaaggcgtacgttatcgtctgggcggcagcactaaaaaaggtatcgattgttctggtttcgtacagcgtacattccgtgagcaatttggcttagaacttccgcgttcgacttacgaacagcaggaaatgggtaaatctgtttcccgcagtaatttgcgtacgggtgatttagttctgttccgtgccggttcaacgggacgccatgtcggtatttatatcggcaacaatcagtttgtccatgcttccaccagcagtggtgttattatttccagcatgaatgaaccgtactggaagaagcgttacaacgaagcacgccgggttctcagccgcagctaataaaccgtttggatgcaatcccttggctatcctgacgagttaactgaaagcactgcttaggcagtgcttttttgttttcattcatcagagaaaatgatgtttccgcgtcttgatccaggctatagtccggtcattgttatcttttaaatgttgtcgtaatttcaggaaattaacggaatcatgttcatacgcgctcccaattttggacgtaagctcctgcttacctgcattgttgcaggcgtaatgattgcgatactggtgagttgccttcagtttttagtggcctggcataagcacgaagtcaaatacgacacactgattaccgacgtacaaaagtatctcgatacctattttgccgacctgaaatccactactgaccggctccagccgctgaccttagatacctgccagcaagctaaccccgaactgaccgcccgcgcagcgtttagcatgaatgtccgaacgtttgtgctggtgaaagataaaaaaacattctgttcatctgcgaccggtgagatggacattccactcaatgaattgattccggcgctcgacattaataaaaacgtcgatatggcgatcttacccggcacgccgatggtgccgaacaaacccgcaatcgtcatctggtatcgcaaccctttgctgaaaaatagcggcgtctttgccgctctgaatctcaacctgacgccttcactcttttatagttcacggcaggaagattacgatggcgtcgccctcattattggcaatactgcgctatctaccttttcttcacgtttgatgaacgttaacgaattaaccgacatgccagtccgtgaaactaaaattgcgggcattcctctgaccgttcggctttatgcagatgactggacatggaacgatgtgtggtacgcatttttactgggcggcatgagtggaactgtcgttggcctgctctgctattacctgatgagcgtacgtatgcgccccggcagagaaatcatgaccgccatcaagcgcgaacaattttacgtggcgtatcaaccggtggtggatacacaagctttgcgagtaacgggcctggaagtactgctacgctggcggcatcctgtcgcgggagaaattcccccggatgccttcattaactttgccgaatcgcaaaagatgattgtgccgctgactcagcacctgtttgagttaattgcccgcgatgccgcagaattagaaaaagtgctgccggtaggcgtcaaatttggtattaacattgcgccggaccatctgcacagcgaaagctttaaagcagatatccagaaactgctcacttccctgcccgcacaccatttccagattgtgctggaaattaccgagcgcgatatgttgaaagagcaagaagccacacaactcttcgcctggctgcactcggtcggcgtagaaattgctattgatgacttcggcaccgggcacagcgcgcttatctatcttgagcgttttacgctcgattatctgaaaattgaccgtggatttatcaacgccatcggtacggaaacgatcacttcccccgtacttgacgcggtgctgacgctggcgaaacgcctcaatatgctgacggttgctgaaggggtcgaaacgccggaacaggcgcgatggctaagcgaacgcggcgttaatttcatgcaaggctactggattagccgcccgttaccgctggacgattttgttcgctggctaaagaaaccgtatacgccgcagtggtaaggtgtgcttacgtcccttattattcatagtgaaagcatgccggattgcggctaatgatgagtaaaaggaaatccgttgcagatgattgtgcgcatactgctgctgtttatcgctctgttcacctttggtgtgcaggcgcaggctatcaaggaaagctatgcctttgccgtgctgggcgaaccccggtacgcgtttaatttcaaccattttgattatgtgaaccccgccgcgccaaaaggtgggcagataacgttgtcagccctcggcaccttcgataatttcaaccgctatgcactgcgcggcaacccgggcgcacgcaccgagcagctgtacgacacgctatttacgacttccgatgacgaaccaggcagttattacccgctgattgctgaaagcgcacgctatgctgacgattattcctgggtggaggtcgctattaatccgcgcgcccgttttcatgatggttcgcccattactgcccgcgatgtagagtttacttttcaaaaatttatgaccgaaggcgtgccgcaatttcgtctggtctacaaaggcaccaccgtcaaagccattgcaccgttaaccgtgcgcattgagttagctaaacccggcaaagaagatatgctgagtctgttttcgctgccggtatttccagaaaagtactggaaggatcacaaacttagcgacccgctcgccacgcctccgcttgccagtggtccgtaccgcgttacgtcctggaaaatggggcaaaatattgtctattcccgtgtgaaagattactgggcagcaaacttaccggtaaaccgtggacgctggaatttcgacaccattcgctacgattattacctcgatgataatgtcgcctttgaagcgtttaaagcaggtgcctttgatttgcgtatggaaaacgacgccaaaaactgggccacgcgttataccggtaaaaatttcgataaaaaatacatcatcaaagatgagcaaaagaacgaatcagcccaggatacgcgttggctggcgtttaatatccaacgtccggtattcagcgatcgccgggtccgggaagctatcactctcgcctttgactttgaatggatgaacaaggcgttgttttacaatgcctggagtcgcacgaacagttattttcagaataccgaatacgcggccagaaattaccccgacgccgcggagctggtgcttctggcaccaatgaaaaaagatctaccgtcagaagtcttcacacaaatctaccagccgccggtatccaaaggcgatggctacgatcgtgacaacctgttaaaagccgacaaacttctcaacgaagcgggctgggtgctgaagggtcagcaacgcgttaatgccacaacgggtcagccactcagctttgaattattgcttcccgcaagcagcaatagtcagtgggtattgccgttccagcacagcctgcaacggctgggtatcaacatggacattcgcaaggtggataactcgcaaatcactaaccgcatgcgcagtcgcgactatgacatgatgccgcgcgtatggcgggcgatgccgtggcccagttccgatttacagatttcctggtcatcggaatatatcaattccacttataatgcccccggcgtgcaaagcccggttatcgactcgctgatcaaccaaattattgccgcgcagggaaataaagaaaaattactgccgttggggcgagcactggatcgcgtattaacgtggaattattacatgctgccaatgtggtacatggcggaagaccgtctcgcctggtgggataaattctcccagccggccgtgcgccccatctatagcctcggtatcgatacctggtggtatgacgtcaataaagcggccaaactgccgtccgccagcaaacagggagagtagatgggcgcttacctgattcgccgtctgttgctggtgatcccaacattatgggcgattatcaccatcaactttttcatcgtgcaaattgcgcctggcggtccggtcgaccaggccatcgccgccattgagtttggtaatgccggagtattacccggcgcaggcggtgaaggtgttcgtgccagccatgcgcaaacgggtgtcggcaatatcagcgacagtaattaccgtggcggacgcggattagatccagaagtgatcgctgagatcactcatcgctacggttttgataagccgatccacgaacgttacttcaaaatgctctgggactacatccgctttgattttggcgatagcctgtttcgcagcgcctcggtgctgacgctgattaaagacagtctgccggtttccatcaccctcggattgtggagcacgctgattatctatctggtgtcgattccgttaggcattcgcaaagctgtttataatgggagccgctttgacgtctggagtagcgcatttatcatcatcggctacgccattccggcctttttgtttgccatcctgctgattgtcttcttcgcgggcggcagctatttcgacctgttccctctacgcggcctggtttccgctaactttgattcgctgccgtggtatcagaaaatcaccgattatctgtggcatatcacgctgccggtgctggcgacagtgattggtggctttgcggcgctgaccatgctgacaaaaaactcattccttgatgaagtgcgcaagcaatacgtggtgaccgcgcgtgcgaaaggggtaagtgaaaaaaatattctctggaaacatgtgttccgcaacgccatgctgctggtgattgccggttttccggcgacgtttatcagcatgttttttaccggctcgctgctgattgaggtgatgttttcactcaatggtctgggcttactgggctacgaagcgaccgtctcgcgcgattatcctgtaatgtttggtaccttgtatattttcaccctgattggcctgctgctgaatattgtcagtgatatcagctatacgctggttgatccgcgtattgattttgagggacgttaatgtcgcgactcagccccgtcaatcaggcccgttgggcgcgttttcgtcataaccgtcgcggctactggtcgttatggattttcctcgtcttgtttggtttgagtttgtgttctgaacttatcgccaacgataaaccgttgctggtgcgttatgacggcagttggtatttcccgttattgaaaaactacagcgaaagcgattttggcggcccgctggcaagtcaggctgattatcaggacccgtggctgaaacaacggctggaaaataacggctgggtactgtgggcaccgattcgctttggtgctaccagtatcaactttgctaccaataagcccttcccttctccaccctcccggcaaaactggctgggaacggatgccaacggcggcgatgtgctggcacgcattctctatggcacgcggatctcggttctgtttggcctgatgctgactctctgttccagcgtgatgggcgtgctggcgggggcgctacaaggctattacggcggtaaagtcgatctctggggacaacgctttattgaagtatggtcggggatgccgacgctgtttttgattattttactttccagcgtcgtacagcctaacttctggtggctgctggcaattactgtcttgtttggctggatgagtctggtcggcgtggtgcgggcggagtttttacgtactcgtaatttcgactacattcgtgcggcacaggcgcttggcgtcagcgatcgcagtatcatcctgcgtcatatgttgcctaatgccatggtcgcgaccctcacctttttaccgtttattttatgtagttcgataaccaccctgacctcgctcgatttcctcggcttcggtctaccgctcggttcaccgtcactcggtgaactgctgttacaagggaaaaataaccttcaggccccgtggcttgggatcaccgccttcttgtcggtggcgatattattgtctttgctgatctttattggtgaagccgtccgcgacgcatttgatcctaataaggcggtgtagcatgacgcaaactctgttagcgattgaaaatttgtcggtgggttttcgccatcagcaaaccgtacgtacagtagtcaatgatgtttcactacagattgaggctggcgaaacgctggcgctggtgggtgagtcaggttcaggcaaaagcgttaccgcgctgtcaattttacgcctgctcccttccccgccggttgaatatctctccggcgatattcgttttcatggcgaatcgctgcttcacgccagcgatcaaacgttgcgcggtgtacgcggtaataagatcgccatgatttttcaggaaccgatggtgtcgttaaatccattgcataccctggaaaaacagctttatgaagtgctttcactccaccgcgggatgcgtcgggaagcggctcgtggcgaaattcttaactgccttgatcgcgttggtatccgccaggcggcaaaacggctgacagattatccgcatcagctctccggcggcgaacggcagcgggtgatgattgcgatggcgctgttaacgcgaccggaattattaattgccgatgaaccgaccaccgcactggacgtctctgtccaggcgcagattttacagctgttgcgcgaactgcaaggcgagctgaatatgggcatgctgtttattactcataacctcagcattgtcagaaaactggcccaccgcgtggcggtaatgcaaaacggtcgctgtgtcgagcaaaattacgccgctacgctatttgcatcacccactcatccttacacacaaaagctactcaacagtgaaccgtcaggcgatccagtgccgttgccagaacctgcctcaacgttgctggatgttgaacagcttcaggttgccttccccattcgcaaagggattttgaagcgcattgtggatcataatgtggtggtgaaaaacatcagttttacgctacgagcgggtgaaacactgggtttagtgggcgagtccggttccgggaaaagtacgacgggactggcgctgctgcgactgattaattctcagggcagcatcatctttgacggtcagccactgcaaaatttaaatcgccgccagctgttacctattcgtcatcgcattcaggtggtatttcaggatccaaactcctcgctcaacccacgactcaacgttttgcagattattgaggaaggcttacgggttcaccagccgacgctttctgccgcacaacgcgaacaacaagtgatagccgtgatgcatgaagtgggattagatcctgaaacacgccaccgttatccggcggagttctctggtggtcagcgacaacgtattgcgattgccagggcattaattcttaagccctcgctgatcatacttgatgaaccgacatcatcactcgacaaaacggtacaggcgcaaatattgacgctattgaaatcattgcaacaaaagcatcaactggcctatttgtttatcagccacgatttgcacgttgtccgcgcgttatgtcatcaggttatcatactgcgacaaggggaagtagtggaacaaggaccgtgcgcgcgcgtgtttgccacaccgcagcaggagtatacgcgtcagctactggcgttgagctgacgcttaaaaaggattgtagtttgaaaagggttcggcaattgccacaccaaaatttttcaatcggcatgttgcagcaaactcgtcctggcgatttacaaacaggcacggctcaccttcacactccagcaccgaacatggaacttcgatgtcgcttaacgcctggcttagtttatacatcaccgaccatgcattatcaccatccgggctaagcaatttaagcgccaccaggctgttgtcaccgcacggtccattttgcggaatcggttcaaccttcgaacctgcgaaaccagcagaccagcgatagttctgcggcagtcgatggacgattgagagttgtaatgaagtcacttattttccccggaagcacattcacttcacaatttgtttacatcaattttaacacatcatcaacaatccgtctttatacagatcgtaaagattgatgcctcgcctgcgtggcctctatggctctgatttaagtaatatctgcgggcgtggtcacgtttgcggggctatatgtacccgtttctgcgatctaactcaacctttttaactacaatgatgtgactttttacataaattgattttacataaaataaacatatatcgggggaatgatagatttgtggttgacatgcatcaacaaaggaagccttttagcttcctcgttgtgcaatagatcaccgttttttcggccgactggcgtacagacagaagagaatggagctggttgcgcagaatgcaattgaccaaatcatcggccatgcagagttaaaggtcgcaagagaaagcaatgcgccaacaattgcccctatgccaaaacggaaggttcctgccagcgaagatgccgttcccgccatatggggaaactcatcaagaatgaccgccatcgcattggatgacaccatcgacacgcagcccacaaacgccgcaacgccaaccaccagcgaccaaaatcccagccccagcagcgcactgatgaccatccacgctgccataataaattgtatccacaaccccgagcggaacatatttaacgcgccaatgcggcggacgaagcggctgttaaagatggtcatcacgaacagaaaaacaatgtttagcgcaaagtaataaccaaagttttccggcgcgacgtggttaatttcaatataaacaaacggtccggcgcttaagaatgagaacatcccggcaaagctgaaaccactggcaagcatgtagctcaggacacgtttatggcggaacagcgccgcaaagttaccaatagtggtacgaatgtgaaatggctgacgacgctccggtggtaaggtttctttaatcaggaagaaaatcattgccgaagccagaatcgccgctaatgccaggatccagaagatgtaatgccagctcagccacaccagcacccagccgccaactatcggtgccatcagcggtgcaatggttgtcaccagcatgacaaacgacatcatccgcgagaactcttctttcgggtaaatatcgcgcatcagggcgttaatgaccacgctggccgcagccgcagccagcccgtggaagaaacgcatcacaatcagctgatcgatggtgtttgccaacgcacacgccaccgcggcggcggcaaacaccagcgtaccgccgagcaccaccggcttacgcccgaagctgtctgccatcggcccgtagattaactgccccaacgcaaagcccagaatataagtactgagggtcatctgcgtactgcccgccggtacgccaaactgcgctgaaattaccggtagcgcgggcagatacatatcaatcgacagcggcatcaacatggccagcaggccaaggataaaaacaatagcaaacgacgaatgctgtcgggtggtcacaacgggctcctgaaagtcattgaaaagttagacgacgctggcaatttcttcttcagttaacggacgatattcaccgggggctaaatcagcatccagcgtaataccgccaatacgttcacgatgcagctcaaccacgtggttacccacggcggcgaacatgcgtttcacctgatgataacgcccttcgctgatggtcagacgaacctgcgttggggtaatcacttccagcaccgcaggcttagtgagatctttttcgttatgcagctgcacgcctttagcaaattgctctgccgtatcgtcagctacaggtgattccagtgtcaccagataggtcttctcgcaatgatggcgcggagaagtaatgcggtgcgaccactgaccatcatcagtcatcagcaccagaccggtggtatcaatatccaaccgccccgccgcatgcagtttccacgctaccggttcatcaagaaaatagagcaccgttgggtgatcagggtcgtccgtggagcaaacatagccctgaggcttattgagcatgaagtaacgtggaccgtgttgctgcgccagcgggttgccatcgtaagcgacatcatgttcaggaagcagtttgaacgctgcattacggacgatttcgccatcgacggtgacacgattgccgcggatttcacgcccggcaatagcacggctaacgccgagttgctgtgcgataaatttatcaagtcgcatgtgtgtgattttgcctgtaaaaacggaggtcgggcattgacccgaaaatctgaactgttgtctgcccagtatagcggtctaataacatccctcaagggaaaaagatccatggcatactattagcagaataatctacctacgcgagaccatgatttttacacttcgcccatatcagcaagaagccgtggatgccacgctcaaccattttcgtcgtcataaaacccctgccgttatcgtgctgcccaccggcgcaggtaaaagcctggtgatagcggaactggcacggctggctcgtggtcgcgtgctggtgctggcacacgttaaagaactggtggcgcaaaaccatgcaaagtatcaggcgctggggctggaagccgatatttttgccgccgggctaaagcgcaaagagagccacggtaaagtggtatttggcagcgtgcagtctgtcgcccgtaatcttgatgcctttcagggtgaattttcgctgttgattgtcgatgaatgtcaccgtattggtgacgatgaagagagccagtatcagcaaatcctcactcacctgacaaaagtgaatccccacttacgcctgctggggctgactgccacgccttttcgattgggcaaaggctggatctaccagtttcattatcacggcatggtacgcggcgatgagaaagcccttttccgtgactgcatttatgagctgccgctgcgttatatgattaaacacggctatctgacgccgccagaacgactggatatgccagtagtgcaatacgatttcagccgcttgcaggcacagagtaacgggctgttcagcgaagccgatctcaaccgtgagctgaaaaaacaacaacgtattaccccgcacatcatcagccagattatggagtttgctgcaacgcgcaaaggggtgatgatttttgccgcgacggttgaacacgcaaaagagattgtgggattactgcctgccgaagatgcagcactgattactggcgacacccccggcgctgagcgcgatgtgttaattgaaaattttaaagcccagcgttttcgctatctggtcaacgtcgcggtactgaccaccggatttgacgccccgcacgtcgatcttatcgccattctgcgccctaccgaatcagtgagtctttaccaacaaattgtcgggcgcggtctgcgtctcgctccgggcaagactgattgcttaattcttgattatgcgggtaatcctcacgatctctacgcgccggaagttggtacaccaaaaggcaaaagtgacaacgttccggtacaggttttctgccctgcctgcggttttgccaacaccttttgggggaaaacgaccgccgacgggacattgattgaacactttggtcgtcgctgtcagggatggtttgaagatgacgacggtcatcgcgaacaatgtgacttccgtttccgttttaaaaattgcccgcaatgtaacgcggaaaacgatattgccgcccgccgctgccgcgaatgtgacaccgtactggttgatccggacgatatgttaaaagcggcgctacgactgaaagacgcgctggtattacgctgtagcggcatgtctttgcaacatgggcacgacgagaaaggcgaatggttgaaaatcacctattacgatgaagacggcgcggatgtgagtgagcgtttccgtctgcaaacacctgcccagcgtaccgccttcgagcagctttttatccgcccgcatacgcgcacaccgggcatcccgctgcgctggatcaccgccgccgatatcctcgcccagcaagccttattgcgacacccggattttgtcgtcgcccgcatgaaaggccagtactggcaggtgcgtgaaaaagtgttcgattacgaaggtcgttttcgtctggcgcacgaattacgcggttaatggtagttttgattgatgtataaggcgattgagtatagaatctcgcccgcttttgcatacgcaaagcagatcacttacctgttgctgggtcgcctgtagcaggattaatttaagagagaaagaaatgtttactatcaacgcagaagtacgtaaagagcagggtaagggtgcgagccgccgcctgcgtgccgctaacaagttcccggcaatcatctacggtggcaaagaagcgccgctggctatcgagctggatcacgacaaagtcatgaacatgcaagctaaagctgaattctacagcgaagttctgaccatcgttgttgacggtaaagaaatcaaagttaaagctcaggacgtacagcgtcacccgtacaaaccgaagctgcagcacatcgacttcgttcgcgcttaattgctgaataagttgtaaaaaaccccgctccggcggggttttttgtatctgcagattatgcctgattacggtattgctattttttgcaggccagataaggcgttcacgccgcatctggcattcagaacacaaaaccgattaattgccgccagacgtccggcgctgcaattggtcgcgcaaattcggcggcgtgcctttaatggtcaaggtatcggttgctggatcccagaagatgcgttcacctaacagcatcgcatcaaagttaatagtcaagccaccgccgctaccggcaaacttcgtcaactgacgcagtgtgctacggtctgccgggaagctctcttccagttcgtagcctttttcagccgcaaactccgtgaagctcacttcgcttacgcctgccagctctttcgacagcgatttcagttcgatctcttcgcctgcctgcagctgctcattacagtagctataaacctgctggcgcacgttctgtcgctctgctttatccagttgtgcttcggcagtgaaatcatcaaccgcttgcaacagcccacggttttgcgctttcgcgtttaacccttcgctggccccgaggaaatccataaagaaatccgccactttgcgccctactcgccctttcaggaaagtgagatagcgggtggactctggattggtttcccattcggttaaatcgatacgcgcaacaatatccgcatgattgatatcaagataatgggttgggttgatgtcgagattttcgttaacgcgcatactgctcaggttgctcagaactgccaccagcaaatactccaccgccagatagcgatagtggcaaaacagcacgaatccaccgtcagcaaaaggatatttcgctaattcgtcacgcaggcggccggttgccgcgcggctaaatgccaggaagtcctcttcgccctgacgctgtaagcgcagcgtctgcgccagttcactctcttcgctaaacaagccgtaagctttatttttggcgctatagacccgatgcagttctgccaccatctcaacgacggtttctgtcggttccagcaatgaatcgcgcaacaccagctcaaggttctgctcatcacgcttgataagctggtgcagagcaatctggttgatatccagactcatgataaactctcctttaagaccgggcggtattcaaccaccgccggttaagcgacgcaataaaagatggcggtcattttacagaaggcagcgtaacgagaatgatttaacgcataaaaaagcagaaaaaaaaccgttgctacggtaatatgttgccctttcatcaactaactgatttcgatttatgccacaaatttcccgctacagtgatgaacaggttgaacaattgctcgcagagctgctcaacgtactggaaaaacataaggctccgaccgacctttccctgatggtgttaggcaacatggtcactaaccttatcaacaccagcattgccccggcccaacgccaggcaattgccaactcttttgcccgcgccttacagtcctctatcaacgaagacaaagcgcactaagggaaacagataacaggttatggtaactcatcgtcagcgctaccgtgaaaaagtctcccagatggtcagttgggggcactggtttgcactgttcaatattctgctttcgctcgtcattggcagccgttacctgtttatcgccgactggccgacaacgcttgctggtcgcatttattcctacgtaagcattatcggccatttcagcttcctggtgttcgccacctacttgctgatcctcttcccgctgacctttatcgtcggctcccagaggctgatgaggtttttgtccgtcattctggcaacggcgggaatgacgctattactgatcgatagcgaagtctttactcgtttccatctccatcttaatcccatcgtctggcaactggttatcaacccagacgaaaatgagatggcgcgcgactggcagctgatgttcatcagcgtgccggttattttattgcttgaactggtgtttgcgacgtggagctggcaaaagctgcgcagcctgacgcgtcgtcgacgcttcgcgcgcccgctggccgcattcttatttatcgcctttatcgcctcgcatgtggtgtatatctgggccgatgccaacttctatcgcccgatcaccatgcagcgcgctaacctgccgctttcgtacccgatgacggcgcgacgttttcttgagaagcatggtctgcttgatgcgcaggagtatcaacgccgtcttattgagcaaggtaatccagacgccgtttccgttcagtatccgttaagcgaactgcgctatcgcgatatgggcaccgggcagaatgtgctgttgattactgtcgatggcctgaactactcacgcttcgagaagcagatgcctgcgctggcaggttttgctgagcaaaatatttcgttcacgcgccatatgagctccggcaacactacagacaacggcatctttggcctgttctatggcatctcgccgagctatatggacggcattctgtcgacccgtacgcctgcggcattaattactgcgcttaatcagcaaggctatcagctggggttattctcatcagatggctttaccagcccgctgtatcgccaggcattgttgtcagatttctcgatgccgagcgtacgcacccaatccgacgagcagaccgccacgcagtggatcaactggctgggacgctacgcacaagaagataaccgctggttctcgtgggtttctttcaatggtactaacattgacgacagcaatcagcaggcatttgcacggaaatatagccgggcggcaggcaatgtcgatgaccagatcaaccgcgtgctcaatgcactgcgtgattctggcaaactggacaatacggtggtgattatcactgccggtcggggtattccactgagcgaagaggaagaaacctttgactggtcccacggtcatctgcaggtgccattagtgattcactggccaggcacgccggcgcagcgtattaatgctctgactgatcataccgatctgatgacgacgctgatgcaacgcctgctacatgtcagcacacctgccagcgaatattcgcaaggtcaggatttgttcaaccctcaacgccgtcattactgggttaccgcagcggataacgatacgctggcaattaccaccccgaaaaagacgctggtactgaacaataacggtaaataccgcacttacaacttacgtggtgaaagagtgaaagatgaaaaaccacagttaagtttgttattgcaagtgctgacagacgagaagcgttttatcgctaactgattaattataaatcagttagcgaaatatcttacttgcaatcggtgtggaaaacggtagtattagcagccacgagtcggcacgtagcgcagcctggtagcgcaccgtcatggggtgtcgggggtcggaggttcaaatcctctcgtgccgaccaaaaatcccaagaaaaaaccaacccttacggttggtttttttatatctgcaattaattcgataaacagaccgtgacacatcacagcctgtttattttctgttatcagaacgtccagaccacacccgcctgagtattccacggcgattctacccctgcgccattgccatagctgactgacaaatgaccgcttaacgtcggggtaaacgatgaccttataccagcctgataaacgccactggttccagccacatcattattaaatttgccatcgtcattaactttcacctggttagaatcggcgtattcctgacgcacggccgctttcagccagggttccagcgtcgtaccgttttgcaggtccatgtgatagcttaccgccgttcccgcttcagcgcgtaatatccgggtatttcccacatccgcgcgcatgccgtttgataacgtgtagtcctgaccatctgtggtaaagccggtaaaggccagatagggtctaacactccacaatccgtcaacccaacggaacccgctctcaacatgagcacccgcgccgttactattgtaatcgccaaacgctgttgccccattactcatcttgccatggatggtgttggcaaaacggtcaactttcaccaccccatcaacataggcaccgttctgatgctcccaaccggcataagcccccagggtatagctatcgatattacctttgccgccgcgatcaaaaccaatatcagaatgagagtaaccaaagatcaagccgcgaattgtactgctttcttcacgggagaaacggctatcgataccgagcgtcaggcccgtcaatgtttgctcaaaaccagctcccgcatcagtggtcacgttgttgcgggtgttaattgccgaactccacatcgccgtatcgtaactaacgccttttacgctaccaagacgctcacgcacggtgtccagttctgcatcaaataccagcggttgtgcggccgccatattcagcacatcagtggttgaaggggtaatttgcgcgcgattctctgccagactccagctatggttgccattatccagcaaggtatattcatacgtaccgatatcaacaacgcctccggcattgcccaacgtaaatgcagcatcaccgccgcccgttgttaccagtgtaaggctatctcctgctgccgggctggcaccggtgtccgtcacgaatattttgaaatcacctgttgcctgaccggtgacgttgagctgatcgctctgatgattagccatatcggtacgcatataaaaattgccgtttcccgacagggtattggtggtcaacgtaatgaaattttccgcacttgccgtcactgatgaacgagtcactggctcatccatcataatcacatttgcgtcagacatcgcaaggttggctaagttgaggagggtgttttggttcgtcgtagtgatatcggcaatgatggtccatacgctattttcgagcgaaacgtccgctttgctggtatccacggcaccatgcgttctaaaagaagcgccctcagaaaccactaccttacccaccaacattgcgggtgcataatttatttgcggcttcatgacctcaagaatgccatcattccctctgactgaaacgttaaccattgtgccagcccagacgttagcgcggccattgttgataaccatattttcagagatggcttttgaggaatacgtgatacttccattctgatatgatcgaccgagatcatataccgcatttgcctgcactttcgtaccagtatcctttcccagcgattgcatagtggcatgcttatcaaggatagtatcaatggcctgcgtgtcctccataacaatgagcccggaaccatcatccagttcataattttttgacacaccatcttttatactaaattggcctttactgtttggaccactcacttccagcgcattcgttgagacaattaattttccgcctgcttttttatcaacgccagttacagtcccgccatccataacctccagtaagccgccactatctacagtggtattataagcgaagtcattttcttcaactcgcaaacttccgccgttttccaacaacatattattagcaataccattcttgatatcgaactgaccgagacggtttgttccgaatacctccatggcccgcgtggttgttttaatagcaccgcctgctttctgatctaccgcaaatgcaaatcccccctctttaacctccagtagtcctcccttttcgatagcgacaaagacggcccccccatctttttcaacgattaagcgcccgcctttaatcgtggtatcattcgctgcgccataaacctgtagcacaccattattgagcgtagtctggtttgccgcgccacccatttgaacaatttgataaccgtcatttaatactgagtattctgcggcgccattcatttcaatgtactgataccctccgttaatttcagtattattacttacaccaaattcttttatatgctgttctccgccaggattgattttcgtattattggcggtcccataaaccagctggatatctttttccaggacaacaccatcaactgtctcaccatactcaacagttgatgccaatgctatgggtgaatataaggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaagctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccataacgctgtagccaccagaacagatattgcggaacgacaaagagaaacagaaccagattgatgcattgagctttcatcctatgaaattaattgctgttaaaagcattgggtacagaaaatacccatagctccatacccggagtcagtttttaaaaactgtttaaagaaatgcacaagtattgtgattgattttttagttgtttttcttgatgagaagctgatgcaaaattccgtctttataatgaaaatgatgccaaagcgaacgacaaggttgtagttttcactacatgtccatacataaaatggggtaacattcacgcgcctggtagcgttaccaacgctacgctcaaacataatgattctaataaaacctcaggagactactatgcctgaagcaacaccttttcaggtgatgattgtggatgatcatccacttatgcgacgcggtgttcgtcagttactggagcttgatcctggctctgaagtggtcgccgaagcgggcgacggcgcgagcgctatcgatctggcgaatagactggatatcgacgtgatcttgctggatctcaatatgaaaggtatgagtggcctggatactctcaatgccttgcgcagggatggcgttaccgcgcaaattattatcctgaccgtatccgatgcctccagcgatgtctttgcgctgatagacgcaggcgcagacggttatctgttgaaagacagcgacccggaagtattgctggaagcgattcgtgccggagcgaaaggcagcaaagtctttagcgaacgcgtcaatcagtacttacgtgaacgtgaaatgtttggcgcggaagaagatcccttcagcgtgctgacggagcgcgagctggatgttctgcacgagctggcacaggggctgtcaaataaacagattgcctcggtgttgaatatttccgagcagacagtaaaagtacatattcgcaatctgctgcgtaaactcaatgtccgctcacgcgtggcggccaccattctgttcctgcaacaacgcggggcacaataaaaatagcccgatggatttatcatcgggctgagatttatgacaaacgcaaaactgcctgatgcgctacgcttatcaggcctacgtggatcgatcaatttattgaatttacacaattttgtaggccggataaggcgttcacgccgcatccggcataaactaagcgcactttgtcaacagtctagcccgatggcatcaccatcgggcctctttttatttactctcctgcggcgacaaatgttgcatcgcctgcgcgatactacgttcaatcaccgcacggcgagtatcgttggcaggtaagagtttcaacatcatctcccacgcggcaacggcttcgccaaatcgctgctgctcaaaggcattaaacgcatacatgcttagcacacggatattgctatggtccgttctcaccagctgacgtagcagttcaccgccgaggcggttgtcgttgggatcagatgaacgagtcaacgcttcagcgtatcccagtgcagcatcactgtttttcggatcgaggcgatacgcagtggcgtatgcatcggtggcgatactggcgttacccagcgccatgccaacgcggcccaacataatccagccttctatatctcccggatttttttgcagttgagtacgcatccccagcgcaagacgcgacatctcttcttcgttgagcggatcggctttcggatccagcgccctgtccagcaacgccggagcctgtgccgtggcctgctgccagattttcacctgctgataattgccagtctggtagtagctgacgccagccacaattaacgccaccacaatacccggcagataaacaacatatccggcacgcttaccttccggcacgctttgttcaggaaacgcttccggcaccacgcgtacccgacgccgcgagcgggcgtatatgacccaaccgccaatgccaatagccactactggcagcacccacagcagcacggtcagcggcgttaacggcggatcgtaagtgacgaagttgccgtaacgcgccaccatataatcgacaatctcttttttacttttaccttcctgcatcagttcatacactttctgacgcaggtcggtggcaatcatcgagttggaatcggcaatgctgttgttctggcatttcgggcagcgcagttcttcagtgagctgacggaactgttgttcctgtgcttcatctttaaactgcaacacatcgatggtcgccagcgctgagccggagatcatcagcatcagcacgcccaataaaaacctcattgtgcggcctccttactgtatttctcccacagcggcttgatctcttcttcccagacgcgaggattcagatcgcccgcatggcgatagcgaatgatgccgttgccgtcaataagaaacgtttctggcgcgccatagacaccgagatccagccctaacatgccatcgccatcaaacaggcttagcgcgtaaggattgcccagctctttcagccagctgattgccttctggcgatcgtctttatagttcatgccgaccacgcggatgccctgcgcagaaagctgattcagatattgatgttccgcacggcaggtcggacaccaggtcgcccagacgttaagcagtactggtttgccctgagtcagcacatccgcctgataaaactgccccggattgtccagtgattcgagacgaaacttcggcacaggcttgccaatgagcgccgattccagattggtcggatcatccccttcggcattacgcgccagctgccacagcagcgccgcggcaatcgccaggaagataatcaacggaattaacaatactttgcgcttcatacggcctccggcgcagttttttgcggactcacgcgcttacgatagcgaggatcaaacagacacagcagtccgcccaacgccatcatcagcccgcccgcccaaatccagcgaacaaatggtttgtagtaaagacgcacggcccacgcgccgttttccagctcttcaccgagggccgcgtacaggtcacgcgtgatgccgccgtcaattgccgcttcggtcatcatcgacccggcagtgttgtaataacgtttttccgcatacagcaccgtttccggcttgccatcgcgcgttacgccgatagtcgccacaccgccacgccagttcgggccagtcacctctttgacatcacggaaggtgaagcgatattcatgaatatcgacgctatcgccggacttcatgcgcacatcacgctcaacgctatagttctggctaaaggcaatgccaacaattgtcactgccagcccaaggtgagccgccaccatcccccaataactgaaggtggttttcgtgccgcgtgaaatacgtagcgcagcttccgcaattgccagcaccgcaatccagcaggccattgccaggccgagcaccgtcatcgccacaactttgctttcgaacagccacggcaacagcagcgacagcaccagcgtagagatgaaggcgataatcaataaattgcggatcttacgcgggcgatcccgcccccagcgcaccagaggaccgacaccaagcagtagcgcaaacggcaccatcagccaggtaaacatggtgttgaagaacggttcgccaatcgaaatactgcccagtcccagttgcttatgcaccaacggcagcagcgtccccagcaacaccaccagcatcgcagcgaccagcaaaacattgttcgctaacagcaaagattcccgcgaccacagcgcattgtttacgcgtgagcgaactttgtgtccacgcgcggcaaacagcagcagcgaaccgccaatcaccagcaccataaaggcgaggataaacataccgcgcgccggatcagacgcaaacgcgtgtaccgataccagcacgccggaacgcacgaggaaagtccccaacagacacaacgagaaggcactgattgccagcagtaatgtccacgctttgaagctggcgcgttgttcagtgaccgccagtgagtgcatcagcgcagtccccaccagccacggcataaacgaggcgttttctaccggatcccagaaccaccagccaccccagccgagttcgtaataggcccatgcggaaccgagcacgatgccgagcgtcaggaagatccacgctgccagcgtccacggacgagtaaaacgcgcataagtgctgtccagacgcccgctcagcaaagaagcaatggcaaaagcaaacgccaccgagaaacccacgtaccccatataaagcagaggcggatggaagatcagccccggatcctgcaatagcgggttaagatcgcgaccttcaatcgggaagttcggcaacgtgcgagagaacgggttagaggtaaagagaatgaacagcaaaaagccgacactgaccatccccattatcgccagtacacgggccacaatatccagcggaatacgctgactaaaaatcgccaccgcaaaggtccagccgctcatcagcagcacccacagcagtagcgagccttcatgcgcgccccaggtagccgccacgcgataccacaccggaagctgggtattggagttgctggcaacataggtgacggtgaagtcgttgaccacgaaagcattgaccagcaccagaaatgcgccagccacagacataaacagcagccaggcaaacaagcgggaagacgccatcatgcgcgcatctccgcgcgccacgccccatagcggatacacggacagcagcagcgcaattcccagcgccaggcacagcagtccgttaccaatttctggcatcatgatgctgggtccttataaacactcgccgggcgacggtggttagcttccatcgctttctcaacttctggcggcgtatagttttcatcgtgtttcgccagcacttctttcgcgaggatatgattgcctttttccagttcgccctgcaccacaacgccctgcccttcacggaacagatccggcaaaatgccttcgtaagagacatccactgagccttcagcatcgtaaatggtgaaggtcactttcagcgaattgggatcgcgctgcacactacccggcatcaccatcccgccaacgcgcagacgctgaccgacttccggcatttgctgagtttcacgcttgccgtagagaatttcccccggcgtataaaagagatcgatattcgagcgcagcgcatatagcaccagaccgatagtcagcgccagccctgccaacacggcacaggcaatccacaagcggtttttacggcgaatattcatgcagcctcctgctgttgcgcagcacgtaaacgcgcctcacgcgcccgctgttgcgccacgccacgcagaattgcgcgatgttgcatcaccgagtgcacgaccaaaaccaccagcggaataacggtcatcaccaccgccagccagacaaaaaaggcgtaaccgcccattgcgaaaaattcattccaggaagcaaatgcaggggtcatttacggcctcttttcagtatcagttcactcacccacggacggcgtttttccatcagcaaaatcaaattacgcatccgcatcagcgtcagcgtggcagacaggagcaggaagccaaaaatcgaccagcgcagcggcgaacgcatcgccggatcgatactttgctgcatccgcgttgatccctgatgcagggtgttccaccactccacggagtaatgaataatcggcagattcaccacgccaatcagcaccaggatacctgccgcacggcccgccagacggcggtcgtcgaaggcgtgccacagggcaatcacacccacatacaaaaacagcagcaccagttcagaagtcagacgtgcatcccatacccaccaggtgccccacatcggttttccccatgcagagccggtaaccagggcaataaaggtaaacacggcaccaatgggggccatcgccgccaccgccaggttggccattttcatctgccagacaaggccaataaacgctgccactgccattgatgcataaatgcccatcgaccagatcgccgcaggcacatgcaggtagataatgcggtagctatttccctgctgataatcagccggagcaaagccgaatccccagatccagccgacggtaagcacgaccacactggcaattgccagccacggtataaaccagccacagatttgatacagccgtggtgggatcgccagttgatgcagtgttttccacatagtttcgataccagactcgaacaaaaatcagtaatccagcgttattgaatgctgattcgtaacgctgccgccgtcgcaaaaggacttaatgtcgcggtgcctgccagcaacgcgcctaaaattgccagatacccgtcaacgggcaaatgcatagaagccgcgtccatcgcggcggtggcaaagatgagtaatgggatagtcagcggtaacaccagtatgctgagcagcacaccaccgcgcttaagtcccactgtcagcgccacgcccggtgcaccgagaaagccaagcgtaggcgttcccagcagcagcgtcagcgccatcacttgccagccataaacatccattcccagtagcattgctaccagtggcgaaaggatgagtaacggcagaccggttaccatccagtgcgccatcaccttcgccagcacaacggcgggcaagggtaacggcaacaacatcaattgttcaagactgccgtcctgcaaatcgtcacggaacagtcgttccagcgccagcaaggatgaaagcagcgcagcaacccagataatgcccggtgcaatacgcgccagcagttgcggctccggaccgatactgagcggaaaaagggtaattacaatcaggaagaaccacagcgggttggcgatttcggcgctatggcgaaacgctacacgcagctcaagacggaaaatgcgccagaacatcatgcggccctcgtttgcgtcagtgaaatgcggcgaattttactttcagcaacgttgagcggctggtgggtagtcagaatcacaatccccccctgctccgtatgctgcgccatacgctgggtcagacgatcgacaccgttaacgtcaatcgcggtaaaaggctcgtcgaggatccataacgtggcacgggtcagccacagacgcgctaaagcgacgcggcgttgttgcccggccgagagctgatttacaggaatatcttcgaatccggcaagcccggcctgcgccagggcttccagacattgtgcggtatcgccatcgcgatgataaaagtgcagattttctaacgccgtcagccgggttttgatccccggctgatggcctatccataacaggttttgatggtagctgtcgcgtacctgatgcaagggctgcccttgccagagaacctcgcctgcgtcagggcgagacaaccccgtcagcaaacggagaagcgttgtcttccccgcgccgttgctaccggtgatttgtacccactctcctgcgttcagcgtaaatgacaagccactaaataaggttcgttcatcccgctcacaaagtaactctctggcttcaagcatacccacgcaataaccctgttaaaaacctggctcgacttcacgcatatcgggcagcttgtgcgctatccctttatggcaatcaatacaggtttgcccatctttcaccgcctggtcatgcatcttcgcggcaaccgatttctgggcggttgtatccatatactcgaagttgtgacagttacggcactcctgcgagttattgtccttcatgcgccgccactcattctgtgccatcgtcagacgatgagcttcaaatttctgcggcgtgtcaataacgccaaaaattttaccatacagctctttacttgctttgagcttgcgtatcatcttcggcacaaactcgtgcggaacgtgacaatccggacaggtcgcacggacgccgctacggttgttgtagtgcacggaatccatgtattcctgatacaccgtgttgcgcatttcgtggcagctaatgcagaactcttcggtattggctttttccatcccggtgttaaagccaccccagaagacgatgccgccaacaaaaccgatcaacagcagcgtccccagcgccagacggctgggggtacgccaccatttccacaggcgcttaatcagaccaggcttacggtcagaatttcccataataacctcttatttcccgtaaccttttgatggggtaaaggtattccccacgattggcgcggtatcggcctgcggtacgtgacattgcagacagaaataacgacgcggagccacttccgcgcccactttgccgtcgctgtccataaagtgagtaggactgatacgcggcgcgccagtggtgcgatagctttcgacaccgtggcactgcaagcagcgattggtattggtcgttacctgataaccttcaacgctatgcgggatcattggcggctgattcacatagttcagcggcatccgatcctgctcttttggcatccgaatggccccttcctgtgtcccggatacttccggcgactggctaaaatcgacgccattagccgcccaaaccgcgccgcttaccaccagggccagcatcgccgtccattgacacagcgctttcttcaggtcatggcttttcatgatttcgctcccgaactccatcgtgtagttattgtaaatacatcctcagaacagacatccacgcagcgaccgcacgtcatgcaatcgcggctggtgacctgcaccgggctttgttcatccagcaccggggcacgtagcacatgcggttccgggcaaacatgaaaacaatccatacagcggttacatttctgccgatcggtggccgcaacggtaatcacacctttgctacccagcacgccatacagcgcgccaaccggacaaatgtgcccgcaccagccgtgttcaacgaccagtagatcaaataaaaacagcgcgagaataagcagcgcgccgctgccgaagcccattaccaggctacgccccatcagagaaacggggttgatccattcccaaatgagcgtgccagttaaggctgatcccaccagaatgaccaccaacagcacgtagcgaatgtggcgagggatcgtcgcagactgattgaggtcaaagcgcctgcgtaaccagttcgctaagtcggtaatcgggttcagcgggcagacccagctgcaaaataatcgctttcccgccagggcgtagagcacggtgataatcaccgcaccggtcaacgccaccgtggcaggcagatgaccactggcaagactttgcagcgtcatcagcggatcggtcagcggaacggtgtcgaataacaggctactgctgtagttgccgtgcaagatccacacaccaaaccatggaccgctcaaaaacatccccagcacgaagaactgacaaaggcgacgtaacaccagccaacggtgactgcgccaccagccttttttctccagcgcctcgcgcccggcgtcacgtttacgatttgccattgttcccctccagccagccgaagcggtaatggtgacctaactcccctttcgccagtgacagcggtaacaccttgattgccggttgttccagcacgcatactttttcgcacttaccgcaaccggtacaggcgtcgctgtgaaccgtcggcagaaagcgggcgtgcttaccggtacgcgtgttgcgctccagctccagggtgatggcctcatcaattttcgggcattcgcgataacaaacatcgcagcgcagcccctgaaagttgagacagttttcctggtccaccagtaccgccagccccatccgcgcgtcgtcgatcgattcaatctcacgatccagcgcaccgcttgggcacactttggcgcacggaatgtcctcacacatttcgcaaggaatatcccgtgcgacaaaatatggcgtgcccgccgacagaccagaggccagcgtcgccagttttaaggtgtcgtaagggcaagcctgaacacactgaccgcaacgcacacaggcactggcaaaggcgttctcgtttatggctccgggcgggcgcaaccgcacgccagatgcgcgtgcggtttgctgttgtaaccccagcgccacacccacggcagccagcccgcctgctgtgcgaacgacatcgcgcagaaagcggcggcgaccattttgaggtttcgctgaccgggacataatggcttacaccttctccagtttgaccgcgcacttcttgaagtccgtctctttcgagagcggatcggtcgcatccagcgtcagtttgttaaccaactgtgcggcgtcgaagaacggcatgtacaccaggccctgtggcggacggttacgaccgcgcgtttcaacaatcgagatcacttcgccacggcgagaaaccactttcactttgtcgccacggcgcagatcgcgcgctttcgcatccagcgggtgaataaacaggaccgcttccgggaaggcgcggtgcagttctggtacacggcgagtcatactgccggtgtgccagtgctccagaacgcgtccggtagagagccacaggtcgtactcttcatccggtgcttccgccgccggttcgaatggcagtgcgaagatcaccgctttgccatccggtttaccgtagaacttatagccttcgcccgctttcacgtacgggtcgttaccttcgctgtaacgccactgcgtttctttaccgttcaccaccggccagcgcagaccgcgcgctttgtggtagtcatcgaacggtgccagatcgtgaccgtgaccgcgaccaaaccatgcgtactcttcgaacagccctttttgcagatagaagcccagctcgcgggattcatcgttcagctgatcttccgccagttcggataccgggaatttgctcacttccggtgtggcatacagcacttcgtacagcgttttgccacgcagttccggtttcttcgccagcagatcttccggccatacttcttcagttttgaagcggcgggagaactggactaactgccagagatccgatttcgcttcgcccggtgcctgtacctgttgacgccagaactgagtacggcgttcggcgttaccgtaagcgccctctttctctacccacattgcggtcggcaggatcaagtcggcggccagcgcactgactgtcggatacggatcggagacgatgatgaagttgcgcggatcgcgccagcccggcatacgctcttcattgatgttcggcccggcctgcatgttgttggtacacatggtccagtaaacattcagtttgccgtctttcagcgcacggtcttgtgccaccgcgtgcagaccgattttcgccggaatggtgccgctcgggatattccacttcttctcgcagatatcacggtgtttctcgttggtcaccaccatgtccgcaggcagacggtgagcaaaggtgcccacttcacgcgcagtaccacacgcagaaggttgcccggtcagggagaacggaccgcaacccggctgggaaattttgccggtcagcaggtgcaggttgtagaccaggttgttagcccacacgccacgagtatgctggttgaagcccatcgtccagtaggagatgactttcttgttcggatcggcatacagctgcgccagttgttctaactggtctttcggcacgccggtcatttcggcagttttttccagcgtatactcggcaacgaaggctttgtaatcttcaaagctcatcggttcggaggcgtcagaacccggattcttcgctgctttttccagcggatgggtcggacgtaaaccgtagccgatgtccgtcgcccctttgcgcaggttaacgtgcttgctgaagaagtcctgatttatcgcattgttttgaatgatatagttggcgatgtagttcaggatcaccaggtcagattgcggcgtaaagatgatgccgttatccgccagctcgaagctacgatgctggtaggtagaaagcaccgccacggtgacgttctggttagagagacgacggttagtgatgcgcgaccagaggatcgggtgcatttccgccatgtttgcgccccacagcacaaacgcgtcagcctgctcgatgtcgtcatagcagcccatcggctcatccataccaaaggtacgcataaagccaactactgccgacgccatacagtgacgcgcgttcgggtcgatgttgttcgaacggaagcccgctttaaacagcttggacgcggcataaccttcccagatagtccactgaccagaaccgaacataccgatcgattccggccctttttctttcagggcggttttgaatttctcttccatcacatcgaaggcctgatcccaggtgattggggtaaattcgccttctttgtcatatttaccgtttttcatacgcagcagcggctgcgtcaaacggtctttaccgtacatgattttgggcaggaaatagcccttaatgcagttcaggccacggttaaccggtgcgtccgggtcgccctgacaggccaccacacgtccctgctgcgttccgaccagaacgccgcaaccagtaccgcagaaacggcacggcgctttatcccatttgatggcttcctgctgaccaacaacggcgcgggcaacgcccggcacgctgagaccggcagccgccgcagcggccgcaacggcgttagctttcataaagctacgacgactgagtttcatggtgtttcctcaccttgctcttcctgctggtgataaaccagcgacaccgccagcacgccctctacgttgcgtactgactcaatggtttggatcagcgtttcgctgtcttctgcttccaccaccacaatcaactgaccgctcggcgcgtcgctgacagcaacttcacagccgggaaaggcgttcagttgggtgctgatgtctgaaattcgttcgcttttggcctgcacgaccaggctgcaaacttgccagttagtgtgcatggagatactccgcagttatggctgataccggacagctggctgcacatgctccacatccgttgcaaagttggctattaagttgcggctggtagatcccggagagcgtcgggcgaaagataattgccattggctcacagctatcctgacagcggcggcattcaactgactgatacgccaggcacgcgtccccgatggtgaactgcaaatcccaggccctggtgtggcgcggagaaaatagcgattcggggcaagcctgcgcgcaggcgtaacagaagctgcactcgttatttttgaaattaacgctcggatagccgcccgcgccgcgttgcagaatgttgttttcacaagcattaatacaggcgtcgcagcgggtgcaatgggtcagaaaatgagattcatcaccggaccagggcggacggataccgttactggctttgcgccagcgaccagtgagtatgccccgacgggatgcatcaatcttcacattgaccttccatcattaacgcgctctgaaaattgagagcgaccaaataaaccgcataattaataagccatttttatagccgctaagatattaaaggatgtgtcaaagatgcataccccgatcggggtaaaacctgtagcaggatcaaaagagtggcgggaagcgtggcaaaaacgggcttttgctcacatttcaaatggttataaatatatttatatagcgattgattcaccagagatatttctgctggtttgctctctcattagaatttaacactaaaagagcaggtaaaattgtctgaatgttctttaagttattcataaagcaaattaataaatctgatgaatatgttaaccttcagcgacatcatcggtgaaaacctataaatgaagaaggaaagcaaaaaaatgaagaccattctacctgcagtattgtttgccgctttcgctaccacttccgcctgggcggcagaaagcgtccagccactggaaaaaatcgcgccttatccacaagctgaaaaagggatgaagcgtcaggtgattcagttaaccccgcaagaagatgaatctaccctgaaagtagaactgttaatcggtcagacgctggaagtcgattgcaatttgcatcgtctcggcgggaagctggaaaacaaaacgctggaaggctggggctatgattattatgtctttgataaagtcagttccccggtttcaacgatgatggcctgcccggatggcaagaaagagaagaaatttgtcaccgcgtatctgggcgatgctggaatgctgcgttacaacagcaagctgccgatcgtggtgtatacgccagacaatgtagatgtgaagtaccgcgtctggaaggcggaagagaaaattgacaacgcggtagttcgctaaactgccgtgaagtgcggcaccccgtaggtcagacaaggcggtcacgccgcatccgacatccaacgcccgagccggttgcctgatgcgacgctggcgcgtcttatcaggcctacaccgctgtgaagtgcggcaccccgtaggtcagacaaggcggtcacgccgcatccgacatccaacgcccgagccggttgcctgatgcgacgctggcgcgtcttatcaggcctacaccgctgtgaagtgctccaccccgtaggtcggataaggcggttacgccgcatccgacatctaacgcccaagccggttgcctgatgcgacgctggcgcgtcttatcaggcctacaccgctgtgaagtgctccaccccgtaggttggataaggcggttacgccgcatccaacatctaacgcccgagccggttgcctgatgcgacgctggcgcgtcttatcagcatacgccacatccggcataccatgccggatgtggcgtatcattacaacgcaatatccgccacttctttttgaacgggttgcggtttcaactgcggtttcggcgtactatctgctgcctgcggcttgtcgtagttcaaccccagcacttcgctggtgtactgcaactcgcgttctgttgccgctacatcaccgttcagcttgcgtccataagacggaacgatcgctttcaacgtagcctgccattgcgggctggaaacacgatcgccaaatactttttccagcagattcaacataatcggcgcggcggttgacgcccctggcgatgcccccaggagcgcggcaatggttccttgctggtcactgacgacttcagtacccagacgcagtacgccacctttctcggcatcacgcttgataatctgcacgcgctgccccgcttgccacaaacgccagtcctcttttttcgcctgcggatagtactctttcaacgcttcaaaacgatcctcttcactcaacatcacctgactcaccagatatttcaccagatcgaaattatccagcccgacgtgcatcatcggcatcacgttagaggtggtggtggaactcattagatcccacaatgaaccgtttttgaggaatttggttgagaaggtggcaaatggcccaaacagcactacgcgtttaccgtccagaacgcgggtatcgatatgcggaaccgacatcggtggtgcgccaacggatgctttaccgtaaaccttcgccagatggtgattaaccacgtccgggttttccgaaacaaggaactgtccgcccaccgggaaaccggcgtagtctttcgcttccggaatccccgattcctgtaacagcttcagcgccgcaccgcccgcgccgataaagacaaatttggcacgaatgttctgtgcagtgccatttttcagatcggcaacggtaacggtccaggtgttatcgtcattacgctttagggcgcggacttcgctgctgagttgcagcgagaagttagatttcttctgcaaggaagcaattaactggcgggtgatctcgccgtagttcacatcggtaccaatttccgtacgcgtggctgccactttctgttgcggatcgcgcccttccatcactaacggtgcccactctttgatctgcgcgtgatcttcagagtaacgcataccgcgaaacagcgagctttgttgcaacgcggcgtaacgggcgcgcaggaaattgacgttatcctcgccccagacaaagctcatatgcggaacggtattgataaatgaacgcggagtacgcagcacgccgcgctcaacctggtgcgcccagaactggcgggaaatctgaaatgcttcgttaatggcgactgctttttcaatactgatgctgccatcggcgttttgcggggtgtagttcagttccatcagtgcagaatgcccggttccggcgttattccagccgttcgaactctcctgcgcgacaccctccaggcgctccaccatggtcatcgaccattcaggctccagctcgcgtaaataggtccccaacgtggcgctcataatgccgccgccaatcaacagtacatcagtttcctgctcctcggacgctttcgcttttgccgccatcgaaacggcattaagccccacggccatcgagaagagcatggcagtcacttttttcatcttgttaatgccttacttttagtcgctttattgcaggtgagatttgcgcggcatcaacggtaacacttaagtaacaacatttaaataatgtttataaattatattctaattttagaaacattataatttcgttgattaattatagggttattagaaatgaagggatttttagcatattgacctgacggcagcagtccgccaggtcagcgtcgtaatattatgccgtccgggcaacggcatcacgcgaagcggcatcgcgctcttcgcccgtcagctcgctaagttgcccattgcgcatttccagcaggcggtcggcgtggataaagtaatgatcatcatgactgatagcgaaaatagttttacccatctcctgcatcagcggcagcaacacctgataaaactcacgacggaagtgtggatcctgatccgccgcccattcatccagcaggataatatcgcgttcttctgccagcgccagcaacagcgccacgcgttttttctgcccttttgataacttcaggttaacaatacgcccgttgcttaactcaagcttatgagccattttcagctgcgccagccacttctcaaccagttgcgggttagcgggtttaccctccggccccagcagttgatcaaacagccagacatcggtaaacactgccgaaaacagtttgcgataatcttccggttgttcgccgctgacaggtttgccatccagcaagatttcgccgctttgtggctgatacaagcccgtcaacaacatcgccagcgtcgattttccgctaccgttgccgccaatcagaaacagcagctcgccacgtttgatggtgagattaatcggaccaacggaaaacgcgttatcctgataagcaaacgtcacgttacgcagctccagcgtttgccagttgggaaacgcctgcgggcgcggaaactctgctttgaaaggcgcgagcgcgaatttgttcagcttgttaaacgccacctgcgccgtcagcagcgtcggcaatgcgccaaccgccgaaagcagcggcgtacgcaggaataaaagcgtcaacgaataggtcgcggcaacgttggtatcagcccaaccgaggctgttcgccatccagaacaccaggccgattgcgcccagcatcatgatgtttgaccagttcacggcactaagatggaaggtgtctgcgcgaataatatggtggcgatactcttgcgcatcaggaatgtagaggttgttaaacacatactcggcgcgttcccggttcagagtcagctctttgcgcccttcaagtacagtttgaaaatccgtgtacagcttgtcttcggtttcacgcagggtcgccatatgtttgtacacccgcgccaccagcacaaaaccgccccagatggtgatcgccatccagatagccgttaccagcaacattttgcccgacagcatccacagatacgccgctgaaccgatagtgagaatgatcccctgcaccagttccggcagacgcacaaaagcaatggtgatattgcgcacatcgctggttaaccccgccagcaacgaggcgctaccgagttgttcaatgcgctcgacgtgagtatccagaatccgcttgataaattcactacgcagtcggtaaacgaagtgatgccccaaagtggtgagcgccagttgcgatccgagagtgactgccatcaacagcagcaataatcccagaaactccggcaacaccagcagactggtatccgccgtttcgataaggcgctgattgataaaagcaattaagccaatgcctaatgccgcactggcgaggcttagcgccatcacactgataaatggccagcgatactgccgccagacaagtacaagaagttccatgcagaaaacccggacaatgaattacagcccgcagtttaaacatcttcgcgcgcacagcaataataattcttatttttattcttttttacctgcctgacggaatgtcaggttgtagcggcagtcgatggtgagtggatgaaaccccgctttcaacggttgaataccgtgataaaacagccgcgattcaccgccccataccaccacatcgccatgttccaacaacaaacgtttgagcggatcatttcgtttcaggccgccaaattgaaaaatcgcgggtaagcccagagaaacagaaacaattggcgcgcgcagatccggttcgtctttatcctgatgcagcgacagtttcgcgccaggagcgtagcggttgataagacaagcatctggctggaaatctggatagcccgccgccgtagccgcacgttgacataaattatgaaaactctgtggcatggcgggccacggtttatttgtttgcggatcaatgggcgaatagagataaccttgccgatgggtcgtccagcccagatgcccacagttggtcatcgccaccgacatggtatatcccccgggggtgaccatctggcgaaacggcgactggctggcaacgtcattaatatcgcggatcagttgctccgcagcgttaaaagcaaaacgccgtaaaattaccgcaccagccgccagtggctcttgccacggttcagcatcggcaaacagatccaacattacctctcctcattttcagcttcgcggcgcagcagttgcgctttacgcgacacgccccagcggtaaccggaaagtgtgccatcaccacggaccacccgatgacagggtattatgatagccagcttgttggcggcacaggcgctggcaacggcccgtaccgctttcggtttgccgatggcgttagccagttgctgataactgacggtttcaccgcaaggtatcgtgcgcagtgcctgccagacttgttgctgaaaagcagtgccgcgaatgtccagcggtaacgtcagcggcgtatcgcgttgattgaggctggcgatcacttcacgcacatgttgctgaaacatcagatcggcaggcgcgttgtcggcagcgggaaacatctgctgcaactcgctgattagtgtcgcgtcatcatcgcccagcaatatcgcgcaaatcccccgctcgctttctgccaccaggcaacgacccagctcacaatcagccagcgcgtaacgcaccgccagattttcgccaccgtgacggaattgtttagccgtcatgcccagcgtttcgtcagctttgcgatagtaactgctgctgtcggggaatccggcgttaagaatagacgtcgtcacgctctcccctttcgccagcgattcgcgcaaacggcgagcgcgccaggcctgttgccaggctttaggcgtcattccggtagtcgctttaaacaaccgatgtagatgaaatggactcatcgccacctggtcggctaaggcttccagcgttacaggcgtttcctgttccagcagtcgacacgcgtgggtgattttatccaaccgatgttgctgggcattggctttttctggctgacaacgtttgcaggggcgaaagccagcggcgagtgcctcgctggcatttgcgtagaaggagacgttttcccgcaaagcatgtctggcgcggcaagacggacggcaaaagatgcctgtggtacgcacggcgaaaacgaattcgccgtcggcattcgggtcgcgggctaagacagattgccagcgttgatcgtcagttaagcatgtggcttttttcataatcagctccctggttaaggatagcctttaggctgcccggtcaccatcacgcaaaaaccaacaatcttgcgctttaatttttttcgctgacaaggaagcttttaaactgtggtgacatccaggttttaaagctatcgccttctttggtgatcatataaaccgccagcccttcccggcgaacaacctctttagctttctccggcccgagtaccatcaagccagtatcccaggcatcggcttccagcgccgtcggagcaatcaccgtcacggataccagattgtgttcgatgggacgcccggtttgcggatcgataacatgggaaagacgtttgccgtccagttcgtaatagttacggtagctgccagaggtgctaatcccatgaccgttgatatccaccacagcctgaaccgcgttttctttatcggttggtttttgaatcgctacccgccacggcaggccttcaccgttcataccacggctgttcagcgcgccgcccaccgacaccagatagcgggaaatcccttcctgctccatcaagcgtgccaaatgatcggccgcatagccttcgccgacggtggagagatcgacatataaatccggcaggtctttttgcagatattgctgatgcgactgattgatgaccgtcaggtgctgtaagccggttttggctttcatcgcatcgatctgttcctggctcggaatttgaaccggctgttgttccgggccaaagccccacagattcaccagcggcccgacggttatatccatcgcgccatcggtcttcgcgccaatgcgcagcgaggtggtgacgatatcggccatcgcttcacttaccggccacggcgataaactttgcgagtcgttaaagcgcatcagcgcggaatcttttttataggtcgaaagcagctgatcgtcggcgtccagttgggtctgaatcttttctttaagttcggcgctgcgtttggcgtcaatgcccgggatgctggcacgccagaaggtacccatagttttgccttcaagaacggtaacttcagtagcgtgggttttggcgggttgtggtttttgatcgcaaccaacaaagaagagcgcggcagccagcagtgccacgcgggtaaagcttatttccatacgtgattatcctcatgcgaacggtcgcaagagtacaccaaaaaactgagtttgtacgctgaaaacaatgaaaaaagggcccgcaggccctttgttcgatatcaatcgagattagaactggtaaaccagacccagagctacgatgttatcagtgttgatgccagcgtcacgagtgaactggttgtcgtccagcaggttgattttgtagtcaacgtaggtggacatgtttttgttgaagtagtaggtagcaccaacatcaacatatttcaggatatcttcgtcgtcgtagccacgacccaggtttttacctttagactgcaggtaagccagggacggacgcagaccgaagtcgaactggtactgagcaacagcttcgaagttctgtgctttgttcgcccaacccagggaacctacgcgagttgcgttgtaggtctgggtgtactgagcagccaggtagatgttgttagcgtcgtatttcagaccaccagtgtaggtttcagcacggtcgccgttaccgatgtaagcagcggtgttctgagcatcagtacgtttggagctggagatcgcaccaccgataccgaaaccttcgtaatcataagtgatagaaccgccgacgccgtcgccgttttgacgcagtgcgtcacgaccgttgttagttacgccactagtaaagccttcaccagatgggttgccgtttttaccctggtactgaacagcaaagttcaggccgtcaaccagaccgaagaagtcagtgttacggtaggtcgcgaagccgttaccacgctgctgcatgaagttgtcagaaccgtaggtgtcaccaccgaattctggcagtacgtcggtccaggaagttacgtcataaacaacgccgtagttacgaccgtagtcgaaagaacccacatcctggaatttcagacctgcgaatgccacacgggtccaggagttgttttcgttttcagcgctgttgccctggatctgatattcccactggccgtaaccggtcagctggtcagtaacctgagtttcacctttgaagccaagacgcatgtaggtctggtcgccatctacatctttgttgtcagagaaatagtgcaggccgtctactttaccgtacagatctaatttgttgccgtctttgttgtaaacttcagcagcgtttgctgcgcctgctaccagcagagctgggaccaggagggacagtactttaactttcatgttattaaccctctgttatatgcctttatttgcttttttatgccactgcatactgattaaccctcattaatcagtcggcaagtccattctccccaaaaatgcagaataatccaacacgaatatgatactaaaacttttaagatgtttcatttatcgctatagatgtttcaaaatgtaaatgcaagggaactttttaagattattgcggaatggcgaaataagcacctaacatcaagcaataataattcaaggttaaaatcaataacttattcttaagtatttgacagcactgaatgtcaaaacaaaaccttcactcgcaactagaataactcccgctatcatcattaactttatttattaccgtcattcatttctgaatgtctgtttacccctatttcaaccggatgcctcgcattcggttttttttacccttctttacacacttttcattattctgtgctaccacagaaaaactataacgcttgttaactatttcacaaataattaacatccgcataatttccagcaatctttgtttatttgcaattatttttgttgggctttttgtaggttatttgtacagcaaaatggcgcttgtacatctatttcccccaatgcaggatgataaatatcacgggagaatagagaatcatcaatcaggtaagagtctggaatttcacactgtaccctttatactgccctatcacttcgcgaagttttaacaggtcataaacacgaatgcgtcagaaagagacaacggccacgacccgcttttcactcctaccggggagcattacccgcttctttttactgttgatcattgtgttactggtgacgatgggtgtaatggtacaaagcgccgttaacgcctggctgaaagataaaagttaccagattgtcgacattacccatgctatccaaaagcgcgtcgataactggcgttacgtgacctggcagatctacgacaacattgccgcgacgacctccccctcctccggcgaaggtttacaagagacgcgcctgaaacaggatgtctactatctggagaaaccacgccgcaaaacggaagcgttaatctttggctctcacgacaactcaacgcttgagatgactcagcggatgtccacttatctggatacattgtggggcgcagaaaatgtaccgtggtcgatgtattacctgaatggtcaggataacagtctggtgctgatctcaaccctaccccttaaagatctcacctccggatttaaagaatcgaccgtcagcgacattgttgattcacgtcgtgcagagatgttgcaacaggccaacgccctcgatgaacgcgaaagcttttctaacatgcgccgcctggcctggcagaacggtcattactttacattgcgtactacctttaaccagccaggacatctggcaacggtcgtggcttttgatctgccgattaatgatttgatcccaccgggtatgccgctggacagtttccgccttgagccagacgcgacggcaacgggaaacaatgataatgagaaagaagggacggatagcgtcagtatccactttaacagtacgaagattgaaatctcctcggcactcaactctaccgatatgcgcctggtctggcaggttccttatggcaccttattgctggatacgttgcaaaacattctgctgccactgctgctgaacatcggtttgctggcgctggcgttatttggctataccacattccgccatttctccagccgcagtacagaaaacgtccccagcacggcggtcaataacgaattgcgcattttacgggcaatcaatgaagagatagtctcactgctgccgctcggcctgctggttcacgatcaggaatcgaaccgcactgtcataagtaacaaaattgccgatcatttgctgccgcatttgaatctgcaaaacatcaccaccatggcggaacagcatcaggggattattcaggcgacgatcaataacgagctgtatgagatccgcatgttccgcagccaggtcgcgccgcgcacacaaattttcattattcgcgatcaggatcgcgaagtgctggtaaacaagaaactcaagcaggcgcagcgtctgtatgagaaaaaccagcaggggcggatgatctttatgaaaaacattggcgatgcgctgaaagaacccgcacagtccctggcggagagcgcggctaaactcaacgccccggaaagcaaacaactggcgaatcaggcagatgtgctggtgcggctggttgatgaaatacagttagcgaacatgcttgcggatgatagctggaaaagtgagacggtgctgttctccgtgcaggatttaattgatgaagttgtgccttcagtgttgcctgccatcaagcgtaaaggtctgcaactgctgattaacaatcatctgaaagcacacgatatgcgccgcggcgatcgcgatgccttacgacgtattttgctgctactgatgcaatatgccgtgacctcaacgcaattgggaaaaatcacccttgaggttgatcaggatgagtcctccgaagaccgcctgacgttccgcattctggacacgggagaaggcgtaagtattcatgaaatggataatttgcacttcccgtttatcaaccagacccaaaacgatcgctatggcaaggcggacccgctggcattctggctgagcgatcaactggcacgtaaactgggcggtcatttaaacatcaaaacgcgggatgggcttggtacacgctactctgtgcatatcaaaatgctcgcagctgacccggaagttgaagaggaagaagagcgtttactggatgatgtctgcgtaatggtggatgttacttcggcagaaattcggaatattgtcactcgccagttagaaaattggggtgcaacctgtatcacacccgatgaaagattaattagtcaagattatgatatctttttaacggataatccgtctaatcttactgcctctggcttgcttttaagcgatgatgagtctggcgtacgggaaattgggcctggtcaattgtgcgtcaacttcaatatgagcaacgctatgcaggaagcggtcttacaattaattgaagtgcaactggcgcaggaagaggtgacagaatcgcctctgggcggagatgaaaatgcgcaactccatgccagcggctattatgcgctctttgtagacacagtaccggatgatgttaagaggctgtatactgaagcagcaaccagtgactttgctgcgttagcccaaacggctcatcgtcttaaaggcgtatttgccatgctaaatctggtacccggcaagcagttatgtgaaacgctggaacatctgattcgtgagaaggatgttccaggaatagaaaaatacatcagcgacattgacagttatgtcaagagcttgctgtagcaaggtagcctattacatgaacaatatgaacgtaattattgccgatgaccatccgatagtcttgttcggtattcgcaaatcacttgagcaaattgagtgggtgaatgttgtcggcgaatttgaagactctacagcactgatcaacaacctgccgaaactggatgcgcatgtgttgattaccgatctctccatgcctggcgataagtacggcgatggcattaccttaatcaagtacatcaagcgccatttcccaagcctgtcgatcattgttctgactatgaacaacaacccggcgattcttagtgcggtattggatctggatatcgaagggatcgtgctgaaacaaggtgcaccgaccgatctgccgaaagctctcgccgcgctgcagaaagggaagaaatttaccccggaaagcgtttctcgcctgttggaaaaaatcagtgctggtggttacggtgacaagcgtctctcgccaaaagagagtgaagttctgcgcctgtttgcggaaggcttcctggtgaccgagatcgctaaaaagctgaaccgcagtattaaaaccatcagtagccagaagaaatctgcgatgatgaagctgggtgtcgagaacgatatcgccctgctgaattatctctcttcagtgaccttaagtccggcagataaagactaatcacctgtaggccagataagacgcgttagtgtcttatctggcatttgcaccgattgccggatgcggcgtaaacgccttatccggcctacgattcccattatttcaacaaattacattaaagtaggccagataagacgcgtcagcgtcgcatctggcatttgcactgaatgccggatgcggcgtaaacgccttatccgtcctacgaatcccgcgatttcctgaccctctcggcatataacgtcagcgtctgttttatcacatccagcgttaccggcttcgacaggcagctgtccataccggactccagacaccgctgcttctcttcagccaacgcattagcagttactccgattaccggcaacgtcagtcccaactgacgaatgcgttgcgtcaagcggtaaccatccatatttggcatgttgacgtcgctaagcacgatatcaatatgattcttgctaagtacattaagcgcatcgacgccatcattcgcggttttacattgatagcccaacgatcccaactgatctgccagcaaacgccggttaatcggatgatcatccacgaccagaatcatcatatcgtcattatcgctgaccgctttgtccgttgacggcagagcgttagcaggatcgtcgctctccatctcgatcaaataaatacgcgccaacaatgccggtagctcatgcggagcagccacactgtgtacccactcccctggcgctttctccagcggaataccaatatggcgacgacagaaggtcactaccgctctgccctgccattttttactcactacctcgtcagtgatcaacacatcttcgggagtcggttcctgcccttcgtatgttgtaacgacgatgccgctgcgctgcaaactggtttccaggaactgacagagcgacgcattgcggaccgccagccagcagcgtttaccactcaacccttccacgccttttttctgcgggtactgagcgccgtacaacggaatacgcacggtaaactggctgcccattcccggttctgaatctaccgagatatcgccgtccatcatgctgatcagtttttcacaaatcgccagacccagaccggtcccctggaaattacgctgtacgcccgttccgacctggaagaagggatcaaacaagcgcaccacttctttcgccggtatccccacgccggtatcgcgaacacggatagagagataatcgccatccgcgcgaacatgcaaaactatacagccggtatcggtgaattttatggcgttactcaacaggttggagatgacctgctgtaaacgcatcgggtcgccatttaaggccactggcacatccggttcaataaagcagtacaagcctaactgcttgcgtaccaccagcggtaaatagttggcggtgatgtggttcatcacttcacgcggtgaaaactcacgcggttcgatcttcaactgttccgattcaatcttcgagaaatcgagaatatcgctgataattttcaacaacaggctggaagagttgttcattgccgtcaccagccgatcgacgcctttcggtaactctttggtttgcaacagatccaggttaccgataatgccatacagcggcgttcgcagctcatgactgacggtggcaaggaacatcgattttgactggctcgcctgttccgctgcttgtgccatctcctgcaacgactcttccatcttcacgcgcgaagaaacatccaccagcacacaaatggccacgttttcattacgatagcgcgaatggacgaagctgatttgcagattggtattgttgctggtcaggacatcaacaaaattgacctgctgcccacagataatttgcgtcagtcgttggcggtcctcatgcgtaagcatattgagataggtatgcgccagttcgttacttaaaatattgacgccatcagcggtacgcaaaatgcagatacccactggcgcggaggcgacaatcttgcgattgaactgctcatgttcttccagtcgcagggcgtcgctttccgccggaatgaaaatacgtcgctcgtacatccgtgcgagagtaaacaatgcagctccggcaagcacattcagcaaaattgcgttaaggatcaacatgcgaatgcgttccagcaccttatcaaccggcaccgaatacacgatgcttagcgatgagggtggcagatttttcttcagcaccagctcccggaacccttccgtatagccaaaccaggagcgttcctgcatccagcgaggatcgcccttaattttactttctggtccggtaagcgaaatcagggtatgaccattttcatcaagaatggtaacccccatcggcaacgtacccggtaagaaaaagttctccatccggatggtctgctcgacacccaaaagcgcctgcaaccggttcgccagataaactggcgtcaacgcgtaaaaatacccgacgccagggcgcggaccttcgctgatccagtagaggttactgccgctatcatcttgtggtgcatttcgatatttattgatgcgttcatgcaaagctttcaacgcggtatcgcgttccactggcatatcacgcagaccgaaattggccatgcagaggttatcgctgccgattaaaaatacccggtttagatcgtaagccgcagaaaaattatcgcgccagtagcgcataaaccacgccaatgactccagagaacctcgccaggtgttactcattgcggaacaatcggagtcggcaaacagcggttcaaacgcaggcacatccgcctgcgtttctcgtccacgcggggaaagcacaccgttttctgccgataagcgattttcggcgatgtacttcagctctttcatcacatcagaggtgcgttgaataaagcgctgagcctgatcggaactcagattaaattcctgacgaatttccgattctcgctgatgtaacgcattaacgatgtaaaaaacggatgaaaaagcaatcaacagccagagcactaacgccaatgctctgaacatgtagcgcgaggctttcagggttgtacgaaaagaagcaaggtatttcaaaggggcgaagctccgcctcaggtgaccgatggagtgtggttaaggtagcggtaaaagcgtgttaccgcaatgttctctcttctctggaatatgatacaccgccgagaaatcatcaccttaacctctgataatcgtcatataccggacaagactagtggatttcagcatgcattatatgaagtggatttatccacgccgcttacgcaatcaaatgatcctgatggcaatcctgatggtcattgtcccaacgcttactattggttatatcgtagaaacggaaggacgttcagcagtcttatctgaaaaagagaaaaaactttctgccgtggtcaacctgcttaatcaggcactaggcgatcgctatgatctctacatcgacttaccacgtgaggagcgtatccgcgcattaaatgcagaacttgcccccattaccgaaaatatcactcacgccttccctggcatcggtgctggttattacaacaaaatgctggatgcgataatcacctacgcgccttcagcgctatatcagaataatgtcggcgttaccattgccgcagatcaccctggtcgcgaagtgatgcgtacaaatacccctttagtttattcaggcaggcaggtgcgcggcgatattttgaattcaatgctccccattgagcgtaatggtgaaatcctcggctatatctgggccaatgaattaaccgaagatattcgccgccaggcctggaaaatggatgtgaggattatcattgtgctcaccgctggtttgctgataagcctgctgttgattgtccttttctcccgtcgcctgagcgccaatattgatatcatcaccgatggcctctcgactctggcacaaaatattcccactcgattaccacaattgcccggtgaaatggggcaaatcagtcagagtgttaataacctcgcccaggcactgcgtgaaacgcggacacttaacgatctgattattgaaaacgctgccgatggcgtcattgccattgaccgccagggtgatgtaaccaccatgaacccagcagcagaagttatcactggctatcaacgccatgaactggtagggcagccttactccatgttgttcgacaatactcagttctacagtccagtactggatacgctggaacatggcaccgaacatgtggcgctggagatcagttttccaggtcgtgaccgcaccattgaactcagtgtcactaccagtcgtattcataacacgcacggtgaaatgataggtgctttggtgattttctctgatttaactgcccgcaaagaaacccagcgccgcatggcgcaagcagaacgcctcgccacactgggtgagctgatggctggcgtcgcgcatgaagtacgtaatccgttaacggctattcgtggttatgtacagatcttgcgccaacaaaccagtgacccaatacatcaggaatatctgtccgtagtactcaaagaaatcgattcaattaacaaagttattcagcaattgctcgaattttcacgtccacgccacagtcaatggcaacaagtcagcctcaatgcattggttgaagaaactctggtactggtacaaaccgccggcgtacaagcgcgggtcgacttcataagcgaactggataatgaattaagcccgattaacgccgatcgtgaactgctcaaacaggtactactgaatatcctgatcaatgccgtccaggctatcagcgcacgagggaaaattcgcattcaaacctggcaatacagcgactcacaacaggccatttcgatagaggacaacggctgtggcattgatctctcgctgcaaaaaaagatcttcgatccctttttcaccaccaaagcctcaggaaccgggcttggtctggcgttaagtcaacgcatcattaatgcccatcagggtgatattcgcgtcgccagtttgccgggctacggcgcaaccttcacgcttattttaccgatcaacccgcagggaaatcagactgtatgactgctattaatcgcatccttattgtggatgatgaagataatgttcgccgtatgctgagcaccgcttttgcactacaaggattcgaaacacattgtgcgaacaacggacgcacagcattacacctgtttgccgatattcaccctgatgtggtgttgatggatatccgcatgccagagatggacggcatcaaggcactaaaggagatgcgcagccatgagacccggacacccgttattctgatgacggcctatgcggaagtggaaaccgccgtcgaagcgctacgctgcggagccttcgactatgttattaaaccgtttgatctcgatgagttgaatttaatcgttcagcgcgctttacaactccagtcaatgaaaaaagagatccgtcatctgcaccaggcactgagcaccagctggcaatgggggcacattctcaccaacagcccggcgatgatggacatctgcaaagacaccgccaaaattgccctttctcaggccagcgtcttgattagcggtgaaagcggcaccgggaaagagttgattgccagagcgattcactacaattcgcggcgggcaaaggggccgttcattaaagtcaactgcgcggcgctgccggaatcgttgctcgaaagtgaactgtttggtcatgaaaaaggtgcatttactggtgcacaaaccttgcgtcagggattatttgaacgagccaacgaaggtactctgctcctcgacgaaattggcgaaatgccgctggtactacaagccaaattactacgcattctacaggaacgggaatttgaacggattggcggccatcagaccataaaagttgatatccgcatcattgctgccaccaaccgcgacttgcaggcaatggtaaaagaaggcaccttccgtgaagatctcttttatcgccttaacgttattcatttaatactgccgcctctgcgcgatcgccgggaagatatttccctgttagctaatcactttttgcaaaaattcagtagtgagaatcagcgcgatattatcgacatcgatccgatggcaatgtcactgcttaccgcctggtcatggccgggaaatattcgagagctttccaacgttattgaacgcgccgtcgtgatgaattcaggcccgatcattttttctgaggatcttccgccacagattcgtcagccagtctgtaatgctggcgaggtaaaaacagcccctgtcggtgagcgtaatttaaaagaggaaattaaacgcgtcgaaaaacgcatcattatggaagtgctggaacaacaagaaggaaaccgaacccgcactgctttaatgctgggcatcagtcgccgtgcattgatgtataaactccaggaatacggtatcgatccggcggatgtataacaccaaaacttgctatgcagaaatttgcacagtgcgcaattttctgcatagccgctcattctccttataaatccccatccaatttatcccttcatattcaattagttaaataactaaatccaataatctcattctggcactccccttgctattgcctgactgtacccacaacggtgtatgcaagagggataaaaaatgaaaacaaaattgatgacattacaagacgccaccggcttctttcgtgacggcatgaccatcatggtgggcggatttatggggattggcactccatcccgcctggttgaagcattactggaatctggtgttcgcgacctgacattgatagccaatgataccgcgtttgttgataccggcatcggtccgctcatcgtcaatggtcgagtccgcaaagtgattgcttcacatatcggcaccaacccggaaacaggtcggcgcatgatatctggtgagatggacgtcgttctggtgccgcaaggtacgctaatcgagcaaattcgctgtggtggagctggacttggtggttttctcaccccaacgggtgtcggcaccgtcgtagaggaaggcaaacagacactgacactcgacggtaaaacctggctgctcgaacgcccactgcgcgccgacctggcgctaattcgcgctcatcgttgcgacacacttggcaacctgacctatcaacttagcgcccgcaactttaaccccctgatagcccttgcggctgatatcacgctggtagagccagatgaactggtcgaaaccggcgagctgcaacctgaccatattgtcacccctggtgccgttatcgaccacatcatcgtttcacaggagagcaaataatggatgcgaaacaacgtattgcgcgccgtgtggcgcaagagcttcgtgatggtgacatcgttaacttagggatcggtttacccacaatggtcgccaattatttaccggagggtattcatatcactctgcaatcggaaaacggcttcctcggtttaggcccggtcacgacagcgcatccagatctggtgaacgctggcgggcaaccgtgcggtgttttacccggtgcagccatgtttgatagcgccatgtcatttgcgctaatccgtggcggtcatattgatgcctgcgtgctcggcggtttgcaagtagacgaagaagcaaacctcgcgaactgggtagtgcctgggaaaatggtgcccggtatgggtggcgcgatggatctggtgaccgggtcgcgcaaagtgatcatcgccatggaacattgcgccaaagatggttcagcaaaaattttgcgccgctgcaccatgccactcactgcgcaacatgcggtgcatatgctggttactgaactggctgtctttcgttttattgacggcaaaatgtggctcaccgaaattgccgacgggtgtgatttagccaccgtgcgtgccaaaacagaagctcggtttgaagtcgccgccgatctgaatacgcaacggggtgatttatgattggtcgcatatcgcgttttatgacgcgttttgtcagccggtggcttcccgatccactgatctttgccatgttgctgacattgctaacattcgtgatcgcgctttggttaacaccacaaacgccgatcagcatggtgaaaatgtggggtgacggtttctggaacttgctggcgtttggtatgcagatggcgcttatcatcgttaccggtcatgcccttgccagctctgctccggtgaaaagtttgctgcgtactgccgcctccgccgcaaagacgcccgtacagggcgtcatgctggtcactttcttcggttcagtcgcttgtgtcatcaactggggatttggtttggttgtcggcgcaatgtttgcccgtgaagtcgcccggcgagtccccggttctgattatccgttgctcattgcctgcgcctacattggttttctcacctggggtggcggcttctctggatcaatgcctctgttggctgcaacaccgggcaacccggttgagcatatcgccgggctgatcccggtgggcgatactctgttcagtggttttaacattttcatcactgtggcgttgattgtggtgatgccatttatcacccgcatgatgatgccaaaaccgtctgacgtggtgagtatcgatccaaaactactcatggaagaggctgattttcaaaagcagctaccgaaagatgccccaccatccgagcgactggaagaaagccgcattctgacgttgatcatcggcgcactcggtatcgcttaccttgcgatgtacttcagcgaacatggcttcaacatcaccatcaataccgtcaacctgatgtttatgattgcgggtctgctgctacataaaacgccaatggcttatatgcgtgctatcagcgcggcagcacgcagtactgccggtattctggtgcaattccccttctacgctgggatccaactgatgatggagcattccggtctgggcggactcattaccgaattcttcatcaatgttgcgaacaaagacaccttcccggtaatgaccttttttagttctgcactgattaacttcgccgttccgtctggcggcggtcactgggttattcagggacctttcgtgatacccgcagcccaggcgctgggcgctgatctcggtaaatcggtaatggcgatcgcctacggcgagcaatggatgaacatggcacaaccattctgggcgctgccagcactggcaatcgccggactcggtgtccgcgacatcatgggctactgcatcactgccctgctcttctccggtgtcattttcgtcattggtttaacgctgttctgacggcacccctacaaacagaaggaatataaaatgaaaaattgtgtcatcgtcagtgcggtacgtactgctatcggtagttttaacggttcactcgcttccaccagcgccatcgacctgggggcgacagtaattaaagccgccattgaacgtgcaaaaatcgattcacaacacgttgatgaagtgattatgggtaacgtgttacaagccgggctggggcaaaatccggcgcgtcaggcactgttaaaaagcgggctggcagaaacggtgtgcggattcacggtcaataaagtatgtggttcgggtcttaaaagtgtggcgcttgccgcccaggccattcaggcaggtcaggcgcagagcattgtggcggggggtatggaaaatatgagtttagccccctacttactcgatgcaaaagcacgctctggttatcgtcttggagacggacaggtttatgacgtaatcctgcgcgatggcctgatgtgcgccacccatggttatcatatggggattaccgccgaaaacgtggctaaagagtacggaattacccgtgaaatgcaggatgaactggcgctacattcacagcgtaaagcggcagccgcaattgagtccggtgcttttacagccgaaatcgtcccggtaaatgttgtcactcgaaagaaaaccttcgtcttcagtcaagacgaattcccgaaagcgaattcaacggctgaagcgttaggtgcattgcgcccggccttcgataaagcaggaacagtcaccgctgggaacgcgtctggtattaacgacggtgctgccgctctggtgattatggaagaatctgcggcgctggcagcaggccttacccccctggctcgcattaaaagttatgccagcggtggcgtgccccccgcattgatgggtatggggccagtacctgccacgcaaaaagcgttacaactggcggggctgcaactggcggatattgatctcattgaggctaatgaagcatttgctgcacagttccttgccgttgggaaaaacctgggctttgattctgagaaagtgaatgtcaacggcggggccatcgcgctcgggcatcctatcggtgccagtggtgctcgtattctggtcacactattacatgccatgcaggcacgcgataaaacgctggggctggcaacactgtgcattggcggcggtcagggaattgcgatggtgattgaacggttgaattaatcaataaaaacacccgatagcgaaagttatcgggtgttttcttgaacatcgacggcgaaggtaaccccattaatcaccagtcaaaacttttcaccagcgtcagctcgccagcattacgcatcggtacaataaatgtttcctgtttctcattgaccgatccttcatcggtgatcagcgtcagttgggcggtggttaattccgtttcgctgcgcccaccatagtagttgatatacacctgatagcgcccgtgaattggcgcgggcatggcgaaaatctcgggtccgtaccccgtcgtgacatccatatccagtgcaccactgtttttcagcacggtgttaccgtaccaggcgtgttcgccatcgggcgtaacaacgtgaaggtcgaggtcggtattgtccgtatcccacgagagaaccagccgtaaacgtgcacgaatcgttcctgtacccggcgttgagtaaaactgcattttttgtcggctttgcccatccgggctgatgacctgcacgctgttgctgccttcagtgaaaatataagggcgtgcaaatgaaccatcggattcaattctctgcggcatactggcaccgttgaccaccagccggccctgctgaactttacccgccgcagcataattctttattttgccgcggatctgcgctgagatattttgatcatctgccatgttgacggacgacgccgggtaattgatcgattgtgaaaaactggcatcttcgccctctgccggatgccagcctgagagcggtgcatcaatctcgacttcctgcacaccttcactgtgagcgacaggcgaaagcgccaccagtaacaacggaagaaaaatctttcgcatagcattagtccattaataattgtcgggtcagcgtttcgatatagttctcatcaagcccggtgggataaccatcaaaggccaggtgcagatactcatgggttaaatccagccgatcctgaagcgtaaagaagttacgaataaacagccgtttctgctgccgatcggtataggggaaacctgagactaaacggcaaaccgcaaacacgtctggttcgttgtaccccgtctcagcttgtaatatacgccgccactgcggcatttttttcgccagccaggctttcgctttgggtaataactggcaggttgagcgtggcgctccccagcggctaagactgttgtcgggataagcaaacgcgagtatctgatcgtaacgctctccctgccccgcctgggccgtggcttgccgccaggaaagtgtcccttcggtagcgcgactgccatgataatgaaccggatcgcctgcatagatgagatcctgcgtccaggcggtcatcgttcgcgcccccgtggtcgctggcgaagcagaaacacgctgcgtggcgctgctgtcggggatggtcaggcaatcgccttcccgattggcgttttgctgtaaaaaagtgcgaatcgccacggtcatggctttcgctgcctcagggggcgtacttttcgcctcgcgatccagaactctggcaacgtactcttcacgatcgagatgcgactgcaatttcagtttgcccttttcgctcagtaaggtcgtctcaccgtggctgacaaacgtaatgtggttaccattagtaaacgtcacacgatagcgcccattaagtacgccgggatttactgccgtcgtactcttttccgctgtgattttcttcagcggatagcgggcaaacagctccacctctacacattgcccactggcaacctgcgtcggcactggcaaaacccgattaagcaccgtcgcataacgggttagtaccgttttgctggtgccactgccagtaacccacagcggtgtaccatcggttaaccagccagcaaaaccaccctgacggatttcctgtttatcatcggcaaaccagctccaggttttcacccgtacccgactaccgagcatggatgcgacaccgattttcgcctcgtccagcaccacatccagtaagacttcctgagctttgttttgcgcgggtaacgtcgctaatgaatcaagcagcgatttaaccgttaccgaggtttctggcttcagcgtagtcagagacgctaaccacgcaggtgcctgacgctgttgccagtattgcccccacacatctgcgccaatatgcaaccgctgcggcgcaaaatagagcccacaggaacgtaccagcgcggtatcgcgcgttatgctctccccagcctgacaacaataaacctcttccggggagtttccgcgacactggtagggctgctccggttgatgggtatcctccagccaggcgtaaacatacagtttccacaaactccctaacggcgtggtgagcgagtcaggtaatgctgagactttggtcacgcctgatgacgacagctgatacagttgatcgtgctgcgcaccgcgcagcaccagttgtaacggcgtctcctccgcaagtgttggcagagtaaccaacgccaatagccagacgattctgcgccagttcacttatttcacctgcatcccggtccattcactccctgccgcaacactttgctgcgcaggtgcataggaacgcacataacgagcaggaggcagaacgaattgccctttttgcgagaagcgcagcaaatggcggaaagtgaccgttcccgtcagttctttcaccggcaccatataggccagttcgcccatttcatttcgcgctttttccagcaattgcccctgctgtttcgcggcgttgggtttattgaccgaaatgccccatgttgtgcgctcaacgtcggctcccggtggcagcggtacttccacctgaccgtagcgcagaactgcatcctgctcgctggtaagcgtgatttcatcgagatacagcgcatcgctgtcaatctcattgctggtcaccggttgcagaataaagctcatctcttcttcaccagggataagccgatacaactggcgttcaacggtcaccggaatgttactttgttgagccatttttgccggctcacgtcagcggacctgcacattttgcggcgataattcgtcaccaaaagagagaatgtccggcacgccctgaccaacccaacgccagtcttcgccccctccagttaacttatgtttagcccatgcgcccgcaggcgcaggcaaaacaactggaggcattgtcgccatatatttcgccagccagttcatggccagcgcgcgctcaatagtggattgctcagcggtcaaaccacttaaaatagcggccgtctgggtagcgtcgccaccgctattaagcagcacaaccgtgtgcgccagcggctgattgctgtttgccgctttatcccacgcatattgctgaacctgtggcatcaccgtggacttcaactgcgcttttttcagcaacgtcatggttaagacgtttgccaccgcatctgccagtggagactccggtgtatcgaggatcaggctatcattgatatcgcgggtgtcttcctcagagaaatcttcagttttagttccgcgccgggcgatagcttcatccaaccctttcaacaacgttttgcacggcaaattcatctcctgcgcccatgccagcaccagcgcccgatgcaataacggcatgttatctgcctgctccgcgtagctgtcgagcatatgctgccagtattccggttgttgcgttacgccgatcgcctggctggcctgccagtcggcgtaccatgcccatgccgtaaggaaggcgtcaccattgccatcttcaccccaccaggtaaagcgcgctccgggccccgccagttgcatcagccgcagacggttatcctgaatcatctgacgaatgtcgttagcggcggcactttgatgatcggcaagcgaacgccaggcgagactgagcgggatcagacggctaccggtgttgattacgccaccccacggttcatcgactaacgcatcaagattgttgcggaaaatctcctgcggcgtttcactactttgtagccggatattgctcgcctgctcgggcaacatcagcgcgttatcgccaccaccgagcatgacatttttctgctgttcaacgggccagctgttatccacaaaagacagttttgtgctaatgctgtcctgcacttgcccattttgttgcagttctgcacttaacaagccagattgctgaatattctgcgtcagcgaaatataattcgcccctttgtgcagcgtcagcgtctggcgcatctcagcgcctgcaaatttagtcaccagcgccaccggttcgttatcctgctgactgaagataaacagtcctgccgccggtttgtcgcccacgcgatacaccgttggcatactccacttcatgtagagatttttttccgaacgcagataagcacgcccctgcccgaccagcccgtcgccgttcatcccacgcgcggtgatacgccagcgggttaacgaatcaggcatcaggaacgtgaaatacgctttgccttgtttatcggttgtgagtgacggcatccatgccgcggtatccacctcttcacgccgtggacgttcaagcatttttactcgccgctcgctgcggttagttgcgccaggcgcaaccggctcgctggagagcgcctggtcgtagctgataaacgacagactggagctggtacgcacattgttacgccccagcggatagaaaaatttgccgatattcggcgcgatttctggttgcagcgcgtagatcatttcatcgaccacgcctaccgttagctgcgcagaaacaggtttacctttcagcgacgaggttaattcgacattgaccagttcaccaggctggtaatgggttttgtccgttttcacccggatatccagctggggaacggcaactttgatcccggcgttctgaaaactgtactgaccgttacgggtatacagcaccgaaaaagtgatgttaggcgcaaaggaattgctcactggaacccgggcttcatactgggtatcgtttaaacgttgtagcgttagccagtttgccggatgcgaaagcagcgactgctgttccacgcgatcgcgttccagcgtcaataatgcttcatcaattggctccggaaaggtaatcagcatcttcgcggtttcgcctggctggtacagcgttttatccgccacgatatctaccgtaccagtatgcgccgtgctgcccttaccgctgacggcatgacttaacccagcgagaattaagccgtctttatcgcgtaatgtcagattgtagttgccaggtttagcgaaattgacggtaaaggatttgccgcctgacggtagctctccgctatggctcgtgcggtcttcgagacgcaaccattcatacgtaacaggaacctgttttgaagattccagcgcggcataacggaacacaaccgactcgccgctattactgtattgtgcggcagtacttaatgagtaatgcgccagaccgcgttcaatgaggatctctttggtggtggtgacgcgatacgccgcgccgtcactggcggagacggttaacaaatagcggctcggtttatcggcggcggggagatttaacgccacatgaccgctggcgtcggacaccgtttcgctgccttccagcgacacggggaaacgtccggcataacgcaaatcgttaccgaccattgataattgctgagcgcgcaaacttaactgcacgcgggcattttttaccggctcgccatccgggtagagcagttgcagtttgccgctgaccgcttcgccagttttgaactcttttttggcgagagctaaaccaatctcgaaatgtggcttgatgtagtttgccacgcgaaaactgctgctatagacctgattgcggtaagcaagacgtaactcataacctccggctacggcattttctggcaggcggaaacttccctgcccgccattgcgcgcatccagcgtgacattgacggtttgcaacagactgccgttggcgtccagcaccgaaagcttcgccggggcgctgacgatgggggatgaatgcaacggatcgtggaactcgcggccgatcactttaacatcgacacgatcgcctgcgcgatatagcgggcgatcggtaaaaatatacaagcgggtgttgtagatttcgctttcgtagaagaagttctcggagacaaaaacgccgccttcagcatccttacccagaatgtatgaacgttctggcgatatatgttgtaactgcaaggtaccgctgtcatcggtcacaccgcgggtcatcacgccaagaccgtcagtccacaagatctctgagccgggcttcgcttcaccctgttttttacccgcggtccacaccagaagctctttgcctgacactttgctaagcgccacggtatcggaaacaaacaccaccgtcgtcgcccgatacccaccaaccatcgcctcgacgaggtacagtcccggctcttgttggccgagaggaatataaatgttacccggctgcggcgagatgaaattgctggatgcgccttccagttttaccccttgctgcggctcgaacggtttagcctgccatagtggataacggaactgtttcaccaggggatattttttcagcggggaaaactggttgttctgtacataacgggaaggtttaataatggcattgccgagctgtaattcgggtaacgcctgagtcacattctgccgtgactgagaagagaaagtacgctgcatcacgcggcgagatttgccgtaccagttatcccacagccaggttagcgtattgttcagcccgtcgcccagatattgcggttgcaccacaatgcgatgcaggtttttctgctggcgcaaaaatgccatcgggtcaggaatacgatacaggcgaacgtccacgccgccgtactcttccatctgatagcgccgataatcacgccccggcgcttccagtcgcactttcgcctcttcactgctgctaaaactgctgtcagcaagcaaaaagaatgttcccccggcaggcggcgcatagttgctggaaggaagcgaatcatcagcattagcaagccctgttcccacaagagacagggacaagcacgctgctatcgcgccagaaaatttaaacgataaatgccaatgaaattgggattggaatcgttgggtatccatcgggtgtccttccatgtcataagttgttgcagactgactgcgcgcattccgttgtcagttttcgtggcgcttccggtgtggtagatgacgtaacgccccatccagaccattaagtgctgggcatcgccctgatcgaaaaaaatcatatcgccaggcagcgcctggtttatgtcctggccaataaactggctgttgtactgaatcaaattaatcgcggtcacataggggccggttttcccgttcccctgattccagttttgcgccagttgacgctgttcaggtgttagcgtcatctctggcggcaaatactggctagataaaccgttactttttagccatttactgtcgtgaactttcagcgtctcgttcgccgcaaatcgcaccaggcccgcacaatcctgctgataccagcgtggacttggcccctggcggagctgttcttgtgcaatgcgtacaaaccaggcgcgaaacagcccggattgttcgacattcagcatttcgctatgggcaacaacacaacacagccagcaaatcagcgccagcagcccgtgcctcatagcggctgccaggttatgggtagccactgccaggcggcaccgggttccatctgggccagcttcatgacataacgcggttgttgagataaagcgtccagcttcggcattaataaagtttgtgcggcgttataaaaaaccggttcgagattcttcggcagactggtcaacgtttcgttacgcagcagtttcgctattccttgtggattgatatagagcggaacgatgccatcagtgggtattacatccaccattgccgggcgggttttattcagtgtttgcagcgcgttattaaccagcgtgtcatcgagggagaaaagcagcgttttgttttgcatcgccagcgacacacggaaaaaataatccgacattaattgatcgggttgcgccgcctgcgctttcggatactggccgtatcgggaactcacttcgcgacgccagatttgcgcttcgccctgctgagtctggcttaccggcaaaacaccttctggcgctttgctttcgtgcgcaccaatattttgcgtaaacagtttccctggcaattgcgcctgttcggcagtgccatcaaactgaccgacaaacagcggggtttgcaattttgagtcttcataccagcacagccccgcggcaccgtctaacgccccattcagcttgtcgttttcctggctgatgtgcgaaagcatctcttcggcaataccgtgtgaatacggcaccgccacacagaagctggctccggcaggcatactgttccataccggcgtaaaatcgaaactggcatctacgctggcggattcatcatttaacgccacaaaactgtgccagccgtcgttacccatttcgaagcgtacgccagcaaaagaaggcattaaccgctggtagccaaaccccagccacctggcgctgactacgatgcgctggcgtactggcgttttttcggcagtacgctcttccaggccaaagcttgcttgccagcgttttttgccgctcaacaaatcacctgcgatcgccgtggcttcggtatcctgctgatcatctttaaacaacatatccgtgctggaaaacaccagcatcttgtcctgataagtcgcgaacatcagggcgttattgccgttatagcgcaactgataaacaggaacagtttcactatttatcttgatgctactgatttccgttttgcttaactggctgtcgctggtagcggcaaacaacaatggctccagcagtttgcttaaaccactgcgctggatcagcaccatataatgtgaaagatggccttgtttatcgtgccacagcgctgcctgcgcgggctgatctaagagtgacgaaaagagcttatctttcagcgtgagatcgtgttcatagacaatacgacgaatgctgccttcaatgcccagacgatcggcatgattctgataatagaaaacgaaatcttcgctcagaacatcgtggagaaacggaatggtgaggagatctttgggaagctggctcagagagtcgctgtcgagaaagaggtccggctcattgagatcgatttgcagattgttgtgcaccaccagcggcgacaacgttttttctggcccactgccagcatattgcaacgcccagacgccagcggaaagcagtgctattgcgccaaaacctacaagaccatagaaccgccagcctttcgcctttttttcaccactcattgccacattccttgtgtatagccagccattttttacgggcacagccaaactttaccgtgccctaatacgacaaaagcccagactttgcagcctggacttttcaattcaaacaagggagatagctcccttttggcatgaagaagtaaaattattcttcttctggctcgtcgtcaacgtccacttccggagcgatttcatcgtccccttccgcggcactgccgtcgatggtatccagatcttcctcgtcaaccggttcagcaacacgttgcagacccactacgttttcatcttccgcagtacggatgaggatcacgccctgggtgttacggcccacgatgctgatttccgaaacgcgagtacgtaccagcgtaccggcatcggtgatcatcatgatctggtcgcagtcatctacctgtaccgcgccaacaactaaaccgttacgttcggtaaccttgatggagataacccctttcgtcgcacgcgacttggttgggtattccgccactgcggtacgtttaccgtaaccgttttgcgttgcggtgaggattgcgccatcgccacgaggcacgatcagagagacgactttatcgccttcacctaagcgaataccgcgaacaccggtggtgttgcagcccatcgcacggacagaagactctttaaagcgcaccactttaccttcagcggagaacagcattacttcgtcttcgccgctggtcaggtcaacgccgatcagctcatcgccgtcaaccagtttgatcgccactttaccggcggtacgcagacggttgaactcggtgaggacagttttcttcacggtaccgttagcggtcgccatgaagactttcacgccttcttcaaactcggtcactggcaggatcgcagtgatacgttcgtcctgctccagcggcagcaggttgacgatcggacgaccgcgcgcgccacgagtggcttccggcaactgataaactttcatcgaatagacgcgaccacggctggagaagcacagaatatggtcgtgagtgttcgccaccagcagtcggtcgataaagtcttcttctttaatacgtgcggcagatttacctttcccgccacgacgctgcgcttcgtattcagaaagcggctgatacttaacgtagccctggtgagagagcgtcacgaccacatcttcctgggtgatcagatcttccaggttgatgtctgcgctgttggcggtgatttcagtacgacgtttgtcaccgaactgttcacgaaccagctccagctcttcacggatcacttccatcagacgatcggcgctaccaagaatacgcaacagttccgcgatctgatccagcagctctttgtattcgtcgagcagtttttcgtgctcaagaccggtcagtttctgcaaacgcagatccagaatcgcctgagcttgctgttcggtcaggtagtacagaccatcacgcacgccgaactctggctccagccattccggacgcgcagcatcgtcgccagcacgttcgagcatcgcggcaacgttgcccagctgccacggattagcaaccagcgcagttttcgcttctgcaggcgtcggcgcatgacggatcagttcgatgatcgggtcgatgttcgccagcgccacggctaatgcttcaaggatatgagcacgatcgcgagctttacgcagttcgaaaatagtacgacgggtcaccacttcacggcggtgacgaacaaacgccgcgatgatgtctttcaggttcatgatcttcggctgaccatggtgcaatgccaccatgttgataccgaaagaaacctgcaactgggtctgggagtagaggttgttgagcacaacttcaccgaccgcatcgcgtttcacttcaatcacgatgcgcataccgtctttgtcagactcgtcacgcagcgcgctgatgccttccacgcgtttttcttttaccagttccgcaatcttctcgatcaggcgcgctttgtttacctgatacggaatttcgtggacgataatggtttcacgaccggttttggcgtcaacttccacttctgcgcgagcgcggatatacaccttgccgcgaccggtacggtaagcttcttcaataccgcgacgaccgttaatgattgccgccgtcgggaagtccggccccgggatgtgttccatcagcccttcaatgctgatgtcttcatcatcaatatacgccagacaaccgttgatgacttccgtcaggttgtgcggcgggatgttggttgccatacctacggcgataccggaagaaccgttcaccagcaggttaggaattttggttggcatgacgtccggaattttttccgtgccgtcatagttatcaacgaaatcgaccgtctctttttcgagatcggccatcagttcatgggcaattttcgccagacggatttccgtataacgcattgccgccgcagagtcgccgtcgatagaaccgaagttaccctgaccgtctaccagcatataacgcagcgagaatggctgcgccatgcggacgatcgtgtcatagaccgccgagtcaccatggggatggtatttaccgattacgtcaccaacgacacgggcagattttttataggctttgttccagtcattgcctagtacgttcatggcgtaaagtacgcgacggtgtaccggcttcaggccatctcggacatctggcagcgcacggccaacaatgaccgacatcgcataatccagataggagctcttcagctcttcctcaatgttgaccggtgtaatttctctcgcaaggtcgctcatctaaccgctatccctctactgtatcccggattcaaaggtcgcaaattataacacagccgcgcagtttgaggtaaacctatacgctttattcacatccaatgcctgatatactcgtttgtcttgccaattacggagtagaagtgccaatgaatgccgaaaaatcgccggtaaaccataacgtagaccacgaagagatcgctaaatttgaagccgtcgcctcccgctggtgggatctggaaggtgagttcaaaccgctgcaccgcattaacccgctgcgtctgggctatattgccgagcgtgctggcggtttatttggcaaaaaggtgctcgatgtcggttgtggcggcggcattctggccgagagtatggcgcgcgaaggcgcgacggtgaccggtctggatatgggctttgagccattgcaggtggcaaaactgcacgcactggaaagcggcattcaggtggattacgtgcaggaaaccgtggaagagcacgcggcaaaacatgccgggcagtatgatgtggtgacctgcatggagatgctggagcacgtccccgatccgcagtcagtggtcagagcctgtgcgcaactggtgaaaccaggcggcgatgtctttttctcgacacttaaccgcaacggcaagtcatggctgatggcggtggttggtgcggaatatattttgcgcatggtgcccaaaggcacgcatgatgtgaagaagtttattaaaccggcagaattgctgggctgggtggatcagaccagtttaaaagagcggcatatcactgggctgcattacaacccgatcactaatacttttaaactcggccccggcgtggatgtgaactatatgctgcacacgcagaataagtgaggttgatgtttggccgcgccaatgcctgatgcgacgcttgccgcgtcttatcaggcctacaaatgctccccgtaggccggataaggcgtttacgccgcatccggcaaccgtgccgactagacagtgattaccatttcaccgtcatcgacaaaaaccctgccgtctgggcaaaatcatcactccctttctgccacgccacgctgccgcgcagggacactcgctgactgatattgcccgtgactcccacttttatttcaccccgttgcttcaccgcatcgtcactgatagtgctgccatcctcttcaatttccgtcgaatggggatcgtgataataattcagatctaatgttggtatgacatgaacagcggtacgccattcgctgtgtaaacccagccgcgtctgaatatcatcaccctgcgattgtgacacgcgcgcacggttagcggcggtaaaatcatcctgctgcacgccctgataaatcacctgcgcctgcggttcaatcaccacaccacgccccggtaaccactgataccccgcctccagcgaggcgataatccccgacgagtggtaatgatctgtgccatcttcttgttcggaaacatcattgctaaaccacgcgtattgcagccagctatccagccaggccccttgcttctgattaccgtgctgaaaccagcttgatgtcagcccaacggcataaccgtggttctggttatcggcgcgagttccggtcatattcgagcggctgtcgccctggttatcgctgtagccaccaacaatcccaagcatccactcgccatccgtgccccagcgcccgctaaacagatcgccgctaagttgcaccgtagaagtgtcttcatgttgagccagttgccccgctgctgtgtaatgataatctccgccgataacacgtaaattcagcgtctgaccatcgccacctgcgtgatcgcgtcgctccatcataaacgcctgatttgccgcccgcaggttattaagataaccgccaactttggcattcaacaccggctggtaagcaggcgtaggttccgggtcgggtgttggatcaggatccggcgtgggatcaggatcgggagtcgggtctggatcaggtggcgatggcggcgttacttcttgcgatcgcagataccagtcgttgttatcttccaccagcgtgtagtcatacgctcccatattgacgtagccgctgcctgccagactgaactgcgcattgttttgaaactgcgtgggatcagctgcgaaatcaaccactttaatgcctgtcgatgtcggctcaccaatccctgtaatggagttaaccaccacagttgtgttgccagcagtattaccgttcatcaccaattgatcgcttaccgagtcatcgccgtttaattcgctatcgagcagtagcgtaccgccgccggtataatcaccgtttaccgtcagcgtatcgccagcgacgccattttgcaggctaaccgcaccggacgtattggtcagattgccattaaccgtcacgttggaaagataagtcaggctgtcagtttcaaggttggtattaagctcacctgtcaacgtcacaccatcggtggcattcaccagcgtcccatcgccgttaaatagtgaggcattaagggcgacggaagtatcctgcccggtcaggcgcaaaaccgtaccatcgctgatgtcgatagtgccgctggaaatagcatcaattgactgaatatcctgatccgcgccagtaacgaacgttgccccatcaccaacccacagtgacgaagcataaggaaggatatcagcaacatcacctttcagggtgccttcttcgacacgtaccgccgactgcgttgtaccgctggcggtcagctccagtgtaccagcccccgttttagtcaatgtgctaccctcatcctgatgctgcccgctgctgtcagccatcagtgcgccccactgcgtgtctacccccgcatcaactgccacttcaccgtcggcgcgcatttcaatatcacgtccgtggcctgccgcatctgaacgcgtgtcaacgtcggaggtaatctccatcacgctttcttgttgcttatcggtaaagataacctggcggttatagtgggtatctccaagctgcgagttgtcgctcaccatcagcgtaccggaggcgatttgtgttgtgcccaaataactattattgtttgccagacttacctgcccgtcgctcgcatcgaccaccacgtagacgccatctttcccgtcgccgccgatatgcaaattgtcgccacctgcaagatctaccacatcctgactgccgataaccgttccgctgctgccactgacttcaaggccatcgttgtatgatgtgccgctctgccaggtggagaaatcagagagatcgagcacaccgccgtttaacacgatcgactgcggatcgtcctggagagcggtaagatctgccgcgtcgccttccagcgaaagcaccgcaccatcatcaacgactatatcgccggttagcgccatcgactgcgcccctgccagcacgtagctgccgttttgcgcaatggtgagctgaccagcaccttcgatgatgccagcaaaactgccctgattaacagtaacgttgccaccagcatcgatatttaaagtgccattctgaaagcccgtcaatgcgtgcacaaaagtttgttgggtcgagccaacgtttagctcagcctgattctgatactgatcaatactccctatcgtcagaccgtagcagtcttgcggatcgtcctggcaatgcgtatcgccgacattcatcagggagttgctgcggcccagggtaacttcaccgttttcaatctgcatctcaccagtaaagtcattgttatctgcattaagtaccagatcgccggaacctgttttggtgattaacccggtaccagcaatagagtcaacagctccgtcattctctgtattgccaataaccagcgtttttccgtcggcaatatcaaaggtaacttcacttaagccgagatacataaagccacccgccgcagaggaaggaccatctccatagcctgctgcgctattgttctcatcgactaacacgcctccgttctggctgtagctgtcatcaacagaaatatcaataagatagggagccgtcacgctattggtatatatcgccccgccataaccttcggcagtgttatttgtaaaggcagtgttatttactatcgtataacctgaaggatgcttgctgtcgctattattatcggtaacatcgattgccccgccatcgccatcactgtaacttgttgatgtatatgcctggttgttatcaaaaataacatcacttaaataaacgtcattattaatggtataaattgcgccacctttgccatcattagcgatgttattgcgaaacatggcgttagtgacacgtaaatcgacggcaccagtatcgttagtaccagaagaatagattgcgccaccatagccgcctgcgacgttaccggaaaaaataacatcagtaagattcagcgttgagttttctttagcaaatatggccccgccgttattatattctcctgtaacggtgttattggcaaacagagtcattccagtttcattttctggtaatagtgaaaattccgctccttgttgcaaaaatacggccccaccgctggcgttattggtcatatccgaaaaaaccagccattgcccatcagcgatactccagtcctgcgtaatgcctgaaaggctttgcctgctggcctgacaactcgctttgacatcatatccctggcatgaatcagtgaccgccgcgacaccgttagcagagaaaagagatgcaatcattgacgggagtaaagataaatactccttgcgtagaaagataatccgcatattaatctaaccatcattttctataagacggcgtatttaatcgcattatacgatatggaatatctttcttttgtaaattgttcaacccggtgcaatggctattttgttattatttgatgaataatatcagtgcgtcataattcaagttaataaccttcagggatatcagttatatttaaactaaattaaagtcatgaataattttcttataatataaggtaaattaacaaaatggcttagcatttaacaataaccgaatagaaaacaaccatttcgccatcaacaatctcttacattcgcttatatattgaccacaactgatacatcagattatgtgatgactcgtgcttagatcaatttttgcaatcattagcaaaaagattaataagccatctatatcaatttatctaacctattatgccgttcaagaaatcgccgaacagttatttttaacaaatttttctcttcccattgactttcccggacaccttgtctgacctaaggtgcgcgaaagccactttttccttcctgagttatccacaaagttatgcacttgcaagagggtcattttcacactatcttgcagtgaatcccaaacataccccctatatatagtgttctaagcagcttcccgtactacaggtagtctgcatgaaactattgcggaaagaattccaaaaacaggtacgacatacatgaatcagaatctgctggtgacaaagcgcgacggtagcacagagcgcatcaatctcgacaaaatccatcgcgttctggattgggcggcagaaggactgcataacgtttcgatttcccaggtcgagctgcgctcccacattcagttttatgacggtatcaagacctctgacatccacgaaaccattatcaaggctgccgcagacctgatctcccgtgatgcgccggattatcagtatctcgccgcgcgcctggcgatcttccacctgcgtaaaaaagcctacggccagtttgagccgcctgcgctgtacgaccacgtggtgaaaatggtcgagatgggcaaatacgataatcatctgctggaagactacacggaagaagagttcaagcagatggacacctttatcgatcacgaccgtgatatgaccttctcttatgctgccgttaagcagctggaaggcaaatatctggtacagaaccgcgtgaccggcgaaatctatgagagcgcccagttcctttatattctagttgccgcgtgcttgttctcgaactacccgcgtgaaacgcgcctgcaatatgtgaagcgtttttacgacgcggtttccacatttaaaatttcgctgccgacgccaatcatgtccggcgtgcgtaccccgactcgtcagttcagctcctgcgtactgatcgagtgcggtgacagcctggattccatcaacgccacctccagcgcgattgttaaatacgtttcccagcgtgccgggatcggcatcaacgccgggcgtattcgtgcgctgggtagcccgattcgcggtggtgaagcgttccataccggctgcattccgtttacaaacatttccagacagcggtgaaatcctgctctcagggcggtgtgcgcggcggtgcggcaacgctgttctacccgatgtggcatctggaagtggaaagcctgctggtgttgaaaaacaaccgtggtgtggaaggcaaccgcgtgcgtcatatggactacggggtacaaatcaacaaactgatgtatacccgtctgctgaaaggtgaagatatcaccctgttcagcccgtcgacgtaccggggctgtacgacgcgttcttcgccgatcaggaagagtttgaacgtctgtataccaaatatgagaaagacgacagcatccgcaagcagcgtgtgaaagccgttgagctgttctcgctgatgatgcaggaacgtgcgtctaccggtcgtatctatattcagaacgttgaccactgcaatacccatagcccgtttgatccggccatcgcgccagtgcgtcagtctaacctgtgcctggagatagccctgccgaccaaaccgctgaacgacgtcaacgacgagaacggtgaaatcgcgctgtgtacgctgtctgctttcaacctgggcgcaattaataacctggatgaactggaagagctggcaattctggcggttcgtgcacttgacgcgctgctggattatcaggattacccgatcccggccgccaaacgtggagcgatgggtcgtcgtacgctgggtattggtgtgatcaacttcgcttactacctggcgaagcacggtaaacgctactccgacggcagcgccaacaacctgacgcataaaaccttcgaagccattcagtattacctgctgaaagcctctaatgagctggcgaaagagcaaggcgcgtgcccgtggtttaacgaaaccacttacgcgaaagggatcctgccgatcgatacctataagaaagatctggataccatcgctaatgagccgctgcattacgactgggaagctctgcgtgagtcaatcaaaacgcacggtctgcgtaactccacgctttctgctctgatgccgtccgagacttcttcgcagatctctaacgccactaacggtattgaaccgccgcgcggttacgtcagcatcaaagcgtcgaaagacggtattttgcgccaggtggtgccggactacgagcacctgcacgacgcctatgagctgctgtgggaaatgccgggtaacgatggttatctgcaactggtgggtatcatgcagaaatttatcgatcagtcgatctctgccaacaccaactacgatccgtcacgcttcccgtcaggaaaagtgccgatgcagcagttgctgaaagacctgctcaccgcctacaaattcggggtcaaaacactgtattatcagaacacccgtgacggcgctgaagacgcacaagacgatctggtgccgtcaatccaggacgatggctgcgaaagcggcgcatgtaagatctgatattgagatgccggatgcggcgtaaacgccttatccggcctacggctcggtttgtaggcctgataagacgcgccagcgtcgcatcaggctccgggtgccggatgcagcgtgaacgccttatccggcctacggctcggatttgtaggcctgataagacgcgccagcgtcgcatcaggcacaggatgcggcgtaaaatgccttatccggcattaaactcccaacaggacacactcatggcatataccaccttttcacagacgaaaaatgatcagctcaaagaaccgatgttctttggtcagccggtcaacgtggctcgctacgatcagcaaaaatatgacatcttcgaaaagctgatcgaaaagcagctctctttcttctggcgtccggaagaagttgacgtctcccgcgaccgtatagattaccaggcgctgccggagcacgaaaaacacatctttatcagcaacctgaaatatcagacgctgctggattccattcagggtcgtagcccgaacgtggcgctattgccgcttatttctattccggaactggaaacctgggtcgaaacctgggcgttctcagaaacgattcattcccgttcctatactcatatcattcgtaatatcgttaacgatccgtctgttgtgtttgacgatatcgtcaccaacgagcagatccagaaacgtgcggaagggatctccagctattacgatgagctgatcgaaatgaccagctactggcatctgctgggcgaaggtacccacaccgttaacggtaaaactgtgaccgttagcctgcgcgagctgaagaaaaaactgtatctctgcctgatgagcgttaacgcgctggaagcgattcgtttctacgtcagctttgcttgttccttcgcatttgcagaacgcgaattgatggaaggcaacgccaaaattattcgcctgattgcccgcgacgaagccctgcacctgaccggcacccagcatatgctgaatctgctgcgcagcggcgcggacgatcctgagatggcggaaattgccgaagagtgtaagcaggagtgctatgacctgtttgttcaggcagctcaacaggagaaagactgggcggattatctgttccgcgacggttcgatgattggtctgaataaagacattctctgccagtacgttgaatacatcaccaatatccgtatgcaggcagtcggtttggatctgccgttccagacgcgctccaacccgatcccgtggatcaacacttggctggtgtctgataacgtgcaggttgctccgcaggaagtggaagtcagttcttatctggtcgggcagattgactcggaagtggacaccgacgatttgagtaacttccagctctgatggcccgcgttaccctgcgcatcactggcacacaactgctgtgccaggatgaacacccttcccttctggcggcgctggaatcccacaatgtggcggttgagtaccagtgtcgcgaaggttactgcggctcctgtcgcacacgcctggttgcaggtcaagttgactggattgccgaaccgttagcctttattcagccgggggaaattttgccctgttgttgccgggcaaaaggcgatattgaaatcgagatgtgaattggttgtagtgccagatacaacgcttatgcgtcttatctggcctacaacgattacatggcgtagtaatacgctttcacctgctcccagtccgctttggggattggctccagatatttttccagctggcggaagtcatgattaatcgctttatcgcgacgcaagcggcgacgacttttctccaggtcaagaaaaccagcttctgcattaccttctgttttcacatagatatggcgaacataacaacagccatgctgacgattaatgctatgcattttcttaaacgccagcgccactgctttcaacatggcttgccgtacttcgtcagaataaggcgatactgcatgctgggcataccagtcagcaatgctgatgaaccccgccatatcttcagtcaccagcaacgctcgccattcaccctcaattttcaccgcttcaccaaaaacgatcttcggcacgatgacaccggcccgttccagttctttaattaccgcaacctcacggacaatcgttggtcggccgaacggataacgtacggaatgaaacagatgatgcgtcatgcgctttacatacagctttttgccgttgcgctcgacgcattgcaccccgctcataccattacggcgatagttaggctcttcaacccagtcgccctctgttgcccaccagtgattaaattcgtcgtactttgctgaaactgccataccctatcgcctgtcatttttattaacgacaatgactataggtggttacctgaggaaaatcttaatgaaacgtgtcgtattaatgaatttcttttgccactactagcttgacaccgcttttacccttcatttgcagcgcatagattccaccagccactaccactaatagtgcgcccagcagataaaatgtgaatttaatcaggcggatacagcgatgaattttattcgacagggattaggcatcgccttacaaccagagttaacgctgaaaagcattgcaggtgaattgtgttccgttcctctcgaaccaactttctatcgacagatttcgttgctggctaaagaaaagccggtagaaggcagtccactgtttttactacaaatgtgcatggaacaattagtggcgattggaaaaatttgatatgagacaggatggcgcatgaacgccatcctgcagtaacattactctttattaagaaattttactgccttatcagggaaatcagtaaacagcccatttacacccgctttgttatacagagcatcatataactgattcacatcaggagtgtattcaggcagtttatctgaccgcacggtataaggatgcactaccagtttattctgctgagcatcttgcaccatgccagtgagtttgatattacccggctgcgatgtctcctcaatcaacatatggtaatccggaccaataccatctgcatattccgccacctgtttcatggcacccggcttaaacatccagtcgtagttgtaattaacccagcttccatccggctgtttctgctgcgtttcattccagtcggtataggcaatcagctgtaccagattgagctccatgcccattttgggttccagctcattcttaatacgcttcagctcatcagcatcaaaacattgcaaataaactttatcgtctttaccggtgtaaccatatttcttcagcacttccagcgtttttgccgcaatatccttcccttcctgatgatggaaccacggcgctttgatttctggataaataccgatatttttcccggtagagtgatttaacccctgaacaaattcaatctcttcttcaaaggtgtgcacccggaagtcggacttacccattgggaaacgccccggataagtctgcacttttttaccgttttcaatatcgaaaccttcggtaaatttcaacgacttaatttcatccagcgtgaaatctatcgcgtagtaacgaccgtctttgcgcgcccgatccgggaaacgatcggcaacatcagtaacacgatcgaggtaatggtcatgcagaacaaccagattgtcgtctttggtcatcaccaaatcctgttccagataatccgctccctgcgcatacgccatcgcttttgctggcagcgtatgctccggcaaatatccactggcaccgcgatgggcgatgactattttttcgttgctgtccgccgccattgcactgcttcccatgactatagtgctcatcatgatcgccatgctaaggtttttcagcgtcaatttcatgccattagcctccgttgcgttcttgcagtaattgttcatggcgacgtttttcgccaatcatcacaacaatcaacaagataaccgccagaatgctgccgccaatcattaccataaagccgccatcccagccgaagaagtccacggtgtagccaacaatcgcgctcgccgccaccgaaccgcccaggtaaccaaacagcccggtaaagcccgctgccgtacctgccgcttttttcggtgccagttccagcgcatgcagaccgatcagcatcacaggaccgtagatcaggaagccgataacaatcatacaaatcatatcgacggttgggttacctgccgggttcatccagtaaacgatagtcgcgatggtcaccagtgtcataaagaaaacgccggttgccccacggttgccacggaagactttatccgacatccagccgcacagcagagtgcccggaatacctgcatattcataaaggaagtaggcccaggaggatttatctagcgcgaaatgcttaacctctttcagataagtcggtgaccagtcgaggatgccgtaacgcagcagataaacgaacacgttggcgatggcgatataccacagcagtttgttcggcagtacgtactgcatgaagatttgcttcgccgtcagctcctgttccgctttttcgttatagtcgtccggataatcatttttgtactcttcgatcggcggcaagccacaggattgcggggtatcgcgcatcatcgcaaaggcgaataatgccaccagaatggcgcagaaagcaggcatatagagcgccgcatgccagtcattgaaccaggccatccccagcaggaacagcagcggcggaataccaccaccgacgttgtgcgcacagttccacactgacacaatgccgccacgttctttctgcgaccaccagtgcaccatagtacgaccacacggcggccaccccatcccctggaaccaaccgcagaggaacaacagtacaaacatcaccgcaatgctcgacgtcgcccatggcacaaagcccataaacaacatcactgccgccgccagaatcaaacctgcgggcaggaaaacgcgcggattcgagcgatccgataccgaacccatgatgaatttcgaaaatccataagcaatcgagatccccgaaagggcaaaacctaaatcaccgcgtgagaatccctgctcaaccagataaggcatagcaagcgcaaagttcttacgaaccaaatagtaagccgcatagccaaagaatatccccaggaaaatttgccagcgcaatcgacgataagtcggatcgatctccgcggcaggtaagcgcgctttgtgtggcgctggtttaaaaatactcaacattgatagcctccgtggcccgtggtcttatttatgattaacagcctgattcagtgagagaacctgccgtttcttgagttgccgcgatgttaagaaaacattcataaattaaatgtgaattgccgcacacattattaaataagatttacaaaatgttcaaaatgacgcatgaaatcacgtttcactttcgaattatgagcgaatatgcgcgaaatcaaacaattcatgtttttactatggctaaatggtaaaaaacgaacttcagagggataacaatgaaaactcgcgactcgcaatcaagtgacgtgattatcattggcggcggcgcaacgggagccgggattgcccgcgactgtgccctgcgcgggctgcgcgtgattttggttgagcgccacgacatcgcaaccggtgccaccgggcgtaaccacggcctgctgcacagcggtgcgcgctatgcggtaaccgatgcggaatcggcccgcgaatgcattagtgaaaaccagatcctgaaacgcattgcacgtcactgcgttgaaccaaccaacggcctgtttatcaccctgccggaagatgacctctccttccaggccacttttattcgcgcctgcgaagaagcagggatcagcgcagaagctatagacccgcagcaagcgcgcattatcgaacctgccgttaacccggcactgattggcgcggtgaaagttccggatggcaccgttgatccatttcgtctgaccgcagcaaacatgctggatgccaaagaacacggtgccgttatccttaccgctcatgaagtcacggggctgattcgtgaaggcgcgacggtgtgcggtgttcgtgtacgtaaccatctcaccggcgaaactcaggcccttcatgcacctgtcgtggttaatgccgctgggatctgggggcaacacattgccgaatatgccgatctgcgcattcgcatgttcccggcgaaaggatcgctgctgatcatggatcaccgcattaaccagcatgtgatcaaccgctgccgtaaaccttccgacgccgatattctggtgcctggcgataccatttcgctgattggtaccacctctttacgtattgattacaacgagattgacgataatcgagtgacggcagaagaggttgatattctgctgcgtgaaggggaaaaactggcccccgtgatggcgaaaacgcgcattttgcgggcctattctggcgtgcgcccgctggttgccagcgatgacgacccgagcggacgtaacgtcagccgtggcatcgtgctgctcgaccatgctgaacgcgatggtctggacggatttatcaccatcaccggtggcaaactgatgacctatcggctgatggctgaatgggctaccgacgcggtatgccgcaaactgggcaacacgcgcccctgtacgactgccgatctggcactgcctggttcacaagaacccgctgaagttaccttgcgtaaagtcatctccctgcctgccccgctgcgcggttctgcggtttatcgtcatggcgatcgcacgcctgcctggctgagcgaaggccgtctgcaccgtagcctggtatgtgagtgcgaagcggtaactgcgggtgaagtgcagtacgcggtagaaaatttaaacgttaatagcctgctggatttacgccgtcgtacccgtgtggggatgggcacctgccagggcgaactctgcgcctgccgcgctgccggactgctgcaacgttttaacgtcacgacgtccgcgcaatctatcgagcaactttccaccttccttaacgaacgctggaaaggcgtgcaacccatcgcctggggagatgcactgcgcgaaagcgaatttacccgctgggtttatcagggattgtgtggtctggagaaggagcagaaagatgcgctttgatactgtcattatgggcggcggcctcgccggattactctgtggcctgcaactgcaaaaacacggcctgcgctgtgccattgtcactcgtggtcaaagcgcactgcatttctcatccggatcgctggatttgctgagccatctgccagatggtcaaccggtgacagacattcacagtggactggaatctttgcgtcagcaggcaccagcccatccttactcccttctcgagccacaacgcgtgctcgatctcgcttgccaggcgcaggcattaatcgctgaaagcggtgcgcaattgcagggcagcgtagaacttgctcaccagcgggttacgccgctcggcactctgcgctctacctggctaagttcgccagaagtccccgtctggccgctgcccgcgaagaaaatatgtgtagtgggaattagcggcctgatggattttcaggcgcaccttgcggcagcttcgttgcgtgaactcggccttgccgttgaaaccgcagaaatagagctgccggaactggatgtgctgcgcaataacgccaccgaatttcgcgcggtgaatatcgcccgtttccttgataatgaagaaaactggccgctgttacttgatgcgcttattcctgtcgccaatacctgcgaaatgatcctgatgcccgcctgcttcggtctggccgatgacaaactgtggcgttggttgaatgaaaaactaccttgttcactgatgcttttgccaacgctgccgccttccgtgctgggcattcgtctgcaaaaccagttacagcgccagtttgtgcgccagggtggcgtgtggatgccgggcgatgaagtgaaaaaagtgacctgtaaaaatggcgtagtgaacgaaatctggacccgcaatcacgccgatattccgctacgtccacgtttcgcggttctcgccagcggcagtttctttagtggcggactggtagcggaacgtaacggcattcgagagccgattctcggccttgatgtgctacaaaccgccacgcggggtgaatggtataagggagatttttttgcgccgcaaccgtggcagcagttcggtgtaaccactgatgagacgctacgcccgtcacaggcagggcaaaccattgaaaacctgtttgccatcggttcggtgctgggcggatttgatcccatcgcccagggatgcggcggcggtgtttgtgccgtcagtgctttacatgccgctcaacagattgcccaacgcgcaggaggccaacaatgaatgacaccagcttcgaaaactgcattaagtgcaccgtctgcaccaccgcctgcccggtgagccgggtgaatcccggttatccagggccaaaacaagccgggccggatggcgagcgtctgcgtttgaaagatggcgcactgtatgacgaggcgctgaaatattgcatcaactgcaaacgttgtgaagtcgcctgcccgtccgatgtgaagattggcgatattatccagcgcgcgcgggcgaaatatgacaccacgcgcccgtcgctgcgtaattttgtgttgagtcataccgacctgatgggtagcgtttccacgccgttcgcaccaatcgtcaacaccgctacctcgctgaaaccggtgcggcagctgcttgatgcggcgttaaaaatcgatcatcgccgcacgctaccgaaatactccttcggcacgttccgtcgctggtatcgcagcgtggcggctcagcaagcacaatataaagaccaggtcgctttctttcacggctgcttcgttaactacaaccatccgcagttaggtaaagatttaattaaagtgctcaacgcaatgggtaccggtgtacaactgctcagcaaagaaaaatgctgcggcgtaccgctaatcgccaacggctttaccgataaagcacgcaaacaggcaattacgaatgtagagtcgatccgcgaagctgtgggagtaaaaggcattccggtgattgccacctcctcaacctgtacatttgccctgcgcgacgaatacccggaagtgctgaatgtcgacaacaaaggcttgcgcgatcatatcgaactggcaacccgctggctgtggcgcaagctggacgaaggcaaaacgttaccgctgaaaccgctgccgctgaaagtggtttatcacactccgtgccatatggaaaaaatgggctggacgctctacaccctggagctgttgcgtaacatcccggggcttgagttaacggtgctggattcccagtgctgcggtattgcgggtacttacggtttcaaaaaagagaactaccccacctcacaagccatcggcgcaccactgttccgccagatagaagaaagcggcgcagatctggtggtcaccgactgcgaaacctgtaaatggcagattgagatgtccacaagtcttcgctgcgaacatccgattacgctactggcccaggcgctggcttaaactcctttctgatgcccggtaagcatgtggttaccgggcatttttgcgtacacgattccgtgcccaatgtatgcgttgcaacgcagtgaaaattcctctgaaaacgtctcgcaaaggctgaaactggcagatgtcaaaggcctgggataaccgtaatgtcgcgtcatcataaatatcaggtgacggacaaccatgaccgaatcaacaacctcctccccgcatgatgcggtatttaaaacctttatgttcacacccgaaaccgcacgggattttctcgaaatacatttaccagaaccactgcgcaagctttgcaacctgcaaaccttacgcctggaacccactagttttattgaaaaaagtttacgcgcttactactcggatgttttgtggtccgtggaaaccagcgacggtgacggctatatctactgcgtgattgaacatcaaagctctgcagaaaagaatatggcttttcggctaatgcgctatgccactgccgccatgcagcgtcaccaggacaaaggctatgacagagtcccgctggtggtgccgttgctgttttatcatggcgaaacctcgccttacccgtactcactcaactggctggatgagtttgacgatccgcaacttgcccggcagttgtacaccgaagcttttctgttggtggatatcaccatcgtacctgacgatgagatcatgcaacatcggcgtatagctctgctggaactgattcaaaagcatattcgcgaccgcgatttaatcggcatggtcgacaggatcaccacgcttttggttagaggcttcactaatgacagccagctacaaacactgtttaattatctgctgcaatgcggcgatacctcccgtttcacccgttttattgaggagattgccgaacgttcaccactacaaaaggagagattaatgactattgctgaacggctacggcaggaagggcatcaaattggctggcaggaaggtatgcatgaacaagccattaaaattgctttgcgcatgctggagcagggctttgaacgtgagattgtgctggcgacaacccaactcactgatgctgatattccgaactgtcattaaaaggagagattaatgactattgctgaacggctgcggcaggaaggacatcaaattggctggcaggaaggtaaattagaaggtttgcatgaacaagccattaaaattgctttgcgcatgctggaacagggctttgatcgtgaccaggtgctcgcggccacccagctaagcgaagccgatctggcagcgaataaccactaattaacacaggcccacagccgatccccatgggcctttgatatcaataactaccttttatgcgtggcccatttttgcctgatttaaacatcgccagtcgttgatccagggcatcgctgtagagcatcgtgtcaacgccaacagcgacaaagttcgctccccacgccaggcattgctgcgccatatcaggagccacagccagaaaaccagccgctttacccgcagcacggatccgccgaatactggtttcaataattcgctgcacttccgggtgcccggcgttatccgggtagcccaacgacgcagaaagatccgcaggtccaataaacacgccatcaatcccttcgacgtcgaggatttcgtccaggttatccagtgccgttttactttccacctgcaccaacagacaaagcgaatcgttaacttgcgccatgtaattctcaatgcgtccccagcgcgcagcccgtgccacactggccccgacaccacgctcaccgtagggaggatagcgcgtggcagacaccacctgacgtgcctgttcggcagtatcgaccatcgggatcagtagagtttgcgcgccaatatccaggacttgtttaatcagcggtttactgccttccaccggacggatcacgggttggctggcatagggcgctaccgcctgtagctgatgataaagatcctgaatggtgtttggcgcgtgctccccgtcaatcagcaaccagtcataaccagaagtggcggcaatttctgccatataggcagtcgttgagcttaaccacagaccaatttgcacttcgcccttgcgtaaacgttctttaaagggattgcttaataatgcgttcatcgtgttccttaacctatttaatgatgtgccacgtcggtctgcgcaacagtgcgatttacacgcagagtgaaaataatcagcgaaccgatgaccgccaccgctgccagcgtcagtaatcccgccgcatcgctggcaaataacgtttctgctttcacgcgcaggatcggggcaataaacccgcccactgcaccaaacaggtttacaaaaccaattcccgcagccagcgccgtaccggaaagcagttgtgtcggcatcgtccagaacactggctgcacggcaataaacccgatagctgcaacacacagcgctacgatcgccattactggagaaagcagcccggacagaccaataccaatgcccgccgccagtaatgtcagcgctgcgacattacgccgttcgccggttttatcggaatagcgcggaataagccaggtcccaaacaaggccgcaacccacggaatggcggtgaccaccgacgctgtaaagcccacttttgttcccagcaatgccgcaacctgggtcggcaggaagaaaattaatccgtaaaccgccacctgaatggtcaggtagataatcgctagttgccagactcggccattacgcagcgcatcgctcagccgagaagtcactttctgttgttcttcacttgccagttgattgataagcaacgttttttcttgtttactcagaaaacgtgcctgctccggtgtgtcatcaagccaaaagaatgtgaataccccagcaccgactgccaacaatccttcaatcacaaacatccagaaccagccgggatgccccataaatccatgcatctccaacagcgcgccggaaagcggtgatcccagtgttaacgccagcggtgcgcccatatagaacagccccataatgctggcgcgattacgctgcggaaaccattgcgaggtgagataaatcataccagggaaaaatccggcctccgcagcacgaagcagagtgcgaactatcagaaatttcgcttcagtatcggcccatgccatggctgccgaaagaaatccccacagcagtgttgtcgtaccaatccaggttctggcccccagtttgcgcatcaaaagattcgccggaacacccagaaacgcatataccacaaagaaaatgcctgctcccagcgcataagcttcattactcaacccggtatcaatctggtaggtctgtttggcaaaaccgatattcgaacggtcgagaaacgccagcacatacagcgccaacataaacggaattaaacgcacacggtttttcttcaccacggcgtcaagcaaagcggtgctcataaaaagctccttagaatatgtgggcgttaccgttgtcacagcaacgcccggagtgattagtggctgtaggggcgtttcaaattgcagtcacgattgagttcgacgccaaaaccgggtttatcaagcactgatttatgaatacgaccattcaccggaaccggctcattgagcagaatcgggtcaaactgcggacgcatcgttgaacaatccgggctggtcatcaggaattcgctgaatggcgtattggtgaaggtgatcaccgcatggtgagagtaaacagacgaaccgtgcggcaccaccagttgccccctggatttggcgattgcggcaatttccaccagcgtggttaaaccaccgcaccagccaacatccggctgcataatgtcgataccggtttctgaaagcgtacgaaaagattgcagtgtgccgtggtgctcaccgctggtgaccatcattccgactggcgcgttgcgtttcagttcgcgataactttcatactgctgtggcggcaggcactcttcgatccatttcaggttatagggcgcgcaagcgtgggccagtttggtcgcatagttcacgtcctgactcatccagcagtcgagcattaaccagaaatcctcaccgcatttttcacgcatatccgcgaccatagcggcatctttgcggatccccgcatcgccatcatgtggcccccagtgcgtcggcattttgccaccgataaagcccatctcttttgccagatccggacgcgcacctgtggcgtagaactgaatctcatcacgaacagcgccgcctaaaagtttataaaccggaagcccgaccactttgccgaacagatcccacagagccagatcgacacaagaaatcgtattcatcaccaggccaccagagccggagtaatacagggtggcactgagcatttgatcgtggatcagtttgatatcactgacacatttaccctcaatgaaacggttaagatgtttttcgacaataaaacagcccatttcaccggctgtcgaaacggcgaatccggtctggccgttttctgcttcgacttcaacaaccaacgtgccaagaacgttaatgccaaatgactggcgtgactgctcgtaatcgcggtatttactcatcggggtggcaatatgatcgtctatccagtgattcgccccctggtcgtgataatcaccgccgccagcgcctttttctgctgtcgcaccgccagtaaaccaggcgcgaacctgtttaatttttggtagggtcatgatgttctccattgttatgaggcttgtaagtcaaagggacttttccatcccaacagacgtgaaatatccctggcgcaggcaatggccttgcccgccagataatcacggtattcttcattgatttgtaagcgggtaccgaccaccgagatcgcagcggtaagctcgttattggcgttaaacaccggcgcagcgacacaacggacatcggcgtaatcttcgccgttgtcatagctccagccctgacggcgaatacgcgccagttcttcgtgaagttgctgtggatgagtaatcgttgtgggtgtcgcctgctcccagaccagcccttcgataatactttgctgtaccgctgcaggttgccaggcaagcaggcatttacctattccggagcgataaagcgaaaggctttttccttcatgggaacgcacgctgatagtggctgatgactccactttcaaaatgtaataagcgctgccgttatcaataatccccaggtgacataacagcccggtggtatccatcagttgcgtcaaacgcggtcgagccagttcccggagatccatcttgcttaacgcatgaccggaaagctccaccagcctggtccacaaacaaaaattttcctggtgatcaaggctaagaaaacgctgacgcctgagttcattaagcagcaaataggccgtgcttttagggattcccaatgtgtcaatgatcgtcgcagcactacaggggccaatgcgggcaatcaaattgagaatatcaatagcccgtgtcagggcgggaactttgcttgattccaacatactggactccagtcttagatactggaatcagtctcgttgctcagggggagtaaaattgtgaagcgcatcaaatcccgctcctcgtccagcagactggagaaattacgcacaaatttgtgaatcagcgcacggattttttcttattgagtacaacaggttggacaaattttgccggagggggaatgtgccggtgcagtaaaccggcacagagtggcggaatcagacagataaggtcatggactcaacaacctcaatccagccatgctcactggcgatatcctggccgtttaaccaacggcgcagcatattcagtgccatcattgcgcacacttcctgacggatagccaggctgtagcgcgtagtgctgaaacgcacacgcagagcgaaagtgccgtctggcgtggctagcgcaaagttgagatgctcgttctcgaaacccgaaacagccagtgccagcccggcaaaatggttggcccgccgttctgtaatccagtgcgcagtttgcgccagggtttcctcctgtgaaggaaccacttcacacgccagcaatggagcacctgcgcgagaaagttgcaaagccaataaaccaccggtgaattgctcgctcaacgtcaggctgaactggcggttttgcaattcgcgactgatctgcgcgggcagtccttcagtgccttcgaaaatcacgctctgtccggcaacacgtttaacatccagccacagtttttccatcgcctgttgctcgcttgccggtccggtgagtttcagttcgatgataggcattgaggagcgatagcccattgttacgcccggcggcagttgtagagtgtccaggctttgtgccagatcgctttccgaacgaccaaaagtagtcaaacgcagacaaaccggcggctgcggtaaagaaaaacgctcgcgcaggcgcggcaggatttcgtgctcgaccatcaccttaaattctgacggtacgccgggagtaaagaacatcaggcaacgattaagctgcacggcaaaaccacaggcggtgcctaccgggttattgataaattcagcactggcaggcagctccgcttgtttacggttgctcggtgccattactcgtccacgttcgtggaaatagcgttccatctctttgagccaggcttcatgcagcaccaggccttcaccttttgctgtcgcagcggcgagtgcgcttaaatcatcgctggtcggtcccagcccgccgttaacgatcagcacatcggcgtgctgactacgttcgcgaagaatggtgactaagtcatcaaggttatcccccaccgtattgcggcgagataatggcaacccctgatgaaagaaaaaatcggccagccaggcagcgttagtgtcaacgatttgcccgtgtaacacttcatccccggtggataacatttccacttttaacatggttatctcctgcttttgttatcgaatcactataacgcaaagggagataaggcgtagtaagaaactgaatggcgcgacagaatgccgcgccggaagggatcagaaactggcgttaaccccaacatacgggccgtcagccacggcgttgtcgcggttaccgtctttacccgacagattcaggtagcgataacccgcctcaatactgactggacgcataatggtgtaacgcgcgccagcattcgcttcttcataactttgaataccgctggagagcgaatccggagagtagtaatactcgccaaacaaacggaagctgttgccaattttccactgcaaaccacctcctaccgctgcggcataaccttcatcgccgtaattcgggttggtgtaaacgccttttccgccaacggtcgccattaacggcccgagaggcagattcaaccccagccccacgccagcgacatcaccgtcgtcgtcgttatgtgtccagttaccgcttaacgccaggcccgtcgtttcagtcccaaaaccgacaccaatattggtgtattctttacccgcctgaccgctgatgctcattgcattgaccgatgcagaaaccaacagcattccggccagacctgctagcgcaatttttttcattatcccctttcccacaagcaattaatcaaaattcccaaagctgcgggattgtactgcctggcacagaggattcaatgagcgaaaaaaaggatctagtcacttattgtaactaaatacttcttaaataattaaatgccgaaaaaataaacacactttatcgatacacacaaaaataataataagtacagttatcatcgcaaaagagattactgtcactttcacatatttgtgagttaccgtattctcatggtttctttttatttataaggaatatccctgtgcgacaacggactattgtatgccctttgattcaaaatgatggtgcttatttgctgtgtaaaatggccgacgatcgcggcgttttccccggtcaatgggcgatttcgggtggcggcgtggagcctggcgaacgaattgaagaggcactacgccgcgaaattcgcgaagaactgggagaacagctgcttttgacagaaatcacgccgtggaccttcagcgatgatattcgcaccaagacgtatgcagatggtcgcaaggaagagatttatatgatttacctgatttttgactgcgtttctgccaaccgagaagtgaaaataaacgaagagtttcaggactacgcgtgggtaaaacctgaagatctggtgcattatgatttgaatgtcgccacccgaaaaacgttacgtttgaaaggtcttctgtaacaatgatgacagccattactggctgtcagattgaaaatttagtggttaacgaattccccatccagataaactttgcctttttccacatgcatgactaaaccatccagataatcaggtttaaatgtcgcgtcacgcttatctttagcaatatatgtcaggcaatgattatgggtgaaaataacgatatttttatcaggcgctttgctttgtaagtccttaattgcactataaatctcattaccgcactgaagaagtcgtttatctaccgtcaattttttacccgctgaaaaccaggtagccgactgaatggtccggacggtattactggaataaagatcgaaatcagggatatcagcactaaaagcgttgcccagttcacgggcatcctgggtacctttaaccgtaatacctgttttatctgacaagcattgattggttgaacggtcgcaacgttcagcatgacgaaacaaaacgacaaccgggtgctgctgtgccagtctggccagtgttttattgtcgatacgtggcaaaccattgctactccaggcggcatgagtacccagtccggcaattgcagcgagcgccagtaaaatgatgatatatttttttgacttcaacgaagagcggcaaaaagctaacacgtaaactccacctatagacaagcgcaaccagacaattaccgtgaaattgagctacatttctggcgataattcgcagttggtgtaatattaaaaatcctacgatgtcggcaaaatgcctcaaaattttgccaaatgcaaagcctaaataagaaaaaatataaaaatttcaatatttacgtctaatattagtttcttaaggttaagttaatattctatccttaaaatttcgctccaaatggcaaaatatacacaacactctttatagcaaatataagtggacaggtattcaatggcggaaggaaaagcaatgtcagaatttttgcctttttcgcgaccagcaatgggcgtggaggaactcgctgcagttaaagaggttctcgaatccggttggatcacaaccggtccgaagaatcaggcgcttgagcaagctttttgccagttgacgggaaatcagcatgccatcgcggtcagttcagccaccgccggaatgcatatcacgctaatggcgttgaaaattggcaagggcgatgaagtgattacgccttccctgacctgggtttcaaccctcaatatgatttccttgttgggtgcaacgccggtaatggtggatgtcgaccgcgatacgctgatggtcacgcctgaagctatcgagtcagccattacgccacgcactaaagccatcattccggtgcattatgccggtgcgccagcagatattgacgccattcgcgccattggcgaacgttacggcatcgcagttatcgaagatgctgcccatgccgtcggtacgtattacaaagggcgacatattggcgcaaaaggtaccgctattttttcatttcatgccattaaaaatattacctgtgctgaaggtggcctgattgtaactgataatgaaaaccttgcccgccagctacggatgctgaaatttcacggtctgggtgtcgatgcctatgacagacaaacctggggccgtgcaccgcaggctgaagtcttaacaccgggctataagtacaatctgaccgatattaacgccgcgattgccctgacacagttagtcaaattagagcacctcaacacccgtcggcgcgaaattgcccagcaatatcagcaagcactggcagctctcccctttcagccattaagccttcccgcctggccgcacgttcacgcctggcatctgtttattattcgtgtcgatgaacaacgttgtggtatcagtcgcgatgcgttgatggaagcgttaaaagaaagaggcattggtaccgggttacatttccgcgccgctcacacacaaaaatattatcgcgagcgttttcccacgctgtcgttaccgaataccgaatggaatagcgaacgcatctgttctttgccgctgttcccggatatgactaccgccgatgccgaccatgtcatcacagcccttcagcaactcgcaggacaataagccatgtttgaaatccaccctgttaagaaagtctcggtggttattcccgtttataacgagcaggaaagcttaccggaattaatcaggcgcaccaccacagcctgtgaatcgttggggaaagagtatgagatcctgctgattgatgacggcagtagcgataattccgcgcatatgctggtcgaagcctcacaagcggagaacagccatattgtgtctattttgcttaaccgcaattacgggcaacattcagcgattatggcgggattcagtcacgttactggcgacttaattattacccttgatgccgatctccagaatccgccagaagaaatcccccgcctggtggcaaaagccgatgaaggttacgacgtggtagggactgtacgccagaaccgccaggacagctggtttcgtaaaaccgcttcgaagatgattaaccggcttattcagcgcaccactggcaaagcgatgggtgattacggttgtatgctgcgcgcctatcgccgtcatattgtcgatgcgatgttgcactgccatgaacgcagcacctttatcccgattctggcgaatatcttcgcccgccgtgccattgaaattccagtacatcatgccgagcgtgagtttggtgaatccaaatacagttttatgcgcctgattaatttgatgtacgacctggtgacctgccttaccacaacgccgctacgtatgctgagtctgctcggcagcattattgcgattggaggttttagcattgcggtgctgctggtgattttacgcctgaccttcggaccacaatgggcggcagaaggcgtctttatgctatttgccgtgctgtttacttttattggcgctcagtttatcggcatgggattactcggtgaatatatcggcaggatctacaccgatgtccgcgcccgcccccgctattttgttcagcaagttatccgtccatccagcaaggaaaatgaataatgaaaaccgtcgtttttgcctaccacgatatgggatgcctcggtattgaagccctgctggctgccggttacgaaattagcgccatttttacccatactgataatcccggtgaaaaagccttttatggttcggtggctcgtctggcggcggaaagaggcattccggtttatgcgccggataacgttaatcatccgctgtgggtggaacgcattgcccaactgtcgccagatgtgattttctctttttattatcgccatcttatttacgacgaaattttgcagctcgctcccgcaggtgcatttaatctgcatggttcgctgttaccaaaatatcgtggtcgcgcgccgctgaactgggtgctggtcaacggtgaaacggaaactggcgttacattgcaccgaatggtgaaacgtgccgatgccggggccattgtggcgcaactgcgcattgccattgcgccagacgatatcgctattacgctgcatcataaattgtgccatgccgcgcgccagctactggaacagacattacccgccattaaacacggtaatattctggaaatcgcccagcgcgaaaacgaagccacctgttttggtcgcagaacgccggatgacagtttccttgaatggcataaaccggcatccgtactgcacaacatggtacgtgccgttgccgatccgtggccgggtgccttcagctatgttggcaatcagaaattcaccgtctggtcgtcgcgtgttcatcctcatgccagcaaagcacagccggggagcgtgatttctgttgcgccactgctgattgcctgtggcgatggcgcgctggaaatcgtcaccggacaggcgggcgacggcattactatgcagggctcgcaattagcgcagacgctgggcctggtgcaaggttcacgcttgaatagccagcctgcctgcaccgcccgacgccgtacccgggtactcatcctcggggtgaatggctttattggcaaccatctgacagaacgcctgctgcgcgaagatcattatgaagtttacggtctggatattggcagcgatgcgataagccgttttctgaatcatccgcattttcactttgttgaaggcgatatcagtattcattccgaatggattgagtatcatgtcaaaaaatgtgatgtcgtcttgccgctggtggcgatagccacgccgattgaatatacccgcaacccgctgcgcgtatttgaactcgattttgaagagaatctgcgcattatccgctactgcgtgaagtaccgtaagcgaatcatcttcccgtcaacttcagaagtttatgggatgtgtagcgataaatacttcgatgaggaccattctaatttaatcgtcggcccggtgaataaaccacgctggatttattcggtatcaaaacaattacttgatcgggtgatctgggcctatggcgaaaaagagggtttacagttcaccctcttccgcccgtttaactggatgggaccacgactggataaccttaatgcagcgcgaattggcagctcccgcgctattacgcaactcattctcaatctggtagaaggttcaccgattaagctgattgatggcggaaaacaaaaacgctgctttactgatattcgcgatggtatcgaggcgttataccgcattatcgaaaatgcgggaaatcgctgcgacggtgaaattatcaacattggcaatcctgagaacgaagcgagcattgaggaactgggcgagatgctgctggcgagcttcgaaaaacatccgctgcgccatcatttcccaccgtttgcgggctttcgcgttgtcgaaagtagcagctactacggcaaaggatatcaggacgtagagcatcgtaaaccgagcatccgcaatgcccaccgctgcctggactgggagccgaaaattgatatgcaggaaaccatcgacgaaacgctggatttcttcctgcgcaccgttgatcttacggataaaccatcatgaccaaagtaggcttacgcattgatgtcgatacctttcgtggcacccgtgaaggcgtgccgcgtctgctggaaatcttgagtaagcataatattcaggccagcatttttttcagcgtcggcccggacaatatgggccgccatctctggcgactggtgaagccacagtttttgtggaagatgctgcgctcaaacgcggcatcgctttatggctgggatattttactggcaggtacggcctggccaggtaaagagattggtcatgccaatgccgatatcattcgtgaagcggctaaacatcacgaagtcggcctgcacgcctgggatcaccatgcctggcaagcccgtagcggtaactgggatcggcaaacaatgatcgacgatattgcacgcggtcttcgcactctggaagagattatcggtcaaccggtaacctgttctgccgctgcgggctggcgtgccgaccagaaggtgatcgaagcaaaagaagcgttccatttgcgctacaacagcgattgtcgtggggccatgccgttccgtccattgctcgaatcaggaaaccctggcactgcgcaaattccggtgaccttacccacctgggatgaagtgattggtcgggatgtgaaagcagaagattttaacggttggttactcaaccgcatcctgcgagataaaggcacgccggtttataccattcatgcagaagttgaaggctgcgcttatcagcataattttgtggatctcctcaaacgcgcagctcaggaaggcgtgacattttgccctttaagcgaactgttatcagagacgttgccgctcggacaagttgttcgcggaaatattgccggacgtgaaggctggctgggttgccaacaaattgcgggtagtcgctgatgaaatcggtacgttaccttatcggcctcttcgcgtttattgcctgctattacctgttaccgatcagcacgcgtctgctctggcaacccgatgaaacgcgttatgcggaaatcagtcgagaaatgctggcatccggcgactggattgtgccccatctgttagggctacgttatttcgaaaaacccattgccggatactggattaacagcattgggcaatggctatttggcgcgaataactttggtgtgcgggcaggcgttatctttgcgaccctgttaactgccgcgctggtgacctggtttactctgcgcttatggcgcgataaacgtctggctctactcgccacagtaatttatctctcattgtttattgtctatgccatcggcacttatgccgtgctcgatccgtttattgcattctggctggtggcgggaatgtgcagcttctggctggcaatgcaggcacagacgtggaaaggcaaaagcgcaggatttttactgctgggaatcacctgcggcatgggggtgatgaccaaaggttttctcgcccttgccgtgccggtattaagcgtgctgccatgggtagcgacgcaaaaacgctggaaagatctctttatttacggctggctggcggttatcagttgcgtactgacggttctcccttggggactggcgatagcgcagcgggagcctaacttctggcactattttttctgggttgagcatattcaacgctttgcactggatgatgcccaacatagagctccgttctggtactacgtgccggtcatcattgccggtagcctgccgtggctgggattactccccggtgcactgtacacaggctggaaaaaccgcaagcattccgcaaccgtctatttgttgagctggacgataatgccgctgctgtttttctccgtcgctaaaggtaaattgcccacctatattctttcctgctttgcatctctggcaatgctgatggcgcattacgctttgctggcagcaaaaaataatcctctggcgctgcggattaatggctggattaacatcgcttttggcgtcactggcattattgccacatttgtggtctccccgtggggaccaatgaacacgccggtgtggcaaaccttcgagagctataaagtcttttgtgcctggtcgattttttcgctatgggcatttttcggctggtacaccttaacaaacgtcgaaaagacctggccttttgccgcgctttgcccgctggggctggcgttgctggtaggattttcaattcctgacagagttatggaaggaaaacatccgcaattttttgtcgagatgacacaagaatcacttcagccaagccgctatattcttactgatagcgtcggtgttgccgcaggtctggcatggagcctgcaacgcgatgacatcatcatgtatcgccagacaggtgagttgaaatacggccttaattatccggatgcgaaagggagatttgtcagcggtgatgagttcgcaaactggcttaatcaacatcgtcaggaggggattattactctcgtgctttcggttgaccgcgatgaagatatcaacagtctcgccattccgcccgcagatgccatcgatcgtcaggagcgtctggtgctgattcagtatcgtcccaaatgatctggctaacattagtctttgccagcttgcttagcgttgccgggcagttgtgtcagaaacaggcaacctgctttgtggcgataaacaaacggcgcaaacatatcgtgctgtggctgggactggcgctggcttgtcttggtcttgccatggtgctctggctgctggtcttgcagaacgtaccggtaggcattgcttacccgatgttaagtctgaattttgtctgggtgacgctggctgcagtaaaactgtggcacgaaccggtatcgccgcgtcactggtgtggggtggcgttcattattggcggcattgtgatcctcgggagtacggtgtaatgggcctgatgtggggattattcagcgtcattattgcctcagttgcgcaattaagcctgggttttgcggcgagtcatctgccgccgatgacgcacttatgggattttatcgcggctctgttagcttttggcctggatgcccggatactgttactcgggctgctgggttatctgctttccgttttttgttggtataaaacgcttcataaacttgcgctaagcaaagcctatgccttgctcagtatgagttatgtgctggtatggattgcttcaatggtacttcccggctgggaagggactttttcgctgaaagcactactgggagtagcctgtattatgagcgggttgatgctgattttcctgcccacgacaaaacaacgttactgagttttccctgccactttacactgccgttcccactcatcggggctataactgcttgccgagaggactttcaccgtatgcagcttttcacgattaatacaataaagcgcattctgcaaaggcgagagtaaatcccccactttcacggcgaagtcactcttcacttcggcgatcatttttatcgcgccgccagcatcgcagagcataagtacatgtctgttatcttgtttattgcagcacgattttttgaccagccattccattgcattatcctgtttgctaagagttttcacatcaatttacagattaacagataaactctttatcaacggcaatggaatggcagaaatgagaagtgaaacggagggttaattattgctgacgttgcacccactcttttagcgcctgacgtgaaattttaataccgccgtttttcagctccggcggcagagttagccagcgcaccggttgttgaaaacgggccagcttatctttcacccattcactaagatcaacgctctcgtggtcatactccatcaccgccaccggtcgatgaccaaactccttgtcggcaacggggacgataaacacctgcaaaaccgcaggatgtgcagcaattacgcgctcgacttcttccggctgaataccctctccgccactgaagaatagattgtctaaacgtccgacaatggtcagcttgccattatgcatctcaccgcgatcgcgcgtagcgtaccagccttcgtcattaaccagtgaaaccagttgcccgttacgccagtaaccttctgccatactggcagcccgcagccacacttcattattaacgattttcacttcccgacccggcagcggcgaaccaacgtctgccaggccgtcggcttctttcgcacacaccgtggaggcaaactcggtcagaccatagccgcaaaagcaacgaatcccctgctcgcgcgcctgttccgtcaactcgaccgggatagccgcgccgccaagtaacaccgctttcagggaaacggaactacggttaaccagcaaacgccagagttgtgttggcaccagtgaagcgtgagtacagcctgccagcatttgctccaatggctgtttatcacgtaccgtcatccgcgcaccagcgtataaccagcgccacataattccctgaccggagacgtgaaacagcggtaaagagagcaaccaatcatcgtgatcgccaaacggaatcagcgataacacaccttgcgcactggcaagatgggcctgataagtatggacagcggctttcggcaaaccggtagaacccgaggtcaacgtcattgagcacagacgcgtcggctgccacgtagcggcatgtgcgccttcaaccagctgaatgtgcagcgacgttaatgccggaaacgtgttttccccatccggcaccagagcaaattgcagcgtcagattgggcagcaattcttcaagcaacggttgcggcagctgagggttcacgggcaacacccgcgccccgcattgcagtaacgccagccaggcgagcagcgtttgcggcgtattccacgcccgcaacatcacgccgctgccctcaaccaccccctgcaccgcaaatccggaggctaattcatcgacgcgagcacaaagctcgcgccagttgagttgctcgtcattaagacgtaaggcgatggtttctccccgcacttgccgccagtgacgccacggccagtcagagaagatcataacaaccgctccagtgcatcaacttccacgacaggcagcgtgctacccggccagcgacgtacctgctgcgcctgcatcagatccagcgtgtccagccctggaatggtgtccggcgttaaccaggcggcaatccgcgccagttgcgttaagcctaagctcgattcaatggaagaactgatcaccgccgtcagccccagcgcgtgcgccgcctgtacctgctcgcgtactttttccagactgcccgtgagcgtgggtttgataactaccgcgcgcacgccctcttcagccacaaaggcaaaatccggctcgcgcaggctttcatcccaggcaatggcaatgccggtttcacgggcaaacgctcgcgaatcatcgcgggttttgcacggctcttcgagaaacgcgatgcggtcgcgataatccgggttaacgtatttggcaaactgctgacctttcagcggtgtccaggcgcgatttgcgtcaagacgcaaatgcagatccggaattgcctccagcaacagattcaccaccatgccgtcgcgcaccgcttcgtacaatcccactttgaccttcgccactttctcgcctggcatatctgcaagtttgaggatcagatcgtccggatcgccattacacagcggtgccgcacggtagttggctgcttgcggcaacgtatctgtcagttctgccaatgcacagcttacgccaaaggccacggaaggcatctgcggtagctcgcaatcgcctgccagccagttatttacccaggcaagcagcacactttgcgcctcttcccaggtttcctgactgaagcccggcagtggggagatctccccccacccttcgcgctcgccttcacgcaggcaaacatacagcccgtcgcgggtttttaaccgcctgtcgcgcagaaccacccccgcgtccatggggatctgccagcggtatacctgcgcgctacgcattacggattccgtttgaatttgctgaagtcaggctgacgtttctggttgaaggcgttgcgaccttcctgaccttcttccgtcatgtagaacagcatggtggcgttgcccgccagctcctgcagccccgcctgcccgtcacagtcggcgttcagtgcagctttcaggcagcgcagcgccatcgggctgttttgcagcatttcgcggcaccaacggacggtttctttttccagatccgccagcggtaccacggtgttcacaaggcccatatccagcgcctgttttgcgtcgtactgacggcacaggaaccagatttcacgcgcttttttctgcccgacgatgcgagccatgtaggaagcgccccagccgccgtcgaaggaaccgactttcgggccagtctgaccgaagatggcattatctgccgcgatagtcaggtcgcacatcatgtgcagaacgtgaccgccgccgatggagtagccagccaccatcgcgacaaccggtttcggacaggtacggatctgacgctggaagtccagcacattcaggtgatgtacgccggaatcatctttatagccgccgtaatcaccacgcactttctggtcaccaccggagcagaacgctttatcgcctgcaccagtcagaatgatcacgccgatgttgtcgtcataacgcgcatctgccagcgcctggatcatctcttttaccgtcagaggacggaaggcattgcgcacctgcggacgattaatggtgatttttgcgataccgtcggtggatttttcataacgaatgtcctcgaaaccttcggagcagtcgtgccattcaaccggtgcgtaaagcattgcttcatcaggataaatcatattgtgtcctttagtcagaaacgcaagatctgcgccagacttgcgattacgccagcgggattttcccgatgcgcgttatgtccggcgcgaggaatgacatggcagtcggcagccagttccgccgccagggcgcggaatttgctgtcacgttcaccacataaataataaaacgcaaatgtgcgggcgctaaggttagcacgtaaatcaggctggacggcgagagaagtcgcctccagcatggcggcaagcgttgcgccattattgttgctgcgcagcgccaccagctcccggcgttgatcgtcattgagtgaggcaaaaacaggctgttgataccagtcggcaaataccgccgttaacggttctgtgagaaaacgctgcacccattggcgatcggaacgctgacgttccgcacgttgttcagcattttgcagccccggatgcccgccttcgacaataaccccacaaagccccgccagcccctggcaagccgccatcatcgccacccgtccaccaagcgagtaccccaccagccagaagtcaaggatgttgtaactaaccaaggttttacgcagtaagtcggtgacatcatcaaatccatcgacgctaatcgccgccgaaccaccgtgacctgggagatcaacatacaaccgtgagtagtcggcaaacgcctcgcccacttcttgccattcgtggcaatcgccggaaaaaccgtgcaaaaacaccagccagggtaaacctggttttccgtgttttgcctgcgcgtgcaggatcataaatggcttacctgcgccagaagttgctggagcgtttgcgcaccatcggtgtcgttaaccaccatttcaatcaccgtggtggttggcgtgcgccaggcgtcggcaaatgccgtttcaagttcctgccagttttgcggacgatgatatttcagctcgaacatcgcggcggcgtgctcaaaatggacgttttgcggcatcagatagaaacgctcacgctcgctttgcggcgttggcaacagcgagaaaatttgcccgccgttgttgttcaccacaattaataccagcggcgcagaaacctgacgcaataacgccagcgcgttgagatcgtaaagtgcggagagatcgcccacaatcgccagcgtcggtttgccgcttgcccgctgaacgccggcggcggtcgaaagcagcccgtcgataccgctggccccacggttgctgtacaccgggtaacctgccggaagttgcgaaagcgcatcaatcagacgtaccaccaggctgttaccaacaaacaattgcccctgttcaggcagatagtcgcagatgcgatgcgccagttgcgcttcgccaaacgcatcacggcgggcaataaccgcctgcattgcctgttccgccaggcgcgggatttcaacgcaccagggctggcgtttttctgccggatgcagctccagccagtcggcaatattggcaattaagcgacgtccgcgatggtgtgccggatcaagtcgcccttcaatgtcatcaacaatccagtactcttctggttcacagcttgcctgccattgcaggagccgtttccccgtcaggctgcttcccagttgcaccacaatttgcgcctgctgcagctcgctggtcgctttggcattgcctaaccaaagatcggcacacggcagcggctgcccggtttgtgacagcacatcgccaatcagcggccagccaagagtttgcgcccacagggcaacttttttgccctcttccgcactcatgcgcccggcaaccaccacgccgcgcttttgtcgccagaagaaccagtcgcgctgtttttcactttccagacgaggcgcttcacgcagccacggtttgtcgtcctgccaccagtcacccagacgctgttgccagctaagcccggtatcgtccatttcgccatacagcggttcagcaaacgggcagttgatatggactccccccgcatgaagcgtaccgagagcgtggtcgatggtagaaaccagccaacgtgcggggatatcctgggtcgggcgcggcaatgaaatactgtgcgtggggtgagaggcgaacattcccggctggcgaattgcctgattcgcgccgcagtcaattagctccggcgggcgatcggcggttaagagaatcagtttttctccggttaacccggcttcaatcagtgccggatagagatttgccaccgccgtgccggaggtcacaatcaccgccaccggctgcttgctgactttcgccagccccagcgccagatgccccaacccacgctcatcgaaatgggtgtggtgaatgaatgcggaattctccgccgccgctaacgttaacggtgtagaacgcgagcctggggcgatacagatgtgtctgacgccgtgacgcgttaatgcttccagaatgaccgccgcccagcgtcggttaaatgcgcttactgacatgagtttgtccggtatcaatattgcggctaagtataaggagctacaaaaatagattattgatatgaatcggtaatgatgcgactcattactattccatttgtaataaagtacgcagccctgccgctttgttgtcgatttcctgccactcttgctcggggtcggaaccacggacaatgcccgcgccagcatataatcgcacgacattgccgctaatttttgctgagcgcagggaaacgcagaattcgctttgttgtaatgagagatagcccgcagaaccggcgtaccattctcgggtgaacggttcgtgacgggcgataaactgtcgcgccagatcgcgcggtaagccagcaactgctgccgttggctgcaactgatgtaaacagatcacatcatccgctttgttgagtgaagtccagatacagcggcgaagatgctgcactttacgcagacgcagtacctgcggcggtaaaacatccagcgtctgggtatcggcctgtaatcgttgacagatatcttccaccaccagcatgttctcgcgctggtttttatcatccgccatcagccactctcctaactgctgcgcctgcttatcatcaggattatttgctactgttcccgccagcgcttcagtacgcagcgctttgtcacgccgccgccataaccgttccggtgaagagccaagaaaagcattttcgccatcaaaggccatgtaaaaatggtagcaattcagattcagtcgacgactggcagccatcatcgccgccgcgttgaccggacttgcgaaatgcaggtcagttgcccgagcgagcaccactttgtcgagctcaccttcggcgatggttttcgttgccagttcgattaattgcgtccagcccgttttgtccggccagtgttgttctcgcgtggtggttaaatgtaacccaggcaagggcttgatactcaccagtgtggcgataaattcttttgcctgaatcgcatcgtgctgaagggagctttcgctgaatagcgtcagccgcagcgtggctttaccgccacagcgtcgccattccaggcggggtaaaagtaaattgccctgcgacgggtcaaaagcattcagcccccaaatgcgtaagtcggcgtgttccgggtgctggcgaagaaaacgttgtgcctggtccaacgacgtaaaacgggtaatcgcgcccaggacgacagcttcttcatcaccattacgttgttgccagtagaattgcgggtatgtttgctgactggccagccagctcaaggcatcaaaagcgtctttgagagggaaaggaatatcgataacccgaatgccgggtgtcgccggaatctcttgcgacaaatggcgcagtagattttccagcgccgtagtaagtgattgcacgcggacctctccctgttaaaagcctcacattatacggggtactacaaaaaaaatgcagtaccccggtgtagggaggttttaacggcgtgccagcaacagtcctagtaccagcccaacggccgcgcccacaccaattccttgccagggtttttcgtggacgtagtcatcagcacgataaactgcctgcttcgcccgatagtaataactgtctgaagcctggctaacccgttttttcacatcatccagcgctttttctgcacgcgctttcagctcaacatatttctgatcggcgggatcgccagaggagcggagcacctcttccagtgtttcactaagcagcgtcaggtcgtcatcgatacgtgtatcaccaaactgattagacattctcgttctccatttgcgtaaaacctgtcactaactatagacaagggttgttgattacgcctgaattacctcgcgtgccatcccaatgtgtgggataccatcttcttcatagacctccgtcacagggataaaaccgaaactctggtagaagttttgcagatgcgcctgcgccccgaggtaaacaggcttatcaggccagtgatgcgtacatgtttcgagtgttttactcatcagctgctgccccactttttcgccacgcaacgcttcactgacaatcacccgacctataacgaccggctcaagatcatcatcacttttcagaatcctcgcatacgccaccagttcatcatttttccaaccgagaatatggcgattatcccccgtcaaatcatcaccatcgatatcctgataagggcaattctgctcgacaacaaacaccgcgcaacgcagttgtaataaggcataaagctgggaaaccgataattcagagtgatgcagatcttgccattcaatcataatgctctccttttagatgtatgccttatactagccggaatattttttgaaacgtgatgaactcatggaattaatttttttaggtacttcagccggtgtgccaacccgcacgcgcaatgtcacggcaatattgcttaacctgcaacatccgacccagagcggactttggttgtttgactgcggtgaaggcacccagcatcagctactgcataccgcctttaaccctggaaaactggacaagatttttatcagtcaccttcatggcgatcatctttttggtttacccggcttgctgtgcagtcgttctatgtcaggcattatccaacccttaacgatttatggtccgcaaggtatccgtgaatttgtggaaaccgcgctgcggattagcggctcatggaccgattatccgctggaaattgtcgaaattggcgctggcgaaattctcgatgatggcctgcgcaaagtaaccgcttatccgctggaacacccactggaatgttatggctatcgtattgaagaacatgataaaccgggtgcattaaatgcccaggcattaaaagctgctggcgtgccgcctggcccactgtttcaggaattaaaagcgggcaaaacaatcacgctggaagatggaaggcagattaacggcgcagattacttagctgctccagtgccaggtaaagcgctcgctattttcggcgataccggcccctgcgatgccgcacttgacctggctaaaggtgtcgatgtcatggtgcacgaagcgacgctggatataaccatggaagccaaagccaatagtcgcggccatagctctacacgccaggctgcgacactagcccgtgaggctggagtcggcaagctaatcattacccacgtcagctcgcgctatgatgacaaaggttgtcagcacctgttacgtgaatgcaggtcaattttcccggcgactgaactggcgaatgatttcaccgtgtttaacgtttaactctgcttattattaaaaacagggcgaaacttgccctgttatcgcaacccgcgctacatatatccacccacacaggcatattgagcgatttttgatatttattcatctccttacgcactatattcagagcaataagttgcctcttttcatcttgattcagcacaacctttgcaactaaaaggagcccatgatggttacagttgtcagcaattattgtcaattatctcaaacgcaactcagtcagacatttgcagaaaaatttactgtgaccgaggaattactgcagtctttaaaaaaaacagcgttatccggagatgaagaaagcattgagttactgcataatattgcgttaggttatgataaatttgggaaagaagctgaagatattctttaccatattgttagaaccccaacaaatgagaccctatcgattatccgacttatcaaaaatgcttgtttaaaattatataatctggcacatatcgcaaccaactcccccctcaaatcacatgattcagatgatctcctgttcaaaaaactattctccccttcgaaattaatgacaattatcggtgatgaaattcctcttatatctgaaaaacagtcgctttcaaaggtgcttttaaatgatgagaataatgaactgagtgatggtacaaacttctgggataaaaatcgtcaattaaccacagatgaaatagcttgctatcttcagaagatcgccgctaatgcaaaaaatactcaagtcaattatcctactggtctctacgtcccctactccaccagaactcacctggaagacgctctcaatgaaaatattaagagcgatccatcatggccgaatgaagtccagttattccccataaatactggcggacactggatattagtttcgctacagaaaatagtaaataaaaaaaataataaactacaaataaaatgcgtcatattcaactcattgcgtgcactaggctatgataaagaaaattcacttaagcgtgtcattaatagttttaattctgaactcatgggagaaatgtcgaataataatataaaagttcatttaaatgaaccagagataatatttttacatgccgatcttcagcaatacttaagccaaagttgcggtgcatttgtgtgcatggcagcccaggaagtgattgaacaaagggaaagcaattctgacagcgccccctatacgttattaaaaaaccatgctgacagatttaaaaaatattcagcagaagagcagtacgaaattgattttcaacatcgactggcaaacagaaattgttatttagataaatatggcgatgcaaatatcaatcattattatagaaacttagaaataaaacactcacaacccaaaaatagagcatccggcaaaagagtgagttaacatcattgttaattaattcgaccagtcagcaaatatgctgactggtcgaacatagtttgctaaacagtcatcactgactgatgtcagtcacaccatccgccagttcaatcaggcgaataaattccgccctgtaaccctgtggatcttccccttttgcctgctgagcccactgtttgatctgctgccaggaggtattgttcaggtattcagaaccgcgtaacttttgcccatatgcagctactgctgcgcgaaaacgcatatcttcagagggcgcgtttattgttggccccagcgggaattcaactaactgactttcttttccctgcgggtatttccagcgaatttttaaccaggccagttctttcgttttgtccgatttcgctaatttgttatccggggcatagcgtaacttatcaattgatgctttttgcccgttcagcgttaattcgaataacaacgttatatgtttgcctgcgcctatatcccctgcatcaacgttgtcgttattaaaatgttccacccgaagttggcgcttttcataaccaatctgacggtattccgttacccacgcggggttaaactcaatttgcgctttgacatcttttgctacggtaatcaacatctgccgcatttcactattcaatactttctgcgcttcagagagggtatcaatgtagctgtagttgccgttaccaacatcggcaattcgcaccatcattgcctcgttgtaattgctattccccacgccaaacgtcgacagagtaacaccagactcccgctgttttttgaccattgattcaatcgattttggatcgtcaatgccaacgttaaagtcaccgtcagtggctaataaaatgcgattgatgccgcccttaataaaccccttcgtcgcctgctgataagccagttccagcccggcaccgccattggtactgccttcggcatccagcgaatcaattgcggcattaatttccgccttatgactcccggagatagaaggcaatgcaatacgggagtcgccagcgtaggtcacgatggcaatgttatcctgctcacgaagttctttgaccaataatttcaacgaagactggataagtggcaaacgttcatcagaaatcattgaaccagaagtgtcgataagaaagaccagattagaagctggtaactcttcacttttgcgatctttcgccaggatatcaactttcagcaatgttcgctgttcattccatggtgcaggtgccaattcgtagcgcatagcgaaaggtattggcttagaggccggaatagattgtttgtctttgatatcccaatcagacgggaaataattgactatctcctccacccgcacagcgtctggcggaggtaacagcccttgattgaggaaacgccttacattcgcataactgccagtgtcaacgtcaagactaaacgtcgccaacggattttgcgctacctgcttaaccggattatcatcgaactgctggtagcgagcggttcctggatttgcgatatgtgtagcttttgctttagccgctcttgcaaatgttggcgcttcctgcaatcgcccctgtaaagcctgtttgtctgaatattgttgcacttcttgctgggccaaggctttcgcggcggcggcgctttgctcagcctcttttattgcagcttgctgcgcggcaagcacttgctgctctgtgggagtactgggttgttgttgctgactttccttattctcaggttgcggcccacatcctgacaaaatcaaactactcataagcaacatgattatatttttatttcgcatataaaatccttttaaataaactcaggcaccagacataaaatatactctttgtataatcctgctaatcttaataaaatacaatatcgaaacccatagcaaataatgattcaacaacgcaacccattaataatttgcatatgaaaaaaataatctttgcttttattatattatttgtgtttttactccctatgattattttttaccaaccctgggtcaatgcattaccgtcaacgccccgacacgcaagtcctgagcaattagaaaaaacagttcgttatcttacacaaactgtgcatccacgtagtgccgacaatattgataatctgaataggtccgcagaatatataaaagaggtctttgtcagtagcggtgccagagttacctcgcaggacgtccccattacgggtggcccctacaaaaacattgttgctgattatggtcctgccgatggaccgctgattattattggtgcgcattatgactctgccagcagttatgaaaacgatcaattgacctatacgccgggcgcggatgataacgccagcggtgtggcaggattactcgaactggcacgtttgttacatcagcaagtaccgaaaacaggcgtgcagctggtcgcctatgcgtcggaagaaccgcccttctttcgtagcgatgaaatggggagcgcggtgcatgcagcttcgcttgagcgtccagtgaaattaatgatagcactggagatgattggctattacgactctgcgcctggaagccagaattacccttacccggcaatgtcctggctttatcccgatcggggagactttattgccgtggtcggcagaatacaggatatcaacgccgttcgtcaggtaaaagcggcattgttgtcatctcaggatttatctgtttattctatgaataccccagggtttattcccggtattgatttctctgaccacctgaattattggcaacacgatattcccgccataatgattactgacaccgctttttatcgtaataaacaataccacttgcccggtgataccgcagacagattgaattatcagaaaatggctcaggtagtggatggtgttataactttgttatacaacagtaaataataaaaatttctcgaggcgggtccagaaaaagcgacatgcacattttattttccctcatctgttttaagatgcgaaacatgaaattcaacggaggaaaaataaatgggaatgattggctattttgcagaaattgactcagaaaagattaaccaactgcttgagtctactgaaaaacctttgatggataatatacatgacacgctttcaggattacgccgactggatattgataaacgctgggattttttacactttgggctgacaggcacctctgcttttgatcccgcgaagaatgatccgctgagtcgtgccgtgcttggtgaacacagcctcgaagatggcatagatggcttccttggattgacctggaatcaggagttagccgcgacaatcgaccgactggaatcactggatcgaaatgaactgcgtaaacagttttccattaagcgactcaatgaaatggagatttatccgggagtgaccttttcagaagagttagaggggcaactctttgcctcgatcatgcttgatatggaaaagctgattagcgcgtatcgacgtatgctgcgacaagggaatcatgcgctgacggttattgttgggtgatatagcttgatgcctgggggagaaagacccattagttaagatttacgccaggatcatcttgaaaaaatctttaaccatggtccggtttttatccccttgtataaatattactaaatgcttgcttagtcgcattgttaaatgcaataccgtatattcggtatgtaacagcgatatcctctgtgctggcaacgatctgtcatgcttgatgaaaacggaattgaacctgtcattaccaggtagataaaaagcctgttcaattttgggattattttttataactcgtgtctgttatggcgacacgggaaaacatcaatattgtccttcacaaattgcagtaatatagaatcaacctctcttgcaagttggtcacaatgtattataagcattttgaatatgtcatcctctgtaatctcgtgaaaattttcggccttgtcttttagctcatcatatcggattcttgcagtaaccattttttgggcgagttctaataaccccaaagcttgcaattgctggtgagtatgatcactttcaaaaaatatcccacactccattccttcccaaccaacatattcatgccattcataaaccagcataaatgtttgtaaaactggcggtaataattggatatctgcaaaaccaaaccaaaacttacgcttgagatcccactcatattcaatcgccaatgctatattgtttaaggcatctccggcatccttatttttacgcaaaatcaattccgtcagtgtatagcgttgttcatcaatacgccgaagagcttctgcaatatcatagtttgtagccaacaaaacattctctgcttcctgatgagtgacgtctgcttttgccgtcaatatattgatttggtcaatatgaaacaacttgatggcttcatcaacatcaccgccagtcctctctaacaaacgtctggcaacctggataccgacaggtacgttcttccgaagtttacgaatttcacttaaccattccatgtcaaacccctttaaatatttatgatattaaatataacaacgtctggataacgacccggcctgactgaatatctcacgttttcctgcttaacattcatgttatgatgctcttgaaactaataatacgtatggaattgtcactatttatctgctaatgaattcaaacaatgtcattcgtttgatgaatatattatttcagggaataattatgacacctttagaacgcattacccaacttgttaatatcaatggtgatgttaataatcctgatactcctcgtccattgttatctcttgaggatttttttattgacaataatatccatggttcaatatgttgcaatgtgattccagaacaatctccgcaagctatctatcaccattttctgaaaatacgtgagcgtaacaatgttagtgatgttttggtagaaattacgatgttcgatgacccagactggccctttagtgaaagtattttagttatcaccactgcttcaccagaagaagttcagagctggtttgtagaagaaattgcccctgatgagtgctgggaaggatggtcagaagatacggagcatggatgggttgaagtccctgtgggtatgcatccggttacttgttggtgggattaaaacatttatataaacagataagcggatgtttacataaatttttatgtgaaggaacatgatgaaacttattcctcgcagtagtgatatttcacctggcattgatggaatttgcccggggccttttcctccgaacggatttaccgtacttacagatgcagcatatggtaacggagactgtttcggtttgtactggcctattggtcaggagcataaactacctatagtgtgcgaaacgtaccatgacgaatggcgaatcgtacctgccttttccagcattaagaagttcgaagaatggctggaagtgaatgatgatgatccccatgaaaatggcatcagcatcgaagatcaagactttgcagcaaatctcttccgtgttgctcggaaatgtctttcaacgggaaggcttgatgacgcactgccactgttacagcgagcaacagaacaattgcctgaagtcagcgaatattggttagcactggcaatccagtatcgccgatgtaaaaaaacagaagctgcagcacaggctgcgcttaatgcttatcttggcaattgggcatttggtgttcctgacaataaagtcattcatttgctgtcacaggccgcagatgtcccgaatttccaggatgatcctgtgattcagtgcattaaagaacaaggattagatcttagctttggaggaacaaaggaaaataataattaccccttgatgcagatgtgtgttgatacttattttgcgcagagaaaaccgcttcaggcattaaccctgttacataattatgcctggataatgtccagtgaaacgactgcatttcaggaacgctatgattttaatatcgatgaatggcgggcaaaattcaggcagttatgtttagagtattttggcgatagtcgtacacagttcacttaacgctctgcgtctatctactatcccttctttttcagaaaaaccgccgagcatgtcggcggctttctgacttacaaagtaacagattacatcagcggcattgccaaacgcacaatgctaatcagcggttgtggccatacacccagcaccagtaccaacagtgcagagatcagcacaacgataccgcccgcgctgtactgccagtttgatggtgcatcgcgacccggttgttccggggcgtgaagatacaggctcaccgccacgcgcaggtagtagtagaggccgattgccgaaccgacaaccacggcacccaccagccaccacaagtgtgcctggacaccgaccgccagcacgtagaacttaccgataaagcccagcgtcatcgggataccggccagagacagcatcatcaccgtcatcactgccgcgaggatcggacgatgccagaacagaccgcggtaagagaacagggaatcagcatccgggccacgatacgggctggacatcaggctgaccacgccgaacgcgccgaggctgctgaacagataaccggccaggtaaacccctaccgcttccatcgacatctcgccggtttgcagcgcaatcagcgctaccagcagatagccgaggtgagagatagatgagtaaccgagcagacgtttgatattggtctggctcagcgccatcaggttaccgaagatgatggaggcaaaggcgataatcgccagcaccacgcgaatcgcttcgctgtcacccaccggtgcgtagaggaacagacgcatcaccacaccgaagatagcgattttgctcgccgtcgccaggaaagtggaaaccggcgcaggcgcgccctggtatacgtctggcgtccacaggtggaacggcaccagagagagtttgaagccgaggccaacaatcatcaggccgaaacctgccagcaacagcggctcgttgagcataccgtcgccaaggtttttacccaacgcgacaaacgacaggtcgccagactgcgcatacaccagcgccataccaaacagcaggaaagaagacgctgcggcagaaaggatggtgtatttgatactggcttccagtgaacgtttctggcggaaagcgtaaccgaccaggccaaacagcggcaaagagatcagttcgataccgaggaacagagacgccagatggttggcattcgccagcaggatcccgcccagcgcggcaattaacaccaacaggtagaactcatccttgttgtcgttatagccttcaagccacgggtaggcgaaagtacaggtggcgaggctcgccaacaataccagcccggtgtaaagcatggcgaaaccatcaacgcgcatcagcggcgtaacgtccatagcgcccgcctggccaacaaaccagagcgaaaccagcgccgcgttaagcccaataaccgagagcgtagcgttgaggaaatgattgcgtcgccacgcaatggagagcatcacaaccaccaccgtcaagccgacgatcagcaacggtagcagtgcgatcaggttttgtggagttattgtcatggcgatttacggccttgtagtagtaacggaattaacaaaccactgctggatattgccaatcgcggagtgcgaggtatccagaatcggctgcggatagaagcccagcagtaccagcagcaccaccagcaacaggatcataaacagctcacgcagcgacatccctggcagttcctggctggcaatctggcttttcgctttaccgaagtaagcgcgatgtaacatcgccagcgaataaacagatgcaaagaccagcccaaaggtagagataacggtaatcaccggtacaacctggaagctgccgaacagaatcataaattcgccgacgaagttaccggtgccaggcatcccaagcgttgccaccgcaaagaacagcgacagtgctggcagccatttcatcttgctccacagaccgcccatcatgcgcatgtcgcgggtatggatacgttcataaagctgaccacaaagaataaacagacccgccgccgacaaaccgtgcgcaatcatctggattaccgcgccctggtaggccaactggctgccggtgtagatagcaatcagcacgaagcccatgtgggaaaccgaggtgtaggcgatcagacgtttgatatcggtctgggcgaaggccatccacgcaccgtagaagatgccgataacacccagccacatagcaattggcgcgaactctgccgacgcgttcgggaacagcggcagggagaaacgcagcaaaccgtaagcggcagttttcagcaagatccccgcgaggtcaacggaaccggcggtcggagcctgggagtgcgcatccggcagccagccatgcagcggaaccaccggcattttgactgcgaaggcgatgaagaagcccagcattaacaggtattccacaccactggacattggcgtattcagcagctcttcatagttgaaggtccagacgccggtcgcattgtagtgaacaaaaaccagcgccaggatggcaatcaacatcaccaggccactcgcctgggtgtaaatgaagaacttggttgccgccgtgatacgcgttttaccgtcagaggctttatgcccccacagtgcgatcaggaagtacatcggcaccagcatcatttcccagaagaagaagaacaggaacatgtcgatggcaaggaacacgccgataacgccgcccaggatccacatcaggttgaggtggaagaagccctgatatttttcgatctctttccacgaacatagtaccgccagcacaccgagcagaccggtcagcacgaccatcagcagcgacagcccgtcaatggcgagatgaatagagataccaaaacgcgggatccacggcatgtcgaattcagactgccactgcggaattccggcggattgcgtcagtgaataaccgccctgcaaccacagttgcagcgacagcgccagcgtcaatcccatggtgatcagcgcgatccagcgtggcaccttgacgccaaagcgttcggtctgccagcacaggaagccgccaataaagggaattaatattagccagggtagtaacatggcgatctttattccttgtaaaagtcccgtcaggaccggattttcaacgaattctcacgacagaaaattctcttcggactgggggtagtgtcggatgcaccgcgaaggcggcttatccgacctacgttcttatatgcccaggggcaatcccacaatccttaactcaacgcagtaccatcaacagtgccagcaccacgaccgcaccgatgctcatggatgccacataccagcgcagatagccgttctcacttaacagcagacctttacctgcaaagcgggaaaggacagccgggatgttcatcattgagttcagcggatcgcgtttcagcaaccaggcaatacccaggaacggcttgacgaacactttgtcatacagccagtcaaatccccaggcgttgtaccaccaggtgcccagcagacggcccggcgcactgttggcgatggaggtcaccagagtacgtttacccagccacagccaggctgccagcagaatgccgaccaccgcgaccacgccagaggtaatttccagggtcaacatgctgccgtgcgccagttccgtcgtttgcggaagcacgccctgcagcggcggtacaatcagtgcgccaacgaaggtggaaaggatcagcagcacaatcagcggcaggctgtgagttacccctttcacggcgtgagcgtgaatttgttcttttccgtggaagacgatgaaaatcatacggaaggtgtagagcgaggtcataaacgcaccgaccagacctgccaccatcagattgatatgaccattcgccatcgcacccgcgaggatctcatccttactgaagaagcccgcagtgaccagcggtagtgccgacagtgctgcgccgcccaccaggaagcagagataaaccagcggaatagatttacgcagaccgcccatcttgaagatgttctgttcgtgatggcaggccagaatgacggaaccggatgccaggaacagcagcgctttaaagaacgcgtgggtcatcaagtggaaaatcgccgcatcccatgcctgcacgccaagcgcgaggaacatgtagccaatctggctcatggtagagtaagcgagaacacgtttgatgtcggtctgtaccagcgcggcaaaaccggccagcagcagcgtaaccgccccgacaatacccaccagatgcagaacttccggcgtcatcaggaacaggccgtgggtacgggcgatcaggtagacacccgcggttaccatggttgcggcgtggatcagcgcggagacaggcgtcgggcccgccatcgcgtcggcaagccatgtctgcaacggcaactgcgcagatttaccgaccgcaccgcccagcagcatcagcgtcgcccacatcagcatgttattgccgtcagcaaagtgcgctggtgccagttccaccatttcgcggaagttcagggtgcccagttcgttgtaaagaatgaacagtgcgaaagcgaggaacacgtcacccacacgggtcacgacgaacgctttcattgccgctgcgccattcttcggatcggtgtaatagaacccgatcagcagataggagcacaggcccacgccttcccagccgaggtacatcagcagcaggttgtcggcaagcaccagaaccaccatgctggcgatgaacaggttggtgtaagcgaagaagcgagagtagccctcttcaccgcgcatataccaggaggcgtacatgtgaataaggaaacccacaccagtgaccaccgagagcatggtcagcgacaggccgtccagcaccaggttaaaaccgatgttaaagtcgcctaccgacatccacgtccacagcggctggctgtatgtctgctcgccgttagcgaagaaatcaacgccgataaaggcggttaccagcgccgccaggcccacagagcctacgccgacgatcgccgagacgttttcagaccagcgcccacgggagaatgccagcaggacgaagccaatcaatggcaaaataatggttaaggcaagcatgttcatccgcgcatctcacttactgaatcgatgttcaggttctggcgacgacggtgaagttgcagcagcagcgcaaggccgatactcgcttctgccgccgcgaggctgatggcgagaatgtacatcacctgaccgtcggtctggccccagtagcttccggcgaccacgaaggccagcgcggaggcgttaatcatgatttccagaccaatcaacataaacagcagattgcgacggataaccagaccggttaagccaagaacgaataagattgccgcgaggatcagtccatgttgtaaggggatcatgcgtgctcctccgtttttcttttcgcgctgtcgtctttacgattgctcagcacttcacccgcacgctcttcacgaccgacgtggaaggccacaaccagacctgcgagcagcagcatagaagccagttccaccgccagtacgtaaggcccgaacagcgtaatacccactgctttagcactgattggcgtaccgtcgataccctgatcgttaacaccgaggatggcgtaaacaatcaccaccagcatgatggccgacaaaattgccggaccaatccacacctgcggtttcagccactggcgttcctgttcgatttctgaaccgcccaggttgagcatcatcaccacgaacacgaacagcaccataatggcacccgcgtagacgataatttccagcgcaccggcgaagtaagcgcccagtgagaagaacaccccggaaatcgccagcagcgaaataatcaggtacagcagtgcgtgtaccggattggtatgggtgatcactcgcaaggtcgcaagtatggctatcaggccacagatataaaaagcgaactccattgcccctctccttacggtaacaggctcttgacgtcgataggcttggcttcgttctctgcttcgcccttatctttgccgtcgattgccatacctgccatccggtagaagttatattccgggtatttgcccggaccggagatcagcagatcctctttctcgtaaaccagatcctggcgcttgtattcccccatttcgaaatccggggttaactgaatcgccgtggtcggacaggcttcttcgcacagaccacagaaaatgcagcgtgagaagttgatgcggaaaaattccgggtaccagcgaccgtctttggtttctgctttttgcagcgagatacagccgaccgggcaggctaccgcgcagaggttacaggctacgcaacgctcttcgccgtccgggtcgcgggtcagaacgatacgaccacgataacggggcggcagatagaccggctcttccgggtacattcgcgtttcgcgtttggcgaacgcgtgcaggccgatcatccagatactacgaacctgggtgccgaaacctactaacaattcttttaaggtcatggtcttattgccccttattgcgcctgccagagaatgacagccgccgttaccagcaagttgatcagcgtcagcggcaggcagattttccagccgaaggacattacctggtcataacgcggacgcggtaacgacgcacgaatcaaaatgaacatcatcataaagaacgcggttttcagcgcgaaccagatgaatggcggtaacaacgggccttgccagccaccgaagaacagcgtcaccatcaatgcagagatggtcacaatcccgatgtactcacccacgaagaacagaccgaacttcataccggaatattcaatgtggtaaccatccgccagttcctgctcggcttccggctggtcaaacgggtgacggtgacataccgccacgcccgcgatggcaaaggtaataaaaccaaagaattgcgggataacgttccacacatgcgcctggctgttgacgatgtcggtcatgttgaatgaaccggcctgcgccaccacgcccatcaaggaaagcccgaggaacacttcgtagctcagggtctgcgcagaagcacgcatcgcacccagcaacgagtatttgttgttacttgaccagcccgcaaacagcaccgcgtaaaccgccagacctgccatcatcaggaagaacaaaatcccgatgttcaggtcggcaaccacccaacccggactgactggcacaatcgcaaaggccagcagcagcgaggtaaaggcaatcatcggtgccagggtaaagatgacgcgatccgagaatttcgggatccagtcttctttaaagaacattttgatcatgtccgcaaccagctggagcgaaccgccccagccaacacggttaggtccgtaacggttctggaacagacccagcaggcgacgttcgccaaagctcatgaatgccccgcaggtgacaaccaccagcaggatcaccaccgctttgaggatggtcagcaggatctcaatcagttccggtgatatccaactcattgttgtgcctccttgagatcctcaagatgcgcgccagccagcaccggagcaatgccggacatacccatcggcaagcccacctgccctgccgtcagtccttcggcgatttcaaccggcagcgtgaccgtgttgccatcgtaactaaaggagacgcgtgtacctgcgttcacacccaacttcgcggcatccgctgggttgagtttgatgtacggctgcggcatacggctctggaagaccggagcacgctgtgacaattcatcgctgccaaacaggtggtaatacggcgcgatacgccatttcccgtcctgcggctggaagcgtgccggtacgctggtgaagtaatccagaccattttcgctggtttcaaacagacgcacgcccggatcgccaaagcgcagtttgccgcccacttcgtcctggaatttgttccacgcctgcggggagttccagcccggcgcccaggcaaacggcacttgcgaacggtgcgcagtcggctggttgttaccttccatcgagaaggtgaacatggtgtcaatatcctgcggctgacgcggctcatgaacgctgatattggcgcgcatggcggtacgaccgctgtaacggtgcggttcacgggccagtttctgcccacgaatacggaatgtcgcatccggcgcagcatctttgatacctgccagttccgggattttcgccacaacagcgtcaatcacatggtcgagctgcgtccagtccacttcacggctcagcagggtgctgtgcagcgagtgtaaccagcgccagctttccagcatgacagttttgctgtcgtaataagcaggatcgtaaacctggaagaaacgttgggcgcggccttcgttgttgatcaccgtaccgtcgctttcagcaaagctggcagcagaaagtaccagatgggcgttttccataatcgctgtgcgttgatgatcaaccaccatcaccagcggtgctttagccagcgcagcattcacgcggatagcagaagcgtgacgatgcagatcgttttccaacaccaccaccgcgtcggcgcgtccggtttccagttcggttaacgcttcttcaagcgaaccgccacccataatgcccagccccatgctgttgacggaacgggcaatcatggtgataccgacgtcagcgccgcgacctttcagggctttcgcgacgttagccgccgcctgaatcacctctaagctaccggcgttcgtcccggagataatcaacggtttcttcgcacctgccagtgcctgcacgatgacgtcgattttgctttgcagctcaggttcgataccgtcaaccgctggtgcagagttatccagcgcatgggcgatggcaaaacctaaacgcgcctgatcttcaaccggtgcgcggtaagtccacgccgcgatatcatccagacgggtgtcatcaacgttggtaacaaacagcggatgcttcgcacgttgaccgatgttgaggattgccgcaatctgccagtcagccactttctgtgctgccgccatttcgcgcgctttacctttcacagcctgacgcactgccagcgcgacgcgcgcgccggtctgggtaacgtcttcgcccagcaccagtaccgcatcgtaagattcgatttcgcgcagagccggagtataaatgccgccttcacgcagcactttcagcgccagttgcagacgttcctgctcaccgtgagcgataccggtgtagaagttttcttcgcccaccagttcacgcagcgcaaagttgctttccacgctggcacgcggagaaccaataccgatcactttcttcgactgacgcagaatatctgccgcgccctgcattgcctgttcggcgttgagggtaatgaaatcatcgccacgacgctgtactggctgacgcggacgatccttcaggttgacgtaaccgtaaccgaaacgaccacggtcgcagaggaagtagtggtttaccgtaccgttgtaacggttttcgatacgacgcagttcgccgtaacgttcaccggggctgatgttacagccgatggaacattgctggcagatgctcggcgcaaactgcatatcccatttacggttgtaacgctcggagtgcgttttgtcggtaaatacgccggtcgggcaaatttcgaccaggttaccggaaaattcgctttccagcgtgccgtcttccgggcgaccgaagtagacgttgtcgtgcgcaccgtaaacgcccagatctgtaccgtcagcgtaatctttgtagtaacgcacacagcggtagcaggcgatgcagcggttcatttcgtgagagatgaatggccccaaatcctgattacggtgggtacgtttggtgaaacggtagcgacggaagctgtgtccggtcatcacagtcatatcctgaagatggcagttaccgccctcttcacataccggacagtcgtgcgggtggttggtcatcaaccactcgaccacgctttcacggaactgtttcgcttcttcgtcgtcaatggaaataaaggtgccatcggaagccggtgtcatacaggacatcaccaggcgaccacgcgtgtcttccgcgttttggtattgcttcaccgcacactggcggcaagcaccgacacttcccagcgccggatgccagcaaaagtaaggaatatcaaggcccagagacagacaagcttccagcaggttgtccgctccgttgacctcgtattctttgccgtctacatgaattgtagccattagcatgcttccagttttctcagtcagagactgagcgttaatcgaaattcggttaccagcgctctttcagcaggttcggctgaatcccattaatcaaatgggtattgctgaacggctgtttgattcccgcctcaaattcttcgcggaaatatttgatggcgctctgtaacggctccactgcaccaggtgcgtgggcacagaaagttttacccgggcctaagaatcgacacagttgctcaagtgtttcgatatcgcccggctgaccttcaccacgctccagcgcacgcagaattttcacgctccacggcagaccgtcgcggcacggcgtacaccagccgcaggactcacgggcgaaaaactcttccaggttacgcaccagcgacaccatgttgatctcatggtcaaccgccatcgccagcgccgtacccagacggctgcccgctttaccgatactttcgaattccatcggcagatcaaggtgcgcttcggtcaggaagtcagtccccgcgccgcctggctgccaggctttaaatttcagaccatcacgcataccaccggcgtaatcttcgaggatctcgcgtgcggtggtgccgaacggcagttcccacagtcccggatttttcacccgaccggagaagcccatcagcttggtgccagcatctttacttttcgagatgttctgataccactccacgccgttagcgaggatcgccggaacgttacacagggtttcgacgttgttgacacaggtcggtttaccccatgcgccggaggttgccgggaagggtggcttcgagcgtgggttagcacgacgtccttccagggagttgattaacgctgtttcttccccgcagatgtagcgccctgccccggtatggacgaacagttcgaaatcgaaacctgttcccataatgtttttgccaagcagacccgcttcggtggcttcggcaatggcacggcgcagattaactgccgcttcgatatattcgccacgcaggaagatgtagccacggtaagctttcagcgcaaacgcggagatgagcataccttccaccagcaggtgcggcagttgctccatcaacaggcggtctttataggtgcccggctccatttcatcggcattacacagcaggtaacggatgttcatggattcgtctttcggcatcaggctccatttcaggccagtcgagaagcccgcgccgccgcgccctttcagaccagcgtcttttacctgattaacgatttcgtccggagacagcccggtcagcgccttacgcgcgccttcgtaaccgtttttgctgcggtattcgtccagccacactggctgtttgtcatcgcgcagacgccaggtcagcggatgcgtttcgggagtacggataatgtttttcatttataccgctccagcagttcagggatcgcttccggggtcagatgcgcgtgagtgtcctcatcgatcatcatgtttggccctttatcacagttccccaggcagcaagttggcagcagcgtaaagcggccatcaaatgtcgtttgccctggtttgatgttcagctttttctcgagcgccgcctgaataccctgataaccgttgatatgacagaccacgctgtcacaataacggatcacatggcgaccaaccggctggcggaagatctgactgtagaacgttgccacaccttcgacgtcgcttgccggaatacccagcacatcggcgatcgcgtggatcgcaccatccggcacccagccacgctgcttctgaacgattttcagcgcttcaatggacgccgcacgcgggtcttcgtagtggtgcatctcgtgctcgatcgcttcacgctctgccgcactcagctcaaaagcctcggtttgtggttgttgattctcgtgcataattagcggtccacatctgacataacaaaatcgatactgcccagataaacaatcaggtcagacaccaggctgccgcggatcgccgccggaatttgctgcaaatgcgcaaagctcggggtacgaacacgggtgcggtaactcatggtgctgccgtcgctggtcaggtagtaactgttgatccctttggtcgcctcaatcatctggaaagattcattggcaggcatcaccggaccccacgacacttgcaggaagtgggtgatcagggtttcgatatgttgcagcgtgcgctctttcggcggcggcgtggtcagcgggtgatccgctttgaacgggccttccggcatgttgttgaggcactgctcaagaatgcgcagactctggcgcagctcttccactttaagcattacgcgggtgtagcagtcagaaacgccaccacccaccgggatttcaaagtcgaagttttcatagccagaataaggacgcgccttacgcacgtcgaagtcgatcccggtagcacgcaggcccgcgccagtggtgccccactccagcgcctctttcgcgccataggcggcaacgccctgggaacgacctttcagaatggtgttttgcagcgccgctttctcgtaagacgccagacgtttcggcatccagtcgaggaactcacgcagcaggcgatcccagccgcgcggcaggtcgtgcgctacgccgccaatacggaaccacgccgggtgcatacggaaaccagtgattgcttccaccagatcgtaaattttctgacgatcggtaaaggcgaagaacactggcgtcattgcgccgacgtcctgaataaaggtcgagatatacagcaggtgactgttgatgcggaacagttcggagagcataacgcgaatgacgttaacgcgatccggcacggtgatcccggccagtttctctaccgccagcacgtaaggcatttcgttaacgcagccgccgaggtattcgatacggtcagtatacggaatgtagctgtgccaggactggcgttcgcccattttctccgcaccacggtggtggtaaccgatgtctggtacgcagtcgacaatctcttcgccatcgagttgcaaaacgatacggaaagccccgtgcgccgacgggtggttcggaccgaggttgaggaacatgaagtcctcgttttcggtgccgcgcttcatcccccactcttccggtttgaaggtcagggcttccatctccagatcctgtttggctttggtcagctcaaacggcgagaattcggtagcgcgcgccggataatctttacgcagcgggtgacctttccaggtttgcggcatcatgatgcgtcgcaggttcgggtgaccgtcgaaagtaatgccaaacagatcccaggtttcacgctcataccagttagcgttcgggaacagtttggtgaaggtcggtacgtgcaggtcgttttctgccagcgccaccttcagcatgatgtcgcggttacgatcgatagaaatcagatggtagaaaacggaaaaatccgcggcaggtaacccttcgcggtgtgtgcgcagacgttcgtccatgccgtgtaagtcaaacagcatgacgtaaggtttcggcagtttctttaagaaatcgccaacttccagtaattgttcacgcttgatccacacaacgggaaccccggtgcgagtcgcctgaacagtaaaggcatccggcccaaaacggttgcgcagttcgccaatcaccggatcatcaagatgatcgcgggtctgccaggcgggttcttgcgcggttaagtcggtcatattgttcaccattgcaaatggtccgtggtgactgtcggcgcagtaagcttcgcgaaatagatttaggaataagcgaagaaaaatccctttgccgacaggcgcaaattaaatctcgtcaggtgtacgcaggttagttacggcaatgcgttcaccgcgcttgcgttcgcgctctgattgcatattggcgcgataaacgccctgatcgccaaccacccaggagagcggacgacgttctttgccgatagattcctgcaacagcatcagtgcctgcatgtacgcttcaggacgcggcgggcagcccgggatatacacatcaaccgggatgaatttatcgacgccctgcacaacggaataaatatcgtacataccaccagagttggcacaggcacccattgagataacccattttggttccagcatctggtcatacagacgctgaataaccggtgccattttggtaaagcaggttcctgcaaccaccatcaggtcagcctgacgcggcgaagcacgcaatacttctgcgccaaaacgcgccacgtcatgcaccgcggtaaacgaagtcaccatctcaacgtaacagcaggaaagaccgaagttatacggccaaattgagtttttacgaccccagttaaccatgtcattgagcttgcccataaacacgtttttgttaacttcttgctccagagggtcggttacgatctcctgcttttgcagggggtaacggtcgttctcaccgttgggatctatgcgggtgagcgtataatccatcttaatgcctcgcggttagcgttgacgattagcgatactgttcgtttccgggttcatacgctcgcggcgtgaacgcgcgggcgtccagtccagcgcgccaatacgcaccagataaaccagacctgccagtaacacaaaaataaaaattgcagcttccacaaagcctacccagccgctttcgcggatagaggttgaccatgcgaacagatacagcgcttcaacgtcgaagataacgaagaacatggccaccagataaaacttggcggacaggcgtaagcgggcggagccgaccgagtcgataccggattcaaacggcacgtttttcgacctcgcgcgtgcgcgaccgcctaaaaaccaaccgcctaccagcatcaggcaacacaggccaatggcaacgataagaaagatagcgaatgcccagtgatgagcgatgacttcagtggatgttgacatactcattgcttactcatcaaaagtagcgccagattcactgctcttcacggcagatggacgccacatcgattcatggggaggaataaaaaaaaccttacaatcactgtagaaattcttttatacagctaattgatgtggttttttactcctttctataaccttttgtcaactttaacaaaagtttcttcacattagtttacataatatcaacaccattagcatttaatgccctttcaccccagatccttgacgactccaggataattagatgttgttgaatcgtgtccgttgtgaagcaatggaaaaaatacgggtctattttgacaggaatttgtgtcgattcctccccccaaaagagagtattttcttgatctgtgacacgcttttgtcattccataacaaaaacgcagcaacaaatttacgtattttttaacatcattgtagcaggtgatttttttcaggcgattatttgtgcgttcgggacgtgaatctctggtggttgaaaaatgaacagttttgtacgttctgcactatgcgatgaaggatttttactaaaaaaaagccgctggggtttaaaacacccccagcggctcgttttttacactattgtctcaggaattatctatcgtccgtcgattactcgatatccctttcaatcaacaatgaatcatccccttccggagcagacattgggctgtattgccacggattatggtagctctccatcgcctgatagatcacctgggccagctcattattactggacggatcatagcacagcaaatattcggtatcaggtagcggcggtaagccatctactccactcagcacacgcaggtccgggctcatcatctcaaccggccttgccgtcacgccaagaccggctttcactgccgcacgaacggccggaagcgtcgaggcgacataagccagtcgccatggaatatctgctttattaagcgtcgccagcaccatatcgcgaaacgggctaggatcatccagcaatacaagagggatcggctcgcctttttgcaatatgtattccgctgcgcagtaccagtgtgttggcgaggtacgcaggttcaatgccttaaacgctgaaggacgatgggtggttaccatcaaatccacttcctgggattccagcatttctgccatataggcattacgtttaacgcggacatccagcgctaatttcggataaaccgaactcacgcgatttaacaggaaaggtaagatcgtatcggcagattcatctgaagcaccgatagttaatacgccctgaagattactgaacattaatgatgagcaggcctcatcattaaaacgcaggattttcctggcgtaaccaagaagttgaatgccatgttcagttaacagtttgttgcgaccgtgacgagcgaacagttctttcccaacgagttgttccagacgctgcatttgctgacttacggcggactgagtacgacacacagcggcagctgcggcagcaaaagtgttcagatcggcaacagcaacaaatgttctcagcagatcgaggtcgaggttaattatcggacgatttgcacttatcatatattatcacttactggcggctcatactgagctggttaatgctgtgcacacacaaacaagcaattccatttgtaatgtgcctccctggcagtttcatccggaacccggacgaaagtaaaaatgcatatgagttgcactaaaaaagcgactcacattgttccgttataatgcctgaagtagatcacagaatatatcttcagggatcgcatatctattaagttactcactcttttctatttatgacatgcgcgtgtttgtataaatgtaaatgtgagtccttgttccactctcgtgcagcatcgctggtcatacgcgaacacgtaccaacagcaatggtgaggcggcatcaagagcagggatccgtcatttatccgagcattttaccccaaaaaccttttatttataagggtcattgcgaattatctgatgcaaagttatgttatgttaggcaaagtaatcttctattattaataagcacatcaaaacctttttgaatattaaataataattaattagcatcatcctcattcattaattccgcttaacaatagtttcacaccttgcccccattgcgacacctcggaaatcatcacgcagttaaactctccgtaatgaggaaatatcatcatcgcgtttcattagtgaattcttaaatgaggcattttcacacaattatcttacagataaaaaaaccagacttacaattaagaatcagaacaattcactatataacattgcatgtaaagcatatacacctcattattttgtcattattaagttattaacagcacaatcgagccttcccctctggcaaaatcttattctgcagaccttcaaaacaccgtcctgggggagtacattgttctaagctgacttccacggcagggagtggcgataacagcaaaaaaggtcaagattcatgtcccccattgaaaaatccagcaaattagagaatgtctgttatgacatccgtggtccggtgctgaaagaagcaaaacgcctggaagaagaaggtaacaaggtactgaaactgaacatcggcaacccagccccgttcggttttgacgcgccagatgaaatcctcgttgacgtgatacgcaacctgcctaccgctcaagggtattgcgattccaaaggtctttactccgcgcgtaaagccatcatgcagcactaccaggctcgtggcatgcgtgatgttaccgtggaagatatttacatcggcaatggtgtatcggagcttatcgttcaggcaatgcaggcattgctgaacagcggggacgaaatgttggttcctgcaccagattacccactctggaccgcggcggtttcgctttccagcggtaaagcggtgcattatctttgcgatgaatcctctgactggttcccggacctcgatgatattcgcgctaaaattacgcctcgtacgcgtgggatcgttattatcaacccaaataacccaaccggcgcggtatattccaaagagcttttaatggagattgtggagattgcacgtcagcataatctcattatcttcgccgatgaaatttatgacaaaattctctacgacgacgctgagcatcactcaattgcgccgctggcacctgacctgctgaccattacctttaacggactgtcgaaaacgtaccgcgttgcaggcttccgtcaggggtggatggtgttgaacgggccgaaaaaacacgccaaaggctacatcgaaggtctggaaatgctggcttcaatgcgcctgtgtgctaacgttcctgcgcaacacgccattcagaccgcgctaggtggttatcagagcatcagtgaatttattacccctggcggtcgtctttatgagcagcgtaaccgcgcgtgggaactgatcaacgatattccgggcgtttcctgcgtgaaacctcgtggtgcgctgtatatgttcccgaaaatcgacgccaaacgctttaacattcacgacgatcagaaaatggtgttggatttcctgttgcaggaaaaagttctgttggtgcaagggacggcattcaactggccgtggccggatcacttccgcattgtcacgctaccgcgtgtcgatgatatcgagctgtctttgagcaagttcgcgcgtttcctttctggttatcatcagctgtaatcttaatttcactgccggagattgcatccggcagcgttatcccgccacaatgacctgatgatgtcatcatacgtaaggtcactatgaaacagagccatttttttgcccatctctcccgcctgaaactcattaaccgctggccgctcatgcgcaacgtgcggacggaaaatgtgtccgaacacagtttgcaggtagcgatggtcgcccatgcgctggcagctatcaaaaatcgaaaatttggcggtaatgtcaacgccgaacgtatcgctttactggcgatgtaccacgatgcctcagaagtgctcaccggcgatctccctactccggtgaaatacttcaattcgcaaatcgctcaggagtacaaggctattgaaaaaatcgctcagcaaaaactggtcgatatggttccggaagagctgcgggatatctttgcgccgttaattgacgagcatgcatatagcgatgaagaaaaatcgctggtgaaacaggcagatgcactgtgtgcatatctgaaatgtctggaagaactcgcggccggaaataatgaattcttgctggcaaaaacgcgactggaagcgacgcttgaagcgcgtcgcagccaggagatggactacttcatggaaatatttgttcccagcttccatctttcgctcgatgagattagccaggattcaccgctgtaagcagccggagtctgcgtcgcatcaggcaataagcgccggatgcgacatcaggctcttgtcaaaacggaaacagcatcgggatcatcaccacacaaaccgccatcacgataatggtgaacggtacccccaacttcacaaagtcactgaagctgtaatttcccggacctaaaaccagtgtgttaacaggtgaagaaaccggtgtcataaaggcggcggatgctgccatcgccacgaccatcgcgaatggataaggcgacacccccatcgttttggcagcagccagcgcaatcggagccatcaacaccgccgtcgcggtattagagataaatagcccaataaccgccgacaagacaaacaaacaccccagcatcatatgtggcccgtaaccaccgccaatgtccatcagccctttcaccgccagcgcgacacctcccgttttctgtaatgccacagcaaacggcatcatcccaacgatcaaaataatgctcggccagtgaatggatttataggcgctttcagcatctatacagcggaatttccccatcagcaggcaggcgatgatagcggcaacaggattaggaatttcatctgtcagcattaacgccaccattagcaccagacagaaaatggcatggggtgcctggctgtgcgcgggtgatgcttcactcacctcttccggtaagttcagcgctacgaagtcgcggccctgtttggccagcataccgatcagtttccagttacccacaaccaggatgatatcgcccagcagcagaggctcatccgccagcgaaccttccagcgccacgccattgcgctttagccccaccacattcagtccgtagcgggtacgaaaaccaatttcgcgcaccgatttaccaatcagttctgactcaggaattaatgaaatctctgccatgcccacatcaagggcctggtcagaaaaatactcgccgcgcagtaccatcggctccagcaattgctcactacaaaattgccggagatcgacatcagccgcagacatatcaataagcaaaacgtcacgcgcgcgaaattcagaaaccccattaacgttcacgataacgcgacgaaaacgccgccagcgttcaacaccgatgacgttagcgccataacgctcacgtaatttgagatcatccagccgttgaccaatcattggcgatccggggcgaatagccagacgtcgcgcacgcccggtcagtcgatattcacggataagatcgcgaaaggttcgacgcgtccagccttcgcgctgcggggtctgggtatcccctttcagcatgaaacgcatcactaacatatacaaaatacccagcaccagcacgaccaggccaataggtgttacgctaaagaaactgaagccgtgatagccttcacgcagcaattcactgttgactaccaggttcggcggcgtcgccaccagcgtcatcatgccgctaatcagcccggcaaaacttaacggcatcatcagacgtgacggcgacgtttgcatacgcatggcaacgcttaacaccacgggaataaagatagcgacaacgccggttgaactcataaacgcgccaagccccgcgacggtcagcatcaacaaaaccaacattttgatttcactattgcccgcaactttgaccagccatgttcccattacggtggcaacaccggtacggaccaaaccatcgccaataataaacaaggcggcaatcaggacaacgttaggatcagaaaagccggaaaatacttctgggactgtcagcgttccgcttaatgcaaacgcgacaataacaaacaaagcgaccgcatccatacgcactctgcccgtcgcaaacaagacgatggcaacggccagtaatgaaagaacccaaatcaattcaccgttcacaacttatccttgttaattgagggggatgacttgattctgccataaaaaagccccgacgagacggggctaaatcatgatcaggtgtttcactgaataataacatcgccatttggctgtttggtcacagtaatttgctccagactgtggaggaccaaatcgacctcattcaggcgcggggtatctgccggagcgttaaccgcaatgacatgacaacccgccgccaggccagaaagcacgccagcgggagcatcttccaccaccacacactcctgcggcgcaagccccagcagctgcgcgcctaacagatacgcatcaggttctggttttccgcgcttcactcgctcagcggttacaaacacctctggtgcgggaagcccagctattttatggcgcgctcgcgctaccggcatggagccagaagtcacaatggcccacggaatacctgctttattcaaatgactgagtaaggcgattgcccccggaagcgcggtaataccttcggtttccgtggcctcgatgtgctccagacgcgtaaactcggcggcaatatcagcctcggatttgcccgccataaaatggcgcagagaggtgatcgcctgtttaccgtgaatgaaagccagcacctcttccggcgctaacccatgacgtctggcccagttgctccacgcccgttctaccgcaggcagggaatccaccagcgttccatcaagatcaaacagaaaacctttgcaccgcacgcgggcctcctcaggcattgataatttgattaatttcgttggcgctcaaatggtactgacgcgggcaggcatgccacacattaagcatgcgctgatatttttcccacattggcgtctgggcgttaaaaccgtgagttccggcgtcaaaatgggtatagcgcccttccacattaaccataaagcggacataaccgaggtaacgtgcttcagtggcggcgtcaaagccgaggaaggtgacacgacgttcatcgatggattgctggtcctgcaaattagaccaggaaacatgcaacgcatgatacatctccataatgtcgatgatagtgcggcaggtttcttctttcagctcgccaaactcgcgatccaattcacgcatctgtaatccgtaaccacgctcaataattgtttgcaggcgacggtaacgttcagcatttgccggatcgagcatagtcatcatcttgtactgattagacaaaataagacgttgcgcgttggtcatttccattgttgactcctgtatcactctactacggtgaaaaaaaagaaggctgagtatgccttcttttatatgcgtaatcaggggtcaattacaaatcatcaaggaaagttttatccagttgtttgaaggcgcgcttaagcgtgtcagctaatgcctggtaatcaggcttgccttcaacgggtgccaacacctgtccagactcctgcaatttaccgcgaacttcataaaaccagttaaggattgcagggggtaatggcgtgacagaacgcttgcccagccaccacaatccctgcatgggtaaacttaaggcgaacagggcagtggcaactgccggcccaagctgaccgcccagggcaatctgccagcagagagtaaatacggcgatcggcggcataaaacggatcgcataacgcgtcatcttgataacgcgattttcgacaaagaccggggcaaggcgtttttccagcggccacgtctttgagtaatgctgtccccggcgaaacaagctaaaaaaattaacagaacgattatccggcgttgacatgcttcacctcaacttcacatataaagattcaaaaatttgtgcaaattcacaactcagcgggacaacgttcaaaacattttgtcttccatacccactatcaggtatcctttagcagcctgaaggcctaagtagtacatattcattgagtcgtcaaattcatatacattatgccattggctgaaaattacgcaaaatggcatagactcaagatatttcttccatcatgcaaaaaaaatttgcagtgcatgatgttaatcataaatgtcggtgtcatcatgcgctacgctctatggctccctgacgtttttttagccacgtatcaattataggtacttccatgtcgagtaagttagtactggttctgaactgcggtagttcttcactgaaatttgccatcatcgatgcagtaaatggtgaagagtacctttctggtttagccgaatgtttccacctgcccgaagcacgtatcaaatggaaaatggacggcaataaacaggaagcggctttaggtgcaggcgccgctcacagcgaagcgctcaactttatcgttaatactattctggcacaaaaaccagaactgtctgcgcagctgactgctatcggtcaccgtatcgtacacggcggcgaaaagtataccagctccgtagtgatcgatgagtctgttattcagggtatcaaagatgcagcttcttttgcaccgctgcacaacccggctcacctgatcggtatcgaagaagctctgaaatctttcccacagctgaaagacaaaaacgttgctgtatttgacaccgcgttccaccagactatgccggaagagtcttacctctacgccctgccttacaacctgtacaaagagcacggcatccgtcgttacggcgcgcacggcaccagccacttctatgtaacccaggaagcggcaaaaatgctgaacaaaccggtagaagaactgaacatcatcacctgccacctgggcaacggtggttccgtttctgctatccgcaacggtaaatgcgttgacacctctatgggcctgaccccgctggaaggtctggtcatgggtacccgttctggtgatatcgatccggcgatcatcttccacctgcacgacaccctgggcatgagcgttgacgcaatcaacaaactgctgaccaaagagtctggcctgctgggtctgaccgaagtgaccagcgactgccgctatgttgaagacaactacgcgacgaaagaagacgcgaagcgcgcaatggacgtttactgccaccgcctggcgaaatacatcggtgcctacactgcgctgatggatggtcgtctggacgctgttgtattcactggtggtatcggtgaaaatgccgcaatggttcgtgaactgtctctgggcaaactgggcgtgctgggctttgaagttgatcatgaacgcaacctggctgcacgtttcggcaaatctggtttcatcaacaaagaaggtacccgtcctgcggtggttatcccaaccaacgaagaactggttatcgcgcaagacgcgagccgcctgactgcctgatttcacaccgccagctcagctggcggtgctgttttgtaacccgccaaatcggcggtaacgaaagaggataaaccgtgtcccgtattattatgctgatccctaccggaaccagcgtcggtctgaccagcgtcagccttggcgtgatccgtgcaatggaacgcaaaggcgttcgtctgagcgttttcaaacctatcgctcagccgcgtaccggtggcgatgcgcccgatcagactacgactatcgtgcgtgcgaactcttccaccacgacggccgctgaaccgctgaaaatgagctacgttgaaggtctgctttccagcaatcagaaagatgtgctgatggaagagatcgtcgcaaactaccacgctaacaccaaagacgctgaagtcgttctggttgaaggtctggtcccgacacgtaagcaccagtttgcccagtctctgaactacgaaatcgctaaaacgctgaatgcggaaatcgtcttcgttatgtctcagggcactgacaccccggaacagctgaaagagcgtatcgaactgacccgcaacagcttcggcggtgccaaaaacaccaacatcaccggcgttatcgttaacaaactgaacgcaccggttgatgaacagggtcgtactcgcccggatctgtccgagattttcgacgactcttccaaagctaaagtaaacaatgttgatccggcgaagctgcaagaatccagcccgctgccggttctcggcgctgtgccgtggagctttgacctgatcgcgactcgtgcgatcgatatggctcgccacctgaatgcgaccatcatcaacgaaggcgacatcaatactcgccgcgttaaatccgtcactttctgcgcacgcagcattccgcacatgctggagcacttccgtgccggttctctgctggtgacttccgcagaccgtcctgacgtgctggtggccgcttgcctggcagccatgaacggcgtagaaatcggtgccctgctgctgactggcggttacgaaatggacgcgcgcatttctaaactgtgcgaacgtgctttcgctaccggcctgccggtatttatggtgaacaccaacacctggcagacctctctgagcctgcagagcttcaacctggaagttccggttgacgatcacgaacgtatcgagaaagttcaggaatacgttgctaactacatcaacgctgactggatcgaatctctgactgccacttctgagcgcagccgtcgtctgtctccgcctgcgttccgttatcagctgactgaacttgcgcgcaaagcgggcaaacgtatcgtactgccggaaggtgacgaaccgcgtaccgttaaagcagccgctatctgtgctgaacgtggtatcgcaacttgcgtactgctgggtaatccggcagagatcaaccgtgttgcagcgtctcagggtgtagaactgggtgcagggattgaaatcgttgatccagaagtggttcgcgaaagctatgttggtcgtctggtcgaactgcgtaagaacaaaggcatgaccgaaaccgttgcccgcgaacagctggaagacaacgtggtgctcggtacgctgatgctggaacaggatgaagttgatggtctggtttccggtgctgttcacactaccgcaaacaccatccgtccgccgctgcagctgatcaaaactgcaccgggcagctccctggtatcttccgtgttcttcatgctgctgccggaacaggtttacgtttacggtgactgtgcgatcaacccggatccgaccgctgaacagctggcagaaatcgcgattcagtccgctgattccgctgcggccttcggtatcgaaccgcgcgttgctatgctctcctactccaccggtacttctggtgcaggtagcgacgtagaaaaagttcgcgaagcaactcgtctggcgcaggaaaaacgtcctgacctgatgatcgacggtccgctgcagtacgacgctgcggtaatggctgacgttgcgaaatccaaagcgccgaactctccggttgcaggtcgcgctaccgtgttcatcttcccggatctgaacaccggtaacaccacctacaaagcggtacagcgttctgccgacctgatctccatcgggccgatgctgcagggtatgcgcaagccggttaacgacctgtcccgtggcgcactggttgacgatatcgtctacaccatcgcgctgactgcgattcagtctgcacagcagcagtaatctcgtcatcatccgcagctttgcgctgcggatatctgaaccggaaataatcactatttccggttttttattctcttaatttgcattaatcctttctgattatcttgcttaactgcgctgcatcaatgaattgcgccatcccactttgcatacttaccactttgttttgtgcaagggaatatttgcgctatgtccgcaatcactgaatccaaaccaacaagaagatgggcaatgcccgatacgttggtgattatcttttttgttgctattttaaccagccttgccacctgggtagttccggtggggatgtttgacagtcaggaagtgcagtatcaggttgatggtcaaacaaaaacacgcaaagtcgtagatccacactcatttcgcattctgactaacgaagcaggcgaacctgagtatcaccgcgtacagctgttcacgacgggcgatgaacgcccgggcctgatgaacttcccgtttgaaggattaacctcaggatcgaaatacgggacagccgttggcatcatcatgtttatgctggtgattggcggcgcgtttggcattgtgatgcgtacaggaaccattgataacggtatcctggcgcttattcgccatacccgcgggaatgaaattctctttattcctgcgctgtttattctgttttcacttggcggcgcggtatttggtatgggagaagaggccgtcgcctttgccattatcatcgcaccgctaatggtccggctgggctatgacagtattaccaccgtcctggtgacctatattgccacgcaaatcggttttgccagttcgtggatgaacccgttttgtgtggtcgttgctcaggggattgccggcgttccggtgctttctggctccgggttgcgcatcgtggtgtgggttatcgccactctgattggcctgatctttaccatggtgtacgcctcacgagtgaaaaagaatcctcttctgtcacgcgtgcatgagtccgaccgcttctttcgtgaaaagcaggctgatgttgaacaacgtccgtttacctttggtgactggctggtattgattgtcctgaccgccgtaatggtctgggtgatttggggcgtgatcgttaatgcctggtttattccagaaattgccagccagttcttcaccatgggtctggtgattggcatcatcggcgttgttttccgccttaacggcatgacggttaataccatggcttcatcctttaccgaaggggcgcgaatgatgatcgcccctgccctgctggtgggtttcgccaaagggattttgctgctggtcggtaatggtgaagcgggtgatgccagcgtgttaaataccatcctcaacagcattgccaatgccattagcggtctggacaacgcggtcgcggcctggtttatgttgctcttccaggcggtatttaatttcttcgtgacgtccggttctggtcaggcggcgttaaccatgccgttactggcaccgcttggcgatctggtcggtgttaaccgtcaggttaccgtgctggcgttccagtttggtgatggcttcagtcacatcatttacccaacctcagcgtcgttaatggcaacgctcggtgtgtgcagggtggacttccgtaactggctgaaggtgggcgcgaccctacttggactgctgtttattatgtccagcgtcgtagtgatcggcgctcagttgatgggctaccactaaaaatgttaagagccgcaattgcggctcttttttcattctgccgtttcagtctctacggcttcatttttggcattgcgcttcatccacaacgctagcgctttcagcgagtctggagtgaactcatcgcagcgtgcggtgatttcttccggcgtcagccagcaaacttcactgacttcatcttcctgtagtgcgaagggaccgtgagagacgcagctgaacaatgcgccccagacacggcaatttttatcttcgaaatagaactgcccgtgctcggcaaaggggacaccggcaatgcccaactcttcttccgcttcgcgacgcgcggattccagcagttgctcatcggcctggactacaccgcctgcggtcgcatctaacatgccgggtaaaaagtcttttgtctcggtacgacgctggaccagaattttgcccatgccatcatgcacgacgatgtaagttgcacgatgacgcagacactgtgcccgcatttgttcccggctggcttgtgcaatgacttcgttctcttcattgacaatatccacccattcagtacttgccaaacgacgctgttccattatcaggaaaccttctttttctggcgctcttacggcgcattttgagttgtgggtaaattacggattaatcgcgacctgcgcaatgatactttgatcattgagtgcgattacactaagtacgtcattatccagcatgccataactcgccggattaccgcctttcggaatactcaccgagccggggttgaagtggaaaatctccccccgctgttctgccactggcagatgggtatgaccgtacaccagcacatcgttctggtttaaagcaggcagattttccgggccaaaaagatgaccatgcgtcaaaaacagacgttgtttttccagtaatacctgttgccacggcgcggttatcgggaaatgcagcagcatttgatccacttcgctgtcgcagttgccgcgcacagcgataaccttatgtgccacttcattaagccgttcagcgactttggctggcgcgtaaccctccggtaaagcattacgcgggccgtgattcaacacgtcgccaaggatcaccagccactgggcaccgctttgggcaaacaactccagaacacgttccgtcgccggtaacgacccatgaatgtccgatgcaaacatcagtttcatcactcactcctcgtcgaaaaaacgtaagctatgatactggattctgtcgttgctatcagccagattgcttcgccgaaagtgcaataaaacgctggacagacgctcgctgccactggaatgttgcataatccaccaggcgttctggcacctcatcgccatgtagtaccaggcggttaatcattagcgccagatcagtatcagcaatgcaccattcaccaaataaattcggctgacccagtactaacaaatgttctgccatcgcgaacagtttctctgcactggcttttccctcggccgttagtggcgcttttttcgcccccgcaaagacaacatccgtcggacgctcttcgcggatgggcatcagatcgctgcgcagccaggcctgaatctgtcgtgcacgcgcacgattttctaaatcaagcggataaatacgttcccaggtcggtggcgcaaatcgatcttccagatactccgcaatggcagaagattcactcaactcaaaatcatcgatttgtaataacggcacacggcgtgtctgaccgtaaccttgccacgtcggctgcaaatgttcaccgctgtcgaggtcgatggtcttgatatgaaacgacaggcctttttcctgcaacgccacccaggcggataacacataaggggagaaaaagtgggcatctgaccaaagcgtgatagcgggtttactcattatgtcctcggcaataaagggggctggctatcaaactatagagcctttttgtcactgtcacgtgacgaatactcacgtaagtcgccgcgctttctatacttgtggtgttcagatgattaaacaaccggagctgcaatgatcgatctctatttcgccccgacacccaatggtcacaaaattacgctgtttctcgaagaagcagagctggattatcgcttgattaaggtagacctggggaaaggcggtcagtttcgtccggaatttttgcgcatttcgcccaacaacaaaattccggcaattgttgatcattctcctgccgatggcggcgaaccgctaagcctctttgagtctggtgccattttgttgtatctggctgagaaaacaggactctttttgagtcatgaaacgcgtgagcgcgccgccacattacagtggttattctggcaggtaggcggactggggccgatgcttgggcaaaatcatcattttaatcacgcagccccccaaaccattccttacgctattgaacgttatcaggttgaaactcagcgtctttaccatgtactgaacaagcggctggaaaactcgccctggctgggaggcgagaactacagcattgcggatattgcctgctggccgtgggttaatgcctggactcgccagcgaattgacctagcaatgtatccggcagtcaagaactggcatgagcggatccgttcgcgccctgccaccgggcaggcactgctaaaagcacaactcggtgatgagcgttcggatagttaacagaaacaggttctcgtgtattatttcatcctaagtaaaacaacggagaacctgcaatggcacaacctgccgctattattcgtataaagaaccttcgtttgcgtacgtttatcggaattaaggaagaagaaattaacaaccgtcaggatattgttatcaatgtgacgatccactaccccgccgataaagcgcgcactagcgaagatatcaacgatgcgctgaattatcgcaccgtaacgaaaaacattattcagcatgtagagaataaccgtttctctttgctggaaaaattaactcaggatgtgctcgatatcgcacgtgaacatcactgggtgacgtatgctgaagtggagatcgataaactgcacgcgctgcgctacgccgattcggtatccatgaccttaagctggcagcgttaatcgccatatcgggaggctgcatgaacatagtgatcaccggagggacaggattaattggtcgccatttgattccgcgtttgctggagctgggccatcaaattacggtagtgacgcgtaacccgcagaaagccagttccgttctcggccctcgggtgacactatggcaagggcttgccgatcaaagcaacctcaacggcgttgatgcggtaatcaacctggccggagaaccgattgctgataaacgctggactcacgagcaaaaagagcgtctctgccaaagccgctggaatatcacgcaaaaactggtcgatttgattaatgccagcgacacgccaccgtcggtactcatttccggctcggcaacgggctattatggtgacttaggtgaagtggtggttaccgaagaggaaccgccgcataacgaatttacccataaactctgcgctcgctgggaagaaattgcctgccgggcgcaaagtgacaaaacgcgagtgtgcctgctgcgtaccggtgtagtgctggcaccggatggcggtattctcggtaaaatgctgccgccgtttcgtcttggcctgggcgggccgattggctctggtcggcagtatctggcctggattcatattgatgatatggtcaacggtattctctggctgctggataacgagctgcgcgggccatttaatatggtttcgccctacccggtacgcaatgaacaatttgcccatgcgctcggtcatgcgctgcatcgcccggccattttgcgcgtccccgcgaccgccattcgactgttaatgggcgaatcttcagtactggtattaggtggacaacgcgcgctgcctaaacggctggaagaagcgggttttgcgtttcgctggtacgatttagaagaggcgctggcggatgtcgttcgctgatgtggtttacagcaaacatccgccagttaactcccggtgttacaggattagtggctttgcgcgataagatcgtctggtgaaagtcgggtcaccatcataactaactctctgtctaaacctctatccagcatctcctgagcaatacgcagggcttcttcgtgtttgccctgcattgcgccttcttcacgtaatctgtcagcaatggtcatcagtttctccttttcttgtggtgcgcgttccgctatctcaccaataaatgcacgaaaacgctgggcatcccctgtttgtaatacgtaattaaacagggcttttagctgtctgtcattagtgttccctgtaactagcagcgaaacaatttggtcgactaatcccaacagatcgcgctgacgaatatgtttctgaattaactccaacagcgccattttgcggtgttgcataatctcgtcatccggcaccacggtaatatccaccaacggaaaagccgatgaatatattttgcgggctatagcaggctcggcaaattcatcaagccagcagagtgaataaggataaggacttctgcaaccatgataaaacagcatcgggagcaccaatggaagctctttatagcccgcatcaagatggttttgcattgccgcaatggaataacgcatcatgcgaaaagccattaattcttccggcttactttggtgctctatcactacataaatataacccactccctcctgcgttttcacagaccacaagaggtcggaataatattgccgcaggtcttcatcaataaaactgtttggttccagtttaagcgtcgttaaatcacacagtttgcgcagcggcgcgggaagatgaatatcaataaaatcccgcgcggtgtctggatggcgtaaaaaagatttaaataccgcatcatgcggcgtggaagttgtcgatattgtcatggcgttccgtcacccctcaaatttaagatgacgcgacaataaccacgattaacacccaatgcagcaggcagtttttatctttggacagcgaattcagaagtatttttagcggactgtaacttttacatttcagcggaagctgactcgcaaattccccatgaaaatactccggcagcgttagccaccggagaggaaattatttcagcgatcccttaaggaaccgttgcagacgagggctttgcgggttgccaaataactgctccggcgcgccctcttcttctattttcccctgatggaggaaaatgacatgagtagaaacatggcgagcaaagcccatttcgtgagtcactaccaccatggttttcccctcttctgccagttgctgcataatacgcaacacttcgcctaccagttcaggatcgagcgccgaggtaggttcatcaaacagtaaaacttccggttccatcgccagcgcccgcgcgatagaaacacgctgttgctgaccgccggaaagatgcaccggatatttcccctgcgcacgttcgtctatcccgacttttgccagatacttcaccgcccgctcgcgcgcttcctgcttgctcaggcccaacacctgaatcggcgcttccatgacgttttccagcaccgtcatatggctccagagattgaagtgctggaataccatcgtcaggcgtgtgcgcagtaagcgcagttgatttttatcggcgactttgagttgaccgtctttgtcgcgcaccagattgatcgtctggccattgaccacgatcgacccttcactcggtttttcgaggaagttaatgcagcgcagaaaggtacttttccccgatcccgacgatccgatgatgcttattacatctccggcattcgcttgcagtgatacccctttcagcacttcatgttcgccgtagcgtttgtgcaaatcgataacgtttaatttattctcggacatcgtattctcagtgcgttgaagaaggtttcacatgctgcaaccagcgtttttccgctctgcgaaagaggctgatcaggacataagagatgattaaatagagcaccgcggcaatgccgaaggcggtaaaaggttgatacgtggcggcgttaatatcgcgggctattttcagcagatccggcaccgtggcagtaaatgccaacgcagtagagtgcagcatcaggatcacttcgttgctgtatgccggtaacgcaatacgcagcgcagaaggcaaaataatgcagcgatacattttaaaagtcgagaagccataggctctggcggcttcaatttccccatgcggaaccgaacggattgccccagcaaaaatctcggtagtgtaagcgcaggtgttaagcgtcagcgccagcacggtacagttcaggccactgcggaagaaagcgttaaggaattcggttcccttaacaatctcaagcgtgtacatgccggaatagaacaccagcaactgaacatacagcggcgtaccgcgaaaaatataggtaaataaccagattggaaactggatgtatttattactggagacacgaccaatcgccagaaacagcgccaggactccgcctatcactaccgacaaaataagcagccacagagtgatcgccacaccagtaaagcgataaccgtcggtccacagcagcggtttccagtattcatgtaagatttcgatcacaggtcagccctcttcacacccacggagtagcggcgctcaaggaacagcagcacaccattggaaacagtggtgaaaaccaggtaaatcacgccacagacgatggcgaaatagaacggttcccaggtacttttgcctgccagttgggtggctttgaccacatcttccaggccgagtaacgaaaccagtgcggtagatttgaggatcacctgccagttgttgccaatgcctggcagggcgtaacgcatcatcgacggaaacatgatccgccgaaacacttgcccacgagtaaaaccgaacgccgtcgccgcctctatatgtcctttcggcactgccataaaagcaccacggaacgtttcggtaaaataagcaccgtagataaaaccgagagtgataataccagcgaccatcggatcgatatcaatctgcccgacgcccatcgcctccgtcaccgtgtttagcgcaatctgcaaaccgtagaaaatcagcagcatcaacactaagtccggcacgccacgaatcagcgtggtgtacccttcgaaaatcagccccgaaagccgattttgcgagagcttaccgccagcgccaattaaaccgatgattacagcgagcactacagagctgatagccagctccagcgtgacgagcgcaccctgtaaaataacacctgaaaacccatacaacatgctgcctgtcctgtcgtgtgtggtgaattaccgcctcttgtctccctccggttacccgaagggagcgggctttctttcaccgatggcgattagccaccataaacatcaaaatcgaagtactttttcgctaatttctcgtaagtaccgtcagcgcgcatttcggcaaaggctttgttcagtgcttcgcgcagttcgttatcttctttacgcaggcccatgccggtccctacgccaaacagtttttcatctttaacagacgggccaccgaatttgtaatctttaccgacaggttgtttgaggaaaccttcgctggcagcgacctcatcctggaacgcggcatcaatacgtccggcagtcaggtcagaataaatgttgtcctgcccctgatacgagacgatttcaatgccttttggtgcccaatgttcattaccgaacgtctcctgggtggtgccctgcaatacgcctacccgtttgcctttcagcgactcgactgtcggctgaatgtcagaatttttcgccaccaccaaacgagaatcggcagcgtacagtttgtcggtgaaggctatttcttgctgacgtttttccgtaatggaaagcgatgacatgatggcgtcaatcttcttcgcttttaaggacgggattaacgcatccagcggattttcgacaaacgtacattgcgtattgatgcgtttgcataattcctttgccagatcgatatcgaagccaaccagttcgccttgtgaattttttgattcaaatggcgcataggtcgggtcggtaccgatgcggatgttttgcggaatcgcagcaaacgccgcagttgcgctggagaaggccagaaccagagagagcgatagcaccagttttttcataatgtcctcaactgacagtctttttatagggaatatttacaggtttgttacacttatcgtgccataaaattgaccatcaaggcaaaatatcccgccccgttagacgtattatttttcattaaaaatgcttaagtatgcatttcaatgcaccacgatagtgcaacaaacctggcgtgcaccatgatgatcattccatcaggtacagcttcccagcgacgtatcagtcaccgtagacattaaagtcgaaatactttttcgccatcttgtcgtaggtgccgtcctgacgcagctcgccaagcgccttattgaaggcagccgtcagttcagcatcatctttacgtagccctacaccggtgccatcaccgaagtattttttgtcttttactgatgagccagcaaaggcgaaatctttaccagcaggttgcttgaggaatccttcgctggcagcaacttcatcttgtaacgcagcatccagacgtcctgcagccagatcggaatagaccaaatcctggttggcataggccaccacatccacgcctttactacgccaggtctcgttagcgtaagcttcctgggttgatccctgcagcacaccaacatgtttacctttcagtgaatccagcgttggctgaatcggtgaacctttggccgcaatcaaacgagaatctgcggcgtacagcttgtcggagaaggcaatctcctgctgacgtttatcggtaatggaaagcgacgaaataatagcgtcgatttttttcgctttcagtgaggggatcagcgcgtcaaagtcactggcaacccaggtacatttcacctgcatccgtttgcacatctcgttaccgagatcgatatcaaagccaacaaaatcacctttagcatctttcgatgagaacggtgcgtaggtggtatcggttccgatacgtaccgtctccggtagcgccgcatagctggaagccgctgtggagagaccgactaacaaagacagagcgagaatcgacttcttcatacataaccctcaagtgaaaatggcttttttatgttgtgtattgtgttgtgtgtttgcaggctctttcatgcaggtcttatgccatcttgacgacaacagtaacattcaacgttaaatatgttaataagacgttgcattattgtcctgaagttgaagatagcaggtatagcggttgaatcgcagcgtttcgattgaatggcagaaacaaaatgtcgaggatttgatcgcggttgcaaaattgccctgaaacagggcaacagcggagttatgcgccctgccagcgggcaaagagatcttcaggaagggttatcgcaaactggtcaagaacacgattaaccgtctgatttatcacatcatcaagggattgcgggcgatgataaaacgccggaacgggaggcataatcaccgcaccgatttctgccgcctgagtcattaaacgcagatggcctaagtgcaatggtgtttcacgcacgcagagcaccaacgggcgacgctctttcagcaccacatctgccgcacgggtcagtaagccatcagtatagctatggacaatgccggaaagggttttgattgaacagggtaaaatcaccatccccagcgtctggaaagaaccggaagagatgctggcggcaatatcgcgcgcatcgtgcgtgacatcggctaatgcctgcacttcgcgcagagaaaaatccgtttcgagggataaggtctggcgcgctgcctggctcatcaccagatgcgtttcgatatctgtgacatcgcgcagaacctgtaataagcgcacgccataaatcgcgccgctggcaccgctgatgcctacaatgagtcgtttcataaatagttgccctgtcagacttgcaggcagactttgcaggatttcggcgggagttgcaagtcagggtgccagaccggcaccctcagcgaaggcatcatccttcgttatgcatttcgagattttccacttcgttctgacgttgcactgctttggcgtcatcattacgtaacgtatcgaggaaatcgaggtagccctgatcaacatctttggtgacgtagacgccgttgaacaccgagcattcaaactgctggatatccggattttcagcgcgaacggcgtcgatcagatcgttcagatcctggaaaatcaacccgtcagcaccgatgatctggcgaatttcatcaacttcgcgaccgtgagcgatcagttccgtggcgctcggcatatcaataccataaacgttcgggaagcgaatttccggtgccgcagaagcgaggtacactttcttcgctccggcttcgcgtgccatctcgataatctgctcagaagtggtgccacggacgatggagtcgtcgaccagcaggacgtttttatcgcggaactcggcgcggttggcattcagtttacggcgcacggacttacgacgcagctgctggcccggcatgataaaggtgcggccaacatagcggtttttaacgaagccctggcggtacggtttgcccagaatacgagcaatttccagcgcgatatcacacgaggtttctgggatcgggatcaccacgtcgatatccagatcttcccattcgcgggcaattttctcgcccagtttcgtgcccatattcacacgcgcgctgtaaacggaaattttgtcgataaacgagtccgggcgggcaaagtatacatactcaaacaggcacggattgctgaccggattgtcagcacattgacgggtaaacaactgcccttcttcagtgatgtaaatcgcttcgcccggcgcgacgtcacgcaggaaatcaaagcccagcgtatcgagcgctacgctttcggaagcgaccatatattctgtacggttctcgtcaatatcacgttttcccagtaccagcggacgaatcccgtttggatcgcggaaagcaaccataccgtggccgataatcatcgccacacaggcatacgcgccgcggattaagcggtttgtggcagcaatggcagcgaaaatattgtcggcttccagcgggtagtggcggaagttgtccagctcgctggcgaagatattaagcagaatttccgagtcggaagtggtgttgatgtggcggcgtttttcttcaaacagttttttacgcaactcgtgagcgttggtcagattgccgttgtgggcaagcgtaatgccatacggggagttaacgtaaaacggctgcgcttcagaggcgctggagctgccagccgtggggtaacgcacatgaccaatgcccatattgccctgcaaacgctgcatatggcgagcttcaaatacatcgctcaccagcccgttcgctttacgcaaacggaagcagttattggcatctatggtgatgatgccggcggcatcctgaccgcgatgctgaagcaccgttaaggcatcataaatcgactggttaaccggcataacaccggcgataccgacaataccgcacatacgtctttttcctcgttaagccacatctcagagcacttacgctctgggcaagaaacttgacgagctttgcagataatcaaaaaaacatctgatgataaaactgaattgcgggatcagctgtgatttgctccagtcttcgcttttcgacaccccggtaaaggagtcgagaaagaagagaatggcagcaacaatcaacacaccgcgcaacgcaccgaaacagacgcccagcacccgatcggtgcctgacaaccccgttttctccaccaactggcctatcacgaagttcacgatagcaccaacgatcagggtagcgataaacagtaccgcgatggcaatcccatttcgaaccagttcgtcttcaaagcccgtaaaccagactgacaggtaagtgtagtaatgactggcaacaaagaaagcacaaccccatgtcaccagcgataacgcttcacgaacaaagccgcggatcaggctaaccagagaggaaaaagcaatcaccgcgattatggcgtaatcaatccagaccatatgtgtcccacgattttacgccctgtcatcctgttcggggcgcattctaacagaaaaagaaaacgtttgcgtagggatttccttcccgcgcatcaataaaaatggcgctgaaaaaatattcaacgccatcgactttttatgcctttgcggcatcgggcaatgcgtgtcggatgcggcgtaaacgccttatccgacctacggttctacccctgcgtaggcctgataagacgcgccagcgtcgcatcaggcaagaccgtattaattcggcgtatagcccattaccacgccacttaagccagaaagttgcttcaactcacccagcgaacctttcagcttatctttcgaggcatccggcccaaccagaatacgggtaattttaccctgcactggcgtggatggcgacgtataaacccgataaccggcaccgcgcagcttaccgacaatctcattcactttatcggcatttttcagcgcacccagttgcacaacataggctttacccgtcggtgcagctttttcttccacgaccggcttcggttctggcttcggcgcaggtggtgcttcaacctttggtttaggcggctccaccggtttcggcttcggtggggcgaccggtgcaggttccggttcaaactcggtgttattggctgcaatagtggccggatcgagcgacggtgctgcggcatcacctgcccgcacttcttccgctgcgccttccggcggctgcgtcggtaacgcctgggtggcggctggcatcatatcaggctcatcacgatcgcccgctttcggcaccagcgggatagccgcgaactcatcctgataatgttttttctgcccgtccagcagccctggaagtacaatcacccccagcgccaccagcacgatcgtgcccactaaccgattctgaaacttacttgccaccgcttctcctcgcgtcaatcacttccatgacatgtgcgaccgtgtggaaagaaccacacaccagcacggtgtcttccgctttagcgtccgccattgcggcatcccatgcctgcgcaacgctatcaaatgatttgccgttacccaaatgctcaagcagttgttctgccgtggcaccgcgcggcccttccagtggcgcacaataccagtcatcaaccacgcttttcaaccaggccagagttccggcaatatctttatcatgtagcataccgataaccgccagcacgcgcccgtttttcggtagcgctttcatacgcccggtgagatattccgccgcatgtggattatgcgcgacatcaaaaataacgcgtggcgactcgctcacaatctggaaacgtcccggcaaaattgcgctggcaatcccgtcgcgaatggcattttcactgacttccagcccgctggcacgcagtgccgccagcgctgttgcggcattcggttgcgggacaagcggcaacggcagattttccagcgtgccgtgagcatcgctaaacgcccagtcatgatcggtgacggaatagttccactcaacgccccgacgttgtaacagtgcacctttttcctgcgccacatcagcaatggtagaaggcatttccggctcaccgacaattgccggtttttcgctgcggaagatgcctgctttctcgcgaccaatactttcgcgatctggacccagccagtcggtatgatccagcgcaatactggttactaccgcgacatcggcgtcgacaatattggttgcgtccagacgaccgcccagccctacttccagaatcaccacgtcaagttgtgcctgcttgaacagccacaacgccgacagcgtaccgtactcgaaataggtcagggaaatatcaccgcgtgccgattcaatctccgcaaaagaggcggtgtgggccgattccggcaattcctggccctgcacacgtacgcgctcggtataacgcaccagatgaggcgaactgtagacgcccactttgtaccctgccgccatcagaatcgactccagcgtacggcaggtggtgcctttgccattcgtacccgcaacggtaaacacaaatggcgctggtttcaggacgccaagacgcgccgcgaccaggctcacgcgctcaaggccgagatcgatagttttactgtgcaggttttccagataagaaagccacgaagccagaggcgacgcggcttgaggagtgcgtttgataatcatggtatccgctgattcgttacggtgagaatagcaaaagggcagagccagtggccctgcccttatcagttatcaggcctcaggttcctgatccggtaccgggggtaccactacgccttcacgcggcgcttcaggattcggcgctggcagattcatcaacttcgccagaatgctcgccagtttcaggcgcatttccggacgacggacgatcatgtcgatcgcgcctttctcgatcaggaattcactgcgctggaatccaggcggcagtttttcgcgaacggtctgttcgataacacgcggaccggcaaagccgattaacgctttcggttcagcgatgttgagatcgcccagcatggcgaaacttgcagaaacaccgcccatcgtcgggtcggtcagcacggagatgtacggcaagccgcgctcctgcatttttgccagtgccgcagaggttttcgccatctgcatcagcgacatcagtgcttcctgcatacgtgcgccaccagaggcggagaagcagatcagcgggcagttatcttccagcgcctgctcaacggcacgcacgaaacgtgcacccacaacagaccccattgaaccgcccataaaggcgaactcgaatgccgcagcgacaaccggcattccatacagagtgcctttcatcaccaccagcgcatctttttcgccggtttctttctgcgcagatgccagacggtctttatacttcttggagtcacgaaacttcagcacatctttcggctcaagctcgctacccagctccacaaggcttccttcatctaacaggctatgcaggcgattacgcgctgtcatacgcatgtgatggtcacacttcggacagacctcaagattacgttccagctcagcgcggtataaaacctgaccgcagctatcacacttagtccacaccccttcaggaatgctcgccttgcgggtgggagtaatgttgcttttaattcgttcaatccagctcattagggacctttctgtctgaacctggttcgatgccagttttatctttggggacgcataatgccatttttgcccccaacagaccatgaatgttgcacattaaaacataacagcccgaaactttggataaaaaagtggtcgaaccgcggagttactttttattttgcggcgcgtgccgcagcgcgtttgtgacggattatttcgatgacgcccggcaaaatagaaaccacaataatcccgacgatcagcagcttaaggttatcctgaaccatcgggattgtaccgaagaaatagcctgcgtaggtaaaaagcagtacccacaacagtgcgccgatcacgttataagcggcgaaatgacggtacgacatgtggcccattcccgcaacaaacggggcgaacgttctgacgatcggcacaaaacgggcgagaataatcgttttgccgccatgtttctcataaaactgatgggttttgtcgagataactgcgacggaaaattttcgaattgggattactgaacaacttttcaccgaacaaccgcccgatagtgtaattgaccgcgtcacccacaatcgcggcgatcagcatcagcaccaccatcatatggacgttgagatcgttggtttccagtgatgccaacgctccggcaacaaacagcaatgaatcacccggtaaaaacggcgttaccaccagaccggtttcacagaacaaaattaagaacaaaatggcataaacccagacgccgtactccgcgaccagctctgccagatgcacgtcaatgtgcaggataaaatcgatgaggaaataaatcaggtccatatttgcctatgccttgtactcgtcatctttcaggctgtaactacgttggctacagcctgaaatgttccgagcattattctcgttagtccgccagaaatagcgggcccattggcggttttggaagatcataccggtcagggtaatccaccgcgaccagatacagcccttccgcttttgccgttgctgccgccagcgttctgtcctttgccgccagcaactctgctatccagctctccggctggttgtgggcaccgacttccatcaggctgccgacaatattcctgaccatatgatgtacaaaagcattcgctttaatatctaccaccacataaggaccgtgacgcgtgacattaatatgcataacgttgcgccacggggttcgggactggcactgcaccgcacggaacgaggtgaaatcattctcgcccagcaagcattgcgcagcccgatgcatccgttcagcgtccagcggttcgtaaaaatgggttacccctttactcagtaccgccgggcgcagccgatgattgtagatgatgtagcgataacggcgagccgtggcgctaaatcgggcatgaaaatcatcaggtacagttttaacccaacgcacagcgatgtcaccaggtaaattcgcatttacgcccaaggtccacgccgcgtctttgcgcagcgcggttgtttcgaaatgcacaacctgcccggtaccgtgtacccctgcgtcagtacgcccggcgcagaagacggtgatgggttcgttcgccacctgggagagcgccttttccagcttctcctgcacactgcggacttcgttctgccgttgccagccgtaatacttactgccgtcgtactcaatgcccagcgcaattttataaactggcggttgttgctggtcggacattagtacagatactcctgcaccagtttctcggcgatttttactgccatcagcgcgccgccaaagcgaacgttatcggccaccgaccagaactggacttgctccggcataccgtagtcattacgcacgcagccaacagaaagatgcggcgtacccgaagcatcacctacctgagttgggaattcgttctcttcagagagcacaatatcttcgccttgaacaaacgcatcacgcgcttcttctgctgccagtggacgcagagcttcaaagttgaccatctgggcatgaccgtagaataccggtgcctggacgacgctagccgaaatcatcagcccttcgtcctgcaggattttgcgtacttcgtcaacgatacgacgttcttcacgcacgctaccttcgctatccggcagtaacggcagcatgttgaacgccagctgacgcccgaagaaatcttcttcgtcaatcggaatgccgttgagcaatttcgcactctgccccgctaacgcatcgaccgcttttttgccctgggcggaggctgaaatcaggctggtaacgctgatacgtgataaaccgccctgatcgattaacggtttcagtgccgccagcagctggctggtcagactgtctggtacggcgatgacattccggttccggtaatctgtcagtacaaacgggtttacttccggcaccaccagcggtacgtcgggttcgagagcaaacaatccactgctgtcgatcaccaggcaacctgagttggtcgcttcttcaacccaggcagcggtagcttctttgcctgcgacaaaaaatgccagctgcgcctgcgtccagtcgaattcagcggcatcctgcacggtgattgtcttaccaccaaagcgcagttgttcgcctgcgctttcgttacgtgccagtgcataaatttccccaaccgggaactgacgttcagccagcgtttcaagcagggcttcgcccacagcgccagttgcgcccaggacggcaatgttccagccttcagacatggtggtttactccagaaatagcaaagctccctgccaatgttacagcagagagcatgaagaagagattaacgtgccggatgatgaacggcgttaaaacccagtttacacagcaatgatgccgcactggcgtcatcacaaattacatacagagatgaccattcacggcgctcaagatagtttttgcgcagtttatcgaactcacccggtatcccggcgactttacgcagcggtgcgtcatcgcggcgcacatcatacaccaaatgcaccagccttttcagcgtcggttgatcgagcgggccatgcagcgtaatgcgaccaaactctggcgcaggcagtaatgtatccagcgcaacgtgctgttcatgcccaataaacttgctataagcttcaaacacttgcgtagtaccgcgtgctttaccttccagggtatagcctgcgatatgcgacgtgccgatatccacttttttcagcagctcgacgttgagttccggttcgccttcccagacatccagcactacgcttaacttctggccttcattcaggcaggtcagcaacgcagtattatcgacgactgcgccacggcaggcgttaatcagaatcgctccgggcttcaggctacggatcagtttttcatccgccagatgtagcgttttgtacggaccatctttaaagagtggcgtatggaaagtcagaatatccgcgcgctggactaactcatccagcgagcggaaatcaccctcatccccacggtcggcgcgaggcggatcgcaaagtaaggttttaatccctaacgcttccagtcgcgcctgcaatcgacgtccaacgttaccaacgcccacgatccccaccgtacggtcgtacagtgaaaatccatcgcgttcggcaagcatcagcagggaggagaaaacatattccaccaccgcaatcgcattacagccaggtgcagcggaaaaaccaattcccgcctgcttcaaccatgcttcatcgacatggtcggtccccgcagtggcagtgccaacaaatttaatgggttttcctgccagcaaagattcattcactttcgtgaccgaacgcaccatcagcgcatccgcgtctgccagttgagcgacggggattggacgcccgggaaccgcggtcacctcacccaaacggctaaataagtcgcgggcataaggcatattttcatcaacaaggattttcacgtttgtgttacctgtatgagacgagagttaaccggacaagtgtgccataatctcgcggccaggcatacttgcgaagatttcaggtataaggatacgtaatgatacaacctatttccggccctcctcctgggcaaccaccaggtcagggagataatctgccgtctggcacgggcaatcagcctttatccagtcagcaacgtacttcgctggaaagcttaatgacgaaagtgacctcactgacgcaacagcaaagagcagaactgtgggcgggtatcaggcacgatattggtctgtcgggagattcaccgctgctttcgcgtcacttccctgccgctgagcataatctggcgcaacgtctgctggccgcgcaaaaaagccattctgcccgccagcttttagcgcaattaggggagtatttacgtctggggaataatcgtcaggcggtcacggattatatccgtcataactttggtcagacgccgctgaatcagctctcaccggagcaattaaaaaccattctcaccctgttgcaggaagggaagatggttattccgcaaccacagcagcgcgaggcgaccgaccgtcctttattaccggcggagcacaatgcgctaaaacagctggtgaccaaacttgcggcggcaacgggggaacccagcaaacagatctggcaatcgatgctggaactttccggggtgaaagatggcgagttaattccagcgaaactgtttaaccatctggtgacctggctacaggcgcgtcagacgctaagccagcaaaatacgccgacgctggaatcactacagatgacgctaaaacaacctttagatgccagtgaactggcggcgttatcggcatatatccagcaaaaatatggtctttctgcgcaatcatcgctttcttctgcccaggccgaggatattcttaatcagctttatcaacggcgggttaaagggattgatccgcgtgttatgcaaccgctgcttaatccttttccaccgatgatggacacgttgcaaaatatggcaacgcgtcccgcgctgtggatactgttagtcgcgattatcctgatgctggtctggctggttcgttaaccccgacgaaatgacagtatcgtgacaataatacccagcaccgcagagatcgccccggcaagaaataccgaagagtaaccaaacgtggtcgccagcattcccgccagcggcccggagacgccgagggcgatatcctgaaacgcggcgtaaccgcccagtgcggtgccgcgaacttgtgaggggacgcgtttaaccacctccacgcccagcgcaggaaagataagcgaacatccggctccggttaacgccgcgcccgctaatgcgacccatgcacctggggcttgccagagcagcaacaagcccaccgtttctacaagcagagagacaatcgccactttcacgccgccaaaacggtccggcatccagccaaacatgacgcgcatcacgacaaatgcgccgccaaacgcggtaagagtaaagcccgccatcgcccatcctttgctggcaaagtagagcgaaacgaaagtcccgataacagcaaaaccaacgccttgtagtgccagacctaaccctggtttccagataagcccgacaacgctccacagcgatggacgttctcccgccagggccggtactttgcgcactgtgccgttacaggcccacgccagtacgggtaataccattgtggtgatcgccagtgcggcaaaaccgtaatggctatgaatcaacaggccaagcggagcaccaacagcgagggcaccgtaaatcgccattccgttccatgacatcactttgccagagtgttttggccctacgatgcctagtccccaggtcagagcgcctgtcagtaactggctttcaccaaagccaagaatcaaacgcccgacgaccaacagagcaaatttgaacggtgcggagacaggcaaaatcgccgccagcagcaacgcgccgccagccagaccacaagctaacattccctgaagcgccgaacgttttgcaccatattgatcggccagtcgcccggcgtaaccacgcgtcagcaccgtagccagaaactgaatcccgacggcaatgccgaccatggtattgccatagcccagttcatgatgaacaaacagcgggataaccggcaacggcaaccctacggtcatgtaggtgagaaaaaccgcaaaagcgatgcggaagagcgaaaaattggcagaagatcgtgtttcggtttggcttacagcagtcatgcattactccagaatgcagcgcaaggcgaggagtatccccgtctcatctctctggtttcagggttacggtgcgttggcaggatttaacgcgtacgtcttttcagaaggaaatcgacaaagcgggaagtttgcctggaactggcggcgattgtcaatgatgtgaaaaagggaaccatcaggttcccttttgcgttagtgccggaggccgcattggcgcgtaacgtcggatgcgacgctggcgcgtctactccgacctactgcgaattaatctttcagcttgcgcattaccagcgtggcgttggtgccgccgaagccgaagctgttagacataacggtggtcagttcgcgatcggtcgtttcggtcacgatgttcagacccgcagcctgctcgtccagctcttcaatgttgatgctcggggcgataaagccgtgttccagcatcagcagagagtagatagcttcctgtacgccagcagcgcccagagagtgaccggtcatggctttggttgcagaaatcgccgggctcttatcgccgaacacttcacggatagctgccagctctttcacgtcgccaaccggagtcgaagtaccgtgggagttcaggtaatcgattggggtatcaacgccatgcatcgccatcttcatgcagcgtactgcgccttcgccagacggagcaaccatgtctgcaccatcagaggttgcgccgtagccaacgatttcagcatagatgtgagcaccacgcgccagcgcgtgttccagctcttcaaccactaccataccgccgccgccagcgataacgaaaccgtcacggtgagcgtcgtaagtacgggaggctttttccggggtgtcgttgtatttagtagacagcgcacccattgcgtcgaattcgcaagccatttcccagcacagctcttcgccgccgccagcaaacacgatgtcctgtttgcccagttggatctgctctactgcgttaccgatacagtgtgcggaagtcgcacacgcggagctgatggagtagttaacgccatgaattttaaacggggtggcgaggcaggcagaaacgccggatgccatcgctttggtgaccacatacgggccaaccgctttcaggccgcgcgggccgcgcattgcgtcagcgccgaacacctggaaacgcggggagccgccgccggaacctgcaatcaggccaacgcgcgggttattctggtaagcttccggagagaggcccgcatcagcgattgcctgctccatagaaaggaatgcataaatggatgcgtcgctcataaagcgcacaactttgcggtcaatgaggccagtggtatccagttttacgttgccccagacgtggctacgcatgccggaatccttcagctcctgagagaaagtgatccctgaacgtccttcacgcagagatgccaggacttcctgctggttattaccgatgctggaaacaatgcccaggccagtaatcactgcacgtttcattcaatacctctgtaagtcgcacatagagtaagtttcgaatgcacaatagcgtacacttgtacgccgaacaagtccgatcagccatttaatagagaaatttgcgcagccttacacacatcgctaagatcgagccaccgcctgtaagacgagtaacttacgtgaaacactactccatacaacctgccaacctcgaatttaatgctgagggtacacctgtttcccgagattttgacgatgtctatttttccaacgataacgggctggaagagacgcgttatgtttttctgggaggcaaccaattagaggtacgctttcctgagcatccacatcctctgtttgtggtagcagagagcggcttcggcaccggattaaacttcctgacgctatggcaggcatttgatcagtttcgcgaagcgcatccgcaagcgcaattacaacgcttacatttcattagttttgagaaatttcccctcacccgtgcggatttagccttagcgcatcaacactggccggaactggctccgtgggcagaacaacttcaggcgcagtggccaatgcccttgcccggttgccatcgtttattgctcgatgaaggccgcgtgacgctggatttatggtttggcgatattaacgaactgaccagccaactggacgattcgctaaatcaaaaagtagatgcctggtttctggacggctttgcgccagcgaaaaacccggatatgtggacgcaaaatctgtttaacgccatggcaaggttggcgcgtccgggcggcacgctggcgacatttacgtctgccggttttgtccgccgcggtttgcaggacgccggattcacgatgcaaaaacgtaagggctttgggcgcaaacgggaaatgctttgcggggtgatggaacagacattaccgctcccctgctccgcgccgtggtttaaccgcacgggcagcagcaaacgggaagcggcgattatcggcggtggtattgccagcgcgttgttgtcgctggcgctattacggcgcggctggcaggtaacgctttattgcgcggatgaggcccccgcactgggtgcttccggcaatcgccagggggcgctgtatccgttattaagcaaacacgatgaggcgctaaaccgctttttctctaatgcgtttacttttgctcgtcggttttacgaccaattacccgttaaatttgatcatgactggtgcggcgtcacgcagttaggctgggatgagaaaagccagcataaaatcgcacagatgttgtcaatggatttacccgcagaactggctgtagccgttgaggcaaatgcggttgaacaaattacgggcgttgcgacaaattgcagcggcattacttatccgcaaggtggttggctgtgcccagcagaactgacccgtaatgtgctggaactggcgcaacagcagggtttgcagatttattatcaatatcagttacagaatttatcccgtaaggatgactgttggttgttgaattttgcaggagatcagcaagcaacacacagcgtagtggtactggcgaacgggcatcaaatcagccgattcagccaaacgtcgactctcccggtgtattcggttgccgggcaggtcagccatattccgacaacgccggaattggcagagctgaagcaggtgctgtgctatgacggttatctcacgccacaaaatccggcgaatcaacatcattgtattggtgccagttatcatcgcggcagcgaagatacggcgtacagtgaggacgatcagcagcagaatcgccagcggttgattgattgtttcccgcaggcacagtgggcaaaagaggttgatgtcagtgataaagaggcgcgctgcggtgtgcgttgtgccacccgcgatcatctgccaatggtaggcaatgttcccgattatgaggcaacactcgtggaatatgcgtcgttggcggagcagaaagatgaggcggtaagcgcgccggtttttgacgatctctttatgtttgcggctttaggttctcgcggtttgtgttctgccccgctgtgtgccgagattctggcggcgcagatgagcgacgaaccgattccgatggatgccagtacgctggcggcgttaaacccgaatcggttatgggtgcggaaattgttgaagggtaaagcggttaaggcggggtaatctgctctcgcagtgtttgccggatgcggcgtgaacgccttatccgacctacgtgtgacgtgtaggcctgataagacgcgataagcgtcgcatcaggcatgctgctccagacgccgcaacttactgctgtgacgcctgctgaaacaggttttcccacatatcggtcaccagcgcctggtcacgcggcgacaattcaccagcaccaatggctttttccagactctggctaacggtcgtatgcaccgcctgagcggagtggtcatcaccactttccagttctgcgatggctaatgtcaggtggccacgcaaatacccactggcaaacaactcatcatcactggcatggtcaaccataccgtcgattaatgccagaatgcgtgattcaaactccgcgatcatcttctttcctcattgtaaaacgtggcgctggcttcagttgagcgcttccggccacgggaactgttccgccgtaagttccggcgtgtgataataattttgtagtgctttaatgaagcgtgccggacgttccggaatgccatttgtcagataatccatcacctgcgcatgtactcgccgttgaaacaccacacgatccggttcgaaatccccttccagattgtcgcaactgacgttaaacggatatcccgccgccacacagaacaaccagtcgagcgcctgcggcttcacttcaacatcttcaaactggctttgcgtttgggcatcgcgtccgtccgggcaataccagtagccgaaatcaaccagctcacggcgcgctttcccggcaatacaccagtgcgaaatctcatgaattgcgctggcataaaagccatgagcaaagacgattcggttatacggtacttccgcatcagcaggaagatagatcggttcgtcgtcgcctttaatcagacgggtattaaaatcatcggcaaagcagctattaaaaatttcaatcaactgctcgtagtggtgtgtactgttcattagttcatccccaaccagtggaggatctcctgtccgtggctgtcgtaaagtaatttggcactcatcaccgccgagacgataacaatcatcgggcggatcagcttttgtcctttgctcaacaccagtcgtgaacccatgcgcgcgccgaggaactgccccaccagcatgacaaagcccgtcgcccaaatcactttgccgccgagaataaacagcagtaaaccgccgatgtttgacgttgcgttgagtaatttggcgtgagccgtggctttggcgaggttaaatccgcacagcgtaacgaaggccagcgcgtaaaacgacccggcagccgggccaaagaatccatcataaaaaccgacgcagccaccggctattaacgcgaagggtaaaccgtacatccggcgctggcggtcttcttcacctagctttggcatcagcaagaaatagaggccgatacaaattaccagaatgggcaaaatctgccgtaagacatcagcctgaacgtattgcaccagcagtgcgccgctcattgagccgacaaaggtcatggcgatattgagtttctgatcgcttaaactaaccactttgcggcgaataaagtagatagtagcggaaatagagccgccgcaggcttgcagtttattggttgccagcgcattagcgggagacatccccgctgccatcaatgccggaatggtgagtaacccaccgccaccggcaatcgagtcgataaatcccgccagcatggcgacaaaaaagagaactcccagcaacagcggggaaaccataaacaggctattaaacgtttccattagatcacgtgctcatccagtagcgcctggcaggaaggcggcaacggaggcggtgtcttcttctcaggctttgttgttcccggttttggaggttcaaaccagctttgcagttctgccccgcaaccatcgcctgatggcggtaaaggttgatcttcacactccagactatcggcagggcaacgtaatcgtacatgcatatgcgcgcgatgctggaaccagggtcgcactttgcgcaaccagtcgcgatcggtgcccgcatcaaggcaaagttgttgtttaatcgccggattaacaaaaatgcgcgtgacgtctttgtcctgggcggcgagtttgatcaagctgaaaatttctggcttccacagcgtggagacaacgtgtttaccgtcgcgggaaactaagtccagtgcttgcgggcgcaagagctgcgcggaggtccagcgagttttcggcagttgcagaaagatatcgacatccagtccggtctggtggctggcatgaccgccgttgaaacgcccaccagcgggcatccccatatcgccaatcagcaccgtacccatgcccagattgctcacctggctactcagacgctggataaacatcaccagatccgggtgaccgaaatagcgacgctgatcggtacgcatgacctgataatgttcggactgtatcggcagcgtgtcagcgccgacaatacagccattagaaaaactgcctatcgattgtgcgctacccggcacaggttgggttattttttgccacggcgtcgctgccaggctggcgctactggcaagcagagccagcagcgcaatcgcggttttattcattttttaccagcgtggaatatcagtcttcacatcggcattttgcgcccgttgccgtaacaggtgatccattaaaacgatcgccagcatcgcttctgcgatcggcactgcgcggatcccgacacagggatcgtgacggcctttggtgatcatctcaacttcttcgccaaagcggttaatggtacgacccggcacggtaatgctggaggtcggtttcagcgccatatgggcaatgatttgctgcccgctgctgataccgccgagaatgccgcccgcatggttgctctggaaaccgtctttggtgatttcatcgcggttctggctgccgcgcagcgccaccacgtcaaagccgtcgccaatttccacgcctttcaccgcgttgatgctcatcagcgcatgggcgatgtcagcatccaggcggtcaaagaccggctcgccaagtccggcaggaacgccactggcaacaacggtgactttagcgccgatggagtcgccctcttttttcagcgcacgcatcaactcgtctaacgcgtcgattttgtcggggtccgggcaaaaaaacggattttgctcgacctgcgaccagtctttgatatccagcggaatgtcgcccatctgggtcaggcagccacggatttcaataccaaatttctcggcgagatattttttggcaatagctcctgccgccacgcgcatggcggtttcgcgggcggaagaacgtccaccgccgcgataatcgcgcagaccgtatttttgttcgtaggtgtaatcggcatggcctggacggaaaacgtccttaatcgcactgtaatcctgagagcgctggtcagtgttttcgatcaacaagccaatgctggtgccggtagtaacgccttcaaaaacaccggagagaattttgacctgatccggctcgcggcgctgggtggtatagcgcgatgtcccagggcgacgacggtcgaggtcatgttgcaggtccgcttccgtcagcggaatgcctggcggaacaccatcgacgatgcagccgagcgccagcccgtgcgattcgccgaaggtggttacgcgaaagagttgtccaattgtgtttccagccatcacggctccgttattgttgtgtttgcgtgtttacttaatctttataaatcgcgaaatgttctcgtgcggcaataagctgctctttggtgagcataaacacaccatcgccgccgttatcaaactccagccaggtgaacggaacatccggatattgttccataagatgtaccatgctgttgccgacttcacaaatcaacacgccatcatcagcaaggtaatctgccgcgttaccgagaatgcgacgcgtcagtttcaggccgtcagtgccagatgccaggcccagttccggctcgtggcggtattcgtttggcaggtcggacatatcttccgcatcgacatacggcgggttagtgacaatcaggtcgtactgcactttcggcaagtcgcggaacagatcggaacgaatcggaatgacgttgtggatcagaccgtgttcttcgatgttctgttcagcaaccgccagcgcgtctggagagatatccaccgcgtcgacttctgcatccgggaaggcataagcacaggcaatggcgatgcagccgctaccagtacacatatctaaaatatgctgcggttgcttgctgataagtccggcaaatttattgttgatcagttcaccaatcggcgagcgcggcaccagcacgcgttcatcgacgtaaaattcatggccgcagaaccacgctttgttggtcaggtaagccaccggaatgcgttcattgacgcggcggatcacgcgttcaacaatacggtgtttttcgctggaggtcagacgcgcggtgcgcatatcttccggaatatccagcggcaggtagagcgaaggcaacaccagctgtacggcttcatcccacgggttatcggtaccgtgaccgtaccagatatttgccgcgctgaagcggctcaccgaccagcgcaacatgtcctgaatggtttgcagctcatttactgcttcatcaacgaaaattttatccacgtattcctccagggcatgatcgcaataatttcggcggctagtttgccatgaagatgacgataaatcagcattcacgcgcggtgagtgaggaaaaatacgtttaaaacgatcgattgcgctacgagtcgggtaaactgtaggaaaattagaaatagagacagataaatgaaaaagaaaacaacacttagcgaggaggaccaggctctgtttcgccagttgatggcggggactcgcaagattaagcaggacacgattgtccaccgaccgcagcgtaaaaaaatcagcgaagtgccggtgaaacgcttgatccaggagcaggctgatgccagccattatttctccgatgagtttcagccgttattaaataccgaaggtccggtgaaatatgttcgcccggatgtcagccattttgaggcgaagaaactgcgccgtggcgattattcgccggagttgtttttggatttacacggtctgacgcagctgcaggccaagcaggaactgggggcgttgattgccgcctgccgccgtgaacatgtgttttgcgcctgcgtgatgcatgggcacgggaagcatattttgaagcaacaaacaccgctgtggctggcacaacatccgcatgtgatggcctttcatcaggcaccaaaagagtatggcggtgatgcggcgttgttggtgttgattgaagtcgaagagtggctgccgccggagttgccctgaggagttgagcgcgttgcgccaggtacgggtaatggcaggggcgaatgcccctgcctggtgtatctaagggctacaactcattcagtatgtactggaaccggcaagtagaatcgattggctgcatactgctggtatcaacacgcacgaccatatcgtgtaactgtttgtccgttatagggtgtcgatttggcgtgaccgagacttccgccttgtcacatcccgacgcggtaaaagttatcatctgtgcaacccagcggcagtaaccacctgtttcattcatctgcgtactgtcgcacaacttcccatctttcatcaaatacgttgaaagcgttttctcaaccacaccgcccgtcgactgcagggtgagcagttttgacttactgacataattctcattccatgaaacgtcataaggttgaacagaaacggatggacaaatcgtgtcgtgactatcaggcccctgatacgtcacgccccctggagaggcttcagagtcattcataataaccaaccatggacaagaaaagtaagattcaatctctgcagagacaataacctcaaatgtataatacccgcagttccacccagacggtaatccaggacaacttgctttgttgatattttgatggtagccaatcagcttaaccgaaggggcaggaggaggaccactccagctcacattttgcaatatttccccagtcatgagccattgactacttttatattcaccaacgtacactgcggatggcatcattatttttaaattaaaagtcgcaatattacgcgaatcaccgttgtaaccgtagtaaacgtcaacgctatgcccggcagccatagcttctgtagtagcaataagcatgaccagagcgaacaaccatcgtagtattttcattttaaatatactcaaatgtcgcagttaaagaggcggtaaattcaccgatcgtcacatcacggccgcttttcgcctgtagccaggctctgaaattgatatcgttattgccattggttagcgcaaaggtcgccccatttgtattgttgatggcaacctgcattccgtcggttttttccatgccaattcccactccctgagcggttgatgacgtatccagtgccagaaaaccgggttgttcgctgtcttctacccccgtgagcgtgacttttacgttgtatcccgccggccctttgcaatctttcagcttaaagactacgggtacacgagcggactggcctgcaacgttcaaatcctgacgactgaccgtgggaaagcgcacctctgccagatattggccatccaccaccagcgcacaggatttacttaataaattaccggagaaatgcagattattatctgccgcgaataacgtgctactcattgccaatatcagccccgctaacaggacgtaaccaccggactgaatcattgatttattcattgataatccacccgtaatgttgcgtaagccgaaaaattcgtatcgcttaacacagcatcactcgcttttaccggtacggcctccagcttcggcttttgcgtaaaatcagtggcgttgatagcaagcggagtattgagtttaaaacgctgaccatcgtgctgaagctcgataccaaaaccgggtacatcagtttcaattgctgcatcattaaaactggtttgtgtaccagtccaggtgagggtcatctcccaatctggatgacgggtcgtcgagtcacaagtgagttcatatggcacctctttacgaccatagttgccgttgatgtcgtcgataatgagatcgcgaaattcgacttcaatggttttaccaccgctgatgctacaggttggcggtgacaataatgtcccgtgaaaggtgatgtcttcatcagcagcatgagctatggcgctactgacacaaagcagggttaagaaagtctttctcattgatagtccaccaccatggtcaaactggcgttaaactcgcccgcagcaagttgcgccccgcttgccttcacaggtacagccttcaactgtggctggttattgatattaaatggcgtccagctattttcaccgacggcaaacaatgagttatcggcgctattttctatccgaatgcccagcccggtgatattggtactgagtaccgtttcgccgttaatcgttgaggtattgcccttaagttgcatccgcaagtcgttagcaagactgtttgtgcagttcaacgtgtatttcgcatcttgccgataattggtgccatcaacgttatcagcaatcatattgccgaactctacctggctgcccttgattgaacagggtggcggagcatcgaccaacacgcgcagaattaaatccacgggtttactaccagccatagcagataaactacagacactgcataccagcagccctgcgcccactacaaacttttgactcataactccccccgtcatcagcctttgcggctctgctcttcatccacctggcagctgttgccattgcactggaagaacagcggcatccgtgcgccaaagtcgttgacgtaagtcagcaccggtacgctatccattttcacattcagcggtaccgtggttttcggctcaatgaccagaggcgagaaccctgcagctggattaccgtttttctgcgcactggcgttgctgataatcacgtagtacggcgttgggttattgacggtaaatgcctgaccgctgcgggtgagcgtcaccttgtgctgccacggacttttcatactgaccttttccagcgcctttggtcgccagaacaacttgatacgcgtttgcagcgcgatttgcagggtattgggtttgtttgattttggcgggatctcgcgcacgttaaagtagaacatgctttcacgatcggctggcaatttgttgatatccggcattccctgcacttttacctgcccgttcatcattgaatcgatgcgttgcactggcggcagcacagttaacggcgaggtgatcttgttacccttttcatcttcaatccagctttgagccagataagggagtttcggatcgttattacgcagcgtcacgctgattgatttgtcgctttcattaaatatcaaacgggtacgatctggcgttacagacgccagggcagacaaactggtagcgctaagcagtaacgccagcgtcatagcacccaatttggcagagcaaagtaaatcagacatggatcattccttaatcacgttattggttagctgaaacagaaacagggggatcggtgggtgtcacctgttgcgtctgctcctgaatgacaggctttatgtcatcaggaacaaccggcgcgacgttgcctttatgctggcatggcagtaacaagccgttaaacagatcggcaggcagcgggtccggcaggttgatatcgcaatgcgcaacaccactccagaacacactcatatgttcgccaggtttcaccccagccagatagacactaccgtcatcatcgacaaggcccactgtctgctcgttatcattttttacttctgcgccaaacggtggatggctgccatcttgtaaacgcagcaccgccatcgctttttgaccactgatgacggcaaatttgcggtagccaatggctccttcagttagcgtggcttgcaccaccgactgggttgcttcggcgttttccggcaatttgttgaggtcgatatacgcctgattgcgataataattgttaacgtcagaaacgacggctttaccaaacatattggtataaacagcagccccgttaccttccaccggaacatcggcaacgccatcggcatcaatcagcaggcgtgtcccgcccatattctgggtacggtgaagtgcgccgccgtgggtagtaagcgttgcgccgccctgtaacgacaagcccgcagaggtgtattgcccttcatggtagttcgcactgaggtcaacctgcgccagcgaaccatcatggctgtagtagccatcaacgctggtgtgtttgtcactggtgccgatgttcaactgatagtgagtcgcgtcatcgacacggctaaaataaccgacctggctgctgtccgtcccactgccatagttgccgttatagctaacggtactgttgtcgccccacggcatactgagcgaaatctacatgcccttatccgcccggttgtcatactcgtagcggtagccagtcagggaaacgctcatattacgaatgctgcccatattgaaatagtgggagagcatgatgttgtagtttgtctgctcctcacgatcccagtaggtatggcgggtatagttgagataaaccgaaacacccgcatcgcggaagttctggttataagtggcggtgtacatctctttgtcgttgcccgtacggaccatttcgctgtcactggcatccagatactcgctcatggtcataaagttctcttccgagaagcgatatccagcgaaagtgacgcggctgttgagctggtcaaagtctttggaataactcacacggaaggagttaccgtccagcgaacctttgccataagcggtgtctttatccagtttggtatgcgaatgagtaacatcaaacgcgaccgcgccgaaggtagacaaatcgcgaccgacgcccagcgccgcagactgatagttttcatcacccagcgcaccgccatataacgaccagccgttagcgatgccccaggaggcttcagcaccagagaaaaatcccccctcgacatggtggccccactcttgcggacgtcccatcatgatcttatagcgaacctggcctgggcgagtgaggtatggcatcgaggcggtgctgatgtcatattcctgcacctggccgttctgttcttcaatgcgaatatgcaacgtaccggagacggaatcaccaagatcctgaatacgaaacggtccagccggaacctgcgtttcgtaaatcacacgccccatctggctgacggtcacttttgctgtggtgtgtgccacgccggaaatgtctggcgcgtagccgcgcagattgggaggcaacatttgatcgtcagtgctgacactgccaccaacataattaaaaccgtcgaaaatatcggaattgaggtaatcttcgcccagcgccagtttggcttttaatgacggtaacgcccgccaggcataatagcgactccactcccattttttttgtgtgtcatcgccgccaaattcatcgtcatcatcattactgcgcgtatgttgatagttggtctgccagtcagcgcgcatacgccatggccccaggttaaccccgaccgtcccgttgccgctgatctcgttactgtcatcgccgccattttcttcgtgtcgtgtttgcgcagtgatgctgtagtccgcaatgatcccggagatgccatcatcccaacgagaaggtggatcccagtcgggccaggtatattcgaggtaagcctgcggtagtgaaatgactaatgcggactggcttaaatcagccttaatttccacgccttccagttgaccgggcttcaggcatttaccatcgtggctccattgcagatttttcgccacgtcttcttttaaaccaaactgcgccaccagttccggtgtcagacaagcatagcttttgctaacgtcatcttcaccagcataccagtaaatatcgtactcttccgccaatggctgtttatttagttgaacctgtaaattgtattttccgggctcaacatacccctggctggaaaaacgcttcagatcaatttttgtgtcgccttttaattccagaaaacgggaatcaaactgaatgtcgtcttcagcccagacactgctataactccctgacattgccagcgcaatgcaccacggaagaatccgtaatcgaaaaagagaatggtcaggcatacacgtttttatccgtttttattcttgttcggtcaaaatccatttaaataccccatagcagtgtcgctatgggggtatgccttacaggtaagtaatctggaaggtggtatttgcttcgaaattacccagatctggcgcatcagctgcgccgaccagccaggctttaaagttcagagtctgcttcgctttgcctttattagtggcagtatctttcacgattttctggtcaatacccatgccgcttttgtaagaggtacccagagagtcaccgatcgccaggctaacattgttaaatgccgcaccggtatcggtattgaaaatggtgtaataattgccgctatttgcagaagaaacggtaccagtaaaggtagtggtcattgtttcctgagtatcaaatacgcaatcttgcaggcgaatctggaaatttttcggcgtggtggtgccgttatttttcagtttttcggcaccgatatcacccatatcaacttccagtttgtgatcgtccggaacgatagaacacactgagtcttcaatggtgccgtaaaaacgtgcagtaccgttgttacccgcagcgattgttgccgtagaggtgaacgcgcccatcaccattgccgcagcaatagctgttttaacaaacttactcattatttgtccttaaactataaataattaaaatataaacattgcaatacattgattcagtcaatagccaatgtttatacccagccattgaatacggcatgcgatccaaaaaaacaggtcgtaaaaaatgtattcgttggtgtggggtcgaatagtgatgttttcactcccctgattcaatttaattttactaatgagtaaatgtagatttaattaatatattgataggggaaagattatcttaaggatcttctaaaaaaacacgaaatatatatttagaaaaaacaggaagcatatcaacaatgaatgccaatagcttaaaaaacaaacaatgaacatataatgcgattggcattaacccgcttttgtcgatataatatataaacactatagccagaatttaatcaagtttcaattacgtcctgcctgattattcaactctattttctccattatctgtattaataaatgataatgagtgtcaaacagacattattcatttcaacatgtaactttgggcaaaatcaagatacgcgcagaagaatactttccgaatgaaagttaaaggtgttttatttatagatggggagagtcttcgatagtagtgaggttgacagatatccgctgcctgatgagcaattatgcccaatgaatctacctcattgggcataatttggaactcatcagatagcttttgccatcttcagattacacgggctcatctgccagttgaatgtgccgtttccgctttcatcaagcgttacgctggcaatggccgaggtggtaaacataggcggcgtttcgcccggacataactcggcaaccagatacccgactaacggtaagtgagagatcaccagtaccgaagcaacaccttcattggtcaacgcctgcaaataggcactgaccagaccaacatcgccgcagggcgttaactccggcagaacttctgcactggaaggcaggttcagacaatcccctacttcttccagtgtttgctcggctcgcaggaacgggctcaccagaacgcgttcgatttccactttttgacctttcagccagttcgccatcaggcgagattcgtcacaaccattagtggtcagaggacgaacggaatcactggcggcatcgagggctgcgtcgccgtgacgcatgataaaaacttgcatattgcaccgcttttgttaaccagattcgcccgttttctttcatctgaaaccagagaaagaaaacggtggccggcattgtgccttatccattcaccgaatgaaacgctgttttttacctcaatggcgtaagtatagtcaatatgcgtttacattttgaccaacactccgccattcagcgcggattcatatagctttgaccttcttattgcaggtcagttgcagttgttttccaaaaactttccccacgcgcgcccatctcgaccaaacgctcgcaaggggtaaaacgggaaccatactgcgtggcaagtcgttgcattattgcaaccacttcgcccgcgccgagagaatcgatatagcggaacggtccaccgagaaatggcggaaaaccaatgccaaataccgcgccaatatccccgtcacgcacgctacggataacctgctcatcaacacaacgtactgcttcattcagcatcaacatcacacaccgttcagcaacctgcggtgcggagattcgcccctgcccttgtgtgccaatcagcgggtaaatggcgggatcgacctgttttttgcttttacgccctttctgaccataaagatagaaaccccggccattttttctgcctttgcgatcgtcgttcaaaattgaagaaacaacatttgcaggcgcgctaaaacgttctccataagcggcttccagtacaggaataattttagtcccggtgtcgattcctacctcatccaaaagttggattgggcctaccggaaaaccaaatttcactagcgcggcatcaatgtgctctacccgttcaccttgggtcaacatgcggatagcttcattaatgtaaggcgctaagatgcgattgacgtaaaaaccggctttgtcacgcacgacaattggcgttttaccctgttttttcgccagttttactgtggtagcgatggtttgcgccgatgtccccgcatgaggaataatctccaccagcggcattttttccaccggactgaagaaatgcaggccgataacttgctcaggtcgcgtggcgtgagcggcgatatcaccaatcggtaaagatgacgtattcgaagcaaagatggtatgagcggcgcaattttgctcaacttccgccaccatctgttgtttcaattcgagattttcaaacaccgcttcaataatcagatcgcgatgggcaaagccgcgatagtccgtcgttccggagattaatgccagctgtttgtcacgttcgctggctttgagatgacgacggcgaactttgccctccagctgatcccaactgtacttcagcgcatgatttatgccctgcgggttgatatctttaattctgaccggaatccccgctttacaagcagtgacataagcaataccgccgcccatcaagccaccacctaaaatccccacgctgtttaatggcgcaggcggcgcatcactgccgggatctttcttcacgtccgtactggcaaaaaagatactacgcagcgcctgcgattgtggcgtcatcgccagttcgccaaacgcccgagcttcggcgtcataaccgctgctggtgccctgcgctaatcccgtttcaacaacctccaggatgcgttctgtcgccggataattgccttgagttttgtgttctgttttcttgccgaccattttgaacagcagcgcacgacctaacggccccgccagaatacgctcgcgtacaggtagagggcgggaagatgggcgctccttctttgccagctcaacagcggcttccagcagaatggagtgcggaacaacgtcatccaccagccccagctttaatgcctgtttcgcccgaagttgttttccggtgaggatcatctctaatgctgtgctgacgcctatcagacgcggtaaacgctgggtgccgcctgaaccgggtaacaatccaagttgtacttcaggcaaaccgagcaccgttttaggatcgtcagtacaaacgcgaccgtggcacgccagcgccaactccagcccaccacccaggcaagcgccatgaatagccgcgataacctgaatgggcaaagcatgaatctccgccatcaactgttggccctgccgcgccagagcttccgcttcttgcgccgttttgcagttgccgatcatgttgatgtctgcgccagcaatgaagttgtccggtttagcggagacaaacaccacgcctcgcaactctttgttttcacggagttgcttaataatggcgcgcacctgcgaggcaaactccgccttcagggtattcattttctcacccggtacgtcgatggtgataacggcaatgttgtccagacgaacattaagggtaaacgctgatgtcatttccattattccgcctccagaaccattgccgcgccaagcccaccggcagcacaggcggtaactaaaccaaatccaccgccgcgacggcgaagttcatgcaatgtctgggtaatcatccgcgcgccggtcgccgcgaagggatgcccgtaagcaatcgaaccgccaagcacgttaaatttgctatcgtccacttcgccagtggcatgtgcacgccccagtgcttcacgagcaaaacgttcactacccagcaactgaatattcgccagcgtctgagctgcaaaggcttcgtgcatatcgatcaatgtcagatcgctcatcgtcaaaccggcacgctccagcgccagcggtgttgaccaggctggaccgagcaacatgtcctgccagacatcaatcgcagtaaatgcgtagctgcgcagataccccagcggcaccagccctaattctttcgcccgggattcagtcatcaggatcaccgctgccgcgccatcggtcagcggcgtactgtttgccgccgttaccgttccgtgtttgcgatcaaacgccgggcgcagctttgcgtaatcggcaagcgaggaattaccgcgaatattgttgtcttcgacaagcggttgtttataaggagggataaaggcagtcatcacctcttctttgagttttccgtctgaccatgcctgagcggcacgctgatgcgaacggtgcgctaatgcatcttgctgttctcgggtgatgccgtaggttttcgccatttgctctgcggtgtcgcccatccgcaagccggtagaatattctgctaccgcaggtggtacgggcattaagtcgcgcaaacgcaggcgagagaagagtttcagtcgctggctcatggtacgagctttgttgacatcaaccagcacgcgcgccagttttttactgacgccaattggcaataccgaagaggaatctgccccaccggcaatccccgctcgaatagttcccgccatcaggctttctgcgacgtttgcaactgcctggaaactggtagcgcaagcgcggctgacgctgtaagcatcggtatgtacattcattcccgtaccgagaacaatttcacgcgcaatgttgggggcttcaggcatttgtacgacctgaccaaagaccagttgttcaatcacttcggcggggatctcgctgcgtgccagcagttcgcctaccaccatcttccctaaatcaaccgcgggaatgccatgaaaagccgtcgcctgacgggcaaaaggcgtacgtaaaccgctaacaatggcgatacgatcgccctggcgggtaaccagcggtaaaacctgacccataacactcccctgtaaaaaaataaataaagtggtctgacctgatcatagtcttaaccatttttttacatttagccaagtggagaaaagggaaagtgggagctatgacacagagagaaaagaagaagagaaaagaaaacgcccctgccagcaactgacaggggcgtacgtacccgagaggaattaacgcagacccagctggaaaatcagcatttcagcttcgcaggcaaaagtgaaatcgatatccaggcgcacaccgtcagactcttcagtgaaagtcggggtgattttgcaaggttcagattccacgctacgggctttttcagtcagcgccgccagcgtttgctctgcttctgcgcggtttgcaaacacgcggctgtaagacgcggtgcagtcggagttgtccataatggtgccaacatccatacagcagcaaaccggggtttcatcagcactacatttactcatcgttgatttcctctgtatgtgcacccaaggtgccagataaacgttgtggatattttacgcttccggaaagtgctgctccagttgttaattctgcaaaatcggataagtgaccgaaatcacacttaaaaatgatctaaaacaaaattcacccgaatccatgagtgcgccacctccaaattttgccagctggatcgcgtttcttagatcatatttgaaaaaagatagaaacatacttgcaacattccagctggtccgacctatactctcgccactggtctgatttctaagatgtacctcagaccctacacttcgcgctcctgttacagcacgtaacatagtttgtataaaaataaatcattgaggttatggtcatgagccagaaaaccctgtttacaaagtctgctctcgcagtcgcagtggcacttatctccacccaggcctggtcggcaggctttcagttaaacgaattttcttcctctggcctgggccgggcttattcaggggaaggcgcaattgccgatgatgcaggtaacgtcagccgtaaccccgcattgattactatgtttgaccgcccgacattttctgcgggtgcggtttatattgacccggatgtaaatatcagcggaacgtctccatctggtcgtagcctgaaagccgataacatcgcgcctacggcatgggttccgaacatgcactttgttgcaccgattaacgaccaatttggttggggcgcttctattacctctaactatggtctggctacagagtttaacgatacttatgcaggcggctctgtcgggggtacaaccgaccttgaaaccatgaacctgaacttaagcggtgcgtatcgcttaaataatgcatggagctttggtcttggtttcaacgccgtctacgctcgcgcgaaaattgaacgtttcgcaggcgatctggggcagttggttgctggccaaattatgcaatctcctgctggccaaactcagcaagggcaagcattggcagctaccgccaacggtattgacagtaataccaaaatcgctcatctgaacggtaaccagtggggctttggctggaacgccggaatcctgtatgaactggataaaaataaccgctatgcactgacctaccgttctgaagtgaaaattgacttcaaaggtaactacagcagcgatcttaatcgtgcgtttaataactacggtttgccaattcctaccgcgacaggtggcgcaacgcaatcgggttatctgacgctgaacctgcctgaaatgtgggaagtgtcaggttataaccgtgttgatccacagtgggcgattcactatagcctggcttacaccagctggagtcagttccagcagctgaaagcgacctcaaccagtggcgacacgctgttccagaaacatgaaggctttaaagatgcttaccgcatcgcgttgggtaccacttattactacgatgataactggaccttccgtaccggtatcgcctttgatgacagcccagttcctgcacagaatcgttctatctccattccggaccaggaccgtttctggctgagtgcaggtacgacttacgcatttaataaagatgcttcagtcgacgttggtgtttcttatatgcacggtcagagcgtgaaaattaacgaaggcccataccagttcgagtctgaaggtaaagcctggctgttcggtactaactttaactacgcgttctgataacgcgttcgcctggataaagtcacctgcatagcaggtgactttaactcccccacttcaccgaaagtagtgtcctcattgcttacctcctgagttttgcaaacagcctgttggcagcttgccctttcaaatcaataagcggtatccacagacaaacctgaagggaaaggcatattttcaggcgttctgctcgtccttctcaaagagtttacttttctgcatttccaggatactccccccccctggctattgtgcgctcatacactcaaattaaagataggttctaaataaatgagcgttttttgatagtctatttcattaggtaatatatatttgtaacaaatcaatcaaaatggaataaaatcatgctaccatctatttcaatcaacaataccagcgcagcttacccagaatccatcaatgaaaataacaatgatgaagttaatggattagtacaagagttcaaaaacctttttaatggtaaggaaggaataagcacctgtattaaacatctacttgagcttataaaaaacgccatacgagtaaacgacgatccttatagatttaatattaataattcctcagttacttatattgatattgactccaatgatacagaccatattactattggtatcgacaaccaagaaccaatagaattacctgcgaactataaagacaaagaactcgtccgtactatcattaatgacaacatagttgagaagactcatgatatcaataacaaggaaatgatcttcagcgcattaaaagaaatatatgatggagatcctggttttatcttcgataagatatcacacaaactcagacatacggtaacggaatttgatgagagcgggaaaagcgaaccaacggacttatttacctggtacggtaaagataaaaaaggcgactctctcgctattgtaattaaaaataaaaacggaaatgattacttatctctcggttactacgatcaggacgactaccacattcaaagaggaattcgtattaatggtgatagtctcacccaatattgtagtgaaaacgccaggagtgcttcagcgtggtttgaaagcagtaaagctatcatggcagaatcatttgcaactggttccgatcatcaggttgtaaacgagctcaacggggaaagactgagagaaccaaacgacgtttttaaacgttatggtcgagcaataagatatgattttcaagtggacgatgcaaaatataaatgcgaccatctaaaagaaatagtttctactttagtcggtaacaaaattaacgttggccattctcaaaaaatatataagcattttaaggatctcgaaggtaaaattgaagaaaggcttcaaaatcgccaggctgaatatcaaaatgaaattaatcaaccatctgcgccaggtgttaattttgatgatatttaaaattatttttccagttttttgatttttcaacagctgaatatcggaaatagtcagtgacgaacatcagtatttttacataattacgtctaggtcattgtcggtttatctccttttacttgtggtaattgagggataacaacaaaaaaggtgagttttgcgactcaccttttttatttgtttcttattcagaatcaatatcttttaaatcatcctgaatcgcttgtgcgttcggattttcctgcggtttgagttcgccgccattagcgatgaaatcatgacgctggaagtacgcttcgcgcaccataatataaggatcggacgactgacgcagcagaccatcggaatccagcagctgagcgcgggtttcgatcccttcaagcgtccatttacccacagacatcggccaggtcagccaggaaagaaccgggtaaaaaccatccgccatatcaccaccgtcatcacgcagcgtgaagctaccgtagaacggtaactgaacgtaaggcccataacccacgccataatgaccaagcgtactaccgaagcggtgaggttcagtccgttgcagtttcgggttcgccatccctgcaacatcaataaaaccgcccatccccaaaatggtgttcaggaaaaagcgggtaaagtggaccatcccctgataagggtcgccctgcaagaagtagttaaccatcaccgcaggttcttcaaggttgccagtaaagttgctcaaaccgttacgcgccggttgcggaacataatcacgccaggcgacagcgaccggtcgaacaatatacgggtctaatacattgaagttgaagttgtacatggtgcggttgaacccttctaacgggtcagaacgcccttgctgatctgtaccggaactcgcacaccccaccagaagcgtagttcccagagcaagcgccgacaggcgaagcttcataaatgtctccctgtttttttatggcttatgcagtttgccatccatgacggaacgataccgtatccgcctgtttaggtgtgggcgattgtaacagcacgtcaactgatgtccagacgccctgatttgctgatttgatcatagcctggtaatcgccgccctgtaggctacttgattctatagaaacagaaaaaggcaaacgcagccttttctacattttcagagtaactcccgtcagttgcgagcaaaaaagccgctacgctttagctatacgtgctaattcaagagaagagaccatggacaacgacaaaattgatcaacacagcgacgaaattgaagttgagagcgaagaaaaagagcgcggcaaaaaaatagaaatagatgaagaccgactcccctcccgggcgatggcaattcatgagcatatccgccaggatggtgaaaaagagctggaacgcgacgcaatggcgctactgtggtcagccattgcggcgggtctgtcgatgggcgcttcgttactggcaaaagggatatttcaagtcgaactggaaggtgtgccgggcagcttcttgctggagaatctcggttatacctttggttttattatcgtcattatggcccgccagcaattatttaccgaaaataccgtgactgcggtactacccgtcatgcaaaaaccgacaatgagcaacgtcggcttacttatacggttatggggcgtcgtgctgctgggtaatattctcgggacaggtattgcggcgtgggcatttgaatatatgcctatcttcaatgaagaaactcgcgatgcatttgtcaaaatcggcatggatgtgatgaagaacacccccagcgagatgtttgccaacgcgatcatttccggctggctgatcgccactatggtttggatgtttcctgcagcgggtgcggcaaagattgtggtgattatattgatgacctggcttattgccctgggtgacaccacccatatcgtggtcggttctgttgaaatcctctatctggtgtttaacggtacgctgcactggagcgatttcatctggcccttcgcactacctactttagcggggaacatctgcggcggcacctttatcttcgcgttaatgagtcatgcacagattcgtaacgacatgagcaataagcgtaaagcagaagcacgccaaaaagcagaacgtgcggaaaacattaagaaaaattataaaaacccggcataaatggcgagggtttaagcaatcgagcggcagcgtacttaccccgcactccattagcgggtatactcatgccgcattgtcctcttagttaaatggatataacgagcccctcctaagggctaattgcaggttcgattcctgcaggggacaccatttatcagttcgctcccatccgtaccagtccgcaaaatcccctgaatatcaagcattccgtagatttacagttcgtcatggttcgcttcagatcgttgacagccgcactccatgacgggtaaaaagtggataaaataattttacccaccggatttttacccatgctcaccgttaagcagattgaagcagcaaagccgaaagaaaaaccataccgccttctcgatggtaatggcctgtacctttatgtccctgtgtcagggaaaaaggtatggcagcttcgctacaagattgacggtaaggagaaaatcctgaccgtcggaaaatatccgcttatgactttgcaggaggcaagggataaagcatggactgcgaggaaagacatctcggttggcatcgatcctgtaaaggcgaaaaaggcttcgtctaacaacaattcctttagtgcgatttacaaggaatggtacgagcacaagaagcaagtatggtcagtagggtatgcaactgaacttgccaaaatgtttgacgacgacattttacctatcattggcggccttgaaattcaggatattgagccgatgcaactgctggaagtaatccgcaggtttgaagatcgcggtgcaatggaacgagccaacaaagcacgcagaagatgcggcgaggttttccgttacgctattgtcaccggaagggctaaatataacccggcacctgaccttgctgacgccatgaagggataccgcaagaagaacttcccgtttcttcctgcagaccagatcccggcattcaacaaagcactggcaacattttcaggaagtatcgtatcgctcattgcgaccaaagttttacgctacacagccctaagaacgaaagagcttcgttccatgctatggaagaacgtcgattttgaaaataggattatcaccatcgacgccagtgtgatgaaaggacgcaaaattcatgtggttcctatgtcagaccaggtagttgaacttctcactacgctaagctccatcaccaaaccagtctcagagtttgtttttgccgggcgcaacgataagaagaagccaatctgcgagaacgcggtactgcttgtgatcaaacaaatcggctatgagggtctggaaagcggtcacggattcaggcatgaattcagcacgattatgaacgagcacgaatggcctgctgacgctattgaagtgcaactggcacatgcaaacggcggatctgtgcgtgggatttacaaccatgctcagtatctcgataaacgcagagaaatgatgcaatggtgggcggactggcttgatgagaaggtggagtgagcgaccttaacaactatcgaatagcacaaagtcttgcaatccagtgcaaagctttgtgtgtataagttttgtctcatcaaccacagcaagtatcgatcgattaagacttggatgatagacttcattcctttgattattagctgatagaagaaatgttaaagctatttgcaaagtacacctctattggtgtgctgaacacccttatacactgggtggtttttggtgtttgtatctatgtcgcgcatacaaaccaagctcttgcaaacttcgcaggtttcgttgtggctgtgagctttagcttcttcgcgaatgcaaaattcacattcaaggcatcgactacaacgatgcgctacatgctatatgttgggttcatggggacactgagtgctactgttggatgggctgctgatagatgcgcacttcccccgatgataactcttgtcaccttctccgccatcagcctggtgtgcggtttcgtctattcaaagttcattgtctttagggatgcgaaatgaagatatctcttgtagttcctgtcttcaatgaagaagaagcgataccaattttttataaaacggtacgtgaattcgaagaattgaagtcatatgaagtggaaatcgttttcataaatgacggcagcaaagacgctacggagtcaatcattaatgctctggctgtttcagatcctctagttgttccgctgtcatttacacgcaactttggtaaagaaccagcattgtttgcagggttagaccatgcaaccggggatgcgataatcccaattgatgttgacctgcaagacccgattgaggttattcctcatcttattgaaaaatggcaagcaggtgctgatatggttcttgctaaaagatctgaccgctcaactgatggacgcctgaagcgaaaaacggctgagtggttctataagctccacaataaaataagcaatcctaaaattgaagagaatgttggtgatttcaggctgatgagccgtgatgttgtcgaaaatattaaacttatgccagaacgaaaccttttcatgaaaggtattctgagctgggtaggaggaaagacagatattgttgaatacgtgcgagcggaaagaattgctggagatacaaaatttaatggatggaaactttggaatttagcacttgagggtattacaagcttttccacattccctcttcgcatctggacatacatagggttagtggtagccagtgtagcatttatttatggggcgtggatgattttagatactatcatatttggaaatgctgttaggggatatccttcactacttgtttcaatactgtttttaggtggaattcagatgattggaataggagtattaggtgaatatattggacgcacatacattgaaaccaaaaaacgcccgaaatacatcatcaagagagtcaaaaaatgaataaagcaataaaagtatcattgtatatatcttttgttttgattatttgcgccttatctaaaaacataatgatgttaaatacatctgatttcggaagagccattaagccattaattgaagacataccagcatttacatatgacttacctttattgtataaattgaaaggtcatattgattcaattgatagctatgagtatataagttcatatagttatattttgtatacatacgtcctgtttattagcatttttactgaatatcttgatgctagggtgttatcgttatttctaaaagtaatatatatttattcattatatgcgatatttacttcatatataaaaacagaaaggtatgtaactttatttacattctttattttagcttttcttatgtgttcttcatcaacactgtcaatgtttgcatcattctatcaagagcaaatagttataattttccttccatttttggtgtattcattaacatgcaaaaacaataaatctatgcttttgctatttttttcgttgctaataatatctactgctaaaaatcaatttatattaaccccactaatagtgtattcatattatattttttttgatagacacaaactaattattaaatctgtaatatgcgtggtgtgcttgcttgcgtcaatatttgcaatatcttattcaaaaggtgttgttgaattaaataagtaccatgcaacatacttcggtagttatctttatatgaaaaacaacgggtataaaatgccatcgtatgttgatgataagtgtgttgggttagatgcctggggtaataaattcgacatatcatttggcgcaaccccaacagaagttggaacggaatgtttcgaatctcataaagatgaaacgttttcgaatgcactctttttattggttagcaaaccaagcaccatcttcaaacttccatttgatgatggtgtgatgtctcagtataaagaaaattatttccatgtatataaaaaactacacgtaatatatggagaatcaaacatactaacgactattactaacataaaagacaatatatttaaaaacattagatttatatcattgttattattttttattgcttctatttttattagaaataataaaataaaggcatctttatttgtagtatctctttttggaatatctcaattttatgtgtcatttttcggggaaggatatagagatttaagcaagcatttatttggaatgtatttttcgttcgacctttgcttatacataacagtcgtttttttaatttataaaataattcaaagaaatcaagacaatagcgatgtaaagcactaagtttaaattgcgcgccaatcatggcgcgcacaagctataataccaacctaatttctcctcctcttagagtgactatatctcctgatagaattgcggtattgactatcaaatgccctgattcgttgtttattgtaatatctcctctatctgcagacgataacttaaatgcatcattgcccacaacaaaccccctccagaaccaagtgctgatattatcatcaacagtgatagatacatatactaactgattatcgttataagtgattcctgtcttatacttaacataaggacttccactttgattctcgatagacacataacatccaggggttatgtttgtatgcgtcccgcgactatcgccccattaacgccatacgataaatgggatggtgagaaatgggtgacggataccgaggcacagcatagcgtcgcagtagatgcagcagaagcacagcgccagtcgctgattgatactgcaatggcttccattagtctgattcaactgaaattacaggctgggcggaagctgatgcaggcagagacctcccgacttaacactgtgctggattacattgacgcggtgacggcaacagataccagcaccgcgccggatgtcatctggcctgaactgccggaggagtaggccattcaatatctggcgcactggaagtatcgaccagctccagtgcgtccagataatccagccacaaattatattgcgccagttcctcacctttcagacgaccaatagccgctttaccagcccattgtttactgttcatataatcgttggcctgattaatcaattgctgctttttcagttcggctgcagcaatctgttcctcatgtgttggtggtggaatttcagaccatgcaggaaaaccattttctccagcgatacggatttttcctttcggcggtaatccggaaaactcaatatacacttgctcatcaacttcaacagcatcatctggccatgagccagcttgcgtgtaatcctctttcatctccaagggatagaaagagtttgtagtcgcggaatatatgtaattcatttttcactccataaagttaaaagaaattaacaccctaatgcgaaaaatgaagcaccgataccgggtacgcctgctctggaaataaatttcaccgggtcctggttataaccggcacaagctatatagccaacatttgcactgccgggagtgtaatcctgagtcgcaaatacccgcagacatctattcggaaatgcaatcggaaaataggttactgtgtcctgagacgtcagcggaacatcaattggcccccattgaataattaaaccggatggcaatttttgatatccaggaactgaagcagaaagcataaaactacccatatcaggtatctgattcgcccctgtccctacatttcttttagccgcttctcccaaaccaaggttttcgagagccttttgcaccgtgccgtccaatttgatatcgccaaacggattcttgcggcttaacagcagcgcacgaagcgcggtaagcagctggtcatgccgccccttctccaggctggcaccggaggcctccacaacgctgcaaagctcctcctgcaacatgtcaaagtagtcatcatccagatcggtggcaggcgtgccggtctgggggttaccacgggtacgggggattaccaaaggcagcacctttaagctccgcaagacgttctgaccagtcatgcgccagcgcgttgtcttccgcagtgtaatacgcggcacatttggcgttatcaccatcagtaaacagatccagaacaaacgggccaaacagggtgttaattccccagaaaatgttgtccggcgtgcgccactgatcgcccacttccttcagttcatgggctggtttgttccgcagctccaccagcgcctggcaatatttattactcattaagcccccacgtaattccctgagagataccactcttcacctgatgcagcccgcttactgcttttccgtaaacaccgttcacgacgcgccagaaaattgtttcgttctggctgggagtggctttcacggaatgccgccatccacaccgttgcagcacgacggtataagcccctggactccagttcttccgcctggcgggtcaggcacaaaatcacccgcgggtcgttagtgccgacatagaaattgcgcacaggtctggtttcacgaactggttgtggttccggatcctgcgctctctcagtcaggcgcgggaaatgtctgtgtgtatctccttcacaacggtgagccacacgcccactctgacgtaacttgcttgctgactgcagaacgcgctgccgtgagtaacctgcaaaagcatccgcaatgtctccggaagtacagcccggatgggcttcaatgaatttctgaacgtcattcaaaagactcatgctcaccccctgaatcctgccgggatctggctgtagtccacattgtcgtaactggctttgaagtacgggtcttcgcgtttttctgtgtacgtgctgacggacggcgataagcgcagggaaagctcatcccatttttcccgcagcttcgacgggctgagcacgttacggcaccagaacggatcgcggctgacgcggctgtacatctcgcagatttgtttgtgagtacgaccatcctgcacacacatcaggcgaatttcgtttgcccaggctgtccagttcggttctttgggacgaaccacctcgccgtcacattcggcggcctgctcgtacagggcgatgatttttttccagagccactgtgcgcaggtcaaatcatcctgcgttccccactggcgctttttagggctgaatacaaccgcatcaggatggcgagttaaaaaatcctgttcatccgtctgcgtgtccggttgcgaagcgtccggacgagaaggttttttatctgacggatcatgttttgattttactgacggatccccgccagattctgacgggtgaaaacccgattttttgccagatttcgacgcatcaaattttgacgggtcagattttgatgcgtcagattttgacgggtcagagtctgacagttgagaaaatgccgctgcctgaagcttcgcaacgttaagctgataaacattcgacgcattgcggttatgatgaggagcagcaaaatggctagcgaacgcagtactgatgtgcaggcatttatcggggagctggacggcggcgtatttgaaaccaaaatcggcgcagttctcagtgaagtcgcttccggtgtgatgaacacgaaaaccaaaggtaaggtctcactcaacctggaaatcgaaccatttgatgagaaccgtctgaaaatcaaacacaaactctcatatgttcgcccgactaaccgtgggaaaatttccgaagaagacaccaccgaaacgccgatgtatgtcaatcgcggtggtcgcctgactattctgcaggaagaccagggacaattactgactcttgccggtgagcctgacggaaaactccgcgcagcaggtcattaatatcattcttaattaactaattatttatctcatcactgaatatcttaatatagtgaggacttattatgtctcagaacttagacgcaaccgcaattaatcaaatccatgcccttatttctgctcagggtgttaatgaaattatcagtaagattggtgccgatgctgtggcattgcctgagaatttccgcattcatgatctggaaaaatttaatttaaatcgcttccgtttccgtggtgcgctttccactgccagcatcgatgactttacccgttattctaaagatcttgcagatgaaggcacccgctgctttatcgatgctgataatatgcgtgccgtcagtgtgcttaacctgggtactattgatgaaccaggtcacgcagataacaccgccactctcaaactgaaaaagacagcaccgttctctgccctgttgtctgttaacggcgagcgtaactcccagaaatcactggcagaatggattgaagactgggccgactaccttgtgggctttgatgctaatggtgacgccattcaggcaacaaaagcggctgcggcaatccgtaaaatcacgattgaagcaaaccagaccgctgattttgaagataatgacttcagcggcaaacgctccctgatggaatctgtcgaagcgaagaccaaagacattatgccagtggcatttgaatttaaatgcgttccgtttgaaggtctgaaagaacgtccgtttaaattacgcctcagcattatcactggcgatcgtcctgtactggttctgcgcattattcagctggaagcggtgcaggaagatatggctaacgaatttcgtgatctgcttgttgagaaattcaaagacagcaaagtagaaacctttattggtactttcaccgcctgatttcattactgcaaatgcccctgcgggggcatttatggaaacgtaattaactcaataatcaccggatggtgagggcttccttttacccaaactcagcgcggtgcagcgcatatacgtggagaacaaaatgtcatttattaaaactttttccgggaagcatttttattatgacaagataaataaagacgacatcgtgattaacgatatcgcggtttccctttcaaatatctgccgctttgccggtcatctttctcacttctacagtgtcgcccaacatgcggtgctttgcagccagctggtgccgcaggaatttgcttttgaagcattaatgcatgatgcaacagaagcgtattgccaggacatccccgcaccactgaaacgccttcttcctgactataaacggatggaagaaaaaatagatgcagtaatccgtgagaaatacgggttacctcctgttatgagcacgccagtgaaatatgccgatctcattatgctggcaaccgaacgccgtgatctcgggcttgatgatggctctttctggcctgtactggaaggcatcccggcaacagagatgttcaacgtgattccactggcaccgggtcatgcctacgggatgtttatggaacgttttaacgatttatcggagttacgcaaatgcgcatgaatgttttcgaaatggaagggtttcttcgcgggaaatgtgtaccgcgagatctgaaagtgaacgaaacaaatgctgagtacctggtacgtaaattcgacgcgcttgaagctaaatgtgcggcactggaaaacaaaataataccagtgtcagctgaactgccaccagcaaatgaaagtgttctgttatttgatgctaacggagaaggctggctgattggctggcgttctctctggtacacctggggacaaaaagaaaccggagaatggcagtggacatttcaggttggggaccttgaaaacgtcaatatcactcactgggcagtaatgccaaaagcaccggaggctggagcataatgaccacatttaccaataaagaactgattaaagaaatcaaagaacgaatcagcagcctagaggttcgagacgatattgagcgccgtgcttatgaaatcgcactcgtatctctggaagtagagccagatgaacgcgaagcctatgaattattcatggaaaagcgtttcggtgacttagtagatcgtcggagagcaaaaaacggcgataacgaatacatggcatgggatatgactctcggttggatcatctggcagcaacgagctggtatccatttttcaacaatgtcacaacaagaggtgaaataatagagccatacagcctcacactcgatgaggcctgtcagtttcttaaaatatcctgatctaccatcgccgtcatagagcgtatttttattacctgatttgcaggttcgattccctattcggagatagcactcatgcaacacgaactacagcctgattcactggttgatttgaaattcatcatggctgatactggctttggtaaaaccttcatctatgaccggattaagtcaggcgacctgccaaaagccaaagttatccacgggcgagcaagatggttatatcgtgaccattgtgaattcaaaaataagctcttaagccgcgccaatgggtaaaatagcgggtaaaatatttctcacatctaaaaaacaccattccaatcaatcccctgctgcttcaagtagatgtctgcaggggacaccatccttgtgtttatccctaaaaccacataaaaaccgtaaattaaattcgaactagcaggccgaataaggcacaccaggaactcgtggttttattcattatgaagtggtttttacctgttctcttagccagataataaacgcttcaatttttggccactgcctgcccggtaatgtggtgatgtaataatgctgatggcatttcaccgtcatatcgccaaacggcgcgacgagctcaccactggcaagccttttttgtaccaggcgttttcttcccatcgccaccccaatatgattcatcgcggcaataacagctaaatcagaacgatcaaagccaattccagaagatgtcggcaaattaaccgcataatgttgcgcccaactatgccattcatccgtaccggagtcgttgctccatgcctgtctgtcatggagcaacgtacagtgacacaggttaattaccgtgttggttaaagcatgtctttgagcgtattccgggctacatactggcaggatttcttcatccatcagaaagtgatgagtgagttgcgctgacggcgcatcatcaaagtagatcgccaaatcgattccggcacgttgcagattgacgttgtcattaccagtgagcacggtgagcgaaatagacggataccggcgtgtaaagtcacctaatgcgggcaccaaccagcattgggcgatagagggccgggaatacagagttaacgttcccgataactcctgatttttgatatcaagaatttcctggttcagggtatccagcgacgattttagcgcccaataaacacgtttcccctcgtgcgttaattccactttgcgatgggaacgaacaaacaactgaatgcccaattcttcttccagctgattgatacggtgacttaccgcactggggctcagcgacaattcctctgccgccagggcgaaggactgatgcctggcagccacttcaaaagtatgcatttttgataattgccagccgttaagcagccgatttcttatttcacgaaggggttccataatcacctcatttttcgcttaagtgtaaaaaaatagcggcaaaatttcagctatgagatgagctaaagtgaaccatatctcaattcaccttcatttttagatgtaaatcactccattgatgcaatttacctcatgtgaaaggcaaattttatcgtttgtcagcctgcgttgtttttttgtccaatatcatcaggttaatcacaggggaaggtgagatatgcactctcaaatctgggttgtgagcacgctgcttatcagcatcgtgttaattgtactgaccatcgtgaagttcaaattccacccgtttctggcgctgttgctggccagcttcttcgtgggaacgatgatgggcatggggccactggatatggtaaatgctattgaaagtggaattggcggaacgctggggttcctcgcagcggttatcggccttggcacgatactgggaaaaatgatggaagtatccggggccgcagaaagaattggtctgacacttcaacgctgccgctggctttcagttgatgtcattatggtgctggttggcctgatttgtggcatcacgctgtttgttgaagtgggcgtcgtgctattgattcctctggctttttcaattgccaaaaaaaccaatacctcattattaaagcttgccattccgctatgtaccgcattgatggcagtgcactgcgtggttcctccacatccggctgctttatatgttgccaataagctgggcgcagatatcggttcggtgatcgtctacggtttgctggttgggctgatggcatcactgatcggtggcccacttttccttaaatttctgggtcaacgactgccctttaaacctgtacccacagagtttgcagatctcaaagttcgcgatgaaaaaacactaccgtcattaggcgcaacgttattcaccatactgctacccattgcgctgatgttggttaaaacgattgccgaattgaatatggcgcgtgagagtggtttgtatatcttggttgagtttattggcaaccctatcactgccatgtttatcgccgtgtttgtcgcctattatgtgttgggtatacgccagcatatgagcatggggacgatgctcacacatacggaaaatggcttcggttctattgctaatattttgctgattatcggggccggaggcgcattcaacgccattttaaaaagcagcagtctcgctgatacgctggcagttattctctccaatatgcatatgcacccgattcttctggcctggttagtggctcttattctgcatgcggcagtgggctccgctaccgtggcaatgatgggggcaacggcaattgttgcacccatgctgccgctgtatcccgacatcagcccggaaattattgcgattgctatcggttcaggtgcaattggctgcactatcgttacggactcgcttttctggctagtgaagcaatattgcggcgctacgctcaatgaaacatttaaatactatacgacagcgacatttatcgcttcagtcgtcgctctggcgggcacattcctgctgtcatttatcatctaagcgcaaagagacgtactatggaaaacgctaaaatgaactcgctcatcgcccagtatccgttggtaaaggatctggttgctcttaaagaaaccacctggtttaatcctggcacgacctcattggctgaaggtttaccttatgttggcctgaccgaacaggatgttcaggacgcccatgcgcgcttatcccgttttgcaccctatctggcaaaagcatttcctgaaactgctgccactggggggattattgaatcagaactggttgccattccagctatgcaaaaacggctggaaaaagaatatcagcaaccgatcagcgggcaactgttactgaaaaaagatagccatttgcccatttccggctccataaaagcacgcggcgggatttatgaagtcctggcacacgcagaaaaactggctctggaagcggggttgctgacgcttgatgatgactacagcaaactgctttctccggagtttaaacagttctttagccaatacagcattgctgtgggctcaaccggaaatctggggttatcaatcggcattatgagcgcccgcattggctttaaggtgacagttcatatgtctgctgatgcccgggcatggaaaaaagcgaaactgcgcagccatggcgttacggtcgtggaatatgagcaagattatggtgttgccgtcgaggaaggacgtaaagcagcgcagtctgacccgaactgtttctttattgatgacgaaaattcccgcacgttgttccttgggtattccgtcgctggccagcgtcttaaagcgcaatttgcccagcaaggccgtatcgtcgatgctgataaccctctgtttgtctatctgccgtgtggtgttggcggtggtcctggtggcgtcgcattcgggcttaaactggcgtttggcgatcatgttcactgcttttttgccgaaccaacgcactccccttgtatgttgttaggcgtccatacaggattacacgatcagatttctgttcaggatattggtatcgacaaccttaccgcagcggatggccttgcagttggtcgcgcatcaggctttgtcgggcgggcaatggagcgtctgctggatggcttctatacccttagcgatcaaaccatgtatgacatgcttggctggctggcgcaggaagaaggtattcgtcttgaaccttcggcactggcgggtatggccggacctcagcgcgtgtgtgcatcagtaagttaccaacagatgcacggtttcagcgcagaacaactgcgtaataccactcatctggtgtgggcgacgggaggtggaatggtgccggaagaagagatgaatcaatatctggcaaaaggccgttaataacgtttcaacgcagcatcgcaatcctttccctgggtgagcgatgctgccgatggcgcagacttaagatccccggtcttacccgctataaccccctccttttatcatcacccaacgcctttcgctgtaaacggcggtttcgcaaaccaaaccaaaaccgtaagtaagataaaagcaatagccgccatacggaaaatctcatttgcagaaatagaaagtgactgctgggttatttcattattaatttcattaagaactcctgaaagcgaaccataatatttatccataatttgtgacgatgaattaaacacggggttaaattgatcgatggttgctgtcaactgactatggtgtaacgattcgcgtcgtccccacagcgtcattgtcaacgacgtaccaactgatcctgacaaggtacgaaaaaaattactcatactcgaggcattggcaaatttattatctggcaagcctgaaaacgaaatcgttgttaagggtaaaaagaaacaggcaacggcgaatccctgaaaaaactgcggcaaaatgatgcctgtaaaatcaatcgttggcataaatgtcacagaacgccagtaatagcaaaccgcatacatcaaaaaactaaatgtcactaacaaccgcatgtctattttgttgccataacgtcctatcaaaggtgaaattaatagtggcatgatgccgatgggcgcataagcaagtccggcccatatcgcattataccccatcgtttcctggagtaactgcggcataaggacgatcgctccagagtaaaataaatacgcgcatgtgatactcacaataccaatggtgaagttacgggacttaaacaaactgagatcaagaatcgggttctctgaggtcgactcccaaatgactaaagagatcagagaaataactgatactactgttaatattattattgtactcgagttgaaccaatccagatcgcgccctttatcaagcataatttgcaagccaccaacaccgagcactaacagggtcagtcctggtagattcattttgaccggtgaagtctcagtttctcttcctttaagtaaggttaagcataatgtcaggacgataatccccatagggacattgattaaaaatatccaaccccagctaaagttatcacaaatataaccgcccaatatcggcccacatatcggagcgataatcacggtcattgaccataatgccagagcaaatgttcttttttctggcggataattccttaataataaactctgtgacagtggaattaacggccccgccattaacccctgaacgactctaaaaaatatcagcacatcaagattggtcgataggctacacattaatgaagacagcgaaaaaaaagtgactgaaagtaaaaataatcttaattcgcctattctttgtgccaacctgccagtaacagggatcgcaatggcatttgctacaccaaacgaggtgataacccaggtgccttcgtctgttgatgctcccagaaagccagatattgtcggtattgcgacgttagaaatagtggaatccaacatttgcataaatgtcgctaatgacaatgcaatagtgacgcaccataacgtcccaccggttaatggtgccggagttgatttagtgattgccattaaagttgtccattatgcgaaataatgttgctaatttctttttctatcggactggtatcgataactaaagccttactggtataagccggcatggaggtcacggttgaagccagctcaggcatctcggcaatgtcttcgttcttcgtatcaatagttgctgtcatcgataaaccaatacgcaaggggtgttccatgagttcttttggatcaagagaaacttcaaccggtacacgctgaacgattttgatccagttccctgtcgcattttgtgcaggtaataaggagaacgcattgccggttcccatattgatccctgtcacccgaccatgaaacacaacattttcaccataaagatcgctgataatattgaccgattgaccaatccgtacatccgtgagttgtgtttctttaaagttggcattaacccacatttgacgtgccggtacgacagccattaacgattgtccggggctcactgtttcgccgacctgaacacttctctgggcaatatagccggtaaccggactcttaatatccgtacgtttaagcgccaaccaggcttctttagttgcatccgccgcttcaacgacttgtggctgacggtttaatggtgtgttcattactaaagctttattcgctttataagcctggatagcggcattcaatgccgctttgctacttattaacgtatctttggtatgctccagcgtttcttttgaaataaccccctgcttcgctaacggcactcgacggttataatcttctaaagattgttgatactgaatacgtgctgaagcgacttcggcactgtattgtttatcctgtaagtatagtttattcgtttgccgaacaatatttgccagattatttttagctttattgagtgcgatagtggcatcagttttatccagtgaaactaaaatgtcaccttgtcgaacgtagttcgtatctttatgattaacgacagtgacactacctgagacttgtgcagaaattggatctgcattccccgtgacataggcgtcatctgtactaatcatgtcttctaattccattgaccaataggcataggcacctgaaaacgcaataaataaaactaccgccaataaagaaaagtattttcttctgttagaatgttttttatttgaattaatctgttccactattatctctcatttctcatagatgaaatttatgaattgaatgaaaagagcattcattcttcatatcaaacacagtgcatgtgttgcacattatcccaggaacgttggaggcctaatttaaatgaggtgcaaaaaaaacaacagaggactaaaccgtggcttttgcaatacaattcttacgcctgtaggattagtaagaagacttatagtgccaacttgaaactataaatcatcggtacaatccctgattttattgttgacatttcatttatgccgactatttatatggtatacttgtcgaattatcttaaaggaagctcagattttcttatttttattgagaaaatgagatgacgccttatgtctgtattactacagggagaagggagatgcttcattgcaaagggaataatctatgaacgcaataattattgatgaccatcctcttgctatcgcagcaattcgtaatttattgatcaaaaacgatattgaaatcttagcagagttgactgaaggcggaagtgccgttcagcgggtggaaacacttaagcctgatatcgtcatcattgatgtcgatatccccggagttaacggtatccaggtgttagaaacgctgaggaagcgccaatatagcggaattattattatcgtctccgctaaaaatgaccatttttacgggaaacattgtgctgatgctggcgctaatggtttcgtgagtaaaaaagaaggcatgaacaatatcattgcggctattgaagctgcaaaaaatggctactgctatttccccttctctctcaaccggtttgttggaagtttaacgtccgaccagcaaaaactcgactccttatcgaaacaagaaattagtgtcatgcggtatattcttgatggcaaggataataatgacattgctgaaaaaatgttcatcagcaacaaaactgtcagcacttataaaagtcgcctgatggaaaaattagaatgtaaatcactgatggatctttacacattcgcacaacgtaacaaaatcggctaaccacatgaagtttttaccctatatttttcttctctgttgtggtctttggtcgaccataagtttcgcagacgaagattacatcgaatatcgtggcatcagtagtaacaaccgtgtcacacttgatccactacgtctgagcaacaaggaattacgttggttagcgagcaaaaaaaatcttgtgattgcagtacataagtcccaaacggctacgttgttgcataccgattcgcagcaacgggttcgtggtattaatgctgattatttaaatcttttaaaaagagcgttaaatatcaaattaacactccgggaatacgcagatcatcaaaaagcaatggacgcgcttgcagaaggtgaagtcgatatagtgttatcacatttagttacttcgccgcctcttaataatgacattgctgcaaccaaaccattgataattacctttccggcgctggtaaccacccttcacgactcaatgcgaccgcttacctcaccaaaaccagtaaatattgctcgggtagcaaattaccccccagacgaggtaattcatcaatcatttccaaaagcaacaattatctcttttacaaatttatatcaggcattagcatccgtctcagctgggcacaatgattactttattggtagtaacatcattaccagcagtatgatttcccgctatttcactcactccttaaatgtagtgaaatattataactcgccgcgtcaatataattttttcttgaccagaaaagaatctgtcattcttaatgaagtactcaatagatttgttgatgctttaacaaatgaagttcgctatgaagtatcacaaaattggcttgatacaggaaacctggcctttctgaacaaaccattagaactcactgaacatgaaaaacagtggattaagcagcatcccaatttaaaggtgctggaaaatccttactcgcccccctattctatgacggatgaaaatggctcggttcggggcgttatgggggacattcttaatattattaccttgcaaacaggtttaaatttttctccgatcaccgtttcacacaatatccatgctggaacacagcttagccccggaggatgggatataatacctggcgctatttatagtgaagatcgagaaaataatgttttatttgctgaagccttcataacaacgccttacgtttttgtcatgcaaaaagcgcctgacagtgaacaaacattaaaaaaaggaatgaaagttgccattccatattattatgagctgcattcgcaattaaaagagatgtatccggaggttgaatggatacaggtcgataatgccagcgctgcatttcacaaggttaaggaaggtgaacttgatgctctggtcgcgacacagctaaattcgcgttacatgatcgatcattactatcctaatgaactttatcattttcttattcctggcgttccgaatgcatcgctttcgttcgcttttcctcgcggagaaccggaacttaaggatattattaataaagcactgaatgcaattcccccaagcgaagttctgcgcctgacggaaaaatggattaaaatgcccaatgtgaccattgacacatgggacctatatagcgagcaattttatattgttacgacattatccgttttattagttggcagtagccttttatggggattctacctgttacgctcagttcgtcgtcgtaaagtcattcagggtgatttagaaaaccaaatatcattccgaaaagcactctcggattccttaccgaatccaacttatgttgtaaactggcaaggtaatgtcattagtcataatagtgcttttgaacattatttcactgcggattactacaaaaatgcaatgttaccattagaaaacagtgactcaccctttaaagatgttttttctaatgcgcatgaagtcacagcagaaacgaaagaaaatcgaacaatatacacacaggtatttgaaattgataatggcatcgagaaaagatgcattaatcactggcatacattatgcaatcttcctgcaagtgacaatgcagtatatatttgtggttggcaagatattactgaaacgcgtgatctaattaatgcactcgaggtagaaaaaaataaagcgataaaggctaccgtagcaaaaagtcagtttctggcaacgatgagtcacgaaataagaacaccaataagctctattatgggcttcctggaacttctgtcgggttctggtcttagcaaggagcaacgggtggaggcgatttcacttgcctacgccaccggacaatcactcctcggcttaattggtgaaatccttgatgtcgacaaaattgaatcgggtaactatcaacttcaaccacaatgggtcgatatccctactttagtccagaacacttgtcactctttcggtgcgattgctgcaagcaaatcgatcgcattaagttgcagcagtacgtttcctgaacattacctggttaagatcgaccctcaggcgtttaagcaggtcttatcaaatttactgagtaatgctctcaaatttaccaccgagggggcagtaaaaattacgacctccctgggtcacattgatgacaaccacgctgttatcaaaatgacgattatggattctggaagtggattatcgcaggaagaacaacaacaactgtttaaacgctacagccaaacaagtgcaggtcgtcagcaaacaggttctggtttaggcttaatgatctgcaaagaattaattaaaaatatgcagggcgatttgtcattagaaagtcatccaggcataggaacaacatttacgatcacaatcccggtagaaattagccagcaagtggcgactgtcgaggcaaaagcagaacaacccatcacactacctgaaaagttgagcatattaatcgcggatgatcatccgaccaacaggctattactcaaacgccagctaaatctattaggatatgatgttgatgaagccactgatggtgtgcaagcgctacacaaagtcagtatgcaacattatgatctgcttattactgacgttaatatgccgaatatggatggttttgagttgactcgcaaactccgtgagcaaaattcttccttacccatctgggggcttacagccaacgcacaggctaacgaacgtgaaaaagggttaagttgcggcatgaacttatgtttgttcaaaccgttgaccctggatgtactgaaaacacatttaagtcagttacaccaagttgcgcatattgcacctcagtatcgccaccttgatatcgaagccctgaaaaataatacggcgaacgatctacaactgatgcaggagattctcatgactttccagcatgaaacgcataaagatctacccgctgcgtttcaagcactagaagctggcgataacagaactttccatcagtgtattcatcgcatccacggtgcggctaacatcctgaatttgcaaaagttgattaatattagccatcagttagaaataacacctgtttcagatgacagtaagcctgaaattcttcagttgctgaactctgtaaaagaacacattgcagagctggaccaggagattgctgttttctgtcagaaaaatgactaaatagcggctcccacaatgttcaaatgtgggagctatttaccagcacatcttacatttatgatgagaactcctggcgaatttgttccccatgctggtcgagcgttgccgctcccggcataacatgcgggtccgcgcagccgctgatttttatcggattacccggcatcattattcccccggcttcaatcaacatatttctcgcctgagtttgtggcaatttaatggcctcagccacacttaataacggcgcgacgggtacaccaacttcatgtattctggctaaccaaacttcagctgcctgcgtttttaacgtccgctcaatatattgtttaagaatagcctggttttgtacgcgtaaaatattgctgctaaatcggggatcattaaccagttccgtaagctccagtgcctggcataacgcagaaaaaagcttgtcattaccacaacaaatcgtaatcggcttatcctgagtattgaaaacatcaaaaggtgccatgtagggatggcgatttcccagacgttgtggtgacttcccagttgcgatatatgccatcagaccatgctccagaaaactcagcgtggcatcaaacatcgctatatcgacatgcgcccctctctggctcttttcgcggccataaagtgcactcactattccgctgaataaatagacaccgccgcatagatccgcaagagatgtaccaacgcgcactggcggagcatcaggatatcctgtttccatcattatcccgctcattgcctgaatgatggtatcgtaggcaggagcatcttttagcggaccggtatgtccgaaacctgacgatgaagcatatatgaggcgcgggttgatttcttgaagcgtttcccatgaaaaccccagtttttccattgtacctgggcgaaaattctcagctaatacatcagcttgtttgagcatatttataaatatacttttatcgtgatcattctttaaatcaagaaccacactctctttgccatgattaataaaactgtaatagagtgactgtccatccacatagggaccaaatgtgcgggtatcatcaccatgacccggcggctcaactttaattacccttgcgcccatattacaaagaagttgagttccgaaaggtccattaaggacatgtgtcatatcgataactaataagccttcaaacggccctttgctttcattatttgtcatttgcttatgccttgaaaaaagccgaaggtgaaaagacacttcggcatttatgtaaaatcaataacatgattaattatgaaaccagtcgactgacataaatccacaagggagccgtgacgacaaagcccagtacgctcacagccaatgacgctgtaccagtacgggtgtagacattaaaccggctggcaataatgattccggagaatgccggcggtaatgcgcctgccagtaccatcatctgcagatgttcgctgttcaaatgacatgccataccaacgagaagcagtgccagtggcatcagaatcagcttcaggaaggtgttataagcaatttcggcactgaactcgaatttatgtgcagccagagtcaaccccgcagcgaataccgctacccctgagttagccttcgcaatcagattaaaggttgggtcccatgctgccggaatttttaccccaaccaacaccaggatcgttgccagaacaggtgcccatactactggctcctttgccgcagaaattaatgcgctcagattactattcttcttaccatccgctcctgaagaaggattcagcaaatacagaccaataggaatagtaattgcgttaacaataatagaaataattgctaccactaaacctgttgatacggaatcaccataaataggatcgagaactgcaaaccccaggaatccaatggtaggtgaacctgcaattaatgcacatacagctgcttctgcatgggtacgtttaaaaaatttgtagcaaccgaaccaggagaaaaagaaacatccgacaataaccacaagtgatacaagggtcagacgagtgtccgcaaaaatcatttccctgtttgcccgagtaatagatacaaatagagccgcaggaagcgcgtagtttaataccagtttattaaatgcccgagcttgatcttctgaaaatgtttctcgtctgccgctaaaataacccaacagcatgattacgataataggcaataaatcgccaataaaaaatgttagcataatagtatttccgataagggtcccctcaccatcgcataatgagttggcaagaggagacgatgtcagtatttaattaccagcgacttgttttgggttaagtttggtaatatggccactttcagttcctgctgcagggtcgatgaccacattaataatggtcggtttgcgcgactgaataccggtggttaaagcatgacgaagttcatctgtcgtggtgacgttatagccaacgccacgaaacgcatccattaatttgtcataccttgcatggtgcaacagatccgttggtgatggtgcaccagcgccactgagatcaacaccgtctcctctgtagatgccgccattattaaaaataacgatcgtcaccggcaggttatatcgacaaatcgtttcaatttccatcccactgaaaccaaaagcactatcaccttcaatggcgacaaccggagaaccagaagtcacgctagcaccgatggcatagcccataccgatgcccatgacaccccaggtaccacaatccagacgacgacgtggtttatacatatcaataatatttcgtgcattatccagggtatttgcaccttcattaactaaataaatatcctggttctcgcgcaatacgtcgcgcacagcacttaatgcattaaagtaatttaatggttgagtatctgtacttaatttttcatgcattttttgtgcattttgctgcttgtggatatttaaaatatcgcgccataccagtggagtcgtaaatgtgttttgtttcagttctgccagcataccttgcatactggatgcaatatcaccaacgactggcacagcaatggggcggttgctgtcaatttcctgcggttcaatatccagttgaataaactgtgtatctgccgcccatccttttttaccgtgtgccaataaccaattcagtcgtgcaccaacaagcatgacaacgtcagcatttgccagggcaaacgaacgcgcagctgccgcagaaagtggatgcgtatcttcaaggatccctttcgccatagacattggcaggaatggaatctgagcactttcaataaattcacgaagctgttcatcagcttgtgaatacgccgcgcctttgccaaggataattaatggccgttcagcttttgctaaaagcgaaattgcgctagtgactgacttcgggcatggcaataatgctggcgacggattttcaactttaacaatcgtggttaacgcttcgtctttttccatcgtcgcggccaggacatttgctggcaaatcaagataaactccgccagggcgacccgatacagagacccggatagcgcgtgccaatgcaatgccaagatcctgcggctgattaacgcgaaatgctgctttggcatacggttttgccgcattcatttggtccagctcttcataatcaccttgctgtaggtcgacgatcgcgcggtcgctggagccgctaatcatgatcatcggaaaaccatttaccgttgcgttggccaatgcggtcaaaccattgaggaatcctggcgcagaaactgtcaggcagatccccggtttttgggtaagaaaaccgcttgccgcagcggcatagcctgccgactgctcatgacgaaaaccaatataacgaatgccttccgcctgggcatggcgtgccatatccgtcacaggaatacctacaacaccataaatagtgtcaatattattctgttttaatgcttcaacgatgatatgcataccatctgtcatttgaagttgatctgacatgattaataacctcgaaatttttataaattgggagccagaagcccccgttaatatcagatggcgtggttttgcttcattgcagcaatttcatcgtcgctataacccagctcctgcaatacagcagcggtatgttcacctaatagcggcgcagctttaatatccggcgtaaaggcagagaatttcattggacaaccaacggtcagatattttccacgcaacggttgttccacttcaacaacactgccactttggcgcaaagagggatcaagtgaaatttctttcatacttaaaaccggtgcacaaggaatatcaaactgagtcaaataggccaccgcttcatgtttatcaatagtgacagtgtatttttcgatttcagcaaaaatatcgaaaatatgtggctgtcgtgcatgggctgtactgtatgccggatcggtaatccattctggtttgccgatggctttacaggtgttttcccagttttgctcctgaatagtgaaataaatataggcgttaggatcggtttcccagcctttacatttcaggatccagccaggctgaccgccaccacctgcattaccaccgcggggaactgcatcaccaaatgtaccattcggatactgcgggtattcttccagataacccaatttatcgagacgctgctggtcacgtaatttcacgcggcaaaggttcaatacggcatcctgcattgacatggtgactcgttgcccacgccccgttttttcgcgatgcagcaaagcagcaagtaaaccgatcagcaaatgcattccggtgttgctgtcacccaacgctgcagcgcttaccagcggcggaccatcccaaaaacccgtagtggatgccgcgccacccgctgcctgagcaacgttttcataggcttttacattcacataaggcgaacactcatcaaaccctttgatcgaaccaaaaatcagacgtggattgatttcttgaatatgctcccaggtgaagcccatgtgatcaatggcccctggatgaaagttctcgactaagatatcagcttcgcggatcagcttttccattacctctttgccttccgctgttttggtatttaactcaatagaacgtttgttactgttaagcatggtgaagtaaagcgcatcgatatcaggaatatctcgcagctggtgacgcgttacgtcaccaacgccgggacgttcaattttaataacgtcagcgccaaaccaggccagcatttgagtacaagatgggccagattgcacaccggtgaaatcgagaactttaattccttgaagtggagttgacatagcaatacctattagttaattaaatatgtgttaatttagcgtttatttaaggcgtaatatcttctataaataacccgcaaaatatcgtcgtagctgcactcgatatttttaaaatcctgtatcaagtgctgaaaatcatttcatcgccacttccaattcctttctgcatggtaagtagtgaggacgaaaagaagaatatgataaatattgattcgtggtaatcagagagagtcgcgacatttgtgatgttattcttacaactgtaagaagcgccggtgatttacaagcaagggtatgattacgctttttaaagcgtaccataaaacataacataataaatgatttgtgatgacacgggattattgcggtttactttgaggaatataaaatgcgagtttatagcaccgcgagcgccaaataattttatgaccacaacctgtcgtattgtggtcataaaaaattgtcggctggagggagttaaatcctttacctcaatatactgcctgtcagcattagttcacaaacagtgcttcgctatcgacgatgattccatcttccgcacctttaagcgccaggtttgcctcgtagtattgctttttatcaagcagtttctgcgcatcagcaagtgcattacgagtctgtttaagtggcatcagatattggttttccattacgccaacaccggccaggcgaagctcttccattgcgccctttttatcccctttcgccattttttcattggcaatttttatcgcggcttctttttcgggagttgctacataactctcagaaattccgacagatgcattaatgacaatatattggtcatcattgagattggtctttttacctggcttagcgaactttgcccattcggtactgtcatctgacagcaaagcggaagcttcattggtcagttcttttgccttttctggatcgccatgaaacagagccaggcgcgctacctgcacgtcacgcatcgcatataaaccttgttcagagatacgctctgctgccgctgccgttttctgggtttgctgaacttgctgagtttgctgttgtgccgctaccggagcattatcagcagcccatacagttgaagatgccagaattgctgtgaccatcgtggccataattaaacgtttcatacttacctcattctttaacagttttagaaaacgccgccatcatattgggtgagcatgaaatgagaaatcagagagcaacggtcattttgaaagggttatcttacagttgtagttattatcgcaagaagtattttagtcttacaattgtaggaatatgcttcctgtcgcagagaactattcttatataccacaaagagatgtcatttattatatcgatgtaaatactgattaattaaatgtaaatacagccataacatcgtaggttctcagtgaaccattttcaggataactttctatgaaagtaaacttaatacttttcagcttatttttattggtctctattatggcatgcaatgtttttgcattttccatttcgggtggtggaagtgagaggagctataaagagactgaaaaaacatcagcgatgacgaccacacactctacaaaacttcagccatcacaggcgattttgtttaagatgagagaagatgcgccaccattaaacctcacagaagaaatgccgcccccttttccgacaaaggcgaattatcttattcatcctgtgcgatagcgtctttcacatggcaggtgaacaatcatgtctgatgctgatgtgaacacctgcccaaatgagccatcctgacccactaccgcctgccataccccaccataaagcgaatcatcaagccacaagccggggcaagaaacataaatatccccgtcactagttcattaccgccagttaaccacatggtgaagtaataaatgagtgcagcgaggatcaccatgccgaagaaagaagagaccgccgataccacgttcagtacctgaccgatgtagccgcttacgcagacaatacacagggcgagaaacatccataaattaatcatagctcaacctcctgccgcgctaaaaaacctgtaacttcagtcactttaatagtaagacaatccttaacctctggcaatttttgctaagcatcaatgaaaacagcatgttaaatgcaagactgttgtgtacggaaaaatatttactttgcacgattaataatcagtagctgaaagcagtcagcgagtgataaagtacagataccgcattcatgctcctcgtggttatgtcctgactagtctttacactctttacaggaaccattgtcgtacatgatggcccaaccaattgagtgtaccgctgtcgacatggaatcttctgcgatacaacaattcgtatctacagaaggtaactatgtttccacaatgcaaattttcccgcgagtttctacatcctcgctactggctcacatggtttgggcttggtgtactctggctttgggtacagcttccttatcctgttctctgctttctcggcacgcgtattggcgcaatggcgcgaccattcctgaaacgtcgtgaatctatcgcccgtaaaaacctggaactttgtttcccgcagcattctgcggaagaacgcgagaagatgattgccgaaaactttcgttcactcggcatggcgctggtagaaaccggcatggcatggttctggcccgacagtcgcgtacgtaaatggtttgatgttgaagggttggataaccttaaacgcgcacaaatgcaaaatcgcggcgtaatggttgtcggcgtccattttatgtcgctggaactgggcggccgcgtgatgggactgtgccaaccaatgatggctacctatcgtccacataataatcagctgatggaatgggtgcagacccgtgggcgcatgcgctctaacaaagcgatgatcggcagaaataatctgcgcggcattgtcggtgcactgaagaaaggtgaagcggtatggtttgctcccgatcaggattatggtcgtaaaggcagctccttcgcgccgttctttgcggtggaaaatgtcgccacaaccaatggcacctatgttctctcccgtctctctggcgcagccatgttgaccgtaacgatggtaagaaaagcggattacagcggatatcgtttgttcatcaccccagagatggaaggctacccgacagatgaaaatcaagccgctgcctatatgaacaagattatcgagaaagagatcatgcgcgcaccggagcagtacctctggatccaccgtcgctttaaaacgcgcccggtgggagaatcgtcgttgtacatttaacaaactgctcttactctttccctcctcaaatcggccataataacctcatggtttttatggcttttttcttaaggttttttccttcgctgaatatctaattattaccgtcagaaattaaactgtcgccgatatgagacacttgtaagttactaaaagtaaataagaaaatgcctcttgtctcgtttcagttttaggcgtacattagcgccgtctcgagcagtttagctcagaattctggggtgatgcccacggtaaaatacagggcttttaaggtcgctttgcccggtgtcaactcactgtatcaggtgtaatgaagtcattcaggcgtaacagtaattacgcggagagatgtaaagtgaaatatttctttatgggcatttcttttatggtcatcgtttgggccggtacttttgccctgatgatctaaaagcaaactgtgcaatgaaaaacaggagccatcaggctcctgtttgcatttctgacgacggtgtttattccgcgttttcgtgaatatgtttgctgctggcgggtagtaaaccgtcggcacggaacatcgctttaatccctctgatggcctgacgaatacggtcgcggttttcaatcagtgcaaagcgaacatgcgtatcaccatagtcgccaaagccaatccccggcgagacacaaaccttcgcttcgttaaggagcttcttggcaaattccagcgatcccatggccgcatatggttccgggattttcgcccagacatacatcgaagccttcggcatttcaaccatccagcccgcttcatgcagccctttaaccaatacatcacggcggcgtttgtactgttcggcaatgtcgcgcacgcactgttgatcgccctccagcgccgcaatcgccgccacctgcaacggcgtaaaggtgccgtaatcgtgatagcttttaatacgagccagggcgctgaccagcgttttgttgccaaccataaagccgatacgccagcccgccatgttgtagcttttcgacagcgtaaagaactcgactgccacatcgcgtgcacccggtacctgcataattgacggcgctttccagccatcgtagacgatatcggcataggccaggtcatggaccaccagcacatcgtagcgtttcgccagcgccactactttttcgaagaactccagttccacgcattgcgcggttgggtttgacgggaagccgaggatcatcatcttcggtttcggataactttcacgaatggctcgctccagttcgttgaagaaatcgacaccttccaccagcggcactgagcgtacctgcgccccggcaatcaccgcgccataaatatggatcgggtaacttggattcggcaccagcaccgtgtcaccatgatccagcgtcgccagcatcagatgcgccaggccctctttcgaaccaatagtgacgatggcttctgattccgggtcgatttcaacgtcgtagcgatcctgataccagcgggaaatggcgcgacgtaaccgcggaatgccgcgtgaagtggagtaaccatgcgtgtccgggcgctgggccacagtacataatttttcgacgatatgcggcggagtcgcaccgtccgggttacccatgctgaaatcgataatatcttcgccgcgccgacgcgcagccattttcagttcagcggtgatgttaaaaacgtagggcgggagacgatcaatgcgcgtaaagcgacgttcagggcgagtgtcagccataatttcctcagattaacgttagcgcccggaccgtccgagcgacgctgccacgatggtggctgttttgaaaatagcctgattaatttctgtctgtccagcgttttagaacattttattaatgacgttaaatgaggaactctgctttaaaaacaggaaatttatctgcgctaacaagaaaattaccactcattttattaacataataatttcaataaatttactaaccagaagtgcattatcaagagatgcattgctaatacaccatttatctatcaatccccttttaaaattgtggtttttcctcaaaaacggcctgctggtcatcagccttcaggttacctatcatagaggtttaatccttattcagagtcacccgtgcacgaaatattcaacatgctgctggcggtcttcgatcgggcagcgttaatgcttatctgcctgttctttctcatccgtatccgcctgtttcgcgaactgttgcacaagtcggcgcactccccaaaagaattgctcgccgttaccgccattttctcgctgttcgccctgttcagcacctggtccggcgttcccgtagaaggctcgctggtgaacgtacgtattatcgcggtgatgtccggcgggattctgtttggcccgtgggtaggcatcattaccggcgtgattgcgggtattcaccggtatttaattgatatcggcggcgtgacggcgatcccctgctttatcaccagcattctggcgggttgtatatcgggctggatcaacctgaaaatccccaaagcacagcgctggcgcgtcggtattctcggcggcatgttgtgtgagacgttgaccatgattctggtaattgtctgggcaccaactaccgcgttggggatcgatatcgtctctaaaatcggcattccaatgatcctcggtagcgtctgtatcggctttattgtgcttctggtgcaaagcgttgagggcgaaaaagaggccagcgccgcgcggcaggccaagctggcgctggatatcgccaacaaaacgctaccgctgtttcgccatgtcaatagcgagtcattacgcaaggtctgcgaaattatccgcgatgacattcacgccgatgcggtggcgattactaataccgatcatgtgctggcctatgttggcgtgggtgaacataactatcagaatggcgatgacttcattagcccgactacccgtcaggcgatgaattacggaaaaatcatcattaaaaacaatgatgaagcccaccgcacaccagagattcattccatgctggtgatcccattgtgggagaaaggggtcgtgaccggaacgctgaaaatttactactgccacgcgcatcagatcacctcgtcattacaggaaatggcggtcggtctgtcgcaaatcatctccacgcaactggaggtttcacgcgccgagcagctacgtgaaatggcaaataaggcagagcttcgcgccctgcaaagcaaaattaatccccattttctgtttaacgctctgaacgctatttcatcgtcaatccgtctgaatccggataccgctcgccagttgatctttaatctgtcgcgttatctgcgctataacattgaattaaaagacgatgagcaaatcgatatcaaaaaagagctgtatcaaattaaagactatattgccattgagcaggcccgctttggtgacaagctgacggttatctatgatattgatgaagaggtgaattgctgcattcccagcctgctgatccagccgttggtggagaacgccattgtccacggtattcagccttgcaaaggtaaaggcgttgtcaccatcagcgttgcagagtgcggaaatcgggtacgcattgcggtgcgagataccgggcacggcatcgatccaaaggtgattgagcgggtcgaagcgaatgaaatgccgggcaataaaattggcctgctgaatgtccatcatcgcgtgaagttattgtatggcgaggggctgcatatccgccgcctggagccggggacggaaattgcgttttacattcctaaccaacgcaccccagtcgcctcacaggctacgttattgctttgagccggagtgatattgtgaaagtcatcattgttgaagacgaattcctggcacaacaggaactgagctggctaattaaagagcacagccagatggagattgtcggcacctttgacgacggtctggacgtgttgaagtttttgcagcataaccgcgtcgacgccatttttctggatatcaatattccgtcgctggatggcgtgttgctggcgcaaaacatcagccagttcgcccataaaccgtttattgtgttcatcaccgcgtggaaagaacatgcggtagaagcgtttgaactggaggcgtttgactacattctcaaaccgtatcaggagtcacgtattaccgggatgctgcaaaaactggaagcggcctggcaacaacagcagaccagcagtacgcctgccgcgacggtaacgcgtgagaatgacaccattaatctggtgaaagatgagcgaataatcgtcacgccaattaacgatatctattacgccgaagcgcacgagaaaatgacctttgtctatacgcggcgtgaatcctacgtaatgccgatgaacattaccgaattttgcagcaaactgccgccgtcgcattttttccgctgccatcgctcattttgtgtcaatctgaacaaaatacgcgaaatcgaaccgtggtttaataacacctacattctgcgactgaaagatctggattttgaagtgccggtcagccgcagcaaagtgaaagaatttcgccagttaatgcatctttaatcgggaactttcatgaaagcaccaggcttgcccgccgatcaacaatttttcgccgatctgttcagcggcctggtgcttaacccgcaactactggggcgcgtctggtttgccagccagcctgcctcgttgccggtgggcagtttatgtattgattttccccgtctggatatcgtgctgcgcggcgaatacggcaatctgctggaagcaaagcagcaacgtttggtggaaggagaaatgctgtttattccggcgcgcgcggctaatttaccggtcaacaacaaaccggtgatgctgttaagcctggtgttcgctccgacctggcttgggttatcgttttacgatagccgcaccacgtcgttgttgcatcctgctcgccagatccagcttcccagcctgcaacgcggtgaaggtgaagcgatgcttaccgccctcacccatcttagccgttcgccgctggagcaaaatatcattcagccgctggtgttaagtttgctgcatctttgccgtagcgtggtgaatatgccgccgggcaattcgcagccgcgcggcgattttctctatcacagcatttgtaactgggttcaggataattatgcccagccgctcacccgcgagagcgtggcgcagttttttaatatcacgcccaatcatctgtcaaaactgtttgctcagcatggaacgatgcgttttatcgagtatgtgcgttgggtgcgaatggcgaaggcgaggatgattttgcagaaatatcatctgtcaattcatgaagtggcacagcgttgcggttttccggatagcgactatttttgtcgcgttttccggcgtcagtttggtctgacgccgggagagtacagcgcccgttttcagggctaacgtcagaaggttaattctgtttccagcagcgtcaggatactttgtgcatcttgcgcggcaaacaacgactggcggaagtttttattcaccagtttacgcgccagctgcgagaagactttcacatgattcatcccttcgttagcacccagcgtcagcatgatcaccagttcgacttcgcccatttctgactgccagccaatcggtttcgccagccgggcaatgctgatactggaatgacggatccactgagatttggtgtgcgggatcgctacgccaaaaccaacgccggtggtaacaatctcttcccgctgccagacatcttcttccagctcaaacggatgttcagtgcgcccgttaacgccgaggttgccgcacaggaactggatcgcctgctctttattgctaaaatcctgatcaacaaagatattctccagcgccagcagtgggcgaacgtcttcttccggcgtaaaggcggtgagtaacgcttcaatttcctgcgcactgcggcattcacatgcctgacgcgccagttcccgacacgcctcgctatccagttgacgaagctggcttttcaccgccggaatacgcgggctactcatactcagctcatccaggcccagcccaagcagtagcggcagataacggctttcaccgcccagttcaccgcaaatgcctacccatttgccccgctgatgcgcagtggtaactatttgctgcaacatgcgcaggaacgatggcgtaatcgggttatatagcggcgatacgcgcgggttattacgatcgaccgcatacagatactgggtcatatcgttggagccgatactgaagaaatcgacctcatcgcagaagtggtcgatgatgtagcacaccgacggaacttccaccatgatcccaagcgtaatcgtctctgcatgacgcaggccatcgcgcttaagctcaacgatcgctttttggatctcgcctttcacccataagatctgatcgaggctgtgaaccatcgggatcatcaactgggcgttgccgaaactggcggcgcgcaaaatggcccgcagttgagtgcggaacaggccagcaaattccgggtaaatacgtaccgcgcgatagccgaggaacgggttctcttcctggggaatattcagataaggaatgcttttatcgccgccgatgtccatcgtgcggaagataatcggcttgtcgcccgccgccagtagcacctgctggtaggcttcaaattgctcctgctcgtccggcgcgctgtcgcgatccatatagagcatttcggtacggaacagcccgacaccttccgcgccgttggcaaacgcgcctggcgcttccagagcggtgccgatattcgccgcaatatcaatacgcttgttatcacgggaataggccagctgcgcggcagcctgcgcctgttgtttttggcgtttatccgccagcgtctgcgcgacctgataataaccgctcaccgcgtcattcgggttaatcgccagcacgccgcactgggcgtcaagcactgcaggttgcccggcataacgggcaatcgcatccagcggcaagccactcagtaccgggatcgccgaggcacgggccagaatcagtgtatgcgaggtgcgcccggttttctccagaatcatgcccgcaagatttttcaaatcaaggctcaaaaactggcttggggttaaatcttcagccaccagaatggtcggtttttcaagcaccagcttgttgcgcggcttcagttccggccaggtgatatgcagcaactgttcgctgatatcgcgaatgtcgctaacacgttcgcgcagataatcgctggcagaggcagaaagtttggcgcaaacctgctccatattgctgatgatcgccgcccccagcccctgatgctgttctgtcatcaggcgacggatattgcctgcaaattcatcatcctgaatcagcgacaaatgggcgctgaggatagttttgctttcgccgtcacgctcacgcaattgctggttcagttgctcggcaagcgttgccaggctgtgctccagccgggtggaatcttgcgcactggcggggattgcccgataactgtcgaggctgtcgctttgtaacagggtcagcgtacccacgccgacgccgcttgccagcacattgccgtacagtaaatccgggttaaggcggcttaatgaacgcggcagcggatgcgccgtcagttctgcctgcgtaggctgaacgctgtcgctgtcgataaagcgcacctggatgtactcttccagcacgcgccgcgcctgctcttcatcgctgccgctaatgttcaggctgcaactgtcattaaatagggtgccggtgccaatcagcgccagcgagcttttcgcatctgcctttgcgttctggcgatggttaataaaagtgatttcgctttgccactggctgcactgttctttaagttcccacgccggacgagcatgtagaccgttaggcaaaggacagagaaattgaatcgttaacataaccgctccgggttaatcaggagatcatctgaaatccgtcagttgaacaaccgtctcacgcgtaagacgttgaataagggcagataaaagttgctgcatctgcaaaatgtcgcggcaatcggcaatcgatgcggcgcaatgtccatggcgggttgctggccccatcaccactgtgggcacgccggtgccggttaagtgcaccgccccgccgtccgtgccgccgttgctgaacatatctgcctgcaacggcacgccaatttctgccgccacggtttcgacccaggcggtaagttttggcggcgcaatcagcgacttgtcgcttaacaccagcatcggcccgttaccaatctggcgatggttagccgcgccataatcaaagtttttcgcccagcaggcggtatcaagcacaatggcgacgtccggcgacaccgcgcgggtggcagtttgcccgccgcgtaatcccacctcttcgctggaacttgccaccagccacacttccgcaggtagttcggcgtcgtgcagttcgcgcagtaacgtcaccagcagatagcaaccgaggcggtcatcaaaggctttccccatcactcgctggtgagggagaacctgaaaagtggtatcaaacgtgacgcgatcgccgggacgaattcccgcctgcatcacttcgtcataggagcgcgcaccaatgtccacgcgcatggcgctgacgtcattcccctgccggtcgccgtcaagcaggcctggaattttgcactcttcacgggtggtgatgcgcaccggctgcagctggcgggcagccatgcgtacgttgccaaccggcagcacatcaatcgccccttcgcgggagatgctgcgcaccataaatcccacttcgtccatatgcgcacagatcatcaccttcggacctgtcgattcattcaggcggatcagcaccgatcccagaccatcaaatcgcacttctttttgcaggcgatccgcttcttccagcaggatctgccgcacttcctgttccgaggaggcgatcgcatctgcctcgctcaacgcttttaatagcgataaatccattatgcctctcccgtgagcaacactgttttcggcatggcgtagagcacttctgcgccttgcggggtaaccagcacaacatcttcgatgcgcacgcccccttgccctggcaaataaatccccggctccacggtcagtaacatgcctggctgtagcgtcgtggtgtcccgcggtgaaaaacgcggatcttcatgaacttcaatgccgatagcgtgaccggtgttatgaccgaaatagtcgccataacctgcttctgtaatgacccggcgcgcggcatcgtcaacctgctggcagcgcacgccggggcgaatcgcggagattgctgcgagctgtgcctgcaggacaatttgatagacgttaaacagcaggtgagattcggcgctcaccccttcgccattcaccagcaaggtgcgcgtcatatcagagcagtagccctgatacagcgcaccgaaatcgagagtgacaaactcgcccgctgcaacaatcttgtcgctggctttgccgtgcggcagcgccccacgccagccactggcgacaatggtgtcaaaagaggctttttctgcgccctgctggcgcataaaccactccagttcagcggctatctcgcgctcgctcatccccgcctgaataaagcggcgaatatgctctgcaccgcgatcagcaatcccacaggcgaggcggattttctccacctcctctggcgttttgatttgccgcagcacatccggcgtggcgctaaccagtttcgcattgagttcagactgccagcggtgcgcggtttcccaactcacctgctggccctcaaaaccgagcgtttgcaactgttcatcggcaatgatttgattgacgatagtggtaagcgtgttcgtcgcgtcaagcaaatgcagctggtagccttgcgcacgggcttccacctcaacgtaatagcgcgaatccaccagaatgtgcgcactttcacggctaatcaccacataacctgatccggtggagatccccagatgcggctgtttgttctgccgtgaggagagaagcactgcatccagttgttgcgccttaagccagtcgcgcagcgaagcgagtaatgtcatctggattttccttcttacaggctatcgattaacaatttgcctttacggaacatcatcagacgcaggaacaccaccatcagcgcagttatgactgcccccagcgcgatccccgccatatagacgcccaggttagtgaccagcggccatgcccagatagcggactccgggaaccattgcactgcgcccagccagacagcggcggttgagccgacaatagcgccgaccatatacgacggaatggcggtgatggggctttccagcgcaaacggaatcgcaccctcactgatccccataaacgccaggaacatggcggtcttaccctgcggataaagttgagcgttgaacaggcgtttgccggttaaacgacggtcgataatggtcgccagccccagaccaatcggcggaataacgatagcgatagaacgagcggtgaccggtaatacgtggtcagtggtaaagctgaaggcaacaaaacctgcggctttgttgatcgggccaccaaggtcgattgctgtcgccgcggcgatccccattgcgtacatcagcgcgcccttctcacctgcggcagtcagcacagtacggataccgccgttgatccagccaccaaagggggtgatgacgtagtacatcgccagcatgacaaaaatggcggaaagaatcgggagcaaaaatgtggttttgaacgctaacaggaaatccggtaactggattttctggttcatccacttcacaaggtaaccggcaacgatagaaataatcagcgcaccaatgaaggtggacggcaccggcgaagaggtcgcccattgcatagtgctgggatcgaagttcagcagttgcgtcggctgggtagacatcaacccgccgataaaaccagccgggaacgccagtttgccaccgatagagttcgccacaaaagcagcaaacatcggaatggcaaaaccaaacaacacgccgccgaaggactgcgacagccaggcaaatttaagtaaggagaggtcgaaaccggagaatttcccgctattaagagcatccatgatgccgatctcagcaggaattttaagccagctataagcaatcagctggctgaaagcgaggatcacaccgcccataattaaggtcggcaccatgcgtgaaatccctgacatcacatgctgcgggagttcaccccagaagctggttttagaggcctgcggattcttaactgccgctgccgcaccggatgcgccaggcacaacggttgcactgcgttttttaatggccataacaattatccctgtcgaatattactgttgttcagaggcaatcatctcttcgatttctttgatgatgcccgcagcgtttttaattgcgtcctgcaaagtgatttcataaacgtcgcgtgattcgaaacgttcgttatcttccggggtaactgccacggagtggatgatgatggtcgcttcggcgatatcctgcgccgtcaggcgattctggataccgtccgcgccctgggtttcaattttcacttcataaccggcttctaccgccgcttcttccagcgcctgagcggccataaaggtgtgagccaggcccatcgggcaggcacataaggcaatcagtttcttactcatcgttaattcctcgttcagtgatagttgacgagtgaaattatgaacgtgcaaaacaaatcgccgttaccagacaaataatgcatttactggagaattaatcccgctgtacggaagtgtgacgcaggtcgaccttgtgaggggacacaaagaaaaattgaataaactgtatgatttaaaagattatcgggagagttacctcccgatataaaaggaaggatttacagaatgtgacctaaggtctggcgtaaatgtgcaccggaaccgagaaggcccggattgtcatggacgatgagatacaccggaatatcatggacatattctttaaagcgccctttatcttcaaatgcggcacggaaaccggaggctttgaagaactcaaggaagcgcggcacgataccgcccgcaataaacacgccgccaaatgtcccgagattgagcgccagattgccgccaaaacggcccataatgacgcaaaacagcgacaatgcgcggcggcaatcggtgcagctgtcagccagcgcgcgttcggtaatatcttttggcttgagattttctggcaggcggttgtcagctttcacaattgcgcgatacaaattcaccagcccagggccagaaagcacgcgctccgccgaaacatgaccaatttccgcacgcaatatttcgaggataatggcctcttcttcactattcggcgcaaaatcaacgtgaccgccttcgcctggcaagcttacccaacgcttatcgacatggaccagatgcgcaaccccaagccccgttccggcaccgtaaaccgcaataggcttaccttcgaccggttctgcgccaccaaactgaatcagatgctcttttttcagcatcgggatcgccatcgatacagcggtaaaatcgttaataatttccagatggctaaaaccgagattctttttcatttcggcaattgagaacgcccaggtatggttggtcatcgccacccagtcaccggtaattgggcaagcgatggcaatacagccgtctttcacctcgaccttatgttcttcaagataaacgcgaatgaccgcttcgaggctggggtaatcaagccctgaataggtcttagcctgcgagatttcaccactggcaatatcacacagagcaagacgtgcgttggtgccgcccacatcaccgactaatgcatactttgtcattcttcaactgctccgctaaagtcaaaataattctttctcacactgtaaatacctgggggcataacaacaacgccggaaaggcaggctccctgtaaatatcgatctgggtcacacaattactttatcgtttcagcaccaattgcagcgatgcctttttgcaagctgggcaaactaagtatctgaccccgcataaggaatagaacatgctccatccgcgagccagaaccatgttgttattatcgctccccgccgtggcaattgggattgcgtccagtcttattctgattgtggtgatgaaaatcgcctcggtattacagaatttgctctggcaacgactgccgggaactctggggatagcccaggattcacccctctggatcatcggtgtattaacgctaacgggtattgcggtggggttggttatccgtttcagccagggtcatgccggaccagaccccgcctgtgaaccgctgatcggcgcaccggttccgccctctgcgctacctggacttatcgtagcattaattctcggtcttgctggcggcgtcagcctggggccggaacatccgatcatgaccgtcaatatcgcccttgcggttgccattggcgctcgtctgttaccgcgcgtcaaccgaatggagtggactattttagcctctgccggaaccatcggcgcactgtttggcactcctgttgcggcggcgttgatattttcgcaaaccttaaatggcagtagtgaagttccgctatgggatcgtctctttgcgccgttaatggcggcagcagctggtgcacttactaccggattatttttccatcctcatttttcactgcccattgctcattacggacagatggaaatgaccgatattctcagcggtgcaattgtcgcggcgattgccatcgcagcagggatggtcgccgtatggtgcttaccacggttgcacgcgatgatgcatcaaatgaaaaatccggtgctcgtgctgggtattggcggatttattctcggtattctgggggttattggtggaccagtttcgctgtttaaagggctggatgagatgcagcagatggtggcaaatcaggctttcagcaccagcgattactttttgctggcggtaattaaacttgccgccctggtcgttgctgccgccagtggctttcgcggtgggcgaatcttcccggcagtgtttgtcggcgtggcattagggttgatgctgcatgagcacgttcccgccgtaccagcggcaataaccgtttcttgcgctattctcggcatcgtgctggtggtaacacgcgatggctggttaagtctttttatggcggcagtcgttgtacccaataccacattgctaccgctgctctgtatcgtcatgcttccggcatggctgttattagcaggtaagccgatgatgatggtcaatcgtccgaagcaacagccaccccacgataacgtttagcaaaaaatgctctcctttatgatttaagagttatggcgatgatacggggctttacctccccgtaatattgcgttaacaggccgctgacggcttcgagcgtgaaggagaataacaatgttcaggtcactgtttctggcggccgccctgatggcatttaccccgcttgcagcaaacgcaggtgaaatcaccctactgccatcaatcaaattacaaattggcgatcgcgatcattacggtaattactgggacggtggtcactggcgcgaccgtgactactggcatcgcaattatgagtggcgcaaaaaccgttggtggcgtcatgataatggctaccaccgtggctgggataagcgtaaagcgtatgagcgtggctatcgtgaaggctggcgcgatcgtgacgatcatcgcggaaaaggccggggtcatgggcaccgccattaaacgcgtccgccaatggagcacaatgcctgatgcgacgctagtgcgtcttatcaggcctacaaaccggctctttaacgcgtagggcggataaggcgtttacgccgcatccgccaatagtgccagatgcgacgctcattcaactacaatcccagcgccgtccccaccaacaaccagatattcagcgccacgaccagcaccacaatcacccagcctgtctgttttacgcgtttgctgttcaccagatcgcccatcaacttgctgtcactggtgaaaatcagcagtggaaccagcgccagagcgataccaaaacttaacagtacctgactcataaccagaatccgtgtcggatctaatcccatcagaatgacaataaatgacggcaacatggtgactgtacgacgcacccacagcgggatatgaaagcgaatgaagccctgcatcaccacctgccccgccagtgtccccaccaccgttgaagacagccccgcagcaaccaggcttaatccaaagaccgttgccgcagcgtggcttaacagcggttgcagcgtcagataagcctcatcaagatcggcaacaccagtatgaccggaaaagtggaacgccgccgcagctgtagccatcatcgccagattgacaaaaccggcaatagtcatggcgatagccacatcccatttggtggcggaataacgttgttgacgcgaaccgccatgtaaatgctgagtgagcgaggagtgcaaataaatcacatgcggcataatcgtcgcccctaacacgcctgctgccaggaagaccgcttccgaagtaggtaaactcgggatcaccattcctttacccagctgcgccaggttaggctgggagaaaatcaactcgacaatgtaagccgcggcaacaaacaacagtaacccgccaatcactttctccagcggtttttgcccgcgacgttgcagcattaaaatcaggaaagtcgcgatccccgtcagcaccgcgccctgcaacaacgaaacaccaagaatgagtttaaaaccgatcgccgcaccaataaattccgccaggtcggttgccatcgcaataatttctgcctgaacccaatagaaccacactacgggacgcggatagtgatcgcgaatctgctccgccagatttttaccggtggcaatccctagtttggcagagaggatctgaatcagcatcgccatcaggttggcccaaacgacaacccacagtagctgatagccgaagctagcacccgcctgaatattggtcgcaaagttaccgggatcgatataaccaatcgccgcaatgaacgcaggtcccattaatgcgagcctcatcttgcgcgccgcccgtccgctgctactctcaacgcgatagttcgtcatcttgtgcctctaaaacatagcctttgctatgtttcatgctatgccaaacgagaatgattatcaaattcatttaaatggattgtggtgatttctctgatagaccaggattatgactacgaaaagattgatgacttgaatgttatggttatgtttaatgttagcacatttacataactttcagcttccatacacaacatagcagaaatgtatgacagatcactatttttgaagcctgtcacaggacgtcattatagtgtgtgtcagatctcgttttccttaaccatgttacatagaatgtgcacggaaatttaacctgcctcatatttggagcaaatatggaccgcgtccttcattttgtactggcacttgccgttgttgcgattctcgcactgctggtaagcagcgaccgcaaaaaaattcgtatccgttatgttattcaactgcttgttatcgaagtgttactggcgtggttcttcctgaactccgacgttggtttaggcttcgtgaaaggcttctccgaaatgttcgaaaaactgctcggatttgccaacgaagggactaacttcgtctttggtagcatgaatgatcaaggcctggcattcttcttcctgaaagtgctgtgcccaatcgtctttatctctgcactgatcggtattctccagcacattcgcgtgttgccggtgatcatccgcgcaattggtttcctgctctccaaagtcaacggcatgggcaaactggaatcctttaacgccgtcagctccctgattctgggtcagtctgaaaactttattgcctataaagatatcctcggcaaaatctcccgtaatcgtatgtacaccatggctgccacggcaatgtccaccgtgtcgatgtccatcgttggtgcatacatgaccatgctggaaccgaaatacgtcgttgctgcgctggtactgaacatgttcagcacctttatcgtgctgtcgctgatcaatccttaccgtgttgatgccagtgaagaaaacatccagatgtccaacctgcacgaaggtcagagcttcttcgaaatgctgggtgaatacattctggcaggtttcaaagttgccattatcgttgccgcgatgctgattggctttatcgccctgatcgccgcgctgaacgcactgtttgccaccgttactggctggtttggctacagcatctccttccagggcatcctgggctacatcttctatccgattgcatgggtgatgggtgttccttccagtgaagcactgcaagtgggcagtatcatggcgaccaaactggtttccaacgagttcgttgcgatgatggatctgcagaaaattgcttccacgctctctccgcgtgctgaaggcatcatctctgtgttcctggtttccttcgctaacttctcttcaatcgggattatcgcaggtgcagttaaaggcctgaatgaagagcaaggtaacgtggtttctcgcttcggtctgaagctggtttacggctctaccctggtgagtgtgctgtctgcgtcaatcgcagcactggtgctgtaagaccatacataaaaaagccggggataattcccataagcgctaacttaagggttgtggtattacgcctgatatgatttaacgtgccgatgaattactctcacgataactggtcagcaattctggcccatattggtaagcccgaagaactggatacttcggcacgtaatgccggggctctaacccgccgccgcgaaattcgtgatgctgcaactctgctacgtctggggctggcttacggccccggggggatgtcattacgtgaagtcactgcatgggctcagctccatgacgttgcaacattatctgacgtggctctcctgaagcggctgcggaatgccgccgactggtttggcatacttgccgcacaaacacttgctgtacgcgccgcagttacgggttgtacaagcggaaagagattgcgtcttgtcgatggaacagcaatcagtgcgcccgggggcggcagcgctgaatggcgactacatatgggatatgatcctcatacctgtcagttcactgattttgagctaaccgacagcagagacgctgaacggctggaccgatttgcgcaaacggcagacgagatacgcattgctgaccggggattcggttcgcgtcccgaatgtatccgctcacttgcttttggagaagctgattatatcgtccgggttcactggcgaggattgcgctggttaactgcagaaggaatgcgctttgacatgatgggttttctgcgcgggctggattgcggtaagaacggtgaaaccactgtaatgataggcaattcaggtaataaaaaagccggagctccctttccggcacgtctcattgccgtatcacttcctcccgaaaaagcattaatcagtaaaacccgactgctcagcgagaatcgtcgaaaaggacgagtagttcaggcggaaacgctggaagcagcgggccatgtgctattgctaacatcattaccggaagatgaatattcagcagagcaagtggctgattgttaccgtctgcgatggcaaattgaactggcttttaagcggctcaaaagtttgctgcacctggatgctttgcgtgcaaaggaacctgaactcgcgaaagcgtggatatttgctaatctactcgccgcatttttaattgacgacataatccagccatcgctggatttcccccccagaagtgccggatccgaaaagaagaactaactcgttgtggagaataacaaaaatggtcatctggagcttacaggtggccattcgtgggacagtatccctgacagcctacaaaacgcaattgaagaacgcgaggcatcgtcttaacgaggcaccgaggcgtcgcattcttcagatggttcaacccttaagttagcgcttatgggataattccccggtttttttacgcctgttaatcagctaatggctgcgggcgaccaatcaaatacccttgcagatattgcaccccgagcttatgcaatagcgcctgctgctgttgcgtctcgacaaactccgcgaccacactcaatgacttcgctttcgccagatcggtaattgatctcacaatcatcgcatccagcgtgttcgtgacaatatctttcacaaagacgccatcaattttgatgatatcagcctgcaaacgctttaaccgttcgtagttggcatatccggtgccaaagtcatcaatcgcaatccggaaaccaaacttatgcagctgctcgatgttgtacatgctgctttctgcgttagaaaacgcctgctcctcggtgatctcaagaatgaccgcctgcggggagatgtgataacgcttaaacagacgaataatccgcccggcaatattcttttgcagcagcgtgagcggcattaaattgactgaaaagcgcggtccttttttgtcgcaagggtgtgttgccagccacttcaacaaggattccagcacttgcaaatcaaaacgcgcgctaaggttaaactgagcaataaggggcagaaacttatccggggtcataatgccgccgtcatatttcagtcgcgcgaggatctcatcataaccttcaccctctttgttgcgaattggctgggcgtagagcagcaaatcaccctgatctaacgccgtgcgaatggtattcagcaatagcacctgtttagtggtctgcccggaaaccatctcctctctgctatccagcgccagcacatgatgatgtgcgcaggattgctccgccagccagcttaactgccccaacaagggttgcagggtttcctgatttccatcaaaacgcccccaggcagcaccatagcccatatccagcccggtattgttccagtgaatttgccgactattcaggatgttaaccatatgctggagtcgcccttccgtttccggcccgctcagcactaacagcagttcactacccggcaattgatacaacttttcgttttcctgcatcaacggcagcagcgtacggcaaattgagcggatacagtgaacgcgcatcattaagccgtaatgacgactcataaactcaagattatcaatgcgcaggcagcaaaaactcttgcccgcctcttgctccggcgcttgttccaacgcacgaaagttgggtaggagcgttaacggatctgtcagcgcctgcaaatgccagcggcgattaagccattcactgcgatgataaatgcgcaccatatagagcaggcaaacgctaaaggaaatcagcaccgcaagaataaatgccagcgaatattcggtttccaccccttgcaaaaagttctggttgtaattcagaaggcaaagcgttgaaacagcccaggtgagatttaaaaacggatagcgaagcttaccgaccccgagggtaaagatgatgaagaaaacgggtaccaggtaaccggcaataaagtcgttttcataaggtgtgcacaacagaagtagcagcacgcttaacgctgccagccagcttaaggtaaatgcgcgtttctctttgcccaacgacggagcgatatccctgcgccacaatatctgcgcaaagtggggacttacaatcatgcgagtgagatagtagaaaagcatgttgtaaatcagcacagcggtgaaaaggcttagcaaatcaacgaccgtgaaaatggcatccgcatcgccgaaaaaggtggatatctttagcgggaaatcaaagaagctccccacaagatacatgctgcatttgatgccgatcggcgtcaccaaaccaagccagaacagacgttgccagacatatcggctggtcaatccataacgccaacgcgtccccagctgccagcgtaatattgcgcaggcacacaacacgacaaacgtctggctaccgagcatgaccgcagtctgtaaaaaagagagatgaaagttccacagattggtgcaaaacatcccgcataaaacgggaacgacaccgcgccagccaaagataaacaagattgacagcattacgcacagtggcatccacgccagaaagatataactggaatggataatggcaagtggcgaaataaaacgggatagctgaataagtaccacggtgagcgtaaacgctagtgtgaatatcttgatattttttatcaggttatgctccacaaacatgagtacactactctcactgatcggggttttcaggcacacaaataataagtttattcgcatcgcgaagcaaacagggggccagcctgttgccgatttttcatccaatgatgctttcaccaggcggcactaacccggacgtagactgtattacaaaagcggcaaaaagcagagacaaaaaacccccgctttgcagcgagggttggaaatttggtggagctaagcgggatcgaaccgctgacctcttgcatgccatgcaagcgctctcccagctgagctatagccccacgatgcgtttacgtaccaagtttgctgggtgcaaaatttggtggagctaagcgggatcgaaccgctgacctcttgcatgccatgcaagcgctctcccagctgagctatagccccgtcacgtaaagcttgtcgagttgacgggcggcatcatatgaattccgcccgaatgtgtcaacggcaaattgcaacgtgtagtttcaatcgctgaaaaatcaggcaaatgaacaattttggaaaaccgctcgcattcagtagttattcatgtcacggtttcctgtaaagtggtgttataaaatgaactactaatagacccacatacattcagggaattgttatgttcaaggagaggatgacaccagatgaacttgccagactgaccggctatagccgccagaccattaataaatgggtacgcaaggaaggctggacaacgtcaccaaaacctggcgtccagggtggcaaagcccgactggttcacgtcaatgaacaggttcgtgaatatattcgcaatgctgaacgtccagaaggtcagggagaagcgcctgccctttctggtgatgcgccgcttgaagtattgctggtgacactggcgaaagagatgacgccagttgaacaaaaacagtttacatccttgcttctgcgggaagggattatcggattgttacaacgcttagggattcgcgatagcaaataatatgaaaagattacgcaataaaatgaccaccgaagaactggctgaatgcctcggtgtggctaaacaaactgttaaccgttggatcagagaaaaaggctggaaaacggaaaaatttcccggcgtgaaaggcggtcgtgccagacttattctggtcgatacgcaagtttgcgagtttattcagaacacgccagccttccataacacaccaatgttgatggaagctgaagagagaattgctgaatacgctcctggagcacgcgccccggcgtatcgacaaatcatcaacgcgatagataatatgacagacattgagcaggaaaaagtcgcgcaatttttgtcacgtgaaggaattcgcaatttcctcgcccgtctcgatattgacgaatcagcataaataaaaaacggcaggatattatctcctgccgtttatctttttacacgctaattactgctgattttcgcgttcagcaataaaatccagcgctttgttgatacgctcgatactgcgggtcttaccaattgcgtgaacggtaacatccagtgctggagactgccccgcaccggttacggcgacacgcagcggcataccaactttacccatacccacttccagctcatccgccgtcgcctgaatagcgtgatgaacgttttcagcggtccagtcagtaatcgcggccagtttgtcacgaaccacttccagcggctgacgcgctaccggacgcagatgttttttcgcggcgtcggcatcgaactcagcaaaatcttcgtagaaataacggcagctctgtgccatctctttcagcgtcttgcagcgttcgcccagcagtttcaccagatcagccagctgcgggccgttacgggtatcgatattttcctgctcaatgtgccactgtaagtgagtagcaacatactccggcggcagcgcgttaatgtagtgatggttcagccacagcagcttgtcggtgttgaacgcactggcagatttgctgacggcattcaaagtgaagtatttgatcatctcttcacgagtgaagatttcctgatcgccgtgggaccagcccagacgcaccagatagttcagcagtgcttctggcaaataaccgtcatcacgatactgcattacgctgactgccccgtgacgtttggacagttttttaccgtcatcgccattgatcatagaaacgtgcgcgtaaaccggcaccggcgctttcagggccttaagaatgttgatctggcgtggcgtgttgttgatatggtcttcgccacggataacgtgggtgatttccatatcccagtcatcgacaaccacacagaagttataggttggggaaccatcggtacggcggataataagatcgtccagttcctggttgctgaactcgatcggaccacggatctgatcgtcaaaaacaacagaaccttcctgcgggttagcaaaacgtacaacacacggttcatcatcagcatgatgctcatggctgtggcggcagcgaccgtcataacgcggcttctcacctttcgccatttgctcttcgcgcagcgcttccaggcgctctttagagcaatagcatttataagcagtgccctcttccagcatctgatcgatcaccgcgttgtagcgatcaaaacgtttggtctggtagtacggaccttcatcccactccaggctcagccagttcatgccatccataatggcttcgatagcttccggcgtggaacgctcaagatcggtgtcttcaatacgcagcacgaactcaccgccgtggttacgtgcaaaaagccaggagtaaagagcagtacgcgcgccgccaacgtgcagatagcctgttgggcttggcgcgaagcgagttttgattttcatgaaatggccttacgtttagaaagatgccgacaaccggcaaatcctggaaaaattaagtgggcgatattctatcactcccgcctgattcctcaatgtagttcgggtttctaccttacgcattattgttttcgttgacaaattgcgcaacacggtctgttttgcgatcatcttgcttaaatttacgacgaacgaacaatttctttagaaaatgcgttgactcattttgaactctccctataatgcgactccacacagcgggggtgattagctcagctgggagagcacctcccttacaaggagggggtcggcggttcgatcccgtcatcacccaccaactactttatgtagtctccgccgtgtagcaagaaattgagaagtgggtgattagctcagctgggagagcacctcccttacaaggagggggtcggcggttcgatcccgtcatcacccaccactttctcgccagctaaatttcttgtaaaaatgtgaagtaccgaagtgggtgattagctcagctgggagagcacctcccttacaaggagggggtcggcggttcgatcccgtcatcacccaccacttcgggtcgttagctcagttggtagagcagttgacttttaatcaattggtcgcaggttcgaatcctgcacgacccaccaatgtaaaaaagcgccctaaaggcgcttttttactatctgcgatactcaaagattcgaacctgcagcaggtttgagttgagcgcagcgaaacaacggagccgctcgcggcgacggcccgaagggcgagcgaagcgagtcatcctgcacgacccaccaatgtaaaaaagcgccctaaaggcgcttttttgctatctgcgatttgcgaaattgcctgatgcgcttcacttagcagactactatttccggcaattcctgtctcctcacctactgtgtcaatgcagccaacagcttaaccatcgcgggcgtcacctgctgtgtttcataaacaatatataaatctgcagggatgcgctgtttgagcggacggaaaatgacacctggccagttcatttgtgcgtagctgtccgctatcaatgtgataccaatgcccatactgaccatagcgagtaccgtttgcggttcattaacttcgcgaataacaaccggtgaaaatcccacctgctggcaaactcgctgcaaaaaatcccagtcagtgtaaacgggcggcattgtaacaaaatactcgtcacgtagcgcttccagcgggacggtggaaaatgatgagagatgatgctcttcaggcatcgccaccagaaacgccgattcatgcaaccgtaagctggtaaaaccagtcggtggttctgtcgccattcgccagatcccggcatcaagttcgcggcgttccagcaaggccatttgcatcgcgggcatcttttcgcgaaaaagaacgtcaacgttaggattttccctgaggaatcgccgcataaccgggcgcatccgtccccacattgcgttcccactacgccgagttcaatccgccctgcttctccccgacctatttgttcaatccgagccaatacattattagcattcaccagcaatcgacgcgattcttccatcaagattttgcccgcgtgtgtcagtacgacgctgcgcgaatggcgaataaaaagctgcgtgccgagttgattttccagctctttaatatgaatgctgagcggaggctgagacatatttaaacgcgctgctgcgcggccaaaatgcaactcttccgctacggcaagaaaataacggagcaacttaagatctgttctgtatacgcgttccataattaagtgctccatataataaatacatcgtattaaattatcatggcataaagtatttcaccaccagatatccgacatacataaacacaatggataatatacccggtaatacatttggtacaggaataggcaagcgcacgattgtaaacaaagcaccaataccaaaaccaacgccggaagaaaataaaatatctttcactaattaacctttatcataaaagcagctctgaagagcagagccgcgaatccttttaatgagtcaccgctcgatgctttatcttttcagggtcatgattatatttaaacccaaagaaaaatatcactgcgagaaaaagagcatatcctgcaaacaccagccagatagtttgccagtcttttacgccatccaccgaaaagtaatctactgccatgccactcagaatcgagccaacccatgcgccgacaccatttaccatggtcataaagagcccctgcgcgctggcacgaatgctggaatcaacttcctgttcgacaaataccgaaccagaaatattgaagaaatcgaatgcacagccataaacaatcatcgacagcagcagcaaaataaatccggttgttgacggatcgccataggcgaagaagccaaagcgcagcgtccaggccaccatactcatcagcatgacggttttaatgccaaatcgctttaaaaagaatgggatagtcagtataaagcccacttctgccatctgtgaaactgacagtaaaatggagggatatttcaccacaaaactgtcagcaaactccgggttacgggcgaaatcatgtaggaacggattaccaaaaacgttggtaatttgcagtaccgcacccagcatcatggcaaagaggaaaaagatggccatgcgtggatttttaaacagcacgaaggcatccagacccagcttgctggcaagcgatgtggtcgcttttttctccgcaaccggaatcttcggcaaagtcagcgcataagccgacagcagcaatgacgcaccggacgcgatatacagctgcagactactcaattccagatgcagcaggcttactgcccacatcgcgacaatgaaccccaccgtaccaaaaacgcgaatgggcgggaaagcggtcaccgggtcaagccctgcctgggcaagacaggaataagagacgctgttcgataacgcaatagtcggcataaacgccatcgcattgactaacatcacccaaaacatcatatccggatcagttacggatgccgcataaaaaagtacgcccgcacacaccaggtgacacagcatgtatgcacgttctgcgcgcagccatttgtctgcgatgatccccattataccaggcataataatcgcggcgatccctttggaactgtaaaccatgccaacattagcgccggtgaaatgaagagtattaatcatgtaagagccgagggtaaccagccagctcccccagataaaatattgcaaaaaggacattacctttaagcgcatcgcgatgctcataatcgtttccttgtcgcatcatttggcctcacccgcgaggccgtttcttattgtttttctcaggcaattttgcgcagaaagccacaaataaggttgatgaagttctgcttagagagctccgcagccgccagcgtttgcgcatgtgacaatttcacatcgcttaaaccttccgccatattggtaatcgcagagaccgcaacgactttaaggtcgcaatggcgagctgaaataacctcaggcaccacagacataccaacaacatccccaccaataatttgcatcatgcgaatttccgccgcagtctcgaaattcggccccggatacgagacgaacacgccctccgtcagagggaaaccctcttctttcgccactttttgtaacagtgcgcggtattccgcatcgtaggcatttgccagtgagaagaagcgctctccaaaacgatcatcgttaagacccaccatcggcgtaccgggcatggtgttgatatgatctttcaatgcgaccaggctgcctgcccccacttccggacgcagcgagcctgccgcattggtgcagaacagtagctcgcagcccagcagcttaaaggtacgaattgcgtcagtcataatggtcattccacgaccttcgtagaaatgtccgcgacctttcatacataccaccggtacgccctggagatggcccagcactaactcccccgcatgaccatgtaccgtacttaccgggaagcccggcagcttttcgtaggaaattgcgacagcgttctcaatctgatcggccagcgcgccgagcccggaacctaaaataaaggccactcgtggcgtgaaatcaggtttataagtcttgataatatctatgcaaaacagcgggttatgagaaaattgaacctgagacatacatatcctttttctgtagggtggaatctaacgcctttttatagcgaggttgtcccggctcttaccaatacacttttctcacgcattcaatagcgattcgatatcgatggatttatatcttttctctattaatccacggtaaaaactgtattggcgatattaattcctttgcattaacaatatgtcgtttttagcaaaccactttattaagcaatctactaataacgatcggcatagggaattatgctatgaaaaaacatcttttaactctgacactttcctctatattagcgatacctgttgtatctcatgcagaatttaaaggcggttttgcagatatcggcgtgcattatctggactggaccagccggactaccgaaaaatcgtcgaccaaatcacacaaagatgattttggttatcttgaatttgaaggtggcgctaactttagttggggagaaatgtacgggttcttcgactgggaaaacttctataacggtcgccataataaaccaggtagcgagcagcgttatacctttaaaaataccaaccgtatttacctgggtgacaccggatttaatctctacttgcatgcgtatggcacctacggttctgcgaatcgcgtgaatttccacgacgatatgttcctgtacggtatcggctacaatttcaccggcagcggttggtggttcaaaccgttctttgctaagcgttatacagatcaaacctattacactggcgacaacggctatgtcgccggctgggttgcaggttacaactttatgctgggcagcgagaaattcactcttaccaactggaacgagtacgagtttgaccgtgacgctacctatgcagcgggtaatggcggtaaagaagggctgaatggcgcagttgcactgtggtggaatgcaacatcacacattactacggggattcagtatcgatatgcggatgacaaactgggcgaagatttttaccaggatgcgataatctactccatcaaatttaacttctgattgattactgccggggctcccggcagtatgaattcactctatatctgatacaacggatccccttcccgcccagccattagcgcattgccctggtctcgtaccacgtcccataaagcttcagcggcggtggaaagtgaacggttcttcctgcgcaccagcatcaactggcgttcaacaaccggcgtaatgcgctttaccaccagtgggctaccttcaggcaatggtagcgccagtgcgggaagaatactgatgccgatgcctgcggctaccatcgggaacagcgtcgccggatgtccaatctcctgcacaatattcgcctgaataccattgcgcgccagcgctgcgtcaatcagcggtcggctgcctgacgcgtaatcctgcaacaccaatttcgctccctgtaatgcctgccagggtacataatcttccacggccaaagcgctatcgcgatggcaaagcagaaagaaaggctcggaaagaatcgcttcacattgcagatcgcccactgggcctggatcgatgacgatgccaaaatcgacatctccctggcgaatactttccattacccactgctgcggacgatcgtgcaggacaaactgaatatctggatagcggcgatggctttcagcaatgcattgcggaataagatgcgcggaaatggtctggctggcagcgacccgaacttttccgctcagttgttgccccatacgcccggtatcgcgcaacgtgctgttcagttcatccagcagtcgctcaagacgcaaagccagctgctgccctgcatctgtaagcaccacttcacgcgtggttctgtccagcaggcgaacaccagtatgattttccagttccttcacactgtgactcactgccgactggctcaggccgatacgctctcctgcacgactaaaacttttctcctgcgctactgtgacgaaaacctttaattgttttaaagaataattcatctgttttcttcatgaatggatgcaataaatcaattttatttctcaaactggaagaagcacaatagaaccatcgatcatctggagtctttatgaaactttttcgtatcctcgatcctttcaccttaaccctgatcacggtggtgttgctggcctctttctttccggccagaggcgatttcgtccccttctttgaaaatctgaccaccgcagctattgccctgctgttctttatgcacggcgcgaagttgtcgcgtgaggcgattattgctggcggtggtcactggcgactgcatttgtgggtaatgtgcagcaccttcgtgctgtttccgattctgggtgtactgtttgcctggtggaaaccggtaaatgtcgacccgatgctctactccggttttctctacttgtgcattctcccggctaccgtgcagtctgcaatcgccttcacgtcaatggcgggcggtaacgtcgcggcagcggtttgttctgcgtcggcatccagcctgctggggattttcctttcaccattgctggttggtctggtgatgaatgttcacggtgcagggggcagccttgagcaggtcggtaaaattatgctgcaactgctgctgccgtttgtgttggggcatctttcccggccgtggattggtgactgggtgtcgcgcaataaaaaatggattgcgaaaactgaccagacgtccattctgttggtggtttatacagcgttcagcgaagccgtcgttaatggtatctggcataaagttggctggggatcattgctgtttatcgtggtggtcagctgcgttcttctggctatcgtgattgtagttaacgtctttatggcacgccgactgagcttcaataaggcagatgaaattactatcgtcttttgtggttcgaaaaagagtctggcaaatggcatcccgatggcaaacattctgttccccacatcggtgatcggtatgatggtgctgcccctgatgattttccatcagatccaattgatggtctgtgcggtgctggcgcgtcgatacaaacgccagaccgaacagttacaggcgcagcaggaaagcagcgccgataaagcttaaagcggacgcttcaggggctggaccagttgcgtcagcccctcggttttaatcagcagcgtgatttgcattagctcaccgagcttccctgccgggaactcatctttgcgggcaaaccacagcagatactcctccggcaggtcgattaagcgacgccctttgtatttgccaaacggcattatcgtattggctatttcaatcagctgctctttttccatctcagctacccagcaaacgcagcatttccgcttcgtcgatgacttcaatgcccagttcctgcgccttcgccagtttagatcctgcagcttcacccgctatcaccagatcggttttcttcgacacgctgcccgcgactttcgcgcccagttcgaccagtcgagctttagcgtcatcacgcgacatctggcttaagctgcccgtaagcaccacggttttaccagcaaacgggctgtcaatctcttccgcgttgataacgatcggcgcaggccagtgaacaccttccgccaacagctcgctgatgacattgcggttgctttcttcggcaaagaagttgtgaacgtgggatgcaacgacaatgccaacatcaggcaccttttgcagctcttcaatcgaagcggcttccagcgcttccagcgtgccgaaatatgccgccagacctgctgcggtggcctcgccgacttcacggatgccaagtgcatagaggaagcgagcaaaggtggtttctttcgctttttccagcgcgttaaccacgttttgtgccgattttggccccatacgctccagtccggtcagtttgcctgcggtgagtttgaacagatctgccggagtatggacatattctttttcaaccagctgatcgatgattttgtcgcccattccgtcaacatccatcgcacggcgggaaacaaagtgtttcagcgactctttacgctgcgcaccgcaaatcaggccaccggtacagcgggcaaccgcttcaccttccacacgctcaacgtcagaaccacataccggacaatgcgtcgggaatacaacctcacgggtatcttccgggcgttcagaaagcacgacgttaaccacctgcgggatcacgtcgccagcgcggcgaatcaccactttatcgccaatgcgtaaaccaagacgttcgatttcatccgcattgtgtaaggttgcgttactcaccagcacgcctgcaacatggacaggttccagacgcgcaacaggcgtaatcgcgccagtacgcccaacctgaaactcgacgtcacgcacaaaggtcatctgctcctgcgccgggaatttaaacgctaccgcccagcgcggggcacgcgcgacaaagccaagctgctcctgctgtgccagtgagttgaccttaatcaccacgccgtcgatatcaaagcccagcgtcgggcggtcttcttccactttgtgatagaacgccagcacttcttccgccgattcacaaagcgttacccgatcgctgaccggcaacccccactttttaaattgcagtaaacggccaagatgagtatccggcagctcgccaccttccagaacaccaacgccatagcagaaaaaagtgagcggtcgcttcgctgtaatacgcggatcaagctgacgcagtgaaccagctgccgcattacgtgggttagcaaacactttcccgcccgtgcgtcgcgcatcttcgttaatcttttcgaaccccgcctgcggcaggaacacttcaccacgcacttccagacgcgccgggatattctctccgtgcagcttcagcggaatggcgcgaatagtacgcacattagacgtgatatcttccccggtggtgccatcgccacgggtcgcggcactgactaaaacgccattttcatacagaatactgacggcaagaccatccagcttcagctcacagcaccaggtgactttctcgttgtttttcagacggtcctgcacacgtttgttgaaagcaagaaagctttcttcatcaaaaacgttatccagtgacagcattggtacttcatggcgtatctggctgaaagccgccagcggcgcagcgcctacacgttgagtaggcgaatcaggcgtaatcagttctggatgtttggtttccagctcgcgcagttcgcgcatcagcctgtcgtattcagcgtcgggaatttccggcgcatccatcacatgataaagatattcatgatggcgaagcgtcgttcgcagttctgtcagttgttgttcgattgattccatatcgcaccatcaatgctaaaaacccccgacaagcgggggttcgaagaggagttaatttgccttaagtgtatcaggcgttggcgtctttgacttcgcggatgatgtcctggtactcgcgcaatttctgcggagtcatcatacggcgctgatcgtcaagcacgacaccgcccacttcatcggcaatatgctgcgcagattgcagcatcagcttgaagttctgcagctcgtcaccgtaagacggtacctgcataaagatagtgacacccggagtagtgaaatccttcatttcaggatcaaaggttcccggtttcaccatattcgccaggctgaataacgccgggccgctgccatccgggctaagatgacgatggtaaatattcatatcgccaaaaatgaagcccgcttgttgaatgctgttaagaagcagttcaccgtttagctcgctaccgtgatgcgccgcgacgttcatgataatcaccgcttctttgcgcttcggtttatccataactggagcaggttccgctacaggctcaggctgtggtgccgctacgggttctgcaggctggaaagcctgttgtgccggttgcggtgctgaatgcacaggctgcggcgctggcgcgacctgtggcgaaactggctgctgcaacggctgttcaggctgcggctgataggcaggctgctgcaccggctgcgctggatgcggagcatgttgcggcggtacctgcgcttcaggcggctgctggaccggttgacgcggctgcgcagacgcataaggcggttggtactggtgttgcggcgacggacgagcagcctcatgctcctgagcgttagccggggcatgattcacgcggtgaacacgaacctcaccaacgccctcatcatcttcgacatcctcgtcataagaatcgtcgtcacgttttgacttcattcgttttaatggccgatcgcggaacatagaagatcgttctttacggctggtccagaaaccatgtaccagtaaagcgattatggcgatcgcgccaacaatgattaatatcagacgcaaatcctgcatcattatattctctgttgttctaacaccttgccaccacggcaaacatttactcactaagagtatttgccgattacctcaagtgcaagtgcactattaactttcacagcacaaagatagatgaaatcgtgctttttgctgttttttcgaacatatcctaactgtccattgcgcaattacccggtaaaatacgcagaattttcctgggattggtcaaaaggagctcatcctgattatggtttcatcattcacatctgccccacgcagcggtttttactattttgcgcaaggctggaagctcgtctcgcaacctgggattcggcgtttcgttattttaccgctgctggtcaatattttgttgatggggggcgcattctggtggctctttacacagctcgatgtctggatcccgactctcatgagttacgttccggactggctacaatggctgagttatctgttgtggcctctggctgtcatctctgtgctgttagtgtttggctatttcttctccacgattgctaactggattgccgctccgtttaacggtttattggctgaacaactggaagcacgattgactggcgctacaccgccagataccgggattttcggtatcatgaaagatgtgccgcgaatcatgaaacgcgaatggcaaaaatttgcctggtatctgccgcgcgcaattgtattactaattctttacttcatccctggtattgggcaaaccgtcgcgccggtactgtggttcctgtttagcgcctggatgttagccatccagtattgcgattaccccttcgataaccacaaagtgccgtttaaagagatgcgcaccgccctgcgcacacgcaaaatcaccaatatgcagtttggtgctttaaccagcctgtttacgatgatcccgctgcttaatctgttcatcatgcccgttgccgtttgtggcgcgacggcgatgtgggtcgattgctatcgcgataaacacgcgatgtggcggtaacaatctaccggttattttgtaaaccgtttgtgtgaaacaggggtggcttatgccgccccttattccatcttgcatgtcattatttcccttctgtatatagatatgctaaatccttacttccgcatattctctgagcgggtatgctacctgttgtatcccaatttcatacagttaaggacaggccatgagtaagatttttgaagataactcgctgactatcggtcacacgccgctggttcgcctgaatcgcatcggtaacggacgcattctggcgaaggtggaatctcgtaaccccagcttcagcgttaagtgccgtatcggtgccaacatgatttgggatgccgaaaagcgcggcgtgctgaaaccaggcgttgaactggttgaaccgaccagcggtaataccgggattgcactggcctatgtagctgccgctcgcggttacaaactcaccctgaccatgccagaaaccatgagtattgaacgccgcaagctgctgaaagcgttaggtgcaaacctggtgctgacggaaggtgctaaaggcatgaaaggcgcaatccaaaaagcagaagaaattgtcgccagcaatccagagaaatacctgctgctgcaacaattcagcaatccggcaaaccctgaaattcacgaaaagaccaccggtccggagatatgggaagataccgacggtcaggttgatgtatttattgctggcgttgggactggcggtacgctgactggcgtcagccgctacattaaaggcaccaaaggcaagaccgatcttatctctgtcgccgttgagccaaccgattctccagttatcgcccaggcgctggcaggtgaagagattaaacctggcccgcataaaattcagggtattggcgctggttttatcccggctaacctcgatctcaagctggtcgataaagtcattggcatcaccaatgaagaagcgatttctaccgcgcgtcgtctgatggaagaagaaggtattcttgcaggtatctcttctggagcagctgttgccgcggcgttgaaactacaagaagatgaaagctttaccaacaagaatattgtggttattctaccatcatcgggtgagcgttatttaagcaccgcattgtttgccgatctcttcactgagaaagaattgcaacagtaatgccagcttgttaaaaatgcgtaaaaaagcacctttttaggtgcttttttgtggcctgcttcaaactttcgcccctcctggcattgattcagcctgtcggaactggtatttaaccagactaattattttgatgcgcgaaattaatcgttacaggaaaagccaaagctgaatcgattttatgatttggttcaattcttcctttagcggcataatgtttaatgacgtacgaaacgtcagcggtcaacacccgccagcaatggactgtattgcgctcttcgtgcgtcgcgtctgttaaaaactggcgctaacaatacaggctaaagtcgaaccgccaggctagactttagttccacaacactaaacctataagttggggaaatacaatgttccagcaagaagttaccattaccgctccgaacggtctgcacacccgccctgctgcccagtttgtaaaagaagctaagggcttcacttctgaaattactgtgacttccaacggcaaaagcgccagcgcgaaaagcctgtttaaactgcagactctgggcctgactcaaggtaccgttgtgactatctccgcagaaggcgaagacgagcagaaagcggttgaacatctggttaaactgatggcggaactcgagtaatttcccgggttcttttaaaaatcagtcacaagtaaggtagggttatgatttcaggcattttagcatccccgggtatcgctttcggtaaagctctgcttctgaaagaagacgaaattgtcattgaccggaaaaaaatttctgccgaccaggttgatcaggaagttgaacgttttctgagcggtcgtgccaaggcatcagcccagctggaaacgatcaaaacgaaagctggtgaaacgttcggtgaagaaaaagaagccatctttgaagggcatattatgctgctcgaagatgaggagctggagcaggaaatcatagccctgattaaagataagcacatgacagctgacgcagctgctcatgaagttatcgaaggtcaggcttctgccctggaagagctggatgatgaatacctgaaagaacgtgcggctgacgtacgtgatatcggtaagcgcctgctgcgcaacatcctgggcctgaagattatcgacctgagcgccattcaggatgaagtcattctggttgccgctgacctgacgccgtccgaaaccgcacagctgaacctgaagaaggtgctgggtttcatcaccgacgcgggtggccgtacttcccacacctctatcatggcgcgttctctggaactacctgctatcgtgggtaccggtagcgtcacctctcaggtgaaaaatgacgactatctgattctggatgccgtaaataatcaggtttacgtcaatccaaccaacgaagttattgataaaatgcgcgctgttcaggagcaagtggcttctgaaaaagcagagcttgctaaactgaaagatctgccagctattacgctggacggtcaccaggtagaagtatgcgctaacattggtacggttcgtgacgttgaaggtgcagagcgtaacggcgctgaaggcgttggtctgtatcgtactgagttcctgttcatggaccgcgacgcactgcccactgaagaagaacagtttgctgcttacaaagcagtggctgaagcgtgtggctcgcaagcggttatcgttcgtaccatggacatcggcggcgacaaagagctgccatacatgaacttcccgaaagaagagaacccgttcctcggctggcgcgctatccgtatcgcgatggatcgtagagagatcctgcgcgatcagctccgcgctatcctgcgtgcctcggctttcggtaaattgcgcattatgttcccgatgatcatctctgttgaagaagtgcgtgcactgcgcaaagagatcgaaatctacaaacaggaactgcgcgacgaaggtaaagcgtttgacgagtcaattgaaatcggcgtaatggtggaaacaccggctgccgcaacaattgcacgtcatttagccaaagaagttgatttctttagtatcggcaccaatgatttaacgcagtacactctggcagttgaccgtggtaatgatatgatttcacacctttaccagccaatgtcaccgtccgtgctgaacttgatcaagcaagttattgatgcttctcatgctgaaggcaaatggactggcatgtgtggtgagcttgctggcgatgaacgtgctacacttctgttgctggggatgggtctggacgaattctctatgagcgccatttctatcccgcgcattaagaagattatccgtaacacgaacttcgaagatgcgaaggtgttagcagagcaggctcttgctcaaccgacaacggacgagttaatgacgctggttaacaagttcattgaagaaaaaacaatctgctaatccacgagatgcggcccaatttactgcttaggagaagatcatgggtttgttcgataaactgaaatctctggtttccgacgacaagaaggataccggaactattgagatcattgctccgctctctggcgagatcgtcaatatcgaagacgtgccggatgtcgtttttgcggaaaaaatcgttggtgatggtattgctatcaaaccaacgggtaacaaaatggtcgcgccagtagacggcaccattggtaaaatctttgaaaccaaccacgcattctctatcgaatctgatagcggcgttgaactgttcgtccacttcggtatcgacaccgttgaactgaaaggcgaaggcttcaagcgtattgctgaagaaggtcagcgcgtgaaagttggcgatactgtcattgaatttgatctgccgctgctggaagagaaagccaagtctaccctgactccggttgttatctccaacatggacgaaatcaaagaactgatcaaactgtccggtagcgtaaccgtgggtgaaaccccggttatccgcatcaagaagtaattcttgccgcagtgaaaaatggcgcccatcggcgccatttttttatgcttccgccagcggcggcaaaatcaattcatcgctctcatgctgctgggtgtagcgcatcacttccagtacgcgcaaccccgctcggtgcactgcatcggttaacgccttccctttcagcaagccactgatgagctgagcacaaaacaggtcgccagtccctttcaggtcggtttttacccgtgaatgggaaatgacattcacgctgtcggcagtgaccaccacaacctgcatctcctgattttcttcattaccggaggcgctggtaaccaccacccattttaatgtgtctgaaagcagactttttgcggcagcaatggcactgtcgagatcgcggcaatttttaccggtcaggatttccaactcaaagatattgggggtaattccctgcgccagcggcagtaaatattgtcgatacgcttcgggaaggtcaggtttgacataaattccgctatcaatatcgccaatcaccggatcgaccatgatcaataggtcaggatggtctttgcgtagcgcagtcagccactcggcaaggattttgatttgcgatgccgttcccatatagcccgtggttacagcacgaagttggcgcagcgcatcacgctcctgaagcgcacgcaaatagccgctaaaccattcgtccggaatcgcaccaccgtagaaagtgtcataatgcggcgtattgctcagcaataccgtcggcacggcaaagacattcaggccgttctgtttgatagcaggcacggcaatgctgttgcccacgctgccgtaaaccacctgcgactgcacggcgacgatatccgcctgcagtgccctactcttatcgttaaacaacaacaaactactcatttaattttttctccttgccgatgatcctcatcgtaatccaaccgaaactttacctgattctggcagtcaaatcggctatcacaaaacaaggataaggtaattcaatgaagaaaatcatttgtctggtcattacactactaatgacactccccgtttacgcgaagttaactgcccatgaagaagcccgcatcaacgccatgctggagggattagcacagaaaaaggatttgatatttgtgcgcaacggtgatgaacatacctgctatgaagcggtttctcatctgcgtctgaagctcggcaatacccgtaaccgcattgacactgccgagcagtttattgataaggttgcttcgtcgtcatcgattactgggaagccgtatattgtgaagatccccggtaagagcgatgagaacgcacagccttttttacatgcgttaattgcgcagacggataaaacggtgcctgcggaaggaaattaatccgctttgggaaggcatttacaggaggtaacatgaaaaaacgctttatttatcacgatgaaaaatcgaataaattttggtggatagattacgaaggggatagtttagctgtcaactatggcaaggtaggtagtattggtaaattccagacaaaagagttcgataatgaagaacagtgtctgaaagaagccagtaaattgattgccgcaaaaatgaagaaaggctatcaagaagatccaaagtttaacttcatggatcgctactattttgatgatgaagaaattgggttacatgttaaaacgtcacacccaaacttccagtgccattttactgatccactttatatgtgttgctgggatgaagaatctccttttggcagcgatgaaggtgctgatgctctaaacgttcttgaaaatagcctccgtaaagagccggatctggactgtgctgatttccctcaaatgttaattgaaactatgtggggtatgaaatacatcgctatggacagtattcttgaagaggatgttcgtgcgcaattactagtcgatgaaatgagcactatccagagcaatatgattacctacgcaactgcattcggtcagattaaagtcatgggtaaaatctcccataaacttaaaaagatgggactcaatgcactagcgcgtcatcagcttaccgcaaaaattcttcaatggggtgacggtcaggactcaccaatacttcaaaaaatgattgatgaccttacggcgtttcctcacgaaaattaaatactgcatttgtcggcagcaacaactgttaaaaaagtgcgctttgtttatgccggatgcggcgtaaacgccttatccggcctacaaaatcgtgctaattcaatatattgcagaaaccttggtaggcctgataagcgtagcgcatcaggcagttttgcgtttgtcatcagtctccgatgctattaatccttaaatccccgccccctggctaaaatgctcttcccccaaacaccccggtagaaaggtagcgatcgccacgatcgcagatgatcgccaccaccaccgcgtcagggttagcttttgccacccgcagtgctccggcaaccgcgccgccggagctgacgccacagaatattccttcccgcaccgccagttcgcgcatggtgttttccgcatcgcgctgatgaatatccagcacctcatccaccagagaagcgttgaaaatccccggcagatattccgtaggccagcggcgaatgccgggaatgctgctgccctcttccggttgcaggccgacaatggtcaccggtttggattgttcgcgcataaagcgtgagacgccggtgatagtgccggtcgtccccatgctggagacaaaatgagtgatgcgcccgccggtttgctgccagatttccggcccagtggtggtgtaatgcgcataagggttatcgggattattgaactgatcgagcagctttccttcgccacgattcgccatctccagcgccagatcgcgcgcaccttccatgccctgctctttggtgacaagaatcagttccgcaccataagcacgcatcgccgcacggcgttcctggctcatgttgtcgggcatcagcaatttcatgcgatagcctttcagcgcggcaatcattgccagcgcaatgccggtgttaccactggtggcttcgattaagacatcacccggtttaatttccccgcgcttttccgcctcgacgatcatcgaaagtgccgcacgatctttcaccgaacctgccgggttattgccttccagttttaaccacacttcactgccgttatccggccccattcgctgcaacttcaccagaggcgtattgcctattgtttgttctaatgtactcacgatctctatccatacgtggtgttgcctgatgcgacgcttgcgcgtcttatcaggtctacaggttacaaaccttgccattaaaaagcccggatcgcgggaagcgcctccgggcgtttaacattcactcaacctatcaggcgctttgtgcgagagcaagttcctcatcgcgggtttcgatacgctcgtcgccgttatacagccgcgcatgttgcagaccaacgaataaacgctcgccacgctgcggggcatcgtcgccatgcatcacgaccgtcagcggttcgttgtaccaccccagcggctgcaccactaattgggtgtagtgacctttcgggctggcttccagtacctgtaccggcagcggcgaatcgaggctggtacggcggctgatatccacttcccaagggcgcaggaagagatccaccggcccctgatacgcaggtgtgtagcccagcggccagcgatgcgcgccaacatggaactgcccgccgcgaatggttccctgcaggcggttcacttcgcccataaattcgagcacaaaacgggtcgccggttcgcgccatacctgatccggcgcgtcagcctgttcaatattgccctggctcatcacaactacacgatcagctacttcggtcgcttcttcctgatcgtgggtcacaaaaacgctggtgaattttagttcttcatggagttgacgcagccagcgacgcagctctttacgcacctgcgcatccagcgcgccaaacggttcatcaagcagcagaatttgcggttccacagccagcgcgcgcgccagcgccacgcgctgtttctggccgccggaaagctgcgccggataacgatccgccagatgggcaagctggaccatttccagcaattttgtcactttcgctttgatggctgcggcattcgggcgctcgcgacgcggcagcaccgtcaggccaaaagcgatattgtcgaacaccgtcatatggcggaacagcgcgtaatgctggaacacgaaaccgactttacgatcacgtgcgtgcaggcggctcacgtcggtgccgtggaagcgaatatgcccgctggtttgatgctccagcccggcgataatgcgcagcagcgtggttttcccggaaccggacggccccagcaacgcgaccatctgacctgaaggaatatccagtgagatatcgttcagcacctgggtgcgaccaaacgacttcttaatattggcaatctcaatgctcatgatgttcctcctgctgtgcgcgtttttcctgattctccaggcgccactgcaacatactttttaaaaacagggtgataatcgccatcagcgttaacagcgccgcagcggtaaaggagccgacggtgttgtagtcctgctccagcaattcaatctgtaacggcagcgacagggtttcgccgcgaatcgagccggaaaccaccgacaccgcgccaaactcgccaattgcgcgggcgttggtcaacaccacgccataaagcagcgcccagcggatgttcggtaatgtgacgcgacggaacatctgccagccggacgcgccaagcaaaatcgccgcttcgtcttcctggctgccctggcttaacatcaccggcaccagttcgcgcaccacaaacggacacgtcacgaagatggtgaccagcaccattcccggccaggagaacataatttgcaggttatgctcgtcgagccaaccgccgagcgggccgttagagccgtagaacagcaaatacaccagaccggcaaccaccggcgatacggcaaacggaatgtccagtagcgtcagcagtaactggcgtccagggaagttaaagcgcgtcaccagccaggccagcagaatgccgaacaccaggtttaccggtacggcaatcagcgcgatcatcaccgtcagccagatggcgtgcagcatgtccggatcggccagattctgtaaaaccggcatcagccccttgctgaatgcctgcacgaagatgtaaatcatcggcaccagcaggatgaacgccgaaaccagcatcccgatgccaatcagaaaccatttgccccagttaatcgggcgcgcgtcataacgcttcaattgggtaacttccgccattaatgacctaccacacgccgaccaaagcgactttgcagagtgttaattgagaacagcagcagcagagatgccgcgaggatcaccgaagcaatcgcgctcgctgccgggtaatcaaactcctgtaagcgcacaaaaatcatcagcgacgtcacttccgtcttccacgcgatatttccggcgataaaaatcaccgcgccaaattcaccaagactacgggtaaacgacagcgccacgcccgccaccagcgccggagaaagctccggcagcaccactttgcagaaactctgccagcgcgttgcaccaagcgtttccgccgcttcttcatattccgggcctaactcttccagcaccggctgcacggtacgcaccacaaacggaatgctggtaaaggccatagccaccgcaatccccagccatgtataggtgactttgatatcaaacttcgccagccattcaccgtaaaaaccgtttacggaaaagagcgaggccagcgttaaaccggcgacagccgttggcagcgcaaagggtaaatccatcagcgcatcaagcagcgtgcggcctgggaagcgatagcgggttaggatccacgccatcagcagaccgaaaacgccgttaaaaatcgatgccacaaacgccgacagcagcgttactttgtaggccgcgaccacctgcgggttggtgatcacctcccagtactgcgcccagctcatctgggccagttgcatcaccagcgcggagagcggcagcagcaaaatcaggcacacaaacagcagactggtgccgaggcttaaggtaaagcccggcagcacgcgtctggaggagacagcaaacatcagttacgccccgccgctaacagcttgtctaactcgccgccgctggtgaagtgggttttcatcacttccggccaggagccaaatttgtcttccacgcggaacagctcggtctgcgggaatttgtctttcagtttgtccatcacctccgggttattcacgcggtagtaatagtcggtgatgatggtttgcgcctgcgggctatagagccagttcagataggctttggcggctttttccgtaccgttggcctgcacgtttttatcaacccacgccaccgggaattccgccagaatgttggttttcggaatcaccacttcaaagccctgcgcttcatactgtttacggatgttgttcacttccgattcgaagctaatcagcacatcgcccaggccgcgctcggcaaaagtggtggtcgcgccacgaccgccagtatcgaacacttcaacgtttttcaggaactgggtcataaactgttcggttttgcctttgtcaccaccgtcagctttatccgctgcgccccatgccgccagataggtataacgcgcgttacccgacgttttcgggttcgggaaaatcagcttcacgtcggagcgcaccaggtcgttccaatcgtggatattcttcgggttacccttacgcaccaggaagcccatggtggagtagaacggcgagctattattcggcaggcgcgactgccagtcggccgggatcagcttgcctttatcgtgcaggatttgtacgtcggtcacctggttataagtgacaacgtcggcttttaagccctgtaaaatcgccagcgcctgttttgatgacccggcatgagattgttttatcgtcagtttgtcgccgccgttatcttttgcccattgttgctcaaacggcggattcagggcggcaaacagctcgcgggagacgtcataagaactgttcagcagttccgttgcctgtacatggcccgccagcagcagagaagcgaccagcgcgagtgagttctttttcagtaagttaacggccattgcgcacccttataaatttaatgactttctaatagccatcatatttataacggacgtgaaaggagtaacggttttatataccgtttggtgatttggaagttgaaaagggaataagaacttggttcaacaggcgtaattgttgcagtcagtttggacacgaacagcgcggagaaaccggagcgtacacatagtacgtgaggatttcgagcactgcccggggccaaaatgacaaataaaatagcctggtgaacttagttcaagacgaaatcctccccacaaatgcagggaggaaacagaggtgaatcagataccgacgctaaccgtctccggcagtgtgctgccgccatcaatcacattctgtgtaccggttaaatagctggattcatccgatgcgaggaaggccgccagttcgccgacttccagcggatcggcgaggcgacgcatcgggattgctttcgccatttcagtcagcaccgactctggatcttccgggttcgactggcgggcaatgctttccgccattggtgtgcgcacgtatcccgggcaaatggcgttaacgcgaataccagactgcgcgtactccaccgccagcgattttgtcaggccaacaatcgccgctttcgttaaggcgtacgccgtttcgccaggatcggccaccatatcaccagtgactgaagacatcatcacaatgcgaccatctttgcgggcaatcatctccggcagcaccgccttcgtgacgttccatacgcctttaatattgatgtcaatatggaaatcgcgatcgtcatcgctcatatcgaggaaactgcccagacgacaaacgcctgcgttattcaccaggatatcaatgcgcccttctttttccttcgcgcgtttgatagctgcggctaccgacgccgggtcacgcacatcggcgacaaccgccgtacagcgatgaccacgaccacacagttcgtccgccagcttttcgatctcaggggagatatccagcaagattaggttcgcgccatgacgtgcaaaagttctggcaattccttcgccaattccctgcaatgcgcccgtaatcagtgctgtcttgcccgtgagtttacccattttaatgctctccttgttaatacagagcgttacactccattccctctgaaaatacaggataaacaaaatattgctgcggatcagctcactaattcaggaaaatctcaatccagtcgctgctttatgcatcatttcaggcgttgtgttagctcactgctgcgctgaatcattttcaatgactccacatcattgagttgcacaaggccaacaaacagtaaatcggtaacagaattttgcgccgtgcgggtagacatcgacgagctacgccattcggtttctccggaaacggtatcgagggtgaaatgcgccagccgccgcagcggagagtcagtcagagaagtaatggcaatcaccgttgccccctgctttcgtgccgcttctgcgcacaagacaatctcttttttactgccgctgtaagagatagcgatttgtacatcgccttttttcaacgcctgagaaacggtggcttgtacgtgcgtgtcggcttcgcaggccacgcgatagccaattttcatcagtttgaacgacagatcgcgccccaccagcgccgatccgcccaggcccgttatctggataaacggtgctttactgatgacctcaatgattttttgcagccgcgcgtaatcgagcaacgcgcaggtttgctccagcgccagctctttttcgcgattcagtttgcgcgcgatcacttccagcgaatcatcactggtaatcgaactgtgcaggtgcagtgccgtggcattcgttttctcccggctggcactgtattcgcctattaacgccatacgcaattcagtaaatccttgcgcgccgagtttttgggcaaatttcactatgctcgactggctaatgccgagctgtttcgccatctgccgtgaagaaacggattgcagctcactcacgttggcctgcagaaagtcagcgattttttgctcgttttcggtgaattcactccccgcattgcttattttcgtcaggtacaacatcttccactctcctgggctggcagcataaattccgcttaagttcttatgacgctcttcacactctgcgagtgtagactcaatgattcctttaagcctgtcaattcgggatatatgattccatacatctgcaattatttgatcgtaaatagtaaggtcaccaccgatgcaatttgaaaagatgattactgaaggctcgaacaccgcctcggctgaaattgaccgcgtatcgacgctggaaatgtgccggattatcaacgatgaagataaaaccgtaccgcttgccgttgagcgcgtactgccggatatcgccgcggcgatcgatgttatccacgcccaggtaagcggcggcgggcgtctgatttacctcggtgcgggaacatccggtcgtctggggattctggatgccagcgaatgtccgcccacctacggcgtgaaaccgggtctggtggttggtttgattgctggcggcgaatatgccattcagcacgcggtggaaggcgcggaagatagccgggaaggcggtgttaatgatctgaaaaatattaatttaacggcacaggatgtggtggttggcattgctgccagcggtcgcacgccgtatgtgattgccggactggaatacgcacgccagctcggctgccgcacagtgggaatttcctgtaatccggggagcgccgtttcaaccaccgctgagtttgccattacaccgattgtaggtgccgaagttgttaccggttcttcgcggatgaaagcaggtacagcgcagaaactggtgctcaatatgctttccaccgggctgatgattaaatccggcaaagtgttcggcaacctgatggtcgatgtggtcgccaccaacgaaaaactgcatgtgcgacaggtcaatattgttaaaaacgccaccggatgtagcgcagagcaagcggaagcggcgttaattgcttgcgagcgcaactgtaaaacggccattgtgatggtgctgaaaaatctcgatgccgcagaagctaaaaaacgcctggatcaacacggcggctttattcgtcaggttttagacaaggaataacccatggccaaagagatcagcagtgaacttctgaacaccattcttacccgtgtcggcggaccgggaaatatcgccagttgtggtaactgtatgacgcgcctgcgtctgggtgtacatgacagttcactggttgatcccaatatcaaaacgctggaaggcgtgaagggcgtcattttgaccagcgaccaggtgcaggtcgtttttgggcctggtaaagcgcatcgtgccgcaaaagcgatgagcgagctgctgggagaagcaccggtacaggatgccgcagaaatcgccgcccagaacaaacgtcagttaaaagccaaacaaacctccggcgtgcaacaatttctcgccaaattcgccaccatcttcacgccgctgatccccggttttattgccgccggtctgctgctggggatagcgacgttaattgccacggtgatgcacgttccggcagatgctcagggaacactacccgatgcgctgaattttatgaaggtgttcagcaaaggtttgttcactttcctggtgattctggtgggctataacgccgcccaggcatttggcggcacgggcgtaaatggcgcaattatcgccgcgctctttttgctcggttataaccccgcagcgaccaccggttactacgccggttttcacgatttctttggtctgcccatcgatccgcgcggcaatattatcggcgtgctgattgccgcgtgggcctgcgcccgcattgaaggcatggtgcgccgctttatgccggacgatctcgacatgctgctgacctcgttaatcaccctgctgatcaccgctacgcttgcgtacctgatcattatgccgctgggtggctggttattcgaaggtatgtcatggctgtttatgcacctgaacagtaatccgttcggttgtgcggttttagccgggctgttcctgatcgccgtggtatttggcgtgcatcagggctttattcctgtttacctcgcgttaatggacagccagggattcaacagcttatttcccatcctttcaatggcaggcgcgggccaggtgggcgcggcgctggcactctactggcgggcgcaaccgcacagtgcgctacgcagtcaggtacgcggggcgattattcccggcctgctgggcgttggtgaaccgctgatttacggtgtcaccctgccccgcatgaagccgtttgttaccgcctgtttaggcggcgcggcgggcggtttgtttatcggcctgatagcctggtggggtctgccgatgggcttaaacagcgcctttgggccgtctggtctggtagcgctgccgctgatgacttccgcacaaggcatccttccggccatggcggtttatgctggcgggattctggtggcatgggtttgcgggtttattttcaccacgctctttggctgccgtaacgtcaatctggactgatatcatgaaacggacaatgctctatctttctctgctggctgttagttgtagcgtcagcgccgcaaaataccctgttctgacagaaagctcgccagagaaagcagggtttaacgtcgaacggcttaaccagatggatcgctggattagccagcaagttgatgtcggttatcccagcgtaaacctgctgatcattaaagataatcagattgtgtatcgcaaagcctggggagcggcgaaaaagtacgatggcagcgtgttgatggaacagcctgtcaaagccaccaccgggacgctgtatgacctggcctcaaacaccaaaatgtacgccacgaacttcgccctgcaaaagctgatgagcgaaggcaaactgcatcctgacgatcggattgcgaaatatattccggggtttgccgatagtccaaatgacaccattaaaggcaaaaacaccctgcggatttctgacctgctgcatcacagcggcggtttcccggcagatccgcaatacccgaataaagcggtcgcgggcgcgttatattcccaggataaaggccagacgctggagatgatcaagcgcacgccgctggaatatcagcccggcagcaaacatatctacagcgatgtcgattatatgctgcttggatttatcgtcgagtcggttaccggtcagccgcttgaccgctatgttgaagagtcgatttatcgcccgctcggcctgacacatacggtatttaacccgctgctgaaaggctttaaaccgcaacaaattgccgccacggaattgaacggcaatacccgcgatggcgtgatccatttcccgaatatccgcacctccactctctggggtcaggtgcacgatgaaaaagccttttattcgatgggcggcgtttccgggcacgcaggtttgttttccaataccggcgatattgcggtgttaatgcaaacgatgctgaacggcgggggctatggtgatgtgcagctgttcaatgcggaaacggtgaagatgttcaccaccagctctaaggaagatgccacttttggcctcggctggcgcgtgaatggtaatgccaccatgacgccgacgtttggcacgctggcaagcccgcaaacctacggtcacactggctggaccggaacggtgaccgttatcgatccggtgaatcatatgacgattgtgatgttaagcaacaagccacattcgccggttgccgatccgcaaaagaatcccaatatgttcgaaagcggtcagttgccgattgcaacttatggttgggtagttgatcaggtgtatgcggcgttaaagcagaagtaataaaaaggccagtcagtaatgttactggctggtctgagagtgctgacaaacgcaaaactgcctgatgcgctacgcttatcaggcctacgtggagcccacaatatattgaattagcacgatttcgtaggccggataaggcgttcacgccgcatccggcgtgtacaacgcgcacttggtcaacaatctgaggccagtcagtaatgttactgcctggcctttaatcaatgaatcagaaacgcttacagcgccatcaacttgtccagcgacggtgcgaaataatagccgccggttaccggtttggtgaaacgcaacatcgcatcacgcttaccatcggtatcgccaaacatgctcagcagttgctgctcaatgttatgcagacgcgcgcagtaggcgcagaagtacagaccgtgagtgccactggcagtgccgtacggcaggctctggcgaacaatcttcagccctttgccatcttctttcagatcaacgcgggtgaggtgagaggtttccggacgttcgtcgccgtcgatctcttcgttggcctctttggtgcgcccgatcaccatctcctgatcgtgaacgctcatccggttgagctgcttcaggttgtgttcccaacgctggacaaacacatagctgccgcccgcatccacgccgtctttgataaccgccacttcgcgacgcgtctcttcacccgccgggttttccgtaccgtcaacaaagccgctcaggtcacgctcttcaacccaacggaagccgtggatctcttctttcacttcaatgcagtcaccaaaggcttccatcgccgcctgggcgacagagaagtttacgtcgtgacgcagagaaagaatgtggatcaacacatcgaactgggtcgtcggcgcaaggcctttaccgtagcccggaaaatctttcagctcttctgccccaacgccgccgctcagagcgcgccaggtgttgttaccaaaggcaaccaccgcaccaagatgcgcgtccgggaatttcgcttcaaaagttgccagtttgtcggcaaatgttttactggccgcacgcagggcgtcaacttcccctttcacgttggcttcgatccaaatcgccgcgcggcaatgttctggcaaaatgccactctgaacctgagacattgttcctcctgaaaataataatgccacgcaatccgtggcattgttgagcgctattttacgtgttttttcgcggcggcggtttgttcagacgcaaattaacgccgccagataattttactgactttccagtttttcagggtatcgtccgaaggcattaacccttcaggaccacgccattccccgctgaactggtagctaatatgttgactgccttcggctttacattcgacggcacgattatcatcaccatcagctttttggcaattgccaaatgctttgctgtaaaggtcgctaaacggtgtaccgattttaacaccggtgtcagcaggaatatcgctatccagcacgtcaatgcgactgatcgtgccttgatcgccgttaatcaccatcgccacgttgtcgcccttcatcacttcaaaaaagcgcaccacgttgccgttcgcggttttcattccgctgcgcaggcgataatcgccatcaagcgcatcggcaatggcttgttcttgcagtggtgtggacgccgttaattcacccacgccctgctcgctcactttggtggacgacccaaaccagttccacgggttagcggcagaccagttaactgacgacatcgtggaacagccggtcagcatcaatggcatagcgcataacattaaacgcagcgatttcatgtcacttcctttggttattcaataacgttgcttggagtgcaaattcaccaaaaagtgccgttattcttttacttcataaaaacaagcgcgtaaacgtcgattggtcagcagccagattaacgccacaatatccgccactaccagcgccagaccgataccgctaacggattcaccgttcagccacagccacggttgccagcaaagtaaaaccacctgcgccaacagcaacagaaaatagagtacacgccaggtgcgaggaaacgtagcccgccgaccgctcaacaaaaacgccagcaccgccggaatgccaggaatcagccccagccagaaattatcgtgatcgggataaaacagatttagcagcgcagtaccctgctcgcgcgacgcaccggcaatgacaaacagcacccaggttcgcgcctgaagcaatagcacaagccagaagagcaagggtaaacgcaggcgaccgtgcgcatcataatggacaggatgaaactcagtactcttcatcttcaatcaaacgcttacccagactcagcacgtcggcgtgttcatatcccaggcgttcatacattccgagcaccatgtcgttatcttccggcacattgatctgaattttcgggcagccacgagcaatcagctttttctccagccgattaagcaacgcattggcaatcccacgcccacgaaactctggatgcacgccaagataataagcagacccgcgatgcccgtcataaccgcccatcaccgttccgaccacgtcaccgtttacctcagcgaccaaaaacaaactgacgtcatggttcatcttacgctcgatgtccatttccggatcgttccacggacgcagcaagtcgcaacgctcccaaagggtgatgacctcttcgaaatcttcctggcgaaatacgcgtatctccatggtattcgttacctttttgcgggttaaaaggctgattatggcgtgaacggtcgaattagccaatatctgacgaaaatcggttgaaaaagtggcataatggggagttgtcaactattgaaatgaaaagtaaaacaattctcaacagcaaaccgtcgtaacggattacgcgatacgatataacatctggaactttattattacaactcaggccgtatgagcacttttaaaccactaaaaacactcacttcgcgccgccaggtgctgaaagccggtttggctgccctgacgttgtcaggaatgtcgcaagccatcgccaaagacgaacttttaaaaaccagcaacggacacagcaagccgaaagccaaaaaatctggcggcaaacgtgtcgttgttctcgatccaggtcacggcggaattgataccggagcgatcggacgcaacggttcgaaagaaaaacatgtggtgctggcgattgctaaaaacgtccgttccattttgcgtaatcatgggattgatgcgcgtttaacgcgttctggcgatacgtttatcccactttacgatcgcgttgaaatcgcccataaacatggcgcagatctgtttatgtcaattcatgccgatggctttaccaacccgaaagctgccggtgcttcggtatttgccctctctaaccgtggggcaagtagcgcaatggcgaaatacctgtctgaacgcgaaaaccgcgccgatgaagttgccggtaaaaaggcgactgacaaggatcacctattgcaacaagtgctgtttgatctggtgcaaacagataccattaaaaatagtctgacgctcggctcgcatattctgaagaagattaagccggtgcataaactgcacagccgcaacaccgaacaagcggcatttgtggtgttgaaatcaccgtcggttccttcggtgctggtggaaacctcgtttatcaccaacccggaagaagaacggctgttaggcacggcggcgtttcgtcagaaaatcgccacagcgattgctgaaggcgtgatcagttatttccactggttcgacaaccagaaagcacattcgaaaaagcgataagttatgaaacccgacgcacaccaggttaaacagtttctgctcaaccttcaggatacgatttgtcagcagctgaccgccgtcgatggcgcagaatttgtcgaagatagttggcagcgcgaagctggcggcggcgggcgtagtcgggtgttgcgtaatggtggtgttttcgaacaggcaggcgtcaacttttcgcatgtccacggtgaggcgatgcctgcttccgccaccgctcatcgcccggaacttgccgggcgcagtttcgaggcgatgggcgtttcactggtagtgcatccgcataacccgtatgttcccaccagccacgcgaatgtgcggttttttattgccgaaaaaccgggtgccgatcccgtctggtggtttggcggtggcttcgacttaaccccattctatggttttgaagaagatgctattcactggcatcgcaccgcccgtgacctgtgcctgccatttggcgaagacgtttatccccgttacaaaaagtggtgcgacgaatacttctacctcaaacatcgcaacgaacagcgcggtattggcgggctgttctttgatgacctgaacacgccagatttcgaccgctgttttgcctttatgcaggcggtaggcaaaggctacaccgacgcttatttaccaattgtcgagcgacggaaagcgatggcctacggcgagcgcgagcgcaatttccagttatatcgtcgcggtcgttatgtcgagttcaatctggtctgggatcgcggcacgctgtttggcctgcaaactggcgggcgcaccgagtctatcctgatgtcaatgccgccactggtacgctgggaatatgattatcagccaaaagatggcagcccagaagcggcgttaagtgagtttattaaggtcagggattgggtgtaactccctcacccccactcccgcatccgctgatgcagcgtcagtgacggcttctcggaaaacagctgctggtaatccgtggcaaattgccccagatgccagaatccccactgcatggcggcgtcttttaccgtcatactttgcgaccacggacttatcagttcgcggcgtacggcgttcaggcgaatgcgtttcagccacgcgttcgggccaatgcctaaaatagcgtgaaacgcgttttgtagcgtgcggcggctgacatgcagttgattacacaaatccagcaccgtcaccggttcggacatgttttccagcacatattcacgggcgcgggaaagcaatcgacggtaactctgatgactgatgctttccgccgtcaccattggttgcgcttcttccagcatggcccccatcgccattagcaaattatcccccagcacttttcgcactgcaggctgatggagattttccggattctcgcaaaacgtcgccagcgcctgttggacaaagccccacagcgcggctttatgctgctctttcacttccagcgccgactggttacgcaacatatgtaatacccgatccgggttatgcaaaaagttagcctgccgggtgatgacatcttcagaaagcaccacgcccaggatcgtgtaatcatccggcgtgctcagttcaaattcagtgccaccagggcgggtggcgatttccgcgcttcccagacattgcgaaccgataaatccctgctcaccgcgcgtcgccggaatgccaaaccagaacgagttcggccagaccaggcacgactgacgcagcgccagaccggtgtattcacgaaaaacctgaatatcatcgagtagaatttccgtaaattcaccatgaaacttgcccggatgcagctgatcgtaaatctgctgccaggcggtaatcgttaaagcatgttcatagacatccgttgtctgtcgttgatgaacattatccacttcgaccttcggcgtgagcttcaggttttcgggtaagggttcatgataaagatggtgcaaattggctgtacgggtctttttcatgatgttaatgccgggtgttgtaggacacccggcacctccgacaggttaatggggcttgagacgataacgactactgcgtttacgtaacgtcccggcagaaaagagctgttcgagcgcatttctggctttttccagcggccagccaaagtgggcagccacttctcctgccgtcattccctgacgtactgatgttaacagcgccaacaactcgtcagcagattccgcgacgataactggcgcgtcgggttcccttacgggttgcttcggctggcggttaaagccagtaaccagccactgggtgtcatcgtctggccgaccgatctccttgcggctgatgacacgcccggtacgcatcgcggcagcacaacctgcgtccagcgccgcacgacacgccgccagatcgccttccaccaccagcgttaagcgaccagggtcaagcacttcgtgactgagcagacgaacgttagctgctttgagcatggcatccgctgcatctatcgcggcgaccatgccgtccacttccagcaatcccagtgcattgatcatcggcaacctccgttacgcacgctggattggattacgcgcgatttccagcactgcatcggtaaaggcgttacaggctgctttacacgctgcctggctaccggttaaaaatgctgccgagtagttggtttcagacggtggcgggacataggtcgccagctgtacgtcggcagacttcagggctgcatcaatgccataggtcgcttccagcggcggtgccaccagatacgccatcggatcgccaagcgtgatcccggcggttgatgagagataagaaccggtacgcgaaactacatgtgccaggaatgccgtatcttgcgcgtcattagcccactggaaagctgcgccattttcaatatgcgcaatcatcgcatccagacctgcacgcacttccgccgggtttggcccaccaagcataatcagcacttcaccggcagtcggtgacgggccgtgtgcagcgcccgcatatagcgagcggccatacaccacttccaccatcgcctgcttggtcgcttcatcagcggcaatgtaggtgacgtcatcggagtcggcagaaatcagaccgaggctacgaatatgcggcggcaatttcagttcacgcgcaaaatcggcgttaacggaggcaatcacccgcatagcggtgacagacggtcgaatcaaatctaaagctggcatgatgcctccttatcgggtcatgttgatgccggatgctttctgctccagcatacgtttcgccaaatccacaatgacggctgcggcttcaaccggcggcgtgccgccctggtgaatgttagagatacaggtgcgatcggcctcaacggtggtcgccatacgcggcgagtaaacggcgtagcaggagaggctttctgactgacccaaccccggacgttcgcccaccagcaggatcactactttcgcgccgaggatctcaccgatctgatcttcaatcttcacgcgaccataacgaacaaagaatggtgtaccgactttcagcccggcctgtttcaggcccgccatcagcggtggcaggatctcttcgtagttcacggtgatcgcatcagttgacaggccatcagaaataacgacctgtacgtccggattggcaacacactgcgctttcagcgcttcaacagcttctgcacacaggcggcggcccatatccgggcgagtcaggtagagatttttgtcgctaatttcagagcgtacttccagcaagccctgcgctttcacccactcttccggcacttctttcagtacggtatctttcgaacgagagtgatcggccaggaaacgcagcagcgcctgcgtacgtggacgcggaccggcacgaccggtacaaacgcgggccacggtgctgcggcgcagttctgttaatacgtctgcgcgatgcggattttcaacaccaatccacgcttttgcttcagcggaacctaaatccagcgcacagctttccgaggtcaccggtgccgcacagttggtggtggcgcactttgcttctgacggcgcgggggccgcttgtcccattgacgccatcacgctgcgtacaatttcttcaatctgtttttgatccatgatatgttatctccgcgtcatcagaagaacagtgacggatcgcccgcccgtttggtcaggcgaccgtttgccataatgcccatgctttccagccagcgttcaaactccggtgacgggcgcaggttgagtaactgacgcacagtggcggtatcgtggaatgcggtggtctggtagttgagcatgatgtcatcacccagcggcatccccatgatgtagttgcagcctgcggtggcgagcaggatcatcaggttttcgttgaggttctggtcagcgtcagcgtggttggtataacagcagtcacagcccatagagatgccgctcagcttgcccataaagtgatcttctaagccagcacggataatctggcggtcgttgtagagatactccggcccaataaagccgaccacggtgttgacgataaacggatcgtaatgacgcgccagcccgtagttacgtgcttccatcgttacctggtctgcgccgaagttagcgccagcggatagcgcagagccttgtccggtttcgaagtagaggcagttttccccggcgatacggttgaactccgcgcccactgcgcgcgcttcgtcgagcatcgccagctccacgccaaactctttcagccctttttcgctgccacagatactctggaaaatcagcccgcccggtgcgccacgacggatcgcttcgatctgggtggtgacgtgcgccagtacacagccctgagttgggatgttgaatttgtcgatcacgccatagatggtatccaacacgcggcttaagttttccacgtcgtcagtcaccgggttaacgccgatcaccgcatcgcccaccccgaaggaaagcccttcgtagatttgcgcggcgatactttgcacgtcgtcacgggtgtcatttggctgcaaacgggcgctaaaggtgcccggaataccgatggtggtattggcctttttgattaccggcattttcttcgcgccgtagatcaggtccgcgttggagcaaatcttcgctaccgccgcgaccacttccgaggtcagccctttgcgggtaaaggcaatgtcgtccacgctggtttcatcgctcagcacatactcacgcagttcgctgatgctccagtttttaatctggttgtaggccgtttcgttaacatcgtcctgaatcagccgcgtcacgcagtcatcttcataggcaatcaccggattattgcggatgtccgctacggtcatttccgacaacacctgctttgccgccacgcgctcctgtgagcttgccgctgcgacgcccgccagcacatcccccgaacgcagttcgttggctttagccagcacctcttttacatccttaaactgatatacattgccgaacaatgtggtctttagtttcataagtcgttccctcaggaagaatcgatgattggcatttttcacagcattctaacaatcacgtttcatcgtcagcccttgtcgtgtaaggtggttgcctaaacacgcccgttattcatcacgccgaacgcgccggatacatgatcggggttatccagtcgttaaatcaaggtatccggttttgagcaagacaccactcacagcaaaggccatagacgccgcacagccgcaggacaagccctataaactcaccgattcactgacgccggggctgtttttgctggtgcatcccaacggttcgaaatactggcgattcaggtattggctgaataaacgagagtttttgcaggccattggagtttacccgctaatcacactcaaagaagcacgcaggcgcgccacggagagcagatcccttattgccaatggaattaacccagtggaacaagcccgcaaggaaaaagccattgatgcgctcaacatggcggcaggatttaagaaggtggcggaagactggtttgctaccagggttggagggtggtcggaatcctatgcaaaacaggtcagatcggcactagaaaaagacgtctatccggtacttggcaagcggtcgattgtcgatataaccgcccgtgacgtgctggcattactccagaagaaagaacgtaccgcaccggagcaggcccgcaagctacgccggcgcatcggtgagatcttcaagtttgccgttatcaccgaactggtaacgaggaatccggttgcagatcttgatacggcactgaaggcccgccgacctggtcacaacgcgtggataccgattagtgaaattccggccttctacaaagcccttgagagggccgggagcgtccagattcagacggcaatacgtttgcttatattaacggcattaaggaccgcagaactgcgtttgtgccgttgggaatggataaacctggaggacgcaacaatcacattgcccgctgaagtcatgaaggcccgccgcccgcatgtggtcccgctatcacggcaggcggtcgagctattgcaggaccagttcacacgcagcggatacagtgctttcgtctttccaggccgattcatggataaacccttgtcagccagcgcgatacttaaagcgcttgagcgtatcgggtacaagtcgatagccacaggccacggctggcgcacaacgttcagcaccgcacttaacgaatcaggcagatactcgccggattggattgagatccaactagcccacgtcccgaagggaataaggggcgtttataaccaggctgcctacctgaagcaacggcgagcaatgatgcaggattacgccgacgctattgattcaatattggcaggtaacggcaatcctctagaaccggaatgaataattaagcggcttttttgcaaagcgcaattttgcattttgtataagtatttgttttgtgtggtttaactatcacctgataagaaacctgtattcaatttgccggattcgtccggcttttctttttcgctaattattccattattccaattaagtggaataaattattcaatatcaagaacttaaatccatgtttgcaacgaaagatccagagttcgaaaataggatcaacacaaataaaagcccccggaatgctgcaacatgccgggggcggtatgagaaacaagctaaaggagaatttctcatgtctgatatgctagcagtagaacaagaaacaaacaatgatgttcgtcaatttttaaacaaaattaacgagttacggaataaagcacccaaaaacgaagagactaaacacgaagaacacacgccagataatcacgaggaaacagatcatcacgaggcaaaacagcaggagcaagcctggcgtggcaacctgcgctacctggacacattaaaccgacttgatgaagtattgccccgcaaactgtacgaaagatgggagaaagaacatacagtcaacgacgaggctgtgctacgtgctctttgttacttcgctggtactggcaaaaactcacagttgggatggtgcagggttggtaggggaacaatcgacaaacgagccaggctatcaaaaaacacggttaaaaaatgcctcgatcgtctggtcaaccacttcaaacttgttgagcgtactgaaggctatataccaggatcggcagaaagggagtgcaacgaataccagttattattcaagccgtacaacatgaaataacggaatcaggcgggcaatgttcccgccttttctttgccttaattccatgaattcaggtgggtcaaaagttgccgttagtggtgggtcaaaagttgccgttaaggtgggtcaaaagttgccgttaaggtgggtcaaaagttgccgagtaagaattctactattaagaattctaggcgacgggagttttttagcctcccggtcggtcatagagagtcgcctagagttaaacagaagaattatttcgccgcctgataggtcggctggttgcgagcattaaccatgctgattagcgcaatcatttccagcaagctggaaacgcccattcactcacgcacaacctgaacagcagaccaacaaaccatcatggcattcgttcatggggagcgcggtatatctcaaagggtgatttcttattggtgggccttcggaaggcttcgagcaattgccagcttaaaagacgggcttagcagtgatggttatccgccacgaatgtccgtcatattgcattgcgcagaaacgcgtggcactgagggagttttccgaattagttttggggaccctttccctgcttctggagcaaaagacgaacggcaaatgcagtgcttccttgtacgactgcagcgaagaagaaaagctgtttgttaagcgcctgaagttaatcaaagcggatatccacgcccagctgaaggcctgtgattgcgatatttctgaatgacaggtggaatcatgaaacacgtttttaaatatcttgattttgcagaagaccgcgaacacgcagaatcagtggcgaccaaagagttaaaactggaccacgtagaaaaattcgctatccgcgatctagccaatgatatcaaagagcgtgggtgtgttgagcttgtccagcctggtggattcgatgagctggttcagatctatgaggccggaggcgatggaatagagccactcaattgtggaatcgaatcaaggaaggtggcaattgctgccctgcttcgcgtcatgcgtgaaccagactttcaatgcctggaaatggttcacgaaatcataagaattgctagagatttggaagcgccagttgacgctccgttagattgctaacgccaaaattagcgctgaattaatgggtaattattgcggtttttgtcaattttcaacctcaattcttgcgaaaaatggcaaaaataacggtatttttcatcatttattgggggttttatggaaggcgaactgatagaaaacaatgggttagacatttatgacaccagcgaaacaccgaaaaagcgcggtcggccagctaaatataatgaaaaaatagcaacgcaaatcgtcctattggtaagcgaaggttatagtttgcgcaagatcagcatgatgccagggatgccgagccaccgtcagatgatgcgctggcaactggagcatatggacttcagggaagggatagcctggatgtcgtggctatggtgcgctgaagctggccgacgtgccgtcgagataatcgacgaggttgatataaacgcagaggatgggccgaagcagttgcgcaaagcagaagcaaaggcaaaggcactactggcagcagccaagctgaatagtttgaaacattcaccatttggagatgacaaacaatgagcctgatccgcactgaaaccagagacacaaaacgcgcagctgacccactgcacgacctgcgtagcaagccgttttctgagtggggcgaagatgaaatcaggcgttttaatctgatagacgcgcttcttgagtttgtctacacagacacatccagcccgttcggtatcggcatgaccttcgattacacggagtgctgggaaattggtgttcgtgacgactgcctggtaatgacacgcgttaagccggtgcatccagaatatgcgaagcactggaacatgaaaggcgtcatgaatgacaaaacccgcttccacgccgacaagtgggtagggtacagcaaggtgcttgcctgggtgagcttatcgcacaaagacaccttcacgggtgcgaaacggtttcaatacttccaaacgatgtacgacatggaacggcaaatcaacgcaaacctgccggttggcggccttcccaacgttgacacagagcgaactggcaaactgttccaacgcgatgacttttctgaggatagccatgccaacgatccgaagttggttggtgatgattacgtcccccaggcaccggagcaaatcaactgaattttcggacaaacgcgcgcgtagccgacgtcagcggcaagactggcggtcatttccccgctcctacgcgaaaaatccctcacaactaccctgcaaattttccagatttcacgtacacgcgccaaaaataaaggcccaggcagttagcaacctacccgggcctttctcacaatccccgctgacattatatcacccatctttccgttttcaggtgggagactgatggccgccgacgttgcacaattgattaatttctgaacattcaaatcaactcccaccaaagccaacaagatgggaggtgaattttgtgatgcagatcgctttttcccttcaggcatttttgtttaattcaatcaacgaaaggcagttcccaacaacaaaataaagatgggaggtaaaaatgaaacggtgggaagtggctttactggtgatggtaatgttggtttgctgtattgaactgtgaaggaggacgccatgaaacttttaatcgcaatcatcctgatggtgctgactggtgtttgctttgcagatgttggtgattacaggctgaacggggaggataacgcaagaattgaatcagtcgttactgataactgtgaaaaaacagccgtattggtaggcggtgacaggcttgcgagggttgagatcgaatatatagcgacattgtgcaagccggtggctttggtgattatttacgacagatttgacgatatagcggcaatccctcttaaggtgacgttgaaaaaggtattgaaagagaatagcgatgaaaagattaacctattgaacaagatgggggatctggctggtcgtatcgttgcagagcagtatttaggcatgagttttgagtaaggaggcaatcatgaaagtgttaggtaatattttatggtgggcttttgttggtttcatggcttacgccactttgattaagccggacaacactgatccagctgttgtgaactatgaagagcctttgcctatggagcttgccaactatggcgaaccaggtgaaggggcgaaaatcatgaatgccgcaaaaataatgggtcgcgactacgcatggaaacatgtaaaagaagacaggttgccatgtctgtttgccgccggggttgttgctgataacatcctggtaaaataccatttcagcaatgaaactgagttcaaacttaaagcggcagcggtcagagaatgcgccaacgtagcagaaaacaacggctttgttttggtaggtagagtatttgaaaaacgtaattgattgcgaatagcaacaactaaacaaccaatacacccggcccctcgccgggttttttgtgatctgcgtcaatattcccttccgttacgcttaccctccaccaatacgcgtgttaacctcccaatggattctatgagatgggagataaaaatcatgagttacgaaatcaaaatttgcgacatcctcaaaggcgctgcgatggaaggacaatataagggcgctcaacgtggggccaaatgcgaggagatcgcaaacgagttaactcgccggggagttaaaaacaacaagggagaggttattactaagggcggcgttagccattggctggaaggtagacgggagccaaatttcgacactctggctgaactgtgcgacatgttcggcgtttatgccctgatgccgatgcgtggcggtaaatggattcgagttcacccggaagaccgtggagaaatggaattacgcgaggctgtagctgaacgagatgctattatcgacgacctgaaggcccgtatcgctgagcttgaggcggcactagcaaataaacaagtcccagcagaagcggaagagatgggaggtgaaaaagtggaagaagtggcagcagagcaagcgcccaacgatgaaaaagagatgggagctaaggagtgggttaacccgaacccgaaaaaatacagcgtcggcatgttgtgtcaggtactggctgcaatgggcggcgaatacctgggcaacaacgcagggttacagcagaagatcactgtgttggataacgacggcaaccggaagccaatcagtaacggcgcgttttatcgactgattgagcaggccaaagggagaggattgattagcgttgaacaggaaatcaaacacaagaaagacgaaaacggcaaccagatcggcaaaggcaagaaaggtgacaagctgataactttgcttcccaactggattgataagctgggagacgaataaaccagccttcaaccccatctcatcaatcaacgcccggccccgctgccgggtttttgctatgcaccacaattaccccaaccggatacacagccggatacaattccaccagcacccagccacccagcgccaccgctggcgaataccgcattcaggaaggaaatgcgagtgatttcaccgtcaccggcacaaccgatccgccaaaaagaggcgtaccaatgtcgatatagtcccccgcgcggacaatcacttcgtcaatgactgccaacgggagttgttgtagctgtgggcgcaacaacatgcccagagctttaccaaagtcctgcccggccaccaccagcaggggatgcggattcggaaaacgcgcgacgaaatcgaccaacgcgttgatgaccgtcagtaccgcggcgtaacgcacaggcagcgaggcgggaagcgccagcacgtacgcgtcagttttgggatcaagatccagctgaatcagcgcctgttgccaggcccccaccagatccgtttcatcaatcgggatcgccaccggcaaattgcgcagcggcagttgtacgccctcaagccagattgtgctgccagagagcgaaagggtatgcgcgcccgcgccaatcaccgtggcgcgcacggtttgcgccggaaactgtacgttcatctcacgcaggcgcggatggtcatgcagcgcagttgccagcagcgggccaatatcggcaaaacagaacgggtcggcgggctggtggcgataacattcgcccacgccgccagaaagcgtaatgatttcgggcgtaacacctgcgggcagcaaaccggtttgcatcaatgcctgcgcgagcggtgagagcgttccgtcaatcacttcgacaatcagttctgccatccgccgggtcacctgcaccagctgcgcgccggtcagcgaacgggcgtcggtgcctgcaccgaagcactcatccacaatcatctgccccggtttatgagcgtaaaccacgcgcccgtggctgtcggtttccagcaggcgaccaccgacgttgaggcaggcagtgccgctgatttttccggcatcgaacagggcgtagttcgcggtgccaccgccgatgtcgatattcagtacccgacacagccgttgttcagaaagggtttgtgccccggctccgtgaccggcgatcacggattcgaggtgcggcccggcgctggcaacgacaaaatcgcccagcgactgagagagcgccatcaccgccgggcgagcattgcgggttttcgcgctttcaccggtgatgatgatggcaccagaatcaacgctttccggctcaatacccgcagcatgatattgctcgagtattaaggttttcagttccgcttcttttaaaccgccctgtttatcgacaggggtaaagaacaccggactttgccagctaatttcgcgtttaatgaattcgtagcgcggcacctgcgacaccgccgcacggttaaccagctccagccgggagaaaatcacctgggtggtggtggtgccgatatcgataccgacgctcaatagctggcgagtgttcacgattgtgcctccgcttcggttttagtcgcggtcgcgtcttcttttggcaccagcatcatcgccacgccaatcgccgttacgccgccgatcaacttgccgacaatcatcgggaagatcatggcgttcatgttggcagcggcgaagcctaagtggtcgcccagggcgaaagcagcggaaacggcgaaggcgcagttgatgactttgccgcgggtatccatctgcttcatcatgccgaacatcgggatgttgttggcaagcgttgccaccatgccggctgccgcgatgttgttcatattcagtactttaccgacgctcatcagcggtttttcaaaccagcgagtcagcagcagcaccatcggatacgcccctaacagaacgcaggagatagaaccgataacttcaatggcgcgcatcacctcaccgggtttatcgccaggggccataaagataggatccagaccggggatcagttcccagccaagcaggaatttcactaccgcagcggcaagaccgagggtgatcaatgcaacgaggaatttggcgaagatctggaagccgttgatcattttttccgggatgaatttcagccccagcgccaccagaatcgcaacaatgatcaccgggatcatgttcatcaggatcagggcgaaagtgaattccaccggctggccgttgatctgcacaccggagtacatagcaaccagaccaccagcgatacaaccaatcggaatggtcacaatgcccgccagcacgccgagcgccagataacgacggtcagaaggttcgataatgccgagcgccaccggaatggaaaacacaatcgttggccccatcatcgacccgagaattaacccagagtatagccacgcggctacgtcgccgcccgccagctctttggcgaggaagaagccgcccatatcgcacgccagcagtgttccggcgaacatcgatgggttagcgccgagcatttcgtaaaccggaataattaccggcccgagaacgtgagccagtaccggtgccagcgcggtcataccgaccatcgccaggcccagtgcgcccattgccataaagccttcttcgaactgaccgcctgatccttcgatacttttaccgaacttaccgaggaaacgagcagaaccgccgaactgcgacaggatcctgtctacggcagctatcagcataaagaacatcatgatgtacatgatgatttcgttaattcccatcgcctttactccctgttagttgttatttattggcggatgcggcgtaaacgccttatccgccctacatgtgcaatcccgtaggctggataagacgcggcaagcgtcgcatccggcaattgcaccgcgccactggcggatgcggcgtgaacgccttatccgccctacatgtgcaatcccgtaggctggataagatgcggcaagcgtcgcatccggcatttattgcgccgctgcgtacaggccgacaatctgctccaggctggcggtacgcgggttactgcgcagacaaatatcttccagcgcggcctgcgcccatgcgccgtaatgcgcagatgtcgcaccaacatcgcccagtcgtttaccaatcccaacttccgcaatcagctcacttaccgcgttaatagcgtcacgatcgtcggattttttagttcgcagtgcccgaccaatctgactaaagcgttcacgacaaaccatccggttaaattccatcaccgttggcagcaacatggcgttcgcgagaccgtgcggaatatgcagcgccgcgcccggctgatgcgccatcgcgtggcacaacccaagacccgcactggaaaacgccattcccgccatacatgaagccagcaacatgctctcgcgcgcggcaaggtcgtgaccgtagcccaccgctttcggcagcgatttgccaatcatcgcaatggcaccaatcgccagactgtcggtaaacggtgtagcgttcagggcgctgtatgcttcaatggcatgggttaacgcatcaatgccggtcatcgccgtgacatgcgacggcacaccttcggtcaatgcggcgtcgaggatcgccacatccggcatcagcgaggcatgggctaacacctgcttgcgcccgctcaccgcgtcgataatcaccgttacattggtggtttcagagccggttccggcggtagttggaatggcaatcagcggcaagcgcggttgcagaacgctggtttctgacatctctgccagcgtgctatccgggttcgtcaccagcaacgtcacggctttcgccgcatccagcaccgagccgccgccaaacgcgatcaccccatcacagcctgactcacgcaactgcgccacggctgcacacacgtcggtaatgcacggttcgcccaccggacatggccagagcgtcatggcgatacctttaacggtcaggctacgcgtcagcccggcggtcatccctgcctgatgcaaaaagctgtctgccatcacgaacagatgtttcagcccacgcgtttgcgcttgctgtccgcaactgctcaccgagcccggaccgcaaagcgtcaccggtggaacgctaaatgtttttacccgttgcagattcagggtatcgaacgcctgaaagagcgcggtctgcaattcattttgcatatagcccctccgctttctctcgcccactactggcgatcgccagcggggtcataaacaaactgtgctgcggtaaatgcacctgtaacgccgggaattgtttgcgaaacagttccgccacgcccggttgcatacaagagccgcccgccagccataaatcagtaatgccctgcccttcaatatgccgggcgacaatgtccgccattttttcgtacaccggtttcaccgcaggccaaatctcttcaccgtgaccgcgcttgtactgctccgcctcttccagcgaaatacggcgatttccggcgagagtcagagagatgtgatgtccgccggtggcttcatccgccgagtacgtcaccttgccctttttcacgatggcaatgccggtagtgccgccgccgatatccactacaccggcgttgtccagttgcagcagatccgcaactgcggttggctcatccagcacatggctcacttccagtccggcagattccagcacgttgatggaaatacgcgggtccgtacctggaggaaatgaagtcgccgcatggctaaaacgacgaccgaattgctgctcgagcgtgtcgagatggcgacgaacaatggtgacagcgccgaagaaatcccagacgatgccgtcgcgaaccacatcggcccagtcgaggcataccgccactggctgaccgtcgcggtcgacaaccatcgacaccacatcgcaggtgcccagatccacccccagccacagcggagattccgtcgcggcgggcgtctggttacacagcgttgccgccgtttgcagacgtggggtgagccattgttcgtcgtgcgccatctgttactccttaaacaatgcgaaacgcatcgactaatacacagcgacgcagacggacaaacgtacgcgcgctggttaccccttcaccggttggcgtggtgatggtcatggtggtccagccttccccgcccagccccagcccggcaatgcacggtccgttcttaacgaaaatgctggtatcaatagcattcgccatctggttcatgttttcgatgttgcgcgagtgcattgccgccgtgtggtggcaaccgccttccagtttcaccgctagcgcaatggcatccgccacgttggcgacgcgcacgacgggcaacaccggcatcatcagttcagtcacggcaaacggatgttctgcggtggtttccacaaacagcaggcgcgtttcttgcggaactttaaggccgattgccgccgcgattttgcctgcgtcgcgaccaacccagtcacggctgacggtgccttttccgcgctcgtcgatatttttcagcaacaccggttgcagctgctgcgcctgttctgcggtcagtttcaccgcgtgctggccttccatcagacgcatcagttcatcggctacgctatcaacaacaatcagtaccttttcgtcggcacaaatgatgttgttatcgaaagaagcgcctttgacgatggactgagcggcacgggcgaggtcggcggtttcatccaccactaccggcgggttgccagcgcctgcggcaatcagacgtttattggtgtgtttacgcgccgcttctactaccgcttcgccgccggttaccaccagcaggccgatacccggaaacttgaacaagcgttgcgcggtttcgatatccggatttgccacagtaaccagtaagttttccggcccacctgcggcaacaatcgcctggttgagcagcgtaatcgcccgctgggagacttttttcgccgccggatgcggggcaaaaatgacgctgttgcccgcggcaatcaggctgatggcgttgttaattacggttgccgccgggttagtggaaggcgtcaccgaagccaccacgccccagggtgcgttttcaattagggtcaggccgttgtcgccagtcagcacttgcggagagaggcactcaacgcctggtgtgccgcgcgcctgagcgacgttttttgcaaatttatcttcaacgcgccccatgccggtttcactgacggcaagttccgctaaatctctggcgtgtttttcgcctgcttcacgaatggcagcaatggctaactggcgcattgccacgctttttaacccttgctgggcgactttggctgccgcaacggcgtcatccagggacgcgaaaacgcccatctcatgaacggcggcggacggcgtgtcactgctttgcattttcagcagtaccgctttcaccacctgttcaatatcctgttgattcatgatgttctgccttatttgtggaaaattacctgaccgccagacaccacctcatcgacaatgccaatcacgcacagatcgaccggtgacgtttcgcttttatgcgcctggcgggcggaactgccactcaccagtaacacccactccccggttcccgcgccaatattgtcgatggcgacggcgcattgcccgtcaggattaccttgtggatcaatcatttccaccatcagcaatttgtcatgcgccagtccgtgatggcgtacggtacaaacaatttgtccagtgacgactgccagtttcatacccgcctccgtggcgtatttcaggtaaaagctccccctaccctccgcagaaggtaaaatgaaaaaggagagagcgtgacgcccgaatcgacgtcacacagggtgattacaggttgctgctatcgcctttcaggccgatcgggaagacttcttccaggtcgccgtgcggacgcgggataacgtgtacagataccagctcgccgatacgctgtgccgctgcggcacctgcatcggtcgcggctttacaggctgcaacatcaccacgaaccatggcagtacacaggccgccgccaatctgcttaacaccaaccagcttgacgcgcgcagctttcaccatcgcgtcagaagcctcaatcagtgcaaccaggccccgggtttcgatcattcctaatgcttccattgtgctttcctctttatcagggtccagaacgggaccgttcattcaaccagtgtttgtaaactgctttcgcggttcacttctgtctgacgcggcacagctgccaccagcgccagctcgataatttcctgcacgctacaaccacgagagagatcgtgcatcggcgcggcaagtccttgtatcagtggcccgacggcacgatatccgccgagtcgttgtgcgattttgtaaccaatatttccggcttccagcgacggaaaaaccatcacattggccttgccctgtagcgggctggcaggcgctttttgcgccgccacttccggcacgaaggcggcgtcaaactgtaactcgccatccaccaccagctttggtgcgcgctcacggacgatttctgtcgcctgctggacgttagcaacacaggggtgacgggcgctaccattgctggaaaacgacagcatcgccacgcgcggctcttctccggtgatggcgcgccaggtttcggcactggcaagcgcgatatccgccagctgcgccgccgtcggctgtggcaccacgctgcaatcggcaaagcccaacgccgggccgctgtactgtggcaacatcaggaaaatggaagagagcgttttacagcctggctgcaagccgataatgcgtaatccggcacgcagcacatttgccgtggaagagaggttgcccgcgatacagacatccgctttaccggcgctgaccattgctgcggcgaacatcagagggtcggtaagtttttccagcgcatccggcggcgttttttcgcccgcgcgggccagccagcgatgagcaaattcttcccgcattgcgaggttgccatgcggatcaatcacctgtagcccgtccatcgccacgccgtgactgagcgcaaactgacgaagttcaaacggattggcgaccagaatgggcgttgccagaccttgttgatgtaaatattgcgcggctttcagcacacgttggtctaacgcatccggaaaaaccactctggcgggcgctcgcaacgccagttcacgacaacgttcaataatcattgcgtttcccccagtcgttgttggatctgcttcaccgttagcggctgcttcgttacgctcaggatcatcatcacgtagaccgtgctcgaaaggcggttcagcgcctgcaaaatgtccgggcgtaatacttcaaagctgcgggtgataaagacctgcgccgctacggtttcggtttcccgcactttggtgcgtagcagattgagcaacgcagcatcgcgcccgtggctggcttccggcaccagatgatcgtggtcgagatagcgcagcggctgatgagaaagccgatgcagatcttcgtcagaaagcccgacaatcgcctggcagcccagcggttcccccagcgcatcggcgcgcataatgttgccaagacgcgaacggatatccgccagccacggctgccacggttccgccagttcaatttgcagccacactgccagcgcaatggtgctgtcgagaaccgcgcgaaaacccagacgcggatcgcttttggcgaccattttttccgccgacaggtgagtcagcgtatccggcttttttgccaccggctggcgacacagttcgcagcacgcctgcggatgttcatcgctactggtcagcccatgaacgggctgcggctgctgctgttcatcgtcaacaaacaggcggccctgctcgtcaataaacttgatgcgcagatggcggctttccagcaactcccgggcagagggcgtcaggcgactgtccgcagggagatggatctctgcgccttcgctgagcgtatggttcgctcttagccatgcttcggtgatgaaatctttcatagggattgccagttagccggccaggcgacatacaggaatttcacgctggatgtcgtaccaaattcgatgctggagcctttcgggataaacatcacgtcgcctgctttggcgatcatggtttggccttcgtggcgaacatgcagctccccttccagcaccatgtcgatttcgtcgtagttcagggtccacgggaagaatgcgttctcccactgcataaaaccggcggccatgctgctgccgtcgtctccggtcacaagatcagtcaagcccacgcaatgcggctctgcgccgtcgaaacgaccaaacttgacgctactgccatcaatcactttgatgccgcctttgccggtcaccgatttgaagctcggctgcattgcgccctgctccagcgactgtttttccttcatcactttttccatcagctgtgcgaccaggctttcggtaaactggccttccggcagctgggcaatgatggtttcgcggatgcgctggctttcggttttgtcggctggcacgctggcgggcacggacgccgttaccgggatcgattcatcacattcggtgatggtaaaacccagtagatccgccacttcacgggcttccggggtaataatgctggcgcgcagaaccacggacattgcctgttcgccgcgcgcgtgtgcttcacgaatatcattcgctgtgatgagttttttcacctgcttcctcctgtttggtgagagatgccagataatccaccagttgctgcacgctttgcgggtcgtggctgtttagctcgaacatcggctcttcgaaacccgtctcaagcaataactttcgcgttgcggcgacgtcagcatctggcatgtccgttttactgatgacggcgatttgccgtttgctgacgccaatatccagcaacccggcaggcaaccgactttccgggtcatttgcgccatggacatagatcagcatgtctacatcctgtagcgtggtaattaaggcgtgataccagcggggatggttaaaatattcacccggcgtatcaatatcgcccttatcattaaattccacggcctgtgtttttctggcgagggtataattcccctgcaacgcattaaataacgttgtttttcctgccccgacgctacccacaaacgcaattcgtttcatgaatgcctcgtattaacttttggtcatttcacaaagcgtataatttaataagcgacctaaaccgctgacggtttgtgataacgcttcttctactgcgcccaccgagccataaatcaccaatgcaccgctgaatcggtcgagaaaaccgatatgcacatcagcggctttcagcgctaaatcaccggcgatcatcgccgtttcgccgggagttagcgtcataatgccaattgcgcccgcatccggaacgccgattttcttcgccagttcctcaccgggatgcgcgatgagatgcgccagtgtgacctgtttgccgggcacaaattcctgaatgatgcgttctttatccatgagtcgccgcctgtgaaaaactttcgtgtatcgtgacaatttttcgtcagagtaaataacaaaattcggcaagcgcgtttaaaaggtgaggtagatcactaagaatggagagatattcgctgtggtgcataaactttcatatgcaacgcatgaatataaataaaataatatcgagatattatatagactgcttttttttattattcgcaaactcagtaataagctttactaatatattgcagctaaactgcttaccctgaatattcagggtaagcgtgagagttaaaaaaaattacagcggttgggtttgcgcttctaccacggccagcgccaccatgttgacgatacgacgcaccgatgcgatcggcgttaacacgtgaaccggtttcgccacacccatcagcaccgggccgacagtcacaccttccgagctggaaacacgcagtaagttgtaactaatgcgggcagcttccatgttcggcatcaccagaatattggcggaacctttcaaagagctgtccggcatacggtcgttgcgaatcgcttccaccagcgctgcatcgccgtgcatttcaccatcaatcatcagttctggtgcacgttccctgaccagttccagcgcctgacgcattttgctcgacgacgggcagtcagaagaaccaaagttggagtgcgacaacaaagcaacgcgcggctcaataccaaaacgacggacagtttctgccgccatcaaggtgatctccgccagctcttctgcatccggttcatcattaacatatgtatcggcaataaaggtgttaccactcggcagcagcagcgcgttcatggcacctgcggtgtgaacgccatcgcgataaccaaagacatttttcaccacgctaaaatgttcatgataatcacccaccgtaccgcaaatcattgcatcggcttccccacgctgaaccatgatcgcgccgatcactgtcgggttactgatcagcgcccgctgcgcctgttcctgagtgacgccgcgacgcttcatgatctggaagtattcggtccagtactctttaaagcgcggatcggattcgttattgacgatctcaaaatcaacgcccgctttgatctgcaagcccagtttctgaatgcgcatttcgatcacgttcggacgaccgataaggatcggtttcgccagtcccagcgttaccagttcctgagtggcatgcagaacgcgcgcctcttccccttccggcagaacaacgcgcttcggcgctttgcgagcctgggagaaaatcggcttcataaacaggttggttttgtaaacgaactcagtcagcttgtcgatgtagacgtcgaaatcagcaatcggacgagtcgccacgcccgactccatcgcggctttagcgaccgcaggagcgatcttaacgatcaagcgcggatcaaacggttttggaatgatgtattccggaccaaagctcagatcctgatcgccatacgctgaagccaccacttcgctctgttccgcatgggcgagttctgcaatcgcacgtaccgccgccagtttcatctcttcgttgatggcggttgcgccaacgtccagcgcgccacggaagatgaacgggaagcacaggacgttgttcacctggttcggatagtcagaacgaccggtgcaaatgatggcatccggacgcacttctttcgccagcggcggcagaatttccggttccgggttcgccagcgccaggatcattggcgcacgagccattttcttcaccatttcctgggtcagcactttcgggccggaacagcccaggaaaatatccgcgccttcaatcacatcatcgagggtacgtttgccgtcatccaccaccgcatatgcggctttggtttccgccatgtttggctcacggccctgatagataacgccttttgaatcgcaaaccacgatgttatgtttttgcagacccagcgctaccagcaggttcatacaggcgattgctgcggcacccgcgccggaaaccaccatccgcacgtcggagatgtttttctccaccacgcgcaagccgttgaggatggcggcagtgctgataattgccgtgccgtgctgatcgtcgtggaataccggaatattcatccgctcgcgcagtttctgttcaatatagaaacattctggcgctttaatgtcttcgaggttgatgccgccgaaggttggttcgagcgcggcgacaacttcaataaatttgtccgggtcgagttcgtcaacttcaatgtcaaatacatcaatcccggcgaatttcttaaacagaacgcccttgccttccatcaccggtttgcctgccagcgcgccaatgttgcctaaccccagcaccgccgtaccgttagagatcaccgccaccaggttacctcgggcggtatatttgtaggcttttaacgggtctttttcgatttcaagacaaggtgcggcaacgcctggtgagtaggccagcgccagatcgcgctgtgttgccagaggcttggttggagaaacctggattttccctggaactggaaattcatggaaatcaagtgcactttgttttaactggtcatccatttggttgttcctttcacgtaacgttcacaaataaagtgtgtgggcaacagcccctgcccacaacgtggcgcacattattaccctgccggagtctacagactttgagcaagtccaaactctcaccattaatataatgttttggtaataatcctataacactgatgttacctgcttaatccagcaataccatgcctgtctgctatgcttttttgatgcgtttagcgaaatttctcagaagtgtgaattaacgcactcatctaacactttacttttcaaggagtatttcctatgaacgagttagacggcatcaaacagttcaccactgtcgtggcagacagcggcgatattgagtccattcgccattatcatccccaggatgccaccaccaatccttcgctgttactcaaagctgccggattatcacaatatgagcatttaatagacgatgctatcgcctggggtaaaaaaaatggcaagacccaggaacaacaggtggtcgcagcgtgtgacaaactggcggtcaatttcggtgctgaaatcctcaaaatcgtacccggtcgcgtgtcaacagaagttgatgcacgcctctcttttgataaagaaaagagtattgagaaggcgcgccatctggtggacttgtatcagcaacaaggcgttgagaaatcacgcattctgatcaagctggcttcgacctgggaaggaattcgcgcggcagaagagctggaaaaagaaggtattaactgcaacctgacgctgctgttttcttttgcacaggcacgggcctgtgcggaagcaggcgtttttctgatttcgccgtttgtcgggcgtatttatgactggtatcaggcacgcaagccgatggacccgtatgtggtggaagaagatccgggcgttaaatcggtgcgcaatatctacgactactataagcaacaccactatgaaaccattgtgatgggcgcgagcttccgtcgcaccgaacaaatcctcgccttaaccggctgcgatcgactgactatcgcaccgaatttactgaaggagctgcaggaaaaagtttcgccagtggtacgtaaattaatcccaccttctcagacgttcccacgcccagctcccatgagcgaagcggagttccgttgggagcacaatcaggatgcgatggcggtagaaaaactgtctgaaggcattcgtctgttcgccgttgatcaacgcaaactggaagatcttcttgccgccaaactataaaccagccacggagtgttatatgtcccgaaaagaccttgccaatgcgattcgcgcactcagtatggatgcggtacaaaaagccaactctggtcatcccggcgcgccgatgggcatggctgatattgccgaagtgctgtggaacgattttcttaaacataaccctaccgacccaacctggtatgatcgcgaccgctttattctttccaacggtcacgcgtcgatgctgctctacagtttgctacatctgaccggttacgacctgccgctggaagaactgaagaacttccgtcagttgcattcgaaaaccccaggccacccggagattggctatacgccaggcgttgaaaccaccaccggcccgcttggacaaggtttggcgaacgccgtcgggctggcgatagcagagcgtacactggcggcgcagtttaaccagccagaccatgagatcgtcgatcacttcacctatgtgtttatgggcgacggctgcctgatggaaggtatttcccacgaagtctgttcgctggcaggcacgctgggactgggcaagctgattggtttttacgatcacaacggtatttccatcgacggtgaaacagaaggctggtttaccgacgatacggcaaaacgttttgaagcctatcactggcatgtgatccatgaaatcgacggtcacgatccgcaggcggtgaaggaagcgatccttgaagcgcaaagcgtgaaagataagccgtcgctgattatctgccgtacggtgattggctttggttcgccgaataaagcaggtaaggaagaggcgcacggcgcaccactgggggaagaagaagtggcgctggcacggcaaaaactgggctggcaccatccgccatttgagatccctaaagagatttatcacgcctgggatgcccgtgaaaaaggcgaaaaagcgcagcagagctggaatgagaagtttgccgcctataaaaaggctcatccgcaactggcagaagagtttacccgacggatgagcggtggtttaccgaaggactgggagaaaacgactcagaaatatatcaatgagttacaggcaaatccggcgaaaatcgctacccgtaaggcttcgcaaaatacgcttaacgcttacgggccgatgctgcctgagttgctcggcggttcggcggatctggctcccagcaacctgaccatctggaaaggttctgtttcgctgaaggaagatccagcgggcaactacattcactacggggtgcgtgaatttggcatgaccgctatcgccaacggcatcgcgcaccacggcggctttgtgccgtataccgcgacgttcctgatgtttgttgaatacgcccgtaacgccgcgcggatggcggcactgatgaaagcgcggcagattatggtttatacccacgactcaattggcctgggcgaagatggtccgacgcaccaggctgttgagcaactggccagcctgcgcttaacgccaaatttcagcacctggcgaccgtgcgatcaggtggaagcggcggtgggctggaagctggcggttgagcgccacaacggaccgacggcactgatcctctcaaggcagaatctggcccaggtggaacgtacgccggatcaggttaaagagattgctcgtggcggttatgtgctgaaagacagcggcggtaagccagatattattctgattgccaccggttcagagatggaaattaccctgcaagcggcagagaaattagcaggagaaggtcgcaatgtacgcgtagtttccctgccctcgaccgatattttcgacgcccaggatgaggaatatcgggagtcggtgttgccttctaacgttgcggctcgcgtggcggtggaagcaggtattgccgattactggtacaagtatgttggtctgaaaggggcaattgtcgggatgacgggttacggggaatctgctccggcggataagctgttcccgttctttggctttaccgccgagaatattgtggcaaaagcgcataaggtgctgggagtgaaaggtgcctgatggtgattgccggatgctgattgccggatgcgacgctgacgcgtcttatccggcctacagcgtcttatccggcctacatgtcccgccattttgtttaacgggtgatccacaacgtgggccaggcgtctggcccatgccagttatcgcaggtgggttctgcggcgtaacgcaccaggcgaaaacgctgaccgtcaaagcgccagcgcgcctgaatgccacaatcgcttaatccgcgccctttcgctaaggtcaccagttcacgcgatttctcatcaaatgttgcgttcatcagttccagttcattcgtctcctgaccgttgttgaacggcaaacgcaaccgaaccgggcgcgaagctagtggctttttacgcgacacaatccatgccaaatcaatggtgttataggcccctgcctcacagctaatcatcatcagcgctttatcatcagtcagcgcagtgacattcacctcacgacgcaatggatcaagcgagcagcgcagaccattcatccgccagtttccataatccagcaaatcgttgcgttcttcgagtgagagtggcgtcggcgttgggttaaccaccgcgacctctttcagcgcaggcgcgggcggtacgctgagcggcggttcgtcccctttcttgatccacgcggtttcactgccaacgcgcttttgctgagcatcaataaacaacaacgctgcttttaagccactcagagaaatggtctgatcgccatcgcgtaaggtgattgccttcccttcctgaatcatctgcaaaaacgcggtgatggttgccgtatcatcggttactaataaccatggtgaaatccgccacttgtcaccacttaacgccaacggctcgccatctaacagcagccgtggcgctatctccccttctgacgcctccggcgacttcaatccgccgcgctcaatacgtaaaacggcatcggtatgcgccccggcgctgcggctcagggtcatcaccagtccattatgatcgcccgtattacgcgccacgcagaaattttggttattacaggtgacctgccagtcggaaaacgcccgttgcgctggtgccgcccacaccaaagacgtcggcaacaaagcgaaaaaaaagagaaggaaaatgcgatagcgcatggacggtacgaccccagaagttcaaacaaacagcacaagtcgtatcttcgttgcgcaggtagcgcggctcaatcggatttgtcggattgagccaataataaacaacgaaatattattgttatttttcagtccattaaatgtgacgtttgcaaatagttaagcaataacaccgtcttaccgtcacgtatctcgccggttttgatcatctccagcgcctggctgaacggcagctcgagcacttcaatatcttcatcttcgacaccgccaccggcgttagcgcgctgattgtcactgtattcggcgataaaaaagtggattagctcagtcacaccgcctggcgacatatacagttcaaataatttgcgcacttcacccacttcatagcccgtctcttcaatcgcttctttgcgaatacacacttccggttcgtcgttatccagcagcccggcgcagctttcaatcagctgcccgctttcattgccattaacccaggtagcgacacggaactgacgaatcagaaccacggtctttttcttcgtgttgtacaggaggatcgtcgcaccattgccgcgatcgtacacttcacgtttatggcggataacttcgccgtctttgcgcgtgagatcgtaagtaatgttgtgcagggtgaaatagttatcggagagaattttgtctttaatgagggtgatttgttgcgtcataccgactccacagcgcgaaatgaacaattatcttacgctgtgaagtcgggtttgtctgcgcaggctatcagtgagatttgactgattttacccccagccagtcaataatcccctgtgccgcatgacgtccttctgccattgcggtaaccaccagatccgcaccacgcacggcgtcaccaccagcgaagattttcggattggtggtctggtaacggtactggctttccacatccgcgatgatgcggccccatttgtctaccgttacaccgtgcgactccagccacggcatcccgtgcggattgaagccaaacgccataatcaccgcgtcggctggcatgacaaattcactgccttccaccggcactggacgccgacgcccctgggcatccggctctccaagacgcgtgcgcaggaaacgaatcccgcagacgtgaccttgttcattcagctcaagcgccaccggctggacgttaaattcgaagttggccccctcttcgcgggcgttcttcacttctttcttcgagcctggcatgttagcttcatcacgacgataagcgcaggtgacgttactcgcgccgtggcgcagtgcggtacgcacacagtccatcgcggtgtcgccgccgcccagtaccacgacgttaagtccggcggtattgataaacggctcttccggtagctcttcgagccccatcacctgtttagtgttggcaatgaggaacggcagcgcgtcataaacgcccggcgcatcttcattgggtaaacccgctttcatggaacggtaagtgcctacgccaacgaagaccgcgtcgtattgttccaaaagcgaatccaaagagacatctttacccacttcacaattgagttcgaagtgaatccccatcgcgctgaagatttcccgacggcgtgccagcagggatttatccagtttgaaagaaggaatgccgaaagtgagcaagccaccgatttctggatggcgatcgtacaccgtcacccccacgccattgcgggtcagaacatccgcacaggccagccctgccggacctgcaccgataatcgccacccgcttgtccactttggtgacatggcttaagtcaggacgccaacctttcgccaacgcctgatctgaaatgtagcgttcaatgttgccgatagttaccgcgccgtgctcatcgcgaatagtacaggcaccttcacacaaacggtcttgcggacaaacgcgtccggtaatttccggcagggtgttggtctggtgagaaagctcgacggcggcgtcgatgtttccggctttcaccagttcaatccactgcggtatatggttatgcagcgggcaggtccattcacaaacgctgtgctcgccgcacttaaggcagcgcgaggcttcccgttgtgcctggtcggcgcgaaatggcagataaatttcatcaaaaccggttttgcgcgcttcaatcgccagtttatccggctcgccacgcgcgggcgttgcctgcatttgttcgactttactcattaccggcatttcttgcgccgcggtactggcatgccacggttgatgttcctgacgcgcggtgcgcaagcggcgggatttcgccatgccggagagtgcgacgtcagtgaccagttgcagcgcgtccgccgggcaattctcaacacaggcaggaccgttttcgcgccccgcacaaaggtcgcatttatgcgccgtggcttttacttttcctgccgcgacgggtgtcaggacgatttgcatcgtaccaaaaggacaggccaccacgcaggatttacagccaatacacttttgctgattgacctgaatgctgtcatcaacgtggctgattgcgccattagggcagctacgggcgcagggcgcatcttcacaatggtgacaggtcactgcactacgttgctgttgatgtttgataaccgtaattcggggatgaaaatggtgttggctcaggacatgttgctcatcattgtgagccatgacacaggcgatttcacaagcatgacaacccagacattgctgactgttggccataataaaacgattcataacgaccttcttttttggttgtaaaaaccttattctttatatgagtgttgttattacccgacttacaggggaatcggcaatgttcatgtgcccagaataagtaactatttcgctataaactgtggcagatcaaataatcccatcactgactaaattgcgtttcagcgaactggaacattaatgattttttgtggagaagacgcgtgtgattgttaaacgacccgtctcggccagtctggcccgggcctttttttacattgtgctgctgtcgattctttccacgggtatcgctctgctaactctggcgagcagtttgcgcgacgctgaggctatcaatattgccggatcgctgcgtatgcagagttaccgcctgggctacgacttgcaaagtggcagtccacaactcaatgcacatcgccagttatttcagcaggcactgcattcaccggtattaaccaacctcaacgtctggtatgtgccagaagcagtaaaaactcgctatgcgcatctgaatgccaactggctggagatgaataatcggctcagcaagggcgatttgccgtggtatcaggccaatattaataattatgttaatcagatagacctgttcgtactggctttacagcactacgctgaacgcaaaatgctgctggtggtggcgatttccctggctggcggcatcggtattttcacgctggtcttttttactttgcgccgcatacgccatcaggtggttgccccgctgaatcagctggttaccgccagtcagcgtattgaacacgggcagttcgactcgccgccgctggataccaacctgccgaatgagcttggtctgcttgcaaaaacctttaaccagatgtcgagcgagctgcataaattgtaccgttcgctggaagcgtcagtagaagaaaagacccgcgatctccacgaggccaagcgtcgtctggaggtgttgtatcagtgttcgcaggcgctgaacactagccagattgatgtgcattgtttccgccatattttgcagattgttcgcgacaatgaagcggctgaatatctggagttaaatgtcggtgaaaactggcggattagcgaagggcaaccaaacccggaattgccgatgcagattttaccggtgacaatgcaagagacggtttacggcgaactgcactggcaaaatagtcacgtttcatcatcagaaccgctgcttaacagcgtttcgtcgatgctgggacgcggtttgtactttaatcaggcgcagaagcattttcagcaattattgttgatggaagaacgtgcgaccatcgcccgcgaattgcacgactcgctggctcaggtactttcttacttacgtatccagttgacgttactgaagcgttcgataccggaagataacgccaccgcacaaagtatcatggccgatttttcccaggcgttgaatgatgcttatcggcagttacgcgagctgttgactactttccgcctgacgctgcagcaggcggatctcccctccgcattgagggaaatgctggatacgttacaaaatcaaaccagcgccaaactgaccctcgactgccgtctgccaaccctggcactggatgcgcaaatgcaggtgcatttgttgcaaattattcgcgaagcggtgctgaatgcgatgaagcacgccaacgccagcgaaatcgccgtcagttgcgtcaccgcgccggacggcaatcacacggtttatatccgtgataacgggattggtatcggtgaaccgaaagaacccgaaggtcattatggtctgaatatcatgcgcgaacgcgcggaacggctaggtgggacgctgactttttcacaaccttccggcggcggcacgttagtgagtattagctttcgctctgcggagggtgaggaaagtcagttaatgtaatgcctcctactgaccaaagaatacttgcacttaaggttcagtataaaagggcatgataatttacattaactcctttttttctccacgattggctcgtaccttgccgctacagtgaagcaagtcaagcctacaacgatacgcagaaacacgaggtcctcttttaatggcgaatttctttattgatcgccccatttttgcctgggtgctggcaatcctgttgtgtctgacaggtaccctggcgattttttcattgcccgttgaacaataccccgatctcgcgccaccgaatgtgcgagtgaccgctaactatcccggcgcatcggcccagacgctggaaaacaccgtgacccaggttatcgagcaaaatatgaccggcctcgataatctcatgtatatgtcatctcagagcagtggcaccggtcaggcatctgtcactttaagttttaaagcaggcaccgatccggacgaagccgtgcagcaagtacaaaaccagctgcaatcagccatgcgaaagttaccgcaggcggtgcaaaatcagggcgtgacggtgcgtaaaaccggcgataccaacattctgaccattgccttcgtctctaccgatggttcgatggataaacaggatattgctgattatgttgccagtaatattcaggacccgttaagccgcgtgaatggcgtcggggatatcgatgcctatggttcgcaatattccatgcgtatctggctggacccggcgaaactcaacagtttccagatgacggctaaagatgtcactgatgccattgagtcacagaacgcgcagattgcggttgggcaacttggtggtacaccttccgtcgataagcaggcgctcaacgccaccattaacgcccagtcactgctgcaaacaccagaacagttccgcgatatcaccttgcgggtcaatcaggacggctcagaggtaaggctgggcgatgtcgccaccgtcgaaatgggggcggagaaatacgattatcttagccgcttcaatggtaagccagcctccgggctgggggtaaaactggcctccggcgctaacgaaatggcgacagcggagctggtgctcaatcgtctcgacgagctggcgcagtatttcccgcatggactggaatacaaggtggcgtatgaaaccacctcgtttgttaaagcctccattgaagacgtggtgaaaacgctgctggaagctatcgctctggttttcctcgttatgtatctgttcctgcaaaacttccgcgccacgctgatacccactatcgccgtgccggtggtgttgatgggaaccttctccgtactttacgccttcggttacagcgtcaacaccttaaccatgttcgcgatggtgctggcgatcggtctgctggtggatgacgccatcgtggtggtggaaaacgtcgaacgtattatgagtgaggaaggactcactcctcgcgaagccacacgtaaatcgatggggcagatccagggggcactggtcgggattgcgatggttctttcggcggtatttgtaccaatggccttcttcggcggcaccaccggtgccatctatcgccagttctctattaccattgttgcggcgatggtgctgtcagtactggtagcgatgatcctcactccggctctgtgtgccacactacttaagccactgaaaaaaggtgagcatcatgggcaaaaaggcttttttgcctggtttaaccagatgtttaaccgcaacgccgaacgctacgaaaaaggggtggcgaaaattctccaccgtagcctgcgctggattgtgatttatgtcctgctgcttggcggcatggtgttcctgttcctgcgtttgccgacgtcgttcttaccgctggaagaccgtggcatgtttactacctcggtacagttgcccagcggttcaacgcaacaacagaccctgaaagtcgttgagcaaatcgagaaatactacttcacccatgaaaaagacaacatcatgtcggtgtttgccaccgttggttctggccctgggggtaacgggcaaaacgtggcgcgaatgtttatccgcctgaaagactggagcgaacgcgacagtaagaccggcacctcgtttgccattatcgagcgtgcaacgaaggcgtttaaccaaattaaagaagctcgcgttatcgccagcagcccgccagcaattagcggtcttggtagttctgcaggttttgatatggagttgcaggaccacgctggagcgggtcacgatgcgctgatggcagcacgtaatcagttgctggcgctggcggcggaaaacccggagctaacccgtgtgcgccataacggcctcgacgacagtccgcagttgcagattgatatcgaccagcgtaaagctcaggcgctgggcgttgctatcgacgatattaacgacacactgcaaaccgcctggggttcgagctatgtgaatgactttatggatcgcggtcgcgtgaagaaagtctatgtgcaggcagctgcgccgtatcgcatgctgccagatgacatcaatctctggtatgtccgaaataaagatggcggcatggtgcccttctctgctttcgcgacctcacgctgggaaacaggctcgccgcgtctggaacgctataacggttattctgcggttgagattgttggggaagccgcaccgggggtcagtaccggtacggcgatggatattatggaatcgttagtgaagcagctgccaaacggctttggtctggagtggacggcgatgtcgtatcaggagcggctttccggcgcgcaggctccggcgctgtacgccatttccttgctggtggtattcctgtgtctggctgcgttgtatgaaagctggtcggtgccgttctcggtaatgctggtcgtgccgctgggggtaatcggcgcgctgctggcaacctggatgcgcgggctggaaaacgacgtttacttccaggtgggcctgttaacggtcattggtttatcggcgaaaaacgccatcctgatcgtcgagtttgctaacgagatgaaccaaaaaggccacgacctgtttgaagcgacgctccacgcctgccgtcagcgtttacgcccgattctgatgacctcgctggcatttatcttcggcgtattgccaatggcaaccagcacgggtgccggttccggtggtcagcatgcggtgggtactggcgtaatgggcgggatgatttcggccactattctggctatttacttcgtgccgctgttctttgtgctggtgcgccgccgcttcccgctgaagccgcgcccggaataagcaataaaaaaggcgacatgccaatgtgtcgcctttttcaactttccgattaagaacctgctcagcgggttcttgctgtttgtactttgtctcaggaattacttacgaagcataacttcgataaagtctttccagttccccagttcacgttcaatcataacaacctctcttataattatgggtattctacggaaacaatataccgtggtgaagctaatttactcgattgctgcgatgactacctccgggggacaaatcttatgtaaatactatggtcctgcggtgatgatttgtatgtgatacacagcaacatttcgagatattcatacggcatctaatactgatttaattctggttaaaatacagacagataacaagatgaatattcttaatgtttacgttaaaaatgtttaatattatttaatagttgttaatttgaatacttcgataatgttatatttcctgataatcatttgcaggcaaaatgttttcacccttaaatgagtatttattctcataaatcgaaaaaggattcattatggttacactttacggtatcaaaaattgtgacaccattaaaaaggctcgccgttggctggaagccaataacatcgactatcgttttcatgattaccgcgtcgatgggctggacagcgaattattgaacgattttatcaacgaattaggctgggaagcgttactcaacacccgtggtacaacctggcgtaaactggacgaaaccacccgcaataaaatcaccgatgcggcctctgcggcggcattaatgactgaaatgcctgcaattatcaaacgtccattgctctgcgtgcccggtaagcctatgctgctgggtttcagtgattccagttatcagcaatttttccatgaggtgtagtctatgtcgtgcccggttattgagctgacacaacagcttattcgccgcccttccctgagtcctgatgatgcaggatgccaggctttgttgattgaacgtttgcaggcgatcggttttaccgttgaacgcatggactttgccgatacgcagaatttttgggcatggcgtgggcagggtgaaacgttagcctttgccgggcataccgacgtggtgccgcctggcgacgccgatcgttggatcaatcccccgtttgaacccaccattcgtgacggcatgttattcgggcgcggtgcggcagatatgaaaggctcgctggcggcgatggtggtggcggcagaacgttttgtcgcacaacatcccaaccatacggggcgactggcatttctgatcacctctgatgaagaagccagtgcccacaacggtacggtaaaagtcgtcgaagcgttaatggcacgtaatgagcgtctcgattactgcctggttggcgaaccgtcgagtatcgaagtggtaggtgatgtggtgaaaaatggtcgtcgcggatcattaacctgcaaccttaccattcatggcgttcaggggcatgttgcctacccacatctggctgacaatccggtacatcgcgcagcacctttccttaatgaattagtggctattgagtgggatcagggcaatgaattcttcccggcgaccagtatgcagattgccaatattcaggcgggaacgggcagtaacaacgttattccgggtgaactgtttgtgcagtttaacttccgcttcagcaccgaactgactgatgagatgatcaaagcgcaggtgcttgccctgcttgaaaaacatcaactgcgctatacggtggattggtggctttccgggcagccatttttgaccgcgcgcggtaaactggtggatgcggtcgttaacgcggttgagcactataatgaaattaaaccgcagctactgaccacaggcggaacgtccgacgggcgctttattgcccgcatgggggcgcaggtggtggaactcgggccggtcaatgccactattcataaaattaatgaatgtgtgaacgctgccgacctgcagctacttgcccgtatgtatcaacgtatcatggaacagctcgtcgcctgatgagtggttctgcaagaggaaataagcatggactggctggctaaatattggtggattctggtgattgtctttttggtaggcgtcctgctgaacgtgattaaagatctcaagcgcgtcgaccataagaaatttctcgccaacaagccggagcttcccccgcatcgtgatttcaacgataagtgggacgatgacgacgactggccgaaaaaggatcaaccgaagaagtaagctgagtgctcaaccgtaggccggataaggcgttaacgccgcatccggcaatggtgaacgatgcctgatgcgacgctcacgcgtcttatcaggccaggtaatctgtcttttacatcatttcaatcacatcatcatcgccaggcttaccgccacttagcgcttcgtcgaaataatgtttcggaatggtataacgcaagtgatccagggcaaattgcatactgcgattgtcgatcgcatggcctaaatcctccacgatatccagcgtcacgtcaccaccggcactgattaacgcttcctgcgccgcaaccgcatgcgccagatcgataaccggatcttcaccgccatgaatcaggtgaattgtcgtggctgtagacgcagtttccggcaggctcgcatagcgtccgttaaaagcaatgacgcgtgaagcaaggcccggttcggctttaatgctctccagcaccataatcgcgccttgagagaaaccgatgagcgccgtggcgttagcccctactccgctctgtttctgccagtagcgcaccgtttcaataaacgtcggcatgatcgcatccacacgcgcctggcgattatcttccgtaataccctgcaccgaaaaccactgacgccccgccggattaccgctcggctccgcgccaccgacactcaccaccagcgcatcaggaaacagcggtgcaaaccagttgcctatttcccccattgccaccgggttatccccgacaccgtggaaaagcagtaacaactgttgcgcaggtttatccgggctttgaacaacaaaatggtcatgtttcatggcgaactccttaactgatgtcattaattttacgccgctgactcacaatgaccatgagataaaattgaaggagtcagtgaaataattgccattgcgttatgcgatcgcgcagacgctcagtgcgaacatcattaagtgcgaacagcgcctgcgcggcctcttcccgctgacggaccagtaacatcttgcggcctgaaagtttaagtgtggtacataactgcgcatcactggcgtttttctgtaaacgcccacgcagcgccggtaatgccagttcactggtttgtaacagacgcaataagcaacctaacgacgttaatagcggacgatgagcgaaagcaaaaccggccagttcaagccagtcgtcgtcagaaaggacggcatcgtttagtggatcaacaggaagcgtttcgccattccactgcgcgagagcttgcgcatcgcgacgtaaacggtaatgctcacgttcagccagctgtttacccgcatcactcatcggtaacagcgccatcgccgtatagcaaccgctgctggcttcccgatgattacccatccgcaccagcacaaaaccgcagcgttgccagaaacgccataactccccggtgtaaccaaaactcaccgaaagatagtcgaggtcttgcgtatattgcaaagcaccagcaataagttgccgccctgtgccttcccgctgacgagccggatgaactgctatccggctgacccgccgtccacgcaatgtcgccgccagtggattgttgccgtgcgccgccagcgactgggccaccagattaccccgcgggcgacgaaaacctgcccataccgcctgactgagttgttgagataatccaccctcatccaccagccacagcgccccggcaatctcgttttcgccagccgcctgtaaaaaatgttgccctggtgcatccatcatccggcgtaaatccagcggcgaagtccgatagtgcgcaccagacaagagctgataaacctttaacggcgtttctggatcgctttgccataacgtctgttcaaatgcggaaatgacaatattgccttgtggtgtatgggtgaagttttcatcgtcaaaaaccagtgcctcgctgaccattttttccagcgggcatccctgcgcccagcggatcggctgttgcagttcaaaacggtgtaaatgcggaaagcgagcgcaaaatttcagcaaaaaaccacgtccggtgccttcgtagccctgcaccgtagtggttaacaacgttcgaggaaaacgcgataccagttgatgcaacaatggcgcaggtatggctgcggcttcatcgaccaccagccagtcggcttgctcatcgctggctaacaaggcatccggcgcaataaagcgaaacttctcgcccgcaaattgtgccagtacatccgttgacgcttttgcgggcgcggtgacaatcgctctgcccgcaatacgagaaatgagttgccctgccaacgccgacttaccgcgcccacgcgcagccgttaccgctgccacgcccggcggcatggtcattagctgctttaagagttgctgttgttctggttgtggtgcgccagtcgcggggtaccagtcagtacggggagtaaaatgcgccaacgagaatggctggttttgccgccagaggatagcctcgttatccgccgtaagtacgcgtttgagatgctggacaaaatgcggcgtcgcaatagggtcagggcaatcactccagcgcagcgagtcggcatcaggttggttttcccactcttcccatacagggagtaacaaaaccagccagcttcccgctttcaacgttccgctaagtgcggcaaaggcagcggcatcaaagccgtggcgggcgtcgaataccgcatgccggaactcgcgcccaagtaaagtttgtagtgccgagggagaacagtggttttcagcatctggccgcggcgaaatccacagccagtcgccaggtaaggcatcacgcaacttaagagtatgctcaaaacaccaaccctcttccccgctcaacaccagcaagcggcggatcccttcacgtttcatttgcgctgttaatgtgtgaagcgcagtcagttcagccatccctgccccggaagttaaatgcttttaccaaaagtattgcattgtgccggatcgccgctgtcgaaaccacgtttaaaccagctgtagcgttgctgagaagtgccatgagtgaaactgtctggtactactcgcccctgactttgctgttgtaaacggtcatcgccgatggcctgcgccgcgttcagcgcctcttccagatcgccggtttccagaacgccttgctgctgcatactatgcccccagacaccggcaaaacagtcggcctggagttccatacgcacagataagcggtttacttccgcctgcgtcgcgttttgttgcagttgacgaactttcggctcgatgcctaacagtttctgcacatgatgaccgacttcatgggcgataacgtacccctgggcaaaatcgccatccgcgccaagtttgtctttcatgtcatcatagaaggagagatcgatataaaccgtgccatccgccgggcaatagaacggccccattatggactggcccgccccgcagccggtacgcgtcattccacggtacatgaccagcttcggttgctgataggtcttacccatcttctcgaactgttgtccccaggtgtcttccgtggttgccagaatcaccgaggtgaattttgcggcttcgtcttcatttgggctaattgaccgcgttgattgttgttgggaaaccggctgcccggtcatcaacccggttaaatcaacaccatagtagcctgcaaccagcacgactatcagtaaaatcagcccgcctttaccgcttggcaggcgaaaaccgggaccgcccatagatggaccaccagagctgttgcgcctgtcttcaacattgtcactttcacgtcgcccttgccaacgcatagatacctcaacaatatattcattatagaaatgatcgtaggtggttcagaggaagattaccacaggaaagcgggatgaaatggcggaggaatgagcgttcaatgcatatattccgagagcggttgtcttgccgtgccagctgcacggcaagatgatgaacagaaaaatcagtccagctgtacacccaggcggcgggcgacggcttcataggcttcgatcaggccaccgaggctctggcggaaacggtctttgtccattttctccagcgtttctttgtcccacaggcggctaccgtccggggagaactcatcacccagtaccacttcgcctttgtacagaccaaattccagcttgaagtcgaccagaatcagaccagcatcatcgaacagttttttcagcacgtcgttcgctttgtaggtcagctctttcatacgcgccaggttctctttgctcacccagccaaaggtttcgcagtaagattcgttgaccatcggatcgtgcatggcgtcgtttttcaggaacagatcgaacagcggcgggttcagctcaataccttcttcgattccaagacgtttcaccagagagccagcagcacggttacgcacgacacactcaaccggcaccatatccagctttttcaccagacattcggtatcggagagcagacgctccatttgagtcgggatacccgcttcagccagtttgctcataatgaagtagttgaacttgttgttcaccatacctttgcgatcaaactgctcaatgcgcgcgccatcccctgctgacgtatcattgcggaattcgagcaccaacaggtccgggttttccgtgctgtatacggttttcgctttaccacgatacaactcagcttgcttttgcatctttatcactcctgggtgtgaattaacgttttaaaatcttttgctgtctggtgtgccggatgttttgtcggatgcggcgtgaacgccttatccgaactacgtccgacaaacaaatttcgtgcgaattaccgctaaaatcgcgttttcctgcagacgcacacgtttgcgtatcatatcagaaaaaagggccggatgattccagccctgtatttttacttgctaaacgcagcctggaagacagctaccagcgcgtcgttctgactctgagtcagagtatgacctttcggatcgatgaactgtaggctgctgcggttatctaaatcgccaacctgcagtttatagtcaccggatgccaggcctggatcgctcgcgcccagttcctgccagtcgctgtcagacagcggcttataagttacggccatgttgccctgcgaacgggtgctgtcggtcactttcatgcccactttttccagcgccgctggcagacgttgccaaaccacattgaacggcccgcgtacgaccagcattggtaaaccggtgtcatcagctgcactttgtacgtccatagtggtggaggcacgattttgcgcagcgttcgcggcgtcagtggcagatttatccagaccggcggaaataacgttcatcatctccgtgctgtaacgctgcatggaagccgcgtctgcaaccggtttgcccgcctgttccaggttcagcagtttaaccgtaaccgcctgctgataaccctgcggcttaacagagatttgataacgaccacgatactgctcgtcttcgtccagacggttccattgtacccaatcggtggtcagtgtctgaccagcatcatcacgttgggtgatggtgtagtttttcgcctgcagcacgctaaccacctgcggccacagagtattgccacgaccattttccaccagcaatgaagcggtatcgcccgtgaactgggtacgcgcgccagaaaccagtgccagcggctgggctggtggacgaatgtccagcgccttaccgacagcaccactaccgttggtcaccgggattgcataatcaccggaggtcaccggcaaaatcattccagccggggcatgaagctccgcaagcggtgccgcttccaggtaggcttcatcaccactgacctgacgcttatagcgtgagtcagaactacaggcagcgagtaataaaacaagcgaaacacccgcaacctttgccaggcgcgacttttgaacagagtaagccatcaaatctccctaaactttacagcaaaccggcatgcttaagcgccgctctgaccgtctcacgaccactgtcggtgattggtgtcattggcaggcgcagcgtatcggtcgccacaagacccagttccttacatgcccatttcaccgggattggattgggttcgacaaatagtttgttgtgtaatggcatcagacgctgattaataacgcgtgcctcggcaaaatgcccttctgctgccagtttgcacatctgggccatatcacgcgctgcgacgttagccgtaacggaaataaccccatgaccgcccaattgcatgaagtccagcgcgctcgcatcatcgccgctcagcagaacaaaatcatctgaaaccagctctttgatctggtttacacgcgttaagttccctgttgcctctttgattccgataatattttttactttcgccagacggcccaccgtttccgggagcagatcgcagccagtacgggacggcacattatacagaatttgcggcaggtcagtatgctcagcgatggctttgaaatgctgatacaaaccttcttgcgacggacgattgtagtaaggggttaccgtcaggcagccgacgataccactgtcattgaagcgctgcgtcaggctaatggcttccgcagtagcgttagcgccggtcccggcaattaccggaatgcgcccatcagccagatccagcgtcatcatcaccacatcagcatgttcgtcatgatttaaggtagcggactcgccagtggtgccaacagaaacgatcgccgaagtaccgctggcgacatgataatcaatcagttttttcaagctagcccgacagacattacctttttcatccatcggagtaacaatcgcgacaatacttcccgtgaacatgggccatcctctgtgcaaacaagtgtctcaatggtacgtttggtatggcattaaaagcaagcagacagaaccgttctgattgttgtatgcatgttttttttatgctttccttaagaacaactcaccccttaaaggaataaccagtttgacactgtcatcgcaacattatctggtgatcactgcgttgggtgccgatcgccctggaattgtgaacaccatcacccgtcatgtcagtagttgcggctgtaatattgaagacagtcgcctggcgatgctgggagaagagttcacgtttattatgctgctttccggttcatggaatgccattactctgattgaatcaacgttaccgttgaaaggtgccgaactggatcttttaatcgtgatgaagcgcacgacggcgcgtccgcgtccgccaatgccagcatctgtctgggttcaggtcgatgtggcagactccccgcatttaattgaacgcttcacagcacttttcgacgcgcatcatatgaacattgcggagctggtgtcgcgcacgcaacctgctgaaaatgaacgggctgcgcagttgcatattcagataaccgcccacagccccgcatctgcggacgcagcaaatattgagcaagcgttcaaagccctatgtacagaactcaatgcacaaggcagtattaacgtcgtcaattattcccaacatgatgaacaggatggagttaagtaatgaatccactgaaagccggtgatatcgcaccgaaatttagcttgccggatcaagacggagaacaagttaatttgaccgacttccagggacagcgtgttctggtttatttctacccgaaagccatgacccccggctgtaccgtacaggcctgcggcttacgcgataacatggatgagttgaaaaaagcgggcgttgatgtgctgggtatcagcaccgataaacccgaaaaactctcccgttttgcggaaaaagagctgcttaactttacgctcctgtctgatgaggaccaccaggtgtgcgaacaattcggcgtctggggtgaaaagtccttcatgggcaaaacctacgatggcattcatcgcatcagcttcctgattgacgctgatggcaaaatcgaacatgtctttgacgatttcaaaaccagcaatcaccacgacgttgtgctgaactggctgaaagaacacgcctgattactttgctccattccgtgctggctgcgcttgcggccagcatacctcacttctcgtgatcaagatcacattctcgctttcccctgcgacacgggtgtcgaatccattttttgctgaacgttaatgaccatcatttttgtaccgttcagaatccagttaatacataacttattgaatatattgagttaatcagaatggcatcctttatgcaatatgaaatgcaatgtttcatatcattttcaaggagccgacatgaaccgctttgtggtggccgaaccactgtggtgtacaggatgtaatacctgtctcgctgcctgttcggacgtgcataaaacgcaaggtttacagcaacacccgcgcctggccctggcgaagacgtcaacaatcactgcccctgtcgtgtgtcatcactgtgaggaagccccttgcctgcaggtctgcccggtcaatgccatctctcagagggatgatgcgatccaactcaacgaaagcctctgtattggctgcaagctttgcgccgtggtctgcccatttggcgcaatcagcgcttcaggaagccgtccggtgaatgcccatgcgcaatatgtttttcaggctgaaggctcactcaaagacggcgaagaaaacgcgccaacacaacatgctttgctgcgctgggaacctggtgtccagaccgtcgcggtgaaatgcgacctgtgtgatttcttgccagaaggtccggcctgcgttcgcgcttgcccgaatcaggcgttacggctgatcaccggtgatagcctgcaacgtcagatgaaagaaaaacagcgccttgccgcaagctggtttgccaatggcggggaggatcccctttccctcactcaggagcaacgctaatggatgccctgcaattattaacctggtcgctgattctctatctgtttgctagtctggcttcgctgtttttactcggtctggacagactggctattaagctttccggcatcacatcgctggtgggcggcgtgattggcatcatcagcggaattacgcaattacatgctggtgtaactttagtcgcccgttttgcccccccttttgaatttgccgatttaaccctgcgaatggatagcctctcggcatttatggtgctggttatctccttgctggtggtggtttgttctctctattcattgacttatatgcgcgaatacgagggcaaaggcgcggcggcgatgggcttctttatgaatattttcatcgcatcgatggttgccctgctggtgatggacaacgctttttggttcatcgtgctgtttgaaatgatgtcgctgtcttcctggtttctggtcattgccaggcaggataaaacgtcgatcaacgctggcatgctctacttttttatcgcccacgccggatcggtgctgataatgatcgccttcttgctgatggggcgcgaaagcggcagcctcgattttgccagtttccgcacgctttcactttctccggggctggcgtcggcggtgttcctgctggcctttttcggttttggcgcgaaagccgggatgatgccgttgcacagctggttgccgcgcgctcaccctgccgcaccatcgcacgcttcggcgttgatgtctggcgtaatggtcaaaataggtattttcggcatcctgaaagtagcgatggatctgctggcgcaaacgggtttgcctctgtggtggggcattctggtgatggcgatcggcgcaatctccgcgctcctgggcgtgctatatgcgctggcggaacaggatatcaaacggctgctggcctggagtaccgtcgaaaacgtcggcattattttgctggcagtcggtgtggcgatggtcggtctgtcactgcacgacccgctgctcaccgtggttggactgctcggcgcactgtttcatctgctcaaccatgcgctgttcaaagggctgctatttctcggcgcgggagcgattatttcgcgtttgcatacccacgacatggaaaaaatgggggcactagcgaaacggatgccgtggacagccgcagcatgcctgattggttgcctcgcgatatcagccattcctccgctgaatggttttatcagcgaatggtacacctggcagtcgctgttctcactaagtcgtgtggaagccgtagcgctacaacttgcgggtcctattgctatggtaatgctggcagtcactggtgggctggcagtaatgtgcttcgtaaaaatgtacggtattactttctgtggtgcgccgcgcagtacacacgctgaagaggcacaggaagtgccaaatacgatgatcgtcgccatgctactgctcgcggcactctgcgtattaattgcgcttagtgccagttggctggcaccgaagataatgcatattgcccatgcgtttaccaatacccctcccgccactgtcgccagcggaatagcacttgtacccggcacgtttcatacacaggtcaccccctcattactgttgctgttactactggcgatgcctttgctgcctggcctttactggctgtggtgtcgttcgcgccgcgcagcgtttcgtcgcacaggagatgcctgggcatgcggctacggctgggaaaatgcgatggccccgtcaggcaatggcgtgatgcagccgctgcgtgtggtcttttctgcgctatttcgtctacgacaacagctcgaccctacgctgaggctaaataaaggtcttgcgcacgtcaccgccagggctcagagcacagaacccttctgggatgagcgggtgatccgccccatcgtgagcgccacccaacggctggccaaagaaatacagcatctgcaaagcggcgactttcgtctctattgcctgtatgtggtcgccgcactggttgtgctgctaatcgctattgccgtctaaggaaatcaccatgagacaaactctttgcgacggatatctggtcatttttgcgttagcacaggccgtgattctgctgatgctaaccccactttttacgggtatttcccggcagatacgcgcgcgtatgcactcccgccgcgggccggggatctggcaggattatcgcgatatccacaaactgtttaaacgccaggaagttgcgccgacatcttcaggtctgatgttccgcctgatgccgtgggtattaatcagcagcatgctggtgctggcgatggccttaccactgtttattaccgtttccccttttgcgggcggcggcgatctgatcacccttatctatcttcttgccctgtttcgttttttctttgctctttccgggctggataccggaagtccgtttgcgggagtcggtgccagtcgcgagttgacgctcggcattctggtcgaaccaatgcttattctctcactgctggtattggcgctgatagcaggttccacgcatatcgagatgatcagcaatacgctggcgatgggctggaactcgccgctaaccaccgtactggcgttactggcctgtggttttgcctgcttcattgagatgggaaaaattccctttgatgttgctgaagcagaacaggaattacaggaaggcccgctgaccgaatattccggtgccgggctggcgctagcgaaatgggggctggggctgaaacaggtcgtgatggcatcactgtttgtggccctgtttctgccctttgggcgcgcgcaagaactttctctcgcctgcctgctgacttcacttgtcgttacgctgctcaaggttttgctgatttttgtactggcctcaatcgcagaaaacacgctggcacgcgggcgttttttactcattcaccatgtgacctggcttggcttcagccttgctgcgcttgcatgggtcttctggttaaccggtctgtaaggagcactgacggaatatggaaaatcttgctctgacgacgttattgctgccttttatcggcgcactggtcgtttcgttttcgccacaacgtcgggccgccgaatggggggttttgttcgccgcgctgaccacgctgtgcatgttgtcactgatctccgcgttttatcaggccgataaagttgccgtcacgttgacgttggtcaacgtgggggatgtggcgttgtttggcctggtcattgatcgcgtgagtacgctgattctgtttgtggtggtgtttctcggtttgctggtcacgatctactccacgggttatctgacggataaaaatcgcgaacacccgcataacggcacgaatcgttattacgcatttttactggtgtttatcggcgcgatggcgggactggtactctcctcgacgctgctcggtcagttgttgttttttgaaattacaggcggctgctcctgggcgttgatcagttattaccagagcgataaagcgcagcgttcagcactaaaagcgttacttatcactcatatcggctcgttggggttgtatcttgccgccgccacgctgtttttgcagaccggaacgtttgcgcttagcgcgatgagcgagttacacggcgacgcacgttatctggtttatggcggcatcctgtttgccgcgtgggggaaatcggcccagctaccgatgcaagcgtggctaccggacgcaatggaagcgccaacaccgatcagcgcctatctccacgccgcatcgatggtgaaagtgggcgtttacatttttgcccgcgctattatcgacggcggcaatatcccgcatgtgattggcggcgttggcatggtcatggcactggtcaccattctttatggctttctgatgtatttgccacagcaggatatgaagcggttgctagcctggtcgaccatcactcaacttggctggatgttcttcggcttgtcgctctccatcttcggctcgcggctggcgctggagggcagcatcgcctacatcgtcaaccacgcgttcgctaaaagcctgtttttccttgtagcaggtgcgctgagttacagctgcggcacgcgcttgttgccgcgtctgcgtggcgtattgcacaccctgccgttgccaggcgtgggtttctgcgtggcagcgctggcgattaccggcgtgccgccgttcaacggcttcttcagtaaattcccgctgtttgctgccggttttgcgttgtcagtggagtactggatcctgctgcccgccatgattcttctgatgattgaatcggtcgccagtttcgcctggtttattcgctggtttggtcgcgttgtgcctggcaaaccgagcgaggccgtcgccgatgccgcaccgctgccaggatcaatgcgcctggtgttgattgtactgattgtgatgtcgctgatttccagcgtaatcgccgcgacctggttgcagtaaggagatgatgaatgaccggttctatgatcgtaaataatctggcgggactgatgatgctgacatcgctgtttgtgattagcgtcaaaagctatcgcctgtcatgcggattttacgcctgccagtcactggtgctggtgtctattttcgccactctctcgtgcctgttcgccgcagagcaactgctgatctggtccgccagcgcctttatcaccaaagtgctgctggtaccgttaatcatgacttacgctgcacgaaatattccccagaacatcccggaaaaagcgttattcggtccggcaatgatggcactgctcgcggcgttaattgtcctgctttgcgcatttgtcgttcagcccgtgaagctaccgatggctaccgggctgaaaccggcgctggcggtagcgttaggtcattttctgcttggcctgctgtgcattgtcagccagcgcaatatcctgcggcaaatttttggttactgcctgatggaaaacggctcccatctggtgctggcgcttcttgcctggcgagcaccggaactggtggaaataggtatcgctaccgacgccatcttcgccgtcattgtgatggtgttactggcaagaaaaatatggcgtacccacggcacgctggacgtgaacaacttgaccgcgctgaagggataatgagatgagttattctgtgatgttcgctttactcctgctcacgccgctgcttttttcgctgctctgttttgcctgccggaaacggagactttctgcgactcgcacggtgaccgtattacatagcttagggatcacactgctgctgattctggcactctgggtggtccaaactgccgctgatgcaggagaaatattcgctgcgggactgtggcttcatattgatggtctgggcggtttgttcctcgccattcttggtgtgattggctttctcaccggtatttactcgattggctacatgcgtcatgaagtggcacacggcgagctttcacccgttacgctgtgcgattactacggtttcttccatctgtttttgttcaccatgctgctggttgttaccagcaataacctgattgtgatgtgggcggcgatcgaagccaccaccttaagctcggcgtttctggtaggcatttacggtcagcgttcatcgctggaagctgcatggaagtacatcattatttgtactgttggtgtcgcttttggtctgttcggtaccgtgctggtatacgccaacgccgccagcgttatgccgcaggcagaaatggcgatattctggagcgaggttcttaagcaatcgtccttgcttgacccaacattaatgctgttggcctttgtgtttttgctaattggctttggtaccaaaaccgggctatttcccatgcacgcctggctgccggatgctcacagtgaagcgccgagtccggtcagcgccctgctctccgccgtattgctgaactgcgcgctgttggtgctgattcgctattacatcattatttgccaagccatcggcagcgatttccccaaccggttgttgctcatcttcggcatgttgtcggttgccgtggcggcatttttcattctggtacagcgggacattaagcgtctgctggcgtactccagcgtggagaacatggggctggtcgcggtggagctaggcattggcgggccgctgggaatttttgccgcgctgctgcacatcttaaaccacagtctggcaaaaacgctgctgttctgcggttccggcaatgtactgctcaagtacggcacgcgcgatctcaacgtcgtctgtgggatgctcaaaatcatgccatttaccgccgtgctgtttggcggcggtgcgctggcgctggcagggatgccgcccttcaacatttttcttagcgaatttatgaccattaccgccggactggcacgtaatcacctgctgattatcgtcctgctgttattgctgttaacgctggtgctggcgggcctggtacggatggctgcgcgggtgttaatggcgaaaccgccgcaggccgttaaccggggtgatctcggctggttgaccacctcgccaatggtgattctgctggtcatgatgctggcgatgggaacgcatattccacaacctgtcatcaggatcctggcgggcgcttccactatagtcctctcagggacgcacgatctgcctgcacaacgtagcacctggcatgattttttgccttcaggcaccgcatctgtttcggagaaacacagtgaacgttaattcatcgtcaaatcgtggcgaagcgattctcgccgccctgaaaacgcagttccccggcgcggtgctggatgaagagcgacaaacgcctgaacaggtcaccattacggtgaaaatcaatctgctgcctgacgttgtacagtatctttattatcaacatgatggctggcttccggtcctgtttggcaacgacgagcggacacttaacggtcattacgcggtttattatgccctttcaatggaaggggccgaaaaatgctggattgtggtgaaggcgctggtcgatgccgacagtcgggagtttccgtcagtcacaccgcgcgtccctgccgcggtctggggcgagcgagaaattcgcgatatgtacgggctgattccggttggcctgccggatcagcgtcgcctggtgttgcccgatgactggccggaagatatgcatccgctgcgcaaagatgcgatggattatcgactgcgccctgaaccgacgactgattccgaaacgtatccgtttatcaatgagggcaacagcgatgcgcgggtgatccctgtcggcccgctgcatatcacctccgatgaaccgggtcacttccgcttgtttgtggatggcgagcaaattgtcgatgctgattaccgcctgttttatgtccatcgcggcatggagaaactggcagaaacgcggatgggctacaacgaagtgaccttcttatcggaccgcgtgtgtgggatttgcggttttgcccacagtgtggcctataccaattcggttgaaaatgcactggggattgaggtgccgcaacgagcacatactattcgctcgattctgctggaagtcgaacggctacacagtcatttgcttaaccttggcctctcctgccatttcgttggttttgataccggctttatgcaatttttccgcgtgcgggaaaagtcgatgacgatggcggaattgctgatcgggtcgcgtaaaacctacggtctgaatctgattggtggtgttcgccgcgatattctcaaagagcaacgtctgcaaacgctgaaactggtgcgcgagatgcgcgccgacgtgtcggagctggtagagatgctgcttgctacgccgaatatggaacaacgcactcagggcattggcattctcgaccgacaaatcgcccgtgatttgcgctttgatcacccctacgccgactacggcaatattccaaaaacactgtttacctttaccggcggcgatgttttctcccgcgtgatggtccgtgtcaaagagacgtttgattcgctggcaatgctggaatttgccctcgacaacatgccggataccccactgctgaccgaaggctttagctataaacctcacgcattcgcgctgggctttgttgaagcgccacgcggtgaagacgtgcactggagcatgctcggtgataaccaaaaattgttccgctggcgctgccgtgccgccacctacgccaactggccggtgttgcgttacatgctgcgcggcaataccgtttctgacgcaccgctgattatcggtagccttgatccctgctactcctgtaccgaccgtgtgacgctggtagatgtgcgcaagcgccagtcaaaaaccgtgccgtataaagagatcgaacgctacggcattgatcgtaaccgttcgccgctgaagtaaggacagaagatgctgaagttactgaaaactattatgcgcgccggaaccgcgacggtgaaatatcccttcgcgccactggaggtcagccctggctttcgcggaaaaccggacctgatgcccagccaatgtattgcctgcggtgcctgcgcctgtgcttgtccggcaaatgcgctgactatccagaccgacgaccagcaaaattcgcgcacctggcagctctatctggggcgttgtatttactgcggacgttgtgaagaagtgtgcccgaccagagccatccagcttaccaataactttgaactgaccgtcaccaataaagccgatctctatacccgcgcgacgttccatctacaacgttgcagccgttgcgaacgcccgtttgccccgcaaaaaaccatcgcactggctgctgaattgttagcacagcaacaaaatgcgccacaaaaccgcgaaatgttgtgggcgcaagcgagcgtctgcccggaatgcaaacaacgcgcgacgctgatcaacgacgatacagatgtactgctggtggctaaggagcagctatgagtccagtgcttacacaacatgtcagccagcccatcacgctggacgagcaaacgcaaaagatgaagcggcatttgctacaggatatccgtcgctcggcttacgtttatcgcgtcgattgcggcggctgcaacgcctgtgaaatcgaaatttttgctgccattacaccagtattcgacgcagaacgttttggcattaaggttgtttcatcaccgcgtcacgccgatattttgttatttactggcgcagtcacccgggcgatgcgtatgcctgcacttcgggcgtatgagtctgcccccgatcataaaatttgtgtttcctacggcgcgtgcggtgtcggcggcggtattttccacgatctctacagcgtctggggcggtagcgacaccattgtccccattgatgtttggatccccggctgcccgccaacaccggccgccaccattcacggtttcgccgtggcgctcggtttgctgcaacagaagattcacgctgtggattatcgcgatcccaccggggtgactatgcaaccgttgtggccgcagatcccgccatcacagcgtatcgccattgagcgagaagcgcggcggctggcgggctatcgtcaggggcgagaaatttgcgatcggctcctgcgccatttaagcgacgatcctacaggaaatcgggttaacacctggttgcgcgatgccgacgatccacgtctcaatagtatcgttcagcaactctttcgcgtactccgggggttacatgactgaagagtgcggggaaattgttttctggacgctgcgaaaaaagtttgtcgccagtagcgacgagatgccggaacacagctctcaggtaatgtattactcgctagctatcggccatcacgttggcgtgattgattgtctgaatgtcgccttccgctgcccactgacggaatacgaagattggcttgcactggtcgaagaggagcaagcccgacgtaagatgctgggggtgatgacttttggtgagattgttattgacgccagccacaccgccctgttgacccgggcattcgcgccactggcggatgacgcgacgtctgtgtggcaggcgcgtagcattcaattcattcatctgttggatgaaattgtgcaggaaccggccatctatctgatggccagaaaaattgcgtgagaaggatttctcattaataaggactgttgatggctatgtcagacgaggcgatgtttgccccgccacaaggaataacaattgaagcggtaaacggaatgctcgcggagcggttagcacagaaacacggcaaggcgtctttattacgcgccttcatcccgctgccgccgccgttcagcccggtacaacttattgaactgcatgttctcaaaagcaacttctattaccgctaccatgatgatggcagcgatgtgacggcaacaacagagtatcagggcgagatggtcgattattcgcgtcacgccgtccttctcggcagtagtggaatggcggagctacgctttattcgcacccacggcagtcgttttacttcccaggattgcacactgtttaactggctggcgcggataatcaccccggttctgcaatcatggctcaatgatgaagaacagcaggtggcgctgcgtttgctggagaaagatcgcgatcatcatcgggtactggttgatattactaatgcagtgctgtcacatcttgatctcgacgatctgatcgctgacgtcgctcgtgagatccatcattttttcggtctggcttcagtcagtatggtactgggcgatcatcgaaagaacgagaagttcagcctgtggtgcagcgatctttctgcctcacattgtgcgtgtctgccacgctgtatgcctggcgaaagtgtattgctgacacaaacgctacaaacccgacaaccgaccttgacgcaccgtgcagatgatctgtttctctggcaacgcgacccgttattactcttacttgcatctaacggctgcgaatctgcgctccttataccgcttacctttggcaaccatacaccgggtgcattgttgctggcgcatacctcttccactctctttagtgaggaaaactgccagctactacaacacatagccgatcgcatcgctattgccgttggcaatgccgatgcctggcgtagcatgaccgatttgcaggaaagtttgcagcaagaaaaccaccagcttagcgagcagctcctttcgaatctgggcatcggtgacattatctatcaaagccaggcaatggaagacctgctccagcaggtagatattgtggcgaagagcgacagtacggtgttgatttgtggtgaaaccggaactggcaaagaggtgatcgccagagcgatccatcaacttagcccgcgacgcgacaagccgctggtcaaaatcaactgcgctgccatccccgccagtcttctggaaagtgagttattcggtcatgacaaaggggcgtttactggtgcgattaatacccatcgtggtcgttttgaaattgccgatggcggcacgttgtttctcgatgaaattggcgatctgccgttagaacttcagcctaaactgctgcgcgtattgcaggagcgggagattgagcgtctcggcgggagtagaacgatcccggtgaatgtcagagtcattgccgccaccaaccgtgatttgtggcaaatggttgaagatcgccagtttcgcagcgatctcttttatcgcctgaatgtcttcccactggaattgccgccgctacgcgaccgtccggaagatatccctcttttagcaaaacatttcacgcaaaaaatggcgcgccatatgaatcgcgcaattgacgccatcccgaccgaggcactacgccagttgatgtcgtgggattggccgggcaacgtgcgcgagctggaaaacgtgattgagcgggcggtactgttgactcgtggtaacagtctgaatttacatctaaatgtccgacaaagccgtttactgccgacgctaaatgaagattcagcgcttcgcagttcaatggcgcagttactgcacccgacgacgccagagaatgacgaagaagaacgtcagcgcattgttcaggtattgcgagaaaccaatggcattgttgccgggccccgtggcgcagcgacgcgattagggatgaagcgcaccacgctgctgtcacgaatgcagcggctggggatctcggttcgcgaggtgttgtaatctgcttttgcaggagtatgcatgagaaacaaactctctttcgacttgcagttgagcgccagaaaagcggcaatcgctgaacggattgccgcccataaaattgcccgcagtaaagtgtcggtctttttaatggcgatgtccgctggcgtgtttatggcgatcggatttactttttacctttccgttatcgccgatgccccgtcttcacaggcattaacccatctggtgggcggcctttgctttacactcggctttattttgctggcggtttgcggcaccagcctgttcacctcgtcggtaatgacggtgatggcaaaaagtcggggcgttattagttggcgaacttggctgattaacgcacttctggtggcctgcggtaatctggcaggtattgcctgtttcagtttgttaatctggttttccgggctggtgatgagtgaaaacgcgatgtggggagtcgcggttttacactgcgccgagggcaaaatgcatcatacatttactgaatctgtcagcctcggcattatgtgcaatctgatggtttgcctggcgctgtggatgagttattgcgggcgttcgttatgcgacaaaatcgtcgccatgattttgcccatcaccctgtttgtcgccagtggctttgagcactgtatcgccaatttgtttgtgattccgttcgccattgccattcgccatttcgcccctccccccttctggcagctggcgcacagtagcgcagacaattttccggcactgacggtcagccattttattaccgccaatctgctcccggtgatgctgggtaatattatcggcggtgcggtgctggtgagtatgtgttatcgggctatttatttacgtcaggaaccctgaaaaatcagcccggcgaaacagttcgtcgggctgaagattattcttgcgcgatttgcccatcgggccaggcatgaatcacggctttgatcagcgtcgccaacggaatggcgaagaatacgccccagaatccccacaaaccaccgaagatcaccaccgataaaataatcaccagcggatgcaggttaaccgcttcggagaacaacaccggcactaacaggttgccgtccagcgcctgaataatcagatacaccgcgaagcagctccagaattcagtacctgcgccaaactggaatagcgccacgccaaccaccggaatggtcaccacaaatgcgccaatgtacggaataagaaccgagaagccgaccagcactgccagcagcagcgaatagttcagcccgaagagcaagaaccccagccaggtggcgatccccaccacgatcatctccagcactttgccgcggatatagttggtgatttgttgattcatctccttccacacctgtcctgccagcccacggttacgcggcagcacccggcgaacggcgttcagcatctgctctttgtctttcagcaggaagaagaccatcaatggcaccagcaccagatagacggctatggtcagcaaaccgaccagcgaggcgagggaaattttcaccaccgaatcgcccatggtcagcatccgactgcgcatattttcggccattgcatcaataatgcccgcgtccattaacgccggatagcggcgcggcaacgtggcggcaaagtcagaaagcttattgagcatccccggcatatcgcggattaagtagatgccctgttgccaggcgataggcagtaccacgaacgccatcagtagcaatataccgacgaaaaccaccaatacaatcgacgtcgcccagcggcgggagcagccaatagattgcagacgcacggttggccattccagcaaataggccagcacaatagccaccagcaacggagcaagcaggccactaaagaaaaagataatgccaaatccggcaactaaaataaccagcaaggcaatcgcttccgggtcgctaaaacggcggcgataccattgcatcaacatttcgagcataaagaccttccctgaacctcaagagcgggattgcgatccgcaattgtatcgaaatgtcacaaaaaagacttcgctttttatgacggattcaggaaactgaaaagtcatttgagtgggctaatcttcgccgttacactcaaaggcggcgcggtgggaacgatatttcacagtatcggtcaaatgactatctccagaaatacaggatagaggttatgttcaggcagttgaaaaaaaacctggttgcaaccctcattgctgctatgaccattggtcaggtagccccggcgtttgccgacagcgcagacaccttgccggatatgggaacctccgcaggaagcacgctttccattggtcaggaaatgcagatgggcgactattatgtccgccagctacgcggcagcgcgccgttaattaatgacccgctgttaacgcaatatattaattcgctggggatgcgtctggtttcgcatgccaattcggttaagacaccgtttcatttttttctgatcaacaacgacgaaattaacgcctttgctttctttggcggcaacgtggtgctgcactctgccctgttccgttattccgataacgaaagtcaactggcttcagttatggcgcacgaaatctcccacgtcacccaacgtcacctggcgcgagcgatggaagatcagcagcgcagcgcgccgctgacctgggtcggcgcgttaggttctattttactggcgatggccagtccgcaggcggggatggcggcgctgaccggtacactggcgggaacgcgtcaggggatgatcagtttcacccagcaaaatgaacaggaagcggaccgcattggtattcaggtgctgcaacgctcgggattcgatccgcaggcgatgccaaccttcctcgaaaaattactcgatcaggcgcgttactcctcgcgcccgccggaaattttattgactcacccgttgccggaaagtcgtctggcagatgcccgcaaccgtgctaatcagatgcgcccgatggtggtgcagtcgtcggaagatttctatctggcgaaagcgcgcacactggggatgtataattccggacgtaaccagctcaccagtgatttgctggatgaatgggcgaaaggaaacgttcgtcagcaacgagcagcacaatatggtcgtgctttacaggcgatggaagccaataaatacgacgaggcgcgtaaaacgctgcaaccgttactggcggcagaacctggcaacgcatggtatctcgatctggctactgatatcgatcttgggcaaaacaaagccaatgaggcgatcaatcgtctgaaaaatgcccgcgatttacgcaccaatccggtgttgcagctcaacctggcgaacgcttatttgcaaggcggtcaaccacaagaagcggccaatattctgaatcgctacacctttaataataaagatgacagcaacggctgggatttgctggcacaggcggaagccgcgctaaataaccgcgatcaggagctggctgcgcgagcagaaggttatgcgctcgccggacgactcgatcaggccatttcgctgttgagtagcgccagttcgcaggtgaaattaggcagcctgcaacaagcgcgttacgatgcgcgcatcgaccagttgcgccagctgcaggaacgctttaagccttataccaagatgtaattcgcattaaaggaagaacaatgaccaaacaggtaaaaatctaccataacccacgctgttcaaagagccgggaaacgctgaacctgctgaaagaaaacggcgtggagccagaagtggtgctctaccttgagacacccgccgatgcggcaacgctgcgcgatttgctgaaaatactggggatgaatagcgcccgtgaattgatgcgccagaaagaggatctttataaagaactgaacctggctgacagttcgcttagcgaagaggcgctgattcaggcaatggtggataatccgaagctgatggagcgcccgattgtggtcgcgaatggcaaagcgcggattggtcgtccaccggagcaggtactggaaatcgtgggttaagatgtgctccatcgctagttgaagcacattgccggatgcgacgcttgccacgtcttatccggcctacgaatactatggattaacttcgcgtagttcggataaggcgttcgcgccgcatccgacaataaacaccttatctacaacttcagaatttctttcacaaacggaatggtcagcttacgttgcgcggtaatcgacgcacgatccaactgatccaacgtcataaatagcgtgcgcatttctctgtcgagccgcttcagcaagaaacgccccacatcttccggcagttcaaaaccacgcaaacgcgcgcgtaactgtagcgcctgcaacttatcttcatcagaaagtggctgcaatttgtagatctgcccccagtcgagtcgcgacgcgagatccggtaatcccagattcaactgccgcggtggacgatcgccggtgatcaacaaccgtgttttgcccgattccagaattcgattgtagagatcgaaaatcgccatctcccacaactcatcgcctgcaatacactcaatgttgtcgatacagaccagcgacaaatgctccataccgtcgagcacttccggaacaaaccaggtgcgtttatccagcgggacatagcccaccgcatcgccacgctgcgacaattccgcgcaagccgcgtgcagcagatggctgcgccccgcgccttcgcgtgcccagagatagatgtaaccgctatgttcctgacgcagcacgttttgcagcgcggccagtaaagaggagttatcccccggccagaaacttgcaaaggtttcgtcgtcaggaagataaagtggcaaagagagctgtgccggtgtgttcagagatacctcaaccaggatttcacaaaatcgcgagaagtttaccacagaatcccatgatgtttgaaccgggcagcaacactgcccggtcggtacattatttgtctgttatatccgcgtcttctgcgtccagcaccacttcttcagggcgcagcacactgatcagtttgaagatcaaacttaagccgataccgacgatggtcgccagcgccataccttttaactccgccgcgccgatgtttaccttcgcgccactgacgccgatgatcaaaatcacggaagtcaggatcaggttctgtgctttgttgtaatccactttcgattcgatcaaaacacgaataccggaagcaccgatgacaccataaagcagcagcgaaacgccgcccatcaccggcaatgggatcatctggatagcggcagccagtttaccgacgcaggaaagcaggatagcgaaaatcgccgccccgccgataacccaggtactgtaaacacgggtgatcgccatcacgccaatgttttctccgtaagtagtatttggcgtagagccaaagaagccggaaatcacggtcgacaagccattagcaaacatcgaacggtgcagacctggatcgcgcagcagatcttttttgacgatattagccgttactaccaggtgccctacgtgttcggcaataaccactaacgccgctggcagaatagtcagaatggcaaaccactcgaagcgcggcgtatagagggttggcagcgcaaaccagtgagcattaataatcggcgtggtatcgacaattcccattgcgaaagagagcgcgtaccccaccagcacgccaattaaaatcgggataattgccaggaaaccacgaaacagcacggaacctaaaaccgtgaccgccagggtggtaatagagatgatgatggttttggagtctggcgtttgcccttcagccgggagtaaacccgccataccggcagctacgcccgccagctccagaccgatgacggcaacgattgcgcccattgccgcaggtggaaacagcacgtccagccagccggtccccgctttcttcacgataaaagaaaccaggcagaacagcacgccgcacataataaagccgcccagcgcgacttcataccctaacggcaacagtaacaataccggtgaaataaaggcaaagctggaaccaagataagccggaattttccctttacagatgaagagatacagcagcgttccaataccgttaaataacagtacagtcgccgggttaatatgaaataagacgggcaccaggacggttgcaccaaacatggcgaacaaatgttgcaaactaagcgggattgtctgtaaaagtggcggtctttcactcaccccgatagcacggcgcgtcatagtattatcctctgtattatgtgttataggcgctttactcaaaaaaaagccgactcttaaagtcggctttaattatttttattctttatttcgtaccaaagattttgtcaccggcatcgccgaggcccggaataatgtatccgtgctcgttcagtccctgatcaatcgatgcggtatacagttcgacgtccgggtgcgctttttccagcgcagcgataccttctggcgcagctaccagcaccagaactttgatgctgctgcagcccgcttttttcagcaggtcgatggtcgcgataacggaaccaccggttgccagcattgggtcaacgatcagcgccatacgctcatcgatgttagaaaccagtttctggaagtacggtaccggctccagcgtttcttcattacggtacataccgacaacgctgatgcgcgcgctcggaacgttttccagcacaccgtccatcataccaagacccgcacgcagaattggcacaacggtaattttcttacctttgatctggtcgatttctaccgggccgttccagccttcgatagttactttttccgtttcgaggtcggcggtcgcttcgtaagtcagcaggctacccacttcggaagcgagttcgcgaaagcgcttggtgctgatatcttgctcacgcatcagtcccagcttgtgtttgacgagtgggtgtttgacttccacgatcttcatactctttctcctttgaggggcagccacaaaaaaaatcgacggattatacctcctttcttcaaggcggcaatattcttttcgttgactttagtcaaaatgataacggtttgagataaagttattttatattcagatggttatgaaagaagattattccatccgaaaactaacctttaccctggcacaagtcttctttcgccgcgcgcctggggaaaagacgtgcaaaaaggttgtgtaaagcagtctcgcaaacgtttgctttccctgttagaattgcgccgaattttatttttctaccgcaagtaacgcgtggggacccaagcagtgaccgataaaacctctcttagctacaaagatgccggtgttgatattgacgcgggtaatgctctggttggaagaatcaaaggcgtagtgaagaaaacgcgtcgtccggaagtgatgggcggtctgggcggcttcggtgcgctgtgtgcattgccgcaaaaatatcgtgaacccgtgctggtttctggcactgacggcgtaggtaccaagctgcgtctggcaatggacttaaaacgtcacgacaccattggtattgatctggtcgccatgtgcgttaatgacctggtggtgcaaggtgcagagccgctgtttttcctcgactattacgcaaccggaaaactggatgttgataccgcttcagcggtgatcagcggcattgcggaaggttgtctgcaatcaggctgttcactggtgggtggcgaaacggcagaaatgccggggatgtatcacggtgaggattacgatgtcgcgggtttctgcgttggcgtggtagaaaaatcagaaatcatcgacggctctaaagtcagcgacggcgatgtgctgattgcactcggttccagcggtccacactcgaacggctattcgctggtgcgcaaaattcttgaagtcagcggttgtgatccgcaaaccaccgaacttgatggtaagccattagccgatcatctgctggcaccgacccgcatttacgtgaagtcagtgctggagttgattgaaaaggtcgatgtgcatgccattgcgcacctgaccggcggcggcttctgggaaaacattccgcgcgtattgccagataatactcaggcagtgattgatgaatcttcctggcagtggccggaagtgttcaactggctgcaaacggcaggtaacgttgagcaccatgaaatgtatcgcaccttcaactgcggcgtcgggatgattattgccctgcctgctccggaagtggacaaagccctcgccctgctcaatgccaacggtgaaaacgcgtggaaaatcggtatcatcaaagcctctgattccgaacaacgcgtggttatcgaataatgaatattgtggtgcttatttccggcaacggaagtaatttacaggcaattattgacgcctgtaaaaccaacaaaattaaaggcaccgtacgggcagttttcagcaataaggccgacgcgttcggccttgaacgcgcccgccaggcgggtattgcaacgcatacgctcatcgccagcgcgtttgacagtcgtgaagcctatgaccgggagttgattcatgaaatcgacatgtacgcacccgatgtggtcgtgctggctggttttatgcgcattctcagcccggcgtttgtctcccactatgccgggcgtttgctgaacattcacccttctctgctgccgaaatatcccggattacacacccatcgtcaggcgctggaaaatggcgatgaagagcacggtacatcggtgcatttcgtcaccgatgaactggacggtggcccggttattttacaggcgaaagtcccggtatttgctggtgattcggaagatgacatcaccgcccgcgtgcaaacccaggaacacgccatttatccactggtgattagctggtttgccgatggtcgtctgaaaatgcacgaaaacgccgcgtggctggatggtcaacgtctgccgccgcagggctacgctgccgacgagtaatacccccgtaattaaagcgccagctctgccgctggcgtttttcaattcacctgtaaatcgcaagctccagcagtttttttcccccttttctggcatagttggacatctgccaatattgctcgccataatatccaggcagtgtcccgtgaataaaacggagtaaaagtggtaatgggtcaggaaaagctatacatcgaaaaagagctcagttggttatcgttcaatgaacgcgtgcttcaggaagcggcggacaaatctaacccgctgattgaaaggatgcgtttcctggggatctattccaataaccttgatgagttctataaagtccgcttcgctgaactgaagcgacgcatcattattagcgaagaacaaggctccaactctcattcccgccatttactgggcaaaattcagtcccgggtgctgaaagccgatcaggaattcgacggcctctacaacgagctattgctggagatggcgcgcaaccagatcttcctgattaatgaacgccagctctccgtcaatcaacaaaactggctgcgtcattattttaagcagtatctgcgtcagcacattacgccgattttaatcaatcctgacactgacttagtgcagttcctgaaagatgattacacctatctggcggtggaaattatccgtggcgataccatccgttacgcgctgctggagatcccatcagataaagtgccgcgctttgtgaatttaccgccagaagcgccgcgtcgacgcaagccgatgattcttctggataacattctgcgttactgccttgatgatattttcaaaggcttctttgattatgacgcgctgaatgcctattcaatgaagatgacccgcgatgccgaatacgatttagtgcatgagatggaagccagcctgatggagttgatgtcttccagtctcaagcagcgtttaactgctgagccggtgcgttttgtttatcagcgcgatatgcccaatgcgctggttgaagtgttacgcgaaaaactgactatttcccgctacgactccatcgtccccggcggtcgttatcataattttaaagactttattaatttccccaatgtcggcaaagccaatctggtgaacaaaccactgccgcgtttacgccatatttggtttgataaagcccagttccgcaatggttttgatgccattcgcgaacgcgatgtgttgctctattatccttatcacacctttgagcatgtgctggaactgctgcgtcaggcttcgttcgacccgagcgtactggcgattaaaattaacatttaccgcgtggcgaaagattcacgcatcatcgactcgatgatccacgccgcacataacggtaagaaagtcaccgtggtggttgagttacaggcgcgtttcgacgaagaagccaacattcactgggcgaagcgcctgaccgaagcaggcgtgcacgttatcttctctgcgccggggctgaaaattcacgccaaactgttcctgatttcacgtaaagaaaacggtgaagtggtgcgttatgcacacatcgggaccgggaactttaacgaaaaaaccgcgcgtctttatactgactattcgttgctgaccgccgatgcgcgcatcaccaacgaagtacggcgggtatttaactttattgaaaacccataccgtccggtgacatttgattatttaatggtatcgccgcaaaactcccgccgcctattgtatgaaatggtggaccgcgagatcgccaacgcgcagcaagggctgcccagtggtatcaccctgaagctaaataaccttgtcgataaaggcctggttgatcgtctgtatgcggcctccagctccggcgtaccggttaatctgctggttcgcggaatgtgttcgctgatccccaatctggaaggcattagcgacaacattcgtgccatcagtattgttgaccgttaccttgaacatgaccgggtttatatttttgaaaatggcggcgataaaaaggtctacctttcttccgccgactggatgacgcgcaatattgattatcgtattgaagtggcgacgccgctgctcgatccgcgcctgaagcagcgggtactggacatcatcgacatattgttcagcgatacggtcaaagcacgttatatcgataaagaactcagtaatcgctacgttccccgcggcaatcgccgcaaagtacgggcgcagttggcgatttatgactacatcaaatcactcgaacaacctgaataaccctatgccaatacacgataaatcccctcgtccgcaggagtttgctgcggtcgatcttggttcaaacagttttcacatggtcatagcccgtgtggtagatggtgccatgcagattattggccgcctgaaacagcgggtgcatctggcggacggcctggggccagataatatgttgagtgaagaggcaatgacgcgcggtttaaactgtctgtcgctgtttgccgaacggctacaagggttttctcctgccagcgtctgtatagttggtacccatacgctgcgtcaggcgctgaacgccactgactttctgaaacgcgcggaaaaggtcattccctacccgattgaaattatttccggtaatgaagaagcccgtctgatttttatgggcgtggaacatacccaaccggaaaaaggtcgcaaactggttattgatattggcggcggatctacggaactggtgattggtgaaaatttcgaacctattctcgttgaaagccgccggatgggttgtgtcagctttgcccagctttattttcctggcggggtcatcaataaagagaattttcagcgcgctcgcatggcggcagcacaaaaactggaaactttaacctggcaattccgtattcagggctggaacgttgcaatgggcgcttccggtaccataaaagccgcccatgaagtgttaatggaaatgggcgagaaagacgggataattaccccggaacgtctggaaaaactggtaaaagaagttttacgtcaccgtaatttcgcatcgctgagtttaccgggtctttccgaagagcggaaaacagtcttcgttccgggactggcgattttatgcggtgtgtttgatgctttagccatccgtgaactgcgcctttctgacggggcgttacgcgaaggcgtactgtatgaaatggaaggacgtttccgtcatcaggatgtgcgtagtcgcaccgccagcagcctcgccaaccagtatcacatcgacagcgaacaggcccgacgggtgctggataccactatgcaaatgtacgaacagtggcgggaacagcaaccgaagctggcgcatccgcaactggaggcgctactgcgatgggccgccatgctgcatgaggtcgggttgaatatcaaccacagcggtttgcatcgccactccgcttatattctgcaaaacagtgacttgccgggttttaatcaggaacagcagctgatgatggcgacactggtgcgctatcaccgtaaagcgattaagctcgacgatctaccgcgctttaccttgtttaagaagaaacagttcctgccactgatacagctattgcgccttggcgtattactcaacaatcaacgtcaggcaaccaccacaccgccaacattgacgctgattactgatgacagtcactggacactgcgtttcccgcatgactggtttagtcagaatgcgctggtactgcttgatctggaaaaggagcaagaatactgggaaggcgtggctggctggcggttgaaaattgaagaagaaagtacaccagaaatcgccgcttaatactttgcgggccgacgagaaatgtcggcccgcattattcaggcactttcgcgaatgggttcgatttcattcagcgtatcaattaacggctgcggcttaccaataagataaccctgcatataatcgatccccaaagagagcaccgcctcgcggatctcttcgttttcaacgtactctgccactaccagcattttcttcattcgcgccaggtggcaaatcgatgccactatctgataatccagactatttgacacaatattgcggataaaactgccgtcaattttaagcagatcggcattcacatttttaagccgcgcatagctggcgtagccggtgccgaaatcatcaatcgcaatctggcagcctaattcctgaagatgctgcaaggtgatttgcgcctgcttaacattggtcagagcattactttcggtgacttcaaaaataagttgccacgcttcaatctgatatttagccagcaactgactgacttcaacaggaaaacgagcctgacataccgaggttggagacagattaatagcaaaacggtgagcgggcatcttcgctctgttttcagccataaattgcagcgtatgctcaatgacccacatgtcgatactcgacgataaaccaaattcgtgcgcgaccggcaagaagctatcggggctgatcagttcatcattctcacctttcatgcgcagaagaatttcatggtaaacatcaccacgcataccggtaatcggctgggccatcaggaaaaaatggttgtgttccagcgcctgctgtagtcgattcatcatcgcgactttatctttcaattcgcgttgcaaatacattgccccgcgacgctgcatattttccggggcgttggtcacgatggaaagttcggcgaccgtatttagctctcccagcagcaggtagatatgattcactggcgagcgcacatagcagtaactgacgccaatctgcggttgcatcggcatgccatcccaaaagaaacgaaattgcttgagatggctatccagtgcggtaatgcgctcctggtgcgattctgtattcagtcgcagcgcgagatcgttacccgaaagctgataaacatcttcacccggttccagcaagggtgacagccagtgagaaagtttttgcttgtattgaatccgcagcatgatgccatagttcttaaccagcatttccatgccagggatgcgtaaataacaaagcgcagaccagggggcatcacgcaacgcgcgattcagggcgcgaacatttggcagatgaaccaccgggtccacatacgcaagccgctgaatgcgtctgactaccgctctctgacgggttgccagtacagccatataattgacaataaaagagaataccagataactggaggaggttatggtcagctgcgtggtatagccaggataaatgggaatgtaattttgatagctgtggatgctgatcatcaacacgaccgcccagagcagcgaaatcagcttataaccatagcgcatcgctccccacatcatcaggggcagcaataatgacaaggtataattggtgctaaaaattgtgcttttttcatttaacggcatgcataacagcaacaataaagcacctaatgccagtagccagagcgcgaactcttttttggtgactttggcatcaacctgctgttttaattgcgaataatagctacgtaaataaaatggatttcgcactacccgaatgatgaagtagcacagcgggacaccgatcagattacccaccagtaaggcctgataattgattaaagtcccgaggttaaaaggcatgacaccgaccagattttctctgctcgccagtaatcctacaaatgcagcaaactggaaaagtatcagaaacagcgttgcaggaaacacaatctgccagaatatacgctgggaaattaaacgggtatcaccatgtgaaacgttgttacgccggggagtaaagaccctgtaaccgccccaacagagaatgataatgataataaaattagccgttaatgatagcgtttcgtaaaaacccagctctgcatatttgcggacaaaaatccctaaggcgatccctggcaatgccgcccagctgaaaaacatcatcatgctgatcatcagtgccagaggcagataaaagagaaaaacctcaccggaagaaatatgcgcgaaagtattaatgtgggcgaaaatgggcaagattaaagaaggcaggaacagcggaagcccccaccatttatcacgtatttttatataagttgcattcagtttcatagatgctcagcagaatcccccacatcctgaaggaggtgtattcagacaggcatcccacctgacttcgaatgatgattattcatcactatagagagcattgattctaagtgtcatatgaaagtaccaattgatatatatcaaacaaaataaccctgattaatgaattattacgtttatcatgttaattcatcattattacatcatcattgtaaataattaaattaacttccataacattaaaatatgtatccactgacgcttttttacataacgaagaattgaccattttgtcctgttgtgccttaatgtaagtaccgtccacagcgtgggacatacttcaaggaaccttttgtgagtcaggcaaccagtatgcgaaaacgacaccgatttaacagtcgcatgacccgtatcgtactgctcatcagctttatcttcttctttggccgttttatctactcgtccgtcggtgcctggcagcaccatcagagcaaaaaagaagctcagcaatccacactctccgtcgaatcaccggtacaacgttagcggttaccttctccactttcacagaacataacggcacttcgctgtcggatgcttttgctgtttgggattatcaaagcggcagatattctttcatcttaaattttacgtctttatcctgactgatgtttatcctgtttggctgcgaaataaatataaaattaatatatatgttgtaatgatatatttttataaattattccctgcgtgaattttaataaatttaatctatccctttatacgcaatacatttactttcctcttttgatgatcttaaatgtcttatttttcgtaatgtgtataacaaggaatagtgatgaaatttaaaaaatgtcttctgcctgtggcaatgttagcgtcattcactctggcaggatgccagtcaaatgctgacgatcatgctgccgatgtttatcaaaccgatcaactgaataccaaacaagaaactaaaaccgttaatattatttccattcttcccgcaaaagttgccgtagacaactcccaaaataaacggaacgcacaagccttcggcgcgcttattggcgcagtcgctggcggtgttatcggccacaacgtcgggtctggcagcaattccggaacgacggcaggtgcagttggcggcggagctgtaggcgcggcagcgggttctatggtgaatgataaaaccttagtggaaggtgtttctttaacctataaggaaggcaccaaagtgtatacctctacccaggtgggtaaagagtgccagtttacgacaggtttagccgttgttattaccacgacgtataacgaaacgcgtattcagccaaataccaaatgtcctgaaaagagctaataatcaggaggagtcatgaagaaagtttttctttgcgccatcttagcctccttaagctatccggctatcgcctcatcattgcaggatcaactctctgctgtcgcagaagcggaacagcaaggtaaaaatgaagagcaaaggcagcatgacgaatgggtcgcggagcgcaacagggaaatccagcaagagaagcaacgtcgcgcaaatgcccaggccgccgctaacaaaagagcggcaacggcagcggcaaataagaaagctcgtcaggataaactggacgccgaagcctctgcggacaaaaaacgcgatcaaagttatgaagatgagctacgcagcttagagattcagaaacaaaaactggcgctggcgaaagaagaagcccgcgttaagcgagaaaacgaatttatcgatcaggaactgaagcacaaagctgcgcaaaccgatgtggtgcaatctgaagctgacgccaacagaaatatgactgaaggcggtcgcgatctgatgaaaagcgtgggcaaagcagaagagaacaaatcggacagctggtttaattaatcgatgttagtaacttcaatcctataattcttgaagataaaaaaccctctgtagtaacagagggttttgttcattcatagtgcagggtcaaatcattcccactcaatggtagctggcggcttgccgctgatgtcatacaccacgcgggaaataccgttcacttcattgataatgcggttggaaacgcgaccgaggaaatcgtacggcagatgcgcccagtgtgcggtcataaagtcgatggtttcgacagcacgcagagagacaacccagtcatacttacgaccatcgcccattacgccaacggaacgtaccggcaggaacacagtgaacgcctggctgactttgtcgtacaggtccgctttacgcagttcttcaatgaagatggcgtcagcacggcgcagcaggtcacagtactctttcttcacttcacccagaacacgaacgccaaggcctggtcccgggaacgggtgacggtacagcatgtcgtacggcaggcccagctccagaccaatcttacgcacttcgtctttgaacagctctttcagcggttcaaccaggcccatcttcatctctttcggcaggccgcccacgttgtggtgagatttgatgacgtgtgctttaccggttgcagacgccgcagattcgataacgtcagggtagatggtgccctgcgccagccacttcacgtcttccagtttcagcgcttcttcatcgaatacttcaacgaaaacgcgaccgatgattttacgttttgcttccggatcgttttcgccagccagcgctgacaggaagcgatcttctgccggtacgtgaacaatgttaagaccaaagtgatcgccaaacatatccagaacctgctctgcttcgttgaggcgcagcaggccgttgtcgacgaatacgcaagtcaggtttttaccgatagcgcggtgcagcagcattgcggttacggaggaatccacaccaccagagaggccgaggatgactttatcgtcgcctacctgctcgcggatgcgagctacagcatcgtcgataattttcgctggcgtccacagggcttcacactggcagatatcacgcacaaaacgctccagcatgcgcataccctggcgggtatgagtcacttccgggtggaactgtacgccatagaagcgtttttcttcgttagccataatggcaaacgggcagctttcggtgctggctacggtgatgaagtcggacggaatagcggtaactttatcgccgtggctcatccagacatcgagcagcggtttaccgtctgcggtcagcgcatcttcgataccgcgaaccagtgcgctgtcgtttacgacttcaacctgcgcgtagccaaattcacgttcgttagaggcttcaacgtgaccgcccaactgcattgccatggtctgcatgccatagcaaacgccgaataccggtacgcctgcttcaaagacatactgcggcgcacgcggactgttttcttcagtagtactttccgggccgccggaaagaataatgccgcttggattgaagtcacgaatttgtgcttctgtcacatcccacgcccacagttcgcagtaaacacccagctcacgcacgcggcgcgcaaccagttgagtgtactgagaaccgaagtccagaatgaggatgcgatgcttatgaatgttttccgtcattgacgcttattccgaggcaagtgaaacagataatataaatcgcccgacatgaagtcgggcgaagagaatcaggagcccagacggtagttcggggactctttagtaatggtcacgtcgtgaacgtggctttcctgaatgcccgcaccgctgatacgtacaaactccgctttagtacgcagttcgtcgatagtaccacagccggtcagacccatacaggagcgcaggccgcccatctgctggtgaatgatctctttcaggcgacctttataggctacgcgaccttcgataccttccggcaccagtttgtcggcagcgttatcgctctggaaataacggtcagaggaacctttggacatcgcgcccagggaacccataccacggtaagatttgtaagaacggccctggtagagttcgatttcacccggagattcttcagtacccgccagcatggaacctaccatcaccgcgcttgcgccagcggcgatagctttggcgatgtcgccggagaagcgaataccgccatcagcgataaccggaataccggtgccttccagggcttctactgcgtcagcaacagcggtaatctgcggaacaccgacgccagtcacgatacgagttgtacagatagagccagggccaatgccgactttaaccgcactgcaaccagcttctgccagagcgcgtgcacctgcagctgttgccacgttgccgccgataatttgcagatccggatatttagcacgggtttcacggatacgttgcagtacaccttctgagtgaccgtgggaggagtcgatcagcagaacgtcaacgcctgcggcaaccagcgcgtcaacacgctcttcgttacccgcacctgcgccaaccgctgcaccaacacgcagacggccttgctcgtctttacaggcgttcggtttacgttccgctttctggaagtctttcacggtgatcatgccgatcaggtggaattcgtcatcaaccaccagcgctttttcaacgcgtttttcgtgcatttttgccagcaccacttcacgggcttcaccttcacgcacggtgaccagacgctctttcggcgtcatgtaaacgctaaccggctggttcaggtcggtaacaaaacgcacgtcacgaccggtgataatacccaccagttcgttttcttcggtaacgaccggatagcccgcaaaaccgttacgctcggtcagttctttcacttcgcgcagcgtcgtggttggcagaacagtctgcggatcagtcaccacaccagattcgtgttttttcacacggcgaacttcttctgcctggcgttcaatggacatgtttttgtggataaagccgataccgccttcctgagccagagcaatagccaggcgcgcttccgttacggtatccattgctgcggaaagcatagggatattcagacgaatagttttcgtcagctgggtgctgaggtcagcagtattcggcagaacggtagagtgagcaggaacgaggagaacgtcgtcaaacgtcagagcttctttagcgatacgtagcatgggcaatatctcgaccagagtggttaataaatattgccgcggcattatacagagcgtaaccgattgcatctacccctttttgcaaaaaatgcttgctatccccgaagggcgggttactatcgactgaataacctgctgatttagaatttgatctcgctcacatgttaccttctcaatcccctgcaatttttaccgttagtcgcctgaatcaaacggttcgtctgctgcttgagcatgagatgggacaggtttggatcagcggcgaaatttctaatttcacgcaaccagcttccggtcactggtactttacactcaaagacgacaccgcccaggtacgctgcgcgatgttccgcaacagcaaccgccgggtgaccttccgcccacagcatgggcaacaagttttagttcgcgccaatattacgctctacgagccgcgcggcgactaccagataatcgttgagagtatgcagccggccggtgaagggctgctgcaacagaagtacgaacagctcaaagcgaagttgcaggctgaaggtttgttcgatcagcaatacaaaaaaccacttccctcccctgcgcattgcgttggtgtgatcacctcaaaaaccggtgctgcgctacatgatattttgcatgtgttaaaacgtcgcgatccttctctgccggtgatcatctaccctgccgccgttcagggcgatgacgcgccggggcaaattgttcgcgccattgaactggcgaatcagcgcaatgagtgcgacgtattgatcgtcgggcgcggcggcggttcgctggaagatttatggagttttaacgacgaacgcgtagcgcgggcgatttttaccagccgcattccggttgtcagcgccgtcgggcatgagacggatgtgaccattgccgattttgttgccgatctgcgtgcgccaacgccgtctgccgccgctgaagtagtgagccgtaatcagcaagagttactgcgccaggtgcaatcgacccgtcaacggctggagatggcgatggattattatctcgccaaccgcacacgtcgctttacgcaaattcatcaccgattacagcaacagcatccgcagctccggctggcacgccagcaaaccatgcttgagcgcctgcaaaagcgaatgagctttgcgctggaaaatcaacttaagcgtaccgggcaacagcagcagcggttaacacagcggctgaatcagcaaaatccacagccgaagattcatcgcgcgcaaacgcgcattcagcaactggaatatcgtttagcagaaaccctgcgcgcacagcttagcgccacgcgtgaacgtttcggtaatgcagtaacgcacctcgaagccgtaagcccactgtcaacgctggcgcgtggatacagcgttactactgctactgacggcaatgtactgaaaaaagtgaagcaagttaaagcgggtgaaatgctaaccacacgtctggaagacggctggatagaaagtgaagtaaaaaacatccagccagtaaaaaaatcgcgtaaaaaggtgcattaagccagcacgaattcaacgcgttttttcgatatcaagccatgcccgtgctgacagaagtaatctactgcaccacaggcttttaacacctgcaacggttgatggcagtctggacaaagagctttcatttcaataaattccccgcaggatcggcaacgcgcatggccgttatcctgatcaagcacatgctgacattgtggacaatgcagttccatatgaattcctccggtagccattccctctacattcatagagggaatggcagataaaatacttacggataattatttatttttcttgatgtgcttcatcagacgcttacgtttacgcatctgggttggcgtcagggtgttacgcttattcgcatacgggttttccccttctttgaactgaatacgaatcggcgatcccattacgtccagcgatttgcggaagtagttcatcaagtagcgcttgtaggaatcaggcaggtctttcacctgattaccgtgaatcaccacaatcggcgggttataaccaccggcgtgggcatatttcagcttcacacgacgaccgcgtaccagcggcggttggtgatcttcaacagccatcgtcatgatgcgcgtcagcatagaggtccccacacgacgggtggagctgtcatacgcttcacgtactgattcaaacaagttaccaacaccactgccgtgcaaggcagagataaagtgcacacgagcaaaatcgataaagcccagacggaagtccagcgtttctttcacctgctctttcacttcctgactcaggccatcccacttattcaccacaatgacaagtgagcgcccactattgagaataaagcccagcagcgagagatcctgatcggaaataccttcgcgcgcatcaatcactaacatcaccacgttggcgtcttcaatggcctgcaacgttttgattacggagaatttctctacagcatcggtgattttgccgcgtttacgtacgccagcggtgtcaatgagcacatactcacgtccatcgcgttccattgggatgtagatgctgtcacgcgtcgtgccaggcatgtcgtaaacaacaacgcgctcttcaccaagaatacggttagtgagtgtagacttacctacgttcggacgacccacaatcgccagtttgatcggcagactttgcgggtcgaagtcgtcttcctcttcttcttcgccgttctcttccgcttcaaattgcgcccagtattcagcgtcttcgtcgacttcctcttgcggtgcgagatcttccatccacggcagcagcacatgctccagcagacttaatacgccacgaccgtgagacgcggcgatcgggtagatttcacctaaaccaagcgagtagaaatcaaccactgcctgatcgggatccagaccgtcagttttgtttgccaccaggaaggtcggtttttcacgggagcgcagatgtttggcaatcgcttcatctgccggcatcaggcccgcgcgcgcatccaccataaacagtacgacgtccgcttcttcaatcgccagcagcgactgttccgccatgcgggtttctacaccgtcttctgtgccatcaatcccgccggtatcaatacagataaactcacggccttcaatttccgcacgaccgtacttacggtcacgagtcagacccgggaaatccgcaaccagcgcatctcgggtgcgagttagacggttaaataacgtggattttcctacgttagggcgcccgacaagcgcgaccacaggtaccatgtttaaagcctcatttttataaatcatcagacaacgcacgctatattcgcgtcgttgttaaaaacaggaaaacggcccctgtccaggagccgttttcaaagtgaacgacagagacgattaacgtgtaatagagtacacggttccgtcttttgcctggatcagcagtttgccgtcagcggcaaccggttcagtctggaaaccggaactatcaactttttgctgggcaacgaaacgaccatcttcgacgttaatccagtgcagataaccttcactgtcaccgaccaccaggttgccattatacagcaccggagaagtcagcaggcgatgcagcagatcgctttgtgtccacagcgtaacgccgccatcaatggtcaacgccatcacccggtcattttgatcgaccagatagatgcgattgccgtcgacgatgaaatcattcaccgaacccagttcgcgtttccacataatctgaccactgcgcagatcaagcgccgtcaggttaccattataggccagcgcgaaaacaacgccgttaacaacgacgggagtcgtgtcaacatcgctcagacggtcaatttcggtagaaccggtcgcctgggaaatacgctgctgccaaatcatctggccctgttccatcagcactgcgctgacgcgaccattatcgccccccacgacggccgcaccaaaagccgttgtcggcgcagactcgccacgcaaagagagcgaaggcatatcgaggttaactgtccatttgacagcgccgtcagcttcgttcagcgcttgtaactgaccgttactggtgtggattaacaccagaccgtcgctgaccaccgggcgcgaaagtgcttcacccgcgactttagtttgccatgccacagtaccatcgctggtattcagcgcgtaaacctgcgccttttcgctgccaatgtagacatgcccaccagacacggtcacaccgccagaaagtaatgcaggctctttagagaaccagccatctttctcggccaggctgacagaccagatttctttgccatcatccgcattcagcgcttttactaaaccagcgcggtccgctgcatagacaacgttgtccgccagtgccggatgaagattggaatagaagttgccaatgccgctaccaacggaagtgctccacgccgtggtcggcgtaaactggttttcaacggttggcaatggggacatctttaccacatcttcttcgctgttaaacagcgaacagccgcttaaaagggtaacggaaagcagtcctggcagcagtaatttacgcaattgcatcgggtccctctcagatggacaaattattaattttcatctgcatcatttcgctcagtgccggagtaacatcgcttttcacgcctgcttcccatgcactacgcgcaccttgcttatcacctttgctcagcaatgcttcaccacgcaggtcggcaacaatggcagcccacccttcacctttgatggtatcaagggttttcagcgcggcatcagcctgcttgagctgtacctgaacgcgagcaagacgcagatttatcacggctttgagattttcatcgctcgtgtctgccagcccctgttgtaactgggcggcagctttctctagttcatttttgtcaacaaattgctgcgcaagttccaaagaagccagcgcaccataagtatttttattttcagcagcaaatttttccgccgccgggatgctatccggtttgccttcgctcactgcggtaaccgcattttgataggcaagagaagcggagcgtgcagaatcaacctgatggctgttccagtagcgccagccaatcagtgcgccaacgcccaaaatcaccccaacagccagtgctttgccattttcagcaaaaaagcgtttaaccgcttctacctggtcgttttcgttctcgtaaatttccacgctgtccttctccttccttaacccagtaacgtgcgcaaatgcgcggctacgctatcctgcgcaactgccgtttgctcaccagagcgcaaatccttcactactgctgtgccgttagccacttcagactcacccagcaccacagcaacgcgggcaccccatttatcagcacgggcaaactgtttcttaaagttgccgccgccgtggttggtcatcaatttcacgcccggtaattcatcacgcagacgctcagctaatgccatagccgcagattgtgtatcagcacctgaagccaccaggtatatatcgacaacaggatcggctttaaattccggattaacggcctgtactaacaatacaagacgttcgaggcccatagcaaaaccgacagccggtgttgcacgaccgcccagttgttccacaagaccgtcataacgaccgcctgcacacacggtgccctgggagccgagactgttagtcacccactcgaaaacggtacggttgtagtaatccagaccacgcaccagacgctggtttacggtgtaagcgatccccgcgctctccagcagtttgcacagaccggcaaaatgctcacgagattcctcgtccagatagtcacctaatgccggagcgtcgttgagaagcgcctgcacttccggattttttgaatccagcacgcgcagcgggttagtgtacatgcggcgtttgcagtcttcgtccagcttttctttatgctgctcaaggaatgccaccagcgcatcgcggtaattggcgcgtgcttccagcgaaccgatagagttcagctcaagagttacgtgctcggaaatacccagcgcgcgccaccagcgggcagtgagcataatcagttcagcgtcgatatccggaccttgcagaccgaaaacttcgcagcccaactgatggaactgacgataacgccctttctgcggacgctcgtgacggaacatcggcccgatataccacagacgctgttcctgattgtacagaagaccatgctcgatgccggcgcgtacacagcccgccgtcccttcagggcgcagagtcaggctgtcgccattgcgatcctcaaaggtgtacatctctttttcaaccacgtcggtgacttcaccaatcgcacgtttgaatagcggggtctgctctacaatcggcaagcggatttcactgtaaccgtagctgccgagcacgtttttcagtgtgccttcaatgcgctgccagatggccgtttcgccaggcaggtaatcgttcatgccgcgaatggcttgaatgttttttgccacgtttattctctttctgaatataaaaatgaaccctcaacgcttccctcaatgtttcgggagccatgcgggttcaatcatacacgggaagcgaggcgcttcccatcacgttattatttttcaacctgctgaacgtcaattcgacgcgcttcgtccagctgactggctttcgcacgaatgcgtgcttccagctggtcgatcatatcgttgttgtccagacggtctttgcgcacgccatcttcatagaggccgcttttcttgttgccgccggtgacgccgagtgtagaaaccagcgcctcacctgggccattcaccacgcagccgataatcgaaacgtccatcggagtgatgatatcttccaggcgttgctccagcgcgttaaccgtaccgataacatcaaattcctgacgcgaacaggtcgggcaggcgatgaagttgatccctcgcgaacggatacgcagcgatttcaaaatatcgaaaccgactttgatctcttcgaccggatcggccgccagcgatacgcgcagcgtgtcgccgatgccttcagacagcagcagacctaaaccaatggcggattttactgccccgctgcgcgcaccaccggcttcggtgatccccagatgcaacggctgatcgatctgttttgccagcaaacgataagactcaacagcgaggaagacgtcagacgctttcacgctgactttgaactgatcgaagttcaggcgatcgagatgatcaacatgacgcatggcagattccagcaacgcctgcggcgtcggttcgccatacttttcttgcagatctttttccagcgatccggcgttaacgccaatacggatcggaatgtttttatcgcgcgcacagtcaaccaccatgcgaatacgctcttcattaccgatattgccagggttaatacgcagacaatcgacgccgtattccgctactttcagcgcaatgcgatagtcgaagtggatgtcagccaccagcggcacgttaacctgctgtttgatgagtttgaacgcttctgccgcgtccatcgtcggtacggatacacggacgatatcagcgccaacgcgttccagcgccttgatttgattgaccgttgcttcgacgtctgtcgtacgcgtattggtcatggactgtacggcgatgggagcaccatcgccaatcggcacattcccaacgtaaatacgtgttgattttctacgttgaattggagcctggttatgcatgaaaaatctcccgcgttacccgtctgttactgcgccggtgattgttcggcattgagggtcagacgcgcaacctggttagttctgataaaacgactcagatcgacaggtttcccttgatactggatctgtactgcggctggcgcaccaattttcagtttgtacggtgcctggccggttaagttcaaattaccgtctttacgctgcataccgctaaacaattttttaccggtagcatcagtgacctccagccagcaatcggcagtaaagttcatcaccagcgcattcggatcagccaccggcgtggtcacgccagcctgatcggttggcaacggcgcagcaccatctggcgttgttgctgccgttggtgccggggtcgcggcggtatcaacatttgcctgcgaaggcgaaacaaccgcattctgttgcggatcaacagctggtgctggcgcagttacggcaggtgtttgcgtgttggttgcggtagtatccacagacgctggcggcgtggacgttgtagccgggtctgtagttgtcgacgtatttaatggaacactctgcccctgctcgctattactgctcagttccgccgaagattgatcggccatagtggtgatctcttcctgctgagctttgcggtcttgccaccaccaggcaccgctcaggccgataaccacaaacaacaccagccaagtgaaggtcatcagccagccgtcgcgttttttgcggcgtttaccgagggaaaaactctgcatcggcgcaacttttgcagcccgaagtggagcctgcttttccagccctggcagcagttcttcttctggaatatgtaccagacgcgcataagagcggatatatccgcgcaggaatgttgaagcaagatcggcgggtgccttatcttcttcaatgtcgcgtaccgtggaaaccttcaggcaaagtcgctcggcaacggcctgctgactaagtcctagttgttcgcgagcattacgcaggcgagcgccggtagtaagtgcttcattttggtcgtgcgtggcttcagtattcattcgctgcaggtacgtttaaatgagaattgagatgccggtgaaccatcatgctcacccacaccgcgaaacatccgttaagttaaccgttatcatacagtataagaccgtctgtgtgctcgtgacaaagcccacattcactaaggctaacttactgttgcatcgttacatactgccttaaagtcagcaaaaacgcaccgttaatattgaccagacaattgcaacttaatacttcattcataaaacattacgccacggtacataaagtaaccgtggcgtaatggctatcagaccgctttaatgtcgatggcttcaccctgcatccgtttacgcagggtacgtttcgtacggtcgataacatcgcccgccaactgaccacaggcagcatcgatatcatcaccacgagttttacgcacaatagtggtgaaaccgtagctcatcagcacttttgagaaacggtcgatacggctgttcgagctgcgtccatacggcgcacccgggaacgggttccacgggatcaggttgatcttacacggcgtatctttcagcagttccgccagttggtgcgcgtgttcagtgccgtcgttaacgtggtcaagcatcacgtattcaatagtgactcggccctgattggcgttggatttctccagataacggcgcaccgcagcaaggaacgtttcgatattgtactttttgttgatcggcacaatttcgtcacgaatttcgtcgttcggcgcgtgcagggaaattgccagtgcaacgtcgatcatatcgcccagtttatccagcgccggaactacaccggaagtggaaagcgtgacgcgacgtttagacaggccaaaaccgaaatcatcaagcatgatttccatcgccggaacgacgttgttcaggttgagcagcggctcgcccatgcccatcatcactacgttagtgatcggacgctgaccggtgacttttgctgcgccgacgattttcgccgcacgccacacctggccgataatttccgacacccgcaggttgcggttaaagccctgctgggcggtggaacagaatttacactccagcgcacaccccacctgcgaagagacgcagagcgtggcacggtcgtcttccgggatatacaccgtttcgacgcgctgatcgccaacggcgatcgcccatttaatggtgccgtcagatgaacgctgttcttcaaccacttccggtgcgcggatttccgccacctctttcagtttgccgcgcaacactttgttgatgtcggtcatctcatcaaagttgtcgcagcaatagtgatacatccacttcatcacctgatcggcgcggaagggtttttcacctaaatctttaaaaaactcccgcatctgctgacggttgagatccagcaggttgatttttccatctttcgtggtgacgttttcaggtgtgactaattgttcagacatatgctattccggcctcgttattacacgttatggcccctggagggttgaaaaaagaaacgccccggtgagcggctgctcgtccgggggcgctgcattgtacaaattctggcgcacggatgccacgtttgcacgcggcatttacgaaattattaacgggtgcgcgggcacacttcgccttcgccaaagaaataagcgatttcgcgagcggcagattcgacggaatcagaaccgtgggtaccgttttcggtcaggctgtcagcgtaatcagcgcgcagagtaccagccagtgcgtttgccggattggtcgcgcccagcagatcgcggtgacgctgaacggcgttttcaccttccagcacggaaaccacgatcgggccagaggtcatgaattcaaccagaccatcaaagaacggttttccatcgtgttcagcataaaagccacgtgcctgttcaacggtcaggtgcagcattttggtgccaacaattttgaaccctgcagcttcaaagcgcgcaaagatattaccaatgacgttttttgctaccgcgttcggtttgatgatggaaaaagtacgttcaatagccatttttacctctgtaaattgttctgttgttgtctgtaccagcgtacgagatggcgcggattataatgagcaacagggccgttgactattgatgaaggtaacatttttttaaaataaaatgagttttagcaacaatcagggacaaaacagactattgcatgacaaatttcactgtcgcgatttgccccacgtcatccatcaccagcaattgataatcacctttatccgtcaaatgcagggtcacgttgcgcccgcgttcagttaacggttcgccattcagaaaccaccagcgttcacctgcccctccacttgattgcaacggcaaagtcgcttccgctgcgcccggtaaacgtttaataatcgcgccatcgcgaacgcctgtcagctgcagcgggagctgggcatcgtgaccgtatggcgggcaacttgtcgaggccggtggtaagcgcacagcgcgacgttctgatgcgggcagccagggttccagcggtagcggccagacatttatcatttcttgtcgcgcttgcgggcaatcagcggcaacacgtttgccattttcatccagccagatggggaaacgaatgccattaatgccttcctgctccggcagtaatagagttggcggctgactcccgtccagcagccaggttgccaggcggcggcgacagttaccgtcaccttccggcaaagactgtccgcccggccagcagataacgccacgagtgactgagttcgggcgcgggtcttccggcagattcgcactgcgcgacagtaagatattattgacctgattcaacaatggtacggcactggcaaagccaaactgaccaacaacgggcgtgccgtccggtctgccagtccagatcccaatgacatagcgagcgttaaccccaatcgcccaggcgtcacgatagccatagctggtgcccgttttccatgccagtggggcgacgcgcggcaaggcactatccggcaagggttgcgcttcatcagccataatccggcgaatgatccacgccgcccccgacgacattaaaggccgttcaagcagcggatcgtcaggctgtaagcgcaatttgcctgccttgccgtggcgagcaaacgcggtatacgctgccgccatatcttccagttttgcaccagcgccgccgagaatgagtgaaagattcggcgcagcaccgttgggcaaatataacggcaatccaacattgcgtaactttgccgcaaaccgtttcggtccataggcttccagcacctgcacagcaggtaagttcagcgagcgcaccagcgcctcgctcatgctgatcgggccatgaaaaccgctatcaaagttacctggtcgataatcaccggtgcgccgggggacgtcttgcagcagtgatgccgggtggatcaagccttcatccagcgccagaccataaacaaacggtttgagcactgatcctggcgatcggatcgaattgaccatatcaacatgaccaaagcgtgaatcatcgttgagatcaaccgatcccacccagccgcgaacacgcatatcggtatgatcaaccacgatcatcgccagtgagctgcgcggtggcaaccgccctttccagttttgcgccagttcttccagacgtcgttgaagaccggcatccaacgtagtagtgattttgtcgcttttgcttttaccgagcatcatgcgcgaaaacagcggtgccagttgcggcatttgtcggggggccagccagatgggttcttcccttgactcttttacctgctcacgggaccacacaccttgcacggccatccgttcgagcactttattacgcgcggcttcggcacgctccggccaacgatccgggcgaagacggctgggcgcttgcggcaaaaccgccagcattgccgcctcggaatagcttaaattcgcaggcgattttccgagataagcccaacttgccgcaccgatcccctgcaacgtaccgccaaacggagcgcggttaagatacaaggtcagaatttcacgcttagacagatgccattccagttgcaacgcgcgccagagctggcgaattttgccgccaaatgttttggggtgaggatcaagcagacgagcaacctgcatagtgagcgtgctgccaccggaaataacccgtcccgaagtgagatcttgccatgctgcgcgcgccaccgagaatggattcacccccggatgcttccagaaccagcgatcttcataattgatcagcgcttcaaggtaacgtggagaaacatcttcgattgttaccggataacgccagatgccgtcagcatcggcgaagcgccagagcggcgtaccatcctgcgccacgaccactcgtgcgggattgacttcatgcagcggtagaggccagagtttatctgctccccacgctgcaagaaaaaggagaaagggcgcggctgccaacgttatccagcagccgcgtttggttaacaagcgaggcatttacggtctgacaatcagcagatcttcagccgcgccggtcgcccgccattggggaacatacattgattccaccatcggttgcggtacctgatacgttcccggcgtcaccgcccgcgccagatacaccagcgttaccggttggtattcatcaacggcaaccgccgccacaaagcgatcgtcacggaactcaatgtgcttaatgctcgcctgctgcatctggttcagtaagttctgcacttcgccaccactttgctccaggctggcgctaccgttcgccagattctggttttccagttccagacccgcaggcagcagatccacgactaacgcatccggcacgctgttactggcttttacctgcaaccacaccagcaccagatcgccgctacgtaacgagtccagcgatttgctcttaccatcagtaccaagaatatgacgctcgatttgcagcacattgttcgccggtaaaggtgcggattgcggataaccgctggcatccatacgcaaccataacggctgatcgccactgttgctcacctgcaaggtgacaagttgatcgctattcagattgctgttttgcgctttctcgcctgtcagctgctcagctgagaaagaggtttgcgcctgccatttaccgggtaaatcctgaatcgtacgggcagccaggaacaacgcgttactttcctgcgtcgatagccagcgttcaccaaacgcctgctgcgaaagtgtgttcagcaaagtgtactgctcatcgggtagcagtttattttcttccagcaaggagagcattaacgcgttgtcgcgcagtgaactaccgtaatcacccagccatatccgctcatcactattacgcggcgttttcagcgccagcgcaatcgcttcttcaccacgcgtcgcatcacccatggttttcagcgcaacgccaagttgcagcagcggtaaaccagaagcggcatctgcacgatgctcccagatttcacgcagcgcacccagcggagccttttgctgacgggccaacaccagcgcagcgtaagactgtacggcgaatttactggctttgagattatccgcgtacgggatcgacatcatgcccggatcttgtaaatagcgcagcagacgctcattaccccggttaatggcgtctgtcggcacgctgtaaccctgttcgcctgcgcggaccaggaaatccatcacgtaagccgtcagccagtactcttcgtcaccgtttttatcccacagcgcaaagccgccgttatcacgttgcatttgcagcaaacgggaaatgccgatatcgaccgatgcacggcgtttctcatcactgtcgcctttgatgcccaacgcctgcagttgggctgcgttggtataaagtgacggaaacaggccgctggcggtttgctcaagacagccgtacggatacgcttttaactctttgatataacgtgcgatgttcagcggtggtttgccgctcaacaacaattgcccttccagcgtaacaggcgagaagttttgcaatccatccgccggaatcgcccatgtctcaccaggctgtaacgccgtaccgtaattaaccgtttgtgccgggaacgccggacggacgccgattttccactgcttatgctgatcggcaacggtttcacccggtaacgctaacccgctaatggtggcctgaatttctccatcgccataacccggcaatgctcgcaccgggataaacagcgtagtacgcacacctggcgctaattcaacggctgcgggtgaatcgctgaccagttcaagcaaaccactggcggtcagggcaacgttcagtttttgcggtttatcggtaagattagtgatatccagcgtcagacgcgaggtatcgccactcgccataaagcgcggcatgttcagttcagcaatcaccggtgcggcaactatcactttactttcgttgctaccgaagtcatctgccgtccaggcttgcgccatgacgcgcaattcaccgttaaaatcgccaatcggcagtgtaaccgagccttcgccctgttcgttgagcgttaccggcagcgcctgctgcacgacaatattgacgtgattgaccggcggtttaccaccacgtttcagctcatcaccatcgccaccgaaacgcagagctgccagacgcccctgaccttcaataacctgaccgtaaatatcgtaaatgtctgcgccatagcgtttctgaccaaagaacgcctgccacggatctggcgtgacgtagtcagtaatattcagcacaccactatcaacggcagacaccagcacattcacctgtttaggcttctcgccatttttagtgctggctttaattttcacggttaatggttgattgggacgcatttttgctggtgtttccagcgccagatcgaggcgacggttttcatcgccaagcggcagatgcaacacaccaaccgcgcgttttggcgtcgcggagcgagatttatcgccaggacgtaccaccagcgtacttaaatacagatcatgacgattccaggttttatcgaccggaatcgtcagatccagcccttgagcccgaacatcaatctcttgccaccacagcggcccttcactggactcgaccatcgcataacctttacccgccgttggcgcggcgatatgcaacttaatggtgtcgccagggcgataactggctttatccagtttcagcgtgacacggtcgggtcgcactgcgccgctaccgtcgctgttgtcctgccagctatagccagcccagaaacgaacactactgaccgcttcattcggcgctttgacttccagacgataagcgccccactctaccggaaaactgaccttgccggtttcgtccgctttcagatccagagtttgttcattttcgatcagatctttttgatcaaactgtgactgccagccttcatcttctgaccagttccagtagtaatcgcggcgttcgcgaatcaggcgcacctgcaagcccgacacggcttttttcacgccttgcgcatcgctataaacgatgtcaaaagcggcgttactgccttcatcaacaatgggctgtttcaccgtgctgtcagtacgataatcgtaaaccgatttcgaggcgaactgcggacggatccccggcaatgcatcggcaggccagatagcctgctcagcgcggcgcgtcaccgggcgaccgcccgattccagcaaactaccctggaaaataacctgtaatggggaatgcgtttccttccactggctttctgtagaaacttcgccgcgccctttatcatccagcgtcaactgaacttcatccagcgtgcgggaaagattttcggcagctatatcgccgaattcaaaaccaggtaaggctgacacagcttcacgcagtgggcgcaggaaaagttgcccttgcaaagtattaccattagcaggtgcaccatacaggtagtaccccaccacggagaatttcacttcatctttcggcgttagcggggttttctcaccggtcagattcagcgccatgcgctctggcataaaatcttcgacgtggaaatcccacatccgatactgattatcgcccgtgttagcgcgaatatgccacataccggttgccgcattgctatcgagtggccaggtaaagtggtagaggccattctccggctgactaacgacgctcctgagtacctgcccatcgggtttaatcacgtctaacttgatgggttgattgggcaacgctttaccgtctgcatcacgcagcaaaccattgaggattaccgtttcacctgggcgataaagatcgcgtgggccaaacatgaaaaactgtttgctatagcctggcgcgccagcaatgttaaattctgctaagtccagcgccggaagttttaaatcgagtagcgttgtctgaccgtctttacgcgccaacagtaatgccgcgtttttatcattttccagctgcacatgcccctgagcgtcactggttgcctgagtcagagtctgccctttctcatttaataaagagacttcaattccttgctgggccgcgccgttttccagactttgggtaaagatatccagacgattgtgataacggtgagctgaaacgccgatatcacttaacgtaaacagcgtcgcgggattactgtaatcgtaacgtccagcctgattcatcacagccagatacacgcccgcctgctgaagcggtttgatatcgcccagcggcagcaataatttttcacgggtgttacgcgcaggattgagatcaaaccgtccggtgtagaccagatccgccatctgcagcagtttgtctgactgccagttcgccagcgaattgcggtattcccattggctaatgaatgctggcagagattctggcttaacgcggaagaagttaacatcgacattattaacgttgagcgccattaccggcagcccttcaacgactttgccaggcagcagcgaaccacggctggcaaaaccgacgctgggttggatgtcgcgggtagttatagttttttcgtaatctttactgaaggttgcgttgttgagtgctttgacctccttgccaatagtaacgatcaaatcacgtttcggttcgaggtggcgtaaacgtaactctttaagattatctgacagctcccaggcaccatccactttgccgctttttttatcgacgacatgaataacgcgtgagaaatcctgatccgggtcgagagggatggagaacgtcagcaccagcgtggctgcaccatcaagttggacttcagagagatccagcaatgtcagcaccttaccggcactctgttgggccagtttttgtctctccggcacggagagttttgctgaactcgcgttttctgaagaggccgctttagtaacttcagaaggcgcatcttttttcaccgctgttggcgcgttatcgttgttgtcgcaccctgccagcgccagcattagcatgcaggcggctacgcgtaactttttcatttttcatccctgccacaatggcccgttagcaacgtcgaataattattatgcgtgagaatttacgttatgtaattcagtatcacgcccatacaatccgaattttagtgagaattgtggctcagacagccaaatcagcctcttttgcttgtcgcttttcactaaacatccgacaatttagcctaaccccggcaaaaatggagatgcctatgtccacgacatggtttgtaggagccgactggctcgccgaacatattgatgacccggaaattcagattatcgatgcccgcatggcgtcgcctggacaggaggatcgtaacgttgctcaggagtatctgaatggacatattcccggcgcagtgttttttgatatcgaagcgctttctgatcacacttccccgcttccgcacatgctgccgcgcccggaaacgttcgccgtggcgatgcgtgaattaggcgttaaccaggataagcacctgattgtctatgacgaaggtaatcttttctcagccccacgagcatggtggatgctgcgcacctttggtgtagagaaagtgtcgattctggggggtggacttgcaggctggcagcgcgatgatctgctgttagaagaaggtgcagtagagctgccggaaggagagtttaacgccgcgtttaatcctgaagccgtggtgaaagtaaccgatgtattattggcaagccatgaaaatacggcgcaaattattgatgcccgcccggctgcacgttttaacgcagaagttgatgaacctcgcccaggtttacgtcgcggacatattcccggagcactgaatgttccgtggacggaactggtgcgcgaaggcgaactaaaaacgaccgatgaactggatgcgatattttttggtcgcggcgtcagctacgacaaaccaattatcgtcagctgcggctctggtgtaacggcagccgtggttttgttagcactcgcgacgctggatgtgccaaacgtgaaactgtacgacggcgcatggagtgaatggggcgcgcgggcagatttaccggttgagccagtgaaataagtattttacaggcaataaaaaaccgccgaatttggcggttttttattgctagtctggttcgcggcctttccagcaggttgacttgtgttacatgagcaacgcaggtgcttcacagcaaaacaatactcaccagtaactctctttttgtcaagcaaaagagagtaattattgtttatttagcgtattatcgacaccggccctttccgccgtgttcggtaataaaataacctggcttattagtccgaattcagacaaatataaataaatcctgctcaaaattaaaaattctaaccggtaaaagatattacttaaacatgtaaattcactttcctttaaaaaacaaaaaaccgccaaaatcaggcggttttttgttgctggtccggttcgcggcctttccagcaggttgtattaccgtagtaatgcaagcgcgtctcagcggagacaatactcgccagtaactctctttttgtcaagcaaaagagagttattattgttctgttagtgtattatccactgcggccctttccgccgtctcgcaaacgggcgctggctttaggaaaggatgttccgtggccgtaaatgcaggtgtttcacagcgcttgctatcgcggcaatatcgccagtggtgctgtcgtgatgcggtcttcgcatggaccgcacaatgaagatacggtgcttttgtatcgtacttattgtttctggtgcgctgttaaccgaggtaaataataaccggagtctctccggcgacaatttactggtggttaacaaccttcagagcagcaagtaagcccgaatgccgccctttgggcggcatattttagattatccgattctgtttaaagtcacgcaaaaaaccaccccagcgacgttcatagaatggcgcaatatgttcggtaataaagtggctaattcctttttccccttttttcacctgacaaatatcgattggttcatcgccaggtaatgtatcggtcgctacacttcccgtcgcctgaataatttcttcgatatcaccatcggcttcaatgccaataagtaaattaggctgtgcctcttcgttctctttaattgaacaaataaaagcacgcttcaccggcttaatggttttaaataaggtggtgagtgaatcaatcatttgtgctggcggctctgcgacttccgataatatcagcgattcaccgccttccaggatttcctggctgctcagcggatttccctcttcaccaatcaacaaactgatttcacgcggcataaattctttaccggttggcagtttggcattaaggaagagcgtttcgccaagtgtcatctcaaacagcgtgcgaacgggcattacgacaaatgcctgttcgtcttcaaccgcctgttgaagtgcttctaacgaggtgaaaaaaggaatgacgctggtgccgtcttctttttcccagtgctgtaaatcaagcgcgctatcttcaaccacagcctcgccctgcgccgccgtaccaggcacccagacggtggattccagtagagtacggaaaaaggccgggcggtgcgccggttcagttgctgctttttccagcaggtcttcaagttcgttttttgtttcggacataagaaccacaattcattcaacgttcggggcgcaaatgcctgatgcgctacgcttatcaggcctacaagggattcgcaatttgttgaatttgcagaatttgtaggccggataaggcgtttacgccgcatccggcatattagtttacgccgttaacagattagctatcgtgcgcacaccaagtcccgtagcgcccgcagaccactgttcaaccggcgctttacggtaagtcgccgagcagtcgatatgcagccagccttgctgatagttctcaacaaagtgcgacaggaagcccgccgccgtgctcgcgcctgccggatacgccgcgcttccggtattgttcagttcggcaaagttagacggcagctggctgcggtggaactccgccagcggcagacgccagaacggttcgttctcctgcgcggcactcgccagcaagcgaccggccagcgcatcgtcaaaactgaacagcgcgtgataatcattacccagcgcagttttcgccgccccggtgagggtcgccgcatcaatgatcatttccggtttctgcgcactggcatcaatcagaccatcggcaagcaccagacgcccttcggcatcagtgttcatcacttcaacttttttaccgttgcgataggtgatgatatcgcccagcttgaacgcattgccgctaatcaggttatccgcacagcagaggaacagcttcacgcgcttgttcagtccgcgcgtaatggcaaatgccagcgccccggtaaccgttgccgcgccgcccatgtccgacttcatcgagtccataaacgcagtctgtttgatgctgtagccgccggagtcaaaagtgatacctttacctaccaggcacgcgtacactggcgcttctttatcgccagttgggttgtaatccagcgccagcaataccggagaacgttctgaaccgcgtccgactgtgtgcagccccatataaccttgctcacgcagatcttcgcctttggtgatccgataagtcacacgatcgcccgcgacgttgctgatcagatcaacagcacgctgtgccagttgcgatggtcccaattcttctgccggtgcgttgatggtgtcacgcacccagtcgatgatcatcaggcggttatccagttcctggcgctgggcatcgtccagatccggccacaccactttacgcgtgcctttcggggctttgtaaccttgccagaatgcccagcagcgatccgcatcccagccttcaccgcttaactgaacatgcttgatgcccagaccgtcaatcttgcgcgccgcacgctggatcagccccagatcgtctgccccgttcaaatgcagggtaatgccgtcattattaatgctgtaagttgctttttctccccagcgcgcgtcggcaggttgggtagagagggtaatcttcatcgcttctgtcattttagttatccttctttgtaaaagggccgccagttggcagccccaggatttttccgctaaatgattcgcgttgcaggaaggcggcaagtgagtgaagccccaggagcatagataactatgtgactggggtgaacgagcgcagccaacgcatctgcggcgtgaagcatgacgcggaaattattcggcctcgtccagccagactaacaaaatcgcttcgaggattttctcgttggatgcctgcgggtcgtcgtcgaaatcttccagatcgcaaatccactgatgcatatcggtgaatcgaaccgttttcggatcaagatcgggatacgcatcgtacagtgcttcgccaatttcgcggctatcggtccacttaagtcccatactaacctctgttaatgctcacgcgcatggttgatagtgtaacgcgggatttcgactactaaatcttcgtcggtaacgcgcgcctggcagcttaaacggctttccggctccagtccccaggctttgtccagcatgtcgtcttcctgctctgagctttccggcagtgagtcaaaaccttcacgaacgatgcagtggcaggtggtgcaagcacaggatttttcacaggcgtgttcaatctcgataccgttacgcagagctgcgtcgagaatggtttcaccgctattagcttccagaacagcgccatcagggcagagatcctgatgaggcaaaataacaatctttggcatattaaacctcgtccacggaatggcctttcagcgcacgacgaaccgactggtccatgcggcgagcggcgaaatcctgggtttgtttgtctacgtttttaatcgcttgttcgatggcgtcaacatcatcgccctgcgccacttcactcaggtgagcggcagcatcgtcaatgacctgacgttctgcggcgcttaacagcgcggcatcagcagccagcgcgccgtgcagactttccagcacacgcgccgcttctactttttgttctgccagcattcgggcttttacgtcctgctcggcatagctcattgagtctttgatcatcgaagcgatttcgctatcggtcagaccgtaagacggtttgacctgaatagacgcctcaacgccggtggatttctccatcgccgtcacgctcaaaagaccgtcggcatcgacctggaacgtcacgcgaatatgcgcaccgccagccggtagcgccggaataccacgcagcgcaaaacgcgccagtgagcggcagtcctgcaccagttcgcgctcaccctgcattacatggatagacatcgccgtctgaccatctttaaaggtggtgaaatcctgagcgcgggccaccggaatagtggtattacgcggaatcactttctccaccaggccgcccatcgtttcgaggcccagcgacagtgggatcacatcaagcaacagcatttcgctgtctggcttgttacccaccagaatatccgcctgaatcgccgcgccaatagcgacgactttatccgggtcgatggaagtcagcggtggacgaccgaaaaattcgcctacccgttcacgcaccagcggcacgcgagtagaaccgcccaccatcaccacttccagcacttcatcagcttctacacccgcgtctttcagcgcgcgacgacaagccagtaaggttcgttttaccagtggcgcgatcagttcattgaattgttcacggctgatttcgccctgccagcccgcaacgttaacggtcacggagtccgcatcgctcagcgcgattttggctgcaatggcggcatccagcagttcacgctgaacgcggttatcgctacgatcaggaatgcccgcctgctcgcgaatgtaatccgccagcagatggtcgaaatcatcgccgccgagcgcggaatcaccgccggttgccagcacttcaaacacgccgcgacttaagcgcagaatggaaatatcaaacgtcccgccaccgaggtcataaacggcgatcacgccttcctgaccggaatccagcccgtaggcgatagccgcagcggtcggttcgttaagtaagcgcaggacgtgaaggcccgccagacgcgccgcgtctttggtgccctgacgctgggcatcgtcaaagtacgccggaacggtgataactacaccatccagctcgcctgccagggcttcagttgcccgcgccgccagtgctttgaggatgtccgcagaaacgcgcaccgggttcagcagccccgccgccgtttcaatcatcggcaggccgttttcgctggcctggaattgataaggcagatgcggatagcgttgctggatatcagccagcgagcgtcccatcaggcgtttaacagaactaattgtgttggcggtatcgagcgctgcattagtacgcgcgtcataacccaccgaatgcccttgctgttgatagtgaacaacagatggcagcaggtgacggccttcatgatcggctaacgtttcggcctgaccgctgcgcactgtcgccaccagcgagttggttgtgcccaggtcaataccggccgccagacgacgctgatgcggcgcagcactcaaaccaggttcactaatttgtaataaggccatgtttagcttccagaaattaaaaatcgagcagtttttcttcgagttgttcggcactgcttcgcagtttatcgagaaaacgcagcttacgcacggtatccgccgccgcgtcccacgtctcgttgtctaactgttcaaccatcaactgatggcgggtatcaaacatctttttcacacgtttgataaagctttccagccgcgcttcatctttcgcctgttcgatctcgtccagctcttcgcgcagctccaactgttccatcaggaacgcggtgtcgcgcacagtatgctgctcgctggcgagatcaaagccgtgcaaagaaagcaaatattccgcgcgcattaacggatgacgcagcgtttgccaggcctggttaatggttgcagattgctgtacggcggcgagttgttccgcctggcttccgctggcgaatttatcaggatgatactgacgttgtagatcctgaaaacgcaggctcagcgcctgggtatcgagttgatagcgggcaggcaagccaaagagggtgaagtaatccataacattctcagggctgcgatccgccgcgataacggcgaatcaggtaaaacaaaccccacgcgcaggcgaccacggtggggttatcggtatgcgcatcaaacgtggaagctttcgccgcaaccacactcatctttgacgttcgggttggtgaatttaaacccttcgttcaggccttcttttacgaagtccagctgcgtaccgtccagaaattgcaggctcttgccatcgaccacgactttcacgcctttgtcttcaaacacgatgtcttccggcgtcggttcgtcaacaaattccagtacataagccatacctgaacacccggaggttctcacgcccagacgcaggccaaaccctttaccgcggttagccagaaaggtatttactcgcgctgctgcactgtcgctcagtgtaatcgacataaccaaacctcaactcttattttgcttcacgtttgcttttatagtccgcaatggcggctttgatcgcgtcttctgccagaatagaacagtgaattttcaccggcggcagttcaagttcttcagcaatatcggtgtttttgatcgcctgcgcttcgtcgagagacttccctttcacccattcggtgaccagggagctggaagcgatagcggaaccgcagccgtaagttttaaaacgcgcgtcttcaatgataccttcatcgttgactttaatctgcaacttcatcacgtcgccacaggccggtgcccccaccatgccgctgccgacgttctcgtcgttgttgtcaaaggaacccacgttacgcggattctcgtaatggtcgataactttttcgctgtaagccattataaattctcctgattccgataccgattaatgatgagcccattcgatgctgttcagatccacgccctgcttgtacatttcccacagcggagaaaggtcacgcagacgaccgatggatttacgaactaactcgatggtgtagtcgatctcttcttcagtagtaaaacgacctaaagagaaacggatagagctatgtgccagctcgtcgttcagccccagcgcgcgcagcacgtaggacggttcgaggcttgctgacgtacaggcggaacctgaagaaactgcgaggtctttcagcgccataatcagcgactcaccttcaacgtagttgaagctgacgttgagaatgttcggcgcaccgtgttccaggtcaccgttcaggtaaacttcttcgatatctttgatgccgttccacagacggttacgcaggccgcgcagacgttccatctcggtcgccatctcttcttttgcgatgcgataggcctcgcccattccgacgatctggtgaacaggcagagtgccggaacgcataccgcgctcgtgaccgccgccgtgcatttgcgcttcgatgcgtacgcgcggtttacgacgtacatacagcgcaccgatacctttcgggccatagattttgtgaccggagaaagacatcaggtcaactttcaactggctcaggtcgataggcagtttacccacgctctgggttgcatcaacgtgatagataatgccacgagcacggcacatttcgccgatagccgcgatatcctgcaccacgccgatttcgttatttacgtgcatgatggacacgaggatggtgtcgtcacgcatcgctgcttcaagttctttcaggtcgataatgccgttacgctgcggtgccaggtaggtgacttcaaaaccttcgcgctccagctgacggcaggtatccagtaccgctttgtgttcggttttgctggtgatgatgtgcttgccttttttctgataaaagttggctgcacctttgatcgccaggttgtcagattcggttgcaccagaggtaaagacgatttcacgcggatcagcgccgaccagatcggcaatctgattacgggcgatatctaccgcttcttcagcctgccagccgaaacggtgagaacgggaggccgggttaccaaaggttccgtccatcgtcataaactgcatcattttctcggcaacacgcgggtccaccggcgtggttgcggagtagtcgagataaatcggtaatttcattgctctataaactccgtacatcactcaatgcaaggaatcaggctaccggctggatgtacgaccgtgtttacggagtatttagcactccggcctgattctgaattctttttattaagcgcgtaacttaacgtcgatcgcgtcttgtgtgcgggtgcgtggcgcgtcgtgagtatgctgacgaccagacacatccagcacttcctggttattaaccagttcgcctaaagtaatgttgttgagaaaaccggtgagacggtcgctcaaatcacgccacagcgcgtgggtcaggcatttatcgccgccctggcagccgcctttaccctgacaacgggtggcatctacagattcgtcaacggcgctaattacttcgccaacggcgatgctgctggcatctttgcctaacagataaccaccgcctggtccacgtacgctggaaaccagaccatttttacgcagacgggaaaacagttgttccagataagaaagggaaattccctgacgttcggaaatatcagccaacggtaccgggcccgcttcagagttgagcgcaacgtcaagcattgcggtcacggcatagcgccctttagatgtcagtctcatgtcttacttcacctcaaactcgcccctgcccggggttttttattgtaaaagtgggggtattgcatagcagggtcaagtctgacattcccgagtaaattggtcaactatttacttgactgatttagtcgggtatttaaccttcagtgccatttttttatcgtggcgtttgtacctgttgtcggatgcggcgtgaacgccatatccgccctggggttctgtacactgtaggcctgataagacgcattacgcgtcgcatcaggcaacggctgtcggatgcggcgtgaacgccttatccgacctacggttctgttcactgtaggcctgataagacgcattacgcgtcgcatcaggcaacggctgtcggatgcggcgtgaacgccttatccgacctacggttctgttcactgtaggcctgataagacgcattacgcgtcgcatcaggcaacggctgttattcggccttgttacctttattctgctgctcaatagaagccagaatcccgcgcaggatattcaactcctggctttccgggcgcgcacgggtaaacagacggcgcaatttattcatcacctgccccggatggttttcacggataaaaccggttgccagcagcgtttgttccagatgaccataaaaacgctccagatcatcgaccagcggatacggcgtctcttcatgctcgacctgctcgccgttttcctgagttgccagccaggccatgcgcacttcataggcaataacctgaaccgccatcgccaggttcagcgagctgtattccgggttagccgcaatcgcgacatgataatggcatttctgcaactcttcattggtcaagccgacgcgctcgcgaccaaacaccagcgccaccggggtatttgccgcttcagcgacgcttttcaggccgcattcgcgcgggtcgagcatcggccatggcagcgtgcgggaacgtgcgctggtgcccaccaccaggctacaaccggctaacgcttcgtcgagcgtatcgacgatgtgagcattaccaatcacatcgctggcccctgctgccagggcaatcgcctgggagtcgggtttcaccagtggattaaccagccacagattggttaatcccattgttttcatggcacgggcaacagaacccatattgccggtgtgtgacgtctccaccagcacaattcgaatattttgcagcattgtctttcttcatctaaagattattcacgcatcttatcataaaacgaagacagatgccgatctcgctgctatactctgcgccgttttcccgttctttaacatccagtgagagagaccgatgcatccgatgctgaacatcgccgtgcgcgcagcgcgcaaggcgggtaatttaattgccaaaaactatgaaaccccggacgctgtagaagcgagccagaaaggcagtaacgatttcgtgaccaacgtagataaagctgccgaagcggtgattatcgacacgattcgtaaatcttacccacagcacaccatcatcaccgaagaaagcggtgaacttgaaggtactgatcaggatgttcaatgggttatcgatccactggatggcactaccaactttatcaaacgtctgccgcacttcgcggtatctatcgctgttcgtatcaaaggccgcaccgaagttgctgtggtatacgatcctatgcgtaacgaactgttcaccgccactcgcggtcagggcgcacagctgaacggctaccgactgcgcggcagcaccgctcgcgatctcgacggtactattctggcgaccggcttcccgttcaaagcaaaacagtacgccactacctacatcaacatcgtcggcaaactgttcaacgaatgtgcagacttccgtcgtaccggttctgcggcgctggatctggcttacgtcgctgcgggtcgtgttgacggtttctttgaaatcggtctgcgcccgtgggacttcgccgcaggcgagctgctggttcgtgaagcgggcggcatcgtcagcgacttcaccggtggtcataactacatgctgaccggtaacatcgttgctggtaacccgcgcgttgttaaagccatgctggcgaacatgcgtgacgagttaagcgacgctctgaagcgttaatgactcaggcgggtgatatcactcacccgccctcgcctttcaggcgctattccgaaatacttcctcactgctttactttctttcgtcactctcccaccatctttccccgattaatggatgataaagaagtcgcaaggaaaggttatggcactgccagtgaacaaacgcgttcccaaaattctgtttattctctttgttgttgccttctgcgtttatttagtgccgcgcgttgccatcaacttcttctattatcccgacgataaaatttacggtcccgatccctggtcggcggaatccgtcgaatttacggctaaggacggtactcgtctgcaaggctggtttatcccttcttcgacgggccctgctgacaacgccatcgcaaccatcattcatgctcacggcaatgccggaaatatgtccgcccactggccgctggtcagttggttacccgagcgtaatttcaacgtttttatgtttgattatcgcgggtttggtaaatcaaaaggcacgccgtcccaggccggattgctggacgatacgcaaagtgccatcaatgtggtgcgccatcgcagtgatgtaaacccacaacgtctggtgctgttcgggcagagtattggcggggcgaatattctggatgttattggtcggggtgatcgtgaaggcatacgtgcggtgatcctcgactccacatttgcctcttatgcaaccatcgccaaccaaatgatccccggcagtggctacttacttgatgagagttacagcggcgaaaattatatcgccagcgtcagcccgatcccgcttttactcattcacggtaaagctgatcacgttatcccatggcagcacagcgaaaagttgtatagcctggcaaaagagccaaaacggttgatcctaatcccggatggcgaacacattgatgctttttccgatcgtcacggcgatgtttatcgcgaacagatggtggactttatccttagcgcgttgaatccgcagaactaacccatgatcgctagcacgataatcattcacaaaaccaccttaagacatgctaatccactggtcagaacagtttaagatgagaaaaattctgtgacgcttgccaacatttctgatgattagcattcccttcgccatttccttgagcaaactttagctattcttatcaattatgcttatgggagatctacagatgatgcctacgcttgctccaccatctgtcctttcggctccccagcgccgctgccagatcttgctgacgctctttcagccggggttgaccgccaccatggcaaccttcagcgagcttaatggtgtggatgatgatattgccagtcttgatatcagcgaaacaggacgggagatcctgcgctatcatcaactcacactgacgactggttatgacggtagctaccgggttgaaggtacagtgcttaaccaacgtttgtgtttatttcactggctacgacgtggtttccgtctgtgtccgtcatttattaccagccaattcacccccgccctgaagagtgaactgaagcggcgcggaattgcgcgtaacttttacgacgataccaatctacaagcgttagtgaatctctgctcccgacggctgcaaaaacgctttgaatcgcgcgatattcatttcctgtgtctgtatctgcaatattgtttgctgcagcaccacgctggaattacgcctcagtttaatccgctccaacgtcgctgggcggaatcctgccttgaatttcaggtagcgcaggaaattggacgccactggcagcgtcgggcgctccagcctgtaccacctgatgagccactgtttatggcactacttttttccatgttgcgggttcccgatccattgcgggatgcgcatcagcgggacagacaattgcgtcagtctatcaaacgtctggtaaaccattttcgtgagctgggaaatgttcgtttttatgatgaacaggggttatgtgatcagctttatacccacctcgcccaggcgttaaatcgcagtttgtttgccatcggtattgataataccctgccggaagagttcgccagactgtacccacgcctggtgcgcaccacccgcgcggcgctggccggatttgaaagtgaatacggcgtccatctttctgatgaggaaagtggtctggtcgcggtgattttcggtgcctggctaatgcaggaaaacgatctgcatgaaaaacagattattcttcttaccgggaatgatagcgagcgagaagcgcagattgagcagcagttacgcgaactaacgttactgccgctcaacattaagcatatgtcggtaaaggcatttttgcagacaggcgctccgcgtggcgcggcactgattattgcgccttataccatgccattaccgctcttttcaccaccgctgatctatacggacctgacgctgacaacacatcaacaggagcagatccgcaaaatgctcgaatcagcatgagggaacaactttcgggcgcaaaaacattgccggaagcgccaccagcgccattacccagaacacgccgtggcccagatattgatacaggaaaccggcgaaaacggtcatgatagcgatactgccgcccatcgcgacggcagagtaaaccgcctgtaaacggatgacttcgctaccctggcgagcagcaatataacgcatggcggccaggtggcagaccgtgaaggtgccgcaatgcagaatttgcaccactatcaaccacggcaacgccgtagttgctcccataatgccccagcgcactacgccgcaaatcgccgagatcaacagcatatcgcgtgcactacaacggcggaaaagtttattactcagcgcaaagataatgacttccgccaccacgcccagcgaccacaaataccccaccgccgaggccgagtagccagctgcctgccagtaaatggcgctaaaaccgtaataggccgcatgtgccccctgcaataaacaaacgcaggccagaaagcgccagttctggcgaaccagcgccaaccacgcagaccaaccggtgctctcctgctggcgacttgccccttgtggctgaatcgtcggacggatgagaaagccgagcagcatggatgccacgcccaacgtcaacagcgcgaggatcacccgataatcaaacatagtgaccagtttgcccgtcagcgccgagccaatgacaaacgccaccgagccccacagtcgcactttgccgtaatcaagcgggaactgcttttgccacgtattcgccagtgcatcggtcaacggtaccagtggtgagaaaaagaggttaaagccaatcatcaccagcatcagccacgctacgtgcgcccccgcccagaaggcgacagcaaagagaagtgtcagcagtgccagcacgcgcaaggcggaaatcaggcgggaaggatcgctgacgcggggcgcgatgagcaaactcccgaggaaacgggcaaccagacctgcccccaataacaggccgatggtttctggcgttaaaccaatccctttaagccagacgctccagaaaggtagaaaaatgccgtaactaaaaaagtatgtgaaatagccgagcgccaaccagcgcgtggattgcaaaaccatgagtccctcccgtcaggaggcgttagtctggggttaatcgaatgttggtgcaagttgaaaaataagaatattcgagcctgcttcccgatgtctgtaacgccagttcacaagcactaaaaaactgagatccgcgacgcatgttgcaaaaataatgcgtaattatgccgttacgcttgccaaacgttcctgcacaatggcgatgaaatcgcgtaatgccggcttcatctcccctttcttccacgccatcagtaaagcaatggaaggcacatttccggcaatgggacgaaaaacaacctgtccggtattaaaattattcatataaccgggtatcaaagtgacgcccagccccatgcccaccagattcatggtcaccagaatattcgttgccacctggacgatatttggctggctgttttcttgcgcaaaccacgctttaacgatcggcgcaagcgaaccggaatacaccggatcggtactgacgaaattcacgccatccagttgcgcggcggtgatctctttttcatgtgctaaagggtgatcaaccggtaacacaaccactaatggttcgtcaaaaagctccagataatcaatctccgggctataaacaggatggcgcattaagccgacgtcgagttcaccacggcgaattttttcctcctgttgcgtggtgattaaactcaccagctcaatcaaggtgtctggctgtctgagacgaaacatcggtaatacttttggcagtaaattcacttccgccgatggcacaaagccaatggttaattgtctgtcttcctgaacaattttccgcgcccgtaatttggcattttccgcttgttcgaggattgccagcgcgtcctggagaaaacattctcccgccgccgtcaacgcgactttgcgcttatccctcaccagtaacggaacaccgacacagttttcaagatcgcggatctggctgcttaacgaaggctgtgaggtatgcagtttttccgccgcacgggtaaagttcagtgcctgcgccactgcgacgaaatagcgtaaatgccgtagttccatcaccttccccttgttatcgaaaaaacgtctcagctggtagaaattaactatttcacatattagcaaccaaccagcaacatccttatggcacaaaaatagaaggtcaatacatcttatctttcaggattaaaaaatatgaccacaccctcagatttgaacatttaccaactgattgacacccaaaatggtcgggtcactccgcgtatttataccgacccggatatttaccaactggagcttgagcgtattttcggtcgttgctggctatttctcgcccacgaaagccagatcccaaaacccggtgatttctttaacacctacatgggagaagatgcggttgtcgtagtgcgtcagaaagacggcagcatcaaggcgtttctcaaccaatgccgccaccgggccatgcgtgtgagttatgcagattgcggcaacactcgcgcctttacctgcccgtatcacggctggtcttatggcattaacggcgagttgatcgatgtaccgctggaacctcgcgcctacccacaagggttgtgtaaatcccactggggactaaacgaagttccttgtgtggagagttataaagggctaatttttggcaactgggataccagcgcaccgggcctgcgtgattacctgggtgacattgcctggtatctggatggcatgctggatcgtcgcgaaggcggcaccgaaattgtcggcggcgtacaaaagtgggtgatcaactgtaactggaaattcccggcagagcagttcgccagtgaccagtatcatgctctgttcagccatgcttctgccgttcaggtattaggggcgaaagatgatggcagcgataagcgcctcggtgatggacaaaccgcccgcccggtgtgggaaaccgccaaagatgcgctgcaatttggtcaggacggtcacggtagcggtttcttctttactgaaaaaccggatgctaatgtctgggtcgatggcgcagtttcaagctattaccgcgaaacctatgccgaagcagaacaacgtttaggtgaagttcgcgccctgcgcctggcgggtcataacaatattttccccacgctttcatggctaaacggcactgccacactccgcgtctggcatccgcgcggccctgatcaagttgaagtgtgggcgttctgtattactgacaaagccgcctccgatgaagttaaagccgcttttgaaaacagcgccactcgtgcttttggtcctgctggttttctcgagcaggatgactcggagaactggtgtgaaatccagaaattgcttaaaggccaccgcgcccgcaacagcaaactgtgtctggaaatggggcttggtcaggaaaagcgccgcgacgacggcattcctggcattactaactatatcttttcagaaactgccgctcgtggaatgtaccaacgctgggccgatcttctgagtagcgaaagctggcaggaagtgctcgataaaaccgccgcttaccagcaggaggtgatgaaatgagtgcgcaagtttcactagagttacatcaccgcattagccagtttctctttcacgaagccagcttactggacgactggaaatttcgtgactggctggcgcagctcgacgaagagattcgttacaccatgcgcaccacagttaacgcgcaaacacgcgaccgccgcaaaggcgtccagccaccgacaacctggatttttaatgacaccaaagaccagctggagcggcgaatcgcccgtctggaaacgggcatggcctgggcagaagagccgccgtcacgcacccgtcacttaatcagcaactgccagataagcgaaaccgacatcccaaacgtatttgctgtgcgggtaaattatctgctttatcgggcacaaaaagagcgcgatgaaacattctatgttggaacgcgtttcgacaaagttcgccgtctggaagatgacaactggcgcttgctggaacgggatatcgtcctggatcaagcggtaatcacttcccataacctgagtgtactgttctgatgaatcgaatttatgcgtgtcccgttgcggatgtgccggagggtgaggctctccggatcgatacctcgcccgtcatcgccctgttcaacgttggcggcgagttttatgccattaacgatcgttgcagccatggtaatgcgtcaatgtcagaagggtatctggaagatgacgccacggtggagtgcccgctacacgccgccagtttttgcctgaaaacggggaaagcgttatgcctgcccgccaccgatccgctcaccacttatccagtacacgttgaaggtggtgacattttcatcgacttaccggaggcgcagccatgagcgatctgcataacgagtccatttttattaccggcggcggatcgggattagggctggcgctggtcgagcgatttatcgaagaaggcgcgcaggttgccacgctggaactgtcggcggcaaaagtcgccagtctgcgtcagcgatttggcgaacatattctggcggtggaaggtaacgtgacctgttatgccgattatcaacgcgcggtcgatcagatcctgactcgttccggcaagctggattgttttatcggcaatgcaggcatctgggatcacaatgcctcactggttaatactcccgcagagacgctcgaaaccggcttccacgagctgtttaacgtcaatgttctcggttacctgctgggcgcaaaagcctgcgctccggcgttaatcgccagtgaaggcagcatgattttcacactgtcaaatgccgcctggtatcctggcggcggtggcccgctgtacaccgccagtaaacatgccgcaaccggacttattcgccaactggcttatgaactggcaccgaaagtgcgggtgaatggcgtcggcccgtgtggtatggccagcgacctgcgcggcccacaggcgctcgggcaaagtgaaacctcgataatgcagtctctgacgccggagaaaattgccgccattttaccgctgcaatttttcccgcaaccggcggattttacggggccgtatgtgatgttgacatcgcggcgcaataatcgcgcattaagcggtgtgatgatcaacgctgatgcgggtttagcgattcgcggcattcgccacgtagcggctgggctggatctttaaggaagcacgatgaaagaaaaaacgatcattattgtcggtggcgggcaagcggcggcaatggctgcggcctcgctacgccagcaagggttcaccggtgagctgcatctgttttccgatgagcgacatcttccttatgaacgacctccactctcgaaatccatgttgctggaagattccccgcagttacagcaggtgttacccgctaactggtggcaggaaaacaatgttcatctgcattccggtgtaaccatcaaaacgctgggtcgcgacacacgagagttagtgttaaccaacggcgaaagctggcactgggatcagctttttatagcaaccggcgcggcagctcgaccgctgccgttgcttgatgcactgggagaacgctgctttaccctacgccatgccggtgatgccgccagactgcgagaagttctgcagcccgaacggtcagtcgtgattatcggtgccggaactattggtctggaactggctgccagcgccacgcagcgcagatgtaaggtgacagtgattgaactggcggcaaccgtcatgggccgtaatgcaccaccgcccgtgcaacgctatcttttacagcgccaccagcaggctggtgtgcgcattctgctcaataatgccattgaacatgtggtcgatggtgaaaaagtagaactgacgctgcaaagtggggaaacgcttcaggctgatgtggtgatttacggtattggtatcagcgccaacgagcaactggctcgcgaggccaaccttgatactgccaatggcattgtcattgatgaggcttgccgcacctgcgatcccgcgatctttgccggtggcgatgtggcaatcactcgtcttgataatggtgcactacaccgctgcgaaagctgggaaaacgccaataaccaggcgcaaattgccgctgccgcaatgttagggctaccgctaccgctactgccgccgccgtggttctggagcgatcagtacagtgataacttacagtttattggcgatatgcgtggcgatgactggctttgtcgtggcaacccggaaactcagaaggcgatttggtttaatctgcaaaacggcgtgcttatcggtgcggtcacgctgaatcaggggcgtgagattcgcccaattcgcaaatggatccagagcggcaaaacgtttgatgcgaaactgctgatagatgagaacatcgcgcttaaatcactgtaaccaggataattagcgaatatctcaatgcctggggcgtggcgaggtgcaagagtgtgtattacgtttaaatcacattatcttgcaaagggattggttatgaacacactacgttattttgattttggagctgcccgccccgttttgttattaattgcccgtatcgccgtggtcttaattttcattatttttggttttcccaaaatgatgggctttgacggtacggtccaatatatggcctcgttgggcgcgccaatgccgatgctggcagcgattattgcggtagttatggaagtgcccgccgcgatattaatcgtgcttggctttttcacccgtccgctggcggtgctgtttattttctacacgctgggtacggcggtgattggtcaccattactgggatatgaccggcgatgcggttgggccaaatatgattaatttctggaagaatgtcagtatcgctggcgcgttcttgctattggcaattaccgggccgggggcaatttctctcgatcggcgttaggaaagatgccggatgcggcgtgaacgccttatccggcatttaataaattacagccactctacccgcaacgacatctctgaagttgttgattcccctggtgctagcgcaatgagatcacccccttccgggcgatgatgatcatccggcgcatggctcatcggttccagacagaagaaatcaaacgcatatcctttatcaaacgcagggtcggaaacaaagatgaaataacacggtgcaggtggcgtcgtttccatgatgatggcataaccttcctgcggctgctcgatgcgggcctgaccattccatccggcaaaaccattgttcacccactggcgcggcaacggcgcgggctggttaaaatccagttcctgcggtagctgctcgcaaaactcacccgccagccactgctcccgctccagccagtaaccgctcgcctgtgcctgaatccgcgtttgcggcgacaacggaaaataaggatgccagccggtaccaaatggcagcgtctctgccccttgattggtgacagagagcgtcaccgtcagcgtatccgccgttaaatgaaacgcctgacttacccgatagtgatagacaccgctgcgatgttcatacaccagacacaaactatcatcgctgtgcgagacacattgccactcgcccagccagccatcgccgtgtagatagtgcgcatcccactcaacattcggttgcagttgatactcacgcccctgccagacaaaacgattgccgctcacccggtttgcaaatggcaccagcggaaaacatgaggcatcggttgccacaccgctttttttaccaggacgtaagagcggcgtcgtatcgcgccagaagccttcgattacgccgccctggtcagaaacgtccagctttagcgacccgtgggataaggtatagatggtcatccgctaactccttaatccgggaagttaatcacaactttcccgcatttgccgctcgccatcagcgcataggcatcacctgcctgttccagcgagaagcgatgggtaatggcgttacgcggccacagcttccagtccgtcagatcatgggcgcatttttccatatggaacagactggtcacccaggagccgataatccgccgttgatggtgcatcagatcggcgctgacctcgaattccacttttccggtttcaccaatgtaaaccacccgtccccagtcagcggtggattgcagtgccagcaagcgacctgcggcattaccggaacaatcgagcgcaacatccgcgccaccgtgggtgagttcggcgataatctgcggcagaccttcggtggttgctaaatagccgtgatccatcacccctaactgttttgccatcgccagacgttccggcagcatatcaacgccgatgatccgttttgcaccgcgacctttcgccagcatcatcgccatcatgccgactggccccagaccgaccaccagcacgttatcactgccggaaacttcgccgcgcaaaattccttcatacgctgtaccaacgccgcaactgataaacgcaccatcttcgtagctcagcgcatccggcaggaggatcagatctttttcttccgccagcaagtattcggcatgaccgccgtcacgctgccagccgtaagccgcttttccttcgccagtacaagaaataggaaaaccgcgacggcagttcgggcaaaaaccacagccagaaatgtgatacaccagcacgcggtcgccctctttaaaatggcggcagccttgccccatcgccacaatctgcccgcacggttcatgaccgttgataaagccctggtataacggtttatcgggtgccgccgctgtggcacggtgttgatgatagatatagtggacatcgcttccgcaaatcccggaggatttcattttgatcagtacctggttaatccccggcgtcggcaccgcaacttcccgcagatcgacggtcgaatttcctggtaaataagctgccagcatcgttttcataaatccctcattaacaatacgattaattttcatccctgccgcacccgcgccaggggcgttaaggtttagcgtttcgctttactgcttcgctgggtcagcaagatattcgccagcaccgccaccacgatgatgacgccgcgtaccacctgctggaaaaaggagttaataccgagcagcaccagaccgttaccgattagcgtaatcaccagcacaccaagcaatgtaccgaacagggaaccgcgaccgccggaaagtgccgtaccgccgaccacgaccgcggcgatgacgtcaaactccagaccgtttgcggcacctgcgttaccagaaccgaggcgcgccgccaacaaaatgccggtcaccgccgctaataatcccgaaagggtaaagataagaatgcgcacccgacgaacgttgatgccgcacaactgcgccgccgtagcattaccgccaacggcaaaaaccgagcgcccgaaggcggttttgcggctgatgaacacaaacagcgcaaacaacacaatcatgatcagcgcggataccggcacaccgagaaattgtccgcccagccagtccagcacctcgttttcatcaatcggcactggcagtgcgttcgtcataaacagccccattccgcgcagggcgctccacagccccagtgtggcaacgaaacttggtacattaaacacgccgcgcagcaccccggccagcgttcccatcagcgcgcctaacagcaacaccagcaggcacgccaccgccagcggaacttcaaattgcagcaaaaatgccaggcacaccgagacaaaagccaccatcggcccaacgctgacatcaatttcaccggagataataatcagcgtcatcgcccaggcggcaatcccaatggtggcggcatcgcgcagcacgttcatctggttattcaatgagataaagccaggcgcgttcagggagaagaccagataaagaatggcaatcaccaccagcaaaccgatctcattaatatggcgactgacaaattgtttgagcgagacgctcttgccctgcggcaatggtaatgacgaagcagacatcttcaggttcctcggtaaaattcatcagtgcacagacagaatggcggacatcagctcatccacattgaccggagcgtgaaactcctgcgagaacgtgccgtgctgtaataacaggatgcggtcacacaccagcggcaactcctccacttcactggagataaacaccacgctttttccttcggcagccagctcacggacaatacggtaaatctgctgtttggcttcgatatcgacgccgcgcgttggctcgtcgagcaacaaaatctggctggcagcatagacccaacgaccgatcaccactttttgctgattgccaccagaaagcgtgccgatgggtgtttcgctactggcggccttgaccgtcatccgctgcatcacctcttcggtcaggcggcggatggtggaccattgcagcacaccgttggcgctgattttttgccgattggtcagcactgtattttcgtcaacgcccaaccagggaatgatccccgcttctttgcggttttctggcgtatagccaatgccgcgtttcagcatgtcgccgtaatcggggcgcgtgattttctcgccgttgataacaatttcgccctgttcatactcctccagcccaacaatcgccttcagcaattcactgcgccctgcccccagcagaccagcaatgccgagcacttcgccacgacgtagcgtaaaactgatatcctccagcttgggcttatggcgtaacgcacggacttccagcacggcctgatccacaatttcctgaggggctaccggcgcaatatcaacgtgatcgcgcccgagcatcagcgacacaatatgatgcgtggaggtgttttcgagcatcacatcgcccgccacctgaccatcgcgcataacggtggcacaggaggcaatgcggcgaatttcttccatccggtggctgacataaatcaccgccacgcccagtgccgacatctttttcaccgcgctgatcaccagttcaacttccgcactcgcaagcgaactggtaggttcatcaagaatgaccacgcgcggctcgcccttcatcacccgcgcaatttccaccagctgcttttgcgccgggcttagcgttgaaacaagttgttcaggactaacgtcaacgcccagcgcctgtaagcaacgttgggcatcctgcgccatttgcaggtaatcaatcatgccgttgcggcggggccactgaccgaggcagaggttttccgccactgtcagcccttccaccagacttaactcctgataaaccgcgcgcacccccagttcagcggcacggcgagtcagcgtagcttcgtcaccttccagtcgcgtctcgccaatccagatatcaccgctatccgggcgttcgctgccggtaagcattcgaatgagagtcgatttgcccgcgccgtttttacctaacagcgcacgaacttcgcctttattgagcgtgaagttaacgttatccagcgcaacgacgccgggataacgcttatttcctgccaccacttttgctaccgggactgcctctgttgccgtgaacatagggacctctgcgaatcagcgattagggcagaccatcaacgtgcgttgccagccactgtttaccgtcttccgttttggtatagagatcgataggcacctgaatcactttttcaccgtcggcttgtttattgataaccttcaatgtttgcgcgaaaacagcattgcccattttcttaccggaaatatccactaccgctttcagcacctgattgttttccagctcctgagcaatttcggttgtcatatccgaaccgaaaacagcaatttttccggcctgattttgattacgtaccgcttttaccgcgccgagtgtcgcaccgcccgattcccccataatggcgttgagatccggcgtggagataattagtttttcaccaacggaaatcgctttatctaaaacagtcccttcctgattagcgacaatttgcgcgccgggaacgcgggattttaaaacttcttcaaatcctttacgtcgctgcacacaaacttcaaaggcttcgcaattgatgacggcaattttcggctggtcaattttattggcaataaaataatcagcggcagcgttacccagttttttaccaaattccagcggatcgccgaccagatacgccgagacatatttatcgacccccttttgattaatacaggtgttgtagcaaatcaccggaatgcccgcttcactggcgcgacgaacggtacggctactgccattttcagacactgccgataaaataatggcatcgacattacgcgccacgagggtatcaacaaaggtactttctttcgaaatatcaccctgggcgttagtttctattaactgaacttgtactgaggaatcttttgccgcatcctgaacgccctgacgcactccagcgtagtatccctgagtatcaaggtatattgcgccaatggtcatttctttttccgcagccctggcaaatagtgcgctacctaatagcgtagccattaataatagattacgggttgttctcatttttgtaggcatagagcctcctgtagggtttttattaacaacggcttattctaattattttgtgatgagcggcagcgcgtgccgctcaaatattacagttaatagggtttagtgaacgcggttaaaaataaaaggcatcacggtggtgaataatgccgctttcggccaagccggattaatcgccgtcaattcagcgcgagcagactcatattgcgcaacctccccgagtcccgcggacgccagcatcgccaccatcaggcatttttctttatgctgctgttgtaaatcgccatacagcgacaacaagtcaggttgcgagacggcaaagaaatccgcttcgatactggttttcgccatctcttgcgcccactgtttcatttcactaaacagttgctgtgcggtttgttgttcgcccagcagtcgcagcgccatcccttgccagaagagataatcaaccggctgatcgttgtaataactgtgaatgttaatagtgcgatcgccggtcgccgccagacgtaaacaacgcgtcgcttcagtttcatcgccctgcgcgttggcgcatatcgcctgccagaaccagatgtcgttatcagtttgccccggtaaacggccttcgcttaaattctccggataatgcagcgcggcatgaagcagttcgcaggcctgctgcggctgtctggcatcaagatgctgccaggcgcgtaataactggttgaggataaactgactggtgaccttcccttccccgccttcccacgggtggaatttgcgcgtggcgagaatgtccgccgctttgtctgcctgacccgtgagatgccacaaattgagcagttctgcggtcatgtcgtcgcgtttcagcgcaatttccagattattttccagacgcgccagtcgtttctccggtgtggctccacttaacttatccagcaaatcccgttcgaaaagcagacgtgcatcctgcggcgcaagctgataagcattatcaagataacgcgcggccagctcataatcgtgttgcttattccacgcatggatcgctaacccgcgccagccgtcggcaaactccggcgacatctctacgcaacgttgccaaaaggcaatggctttgttgtagctacgtttgttgtagtagaagcaagctagtaaatggcgagcaaaccagcactcttcaatactctccagcgccgccacttcttccagcgtattcgggaaacggacaaactgcgggaagacatcaatggcttttgcgaccagttcgccacgttcggctttcggcagcaagctggcttgcaggtaaagcggcagcgtgcgctggcagtccagtgcgttcagcatctctgccgccagggtgggcattccccagttaatcagttgcccggcggtcatcagggcgttaacgtcgcgtccctgacacagaccgcgccactgcgcgagagctgattcgctacgaccatcgaaccagttcagccaccacagagtggcgttcagcggataatcgcgcagcagtttctcgcgctgcacacgcgcgttgtcctgacgaccacttaacaccagcagcagattatgcaggcaaagcacttcctgattggttgggcaggcgcgaagactttgttggcaaaaatccagaccagcgtcgaagttaccattacgcgccgccagtcgtgccaggccataatagccaccggctttgctgttgccgctccagaccgcacgccagaaatcctcttcggcttgttgatattgtccctgacgttcgtaagcactggcgcgaatcaaactcgcctgtccgcactgcggatttttgttcagcgcatgtgcgcgtttcagagcctgagtggcatacgccaccgcttgcgggaaatctgcgcggttatattccagcatcgccagcgccaggttacagcgataatccagcgggtccagcgccacgccgcgcaggtagtaatcgaacggtgaacggctggcgtgatgatattgctccagatgctgaccgataaaccaggcttcatctgtactggtaatgtcttgtgctgccagtggcgctttggcgacgtccggtaacggcaacgcttgcggctgatgttcctgataactcagtacaatattgccgtcggcatcggagagctcaatggtcagcctttcaggattgataccgtgcaacacgccctggatggcggtcgcaggcatcagtgccacggcatcatcaagtaacgcgttgcatttaccgatttcgcggatcgccaggcggtatccgttcaacggagagatggcatacagcccccactcaatcccccgcttactacgctggagttttatcaccgcatcgcgggaggcattttgcaccatgcccaaagaatgataaggcaggaaatactgctcaaaacgcttctcttcgtaagcatcaagccaggtaaaatcgggctggttatcggcaaaaataccggtcatcagttcgatatacgggccgttattgtcggtcagactcttatcccacgcctggccaaattcactgtgtccccaactccactgttttttacctggcgcaatatggtggttggcaacgtgcagcaaaccgccatcttcatcgtgacaccacgcgccgacaaaatcgtactgcgatttttcggccatatatgaggttggaacaggcacatttttatagcgagaaatgtccactccagcggagtagtccactttgtagtaagtgccggtagcgatggggaaagcggagacggcccgtttgccgtgatcaaacaccgccgttacatccggcgggaagacgctctgatgcccttccccccctttcactgccgggttggcccaccacaagaaatgacgcggcgtggcgttcccgttatagacgcggctggcgatttccagcgccgcccggtcagggcgcagggtgaaacctgtcatcacctgtaaaccatgcatcggctccgtttcgcctacccacaccgtctgtgcaccgtcttcatgggcttcgagggtgaaatcaacgggcataaaggtggtcgggcgatgatgttgcggccagttaaactcaatcccaccggaaatccacggccccagcagccccaccagcgcaggtttaatgacttcattgtgataaacaaaatcgcgctgtttcactttatcccacgcgcgatgcacccgaccgcccagttccggcaggatcatcactttgatgtagtcgttttccagccacaccgcctgccaggatttcagggttttctgctcgctcagcgtatcggtcacgccgtagggataaaccgcgccggacgatccctgataaacgcgattttccaggaacatgggatgtatatcctgcggcccggtttcataggtcgggatctcaacgcgctcttgccacacttttactggagtcatggtgccctcaatattaacaagacatactgaattaaaagatttgtggcagtgtattgaacaatctggcaatgttttcgcggaataatcacgcaattaactaaacaaggtttagtgaagatgagagcctgcattaataatcaacagattcgccaccataacaaatgcgtgattctggaactgctgtaccggcaaaagcgcgccaataaatcaacgctggcccggctggcgcaaatttcgattccggcagtcagtaatattttgcaggaactggaaagcgaaaaacgggtggtgaatattgacgatgaaagccagacgcgcgggcatagtagcggtacatggctgattgcgccggaaggtgactggacgctgtgcctgaacgtgacgcccaccagtattgagtgtcaggttgctaatgcttgtttaagtccgaaaggtgaatttgagtatttacagattgatgcaccgacgccgcaggcgctgctgtccgaaatcgaaaaatgctggcatcgccaccgtaaattgtggccggaccataccatcaacctggcgttggcaatccacggtcaggttgatcctgtgaccggcgtgtcgcaaaccatgccgcaagcgccgtggacaacgccggtggaggtgaaatatctgctggaagagaagctcggcattcgggtgatggtcgataatgactgcgtgatgctggcgctggcggagaaatggcaaaataattcgcaggaacgggatttctgcgtgatcaacgttgattacggcattggctcgtcgttcgtgattaacgagcaaatttatcgcggcagtttgtatggtagcggacagattggtcacaccatcgttaatccggatggcgtcgtctgcgactgtggacgttatggctgcctggaaactgtcgcctcgttaagcgcattaaaaaaacaggcgcgggtatggctaaaatcacaaccggttagtactcaacttgatcctgaaaaactgactacagcgcagttaatcgctgcctggcaaagtggagaaccgtggatcaccagctgggttgatcgctctgccaatgccattggtttgagtctgtataacttcctcaacatcctcaatattaatcagatttggttgtacggtcgcagttgtgcctttggtgagaactggcttaatactattattcgccagacaggatttaacccgttcgaccgcgacgaaggaccgagcgtgaaagcgacgcaaattggctttgggcaattaagccgcgcacaacaggtgctgggaattggctatttgtatgttgaggcgcagttacgacagatttgatggcgcgataacgtagaaaggcttcccgaaggaagccttgatgatcataaacgaaaaattgcctgatgcgctacgcttatcaggcctacacggagattgcaatatattgaatttgcaaagttttgtaggccggataaggcgttcacgccgcatccggcatgaacaacgagcacattgacagcaaatcaccgtttcgcttatgcgtaaaccgggtaacgtgcgcagatgtcgagaactttacctttgatgcgctcgataacggcttcatcattgatgctgtccagcacgtcacacatccagccagccagttctttcgcttcggcttctttaaagccgcgacgggtaatcgccggagtacctacacgaataccggaggtcacaaacgggctcttcggatcgttcggtacgctgtttttgttgacggtgatgttagcacggcccagagcggcgtctgcttctttaccggtcaggtttttatcaaccagatcaaccaggaacaggtggttatcagtgccgccggaaaccactttgtagccgcgctcgaggaacacttctaccatcgctttagcgtttttagcgacctgctgctggtaagttttgaactcaggctccatcgcttctttcagagcaaccgctttaccggcgattacgtgcatcaacggaccgccctgaccaccagggaaaacggcagagttcagttttttgtacagctcttcgctaccacctttcgccaggatcaggccgccgcgcggacccgccagggttttgtgagtggtggtagtaacaacgtgagcatgaggaaccgggttcgggtagacgccagcagcaaccaggcccgcaacgtgcgccatatcaacgaacaggtaagcaccgatgctgtcagcgatttcacgcattttcgcccagtccaccacgccggaatatgcagagaaaccaccgataatcattttcggcttgtgttctttggcttgtttttccagatcggcgtagtcgatatgaccggtagcatcgataccgtaaggaacgatgttgtacagtttaccggagaagttaaccggagaaccgtgagtcaggtgaccgccatgcgccaggttcatacccagaacggtatcacctggttccagcagcgcggtgtagaccgcaaagttagcctgggagccggagtgcggctggacgttagcgtagtcagcgccgaacagttctttcgcacgatcgatcgccagttgttcaacgatatcaacatactcgcaaccgccgtagtagcgtttgcccggataaccttcagcatatttgttggtcagctgagaaccctgcgcctgcattacgcgcgggctggtgtagttttcggaggcgatcagttcgatgtgctcttcctgacgtactttttcctgctccatagcctgccacagttcggcatcataatcggcaatgttcatttcacgctttaacatccgcatctcctgactcagctaacaataaaatttttggcctttataggcggtcctgttggacaacggcgaacagtataaccgaatcattgtgcgataacaggtcttgacaaaggaatttacgcaaacgattaccttcaggctacgcaaggctttggagaataaagagcttgcaaccggaaacggatttcttttcaggtttgtgatgcaaatttttcacttcatcacattctttctgaaaaacaccaaagaaccatttacattgcagggctattttttataagatgcatttgagatacatcaattaagatgcaaaaaaaggaagaccatatgcttgacgctcaaaccatcgctacagtaaaagccaccatccctttactggtggaaacggggccaaagttaaccgcccatttctacgaccgtatgtttactcataacccagaactcaaagaaatttttaacatgagtaaccagcgtaatggcgatcaacgtgaagccctgtttaacgctattgccgcctacgccagtaatattgaaaacctgcctgcgctgctgccagcggtagaaaaaatcgcgcagaagcacaccagcttccagatcaaaccggaacagtacaacatcgtcggtgaacacctgttggcaacgctggacgaaatgttcagcccggggcaggaagtgctggacgcgtggggtaaagcctatggtgtactggctaatgtatttatcaatcgcgaggcggaaatctataacgaaaacgccagcaaagccggtggttgggaaggtactcgcgatttccgcattgtggctaaaacaccgcgcagcgcgcttatcaccagcttcgaactggagccggtcgacggtggcgcagtggcagaataccgtccggggcaatatctcggcgtctggctgaagccggaaggtttcccacatcaggaaattcgtcagtactctttgactcgcaaaccggatggcaaaggctatcgtattgcggtgaaacgcgaagagggtgggcaggtatccaactggttgcacaatcacgccaatgttggcgatgtcgtgaaactggtcgctccggcaggtgatttctttatggctgtcgcagatgacacaccagtgacgttaatctctgccggtgttggtcaaacgccaatgctggcaatgctcgacacgctggcaaaagcaggccacacagcacaagtgaactggttccatgcggcagaaaatggcgatgttcacgcctttgccgatgaagttaaggaactggggcagtcactgccgcgctttaccgcgcacacctggtatcgtcagccgagcgaagccgatcgcgctaaaggtcagtttgatagcgaaggtctgatggatttgagcaaactggaaggtgcgttcagcgatccgacaatgcagttctatctctgcggcccggttggcttcatgcagtttaccgcgaaacagttagtggatctgggcgtgaagcaggaaaacattcattacgaatgctttggcccgcataaggtgctgtaatttgatgttgccggatggaaacatccggcaacccttgacgcggtttaaattgccgcgtcgtcctcttcaccggtacggatgcgaatgacccgtgccacgtcaaagacgaagattttaccgtcaccgattttgccggtttgcgccgtgcgaataatggtatcgacacaggtatcgacaatgtcgtccggtacgacaatctcaattttcactttcggcagaaaatccaccatatactccgcgccgcggtacagctcggtatggcctttctggcgaccaaagcctttcacttcggtcaccgtcatgccggtaataccgacttcggccagtgcttcgcggacatcgtccagcttgaagggttttataatcgcatcaatctttttcatgctattccttgaaaaggtcgcctgtcttttgatctgctaaacgtaacacataacgccaattcattccttgaaatcgtttgcatccagctcgtgtcgggaaagcagtttataaaattctgtccggttgcgccccgccattctcgccgcgtgggtgacgttgcctttggtgatttgcagcagcttacgcaaatagttgagttcaaactgattacgtgcctcaacaaaggttggcagcgccgtattttcaccctccagcgcctgctccaccagcgcatcactaatcaccggagatgaggtcagcgccacgcactgttcaatcacgttgaccaactggcgcacattacccggccagctcgcggtcatcaggcgtttcatcgcatcggtagagaacgcgcggacaaacggtttatgtcgctctgccgcctggcgcaacaggtgatttgccagtagcggaatgtcttctgtgcgctccgccagtgccggaattttcaggctgacaacgttgaggcggtaatagagatcttcgcggaattccccgcgcgccatcgcttttggcagatcacggtgagtggcagaaataatccgcacattgatatcaatatcgcggttactgcccagcgggcgcactttacgctcctgcaacacgcgcagcagtttgacctgtaacggcgcaggcatatcgccaatttcatcgagaaatagcgttccgccttccgccgcctggaataaaccttcgcgattgctgacagcgccagtaaacgcgccacgcgcatgaccaaacagctccgactccagcaattgctcgggcaatgcgccacagttaatagcaataaatggtttgctgttgcgcgggctggcgttgtggatagcctgggcgaaaatctctttcccggtgccgctctgaccgttaatcaaaacgctgacgtctgattgcgccaccagccgcgcctgttccagcaaacgcagcatcagcgggctgcgggtgacaattgcctcgcgccagcgttcatcggtggctggcgcggattgctccagcgcatcgtcaattgcctgatatagcgcgtctttgtcgacaggcttggtgaggaaactaaaaacgccctgctgtgttgcagcaacggcatcgggaatagaaccatgcgcggtaagaataattaccggcattcccggctgcactttctggatttcagcaaacagctgcataccgtccatttcatccatccgcaggtcgctgatgactaaatctactttttcgcgattcagtacccgtaatccttcagcgccactttccgccgtgaccacactgtagccttcgctggtcaggcgcaggccaagcagtttcagcaatcccggatcgtcatcgaccaataataaatgcgcaggtttatggctcatcaggagtgacctcatgggtggatggcgcgggcttttcactctcgtgcggcgtatccggcgagaaatttccagccggtttgcgggtcgagagctggcgttcaatatcggtcaggttttccagcttgcgggtggtgagttccagttgctgctgtagaacgtgatgttgctggcgcaatgtatccagctcgctgtcgctggactgctggagtttactgtaacgttggcgctcttccgccagttgcagttgcagcgcctgaccatcgcgccagagttgatacagtgggcgaacctgtgccgggatctcggtacttaacgcttcaatacgcgcgaccagctggcggcgctcatacggcgtaattttggcgtcggcgagcaaaatcccttgtttaaaggtattttgccagctgccgtcgtcatattggcgagcttgctgacgcgactgcgcaggcattaaacgatcagcacaatccatcgcccgcagccagtaaagcggattggtttcggttgatttaccttgcagcgcccagatgtcgctacattcagtagaaagatagtcagccagttgataaaccggaattttttcttctgctggcgtatcaatggctggcttattgtgattctgcacgcaacccagcaatgccagacatggcagccctgccagccacagccgtcggggcaataatcgttgaaaaatgtgtcgcatattcaccagacttaaagcctatcccagtgggcgtaattgttgcagacagtctggacatggacagcgcggagaaaccggagcgtacatatcgtacgtgaagatttcgagcactgcccggggccgaactgacaaataaaatagcctgataggataggctgttagcattatttcgtgtttttcgacgacggtaattcaatgcggaaacaaacgtcttgcccgctctcgtcgaccagatacagttccccttgcatacggcgaatacaatccctggcaatgcttaatcccagaccgctgcccttcaccgccccttttcgctggtggcttccctgaaaaaagggttcgaagatcatggcgcgttcctcttgcggaatgggcgtgcctgtattgatgacatcaatataaacccgcgcaccatgtaaactgctgcgaaggcaaatgttaccggattcagccccgtagtgcaccgcattggagtaaagattatccagtacgctcatcagcagcattggctccgccaggcaagctgttgctttgagatcgacgtcggtatgcatcattttagcccgtgcgggcaggctatgagcagaaaccactgtctccaccagcggtgctaactcaacattctccagttccaccgcactgtccgcctgtttacggttgtaatcaagcagttgttcgatcagtttttgcaaattgcggctgctgctatcaagaatgctcaccacctctttttgctctggcgtaagcggcccgacaacctggtcagccagtaattcagtgccctcgcgcatactcgccagtggcgtttttaattcatgagataaatgtcttaaaaattgatggcgttgggattccagccatgacaggcgctcacttaaccaaagaatacgttgcccaaccgagcgtaactcgctcggtccactgaacgagacgctattgcccagagaacgcccttcccccagacggttgatcatgcgctcgatatttttcaccggcccgataatcatccgcgtgaaaagcagtaccattaccagactcaccagaaatagcaccagcgattgccaaccaaaatattgcccacgttcggcgatttcacgctgaagctgctgcccacgagagaacaccactgtgcgcgtggcctgtaccatttcggtattggcactggcaaaggcttcaagacgtgcggcggcggcagcatcgggaccgctgttgttacactgaagttgagccagattgtgcaaatcctgacgtaatgcctggtagagtttatcgtccggcagcacgcctgcgtgggcatcgagcatttcgctgtaacgcttgcgctggctttgataaaccttcgccagggttgggtcgtccagcacgcaatactgacggtaactacgctccatctccagcgccgcgttggtcatcgcttcactgcgccgggcatcaataagcgtagtgcggttaaccagcgccgcctgatcgctaagcgcattcaggctttgccaggcttgccatgccagcaccaacaggggcagcagaatcagcaaaaatgccagcattaccagttgtcgtaatgagcggggaaaaacgggccagcgtttcaaggtgttactctcgtcagacgcgaatagcctgatgctaaccgaggggaagttcagatacaacaaagccgggaattacccggctttgttatggaataaggcggtgcctaactcgacgtttcgcccgatggttgatatagctacgctgatatcagaagttggacggcaggcaccttgttgtgcgtcattcgtattttatgtagcacgtcccgaaggggctgacataagtcggtgaatgagccactggttactattatgcagtaactgtgccaataaagaaaatagtttggtaacgtactgattatacgttgctttgaggggtttatgtctcctccgctgtttgaatgtaaatcagccactgtgtcgctaaaaagagacaacttaagataaacttattagataatattaaaatcaatgagttaagtgtcgccagaaagcgacacggcaaaccacccattgtcgtgatttacagacacaaaaaagctcccggagttgggagcttatgatagtggttggtgcttaatgccgcatccgggctgcaaaaccaatgggctgacgacttaccccaactgcttacgcgcattgcggaaaatgcgcatccatgggccatcctcgccccagttttccggatgccaggagttgctgacagtacggaaaacacgttccgggtgcggcatcataatggtgactcgaccactttcagtcgtgactgccgtaataccgttcggtgaaccgttcgggttagccgggtaggtttcagtgactttgccgaagttatcgacatagcgcagtgccaccagccctttgctttccagtgccgccagatgcgccgcatcacgcacttccacgcgcccttcaccatgagagacagcaatcggcatttgcgagcccaccatcccctgcaacagcagagacgggctttgggttacttcaaccaggctgaaacgcgcttcaaagcgatcggaggtattgcgcacaaaacgtggccacaactcactacctgggatcagttcacgcagattagacatcatctggcaaccgttacatacccccagcgccagcgtttgcggacggtggaagaaggttgcaaactcatcgcgtacacggtcattgaacaggattgacttcgcccaaccttcaccggcacccagcacatcaccgtaggagaaaccaccgcacgcgaccagggcgtggaaatcttccaggcccgtgcgtccggtcagcaggtcactcatatgcacgtcgatagcatcaaagcctgcacggtggaaagctgccgccatttcaacatgcgagttcacgccctgctcacgcagtacggcaactttcggacgtgcgccagtggcaatatacggtgctgccacatcttcgttgatatcgaacgacagttttacattcaggcccggatcggcgtcgttagatttcgcctgatgctcctgatcggcacactccgggttgtcacgcaggcgctgcatctgccaggtagtttctgcccaccagacacgcaacgtggtgcggctttcgctgaatacagtctgcccgttggcggtaatcacaaaacggtcaccggaaaccgcctgccctacataatggacacaatcagcaagcccatgctgtgccagtacggactcgaccgcttcacggtcagcggcacgaacctgaatcaccgcacccagttcttcgttaaacaacgccgccaggcgatcgtcacccagagtggcgatatccgcgtcaatgccacaatgaccagcaaaggccatttccgccagcgttaccagcaggccgccatcagagcggtcgtgatacgccagcagcttacgctgtgcaaccagcgcctgaatcgcgtcatagaagcctttcagttgcgcgacatcgcgtacatctgccggtttgtcgccaagctgacgaaaaacctgcgccagcgccgttgcgcccagcgcgttattgcctttgcccaaatcaatcagcagcagtgcgttatcttcggtagaaagctgcggcgtgatggtgtgacgtacatcttccacgcgggcaaatgcagaaatcaccagcgacagcggcgacgtcatttcgcgctcttcgttaccttcctgccagcgggttttcatcgacatggagtctttacccaccgggatcgtcaggcccagcgccggacaaagctcttcgcccacggctttaacggcttcatacaggcccgcatcttcaccagggtggcctgccgccgccatccagttggcggaaagtttgatgcgtttgatatcgccaatttgtgttgcggcgatgttggttaacgcttcaccgaccgccagacgggcagaggcggcgaaatccagcagcgcaaccggcgcacgctcgccaatcgccatcgcttcaccgtagtagctgtcgaggctggcggtagtgaccgcgcagttagcgaccggcacctgccacggccccaccatctgatcgcgcgctaccatgccggttacgctgcggtcgccaatggtcaccaggaaggttttttccgccacagtcggcagatgcagcacacgtttcaccgcgtctgcaatggtgatcccttcacgggccagcgcgtcgcctttcgctttcagcgtttgtacatcgcgggtcatcttcggcgttttaccaagcaggacgtccagcggcagatcgatcggctgattatcaaaatgacgatcgtgcagagaaagatgcagttcttcggtcgcttcaccaatcaccgcgtagggtgcgcgctcacgcttacacagttcgtcaaacagcggtaattgatcggcagcaaccgccagcacgtagcgttcctgggattcgttacaccagatttccagcgggctcatgcccggttcgtcgcttagaatctcgcgcagttcaaatttaccgccgcgcccgccgtcgctcaccagttccggcatggcgttagaaagaccgccagcgccaacgtcgtggataaacaggattgggttggcatcaccaagctgccagcaacggtcgatcacttcctggcagcgacgctccatctccgggttgtcgcgctgtacggaagcaaagtcgaggtcggcatcagactgaccagacgccatagaagacgctgcaccaccgccaagaccgatgttcattgccgggccgccgagaacgaccagcttcgcaccgacgttgatctcgcctttttgtacgtgatcggcgcgaatgttgccgatcccgcccgccagcatgatcggtttgtgataaccgcgcagctcttcgccgttgtggctgttcactttttcttcataagtacggaagtagccgttcagtgccggacgaccaaattcgttgttaaacgccgcgccgcccagcgggccttcggtcatgatgtccagcgcggtgacaatgcgctcaggcttaccgaaatcttcttcccacggctgttcgaagccaggaattcgcaggttggaaacggagaaaccaaccagacccgctttcggctttgcgccgcgcccggtggcaccttcatcgcggatttcaccgccggaaccggtcgccgcgcccggccacggagaaatcgccgtcgggtggttgtgagtttcgactttcatcagaatatgcgccggttcctgatggaaatcgtagcggcccgtttcgtggtcagcaaagtagcggcccacttcagaaccttccattacggcggcgttatctttataagcagagagaacgtgatctggcgtggtttcgaaagtatttttgatcatcttgaacagcgatttcggctgctgttcaccatcgataacccagtcggcgttaaaaattttgtggcggcagtgctcggagttcgcctgggcaaacatatacagttcgatgtcgttcgggttacgaccaagctttgtgaaagcatcctgcagatagtcaatttcatcttccgccagagccaagccaagacgcaggttagcgtcgatcagcgcctgacggccctgccccagcaaatcaacgctggtaaccggagtcggttgatggtgggcaaacaactgctctgcatcatctaaagcaaaaaagaccgtttccatcatgcggtcgtgcagttcagcggtaacctgctgccattgttcattggtcagcgtaccggcttctatatagtaagcaacgccgcgctcaaggcggtttacctgttgtagcccgcagttatgggcaatatcggtcgctttcgaagaccagggagagatggtgccaggacgcggggtcaccagcaggagtttgccttgcggggcgtggctggcgagtgccgggccatatttcagcaggcgttcaagttgtgcgtgctcatcatcgtttaacggcgcattgaggtcagcaaaatggacatactcggcgtaaatattgtgaaccgggagcctggcagcctgaaaacgtgccagcagtttgttgattcggaatgccgacagtgcaggcgaaccacgcagaatttccatcataagtctctcgtcttctaagctttcggtgtacccaagggggggaaacgggcgtcattataaagaatctgatgcgctgacgaaaccgtttgcgtggaaataaaatcaccatcgtgaattagcaacgcgtgccgccaatggctgtaataagttgccatctggcgcaggtttacgcaaaatgccgctcatttatgagtaaacctttcactattattacgttttttcaagctgggacgcgcacgacacagagaattaactaattgaaaaaattaaagattaattatctgttcatcggcattctggcactgctgctcgcggtcgctctctggccatccattccctggtttggtaaagccgacaaccgtatcgccgccattcaagcgcggggagagttgcgtgtgagcaccattcatactcccctgacttataacgaaatcaacgggaaaccttttggcctggattacgaactggcgaaacagtttgccgattacctcggcgtaaaactgaaagtgaccgtgcggcagaatatcagccagctgtttgacgaccttgataatggtaacgccgacctgctggcggcaggacttgtctataacagtgagcgggtaaaaaattatcagcctggccctacctattattccgtgtcacaacaactggtttataaagtgggtcagtatcgcccacgtacgctgggcaacctgacggcggagcaactcaccgttgcaccgggtcatgtggtggttaacgatctccagaccctgaaagaaacaaaattcccggaattaagctggaaggtagacgacaaaaaaggctctgcggaattaatggaagatgtcatcgaaggaaaactcgattacaccattgctgattctgtcgccatcagcctgtttcagcgcgttcacccggagctcgccgtagcgctcgatatcaccgatgaacaaccggtgacttggtttagcccgttagatggcgataataccctttccgccgccctgctcgacttcttcaacgaaatgaatgaagacggtacgctggcacgcattgaagagaaatacctggggcatggcgatgattttgattacgtcgatacgcgcacatttttacgcgccgtcgatgcggtactgccgcagttaaagcccctgtttgagaaatacgccgaagaaattgactggcgtttgctggccgctattgcttatcaggaatcgcactgggatgcacaggccacttcaccgacgggtgtgcgcggcatgatgatgttaaccaaaaataccgcgcaaagcctcggcattacggatcgtaccgatgccgaacagagcatcagcggtggcgtgcgttatttgcaggatatgatgagtaaagtgccggaaagtgtgccggagaacgagcggatctggtttgccctcgctgcgtacaatatgggctatgcgcatatgctggatgcccgcgccctgacggcaaaaaccaaagggaatcctgacagttgggctgacgtaaaacagcgtctgcctttacttagccagaaaccctattacagcaagctgacttacggctacgctcgtggacatgaagcctacgcttatgtcgaaaatattcgtaagtatcagattagcctggtgggttatctgcaagagaaagagaagcaggctacagaagcggcgatgcaactggcgcaggattatccggcggtatcgcctacggagttgggcaaagagaaatttccttttctctcgtttctttcccagtcgtcatcaaactatttgacccattctccctctctgctgttttccaggaaagggagtgaagagaaacaaaattaatccgtcgaggattgcgcttttttctgcgctttaatttcctggcggcgcatgcgaaagaagtcactgagcaacgccgcgcactcatccgccagtattccttccgtaatttccactcggtgattcatacccggatgatgcagcacatccattaaagatcccgcagcgccagttttcgcgtcacgcgcaccaaagaccacgcgaccaatgcgactgtggatcatcgctccggcacacattacacatggttcaagcgtgacatacaacgtggcgtcgatcagacgataattttgcatcaccagaccaccctgccgcagggccatgatttctgcatgtgcggtgggatcatggcgaccaatcgggcggttccagccttcgccgattacccgattgttatgcactaataccgcgccgaccggcacttcccgctcatcccaggcacgtttcgccagcgtcagcgcgtgacgcatccagtattcgtggctaaattcgacttcagacaaaaagaaaactccggttataaaagcgcggcgcattatacacggacgctatgctttactctattccagttgctggagttcaccgcgcggggttactcgccaacgatgctgacagaaataaagcagcggattgtcctgattactgtcgctatagccactgtacagccgcagcggagtgccgattttgcgctccagttgtgcgaccttttcatgtcccagacaacgcatcgtcaatacccaaccaccatagccacgctgaatttggctggcgataagattaacccgcggcagccagggcgtatcgaaataaaccgcttcaaccagcggctgcggagagccggtaatcaaccagatatcagcatcggaacttaacaggtaggtggttaatcgctcctgaaccagcggaaaggcggtaacattgtcgcgaaaccagcgcacgaaatcggcctgcaacgtctgtaaacgtgcttcgctgtgaccaaaagtgcacccccacagaagcagactcatcggccagcgtgccgcacgaccttttatcaataacgcaatggctataatcggtaacaacggcaggacaagtaacgcattcagcggttggcgacgtagtaaatagcgcagaaaactgccgaacatatcctgctgatgcaatgttccatctaagtcaaaaaacaccacacgacgctcgtgagttgccaaaccatactcctctggactgaaacatcctgattaattttcgctactacatagcctaacagatagatcatcacttttccggcaacaatcgaccgcatcatggctaactggaatttttaattcatggcaattagcggcaatggaatataaaattcactcgcgtgtgtctcatattgcctgttgtcgccactatttcatcgcgaggaaagatatgaacggcttacttcgtatccgtcagcgttaccaggggcttgcccagagtgataaaaaactggcggattatctgctgctacaacctgatacggcgcgccatttaagctctcagcaactggccaacgaagccggagtcagtcagtccagcgtcgtgaagttcgcgcaaaaactcggctataaaggttttccggcgcttaagttggcgttgagtgaagcgctggcaagccagccggaatcaccctccgtgcccattcataaccaaatccgcggtgatgatccgttacggctggtcggcgaaaaactgattaaagaaaatactgccgctatgtacgcaacgctaaacgttaatagtgaagagaaactgcatgaatgcgtaacaatgttgcgctctgcgcggcggataattctgaccggtattggcgcttcgggtctggtggcgcaaaactttgcctggaagctgatgaagattggcttcaatgctgccgcagtgcgcgatatgcatgcgctactcgcaacagtacaggcgtcgtcccctgacgatctgttattagccatttcctacaccggtgtacgacgcgagttaaacctggcggcagatgagatgctgcgagtgggcggaaaagtgctggcgattaccggctttactccgaatgccctgcaacagcgtgcttctcattgcctgtataccattgccgaagaacaagcgacaaacagtgcttcaatctctgcttgtcacgctcagggaatgttaacggatttgctgttcattgcgctgattcagcaggatctggaactggcaccagaacgtattcgtcatagtgaagcgctggtgaaaaaactggtctgagtaaagaatgcgcgtataatgcccgcccggtttgtgttgttttgagagtttccttatggcgttgttaatcactaaaaaatgcatcaattgtgatatgtgtgaacccgaatgcccgaatgaggcgatttcaatgggagatcatatctacgagattaacagcgataagtgtaccgaatgcgtagggcactacgagacaccaacctgccagaaggtgtgcccgatccccaatactattgtgaaagatccggcgcatgtcgagacagaagaacagttgtgggataaatttgtgctgatgcaccacgcggataaaatttaatattctactctggaagtagagtattaattatattactgggaagccttaacgccattatatttatttaattgatgacattagcataatcattcactaagttaatttatatagtatctgcccagacacttatttatagttattaaaggtgcgtccgactggttcaccggacgcaccttaagtacgtttccttgtgttataagaacagaaggatcagctgtaaaacagcaatgatgattttgatgacccgtttaatcaggtatcggcaatcagtcattcgtttttccttaaacaaggaatgcagccattcagattagcccttacatctccccaaaactgaacgtgcgagttattgagggtgcatgctgcactccacaccagagctttgacgacaccactcgtttcaatgggggaattctgtggcatggtgtaaagcacagcaaaatcttcaataacgaagccaattttaatgtacttacgaattggcggtcacgttaatctttccatcaatattgctttcttcgtaaaggctcgagtttttatgctaaagattgcaagttgcttgtaaaagataagtacactgatccataatcgctgttgttgagggtgcatgctgcacaaaattaaagttaaaaagtaaaacccccgttccttaccagttcgggggttttactttttaaagagaacggtattatttttaactttcaataattaccgtggcacaagcatagtgccgctcatctgccagcgttacatgcatatttgcaacgcccagcttttccgccagttttaatgcctcgccccatagccgtagccgtggtttgccgagctcatcattgaatacttcaaattgattaaacgccagaccattgcggatcccggtgccaaacgcttttgctgcggcttctttcacagcaaaacgcttcgccagaaaacgcaccggctggtggtgcgttttccagatagcccattcgttatcgcttaatacgcggcgtgccaggcgatcaccggatcgggcgatcaccgcttcgatgcgagcgatctccacaatatccgtgcctaaacctaatattgccattagccacgcgcttccagcatcagacgcttcatttctgccaccgcatctttcagtccggtcatcactgcacgaccaataatggcatgaccgatattcagttcatgcatctcagggatggcggcaatggctttcacgttgtgataggtcagaccgtgtccggcgttaactttcagaccgaggcttgcggcaaaggtcgcggctttggcgatacgcgccagctcttgcgcctgttcggcgtcagttttggcatcagcatagcaaccggtgtggatctcgataaacggtgcgccaacctctgccgcagctttgatctgctcttcatcggcgtcaataaacagagaaacctgaatcccggcatctgccagacgtttgcaggcatcgcgcattttgtcacgctgccctgcgacatccaggccgccttcggttgttacttcctgacgcttttccggtaccaggcagcaaaaatgtggcttcgtctcaacggcgatcgccagcatctcttcggtcaccgccatctccagattcatgcgggtatccagcgtctgacgcaggatgcgcacgtcgcggtcagtaatgtgacggcgatcttcacgtaaatgcacggtaatgccgtccgctcccgcctgctcggcaataaacgcggcctgcaccggatccgggtaagcggtaccgcgcgcgttgcgcagcgtagcgatatggtcaatgttgacgcctaacagtaattcagccatgacaatcctcatcattcataatgtgttttcaccgttcgcttaggcataaactgccggaacagttccctgctctttaaaggtttaccgccaagatacggcttaagcgccatgcgggtaaagcgtttcgcggcgcgcagtgtgtctgcgtcaggaaattcccgtgcgtttaacgcttttaactgccttccggtgaacgttttattgtcgataacgacgcttgcgataaaccctttttcttcgcgataacgatacgtcatggtgtcatctaccggctcgccgctacccgcacaatgggtaaaattgacgccataacccagatgcccgagcagtgccagttcaaagcggcgcagcgcgggttctggcgtaccagtgacccctgcaagagactgaatgcagtgcaagtaatcgaaaaaaagttcagagaagcgcgtctcgtattccagtacgcgggagagaagttcgttgatgtacagaccgctgtaaagcgtgataccgcttaatggcagcgccagcgagacggcttcagcactgcgcagcgttttgacttcgccacgcccgccaaaacgtagcaagagaggggtgaaaggctgtaatgcacctttcagggtagagcgtttagagcgtgcgcctttgcaaccagacgcacgcgccccgattcctccgtgaagacgtccagcatcaggctggtttcgctccacggcgactatgcaggacaaatgcgcgctgccagccttccatcggagttactcttaaagatcgtcaacgtaaccgagactgcgcagtgcgcgttcgtcgtcggcccaaccggatttcacttttacccacagttcaaggtgaacaggcgcttcgaacatttcctgcatgtctttacgcgcttcaatcccgatggttttgatcttggcccctttgttgccaatgaccatcttcttctgcccttcacgctcaacgagaatcaaaccgttgatgtcataaccaccgcgttcgttagagacgaaacgttcgatctccacggtcacggagtacggcagttcagcgccgaggaaacgcatcagtttttcgcggatgatttcagacgccataaaacgctgtgagcgatcggtgatgtaatcttccgggaagtgatgagtcgcttcaggtagatgcttacgcacgattgccgcaatagtgtcaacattcagcccggtttcggcagagattggcacgatatcgaggaagttcatctggcttgccaggaactgcaggtgcggcagcagatcggctttctcctgcacgttgtccactttgttcaccgcgaggattaccggcgctttgccttcgcgcagtttgttgagcaccatttcgtcgtccggcgtccagcgggtgccttcaacgacaaaaatcaccagctcaacatcgccaatagagctgctcgccgctttgttcatcaggcggttaatggcgcgtttttcttccatatgcaggcccggtgtatcgacgtagatcgcctgatacgcgccttcagtatggatccccacaatgcggtgacgagttgtctgcgccttgcgggaagtgatggagattttctgccccagcagtttgttcaacaatgtggatttgccaacgttcggacgtccgacgatggcaataaatccgcagtaacttttatcgatgctcattccagctccagttttttcaacgcctgttcggcggcagcctgctcagccttacgacggcttgaacctgtgccaaccaccggttcactcaggccgctgacctggcagtggatagtaaattcctgatcgtgcgcttcgccacgtacctggactaccagataagtcggcagcggcagatggcgaccctgcaaatattcttgcaagcgcgttttcggatctttttgtttatcgcctgggctaatttcgtccaaacgagtttgataccagttgaggattaatttctcgacggtttgaatatcactgtcgaggaatacgccaccaattaatgcttcgacggtgtcggcgagaattgactcacgacgaaatccaccgcttttaagttcacctggccctaaacgtaagcactcgcctaactcaaattcgcgcgccagttccgccagcgtattgccacggaccagcgtggcgcgcatccggctcatatcgccttcatccacacgagggaaacggtgataaagcgcattggcgataacgtagctcagaatagagtcgcctaaaaattctaaacgctcgttatgtttactgctggcactacgatgagttaatgcctgctgcaacagttcctgatgattaaaagtgtagcccagcttccgttgaagccgattaattacgatggggttcatgcgataccaataaataaatgcgtcaacaattcagcacacgaaacagacctgatatacatggttctgctaactgcttcgctgcagtttcagtttaccggtatatggggaccaacgctgtttcgtgtgccgtggcaacctggaggtgccaaccttaaacttcgggggaatattctatacacaacgacgggggatgtcgttagccacgggagatttatctcataaataattcacgttgtcgccataacggcgacaacgtgaacgaagatggctattaatggatgccgccaatgcgacttaagcgcagaccagtcggccattcgccttcttgcttatcgaagctcatccagatagccgttgcccgaccgaccagattcgcttccggcacaaagccccagtaacggctgtccgcgctgttgtcgcggttgtcgcccatcatgaagtattgtcccggaggaacaatccaggttgccagttgttgccctggctgctggtaatacatccccacctgatcctgcgcaatcggcactgtcagaatgcggtgcgtcacatcacccagtgtctctttacgctcggaaagacgaattccattttctttggtttcgtttttcggcacttcaaagaatccgctggtcgcttccccaccattacggcgtgagaaggtctgaacgaaatcgctcggttccacgtttgagtaggtgaccggcagcgcgttttcacacgcctggccggaactgcatcccggttgaatcgtcagctcttttgagaccggatcgtaagtgactttatcgcccggtaaacccaccgcgcgcttgatgtaatcaagctttggatcttccggatatttaaagaccacgatatcgccgcgtttcggatgaccggtttcgatcagcgttttctggtagataggatctttaatgccataagcaaacttctctaccagaataaaatcaccaattaacagagtcggcatcatcgaacctgacgggatctggaacggttcataaataaacgaacgcacaatcaatacgatagccagtaccggaaaaacagaagcaccggtttccagccagccaggcttcggcgcaacctttttcaacgttgctttatccagtgagtccccggcagccgcctgcgccgctgcctgacgttcccgccgtttaggtgcgaaaaagaatttatccacgcaccataaaatgcccgtcaccagtgtggcaatcaccagaatcagggcaaacatattcgccatgccaactcctaagggttatttgttgtctttgccgacgtgcagaatggcgaggaacgcttcctgcggcagctcgacgttaccgatctgcttcatgcgtttcttaccttctttctgcttctgcagcagctttttcttacggctgatatcgccgccataacatttagccagtacgtttttacgcagctgtttcacggtggatcgcgcaatgatgtgcgtaccaatcgctgcctgaatggcgatatcaaactgctggcgtgggatcagatctttcatcttctccaccaactcgcgaccgcggttttgcgaattatcacggtgggtgatcaacgccagcgcatcaacacgttcaccgttgattaatacgtctacacgtaccatgtcggacgcctggaagcgcttgaagttgtaatccagagacgcataaccacgcgaggtagatttcaggcgatcgaagaagtcgagcaccacttccgccatcgggatctcgtacgtcagcgccacctgattaccgtggtaaaccatattggtctgcacgccgcgtttttctacgcacaacgtaataacgttgccgagatatgcctgcggcagcagcatgtgacactctgcaatcggctcgcgcagttcgtagatgttatttaccgcaggcagcttggatgggctgtcgacgtagataacttctcttgacgtggtttcaacttcatacactacggtcggcgcagtggtgatcagatccagatcgtattcacgttccagacgttcctggatgatctccatgtgcagcaggccgaggaagccgcagcggaaaccaaagcccagcgcgctggagctttccggctcatagaacagtgaggcatcgttcaggctgagtttacccagcgcgtcacggaaggcttcatagtcgtcggaacttaccgggaacagaccggcgtatacctgcggtttgactttcttaaagccaggcagcgccttttctgccggattacgcgccagcgttaaggtatcgccgactggagcgccgtggatatctttaatcgcacatacgagccagcctacttcgccacatttcagttcagtgcggtcaacctgtttcggcgtgaagatgcccagacggtcggcgttataggtctgcccggtactcatgactttcactttgtcgcccttacgcagggtgccgtttttaatacggataagtgaaacaacgcccaggtagttgtcgaaccatgagtcgataattagtgcctgcaacgggccttccggatcgccttccggcggcggaatgtcgcgcaccagacgttcgagaacgtcctgcacaccaacgccggttttcgctgaacagcgcaccgcgtcggtggcgtcgatgccgacgatatcttcaatttcttccgccacgcgttcaggatcggctgccggcaggtcaatcttgttcagtaccggcacaacttcgagatccatttccatggcggtgtagcagtttgccagggtttgcgcttctacgccctgcccggcgtcgaccaccagcaatgcaccttcacaggcagccagcgaacgggaaacttcataggagaagtctacgtggcccggggtgtcgataaagttaagctgataggtttcgccgtcagacgctttgtagtccagcgtcacgctttgcgctttgatggtaatgccacgctcacgctcaagatccatggaatcgagaacctgcgcctccatttcacggtcagacaggccaccgcagatctggataatacggtcagacagcgtcgatttaccgtggtcaatgtgagctatgatcgaaaagttacgtatattcttcataaagtatgattattgtgccttaatgcccggttaaccaggcttttagaagtcgctgttctgagcttaacgtctgtattaatagaaacgccgcattctacactacaacattgaggcgaggaaatgttcataccgtatggattgtggtatctggaaacgtcctcgcatttgttatgcaaaatgcaacaaagccagtgaaatcactggctcgcgtcttccgaagatgtttcaaatcgcacaaggccaggcggcaatgccacgcttaagatgatcggttgccattctgcccgggcagcaaacttacgcgagtagccgcgcgcaatcaggaacccgccaataccaccgaggatcgcaccacataatgctgcgacgtcagaagcaaagagtagctgaaatagcgaagcgataaggaataatcccaccagcggcgacatataaaccagtaatgcggagctaagcaggctgccttcggcgatccccaattccactttttgccccggcactaacggctcatcacagggtacgacaatggtatgcgtggtttgcgggccaagtttatttaacacgcggctaccgcaaccggcgcgtgaagcgcagctgctgcatgaagctttaacatcacaactgaccagcgcctgcccgttttgccaggagacgacggtagcccactctttgatcattgcgctgccccgaacttaatattctcggcaatgcgtttcgccgtttgcggcggcagttcaccgacaatggtgatttcggcgttatcacgtacgcttgtactgacggttctgcgtccggtgcgcaacatctgatcggtgctcgatggcgtagcgcggttaacgtttaccgagaagctgaataatccgtcggaatagagacgtgattcgataggcatgttgtccatcgtcggtagcggacgtcgactactggaaacttcgctaaaaccctgtggcaaccaggttggcgtccagctgaatttagctttttcacctacaggaacagaaagcaacggcggcaaatttgccttcgccagcgtctgcatactgctgctgatatcctgattgacgttaaaagcaatcacgcgaaattgttccagcgtttcaccatcgcgatcaaggagatcaacccgcatcggtaatttcgattcggtgtccatccacacgatgtagctgtagcgtgtaccatctcgggcaaccacgcgaatgacttcgcaaagacgatcagcaatacgcgtgcgcccgacggagataaagtcgtagtaaggagaaaggcgtttgaaatcggtatagataagcgatggcagagaatcaacaatgtaatcgccattaagcgtgaacggttcaagtcccggttcaaaatagctgatttcattgccgcgctgtaccacttcccggcgcgggccatccatttgcaacaattgtgcaagaggacggttatcgaggcgtgcatgtcgataacgcagagactcaacaccctgtttattgatgctgatgaatgacagctcgtaattcagtgactgactggccaggttcatctgctgtaataacgccccggacgcgggagtggccgaggcgttagcagagaataacaggctacctgtcactaatgacatggcaaaccaaagttgcttcattactgcgattgcgttcctaaagtttgaattcctggcacctgtacagcggcttgctgggtttgcgcctgctcaaactgaagctgttcagagtggagtcggcgttgcagttcgtaatcctgcaacattgcattaatgcgacgacgctgctcctgtacctgctgctgttgaccattgtttgcggtcgcttcagaaggtactcccaggcttaccgggctggctttacccatcatcggcagtgtattaaataccggcgtttcgggctgctgggacgtttcagattgtccattatagtgctggacgccaacgataactgcaagcgatacgcatgcggctacgcccatttgggtaagctgtgccgcccacggacgtactttctgccagaatggcattttctgccattgatgcggcgcaggctgggcttccgggatcaatgtcgccggttgacgtactggctcttcttcaatggcggccatcacgcgtgaagagatatcgaaatggagcacctcgggagtatcaccccgcattgagtcacggattaagtgatagctttcccaggttttctgcatttctgggttatgagccagttcgttaagcagctcactatccagcgtttcgccatccattaaagcggaaagttgttctttctgcatgcctaatacccttatccagtatcccgctatcgtcaacgcctgataagcggttgaactttgttatcaatagcttccctcgctcggaagatacgtgaacgcaccgtacctaccggacaatccatgatagcggctatctcttcatagctcaggccatccagctcccgcaaggttattgccatgcgtaaatcttccgggagggactcaatagttcggaaaactatctgtctcagttcttctgacaacattaagttctcagggttcgaaatttctttcaacgcgccgccactttcgaagttttcagcttcaatggcatccacatcactggaaggtggacgacgcccctgagcaaccaggtaatttttcgctgtatttacagcaatccgatacagccatgtataaaaagcgctatctccccggaacgaatccagcgcacgataggctttaataaaagcttcttgtaccacatcgggaacatcacccgacggcacatagcgggaaaccagactcgccactttatgctgatagcgcactaccagtaagttaaaggctttctgatctcccttctggacccgttcaaccaggacctggtccgttaactgctcgctcatccgaggtaaagtctccccaaaccaaatttccacgcgctatcgaaacgccactccattagctgcaatttgagcaagcaaagggttagagtgtctcgtttttgtaaagttccgtaacgcatctgtttttgtttgtcatgctgtagacggatcattatctatcattataagtctacagaatctgaacatcgcattatctgtgtagaaatgcccatttaactgcctgaagagtaacccaacggcctttttatttcaccacctaatcctccaccagccagtaacttctctttttctcgccgccctgcgtcagcgtgtttagcaactgtaacaaatattaaaatagcaggtgtttatccgcacaacatgatgctatgctgaccaaaccatgtttagtaaattaaacaaagaaaatgaatactctccctgaacattcatgtgacgtgttgattatcggtagcggcgcagccggactttcactggcgctacgcctggctgaccagcatcaggtcatcgttctaagtaaaggcccggtaacggaaggttcaacattttatgcccagggcggtattgccgccgtgtttgatgaaactgacagcattgactcgcatgtggaagacacattgattgccggggctggtatttgcgatcgccatgcagttgaatttgtcgccagcaatgcacgatcctgtgtgcaatggctaatcgaccagggggtgttgtttgatacccacattcaaccgaatggcgaagaaagttaccatctgacccgtgaaggtggacatagtcaccgtcgtattcttcatgccgccgacgccaccggtagagaagtagaaaccacgctggtgagcaaggcgctgaaccatccgaatattcgcgtgctggagcgcagcaacgcggttgatctgattgtttctgacaaaattggcctgccgggcacgcgacgggttgttggcgcgtgggtatggaaccgtaataaagaaacggtggaaacctgccacgcaaaagcggtggtgctggcaaccggcggtgcgtcgaaggtttatcagtacaccaccaatccggatatttcttctggcgatggcattgctatggcgtggcgcgcaggctgccgggttgccaatctcgaatttaatcagttccaccctaccgcgctatatcacccacaggcacgcaatttcctgttaacagaagcactgcgcggcgaaggcgcttatctcaagcgcccggatggtacgcgttttatgcccgattttgatgagcgcggcgaactggccccgcgcgatattgtcgcccgcgccattgaccatgaaatgaaacgcctcggcgcagattgtatgttccttgatatcagccataagcccgccgattttattcgccagcatttcccgatgatttatgaaaagctgctcgggctggggattgatctcacacaagaaccggtaccgattgtgcctgctgcacattatacctgcggtggtgtaatggttgatgatcatgggcgtacggacgtcgagggcttgtatgccattggcgaggtgagttataccggcttacacggcgctaaccgcatggcctcgaattcattgctggagtgtctggtctatggctggtcggcggcggaagatatcaccagacgtatgccttatgcccacgacatcagtacgttaccgccgtgggatgaaagccgcgttgagaaccctgacgaacgggtagtaattcagcataactggcacgagctacgtctgtttatgtgggattacgttggcattgtgcgcacaacgaagcgcctggaacgcgccctgcggcggataaccatgctccaacaagaaatagacgaatattacgcccatttccgcgtctcaaataatttgctggagctgcgtaatctggtacaggttgccgagttgattgttcgctgtgcaatgatgcgtaaagagagtcgggggttgcatttcacgctggattatccggaactgctcacccattccggtccgtcgatcctttcccccggcaatcattacataaacagataaaaagcctgggtcagcgccgtatacgcttcggaatagttctggtctggcccacgaatgactaagcgatcgctaaagcattctcccgcctgcggggagaatgccagcagcacccgatgcggcagtcgcgcttcgttttccgccacatccgtccgcaaacgtaaatgccagcccatgcttaatgccagctccgtaaaaccattaccaatctgctctggcagcactacgcagaaaaatccctcttcggtaatgcactccgccgcacaggtcagcaacgatgggtgatcaagcgtagtggtatagcgagcctgttcccgttgaggtgtcgagcactctactccctgctgatagtaaggtgggttactgatgattaaatcgaagcgtactgtctgctgtgtgatccactgctgaatatccgccgtatggacgttaatccgctctgcccacggggactggttgatattttcctgcgcctgcgcggcagcttcactttccagttcaactgcatcaatcatcacgctgtcatcggttcgctgcgccagcattaatgccagcaacccgctacccgcgccgatatcaaggcaacgttttaccccagccaccggtgcccatgcgcccaataaaataccatccgttcccactttcatcgcacagcgatcgtgagcaacaaaaaactgtttaaaagtaaatccattacgacgaagcacggatgtagactgtgacatgaaaataaaaccttgcaggaaaaacggcgatagcaccgggtgagaacaatacccgagaagcgatatccatacaaacagatgaagattgcagccgtaacgtctataatcagcgccccacacagaggtagaacatgactgtaacgactttttccgaacttgaactcgacgaaagcctgctggaagccctccaggataaaggtttcactcgcccgaccgccattcaggctgccgccattccgcctgcgctcgatggccgtgatgtactcggttctgcgccgacaggcaccggtaaaacggcggcgtatctgctgccagcgttgcagcacctgctcgatttcccgcgtaagaaatccggtccgccgcgtattttgatcctcaccccaactcgcgagctggcgatgcaggtgtccgatcatgcccgcgaactggcgaaacatacgcatctggatatcgccaccatcaccggcggcgtagcctatatgaaccacgcggaagtgttcagcgaaaatcaggacatcgtggtcgccacgaccggacgtctgctgcaatacataaaagaagagaacttcgattgccgcgcggttgaaacgctgatcctcgacgaagcagaccgtatgctggatatgggcttcgctcaggatatcgaacatattgctggcgaaacgcgctggcgtaaacagaccctgctcttttcggcaacgctggaaggcgatgcgattcaggactttgccgagcgtctgctggaagatccggtggaagtttctgccaatccctccacccgtgagcgcaaaaaaattcatcagtggtattaccgcgccgatgatcttgagcataaaaccgcgttgctggtgcatctgttaaaacagccggaagcgacccgctcaattgtgtttgtgcgtaagcgtgagcgtgtgcatgagctggcaaactggctgcgcgaagcgggcatcaacaactgctatctcgaaggtgagatggtacagggcaagcgtaacgaagcgatcaagcgtttgaccgaaggtcgcgtaaacgtactggtcgcaaccgatgttgccgcgcgcggtatcgacattcctgacgtcagccacgtctttaacttcgatatgccgcgcagtggcgatacttatttgcaccgtatcggacgtaccgcgcgcgccggtcgtaaaggcaccgcaatttcgctggtggaagcccatgaccatctgctgctgggtaaagtaggccgctatattgaagagccaattaaagctcgcgttattgatgagttacgcccgaaaacgcgtgcgccaagcgaaaagcagaccggcaagccatcgaagaaagtactggctaaacgtgctgagaagaaaaaagctaaagagaaagagaagccgcgggtgaaaaaacgccatcgcgacaccaaaaatattggtaagcgccgtaaaccaagcggaacgggcgtgccaccgcaaacgacagaagagtaatctcaatgccaggtttaagcctggtattaaaagtgctggcaaacgcaaaactgcctgatgcgctacgcttatcaggcctacgtggctcatgcaatatattgaatttgcacgatcttgtaggccggataaggcgttcacgccgcatccggcatgaataaagcgcactttgtcgacaagttaaatgccgggtttaatcccgacattatttttatccagccacaaaactctcttcaacacactgaataaaagtgtgcatcgccgggctaaccgcttttccagcatgatgtgcgcacatggccgtaatggtctgcgactgttcgccaaaaggcaattcaattaattctccgcactccaactcttttgccaccgcaaagcgcggtaggtagctgaccccgatattcgccgcgacacaacgcttgatgctttcgatacttataagctcaatggtgttttccaccgtgatccgccgctgacgcagcgtgctctcaaatatctgccggaagacacattgcggttcgttgataataaagctacaggcgttatgtcttcccggctcagtaaaatcgacatctgcaatttgcggtgaagccaccagcaccagtgattgttcacccaactctcgtcgattcagagcatcatcattccctacacgataaaagacgccaacatcggcctcatcattcagtagcgcatcacggatcacgtaacagttcagcgactgcaacgataaacgcacttttggggcgcgttgccgaaaacgctgcaacacctgcggcattcggtaagagagcaacgtttcgcccgaaacaacgcgtagttccccgtccggatctgactcctttttggcagcctcacgaagcgtatccatcactcgggtaagttcataaatgtgcggcagcaacttttttccttcgcgggtaaggcacatccgtcggccaattttctcaaataactggactgaaaactcctgctcaagctgctgaatatgaaaagtcaccgtcgattgtgtacagcacaatttttgcgaagctcgcaaaaaggaaccctcttccaccacggttttaagcgtaataaaacggcgcagatccataaccccaaacctatcgaaaatatcgaatctagaatataaaaacattcatttttttaaatgttccgtgtcgggtactgtctaccaaaacagaggagataacaagtgacaccgacccttttaagtgctttttggacttacaccctgattaccgctatgacgccaggaccgaacaatattctcgcccttagctctgctacgtcgcatggatttcgtcaaagtacccgcgtgctggcagggatgagtctgggatttttgattgtgatgttactgtgtgcgggcatttcattttcactggcagtgattgacccggcagcggtacaccttttgagttgggcgggggcggcatatattgtctggctggcgtggaaaatcgccaccagcccaacaaaggaagacggacttcaggcaaaaccaatcagcttttgggccagctttgctttgcagtttgtgaacgtcaaaatcattttgtacggtgttacggcactgtcgacgtttgttctgccgcaaacacaggcgttaagctgggtagttggcgtcagcgttttgctggcgatgattgggacgtttggcaatgtgtgctgggcgctggcggggcatctgtttcagcgattgtttcgccagtatggtcgccagttaaatatcgtgcttgccctgttgctggtctattgcgcggtacgcattttctattaacgaaaaaaagcggaagaggtcgccctcttccgcttagtaacttgctacttaagccttacaggctttcagtaaaggtacgagcgataacgtcgcgctgctgttccggagtcagagagttaaagcgaactgcataaccggatacacggatggtcagctgcggatatttttccggatgcttaactgcatcttccagagtttcgcgacgcagaacgttaacgttcaggtgttgaccaccttcaacgcgaacttctggtttcacttctactggaacttcacggtattcaatgtcacccagtttgcttactgcaaccacttcatcttctgcataacctgcttttgcaacgatgcaacgcgcttcgcctttttcgctgtccagcagccagaaagagttcagcagatcgtcgttagcggctttagtaatctggatacctgtaatcatgtgatgcctccccggcaaaattatttgatttgttcagcctgtcgcggccaattggtaaaaccattgttgcttgagtgtatatatactcctcaaacacccttgaatctttgatttaaatcaataaaaaccacacatcaagtatggtcgcaaatggattttattgttttacatcaacttatgcgggtgtgaaattttaccaatttacatttttttgcactcgtttaagtctaaaaaatgagcatgattttgttctgtagaaagaagcagttaagctaggcggattgaagattcgcaggagagcgagatggctaacgaattaacctggcatgacgtgctggctgaagagaagcagcaaccctattttcttaatacccttcagaccgtcgccagcgagcggcagtccggcgtcactatctacccaccacaaaaagatgtctttaacgcgttccgctttacagagttgggtgacgttaaagtggtgattctcggccaggatccttatcacggaccgggacaggcgcatggtctggcattttccgttcgtcccggcattgccattcctccgtcattattgaatatgtataaagagctggaaaatactattccgggcttcacccgccctaatcatggttatcttgaaagctgggcgcgtcagggcgttctgctactcaatactgtgttgacggtacgcgcaggtcaggcgcattcccacgccagcctcggctgggaaaccttcaccgataaagtgatcagcctgattaaccagcatcgcgaaggcgtggtgtttttgttgtggggatcgcatgcgcaaaagaaaggggcgattatagataagcaacgccatcatgtactgaaagcaccgcatccgtcgccgctttcggcgcatcgtggattctttggctgcaaccattttgtgctggcaaatcagtggctggaacaacgtggcgagacgccgattgactggatgccagtattaccggcagagagtgagtaaatttgcggggaaatgccggatggcagagttgccacccggctgatttatcaggctttattctgacgccaccattcaccaagcaaaacgccggttgcgacagagatattcagcccggcaacgttgcccgtaccgtcaatcttcacgcgcagatcgttcggatcgcgtgcggcatccggtaacccttcatattcctgacccagcaccagtaccattttcgctggcagactagttttgaacagcggtttaccctgctcgctggaagtggtcactacggtgtaacctgcctgacggaaatcatccagcacgttaacaatgttgtcgccagtaatcggctgaacgtgctctgcgccgccttctgcggtacggatagccgcccccgactccagcagtgccgcatcctgcaccacgacacctttcacgccgaagtgcgcgcagctgcgcatcatgccacccaggttatgcgggttagattcgttttccagtgccagaacgcaatcctgcgcgcctgcctggcttacccactgctgcacggttgtaccgttacgctttttgatcaagaagcaaacgccgccgtgatgttccgtgcctgacgcttttgtcaattccgcttcatccaccacatggtacgctttgcggtttgctgccatccagcgcaaagcttctttaaaacgcggcgttacactctggataaaccaggcgcgaacaatcgcttccggacggctctggaaaagtgcctgacatgcattttcgccgtagacgcgggtttcttccgcacgctgacgacgcaacacttccggatcaataaaacttttaccactgatgccaccgtgatcggccttttccggcgtctcatcacccggcgcgcgggaaaccgtgcgccacggcgaatcttcccacttgcggtcacggggctgactctgtttgtcatcgcgggcggggcgacggccaccgtcagcacgagattttcctggacgcccgccccctttcccggtacgcgggttgtgggtacgtttatcagaatcatcatcactgcggacatacatcactttgaccttgccgcttttacctttcatttcatcgttcatgcttttctccaccagcgctgcgcgaagcgcgcagattacccgaagtccgcgcggttcgccatgatttcgtaccaaagcctgcgactatcatacctattgaataaaacagattgttgtctggaacaatgtccccgataatatgtaacatattagaaacataccggcgtcgttgccgataagtctccttactcatcccgaggttagttatgaataccgtttgtacccattgtcaggccatcaatcgcattcccgacgatcggatcgaagatgcggcaaaatgcggacgctgcggtcacgacttgtttgacggagaggtgattaatgcgaccggtgaaacactcgacaaattgctgaaggatgatctacctgtggtgatcgacttctgggcaccgtggtgcggcccctgccgtaatttcgcaccaatttttgaagatgtcgcgcaagagcgtagcggtaaagtgcgctttgtgaaagtgaataccgaagctgaacgtgaattgagcagtcgctttggaattcgtagtataccgacgatcatgattttcaaaaacggtcaggttgtcgacatgcttaatggcgcagtaccgaaagcgccgttcgatagctggctgaacgaatctctttaatcttaccggggcgcatcttgtgccccgttttctcctctgcgacaatggcgttttttcgacgctctcttatgaccgaaaacgctgttctccagttacgcgccgagcgtattgcgcgcgcaacacgtccttttcttgcccgcggtaatcgcgttcgtcgctgccaacgctgtcttttgccagagaaattatgtctctgttcgacaattaccccagcacaagcaaaaagtcgcttctgtttgctgatgttcgacaccgagccaatgaagcccagtaataccgggcgtctcattgctgatattttgcctgataccgttgcgtttcaatggtcgcgtaccgaaccctcgcaggatttgctggagttggtgcaaaacccggactatcagccaatggtggtctttcccgcttcgtatgctgatgagcaacgggaagtgatcttcacaccacctgccggtaagccaccgctgtttatcatgctcgatggtacctggccggaagctcgcaagatgtttcgtaaaagtccgtatctggataatcttcccgtcatttccgtcgatctttcccggctttctgcctatcgcctgcgtgaagcccaggctgaaggccaatattgtactgccgaggtagccatcgcactgttagatatggccggcgataccggggcggcggcagggttaggcgagcattttacccgctttaaaacacgctatctggcaggaaaaacgcaacatctgggtagcatcacagcagaacagttagaaagcgtttaaaatcattcggtcacttctgcgggagaccggtatgagtcagcgaggactggaagcactactgcgaccaaaatcgatagcggtaattggcgcgtcgatgaaacccaatcgcgcaggttacctgatgatgcgtaacctgctggcgggaggctttaacggaccggtactcccggtgacgccagcctggaaagcggtgttgggtgtgttggcctggccggatattgccagcttgccctttacacccgaccttgcggttttatgtaccaatgccagccgtaatcttgctcttctggaagagctcggcgagaaaggctgtaaaacctgcattattctttccgccccggcatcgcaacacgaagatctccgcgcctgcgccctgcgccataacatgcgcctgcttggaccaaacagtctgggtttactggctccctggcaaggtctgaatgccagcttttcgcctgtgccgattaaacgcggcaagctggcgtttatttcgcaatcggctgccgtctccaacaccatcctcgactgggcgcaacagcgtaagatgggcttttcctactttattgcgctcggcgacagcctggatatcgacgttgatgaattgcttgactatctggcacgcgacagtaaaaccagcgccatcctgctctatctcgaacagttaagcgacgcgcgacgctttgtttcggcggcccgtagtgcctcgcgtaataaaccgattctggtgattaaaagcggacgtagcccggcggcacagcgactgctcaacacgacggcaggaatggacccggcatgggatgcggctattcagcgtgccggtttgttgcgggtacaggacacccacgagctgttttcggcggtggaaacccttagccatatgcgcccgctacgtggcgaccggctgatgattatcagcaacggtgctgcgcctgccgcgctggcgctggatgccttatggtcacgcaatggcaagctggcaacgctaagcgaagaaacctgccagaaactgcgcgatgcactgccagaacatgtggcaatatctaacccgctcgatctacgcgatgacgccagcagtgagcactatattaaaacgctggatattctgctccacagccaggattttgacgcgctgatggttattcattcgcccagcgccgctgctcccgcaacagaaagcgcgcaagtattaattgaagcggtaaagcatcatccccgcagcaaatatgtctctttgctgacgaactggtgcggcgagcactcctcgcaagaggcacgacgtttattcagcgaagccgggctgccgacctaccgtaccccggaaggaaccatcactgcttttatgcatatggtggagtaccggcgtaatcagaagcaactacgcgaaacgccggcgttgcccagcaatctgacttccaataccgcagaagcgcatcttctgttgcaacaggcgattgccgaaggggctacgtcgctcgatacccatgaagttcagcccatcctgcaagcgtatggcatgaacacgctccctacctggattgccagcgatagcaccgaagcggtgcatattgccgaacagattggttatccggtggcgctgaaattgcgttcgccggatattccacataaatcggaagttcagggcgtcatgctttacctgcgtacagccaatgaagtccagcaagcggcgaacgctattttcgatcgcgtaaaaatggcctggccacaggcgcgggtccacggcctgttggtgcaaagtatggctaaccgtgctggcgctcaggagttgcgggttgtggttgagcacgatccggttttcgggccgttgatcatgctgggtgaaggcggtgtggagtggcgtcctgaagatcaagccgtcgtcgcactgccgccgctgaacatgaacctggcccgctatctggttattcaggggatcaaaagtaaaaagattcgtgcgcgcagtgcgctacgcccattggatgttgcaggcttgagccagcttctggtgcaggtttccaacttgattgtcgattgcccggaaattcagcgtctggatattcatcctttgctggcttctggcagtgaatttaccgcgctggatgtcacgctggatatctcgccgtttgaaggcgataacgagagtcggctggcagtgcgcccttatccgcatcagctggaagaatgggtagaattgaaaaacggtgaacgctgcttgttccgcccgattttgccagaagatgagccacaacttcagcaattcatttcgcgagtcaccaaagaagatctttattaccgctactttagcgagatcaacgaatttacccatgaagatttagccaacatgacacagatcgactacgatcgggaaatggcgtttgtagcggtacgacgtattgatcaaacggaagagatcctcggcgtcacgcgtgcgatttccgatcctgataacatcgatgccgaatttgctgtactggttcgctcggatctcaaagggttaggcttaggtcgacgcttaatggaaaagttgattacctatacgcgagatcacggactacaacgtctgaatggtattacgatgccaaacaatcgtggcatggtggcgctagcccgcaagctcgggtttaacgttgatatccagctcgaagaggggatcgttgggcttacgctaaatcttgcccagcgcgaggaatcatgagtaaggtactggaaatgttgaccacttaatcgggactggtgttattattgcccgcttatgtcgtctgcattgcacagaggacccttcaatgaacagagaagaaatgcactgtgatgttgtcaaaatttaagcgtaataaacatcaacaacaccttgcccaactacccaagatttctcaatcagttgatgatgtcgatttcttttacgctcccgccgacttccgggagacgctgctggaaaaaatagccagcgcgaagcagcgcatttgcattgtcgccctgtatctcgaacaggatgacggtggcaaaggcattctgaacgcgttgtatgaggctaaaaggcagcgtccggaactggatgtgcgggtgctggtcgactggcatcgtgcacaacgtggacgcattggcgctgcggcatctaacactaacgctgactggtactgccgcatggcgcaggaaaatccgggcgtagatgttccggtttatggcgttccaatcaatactcgtgaagcccttggtgttctgcactttaaaggctttatcatcgacgatagcgtactttatagcggtgccagcctgaacgatgtttacctgcatcagcacgataaatatcgctacgaccgttatcatctgatccgtaaccgtaagatgtcagacattatgtttgaatgggttacacagaatattatgaatggccgcggcgttaatcgtctggatgatgttaatcggccaaaaagcccggaaatcaagaacgatattcgtctgttccgccaggagctgcgtgatgccgcttatcatttccagggcgatgccgacaacgatcagctttctgtaacgccgctagtggggctggggaaatcgagtctgttgaacaagaccattttccatcttatgccttgtgccgagcagaaactaaccatctgtacgccatacttcaacctgccagcaatccttgtgcgcaatattatccagttgctgcgcgaagggaaaaaggtcgaaattattgttggtgataaaaccgcgaatgacttctacattccggaagatgaacctttcaagataattggcgcattgccttatctctatgagatcaatctgcgtcgtttcctgagccgtttgcagtattacgtcaatactgaccagctagtggttcggttatggaaagatgacgacaacacctatcacctgaaagggatgtgggttgatgataagtggatgttgatcaccggtaataacctgaacccgcgcgcctggcgtctggatctggaaaacgccattttgatccacgatccgcaacttgagctggcgccacagcgagagaaagaactggagctgatccgcgagcataccaccatcgttaagcactatcgcgatctgcaaagtattgccgattatccggtgaaggttcgtaaactcatccgccgtttgcgccgtatccgcatcgaccgattaattagccgcatcctgtaatcacaaccccgtcctgtacggggtttgttttttggaggccacgttttgcgtattctttttgtctgttcgctattgttactttctggatgcagccatatggctaacgatagctggagcgggcaggataaagctcaacactttatcgcctcggcgatgctttccgccgccggaaatgaatattcacagcatcaggggatgagccgggatcgcagtgccatgtttggattgatgttctctgtcagtttgggggcgtcaaaagagctttgggatagccgccccgaagggagcggctggagctggaaggatttggcctgggatgtcgccggtgcaagcaccggctataccgtctggcaactgacccgtcactaaagacgcatccccttccctttgcgatgtagcatcaaagaaaccagaaacgccaccacggccatcaaggtcacataccagaagaaggctgtttccattcctattgatttcagcgacaacgctacgtactccgccgaaccaccaaatatagcattagcgaccgcatatgacagaccaacgcctaatgcgcgaacctgtgccgggaacatctcagccttcagtattccactgattgatgtataaaaactcactatcagcagggcacacatcaccagaccaaaagcggcataaggcgaggaaacgttttgcaatgctgagagaataggaacggtaaaaatggctgccagcgaaccgaaacataacattgaggtacggcgaccaatcttatccgacagcgcgccaatgagtggttgaataagcatgaatacaaacaatgcggcagtcataatgccactcgccacgttggcatgcattcccgcagtatttaccagatacttctgcatataagtagtgaaggtatagaaacaaagggagcccgcagcggtaaaaccgagaaccatgatgaatgcacggcgattgcgccataatcctttcagagatccagcttcttttaaagcgcgcgtttcttgttgcgaagtttcatctaactgacgacgtaaccacaacgccacaacagctaacacagctcctaacgcgaaaggaatacgccatccccactctctgagtgcagcgtcttccatggtgtgttgtaaaaccacgacaaccagtagggctagcagttgtccgccgatcaacgtcacatactgaaatgatgcgtaaaaacctttgcgcccttcaacggcaacttcactcatataggtggcgctggtgccatattctccgccaacagataatccctgaaataaacgagcgagaagcaataatgccggagcccacgtacctatagtttcataacctgggaggcaggcgataaccagcgatccgaaacacatcatacacaccgataacagcatcgattttttgcgaccatgtttatcggctatgcggccaaatagccaaccgcctattgggcgcatcaggaatcccgcagcaaaaacacctgctgtttgtagtagttgagtcgtcgtgttcccggaagggaagaagatgtgggcaaagtagagtgaacagaacgagtagacatagaaatcgaaccactcgaccagattacctgaagaggcccccacaatcgcccaaatgcggcgacgagtatcactacttgtcagtttgctgtctgccgttacagtactttcagccatgccattatgtctcctgccgtaatccgatgcttttgtcggtcgcttttgtttattttttttgtaaaggaaatattatacatttgttgcatatcattatgcaaccttaaccatgaatttagttagcaggaaaatggttattgaggagcttaaggataaatttctggtaaggaggacacgtatggaagtgggcaagttggggaagccgtatccgttgctgaatctggcatatgtgggagtataagacgcgcagcgtcgcatcaggcatttttttctgcgccaatgcaaaaaggccatccgtcaggatggcctttcgcataatttgatgcctggcagttccctactctcgcatggggagaccccacactaccatcggcgctacggcgtttcacttctgagttcggcatggggtcaggtgggaccaccgcgctacggccgccaggcaaattctgttttatcagaccgcttctgcgttctgatttaatctgtatcaggctgaaaatcttctctcatccgccaaaacagcttcggcgttgtaaggttaagcctcacggttcattagtaccggttagctcaacgcatcgctgcgcttacacacccggcctatcaacgtcgtcgtcttcaacgttccttcaggacccttaaagggtcagggagaactcatctcggggcaagtttcgtgcttagatgctttcagcacttatctcttccgcatttagctaccgggcagtgccattggcatgacaacccgaacaccagtgatgcgtccactccggtcctctcgtactaggagcagcccccctcagttctccagcgcccacggcagatagggaccgaactgtctcacgacgttctaaacccagctcgcgtaccactttaaatggcgaacagccatacccttgggacctacttcagccccaggatgtgatgagccgacatcgaggtgccaaacaccgccgtcgatatgaactcttgggcggtatcagcctgttatccccggagtaccttttatccgttgagcgatggcccttccattcagaaccaccggatcactatgacctgctttcgcacctgctcgcgccgtcacgctcgcagtcaagctggcttatgccattgcactaacctcctgatgtccgaccaggattagccaaccttcgtgctcctccgttactctttaggaggagaccgccccagtcaaactacccaccagacactgtccgcaacccggattacgggtcaacgttagaacatcaaacattaaagggtggtatttcaaggtcggctccatgcagactggcgtccacacttcaaagcctcccacctatcctacacatcaaggctcaatgttcagtgtcaagctatagtaaaggttcacggggtctttccgtcttgccgcgggtacactgcatcttcacagcgagttcaatttcactgagtctcgggtggagacagcctggccatcattacgccattcgtgcaggtcggaacttacccgacaaggaatttcgctaccttaggaccgttatagttacggccgccgtttaccggggcttcgatcaagagcttcgcttgcgctaaccccatcaattaaccttccggcaccgggcaggcgtcacaccgtatacgtccactttcgtgtttgcacagtgctgtgtttttaataaacagttgcagccagctggtatcttcgactgatttcagctccatccgcgagggacctcacctacatatcagcgtgccttctcccgaagttacggcaccattttgcctagttccttcacccgagttctctcaagcgccttggtattctctacctgaccacctgtgtcggtttggggtacgatttgatgttacctgatgcttagaggcttttcctggaagcagggcatttgttgcttcagcaccgtagtgcctcgtcatcacgcctcagccttgattttccggatttgcctggaaaaccagcctacacgcttaaaccgggacaaccgtcgcccggccaacatagccttctccgtccccccttcgcagtaacaccaagtacaggaatattaacctgtttcccatcgactacgcctttcggcctcgccttaggggtcgactcaccctgccccgattaacgttggacaggaacccttggtcttccggcgagcgggcttttcacccgctttatcgttacttatgtcagcattcgcacttctgatacctccagcatgcctcacagcacaccttcgcaggcttacagaacgctcccctacccaacaacgcataagcgtcgctgccgcagcttcggtgcatggtttagccccgttacatcttccgcgcaggccgactcgaccagtgagctattacgctttctttaaatgatggctgcttctaagccaacatcctggctgtctgggccttcccacatcgtttcccacttaaccatgactttgggaccttagctggcggtctgggttgtttccctcttcacgacggacgttagcacccgccgtgtgtctcccgtgataacattctccggtattcgcagtttgcatcgggttggtaagtcgggatgacccccttgccgaaacagtgctctacccccggagatgaattcacgaggcgctacctaaatagctttcggggagaaccagctatctcccggtttgattggcctttcacccccagccacaagtcatccgctaatttttcaacattagtcggttcggtcctccagttagtgttacccaaccttcaacctgcccatggctagatcaccgggtttcgggtctataccctgcaacttaacgcccagttaagactcggtttcccttcggctcccctattcggttaaccttgctacagaatataagtcgctgacccattatacaaaaggtacgcagtcacacgcctaagcgtgctcccactgcttgtacgtacacggtttcaggttctttttcactcccctcgccggggttcttttcgcctttccctcacggtactggttcactatcggtcagtcaggagtatttagccttggaggatggtccccccatattcagacaggataccacgtgtcccgccctactcatcgagctcacagcatgtgcatttttgtgtacggggctgtcaccctgtatcgcgcgcctttccagacgcttccactaacacacacactgattcaggctctgggctgctccccgttcgctcgccgctactgggggaatctcggttgatttcttttcctcggggtacttagatgtttcagttcccccggttcgcctcattaacctatggattcagttaatgatagtgtgtcgaaacacactgggtttccccattcggaaatcgccggttataacggttcatatcaccttaccgacgcttatcgcagattagcacgtccttcatcgcctctgactgccagggcatccaccgtgtacgcttagtcgcttaacctcacaacccgaagatgtttcacttcagagttgcgaaaatttgagagactcacgaacaactttcattgttcagtgtttcaattttcagcttgatccagatttttaaagagcaaatatatcaaacaagacttaacagtctgttttgagatattgaggtcggcgactttcactcacaaaccagcaagtggcgtcccctaggggattcgaacccctgttaccgccgtgaaagggcggtgtcctgggcctctagacgaaggggacacgaaaattgcttatcacgcgttgcgtgatattttcgtgtagggtgagctttcattaatagaaagcgaacggccttattctcttcagcctcactcccaacgcgtaaacgccttgctattcacttttcatcagacaatctgtgtgagcactgcaaagtacgcttctttaaggtaaggaggtgatccaaccgcaggttcccctacggttaccttgttacgacttcaccccagtcatgaatcacaaagtggtaagcgccctcccgaaggttaagctacctacttcttttgcaacccactcccatggtgtgacgggcggtgtgtacaaggcccgggaacgtattcaccgtggcattctgatccacgattactagcgattccgacttcatggagtcgagttgcagactccaatccggactacgacgcactttatgaggtccgcttgctctcgcgaggtcgcttctctttgtatgcgccattgtagcacgtgtgtagccctggtcgtaagggccatgatgacttgacgtcatccccaccttcctccagtttatcactggcagtctcctttgagttcccggccggaccgctggcaacaaaggataagggttgcgctcgttgcgggacttaacccaacatttcacaacacgagctgacgacagccatgcagcacctgtctcacggttcccgaaggcacattctcatctctgaaaacttccgtggatgtcaagaccaggtaaggttcttcgcgttgcatcgaattaaaccacatgctccaccgcttgtgcgggcccccgtcaattcatttgagttttaaccttgcggccgtactccccaggcggtcgacttaacgcgttagctccggaagccacgcctcaagggcacaacctccaagtcgacatcgtttacggcgtggactaccagggtatctaatcctgtttgctccccacgctttcgcacctgagcgtcagtcttcgtccagggggccgccttcgccaccggtattcctccagatctctacgcatttcaccgctacacctggaattctacccccctctacgagactcaagcttgccagtatcagatgcagttcccaggttgagcccggggatttcacatctgacttaaccaacccgcctgcgtgcgctttacgcccagtaattccgattaacgcttgcaccctccgtattaccgcggctgctggcacggagttagccggtgcttcttctgcgggtaacgtcaatgagcaaaggtattaactttactcccttcctccccgctgaaagtactttacaacccgaaggccttcttcatacacgcggcatggctgcatcaggcttgcgcccattgtgcaatattccccactgctgcctcccgtaggagtctggaccgtgtctcagttccagtgtggctggtcatcctctcagaccagctagggatcgtcgccttggtgagccgttaccccaccaacaagctaatcccatctgggcacatccgatggcaagaggcccgaaggtccccctctttggtcttgcgacattatgcggtattagctaccgtttccagtagttatccccctccatcaggcagcttcccagacattactcacccgtccgccactcgtcagcgaagcagcaagctgcttcctgttaccgttcgacttgcatgtgttaggcctgccgccagcgttcaatctgagccatgatcaaactcttcaatttaaaagtttgatgctcaaagaattaaacttcgtaatgaattacgtgttcactcttgagacttggtattcatttttcgtcttgcgacgttaagaatccgtatcttcgagtgcccacacagattgtctgataaattgttaaagagcagtgccgcttcgctttttctcagcggcgcggggtgtgcataatacgccttccgctacagagtcaagcatttctttgcttttctctgttgagattctcaggagaaccccgccgacccggcggcgtgtttgccgttgttccgtgtcagtggtggcgcattatagggagttattccggcctgacaagcgaaaaatataaaaactttatcgttcgctcacttttcaggcaaaacatcttaaatatagtcttttccgtctaacttatagacaaaaacgagccccgaagggctcgttttatcatttactggacggcgacaatccggtcttcattaacttccaggcgaatcactttacccggaaccaattcaccagacagtatttgctgtgccagcgggttttcgatctgctgctgaattgcacgtttcagaggacgtgcaccatagaccggatcgtaaccgttctcgctcagcagtttcagcgcctcgtcagaaatgtggatttcataaccacgttcttccagacgtttgtacagacgtttcaactgaatctgcgcaatcgaggcaatgtgctgttcacccagcggatggaagaccaccacttcatcgatacggttaatgaattccggacggaagttatggcttaccacaccgagcaccagctctttcatgtgcgcataatccagttcaccgaagcgttcctgaatcagatcggaaccgaggttagaggtcataatgacgaccgtattacggaagtcgaccgttctcccttgcccgtcagtcagacgcccatcatccagtacctgcaacagaatgttgaagacatccggatgcgctttttccacttcatccagcaggatgacggaatacggacgacgacgcaccgcttcggtcaggtagccaccttcttcataaccgacatatcccggaggcgcaccaaccaaacgagacaccgagtgtttctccataaactcggacatatcgatacggaccatcgcctcgtcgctatcaaacataaagttcgccagcgccttacaaagctctgttttccccacaccagttgggccgaggaacaggaatgaaccaatcgggcgatttggatccgccagccccgcacggctacgacgaatagcgttagataccgcatcaaccgcttcgttctgaccaattacgcgatggtgcagttcttgctccatacgcagcagtttttcgcgctcgctttccatcatgcgagaaaccggaatccccgtccaacgcgccagcacttcagcaatttcggcgtcggtcactttattacgcaacagacgcatagttttgccttcgagctgcgttgcggcttccagttgcttttccagttccgggattttgccgtattgcagttcagacatccgcgccaggtcccccacacggcgagcctgttcaatagcgattttcgcctgttccagttccgctttaatggtctgcgtaccagaaagcgatgccttctctgctttccactcttcttctaactcggagtactgacgttctttgtcgctcagttcttcgttgagcatatccagacgttttttactggcttcatcagactctttcattaacgcctgttgttccagtttgagctggatgatacgacgatcgagtcggtcgagttcttctggttttgagtcaatctgcatacgaatgctggatgctgcttcatcgatcaggtcgatggctttatccggcagctgacggtcagcaatgtagcgatgagacaacgtcgccgctgcaacaattgccgggtcagtaatttgcacatggtggtgcaattcgtaacgttctttcaggccacgcagaatcgcaatggtatcttcaacagaaggctcggcaacaaacactttctggaaacgacgttccagcgcagcatctttttcaatgtactggcgatattcgtcaagcgtcgtggcacctacgcagtgcaattcaccacgcgccagcgccggtttcagcatgtttccggcgtccattgcgccatcggctttacccgcgccgaccatggtatgtaattcgtcgataaataggatgacgttgccttcctgtttggcaagatcgttaagcacgccttttaaacgttcttcaaactcaccgcgatatttcgccccagccaccagcgcgcccatatccagcgccagtacccggcggcctttcaacccttccggcacttcgccgttgataatacgctgcgccagaccttcaacgatggcagttttaccgacgccgggttcaccaatcagtaccgggttatttttagtacgacgttgcagcacctgaatggtacggcgaatttcttcatcacgaccaatcaccggatcgagtttgccctgttcggctcgttcggtaaggtcgatggtatattttttcaaagcctgacgttggtcttcagcaccttgatcgttcacgctttcacctccacgcatttgttcaatcgcttgagtaatgttggcggtggtcgcccctgctgctttcaggatgtcggccagcgtgccgcgagactcaagtgccgccagaacgaacagttctgacgagataaagttatcaccacgtttttgcgccagcttgtcgcaaagattaagaacgcgcaccagatcctgtgatggctggacatcaccaccagtaccttcaacctgcggtaaacgatttaatgcctgattgatatctgtgcgcaactggccagcatttatgccagcggatgttaataaaggactaaccgaacccccttcctgattcagcagggcgctcattaaatgaagtggttcgataaattggttgtcgtgcccgagtgcaagtgattgggcatcggcaagagcaagctggaatttattagtaagacgatccagacgcataactcctcccataacggatcaaagttgctactggagattaaatgaggtcatccctcaattattcaaggttattgaccagattaatgtgaaaagaaaatcacgcgtaccggatcgtcttgattctttaggttatatcagccaaatgaaacttgccatacgaccggtggtcttgtcgcgacgataagagaagaaagtctcattttccgtatatgtacaacggtcgccgccgaaaatttgctcaacacccacgttcgccagacgctgccgggcaagctgataaatatccgccagatacttatcaccatgctgaatgaaagctgcacttgctttagcgtctactgccataaacgcctcgcgaacctccccccccacttcgaacgcgcgtggaccaattgccggccctaaccaggcgagaatattttccggattatcagcaaaacaggaaaccgtctcttccagcacgcctgcgcacagtccacgccagccagcatgagcggcggcgacttccgttcccgctcgattgcaaaacagcacagggaggcagtcggcagtcatcactgcgcaaaccgtgccgggcgtattgctataagaggcatccgcccgttttgaggcataaggttcgccagtgagcttaagcacatctttgccgtgtacctgctcaagccagaccggtttagaaggcaaattgcccgcagcaaaaagtcgcttgcgattctcctcaacgtgatccgggttatcgccacaatgggcaccgaggttgagtgagtcatacgggggcaagctcacgccgccgatacgagtggagctacaggccgcaacaccttttggctgcggccactgcgggacaatcagcttactcataaccagtccacttcatccttatgttcttcgaaatcggcgcgcatcacctcaatcagctccaccatatcttgtggaataggcgcatgccattccatttcgatgccggagatcgggtgataaagacgcagcatggttgcatgtagcgcctggcggtcaaacttacgcagcgtggagataaatgcttccgaagcaccttttggcggacgcggacggccaccataaaccggatcgcccaccagcggatgagtgatatgggccatatgcacgcggatctggtgcgtacgtccagtttccagacgcaaccgcagacgcgtgtgcacacggaagtgttccatgatgcgatagtgagtcaccgctggtttgcccatcggatgcaccgccatatgggtacgtttggtcgggtggcgactgattggctcgtccaccgtgccacctgcggtcatatgaccaatcgccaccgcttcatactcacgagtaatttcacgccgttgcaaagattcgactaaacgcgtctgagccggaacggtttttgccacaaccatcaggccagtggtgtctttatccagacgatggacgatgcccgcacgcggtacatcggcaatgggtggatagtaatgaagcaacgcattcagtaccgtgccatccgggttacccgcgccaggatgtaccaccaggtcgcgcggtttattaatgataataatgtcttcatcttcatagacgatatccagcgggatatcctgcggttcaaaacgcgcttcttcttcaatctcagcgttgatggcaacctgctcgccacccaatactttttctttcggcttatcacaaactttgccgttaaccagcactcgctggtcgaggatccattcttttattcgcgaacgtgaataatccgggaacatttcggccaaagcctgatctaagcgttgaccgagttggttttcggacaccgttgcagtgagctgtactcgttgtgccatatatactgcttcttcgtttatcgttggggttttacggctttgccgtttaatatagtgtgctattgtagctggtcttaaccgggagcaggaacagagaatctcccgtattacattttgaggaaagtcaaaacgtcatgacgcgcatgaaatatctggtggcagccgccacactaagcctgtttttggcgggttgctcggggtcaaaggaagaagtacctgataatccgccaaatgaaatttacgcgactgcacaacaaaagctgcaggacggtaactggagacaggcaataacgcaactggaagcgttagataatcgctatccgtttggtccgtattcgcagcaggtgcagctggatctcatctacgcctactataaaaacgccgatttgccgttagcacaggctgccatcgatcgttttattcgccttaacccgacccatccgaatatcgattatgtcatgtacatgcgtggcctgaccaatatggcgctggatgacagtgcgctgcaagggttctttggcgtcgatcgtagcgatcgcgatcctcaacatgcacgagctgcgtttagtgacttttccaaactggtgcgcggctatccgaacagtcagtacaccaccgatgccaccaaacgtctggtattcctgaaagatcgtctggcgaaatatgaatactccgtggccgagtactatacagaacgtggcgcatgggttgccgtcgttaaccgcgtagaaggcatgttgcgcgactacccggatacccaggctacgcgtgatgcgctgccgctgatggaaaatgcataccgtcagatgcagatgaatgcgcaagctgaaaaagtagcgaaaatcatcgccgcaaacagcagcaatacataacagaaacctgaaacacaaaacggcagcccttgagctgccgtttttttattctgtcagttgtgaaactgaagcgatttagtcgctatcgatctcatcaaatatggctcgctttgagatattcctcaagtaaaaaaacatctcttcctgcgatttctcacaaaaaagattcgttgacaaaaagtgacaaaattatgagattttcatcacacattttgacatcaggaacggtatgctgaattcaccaagacgggaagacaagaggtaaaatttatgacaatgaacattaccagcaaacaaatggaaattactccggccatccgccaacatgtcgcagaccgtctcgccaaactggaaaaatggcaaacacatctgattaatccacatatcattctgtccaaagagccacaagggtttgttgctgacgccacaatcaatacacctaacggcgttctggttgccagtggtaaacatgaagatatgtacaccgcaattaacgaattgatcaacaagctggaacggcagctcaataaactgcagcacaaaggcgaagcacgtcgtgccgcaacatcggtgaaagacgccaacttgtcgaagaagttgaagaagagtagtcctttatattgagtgtatcgccaacgcgccttcgggcgcgttttttgttgacagcgtgaaaacagtacgggtactgtactaaagtcacttaaggaaacaaacatgaaacacataccgtttttcttcgcattcttttttaccttcccctgaatgggaggcgtttcgtcgtgtgaaacagaatgcgaagacgaacaataaggcctcccaaatcggggggccttttttattgataacaaaaaggcaacactatgacatcggaaaacccgttactggcgctgcgagagaaaatcagcgcgctggatgaaaaattattagcgttactggcagaacggcgcgaactggccgtcgaggtgggaaaagccaaactgctctcgcatcgcccggtacgtgatattgatcgtgaacgcgatttgctggaaagattaattacgctcggtaaagcgcaccatctggacgcccattacattactcgcctgttccagctcatcattgaagattccgtattaactcagcaggctttgctccaacaacatctcaataaaattaatccgcactcagcacgcatcgcttttctcggccccaaaggttcttattcccatcttgcggcgcgccagtatgctgcccgtcactttgagcaattcattgaaagtggctgcgccaaatttgccgatatttttaatcaggtggaaaccggccaggccgactatgccgtcgtaccgattgaaaataccagctccggtgccataaacgacgtttacgatctgctgcaacataccagcttgtcgattgttggcgagatgacgttaactatcgaccattgtttgttggtctccggcactactgatttatccaccatcaatacggtctacagccatccgcagccattccagcaatgcagcaaattccttaatcgttatccgcactggaagattgaatataccgaaagtacgtctgcggcaatggaaaaggttgcacaggcaaaatcaccgcatgttgctgcgttgggaagcgaagctggcggcactttgtacggtttgcaggtactggagcgtattgaagcaaatcagcgacaaaacttcacccgatttgtggtgttggcgcgtaaagccattaacgtgtctgatcaggttccggcgaaaaccacgttgttaatggcgaccgggcaacaagccggtgcgctggttgaagcgttgctggtactgcgcaaccacaatctgattatgacccgtctggaatcacgcccgattcacggtaatccatgggaagagatgttctatctggatattcaggccaatcttgaatcagcggaaatgcaaaaagcattgaaagagttaggggaaatcacccgttcaatgaaggtattgggctgttacccaagtgagaacgtagtgcctgttgatccaacctgatgaaaaggtgccggatgatgtgaatcatccggcactggattattactggcgattgtcattcgcctgacgcaataacacgcggctttcactctgaaaacgctgtgcgtaatcgccgaaccagtgctccaccttgcggaaactgtcaataaacgcctgcttatcgccctgctccagcaactcaatcgcctcgccgaaacgcttatagtaacgtttgattaacgccagattacgctctgacgacataatgatgtcggcataaagctgcggatcctgagcaaacagtcgcccgaccatcgccagctcaaggcggtaaatcggcgaagagagcgccagaagttgctcaagctgaacattttcttctgccaggtgcagcccgtaagcaaaagtagcaaagtggcgcagtgcctgaataaacgccatattctgatcgtgctcgacggcgctaatacgatgcagccgagcgccccagacctgaatttgctccagaaaccattggtatgcttccggtttacgtccatcacaccagaccacaacttgctttgccaggctaccgctgtccggaccgaacatcgggtgtagccccagcaccggaccatcatgcgccaccagcatggcctgtaatggcccatttttcactgatgccagatcgaccagaatacaatctttcggtaaaggcggtaatttgccaataacttgctcagtaacgtggattggcacactaacaatcaccattccggcatcggcaacaatatcagccgctcgatcccagtcatgttgctccagaatccgcacctgataacccgagagggtcagcatcttctcgaacaggcgtcccatctgaccgccaccgccgacgataaccaccggacgcagtgacggacaaagtgttttaaatcctttgtcgttttcactggagtaagattcacgcatcacccgacgcaaaacatcctcaatcagatctggcggtacacccagagcttccgcctctgcacgacgcgaggccaacatagatgcctcgcgctccggaacataaataggcagtccaaagcggcttttcacctcgcccacttcagcaaccagttccagacgcttcgctaataaattcagcagcgctttatcgacttcatcaatttgatcgcgtaatgcggtcaattcagcaaccataataaacctcttaagccacgcgagccgtcagctgcccgttcagatcctgatgaatttcacgcagcaaggcatcggtcatttcccagctaatgcaggcatcggttacggatacaccgtatttcatttcactgcgcggttgctcggaagactgattgccctcgtggatattactttcgatcatcagaccaataattgagcgattgccatctttgatttgagcaaccacggattctgccaccgcaggctgacggcgataatctttattggaattaccgtggctgcaatctaccatcagagacgggcgcagtcccgcctgttccatctctttttcacattgcgcaacatccgcagggctatagttcggcgctttaccaccgcgcaggatcacatggccgtccggattcccctgagtttgtagcaacgcaacctgccctgcctggttaatgccaacaaaacggtgcggctgggcggcggcgcgcatagcgttaattgctgttgccagactgccgtcggtgccgtttttaaaaccaaccggcatggaaagcccggaggccatttcacggtgagtttgcgattccgttgtacgagcaccaattgctgaccagctaaacagatcgcccaggtattgcgggctattcggatctaacgcttccgtcgccagtggcagtcccatattcaccagctcaagcagcaatttacgcgcgatctgcagcccggcttctacatcaaaagagccatccatatggggatcgttaattaaccctttccagccgacagtggtacggggtttttcaaaatagacgcgcattaccagatagaggctatcgctgacctctgcggcaagggctttaaatcgacgagcatattccagagcagtttccggatcatgaatggaacaaggaccacatactaccagcagacgaggatcgcgcccggcgataatatctgaaatgcttttacgcgagtcagcaatctgggcttcttgttgcaggctcaatggaaaagcggccttcagttgttccggagtcattaaaacctgttcgtcggtaatatgtacgttattcagcgcgtctttttgcatgatggcgatcctgtttatgctcgtttgcgatagttgatcctcagcgaggatgacgtaacgataacacataaagtaaagttttcaatccatatttcgtacatttttatttacacaggcaatttagtcgcgctttcaacccttacctctgtatagataaatttacactccctttgaaaacaatccgctatgctttgaaaaaggagaaagaaatgatgaaaaagtttatcgcccccttgttggctttactggttagcggatgtcagattgatccttatactcacgcgccaaccttgaccagcaccgactggtatgatgtcggtatggaagatgcgatatcgggcagcgccataaaagatgacgatgcatttagcgattcacaggcggatcgcggtctataccttaaaggatatgccgaaggacaaaagaaaacttgccagaccgattttacttatgcccgaggactttccggtaaaagctttcctgccagctgcaacaatgttgaaaatgccagccaactgcatgaagtatggcaaaaaggggctgatgaaaatgccagcacaatacgattaaattaattaaaaccccacaaataaattaaacataagattttactcattgtgttttatttctcacattgatgacggtcgcatgaaaaaatgatattttaatgagcattctgaaaaaatatcgatgcatttcgagcgaagatggtggggatccctgaatgcgtttttctcaccgactgttcttacttctgattctcctgctgacgggagcaccaatactcgctcaggagccttctgacgttgcgaaaaacgtgcgtatgatggtttccggtattgtcagttacacccgctggcctgcgctatcagggccaccaaagttatgtatcttttcatcttcacgttttagtaccgccctacaagagaatgccgcgacatctttgccttatctgcctgtcatcattcacactcaacaagaggcgatgatttcaggctgcaatggtttttattttggcaacgagtcaccgacattccagatggaattaaccgaacaatatccgtcaaaggcgttattattaattgccgaacaaaataccgagtgcattattggtagcgccttttgtctgatcatccacaataatgacgtcagatttgccgtaaacctggatgccttatcgcgtagcggtgtaaaggtcaacccggatgtcttaatgctcgcacggaagaaaaatgatggataacgataattctcttaataagcgccccacgtttaaaagagcattacgcaacatcagtatgaccagcatatttatcactatgatgctgatctggttgctgctttccgtgacctcggtgctgaccctgaaacagtacgcgcaaaaaaacctggcactgacagcagcaacaatgacttacagtctggaagcagctgtcgtttttgccgatggccctgcagcaactgaaacactggcagcgctgggccagcaagggcaattttcaactgcagaagtacgtgataagcagcaaaatattctggcatcctggcattacacccgtaaggatccaggcgatactttcagtaatttcataagccactggctcttccctgcccccatcattcagccgattcgtcacaatggtgaaaccattggcgaagtacgcttaaccgctcgcgacagttcaatcagccattttatctggttttcgctcgccgtactgaccggttgtattctgctggcatcaggcatcgcaattaccctcacccgccatttgcacaatggcctggtagaagcgctgaaaaatatcaccgatgtcgtacatgatgtgcgttccaaccgcaatttttcccgacgagtttcggaagaacgtatcgctgagtttcaccgcttcgctctcgacttcaacagtctgctggatgaaatggaagagtggcagcttcgtttacaggctaaaaatgcgcagcttctacgtaccgcgctacatgacccattaaccgggctggctaaccgcgcagcgtttcgtagcggcatcaacacgttgatgaacaattccgatgcccgaaaaacgtcggcgttactatttcttgatggcgataatttcaaatacatcaatgatacctggggtcatgcgacgggcgatagagtcttgattgaaatcgcaaaacggttagctgaatttggcgggctgcgacataaagcataccgcctgggcggcgatgaattcgctatggtgctctatgatgtacagtcggaatctgaagtgcagcagatatgttcagcactgacacaaatctttaatctcccgtttgatcttcataatggccatcagaccaccatgacattaagcattggttacgcgatgaccattgagcacgcctctgcggaaaaattacaagagcttgccgatcacaatatgtatcaggccaaacaccagcgtgccgaaaagctggtgagataacaaggatatatcgatatgataaagcacctggtagcacccctggttttcacctcactaatactgactggctgccagtcccctcagggaaagtttactcctgagcaagtcgccgctatgcaatcttatggatttactgaatccgccggcgactggtcgctgggcttatcagatgccattctgttcgcaaaaaatgactacaaattgctcccggaaagccagcaacagatccaaaccatggcagctaaattggcctcgacagggctaacacatgcccgtatggatggacacaccgataactatggtgaagacagttacaacgaaggcttatcattgaaacgggcgaatgtcgtggccgatgcatgggctatgggtggacaaattccacgcagcaatctcaccacacagggtttaggaaaaaaatatcccatagccagtaacaagaccgcccagggccgcgccgagaaccgccgcgtcgcagtggtgattactaccccttaaaacaccagcaaacagataaaaaagggccagccaattggccagcccttcttaacaggatgtcgcttaagcgaaatcttagttaagacgctctttgatacgagcagccttaccagtacgctcacgcaggtagtacagtttagctttacgaacagcaccacgacgtttgacagaaatgctgtcaactaccggagagtgagtctggaagacacgctcaacgccttcgccgttggaaattttacgaacagtgaatgcagagtgcagaccgcggttacgaatagcgataaccacgccctcgaatgcctgcagacgttttttggaaccttcaacaacccatactttcacttccacggtatcacccggacggaaggaaggtacgtcctgcttcatctgctcttgttcaagttgcttaataatgttgctcataatttaatctcttatcctgggtaaactgatatctcgggggcttacgccatcccatcatgtttatgttgctgttgtgcgtgttccgttttgaactccgccagcaaccttgcttgctcttcagtcagagccaggttttccagaagttcaggtcttctaagccaggtacggcccagcgactgtttcaaacgccagcgacgtatctcggcatggttgcccgacagtaacactggcggaacttccatcccttctaacacctcaggccgcgtatagtgcgggcaatccagcaatccttcagcaaaggaatcttccgttgccgaggcttcatgtcccagtactcccggaataaaccgggaaacggagtcaatcagcgtcattgctggtaactcaccaccactgagaacgtaatcgccgattgaccattcttcgtcaatttcggtttggatcacgcgctcatctataccttcgtagcgaccgcacaccagaatcaatttttgattcgttgccagttcgctgacgcccgcttgatcaagcttgcgtccctgtggtgacagataaatcacctttgcgccttcacccgccgcggcttttgctgcatgaatggcgtcccgcaagggttgcaccatcattaacatccccggtccgccgccgtaaggacgatcgtccacggtacggtgccggtcatgcgtgaagtcgcgaggactccagctctggatgctcagcaggccatttttaactgcccggccagttaccccgtaatcggtaattgcgcggaacatttcaggaaacaggctaattatgccaatccacatagcgccgtcttttaccgtttatccggtggtttaaaaaccaggatcccaatctacttcgattgaacgagtagtgagatcgactttcttgataacctgcccatcgaggaacggtacgagacgttccttgataccaaacgcatctttcaggtttgccttaatgacgagaacgtcattagatccggtttccatcatatcgacgactttaccgagatcgtagccttcagtggttactacctggcagcccatcaggtctttccagtagtagtccccctcttcaagctgaggcagctgcgatgaatccacgacaatttcacaattcgtcagcaggttcgccgcatcacgatcgtcaacgcctttcagcttgatgatcatgtcctgattgtggtgcttccagctttccagctggacttgctgccactgacccgccttctggataaaccagggctgatagtcaaaaatgctttcggcgtcttcggtggaagaaaacactctgagccacccacgaataccgtaagacgaacccatttttcccaaaacgatgggatcaacaggtgcttgcgcggtgagttgtttgctcatcatgaccaccgtgacagattaagctgctttgtttacttctttgatcagcgcagcaacgcgatcagaaatagttgcgccctggccaacccagtgagcgatgcgatccagatccaggcgagtgccttcttctttttcgctagcgattgggttgaagaaaccaacgcgctcgatgaagcgaccgttgcgtgcattacggctgtcagcgacaacaacctggtagaacggacgctttttagcgccgtgacgtgctaaacgaatagttaccataacatcctcttgtgtgaataaaacaaccggaccccatcgaggaacggagtccggtgtcatattaaaagcccgaaaattttactcatttttgcgggaattgcaatcaacagttgctaactctgctgtaaaaggccgtcggcggtgcagccagtttggtgccggagtgcgcgcagtcaccggagcgtacacgcagtacgtgaggatgacgagcacatcccggtgccaaaatggcaaacaagccaggccgattagcgaccagggaagcctgggggcatcatacccttcatgcttctcatcatcttcgccattccgcccttcttcattttcttcatcatgcgctgcatgtcgtcgaactgtttcagaagacggttaacgtcctgcacctgcataccgcaaccggcagcaatacggcgtttacgcgaacctttgatgatttctggcttagcgcgctctttcatcgtcatcgagttgatgatggcttccatacgcaccagcactttatcgtccatctgtgacttgacgttatccgggatctgccccatgcccggcagcttgcccatcagactagccatgccgcccatatttttcatctggcgcagctgctcaagaaagtcgttgagatcgaagccgtcaccttttttcagcttgctggctaatttctctgcctgcgcgcggtcaactttgctttcgatatcttcgatcagcgacagtacgtcgcccatgccgagaatacgcgacgcgatgcggtccggatggaacggctccagcgcctcagttttctcgccaacaccgaggaacttgatcggtttgccagtgatgtgacgaatagagagcgccgcaccgccgcgggcatcgccgtccactttggtcaacactacgccggtaagcggtaacgcttcattgaatgcttttgccgtattggccgcatcctgaccggtcatggcgtcaaccacaaacagggtttcaaccgggttaatcgacgcatggacttgtttgatctcgtccatcatcgcttcgtcaacgtgcagacgaccagcggtatccaccagcagcacgtcgtagaatttcagtttggcttctttcagcgccgcgttaacgatatctaccggcttctgaccaacatcagaagggaagaaatcaacgcccacctgctctgccagcgtctcaagctgtttgattgccgccgggcgataaacgtcggcagaaaccaccagcactttcttcttgtgcttctcgcgcaggaacttaccgagtttaccaacgctggttgttttaccggcaccttgcaggcccgccatcagtacgaccgcaggcggttgcgcagccaggttcagggtctggttctcttcgcccatcgccgcaaccagttcgttacggactattttgacgaactcctgccccggcgtcaggctcttattaacttcatgaccaaccgctttctcttttacgcgattgataaactcacgcactaccggcagagctacgtccgcctccagcagcgccatgcgcacttcgcgcagcgtatcttttacgttgtcttcagtgaggcgtccacggccactgatattgcgcagcgtgcgcgacaaacgatcggttaaattatcaaacattgtctctcgcctggggtggaaacggttggccgcaatcgcgacacatcatcagtattttgccgcagtataacatgaaggcgtctttgttgttatgcaacggttggagcagcgttcacctgacgctatactgcttctctttcttattgctcaaactgtcgacatcactatgcccgtttttgctctgctcgcgcttgtcgcctactccgtcagtcttgcgctgattgttcccggtctgctgcaaaaaaacggcggctggcggcgcatggctattatttctgcggtcattgcgctggtctgccacgcaatcgctctggaagcccgcatcctgcccgacggtgatagcggacaaaacctcagcctgctgaacgttggttcattggtcagtttgatgatctgtacggtaatgaccattgtggcttctcgcaatcgtggctggctgctgctacccattgtctatgcctttgcgcttatcaacctggcgctggcaaccttcatgcccaatgaatacatcacccatctggaagctacgcctgggatgctggtgcacattggcttatcgctcttttcctatgccacgctaattatcgccgccctgtacgcgctgcaactggcgtggattgattaccaactgaagaacaagaagctggcgtttaaccaggaaatgccgccattgatgagtatcgagcgtaaaatgttccacatcacgcagattggcgtggtgctgctaacgctcacgctttgcactggcctgttctacatgcacaacttatttagcatggaaaatatcgacaaggctgtgctctctatcgtggcgtggtttgtctatattgtgctgctgtggggacattatcatgaaggatggcgtggacgccgcgtcgtctggtttaacgttgcgggcgcggtaattctgacactggcctacttcggcagccgaattgtccagcagttaatcagctaaacccagaaaaggagtttcccctggaacacatttctactactacgttgatcattattctgatcatcatggtggtcatttcagcctatttttccgggtccgaaaccggaatgatgaccctcaaccgctatcgtctgcgacatatggcgaaacagggtaatcgctcggccaaacgcgtcgaaaaattgctgcgtaagccagaccgcctgataagcctggtgttaatcggcaataacctggtcaatattcttgcctccgcgctcggcactattgttgggatgcgtttgtacggcgatgcgggcgtggcaattgcgactggtgtgctgacttttgtcgtactggtatttgctgaggtattgccgaaaaccattgccgcgctgtacccggaaaaagtcgcttatccgagtagttttctgctggctccgctgcaaattttgatgatgccgctggtctggttgctgaatgctatcacccgtatgctgatgcgcatgatgggtatcaaaaccgatatcgtggttagcggctctttgagcaaagaagagttgcgcactatcgtgcacgaatcacgctcacaaatttcccgtcgcaatcaggatatgctgctgtcggtgctcgatcctggaaaaaatgaccgttgatgacatcatggtgccgcgcagtgaaattatcggtattgatatcaacgatgactggaaatcgattctgcgccaactctcccactcacctcacgggcgcatcgtgctctaccgtgattcgctggacgacgccatcagtatgctgcgagtacgtgaagcctggcggttgatgtcggagaaaaaagagttcaccaaagaaaccatgctgcgcgccgcggacgagatctattttgtgccggaaggtacgccgctcagcacgcagttggtaaagtttcagcgcaacaaaaagaaagtcggcctggtcgtcaacgagtatggagacattcaggggctggtgacggttgaagatattctggaagagattgtcggcgatttcactacgtcgatgtcgccaacacttgccgaagaggtcacgccgcaaaacgacggttcggtgattatcgatggcaccgccaacgtgcgggaaatcaacaaagcctttaactggcatctaccggaagatgatgcccgcacggttaatggcgtcattcttgaggcactggaagagatccctgtcgcaggcacccgcgtgcgtattggcgagtacgatatcgatattctcgacgtacaggacaatatgattaagcaggtaaaagtttttcctgtgaaaccgctgcgcgagagtgtggcggagtaacgaaaacggcccggcattcgcatgcagggccgtgaattattacgaaagcagaaattaagcttttgctttcgctacagtaaccatcgccgcacgaatcgtacgaccattcagcgtataacccttctgcataatgcccagtacgttacctggcgcaacgtcatcagattccaccattgcgatggcctgatgcacattcgggtccagtgggacgttagtttcggcgatcacttcaacgccaaacttacgcacaacatccagcatcgacttcagcgtcagctcaatgccttcaaccatcgcagacatatccgggttagctttatcagccacttccagcgcacgatccaggctatcaatcaccggcagcaattcgttgatgaatttctccagcgcgaatttgtgggctttttcaatatccagttcagtacgacgacgcaggttttccatttcggcttttacacgcaaaatgccgtcacgttcacgggtctgggcttcagccagctgagcttcgagattcgcaactttttcatcgcgcggatccacctgctcagcagaagcttctggctcaactgcctcaatctcttcgtgctgatccatgataatttcttccggggcttgcccctcaggcgttttctgttctttactactcatgaatttctccgcgtttttttcgcattcatctcgctaacttcgcttattatggggatcagtttcagggtttcaagggaagcactcacattgtcatcaatcttcgcaacaaggacctcggaaaaatgaataatcatttcaagtgtattggcattgtgggacacccacggcaccccactgcactgacaacacatgaaatgctctaccgctggctgtgcacaaaaggttacgaggtcatcgttgagcaacaaatcgctcacgaactgcaactgaagaatgtgaaaactggcacgctcgcggagattgggcaactagctgatctcgcggtagtcgttggtggcgacggtaatatgctgggcgcggcacgcacactcgcccgttacgatattaaagttattggaatcaaccgtggcaacctgggtttcctgactgaccttgaccccgataacgcccagcaacagttagccgatgtgctggaaggccactacatcagcgagaaacgttttttgctggaagcgcaagtctgtcagcaagattgccagaaacgcatcagcaccgcgataaatgaagtggtgcttcatccaggcaaagtggcgcatatgattgagttcgaagtgtatatcgacgagatctttgcgttttctcagcgatctgatggactaattatttcgacgccaacaggctccaccgcctattccctctctgcaggcggtcctattctgaccccctctctggatgcgattaccctggtgcccatgttcccgcatacgttgtcagcacgaccactggtcataaacagcagcagcacgatccgtctgcgtttttcgcatcgccgtaacgacctggaaatcagttgcgacagccagatagcactgccgattcaggaaggtgaagatgtcctgattcgtcgctgtgattaccatctgaatctgattcatccgaaagattacagttatttcaacacattaagcaccaagctcggctggtcaaaaaaattattctaattttacgccagcctctttactgtatataaaaccagtttatactgtacacaataacagtaatggtttttcatacaggaaaacgactatgttggcacaactgaccatcagcaactttgctatcgttcgtgagcttgagattgattttcatagcggcatgaccgtaataactggcgagaccggcgcgggtaaatctattgcaatagatgccctcggtctttgtctcggtggtcgcgctgaagccgacatggtgcgtaccggcgctgctcgcgctgacctgtgcgcccgtttttctctgaaagatacgccagcggctctgcgctggctggaagaaaaccagcttgaagacgggcatgaatgtttgcttcgtcgcgtgatcagcagcgatggtcgctcccgtggtttcatcaacggtacagctgttcctctgtcacaactgcgcgaactgggtcagttgctgattcagatccatggtcagcacgctcatcaattactcaccaaacctgagcaccaaaaattcctgcttgatggctatgccaatgaaacctctctactgcaggaaatgaccgcacgttatcagttgtggcatcaaagctgccgtgacctcgcgcatcatcaacagttaagtcaggaacgcgccgcccgtgcggaactgctgcaataccaattaaaagaacttaacgaatttaatccgcagcccggagagtttgaacaaatcgacgaagagtacaaacgtctggcgaacagcggtcaattgctgaccaccagccagaatgcattggcattaatggccgacggtgaagacgcaaacctgcaaagtcagctttacacggctaaacaactggtgagcgaattgattggcatggacagcaaactgtccggcgtacttgatatgctggaagaagctaccatccagattgctgaagccagcgatgaactgcgccactactgcgatcgtctggatctcgatcccaaccgactatttgaacttgaacagcgcatctcaaaacagatttcgctggcacgtaaacatcacgtcagccctgaggcattgccacagtattaccagtcgctactggaagaacagcagcaactggacgatcaggccgactcacaagaaacgcttgcgctggcggtaacgaaacatcatcagcaggcactggaaatcgcgcgcgcattacaccaacaacgccagcaatatgcagaagaacttgcacagctgatcaccgacagtatgcatgcgctctcaatgccgcatgggcagtttacgatcgatgttaaatttgacgagcatcacctgggcgctgacggtgccgatcgtattgagtttcgggtaaccaccaacccaggtcagccaatgcaggctattgccaaagtcgcatccggtggtgaattgtcccgcatcgcactggcaatccaggtcatcacggcgcgtaaaatggaaaccccggcactgatttttgatgaagtggatgtagggattagcggtccaacagcggcagttgtcggcaaactgctgcgtcaactcggcgaatcaactcaggtgatgtgtgttacccacctgccacaagtcgcgggatgtggtcatcaacactattttgtcagcaaagaaaccgatggtgcgatgacagaaacgcatatgcaatccctgaataaaaaagcgcggttacaagagctggcgcgcctgcttggtggcagtgaagtcacacgtaatacactggcgaatgcgaaagaactgcttgcagcgtaaacttttttcctgcttcacggtcagagtaaacagcaaaacgccgtaagaccggaaagcaaaaggttttaaagtgatgaaaggtctattatcatcggcatattacagatgagccacgtactgctcgggcccgaaaaggaatcaaatcactatgcgctgtaaaacgctgactgctgcagcagcagtactattgatgttgaccgcaggctgttccactctggagcgagtggtttaccgtcctgacatcaaccaggggaactatctgaccgctaacgacgtatccaaaatacgtgttggcatgacgcaacaacaagttgcgtacgcattgggtacaccgctgatgtccgatccatttggtacgaatacctggttctatgtcttccgccagcaaccaggtcatgaaggtgtaactcagcaaacgctgacgctgacctttaacagtagcggtgtgttgaccaatattgataacaaacctgcgctgagtggtaactaataataaagttgctctcaaagacgttaaaaaaggtgctcaatgagcaccttttttctgtctgttatttattcgctgatttttctgctcgttgcctgcgaagctctttcggatcggcaatgagagggcgataaatctccacccgatcgccatcatgcacactatcgcttagttttgccggacggctgtaaatgccgactttgtttttagttaaatcgatatcggtacgcaattccagcaagccactggcgcgaatagcttcttcaaccgtcgcgccctcctgcagcgtcactcgctgcaggtactgcttctcaggtagcgcataagccacctcaacggcaattttacctggcactgtaaacctctttcgcacgaaccgtaaaagcctggaccatattagccgccagctctttaaacacgcgaccaaaggcgagttcaatcaacttattggtaaactcaaagtcgagatgaaactcgatacgacacgcctcctggctcagcggcgtaaacttccatccaccaatcaatttcttgaacggcccatccaccagattcataagaatactttggttactggtcaactggttgcgggtagtaaacgttttgctgatcccagccttagagacatctaccgccgcagtcatctgcccaggagtggactccagaatccgacttccggtacaacccggcaaaaactgaggataagactgaacgtcattcactaactgatacatttgctccgcgctgtagggtaccagtgcggtccggctaatctgaggcataacaatttccatcaacaaaaatccaacaaataatatcatttatcctgctgtaaaaaaaacgctatcccggcgctgggtaacatcgggttcatgctaagatagagccttgtcccccgcaggattgatatggggtgttttcgatttcagattaccgatgattcacgacgcttatgacgaagaaaaaagcacataaacctggttcagcgaccatcgcgcttaacaagcgcgcccgtcacgaatactttatcgaagaagagttcgaagcgggacttgccctgcaaggctgggaagttaaatccctgcgcgcaggaaaagccaatatcagcgacagctacgtccttctgcgtgacggagaggcatttctgtttggcgctaacatcacgccaatggccgtggcctccacgcatgtggtgtgcgatcctacccgtacccgcaagttacttctcaaccagcgcgaactggactcattgtacggtcgcgtcaatcgagaaggctataccgtagtggcgctctccctgtactggaaaaatgcctggtgcaaagtgaaaatcggcgtcgccaaaggtaagaaacagcacgataaacgttcagatatcaaagagcgcgaatggcaggtggataaagcacgtatcatgaaaaacgcccaccgttaaacctgcactccaattattgaccagttcctcaccgcgcctccctctccggcggcgcgaatgaacatcttattggctatcacatccgacacaaatgttgccatcccattgcttaatcgaataaaaatcaggctacatgggtgctaaatctttaacgataacgccattgaggctggtcatggcgctcataaatctggtatacttacctttacacattggggctgattctggattcgacgggatttgcgaaacccaaggtgcatgccgaggggcggttggcctcgtaaaaagccgcaaaaaatagtcgcaaacgacgaaaactacgctttagcagcttaataacctgcttagagccctctctccctagcctccgctcttaggacggggatcaagagaggtcaaacccaaaagagatcgcgtggaagccctgcctggggttgaagcgttaaaacttaatcaggctagtttgttagtggcgtgtccgtccgcagctggcaagcgaatgtaaagactgactaagcatgtagtaccgaggatgtaggaatttcggacgcgggttcaactcccgccagctccaccaaaattctccatcggtgattaccagagtcatccgatgaagtcctaagagcccgcacggcgcaagccctgcgggcttttttgtgccctcaatttgtcccgcgaagtccgaagagaactaattaaatccgaaccttttaggcccattgataggcccaacgaaaagctctattgtttacgttgggcctaaacgcagggagactccccatggcaagaaaaaccaagccgttaactgatacggaaatcaaagccgccaaacctaaagatgccgattaccagctttatgacggtgacgggcttactctgttaatcaagtccagtggcagtaagctttggcaattccgttactatcggcctttgaccaagcagcgaaccaaacagagcttcggtgcctatcctgccgtctcgctttctgatgcacgtaaactcagagccgaatctaaagttttattggcgaaagacattgatcctcaggaacatcagaaagaacaggtgaggaattctcaagaggccaaaaccaataccttcttgttagttgccgagcgttggtggaatgtgaagaaaaccagcgtaacagaggactatgccgacgatatctggcgctcgcttgagagagatattttcccggcaatcggtgatatcagtatcactgagattaaggctcatactctggttaaagcagttcagccggttcaggccagaggtgcattagagactgttcgccgcctttgtcagcgtattaacgaagtcatgatttatgcgcagaacacaggcctgattgatgctgttcctagtgtaaatatcggaaaagctttcgagaaaccgcaaaagaaaaacatgccaagcatccggccggatcaacttccgcagctaatgcacaccatgcgtacggcaagtatcagcatgtccacaagatgcctgttcatgtggcaacttctaaccatcacccgccctgccgaagctgctgaggctcgatgggatgagatcgatttcaatgctagcgaatggaaaattcctgcagctcgaatgaagatgaaccgggaccatacggttccactatctgatggggctcttgctattctggaaatgatgaagcctctcagtggtggccgagaatttatctttcctagccgtatcaagcccaaccaaccaatgaatagccaaacagtgaatgcagcactcaagcgtgctggcttaggaggtgtacttgtttcacacggcttgcgttctatcgccagtacggcactcaatgaggaaggatttccacctgatgtcattgaagcagcgcttgctcatgtagacaaaaatgaggtgcgtcgcgcttataaccgcagtgattatcttgagcaacgtcgtccgatgatgcaatggtgggctgatctcgtaaaagcagcagatagtggtagcatcgttttaactcatttgagcaaaattcgtcttgtcggataaaatatttatcagcccagctctctgggctgatatttctaaaagatcgcactaaatatacgcggaatagtgctctactttcgtttagccctttcagaggtaagacattagggcaatttcactgtatgactgcgcagtcatcgagtctgtggggtgttgctccttttgcaacgtatcacttgtcaataaatagaaagtgtagatgtattaggcgcagctatttagtctatatggcaagtagtaattatttacttcttttttttctacgaacagcgctatcgaaagcttgttttacatcttcattttttaaagaccattgatttaaaatagtatcaaccaaagcatcttgactcattgttgctacacgatattttttattttgattatttatctcaaactctgacatttgaataaaatcccatagcggttcgataagttcattaactgctacaaccttatttttccacccatcattcggaacagagtcattaattagctcaaccaacttcagttgaatgatatggtacacttccgctttgcttttgccacccttctttcctgcactccgcctgacttctgataattttttttgattacaaacagagatgttaaaccaagtcatacctatgcacttatcaaataactccgcagcccgatgaaatgctttaaaggcaacgttttcattttcagacatgatagattttccccagaaaaaagagattgaggcgaacataaggtgtgccttgaaaatgtcattaatggaaaatggctcgataacaagaggtaaaaacgtttccttggtaaggtttgaacttagatttttccagcattcttgagctggatcatataattcagtgtattcttcctttatctccagttgcccattcactgtatggtgccttgtttcccatggtacatcgcaggaatataacctcacacgagtacctattttctcagagctccagaattgctctcgcattctgcctagctcaatccgtatttccggatgatcttcctctagaacatcagtatccaccgcccattcgcattcggacatgtgataggcgagatcacgtcgttttctacaaatttgttcataaaaatcattcagagaaatcataaaaccaccataaatcaatgtattagaggttgtaaaaattgtatttttggtacatgggttttttgccttaaagatacccattaatctctctgcaaccaaagtgaaccaatgagaggcaacaagaatgaacaatcgatcggccgttagaatactacggttaccagcggttatccaaaaaacaggtatggcacgggccaccatctatgactggttgaaccccaaatcaccacgatacgatgccacctttcccaaaaagcgaatgctcggcgtgaaatctgtcggatggattgaggccgagattgatgagtggttatcacaacgctgtaaacttatttgagggtgttacatgaattcatactcaattgctgtcatcggagtgtaaacatcctgctatttccgccattaatagcggaatagccatatttgctaaacaatttcttaatttaattaaataagaggcattgcatgttcaatggtcgtcctttccctgtagatgcatttcctaaaattatcaggaatgcaatttatgaagtggaacagcatacgcaggcccctcaaggtttgattgctgcttctgctcttggggtaatttctcttgcctgtcagaaccggattgatgtttgccgattgaataatctacgtggcccggtatcacttttcttaatgactctggctgaatcaggtgaacgtaagagtacggttgataaactgctgatgaagccattatatcaactggaagaggatttatttgaaaaatacacccacgatcttaccgcatggagaaatgatgaagcaatttttaatattgaaaaaaaagcactgatgtcaaaacttaaatcagatattcgacgtaacaaagatcacttggcaacaaatgaaagacttaaagaactacttacgacaaacccgaaagctccagtgagattcaaatttttatttaacgatgccacacctgcagctattaaagctcatctctgtgggcactggcgatcagtcggcatcatgtctgatgaagctgggatcatttttaatggttacacacttaacgagctgccgtttatcaataagatgtgggatggttcaatatttacggtggaaaggaaaaacgagcccgagaaattaattagagatgcaagaataacactgtcgctgatggtccagcctaatgtttttaagggttatatcgacaggaaaggagatatggcaaaggggattggattttttgcacggtgcctcatgtgccagcctgcttcaacacaaggtaacagaaaaatttccaacccaattttttcaaatgaacatttgccggtatttcaccaacgtcttatggaaattgttaatgagagcatcattaaaattaatgaaaataatcgcatctgcctccgattctctgcagaagcagaaagacattggatcgaattctacaaccaggtcgagtcagaaatgagaatgattggccttctttatgattttaaggattatgcttctaaaatggcggagaacatggcgaggcttgctgccttacttcattacttcagcggtgatggaggcgatatatctgttaccgcagtaaaagcagcagtggagatagtggcttggtatattgaagaatacatccgcttgttctctaaaaaagaagagttttctttagatgtttcagaagcagatgagctttattgttggataaaagattactgcacgcaaaaattttcttcctgcatcaagaaaaatattatcttacaatttgggccaaataaatttagaaatcgtgacaaggcaaatgaattaattagaatcttaatttcacaaaacaaaatatttatatcttcatggggtaaaacaaaaataataaacataactcattgtgttttttgattttaatgacaatctaaaaggacttaatttaagagtaaaaacaaactctaaacccagttcggataaaagcttgtcatcttgataggtaatatataggtacatagacacatcagaacgatcacttactccaatatcattggccaggatactatatgacatacgatagtgaattcggatcacatgtatccctatatcgggatagaatcaaacaggttattgatgactccctaaacgaacatcttaactcaatgattctacgtgttgatctgcatgacccaattgatacagaaaatatggataacccattctttcaacccagggttgactctggtgctatatctcgctttaccagtgcgttaaaagcaaagcttaaacatgataagcatattaaaactcaacggaaagactggcctgatagtcgacattccactttacgttacgcatgggtcagagaatataccaaaaatagaaagcggcattaccatttgatactgtgtttcaatcaggatgcttattatcatttaggtgattacgacttaaaccgtaacacgttacgtacaatgataacgacagcttggtacagtgcacttggcatccctatagatagctcggggaagttagttaattacccgccaaatggcaaataccttctcaatcgtaaaagggacaactttgagcagacttatagcgatttgatgaatagggtggattacatgaccaaagtaaggactaaaatagtcggtgacggagaccgtaatttcggctgcagtcgcgggtaatttattttttacaacaatggcctttcttatggctggaaaggcctgatttgtttgtattaagatatcggtaatcttttgatggttggaagcccgtcctggtagacgacctagcctaccgaagatgtgagttattcaaaaatgtcgctttcccgcgttccgtagacaaacgtacctaaatcaatgtcgtctaataccgagcgcgcgcctgataaacatctgatcaacgtacccaatcgatctactccaaatgtcctgagtatcccgaagatactggctcaactcatccacatcagcctcgtcggaaaattccagcaagtctaccagtcggtgtaacgtctgaatgggaatgccaatctcttctaaggcattgacacctggtggtagatggaaactttcgaacgccaatttgacatgtgtgtaatcgactttgctgcgtataccacgctttacagcgtggtgtttaactacatcctccatcaagctgagcaccttaggtagggtatagccgaaggtattggttatgagcttcaaatcattgttgagggcaatggaaagagtacgtttctccccttcagaaatccactgtcgtgcataatcgatctgatttttcagatattccgaataactttcagcacttaaatagccggcaagttttgcgatcatgacatccgtaggcttaacagggaccccattgcgactgaacgtatggggaaccagtctggcaatgatctttgcaaaggtcttgaggaagtttgtcgcgggagtccagtgaaacactaacgaggaaaattcgttatcgtccatcatctcgaacatgctttgcagcatttcgaactgctcgacacggaagtacgaatgcttcttcacaaggtcgatggaaacacggtcgtttatgaaaacctcatcaaagcgatcctgtgaaaactcggacaagtggtctggttgaacgctggctaacaggttgattggggtatcaatgccctgaataccgagcggaatatccacctcttgattgagattgtcttccgggatttcctccaggcaaaagattttgccgacgaagtgaacgcccatgcgcccggcgcgacctttgatgttcccatgggtgaatttgtcaatgctgcgagttccatcgcggttgtcgtagatcacaacgttcttagcgatagtgttgactccttcaatgatcgtggaggtgcagagcaaaaagcgcagttttccagcattgaattggtcggcagtgtattgctgcagtgccctcggtagcgcgccaaaatgcaagccaataccgtttctaagggcgactgtgtaatcccagtcggcatcgaactcttcgctgacccagtcgacatggggattctcagtcggagtgccatgcccaagcctgatcagctcgcgcgccaccaggcccgcaacagttggtgacttgcaataaatgatcgttgcgtcgacacatgcgtgcgcgatttcccccagcgctttgagcttggctttgtcgtcattcgctttgatgccgaacgtcttaacatctagcgcgactgtattgaagtcggtagaaacgaaagtatgcggatatccaagtttttcgagaccgcgaatgctgttaacgaacggtcccgtcaggtaaaactgcctggagaccttaagcagtttgcttaacgcaatgttgagctcgatgactcgttcgtcttgatgatcaatgtccccgcttttcagttgtcggaacgccaacttgtaaaactcgtcaatgacgaagaggtcaatgtcgacgatgtcgtcacgctcgttcactcgctcctgagttaacacataaacagcctgatcggaatggcacacttgggaactgtggtggatgatctgatatcggtcaccgaatcgctcttgcagtcggcgacgggtttcgtcggcaagagccacggttggaacaaccagaacaagccgtttcaaagttcccatgccgagcaatgaatcgacgattgcacttttgcccatgcttgtaggtgcactcagcaccacgttttgaccagacttgagcagatcgaatatgtggaactgcattgagtggaaaacataaccatccgagaatggcgtccggtatagctcaagcaccctcaggtcatccggtgtcaggctggtgaactcctttttgagatacgggaacaaacctgattttctcaccatatttttcaaaattgtggtgtgctcggaaaaccgctcgcgcgaatcgagagctcgcacgatcaagtcccgtcccaagtcatacgaaacagggttagacaacagcttgttaaccgcaaacagataattgaacgatgagaagtcctcaccctgcaggctatgtttcgcctgttcatagatctctgtcatacgacctctctcaccttctcatcaactaattgggttaaccgctcaagactcggggctggataaatgaatacgtggatgcaaagattcgcaaacggcgaatcctcgatgaggtcagccgcgaatttttcgaacagcaccgctgtttctttctccaggtcatcctcgaaccccggcgtttcaggctcggttagtagattagagtcgtagcccacgaacagaacaaacgtgaaacgatcgaggtgagcatcgaaaggttggctgccatcaagaatttcgtcaatgtcgtggcgaagcaggtagttatcgtctttaatgtcgaggatttttttgcgcgcggtatcgatgcaatccgaaatgtcctcgtacaactgatcccgtatctccggcaatctgacggcaatgttaatatcagtcaccaactcgctgaagccaatccaaagctgatcaccttctggatcgcggcgaacgatatgcacgttttcaagaattttttcggcccctgctttttccacgtatagcatgcaaggaataggctggctttcgtggtgctgccggatcgttgcgtgcaacagcactcgacccaaaaattcgctgacgtcatggagcgatttgaagacggaattctttagtcgttctcgcttttcaatgaatgtcagtttatgaatatcagacatttcttttggtcggagaaaaacctcatccaaccattgacagacgttatccgcgatgtgcttgtagcggtatttcttaagtgagtactgctgatgtagaacctggcctttacgcttagcgcagaccgaagccataggcgctctaaatggcgtaaggatgtggggtaagtcccgtttgacgtagattttgcggcctgaccgagattggtcatcttcgacacgctgcttgaaccactcaagtaggtctggtcgtaagtaggacttgtcatcagcactgtgaatgcgtcgagaatgctcgcccttgcgcgtcacagtatcaaggatgcggcaccaaatgtcttcggcgacggtttcggaactgagaatgaccccatgtagatcttgggaggccagccgtatgttcttgatccctagaagttccagttcgcgcagggatgaaaacacttcccatgtagccgcatcgatccaatctgaaacgcttatacctgagtctgttaaaaaattgtctgtgcgtttgttgaggtcatcgatgagttcctgtcgacctggcttatctagtcgggcgtttgggctgatcgtcaagtactcaagggttttgttgaccttttcctctgtgacgatggagtacctacgtccaagggacaggtcagactcacactgcattgatttgtgcaaaattgaactgcaggggatcgtctttttatcagcaccttttgaattctgaacgatgtccgaaatgttccaacgtgttttgccggtgctttttacctgaacgaagtcgatgtatccatcagatacaatgtcgatatcgtctgtgacctcgcagcgcacactgcggatagtcttgtcacgaagcattcgggtgacatggtaagcggctacgcagtcctgaaataagaaaccgtgcttggcggctactccgcctgaatcgttcgactccatttagacatccgtgacaattttgcgaaaattaaggagatgttatgacacagtccaatcggatcactgcatcatcaccagtgatctaaatacttcacagccattctcggtcgcaggtatcaagcttttcaggattccacaaatattgtaaccctgacgtctaatttggttatataacatactgccccaactaacgtaaggtaggcacagccttaatcaaggttttggttttcaaatagttcagagctgagaccgccaaccgcactatggcactatggcactatggcactatggcactatggcactatggcaccgccagcgattgtaatcacacttgatattataaaacacagttgcacgcattatttcctggttggtagggtcatatctcgatgctctttgagcaatgtcaacatcgcgtgttcatggctttctatattgttgatgccttgcccatccggaccccactccttatagctcatcatgatggcttgttttgggctctctgctcgttctgtttcgacgtagaattttttcttgtctgctggcgaataattactaagtatcgagttgctgcttggtgagatcaggaagaggttaccgaaacgatggacatcatcccccattttgtggactgcccccccggtagacgatcctgccctatagttggagtgccccctattcaggtggctaaatttagcaaatcaatacacttcaggggggtattattgtagagtttccccatatgtttctatgggatccaggaaatgacaatcaggagttacaaaaacttaaatctggtcagggcaaatatcgagactgaatccagacaattcattgaaaataaaaactattcaatccaatcaattggtcctatgccagggtcaagggctgggcttcgggtcgtatttaccagaccaggggttaacttggcaactgtggacattttttataacggggacggttcgactacaattcaatatctcactggagccaatcgttctctgggccaagagttagcggatcatctttttgaaaccatcaatcctgctgaatttgagcaggtaaatatggtactgcaaggatttgtagagacaagcgttctacctgtacttgagctatcagcagatgaatcgcatatagagttcagagaacactctcgtaacgctcataccgtagtgtggaaaattatttccaccagctatcaggacgaattgactgtgagcctgcatatcacaacaggtaagctccagattcagggccgaccgctgtcatgttacagagttttcacgtttaacttggcagccctgcttgatttacagggtttggagaaagtgctaatccgccaggaggatggtaaagctaatattgttcaacaggaggttgcccgcacttacttgcagactgtaatggccgatgcttacccgcatctccacgtgactgccgaaaaattgctcgtttcagggctatgtgttaaactcgccgcccctgatttgcctgactactgtatgttactttatcctgaactacgcaccattgaaggtgtcttaaaaagtaagatgagtgggttaggcatgccagtacagcagccggcaggttttggaacttactttgataaacctgctgctcattacattctgaaaccgcaatttgcagctactcttagaccggaacagattaacatcatcagcacagcctatactttttttaatgtggaacgtcattctctgttccacatggaaactgtggtcgatgccagccgtatgatttctgatatggcccggttgatgggtaaagccactagagcgtggggaataatcaaggacttatatattgtttgaaatcaccggaattaacgtctcaggggctctaaaagctgtcgttatggcgaccggcttcgagaaccctttgtcctcagttaatgaaattgagacgaaactttctgccctactgggtagtgagaccactggtgaaatcctttttgacctcttgtgcgctaacggtccagagtggaaccgcttcgttacgctggaaatgaaatatggccggatcatgctggatacggccaaaattattgatgagcaggacgttccgacacatatcctgagcaaactgacttttactttacgtaatcatcctgagtacctagaagcctctgttttgtctcccgatgatgtacgccaagtcctgtcaatggatttttgaaactcttctttctaaacgaaccagtatagaattcgcccttttggcatgatattaacttgtccaatatgatcaaatagcattaaccccccctcacaacgtcctgcatagggaacacgttttcccctgtgcacccacgactaaatttccccccctttaaacttctcaataatgtcaccaattttctggaaatcctatgatgcctttcccggtaaatggtgctgtgagttcagaaagattctgcaatctatgtgcattgaaaaaatcttcagatagatatcattctcctgaacaatccgatgaacggcagaacctcgcggttctgccgtttttgttttacttttcagaggagtggtgatgaaaaattttgaagttctgcagccactacagaactccctttccggtctaccgctatgggtatctgaacgtatattgcagcagataaatcagttaacccactacgagccagtgatcggcatcatgggtaaaactggggcgggaaagagtagcctttgcaatgccctgtttgccggtgaagtatcgccggtcagcgatgtagcggcctgtacacgtgatcctttacgctttcgcctgcagattggagaacactttatgaccatcgtggatctgcccggcgtgggcgaaagtggcgttcgcgataccgagtatgctgcgctgtaccgcgaacaacttccccggctcgacctgattctgtggctgattaaggctgatgatcgggcactggcgactgatgagcatttttaccgtcaggtgattggcgaagcataccggcataagatgctgtttgttatcagccagtcagacaaagctgaacccaccagcggtggaaatatcctttccacagagcagaaacaaaatatcagccgcaaaatctgcctgctgcatgagctattccagcccgtgcatccggtgtgtgccgtgtcggttcgcctgcagtggggactaagggtgatggcagagcggatgattaagtgtctgccgcgtgagcccagcagcccggtagtagcgctactgcaacatccctttcggacatgggtagcccgggagcaggcacgtgacgatttcggtgaaaccgtagataccatactcgatacggtaagcacctttccccttattcccgccccggtgcggaccattattcaggccgtgcgttcctcggtggtgtcagtggcccgcgctgtctgggatttcttcttctgagtgtttaattctgccctattattctccgagccctgtcgcaagtgcggcagggctttctttatttgttttacccatactgaggagtctgcttatgacccgtctggcttcgcgctttggcgctgcaaatcttattcgccgtgaccgtccgttaacccgtgaagagttatttcgcgtggtgcccagcgtattcagtgaggataaacacgaatcccgcagtgaacgctacacgtatatacccacaatttccctgctggacagcctgcagcgggaaggcttccagccattctttgcctgtcagacacgggtacgtgacccccgtcgtcgtgagcatactaagcatatgctgcgcctacgtcgggaggggcaaattaccggtaaacaggttccggaaattatcctgcttaactctcacgatggcaccagttcgtaccagatgctgccgggcatgttcagggcggtgtgccagaacggtctggtctgcggcgagtcgtttggcgaggtgcgggtgccacacaagggggatgtggtgagtcaggttattgagggggcgtatgaagtgctggggatttttgagcgtgtggaagaaaagagggatgccatgcagtcgttgcttttaccgccacctgtgcagcaggcactggcaaaagcagcgcttacgtatcgctttggtgaggaccaccagccggttactgaatcgcagatactctccccacgccgctggcaggatgagagcaatgacctttggaccacctatcagcggattcaagaaaacctgattaagggcggactcagtgggcgtaatgctaaaggcggacgaactcatactcgtgccgtgcgtggcattgacggggatgtgaagcttaaccgtgcgctgtgggtgatggcagaaacactgctcacgcaactgcagtagacgtttcatgttgccacgttgttaatatcggacaccacctgtccgcatcgctatgtgctcgtgtgcctcaatcccccggttatagcttttaacccccgttacatctggcttttgcagaaataaaaaatagtttctgcgttgtccataccctgtccgcccccctctttaaagtaatcacatcattttcagtcagttaactttcctggagaatctctcatgacacaggcagaacgccgccatgaccggctggctgtcaggctgtcactgataatcagccgtctggttgcgggtgaaacgttgagcgtgcgcaaactggcggctgagtttggcgtgtcagtgcgcacgctgcggcgtgattttcgtgaacgactgatgtatctggacctggagtatcagtccggatactgccgcttacgcactgctggcagtgagatgcagatggtgcccgacgtgcttatctttgcccaccgcagcgggctggccgggctttttcccggccttgaccgccgtctggtgaatgcactgctgatgtgcgatgagtctccctgcgtgatagcaccagccaatccggttccttcgccttcaggagcattgtctttctggagactgattcaggccattaccgggcgcaggcgggtgacgctgattgcagaggggcgacgctgtgagcgcctagctccctgccggttactcatccaccagcagacctggtatctggtggctgaacacgaagggcatatcgccgtattcacacttgatgaaatccatctgattcagcctttgcaggagacttttcgccgcaatgacagtctgtgtcgcctggttgaagacccggtcttcattcaggccttaccccattttcgctttatccagcattcactgcttacgtttgttccggccgacagcccaccggaatagcgcaggcgttgttatcaacccggcaacatggaggagcccagtgcccgttattgccattatcgccattgttatcatcgtcatcattctgaacaaaaccggagtgtccgacagcctcacggccctgacacttgcaaccgttgccgcactactgacgggaggtggtgcagccggtgctgccagtgtcgcgctgacgccgttcgtcggcgtgccggtgggtatttgttgtgggaatttatgtctttgccaaagtggttcgtctgatttcagggaaaaaataatgaaacgtaaaacactacctctgctggcgctggttgccacctctctgtttctgagcgcctgcgatgacaggagtgatgacctcaaagctatcagtaaatttaaggacctcacgcccccgcgcttcagcgatgtggtcagccgtcaggatgatgtcagcgaagaatggtcacaggttggcttctcatccggtctcaccctgcaggtcttacgtacccgtgagtcgcccgatggttgcgagggtggcagttactactatctggtagatatggaggagaaaaccgtccagccgctgatgaatgcgctttgtattgccgacaatatcaaactggaataccacgaagttacggacccgtatacgaaagaaaaatacttcgaatattcccatgacggcaaactgatgggacggctgctgataccgtcaaaccctgataaccgggaataaaaacaacgagaaaggagacataaatgaaaatacgttcactaagccggtttgtactggcaagtacaatgttcgccagctttacagcctctgcggtccccggactctggcaacaggggtacggtcagggcaatgcggaatacagtgtgacggatgccagcggaaagatgtttaccatcaactgcacgggaaatccggaccagaacggtatttaccagcactcggtttttctgatcctcgccggggataaaacggtcagctcgcatgatgacagtaccggcatcacagtggtgatggaccataagcaatatgccattccctcaacccttggctggcgtaacggagataatgcctggttcagcttcatcatggatatccgtaaggcccggcagttcgacgtctacgtcaatgaccagaaagttggatcgtttaaccctgatgttcggaatgcacaaaaggtcctgccaacattagcggactgcactaacgactgacggctgcgccttccctaccataacaaccctgattgcctccggcggtcgggggtttcttttttctccttaatctccagaggtaggccacgtactttcgaacgatgagcgcagtggtcagtttttttcagatatatttatctttttttggctgtaagctccgctgtgagcgcaggctgtgttaaaactcctgatcactttttggtctaagcgatggtttcatatgatcaaccattcttgataaacccatgagacggactaactttttcattaaaattaaaaagatatgaatgaatactgcggatatcaacatggccaatcacattcaaggacaaggcaggcatcaggtgacattgctccctgatgcactcgatgattttgtcactgaagatatctgaaataagtttaatcagttcatcacgggtcggtggcatatcgagataattaattattgtcggttcgttgccgttgttatgaagcatctccagcgtgttgcgtgaggtgccacaggccgggttgtgatagatggtaatgttgctcatatcagtatctaattacaaagtgacagagagccgccacgccagcgcggccagagtgacaaacagcaccggcacagtcatgacaatgccggtacggaagtaatatccccaagtgattgtcatatttttctgggcaagcacatgcagccacagcagagttgccagactgccaatcggggtgattttcgggcctaaatcacagccaatcacattggcataaatcattgcctctttgacgacgccagtcgccgtactcccgtcaatcgacagcgcaccaatcagcaccgtcggcatattgttcatcactgatgagagaaatgccgtcaagaagccggtgccgaacgtcgctgcccataaccccttgtctgccagcagattcagcacgccagacaggtactccgtgaaccctgcattgcgcaggccatagaccacgatgtacatgcccagtgagaaaataacgatctgccatggcgcaccgcgcaggacttttccggtgttgatcgaatgacctcttttcgccaccacaaacagcactgctgcgccagcggccgctatcgcactgaccaggattccctgcggctccagaaagaagaaaccgacaagcagcaataacaggacaatccagcccgccctgaaggttgccagatccttgatcgcactggcaggcgtcttcagcagcgaaacttaatacgttgccggaataactctgcgaaagaagagatacagcataatcagcgtggccgcaatcgctgccgcatccacggagatcataacggaggcgtactgcgcaaagctcagaccgaagaagtccgccgagacgatattcaccaggttagaaacaatgagcggcaggctggccgtatctgcaataaatcctgcagccatgacaaaggccagtgtcgtgccctggctgaacccagtgcgatcagcatcgcaatcacaatcggcgtcaggatcagcgcggcgccgtcattggcaaacaacgcatcaacagcggcaccgagcaagactttccaggtgaacagcgctctaggtaggaactttgtcgttgatagagtcttcagccatcaacactgtatcgagtaatgaaattggttgctagaaagtcgatgatttgttgcgtatgattaaaaatcaaccttaaaggctttatacatggatttgctatggcttttgtatcagaaagagaaattgtaagaaagatatttagcaaaaaaattgactttacgatcttggcatttttctatatttcctctattttttttcttctttgtagtggcgttctctttcaatattttaccgctgccttcacaaaaggtaattgttatgaatgctcaatgaaacttgattacataaaacaattttatttttcactggaaaccgcatggtacctcatatctgctgttgcagtatttattgcatctgtttttatacagcatagaattaaagcttatttaacattattagctattacatggattgtactaacaataacagatgtggcgttaatacacgccttagacaatatagccatgaataatattttgttaaatatactatataatctttttggggcgattttattgtcactgtttatgtgtttatcaaattccctccttttccaccttaataagataaaacatattccaatgattttatcggcaatgattccattagtttccgcaataataatagccatactcataaccgctgttatatatttattgtttgcccggcaggcggtagagattgagatggatatatctgaaggttcagacatcgcatatgtaggtgtaaaagataatgaggaatcatttgggtttttaaatgataaaaaaacagacacaccaacgtatctggatgtaatcacaaatggtagtttgatatataatgatacacagggtttaagtggtgctgatatttatattgtctccggttgttatgcccttccagatttacttcgcaatgtaccgcttgatgctaaaaaatcttttctgaatgtaaaaaagctagaaatcacacagaaacttccaatgatggggttcatacaaggtgaatccgctgatgtgatgcctaaagcagcatccaggttaagtttgagcaagcaagatgataaatttatgctagcctcaagtgttactgactctcaaataaaatttaaatcaaacaatgcacaattgatggttgctttcgcatttatgccaataacaacgaatggtattttacatgattatacatacgatataataataaatgataaaaaatataaaattgaaaatcatgttgcacctctatctaggcttgataaaaataagaagatgaagtgtgaataccagcaaatatcggatttaacaaatacgtataacattaatgcaaattacttaacgggttttttacttgtcctaaaaccagatgatattattaattacaacaatagcccttccgtactactcaagactgattttgcgttctataaaaaaacataccagaagcttgataaaatatatgatgacataagcaatggaaaattatcttcactgagagcaacaggtatctcccagtttagtatcaacgggaaacatttgtcgttaaggccagaatcggagattattatttctgaagggagtttgtatggactagttaataaaagcaaaaaaatcaaaatatatggcacagcagatcttgtttttgttgataacaagataatgaaccttcgtaaaataacttatttgcaatctaagctagaaatttttggttcttctattatggatatattaaagtatatatttggtttaggtctgctagcaatttctataaaattcattcattcttactttaagaatgatgtgaatgaaaatttattcttgtaacgcatttggctccaattggagcctttttatgactatttattaaaatatcctaagttaagcctgtttttaaagcaggcttgagcgtgaagcggacactcatacctgctttaaagtggcgtttttgtcgttacccatacctatattttctgttgtttaactgccagaactgagcggttgaaaagccagaaatatgccgagccagcggcatggaagcgccagcagctgttgaatggagtactgtaggcaaatggtgccgtaaccggctttcgtactgaaaggttctgtctatcccatcccttctcttgtatctaacatttagttgtgaatagctactgtaaatgcccctacaaaatgaaccattatttttagagggcgtctggcactccaacttccgcttttggcacagaacggcctatcagcaatataaaagcattcagatatatatcatttctacaaacatacccgattaacggcagaatctcaggattctgccgcttttttattatttttcaggggagtagtaatgagcaactctgaaggttggtagtcattttagcaaacgctttctggtctgccgcagtgggcatcggctgattgcgtagcagggccactggtatctgccggtatcaccgacattaacattgaagacgaccagggcattcacgtccgcctgatagttcgtgatgccgaaggtcggatggttggcgggcatggaactttgaaccggacgccggtgaaggttttaaccgctatatccacaggtcaggcatccgcaccgacaccttcccccgctgactccgaatcatttaccagcaacatttcaccttcccaaacgcgctttattacctcatacgccagccatcgccgctggcgttttttattcacggagacatacccatgacaacacagacacagtacgacctcgtacccgctaacggatccgaatttgagttgagcgtaacgcaggtacccgatgaacagcatatccgcttctggccgcagcactttggcaccatcccgcagtggataacgctggaaccgcgcattttcgcctggatggaccgcttctgtgatgagtactgcgggggtatctggtccttttacacgctcagcaatggcggagcgtttatggctcctgatgctgacggtgacgataaatggcatttgctcaacggcatgaatggcaatggtgcggaaatgagcgcggaagccgcaggtatcgctgtctgcctgattgaatatagccatcacgcctgcctcaccgaatgcgatgccatgacggagcactattaccgcctgcgggattacgctctgcagcaccctgaatccagcgccattatgcgcattattgattaaggatactcatgatggaacagtcactcatcccacagacaccggtacttccactgaccgcacaacgcacggtaaaacgcgccttaacgctgcttgaccgacacctgcgcgaaacaggcgtggcattcacctccactcaggctgctcgtgactggctgaagctgaaaatggcggggctggagcgtgaagaatttatgatgctgtatctgaaccagcagaaccagttgattgcccacgaaaccctgtttgccggttctattagcagtaccgaggtacatccccgtgaggtggtcaaacgcgccctgtatttcaatgcagcagcagtgatactggcgcataaccacccctccggcgacactactcccagccaggcagataagactataacgcagcgtctggtgcaggcgcttcagctcgttgatatccgtgtccctgaccatctgattgttggtggcaggcaaatctattcgttcgcagaacacggtctgctttgaggtattacatgagaattatcagtaaacgccgggcaatgacgatataccgccagcatcctgagtcccgaatctttcgctactgcaccggaaaatatcagtggcacggtagcgtctgtcattacaccggcagggatgttccggatatcacaggagtcctggctgtgtacgccgaacgccgcaggaccgcagcggaccgtatgcttgactgatgagtatcaccctgaactgacaataaagaggttatgaatgagcaacaccacatggggcctgcagcgagatatcacgccgcgcctgggagcacgtctggtgcaggagggcaaccagctgcactatctggctgaccgggccagtatcaccggtaagtttagtgacgccgaatgtcctaagctggatgtggtatttccacattttatcagccagatagagtcgatgctgaccactggtgaactgaatccccgccatgcccaatgcgtcaccctgtaccacaacggttttacctgcgaagccgatactcttggtagttgcggctacgtatacatcgctgtttaccccactcaacgctaactaatttcacgagagcaagcatgaacactctacctgctacaatttcgcaggcggcgaagccctgcctgtcgccagtggctgtctggcaaatgctactgacacgcctgctggaacaacactatggcctgacactgaacgacacgccgttcagtgatgaaactgttattaaggaacatatcgatgctggtatcactctggccgatgcagtcaattttctggtggaaaagtacgaactggtacgtatcgatcacagaggattttcgtggcaacaacagtctccatatatttccgtagtagatattctgcgagcaaggcgctctaccggcttgctaaaaactaatgtgaaataaacgcttaaatacagagcagactgaaggaaagcaaaatgctaatctcatagacgaagagactcccgctgtaacctcccctcccccgaaaaaacctgacattttcttttaggaccaacaatgggaccaaaatgaaaattgaactgaagattacaatcaatttaacaacaagttacacaaccaattcagactccgccagcccaccaatcatgattggacggtgtaaggacaacaccaacaaaaacaggaagttagaagtctcagcaaaacaccgaccagacggtgaggagacataaaaggatacgcaaaggagccgcggctcctggtaacatgaaagcccacagatgtgggctttttcgttgatggtcagaacgaccagttcacaccagctaccgcgttccacggggattccacaccggcactatggctataccccaccccaagatgcccgcttaacgtactgctgaatgaggctttaatacctgcctggtatattccacgtctgcccgacaaataattgacgaaattaccgtcactattcactttcacccggttatcatcgacaaattctttgcgcacagccgccttcagccacggctcaacttccataccgttccccagacgcatgttgtaactcagcgttgcgcccagttcacgatatatactgcgggtatcgactgatttcgatttcatgccattggataaatgatattcggggttatcagcggtgaaccccgttaacgatgcatacggcgtcaggttccagttaccatcggtaaatcgcatcccggtttcaatgtgaccgcccagcccgttgctgtggtaactgccattggcggctccaccgctgctcattttacctgctacgttacttttaaaacggttcagcttcacgacaccgtccagatagaaaccactttcatgttcccaactggcatagccgcccagagaataactgcccacactgccatgtcctccgcgatcaaaaccgatatgtgaatgggaatagcccataaaagcgcctagcgtggtaattccttcaggaatatcattacggctgtcgatccccactgtcattccggtcagcgtctgctcaaacccggcacccgcatcggtggtgacattattacgggtgttatacgtcgccccccagacattattgttgtgtggactcgctttcattatgttcaaccgctcgcgaatactgtttagctcagcatcaaataccaacggtaatgttgctgccatattgagtacggctgccgtagaaggcgtaatgcgtttctccggaacgggtgtcggcgttggatcgggagtagggtctggttttggatttgggtctggctttggatcgggttttgggtctggctttggatttgggatggggtccgggttgggtttgacatcattggtcaggttccagttgctgttgccgtcacttttcaggacatactcataggtcccaagatcaacgaaaccgccggtattgcccagcgtaaacgaagcatcccctccccctgttttcaccagcgtcatcgcgtcgtcagactgtgggctgacgccggtatcctgaacaaagattttaaaattaccagtggcgttgttgttgacgaccagttgatcgccccgggagcctgcaacgttggtatgcaggtagaaattaccgctaccggaaagttcattggttgtcagcgtattgtagataccgttagttgtggcaggcgctgctgtttgtgctgacaaataaacatcaccgtcgttgagtagcaaactgtttactctatattcgcagttgctggtacctgcacaggaattattgctgttaagccagacactgccccggctggcagccgtcaggtcggcaagcgtggtatcgacgccatttcccagagtcaatgtcgcgctatcggtaatccggaccgccccttcgagtttaactggcgtaacattatcccgtggcgtcattaacgacaggcttcctgtcgcgccactgaccgatgcatccgccagcgtacctgcgtagacgattgccgtaccgccagcgacctggagatcttctgcccgggccagagcctgaaactcatcttttgaccgcccaagggtatattgcccgccagagttaacctttgtggcggagtcctgacccaggttttgcattgccccacccttgccaaccgtggagtcgcgagcttcggtacctgctaataccaataaattaccgccattttccagcaacatattggtcgctaaattgccggaaatggaaaaagtaccgtactggtgagtaccgctgatttcaataccgttagccgtgctcgtctggagagcggcaccgctgttctggacgatatctgtcgctttgccattatcgttgactgtcagcgtaccgccttcattgatctttgtttttattgcctctccgttagctgaaactgtttgtattccgccgtcgttaattgttgtctcattcgccacaccctcgacaatttgttcaccgccggtgagcgtcgtgcctgtcgcagtggcttttgttttgacgatctcccgtccgcccatattgacctgtgttttgtcagaagaggtgtctgactccacggttaacacgccgccatttgccagcaggatattgttcgccgcaccctgctcgatgctgaacgcgacgccatccgcgcgtgttcctgtgacccgcgtcgccctggtggttgcaaccaaagcgccctggctactctgctgtatccccgttgcgctgcctttctcccgcacatcgagtgtgccgccgtcattaagcaccgagttttcagccaggccgccctcattaactacctgtgaacccccattaataatggaaccttccgctgtcccgtttgccataatttgttgtaggccagagacgatatcggtattgattgccttaccataattctgaacggtttgcgtgccaccattgatgtgtgttttctctgttgacccaccatcaacaatttgttcaccactttcgatatttgcttcagtggctaaaccatataccgtttgcttgccacctttgatatttgctttatcagaagtggcactggcatatattgtttgggtgccagcactattgagtacagtgccaacatcttttccataaacatccattttgccgttggcattaataatcgtgtcaactgcgcgggaaccagtgacgactgttaatgagccagcgttttccagcactacatttttagcttctgaattcctgatgtagaaagcatcaccataactgttggttccttcgataagtgttccggaggtcgtggaagcaattaatgcgccgccggattgttgctcaacatgcttagcctcaccaccgtcctgaacctccagaacgccgccattattaagtctggtgctatctgttttagcctccttctggacaatcagcttaccgccagtatcaatggtagtatttttcgccgaggttttagccactaccgtcagttcgccggtattttccagcacaacataattagcctcccctccggtaatagtgaagtgagagagcttgttgtatccttcgatatcagtccctgcacccgtgttggcaactaaagcactgcccgtctcctggttaaccccatgtgcaataccgccggtatagacaatcagcgagcctccggcgctaatattgctgccaattgccgtaccatctttctcaacaacctgccggctcccggaggatataattgttgtgtcagctttcccgccgcttttgatattttgcgttccgctgttgatattggtgcctgtggctatgccataattattaatattctgtgtgccaccattaattatggtatttgtcgcgtttcctgcaacatccataaccccgccattatctattcgggtcgcatcagctttagcattggttaaaactgacattgttcctttatctttaataatcgtcttgtttgccgaaccatatgcgtttatgtctaaatgaccaccgttttccagcaacacattgtctgccacgtgattgtggatggagaatgcaccttcactattcgtaccgctcaccgtcgtaccgttagtgttagtttttaaaattgcaccatcgtgctgggtaacatttgttgccgtaccacccctaacatcaagcacgccaccagaataaacttcaataacatccgaggtgctggtgttatcaacaatttgcgtgccaccagaatagatatgcgtattttttgccgttgacttactattcagagactgagttccgccttcaatcgtcgtgtccagcgcacggctctcatatactctttgctcaccgccatttttaatggttgttgtttctactgtgctctgttcaacatactgtcgaccaccatttatggttgtgttcgttgccagacttccttgtactacgtcctgagagccagacttatttatcgttgtaccatcagcatgcccttgaacttttactatctggctaccaccatcaatgagtattccattcgcactccctccctctacgcgtgaagcaccgcccttaattgtcgttccattgctgataccccctttataaacgtcctgattgccactctcgattgtcgtacctgtggaaatacccccgtcatgaattgactgtctgccaccgttaatggttgtattattagcctgccccacaaaattgttatgacttcctatatcttgatatccaccagattcaataagacttccattagataccccgccatgaacattctgctggccatggttgataatatgagtgttatttgttgtacctcgttcatccactttttggttgccatctacagtctcatcgtttaccacaccaataacattagtagtgaaggcagccatcccgggcggggcatatatcaaggcagatatcaataaggaaagtactgagcggcgacaataatagggactggtcctgttcataaatttcatcctctgaaaagtgaatactgagtagcgtttaagcgaccttagctttgctgcaacatcagcccacaggcaccagaccaggggattcatcctgaagagacagcgcaagtgtattgtgttcaccgctcatcaaagacatcatgatgaaatgatgatattccgcataagaatgaggcattttttaaacgcagtgcgctgaagtgtggttggataaaaaagtcaatccattcaggaaatacgggcgtattcttttctttcgacaatgagccgttgccaaaataaaatgatttacataatcgtttctgatgaatatcttctgctcacataaaaatcacacaataactttgagatcgcagattgttttacttttacagcattcgtccccccattgttgggcaaatatagattgggccagagcacgaaagttaataccacgttcgcacagctcctccaacagcacgacaagatgccacatactgcgccccagtcggttcagtttacagactagcagtgcgttccctgccgatgatgtcctgaccagttttttcagtccggacctcctgccacggttttacgttgaagtggtaaccctgagcacgcagttcttcagtcaggcgtggtgcaccgtaacgctgttattgctgggtaagatcaaaaaactttcaggcagctaaggaaagttgaaccagacattagatgaaatatttcaaccaattacagcaccaattcagtcactgccagcccaccaaataaatcaaggggttacatgaaaacgtagcccctttttctttggtagtgacactaaaatggatgtagtgtgaagaataatcccgtttactcaatcaataatacatattgtttcaatctacgttattatctctttgtaaaaattgccatttattaatcattgaaaactgcttttagaacttgatacaacgggactagtcacaacaggactattctcaacgggatcatcctcagaggaactatcatcaaagtcatcatccataaataaaatatcatcgaatggtgccacgcccgtgatgagttttattttattattacgatcagtcaatactccacttaaaccgttttcgctcacaggttttaatgatttttcattactcttgttgtaagcaggcgcattaaaaatacacggagtatcaacatcaaacaatgacgttccccagttcacatattgaatatcatagttactgaagttctgtccagaaaagaagcaccccttaaaatccaatccacgtaaattatataaaccaccctcttctttttggagagtaatgttaattttggctatctcccggacatcatcgccatttttgtatttgaataccgtttcaagatgttctccagacagcttgacttcaggaaataatttgaaatcaaagcctatattattatgtgtcaacgtagatgaacaaaaaatggaaaaagcttgcagtgctgaattatagctatcgattttatcttgaggctgagctcttggtaaaaacttatagcaacactcataaaaattaaacagaagctctgaagaccttgtatttttatcaaataatacccccttgaactcattcacaaacgcatcttttttttcttgaatatctatggggtgttcctttgactctgacaaagatgaaatctcatctattttgttttcatatgaattacgtgattccatacagacatttggcggcgtttctaaaataacactacgcgtactacttggcttaagtaaaccaacatgaaaatcactttttcttatattatcgaaaaggttctattcatttcttttagcgcattcaaaaaactgatcggcattatttttattcgataattttttagtttcagaaaacacattttcattgttttccagctttagtttaatgagaagattttcccagacctgcttgcttaaacatattacgtcaggctcaccagaactaactaactcgtgattattattaaagtgtacgttgaatacctttaagttattttcaccaacttcatatttaatacgttttaattgttctccagctcccataatgacaaaggcgttgccttcttgatatatacattcagacatcattttttgtaaagtttcaagagcaccgcgatacgtctctgatgcagcttccttacaaattaattttaaaatactatgagctagtagctccatgtgtttagaagatttattttcattataacttccactacccaaaactgcgctagcgttaaatccgttgcttttactaactaacattgtctattcctcaattaatgtctacatggctatttttaatgttattactgtttgtcactataaaaaaacgctcatttgagacaattactgacattaactgcttcacttgctacgcatggaacttttaattaaattagcacaggaatgttaaatttaataaacaaaaggttatttcgctgtatgataaaaaaaaccgttataatttattagtgaaaatcgtttttcaagtgttagaaatttatatctcaatagcgttggttaatgagcatagccacgctcctgtaacgctcacaaaactcatctgcctgcgcgggtgttctggtcagtagtagatgtttaaggcgtggcagagacatttcatccttactctacggcattgttctacatacattggttgtggtactcacttatcatcagtgagcgaacagagaatagttcagtgatttgagtaattaacctgattaaatgaaggggtataataaatgataatactctggctttatcgttaattacttaattccacatgtaagcaatttgcccgcttggcatagcaggcattttttccaggtacttttgaatgagtactgatggataaatacattgcagtggcgtgccacgtaccaaaacaccagccctcattcgaaaccacccaccgcacttcttccttgaaatggcgttagtcatgaaatatagaccgccatcgagtaccccttgtacccttaactcttcctgatacgtaaataatgatttggtggcccttgctggacttgaaccagcgaccaagcgattatgagtcgcctgctctaaccactgagctaaagggccttgagtgtgcaataacaatacttataaaccacgcaataaacatgatgatcatatgatgtaaataacagatttttatgcgttcccattcaccttgggtcgtgattacacgcgacataaaacccgacaccgcctccattcgcaaagtcgatactcgcagtcaacaagcaaatgttaataattagcactatctatagttatcatcgattcaatgatactttgtaatgattttgtatctaataatataactttattacattagctgaagagttttcgcatcattatgatatctgttacttttcactccataaaaataaacttcgtatagcaatatattctttcatagatcttattctgctaatcattagtttcgtatgagcgatttttgacagttgcctctccagaccacatcgataattaataaaacagatttaagcattatccttttccatataaatattggataaaagtaggacatctgtttgcaattactttcacaacaattaaacatttttatgtttccgtatacatcatattactctaccattagaggaactttattatgttttctataaaaccaggacccagaaatttacctatcgacaaccccacattgttatcatggaacattactgacggggatctaaattccaaattaaatacattagaatatctaaactgtataacaaatattattaattcttgtggagtttaccctcaaggattaaaagacagagaaattatatcaacttttcacgcagaaaaagttattaatgatctgttaaaaaacgattataaaatttccctttctccagatacaacttaccgagagttgaataaagcagcacagcgtagcattacagcgccagacaggataggagaaagaaaaacataggtttatcaacgagatacaatgattgaaagaggtgataacagcggtgtttatcagtatggtcgtgctgaacatttcacccacattatatctgacaaaccttccccaaaagataaatatgttgcatatgctattaacattcctgactatgagctggcagccgatgtatataatattaacgtgacgtcaccttccggacagcaagaaacatttaaaatattaatcaatctagaacatctacggcaaacacttgaacgtaaatctcttactgctgttcagaaatcacaatgtgaaatcatcacccccaaaaaacctggcgaagcgattcttcatgcttttaatgccacctaccagcagatcagagaaaatatgtctgaatttgcacgttgccattatgggtatatacaaatccctccagtgacaactttccgcgtccgacggaccagaaactcccgaagaagaaaagggttactggtttcatgcttatcaacccgaagatctttgtaccatccataatccaatgggagatttgcaggattttattgcattggttaaagatgctaaaaaatttggtatcgatatcattcctgattatacctttaactttatgggaattgggggtagtggtaaaaatgacctggattatccctctgctgatatacgagcgaagatcagtaaagatatagaaggtggtatccctggctattagcaaggtcaggttttgattccattcattaaagatccagtaacaaaagaacgtaaacaaatccatccagaagatatacatctcactgcaaaagacttcgaagcaagtaaagataacatctctaaggatgaatgggaaaacctccatgcattaaaagaaaagcgtttaaatggaatgcctaaaacaacacccaaaagtgaccaggttattatgttgcaaaatcaatacgttcgtgaaatgcgaaaatatggcgtacgaggtttacgttatgatgcggcaaaacactcaaaacatgaacaaatagaaagatcaataaccccaccgcttaaaaattataatgagcggttacacaatactaacttatttaacccaaaatatcataaaaaagccgttatgaattacatggaatatctggtaacttgtcagttggatgaacaacaaatgtcatcactgctttatgaaagagatgatttaagcgccattgatttttcattgctcatgaaaacgataaaagccttttcatttggtggagatcttcaaacccttgcatcaaaaccgggttccacaatctcaagtatcccatcagaaagacggatattgattaacattaaccacgattttcctaacaatggtaatcttttcaatgactttctatttaaccatcaacaagatgaacaattagcaatggcatatatagccgctctgccgttcagcaggcctttagtttactgggatggccaagtattaaaatcaacgactgaaattaaaaattatgatgggtccacgcgtgtcggcggtgaggcgtagcttaataaaggttgctctacctatcagcagctctacaatgaattccacgcattatatatagataaagcaggaatatggagcgcatttgagggtgtatctgcaactaaaaacgttctggcctttagtcgtggggattctgtgaacattaatcactctcctcatgatggactagttataataaataaaggaaacgaagaagttgaaggtacctggcctaacaaattgcaacctggaatatacaaaaacatggggagtaatagcgttaacattattattaataatacccgaaaaattatcccccctggtaaagtatttacgcttagaggcggaactctaaatatcaatattcctgggcgtagcgctcttcttttagggaaaacaggagaaccgccgaactatctctatttataatttaatgttatatctgccccgataaaacggggcagataatatgtttagtttactaacggtcattttgcagtgaagccatttactgttttttatcgaccagataatctgttctctaatgttaactccccctaacctgttgctttagttattcatttcctgtctcactttgccttaataccctacgttaaatgttactaatttgttgcttttgatcacaataagaaaacaatatgtcgcttttgtgcgcatttttcagaaatgtagatatttttagattatggctacgaaatgagcatcgccatgtcaccctacatctcataagaggatcgcttctgatgaatgcactgaccgccgtacaaaataacgctgtcgattcaggccaggactatagcggattcaccctcaccccgtcggcgcaatccccgcgtctgctggaactcaccttcaccgaacagacgaccaaacagtttcttgagcaggttgccgagtggcccgtgcaggcgctggagtacaaatcgtttctgcgttttcgggtagccaaaattcttgacgatctatgtgcgaaccagctgcaaccattgctgttgaagacgttgctaaaccgcgctgaaggtgcgttgttgatcaatgcggtgggtgtcgatgatgtgaagcaagcggatgagatggtgaagctggcgacggcggtggcgcatctgattggccgttccaatttcgatgcgatgagcggtcagtattacgcgcgttttgtagtgaaaaatgtcgataactcagacagctatctgcgccagccgcaccgcgtgatggagctacacaacgacggcacgtatgtcgaagagataaccgattacgtgctgatgatgaaaatcgacgagcaaaacatgcagggcggaaattcgctgctgctgcatctcgatgactgggaacatctcgacaactatttccgccacccgctggcgcgtcgcccgatgcgctttgccgcgccgccgagtaaaaacgtcagcaaagatgtttttcatccggtgttcgacgtcgatcaacagggtcgcccggtgatgcgctatatcgaccagttcgtccagccgaaagacttcgaagaaggcgtgtggttgagcgagctttccgacgccattgaaaccagcaaaggcattctttctgtgcccgttcccgttggcaaattcctgttgattaacaacctgttctggctgcacggtcgcgaccgctttactccgcacccggatctgcgccgtgaactgatgcgccagcgtggctatttcgcttacgcctctaaccactaccagacgcatcagtaagcgcaaaggaattgagcggatgtatgattttgtgattattggcggcggcatcatcggcatgtcgaccgccatgcaactgattgatgtctatccggacgcccgcattgcgttgctggaaaaagagtccgccccggcctgtcaccagacgggccacaacagcggcgtgatccatgccggggtctattacacgcccggcagcctgaaggcgcagttttgcctggcgggaaaccgcgccaccaaagccttttgcgatcaaaacggcattcgctacgacaactgcggcaagatgctggttgccacgtccgatctcgaaatggaacggatgcgcgccttatgggaacgcacagcggcgaacggtatcgagcgcgaatggcttaacgccgacgaactgcgcgagcgcgaaccgaatatcaccgggctcggcggcatttttgtgccgtccagcggcattgtcagctaccgcgacgtgacggcggcgatggcaaaaatcttccagtccagaggcggtgaaattatctataacgccgaagtcagcgggcttaatgagcataaaaacggcgtggtgatacgtacccgtcagggcggcgaatatgaagcatcaacgctgattagctgttccgggctgatggctgaccggctggtgaaaatgctcggactcgaaccgggctttatcatctgcccgttccgtggcgagtatttccgccttgcgccggagcataaccagattgttaaccacctgatttaccccattcccgacccggcaatgccgtttttgggcgttcatctcacccgcatgatcgacggcagcgtgaccgtcgggccaaacgcggtgctggctttcaaacgcgaaggctatcgcaagcgcgacttctcatttagcgacacgctggagattttgggctcgtcggggattcgccgggtgctgcaaaaccatctacgctcaggactgggcgagatgaaaaactcgctgtgcaaaagcggctatctgcggctggtgcaaaagtattgtccccggctttcgttaagcgatctccagccctggcccgccggtgtgcgggcgcaggcggtatcgccggacggcaagctgattgacgattttctgtttgtcaccaccccgcgcacgatccacacctgcaatgcgccctccccggcagcgacatcagcaattcctattggtgcgcatattgtcagcaaggtacaaacgctgttggcaagccagagtaaccccggacgcacgctgcgagcggcacgtagtgtggatgccttacacgccgcatttaatcaataacctttgaaaacaggatgtagcgatgaaacttaacgacagtaacttattccgccagcaggcgttgattaacggggaatggctggacgccaacaatggtgaagccatcgacgtcaccaatccggcgaacggcgacaagctgggtagcgtgccgaaaatgggcgcggatgaaacccgcgccgctatcgacgccgccaaccgcgccctgcccgcctggcgcgcgctcaccgccaaagaacgcgccaccattctgcgcaactggttcaatttgatgatggagcatcaggacgatttagcgcgcctgatgaccctcgaacagggtaaaccactggccgaagcgaaaggcgaaatcagctacgccgcctcctttattgagtggtttgccgaagaaggcaaacgcatttatggcgacaccattcctggtcatcaggccgataaacgcctgattgttatcaagcagccgattggcgtcaccgcggctatcacgccgtggaacttcccggcggcgatgattacccgcaaagccggtccggcgctggcagcaggctgcaccatggtgctgaagcccgccagtcagacgccgttctctgcgctggcgctggcggagctggcgatccgcgcgggcgttccggctggggtatttaacgtggtcaccggttcggcgggcgcggtcggtaacgaactgaccagtaacccgctggtgcgcaaactgtcgtttaccggttcgaccgaaattggccgccagttaatggaacagtgcgcgaaagacatcaagaaagtgtcgctggagctgggcggtaacgcgccgtttatcgtctttgacgatgccgacctcgacaaagccgtggaaggcgcgctggcctcgaaattccgcaacgccgggcaaacctgcgtctgcgccaaccgcctgtatgtgcaggacggcgtgtatgaccgttttgccgaaaaattgcagcaggcagtgagcaaactgcacatcggcgacgggctggataacggcgtcaccatcgggccgctgatcgatgaaaaagcggtagcaaaagtggaagagcatattgccgatgcgctggagaaaggcgcgcgcgtggtttgcggcggtaaagcgcacgaacgcggcggcaacttcttccagccgaccattctggtggacgttccggccaacgccaaagtgtcgaaagaagagacgttcggccccctcgccccgctgttccgctttaaagatgaagctgatgtgattgcgcaagccaatgacaccgagtttggccttgccgcctatttctacgcccgtgatttaagccgcgtcttccgcgtgggcgaagcgctggagtacggcatcgtcggcatcaataccggcattatttccaatgaagtggccccgttcggcggcatcaaagcctcgggtctgggtcgtgaaggttcgaagtatggcatcgaagattacttagaaatcaaatatatgtgcatcggtctttaactggagaatgcgaatgaacagcaataaagagttaatgcagcgccgcagtcaggcgattccccgtggcgttgggcaaattcacccgattttcgctgaccgcgcggaaaactgccgggtgtgggacgttgaaggccgtgagtatcttgatttcgcgggcgggattgcggtgctcaataccgggcacctgcatccgaaggtggtggccgcggtggaagcgcagttgaaaaaactgtcgcacacctgcttccaggtgctggcttacgagccgtatctggagctgtgcgagattatgaatcagaaggtgccgggcgatttcgccaagaaaacgctgctggttacgaccggttccgaagcggtggaaaacgcggtaaaaatcgcccgcgccgccaccaaacgtagcggcaccatcgcttttagcggcgcgtatcacgggcgcacgcattacacgctggcgctgaccggcaaggtgaatccgtactctgcgggcatggggctgatgccgggtcatgtttatcgcgcgctttatccttgcccgctgcacggcataagcgaggatgacgctatcgccagcatccaccggatcttcaaaaatgatgccgcgccggaagatatcgccgccatcgtgattgagccggttcagggcgaaggcggtttctacgcctcgtcgccagcctttatgcagcgtttacgcgctctgtgtgacgagcacgggatcatgctgattgccgatgaagtgcagagcggcgcggggcgtaccggcacgctgtttgcgatggagcagatgggcgttgcgccggatcttaccacctttgcgaaatcgatcgcgggcggcttcccgctggcgggcgtcaccgggcgcgcggaagtaatggatgccgtcgctccaggcggtctgggcggcacctatgcgggtaacccgattgcctgcgtggctgcgctggaagtgttgaaggtgtttgagcaggaaaatctgctgcaaaaagccaacgatctggggcagaagttgaaagacggattgctggcgatagccgaaaaacacccggagatcggcgacgtacgcgggctgggggcgatgatcgccattgagctgtttgaagacggcgatcacaacaagccggacgccaaactcaccgccgagatcgtggctcgcgcccgcgataaaggcctgattcttctctcctgcggcccgtattacaacgtgctgcgcatccttgtaccgctcaccattgaagacgctcagatccgtcagggtctggagatcatcagccagtgttttgatgaggcgaagcagtagcgccgctcctatgccggaggcgacgctgcgcgtcttgtccggcctacggggatccaggtcggataaggcgtttacgccgcatccgacaatctgtacgtgaacaggaagaaatctatgttggccgggtaaggcggagccgctctccggcaaaaagaatcaataacaattatacgcgtgacccggcgcgggaaatgtcggggcgctctcccaagtgacacactttcgagaggattcaggatggggcaatcatcgcaaccacatgagttaggcggcgggctgaagtcacgccacgtcaccatgttgtctattgccggtgttatcggcgcaagtctgtttgtcggttccagcgtcgccatcgccgaagcgggcccggcggtattactggcctatctgttcgccgggctactggtggttatgattatgcggatgttggcggaaatggcggttgccacgcccgataccggttcgttttccacctatgccgataaagccattggtcgctgggcgggctataccatcggctggttgtactggtggttttgggtactggttatcccgctggaagccaacatcgccgccatgatcctgcactcatgggttccaggcattcccatctggttattttccctcgtcattaccctcgccttaactggcagtaacttattaagcgttaaaaactacggcgaatttgagttctggctggcgctgtgcaaagtcatcgctatcctggcctttattttccttggtgcagtcgcaattagcggtttttacccgtatgccgaagtgagcgggatctcaagattgtgggatagcggcggctttatgcccaacggtttcggtgcggtattaagcgcgatgttgatcaccatgttctcgtttatgggcgcagaaattgtcaccattgccgccgcggaatccgacacgccggaaaaacatattgtccgcgccaccaactcggttatctggcgtatttctatcttctatttatgttctatttttgtcgtcgtggcattaattccgtggaatatgcccggactaaaagccgtcggttcttatcgctcggtactggaattgctcaatattccccatgcgaaattaatcatggactgcgtgatattactttccgtaaccagttgcctgaactcggcgctgtataccgcgtcaaggatgctctactccttaagtcgtcgcggtgatgctcccgcggtaatgggtaaaatcaaccgcagtaaaaccccgtacgtggcggtgttactctccaccggcgcggcattcttaacggtggtggtgaactattacgcgcctgcgaaggtatttaaatttctgatcgacagctccggcgctatcgccctgctggtttatttagtcatcgccgtttcacagttgcggatgcgcaaaattctgcgagcagaaggaagcgaaattcgcttgcgaatgtggctttatccgtggctcacctggctagtcatcggctttattacctttgtgttggtagtgatgctattccgtccggcgcaacagttagaagtgatctccaccggcttattagcgatagggattatctgtaccgtgccaattatggctcgctggaaaaagctggtattgtggcaaaaaacacccgttcataatacgcgctgatcatgatcaggagtcacaccatgaccattacgtctctggatggctatcgctggctgaagaacgatattattcgcggtaattttcaaccggatgaaaaattacgaatgagtttgctgacatcgcgttatgcacttggcgttgggccgttacgggaagctctttcgcaactggtggcggaacggctggtcacggtggtgaatcaaaaagggtatcgggtggcgtctatgtcagagcaggagctgctcgatattttcgacgcccgcgccaatatggaagcgatgttagtgagtctggcgattgcccgcggtggcgatgagtgggaggcagacgttctcgcaaaagcgcatctgctgagtaagcttgaggcctgtgacgccagcgagaaaatgcttgatgagtgggatctgcgtcatcaggcgtttcatacggcaattgtggcgggctgtggttctcactatttgctgcaaatgcgtgaacggttgtttgatctggcggcgcgttatcgatttatctggctgcggcgaacggtgctttcggtggaaatgctggaggataaacacgatcagcaccagaccctgactgcggcggtactggcgcgagataccgcgcgcgccagtgagttaatgcgccagcatttactgacgccaattcccattatccagcaggcgatggctggcaattaactactcttccggaatacgcaacacttgccccggataaattttatccgggctttttagcatcggtttattcgcttcgaagattttattgtacagattagcgttaccgtagacctgtttggaaatggcactcagagtgtcgccagacttaacggtataaaactggctggcagtggctggtgtcgccgttttcacctgatcatcgacactggcaataccggaaatattccccaccgcaacaaggattttctccttcgcctcctgactcaggccgtcaccagtgaccgtcgctttgccgtcggcaatttgaatattcactttatcggcatccggtataccggttttgttcagatgctcctgcaccttcttcgcctgatcgtctttatcgtgctgacctgtaaccgcgtcccagagtttttctccggcatctttcacaaaattgaacagacccatagctacctcattcgttaacggaaacactcagaaagtgtagcagaggaacgcggcgcgttaacgccgcggggatgagcacaggtttaatcgcgggtttgcacccagaacgcgtgaatcaaaccggggatatacccaagcagtgtcaacagaatattaataatgaacgcccaaccgaaccctttaccgagcagcacgccgagcggcggcagaatgatggtgatgacgattctccagaaacccatatgtactccctataagaaaattactcattgtttaaaaagagattttatctcttaagcgtagtaattttagcggagcctgccagtttcagcttacgcttttactctcatttacgctgctgaggctggtatatgttgcatttttagtttagagtttacttaatttagaaaatacttaaataaatatgactgaactcgcgcaattacaggccagtgccgaacaggcagcggccttattgaaagcaatgagccaccctaaacgattgctgattctgtgcatgcttagcggttcccccggcaccagcgcgggagagctgacgcgcattaccggactgagtgcctctgcgacatcacagcatctcgctcgtatgcgggacgaagggcttatcgacagccaacgggatgcccaacgcattctatattccattaaaaatgaggcggtaaatgccattatcgccaccctgaaaaatgtctattgtccgtaaggagtcactatggctttgacaaccatttcgccgcatgatgcacaagaattaatcgcacgcggcgcaaagttaatcgatattcgtgatgctgatgaatatcttcgtgaacatattcctgaagcagatctggctccattatccgtgctggaacagtcaggtcttccggctaaattacgtcacgagcaaattatattccactgccaggcaggtaaacgcaccagtaataatgccgataaattagcagcgattgccgcccccgcagaaatctttttactcgaagatgggattgatggctggaaaaaagcaggattgccagtagcggtaaataaatctcaacccttgccgttaatgcgccaggtgcagatcgctgcgggtggtttaatattaatcggcgttgtactgggttataccgtaaatagcggtttcttcttattaagtggctttgttggtgccgggttactgtttgcaggaatcagcggtttttgtggaatggcaaggttgttagataagatgccgtggaaccaacgagcttgagaagcgacgccggacgcgccctagcagcgacatccggcctcagtaattagatcaggaaatcgtcgagagatttaccttctgccagcgcctgagcaattggcttcggtgtacggccctgaccggtccaggttttagtttcaccgttaacatcggtgaatttatatttcgccggacgcggctggcgttttttaccagcgcgtggtgcagcagcagagctattacccaataactcttccgggttaattccgtcagctttcatcagctccagccaggtgctaattttttcctggcgctctgccagttcacgctgctgctgttcttcttcttcacgtctttctttagtgacaaccctgaatttttcgagcatttcttcaagaacgtcaatggagaattcgcgagccatcgcacggagggtgcgaatgttatttaaactttgtaacattacggacataataaagaaaaccttttaacgccaaaacaaaaaaagtatttcgtcgcgtagtgtaagcgatcacttattatatttccacaaaatttaatctatttacagtcctgcgcgagattatttcagctgttattttctgaaactctcagaataatttcaagattatatattagccattttgatgagtaatttagattattggtgaacagagcggcgctctctgctcgctaattccgcaagcctgacaaaatcaaagtgaataaaaatgcaatataacagaataaaagaaaacatccatcactggtgctttctgctgttaatgtacattgtctggcataaaaaatgctgaaaatgacccagctactacatacaccgaattctctacgcttatagcgttacctcacccccaaactttcattagtgatattaaaggtaaggccatatctaattgatttaattaaaaataaatcatatcggcatgtaaaaatccacaatgtacaaaaaacgagccgttacggaatattttatctacaaaaactgactaaataaaaatttttcactaattgattagtcatagccagcgatatacgctatgcgaaaatgcagatggcaatgagatccactgctttcatctccattaacatcccattacgcttttattaaggagcattagcatgttctcaccgcagtcacgcttgcgtcatgcagttgcagatacgttcgcgatggttgtttactgttctgtcgtgaacatgtgtattgaagttttcctctccggaatgagcttcgaacagtctttttattccagattggtagcgattccggtgaacatcttaattgcatggccatacggtatgtaccgtgatctgtttatgcgcgcggcacgcaaagttagcccgtcgggctggataaaaaatctggcggatatcctggcttatgtgacgttccagtcaccggtgtatgtggcgatcttgttagtggtgggcgcagactggcatcagattatggcggcggtcagttcaaacatcgttgtttcgatgttgatgggggcggtttatggctacttcctcgattattgccgccgactgtttaaagtcagccgttaccagcaggtaaaagcctgactcttcttttcgcgactggcatcgccagtcgcgtctttaactggcttcgccaaataaaccattcaaataacgttcaagcgcaacacgcgaactaaagccatgcgggataccgtaatgctcgtgtcgctcgcctgctaaatagagcggaaattgctggtaatgatcgcaagttttaatatcggaagcgggttcagccagtgtcgaactgcgttcttttaatgttggatgaattaccagagcggtacgtcccattcgcgcttcgcgattaacatagacataattttccccacggcggtaaccatacgctttctgggttaccacatcgacagtaaaaccgactttttcaagtacgcgcgccacctcgtctggtcgtaaatacatatttgatcctcgttattatcaaccgcgggcctaccttacctgattgcgcattcacaacgctttcagaaaagtccataaagccgcgatgaacctcagttaagaaaattatggtctacactgaaaattacatcgaattctaatgggggatcatatgtttaaccgaccgaaccgcaacgacgttgatgatggcgtgcaggatatccagaatgatgtcaatcaattagctgacagcctcgaatctgtattgaagtcctggggcagcgacgccaaaggggaagctgaagccgcacgcagtaaagctcaggcattgctgaaagaaaccagggcgcgaatgcatggtcgtactcgcgtccagcaagccgcgcgcgatgccgttggctgcgcggattcttttgttcgtgaaagaccctggtgtagcgtgggtacagcagctgcggtaggtatttttatcggcgcactgttaagcatgcgcaaatcgtagtgcaaaaatgataataaatacgcgtctttgaccccgaagcctgtcttcggggtttctttttgcctggtgaatcacaaaaatccccctaccccgtcacgctcatatccagggtaatttcgaccactatttgctatatattgtgtggttgaatcttttttcaactacatctagtatctctgtatcaacagagagacaacccgacgcgtatcatcgcgccgtatcttcattttaaacggaaatacgaatcatgcgcattactatttacactcgtaacgattgcgttcagtgccacgccaccaaacgggcgatggaaaaccggggctttgattttgaaatgattaatgtcgatcgcgttcctgaagcggcagaagcgttgcgtgctcagggctttcgtcagttgccggtagtgattgctggcgatcttagctggtctggtttccgtccggacatgattaaccgtctgcatccagcgccacacgcggccagtgcatgagccagctcgtctacttctccagcagctccgaaaacacgcagcgttttatcgaacgtttaggtctgcccgcggtgcgcatcccgctcaatgagcgggaacggattcaggtagacgagccttacatcctgatcgtgccctcttacggcggcggcggtacggctggcgcggtgccacgacaggtaattcgctttttaaacgacgagcacaaccgggcgttgcttcgcggcgttattgcttctggtaatcgcaactttggtgaggcgtatggccgcgccggagatgtgattgcccggaaatgcggcgtgccgtggctgtaccgttttgaactcatgggtacgcaaagcgatatcgaaaacgttcgtaaaggagtaaccgaattttggcaacgacaaccgcagaatgcctgacgcaggaaacgatggattaccacgcgctgaatgcgatgcttaacctctacgatagcgcaggtcgcattcagttcgataaagaccgccaggccgttgacgcctttattgcgacgcatgtgcgtccgaacagtgtgaccttcagtagccagcagcagcgcctgaactggctggtcaacgaaggttactatgatgaaagcgttcttaatcgctactctcgcgactttgtcattacgctgtttacccacgcacacaccagcggttttcgtttccagacattcctcggggcatggaagttttacaccagctatacgttgaagacattcgacggtaaacgttatctggaagattttgccgatcgagtaacgatggtggcgctgacgctggcacaaggcgatgagacgctggcgttgcaactgaccgatgaaatgctgtcaggacgctttcagccagccacgccaacattcctcaactgcggtaagcagcagcgcggcgaactggtttcctgttttttgctgcgtattgaagacaatatggagtcgattggtcgggcggtaaattccgcactgcagctgtcgaaacgcggcggcggcgtagcatttttgctgtcgaatctgcgagaagcgggcgcgccaattaaacgtattgaaaatcaatcttctggcgtaattccggtgatgaaaatgctggaagacgcattttcctatgccaaccaactcggcgctcgtcagggggctggtgcagtctatttacatgctcatcatcccgatattctgcgttttctcgacacgaaacgggaaaatgccgacgaaaaaatccgcattaaaacactgtcgcttggcgtggtgatcccggatatcactttccatctggcaaaagagaatgcgcagatggcgctgttttcgccttatgacgtagagcgagtttatggcaagccgtttgccgatgtggccatcagccaacactatgacgaactggttgccgatgaacgcattcgcaaaaaatacctcaacgcccgtgatttcttccagcgactggcagaaatccagtttgagtccggctatccctacatcatgtatgaagacacggtaaaccgtgctaaccctatcgccgggcgcataaatatgagtaatctctgctcagaaattttgcaggttaacagcgcctcagagtatgacgagaatctcgactatacccgcacaggccatgatatttcctgcaatttaggttcgttgaatattgcgcacaccatggattcccccgattttgcccgcacggtagagactgccgtgcgcggtttaacggcagtatcagatatgagtcatatccgcagcgtgccgtccatcgaagccggaaatgccgcctcgcacgccatcggactggggcagatgaatttacacggctatctggcgcgagaaggcatcgcttatggttcgccggaagcactggatttcaccaatctctatttctatgccatcacctggcatgcactgcgtacctcgatgttgctggcacgcgaacgcggtgaaaccttcgccgggttcaaacagtcacgctatgccagtggtgaatattttagccaatatctgcaagggaactggcagccgaaaacggcgaaagttggcgaactgtttacccgtagcggtattacgttacctacccgtgagatgtgggcgcagctgcgcgacgacgtgatgcgctacggcatatacaaccagaatcttcaggcggtgccgccaaccggttctatctcttatatcaaccatgctacgtcgagtattcatccgattgtggcgaaagtagagatacgcaaagagggcaaaacaggacgcgtttactaccctgccccgtttatgactaacgagaatctggcgctgtatcaggacgcttacgaaattggcgcagaaaagatcatcgacacctacgcggaagcgactcgccatgtcgatcaggggctgtcgctgacgctttttttccccgataccgccaccactcgcgatatcaacaaagcgcagatttacgcctggcgcaagggtatcaaaacgctctattacatccgcctgcgtcagatggcgctggaaggcactgaaattgaaggctgcgtctcctgtgcactttaaggaatatctatgaaactctcacgtatcagcgccatcaactggaacaagatatctgacgataaagatctggaggtgtggaatcgcctgaccagcaatttctggctaccagaaaaggtgccgctgtcgaacgatattcctgcctggcagacattaactgtcgtagaacaacaactgacgatgcgcgtttttactggcctgacgctgctcgacacgctgcaaaatgttatcggcgcgccttctctgatgcccgatgcactcacgcctcatgaagaagcggtattatcgaatatcagctttatggaagcggttcatgcccgctcttacagttcgattttctcgacgctatgccagaccaaagatgtcgatgccgcctacgcctggagtgaagaaaacgcaccgttgcagcgaaaagctcagattattcagcaacattatcgcggtgatgatccgctgaaaaagaaaatcgccagtgtgtttcttgaatcttttttgttctattccggtttctggctgccgatgtatttttccagccgcggaaagctgaccaataccgcggacctgatccgtctgattatccgcgatgaagcagtccacggttactacataggctataaatatcagaaaaacatggaaaagatatctctgggacaacgtgaagagttgaagagtttcgccttcgatttgttgctggaactctacgacaacgagttgcaatacaccgatgagctgtacgccgaaaccccgtgggctgacgatgtgaaagcgtttctctgttacaacgccaataaggctttgatgaatctgggctacgaaccgttatttcccgcagaaatggcggaagtgaatccggcaatcctcgccgcgctttcgccgaatgccgatgaaaatcacgatttcttttccggttcaggctcctcttatgtgatggggaaagcggttgaaacagaagatgaagactggaatttctgagggtgttattttcaaaaatatcactacccgcagcagggaaataattcccgccaaatagctttttatcacgcaaataatttgtggtgatctacactgatactctgttgcattattcgcctgaaaccacaatattcaggcgttttttcgctatctttgacaaaaaatatcaactttctcgatttgctctcagcccttatatcacgggaaattccggcgatttgctcgcatcaatattcatgccacatttgccatcaggggttgcctcagattctcagtatgttagggtagaaaaaagtgactatttccattgggtaatatatcgacatagacaaataaaggaatctttctattgcatggcaattaaattagaaattaaaaatctttataaaatatttggcgagcatccacagcgagcgttcaaatatatcgaacaaggactttcaaaagaacaaattctggaaaaaactgggctatcgcttggcgtaaaagacgccagtctggccattgaagaaggcgagatatttgtcatcatgggattatccggctcgggtaaatccacaatggtacgccttctcaatcgcctgattgaacccacccgcgggcaagtgctgattgatggtgtggatattgccaaaatatccgacgccgaactccgtgaggtgcgcagaaaaaagattgcgatggtcttccagtcctttgccttaatgccgcatatgaccgtgctggacaatactgcgttcggtatggaattggccggaattaatgccgaagaacgccgggaaaaagcccttgatgcactgcgtcaggtcgggctggaaaattatgcccacagctacccggatgaactctctggcgggatgcgtcaacgtgtgggattagcccgcgcgttagcgattaatccggatatattattaatggacgaagccttctcggcgctcgatccattaattcgcaccgagatgcaggatgagctggtaaaattacaggcgaaacatcagcgcaccattgtctttatttcccacgatcttgatgaagccatgcgtattggcgaccgaattgccattatgcaaaatggtgaagtggtacaggtcggcacaccggatgaaattctcaataatccggcgaatgattatgtccgtaccttcttccgtggcgttgatattagtcaggtattcagtgcgaaagatattgcccgccggacaccgaatggcttaattcgtaaaacccctggcttcggcccacgttcggcactgaaattattgcaggatgaagatcgcgaatatggctacgttatcgaacgcggtaataagtttgtcggcgcagtctccatcgattcgcttaaaaccgcgttaacgcagcagcaaggtcttgatgcggcgctgattgatgcgccgttagcagtcgatgcacaaacgcctcttagcgagttgctctctcatgtcggacaggcaccctgtgcggtgcccgtggtcgacgaggaccaacagtatgtcggcatcatttcgaaaggaatgctgctgcgcgctttagatcgtgagggggtaaataatggctgatcaaaataatccgtgggataccacgccagcggcggacagtgccgcgcaatccgcagacgcctggggtacaccgacgactgcaccgactgacggcggtggtgctgactggctgaccagtacgcctgcgccaaacgtcgagcattttaatattctcgatccgttccataaaacgctgatcccgctcgacagttgggtcactgaagggatcgactgggtcgttacccatttccgtcccgtcttccagggcgtgcgcgttccggttgattatatcctcaacggtttccagcaattgctgctgggtatgcccgcaccggtggcgattatcgttttcgctctcatcgcctggcagatttccggggtcggaatgggtgtggcgacgctggtttcgctgattgccatcggcgcaatcggtgcctggtcgcaggcaatggtgactctggcgctggtgttaaccgccctgctgttctgtatcgtcatcggtttgccgttggggatatggctggcgagaagtccgcgagcggcgaaaattattcgtccactgcttgatgccatgcagaccacgccagcgtttgtttatctggtgccaatcgtcatgctatttggtatcggtaacgtgccgggcgtggtggtgacgatcatctttgctctgccgccgattatccgtctgaccattctggggattaaccaggttccggcggatctgattgaagcctcgcgctcattcggtgccagcccgcgccagatgctgttcaaagttcagttaccgctggcgatgccgaccattatggcgggcgttaaccagacgctgatgctggccctttctatggtggtcatcgcctcgatgattgccgtcggcgggttgggtcagatggtacttcgcggtatcggtcgtctggatatggggcttgccaccgttggcggcgtcgggattgtgatcctcgccattatcctcgatcgtctgacgcaggccgttgggcgcgactcacgcagtcgcggcaaccgtcgctggtacaccactggccctgttggtctgctgacccgcccattcattaagtaactctgcacttgcccggtgacgccgggcattatcaccctgccaaaaaaaggaataacaatgcgacatagcgtactttttgcgacagcgtttgccacgcttatctctacacaaacttttgctgccgatctgccgggcaaaggcattactgttaatccagttcagagcaccatcactgaagaaaccttccagacgctgctggtcagtcgtgcgctggagaaattaggttataccgtcaacaaacccagcgaagtagattacaacgttggctacacctcgcttgcttccggcgatgcaaccttcaccgccgtgaactggacgccactgcatgacaacatgtacgaagctgccggtggcgataagaaattttatcgtgaaggggtatttgttaacggcgcggcacagggttacctgatcgataagaaaaccgccgaccagtacaaaatcaccaacatcgcacaactgaaagatccgaagatcgccaaactgttcgataccaacggcgacggaaaagcggatttaaccggttgtaaccctggctggggctgcgaaggtgcgatcaaccaccagcttgccgcgtatgaactgaccaacaccgtgacgcataatcaggggaactacgcagcgatgatggccgacaccatcagtcgctacaaagagggcaaaccggtgttttattacacctggacgccgtactgggtgagtaacgaactgaagccgggcaaagatgtcgtctggttgcaggtgccgttctccgcactgccgggcgataaaaacgccgataccaaactgccgaatggtgcgaattatggcttcccggtcagcaccatgcatatcgttgccaacaaagcctgggccgagaaaaacccggcagcagcgaaactgtttgccattatgcagttgccagtggcagatattaacgcccagaacgccattatgcatgacggcaaagcctcagaaggcgatattcagggacacgttgatggttggatcaaagcccaccagcagcagttcgatggctgggtgaatgaggcgctggcagcgcagaagtaatttttattcgggcggataaggcgtttttgccgcatccgccgttctgtgcacaatgcctgatgcgacgctggcgcgtcttatcatgcctacaaaccacatcgcacatttcaacaatctatctttcatcccatattcatcaacatccgctattattgatttccagcttaatcatcacctgatgaacaaaaataatgactaaacctaatcatgagcttagcccggcgctgatcgtgctgatgtctatcgccaccggtctggcggtagccagtaactattacgcccagccattgctcgacaccatcgcgcgtaacttttccctttccgccagttcggcaggctttattgttaccgccgcgcagttgggctatgccgcaggtctactgtttcttgttcccctcggtgatatgtttgaacgccgccgcctgattgtctcgatgaccttactggcggcatgttgattaccgccagcagtcagtcgctggcgatgatgatcctcggtacggcattaaccggtttattctcagtcgtggcacaaattctggttccgctggcagcgacgctggcttcaccggataaacgcggcaaagtggttggcactattatgagcggtctgctgttggggatcttgctggcacggacagttgccggattgctggcgaatctcggcggctggcgcaccgtcttttgggttgcttcggtgttaatggcactgatggcgctggcattatggcgtggtctgccacaaatgaaatcagaaacccacctcaactacccacagttgttgggttccgttttcagtatgtttatcagcgataaaattctgcgtacccgcgcgttgctgggctgcctgacctttgccaatttcagcattctctggacctcaatggcctttttgcttgccgctccaccttttaactacagcgatggtgtcattggtctgtttggacttgcgggagctgccggagcgttgggcgctcgtccggcgggcggttttgccgataagggcaaatcgcaccacaccacaactttcggtctgctgctgctattactttcatggctggcgatctggtttggtcacacttccgtactggcgttgattatcggaatcctggtgctggatctcaccgtgcagggcgtgcatatcactaaccagacggtaatttatcggatacatcctgatgcgcgcaatcgcctgaccgcaggttacatgactagctactttattggcggtgccgccggttcgctaatttcagcctcagcctggcaacatggcggttgggctggcgtttgtctggctggcgcgacgattgccctggttaacttactggtctggtggcgaggttttcatcgtcaggaagccgcaaattaagcaatcagcaaccgttttcgtggctttacacttataagggtgttaagaagcccatcagtctgataaggttaagatattcattcagtctatttataatattaacaatcgttaagcgtacactctatggaaagccctactccacagcctgctcctggttcggcgaccttcatggaaggatgcaaagacagtttaccgattgttattagttatattccggtggcctttgcgttcggtctgaatgcgacccgtctgggattctctcctctcgaaagcgtttttttctcctgcatcatttatgcaggcgcgagccagttcgtcattaccgcgatgctggcagccgggagtagtttgtggattgctgcactgaccgtcatggcaatggatgttcgccatgtgttgtatggcccgtcactgcgtagccgtattattcagcgtctgcaaaaatcgaaaaccgccctgtgggcgtttggcctgacggatgaggtttttgccgccgcaaccgcaaaactggtacgcaataatcgccgctggagcgagaactggatgatcggcattgccttcagttcatggtcatcgtgggtatttggtacggtaataggggcattctccggcagcggcttgctgcaaggttatcccgccgttgaagctgcattaggttttatgcttccggcactctttatgagtttcctgctcgcctctttccagcgcaaacaatctctttgcgttaccgcagcgttagttggtgcccttgcaggcgtaacgctattttctattcccgtcgccattctggcaggcattgtctgtggctgcctcactgcgttaatccaggcattctggcaaggagcgcccgatgagctatgaggttctgctgcttgggttactagttggcgtggcgaattattgcttccgctatttgccgctgcgcctgcgtgtgggtaatgcccgcccaaccaaacgtggcgcggtaggtattttgctcgacaccattggcatcgcctcgatatgcgctctgctggttgtctctaccgcaccagaagtgatgcacgatacacgccgtttcgtgcccacgctggtcggcttcgcggtactgggtgccagtttctataaaacacgcagcattatcatcccaacactgcttagtgcgctggcctatgggctcgcctggaaagtgatggcgattatataacccacaagaatcatttttctaaaacaatacatttactttatttgtcactgtcgttactatatcggctgaaattaatgaggtcatacccaaatggatagttcgtttacgcccattgaacaaatgctaaaatttcgcgccagccgccacgaagattttccttatcaggagatccttctgactcgtctttgcatgcacatgcaaagcaagctgctggagaaccgcaataaaatgctgaaggctcaggggattaacgagacgttgtttatggcgttgattacgctggagtctcaggaaaaccacagtattcagccttctgaattaagttgtgctcttggatcatcccgtaccaacgcgacgcgtattgccgatgaactggaaaaacgcggttggatcgaacgtcgtgaaagcgataacgatcgccgctgcctgcatctgcaattaacggaaaaaggtcacgagtttttgcgcgaggttttaccaccgcagcataactgcctgcatcaactctggtccgcgctcagcacaacagaaaaagatcagctcgagcaaatcacccgcaaattgctctcccgtctcgaccagatggaacaagacggtgtggttctcgaagcgatgagctaacgcgtcatctcgctcaaaaatccagatttataaaagaaaaaatgactggccagcatcgcaacatgctggcctttttggcaagcaggtcggctcagccgatgagttaagaagatcgtggagaacaatatgagcgcaaatgcggagactcaaaccccgcagcaaccggtaaagaagagcggcaaacgtaagcgtctgctcctccttctcaccttgctctttataattattgccgtagcgatagggatttattggtttttggtactgcgtcacttcgaagaaaccgatgacgcatacgtggcagggaatcaaattcaaattatgtctcaggtgtctggcagcgtgacgaaagtctgggccgataacaccgattttgtaaaagaaggcgacgtgctggtcactctcgacccgacagatgctcgccaggcgtttgaaaaagccaaaactgcactggcttccagcgttcgccaaacccaccagctgatgattaacagcaagcagttgcaggcgaatattgaggtgcagaaaatcgccctcgcgaaagcacaaagcgactacaaccgccgtgtgccgctgggcaatgccaacctgattggtcgcgaagagctgcaacacgcccgcgacgccgtcaccagtgcccaggcgcaactggacgtcgcgattcaacaatacaatgccaatcaggcgatgattctggggactaaactggaagatcagccagccgtgcaacaggctgccaccgaagtacgtaacgcctggctggcgctggagcgtactcgtattatcagtccgatgaccggttatgtctcccgccgcgcggtacagcctggggcgcaaattagcccaacgacgccgctgatggcggtcgttccagccaccaatatgtgggtggatgccaactttaaagagacgcagattgccaatatgcgtatcggtcagccggtcactatcaccacggatatttacggcgatgatgtgaaatacaccggtaaagtggttggtctggatatgggcacaggtagcgcgttctcactgcttccagcgcaaaatgcgaccggtaactggatcaaagtcgttcagcgtctgcctgtgcgtatcgaactggaccagaaacagctggagcaatatccgctgcgtatcggtttgtccacgctggtgagcgtcaataccactaaccgtgacggtcaggtactggcaaataaagtacgttccactccggtagcggtaagcaccgcgcgtgaaatcagcctggcacctgtcaataaactgatcgacgatatcgtaaaagctaacgctggctaatccagaggtgcgtgtgatgcaacagcaaaaaccgctggaaggcgcgcaactggtcattatgacgattgcgctgtcactggcgacattcatgcaggtgctggactccaccattgctaacgtggcgatccccactatcgccgggaatctgggctcatcgctcagccagggaacgtgggtaatcacttctttcggggtggcgaatgccatctcgatcccgcttaccggctggctggcaaagcgcgtcggggaagtgaaactgttcctttggtccaccatcgcctttgctattgcgtcgtgggcgtgtggtgtctccagcagcctgaatatgctgatcttcttccgcgtgattcaggggattgtcgccgggccgttgatcccgctttcgcaaagtctattgctgaataactacccgccagccaaacgctcgatcgcgctggcgttgtggtcgatgacggtgattgtcgcgccaatttgcggcccgatcctcggcggttatatcagcgataattaccactggggctggatattcttcatcaacgtgccgattggcgtggcggtggtgttgatgacactgcaaactctgcgcggacgtgaaacccgcaccgaacggcggcggattgatgccgtggggctggcactgctggttattggtatcggcagcctgcagattatgctcgaccgcggtaaagagctggactggttttcatcacaggaaattatcatccttaccgtggtggcggtggtggctatctgcttcctgattgtctgggagctgaccgacgataacccgatagtcgatctgtcgttgtttaagtcgcgcaacttcaccatcggctgcttgtgtatcagcctcgcgtatatgctctacttcggcgctattgttctgctgccgcagttgttgcaggaggtctacggttacacggcgacctgggcaggtttggcctctgcgccggtagggattattccggtgatcctgtcgccgattatcggccgcttcgcgcataaactggatatgcggcggctggtaaccttcagctttattatgtatgccgtctgcttctactggcgtgcctatacctttgaaccaggtatggattttggcgcgtcggcctggccgcagtttatccaggggtttgcggtggcctgcttctttatgccgctgaccaccattacgctgtctggtttgccaccggaacgactggcggcggcatcgagcctctctaactttacgcgaacgctggcggggtctatcggcacgtcgataaccacgaccatgtggaccaaccgcgagtcgatgcaccatgcgcagttgactgagtcggtaaacccgttcaacccgaatgcccaggcgatgtacagtcaactggaagggcttgggatgacgcaacagcaggcatcaggctggattgcccagcagatcaccaatcaggggctgattatttccgccaatgagatcttctggatgtcagccgggatattcctcgtcctgctggggctggtgtggtttgctaaaccgccatttggcgcaggtggcggcggaggcggtgcgcactaagtacaactaagccagttcatttgaactggcttttttcaattaattgtgaagatagtttactgactagatgtgcagttcctgcaacttctctttcggcagtgccagttcttcgttgctgttgatgcgtacgtcacgttccagaatgctacgcgcaatatcctgcgcttcctgcaacgagtgcatctggtaagtgccacactggtagacgttcagttccgggatctgattctgatcctgcactttcagcacgtcttccattgccgctttccaggcatcagcaacacgctgctcatctggcgtaccaatcagactcatataaaaaccggtgcggcagcccattggcgagatatcgataatctctacaccattaccgttaagatggttacgcataaaaccagcaaacaggtgctccagggtatggatccctctttctggcatcacttctttgttcggcacgcagaagcgcagatcgaacacggtgattgcgtcgccatgcggggtgttcattgttttcgccacccgaactgcaggcgcttccatccgggtatgatcgactgtgaagctatctaacaacggcatttagccacctccggtaatttttttaaaaattttctgaactctttcttcccaggcgagtctgagtatatgaaagacgcgcatttgttatcatcatccctgaattccagagatgaaattttggccactcacgagtggcctttttcttttctgtcaggcgtgtttttccagccacaccgcaaacggttcggtatcagcggcttccatttcctgctgacggcgttcagacgcctcgcgctcggctacaaaatcctcttcgcgcagaatttccagcggctcttcacgcagcagattacggtaggcttctgcaaatgctttgcctgttccgccaataccagtatcaatcatagaccttaagatacgggcagagaaagtcagatcgggattatcgaagcaggcaaccagttcatcacacactttctgatacgcttcgccgccgttaatactatccagcgtttgcgcgacgcgtttcagatcgcggaacagatctttacccacctgcggtaacgggaactgtgcggtttcgcagccgatacccagcgtcagacccggtttgcgaccttcgaggatcacccggttccagttaacgcgtgtacaggcaagttcgctactgctcatttccggtgcatcagccagcgcacaccagaccataaacaggtcgaggaatcgcacctgctgttcatctacaccaatcggcgagaacgggttgatgtccagcgaacgcacttcaatatattcaatgccgccacgtaacagcgcatcagaaggcgactcgccgctgcgggtaacgcgttttggacgaatcggcgcgtacagttcgttttcaatctgcaacacgttgctgttgatttgcagcctcttaccgtctttctcaataccaatcttcgcgtactcttccgatggcgttttgattgcctgtttaaggcccgctacgtactcgtaaagatcgttgaaggtaataccaagattgctttgcgatttattggtatagccgagatcgctcaaacgaagagaggtcgcatacggcaggtaatacataccgcactcggttttctcaaacggcagcgacgttggttttccttgcaggaaagaagaacaaatcgccggagatgcaccaaacagataaggaatgacccaaccgaaacgatagtaattgcggataacgcggaaatagcccgcagaaattttctctttggcatcagcgcccgagatatcaccgcacttcgcttgccagaatgccattggcaaagagaaattgtagtgcacgccggaaatggtttgcatcagcgcgccgtagcgatttttcagcccttcacgatacagcgttttaaagcgtccggtgttagaagtgccgtactgtgccagttcgatgtcctgaccttctgcgatgtagcatggcatacttaacggccacatccgctcatcgcccatattgcgcgccgtataacgatgcagatcgcgcataaaggtcagcatatgttcaatatcaccatccactggtgtaatgaattccagcaatgcttccgcaaaatcggtagtaatccatttgtgcgtcagtgcggaacctaatgcttcaggatgacctgttgttgccagtgtgccatcagcattaacacgcaaagtttcgcgctccagcccacgctgtatcccctttaacgcctgaggatgtttttccagccaggccagcgcctgtgatacgtccgggatcaaattgacctcccgcctgtcaaaatcgttttaattagcataactgtaatggtgaccatatgtgcaggcctacaattagtgccaccacatcatgccctgaacggtcgctgctgcaactgcaacatagcgtaacgctttaccaaggcacaaaaaaaagattaccggtccccacgagatgcgcatccatcccgctaacagacacagtaaatcgccaaccacgggcatccagcttaataatagcgtgactgcaccatagcgtttcagccagccggtagctttctcttgccagcgcgatgttttacgcaatggaaagaaacgcccaaggataacgttagttaaccctccaaggctattacccattgttgctgttaaaactaaaacccagggatgactgatcccggaaagcaacattgccaccagcacgacttcggagttgccgggtaatagtgtagcgctgagaaaactactggcaaacaacgagaaaagcgataacgcttcactcacagcaagcgaacatccacggcgtccatgcctgctgcacgggccgcctgaataccgaaatcggcatcttcaaagaccacacactgcgtcggttgcacgcccatacgctgcgcgcacaacaaaaatgtgtctggcgcgggtttatggtgtttgacgtgatcggcagcgacgacggcgtcaaaataatggcgtaatcccaggtgcgccagcaatgcctcagcgatggcgctttcactccccgttcctacagccattgggcgacgaccatgccaacttttcaccacatcaacaagaggaagcggttcgacgctatccagcagcatacttcttactgcttctgttttttcacgcgctaacgcatgcgggtcgagatcggcctgattcagctcaataattgcctgagcaatacgccaggtgggcgatccattaagcgcaatcatcgcctgaatatcgtactgaagaccgtagtgccctaatacttcgcgccacgctttacggtgcgtaggctccgtatccaggattgtgccatccatatcaaaaattaaacctgcataacgctcgtacatggtcttctcgcaagtcgaaaaatatgacgctactttagcgtaattgcttgattttgtcgctgatggcgaaggagaagaaaattcaggaaatggataaaggagttatttagaaatgagatatttttgaaggaaattttttggagaagatggtgcatccgggaggatgactcactgacgttcgcccttcgggccgttgctggcgcaacgttatccttcctggtgcctgcggttaataccgctatctcttcgataccttcattgctgaaggttacggagaatatggtgcatccgggaggattcgaacctccgaccgctcggttcgtagccgagtactctatccagctgagctacggatgcatcgggaaaacttattctactgctgatattgataccgctactaaagccatatcaattaagagatggtgcatccgggaggattactcgccttgcggctcgcccttcgggccgttgctaaagcaacgttatcatccctagtgcctgcggttaattccgctacctcttcgataccttcattgctgaagatttcggagaatatggtgcatccgggaggattcgaacctccgaccgctcggttcgtagccgagtactctatccagctgagctacggatgcatcgggaaatttattttactgctgatattgataccgctactaaagccatatcaagtaagagatggtgcatccgggaggattcgaacctccgaccgctcggttcgtagccgagtactctatccagctgagctacggatgcatcgggaaacttactttactgcagattttttgataccgctactaaagccgtatcaagtaagagatggtgcatccgggaggattactcgccttgcggctcgcccttcgggccgttgctaaagcaacgttatcctccctggtgcctgcggttattaccgccacctcttccataccttcatcgctgaaagtacgtagaatatggtgcatccgggaggattcgaacctccgaccgctcggttcgtagccgagtactctatccagctgagctacggatgcaaatggcggtgaggcggggattcgaaccccggatgcagcttttgaccgcatactcccttagcaggggagcgccttcagcctctcggccacctcaccacacgcctcttacgagtgcttcgaagaacttgtttatcgctcatcgtcgctgcgtggcgcacatattactttctgagacttataagtcaaacaatttttcctacacttttatcgtttgcacacttcacgttcaattagtctgtaaaaacgtcaaaaagagtgttttatcaacagaagaatggaggtctgacagatagtagtaatgcaaaaaaatggagacttaagttgaatgaacgggagtaaagcgaaaagactatagagtgaaggagaaattttgagggtgcgtctcaccgataaagatgagacgcggaaagattagtaactggactgctgggatttttcagcctggatacgctggtagatctcttcacggtgaacagaaacttccttcggggcatttacgccaatacgtacctggttgccctttacccctaaaactgtcacggtgacctcatccccaatcatgagggtctcaccaactcgacgagtcagaatcagcattctttgctccttgaaagattaaaagagtcgggtctctctgtatcccggcattatccatcatataacgccaaaaagtaagcaatgacaaacacattacatctaagcagtcatggcattacattctgttaaacctaagtttagccgatatacacaacttcaacctgactttatcgttgtcgatagcgttaatgcgaatgccgtgaagcgagtccacggcattgcctgacgcttatattattgcaatttcgcgctgacccagcctttcacactggctaacgctgcaggtaaggccgcagcatccgtaccaccggcttgcgccatgtcaggacgtccaccacccttgccgcccacctgctgagcgaccataccaatcagttcccctgctttcacacgatctgtgacgtccttagatacgcctgcaatcagagaaaccttaccttcgactaccgttgccagcacgataattgtcgaccccagctgattttttaaatcgtcaaccatggtacgcaacattttcggctcaacaccgctaagctcgctaaccaacagcttaacaccattaacatcaattgccttactggaaagatttgcgctctcctgtgcggcagcttgttctttaagctgttgtaactctttttccagctgacgcgtacgttccagtactgagcgcactttatcagccagattattgctatcgcctttcagcagatgcgcgacttcgcttaagcgatcgctgtctgcatgaacggtggcgatagcaccttctccggttaccgcttcgatacgacgaacgcctgcagcagtacccgattcagagatgatgcggaacagaccaatatcaccagtgcggctggcgtgagtaccgccacacaactcggtagagaaatcgcccatgctcagcacgcgtacgcgctcatcatacttctcgccgaacagcgccatcgcacctttcgctttcgccgcttcgagatccatgatgttggtttcgatcggcaaattgcgacgaatctgtgtgttcaccaggtcttcgaccgcacgaatctcttctggtttcatcgcttcgttgtgtgagaagtcgaagcgcagcaccttgtcgttaaccagtgaacctttctgcgatacatgagtacccagaacctggcgcagcgcagcgtgcatcaggtgcgttgcggagtgattcagacgaatacgggcgcgacgagcctcatcaacatcagcctgcaccgcgtcgcccactttcagagaacccgcagcaagtttaccgatgtgaccaatcgcctggccgtatttctgcgtatcttccaccgcaaaggagaagttagcgcctttcagttcgcctttatcgccaacctgaccgccggattccgcatagaatggcgtttgatccagcacgaccacagcttcctggcctgcattgatggcatcaaccgctttaccatcaacaaacagcgcagtcactttgccgttcagttccagatggtcatagcctttaaattcagatgcactgtcaacacggatcattgcgttgtaatcggcaccaaagccgctggcttcgcgcgcgcgacgacgctgctcttccattgcagcttcaaaaccagcttcgtcaactttgatgttgcgctcacgacaaacatcagccgtcaggtcaaccgggaagccataggtgtcgtacagacggaaagcagtttcaccatccagcgtatcaccagaaagttttgccagctcttcatccagcaacgccagaccgcgctccagagtacgagcaaactgctcttcttcagtcttcagcacctgctcaacctgcgcctgctggcgtttcaggtcttcacccgcagagcccataacgtcgatcagcggaccaaccagtttgtagaagaaggtttctttcgcgccgagcatattaccgtgacgcactgcgcgacgaatgatacgacgcagtacataaccacggttttcattggacggcattacgccatccgcgatcaggaacgcacaagaacgaatgtggtcagcgattacgcgcagcgatttattgctcagatcggttgcgccagtgactttcgctaccgcctggatcagcgtgcggaacaggtcgatgtcatagttagagttaacgtgttgcagcaccgcagcaatacgctccagacccataccggtatctacagacggcttcggcagcggttccatcgtgccatcggcctggcggttgaactgcatgaagacgatgttccagatctcaatgtagcggtcgccgtcttcttccgggcttcccggagggcccccccaaatgtggtcgccgtgatcgtagaagatttcggtgcacgggccgcacggaccagtgtcacccatctgccagaagttgtcagatgcgtatggcgcacctttgttatcgccgatgcgaataatacgttcgcgcgggatccctacttctttttcccagatttcgtaggcttcgtcgtcgctttcatagacggtaacccacagacgctctttcggcagggcaaaccatttttcgctggtcagcagttcccatgcaaactgaatggcatcgtgtttgaaatagtcgccgaagctgaagttgcccagcatttcgaagaaggtatggtgacgcgcggtgtaaccgacgttttccaggtcgttgtgtttaccacccgcacgcacgcagcgttgggaagtggtagcgcgggaataattacgcttgtcgagcccaaggaacacatccttgaactggttcatcccggcgttggtaaacaacaaagttgggtcgttatggggtaccagggagctgctggcaactacctgatgtcccttactatggaaaaagtcgagaaacgcctgacggatctcagcggtgctcttgctcataattatcctgaaatcaagctaacgaaatatcgccaccagctccagcgtgtcttaaccgccgggctggtaactgaaaagtgggaataagataagttttcttgactgggaaggtaaaataccgtatgcgttcagtcggcaaaatttcgccaaatctcctggatatcttccatcagatagccacgatagagcagaaaacgctggatcttaactttttctgaaaagacagttggcaaaggttcgccatattttcgcgtcgcctgatcgcgcgccagtgcgcaccagtcgatgtcacattcacgcatcgctttttctgtcgcttcgcgggaaatacctttctgattcagttcctggcgaatacgcgcaggtccataacctttgcggctacggctggcgataaagcgcgcaacaaatcggctgtcatcgagatagccatgttcatggcaccaggcaataacgcgctcgtaatcttctgccgtagcatcaatctcttctgggccatttttgcccataatcggtgccgcgagtttacgtcgcagttcttgctcactgtgatcgcgcaccgccagaatgcgtaccgcacgatccaacaggcgagcatatgccgggcgacgggatgttgattctgtcatggcatatccttacaacttaaaaaagcaaaagggccgcagatgcgacccttgtgtatcaaacaagacgattaaaaatcttcgttagtttctgctacgccttcgctatcatctacagagaaatccggcgttgagttcgggttgctcagcagcaactcacgtactttcttctcgatctctttcgcggtttccgggttatctttcagccaggcagtcgcattcgctttaccctgaccgatcttctcacctttgtagctgtaccacgcgcctgctttctcgatcagcttctcttttacgcccaggtcaaccagttcgccgtagaagttgataccttcgccgtagaggatctggaattcagcctgtttaaacggcgcagcgattttgttcttcaccactttcacgcgggtttcgctacccaccacgttttcgccctctttcaccgcgccgatacgacggatgtcgagacgaacagaggcgtagaatttcagcgcgttaccaccggtagtggtttccgggttaccgaacatcacaccaattttcatacggatctggttgatgaagatcagcagcgtgttggactgcttcaggttacccgccagcttacgcatcgcctggctcatcatacgtgccgcaaggcccatgtgagagtcgccgatttcgccttcgatttccgctttcggcgtcagtgccgccacggagtcaacgacgataacgtctactgcgccagaacgcgccagggcgtcacagatttccagtgcctgctcgccggtgtccggctgggagcacagcaggttgtcgatatcgacgcccagtttacgtgcgtagattgggtccagcgcgtgttcagcatcgataaacgcacaggttttaccttcacgctgcgctgcggcgatcacctgcagcgtcagcgtggttttaccggaagattccggtccgtagatttcgacgatacggcccatcggcagaccacctgccccaagcgcgatatccagtgaaagcgaaccggtagagatggtttccacatccatggaacggtcttcacccaggcgcatgatggagcctttaccaaattgtttctcaatctggcccagtgctgccgccaacgctttctgtttgttttcgtcgatagccatttttactcctgtcatgccgggtaataccggatagtcaatatgttctgttgaagcaattatactgtatgctcatacagtatcaagtgttttgtagaaattgttgccacaaggtctgcaatgcatacgcagtagcctgacgacgcaccgcatcacggtcgccgctgaagcattcccgccgggtaatgccttcaccgcgggcagtggcaaaagcaaaccagacggtgccgacaggcttctcttcactgccgccatccggcccggcgataccactaatagacacggcataatcagcacgagccgctttcagtgcgcctatcgccatttccaccacgacgggttcactcaccgcgccatgctgcgccagcgtctcttcgcgtacgccgatcatctgcgctttggcttcgttactgtaggtgacaaatccgcgttcaaaccaggcggagctaccggcaatatcggtaatcactttcgctacccaaccaccggtacaagactcggcagttgttacggttgcgccacgggctttcagcgcctgcccaacctgttcacttaactgcatcagttcactgtcagtcatcacaacctctgtcagtcaaaaatttatgccggacaagatagcactttcgtcaggaagatggtgttggcgttgcaattttacgaggaggattcagaaaaaagctgattagccagagggaagctcacgcccccctcttgtaaatagctactgtactcgcgccagcgccacggcttgtcctaactgccagaccgccattgcgtaatgggtgctgtggttgtaacgggtgatggtgtagaagttcggcagaccgtaccagtactggtagccggtgccaacatccagacgcagcaggctggcttgttgatggttgcccagcggctgctgtggcgttaaacctgcggcggcaagctgcgaaatgctgtacttagttttgaagccatttggcaagcctggagcctgaccgtttgccattaccgcgacctgatcgcctttcacccagccgtgcgctttgaaatagttcgccacgctaccgatcgcatcaaccggatcccacaggttgatatgcccgtcgccgctgaaatctaccgcatattgtttgtaagacgacggcataaactgtccgtagcccatcgccccggcaaaggaacctttcagattgagcggatcgtcctgctcgtcgcgcgccatcaacaggaaggtttccagctcgccagagaaatactccgcgcggcgtgggtagttaaatgacagcgttgccagcgcatcgaggatgcgagttttccccatcacgcgcccccagcgggtttcaacgccgataatcccgacgataatttccggcggtactccatacacctgccacgcgcgattcaacgcatcttcatactgattccagaaaaccacaccgttctgcacgttgtccggcgtaataaattttttgcgataacggagccatgcgccgttcggacctgatggcggtttcaccgatgtggttggtgcctggttatccatcagccgcagtaccgaatccagacgcttcgcctgggagagaatttcctgcaactgctgacgatcgaaaccgtgtttgttcaccattttgtcgatgaactgctgggcattcgggttattagcgaaatcgccgcccatctgcatcacattgtgctgcggctcaagcaggaagccgccagacggcgttccggtggtcgtatcagtctcagtaggttttggcttgctgctacaggcggcaagcaacacaaaaaggggaagcaatgttacataacgacgcttgaacatgaggggtccatttaacagattcaaccaggggcaagtatggtaaagcatcacgccccgcacaaggaagcggtagtcactgcccgatacggactttacataactcaactcattcccctcgctatccttttattcaaactttcaaattaaaatatttatctttcattttgcgatcaaaataacacttttaaatctttcaatctgattagattaggttgccgtttggtaataaaacaataaatcctgaaggagagaacaatgatagaaaccattactcatggtgcagagtggtttatcgggctgttccaaaagggcggaaaggtgtttaccgggatggtgaccggcattcttccgctgttgattagcctgctggttatcatgaacgcactgattaattttatcggtcagcatcgtattgaacgttttgctcaacgttgcgccggtaaccctgtttcccgttacctactgttaccgtgcattggcacgtttgtcttttgcaatccgatgaccctaagcctgggtcgctttatgccggaaaagtacaaacccagctactacgcggcggcctcttatagctgccactcaatgaatggcctcttcccccatatcaaccctggcgaactgtttgtttatcttggcattgccagcggtctgacaacgctgaacctgccacttggcccactggcggtgagttatctgctggttggtctggtcaccaatttcttccgcggctgggtgaccgatctgaccaccgccatttttgagaaaaagatgggcattcaacttgaacaaaaagttcacctggcaggagcaacatcatgacgcatattcggatcgaaaaaggaacgggtggctggggcggcccgcttgagctgaaagccacgccgggaaaaaaaatcgtctatatcaccgccggtacccggcctgcgattgttgacaaactggcacagcttactggctggcaggctattgacggatttaaagaaggtgaacccgcggaggcggaaattggtgtcgcggtaatcgactgtggcggcacattacgctgcggcatctatccgaaacgacgtattcccaccattaatatccactcgacgggcaagtccggtccgctggcgcagtacattgtggaagatatttatgtctctggcgtaaaagaagaaaacatcactgtagtaggtgatgcgacaccacaacccttttccgtgggccgtgactatgacaccagtaagaaaatcaccgaacaaagcgatggtttactggcgaaggtgggaatgggcatggggtccaccgttgcggtgctgtttcaatctggtcgtgacaccatcgacactgtattaaaaaccattctgccgtttatggcattcgtctcggcgctcattggcatcattatggcttctggccttggtgactggattgcccacggtcttgctccgctggcgagccatccactgggtctggtcatgctggcgctcatctgttccttcccactgctttcacctttcttcggcccaggcgcagttatcgcacaggttatcggcgtattgattggcgtgcagattggtctcggcaatattccgccgcatctggctttaccggcactgtttgccatcaacgcgcaggcggcctgcgacttcatcccggtcggtttgtcgctggcggaagcccgtcaggacacggttcgcgtcggtgtcccttctgtactggtgagccgctttttaaccggcgcgccgactgtactgatcgcctggtttgtctccggttttatctatcaatagaggctgaaacatgaccgttatttatcagaccaccatcacccgtatcggcgcgagtgccattgacgccctcagtgaccagatgctcatcacctttcgtgaaggcgcgcctgcggacctcgaagagtattgcttcattcattgccacggcgagttgaaaggtgcactccatcccggtttgcaattttcactcgggcagcatcgctatccggtgaccgctgttggcagcgtggcggaagacaaccttcgcgaactgggtcatgtcaccctgcgcttcgatggtttaaacgaagcggaatttccgggcactgtccatgtggcaggccctgtccccgacgatatcgcgccgggatcggttttgaagtttgaatctgttaaggagtaaaaaatgaatcaggttgccgttgtcatcggtggtgggcaaaccttaggcgcgttcctgtgccacggtctggctgccgaggggtatcgcgtcgcggttgtcgatattcagagcgacaaagccgcaaatgtggcacaagaaattaacgccgaatatggtgaaagtatggcgtacggttttggtgctgacgccactagcgagcaaagcgttctggcgctctctcgtggggtagatgaaatctttggtcgcgtggatttgctggtctacagcgccggaatagcaaaagcagcctttatcagcgacttccagctcggcgattttgaccgttcgctacaggtgaatctggtgggttatttcctgtgtgcgcgtgaattttcgcgtttgatgatccgcgacgggattcaggggcgcattattcagatcaactcgaaatccggcaaagtgggcagcaaacacaactctggctacagcgcagcgaaatttggtggcgtcgggctgactcaatcactggcgctggatctggcggagtacggcattacggtgcattcactgatgctcggtaacctgctgaaatcgccgatgttccagtcactgttgccacaatacgcgaccaagctgggtatcaaaccggatcaagtcgagcagtattacatcgacaaagtaccgctcaaacgcggctgcgattatcaagatgtgctgaatatgctgctgttctacgccagtcctaaggcgtcgtactgcaccggacagtcgatcaatgtcaccggcggtcaggtgatgttctgatcaacagcggagatccattaaggatctccgctgagactatagaatgcctgatgcgctacgctcatcaggcatacaggacttccgccactacattaaggaaaagttatggtatccgcactcatcaccgtcgccgttatcgcctggtgtgcgcaactggccttaggcggctggcaaatttctcgttttaaccgtgccttcgacacactatgccagcaagggcgggttggcgtgggccgttccagcgggcgctttaaaccgcgggtcgtggtcgccatcgcgctggacgatcagcagcgcatcgtcgacaccttgtttatgaaaggactgaccgtcttcgcccgaccgcaaaaaattcccgcaattaccggtatgcatgcgggtgatttacagcccgatgtgatctttccccatgatccactatcacagaatgctctatcattggcgcttaaactgaaacgtggataatttcgttgtgaatgttacttgcttgcgaagttatcattttgaaacctaaatcaggtaatcacgcccatgaaacctcgtcagcgtcaggccgccattctggagtatctgcaaaagcagggtaaatgctcggttgaagaattggcgcaatactttgacaccacaggcacaaccattcgcaaagatctggtcattctggaacatgccggaaccgtcattcgtacttatggcggagtggtgttgaataaagaggaatccgatccgcctatcgatcataaaacactcatcaacacccacaagaaagagctgattgcagaagctgccgttagttttatccatgatggcgattcgatcattcttgatgctggcagtaccgttttgcagatggttcccctgctctcgcgctttaataacatcacggtgatgaccaacagcctgcatatcgtcaatgcgctatccgaactggataacgaacaaactatcctgatgccaggcggaacgtttcgcaaaaaatcggcctcatttcacgggcaactggcagagaatgccttcgagcatttcaccttcgataaattgtttatgggcaccgacggcatcgatctcaatgcgggcgtaaccacctttaacgaggtttataccgtcagtaaggcaatgtgcaatgccgcgcgcgaagtgattttgatggcggactcatcaaagtttggccgtaaaagccccaacgtagtttgcagtcttgaaagcgtcgataagctgattaccgacgcaggtatcgatccggcgtttcgtcaggcgctggaagagaaagggatcgatgtgatcataaccggagagagcaatgagtgaagcactactgaacgcgggacgtcagacgttaatgctggagttgcaggaagcaagccgtttaccggaacgtctgggcgatgattttgttcgcgccgccaatatcatcctgcactgtgaaggcaaagtggtggtttcgggaattggcaaatcgggccacattggtaagaaaatcgccgcaacgcttgccagtaccggcactccggctttttttgtccatccggcagaagcgctgcacggcgatctggggatgatcgaaagccgcgatgtgatgctgtttatctcttactccggtggcgcgaaggaactggatctgattattccgcgtctggaagataaatctatcgcgctgctggcgatgaccggcaaaccgacgtcaccgctgggcctggcggcaaaagcggtgctggatatctccgtagaacgcgaagcctgcccgatgcaccttgcgccgacctccagcaccgtcaataccctgatgatgggtgacgcgctggcgatggcggtcatgcaggcgcgcggatttaatgaagaagattttgcccgctcccacccagccggggcactgggcgctcgcttgctgaataaagtgcatcatctgatgcgccgtgacgatgccatcccacaggtggcgttaaccgccagcgtgatggatgcgatgctggaactcagccgcaccggtctggggctggtggcggtatgtgacgctcaacaacaggtacaaggcgtctttaccgacggcgatttacgtcgctggctggttggcggcggcgcactcaccacgccagtcaatgaagcgatgacggtcggcggcaccacgttgcaatcgcaaagtcgcgccatcgacgccaaagagatcctgatgaagcgcaaaatcactgccgcaccggtggtggatgaaaacggcaaactcaccggcgcaataaacctgcaggatttctatcaggccgggattatttaatccttcaatcccagacgtttcgccagccgatgcaggttggcgacgtcggtttccagcatccgcgcgcaggcagcccagttgtgatgattttgtgccagtgcctgacgaatagtttcacgctggaacgcttctgtcgcttcacgcaggttttgcttaacaacgggcaccgccgccacttctggcgtcggcaacgtcacctcaggaaaagcaaaatgttgcgcctcaagaatcacttcatcgccgctgcgggtggctctcgccagaactaccgcccgatgaatagcatgttccagttcgcgcacgtttcccggaaaactgtagtgttgcagtaaatttcgcgctccggcacttaataccacgcgggagagcccctgccgcaaacgacactgctcgcagaaataccccgccagcagaatgacatcatcgccccgctcacgcagcggcggcaccgaaagtggaaacacgctcaggcgatgaaacaaatcggcgcggaatcgccctgccagcacctcttcgcgtaaatcgcggttagtcgccgccagtcacgcgcacatcgacccgcaaacaacggtcatcgccaacgcgctgaatatcgccatactgcaacaccctcagcagcttggcctgcaatgccaacgacaactcgccgatctcatccagaaacagcgtgccgttatccgccatttcaaacttcccgctgcgattactgatagcgccagtaaacgctcctttcacatgcccgaacaactcactttccgccacactttccggcagtgcagcacagttgagatagaccagcggattcaccgcccgtggcgaggcttcatgaatcgctttcgccaccagctccttaccggttccagtctcaccgctgatcaggacgttgagatcggacgccgccacaatctcaatctcttttttcagttgcgtcatgccaggggacaagccaatcatctgcgtctgtttcaccgcttcaaacggcgtggcatcgcctggcagcatattctggctttccagttgttcaatcagcaacgcattgcttaacgctcccgccgccagcgcagcaatcagccgtagctcttcgtcgctgaaaacatcgaactgatcgggctgcatcccgtcgagcgtcagtgcgccgatcaggttttgcccggcaaacaatggcagaccaacgcaggcgtgaaccttcagactctcctgcccaggaatcaaaccgtcatagggatcgggcaattcgctgtctgcgggaaagcgcaccacatccccggcgcgggcaatcgcttccagccgtggatgcccttccagcgcaaagcgtctaccgagtacatcctttgccagaccgtcgatggcaagcggaataaactgccgcgaatcgtaacgtagcaacgcagacgcatcgcactccagcacctgacgtagcgtggtgatcaggcgctgaaaacgatcctggtgaccaatcccacgctgcaattcgatggcgatattcgccagcacatcaacggaaaaactcatctttgcctcactgtcaatttgactatagatattgtcatatcgaccatttgattgatagtcattttgactactcattaatgggcataattttatttatagagtaaaaacaatcagataaaaaactggcacgcaatctgcaattagcaagacatctttttagaacacgctgaataaattgaggttgctatgtctattgtggtgaaaaataacattcattgggttggtcaacgtgactgggaagtgcgtgattttcacggcacggaatataaaacgctgcgcggcagcagctacaatagctacctcatccgcgaagaaaaaaacgtgctgatcgacaccgtcgaccataaattcagccgcgaatttgtgcagaacctgcgtaatgaaatcgatctggcggatatcgattacatcgtgattaaccatgcagaagaggaccacgctggggcgctgaccgaactgatggcacaaattcccgatacgccgatctactgtacagccaacgctatcgactcgataaatggtcatcaccatcatccggagtggaattttaatgtggtgaaaactggcgacacgctggatatcggcaacggcaaacagctcatttttgtcgaaacaccaatgctgcactggccggacagcatgatgacttacctgacaggcgacgcggtgctgttcagtaacgatgctttcggtcaacactactgcgacgagcatctgttcaacgatgaagtggatcagacggagcttttcgagcagtgccagcgttactacgccaatatcctgacgccgttcagccgcctggtaacaccgaaaattaccgagatcctgggctttaacttaccagtcgatatgatagccacttcccacggcgtggtatggcgcgataacccgacgcaaattgtcgagctgtacctgaaatgggcggctgattatcaggaagacagaatcaccattttctacgacaccatgtcgaataacacccgcatgatggctgacgctatcgcccaggggattgcggaaaccgacccacgcgtggcggtgaaaattttcaacgtcgcccgaagcgataaaaacgaaatcctgactaatgtcttccgctcaaaaggcgtgctggtcggcacttcgacgatgaataacgtgatgatgccgaaaatcgccgggctggtggaggagatgactggtttacgcttccgtaacaaacgcgccagtgctttcggctctcacggctggagcggcggtgcggtggatcgtctttccacgcgcctgcaggatgcgggtttcgaaatgtcgcttagcctgaaagcgaaatggcgaccagaccaggacgctctgaagttatgccgtgaacacggtcgcgaaatcgcccgtcagtgggcgctcgcgccgctgccgcagagcacggtgaatacggtagttaaagaagaaacctctgccaccacgacggctgacctcggcccacggatgcagtgcagcgtctgccagtggatttacgatccggcaaaaggcgagccaatgcaggacgttgcgccaggaacgccgtggagtgaagtcccggataacttcctctgcccggaatgctccctcggcaaagacgtctttgaagaactggcatcggaggcaaaatgagtaacggcattgtgatcatcggttcgggcttcgccgcccgccaactggtgaaaaatattcgcaaacaggacgccactattccattaaccctgattgccgccgacagcatggatgagtacaacaaacctgacctcagccatgttatcagtcaggggcaacgtgccgatgaccttacccgccagacggcgggtgaatttgccgagcagtttaatctgcacctgtttccacaaacctgggtgacggatatcgatgccgaagcccgtgtggtgaaaagccagaataatcagtggcaatacgacaagctagtactggcaaccggtgccagtgcctttgtcccgcctgtgcctgggcgtgagttaatgctgacgttaaatagtcagcaagagtatcgcgcctgtgaaacgcaactgcgggatgcccgacgcgtgttgattgttggcggtggtttgattggtagcgaactggcgatggatttttgtcgtgcaggcaaagcggtcacgctaatcgacaacgctgccagtattctggcgtcgttaatgccaccggaagtaagcagccgcttgcagcatcggttgacggagatgggcgttcatctgctgttgaaatctcagttacaggggctggaaaaaacggattctggcattcaggcaacgctggaccgccagcgcaatatcgaagtggatgcggtaattgccgccaccggactgcgcccggaaaccgccctggcacgacgcgccgggctgacgattaatcgcggcgtttgcgtcgatagttatctgcaaaccagtaataccgatatttacgcgctgggcgattgcgcggaaattaacggtcaggtattgccgttcctccagccgattcaacttagcgcgatggtgctggcaaaaaatcttctcggcaataacacgccgctgaaactcccggcgatgctggtgaaaatcaaaacgccggaattaccgctgcatctggcaggcgaaacccagcgtcaggatttacgctggcaaattaataccgaacgccagggaatggtggcgcgcggcgttgacgatgctgaccagcttcgcgcctttgtggtcagtgaggatcggatgaaagaggcatttggattgttgaaaacattgccgatgtaggtgggctactgtgcctaaaatgtcggatgcgacgctggcgcgtcttatccgacctacggggacgcatgtgtaggccggataaggcgtttacgccgcatccggcaatggtgtccaaatgcaacacgttttatccgttctggacttcacccgctaaccaacgcgccgcagcaataaccccctgccccagagacaaaccgccatcacccgccggtaaactctgtggaaagagcaatgtgaaatcagcgagataatgcgccagacgtgcacgcagcaaacggttatgaataaccccgccgctaaataccagcgtagtgataccacgcatcgtggcctgctcacgcatcaacgcggcaaaaccctgcgccagcgcatcatgaaacgcccacgcgcgttgattaaccggtgcctgccagttcagccactgctgccagaaagtggcgagatccagttgattgtccacccgcggcattgtcaccggatgcgtcactccgtggcatgaggctgcgagcgcctccagagcacaagccgcttcaccttcataacttaacgtggctggcgcacagcccagtgccgccgccactgcatcgaaaaaacgcccacacgatgacgccagcggcgcgttaattccacgctcaatggcccgcgccagcacgctccagttttggtgttgcacacttgctgtttcagagtaattctgccactccggcacaaagcgcaggcactgcgccagcaggtttcgccacggctgcttcgctgccaaatcgccacccggaagcgccactgcaggcaagccgcccaggtgctcacattcgcgatagttcacccgcaggcactcgccgccccacaaagcgccgttctcccccataccgataccgtcgagcgtcaaagcaatgacatcaccgccatccagcggccactgatgctctgccagacacgccgctgcatgggcatgatgatgcagtaccgtttgcgtcggcagattcatttcacgcgcccactggctggagacatagcccggatgcgcgtcatgcacaacgtattgcggggtaaaatcgtagatgttttgcatcaggcgtaacgcttcgcgccactgcatctggatgccatcgtcacttaaatcgcccagatgctgactcaacaccgcttgttcaccgcgcaccaggcagaaggtatttttcagatccgcgccgagacacagcacaggcggaacatttttaaagcccggaggcaaagccagcgcatccggcacatacccccgcgaacggcgcagcatttcgccgctttcgcgcaccaccgaatcatccatccgctgcacgatgtcgcggttatgtatcaagaatccgtcggcaatgccctgcaaatccgccagcgcctgttcgttgctgatagctggtggtttaccgctcaggttgccggaggtcatcaccagcgggcattgcagttcctgtaacagcaaatgctggagcgggttcgcaggcaacattaccccgacttcgttaaggtcaggggcgatatcatcacaaagctcaggaacgtattttttatccaccagcacaatcggcgcggcgggcgtggtaagcaactggcgcgcagcgtctggtaaaccgtcagccactggcaacatgaccgccagcggtttcgccgggcgatgtttgcgcgcccgaagtgtcgccaccgcgttactgttacgtgcatcgcaggcaagatgaaatccgccaatccctttgatggcgacaattttgcccatttttaactgtgcgatagctgcctgtaatgccgcctcttgttccgcatgttcaccatgacttacccattcaagatgcgggccacactccgggcaggccaccggctgggcgtggaagcgacgatcgagcgggtcacggtactctttgtcacaggccggacatagcggaaacgccgccatcacggtaaacgggcggtcgtaaggcatggcgcgaataatggtgaaacgcgggccgcagtgggtacagttgataaacggataacgataacgccgttcgcctggggtattcatttcggcaaggcaagcagggcaagtagcggcatcgggaacaatttgcgtattcatggtgccgcctgtgctctggcgtatagtgaactcggtgggcagttgtgaccagataaacggctcacgctcgacgctatcaatacgcgccagcggcgggcagtgctgatacaattgaacaagaaacgtttccgggtcttcccgcagccggacttctacgccatcgccgtcattacagacatcgccgtgaagatttaattgctgtgccagctgccagacaaacggacgaaaaccgacgccctgcactttgccacgaatacgcagttggacaccgcaagatgtgttttttgccattgagttattcccgccatcatgaattgcgtaacccgccctgccggacacgacagcgtcgcatccggcagtcacaggtcggcgataccgcccgctccgtattctacgaatatttccgggaattcctttgatgccagaacagttctgtaagatttttagaacatcagcgccgtacggcggcgtttttctgcgctcagttgttcaagtttattacgatcgacacaaatcagcgcatgagtcgggcaagccgccatacacgccgggccgtcttcacgatggttgcacaggtcgcatttattggcttcggctttgtcagcccgtacattcagacccgcgccgctgttgcggatcaccggacgtaccaccacttccatcgcaccatacgggcaagccacaacgcaggttttgcaaccaatgcaacgttcctgcatcacatgaacaaaccctttatcacggctgatagcaccattcgggcagacgttagcgcacggtgcatcttcacactgacggcaaactgtcgccgtggaaatgttcacacctttaatgacatggatacgcggtaaaaaagtttccggggtcagcgatgcacagtcctgattttcctgatgagaaaccacgcacgctacttcacaggtacggcaaccaatacatttactcgcgtcagcaatgatgaaacggttcatcaaattctccagcaatgacagttaatgcgccgatacattcacaaatcatgccagtttttaatttactgttatttaaggaaattaatttctgtaatgcaggaaaaacgatgtcatcgacactagtgacgatgacatgtgatgacaatgtttatcgcgaaggagcaatgagtgagtcgcggcggatcagttttccgctgaaggttttcggcggtgagaaatccccgccatcgagcataaaaatcagccgtccaataatttcctgaatcatctcagtcaccggaatttttacgctggagagcgccggaacggtgtagggggcaatagcgatatcatcgaatccgataactgacacctgctctggcaccgctacgccgcgctcgtgtaacgctttcatcgcacctatcgccatatcgtcgttactggcaactaacgcgctaaatttagccccacgttcgagcaacatttctaccccttcggccccgctggcaggcgtccatttaccgttagcgataagtttttcattgagcgcaataccatgctgcgccagcgcgtctttatacccggcaagacgttcaatgctggtgggggaatccatcgagccggtaaggaaagcaatctcctgatgcccggcgtttatcaactctgccacggcgttaaaactggtctgtttatgatcgcaccagacgctatggctgctgtttttgcgcaggcggcgattaagcaccattatcggctgactgtgcgcgtcaatgatgtcatcgatctcatccacgcttaaaaaacgcgggtaaatcatgatcgcgtcgcagcgcagatccagcagatactgaatcgcctggcgctcttcttctgcgctgtgtttaccatctgccaatagcaactgccgccctttctcttccgccattcgcgcggcatgaaagagtaattcactaaaataaatgccgtggtaaagcgtgttggtcactaccagccccagcgtctgagtactcttcgccgacagattgcgcgccagcaagtttggacggtaaccgctctcttctaccgcctgaaacacgcgatctttagtctcctggctgacgtagccattacctgaaagcacgcgggaaacggtcgcttttgaaaccccggcgcgcttcgccacttccagcatcgtcgtcatcattttcatccctttacacgcaatcaacgcagtgtactgcaccgtttgccgattgtccttgcacaatcggcgggaaaaatattcaggtgaccggtttcacaaatataaaaaatgaacaattcactctcttgcttatttagtgacaactattcatgattttgtgaaaccggtttcttaattccgtttcagcatcggcatttttccgtcacgtcgactgataacaactacatctaccctactgataacaggataaaatccgatggccaaaaattatgcggcgctggcacgctcggtgatagcggcactgggcggcgttgataacatctcggcggtcacgcactgtatgacgcggttgcgctttgttatcaaagatgatgcacttatcgacagcccgacgttaaaaaccatccccggcgtgctcggcgtggtacgtagtgacaaccagtgtcaggtgattatcggcaataccgtttcacaagcctttcaggaagtcgtcagcctgctgccgggagatatgcagcccgcacagcccgtgggtaaacccaaactcacgctacgtcgcattggtgcggggatcctcgatgcgctgatcggcaccatgtcaccgctgatcccggcgattatcggcggatcgatggtcaaactgctggcaatgatcctcgagatgagcggcgtgctgacaaaaggatcgccgaccttaaccattctgaatgtgattggtgacggtgctttcttcttcctgccgctgatggtcgcgcatctgccgcgcatcaaatttaaaaccaatatgtcgctggcgattgccatcgcgggtgtgctggtacatccgagttttattgaactgatggcgaaagcggcccagggtgaacatgtcgaatttgccctgattccggtcaccgcggtgaaatacacctacacggtgatcccggcgctggtgatgacctggtgcctgtcatatatcgaacgctgggtggacagcattacaccggcggtgaccaaaaacttcctcaaaccaatgctgattgtgttgattgccgcaccgctggcaatcctgctgattggcccgattggtatctggatcggtagcgccatttcggcgctggtttacaccattcatggttatctgggctggctttcagtcgccattatgggcgcgctgtggcctctgctggtaatgaccgggatgcaccgcgtctttacgccaaccatcattcagaccattgccgaaaccggcaaagaagggatggtcatgccgtcagagatcggcgctaacctgtcgctgggcggttcatcactggcagtggcgtggaaaacgaaaaacccggaactgcgtcagacggcgctggctgcggcggcatcagccattatggcggggatttccgaaccggcgttatatggcgtggcgatccgcctgaaacgtccgcttatcgccagtcttatcagcggttttatttgcggcgcggttgccggtatggcggggcttgccagccactcaatggcagcgccggggctatttaccagcgtgcagttcttcgatccggcgaatccaatgagcatcgtctgggtgttcgcggtcatggcgctggcggtggtgctgtcgtttatcctcacactgttgctcggctttgaggatattcctgttgaggaagcggctgcccaggcgcgaaagtatcagagcgtacaaccgaccgtcgccaaagaagtaagtcttaattgaggatgaaaatgtcagtatttccagaaagttttttatggggcggcgcgcttgccgccaaccagtctgaaggtgcgttccgtgaaggtgacaaaggtctgaccactgtcgatatgatcccacacggcgagcatcgaatggcggtgaaactggggctggaaaaacgttttcagttgcgagatgacgagttttatcccagccatgaggcgacggatttttatcatcgttataaagaagatatcgccctgatggcagagatgggattcaaggttttccgtacctcaattgcctggagccgtctctttccgcagggcgatgaaatcacgcccaatcagcagggcattgctttttatcgttctgtctttgaagagtgtaaaaagtacggtatcgaaccgctggtcacgttgtgccacttcgatgtgccgatgcatctggtcaccgaatatggctcctggcgtaaccgcaagctggtggagtttttcagccgctacgccagaacctgctttgaagcatttgatggtctggtgaaatactggctaaccttcaatgaaatcaacattatgttgcatagcccgttctccggcgcgggtctggtgtttgaagaaggtgaaaatcaggatcaggtgaaatatcaggccgcgcatcaccagctggttgccagtgcgctagccaccaaaatcgcccatgaggttaacccgcaaaatcaggtgggctgtatgctggcgggcggtaacttctacccttacagttgcaagccggaagatgtctgggcggcgctggagaaagaccgggaaaacctgttttttatcgatgtgcaggcgcggggcacgtatccggcttactctgcccgcgtattccgcgaaaaaggggtaaccatcaacaaagcaccgggcgatgatgaaatcctgaaaaacaccgtcgattttgtctctttcagctattacgcctcgcgctgcgcctcggcggagatgaacgccaacaacagcagtgcggcgaacgtggtgaaatcgctgcgtaatccgtatctacaggtgagcgactggggctggggaattgatccactcggtctgcgtatcaccatgaatatgatgtacgatcgttatcagaagccgctgtttctggtggaaaacggcctgggcgcaaaagatgaatttgctgccaatggcgagattaacgacgactatcgcatcagctacttacgcgaacatatccgcgcaatgggcgaagcgattgcagacggcattccgctgatgggctacaccacatggggctgtattgatttagtttccgcctctacgggtgaaatgagcaaacgctacggctttgtctttgttgaccgtgacgacgcaggcaacggtacgctgacgcgcacgcgtaagaaatcattctggtggtataaaaaagtgattgccagtaatggggaagatttagagtaggtaacagtgccggatgcggcgtgaacgccttatccggcctacatgtcgcacgaaccatgaaggcccgataagcgcagcgcatcgggcaatttagcatttggcatcagagctggttcaccccatcaagaacatccctgtcctgattccttaatgaaaaactactcttcttccaccgctaactgcgcgaagccgccatttccttcccagccttccagtcgttgataaacggtttctaccgcatctttaatcggctgggtcatcgggtagtaaaagccgacgatatccggctgaatgccgaggaaaatcacttcgccaatatcttctttcaactggtcgataaggtaattcaacggcatgttatgggtagtcatcataaacatctcggcgatatcatccgggtcgatgatgcggatctcgccggggtttagccccatatccgtggcgtcgacaatcagcagtcgtgtcgggcgcagttcacggatagcgacgatgtcgttttccggtgcgctaccgccgtcaatcaccacccagttacctttcggcgcggcggcgcacttttccgccagcagcggacctgcgccatcatcgcccatcatgctattgccaacacagagtaaaacgtcagtcacgcagtctcctcaccatcaaatagatggcgttttcctgatgaatatcatgcagcatacttaacagcattgtactccattcctgctgctgcgaagtttgcgctgcccgggctttatcgaatgcgttggccagcatcggcacatggttaatgtcgatgacgatctcaccatatttcggcacgccttccattttgcggcgggcttcactgcctgcctccagagtggcaatccatgccagatattcatcccacgggcaggtgagcgccgcttccaggcaatcgataaccccaaggtggtgaccaatcgccaggctgtaatagaccacctgctgcgcctcggcgggcgtggcatcgttctcatcaataaatttacggctcagttgactgaacaccaccttttcactcatcggatacgcgcctcttcaacaacatgattcagatggctgacaatctcgttcagacgcggatcgttttccgcttccagccagcgtgcaacctgttcttcgccctgccctaactgtgtaaggtaatcatcggcaatctgacgaccgtaacgataacccgccaggcgacgtgcttcgcgatccactttcacgcgcagcggctgcaccatatcaccatgcaggatctccgccggttgttcatccagttcacccggcccacgggcgtgaattttctgctccagcaggccgagcgccattgcaaagccgtacagcgtggcggcaggcgttggcgggcagccagggatataaacatccacagggacaattttatccgtaccgccccacacgcagtagagatcgtggaagatcccgccactgttaccgcaggcaccgtaggagatacaaattttcgggtccggcgcggactgccacgcacgcagcgcaggggatcgcattgcacgggtgaccgcgccggtaaacagtaaaatatccgcatgacgcggtgaaggaacgactttaatgccgaagcgttctgcatcaaacagcggcgaaagcgtggcgaaaatttcgatttcgcaaccgttgcagccgccgcagtccacgcggtaaacataggcagaacgtttgatttttttcagtaacgacgccttcatgctggcgatggattcatccaccgtcatggggaccggaatgccgttggcgtcacgggggcctaataaattgctcatcagatggcctctttcatatggcgagtcagttcaatacggtcggacggcaccaggcatttctggcgcttacattccgggcaagtctcaaagctttcgcggtggttttccgcgcggctgtcgccgttgtgcttaagcagcgcaatggcgtagtcgatctctttctggacggcgaaaggacgattgcagacgcggcagttgcacagcgcgaagcgggactgttgcaggaagtcttctttcttccacaccgccagttcgtactcttgcgacagtttgatcgccgccgtcgggcagacttcttcgcagcgtccacagaagatgcagtgcccaagattaaactcccaggcaagctctcctgtggcgaggtcagtttcaaccgttaaggcgtttgacgggcaggcattgacgcaggccgcgcagccgatgcactgctgcgggttctgctctggcttaccacggaagtttttatcaaccgcaatcggctccagcggataagacgaggtcgccgtgccggttttgatgacttttttgataaaggtaaacatggcgattccttatttcagcggcgagtttttacgctcaatgctgtaacgctcgagttctttgtacggcaccactttgctcttcttcttacgcacatcgaccacggtcatgcggtcggtacaggagtagcaagggtcgaggctaccgataatcagcggcgcatcggaaacggtgttgccgcgcagcatgtagcgcagggtcggccagttcgcgtaggtcgcggcacggcagcgccagcggtacagcttctggttgtcgccggtcatgctccagtggatatcatcgccgcgcggcgcttcggcaaagcccagcgcaaagcggtgcggaatgtaggtaaagccttccaccatcagtgggccacccggcaggttatccagaccgtagtcgatcatgttcagcgcggtatagacttcgttgatacgcactttcagacgggaaataacgtcgcagccctgctcgctgtggacttccattggcagcaggccatagccgacaaacgggtgatcggcgcgggtatcacgggcgtgaccgctggcacggaccatcgggccgacgttactgaagtcgcgagcgatttccgggtccagacgaccaatgccgacagtgcgctgttccatgttcggagtgctcagcagcacatccaccagctcctgcacttcacgacgcatctgttgtgccagctggcgggtctggatcatgtcgtctttcagcagatcgcgacgaatcccgccgatcaagttcaggccgtaggttttacgcgcaccggtaaggatctctgccattttcatggaggtttcacgcacgcggaagaactgcataaagccggagtcgaagccggtaaagtgacaggccagccaaggttgagcagatgcgagtgcaagcgttctacctccagcagaatggcgcggatcatctgcgcacgttctggcacctgaatacccatcgcgttttccaccgacgtggtgtaggcggtgctgtgggcaaagccgcagatcccgcacacacggtcagagaggaaggtcacttcgttataacccatacgggtttccgccagtttttccatgccgcgatggacgtagaacagacggtagtcggcgtcgataatgttttcgccatcgacgaacagacggaagtggcccggttcatcagaagtgacgtgcagcggaccaatcggcacacgttgtttttcttgtcgcccagttcgttgatgaactcgtaggtttcagcatcggtggtcggtgccggacgctgacgataatccatgctgtctttacgcagcggataaagttcatccggccagtcatccggcagcaccagacgacgttcatccggcagaccaaccggaatcaaaccgtacatatcgcgcacttcacgctcgccccacaccgccgccggaacgcgcggcgtcacggacggatattccggtttgttggcgtcaacttcgacgcgaaccgtaatccaacacttagtgcccttctccatcgacagcacgtagtaaacggcgtaatgaccattcagtttgcgttcgtcgttaccaaacagcaccgacagccagccaccctgtttgtagtaaagaaactccaccacttccggcaggtagttcacctttacggtgacagtcagctgatctttggtctgccaggcgtggtccagcacgacgcccggaaatgcctcattcagcgcggcgagataatgttgacctaatttttcttcagacatgctcaaactctctttaatcacgccgccagcaaggagacgaacgctaaaaatgcaaagccaaacccagcccaggtaatgcgcggagtaatatcaagacgcagacgggccatgctgttttcgaacagcgcgataaccaggacgccgaccaccagttttacgatggcaatcaccagcgccagcagcagtccaccggcggtgaaggtttccatttgtccccacggaataaacaccccgacgaacatctgcaacaccaccagctgtttcaggctgataccccatttcatgacgccaaagccgctgccgctgtattcagagagcgggccttcctgcagctcctgctcggcttccgccaggtcgaacggcagtttgcccatttcgataaaggtggcgaacgcacaggcacaaagcgccagtaccagcgggatgctctggctcagcggccagtgataaacggtgtcggtgatgttgctgatgttggtggaaccggcaacctgtgcggcaacccacagaccaagcagcagcatcggttcgaccagcacgccaagcatcgcttcacggctcgcgccgatagcggtaaacgggctaccggtatccagaccagaaatggcaaagaagaaacgcgcgatggcaaagagatacagtaaggtgatcaaatcacccagttgcggcagcggagaaccgacggtcaccaccggcagcgcagtagcgatagtcagcatgacgcccaccatcacatacggcgtcaggcggaacacccagccggaggcatccgggccgacgctctgacgccccagcagtttgataatgtcgcgatactcctgcaacacgcccggcccgcgacggttatgcaagcgggcgcgcgccacgcgggttataccggagagcagcggcgcaacggcaaataacaccagcgcctgaattaacggatataaaacactcattctcaggctcctcgtgaaacaataatcaccaccagtaccgccagttcaaccagcgccatccggcggaacagcaacgcactcccctcgcactgccagcccggcaccagagacaccggattcagccatttgcgtagtttcagcaccggcgcaaacgcctgtttcaccggcatggcaaaaccgtgagcggtaatcaccattgatttttcgtggtcgtaaccgcacacccaggccgcaccgcgggaacgcgatggcaaacgatcgcctttgcaaatcgccataatgatgaatggcagcagcgggcaggcaatcagcagcaacgtgatcatcggttgagaaacggtggtgttagcaggctccagcggcagaggtacagcagcagagagcatcggcagtagccacggcgcagcaacaccgccaattacgcagcaaatcgccagtgccactacgcttacgctcatcaggagcggcgcacaggtggcgttttcggcttctttggtgcgcggcgcgccgaggaacgtgacgccatagactttcgccatacacatcaccgccagcgcaccggtaattgccagccccacagcgagcagcggccccagcagacgggcaacaaacgcgccactattgctcagtttgaaaaatgattgatagataacccattccccggcaaaaccattcagcggcggcagcgcagccattgccatcagcccgactaacatggcgatggagataaccggcattttcttgccaataccaccgagtttttcgatatcgcgatgaccggtacggaaccagacgctccccgccccgaggaacagtacgcttttgaacaggctatggttaagcagatggtacagaccaccgaccaggccaagagcaatcagcgccggttgttcgagcgcgatacccgttacgccagcgcccagccccagcaggatgatgccgatattttccagggtgtggtaagccagcaggcgctggatgttgtgctccaccagcgcatacagaccaccgacaaacgcggtgatcatgccgagcaccagcagcgcgatcccccaccacagcgtgcattaccgcccagcagtgacagggttaaaatgcccagcaggccaattttcatgactaccgtagaaaacaacgcggcagctggcgcagaggcgttcgcatgtgcctgcggcacccagccgtgcagcggaataatcccggccagcaggccaaagccaatcactccgagcagccagatatcggaaccgagcggcagctgttgcatacgcatatccagcaggcgcagatccagcgtgccgtaacgctgccacagcagccagcaagcaatcgccagcagcagagtgccaagacgccccagcgcaaaccacagtttgccctctttgctgttgctggtgaggaacaccgcgcacagggccatgatttcggccattaccacgaacatgccgaggttgctggcaatgacggcgcagacggcggcagccatcaacatattgatctgcaagccgttgcacttcacctgcgcgtggcgatgccagtcaatgttgtagaggctgacaaacagaccgcacagaccgagcgtaatcagccaaatcgcgttaagcggagagatttgcacatcgtagcttaccagcgacagcgcaccgctcacgccaaccgcgccagtcagtacagtgaagcccgcggctgccgtatacagactaccaaccgcgccgccaattccagctatccagccacttaacgctttttgaaaagaaaagagaaatgccagaacagcggcggcgacaaaccacgccacgccgctattgatcagggaaattgcgctcatttagcctctccactttgagcctgctgaaacaaggtgagatcgccaaagtccgtgttaaaggtcagctcacgcttacgtttgctgacgcgggcgatatcggtgttatccaccagatgcagggctttagtcgggcacatccgcacgcaggccggaccttgttcatcaaagctacaaaggtcacatttgacggcgatcgcgcgaatacctggcacccagtcaagcaatgtgctgacacgcgccggagcaggcggtgccggtggcgctttcggggtattggcgtttgccggaatatccagcggacggctgccggaaaattcaattgcgccaaacgggcaggcgatgccgcacagcttgcagcttacgcacaggctttcattcaactgcacggccccatcgacgcgggtgatggcgttaaccgggcagaccaccgcgcagggtgcatcttcacagtggtgacagagctgcggcgcagattctttttcattcagcatcactctcaggcgcggcattgattgcaggccgtgctggcgatgcgtctctgaacaggcggcctcacaagtgtggcagccgatacagagcgtggagtcagcaattacaaaacgattcaccaggcattcctcaggtgattgtcatttttgacgaaaacatgccgatgaaatgtcattttcgacactcatcgacacgcccatccccaaacaggcgtaacgcctgcaaaacgggcaaagcctcagctcatgctgccgggctttgtccctttaccagttggcttaaattcaccggcacattgttttcaatagcggtgtataagctgtcgtaaacgccagcgattttttcgagatagtgttccagaacctgttcgcgatcgcggatgttgaccttgccatcaatcatgccgtcaatgctcagttgcgcctgcgcaatccgctgtttgtcttcgccatcttttgtttcgacgtaatactcgatggtgtggctgttaaagccatccgccagggtgacgtaaatgcgaaaatgttcaaaaaggacgaaacagagttctttgtccggcgcgcagctcatggcgtgatgcaggcgcgctttcgataacgtgatcccctgaaccagcgaattgcagtagatgtgccactggtcctgtaggcgacgatgccgctgtgcgatgtaatcggctttctcgcttatttcccaaatagtcattgtcaggttacccgtttaacagagatgccagctttaagcattttttgtgccaacttttaatttattgttattaaagagatttttaagctaaagatgaatttcgtcgccgtgtcgacgtgtcatttcgacatcatcgacattattcaccgcagggataatcaacactggcacaattattgcttgtagctggcaatagttaatgggaggcgatatgcacgaaataaccctctgccaacgggcactggaattgatcgaacagcaggccgcaaaacacggcgcaaaacgcgtaactggggtctggctcaaaattggcgcattttcttgtgtcgaaaccagctctcttgccttttgttttgatctggtttgccgcggcagcgtggcggaaggttgtaaactgcacctcgaagaacaagaggccgaatgctggtgtgaaacatgccaacagtatgtgacgctactgacccagcgcgtccgccgctgtccacagtgtcatggtgacatgctgcagattgtggcagacgacggtttacagattcggcggatagaaatagaccaggagtgagcgatgtgtacaacatgcggttgcggtgaaggcaacctgtatatcgagggtgatgaacataaccctcattccgcgtttcgtagcgcgccatttgccccggcggcacgcccgaagatgaaaatcaccggcattaaagcgcctgaatttacccccagccagactgaagaaggcgacctgcattacggtcatggcgaagcgggcactcacgcaccgggcatgagccagcgtcggatgctggaagtcgaaattgacgtgctggacaaaaataaccgtctggctgaacgcaaccgcgcgcgctttgctgcccgcaagcaactggtgctcaacctggtttccagccctggttccggtaaaaccaccctgctgacggaaaccctaatgcgcctgaaagacagcgttccgtgcgcagttattgaaggcgaccagcaaaccgtgaacgatgccgcacgcattcgcgctaccggcacaccagcgattcaggtgaacaccggtaaaggctgccatcttgacgcacagatgattgccgacgccgcaccgcgtctgccactggacgataacggtattctgtttatcgaaaacgttggcaacctcgtatgcccggccagcttcgatctcggtgaaaaacacaaagtggcggtgctttccgttaccgaaggtgaagacaaaccactgaaatatccgcatatgtttgccgccgcctcgctgatgctgctcaacaaagttgacctgttgccgtatctcaactttgacgttgaaaagtgcatcgcctgcgcccgcgaagtcaatccagaaattgaaatcatccttatttccgccaccagcggcgaagggatggaccagtggctgaactggctggagacacagcgatgtgcataggcgttcccggccagatccgcaccattgacggcaaccaggcgaaagtcgacgtctgcggcattcagcgcgatgtcgatttaacgttagtcggcagctgcgatgaaaacggtcagccgcgcgtgggccagtgggtactggtacacgttggctttgccatgagcgtaattaatgaagccgaagcacgcgacactctcgacgccttacaaaacatgtttgacgttgagccggatgtcggcgcgctgttgtatggcgaggaaaaataatgcgttttgttgatgaatatcgcgcgccggaacaggtgatgcagttaattgagcatctgcgcgaacgtgcttcacatctctcttacaccgccgaacgccctctgcggattatggaagtgtgtggcggtcatacccacgctatctttaaattcggcctcgaccagttactgccggaaaacgttgagtttatccacggtccggggtgcccggtgtgcgtactgccgatgggtagaatcgacacctgcgtggagattgccagccatccggaagtcatcttctgtacctttggcgacgccatgcgcgtgccggggaaacagggatcgctgttgcaggcaaaagcacgcggtgccgatgtgcgcatcgtttactcgccgatggatgcgttgaaactggcgcaggagaatccaacccgcaaagtggtgttcttcggcttaggttttgaaaccactatgccgaccaccgctatcactctgcaacaggcgaaagcgcgtgatgtgcagaatttttacttcttctgccagcacattacgcttatcccgacgttgcgcagtttgctggaacagccggataacggtatcgatgcgttcctcgcgccgggtcacgtcagtatggttatcggcaccgacgcctataattttatcgccagcgattttcatcgtccgctggtggttgctggattcgaaccccttgatctactacaaggcgtggtcatgctggtgcagcagaaaatagcggcccacagcaaggtagagaatcagtatcgtcgagtggtaccggatgccggtaacctgctggcgcaacaggcgattgccgatgtgttctgtgtcaacggcgacagcgaatggcgcggcttaggcgtgattgaatcttctggcgtgcacctgacgccggattatcaacgattcgatgccgaagcacatttccgcccggcaccgcagcaggtctgcgatgacccgcgcgcgcgttgtggtgaggtattaacgggcaaatgtaagccgcatcaatgcccgctgtttggtaacacctgtaatcctcaaaccgcgtttggtgcgctgatggtttcctccgaaggagcgtgcgccgcgtggtatcagtatcgtcagcaggagagtgaagcgtgaataatatccaactcgcccacggtagcggcggccaggcgatgcagcaattaatcaacagcctgtttatggaagcctttgccaacccgtggctggcagagcaggaagatcaggcacgtcttgatctggcgcagctggtagcggaaggcgaccgtctggcgttctccaccgacagttacgttattgacccgctgttcttccctggcggtaatatcggcaagctggcgatttgcggcacagccaatgacgttgcggtcagtggcgctattccgcgctatctctcctgtggctttatcctcgaagaaggattgccgatggagacactgaaagccgtagtgaccagcatggcagaaaccgcccgcgcggcaggcattgccatcgttactggcgatactaaagtggtgcagcgcggcgcggtagataaactgtttatcaacaccgctggcatgggcgcaattccggcgaatattcactggggcgcacagacgctaaccgcaggcgatgtattgctggtgagcggtacactcggcgaccacggggcgactatccttaacctgcgtgagcagctggggctggatggcgaactggtcagcgactgcgcggtgctgacgccgcttattcagacgctgcgtgacattcccggcgtgaaagcgctgcgtgatgccacccgtggtggtgtaaacgcggtggttcatgagttcgcggcagcctgcggttgtggtattgaactttcagaagcggcactgcctgttaaacctgccgtgcgtggcgtttgcgaattgctgggactggacgccctgaactttgccaacgaaggcaaactagtaatagctgttgaacgcaacgcggcagagcaagtgctggcagcgttacattcccatccactggggaaagacgcggcgctgattggtgaagtggtggaacgtaaaggtgttcgtcttgccggtctgtatggcgtgaaacgaaccctcgatttaccacacgccgaaccgcttccgcgtatatgctaataaaattctaaatctcctatagttagtcaatgaccttttgcaccgctttgcggtgctttcctggaagaacaaaatgtcatatacaccgatgagtgatctcggacaacaagggttgttcgacatcactcggacactattgcagcagcccgatctggcctcgctgtgtgaggctctttcgcaactggtaaagcgttctgcgctcgccgacaacgcggctattgtgttgtggcaagcgcagactcaacgtgcgtcttattacgcgtcgcgtgaaaaagacacccccattaaatatgaagacgaaactgttctggcacacggtccggtacgcagcattttgtcgcgccctgatacgctgcattgcagttacgaagaattttgtgaaacctggccgcagctggacgcaggtgggctatacccaaaatttggtcactattgcctgatgccactggcggcggaagggcatatttttggtggctgtgaatttattcgttatgacgatcgcccctggagcgaaaaagagttcaatcgtctgcaaacatttacgcagatcgtttctgtcgtcaccgaacaaatccagagccgcgtcgttaacaatgtcgactatgagttgttatgccgggaacgcgataacttccgcatcctggtcgccatcaccaacgcggtgctttcccgcctggatatggacgaactggtcagcgaagtcgccaaagaaatccattactatttcgacattgacgatatcagtatcgtcttacgcagccaccgtaaaaacaaactcaacatctactccactcactatcttgataaacagcatcccgcccacgaacagagcgaagtcgatgaagccggaaccctcaccgaacgcgtgttcaaaagtaaagagatgctgctgatcaatctccacgagcgggacgatttagccccctatgaacgcatgttgttcgacacctggggcaaccagattcaaaccttgtgcctgttaccgctgatgtctggcgacaccatgctgggcgtgctgaaactggcgcaatgcgaagagaaagtgtttaccactaccaatctgaatttactgcgccagattgccgaacgtgtggcaatcgctgtcgataacgccctcgcctatcaggaaatccatcgtctgaaagaacggctggttgatgaaaacctcgccctgaccgagcagctcaacaatgttgatagtgaatttggcgagattattggccgcagcgaagccatgtacagcgtgcttaaacaagttgaaatggtggcgcaaagtgacagtaccgtgctgatcctcggtgaaactggcacgggtaaagagctgattgcccgtgcgatccataatctcagtgggcgtaataatcgccgcatggtcaaaatgaactgcgcggcgatgcctgccggattgctggaaagcgatctgtttggtcatgagcgtggggcttttaccggtgccagcgcccagcgtatcggtcgttttgaactggcggataaaagctccctgttcctcgacgaagtgggcgatatgccactggagttacagccgaagttgctgcgtgtattgcaggaacaggagtttgaacgtctcggcagcaacaaaatcattcagacggacgtgcgtctaatcgccgcgactaaccgcgatctgaaaaaaatggtcgccgaccgtgagttccgtagcgatctctattaccgcctgaacgtattcccgattcacctgccgccactacgcgagcgtccggaagatattccgctgctggcgaaagcctttaccttcaaaattgcccgtcgtctggggcgcaatatcgacagcattcctgccgagacgctgcgcaccttgagcaacatggagtggccgggtaacgtacgcgaactggaaaacgtcattgagcgcgcggtattgctaacacgcggtaacgtgctgcagctgtcattgccagatattgttttaccggaacctgaaacgccgcctgccgcaacggttgtcgccctggagggcgaagatgaatatcagttgattgtgcgcgtgctgaaagaaaccaacggcgtggttgccgggcctaaaggcgctgcgcaacgtctggggctgaaacgcacgaccctgctgtcacggatgaagcggctgggaattgataaatcggcattgatttaactgcaaattgccggacagatctgcctgtccggcatactattcatgaggttttttcggacgatatttttccggcagttctggcaccggacgcttgtcatcgatgagatgacgcacggttaagatcggatgacgccacagcattctcggcccggcccaacgcataatctgtttcatctcttcacgctttgcaggctggtaacagtgcaccggacactgcttacaggctggtttctcttcgccgaacacacatttatccagccgcttttgcgcgtaaacaaacaacgcctcgtaatgctccggctccgctgacgcctgcgggcatttcgcttgataaagatcgatcatttttttaatcgtcagtttttcacgagagatacgcttgccggacatgctgcctccacctcattaagatgtatttatattacatcttaatcttaaagggcactatgactccaaagaagaagggttagccaaccgatacaattttgcgtacttgcttcataagcatcacgcaaaagctgcaaaacagcatctttcccggaaccagcatcaagaactcgccgttcgcttcttcccctgaaatgattaactccggtatcatgtgcgccttatgtgattacaacgaaaataaaaaccatcacaccccatttaatatcagggaaccggacataaccccatgagtgcaatagaaaatttcgacgcccatacgcccatgatgcagcagtatctcaggctgaaagcccagcatcccgagatcctgctgttttaccggatgggtgatttttatgaactgttttatgacgacgcaaaacgcgcgtcgcaactgctggatatttcactgaccaaacgcggtgcttcggcgggagagccgatcccgatggcggggattccctaccatgcggtggaaaactatctcgccaaactggtgaatcagggagagtccgttgccatctgcgaacaaattggcgatccggcgaccagcaaaggtccggttgagcgcaaagttgtgcgtatcgttacgccaggcaccatcagcgatgaagccctgttgcaggagcgtcaggacaacctgctggcggctatctggcaggacagcaaaggtttcggctacgcgacgctggatatcagttccgggcgttttcgcctgagcgaaccggctgaccgcgaaacgatggcggcagaactgcaacgcactaatcctgcggaactgctgtatgcagaagattttgctgaaatgtcgttaattgaaggccgtcgcggcctgcgccgtcgcccgctgtgggagtttgaaatcgacaccgcgcgccagcagttgaatctgcaatttgggacccgcgatctggtcggttttggcgtcgagaacgcgccgcgcggactttgtgctgccggttgtctgttgcagtatgcgaaagatacccaacgtacgactctgccgcatattcgttccatcaccatggaacgtgagcaggacagcatcattatggatgccgcgacgcgtcgtaatctggaaatcacccagaacctggcgggtggtgcggaaaatacgctggcttctgtgctcgactgcaccgtcacgccgatgggcagccgtatgctgaaacgctggctgcatatgccagtgcgcgatacccgcgtgttgcttgagcgccagcaaactattggcgcattgcaggatttcaccgccgggctacagccggtactgcgtcaggtcggcgacctggaacgtattctggcacgtctggctttacgaactgctcgcccacgcgatctggcccgtatgcgccacgctttccagcaactgccggagctgcgtgcgcagttagaaactgtcgatagtgcaccggtacaggcgctacgtgagaagatgggcgagtttgccgagctgcgcgatctgctggagcgagcaatcatcgacacaccgccggtgctggtacgcgacggtggtgttatcgcatcgggctataacgaagagctggatgagtggcgcgcgctggctgacggcgcgaccgattatctggagcgtctggaagtccgcgagcgtgaacgtaccggcctggacacgctgaaagttggctttaatgcggtgcacggctactacattcaaatcagccgtgggcaaagccatctggcacccatcaactacatgcgtcgccagacgctgaaaaacgccgagcgctacatcattccagagctaaaagagtacgaagataaagttctcacctcaaaaggcaaagcactggcactggaaaaacagctttatgaagagctgttcgacctgctgttgccgcatctggaagcgttgcaacagagcgcgagcgcgctggcggaactcgacgtgctggttaacctggcggaacgggcctataccctgaactacacctgcccgaccttcattgataaaccgggcattcgcattaccgaaggtcgccatccggtagttgaacaagtactgaatgagccatttatcgccaacccgctgaatctgtcgccgcagcgccgcatgttgatcatcaccggtccgaacatgggcggtaaaagtacctatatgcgccagaccgcactgattgcgctgatggcctacatcggcagctatgtaccggcacaaaaagtcgagattggacctatcgatcgcatctttacccgcgtaggcgcggcagatgacctggcgtccgggcgctcaacctttatggtggagatgactgaaaccgccaatattttacataacgccaccgaatacagtctggtgttaatggatgagatcgggcgtggaacgtccacctacgatggtctgtcgctggcgtgggcgtgcgcggaaaatctggcgaataagattaaggcattgacgttatttgctacccactatttcgagctgacccagttaccggagaaaatggaaggcgtcgctaacgtgcatctcgatgcactggagcacggcgacaccattgcctttatgcacagcgtgcaggatggcgcggcgagcaaaagctacggcctggcggttgcagctctggcaggcgtgccaaaagaggttattaagcgcgcacggcaaaagctgcgtgagctggaaagcatttcgccgaacgccgccgctacgcaagtggatggtacgcaaatgtctttgctgtcagtaccagaagaaacttcgcctgcggtcgaagctctggaaaatcttgatccggattcactcaccccgcgtcaggcgctggagtggatttatcgcttgaagagcctggtgtaataacaattcccgatagtcttttgctatcgggaatattaacgacaactgacgaataaaataaaaacaccctgtataataggaaagcttattttacagggtaaaaccatgccatctacacgctatcaaaaaatcaatgcccatcactatcgccatatatgggtcgttggtgatattcatggtgaatatcagttattacaatcccgcttacatcaactctcttttttccccaaaatcgacttacttatttctgtcggcgataatattgatcgtggaccggagagtcttgacgtcctgcgcctgctaaaccaaccctggtttacgtcggttaaaggcaaccacgaagcgatggcgcttgaggcattcgaaactggcgatggcaatatgtggcttgccagcggtggtgactggtttttcgatttaaatgattcagagcaacaagaggcaatagatctgttgctgaaattccatcaccttccacatattattgaaatcactaacgacaacataaaatatgccatcgcacatgcagattatccggggagtgaatatctctttggtaaagaaatagcggagagcgaattactctggcctgttgatcgtgtgcagaaatcgcttaatggcgagttacaacaaataaacggcgctgattattttatatttggacatatgatgtttgataacattcagacgttcgctaaccagatttatattgataccggatcgccgaacagcgggcggctgtcattttataaaataaagtagtctcatgcttcttctgtgaagcatgagtaacccggtgttattgcaggccattattcatttttcgctaccagcaaagagagatcctgcttcaccagcgcgcgactggcactctccggcaaaccgtcgtctgtaataatctgatcaaactcgcttaatggtaacgccagccatgtcgccacctgaccatatttcgtcgcatcacagaccaaaactcgctggcggctggcactggcaatcgcccgtttcaccgtgactttatcttccgctggcgtagaaatcccccgcacactccatgacgatgcagaaataaaagcctgatcaatcatcaggctgcgcagcatggtcgcagcggcttccccgacacaggaacggttttcccgacacactgcaccgccagtgtgaataattgtgcaattactgttgtcgagcaagtagtccgcaataacgaaatcgtttgtgaccacagtcagtgactccatgtgaatcagatgctgtgctatcgctaacgtggtcgttcccgcatccagatagatacaacttcccggctgaacaagacttgccgccagcttgccaatagccgctttttgcgtcattgccagcgcagtttttacctgatgagaaggttcatgcgccacgcgtcccggagactggacgcctccggacaccagcacaacggctccctgctgctccagtttttgtaaatcccgacgaatggtcatatgtgacacattcattctgtccgttagttcagcaatactgacaatgcctttttcagctaccatctcaaggatgatttggcgacgctctacgggtatcaacttttgctccttcctttgtcctgctgacattctacgctatttgcctgcgaaacgtgcgcggcgcaactaacgcttagttcacaataaaataacacacaatgttaatttatgtgaatcagatcaccataccgttatcttccagcgcttatattcacaatatcaaacaaaatatcacttaaattaacaaggagagcagatgaaaacgggatctgagtttcatgtcggtatcgttggcttagggtcaatgggaatgggagcagcactgtcatatgtccgcgcaggtctttctacctggggcgcagacctgaacagcaatgcctgcgctacgttgaaagaggcaggtgcttgcggggtttctgataacgccgcgacgtttgccgaaaaactggacgcactgctggtgctggtggtcaatgcggcccaggttaaacaggtgctgtttggtgaaacaggcgttgcacaacatctgaaacccggtacggcagtaatggtttcttccactatcgctagtgctgatgcgcaagaaattgctaccgctctggctggattcgatctggaaatgctggatgcgccagtttctggtggtgcagtaaaagccgctaacggtgaaatgactgtcatggcctccggtagcgatattgcctttgaacgactggcacccgtgctggaagccgttgccggaaaagtttatcgcataggtgcagaaccgggactaggttcgaccgtaaaaattattcaccagttgttagcgggcgtacatattgctgccggagccgaagcgatggcacttgcagcccgtgcggggatcccgctggatgtgatgtatgacgtcgtgaccaatgccgccggaaattcctggatgttcgaaaaccggatgcgtcatgtggtggatggcgattacaccccgcattcagccgtcgatatttttgttaaggatcttggtctggttgccgatacagccaaagccctgcacttcccgctgccattggcctcaacagcattgaatatgttcaccagcgccagtaacgcgggttacgggaaagaagacgatagcgcagttatcaagattttctctggcatcactctaccgggagcgaaatcatgatcaagattggcgttatcgccgatgattttaccggcgcgacggatatcgccagttttctggtggaaaacggtctaccaacggtacaaattaacggtgttccaacaggtaaaatgccggaagcaatcgacgcactggtgatcagcctgaaaacgcgctcctgtccagtggttgaagccacacagcaatcgctggcggctctgagctggttgcaacagcaaggttgcaaacagatctatttcaaatactgctctactttcgacagtacggcgaaaggtaatattggcccggttaccgatgccttaatggatgctctcgacacgccgtttacggtcttctctccggccctgccggtcaacggacgtacggtttatcaggggtatttgttcgtaatgaatcaactgctggccgaatccgggatgcgccatcacccggtaaatcccatgaccgacagctatcttccccgtctggttgaagcgcaatccacagggcgctgcggcgtcgtttcggcacatgttttcgaacaaggtgtggatgccgttcgtcaagagctggctcgcttacagcaagagggctaccgctacgcggtgcttgatgcgctgaccgaacaccatctggaaattcagggagaagccttgcgcgatgccccactggtaacgggcggttctggtctggcgattggcctggcccggcagtgggcgcaagaaaacggtaaccaggctcgcaaagcagggcgtccgctcgctgggcgcggcgtagtgctctccggttcatgctctcaaatgaccaaccgccaggtagcacattaccgtcaaattgcaccagcccgtgaagttgatgtggcacgctgcctctcaattgaaactctggccgcttatgcacacgaactggcagagtgggttctgggccaggaaagtgtacttgctccactggtttttgccaccgccagcactgacgcattggcagcaattcaacagcaatacggtgcacaaaaagccagtcaggcagtagaaacactgttttctcaactagcggcgcggttagcagcggaaggcgtgacacgctttattgtcgcaggcggtgagacctccggcgtagtcacacagagcctgggaataaaagggtttcatattggcccaaccatttccccggcgtgccgtgggtaaacgcactggataagcctgtctcactcgcccttaaatctggcaacttcggtgatgacgcctttttttcacgagcccaaagagagtttttatcatgagcgatttcgcaaaagtagagcagtctttgcgagaggagatgacgcggattgccagttcattctttcagcgcggctatgcaaccggttcggctggcaatctgtcgctgcttttacctgacgggaatttactggcgacaccgacaggttcatgcctgggcaatctcgatccgcagcggctttccaaagtcgccgcggatggcgaatggttaagtggtgacaaaccctcgaaagaggtgctctttcatctggcgctgtatcgcaacaatccgcgctgtaaagcggtggtgcatttgcacagcacatggtcgacggcgctttcctgcctgcaagggctggacagcagcaacgttattcgtccgttcacaccatacgtggtgatgcggatgggaaatgtcccgctggtgccttattaccgaccgggcgataaacgcatcgcacaggatctggcggaactggcagcagacaatcaggcttttttactggcaaatcatggcccagtggtttgcggtgaaagcctgcaagaagccgccaacaatatggaagagctggaggaaacggcaaagctgatttttattctcggtgaccgcccgatccgttatctgaccgcaggtgaaattgcggaattaaggagttaatgcaatgcctcgttttgcagctaatttatccatgatgttcaccgaagtgccttttattgaacgcttcgccgcagcgcgaaaagccgggttcgatgctgtggaatttctgtttccctataactactccaccctgcaaatccaaaagcaactggagcaaaaccatctgacactggcgctgttcaataccgctcccggagatattaatgcgggggaatggggattatccgcccttcccggacgtgagcacgaagcacacgcagacatcgacctggcactggaatatgcattggcgctcaattgtgaacaagtccatgtgatggcaggcgtcgtgcccgctggcgaagatgctgaacggtaccgggcagtatttatcgataatatccgctacgctgccgaccgctttgcgccacacggcaagcgaatattagttgaagcactcagccccggcgttaagcctcattatctcttctccagccagtatcaggcactggctattgttgaagaggttgcgcgagataacgtgtttattcaactagatacttttcatgcgcaaaaagtagatggcaacctgacgcatttaatccgcgactacgccgggaaatatgcgcacgtacaaattgccggactacctgatcgacatgaaccggacgatggagaaatcaactatccgtggctgttccgcctgttcgatgaggtgggatatcagggctggatcggttgtgaatataaacctcgtggcctcaccgaagaagggcttggctggtttgacgcctggcgctaattcgttaaatccctaattacaacgtacccatacatccccccatctacggatggggtaggttaactataactttcagacagggtttcccatgtccacaattacattgttatgcattgcgttagctggcgtaatcatgctgttgctgctggtcatcaaggcaaaggtacaaccattcgttgctttgctcctcgtcagcctgttagtcgcacttgcggcaggtataccggcgggcgaagtgggtaaagtgatgatcgccgggatgggcggtgtgcttggttccgtcactattattattggtctgggcgctatgctggggcgtatgatcgaacactctggtggtgcagagtcactggctaattatttcagtcgcaagttaggtgacaaacgaactatcgctgcgctgactctggcagcgttcttcctcggtattcccgtcttctttgatgtcggctttattattcttgcgccaatcatttacggttttgccaaggttgccaaaatatcgccactcaaatttggcctgcctgtcgctgggatcatgctcactgttcacgtggcggtaccgccgcatccaggccctgtcgccgcagcggggttactccacgcagacatcggctggctaaccatcatcggtattgcgatttctattcccgtaggggttgttggctactttgcagcgaaaataatcaataagcgccaatatgcgatgtcagtagaagtactggaacagatgcaactggctccggccagtgaggaaggcgcgacaaaattaagcgataaaataaatccaccgggcgtcgcgctggtcacctcgctaattgttattcctatcgcgattatcatggcgggtacggtttccgcaacactgatgccgccttcgcatcccctgcttggtacgctacagctgatcggctcaccaatggtagctctaatgattgcgctggtgctggcattctggttattggctttacgtcgcggctggagcttacaacacaccagcgacattatgggctcagcgcttcctactgcggcggtagtgattttggttactggtgctggaggggtatttggcaaagtgctggtggaatcgggcgtcggcaaagcccttgccaacatgctacaaatgattgacctgcctctgttaccagccgcatttattatttcactggcgctgcgtgcatcgcaggggtcagcaaccgtagcaatactgacaaccggcgggttactctcagaagcggtgatgggattgaatccgattcagtgcgtattggtgacgctggcagcctgctttggtgggcttggtgcgtcacatattaatgactcagggttctggattgtgaccaaatatctggggttgtcggtagcagacggtctgaaaacctggacagtgttaacgaccattctcggttttaccggattcttaattacctggtgcgtatgggcggtaatttgaccttaataaaaaggtccgatgggcatcggaccttttattgtgcacagaaaaggccagcctcgcttgagactggcctttctgacagatgcttacttactcgcggaacagcgcttcgatattcagcccctgcgtttgcaggatttcgcgcaaacggcgcaggccttcaacctgaatctggcgaacacgttcacgggtgaggccaatttcacgacctacatcttccagtgttgccgcttcgtaccccagcaaaccgaatcgacgtgccagcacttcacgctgtttggcgttcagctcgaacagccatttgacgatgctctgcttcatatcgtcatcttgcgtggtatcttccggaccgttctctttttcatcggccaggatgtccagcaacgctttttcggaatcaccacccagcggggtgtctaccgaggtaatgcgctcgttaagacgaagcatacggctgacgtcatcaactggcttatccagttgctctgcgatctcttccgcacttggttcatggtccagcttatgggacaactcacgtgcggttcgcaggtaaacgttcagctcctttacgatgtgaatcggcaaacgaatagtacgggtttggttcataatcgcccgttcaatcgtctggcgaatccaccaggttgcgtatgttgagaagcggaaaccacgttccgggtcaaacttctctaccgcgcggatcagccccaggttgccctcttcgataaggtccagcaacgccagaccacgattgccataacggcgggcaatttttaccaccagacgcaagttactctcgatcatccggcggcgagaggcgacatctccacgcagtgcgcgacgcgcaaaataaacttcttcttcggccgttaacagtggtgaataaccaatctcaccaaggtaaagctgagtcgcgtccaacacacgctgtgtggctccctgcgataacagttcctcttcggccaaatcgttatcactgggttcctgttctactaaggccttttcgtcaaaaacctcaactccgttctcatcaaattccgcatcttcatttaaatcatgaactttcagcgtattctgactcataaggtggctcctacccgtgatcccttgacggaacattcaagcaaaagcctggttccgccgatttatcgctgcggcaaataacgcagcgggtttacggatttccccttgtaacgaatttcaaaatgcaagcgtgttgaactggttccggtgctacccatggtcgctattttttgccccgccttaacttcttgttgttcccggaccagcattgtgtcgttatgggcgtaggcactcaggtaatcatcattatgtttgatgataatcagattaccgtagccgcgcagcgcgttaccagcataaacaacgcggccatctgcggtcgcgataattgcctgtcctttgctgcctgcgatatcaatccccttgttgcccccctcagaagcgccaaaggtttcgatcactttgccctcagtcggccagcgccaggtggagataggcgtactggttgatgtactgctgacagtcggctcggttgtgcttgctgttggtaccgttacaggcgctgtgaccgtggtcgcagttggcttgttgttcggcaacattttgttagcactctgttcacccgaagactcagaatacgtaattgtcggttgcgacgcaacagcaacggtggaattttgtgcaggcttgatcacaactccttgctctgctgcgtcggcctgggtaatggcatttccgccagtgattggcgtaccggaagcattacccacctgcaaggtctgaccaacgttcagcgcgtatggtgcctgaatattgttgcgctgagcaaggtcacggaaatcgttgccagtaatccaggcgatatagaaaagtgtgtcgccttttttcacggtataggtactgccgctataactgcctttcggaatgttcccatactgacggttatagacgatgcgtccgttttccatctgtaccggctgctgagctactggctgcactggctggatttgcggttgttgagtagcctgaatttgtggctgctgcaccggctgaatttgcggttgctgcgctgtagacgtcgtccccattttcggcggcggcgtaatcaacataccagaattagtatttgcaggcgcattgccattaacggagctgaccggtgccggtggatttgaagtgtcagaacagcctgccagccatagcgaaaccagtgacaaagccgcaatgcggcgaacggtgaattttgggcttcccgcgctcatttatcccccaggaaaaattggttaataaccagtgacataattaccgtgcaaggcaccctactgaacactggaaaagatgttcacgatacgctgacctgcggcaaaataaccaggaaaaatccaggtatttcctcacgttttaagccagctcacccttcactaaagggacaaagcgcacggcctccacggtatcgataataaattcgcctccccgacgacgcacccgtttcaaatactggtgctcctcccctacgggtaagacgagaatcccgccttcgtccagctgcgtcattagcgcagttggaatttccggcggtgccgccgtaacaatgatagcgtcaaacggcgcacgtgcctgccaaccttgccatccatcgccatgacgggttgaaacattatgtaaatcaagatttttcaggcggcgacgtgcctgccactgcaagcctttaatccgttcaaccgagcaaacatgctggacaagatgcgccaggattgccgtttgatatcccgaaccggtgccaatttccagcacccgcgactgcggcgtcagctcgagtaattcggtcattcgcgccaccatatatggctgcgaaattgtctgcccctgacctatcggcaaagcgatattgtcccaggctttttgttcaaacgcttcatcaacgaatttttcacgcggcacggcggcaagtgcattcagcacctgctcatcctgaataccttgcgcacgtaattgatccagaagtgcttgtacgcgtctgcttaccattgcgtgccaactcccacgctgtttaaccagtctgaaaccacatcttgcgcgctatgcgcagttaaatccacatgcagcggcgtgatggagacatagccctcatctaccgcagcaaaatcggtccccggaccagcatcacatttaccgcccggcgggccaatccagtacagcgtattgccgcgcggatcttgctgcgggatcacctgatctgccggatgtcgtgtaccgcagcgcgtcacgcgaatacctttgatttgatccaagggtaaatccggaacgttaatattaagaatacgcccggtgcgcagcggctctttacacagtgcgcgcaaaattgaacaggttaccgccgcggcagtgtcgtaatgtttatgcccgtcaagcgagacggcaagcgccggaaaacctaaatgacggccttccatcgcggcggctaccgtaccggaataaataacatcatcccccagattcggcccggcgttaattccggacacaacaatgtccgggcgcggacgcatcagagcattcacgccaagatagacgcaatcggtcggggttcccatttgcacagcaatatcaccattttcaaaggtaaacgtgcgcagggaggattccagtgtcagagaatttgaagcgccgctgcggttacgatcgggggcgaccacctgaacgtcagcaaactcacgcaaggctttcgccagcgtttgtataccgggtgcatgtaccccgtcatcattactcagcaatatgcgcataatcacctgttgtgttgataagttccctgacaacgctggttgcaaaactacccgccggaagccagaaacggatctctacggtgacgtcatcccaccaattccagcttaattgttgcggatacagcagcatcgctctgcgcgcggcttcaactttttcgcgcaccagtaaagcttgtaattcagtttctgcggcgacagctgcttgttcgaatgccagcgcttcacgctgagttccccattcgccactgcctggcaatgcggcggttatcatcaactctttatcgttgacgcgacgctgtaattccgccagttcttcggtggttgcgacaaaccagctaccacgtccggctaattgtagcgcatcgccgtcaacaacttgattaacgtctgcttttttgaggcgctcagcaacaatctgattaaacaacgcactgcgggctgccgacaaccaaaaactccgtttattgcgatcgcgcaccggagtattggtttgcgcccagcgctgcgccccctgcaagttgctaccgccaatcccaaaacgttgggcaccgaagtagttcggtacaccttttacgcaaatatcgatcagacgttgttcaacgtcatcgcgattgctcacttcgcgcagaaccagggtaaaggcgttacctttcagcgcgcctaaacgcagcttgcgcttgtgccgcgcatactccagcacctggcagccttccagttgaaaggcgctcagatcgggcatttccttgcccggcacgcgagcgcataaccactgttccgtaacagcatgtttgtctttttgcccagcgaagctgacttcacgggcatgaattttcaggaatttcgccagtgcatccgccacaaaacgggtattgcagccgtttttgaggattctaaccagaatatgctcaccttcaccatcaggctcaaagcccaaatcttccaccaccacaaagtcttccggattggctttcagcagcccggtgccttgcggtttaccgtggaggtaagtgagattatcaaactcaatcattttgttgccttaatgagtagcgccaccgcttcacaggcaatcccttccccacgtccggtaaatcccagtttttccgtagtagtggctttcacgttaacatcatccatatggcagccgagatcttcggcaataaacacgcgcatttgtggaatgtgcggcaacatcttcggtgcctgagcgatgatagtgacatcgacgttgccaagggtataacccttcgcctgaatacgacgccaggcttcgcgtagcagctcgcggctatcggcacctttaaatgccggatcggtatccgggaacagcttgccgatatcccccagcgccgccgcgccaagcaatgcatcggtcaacgcatggagcgccacgtcgccatcagaatgcgccagcaatcctttttcgtaaggaatgcgtacgccaccaatgataattgggccttcaccgccaaaggcatgtacgtcaaaaccgtgtccaattcgcattatgtattctcctgatggatggttcgggtgaggtaaaactcggccagtgccaaatcttccgggcgcgtgactttaatgttatccgcacggccttcgaccaactgaggatggaatccgcaatattccagcgccgaggcttcgtcggtaatagtcgcgccttcatttagagcgcgcgtcagacagtcatgtaacagctcacgagggaaaaattgcggcgtcagcgcgtgccataagccgttgcgatcaacggtatgagcaatggcatttttgcccggttcggcacgtttcatagtatcgcgcactggtgcggcgaggatcccccccgtgcggctggtttcgctcaacgccaacaatcgcgcgaggtcatcctgatgcaaacaaggacgagcggcgtcatgcaccaatacccactgcgcgtcgccagcggctttcagacctgccagcacggaatcggcacgctcatcaccgccatctacaacggtgatttgcggatgattcgccagaggaagttgtgcaaaacggctatcgccaggacttatggcaatgacgacacgtttcacccggggatgcgccagcagcgcatgcaccgagtgttcaagaatggtttgattaccgattgagagatattgcttaggacattccgtttgcattcgacggccaaatccggccgccggaaccacggcgcaaacatccaaatgagtggttgccatgttaattcccgggctgatttatcgattgttttgccccgcagactgtgcgcgcttcgacgcgtcaggcaccagacgataaaaagtttcgcccggcctggtcatgctgagttcattacgcgcacgctcttcgagcgcctcctggccgccattgagatcgtcaatttcggcaaaaagttgatcgtttcgcgctttaagtttcgcgtttgtagcttgctgtgccgccacatcatcattgacgcgggtatagtcatgtataccgttcttaccgaaccacagcgaatactgtagccagaccagaatagccagcaacagcagcgttagtttacccatcctgccccctgaaaaacggcatcatcatcccatgcatccgaagacgactctacatcctctgttggggataccgcgacaacgcgggcaatgtaccacattgtccattgttacgtatacccagggcgtgcagaacataatctcattattagttacggtttgaattatgaacagaggagacgggaaagtacaaattagcccagtagccacataaacagtgcgccaaacataatgcctactgtcaccagggtgaaaacaatactgtagcgtagctttccgtccatcaatgaatgcagcgcaatccccaccactaccgcgacgggcatcagcgccagaaagaaaggccaggtgtagataaagaagaacagcgtgttagagccataaatcaacatcggcatcgccagcgcaaataaccaggagataaaaccgaccacggcaccaggcagtgaccatgtggtttcttcatcctcagtaaggctgtcgttatttgttagtgtaatgttatggctattacgcatatttgatcctgttactttgacgaaccgggcatggaaacccggtggtgtctcaggatctgataatatcgttctgtctcaacagatctaataattgctgtaccaaatttgttactaattgttcaccattgagatgaatttctgccgattcaggcgcttcgtaaacggaatctattcccgtaaagttgcgcagttcaccggcacgcgctttcttatataagcctttgggatcgcgggcttcgcaaatcgccagcggcgtatcgacaaacacttcgataaagcgcccttctcctacgcgttcgcgaaccatctggcgttcggcgcggtgtggcgagataaatgcggtcagcaccaccagtccggcttcaaccatcaaattcgccacttcaccgacgcgacggatattctctttacgatcggcatcgctaaaaccgagatcgctgcataatccgtggcgaacattgtcgccatccagcagatacgtactgacgccgagtttatgtaacgcctcctccagcgccccggcgaccgttgatttaccggacccggagaggccggtaaaccacagcactacaccacgatgaccgtggtgtagctcgcgttgttgcacagtgaccggatggctatgccagacgacgttttcgtcatgcagcgccattatttatcccccagcaaatcgcgcgcgccccagtgcggaaagtggcgacgaaccagagcattcaattccagttcgaatgcactgaattcagatggcgcagcagttgcctggctaactggctcgtgcaccataccggcacccacggtcacattgctcaggcgatcgataaaaatcagcccacccgtcaccggattttgttgataacgatctaacaccagcggctcgtcaaaagtgagatccacgaggccgatcccattcagtggcaggttttcaacttcacgctgggtaaggttattaatatcaacctgatagcgaatgccatcaacacgcgcgcgcgtcttcttaccggcaattttgatgtcgtaactctgccctggagaaagcggctgttccgccatccataccacatccaccgacgcgctctgcaccgccggtaacgcttcgtctgccgccagcagcagatcgccacggctgatgtcgatctcatccgtcagcaccagggtgatcgcttctccggcaaaggcttcttcgcgatcaccatcaaaagtcacgatccgcgcgacgtttgattccacaccagagggcagcactttgacacgttgcccgacttccacgcgaccggatgccagcgttccggcgtaaccacgaaaatcgagattcgggcgattaacgtactgcaccgggaagcgcattggctgagcatccaccactcgctggatctccacggtttccagcacttcgagcagtgtcggaccgctgtaccacggcatactttcactttgcgatgccacgttgtcgccttccagtgcagagagcggcacaaagcggatatccagattacccggcagctgcccggcaaaggtcaaataatcttcacgaatacgggtgaacgtctcttcactgtaatccaccagatccattttgttgatcgccacgaccagatgtttgatccccaacagtgtggagataaaactgtgacgacgggtttgatcgagcacgcctttacgggcatcgatcagtaagatcgccagttcacatgtcgatgcgccagtcgccatattgcgggtgtactgctcgtgccctggggtgtcggcgataataaatttacgcttctcggtagagaaatagcggtaggccacgtcaatggtgatgccctgttcgcgctcagcttgcaggccgtccaccagcagagccagatccagcttttcgccctgggtgccgtgacgcttactgtcgttatgcagcgatgagagctgatcttcgtagatttggcgggtatcgtgcagcagacgaccaatcagagtacttttgccgtcatcgacgctaccacaggtcagaaaacgcagcaggcttttatgttgttgcgcaatcatccaggcttcgacgccgccttcattggcgatttgttgtgcaagtgcggtgttcatcttaaaaatacccctgacgttttttcagctccatagaccccgcctggtcgcggtcaatcacgcggccctgacgttcactggtggtggaaaccagcatctcttcgatgatttccggcagtgtttgtgcatttgactccaccgcaccggtcagcggccagcagcccagcgtacggaaacgcaccatccgttttttaatcacttcgcccggttgcaggtcgatacggttgtcatcaatcatcatcaacataccgtcgcgttccagaaccggacgttccgcagcgagatatagcggaacaatgtcgatattttccagccagatgtattgccagatatcctgctcggtccagttagagagcgggaagacgcggatgctttcgcctttgttaatttgcccgttgtagttgtgccacagctccgggcgctgatttttcggatcccagcgatggaagcggtcacggaaagagtaaattcgctctttagcgcgggatttctcttcgtcacggcgcgcaccaccgaaggcggcatcaaaaccgtatttgttcagcgcctgtttcaggccttcagttttcataatatcggtatgtttcgcgctgccgtgcacgaatggattaatccccatcgccacgccttccgggtttttatgcaccagcagttcgcagccgtaggctttagcagtacgatcgcggaactcatacatctcgcggaatttccagccggtatcgacatgcagcaacgggaaaggcagcgtacctggataaaacgccttgcgcgccagatgcagcatgacgctggaatctttaccgatagagtagagcatcaccggatttgagaattctgccgccacctcgcgaataatgtggatgctttccgcctccagttgccgcaggtgagtaagtcgtatttgatccataaccgttcctttgcaataccgctattttcttgccatcagatgtttcgactatagggagcgtaagagaacgaatgaaattaccaattagaatgagtagttccttaacggaataacgatttggcaaagctaatatcaaaaagtgcttaaggcaccggatttcgggcgtttaggaagatttgaaattgttttagcgcagcggcagtttcatactatggcggtaaaaaaatttgcatggtatttaaggactcactatgttttccgcattgcgccaccgtaccgctgccctggcgctcggcgtatgctttattctccccgtacacgcctcgtcacctaaacctggcgattttgctaatactcaggcacgacatattgctactttctttccgggacgcatgaccggaactcctgcagaaatgttatctgccgattatattcgccaacagtttcagcaaatgggttatcgcagtgatattcggacatttaatagtcggtatatttataccgcccgcgataatcgtaagagctggcataacgtgacgggaagtacggtgattgccgctcatgaaggcaaagcgccgcagcagatcatcattatggcgcatctggatacttacgccccgctgagcgatgctgacgccgatgccaatctcggcgggctgacgttacaaggaatggatgataacgccgcaggtttaggtgtcatgctggaattggcagaacgcctgaaaaatacgcctaccgagtatggtattcgatttgtggcgaccagcggcgaagaggaagggaaattaggcgctgagaatttactcaagcggatgagtgacaccgaaaagaaaaatacgctgctggtgattaatctcgataacttaattgttggcgataaattgtatttcaacagcggtgtaaaaacccctgaggcagtaaggaaattaacgcgcgacagggcgctggcaattgcgcgcagtcacggaatagccgcaacgaccaatccgggtttgaataaaaattatccgaaaggcactgggtgttgtaatgacgcagaaatattcgacaaagcgggcattgctgtactttcggtggaagcgactaactggaatcttgggaataaggatggttatcagcaacgcgcaaaaacacctgccttcccggcgggaaatagctggcatgacgtaagactggataatcaccaacatattgataaggctcttcctggaagaatagaacgtcgctgccgtgacgttatgcggataatgctacctctggtgaaggagttggcgaaggcgtcttgatgggtttgaaaatgggagctgggagttctaccgcagaggcgggggaactccaagtgatatccatcatcgcatccagtgcgcccggtttatccccgctgatgcggggaacaccagcgtcaggcgtgaaatctcaccgtcgttgccggtttatccctgctggcgcggggaactctcggttcaggcgttgcaaacctggctaccgggcggtttatccccgctaacgcggggaactcgtagtccatcattccacctatgtctgaactcccggtttatccccgctggcgcggggaactcccgggggataatgtttacggtcatgcgccccccggtttatccccgctggcgcggggaactctgggcggcttgccttgcagccagctccagcagcggtttatccccgctggcgcggggaactcaagctggctggcaatctctttcggggtgagtccggtttatccccgctggcgcggggaactctagtttccgtatctccggatttataaagctgacggtttatccccgctggcgcggggaactcgcaggcggcgacgcgcagggtatgcgcgattcgcggtttatccccgctggcgcggggaactcgcgaccgctcagaaattccagacccgatccaaacggtttatccccgctggcgcggggaactctcaacattatcaattacaaccgacagggagcccggtttatccccgctggcgcggggaactcagcgtgttcggcatcacctttggcttcggctgcggtttatccccgctggcgcggggaactctgcgtgagcgtatcgccgcgcgtctgcgaaagcggtttatccccgctggcgcggggaactctctaaaagtatacatttgttcttaaagcattttttcccataaaaacaacccaccaaccttaatgtaacatttccttattattaaagatcagctaattctttgttttcaaacaggtaaaaaagacaccaaccttaaaccatccaaatctaccggggtacgcctgtttaacccaaatgtctggaactcaaatcccgtttccgtattcgttgcccatgccatcactacattgccttcttccgccagtccagctatttgttcccagatcatttcacgaatttttgcggatacatcacctacatatacccctgcacgtacctccaacaaccagatggctaatctgcctcgtaagcgcggaggtacattttcagtgaccacgaccaacatactcatttcagctactccgatggcctgcatctcccagtgaaacaggaagcggaatggcaacaggctgtgcatcttcaggtggggccggcggttgtatttctccagcggcaagcacgtcctctataagcggaatcaatttggctaatgttttactactgcgaaaaatatccctgcacgccaaacggacttcccggtccggctcaccagggttacgacgcgctatctcaaaagctttcggtacaacagtgtcaaatttaatgatgtctgcaatatcgtaaacaaaggaaagaggctttcctgtatgcacaaacccaatagctggtgcataaccagctgcaagtatcgccgcttcagttacgccgtataaacaggaagttgcagcgctaatgcattggttgatcgtatcgcccttttcccagtctttcggatcgtagcgacgtccattccatgtcacgccgtattgcttcgccagaagtgcgtaggttgcccgcacgcgactgccttctatacctctgagttgctctacggagcgccgggcaggcgcaggttctccaaaccgaagttcaaacattttacgtacgaccttcagacgcaaatcttcatccagagcaagttttgcctgatagagcagcttatctgaacgcgcacctccaggctgaccagaagcataaacacgaacgcccgcttcccccacccataccaacaatgttccaacttgcgcagccaggcgtacagctgcatgcgaaacccgtgtaccaggttccagcatgatgcaggcaaccgagccaacaggaatatgagtgcggatccctgtcttgtcgataagtacaaacgcgccatctattacatcgatctgcccatattgcagaaagatcatggagacgcgatctttgagtggaatgggattaaggggaagccaggtcattttattacacctcaatcacagtggagccaaagatagcaagccacatcccatcgatttagctggcccaataccttgctgtacaagatctattaacgctggcgcgtcgttgatggtgagcacaccttcaaagcaaaccgtttggatctttccacttttaccatcaccagaaaaatactgtggccgttccgatatgggatgcacatcttcaacgcgcgccgcattgcccaatttacgttgcaaccacgcgatttgttctgcttcttttattaacggaacccgacagcgtttaatattccctttactgtccaggcgcttttgattgtcgagaatagttttgatcggatttgcccgaagccgaaaatagagtggaacaccaacctgaagttgaaattcaacctgtttagttttaatgactgtcgcaacggcagttgaaacaggcatttgcgctgactgcaataaaacatgacagccttctggtgtgtttcgcttctcaacatgaaaaagaaaatcacgagcagcatccggtctgtttggaaataaatgccataatccctggtgaagttggtaaagatccctgctccaggccctggcaatgatgactttactgagatacatccatacctcctttaatcacataccattctcgggaagcaaattgtcgaggcaaggtgatcatcggttcgtcgcgcgccgtaaattttaaatgatgccctgtaactgattcctcactatatatatcgccgccaacgggctcataatttaatagcgccttctgaggatccgatgcctgacatgtccccaaaaaaagcgggtgtgttagtgggcaacttctccgccccaggtaaggtgtataccgaggctttaatactgctttttcaagttctgagataaccatcgttgcatggggtgttaaccagagagcgacggtaaaggaggcatcacataaatattcgcgccatgtttgaatcgtttcatgacttttcaaaccacggtaatcttctcgcgctccaaggactgtatggtaatcacgcaaccccgttacagacacacgacgatcgtcaagaatgagttcatcgcagcgcactgcaaattgcacactctctgataacgcctgtaatgaagaagtatcatcacgttggatcccaagacaagccccgagtagccctaataacccgcttcgggtcggaaatcttccggtaggtcgcgttccttcaaaggtcggctgcccccaggcttgcattggcccagcaagccgcaagatcaaataagatctcatgttcacgcctcgccattattacgaacccaggattttaactgttctaaagtaggcatttgtttaacttgagcagtaattgggtctacatcagataagctgaattgcgcagcagctccgttcagaccatatccattggcaacgcgatcccaatattgattaaacgcctgtatagacggttgcaaaaagccatctttcgctttaaccgctttttcaaaagcatttgccatagaaagtggcatatcggagaaattaaccattaccatatccgcagggttaaaagcggcataagtacgctgttttgctccagggacctctgttgccagcatatgaacaacatgggttgcaatttccagagcctgctccctggaggcaccacctaaattttcctgaagttgagcgaggttaatgttggcataacgataaaaaacacccgatgaaaattcctgagttcccagatgtgcagaaccttgttcctgtaaatcatctacagcggtgaaccagtcaatatcagaatcaacctgatgagtagtgatcgcatgcgcaatggacattgcaccatcaacttttcccaactcagtcatcatgccgctggttgccattcttccactaagcgcaatatcaacaccctgctgtaaattcacacgtatggcggcaatatcttccttaagaactttgagcagctttttatcatccagattatcagcctctgcttttgcaacctgctcacagaaccaggctatttctcccacaacccagggagtaaccgcatcggcagaaatcttttcggcttcatcaactgatttaccggagagcagcgctaatgtcttatcgatgattttttggtcaaaacgttcaccaagtttttgccgaagaacatcacgtaattgtgcaagatgaatggttctgagactggattcaccaatattttgtgcgtaataaccacttttacgcatcgcacgtttaaggctttgacttgaaattcttactcgtcttttgccgccgaaaatagcgtctttctgcatgttcatatcgtcgcggttcagacatgaagggctgtgagagatcagaacatgaatattgataaagttagacatagaaaggtttccttacgcatttttgtttgtggtcaatacaaaatcttccagaagttgctggcgttcgcgctttccccaccaggtcaacatcctggccattaatggccagtcaagtacgggttcggcgtgagtaagtaatcgacgtaactggaccatatcggctgttctgtcagcccgaattaattgaaagatacggcgctcgttaattcttccactattggctaaagctcttcccaacgagatacctgttgtttgctccgattttttgtcctgatgtcggatgacattctttcctgcgctcaggcaaaacaccatgcgcaaaagagcctgctggtgacgtgggttttcccaaccaaaaggttgcaccagcctataaaacgcagggatatcgcgtaattcatcaggttctgaaacacgtctaatttgcgcacatgatccattatccagttgttgccaggctcgatataaagccattgcatcaatttcatcagccatttgatggccctccttgcggttttaactcccgtaaatgtttgtatagcgtggcgcgggcaagcgctaatgtgcttattaatttaggatgatgtgcatagggagctacagattgattaaatagcatttcacacaattgatgaagtttgtctcgtaaatcagctattacctcatcagcctgggaaaaattaacattcgccagtacatcgggaattaataattcactctgtcgatagaaatgcctttctgcagtctcatgaacagagactccggcccctttgaagtctttatttttaaacccttctgcaaaggtatataacgccttgcgtaaggctgttttatatcccaaaccaacagtcactatttcgtttatcacattgccgtattgttgccacccctgattaaacatcaacacatcatgacgccgttcaagaatagatgcttgattattacgatatccccccataatcaattcaagaggactttgcggcgcaatatttctgaattgattcacaaccgccgccacgcgatttccattttcattttgaataatcttatctaccacaactcggctgatttgtgtccatgatggtgcggaggtggtgaaagcaagaaatttttcctcaacctcccctttcttgactgttaccagacaaggggaatgcggatggggccatagcccattaactgtaaaggtaaatttttccttaagaaaaccggtataacgcaaattgctttcctgtccacagcaagaacatttaccaatcccaatgggatcgcataattcaatatgcgctggttgccagaatagaccacggacaaacccaattgacgaagcaggtatagactcattggacttgataggtttaatccaggtaggttggttttccgtatgtgattcattaggaaattgtttttgaagacgaggtaatgtgaggacattgagtaacaccgttgaacgaagatcgatcccacgtacgaacgttgttacaggtgttcctccacgtaaaccgcttttaaaaccaccaccaaaacctggtgcctgattcgcctggttgaataacgcaatcgcagtgcatccaccacataatgcttcaccctgccccggttgattgacaaatgcacaattcgtcgcgccgcttaccccagccaacagtttttccattggagtcacatcatttgctttgacacctttggtctgcataaagggatgttctgcgtgattaaggtagaacatatctatccacggcgcgatgagttgttgaaactcatcttcagtgagcggattcattatgcgatgtcgaaattcaacgtcatcttttgccggggcgataatttgcccaatgcaaaccagcagtgctaaagcggccagttccatatcgtcacggggcaaacttaatcgccactgatctctactgcagtatagcgattgcagatttatgatttggactttccccccgtttcgcgggcgtacagggatccagttatcaataagcaaattcatttgttctccttcatatgctccgacatttctcctgcatttctatacgtcggcacacttccgttatcggtaaaaacaaagaaaaaatacggcgtaattaattcaataatcacattcactgcaaaaatatattcattggtttaatacaattaacctatacatatattaagatgtgttgaattgtttaaagacaataatgcatgcatttcaaatctgcaagttattcgttttattattaaagaaacttttagttataataattaccatgaattttattacataaaatattcatactgtgaatataaaatctcataccgggaaattaaaagaagatgtacattgtgcaccttccctacttaagtagggataaaccgttattggtcttattatcgtcattgataacaatcattcccgaagttatttgggatttgcagggatgactctggtcatcccttcatcccctgtataggtaataacaatactgttaccctgccagacccatccatccagattctgtttcccttccagccaaagtaacccatcttcatctactacttcagaaaaactacgtttccaggtgaagggtacattgacgcgattaagtgcaagcgcctcatactgctgttcatgacttaggtcctcgtagacctggccatcgagcagttgtttacctgaagacgtttgtacataaggcaataatggcaggctcatttccccatccctcgttaccgcaagaatggtttcatcgttatcctgcaagctatattcttcagcccactgcaggaccttgcgagccttgaaccttttttcacactcggcgctttcaaatttatccatgccattgccgacccattctggctcatccatttccgcatcatcgtaaatgctatccagccattgccggtaagcatcagggaaaaataaggatgctccattaagctcctcaatatgttgctgcgtccgccacatgactctaacgttgctataaatatgctcatgtcgtccgtaaccctcgccatcaggcagcaaaatggtggcaacaggaatctcaaaaccagcgggacgatatttgcgatgatggcgatgtaaacggcccaatcgttggaaaagcaaatctgcaggacaatgctgagtaattaaccaatcaaaatcaacgtcgagtgattgttccacgacctgggttgcgacaagtatccgtccaacatttcgcttcccatttttgccgaaattgctaataactcgattctctttttcacgacgatcgttcagcgtaaagcgcgcatgaaacaaatctatatctacttgcgtgttatttagctcctttagccgttggtagcatacttgtgcaacgtcaaccaaattgcaaataagacagacctgtgcacccgcgtttgccgctgcgatcattcgctctaacatcgtaaggtcaggtaacatgtcagctaaacaaataggttctggctgaatcgaaaagcggggcgggagttgttctggatgagctagcagatcaaaacgttgcgcaccattcacacctcgccagttaatgagtggatatgcggagttattttccactggatctgtatgcagaccataagtatccagaagtttctgtttttgtttcattggtagggttgcggaaagaagaataacactccctcccacatcagcctgagccttgagcactgcctccagcaagccgttcatataggtgtcgtaagcatgaacttcatcaacaattaaaacacttcgaccaattcccaaaccacggataaagcggtgtttaactggcaataccgatatcaacacctgatcaatcgtgcaaacgccgatttgcccaagaaacactttcttattgctttgtgacaaccactgacaacactgaacccacgcttcttcttgcccctgttcagtaatcgcgcgtgattttattgattgaaagaggtggttaaaccgtgaattgccatgagcaagaataagatttggggatgaaaataagtggctcgcgctcgcttccattctcgtaagcatagcattcgcggtagcttgtgttgggagggcaaaaataacactatccgcaatttgttgatcaataagtttccaagcataggccagcgctgtttccgttttaccggagcctgtaggtgcctctattaccgtcagcccgggagctactggaagagcatcaactaacacctgtaattgtctgggttgatagccattgtccagtagtgcatgaacaccttcataacatcgcttatttgatacaagtccactcaactccaatacccggctcgcatcctgctgtcggtcctggaaatacgttctcagagcatttatgtcggaaggcgcatcctcattaaacagaaaggtattcgttgtagtccaggagcctaaccagtcagcaagcgagcaaaaacctgctaacagtgatgaacaatcaggtggtatatcgtttatagataaccccgctggcgttaaaaataatgcttccagtacagatatccactcctcacgagcctgtttatcttgcgcagcataagatgccagagaagctggcatttcccaacgcgacttatcttgatcctgggaatgtaatataaaaccatgatgtcctgtaacggcctctacccatggaaaccaggactcataaggatgaggagcggcatcaaaaaaactgaaaaaatccccgagagattgctctgaaagtgaatcctggttaaaccaatacagaccggctgcaccatgattaaatttacggcacatttgtgttgatggaccattaagtgatggcgttgcaggatttaatttcagccaactttctgctgatttatattggaatcgtatatcaaactttccaatatcatgaagagcaatgaaaaataacagccaggccttcaccctctgttttgatagcatttcatttcggcaaaaagtattttgcagtacgactgattgatcccaccagcaatctgcaacagcagcaacatcaaggcaatgataaattaacagatgaatatcatttcctttcgtcaagctttttgaggattttccccagtaatggcatatatatttaaaaggttccattaatagcctccctgtttttttagtattatcgatgatatcagcgggctatttttcgatgctgctcataaatatcgaattacagtgatatacacatgtcttgcctccctgcaaagaagagactaacattcgaattgtttgggttcgaacgctggcctcaggttgatagaaatatcgcctggggcttttgtccatctggaacctcgcgaatgcttaacgccagacagcctcaagcacccgacgccattctatacctgataattcttcccgcggcgttcacgtttaaaatcaggaatgctgctcgcaaaataaaaacgcccccatcatttctgacagaggcgtttaatttgtccggcaatatttacccttcgtgtaacccacattccctttttaagccaaagaaacgcgtttcttcttccgccatgccgggttcccatttacgggttgtatgggtatcgcccaccgataaatatccttcatcccataatgggtgatatttcaggccatgtttttgcaggtactgataaatagttcggttatcccagtcgataatcggcagcactttaaatacgccacgctgaattgccagcaccggtaaattggcacgactgccggattgttcacggcgcaggccagcaaaccaggtttgcgcattcagttctttcagagcccggttcatcggttcgactttgttgatgtcattgtacttttcaatgccttcaacgccctgctcccacagttttccgtagcgtgcttcctgccaggctgcgctttcggtagcacggtacactttcaggttgagcttgagtttgtccgttaactcgtcaataaagcggtaggtttccgggaacaagtaacccgtatcggtgaggatcaccggaatatccgggcgaatttgattcaccagatgcaggctcaccgccgcctgaatgccaaagctggaagaaagtacatattcaccgggcagattatccagcgcccaggctacgcggccttcagcgtccagtttttccagttcggcgttagtttccgccagcgccagaatgcgatctaccttcggcagttcgttcagggcgtttagatcgagtttggacatagattcctcactgtttgccttgcctgatgcgacgctcacgcgttcttatcaggcctacaagaccgggctgatggttaatcccacaaatcacgcgccggatcgagcaccgggcgaatgatgcccgcacgcaccgtaaagtcgccgaagccttcacccgcttcgcgctctttcgcccagcgccctatcagttcatcaagcgacgccaggatttccggctcggtgatgttttctttatacatccgtgggatacgtgtcccaatgcggttgccgccaagatgcaggttgtagcgacccggcgctttacccaccaggcccacttccgccagcatcgcgcgaccacaaccgttcgggcagcctgttacacgcatcacgatatgctcatcgctgacaccatgtttcgccattaaattatcgatgttgtcgataaaagacggcaggaaacgctctgcttccgccatcgccagcgggcaagtcgggaatgacacgcaagccatcgagttttcacgctgcggcgtgacggcattcattaacccgctctctttggcgatcttctcgatcttcgctttctcgctttccggtacaccggcgatgatcagattctggttcgccgtaatgcggaaatcgcctttgtggatcttcgcgatctccagcaggccggttttcagcggacgcgccggataatcaaggatgcgaccattttcgataaacagcgtcaggtgccagttatcatcaatgcccttaacccagccaatacgatcgcctcgtccggtgaactcatatggacggatcggttcaaatttgatccccgcgcgacgctccacttccgctttaaacgtctcaacccccacgcgctccagcgtgtatttggttttggcatttttacgatcggttcggttaccccagtcacgctgagttgtcacgacggcttcggccaccgccagcgtatgctccagcggcagatagccaaactcactcgcggtgcgggcgtaggttttcttgttgccgtgttcgatggaaagcccaccgcccaccaacaggttaaagcccaccagcttgccgttttcggcgatcgccacgaagttcatgtcgttggcgtgcagatcgatatcgttctgtggcgggatcactaccgtggttttgaatttacgcggcaggtaggtctggccgaggatcggttcttcatcagtagtggcgactttttcctggtcgagccagatctccgcatacgcgcgggtacgaggcaacagatgctcagaaatcttcttcgcccactcgtacgcttccgcgtgcagctgcgactcgtaagggttcgaggtgcagagtacgttacggttcatgtcgttagctgtcgccagcgcatcaagaccgaccgagtgcagcatctggtgcaccggtttgacgttctttttcagaatgccgtggaactgaaacgtctggcggttggtcaggcgaatgctgccatagatggtgttttcaccggcaaatttgtcgatcgcctgccactgtttagtggtaatcaccccacccggcagacgacagcgaagcagcatcgcgtggcgcggctccagcttctgttcagcacgttcggcgcggatgtcgcggtcatcctgctgatacatgccgtggaagcgaatcagcaggaagttgtcgcccttaaagccgccggtcagaccgtcgtttaaatcttccgcaatggtgccgcgcaggtagttgctttcatgcttcatgcgctcggcgtctgtcagttttccttcgaccactaaaggccctggatgtttttcgctcattagtagacatctcgctgataacggcgctctacgcgcagctcacttaaaaattcatccgccgcttcggtgtccatgccaccaaattcggcaatcacttccagaagtgcctgctcaacgtctttcgccatgcgattagcgtcgccgcagacataaatgtgggcaccatcattgatccagcgccacagctccgcgccctgttcgcgcagtttgtcttgtacgtaaactttttctttttgatcgcgcgaccaggcaagatcgatacgtgtcagcacgccatctttgacgtagcgctgccactccacctggtacaggaagtcttccgtaaagtgcggattaccaaagaacagccagtttttacctggcgcttcgtcggcggcgcgttgctgcataaaggcgcggaacggcgcaataccggtgcctgggccaatcataatcaccggggtttctggattggctggcaggcggaagttatcgttatgttcgataaatacgcggacttcgccctcttcttccacgcggtcagcgaggaagctggaggcaccaccggcacgggcgcggccttccacgtcgtaacgcaccacaccaacggtgacgtgtacttcgttctcgacttccgcctgcgaggaggcgatggaatacagacgcggcgtcagcgggcgcagcagattaattagcgcttcggcatcaagctgtgccggggagaaacgcaccatgtcaacaatcggcgtcgtcgcggcgtaatgctgtaacttcgctttatcgcccaccagcggcagcagtgtttcactgcgggtaagcgtggcgtaattctcaacaatgttggcggtgttgacggtcagttcgaagtgccactgtagcgcttcgttcagaggcaacgttttgccctcgacggtgacaggttcatcgcctttcagccacagcagttcgacaagttctttcaccagtgccggatcgttctgataccagacgcccagcgcgtcacccggctggtaacgcatgcccgagtcacctaagtcaatttcgatatggcgaacgtctttttcagagttacgcccggtaattttctggttaacagagaggctagccaccagcggcgcgtctttgctgtacgggctggtgtggatttcatttaccgcgccagtagcgacggattgcgaaggtgccgcgacaggcgcacgcgatttaagcgcatcaaccacgcgggcgcgccactcgctggcagcagcctggtattcaacatcggcatcgacacggtcgagcaggcgttcaccacccagttccgccagcttgctgtcgaaatctttcccggactggcagaaaaattcataagagctatcgccgaggctaaacacggcaaacgcggtgttttccagctttggcgcttttttggagaacaggaacttatgcagcgcgacggcttcttccggcggttccccttccccttgcgttgacgtcactacgatgagcagtttttcgctggcgatttgtttgaatttatagtcgcccgcgttcaccagcttaacgttcagttttgctgctaataaatcatcacgtaatgcttcagcaacccggcgcgcattgccggtttgcgaggcggagataatagttatacccggcatttctgcggctggcgctggcgtcgctgcaagcgcagcaggctgctgattgagtacgccccagaaatagccagaaacccaggcaagctgggtgggagttaaatcggtcgtggccgcctgaaggcgtgccagttgctccgggttcaacggaagcaacgcggaaggtgggacctgtgtcgtcatgcgtcgttatgttccagtaagcaaagctgtttctgcgccctgtcagcgcccataaaacagaagagaaggtaaggttaacggggcaaacggtgtggattaaagacgggatagcgataactaataaccaaatcgactaacctgttttagcaatagtctttaacaacaaaatagattaaccaacctaatgaaaaacaaatgaatttagccaatcattaagataaatcagcgattttgcgcaacaaagtcgttttagataatgcgaaaaaacagcctttccggtactctacggcggttttatcgtcctgtagagaaattatgatgtccaccacgttatttaaagatttcaccttcgaagccgctcaccgcttaccacacgtcccggaagggcataaatgtggtcgcctgcacgggcattcctttatggtgcgactggaaattaccggggaagtcgatccgcatacgggctggattatcgatttcgctgaactaaaagcggcgtttaaaccaacctacgagcgcctcgatcaccattatctcaatgatattccaggtctggaaaacccaaccagcgaggttttagcaaaatggatttgggatcaggttaaacccgttgtgccgctgttaagtgcggtgatggtaaaagaaacctgcaccgcaggttgtatctatcgcggcgaatgataagagtgtgtcggcggtcaatttcccttaagtaacgctatgttagggtgttgtgttctggatatctggggcatgacatggaagacgactgcgacattattattattggtgccggtattgcaggcaccgcttgcgcgttacgctgcgcgcgagcgggtttatccgttttgttactggaacgcgctgaaatccccggcagcaaaaatctttccggcgggcggttatatacccatgcactcgcggaactcctcccgcaatttcatctgaccgcgcctcttgaacgacgcatcactcacgaaagcctttccctgttaacgcccgatggcgtaacgacgttttccagcttacagcccggcggtgaatcctggagtgtattacgtgcacgattcgatccgtggctggttgccgaagccgaaaaagaaggtgtcgaatgcatccccggagcgacggtggatgcactgtatgaagaaaacggcagagtctgtggcgttatttgtggtgacgatattctccgcgcccgttatgtggtgctggcagaaggtgccaacagcgtcctggctgaacgtcacgggttagtgactcgtcctgctggcgaagcgatggcgttggggatcaaagaagtgctgtcgctggaaacatccgctattgaagaacgttttcatctggagaataacgaaggcgcagcgttgctgttcagcggcaggatctgtgatgacttacccggcggcgcatttctttatactaatcaacaaacgctctcgttagggattgtttgcccgctctcttcccttacgcaaagtcgtgttccggcaagcgagctgctgactcgctttaaagcgcatccggcagtgcgcccgcttatcaaaaacacggaatcactggagtatggtgcgcatctggtgccagaaggtggcttgcacagtatgccggtgcaatacgccggtaacggctggctgctggtgggcgatgcgttgcgcagttgcgtcaataccggaatttccgtgcgcggcatggatatggcgctgactggcgcgcaggcggcggcacaaacgctgataagcgcctgccagcaccgcgagccgcaaaatctgtttccgctttatcatcacaacgtagagcgcagcctgctgtgggatgttctacagcgttatcagcatgttccggcgcttttgcaacgcccgggatggtaccgtacgtggcctgcgttaatgcaggatatttcccgcgatttatgggatcagggtgataaacctgttccaccgctgcgccagttattctggcatcatttacgtcgtcacggcctgtggcatctggcgggcgatgttatcaggagtctgcgatgtctgtagcccgtaatctctggcgcgttgctgatgcgccgcacattgttccggctgactccgttgagcgccagacggcagaacggttgattaacgcctgtccggcaggtcttttttcgctcacaccggaaggtaacttacgtattgactatcgcagttgcctggagtgtggcacctgccgtttgctgtgcgacgaatcaacactacaacagtggcgctatccgccttccggattcggcatcacctaccgctttggataaataataaggataatttatgcccctcttacacctgctccgccagaatccggtgattgctgccgttaaagataatgccagcctgcaactggcaatcgattctgaatgccaatttatttccgtgttgtacggcaatatctgcaccatcagtaatatcgttaaaaagattaagaacgccgggaaatatgcttttattcatgttgatttgctggaaggcgcgtcaaataaagaagtcgttattcagtttttgaaactggtgaccgaggcggacggcattatcagtaccaaagcctcaatgttgaaagcggcaagagcggaaggttttttctgtattcatcgcctgtttattgttgattcaatttcgtttcacaacattgataagcaagttgcgcaatcgaatccggattgtattgagatcctgccaggctgtatgcccaaagtgctgggctgggtgacagagaaaatccgccaaccgctgattgccggtgggctggtgtgcgatgaagaagatgcgcgtaatgcgattaacgcgggtgtcgtggcgctttccaccacgaataccggggtctggacgttagcgaaaaaattactttgacgggataatcgtaaccaattgaatttggtttgatttgtaggccgcacgccacatccgacattcagcgcctgatgcgacgcttgacgcgtcttatcaggcctacaagtccccaggccagaaccgtaggcaggatcatccggcaacacgttattggcaatctgcgtgaatgtttgtcaccagtgcctccagcaccactttccagtcatcaaccacgccaacatctgcctgtgaaaataccgcagcgctggcgtcatgattaatcgccaccacaaacttgctattgcgtacgcccgccattaacgctgctgcgccagaagcgccaacaacaatacacacctcaggtgccagcagatgtccggaaataccaatcactttttcagcatcaacgccaccgttcatcactcgcgcccgactgtagcccacttcggctcccagcttttctgccagcatagcgatttcctggttatctgcctctccgccctgccccaccaccagcacccgtctggcctcagctaatgggtcgcgggtaacatttttcagatcctctgtgctaaccagccagtccggaagcgcacccgggacaatgttcagttgttgcattccagagggcaacgtggcgtttttcgctgctcccgcctgacgcgccagggaaaggcatagcgggcgtttttctgtttgcagcgtcgccgttagcgcatttccccagtgggatttgcgcacgcttacggttggaatatctaacgaagtcacctggcagatgcttgcaccatgtaaacgccaggccagccgggtcgacagttcatcgccaaacgttcccggcggaaagagaacaacgtccgcaggcgttcgctgccactgttccaccaacgcatccagcacctgttccgccactacaggctgaggttcaatctgccagtgcgccagggtacaaccgctgaaatcctgcgccgccagccagcttgctattgcggcattctcctgatttattgtcacaattgcgatattcatggctgcatcctttggcgtaaatagtcctgccatagcttttgagctttttctgctaccgtttgcccatcaatcagcgtcgctccggcgtcgttgctctgctcttgccagttgcagacactgcatcgctggcatttcggcagcaacagttttacggataatttctgctttccccgcagccattcgctggcgcattcccggtactggcaaggccacttcaccgcactgacgcacggcaatcaccgcaggcaagcgaacccggcaacaacgcaacccatgttcagtacgctgttcgagggtgataaacagcgcgtcgagagtgaaacgctccacctgggtgaagcagggccagcccagcatttccgccagcaaaaatggcgtttgcccattctgcccttcgctgctttggcagccggtaattatcagatccagcggattctgatgctgccattcggcaatatggcgagcgacaaattccggcgcaaagcgcagatctgccgccgtctccagcaatacagcttcctcaaacccaagagccatgagatagcgcagccagtgcaatgcccgttcatcccccatgctcaacgcggttaaagacatcggcgtaccgttttttctctgcgccaacagcagcgcggcagcggcctgttcatcagcaccgagtaaacttcgcagtagcgaaatatccggtccgcttttaccctgagccgccgcctgccactctttttccgccagcattccggcatccggttcggctttaaacgctaacagaatgttcattcgcacctcctacatttcccgccgccaccagcgggagggctttagtttctggtgcccatagccaggtcacaacaaaaccaaccaacaacactgtcgccaggagcaataaggtgacttgcattccccactgcgccagcacccacggcagcaggccagtacttaccgccgcgccaagtcgactcatggcagtggcaaaaccgacgcccagcgagcgaatgtcagtaggaaaactttccgcaggcaaaatgcccaccagattactgactgccgaaatggtggtgctgaagagaacaaaaagcagcagcgttaatgaactgccggaaggcaaacaggccatgactaccagcgttgccgccagcagcaaaaaacttcccagcaaaaatttgcgatgtgccagcaggtgcgtcagaactaatcccagcagcgcgcccacaattaacaacgcattaagcatcaggctggcagtcagcgcatcttccagaccaatagtctgggcgatagttggcagccaggtataaatcacaaaccatgggattacgaggcagacaaagaagacgctgttaaacgccgtgcgccgccagtaacgcgaagagaacaaggttttgatgtgtttatgggtcgccgttaccacttcatcgcccagtaaaacatggggaccaaaatagcgatgcacgatagcgtgagcttctgcaaaacgcccctggcgcagtagccagcgtggtgattctggcgttccccagcgtaataacgtaatcaacaacgcgggcagagctgccgatgccagtagccagcgccaggcctccgggttttcggaaataaagtgatgtccggcaatacttgccagcacatagcctacggtccacaccacgctgaatgcgcccagcaaaataccgcgatggcggcgcggggaaaattcagccagcaaggtgtgacctactgaataatcgcctcccagaccaatgccaatcaaaatgcgcagtccaataagatgctctggcgtggtggcaaaaaattgtaaaaacgaagcaagcgtaatcagcaaaaagctgaaggtgaagattttttgccgaccaatatggtcggagatccacccaagaaccaggctgccaaggaacaaaccaaggagcgccgagccgccgatcattcccgccataaacggcgtcagttgcatggcgggcgtaagctgaataatggcgtaaccaatgacgccgagaacataaccgtcggtcaggtgtgcgccgaaagtgagcgcagcaatgcggcagtgaaaacggttaagcggtaaatcatccattcgcaccggtgaagtgttcatctttaccccttcattgtccggtaataagaacggcttctcgcctgagaagccgaaaaggcaacgccccgtcatcgcggaacgctgcctgacacattatttttcaatcggatagatagtacccgtattcataatgccattaggatcgaactgctttttcagcccttccagcaacgcccacgcgctgccgtgttccagtttgctccagtgaacgcgatgtttaccgataccgtggtggtgcaccatcgaaccgccgaggcgaatggtttcttcacagatgatcttgttgagcggattgtggtacttgtcgatttcctcttccggcttacagtcaacgacgttgtaatcgtagacgaagtacatgttggtgccgttctgatagctatgagaggaatgaccgcccagcatggtgatgtcgtcggcgtgcgggaactcagtacgaatacggttaataacgctttcgtagatttcgtggatgcagctccagcagccggatacttcggtggtaaagcccatgttgccggttttgaggatctgcacacgttcggcagccactttatccggtccccagttcaggttgttaaaccaggtttcgatcagcttgctgtccacgcgctggcattgcgggtagcgggcaacgatttccgcaatcccttcgcccgtcaccttcgcaatgcgagggttaccttcagccataaagatcagcacgcattttccgtcggcaaaatgggtgaagtgttgggtgccatcttcagcgtcatacaaacgagcgattgacggacgatacccttccaccatgatttcacgcaggatgttgaagccggttttcatgtcttccaggatatagccgtagaagaggttgttttccggggtgaatttaaagattttcactgttacttcagtgatatagcacaatgcaccttcgttgcgatgatgatgtgacgaatgtccgggccagccgcgcggcgtggcacgtttttaatgcgtgtgacggtgccatcagccaatactgcttccagaccaacgaccatatcttcgattgcgccgtagagtgtggagaactgcccgatacttcgggttgctaccaggccgcccatctgcgccagcggctttgactgcggagaatgccccgtggtgtaacctttttcacgcaacgcgttttccagcacttccagcggaacaccacattgcgccgtcgcctgcatattctcaatatcaatattaatgatttgattcatggcggagccgtcgagcaccaccgagttttctacaacagtttccagccaccttcggtggcggaagcaccggtacgcggcacaccgttaattttgtgcgcattcataaaattcagcacacgggatacttgctctgtggaaccgagttttacgaccgctgccggaatcggcaaagtataaatgccatgaatatccggaaatttacgaaaacggtcaatactgtttttctttaatactgtttcatcggtaattacgcgatctgcaccaacaatttcctttagctggtcgacaatcgctgcgcgagataaagacatagtaattccttcctgataataaaaatggaataatcattaataagagaaaacagaaaccaccgttatgggttagcgcactaaataaccgccatcaaccactaataaatgcccgttgacataattcgatgccggacttgcgaggaatacggctgcgcccattaaatcctgagtatcgccccaacggtttgccggaatatgatcaagaacgcgctgattggtttctggattactgcgtgtcgccagcgtaatatctgttgcataatagccaggggcgataccatttacctgaatattatattgacctagttcatcacaataagctttggtgaacccggcaagagcatgtttagtggcagaatatgcaggtgaccattgtccacctaagtaagagaacaatgaacagatattaataattttgccgcttttctgcgggatcataatttttgcagcttcatagcttaactcgaatgcggcggtcaggttcacatcaatcatcggatcccagtcggcacgaccgaagtccagcaccttattcagcttacaaataccggcattgttaaccagaatatcaactgtaccgaaacgctcacagcaagcagcgataatcttctgcggcgcgccttctgcggtgatacccacctgcatgaagtccacctcaacaccctgtttttcaatcatttcctttgtttcgccgttatctttgacgaaactaggaataaagatatttgcgccagctttggccaacgccatggcaaatgcctggcctaaaccgctattcccaccggtaacaattgcggttttacctttcagggagaaaaaatccattgagaacgcattgagagattcgattgacatagttagctccaatttccgtaaggcaaaaaaaaagaaaggtaacttcccccgcgagagggaagttacctttctcattatctctggtaactggagataatttttagcataagggcataactgctaatgtgatcgtaatcacagtgtgatattcgtattgtcaaataattttaaaaagcagaagcgtgattactctcacacaacacctctgctttccatgttatttattatttcaattactagagacctgagaaaagtaatccacctgaaagggcggcttacttttctcttttttttgtctattacaaatgggaatacgatatgcaacacaactcatatcgccgttggataaccctcgcgataattagttttagcggcggcgttagtttcgacctggcttatttacgttatatttatcaaattcccatggcgaaatttatgggattcagcaataccgagataggtttaataatgagtacctttggtattgcggccattattctttatgcccccagcggcgttattgccgataaattttcacaccgcaaaatgattacttccgcgatgatcattaccggattactgggtctgttaatggcaacgtatccaccgctgtgggtaatgctctgtattcagatcgcctttgcgataacgacgattttaatgctgtggtcggtgtcgattaaagctgcatcgttgcttggcgatcatagcgagcaagggaaaattatgggctggatggaagggctgcgcggcgtcggtgtaatgtcgctggcggtgtttaccatgtgggtcttttctcgctttgcaccggatgacagcaccagcctgaaaacggtcattatcatctatagtgtggtttacatcttgttggggattctgtgctggttttttgttagcgataacaacaacctgccgcagtgccaataacgaagaaaaacagtcattccagcttagcgacatcctggccgttttgcgtatcagcaccacctggtattgcagcatggtgatttttggcgtcttcaccatctacgccattctgagttactccaccaactatctgaccgaaatgtatggcatgtcgctggtggcggcgagctacatggggattgtgatcaacaaaatattccgcgcgctgtgcggcccacttggcggcataatcaccacctacagcaaagtgaaatcccctacccgcgtgatccaaatcctttccgtactcggcctgctgacgttaactgccctgctcgtcacgaactctaacccgcaatcggtcgcgatggggattggcctgattttactgctgggattcacctgttacgcctcacgcgggctgtactgggcctgccctggcgaagcgagaacaccgtcttacattatgggcaccacggtaggtatttgttcggtgattggattcctgccggatgtcttcgtttacccaattatcggccactggcaagacaccctgcccgctgcagaagcctaccgcaatatgtggctgatgggcatggcggcgcttggcatggtgattgtctttacctttttgctgttccaaaaaattcgtactgctgatagcgcccccgcaatggctagcagcaagtaagccaggaaaattacaggagaaaaatcatgtcgaaaaaatacatcatagggattgatggcggaagtcagagcacaaaagtggtgatgtacgatctggaaggtaacgtggtttgcgaaggcaaaggcttattacagccgatgcacacgccagatgccgatactgcagaacatcctgacgacgatttatgggcatcattatgttttgccggtcacgatttgatgagtcagtttgccgggaataaagaagatattgtcggtattggtctgggatccatccgttgctgccgtgcgttattgaaagccgatggcacgcctgctgcgccgttgattagctggcaggatgcacgcgttacacgcccttacgaacacactaaccctgacgtggcatatgtcacctctttttcgggttatctgacgcatcgcttaaccggcgagtttaaagacaatatcgccaactattttggtcagtggccggtggattataagagctgggcatggagcgaagatgctgcggtaatggataagtttaatatcccccgtcatatgctgtttgatgtgcaaatgcctggcaccgtcctcggacatatcacaccacaagccgcactggcgacacatttcccggcaggactgccggttgtttgtaccaccagtgataaaccggtagaagctctgggggccggattactggatgatgaaacggcggtaatttctcttggcacttacatcgcattgatgatgaacggcaaagcactgccgaaagatccagtagcgtactggccgattatgtcttctattccgcaaacattgctgtatgaaggttacggtattcgcaaaggcatgtggacggtgagctggctgcgcgacatgctaggcgagtcgttaattcaggatgccagggcgcaggatctttcaccggaagatttactcaacaaaaaagcttcttgtgtgccgccaggtgtaatggtctgatgacggtgctggactggctgaccaatccgtgggaaccgtacaaacgcgggattatgatcggctttgattccagcatggattacgcatggatatatcgttcgatactggaaagcgtggcgctgacgctgaagaacaattacgacaatatgtgtaatgaaatgaatcactttgcgaagcatgtgatcattactggcggcggttcgaacagcgatctgtttatgcagatttttgccgacgtgttcaaccttccggcacgacgtaacgccattaacggttgtgcaagcctgggggcagcgattaatacagcggtaggtctggggctatacccggattacgcaacggctgtcgataacatggttcgcgtgaaagatatctttataccgattgagagcaatgccaaacgctacgacgcgatgaataaaggcattttcaaagacctaaccaaacatactgatgtgatcctgaaaaaatcgtatgaagtgatgcatggggaattggggaatgtggattcgatccagagctggtcgaatgcgtaagtgaggaaggccgggcgggaaactgcccggcctgaacatacctgaatggttatccccgctgacgcggggaacataagttcgacaacttaaaaaatgataacaagtccggtttatccccgctgatgcagggaacataataaaaactttaactagttcggtttatccctgtttttacaaggaatattaactacactcgatgtctttagaataaaagacaatacgaatcgcactttatcaattttcacttaaagtatgaactggatatctttattcataagaactattcatcaacagcgtatagaggcggttatgtaaaaccactcattagcctcaaaacaaagacaaacttccagatttattacttaaccaatgaataacaagcttaaaaaatatactgttattctaaagaaaaaattaacaggcattaattcaatattaaaaaaataatagattaaaatttcttaacgatttaagaatcatacaaataacactttgattaaatttaattttttgtatcgataattgtgaacctctctggcatggagaactattttgaacatgaggtgttacgtggatatgttgcttattacaagtactgctaatataaaaacttgagaaagagataacgggttatatggtggtttatccccgctggcgcggggaactcgacagaacggcctcagtagtctcgtcaggctccggtttatccccgctggcgcggggaacacctgttttcgcaaatcttatggactattgctattcggtttatccccgctggcgcggggaacacgggcgcacggaatacaaagccgtgtatctgctcggtttatccccgctggcgcggggaacactggctctgcaacagcagcacccatgaccacgtcggtttatccccgctggcgcggggaacacgaaatgctggtgagcgttaatgccgcaaacacaggtttatccccgctggcgcggggaacacattacgcctttttgcgattgcccggtttttgccggtttatccccgctggcgcggggaacactctaaacataacctattattaattaatgattttttaagccagtcacaatctaccaactttatagtatcacacaaacaacacatccattatgttaaagagcacttaatccattgattaaaaaggtaaatatttaaaataactctatacaaactaaaatctaccaaactttaccgcaataattttcactccagcgaaaaattaatgccacagaatttgtagagaatgctaatgattagccctggatgggtaaaatggaggagttttcagaggcgacaaacaatataaatgagtagaagtctttacaggttccacccatttataacgcttataaatgtttaatcaggcaatatttagatatttatgtgtttgcatcgacaaacgccaattacgcgcaatgcaggtttcaatgcacaaacgtgtggcatcatccttttggctaatcggctgcagtgcaatgactcgcggtttatcatcggtcagcgttgccagtagttcatccagtgcttcaatatcgcgtacgcgccccactggatgcttgatttcgttggctcgctccagtgcctgtgacaacacttcatagccgccgcgcatgttcagctttggcgatacggtaacccaggtattcggtgtgcagcgtacctcatgagtaccactggtttcgatctggcagctaaaaccgttcttttcgagcagatcagtcagtggcagcaaatcatgaatgcaaggctcaccacccgtaatcaccacatgccgcgcggtgtatccctggcgaccaatgacagccagcaaatcttcactgctcgcagccccccacttatcactctctttggtcttcgccagaatgctgaaaagggagacttcccgatcctcaagcttttcccaggtgtgtttggtgtcgcaccaggcacagccaaccgggcatccctgtaaacgaataaaaatggcgggaacgccggtaaagtaaccctcaccttgcagggtctggaacatctcgttaatcgggtactgcatagcattctctgtgaagtggataattgttaattattgcagatcctgccacaacaatcatgtcttattaacattctgttacaggcaggtttaaagaaaaatgcgaaacatatcgttaataattaaagggagtaacgtattatgtcagaagaaaataaagaaaatggatttaatcatgtcaaaacattcaccaaaattatatttattttttctgtattagtttttaatgataacgaatataaaattaccgatgccgccgtcaatttatttatccagatttaatgagaaatttataatgcgctatttcatactaatgttcactttcgtatgttcctttgttgcagcccaaccaactattgtcccacaattacagcaacaagttacggatcttacgagtagcttaaactcacaagaaaagaaagaactgacgcacaagttagaatctattttcaataatacccaagtgcaaattgccgtattaattgttcccacaaccaaagacgagacaattgaacaatatgctacaagagtttttgacaattggcgtttaggagatgccaaacgtaatgatgggatactgatcgttgttgcctggtcggatcgcactgtccgcatccaggtaggttatgggctggaagaaaaggtaaccgatgctctggctggagatatcatccgtagcaacatgatacccgcatttaaacaacaaaaattagctaagggattagagctagctataaacgctttgaataaccaactcacttcacaacaccaatatccgactaatccttcagaaagtgaatcagcgtcttccagtgatcattattactttgctattttttgggtatttgcagtgatgttcttccctttctggttttttcatcaaggcagtaatttttgtcgcgcatgtaaaagtggagtctgtatttcagcaatctatcttttagatttattcctgttctccgataaaattttttccattgctgtattttccttcttttttactttcaccatatttatggtctttacctgtttatgtgtacttcagaaaagagcatctggtagaagttatcattcagacaacagcggttccgctggaggctcagatagcggcggatttagcggcgggggcggttcttctggaggtggcggcgcatccggccgctggtaactcaaccataaaaaatgccagcccggaggctggcatttttaaatcagataaagtcagtcttatgcctggcctttgatctctttacgaccgttgtacggtgctttttcgcccagagcttcttcgatacgaatcagctggttgtatttagcaacacggtcagaacggctcatagaaccagttttgatctggcctgcagcagtaccaacagccaggtcagcgatggtagcgtcttcagtttcgccagaacggtgagagataactgcagtgtagccagcatctttcgccatcttgattgcagccagagtttcggtcagagaaccgatctggttgaatttgatcaggatggagttagcgatacctttttcgataccttctttcaggatcttggtgttggttacgaacaggtcgtcaccaaccagctggattttgtcgcccagaactttggtctggtatgcgaaaccgtcccagtcagattcgtccagaccgtcttcgatagaaacgatcgggtactgtttggtcagttcttccaggaagtgagtgaattcttcagaggtgaacgctttgttgccttcgccagccagaacgtatttaccatctttgtagaattcagaagctgcgcagtccatcgccaaagtgatgtctttgcccagttcataaccagcagctttaacagcttcagcgataacagccagagcttcagcgttggaacccaggttcggcgcatagccaccttcgtcaccaacagcagtgttcatgcctttcgctttcagaacttttgccaggtgatggaaaacttcagaacccatgcggatggcttctttcacagttttcgcgccaaccggctgaatcatgaattcctggatatcaacgttgttgtcagcgtgctcaccaccgttgatgatgttcatcatcggaaccggcatagagtatttgcccggagtaccgttcagttcagcgatgtgctcgtacagcggcatacctttagcagctgcagcagctttggcgttagccagagatacagccaggattgcgttcgcgccgaatttggatttgttttcggtgccgtccaggtcgatcatgatcttgtcaatgccagcctgatctttagcatctttgccaatcagcgcctgagcgatcgggccgtttaccgcagcaacagctttggttacgcctttacccaggaaacgggatttgtcgccatcgcgcagttccagagcttcacgggaaccagtagaagcacctgacggagcagctgccataccgacgaaaccaccctccagatgtacttcggcttcaacagtcgggttaccacgggagtcgatgatttcacgaccgatgatttttacgattttggacattaggttttcctcaagtcactagttaaactgaaactccagacaaacaacgcgtacccagggtacgcgttgccgctctaacttttttacttacttcgcctgacgtttctggaactcgctggcggctttcacaaagcctgcaaacagcgggtgaccatcacgtggagtagaagtaaactccggatggaactggcaagccacgaaccacgggtgattcggaacttcgatgatctcgaccaactgatcatccccggaacggcccgcaacgcgcagacctgcatcttcaatctgtttcaacagcatgttgttgacttcgtaacggtgacgatgacgctcaacaattgtcggcgcattgtacagctggcgaaccaggctatcgtcaaccaactggcactgctgtgcgccgagacgcatggtaccgccgagatcgctcttctcgctacgaacttcaacgttgccgttttcatcgcgccactcggtaatcagcgccacaaccgggtacttacagtctggcacaaattccgtagagttggcgttctccatgttggcaacatggcgagcgtaatcaattaacgccacctgcatacccaggcaaatgcccagataaggaatattgttctcacgcgcaaaacgcgcggtcgtaatcatgccttctacgccacgatagccgaaaccgccaggtacgaggattgcgtccagacctttaaggatttcaacgccgcgcgtttcaacatcttgtgaatcgatcagtttgatgttgacgctgacacgattcttcagcccaccgtgtttcagtgcttcgatcactgatttataagcatccggcagttcaatgtacttgccgaccataccgatggtgacttcacttaccgggttcgcttcttcgaagataacctgttcccattcggacagattcgcttccgggcagtttaagctgaatcgtttacaaatataatcgtccagcccctgagatttcaacaggcccggaattttatagatggaatcgacgtctttcagagaaataaccgctttttccggaacattacagaacaatgcaatcttcgcacgttcgttcgccggaacagcgcgatctgaacgacaaatcaggatgtcaggctggataccgatggagagcagctcttttacagagtgctgagtcggtttggttttgacttcaccagacgctgccatgtacggcaccagcgtcaggtgcataaacagagtgtgctcacggccaatttcaacagccatctggcgaatcgcttcgaggaacggcaaggattcgatatcacctactgtaccgccgatttctaccagtactacgtcatgaccttcgccaccttccagcacgcgctctttgattgcgttagtgatgtgcggaataacctgcacggttgcgccgaggtagtcaccgcggcgttctttacgcagaacgtcagagtagatacgacccgtggtgaagttgttgcggcggctcattttggtacgaatgaaacgctcgtagtgccccaggtccaggtcggtttcagcgccgtcttcagtaacgaacacttccccgtgttggattgggctcatagtacctggatcgacgttgatgtacggatccagtttcatgatggtcacattgaggccacgggcttcaagaatggctgcgagggaggctgcggcaatgcctttacccagagaggatacgaccccgccggtcacaaaaatatagttcgttgtcatgctgaacctgagaagttaggttgaaaagacgatggaataaccaagacgggaaagcagtatacccgaacatgacctgtgccacaaactttcattatccctcctcttcgccagcgcactattgaaatcaggagtgagaaaatagcccctttggggtaaatgtttttgacgcaaatcaagcgcttgtcatttaaaaaatgacacaaatggcgcttgaccgcgtaattcccttagagatcaatttcctgccgttttacctgttgccagacttcttccattgtttcgaggtcaacacctgtcatttccagtccacgcgcggcaacaatacgctccacttcgcgaaaacgacgctcgaatttttcgttcgctttttgcaatgcgatttctgctttcgtccctaaatggcgagccagattaaccgtggcaaacagcaggtcccccatttcctcctccagtttagcctggtcgacaacagcctgccgcgcttcgtacatcacctcgtcgatctcttcgtagactttatcgactaccggaccaagcgtcgtccaatcgaagccaacgttggcgcaacgtttctggattttttgcgcacgcattaaagccggtaaactacgaggaatatcgtccagcgccgaatgctgcgctttctgcgcgcgctcttcggttttgatttgctcccaacgggcaagcacttcactactgttttcggcagaactatcagcaaaaacatgcggatggcgacgctctaatttatcgctaatagcagcgcaaatatcattaaagtcaaagcgcccttcttcctgagccatttgcgcgtaaaacaccacctggaatagcagatcgcccagttcaccgcgaagatcgtcaaaatcttcacgggcgatggcgtccagcacttcgtaggtttcttcaagggtgtaaggcgcaatggtggcaaatgtctgctctttatcccacgggcagccgttttccggatcgcgcaggcgctgcataatagtgagcaaacggtcgatttgattcattgaattgtcctgaaaattgcgggtctgtcaggtggaaacctgtgaccagaatagaagtgagttagtaacactacccaatcagtacgttaattttggctttaatgagttgtaattcctctggggcaactgttcctttcttcgttgctcctcttgcccgccaggcgatactttttacctgatcagctaacgctacgccatcacgttcctgaccggataaaacaacttcgaacggatatccttttgattgcgttgtacaaggaacacacagacacatacctgttttgttgttgtacatgaaaggactcaggacaacagctggacgatgtccagcttgctcgctaccttttgtcgggtcaaaatcaacccaaatcagatcgcccatatcgggtacgtatcggcttaccattaccagacttccttatctttcggctctccccagtcgatattctcgtggaggttttccggcgtgatgtcgttgaccagttcagcaagcgtaaatacgggctctttacgcactggctcaataattaatttgccatccaccaggtcaatcttcacttcatcatcaatattcagattgagcgcctgcattaacgtagccgggatccgcaccgccggtgaatttccccaacgctttacgctactgtggatcataaccctttcctcaaaccgctatcatatgtagatacagtatatatcaatctacattgtagatacgagcaaatttcggcctaactcccgtgcaaccgacgcgcgtcgataacatccggcacctggttgagtttacccagcacgcgccccagcacttgcaggttgtaaatctcaatggtcatgtcgatggtcgccagttgctgtttggtgtcgctacggctggcaacgccaagcacgttcaccttctcgttggcgagaatggtcgtgatatcacgtaacaacccactacgatcattagctaccacgcggaccaccagcgaatatccggcggagtagctctcaccccataccgcgtcaacaatgcgttctggcgcatgggagcgcagttccgccagttgttcgcaatcggcgcggtgtactgaaataccgcgcccctgggtaatgaagccgacaatctcatctccaggaatcggctggcagcagcgcgcgatgtggtgcatcaggttgccaacaccttcgactaccacgcgaccgttatctttactgcggttttgcggcgtgtagcttttttgctgaagttgcttcagcgcggcggcgtcctgctcttcggcactcggcttattaaattgcgattgcaggaagttcaccatctgattgagacggatatccccgccaccaatcgccgccagcaactcgtcgacatcattgaagttgtaacgcggcagcagatgtttttctgcttctttcaggctgatccccagatgttccagctcgtcgtcaaggatttgccgcccagccagaatgtttttgtcacggtcctgtttacggaaccaggcgtgaattttcgaacgcccacggctggttgtgacgtaaccgaggtttgggtttaaccagtcacggctggggttcggctgtttctgggtgataatttcaatctggtcgcccatctgcagctggtaggtgaacggcacaatgcgcccgccaatttttgccccgatgcagcggtgtccgacatcactgtggatgtggtaagcgaagtccagcggcgttgatcccgcaggcaaatcaacgacatcacctttcggcgtaaagacgtacacccggtcgtcaaagacctgactacgtacttcgtcgagcatttcgccggaatcagccatctcttcctgccacgcaatcagtttacgcagccaggcaatccggtcttcatgtcccgaacgtgcgccgccagcagccgcgccctctttatatttccagtgcgcagcaacacccaactctgcatcttcatgcatctgtttggtgcggatttggatctcaacggtttttccacccggccccagaaccacggtatgaatagactgataaccgtttggtttcgggttagcgacgtaatcgtcaaactcatccggcaggtggcgatagtgagtgtgcactatccccagtgcggcatagcaatcctgtaaacgctcggcgacaatacgtaccgcacgcacatcaaacagctcatcaaaggcgaggttctttttctgcattttacgccagatgctgtagatgtgtttcggacgaccatacacttccgctttaacgccttcagctttcatctcagcgcgcagatgaccaacgaactcttcgatgtagtgttcgcggtcgagacgccgttcatgcagcagtttggcaattcgtttgtattcggttggatggaggtaacggaagcagtaatcttccagttcccatttcagttgtccgattccgagacggttagccagcggtgcgtagatgttggtacactcttttgccgccagtacacgttcatcttccggcgcatcttttacttcgcgcagatgagcaatacgctccgccagtttgatgactacgcagcgaaaatcatcgaccatcgccaataacatccggcgaacgttatcgacctgttcggaggaaacagaatcagtgtgcgtcgctttcagctggcggatcgccgccatatcacgcacgccgtgaataaggttaacgaccgacttaccgacgctctcacgcagcacatcttcgctgactacgttggcatccgccagagggaaaagcagcgccgcccgcagcgtgtcaatgtccatacttaatgtcgagaggatctccaccatctcaacaccacgccacaataacagactggcatccggatgcccctgcgtctgttgcagacaatacgcccaggtttcggctaagcactcacacgacttctggctggtaatacccagacttgcgatccatttttccggatcaaattcaccagccttattgatatgtgcacttcttaccgcaaccatcgtcctctcctttagggaccagacctgccgaaatcggcaaatcgcaactatttaacgcgcgagaaaagtaccatcgattccagatgtcccgtgtgtgggaacatatccagcatcgccagtcgcgcaatggtatatcctgcttttaataacgcttcgctatcccgagccagcgttgcagggttacaggatacataaactatacgaataggttccagttttataatttgctgcataacacctgcggcacctgctcgcgccgggtccagcaacactttatcgaagccgtttttcgcccacggctgctttgtgacatcttcttcaagattttcgtgataaaacgtcacattctgtaagccattaagacgcgcattctgctggcctttttccaccagcgccggaacaccttctacaccgaccacactggcagcttgtgtcgccaatggcagtgtaaagttgcccataccgcagaacagatccagtacgcgatcttcaggttgcacatccagccattccaacgcacgcgctaccattttttggttcacacccgcattgacctgaataaaatcgcgcgggctaaaagttaagcgcaacccgtttgagtcataccagggcatctcaccagagacggtttcgagtatctcactatcgggggcgagatacagatccaggccttcagaatgcgaaaagcgttccagtttttcgcgatctgccgaacttagcggtgcggtatggcgcaaaatcatcagcgtgccgctggttgcctgtaccagttcaacatgaccaagatggcgcatagcttgtaagctgcccagacatgccctgactttgggcagcaatgcttcaagttggggcgctaaaatggggcattgtttgacgtcgacaatgtcactggagcccgctttgcgaaaccccatctgaagttgctgtgttttcggtaagtagttcagacttaaacgcgcgcgacggcgatagccccagggaacatcggcgatcacttcagagacatcgtgtttcattaatcgggcgagtgccgcacttttgcttcgctgctgtaaatccacgctggcgtgttgttgctgacagccaccgcatacgccaaaatgaggacagcgtggcgtttcgcgttccgggctatcgcttaaccggcgtacgactttagcgcgggcatactgttttttatcttcagtaacagtaacttccgcgttttcctgcggcaataatccggggataaatagcgttttgccgttatgtcgcgccacgccctgaccaaaagagtcgaggtcgttgactgaaacggttatgatctgacgcgtcgtcgtgcgtcgttttgcagagtagaattgcgccattggcgagactttctcaatttaacagtgtgaccttaattgtcccataacggaactccatgaccaactacagcctgcgcgcacgcatgatgattctgatcctggcaccgaccgtccttattggtttattgctgagtatctttttcgtcgtgcatcgctataacgacttgcagcgtcaactggaagatgccggtgccagcattattgagccgcttgcagtttctactgaatatggcatgagcctgcaaaatcgcgaatctatcggtcagttaataagcgtactgcatcgtcgccattccgatattgttcgcgcgatttcggtttatgatgaaaataaccgactctttgtcacctccaattttcatcttgatccctcatcaatgcagctcggcagcaacgtgccgtttcctcgccagctcactgtcactcgtgacggcgatattatgatcctccgcacgccgattatttctgagagttactcccccgacgaatcgcccagtagcgatgccaaaaatagtcaaaatatgttgggatatattgcgctggagctggatcttaaatcggttcgcttgcagcaatataaagagatctttatttccagcgtgatgatgctgttttgtatcggtattgcgcttatttttggctggcgcttaatgcgcgatgtaaccggtccgattcgcaacatggtgaataccgtcgaccgcatccgtcgcgggcaactcgacagccgggtggaaggatttatgctcggcgagctggatatgctgaaaaacggtatcaactcgatggcaatgtcgctggctgcttatcacgaagagatgcagcacaatatcgaccaggcgacgtccgatctgcgtgaaacgctggagcagatggaaattcagaacgttgagttagatctggcgaaaaagcgcgcccaggaagcggcgcgtattaaatccgagtttctggcaaatatgtcacacgagctgcgtacaccactgaatggtgttattggctttacccgcctgacgctgaaaacagaattaacaccaacgcagcgcgatcacctgaatacgattgaacgttcggcaaataatttgctggcaattattaatgatgttctcgacttctcgaaactggaagcaggtaagctgattctggaaagtattccattcccactacgcagcacgctggatgaagtcgttactctgctggcacattcttctcacgataaagggttagaactgacgctcaatattaaaagcgacgtgcctgataacgtgatcggcgacccgctgcgattacagcaaatcatcactaacctggtggggaatgcaattaaattcaccgagaatggcaacattgatattctggtagaaaaacgtgcgctgagtaataccaaagtgcagattgaagtgcagattcgggataccggcattggtattcctgaacgcgatcaatcgcgcttattccaggccttccgacaggctgatgccagtatttcccgccgtcatggtggcaccgggctggggctggtgattacacaaaaactggttaatgaaatgggcggcgatatttcgttccatagccagccgaatcgcggttcaactttctggttccacattaatctcgatctgaacccgaacattattatcgaagggccatccacccagtgcctcgcaggtaagcgcctggcctatgtcgaaccaaactccgcagcagcgcaatgcacgctggatattttaagtgaaacgccgctggaagtggtttatagcccaacgttctccgcgctgcctcccgcgcattacgacatgatgttgttaggcatcgcggtgaccttccgcgagccgctaacaatgcaacatgagcgattagcgaaagcggtatcgatgaccgatttcctgatgctggcacttccttgccatgcacaagtcaatgctgaaaaactcaagcaagatggtatcggcgcgtgtctgctgaaaccattaacacctacacgcctgttgcctgccctgacggaattttgtcatcacaaacaaaacacgcttttgcctgtaaccgatgaaagtaagctggcaatgacagtcatggcggttgatgacaaccccgctaacctgaaacttatcggcgcattgctggaagatatggtgcaacatgtggaactttgcgatagcgggcatcaggcggttgaacgggcgaaacagatgccgttcgatttgatcttaatggatattcaaatgccggacatggatggcattcgggcctgcgaactcatccaccaactcccgcatcagcaacaaacgccggttatcgcggtaacggcgcatgcaatggccgggcaaaaagagaagctgcttggcgcagggatgagcgattatctggcgaaaccgattgaagaagagcgattgcataatttgttgttgcgctacaagcctggcagcggtatttcctctcgcgtcgtgacgcccgaagtcaacgaaattgtggtgaacccgaatgcgaccctcgactggcaactggcactacgccaggcagcaggaaaaaccgatttagcgcgcgatatgctgcaaatgttactcgatttcctgcctgaagttcgcaacaaagttgaggaacagctggttggagaaaacccggaaggcctggttgatttgattcataaactgcatggcagttgcggctatagcggtgtgccacgtatgaagaatctctgccaactgatcgaacaacagctacgtagcggtactaaagaagaagatttggaaccggagctgctggaactgttggacgagatggataatgtcgcgcgcgaagccagcaaaattctcgggtaatggatgtcttgtcgagtagcaatcggctttttatgacgctggtttcagattggtgacaaagtgcctgtgtttatgccggatgcggcgttaacgccttatccggcctacaaaaccaattaaattcaatgaattaaaaaatgatgtagacctgatacatagcacaacaggctattttgcgtttagcatcagtctcaaaccggctccagatagagccggttttggttttctgtcttaacgcaccatgcacgggcgcttgttatcgaacgtccagccaggaatcagatactgcattcccatcgcatcgtcacgcgcgccaagcccgtgtttctgatacagctcatgggctttcatcacttgatccatatcgatttctacacccagccccggtttttctggcacctgtaccagcccgcctttgatctcaaacggttctttggtcaggcgctgattgccttcctgccaaatccagtgcgtatcaatagcagtaattttacccggtgcagcggcggcaacatgggtaaacatcgccagggaaatatcgaagtggttgttagagtgtgaaccccaggtcaggccaaattcatggcacatttgcgccacacgtaccgaaccttgcattgtccagaaatgcggatccgccagcgggatatcaacggattgcagggagagcgtatggcccatttgccgccagtcggtggcgatcatattggttgcagtcggtagacctgtcgcgcgacggaactctgccatcacttcacgcccggagaaaccttgctccgcaccacacggatcttctgcataagccagcgaacctttcaggtatttaccgattttaatcgcttcgttcagcgaccaggcaccgttaggatcgagcgtaatacgcgcctgcgggaagcgttgcgccagtgccacaatagactcggcctcttcttccccggccagtacaccgcccttcagtttgaaatcgttgaagccatatttttcatatgccgcttccgccaggcgcaccaccgcatccggcgtcatcgcttcttcatgacgcaggcgataccagtcgcatgagtcatccggctggctttgatacggcagcggcgtggctttgcgattaccgacgaagaacagataaccgagcatttcgacttcgctacgctgttgaccatcgcccagcagcgatgccacgtttacccccagatgctgccccagcagatccagcattgccgcttctatcccggtaactacatgaatagtggtacgtaggtcaaatgtctgcaaaccgcgcccaccagcatcacgatcggcaaaagtattacgcaccagcgtcagaacgtttttgtattcacccagcgttttacctaccaccagcggaatcgcatcttccagcgttttacggattttctcgccgccgggaatttcccctacgccagtgtgaccagaattatctttgataatcacaatattacgcgtaaagaacggtgcgtgtgcaccactcagattcatcagcatactgtcatgacccgccaccgggataacctgcatttcagtaacaacaggcgtcgtaaattgagaactcatatttatgtcctttttcagaatcaatgacggccgaaaacgggacgtttacggtcaaaggtccagccggggatcaggtactgcatcggacctgcgtcgttacgcgcaccgccaggcagacgtttataggcctcatgtgccttttgtacctgttcccagtccagttccacgcccagaccgggcgcatcaggaacggcaatttttccgtttttaatctccagcggattttgggtcaggcgacaatcgccctcctgccaaatccagtgggtatcgatagcggtaggattacccggtgccgccgcgcccacatgggtaaacatcgccagagagatatcgaaatggttattagaatggcagccccaggtcagcccccagtcgtcgcaaagctgcgccacacggactgcaccggaaagcgtccagaagtgcggatcggcaagtggaatatctaccgcattgagcatcaccgcatgacccatttcgcgccagttggtggcgatcatgttagtcgcgacgggcaagccggtcgcccgtcgaaattccgccatcacttcacgtccggagaagccctgttctgcgccgcatggatcttcggcataggtaagaacatcattcagccctttgcataaagaaatggcttcatcaagcagccatgcaccgttgggatcaacggtaatccgcgcatccgggaagcgtttcttcaatgcacgaacagtgtcgatttcttgctcgccaggtaacacgccgcccttaagtttgaaatctttaaagccgtagcgatcctgtgaggcttccgccagacgcacaacggcttcgctgttcattgctttctgatgccgcaactgataccactcatggttgcccggcgtattttccacataaggaagatcggttttggtccgatcaccgatataaaacagataaccgaggacggtaatagcctcgcgttgcttgcctggccctaacagttcgcagaccggaacattcagcgccttacctagcaggtcaagcaaagcggcttccagcgccgccacggcgttaacgcgtaattcaaaggtccaggcacctttaccgaaggtatcaaaatcggcggcctgattacctttatgcacctgctggaccactttattcagtcgcgcaacttcctggcccagaaccatcggaatagcatcgacaagcgtctgataaatcacatctccgcccggcgcttcaccaatgccggtatgcccggcgttatcggtgagtaccacaatattgcgggtgaaatatgcgttatgtgccccaccaatattaagcaacatgctgtcatgcccggccaccggaatgactttcatatcagtaataacaggactggattgtgtcgccatcttattgccccgcaacaggtttcaactcgatacgcttgatatcgcccaccagcaccaggtagctcagtaccgcgattaaggcatgaacaccaacataaatcagcgccccattaaacgagccagtcgtgccaacgatataaccaattgcgattggcgtgacgatgccagaaatgttaccgaacatgttgaacaggccaccggaaagaccgctgatctcttttggcgcggtatctgccattactgcccaacccagcgccccgatgcccttaccgaagaaggccagcgccataaagccgatgatcatccactcaacgttgacgtagttgcagaacaccatcaccatcgacagcaacatgcccattacgatcggtgttttacgcgcaatgttcagcgatcccgtgcggcgcatcagccagtcggaaataatcccacccagcacaccgccgataaaaccgcaaaccgccggaacggaagccacaaagcccgctttcagaatcgacatcccgcgtgcctgcaccagataaaccgggaaccaggtaataaagaagtaagtcagggcgttgatacagtactgaccgatataaacgccgatcatcatccgtgaccctagcagctgtttgatctgcccccacttcacgctgaacggcactttaactttggtgttttgctgatccatattgatcagcgcaccacccgcggcgatgtactccagctctttcttatttacccccggatgttgatttggctcgtggatgactttcaaccagataaagctgatgacaatccccagaccgcccataaagaagaagacgtgtgaccagcccacttcatgcgtcagccagcccataatcggcgcgaagatcaccgttgcgaagtattgagcggagttaaaaatcgacaccgccgttcccctttcctgcgccggaaaccaggccgcaacaatgcgactgttgccggggaaagatggcgcttcagcaagcccgaccaggaagcgcagcgtaaacagggcaacgataatgccgaatccactaaagatatcgacgaagccttgcagcaaggtaaacatcgaccagataaagatcgaccagaagtagacgcgttttgaaccaaaacggtccagcaaccagccaccagggatctgcccgataacataagcccatgagaaagcagagaacacatagcccattcccacgggatcaaggccgatatctttggccatttccgaaccggcgatagagagcgtagcgcggtcgccgtagttgaaggatgtgacgataaacaacatcaccactatccagtaacgagcatttgtgcgtttttccacactgctcgcagcctgacttaaagaactcattgttgcactcctgaaaattcgcgttagccacgctcactctggactgcgacatcgccaggaaatcagaggtgacgtagggtgttttttgccgtttttataggtcgttcgccgaatacggcgcgtgtttatatctggcaatagcagtataaaaagcgcgccatagcggctcaccgtgcaacaacacaacattaatgcgttcaatgaggcccgattttggcattagccctggacggtggaatccacttcacggaaatgaaaacaagaacaagaaaggaagggttaaaacgaagaaataaagaagagtatgaaatggatcgcttgactccaggcaaacgccagtaaaaatccgcgctatgaagcagtttttactggcatttgcctgaaaagattcgattcagcaccgctaaaacgacatttaccgctcgctgaacatatcaggacaacagcgtgccccactgttcgacccacggatttgattccgtttccggttccgggttctcactggcgtcaatcaacagcatttcgccaacccgctgagcgctctgttcctgcaacaaggcatcgaactgtttgccgccattgcagaaattcacataactactgtcgccgagcgcaatcacgccataacgcagattcggctggaagcccagactatctttgattccctgaaagagtggcacaatgctatcaggaaggtcgccctgcccggtcgtggacgtaaccaccagaacatacttatcctgatagggcagccagtcgcttaattcaggatcttcaaataccgttgctttgtggccctgcgcggtcagaatcgcttccgcttcttcggccactaacagtgaattcccgtacatggtgccgacaaaaataccaatttccgccataccgttttctccctggattaggaacttatctctccatcctgacccgatggcgcactgaactcaaccctttcattttcaggaagcagaccgcgccagccaaattgtgataacgcctgcatccaggtgtcgtccaggcccgcgtgaatagtcagcggctcgccagtaaaaggatgcgtcaatgacaactgactggcatgtagcattaaccgctggaggccaaaatgctcagcaccgctgcgattctggcgtaaatcgccatgtttgctatcgccaataatcggatgacgcaaatgggcaagatgtcggcgaagctgatgtttgcgtccggttttcggctccagttccaccaggccgtagcgcgtggtcgggtaacgtccggtcgctaccggcatttctacggtcgccagaccgcgataatgcgtcactgctggctgcgggcctttatcttcgcgggcaaatttatcagcgattttgtccagttcttccaccagtggataatccagcaccgcttcttccatcaaccagccgcgcacaatcgcatggtaacgtttctggatttggtgctgttcaaactgttgtgccagcagccgtccggcctcgctggataatcccatcaacaacacaccagaagtgggtcggtccagacgatgagcagtaaaaacatgctggcctatctggtcacgcacggtttgcatgaccactactttctcgtcgcgatccagccagctgcggtgaaccagccagccggagggtttatttaccgcaaccagccattcatcctgatagagtatttccagcattagctcgcatcatccgcaaaaagagcatccagtttttccagctcagccagaataagcgcgcgttgcggatggtccgtcgccagcgccatttcataatagggtgcaacggcaaaagcgcccggtaacggctgtttgttatctaacaaatcgtgcattcgcgggatcagcacccactgcaaccactccagtggttccatggtgtccataaagaacggttgggtactattaaattgatgcggctggggttcatcgtttcgccagtgctgatgttcacgcagtaacgcttcaagcgcctgcaactggagacgaacgcggtcatgagtggtcataaagcaacctcaataagaaaaactgccgcgaaggatagcaggaataaaaaaagggagcactgtattcacagcgctcccggttcgtttcgcagcattccagctacttttgttgctccctgctcatccttgacaacttttcctctggccttgcggccaatcgttcatcctgaactattgcttcctgctcacaccaccccgatgtgatacttcatcctgaagtgtccctggccttcctgacccaccgaatcatcctgaccggttctcattctccatcctggaggtgtcctttaacgcgtcctgcgtcatcctcttcgcttcatccagaagcctttccctgaaacaccatcctggtgtgtcctgcagaagtgtcatcatcctgatgttcacttcgttgtctgactccctgtcgacgaagatagaatcgtctttttcgcgaagtcttacaaggcgcttacagacaatgccttaaggaaaatttcatatgaaagttaagaattaacaatcaacattttgattttaaatgaaaataacgattcttatctttttaagtattcgcttatttcctggcgatctcctacagagtctgtaagagatctctcacaaccagatggggtatttggattacagaagaggcttaagttgattaaggaattccgcaagatttgaggctaaatgcgtccgtttacgtgttcccagcgtctctttgcacacttcaccggagagattacacaccgagatgacctctaactcttcttccagcgtcgcgataaatagtgtgggcggcagttttagccttttctgagtcaccagatgaccaatcagattttcctgcacccgacggaagtcgtcttcactccaggtttgcagcaatgtcagtttgatatcgccaaactgcgcgtgcatatccccggcaaactgagtcgtataaaaggtatgaattgtgggttgtatcacaatatcaaaagcgcgttcaaccgcgtttacattttgttccccggtaaacggctggggttgccagtatacggcatcttcggtagttgaaataatgcacggtgaaggaacaccgtacagttcctcacttaacggccagcttttatgctcttcatgccacgcatcgcagtagcgtgcagtaaaatctttcagggcttgtgcggtcaaatcgtccactaatttctctcttcacttaaaccagatacacttgtcgtttagtttatctggtttatgacggtgaaacatgtcttcttatgcaaaccatcaggcacttgcgggcctgactcttggaaaatcaaccgattaccgggatacctatgacgccagcctactgcaaggcgttccacgcagcctgaatcgcgacccgctgggtctgaaagcggataacctgccttttcacggtacggatatctggacgctgtatgaactttcctggctgaatgcgaaaggtttgccgcaggtcgctgtcggtcatgttgaacttgattacaccagcgtaaatctgattgagtcgaagagttttaagctctatctcaacagttttaaccagacgcgttttaataactgggatgaggtgcgccagacgctggagcgcgacttaagcacttgcgctcagggtaagattagcgtggcgttatatcgtcttgatgaactggaaggccagccgataggtcattttaatggcacttgcattgatgaccaggatatcactatcgataactatgaattcactactgactatctggagaatgccacctgtggtgaaaaagtagtggaagagacgcttgtcagccacctgctgaaatcaaactgcctgatcacccatcaaccagattggggttcgctccaaattcagtatcgtggacgccaaattgacagagaaaaactgctgcgttacctggtctcattccgtcatcacaacgagttccacgaacagtgcgtggaacgcatctttaatgacctgttacgcttctgccagccagaaaaattgagcgtttacgcacgttatacccgtcgtggcggtctggacattaacccgtggcgcagtaatagcgattttgtcccatcgaccacaagactggttcggcaataaattttttctcaattttgcgtgctggattcacgcagaaggttgtgaaaggtcatcaggcagggctattgtaatcaaagggaatgacgatattcgtcccataaggagtttttcttgattacacatattagcccgcttggctccatggatatgttgtcgcagctggaagtggatatgcttaaacgcaccgccagcagcgacctctatcaactgtttcgcaactgttcacttgccgtactgaactccggtagtttgaccgataacagcaaagaattgctgtctcgttttgaaaatttcgatattaacgtcttgcgccgtgaacgcggcgtaaagctggaactgattaatcccccggaagaggcttttgtcgatgggcgaattattcgcgctttgcaggccaacttgttcgcggtcctgcgtgacattctcttcgtttacgggcaaatccataacaccgttcgttttcccaacctgaatctcgacaactccgtccacatcactaacctggtcttttccatcttgcgtaacgctcgcgcgctgcatgtgggtgaagcgccaaatatggtggtctgctggggcggtcactcaattaacgaaaacgagtatttgtatgcccgtcgcgtcggaaaccagctgggcctgcgtgagctgaatatctgcaccggctgtggtccgggagcgatggaagcgccgatgaaaggtgctgcggtcggacacgcgcagcagcgttacaaagacagtcgttttattggtatgacagagccgtcgattatcgccgctgaaccgcctaacccgctggtcaacgaattgatcatcatgccagatatcgaaaaacgtctggaagcgtttgtccgtatcgctcacggtatcattatcttccctggcggtgtgggtacggcagaagagttgctctatttgctgggaattttaatgaacccggccaacaaagatcaggttttaccattgatcctcaccggcccgaaagagagcgccgactacttccgcgtactggacgagtttgtcgtgcatacgctgggtgaaaacgcgcgccgccattaccgcatcatcattgatgacgccgctgaagtcgctcgtcagatgaaaaaatcgatgccgctggtgaaagaaaatcgccgtgatacaggcgatgcctacagctttaactggtcaatgcgcattgcgccagatttgcaaatgccgtttgagccgtctcacgagaatatggctaatctgaagctttacccggatcaacctgttgaagtgctggctgccgacctgcgccgtgcgttctccggtattgtggcgggtaacgtaaaagaagtcggtattcgcgccattgaagagtttggtccttacaaaatcaacggcgataaagagattatgcgtcgtatggacgacctgctacagggttttgttgcccagcatcgtatgaagttgccaggctcagcctacatcccttgctacgaaatctgcacgtaatctccgctcccccggtgacgtttgttgccgggttttctcgtttttggtcacttactcatcaactcatttcatttgttatatgaatgtttcttaccaccctcacgcgacaaatatcatcacagttaatatgtcatacaatttatgttgcaacgcaaacgtttccctattttcataaaccgtattttatcgctatgaaaaagaaattatcgccatgattaactaaaagtattgattttttcagttcaacctacatatattgcgcgccccggaagaagtcagatgtcgtttaatgggcaaatattgcccttaaattctcttttacttttgatttacagagtaaagcgttgggataatctatcttccaagtagattattgtatttgagatcaagatcactgatagatacataacttgtgtgtatctttccgccctcaaattattacggcggtaaatgattaagccatcgccgatagacagatttcatttttacggtcaggcaccttcccgggctgaactggctaaaagctgaattatttgcattcctccaggagaaatagatggaaacgactcaaaccagcacgattgcgtcgaaagactctcgtagtgcctggcgcaagacagacaccatgtggatgctgggcctttacggcacggcaatcggcgcgggcgtgctgttcctgccaatcaacgccggtgttggcggtatgatcccgctgatcatcatggctatccttgcgttcccgatgacgttttttgctcaccgcggcctgactcgcttcgtactgtctggtaaaaacccgggcgaagacatcaccgaggttgtagaagaacactttggtattggcgcaggtaaactgattaccctgctctacttcttcgctatctacccgatcctgctggtttatagcgtggcaatcaccaataccgttgaaagcttcatgtctcaccagctgggtatgacgccaccgccgcgtgcgattctgtcgctgatcctgatcgtgggtatgatgaccatcgttcgcttcggtgagcagatgatcgttaaagcgatgagtattctggtattcccgtttgttggcgtactgatgctgctggctctgtacctgatcccgcagtggaacggcgctgcactggaaacgctgtctctggacactgcatctgcaaccggaaacggtctgtggatgaccctgtggctggcaattccggtaatggtgttctcgttcaaccactctccgatcatctcttctttcgccgttgcgaagcgtgaagagtacggcgatatggcagaacagaaatgctcgaagatcctggcattcgcacacatcatgatggtgctgaccgtaatgttcttcgtcttcagctgtgtactgagcctgactccggcagacctggctgcggctaaagagcagaacatctcgattctgtcttacctggctaaccactttaacgcaccggttatcgcgtggatggctccgattatcgcgattatcgctatcaccaaatccttcctcggtcactacctgggcgcacgtgaaggcttcaacggtatggtgattaaatctctgcgtggtaaaggtaagtctatcgaaatcaacaagctgaaccgtatcactgcgctgttcatgctggtaacgacctggattgttgccaccctgaacccgagcatcctgggtatgattgaaaccctgggcggtccaatcatcgcgatgatcctgttcctgatgccgatgtacgcaattcagaaagtaccggcaatgcgtaagtacagcggtcacatcagcaacgtattcgttgtcgtgatgggtctgattgcaatctccgcaatcttctactctctgttcagctaagtcctttcgcgccgctttcgggcggcgcttcctccgttttaacgcgatgtatttcctatgattagcgtattcgatattttcaaaatcggcattggcccttccagttctcataccgttggaccaatgaaagcgggtaaacaatttaccgacgatctgattgcccgtaacctgcttaaagacgtgacccgcgtggtggttgacgtgtacggctcgctctctctgaccggtaaaggccaccacactgatatcgccattattatgggcctggcgggtaacctgccggataccgtggatatcgattccatccccagttttattcaggatgtgaatactcatggtcgcctgatgctggcaaacggtcagcatgaagtggagttcccggttgatcagtgcatgaacttccacgccgacaacctttctctgcatgaaaacggtatgcgcattaccgcgctggcgggcgataaagtcgtttacagccagacttactactctattggcggtggctttatcgttgatgaagagcattttggccagcaggatagcgcaccggttgaagttccttatccgtacagttcagcagccgatctgcaaaaacattgtcaggaaaccgggctgtcactctctggcctgatgatgaaaaacgagctggcgctgcacagcaaagaagagctggaacagcacctggcgaacgtctgggaagtcatgcgcggcggtattgagcgcggtatttccaccgaaggcgtgttgcctggcaaactgcgcgttccacgccgtgctgcggcactacgccggatgctggtcagccaggataaaaccaccactgacccgatggcggttgttgactggatcaacatgtttgcactggcagtgaacgaagagaacgctgctggcggtcgcgtggtgactgcgccgactaacggtgcgtgcgggattatcccggcagttctggcgtactacgacaagtttatccgcgaagtgaacgctaactcactggctcgttacctgctggtagccagcgccattggttctctttataagatgaacgcgtcgatttctggtgctgaagtgggttgccagggtgaagttggcgtggcgtgctcaatggcggcggctggtctggcagaactattaggcgcaagcccggcgcaggtgtgcatcgcggcggaaatcgccatggagcacaacctcggtctgacgtgtgacccggtcgccggacaggtacaggtgccatgcatcgagcgtaacgccattgcggcagtaaaagcggtgaacgccgcacgtatggcgctgcgccgtaccagcgagccgcgcgtctgcctcgataaagttatcgaaaccatgtacgaaacaggtaaagatatgaacgccaagtaccgcgaaacctctcgcggcggcctggcaatgaagatcgttgcctgcgattaatcgctctccaaaggcctcgttttgcgaggcctcttcccgatttctcatccagccgtagcctgttccggcatcgaatgttacccttatcgcctgatctttaagggggttatcgtggctgttcatttgcttattgtcgatgcactgaatcttattcgtcgcattcatgccgttcaggggtcgccctgtgtcgaaacctgccagcatgcgctcgatcagctcattatgcacagccagccaacccacgcggtcgccgtttttgatgatgaaaaccgcagtagcggctggcgtcatcagcgtttaccagattacaaagcgggtcgaccgccaatgccggaagagttgcacgacgagatgcctgcattacgcgccgcctttgagcaacgcggcgtcccgtgctggtcaaccagcggcaacgaagccgatgacttagccgccacgctggcggtcaaagtgacacaggccgggcatcaggcaacgattgtttcgacagataaaggctactgtcagttactttcaccgacattacgtattcgtgattacttccagaaacgttggctggatgcgccatttatcgataaagaatttggcgttcaaccgcagcagttgcccgattactggggacttgcggggatcagcagttcaaaggtaccgggtgttgcgggaatcggaccaaaaagcgccacgcagctgctggtcgagtttcagagtctggaagggatatatgagaatctggatgcggttgccgaaaagtggcgcaaaaaattagaaacccataaagagatggcgtttctgtgccgcgatattgcccgcttacaaaccgatttgcatatcgacggcaatttacagcaattgcggttggtacggtaacggcgagccggatacgccgcaaacgtcgtatccggcattatcacatcagcgcatttaccaggcggtatggtaaagctctacaatatcctcaagcgttgcttcacgcgggttgccaccggtacaaacatcatccagtgccgcctgcgccagtgccggaatgtcttccttgcgtacaccaacatcacgcaaatgtggcggaataccgacatcacggttgagagcaaacaccgcttcaacagcggcattacgcgcctcttccaggctcataccttccactttcacgcccataacgcgcgcgatatcgcggtacttctcaccggtaaagtcagcgttataacgcatgacatgcggtaacaggatggcgttcgcaacaccgtgtggagtgttataaaacgcgcccagtggatgcgccataccatgcaccaaccctaacccaacattcgagaagcccatacccgcaacatactgcccgagcgccatttcttctccggcatccttatcaccagcaaccgatcctcgcagcgccccagcaatgatttcaatcgctttaatgtgcagtgcatcggttagcgcccacgcgccacgggtaatatacccctcaatagcatgagtgagcgcatcgacacccgtcgcagctttcagcgctggaggcataccatccatcatgtcagcgtcaataaacgccacctgcgggatatcatgcggatcaacgcaaacaaacttgcgccgtttctcttcgtcagtgatcacgtagttaatggtcacttctgccgcagtacctgctgtggtaggaattgccagaatcggtacactgggtttattggtcggggaaagcccttccaggctacgcacatcggcaaactccgggttgttgctgataatgccaatcgctttacaagtatcctgtggagaaccaccaccaatagcgatcaggtaatccgcgccgctattctggaatacaccgagcccttctttgacgacagtaattgttgggttgggcactacgccgtcgtaaatcgcccatgccagccctgcagcatccatcttatcggtcactttcgccaccacgccgcattgcaccagcgttttatcggtgacgatcagcgccttctgataaccacggcgtttcacctcatcggttaaagccccaacagcaccccgaccaaaccatgccgtttcgttcagaatcattctgttagccatcatccttctccttgttgctttacgaaattactcttcaattcgtaacccataggttttgaatttctccagcactacggcaatctcttcatcgctcagcactggcaccgggtccgtaatcgccagggtcgtcaggtaaagttgcgccagcacttcaacttcatgcgccagccataacgctttttccagattcacctcacaagcgataagcccatgatgttgtaacaaagttgccttacgatttttgagagccagcgcaacatgttcagaaagttcgcgtgttccaaaggtcgcataaggcgcgcaaggaatagaattaccgccagccgccgcaatcatgtagtgaatagcggggatcgatcggttaagaatggaaactgccgtgcaatgaacggcatgattgtgaacaaccgcgttggcatccggtctgctttgataggctgccatatggaaacgccattcgcttgaggggagctttccttcctcatgtttaccgttgccatcaataaagacaatatgcgactccgtcagtttttcatatggaatgcctgtaggcgtaatcagcatcccatcctgataacgtacactgacgttccccgctgtcccctggttcagtcccaggcgggtcatttccaggcaagtgtcaataatctgacgagcaagtttatttcgttccattagctacctctctctgattcaaaacagggcaataatgttgttcctttcacactattgaattagccgtttaattacccaccatcttcttcctgattaacaagaaagaaattcacaagcttatattttgtgacctggttcaactaatcacagtaaataactgcaagttctctttttataaccccattaaaaatgaccgctcttaaaaatatttatcaaaacggtcatttttctattcctccaagcccggaatgaccgttttcggcacaaacaattaatacggtcatctgatttgtgttttttatgatttattttctgaaacgggcatgaaatttcgattattaaagtgatggtagtcacataaagtcaccttctagctaataagtgtgaccgccgtcatattacagagcgttttttatttgaaaatgaatccatgagttcatttcagacaggcaaatattcactgatatgaagcccgaactcgctggttttgcacttttgaaaacataaccgattacgtgcttaagcttctgaacctaagaggatgctatgggaaacacatcaatacaaacgcagagttaccgtgcggtagataaagatgcagggcaaagcagaagttacattattccattcgcgctgctgtgctcactgttttttctttgggcggtagccaataaccttaacgacattttattacctcaattccagcaggcttttacgctgacaaatttccaggctggcctgatccaatcggccttttactttggttatttcattatcccaatccctgctgggatattgatgaaaaaactcagttataaagcagggattattaccgggttatttttatatgccttgggtgctgcattattctggcccgccgcagaaataatgaactacaccttgtttttagttggcctatttattattgcagccggattaggttgtctggaaactgccgcaaacccttttgttacggtattagggccggaaagtagtggtcacttccgcttaaatcttgcgcaaacatttaactcgtttggcgcaattatcgcggttgtctttgggcaaagtcttattttgtctaacgtgccacatcaatcgcaagacgttctcgataaaatgtctccagagcaattgagtgcgtataaacacagcctggtattatcggtacagacaccttatatgatcatcgtggctatcgtgttactggtcgccctgctgatcatgctgacgaaattcccggcattgcagagtgataatcacagtgacgccaaacaaggatcgttctccgcatcgctttctcgcctggcgcgtattcgccactggcgctgggcggtattagcgcaattctgctatgtcggcgcacaaacggcctgctggagctatttgattcgctacgctgtagaagaaattccaggtatgactgcaggctttgccgctaactatttaaccggaaccatggtgtgcttctttattggtcgtttcaccggtacctggctcatcagtcgcttcgcaccacacaaagtcctggccgcctacgcattaatcgctatggcactgtgcctgatctcagccttcgctggcggtcatgtgggcttaatagccctgactttatgcagcgcctttatgtcgattcagtacccaacaatcttctcgctgggcattaagaatctcggccaggacaccaaatatggttcgtccttcatcgttatgaccattattggcggcggtattgtcactccggtcatgggttttgtcagtgacgcggcgggcaacatccccactgctgaactgatccccgcactctgcttcgcggtcatctttatctttgcccgtttccgttctcaaacggcaactaactgaacatattttccgaataaagtgaggaatctgtaatgaaaaaaatcagcttaccgaaaattggtatccgcccggttattgacggtcgtcgcatgggtgttcgtgagtcgcttgaagaacaaacaatgaatatggcgaaagctacggccgcactgctgaccgagaaactgcgccatgcctgcggagctgccgtcgagtgtgtcatttccgatacctgtatcgcgggtatggctgaagccgctgcttgcgaagaaaaattcagcagtcagaatgtaggcctcaccattacggtaacgccttgctggtgctatggcagtgaaaccatcgacatggatccaacccgcccgaaggccatttggggctttaacggcactgaacgccccggcgctgtttacctggcagcggctctggcagctcacagccagaaaggcatcccagcattctccatttacggtcatgacgttcaggatgccgatgacacatcgattcctgccgatgttgaagaaaaactgctgcgctttgcccgcgccggtttggccgtcgccagcatgaaaggtaaaagctatctgtcgctgggcggcgtttcgatgggtatcgccggttccattgttgatcacaacttctttgaatcctggctgggaatgaaagtccaggcggtggatatgaccgaactgcgtcgccgtatcgatcagaagatttacgacgaagccgaattggaaatggcactggcctgggctgataaaaacttccgctatggcgaagatgaaaataacaaacagtatcaacgtaatgccgagcaaagccgcgcagttctgcgcgaaagtttactgatggcgatgtgtatccgcgacatgatgcaaggcaacagcaaactggccgatattggtcgcgtggaagaatcacttggctacaacgccatcgctgcgggcttccaggggcaacgtcactggaccgatcaatatcccaatggtgacaccgccgaagcgatcctcaacagttcatttgactggaatggcgtgcgcgaaccctttgtcgtggcgaccgaaaacgacagtcttaacggcgtggcaatgctaatgggtcaccagctcaccggcaccgctcaggtatttgccgatgtgcgtacctactggtcaccagaagcaattgagcgtgtaacggggcataaactggatggactggcagaacacggcatcatccatttgatcaactccggttctgctgcgctggacggttcctgtaaacaacgcgacagcgaaggtaacccgacgatgaagccacactgggaaatctctcagcaagaggctgacgcttgcctcgccgctaccgaatggtgcccggcgatccacgaatacttccgtggcggcggttactcttcccgcttccttaccgaaggcggcgtcccgttcaccatgactcgtgtcaacatcatcaaaggcctgggaccggtactgcaaatcgcggaaggctggagcgtggaattgccgaaggatgtgcatgacatcctcaacaaacgcaccaactcaacctggccaaccacctggtttgcaccgcgcctcaccggtaaagggccgtttacggatgtgtactcggtaatggcgaactggggcgctaaccatggggttctgaccatcggccacgttggcgcagactttatcactctcgcctccatgctgcgtatcccggtatgtatgcacaacgttgaagagaccaaagtgtatcgtccttctgcctgggctgcgcacggcatggatattgaaggccaggattaccgcgcttgccagaactacggtccgttgtacaagcgttaatacattactccctgatgtgatgcccggtcgctccggctaccgggcctgaacaagcaagagtggttagccggataagcaatgttatccggctatattgcaggagcgattatgaaacaagaagttatcctggtactcgactgtggcgcgaccaatgtcagggccatcgcggttaatcggcagggcaaaattgttgcccgcgcctcaacgcctaatgccagcgatatcgcgatggaaaacaacacctggcaccagtggtctttagacgccattttgcaacgctttgctgattgctgtcggcaaatcaatagtgaactgactgaatgccacatccgcggtatcgccgtcaccacctttggtgtggatggcgctctggtagataagcaaggcaatctgctctatccgattattagctggaaatgtccgcgaacagcagcggttatggacaatattgaacggttaatctccgcacagcggttgcaggctatttctggcgtcggagcctttagtttcaatacgttatataagttggtgtggttgaaagaaaatcatccacaactgctggaacgcgcgcacgcctggctctttatttcgtcgctgattaaccaccgtttaaccggcgaattcactactgatatcacgatggccggaaccagccagatgctggatatccagcaacgcgatttcagtccgcaaattttacaagccaccggtattccacgccgactcttccctcgtctggtggaagcgggtgaacagattggtacgctacagaacagcgccgcagcaatgctcggcttacccgttggcataccggtgatttccgcaggtcacgatacccagttcgccctttttggcgctggtgctgaacaaaatgaacccgtgctctcttccggtacatgggaaattttaatggttcgcagcgcccaggttgatacttcgctgttaagtcagtacgccggttccacctgcgaactggatagccaggcagggttgtataacccaggtatgcaatggctggcatccggcgtgctggaatgggtgagaaaactgttctggacggctgaaacaccctggcaaatgttgattgaagaagctcgtctgatcgcgcctggcgcggatggcgtaaaaatgcagtgtgatttattgtcgtgtcagaacgctggctggcaaggagtgacgcttaataccacgcgggggcatttctatcgcgcggcgctggaagggttaactgcgcaattacagcgcaatctacagatgctggaaaaaatcgggcactttaaggcctctgaattattgttagtcggtggaggaagtcgcaacacattgtggaatcagattaaagccaatatgcttgatattccggtaaaagttctcgacgacgccgaaacgaccgtcgcaggagctgcgctgttcggttggtatggcgtaggggaatttaacagcccggaagaagcccgcgcacagattcattatcagtaccgttatttctacccgcaaactgaacctgaatttatagaggaagtgtgaaatgctgaaaacaatttcgccgttaatttctcccgaactattgaaagtgctggcagagatgggacatggagatgaaattattttttccgatgctcactttcccgcccattcgatgggaccgcaggtgatccgcgctgatggcctgttggtgagcgacttgctccaggcgattatcccgttatttgaactggacagttatgcaccgccgctggtgatgatggcggcggtagaaggtgacactctcgatcctgaagtagaacgacgttaccgtaatgcgctttcactacaagccccgtgtcctgacatcatccgcatcaatcgttttgcgttttatgaacgggcgcaaaaagcctttgcgatcgttatcacaggcgaacgagcgaagtacgggaatattcttttaaaaaaaggggtaacaccgtaatctcataccggtacgcccgcatgacgcgggcggttatcgaatgatggggtgaaaaatatgaaagcggcacgccagcaagcgatagtcgacctgctgctgaaccataccagcctgaccacggaagctctctctgaacagctaaaggtcagtaaagaaaccattcgtcgcgatctcaatgaattacagacgcagggtaaaattctgcgcaatcatggacgcgctaaatatatccaccgtcaaaatcaagacagtggcgatccctttcacatcaggctgaaaagccattatgcgcataaagcagatatcgcgcgcgaggcgctcgcgtggattgaagaagggatggtgatagccttagacgccagttcaacttgctggtatctggcacgccagttgcctgacatcaacattcaggtcttcaccaatagccatccgatttgccatgaactcggtaaacgcgaacgcattcaactgatcagttccggcggcacacttgagcgcaaatatggctgttacgtcaatccctcgctgatttcccaacttaaatcgctggaaatcgatctgtttattttttcttgtgaagggatcgatagcagcggcgcactgtgggactccaatgcgatcaacgctgattacaaatcgatgctattaaaacgtgccgcgcaatcgttgttattgattgataaaagtaaatttaatcgttcaggggaagcccgcatcgggcatctggatgaggtaacgcacattatttctgatgagcgccaggttgcaacttctttggtaacagcctgacggaaagggtagcaggccggagacgacgccccggccttgcctgttatcgctcgtcgcgacgaccacccaccgcagcccagatgcggcggacgtgcaccgtcacttcttcgcgatcgtgatacaactgccgcgcctgaatctgagcatttatgccatgttcatcaagctgtgcctgaatatacgccagattgtgtgacacttcttcgtagcgttttttcatcggcagtttgaggttgaaaatggtttcacggcaccagccattaaccagccactgcgccatcaatgccgcaactttcgccggtttttcaaccatatcgcataccatccaggagatattgctgcgcgtcggacggaatttgaaaccgtcttcccgcagccacgtcacctgtccggtatccatcagactttgcgccatcgggccgttgtcgacggaataaacccacatgttgcgcttcaccagttggtaggtccagccgccagggcaagcgcctaaatccaccgcccacatcccgttcgccaggcgttcatcccactcatccgcaggaataaacacatgaaatgcctcttccagtttgagcgtggaacgactcggcgcatctgccggaaatttcaggcgcggaatgcccatatagaacggcgaattattgttgctgtatgagtaaccggtatagcagcagcctggtgcaataaagaatacatgcacaaccggacgcttcggcgtttcatagttcgccagcaccccggcatcgcgcaaggcagcgcgtagcggaacagtaaatttacggcagaatttcagtaactctttgctttcgttggtatcggcaacttcaacacgcagttcaccgcccttctctactacgccctgtaacatgccgacaatgggggtaatacgatcttctggcggcaaatgctgcaggagttcccccaccacaaaccactggcgggcaaaaattaatgaactgaacggcagctcacggattaacttatcgccatcatcaggttgataacattcataaatgacataacccgcattctctttcacgcgggcaaaaccgaaaatttcccgctggccggctttatcggtaatttctgcggcgcactctttttcaaagcccggacggcacagcaatacaaccttattcatgacttacgcccttgcgctttaaacggatagcaccaactaacattaacgcccagcccgcgaggaagctcacgccgccaaccggagtgacaaacgcccacaaacgcagatgggacagcgccaggcaataaaggctgccgctgaacaacaccgtgcctaacgcgaggaaaacgctactccagtaaaaccagatactgatgcgacgctgcattgccaccgccagacctaagatcgccagcgtatgaaacgcctggtattcgaggccggtctggatccagcccatctcaacggcccccatggttttacttaacacatgcgcgccaaaagcgcccagagccacaaaaatgaagccgctaatggcggcgaaaatcagcataaaacggctggtcatggtcgtaccctacgtaaattattgttcataacgaaagcggaatttttcttgttcagcagcggctttcgccaggatccattggcgaaaggcggctattttacccagttctgcctgactgtcatgacaaaccagataaaaagcatttttactgaccagaacatcattaaacgggcaaacaagacgtccggcctcgatttcagattgcgccatcacgttatttgccagcgccactccctgcccgtggatagccgcttgcagcaccatggcgctatggctaaaaattggcccttgctgaacgttgatatgatttaaccccaactgtcgggtatatgtctgccagtcacggcgcgaagcatcatgtaataacgtatgtttagccagatcttccggtgtcttcaagggtttttcgccagtcagcagtagcggcgaacacaccggcaataaatattcggcgtacagtttttccacccgtagccccggccagttgccccgaccataaaatatcgccacatcaacatcatccgccagcttatcttcctgacgatcaaccgcctggattcgaacgtcaattcccggataagctgaattaaagctggaaagtcgcggaaccaaccaatgaatggcgaaactggggagtaaactgaccgtcaacgcccccttggcgctacgggcctggagtttacgcgtcgcttcggttaattgcgaaaatatctctttgatatcgaggaaatagctttgcccttcctcggtcagcaggagtgaacgattacggcggcggaacagttttagccccaaaaaatcctcaagagacttgatttgatgacttactgcggcttgggtcacaaaaagctcttctgctgcgcgagtgaaacttaaatggcgtgctgcggcatcaaaaactcgtaaggcatttagcggtggtaatcgtttagacatggctattaaactttgatgttaaatgaatttaacaattagatcacactatgtaacctattagtttttttaatctgagccattataaattgtccgttgagcttctaccagcaaatacctatagtggcggcacttcctgagccggaacgaaaagttttatcggaatgcgtgttctggtgaacttttggcttacggttgtgatgttgtgttgttgtgtttgcaattggtctgcgattcagaccatggtagcaaagctaccttttttcacttcctgtacatttaccctgtctgtccatagtgattaatgtagcaccgcctaattgcggtgcttttttttaccttgcgatcgcgaattactgatccagttcgaccatctctttcacgtcagtacggttgatctgctgtttgttgccattagcgtctttatacgaaatcataccggtatcgttatcagtctgtggtttgccgtcagagacgatggtacgtccgtcattggtgtgcatcacatagttcgaaccggaacaggcgctcagggcaaaagtcagcatacaggcagaaataattgcggcagtctttttcatcatcttctccttaaagcgattaataaatcttaatagtattgattaacaggctaaaattaacgcctaacactattcagcatatgttacttaccgcggcttcgcaggatatccagataattctgatggttagcactctccttgtatcaaagtgaattttgcgtcacgatcggtgcatcaagccgaggagtaccatgaacgtttttaatcccgcgcagtttcgcgcccagtttcccgcactacaggatgcgggcgtctatctcgacagcgccgcgaccgcgcttaaacctgaagccgtggttgaagccacccaacagttttacagtctgagcgccggaaacgtccatcgcagccagtttgccgaagcccaacgcctgaccgcgcgttatgaagctgcacgagagaaagtggcgcaattactgaatgcaccggatgataaaactatcgtctggacgcgcggcaccactgaatccatcaacatggtggcacaatgctatgcgcgtccgcgtctgcaaccgggcgatgagattattgtcagcgtggcagaacaccacgccaacctcgtcccctggctgatggtcgcccaacaaactggagccaaagtggtgaaattgccgcttaatgcgcagcgactgccggatgtcgatttgttgccagaactgattactccccgtagtcggattctggcgttgggtcagatgtcgaacgttactggcggttgcccggatctggcgcgagcgattacctttgctcattcagccgggatggtggtgatggttgatggtgctcagggggcagtgcatttccccgcggatgttcagcaactggatattgatttctatgctttttcaggtcacaaactgtatggcccgacaggtatcggcgtgctgtatggtaaatcagaactgctggaggcgatgtcgccctggctgggcggcggcaaaatggttcacgaagtgagttttgacggcttcacgactcaatctgcgccgtggaaactggaagctggaacgccaaatgtcgctggtgtcataggattaagcgcggcgctggaatggctggcagattacgatatcaaccaggccgaaagctggagccgtagcttagcaacgctggcggaagatgcgctggcgaaacgtcccggctttcgttcattccgctgccaggattccagcctgctggcctttgattttgctggcgttcatcatagcgatatggtgacgctgctggcggagtacggtattgccctgcgggccgggcagcattgcgctcagccgctactggcagaattaggcgtaaccggcacactgcgcgcctcttttgcgccatataatacaaagagtgatgtggatgcgctggtgaatgccgttgaccgcgcgctggaattattggtggattaatgacaaacccgcaattcgccggacatccgttcggcacaaccgtaaccgcagaaacgttacgcaataccttcgcaccgttgacgcaatgggaagataaatatcgccagttgatcatgctggggaaacagcttccggcattgccagacgagttaaaagcgcaggctaaagagattgccggatgcgaaaaccgcgtctggctgggatatacagtggctgaaaacggcaaaatgcatttctttggcgacagcgaagggcgcattgtgcgcggcctgctggcggtgttgttgactgccgttgaggggaaaaccgccgccgagttgcaggcacagtcaccactggcattgtttgatgagctgggattacgtgcgcagcttagcgcctcacgcagccaggggttaaatgcgttaagcgaggcgattatcgctgcgacgaagcaggtttaagcacagaaccgggtcggataagacgttcgcgtctcatccgacctgattgtttaaccctgacgcgccgctttcgccatcatcttcttcagcgcatgagaaaccgcaacaaacccaaaggtggcggtcaccatcgttgccgcgccaaatccagatgcacaatccatccgcttcggcccttctgccgtggctttcatcgcacacaccgtaccgtctgactgcgggtacaccagcgcttcagtagaaaacacgcaatccacgccgagcttacctttactgtttttcactacgccaaaatcgcttttcaggcgctcgcgcaacttcgccgccagcgggtcctgaatcgttttcgccagatcggtaacctgaatctgcgtcggatcaatctgcccacccgcgccaccggttgtgaccagtgggattttattgcgccgacaataagcaatcagcgccgctttgggccgtacactatcaatggcatcaatcacgtacgaataacccacgctcatatactgcgctacgttatccggcgtcacgaaatcatccaccaccgttacacggcactccgggttaatctggcgaatacgctccgccataacttccgcttttgccagcccaacgttatcgcgcagggcatgaatttgccgattggtattggtgacgcacacatcatccatatcgataagcgtgattgcgccaatccccgtgcgcgccagcgcttccgccgcccaggaaccgacaccaccgataccaaccacacaaatatgcgcgtcagcaaacagttgcaacgctttttcaccatacagacgcgctgtgccaccaaaacgctgacgccatgcatcactaattaccacagacatagcacctcagaattaaaaagggcgaggttatccctcaccctaaacgcataaatgcctgatgcgctacgcttatcaggcctacataactcctgcaatattttggatttgcatgatttgtaggccggataaggcgttcacgccgcatccggcatgaacaacgcgcacttagtcaataatcaggatgtgaggttacccctcaccctgtcatatccgtaaaaacggcatacagaatatcacatcagccgctaaagacgttacctgcgcccggggcggttttcagcacccagacacgtccatagtggttgtaccaacctgcgcggtgtccggcttccggcccgatcccttgatagatatcgaagtgttggcctttgattgcaccaccgacatccagcgccaccatcagacgcagttcgtactgaccattaaatttgccgttattatccagcaacggcacttctgccagcaaggtagtacctggcggaataatggaacgatcagaggcaactgacgcgcgaccaaccagcggcaccgcacttgcccctttcaccggagcaaaagattgcggtttaaagaagacgaaagacgggttctgttccagcagctcgcgaacctcggcttcactgtgtgtttcgccccagtgacgaatcgcctgcatcgacatatcttcttttttcacttcgccacggtcgatcagcaccttaccaatgctgcgataggcatgaccgtttttccctgcatagctgaaaaagttaagcggactgccatcaccaaagtcgatatacccactaccctgcacatccataatgaagttatccatcagggagttactgtaagcgagaatatatttatcactcaatgcccccgcgtagatctccgcacgagacggcagacgaccacgttttggcggcatacggtaaataggatactggaactcgccctggcgggtatggcgcgcctgaattaccggcgtgtaataaccggtaaactgcacgttaccatagttgtcggcaccttccatctgccaggcatcaatgccgaactggcgcatattgcgggtatcaccgcctgcgcgcagccactcttgcaccgcgttataaacattactctggttgccatacagacgcggtgacgaattacggatatggttaatttgctcggcaaaatcaccggcgttaatcggcgcgccaacggcatctggctggttcaccagagagaaaggctgggtaaatttcccgtctttatattgctgtccgcgatcggttggtttggaagagcaggcggcaagcattgccacaaccgtgcccataagaaggtactttacccaacgtcctttcattgttctcttcttcaggttaaaaaataaggcgcaacgaagataacaaaccgccgcgtttaatgaaatgagcagcctctccctgacgcaaattttgcacaaaaaataggctttagtgatttgtttttgttcaaaatcatgccaaatccgtgatcggggtaaaaaaaaggttgcatgaaaacgcgagcggagtatagtgcgcatccacggacgcggggtggagcagcctggtagctcgtcgggctcataacccgaaggtcgtcggttcaaatccggcccccgcaaccaattaaaatttgatgaagtaaagcagtacggtgacgcggggtggagcagcctggtagctcgtcgggctcataacccgaaggtcgtcggttcaaatccggcccccgcaaccaatcaaatttgatgaagtaaaagcagtacggtgacgcggggtggagcagcctggtagctcgtcgggctcataacccgaaggtcgtcggttcaaatccggcccccgcaaccaattattgaacaccctaacgggtgtttttttgtttctggtctcccataaaaaagcgccattcagcgcctttttatcatccccttctcgccagcgtcgccccatcggcaaaatacgctttaatccccgcaagaatagactccgcaacttcctgctggaaagtcgccgttttcagtttacgctcttcctcaacgttactgataaacgccgtttcgaccagaatggagggaatatctggtgcctttagtacggcaaacccggcctgttcaacttgatttttatgcagcttgttgattttaccgagcttattcagtaccgctttaccaaacttcaggctgtcggcaatggtcagcgactgtaccatatcgaacatggtgtggtcgacatagcggtcaccgcttttgctcacgccaccaatcaagtccgaggcgttctgggtttgtgccagatattttgccgcagtactggttgcacctttggttgagagcgcaaacacagaggaaccgctcggctgacgactggtaaaggcgtcggcatggatagagacaaacaggtcagcacgctgtttctgggcttttgctacgcgcacttgcaatggaatgaagatgtcttcattgcgcgtcatgtacaccttcatattgccctctttctcgatcagagagcgcaaacggcgagctatttgcaataccacatctttttcgcgcgttttgtatttccccaccgcaccggagtcttcgccaccgtggccagggtcaagcataatgacaatcggacgatcgcgccctgctttacccggttgtggaccactttgcgctggcggcacctgcttttcgaggtcgcctttgttgtaatcctccagcagcgccagcagcgggtcctgcatatcctgtgcattggccggatagaggtccatcaccagacgctctttaaacccggcgaccggcgcaagggcaaacagctgcggttttacgttttgctttaattcaaaaaccatccgtacggtttgcgggtcaaattgcccgacgcgcgccgacttgatgaacgggtcgtctgcacgaatttgtgccgccatccccttgagtaccgagttcaggtttacatcttcgatatccaccaccacgcgttcagggttactcaacgcgaactgcttatatttcagctgacgatttgattccaccgtcacgcgggtgtagctggacgcaggccagacgcgcaccgccacgacctggctgaccgcagccagactgacctgacttacgctcaatagccacatggcacccgcgccttgcagtaaacgacgacggctgattgcagtgttggatcctgacatgcctctcccgagcaaaagaaatctaagctgtgtaacaagtaaacgactaatttgaccggaaactttagcgaaagacgcataatctgtcatctaataaacggtaaacattctttttatattcacggcattactgataaaaaagtcgctctcgcataaaatttacacttgcaccctgcgaaaaaacagaataaaaatacactaatttcgaataatcatgcaaagaggtgtgccgtggtaaaggaacgtaaaaccgagttggtcgagggattccgccattcggttccctatatcaatacccaccggggaaaaacgtttgtcatcatgctcggcggtgaagccattgagcatgagaatttctccagtatcgttaatgatatcgggttgttgcacagcctcggcatccgtctggtggtggtctatggcgcacgtccgcagatcgacgcaaatctggctgcgcatcaccacgaaccgctgtatcacaagaatatacgtgtgaccgacgccaaaacactggaactggtgaagcaggctgcgggaacattgcaactggatattactgctcgcctgtcgatgagtctcaataacacgccgctgcagggcgcgcatatcaacgtcgtcagtggcaattttattattgcccagccgctgggcgtcgatgacggcgtggattactgccatagcgggcgtatccggcggattgatgaagacgcgatccatcgtcaactggacagcggtgcaatagtgctaatggggccggtcgctgtttcagtcactggcgagagctttaacctgacctcggaagagattgccactcaactggccatcaaactgaaagctgaaaagatgattggtttttgctcttcccagggcgtcactaatgacgacggtgatattgtctccgaacttttccctaacgaagcgcaagcgcgggtagaagcccaggaagagaaaggcgattacaactccggtacggtgcgctttttgcgtggcgcagtgaaagcctgccgcagcggcgtgcgtcgctgtcatttaatcagttatcaggaagatggcgcgctgttgcaagagttgttctcacgcgacggtatcggtacgcagattgtgatggaaagcgccgagcagattcgtcgcgcaacaatcaacgatattggcggtattctggagttgattcgcccactggagcagcaaggtattctggtacgccgttctcgcgagcagctggagatggaaatcgacaaattcaccattattcagcgcgataacacgactattgcctgcgccgcgctctatccgttcccggaagagaagattggggaaatggcctgtgtggcagttcacccggattaccgcagttcatcaaggggtgaagttctgctggaacgcattgccgctcaggcgaagcagagcggcttaagcaaattgtttgtgctgaccacgcgcagtattcactggttccaggaacgtggatttaccccagtggatattgatttactgcccgagagcaaaaagcagttgtacaactaccagcgtaaatccaaagtgttgatggcggatttagggtaagcgatgaaaatcgtcggatgcgacatgcgtaacactcgtacgtcgcatccggcaattacgtttattcccgtgaactaaacaacgccgccagaccactgcgccgctcagtacgagtggcgattgccgcacttaatatgcgctcatcggcatacagcgacagacggcgacgcgcgcgggtcaccgcggtataaaccagctctcgcgttactaccggcgtgcgttggctcggcaaaatcaacgccgcatggtcgaactccgatccctgcgatttatgtaccgtcatcgcccacgtagtttcgtgctctggcaagcgactcggttgcacagacttaatattgccgtccggcatcgcaaaccagacgcgcgtcccctgcccgcgatccagcgcaataccgatatcgccattaaacaacccaagcgcgctgtcattacgggcaatcatcaccggtcgaccttcgtaccaacgagagtgcggatgacgatgaattttgcgcttctgttgcataaactgctcaattcgctcattcagtccagccacgccaaacggcccttcccgcagggcgcacaaaagctggtactcattgaacgcctgaatgattaaatccggctcggcacgcgcttgcagcagatccagataacgtccgtaacccgcaagagcttcctcaagcatcgcaatataatcttcgccgctctgtaaaagccgtttttcgatatcagtaaaatcctgctgaaaaacggttttcactgccgttttatcaccacggttgatcgccgcagctaactgaccaatgccagaatcgctgccgaaacgatagcttttttgcagcaggcagagactgtcgcgcaaagatgccgcttctgtgccggttcctgccggaacgtgagtccccgtcaggcggcttagctgcctggcacgctcggcggtaaagcccgcgttggcataagcgcagatatcgcccagcacagccccagcctcaaccgaggccagttgatcacgatcgccgagaaagatcactcgcgcatgatcgggcaaggcgtcgatcagtctcgacatcataggcagatcgatcattgacgcttcatctaccaccagcacatcaagatgcagcgggttaccggcatgatgacgtaaacgctggctacccggctgcgcgcccagcaatcggtgcaaagtgctggcatcttccggaatgcgtttcttttgttcatcggtcagcggtaactgtcgcaaagccttgccgagagattcggttaagcgcgcggcagctttacccgttggtgcagccagacggatacggcagcgttcgccgtcggccatttgaattaacgctgccagcaacttcgctacggtggtcgttttaccggtgccagggccgccggaaatcaccgagatccgccgcgtcagcgccactgccgccgcaactttttgccagttaatttcatcgcttactggaaaaagtttgtccagggtttgcgccagtagagcttcatcaacctcaatggcatgattcacttcgttgaaaaagcgtgccactgtgcgctcgttacaccacatgcgattcaaataaagacgatcgccacagaggatcatcggcgtgggttcatctcccctgctgaccgcttgagaagccagcaagcattcttcccaattttgtagctcaccgatttcactgacacaggtcgccaacagcggatgcgacgcctcgttattttccagtcgtgaaagcggcaaacaaacgtgtccctctccggcatcatgacttaacagtgccgccgcgagggtgacggcaggatgttcatctcccgccacggtcagggcaaattgcacatccagcgggcgtagctgtttgtgctccacagcttccagtaattgcttttgcaatttcattacgcctcctccagggtcataccggcaaacatctcatccatcagggcaatcaacccggcgttgggtcgggttgtgtaaatcccctgttgcggatgttctttatcaacgccacgcaggaacagataaataacgccgccaaagtggtgctcatagtcgtaatcagcaatgcgatggcgcagataacgatgcagcgccagggtataaagctgatattgcagatcatagcggtgtgcctgcattgccgctgccatagcctgttgggtgtaagccgaactgtcttcacccaaccagttggatttatagtcgagcaggtaataacgcccttcgtggcggaacaccaggtcgataaagccttttaacatgccacgtacctgcatgaactccagcggcgggcagcctgcggatagcgggtcaaactggcggattaacgtatcaagctgactggcgataagcggttcactaatcggcagataaaactccatctccacctgtttattgcgggcggaaagttgactcaggcttacgccggtttcattgagaggtgcctggaggacagccgtgatccactcggtcaataccggttcccactgcgattcaaagccgccgagttccagtttttcccgcacccagttcgggtcaaccggctgggtaaaatccaggtcttcaaacaaactgtgcaagaacgtccccggtgacgcaccgcgcggaaactgatgtggtgttaacgtcggttcttcaacgacgctggcaacgcctgcagcatcgacatccagccgaggcatcaaatcctgggcgataccgtgaccacgctgttgcaaaccagagtagctggtgacgcgccagttatcgccgggcaatcgttgtaacgtcttcgcattcagctctgctgtagaaacatcattaacctgccagggttggttatcaccagtttgtgccgtttgccaggcaatatcatcatcgcataacgcttcaatacaggtgcgaagccctgccgcatcttgcggttcccctttttgcagcaaacgcccgagcgcactttggtggacgtcggtgtcaccttttttatcgccacgacggcgcaccagcggtgcaacgccgagactgcaatgccaaaccgaacgtgtcagcgccacgtaaagcaaacgcagatcttccgccagacgttcggcctccgcgaggtcgacgctttctggcgcagcattaagatccagaactgcctcaaacgagtggcgatcgtgataaaacgcctgctcctggacgcggaaattggtgataaacggcagccagaccaatggatattccagccctttcgatttgtggatcgtgacaatctgcaccagatgtttatcactttcgagacgcatttgttggctggaggcattactgtctggctcgaggatatgttgcgataaccagcgtaccagcgcatgttcactttccagctgcgttccggcttcttgtagcagttcgctgatatgcaagatatcggtaagacgccgctcaccgcctgccgttgccagcaagttttcagcaatgttacgcgccgacatcagcgcccgcagcatcggcataacgccacgtttgcgccagatttgccgataaccatcgaactcttcgactaccacatcccacgcatgttcgtcattgttcagcgtttcgatatccagcgcgttcagccccatcattgacgttgccagcgcactacgcagggtgttctcacgttcgggcgtcatcaccgcctgcaacaaccaaagcatttcctgcgcttccagagtttcaaaaacactgtcgcggttcgaaaggtaaacggaagggatttccagcaacgttaaggcatcgcgcacctgggcggcctcctggcggctgcgcaccagcacactgatgtccgaagcacgcaccggacgcgcgtcgtcgccgttcatcagcaacgcttcgccccgctgtccggcttgtagccagtcgcggatttgcgcagcacatacctgcgccatggtactttgataatcgccaacgccgcagctttcgccttccatcagccacattttcatcgcaggctgtgtttcacctttaaatacaaaacgtaacgcctgatttttcccggctgatttcactggaataaacggtatttcgcgaaacatgaacgcgtcatcagtctggctgaaaagcttattcacgctgttcaccattcctggtgcggaacgccagttggtgtctaaagtgtagtgggcgtgaacttcgctacgcgccttcatataagtgaagatatccgcaccccggaatgcatatatggcctgcttcgggtcgccaattagcaacaatgcggtttccggctgatggtgccagatacggcgaaaaattcggtactgctgggggtcggtatcctgaaattcatcgatcattgccaccgggaatcgcgtacggatcgccgctgccaacacctcaccgctttcgctacgcagcgcggaatcgagccgacttaacatgtcatcaaaacccaattcgccacggcggcgtttttcacgcgctactgtttcgcggatctcagccaatgcgcgggtgatcaccagatcgcggatcgacaatggttctgcaagcagttgatcgatcgcctcaaacagtggatgtcgcggggtttcccccccggccttcgtgcgatcttctaagaaacgctgggagaatttttccagcgactccggcaactgataactgtttgtctcttcttctgcccaggcgctgatcttgtcgatccatttagcctgattgctacggttaaacttgcgtcgatcaataccagaagattcgatcagcgcatccagttcacccactgcgtcgcgccactgctgttttaccgtatcaatacgcgccacaatttgcgcgtgacgggaagccagcgtttcatcatcgggcggcggtgctttgataaccggcgcttcgccttgcagataacgattaatatcgcgcagcaacgcctgcggccctttccaggtttcaaagacgacctgggctatttcacgcggcagcgggtagcagtggcgacgccagaaatcggcgcaggcctggtagcgtagcagagactcatcttcaatcagctgctgctcaaacagcatgccggattcaaaggcattcaggttgagcatgcgctggcaaaagccgtgaatagtaaagactgccgcttcatccatctgccgttcggctaacaacaaccactgcgcggcttgcgctttatcgtcgatctcttccagcaggcgttcgtacagtggattgtcggtggtttcacgcagacaggcgatgcgcaactcgtggatattgctacggatacgaccgcgcaattctgccgtggcagcctcggtaaaggtgaccaccagcagttcttcaacggtcagcgggcggggaaaggcggcggaaccgcctagtccaagtaacaggcgcaaatagagcgccgcaatcgtaaaggttttgcctgtgccggcagaggcttcaatcaggcgctcaccctgtaagggcaagcgcaaaggatctagtgtctcggcgacatcactcattcttttcactcatcaggggcattgtttgctgcaacgcgctgacgttctcccacactttccagccttcagggtgtacatattcggctttcccgttctggctgccggaaatctgcgacagaatagccatgccttgcggctcgaccaccgcctgatggaagaaatcagcaagtttttgcggcgtcagcagttttatctgggccacgattttatcacgcgaatcgaagcgcatattgccgcgatcgaaatctttacttaacttcgatgcttcttcgccgagcgtttgcggtgcctgcagcatctgggtaattaccgcctgctggatttgcgcaaactcatctggcttcatcgctcgcaattttgctctgcggttgggaaaaacgccttgtaacgctcccacaagaatgaaggctgtttatcattgctttgcaaaaggaagcccatgccccactgacgccccacgctcattggaaacgcaaacacggcatagcccaattgttcttcggtacgcaactgattgtagaaccacggctgtacgatctgccccaacagagagctataggctgagctggtgtattcatcgtagccagtcggtacaaataccgctgccagtgcggagtcggtgctgttaccggctttttcaaagatgacggattgttttttatcgaccactacatctttgtttcgacaccactctgaaccatcagcgcccaactgtttttgcacatcgcgtgccagcgttgttgcctgggcctcggtcatgttgccgataaccataaactctggtcgagcccctgattttaaggcgtcgcgataggccagcacctctttcaacgtaatggagggcaaaattttacgccgttcatctcgcgagaagtacggcacttgcgagagcatctgcgcgggcataatcgcctgctcaaacgctttacccttttctgcggaatccatcatctggttataccaggacttcgcctgctcaagctgatcttccgtagcggtatagctaaagtacccctcgagcaatgcctggaacagctgcggcagacgctgggtgtaaccattagcattaaccataaggccgttgttagcgttggtggaaaaacttatgccaccaaccgacgcctggttgcttaactgatcaagcgccagccctgcgagataatcattgagcgcaaacatcacctgattgcgggcgctgtccatggctttcggattacgcaaaatcaggctgacatcagctttgggctcgctggcaaaataacggcttggcgcatacaccacgcgcagattcgactcatcaacaatcagctctggatggtcgtatttcttctctgacttaatcagcgagaaatcatcaggaatataagggttaagctctggcaaagagagcgcaatgtcggcggcttttttctgccagtcggcgaaagtttgtgcgctgattttatcgacctgatacggcgcatcgacaaagtaagccgttttgttgtgcggctctttcgggctgatataccagatacgcgcattctgcggcgtcatcatcgccagacgttcctttactgctttagcatcgtaccgatcggcaatattgactgcatccagcgtatgctcaacaggaacgcgaatcatggtatctgccagccattcgacgtaatccatatcacgggtgatcgacggataacggaagtcgatatccagcacattcgccagttcatcgaagtattgtttatcaatgcctttttcacgtaacagattgagatagctaaaaattgccgccacaacctgatcgcgattagccaggcctttatcggttaaagacgcagagatcgctaatacgccgctgttgccgttgacgataggatcggagttggcgctaatgccctcaactaatccctgcttttgcagccagtcagaaagtgtacctgggctgcgattgccaatcagataggtaatcaattcatcggttttactacggaacttcgctgagttgttatcgatgcgaaactcaacgcgcaacactttacgcggcagcgcagggacgtaatgaatgataatgcccttttgcgcgtcggtgactaccggcacggtgatttccggttttttgctctctttgttcggcacgcgaccaaaggtgtccgccgccatttttgccaactccggcagcggtttattactgtaaataaccgccttcatcaaattggcggaatagtacttctcgtggaaatctttcagcgcctgctgcaccggattaccaggtttgtcgcttaaagtttcgaggttaccaccagaaaactttgaaccggggtgtgccgggttaatggtttctgcgctgacctgtgccatgcgcatcccgtcacgcgtacgcgccatggttaattcagcgttcaccgcattacgctcacgttcggcatatttcttgtcgagcaaaggttcagcaatagcatcggccaggcggtctaccgcaccaggcaaggcgtcgttctcaacttccagatagaaagccgtgcgatacggcgcagtgctggcattgtgactaccgccgtgcattttgagatattcggccagactgtcagcctgcgggtactttttcgaccccatcagactcatatgttcaaggtaatgtgccagcccctggtacgcctcgggatcttccagcgacccaacgggcaccaccagcgccgagagcgatttaactgcctgcggatcagaaaccagcaagaccaccataccgttatccagacgtatagcctgatactggcggttatctttatcacttttacggatggtttcctgaatcggctgccatcccgtttctgcctgacttaagggtgcccaaagggcaactaacaacaataatgctttgaaccaggtgctgcggggcattcacggacctcataatcaacttaattttctgtccagattcaacacgttaacgcaaatcatctgccagaatttaatcttgtgctgcacgagtcagcctatgtttatataaccatcagtccgtgactggtgcgcatcataaagtaagcggatagattgcgcaatttttatacagcactcatgactgattaaagcgaaacagcggtaacaggaaacgttgcgactgttcaacgatggcctccattgtctctggtgttaattgccgccagagcctttgataccagatatcatcaccttcgccacgcaccatcatgttgccttcgtaagcctgaaggaatttcgtacgggctttttgcaacgtggaatcgtcatccagcatggcatcgttttgcgcgtcataacaggtttttagccacgcgccgccactttcaggtaacaccagcaatggcgcggacattccttcacgatacccctcaatcagttgtgagaggtaatgcaaagcctgttcggctgcaagcggcggaaaacgccactcgccgtctttgcgtagaaaaaggcgactttcaccattaccaccgctggcacagtagacaaggtgttccagccaaagttgcattccctgggccacacttaataaagagggacgccagcgcaacaggccatccggctgcacctgcggcaaccagccagttatctgcacaccgttgcaggcgagatcaatttccatactctgccccggctggcgacaggcaatgactctgtcggcaagctgctgcatctcctggcactgtgtttcccagaaaatttcaccaaaagcgccatacggtaaatcccctgccgctcggaagcggcggaacaagcgttcggcatcatcctgctcaaccagtgcattcaataactgctgattgatttgataacggctaagtccttccagaataaatggctcggtgtcggggatttcgctgtcttcagtacggaagttcacctgcaaacgcatctggaaaaatgcccgcaccggatgtgcccagaatcgttgtagcgtttccagcggcacggtttccggtaaggtaaacggcagcggctgaacaaattcagaatgtgctttaccagcctggctggccgcaggtagccattcacgagcatagctttgtcgttcgcctggctggtagttttgtggatcaaacggcatccgggtatggaggcaagtaagatgcgcttttacccttgcctcgctttcatcacagttgagcgcttcatcgcccggtagataatgactttgcccgatgtagtcgatcagttcctgcaccagtaccgacgggaaacgctcactgttatcctgaatggaacgaccgatatagctgatatagagtttttgctgcgcggaaattaacgcttccaggaacagatagcggtcgtcatcgcgacggctacggtcgccacgcttcggtttctggctcatcaggtcaaagcccaatggcgcaagctgacgtggataaacgccgtcgttcattcccagcaggcaaaccactttgaacggaattgaacgcattggcatcagagtacaaatgttaaccggtccggcgagaaaacgctggctgatacgttcttgatccagacgctgtgccagttcatcacgcaatagtgacagcggcaccgcgtcgccatactgcgcacctaaaccttcggcgataatcgcctgccattgttgttcgatcagcgtcatcgccgcttcggtttccgcatccggcaggaagaaggcgttgagcatatcgcgacaaaccggcaaccactcttccagcggacgctcctgtgccagcccgcgacgccagatgtttagctgcattagcagtgaagccagatgccccaccagttctgcaattaagccgctcgattcatcataaggtagaaccgattgccactcgccctgcgcgctctccatcgcgtagcccaacaacatacgcgtcaggccaaatcgccaggtgtgttgtccggtggcggggagttccagctcgcgaacgttgtcgtcatctatgccccaacgaatgccggattcgttgacccactggcgtaaataacgcagcccttcttcggtgatgtcaaaccgcgccgccagcaccggcacatccagcaacgccagcacatcctctgacacaaaacgactgtcaggcagtgataacaggctgataaacgcttccagtaccggatgtgactgccgcgcacgacggtcggaaatggcgtaaggtaggtaacgatccgcaggtgcgctaccaaacacagcctgaataaacggactgtagctgtcgatatcagccaccatcacgatgatgtcgcgcggagtaagtgtcgggtcttcctccagcatcgccagcaggcgatcgtgtaaaacttcaacttcacgctgcgggctatggcaaacgtggaaggtgatactgctatccagtggatcaagcgggcgtttgttatcgctacgggaaaactcttcgatgttcacaccagcaacggcgcggttttccagttccagaatgtcagactgaatgttatgcagcaggttatctggcgtgacatcgacaaaggcgtccagctcctggctgctctccaggtcagaaaggagataaatgtagtcgcgcccaagcttaccccatgaagccagcagcgggttgccgacatcctgttcaccatcgctgttaaagagctgcccggcattttcgctatcacgaaatagcggcaattcgcgatcttcaaaactgtgtcgacgctgacgggtcagcagtttcgccagataagcaggatctttaatatcgccccagtaataacggcaggggttggtaaacaggagatggatttcaatatgtttacccagcgcctgtagcgcctggagataaacaggcggtaacgcggaaataccgcatataaagacgcgcgaaggtaaccccggcgggcaggtcgtcgcggactccagcgtttcgataaagcgctgatagagattggcgcggtgccagcgcggttgcccgagttgatgggtatattccaccagcgccttccacaacggggcttgccaggcctgtgcttctcccagcccttcaaccaaatgtcctgtttcccactgtgccagccagtccggacgatagaccagatactggtcaaacaggtccgccgcttttgaggaaagctggaacagttttcgcttgtcgctatcgtcagtcagataatgccgcaacagggtaaagtcttcgcgctccagcaattgcggcagcagagtcatcagtttccagctcatgctctgtttgttaaaggcgctctctttggggatttccggtaacacccggacgaacatatcccagataaagctcgctggcagcggaaaatcaatgtttgccgcaataccaaacttttgcgacagggtcatttgcagccactgtgccataccggtactttgcaccagaatcatctctggttcgaaaggatcgtccagccgttcgcgttcgacaataaactccatcaacgcttccagcacgtccagacgattggaatggtagacccttaacatagcggctcctgactactgacgattcgggcaatgcaggcgggtcatctcgccttctctgcccccgggtgaaactagcgtaacgctgatgctgacacatcccgcctgcgatgtctgcattcggttgacctgccagttggcaggtggcgaaatcgcgcgcagttgcgtttgctgccagccatgccgccagagctgttggtactggtttctgctggcaagactgttcattaatgttcgctggaaacccgataacgcagtgacaatcatcaccatcaacaccatcgccaacattacctccggcaggctaaagccttgttgattcttcagggaagctgacataacgccctctctttcagcggacaaaaatcgctccagccgcgtggcgaaaaaacaatgtttccatcaatgacttcgcctgttcgccacaacgaaacgccttcataaccggcaatcaataaggcttcattatctgccagtaaacgcaaacaaacctgggcatcggtttcagcgtactgcgagcactgaactgctggctgcgtctgccagcagtgcatttttccccacgccagcgccgactgaacgatggcctggcggcgcaatgactgactttccatgctcacgcgagaggcaaaactgcgatcctgttggctcattccttgtaatagcaaactacccaaaaccagcagcatcaggaccagagccagtgacgaaacacccttttcgcggttcacaggttgaatcctgtcacgctatagctggcattcaccacggtttgcggttcagacttactggcagcacgcatattaaccgtcaacaccggcgagaagccgctgacatcctgacgtacgacctgaaaagtgtcgataatgatggcatccggattagtgactttatcccagcccttaccttcacaggatgtcgcaccgcgtagcgtttccagcacatgctccttcagacgaaatccaatctggtcggactcttttaccggttcgcgatcccagataccgttactgttcgcatcccactgcacaatgacacagtcaccctgtccgacaatttccagcccttcgccggtacagatgccatgacaataacccgccctctggagatgcttcgcgacggtaaatacccgcagccagatttcatcttccagcgccagcttacgggtgctcgttaaactttcacgctgtaacgcaggcagaaagcgtgccgcccccagcaacaatacgctactgatcgccatagcaatcaacacttccagcagagaaaaaccttgctcttttacaggcatccttctgtttctccttgctgacaaagccggagtcttccccacggcgaaaccaccagccaccactcgcccgttgagtttttgaagcgaatatgcccggcccatgcggtattgcgcaggccaaagaaagcaagcgaaggtgtcaggtcgctcatttcgacttcgggccagcgtggcacaaagaccaatggtgaactgccatgacaggtattggccccagcagcggaactcacaaggcaccataacgtcccctccctgataacgctgatactgtggtcgcggttatgccagttggcatcttcacgtaaatagagcaaatagtcccgcgcctggctggcggtttgccatagccgttgcgactgctgccagtattgccagccatagagtccacttgcgcttagcatgaccaaaatcagcatcgcgaccagcgtttcaatcagcgtataaccacgttgtgttttcatgccggcagtatggagcgaggagaaaaaaagacgagggccagtttctatttcttcggcgcatcttccggactatttacgccgttgcaggacgttgcaaaatttcgggaaggcgtctcgaagaatttaacggagggtaaaaaaaccgacgcacactggcgtcggctctggcaggatgtttcgtaattagatagccaccggcgctttaatgcccggatgcggatcgtagccttcaatctcaaagtcttcgaaacggtagtcgaagatggattcgggtttacgtttgataatcaacttcggcagcggacgcggttcgcggcttaattgcagatgagtttgatccatatggttgctgtacagatgcgtgtcgccaccggtccagacaaaatcacccacttccagatcgcactgctgcgccatcatatgcaccaataacgcgtagctggcaatgttgaacggcaggccgaggaagacgtcacaggagcgctgataaagctggcaagagagtttgccgtctgccacatagaactggaagaatgcatggcacggtgccagcgccattttatccagttcgcctacgttccacgctgaaacaataatgcggcgcgaatccgggtcgtttttcagctggttcagtaccgtagtgatctggtcaatatgacgaccatctggcgttggccaggcgcgccactgtttaccatacactggcccgaggtcgccgttttcatcggcccattcgtcccagatggtgacattgttttcgtgtagataagcaatgttagtgtcgccctgcagaaaccacagcagttcatggatgatggaacgcaggtggcaacgtttagttgtcaccagcgggaatccatcttgcaggttaaaacgcatctgatgaccaaaaatggaaagcgttccggttccggtacggtcgtttttctgtgtgccttcgtcgagcactttttgcatcagttctaaatactgtttcatggttcctcaggaaacgtgttgctgtgggctgcgacgatatgcccagaccatcatgatcacacccgcgacaatcatcgggatggaaagaatttgccccatgctgatgtactgcacccaggcaccggtaaactgcgcgtcgggctggcggaaaaactcaacaatgatgcgaaacgcgccgtaaccaatcaggaacaaacctgagacagctcccattgggcgtggtttacgaatatacaggttgaggataataaacagcaccacaccttccagcagcagctcgtaaagctgtgatgggtggcgcggcagcacaccgtaagtgtcgaaaatggattgccactgcgggttggtttgcagcagcaaaatatcttctgtacgggagccagggaacagcatggcaaacgggaagttcgggtcaacgcggccccacaattcaccgttaataaagttgcccagacgcccggcaccaagaccaaacggaatgagtggtgcgataaaatcagagacctggaagaaggaacgtttagtacggcgggcgaagataatcatcaccacgataacgccaatcaggccgccgtggaaagacatgccgccgtcccagacacggaacagatacagcggatcggccataaactgcgggaaattgtagaacagaacataaccaatacgtcccccgaggaagacgccgaggaagcccgcatagagtaagttttcaacttcatttttggtccagccgctgcccggacgattcgcccgtcgtgttgccagccacattgcaaaaatgaaacccaccagatacatcaggccgtaccagtgaagcgccacgggtcctattgagaaaatgaccggatcaaactccggaaaatgcagatagctactggtcatctgtcaccacaagttcttgttatttcgctgaaagagaacagcgattgaaatgcgcgccgcaggtttcaggcgctccaaaggtgcgaataatagcacaaggggacctggctggttgccggataccgttaaaagatatgtatatgatccgcgctataaccctccgcgaatcagcccgcccatgccgcgacgctccataaaggctgcaacctgatggcgaacttcggtcgccagttgcgcttccagactacgctgcgcaagattttctgcttcggcataatcaatgcgccgcagcaggtattttgcccgcgctacagaacgtccgttcatagacagatggcgatacccaagcccaatgaggattgccacgcacatgggatcgcccgccatttcaccgcacaaacggagatcgattccatgtatttccgcttcccgggcgatcatcgccagagctcgtaacattgcaggatgaagactgtcataaatgttcgccacccgggtattgttgcgatcaacggccagaatgtattgagtcagatcgttggtgccaacagagatgaaatcgacccgctttgccagatgcggcagcataaataccattgacggcacttccagcatgatgccgatacgtggtttgggaatttcgtaaccgatcatctcctcgacttcacgtccggcacgttcaatcaggcggcgtgcttcatcaacttcatcgaggcttgtgaccatcggcaacagaatattcaggttgcccgtagcggcattagcacgcagcatcgcccgcacctggatcaagaagatctccggctgatcgagcgtaatgcgaatcccacgccaacccaggcatggattctcttcgctgatcggcatgtaaggcagctgcttatctgctccgacatccagcgtacgcaaggtgacgggtttatcattgaacatttgcagcatcccctgatactgcgccacctgttcttcttccgacgggaaaccactttgcagcatgaatgggatttcagtgcgataaagaccgatgccatcaatacggctgcccagtttttcttcatgttccgggcttaaaccagcattgagcatgacttttatacgctcaccgctttttaactgcgcgggtaaattgacgtcatcttccgccagacggctaagctcaatctcttcactaattagccgctgatattcttgcagcagtaccggctccggatcgaccagcaattcaccgcgatagccatcaacgatcagcgtcctacgatgcagcaccgaaggctgaatatccgcgcccatcacggtagggatccccagcgcacgtaccatgatcgcagcatgggagttggctgcgccatctcgcacgacaacaccgactaagcgatcctggggcagctcagcaagcgttgtcgctgacagttcatctgccaccagaatgaaacgttccggccaggcgttcggcccttgattagcgtcatcaagatgaaacagcaatcgctgacccagcgcacgtaaatcgccagcccgctctttgagatagttatcacttagcgcggcaaactgttcggcaaatttttcaatgaccgtttttaccgcccactctgccaccgagcctttatcaacctcggcaaacaattcgcgacgcagccgggtgtccgaaagcaggtgcgagtaaagatcgaaaatagccgccgtttctttttgtgcaccggcggcaaagcgtttgctgtagcggcgaaactcgtttgccgcttcttccagcgccccggtcagtcgttcgcgttccagagccggatccagcgttgatgcctgatacacctgttccattaaaggtaacgtggcatcctgccagccttcggcaatcgccacaccaggtgctgccggtaatgcgcggattcgcgtctggcgatattgcccaaacaaggcagtcaactgcgactgagaaagaatagctgccatctgggtggcaagcgtcaccaggaaggattcttcactttcgtcatactggcgcaactctcgttgctgtaccaccagtacaccaagcaactggcgacgttgaataattggtacgcctaaaaacgcgcggaaacgttcttcttttacggaggggatgtatttgaagctggggtgcttttgcgcatctgcaaggtttatcggttccgccagcctgccaaccaggccgacgatcccttcatcaaacgcgagcgttacagtgcgaccgcgtggttttttcagcccccgggtcgccatcaggtagtaacaacgtcgatcatgatcggccaggtagaccgaacagacctcggtatccatcgcaagacagatgtcggtaaccagaatatttaacgcctcattcaggcgtggtgcgctggctaccttttcgactatttcgcgcaggcgagtgagcataattggcgtgacttaacctcttttacgtcgataagcagatgcgttttgtggttttggcgtattttcctgcagtgacatcaccacactcgcgaactctttcattaccctacggtagacatcacgtttaaatgacaccacctgtctgaccggataccagtaacttacccatcgccagccgtcaaactctggtgtactgctggtttgcatattgatttctgcatcgccgctcaccagctgcaagagaaaccatttttgtttttggccgatacaaaccggcttcgtgtcccaacgcaccaaacgtttcggtaatttgtagcgcaaccagttacgcgttgaagcaaggattcgaacgtctttgcggcttaatcctacttcttcaaacaattcacggtacatcgcctgctctgcggattctccggggttgattccgccttgcggaaattgccaggagtgctgaccaaatcgccgggcccacattacctgcccctggcgattacaaatcacgatacctacgtttgggcggtagccatcgtcatcaatcaccggactacctcaaaataaagctttatatacgaatgattgtttcatactccaggaagacggtaaaccactctctgcagggcattacacactaataacaattgaataactcacagttatgtgcagagttataaacagaggaaggggtggatagccgtttttattcaccttttctgtggatagagttgtgaagaactacggaattactacgggaaaacccggagcattctgaataagcccgatatagacattttaaaatattcattatcagtcaatgcattacatgtaattttagtaatgaaaaagagtaattcgtgacccaggtcacacctctcatttacgggttggcgaaagatcaaccaatgccgtatttatccacagaatgtgccactaagttaagcactgaaccactaaaaactggagtttcgtcgcacgtcaaggctgtaaatggaaacagtagtggaggtttttcacagttatcccagctttctgtggataacatggtgtaagatcctgtttattttcagtgaccagatttggaaaacccgttgcagtgttgcgcaactcgattaccggcaacctaaaaagcaatataaatcagagaattgaacaacgcatgtggaaaaagttacactgcgaatattcggcacataattgctgtttgttttttaatcaaggtatcatgacatgtcccaacctcgcccactgctctctcctcccgaaactgaagaacagttgttagcgcaagcacagcaactttctggttatacattgggagaactggcggcacttgtcgggctggttacgccagagaatttaaaacgcgataaaggctggattggcgtgttactggagatctggctaggtgccagcgcagggagtaaacctgagcaagattttgctgctctgggcgtggaacttaaaactatccctgtggatagtcttggtcgtccgctggaaacaacattcgtttgtgttgccccgttaacgggcaatagcggggtgacctgggaaaccagccacgtgcgccacaaactcaaacgcgtactgtggataccggttgaaggcgagcgcagcatcccgctggcgcagcgtcgcgttggatcaccgttgctgtggagcccgaatgaagaggaagaccggcagctacgcgaagactgggaagaattaatggatatgattgttctcggtcaggttgagcggattaccgctcgtcacggggagtatttacagatacgaccgaaagcagcgaatgcgaaagcgcttaccgaagccattggtgcccggggcgaacggattctgacgctgccacgcggcttttatttgaagaagaatttcaccagtgcactactggcccgtcattttctgatccagtagccatcgctttgacctgccgctttccgggcatataattaccgcttcatttttttggcagggctttttagatgttatttgcatggataaccgatcctaacgcctggcttgcgctcggtacgctgacgctgctggagatcgttcttgggatcgacaatattattttcctttctctggtggtggcaaagcttcccacagcacaacgtgctcatgcgcgccgtctggggttggcgggagccatggttatgcgtctggcgctgctggcatcaatcgcctgggttacgcgcctgacaaatccgctttttacaatattcagtcaggaaatttctgcccgtgatttgattctgcttctgggtggcttgttccttatctggaaagccagcaaggaaatccacgaatccattgaaggtgaagaagaagggctgaaaacacgcgtttcatcattcctcggcgctatcgtgcagattatgctgctggatattatctttagcctcgactcggtgattacggctgtgggtctgtcagatcacctgtttattatgatggcagccgtggtgattgccgtaggcgtgatgatgttcgccgcgcgctcgattggtgattttgtcgaacgccatccttcggtaaaaatgctggcgctctctttcctgattctggtgggctttaccctgattctggaaagtttcgacatccacgtaccgaaaggttacatctacttcgcgatgttcttctctattgcggttgaaagcctcaacttgattcgcaacaaaaagaatccgctctgatactccgtacgctctcctgcgggagggcgtactcactccttttaccctcacagtttaagattttcctgctttcaagatatataacgtcggtttataaacagactattatcataggtaggccaaatgaggataaccggatgaaaaaatgggcagtaataatttctgcagtcggactggcgtttgctgtttccgggtgttccagtgattacgtcatggcgaccaaagatggccgtatgattttgaccgatggaaaacctgaaattgatgatgataccgggctggtgagttatcacgatcagcaaggtaacgcgatgcaaattaaccgtgatgatgtttcgcaaattattgaacgttaacaaataaggtcagcatccggctggccttaagatttttctctttcccttttcccttccctctgccatttttatattccttatgtcgtgattataaaaaggaaacggctatgcaatatcaccgtataccccacagttcgctggaagtcagcacgctggggcttggcacgatgacgtttggtgaacagaacagcgaagccgacgcccacgcacaactcgactatgccgtcgctcagggcattaaccttatcgacgttgccgaaatgtacccagtacctccgcgccccgaaacgcaagggttaaccgaaacctacgtcggcaactggctggcgaaacatggcagccgcgaaaagttaattatcgcctccaaagtgagcggaccgtcgcgcaataatgacaagggcatccgcccggatcaggcgctggatcggaagaatatccgcgaagcgctgcatgacagcctcaagcgcctacagactgattacctcgatctttatcaggtgcactggccgcagcgcccgaccaactgcttcggcaaactcggttatagctggacggattctgcgcctgcggtttcgctgctggatacgctggacgcactggcagagtaccaacgcgcgggaaaaattcgttatatcggcgtgtcgaacgaaactgcatttggcgtaatgcgctacctgcatctggcggacaaacacgatctgccgcgtattgtcaccattcagaacccttacagtctgttaaaccgcagttttgaagtaggtctggcagaagtcagccagtatgaaggggtcgaactgctggcctattcgtgcctgggtttcggcacgctgaccgggaaatatctcaatggtgcaaaacccgctggcgcacgtaatacgctctttagtcggttcacccgctatagcggtgagcaaacgcaaaaagccgtcgcggcgtatgttgatatcgccagacgtcatggcctggaccctgctcagatggcgctcgcgtttgtacgccgtcaaccgtttgttgccagcactctgctgggcgcaaccacgatggatcagctgaaaactaacatcgaaagtttgcatctggagttaagcgaagacgtattagctgaaattgaagcggtgcatcaggtttatacttatccggcaccataagattaacgccggttaaaaccggcgttaaatattaatgacggcgctgccagatccacagcgccgttattgccagcgcaaacagcgcaccgaagccaatgccaatgggcacgaccgggatgcctatcattaccgccagcgagtaaatgcccagcatcaacaacatggcgctgttttcgccaaggttttgtactgcaatcgcattccccgccccgacgctttttttaccccgctcctgtagcaacgcattgagcggaacgacaaaaaagccccccatcacgccaatcagcatcaacaaggcataggctggcagcagctcgtgttgcagggaaaaaatcagtaccaccacgccaatcaaaatcccggctggcatacagcgtgacacggtttccagcgtaactaacttcgctgccgcacctgcgccaaccacgataccaatcgctaccatcgcgttgagataggtgggcgtagcgttatcggtaatgcccagcgccaccggtacccacagcaccaacaggaaacgcagcgtgacacccgctccccagaataaactggtgcccaccagcgaaaaacgcgtttcaccattgcgccatagcgaggtgcaggcattcaggaaactgcgggtcatgttgatgagattccaggactgccccggacgcgccgccgccagtttgggaatgtagatattggcaacgaccgcaccaccgtaggccagtgcgcatgcggccagggcgacgaggacatgccagtcagccagcacaccaccggctacggaaccgagcaaaatcgccgctatggtagaagcttccattaaaccgttagctttcactaacttactacccgtggttaattcgccgagaataccgtatttcgccggtgaataggctgcagcaccaacacccaccagcgtatagccgagaaacggattgataccaaagcagatactggctgcgcccagcagcttcaggccgttggcaaacatcatcacccggcctttggcgaagctatccgccacctgcccgacaaacggcgcaaaaagaatgtaagcacctacaaacaccatttgcaggatgggctggctccactccggatagaactgcgctttcagtaacgccagagtggcaaacagtagggcattatcgccaaacgcagagagaaactgcgccacgataaccgctttcatccccttcgaccacaacgaagtgttagtgtgcactgactcactcatcgtgttgttccgcttcgtctacccagcttttcaacgtgacaaagtcaggtttgccgctgccaagtaatggcatctgtttcagatagcgaatatcgcgcggtacagcaagctccggcacgccgtgctcgcgggcatactgttgcaacttatcgcgcgtcagttcgttatctgtggtgaaaagcaccagtgcctcgcctttgctggcatcgctcttaatcgcagtggcatggactttatctggcgaaacaccaagtgccagttgttccaccatttccagcgacaccatttcgcctgcaattttggcaaagcgttttgcgcggccctgaatctgcacaaagccctgctcgtcaaaacgcacaatatcgccagtgtcataccagccgcgctccatttcgccgcgaacattctcggcggtgggcacttccagtacacctggcttctccacccgcagatagccgttcattatgttcggccctttcagttgcaggcgtccgccctcttcgataccagggaccgacaacaggcgcgcatccattcctggtagaatacgccctaccgtaccgggtttcgccgccatcggtacgttgatagaaacgacaggcgcgcattcggtcacgccgtagccttcaaggatgcgcaggccaaatttatcctgccaaagctgtttggtactttcttgtaatttttctgcgcctgccaccacatagcgtagacgatagaagtcatacgggttggcgaaacgcgcgtagtgaccgaggaaagtcgaggtgccgaacaacacggtgcaactgcggtcatacaccaactccggcacaatgcggtaatgcagcgggcttggataaaggaacacttctgcacctgtaagcagtggcgtaaacaggcctaccgtcagcccaaaggagtgaaacagcggtaacgccgacataaagcgatcgttggtggtgaagtcggcaatcgttttaatctgctcgacattcgccagaatgcttttatggctatggacgacgcctttcggatggccttcagaaccggaggtaaaaaggatcagcgcctcttcttccggctgctgtttaacctgtgccagacgcggcatcagcaaatgagcgaagatccatactttgtcggcagtggtgacatctgcttttaaatcttccagatagacccagcgcacctgagtaagttgctccggcagatgccagagtttgcctttatcgagaaactggcgggaagtgaagatggttttgatttcagccgccgtaatagcactggtcagcccttttaccccggcagtgtagttcatcattgcgggcatgcggcgacgggcgatggccccaaaaatcactgccgcactgatgcctgcattgggcagcattaagccgatgcgttcgccttcaacactgtatttttcaaggatgcgtccaacaaacagcgttttcgtaagcaatttgcgataggagtctggggtaaagttgacgtcttcgacacatttcttcccggctccgaagcggtacattgcactcagtaaagattcgtacagcgtttcacgcgggcgcaccgccattcgcgcttccatcattatttgatgcagcatttcgccagcgattttgcgacggtcacgggcacgcggcgcatccggcatcgccacctgcgttggtggcaaaatatgcagagtaatttgcgggaacaagcgacgtttaaccagacctttcaggcggctgaagtgcgtaagttccgccccttcaatacgcacaggaataaccgttgcaccagacttcgccgcgacaaaacccgcgccatcgtagattttcatcagcgagcctgtcgtggtgatgcgtccttcagggaaaatcaccactggtcggccctgttccaccagacgtaccagatgtttaatagccataggttgcgtcgggtcgagaggaacaaagtcgataaatgatttcagccaacgcatataccactgttggcttattgaggtgtaaacggcaaacactggacgcacaggtaaaaacagtccaagcaaaatgccatcaataaaagagacgtgattaggcgtaattagaacgcgctcgcccttcagtgcctgggtgtcacccgtaacgcgaacgcgatacaaaacacggcacaaatttcgaaaaaagctaaaaagcattccaactccctttgctctgattcagtaaaagcgaatggagggagattacacgagataaagaacgcgagcgacagtaaattaggtgcgaaaaaaaacctgcgcatccgcgcaggttggtgcaagagacagggtacgaagagcgtaccgaataatctcaccaatcaatacctctgggatcttgattgtggtctgcacgacgactcttcgccagcgagaaaacgcaaaggaatgaagggaaatgcaacgaggtgtgtaaattgtcggttactgttacagattgatgaccggcaaaaaaaacctgcgcatctgcgcaggctggtgtaattcatgtgctcaacccgaagttgacttcacctatcaatacctctgggatcaccactttagcaacctgaagccaaacgccaccagcggtcaatcgcaacagcgtttcgcaaagtgtaaccaaaggtttgcaatctctttttttgtcttacttatttgcgtttggctcacattcccacgatgaaaacacgccaccccttgaaccaacgggcgttttccgtaacactgaaagaatgtaagcgtttacccactaaggtattttcatggcgaccataaaggatgtagcccgactggcaggcgtttcagtcgccaccgtttcccgcgtcattaataattcacccaaagccagcgaagcttcccggctggctgtgcatagtgcaatggagtctcttagctatcacccgaacgccaacgcccgtgcgctggcgcagcagaccactgaaacggtcggtctggtcgttggtgatgtttccgatccgtttttcggtgcaatggtgaaagcggtcgaacaggtggcttatcacaccggtaattttttattgattggcaacggttaccacaacgaacaaaaagagcgtcaggccattgagcaactgatccgccatcgctgtgctgcgttggtcgtccatgccaaaatgatcccggatgctgatttagcctcattaatgaaacaaatgcccggtatggtgctgatcaaccgtatcctgcctggctttgaaaaccgttgtattgctctggacgatcgttacggtgcctggctggcaacgcgtcatttaattcagcaaggtcatacccgcattggttatctgtgctctaaccactctatttctgacgccgaagatcgtctgcaagggtattacgatgcccttgctgaaagtggtattgcggccaatgaccggctggtgacatttggcgaaccagacgaaagcggcggcgaacaggcaatgaccgagcttttgggacgaggaagaaatttcactgcggtagcctgttataacgattcaatggcggcgggtgcgatgggcgttctcaatgataatggtattgatgtaccgggtgagatttcgttaattggctttgatgatgtgctggtgtcacgctatgtgcgtccgcgcctgaccaccgtgcgttacccaatcgtgacgatggcgacccaggctgccgaactggctttggcgctggcggataatcgccctctcccggaaatcactaatgtctttagtccgacgctggtacgtcgtcattcagtgtcaactccgtcgctggaggcaagtcatcatgcaaccagcgactaaccgcagttaaagcaattccagcgccagtaattcttcgatggtctggcgacggcgaatcaaccgcgcctgaccattatcaaacagaacttctggtaacagcggacggctattgtagttggatgacattgatgcgccatatgcccctgtatcatgcagtaccagataatcacctgccttcacttccggcaaggcgcgggtttcaacatttcccccttcctgctgggtaaagacatcgcccgattcacataacggtccggcgacgacggtttccaccgttggcgcgtgttccagagaacgaccatcagctgccagggcactgatatggtggtaactaccgtacattgccgggcgcatcagatcgttgaacccggcatcaaccagcacaaagtggcggctccccatttgtttgacgctccgcacctgagtaattaatacgccagactgcgctaccaggaagcgacccggttcaatttccagtttcacagggtggcccaaatggcgggcgatttgctcacgcgcggcattccacagaccataataatgttcggtatcaaccgcctcttcaccctgttgataaggaacagaaagcccaccgcccgcagaaatagcctgtaaatcctgaccgaattcgatgacctgacgcaccatagcaccacacacctgttccagatgggcataatcaacgccagaaccaatgtgcatgtgaatgccgaccagctgcagatgatgacgttgtatcacgtccagtgcggcgggcagatcggtgtaccagataccgtgcttgctgttttcgccaccggtattggttttttggctatgtccgtgaccaaaccccggattaacgcgcagccatacccgatgccctggcgaaacctggcccagttggtcgagcatatcaacagaacccgcattcaccggaatttgcaattcactgacgcgttcaagcgtcgcctgatcgataacatctgccgtaaaaacaatatcatcggggtgcgtttgcggattgtaacccgccgccaacgcacgctctatttcgcctaacgagacggaatccactttcacgccctgctcacgcattaagcgcaaaatatgaatattggaacaggctttctgtgcaaagcgcaccacatcaaactgtttcagcgctgcaatctgccgacgaataatttgcgcatcgtagacccacaccgggcagccaaattcagcgggcaaacgcagcagattttcggcggtgagatcggtatcggtgctgaacagtgaatgtggcataacaaactccagataagtgcttttttatgattacgccacatcataaaaagaataaaaaatatcgatttatgtcgagtctatgcaaaaatgatatggattaccggattgcgagagagcgctaatggccgccgttaacttacgtcatattgaaatttttcatgcggtaatgaccgccggaagcctgactgaggcggcacacctgctacacacctcacagccaaccgtcagccgcgaacttgcgcgctttgagaaggtgatcgggctgaaattgtttgagcgcgtacgtgggcgattacatcctaccgtgcaaggactgcgtctgtttgaagaagtgcaacgatcctggtacggactggatcgcattgtcagcgccgcagaaagtctgcgcgagtttcgccagggagaactgtctattgcctgcctgccggtcttttcgcaatcttttttaccgcagctcctgcaaccctttctggcacgttatcccgatgtcagcttaaatatcgtgccccaggaatcaccgctacttgaagagtggctctcggcccagcgtcatgatttaggactcactgaaacgctccatacgcctgcgggaacagaacgtaccgaattactctctttagatgaagtgtgtgtgttacctccgggtcatccgctggcggtaaaaaaggtattaacgccggatgattttcagggtgagaactacatcagcctttcccgtactgacagctatcgccagttgctggatcagctatttactgaacatcaggttaaacgacgcatgatcgtagaaacccacagcgccgcgtcagtctgcgcaatggtacgggcgggggtaggtatttcggtggttaacccgctcaccgcactagattatgcggcaagcggtttagtggtgcggcggttcagtattgcggttccgttcaccgtcagcctgatccgccccctgcaccgcccgtcatcagcgctggttcaggcgtttagtgggcatttacaagcggggttaccgaaactggtcacttctcttgacgctattttgtcgtcagctacgacagcataaaagcgacagcatcctcggcatggatcgccgcggtatcaaacacaggcaaaacactgcgctcttctggcaccagtaaaccaatttctgtgcagccaaaaatgacgccctgtgcgccctgttctgcaaggcgagcaatcacttgcgcacaataagcgcgtgacgcttcggtaaattgccccagacacagttcttcaaaaataatctgattaattttcgcccgttcatccgcttcaggaataagacaattgatggaaaattgttccgtcagccgcccgcgataaaaatcctgttccatggtgtaacgcgtacccagcagcgccacacgagtcattccggccccggtaattgcacgtccggtggcatccgcaatgtgtaagaaaggcagagtgcaacgtgactcaatggcatccgccactttatgcatcgtattggtacatagcacaataccttctgcgcccgcccgctgtaagccaagcgccgcctcagccagaatgtccccggttttatcccattccccgcgacgctggcactcttctatttcatgaaaatcgacgctatgtagcagcacttgcgcagagtgaagcccaccaagccgctgtttaatgccttcatttatcaaacgatagtaaggaatggtggattcccagctcattcctcccagcaaaccaattgttttcattcctctctcctgatgtgtgttaccgcaacaaggctgaataaggaacgagacaaacgcctcaacggccaagtgcccaatctctattaacgaaaaaagggccggatgtacagcacatccggcccgtgaaatcagacgccgatatttctcaacttctcgcctgccatcagtttgcgttcgatatgttccagcgtgacatttttggtttccggaatgagccagaaagtaatgcccacaaacgcaatgttcagcgcagtgtagagccagaacgtaccggcagcgccaatgctatcaagcagtgtcaggaaggtcgcgccgataatcatattcgacacccagttcgtggtggtcgaacaggtaataccgaaatcgcggcatttcagcggctgaatttcagagcacaggatccacaccactggcgcggcgctcatcgcataaccggcaatacacatcatcgtcatgccaacagagagccaggacaagccactggaagccgtaccgttatcaaactgcatcaggcaatagcccagcaccagagtgcctaacgccatcacgctgaaaccaattttcagagccggtttacgccctgctttatctaccgtaaacaccgcaataaaggtggcgaacataaaggtcagccctacgaccagagtcgcaatcatctgttgttctgtggtcgtaaagcccgccattttgaagatacgcggcgcgtagtacatgatgatgttcataccggtaaactgctgcatcgcctgcaacaacataccgagaaacacagcacgacggacgttacggttgatcttaaacagtgcccaaccgccctgttttaacttcaggctttcacgaatttcgttgagttcttctcgcgctttttccgacgtatcgcgcagcatacgcaatacttcttccgcctcaatatgacgccccttttccgccagccagcgcgggctatttggcaggaagactaccagaataatcagcagaactgctggtaaagcaagaacccccaacattgcgcgccagttaccgctataactgaacgctgtatcggataaaaacgccagcacgatgccgagtgtgaccatcaactggtacatactgatcatcttaccgcgaacgttttcacttgccatttcagaaagatacagaggagcggtgtaagacgcgatcccgacagcaatgcccagcaccacacgagcggcgattaacatctctacgctggtcgcaaaagcggaccctatagaaccgagtacaaacaggatggcccccgccatcaggctgtatttacgccccaggcggaacgacagccaaccattaaacagcgcaccaattgctgcaccgagcatcatgctactaaccacccattcctgcaaacgactggtcagcacaaagtgatcggtaatgaacggcaacgctccggcgattacgccgatatcaagaccaaataacaatcctgcgaccgcagcagctaccgaaacaaacatattcatacgccgcgtatcccgcaaagaacgtggcgttaaagcagattccgtattgatagtaaccattttttcctgccagcagagagtaagacatagtgaaaaaatacgtgaacaactcacgcaggtgtcaggtcggaaacagcataaatatggattaaattgctgcgacatgtcgttatgtgatggatattccaattttcaaattaagttgaattattgagattattattaaccacctaattttacagcagataaaattcataaagttcattaattgataattaatatggattatttcataaccatgatatggattatgatgatctacaggtataaaaaaccctgccatgcggcagggtcataaaagtaagaagaatgaattaacgcgccagccaaccgccatccacggcaatggtataaccattcacataatctgaagcgctggaggcaaggaacactatcggccccatcaggtcactcggcagtccccaacgaccagctggaatgcggtcgagaatttccgcgctacgttgttcatctgcccgtagttgttgagtattgttggtcgccatgtaacccggggctatcgcattaacattaatgttgtgtttagcccattcgttcgccatcaatcgcgtcacacccatcacgccgctttttgatgcggtataagaaggcacacggatcccgccctggaaggagagcattgacgcgatattgataatcttgccgccattgccttgcgcgataaagtgtttcgccgctgcctgagacatgaagaatacgctcttgatattcaggttcatgacatcgtcccagtccttttcgctgaactcgagagcatcttcgcggcgaatcaatccggcgttattcaccaggatatcaatatgaccaaactccgctaccgcgcgatccagcagtgctggaataccatcaatctttcgcagatcggcggtcaggcttaaaaaacgacgccccagcgctgtgacctgctcgatggtttcagtcggttcaacgatgttaatgccaacaatgtcacagcccgcttgcgccagccccaacgccatcccctgacccagtccagtatcacaaccagtgacgaccgcaactttaccttcgagagaaaatgcacttaaaatcataacaataccttattcgtttatgcccacaactagcgcaaatctttaacggccacatggtccatatcatcaaagacctggttttcaccgaccatgccccagataaaggtataagctttggttccgacaccggaatggatcgaccagctcggggagatcaccgcctgctcgttatgcatcacaatatgacgcgtttcttgcggctgccccatcatgtggaaaacgcaggcgtcatcatccatattgaaatagaaataaacttccatccggcgctcgtgggtgtgacacggcatggtgttccacaagttacccggagccagctccgtcagccccatactcaattggcaggtttccagtacatccgggacaaaatatttgttaatcgtgcgacggttactggtgaggttatcgcctaacgtgactggagatacttcgtccggtgtgacttttttggtgggatacgtcgtatgcgcgggtgcgcaattgtaataaaacttcgccggagtgccggtatcaatactggcaaagacaacttcttttgcacctttaccaacatacagggcgtcgcggtgaccgatttcatagcattggccatcgacagtaatcgtaccggcaccgccaatattgataacacctaactcgcgacgttcaaggaaatagcttacgccgagttgtttaccaacttccccgccaacggaaaccgttttagttatcggcataatgccgccaacaataattcggtcaatgtggctgtaaaccatggtgtactcatcggcgacaaataccttttcaaccaaaaattcattgcgcagcccttgggtatccagcgtttttgcgtgcgcactgtggatgctctgtcttacgtccacatcaacctccgataatcagtgaagcgtgaaaatagaaaacgatagtgaaacactgtttcgttttctctataaagggatgatatgcccatgggctagggttttcaattaaaaataaaacaatgtttcatttttaagttaaggattaaaaaaagtgcagtgtcgatcacgaatatgtcatgagaatggaaaaatgagggagcccagaaaatgtatgtcgacttgccagccatcattattcaacagattaatgacggcagatatttatcggtaaggaggaaatgcagagctattcgtcacgttcaatggtcaatgccacaccctggcccccgccgatacaaagcgttgccagtcctttgcgggcattacgtttcaccatttcatgaaccagagaaaccaggattcggcaaccggaagcgcctatcgggtgaccgagtgcgatcgcgccaccattgacattgacccgacgctcatcccactcaagcatcttgccaaccgaaagcgcctgtgcagcaaacgcttcattagcctcgataagatcgacttcagccaactgccagcctacacgctccaggcaacggcgggtcgcatacaccggcgcaattcccatcaatgccggatctacaccaacgctggcaaatgcgcgaatgcgggccagcacgggtaaattcaacgctcgtgctttggcttcgctcatcatcattaccgcagctgcgccatcgtttatggatgatgcattacccgctgtcacagaaccgagactatcaaatgaaggatttaaacgggctaagccttctgcgctggcgtcagtgcgtggctgttcatcggtatcaacaaccaacgtctgcccgttactttgggtcattaccgggacgatctcatctttaaatcgtccggcgtcaatcgccgctcgcgctttttgttgcgagctaagtgcgtaagcatcctgcaactgacggctgatgccatattcgcgagccagattttcggcggtgacaccaatatgataatcattgaaggcatcccacaacccatcatgcacaagactgtcaaccaactggctattgccaagctgtgcaccggtgcggctatcagtcagaacatgtggtgcgcggctcatgttttcctggccaccggcgatgacaatatcagcctcgccacactgtatcgcctgagtagccagatgcagtgctttaagcccggaaccgcaaacgtcattaatagtgattgcagaaacgctattaggcagaccacctttaatagccgattgccttgccggattctgccctgcccctgcagtcaacacctgaccaagaattacttcatccaccgcatatgcaggaacgccggtacgttctattaacgctttcacgaccagactaccaagttccacggcggaatgacccgctaacgcaccacgaaagcagccgataggtgtccgtaacgccccgacaatcacaacgtctttcatcacaacctcgcaccaattaacagtgcaatagtaaatgattgttaattacagttatcttaattgtttaaaaaaagtgatttttatcacaaaggaaatatgcctgagcagcagtcagagacataactggcacgtaaggtttgcaaccactaacccaccaatagaggggtagatagggcgttaatctcccatacttaacctggtttatggtaaattgccctccattttgtttaatttgtagatgatacgttcagataatgtctaatatttggtctaaagaagaaactctgtggagtttcgcgctctacggcacagccgttggtgcaggcacgctcttccttcctattcagttaggttcggcaggggctgtggtcctgtttattactgctctggtcgcctggcctttaacatattggccacataaagccttgtgccagttcatcctctcatcaaaaacatcagcaggtgaagggataacgggcgcggtaacacactactatggcaagaagattggtaatctgattaccacgctgtacttcatcgccttttttgtcgtcgtgttgatatatgcagtggcaattaccaactcacttacggaacagctggcaaagcatatggttattgatcttcgcatccgtatgttggtgagtctgggtgttgtattaattctgaatctcatttttctgatgggacgtcatgccactattcgggtaatgggatttttggtattcccattgattgcctatttcttatttctttccatttaccttgtcggtagttggcaacctgatctattaacaacccaggtagagttcaatcagaatacccttcaccagatatggatatcgattcccgtgatggttttcgcctttagccatacgcccattatttctacgtttgccatagacagacgtgaaaaatatggcgaacacgctatggataaatgcaaaaaaattatgaaagtcgcttatctcatcatctgcataagtgtactgttctttgtctttagctgcctgctttctattccaccttcgtatattgaagctgctaaagaagaaggggtcaccattttatcggcgctttctatgctgccgaacgccccagcatggttgtcaatttccgggattattgtcgcagtagttgcgatgtcgaaatcattcctgggtacgtactttggcgttattgaaggtgccacagaggtcgtcaaaacaacactacagcaggttggtgtaaagaaaagtcgtgcatttaaccgcgcactatcaattatgttggtatcgctgattaccttcattgtttgttgcattaacccgaacgcgatttcgatgatttacgcgatcagcggcccgctcattgccatgatacttttcatcatgcctacgctgtcaacgtatctcatcccggcgcttaaaccctggcgttccatcggaaatctgattacgctgatcgtgggtatcctgtgcgtatcggtaatgttctttagctaatatcagttgtggatggttcaaaattgctacaattttgaaccattccatttttcataatattcatttgttattattccaccctatcacttctctcgtcatatcctagtattatcagttagttaaacacacaaagagatctgaacatcttaaataagactatttaagatgcataacttagattcgcaagatatcttctggtcattcaaaaacaatttgcgatatagatattcttataccatgagatagttatctggaccgctctcaaccatgcaagattaaatcagtgaaacataatcatatttgataacgagaaatgcatttttaaatgccttactcagaattatagcaaatacagattaatcgcaatttttcccggcaaaattacaaaatcatggtgtattgacatcatcaataaccaatgaaattatgcaattatatacggatagggaggttcttaacatggggctttgtagtcgttataaaagtcttacatgcaatagttgctcaatgcattgccaaataatgccagaagagtcaccgcgtttgcagtattgcgcaaactcgtgtttttgtatgtggcccgaagaaagttcatattttaatcgtggtgtggtagaaggtatcttaacaaaaaaccacaatgcgagattaagcggatatatttttgtcgatttttcagtaagttttttacgtctattccttgaaaaagactggattgactatcttgcaagtactgacatggggattgttttagtcagcgaccgcaatatgcaatcgttagctaattactggcgaaaacacaactcagcaatatctgctgtcatatataatgatgatggtcttgatgttgccaatgaaaagatcagacaactatttattggtcgttatttatcatttaccggaggtaacacattaactcagatggaattcaccataatggggtatatggtttctggttataatccatatcagattgctgaagttctggatatggatatccgtagcatctacgcgtacaagcaacgaatcgaaaagagaatgggtggtaaaataaacgaattatttattcgttcacattcggtccaacattgatactcaacgaccagccagaatcatactctgtttatacgggcatttattgaaatgtccgtattttataaataggccgtcccctcaagagtaaacaccatagtatttaaaaccatcacacgaaaaattcagaagcattacgaaatatgaatttacaaacaatagtggcataaatgttaaccatgttaatttacgtaaagttttacgttgcaacattaaagcctcatttcaatcatcatgataaatataaaattaatatatatttatgccgtaaataccaatatacttagcaaactatgtgatctccatttcgattgatttagtgtttattgacgtatgtactggattattaacgataatatcgagttctggcctgagcaccgaaaattaatatcggtacataacgccgatcttaacgtcgttctgacaacgccagccagtcgatgtttatcacttctacttgaagcttttcctgatgtggttgcacaacaagattttttcaccagagtctgggaagaagaaggtatgcgtgtgcctactaacacgttatatcagaacatatccattatcagacgcggatttcgcgctgttggtgatactacccactcgctaattgcaaccgtgccgagaagaggattcaagatccataatgacattaacatacaaaatcatgtaataaactcgtcaacagacgcacatacacacaatgccccacctgccataaaagttaatgcgggatacaaagagagcattggtggcgcaaagaatttcaataacaaaatcctcaaacatataaaaagtcatctaattatgttgagcgcatttgtcataggcgcatattctgcatattggctatggaataataatcaaccgaagccatttttcaaggattacaagactgttgcggaaattaatggctgccattttaatgtaacagaagatacaattgatgggttgaaagagttcgataaatataaaacacggatactggattcggggattaactgtaaaaaacatccgtggttatacttccctcttgcaaaatcctcaccggggatgattgttatggcatgcaataaaaactataaccaacatgaagtggcaaactgtttaaccctgtcttaccgtgaggttaatcgtgattgattataaaaaaaacttattatttattttagtttttatcagtgggtttattctcttcactgtctattcttacactgcagaaaaaatgatatataacgaaacatgcactgcaaattgggtaatttttaatgaccagggacgagcaaatcttaccatcgactttatgtataacaaaaaaaataaaacaggaactgttgcgttgagtggaacctggcaacaaggtaacagagaaagtaaatcaatacggcgaaatattgaatacacatggattgaaaactatgacacagcccatttaacatcaaagaaaagttaataagtttgagattatggatcaagttgatgatgatagacttgcacaacttattcctgatttttatgtctttccagaaaaaagtgtaagctataatatactaaagcaaggtaagcatgcttttattttgagcattggtaacagagcaataatgcattgtgcaaggtaaactaaaatagataacaaaaagatggaacctcgttaatcataaaacaataaaattaaatattctcgcagtatatggcagtctaaagcatcaaagatttgatcaacatctttcattttagacatctccttgcaatgtaaaatatcatgtatcaacaacatctggtgcaaatccatgagtcgaactcgacattcatcttagctcgattattattccttcgtacagtcgatgtaaacaatacagaaagaggattattaagaaccagtttactcagtgaatcaatagaggaaaggactaacgtttctttaaaagaattgatttcatcatctgttaaactaaactcatcattgacagatcgtgagatataactgtttttaactttactctttacgttgactttattgacagaattaacattcacatatcttgaatttaatgtccatgatgttgtttgcgtgagaacattctcagcattaaggaatttttttaacggaatccttggtttctttttcgagtccgaatttacaatatcatgcatatagaccatttcatgaatctgcgaaaattcaatgtccattgtatacctcacatttttaccgtgactcgatgttactgttcaataatcaccttccatcaatactaaaattaatacccctaatgtgccgataacaaatatagtcattctacgtaacgtctccataaggtgatatttgacattatcagaagctgcgaattcggattttgctctaatcaaatgagagaaatgtaaaatgaagccacgaaatattaataatagcctaccactgcaaccattagttcctgatcaggagaacaaaaataagaaaaatgaagagaaatccgttaatccagttaaaatcacaatggggtctggtttaaattatattgaacaagaatctcttggaggaaaatatctaacacatgatttgtcaataaagatagcggatatttctgaagagataattcagcaagcaatattatctgctatgagcatatataaattttcgataacagatgatttaatgagtatggctgtaaatgaactcataaaactgaccaaaatagagaataatgtagacctgaataaattcactactatatgcacagacgttctatccccccgcgtcaccagacataataaagaaaaaaacaaacgacattctacccttctcaaaaatcccctttttaattttcattgaaaaaatggcaattgatactatgaatccaggtcatacacattaaggcatttatgtaatgtcgtaattaagataactaataaggtgaatattagtaaaacaactaatgatgttattagtttgtagtgaacagtacttttaccaataatgaaaaatataccataagcaatgcaagcttaaaactcataatttaaaaaagataaatataaaaatatcaatgagtcaatcaataataatttggcatcacgagacacatcacagaggaatattatgagcacagaaacaattgaaatattcaataatagtgatgaatgggcaaatcaactaaaacacgcattatcgaaaggagaaaatctggcattactacatggtttaactcctgatatccttgatagaatatatgcatatgcattcgactaccatgaaaagggtaatataacggacgcagaaatttattataaattcttgtgcatttatgcgttcgaaaatcatgagtatctaaaagattttgcatcagtatgtcagcccaaaaagaaatatcaacaagcatatgacctttacaaactaagttacaattacttcccgtatgatgactattcagttatttatcgtatgggtcaatgtcagattggggctaaaaatatcgataacgcaatgcaatgtttctatcacattattaacaattgtgaggatgatagtgttaagagtaaagcgcaggcatatattgaactcttaaacgataattcagaagataatggctaagcattacaatcatttggttaaatttgctggttatagtgcagttaaccactataaccagcacctcttatgttttcttaaatcagcatcttaaaacagttaagagcatactataaatcattatttttcaatgcgttagagaacaatctactttatcaaaattgaataaggctatttcagattacatcactgaattcctaagataaattagtgaacacaaccatagatatgtcaaatgtaatttcctgtagcgttaatgacacataaatatgaatagccataatttctattgcttaagcaggatgcaagaaaccaattttttcatagaggttaactaatggacttagaaaataaattctcatatcattttcttgagggattaacgctcacggaagatggaattcttactcaaggaaatgagcaagtttatattccacagaaagagttaggtgtattaatagtattacttgaatccgctggtcatgttgtactgaaagatatgatcatcgaatcagtatggaaaaatattattgttagtgacgagtccctgacaagatgtatctattctttgcgctgcatttttgaaaaaattggctatgatcgttgcatagaaacaatctaccggaaaggttatcgtttcagcgggcaggttttcaaaactaaaattaatgaagataatacttcagactattccatagctatattccctttcactacttcattgaatacactggatccattaatacttaatcaggaattagtgcaaatcatttcaaataaaaaaatcgatggtctctatacctatccgatggctgcgacaaatttttgtaatgatcacatatctcaaaattcattcttgagcagattcaagccagattatttcgttacaggaagaataaaccagaataatgcagtgaacactttatacattgagttgatcgacgctaaaaaccttttcctcatcgccagtaatcatctccctgttgatgaactacataatacatcacaatttattatagataatatccttcaaacggtacataaaccagaacgatctgtaagattagctaagcaggaccaaggatataagaatcattatttatcagatgaaatgttagccggaaagaaagaactttacgacttcacccctgaaagcatttacagggccatgactatatttgatagattacaaaataaaagtgatatacagacgctaaaaacagaatgttattgccttctagcggaatgccatatgtctttggcacttcatggaaaaagtgaacttgaacttgctgctcaaaaagcattagagcttttagattatgtatcagacataaccactgtcgatggaaaaattttagctattatgggactgataactggtctgtctggacaagcaaaagtatctcatatcttatttgaacaggctaagatacactcaactgatatagcctctctctactactatagggcactagtccactttcataatgaaaaaattgaagaggcaaggatttgtatagacaaatcactacaactcgaacccagaagacgaaaagcagttgtgataaaagaatgtgtagatatgtatgtgcctaacccgctcaaaaacaacattaaactctactataaagaaactgagagtgaaagccatcgagttataattgacaacattttgaaattaaagcagctgacgagaatttgtatgcgataaatttttattgacgcaattttattatttagatgtatgcaacttgttatttaaacaacagagataaaaatatctaagatattcaccttattgcaagatatttaaaatgctctagagttaaaagtatgatgtaaagaccattggcctggacaattaaaaaagggagctttatgactaatccaatcggtatcaataatttatctcaaagttcaaatatagcgaatgcaacgggtgatgaagtcgtatcattagataaacacatcaacaccagtgctactgatacagatcaaatacaagcatttatagtttcaacatggatggcgccttttcaaaatgatatgtattcagaagataatcctatctcaccttactataaaattgagtggtagacgattgaccaaataaatcataacgagatacttttataatagtatctcgttcctttcattcaatcctcacacatgaaaaaatatgcgctcaccacaaagttaaattcttaaccatcttcacgttttgtatatttattacaaaaatgtctttcgccagcaactcttgctctaatgaagcaggaacaatgttcagaatcgaaccaaatttaattaaagctatcgctcttgttgaaagcaatctaaaaaaggatagcataggcaagaacagagataagaataacaatataaagagtttagattattggttaatgcagataaaccagatgcatattcccctgttaaaaaaacgtggaataataaaagatgaacgagatttgttagataacccttgtctgaacattaaaataggaaccgagattttatataaccatttttcacgttgtggagtaacgtggcaatgcctggggacttataatgcgggttttgcaatggataaccaaaaaaagagacagcaatatgccccaaaatatatattgtatataccaggcttaatgaactagacaatcgtaaggcttcagcaaaatgagcctaaagcctcttttttttatatagtgcaaacacccatacgtaaagctgttttgatcaactcgataccactgtgaacatctaatttcttcatgatattgagtctatgagtttcgactgttttcctgcttaactgcaagaaattagcgatttctttgtttgttttaccatcagctatgagttgtaatatttctgactcacgatttgtaagttgattatcagaggaatacctggaagatattttttcacaatccatatgtacactatcaaaataagtgtaaccattactaatcgaatcaatagcacgatttagtttcgccgggtgactggttttccatacgcatcctttcgcacctgcttcaagcaattttattgaatcaatatacggcatctttgctacaaatgtaataatatgagcatctatcttatgcgatttaacccattttacgagttcggcccccatcattccacctgcaaattctcctaaaataaatatttaggctgtagatttgttacactccgctatagctttcttcagatctttatagcccccaacaacctcatataaatcaggataatgtccgagaaatccaattatcccatcaatcataaacggctgctgatctgaaactacaattttaatttttcccatatattcatcctgagtgtaaatgctttaacgcattcatttataatcatcccttccattattattataagcaaaatccaaagaatacattgatgaaataataatgaaatataattaaaaataaaatttttgcgtaaaaaaataccacaggcattaaaaaatcatgagatgattaaaatattacaattagattatattcaaatcattaaacttgagccagggagctataagtcctcagggcttgccaaaacagaattattcatatccaaagaatgtgtttcaaacattttttcaactaaataatgtctggcttgttcgcagatttcgttaaccttgtcaggggagaaacaatgattattaattaaatattgctcacaattatccacaaattcctgcggactaaattcagcaataaattgatcggtaaaaaacacaaaacgcttatcatcatgaaatgtaatatggacattccatattgatttgtcgacaaaatatgactctacttcaagagacttatctttgaaactggtaggtatatggagatttacaggacctgatattgatggtaattttgttacccaactttcaaaaattttgataaaaacatcaacttcttctgaaggttttaacaatatactcttcagatcgtttatcatgtttattcttttttttcaagttctgagcatagcaagcttatcaagggtataaaattatccatctcatcaataatgccttttgtatagccatcataataaccttgaataaatttttcttctctcttttcctcaatactctgaatttttgcggtggtttcaagaaggattttttctttaagagaaactatttctttcaatccatcagaaatttttcttttaatcacaacaccatttgcaggagattttatcaagctcatctctattttttttcgcataaaatgtaattctctctaaaagtgttgatgcaagtggtaacggcgattgtatgtggtcaacaaaatcaggaaataataaattaaatcgttgctgcattgccaatggttgttgccttatatagggtaacaacgttgaaaaaccacatgtgatgatattgtgatagttagcgatgccgggtttgtatcgtgccttttcatttatttccagcggtatagctgataaataatcccttagtacatcaggaaccttataaaaaaacccgcgttctgcaaacctttctcgataaaagtgacaaccactgagtaaacagatcaatggaagtaaattccaattgtttattggatttgcccctatatttccagacatctgttatcacttaacccattacaagcccgctgccgcagatattcccgtggcgagcgataacccagcgcactatgcggatgccattcgttataatgctcgaacgcctctgcaaggttctttgctgccgttaacccgtctggtttgggcatgatactgatgtagtcacgctttatcgttttcacgaagctctctgctattccgttactctccggactccgcaccgccgtgttcttcggttcaagtcccaacatccgggcgaactggcgtgtttcattagcccggtagcatgaaccattatccgtcagccactccactggagacgacggaagatcgttgccgaagcggcgttccaccgctcccagcatgacgtcctgtactgtttcactgttgaagccgccggtagtgaccgcccagtgcagtgcctcacgatcacagcagtccagcgcgaacgtgacacgcagtctctctccgttatcacagcagaactcgaacccgtcagagcaccatcgctgattgctttctttcacggccactctgcctgtatgtgcccgtttcgatggcggtacagcaggttttcgctcaagcaacagcgcattctggcgcatgatccggtaaacacgtttggcattgatcgcaggcataccatcaagttctgcctgtctgcgaagcagcgcccatacccgacgataaccatacgttggcagctctccgataacatggtgtatacggagaagcacatccgtatcatcagtgtgacgactgcggcggccatccatccagtcatcggttcgtctgagaatgacgtgcaactgcgcacgcgacacccggagacaacggctgactaagcttactccccatccccgggcaataagggcgcgtgcgctatccacttttttgcccgtccatattcaacggcttctttgaggagttcattttccatcgttttcttgccgagcaggcgctggagttctttaatctgcttcatggcggcagcaagttcagaggcaggaacaacctgttctccggcggcgacagcagtaagacttccttcctggtattgcttacgccagagaaataactggctggctgctacaccatgttgccgggcaacgagggagaccgtcatccccggttcaaagctctgctgaacaattgcgatcttttcctgtgtggtacgccgtctgcgtttctccggccctaagacatcaatcatctgttctccaatgactagtctaaaaactagtattaagactatcacttatttaagtgatattggttgtctggagattcagggggccagtctaaacttgctcttttcttctggtgtttatctttgaaagatttgtaggataaataacattaagtaaagccgcatcggcttctctgtaatgtttatctttttccagataacctggggattctccccctaaatcaagctgtaacgttattctttcataacctttatctatgaggtggttcaacctcgttgttgaaagagtttcatccagttcattgactttagcttcgcgtagtaaatcagagacaaaaacagagtctttcttcgagagtaggtttgacaaacgttccagtccagaggtcaccagtgcaacggaagatgtgtttaatcgggcatcttcttcccatgctcaggaatcttccataacatagaaattggctttatccagataagcaatcagcagcgcaaccgactttaatcggtcacctttttgccaatcttcagcgttaatagtaccagtgttgattgcttgtataaggagatcaaggtaaagacctaaagcatcattttgtttatggttccacagctgcggcttgccttcttcctgcacatctgccatcacgggggagttgctgtcaaatcggatatgcacagcattcatttgcacgggaattccatccagtcgttttgggttgctaatgacgtcctgcatccgcttaatctggtcgggcgtagacatataatcccacagggtgagcagaaccttttttgcggctacactatttccctgatctgatactaatgccatatagccccataaactatccctcaaccagacagcatcatagtgggtttctgccgctgttttgtcatcttcgaaagtagaagcaagaataaacgttccccagggtttctccgtcaacgttaactttcgtgtgttttctgttaatgttagcaatccttgaatttcgtctttggtatagtggctctttatttcattttgtaatttggctgagtgaatcagaagacgataattaggatacttatctggatttaacgataaataacttttatctgttgctgcccccgtggaattaagaatgttaaatacagattcactcgtcacttctgcccctgtcgcctggcatgtgccgcacgaaaatataccagcgagcagaagagttaatgcagatttccctttcataaaatattccatcaatcgtttgttaaaagcgtagataaccacttatttaacaacttgaaaataaggtgttttacctgggttgttacaaaaggattgcattgcgtaaacgctttttatttacaacaaaatggggaagtattacggcgaagataaattggagcgggcgaagggaatcgaaccctcgtatagagcttgggaagctctcgttctaccattgaactacgcccgcttcgagatgcgtaaggcattataaaccttacgctctccttagcaagtgccacgctgctgactgctgattaattcgccatcagcattttggcttgctgccctgaggcggcaagtaacgtagcggatcaattgccgttgcacggtaacgaatctggaaatgcaggcgaacagatgccgcatccgtgctccccatagtggcgattttttgcccagccttcacgctttgcccattatttaccagcatcgtgtcattatgggcgtaagccgtaatgtaatcttcactgtgtttaatcatgatgagattaccgtagccacgcagctggttgcccacatacaccacctttcctgcacccgcggcgtaaataggtgtaccccgtggagctgagatatcaatccctttattgccgccatctgctgtcgaatacggcatgataactttccctgtcgttggccataaccaacaacgttgccctactggcggccaggatgatttcggtaccgctgatgacggtgtaaccgatgcggttttggtcgttgatttggcggttgatttacgtgtaatactgctacttttcgccccacccagttttagtttctgaccaacttcaatggtgtaagggggggaaatgccgttcagtcgcgccagttcttttacgctggttcccgtggtgcgcgaaatacgatatagcgtatccccccgtttcacggtgtaaacggagccggaatacgttcctgtatcggatgatttgctacccgaacagcccgccaaaagcagtccaaccgataacaacatcacgatacccagagattttttattcaggcgtcccgcactcaaaatctttcctcgcttaaaaaacaagacgccttatcatagcagccagcctcttgatacccaatctcttgcttctggaaaaacgtggtaatagagaaagaggttaatttcatttggcaaagggaagtatcatcagcaaaatattcgctgtagaggtatcgaacttcctgactttttaccctatttcccatcctgatgcgtaataatcccaatttatcacattgattttatcgccactcatattgatacgtatcactgcccctattcagagtcctgtttcgtatcatatctgtgtttttttaacgtcatcacacttcctacctcccctaacgcttatcgtcgtttctggcgtaaatcttgcctgcttagactaaatctttgccataagaaccaaatgttcaaatcgaggggatttctatggaagcgcgggaagcaaccgctacgggtgaatcatgcatgcgcgtcgatgccattgctaaggtcaccgggcgggcacgatatactgacgattatgttatggcgggcatgtgttatgcgaaatatgtacgtagccctatcgcacatggttatgccgtaagtattaatgatgaacaagccagaagtttgccgggcgtactggcgatttttacctgggaagatgtgcctgatattccattcgctacagctgggcatgcctggacacttgacgaaaacaagcgcgataccgccgatcgcgcactgctaactcgccatgttcgtcatcatggtgacgccgttgccatcgtcgtggcccgcgatgaactcacggcagaaaaagcggcgcaattggtcagcattgagtggcaagaattacccgttatcaccacgccagaagcggcgctggcagaagacgctgcaccaatccataacggtggcaatttactgaaacaaagcacgatgtcgacgggtaatgtccaacaaacaatcgatgccgccgactaccaggtacaggggcactatcagacccccgttattcaacattgtcacatggaaagcgtaacatcgctggcgtggatggaggatgactcgcgaattaccatcgtttccagcacccagatcccgcacattgttcgccgcgtggttggtcaggcgctggatattccctggtcatgcgtacgagtcatcaaaccatttgtcggtggcggttttggtaataaacaggatgtactggaagagccaatggcggcattcctgaccagcaagcttggcggcattccggtgaaagtttcccttagccgtgaagagtgtttcctcgcaacccgtacccgccacgcttttaccattgacgggcaaatgggcgtgaaccgcgacggaacattgaaaggttatagtctggatgttctgtctaacaccggcgcttatgcatctcacgggcactccatcgcttctgcgggggggaataaagtcgcttacctttatcctcgttgtgcctacgcttacagttcaaagacctgctataccaacctcccctcggctggtgcgatgcgtggttatggcgcgccacaagtcgtatttgccgttgagtctatgcttgatgacgccgcgacagcgttaggtattgatcctgttgaaattcgtttacgcaacgccgcccgcgaaggagatgctaatccgctcacgggcaaacgtatttacagcgcagggttgccggagtgtcttgaaaaaggccggaaaatctttgaatgggaaaaacgccgtgcagaatgccagaaccagcaaggcaatttgcgccgcggcgttggcgtcgcctgttttagctacacctctaacacctggcctgtcggcgtagaaatagcaggcgcgcgccttctgatgaatcaggatggaaccatcaacgtgcaaagcggcgcgacggaaatcggtcagggtgccgacaccgtcttctcgcaaatggtggcagaaaccgtgggggttccggtcagcgacgttcgcgttatttcaactcaagataccgacgttacgccgttcgatcccggcgcatttgcctcacgccagagctatgttgccgcgcctgcgctgcgcagtgcggcactattattaaaagagaaaatcatcgctcacgccgcagtcatgctacatcagtcagcgatgaatctgaccctgataaaaggccatatcgtgctggttgaacgaccggaagagccgttaatgtcgttaaaagatttggcgatggacgctttctaccaccctgaacgcggcgggcagctctctgctgaaagctccatcaaaaccaccactaacccaccggcgtttggctgtacctttgttgatctgacggtcgatattgcgctgtgcaaagtcaccatcaaccgcatcctcaacgttcatgattcagggcatattcttaatccactgctggcagaaggtcaggtacacggcggaatgggaatgggcattggctgggcgctatttgaagagatgatcatcgatgctaaaagcggcgtggtccgtaaccccaatctgctggattacaaaatgccgaccatgccggatctgccacaactggaaagcgcgttcgtcgaaatcaatgagccgcaatccgcatacggacataagtcactgggtgagccaccaataattcctgttgccgctgctattcgtaacgcggtgaagatggctaccggtgttgcaatcaatacactgccgctgacgccaaaacggttatatgaagagttccatctggcaggattgatttgaggataacatcatgtttgattttgcttcttaccatcgcgcagcaacccttgccgatgccatcaacctgctggctgacaacccgcaggccaaactgctcgccggtggcactgacgtactgattcagctccaccatcacaatgaccgttatcgccatattgttgatattcataatctggcggagctgcggggaattacgctggcggaagatggctcgctacgtatcggctctgcaacgacatttacccagctaatagaagatcctataactcaacgtcatctcccggcgttatgtgctgcggccacgtccattgctggaccgcagatccgtaacgtcgctacctacggtggaaatatttgcaacggtgccaccagcgcagattctgccacgccaacgctaatttatgacgcgaaactggagatccactccccgcgcggtgttcgtttcgtcccgattaatggctttcacaccgggccgggcaaagtgtctcttgagcatgacgaaatcctcgtcgcctttcattttccgccacagccgaaagaacacgcgggcagcgcgcattttaaatatgccatgcgcgacgcaatggatatttcaacgattggctgcgccgcacattgccgactggataacggcaatttcagcgaattacgcctggcatttggtgttgccgcgccaacgccgattcgctgccaacatgccgaacagactgcacaaaatgcgccattaaacctgcaaacgctggaagctatcagcgaatctgtcctgcaagatgtcgccccgcgttcttcatggcgggccagtaaagagtttcgtctgcatctcatccagacgatgaccaaaaaagtgattagcgaagccgtcgccgcggcggggggaaaattgcaatgaatcacagcgaaacaattaccatcgaatgcaccattaacgggatgccttttcagcttcacgccgcaccaggcacgccgctctcggaattactccgcgaacaaggactgctaagtgtcaaacaagggtgctgcgtgggtgaatgtggtgcctgtacggtgttggtcgacggcacagcaatagacagttgcttataccttgccgcctgggctgaaggaaaagagatccgcacgctggaaggtgaagcgaaaggcggaaaactttctcatgttcagcaggcttatgcgaaatccggcgcagtgcagtgcgggttttgtacgcctggcctgattatggctaccacggcaatgctggcgaaaccacgcgagaagccattaaccattacggaaattcgtcgcggactggcgggaaatctttgtcgctgcacggggtatcagatgattgtaaatacagttctggattgcgagaaaacgaagtaaaaggatatccggcctgaattcaggccggattcactgaggttatgtgtttaacaactcatatttcttaatcttgcgatagagcgtagcaatgccgatgcccagttcatcagcaacttgcttcttgctgttatgacgtgaaagcgcctcgcggatcatttgcttttccatctcctccagcgccgtgccgcccgcatcatcgagtgacaggtgcgcctcactgacctctgttacatcactttgctccgttgtgccattattcagcagatttggcggcaatagcgtgctgtcgataacttcacctgaaggaaccacgttaaccagatattccatcaaattgcttaactcgcgcaggtttccgggccaacgatgcttacgcaatatttcgacgacatcgggagcaatgccaggataaaccgatcccagacgacgggtatgcagatgtaaaaagtaatgcaccaatagttcaatatcttcctgacgttcacgcagcggtggcagagttatcgggataacattaagtcggtagaagagatcttcgcggaatttaccttcggcaatgaactgggccaaattctgattagttgcagaaatgatgcgaatgtcgacttgtattgggctactggcaccaatcggcagaatttcacgtgcctcaatagcgcgcagtaatttagcctgcaacattaatggcatatcacctatttcatcgagaaacagcgtgcccgtattcgccgcctgaatcaaccctgttttaccgttggcagaagcgccagtaaatgcacctttaacataaccgaacagttcgctctccagaagctgctccggaatcgcggcacagttgatagcaataaagggtttattccgtcttccgctcaacttatggattgcacgggcgacgacttctttacccgtgccgctttcaccaaccaccataacgctggatgggctgggtgcaatacggctaatgagtcgttttaattgccgcataacacggcactcgccaaccaattgttcaatatgcggttcatcaggtgcatttgctacagaaaaactggtatgcgattggtgaaacgccattaaaaataattgtcggccctgaatgttatgcaattgaccaatgattaattcacttttatcgtcccatgaaacaatatgctgcatatgtccatgggtaaaattactctcaaatgttaatggtctgaaacggataggtttcccaataatattattttgcacaacaccaagtgtttttaaggcagtctgattaacaaactgaacccgattttcatcatctacaactaatacgccctgatccatattatcgatcatggtcgcaaatattttactgatgttatctcctggcccctgatcctccagaagtttcgaaacaaaaatggtggatatatggcgaacataatcagaaaattcgcgtaaattatcactgatatgctcttgttgctcgtgggtaacggcaatcaaacttatcaccccaacacaacgatcctgtaaaatgacaggcgtacccagaaatgctttttcgcggcaattttctttactatcgcaaccttcgcaaaggggatcgaagcgagactgtgtcacaactttttcagttttcgtttccaggacgtggcggagcaggcgtgagttgccgctcaactggcgaccaagaaacttcccatacgcgcccgttccggcaacgcgacacaagttttcatcaacgatctcaacctcaagctgcaaaacgctggcaagcattctggcaaaacgctgaattgtcggttgaatttgcatcaatactgactgcgtagtagcaagctccatagctttaccttccagacttacttaaaagtcgatcattgaagacgttgatggttcacagatcatgatgatattaactcaggcgaaattggctttgataaaaacataagatttttatcattttctaatgaaattatggaagagatatcacatttctatatcaatatgagaattacggcggtgagtttatcaaactgaagagagatagcctgcccctttatcttatttctgatacttagcagcaaataaataacgcgataaaaaaagccaaacgttttcgtattttacaaacaaccagaagctggcatcaatttgtgatcaaccccacacattatccgtcaaattagtcttttgcagccgcgcggataattctggcacacttattgttagtcccaggtatagctgtgaaaacaccaatcactttggcaagtcacagtgaaataaaccactttgcctgtcattccactaccgggactttatgatgaaaactgttaatgagctgattaaggatatcaattcgctgacctccaccttcacgagaaagattttttgttaacgtgggaacagacgccagatgaactgaaacaagtactggacgttgccgcagcattaaaagcactgcgtgctgaaaacatctcaaccaaagtctttaatagtggattaggtatttccgtattccgcgacaactccacccgtacccgcttctcttatgcttccgcgcttaacctgctcggccttgcacaacaagatctcgacgaaggcaaatcacaaatcgctcacggcgaaaccgtgcgtgaaaccgccaatatgatctccttctgcgccgacgctattggtattcgcgacgatatgtatctgggcgcaggcaacgcctatatgcgtgaagttggcgctgcacttgatgacggttacaagcagggtgtactgccacagcgtccggctttagtgaacctgcaatgcgatattgaccacccgactcagtcaatggctgacctcgcgtggttacgtgaacactttggttcactggaaaacctgaaaggtaaaaaaatcgccatgacctgggcctactctccaagctatggcaaaccgctctctgtaccacaaggcatcatcggtctgatgactcgcttcggtatggatgtcaccctggcccatccggaaggctacgacctgatcccggatgtggttgaagtggcgaaaaacaatgctaaagcctccggtggtagcttccgtcaggtcaccagcatggaagaagccttcaaagacgcagacatcgtttatccgaagtcatgggcaccttacaaagtgatggaagagcgtactgaattgctgcgtgcgaacgatcacgaaggcttaaaagcactggaaaaacagtgtctggcacagaacgcgcaacacaaagactggcattgtactgaagagatgatggaactgacccgtgatggcgaagccctgtacatgcactgcctgccagctgatatcagcggcgtatcctgtaaagaaggtgaagtgactgaaggcgtattcgaaaaataccgtatcgctacctacaaagaagccagctggaagccttatatcatcgccgcgatgatctgtcccgtaaatacgccaaaccaggtgcactgctcgagcaactgctgaaagaagcgcaagaacgcgtgaaataacccctcgggccgatcagctggtcggccctctatttccagaggccaaaaggataggatatgtccgttttctcattgaagattgatatcgccgataacaaatttttcaacggcgaaacatcaccgctcttttcgcaaagccaggccaaactggcgcgccagttccaccagaaaatagctggttatcgcccaacaccgctttgtgcgctggacgatctcgcaaacctttttggtgtgaagaaaattctcgtcaaagacgaatcaaaacgattcggtctgaacgccttcaaaatgcttggcggtgcgtacgccatcgctcaattattgtgtgaaaaatatcatcttgatatcgaaacgctgtcatttgagcacctgaaaaatgccatcggcgaaaaaatgactttcgcgaccaccaccgacggcaaccacgggcgcggtgtggcgtgggcagcacagcaactcggacagaatgcggtgatttacatgccgaaaggttctgctcaggaacgcgttgacgccattctgaacctcggtgccgagtgcatcgtcacggatatgaactatgacgataccgttcgcctgaccatgcaacacgcgcagcagcacggctgggaagtggtacaggacacggcatgggaaggttacaccaaaatcccaacctggatcatgcaaggctacgcaaccctggcagatgaagccgtcgagcaaatgcgtgaaatgggcgtaaccccgacgcacgttctgctgcaagccggtgtcggagcaatggccggtggtgtgctgggttatctggtcgacgtctatagcccgcaaaatctgcacagcattattgttgaacctgacaaagctgactgtatttatcgctccggcgtcaaaggcgacatcgtcaacgttggcggtgatatggccaccatcatggcaggcctggcctgtggcgaacctaacccgctgggctgggaaatcctacgtaactgcgccacccaattcatctcctgccaggacagcgttgccgcattaggtatgcgcgtgctgggtaatccgtacggcaacgacccgcgcatcatctccggtgaatccggcgctgtcggtttgggcgttctcgcagcggttcattatcacccgcaacgtcaaagcctgatggaaaaactggcgctgaacaaagatgccgtggtgctggttatcagcactgaaggcgacaccgacgtgaagcactaccgcgaagttgtctgggaaggcaaacacgctgtagcaccttaatcaccctattggaactgctccctgcaaaacggggagtaaaaaatctggagaaaaataatggctaagaatattccattcaaactgattcttgaaaaagcaaaagattaccaggcggatatgactcgcttcctgcgcgacatggttgctattcccagtgaaagctgcgacgagaaacgcgtagtacatcgtattaaagaagagatggaaaaagtcggcttcgataaagttgaaatcgacccgatgggcaacgttctcggttatatcggccacggcccgcgtctggtggcaatggacgctcatatcgataccgtcggcattggcaacatcaaaaactgggacttcgatccgtacgaaggcatggaaactgatgaactgattggtggtcgcggtacttccgaccaggaaggtggcatggcctctatggtttatgccggtaaaatcattaaagacctcggtctggaagatgaatataccctgctggttaccggtacggtgcaggaagaagactgcgacggtctgtgctggcagtacattattgaacaatccggcattcgcccggaatttgtggtcagtaccgaaccaaccgactgccaggtataccgtggtcagcgcggtcgtatggaaattcgtattgatgttcagggtgttagctgccacggttctgcaccagaacgcggtgataacgccattttcaaaatgggtccgattcttggcgaattacaagaactctcccaacgtctgggttatgacgaattcctcggcaaaggcaccctcaccgtttctgaaatcttcttcacatccccaagccgttgcgctgtagcagacagctgcgcagtttcaatcgaccgtcgtctgacctggggcgaaacctgggaaggcgcgctggacgaaatccgcgccctgcctgcagtacagaaagctaacgcggttgtttctatgtacaactacgaccgtccgtcctggactggcctggtttacccaaccgaatgctacttcccgacctggaaagtggaagaagatcacttcaccgttaaagcactggtgaatgcctacgaagggctgtttggcaaagcgccggttgttgataagtggaccttctcaactaacggcgtatctatcatgggccgtcacggcattccggtgatcggctttggcccgggtaaagaacctgaagcgcatgcacctaacgaaaaaacctggaaatctcacctggtgacctgtgccgcgatgtacgctgcaatcccgttaagctggctggcaacagagtaattactcttcacttattcccctccggttcgccggagggtttttggagtttgctatgcgcgtattgatcaaaaacggcactgtcgttaacgcagatggacaagccaaacaggatttgctgattgaaagcgggattgttcgccagttgggcaacaatatttcgccgcagctcccgtatgaagaaattgatgccactggctgttacgttttccctggcggcgtggatgtccatacgcatttcaatattgatgtcggcatcgcgcgcagttgtgatgatttttttaccggtacccgcgcagctgcgtgtggcggtacaacaaccattattgaccatatgggatttggcccaaacggctgtcggttacgccatcaactggaggtttatcgtggttatgccgcccataaagcggtcatcgattacagctttcacggtgtgatccagcacattaatcacgcaatcctcgacgaaatcccgatgatagtcgaggaaggactgagcagttttaaactctatttaacctatcaatacaaactcaacgatgacgaggttttgcaggcattacgccgcttgcatgaatccggcgcgctgaccaccgtgcacccggaaaatgatgcggctatcgccagcaagcgggcggaatttatcgccgcagggttaaccgcgccgcgctatcatgccttgagtcgccctctggaatgcgaagcggaagccatcgcccgcatgattaacctggcacaaattgccggtaacgccccgctctatatcgtgcacctgtctaacggcttaggtctggattatctgcgtcttgcccgtgcgaatcaccagccagtctgggttgaaacctgcccacaatatctcctgttggacgaacgcagttacgatacagaagatggcatgaagttcattcttagcccaccgctgcgtaacgtacgcgagcaggacaaactgtggtgtggcatcagcgatggtgcgattgacgtggtggcaaccgatcactgcaccttctcgatggctcaacgcctgcaaatttctaaaggcgatttcagtcgctgcccaaatggcttacccggtgtggaaaaccgcatgcagttactgttttccagtggcgtgatgacgggacgtataacaccggaacgctttgttgaattaaccagcgcaatgcccgccaggttgtttggcctgtggccgcaaaaaggattattagcgcccggttccgacggcgacgtggtgattatcgacccacgtcagagccaacaaattcagcatcgccatctccacgacaacgccgactactcgccatgggagggttttacctgtcagggcgcgattgtcagaaccttatcccgtggtgaaacgattttctgtgacggcacctttacaggcaaagccgggcgaggtcgtttcctgcgacgcaaaccgtttgtccctcccgtgctctaaccactgccagggatctatacacaatcaagaatgatgagtgaggaaaaatgagtaagaaaattgttctcgccctgggcgggaatgcgctgggcgatgacctggccgggcaaatgaaagcggtaaaaattacttctcaggcaattgttgatttaattgcccagggacatgaagttatcgtcactcatggtaacgggccgcaggtgggcatgattaaccaggcctttgaagctgccgcaaaaactgaagcgcactcgccaatgctgccgatgtctgtctgtgttgcattaagccagggttatattggttacgatctacaaaacgctttaagagaagaactgctttctcggggcattaataaacctgtagcaacgctggttactcaggtcgaagtcgacgctaacgatccggcattcctcaacccgaccaagccgatcggttcgttctttaccgagcaagaagcagagcaactgacaaaacagggttacactctgaaagaagatgctggtcgcggctatcgccgtgttgttgcctcgccaaaaccggttgatatcattgaaaaagaaacggttaaagctctggtagatgcaggtcaggtggtgatcaccgttggcggtggtggtatccctgttattcgtgaaggtaaccatctgcgtggtgccagcgcggttatcgataaagactgggccagcgcccgtttagcagaaatgattgatgccgatatgctgatcattctgactgcggtagaaaaagtggccattaacttcggtaaagagaatgaacagtggctcgatcgcctgtcattaagtgatgctgaacgctttatcgaagaaggtcattttgcgaaaggttctatgctgcctaaagtggaagctgccgcctcgtttgctcgctctcgcgcaggtcgtgaagcactgattaccgtattgagcaaagcgaaagaagggattgaaggcaaaacaggaacggtgatttgtcagtaatttaaaggccgggtgggtaataccatccggccaaagattgtcaagtaagtgcgctttgttgatgccggatgcggcgcgagcgccttatccgtcctacaaaacatcgcaaattcaatagattgcaatgcacttgtaggcctgataagcgtagcgcatcaggcaatttggcgtttgtcatcagtctcaggccgggtgggtaataccatccggccattttcatttaagccacttccagcacttcttttgtcgctttcacgccctgatgcatcaacatcattaacgcctcaagtacgccgccgccaatcgcccgggctttatcagaaacgctggtgaaatcagcggtttcaccacgaggatcgatatcaccaattttaaaaccaccaaccactgccaggccgtcgttcaacaagccacgcaccatccccgtcaacggtgctttaatttcatgctcaccaatccaggcaatcacatcgccctctttcaccagatcgcctaatttcacgttggatcgcataatgcctgcagcaggagcacggatcacccgtcgggtggtatgccccataatattgccaggaacaccggtattctcctgcgcacaaccagagtaaatcacctgaccgagccagtgcccgcgatttgtttcaattaccgcatgacaatccttcccagcagtaaagcccggcccaagcgcgattgttactggtgccatatctgcccgcgttcccaaattctgtttcgccagaatagcgtccaccacgcaaagcggtttcagttcatcaagcaatgaacaggcgggatctaccatcacaggaatgaatccgcgttcggtaagtttcatcgcttccgcagagctggttgccaggcgagcagtgacgccttcgaccgtcatttcgccatcgaacacggcctgggcaaacgccacggtacaacgaatcactgtcggtttttccacttccagcatgatcactttaaaacccgcatgatacagacgtagcgccacaccactggcgatatctcccgcaccgcgaatcaccaccagctggtgtccggaaggatgagaaggtttcatcatcagcccacccggcgcgttatttttcacctgtaatatttctgccagcacgctgatggcgatctcctgcggcgtttccgcacctatgttgtaaccaacgggcgcatgtaaacgggcaatatgttcttcagccacgcctttctcacgcaattgacgcaggaaaagctgaaccttgcgacgacttgccagcaaccccaaccatgcaatgggctgttcaatgagtttgtcgagggcttcacgatcctgattattcgtggcaatcaggacaaaattatcagggcgaatatccagtgcttccactgccgcaccaaacgactcagcatggagaagcgtggttgatggtgggaatagttcaggattgaggctttcgcgataaatatcagcaacggcaatatcaaatcctaatagcgccgcactctgggctatcgcccggttgacatgccccgcgccaatcaacaccagacgtggacgcataccatggacgctgataaatactgacattgcacctccacaatctgacccgacagcatccgcaccgttacgagccatacgtccatggaataatcgcggcttacgttcctgcaatgcctgaagcgactcttcaatcaccttccgctcaaccattccgccaccaattgtaccgacgatagaaccatcggcgcgcactaacatttgtgcagaatggcggggagtcgagcctcggctatcaacaatttgcgccatagcaaacggacaattttgctcttcgagttttgcagcctctgtgaaaatattcataccaacctcaatggatatcctttcagtaacccggaatacccgggccgctaattcacaaatctgcgcgcgattgcaggatgttcttgtatatcgcccagccagattgcctctacgtcgtgttgttgcagcggttgaaggagctcgctttgtgcaatcgcattctcacattgagaaaaacggttaatgaaccagactcgccgacaaccttgcggtacgtttttaaacgccccctgagggtggcgaaccagcgcaacgagatcgctcagttgcaaggttgcatcaggtgttaacccggtaatatcagcaaactgcgaccagcgatggacattttctgtgctcactttcgcgcccaaagtatgtcctcccatcacagcaatcacgcagcaactgcttttgggtatgcaaggttcgtgctcatcaggcgcttttaacggcattccacgcgagccatctgcttcaatgagaattacgtcacactctggtcgttgcaccagtgcatcaatcgcttctggcgtaaatccctgcacttttccctggttcgctttccagctgtgaaaacaaaatgaaatgggggatgtaagagacgcatgaggaagcatggcgggatcacgacagaaaaccacgggccagtgagacgttggcataaacatatgtgtcgtcgtcgtgattaacacacgcctgccgctagcctggagcagttctgccagccaaaaaagcaagctggttttccccccagcaccaacaacagaaatcacagtgggacgtttctgcgcacctaaatcaatgactaatgccgatgggtcaactatacttttcacgagtctttatgacctctctgggataaattatccccaacttaatccatcaggaagtaacgcaattatcaggcgttattagcccctataaataatggaaccactatgtcagccatcgactgtataattaccgctgccggattatcatcaagaatggggcaatggaaaatgatgttaccctgggaacagggaacaattcttgatacaagtatcaaaaatgcgttgcagttttgtagccgaattattttagtcaccggctatcgtggtaatgaactgcacgaacgttatgcgaaccagagcaatatcactattattcacaacccagattatgcgcagggtttactaacatccgtcaaggccgcagtacccgcagtgcaaacagaacattgttttctcacccacggtgacatgccaaccctcaccatcgatatttttagaaaaatctggtcgttacgaaatgatggcgcaatactgccactccataatggcatccccggccatccgattttagtgtcaaaaccatgcctgatgcaggcaatccaacgacccaatgtcaccaatatgcgtcaggcactccttatgggagatcattattccgtcgaaatagaaaatgcagaaataattttagatattgatactccggacgactttattacagcgaaggaaaggtatactgaaatttagaaaacgtagttaaacgattgcgttcaaatatttaatccttccggcactcattatcataatgataaggaatcactgattttgagaaaagagaaaaattgataaatgggctggcaataataattttcaggagtgattttaattctcatttagcacctgtgagttcattcacaaaaagcccttaagtttcgagccgcctcacatttttttatatttcccgccaaacctggcaagagtggtgcgattgttgctctatccccctaaaccaccggatttctcaacaccggtcactcaatgatatctgtataagctaaggagagggttatgggggatattatgcgtcccattccgtttgaggaacttttgacgcgcatatttgatgaataccaacaacaacgctcaatctttggtattcccgagcaacagttttactcacctgtaaaaggtaaaactgttagcgtcttcggtgaaacctgtgccactcccgtcggccctgccgctggcccgcacacgcagctcgcgcaaaatattgtcacttcctggctgactggcggacgcttcatcgaactaaaaaccgtccaaattcttgaccgcctggagctggaaaagccctgtatcgatgccgaagacgagtgctttaacaccgaatggtctaccgagtttaccctgcttaaagcctgggatgaatacctcaaagcctggtttgccctgcaccttctcgaagcgatgttccagccttctgattccggtaaatcgttcatctttaatatgagcgtcggttacaacctcgaaggtattaagcaaccgccgatgcaacagttcatcgacaatatgatggacgcatctgaccatccgaaattcgctcaatatcgcgatacgctgaataaattactccaggatgacgcatttttagctcgccacggattgcaggaaaaacgcgaaagcttgcaagccttacccgctcgcatccccaccagtatggtgcatggcgtcaccctctccaccatgcacggctgtcctccgcatgaaatcgaagccatttgccgctacatgctggaagaaaaagggctcaacacctttgtgaaacttaacccgaccttactggggtacgcgcgtgttcgtgagatcctcgatgtctgcggtttcggttacataggcttaaaagaagagtcatttgatcacgacctcaagctgacgcaagcactggaaatgctggaacgcctgatggcactggcaaaagaaaaatcactcggctttggcgtaaaactgactaacactctcggcaccatcaacaataaaggcgcactgcctggtgaagagatgtatatgtcaggccgtgcgctgttcccgctctccatcaatgttgcagcagttctctctcgcgcctttgacggcaaactgcccatttcttattccggtggtgccagtcagctgactatccgcgatatttttgatacaggtattcgccctattactatggcaaccgacctgctgaaacctggcggctatctgcgcttaagtgcctgcatgcgcgagctggaaggctccgacgcctggggacttgaccatgttgacgtcgaacgactgaacagactggcagcagatgcgttaaccatggaatacacccagaaacactggaagccagaagagcgtattgaagtggcagaagacctgccgctgaccgactgctacgttgccccctgtgttactgcctgcgctatcaagcaagatattccggaatacatccgtctgcttggcgaacaccgctatgccgacgcgctggaactcatctaccaacgcaacgctctgcccgccattaccggtcatatttgcgatcaccagtgccaatacaactgtacccgcctggattacgacagtgcgctgaatatccgcgaactgaaaaaagtcgcgctggaaaaaggttgggatgaatataagcaacgctggcacaaaccagccggttctggttcacgccatccggttgccgtgattggtgcaggtccggcgggtctggcagcaggttacttccttgccagagcgggccatccggttacgctgtttgaacgcgaagccaatgcgggcggcgtggtgaaaaatatcattcctcagttccgtattcctgcagagttaattcagcacgatatcgattttgttgccgctcacggcgtgaaatttgagtatggctgctcacccgatttaaccattgagcagttaaaaaatcagggcttccactatgttctgattgccaccggcactgataaaaatagcggtgtgaaactggcgggcgacaaccaaaatgtctggaaatcactccccttcctgcgtgaatacaacaagggtacagcgctcaagctgggcaaacatgtggtcgttgtcggggcgggtaacaccgcaatggactgcgctcgtgcggcgttacgcgttccaggcgtagaaaaagcaacgatcgtttaccgtcgttcactacaagagatgcccgcatggcgcgaagagtatgaagaagcgttgcacgacggcgtagagttccgtttcctgaataatccggaacgtttcgatgctgatggcaccttaaccttgcgcgttatgtcgcttggcgaaccggatgagaaaggtcgtcgtcgtccggttgaaaccaatgaaacagtaacactgcttgtagacagcctgatcaccgccattggtgaacagcaggatactgaagccctgaatgcgatgggcgtgccgctggacaaaaacggctggccagacgtcgaccataatggcgaaactcgtctgactgacgtctttatgatcggcgacgtacagcgcggaccatcctccattgtcgctgctgtcggaaccgcgcgtcgggcgaccgatgccatccttagtcgggaaaatatccgttcccaccagaacgataaatactggaacaacgtcaatccagcggaaatctatcaacgtaaaggcgatatctctatcacgctggtgaacagtgacgatcgtgacgcgtttgtcgcccaggaagccgctcgctgcctcgaatgtaactacgtttgcagcaagtgtgtggatgtctgcccgaaccgcgccaacgtctccattgcggtcccaggcttccagaaccgtttccagacgctgcacctcgacgcttactgtaacgaatgcggcaactgcgctcagttctgtccgtggaacggtaaaccgtacaaagacaaaatcaccgtcttcagcctggcgcaagactttgataacagcagcaacccaggcttccttgtggaagattgccgggtacgagtacgtctgaataaccaaagctgggtgttaaacatcgacagcaaaggtcagtttaacaacgtaccaccggagctgaacgatatgtgccgcatcatcagccatgtccaccagcatcatcattatctgctgggccgcgtggaggtgtaatcatgttgattctgaagaatgtcactgcggtacagctacacccggcaaaagtgcaggaaggcgttgatatcgccatcgaaaacgatgtgattgtcgctatcggcgatgccctgacgcaacgctaccccgacgccagcttcaaagagatgcatggccggattgtgatgccagggattgtctgctcgcacaaccatttttactcggggctttcccgcggaattatggcaaacatcgccccttgcccggatttcatctcaacgctgaaaaatctctggtggcggctcgatcgcgcccttgatgaagagtcgctctattacagcggactgatttgttccctggaagcgattaagagcggatgtacatcggttatcgatcaccatgcctctccggcgtatatcggcgggtcgctctccacattgcgcgacgcatttttaaaagttggcctgcgcgcgatgacctgttttgaaactactgaccgtaacaacggcatcaaagagttgcaggaaggtgtagaagaaaacatccgtttcgcccgtttgattgatgaggcgaagaaagcgacaagcgagccgtatctggtggaagcacatatcggtgctcacgcgccgtttaccgtgccggatgccggtctggagatgctgcgtgaagccgtgaaagccacaggccgtggtttgcatattcacgctgcggaagacctttacgacgtttcctacagtcaccactggtacggcaaagacctgctggcacgactggcgcaattcgatctcatcgacagcaaaacgctggtcgctcatgggctgtacttgtcgaaagatgacatcaccctactcaatcagcgcgatgcgttcctggtgcataacgcccgttcaaacatgaacaaccatgtcggctacaaccatcaccttagcgacatccgcaatctggcgttgggaacggacggcattggttcggacatgtttgaagagatgaaatttgccttctttaaacatcgcgatgcgggtggtccgctgtggcctgacagttttgccaaagccctgactaacggtaacgaactgatgagccgcaactttggcgcgaaatttgggcttctggaagccggttacaaagctgatttaaccatttgcgattacaactcgccgacgccgctgctggcagacaatatcgccgggcatatcgctttcggtatgggctcaggcagcgttcacagcgtgatggtcaatggtgtgatggtctatgaagaccgtcagtttaacttcgattgcgattccatttatgcacaagccagaaaagccgctgccagtatgtggcgtcggatggatgcgctggcataaatgacagatgccctcttcccgcagggaagagggttaaataaggaaagaagatgattgaacaatttttcaggcccgactctgtcgaacaggcgctggaactgaagcgccgctaccaggatgaagccgtctggttcgccgggggcagcaaactcaatgctacaccaacccgtaccgataaaaagattgccatttccttacaggatctggaactggactgggttgactgggataacggtgcactgcggattggcgcaatgtctcgcttgcagccactgcgtgatgcgcgatttattcctgcagcgctgcgtgaagccctcggttttgtttactcacgccatgttcgtaatcagtcgaccattggtggtgaaatcgccgcccgccaggaagagtcggtgctgcttcccgtcctgttggcactggatgctgaactggtttttggcaacggcgaaacgctgtcaatcgaggactacctggcctgcccatgcgatcgcctgctaaccgaaattatcattaaagatccgtatcgcacctgtgcgacccgcaaaattagccgttctcaggcaggtttaaccgtcgtgacggcagccgttgcaatgacagaccacgacggtatgcgaattgcgctggatggcgtcgccagtaaagcactgcgtctgcatgatgtcgaaaaacaaaatctggaaggcaatgcacttgaacaggctgtcgccaacgccattttcccgcaggaagatttgcggggcagcgtggcctataaacgctatatcacgggagttctggtagccgacctgtatgccgactgccaacaggctggggaggaagccgtatgatcatccactttactttaaatggcgcgcctcaggagctaaccgttaatccaggcgaaaacgtgcaaaagctgttgtttaacatgggaatgcactctgtacgcaacagtgatgatggtttcgggtttgccggttctgacgcaataatctttaacggtaatatcgttaacgcgtccttgcttattgccgcacagttagagaaggcagatattcgtaccgcagaatctctgggcaaatggaacgagttaagtctggttcaacaggcaatggttgatgttggcgtggtgcagtctggttataacgatccagctgcagctctgattatcaccgatcttctcgatcgcatcgccgcacctacccgcgaagagatcgacgacgcgctttctggtttgttcagccgcgatgctggctggcagcaatactatcaggtcattgaactggcggttgcacgtaaaaataatccgcaggccaccattgatatcgctccgactttccgtgacgacctagaagtcattggtaagcattatcctaaaactgatgccgcgaaaatggtgcaggcgaaaccctgctatgttgaagaccgcgtaacggctgacgcctgcgtcattaaaatgttacgtagcccacacgctcacgcactgattactcatctggatgtcagcaaagctgaagccttaccgggcgtcgttcacgttattactcacctgaattgcccggatatctactataccccgggtggtcagagcgcaccggaaccgtcaccgcttgaccgccgtatgttcggcaagaaaatgcgtcacgtcggcgatcgtgttgctgcggtcgtcgcagaaagtgaagaaattgcgctcgaagcactgaagctcatcgacgttgaatatgaagtgcttaagccggtaatgtcgatcgacgaagcaatggcggaagatgcgcctgtcgtgcacgatgaaccggtggtgtatgttgctggtgcgccagatactctggaagacgataacagccatgcagcccagcgcggcgagcatatgatcatcaacttcccgatcggttctcgccctcgcaaaaatatcgccgccagtattcatggtcatattggcgatatggacaaaggctttgccgatgccgatgtgatcattgagcgaacctataactcaacgcaagcgcagcagtgcccgactgaaacacatatctgctttactcgtatggacggcgatcgtctggttatccacgcctccacccaggtaccatggcacttacgccgccaggtcgcgcgcctcgtgggcatgaaacagcataaagttcatgtcattaaagagcgagttggcggcggttttggttccaaacaggacatcctgctggaagaagtgtgcgcctgggcaacctgcgtgaccgggcgtccggtactgttccgctacacccgtgaagaagagtttattgctaacacctctcgtcacgtcgcgaaagtcaccgtcaaactgggagcgaaaaaagatggtcgcctgacggcagtgaagatggatttccgcgccaacactggcccttacggcaaccactcactcaccgtaccgtgtaacggaccggcgctgtcgctgccgttatatccgtgcgataacgtcgatttccaggtcaccacctactacagcaacatttgcccaaatggtgcttatcagggttatggcgcaccgaaaggtaacttcgctatcaccatggcattagcggaactggctgaacagttacagatcgaccaactggaaattatcgaacgtaaccgggtacacgaagggcaagagctgaaaattctcggtgcaatcggtgaaggtaaagcgccgacctccgttccttccgccgccagctgtgcactggaagagatcctgcgtcagggtcgcgagatgatccaatggtcgtcaccgaaaccgcaaaatggtgactggcacatcggtcgcggcgtcgccattatcatgcagaaatcgggtatcccggatatcgatcaggctaactgcatgatcaaactggaatcggacggcacctttatcgttcattctggcggtgcggatattggtactggtctggatactgtagtgacgaaactggcagcagaagtgctgcactgcccaccgcaggacgtgcatgttatctccggtgataccgatcatgcgttgtttgataaaggcgcatatgcctcgtccggtacttgcttctcgggtaacgcggcgcgtttggcagcggaaaatctacgggagaaaattctgttccacggcgcgcaaatgttgggtgagccagtggcagatgttcaactggcaacgccgggcgtcgtgcgcggcaagaaaggcgaagttagtttcggggatattgcccataaaggcgaaaccggcaccggctttggttcactggtgggaactggcagttatatcacgcctgatttcgccttcccgtatggcgcaaacttcgctgaagttgccgtcaacacgcgtacgggtgaaatccgcctggataaattctacgccttgctggactgcggtacaccggtcaatccagagttagcgttgggacaaatctacggtgccaccctgcgtgctatcggccacagtatgagcgaagagatcatttatgacgccgaaggtcacccgttaacgcgtgatttacgcagttacggcgcaccgaaaattggtgacattccgcgtgatttccgcgctgtgctggtgccgagcgacgataaagtcggcccgttcggggcgaaatcgatctcggaaatcggtgtaaatggcgcagctccggcgattgctaccgcaattcacgatgcatgcggcatctggttacgcgaatggcatttcacaccggagaaaatactcactgcgctggaaaaaatataaataataaatggccgcttcggcggcctgtttctctgtttgaacgatgactaaatagtgactgcgaaaatgagataagccgttctcaaggcgtcctgcgccccaaattcgtgggaatttattttactaattcagatgatcaaatttactttaaaaggagtgaagggatgtctgatataaaccatgcaggttctgaccttatatttgaactggaggatcgccctccctttcatcaggctctcgttggtgccattacccatctgttggcaattttcgttccgatggtaacccccgcgttaatcgtgggtgcggccttacagctttccgctgaaacaactgcctatcttgtttctatggcgatgatcgcctctggtattggtacctggttacaagtaaaccgctacggcatcgtcggttctggcctactctcaattcagtcagtcaatttttcatttgttacggtcatgattgcgctgggcagcagcatgaaaagcgacggttttcacgaagagttaatcatgtcgtcgcttctcggcgtctccttcgttggcgcatttctggttgtcggatcttcatttatcttgccctatttacgtcgggttattacgcctaccgtcagcggtattgtggtactgatgatcggcttaagcctgattaaagtcggcattatcgattttggtggaggatttgcagccaaaagcagcggtacgttcggcaattacgaacatctcggcgttggtttattggttttaattgtggtgatcggctttaactgctgtcgcagtccgttgctacgcatgggagggatcgccattgggctatgtgtcggctatatcgcatcgttatgcctgggcatggtggatttcagcagtatgcgcaatttgccgttaatcaccatcccgcatccgttcaaatacggctttagttttagcttccatcagttcctggtggttggcacgatttatctgcttagcgtgctggaagcagtcggcgatatcaccgccacggcaatggtttcccgccgccccattcagggggaagagtatcagtcccggctgaaaggcggcgtgctggcagatggtctggtttctgttatcgcctccgctgtcggttcattaccattaaccacgtttgcgcaaaataatggggttattcagatgactggcgtcgcttcacgttatgtcgggcgaaccatcgcggtaatgctggttatcctcggcttatttccgatgattggcggcttcttcacgaccattccctcggcagttctgggaggcgcaatgacgttgatgttttccatgattgccatcgcagggattcgcatcatcatcaccaacggtttaaagcgccgtgaaacacttattgtcgccacttctttaggtttagggcttggcgtctcctacgatcccgaaatttttaaaatattgccagcctctatttatgtattagttgaaaaccctatttgtgctggcgggttaactgcgattttattaaatattatcctccctggtggctaccgacaggaaaacgttctgcctggtattacctcagcggaagagatggattaacagtaaaggagtcaatgatgtcaggagaacacacgttaaaagcggtacgaggcagttttattgatgtcacccgtacgatcgataacccggaagagattgcctctgcgctgcggtttattgaggatggtttattactcattaaacagggaaaagtggaatggtttggcgaatgggaaaacggaaagcatcaaattcctgacaccattcgcgtgcgcgactatcgcggcaaactgatagtaccgggctttgtcgatacacatatccattatccgcaaagtgaaatggtgggggcctatggtgagcaattgctggagtggttgaataaacacaccttccctactgaacgtcgttatgaggatttagagtacgcccgcgaaatgtcggcgttcttcatcaagcagcttttacgtaacggaaccaccacggcgctggtgtttggcactgttcatccgcaatctgttgatgcgctgtttgaagccgccagtcatatcaatatgcgtatgattgccggtaaggtgatgatggaccgcaacgcaccggattatctgctcgacactgccgaaagcagctatcaccaaagcaaagaactgatcgaacgctggcacaaaaatggtcgtctgctatatgcgattacgccacgcttcgccccgacctcatctcctgaacagatggcgatggcgcaacgcctgaaagaagaatatccggatacgtgggtacatacccatctctgtgaaaacaaagatgaaattgcctgggtgaaatcgctttatcctgaccatgatggttatctggatgtttaccatcagtacggcctgaccggtaaaaactgtgtctttgctcactgcgtccatctcgaagaaaaagagtgggatcgtctcagcgaaaccaaatccagcattgctttctgtccgacctccaacctttacctcggcagcggcttattcaacttgaaaaaagcatggcagaagaaagttaaagtgggcatgggaacggatatcggtgccggaaccactttcaacatgctgcaaacgctgaacgaagcctacaaagtattgcaattacaaggctatcgcctctcggcatatgaagcgttttacctggccacgctcggcggagcgaaatctctgggccttgacgatttgattggcaactttttacctggcaaagaggctgatttcgtggtgatggaacccaccgccactccgctacagcagctgcgctatgacaactctgtttctttagtcgacaaattgttcgtgatgatgacgttgggcgatgaccgttcgatctaccgcacctacgttgatggtcgtctggtgtacgaacgcaactaataataaaactttaacatcctcgtgaggacatcattatgtctggagacatcctacaaacaccggacgcaccaaagccacagggcgcgctggataattattttaaaattaccgctcgtggcagtaccgttcgtcaggaagtactggctggcttaacgacctttctggccatggtttattccgttatcgtcgttccgggaatgctgggcaaagcaggttttcctcccgcagctgtgtttgttgccacctgtctggtcgcgggcttcggctcgttgctgatgggattatgggctaatttgccaatggcgattggttgcgcgatttccttgacggcgtttaccgcattcagtctggtactcgggcaacaaattagcgttcctgtcgcactgggcgcggtatttctgatgggcgtcatcttcaccgccatttccgtaaccggtgtgcgtacctggatcttacgtaatttgccgatgggtatcgctcacggtacaggtatcggtatcgggctgtttctgctgctgattgctgctaacggtgtgggtatggttatcaaaaacccgattgaaggcttgcagtggcgctcggtgcgtttacctccttcccggtgatgatgagcttgctggggctggcggtcatcttcggcctggagaagtgtcgcgtacccggcgggatcttgttggtgattattgcaatttcgatcatcggcttaatctttgacccagcggtgaaataccacggtctggtggcgatgccaagcctgactggcgaagatggtaagtctctgattttcagcctcgatattatgggtgcactccagccaactgtacttccgagtgtactggcattggtgatgaccgcagtgttcgacgctactggcaccatccgtgccgtcgccggtcaggcgaatttgttggataaagacaaccagatcatcaacggcggcaaagccctgaccagtgactcagtaagttcaatattctccggcctggtgggcgcagcgcccgcagcggtttatatcgaatcagcggcaggaaccgccgccgggggtaaaacaggtttaaccgcaaccgtagtgggggcgttattcctgttaattctgtttttatcaccgctgtcatttttgatccctggttacgccactgcacccgctctgatgtacgtaggtttgctgatgttaagtaacgtctcgaagctggatttcaatgattttattgacgctatggctggcctggtgtgtgccgtgttcatcgttctgacttgtaatatcgttaccggtattatgctgggctttgtgacactggtcgtaggccgcgtctttgcacgcgaatggcaaaagctgaatattggtacggtgatcattactgccgcactggtcgcattttacgcgggtggttgggcaatctaatagattctccgcgcctttcagcgcggagatttctttcagagaggattctcaccgctggcaacaatacgctgctggcggactcgcctgagttctctttcagtaagcaactgcagcgcctgtgttgggcaagattcaacgcaggctggcccctcttcccgctgttcacagagatcgcatttcacaatttgttgtcgggtatcccccggcaacgactgaatggtgatcattccaaacgggcacgcactgacgcaactctgacagccaatacaacgggcagaattggtctgcaccacctgctcgcccatcgtcagcgcccccacggggcaagcgccaacacaaggggcgttttcacactgatggcacatcaccggcgcactgatgctgtccagtcgctgtaccttcagccggggtaaaaagacatcggcattcaactcctgttctgaagggtgagcgaccacacaggctacttcacaagtacggcagccaatacagtcagccggattaacgataattaacgatttcatcacgatgccttcgtatcaaacagagttaacatatcgcgcgccgcctgccttcctgcggccattgcagtgacaaccagatccgcgccatgaactgcatcaccaccagcaaagacttttttcagatgcgtctgggtaggtaaatacccgacgtcaccggtttgaatcaggccccatttatcgagtttaattccgctgccctgcaaccacggcatggcatgcgcctggaaaccaaaggccataatcagaacatcggcgggcaattcaaactctgaacccgctaccggacgaggacgacggcgaccatccggccccggctcacccatggcggtacgaatcaggcccaccgcagttaaacgcccatcttcgtcacaagcgatatattgcggttgaacattgaactgaaactcgacaccttcctcgcgcgcattaaccacctctttgcgcgagcccggcatactgacttcatcacgacgatacgcgcaggtcacgctggcggcattgaggcggatggaagtccgcaaacaatccattgtcgtatcgccaccgcccaataccacgactcgcttaccttccacgtccgtcagcggatactcttcagactccggcaatcccatgagctggcgggtatgggcagtcaggaacggtagagcctgaatgacaccgggcgcatcttcatgcggcagatctgctcgcatcatcccgtaagtccccacgccgatgaaaactgcatcatattcagaagttaaatcgctaaaggtaatatcgcggccaatttcacagttaagatgaaagtcgattcccattgcggtgaatatctctcgccgctggcttaataccgttttatcgagtttgaaaggaggaatgccaaaagtcagcataccgccaatttctggatggcgatcaaagacatcgacctgaactcctgcgcgcgccagaatatcagcacaccctaaccctgcaggcccagcgccaatcaccgccactttttcgctacggggaacaactttgctgacatcgggacgccagcccatcgccagcgcggtatcggtgatgtagcgttccagattaccgatagagactgcgcccgagtgatctttcaaagtacatgcgccttcacaaagacggtcctgtggacataccctgccgcaaatttctggtaaggaactggtctggtggcaaagttctgccgcttcaataatctttccttcctgtaccagacggatgtaatccggaatagcgttatgcagcgggcaatgccagttgcagttagctttttcggcacaataaacacagcggtcactctcataagtcgcttgttgtggatccagcccgcaatatatttcgccaaagtgggttttccgttcactcgctgaaattttatctgcgcctttacgcgagttaacggggagcaacgctgcactgcgagatggctgagcgtctgatgacgcttttcctgctgccgttttgcgctggcgggccacctttatctgctgcaaccctttatcgtccatcagtcgtaacgcctgtgttgggcaaacttcaatacaggcttgcgtgccggaactgcgctggttacaaaggtcgcatttctgcgcaatcgtatcgaccatctcaacgacgccaaaggggcaagcgattgcgcatcttttacaaccaatacatttttgctcgtccagttgtacgctatcggactggaaagtcagagcattaaccggacaagccgtaacgcaaggggcattgttgcagtgatggcaggccaccggattcgcagcctggcctttccctacaacgtggatacgcggtcgaaagtcactgtgactcagcggccagttttcttgattgtgtgccaccgcacaggcaatttcacaagcatgacagcctatacattccgcagcttcagcagcaataaacttattcatttgcatccctttcatttaatgagttatgtcttctcaaatttcgcgatgcaataaacgggcatatattaggtagcatgaccgttttaattataattttgcgactgagttcaaattattgcccctcaatctatgccgctttcattatttcaacattgccgatcaaaagagcgctatccagataaaaacgattaaatgcgagagtgcgacatgccagaatgattaatgaaatatcaatatgagaaaattacagataattccattgtcaggttctcttctcattttcgtggtttaaccacgattatgtgattgcctccgcaattcctgtctctaactccccttcctcgcaaaaactggcactccacgagcatgtgtttagacagtttcattaacgtaaacggttgctttttactctggcgggcgaaaggagaaacactgatgagcgccatagattcccaacttccctcatcttctgggcaagaccgcccaactgatgaggttgaccgcatattatcaccaggaaagctgatcatactcggtctgcaacacgtccttgtcatgtacgcaggtgcagtcgctgttcctcttatgattggtgaccgactgggcctctcaaaagaagctattgcgatgctcattagctcggatctcttttgctgcgggatcgtcacattattgcaatgtatcggtatcggccgctttatggggatccgcctgccggtgattatgtcggtgacctttgctgctgtaacaccaatgatagccattgggatgaacccggatatcggcctgctggggatatttggtgccactatcgccgcgggttttatcaccacattattagcgccacttatcggtcgcttgatgcctttattcccgccactggttaccggtgtggttattacttctatcgggcttagcatcattcaggtgggtattgactgggccgccggaggtaaagggaatccgcaatatggtaatcccgtttatttaggtatctcctttgccgtcttaatttttatcttgctcattactcgctatgcgaaaggatttatgtccaacgtcgccgtattactggggattgtatttggctttttactttcgtggatgatgaatgaagtcaatttatccgggctacatgatgcttcatggtttgcgattgttacgccgatgtcgtttggtatgccgattttcgatcccgtttccattctgaccatgactgccgtgttaatcatcgtgtttatcgagtcaatggggatgttcctggcactgggtgaaatagtcggtcgtaaactctcttcgcacgatattattcgcgggctgcgtgtcgatggcgtagggacaatgataggcggcacgtttaacagcttcccccacacgtcattttctcaaaacgttggcctggttagcgtgacgcgcgttcatagccgctgggtgtgtatttcttcgggaattatattaatcctgtttggcatggtgccaaaaatggcggtgctggtagcctccattccgcaatttgtgctgggcggcgctggtctagtgatgttcggcatggtactggcgacagggattcgaattctgtcgcgctgtaactacaccaccaaccgttacaacctctatattgtggcgatcagtctcggcgttggcatgactccgacgctctctcacgatttcttttctaagttaccggccgtactgcaaccgctgctacatagcggcattatgctcgcaacccttagcgccgttgtgctgaacgtcttctttaatggctatcagcatcatgctgacctggtgaaggaatccgtctctgataaagatttaaaagtcaggacagtacgtatgtggcttctgatgcgcaagctgaagaaaaatgagcatggagaataatatgaattttttaatgcgcgctatattcagtctgttgttgctttttactctctctattcctgtcatttctgactgtgttgcaatggccattgaaagtcgcttcaaatatatgatgctacttttttaaatggtttttacctgtcggcatccgctcaaaacgggcggttgtcgataaacgctcacttggttaatcatttcactcttcaattatctataatgatgagtgatcagaattacatgtgagaaattatgcaaacggaacacgtcattttattgaatgcacagggagttcccacgggtacgctggaaaagtatgccgcacacacggcagacacccgcttacatctcgcgttctccagttggctgtttaatgccaaaggacaattattagttacccgccgcgcactgagcaaaaaagcatggcctggcgtgtggactaactcggtttgtgggcacccacaactgggagaaagcaacgaagacgcagtgatccgccgttgccgttatgagcttggcgtggaaattacgcctcctgaatctatctatcctgactttcgctaccgcgccaccgatccgagtggcattgtggaaaatgaagtgtgtccggtatttgccgcacgcaccactagtgcgttacagatcaatgatgatgaagtgatggattatcaatggtgtgatttagcagatgtattacacggtattgatgccacgccgtgggcgttcagtccgtggatggtgatgcaggcgacaaatcgcgaagccagaaaacgattatctgcatttacccagcttaaataaaaaaaccccgacatttgccggggttgtgagcataacgtaatgcttattttaccggacgcatcgccgggaacagaataacgtcgcggatggtatggctgttggtgaacagcattaccatacggtcgataccaattcccagacctgctgtcggcggtaagccatgttccagtgcggtgacgtaatcttcatcgtagaacatcgcttcgtcgtcacctgcgtctttcgcggcaacctgatccaggaagcgttgcgcctgatcttccgcgtcattcagctcgctaaagccgttaccgatttcacgaccaccaatgaagaactcaaagcggtctgtgatttccgggttaacgtcgttacgacgcgccagcggagaaacttctgccggatattcagtaatgaaggtcggctgaatcagatgtgcttctgccacttcttcgaagatctcggtaacgatacggcccagaccccagctcttctcaacgtggatgccgatagattcagcaattgctttcgcagagtcgaagttgtccagatccgccatgtcggtttccgggcgatatttcttgatcgcttcacgcatggtcagtttttcgaacggtttaccgaagtccagcgtcacgtcgccgtaggtcacttccgtcttaccgagaatatcctgtgccagagtacggaacagcgattcggtcagctcgatcagatctttgtaatctgcgtaagccatgtagagttccatcatggtgaactctgggttatgacgtacggaaataccttcgttacggaagttacggttgatttcgaatacacgctcgaagccaccaaccaccagacgcttgaggtacagttccggcgcgatacgcaggtacatgtcgagatccagcgcgttatggtgggtgataaacggacgcgcagcggcaccgccagggatcacctgcatcatcggcgtttcaacttccataaagccgcggttcaccatgaactggcgaataccagagaggatctgcgagcgcactttaaaggtgttgcgggattcatcgttggagatgagatcgagataacgctgacgatagcgcgcttcctgatcctgcaagccgtggaatttatccggcagcggacgcagtgctttggtcagcagacgcaactcggtgcagtggatagacagttcgccggttttggttttgaacagcttacctttcgcgccgaggatgtcgccgaggtcccattttttgaactgctcgttataaacgccttccgggagatcgtcacgggcaacgtacagctgaatgcgaccgccaacgtcctgcagggtaacgaaagacgctttacccataatacgacgggtcatcatgcggccagcaacggcgacttcgatgttcagcgcttccagttcttcgttctctttgccgtcgaattctgcgtgcaattggtcagaggtatgatcgcgacggaaatcgttcgggaaggcaatcccctgctcgcgcaggttcgccagcttctcacgacgcgttttcagttcattgttaagatcgactaccgcgtcagcgccctgtgcgtgttgttcagacatgttggttcctcataaccctgctttcaaacttgcttcgataaattgatccaggctgccgtccagcacggcctgcgtgttgcgggtttctaccccggtgcgcagatctttaatgcgggagtcatcaaggacataagaacgaatctggctgccccagccgatgtcggatttgttatcttccatcgcctgtttctcggcatttttcttctgcatctccagttcataaagcttcgctttcatctgcttcatggctgatctttgttcttgtgctgggaacggtcgttctggcactgggtcacgatcccggtcgggatgtgggtaatacgcaccgcagattcggtacggttaacgtgctgaccgcccgcgccggacgtgcgataaacgtcaatgcgcagatccgccgggttgatttcgatatcaatatcatcatcaacttccggataaacaaacgcggagctgaacgacgtgtggcgacgaccgccggagtcaaacgggcttttacgcaccagcggtgaacgccggtttctgtacgcagccagccgtaagcgtaatcgccggagattttgatcgtcacggatttaatacccgccacttcaccttccgactcttcgatgatttcagttttgaaaccacgcgattctgcccagcgcagatacatacgctcaagcatgctcgcccagtcctgtgcttccgtaccgccagaccccgcctgaatatcgaggtagcagtcggcgctgtcatattcgccagagaacatacggcggaactcaagctgcgccagtttttcttccagggcgtcgagttcagcaacggcttcgttaaaggtttcttcgtcgtcagcttctacagccagttccagcagaccagaaacatcttccagcccctgtttcatttggtcgagggtgtcgacaacggcttcgagggaggaacgctctttacccagcgcctgtgcgcgttcgggttcgttccagacatccggctgttccagctcggcgtttacttcttccagacgctctttcttggcgtcgtagtcaaagataccccctaagaacgtcggagcgttccgtgaggtcctgaatgcgattatttaccggattaatttcaaacatggtctgatttcttttattgagctagtcaaaatgcggtgataagagcgggattgtacccaatccacgctcttttttatagagaagatgacgctaaattggccagatattgtcgatgataatttgcaggctgcggttgccgcgaaactcgttgatatcgagcttataagccagttgcacttcgcgcacgccgttatccggccagagggcggtatcgacattaaaagcaataccatccagcagtggaccgccgccgaccggttcgaccatcaccttcaaatgacgttcgcccaccagccgctgttgcagcagacggaaatgaccgtcaaacagcggctccgggaacatctgcccccacgggccagcatcgcgcagcagctgcgccacttccatggtcatttcggccgggcttaacggaccgtctgataccacttcgccttgcaatagcgaagggtccagccactcagtaaccagttcgccaaaccgttgttgaaagagtttgaatttatcctcttccagcgacaaacccgccgccatcgcatgaccgccaaacttcagcatcatgccagggtagagtgtgtctaatcgctccagcgcatcacgcatatgcagcccctgaatggagcgaccggaacctttcagcgtaccgtcacctgctggcgcaaacgcgataaccggacggtgaaaacgctctttgatgcgcgaagccagaataccgacaacgccctgatgccattcggggtgatacattgccagcccgccgggtagcgtgtcacggctgcgctccagtttctcgcacagggtcagggcttcaatttgcattccttgttcgatctcttttcgcgtctggtttagcgcatcgagttcatttgccagcacgcgcgcttcgccgatgttgtcgcacaacaacagcgccacaccgacggacatatcgtccagtcgtccggcagcattgagacgtggccccagcgcaaaacctaaatcgctggcggcgagtttttgtgcatcacggtttgccacttcaagcagcgctttaatccccggacggcactttccggctcggatgcgactcatcccctgccaggtcagaatgcgattattagcgtccagcggcacgacgtccgccactgtccccagcgcgaccagatccagcagttctgccaggttaggaattgcgatgttacgctcatcaaaccagccctgatcgcgcaaaaaggtgcgcagcgccagcatcagataaaacgccacacccacgcctgccagtgatttcgacgggaaattacagtcgcgcaagttagggttaatgatcgcttccgctgcgggtaatgtgtcgcctggcaaatggtgatcggtaacaataaccgggatgcccaacgagcgagcgtgctcaacccccgcatgggaggaaataccgttatccaccgtgacaattaactgcgcgccacgggcatgggcctgatcgaccacttccgggcttaagccgtaaccgtcttcgaaacggtttggtaccaggtagtcgatattgctgcaaccaagcgagcgcatcgccagcacgcttagagccgtgctggtcgcgccgtcggcgtcgaaatcaccgaccacaataatccgcgttccttcgcgaaaagcgttgtaaaggatctcaacggccttttcgacgccgctcagttgctgccagggcagcatacctttaacactgcgttccagttcttgcgcactgcgtactccccggctggcgtataaacggcgcagcaagggaggcaattcagcgggcaagtctgccgtttcatcgacttcacggcgacgaagttgtatctgttgtttcacgcgaattatttaccgctggtcattttttggtgttcgtcgaggaattctttcatctctttcggcggctggtaacccggaacaagtgtgccattgctcagcacaactgccggagtaccgctaacgccaagctggacgccaagtgcgtaatggtcggcaatatccacgtcgcaactggctggtgcgacgcttttacctgccatcacatcatcaaacgctttgtttttatctttcgcacaccagatagctttcatttctttctctgcatcgctgtccagcccctggcgcgggaaagcaagataacgcacggtgatccccagcgcgttgtagtctgccatttgctcatgcagtttgtggcagtaaccacaggtaatatcagtaaacacggtgatgacgtgtttttcctgcggcgctttataaacgatcatctctttttcaagcgcattcaactgctttaacagcatcttattggtgacattgaccggagccgtgccactaacgtcatacattggcccctgaatgatatgtttaccatcatcggtgatgtacaacacgccgctgttagtcagaactgtcttcatgccagctacaggcgcgggctgaatatcgctgcttttgatgcccattttggctaacgtttgttgaattgccgcgtcatcagcctgagcaaagcctgaaaacgccgctaacaaagtaaacaacataaaacctttcttcataaatcttcccgttcttttcagacatcacgcccgcgggtgatgctgttgatgaagttgccgcagacgctcggtagcgacatgcgtataaatttgcgtggtggagagatcgctgtggcccagtagcatctgcaccacgcgtaaatccgcaccatgatttaataaatgagtggcaaaagcgtgacgcaacacatgcggtgacagcttttcgctgtcgatacccgccagcacagcataatgtttaatacggtgccagaaggtctgtcgcgtcatctgctgcgcacgctggctgggaaacaacacgtcaattgacacaccattcagcagccacggacgcccatgttccagataggtttccagccagtaaaccgcctcttcacctaacggcaccagacgctctttgttgcctttaccaatgacccgtaccacgccctgacgcaggctgatatcactcattgtcagtccgaccagttcagagacacgcagcccggtagcatacaacacttcaagcatggctttatcgcgtagctccagtggctgatcgattaatggtgcctgtaataaacgttcgacctgcgcttcgcttaaatcttttggcaaacgctggggcaatttcggtgaagcgagatgcgcactgggatcgtcttcacgaaacttttcgcgataaagatactggaacaatcggcgcactgcactcagcaaacgcgctgagctggtggctttatacccgccctccagccgttctgccagtaatgcctgcaaatcgtcactttgcgccgtcgccagcgtcaacccgcggtgatgcaaccactccaccatcattgacagatcgcgacggtaagcgttcaacgtattttcagccagatttttttccagccacagagcatcaagaaactgctcgatgcgtgccagatcctgtttcacttgcgccccttatggtcactcatttgatccattatgccttattgtgccgtgactaaagcgattctgatacactagccgcaaaagccacagcagaatcgagaagcttacgttatgaatatgggtcttttttacggttccagcacctgttacaccgaaatggcggcagaaaaaatccgcgatattatcggcccagaactggtgaccttacataacctcaaggacgactccccgaaattaatggagcagtacgatgtgctcattctgggtatcccgacctgggattttggtgaaatccaggaagactgggaagccgtctgggatcagctcgacgacctgaaccttgaaggtaaaattgttgcgctgtatgggcttggcgatcaactgggatacggcgagtggttcctcgatgcgctcggtatgctgcatgacaaactctcgaccaaaggcgtgaagttcgtcggctactggccaacggaaggatatgaatttaccagcccgaaaccggtgattgctgacgggcaactgttcgtgggtctggcgctggatgaaactaaccagtatgaccttagcgacgagcgtattcagagctggtgcgagcaaatcctcaacgaaatggcagagcattacgcctgatctcactgacggcttagcgcatatgctttgccgtcatctttatctttgcgtctcttgttgcaacaaaatccgccgtaaatcccgccattcagcttcgtccatgctgtcggctgccagccataaatgttgccgtttaccgccatcagaacgtaaacgcagcatcatgccgctcttaatcatccacggtgctttgacgatgctccactcctgcccttgccaacgcaaacgcccgtccatcaacaagcgaatttccccctggcgagcattaatacgccgctggctgcgaacgcaatcaaacaccaccagcgaaagtaacaccatccataacggggtgtaactgagtggccagggcatgagtaaaataacagcggcaaccagcccatgaatcagcaaggaaagccactgtgcgcgccaggagacgcgcaaatcagattgccacaggaccacgttcccggttccgtgtctggatgagtcggaccatcatttccagttctgcatcggccggtttaccgtgattcatcagccagttaaacaggtccggatcgtcacattccagcagacgaataaagatgcgtttttcgtcatcgcttaagctgtcgtactcatgttcgaaaaacggcatgattgaaatatcgagttcgcgcataccacggcggcatgcccaatgaatgcgggctttgttgttaatgtccatcttcttcctgtctcacgaaaatccagtacccggctattgtaacgtgtttttcgccttcttttacgggaatatcagtaaacaccatcgcgatcgcgaaattaattcacaacaattcaatggcttcatttttttggaagtcgcctcgcagaaggcacagatcgcgtagtgaaagcacttgcattgcctcatagctcttttaccattagtcattaatacgccgttaagcaactcaggactctattatggcttttacaccttttcctccccgtcagcctacggcttctgcccgtttaccgctgacgctgatgacgcttgatgactgggcgcttgccaccattactggcgcggacagcgaaaaatatatgcagggtcaggtgacagcagatgtcagccagatggcagaagatcagcacctgctcgccgcccattgcgacgccaaaggtaaaatgtggagcaatttacgtctgttccgcgacggcgatggctttgcatggattgaacggcgcagcgtgcgtgaaccgcagctgactgaactgaaaaaatatgcggtattctctaaagtgaccatcgcgccagacgacgagcgtgtgctgcttggtgttgccggttttcaggcgcgcgccgcgctggcaaatctctttagcgaactgccttcgaaagaaaaacaggtagtcaaagaaggcgcgaccactttgctatggtttgaacacccggcagaacgtttcctgatcgtaaccgatgaagctactgctaatatgctgaccgataaactgcgcggtgaagcggaactgaacaatagccaacagtggctggcattaaacattgaagcgggtttcccggtgattgatgccgccaacagcgggcagtttatcccacaggcgaccaatctccaggcgctgggcggtatcagctttaagaaaggctgttataccggacaagagatggtggcgcgagcaaaattccgtggtgccaataaacgtgcgctctggttgctggcaggtagcgccagccgactgccggaagctggtgaagacttagagctgaaaatgggcgagaactggcgtcgtaccggtacggtactggctgcggtaaaactggaagatggtcaggtcgtggtacaggtcgtcatgaataacgatatggaaccggatagcatcttccgcgtacgcgacgatgcgaatacattgcatatcgagccgctgccgtattcgctcgaagagtaaatctctttatcgcatcaggcatttatcgcctgatgcgacgctggcgcgtcttatcatgtctgggatttgatgcctttatcacaacagggacgaggcccgtagatcggataaggcgttcacgccgaatccggcagttgtgctccgatgcctgatgcgacgctggcgcgtcttatcaggcctacaaaggcatacccattacgcctgcccaatatacaaatagatcgccagaaagtggcacacactaccgccgagcacgaagccgtgccagatggcatggttgtatggaatgcgtttgcagacgtagaaaatcaccccgagcgaataaaccacgccgcctaccgccagtaaggtaacgctgcccgccgcgagcttaactgccatttcataaattaccaccagcgacagccagcccatcgccagataggtcaccagagataaaattttgaatcggtgcgcgatggtcagtttaaacagaatacccagcaatgccaggctccagataacaatcatcaacccgcgcgctaacggagaatccagccccaccagcaaaaacggcgtgtaggttccggcaatcaacaggtaaatagcgcaatggtcaaatttcttcagccacatttttgcccgttgatgaggaatggcgtgatagagcgtcgaagcgaggaacagcaggatcatactgccgccatagaggctgtagctggttatcgctgtggcgctggcattaagatccaccgcctgaaccagtagcaacaccagcccaacgataccaaacaccaacccaatgccgtgactgacgctgttggctatttcctctgccagtgaatatccctgcttaatgaggggcttctgaaccataacttactccggagaaacgtacacgcacatgtatacctctccagcgtaactgagaatagttccagtgaacacctgttagctaaaataaattctgatttgagactaatctcctaaaaatcatgaaattaaatgcgaaatttcaactaacaggcgtgagttcaatttaaagacatttaaattcaatcacataaaattgtgtctgaccgggatagatgtcagcaatgacttttttcagttcagtcagggtcatattttcctgctctgcatgtttttcagtcagcgtatccagcgttacggttgaggttgcggtgacttcaatcgtgcaaaaataaccgtcatcttcaaaacgtccgacacgaagcacatcacccgttttgaagtgcgattcagactcgtcgcggatggtgatggttttacgcccagccagaatgtcatcctggaaacgttgaaaaaaagtgatgtcgtttggctgcatggtactatttcctgtaagaattgactcatctggagcctatgatagtgaaaaaactcaccttaccgaaagatttcttatggggcggcgcagttgccgctcatcaggtcgaaggcggctggaacaaaggcggaaaagggccgagcatttgtgacgttctgaccggtggcgcacacggcgtgccgcgcgaaatcaccaaagaagtcttgccaggaaaatactatccaaaccatgaagccgttgatttttatggtcactataaggaagacatcaagctatttgccgaaatgggcttcaaatgttttcgtacatccattgcctggacgcgcatttttccaaaaggcgatgaagctcagccaaacgaagaagggctgaagttctacgatgatatgttcgatgaactgctgaaatacaacatcgaaccggtgatcaccctctcccactttgaaatgccgctgcatctggtgcagcaatacggtagctggaccaaccgtaaagtggttgatttctttgtacgtttcgcggaagtggtatttgaacgctataagcacaaagtcaaatactggatgaccttcaacgaaattaacaaccagcgtaactggcgtgcaccgctgttcggttactgctgctccggcgtggtgtataccgagcatgaaaacccggaagagacgatgtatcaggtgctgcatcaccagtttgtcgccagcgccctggcggtgaaagctgcgcgtcgcattaacccggagatgaaagtcggctgtatgctggcgatggtgccgctctatccttactcctgtaacccggacgatgtgatgttcgctcaggagtcgatgcgcgaacgctacgtctttaccgatgtgcagctacgcggctattacccgtcctatgtgttgaacgagtgggagcgtcgcggatttaacatcaaaatggaagacggcgatctggatgtgctgcgtgaaggcacctgcgattatcttggtttcagctattacatgaccaatgcagtgaaggccgaaggcggcaccggcgatgcgatctctggttttgaaggcagcgtaccaaacccgtatgttaaagcatctgactggggctggcagattgatccagtaggtctgcgctatgcactttgcgaactgtatgagcgttatcagagccgctgtttattgtcgaaaacggttttggcgcttacgacaaagtggaagaagatggcagcatcaacgacgactaccgcattgactacctgcgcgcccatatcgaagagatgaaaaaagcggtgacttacgatggcgtggatctgatgggctacacaccgtgggctgcatcgactgcgtgtcgttcaccaccgggcagtacagcaaacgctacggctttatctatgtgaataaacatgacgacggtactggcgatatgtcgcgttcacgtaagaagagctttaactggtacaaagaggtgattgccagcaacggcgagaagctttaagtcgatgaagtaccggatgcaatacttgttgcatccggtcagacaacttccctgttttatttcccgcccgccaaatcgataaaacttcccgtgacgtaagaggctttatcacttagtagccagacaatggcctgcgcgacctcttctgcctgtccaccacgctgcatggggatgttcgacttaacgcgatcgacgcgtccaggctcgccgccgctggcgtgcatttcggtataaataaaccctggccgcacgcagttaacgcggatcccctgcgcggcgacttccagcgatagtccggtggttaacgtatcaatcgcccctttcgatgccgcgtaatcaacatattcccctggcgaacccaaccgtgaggccaccgaagagacattgacgatagcgccgccactgccaccatttttaagcgccatgcgttttaccgcctcgcggcagcagagaaaatatcccgtcacgttggtggaaagtactcggttgattcgctctgcggtaaggttttcaacggtgcactgggtaaacaagatcccggcgttattgaccagcgctgctagcggttcatcgtgctgatcgattgctgtaaacatcgcaacgacctggttttcgtcgctgatatccgcctggagcacgaatgctttgccaccggcttgcgttattaagttcatcacttcctgcgccgcgtggaggttttgctgataattaaccgccaccgtatacccttcttgcgccaacagtaatgcagttgcccgcccgatgccgcgactgccaccagtcacaagtgctatagccatttgtttttccgagaaaaattaattcgttgacgtatctttgagattgctaacaaactggctcaatcttcaatgttggcacgcttttccccctcgccctttcagggagagggccggggtgagggtaaatattcgcgccagtgccggcctgttcccctcaccctaaccctctccccaaaggggcgaggggactgtctgagcacttttgtactttgtcatctgactaaaaaggcgccgaagcgcctttagaaaatagtcgaatcagtgaattactggtattcgctaatcggtacgcaggagcagaacaggttacggtcgccgtaaacatcatccagacgtttcactgtcggccagtatttgtctgccacacctgccgggaataccgcaacttcacggctgtacggatgcgcccactcggcgaccagttcgctctgaatgtgcggcgcgttcaccagcgggttatcttccagcggccagacaccggctttcacctggtcaatttctgcgcggatagccagcatcgcgtcgataaagcgatccagttccactttgctttcagattcagtcggttcaaccatcagcgtacccgccaccgggaacgacatcgtcggcgcgtggaaaccgtagtcgatcaggcgcttggcaatatccagctcgctgatgccggtttcttctttcagcgggcgaatatcgagaatacattcgtgcgccacgcgaccgtcgcgaccggtatacagcaccgggaaggcatcctgcaggcggctggcaatatagttggcgttgaggattgccacctggcttgcttttttcagcccttctgcgcccatcatgcggatgtacatccagctgattggcaggatagaggcgctaccgaacggtgccgcagaaaccgcgccctgacgggttaacatgccttcgatttgcaccacgctatgacccggtacaaacggtgccaaatgcgctttcacgccgatcggtcccatacccggaccaccaccgccgtgcggaatgcagaaagttttatgtaggttaaggtgtgaaacgtccgcaccaataaagcccggcgaggtgatgccaacctgggcgttcatgttcgcgccatcaaggtaaacctgaccgccgaactgatgcacgacttcacacacttcacggatcgtttcttcatacacgccgtgggtagaaggataagtcaccatgatacaggagaggttatcgcccgcctgttccgctttcgcgcgcagatcagtcagatcgatgttgccgtttttatcacacgccacaaccaccacctgcattcctgccatatgtgcagaagcggggttagttccgtgcgcagaagccgggatcaggcagatatcgcgatgcccttcgttgcggctttcatgataatgacgaatcgccagcaggcccgcgtattcgccctgtgcgccagagttcggctgcatacaaacggcgtcgtaaccggtcagtttcaccagccagtcagccagctgcgcaatcatctgctgataaccttcggcctgctccggcgggcagaacgggtgcagttcggcaaattccggccaggtgattgggatcatctcggcggcggcgttcagtttcatggtgcaggaacccagcgggatcatcgcctgattcagcgccagatctttacgctccagcgagtgcatatagcgcatcatttcggtttcgctgtggtagcgattaaacaccggatgggtgaggatttcgtcgtcgcgcagcatcgcaggctggatagagcggctgtcgtgagccacgtctttgtccagcgtgtcgatgtccaggccgtggttatcgcccagcagcacgttgaaaagctgcattacgttttcacgcgtggttgtttcatcaagggtgatcccaaccgcgttcagaatatcgctacgcaggttgatttcagccgcttcggcacgcgtcagtacgcccgctttgtcggccacttccacacacaaggtgtcgaaatagtgcgcatggcgcagtttcagacctttttgttgcaggcccgccgccaggatatcggtcagacggtgaatgcggttagcgatacgtttcaggccaaccgggccgtgataaacggcatacaggctggcgatgtttgccagcagtacctgggaagtacaaatgttggagttcgctttctcacggcggatatgttgctcgcgagtctgcatcgccatgcgcagcgcggtattgccagctgcatctttcgatacaccgataatacggcccggcattgagcgtttgtattcatctttcgccgcaaagaatgccgcgtgtgggccaccgtagcccatcggcacgccgaagcgttgcgccgaaccaaaaacaatatccgcgccctgtttacccggcgcagttaacagcaccagcgccataatatcggcggcaacgctgaccacaattttgcgtgatttcagttcgctaataagcgcagtgtagtcgtgaatttcaccggtagtgcctacctgctgtaacagcacgccgaagacgtcctgatggtcgagcactttttgcgcgtcatcgacaatcacttcaaaaccaaaggtttcggcacgagtacggaccacatccagcgtttgcggatgcacatcggaagccacgaagaagcggttggcatttttcagtttgctgacgcgtttcgccatcgccattgcttcggcggcagcggtggcctcgtccagaagagaagcagaggccatatccagtccagtcaaatccagcgttacctgctggaagttgagcagtgcttcaaggcggccctgggagacttcaggttgatacggagtgtacgcggtataccagcccggattttccagcatgttacgcaggataaccggcggtagctgcacggcggtgtaacccatgccgatgtaagacgtgaagcgtttattgcgactggcaatagccttgagttctgccagtgcggcgtattcggtcgccggtgcgccaacctgcggtggtgtcgcaagttgaatatctttcggcacaatctggccggtcagcgcgtttaacgattgtgcaccaacggcattcagcatttcttgctgttgcgcggcgtccggtccgatatggcgttcaataaaagcgccgctgttttcaagctggcttaacgtctgtgtcatgagcgatggttcctgaaacgtgcagtgaattgtgaacctctctccttacgaagagagtgagggtgaggcataaattttcctcaccctgatcctctcccgcagaagaggaataaagccgttactcgtcttctaacaatgcttcgtatgcggtcgcatccagcagtgattccagttcgctttcatcgctggctttgattttaaagatccagccgcctgcatacggttcgctgttcaccagttccggggaatcgctcagtgcgtcgtttaccgccacgatttcaccgcttactggcgcataaatgtctgacgccgcttttaccgattcggcaaccgcgcagtcatcgcccgcgctaaccgttgcgcccacttccggcaggtcaacaaacaccatatcgcctaacagctcctgagcatgttcggtaataccaacggtgtaagtgccgtcggcttctttacgcagccattcgtgttctttgctgtatttcagttctgctggtacgttgctcatcaatcaatctccaaaaaagtaaatcacgcgacggctttgccgttacgcacaaaaacaggttttgtcactttaaccggcatttcacggttgcgaatttgcacaatcgccgtttcgccaataccttccggcacgcgcgccagcgcaatgctgtaacccagcgtcggggagaaagtaccgctggtgataatgccttcatgctggttgccctgcgcatcggtaaagcgtaccggcagttcattacgcagcacgcctttttcggtcatcaccagaccaaccagtttttctgtaccatgctcacgctgcacttccagggcttcacgaccgataaagtcacgatctgccggttcccaggcgatggtccagcccatgttggcggctaaaggagagatggtttcgtccatctcctgaccataaagattcatgcccgcttccagacgcagcgtgtcacgcgcgcccaagccacatggcttaacacccgcttccaccagcgcacgccagaaatcggccgctttttcattgggcagcgcaatttcatagcccgcttcaccggtataaccagtggtggcaataaacagatcgcccgcctgcacgccaaagaacggtttcatcccttccaccgcctgacgctgggcgtcattaaacagtgtggcagcttttgcctgcgcattcggcccttgcacggcaatcatggaaaggtcatcacgaacggtaatttcgatgccgaaaggttcagcgtgttgggtaatccaggagaggtctttttcgcgggtggcggagttaacaacgaggcggaagaaatcttcagtaaagtagtagacgatgaggtcatctatcacaccgccagaggcattcaacatccccgagtaaagggctttgccgcttttggtgagcttcgccacatcgttcgccagcagataacgcagaaactcccgggtgcggctgccgcgaagatcgacgatggtcatatgtgacacatcaaacattccggcatcggtacgtaccgcatgatgttcgtcgatttgcgaaccgtaatgcagcggcatcatccagccgtggaaatccaccatgcgagcgccgcaaagcgtgtgttgttcgtacaaaggagtctgttgtgccatcttgtcctcattgaataagcggggctgacaactttttcatggtgaaattatcaccacgaaacccagcatcggagccactcccggtccccaacgcaatcgttctcttttgcctgaacttaccaccgaaacagactgttaaccataaggtaaaattgatcatcacattagcttatggttaaaaaatgcaaaaatcgcgacagaataaaaaaccaaaaaatacaccagtttctatacaaagatgatgtgatgagaaagtcaatttgaataagacaatattaagagctaaaaaaatgtcaaaaaacactaaatcaaaaaataatggcattagaaaatataatgcgaaaacggaggtgaaattagtttatttcaaatgaggaaaatctcccggcgaaaaaaccgggagatgaaagtgtgatgggtatcaaataaacaacagaggagaaatttttaacgcagccattcaggcaaatcgtttaatcccattgcctggcggataagttgcggcttaacgccaggaagcgtgtcggccagtttcaaaccaatatcacgcagcagttttttcgccggattggtaccggaaaacagatcgcggaatccctgcataccagccagcatcaacgccgcactgtgcttgcggctacgctcatagcgacgcagataaatgtactgcccgatgtctttcccctgacgatgcaaccgtttcagttcggcaatcagctctgcagcatccataaagccgagatttaccccctgccccgccagcgggtgaatggtatgtgcggcgtcgcccaccagcgccagacggtgcgaggcaaactggcgcgcataacgccccgtcagtgggaacacctgacgcgcgctctcaaccttgcataagcccaggcgattatcaaaagcgatatttaacgcgcgattaaattcgtcttcacttgcctgctgcatccgctgcgcttcctctggcgacagtgaccagacaatcgagcaaagatgcggatcgctaagcggtaaaaaggccagaatgccttcgccatggaaaacctgccgcgccaccgcatcatgcggttcttccgtgcgaatggtcgctaccagcgcgtgatgctgataatcccagaaagtcagcggaatatcggctttgttgcgcaaccaggaattagcgccgtccgcgccaatcaccagacgcgccgttaacatgctgccatctttcagcgtcaggaaggtttcattttctccccaggcgacctgctgtaattctgcgggggctaacagagtgatatctgacgactgatgcgctttgttccacagcgcgtagtgaatcactgaattttcaacgatatgcccaagatggctatagcccatgctttgatcgtcaaacgaaatgtgaccaaagctgtctttgtcccacacttccataccgtgataacagctggccctacgagagagaatgtcctgccagacgccaagacgggtgagtaatttttcgctggcggcattgatagccgaaacgcgcagttgtggtggtgcattcgccgccagaggttcctgtacgcgctgctccagtacggcaacgcgtaagccgctcccctgtaagccacaggcaaccgccagccccaccatgccgccgccaacaatggctacatcaacactttgcattgtttattccttaaaaccgccttcaacgcgccacccaaccgagggtgcgctgcgccagcacatcgcgtgccggggtgaataattccatcgtcatcagcccgatgttgcgcccgacaaccagcggtgcccaacggttggcaaaaagatgtacaaggctgtccgtgacgccaatggttgcttcgcgatcgctctgtcgacgctgctgataacggcacaatacgccgtaatcccccatgtcttctccgcgctcctgcgcctgagtcagggtttccgcaagactcatcacatctcgcataccgaggttaaacccttgcccggcaatcgggtgcagagtttgcgccgcattgcccaccagcacggtacgatgggtaatagatctggcggcgtgggttaacgccagcggataagcactgcgtttaccagcgtgggtaattttcccaagtcgccagccaaaggccgactggagttcacggcaaaacttctcgtcactccacgacaacacctcttcgcgccgttccagtggatgacaccagaccagcgaacagcgtccgtcagacatcggcaacatcgccagcgggccatgttgcgtaaagcgttcaaaagcgcgcccttcatgcgcaacggaagtagcaacgttggcaatcacggccagttgttcgtaaggctcctgctgccagtcaacgccgcacgcggtggctaacgctgaatgggtgccatcagctgctaccagcacgcggcccgtcagcgtctcgccactctccagcgtcacttcaacgtgactctgagtacgggcaacgttagccacgcgatcagggcaatgcagcgttacgccaggtgctttacgcagcaatgcaaacagccgttgcccgacattgtgcaattcgacaacctgtcccagcgccgccagttggtaatcttctgcggcgagggtgacaaatccagcgtgaccacgatcgctgacatgcacggtggtgatggcagttgcgcaatccgccagagattgccagacgccgatgcgcgccagttgctgacaggtacccgccgccagcgctatcgctcgtccatcaaagcccggatgagcatgtgactctggcgcagtcgcttcaatcaaatgtaccggcagcgccccgtgacttaaccgggaaatagccagcgccagcgtcgcgcccgccatgccgccaccgacgatgattacgctcattgctttctcgcagcaaccatcaacgcttcgatttcttccggctttttcaccacgctggcggtgaggttttcgttaccggtttcggtaatcacaatgtcgtcttcaatacgaatgccgataccgcgatattgttctggcacttctgcatccggcgcaatatacagccctggctctacggtcagtaccatgcccggttccagaatgcgcgagcgatcctgaccataaacacccacgtcatggacatccagtcctaaccagtggctaaggccatgcataaagaaaggacgatgggcgttctgagcgatcagttcatcaacatcacctttcaggatgccgagttttaccaggccgctaaccatgatgcgcaccacttcaccagtgacttccagaatggaagttcccggacgatacaggcgcaggctggtttcgagagactccagcacaatgtcgtagatttcacgctgggcctgggtgaatttgccgttgaccgggaaggtgcgggtaatatcgccagcgtaacctttgtattcacaacccgcgtcaatcaacaccaggtcgccgtcgcgcatttcacactcgttttcggtgtagtgcagaatgcagccgttttcaccgctgccgacaatggtgttataggacggatagcgcgcaccgtggcggttaaattcgtggtgaatttcgccttccagatggtactcgaacattcccggacggcatttttccatcgcccgtgtatgtgccatggcggtgatttctcccgcgcggcggagtacggcaatctcttctggcgatttgaacaggcgcatttcatgaacaacaggacgccagtcgatcatcgttgccggtgcggtgagattttgccgcgaacctttacgcagtttttccagcgcactgttcacgattacatcagcatatgcatattcgccctgggcatggtaaaccacatccaggccgttaagtagttgataaagttgctgattgatttcgctgaatgccagtgcgcggtcaacgcccagtttctctggcgcggcatcctggcctaagcgacggccaaaccagatctccgccgtcaggtcgcgaacgcggttaaacagaacgctgtggttatgagtgtcatcgcttttaatcagcaccagcaccgcttccggttcgttaaagccggtgaagtaccagaagtcactgttctgacgataggggtattcgctgtcggcgctacgtgttacttctggtgcagcaaaaatcagcgcggcgctgccgggttgcatttgctccaccagggcctgacggcgacgctgaaactcttgccgggatatctcactcataacactctccttacgttttttgtttttagtgtagagtcggtttttgtacttctggcgcggtcggttgcggatgagtaaaggtgtcgtggcataacagcgcggcaacacgaacgtattcgatgatctcttcaagcgacatttcaagctcttcctgatcttcgtcttcgtcgtaacccagttgcgcaatgttacgcagatcgtcgatagcttcaccggtttcgccggtcactttatccagcttcggttgcgtaacgccaagaccaagcaggaagtgattgacccaacctgccaatgcatcagcccgatcgaaaacgctgacatcatcgccatcaggcagataaagctgaaaaaggaagccgtcatcctgcagggcatcgctggtggcagagtgcattttacgcagtgcctgtgccagctcatgaccgaaagccatgccttcgttcgtcaggtcgtgaagtagcggtagccatgagctgtcatcgttaccgccacatatcatcccgctgattaaaccatgcatctcagctggggtcagacccgtcccttgttggttcagatactggttcatttcgttgtaaccaggcatttcgttctgtatagacataagcattcgtcgtcaaagggaggaatattcatgatatgctaccactttgggccctggtggaccagaaaagggcttgtctcttctcatcagggtagctatagtgtcgccccttcgcagaccatgggtctaaagacgaaggcagcgcagtcaatcagcaggaaggtggcatgtctgcacaacccgtcgatatccaaatttttggccgttcactgcgtgtgaactgcccgcctgaccaaagggatgcgttgaatcaggcagcggacgatctgaaccaacggttgcaagatctgaaagaacgcactagagtcacaaatactgaacagttggtcttcattgccgcattgaatatcagctatgagttagcgcaagaaaaagcaaagactcgtgactacgcggcaagtatggaacagcgtattcggatgctgcagcagaccatagaacaagcgttacttgaacaaggtcgcatcaccgaaaaaactaaccaaaactttgaatgacacttttcggtttactgtggtagagtaaccgtgaagacaaaatttctctgagatgttcgcaagcgggccagtcccctgagccgatatttcataccacaagaatgtggcgctccgcggttggtgagcatgctcggtccgtccgagaagccttaaaactgcgacgacacattcaccttgaaccaagggttcaagggttacagcctgcggcggcatctcggagattcccttcttatctggcaccagccatgacgcaactaccagaactcccactgacattatcccgacaagaaatccgcaaaatgattcggcaacgtcgtcgtgcgttaacgccggaacaacagcaggaaatgggtcaacaagccgctacccggatgatgacttatcccccggtggtgatggcacatacggtcgctgtattcctctcttttgatggcgaactcgacacccagccactcatagaacaactctggcgcgccggtaagcgcgtatatcttccagttttgcatccctttagtgccggtaatttgctgttcctgaattaccatccgcaaagcgaactggtgatgaacaggttgaagatccatgagccaaaattggatgtgcgtgacgtgctacccctttcccgattagacgtgctgatcacaccgctggtcgcctttgatgagtacggtcagcgcctgggaatgggcggtggtttttatgatcggaccttacaaaactggcagcactataaaacgcaaccggtgggttatgcgcatgattgtcagttggtggaaaaactccccgttgaagagtgggatatccctcttcctgcggtggttacaccgtcgaaagtctgggagtggtaagggcgatacacccgcatcgccctgattgacatcgttgattctttgacctaatttagtgagtaagggtaagggaggattgctcctcccctgagactgactgttaataagcgctgaaacttatgagtaacagtacaatcagtatgatgacaagtcgcatcataacccttctccttcaagccctcgcttcggtgagggctttaccgttacagccccatgctgccctgccatcgtaaatccccattaaataaacacaacgcattgatctgactttgatttattttctggagcagactcgcaaagtagaatgcgcaacgcggcaacggtgtggagaagggataaaaaaacgggcaagtcagtgacctgcccgttgattttcagagaaggggaattagtacagcagacgggcgcgaatggtacccggaatagctttcattgcctgcagcgctttttcggcaacgtcttcgtcggcttcaatatcaataaccacataacccatctgggcggaagtttgcagatattgcgcggcgatgttgacgccctgctcggcgaagattttgttcagcgcagttagcacgcccggacggttttcgtggatgtgcatcagacgacgcccaccgtgcagtggcagcgagacttccgggaagttcaccgcagagagcgttgagccattgtcagaatacttgatcaatttacccgcaacttccaggccgatattctcctgcgcttcctgagtcgaaccgccaatgtgtggcgtcagaaggacgttgtcgaattcacacagcggagaggtaaatggatcgctattggtcgccggttccgtcgggaatacgtcgattgccgcccccgccagatgtttgctcgccagcgcatcacacagcgccggaatatccaccacagtaccgcgcgaagcattaatcagcagcgagccgggcttcattagtgaaatttctttcgcgcccatcatatttttggtggacggattctctggtacatgcagactcaccacatcgctcatattcagcaggtcagaaagatgctgtacctgagtggcgttgcccagcggcagtttattttcaatatcataaaagtaaacatacattcccagcgattcagccagaatgcccaattgcgtaccaatatgaccgtagccgatgatacccagctttttgccgcgcgcttcaaaagaacccgccgccagtttgttccacacgccacggtgcgctttagcattggcttccggcacgccgcgcaatagcagcagcagttcgccaatcaccagctccgcaacagagcgcgtatttgagaacggtgcgttaaataccgggatcccgcgctttgccgccgcatccagatcaacctggtttgttccgatacagaaacagccaatagcgaccagtttttctgcggcgttgatcacgtcttcagtcagatgggtacgggatcgcaggccgatgaagtgggcatcgcggatggattcttttaattgttcatcatccagcgcgcctttgtgaaattcgatgttggtgtaaccagctgcacgaaggctttccagcgccttttggtgcacgccttctaccagcagaaacttaatcttgtctttctccagcgatacctttgccatttacccaatcctgtcttttgaaatgttgtgtgcggatttgcatccgcctttcaacatatcaaaaaataatattgcggcaatatgaacgtttgcgtcgcgatgttgaggaaatatcacgcaaaggtaattcttggatgaatatgctggtttagaggatttatttagagcaatcgacaattgcctggtaaaagcgtgacacatgtcaccaaatttaatgaagagaatttttttaacgggggaggttcccccgtcagatcatttcacaatggttttgacaccgtcaggtgtgccaatcagcgcaacgtccgcgccacggttagcaaacaagccaacagtcaccacgccaggaatcgcatttatggcgttttccatcgctatcgggtcaaggatttccatgccgtggacgtcgaggatcacgttgccattatcggtcaccacgccctgacggtattccggacgaccgcccagtttcaccagctgacgcgccactgcactacgtgccatcgggataacttctactggcagcgggaatttacccagaatatcaacctgcttggaagcgtctgcaatacagataaatttttctgcaaccgaagcaatgattttttcacgggtcagcgccgcgccgccgcctttgatcatttgcatgtggccgttgatttcatctgcgccatcaacgtagatgccaaggctgtcgacttcgttgagatcaaaaacgtgaatgccgaggcttttcagtttttcagtggaagcatctgaactggaaacggccccttcaatctggcctttcattgtaccgagcgcgtcaataaagtgtgcggcggtggaacctgtacctacaccaacaatggtgccgggctgaacatactgaagtgccgcccatcctactgcttttttcaattcatcctgcgtcatgatcgtttcgcctgtggtatgaaatttcacacgcattatatacaaaaaaagcgattcagaccccgttggcaagccgcgtggttaactcatccataaaatatcgcgcaatggcaggcatcccctttcgccccgcaaataaagcatacaacggtctgggtatgccgctccacggtgcaaacaggcgcaccagttcaccgttcgcaagcccctgtttacaggcaaattgaggcaataacgccacgccattcaacacaaccagggcgcgaactcgctgagcgaaatgcattagcgcaaatccctgatcttttaagctgcgcttttaaccacggatacaaatgttacccgccgacggcttcggtatatgcaacctgacacaaaattgtgtcatagtgcaggaaaaagcatttaccaggagcagacaacagcaatgaaacgcccggactacagaacattacaggcactggatgcggtgatacgtgaacgaggatttgagcgcgcggcacaaaagctgtgcattacacaatcagccgtctcacagcgcattaagcaactggaaaatatgttcgggcagccgctgttggtgcgtaccgtaccgccgcgcccgacggaacaagggcaaaaactgctggcactgctgcgccaggtggagttgctggaagaagagtggctgggcgatgaacaaaccggttcgactccgctgctgctttcactggcggtcaacgccgacagtctggcgacgtggttgcttcctgcactggctcctgtgttggctgattcgcctatccgcctcaacttgcaggtagaagatgaaacccgcactcaggaacgtctgcgccgcggcgaagtggtcggcgcggtgagtattcaacatcaggcgctgccgagttgtcttgtcgataaacttggtgcgctcgactatctgttcgtcagctcaaaaccctttgccgaaaaatatttccctaacggcgtaacgcgttcggcattactgaaagcgccagtggtcgcgtttgaccatcttgacgatatgcaccaggcctttttgcagcaaaacttcgatctgcctccaggcagcgtgccctgccatatcgttaattcttcagaagcgttcgtacaacttgctcgccagggcaccacctgctgtatgatcccgcacctgcaaatcgagaaagagctggccagcggtgaactgattgacttaacgcctgggctatttcaacgacggatgctctactggcaccgctttgctcctgaaagccgcatgatgcgtaaagtcactgatgcgttactcgattatggtcacaaagtccttcgtcaggattaatccatcaaataatgcctgatagcacatatcaggcgttgtcctcacttctttttgtattccttgaatcacatcacaaaatagacaaatctcaggcggcaaaaaacgacgtctgaatgcattttttttgctggcgacaaacccacgtaaaaagctcaccgtaggcgcaaataccctcattttgattgcgttttacggagcaaataatgtctaacgtgcaggagtggcaacagcttgccaacaaggaattgagccgtcgggagaaaactgtcgactcgctggttcatcaaaccgcggaagggatcgccatcaagccgctgtataccgaagccgatctcgataatctggaggtgacaggtacccttcctggtttgccgccctacgttcgtggcccgcgtgccactatgtataccgcccaaccgtggaccatccgtcagtatgctggtttttcaacagcaaaagagtccaacgctttttatcgccgtaacctggccgccgggcaaaaaggtctttccgttgcgtttgaccttgccacccaccgtggctacgactccgataacccgcgcgtggcgggcgacgtcggcaaagcgggcgtcgctatcgacaccgtggaagatatgaaagtcctgttcgaccagatcccgctggataaaatgtcggtttcgatgaccatgaatggcgcagtgctaccagtactggcgttttatatcgtcgccgcagaagagcaaggtgttacacctgataaactgaccggcaccattcaaaacgatattctcaaagagtacctctgccgcaacacctatatttacccaccaaaaccgtcaatgcgcattatcgccgacatcatcgcctggtgttccggcaacatgccgcgatttaataccatcagtatcagcggttaccacatgggtgaagcgggtgccaactgcgtgcagcaggtagcatttacgctcgctgatgggattgagtacatcaaagcagcaatctctgccggactgaaaattgatgacttcgctcctcgcctgtcgttcttcttcggcatcggcatggatctgtttatgaacgtcgccatgttgcgtgcggcacgttatttatggagcgaagcggtcagtggatttggcgcacaggacccgaaatcactggcgctgcgtacccactgccagacctcaggctggagcctgactgaacaggatccgtataacaacgttatccgcaccaccattgaagcgctggctgcgacgctgggcggtactcagtcactgcataccaacgcctttgacgaagcgcttggtttgcctaccgatttctcagcacgcattgcccgcaacacccagatcatcatccaggaagaatcagaactctgccgcaccgtcgatccactggccggatcctattacattgagtcgctgaccgatcaaatcgtcaaacaagccagagctattatccaacagatcgacgaagccggtggcatggcgaaagcgatcgaagcaggtctgccaaaacgaatgatcgaagaggcctcagcgcgcgaacagtcgctgatcgaccagggcaagcgtgtcatcgttggtgtcaacaagtacaaactggatcacgaagacgaaaccgatgtacttgagatcgacaacgtgatggtgcgtaacgagcaaattgcttcgctggaacgcattcgcgccacccgtgatgatgccgccgtaaccgccgcgttgaacgccctgactcacgccgcacagcataacgaaaacctgctggctgccgctgttaatgccgctcgcgttcgcgccaccctgggtgaaatttccgatgcgctggaagtcgctttcgaccgttatctggtgccaagccagtgtgttaccggcgtgattgcgcaaagctatcatcagtctgagaaatcggcctccgagttcgatgccattgttgcgcaaacggagcagttccttgccgacaatggtcgtcgcccgcgcattctgatcgctaagatgggccaggatggacacgatcgcggcgcgaaagtgatcgccagcgcctattccgatctcggtttcgacgtagatttaagcccgatgttctctacacctgaagagatcgcccgcctggccgtagaaaacgacgttcacgtagtgggcgcatcctcactggctgccggtcataaaacgctgatcccggaactggtcgaagcgctgaaaaaatggggacgcgaagatatctgcgtggtcgcgggtggcgtcattccgccgcaggattacgccttcctgcaagagcgcggcgtggcggcgatttatggtccaggtacacctatgctcgacagtgtgcgcgacgtactgaatctgataagccagcatcatgattaatgaagccacgctggcagaaagtattcgccgcttacgtcagggtgagcgtgccacactcgcccaggccatgacgctggtggaaagccgtcacccgcgtcatcaggcactaagtacgcagctgcttgatgccattatgccgtactgcggtaacaccctgcgactgggcgttaccggcacccccggcgcggggaaaagtacctttcttgaggcctttggcatgttgttgattcgagagggattaaaggtcgcggttattgcggtcgatcccagcagcccggtcactggcggtagcattctcggggataaaacccgcatgaatgacctggcgcgtgccgaagcggcgtttattcgcccggtaccatcctccggtcatctgggcggtgccagtcagcgagcgcgggaattaatgctgttatgcgaagcagcgggttatgacgtagtgattgtcgaaacggttggcgtcgggcagtcggaaacagaagtcgcccgcatggtggactgttttatctcgttgcaaattgccggtggcggcgatgatctgcagggcattaaaaaagggctgatggaagtggctgatctgatcgttatcaacaaagacgatggcgataaccataccaatgtcgccattgcccggcatatgtacgagagtgccctgcatattctgcgacgtaaatacgacgaatggcagccacgggttctgacttgtagcgcactggaaaaacgtggaatcgatgagatctggcacgccatcatcgacttcaaaaccgcgctaactgccagtggtcgtttacaacaagtgcggcaacaacaatcggtggaatggctgcgtaagcagaccgaagaagaagtactgaatcacctgttcgcgaatgaagatttcgatcgctattaccgccagacgcttttagcggtcaaaaacaatacgctctcaccgcgcaccggcctgcggcagctcagtgaatttatccagacgcaatattttgattaaaggaatttttatgtcttatcagtatgttaacgttgtcactatcaacaaagtggcggtcattgagtttaactatggccgaaaacttaatgccttaagtaaagtctttattgatgatcttatgcaggcgttaagcgatctcaaccggccggaaattcgctgtatcattttgcgcgcaccgagtggatccaaagtcttctccgcaggtcacgatattcacgaactgccgtctggcggtcgcgatccgctctcctatgatgatccattgcgtcaaatcacccgcatgatccaaaaattcccgaaaccgatcatttcgatggtggaaggtagtgtttggggtggcgcatttgaaatgatcatgagttccgatctgatcatcgccgccagtacctcaaccttctcaatgacgcctgtaaacctcggcgtcccgtataacctggtcggcattcacaacctgacccgcgacgcgggcttccacattgtcaaagagctgatttttaccgcttcgccaatcaccgcccagcgcgcgctggctgtcggcatcctcaaccatgttgtggaagtggaagaactggaagatttcaccttacaaatggcgcaccacatctctgagaaagcgccgttagccattgccgttatcaaagaagagctgcgtgtactgggcgaagcacacaccatgaactccgatgaatttgaacgtattcaggggatgcgccgcgcggtgtatgacagcgaagattaccaggaagggatgaacgctttcctcgaaaaacgtaaacctaatttcgttggtcattaatccctgcgaacgaaggagtaaaaatggaaactcagtggacaaggatgaccgccaatgaagcggcagaaattatccagcataacgacatggtggcatttagcggctttaccccggcgggttcgccgaaagccctacccaccgcgattgcccgcagagctaacgaacagcatgaggccaaaaagccgtatcaaattcgccttctgacgggtgcgtcaatcagcgccgccgctgacgatgtactttctgacgccgatgctgtttcctggcgtgcgccatatcaaacatcgtccggtttacgtaaaaagatcaatcagggcgcggtgagtttcgttgacctgcatttgagcgaagtggcgcaaatggtcaattacggtttcttcggcgacattgatgttgccgtcattgaagcatcggcactggcaccggatggtcgagtctggttaaccagcgggatcggtaatgcgccgacctggctgctgcgggcgaagaaagtgatcattgaactcaatcactatcacgatccgcgcgttgcagaactggcggatattgtgattcctggcgcgccaccgcggcgcaatagcgtgtcgatcttccatgcaatggatcgcgtcggtacccgctatgtgcaaatcgatccgaaaaagattgtcgccgtcgtggaaaccaacttgcccgacgccggtaatatgctggataagcaaaatcccatgtgccagcagattgccgataacgtggtcacgttcttattgcaggaaatggcgcatgggcgtattccgccggaatttctgccgctgcaaagtggcgtgggcaatatcaataatgcggtaatggcgcgtctgggggaaaacccggtaattcctccgtttatgatgtattcggaagtgctacaggaatcggtggtgcatttactggaaaccggcaaaatcagcggggccagcgcctccagcctgacaatctcggccgattccctgcgcaagatttacgacaatatggattactttgccagccgcattgtgttgcgtccgcaggagatttccaataacccggaaatcatccgtcgtctgggcgtcatcgctctgaacgtcggcctggagtttgatatttacgggcatgccaactcaacacacgtagccggggtcgatctgatgaacggcatcggcggcagcggtgattttgaacgcaacgcgtatctgtcgatctttatggccccgtcgattgctaaagaaggcaagatctcaaccgtcgtgccaatgtgcagccatgttgatcacagcgaacacagcgtcaaagtgatcatcaccgaacaagggatcgccgatctgcgcggtctttccccgcttcaacgcgcccgcactatcattgataattgtgcacatcctatgtatcgggattatctgcatcgctatctggaaaatgcgcctggcggacatattcaccacgatcttagccacgtcttcgacttacaccgtaatttaattgcaaccggctcgatgctgggttaatgactcgtcccgtcacgatcttcagcaatatgctgaagcatcgtggcggtataacgatgatttctgattgaataaagatattcctgcatatacatcggcctgtgcggtgcatcaaaatatttcagcgttgccggattcaccagtcgccaggcaaaatgcgggatcaccgtcagaaaatgtccgcgctccacggcgctgattttggccataaaactgtagggacgataaataatggttggattgatcccacaaggtcgcatattcgcatcaatcattgcttcgaagttggcccggttctgaaagcgcatttgtagccagggcagctcctgaagcagctcttgctcttgtcgctcttcataacggcgagaaacgagaaagcctaatcgcagcggtggtagttcactgatagtcaggttttccagttcctgaactcgtgcagatacatgctgtggggagataataaaatctaactggcggtcaaaaagattatcgataacgccattttcgctgaactcaactggctgggcggtcacgccttcatacttatctccgagactaatcaactgatcgaaaataattgtcggataagtattatctatgccaatcacaatttctcgtgaacgacgccctgagttatggatttcattatcaatcgcagaaagccgttgataaaccgggaacagtttttgatacagttcctgtccggctttattgaggctgatattattatctttgcgggtaaatagcgtatagccaatttgttcttccagcgcggcaatgcttttaccaaatggcgaagccgtcatatggattttttctgccgcccgggcaatattattggtttgcgctaataaaatgaaattgcgcatctttttcgaaataaaaatgtccatccccctcccccgcatccttgtccgcttaaccgtttcagtcagcctatccttgatgaaaccgcgagcaaagataggtgattacgtcatggttttacagaaaattacagaaaaaggaggcaatatcgggtaaaggcattagcccgacgaatacgtcgggctacaaatattattgtgctgcaggtgttttagcgggttgttgatccacaggttctaactggaagaccacatcgacctgatcatcaaactgaatagcggcctgctcgtaagtttcctgggcggacaccggcgcggcatcggctttcatcatccgcaccattgggctgggctgatagttggaaacatggtagcgcacgctatataccggccccagtttacgatgaaagccgttcgccagttcctgcgcctgatgaatcgcgttatcaatcgctgccttacgcgctttgtctttataggcatccggctgcgccacgcccagcgacacagaacgaatttcgttaagacccgccttcagcgcgccatccagcaaggaattcagtttgtctaactgacggagcgtgacttccaccgttctcacagcgcggtagcctttaaggatacttttaccatcctgataatcataatctggctgggtgcgtaagttcgctgagctgatatcttttttcgcgatctgattgagttcaaggaaggaaatgtattgtgcgacgcgctcatctgcctgtttcttggcagtagcggcatccttcgcggccacgttaacttcaatcgcaagagtggcaatgtctggcaccgcatccacgcttgccgtaccggaggtgacaatatgcggtccatccggcaattcgttagcctgcgctgccatcccgctaatacccattaatgccgccagggcgataactttgaacttcacgttagtctctccgtgttaattgacttgcccaaaattcaggacctctggaggcaagcttagcgcctctgttttatttttccatcagatagcgcctaactgaacaaggcttgtgcatgagcaataccgtctctcgccagctgcaaggcaataaaccacataacacatcccacaaccagattgataatgcgctgtgcttttgccgtgcgcagacgcggtgccagccaggctgcgagaagagccagaccaaagaaccacaggaaagaggcgctaattgtcccgagtgcaaaccagcgttttggttccacatcaagttgcccgccaaggctgcccagtacaacaaaagtatccaggtaaacatgcggattcagccaggtcactgccaacatggtggcgataattttccatctgccttgcttcatgacttcggcgctggctaactcaatattactgctcattgctgttttaaaagcgccaaaaccataccacagcaagaaggctacgccgccccaggtgaccagcgccagcaaccacggcgactgcatcaataacgcgctgccaccaaaaatcccggcgcaaatcaggaccaaatcgctgatagcacaaagtaaggcaatcataatgtggtactgacgacgtatgccctgattcatcacaaaagcattttgtggaccgagcggtaggatcatagccgccccaagtgcaagaccttgaaagtaataagaaaacacgttggatattccgaattaagtatctgatgcagagactatatcgcgggattgttattagcggaaattgataatattaattggcaatcagaaaaactaataagagagaggccagagagtattatctggcctcagcgttgattacgcagctttgtcttctttcacccgcttaaagttcacatccatttgcgggtacgggaagctgataccggcggcatcaaattcacgtttaatacgctccagcacatcccagtacacgttttgcagatcgccgctgttgctccagacgcggaccacgaaattaatcgacgatgcaccaagttcgttcaggcgcacagtcatttcgcgatctttcaaaatgcgatcttcagactggataatattggtcaggatctgcttaacctgatcgatatcggaatcatacgccacgccaataataaattcgttacggcgaactggctcgcgggagaagttaataatatttccggcaataattttaccgttcggaataacgataattttaccgtctgcagtacgcatggtggtggagaaaatctgcacactcagcacagtaccggctacgccgcccaggtcaacatattctccggcacggaacgggcggaacatgacaagtaacacgccagcggccaggttagacagtgacccctgcaaagccagaccaacagctaagcctgcggcaccgagtacagcaatgactgacgcggtttgtacacccacgcgtcccagtgcagcgattagcgtaaaggcgataataccgtaacggactaatgcagaaagaaaatcagcaacagtggcatcgattttacgggagatcatcaggcgattcaccgcgttggaaatcatccgcgcgataatcaaaccaacgatgatgatcgcgagtgccgccacgatgtttactgcataacttagcagcagcgcctggttagctaccagccagcttcccgcgccgtttatgctatcgacaacattcaaatcttccattcaatattccttttcaactgactcaaaatggagaaatacactccgccgccttatgacgggcagtctgacaagggtaaacaataaagcataattttgccaaatagatcacagatttctcatctgaatcaccttgcttttggcgaaaaaatccccgcagagcggggctcagacagatatcaatgtgcgctttgtcatgccggatgcggcgtgaacgccttatccggcctacaaaaacctgcaaattcaatatattgcaggatacgtgtaggcctgataagcgtagcgcatcaggcaattttgcttttggcgaaaaaaagacccgcagagcgggccttgagataagcagaaaggaatatcttacagaacgtcgatcgcgttcagttcctggaatgctttctccagacgagcgatcatcgaagtctgaccggcacgcagccatacgcgcggatcgtagtatttcttgttcggctgatcttcgcctttcgggttacccagctgaccctgcagataagcttcgttcgctttgtagtagttcagaacgccttcccaggttgcccattgggtatcggtatcgatgttcatttttactacgccgtagcttacggagtctttgatttcctgagcagtagaaccggaaccaccgtggaatacgaagttcaggctgttgtgcggcaggttgtgtttcttggaaacatattcctgagaatcacgcaggatggtcggagtcagaaccacgttacccggcttgtaaacaccgtgtacgttaccgaaggacgctgcgatggtgaaacgcgggctgattttgctcagttcggtgtatgcgtaatcaacgtcttccggctgggtgtacagtgcagaagcgtccatgtggctgttgtccacgccgtcttcttcaccaccggtgcaacccagttcgatttccagagtcatgccgattttggacatgcgctccaggtatttagagcagatttcgatgttctcttgcagagattcttcagacaggtcgatcatgtgagaagagaacagcggcttaccggtagctgcgaagtgtttttcacccgcgtccaacagaccgtcgatccacggcagcagtttcttcgcgcagtggtcagtgtgcaggataaccggaacaccataatgttcagccatctggtgaacgtgatgcgcaccagagatcgcgcccaggatagcagcaccctgcggaacgtcagatttcacgcctttaccagcgataaaggaagcaccaccgttggagaactgaacgataaccggcgctttaactttagcagcggtttccagtacggcgttgatggagtcagtaccgacgcagtttactgctggcagtgcgaagttgttttcttttgctacctggaaaactttctgtacgtcatcaccagtgattacgccaggttttacgaaatcaaaaatcttagacatgtctcttgtcctgtatcgtcgggccttatactcgtcatacttcaagttgcatgtgctgcgtctgcgttcgctcaccccagtcacttacttatgtaagctcctggggattcactctcttgtcgccttcctgcaactcgaattatttagagtatgaaaaattgcgtgctctaaaagcgcgctgaaacaagggcaggtttccctgccctgtgattttttacttcttagcgcgctcttcgagcatcgctactgcaggcagtactttaccttccacgaattcgaggaatgcgccgccgccagtggagatgtaggagattttgtcagcaatgccgaacaggtcgattgctgccagagtgtcgccgccgccagcgatggagaacgcttcgctgtctgcgatagcgttagccacgatttcagtacctttgcggaagttcgggaattcgaacacgccaaccggaccgttccacagaatggttttcgcattcttcaggatttcagccagttcctgagcggaagcatcaccgatatccaggatctgctcgtcagctttcacatcgttaacagatttcagggtagccggtgcagtttcagagaactcggttgctacgcgaacatcagacggaaccgggatgttgcaggtggtcagcagacgtttagcttcgtcaaccaggtcagcttcgtacagggatttacccacatcgtggccttgtgccgcgataaaggtgttagcgataccaccaccaacaatcagctggtcagcgattttagacagggagtccagaacggtcagtttggtagatactttagaaccaccaacgatagccaccatcgggcgagcaggttctttcagtgctttacccagcgcgtccagttcagctgccagcagcgggcctgcgcacgcaacgtcagcgaatttaccgataccgtgagtagaagcctgcgcgcggtgagcagtaccgaatgcgtccattacgaacacgtcacacagtgcagcgtattttttggacagggtttcgtcgtctttcttctcgcctttgttgaagcgaacgttttccagaacaaccagttcaccttcagcaacgtcaacgccgtcgaggtaatctttaaccagacgaaccgggttagacagtttgtctttcaggtagttaacaaccggcagcagagagaattcttcgttgtactcgccttcggtaggacgacccaggtgggaagttaccatcacttttgcgccttgtttcagggccagttcgatggtcggcagagaagcacggatacgcgcgtcgctggttactttcccgtcttttactggtacgttcagatccgcacggataaatacacgtttcccagcaagatccagatcggtcatcttaattacagacatggtgaatcctctcgttgattctaaaagttttgcagacgctgcttgcgtcttacctgaaagcaacagtagccatagctaacgtcgtgtcgagcattcggttagcaaagccccattcgttatcgcaccagaccaacgttttgatcaggtgtgcgccactgacccgggtttgggtgccatcgacaatggcactgtgcggatcgtggttaaaatctacagagaccaacggcaattccgtatagtcaactataccatgaaatgcaccttgtgctgctttttgcagcaacaggttgacttcattggcttttacaggtttcttcaccgtcacgcttaaatcgattgccgtcacatttatggttggcacacgtaccgcaatcgcttcaaagcgatcgttaaattgcggaaaaaatcgtgtgataccggcggccagtttagtatcgaccggaatgatcgactggctggctgcccgggtgcgacgcaggtcaggatggtatgcatcaataacctgttgatcgtgcatggcggagtgaattgtggtcacagtgccggactcaataccgtacgcatcatctaacaatttgatgacgggaattatgcaattcgtggtacaggaagcgttagaaacgatgcggtgttccgcacgaagttgatcctgattgacgccgtaaacaacggtcgcgtcgagatcgttactgccaggatgtgaaaagagcacttttttggccccggcggcaatatgcgcttcgccatgctcgcgggagccatatacgccggtgcagtcgaggactacatcaacgccaagttcacgccaggggagcgattgcagtgaacgttcatgcaatacgcggatggcgtcatcaccaacaaaaagttgatcgcgttcctgtcgtacttcccatgcaaaacggccatggctggtgtcatatttcaacaaatgcgccatgcccgcagcatccgccagttcgttgattgccaccacggtaatttccgcccggcgtccggattcatacaaagcacgaaccacattacgcccgatgcgaccgaagccatttatcgctacgcgtacggtcatagatctcctgcaaggttttccctgagcaaatttgccagacagagtaatccagcaaatcgtccggggaaaccttacctgtcgcaaactgcgactgattggttaattgtcgaacatttaatcgactgaaacgcttcagctaggataagcgaaacgtggaataaaaggaatgtttgtccagccgaagaagacatttatctgactcacatcacacttttatccccttttgtgggaagctttattccaggctggcgtaataataaccctacaataactggaataaattgtcagcttgtgaagtgataccggccttcttcagtcatctctactatcagattggcctgacggctattcatcagcacacgctcgacattggggccatcggtgcgggcataaaatgcttcggctacttgccgcgttaatcctcccgcaattttacgactaatcaagcgctcccgcagaatttgagcaggtgcatgaataaaaatagaaaaatcgcagaaagatgccaactccagccacttttcatcatccagtaacaaccagtttccttcgacgatgacgagtggtgcggtaacgtgcaacgcatcttcaacaggatcatgcttttgtcgatcgtactgcggccacgtacaatccccttccacgacctggcgcagattttccgtcagtttcgcaacgtcaaatgtctctggtgcgcctttgaaggggcgcaattgatgcgcatccagccagctattgtaatggtgaaaaccatccatcgggagcgtctgaatagcgggcagttccgggtcttgttgcgcgagatattcccagaaggtggttagggttgatttacccgtccccggcggagcgcaaagaaaaaccaccgtacgccgctgcggatttaccgtctgtaaggccgccaacatgtgcagcaacggtttatgtacattttcaatctcttcgttctggtactgtgcctgtatcttcagcccattcaccgttaattcaattttcacggcgttaattcctttaaggtggtcgttactgccagcgtcagcgccgttttgaccattccgctaaaacgcgcctctgaccagacggagaaatcagcgaacttcatcgcttttaacgcgtcatagagcatcgcattgcgggttatgctattgacgttgctgataaaatcccaggtcatgtcatcggcaaatccgggcgtttcatcctgttcgttcaggtaatgccagaactgggaaaaatgcgtgatatcggcgtacaaccatttatccattttccccaacgcataaatcaaacgcagtgcaacatcaatatcgtcaagcgggccgctttgggcgagtaacggcttcactgcatattccacgatctcttcatcgttatcgacaaacagcgacggcagaaactggcgtatcccctggagcaaaatggtatgcgcagttttcataaatgaaaataaattgtcctgtgcatccagttgctcaagcacatcatcttctgtcagcgtcgccattggtcttccgatagatcaccatcaatgcagggagtctattatattacacgtttggtccgcgccgccgatcagtaatgtctgcgtccgcaccccattcgccgtctgttggataccgttcaccagctcaccgcccgtcacgcccgtagcgctaaagaggatatcgttccccctcaccagttcatcgagcgagtacacacggttaacgtcaacgcccattgccttgcaacgcttgcgctcctgctctgcaatctgccgattttccgtgtaatcccctttagcctggcaaaagtcaatcagctcggcctgcatatccccgcctaatgctttaacggcacaggcagaaatcacgccttctggcgcaccgccgatggtgtacatcacatcgtaaggattatcctgccagcaggtcagcacgctggcggcgacatcgccatccggcagggcaaaaaccttcacgcccagctgtgttgcttcctcaatcgcggcactcaggcgcggtttatccagcgtaaccatgcgcagcttatccagcggtttgcctaacgctttcgccacgttgcgcaggttgtccgtcagaggcaaagacagatcaatcgcgcccgccgccagccgattaacaaccagctttttcatatacatatcgggcgcatgtaacaggctatctcgaggggcgaaagccatgaccgccagcgcattgctctgccccatcgccaccatccgcgtgccttcaatgggatcaaccgcgatatcgacttctggcccatcgcctttgcccacctcttcgccaatccacagcatcggcgcatggtcaatttctccttcgccgataaccactcgtccacgaaaagcgacgtcgtttaatgcctggcgcatcgcggtgaccgccaggccatcaattttatttttgtcgccacatccggtttgcggccaggcagccaacgctgcctgttccgtaacgcgaaataatggccacgccagggacatcattgcgcggcctccccgatatcaacgccaaattgtgccagcagatatttctcggcctgttcattccagatgccgtgcgtttcctcaaccagccgcgccaactctttaaacagcggatcggttttgcctttttcggcaaaatcggcaatggcagtgagcggcatggtcacgccgttataaatgagttttttaccgccagggatatccggcagattgagcacggtttctggcaccgcatccaggccaccgatatgggtcaccataaacgacggctgtaactgcccagtggcgctaagggcaatcgcctctttcatgtcgtccgttgaaccgccagatgtaccgacgacgtgcgtgctgttgtaatggacgttgtagaaattaaacggcactttgaagtttttatccgtcggcccggcaaagaagttcagacagccatcttccgccagtaattcatcagccatctcaacgacagcaggcaccgccgcataaacaaaaatgtcatcgaacccggcatctcctgtcagcgcccgcagcatctggacaggatcgctcatccctttggtattcacatacaccagctcaatgcctttactggccgccagttccaccggcagcagcttctgtacctgcgccagacgtttgtcgtcgatatcgaccaccaccacccgcgacggttgtatgccgccgttaatggcgtaatcgatagcgccaatgcccatcggacctgcacacgccagcagtgcaatattgccgccaggtttgacgcccatgcgatgctcataaacatattgcgtggtgtgataattggcatgataagcaccaataatgcagcacataggctctgccagcgacgccgcagcaaaataagagccgtgatacggtaatacgcagcccaaattaatggcgatttcgggaataatcatataagtggcattgccgccaaaatattcgtagctgtagcccgctgaatatccgcttggtaaccccatcgccggttgcaatacaaaacgctggcctttttatatttgccagtgagatttttacccacttcgacaataaccccggcacattcatgcccggtaatgaccggatgattttctaaatcgtcgggtacgcgtttatgttcactaccgagtaacgccgctttccaggtcgataaacagacgctgtcagaaattacactcaccagtaattcattatcggtaatttctggcagttcaaatacgcgcagacggacatcccgcttgccataaatagcagcaactttggttttcatttttacctctgtaatcagtgtttatgttcggcggttaattgattaaataaagtgtcgagttttggatcgccaatatagttattaatcaatatcagtggtttatccgtcacacgtttcacgcgcccttccagactggcatgagtaacgacgatatccgcatccgcaggcacgttttctatggcgtaatgttttacttcaattgccagccccgctttttccaggcgtttacggaaggtggtcgcgcccatcgcactggagcccatccccgcatcgcaaacaaaggcgatacgcttaaccctgcttaacgagaatgcaccctcttgtttcatcgccttaaccgcattggctgactgagcaaactcatcttcgctctccgtttccaccgttttttccatcttcagtatcagcgaagtaatagcaaaggacaccagggtacctaccgtaacaccggcaattgtcgccaggaacgagcctttcggcgtcagtgccaggtaagcaaagatagaccccggacttgggccagccaccagaccaccgtccagtaagttaaacatccaggtgccagacataccgcccgcaatcatggcaataatggtcagcggcttcatcagcacatacgggaaatacagttcgtggatcccaccgaggaagtgaataatcatcgccccgggcgcagaacgtttactcatccctttaccaaacaaggtaaacgccagcagcagccccaggcccggacctgggttagaggccaccataaagaagatggatttaccgttaaccgaagcctgttgcattcccagcggataatagacgccctgatcgatcgcattattgaggaaaagcactttcgccggttcattgatgactgacaacaatggcagataacccgcatgtaccagcgcctcaatacactctttgacgaaagtattggcaattaacaccgccgggccgataacttcaaaacccagcagacaaaggagcatccccgcgatacctaatgagaagttattgataaccatctcaaaaccggcaggtatgcgtttttccagtgccttatcgacatattttatgaccaacccaccgagcggccccatgatcattgagccaaggaacatcgggatctctgcgccaacgatcacaccaatagtacctattccgcccatgaccgccccgcgtttaccgccgaccagatgaccacctgtagaaccaatcatcacgggcaataaataggtaatcatcgggccgacaattttggcgaaatgttcgttaggcagccaaccggtgggaataaataacgcagtaataaaaccccaggcaataaaagcaccaatattggggatgaccattgcagtcaaaaagcccccaaaagcctggacctttgcacgagcagacttgttttccataatattatcctgtagaggagagagtaattatccgcggctgataatgtccgctaattgtttttctgatgatgctgttaagagttgttcgagtatttcttcttcgcacagtaattcacttaacgcctgaatagcgccaatgtgcgaatcggcatcggcagcagagagtccgatgagtaatttaattggttcgtcattccccggaaaataaacaccttgttcaagtaatgtcaaagacatcccggttttaagcgccccacattccggtcgcgcatgaggcattgccacgcctggtgcgagaatataataagggccattgttaatggtggaatctttaattgcctgaatgtaattctcgctgatatagtttttatccagcaatgataccatcgagaaatcgatagcttcctgccaatcttttgctgaatgtataactgagattgatgattctggaaaataatcactaagccgcataaattatccttattttatttttagggtaccgtccggcggtaaaaataaaatactcgtgcggtttaatgaaagcaattgagcagggaaaccggtgttttgaaaacagtgaattattaatttcttatataacattgagttatagatataacaacaaatgtcaataccgcatatcgtgatgcatattacataattgatatttattgcatataaatatttgtgatctacaacacgccttatctattgcttgtccgcaaacggacatatcaaggtaataaaaaaggtcgccgaagcacctttttacccgaaatgctaattacagcagttcttttgctttcgcaacaacgttatcaacagtgaagccgaactcttcaaacagcagctctgccggagcagattcaccgaaggtggtcataccgacgatagcaccgttcaggccaacatacttgtaccagtagtcagcaatacccgcttctacagcaacgcgtgcagtaaccgctttcggcagtacggattcacggtaagcagcatcctgcttgtcaaatgcgtcggtagacgacatggacaccacgcgcgctttcacgccttcggcagtcagtttttcgtaggcagcaacagccagttcaacttctgaaccggtagcgatgaaaatcagttccggctgaccggcgcagtctttcagcacataaccaccgcgcgcgatgtttgccagttgctcttcagttcgttcctgctgcgccaggttctgacgggagaggatcagtgcggtcgggccgtcctgacgctcaacaccgtatttccacgcgaccgcggattcaacctggtcacacggacgccatgtagacatgttcggggttacgcgcagagaagcgacctgctcaaccggctggtgagtcggcccgtcttcgcccagaccgatggagtcgtgggtgtaaaccatcacctgacgctgtttcatcagcgcagccatacgtacggcgttacgtgcgtattccacgaacatcaggaaggtggaggtgtacggcaggaagccaccgtgcagggagataccgttagcaatcgcggtcataccgaactcgcgaacaccgtagtggatgtagttacccgcagcatcttcgttgattgctttagaaccagaccacagggtcaggttagacggcgccaggtcagcagaaccgccgaggaattccggcaacagcggaccgaacgcttcgatagcattctgagacgctttacggctggcgattttcgccggattagcctgcagtttagcgatgaactctttcgctttagcgtcgaagtcagacggcatttcgcctttcatacggcgggtaaattcagcggcttcctgcggataagctttcgcgtaagcagcgaatttctcgttccatgcggattctttcgcctggcctgcttctttcgcatcccactgagcatagatttcagacgggatttcgaacggcgcatatttccagcccagttgttcgcgggtcagggcaatttcagcgtcgcccagcggcgcaccgtgggagtcgtgggtaccggctttgttcggggaaccgaaaccgatgatggttttgcacatcagcagggaaggtttgtcagtcactgcgcgcgcttcttctactgcgcgtttgatagatgccgcgtcatgaccgtcgatgtcgcgaataacgtgccagccgtaagcttcgaaacgcattgcggtgtcgtcggtgaaccagccttcaacgtgaccatcgatagaaataccgttgtcatcgtagaatgcaatcagtttacccagcttcagcgtacccgccagagagcaaacttcgtgggagatgccttccatcatgcagccgtcgcccatgaaggcgtaggtgtagtggtcgacaatgtcgtggcccggacggttaaactgcgccgccagcgttttttctgcaatcgccataccgactgcgttggcaataccctgacccagcggaccggtggtggtttccacacccagcggtgtaaccccactttccgggtgacccggagttttagagtgcagctgacggaagtttttcagttcttccatcggcagatcgtaaccggtgaggtgcagcaggctgtagatcagcatggagccgtggccgttggacagcacgaagcggtcacggtcagcccaggacggattctgcgggttgtgtttcaggaaatcacgccacaggacttcggcaatgtcagccatacccataggggcccccgggtgaccggatttggctttctgtactgcgtccatgctcagcgcacgaatagcattggcaagctctttacgtgaggacattttgactccagatcggatgatgaagggcacgcccttaacgacttgacgacagcgcgttttgggctacgccgggaaaaatttgccaacaatttaccgcaagccgcgcgtcatgtacatggaacatccttttgccgcttcagaaatctctggatcatgctcgcatgttgcgcaatctactcgcccgtccgctgcgcttttccttatactgagactgagcgtcgattcacctgcaaacggcgcatttttagaataatcctgaccttgtgcggaagagaaaacatgaaaattcgcgccttattggtagcaatgagcgtggcaacggtactgactggttgccagaatatggactccaacggactgctctcatcaggagcggaagcttttcaggcttacagtttgagtgatgcgcaggtgaaaaccctgagcgatcaggcatgtcaggagatggacagcaaggcgacgattgcgccagccaatagcgaatacgctaaacgtctgacaactattgccaatgcgctaggcaacaatatcaacggtcagccggtaaattacaaagtgtatatggcgaaggatgtgaacgcctttgcaatggctaacggctgtatccgcgtctatagcgggctgatggatatgatgacggataacgaagtcgaagcggtgatcggtcacgaaatggggcacgtggcgttaggccatgtgaaaaaaggaatgcaggtggcacttggtacaaatgccgtgcgagtagctgcggcctctgcgggcgggattgtcggaagtttatctcaatcacaacttggtaatctgggcgagaaattagtcaattcgcaattctcccagcgccaggaagcagaagccgatgattattcttacgatcttctgcgccaacgcggcatcagcccggcaggtcttgccaccagctttgaaaaactggcaaaactggaagaaggtcgccaaagctcaatgtttgacgaccatcctgcatccgccgaacgcgcccagcatattcgcgatcgcatgagcgcggatgggattaagtaaagcctggtggtgtcgaacgtaggtcagataaggcgttcacgccgcatctgacatgaatggcacatttgttaccttgtgcgcattgccggatgcgatgctggcgcatcttatccggcctacgggtgccgaacgtaggtcggataaggcgttcacgccgcatccgacattaatggcacgttttacccgtgcgcatcgcatctggtgcttactcgccctttttcgccgcctgaatatacagcatttccagcgccagcgttgccgctgccagagcagtgatttccgactgatcgtatgccggagccacttccactacgtccatcccaacaatgttgagatctttcaggccgcgtaccagtttaatagcgcgatcggaggtcaggccgccaatcactggcgtaccggtgcctggtgcaaaagcaggatccaggcagtcgatatcaaaagtcaggtaaaccggcatatcacccacaatctgtttcacttgggcgataacgtcatccacgctgcgatcgttcacctggcaggcgtccagcacggtaaagccgttgtctttatcaaactcggtacgaataccaatctgcacggaatgattcgggtcgatcagaccttctttcggcgcggtatagaacatagtgccgtggtcaaattcacaaccgttcgcataggtatcggtgtgggcgtcaaagtgtaccagcgccattttgccgaaatgcttcgcatgagcacgcagcagcggcagcgtaacaaagtggtcaccaccgaaagagagcatacgcttaccggcagccagcagcttctcggcgtgcgcctgcagcttttcgctcatctcacgggcatcgccaaaggcatataccagatcgccgcagtccacgacgttcagacgctcacgcatgtcgaaattccacgggaagcggttgtgttcccaggccagattcgtcgaaacctgacggatcgctgccggaccgtggcgaccacccgcacgaccagaagtggccatatcgaacggcacgccagtaatcacccagtctgcatcgctgtcatacggctggaagttcatcggcaggcgtaaaaaaccaaaggcattggaaaccagtgagttatcgtattgatgacctaaggtgctcatggatggactcctattacaaagtcgatataaaaaaacccttccgcgtcgttaggcccgacgaggaagggttggatttgtcacaataaattgtggcggattatcaccgctaaattaagcggattcaagtaacacaggacttactcatcttcaagataagtataaccgtacaaacctgcctcgaactcttcaaggaactgttgttgcagttcagcatcaagatcggttttcttcacttgatcgcggaactgggttaacagcgttttcggatcgagctgtacatattgcagcatgtccgccacggtatcgccttcgtcagacagttctacttctacgctaccgtcagggaagacgaacacgtcaaccgcttcggtatcaccgaacaggttgtgcatgttgccgaggatctcctgatatgcgccgaccataaagaaaccgagcatcggcggattctctggatcgtactccggcattggcattgtcgtggcaataccgtcaccatcaatatagtggtcgatagcaccgtcagagtcacaggtaatatccagcagcacagcgcgacgttccggcacttgatccagcccttccagcggcagaaccgggaacaactggtcgatcccccatgcgtccggcatcgactggaacagcgagaagttgacgtacattttgtccgccatacgttcctgcagctcgtcgataatcggacgatgagcacggttttgcggatccagctgcttttgcacttcatggcacatgctcaaataaagctgctcagcccatgcacgttcttgcaggctaaagatgccggaagagtagccgatatgaatgtcgtgcagatccatctgactgtcgtgtaaccattcacgcagagaacggcgagttcccggttcgtgcatctcctgccaggtttcccacatgctttgcagcgcgcgcggcgcatcttctgcaggcgcggtcggcaccgtgtattcgttacgttccacgccgatgatattagacaccagcacggtgtgatgcgcagtcaccgcacgacccgattcggtgattaccgtcggatgcggcagaccgttttcttcacacgcatcgccaatcgcccagataatgttgttggcgtattcattgaggccgtagttcaccgaacagtcggactgcgaacgagtaccttcataatccacgcccagaccgccgccgacgtcgaagcactgaatattgacgcccagcttgtgcagttccacatagaaacgcgcggattcacgaacgcctgtcgcgatatcgcgaatattcgccatctgcgaaccgaggtggaagtgcagtagttgcaggctgtcgagacgcccggcttcacgcagggtttcaaccagttgcagtacctgagtcgcagccaggccgaacttcgatttttccccgccggaggactgccatttacccgaaccctgcgaagccagacgtgcacgcacgcccagacgaggaacgacattcagacgttctgcttcatccagcacaatggcgatttctgacatcttctcaatgaccagatagaccttgtgccccatcttctcgccaattaatgccaggcggatatattcgcggtctttataaccgttgcagacgatgacgctacgggtcatgccagcatgtgccagtactgccatcaactcggctttggaaccggcttccagacccagcggttcgcccgaatgaatcagggactcaatcacgcggcggtgctggttaactttgatcggataaacaaggaagtaatcgccgttatagccgtaggattccctcgcacgtttgaacgcggcgttaatggaacgcaaacggtgctgcaggatctgtgggaaacagaacagtgcaggcagacgctggccctgtgcttcacgagttttcactaactgcgcgagatcgacgcgagcttccgggacgtccgggtccgggcacacgctaatgtggcccagctcgttaacgtcatagtagttattgccccaccaggcaatattgtaagtacgcagcatcttgctggcttcctgggagctcattgcaacctcctgcatggagcgtagtacaccgtgttcgcccgctgacgaaggcaaacccatagacatgtcgtcagacatagcgaacctcaaattattttattaagtgtaaaacagttaacgactatcgcagcctggaactgcgataacaacccataagcacatggattttccagcagtgaatgctgacgctccaactgcgcaaccggtttctttttcataacattattaagcacataaccgaacgtaagtgtgaaagttcggcgaaaccacgagaaaactcttgtttttacaagagcgcccttgttcagtcctcagtaactgtaaccagctcttgaatcctgagaagcgccgagatgggtataacatcggcaggtatgcaaagcagagatgcagagtgcggggaacgaatcttcaccagaacggtgagacaggttaagcagcagacaacggttcattatttcgtatcacctccacggccgcctgttaagacgaacccacaagccaaaactctgatttcaacccggctggaagtggcaacacgaaagaaacgtcgtgtgctttttatttaagccgcgcgccgcgttttataccccacaatggcagaaaattgcaaaagataaatacgcagaatgccggcattgtcaggaaaaatttccagccacgtttttaacagaatgagacacgattcaaaaaaaagtggaaatagggtgaagaattgacctaaaatagccatccagatgttaatccatccataccgattaacactcagactgccagtgtttttaacctgcagagtcgtggtaggatccgctaccacagaaaatccacacaacagtttgagctaaccaaattctctttaggtgatattaaatatggcaaaacacctttttacgtccgagtccgtctctgaagggcatcctgacaaaattgctgaccaaatttctgatgccgttttagacgcgatcctcgaacaggatccgaaagcacgcgttgcttgcgaaacctacgtaaaaaccggcatggttttagttggcggcgaaatcaccaccagcgcctgggtagacatcgaagagatcacccgtaacaccgttcgcgaaattggctatgtgcattccgacatgggctttgacgctaactcctgtgcggttctgagcgctatcggcaaacagtctcctgacatcaaccagggcgttgaccgtgccgatccgctggaacagggcgcgggtgaccagggtctgatgtttggctacgcaactaatgaaaccgacgtgctgatgccagcacctatcacctatgcacaccgtctggtacagcgtcaggctgaagtgcgtaaaaacggcactctgccgtggctgcgcccggacgcgaaaagccaggtgacttttcagtatgacgacggcaaaatcgttggtatcgatgctgtcgtgctttccactcagcactctgaagagatcgaccagaaatcgctgcaagaagcggtaatggaagagatcatcaagccaattctgcccgctgaatggctgacttctgccaccaaattcttcatcaacccgaccggtcgtttcgttatcggtggcccaatgggtgactgcggtctgactggtcgtaaaattatcgttgatacctacggcggcatggcgcgtcacggtggcggtgcattctctggtaaagatccatcaaaagtggaccgttccgcagcctacgcagcacgttatgtcgcgaaaaacatcgttgctgctggcctggccgatcgttgtgaaattcaggtttcctacgcaatcggcgtggctgaaccgacctccatcatggtagaaactttcggtactgagaaagtgccttctgaacaactgaccctgctggtacgtgagttcttcgacctgcgcccatacggtctgattcagatgctggatctgctgcacccgatctacaaagaaaccgcagcatacggtcactttggtcgtgaacatttcccgtgggaaaaaaccgacaaagcgcagctgctgcgcgatgctgccggtctgaagtaatctttcttcacctgcgttcaaaggccagcctcgcgctggcctttttcttttggataggcgttcacgccgcatccggcaaaaaaaccgcccgcacaataacatcattcttcctgatcacgtttcaccgcagattatcatcacaactgaaaccgattacaccaaccacaacagacaaagatttgtaatattttcatattattattcggttttcacagttgttacatttcttttcagtaaagtcttaattgcagataacagcgtttaatctatgatgatataactcaattattttcatgcacttaaatcataactaagataaatgttagtgtaagcgattacactgatgtgatttgcttcacatctttttacgtcgtactcacctatctaattcacaataaaaaataaccatattggagggcatcatgcctgacgctaaaaaacaggggcggtcaaacaaggcaatgacgtttttcgtctgcttccttgccgctctggcgggattactctttggcctggatatcggtgtaattgctggcgcactgccgtttattgcagatgaattccagattacttcgcacacgcaagaatgggtcgtaagctccatgatgttcggtgcggcagtcggtgcggtgggcagcggctggctctcctttaaactcgggcgcaaaaagagcctgatgatcggcgcaattttgtttgttgccggttcgctgttctctgcggctgcgccaaacgttgaagtactgattctttcccgcgttctactggggctggcggtgggtgtggcctcttataccgcaccgctgtacctctctgaaattgcgccggaaaaaattcgtggcagtatgatctcgatgtatcagttgatgatcactatcgggatcctcggtgcttatctttctgataccgccttcagctacaccggtgcatggcgctggatgctgggtgtgattatcatcccggcaattttgctgctgattggtgtcttcttcctgccagacagcccacgttggtttgccgccaaacgccgttttgttgatgccgaacgcgtgctgctacgcctgcgtgacaccagcgcggaagcgaaacgcgaactggatgaaatccgtgaaagtttgcaggttaaacagagtggctgggcgctgtttaaagagaacagcaacttccgccgcgcggtgttccttggcgtactgttgcaggtaatgcagcaattcaccgggatgaacgtcatcatgtattacgcgccgaaaatcttcgaactggcgggttataccaacactaccgagcaaatgtgggggaccgtgattgtcggcctgaccaacgtacttgccacctttatcgcaatcggccttgttgaccgctggggacgtaaaccaacgctaacgctgggcttcctggtgatggctgctggcatgggcgtactcggtacaatgatgcatatcggtattcactctccgtcggcgcagtatttcgccatcgccatgctgctgatgtttattgtcggttttgccatgagtgccggtccgctgatttgggtactgtgctccgaaattcagccgctgaaaggccgcgattttggcatcacctgctccactgccaccaactggattgccaacatgatcgttggcgcaacgttcctgaccatgctcaacacgctgggtaacgccaacaccttctgggtgtatgcggctctgaacgtactgtttatcctgctgacattgtggctggtaccggaaaccaaacacgtttcgctggaacatattgaacgtaatctgatgaaaggtcgtaaactgcgcgaaataggcgctcacgattaatctccccaagcttcctcccatcgcggaggaagccacctcttgcagtcatcttttcttcgctctatcctctgccgctatgaaaacatcccgtctccctatcgccatccaacaggccgttatgcgtcgcctgcgggaaaaactcgcccaggccaacctgaagctagggcgtaactacccggagccaaaactctcttacacccagcgcggaacctccgccggaacggcctggctggaaagctatgaaattcgcctcaatcccgttttgctgttggaaaacagtgaagcttttattgaagaagtggtaccgcacgaactggcacatttgctggtatggaaacatttcggccgcgtagcgccacatggcaaagagtggaagtggatgatggaaaacgtgctgggtgttcccgcccgtcgtacgcatcagttcgaactgcaatccgtgcgtcgcaacaccttcccctaccgctgcaagtgccaggagcatcagcttaccgtacgccgccataatcgcgtagttcgtggcgaggccgtctatcgctgtgttcactgcggtgaacagctggttgcgaaataaccatctgaactatcaggaactttcctgatctggctgattgcataccaaaacagctttcgctacgttgctggctcgttttaacacggagtaagtgatgtaccgttatttgtctattgctgcggtggtactgagcgcagcattttccggcccggcgttggccgaaggtatcaatagtttttctcaggcgaaagccgcggcggtaaaagtccacgctgacgcgcccggtacgttttattgcggatgtaaaattaactggcagggcaaaaaaggcgttgttgatctgcaatcgtgcggctatcaggtgcgcaaaaatgaaaaccgcgccagccgcgtagagtgggaacatgtcgttcccgcctggcagttcggtcaccagcgccagtgctggcaggacggtggacgtaaaaactgcgctaaagatccggtctatcgcaagatggaaagcgatatgcataacctgcagccgtcagtcggtgaggtgaatggcgatcgcggcaactttatgtacagccagtggaatggcggtgaaggccagtacggtcaatgcgccatgaaggtcgatttcaaagaaaaagctgccgaaccaccagcgcgtgcacgcggtgccattgcgcgcacctacttctatatgcgcgaccaatacaacctgacactctctcgccagcaaacgcagctgttcaacgcatggaacaagatgtatccggttaccgactgggagtgcgagcgcgatgaacgcatcgcgaaggtgcagggcaatcataacccgtatgtgcaacgcgcttgccaggcgcgaaagagctaacctacactagcgggattctttttgttaacccctaccccacgcgtacaaccgcgtggggagacgacgcggatttttaactatgcgtatcccccgcatttatcatcctgaaccactgaccagccattctcacatcgcgctttgcgaagatgccgccaaccatatcgggcgcgtactgcgcatggggccggggcaggcgttgcaattgtttgacggtagcaaccaggtctttgacgccgaaattaccagcgccagcaaaaaaagcgtggaagtgaaggtgctggaaggccagatcgacgatcgcgaatctccgctgcatattcacctcggtcaggtgatgtcgcgtggtgaaaaaatggaatttactatccagaaatcgatcgaactcggtgtaagcctcattacgccacttttttctgagcgctgcggcgttaaactggatagtgaacgtctgaacaagaagcttcagcagtggcagaagattgcaattgctgcctgtgagcagtgtggtcgtaaccgggtgccggaaatccgtccagcgatggatctggaagcctggtgtgcagagcaggatgaaggactgaaactgaatcttcacccgcgcgccagtaacagcatcaatacgttgccgttaccggttgaacgcgtccgcctgctgattggcccggaaggcggtttatcggcagatgaaattgccatgactgcccgctatcaatttactgatatcctgttgggacctcgcgttttgcgtacagagacaactgcgctcaccgccattaccgcgctacaagtacgatttggcgatttgggctaacggagaagaataatgatcaagctcggcatcgtgatggaccccatcgcaaacatcaacatcaagaaagattccagttttgctatgttgctggaagcacagcgtcgtggttacgaacttcactatatggagatgggcgatctgtatctgatcaatggtgaagcccgcgcccatacccgcacgctgaacgtgaagcagaactacgaagagtggttttcgttcgtcggtgaacaggatctgccgctggccgatctcgatgtgatcctgatgcgtaaagacccgccgtttgataccgagtttatctacgcgacctatattctggaacgtgccgaagagaaagggacgctgatcgttaacaagccgcagagcctgcgcgactgtaacgagaaactgtttaccgcctggttctctgacttaacgccagaaacgctggttacgcgcaataaagcgcagctaaaagcgttctgggagaaacacagcgacatcattcttaagccgctggacggtatgggcggcgcgtcgattttccgcgtgaaagaaggcgatccaaacctcggcgtgattgccgaaaccctgactgagcatggcactcgctactgcatggcgcaaaattacctgccagccattaaagatggcgacaaacgcgtgctggtggtggatggcgagccggtaccgtactgcctggcgcgtattccgcaggggggcgaaacccgtggcaatctggctgccggtggtcgcggtgaacctcgtccgctgacggaaagtgactggaaaatcgcccgtcagatcgggccgacgctgaaagaaaaagggctgatttttgttggtctggatatcatcggcgaccgtctgactgaaattaacgtcaccagcccaacctgtattcgtgagattgaagcagagtttccggtgtcgatcaccggaatgttaatggatgccatcgaagcacgtttacagcagcagtaacccaccttagcgagaaggatctcgttgagactctgagtgacagcgcccttctttccacgcatactgggcgctgttgcttttttgaaccaggaaacagaacctctgacaatgaatttacagcatcactttcttattgccatgcctgctctccaggatccgattttccgtcgttccgtggtctacatttgcgaacataataccaatggtgcaatggggatcatcgtcaacaagccgctggaaaatctcaaaattgaagggattctggaaaagctgaagatcacgccggagccgcgtgatgaatcaatccgtctggataaaccggttatgctcggcggtccgctggctgaagatcgcgggtttattttgcatactccgccctccaattttgcttccagcattcgcatttcagacaacacggtaatgaccacttcccgcgatgtgctggaaacgctcggcaccgataaacaaccgtctgacgtattggtggctctgggttatgcctcctgggagaaaggtcaactggaacaagaaattctcgataacgcgtggctaacggccccggcagatctgaatattctgttcaaaacgccgattgccgaccgctggcgcgaggcggcaaaactgattggtgtggatattctcaccatgcctggtgtggcaggacacgcctgatgagtggaaccttactcgccttcgacttcggcaccaaaagcattggcgtagcggtcggccaacgcattaccggcaccgctcgccctttgcctgcaattaaagcacaggacggtacgccggactggaacattatcgagcgtttactgaaagagtggcagccggacgaaatcatcgtcggtttgccgctgaatatggacggcaccgagcaaccattgactgccagagcgcgtaaatttgccaaccgtattcatggccgtttcggtgttgaagtaaagctccatgacgagcgtcttagcactgtggaagcccgttccggtctgtttgaacagggcggctatcgggcgctcaacaaaggcaaagttgactctgcctctgcggttattattctcgaaagctatttcgagcagggatattaaggcgatttaaacgcctggcggagtgtaaataatatcatcgcgtcttattgccggatgcggcgtgaacaccttatccagcacacatctggcagcggctataggtctgataagacgcgttagcgtcgcatcagacatttattgcctttgtaggcccgataagcttgcgcatcgggcatggcaacgtcacaaacgcccttcccccacccggtgctgataactctgctgaaacgttatcatccccacctgctgcccggtttgaataacatgcggtaactggtgggttttcccttcgcgaatcaaattccccaccgcgggtgtgttaatcagcaattcaaatagcgccacgcgtccttcctgtttatccacttccagcttttgtgacagcactgcccgtaaactacctgccagttgattacgcacggggtctttttcctgcgccggaaatgaatccaccagtcgctcaactgcctgcgcggcaccacgcgtatgtaatgttgccagcaccaaatgcccggtttctgccgccgtcagtgccagacggattgtctcgctgtcacgcagctctccgagcaaaatcacatcaggatcttcccgcaatgcggcccgcaatcccgatgcgaacgtcatacagtgcaaaccaatttcccgctgctggatcaaacatcgctggctggcatagagatattcaacaggatcttccagcgtcagaatatgcgcatcggcatgttgattgagatagccaaccatcgccgccagcgtggtagatttgccactccccgtcgcccccgtcaccagaatcaggccattctcgctcttgagtaattccggcaataccgttggtgcgccaagctgttcgagctgcgggcagtgcgaaggtaacagccgtaacgccagcgaaatgccatgccgttgcgcgaatgcgctgccacgcaatcgctggttttccgccagcgacacggcaaaatccagctgaccattctccagcaatattgcccgctgatcgtcatccagccactcccgcagtagctcttcgacgtccggcgtatcaaacggcgcagcttccattctgccgcgaatgcgccatcgtgcgggccaggcgctgcacaggtgtagatccgagacgttatgctttacactaagggccacaatttcttccatattcatactaagatcctcggaaaatgaacgatattgcgcataacctggcacaggtccgggacaaaatctcagcggctgcaacgcgttgcggccgttctccagaagaaattacgctgcttgcagtcagtaaaacaaaacctgcgagcgccatcgcagaagccattgatgccgggcagcgtcaatttggtgaaaactacgttcaggaaggggtagataaaattcgccactttcaggaactgggcgtaacaggattagaatggcattttattggcccgttgcagtctaataaaagccgcctggtggcagagcatttcgactggtgtcataccatcgaccgtttgcgcatcgctacccgtctcaacgaccagcgcccggcagaacttccccctcttaacgttctgattcaaattaacattagtgatgaaaacagtaagtccgggattcaactggctgaactggacgagctggcagctgcggtcgctgaactaccgcgtttacgtctgcgcgggttgatggcaatccctgcgcctgagtcagaatatgtaaggcagtttgaagttgcacgccaaatggctgtagcatttgccggactgaaaacgcgctacccgcatatcgacacgctctctctgggaatgtcggacgatatggaagccgccattgcggcaggtagcacgatggttcgtatcggcactgcaatttttggtgcgcgtgattactctaaaaaataaggaattaaaggaacgccatgaatacgttgactttcctgctttcaacggtcattgagctgtataccatggtgctgttattacgcatctggatgcagtgggctcattgtgatttttacaaccccttctcacagtttgtagtgaaggtaacgcagccaattatcgggccactgcgccgcgttattccggcaatggggccaattgacagcgcctcgctgctggttgcctatattctcagttttatcaaagccatcgtgctgtttaaagtggtgaccttcctgccaatcatctggattgccggtttactgattctgctgaaaaccatcggcctgctgattttctgggtcctgctggtgatggcgattatgagctgggtaagccaggggcgtagcccgattgaatacgtgctgattcagctggccgatccgctgctgcgcccgattcgccgcctgctaccggcaatgggtgggattgatttctcgccgatgatcctcgttctgctgctgtatgtcatcaatatgggtgtcgcagaagtattacaggcaaccggaaatatgctgctgccagggctgtggatggcgttatgaatgccgtaacagttaatgatgacggtctggttttacggctctatattcagccgaaagccagccgtgattctattgtcggtttacatggcgacgaagttaaagtcgccattaccgcgccgccggttgacggccaggccaacagtcatctggtgaagtttctcggtaagcaattccgggttgccaaaagccaggtggtgattgaaaaaggcgaacttggccgccacaaacaaattaaaatcattaatccgcaacaaatcccgccagaaatcgcggcgttaattaattaggtatcctatgcaaaaagttgtcctcgcaaccggcaatgtcggtaaagtgcgtgagctggcgtcgctgcttagcgacttcggtcttgatatcgtggcccaaacagacctcggcgttgattccgctgaagaaaccggcctgacctttatcgaaaacgcgattctgaaagcgcgccatgcggcaaaagtgaccgctttaccggcaattgccgacgactctggtctggcggtagatgtgcttggcggcgcgccgggcatttactccgcgcgttattccggtgaagacgcgaccgatcaaaagaatctgcaaaaactgctggaaacaatgaaagacgtaccggacgaccaacgtcaggcgcgtttccactgcgtgctggtatatctgcgtcacgcggaagatcccactccgctggtatgccacggtagctggccgggcgtgattactcgtgaaccagcgggcactggtggctttggttatgatccaatcttcttcgtaccttccgaagggaaaaccgccgccgaactgacccgcgaagaaaagagcgccatttcccaccgtggtcaggcgttgaaactgctgctggacgctttacgtaatggttaaattacctccgctgagtctctacattcacatcccgtggtgcgtgcagaaatgcccgtactgcgatttcaactctcacgcgttgaaaggagaagtgccgcacgacgattatgttcagcatctgcttaacgatctggacaacgatgtggcttacgctcagggccgtgaagtaaagacaatctttattggcggtggtacgccgagcctgctttccggcccggcgatgcaaacgctgctggacggcgtgcgtgcgcgtttgccgctggcagcggatgcagaaattactatggaagcgaaccctggcacggtagaagccgatcgctttgtcgattatcagcgtgctggtgtgaaccgcatctctattggtgtgcagagttttagcgaagaaaagctgaaacgacttgggcgtattcatggcccgcaagaagcgaaacgcgcggcgaagctggcgagcggtttagggttacgtagctttaaccttgatttgatgcatgggctgccggatcaatcactggaagaggcgcttggcgatctacgccaggccattgaactgaatccgccgcatctttcctggtatcaactgaccatcgaacccaatacgctgtttggttcgcgaccaccggtgctgccggacgatgacgcgttgtgggatatattcgaacaggggcatcagttattaaccgcagcgggttatcagcaatatgaaacttccgcttacgccaaacccggttatcagtgccagcacaatctcaactactggcgctttggtgactacatcggtattggctgcggcgcacacggcaaagtgaccttcccggatgggcgcattctgcgtaccaccaaaacgcgtcatccgcgtggttttatgcaaggaaggtatctggaaagccagcgtgatgtcgaagccacagataagccgtttgagttctttatgaatcgcttccgtctgctggaggccgcgccgcgcgtggagtttattgcgtataccgggctttgcgaagatgtgattcgcccacagttagacgaggcgattgcccagggttatctcaccgaatgtgcggattactggcagataacggaacatgggaagctgtttttaaattcgctgctggagctttttctggctgagtaaacttgtattgccggatgcggcgtgaacgccttatccagccgacatgtggcagcggttgtaggtctgataagacgcgcaagcgtcgcatcagacgttgattgccggatgcggggtcaacgccgcatcctgctacaaatcgtgcactatatcaaacttacttaatcaccccattgcgccgcagttgttcggtatcttttttccagcgttcattagcttggttgatatcgtcaattttcatcaaaatcgcgacttttttactgtttatttctgaaactttcatcgttaacggatattgccctttttcgagcgttacccagtcatcctgcaatttacggctaagtttttgtgattgcagaaaagtctgtcgccgttgttcgttgatatcgaaatctcgtttctgctgaatcggcacttcataacactcttcactctgtttatgacatgccgcaatcgccggttgataaacctctttgtcatatttaaccgcgaacgcctcgctatcgttctgtttattaaactcatcacgctgttggtgaatttttttaaaggcgtcttcgcgggtcatttgcttaccgtttgcatcttttccccaatatgcatccgctgctttctgcgccgccaccatttgcttatcaagcgctttcacttccttttccagcgcaggaatcgagttcttctgggtattcaacgcagattcaagctgactaaagcgataattgaaatcttcgctattcacgatcagatatttattattcgttttgatatcgtcgaccacccgcccacgatcgctggctgccgcctgaaaagagtaaaagttcaccgaccagccagacgcgggcgttcctttactggttaacatcgccgagaattttaccggtttatctttcgtccaggtctgttcgagcagttcgtaatctgccaactgaccgacccaggtatagagatcgtcactggaagagacatcgccttccgctgaccaggtggcctgattacccttagcatcaagattttttaaggtgatagcatcaagcttgagaatgccgtgatactgctttttgaattgatcttttaagatattttcagttggcggttcgccatctgcccaggcattaccagtcatcaacataagcagtgccgtgccaacaatccattgctttttcacccgaaaaacctcacgcggaataatttattccggtgattatcattagggtaattaaaattggcaatggacgtgagtctgaagtgaaaaagccccggcacgataccggggcgaggcgattagtactgattgaagatctgctggatctgctgcggatctttggtttgcgtcagagccagttgcagcagaacgcgcgctttttgcgggttcagcgtgccagaggcgacgaagccgtatttcgcatcatccacttcggcatcctgagtggtagcgcccgtcggtacgcgggaagaacgcacgactgcagtaccggttttcgcggcggtcgccagcgtgtcgaacacagatttatacaggttgccgttacccacaccagcgctaacgatgccatcatagcccgcatctaccagtgctttagccggaagatcggatgcgttagcgtagttataaacaatgccgactttcggcagttcattcagcttagagacatcgaatggcgtgtcgctggtatgcttacgtgccggggtacgctggtagtcaatcttaccgttgtgaatgtaacccagaggaccgtagttaacagacttgaaggtcgctacgtcggtggtgttggttttggtgacgtcacggccatcaagcacggtgtcattcatcactaccagcacgccacggttggcggaggctttatcagctgcggtcactaccgcgttatacaggttgaatggaccgtctgcgctcatagacgtggacggacgcattgcgccgaccatcaccaccggtttgtcgcatttcaccgtcaggtcgaggaagtaagcagtttcttccatcgtgtcggtaccgtgggtaatgacgaagccgtcggtcttatcgcagtcggtgttaatttttttcgccagtgtcagccagacattatcgttcatgtcctgggagccgatattcactacctgctcgcctttaacgttcgcaatgtcttttagttgcggcaccgcattaaccagattttctacgccaactttacccactgtgtagttagatttggttgcggagtcaccaccaccggcaatggtcccgccggttgctaaaatggtgatattgggtaatgccaatgctgcaccactaaaacccataaccagtgcggcaagtgccgtctttttgaaaaactccatttcattcctccagttacgtgaacgctacgcattatcccttagctctgtatgggaaatttgacgttaaacaatttacaacgtgaatatattttggagatctacaaagttagaggcaggtaacaaaacgaagaattaaacggcataaaaaagtattatgccgtcttaaaatagaggattattttaaattcccgaccagggctttgcggctatcttccagagtcacaacgcggctacaaacatctttgccaaactgctggaaatctttttcctgctttttccactcggtttggattgaggattgcagcccccccaggcttcccagcacattctgtaatgggttaccgccgcttttcagcaccgctttcgcgcccatttcattaatgctgtcctgtaaaattccacccattgcctgattcactaattgctggccttcggcgcgaacctgatcaatggctttatagtgaaacgtcaggccatcgctgcgcgtttcaataatgcggttcatctgctctttcagctgcgcatcaagtttggtcagacggctgcgcattttgctgctttcgcccatctcctgaacgataattttatccagagcaatacgggctttctcgacgcggcttttcgcgccttcatcaatccacggcagcgtgctgcgtagttcagcctgataatccttcgcctgctcgcgctgggcggcattcagggaatattgcttaccgttatacatcacgttgccgtctggcgtgatcaccagattgccgttttcgcccttcacctgcacggtttgcgggctgacaatcacatcgtcacgcggcgtgacgctgcactggtagtcggcgtgagcggtcattgccgtcactgaaagtgctgccgccagcagcattttgcgcatcatagtcttccctcaagaaaaatcaggccagcatttgctggccccagattgataacaaagtacgcgttttccatgccggatgcggcgtaaacaccttatcccgcctactcgatcgtgcatctttccaggcctgataagcgtagcgcatcaggcagttttgcatttgtcatcgcccgtatgctttcttagtcccaccaaacgtcgaaaagttcgctggtgcgtacctcatccagtttgcgctcttccagccacttacgcacaatcgcctgatgttcttcggtgcatttgccgatttcctgcatgcagatcagaccttcccaggccagataaccgctgccgtcaaaggccagtttgttcggttcgataacctcgttaataaaatcatcaacggttttatcaatctgttcttccgatgtaccttccgggaatcgccatgccaccgaaaatcctaattcctggaattcgtcgatgtgcatttttttacgcagacgacggctacggttctttgccattatttcaccctctcgaacattaagtcccatactccgtgaccaagacgatgaccacgttgttcaaatttcgtcaccggacgtgatgccggacgcggtacgtaatcattgctctctgacaggtttttataaccgtcaatagaagacatcacttcaagcatatgttccgcataaggttcccagtcggtcgccatatggaatacgccccccagctgcagtttgctttttaccagttcggcaaacggcacctgaacgatacggcgtttattatggcgcgctttgtgccacgggtcagggaaaaagagctgcaccatgcgcaatgaattgtcaggaatcattttatgcagcacttcaaccgcatcgtgacacatcacgcgcaggttgcttaaaccttcttcatgcgcagaagccaggcacgcaccaacgcccggtgaatgcacttcaatgccgaggaagtcctgctcagggcgatctttagccattgccaccagcgacgcccccatgccaaaaccaatctcaagcgtcaccggcgcttcacggccaaaaagcgcggggaaatccagcatatcttcgctgaactcaacgcccatcaccggccagtagttttccagcgcatgttcctggcctttggtcagtcgcccctggcggcgcacaaaactacggatacggcgcagtgggcggccgttttcatcaaattccggtgaaatgacgtcgtttttcataaaggtttagtcgcttgtgaaagtgttctgaaaacgggcattatccaaagttagttgccggatgcaagcatgataaggccgtggctgcggaaagttccggtttacaccctgccgtcgctgtgctgcaatcttgcccccaacaacagtgaattcggtgaccatgcaagcgtcgcaattttcagcccaggttctggactggtacgataaatacgggcgaaaaactctgccctggcaaattgacaagacgccctacaaagtatggctctcagaagtgatgttgcaacaaactcaggttgcgaccgttatcccctattttgaacgctttatggcgcgcttcccgacggtgaccgatctcgccaatgcgccgctcgacgaagttctccacttgtggaccgggcttggctattacgcccgcgcgcgcaatctgcataaagcggcacaacaagtggcgaccttacacggcggtaaattcccggaaacctttgaggaagttgcagcactgccgggcgtcgggcgttccaccgcaggcgcgattctctcgctttctctgggtaagcactttccgattctcgacggtaacgtcaaacgcgtgctggcgcgctgctatgctgtaagcggctggcctgggaaaaaagaggtcgagaataaattatggagtttgagcgagcaggtgacgcccgcggttggcgtggaacggtttaatcaggcgatgatggatttgggtgcgatgatttgtacgcgctcgaaaccgaaatgttcgctctgtccgctacaaaacggatgtattgccgccgccaacaatagctgggcgctttatccgggcaaaaaaccgaaacagacgctgccggagcgcaccggctactttttgctattacagcacgaagatgaagtattgctggcgcagcgtccgccgagcggattgtggggcggtttatactgtttcccgcagtttgccgacgaagaaagtttgcggcagtggctggcgcaacggcagattgctgccgataacctgacgcaactgaccgcgtttcggcataccttcagccatttccacttagatattgtgcctatgtggcttcccgtgtcgtcattcaccggctgcatggatgaaggcaatgcgctctggtataacttagcgcaaccgccgtcagttggcctagcggctcccgtggagcgtttgttacagcagttacgcactggcgcgccggtttagcgcgtgagtcgataaagaggatgatttatgagcagaacgattttttgtactttcctgcaacgtgaagcagaaggtcaggattttcagctgtaccccggcgagctgggaaaacgcatctataacgagatctccaaagaagcctgggcgcagtggcagcacaagcaaaccatgctgattaatgaaaagaaactcaacatgatgaatgccgagcaccgcaagctgcttgagcaggagatggtcaacttcctgttcgagggtaaagaggtgcatatcgagggctatacgccggaagataaaaaataaaaacagtgccggagcacgcctccggcaacttgcataaaaacaaacacaacacgcacccggaatgatgaaaaaatatctcgcgctggctttgattgcgccgttgctcatctcctgttcgacgaccaaaaaaggcgatacctataacgaagcctgggtcaaagataccaacggttttgatattctgatggggcaatttgcccacaatattgagaacatctggggcttcaaagaggtggtgatcgctggtcctaaggactacgtgaaatacaccgatcaatatcagacccgcagccacatcaacttcgatgacggtacgattactatcgaaaccatcgccgggacagaacctgccgcgcatttgcgccgggcaattatcaaaacgttattgatgggtgacgatccgagttcggtcgatctctattccgacgttgatgatattacgatttcgaaagaacctttcctttacggtcaggtggtggacaacaccgggcagccgattcgctgggaaggtcgcgcaagcaacttcgcggattatctgctgaaaaaccgtctgaagagcgcgcagcaacgggctgcgtatcatctacagcgtcaccattaacatggtgccgaaccaccttgataaacgtgcgcacaaatatctcggcatggtccgccaggcgtcacggaaatatggcgttgatgagtcgctgattctggcaattatgcagaccgaatcttcctttaacccgtatgcggtcagccgttccgatgcgctgggattaatgcaggtggtacaacatactgccgggaaagatgtgttccgctcgcaggggaaatccggcacgccgagccgcagtttcttgtttgatcctgccagcaatattgataccggcaccgcgtatctggcgatgctgaacaatgtttatctcggcggaattgataacccaacatcgcggcgttatgccgtcatcaccgcctataacggcggcgcaggcagcgtgctgcgagtcttttcgaatgataagattcaggctgccaatattattaacaccatgacgccgggcgatgtttatcagacgctgacgacccgccatccctctgcggaatctcgccgttatctttataaagtgaataccgcgcaaaaatcctaccgccgccgataattccattaaccgcccctgacgatgctcaggggcaaaaatgttatccacatcacaatttcgttttgcaaattgggaatgtttgcaattatttgccacaggtaacaaaaaaccagtccgcgaagttgatagaatcccatcatctcgcacggtcaaatgtgctttttcaaacactcatccgcatcacgatgtgaggaaattaacatgaatcttaagctgcagctgaaaatcctctcttttctgcagttctgtctgtggggaagttggctgacgaccctcggctcctatatgtttgttaccctgaagtttgacggtgcttctattggcgcagtttatagctcactgggtatcgcagcggtctttatgcctgcgctgctggggattgtggccgacaaatggttaagtgcgaaatgggtatatgccatttgccacaccattggcgctatcacgctgttcatggcggcacaggtcacgacaccggaagcgatgttccttgtgatattgattaactcgtttgcttatatgccaacgcttgggttaatcaacaccatctcttactatcgcctgcaaaatgccgggatggatatcgttactgacttcccgccaatccgtatctggggcaccatcggctttatcatggcaatgtgggtggtgagcctgtctggcttcgaattaagccacatgcagctgtatattggcgcagcactttccgccattctggttctgtttaccctgactctgccgcatattccggttgctaaacagcaagcgaatcagagctggacaaccctgctgggcctcgatgcattcgcgctgtttaaaaacaagcgtatggcaatcttctttatcttctcaatgctgctgggcgcggaactgcagattaccaacatgttcggtaataccttcctgcacagcttcgacaaagatccgatgtttgccagcagctttattgtgcagcatgcgtcaatcatcatgtcgatttcgcagatctctgaaaccctgttcattctgaccatcccgttcttcttaagccgctacggtattaagaacgtaatgatgatcagtattgtggcgtggatcctgcgttttgcgctgtttgcttacggcgacccgactccgttcggtactgtactgctggtactgtcgatgatcgtttacggttgcgcattcgacttcttcaacatctctggttcggtgtttgtcgaaaaagaagttagcccggcaattcgcgccagtgcacaagggatgttcctgatgatgactaacggcttcggctgtatcctcggcggcatcgtgagcggtaaagttgttgagatgtacacccaaaacggcattaccgactggcagaccgtatggttgattttcgctggttactccgtggttctggccttcgcgttcatggcgatgttcaaatataaacacgttcgtgtcccgacaggcacacagacggttagccactaattacgcaaagaaaaacgggtcgccagaaggtgacccgttttttttattcttacttcaacacataaccgtacaaccgtttcacgccatccgcatcggtttcgctataaacaccttgcagctccggcgaaaatcccggcaacaaattcaccccttcttccagtgcaaggaaataacgttgaaccgccccaccccagacttccccgggtaccacgcaaagcacgccaggtggataaggcaacgccccttctgccgcaattcgcccttcggcatcacgaatccgcaccaactccacgtcaccgcgaatataagcgctatgcgcatcctgggggttcatcaccactgacgggaaactctgctggcggaacatcgctttttgtaggtctttgacgtcgaaactgacatacagatcgtgcatctcctgacacaactggcgcagggtgtagtcgcgatagcgcaccggatacttgttataaacgctcggcaacacctcaaccagcggcgagtcatcctcaatatgctgttcaaattgcgccagcatcgccaccagttgtgccagcttctcgtggctttccgccggagttaataaaaacagaatggagttgagatcgcacttctccggcacaatgccgttctcacgcagatagtgcgccagaatcgtcgccggaacgccaaagtcgctatattcgccggtttcggcatcgatacctggtgtagtgagtaacagcttgcacggatcaacaaaatactgatccgcggcatatccttcaaagccgtgccacttcgcccccggctcaaaactgaaaaaacggcggtcgctggctaacactgatgtcggataatcctgccacaatttgccatcaacaacgggcgggataaacgggcggaacagcttacagcgcgcaagaatagccttgcgcgcttcaatccctatctcaacacactcagcccacagccgacgcccactctccccttcatgaattttggcgttaacatccagtgcagcaaacagcggatagaaagggctggtagaagcatggagcataaaggcgttattcaaccgcttatgcgggcaaaaacgcgcctgtccgcggatatggttatcttttttatggatctgcgacgtctgtgagaatcccgcctgctgtttgtgcaccgactgagtcacaaagatccccggatcgttttcgttaagttctaacagcagcggcgagctatccgccatcatcgggataaattgttcataaccgacccacgcggaatcaaacagaatgtaatcacacagatgcccaacggtatcgatcacctgacgggcgttatagacagtgccgtcataggttcccagctgaataatcgccaggcgatacgggcgcggcaggtcggctttttctggcgcaacgtcgcgaatttgctggcgcagatactcttcattaaaacagtgcgcatcaataccgccaatgaaaccaaacgggttgcgtgaagcttccagatagaccggcgtcgcccccgcctgaatcagcgcgccgtgatgattcgacttatggttgttacggtcgaagagcaccagatcgccacgcgttaacagcgcattcgtcaccactttattcgctgccgatgtgccgttcagcacaaaataggttttatcggcatgaaagactttggctgcgaatttctgcgcatctttcgccgatccttcatgaataagcagatcgcccaattttacgtcagcgttacacatatcggcgcgaaagacgttctcaccaaagaaatcgtaaaaatggcgtccggcaggatgctttttaaaaaacgcaccatgttgatgtccagggcaagcaaaggtgctgttgcccatctcaacgtactgcgtcagcgtgtcataaaacggtggcagcaaattctcttcatactgacaggctgcggattccagctccagccactgctgctcgttgccgttgattaccgccgtaacgcccgcaggtaattcaacagcatgttcggaatacaaaaacaccggtagatgaaaaccggtgcgcttaagcaacgcaagaatgccactgcgactatccgcagcggtaatgacgactgccgcgacgtccgtaaaatcagtatctcccaacgccaccacgcgacgatgagaagaaagtcgggataccagttcactactggcggcaatattcattgatttcataagcgcaaacccgtttcggggaagtaagaataccggacaaggtggaaaaccctgccccatgagatatgggtcaaactggtcaccagctccgaccgccagacatcagtaaaagcagaaacgctctgattttactgttgtcctgcagtgagcgtgcgttaacttcaccgcatgagcagtaacatagaaagggaaacgtttcgcgcgaaacggcgataagcgagagaatgtaaggagatggcgtgcatcgggcaaactccgtacagagaggagaaaattcgcgcaatcatggcacctttgctaaagcgtgcaagccaggactttgcgaacaaacaagccatcgacggcaccaaacggtcataataagaaaatcaaacaatacagctaacaggaactcttgtggtcatcggcccttttatcaacgctagtgcagtcttactgggtggcgttctcggcgcactgctcagccaacgcttaccggaacgtatccgcgtctccatgacatcaatttttggtctggcatcgctggggattggtattttactggtggtgaaatgtgccaaccttccagcgatggttttagctacgctacttggcgctctaattggcgaaatttgtttgctggagaaaggtgtcaatacagcagtcgccaaagcacaaaatctgtttcgtcactcacgtaagaagccagcgcatgaatcttttattcagaattatgtcgcgattattgtcctgttttgcgccagcggcaccgggatcttcggggcgatgaacgaagggatgaccggcgatccgagtattttaatcgccaagtcatttcttgatttctttacggcgatgatcttcgcctgctcgctgggtattgcggtatcggtgattagtatcccattactgatcatccagttaacgctggcgtgggctgccgcgctgattttaccgctgaccacaccgtcgatgatggcagacttcagcgccgtaggcggtttattgctgctggcaaccggattacgcatctgtggcattaaaatgttcccggtggtcaacatgcttccagcactccttctggcaatgccgctttccgccgcctggaccgcctggtttgcctgacaatgcgtgcaatatcggcaaagtgatgatagattgtgcagtctgcagtaaattgaagaaatttgattgacgagacgaggcgaatcaggtttaatgcgccccgttgcccggatagctcagtcggtagagcaggggattgaaaatccccgtgtccttggttcgattccgagtccgggcaccactaattcttaagaacccgcccacaaggcgggtttttgcttttggatctgacaataaccttcacgaaaaaaattagcttataaagtctgggggaattactctcgccacgttaacgagagtaattttattgatattaatctcctgatactttacccccgtccaaactccagccgctgcacattcaccatcccaggcttctcagcagcactgacatcaatttgtgtcacccgcagcgcatatttttcatccagtgcgtttaaccatttcagcaggtcattaaacaccacaggttctatccagacctgaatattctccccacgatcggctatccgcctgatgaccaccgagtgcgcggaagcactgtcactgatgacccgcgatacctgcgcaggcgttgttgtggcagattttcgcgctgcaataatatccggcgcggcgttcttcagtcgggtgttcatcgccaccagctgctgcaatattgtctcctgttgctcaatccgttcgctcaacggctgccagatgaggacgtaatatccgacgctaaacaggaacaccaccgctgccagtaacatgcccttttcacgcggagaacgccccgccaggtgttgtgccagccagtgttcgccacggcttaactggcgttcacgccattgctgaaaatagtgaataaatttatcgcgtaacatgttatttcctccgcaacgttacgccgccggaaaccgcatcaccctctttctgtaacgcgtcctgttgcacaacataatcggttgccagtacactacgcagtttgtcgaaactggcaaagttcgcggcccgtagctggaggtgaagtatctggcgtttttgatcaaaggtaaaaccacgcatttcgatgtcggaaagtgacgctgatttcagggtgctggctatcgctgacaactcggcgagcagccgggtatcgtcggcctgtgggcgatattttttcagcgccatcgtcacctgagagcgtaaattcacaatccgcttctgctccgggaacaacgttaagaactgttcctccgcctgggtgcggctttgcgccacctgttcgctgacgctccataacgtcacgccccgctccactgccagcgcaaccagaatcagcaatatcggcagaatcatcacccgccagcgcgcccactgttttcggtagctgacgcgaggctgccacggccctgtcagcaggttcccttccggttcgccataagtggtaatggcgggcagagctgtaacggtcaggcgttcagcgtctgcgccagcccatgctgatagcttttccggtgcaatgccgactacggttagcgaaagcggtaaatcctgctcattgagctgggcgcggaacatgaccggagccagcgccagcccggcgctccatccccggcattcatcgatgcggcagataacccgttgcgcatcgcaagccataaacccacaaggaatggacatccagtccggcgcgacggtagcgcgggtgatgccgttttcctgcaaccactgcgcaatgttgcgcatatgctgttggtgaatcactgctacggttgccagttgctggtcgatattcaacggggcgaaatgcagttcatcgatatcctggttcagctcttcttccagtaaggcgggcagaatagtcggtagcgcagcgcgatggaaatgtcgtggcgcgcacccttgcgtaaaaccgtaagttgaatggaatccattgaaggtaactgccgcatcagagcaatcattgctcgtggatcagtgaaatcctgctgatttagcgcaatggcgatatcgccttccttgaaaccgctggcatcgaacagagaacgatctgcccccggcttcgctgcataaccgacaatcccctccttacgcacaggcgtaagctggatatagttaaaaattttctgcggatctttcgccagtgcctgacgcacggcagccgggatctcaactggcacactgacagcaggctcagcaacagcttgctttgcttcgtcactgacggcttttttgttggtcacagcaacagtggaacgttcctcttctgccagactcagacgctctatttttccctgataacgcagcatcacatggtcgcggttgatttcctcaatcaccgcgttgtgagagccaagcgtttcaccctgcaaatagacctgctgtttaccgccttcttcaataaccgcgccgggtctggcaccaaaggcgatcccacgcagcaccacattaagacgcgtttctgccacaggcacaggttcgggttgttttacctgcgcggcgacaggctgatatttgccaaaccagttttgctggctgattaattgcacgtcatttttatcgaacgtttttgcatccacacggctcggtttattcaccggttgagaaaccgccgtatattccgcagaaaaggagatatagcgccagagtgaatgcgccatttttgcagaaataataagcagcatcagccagaacatcccgcgtgcaatttttcgcagatgctctttgtctgtattaagagattgtctctggttaagagtgtgacgaatttttgtcagccattgaatgagataaattcgtgcgtcacgaaaaacaacccgcgccaatttatatctacccgacgttatgctttgactattccacaggtggtacgatccagtttccgctgatactggttacctgtacgtgtatcattaatcgttatgctgtaattaattccctcagtgatcattaatttcaccgtcgggtcagcgcacatttgtcgttgatagctggttaaaaaggcgtcaggcgtctgcgtggtttgtgtacccgcttcgctgataatggtcatttttaccgttgtgccgctactttgcgccagcactaaggtatatcccgcagatttaatcggcaggttttggctgatattttgcgcctgttttttcgccagtaaactggcattttcattatggctggcacagccacttaataatcctgtaacgctcaacaatagcgatattaataccctccctggcatttgttttatcgacatggtaaataatctctaaggttattaataagagttaaaatgtcactttgataatgacgtggttatcattaaaacaatgcctgtagataaagtgttgctataccgcccagacttaaacacggtccaaaaggcagtgtggttgatcctctttttgtaataacggcatatatcaggccgcagcatgaggcgattaaagcaacattgggcagcgacaatgcccccacccagccacctaacgcggcgaaaagtaatacatcgcccatgcctaatgcttctttacgcagaactattccggctatccaacgcagagagtaaaaagtgataaatcccaccaggacgccggtgactgcatcttgtagcgtgagcggactctgctgcgcccatgccgcaatcagtcctgtccacaatacgccctgagtaaaaacatcgggcagccattggtgatcgaggtcgatgacactcgcggcaatcagccaggcggataatatcatcaccgccagcccccatccactttctggccagaccagactcgccagcaaaaaagcaagtgctgtcaataactccaccagcggataacgcttgctgattttcgcctgacagtcgcggcagcgccctttgagcatcagccaggagaacagcggaatattgtcacgtatccggatggtctgctgacaatgtgggcagtgcgaacgcggtagcgcaaggcttatttttgactgcgcactcgacatttcaccgtgaaactccgccatttgttggcgcagcatgattgggtaacgccaaatcaccacattcaaaaaactgccgatgatcaatcctccgacggttgccaggacgggcatcgccgtggggtattgctgaaaaacatcaaaaagcatggttaaaggttgtttgttgtaacttgctggatgcggcgtaaaacgccttatccgtcctacgggtgtctgccagcgcaaataatcgcggctttccccgtctgtaggcccgataagcaggcgcatcgggcaaatgtgttaacccggtgcgccttatttcatgccggatgcggcgcgagcgccttatccggcctacgggcttactcggcagacatcttatgctcggtaacctgattaatggtttccggtccctgttccggtttcggcagatcgagtgacgcgagcgtgttgtaagccgactggctcacaccgccctcgaagctcatctcgctcgcccccggcagctggtaagcattcgcgcccggattccatttcttaaagaactccgaaagatccgtctgggcgacccaggaggcacacagcatcagcgtgtccgctgcgttaccgttggattcagcacagtaattcttgccgccaaacttgtcattgctgacctcatcgccgcgtgctttacgatgcatcaactggaacaggttccagcctttcatcccttcacgctcgctgtaaaactctggcagaggagtgccatctggataccatttcttgatatcaaagtttttctctgcccattccttcagctgtgcgtacatcagcagacggtcacccgcaccgccgcgtgcccatgcctggttgttgctctcctccagatattccggtgcgacggtaatatcgtcagcgacacggttcatcttgccgagataacgatcctgcatgtacagcgccagcacgttgttagcgacttcagttgcacccggtacagtcaacggcgtttctgcggcgttatgaccgacttcatgccagatcagccagtcgttcagcggcgtcgtcggcagcgtggtgctgttcggcgagaagctgctgttcattaccggataacccgaatgcgcatcaccgatggagatctgcacatcgttggtgaaacgatgtttgtggcccggcaagtttttataggtaaacatccggtgcttaccgtcttcgctatcacggccgtagaagtcattcatcgagctggcaaaggtatccagatcgttagcgaattgctccagtccgccagtgtaattgctggcattcaggttcttcttcggtgtggtatagacgaaagcgtctgattccagctcacccagcggagccggtgagttcagatcgtttttccatgcgccgtctttatagaacggtgcttttaccacgccagtaaaggtgaagctggcagattcattggtagagctattgcccttgatataaatcaggccaccgtaaggcaccttgaacttcaccgtaccgctagcgtccagagagtacgttttagtcactcttggcggacggttcagcgcaacttcatgcttctcacgtccggtcaggtcgtcagccagcgccacggtgacggtcacaggaacgttcgcattggacttaatggtgacctctttctgagccggtgcccacaggccagttgactgcatgttacctgcaaaccatttggtcggattcgagtacaggctgatggtttcagtaacgttctgtccctcttccgatactgctcccggatacttctcgacatcaactttgatgttcagatcccaccaggaacggcccagcatcaggcgtgtcagcggtttttccatatagttgagcgggtagctcgggttcatcatgcccgctttgctgctaccgtcaccgtagatcatgttgttatcgaccagcgattttttcagatctgcagaacacttggtgccgcctgcataggcatcattggcgtagcagttcaggaactcggtgaacgttttaaagcccagctcgtcatttttgccttcttcataacgatagctcgtatcgttccacagccagaccgacatgttctggtacagacgttccagatcgacgctgctcagacgctcacctttgcgaccattggtccggaagtagagctcatgctgatacagacgctgaatgttggtgcctaaatccgcagcctgcaccatcgcttttgcagtgtcggcgttaaggcttagttgcgtatactgtggaacatacatgccaccagtaaccggaacccccgtgccaggacgatattccaggcagttgacctcatagtgatatgccggattagtacactctttcagccccgggaacgcggcgaaaattttctccttcgcagccttcagagaatcctctgttttatgatcggcctcatcaataaaggcataacgcgtttcctgtttgccatctacatcttccagccagctggcaacttccagcttcggtttgtcatcaggtttgttttctacctgatatttccacttaacttcccctgtcttactatcgatggtgtacggcagcgcaccatctacggcaggataacgttcatagacccaaatgcccgttgcgcgctgctgacgaacgcggttcggatacccttgcggatcgttatttactaccgacttgttcagtgccatcgacagacctgcggcatccaacagacgcacaaaaccagacgcgctctcttccttaagattgctcatcacgttttccatgatcagcaccgatccacctttgttcagataggcgatcagatcggtcacatcctgctgagtcagcttcggtttgctggtatctgcacgcagcgggattgcataaggatcgttacccacctgagtcacatattcaaagccgttaaggatcagcagcggcatttctgcggatcgagatcgccatagctacttaaatgctcaacagagatgcccgcaaaatccggatggaagtcgaacgcagcgctgtttcctgtaacctgaccatgacgtttaaaatagacagtatccaggttggtgcctacggtcatgctggctttcgcgtccggcttccatttatcgtcggacagatagcgcagcacgttctccatgaagttcttcatgtcatccgggtcgctgttgagcgtacactgcccatctttattaacgcccccgttccagctgtaaccgttcgggcaacgcaaaatgctgttgtagtgtgggttaccgataaccatcagtttgccctcaccgacttgccccagcgaaataaacggcaggttaaaggtggcggtatcgcgcgtaacgttttccggctcaacaagagaaggcgcttccgtaatgtacgccagctcgtttttatcccaggcgcgtttttcgccgaaggccagccagtagtttttatcattacgcgccatcagaatcgggaaggccgcgttggagatattcaccaccgcctgaccgcgcgcattacccgtgctgccatagaagttggtggagtcatggaatacatggaacttgctgacagatttgtagttcgtatccacgccccacagcttgttgataacgccctgaatctggccgtcattaacattgcgcgtcgtcagcgagaaccagcgagcctcgttacaaccatcggttttcgcacaaatcgcggtatcgatctctttggcctgacccgtattaaactgctcaataaattcgttaggcagattaacgacttgctcaccttcccccagcgtcgcaccgttggataacgagagattgataatctcgttgatcacgttgggatattcggcaaagaccttgcgtacatcgtccggaacaacacgggtattattttgcccggtcgtcgaatagcgatgaataagctgatcaatattcgccccgcgaacttcatcacccagttcagtcagcgcaatggtcgacttattgccgcgcactgaacccagttcaaaggtatcgataccaaaggagatggtttcgccccagctaaaggaaaattcaccattttcccctgtcacgccacggcctgaattggtgtagtagttgacgccagcaacaccatatccctggctatcgaccagtcgaccttcagagagaatgatttcagtgggttgatactgataaaactgttccgcgttagccgacacgaaggaagcgttcagatccggttttgttcccggcgtggtgacgggcacgaccggtgaagtatgagtggatggcgctttatcggtcgcagcattgttttccacctcttcattgaccagctttttgaactcttccggtgccagatcgatttgcttatacagcgagtcgaagcgtttactctcgatcaccgaggagaacgtcagacaaacctgttctgtattcgccggacagctgttactggacgttaccagcgaaaccgcattgcttttcttgtcatcggagcccgccagttcttgcgcgtcctcaaggctaaacgacactttttcaaccgcacgcaagctacgcgcagcttctgactgagtgttgaaggtggcaattgtcgtgttacccgccacgcaagtaacgtcctcgccaggtttaaatgtaaagccatcgctggattcaccattacaggtagcaccagttacccgctggcttccgcccagggtcagataacccgttttcgtaggaacaggttctggctccggttctggtgttggttcaggatcaggtatcggttctggcgtaggctctgggtccggcgttggctcaggcgtcggctccgggtttggtgttggatcaggtttcacttccggcaaagaccctgttccagaatctacaggcggcgtatcggaggaagatccggaaccaccgccatcacaaccggctaacagggttgcgctcaaaatagccgctaaaagcgatttcttatatttaaatttcttattcattaataacgcaagtgacaaaacaatgttaaaaaattcgtaactgggagaaatagttttatgctttatcttctctaataacttcctccattcttaagaaaacgacatcattgatagaaaacaggtgaaatttataagaataacccctatacgatgtctatctggctatttttacgaaatttcaacaaacaaaaaattaacaacatttcacaacgtaactatataaatttgttggtagttttaacgattaagattgcaaaagcaacagatagaacggtgtttgctcatcaagcgaacataattaatacagacttgttttgcgtgataaaaaaatagatgttctcacgctcttaattatttagcaggttatctgaacgcaaaacattattgctgcatggataataaagcgagaaatgattttcaattaataagacagaataatgtaaatgaagccggatgatattaacgatcatccggctttattgatttacgagactaacatcccggtaaacacatacgcctgcagcagggtgataatgccgataacgctggcaaaaatcagactgtgcttcacggtgtagcggaacagttcagattctcggcccaccatgcccgtcgcggcgcaggccacggcgatagattgcggggagatcatcttgccagttacgccgccgctggtgtttgctgccaccagcagggtgtcagagacgttgatttgctgcgccgtggtcgattgcagtgaaccaaacagggcgttagaggaggtgtccgagccggtaaggaatacgcccagccagccgagaaacggtgagaagaacgggaacatcacgcctgtacctgccagtaccagcgccagcgtggtggacatgccagaatagttggtgacgaaggcgaacgccagcaccatgccaatcgacagtatcggccacttcaagctaattagcgtttcggcaaagacgccaatacctttcttgatccccacaccgaggatgaagatagagataatcgccgcaataaaaatagcggtgccgccagccgagagggggtcgaatttaaacaccgcatccattggcgttggttgggcgacaatgggtgccgctttcaacacttgttgatgcaaatgagggatctggaaattaatcaccagtgaataaaacgcgccgcccggagcaaataacgctttaaacggcttcatggtccagatggtgaccagcaccgttaagattaaaaacggtgaccacgctcgaatgatttgccccagactatattctgaaggcacgggaccgccagaagatggcttatttaccaccatcgcacctgcggattgtcccatgctgattgccgtttcggtatttttcggccgccagactttaaggaataaagcgagtgagacgatactcaccagcgccgaagtaatatccggcagttccggaccaatatagttagaggtaaagaactgagtgacagcgaagcttcccccagcaaccagcgccgctggccacgtctctttcacccctttccagccgtccatcattgctaccagccagaacggcacaagaaccgacaggaacggtaactgacgtcccgccattgcgccaatgtggaacggatcgattcccgttacctgaccggcgaccagaatcggcacgcccaacgcaccaaacgccaccggcgcagtattggcaatcagacacagccccgccgcgtataacggtttgaagcccaggcccaccagcagcgcaccggtaatcgccaccggcgcaccaaagccagccgctccttccagcaacgcaccaaaggagaaaccaatcagtaacacctgcaaacgctgatcgtcggtgatggagataaccgagctgcggataatatcgaactgcccgctggcaacggttaatttatacaggaacaccgccgcgacaataatccacgctattggccataatccataaataaagccatagcccgcagcagcaaatgccatatcaatcggcattttaaaggcgaatattgcaatcaggatagataatataagggttattgctccagcgacatgtcctttcagacgtaataccgcgagtgcaacgaagaagaatattatcgggatcagggcgaccagagcggatagccccagtcctcccatcggcatatacatttgggtccaggtaaccatattgttcagtctcttattatctttatatgcttgatatacttaaggttgtaataagcaaaagaggactgaactgtaaaatataggcgttatactttacagcaacagtacgccgctaacgcaattgctacctctggcataacaagtatatcgggtaagggtttctgttccgcacacgcagacgcagagtatcgttaagatgtccatattgttgttttaggcccgctagtaatgcgctacgggtatttaatattgttaaaccctgataatcgctccggttatttccgggataaatgtactaccgcagttactatcatagccccgacaataaaacttgccggggcttttttgacgctattaatgactttctttttcgcgtaaacgccaggcgtgtaataacggttcggtatagccgtttggctgtttcacgccgaggaagattaaatcgctggcagctttaaaagcacacgagttagcgaaattccccgccatcggacgataagccggatcgccagcgttttgctgatcaaccactttcgccatattctccagcgacgcctgcacctgttctttggtcagaataccgtgacgtaaccagttggcgatatgctggctggagatacgcagcgttgcgcggtcttccatcaacgccacattgtgaatatccggcacttttgaacaaccaatcccctgctccacccagcgcaccacgtaccccagaatcccctgcacgttgttatccagctcttgttggatctcttgcgccgaccagttagcgttttcagcaaccggaatagtcagcagatcgtccagcagcggttcaaattcagcattgaactcggtctgggcaatgttggcttgtacgctctgtacgttggtttggtggtagtgcagcgcatggagcgtagcagcggttggtgacggaacccaggctgtgtttgccccggcacgcagttggtcgcccttctggctgtacatgtctgccatcaggtccggcattgcccacatgcctttaccaatttgcgctttaccgcgcagcccacagaacagaccggaaagcacgttattacgctcgtaggctttgatccaaggcgtcgatttcatctgatttttacgcagcatcgggccagcttccatcaccgaatgcatttcatcgccggtacggtcgaggaaaccggtattgatgaacgccacgcggttgcgcgcctgagcgatacagctacgcaagttcagcgaggtccgacgttcttcatccataatgcccattttcagggtattcggtgccataccgagcattgtctcaatgcgggtaaacagtttgttggcgaacgccacttcctgcggaccgtgcattttcggtttcacaatatagacgctgccagtgcgcgagtttttctgcacttttaaatcatagagggcaatcgcgccagtcatgacgccatcaagaatgccttccgggatttcattgccttcgctgtcccaaatcacaggaatggtcatcaaatgacccacgttgcggataaacagcagcgagcgtccgtgcagagaaatttcagagccatcggcggcggtgtaatgacgatcgtcattcagtttacgcacgatttgccgaccgtttttctccattttctcttgcagagtcccctgcatcaggcccagcaggttgcggtacagcaggattttatcttccgcatcaaccgccgcgaccgaatcttcgcagtcgagaatggtactgatagcagcttcgacgataacatcgttgatgtgcgccggatcgtctttgccaatccgcccattggcatcgatttgcagctcaatatgcaggccgttatttttcagcaaaatgcaggtcggcgcagcggcatcgccacggtaaccgacaaactgtgctggagtacgtaacgtggtttctttaccatttttcaactggatgcgtaattgtttatcaaccaccttaaacgccaccacatcctgatagctgccgttttccagcggtagagattcatcgaggaaacgccgaacccaggcgataacctgctcaccgcgttgcggatcgtagccgctgaccatcgccccttcctgcgggatgatgtcgctgccgtataacgcatcgtacagtgagccccagcgagcgttcgccgcgttcagcgcgtagcgggcgttcattgccggaaccaccagctgcggccccgcctggctggtgatttcgctgtcaatgcccgtggtttccaccgtcacgcgctccggttgcggcaccaggtagcccagttcacgcaggaaagatttataggccgctttatcttttaccggccccggattgctgcgatgccactcatcaagcgctgcctgaatgcgatcgcgttctgccagcaactgacgattttctggtgccagatcatgaacgatctcatcaaaattgcgccagaacgccgcagcgtccagccctgttcccggtaaaacttcttcatccacaaaacgtttaaaattggcgtcaatgcgtaaacggctctgggttatggtttgactcattgtttatctcctcgttttcgcttatttcgccaacaccgctgctgccgctttcgcgacctgcgcatcctgtgctccggttaaaccagaaacgcccacggcaccaataatttgcccatccacaacaaccggtacgccgccttccagcgacgttaataacggcgcagtcacgaacgcggtacgtccgttgttcaccatctcttcatagcccttagtttcacgacgccccagcgcggcggtacgcgctttctcctgggagatataagccgcaatcggcgcgcaatcgtccatgcgacttaacgccagcagatgaccgccgtcatcggcaacagcaatggaaacagaccagttatttttctgcgcctcttcctgacctgcggcaataattgcactcgccatttgctggctaagaatgactttagttttcattttgttattccttttcaagggcttgttctacaatttcaatccagtgacgcacagaggtacgaccggcgctcgccagatgcgtctggcaaccaatgttggcggtgacgatcatttccggtttgccgctttccagcgcattcattttgttatcccgcagctggcgtgccagatcgggatgcgttaacgcatatgttcccgctgaaccgcagcacagatggctgtcgggaacgtccgttaaggtaaatccaagacgaagcaacactttttccacttcgccgttcagcttttgcgcatgttgtagggtacacggacagtggaaggccagctttttatcgccgcgaattgccagtttttccagcggttcctcgcgcagaagttcgactaaatcgaccgccagttcactgacctgacgtgctttatcggcatataacgcatcgtttttcagcatctgcccatactctttgacaaacgcgccgcagccgctggcggtttgcaaaattgcctcggcacctgcttcaatcgcgggccaccaggcatcaatattattgcgcgcccgtgccagccctttctcctgcgcattaagatgatagtccaccgcgccacaacagcctgcttcgttagctggcatgacgctgatccccagacgatccagcactcgcgcagttgccgcgttggtgttgggcgaaagcgtaggctgggcgcagccttccaacattaaaacccgacgcttatggcgcagcggcggacgcggtttagctttcaccgtttcagcaggcagttttgctctgacctgttccggtaaaaacggtcgcagcaccagccctacctgcgtcagcgcacggaagaccgccggacgcggcactacctggcgcaatccttcgcgcagtattcgctccggcagtgggcgtttcactttctgctcgacaatatcacgcccgatatccagcaaattgtgatagcgcacaccagaaggacaggtggtttcacaattacggcaagtgaggcagcgatcgagatgctcctgtgttttaagcgtgacttcgttgccttccagcacctgtttaatcagatagatgcgcccgcgcggcccgtccagttcatcgcccagaagctgataggttgggcaggttgcggtacaaaatccgcagtgaacacaggcgcgcaggatgctgtcggcttccagcgcgcgcgcgttctgccgcatctcttcagttaattgggtttgcatagcctgctcctcaaagttccgcgtacatgcgaccggggttaaacacgccgcaagggtcgagctgctgtttaagctgctggtgatagcggaataaaggagccgatagcgggcaaagccaccatctccggcactaaagcgggtcgcatgaccgccagcgttgcgggcgatgcgatggatttgattgtcctcggctgtcgatttcagccagcgtaacgccccgccccagtcgatcagttgctcgccgggtaaatccatcatcggcgcatcactgggtaatgaaatgcgccataaggtacctggtaacgagaagaacggcagttgttgttcacgcaattgctgccagaactgaccggcaacctcttcgccacccagcagttcacgcgctgcttttaccgatccttcgccgccctcaaggcggatccacaacgcattgtcgaagtaacataagccactaatgggtaatggctggagttgccactcggcgatttcactcatggcttcttgcaggctgatttcccgacgcaggctcagggaggcgcgcggtcgcggtaacactttcattgagatttcagtgagcacgccaagacaaccgtagcttccgaccattaaccgtgagagatcgtatccggcaacgtttttcatcacttcgccaccaaaacgcagatgttttccagcgccggtaatgatgcgcgtgccgaggacaaaatcgcggaccgaaccgctccacgggcgacgcggccccgccagcccgcaggcgaccatcccgccccaggtggcttcttcaccataatgcggcggctcacaggggagcatttgccccgcgctttccagcgccgcttcaattgtcaccagcggcgttccgacacgcgcggttatcaccagctcggtcgggtcgtaattaacaatgccgcgatgacaacgaacatccagcgtttgcccggtgacagggcgacctaaaaaggctttgctattgctgccctgaatcaccagcggcgttttatcgctaatcgcctgattcacctgctccagcagcgcctggctgtaatcacactcgcgtagcatcagaaacgctccagttcagggaaaggtaaatgaccgtgatgcacatgcatggcaccaaattcagcacagcggtgtagcgtgggaatgtttttcccagggttcagcaaaccatcggggtcaaacgccgccttgaccgcatggaaggtcgtgatttcatcgctgttgaactgggcgcacatttgattgattttttctcgcccgatgccatgttcgccactgatgctgccgccaacttcaacgcagagttcgaggatcttcccgcccagctcttccgcgcgggcaaattcaccgggttcgttggcatcgaaaaggattaacgggtgcatgttgccatctccggcatgaaagacgttggcaacacgtaaatcatattgctgcgataaacgggcaatgccttccagtacgccaggcagggcgcgacgcgggatggtgccatccatgcagtagtaatccggggagatacgtcctaccgccgggaacgcatttttgcgaccggcccagaaacgtacgcgctctgcttcgtcctgtgccagacggacgtcagtcgcgcccgctttcaacaagatgtcgttaacccgctcgcagtcttcctgtacgtcagactccacgccgtccagctcgcataacaaaatcgcttcggcgtcgacgggataaccggcatgaataaaatcttccgccgcgcggatcgacaggttatccatcatctccagcccgccggggataatgccattggcgatgatgtcaccaaccgcaagtccggctttttctaccgagtcaaagctggctaacagaacccgcgccacgggcggcttcggcagcagttttaccgtcacttcggtggtcacgccgagcataccttccgatccggtgaacagcgccagcaggtcaaaaccaggtgaatccagcgcgtccgatccaagcgtcagtgcctcgccgtccagcgtttgcacttcaattttcagcaggttatgtacggtcagaccatatttcaggcagtggacgccgccggcattttcagccacattgccgccaatggaacaggcgatttgtgaggaagggtccggtgcgtagtagagattatgcggtgcaacggcctgggagatcgccaggttacgcacgcctggctgcacgcgcgcgcggcgaccaacggggttaatgtcgaggatctctttaaagcgcgccatcaccaacaacacacctttttccagcggcagcgcgccaccagaaagcccggtgcctgcaccacgggtcaccaccggtacacgcaggcgatggcagacagccagaatcgctgtcacctgttccatttgcttaggcagaacaaccagtaatggacgcgtgcgatacgcgctcaacccgtcacactcgtaaggaatgatctcctcatcggtatgcaggatctcaagtccagggacatgctcacgcagtgccatcagtaccgatgtgcggtcgacatcgggtaaagcgccatcaagacgctcttcgtacaagatgctcatgagtaggcttcgctttgttgtgttgtgtggcagctgatttttgcgcgctgcttctgtgaacagttattaagcgggcttttcgttttcgtctatctctttagctaccggtcagaccattttttttccagctctgtgaccttgtcttggttaactcaatgttaaattgatgtaacataatcacttacgtgatgtgcgtgttttgcgagttaagaacagaaaaattggtcctacctgtgcacgaggtccgggaatgaaagatgaacgtcgccctatttgcgaagtggttgcagagagtatcgaacggttaattatcgacggcgtactgaaggtcggtcagccgcttccctcggaacgtcgactgtgtgaaaagctcggcttctcacgctccgcactgcgtgaagggctgaccgtgctgcgcgggcgcgggattattgaaacggcgcagggtcgcgattctcgtgtcgcacggcttaatcgggtgcaggacaccagcccgctgatccatctgttcagtacgcagccgcgaacgctgtacgatctgctcgacgttcgcgcattactggagggcgaatcggcaaggctggcggcaacgctgggaacgcaggctgattttgttgtgataacccgctgttatgaaaaaatgctcgccgccagtgagaacaacaaagagatttcgctgatcgaacatgcgcagttggatcacgctttccatctcgccatttgtcaggcttctcacaatcaggtgctggtgtttacgctgcaatcattgaccgatctgatgtttaattcagtgtttgccagcgtaaataatctctaccatcgaccacagcaaaaaaagcagatcgatcgccagcatgcgcggatctacaacgcggtgttgcagcggctgccgcacgtcgcccagcgcgcagcacgcgatcatgtgcggaccgtgaaaaagaatctccacgatatcgagctggaaggccaccatttgattcgctcggcggtgccgctggagatgaacctgagttagctggtattaaatctgcttttcatacaatcggtaacgcttgtacggctccgccccaatgcgttccagcatgttattcatgcctgtattggtttcgaggatccatgacatctccagcgcatcgatcttccggcgggcaaacggatcgcgtaaggcttcaatcaataacagcgcaatcaccgggccgatgcggctgaactgatactcgtcgcgcacgcccatcagcggtactcgcgcagttcgcacaccgctgactttcaaacgccacagcaattttgcccagccgaagggaaagagcgatccgttcagatcggcaatcgcctcgttgatgttcggcaagccgacaataaacgcgcagggtgcagaatcaatctcagcgatatagatcatatcgtccggcaccagatatttaagttgatcgcccatggtcgcgaattcatgttcggtaaacggcacaaatccccagttgtgctgccagccagagttgaaaatctcacgcaggatctgcatctcttcggcaaaccgctgacgattgatgcagcgaatggtcacctttttgcgcacctgatccatcagtttttttagcgccggagagaaagtgagatcggttcgctgcatccaccacgccagtaaatcaatgcctttgtgataacccagttgttcaatatgcgcggcataccacggtttgccgtgtggcatcatcgcacagggtggtgtgtcaaaaccttcaatcagtaatccgctttcctgattgatattcaggctgaaaggaccgctgatcttacttgcaccttgtgacttcaaccacgcttccgctgcgccaaacaacgcggcaaaaacctgcggatcatcaatggcgtcaatcatgccgaaatgaccggtatctttgccgtaacgctcgcggtgcaaggtatctatttgcgcggtaatacgcccaactatctgccccgctttttttgccacccacgcctgccagatgatatggtccgtccccggatttttcgcagacaaatgctcgttgcgttcaatgaataaagggggtatccagtttggatcgtcgggataaagtgatgacggaaaagcgataaatgccttaaggtcatttttattaaggaaggtgcgaacaagtccctgatatgagatcatgtttgtcatctggagccatagaacagggttcatcatgagtcatcaacttaccttcgccgacagtgaattcagcagtaagcgccgtcagaccagaaaagagattttcttgtcccgcatggagcagattctgccatggcaaaacatggtggaagtcatcgagccgttttaccccaaggctggtaatggccggcgaccttatccgctggaaaccatgctacgcattcactgcatgcagcattggtacaacctgagcgatggcgcgatggaagatgctctgtacgaaatcgcctccatgcgtctgtttgcccggttatccctggatagcgccttgccggaccgcaccaccatcatgaatttccgccacctgctggagcagcatcaactggcccgccaattgttcaagaccatcaatcgctggctggccgaagcaggcgtcatgatgactcaaggcaccttggtcgatgccaccatcattgaggcacccagctcgaccaagaacaaagagcagcaacgcgatccggagatgcatcagaccaagaaaggcaatcagtggcactttggcatgaaggcccacattggtgtcgatgccaagagtggcctgacccacagcctggtcaccaccgcggccaacgagcatgacctcaatcagctgggtaatctgctgcatggagaggagcaatttgtctcagccgatgccggctaccaaggggcgccacagcgcgaggagctggccgaggtggatgtggactggctgatcgccgagcgccccggcaaggtaagaaccttgaaacagcatccacgcaagaacaaaacggccatcaacatcgaatacatgaaagccagcatccgggccagggtggagcacccatttcgcatcatcaagcgacagttcggcttcgtgaaagccagatacaaggggttgctgaaaaacgataaccaactggcgatgttattcacgctggccaacctgtttcgggcggaccaaatgatacgtcagtgggagagatctcactaaaaactggggataacgccttaaatggcgaagaaacggtctaaataggctgattcaaggcatttacgggagaaaaaatcggctcaaacatgaagaaatgaaatgactgagtcagccgagaagaatttccccgcttattcgcaccttccctaaatcaggtcatacgcttcgagatacttaacgccaaacaccagcgaaatgagcggcttgccgacgatcaacaccgcgagcgccaccagaataccgattccgcccgccagtaaaccggacttcacacctaacaaccacggtctggtggtgcgcggatctaaacgcatcacctctgggtaaaaacttttacccagcaaacccgctggcgttccggcggcgtcgaagaatgtcatggcgattttaaataacccggcggcagcgggtcctaacacgatccccaccaacactgtgctgcacgagttacgcgccgaccagatggagtgggcaatgttggttgaccagacaaaactccacgcgcctttaatgtatcgggcagactcaaacagattcaatttgaaggcgttatggatatttcggcggcgtaattcgcgcgcggcaaaccaccagtacatggtgccgccaaccagattcgacacgtaccaggcaataacaaaacccgcaaaaccaaagtcaaaataccaggctacgacgctccccgctgcgcgcagaaaaggtttcgtcgcctgctgtacagcaattaaatcgaagcgatctaccgcacgcagaatgccggtcggcgtggaggaagccattgaaggaatgagcgtgcaatagagcgctgccagccaaaaactttggtcatccagacctaatgaatgggaaaggaatggcagtaaggcaatgccaccgacaatcgccaccgcgccgctgacgatatccagcgagaaggaaaatgagacgacattgcggaattgctgcggattattgttggttaatgctggtgttccgtactgaaccaccagttgccatgtctgaaacttaataaaatcgctgatcgacttggcgtacgattgcacaatcaccagtacgccaaacatggcgggcgtcatccctttaccggcacacgagagcgccaacagacccagcaaggcgctcacaacattactggagcctaaccaggcgctattgcgaataatggtgcgaaacgcgccatctgcaaaccaatgtttgatgttaaaacccgccaattcagcctgaccttatcgttgatagtaaaaagtatcccgccagccttaagttaaacttcggcggtcagaaacgatggcaaccagagaaaccgccttctgtgcctgttccagcacttcgctgtagggcgctctggaatcaatctcaagaatttttgtgccgttatagccaatcttcgacatgacaccgattttgtcctgcagctcggcatagtcatggtcaggcttgcgggagatggcagtctcaatatcaatgcccaggcgaataattaattccgggcgatattgcgccatttgttggtataaacgccgttcgcgctgcgccagaaacatgctgattttcccggtcgcacgttcgacgccaatccccggtccatcataataaaagcccgaaatttcagcctgcgggaagcgatcgctgaccaccagaacgccactttgcgccagtcgctgaaccttgcgtagattcgccattcttcgcagcgagaagcagtacataatcaccgccgcccatagcgccggagatttggttttcatgctttgggttttcgaggatttggccgccagtcgccgttccagccagacgccaaccaacggcaatcgtttgattttgtcgccgtcttcgccggagagcagccccagatagcgccgctcggtttgccagtgttgttgcagcgatttcaccaggtcggtggtcagtgtggatttaccggtgccatcacacccgaccaccgcaatcagccccggaatgtagttgggctgcggcgcggttgtactattaacagtttgagtttgtagtgcatccattcgttaaatcatcccctatccattttggtgatcaggaaagcgcggcgtgaattgcgcgtagtgacgcttgcagaatttcatcggcggggtgtcgcccatccagttcaaggatctttgcgccattgaatgtcagttgcggcgtaacggcgattttttcctgtaacgctgccagttggtggtcaggtttacgcgcaaacgcggtttgttcatcaatgccaagacgaatcaacaatacgggcaaataagatgccatccattggtacagcttcagctcgcgctgccttaacatttttatccaaccgttaccgcccgtggtttttgccaattgcgggccatcaaagcgaaaccccggcacttcaacctgcgggtagcggtcggtgatgagcagaaagccttgctggcttttacacaacattttgcgaaacttgtacgcccgccagcaggaaagcagatagataaccagtgcagtaatattgccaggcggtgttgagggcttttcgtgcacatgtgccgctttacttcgcagataacgcccaaaaggtgcgccaataacagggagctgtgaaatccattcgccaattcgcccggacgattgcccgagataaatgtgttctgttggcattcttgctgccagttcatttaccaggcttgccgtgagggtcgatttacctgaaccatcacatcctacaatggcaataacacgcactggcgtggaattaattattgacatattacgttgattcacgaaaaacccggcagtaaataatgtattgaatattacgtggtccgtgctcagaatatccgttcaaccttattgtgacaatggttaattgtgacattgacctgaattacgctttcataaaaacatattaaccaaataaatatttttaatggatatttaaattaaaggatatattcatgcagtcaataacacctccattaattgccgttattggtagcgatggttcaggcaagtcaacggtgtgtgaacatcttattaccgttgtcgaaaaatatggtgctgccgaaagagttcatttaggaaaacaggccggaaatgtcggtcgtgcagtgacaaaattaccgttgatgggaaaatccttacataaaacaattgaacgaaatcaggtgaaaacagcaaaaaaattgcctggaccagttccggcgctggtaattacagcgtttgtcgcccgtcgcttactgcgctttcgtcatatgcttgcctgtcgtcgtcgcgggttaattgttctaaccgaccgttatcctcaggaccaaattcctggcgcttacgatggtacggtgttcccacctaacgttgaaggtggtcgttttgtctcatggctggcaagccaggaacgtaaagcgtttcactggatggcgagccataagcctgatctggtcatcaaactcaatgttgaccttgaagttgcctgtgcacgtaaacccgaccataaacgggaatcgctggcgaggaagattgccataacgccacagttaacctttggtggtgcacaactggttgatatcgatgccaatcagccactggaacaggtgttggttgatgcagaaaaagcgattacggattttatgaccgcgcgtggttatcactagtcaaaaatggaaatgcccgatcgccaggaccgggcattttcaggaaggttaaatcaactgcaatgctatccagtacagcccaccagaaagaaaaattgccgccggtaaagtaaatacccacgccatcaggatgctggttaccgttttacgctgtaacccaccgccgtccaccaccatcgtccctgcaactgcagacgagaggacgtgtgttgtggagacgggcatcccaatataactggcaagaccgatagacactgccgccgtcatttgtgccgccatgccttgcgcatacgtcatgccgcgcttaccaatcttctcaccgatggtcatcgctacacgacgccagccaatcatggtgccaatgccgagcgccagtgctaccgccatgatgatccacaccggagcgtactcaatggtgcttaacatatcgctgcgaagttttttcagcaggttctggtcttctttactgacgcctggcagtttcgctagcttcgcggaggtatcagagatgcacagcataatgcggcgcagctggctgcgctgactcacgcttaacggctcgtaactttccatattgcctggcagcatcgttttaacgcgcgcaatagcatcaaaggtatttgccggatgacagtgaaactctgttacttgcgtgccatcagtcgatgctgcaggcaatggaggttccatcgcaatcaacttctgcggcagttcaggatgctgttgcaggtagtgttcgaagttggtaacggcatcgcgggtacgggtaatttcatagccggacgcattcatattgacgacgaagccagcaggggcaatccccaccagtaccagcattaccaggccgatccctttttgtccgtcgttcgcgccgtgcgaaaacgccacgcccgcagcggaaacaatcagcgcaatacgcgtccagaatggcggtttacgtttgccttttttctttttgcgatcttccggaatgcggtgaatacggtcacgctttttcgtcccgctccagtagcgtcgcagcaggaatatcaggcctcccgcaatgaccaggccgacgataggggaaacaatcagcgaggagaaaattttggtcacttcacgcaggtttaacgcatccatcaccgatgagccggttaacagcgcgttggttaaaccgatgccgataatcgcaccaatcaaggtgtgcgaactggaggccggtaaaccgaagaaccacgttcccaggttccagataatcgccgccagcagcatggaaaagaccatcgccaggccgtgggttgaccccatattcagcaacaaatcggttggcaacatatggacaatggcataggcaacgctaagtccgcccaataacacgccaaaaaagttaaaaaatgccgccatcaccacagcaagttgtggttgcatggcacgagtataaataacggctgccaccgcattcgccgtgtcatgaaaaccattgattgcttcgtagaacaacacaaatgccagagcaagcaataacaaaagccctgtgtatatatcaaggccaacaaataaatttagcatatattagattacgccattttgaatttacgaacggacgcattatcagtgactttaacggcatgggcaaagtgaaatatcattttttaacgataaaaagagtgttatttcttgtgtatcagacaataagcattcattcaaaacctttagaaataatcaaaacacaggtattccactggttaatatattcacatatgaaatgaataaatattggaatatataaatattgaatattttgattaatccccgtactgattattcttcataatcagtacggggttgctacaacatgtattactttttcaccacaattaacggttcaatatcactctcttttttgatgaccagtgattcatcaccgcgcaaacacgtcccaccgtagttgccgccaacggtgaaggtacatacctgaatgtatttaccgtccactttcggcaaacaccacagttgctgatagatgtttttctgctcggcaaatttaccgctggttttgtccagcacctcttcatgatggctgacgaggtcgatattgctgccacagcgaccggcgatcggtttcactgcgtaacctgttttcaccagttcatcattaacagtgaaatcggtatccagcaggtaacgatggtgcgggaacagcgaccagaggatcggcagaatcgctttgttgccggggatcaccgtccacagcggctcaaagaccagcacttccgggcgcagcaatacgtcgataagacgcacttcgttttgcggatgaccggtacggattggcaccgcagcaaactcacggtcgctaacttcacgaatctgatcaaacgcggtttcccacgcccaggttttccacacgcagttaaccagtcgcccttccccatcaatcagttgcccggcagcatcccagcccagttcatccaatccacgcaagatacgcgtttcaaagcccgcctggtgcagcgcctgctccataaactgcgcgtgatagttttcctcgatatctttgtcctgcatgatatggacaaacggacgtgcacgactgtgtttccaggcaccagccaattcgttaatcagcccttccgccggattgaagccgttgcctttatagccctgctccgcccaacgttcgaggatcaagcccgcttcggtatgacaggaggcggagtcggcgttgtactcgtaaaccttcaggccacgctcatccatgcagaaatccatacgaccagtgatcatatggtgacggcgacgctgccaggagagacgcaaacgtggccagaggattttcgggatgtcgaacagcgccagcaggttgtcatctttcagcaccttgtcggttgcgtgaagatacatcaggtgcagctcgttggtggctttaattagctcctgctcggcactctcggtaatggtgtagtaatgataaggatcctgattgatcacctgaccgttggcctgcacataggcgttttgcagcggatctttttcatccagccatttaccgtcaaactggcctttgttttccaggcgcgctccgctgattttcagcagctcgcctgcaatttccggctgcggtaagctgtattcagtatcttccgtctggatcatccagcccagaatggtggtgtcatcaaaagtgtctttcagggtatagcagccgttttcgaccaccatctccagctcgcgcgtccactgttgcccttgcggcaacggggaatgaatcacgttctgttccgcaatacggactttgttgccatgcaattgggtaatgatggcgacatggccagtgtctttaaattcaccgcctttatcccagataagaagcgcacccgcgaccggcgcacgcggcgagccgttaggaaatgcctgcaatggcaggatgttgtcattaaccacttctcgcaggaagcgcagcgagaaaatctcccacgccatacccacgtcagtaaagaccacaccgtaattcagaaagagaaaacggcgagcaaattcaacgcattgccacttgtggcccatatattcgtcgtcgatatagctacggaatacggcgtcatcttcgtattcctgcggatcgagagaactgtaatctgaagagtagattgctaccccacctggggcgtagcccaataatgtcccgaacggggcatcctggctggtcgttcctttgctcatcactttacctttaacaatacaacctaagcagttggcgtaattgttgtgctctgattacctgctcagcgacattaaccggacagaggtcagactaatcatacacctcatcgcagcggctggcgcaaagggttaaaaaattcacattctgtacagcaagtgacctgctacactgcttcaacactaccactcagaaggcaactcactatgacagacaatacttatcagcccgcgaaagtctggacgtgggataaatccgctggcggcgcgttcgccaatatcaatcgcccggtttctggtccgacgcatgaaaaaacgctgcccgttggcaaacacccattgcaactttattcgctgggaacgccgaacggtcagaaagtaacgattatgcttgaggagctgctggcgctgggcgttactggtgcagagtacgacgcctggctgattcgtattggcgatggcgatcaattctccagcggctttgtcgaagtgaacccaaactcgaagatcccggcgctgcgcgatcatacgcataatccgccgatccgcgtgtttgaatctggttcgatcctgctttatctggcggagaaatttggctacttcctgccgcaggatttggcaaagcgtactgaaacgatgaactggctgttctggttacagggcgcggcaccgttcctcggcggtggttttggtcacttttaccattacgcaccggtaaagattgagtacgccatcaaccgctttaccatggaagccaaacgtctgctcgacgtgctggataagcaactggcgcagcataagtttgttgcgggcgatgagtacaccattgcggatatggcgatttggccgtggtttggcaacgtggtgttaggtggtgtgtatgatgccgctgagtttcttgatgcgggcagttataagcatgtacaacgctgggcgaaagaagtaggcgaacgtccggcggtgaaacgtgggcgtattgttaaccgcaccaacggaccgctgaatgagcagttgcatgagcgccatgacgccagtgatttcgagacgaatacggaagataagcgtcaggggtaagggttggtgttcgtcgcagcaagccatccaggccggataaggcgttcacgccgcatccggcaatcgtgcacaatgcctgatgcgacgctgccgcgtcttatcaggcctacgaaagctaatcatcacgcgctggtaatgtcgtaatccatttggcgcagtgcgtctaatgtggctttggcttcatcttcgtcgatgatgctcatggcaaatccgacgtgtaccagcacccactggcccagtagatcggcagggttaccttcacaaatcagggcgatattcacatcgcgcttgataccacatacttcaacctgcgcaagctggtgaatatcttcaccgacagccagcacctggcctggaacgccaatacacattattaactccggttattcaacttcaatacttttgacgatcagcgaatcgccggtatcgacacgcaaccgctcgccgtgacagagcggacactgcgcatcgtgctgatgaatctccaccacctggctgcaatcccagcaccaagcctgggcgggtttatagacgatatgtaaatcgcacccttgcgccaccgttccgtggcagacaatttcaaaactaaaacggacggcgctctcctcaacgcaggagagcgcgccaatttccagccacacggcggtgacgcgcttaacatcgtgctgctccgcctgccgttggataatttcaacggcgctctggcaaagagacaactcatgcattttcgccactcctgcgaccaaacagcagggcgcgacgccctgcgtgtggtacatccggattcgtgactggcagcgaaaggatcattcgtgcgcagtcatccgtcaggcgttggccctcttcaatcgacatgctgtgcgaaagcggcgacatcagcgaacaggagagatattgcgaaacaccgtccagttcgccaacggtaaaggtcatagtgccatacggcagttgcagaccaattttttcactcactttgcgcagcggccagagttgatccgggccggggaagataactgcactcagcatccacggggtgatcacacaccccgtccactgaccttcgaacagcgtaaaatcagaaacatacaccggcattgaaggatgcagaaaagagagatcgtgcatcgaacgccgggcaatttcttcaaacgctgcctgtacttgcgccttcggggaggtctggaaacctgctatctcttcagtcatgaatcgcctcccgtgggatggcttccacgccagattcacgcagcgcagccagaacctgctcaagcgcaggttcaatcattgcttcaaccgtcggcgttaagccgatgtgtggctccagcgattccgggatcacgccgaccagggtcagctttttcggaaactcgccggtgaagcgcagggccgacaagacgtcggccaggccaagctgatgcggagagattttgttggtaaacaacgccggaacttcttcatcccgcaggatcatcatcgttcccggcgcgttctttttcgagacaatggcatccgcaataatcaaatgatcgcgatttgccatgtcgccaagcagctccattcccgccgtgccgccatcgaggatctcaacataatccggcagaatgtatcgttgctctaacgcttcgacaatccgcacaccgatggcttcatcggtcagcaaaatattgccgacccctaagactaaaatacgcattacagaaccttcactgaaaccacttcgttgccgtcagcatccactacgtgtaccgcacaggccatgcacgggtcaaaggagtgaatggtacgcaccacttccagcggtttattcggatcggcaaccggtgtacccaccagcgactgctcgtaaggaccgacgtcatcattgaagttacgcggaccagagttccaggttgatggaacaaccgcctggtagttgctgatgataccgtctttaataaccatccagtgagagagcataccgcgcggcgcttcgaggaagccaacacctttgaattcacccgttgccggaatgttcggcttcacaaaggtggtgtgatcgcctttgccgatattggtgatcagtgcactgtattggttttgcaggatatcctgcaattcacagcagtgaacggtacgaccaataatacggcccagcgtggagtgcagctgtgccacttccagcgtgttgccagtcagtttctgataaatcgcaacgatttcattcagtttgttctgggtagattcgcgacctgccgccagtttcaccagcatattagccagtggccccacttctaccgttttgccgtagaaagtcggtgatttcacccaggaatatttcccgtcgtcagaccaaccatcataagccggaatggtggtgccttcccacggtgcctgcggcgcttcgtctttataccaggagtgcttcgcgctttcctgaatgcctttgatcaggtattcatcggaatgagaagtgatcggacgatacgaggacagatccgcattctcaatgtagccgcccgggaacaggaagctgccgtttttactgtcggtcgggaattccggcacgctcaggtagttcaccgcacctttaccgcgtgtcagccattccgggtagaacgcggcaataactgcggtatcaaccttataaacctgctcaacaaagtcgctcagtttgtcgatgaaagacttgatgtacatcaggcgctcaaggttcagcacgcccaaaccgtcgaggttgatcgggttcgcgacaccacctaccgccaggttctgaatgtgcggcgttttaccgcccagcagcgccacgacgcggttagcgtcacgctggcactccaacgcttgcaggtagtgcgctaccgcaatcaggttcacttccggcggcagtttcatcgccggatgaccccagtagccattagcgaaaatacccaactgaccgctggcaaccagatctttgatcttgttctgaactttggtgaactcttccggactgttcaggtgccaggtcgaaacgcctttcagcatttcggaggctttggttgggtcagcttgcagtgcagaagtgatgtccacccagtccagcgccgaaagctgatagaaatgaacaatatggtcatgcgtggtgtgcgcagccagaatgatgttacggatgtattgcgcgttaaccggaacgtcgatattcagcgcactttctgccgcacgaacggaagacagcgcgtgagtggtagtacatacgccacagatacgttgcacaatcatccatgcatcgcgcggatcgcggtttttcacgatctcttccatgccgcgccacatggtaccggaagcccatgctttcgaaacgacgccattttcgatttcgcaatcgatgcgtaaatgcccctcaatacgggttaccggatcaatagtaattctctggctcatgctttgctcgcctcatgacgattatgatcgttttgttttaaaggaggaagtatcggcagtagacgaatgagtacgatgtaagcgcaaatctcaatagccacaaaaccaatagaaatcaacagttcttcccaggtcgggaagtagtaaccgccgcccgggttgaatgccaccagcgaataggtcagacgccaggttgcacaacctaacagtgcgctcagtgctgacaggaacagcatgcgggaatcattacgcacgttcgccacacgcagaacgaccagcgggaagagcatcagcaggacttcaatccagaacatcacggagtagaagtcaccggcaaacgctaacgacagcttgtcgcgatagataagctcgccaaagcgcagcacgatgaaaatcgccagcaacacactgatggtgttggtcagcttaacaaacagactcttttcatccggaccgttgccacgcagacccgcctgcaccagcgaaccttcaaagatgacaatcgagaagcccatgatgaacgccgtcagcagcgagaacagcggcaacatttcatagctctgccacaacggatgcaccttgtagcccgccgagatcatcagcgaccccattgaagactggtgcatggtcggcagcagcgcaccgagcgcgatgatgaagaacatcaccttgtttagtcgctgtagcgacaccttccaccccagacgttcaaacagtgccggagcaaactccagtgccatcacgccgatatagatggtcatacagaccgccgtctcgaacagtaccgagttcacgttgaagtgacccggaatgtagaagtacggcaggttccagtagcgacccacgtcgatagtgatcgacaagccacccagtgagtaaccaaacagactcgccaacagcgccggacgcaccagcggatggtattgcccacggttaaagacgtataccgcccacgccagcgcccagccgccacaggcaaagccggtgccaatcagcaggtcaaacgcgatccacacgccccacgggaagccgccgttcaggtcagagacagagcccagaccgaacaccagacgcttcacaatcaggagcatacagatgacgattaacggtccaaaaatcatgaccggtttactgatgattttgccgcccagcggttgtggatcatgactcatgatcgtctcctccgtcgtgatggtcgtttttggtgttgcgacgaaccagcacggttaagcccgccagcacagccagtggtagcatcatgcctttatacagggtgtgttgaatattttcggaacgcgcaccggtagaaagatcgtccagtttcggcaggtcgagattttcataaggcacacccgtcagtaccagaacctgagtaccgccgccctctttctcgccgtacagatgcggataatatttcggcaccgtatgcaggtaagtgtcgccagatttcagcgtctgacgcggatagtggtattcgctgccaggcttcagcgccagacgttttttcgcctccgccatcagctcttcacgcgtaccgaaaatcaccgcgcccgccgggcacacttctacgcagccaggtagaccgcctttatcgagacgttccacacctttctggttgcacagctcgcacttatgcagcgcaccaaacgggttgttgtagtcgtacttcggcacgttgtacggacaggcgaccatgcagtaacggcagccggtgcacacatctttgtcgtaatggacaatgccggttttcggatcttttttcagtgcagagaccgggcacacagagacacagttcggatcgacgcagtgcatacactgtttcttaatgtacgcgtagccgttctcctcctggtctttgttgacccctgtgccgctggtccacacctgaatgatgttattggtatacggcgacagtttgtcgttgttcgaccaggtctgttccccttgcgggttacgttcagggaaattgatatcctgacacttggtgacgcaagcctggcagcctacgcacaaggtcgagtcgtacaacatccccagcgatcccggaattggcgggcggttttcagcagccgcatgactgacagacggcagcgcgcccgtcagcaatgccccgcaggaggctgctttaataaaattacgtctgttcacggttattctccccgtgagtcagcgttatctttcttttgctgacgacccagttcacgcaccgccatcacgctgacaccggcaaccaacccaaccacaccgccgagcaaaccaatagcgcctgcagagacgttgccgccctctttagcgttaacatccggtttctgtgaacgcggagtttgattttcgacgttggcaagctgatggatgcctttatggaagccgataccttcttcgttacagccatagcaagggtgaccaatcgccaccggccacacaccgccaacatcgcagaattgcagcgttgagcagttgccgtaagtttctggccctttacagccgaggtggtacaggcaccagccttcgcggtggccttcatcaccgaactctttggcaaaacgaccagcatcgaagtgcgggcgacgttcgcagtgttcgtgaatcagacggccataggcgaaggtcggacggtttttgtcatccagtttcggcggtttgccgtaagtgatgatgtgcgcaacggtcgcgaggaagttgtgcgggttcggcgggcagcccggaatattgataacggttttgcctggcagaacttcttgcaggctgactgcgccagttgggttaactccagctgcggcaacaccgccccacgcagagcaggaaccgatagcgataatggctgctgcgccttccgccgctttgcggatgtgatccacaatcggctcaccggcaaccatgcaataaataccgttatcttttaatgggatggaaccatccaccactaacacatactgccctttgtacttctcgagagcgttatgtttgttctcttcgacctgatgaccgaaggcggcggaaagcacttcgtgatactccagagagatagtctccagtacgaggttttctaccgttggatgcgttgcacgaagcagagattccgtacaaccggtgcactcctgcgcgccaatccagataactggcggacgctgcgggttagtaaccgattcggccatctctgcagcggctttgctacttaaccccatggtggcggctaatgctgcacaaagcttcatgaaatcacgacggttaatgccgtgagaatggatgagggtgttatctccagtcatttatagttattccgttgcgaagacctggcatatattttgcctcaatcgcaaaatcaataatgcgatcgatgcgccatttaccacacatttattatggttatcgatatcatgatactgcggcggggcgctaaaacgaagggaagaagcattagtgtaattaattaaagcaagataatacgtatgtttgatcaattttcgaggcgataaccggccataaaaaagcgcaacgtagaacaggaattattctcacgaaagaaatccattaccatctctttatccagtccatagcggcgcgtcagaatacccgcttcccaggcgctaagctggcgatctccggtcttttcgtacatccggtgtgagtagcctaatacaaaaccgcgtttataatcggcacagaattttgtcacattaaccgcactgtcggcatgcgttgcttttaatcccgccattaagcctttaccaaaatggttattcatcgttcacctcattcgctatatattgtcatatatagcgatattttaggcaaagaacgacttttgcgcacgctattttttcatgcttgtttaagacgtaatcccgtaagagataaacctatcaggagagatatttatcgaaccatttcagtgtcctttgccaggcaagatcggcggcagatttgtcataacggggcgtggaatcattatggaatccgtgattaacccccggatagatatacgcctcataaaccttattattggctttcaacgccgcctcgtaagcaggccagccctcgttgattcgggtgtccagttccgcgaagtggagtagtaaaggcgcttcaatcttcgccacatcggcagtgggtgcctgacgaccataaaacggcaccgcgcaggccagttccggatacgcgacagccgccgcgttcgatacgccaccgccatagcaaaatccggtaatacccactttgcctgtcgcttgcggatagcgttgcataaactcaattgcggcaaagaaatcattcatcagtttgttggatcaacctgctgttgcagctcacgacctttatcatcatttcccggataacctccaacggaacttaagccgtcaggtgccagggcgatataccccgccttcgccactcgccgtgccacatcttcgatatacggattcagtccacgattctcatgcaccaccactacggctggcgttttgccgctcatctttgcgggcttcaccagataaccccgcacctcgccgtgaccatttggcgaaggatacgtgatgtactcagcaacaatttccgggtcggtaaactctacctgagtcgccagcgcataatttggcttgagcaaatcaaacaacgctaatgccgtcatcccgcctaccgcacttcgccgcaaggttgaggaactcacgtttcgagattttcccgtgagcgtaatagtcatagtaatccagcaactcttgtgggaaatctttggcggttaaacgcggcatcgttgcactcctcagttggtgtttttttaagcaaagcataagcacgtatttttgcccagtttttcgtcactctgtgagccagactacgggatacgcgctggcgaatcgctaaactagaaacattgtttcgaaattgaacggtggaaaggagaggtcatggtctggttagcgaatcccgaacgttacgggcagatgcaataccgctattgcggaaaaagtggtttacgcctgcccgcgttatcgctcggtttatggcacaatttcggtcacgttaacgcgctggaatcacagcgtgcgatcctgcgtaaagcgtttgatttgggcattacgcactttgatttagccaacaattacgggccgcctccaggaagcgcagaagagaactttggtcgcctgctgcgggaggattttgccgcttatcgcgatgaactgattatctctaccaaggctggctacgatatgtggcccggcccttacggctctggcggttcacgtaaatacctgctcgccagcctcgaccaaagcctgaagcgtatggggcttgagtatgtcgatatcttttactctcatcgcgtcgatgaaaatacgccgatggaagaaaccgcctctgcgctggctcatgcggtacaaagcggtaaggcgctgtatgtcgggatctcctcttactcgccagagcggacgcaaaaaatggtcgagttgctgcgcgagtggaaaattccgctgttaattcatcaaccttcgtacaatttactgaaccgctgggtggataaaagcggcctgctggataccctgcaaaataacggcgtgggctgtattgcctttactcctctggctcagggattgctgaccggaaaatatctcaacggcattccgcaagattcacggatgcatcgtgaagggaataaagttcgtggtctgacaccgaaaatgcttaccgaagccaacctcaacagcctgcgcttattgaatgaaatggcacagcagcgtggacaatcaatggcgcaaatggcgttaagctggttgctgaaagatgatcgcgtgacgtcggtattgattggtgccagccgcgcggagcaactagaggagaacgtgcaggcgctgaataatctgacatttagcaccaaggagctggcgcagattgatcagcatatcgccgatggcgagctgaatctgtggcaggcgtcttccgataaatgacctgttaataacgggcgcgcgaaccgcgcccgaatcagatcagtgattatgacgagtcagtcggtcaagatagcccatcacaaatgcagaaagcacaaacgtcagatggataatgacgtaccacatcagtttgttatccgggacatttttcgcatccataaagacgcgcagtaagtgaatggaagaaattgccacaatcgacgctgctactttgtttttcagcgacgttgcgtccattttccccagccagttcagcttctctttgttctcggagatatccagctgtgagacgaaattctcataaccggaaaacatcaccatcaccagcaaaccgccaaccagcgtcatatccaccagcgacagcaacacgaggatcaaatctgattccgccatcgagaagatattcggcagtacgtgaataatctcctggaagaacttcagcgccagggcaactaacgccagcgaaaggccaaagtacacgggggcaagcagccagcgagaagcatacattgcattttcaagaaaacgttccatacattcctgtcgtgtagttaaaacgggcaacagtatatcgcaattgagtaaacagcacgcaacagcaaatcaacatatacgttaaacctttgtcgcataattctgaggtttagggatcttcctggttcccttatcaacgcatcgagaacgtctacccttaaaggacgttgaacctgaagggagaaaaacgatgtctcatttaaaagacccgaccacgcagtattacactggtgaatatcccaaacagaaacaaccgacgccaggcatccaggcgaagatgacaccggtaccggattgcggcgagaaaacctatgttggtagcggtcgcctgaaagatcgtaaagcactggtgacagggggcgattccggaataggtcgcgctgccgccatcgcttacgcgcgtgaaggggctgacgtggcgatcagttatcttcccgtggaagaagaagacgctcaggatgtgaaaaagatcattgaagaatgcggacgcaaagccgttctgctgccaggcgatttaagcgatgagaaatttgcccgttcgctggttcacgaagcgcacaaggcgttaggcgggctggatattatggcgctggtcgccgggaaacaggttgccattccggatattgcagacctcaccagcgaacagtttcaaaagacctttgccattaacgttttcgcgctgttctggctaacccaggaagcgatccccctgctaccgaaaggtgcaagtatcatcaccacttcgtcaatccaggcataccagccaagtccgcatttactggactatgcggctacgaaggcggcgattctgaactacagccgtggcttggcaaaacaggtcgcggagaaaggtattcgggtgaatattgtcgcgccaggcccgatctggacagcactgcaaatttccggcggacaaacgcaggataagatcccgcagtttggtcagcaaacgccgatgaaacgtgcggggcaaccggcggaactggcccctgtatatgtttatctggcaagtcaggagtcgagctacgtcaccgcagaagtgcacggcgtgtgcggcggcgagcatttaggttaaaaaaatgcccggttgtgaaaagcaaccgggcatcattgtgaattcactcttacctgatgtggcgaaaacgccttatccgcctacaaacgcatgaagattcaacatgttgcaatagattttgtaggcctgataagcgtagcgcatcaggcattgagcacctaatgccggatgcgtcgtgaacgccttatccggcctacaaacgcacgaagattcaacatgttgcaatagattttgtaggcctgatgagcgtagcgcatcaggcaattctactttacttcgctttggcggtttcttcgccgaccagacctatcttcaggtaacccgcctgatgcagcgtatccattaccttcatcaacgtctcgtaatcgacggttttgtccgctcggaagaagatggtggtgtctttcttgccttcggttaacgcattcaacgccgtaatcattgtttcatcggtgaccggatcgttaccgataaacatcgagttgtctgccttcaccgacagataaaccggtttttccgggcgcggctgcggcgtgctggtagaagcaggcaagttcaccttcacatctaccgtcgctaacggtgccgccaccataaagataatcagcagaaccaacatcacgtcgataaacggcgtcacgttgatatcatgcatttcgccgttatcgtcgaggttttcgttaagatgcattgccatcggatattatcctgcgcgtaatttttgtgcgacacgaaccggatgcgcagcggcgctggcttccagatccaggtcacggctttgcagcaacaatacctgcgctgcaacatcacccagcatcgctttaaagccgccaatctggcgtgcaaatacgttatagataacgaccgcaggaatcgctgccacgaggccgattgccgttgctaacagagcttctgcgatacccggcgcaacgactgccaggttagtggtctgcgtttgcgcgataccaataaagctgttcatgatgccccagaccgtaccaaacagaccaacgaacggagaaatcgcgccgatggttgccagatagccgttaccgcggcccatttgacgacccactgcggcgacccgacgctccagacggaagctggtacgttctttaataccttcgttatcgtcgctgccttctgacagttccagctcattctgcgcttcattgagcaaatgcaggcttaagcttttgctaccaaaatcagcggcgatatcgttggcctggtttaaggaacgcgcttcagccagcagttgctgctcgcgcttaaggcgacgcttctgattgaagaactctacgctcttactgaagaagattgcccaggtgactacggaggccaaaataagcccaatcatcacgcacttaacgacaatatcggcgtgctgatacataccccagacggaaaggtccgtctgcattaaattattacccactgtgtatctccaggacgcaagtcacaaaatctgcgcataataatatcaaaacgacgtcgaattgatagtcgttctcattactatttgcatactgccgtacctttgctttcttttccttgcgtttacgcagtaaaaaagtcaccagcacgccatttgcgaaaattttctgctttatgccaattcttcaggatgcgcccgcgaatattcatgctagtttagacatccagacgtataaaaacaggaatcccgacatggcggacaaaaagcttgatactcaactggtgaatgcaggacgcagcaaaaaatacactctcggcgcggtaaatagcgtgattcagcgcgcttcttcgctggtctttgacagtgtagaagccaaaaaacacgcgacacgtaatcgcgccaatggagagttgttctatggacggcgcggaacgttaacccatttctccttacaacaagcgatgtgtgaactggaaggtggcgcaggctgcgtgctatttccctgcggggcggcagcggttgctaattccattcttgcttttatcgaacagggcgatcatgtgttgatgaccaacaccgcctatgaaccgagtcaggatttctgtagcaaaatcctcagcaaactgggcgtaacgacatcatggtttgatccgctgattggtgccgatatcgttaagcatctgcagccaaacactaaaatcgtgtttctggaatcgccaggctccatcaccatggaagtccacgacgttccggcgattgttgccgccgtacgcagtgtggtgccggatgccatcattatgatcgacaacacctgggcagccggtgtgctgtttaaggcgctggattttggcatcgatgtttctattcaagccgccaccaaatatctggttgggcattcagatgcgatgattggcactgccgtgtgcaatgcccgttgctgggagcagctacgggaaaatgcctatctgatgggccagatggtcgatgccgataccgcctatataaccagccgtggcctgcgcacattaggtgtgcgtttgcgtcaacatcatgaaagcagtctgaaagtggctgaatggctggcagaacatccgcaagttgcgcgagttaaccaccctgctctgcctggcagtaaaggtcacgaattctggaaacgagactttacaggcagcagcgggctattttcctttgtgcttaagaaaaaactcaataatgaagagctggcgaactatctggataacttcagtttattcagcatggcctactcgtggggcgggtatgaatcgttgatcctggcaaatcaaccagaacatatcgccgccattcgcccacaaggcgagatcgattttagcgggaccttgattcgcctgcatattggtctggaagatgtcgacgatctgattgccgatctggacgccggttttgcgcgaattgtataacattgccacttttggacaattttgcagacattttattgtgaaaagtcttaaattgttgcgtccgggatcaaggcgtcccggacgattcaggagtacaataggcagataaaggcttaaacgctgttccacaggaaagtccatggctgttattcaagatatcatcgctgcgctctggcaacacgactttgccgcgctggcggatcctcatattgttagcgttgtttactttgtcatgtttgccacgctgtttttagaaaacggcctgctgcccgcctcatttttgccaggcgacagcttgttgatactggcaggcgcattgattgcccagggggttatggattttctgcctacgattgcgattctgaccgccgcagcaagtctgggctgctggctaagttatattcaggggcgctggttagggaataccaaaacggtgaaaggctggctggcacagcttcctgctaaatatcaccagcgcgccacctgcatgtttgaccgccacggtctgctggcgctgctggctggacgttttcttgcatttgtccgtacgctgctgccaaccatggcgggaatttccggtctgccaaaccgccgcttccagtttttcaactggttaagtggattgctgtgggtcagcgtggtaaccagttttggctatgccttaagtatgattccgttcgttaaacgccatgaagatcaggtaatgacgttcctgatgatcctgccaattgccttgttaaccgctggcttgttaggcacgctgtttgtggtgattaaaaaaaaatactgtaacgcctgacgattttcccgttcccggttgctgtaccgggaacgtatttaattcccctgcatcgcccgcattcttgccgcatcttcccccggcgtcacaccgaagtaacgtttaaactcacggctaaattgcgatgcgctttcatagccgacgcgcatcgctgctgcgctggccttcatgccgtcatggatgatcatcatccgcgccttatgcagacggtaattcttcaaatactgcaacggcgaggtactggtgacagacttaaaattatggtggaacgccgatacgctcatgttggcttctgccgccagttgctcgacgctcaggttttcggtgtatttattctcaatccgtttcagcacgcggctaatcagactgaagtgagtctggcgactgaccagcgccagtaacgcgccgccgcaaggtccggtcagcacgtagtacagaatttcgcggatgatctgtttgccgagaatacgcgcatccagtggtcgctccatcacgtcgagtaaccgctccgccgcgcataaaatctcttctgataacgtggcggagttaatcccgctggctgccatcgacggctggaaatgctcatcttcgccaatgtccatcaacagttcctgtaactgcaaaatatcgacattgagacgcaaccctgccagcggcacctctgacgtggcataggtttcgcactcaaacggcaacggcaccgtcagcagcaggtattcattggcatcataacgaaacacgcgttcattgatataaccgattttatgcccggaaaagagaattatgatgccaggctcgtacatcaccggtgtacgtgcgaaaggcgtctcgccatacaacaaacgcacatcgggcaacagtcctgacaaactattttctttatttttcagtttattaactttatccgccagcaagcggcaaatctcttcacgtttcatatcgcgtaatttcttaggaataatgcggcaatttgattgtgcgcaattttgtagcatttctccagcactctggagaaataggcaagacattggcagaaatgagcattgagagccagggcgctggcgatcacaatgaaaaacatcaggcagatcgttctctgccctcatattggcccagcaaagggagcaagtaatgaacaactttaatctgcacaccccaacccgcattctgtttggtaaaggcgcaatcgctggtttacgcgaacaaattcctcacgatgctcgcgtattgattacctacggcggcggcagcgtgaaaaaaaccggcgttctcgatcaagttctggatgccctgaaaggcatggacgtgctggaatttggcggtattgagccaaacccggcttatgaaacgctgatgaacgccgtgaaactggttcgcgaacagaaagtgactttcctgctggcggttggcggcggttctgtactggacggcaccaaatttatcgccgcagcggctaactatccggaaaatatcgatccgtggcacattctgcaaacgggcggtaaagagattaaaagcgccatcccgatgggctgtgtgctgacgctgccagcaaccggttcagaatccaacgcaggcgcggtgatctcccgtaaaaccacaggcgacaagcaggcgttccattctgcccatgttcagccggtatttgccgtgctcgatccggtttatacctacaccctgccgccgcgtcaggtggctaacggcgtagtggacgcctttgtacacaccgtggaacagtatgttaccaaaccggttgatgccaaaattcaggaccgtttcgcagaaggcattttgctgacgctaatcgaagatggtccgaaagccctgaaagagccagaaaactacgatgtgcgcgccaacgtcatgtgggcggcgactcaggcgctgaacggtttgattggcgctggcgtaccgcaggactgggcaacgcatatgctgggccacgaactgactgcgatgcacggtctggatcacgcgcaaacactggctatcgtcctgcctgcactgtggaatgaaaaacgcgataccaagcgcgctaagctgctgcaatatgctgaacgcgtctggaacatcactgaaggttccgatgatgagcgtattgacgccgcgattgccgcaacccgcaatttctttgagcaattaggcgtgccgacccacctctccgactacggtctggacggcagctccatcccggctttgctgaaaaaactggaagagcacggcatgacccaactgggcgaaaatcatgacattacgttggatgtcagccgccgtatatacgaagccgcccgctaagctttttacgcctcaaactttcgttttcgggcatttcgtccagacttaagttcacaacacctcaccggagcctgctccggtgagttcatataaaggaggaacgtatggctaatccaaccgttattaagctacaggatggcaatgtcatgcccagctgggactgggcgtctggcaagcaagtaatgaggaagtaatcaccgccattcaaaaagcgttagaagtgggttatcgctcgattgataccgccgcggcctacaagaacgaagaaggtgtcggcaaagccctgaaaaatgcctcagtcaacagagaagaactgttcatcaccactaagctgtggaacgacgaccacaagcgcccccgcgaagccctgctcgacagcctgaaaaaactccagcttgattatatcgacctctacttaatgcactggcccgttcccgctatcgaccattatgtcgaagcatggaaaggcatgatcgaattgcaaaaagagggattaatcaaaagcatcggcgtgtgcaacttccagatccatcacctgcaacgcctgattgatgaaactggcgtgacgcctgtgataaaccagatcgaacttcatccgctgatgcaacaacgccagctacacgcctggaacgcgacacacaaaatccagaccgaatcctggagcccattagcgcaaggagggaaaggcgttttcgatcagaaagtcattcgcgatctggcagataaatacggcaaaaccccggcgcagattgttatccgctggcatctggatagcggcctggtggtgatcccgaaatcggtcacaccttcacgtattgccgaaaactttgatgtctgggatttccgtctcgacaaagacgaactcggcgaaattgcaaaactcgatcagggcaagcgtctcggtcccgatcctgaccagttcggcggctaacatgcaaattctcccggtggcggtaatgttccgctaccggacttttcagaaatcatttattcccctcgcgtcccgcccgttgttactcttccttgttcaggaatgccaaatataaggacatcatcatgcagagccggaagctcttaaaagaacaactcatctatatccgggataaacgcaacggagaggtgaaaaacagatgaaaataatacttctgtttttagcagccctggcaagttttaccgtacacgcacagcccccctcacagaccgtagaacaaacagtccggcatatttatcagaactataaatcagatgccactgccccttattttggtgaaaccggagagcgggcgataacttctgcgcgtattcaacaggcgcttaccctgaacgacaatcttacgctgccgggcaatattggctggctggattatgatccggtttgtgattgtcaggattttggcgatctggtgctagaaagcgttgcgtaacccaaactgacgccgatcatgccgatgccgttgtgcgctttcgtatctttaaagatgataaagaaaagaccacgcagacactgaaaatggtggcggaaaatggtcgttgggtcattgacgatattgtcagcaatcatggcagcgtcttacaagcagttaatagcgagaatgaaaaaacgctggccgctttagcttcgttgcaaaaagaacagccggaagcctttgttgccgaactctttgaacatattgctgattatagctggccgtggacgtgggtggtttccgactcttaccgccaccaggcggttaatgccttctataaaaccaccttcaagacggccaataatcccgatgaagatatgcaaatagaacggcaatttatttacgacaatccgatctgttttggcgaagagtcgctattttcacgcgttgatgaaattcgagtcctggagaaaaccgccgattccgcccgcattcatgttcgttttacgctgaccaatggcaacaacgaagagcaagaactggttttacagcggcgcgaaggcaagtgggaaatcgctgattttatccgcccgaacagcggcagcctacttaagcagattgaggcaaaaactgccgccagattaaagcaatgagctgaattaaataacaattagccggaacaataaataaaagggaacactatatgaaaacgattttcaccgtgggagctgttgttctggcaacctgcttgctcagtggctgcgtcaatgagcaaaaggtcaatcagctggcgagcaatgtgcaaacattaaatgccaaaatcgcccggcttgagcaggatatgaaagcactacgcccacaaatctatgctgccaaatccgaagctaacagagccaatacgcgtcttgatgctcaggactattttgattgcctgcgctgcttgcgtatgtacgcagaatgataaaaaaatccccggtagcgtgtcagttgccggggatattttttaacgtccaaccgccgctttaggccgtttcttcgcaccagcattcaccggacgagattgcgtagacgacgctttttttgccgtagcaggcgtctgacgctgggtcgccatcggcgtatgtttcgtcaacgccggacgggtattgcggttctggcgacgagcttcacgcatctcttcaatggttggcgcaggcactaagcaatcgcgacggctgccaatcagatgctttttgcccatcgcttccagcgcctggcggattaacggccagtttgccggatcgtggtaacgcaacaacgctttatgcaaacgacgctgtttgtcgcccttcggtacgaagacgtcttcgctcttataaccaatcttcgccagcgggtttttcccggtgtaatacatggtggttgagttcgccagcggcgacggatagaagttctgcacctggtcgaggcggaagcggtgctttttcagccacagcgccagattcaccatatcttcatcacgcgtaccggggtgcgcggagatgaaataggggatcagatactgctctttacctgcctgttttgagtaagtatcgaacagctctttaaagcggtcatagctgcccatgcccggcttcatcatcttcgataacggcccttcttcggtatgttccggggcaatcttcagataaccgccgacgtgatgggtcgccagttctttgatatagcgcggatcttctacggctatgtcataacgcacaccagaggcaatcaggatctttttaatgcctttcagatcacgcgcacggcgatagaggttgatcgttggttcgtggttcgtgtccatgtgcggacaaatatccggataaacgcacgacaaacggcgacaagtttgttcagcgcgtggcgatttgcagcgcaacatatacatgttggcagttggcccaccaagatcggaaatcacgcccgtaaaacctggaacggtgtcgcggatcgcttcgatctcattaatgatcgaatcttcggaacggctctgaataatgcgcccttcgtgctcggtgatagaacagaaagagcagccgccaaagcagccacgcataatgttgaccgaaaaacggatcatttcgtaagccggaatacgggcattgccataggccggatgtggcacgcgcttgtatggcagcgcaaaaacgctgtccatctcttcggtagaaagcggaatagcaggcgggttgatccacacatagcggtcgccgtgtttttgcatcaatgcgcgggcacagctgggttggtttcgtggtgcagaatacgcgaagcatgggcgtacagcactttatcgcccttcactttctcgaaagaaggcagcaacacgtaggttttttcccacggtttcgggcgcggtggctgcacggttacggctttggcttcctgctttttcggtgccaccggtttgttatccgcgcacggcaaatcttcaccatacggatgcgggattgggtcgatttttccaggggtatcaagacgggtggaatccacgccgctccagccaggcagcgcctctttcacgataatcgcggtattacgcacatcgcggatttcactaattggctcgcccatcgccagacgatgcgccacttccaccagcggacgctcaccgttaccaaacatcagcatgtcggctttcgaatccaccagcacggaacggcgcacggtatcggaccagtaatcataatgcgcggtacggcgcagactagcctcaataccgccgaggatcaccggtacatctttccacgcctctttacaacgctgggtataaaccagtgtggcgcgatccgggcgcttacccgcgacgttatccggcgtgtaggcatcgtcatgacgtaaacggcgatcggcggtataacggttgatcatcgaatccatgttgccagcagtaacaccgaaaaacagattcggtttacccagacgcataaagtcgtctttgctgctccagtccggctgggcgatgatcccgacgcgaaagccctgcgcttccagcatacgaccgcaaatcgccatcccgaagcttgggtgatcgacatacgcgtcgccagtaaccaaaatgatgtcgcagctatcccagccaagttgatccatctcttcacgagacatcggcaaaaacggtgccggtccaaaacaggcggcccagtactgcggccaggagaacaggtcgcgatccggttggatcagggagatagagctcattttgcttccagaaatgataaaaaaataatcaaaggccggggattataagccggaacgaaagagaaatcgaaaggtattccatactcgccctcctcgggcgagtatgaagattacggtaccggattgaccaacagttgcccaatcgagccacggtccgccatttccagcgtctgactgttgaagtagaacgggaagtgcgcccaggaaggctgaccgaaataaacaagcagctccacttgtccgtcaacccaaacggtatctttccagcctctgtcttccgggaacggcatcgcgccattcacgttacggatctggaacattacgccttcaatatggaacgcttgcggctcgtccgcgcgtaccgtccagcgttcccacgttccttgctgcgcggtgacatcaatacggttgacgtcccacagctgtccattaatacccgggtcatcacccagactgatatcgcgactgcgaattggcgaaccagccatgatttcagttggcagcaagcgcatcggaagactgtctgtgaccagcggcagaaggccggttgggcgcagcgttagcaccagggtagaaaccagaatactggatggctcaaagaagccacgaatacgatcaacaatgctcgccgcttcgccacaggtgatcgacacttcatcgccgttgctcatatccaccagaatctcgcggcgctcgcccggtgccagcgaaagttgcttcaccgatacaggagcaggcaggaatccctgatcgccagaaatcacatgtaacgggcgaccatcgttcatctgtagttgatagcgacgagagttcgacgcgttcagcagtcgcaagcgcacccagccacgcgagacttcaacgtacgggctttgtacaccgttaaccagcagcgtatcaccaacaaagccgccgcttcccggttcgttgtattctggcgtaccaaagttatccagccgtttatcctggataatgaccggaaaatcatccacaccataatggttggggataggcagcgacttgctgacttcatcttccaccagccacattccggcaaggccgttatagacctgctgagccgtgcggttgggagtattggcgtgataccacagagtagctgcgttctggcgaatgggcagtacgggtgcccagtcagcgtttggcgacatcatccgtgccggaccgcccatcagcgggcctggtacctgtagcccggccaccgtcattgagacattttctgtcaggcggttgctgtaaataagcttaacatcgtcgcccttccagacgcggatagtcggccccaggtaacgaccattgattccccagaccgacgcgcgtgtccctggcgtaaatgaccagtgcgcacgttgtacagtcataaacagcggttgcccacggcgagattcaagtagcggcggaacgggtagcggttgctgttgcccggctgcgctggccttcaggggaacagcgcctgcacaaagtgcaatccccgatgcctgaatgaactgacgccgactgagtgacatatttgctccatgtaaaactggctaaagtaataccgtgcaggaaagtgttccccgcaaaaatacagattgccgacttaaacttttccggcggcttcgcgttctgcgacttctttatcgagctcggcgattttttgttccattatcgaacgacaatgggcagccagctcacgaacctgatctttgccatactgactgacgtcaattggcggcagcatttcgacaatcaccagaccgttgtgcagtcgattaagattaatcttattcgaagttgtagagacgcacacgggaataatcgggacgcccgccgcaattgccgcgtgaaatgctccagtcttgaacggtagcaggccgcgaccacggctgcgggttccttccgggaacatccagatggaaatacggcgttttttgaagtgattcactacttccgcaatggtgccgtgagctttagtgcgattgtttctgtcgatcaataagttgccggttaaccagtacaactgcccgaagaaggggatccacagcaagctctttttacctaccgtcaccgtcggcggttgcacgatgttcgatgctgtcaccatgtcatagttgttctggtggttagcgatatagatagcattgccgtagctttcagcgtctgtaggtttacggcactcaactttcaggccaaacagcggcgcaagacggccaaacatatgcccaaaggtggccacatgtttcgggttacgcgggctgaaaaggcagtaaatggagccgaatacacagactaagatgctgtaaatcacggtaataataagacgaaagatatatagcataacaccctctgaaggtctgagagactggcattgtacgtcacctgaaatcaggttagggcattgttaaaagccgctctctggaaaagcgtattgttaatcgcaacgcatgaataaacaacggtttcaagggaatttttatcgtttccgggggttgaatacgctgccggatgacgacttaacgtttcatccggcgttccttgcaagcgggaggaaacagcgccctccccggcatattactcttcgctatcaccgctgctggcacggcgaggagagtcgatctcaacacgatcgatacgctgcaaaccgcgcatcaacgtaccgcggcgtccacgttcgccagtgactttctgtaactcttccgggcgcagtttaattttgcgtttcccaacatgaatggtcagcgtgctttgcggcggcagaacgtacaattgcgccagaccatcttctccacgcgcggcttctgccgatggaatgttgataatcttgttgcctttgcccttcgacagctgcggcagatcacttaccgggaacatcaacatacggcctgcctgagtgattgccagcagcatatcggaagcatcttcaatcaccaccggcggcataacatgggcattttccggtaaggtgatcaaagccttacctgcacggttacgcgccaccagatcgttaaaggtgcagacgaaaccgtaacccgcatcggaagccatcagcagtttctgatcgtcgctttccatcagcatatggtcaacggtcgccccaggcggcaacgttaatttgccggtgagcggctcgccctgaccacgcgccgacggcagcgtaatcgggtcaatggcatagctacgaccggtggaatcaacaaacactaccggttggttgctcttacctttcaccgccgctttgaagctatcacccgctttataattcaggcccggcgcgtcgatatcatggcctttagcgctgcgtacccagcccatctgcgacagcacaatggtgacaggttcagacggcagcatgtcgtgctcgctcatcgctttcgcttcttcgcgttcctgcaacggcgaacgacgatcgtcaccgtaggcttgcgcgtctgcctgcagttctttcttcagcaggttattcattttacgctcggaagccaaaatgccctgcaactggtcgcgctctttttccagttcactctgctcaccgcgaatcttcatctcttccagtttggcaagatgacgcagtttcagttcgaggatcgcttccgcctgggtttccgtaaggccaaaccgcgacatcagcgccggtttcggttcatcttcattacgaatgatctcaatcacttcgtcgatattgagaaacgccaccagcaaaccttcgaggatatgcaggcgcttgaggactttctccagacgatagttcagtcggcggcgcacggtatcgcggcggaacaccagccattcggagaggatttccagcaggtttttcaccgccggacgaccatccagaccgatcatattaaggttaatacgatagctcttttccagatcggtggtagcgaagaggtggttcatcacctgatccatatccacgcggttggaacgcggcacaatcaccaggcgggtcgggttctcgtggtcagattcatcgcgcagatcgtcaaccatcggcagctttttgttgcgcatttgcgcagcaatttgctccagtacgcgcgcacctgaaacctgatgcggcaatgcgctgataaccaccgcgccatcttctttcttccacaccgcgcgcatacgcactgaaccacgtccgttctcgtagattttacggatctcggcgcgcgaagtgataatttccgcttcagtcggataatccggcccctgcacgatatccagcagctgatcgagcgtggttttcggctggtcgattaatgcgattgccgcctgagccacttcacgcaggttatgcggtggaatatcggtcgccatgccgacggcaataccggtggtgccgttaagcaaaatgtttggcagacgggcaggtagcattttcggctcctgcaaagtgccgtcgaagtttggcacccagtcagccgtcccctgccccagctcgctcaatagcagctcggaatatttcgacaaccgggattcggtgtaacgcattgccgcgaacgatttcggatcgtccggcgcgccccagttcccctgaccatcaaccagcggataacggtaagagaacggttgcgccatcaggaccatcgcttcataacaggcgctatcgccgtgcggatggtatttacccagtacgtcaccgacggtacgggccgattttttaaatttggcgctggcattcaggcccagttcagacatcgcatacacaatgcggcgctgaacaggtttcagaccatcaccaataaacggcaacgcacggtccatgatcacgtacatggagtagtttaagtaggcgttttccgtaaattcatgtagcgcaaggcgctctgccatatcgctcattaattctgattcctcaacttattcgccagccttcaaaggggcaatattgccggagatactacattatctgccgcgtcgagtcacaggagatcaacgtgaatagcgccgccggacgtgctccgacggcgataaaggcatcaatgtgccttgatatacaactctttgctgtagacataatcctggggattatgcagcggaaaaccgccaacgtagggtttaagcagtttgattaacggctgatagtagataggaatcagcggtgcctgttggttgatgatcacttctgcctgctgatacaacgcattacgctttgtcgcatcagtgatctgcgtggcctggtttagtaaggcgtcatactgcgcatttttccagtgaccgacgttttcttcactatcgcttttgagcgtgttcaggaagctggaagcatcattgtacgtcgcatcccacgactgccgagacagcatgaaatcaccggctcgtcgggcatcaagataggttttccactccattgtgcgcagcgtcacctgtgcacccagccattttttccattcggaagacaacgctatcgcggtcttttcatgcagatcgtacttgttgtagaacagctcaaagcgtagcggatgagaggcgtcgtatcccgcctgtttcagcaaggcttttgccatcgcgacgcgctcactcattggcttttgcagttcatcgaacgtcgtcgcgctaaagccttttacctctggcggcgtcagcgtggttgcgggcgttctcaaccccagtaccttttgcgcaataagctgtcgatcaaccgtaagatatagcgcccgacgcactcgcacatcgttaaatggcggtttctcaaggttgaagttgtaatattcgctgttcagacgcggaataattcgtagctcgccaggcagtgatttttcaatggcgggaatttgctgcgccggaacccaggtgagatcgacctctcccgcgcgatagcggttatagccggtgaccgaattatctagcgccagatactcaacctgttgcaatactgtatgttgcgcatcgcggtactttggatttttgcgtgcagtaatcttttcgttaactacccactgatcaagcacaaaggcaccgttgtaaaccatgttctctggcttactccagctatcgccatgtttagcgatgacatgatgaggaaccgggaacagcgtcggccaggcgagcatcgtcgtgaaccaaggaaccggctgctcaagcgtaacttcaagagtacgatcatccgtcgctttgacacccagcgatgtaacatctgctttacccgcaacaatagctgcggcattgttaatgtgcgcctgtgccagatagccagcaaaagggcttgccgttttcgggtcaaccgcgcgctgccagccgaggacaaaatcctctgccgtcagaggctgaccgtcggaccactgcaaaccgctacgcagatggaaaatatagcgcttgccgccgtccagtatctcccagcgttcagcctgagcgggctgcacctggccttcaccgtccatccataccagaccttcaaacagatccagcacaatctgcgcggcagtattctcctccaccttttgcgggtcgagcgtacctgggtcgctatgattgttgtaacgaaagacttgttgcggggcgagcggtgtgttggcgggaacgtcagcagcgtagagaggagccgcacttaccaggctgaccagccataataaatttcgcgtatacatggtattccttaccggagaaattataagcccaacaacaatacgcctgtggcattgttcgctcaaacttatcgcgagtgatttggctcacactccggtaaagaaaaaagcgagttgcccccgcttttccattaattaacggatttcattcaatagttctggatgcttatccagaacacgtaaaagtttgattgtggaaggatgaggttgggcattgcctttttcgtaacgcgaaaacgcatttacacctcccccaaaaatttcgcttgcctctttttgggtaagagagagcttttttcgaaccttcactataaattcaggtgccactgtttcggcattcaccgaagcccgaaatgcctttacttgcgccatgaaagcatctgactcttctttattcatgatgctctcttcgcaatggacacaatataaaccgtggatacctttcaatactgtttttcgtccacggaaggtgtatggaatatctttaatgccagaaaccatttctccctggtggcaaaccggacatttcatattacttctccttaaacgagacgatcagtacgtcatgaattaccgtaattttaagataaacctggcctgtaacaagcctgggtctgtaaacatcctgccagatagtatgatcagagtaggtggtcatgcttttataaaagtcgctctctgataatccaatgataacattacacataccatcaaaatccaaacctaactcatctgcatttaacagggcactacgtgttgtacgaacttgcccggcattgacaagttttttaacctgactcaaacgtgtatgtggtgtgcgtttttccataacccccgcctccctgttactttagttataacctaaaaggttaattacagcaatgaaaaagcacctaaaaggttagttagatgtacggagatagtgaccacacaaaacgtattctttaaggaaagtgattgaccatataagaaagtggcgcattagtagcgccagtttgaagcaggaatttataagggaagctggagtcaggcatcacgccaacggcacataaacatccgtttccagtcgctgctctgtcaccccttcggcaagattggtgtagtgaaacagaatcggtgctttacgcattttctcgccgcttgcaggcagccagtggcgaatgatgccccataccgtgtgtgaaatatcgtccagctcgccaagctggcgggccacggcataacgtccaccggtaagttcaccattgctcacaccataacgattatcgggaatcggttcgctaacgctgccgcagatatcaaagcgaaacgcttccggtgcggtggtggcagggtcgtcccaggcgacgccaaaagtctggctttggttaacaggagaaagccccgtctctttacgccacatgataaatttcgccacgctgtagttgagcaattcagggctacagcggtgcggcaacatcgccacaggtattgatgggaaatcgataatgtttacatccagtgtcaggtttgtcattttgcctccctgcgaaattattcccgggaacgcgtcccgggagcggtaacaattacggatttactttgcggatctgtttgacgtcaatttcaacagaattccagtctttatcgacttcaccctgaatctcaaccgtatctttcggcgtcaccgtcacgccgttccagcgtttgtggtcgatatcaacattgatagtaccgctggcatctttgaacacgtagagatcgtcagagatgcgttcaacgatattgccgcgcagggttacccaggtgtcgtcacgcagggattttgcgctttctacagtcgttacgctgccgttcggcccctggaatcctccggcctgactttgcgttgccgatgggccagaaaaaccgccctgctctgctgccatcaccggtgcgctgcacagggccattactgcgattactgctgcgaattttttcatgtttattactccctttaatgtctgtttccgagcatttaacaagatagtccttaacaacttcttaagggaaaaaaataaaatttagtgctgtacagagcgcgttacaacacggtttactggcagcaaatacggttatcgcagggatgaaaaaatgcgaattttactgatagaagatgacatgctgattggcgacggcatcaaaacgggccttagtaaaatgggttttagcgtcgactggtttacacaaggtcgtcagggaaaagaggcgctttatagcgcaccttatgatgcggtgatcctggatttaaccttaccaggcatggatggtcgcgatattttgcgcgaatggcgagaaaaaggtcagcgtgagccggtactgatcctgaccgcgcgcgatgcgctggcggaacgtgtagaagggctgcgtctgggagctgacgattatctgtgtaaaccttttgcgttgatagaagtcgccgccaggctggaagctctgatgcgccgaaccaacggccaggccagcaacgagctgcgccacggtaacgtcatgctcgaccccggcaaacgtatcgccacgctggctggcgaacccttaacactgaaaccaaaagaatttgccctgctggaattactgatgcgtaacgctggtcgggtactgtcgcgcaaactgattgaagagaaactgtatacctgggacgaagaggtcaccagtaatgccgttgaagtgcatgtgcatcatctgcgacgcaaactcggtagtgattttattcgtaccgtgcatggtattggttacacattaggtgagaaatgaaatttacccaacgtcttagtctgcgcgtcaggctgacgctaatctttttaattctggcctcggtgacctggctgctttccagctttgtcgcctggaaacaaacaacggataacgtcgatgaattgttcgacacccaactgatgctgtttgccaagcggttaagtacgctcgatctcaacgaaatcaacgcggcggatcgcatggcacagacgccaaatagattaaaacacggtcatgttgatgacgatgcgctgacctttgccatctttacccacgacggcagaatggtccttaatgatggcgataacggagaagatattccctatagctatcaacgggaaggttttgctgacgggcaactggtcggtgaagacgatccttggcgttttgtctggatgacctcacctgatggcaaatatcgcatcgttgttggccaggaatgggaataccgtgaagacatggcgctggcgattgttgccgggcaattgatcccgtggctggtcgcactgccgattatgttaatcatcatgatggtactactgggtcgtgaactcgcgccgctgaacaaactggcgctggcactacgtatgcgtgaccctgactcggaaaaaccactaaacgcgactggcgtacccagcgaagtgcggccactggttgagtcgctaaatcaactgttcgcccgcacacatgcgatgatggttcgtgaacgacgctttacctccgacgcagctcacgaacttcgtagcccgttaacggcgctgaaagtgcaaaccgaagttgcgcagctctctgacgatgatccgcaggcgcggaaaaaagcactgctccaattacattccgggatcgatcgcgctactcgtctggttgatcaactgctcacgctatcgcggctggactcactggataaccttcaggacgtcgcggagatcccgcttgaagatctcctgcaatcgtcggtgatggatatttaccacacggcgcagcaggcgaaaattgacgtgcgactgacactcaatgcccacagcatcaaacgcaccgggcaaccgctattgctaagtttgttggtgcgaaatttgctggataacgccgtgcgctacagtccacagggcagcgtggtagacgtcacgctgaatgctgataatttcatcgtgagggataacggccccggtgtgacaccagaggcactggcgcgaattggcgaacgcttctatcgcccacccggacaaaccgctaccggcagcgggcttgggctatcgattgtccagcgaatcgccaaattgcatggcatgaatgttgaatttgggaatgcggaacaaggtggatttgaggcgaaggtaagctggtaacttctctgtctatgagagccgttaaaacgactctcatagattttactaatagcaaaatataaaccgtccccaaaaaagccaccaaccacaaaccagacaaataccgagcgagaatacatatacccaaaactcgaacatttcccgcataaagagttttcttaagataagaataataagtggcgtaagaagaaaaaatgctgcaatcattgcttgcaatatacgatcttcgcctgaaacggaaggtatactgcaaatatttcctcccgactcaagcatccagtcatacttattgaaagcaaaaaaagaatctattaaccaataagtaagcattatatatagcaatgcttcaaatattgttttaattttctgctttaacatatatcagtacgctcataaaaatccatttataattatcaacatgacacgttgatacttttcatcttttacttattcaaagccatattttcaatccccaaaaaaaccgaaccaaacgtgtaaattattccggtgcgagtaagaattatgaggaatggctatcagtattgtcattttcagaaaatatttatcctgcatcggtgagtcagagtaagatcagacttttgctaaattcgcaaaagactttgcacattttgctaatttcaccgtaccgctctgtgacgtactatagtcggcaaacgtctcaccttgaggttaaaaaatgagcaacatcctgattatcaacggcgcgaaaaaattcgcccactccaatggtcaactgaacgacaccctgaccgaagtcgcggatggcacactgcgcgaccttgggcatgatgtccgcatcgttcgcgccgacagcgactacgatgtcaaagcggaagtacaaaactttctctgggctgatgtggtgatctggcagatgccaggctggtggatgggcgcgccgtggacagtgaaaaaatacattgatgatgtattcaccgaaggtcacgggacgctgtatgccagcgatggtcgtacccgcaaagatccgtcgaaaaaatacggttccggcggcctggtacagggcaaaaaatatatgctttctctgacctggaacgcaccaatggaagccttcaccgaaaaagatcagttcttccacggcgttggcgttgacggtgtgtatctgccgttccataaagcaaaccaattcctcggtatggaaccgctgccgacatttatcgctaatgacgtgataaaaatgcctgatgttccccgctatactgaagaatatcgcaagcatcttgtggaaatttttggttaactagagctcaggctttagaaggagttaaccatgcttaccgtaatcgcagaaatccgtactcgtcctggtcaacatcaccgtcaggcggtattggatcagtttgctaaaatcgttccaaccgtactgaaagaagaaggttgccacggctatgcgccaatggtggattgcgcagctggcgtgagtttccagtctatggcaccggattctatcgtgatgattgagcagtgggaaagcatcgcgcatcttgaagcgcatctgcaaaccccgcacatgaaggcgtatagcgaagccgtaaaaggtgacgtgctggagatgaatatccgtattctgcagccagggatttaatcctgccttgtttgcccggccatcctgaccgggcaatgttctttcctttaaacctcaatctccgccatgtcgcctttctcttgcaaccagttgcggcgatcttccgagcgtttcttcgccagcagcatatccatcatcgcgtcagtacgctgatcgtcttcatcatcgatagtcaactgcaccagacggcgagtgttcggatcaagcgtggtttcgcgcaattgcatcgggttcatttcccccagacctttaaaacgctggacgttcggcttgcctttcttgcgttttaattgctcaagtacgccctctttctcttcttccgtcagcgcgtaataaacctctttcccgagatcaatacggtagagcggtggcagtgcgacgtaaacgtgaccgtgtttcaccaacgcgcggaaatgttttacgaacaaagcgcagagcagcgtggcaatgtgcagaccatcagagtccgcatccgcgaggatacagattttgccataacgaagctggctcagatcgtcgctgtcaggatcgataccgatcgctaccgaaatatcgtgcacttcctgcgaagccagcacttcgtcggaagagacttcccaggtgttaaggatcttacctttcagtggcatgatcgcctgatattcgcgatcgcgcgcctgcttggcagatccgcctgcggagtcaccttccacaaggaacagctcggtacggttaaggtcctgcgcggtacaatcagccagtttgccaggcaacgccgggccgctggtcagctttttacgcaccacttttttggccgcacgcatacggcgctgggcgctggaaatcgccatctccgccagcagttcagccgcctgaacgttctggttcagccacaggataaaggcatctttcaccacgccagaaacgaatgccgcgcattgacgcgaagagagacgctctttcgtctgcccggcaaactgcggatcctgcatttttactgacagcacataggcgcagcgatcccagatatcttccgccgacagctttacaccgcgcggcagaatattgcggtattcacagaactcacgcatcgcgtccaacaggccctgacgcagaccattaacatgggtaccgccctgcatcgttgggataaggttgacgtagctttcggtcagcagttcaccgccttccggcagccacagtagcgcccagtccacagcttcagtatcaccagcgaaattaccgataaacggtttttccggcagcgtcggcagaccatttaccgcttccgccaggtaatcattcagaccgtcctgatagcaccagcgttgttcggtattgttgatctcatctttaaaagtgatctcaacgccagggcacaataccgctttggctttcagcacatgcgtcaggcgtgaaacagaaaatcgcgggctgtcaaagaaggtttcatccggccagaagtgcacactggtaccagtattgcgtttaccgcaagtgccgacaacctgtaaatcctgcaccttttcgccattttcaaaggcgatgttataaacctgaccatcgcggcgcacgttaacttctacgcgcttcgacagggcgttaaccaccgaaatccccacgccatgcaggccgccagagaactggtaatttttgttagagaatttaccgcctgcatgcagacggcaaagaatcagttcaaccgccggtacaccctcttccgggtgaatatccaccggcatcccgcgcccatcgtcaataacttctaacgactggtcagcatgtaaaataacgtccacgcgttttgcgtgacccgccagtgcttcatccacactgttatcaatgacttcttgccccaaatggttagggcgagtggtatcggtatacatccccggacggcggcgaaccggctcaagcccggtgagtacctcaatggcatcagcgttataagtttgcgtcatggtttaagttagtaattcgagttgatcgtcagagatggtgcagaccaagaaaatcgacgatcgggttgaaataatcttcgaagcccgtgaatgcgtggttgccgccttctatgacagtctggcggcaggaagcgtagtacgccaccgcctggcggtaatccagcacttcatctcccgtctgttgcagcagccagatcaaatccggcgcttccagcgggtcaatctgcatgactttaagatcgtaaatatggcgtgactctagcacatattgctgcccggtgtaggggttctcgttctgaccgagatagtccgtcagcagttcaaacgggcgcaccgccgggtttaccaccactgcgggcagcataaaacattgtgacaaccaggtggcgtaatatccccccagtgacgaaccgacaatacccagcgaatcaccgccatgttccaggacaatggattccagcagctctgccgcgtcggaaggatacggcggcaactgcggaatgatcatctcaacgtcagggtgatgttccgccagccagttttttaacaagctcgcttttgcagagcgcggcgagctgttgaaaccgtgtaaataaagaagcgtagacatcagtagccttctgaagcggtatcaggttggaaacgtgtgtccgccaggcgatgcacctcggtggtcagcgtgccatcagcatgtaactcgagagtacgccagccgggcgcgatggtatccagcgtaaagttggaacagtgcggcttaaactgcacacaggtcgacggcgttgccagcaggcggcgaccattccagtcgagatccagctcctgatgaatatgaccgcacagcaagtatttgacgtgcggaaacttcgccagcacggtatccagttcgcccgcgttacgcagactgtgttgatcgagccaactacaacccgcaggtagcggatgatgatgcagcagcagcaacgtatggcgttctggcgcatcggccagtttacgttccagccactcaagctgaaactcgctcagctcaccgtgcggcacgccaaacacctggctatccagcaacaggatttgccattgctcaccaataaacacgcgcttcgccggggagatacccgcatcctgtaacgcgctgtacatcgcgggctggaaatcgtggttgcccggcagccagacgcagggcgcacgaaaacttgcgatgccttcagcgaaatgctgataggccgcagaggattgatcctgcgctaaatcacctgtcgcgacaatcaggtcgaattcgtgctggtgtggccgaatcgcctccagcaccgcctggtaactctcccaggtgtttacccctaacagggcttcgtgcttttgtgcaaacaggtgagtgtcggtaatttgtaaaatcctgactctggcctcaccagccagaggaagggttaacaggctttccaaatggtgtccttaggtttcacgacgctaataaaccggaatcgccatcgctccatgtgctaaacagtatcgcaaccagtccgctaaaaactgattaatttgatgcttttcgtcgcgttgatgcaactttttattaggataatcataccgcgctttgaagcgaaaaatctgctggcttgaacacacttcagccaccatcgcgtcatgatacagacgcaccgtcattgacggaaggctccagtaactgatcgcgggcgcagtctgttctattgtcaccagggtagtgtatcgggtcgattccacaatcgtcagccgatattgtgcgtttgccacctgatagcttacagtttcgccgggtgcgtcattgcgcggtaacaaacggcgcaattgtgaaaagttcatctcgcacaggcgcatcatttcaggaaagtcaggtgtgtaacgcttcatttatgcccactcattttttaacgcttgatgatgcagctgcagccattgcaaagcgatgaccgacgctgcgttgtcgattttcccctcttctacccactggtatgcctgttcccggcttaccacatgaacgcgaatatcttcgttttcatcagccagaccgtgaataccgcttgcggtcgtggcgtccacttcgcccaccataattgacgaacgctcactggtgccccccgggcttgccaggaaacttaacaccggtttggtccgtttgactatcagtcccgcctcttcaatcgcttcgcgacgggcaacatcttccacactttcaccctcttcaatcatcccggcaaccatctccagtagccaaggggtttcgctggtgtcgtacgcggcaatccgaatctgctcaatcagcacaacttcatcacgcactgggtcaaagggtagcaagactgcggcgtgaccgcgctcaaaaatttcccgccgcacctcatgactcatttgcccgttgaatagacgatgacgaaatctataaagatctaatgaaaaaaagccgcgataaagtgtttctcgtgcaataatttctacatcgtttttgccaaatgtaacgggcaggttgtctggcttaagcattgttaatgtcctggcactaatagtgaattaaatgtgaatttcagcgacgtttgactgccgtttgagcagtcatgtgttaaattgaggcacattaacgccctatggcacgtaacgccaaccttttgcggtagcggcttctgctagaatccgcaataattttacagtttgatcgcgctaaatactgcttcaccacaaggaatgcaaatgaagaaattgctccccattcttatcggcctgagcctttctgggttcagttcgttgagccaggccgagaacctgatgcaagtttatcagcaagcacgccttagtaacccggaattgcgtaagtctgccgccgatcgtgatgctgcctttgaaaaaattaatgaagcgcgcagtccattactgccacagctaggtttaggtgcagattacacctatagcaacggctaccgcgacgcgaacggcatcaactctaacgcgaccagtgcgtccttgcagttaactcaatccatttttgatatgtcgaaatggcgtgcgttaacgctgcaggaaaaagcagcagggattcaggacgtcacgtatcagaccgatcagcaaaccttgatcctcaacaccgcgaccgcttatttcaacgtgttgaatgctattgacgttctttcctatacacaggcacaaaaagaagcgatctaccgtcaattagatcaaaccacccaacgttttaacgtgggcctggtagcgatcaccgacgtgcagaacgcccgcgcacagtacgataccgtgctggcgaacgaagtgaccgcacgtaataaccttgataacgcggtagagcagctgcgccagatcaccggtaactactatccggaactggctgcgctgaatgtcgaaaactttaaaaccgacaaaccacagccggttaacgcgctgctgaaagaagccgaaaaacgcaacctgtcgctgttacaggcacgcttgagccaggacctggcgcgcgagcaaattcgccaggcgcaggatggtcacttaccgactctggatttaacggcttctaccgggatttctgacacctcttatagcggttcgaaaacccgtggtgccgctggtacccagtatgacgatagcaatatgggccagaacaaagttggcctgagcttctcgctgccgatttatcagggcggaatggttaactcgcaggtgaaacaggcacagtacaactttgtcggtgccagcgagcaactggaaagtgcccatcgtagcgtcgtgcagaccgtgcgttcctccttcaacaacattaatgcatctatcagtagcattaacgcctacaaacaagccgtagtttccgctcaaagctcattagacgcgatggaagcgggctactcggtcggtacgcgtaccattgttgatgtgttggatgcgaccaccacgttgtacaacgccaagcaagagctggcgaatgcgcgttataactacctgattaatcagctgaatattaagtcagctctgggtacgttgaacgagcaggatctgctggcactgaacaatgcgctgagcaaaccggtttccactaatccggaaaacgttgcaccgcaaacgccggaacagaatgctattgctgatggttatgcgcctgatagcccggcaccagtcgttcagcaaacatccgcacgcactaccaccagtaacggtcataaccctttccgtaactgatgacgacgacggggcttcggccccgtctgaacgtaaggcaacgtaaagatacgggttatctgccgcattcttcccccttctcgcttcaatttcgaccagccatcctctattctgatgggtatttaccactggtcccggaagacaaaaatgaaacggacaaaatccatacgccacgcatcgttccgcaaaaactggagcgcacgccatctgacaccagtcgctctcgcggttgccactgtttttatgctggctggctgtgaaaagagtgatgaaacagtgtctctctatcaaaatgctgacgactgttcagctgcaaacccaggcaaaagcgccgaatgtaccaccgcgtacaacaatgcgctgaaagaagccgaacgtactgcgccgaaatacgccacccgtgaagactgtgttgctgaatttggtgaaggtcagtgccagcaggcaccagcccaggctggcatggcaccagaaaaccaggcgcaggcccagcaatccagcgggagtttctggatgccgctgatggccggttacatgatggggcgtctgatgggcggcggcgcgggatttgcacagcagccgctgttctcctcgaaaaacccagccagtccggcttacggtaaatataccgacgcgacgggtaaaaactatggcgcagcccagccaggccgcaccatgaccgtaccgaagacggcaatggcaccaaaaccggcgaccaccactaccgttacccgtggcggttttggtgaatctgttgccaaacaaagcactatgcagcgtagtgcaaccggtacctcttctcgttcaatgggtggctgataccgatggaaagagtcagtattaccgagcgcccggactggcgtgagaaagcccacgaatacggtttcaattttcacaccatgtacggcgagccgtactggtgtgaagatgcttactacaagttgaccctcgcccaggttgaaaagctggaagaagtcaccgccgaactgcaccagatgtgcctgaaagtggtggaaaaagtgatcgccagcgatgagctgatgaccaaattccgcattccaaaacacacctggagttttgtgcgccagtcatggctgacgcaccagccatcgctttattcgcgtcttgatctggcgtgggatggcactggtgaacctaaacttctggaaaataacgccgatacgccaacgtcactatacgaggcggcgttctttcagtggatctggctggaagatcagcttaacgccggtaacttgccggagggcagcgaccagtttaacagtctgcaagaaaaactgatcgatcgcttcgttgagctgcgtgaacagtatggcttccagttgctgcatctcacctgctgtcgcgacacggtggaagatcgcggaaccattcagtatttgcaggactgcgcaacggaagctgaaattgctactgagttcctctacatcgatgatatcgggttaggtgaaaaaggtcagttcacggatttacaggatcaggtaatttccaacctgttcaaactgtatccgtgggaatttatgttgcgtgagatgttctcaaccaagctggaggatgcaggcgtacgctggctggaaccggcgtggaagagcattatctccaacaaggcacttctaccgctactgtgggagatgttcccgaatcacccgaacctgctgcccgcttattttgcggaagatgatcatccgcaaatggaaaaatatgtggttaaaccgatcttctcccgtgaaggcgcaaacgtgtcgatcattgagaacggcaaaaccattgaagcagcggaaggtccgtatggcgaagaagggatgattgttcagcaattccacccgttaccgaaattcggcgacagctatatgctgattggtagctggctggtgaacgatcaacccgccggaattggcattcgtgaagaccgtgcattgatcacccaggatatgtctcggttttatccacatatttttgttgaataagccacgataccggatggcactcgccatccggtaattgttagcctatctgcaccgacagcatactcaggctgcccatttctataccctcaaccggaatggtaattggctcctgcccatcccacgcacctaacacatacaacaacggcaaataatgctctggcgttgggttcgataacgtgccaccttcatggtcgaggtaattcaccagaggatgttgttccactggcccttgccacgtcagattcgctttcacatactcattaaacgacgtcgcccacggatacggtgaactatcaccgtgccacttcactgtgcgcaggttatgcaccacgttaccgctggcgaccaacattattccttcatctcgcagcgctgccagtttgcgccccatttcgaaatgccaggcggcaggtttgctactgtcgatactcaactgcaccatcgggatatcagcgtcaggatacatcttaatcagcacgccccacgagccgtggtcaaagccccaggcttctttatccagcgtcaccgggatcggcgctaacagctcaaccagacgctgtgccagcgcaggcgaacccggagcaggataatgcgtatcgtacagcgcctgcgggaagccaccaaagtcatgaatcgtgggcggcgtctccatcgcggtcactcctgttccacgggtaaaccagtgagccgaaaccaccacaatcgcttgcgggcgtggcaatgtcatccccaacttctgccagctgcgggtatacaaattatcttccagcacgttcatcggactaccgtgacctaaaaacaatgctggcatacgtgttgaagacatgatgatatccttaactaaaggtgtcattttgatatcctcacaatacgcttgttcggcggagtaagaacccggataacaatgatgatgatcatcagttattttgacgatctgcctgaaggtgaagatttataaggagttgtcgatgtcagtacctctcattctgaccatactggcgggggcagccacgtttattggcgcgtttctcggcgttctcgggcaaaaaccctcgaaccgcttactggcgttttcgctaggttttgcggcggggatcatgttgctcatctcattaatggaaatgcttcctgccgcactagcagctgaaggaatgtcgcctgtgttgggttatggaatgtttatcttcggtctgcttggctattttggcctggaccgcatgttgccacatgctcatccgcaggatttaatgcaaaaatcggtgcagccgttgccaaaatcgatcaagcgcacagccattctgctcactctcggcatcagtctgcataacttcccggaagggattgccacctttgtcacggcgagcagcaacctggagctgggatttggcatcgcactggccgtcgcgttgcacaatatccctgaaggtctggcagtggcaggcccggtttatgcggcaacggggtctaaacgcaccgcgattctgtgggcggggatttctggactagcagaaattcttggtggtgtgctggcgtggttaatcctcggtagcatgatttccccggtggtcatggcggcaatcatggcggcggttgcaggaattatggtggcgctctcggttgatgaattaatgccgctcgccaaagagattgaccctaataataaccccagctatggcgtactatgtggaatgtcagtgatgggattcagtttagtgctgctacaaacggcgggaattggttaaaaacaacatcagaagttgtccagcgcatggacaacttctgccagcttcacgaaagccttattctaccttttcggctgtctcttctctcgtactgtttaagtatttgttccgcgcttcaagcagtgcgtctctgtcctggcgaaacgcccgacaataacgtttcaaatgcaggaaataacccaccacaaccagagcaatcaatacaatccagtaccaggcgataaacatccttttacccttaatatttaacaatactaaacatttagcgtataaatttcacatatcctttttcggatatattcatatggtcgcataataacggaacaattatatgattttgatcataatgaaaaagaatgcctgatattaatgaaattttctcatagaaagagaagcggaattaacatcttgcatagcagggaaaaataaaaaccgaagcctgctacaacttcggtttcttgattaaggcagtaaattaagcagcggttttcagctggctttacgctcatgtgcctgacggtatgccaccaggtcttcaatagtcacgagcgccatattgtgtttattggcaaactcaatacactctggtgcacgcgccatcgtgccatcgtcattagtcagctcacacagtacaccagccggtttaaagcctgccagcgtcatcagatcaatagttgcttcagtatgaccgccacgcgtcagtacaccacctgcctgagcgcgaagtgggaaaacgtggccaggacgattcagatctgacggttttgcgccatcggcaatcgctgcgcgaacggtcgtaatacggtcagcggcagaaacaccggtagtcacaccttcagctgcttcaatggtcacggtaaaaccggtgccataggcgctggtgttattttctaccatcattggcagatcgagttgtttacggcgatcttcagtaatgcacaggcaaacaataccgctaccgtggcgaatggtcagcgccatctgctcaacagtcatggtttctgccgggaagatcatatcaccttcgttttcacggtcttcatcatcaagcaccattacaccgcgtccttcacgcagcgcagccagtgcattttcaacacgttcgaaaggcgtaccaaaagaggaaagtagcgtctgattcatggtaaaaaaacctcactaaaattatggttaccagaatcagggcagtcttaggagtggcggcatatagccaaaataacgtgagcgggtccatgcccgacagaatcgttactctctcccatccggactctaaccgtcggccccggaattacaccggatctgctgtcctttgagttcgcacccaaagcgctcgcgggctttcaactgagttgatttaccgccggtggggaatttcgccccgccctgagaataagcggattcactataacgctaatgattagcggcagcaacgcatagcttcacataattctggtttatgacttacccttatcgcactacaatggcactcaacacctatcagtacagggaaactacaatgattgacccgaaaaaaattgagcaaatcgctcgccaggttcacgaatcaatgcctaaaggaatcagggagttcggggaagatgtggagaaaaaaatccgccaaaccctacaagcgcagctgacgcgcctcgaccttgtaagccgtgaagagttcgacgtccaaacgcaagtcctgttacggactcgtgaaaaactggcgctgcttgaacaaagaatcagcgaactggaaaatcgcagtactgagatcaaaaagcagccagatccagagactctccccccaacgctgtaaacattcgtctttaatgcactgtaaattatgaattaatcctctaatttatagtgctttctattaccttatcgcgtaatcccattcagaaaaccatcacaaaaatgaatgagtacaattgaaagtataattgcaatgtattttttaagttttacttaatcgatatttagataaactaattttataaaaaacacaaaataaaatatcatatttcaatgattagtagtccttaaataacagttactaatcattctcttttctacttatctttatataaaggaatattatgtccgcttttaaaaagtcacttcttgttgctggcgtagcaatgattctttccaataacgtgtttgctgatgaaggtcacggtattgttaaatttaaaggtgaagttatctctgctccatgttctattaaaccaggtgacgaagatttaactgtaaatctgggtgaagtagcagataccgtactgaaaagcgatcagaaatctttggctgaacctttcactattcacctgcaggactgcatgctgagtcagggtggaactacttattcaaaagcgaaggttactttcactacagcaaataccatgacgggtcagtctgatcttctgaaaaataccaaagaaactgaaatcggcggcgccactggcgttggcgtacgtattctggacagccagagcggcgaagtaactttaggtactccggtagtaattacgttcaacaataccaacagctatcaggaactgaatttcaaagctcgtatggaatccccaagcaaagatgccaccccgggcaacgtttacgctcaggctgactacaagattgcttacgagtaatcgcatttggccgggttcgcccggccacatcattaacggattaatgataagtggatcagatgtataaaaaattaaaattaaccacaataagcgaattgattaaaaatatttattgttcattatccgttattagactggccccctgaatctccagacaaccaatatcacttaaataagtgatagtcttaatactagtttttagactagtcattggagaacagatgattgatgtcttagggccggagaaacgcagacggcgtaccacacaggaaaagatcgcaattgttcagcagagctttgaaccggggatgacggtctccctcgttgcccggcaacatggtgtagcagccagccagttatttctctggcgtaagcaataccaggaaggaagtcttactgctgtcgccgccggagaacaggttgttcctgcctctgaacttgctgccgccatgaagcagattaaagaactccagcgcctgctcggcaagaaaacgatggaaaatgaactcctcaaagaagccgttgaatatggacgggcaaaaaagtggatagcgcacgcgcccttattgcccggggatggggagtaagcttagtcagccgttgtctccgggtgtcgcgtgcgcagttgcacgtcattctcagacgaaccgatgactggatggatggccgccgcagtcgtcacactgatgatacggatgtgcttctccgtatacaccatgttatcggagagctgccaacgtatggttatcgtcgggtatgggcgctgcttcgcagacaggcagaacttgatggtatgcctgcgatcaatgccaaacgtgtttaccggatcatgcgccagaatgcgctgttgcttgagcgaaaacctgctgtaccgccatcgaaacgggcacatacaggcagagtggccgtgaaagaaagcaatcagcgatggtgctctgacgggttcgagttctgctgtgataacggagagagactgcgtgtcacgttcgcgctggactgctgtgatcgtgaggcactgcactgggcggtcactaccggcggcttcaacagtgaaacagtacaggacgtcatgctgggagcggtggaacgccgcttcggcaacgatcttccgtcgtctccagtggagtggctgacggataatggttcatgctaccgggctaatgaaacacgccagttcgcccggatgttgggacttgaaccgaagaacacggcggtgcggagtccggagagtaacggaatagcagagagcttcgtgaaaacgataaagcgtgactacatcagtatcatgcccaaaccagacgggttaacggcagcaaagaaccttgcagaggcgttcgagcattataacgaatggcatccgcatagtgcgctgggttatcgctcgccacgggaatatctgcggcagcgggcttgtaatgggttaagtgataacagatgtttggaaatataggggcaaatccagttatcatcattggttgtgcgtcagcttatgccgttgaattcaacaaagatttaatcgaagccgaagatcgtgaaaacgttaacctttcccaatttgaaactgatggccaattacccgtcggcaaatattcactaagcactctgattaataataagaggacgccaatccaccttgacctccaatgggtattaattgataaccaaactgcagtttgcgtgacaccagagcaattaacattattaggatttactgatgaatttattgaaaaaactcagcaaaacctgatcgatggttgttaccctatcgaaaaagaaaaacaaattacaacttatttcgataaagggaaaatgcaattatccatatttgcacctcaggcatggttaaaatacaaagatgcaaactggacgcctcctgaactttggaatcatggtattgctggggcatttcttgactacaatttatatgcctctcattatgcaccacatcagggcgataattcgcaaaatataagttcctatgggcaggctggggttaatcttggggcctggcgcctgcgtactgattaccagtacgatcagtcatttaacaatggcaaaagccaggcgaccaacctggattttccgcgtatttatttgtttcgcccaatcccagcaatgaatgcaaaactaactataggtcaatacgatactgaatcctctattttcgactctttccatttttctggcatttcgttgaaaagcgatgagaatatgttaccgccagacctacgtggttacgcaccgcaaatcacgggtgtcgcacaaacgaatgcaaaggtcactgtctcacagaacaaccgtattatttatcaagaaaatgttcctccaggcccatttgctattaccaatttattcaatacattacaggggcaacttgacgtcaaggttgaagaagaggacggacgcgttacgcaatggcaagttgcatctaatagtattccttatctgacgcgtaaagggcagattcgctacaccactgctatgggtaaaccgaccagcgttggtggtgattccttacaacaacccttcttctggactggtgaattctcatggggttggctgaacaatgtatccctgtatggtggttcagttttaacaaaccgtgattatcaatctctggctgccggcgttggttttaatcttaactcattaggttcattatcttttgatgtcacacgatctgatgctcagttgcataatcaggataaagaaacgggttatagctaccgcgctaactattcaaaacgttttgaatctaccggtagccagctcactttcgctggttaccgtttctctgataaaaactttgtgacaatgaatgaatatatcaatgacactaaccattacacgaattatcagaatgaaaaagagagttatattgtcacgtttaaccagtatcttgaatcattaaggttaaatacatacgtaagtttggctcgtaatacttactgggacgccagcagtaatgtgaattattcattatcacttagccgcgattttgatatcgggccattaaaaaacgtctccacttctctaacatttagccgaataaactgggaagaagacaaccaggatcaactgtacctaaatatttcgattccctggggaactagtagaacattgagctatggtatgcaacgaaatcaggataatgagatttcgcatactgcttcgtggtatgactcttccgatcgaaataattcctggagcgtttctgcttcaggcgacaatgatgaattcaaagatatgaaagcgtcactacgcgccagttatcagcataataccgagaacggtcgactctacctctccggtacatcacagcgagacagttattattctctgaatgccagttggaatggttcattcactgcgactcgccacggtgccgctttccacgactatagcggtagtgctgactcgcgttttatgatcgacgcagacggcactgaagatattccgttgaacaataaacgcgcggtaactaatcggtatggcatcggagttattccatcagtcagcagttacataacaacatcattaagtgttgatacccgaaatctgccagaaaatgtggatatcgaaaactcggttatcaccaccaccttaaccgagggtgctattggctacgccaaacttgatacccgcaagggctaccaaatcataggggttattcgcctggcagatggtagtcatccaccactggggattagcgtaaaagatgaaaccagccacaaagaattaggactggttgctgatggcggctttgtatacctcaacggcattcaggatgataacaaacttgctttacgctggggtgacaaatcttgttttattcaaccacccaatagcagcaacttaaccaccggaacggctattttaccgtgtattagccaaaattaattcaggatgaaactaatgcgctacttaaatacaaagaatatcattgcagcaggagtattactctcctgtatgagcagcattgcctggggtgccatcatcccggatcgtacccgtatcataatgaatgagtcagataaaggcgaagcattaaaacttactaatcaaagtaaaaacctgccctatctggcccaaacatggatagaagatacgaaaggcaataaatcgcgtgactttattgtcactgttcctccaatggtgcgtttaaatcccagtgagcaaattcaaataagaatgataactcaggaaaaaattgctcaacttcctaaagacagagaaacgctcttctattttaacgtgcgagaaataccgcccaaaacagataaaaaaaatgtgatgcaagtcactatgcagcacgcattgaaactattctggcggccaaaagccattgaattagaagacgatggggtaatgacttacgaaaaagttgaaatcattcgtagaaatgacggttcgatccgctttaacaataagatgccttatcacgttacgctgggttatatcggaacaaatggggtaacgatgttaccacaaacgcaaagcttaatggtaaccccttttagctatgcaaatacgcagtttaaaaatgttccgtcaacttttcaggtgggttatatcaatgactttggtggattaagtttttatgaaataaactgccctgtagtaaataacatttgtaatatttctgtagccaaccgagatcaataatatgcgctacttgttaattgttattactttttttatgggttttagttcattacctgcatgggcaatggactgctatgctgaacatgaaggtggaaataccgttgtcattggttacgtaccaagaatctctatccccagcgatggtaaaaaaggtgataaaatctggcaaagcagtgaatattttatgaatgttttctgtaataatgcactaccaggcccatctccaggagaagaatacccatctgcatgggcaaatataatgatgttgttagcatcaggtcaagacttttataatcaaaactcttatactttcggtgtaacttataatggggttgattatgattctacatctccactacctattgcagcacctgtatgtattgatataaagggagccggaaccttcgggaatggctacaaaaagcccgcagtctgtagtggcggtcctgaaccgcaattatcagtaacttttccagtacgagtgcagctatatattaagctagctaaaaatgccaataaagtaaataaaaaacttgtattacctgacgaatatatagcacttgaatttaaaggtatgagcggagcaggtgctatagaagtagataaaaatctgaccttcaggattcgcggattaaataacattcatgtccttgactgctttgttaatgttgatctggaaccagctgatggcgttgtcgactttggtaaaataaattcccgaacaattaaaaataccagcgtgagtgagacgtttagcgtagtcatgaccaaagatccgggtgcggcctgtactgagcagtttaatattttagggagttttttcactacggatattttgagtgattatagccatctggatataggtaatggtctgctattgaagatatttcataacgatggaacagcaacggaatttaaccgcttctcacaatttgcttctttttcatcgtctagtgcgccttcggtcaccgcaccattcagggcagaactgagtgcgaacccggcagaaacggttgttgagggaccgtttagtaaagacgtaatcctgaaaatcacctataactagtatctaatacaaacactaaaacgggccatcaggcccgttatatcagtgctctaactccagctctcttgcctgcatcatctgttgacaataccaggcataacgtgcgcaaaaccaggttctatgttcttcatccatgttaccagtaacggccagaatatcgaccgggcgaccttctgcgtgcattctggcaaaactacgcgccaggaaatcgaaattatttaaagaattaagactatgatccataagcacatcctccggttatcgcataccttttaaggccatatgctttttctgatttcagtattccccaatcagtgtagtgcctttaaacataacgtgcgtaaatatattgtccccgatcacactttttagtgaaaaataaaaaaccatattaaaagactttctcttccagaacttctctaacctgtgttattattaacacagataaatgtaagcaaggaaactattacaaagtaaatattgcgtcactaaatggacattggagtgatatatgattttattcgccgactataacaccccttatcttttcgctatttcctttgtactgttgatcggcctgttagaaatttttgcgcttatctgcggtcacatgctctccggtgctcttgatgcacatcttgaccattatgattctataaccacaggtcatattagccaggcacttcattatctcaatattggaagattgccagctctcgtcgttctctgcttactggctggtttttttggtcttattggcatcctgttgcagcatgcctgcatcatggtctggcaatcaccactgtcgaacctgttcgtggttcctgtcagtttactgtttacgattattgcggtgcattataccggtaaaatagttgcgccctggattccacgcgaccatagttcagctattacagaagaagaatatattggtagcatggcgttaattaccggtcatcaagccacttcaggtaatccctgcgaaggaaaactcaccgatcaatttggccaaatacattatttactactggagcctgaagaaggaaaaattttcactaaaggagacaaagtgttaattatttgccgactttctgcaacgcgatatttggcggaaaataatccctggccccaaatattgtaatttattaatcaaaaggaaatttaataatggatgatattgttaattctgtgccctcctggatgtttaccgcaattattgccgtatgcattctgtttattattggaattattttcgccaggctctatcgtcgcgcttcggcagagcaagcttttgttcgtactggtttaggtgggcaaaaagtggtaatgagcggtggcgcaatcgtgatgccgatctttcatgaaataatccccatcaatatgaatactctgaagctggaagtcagccgctcaaccattgatagcctgattacgaaagatcgtatgcgcgtcgatgtagtagtcgctttctttgtgcgggtaaaaccttcagtagaagggattgccaccgctgcccagacgctggggcaacgcaccctgtcgcctgaagacttacgtatgttggttgaagataaatttgtcgatgccctccgtgcaacagctgcgcaaatgaccatgcatgagttacaggatacccgcgagaactttgtgcagggggtgcaaaatacagtggcagaagacctgtcgaaaaacggtctggaactggagagcgtttcacttaccaactttaaccagacctcgaaagaacatttcaatccgaacaatgcctttgacgccgaaggtttaaccaaactgactcaggaaacagagcgccgtcgccgcgaacgtaacgaagttgaacaggatgtagaagttgcggtgcgtgaaaaaaatcgcgatgcgctatcgcgcaagctggagattgaacagcaagaagcgtttatgacgcttgagcaggagcagcaggttaaaacccgtactgccgaacagaatgcacgtattgcggcttttgaagctgaacgtcgtcgtgaagcagagcagacacgaattctggctgaacgacagattcaggaaacagaaatcgaccgcgaacaggccgtccgctcaagaaaggttgaagctgaacgtgaagttcgcattaaagagatcgaacagcagcaggtcaccgaaatcgctaaccagacgaaatcgatcgctattgccgccaaatcggaacaacagtcccaggcagaagcgcgtgctaatctcgcacttgcagaagcggtaagcgcccaacaaaacgtagaaaccactcgccagactgccgaagccgatcgtgctaaacaagttgccctaatcgctgccgcgcaggatgcagaaaccaaagcggttgaactgaccgtgcgggcgaaagcagaaaaagaagccgcagagatgcaggcggcggctatcgttgagttagccgaagctacacgtaaaaagggtctggcggaagcagaagcacaacgtgcgctgaacgatgctatcaacgtactttctgatgaacaaaccagccttaaattcaaactggccttgttgcaggcgctgcctgcggtaatagagaaatccgttgagccgatgaagtcaatcgacggtatcaagattattcaggtcgatggtctgaatcgtggcggcgctgcgggtgatgcaaacacgggtaatgtggggggcggaaacctggcggaacaagcattatcagccgctctctcttaccgcacacaggcaccgctgattgactccttgctcaatgaaattggcgtttcaggcggctcactggcggcattgacttcacccttaacctcaacaactcccgtcgaagaaaaagcagagtaaaccctcttccaggaataatccctggcccaaaaagccggggattttttatatctgcgttccgctaaaaagtgcaaatgatcaggttgttgcagcattttgcgtgacggctcggggaaggcaaaactgcatcagagaaagcattgcgtggggtctggcgctcatcaacaatcggggagtcagcagggggctgaaacgggaaagcccctcccgaagaagggggccttacagaaggaaagggttatgatgaagctcgtcatcatactgattgtgttgttactcgtaagtttcgcagcttattaacagccaatcagaggggggagaaatcctcccttacccttgttcctttactctaggttgaaaaaacaacagcgtcaataggcctgccatgtacgaagcgagatctgtgaaccgctttccggttagccttttttatcctgttggatcttcttgatgatgttggtcgtcgagcaaccgtcttcaaagttgagcaccaacacttcgccaccgttggcccagacttctttactcccggcaatctcttctggtttatagtcgccgcctttcaccagcagatctggcaagatcccggcgatcaagcgctgcggcgtgtcctcttcaaacgacactacccagtcgaccgcttccagtgcgcccagcacaatcatacgctgttcgagtgggtttaccgggcgggaatcccctttcagccgtttggtggaggcatcgctgttgacggcaacaatcaagcggtcacccagcttgcgggcatttgccagataagagacgtgcccggcgtgcaggatgtcaaagacaccgttggtcatcaccactttttcaccacgtttacgcgctgccgctacggccagcttcagttcctcttcggtcatcacgccaaagcctgtatctgcacgtccacgtacagcattttccagctcgatcggcgaaaccgtggaggttcccagtttgccgaccaccacgccagccgccgcattggcaaagaagcaggcttcttccagcgaattacccgctgccagcgttgccgccaggacgccaatcaccgtgtcgcccgcaccggtaacgtcatacacttcctgcgcttgggttggcatatgcagcggcgctttacccggttgcagcagcgacataccctgttcggaacgggtcactaacagagccgagagttcgtaatcggcaatcagtttcatgccgcgctcaacaatctcttcttcggtcttacatttaccgacaacagcttcaaattccgagagattcggcgttaacagcgtagcgccgcggtagcgctcaaaatcggtaccttttggatcaatcagcaccggaacacccgctttacgcgccagttggatcatctgctgtacgcttgccagcgcacctttggcgtagtcagaaagcaccagcgcgccaatcgaactcagcgcctgattaatccgctcgtgcagcggctgcggatcaacaccttcgaaaccttcttcaaaatccagacggatcagctgttggttgcgggaaagtacccgtaatttggtaatggtcggatgcgtcggtacagaaacgaagtcgcatttgacgttgacgtcggccagagatttactcagcgcgcgcgctgcatcgtcaatgcccgtcaacccgaccaggcgtgcattagcaccgagagaagcgatattcatcgccacgttagccgcgccgcccggacgttcttcgatggtattcactttaaccacgggcaccggcgcttccggcgagatacgactggtggggccgtaccagtaacgatccagcatcacatcaccaaccaccatcactcctgcacgttcaaactctggcagcgttactttcattcctgtctcctgagagattcaaaatttgcgcgcgataataccatacttcattcttccaccagccacttctgccagcttgcccgcaccagttcacgctctgcggtgaagcaatcctccgacacatggcccggcaattcctgtaatgccagatgatgaagttcatcgcgaagcgtagtgtaagcacgggtcagcgccatcgcttcctgctcttccataatgtcgttttgcgccagtagttccagaatacgcacgttgtctgaccagcgcgttaacttcggtttttcatgagcgtagcgcaacaccagatattgggtaataaattcgatatcggtaattcccccttcatcagctttgatatcaaagcgatcgcgatgtttattgccgagatgagcgcgcattttctcgcgcatttcccgcacttccgtttgcagagttttaccttcacgcggcagcgtcataatctcgcgacgcactgcgtcaaagtgcgcggtgagctgcggatcgccgtacactacacgcgcacgcaccagcgcctgatgttcccacgtccaggcctcgtttttctgataatcggcaaatgcttctgcggatgtcaccagcattcccgccgccccggacggacgcagtcgagcatccacttcatacaaaatgccggaagaggtacgcgtactgaacagatgcataatgcgttgcgccagacgcagataaaactgccgcccgtcgatttcccgctcaccgtcagtcatcgcatccattgggcaatcatggaggaagataaggtcaagatcggaactgtagcctaactcccagccgcccagcttgccgtagccgaccaccgcaaaaccacgcccttcgcgttcgttcaggtgattcggcttaccgtagcgggcaaccatttgaacccacgcctgctgaacgacggcatctatcatggcttccgccagccaggttaagtgatcgctcactttcatcaccggtagcgtaccggcgatatccgctgcggcgatgcgtaacagctgcgcctgtttgaactgacgcagcgcctcaagctgttgctcttcgtcatcttccggcacgcgcagcaaatactggcgcaactcatcgcggtaggcatcggtcgccgtcggctggtaaagggtgtttggatcgagcaattcatccagcaataatggataacgcgccagctggctggcaatcatcggcgacgcggcacacagagaaatcaaatgtttaagcgccgcggggaattcactgagcaattctaaataggtggtgcgggtaacaatccccaccagcaaggcggtaatgcgcgacagcgtaacggcagcgtcttcacgcgcacagacatcacttagcagatgcggcatcagatggtcgagcacctgacgtcctcgcggcccgatggtgcgcttatccagctctttgcggaaatcggcaatcagcgttagcacctgtttgcgatcatcctcgctaagatgcgccagcactggcgtagtgtcatcttcctgcaacgcatcctgccacagctcacgccactgttccgacagcgactcttcctgagtttcactttcatcgtcgccaatcaattcattaaacacccggcgcacattggtcatatgtgcggtcagcgccccggtcagttgcggccagtcagcaaagtccatcgcccacgccagccgcgcacgattaagctcatcagaaggaagcgtctgggtttgttcgtcgttaatgctttgcagcaggttttccagacgccgcaggaacagatacgccactcgcaattgttcagcatcgttttcagaaagcagatgcagctcggcaatggcgctgagcgttggcagtaaagagcgcgattgcagcgacggttcgcgtccgccgcgaatgagctggaacacctgaacgataaattcaatttcgcgaatgccgcctgcgccgagtttgatattgtcggtcaaaccacgtcgacgcacttcacgggcaatcatccctttcatgttgcgcagcgactgaatcacgctgaaatcgatgtaacgacggaaaacaaacgggcgcagcatcgcacgcaactcgttagcatagacgccttcgctatcgcccataatccgcgccttgaccatcgcgtaacgctcccagtcgcgcccctgctcctggtaataatcttccaacgcggcaaagctcagcaccagcgggccactttcgccaaacggacgcagccgcatatccacgcgatagacgaagccatcctgcgttggttgatccagcactttaatcagccgctgccccatgcgggtaaaaaactgcgcgttatccagttcccggcgtccaccctgcgtacaaccatgttccggccaggcaaaaatcagatcgatatcagaggagaaattcagctccccaccgcccagcttacccatgcctaaaatcagcagcggttgcgcttcgccctgcgcattgcacggcgttccccactcgcggcagcaggcgtcatacagccagtcacgcgccgcaacaatcagcgtctccgccagatagctgagctgctgcaatatgctctcttcagtaaccagtgccagcgtttgcgcccaggcgatgcgcaccataatgcgccgccggaatagccgcagctcgcgcattaacccggcttcgtcactcacattacagagcgcctcctgcaaccatgccgcgtaatgctgccattcgtcggcctgcggcggttggctttccagttccgtcagccactctggatgcgcaatcacgctgtcctgcacaaaatcactaaaagtaagtactgacttcgcctgtgcgctaagtgattcctcggctaaaggctctggcagccgctcaacaacggtctgccagtactgctgtaacggtgaagagagcggcttcataagcgattttatccttgcctgattaacgttttccgctgtgcaaccagaacggttcctgattgtttgcctcattacggaaatgttcaatttcgatgcgttgcccggtcgcaatagcgtgatgcagcccctgccagttctccagccaggcttgcgcgacgacaggatcatagtaacccgccagcaacagtattgagtcaatatcacgcgtcaggcgtggcaactggtcacggtagcgatcgcctaacggctggcagaaaacgcttttcagttcagcggcatggcgggaaagatggatatcggcaaagcgtttgaaggagtcgctgattttgccctgcgctttggcatctaaaaatggctgccatgctttgcttaccaaccattcggtcaacgccagcttcgccattgccgtttcggtagagtagaccgccgtcacggcagacaccgcagaagcaatggtcgcctcgcattgagtcagcagatcacgtaagtgagtgctcgctttacgcggcacaataccaccgaacagcatcagcgtatgacggaccaggctaatggctgccagcacctgttctttcgccgcatcgttgccgcgtacccacagttcttcatgatactgccattgcgctaacgccagctcgagcgccgcttccagcccctgttccacatcggcttttgccgcaacatgcaaaatggtggtcggtttgatttcacgcgccggattgccctgcgccagatgatagccacgcgccgctttgctcaggctgccctggcgtaatccggtttgcgataccagttggttcgccagtttcagcaccgcgcgcgtgtcgccgctaagcagttccagttccagctcacagataggttcagcaaattcacccgctttcacttccccctggtcgagggcgatttcaatttggctaccatcgaccgccaccagccatttttcgcgataaaaatcggtgctgaacagcggctgcacgcgggaggcgagatcggcgggcaattcgccgttcggccagacttccgtcggtaactgcgccaggtcgagcgtcggttcgctcaacgccacgttatattccgggcgctgatgtaagccgcctgtcactcttcctgcaactttcatggtcatctcatagcgaccgttttcgccacgaatacgtaagcccatatcgtgcccacgcagccagttatccggcgtttcgtagtaaatattcagcaactgcacggggtcatggtgctcgccgcccagcgtattgagatggtcacgcaacgcctcaacggcactgtgattaacaataaactttaattcgatttcctgagccatggcctttacttatcggttatgtcacataagtgacgatgaacggcgaacttaatgcgatcttttttgtcagtagatagtattttgcgccaaattgccatgcaacgggcaatttgacgggcgtaaaagtttgaagcagtggcaagacctgacacagaggattccgattgatgtcgaatgctttgcgtagcgacactgatgccactactatcgttccactttccatgacaataacgacagcctgatgccaaaattacgcctgatcggattaactttactcgcacttagcgcgactgccgtctcacacgctgaagaaacgcgctatgtttccgacgaactgaatacctgggtccgcagcggtccgggagatcattatcgcctcgtgggcacggttaacgccggcgaggaagtgaccttattacaaactgacgccaacaccaattatgcccaggtgaaagacagctctggccgtaccgcctggatcccgttgaaacaacttagcactgagccaagcctgcgctcccgtgtgccagatctggaaaatcaggtcaaaaccctgaccgataaactcaccaatatcgataacacctggaatcagcgcaccgcagaaatgcagcaaaaagtggcgcagagcgacagcgtgatcaacgggttaaaagaagaaaatcagaaactgaaaaacgagctgattgtcgcgcagaaaaaggtcgatgccgccagcgtacagctggatgacaaacagcgcaccatcatcatgcaatggtttatgtatggcggtggcgtgctggggcttggcttgctgctcggtctggtactgccgcacctgatcccaagccgcaaacgcaaagatcgctggatgaactaaatcgccttcttcgttgcactgtcttattattaggaattgtgtatttgacgaagggatgatggcgtgaagatttatctggtcggtggtgctgttcgggatgcattgttagggctaccggtcaaagacagagattgggtggtggtcggcagtacgccacaggagatgctcgacgcgggctaccagcaggtaggccgcgattttcctgtgtttctgcatccgcaaacgcatgaagagtatgcgctggcacgtaccgaacggaaatccggttccggttacaccggttttacttgctatgccgcaccggatgtcacgctggaagatgatcttaagcgtcgcgatctgaccattaatgcgctggcccaggacgataacggcgagattatcgacccgtacaacggtctgggcgatctgcaaaatcgtctgttgcgccatgtttcccccgcttttggcgaagatccgttacgcgtattgcgcgtggcgcgttttgctgcgcgttatgcccacctcggttttcgtattgccgatgaaactctggcgttgatgcgcgagatgacccatgcgggtgaactggaacacctgacgcctgaacgggtatggaaagagacggaaagcgccctcaccacccgcaatccacaggtgttcttccaggtactgcgcgattgcggcgcactgcgcgttttattcccggaaattgacgcactgtttggcgttccggcccctgccaagtggcatccggaaatcgatacgggtattcataccttaatgacgctctcaatggcggcgatgctgagtccgcaggtcgatgtccgtttcgcaactttatgccacgatctcggtaaagggctgacgccgccagaactctggccgcgtcatcatggtcatggcccggcgggtgttaagttagtggaacaactatgccagcgtctgcgcgtgccaaatgaaattcgcgatttagccagactggtggctgagtttcacgatctcatccacaccttcccaatgctgaacccaaaaaccatcgtcaaattatttgattccatcgatgcctggcgtaaaccgcagcgtgtcgagcaactggcgctgaccagcgaggctgacgtgcgcggcagaaccggttttgaatcagcggactacccgcaaggccgctggttgcgcgaagcctgggaagtggcgcagtcagtgccgacaaaagccgtcgttgaagcgggatttaaaggtgtggagattcgcgaggagctgacccgacggcggattgcggcggtagccagctggaaggaacaacgttgcccaaagcctgaatgagtattgggcattttgccggatgcggcgtaaacgccttatccggctacatgtcaacgacagttgtaggcctgataagacgcgcaagcgtcgcatcaggcgttgattgccggatgcggcgtgaacgccttattcggcctacgcaatcgttgacaacgccaagcatccgacactattcctcaattaaaagaacacgacatacaccgcagccgccacaataaagcgataaatggcgaacgggataaacgaaatgcgcttaatcaattgcaggaaggttttaatcgctatcagcgccaccacaaaagcggtgataaacccaacggcaaacatcgggatatcgccgcttgtcaggaagccccagcttttgtagagatcgagcgccgttgcgcccatcatcatcggcaccgccagcaggaacgaaaactcggaagcagcgtaacggctcacccccatcagcatcccacctgaaatggtcgccccggaacgggagaaacccggccacagcgccagacactggaaacagccaatcataaatgcctgacgataggtcatatcatcaagacccggcgcacgcggctctttcggcttcaggcattcggcggcaatcagcaacaaaccgccaacgaccagcgcatacatcacatttatcgggttaaacaatgacttaatcgtgtcgtggaacaacagccccaataccaccgccggaatcatccccagcaaaatgtggatcagcgttaaacgacctttgctttcaccttcgtgctgcaacgggcggccaaagtggatgccaatcaggccaaacagacgccgccagaacatcactactaccgccagaattgatcctaactggatcacaacttcaaaggttttcgccgtgtcgccctcaaaccccaacaagtgaccgacaataatcatatggcccgtgctggataccggcagaaattctgtcaatccttcgaccacacccaatattgccgctatcagcagcgagtgcatatcgctcatcaataaacccctaaattattaaaatgtaccgcttgtccgaactactgcgtatgaccaggttataaccgtttggtttaacagctgtaaaattaattattttctttcagattattgccacgctcaatgattacgccaacattcgccgcccgcgccactgcgcctggcttgctgagtttgatacgcacccacggcgagttgaagcgtgctaacagcagctccgccacctcttcagccacgcgttccaccagcgcaaaacgcgccccctcgacgtggctgaccaccgtttctgcaatgtcagcgtaactgaggcaatccgccacatcatcacttttcgccgctttacggttatcccacgccatttcgatatcgaacactaacttctgttcgatggtctgttcccagtcgtaaacaccaatagtggtgattaccgaaagttgctctataaatacaatatccatcacgtcctgcctgctttttggctaaccggataccacttccggcgaaatgtgcgtattatccacagattcatcgttgaacacgaattttcaaaacggaacagcttatgagtgcaatcgcgcctggaatgatcctcatcgcgtacctctgcggctccatttccagtgccattctggtttgccgcttgtgtgggctgcccgatccgcgaaccagcggctccggcaatccaggcgcaaccaatgtgttacgtatcggtggcaagggagcagccgtagcagtactgattttcgacgttctgaaaggaatgttgcccgtctggggcgcgtatgaattaggtgtcagccccttctggctaggcttaattgccatcgccgcctgtcttggacacatctggcccgttttcttcggatttaaaggaggaaaaggcgttgctaccgcttttggtgccatcgcacccattggctgggatctcaccggagtaatggcgggaacctggttactgaccgtgctattgagcggatactcgtcgctgggagcgattgtcagtgcactgattgctccgttttatgtctggtggtttaagccacaattcaccttcccggtttcgatgctctcttgcctgatcctgctgcgtcatcatgacaacatccaacgtctgtggcgtcgtcaggagacaaaaatctggacgaaattcaaaagaaagcgcgaaaaggatcccgagtgatttctggtggatctacatgacctgatagccttcatcgggcttgcccagccgttgctggcaccatgccgccagaaattccacgcagacacgtaatttcatgctgcgatagagcggctcccggtaaacagcccagatattggcgctttgtgcatactctggcaatacttgcaccagtttgccactctccagaaacggcaacacatcccactcggaacgcagcataatccctttgccctccagcgcccattgcagcacaatctcgccgctattggaggaaagatgcccgcttaccttcaccgattttttctcctgaccgttccccaactcccatattccatgggtcatatcgcgctctttggtcaccagacagtcatgacgacttaattcctgtagggattgtggctgcggatatttttgcagatactcaggtgctgcgcataatattcttttattttttgtcaaaagatgcgcaatataataatcaggaatttcgtcattaatacgaatatccagatcaatattatcctgcactaaatcaatttgccgatcgaacaattcaaaatgcacctgtaactcaggataattgcgcatcagttcggtaatagctggcgcaatatggctgcgcccaaaaccaaaactgcaaccaatacgaatcatcccctccgggcgcgttttgatttgcgtgacgtcatcgaccagtcgctgatattgggtgaggatttccaacgcatgttcgtaacaacgttggccactttcagtcagcgccacgccgcgagcggagcggttcagcagcgttgttgccagcgtattttcaaggatttggatccgcttggtgacaaatgcaggcgtctgcccaagcgtcgccgctgcggcgctaaaactcccgctgtgaacgatttctaccagtacctgcaagtctttggctaaaggccagctattcagcatcgttaattatccgcagttgtgataagcgcagtgtatttcgcaaaacattgccattccctgctctggcgcaatattcattcttattttcgcgttgattcacgaactgttaattacatattcacggtggcaaaaaatataaaaccacatttttagtggtagtttgtggcggtgaatttttccagacaaatacaaaaactggagttgccatgatgagcgaaagtaataagcaacaggcagtgaataagttgacagagattgtcgctaactttaccgccatgatttctacccgaatgcctgatgacgtggtggataaactaaaacagctaaaggatgccgaaacgtcgtcgatggggaaaattatctaccatacgatgttcgacaacatgcaaaaagcgattgacctgaatcgtcctgcctgtcaggacaccggggagattatgttcttcgttaaagtcggttcccgcttcccactgcttggcgagctgcaaagcatactcaaacaagccgtggaagaggcaaccgtcaaagcgccactacgtcacaatgcggtagaaatttttgacgaagtaaacaccggcaaaaataccggtagcggcgtaccgtgggtcacctgggacatcatccccgacaatgacgatgcggaaatcgaagtttacatggcaggcggcggctgcacgctacctggccgctcgaaagtgttaatgccgtcagaaggctacgaaggcgtggtgaaattcgtcttcgaaaatatctccaccctcgccgtaaacgcctgtccaccggtactggtgggcgtgggcatcgccacctcggtggaaaccgccgccgtactctcgcgtaaagccattttgcgcccgattggcagccgccatcccaatccaaaagcggcagaactggagctacgcctggaagaaggactcaaccgtctggggattggtccacaagggctgaccggcaacagttcagtgatgggcgtacatatcgaatctgccgcccgccatccgtcaaccatcggcgttgctgtctctaccggctgctgggcgcatcgtcgcggcacgctgctggttcatgccgatctcacctttgaaaatctgtctcacacccggagcgcgttatgaaaaagatcctgacaaccccgatcaaagctgaagatctgcaagatattcgcgtcggcgatgtgatctacctgaccggtacgctggtgacctgccgcgacgtttgtcaccgccgtttgatcgaactgaaacgtccgatcccttacgatctcaacggcaaagcgattttccacgctggccccatcgtgcgcaaaaacggcgacaaatgggagatggtctccgtcggcccgacaaccagtatgcgtatggaaagttttgaacgtgaatttattgagcagaccggcgtgaaactggtggttggcaaaggtggtatggggccgctgaccgaagaaggctgccagaaattcaaggcgctacatgtgattttcccggcaggctgcgcggtgctggcggcaacccaggtggaagagattgaagaagtgcactggacagagctcggaatgccggagtcactgtgggtctgccgggtcaaagagttcggcccgctgattgtctctattgatacccacggcaacaacctgatagccgaaaacaaaaagctgttcgccgaacgccgcgatcccatcgtggaagagatctgcgagcacgtccattacatcaaataaccctcccggagaggctcacccctctcctttttcgcaggcataacacgatgaaaccttccactgaatggtggcgatatcttgcgccgctggcggtcatcgccattattgctctacttccggttcccgcagggctggagaaccatacctggctctactttgccgtttttactggcgtgatcgttggactgatcctcgaacccgtgccgggtgccgtggtggcgatggtgggtatatccatcatcgccatactctctccctggctgctgttcagcccggagcagctcgctcagccaggctttaaattcactgcaaaatccctctcgtgggccgtttccggtttttctaattcggttatctggctgattttcgccgcctttatgtttggcacaggctatgaaaaaaccgggcttggacgccgcattgcgctgattctggtgaaaaagatgggacatcgcacgctgtttctcggctatgcggtgatgttctccgagctgatcctcgcacctgtaacaccgtccaactcggcgcgtggtgcggggattatctatcccatcatccgtaacctgccaccgctctatcaatcacaaccaaacgacagcagttcgcgcagcattggctcgtacatcatgtggatggggattgttgccgactgcgtgaccagcgccattttcttgacggcgatggcaccaaacttgctgttaattggactgatgaaaagcgcatctcacgccacgctgagttggggcgactggttcctcgggatgttgccgctcagcattttactggttctgctggttccctggctggcttacgtgctgtacccgccggtactgaagtctggcgatcaggtgccgcgctgggcagagacggaactgcaggcaatgggcccgctctgttcgcgtgaaaaacggatgctggggctgatggtaggcgcgctggtgctgtggattttcggcggtgattatatcgatgccgcgatggtcggttacagcgtggtggcactgatgctgcttctgcgcattatcagttgggacgacattgtcagtaataaagcggcgtggaacgttttcttctggctggcctcgcttatcaccctcgccaccggactcaacaacaccggttttattagctggtttggcaaactgttagcaggcagcttaagcggttattcgccaacgatggtgatggtggcgttgattgtggtgttttatctactgcgctactttttcgccagcgccacggcgtatacctccgctctcgcaccgatgatgattgctgctgcgctggcgatgccggaaatcccgctgccggtgttctgcctgatggttggtgcggcaattggtctggggagcattcttacaccatacgccaccggccccagtccgatttactacggcagtggttatctgccaacggcggattactggcgactgggggcgatttttgggctgatattcctcgtattgctggtgattaccggcttactgtggatgcccgtggtgttgctttaagtgaggacggtgccggaaattgctctccggcacccaatagttttacgcagccggtaactccgccagcggccagcgcggacgcacgctaacgccgagatccgccgtcgcgcctgctttaaaccgcaccattccggcataggcgatcatcgcgccgttatcagtacaaaattccggacgcgcgtagaacacttcgccgcggcgttttttcatcatttcagccagcttcgcccgtaacgtacggttagcactcacgccgcccgccatgaccagtcgcttaaagcccgtctgatccagcgcccgcttgcacttaatcatcagcgtatcgaccaccgcatcttcaaaggcgcgggcgatatcagcacgcgtctggtcgtcggtgccgttgtcacgaatggtatttgccgcgaaggttttcaggccggagaagctgaaatccagccccggacggtcggtcatcggacgcgggaagacaaagcgcccggcagtaccctgagccgccattttcgacagtaacggcccgccaggataatccagccccagcagcttcgcggttttatcaaacgcttccccggcggcatcatcgatagactcgccgagcagctcgtactgaccaatgccagtcacgctgattaactgcgtatgaccgccggaaacaagcagcgcaacaaacggaaattccggcgggttatcttccagcatcggcgctaacagatgcccttccatatggtgtacagggatcgccggaacgtcccaggcaaacgccagagaacgccccacggtcgcgccaaccagtagcgcgccgactaatccagggcctgcggtataggccacagcatcaatgtcttttgccgttaaaccagactcctttagcgccgcctggatcaacggtacggttttacgcacatgatcgcgggaggccagttcaggcacgacgccgccgtagtcagcgtgcaatttcacctgactatacaattggttggctaacaaacctttttcatcgtcgtaaatggcgatgccggtttcatcgcaggaagtttcaatacccagtacacgcatgacttgttttacctcgctttattaccgcgcagtgtaggaccaatgcgggttgatgtaaaactttgttcgcccctggagaaagcctcgtgtatactcctcacccttataaaagtccctttcaaaaaaggccgcggtgctttacaaagcagcagcaattgcagtaaaattccgcaccattttgaaataagctggcgttgatgccagcggcaaaccgaattaatcaaaggtgagaggcacatgccggtaattaaagtacgtgaaaacgagccgttcgacgtagctctgcgtcgcttcaagcgttcctgcgaaaaagcaggtgttctggcggaagttcgtcgtcgtgagttctatgaaaaaccgactaccgaacgtaagcgcgctaaagcttctgcagtgaaacgtcacgcgaagaaactggctcgcgaaaacgcacgccgcactcgtctgtactaattccccgagagcgttgctctccgatcagaccgagttgtagttgtaaggccgtgcttccgaaaggaatgcgcggcttattttcgtttatgaattgctaaaaatcggggcctatggctggacgaatcccacgcgtattcattaatgatctgctggcacgcactgacatcgtcgatctgatcgatgcccgtgtgaagctgaaaaagcagggcaagaatttccacgcgtgttgtccattccacaacgagaaaaccccgtccttcaccgttaacggtgagaaacagttttaccactgctttggatgtggcgcgcacggcaacgcgatcgacttcctgatgaactacgacaagctcgagttcgtcgaaacggtcgaagagctggcagcaatgcacaatcttgaagtgccatttgaagcaggcagcggccccagccagatcgagcgccatcagaggcaaacgctttatcagttgatggacggtctgaatacgttttaccaacaatctttacaacaacctgttgccacgtctgcgcgccagtatctggaaaaacgcggattaagccacgaggttatcgctcgctttgcgattggttttgcgccccccggctgggacaacgtcctgaagcggtttggcggcaatccagaaaatcgccagtcattgattgatgcggggatgttggtcactaacgatcagggacgcagttacgatcgtttccgcgagcgggtgatgttccccattcgcgataaacgcggtcgggtgattggttttggcgggcgcgtgctgggcaacgatacccccaaatacctgaactcgccggaaacagacattttccataaaggccgccagctttacggtctttatgaagcgcagcaggataacgctgaacccaatcgtctgcttgtggtcgaaggctatatggacgtggtggcgctggcgcaatacggcattaattacgccgttgcgtcgttaggtacgtcaaccaccgccgatcacatacaactgttgttccgcgcgaccaacaatgtcatttgctgttatgacggcgaccgtgcaggccgcgatgccgcctggcgagcgctggaaacggcgctgccttacatgacagacggccgtcagctacgctttatgtttttgcctgatggcgaagaccctgacacgctagtacgaaaagaaggtaaagaagcgtttgaagcgcggatggagcaggcgatgccactctccgcatttctgtttaacagtctgatgccgcaagttgatctgagtacccctgacgggcgcgcacgtttgagtacgctggcactaccattgatatcgcaagtgccgggcgaaacgctgcgaatatatcttcgtcaggaattaggcaacaaattaggcatacttgatgacagccagcttgaacgattaatgccaaaagcggcagagagcggcgtttctcgccctgttccgcagctaaaacgcacgaccatgcgtatacttatagggttgctggtgcaaaatccagaattagcgacgttggtcccgccgcttgagaatctggatgaaaataagctccctggacttggcttattcagagaactggtcaacacttgtctctcccagccaggtctgaccaccgggcaacttttagagcactatcgtggtacaaataatgctgccacccttgaaaaactgtcgatgtgggacgatatagcagataagaatattgctgagcaaaccttcaccgactcactcaaccatatgtttgattcgctgcttgaactgcgccaggaagagttaatcgctcgtgagcgcacgcatggtttaagcaacgaagaacgcctggagctctggacattaaaccaggagctggcgaaaaagtgatttaacggcttaagtgccgaagagcgatcgggaagcccccgacagccgcactgagaggcagcggcaaatatataagtacgccctcgtaattatcgttggcggtaaacaaccgttggatttcagcgttaacggctgaaggacatcgggtcaatcgcccaacaccaacctcatgaaataagtgtggataccgtcttatggagcaaaacccgcagtcacagctgaaacttcttgtcacccgtggtaaggagcaaggctatctgacctatgccgaggtcaatgaccatctgccggaagatatcgtcgattcagatcagatcgaagacatcatccaaatgatcaacgacatgggcattcaggtgatggaagaagcaccggatgccgatgatctgatgctggctgaaaacaccgcggacgaagatgctgccgaagccgccgcgcaggtgctttccagcgtggaatctgaaatcgggcgcacgactgacccggtacgcatgtacatgcgtgaaatgggcaccgttgaactgttgacccgcgaaggcgaaattgacatcgctaagcgtattgaagacgggatcaaccaggttcaatgctccgttgctgaatatccggaagcgatcacctatctgctggaacagtacgatcgtgttgaagcagaagaagcgcgtctgtccgatctgatcaccggctttgttgacccgaacgcagaagaagatctggcacctaccgccactcacgtcggttctgagctttcccaggaagatctggacgatgacgaagatgaagacgaagaagatggcgatgacgacagcgccgatgatgacaacagcatcgacccggaactggctcgcgaaaaatttgcggaactacgcgctcagtacgttgtaacgcgtgacaccatcaaagcgaaaggtcgcagtcacgctaccgctcaggaagagatcctgaaactgtctgaagtattcaaacagttccgcctggtgccgaagcagtttgactacctggtcaacagcatgcgcgtcatgatggaccgcgttcgtacgcaagaacgtctgatcatgaagctctgcgttgagcagtgcaaaatgccgaagaaaaacttcattaccctgtttaccggcaacgaaaccagcgatacctggttcaacgcggcaattgcgatgaacaagccgtggtcggaaaaactgcacgatgtctctgaagaagtgcatcgcgccctgcaaaaactgcagcagattgaagaagaaaccggcctgaccatcgagcaggttaaagatatcaaccgtcgtatgtccatcggtgaagcgaaagcccgccgtgcgaagaaagagatggttgaagcgaacttacgtctggttatttctatcgctaagaaatacaccaaccgtggcttgcagttccttgacctgattcaggaaggcaacatcggtctgatgaaagcggttgataaattcgaataccgccgtggttacaagttctccacctacgcaacctggtggatccgtcaggcgatcacccgctctatcgcggatcaggcgcgcaccatccgtattccggtgcatatgattgagaccatcaacaagctcaaccgtatttctcgccagatgctgcaagagatgggccgtgaaccgacgccggaagaactggctgaacgtatgctgatgccggaagacaagatccgcaaagtgctgaagatcgccaaagagccaatctccatggaaacgccgatcggtgatgatgaagattcgcatctgggggatttcatcgaggataccaccctcgagctgccgctggattctgcgaccaccgaaagcctgcgtgcggcaacgcacgacgtgctggctggcctgaccgcgcgtgaagcaaaagttctgcgtatgcgtttcggtatcgatatgaacaccgactacacgctggaagaagtgggtaaacagttcgacgttacccgcgaacgtatccgtcagatcgaagcgaaggcgctgcgcaaactgcgtcacccgagccgttctgaagtgctgcgtagcttcctggacgattaatcggtaggccggatcaggcgttacgccgcacccggcactaggccctctgcacaaacgccaccttttcggtggcgttttttatcgcccacgcactaccagcgcctggtccagctcgcgatacgcttcaaccagtttctccagtgaaacgcgacttaaaccgctgggatttggcagcacccaaatctgcgtcgaaccaatggtgagcgtttgtttcccccactgtgcaccgcgctggctgaatccctgttcatatgcttgtttgcccagaatcgccaacgcctgcggctgataatcttcaattttttcaatcagcttacgcccgcctgcgtgtagctcctgctttgaaacttcattggcttgcaccgttggacggtctaccagtttggtgacgccacaacgataatccagcagatgctgtgcctcctgcggcttcaactgacggtcggtaaacccggcctgatatatcaccttccagaagcgatttgccggatgagcaaagggaaaaccagtcccggcggatgaaagcccagggttgataccgcaaaacacgacccgtaaccctggagccaaaatatcctcaaccatatttactcctttctaacatcaccaggaaaagtataacggattgaaaatacattgtttataaaaacagcaggcgcgcggtaatggctggattgcgacacggagttactttataatccgctaccatggccccttagctcagtggttagagcaggcgactcataatcgcttggtcgctggttcaagtccagcaggggccaccagatatagcaaaggctgacgagaaatcgtcagcctttttctttttatatatcagttactttgcgtgccagtaagccgctgcacgtacccgctgtgggtcatactgttccgcttcaaagcggcggcttaaattcttaacgactttaccttcgccggttatccagatgaagtaatcatcggcagggatttgcatctgcgccagacgcgcatctaccgcctgctcatcatgtgccagccattcgatattaaaaccatcaaggtgcgcgagataatcctgacaggcgttatcccgcacgctaaccagcgcactaacttgcggtttaacggcaagtttgctcaacgtttccaggcggcggcgcaatgcaggcattccggattcatcgcagacatacagctgatacgcgtaatcttccggcaccaccagcgaaccgcgcggacctgccaccgtaagtttatcgcccggttgcgcctgcatcgcccagccgctggcgaccccaccgtcgtgaataaagaaatcaatcgccagttcatggcgtagttcgtcatacagcggcgtatagtcacgcgacggtgggcgtggtccttccggccagacgatgccctcttccgttaccgttggcggcacaaagtgagcgtcaggttgaggaaagaagagtttgctgtgatcgtcaaagccacgcgatgtaaaaccgtccagcgcctcgccgccgaggacaatgcgctgaaaaccggcgctgatgcgctcaacgcgtaacacagtcagttcacggaagcgcagatcattgcgaacgcgctgcgggtagcggggggtgttattcattgttatcgccttcgtgatggtaatcagatatatctaaataaaactcgcaaatgataatgattgttaatcatgataaatgcaagcgatttgtagaactgatatgtctatagtctgataagacgaaccgcctcttctcaggcatcattactcaacgccggatgcggcgtgaacgccttatccggcctacgtgtgagatgagtccacgtttaaaaatcatttttacacttgcaagaacgctcatatcagatataaattagatatatctaattaagcaaaaggaggctgatatgagccatcatcacgaagggtgttgtaaacatgaaggccagccacgccatgagggctgctgcaaaggtgagaagtcagaacacgagcactgcggacacggtcaccagcatgaacacggtcaatgctgcggtggtcgccacggtcgcggcggcggtcgtcggcaacgtttctttggtcacggtgaattacgtctggtgattctggatattctctcgcgcgatgacagccacggttacgaattgattaaagcgattgagaatctaacccaggggaattacaccccaagcccgggcgtcatctacccaacgctggattttctgcaggagcagtcgctgattaccatccgcgaagaggaaggaggtaagaagcagattgcgctgaccgaacaaggcgcgcagtggctggaagaaaaccgcgaacaggtggagatgattgaagaacgcatcaaagcgcgttgcgttggcgcggcgctgcgccagaacccgcaaatgaagcgggcgctggataattttaaagcggtgctggatttacgcgtcaaccagagcgatatcagtgatgcacaaataaaaaagatcattgcggtgatcgaccgcgccgcttttgatattacgcaactggattaatcgccgcatccgccagtggcgcggtgcaattgccggatgcgacgcttgacgcgccttatccggcctacacccgctacacaccccgcaggcctgataagatgcgccagcatcgcatcaggcattgtgctccaaccgccggatccggcataccgattaatgcagtaccgtcaccgcgtcttccagtcggctggcgcggtgtttcaccatcgccgacacctgcgcactctcttccaccagctcggcatttttctgggtgatcaggttaagctcatccactgcacgggtcaggctggaaagcccatcggcctgttccagcgttgaatggctaatctgggcgatcaactgggtgacgtttttcacctgtgccacaatatcttccatcgtccgtccggcggcgtgtacctgctgcgaaccggattgcaccttatcagcactggcatcaatcagcttgcgaatatcgttggcagcattagcgctgcggctggctaaatgacgcacttcccctgccaccactgcaaaacctttgccctgttcgccggcacgcgccgcttccaccgccgcattcagggccagaatattggtctgaaacgcaatatcgttaatcagcgaagtaatggtgccaatgcgctgggtactgtcggcgatatcgtccattgtcttgatcaccgtggtcatcgcctccccaccctgcactgccgcattactggcagtgattgacagtttatcggcagccgacgccgtggcagagttctgtttcaccgacgccgccatttggttcatggtcgccaccgtttgctgaacgttatcaactgtctgctgggtatgttcgttcagttcatcggtgcctttcgccagcgtctcactgccatttctgacactggacacctggcttgagacatcgttaattagccaacggcacatcaggccaagttgccctaccgcacgtaatgtcagccccagctcatcgctgcgattcagatgctcaacactattacgttctccggtcgccaccttcagtgcctgatgggcaacattttctatcgggcgcacaatctgccattcaaaacaggcgcttgccaacaataccactaacgcacagaggatatacgtcaccaccggggcagcaacaaaccaaagcatggccgccagcaagataaacatcagggtcatcactccacgcgcccgccagcgaagcggtaatgaaggcagtttacccagccagcctttacgcaccaccaggcctttatgaatacgcttactggtacgtccggcgttcaacgctttgtacagcggctccaccgccgcgatctcttcatccgtcgcccgggtacgaatcgacatatagccactgatttttccctcgcgcaccatcggtaccgcattggcccgcacccaataatggtcaccatttttgcggcgatttttcacgatgccgctccagggctccccttttttcagggtgaaccacatatccgcaaacgccgcttttggcatatccgggtgacgcaccatgttgtgcggctgcccttgtaactcttgcaaggtatagccgctcacctgcacaaaagtgtcattagcatgagtgatatagctttgcagatcggtagtggacatcagagtggtatcgtccgccagcggggtattttgctgggtgacatacggatgagaagacatgttcgcgtcctgtgcaggttatatggttgttaacttcttgtcagagtttatgtcggccccgctgcggttatctttaaccgattaatttgatttagatcgcaatttgcgatttaaacacaaatctaattccttgatttaaaatactttcactctgttactatacgaaaacgttaattatcttgcccaaaaatcaggcaattattgccctgaaaacgtgcatttgcgcagcaatcatcaaatccatacccgacaaaaaccgtgcaaaataacaacaaatgttaacagatagcattaaatattgcacaaatgataaccgaatttgtgtttatcccgattttcgcgatcgcagccggagtggcgcaatccctgcaatacttaaatcggtatcatgtgatacgcgagcctccggagcatattttgaacaggttaccttcgagcgcatcggctttagcgtgcagcgcccacgccctgaatctcattgagaagcgaacgctggatcatgaggagatgaaagcacttaaccgagaggtgattgaatacttcaaagagcatgtcaatccggggtttttagagtatcgcaaatctgttaccgccggcggggattacggagccgtagagtggcaagcgggaagtttaaatacgcttgtcgacacccagggccaggagtttatcgactgcctgggaggttttggaattttcaacgtggggcaccgtaatccagttgtggtttccgccgtacagaatcaacttgcgaaacaaccgctgcacagccaggagctgctcgatccgttacgggcgatgttggcgaaaacccttgctgcgctaacgcccggtaaactgaaatacagcttcttctgtaatagcggcaccgagtccgttgaagcagcgctgaagctggcgaaagcttaccagtcaccgcgcggcaagtttacttttattgccaccagcggcgcgttccacggtaaatcacttggcgcgctgtcggccacggcgaaatcgaccttccgcaaaccgtttatgccgttactgccgggcttccgtcatgtgccgtttggcaatatcgaagccatgcgcacggctcttaacgagtgcaaaaaaaccggtgatgatgtggctgcggtgatcctcgaaccgattcagggtgaaggtggcgtaattctgccgccgccgggctatctcaccgccgtacgtaagctatgcgatgagttcggcgcactgatgatcctcgatgaagtacaaacgggcatggggcgcacgggcaagatgttcgcctgcgagcatgagaacgtacagccggatatcctctgccttgccaaagcgctcggcggcggcgtgatgccgattggcgcgaccatcgccactgaagaggtgttttcagttctgttcgacaacccattcctgcataccaccacctttggcggcaacccgctggcctgtgcggcggcgctggcgaccatcaatgtgttgctggagcagaacttaccggctcaggctgagcaaaaaggcgatatgttgctggacggtttccgtcaactggcgcgggaatatcccgatctggtacaggaagcgcgtggtaaagggatgttgatggcgattgagtttgttgataacgaaatcggctataactttgccagcgagatgttccgccagcgcgtactggtggccggaacgctcaataacgccaaaacgatccgcattgaaccgccactgacactgaccattgaacagtgtgaactggtgatcaaagcggcgcgtaaggcgctggcggccatgcgagtaagtgtcgaagaagcgtaatatcaaatcggatggcgatacgacgtcgccatccgatctttttatacgacgcgtacgcccgcaggcatcatccgctccggcgttaacagcacgctttcactgccgtcatcggtttccgcacacaacagcatgcattccgacgtttcaccacgcattttcgctttttgcagattgcataagaccaccaccgttttccccatcagctcttcttcgctgtagtacggcaccaggctggtcacggtttgcagcgttttttgccccacatcaacctgtacgatgtacagcttgtcggcgttttcatggcgtttcacttccacaatctttccgacgcgcatttccagacgtgcaaaatcagcgtaagccacggtttccattgcttcctcccttagggtaaaattttactaaactatagcaaaagtttttctcaatcctgtaggctaaaaatggagaatgcaggcgtgatcacattcgtgagccgctgtgttaccgttacagcgtcaaagaaacgcgctttatttactgaaaacaggtgacccgataagcacttcctctacaatgggggcgcacatcagggaaagtaaaaaaggtaaacatggcaacactaaaagacatcgcaatcgaagctggcgtatccctggcgacagtatccagggtcttaaatgacgatccgacattgaatgtgaaagaagagacgaaacatcgcattctcgagatcgccgaaaagctggagtacaagaccagtagtgcccgtaaactccagacaggtgcagtcaaccaacaccatattctggctatctacagctaccagcaggagctggagatcaacgatccttactatctggcgatccgccacggcattgaaacccagtgcgaaaagctgggcatcgagctcaccaactgttatgaacacagcggcttaccagacattaaaaacgtcaccggtattttaattgtcggcaaacccacgcccgccctgcgcgccgctgccagcgcgttgaccgacaatatctgttttatcgactttcacgaacccggcagcggttacgatgcggtggatatcgatctggcacgcatcagtaaagaaatcatcgacttctatatcaaccagggcgttaatcgtattggttttattggcggtgaagatgagcctggcaaggcggatattcgtgaggtcgcctttgcggaatatggccgactgaaacaagtggtacgcgaagaggatatctggcgcggcggtttttccagttcgtcgggttatgaactggcaaaacaaatgctggcgcgggaagactatccgaaggcactgtttgttgcttccgattccattgctatcggcgtactgcgggcaattcatgaacgaggcctgaacatcccacaggatatttcgcttatcagcgttaacgatatccccaccgcgcgatttacctttccgccgctctccaccgtgcgcatccattccgagatgatgggaagtcagggcgttaacctggtgtatgaaaaagcccgcgatggtcgcgcgctgccgctgttagtcttcgttcccagcaaattaaaactgcgcggcacgacccgttaaatccccttacacactgtccggcaatcgtttttgccggacagtgctgccgtttattttcgtgatccagttaaagtaaatgcatttacctgctactttttagtaaaaattttactaaactccccagcaattacacaaactaccatcaccatgaatggttccgatttctctctaccgggaggccctatgaatcgctgggaaaacattcagctcacccacgaaaaccgacttgcgccgcgtgcgtactttttttcatatgattctgttgcgcaagcgcgtacctttgcccgcgaaaccagcagcctgtttctgcccttaagcggtcagtggaatttccacttttttgaccatccgctgcaagtaccagaagccttcacctctgagttaatggctgactgggggcatattaccgtccccgccatgtggcaaatggaaggtcacggcaaactgcaatataccgacgaaggttttccgttccccatcgatgtgccgtttgtccccagcgataacccaaccggtgcctatcaacgtattttcaccctcagcgacggctggcagggtaaacagacgctgattaaatttgacggcgtcgaaacctattttgaagtctatgttaacggtcagtatgtgggtttcagcaagggcagtcgcctgaccgcagagtttgacatcagcgcgatggttaaaaccggcgacaacctgttgtgtgtgcgcgtgatgcagtgggcggactctacctacgtggaagaccaggatatgtggtggtcagcggggatcttccgcgatgtttatctggtcggaaaacacctaacgcatattaacgatttcactgtgcgtaccgactttgacgaagcctattgcgatgccacgctttcctgcgaagtggtgctggaaaatctcgccgcctcccctgtcgtcacgacgctggaatataccctgtttgatggcgaacgcgtggtgcacagcagcgccattgatcatttggcaattgaaaaactgaccagcgccacgtttgcttttactgtcgaacagccgcagcaatggtcagcagaatccccttatctttaccatctggtcatgacgctgaaagacgccaacggcaacgttctggaagtggtgccacaacgcgttggcttccgtgatatcaaagtgcgcgacggtctgttctggatcaataaccgttatgtgatgctgcacggcgtcaaccgtcacgacaacgatcatcgcaaaggccgcgccgttggaatggatcgcgtcgagaaagatctccagttgatgaagcagcacaatatcaactccgtgcgtaccgctcactacccgaacgatccgcgtttttacgaactgtgtgatatctacggcctgtttgtgatggcggaaaccgacgtcgaatcgcacggctttgctaatgtcggcgatattagccgtattaccgacgatccgcagtgggaaaaagtctacgtcgagcgcattgttcgccatatccacgcgcagaaaaaccatccgtcgatcatcatctggtcgctgggcaatgaatccggctatggctgtaacatccgcgcgatgtaccatgcggcgaaagcgctggatgacacgcgactggtgcattacgaagaagatcgcgatgctgaagtggtcgatattatttccaccatgtacacccgcgtgccgctgatgaatgagtttggtgaatacccgcatccgaagccgcgcatcatctgtgaatatgctcatgcgatggggaacggaccgggcgggctgacggagtaccagaacgtcttctataagcacgattgcattcagggtcattatgtctgggagtggtgcgaccacgggatccaggcacaggacgaccacggcaatgtctggtataaattcggcggcgactacggcgactatcccaacaactataacttctgtcttgatggtttgatctattccgatcagacgccgggaccgggcctgaaagagtacaaacaggttatcgcgccggtaaaaatccacgcgcgggatctgactcgcggcgagttgaaagtcgaaaataaactgtggtttaccacgcttgatgactacaccctgcacgcagaggtgcgcgccgaaggtgaaacgctcgcgacgcagcagattaaactgcgcgacgttgcgccgaacagcgaagcccccttgcagatcacgctgccgcagctggacgcccgcgaagcgttcctcaacattacggtgaccaaagattcccgcacccgctacagcgaagccggacaccctatcgccacttatcagttcccgctgaaggaaaacaccgcgcagccagtgcctttcgcaccaaataatgcgcgtccgctgacgctggaagacgatcgtttgagctgcaccgttcgcggctacaacttcgcgatcaccttctcaaaaatgagtggcaaaccgacatcctggcaggtgaatggcgaatcgctgctgactcgcgagccaaagatcaacttcttcaagccgatgatcgacaaccacaagcaggagtacgaagggctgtggcaaccgaatcatttgcagatcatgcaggaacatctgcgcgactttgccgtagaacagagcgatggtgaagtgctgatcatcagccgcacagttattgccccgccggtgtttgacttcgggatgcgctgcacctacatctggcgcatcgctgccgatggccaggttaacgtggcgctttccggcgagcgttacggcgactatccgcacatcattccgtgcatcggtttcaccatgggaattaacggcgaatacgatcaggtggcgtattacggtcgtggaccgggcgaaaactacgccgacagccagcaggctaacatcatcgatatctggcgccaagccgtcgatgccatgttcgagaactatcccttcccgcagaacaacggtaaccgtcagcatgtccgctggacggcactgactaaccgccacggtaacggtctgctggtggttccgcagcgcccaattaacttcagcgcctggcactatacccaggaaaacatccacgctgcccagcactgtaacgagctgcagcgcagtgatgacatcaccctgaacctcgatcaccagctgcttggcctcggctccaactcctggggcagcgaggtgctggactcctggcgcgtctggttccgtgacttcagctacggctttacgttgctgccggtttctggcggagaagctaccgcgcaaagcctggcgtcgtatgagttcggcgcagggttcttttccacgaatttgcacagcgagaataagcaatgaggatcatcgataacttagaacagttccgccagatttacgcctctggcaagaagtggcaacgctgcgttgaagcgattgaaaatatcgacaacattcagcctggcgtcgcccactccatcggtgactcattgacttaccgcgtggagacagactccgcgaccgatgcgctatttaccgggcatcgacgctattttgaagtgcattactacctgcaagggcagcaaaaaattgaatatgcgccgaaagagacattacaggtagtggaatattatcgtgatgaaactgaccgtgaatatttaaaaggctgcggagaaaccgttgaggtccacgaagggcaaatcgttatttgcgatatccatgaagcgtatcggtttatctgcaataacgcggtcaaaaaagtggttctcaaagtcaccatcgaagatggttatttccataacaaataacaactacggcggcaaaaggagtttgccgccaccgctaccctactcattttcggagatgtgttatgtctgataccaaacgtaatacaatcggcaaattcggcttgctctcgctgacttttgccgccgtttacagctttaacaacgttatcaataataatattgagcttggactggcctcggcaccgatgtttttcctcgcgacgattttttattttattcccttctgtctgatcatcgcagaatttgtttcgttaaataaaaactcagaagccggtgtctacgcgtgggtaaaaagttcgctgggcggacgttgggcatttattactgcctatacctactggttcgtaaacctgttctttttcacctcactgttgccgcgcgttattgcttatgcttcgtatgccttcctcggatacgaatatattatgacgccggttgccaccaccattatcagtatggtgctgttcgccttctccacctgggtttccaccaacggggcgaaaatgttggggccaattacctccgtcacttcaacgctgatgctgctgttaacgctctcctacattttactggcaggtacggcgctggttggcggcgtacagcctgctgacgccatcaccgttgacgcgatgatcccgaacttcaactgggcgttcctcggcgttaccacctggatctttatggccgcaggtggcgcggagtccgtcgctgtgtacgttaacgacgtcaaaggcggttcgaaatcgttcgttaaagtgatcatcctcgccgggatttttatcggcgtactgtattccgtctcctcggtgctgattaacgtcttcgtcagcagcaaagagttgaaatttaccggcggatcggtgcaggtattccacggcatggcggcgtattttggtctaccggaagcgttgatgaatcgctttgtcggtctggtgtcctttaccgcgatgttcggttccctgctgatgtggaccgcaacgccggtgaaaattttcttctccgaaatcccggaaggcatctttggtaagaaaaccgtcgaactgaacgaaaacggcgttccggcgcggcgcagcgtggatccagttcctgatcgtcatcccgctgatgattatccgatgctcggttccaataccgtgcaggatctgatgaatactattattaatatgaccgccgcagcgtccatgcttccgccgttattcatcatgctggcttacctgaatttacgcgccaaattagatcacctgccacgcgatttccgtatgggctcccgccgcaccggtattatcgttgtttcaatgctgattgcgatatttgccgtagggtttgtcgcttcgacattcccgactggcgcgaatattctgaccatcattttttataacgtcggcggtattgttatcttccttggctttgcgtggtggaaatacagtaaatatataaagggattaacggctgaagagcgccatattgaagcgacgccagccagcaatgttgattaagcagaataataaaaaatgagcaggcattttccctcttcctggatgaggagagggaaaatagtttctgcctttatatttttataattacaacgataaaaggctgtactttttctttagctcatggattaacacaatgaaattaatcactgcaccatgcagagcattacttgctctgccgttttgctacgccttttctgcggcaggagaagaagcacgtccggcagaacatgacgacacaaaaacacccgcaattacctcgacatcttctccttcatttcgtttttacggcgaattaggggttggtggatatatggatttagagggtgagaataaacataaatacagcgacggtacctatattgaaggtggcctggagatgaagtacggctcctggttcggcctgatttacggcgaaggctggaccgtgcaggccgaccacgacggcaatgcctgggtgccagaccatagctggggtggtttcgagggcggaattaaccgtttctatggcggttatcgtaccaatgatggcaccgaaatcatgctcagtctgcgtcaggattcctcgctggatgacctgcaatggtggggcgatttcacccccgatctgggctacgtcattcccaatacccgcgacattatgactgcgctgaaggtacagaacttaagcggcaactttcgttatagcgtcaccgcgactcctgccggacatcatgatgaaagcaaagcctggctacattttggcaaatacgatcgctatgacgacaaatacacctatccggcaatgatgaacggttacatccagtatgaccttgccgaaggcatcacctggatgaacggtctggaaatcaccgacggcacaggacagctctatctcacgggcctgctaactcctaactttgccgctcgcgcctggcaccataccggacgcgccgacgggctggacgtaccgggaagtgaaagtgggatgatggtgagcgccatgtatgaagcgttaaagggcgtttatctctccaccgcttacacctacgccaaacatcgccctgaccacgctgacgatgaaaccacctctttcatgcagtttggtatctggtacgaatacggcggcggacgtttcgccacggcttttgatagccgcttctacatgaaaaatgcctctcacgatcccagcgaccaaatcttcctgatgcaatatttctactggtaataaggactgtaatttcatgaaaataaaaactattttaacgccagtaacctgcgctctgctgataagtttttccgcccatgccgctaacgccgacaattataaaaacgtgattaaccgtactggcgcgccgcagtacatgaaggattacgattacgacgatcaccagcgttttaatccgtttttcgatctcggagcctggcatggtcatctgttgccagacggccctaacaccatgggcggctttccgggcgttgcgctgctgacggaagagtacatcaactttatggccagcaatttcgaccgcctgaccgtctggcaggacggcaagaaagtcgactttacgctggaggcatacagtattcccggtgcgctggtgcaaaaactgacagcaaaagatgtgcaagtcgaaatgactctgcgcttcgccacgccgcgcacgtcactactggaaaccaaaatcaccagcaataaaccgctggatctggtgtgggacggcgaactgctggaaaaactggaagcgaaagaagggaaaccgctttccgataaaaccattgctggcgaataccctgactatcagcgcaaaatcagcgccacccgtgatggcctgaaagtcacctttggcaaagtgcgcgccacctgggatctgctgacctccggcgaatcggaatatcaggtgcataaatccctgccggtgcagactgaaatcaacggtaatcgctttaccagtaaggcgcatatcaacggttcgaccacgctctacaccacctattcccatctgctgaccgctcaggaagttagcaaagagcaaatgcagatccgcgatattctggcgcgtccggcgttttatctcaccgcctcgcagcaacgctgggaagaatacctgaagaaagggttaaccaatccggatgcgacgccggaacagacgcgcgtcgcggtgaaagcgatcgaaacgctcaacggtaactggcgctcaccgggcggtgcggtgaaatttaacaccgttacaccgtcggtgaccgggcgctggttctccggcaatcagacctggccgtgggatacctggaagcaggcgtttgcgatggcgcatttcaatccggacatcgccaaagagaatatccgcgcggtcttctcctggcagatccagcctggcgatagcgtgcgtccgcaggatgtgggctttgtccccgacctgatagcgtggaaccttagccccgagcgtggtggcgatggcggcaactggaacgaacgtaataccaaacccagccttgccgcctggtcggtgatggaagtgtataacgtcacccaagataaaacctgggtggcagagatgtacccgaaactggtggcctatcacgactggtggttacgtaaccgcgatcacaacggcaacggcgtgccggaatatggcgcgacccgcgacaaagcccacaacactgagagcggcgagatgctgtttacggtgaaaaaaggcgataaagaagagacgcagtctgggctgaacaactacgcccgcgtggtggagaaaggccagtacgacagtctggaaattccggcacaggttgctgcatcgtgggaatcggggcgtgatgatgccgccgtctttgggtttatcgacaaagaacagttggataaatatgtcgctaatggcggcaaacgtagcgactggacggtgaaattcgccgaaaaccgcagtcaggacggaacgttgctgggctactcgctattgcaggagtcggtggatcaggccagctatatgtacagcgataaccattatctggcggagatggcaaccatcctcggtaagccagaagaggccaaacgctatcgccagttggcacagcagctcgcggactacatcaacacctgtatgttcgacccgactacccagttctactatgacgtacgtattgaagataaaccactggcgaacggctgcgcgggcaaaccgattgttgagcgcggtaaagggccggaaggctggtcgccgctgtttaacggtgcggcaacgcaggccaatgccgacgcggtggtgaaggtgatgctcgatcctaaagagttcaacacctttgtcccgctgggaacggcggcgttaaccaatccggcttttggcgctgatatctactggcgtgggcgcgtatgggtggatcagttctggtttggtctgaaagggatggagcgttacggttatcgtgatgatgccctgaagctggcggatacgttcttccggcacgccaaagggttaaccgccgatggaccaattcaggaaaattacaacccgctgacaggcgcacagcaaggcgcaccaaatttctcctggagtgccgcgcatttgtatatgttgtataacgattttttccgtaagcaataatttgcaactgctggcggatgcggcgtaaacgccttatccgccctacatgtgcaatcctcctggccggataaaacgcggcaagcgttgcatccggcaactgcaccgcgccactggcggatgcggcgtgaacgccttatccgccctacatgtgtgttcccgtaggtcggataagacgcgacaagcgtcgcatccggcatctgcaccgcgccactggcggatgcggcgtggacgccttatccgccctacatgtgcaattccgtaacctggataaaacgcgacaagcgtcgcatccggcgttatcaccgggcgtattctttttgaatcccatcacaaaccccgcactccccttttcccttttctccggcgacggctaaattagaactcatccgaccacataacaattattttacatactggacaattttatgagctacccgtcgctgttcgccccgctggatttaggttttaccacgttaaaaaaccgcgtgttgatgggctcaatgcacaccgggctggaggaatacccggacggtgccgagcggctggcagcgttttatgccgaacgcgcccgtcacggcgtggcgctgattgtcagcggcggcattgcaccagatttaacaggcgttggcatggaaggtggcgcaatgctcaacgacgccagccagatcccacaccatcgcaccattaccgaagcggtacatcaggaaggcggcaaaatagccctgcaaattttgcataccgggcgctacagctaccaaccgcatctggtcgccccgtccgcattgcaggcccccatcaaccgtttcgtgccccatgagttaagccatgaagagatcctgcaactgatcgacaatttcgcccgctgcgcgcaactggcgcgggaggcaggatacgacggtgtagaggtgatgggttccgaagggtatttgatcaacgaatttctgacgctgcgcaccaatcagcgtagtgaccagtggggcggcgattaccgcaaccggatgcgatttgccgtagaagtagtgcgtgcggtgcgcgaacgcgtcggcaacgacttcattattatctaccgactgtcgatgctcgacctggtcgaagacggcgggacttttgccgaaacggtagagctggcgcaggccattgaagcggcgggcgcgaccattatcaacaccggcattggctggcatgaagcacgtattccgaccattgccacgcccgtgccgcgcggcgcatttagctgggtcacgcgcaaactgaaaggccacgtctcgctgccgctggtaaccaccaaccggattaacgatccgcaggttgccgacgatattctctcgcgcggcgatgccgatatggtatcgatggcgcgaccgtttcttgctgatgcggagctgctgtcaaaagcgcaatcgggacgagccgatgagatcaacacttgtattggctgcaatcaggcctgtctcgatcaaatcttcgttggcaaagtcacctcgtgcctggtgaatcctcgcgcctgccacgaaaccaaaatgccaatccttcccgccgtgcagaaaaaaaatctggcggtggtcggtgcgggacctgctgggctggcgtttgccattaacgcggcggcgcgtgggcatcaggtaacattgtttgacgctcatagcgagattggcgggcagtttaatatcgccaaacagatccccggcaaagaggagttttacgaaacgctgcgctattaccgccggatgatcgaagtgacgggcgtgacgctaaaactcaatcacaccgtgacggcggatcagttacaggctttcgatgaaacgatcctcgccagtgggatcgtgccgcgcactccgcccatcgacgggatcgatcatccgaaggtattgagttatctcgatgtactgcgcgacaaagcgccggttggcaacaaagttgccatcatcggttgtggcgggattggttttgatacggcgatgtatttaagtcagccgggcgaatccaccagccagaatatcgccgggttctgtaatgaatgggggatcgacagtagcctacaacaggctggtggcttaagcccgcagggaatgcagatcccccgtagcccacggcagattgtgatgctccagcgcaaagccagcaaaccaggacaggggttaggcaaaaccaccggctggatccatcgcaccaccctgctctcgcggggtgtgaaaatgatcccaggcgtaagttatcagaagattgacgatgacgggctgcatgtggtgatcaacggcgaaacgcaggtattagcagtggacaatgtggtgatctgcgcagggcaagagccaaaccgcgcgctggcgcaaccgctgattgatagcgggaaaacggtgcatttaattggcggctgcgatgtggctatggagctggacgcacgacgggcaattgcccagggaacacggctggcgctggagatttaaatcgttatttgaagcagccggaatcgcatccggcacgtcgcgttaatcaataaacaaggcgggagaaatgccgaatcgcgttgccaattttttagcgtgttccagcgttaatttcctcttcccgctcaaaacgcgtgacaccatagatttactgccaatttccggcagatcggaaagggttaaaccatattgatccataagggtacgaatcacggctataccgccaggcatggcttgagccatggcattaaattccgcaaattcgggcgctgattcttcccacgcggttattttggcacacaccagatccagcaaggggttttcaggatcgttgagcagcagatgatctaccagttccagcgcctgggtgtattgttcctcgttctgaatacccgccagaaaaggtgccacagcagttagcttttctcctgcttgcaagatgtcggcaatcgcaatcattttttccccttagtacgatgaacagcggtaaagaaatcgtattctttatgcgtcataacttcacgtatgtagcacttttgcgattcaaaaaagaccattgctacaacacgtaattcattgcccccaacattgaaaacataatgcttatccagatatttgaagttatccagagatgggaatactgcttttaatgactcaggttttttgaaatatcccttagcaatcgtgttccccagagccaccaactccgttttatgttgcgggtatttttccgcagcatctttcaatgctttttgagttatcaggtgcattcttcatcacgtccgttgacaaattggcaatatgataacatccgttgccagattggcaacggatgaatttatctgtgtgacggaagaataaacgtagaaaaacgctaaacaagagaatgtagacgatggtgacagggattttttgttttatggaagcgcgattccagaactgggcagacattgccggatgcgacgcttgccgcgtcttatccggcctggagtaacgtgctgaacgtaggccggataaggcgtttacgccgcatccggcaggtaactcccaatcttaccgacgacgtcccagcttcaccgctttcagtaccacaaatttattattcgtcgcaatagtggtgcagttgccgaaaatcttcttcagtttatggaagtaatccaggtgacggttggcaacgatatacagctcgccgttgattttcaggcagcggcgggcgtggtggaacatctcccaggcgacgttatcggtcagcgcatgttgttggtgaaacggcgggttgcagagcacagcattaaagcggaaaggctccacgccggagagcgcgttgttgatcataaactcgcagcgatccaacgcctctggcatgttggtttcaacgttcaaacggctggaagcaaccgccatcggcgattcatcgacaaacaccactttcgcctgcgggtttttatcaagcagcgtcagaccaataacgccattaccgcaaccgagatcgacaatctccccttcgagattctctggcagatgttgcataaagaagcgcgcgccgatatcaagcccggtgcgggagaagacattcgcatggttgtggatagtccagtcagtaccttccagcttccagctaacggtctgcggcgcatcggccagctgcggttcattgaaagtgcaattaatcaggcgcgcttttttccatgccagcgtggtggtggttgggccgagcactttttcgaacagttccagcgtggaagtgtgaatgtcacgggccttggcaccggcaataatacgtgtatccgacgtgaccactttgcgcagcgcacgcagttgctgttccagcaatgccagtgttttcggcactttgatcagcaccacacccggctgttgcgggtagtcggcggtgctgtcgagaaacttcacgctcgactcatcaatcccgttgaggcgtaaattctcgcgcgtcgccagttcactgatgtatgagtcgccaatgctgtacggcttatgttccgccagtgcgcagcttaacgcaccaaaggcatcattcaggatcaacaccgggccgcggatttctgtgtcgtccaactgttgcagcaaatattcatccgccgcttcccacgcctgtagcgggttaacgtcatccgtcgccggaaaacgttgtagtgtcagtgaacggaaaccgttgtctaagtggctcatcggccctcctgaatgataaaatttcgacattgcccctgaaaagggtgcgtgagtataccctttttctctttttcgtgggcggttatgagcaatcttacttatcttcagggttatcccgagcagctactttcccaggtgcgaacactgattaacgaacagcgtctgggcgatgtgctggcaaaacgctatccgggaacacacgactacgccaccgataaagccctctggcaatatactcaggatctgaaaaatcagtttctgcgtaatgccccgccgatcaataaagtgatgtatgacaataagatccatgtgctaaaaaacgcgctcgggttacataccgctgtttctcgtgtgcagggcggcaagctgaaagcaaaggtggagatccgcgtcgctaccgtgtttcgcaacgcgccggaaccgtttttgcgcatgatcgtggtgcacgagctggcgcacctgaaggagaaagagcataacaaagcgttttaccagttgtgttgtcatatggaaccccagtaccaccagcttgagttcgacacccgactgtggctaacgcagttgtcgcttgggcagaacaaaatctgaaaatgatgtcaggcgttatcttttctttctttagcgcctaaaatcgacctcccccctttcgttaaggataacgaccatgctgcgcgcatttgcccgccttcttctccgtatttgtttttctcgccggactctaaagattgcctgcttactgttacttgtggcaggagcgaccatccttatcgccgatcgcgtaatggtcaacgccagcaaacagctgacctggagcgatgtcaacgccgttccggcgcgtaacgtgggtttattgctgggggcgaggccgggtaatcgctactttacccgacgtattgataccgcagcagcgttgtaccacgccggaaaagtgaaatggctgctggtaagtggcgataacggacgtaaaaattacgatgaagcatcaggtatgcagcaggctttgatcgctaaaggcgtaccagcaaaagtgatcttctgcgactatgccggattctcaacgctggattcggtagtgcgtgccaaaaaggtttttggtgaaaaccatatcaccattatctcgcaagaatttcataatcaacgcgccatctggctggcaaaacagtacggcatcgacgctatcggttttaacgcgccagacctcaatatgaagcacggtttttatactcaactgcgggagaaactcgctcgtgtcagcgccgtgattgacgccaaaatcctccatcgccagccgaaatatctcgggccttcggtcatgattgggccgtttagtgagcatggctgtccggcgcagaaataatgcgtatctgcgcacgtcgaagatgaaaaaggcgtgctacattgacgacagaatccctttatggagtatccacgcgttatgatacgtttcgctgtgattggtacgaactggatcactcgccagttcgtcgaggccgcccatgagagcggtaaatacaagttaaccgccgtatattcccgcagccttgaacaggcccagcacttcgccaatgatttttctgtcgagcatctgtttacctcgctggaagcgatggcggaaagcgatgccattgacgcggtgtatattgccagcccgaattccctgcatttttcccagacacaacttttccttagccataaaattaatgtgatttgcgagaaaccgctggcgtcgaatctggcggaagtggatgccgccattgcctgtgcgcgggaaaatcaggtggtgctgtttgaggcatttaaaaccgcctgcctgccgaactttcatttgttgcgccaggcgctgccgaaagtcggcaaactgcggaaagtctttttcaactattgccagtattcctcgcggtatcaacgttacctggatggtgagaatcccaacacctttaatccggcattctctaacggttcaattatggatatcggtttttactgtctggcgtcggcggtggcgttatttggtgagccgaaaagcgtgcaggcaaccgccagtttgctggcaagcggcgttgaccgcagggcgtggtggtgatggattacggtgatttcagcgtcaccttgcagcactcaaaagtcagtgattctgtcctggcgagcgagattcagggcgaagcaggatcgctggtgattgaaaaactgtctgaatgccagaaagtgtgcttcgtgccgcgtggcagccaaatgcaggatctcacccagccgcagcatattaataccatgctctacgaagcagagctgttcgctaccctggtggatgagcatctggtggatcatccagggctggcggtcagtcgcatcaccgccaaactgctgaccgagatccgccgccagactggggtgatttttccggcagatagcgtaaaactataattgccaaagtaaaacagtgtaaaaggtatgtaacagaccattgactggctgaatggtctgtcatactttgttacctgcaaaggggagtaacttcattgccggtcgatcgtcattacgatgtgtgaaaaaacacatccggtcaccgggcaacccgaaaggaatacgcagacgtattccttttttgttgtaagtgagaccttgccggaaggcgaggtctatgcataaaaagcagcggctggacgtcttccgacgttggccgtttttttatgtgtaaggaacttctatgaatactgtcggcacgccgttgctatggggcggattcgctgttgttgtcgccattatgctggctatcgacctgttgttgcaggggcgtcgtggggcacatgccatgaccatgaaacaggctgcggcctggtcgctggtctgggtgacgctgtcgttactgtttaacgccgctttctggtggtatctggtgcaaaccgaaggtcgcgccgttgccgatccacaggcactggcctttctcacaggttatctgattgagaaatcgctggcggtcgataacgtctttgtctggctgatgttgttcagctatttctctgttccggcggcattacaacgccgcgtgctggtgtatggcgtgctcggggcgattgttctgcgtaccatcatgatcttcactggcagctggctaatttcgcagttcgactggatcctgtatatcttcggtgccttcctgctgtttaccggcgtgaagatggcgctcgcccatgaagatgaatcaggcattggcgacaagcgctggtgcgctggctacgcggttcatttgcgcatgaccgacaccatcgacaacgagcatttctttgtgcgtaagaatggattgctgtacgccacaccgctgatgctggtactgattctggtggaattgagcgacgtgattttcgccgtggatagcattccggctatcttcgccgtgaccactgacccgttcattgtgctgacctcaaacctgtttgcgatcctcggcctgcgtgcgatgtatttcctgctggcgggcgtagcagagcgtttctcgatgctcaaatatggcctggcggtgattctggtgtttatcggtatcaagatgctgattgtcgacttctaccatattccaatcgccgtctcgctgggcgtggtgtttggcattctggtgatgacgtttattatcaacgcctgggtgaattatcggcatgataagcagcggggtggataatttttaatctgcctaagccgtgtaccctgtcattaacatgagcaccgttttctcctctccttccagggagagggtcggggtgagggtaatttttcgcaccgatgctggcctgttcccctcaccctaaccctctccccaaacggggcgaggggactgaccgagtccttttttgatgttgtcatcagtctggaagccgcacgttggctttatttttatgtcaaagaaatgtaaccattaagtttcaaaatatgacctctctttaaaatccagcatttttcgcttcccgaagctgtaactttccttatactcgaccttgcaaacactttgttacatcctgaaagatgcgtcgacagaacgcaccagggatgtgcgacaacacaatgaaaggatcgaaaaatgactacgcaacgttcaccggggctattccggcgtctggctcatggcagcctggtaaaacaaatcctggtcggccttgttctggggattcttctggcatggatctcaaaacccgcggcggaagctgttggtctgttaggtactttgttcgtcggcgcactgaaagccgttgcccccatcctggtgttgatgctggtgatggcatctattgctaaccaccagcacgggcagaaaaccaatatccgccctattttgttcctctatctactgggcaccttctctgctgctctggccgcagtagtcttcagctttgccttcccttctaccctgcatttatccagtagcgcgggtgatatttcgccgccgtcaggcattgtcgaagtgatgcgcgggctggtaatgagcatggtttccaaccccatcgacgcgctgctgaaaggtaactacatcgggattctggtgtgggcgatcggcctcggcttcgcactgcgtcacggtaacgagaccaccaaaaacctggttaacgatatgtcgaatgccgttacctttatggtgaaactggtcattcgcttcgcaccgattggtatttttgggctggtttcttctaccctggcaaccaccggtttctccacactgtggggctacgcgcaactgctggtcgtgctggttggctgtatgttactggtggcgctggtggttaacccattgctggtgtggtggaaaattcgtcgtaacccgttcccgctggtgctgctgtgcctgcgcgaaagcggtgtgtatgccttcttcacccgcagctctgcagcgaacattccggtgaatatggcgctgtgtgaaaagctgaatctggatcgcgatacctattccgtttctattccgctgggagccaccatcaatatggcgggcgcagcaatcactattaccgtgttgacgctggctgcggttaatacgctgggtattccggtcgatctgcccacggcgctgctgttgagcgtggtggcttctctgtgtgcctgtggcgcatccggcgtggcgggggggtctctgctgctgatcccactggcctgtaatatgttcggtatttcgaacgatatcgccatgcaggtggttgccgtcggctttatcatcggcgtattgcaggactcttgcgaaaccgcgctgaactcttcaactgacgtgctgttcactgcggcagcttgccaggcagaagacgatcgtctggcaaatagcgccctgcgtaattaattgtttaacccctttcgtctacggcggaaggggttttctcaactttaaacggatcaattccccttttctgcatccgccagaaacgaatgatattcaggccattcataagcagaaaactaccctcaatcatcgtgccgcctatcgaccccgcccagaagttgtgaatcacccagcaacacgttgaaaaccacattacgcagcgcatggtcagccctttacagcagaatagcgcccaggtactgacaatcgtgccgataaccggcaatagttcgacaggatgatggaacttcgcgaggccaattccgccagtcagcacaataaaaatcgccattacccataagctgcgcgtgcgtaaggtaatcaatgtacgaatggcattaaggatggcactggcaccagcgggataggtgcccagaagaaaaaaatgtacgccaataacggcgctatagaccgaaagctgctttttgaagcgacgttcgtcacgattgaaaaatgttgtgataccaatcagaaaggcgatgacacccacgccctgggccagccaatacgcggtcatgataaatccttagcaggtatggaaaagcaaacggcgcttcacattatgaaacgccgttttttattaacaactcatttcgactttatagcgttacgccgcttttgaagatcgccagttcgcggaagtcgttacgctcgttacaggtttgcttaccgttggcaaactcaacgatggtgtcgataaattcttccagcaactgcggcatcgctttaccgtggatcaactgacccgcgtcaaagtcgatccagtgttttttcttcgccgccagttcactgttggtggcgattttcaccgtcggcacaaatccaccatacggcgtgccacgaccagtactgaacagcaccatatggcagcccgcacccgccagggcgctggtcgctacggcatcgttacccggcgcacttaacaagttcagccctggcgttttcagacgctcgccgtaacgcagcacgtcaaccacgacgctggaacccgctttctgggtacagccaagtgatttgtcttccagcgtggtgataccgcccgctttgttccccggcgatgggttttcatagatcggctgatcatgggcaataaagtactgtttgaagtcgttgaccatggtgaccagtttttcaaacgttgcttcgtcgcggcaatggtccatcagcaactgctctgcgccaaacatctccggcacttcggtcagtacggtagtaccgccgttagcaatcacgtagtcagagaaacgccccagcatcgggttagcagtaataccagaaagaccgtcagaaccaccgcactccagaccaaacttcagttcgctgagtttgcctggctcgcgtttatcgttgcgcatcacgttatacagctgatgcaaatgctcgattccggcttcgatctcatcatcctgctgttggcagatcatgaaatgaacgcgttcaggatcgatatcgcccagcgtttcacggaatgcggcaacctggttgttttcacagcccagaccaatcaccagcactgcgcctgcgttcgggtggcgcaccatgttttgcagcatggtgcgggtattaatgtgatcgtcgcccagctgtgagcagccgtaggtgtggctgaagaggaacacgccgtcagtaccttcggcgttgttggtctctttcagaaaacggttctggatctgccgcgcgatgccgttgacacagcccacggttggcaggatccacagctcattacgcaccccgacatcgccgttagcgcgacgatagatctgcacttcacgatctgccgcttgcgcaggcagatcctgaaaatcaggttgatagcgatactgatccagatcgctcagattcgtgcgcgtattgtgggcgtgaacgtgaacacctgccgcaatatccgccaatgcataaccaatcggcaggccatatttgatgacattggccccttttgcgatatccgttaacgcaaatttatgtccacgagcaacatcctggcgcagcgtaacagtctggttatcgacactgacttctgtgccttcagccaaatctgctaaagcgaccgcgacgttatccagcgcatggatcttgatgtattgcatatcaaccccagaccttagttcagttcaatggcgaagtagtcacgcgcattgttaaagcaaatatttttcaccatctcgcccagcaggttgatgtccgccggtgcttcgcccgcttccacccagcgaccgatcatctggcacagaatgcggcggaagtattcgtgacgggtgtatgacaggaagctacggctgtcagtcagcataccgacaaagcggctcagcagaccgagctggcgccagttgggtcatctgacgttccataccgtctttctgatcgttaaaccaccagccggaaccgaactgcattttgcccggcataccttcgccctggaagttaccgatcatggtgcccagcacttcgttatcgcgcgggttcaggcagtacagaatggttttcggcagcaggttttcttcattctgcttgctcagcaacttagacagctcttccgccatcggacggtccgttgatggagtcaaagcctacatccggccccagcagtttgaactgacgcaggttgttattacgcagcgcgccaatgtggtactgctgtacccagccgcgacgtgcatattcggcaccaaggaacaccagtaccgcagttttgaactgcgccacttcgtgctcgctcagggtttcgccagccagacggcgcgccagaatgctgtccagttccgcttcgttcgcttcagcaaacatcaccacatccagcgcgtggtcagacactttacagccgtgagcggcgaagtgatccagacgtttggtcagggcagtttgcaggtcagcaaagcggcgaatgtcggtatcggaaacttcgcccagcttcgccatgtagtcgttaaaggtcgcctgttcgatgttgaaggctttgtccggacgccagctcggcagcactttgatggtgaaagagccgtctttggcgatctctgcgtgatgctccagagaatcgatcgggtcatcggtggtgccgaccattttcacgttcatctgctgcatgatgccgcgcgcggagaagttatcctgcgccagcagttcgttacattcgttccagatttcatcggcagttgacggagaaagcaatttgccagtgataccaaacggacggcgcagttcgaggtgcgtccagtggtataacgggttgccgatagtgtgcggaacagtcgccgcccaggcgtcaaatttttcacggtcagacgcatcaccggtacacagacgctcggccacaccgttggtacgcatagcgcgccatttgtagtgatcgcctttcagccagatgtcatacaggtttttaaaacgatagtcttccgcaatctgctgcggcggcaaatggcaatggtaatcgaaaatcggctggtcttttgcgtagtcgtgatacagacggcgggcaaattcggtatctaacaggaaatcttcagtcataaacggagtcattttcgtcttcctctcaacgagtgagctagcttgcttatggtgcgatgctgacaaagttatcacaccaatttccagagtccgaagatattttcgtgagttagatcaataaacgtagttaaaaaaattactctcaaagtggtaaatctcgctgcaggccgcgccagtactggccttgctgtcgtcaggtaatgtccctacaaatattcccacatttgtgatggctctcaccttttaaagttgtatgacaagttatctttctgccgtcgcaaatcataagtcgacggaatgcaaattgccgattcattcatttgttagatgaatcgggttaaccggtacggaagccgaattagcacgaaactttcatggcaacgttcggggcgtgccggttttttttcggttacccggtcgtaactaacatcttcagcctctggcgggatgatggccgcgcttcctgcggatataacaaaacgatgaggttttacatgcgtaaaattaaagggttacgttggtatatgatcgcactggtgacgctcggcaccgtgcttggttacctgacgcgtaacactgtggcggcacgtgcgccaactctgatggaagagttaaacatctccacccaacagtattcctatatcatcgcagcctattctgctgcttatacggtcatgcaaccggtagcaggttatgtactggatgtgctgggtacgaaaatcggttatgcaatgtttgctgtgctgtgggccgtgttctgtggtgcaaccgcgctggcaggtagctggggtggcctggctgttgctcgtggtgcggtcggtgccgcggaagcagcgatgatcccggcgggtctgaaagccagctccgaatggttcccggcgaaagagcgttccatcgcagtaggctactttaacgtaggttcttcgattggtgcgatgattgcgccgccgctggtggtatgggcaatcgtaatgcacagctggcagatggcatttatcatctccggtgcattgagctttatctgggcgatggcatggctgattttctataaacatccgcgcgaccagaagcatctgaccgatgaagaacgcgactatattattaatggtcaggaagcccagcaccaggtgagcacggcgaagaaaatgtccgttggtcagatcctgcgtaaccgtcagttctggggtatcgcgctgccgcgtttcctggcagaaccggcctggggtacttttaacgcgtggatcccgctgttcatgtttaaagtttacggctttaacctgaaagagatcgcgatgttcgcctggatgccgatgctgtttgctgacctcggttgtatcctcggtggttacctgccgccgctgttccagcgttggtttggtgtgaacctgatcgtttcccgtaagatggtcgtaacgctgggtgcagtgctgatgattggcccgggtatgatcggcctgttcaccaacccgtatgtcgcaattatgctgctgtgtatcggtggttttgcccaccaggcactgtctggcgcgctgattacgctctcttccgatgtgtttggtcgtaacgaagtggcaacggcaaacggtttaaccgggatgtccgcatggctggcaagtacgctgtttgcgctggttgtcggtgcactggctgacaccatcggcttcagcccgctgttcgcagttctggcagtgttcgacctgttaggtgcgctggttatctggaccgtgttgcagaacaaaccggcgattgaggtggcgcaggaaacacataacgatcccgcaccgcaacattaacgtttcgtgtaagttttagtttcccttcaaagtccgccttctcaggcggctttttcatcactgcgagtagagctaaactcgcaaaagtggtataacaaatatagtctgccgtatcatgcctggagcgcatatggaaatcactgaaccacgccgtttgtatcaacaacttgccgctgacctgaaagagcgcatcgaacagggcgtctatctggtgggtgataaactgcctgcagaacgctttattgccgatgaaaagaacgtcagccgtacggtagttcgtgaagccatcatcatgctggaagttgaaggctatgtcgaagtgcgtaaaggttcaggtattcatgtggtttccaaccagccgcgccatcagcaggcggctgacaataatatggaattcgccaattacggtccgtttgagttgcttcaggctcgccagctcatcgaaagtaatattgccgaattcgcggcaactcaggtaacgaaacaggacatcatgaaactgatggccattcaggaacaggcgcgcggcgaacaatgcttccgtgattccgagtgggatttgcagttccacattcaggtcgctctggcgacgcagaactccgccctggcggctatcgtggaaaaaatgtggacccagcgtagtcataacccgtactggaaaaaactgcacgaacacattgattcccgtaccgtcgataactggtgtgatgaccacgatcaaatcctcaaggcgctgattcgcaaagatcctcatgctgctaagctggcaatgtggcagcatctggaaaacaccaagatcatgttatttaacgaaaccagcgacgacttcgagttcaatgccgaccgctatctattcgccgaaaacccggtggtgcatctcgatacagccaccagcggcagtaaatgaaattcctgtccgacaggcgctgcaatgcgcctgtttgtctcgtcggtaagcgaaaagtataaagtgtcagcctgtgtaaatcctctcgccaccctcccctgcattcagcaaaatcagactccacggacatgtaattttgataacgaacaacgttgacctttgttacaattagattcaatttgaatttatgtttttgaatgctttcttatctcacgatttaacagggaatagttcaggctgtgttgatgtatcaaacccgcagaacataccaaaacagcaataacattgcggtagtgcatcttttaaaaccagcgtggcgttaaccgattcaccaggaataatgaatggaacttttgacccaattgctgcaagccctgtgggcgcaggattttgaaaccctggccaatccatcgatgattggcatgttgtattttgtcttgtttgtaattttgttccttgaaaacggcttgcttccggcggcctttttaccgggcgacagtttactggtattggtcggcgtgttgattgcgaaaggcgcgatgggctatccgcaaacgattctgctgctgaccgttgccgccagcctcggctgctgggtcagctatattcaggggcgatggctgggcaatacccgcaccgtacaaaactggctatctcatttacccgcgcattatcatcaacgcgcacaccatctttttcataaacacggtttatcggcgctgttaattggtcgctttattgcgtttgtcagaacactgctgccgacgattgccgggttatcagggctgaataacgcgcgctttcagtttttcaactggatgagcggtctgctgtgggtattgatcctgacaactctgggttacatgctcggcaaaacgccggtatttttaaagtacgaggaccagctgatgtcatgcctgatgctgctcccggtggtgctgctggtgtttggcctggcaggttctctggtcgtgttatggaaaaagaaatatggaaatcgggggtaagggatgcaaatacctcgcatgtcgcttcgccagctagcctggtccggcgctgttttacttctggtcggcacgctgttgctggcctggtccgcggttcgccagcaagagtctacgctggcgattcgtgccgttcatcaaggcacaacgatgccagacggtttttcaatctggcatcaccttgacgctcatggcattcctttcaaaagtatcacccccaaaaacgacactctgttaattacatttgactccagcgaccagagcgccgccgcaaaagcggtcctcgacagaacattgccccatggctacatcattgcgcagcaggacaataacagtcaggctatgcagtggctgacccggttacgggataactctcatcgcttcggataacttcctgttatccgaaacatatcactcactttggtgatttcaccgtaactgtctatgattaatgaggcggtggttaacactaccgcttcgttgtctggacaatcgttcctttgtaataggtccgaatcacaatggaaggttcaagaatgaaataccgcatcgctttagctgtttctctctttgctcttagtgccggtagttatgccactaccctgtgtcaggaaaaggagcaaaatatccttaaggagatcagctatgccgaaaaacaccaaaaccagaatcgtattgacggtctgaataaagccctgagtgaagtccgggccaactgttcagatagccagctgcgtgccgatcatcagaagaaaatcgcaaagcagaaagatgaggtggcggaacgccagcaagatttagccgaggcgaacgaaaaaggcgatgccgataagattgccaaacgcgaacggaaactggcagaagcgcaggaagagctgaaaaagctggaagcgcgcgactactaactcacaatagtcactacttactcacctggagaaaactatgtcgaaagaacacactacggaacatctgcgtgctgagttgaaatccctttccgatacgctggaagaggtgcttagctcatctggcgagaagtcgaaagaagagttgagtaagattcgtagcaaagcggagcaggcactgaaacagagccgttatcgcctgggtgaaaccggtgatgccattgccaaacaaacccgtgtcgcggcggcgcgtgccgatgagtatgtgcgcgaaaatccgtggacgggcgtgggcattggcgctgcaatcggtgtagtgctcggcgttctgctgtcgcgtcgttaattatggcggacactcatcacgcacaagggcccggtaaaagcgttctgggcatcgggcagcgaattgtttctatcatggttgaaatggtagagacacgtctgcggctggcggtggtggagctggaagaggaaaaagcgaatctctttcaacttttactgatgctgggcctgacgatgcttttcgctgcatttggtcttatgagcctgatggtgctaattatttgggcggttgacccgcaatatcgcctgaatgcgatgattgccaccaccgtggtgttgctgctactggcactgattggcggtatctggacgctacgtaaatcgcgtaagtctacgttgctgcgccatacacgccatgagttagcaaacgatcggcagctgctcgaggaggagtcccgtgagcagtaaagtcgaacgtgaacgacgtaaggcgcaactgcttagccagatccagcaacaacggctggatctttccgccagtcgtcgtgaatggctggagacaacaggcgcttacgatcgtcgctggaatatgctgctaagtctgcgctcctgggcgctggttggcagtagcgtgatggcgatctggacgattcgccatcctaatatgctggtccgctgggccagacgcggttttggcgtatggagcgcctggcgtctggttaaaacgaccctcaagcagcaacagcttcgcggttaacttccctctggccggagccattccggccttatccctcaaattttttgaagatttttgacagttttccttgctaacaatcatcattcaccacgtttatgattctctccatcgacagcaacgacgctaataccgcgccattgcacaaaaaaacaatcagcagcctgagtggcgcagtggagagtatgatgaaaaaattagaagatgttggtgtactggtagcgcgcattttaatgccgattctgtttattaccgctggctggggaaaaattactggctacgcgggtacccaacaatatatggaagcaatgggcgtcccgggttttatgctgccactggtgattctgcttgagtttggtggtggtctggcaatcctgttcggtttcctgactcgcaccacagccctgtttactgcgggctttacgctgctgacggcatttttatttcacagcaactttgctgaaggcgtcaactcgctgatgttcatgaaaaacctgacaatttctggcggattcctgctgctggcaattaccggtccgggcgcgtatagcatcgaccgcctgctgaataaaaagtggtaagcacgcgctatacttaacgataaaaaacgaggaggaagctcctcgtttttgctattggaggagagaaaaatgggtcaactgattgacggcgtctggcatgacacctggtacgataccaaatctaccggcggtaaatttcaacgttcagcttccgcatttcgtaactggctcactgccgatggcgctcctggccccactggcacaggcggttttatcgcagagaaagatcgttatcatctctatgtttcactcgcctgcccgtgggcgcaccgcacgctgatcatgcgcaaactcaaaggactggaaccgtttatttccgtttccgtagtgaacccgctgatgctggaaaacggttggacctttgatgacagttttccgggagcaaccggagacacgctctatcaaaatgaatttctgtatcagctttatctccacgccgatccacactacagcggacgagttactgttcccgtgctgtgggacaaaaagaaccacaccatcgtcagcaacgaatcagcagaaatcatccgcatgttcaataccgcgtttgatgcgctgggcgcgaaagcgggtgattactaccctccagccctgcaaacaaaaattgacgaacttaacggctggatttatgacaccgttaacaacggcgtgtataaagctggttttgccaccagccaggaagcttacgacgaggcggtggcgaaagtgtttgaatcgctggcacgactggagcagattttaggccagcatcgttacctgaccggcaaccagctaaccgaagccgatattcgcctgtggactacgctggtgcgttttgatccggtgtatgtgacccacttcaagtgtgataagcaccgcatcagcgattacctgaatctgtacggttttctgcgcgatatctaccagatgccggggatcgccgaaacagtcaatttcgatcatatccgtaatcattacttccgcagccataagaccatcaaccctacggggattatttcaattggtccgtggcaggatctcgatgaaccgcatggacgagatgttcgcttcggttaaaaaaaggcaccttacgaggtgcctctgataattagctaagtgcatgttgttcatgtcggatgtggcatgaacgccttatctgacatacaaaacattgtacattcaatagattgcataacccgcgcagaccagataagcgtagcgcatctggcgattttgcgcttgtcatcagtcttagcgcgccttcacggcactttattaattccttgaacgaatatttactgccatttcattcacgtctattcttaatttgctgctttaaaaacaagtgattgagcaaaattgaggcaaaaatggactggtatctgaaagtactaaaaaattatgtcggtttccggggtcgtgcgcggcgcaaagagtactggatgtttattctggtcaacatcatctttacgttcgtgctggggctgctggataaaatgttaggctggcaacgcgctggtggcgaaggcatcctgacgacaatctacggtattctggtgtttttaccgtggtgggcggttcagttccgccgcctgcacgacaccgaccgctcggcgtggtgggcactgctattcttaatcccgtttatcggctggcttattatcatcgtctttaactgccaggcgggtacggccaggcgaaaaccgctttggaccagatccaaaactggaaccttaaaacaaatctgctcgccggatgtctgactcatccggcttttatcattatgttgatgaatgaataatttactaatgtttatttaaaatatttcaatgtcgttatataaattacctataaaaaataaccatgtatttatcttaaatatcaaaacctttataacatccgaaaaagaaagatacgaatagcatttacacaatacccggaatagactttcgtcacttttaattaaagggatgtttttatgcagtggtatttgtccgtattaaaaaattatgttggtttctctggtcgcgcacgtcgtaaagagtactggatgtttactctgattaacgccatcgtcggcgctattatcaatgtcattcaattgattttaggtctggagcttccatatctgtctatgctttatttgctggcaaccttccttcccgtccttgcgcttgctatccgtcgcttacacgataccgaccgttcaggtgcctgggccttgctcttttttgttccgtttattggctggctcgtgcttctggtttttttctgcacagaaggtacttctggcagcaatcgttacggaaacgatccgaagtttggttcaaattaatcttagaattggggcgatatttcgcccctttttattaacaataataaatattattttccgttaaaaagtttgggaatttcccgcagacaccaggatttcgcttcccccatactgtcacgacgccaggccataataatatcgatctcgctggtcgattccgggctgacgacacgcaaccgcccttccgcaatatctttttcgaccataggatacggcatcgtcgccacgccaagccccgccagtaatgcctgacgtttatcttcaatcgtgctcaccgttaagcgcggctgtttgtccagcagctgtacggtcaacaccgggcgctcacgagcggtatccgccaccgcaattccacgatatttcacacgcgtcacttcagataacggttccggctcctgatgaatcgggtgatcaggcgcggcaacgtagacgttcattaacgtatagagcttgcgcgagttgatctccgacgaggaacgaaaatgcatatccggcgcgataacaatatccgcccgcccctgctccagccgttcccacgcccccgccagcacttctgtgatgattgccagttgggtattggcttttgccgccagtttgtcgattaacgggaaaaaggcaggtgtcggtaccagcgcttcggtcacaatggtgagatgcgtttcccaaccgcgcgcgagagcttccgcatcagtagtcagtttatctgcggcttccagcaaaacgcgccctcgctccaacaacatcctcccgacattggtgaatttggtacgatggcccgagcggtcaaacagcaccacatccagctcttcttccagtttttgcatggtgtagctaagtgcggaaggcacgcgtcccagctcatccgccgccgccgcaaaactgccccggcgatcgatcgcatccataacccgtagtgcttccagcgttaatgccctttctttggccatttcgttctcattcaggaaatttgaacataccgggcagaatatctggctaacaatgtagcgtccagccccttaccataaaaggaagtaaagagaggtcaagaattatgattactacccgaactgccaggcagtgtggacaagcagactacggatggttgcaggcccggtatactttttcctttggacactacttcgacccgaaattgttaggctatgcctccctgcgtgtgcttaaccaggaagtgctggccccaggtgccgcctttcagccgcgaacctatcccaaagtcgatattttaaatgtgattctggatggagaagcagagtatcgcgatagcgaaggcaatcatgttcaggccagcgccggagaggcgttgctgctctctacccagccgggtgtcagctatagcgaacacaatctcagcaaagacaaaccgttaacgcgaatgcagctttggctggacgcctgcccgcagcgagagaatccgctgattcaaaagctggcgcttaatatgggcaagcagcaattaatcgcctcgccagagggtgcgatgggaagcctgcaattacgccagcaagtgtggctgcaccatatcgtgctcgacaaaggcgaaagtgcgaatttccagttgcatgggccacgcgcgtatttgcaatcgattcacgggaaatttcatgcgcttacgcatcatgaagagaaagcggcgctgacctgcggtgatggggcgtttattcgtgacgaggctaacattacgctggttgccgattccccactgcgcgctttgctgatagatttgcctgtctagttgtttttacagggagatgatgatgagtaaaaaattggccaaaaagcgccagccggtgaagcccgtggtggcgaaagaacctgctcgcaccgccaaaaattttggctatgaagagatgttgagcgagctggaagctatcgtcgcggatgctgaaacgcgtttagccgaggatgaagctaccgcgtaaagacaggttgccggatgcgcggaaaacgccttatccggcctacaaaatccaacaacattaacgaattaaacaacccgtaggccggacaagatgcgccagcatcgcatccggcacgatccccaaaacctggcgtttatctggccttgctcgccataatctcgataatctgccgatccgtttgctgcatcgaatggcttgctaacgcacacaggttggcaatcgactgctcaacatcatgcgccacaatcccttcattgccggtcacggcggtatcatccagcgccattaacaccgctttccacgcagccgaagcactggtcgaaaccttcatcgcgcagctgttcgacgcaccatcgcaaatcatgccgctgacatcgccgatcatactgctgatcgccatcgagatggtttcataacgcccatccaccagccatgccatcccggcggcggcccccattgctgcggtcgttgcggcacacagcgcagacaaacgcggtaactggttatggatgtaaattgcgctcaaatgcgaaagcatcagcgcacgcgccagccgttcatcatccgctccgaagtgttctgctaccaccaccacaggcattgttgcggtaatcccctggttacccgagccggagttactcatagccggaagcgtagcgccgcccatacgcgcatcggatgccgcgctggtacgaatcacaatggatgaagagagatctttcgccagcaaaccgcgctcgcactgtttttccagcgtcgcgccaatatgcagcccccacttaccgctcaaaccttcctgcgataacgcacaatttagcttcgcggaatcgagaataaagcggatcgccgcaaacgggacttcattgacgaacttcaggatctcagccagcgtcggttctggaaagcaccgtcagcggagactcttgctcgccctctgccacacacgcctgctgggtaaacaccacaccatcgtgcgtctcgatatgcacaatgttggtatgcccgccgacgatggtgacacacgcccacttctcaccgttccagactttggcgcgtgagaagaggatttcatcgcaaggttcctggatcttaacggagactttccccgccgccagcagtgctttggcatcggcaattgcctgcgctgttgcgtctttcagcacttccagcccggcgttggcatttccacctaacgcccccagcgccgccgcaatcggcagccccaccattcccgtgccgggaacggtgacgcccagaccgttcttcatcagatttggcgaaacccaggcttctacacgttcaaccggaccttccagttctgccgcagcaaccgccgccgccagcgccagtgaaatcggttcagtacatcccagcgccggttttacttcctcctgaacggcgaggatgtaacgctgccataacggatttaaagtcgaatcaaacatattaaaaaccttaaaatttcaggtaaatcaagaaaatgccaggaacggagaaacacacagcaacaaaccagtgacgataatcaggtacagagacatccctttgtatttgtgcaatgctggtactttgtaaaccagccacgccgggatcaggcaccctaccatgccgaaaatcgggctacagatagaggtgaagctcaacaccggtgcgttcagtacgatggcgctccaggccagcaaaatggcgaaaatcatgatgccgcgctgaacgagattttcgttaatcttctcggcaggcatcttgcgacgcaggatgttcattacgatcccttgcgttgcttcgcgaaagcctaaatagacgccaaagaatgcagtcatgacagcaaagatattgagaatgacgctgaccactttcacccacgctgcgccgtcaccgctaataaactgtgcggcaatcgccagcgcggaaatattctgctcataggcttttaccgcttcgtcatgtcccatcgccagcgtgaacgacacggcgtagaaaaagacggtgacaaacaaaatgccaaacgcgatattcattgcccgcaatgctttatgccgcgccacttcaattgatttttcccgcgagcgataagagatcaccatcggacttaacgtctggataaacagaatcgacgtcagggtaaacggcagcgtaataatggcgtttttcaccagcagccccagcggcggtagcgaaccgacgttatacagatgccacattcccaccatcgacacgcccagcgccgcgaccaccagcagcttggtcagcaccatgccggtcgaaattttgaataacaatttctcgccgcgtgaggagatcgccaccagaatgcaaatcagtaccagaccataaaagggactgtctgacagcaacccttccgtcacgccgaaggtatgcaggtaggaagcactatcgttggtgatggcggtggaatagacgaacatccaaatcaccagcattacgaaatagagcgcacctaacaggatgccccagtttttacctaaataaccgctaatgacgctcgggtaatctttacattctggtgattctgccagcgtattaataaacaatcgctgaaacagatacattgccgggtaaccaatcaccgatgagagcaaaaatacccacaatcccatcaaaccgacctgcaccgggagaaaaacaatccccgcgccaatcgccatcccgatactcataatcacccagccggtgtcagtactgtcgaatttgatcgcttctcgccactcgctctcactcattccaggcacgacccgccggggtcgaaggcgtctgcaatgacgcctttattcgatgcaatttccataatttctcgctcaatattttgtagggcttattatttttttccgagccgcatcaaggcgatatgcggtctacgtttttgcaggcgagttattagaataaagaaatgatacgcgcgaggtcagagaaaatcttcacaatcaagactttgaaataacggagatggataagaattttctactaaattaatcgcaggagaatattcattctctatttgcggcagatcacaaaaaaaaggtgcacatttgtgcacccaaggatgaaagctgacagcaatgtcagccgcagaccactttaatggccagtcctccgcgtgatgtttcgcggtatttatcgttcatatctttgccggtttcatacatcgtctcgatcactttatcgagtgaaacacgcggtgccgaggtgcggcgcatcgccatccgcgcggcgtttactgctttcacggcattaatggcattacgttcaatgcacgggatttgtacctgtccggcaaccggatcgcaggtcagcccaaggttatgctccatcgcgatttccgccgcattgcatacctgcgccggactgccgcccagtagttcagttaaccctgccgccgccattgaacaggccacgccaatctccccctgacagccgacttccgcgccagagatggaggcgttcattttatacagcgcgccaatagcccccgcggccagaaaatagcgggcaattgaccgctcgtttaccggacgacggaacttatcgtaataagccagtactgccggaataatgccgcacgcaccgttagtcggtgccgttaccacgcgcccgccagctgcgttttcttcactaaccgccagcgcgtacatgttgatccagtcgatgacattcatcggatcgttagagatgttatcgctggaaaccagctgacgacgcagcgctacggcacggcgcggcacattgagcggaccaggcagcacgccttcagtgttcatcccacgttcaataccgtcatgcatcacttgccagatacgggcaaaaccggcgtcaatttccgctttgctgcgcagcgctagctcgttgtgcatcatcagaccagatatagacaggccgttgtaatcacacattttcagcagttcacctgctgagtggaaatcgtaaggtacggacgtttcgacatcgtgcgacaggccgaagtgttcttcttcgacaataaacccgccgccgacagagtaataggttttacttaatagctcttcctgtccttccaggcagtgatccgcattccgttctcatggcgaggcaacatttcgggatggaagataatgttctttgctacaggaaaatcaacaatatgcgcaccagatgccactggcagccgcccgctgcgcgttactaactctataaatgcagggatctcatcaatgacaacatcctgcggactgtttcctgccagtcccatgatgatggcgacatccgtggcatggcctttgcccgtcagtgacaacgacccgtacagatcgaccacaatatggctcgtcgcggttaataagccgctactttccagccgatcaataaaactttttccggcattcattggccccacggtatgcgaactggagggaccaatcccaattttgaaaatatcgaatgcactaatcatatccacaccctcggattgccgttcagtgaagtggagcggaacgaccttacgaccgtcccgctcacgaggctttacgcactacgtactgcgatggcttcaatttccagcttcacatctttcggcaaacgcgcgacctgcacacagctccgggtcggataggtcgcctgatgctcatcgaagaactgcttatagacttcgttgatggtggcaaaatcattcagatcggtgataaacacggtcatcttgatgatatcgcccacgctcagcccggcagcaaccacgatcgctttgacgttttcgaggcttaaacgcgcctgatcttgcacatcagccgggatctcaccggtctgtgggcaaaccggtatttgcccggaggtgaagaccatgctgcctaaatcaacgccctgaacataagggccgattgcgcctggggcacgttgcgtttcgataatctttttcatacatcctccggcgtcagagcgcctgggtaaaggtacgtgaaataacatcctgttgctgttcacgggtcagtgcgttgaagcgcacgcgtagccagagacacggattgtcaggttaggatatttttccgggtgctcgatggcatccagcagcatttcccgattcattacgttgacgttgaggtgttgaccgccttcgacatccgcttcgtggtggaaatacccatccagcaggccgacaaggttggttttacgtactggatcttctttgcccagcgccgcaggaacgattgagaaggtgtacgagatcccatctttggcgtaggtgaacggcagtttcgccaccgacgtcaatgaggccacggcacctttgcggtcacgaccatgcatcgggttagcgcccggcgcgaacggtgttccggcgcgacgaccgtccggcgtattaccggttttctggccgtacaccacgttagaagtgatagtcagaatcgactgggtagggacggcgttgcgataggttggcagcgctttaattttcttcataaagcgttcaaccaggtcgcaggcaatgctgtctacgcgctcgtcgttgttgccgtactgcggatattcaccgtcgatttcaaagtccaccgccaggccgttttcgtcacggattggtttcacgcgggcatatttgatggcagacagggagtccgtcgccaccgacaggcccgcgatgccgcatgccatagtgcgatagacatcacgatcgtgcagcgccatcagcgaagcttcgtagctgtacttgtcgtgcatgtagtgaatgatattcagcgcgctgatgtactgcaccgccagccagtccatgaagtgatcgaggctgtccatcactttgtcgtaatccagcacgtcgtccatcagcggtgctgttttcggcccgacctgaatcttcagcttctcgtccaccccgccgttaattgcgtagagcagcgttttcgccaggttagcgcgtgcaccaaagaactgcatttgcttaccaatcaccattgggctgacgcagcaggcaatcgcgtaatcgtcgctgttgaagtcagtacgcatcagatcgtcattttcatactgcaaggaagaggtgacgatcgacacctgcgcggcatattttttgaaggcaatcggtaattcttccgaccaaagaatggtcaggttaggttccggtgccggccccatagtgtgcagggtgtgcaaatagcggaaggagtttttggtcaccagcgtacgaccgtccagccccatcccgccgatcacttccgtcgcccagattgggtcgccggagaacagcgaatcaaattccggtgtacgcaggaagcgtaccatacggatcttcatgatgaagtgatcgatcagttcctgtgcctgctgctcattgagtacgccagctttaaagtcgcgctcaatgtagatatcgaggaacgatgccgtgcggcccagcgacatcgcgccgccattttgcgatttcactgccgccagataagcgaagtagagccactgcaccgcttcctgcgcattctgcgccgggcgagagatatcaaagccatatttcgccgccatttcctgaatctgcaacagcgcatgacgatgctctgccagctcctcacgcagacggatggtggcttccagatcctcgcctttttccagacgagactggagatcggcaaattgcagttcgcgttcacgtaccagataactgatgccatacagcgctacgcggcgatagtcaccgataatgcgcccacggccatagccatctggtaaaccggtcagcacgccagatttacggcagcgcagcatatccggtgagtaaacatcaaatacgccctggttatgggttttacgcagatcggtaaacagatattcaaattcactgtccatttctcggccataggcgtggaatgaacttttaatcatattaatgccaccgaacgggtgtagcgcacgtttcaacggcgcatccgtttgcaggccaacaattttttccagcggctggttaatatatcccgcatcatgagcggtaattgtggtggcaatattggtatcgaaatcaaccggcgcgtgggttgcattttcgatacggatgccttccattactttttcccacaattccgtggtggcaggcgtcgcttcggcgaggaaagattcatcgccttcatacggtgtatagttatgttgaataaaatcgcggacattaatttcgtttttccagtccgtacctttaaagccaagccatgcgtcggcgtacagcttatcgctggtatcaatatctaccttcatgaaaaataatctctctacaatacttcaactaaattatgcaaattctgcgggcgcgttaactttgcctaaatgaatggcatccaaagcaatcattttttcttcgttagtcggaataacggcacaaatgacacgcgcattttcactggaaacaattcgctcaccacaggagttagagcgattattcatttctgtatcaatctctaagcctaatacagccaaatgttccatgaccagacgacgaattaagcttgaattctctcctattccgccggtgaatataattccatccaggcgacgtaatgaagctgcgtgtccggcaatatgacgggcaattcggtgaacaaaggttttaattgccagttgcgcgcgttcgtgaccttcatgccaggctttttccagaacacgtaaatccgaagaaagaccggaaatacctaataatcccgactctttattcactacgcgttccaggtcacccaggctctggttggtttggctggcgacccaggacatcgcaccaaagtcgacatcgccactgcgggtacccatcatcaagccttccagcggcgtcattcccattgaggtatcaacactctgaccgttgcgaaccgcgcagattgacgcgccattgccaagatgcgccacaaccaggccggagtcatcttccgccagattcagcagcgaatgtgcgcgctgggaaacatagcggtgcgacgtgccgtggaaaccataacggcgtacacctaactcttcataatatttccacggcaggccgtataaataagcttccggagccatcgtctggtggaaactggtatcaaataccgccacctgagttacgcccggaaataattgctgcgccgattcaataccacttaaattggcgtaattatgcaggggtgccagtggagaaacgcgacggatattatcaatgacttcatcggtaataatggcggactcggtaaaaatactgccgccgtgagcgatgcggtggccaattaaggccacactgtcatttaaattccgtttttccagttcaaatgcaattgccttcaatgcaccttcgtagctgtggtgagccagcggtgctggctctcccccatttacggataagaatgcattttccgagttaataccgtcggcaatacctgacattaatacttcacagtcgctggcatcgagcacggaaaacttaatcgaagacgaaccacagttaataaccaaaacaaccggaaattcattcatctcttttctcatcctgagttacggattaaaacagtttgtatacgatgttcaggatggtcagcagaccaatcacggtaacaaacacgttatccagacgaccacggtatttcgccagagacggcgctttacggatggcatacatcggcaacaggcacagcagggatgcgataatcggtgcgcccatggcttcaatcaggtcaaggatgttcgggttggcgtaggcaacaacccaggtggagcccatgatgaagatcatgctgatagtgttcagtttacccagcgacactttagttttgtcgcctttataaccaaacttcaggaccaggccattcagaccttccagcgttcccagatagtgaccgaagaaagatttgaagatagccacgagtgcgatgatggaagccgcatattccagtgtaatcgcgaacgttgttttggtaccggtcatggacgcaaagtggttagccagataagaaagcactggaatattctgcgctttggcttccgccatgttggccggagacagagtaaacaggcagctaaaggcaaagaacatcaccactgcaaccatcagcatgctggcacgagaaatgatttgggaacatttacgttcggtgaagtcgcgaccgaagtctttctcatactcttcacgcttagaaaccacgaaggaagagacgattggcgagaagttaaaggagaaaaccatgatggaaatccccagccagacagtgatcaggataccgtcatgaccggttaacgacagcgaaccgaggtcaacctggtcgataactgcagagttccagtaagggatcagcgacaaagaaatcagcaccaggctggcgataaacggccataccaggtagctcatcactttaaccatcagatccttaccaaaccagatgacgaaagccatcagcagcaacaggaacagcgccacaaagccgcgattcagcggtgcaaagccgagctggttttcccagaacgtcataaaggtattggtaatagtaacgccataaatccacagcagtgggcaaatcgcgaagaagtacaggaacgtgataaccacgccgccagttttaccaaaatgctcttccaccgtttccgtaatgttgccggaagggttagagccagaaagacacagacgcgccagcgcccggtggcaataaaacgcgatggggtatgccaataccaacatcagaagaatcgggatcagtccgccaaaacctgcgcggatagggaagaacagcaccccggcgccgattgccgtaccaaacaagcctaacgtccatgtggtatctgatttacgccaggacgattgttttgtctggctggatacaatgctatctgaagtactcatatcctatcctcaacgaattaattaagcgtcaacgaaaccggtgatttgagagacgcgagaaagatcgatattgccgccggaaataatactgacggtttttctgttttgaatatattggtctaatttaccgcttaataatgcagcacatgccagagcgcctgcgccttcggtgacgactttattgcgctgaattaaggcaatcatactgtttctgatttcgtcttcgctgaccagcacgatgtcatcgactaattcacgaacgatttcgtaagttaaattacccgggcgggagacatcacaaccatccgccagggtgccggtagttcggtgcgtggttatttctccggagtggaaagaagccgccatgccgtgaacgttttcagactgtacgccaataacacgaatggtcgggttaatagatttaattgccaccgcaataccagcaattaaaccgccaccaccaattggcacaatcacgttatcgacatcatagagatcttccataatttccagaccaatcgttccctggccagcaatcactttcggatcatcgtaaggtgggataaaaatacggccttccatttcgacaatttcgctcactttagcgatagtgtcgttgaagttatcaccatgcagaacgacttctgcggagtagtcgcacgttgccgctactttggattttggcgcaccttttggcatcaccactttaccgtcgatacccagcatcgcgcaggagagggaaaccccttgcgcatggttgcccgcagaacaggccaccacgcctttgcgtttttccgcatcggtcagtgaacttaatttattaaatgcgccacgaattttaaatgaacccgtacgctgcatattttcaaacttcaggaatatttcacctttgcaacgttcactaaaatagttggagcgaggcatgcctgttttataaattcgcccagccagtcgttgtttcgcttcaataatgtcatcaatagcaaccggcagatcgtatgtaatatgcattataaaacctcttcgcctgaattaaatatgtaggtaaccgtaaccgacacctgcaagacagacaggtggattatttatgtttaaataaaaacaaataactaaccaacttctattaattgccttcgtctacacccattataagatgaatactctttggctaattccaccaaaaccgatgctgcttttttaatacgataatttttcgaccataccgcggcatattgtgccacaggtaatgtttcttcaaccggaatagtaataaattgattagaaccaaaaggtgacgtcatatcacaaggaattacagttaagaaatcagcattgagaacaagattataaattgtcacgactgagtcggttttaacgatgttttcaatactgatgccatttctttgtaacgtagtaagcagttcgctgtagtaccccatattagtttgtggcaacacccactgttcgttcttcaacgactccagcgtggtggtgccggtgcatgttcgggacttactggctaccagcacaaactcggactcgaacagcggctcaacatgtaaatcctgaagcttcatttctgcacttaacgtaccaatcgcaaaatccagtcgaccgtcgcggattgccggtaagaacgaagacagttgcgcttcatacatagaaacctgcgctttcgggaacacctctttgaacttgttgatcatccctgacataaaagtaaaaccaatcaatgaaggaaaaccaaatgagacttccaccaccgcctcagaagacataccgcttatctcattaaccatatttttcatttcacgggtaatggattcggaacgggagagtaacaattgaccggcaggtgttaatgttacaccggtatttttccgcaccactaattccacaccaaaataatcttcaatatcgttaatgattttactgacggccggttgagttaaccctaattcttttgcagccgagccgatagaaccacttctaatgacttcctgaaagactaccaggtgctgcgttttcggaagaagaatagtgctcataacgacctacgttaattacctcattgacggcatgaagtgtatcaaaatgaaatgaacaggatatgtgcgaccactcacaaattaactttcaatactttccagagtatcgttattacaattaaatacctttaaatatcaacaagttaaagtataaaaatcagcataaaccctgatttttgtcaaaaaaaatgacggggataaccatattttatggcgataacatcattcgttatgtggttaatacaaaaaaggggctgagaccatatttcaagcaattaccggataattaccaggcaaaatttgagttaaatttaatgagcaagttctcaaattttattataaataaaccattttcagtgataaataatgcggcatgtcacattttttcacgctatttgttggagaacaaacatttattttatcaatattttaaaatttcgaatacatgtattgatcatctcgaacaattgattaacgtcaactttttctcttctgacaggacgtcattttgtgaatgcaatcgttttccataaattcttctcccctcataggcgacgaatagcattttgtgttgaggatcacaaaacgaataattgctgatcgccgcgataaggtcagacaaagacaacaagggaaattttcacagagcttttgatcggcgtaggccacagaatgttgcttcgtttactgtaacgccgggtaaatgagcgttttttgatagtgcgaaagaaccctgcgaggaaaataagcatctattattgtttgtcatgatgacaaggcaggcatcaatgaaaggcttcccaattgcgcatatttttcacccttcaatcccgccaatgcacgcagtggttaacaatcacaatagaaatattgattattggacggtaaaaagaaagtttgcagaaattgtctccaccaatgacgttaataaaatttacagtataagtaatgaactgcggagagtattatctgcaataactgcattgaatttctatcatggcgatgttccttctgtcatgatccgaatccaaccggaaaatatgagtccattcattatagatatttctacaggagaacatgatgattatatcatacaaacattagatgtaggcacttttgcaccttttggtgaacaatgtacttgctcagccgtcaataaaaaagagctggaatgtattaaggagacgatttctaagtattgtgcaaaattcacccgaaaagaagccatcttaaccccccttgtgcactttaataaaaccagcattacttcagattgttggcaaattctctttttttcacccgatcattttaataatgatttttattgattatttataaaggataaaataatgttccctgtttcatcaattggtaatgatattagtagtgatttagtccgtcgaaaaatgaatgaccttcctgaaagcccaacaggaaataacctcgaagcactagcaccaggtatagaaaaactaaaacagacctctattgaaatggtcactttacttaacacgttacaacctggtggaaaatgcattatcactggtgattttcaaaaagaattagcgtacttacaaaatgtaattctttataatgtctcgtctcttcgtctggattttttaggttataacgcccaaattattcaacgatcggacaatacttgtgaacttaccattaatgaaccgttaaaaaaccaggaaatatccacaggtaatatcaatattaattgcccattaaaagatatttacaatgaaatcaggaggttaaacgtaatttttagttgtgggactggagatatcgttgatctatcctctctggacttacgtaatgtcgatttagattattatgatttcacagataaacatatggctaatactattttaaatccttttaaattgaattcaacaaattttactaatgccaacatgtttcaggttaattttgttagttcaacacaaaacgccacaatctcctgggattatttactaaaaataacgcctgttttaataagcattagcgatatgtattctgaagaaaaaatcaagtttgtcgaaagttgtttaaatgagcctggagacattaccgaagaacaattaaaaattatgagatttgcaattataaaatctataccaagggcaactcttacagataaattagaaaatgaattaacaaaagaaatatataaaagctcatcgaaaatcatcaattgcttgaacagaattaaattaacagagatgaaagaattctcatcagaaaaaatatatgattacatcgatataatcattgaagattatgaaaataccaaagaaaatgcttatctggtcgtcccccaaattaattatactatggatttaaacatagaagactctagctcagaagagttactttcagataataccctcgagaaagacgaaaattctccggacaatggctttgaggtcggggaatataacacatatgaagcatataactcagagaagcaatattttaccagagaggactatacgtatgattacgaccttttaaatgcaatatagacttaataacttcttacaaagtctattattaataccgtagatatttattcatcttaccctgtgcaccaaaagcaaaaactcactgacgcgggtttgaaactgatggcaaccgcaaaaatgcctgatgcgctacgcttatcaggcctacgccatctctgcaatatattgaatttgcgtgcttttgtaggcaggataaggcgttcacgccgcatccggcatgaataaagcgcactcaacaatctgaaacccgccggaacggtttattacgtacatcaggtaaaactgaccgataagccgctttcttttgggtatagtgtcgtggacagtcattcatctttctgcccctccaaaagtaaaacccgccgaagcgggtttttacgtaaaacaggtgaaactgaccgataagccgctttcttttgggtatagtgtcgtggacagtcattcatctttctgcccctccaaaagcaaaaacccgccgaagcgggtttttacgtaaaccaggtgaaactgaccgataagccgctttcttttgggtatagcgtcgtggacagtcattcatctttctgcccctccaaaagcaaaaacccgccgaagcgggtttttacgtaaatcaggtgaaactgaccgataagccgggttctgtcgtggacagtcattcatctaggccagcaatcgctcactggctcaagcagcctacccgggttcagtacgggccgtaccttatgaacccctatttggccttgctccgggtggagtttaccgtgccacggactgttaccagccgcgcggtgcgctcttaccgcaccctttcacccttacctgatcccgcttgcgcgggccatcggcggtttgctctctgttgcactggtcgtgggtttcccccccaggcgttacctggcaccctgccctatggagcccggactttcctcccctccgcccgtctcccccgaagaggacgacgacgaagcggcgactgtctggtcagcttcggcgcgcagtatagagggtttgcgcgcccttgtcaccccgcgttgcgcattccaatcgccagtgtcgcggcgatattacgtgaagcacggcagatattgtcataagccccgcggaatgcttcgtccaacgtacctatgctggtcaatacgctgaagaccgcatcaatgccatgctgatgtacaacgccaacatcatcggtcaggctacccgcaatgccaatcaccggtttatggtacttcttcgccacgtttgcgacaccaatcggtaccttcccgtgaatactctggctgtcaatacgcccttcaccggtgatcaccagcgtacaatcgtgaatatgttcctccagattcagcgccgtagtgacgatttcaataccacttttcagttccgcaccaagaaacgccattagcgccgcgcccataccacccgcagctcctgcaccggggacatctttcacatcaacatgcagcgcttttttaatgacctcggcatagtgagagaggttattgtccagctcaacaatcatcgcttcactggctcccttttgtgggccaaagatgcgcgatgcgccgttatcgcccaccagcggattggtgacatcacaagcgacgcgaatgacgcaatcttttaagcgcggatcgaggccggaaatatcaatatcattcagagtattaagactaccgccgccaaaaccaatttcattgccgttggcgtcgcataatttcgcccccagcgcctgtaccatgcctgcgccgccatcatttgtagcgctgccgccaatgccgataataatgtttgtcgcaccgctctccagcgcctgcaggattaactcgcctgtgccgcgtgaagtggtcacgagtggatcgcgtttttccgcaggtaccagctccagcccactggccgccgccatttcaataaacgcggttttgccatcgccggagatcccccaactggcattcactttctcgcccagcggccctgtaacccaggcgtgacgttcagccccctgggtggctgcaatcatcgcttccaccgttccttcgccaccgtcggcaaccggaacagaaacgtactgtgcatcaggaaaaatttcccgaaatcctttttctatcgcctgcgcaacctcgctggcagataaactttctttataagagtctggggcgattacgattttcatacctatgcctgttaccacatgacgccggagggcgtttctcttattcggcctggattccaggcccggattgcaatacgccatccgggcacgacgtcattaacgagtaacttcgactttcgccagtttttcgtagtagcacgccagggcgctatgatccgccgttcctaaaccatctgctcgcagtgcctgcatcatctccataaccgcagctgtgagcggcagttgtgcgccgacgccgtgagaagtatccagcgcattcgccagatccttaatatgcagatcaatacggaagcccggcttgaagttgcggtccatcaccatcggcgctttggcatccagcacggtactgcccgccagtccaccgcgaattgcctgataaaccaggtccgggttaacgcccgctttagttgccagcgttaacgcttctgacatcgcggcaatattcagcgccacaatgacctgatttgccagtttggtgacgttacctgcaccgatttccccggtatgcaccacggaacccgccatcgctttcatcaaatcatagtatttgtcgaaaatagccttgtcgccgcccaccatcactgacagcgtaccgtcgatggctttcggttcaccgccgctcaccggagcatccagcatatcaatgcctttcgctttcagcgcttcgctgatttcacggcttgccagcggtgcgatagaactcatatcgatcaataccgtacctggcttcgcgccttcaataatgccattctcacccagcgccacctctttcacatgaggggagtttggcagcatggttatgatgacgtcgcactgttcagcgatcgctttagccgtagacgctgtttctgcacctgcagcaatcacgtcagcaatagcttctgggttacggtcagcaaccaccagcgagtaacctgctttcagaaggtttttactcattggtttacccataatccccaggccaataaaaccaactttcatagtcatatcaatcatctctcttgttgcggtggtggttattttttaaaggtatcagccagtttctgagtggcagagcggaagacgccgagatcgctgccgacagccacaaacgtcgcgccccattccagataacgacgcgcatcggcttcgaccggcgcgaggataccgctgggtttgccgtgcgcgctggcacggttaaaaatgtgctgaattgctttttgtacatccgggtgtgatgcattgccgagatggcctaatgccgcggccagatcgctggggccgacgaagatgccgtctacgccttcggtagcggcaatggcatcgacgttatctacgccctgctgactttctatctggaccagaatagtgatgttcttgttcgactgagcgaaataatccgccacggtgccaaacatattggcgcggtgagaaacggagacgccgcgaatgccttccggtgggtaacgggttgatgccaccgccagctctgcttcctcttttgtttctacaaaaggaatcaggaagttatagaaaccgatatccagaagacgcttaataattaccggctcgttggtcggcactcgcactactggcgcgctggcgctgcctttcaaggccattaactgcggaataaacgtggagatatcgtttggcgcatgttcgccatccagcaccagccagtcaaacccagccaaaccaagaacttcagtgctaatcgggttagagagtgctgaccagcaaccaatttgtacctgtttcgcagccagtgcggctttgaatttattcgggaaaacatcgttattcatcgcttatacctttgcttatttctgcaattccatacgtttaatgtcgccaactacgaagaggtagcagaccatcgccatcagcgctgaacatcccacgaaaaccagtgctgcattgaaggagtgcagttcacttaccaggtagccaatcaccagtggagtgacaatggaggcaacattgccaaagacgttaaagacgccgccgcagaggccaacaatctctttcggcgcggtgtcagaaatcaccggccagcccagcgcaccaaatcctttgccaaagaaagccagcgccatcagcatgaccaccagcgtggtgttgttggtgtagttacataagatgatggtggaagccagcaacattcccagcacaatcggtagcttacgtgccagggtcagggataaaccgcgtttgatcagataatccgagaagacacctcccagcacgccgcccgcaaaaccacacagtgctggaatcgaggcgaccagacccactttcagaatcgacatgcctttttcctgcaccagataaatcgggaaccaggtgaggaagaaccaggtgatggtgttgataaaatattgtccgaaaaatacgcccagcatcatgcggttagagagcaattgcttgatgtaatgcagtttgggtccgcttgctgccgcactgcccggctttttgtggtccatatcgaccaccgcgccattttcagagataaacttcagctcttccgcagacatacgtgggtgatctgtcgggttatgaatcaacttgatccacagcgccgtcagcacaaaaccaatcacccccataacggtaaagacgtgctcccagccccaggcgaaagtcagccagccaagcagcggcgaaaagagcgccagcgagaaatattgcgccgagttaaagatggcggaggcagtaccacgttctttcgtcgggaaccaggcggcgacaattcgggcgttcgccgggaatgatggcgcttccgagaagccgagcataaagcgcataaagaacatggagatccctgcccaggccagcgggaacatatcaacaaagccttgcaggaaggtgaatagcgaccagaaaaagaggctgtaggtgtaaacttttttcgagccaaacttatcaagcagccagccgccggggatttgcatcagcaagtaggcccagccaaaagcggagaagatgtaacccatcgaaaccgcacttaactgcaactcttttgccacttcggtaccagcaatagacagcgttgcacgatcggcgtagttaacggcggtaacaataaaaataatcagtaatattaaatagcgggtatgcacgcctttctttttttcgtcaacggtgtccagaatcattttatttacctcgggtacttatgctgatttttattattatggggaaggtgttatttatgagtttcatttatgccgtaacgacaatgaactcgggaattagtataagcagcgcgagaataataatcattgtgcaaatgctaatttaattaatactatttaaatattattttgagcatatgcacataaggttgcgcgctaaagcacagatttgcgctttaccttaccgggcggcactgcaatccctgaaatgattgacattgatcacatttctgcgtttaaactcctgacattcttatttcacccaatgaagtcatttatttttaaatgagaccaggtcctcattttaataacccctggctggagaatattgcacaatggccaacatcgaaatcagacaagaaacgccaactgcgttttatataaaagttcacgacacagataatgtggcaattattgttaatgataatggcctgaaagcaggaacgcgttttccggatgggctggaattaattgaacatattccccaggggcataaagtcgcattgctggacattccggctaatggtgaaattattcgttatggcgaagtgattggttacgccgtgcgtgcaatcccacgcggaagctggatcgacgaatcaatggttgtactaccggaagcgccgccgttacacacgctgccactggcaaccaaagtcccggaacccttaccgccgctggaaggatacacctttgagggctatcgcaatgccgatggcagcgtgggcaccaaaaacctgctcggtatcaccaccagcgtccactgtgtggcaggcgtggtggactatgtagtaaaaatcattgaacgcgatctgctaccgaaatacccgaacgtcgatggcgtggtggggctgaatcatttgtacggttgtggcgtggcgattaacgcaccggcggcagttgtacctatccgtaccattcacaatatttcgctgaatcctaactttggcggcgaagtaatggtgattggcctgggttgtgaaaagttgcagcctgagcgcctgctgactggaacggatgatgtgcaagctattccagtagaaagcgccagcattgtcagtttgcaggatgaaaagcatgtcggttttcagtccatggtcgaggatattttgcagatcgccgaacgccatctacaaaaactgaatcaacggcagcgagaaacctgcccggcttcagaactggtcgttggtatgcagtgcggtggcagcgatgcgttttctggtgtaacggcaaacccggcggttggctatgcgtctgatctactggtgcgctgcggcgcaacggtgatgttttcagaagtaacggaagtgcgtgacgcgatccatctgctgacaccacgcgcagtgaacgaagaggtcggcaaacggctgctggaggagatggagtggtacgataactatctcaatatgggaaaaaccgaccgcagcgccaacccttcgccgggcaacaagaaaggcggtctggcaaacgtggtagagaaggcactcggctccattgctaaatcgggtaaaagcgcaattgttgaagtgctgtcgcccggtcaacgcccgactaaacgcggattaatttacgccgcgacgccagccagcgattttgtctgtggcacgcaacaggtggcttcgggtatcacagtgcaagtgtttacgaccggtcgtggtacgccgtacggcctgatggcggtacccgtcattaaaatggcaacccgcaccgagctggcgaaccgctggtttgatttaatggatattaatgcgggcaccatcgctaccggcgaagaaactattgaagaggtgggctggaagttgttccactttattctcgacgtcgccagcgggaagaagaaaaccttctcggatcaatgggggctgcataaccagctggcggtgtttaacccggcaccggtgacctgatttcttttggaacgtccctcgcaaaacatggccttagtgccatgtttttattgtttaaagcccccacgtccattaataatgcatttgcattaccttagttcaagcttataatttgagcagaaaacaggctgtaaaaggacagtgaatcatgcccgctaatgctcgctctcacgctgtactgaccactgaatcaaaggtcacgatacgcggacaaacaactatccccgcgccagtgcgtgaggccttaaaactgaagccaggccaggacagcattcattacgaaattctgcctggtgggcaagtatttatgtgccgactgggagatgaacaggaggatcatactatgaatgcatttttgcgttttctggatgcagatatccagaacaacccgcaaaaaactcgtccattcaacattcaacaaggaaagaaacttgtcgctggcatggacgtcaacattgatgatgagattggcgacgacgaataatggattttccacaaagggttaatggttgggcgctatatgctcatccctgttttcaggaaacctacgacgctttagttgccgaagtcgagacattaaagggaaaagatcctgaaaattatcagagaaaagccgccacaaagttattggcggtagtccataaagtgattgaggagcatatcacggtcaatccatcatcaccggcattccgtcatggcaagtcgttaggctctgggaaaaataaagactggtcacgggtaaaatttggtgctggtcgttatcgtctcttctttcgttatagtgaaaaagagaaagtcatcattctgggatggatgaacgatgaaaacactctgcgcacctacggtaaaaaaacagatgcctataccgtattcagcaaaatgttaaaaagaggacatcctcctgccgactgggaaaccctcacccgagaaacagaagaaacccattgatggtgttcacaatgcccgccgaacgcattcgtgttgaccagcgggcatcctttctcactccccgaccagaatcacttcaaccccagcctttcgcagtccttccaggctatccgcaggaatgccttcatcaacaatgatcatgtcgatacgttgagtatcaatgatcttatgtaaactggaacgattgaacttactggaatcggtgaccacgatgatccgttccgcaacttcgcacatccgacggtttaaacgagcttcatcttcattatgtgtgctgacgccgcgctccagatcgatcgcatctacaccaagaaacagcatatcgaagtggtaattttgcagcgattgctcagcctgatcgccgtaaaaagattgcgactgacggcgcaaatgcccgccggtcatcagcagctcaacgccttccgcttccagcaacgcattagccacgttcataccgttggtcatcgcaattacgtcagtgtgcttgcgcatcagacgagcaatctcaaaagtggtggtcccggaatcgaggataacccgatgacctggctgaatcaactcaacggcagctttcgcaacgctgcgtttcatcgcggtgttcagtgcgcttttatcttccactgatggctcgactgacggcgtcgtgctatcgcagatcaacgcgccaccataggcacgcacagcgatcccctgcttttccagaaacgccagatcgttgcggatcgtcacagtagatacgccatacaatgccgacagatcgttaacctgcacactcccttgctgtcgcagacgctgaatgatctgttctcgtcgctcgctggtgccagtcactcgcttctcacctgaagcgtcggtattactcatagtaagtcctttcgtaaaactttcgtttcatttcgttttgcctattaacgcctttctattaagcaaatgcaagcccaccttgcccattgacgcaagctactctcgtttcagtgactttcattatgtttcttttgtgaatcagatcagaaaaccattatctttcgttttatttttatctcaccatgacgcagtatcaactgaaacaaaacgaaagattaatatcgcagtaatctgaactggagaggaaagtgaaacatctgacagaaatggtgagacagcacaaagcgggcaaaacaaatggaatttatgccgtttgttccgcacatccgctggtgctggaagctgcaatccgctacgccagtgcaaaccaaacgccgttactgattgaagcaacctccaatcaggtagaccagttcggcggttataccggaatgacgcccgccgattttcgcggctttgtttgtcagctcgccgactcgttgaatttcccgcaggatgcgttgattctgggtggtgaccatctggggccaaaccgctggcaaaacctgccggccgctcaggcaatggccaatgccgatgatttgattaaaagctacgttgcggcaggattcaaaaaaatccaccttgattgcagcatgtcctgtcaggacgatccgattcccttaactgatgacatcgtggctgaacgcgccgcccgtctggcgaaagtggcggaagaaacctgtcttgaacactttggcgaagccgatctggagtatgtcattggtaccgaagtgccggtacctggcggcgcgcatgaaaccttaagcgagctggcggtcaccacgccggatgccgcccgcgccacgctggaagcccatcgtcacgcctttgaaaagcaaggtttgaatgccatctggccacgcatcattgccctggtggttcaacccggcgtcgaattcgatcacaccaacgttattgattatcagcccgccaaagcgagcgccttaagccagatggtcgaaaactacgaaacgctgattttcgaagcgcactctaccgattatcaaacgccgcaatcgctgcgccagctggtgattgaccactttgccattctgaaagttggcccagcgctgaccttcgccctgcgtgaagctctgttctctctggcggcgattgaagaagaactggtgccagcgaaagcctgttctggtctgcgtcaggtgctggaagacgtgatgctcgaccgcccggaatactggcaaagccactaccacggtgacggcaacgcgcgtcgtctggcgcgtggttatagctactcggatcgcgtgcgctattactggccggacagccagattgatgacgctttcgctcatctggtacgtaatctggcggattcaccaattccgctgccgctgatcagccagtatctgccgctgcagtacgtgaaagttcgctccggcgagctgcagccaacgccacgggaactcattatcaaccatattcaggacatcctggcgcagtaccacacagcctgtgaaggccaataagcaaaacaaagaggaacacgctatgccaaatattgttttaagccggattgatgaacgcttgattcacggtcaggtcggcgttcaatgggtcggatttgcgggggcaaatctggtgctggtagccaacgatgaggttgccgaagatccggtacaacaaaacctgatggaaatggtactggcagaagggatcgccgtacgtttctggacgctgcaaaaagttatcgacaacattcatcgcgccgccgatcgacagaaaatcctgctggtttgtaaaacacccgccgatttcctgacgctggtgaaaggtggcgttccggtgaatcgcattaacgttggcaatatgcactacgccaatggcaaacaacaaatcgccaaaacggtttctgtggatgcgggcgatatcgcagcatttaacgacctgaaaaccgctggggtggaatgcttcgttcagggcgtcccgacagagcctgctgtggacctctttaaattactttgagggattcatcatggaaatcagcctgttgcaggcatttgcgttgggcattatcgcctttatcgctggcctggatatgtttaacggcctaacccatatgcaccgcccggtggtcctcggcccgttggtcgggctggtacttggcgatctgcataccggaattttaaccggcggtacgctggaactggtgtggatggggctggccccgctggcgggcgcacagccgcctaacgtgattatcggtactatcgtcggcacggcgtttgccattactactggcgtgaaacccgatgtcgcagtaggtgtcgccgtacctttcgctgtcgcagtacagatggggattaccttcctgttctcggtgatgtccggcgtgatgtctcgctgcgacctggcaacaaacccgcgccgcatttgatgctggtgccgacggcctggtgcattgctataacgggatgacaggtttacatcaccgcgaaccgggaatggttggcgcgggattaacggacaagcgcgcctggctggaactgatagccgatggtcatcatgtgcatccggcggcaatgtcgctgtgttgttgctgtgcgaaagagagaatcgtactgatcaccgacgcgatgcaggcagctgggatgccggatggtcgctatacgttatgtggtgaagaagtgcagatgcacggtggcgttgtccgtaccgcgtctggtgggctggcgggcagtacgctgtctgttgatgcggcagtgcgcaatatggtcgagttgacgggcgtaacgctgcggaagccatccatatggcgtcgctgcatccggcgcgaatgctgggtgttgatggtgttctgggatcgcttaaaccgggcaaacgcgccagagtcgttgcgctggatagcgggctacatgtgcaacaaatctggattcagggtcaattagcttcgttttgatagtttgctcctttattgggccttcacttcccccgtaaggcctttctttttctttcgttttgatctgtgcagcggtgtcggatgcgacgctaacgcgtcttatccgacctacagttggtgaccgcaaggccggataaagcgtttgcgccgcatccagcaatcccttttgcttcctttatcttttctttcaacgatcacaaatttcgttttatttcttttttctccattgaactttcagtttcttttctatagattttaatcaacgaaagacatcaccaagtgaaatgaaacgaaaggcaagtgaaagcgacaacgcccgacgtcaagttcatcagactaaggattgagttatgccagaaaattacacccctgctgccgccgcaaccggtacatggactgaagaagagatccgccatcagcctcgcgcatggatccgttcactcaccaacatcgacgcgctacgttccgcgctcaataacttccttgaaccgttactgcgcaaagagaatctgcggatcatcctgaccggagccggaacgtcggcatttatcggtgacatcatcgcgccgtggctcgccagccataccggtaaaaacttcagcgccgtaccgaccaccgatctggtcaccaatccgatggactacctgaacccagctcatccgctgctgttgatctccttcggtcgatccggcaacagcccggaaagcgtcgcagccgtggaactggcaaatcaatttgtaccggaatgctatcacctgccgatcacctgcaacgaagcgggcgctctttaccaaaacgcgatcaacagcgataacgcgtttgccctgctgatgcccgcagaaacgcacgatcgcggctttgcgatgaccagcagcattaccaccatgatggccagctgcctcgcggttttcgcacctgagacgatcaacagccaaaccttccgcgacgtggcggatcgttgccaggcgatcctgacctcactgggcgatttcagcgaaggtgtgtttggttacgcaccgtggaaacggatcgtttatctcggtagcggtggcttacagggcgcagcacgcgagtcggcgctgaaagtgctggaactgacggcgggtaaactggcggccttttatgattctccaaccggattccgtcatggaccaaaatcgctggtcgatgacgaaacgctggtggtggtatttgtctccagccacccttacacccgtcagtatgatcttgatctgctggctgaacttcgccgtgacaaccaggcaatgcgtgtaatcgccatcgccgcggaaagcagcgacatcgtcgctgccggtccacatatcatcctgccaccgtcacgtcactttatcgacgttgagcaggcattttgcttcctgatgtacgcccagacgtttgcactgatgcagtcgctgcacatgggcaatacgccggataccccatcagccagtggcaccgttaaccgcgtggtgcaaggcgtaatcattcatccgtggcaggcataagaggatcgcattatgagcattatctccactaaatatctgttacaggacgcccaggccaatggctacgcggtgcctgcttttaacattcataacgccgagacgatccaagcgatcctcgaagtgtgcagtgaaatgcgatcgccggtgatcctcgccggaacgccggggacctttaaacacatcgcgctggaagagatctacgccctgtgtagcgcctattccacaacctacaacatgccactggcgctgcatctcgaccaccacgaatcgctggatgatattcgccgtaaagtccacgcaggtgtgcgcagtgcgatgatcgacggcagccacttcccgtttgccgagaacgtgaagctggtgaaatcggttgttgacttctgccactcacaagattgcagcgtggaagcagaactgggccgcctgggcggtgttgaagatgacatgagcgttgacgccgaaagtgcattcctgaccgatccacaagaagctaaacgctttgtcgaactgactggcgtcgacagcctggcggtagcgattggtacggcgcacggcttatacagcaaaacgccgaagattgatttccagcggctggcggaaattcgtgaagtggtggatgttcctctggtgctgcatggtgccagcgatgttccggatgaatttgtccgtcgcactattgaacttggcgtcacaaaagtgaacgttgccacagaattaaaaatagccttcgctggcgcggttaaagcctggtttgcggaaaatccgcagggtaatgatcctcgttattatatgcgcgtcggaatggatgcgatgaaagaagttgtcagaaataaaattaatgtctgtggttcagcgaatcgaatttcagcataatcattagttttttatgatttatcccaatgtacttcccgattaatatcggggagtgccttaatggaaaaggagataactaaaccttaataaatacatcactacaatatcgcaacaataatatatttaaaaaaattatattattcaactttatggtgaggattacacaatgaccagtccaaatattctcttaacccgtattgataaccgtctggttcacggtcaggttggcgtgacctggacatccaccatcggtgcaaatctgctggtagtcgtggatgatgttgtcgctaacgatgatattcaacagaaattaatgggtattaccgcggaaacctacggctttggcattcgtttctttactatcgaaaaaaccattaacgtcatcggcaaagctgcaccacatcagaagatcttcctgatttgccgtacgccacaaacggtacgtaaattggtagaaggtggtattgacctgaaagatgtcaacgtcggcaatatgcatttctcggaagggaaaaagcaaatcagcagtaaagtttatgtcgatgaccaggatctcacggacttacgttttattaaacaacgtggcgtgaatgttttcattcaggacgtccctggcgatcaaaaagaacaaatccctgactaaatctaaaatcgccttaatattggtttgaggtaataaaaatgcatgaaataaccctacttcagggattatccctggcggcgttagtttttgttctggggattgatttttggctggaagccttatttttattccgcccgataatcgtttgtaccctaactggcgctattctcggtgatattcagactggcttaattaccggtggtctgacagagttggctttcgccggattaacccctgcaggtggtgttcagccgcccaacccgattatggcgggtctgatgaccaccgtcattgcatggtctacgggcgttgatgccaaaacagcaattggtcttggcctgccgtttagtttgttaatgcagtacgtcattctgttcttctattccgctttctcattatttatgaccaaagccgataaatgcgcgaaagaggcggatacggcagcgttttcccggcttaactggacaacgatgctcatcgtcgcttcagcgtatgcggtgattgctttcctctgtacttacctggcacagggggcgatgcaggcgctggtgaaagcgatgcccgcctggctgacccacggctttgaagtggctggcggtattctgcctgccgttggttttggcttgctgctgcgcgtaatgttcaaagcgcaatatatcccttacctgatcgccggtttcctgtttgtttgctacatccaggtcagcaacctgttgccggttgccgtactgggcgcaggctttgcggtgtatgagtttttcaatgcgaaatcccggcagcaagcgcaaccgcagcccgttgccagtaaaaatgaagaagaggactacagcaatgggatctgaaatcagtaaaaaagatatcacccgtctgggctttcgttcgtcgctgctgcaagcgagctttaactacgaaaggatgcaggcgggcggttttacctgggcgatgttgccgatcctgaaaaagatttataaggacgacaaaccgggcttaagcgcggcgatgaaagataacctcgaatttattaatacccacccgaatctggtcggattcctgatggggttattaatttcgatggaagaaaaaggagaaaaccgcgacaccattaaaggcctcaaagtggcactgtttggcccaatcgccgggattggcgatgcgattttctggtttactttgttgccgattatggcgggaatttgctcatcatttgccagccagggaaacctgctggggccgattctatttttcgccgtttacctgcttatctttttcctgcgcgtcggctggacccacgtcggttattcagtcggcgtgaaggcgatcgataaagtgcgagagaactcgcagatgattgcccgttcggcaaccatcctcgggatcacggtaatcggcgggctgatcgcttcgtatgtgcatattaacgtggtgacatcgtttgccatcgacaatacccacagcgttgcgctgcagcaggatttcttcgataaagtcttcccgaacattttaccgatggcctacaccctgctgatgtattacttcctgcgggtgaaaaaagcgcatccggtgctgttaatcggcgtgacttttgtgctctctattgtttgttccgcattcggcattttgtaaatggaacgaggcactgcgtctggtggtgcctctttacttaaggaatttcatcctgtgcaaacccttcagcaagttgaaaactatacggcgttaagtgaacgtgccagcgaatatttattggccgtgatccgtagcaaaccgaatgccgtgatttgcctggcgaccggagccacgccattactgacgtatcattatctggtagaaaaaatccaccagcagcaggttgatgtcagccagctcaccttcgtgaagctcgacgaatgggtggatctgccattaacgatgccaggcacctgcgaaactttcctgcaacagcatatcgtgcagccgctggggctacgtgaagaccagctcatcagctttcgctccgaagagataaatgagacagagtgcgaacgggtaacgaacctgattgcgcgcaaaggcggtctggatttatgcgttctcggattggggaaaaacggtcatcttgggctgaacgaaccgggagaaagcctgcaaccggcctgccatatcagtcaacttgatgccagaacacagcaacatgagatgttaaaaaccgcgggtcgccccgtgactcgtgggatcaccttaggcctgaaggatattctcaatgcccgcgaagttttgttactggtgactggcgaaggaaagcaggatgcgacagatcgttttctcacggctaaagtctctaccgctatcccggcttcatttttatggctgcacagtaactttatttgtttaattaacacctaaccagatgaaaaatttgctcaaaatgtttaaattaacttatgtaacagtcacgcattatattaaataacatttgactgggttgaacataacgccgatagcaaaaggagttatgttcaacaatttaattttagatatacatataacttgttctattaataaatcacctcgtattctgactcgccccctggcgcagcaaagtcaggcatttatactcttttgaatacatagaaaattgatatcaatataatgaaaatatcaaatatttgcatataaatataatcttaaagttcagtctatttaatgttcaatgaaatatttctgcctgtataatctttaaagatgttgaacatatattcacattaaatatgattatgtacttgttacaaggataaggttatatatgaataaagttacaaaaacagctattgcgggcttacttgcgcttttcgcaggtaatgccgctgcaaccgatggtgaaatagtttttgatggcgagattttaaaatccgcttgtgaaatcaatgactctgataagaaaattgaagttgctcttggtcactataatgccgaacagtttcgtaatattggcgagcgtagcccaaaaattccattcactattcctttagttaactgcccaatgactgggtgggagcacgataacggcaacgttgaagcgtctttccgtctatggctggaaacgcgagataatggcaccgtccctaacttccctaatctggcaaaagtaggctcttttgctggcatagcggcaacaggtgtgggtatccgtattgacgatgcggaaagcggaaacattatgccactgaatgctatgggcaatgataacacggtttatcagatcccggcggaatccaatggtattgtcaatgttgacctcatcgcttactacgtatcaaccgtagttccatcagaaatcaccccaggggaagcagacgctatcgttaacgtaacgctggattaccgttaatacgttagggcgttatctgacctgtcagataacgcccttttccttcctctttctcgttgtatcaggttgaaaaataactatgtcaaaacgaacattcgcggtgatattaaccttgttgtgtagcttctgtattggccaggcgcttgcaggaggaatcgttttacagcgaacgcgagtgatctatgatgccagccgcaaagaggctgcgttacctgtcgcaaacaaaggcgcagaaacgccttatttactgcaatcatgggtagataatatagatggtaaaagccgtgccccatttattataaccccaccgctatttcgtcttgaggctggcgatgactcatcactgcgaattattaaaacagctgataacctgcctgaaaataaagagtcgctgttctacattaatgttcgtgccattccagcaaagaaaaaatcagatgatgttaatgctaacgagttgacgctggtatttaaaacacggatcaaaatgttttatcgccccgcacacctgaagggacgggtaaacgatgcgtggaaatcactggaatttaaacgtagtgaccattcactcaatatatataacccaactgaatattacgtcgtatttgccggactggcagtcgataaaaccgatctcacaagcaaaattgaatatatcgcgcccggagaacataaacagttaccacttcctgcatctggcggaaagaacgtgaaatgggctgcgatcaatgattatggcggcagttccgggacagaaactcgtccactgcaataaaaaatataaaaacacaggtcatcagggaatgccacaacgacaccaccagggacataaacgcacaccgaaacagttggcgctcatcatcaaacgttgtttgccgatggtgctcactggcagcggcatgctttgcactaccgctaacgccgaagagtattatttcgaccccattatgctggaaaccacaaaaagtggtatgcaaacaaccgatctgtcgcgtttttcaaaaaaatatgcacaactaccaggaacttatcaggttgatatctggctgaataaaaagaaggtttcacagaaaaaaattacatttaccgccaatgcagagcaacttctgcagccacagtttacggtagaacaactacgtgagctgggtattaaggtggatgaaatcccggcgctggctgaaaaagatgacgatagcgtgatcaactcgcttgaacaaatcattcccggtacagctgctgaatttgatttcaatcatcagcaacttaatttgagcattccccaaattgcactgtaccgtgatgcaagaggttacgtctccccttctcgttgggacgatggtataccaacgctgtttaccaactactcgtttacaggttctgataaccgttaccgccagggcaatcgtagccaacgacagtacctgaatatgcaaaatggtgctaattttggcccctggcgattacgcaactattccacatggacacgcaacgatcagacatcaagctggaataccatcagtagttatttacaacgtgatatcaaggcgttgaagtctcagttgcttctgggagaaagcgccaccagcggcagtattttttccagctacacctttactggcgtgcaactcgcttccgacgataatatgttgccaaacagccagcgcggatttgccccaacggtacgcggtatcgcaaacagtagtgcaatcgtgactatcaggcaaaatggttatgtgatctatcaaagcaacgtgtcagcgggtgcctttgaaattaacgatctctacccctcttccaacagcggcgatttagaagtcacgattgaagaaagtgacggtacacaacgtcgctttatccagccttattcttcattacccatgatgcagcgacctgggcatctaaagtatagcgcgaccgctggacgctatcgcgctgatgcaaacagtgatagcaaggaacccgaatttgctgaagccacggcaatatatggtttgaataatacttttacgctgtatggcggcctgctcggttctgaagattattatgcgctggggatcggtatcggcggcacacttggcgcactgggcgcgttgtcgatggatatcaacagagctgacacccaattcgataaccagcactcttttcatggctatcaatggcgtacgcagtacatcaaagatatcccggaaaccaacaccaatatcgctgtcagctactatcgctataccaacgatggctattttagttttaatgaagccaatacccgcaattgggactataacagtcgccaaaaaagtgaaattcaattcaacatcagccagacaatatttgatggggtaagtctgtatgcctccggttcgcagcaagactattggggcaataacgataaaaacaggaatatctctgttggggtttccggccagcaatggggagttggttacagcctgaattatcaatacagccgctacactgatcaaaataatgaccgcgcactctctttgaatctcagtattccgttagaacgctggttaccgcgtagccgggtttcctatcagatgaccagccagaaagatcgcccaacccaacatgaaatgcgtcttgatggctcactgctggatgatggtcgcctgagctatagcctggaacaaagtctggatgacgataacaaccataacagtagcctgaacgccagttaccgttcaccttatggcaccttcagtgccggatacagctacggtaatgacagcagccaatacaattacggcgttaccggcggcgtggttatccatcctcatggcgtgacgctctcgcaatatctgggcaacgcttttgcgcttatcgatgctaacggagcatctggcgtgaggatacaaaactatccggggattgctaccgatccttttggctatgcagtggttccttatctcacaacttatcaggaaaaccgtctctcggtagatactacgcagctgcccgataacgtcgatcttgaacaaacaacacagtttgtggtgcccaacagaggtgcaatggtagcggcgcgtttcaacgccaatatcggttatcgcgtacttgttacagtcagcgatcgcaacggtaaaccgttgccctttggcgctcttgccagcaacgatgatacggggcaacaaagtatcgtcgatgagggcggcatactatatctctctgggatatcgagtaaatcacaaagctggactgtacgctggggaaatcaggcagatcaacaatgtcagtttgctttcagtacaccggattcagaacctacaacctctgtattacaaggcacagcgcagtgccattaaggataaaaaaatgaaaagagcgcctcttataacaggtcttttgttgatatccacatcctgcgcttatgcctcctcaggagggtgtggagccgacagcactagcggtgcgacaaattacagcagtgtggttgatgatgttacggtgaaccagacagataacgtgacaggacgggagtttacctctgcaacgctaagtagcactaactggcaatacgcctgttcctgctctgcgggtaaggcagttaaacttgtctatatggtcagccccgtacttaccaccactggacatcagacaggatattacaaactcaatgacagcctggatattaaaaccacattacaggcaaacgacattccaggactcacaaccgaccaggttgtctctgttaacacccgattcacacagataaaaaacaacacggtatattctgctgcaacccaaacgggtgtttgccagggtgatacgtctcgttatggacccgttaatattggtgcgaacaccacctttaccctgtatgtcaccaagccatttctcggctcgatgaccattccgaaaacggatattgccgtcattaaaggcgcgtgggtcgatggaatgggaagcccgtctacaggtgacttccatgatttagtcaagttatcgattcagggaaatctcaccgccccacagtcgtgcaaaattaatcagggcgatgttattaaggttaattttggattcatcaatggtcagaagtttaccacccgcaatgccatgccagacggttttactccagtagactttgatatcacttatgactgtggtgatacttcaaagattaaaaactcgttgcaaatgcgcatcgacggtacaactggggtagtagaccagtacaacctggtcgccaggcgaagaagttcagacaatgtgcccgatgtcggtattcgtattgaaaatctcggcggcggagttgcaaatattccttttcagaacggtatccttcccgttgatccttccgggcatggcaccgtcaatatgcgcgcctggccagttaatctggtcggtggtgagctggaaacaggaaaatttcagggcacagccaccattaccgtcatcgtgcggtaaaagaagacgttgcgttttgattaacgcaacgcttcggcactgttacccctgctgctccagcgcatacttatacagcgcatttttcttcacgccgtgaatttctgcggccagcgccgccgcttttttcagcggcagttctgcctgtagcagcgccagcgtgcgcagggcatcggcgggtaagtcttcttcctgtgctttatgaccttcgacaatcagcaccatttcgcctttgcgacggttttcatcttcctttacccacgccagcagctcgccaacgggcgcgccgtgaatggtttcccaggttttggtcagctcacgcgccagaaccacgtagcgggattcgcctaataccgcaacgatatcttccaggctatctaacagacggtgggtagattcataaaaaatcagcgtgcgcggctccgcttcaatggcttttagcgcatcacggcggccttttgatttggcaggtaaaaagccttcgtaacagaaacggtcagagggtaaacccgctgcgcttaacgcagtgatagcagcacacggcccgggtagcggcaccacgcggatccccgcttcacggcaggtacgcaccagatggtagccaggatcgttaattagcggcgttccggcatcggaaaccagcgcaatgttttgcccctcttgcagcttcgccagcagcgtttcagctttttgttgttcgttatggtcgtgcagcgcaaacaaccgggcattaatcccaaaatgttgcagcaataaaccggtgtgacgagtatcctcggcggcaatcagatcaacggcctgtaatacctctaacgcacgctgggtgatatccgccagattgccgattggcgtcggtacaatgtaaagctggccctgagaattatccgccgattggtgttgtttcattgtgtcgtccgtattgccgatttaatattgagcattgcgtaaaaaaaatatcactggatacattatggtaccctcaacattttctcgtttgaaagccgcgcgttgtctgcctgttgttctggcagccctgattttcgccggttgtggcacccatactcccgatcagtccactgcttatatgcagggcacggcgcaggctgattctgccttttatcttcagcagatgcagcaaagctctgatgataccaggatcaactggcaattactcgccattcgtgcactggtgaaagaaggtaaaaccgggcaggcggttgagttgtttaaccaactaccgcaagaactgaacgatgctcagcgtcgcgagaaaacactgctggcggtagagattaaactggcgcagaaagattttgctggcgcgcaaaacttgctggcgaaaatcacacctgccgatttagaacaaaaccagcaagcgcgttactggcaggcaaaaatcgatgccagccaggggcgtccttccattgatttactgcgcgcgttaattgctcaggaaccgctgcttggcgcgaaagaaaaacagcagaatattgatgccacctggcaggcgctctcctccatgactcaggaacaggcgaatacgctggtgatcaacgccgacgaaaatattctgcaaggctggctggatctgcagcgcgtctggtttgataaccgtaacgatcccgacatgatgaaagccgggatcgccgactggcagaaacgttatccgaacaatccgggcgcgaaaatgctgccaacgcagttggttaacgtaaaagcgtttaaaccagcctcgaccaacaaaatcgccctgctgttgccactgaatggccaggcagcggtatttggtcgcactattcagcaaggctttgaagcggcgaaaaatatcggcactcagccagtggcagctcaggtagctgccgcacctgccgcagacgtagctgaacaacctcagccgcaaaccgtggatggcgttgccagcccggcacaagcctcggttagcgatctgaccggtgaacagcctgcagcccagccggtgcctgtaagcgccccggcgacaagcaccgcagcggtaagcgcacccgcaaatccatccgcagagctgaaaatctacgatacctcatcacaaccacttagccagatcttaagccaggttcagcaggatggcgcgagtattgtggtcggtccgttgctgaaaaataacgttgaagagttgctgaagagcaacactccgctgaacgtactggcactgaaccagccggagaatatcgaaaatcgcgtcaatatttgttacttcgcgctttcaccggaagacgaagcgcgcgatgcagcgcgtcatattcgtgaccagggtaaacaagcgccgctggtgctgatcccacgcagttcattgggcgatcgcgtagccaatgcgtttgcgcaagagtggcagaaactgggcggcggcaccgttctgcaacaaaaatttggttccaccagcgaattacgcgcgggtgttaacggcggttctggtattgctttaacgggtagcccgattactctcagagcgacaaccgactccggcatgacgaccaacaatccaacgctgcaaaccacgccaaccgatgaccagttcaccaataatggcggtcgtgtcgatgcggtgtacattgtggcaacgccgggtgaaatcgcttttatcaaaccgatgatcgccatgcgtaacggtagccagagcggtgcaacgctgtacgccagctcccgcagtgcgcaagggaccgctggcccggatttccgactggagatggaaggcttgcagtacagcgaaatcccgatgctggcaggcggtaatctaccgttaatgcagcaggcactcagcgcggtgaataacgattattcactggctcgcatgtatgcgatgggcgtcgatgcctggtcgctggcaaatcatttctcacaaatgcgccaggttcagggttttgaaatcaacggtaataccggaagcctgacggctaacccggattgcgtgattaacaggaacttatcatggctacagtaccaacaaggtcaggtagtccccgtcagttaaccaccaaacagaccggcgatgcgtgggaagcacaagcgcgtcgctggctggaaggcaaaggactgcggtttatcgccgctaacgtgaacgagcgtggcggcgagatcgatctgataatgcgtgaaggccggaccaccatttttgtcgaggtacgctatcgccgctctgcgctttatggcggcgcggcagccagtgtgacccgcagcaaacaacacaaattattacagactgcccgcttgtggctcgcgcgtcataatgggagttttgatactgtggattgccggttcgatgtggtagccttcaccgggaatgaggttgagtggattaaggatgcctttaatgaccactcataattaaggtttaaggattagcgtgcaagaaagaattaaagcttgcttcactgaaagcattcaaactcaaattgcggcggcagaggcgcttccggatgccatctcccgtgcagccatgacgctggttcagtctctgctcaatggcaacaaaatcctctgttgtggtaatggaacttccgctgccaatgcacagcattttgctgccagcatgatcaaccgtttcgaaacggagcggcccagcttacctgccattgcactaaatactgataatgttgtcttaacggcgattgccaacgatcgcttacatgatgaagtgtatgcaaaacaggtgcgggcgctgggtcatgcgggagatgtattgttagccatttccacccgtggcaacagccgcgatattgttaaagcagttgaagccgccgttacgcgtgatatgaccattgtggcattgaccggctatgacggcggcgaacttgcaggtttgttagggccacaggatgtggagatccgcattccttcgcatcgtagtgctcgcattcaggaaatgcatatgctgacggtaaattgcctgtgcgatctgatcgataacacgcttttccctcaccaggatgattaaggagaatacatgaaggcattatcgccaatcgcagtccttatttccgcgctgctgttgcaaggttgtgttgccgctgccgtagtgggtaccgctgctgtgggtaccaaagccgcaactgacccacgcagtgtcggcacccaggtggacgatggtaccctggaagtgcgcgtgaacagcgcattgtcgaaagacgaacagattaagaaagaagcgcgcattaatgtaacggcctatcagggcaaagtgctgctggttgggcagtcaccaaatgctgaactttcggctcgcgccaaacagattgctatgggcgtagacggtgccaacgaagtgtataacgagattcgtcagggccagccgattggtctgggcgaagcatctaacgatacgtggatcaccaccaaagtgcgttcgcagctcttaaccagcgacctggtgaaatcgtccaacgtgaaagtgaccaccgaaaacggtgaagtgttcctgatggggctggtgactgaacgtgaagcgaaagcggcggcagatattgccagccgggtgagcggcgtgaagcgggtaactacggcgtttacgtttattaaatagcagccccttgtaatgcctgatgcgacgcttgccgcgtcttatcaggcctacaacgatacaaaccgtaggtcagataaggcgtttacgccgcatccgacatgttttccctcaaatcagaacaacagcgccagcccgccgacaatcacaccagacactgccaccatcgcccctgtcagccataaggctttcgccgggaacgctttgcgcagcataatcagtgacggcaaactcactgccgggagcgtcatcaacaatgccagcgccggagcggttcccatacctgccagcatcatcgtttgtacaatcggaatttctgctgccgtgggaatgacaaacaagcatcctgctaccgccatcgccaccacccacatcaggctgttatcgacagcaccatcggcatgggggaataaccagacgcgagcggcacccaacaccagtactgcaaggatgtaaaccgggatcgtactccagaaaagcgtccatagcgccctgccccagcggctaaaaaacccgccctgtgcttccggtatgtcaatttcgaccggtgcctgcgtttgcggtgtttcacgcacccatttttgcaccagcgtcgcaatcagcaacaccatcaccagcccggccaccagacgaatcgccgcaaaaccccagccgaggacaaagcccataaacaccagcgtcgccgggtttaacaccggattgcccatccagaatgccagcgcaccgcccatcgacacctgttggcgacgcattcccgccgcgaccggagccgcacagcaggtacacatcatgcccggcaacgaaaacagcgttcccagcagcgtgccgcgaaagcgcgattgcccaagcgtacgcaacaaccagtcacgcgggatcagcacctgaatcaacgaaccgaggatcacccccagcaccgccgctttccataccgcgaggaaatagatcatcgcgtaatccaacgccgcctgccatgggttagcatccgcctgcgcaaggatagatttaccgatactgtgggtttcggcagcagtaaacgctttgccgtagtaaggttcccatttcacataccagagaccggcaatgacaacgagaaagaaaagcgcgggtttccaccactgaatgggcgttgccgcctgagatgaagactgaccagtcatagcattccccaggaataagttatgataattgagcgcgtgaatattacgctcactatcaattcttgggaataattattcagctcttttgcgtaattctgaagagcttaaaatcgtcacgccttcatgctcaggccgcatcgactctgccagcatgacccgcgccacgtctctcgcatcaatggatttccagttacctggtaacaaacggaacagcggcgcaaaaagcgtttcgttcatccgctgtttgctacgatcgcccagtaacatcgacgggcgagcaatggtcaatttcggccagttctgggcgattaatgcttcttccatctcccctttgacgcggttatagaaaaacggcgagtgggcattggcacccatcgcactgactaccaacatatgctgcgcgcccagtcgccgcccggttaatgcggtatccactaccagcgtgtaatcggcatgaataaacgcctctttgctccccgcttctcgccgcgtggtgccgagacaacaaaacacaatgtcgatgggatcggtgacctgcgccaacgcgtcactcagttgcggatcatggggattaaacaccccgggcatatcgcccaacggacgtcgcgtcggcgcagcaatggcgttaactttcggttcgttaatcaacatccgcagcaggtgaccgcccaccagccccgttgcgcctgtaatcagtacctgactcatcttcgctcctttacagaattgtctgccttgcgctccacggctcatgcaccaggcttaatagaccatgaggtaattatccccgattgtgggaaattcgcctcatccaatgcaacaacgcggaggaagcatgagtaagaaaattgccgttttaatcactgatgaatttgaggattcagaatttacttcacccgcagacgagttccgtaaagccggacacgaagtgattaccattgaaaaacaagcgggtaaaacggtgaaaggcaaaaaaggagaagccagcgtgaccatcgataaatccatcgatgaagtgacgcctgcggagtttgatgccctgctgctaccgggcggccattcaccggattatctgcgtggggacaaccgttttgtcacctttacccgtgattttgtgaatagtggcaaaccggtgtttgccatctgtcacggcccgcagttgctgatcagcgccgatgtgattcgggggcgcaaactgaccgcagttaaaccgatcattattgatgttaaaaatgcgggcgcggaattttacgatcaggaagtcgtggttgataaagatcagctggttaccagccggacaccggacgatctgccagcgtttaaccgcgaggcgttacgcctgctcggtgcctgagtcgcgtagccaaatcatttttttaccaaagcccagcgtgttgtcggtgaatttgatttcatcgagccggatttcccacaccggggccgacagcattctggcaaccggaaagcgacgattgtacgccttgcgcgcgaggtcgctttcctcaccttccagcctgcggatctcacctttaaactgcacaccgcgaattaacgctaccgttttcggctgaccgtttaccgttccggcaaccgcagcctgcggcccactcatctgcgcgtggcgcgttttttcttccgtcaaaatgtagaaggcgactttctgcgcatcaaaaagataaaaggcattagcgcaccagagttccccttcctgctgcacacaccaagtgacaacatgttgttttgccagccaacggctgatggcgatgagtgtttccattgctgttctcttttatactgtgggcctgaccttaacatgcgacgcagacgatgacaccctggtttctttacttgatccgtaccgccgacaataagctttataccgggatcaccacggatgtcgaacgccgctatcagcagcaccaaagcggcaaaggggcgaaagcactgcgcgggaaaggagaactaacgctggtgttttccgcgccagtgggcgatcgttcgctggcgttacgggcggaatatcgcgttaagcaactgaccaaacggcaaaaagagcgtctggtagcggaaggcgcagggtttgcagagctgttaagcagtctgcaaaccccggagattaaaagcgattgaaatgctcgtgatactcaaccaggccggtaacgccattcagcgcgtcatccgctaaacgatgtacctggaaggcgctttcagtgcccggccagcggcaacgcagatcgtgatgcgccgccagttcaaagccgaaacgactgtacagcgccggatcgcccagcgtcaccactgcggcatagccgaactcattaagcgaatcgagtccttcatagaccagttggcgtgccagcccctgtccacggtatttttcatcaaccgccaacggtgccatgccgacccattgcaggtcttcgccctgcacatcaaccggactaaatgccacatagccaatgacctgaccttcgtcatctgtcgccaccagccccagcgtcagaaagccatcttcacgcagatcgtgaaccagcttcgcttccgcatcactttcgaatgagcgacgcagcagggcatcaatacccggcgcatcaatgggaatttctactcgaattagcatggttcacctaccgatgtctgtttggtttcaggcgcggttttcattcccgcctcaacaaaatccgccagttgcagcagcatcatgcgtaaggctttcggcatttgctccagttcaatggcgtccatcaggtttttcacatacagccccagctccgtatcgccttcaatcaccagccgacgctggaagaagagcgtatccggatcttgtttacgcgccgcaatcatcagcagatcgctggcgtcggcactaaaactcacatcagcttgcgcgttctggctaacgaccagtttgccattcaccaccgaggtaaaccattgcaggtcaatatcacgcacatgaatacttaaccagcggccttcaagaaactccagctcgccatcatccagcgcctggcggaattgccagcttaagacctgctcaagaacctggcgttttagcgcaaatggcgtcagttttaccggtacactcaacagagatggccccaaatgcacaatacgggaacgcagtttatccaacacgagttttactccctgtttcaacaatcatcctattttgccatatcagaaaaataacatagcggtataaatcaacaattccatatgaaattgctgctaccaccaatacaactttaactgccttaaatcaaaaattgtcgcagcaaggttaactaaaatcccagttcgttaacatttttgcgttttgatagcgcaaccttcaggaaaaattatggagctgctctgccctgccggaaatctcccggcgcttaaggcggccatcgaaaacggcgcagatgctgtttatatcgggctaaaagatgataccaatgcccgtcacttcgccggccttaactttaccgagaaaaaattgcaggaagcggtgagttttgtccatcaacatcgccgcaaacttcacatcgcgattaacacttttgcgcatccggacggttacgcccgttggcagcgcgccgtggatatggcggcgcagctgggtgccgacgcgctgatcctcgccgacctcgccatgctggagtacgccgccgagcgttatccgcatattgagcgccacgtatcggtgcaggcttcggcgaccaatgaagaggcgattaacttttatcatcgccattttgacgttgctcgcgtggtgctgccgcgcgtgttgtcgattcatcaggtgaaacaactggcacgggtcacacctgtaccactggaagtctttgctttcggcagcctgtgcattatgtcggaaggtcgttgctatctgtcgtcgtatctgacgggtgagtcgcccaacaccataggcgcgtgttctccggcccgtttcgtgcgctggcaacaaacgccgcaggggctggaatcccgcctgaacgaagtgctgatcgaccgttatcaggacggcgaaaacgcaggttatccgacgctatgtaaagggcgttatctggtggacggcgagcgctatcacgcgctggaagaaccaaccagtctcaataccctggaactgctgccggagttaatggcggcgaatattgcttcggtgaaaattgaaggccgccagcgtagcccggcgtatgtcagccaggtggcgaaagtctggcgtcaggctatcgaccgttgtaaggccgatccgcaaaactttgtaccgcaaagcgcgtggatggagacgctcgggtcgatgtccgaaggcacgcaaaccactcttggcgcatatcaccgtaaatggcagtgagaaaagcaatgaaatattccttagggccagtgctgtggtactggccaaaagagacgctggaagaattttatcagcaggccgccaccagcagcgccgacgtgatttatcttggtgaagcggtatgcagcaagcgtcgggcaaccaaagttggcgactggctggagatggcaaaatcgctcgccgggagtggtaagcagattgtgctctccacgctggcgctggtgcaggcatcatctgaactgggcgaactgaaacgctatgttgagaacggtgagtttctgattgaagccagcgatctcggcgtggtgaatatgtgcgctgaacgcaaactgccgttcgtcgccgggcacgcgctgaactgctacaacgcggtgacactgaaaatattgctcaaacagggcatgatgcgctggtgtatgccagtggagctttcccgcgactggctggtgaatctgcttaatcagtgcgatgagctgggcattcgtaaccagtttgaagtggaagtcctgagctacggtcatctgccgctggcctactccgcccgctgctttaccgcgcgttcggaagaccgcccgaaagatgagtgtgaaacctgctgcattaagtatccgaacgggcgcaacgtgctgtcgcaggaaaaccaacaagtgtttgtactcaatggcattcagaccatgagcggctacgtttacaacctcggtaacgagctggcatccatgcagggcctggttgatgtggtccgcctgtcaccgcagggtactgacactttcgcgatgctcgacgccttccgcgctaatgaaaatggcgctgcaccactgccgttgacggcgaacagcgactgtaacggctactggcggcggctggcaggactggagctgcaagcctaagtaaatagctcactttgttaacaactttaactactctttaatgcagtattaaagattaatcggtaacaaagtgagctgttatgactgataaaaccattgcgttttcgctactcgatctggcccccattcccgaaggttcttcagcgcgagaagcattctcccactctctcgatctcgcccgtctggctgaaaagcgcggctatcatcgctactggctggcagaacaccacaatatgactggcattgccagtgctgccacgtcggtattgatcggctatctggcggcgaataccaccacgctgcatctggggtctggcggcgtgatgttgcctaaccactcaccgttggtcattgcagaacagttcggcacgcttaatacactctatccggggcgaatcgatttggggctgggtcgtgctccgggtagtgaccaacggacaatgatggcgctacgtcgtcatatgagcggcgatattgataatttcccccgcgatgtggcggagctggtggactggtttgacgcccgcgatcccaatccgcatgtgcgcccggtaccaggctatggcgagaaaatccccgtgtggttgttaggctccagcctttacagcgcgcaactggcggcgcagcttggtctgccgtttgcgtttgcctcacacttcgcgccggatatgctgttccaggcgctgcatctttatcgcagcaacttcaaaccgtcagcacggctggaaaaaccatacgcgatggtgtgcatcaatattatcgccgccgacagcaaccgcgacgctgaatttctgtttacctcaatgcagcaagcctttgtgaagctgcgccgtggcgaaaccgggcaactgccgccgccgattcaaaatatggatcagttctggtcaccgtctgagcagtatggcgtgcagcaggcgctgagtatgtcgttggtaggtgataaagcgaaagtgcgtcatggcttgcagtcgatcctgcgcgaaaccgacgccgatgagattatggtcaacgggcagattttcgaccaccaggcgcggctgcattcgtttgagctggcgatggatgttaaggaagagttgttgggatagtgtgtcttaacgcgggaagccttatccgagctggcaacgctgtcctacatagacctgataagcgaagcgcatcaggcattgtgtaggcagcagaaatgtcggataaggcaccgctgattactgatacaccggcagtaaattaaagctcgataaaatatgcaccagtgcgttgccgacgccaaacaccagaatcagcgcaatcatcggcttgccaccccagacgcggaatttcgggctgccaaagcgtttacgcgatgcacgggctaacagcgccggaacaattgccgcccagatggtagccgctaaaccagcataaccaatggcgtacaggaatccgttcgggaacaacagcccccccacaactggcggggcaaaggtcagcaatgccgttttcaagcggcccacagccgagtcgtcgaaaccaaacagatctgccagatagtcaaacaaacccagcgttacgccgaggaacgaactcgctaccgcaaagtttgagaacacgaccagcagcagatccagactacggctgttcagtacgccgcttaacgcctgtaccagcacatcaatattaccgcccttctctgcaataccgataaactccggacgcgggatgttacccatcgtcgccagcaaccagatggtatacagcgccagcgccatcagcgtaccgtacaccagacatttcacgatggttttcggatctttgccgtaatacttcatcaggcttggcacgttaccgtgataaccaaacgatgccagacagaacggcagggtcatcaacagatacggtgcataagacgcattgctttcggcgacgttgaacaatgtcgcaggctgcacatgccccagcaggctaccaaaggtgaggaagaaggtaatgactttcgcccccagcacaatcgctgtcatgcgactgacggctttagtgctcaaccacaccacaaacgctaccagcaatgcaaaaccaaaacccgccgcccgtgccgggacgtttagtgacatctctgcgaaggtgtgatgcagaatcgaaccactggcagaaatataggcataggtcaggatatagagcacaaaggcaatggaaatgccgttgaccacgttccagcctttgcccagcaaatctttggtgatggtgtcaaaactcgaaccgattctgtaattcaggttagcttccagaatcatcaagccggaatgcagcatacagaaccaggtaaagatcagcgccgccattgaccagaaaaaccacgccccggacatgaccactggcagagaaaacatccctgcgccaataatggtgccgccgataatcaccacgccgccaagcagcgacggtgacgtttgggtggtggttagtgttgccatgagggcttctctccagtgaaaaatagtgcgactgcgttgttatgcattgcactgtaccagtacacgagtacaaaagacagaaaaaaagccccgatggtaaaaatcggggctgtatatattattttacagattgtgttcgctgttcagcgatgattacgcatcaccaccgaaacgacgacgaccggtagaatcatcacgacgcggagcgcggccttcacgacgttcgccgctaaaacgacgaccatcaccacggccaccttcacggcgttcaccgctgaagttacgaccgccttcacgacgttcgccaccgaaaccacgaccaccgccacgacgctcaccgccagtatgcggctgtgcatcgcccagtaactgcatgttcatcggcttgttgagaatgcgagtgcgcgtaaagtgttgcagcacttcacccggcatacctttcggcagttcgatggtggagtgagaagcaaacagcttgatgttaccaatgtaacggctgctgatgtcgccttcgttagcaatcgcaccaacgatatgacgaacttcaacaccatcatcgcggcccacttcaatgcggtacagctgcatatcgccaacatcacgacgttcacgacgcggacgatcttcacggtcaccacgcgggccacggtcgttacgatcgcgcggaccacggtcatcacggtcacggaattcacgtttcggacgcatcggcgcatctggcggtacgatcagagtacgttcaccctgtgccattttcagcagtgccgcagccagagtttcgagatccagctcttcaccttcagcagtcggctgaattttgctcagcagtgcgcggtattgatccagatcgctgctttccagctgctgctgtactttagcggcgaatttttccagacggcgtttgcctagcagttctgcgttcggcagttctacttccggaatagtcagcttcatagtacgttcaatgttgcgcagcagacgacgctcgcggttctcaacgaacagcagcgcgcggccagcacgacccgcacgaccggtacgaccgatacggtgaacgtaagactcagaatccatcgggatatcgtagttaactaccaggctgatacgctcaacgtccaggccacgggctgcaacgtcggtcgcaatcaggatgtccagacgaccatctttcaggcgttccagtgtctgttcacgcagcgcctggttcatgtcaccgttcagcgcggcgctgttgtagccgttacgctcaagagcttcagccacttccagagtcgcgtttttggtacgaacgaagataatcgccgcatcaaaatcttccgcttccaggaaacgtaccagtgcttcgtttttgcgcataccccagacagtccagtagctctggctgatgtcaggacgggtagtcacgctggactgaatgcgcacttcctgcggctctttcataaagcggcgggtaatgcgacgaatcgcttccggcatggttgcagagaacagagcggtctgatgaccttccgggatctgcgccataatggtttcaacgtcttcgatgaagcccatgcgcagcatttcgtcagcttcatccagaaccagaccgctcagtttagagaggtccagagtgccacgtttcaggtggtccagcagacggcccggagtaccgacaacgatctgcggcccctgacgcagggcgcgtaattgcacgtcataacgctggccgccgtacagagcaaccacatttacgccgcgcatgtgtttagagaaatccgtcattgcttcagcaacctgtaccgccagttcgcgggtcggtgccagcaccagaatctgtggtgctttcagctcaggatcaagattctgcaacagaggtaaagagaatgctgcagtttttccgctccccgtctgggccatacccagaacgtcgcggccattcagcagatgtggaatacactctgcctgaattggagatggtttttcgtaacccagatcgttaagggcttcaaggataggagccttcaggcccagatctgcaaaagtggtttcgaattcagccatgtagtacgtgtgcctcaaaattaatggcggccagtctacataactcatcatgaaattgatcagcaattttcattgaaaagtgtgaaccggctcaaagtaggtgtattaacgaacaacaacgccctcacccgttaaggtgatggcaatcaaaaaagattacgggctgatgtgtacgtcagctattgctggtccgattctgccaggtcatcttggtcctggcccaggagcgataattccaacaatgcgtatcggtgctcaacaaagttatgaacgttgttggcaaccgccagtttgaacagtgccgtggcgctgtccaaatcccccagacttaggtagtacttacctaaatagaagttggtttcactgagatgctcagcgagcgaggtgttatccgttgcgtccgccttgagcctttccattaacgtttgttcgctaatgttgcccaggtagaactcgacaatgttccatccccactgttccttatccgatttttcgaagtgctgtttcaacacttctttagcctgcttctcatcgagcttctgctcggcgagataaagccacagactacggaaaggatcattgggatcgtcttgataaaacgccagcagatcatcttgcgctaacttgtcacgaccgccgtaatataatgcgatcccgcgattcaagtgcgcgtagttgtaagttggatcaagctcaagtacagaatcaaacgcttcataggcagcatcaaaattgcctgcctgcgttaaatatatgcctaagtaattgaatacttcaggcatatccggtcggattgccagcgcttgcgaaaaatcgttacgcgctaatgccctcagaccgagactatcatacaacactccgcgctcatataaaagctgtgcgcgttcgtcatcggttaaagcccgactggcaaggatttgttccatacgtgccagaatcacttcctgctgtaaagtcggttgcaatggtaccgcgaggacttcacttttacgccaggaagtattactgcatcctgcaagcgtaagtgctgtcgcaacgaaacaccagcgcaaaaaaggcttcatttcccactcccgaagaccacggttgaatgaacgtcctgttcccggttgctaacaaggcgtcctgcccggttaaaagccccccgccgcagcggagggcaaatggcaaccttactcgccctgttcagcagccggagcttccggtgctgcagcaggttgagactgctcagtcgcttctttaatgctcagacggatacggccctggcgatcaacttccagaactttcaccggtacttcctgacccatctgcaggtaatcggtcactttctcaacgcgtttgtcagcgatttgagagatgtggaccagaccttctttaccgccgccgatggcaacaaatgcgccaaagtcaacgatacgggtcactttaccagtgtagacgcggcccacttcgatttctgcagtgatctcttcgatacgacgaatagcatgtttcgctttctcgccgtcggtcgctgcaatcttcacagtaccgtcatcttcgatttcgatggtggtgccagtttcttcggtcagagcacggattacagaaccgcctttaccgataacatctttgatcttgtccgggttgatcttgatggtatggatacgcggtgcgaactcagagatatcgccacgcggcgcgttgatcgcctgttccattacgcccaggatatgcagacgcgcacctttagcctggttcagcgcaacctgcatgatctctttggtgataccttcaattttgatatccatctgcagtgcagagataccgtcgcgggaacctgcaactttgaagtccatatcgcccaggtgatcttcgtcgcccaaaatgtcagacagtacaacgtagttgtcgccttctttcaccagacccattgcgatacccgcaacggcagctttgatcggcacacctgcgtccatcagcgccagagacgcgccgcacacggaagccatagaagaggaaccgttggattcagtgatttcagacacaacacgtacggtgtacgggaatttgtccatatccggcatgactgccagcacgccgcgcttcgccagacgaccgtgaccaatttcacgacgcttcggagaaccgaccatgccggtttcgcctacggagtacggagggaagttgtagtggaacaggaaggtatcggtacgttcgcccatcagttcatcaagaacctgcgcgtcacgagcagtacccagcgttgcggtaaccagcgcctgcgtttcaccacgggtgaacagcgcagaaccgtgagtacgcggcagcacgccagtacgcacatccagaccacggatcatatctttttcacgaccgtcgatacgcggttcgcctgccagtacgcggctacgaacaacgtttttctcgatcgcgtgcagaatttcacccagttcgttttcgtccagggtttcgtcttcagcaagcagcgtcgcgatggtttcagatttgatgacatcaacctgcgcataacgctcttgtttgtcggtgatgcggtaagcatcgctcaggcgagcttcagccagtgcagcaacgcgcgcgtttagcgcttcgtttaccggctccggctgccagtcccaacgcggtttaccggcttctttcaccagttcattgatgttctgaataacaacctgctgttgttcatgaccgaacactactgcgcccagcatctggtcttcgctcagcagttgagcttcagattcaaccatcagtacagcggcttcagtaccggcaacaaccagatccagtttgctctctttcagctcgtcctgagtcgggttcagtacgtactggtcattgatgtaacctacgcgggcagcaccaatcgggccattgaacggaataccagacagagacagcgctgcggaagcaccaatcatcgcgacgatatccgggttaacttgcgggttaacagaaaccacggtggcgataacctgaacttcgttgacgaagccttccgggaacagcgggcgaatcgggcggtcaatcagacgcgcgatcagggtttcgccttcgcttgggcggccttcacgacggaagaagctacccgggatacgaccagcagcgtaggtacgctcctgatagttaacggtcagtgggaagaagtcctgacctggtttggcttttttctggccaacaacggtaacgaataccgcggtgtcatccatgctaaccataacagcggcagtagcctgacgagccatcatgccggtttccagagtcacggtgtgttggccgtactggaatttacgaacgatcggattaagcaatgtaatatcctttctctttcttagacagtaccttacggcactggtgttaatacccgatcttctgcgcatcctcgcgactaatgacaaccctaacccagctctatgtgggtaaagcctctcattagccgcgcgaacctctgcaacggaagatcattcatagcaacaatacattagtttccagtgaattgctgccgtcagcttgaaaaaaggggccactcaggcccccttttctgaaactcgcaagaattagcgacgcagacccaggcgctcgatgagctgggtgtaacgtgctacgtctttacgtttcaggtagtcgagcagtttacgacgctgagaaaccatgcgcagcagaccacgacggctgtggtgatcttttttgtgctctgcaaagtggccctgcaggtggttgatctgtgcagtcagcagtgctacctgaacttcggtagaaccggtgtcgtttgcgtcacgaccaaactcagaaacgattttagctgttgcttcagtacttagagacattttaaaactccaaagtatatagaatgaaaggacgccgatctctaattcagcgatcccagtgtacgttacgcaaagtgttaaacaatttacgcgacgttaagcggcagtattctactcgtagcgacctgttatcgcaagacggttaacattacgccgggtattcaaccaccaggcgacgaggcgcaacgcggccttcatcgtcaatttcgcccataccgataaatttgccgttctcaccttccgtgacgcgaaccagtccttccagtggcgcaccagatgtacgaaccgggttaccatttttgaagtaaacagaagacgttaacggaagattcaccaccggatagtccgaagctggactgtccattggcatcagtaatggatcaagtaactccgcggctggaatatcctgctgttcagcttgctcaacaagttcacgcaggtgctccagggtcaccatccgttcaaccggatatttacttaccgccagacggcgcaggtaaataacatgcgcgccacagccgagtttttcacccaggtcatcaatgatggtgcggatataagtgccttttgagcagtgaatttccagctccagctcattgccttcatggcgaataaacagcaattcataaacggtaatcggagcttcacgcggaacttcaatgccctgacgcgcatattcgtacagttttttgccctgatatttcagtgctgaatacatcgaagggatctgttcgatatcgccacggaaagtatccagtgccgctgccagctgctctgcgctaaaggttaccggacgttcttcaacgatctgtccgtcggcatcagaagtatcggtacgctgtccaagacgcgcaatgacccgatagcgtttgtcggagtccagcagatactgggaaaacttcgtcgcttccccgaggcaaatcggcaacatgccggtcgccagcgggtccagcgcaccggtatgcccggcacggttggcgttatatatacgtttcactttttgcagcgcatcgttgctggacataccctgaggtttatccagcaacaaaacgccgttaatgtcgcgaccgcgacgacgaggacgactcattagtcctccttgctgtcgtccgggttaacacgacgttcttcgtcatgtttgaccacgctggtcaccaggtttgacatgcgcatcccttcaaccagagagttgtcgtagaagaaggtcagttccggcacgatacgcaggcgcatcgctttccccagcaggctgcggatgaaaccagaagcttcttgcaacgctttgatgcccgctttaaccgcgtcttcatctttgtcgttgaggaacgtcacatatactttggcatacgccaggtcgcgagacatttcgacaccggaaacggtggtcatcatgcccaggcgaggatctttaatttcacgctgcaggatgagagcgatctctttttgcatttcctgcgctacgcgctgcgggcgaccaaattctttcgccataataaattctcctgacaaaaaaggggctgttagcccctttttaaaattaatttcaggtggaagggctgttcacgttgacctgataagacgcgccagcgtcacatcaggcaatccatgccggatgcagcgtaaacgccttatcccgcatggaaccctaaaaaccttaagcaatggtacgttggatctcgatgatttcgaatacttcgatcacatcgccagtgcggacgtcgttgtagttcttaacgccgataccacattccataccgttacggacttcgttaacgtcatctttgaagcggcgcagggactccagctcgccttcgtagataaccacgttgtcacgcagaacgcggatcgggttgtgacgtttaaccacaccttcggtaaccatacagcctgcgatggcaccaaatttcggcgatttgaacacgtcacgaacttccgccagaccgataatctgctgtttcagttccggagacagcataccgctcatcgccgctttcacttcgtcaatcaggttatagatgacggagtagtaacgcagatccaggctttccgcttcaatcactttacgtgcagaggcatcagcacgtacgttaaagccaaccaggatggcgttggacgccgcagccagggtggcgtcggtttcggtgataccacctacgccagaaccgatgatcttcactttaacttcgtcagtagacagtttcagcaaggagtcggagatcgcttcgacagaaccctgtacgtctgccttcaggacgatattcacttcgtgaacttcgccttcggtcatgttggcgaacatgttctcgagtttagatttctgctgacgcgccagtttaacttcgcggaatttaccctgacgatagagtgcaacttcacgcgctttcttctcgtcacgtacaacggtaacttcatcacccgcagccggtacgccggacaggccgaggatttccaccggaatggacggacccgcttccagcacttcctgacccagttcgttacgcatcgcacgaacacgaccgtattcgaagccacacagaacgatatcgcccttgtgcagagtaccttcacgtaccagaacggtagcaaccggaccacgacctttatcgaggaaggattcgataaccgcaccgctcgccatacctttacgtaccgctttcagctccagaacttccgcctgcagcaggatagcgtccagcagttcatcgataccggtacccgctttcgcagatacgtgtacgaactggctttcaccgccccactcttccggcaggatgccgtactgggagagttcgttcttaacgcgatccggatcagcttctggtttatcgatcttgttcactgcaaccaccaccggtacctgcgccgctttcgcgtgctggattgcttcgatggtctgcggcatcacaccgtcgtcggcagcaacaaccaggactacgatgtccgttgcctgcgcaccacgagcacgcattgaagtaaacgcggcgtgccccggggtgtccaggaaggtgatcatgccgttttcagtttcaacgtggtatgcaccaatgtgctgggtaatgccgcccgcttcgccagaggccactttcgttgaacgaatgtagtccagcagagaggttttaccgtggtcaacgtgacccatgatggtcacaaccggcgcgcgcggttcagccgcagcacccgtgtcacggtcgctcattaccgcctcttccagctcgttttcacgacgcaggataactttatggcccatctcttcagcaaccagctgtgcggtttcctgatcgataacctggttgatggttgccattgcgcccagtttcatcatcgctttgatgacctgagagcctttaaccgccatcttgttcgccagttcgccaacggtgatagtttcgccgatcacaacgtcacggttaacggcctgagcaggcttctggaagccttgctgcagcgaagaacctttacgttttccgcctttaccgccacgtactgctgcgcgtgcttcttcacgatcagcttttgattcagcgtgtttgttgcctttcttcggacgcgctgctttcgcgttacgaccacggccacggccgccttcgacttcacgatcgctttcgtcttctgcctggcgagcatgttgagaagtagtgacgtgataatcgctggaatcttcagtcggttccgcgttatcagtccatttgttttcttccgccatacgacgtgcttcttcagcaacgcgacgtgcttcttcttcgagtttacgacgcgcttcttcttcagctttacgcttgagctctgcagcttcctgctcacggcgggctttttcagcctgggcgtttttagtcatatcgtcttgttgattgctcactttgtctttttccgcagcttcacgtttcgcttgttcagcagcttcacgcttagcttgttctgcggcctcacgttcagctttttgttgcgcctcgcgtttagccgattcttctgcctcacgacgggcttgctcttccgcttcacgctgcgcttgctcttccgctgcaaggcgttcagcctcttgcggatcgcgtttcacaaaggtgcgtttcttgcggacttcgatttgtaccgatttgctttttccaccggtaccaggaatgttaagggtgctgcgtgttttacgttgcagcgtcaatttgtccgggcctgaatttttctgattcaggtggtcaatcaaagtctgtttctcttgtgcagacacagagtcgtcagcagacttccggatacctgcatcagcaaattgctgtaccaggcgttccacggaggtctgtcgctctgcggccagcgttttaatcgttacatctgtcatgctgttccttcctgctacagtttattacgcttcgtcaccgaaccagcaaatattacgggcagccataatcagtgctccggctttttcgtcggtcaacccttcgatatcagccagatcatcaatgccctgttcggcgagatcttccagcgtacaaacgccacgggcggccagtttgaatgccaaatcacgatctaccccttcaaggttcagcagatcgtcagccggtttgttatcaccgaggctttcttcctgggcctgtgcaatggtggccagtgcatttttagcacgctcgcgcagtgcttcaacggtcggctcatcaaggccttcgatttccaacagctctttcatcggcacataggccaattcttccagcgtcgagaagccttcttctaccagaacagtcgcgaagtcttcgtcgatgtcgagatatttggtgaaggtgtcgatcgctgcgtgcgcttccgcctgatgcttagcctgcaggtcgtcaacggtcatcacgttgagttcccaaccgctcagctgcgaagccagacgcacgttctgaccgttacggccaatcgcctgcgccaggttaccggcttcaacggcgatatccatggtgtgtttatcttcatccaccacgatagaagcaacgtctgccggtgccattgcgttaatcacgaactgcgccgggttatcatcccacaggacgatatcgatacgctcgccacccagttcagtagacaccgcctgaacacgcgcgccacgcatacctacgcaagcacctaccggatcgatacgtttatcgttggttttcaccgcgattttcgcacgagaacccggatcgcgagccgctgctttaatttcaatcacttcttcgccgatttctggcacttcaatacggaacagttcgatcagcatttccggcttggaacgagtgacgaacagttgcgcgccacgcgcttccgggcgaacggaatagagcacgccacgaacgcggtcgccagggcggaagttttcacgcggcagcatatcttcgcgcaggatcacggcttcagcgttgttgcccagatccagagagatgttgtcgcggtttacttttttcaccacgccggtgatgatttcaccttcgtgttcacggaactgatcaaccaccatcgcacgttcggcttcacgcactttctgcacgataacctgttttgccgtctgggtagtgatacggtcaaaggtaacagactcaatctgatcttcaacgtaatcgcccaggttcaggctttcatcttcataacgtgcggcttcaagggtgatttccttggtcggctgggtgacttcatcaacaactaaccagcgacggaaagtgtcaaaatcaccgcttttgcgatcgatctgtacgcggacgtcgatctcttgttcatattttttctttgttgctgtcgccagcgcgctttccaatgcttcgaaaatcttctcgcgaggtagcgccttttcattggatacggcttcaactacagccaaaatttctttgttcatcgcgggcttttcacctcatccagactattaaaagtggggaaccaggttcgccttctggatattactcagcgcgaacacttcatctttaccttcgacggtaactgtgatcatttcaccgtctaccgctttgataacgccctgccatttacgacggttttgtaccgccatacggagaaccagagtcacctcttctccgacaaaacgggcgtagtgttcagccgtgaacagtgggcgatcgagacccggtgaggagacttccaggttataagcaacggtgatgggatcttcaacatccagcacagcacttacctggtggctcacatcagcacaatcatcaacattgatgccatcttcactatcaatatagatgcgcagtgtggatgtgcgaccgcgaataaattcgatgccaaccagttcaaaacccagggcctcaactggcgcagtaatcatctctgttaatttttgctctaatgtggacaagcccacccccaagacataaaaaaagggcctaaagcccagttattctgtagtcagataacaaaaaaccccgataaatcggggctttatataactgaaccctataaccgcaactgcggtctggagcactttccagaaggattttttcaaatcccactacgaaggccgaagtcttcacagtatatttgaaaaaggactctaagggaaagtggttgcgggggccggatttgaaccgacgatcttcgggttatgagcccgacgagctaccaggctgctccaccccgcgcctgaaacgtggcaaattctactcgttttgggtaaaaaatgcaaatactgctgggatttggtgtaccgagacgggacgtaaaatctgcaggcattatagtgatccacgccacattttgtcaacgtttattgctaatcatgtgaatgaatatccagttcactttcatttgttgaatacttttgccttctcctgctctcccttaagcgcattattttacaaaaaacacactaaactcttcctgtctccgataaaagatgattaaatgaaaactcatttattttgcataaaaattcagtgagagcggaaatccaggctcatcatcagttaattaagcagggtgttattttatgacgacgattctcaagcatctcccggtaggtcaacgtattggtatcgctttttctggcggtctggacaccagtgccgcactgctgtggatgcgacaaaagggagcggttccttatgcatatactgcaaacctgggccagccagacgaagaggattatgatgcgatccctcgtcgtgccatggaatacggcgcggagaacgcacgtctgatcgactgccgcaaacaactggtggccgaaggtattgccgctattcagtgtggcgcatttcataacaccaccggcggcctgacctatttcaacacgacgccgctgggccgcgccgtgactggtaccatgctggttgctgcgatgaaagaagatggcgtgaatatctggggtgacggtagcacctacaaaggaaacgatatcgaacgtttctatcgttatggtctgctgaccaatgctgaactgcagatttacaaaccgtggcttgatactgactttattgatgaactgggcggccgtcatgagatgtctgaatttatgattgcctgcggtttcgactacaaaatgtctgtcgaaaaagcctactccacagactccaacatgcttggtgcaacgcatgaagcgaaggatctggaatacctcaactccagcgtcaaaatcgtcaacccgattatgggcgtgaaattctgggatgagagcgtgaagatcccggcagaagaagtcacagtacgctttgaacaaggtcatccggtggcgctgaacggtaaaacctttagcgacgacgtagaaatgatgctggaagctaaccgcatcggcggtcgtcacggcctgggcatgagcgaccagattgaaaaccgtatcatcgaagcgaaaagccgtggtatttacgaagctccggggatggcactgctgcacattgcgtatgaacgcctgttgaccggtattcacaacgaagacaccattgagcagtatcacgcgcatggtcgtcagttgggccgtctgctgtaccaggggcgttggtttgactcccaggcgctgatgctgcgtgactctctgcaacgctgggttgccagccagatcactggtgaagttaccctggagctgcgccgtgggaacgattattcaatcctgaataccgtctcagagaacctgacctacaagccagagcgtctgacgatggaaaaaggcgactcggtgttctcgccagatgatcgtattggtcaattgaccatgcgtaacctggatatcactgatacccgcgagaaacttttcggttatgccaaaactggcctgctttcctcctctgccgcttcaggcgtgccgcaggtggagaatctggaaaacaaaggccagtaattcgacatcaaccctgcccttcaggggtggggttaccttgcttatcctctgtaaactcctttctgagcatcacataatcgaaaacatcatggtttgcatccacaacccgtgagtctcctttatagtgtgcaatcacttcctcaagcgtttgcggctgttccggctttgttacccccatccacgcattaataaggtaattattgtaagctgtcgaaaagatgttgttttccgttgtgcgatccacgccatccccaagaacggggctataccagataaacatcgggacatgatatgcctgctggctagcctccctgcctccatgaaaatagacgttcttcttcgtagggtcacgttccaggccgtggtcggcaaaatacatgaccgaggcgcggcgatcttttaataattcaaaaacctgacctagcaaactatctgtgtaatgaatggagttgtcatagcaggcatcctgatcgtcctgcggttgaaacacggcgctggattgcggataggcgctacaagccggttcatggcttccatttaaatgaagaacaatcagtttcttttgctgcgtattttgctgtaatgcttgcgataaatgcggcaacaacaattcatcaaatcctctgacataaactgtttccatggcgcgcatggcgatactggtaactgctgtaccattctgccgaaaagcggattgcgagcttagccagaaagtctgaaatcctgcttgattagccatattaataatgttgtcggggtaattatgaatgtcatgactcaaaacagaatcagcagttaaagaaaggggaaccgacagcgcagtgtaaggtgcgccgcttattgcttgattaaacagtttgatctgttttctttgtgcttcaacttgcggtgtcgtagagcgtgtatatccatacaaagacatattgtcgacacgtacagactcccccacaatcaacacgtaggtatcaatacctgtatccctgactgataattgaaaatacggcaccgtgtttgcaattgagagtaatctttgatgctctttcgctgctaaagcaaaatagttgagattgaaaaacggcgtataggtagcaaatcgcgacgctagtatatatggactgaacgcttttttattttttgcatctttataagcaaattgacaagcggaaaataaactgcccgaaatgacaatcagcaataatattcctgtcactttttttgtcggcaaggaaacatcatattttattattactgccaaaaaaagaagggataaaaaagcaaaggcacatagataagggatatacatccccagcattttgacaacttcatccggatcactctggagcacactaatcgcaaatccatcattgaaagttgtaccaaaggtacaccatgaatagaggctaatactcatgtctgccgcagtcagtaacacaaatggtgcggcaacaagcaggcgaagcggaagggatgatatacgttttacaaccaggatggtcagaacgaagaacagcaagcgctgaaccatatgcgctccggaagaagcgactaagttcgtaataccaaaaacaataacacaaagatacaacaaccaatgagatttaaaagttctagcaaatttgttgaatactgtcatccagaaatccaagttcacaaccaatataaacaattatcaacaatgtttaattttatatcagacatgtttttcaactctgatccatatcagaacgaaacactgttagttttttctttttaaatgatgcggccattgcgttctcagtaattaaataacattatcaatgcgtctctaaacattacgcagaacgtagccatcagtcgttatactgacaggagcaggatggtttatcgagaagtaaacatatccgtattcgtaccggaactggagttgacacaataaagtgccaattatgtcagtagaagggaaaaatttataactaaggcgtaccggcaccatcgtttcaaggtaccagctacgagtaaagcaactggacgagatacagatacctgacaaccattcctcagaccaggaccaaaacgaaaaaagacgcttttcagcgtctcttttctggaatttggtaccgaggacgggacttgaacccgtaagccctattgggcactaccacctcaaggtagcgtgtctaccaattccaccacctcggcacggatactactttttagttcgggatatcgctggtcggcttagccggagcagctggctgagtttgttcggttttcgccggtgcactcagattttcccattcgctacctttattggttttgttgctattgatgttacccagcaccagactgatgatgaagaataacgttgccagcagcgccgtcatgcgggtcatgaagttaccagaaccacttgaaccaaacagcgtagcggaagcgcctgctccgaaggaggctcccatatcagcgcctttaccttgctgcagcatgatcagaccaacaaggccaattgccacaataaggaaaactactaaaagagcttcatacataatcaacctgttccttgcggagttgccgcgtaccaatgcttcaaccaataaagcgggagtttttaatctttcccactgaagcgggtgtgaatactaaccaaagcgaatgaccttcgcaagggcaattttatcgcattgtatcaactgcggaaaaaaacagcaaaaccgatgtgttcgctgagaaaaaaggcgacaatcgccgcctttttagccagttatctaacgctttaaacggcttttactgcatcggcgatgcggtgtgcaaattcagtcacctgcgcttcgtcttcgccttccaccatcacgcgaattaacggttcggtgccggatttacgcagcaacacgcgtccacggttgcccagcgcagcttcaacctctgcggtcacggctttaactgactcatgctcaagtggatcgccgctacctgcggtgtaacgtacgttaaccagaatctgcgggaacattttcatgccgctgcaaaggtcgtgcaggctcatatggttacgtgccatcgccgccagcacctgcaagccagcaacgatgccgtcaccggtagtagttttatccagcaggatcacatgaccggaattctctgcaccgatacgccagcctttctcctgcattttttccagtacgtagcggtcacccactttcgcgcgcgcaaatggaattcctaactgtttcagcgccagttcaagccccatgttgctcatcaatgtacccacagcgccaccacgcagctggccctgacgaagaccttcacgcgcgatgatatacatgatctgatcgccatcgactttattgccttcatggtcaaccataatcacgcgatcgccatcgccgtcgaaggcaataccgagatccgctttttcagccagcacacgagcctggagcgcgcgaacgtcggtagcccccacttcggcattgatgtttacaccgtttggctcacaaccgatagcgataacgttcgcccccagttcgcgcagcacgttcggcgcgatgtgataagtcgcaccgtttgcacaatccaccacaatcttcagttcactgaggctaagttcgttcgggaacgtggctttgcaaaactcgatatagcgacccgcggcatcaacgatacggctggctttacccagttctgccgaatcaacgcagctgatctccttttccatttccgcttcgatggcctcttctaccgcatccggcagtttggtgccgtcgatagagaagaatttaatgccattatcgtagaacgggttatgcgatgcagatatcacaattccggcctctgcgcggaaggtacgcgtcagataagccacggccggtgttggcatcgggccagtgaagagtgcggaaaggcccgctgccgccagacccgcttccagtgctgactccagcatatagccagaaatacgcgtgtctttaccaataataatcttacgggagccgtggcgcgccagcactttacccgcggcccaacccagcttaagcacaaaatcaggtgtgatcggcgcatcccctacacgaccacgaatcccatcggtaccgaaatatttacgattactcatagcgtttgttttcctttgcagacagagtggcttccaccacccgcatcgcttctacggtttctttgacgtcatgaacacgaatgatgtgcgcgccttgcattgcggcaatgaccgcacaggccagactaccgctcaggcgctcggacggccccacgttcagcagctgcccaatcatcgattttcgtgacatacccaccaacagcggcaggttgaaatggtgaaattcagccaggcgcgccagtaatgaatagttatgggagagatttttaccgaaaccgaatccggggtcgagcaacaatttctcttttgcgatacccgcctgctcgcaacgtgctatttgctcaataaagtagcgattcacttctgcaaagacatcgtcatacttcggagcttcctgcatggtttttggatttccctgcatatgcatcagacaaaccggtaaaccggtttctgcagccgcctccagagcgccaggttcggaaagggagcggatatcattaataatgtgagcgccaactttcgctgactcacggatgacttctggtttggatgtatcgactgagatccagacttcgaagcgttgagcaattgcctcaaccacaggaataacacgttgcaactcttcttcaacgctaacttccgccgcccctgggcgcgtggactcgccaccaacgtcaatgatcgtcgcgccagcgttgatcatcagattcgcatgtttcaccgcatctatcagcgagttatgcgtgccaccatccgaaaaggaatcaggcgtgacgttgaggatccccattacgtgaggatggctaaggtccagtgaagtaccctgggcaaagagtttcatgatgttatccctggtatgaattgataagaaaaaaccccggagcacgccccggggttttcggtacaaatacagtcatctgatgcgggaacttacttgtcgcctaactgctctgacatggtgttacccgggttcggcgtacgcggttcatcaaccggacgaggagcctttggactaccattgtcgccagaattgttagaagcgcctggttcttcccagcccgctggcggacgtacatcgcgacgtgccatcaggtcatcaatctgcggtgcgtcgatagtctcatatttcatgagagcatctttcatcgcatgcagaatatccatattgtcggtcagaagctgacgcgcacgattatagttacgctcaatcagtgctttcacttcctggtcgatgatacgtgcagtttcatcggacatatgtttcgctttcgctacgctacggccgaggaacacttcaccttcttcttccgcgtacagcagtggacccaatttctcagagaagccccactgagtcaccatgttacgtgccaggttggtcgcaactttaatatcgttggacgcaccggtagatacatgttccggcccgtagatgatctcttctgccagacgaccaccgtacagcgtagaaatctggctttccagtttctgacggctggcgctgattgcgtcgccctcaggcaagaagaaagtcacacccagcgcacgaccgcgtgggataatcgtcactttgtgcaccggatcgtgttccggcaccaggcgaccgataatcgcatgacccgcttcgtggtaagccgtcgattctttctgcgcttccgtcatcaccatggagcgacgttccgcacccatcatgattttgtctttcgctttctcgaactcaaccatcgacacaacgcgtttgttgccacgagcagcgaacagtgccgcttcgttcaccaggttcgccaggtcagcaccggagaaaccaggagtaccacgggcaatgattgccgcgtcgatatcgggtgccaatggtacgcgacgcatgtgaactttcaggatctgctcacgaccgcgaacatctggcaagccgaccacaacctgacggtcgaaacggccaggacgcagcagggccgggtcgagaacgtccggacggttagtcgcggcgataacgatgataccttcgttaccttcgaagccatccatctcaaccagcatctggttcagagtctgttcacgttcatcgtgaccaccgcccagaccagcgccacgctggcggcctacggcgtcgatttcatcgataaagatgatgcacggtgccgctttcttcgcctgttcgaacatgtcacgaacacgggatgcacccacaccgacgaacatttctacgaagtcagaaccggagatagtaaagaacggaactttcgcttcgcctgcaatcgctttcgccagcagcgttttaccggtacccggaggaccgaccatcaagacgcctttcgggatcttaccgccgagtttctggaagcggctcggctcgcgcagatactcaaccagttcagcaacttcttcttttgcttcgtcgcagcccgcaacgtcagcaaaggtcgttttgatctgatcttccgtcagcatgcgcgctttgctcttaccaaacgacatggcacctttgccaccgccgccctgcatttgacgcatgaagaagatccagacaccaatcagcaacagcatcgggaaccaggagatgaagatagaagccagcaggcttggttcttcaggcggttcaccgacaaccttgacgttcttggtcaacaggttatccagtaatttcggatcctgaaccggaatgtaagtggtataacggttactatctttcttggtaacgttgatttcacgtccgttgatacgcgcttcacgaacctggtcgttattgacctcttgtaggaaggtagagtaatccaccttacggccattagactcgctgggcccaaagctctggaatactgacatcagcacaacggcaatgaccagccagagtattaggtttttcgccatgtcactcaagggattaacctcttattacaactgtgttaaaaacagcgtcaggatactctatatccagcatctttcaaactttcgtctgaaatctcccggttagggtttacgcccggtcgctacaatatacacttcccgcgaacgtgcacgagaagagtccggcttacgaactttgaccttcgtaaacagggagcgaatttcccttagatactcatcgaaaccttcgccctggaacaccttcactacaaaactgccacctggcgctaatacatcacgacacatttctagcgccagttccaccagatacatggcacgggggatatccaccgccggtgttccgctcatgtttggtgccatatcggacatgacaacctggactttgctgtcgccaacgcgctccagcagtgctttcatcaccagttcatcacgaaaatcgccctgaagaaagtccacaccaacgataggatccataggtaaaagatcgcaagcgatgatgcggcctttgccgccaatttgggtgaccacatattgtgaccaaccacccggagcagcaccaaggtcgacaaccgtcattcccggtttaaagagtttgtcactttgctgtatttcatcaagtttaaaccaggcacgggaacgtaacccctttttctgtgcctgttgaacatatttatcgctaaagtgttcctgaagccagcggctggagctggcagaacgcttcttacctgtcatttaactttcccatggggataactcatcgtaaccaattgcgtaaatttttacgcgcctatttggtgatatatgggagatggcggtagaatgacccgttttcaatcccaacgtaagcaaaaaatacgatgaatctgagtactaaacaaaaacagcacctgaaaggtctggcacatccgctcaagccagttgttctgcttggcagtaatggtttgaccgaaggggtgctggccgagattgaacaagcgttagagcaccatgaactcatcaaggtgaaaatcgccaccgaagatcgcgaaactaaaaccttgatcgtggaagctatcgtgcgcgaaaccggcgcctgtaatgtacaggtcatcggtaaaacgctggtgctttatcgcccaactaaagaacgtaaaatctcgctgccacgctaagattatcctaaagttacacacatttgctgtgtaaaacgaggggttttccgcaggcaggagagcaaaatgccacgctctgttcgttgataaaaggccgcatagcggcctttttcctttctttacaatacatcaacatcttgagtattgggtaattcttacaggtattccaccttaattacttcaaattctacttcgccgcccggcgttttgatgaccacaacatcatcttcttctttgccgatcaggccacgagcaataggcgagtttacagaaatcaggttttgtttaaagtcagcttcgtcatcgccaacgatgcgataagtctgttcttcgtcagaatccagattcagcaccgttacggtagcaccaaaaataacgcgcccattgttgggcattttggtgacatcaatcacctgcgcgttcgacagcttggcttcgatgtctttaatacggccttcgcagaaaccctgctgttcacgagctgcgtggtattcggcgttttctttcaggtcgccatgctcacgcgcttccgcgatagcagcaatgatttcaggacggcgcacagatttcagaaaatccagctcttcgcgtaatttttcagcgccgcgtaaggtcatcggaatagcttgcatttgttatacctcttgaatattcctgatagggcaagtcttcacccaccccggctgttcggcctgcccggcataactccttaccgggaccagaagcaaaaaaataccgacccgggtacaagtcccaggtcagctacaattcacattttgatagtcattttaccctgaagttcccgaagggtcatcgtttactttatagggcgttgcgccgtagtatgacggctcgattccaggttgttagcgcgagattatgcgattttccagatttatcatcggattgaccagctgtatagcgttcagtgttcaggccgcaaatgttgatgagtacattactcaactccccgctggtgccaaccttgccctgatggtgcaaaaagtcggcgcgtcggcccccgctattgattaccacagtcagcagatggcgctgcctgccagtacccagaaagtgattactgcgctggcggcgttgattcaactcggccccgattttcgttttaccacgacgcttgaaaccaaaggcaatgtggaaaacggcgtacttaagggtgacttagtggcgcgatttggtgccgatccgacgttaaaacgtcaggatattcgcaatatggtcgcgactttgaaaaaatctggcgtcaaccaaatcgatggcaatgtgttgatagatacctccattttcgccagccacgataaagcccccggctggccatggaatgacatgacacaatgctttagcgctccgcctgccgccgccatagttgaccgcaactgtttctccgtctcgctctacagtgccccaaagcctggtgatatggcttttatacgcgtggcatcttattaccccgttacgatgttcagccaggtacgcaccctcccccgtggttctgccgaagcgcaatactgcgaactggatgtggtgccaggcgacctgaaccgctttacgctgacgggatgcctgccacaacgttctgagccgctcccgttggcttttgccgtgcaggatggagccagctatgccggtgcaattctgaaagatgagttaaaacaggcgggtatcacctggagcggaacactgctgcgccagactcaggttaacgaacctggaacggtagttgccagtaaacagtcggccccgctgcacgatctgcttaagattatgctgaaaaagtcggacaacatgatcgccgatacggttttccgcatgataggccatgcgcgcttcaatgtgcctggaacatggcgggccgggtcggacgccgtgcgtcagatcctgcgccagcaagccggtgtcgatattggaaacaccattattgccgatggttcagggctttcgcggcataacctgattgcccccgccaccatgatgcaggtgctgcaatacattgcccaacacgacaatgaacttaactttatctccatgctgccgctggcgggctatgacggctctttgcagtaccgtgcaggtctgcatcaggcgggcgtggatggaaaagtctcagcgaaaaccggttcgttgcagggggtatataacctggcgggattcattaccacagcgagcgggcaacgaatggcgtttgtgcaatatctttctggctatgcagtagaacctgcggatcagcgtaatcgccgtattccgttagtgcgttttgaaagccgtttgtataaagatatttatcagaacaattagtcaaaaagaaaccccggcacatggccggggcttcagattattgacaaagtgcgctttgtttatgccggatgcggcgtaaacgccttatccggcctacaaaatcgtgcaaattcaacatattgcaattctcttgtaggcctgataagcgtagcgcatcaggctgatttggcgtttatcatcagtgattaacgcttgtaaatgaactcaacgccttcttcgtcgtcttcgtcccagtcgtcatcccagtcttcatcatcctcttcagcaatctcttcaagctgctggcgatgataatcatcccacatgaattcgactttctctggctgtttcgcttcttcagcctgcacgaccgggttttcaatgataaaggtcatcacatcccagcagagatctttcacgcccagtccactcgccgcagagatcagataatatttatcttcccagcccagcgcctcagcgatcgctttcgctttctcttcggcttctaccttatccagcagatcgatcttgttgaacactaaccaacgcggtttcgtcgccagatcctggctgtatttttccagctcgctgataataatacgcgcgttttcaaccggatcggtgccgtcaatcggatcgatatcgatgaggtgcaacaggacgcggcaacgttccaggtgcttcaggaagcgaatgcccagacctgcgccttccgcagcgccttcaatcagtcctggaatatcggcaacaacgaagctcttttcgttgtccattcgtaccacacccagacttggcaccagagtggtaaacggataatccgccactttcggtttagccgccgataccgcacgaataaaggtcgatttacccgcgtttggcatccccaacataccgacgtcagccagcagcatcagctccagcagcagctcgcgcttatcgcccggcgtgccgttggttttctgccgcggtgtacggttaacggacgatttgaaacgggtattgcccagaccgtgccagccgcccttagcaaccagcagacgctgaccgtgtttggtcatatcgcccatggtttcaccagtaccctggtcgattacacgcgtacctaccggcactttaatcgtcacgtctttaccgcgcttaccggtacagtcgcggcttgcgccattctgaccgcgctctgcacggaaagatttttcaaaacgataatcgataagcgtgttcaggttctcgtcggcttccatccatacgtcaccaccatcaccgccgtcgccgccatccgggccgcctttcggaatatacttttcgcggcggaagctcacgcaaccattaccgccatcacctgcaacgaccagaatcgatgcttcatcaacaaacttcattttattctccgtaaatcattcgcctgcgcggggttgcgataccaccgttgtatgcttacgtaatccgccccaaatacgatgaccaatggcggaatacatcgcgcccgcaaccacgacaaacgcaccgagataacctaaaaggtttaacatcggtctggcgaagaaatcgggccaggccagtgataaaagatctgaaaaaaacagcgtaaacagtggggtgagcgtgatgatcgcgctcacctgcgctgcctgccagcgagccatcgcttccgccagggcgccatatcctaccaaggtattcagtccgcaaaaaattaaacatgcgagctgccagtggctaagctgcgctatcactccaggctttgccagagggaagagcgcaattgtacataaagtgtacagtaaaaacaggatctgcggtgaggccagccgacgcaataaaaccttttgcgccacgccataactcacccaaaccgtcgccgcaccgaccccaaagataactccccaggtgtaatcggtgagctttgtaaatatctcgaccagactggtgttaaaaaacatcaccaggccgctcaggagcatcaatgcccctacaacctgagtgctgcgcattttctctttgaggataaatacgctggcaaccatcatgccaactggcgagagttgcccaatcacctgcgaagcggtcggactcaggtattgcaaggatgagctgaacaggatgaagttcccaaacagcccggcggtcgccactgccaacaaaatcaaccagcgtggcttacgaaacacgcgtaatggcggcaacctcttcttcaccgcaagaatggcacccaggccaatactcgccatcaagaaacggtaaaacacgattgtcggaggttccatcacctccagcacctgcttcattgcgattggcaacgccccccagcaaattgctgtggtgagcgccaaaagaatgccaatgcctgcctgctgcttcataccgtattccctgcaaagcgcatttgcggattaacgtcgcaccatgcgcatttttaccggttatcgaatgtaaaaagccccgcaacgtgttgcggggctttcatccgttaccgggacgcgaaaaacttattcagcttcgatgctgataaatttacggtttttcgggcctttaacttcgaatttcactttaccgtctgctttagcaaacagagtgtggtcacgaccgcaacctacgttagcgccagcgtggaatttggtaccacgttgacgaacgatgatgctacccgccagaacggattcgccaccgaaacgcttaacgcccaggcgtttagcttctgaatcgcgaccgttacgtgtggagccgccagcctttttatgtgccatttgaaatctctcctcaggtcttaggcgctgatgccagtaattttcacatcagtgaaccactgacgatggccctgctgcttacgatagtgtttacgacgacgaaacttaacgattttaactttctcgccacgaccgtgagcaacaacttcagctttgattacgccgccatcaacgaaaggaacgccgattttgacttcttcaccgtttgcgatcatcagcacttcagcgaactcaacagtttcgccagttgcgatgtccagcttttccaggcgaacggtctgaccttcgcttactcggtgttgtttaccaccactttggaaaaccgcgtacatataaaactccgcttccgcgcacaccttttcaatgattcagagtgcgctataaatattcacaatagggcgcgaatattacgcaaaacgcacgcctttgacaagtgctacagtcaatacacgaagaaaaaaaacacaacttgtacggtaacgtttatctgtgccattttttcagtacaatcaccctatattcctaaccataaaccctaagttgcctttgttcacagtaaggtaatcggggcgaaaagcccggcttttgcgatgaatttagaaaaaatcaatgagttaaccgcgcaagatatggcgggtgttaatgcggcaatccttgagcagcttaattccgacgtccaactgatcaatcagttaggctattacatcgtcagcggcggcggtaaacgtattcgtccgatgattgctgtactggctgcacgagctgttggctatgagggaaatgcgcatgtcaccattgctgccctgatcgagtttatccacacggcgactctgctacacgacgacgttgtggatgaatcagatatgcgcaggggtaaagctaccgccaacgccgcatttggcaatgccgccagcgtgctggtaggcgattttatttatacccgcgctttccagatgatgaccagcctcggttcgctcaaagtgctggaagtcatgtcagaagccgtaaacgtcatcgcagaaggtgaagttctgcaactgatgaacgttaacgatccggacatcactgaagaaaactacatgcgcgttatctatagcaaaaccgcgcgtctgtttgaggctgccgcgcagtgttccgggattctggctggctgtacgccggaggaggagaaaggcctgcaggattatgggcgctatctcggcactgctttccagttgatcgacgatttactcgattacaatgccgatggcgaacagttaggtaaaaatgtcggcgacgatctgaacgaaggtaaaccgacgctgccgctgctgcatgcgatgcatcatggcacaccagaacaggcacagatgatccgtaccgccatcgaacagggtaacggtcgccatcttctggaaccggttctggaagcaatgaacgcttgtggatctcttgaatggacgcgtcagcgtgccgaggaagaagcagacaaagccatcgcagcgttacaggtgctcccggacaccccttggcgagaagcactcatcggcctcgcgcacatcgctgttcaacgcgatcgttaatcccctcccctcatcccgcgcagcgcgcgggatggttccagtaagttccataaaaacacttattcagctctataacacctgaaaaatagggatgtgcatctttatatattctgaatattcacactctttacaggaactttttagagcaataggccatcaggagtatagtgatgctcgacagaagaagtgttctgaatgaaagcgactaacttaaggagtgaggaaaaatggaaagtaatttcattgactggcatcccgctgacatcattgcgggtttgcgcaagaagggaacgtcaatggcggcggaatctcgcagaaatggtttgagttcctcaacgctggcgaatgcattatcgcgcccatggccgaaaggagagatgattattgcgaaagccctgggaactgacccctgggttatctggccatcacgctaccatgatccgcagacccatgagtttatcgacagaacgcagttgatgcgtagctacactaaaccgaaaaaatgagtggtctggcggtagccccgcgaacggggctgccagctctcagacgattattcgcctttcacacgctcaatatttgcacctaaagcgcgcagtttgtcttcaatgcgttcgtagccacgatcgatgtgataaatacgatcaaccaccgtcgtcccttccgcaatacagccagccagcaccaggcttgctgatgcacgcagatcggttgccataacctgtgcgccagaaagtttttcaacaccgtgacaaataacggtattgctttcgatttcggcgtgcgcgcccatacggctcagctctggcacatgcataaagcggttttcaaagaccgtttcggtgataaacccggtcccttctgccaccaggttcaacagcgtgaactgggcctgcatatcggtcgggaatgccggatgcggcgcggtacgtacgttaacagccttcggacgtttgccatgcatatccaggctaatccagtcttcgccgacttcgatgtccgctccagcgtcacgcagtttcgccagcacggcgtcgagagtatctggctgcgcgttacggcagataattttgccgcgagaaatcgccgccgccaccaggaaagtaccggtttcgatacgatccggcagaacgcgatagacaccgccgcctaaacgttccacaccttcgatgacgatacgatcggtgccctgaccgctaattttcgcacccagcgtaatcaggaagttcgcggtatcgacgatttccggttcacgcgctgcgttttcaataatcgtggtgccttccgccagggttgcagcacacatgatggtcaccgttgcgccaacgctgactttatccatcacgatatgtgcacctttcaaacgaccatcgacggaagctttaacgtaaccttcttccagtttgatggtcgcgcctaattgttcgaggccagaaatgtgtagatcaaccggacgcgcaccgatcgtacaaccgccaggtagtgaaacttgcccctgaccaaagcgcgctaccagcggccccagcgcccagatagaagcacgcatggttttaaccagatcgtaaggtgcgcagaatacattaacgtcgcgggcatcaatatgcacagaaccattacgttctactttcgcacccagctggcttagcagcttcattgatgtatcgacgtctttcagtttcgggacgttctggatctctaccggttcttccgccagtagtgcggcaaaaaggataggcagagcagcatttttagcgccggaaattgtgacttcgccctggagcttcgttggcccctgaacacgaaatttatccatttagtttgttctcagttaacaattcatatccgctaccggcgaatcgcccatagctcaaaagccgttcagtttgcgatcgcgcgcccactccgcaggggtatacgctttgatcgacacagcatgaatgcggttatccgcaatatattccatcagcggaccatagaccgtctgctgttttttaacccgactcatgccgtcaaacaactcacccacggcaataacctgaaagtggctgccatcgccggaaacgtggacttcctggagggagagagcgttcatcaacacgctctgaatttcattattttccatgggatcttcaatcatcagttaataaaccagcgaaacatcttagagcaaagttgcgctggcataaataagcaaaaagcctcgctgataaatcagacaaggctcgacttgcaggcaggtttgccggacaggcggttaacgccatatccggcctgaaaaaatttaacgaggcagaacatcagcaggcaaattatacaatttcgccagggtatacactttgtcgtttaccccctgaagcgtcacattgttgccctgctttttcgccagatcgataagatggagcagcagtgccagtccccccgtatccacgcgggagacacggctaagatcgatgcaggtaatccccttcaccgcttcctcacgcatttcccaaagcggtagcaaaacgtcctgatccagctctccggataacgccagcgtgtcacccgtctgcatccagctcagtgactcgctcattattttttctcttccagagtgattttctgttgagaaatcgatttcagttgcgcagtcaggccgtcgatacctttggtacgcagcagcgttccccactcgttttgtttggtggtgatcatactgacgccttcagcaatcatgtcgtaagcctgccaattgcccgtctgggagtttttacgccactggaagtccagacgcaccggcggacggccattcgggtcaataatggtaacgcgaataggcacaatggttttatcgcccagcggctgttctggcgcaatctgataggtttgaccgtgatacatcgccagcgcctgaccgtaagcctgcttcaggtactcacggaaagcggcaaagtaggcttcacgttgagcaggggtcgcactcttgtaatactggcccagcaccagcgcaccggcgtatttcacctgtacgtatggcagcagttcctgatcaacaatggtacgcagataatccgggttggcccgaatttgcggttgctcattcttcaggcgatcgaacgttttctgcgccgcctcgtccatcagcttatacggattggtctggtctgccgcggttgccgcactcagaggtgcaatcaccagcaaagcgaccatcattaaacgtttaaacatgcgtcggttctcctgaaattatttcgttgtacccacaggttcagtggtttcattattacctggcgcagcagctggcgcatcgccactattcttattgtcatcgcctttactaccgtaaaggaactgaccaatgagatcttccagcaccatcgcagacttagtgtcctgaattgtatcgccatccttcaggatagcagtccccagttccgggtcttcaaaaccgacgtttaatgccagatattgttcccccagcaggccggaagtacgaatgctcagcgaactggtatctggaatgtggttataacgttgttcaatttccagcgttacgcgcggcagataggttttcgggtccagcgtaatatccgccacccgacccacaacaacgccaccaatactgaccggagagcgcgctttcaggccgccaatgttatcgaacgtcgcataaagcgtgtaggtcggttcagtacgtatggacgtcacgttcgccgccttcaggcaaacaaacagcgccgccagcagtgctgctaataaaaagatacccacccaaatttcattttttttcgtttgcatgaactcaattcccaaacatcaatgcggtcagcacaaaatccagccccagaacagccagagacgagtggacaacggtgcgagtggttgcccggctaatcccggcagacgtcgggatggcgtcgtagccgttaaacaacgaaatccacgtcaccgtgatggcgaacaccacgctcttaatcagacagttgaccagatccatacgccagtcgacggcattttgcattgccgaccagaagaacccgctatcaatgcctttccaactgacgccgaccagagatccgccccagatccccacggcgacgaaaataaccgtcaacagtggtaatgaaataaccccagcccagaaacggggagaaataacccgacgcagcggatccaccgccatcatctccatactggagagttgctctgtagcgcgcatcaggccgatttctgcggttagcgccgaaccagcacgcccggcaaacaacaacgcggcaaccaccggccccagttcacgcagtagcgataacgccaccagcatacccagactggtttccgcactataagtggtcagaaccagataaccttgcagccccaacaccattccgatgaacacgccagaaaccacaataatcagcatcgacaggacgccgacattatagagctggcgcaccagcagcggcgcatgtttgcgaaattccggtttgccgaccagcgcattgaataacattaacccggcccgcccgaacgttctcagggttttaatccctttatgtccgagcgacgccagcgcatttaacagcatgagtggcttaactccctggtaaaagatcagcgtgataatcgccggcaggatagcggaacggaacaggcccgtcagctatcccgtccagaaactgacgtacgcgcggatcaggattcgcctgcaacgcctgggcactgccatgagcgacaatttttttgtccgccaggatccaggcgtgatccgcaatacttaacacttccggcacatcgtgagaaaccaccacacaagtcacgcccagcgcgctgttcagctcagaaatcagcttcaccagtacgcccatggtgatgggatcttgcccaacaaaaggttcatcaaacatgatgagatccggctccagcgcaatcgcacgcgccagcgctgcacgccgcgccatcccaccggaaagttcagaaggcattagtttagccgctccacgcagccccacggcctccagcttcatcatcaccgtactatgcaacaatggcgcgggaagttgggtatgttcgcgcagtggataggcgacgttgtcaaatacgttcatatcagtgaacaacgccccggactgaaataacatgctcatccgtttgcgcactgtatacaggcgcgaacgagacatcgccggaatattctcaccatcgaaaaggatctcaccatgatctggtgcgatttgcccgccaatcagacggagtagcgtcgttttaccgatgcccgatggccccatgatcgccgtgatcttccctcgcggcacggtcagggaaatattatcgaagatgcagcgattgccacgcgtaaaactgacatcgcgcatatcgactaaattcgccacagactgctccataattcacccttcgtcttgcgttgattttctaagcatggcgctcaatttaaccttgaacccaacatatttacagaatattacccgccgtggttagcgaaagctggcatttgttttactttttagccgcataaagtcaaaattaagcatccgttacggctttctgaaaatcttcagcggaccggcgagtatacctgaagaaaggacgttagatgcttttagctacggcactgttaattgttggtttacttttggtcgtttacagtgccgaccgcctggtttttgccgcgtctattctttgccgaacctttggcatcccgccgctgatcatcggcatgacggtggtcagtattggtacatcgttaccagaagtcatcgtctcgcttgccgcgtctctgcacgaacaacgcgatttagccgttggtacagccctcggctcaaacattatcaatatattgctgatcctcggtctggctgcgctggttcgtccttttaccgtccattctgatgttctacgccgtgaattacccttaatgttgttggtcagcgtggtggccggttccgtactctatgacggacaacttagtcgcagcgatggtatctttctcctctttctggctgtgctatggctgctgttcattgttaaacttgcacgtcaggctgaacgtcaggggactgacagcctgaccagagagcagcttgcagagctgccgcgtgacggcggattgcccgtcgcgtttttatggctcggcattgcgcttatcatcatgccagtggccacgcggatggtggttgataacgccacggtgctggcgaattactttgccatcagcgagttgacgatgggtctgacggcaattgctatcggaaccagcctgccggaactggcaaccgcaatagcgggggttcgcaaaggtgaaaacgacattgctgtcggaaatatcattggcgcaaacatttttaatattgtcatcgtgttgggtttacccgcgctgataacgccaggagagattgatccactggcgtacagtcgtgactacagcgtgatgttgctggtgagcattatttttgcgttgctgtgctggcggcgctccccgcaaccgggccgtggtgtaggggtattattaactggcggatttatcgtatggctggcgatgttgtactggttatcgccaatactcgttgaataactggaaacgcattatgtcgcacgtagagttacaaccgggttttgactttcagcaagcaggtaaagaagtcctggcgattgaacgtgaatgcctggcggagcttgatcaatacatcaatcagaatttcacgcttgcctgtgaaaagatgttctggtgtaaagggaaagttgtcgtcatggggatgggaaaatcggggcatattgggcgaaaaatggcggcaacgtttgccagcaccggtacaccttcatttttcgtccatcctggtgaagccgcgcatggtgatttaggcatggttaccccacaggatgtggtgattgctatctctaactctggtgaatccagcgaaatcacggccttaattccagtgcttaagcgtcttcacgtaccgttaatctgcatcaccggtcgcccggagagcagcatggcgcgcgccgcagatgtgcatctgtgtgttaaagtagcgaaagaagcctgtccgttagggctggcaccgaccagcagcaccaccgccacgctggttatgggcgatgccctcgctgtcgcgctgttaaaagcacgcggctttactgctgaagattttgcgctctcacacccaggcggcgcactgggtcgtaaacttctgctgcgcgtaaacgatattatgcatacgggcgatgagatcccgcatgttaagaaaacggccagtctgcgtgacgcgttgctggaagttacccgcaaaaatcttggtatgactgtcatttgcgatgacaatatgatgattgaaggcatctttaccgacggtgatttacgccgtgtcttcgatatgggcgtggatgttcgtcagttaagtattgccgatgtgatgacgccggggggaatacgtgtgcgccctggcattctggccgttgaggcactgaacttaatgcagtcccgccatatcacctccgtgatggttgccgatggcgaccatttactcggtgtgttacatatgcatgatttactgcgtgcaggcgtagtgtaaagattcaaggataaacaacaatgagcaaagcaggtgcgtcgcttgcgacctgttacggccctgtcagcgccgacgttatagcaaaagcagagaacattcgtctgctgatcctcgatgtcgatggcgtactgtcagatggcctgatttatatgggcaataatggcgaagagctgaaagcgttcaatgttcgtgacggttatggcattcgttgtgcgctcacctctgatattgaagtcgctatcattaccgggcgaaaggctaaactggtagaagatcgttgtgccacattggggatcactcacttgtatcaggggcagtcaaacaaactgatcgcctttagcgatctgctggaaaaactggcgattgcccggaaaatgtggcttatgtcggcgatgatctcatcgactggccggtaatggaaaaagtgggtttaagcgtcgccgtggccgatgcgcatccactgttgatcccgcgcgccgattacgtgacgcgcattgctggcggtcgtggcgcagtgcgcgaagtttgcgacttattactcctggcgcagggcaaactggatgaagccaaagggcaatcgatatgagtaaagccagacgttgggttatcattgtgctatcactggcggttctggtgatgatcggcattaatatggccgaaaaagacgataccgcccaggtggtcgtcaacaacaatgatcccacctataaaagcgagcatacggacacgctcgtctataacccagaaggggcactaagctatcgattgattgctcaacacgttgaatattattccgatcaggccgtttcgtggtttacgcagccggtacttaccacgtttgataaggataaaatcccgacatggtccgtaaaagcagataaagccaagctgaccaatgaccggatgctctatttatatggacacgttgaagtcaacgcacttgtgccagactctcaacttcgcagaatcacgacggataacgcgcagatcaatctggtgacgcaggatgttacctctgaagacctcgtcacgttatacggaacaacatttaactccagcggtctgaaaatgcgcggcaacttacgcagcaagaacgccgagctgattgaaaaggttagaacatcctatgaaattcaaaacaaacaaactcagccttaatcttgtgcttgccagctcacttctggccgccagcattccggcatttgccgtaaccggagacactgatcagccgatccacattgaatcggaccagcaatctcttgatatgcaaggcaacgtggttacctttaccggtaatgtcatcgtcacccagggcaccatcaaaattaatgccgacaaagtggtcgttacccgtccgggcggcgaacaaggtaaagaagtgattgacggctacggtaaaccggcaacgttctaccagatgcaggacaacggtaaacccgttgaaggtcacgcttcccagatgcactacgaactggcaaaagattttgtcgttctgacgggtaatgcttatctgcagcaggtcgatagcaacattaagggcgataagatcacttacctggtgaaagagcagaaaatgcaggctttcagcgacaaaggcaagcgcgtaacaaccgttctggtgccgtcgcagctgcaggacaaaaacaacaaaggccagaccccggcacagaagaagggtaattaattcgttatggcaacattaactgcaaagaaccttgcaaaagcctataaaggccgtcgcgtggtagaagacgtcagcctgaccgtcaactccggggaaattgtcggtctgctggggccaaacggtgccggtaagaccaccactttctacatggttgtaggcattgtgccgcgcgatgcgggcaacatcattattgatgatgacgatatcagtctgctgcctctgcatgcacgcgcgcgccgcggtatcggctatctgccacaggaagcctccattttccgtcgcctcagcgtttacgataacctgatggcggtactgcaaattcgtgacgacttgtctgctgaacaacgtgaagaccgcgcgaacgagctgatggaagagtttcacattgagcacctgcgtgacagcatggggcagtcactctccgggggtgaacgtcgccgtgtagaaattgcccgcgcactggctgcgaatccgaaatttattctgctcgacgaaccgtttgccggggttgacccgatctcggttatcgacattaaacgcatcattgagcacctgcgcgacagcggcctgggcgtgctgatcactgaccacaacgtgcgtgaaacactggcggtttgtgaacgcgcttatatcgtcagtcaggggcatttgatcgcccacggcacgcctacagaaatcttacaagacgaacacgttaagcgtgtataccttggggaagacttcagactctgatagggtagaagtttgcgacgttttagcaggagagtacgattctgaacatgaagcaaggtttgcaactcaggcttagccaacaactggcgatgacgccacagctccaacaggcaattcgtctgttgcagttgtcgacgctggaacttcagcaggagctacagcaggcgctggagagtaatccgctgcttgagcaaatcgacactcatgaagaaatcgacacccgcgaaacgcaagacagtgaaacgctggacaccgccgacgcgctcgaacaaaaagagatgccggaagagctgccgctcgatgccagttgggacaccatttacaccgctggtacaccatccggcaccagcggtgactacattgacgacgagctgccggtctaccagggcgaaacgacgcagaccttgcaggattacctgatgtggcaggttgagctgacaccgttttccgacactgaccgcgctattgctacctctatcgtcgatgccgttgatgaaaccggttatctgactgtcccgctggaagatattctcgaaagtataggcgatgaagagatcgacatcgacgaagttgaagccgtccttaagcggatccaacggtttgatccggtcggtgtggcggcaaaagatctgcgtgactgtctgctgatccaactctcccaattcgataagaccacgccgtggctggaagaggccagactgatcattagcgatcatctcgatctgttagccaatcacgacttccgcactttaatgcgcgtcacgcgtctgaaagaagatgtgctgaaagaagccgtcaatctgatccagtcgctcgatccgcgccccgggcagtcgatccagactggcgaacctgagtatgtcattccagatgtgctggtgcgtaagcataacggtcactggacggtagaactcaacagtgacagcattccgcgtctgcaaatcaaccagcactacgcctcgatgtgcaataacgcgcgcaacgatggtgacagccagtttatccgcagcaatctgcaggatgccaaatggttgatcaagagtctggaaagccgtaacgatacgctactgcgcgtgagtcgctgtatcgttgaacagcagcaagccttctttgagcaaggtgaagaatatatgaaaccgatggtactggccgatatcgcccaggctgtcgaaatgcatgaatcgacgatatctcgcgtgaccacgcaaaaatacctgcatagtccacgaggcatttttgaactgaagtatttcttttccagtcacgtcaataccgagggcggcggcgaagcttcctccacggcgattcgtgcgctggtgaagaaattaatcgcggcggaaaacccagcgaaaccgttgagcgacagcaagttaacctctttgctgtcggaacaaggtatcatggtggcacgccgcactgttgcgaagtaccgagagtctttatccattccgccgtcaaaccagcgtaaacaactcgtttgacccaaccgataaggaagacactatgcagctcaacattaccggaaataacgtcgagatcaccgaggcactgcgcgaatttgttacagccaaatttgccaaacttgagcaatattttgaccgaatcaaccaggtctatgttgttctgaaagtggagaaagtcacccacacctcagatgcaacactgcatgtaaacggtggtgaaattcatgccagcgcggaaggtcaggacatgtacgctgccattgatggcttaattgataagctggcacgccagttgaccaaacataaagataaactgaaacaacactaattgtccgggcaattagcatgtgcatggcggtctgttgtgcggcacaacgggccatttgtacggttaatgctccgagcctgttccactgtttgagtgggcaggttcttaggtgaaattatgacaaataatgatacaactctacagcttagcagtgttcttaacagggaatgtacgcgaagccgcgtccactgtcagagcaaaaaacgcgccctggaaatcatcagcgagctggcggcgaaacaacttagcctgccgcctcaggtggtttttgaagctatcctgacgcgggaaaaaatgggcagtaccggtatcggcaatggtattgccattccgcatggcaaactggaagaagatactctgcgcgccgttggcgttttcgttcagctcgaaacgcctatagctttcgatgccatcgacaaccaaccggtggacttactttttgccctgctggtgccggcagaccaaactaaaacgcacctgcatactctgtcgctggtggcgaaacgtctggcggacaaaaccatctgccgccgtttacgcgcagcccagagcgatgaagagctgtatcaaatcattacggataccgaaggtactccggatgaagcgtagttattcggtaatgtctcttttagacgttgtgaggagaaacagtacatggtactgatgatcgtcagcggacgttcaggttcaggtaaatctgtcgccctgcgtgcgctggaagatatgggtttttactgcgtggataaccttcccgtagtgttgttacccgatctggctcgaaccctggccgatcgcgagatttctgccgccgtcagcattgatgttcgtaatatgccggagtcaccagaaatattcgaacaggcgatgagtaacctgcctgacgctttctcaccgcaactcctgttcctggatgccgaccgtaataccttaattcgtcgttacagtgacacgcgccgactgcatccgctttccagcaaaaacctgtcgctggaaagtgctatcgacaaagaaagcgatttgctggagcctctgcgttcgcgagcggatctgattgtcgatacctcagaaatgtccgttcacgagctggctgaaatgctgcgtacccgtctgctgggtaaacgtgaacgcgaactgaccatggtctttgagtctttcggcttcaaacacggtatccctatcgatgcagattacgtctttgacgtgcgcttcttgccgaacccgcactgggatccgaaactgcgtccaatgacaggtcttgataaacctgtcgccgcgttcctcgaccgccacacagaagtacacaattttatctaccagacgcgaagctatcttgagctatggttacctatgctggaaaccaacaaccgtagctacttgacggtcgccattggttgtaccggcgggaagcaccgttcggtgtatattgcagagcaactggcagactacttccgctcgcgcggtaaaaacgtccagtcacgccatcgtacgctggaaaaacgtaaaccatgaccgtcaagcaaactgttgaaatcacaaacaagctgggcatgcatgcccggcctgcaatgaagctgtttgaattaatgcagggttttgacgctgaagtgctcttacgtaatgacgaaggcaccgaggctgaagccaacagcgttattgcgctgctgatgttggattctgccaaaggacggcagattgaagttgaagcgaccggtccacaggaagaggaagcactggccgccgttatcgccctctttaattctggttttgatgaagattaatcttcatcactttgacatacaactcccttcaaactccccccgacaataagaaaatcacgtactgaaatcgttctcaatcaacgtcatttgtacattttgtgcgcttttcactttcagaagaaccttaagaaaaccttaagaggcattgtttaggttttgtttaagttaatcgaccatactggagatcgtcagaaaatatttccaggagatggcatgattcgcttatctgaacaaagtcccctgggcaccggaagacatcggaaatgttatgcgcatccggaagatgcccaacgctgtatcaagattgtctaccatcgtggcgatggtggcgataaagagatccgccgtgagttaaagtactacgcgcatcttggtcgccggttaaaagactggagtggaataccgcgctatcacggtaccgttgagacggattgcggaaccggttatgtctacgatgtgattgcagattttgacggcaagccttccattacgctgaccgaatttgctgaacaatgccgttacgaagaagacattgcacaactgcgccagctactgaaacagctgaagcgttatttgcaggataaccgtatcgtgacgatgtcgctgaagccgcagaatatcctctgtcaccgcatcagtgagtcagaggttatcccggtcgtctgcgacaacattggtgaaagcacattgattccactggcgacctggtcgaagtggtgttgtctgcgtaagcaagagcggttatggaaacgatttatcgcccaaccggcgctggctattgccctgcagaaagatctgcaacctcgtgagagcaaaacgctggccctcacttcgcgcgaagcttaatccagctggtgttgttgcataaacggctcaccgcctaactgatacatctgccgtaaaatccacgcctgacggctacgcacgtagcccgatggcgaggagactttgaaacgaagtggattaggtaatacagctgccagtaatgcagcttccgaccgggtaagtttgctcgcgggtttgtggaaataacgttgtgccgcagcttcgacgccaaacacaccgtcgccaaattcggcgatattcaggtaaaccgtcaggatacgctttttgctccagaccgtttctatccccagcgttaatccggcttccagcccttttcgaacccagctacgcccatcccataaaaagagatttttggctgtctgttgagaaatcgttgaagcaccgcgaatacggttttcattgcgctcgttgtgcgccagggctttctcaatggaagcgacatcaaagccccagtgctcaggaaatttctgatcttctgcggcaatcaccgccagtcccatccacggcgagatttgatccatactgacccagtcagaatgtgccacgtaacgaaaattgccatgcagccaggcgctgacctgtcgctcgaccattaccgctgagaagggaacaggcgcaacgctaaacaacgcgatgcccccgccccagaaaacggcgaggacaaccattaaccgcaaaagaaaacggcgaacgaaactaaacaccgttaagcggcttttactcattcagccagaaccagcacgcgggaaaccagcttatcaatgccgctcgccgcttctgcaatgttctgcgccagcatatatgctggggtggtgacaatcttattgtcttcatcaaccacgatatcatcgacaggacacggcacatgctccgcgcccatctcttccagcacttctgcggtatcgatatcagtaccgatggtcaaacgcagcgggaaatcgaaaattttcggcagcatcgccggggcaatacacataaaaccaagcggttttccggcctgatgcatcgcttgtgccagcgcctttaattcacggtcaacggtgcattcgctaccaagactggcaaaattgcttaaattcttcgccgcgccaaacccccccggcacaatcaacgcatccagttcagcggcatcggcctgggccagaggacggatttcaccgcgcgttattcgtgccgcttcaatcagcacattgcgcgtttccgtcatcgcttcgccagttaaatggttgataacatcaacctgctgcttatccggtgcaaagcagaccgcctgcgcaccgctgcgtgaaatagctaacaacgtcaacaccgcttcatgaatttcagaaccgtcatagacgccgcatccgctcagaattacgccaattttcttcattgtgatcatcctttcgcaattgactgaaacacattaatttttttaataaaaatggtacgcatcacacatttaactgattcatgtaacaaatcatttaagttttgctatcttaactgcgtgcggcctgaaaaacagtgctgtgcccttgtaactcatcataataatttacggcgcagccaagatttccctggtgttggcgcagtattcgcgcaccccggtctagccggggtcattttttagtggcttttgccacccacgctttcagcacttctacgtcgtgacgccactcttctttcatctcttcaatccattcaccgacgttatcttcccaggccggaaggtcaggagactgaatttgctgacccagctgttgcagatggcgtaaccccactgaccccgccgcacctttaattttatgtccttcctcaacaatgccttttttatcctgcgccgtcagattcgactccagcacgctgacatagcccggcatcatcttctcaaacaccgctaacccgtcggtgatcagcttcggtcctacaagttcgagatactgttccagcatgggaatatcgagcaatgcttctgatttactgttctcttctgtcgtcaccgtactctcctcatcatcctgggtatcccagaatttcttgatcatcgcggttagcgccggaacagaaagcggcttactcagcacatcatccattccagcattgaggtactcttgtttgtctttcagcacgttagcggttaaggccaccagcggcggtaaatcctcgcgcggataacgtttcgtcagttcacgagagatatccagcccggtcatatctggcaactgaatatccagcaacaccaggtcgtattcgcccggtttaaacatctccagcgccgccttgccggtcatggcgacatcaacgctgttacctaatttttccagcacagaacgcgcaacaatcacgttcagttcaatgtcttccaccagcagcacattcagcgccggtaaaggcatatcgtcttcatcaaacgcatcatcgacctcttctgctaccgacggtgcgtggatcgtcaacgtaaaggttgaacctttgccctgttcgctggtaaccgtaatatcgccgcccatatttttcgccagacgacgagaaacggccagaccaataccggtggcaggtttaccgccatgactgtctttcacctggtaatacatggcgaaaattttatccagctcatcctgcggaatgccgataccagagtcttccacttcaaaatgcagcatatcgccttcatcgtagcgcacgcgcacggtaacctggccttgctgggtgaatttgacggcgttactgatgaggttccacaggatctgccgtaaacgcgtcccgtcggtaatgacctgatgcggtaatggcagcgtcggctccaggttaaagcgcaatcctttttgttgcgcctgcaatgcggagagattttccagatcggcaaggaagctggtgaaatcaaccggttgattatcaagctggaccttgcgccgttccatcttatccatgtcgataatatcgttaaagatattccccagcgtgacggccgaaacatggatggtcttgagatatttttcctgctcggcggtgagttcggtatccagcagaatgcggctcagaccgacgataccgttcagcggtgtacgcaattcgtgactgatggtggagataaacgtcgttttgtcgcggctggcccgttcaagcgcatcctgataccgcttacgctcggtaatgtcgcgaccaaagcccatcaaaccgtgacgtttacccacgcggtcgtagtacggcactttacggatttcaaagcaggctttgcgcccgtccgggtaatccagccactgttcataggtcagtgacacattatgacggaacactttttcatcggtttcaatgacttttgcggcggcttccggtgagtaaacatcagcaggtttcaggtgaaccagttgtttttcgctttttccggtcagcagctccatcgcgcggttacagccggaaaactctttatcttcgttacgataaaaaaccaggtcgggtgaagcatcaaggaaggaacgtaagaatgaggattgctgctcgagctgaatttgtgtctcttcgcgctctttgatttcaattttcagttggccgaaggtttcctgcagttctgcttccgctttttcacgaacggcaatttcctgatttagctgggcaatattatcttttaactgaacgttgaggctcaaatcgcgctcgcgcatctcctccagtttttgcaccagccgtgacagacgttgtcgtgactcctccagttgctcgacgaccaccgatagaaagtagaccgcccacggcgtaatcagcaaaccaaagaagatagaacgaataacatcaatgctttcgacctgaccatgcagcaccatggttaccgccatttgtaccacaatggcaagaacgacgagggccagcgccagcaacattgagaagcgcaccagacctaacttcatcatcaggtcaacataatactgcgccagcagacgaatttgcttcattagggaattccttcacgacaacctgccccaataatacccaattctgacagttacgttataaattgtgtgagaaatgcggaattcccctcaacgacctactccgttggaggtagccacggacgtcccagcgccgatccctgtacgccatgttcattcagatagcgatccagctcgaccattcccgtccatcgattttcgcaccacagcggagcaagcagcgtcgggcgacgggcgctggcggaaatgcggtggtagatcacttccggtggcgtatggcgaatcatttctccggcagtgagcgtgtaatcctccagttcaataccgttcaaacgccccgcttcccaggctttcgccataatgctgcctttcacaatatgcagcggatgcagctttatgccgtccacgccggtttcaaccactcgctccagcgtttgcaaacattcagcctgcccttcgccaggcaggccgacaattaagtgggaacacaccttcagcccgcgctgacgtgccagctgggttgtacgctgataacaggcaaaatcatggccgcggttgatgcgatgcagtgttttgtcgtgggcggtttgtagccccagctccagccacacttcgtaaccctggtccttatattcgcaaagcagatccagcaccgcatccggcacgcagtccgggcgggtacccacacacaaaccgacaatattggcctggctcaccgcctgctgatacatagaacgcagcacctgaacttccgcaaaggtgctggtatacgcctgaaagtaggccagatagcgtttagcgcggttaactaaattcgcctggtgcgccagttgctcggcaatggaacgatgctcgtgcgcttcatcggcaaacgaggcaacattacagaatgtgcagccaccacgcccgatggtaccgtcacggttagggcagctaaaaccgccgtgcagcgtcagcttatgcaccttttgcccataacgacgggtgagatcaccaccaaacatattgactaatttctgtaactgcataatctgatagaccgcgccttgaaaagaggccaaagcctgccatttttagctcaattcggcgatgacctggatcaatcgtcccggcctgcttttatcaactgcataatcaatcaaaattaccgaaatttcatgcataatcacataaatcacttttgcttatcttgtgtcagatttttttatctcctgatggattttaggcaaaaacagtagcatgaaacgtcattaccaattaaggcagtataaaatgctggttttgtcgtcagttcaaggcaggataagggttaacacacctttatgacagtcaggaattgactgtttctctaacgacttcccttttagccttaaagataaaatccattttaatttcagtcatttaataaagaattttgcgctaaagcacatttctgtaccaataagcttgccatttgacctgtatcagctttcccgataagttggaaatccgctggaagctttctggatgagcagcctgctcatcatatttatgcagtaattgagatcccctcttcaccgtattaaccgatgcgaaaaggacaacaagggggcgaatcggaggcgcgcgtatgacacgcaaaccccgtcgccacgctctttctgtgcccgtgcgcagcggttcggaagtggggttcccgcagagcctgggggaggttcacgatatgttgtacgataaatcccttgagagggataactgtggtttcggcctgatcgcccacatagaaggcgaacctagccacaaggtagtgcgtactgcaatacacgcactggcccgcatgcagcaccgtggcgcgattctcgccgatggtaaaaccggcgacggttgcggcttgctgttacaaaaaccggatcgcttttttcgcatcgttgcgcaggagcgcggctggcgtttagcaaaaaactacgctgtcgggatgctcttcctgaataaagatcctgaactcgccgctgccgcacgccgcatcgttgaagaagaactgcaacgcgaaaccttgtcgattgtgggctggcgtgatgtccccactaacgaaggcgtgctgggtgaaatcgccctctcctctctgccacgcattgagcaaatttttgtgaacgccccggcaggctggcgtccacgcgatatggagcgccgtctgtttatcgcccgccgccgcattgaaaagcgtctcgaagccgacaaagacttctacgtctgtagcctgtcgaatctggtgaacatctataaaggtctgtgtatgccgacggatctgccgcgcttttatctggatcttgcggacctgcgtctggaatcggccatttgcctgttccaccagcgcttctccactaacaccgtaccgcgctggccgctggcgcaaccgttccgctatctggcgcataacggtgaaatcaacaccatcaccggtaaccgccaatgggcgcgtgcgcgtacttataaattccagacaccgcttatccctgacctgcacgacgccgcaccgttcgtcaacgaaaccggctctgactccagttcgatggataacatgctggaactgctgctggcaggcgggatggatatcatccgcgccatgcgtctattagtaccacccgcctggcagaacaacccggatatggacccggaactgcgtgccttctttgactttaactccatgcatatggagccgtgggatggcccggcgggcatcgtgatgtccgacggtcgttttgccgcctgtaacctcgaccgtaacggtctgcgtccggcgcgctacgtcatcaccaaagataagctcatcacctgcgcctctgaagtcggtatctgggattaccagcctgacgaagtggtcgaaaaaggccgcgtcgggccaggcgaactgatggttatcgacacccgcagtgggcgtattctgcactcggcagaaaccgatgacgatctgaaaagccgccatccatataaagagtggatggagaaaaacgtccgccgactggtaccgtttgaagatctgcccgatgaagaagtgggtagccgcgaactggacgacgacacgcttgccagctaccagaaacagtttaactacagcgcggaagagctggactccgtaattcgcgtactgggcgaaaacggtcaggaagcggtcggttcgatgggcgatgataccccattcgccgtgctctccagtcagccgcgcattatttacgactacttccgccagcagtttgcccaggtgactaacccgccaatcgacccgctgcgtgaagcgcatgttatgtcgctcgccaccagtatcggtcgtgaaatgaacgtcttttgcgaagcagagggccaggcgcaccgtttaagctttaaatcgccgattctgctctactccgatttcaaacagctcacgacgatgaaagaggagcactaccgcgcagatacgctggatatcacctttgacgtcactaaaaccacgctcgaagcgacagtcaaagagctgtgcgacaaagccgaaaaaatggtacgtagcggcaccgtgctgctggtgctctccgaccggaatatcgctaaagatcgcctgccggttccagccccgatggcggttggcgcgatccagacccgtctggtcgatcaaagcctgcgttgcgatgccaacatcatcgtcgaaaccgccagcgcccgcgatccgcaccacttcgccgtgttgctgggcttcggcgcgacggctatttatccataccttgcctatgaaacgctgggccgcctggtagacacccatgcgattgccaaagattatcgtaccgtgatgctcaactaccgtaacggcatcaacaaaggcttgtacaaaatcatgtccaaaatgggcatctccaccatcgcctcttaccgctgctcgaaactgtttgaagcggtcggtctacacgatgatgtagtgggcctgtgcttccagggggcggtcagccgcattggtggagcaagctttgaagacttccagcaggatctgctgaatctgtcgaaacgtgcctggctggcgcgtaagcccatcagccagggcggtctgctgaaatacgtccacggcggcgaataccacgcctacaacccggacgtggtgcgcacgctgcaacaagcggtacaaagcggcgagtacagcgactatcaggaatacgcgaagctggttaatgagcgtccggcaaccacgctgcgcgatctgctggcaattacgccgggtgaaaacgcggtcaacattgctgatgttgaaccggcaagcgaactgtttaaacgctttgataccgccgcgatgtctatcggcgcgttaagcccggaagcccacgaggcgctggcggaagcgatgaacagcatcggcggtaattcgaactccggtgaaggcggcgaagacccggcgcgctacggcaccaacaaagtgtcgcgcatcaagcaggtggcttccggtcgctttggggttactccggcgtatctggtcaatgccgacgtcattcagattaaagtcgcccagggcgcgaagccaggcgaaggcggtcagttgccgggtgataaagtcacgccttacatcgccaaactgcgctattcggtgcccggagtgacgctgatctccccgccgccgcaccacgatatctactctatcgaggacttagcgcagctcattttcgacctcaagcaggttaacccgaaagcgatgatctccgtgaagctggtttccgaaccgggagtaggcaccatcgcgactggcgtggcaaaagcttatgcggacttgatcaccatcgcaggctatgacggcggcaccggcgcaagtccgctttcatcggtgaaatacgcaggctgtccgtgggagctggggcttgttgaaacccagcaggcgctggttgctaacggcttgcgtcacaagatccgtttgcaggtcgatggcggcctgaaaacgggtgtcgatatcatcaaggcggcgattctcggcgcagaaagcttcggcttcggcactggcccgatggtggcgctcggctgtaaatatctacgtatttgccatctgaacaactgcgcaacgggtgtagcaactcaggatgacaaactgcgtaagaaccactatcacggcctgccattcaaggtgacgaattactttgagtttatcgcccgtgaaacccgcgagctgatggcacagcttggcgtaacacgtctggtggatctgattggtcgcaccgacctgctgaaagagctggacggtttcaccgccaaacagcagaagctggcgctgtcgaagctgctggagactgccgaaccgcatccaggtaaggcactctactgcaccgaaaacaacccgccgtttgataacggcctgctgaacgcgcagttgctgcaacaggcgaaaccgtttgtcgatgagcgccagagcaaaaccttctggttcgatattcgcaacaccgaccgttctgtcggcgcgtcgctttcaggctatatcgcccagacgcacggcgatcaggggctggcagccgatcctatcaaagcgtacttcaacggcaccgcaggccagagcttcggcgtgtggaacgcgggcggcgtggaactgtacctgaccggtgatgccaacgactatgtcggtaaaggcatggcgggcggcttaatcgccattcgtcctccggttggttccgccttccgcagccatgaagcaagcattatcggcaacacctgcctgtatggcgcgaccggtggtcgtctgtatgccgcaggccgcgcgggtgaacgtttcggcgtgcgtaactccggtgctatcaccgtggtagaaggcattggcgacaacggttgtgaatatatgacgggtggtatcgtctgcattctgggtaaaaccggcgttaacttcggtgcgggcatgaccggcggtttcgcttacgttctcgatgaaagcggcgatttccgcaaacgcgttaacccggaactggtcgaggtcttaagcgttgacgctctggcgatccatgaagagcatctgcgtggtcttatcaccgagcatgtgcagcataccggctctcagcgcggtgaagagattctggcgaactggtcaaccttcgccactaaatttgcgctggttaaaccgaagtccagtgatgtaaaagcactgctgggtcaccgtagtcgtagcgcagctgagttgcgcgtgcaggcgcagtaaggggtagcaacaatgagtcagaatgtttatcaatttatcgacctgcagcgcgttgatccgccaaagaaaccgctgaagatccgcaaaattgagtttgttgaaatttacgagccgttttccgaaggccaggccaaagcgcaggctgaccgctgcctgtcgtgcggcaacccatactgcgagtggaaatgcccggtacacaactacatcccgaactggctgaagctcgccaacgaggggcgtatttttgaagcggcggaactgtcgcaccagaccaacaccctgccggaagtttgcggacgagtctgcccgcaagaccgtctgtgcgaaggttcctgcactctgaacgatgagtttggcgcggtgaccatcggcaacattgagcgctatatcaacgataaagcgttcgagatgggctggcgtccggatatgtctggtgtgaaacagaccggtaaaaaagtggcgattatcggcgcaggcccggcaggtctggcgtgtgcggatgtcctgacgcgtaacggcgtaaaagccgttgtcttcgaccgtcatccagaaattggcgggctgctgaccttcggtattccggccttcaagctggaaaaagaggtaatgacgcgtcgccgtgaaatcttcaccggcatgggtattgaattcaaactcaataccgaagtgggccgcgacgtacagctggacgatctgctgagtgattacgatgccgtgttccttggcgtcgggacttatcagtcaatgcgcggcgggctggaaaacgaagacgccgatggcgtgtacgcagcgctgccgttcctcatcgccaacaccaaacagttaatgggctttggtgaaacccgcgacgaaccgttcgtcagcatggaaggcaaacgcgtggtggtccttggcggtggcgacactgcgatggactgcgtgcgtacgtccgtgcgccagggagcgaagcacgttacctgtgcctatcgtcgtgatgaagagaacatgccgggttcccgccgcgaagtgaaaaacgcgcgggaagaaggcgtagagttcaaattcaacgtccagccgctgggtattgaagtgaacggtaacggcaaagtcagcggcgtaaaaatggtgcgtaccgaaatgggcgaaccggacgccaaaggccgtcgccgcgcggagatcgttgcaggttccgaacatatcgttccggcagatgcggtgatcatggcgtttggtttccgtccacacaacatggaatggctggcaaaacacagcgtcgagctggattcacaaggccgcatcatcgccccggaaggcagcgacaacgccttccagaccagcaacccgaaaatctttgctggcggcgatatcgtccgtggttccgatctggtggtgaccgctattgccgaaggtcgtaaggcggcagacggtattatgaactggctggaagtttaagcgaggtaacaatgaattcgccagactgtgtctggcgaatcaaattactgacgaagtgcgcgttgttttctggcaaatgcggcatgagcgtttgacctttcctataatagggataattttcaataaattgtgctttgttcaccaagtctgatgagtgaagcacatcaagcaatttctcatttacaatccgtctcaattacttgttaacacctctgacaataccgattctgcaagctattcagtcttttcattccatgtaaattgtctcgatattaatatacaaaatatgaatataaaaaaccaatatattatccttaattatctatatattttcctatttttcagcgcaaacattcatgtaatgaataattatcaccacaaaccacctcaccagcaccttattattcacatgatcgtaactataaaattcattaaataaatacatcccagcaagttggctatttctgaacgagttatttatttacattcacaaacagatatatatactgcttcagctttttattttaaaaaataaatttgttattaaggatatgttcatatgtttttcaaaaagaacctcacaacagctgctatttgtgcagcactttctgttgcagcattcagtgccatggcaacagattcaactgatacagaattaactatcatcggcgagtatacccctggtgcatgtaccccagttgttacgggcggcggcattgttgactatgggaaacatcataacagtgcgctgaatccgaccggtaaaagtaataaactggttcaactgggccgcaaaaacagcacattaaatataacctgcacagcaccaacgctaattgctgtaacctccaaggataaccgtcagtcgaccattgtagcgttaaacgacacatcctatattgaaaaagcttatgatactctcgtagatatgaagggaacgaaaaacgcctttggtttaggttctgcgcctaatggacaaaaaattggcgctgcatccattggtattgacaggtctaatggtgggattcacgcggcggacgatacaggtgaaattcctgtcgacctgattcaaactgaccactggtcagcagcgacccccacatggaaagcctcatctaatggcgcattctgctcgctgacaagttgctcagcaatcgagcgcggttattctgttgcaaaaacaggggaactgacacctgttgctattacagcggtcaccttcccgttactgattgatgctgcggtaaatgacaatactattcttggttctgatgaaacgatcaaactggatggtaacgtcactatcagcgttcagtatttataagaacttgtaatacagtttttatttttacgcattaaccagttagctataactcggacagattatgccctatgacatggtctgtcttaatcaatctcatcgcaaacagtgcataacatatattaacaatatgtttctgcgttatttatcattattacaggagttttaatttaaatgctcagacacattacattcactgtatttataacaacatcaatgaataccttagccacagggatggttcctgaaacatcagtattgctggttgatgaaaagcgtggtgaagctagtattaatattaagaatacagatgatcatccttcattgctttacaccaccattgttgatttgcctgaaagcaataaatcaattcgtttaatcccgactcagcccgttattcgtgttgaagccggtcaagtacaacaggttcgatttttacttcaggcgactgttcctctgcaatcagaagagctgaaacgcgtaacgttcgaaggtattccaccaaaagatgacaagagcagcagagttactgtttcaattcgtcaggatctacctgtactgatccacccggcttccctgccggaagagcgagagacctggaaattcctggaatggcgtaaaaatggcgaccaaattgagattagcaaccccagtaattatgtcgttcgtatgaccttacaatttaaaacgctcccttcaggaaaaacgggggctataaataagacctattttctaccacacaccagtacaactactgcattaacaaacgctacggatacaaaagtcgagttttacccagccagccgatatggttatcgcggtaataaatatgtcactgacttaaaataactttgcctggagcgacaaggatgttaaaaaaaacgttactggcctacaccattggttttgccttttctcccccagccaatgcagatggtatagagattgccgctgttgattttgatcgggaaacattaaaatcactaggtgtagatcctaatatatcgcattatttttcccgttcagcccgttttttgccaggtgaatattcactgatagtatcagtaaatggcgaaaaaaaaggcaacattgctacgcgctttgatgaaaatggcgacatttgtcttgatcaggcatttctgcaacaagccggtttaaaaattccttctgaagaaaaaaatggctgttacgactatatattgtcctacccgggtaccacaatcacaccattacctaaccaggaagcgttagatattatcgtttcaccacaggcgatcattcccatagggttggatctcacaaacgcagcaactggtggaacagctgcgctgctaaactactctctgatgagcagccgtgcagaattttctaatgggagttcggactactcccaggctgcacttgaaggcgggattaatattaatgactggatgttacgcagccatcagttccttacacaaacaaatggcacattcagtaaccagaactcgtcaacctaccttcaacgtacctttacagatcttaaaacactcatgcgagcaggtgaagttaacctcaataatagcgtgttggaaggagccagtatttacggtatcgaaatcgcaccggacaacgcattgcaaaccagcggcagtggtgtgcaagttactggtatagccaacacctctcaggctcgtgtcgagattcgtcaacaaggagttttaattcattccattctggttcctgcgggcgcattcactatccctgatgtacctgttcgcaatggtaatagtgatcttaatgtcaccgttgtcgaaacagacggtagttcgcacaactatattgttccctccaccctgtttaatcagcatgtagaaagcttccagggttatcgcttcgcgatagggcgggtagacgatgactatgacgaatcaccttgggtaattagtgcatcgagcggatggaatctgacacgctggagtgcaatgaacggcggcgttatcgtagcagaaaattatcaggcggcatcaatccggtcgagtctggttcccctgcccgatttaacagtgagcagccaaattagtacatcgcaggatacgaaagactcactgcaaggacagaaatatcgtcttgacgcgaactacaatctcccattttcacttgggctaacaaccagcctcactcgatctgatcgccattatcgcgaactgtctgaagcgattgatgatgattataccgatccgactaaaagcacttatgcgcttggtttaaactggtctaactccattctgggtggtttcaacatcagtggctataaaacatatagttacgacggtgacaatgactcaagcaaccttaatattaactggaacaaagcgttcaaacacgccacggtttccgtcaactggcagcatcaacttagtgcttcagaaaataatgaagacgatggtgatctgttctacgtcaacatcagtattccatttggcagatcaaacaccgccacactgtatactcgccatgacgatcataaaacccactatggtactggtgtcatgggagtcgtctcagatgagatgtcctactatgtgaatgctgaacgagatcacgacgaacgtgaaacgagcttgaacggcagtatcagttccaatctccattacacccaagtcagccttgccgcaggagcaagcggcagtgatagccgtacttacaacggtacgatgtcaggtggtattgccgtacatgatcagggagtgaccttttcaccgtggactatcaatgacactttcgccatcgcaaaaatggataacaatattgcaggtgtcagaattacatctcaggcaggcccagtatggacagattttcggggtaatgccgtcattccatcaatccagccgtggcgaacatcaggagttgagatcgataccgccagcttgccaaaaaatgtcgatatcggtaacggcacaaaaatgatcaaacaaggccgtggtgcagtagggaaagtcggattcagtgcgataacacaacgccgtgcattactcaatatcacactttccgacggcaaaaaactgcccagaggcgttgcgattgaagatagtgaaggcaactatctgacaacatcagtggatgacggtgttgtattcctcaataacatcaaaccggacatggtgctagatataaaagatgagcagcaatcatgccgtattcaccttacattcccagaagatgcaccaaaagatgtgttctatgagacagcaacaggagagtgccaatgaaacggataataacaggatgcctgctgctgaacttcgccatggccgctcaggcagagtgtaatatctccagtagcatacaaaatatcgactatggcaaacgaagtgctgccatgcgccaagttgaccggggtaaaacaacacaattagcagacagaacaatcacgctggtaatgcaatgcgatcaggacgctcatattcgtgttcagttgaataccgctaatatttccaacaacggatttggatttggcccgaatggttcattaaatctgatcgccagcgatgcattttcaggtagtaacaatctcgacctggcgttagccagtggcaaaaatgacaatccgggcagcacaggaacagcatcaattagggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccttagtacttcccccaataattggctggtgtttatgcaaaatggtcaagaagtggtaattgatagcggtaaaagcgttagcctcacactgacaatggctccagcttttaaggatgaaggggaactaaccgacatgacagatattacaggcaatctgacggtcctggtggaggcaaaatgaacaatgtaaaattactgattgccggaagtgccttttttgccatgtcagcgcaagccgctgatagagtatcaattgacgttaaggtgactctggaagctgcagcttgtactccaatactaagcaacggcggagttgttaacttcggtagtcattcagtcaatagactttcaacgcagcactacacacagattggaacacgtaatattaatatgactataacttgcgaatccgctaccggcattgcgattaccgctcgtgatacacgaatggatagtatgaccaccggaaaagatagtgggggtcagagtggtgtaaaatataccttaaatggcggaggttatattagccagacaacgcgcttattcggcttagggaaaacaaaagataataaaaatatcggtagttatgccgtgttaattgatagcaacaacattagtgccagcaatggtagccagacgttagctgtatcaatagcaggtgcagatgccgtcataacagggcaaaaaagagcatggcaaacgctcaccgcttatccgcttgcagtcgatcaaagctattattacacctttgtaaaaccaggtgaaacaaccccaactcctgtaacgaacgccattataccgcttcaggtgagcgcatctatcgcgaatgatttaggcggttcagaaaaaatcgaacttgatgggaaagctgtgataagcgtagtctacttgtgataacaatgccggacaggagtactatcaggcattcgttttatacgatcggttaatgtttcaggaaagctcttcgcatatcttggggaaagtaaatgtaatacgctgttcttaattgttcagtgctcaccccccagagtatagctcattccattattcaacttagctccatataaagggacagataatggaatcgctctcagaaggaaccacagcaggctaccagcaaatccacgacggtattattcatctggtcgatagcgcccggacggaaacggtacgtagcgttaacgcgttaatgaccgcgacgtaccaggaaattggccgacgaattgtcgaatttgaacaaggtggcgaggccagggctgcgtatggtgcgcagctaatcaagcgactatcaaaggatttatgtctaaggtataagcgtgggttctctgcaaaaaacttacgccaaatgaggcttttttacctcttttttcaacatgttgaaattcaccagacaatgtctggcgaattaacaccattgggaattccgcagacaccgtctgcagaattcccatcggcaaagatttggcagacgctgtctgccaaatctttccccttgcccaggtccacctacgtccgtttactttccgttaaaaacgctgacgcccgcagcttttatgaaaaagagacgctccgctgtggctggtctgttcgccagctagagcggcaaattgcgacccagttttatgagcggacactactgtcacatgacaaatcagccatgctgcaacaacacgctcctgccgagacgcatattcttccgcaacaggcgatacgcgatccctttgtgctcgaatttctggaattgaaagatgaatattcagaatccgattttgaggaggcgctgatcaaccacctgatggatttcatgctggaacttggggatgattttgcctttgttggtcggcagcgaaggttacgcattgatgacaactggtttcgtgtcgatctgctgtttttccaccgccgtttacgctgcctgctaatcgtcgatctaaaagtgggcaaattcagctatagcgatgccggacagatgaatatgtatctcaactacgccaaagagcactggacgctaccggatgaaaatccgcccatcggtctggttctctgtgcagagaaaggagccggagaagcgcattatgctctggcaggtttgcctaacaccgttctggcaagcgaatataagatgcaactacctgatgagaaacgactcgcagatgaactcgttcgaacacaggcggtgctagaggaaggctatagacgccgttaatttcagcggtttcgaattctgcagacagtgtctgcagaatctttaaaacgaactaagttttaagccattaaatcagccttaaccttcaccacaacctttttaatctctccaggctcgccgacaacgcatcctggtttatgcggttcacctggcataaacacggcgaacattcccggttttaagatgatggcttgctcgttatcaatggtgctgcaaagctgataatcatcctcatggtggaactcttcacactgacgcgcagtgcctgccatgccaaacagaatccgttcctcaccgtttaataacagctggatatcaatgtattgctcgtgcaattccgcttttttctcgacgggcgattgagtgttaaacgtcatgacattcataaagatattgtcgccctgtaattcgtaacgacccggcgctttttcttgcggtctggcagctaatgccagcgttaacgcgtcctgtaacgcaggatgtaacccagcagacggtaatgactgtacttcacccatcatcataatttttctccctgggccaacagcgcagccccaagtaaacctgcatcatggcggtaatgcgccgccagtaaatcaacatgaaatgccgctggctcctgcgccagatacgtttccaccagcgccagatacccttctgccagaccaacgctgccaccgaccaccacgcactggcaatcagttgtggctttaatatcagcgatcagccttgcaagcgtacgtgcggagcggtgaatcagctgctgcgcctgctcgtcaccctgcccggcgcgcgtgaaaatagttttcgcatccgcgccagccaactccccctgcgctgccgctgcaatgccgcgaccagaagcaatcgcttccacgcaacctgtgcgtccacagccgcagactgggccgtgtggatcggcaagcgtatgcccgatatgccccgccagaccgccagggccggtaagcagtttgcagccgctcactacaccgccgccaacgccggtggaaacggtgataaagaccatatcggttatatcgccatccagcgcctgaaactccgcccatgctgcggcctgcgcgtcgttaatggcaatggtcggcaaattggtaagttgttccagcgttttgactaacggaaagtgtagcaatccaccaagattatgcggattaagcgccagcaagctgccgtcacggattatcccggtcgaagcgatggcaacccgctgcgcatgagcttgcaacggagagactaatgcggataaggcatcacgcaaggcttctggtgtctggctggctggcgtaggaagttcacgacgatcgcggatctgcccgtcagcgccaatcagcgcggcggcaagtttagtaccgccgatatcaatcgccagtgtggtcatagcaccgcctttttcatcgctgtgttgtaccactgacaaatgtgctcaagacgcgtgattgcagaaccgaccgtcaccgcccacgcgccgtggcgcatcgcatccgccgcctgagcaggcgtgttgtaacgcccttcggcaatcacccgacatccggcgtcgctcaacgttttcaccagcgccagatccggctcttctggcgtttcaggcgtggtatagccagaaagcgtagtgccaataatttcggctcccagcttttggcatgccaggccgtcttccggcgttgagcagtcggtcatcgccagtaaaccgtgatggtgaatacgtgccagcagcgtttcaacaggcaccggacgcgggcggtcggtgccgtcaatggcgataatgtccgcgcccgcctgcgccagcgcatcaacatcttcaatataggccgtgatgcgtaccggagaatcctccagatcgcgtttcacaattccaataatcggcacgctcaccaccgcacgcgtggcttgcagatttgccacaccttcaatgcgaatggcaaccgcgcccgcctgttctgccgctaatgccatggcggcgacgatttcgggtttatcgagcgggctgtccggaaccggctggcaggagacaatcaggccaccgttagcagcgattttttgatccagttgtgcaagtaacgacatacatcttcccttagcgaaaggcccggtacatagaccgggcaacaggattaacttttggttttgactaaatcgtttttggcgctgccaaacggcacggcaccgctgaatggtttaccgtcgatagcgtcatgagtacgcaacgcttccgggcgcaaccaacgctgaacgcgagaaggcatatccagcccaatcagcaggatcaccacgaacgtcagactgaacgagagcgatgccagcgcagtacccagatccagacgttgagcgatcaacgcgccgatgattggggccagtgcaccgcccaatgcgccaacgttgtaggtaaagcccaggcccgctgcacgctggtcggtatcgaaataaccgccaatcagttttggtaagatcccggcgatcccttgtccaagcatttgctggaagaacagtaacagaccgagcacccagacgtttgcgccgccaatcgcaaataccggaataatcagcagctgcgaggccagcaggctacaaacgtacgctttgcgggttcccagccagtcaccgaggaagccacctacgcagcatcccaccgccgcgccaaagccactaaagaacagcacattggctacagtatgcgggttataagccagatcggttttcagatacgttggcagcagcgcctgaatcggccatgagtagaggaaagcaaacaacacgaccaccatcagcattacgcccgttggccagcgtttgcctgcactctgcaccataaagctgataaagattgcggcgcataacagcccaagaacagcgacgatcgcggcattttgcaggttaccggcgaagcagaaccacagcgcagtagccgccgccagtgtcattacgatattggcaatgcgatgttcaccacggtagagaatatccaccattgtgcgtactggtgctttacctgcgtgtttctctttccagtcttccgcttccgggatgtttttacgcagccagagagcaaagatgattggcaaaatgccgataaagaacagcgcacgccagccccagaccggaaccaccaggctatagacctgagcggcaacgacggcccccacagagaagcctgaaatcaaaaaaccactggctttgttacgcagatgttttggccagctttcaatgacataggtggcgctggaaccgtattcacccgccatccccatgccgatgaccagacgagcgataaacatggtgatgtagcctggcgcaaagccgcaggccagcgtcccggccgagaagagaacgatgctggtgaccattgccagacgacgcccgtagcggtcacccatagcgccgagcatcaggccgccgaaccagcgagagataaaggctgcagagatcagacttgccgcctgcaccgtcgtcagcccgaattcaccttgtacttcggtgagtaccagggcgattaaaacgaaatcaaaaccgtcaagcagatatcccaaccaggcagcggaaaatgcgcgccattgtgcacggttgagatggcgataccacgggatattctgggttgtagtactcattgtgagtctcccgcggtgggcgatgcccacacgctttggtatgaaaattgtagggtacagatgcgtttatttcccctcacccggtaggggcgagcgaggggaaacaactcacccgcgctcttgcatcaactgctgggccagcgccttcagttctggcagatatttttcatctaccggtccaaacggtttgcggcacagcggcacagaaacgacatccatataatggaggacagttttcaggccgcggaatacgcccgttttgatcagtaaatcaatgactttattgcattcagtttgcagtttctgcgcggtctggatatcgccttctttcagcgccttaacgatcccctgatagcgccagcccatgatgttgtaggtactgccgataccaccatcagcgcccgccagcagaccagaggcgaagatttcgtcgtaaccgttatagagcacaagatcaggatgttcacgacggatctgctccatctgatagagatcgccagaggtctgtttcagcgcacctacgccaggcaatgtaacaagtgtgttgatctgatccagggtcagttttaccccactcagggctggaatgttgtacaccaccatcggcaaaccatccgccgaatcaataattgcccgatagtgatcgcagtgttcttcaaagctgaaaggatagtagaacggcgtgacggcggagacggcatcgaagccataacgtttagccgatgccgcaagttgttggctttcggcggtgctgacgcaaccgacgtgggcgatgagtttaatcttacctttcgcctcttcggcgacgatttccagtacctgttcacgctcggaaaggctttgtacaaaggcctcgccggtcgaaccacccacgtataaaccgtcgatgccctgctgaatattgaactgaaccaggcgacgcagactcgctttatccagtgcttgttgttggtcaaaaggagtcaggagtgcagccattacgccacgtaaattcgttgccataaatacctctgaagtgatgcttgtctgataaacgatatacctttatacctgttataccagatcaattaagcaacaccccatacagaaagcttataatgcgatctgcttcactaaagtggcattatttctttttgttggtggtctgaccgaaagcgtgccaggtagcagagacgctgttgagatgcgattgcaacgcacgatcggcttcgtcaggatcatgacggcggatcgcatcaacgatcgcaatatgctgttgataactaacgttgttatgttcgtgcagtgcctgatcggtaaccgttgggcgtgcggcaataagccagtcgagcagggcaacgtggatcgccatgaagattgggttaccggggatctccgccagcacgcggtggaaatcaacgtctgaacgaatgaatgccgcgttgttatccagcgactgactgttgatttccagtgcttttgccagcaaatcgatttgctcatcggtggcatgttcagccgcatagcgcaccagactggattcaaagaacagacgtaattgttcgaaatgggcaatcccaccgggatgagaaaggaaatctttcgccatgccggaaagctcaccgatgatagtgtccgcagaaggacgcgagacgcgagcgcgttcgccgttgtttatttgcaccagacctttgcgttttaacgctgccagcgcttcacgcaccgaaggacgcccgacgttaaagaacgccatcagttcgcgttcagacggtaattgttcaccttcgccaaattcacgacggcggatcatctgttccagctcttcttccaccatttcggagagttttttacgcgccagcgggcggctacgcaagttgcgaccaattgcaggtgaagaatcttcggtttgcgaatcaaatgcgttcataaggcccattctgtaaggtcagtgtgattaacatcatcagtgacatcctatcacaggattgaaagtaggggaaaatggcagggttttctctttgtgcctcatcattaccataattaacggaataattaactattgcgaaaaattaatgtaacgcagataaaaacatcccgtttgaattatttataagactattcacgagcattatgaatattatgaatgtgttcttacaaaataatcataagcgcatattttttaatgaaaaatcacctcacctacaattaaaaacacgacatccgcaccataaatagccttgcaaaaaatataacatcgttgttttcaatctgccgtttatgggattgaccgttttcttttgacacggagttcaacaatgttcggcataattatatctgtcatcgtattaattacgatgggctatttgatcctgaaaaactacaaacctcaggtggtgctggctgccgcaggtatcttcctgatgatgtgcggtgtctggttagggttcggtggtgtactcgatcccaccaaaagcagcggctacttgatcgtcgatatttataatgaaatcctgcgcatgctgtccaaccgcattgccggattggggctgtcgattatggcggtgggcggttatgcccgctacatggagcgcataggggccagtcgcgcgatggtgagcttgttaagccgcccgttaaaactcattcgctcgccgtatattattctgtcggcaacttacgtcatcggccaaatcatggcgcagtttattaccagcgcctccggtctgggtatgttgctgatggtcaccttatttccgacgctggtgagtctgggagtaagtcgtctctctgcggtggcagttatcgcaaccacgatgtccattgagtgggggattctggaaacgaactccatttttgctgcccaggtagcgggaatgaaaattgccacatacttcttccactaccagcttccggtcgcctcttgcgtcattatctcggtggcgatctcccactttttcgtgcaacgcgcttttgacaaaaaagataaaaatatcaatcacgaacaggcagagcaaaaagctctcgataatgtcccgccgctctattacgccattttacctgtgatgccgttaatcctgatgctcggctcgctgttcctcgcccacgtcgggctgatgcagtcagaactgcatctggtggtggtgatgttactgagtttgactgtgacgatgtttgttgagttcttccgcaagcataacttgcgcgaaacaatggacgatgtgcaggcgttttttgacggcatgggtacgcagtttgccaacgtggtaacgctggtggtcgcgggtgaaatatttgcgaaaggcttaacgacgattggcactgtcgatgcggttatcaggggggcggagcattctggtctgggcggtattggcgtgatgattattatggcgctggtcattgccatttgtgccattgtgatgggctctggcaatgcgccgtttatgtcatttgccagtcttattccgaatatcgcagccggactacatgtaccagcggttgtaatgattatgccgatgcattttgccacgacgctagcgcgcgcggtttcgccgattactgcggtggtggtcgttacgtcaggaattgcaggcgtttcgccttttgcggtggtgaagcggacagcgatccccatggcagtcggtttcgtggtgaatatgattgccacaatcacgctattttattaagtcattaaaaagacaaaacaggccgcctgggcctgttttgtattacttcacaacgcgtaatgccggtcgaccaccgcgtggtggctgcggaggttcatcgtcaggatgagtgtcatcatcgtgatctggcttgtcgccatcaataaccgacataacggtttcgttgtctgccgatgcctcttcatcattcatgatgctggtatcttcatcgtaggcagcttcaggctcaaacatcgtgcctgcgccattttcacgggcgtagatagccagcacggcagccagcggcacagaaacctgacgcggaatgccaccaaagcgcgcgttaaagcgcacctcatcattcgccagttccagattgccgacagcacgcggcgcaatgttgagtacgatttgcccgtcacgcgcatattccataggaacctgcacgccagggagcgtcacatccaccaccaggtgcggcgtgagctggttatccagcaaccactcatagaatgcacgcagcagatagggacgacgtggtgttagctgtgacaaatccatacagattaactccggcccagacgcatttcacgttctgcttcagttaaagaagcaaggaaagagtcacgctcaaagacgcgggtcatatagcctttcagctctttcgcacccgggccgctgaactcgatgcccagttgcggcagacgccacagcagcggagcaagatagcaatcgaccaggctgaactcatcgctcaggaagtacggcttctgaccgaagaccggcgcaatcgccagcagttcttcgcgcagttgcttacgtgcggcatctgcttcagaagctgaaccgttgatgatggtgttcatcagcgtgtaccagtctttttcgatgcgatgcatgtacagacggctttcaccgcgagctaccgggtaaacaggcatcagtggcggatgcgggaaacgctcatccagatattccataatgatgcgagattcccacagggtcagctcacgatccaccagggtcggaacgctctgattcgggttgaggtcaatcagatcctgaggcggattgtccttttccacgtgttcgatctcgaaacttacacctttctcagccagcacaatgcggacctgatggctatagatgtcagtaggaccggaaaacagcgtcattaccgaacgtttgttggcagcgacagccatgaaaacctccaggtatagtcagaatttttactgctaccagccaccaggtggccagtcagaagttgtgttacccaataaggaacgactctctttgttcgaaaatcaaacaaaaaatgagcaatacccgacatttgggcagaaaattggatgatagtttaccagattttgcgaccattgtggtgagtcgatgccggaaatggggaaaaagagatgcgctttagtctgaaatagttgacttagtcccttattggcgatgtggtttttgttttacctgtctgtcaggtggcagcaaaaagcaactttccagtttttacgctgattcagattttagctataaaaaaacccgccgaagcgggttttttcgaaaattgttttctgccggagcagaagccaattaacgtttggagaactgcggacgacgacgtgctttacgcagaccgactttcttacgttcaacctgacgagcgtcacgagtaacgaagccagctttacgcagttcagaacgcagggactcgtcgtattccatcagagcgcgggtgataccgtgacggatcgcaccagcctgaccagagataccaccacctttaacggtgatgtacaggtccagtttctcaaccatgtcgaccagttccagcggctgacgaactaccatgcgggcagtttcacgaccgaagtactgttccagagaacgttggttgattacgattttaccgttgcccggtttgatgaaaacgcgagctgcggaacttttgcggcgaccagtgccgtagtattgattttcagccattgcctataatcccgattagatgtcaagaacttgcggttgctgtgccgcgtggttgtgctcgttacccgcgtaaactttcagtttacggaacatagcacgacccagcgggccttttggcaacatgcctttaaccgcgatttcaatcacacgctcaggacggcgagcaatcatctcttcaaaggtcgcttgtttgataccaccgatgtggccggtgtggtgatagtacactttgtcagtacgcttgttgccggttacagcaactttgtcagcgttcagaacgatgatgtaatcaccggtatctacgtgcggagtgtattccgctttgtgcttaccgcgcaggcgacgagccagttcagtagccagacggcccagagttttaccggtcgcgtcaacaacataccagtcgcgttttacggtttctggtttagctgtaaaagttttcattaaaagcttacccaataaatagttacacgttggtgaacacccaaacgtcttcaattgttgaggttcacacgacaaagtccggcaaacctaccccttcgaatagcctatgccagcacacaaaaagttttgggaaaaaaactttcttgtaacgtggggtcgcaggattatagagaagtcggggtcaaagatcgacccctttttgtgatttgtgacaggttttaacccgccaaatgctcgcgcttcagatactcttcgctttgcatctcttgcagacgtgacaggcaacgctggaactcaaacttcagccgatcgccctgataaatttcatacagcggcacttctgcactcaccactaatttgacatggcgctcgtaaaactcatccaccagcgcaataaagcgccgcgcttcgctctccatcaaccgcgtcataactggtacatcaaacaacatgaccgtatgaaagagacgtgagagcgcaatatagtcatgctgactgcgggcgtcgacgcacagcgtagtaaaagagaccgccagcgtctggttctcgacgcccattgttgctaatggccgatggttgatttctaacgtcggtgaattttctcgtttcccccccgccagcgccaaccatagtttatccatttgcgcccgggtttcatcgtgaagtggcgaaagccacagatgcgcctgagtgagtgtacgcagacgataatcaacaccagcgtccacgttcattacatcacaatgctgtttaatggcatcgattgcaggcagaaaacgcgcacgttgcaggccatttcgataaagttcatccggcggaatatttgacgtcgctaccagggtaataccgcgagcgaacagggctttcatcagaccgccaagtagcatggcatcggtaatatcagaaacaaaaaattcgtcaaaacagagcacgtcagtttcggctttaaagcgatcggcaataatttccagcggatcggtctgcccctgtaaggcagttagctcttcatgcacccgcagcataaaacggtgaaagtgcaggcgctgtttccgctctcccggcaggctttgatagaaaaggtccatcagccaggttttcccgcgtcctacaccgccccacatatataagccacgcactggcgtatgctttgtgtcttcgcgtttaccccacagcttaccgacccgcgccattagcccactcgtcctgggggctggtggcgtgctattgatgagttcctgataaataatttccaggcggctgacggcctctttttgaacgtcgtcgggttgatggctgccttcattaagcgccttcaggtattgcgatgttggggtaacgctttgcatgatcttattgttattccttgaataatcggtgcgccgttgttcacggttgacgaaaaaaaggccgttctacactacgcgatatgcagtcgggattccacttctgtggaattaacggttatagtggcataatcagccgcaggcatggagcctgaagccaacaccctacggaaacaaaagacaacgggagatgttcatgacctgggaatatgcgctaattgggttagtcgtcggcatcattattggtgctgtggccatgcgttttggtaatcgtaaactacgccagcaacaggcgttgcagtacgaactggaaaagaataaagctgaactggacgagtatcgcgaagagctggttagccactttgcccgcagcgcggaattactggataccatggcgcacgactatcgccagctgtatcagcacatggcaaaaagctccagcagcctgctgccggaactgtctgctgaagcaaacccgttccgtaatcgtctggcagagtctgaagccagcaacgatcaggcaccggtgcagatgcctcgcgactattctgaaggcgcatccggcctgctgcgtactggcgcgaagcgcgactaatttatttttcgggcgcagccattgcgccctcctcttctctccctccccgactatcatttaatctggtgtctcattgttagccgtctgaaaattcaataacatcaaactgttttgaatctcttttcttatcattcaggtacgagagcaggaataatgaaaaaacaaacccagctgttgagtgcattagcgttaagtgtcgggttaactctctcggcgtcatttcaggccgtcgcgtcgattccaggccaggttgccgatcaggcccctctccccagtctggctccaatgctggaaaaagtgcttccggcagtggtgagcgtacgggtggaaggaacggccagtcagggacagaaaatcccggaagaattcaaaaagttttttggtgatgatttaccggatcaacctgcacaacccttcgaaggtttaggctccggtgtcatcatcaacgccagtaaaggctatgtgctgaccaacaaccatgtgattaatcaggcacagaaaatcagtattcagctcaatgatgggcgcgagtttgatgcaaaactgattggtagcgatgaccagagcgatatcgccctgttacaaattcaaaacccgagcaaattaacgcaaatcgctattgccgactccgataaattgcgcgtcggtgattttgccgtagcggtcggtaacccatttggccttgggcaaaccgccacctctggcattgtttccgcattaggccgcagcgggttgaatcttgaaggtctggaaaactttatccagacagatgcttccattaaccgcggtaactccggcggtgcactattaaaccttaacggtgagttaattggcatcaacactgcaatccttgcgcctggcggcgggagcgtcgggattggatttgccatccccagtaatatggcgcgaacactggcgcagcagcttatcgactttggtgaaatcaaacgcggtttgttaggcatcaaaggcaccgagatgagtgccgatatcgccaaagccttcaaccttgacgtgcagcgtggcgcgtttgtcagcgaagtgttgccaggttctggctcggcaaaagcgggcgtcaaagcgggcgatattattaccagcctcaacggcaaaccgctgaatagctttgctgagttgcgctctcgtatcgcgaccaccgagccgggcacgaaagtgaagcttggcctgctgcgtaacggcaaaccactggaagtagaagtgacgctcgataccagcacctcttcgtcggccagcgctgaaatgatcacgccagcgctggaaggtgcaacgttgagcgatggtcagctaaaagatggcggcaaaggtattaaaatcgatgaagttgtcaaaggaagcccagctgctcaggctggcttgcaaaaagacgatgtgatcattggcgtcaaccgcgatcgggtgaactcgattgctgaaatgcgtaaagtgctggcggcaaaaccggccatcatcgccctgcaaattgtacgcggcaatgaaagcatctatctgctgatgcgttaatgtcgtaaaccgggcatcaggcttacgtgtgatgtccggttaactcgtggtatgctgctgccgttcccttttttaatgacgcctccatcatgtttgtgaagctcttacgttccgttgcgattggattaattgtcggcgctattctgctggttgccatgccttcgctgcgcagccttaacccgctttccactccgcaatttgacagtaccgatgagacgcctgccagctataatctggcggttcgccgcgccgcgccagcggtggttaacgtttacaaccgtggtttgaacaccaactctcacaaccagcttgagatccgcaccctgggatccggtgtaatcatggatcaacgcggttatatcatcaccaataaacacgtcatcaacgacgccgatcagatcatcgtcgccttacaggatggacgtgtatttgaagcattgctggtgggatctgactctctaaccgatctggcggtacttaaaattaatgccactggcggtttacctaccattccaattaatgcacgtcgcgtaccgcacattggcgacgtagtactggcgatcggtaacccgtacaacctcgggcagaccattacccaggggattattagtgccacgggtcgaatcggtctgaacccgaccgggcggcaaaacttcctccaaaccgatgcttccattaaccacggtaactctggcggcgcgctggtgaactcgctgggcgaactgatgggcattaatacgctgtcgtttgataagagtaacgatggcgaaacgccggaaggtatcggctttgcgattcctttccagttagcaaccaaaattatggataagctgatccgcgatggtcgcgtgatccgcggctacattggtatcggcggacgtgagatcgcaccactgcacgcgcagggcggtggtatagatcaactgcaagggatcgtggttaatgaagtgtcacctgacggcccggcggcgaatgcgggtattcaggtcaacgatctgattatttcggtggataacaaaccggccatctctgctctggagacgatggatcaggtggcggaaattcgccctggttcggtgatccctgtagtagtgatgcgtgatgataagcagttaacgctgcaggtcaccattcaggaatatccggcaaccaattaagtcgtgcgctcaaaacaaaaaaccggagtctgtgctccggttttttattatccgctaatcaattacttattaacgaactcttcgcccagggcgatatctttcttcagcgtatccagcataccttccagcgcgttctgttcaaatgcgctcagggtaccgatagatttacgctcttccacgccgtttttacccagcagcagcggttgagagaagaaacgggcgtactgaccgtcgccttcaacgtaggcacattcgacaacgccttgttcgccctgcagtgcacgaaccagagacagaccaaaacgtgcagctgcctggcccatagacagggttgcagacccgccaccggccttcgcttcaaccacttcagtacccgcgttctggatgcgtttggtcagatcagccacttcctgctcggtaaaactaacgccaggaacctgtgacagcagcggcagaatggtaacaccagagtgaccgccaataaccggcacttcaacttcgcctggctgtttgcctttcagttccgcaacaaaggtgttggaacgaatgatatccagcgtggtaacgccgaacagtttgtttttgtcataaacaccggcttttttcagcacttcagcagcaattgcaactgtggtgttaaccgggttagtgataataccaatgcacgctttcgggcaggttttcgcaacttgctgtaccaggtttttcacgatgccggcgttaacgttaaacaggtcggaacgatccatacccggtttacgcgctacgcctgcagagataagaacgacatctgcgccttccagcgccggagtcgcatcttcaccagaaaaacctttgattttcacagcagtagggatatggctcagatcgacagccacaccgggagtcactggagcgatatcatacagagagagttctgaacctgaaggcagttgggtttttaacagtagtgcaagcgcctggccaataccgccagcagcgccgaggactgcgactttcatcctaaactccttattatattgataaactaagatatgttgctccgctgccgcgaccttaatccacaaaattgccgtttacaatgaccacatctcaagaatgtgtagtcacgcaagtttagcgtttatgcatttaattgccgtaatcaggaacctaacttacgtaattaacagtcgcttatgcattagcgcaacattccaacaggtggtgacaatataccctaccgttcagccaaaacaacatcaatttgataacaattaatttacttttaagcagaatttgcatgccgtgacgcaggcatgtttctcaataacgaaatttgataaaatcccgctctttcataacattatttcagccttcttcagggctgactgtttgcataaaaattcatctgtatgcacaataatgttgtatcaaccaccatatcgggtgacttatgcgaagctcggctaagcaagaagaactagttaaagcatttaaagcattacttaaagaagagaaatttagctcccagggcgaaatcgtcgccgcgttgcaggagcaaggctttgacaatattaatcagtctaaagtctcgcggatgttgaccaagtttggtgctgtacgtacacgcaatgccaaaatggaaatggtttactgcctgccagctgaactgggtgtaccaaccacctccagtccattgaagaatctggtgctggatatcgactacaacgatgcagttgtcgtgattcataccagccctggcgcggcgcagttaattgctcgcctgctggactcactgggcaaagcagaaggtattctgggcaccatcgctggcgatgacaccatctttaccacccctgctaacggtttcacagtcaaagacctgtacgaagcgattttagagctgttcgaccaggagctttaatctctgccccgtcgtttctgacggcggggaaaatgttgcttatccctctcaaccccctgctttcccctgcgattaatttaacgaatagtgcgttttactgcgacatgtcattcacacaatgaatacataaggtaaaaaaagcacattatgcaaaattcattatctaattgaaaaaactagaattaacgataaataaccgtatttttaattcttttttgttattaaaattcacatttttaacacttagtatcaactgaaacagttagcgcggtattaattagctcaataattagtgtatacttgattttgtgatatgggtcacgaaacaaaggcccagctaaaagattatgtcgaggtaaaaatcatgaaaatcaaaaccactgttgctgcattaagcgtactttctgttctctctttcggtgcattcgctgccgactccattgatgctgcacaagcacaaaatcgtgaagcaatcgggaccgtatccgtaagtggtgtggcgtcttcgccaatggatatgcgtgaaatgctgaacaaaaaagcggaagagaaaggcgcaacggcctaccagattactgaagctcgtagcggtgacacctggcacgctacggctgaactgtacaaataaaccctcatcgtcttgtccgacgatattgcccccggttcgggggcttttttttgcgctaatgacgaacattaaaacgcaaatgcccttccagctcttcctctgcctcatcaaacagcaatattaacgcgccaaaacggcgacgcgttttctctcccagatgaacaaattcaatctcaagtggtagcggcaggacatcgttcattaacacatcccatagtgagtcgagatcgcgtaccttatctttcgccagaccaaaggtttggctaaagtcacgataaaaatcctcctgactctcaatctcatcaaaatcaaaggtataaatattcatctgttgccaccgtcacgtttcgcggcgagttctgccgtgcatcgctaagtatagccatgaaaaaaccgacgcttttggcgtcggttttgacttaactatcggtcaacgcatgttgatacttatggagcatccccgccagccgatttaccggttccgtcacctgcggtggcgcttgccagatgcgtagcttttcctggtagatttccagttcttccagcaactggccaaagtaccgacgacgtttatcatcgctacgggcagatatcacatggtctgctgtgcggcgcatttgtcggtgaaacgccgataaatcctcgttaaccgggatcggtgcatcacgcaggcgctggtgcgcgataatcatcgtcagcgccaggcgaaatttcggcaaatcccctgggaacttattcatcagcaaaaacagctgctgataaagtgccgggaggtggttctctttacgacgtgccacattggtagtcatcgcggaaacagcggcagaaacaaactgattaagcagtacacgtccggtcctgtcgcgcgatttatcccgcaccagcaaaataacggtgaacgcgagcacacagccgacgatttgccctaatgcgctgtcgagaaactgactgaaatggaaagtcatcgggttatccagcacgataatatttatggtgctggccagtgcccccatcgagcccagtcgccgtttctgtacttctataccgaggaagaatcccagcactgccaggctaatgcacagcagcaacatgctctgttgggtattagggataatcaccaaaaagtagagcagccctaacggcagcgcggccagcgtcccgtagataaagtcgatcgccaccatgcgtggattcggcaaacgcattgccagtgacgtcactaccgcaatcatcaccattgcaccactgccggaagtccagcccgtccacagccagaaaagcgtgcccagaatgcaggaaagtgtggttcgccagaagttaaccattgcatgatgacgttcggctgactctacttttacttccggttcgccttgcaggatctcttcttcggtggcgttgatttttgtgttactgataacgccgcgcttgagaagctgataacgcgttgccgccgcgacccagctataaatggtgacaggcgtttcccgttccccggtccaggcgataactctccgcaggcgtttgagctgcttgtggacgtcctgcgcggtttctaccggcgtgtcaaaaaattcgcggaaagtatcagtgatcaattccgggcgcgtattctgaataagataagtttcgcaggattgggtaatcagcgtcagcgatagcgtattgatcgcttttaaacgtcgattggcccgcgcccagcgggaagattccatattcaggttgctgcgcatgccttgtagcgccgtggtgcgtcgcaccaggtcgccccaggctttatcgacaacttcaccatcgccatgcttgatacagagttgcattaattgatattgcgcgaccagcaaactttccagctctcgatccacttcttgtttgatcgatcgcggagaaaagagcaaatccgccataatcgcacacacaataccgataacgatctcgctacaacgttcgacggcaaactgcggcgtaagcaatggttccggctgaatggtgatcacaatgatcagcgcggtataaccggccagcccccacgcatacgagttttctattcgtaccagcgaggatatccaggtacaaaaaccggcccagatacagcacaccagaatcatcaataatggtgcgcggatcatcgcaatgatgatcaccagtccggcaatacagccaataaatgtgccgatgatgcgcaaaaagccacgatagcgaatagcgccagaatacggttcacctcccgcagcaaaggccgtaccggcggcaacaatcgccgctgtcagtaccgcccagcgtggcgtttccagctggaagtgaaagccaacaaacagcgccagtacaatggcggtcgccagttttaccgcaaagcgaatatgttggttagcaatggagaaaatacccatcgtgattaaccaaactcacgcaggcgatgggccattttacggaagaacgaatcctggctttcgtcgcgatcttgtttgccagtgaccaccactgtagcagtggtgcccgcaggccagatgttctcttgctggttgtcgagacgaatacgaaccggaacacgttgcgcaagacgcacccattcaaggttagagtctatagtcgccatccctttgtcgtcacgcgtgctgctggcgttggtgacccctgcggcaacactatcaacagtccctttcagcactttgttactgccaagcggcgtgatctctgcacgataccccggacgcaccccttccagcttagtttcttccatataggccagtacatagaaggagttctgtttcaccagcgcaaccgccgttgatcctcgagtaataaactcaccggtatagacgttgaggttggtcacccagccatctgctggcgcgcggatcaccgtgcgttcaagatccagttttgccagatcgcgggtcgcctgcgctttcgctaactgatgcagaaccgtttgtagtacgttgttggcctggtcgatctcttcgcgagacatcgcctgcacaccgagacggttacgacgtccggcctcctggcgtttctcctgtgccagtacctgataataagcaacatcggcttgcgcttcctcaagcgccttttgatagcgcggctggtcgatggtgaacagtatctgtccttttttcaccagctggttatcatgaacattcacctgggtaatgagtccagaaacgtccggcgcgatcgcaacgacgtcagcgctaaagcgcgcgtcacgcgtccagggggattcggtgtaatagacccaggcattaaaaattgcgatgaaggccagaatgactaatacgaccgtgatggccgtacgggagaattttcttattagtgttttcacttcaacctcaaacgaacagtcgcgatatcaaataaaacaagcagcaatagagcgcggtgttgaacaacgccggatgccagacaaagtcgtagatacctgttggcacaagtacccggcgcaccagccagaaaatcgccagtgataaaagcaattcaaaaaatatcggtgggaaggacagcccaaacaccacgataacgggaaacagactcatgttgaccttggttgtaaagagagagcaggcgttattattttcagcatctgtcgccgcagagaagggcatggaaagccgggcgagagcaacattgctgtagattgatatttaatatattagcgtaactgttatgctgttatctatattatgtgatctaaatcacttttaagtcagagtgaataatggaacgactaaaacgcatgtcggtgtttgccaaagtagttgaatttggctcttttaccgccgccgccagacagctacagatgagcgtttcgtccatcagtcagacggtatcaaaactggaagatgagttgcaggtaaagctgttaaaccgtagcacacgcagcattggcctgaccgaagccggtagaatttactaccagggctgccgtcgtatgcttcatgaagtgcaggatgttcatgagcaactgtatgccttcaataacacccccatcgggacgctacgcattggctgttcttcaactatggcacaaaatgttctcgccgggctgacagccaaaatgctgaaagaatacccaggtttgagcgtcaatctggttaccggaattccagcccccgacctgattgccgacggtctggatgtggtgatccgcgtcggcgcgttgcaggattccagcctgttttcccgccgtctgggcgcgatgccaatggtggtgtgcgccgcgaaaagctatctcacacaatacggcataccggaaaaacccgccgatttgagtagtcattcatggcttgaatacagcgtgcggcccgacaatgaatttgaactgatcgcaccggaagggatctcgactcgcctgatcccacaaggaagatttgtgactaatgatccgatgacgctggtgcgctggctgacggcgggtgccgggatcgcctacgtgccgctgatgtgggtgatcaacgagatcaatcgtggggagctggagatcctgctgccgcgttaccagtcagatccacgcccggtttatgcgttatataccgaaaaagataagctgccgctgaaggtacaggtcgtgatcaactcgctgacggattattttgttgaggtcggtaaattgtttcaggagatgcacgggcgcgggaaagagaagtaattcatattgtactgttacgttgtacaaacctgtgccaacgggttcccctcaccctaaccctcaccccaaagggcgaggggaccgttcgtgcacgtagaaagattaattatccttctgaaaatagtgaaattattacgcagtaccgccaacagtcaggttatcgactttcaacgttggctggcccacgccaaccggcaaactttgcccttctttaccgcagacacccacgccgttatccagtttcaggtcgttgccaaccatcgaaatctgctgcatggtttcgataccggaaccaatcaacgttgcgcctttcaccggcttcgttactttaccgttttcaatcagatatgcttctgaagtggagaaaacgaatttgccggaggtgatatccacctgaccgccaccaaagttcggtgcatagataccgtactcaacggattcaataatttcctgcggggtcgatttacccggcagcatataggtgttggtcatacgcggcatgggcagatgggcgtaggattcacggcgaccgttgccagtcggcgtcatccccatcaaacgcgcgttgagtttatcctgcatgtagcctttcagaatgccgttctcaatcagcacgttgtactggcctggcgtaccttcgtcatcaatcgccaccgaacctcggcgatcgaccatcgtgccatcatcaaccacggtacacagttctgaagccaccagctccccgacctgtccactaaatactgaagtgccacggcggttgaagtcgccttccagaccgtgaccaaccgcttcatgcaacagcacgcccggccaacctgcgccaagtactaccggcatggtgcccgctggtgcagcaacggcagaaagattgaccagcgccatacgcactgcttcttttgcccatgcatccgcacggacttcgccgtcgagatcggcaaggaagaattcataaccaaaacgaccgccgccgccactggcaccgcgttcgcgtttgccatcttcttcgacgagaacgctcacggaaagacgcaccagcggacggacatccgccgctagcgtgccgtcggtggccgcaaccaaaattaattcatagacaccactgaggctggcagtcacttcctgtacgcgcttgtccgcttcgcgggcaaccttatcgacgcgacgcaggatatccagcttctcttcacggctcatgctttgcagcggatctaccgaggtatacaacgggctatgctctaccgcgcccagcgtctgtactttaccatcaccactatcacggacgatggtgcgcgccgcttgcgcactctgttccagcgccagcaggctgatttggtcagcgtaagcaaatccggttttttcaccgctgattgcacgcacaccaacgccctgatcgatgttgtaagaaccatctttaataatgcggtcttctaaaacccaggattcgtgatagctcgactgaaaatagagatcgccataatcaaggcgacgttcggccagttgaccgaggatcgcgaacaagtcctgatgtttcaggccgttcgccgctagcaattgttcacttaccaggttaagactcatcgtttttgctactcgttagttactgcagtagaggattttttacggctgccggatgcggcgtgaacgccctatccagcctacggttatgttccggtttgtaggcctgataagacgcacagcgtcgcatcaggcaacggctgtcggatgccggcgtaaacgccttatccgacctacggttatgttccgtttgtaggcctgataagacgcacagcgtcgcatcaggcaacggctgccggatgccgcgtaaacgccttatccgacctacggttatgttccgtttgtaggcctgataagacgcacagcgtcgcatcaggcaacggctgccggatgccgcgtgaacgccctatccgacctacggttatgttctggctcgttggcctttggcaacgattatcctatgagattggggcaattacgcgccctcgtcaaatcattgcgctttttctttacgcggttggcgcaacacttcgttgatttgcggatcgtccagcggacccgaaatgtgatagcgcaaaatggagactttgctccacagcggccccagcactttactggcggcaaacactgccgcgccaacaatggggttaaccgcaaaagccgcagccacgcccaccgtcgcagaaatctctggtgcgacaaccgcttccatattcaggtcgcgacgtaccagatttaccgaccctttcatggcgatatccgcctccaggccatccaccagcgtgtcgtcggtgtgcataacgccgtctttaatccacgcggtgctgcgaatggagtcaaaatagaacccttcgccaaaagtgtctctgaaatcaaaacgcagcttacgcatcagggcatctacgctcaataagcgcagcaattgcccggcatgtccggtattgatttcggtaatttcgcctttacccagttgagtatgaatgatgccattcaacgtcgcttcatctggctgccagggtgctttgcgccagtgtaaatcgtaatccacattaaatgacgactggcgtatgggcgtcgtgacaccaaaaaattctgcggcggcatcaattttctgcccgcgcagttttcctttcagcgaggtacgttcattccccggattattaacccattcaccatcggcagtaagccgcgagaaaccagtatcaatcagtccattggtcagcgttaacgtatcgccagaaatggtgatatcactgtcaatgcgaccgaatttttgcccccagaaccagcactctgtgcatcgtatttgggcgtccggccagccacggaagttaatgcgctccgttgtcgggaaaggtgatgacggcgttgaatcaccacgagttttcgccacgctcgggttgtaataaagatatttgatattcgccagccacggcgcgttattacgcatcgctagcgtggcgttgatttcacgcccttgcgcttcaaccagggtgccatttgccgtcggttgcgaaacaatactcaggttattccattgctgatttcccagtgacaacataggcgtacgtaacgttatgtgttgtgggaaactcgctgcaccaccgacactctccgcagcgcctttctggaacagggccagccactcggcaccattcatcggcggcatattgagttcaacgccactttgttccggcaacggcgggagcgttttactgtctgccgcccaaatagcacgatcgagcgtcagcttttgaccgagcaaccagcggctattgaaatgattatccgcaccagcctgtccggttaattcaaagctgttgagattgccatcaaccttaacgtttaccgctagtggttcacccgcaggtttggctaacggtgaaggtaagtgactgctcacattctttagatcgccgttcagctctatgttataggtcgcaccagcatgataaggcagatcaatgcccactttaccatcccacgccacgctgccactcaatgcttcgttcaccgcttcaggcagaacgccggttttcgccggttgccagttaccgttgaggtttaccgctacctggtaggcttttgcccttctttggtggaaaaatccacgttcaacggctgattaaaccagcttgctgtcagtggttcactttgcagatcgctattgataaagctgaatttaccgctcaaatttttcagggtgctgtcgagtggtttgataaacagactgttattacgcagcgtcacttcacctttcgcggttaccagttcgccgttcagcgggatatcaagatgtaagcgagcattcacatcgccgtcgagctggagttcttgcagggtcgcacccagagaatctttcagcggtgtctcatcaaagtaagggccaacggctttacccggacctttaatgtcagcgtcaatcagcagtttttcttttgagtagtcagggatcactgcggtaagattactcgcgcgcacgccgcccagattaacgccatcggttttcatccataaaccgtcgttaataaagtccagttcaatatcaaggttagttaatgcaggccagtccggctggaaggcaaacttcgcgttgcgcagcggcaccagcacttcaaactgaccttcgttgtgtttataggggaagagttgcggattgccaccataaaccagcgtcgcgttatccgcttcaccgccctgaatcgcgccacttaagtaatcaaccaggtctttacccatcaagttttccgggaaatagcgccaggcttgtgaaccatcatcggtactgatgccagccagaatacccagccagggttcatcgttagcaggttgcaggtaacgaaaaccgccgcgcgcatggacggctttggctttaacgtcaatattacgcccatccagctggaaacctttgttattgttcagccagcttatagttgcctggccgtcggcgatttctagtggcgcacggaataccgtttcgtaaggcatctttgcctgcttcatcgacgcggtaagcaaaccattttcaacgctgccggaaagcgtcccggagaagtgttccgcacccggtaataatttccattgcttccaggccagatcgctccacgatgcctgaaaacgggtcttgtctgccgcctgaagcgggatatccagcgccagagtgttaatcttgccgctcggttgtgtggagcgccaaacatcacccagtgcaggtgaaagtttcgcggccaggcggcgtatcgcctccaggcctgccagctccagattactggcgcgaatccggagttcgtcactgcgtttattgtctttgccgccaacgtcctgttccggtatccaggccagcgtcaatgctccgctcggccagggtttgccgtccatcgtgatccgtgtatcgggaatagagaactgccagcccggattttcacgcgtaatatgcgcggtcagattatccaccgacagcgtatgcgtttgcttctcgcccaaccagctggcaccgccctgttttcagccagacgtcaccgccggttacatcgcctttgtcgatcgtcatccagccttcaagggagaactgtgccgtttccagcgcaatattgtcctgcatccatttaccgagccacggcttcaggtcgatgtcatccgcctggagccagacgcgaccattgcttaacaacccctcatcatcgcgcaaatccatgcgcacctgcatcacgccgtgctgtccggtaaggctggagaggcttaccaggccttccgcacggtgtcgacgtggatcgttcagccaggtgagttgtgggatcgccagctcggcgcgctgaccggatggcgtcaggaaactgacttcactgtcgcgaagatcgaaatggtcaaattgacgaagaaacagatcgctgatgtgactggcttccagactgtcatcactaccaccgctggtgataggagtgttggtgcgaaagcgcagctgccagaaagtgaggtcgcgaaactgccagcgcatatgtaacaggctctgccagacatccagcgccagagtaacgcgtttaaccgaaaattcgccgccatcttttagttctgcacggatgtcgtgtgcttcaagcgtcgggccaaaattctgccagctggctgagagctgactggcttctaccggcatgccagtcgcggattctattttgttgaggatttccggacgccaggcgtcaagatgcggtaaagcaatacgcaggccgctaaccagcagggcagcgatcacaacgagcgcggctccagtaagcagtaaaatccccggcaatcgcctcacccgtcactccttgtctgctaaaaatgtgactcaaaaaccctttgccggatggcggcccagcatctgtttacatcattacgacgtcaaactgctcctggttatagagcggttcaatttgtactttaacctgtttgccaacgaaaatttccacttccgccagcgagtgtgactcttcgcctttcaaggcttcagctactgccggagaagcatagaccaggaaacggtcggagtcgtaagcatggtggacacgaacaatctcgcgcatgatttcatagcataccgtttccacggttttcaccgttccgcgaccgtggcaggttgggcattcgttacacagtacgtgctcaatgctttcgcgggtgcgtttacgcgtcatctccaccagccccagcgccgaaaaaccattaacgctggttttcacccggtctttgctcaacgcctgctccagcgagtgcagcactcggcggcggtgatcttcattattcatatcgatgaaatcaataatgataatcccgcccagattacgcaaccgtaactggcgagcgatagcctgcgtcgcttcaatattggtattgaaaatggtgtcgtccagattgcgatgaccgacaaacgctccggtattgatgtccacggtggtcatcgcttcggtctggtcgataatgagataaccaccggatttcagttctactttgcgttccagcgctcgctggatttcgttttcgacatcaaagagatcgaaaatcggctggcgtcctgtgtaatgctccagcttgcttgtcatctcgggaatgtactccgaggtgaactcaagtaacgcttcgtaagtcaggcgtgagtcaacgcgaatgcggtccagttcggcatcggcgaaatcacgcagaacacgctgcgccagcgccagttcgccgtacagctgataacgggtctgcgggcgttttttacgctccataactttggtccagacgcgtttcagataagcggcatcggaggccagttcagcctcgccaaccccttccgctgcggtacggatgataaacccgccctgctcgtcgcaatactctgcgaccacttttttcaggcgttcacgttctgattcgctttcaatacgttgggaaaccccaacgtgagaagcccctggcataaacaccagatagcgagaagggagcgtgatatcggtggtcaggcgcgcacctttagtgccaagcggatctttcaccacctgcaccatcagatcttgcccctgacgaaccagttccgagatgtcgcgcaccgtgaattgcttttgttcttcacccgccacacattcggtgtgcggcatgatgtcggatgcatgaagaaacgcggctttatccagcccaatatctacaaaagccgcctgcatacccggaagtacacgacttacacgacccttgtagatattgcctactattccgcgtcgcgcctcacgttcaatatgaatttcctgcagaataccgccatcaatatacgccactcgcgtttccgaaggcgttacgtttactaacaattcagccgtcatgtttatcccttttctcacgcagtgcgttaaaattacttaataattcatacgtttcaaccagcggtaagccgactacggcgtgatagctgccatttatcttcctgacaaaacagccacccagcccctgaataccgtatgcacctgctttatctaacggttcatcgctggcgacatagcccgcgatgtcttcgtctgttaacgttctgaaagtcacatcggtgaccaccaggcaatcgagaatgtgctggctgtcggccaacgccactgctgtcatcacctgatgggtctgacccgataatttgcgcaacatctgcgccgcatgctctgcgtcgcgcggtttctccagcacttctccgttcaggataacgatagtatccgcacccagcaccgggagatccttcgccgtttgcgcgacacctgcccgtgctttctcgcgcgccagacgcacaacatactgctgcgcgctctcctgcggctgacgctgctcctcaatgcccgtaacaatacgttcaaaggtcacgccaagttgcgcaagtaactcctgacgacgcggagaaccggaagctaaatacagagaagtcatagaaacctttattgcactgcaaactgctgacggactttgcgcatcagcaagaaaatccacggccagagcaccccattgactacactactccagaacacttccggtctgaaagagacgttaatcactaaaaactctgcccagaaaacaataatatccaccaccagcgaaagcaacatgacgaccagcgcctgctgccataatgcgaggttgcggaaaagctggtatttcagcgccaccaggtaagcaatgatgctcatcgccaatacgcgtacgccaagcgtcgagccgctgatcagatccagtatggcacccatcacaaaacctgtgcccacatttacgcgatgaggcaaggccaggatccaatacaacaagatgagtaacacccagtttggccggaaaacaatcaggttatccggccagggcatgatttgcagcaacagcgcaatgaggaaagagagccagattacccagcgtccctggctacgatagctcgccactattgccctcccggcgcacgcgcaggcggttgagcaccactttgcggcggcgtagccctttgtggagagcgattagcagcaggctgtgtcggcgcagcaggcgcagtagctgcatttcctgtcgccggttgctgcggagtcggctgagcgatccccgttgccggttcaggtaactttggccccatcgcgtctggcgaaggcaatacctgcggcatcatctgcatcagacgttcattagcaacacgatgcacctcttccggcgtcatcgggttagcgccgttacgatctgccccccacagcagcagcagataacgcaaacgttgcagccctgcagtcggacgcgcctgaatcacagtataagcgcgctgggtatcgagttttacggaagagacaaccgcgaccggatagccttccgggaaacgaccgcccagaccggaagtcaccagcacatcaccaacacgaatatccgtattcgccggcagatgctcaagctgcaaatcatccgtacaaccgttaccggctgcaattacgcggatatcgttgcgcagcacctggattggcagcgcgtgggtcgcatcacaaatcagcagcacgcgactggtcagtttagcgacggccaccacctgaccaacaacacctttgtcgctgatgaccggctggccttcataaacgccattaacgctacctttatcgataacaacttgatcgctataaggatcgttaaccgtggagataacctgagtcaccattttctgctcatcctgacgcagcggggaacccagcagctcgcgcagacgcgcgttctcctgtttgtattgtccaagcatcagcagttcactgtttttcagcaacagttcctgacgtaacgcccggttttcaagttctaattggtcacgcgaggccagcgtctgcgatacgccatccagcaattcacgaggagcattggaaacaaagtagaaaggactgacggcggtatccatataagtacggatttgactgaacgtccccaggcggctgtcggcaataataatgccgagcgccaccagcaccgccagaataaggcgaatctgtagcgacgggccacggctaaaaattggcttcataagttatgcgtattctcgtatcagaccaggcagggtaaacagacacttcccctgcctgcatccgattactcttcgctgaacaggtcgccgccgtgcatgtcgatcatttccagcgctttgccgccaccgcgcgccacacaggtcagcgggtcttcagcaacaacgactggaatgccggtttcttccattaacaaacggtcaaggttacgcagcagtgcgccaccaccggtgagcaccatgccgcgctcggagatgtcggaagccagttccggcgggcactgttccagtgcaaccattaccgcgctcacaataccggtcagcggttcctgcagtgcttcgaggatttcattggagttcagggtaaaaccgcgtggaacaccttctgccaggttacggccacgaacttcgatttcacggacttcatcgcccggataagccgaaccgatttcgtgcttgatacgttctgcggtggcttcaccgatcagagaaccgtaattacgacgcacatagttgatgatagcttcgtcgaaacggtcaccaccaatgcgcacagaagaggagtaaaccacaccgttcaaggagataacagcaacttcagtggtaccaccaccgatatcaaccaccatagaaccggtcgcttcagaaaccggcaggccagcaccaattgcggcagccatcggttcttcaatcaggaagacttcacgggcaccagcgccctgcgcggattcacgaattgcgcggcgttcaacctgggtcgcgccaaccggcacacaaaccagaacgcgcgggcttggacgcataaagctgttgctgtgcacttgtttgatgaagtgctggagcattttttcagtcacgaagaagtcggcgataacgccgtctttcattgggcgaatggcagcaatattgcccggcgtacggcccagcatctgcttcgcgtcatgacctactgcagctacgcttttcggtgaaccggcacgatcctgacgaatggccaccacggaaggctcattcaatacgatgccttgtccttttacataaatgagggtattcgcagtacccaggtcaatggacaagtcattggaaaacatgccacgaaattttttcaacatactaagggataatcctgaaagctggggcggaaaagaaaatccgcttactttaccaaccacacgcagcagcgacaaggcgcaaaaatcatctgctacggtgaaaattagtgcagttcgtttcctttgttacaaatctctgcctgagtccagaaaggcttaatgcatcagcagcattcctcgcctgtttgcaaccgcgtaaggtcattcatctgcatatgtgctgcaacaatctggcgagcagacaagcacactcccatgagacgcagcgcgcattattctacgtgaaaacggattaaacggcaggttaaaccgagtatctttgtgaatattttttcacgttagtatcaagtggctgtgaggacgcgaaaaaatccccttgcccgcctgtaacaccgcgctgaatcagggtctgccactcgcttcgcgaacgcacgccggtggcgtaaacctgggtgctggtcccggagcaggcttccaccaggctttgaaccagcagctggttctccgttcgcttctcaatgtttctgaccagccccggatggagcttgagtaactcaacattaagttctttgatccaactggtacttaccagcgtcaaaccagcctggttgacggctacccgtacccctaaagcattcactaaacgaataacaggttgtaaacgactgatatgttgacctacatcggcctctgcaagttcaataattatgcgttttcgttgtgatttttcacattgcattaacgtatcgcgcagccaacgctgaaaacgcgggcgaatcagcgactcaacggtaacctgaatcgccagattttcctctggccagtaacgcaatagtggaataagacggctgatttgcagacggtcatactcttccgataagccaaactgcaagaccatcggcatatactccgccgagctaacctcttcattaccatcgaagatgcggcacatgagttcgcgatgatgaacctgaccttcgcgagtaaccgccggtttttgataaaggcgcgggccgccgcgactgagcatttgctcgataagcgtacgccagcgaacattaccgcgtcctttttcaggcaacgagtcatcgtaaatagcccagctattgccgccctgcaatcccgcattacgcgtggcagactctgcatgttccattacctgctcggtatcctgaccactacgccaggcgcagataccaatgtggatcatatcgtcgcgatcgagcattttattgttcggcaaggtatcaacggctttgattaactgaccggcgatgctctctgcctcttttaacgtccggtgcggtaacagcgcagcaaaatcactgcggtggtaacgcgccagcagtgcgccagggtagcgcatcataaatgtcgacagcagattcgtcagagtgaagaactgttcttcaacctggctgtgcccccaggtatcgctcaacatattgaaatccggcagacgaatcatcatcacgatcccgtgggtacctactttctcctgatcttccagtaacgttgctaactgattatcgaaaaagagtcggttattgaggccggttttcacgtcctgggcggcataagagcggatcagcgtatcaagacggctgtgttgttcgcgtgcgttctgaatttcacgaagcagcgtatccagcgcactgctggttctgggcggccattcatagatggttcccaacacattagagccacgctcaccgtttaagatacgagtagcccgggtttccagcaattcttgcccggcaagttgccgttgtaaccagcgtaccgccaggaagagcataacaatgataaagccaatcgcccccgtgagcggcgcggtggtcatcaacgaatggaaatagttgcccatcggatcctgataaaccagacgcaacgacatccccggatgctttatcaacggaacgctcagttcgcgaaacagatcgctggagccaactggacgataactaccatttctggccagggtataaacctgtttatcaccatggagcaggtctacacgaacgatatctgccgacatcattaattcggtaatttgtggccttaatacgctgaagtcattcgacacaaggtgggtatcaatcgccgtcgccaccgcctgaacgcgatgactaaacttatactgaatggcgttgtagaaacttagcgaacagcccagcaaagtcacaaaaattgttaacccggtgagcagcgtaacaaaggccgaaaatttcgtcgttaatctcatccttgtgttaactccgatagtgaggaagcgggcatactagcaaatcagatttatctcgcaatttattgcgcttcatcggctttgcttttccattagcgagtatagtcttcagaaattattttccaatccatcatgcacatgaggaccacttatgcaggcgttacttttagaacagcaggacggcaaaactctcgcatcagtacagactctggacgaaagtcgcctgccggagggcgatgtcacggtcgatgttcactggtcgagcctgaactataaagatgcgctggcgattaccggtaagggaaaaatcatccgtaattttccgatgattcctgggatcgattttgccggaactgtacgcaccagcgaagatccgcgttttcatgccggtcaggaggtgttactcactggctggggcgttggtgaaaaccactggggtgggctggcggagcaggcgcgagtgaaaggtgactggctggttgccatgccgcaagggctggacgcgcgtaaagcaatgattatcggtactgccggttttaccgccatgctgtgtgtgatggcgctggaagatgccggtgttcgcccgcaggacggggagattgtcgtgacgggtgccagtggtggcgtcggcagtaccgccgtggcgctgctgcataagttgggttatcaggtcgttgccgtttccggtcgcgaaagtacccatgaatatctgaaaagtttaggtgctagccgtgttctccctcgtgatgagtttgccgaatcccgtcctctggaaaaacaagtctgggctggggcaattgacaccgttggcgacaaagtgctggcaaaagtgctggcgcaaatgaattacggcggctgcgtggcggcctgtggtctggcgggtggttttactctgccaaccacggtcatgccatttattctgcgtaatgtccgtttgcaaggggtggattcagtaatgacgccaccagaacgccgcgcacaagcctggcagcgactggtcgccgatttaccggaatcattctatacccaggcggcaaaagagatatctctgtcagaggcaccgaactttgccgaggccatcattaataaccagatccagggtcgcacgctggtgaaggttaactaaccatttagcagggaataataagagagggaactcattttgaaatcattattcaatcggttaacgggaaaagcggttagccggacagctttcgtcgaacaccttggtcaggaagttatacaacatcatccaaactggaaagtcatgatttcgactgaccacaaattgatgcgcattgatactccactaaacagctattattgatacgcctccgtcgcctgttaggtttatgttgctttgcctgggcgacgctacgcttagccccttacttatttctggtaccatggggtgaataatctgattttgtttgactacaaattaatcactcgaacctatttaatgctgagcattgtcaatcggttaattttgcgtgctttagcattcacatctatccagacgatgcagtgaaaattgggtaatccccagcaaccgctgcgtaatgtcgtctatcttgtcgcgatcctggcatccctacattatttgtggtctgtgaagattatctcattgcagcccctcatcttcgcagggctggcttttcagcttttcaccttacgttataagaagttccgtcgatgatggcgctaatttcgtgaattgtgcggcttgttgcaaattacacggtgttgaaggttatttacatgttagctgttgattatcttccctgataagaccagtatttagctgccaattgctacgaaatcgttataatgtgcgacctcgtcctccctgacgcagtttttgcgctgcggaaaaggtgacattggcgcaacgaaggtatattttgttttttgccggaggatagcagcagatcgctgcacaatgtccgtcaagtctaacattgacactctggggcaaaatagaccggcgtcccggcctgctggaatttatcgctatgcatacagctgtcggggcatacgctttacagacggcggtgaaacgcctgtcacaatcacactaaacaaagagtacggaacccactcatggatattcgtaagattaaaaaactgatcgagctggttgaagaatcaggcatctccgaactggaaatttctgaaggcgaagagtcagtacgcattagccgtgcagctcctgccgcaagtttccctgtgatgcaacaagcttacgctgcaccaatgatgcagcagccagctcaatctaacgcagccgctccggcgaccgttccttccatggaagcgccagcagcagcggaaatcagtggtcacatcgtacgttccccgatggttggtactttctaccgcaccccaagcccggacgcaaaagcgttcatcgaagtgggtcagaaagtcaacgtgggcgataccctgtgcatcgttgaagccatgaaaatgatgaaccagatcgaagcggacaaatccggtaccgtgaaagcaattctggtcgaaagtggacaaccggtagaatttgacgagccgctggtcgtcatcgagtaacgaggcgaacatgctggataaaattgttattgccaaccgcggcgagattgcattgcgtattcttcgtgcctgtaaagaactgggcatcaagactgtcgctgtgcactccagcgcggatcgcgatctaaaacacgtattactggcagatgaaacggtctgtattggccctgctccgtcagtaaaaagttatctgaacatcccggcaatcatcagcgccgctgaaatcaccggcgcagtagcaatccatccgggttacggcttcctctccgagaacgccaactttgccgagcaggttgaacgctccggctttatcttcattggcccgaaagcagaaaccattcgcctgatgggcgacaaagtatccgcaatcgcggcgatgaaaaaagcgggcgtcccttgcgtaccgggttctgacggcccgctgggcgacgatatggataaaaaccgtgccattgctaaacgcattggttatccggtgattatcaaagcctccggcggcggcggcggtcgcggtatgcgcgtagtgcgcggcgacgctgaactggcacaatccatctccatgacccgtgcggaagcgaaagctgctttcagcaacgatatggtttacatggagaaatacctggaaaatcctcgccacgtcgagattcaggtactggctgacggtcagggcaacgctatctatctggcggaacgtgactgctccatgcaacgccgccaccagaaagtggtcgaagaagcgccagcaccgggcattaccccggaactgcgtcgctacatcggcgaacgttgcgctaaagcgtgtgttgatatcggctatcgcggtgcaggtactttcgagttcctgttcgaaaacggcgagttctatttcatcgaaatgaacacccgtattcaggtagaacacccggttacagaaatgatcaccggcgttgacctgatcaaagaacagctgcgtatcgctgccggtcaaccgctgtcgatcaagcaagaagaagttcacgttcgcggccatgcggtggaatgtcgtatcaacgccgaagatccgaacaccttcctgccaagtccgggcaaaatcacccgtttccacgcacctggcggttttggcgtacgttgggagtctcatatctacgcgggctacaccgtaccgccgtactatgactcaatgatcggtaagctgatttgctacggtgaaaaccgtgacgtggcgattgcccgcatgaagaatgcgctgcaggagctgatcatcgacggtatcaaaaccaacgttgatctgcagatccgcatcatgaatgacgagaacttccagcatggtggcactaacatccactatctggagaaaaaactcggtcttcaggaaaaataagactgctaaagcgtcaaaaggccggattttccggccttttttattactggggatcgacaacccccataaggtacaatccccgctttcttcacccatcagggacaaaaaatggacactcgttttgttcaggcccataaagaggcgcgctgggcgctggggctgacccttttgtatctggcagtttggttagtagccgcttacttatctggcgttgcccccggttttaccggctttccgcgctggtttgagatggcctgcatcctgacgccgctgctgtttattggactgtgctgggcgatggtgaaatttatctatcgcgatatcccactggaggatgacgatgcagcttgaagtaattctaccgctggtcgcctatctggtggtggtgttcggtatctcggtttatgcgatgcgtaaacggagcaccggcaccttccttaatgagtatttcctcggcagccgctctatgggcggtattgtgctggcgatgacgctcaccgcgacctatatcagtgccagttcgtttatcggcgggccaggagctgcttataaatacgggctgggctgggtattgctggcgatgattcagcttcctgcagtctggctttcactcggtattctcggcaagaagtttgcgattcttgcgcgccgctacaatgcagtgacgctgaacgatatgctgtttgcccgctaccagagtcgtcttctggtgtggctggcgagtttgagtttgctggttgcgttcgttggtgcgatgaccgtgcagtttatcggcggtgcgcgcctgctggaaaccgcggcgggtattccttatgaaaccgggctgctgatttttggtatcagcattgcgttatataccgcctttggtggctttcgcgccagcgtgctgaacgacaccatgcaagggcttgtgatgctgattggcaccgttgtgctgcttattggcgtagtacatgccgctggcggcttaagtaacgcagtacagaccttgcaaaccatcgatccgcaactggttacgccacaaggcgctgacgatattctgtcgcctgcctttatgacgtcgttctgggtactggtgtgttttggcgtgattggcctgccgcatactgcggtgcgctgtatctcttataaagacagcaaagccgtacatcgggggatcatcatcggtacgattgtggtcgcaattctgatgttcggtatgcacctggccggagcgttaggtcgggcggtgatccccgatctcaccgtaccggacctggtgatcccaacgttaatggtaaaagtgctgccaccgtttgctgccgggatcttcctggctgcaccgatggctgcgatcatgtcgacaattaacgcccaactgctgcaaagttccgctacgatcattaaagatctctatctgaatatccgtccggatcaaatgcaaaacgagacgcgtctgaagcggatgtcggcggtaattacgttagttctcggcgcgttgctgctgcttgccgcctggaagccgccagaaatgatcatctggctgaatttgttggccttcggtgggctggaagccgttttcctgtggccgctggtgctgggtctttactgggaacgcgccaacgccaaaggcgcgctaagtgcgatgatcgttggcggcgtgctgtatgccgtactcgcgacgctgaatattcagtacctgggcttccaccctatcgtgccctcgttactactaagtttgctggctttcctggtcggaaaccgtttcggtacatccgtcccgcaagctaccgttttgactactgataaataaagagttttgccatgccttggatccaactgaaactgaacaccaccggcgcgaacgcggaagatcttagcgatgcgctgatggaagcgggtgccgtttctatcacttttcaggatacccacgatacgccagtatttgaaccgctgccgggcgaaacgcgcctgtggggcgacaccgatgtgattggtctgttcgacgctgaaaccgatatgaacgacgtggtggcgattctggaaaaccatccgctgctcggcgcaggcttcgcgcataaaatcgaacaactagaagataaagacctgggagcgcgaatggatggataatttccacccgatgcgctttggtgaacgactgtggatctgccctagctggcgtgatgtgccggacgaaaacgccgtcaacgtgatgttagatccagggctggcgtttggtacgggtacccatccaaccacctctctgtgcctgcaatggctcgacagcctcgatttaaccggtaaaacagtcatcgactttggctgtggttccggcattctggcgatcgcggcgctgaaactgggtgcagcaaaagccattggtattgatatcgatccgcaggcgattcaggccagccgcgataacgccgaacgtaatggcgtttctgaccgtctggaactctacttaccgaaagatcagccagaagaaatgaaagccgacgtggtggtcgctaacatccttgcaggcccattacgtgaactggcaccgttaatcagcgtcctgccggtttcaggcggtttgctgggcctttccggtattctggcaagccaggcagagagcgtttgtgaagcttatgccgatagcttcgcactggacccggtcgtggaaaaagaagagtggtgccgtattaccggtcgtaagaattaaccttcgcatcgccgtagggtgacgcggggcgaagtgcgagcaagctcacaaaaggcacgtaaatttgccgattatttacgcaaatttgcgtgccaaaattttcattcataaagaaaaattgagaacttactcaaatttctttgagtgtaaattttagtcactattttctaatatgatgatttttatgagtaattatcgcaccacgctcattttaaatgcaattctttgatccatctcagaggattggtcaaagtttggcctttcatctcgtgcaaaaaatgcgtaatatacgccgccttgcagtcacagtatggtcatttcttaactcatgcgcatcggacaatatcagctcagaaatcgcctgatcgcagcgcccatggctggcattacagacagaccttttcggacgttgtgctacgagatgggagccggattgacagtatccgagatgatgtcttctaacccacaggtttgggaaagcgacaaatctcgtttacggatggtgcacattgatgaacccggtattcgcaccgtgcaaattgctggtagcgatccgaaagaaatggcagatgcagcacgtattaacgtggaaagcggtgcccagattattgatatcaatatgggttgcccggctaaaaaagtgaatcgcaagctcgcaggttcagccctcttgcagtacccggatgtcgttaaatcgatccttaccgaggtcgtcaatgcagtggacgttcctgttaccctgaagattcgcaccggctgggcaccggaacaccgtaactgcgaagagattgcccaactggctgaagactgtggcattcaggctctgaccattcatggccgtacacgcgcctgtttgttcaatggagaagctgagtacgacagtattcgggcagttaagcagaaagtttccattccggttatcgcgaatggcgacattactgacccgcttaaagccagagctgtgctcgactatacaggggcggatgccctgatgataggccgcgcagctcagggaagaccctggatctttcgggaaatccagcattatctggacactggggagttgctgcccccgctgcctttggcagaggttaagcgcttgctttgcgcgcacgttcgggaactgcatgacttttatggtccggcaaaagggtaccgaattgcacgtaaacacgtttcctggtatctccaggaacacgctccaaatgaccagtttcggcgcacattcaacgccattgaggatgccagcgaacagctggaggcgttggaggcatacttcgaaaattttgcgtaaacagaaataaagagctgacagaactatgttcgaacaacgcgtaaattctgacgtactgaccgtttctaccgttaactctcaggatcaggtaacccaaaaacccctgcgtgactcggttaaacaggcactgaagaactattttgctcaactgaatggtcaggatgtgaatgacctctatgagctggtactggctgaagtagaacagcccctgttggacatggtgatgcaatacacccgtggtaaccagacccgtgctgcgctgatgatgggcatcaaccgtggtacgctgcgtaaaaaattgaaaaaatacggcatgaactaattcaggttagctaaatgcttgattaaaaaggcgctactcggcatggggaagcgccttttttataggtgtcacaaagggagtgaccatgagaacaggatgtgaaccgacccggtttggtaatgaagctaagaccattattcacggtgatgcgcttgccgaacttaaaaagatccccgccgaaagtgtcgatctgatctttgccgacccaccatataacatcggtaaaaattttgatggtctgatcgaagcctggaaagaagatctgtttatcgactggctgtttgaagtgattgcagagtgccaccgcgttctgaaaaagcagggcagcatgtacatcatgaacagtacggaaaacatgccctttatcgatctccagtgccgcaagctttttaccatcaaaagtcgcatcgtctggtcatatgacagttctggagtgcaggcgaaaaaacactacggctccatgtacgaacccatcctgatgatggtgaaagacgcaaagaactacacattcaacggtgatgctattctggtagaagccaaaaccggatcgcagcgcgcgttgatcgattatcgcaaaaatcctccacagccttacaatcatcaaaaagtaccgggtaacgtttgggattttccgcgcgtgcgttatttgatggatgaatatgaaaaccacccgacgcaaaaaccggaagccttactgaaacgcattattctcgcctcttccaacccaggcgatatcgttctcgacccgtttgctggtagctttactaccggtgccgtagccatcgccagcggacgaaaattcattggtattgagatcaacagcgagtacatcaaaatggggcttcgacggctggatgtcgcgtcgcattactctgcggaagaactggcgaaagtgaaaaaaagaaagaccggcaacctgtcaaaacgaagccggttaagcgaagttgaccccgatctcattacaaagtaaaggatgtgtaagcctggttttcagattattcatttcgtgtatatttcctgccagacttggttaaacatgcacaggctcaggtaatgattcgcaagtattggtggctcgtcgttttcgctgtcttcgtttttctgtttgatactttactgatgcagtggattgaactgctggcaacagaaacagacaaatgccgcaatatgaactcagttaatccactaaaactggttaactgtgacgaactgaattttcaggacagaatgtgaatttacatgacacttaattcattcgtttgatgaattaatttcgttatgttttcatctggcatgaacattcttaatacgttatcgaccagagcgggggcttgtttataaagatcataacccgccatattcattaaccagttttgaacaattccgctgaaggcaccatcaataataatcatcacaacatctaaatcgaggttatttgctacacaaccttgttgctgacacgcctgcaatacttcgcggagagtctgcggattaaagcccatcttttcgcgtatcactccctcggccagcatctcatcattaaattcacatttgtgatataagattttcagcaacgcctgctggcggggaattttggcaatatattgcaagccgacaatcaatttttcacgcaattgttgaaacgggtcatgctctaatccagccgtcaagtgttcctggattaactcccgcaatgaaggctgttgcaaccacatctcattaaacagttgagtcttgttttcgaagtgccagtagatagcgccacgcgtaacgttagcggcgtcggcaatgtcgttgagcgtcgtcttgcttacgccatgctgcgcaaactgggcgatggcagtttcaatcagttcttgccgggtcttcagagcttcggctttggttctttttgccatgattaattattcaggaaataaatatattcgacacagagtgagaaaatagcgaaggttaatctatcacctaatgtgtatttatacgagaggctaatattgagttgctataaatcgttaaataaataatatatattatttacctaagatacattcactacatcaatatatatttcaatttacgaggttttaattctgcctctttcaacccgcgtcaaaataaaacagtagaatattaatctttttttgtgtttatgtgccttgagatgcctgtattcataactattccttacatcgacgaatgataatttgtaggatagcgaactgtatttttctttctgcgagttaacgcgttgcctttttgggtaaataacgcgcttttggttttttgaggaatagtaatgacgaaacatgccaggtttttcctcctgccctcctttattctgatctccgcggctttaatcgccggttgtaacgataagggagaagagaaagctcacgtcggtgaaccgcaggttaccgttcatattgtaaaaacggccccgttagaagttaagactgaattaccaggccgcaccaatgcttatcgtatagccgaagttcgcccacaggttagcgggatcgtactgaatcgcaatttcactgaaggcagcgatgtgcaagcaggccagtccctgtaccagatcgatcccgcgacctatcaggcaaattatgacagcgcgaaaggcgaactggcgaaaagtgaagccgccgccgccatcgcgcatttgacggtaaaacgttacgttccgctcgtgggtacgaaatacatcagccagcaggagtacgaccaggccattgctgatgctcgtcaggccgatgccgccgtgattgccgcaaaagccacagtcgaaagcgctcgcatcaatcttgcttataccaaagtcactgcgccaattagcggacgtatcggcaaatcgactgtgaccgaaggcgctcttgtcactaatgggcaaacgactgaactggcgactgtccagcagctcgatcctatctacgttgatgtgacccaatccagcaacgattttatgaggctgaagcaatccgtagagcaaggaaatttgcataaggaaaacgccaccagcaacgtagagttggtcatggaaaacggtcaaacctatcccctgaaaggtacgctgcaattctccgatgtgaccgttgatgaaagcaccggctccataaccctacgtgctgtcttccctaacccgcaacatacgcttttgccgggtatgtttgtgcgtgcacggattgatgaaggcgtccaacctgacgccattcttatcccgcaacaaggcgttagccgcacaccgcgtggtgatgcaaccgtgctgattgttaacgataaaagtcaggttgaagcgcgccctgtcgttgccagtcaggcgattggcgataaatggttgattagtgaaggactgaaatctggcgatcaagtcattgtcagcggcctgcaaaaagcgcgtccgggagagcaggttaaagccactaccgatacccccgcagatactgcatcgaagtaaggtaatctgacatggcaaacttttttattcgacgaccgatatttgcatgggtgctggccattattctgatgatggcgggcgcactggcgatcctacaattgcccgtcgctcagtatccaacaattgcaccgcctgcggtttctgtttcagcaaactatccgggcgctgatgcgcagaccgtgcaggatacggtgacgcaggttatcgaacagaatatgaacggtatcgataacctgatgtatatgtcctccaccagcgattccgccggtagcgtgacaattacccttaccttccagtccgggaccgatcctgatatcgcgcaagtgcaggtgcagaacaaactccagctcgccacgccgttgctgccgcaggaggttcagcagcaggggatcagtgttgaaaagtccagtagcagctatttgatggtggcgggctttgtctctgataacccaggcaccacacaggacgatatctcggactatgtggcctctaacgttaaagatacgcttagccgtctgaatggcgtcggtgacgtacagcttttcggcgcacagtatgcgatgcgtatctggctggatgccgatctgctaaacaaatataaactgacaccggttgatgtgattaaccagttgaaggtacagaacgatcagatcgctgccggacagttgggcggaacgccagcgttaccagggcaacaattgaacgcctcgattattgctcagacgcggtttaaaaatccggaagaattcggcaaagtgaccctgcgcgtaaacagtgacggctcggtggtacgcctgaaagatgtcgcacgggttgaacttggcggtgaaaactataacgttatcgctcgtatcaacggaaaaccggcggcgggcctggggattaagctggcaaccggcgcgaatgctctcgataccgcgaaagccattaaggcaaaactggcggaattacagccattcttcccgcagggaatgaaggttctctacccttatgacaccacgccattcgtccagctttctattcacgaagtggtaaaaacgctgttcgaagccattatgctggtgttcctggtgatgtatctgttcttgcagaatatgcgagcaacgctgatccccaccattgcggtacccgtggtgttgttagggacgtttgccatcctcgccgcttttggttactccatcaacacactaacgatgttcgggatggtgcttgccatcgggctgctcgtcgatgatgcgatagtggtggtggagaacgtcgagcgcgtgatgatggaggataagctcccgccaaaagaagcgacggaaaaatcgatgtcgcaaattcagggcgcactggtgggtatcgcgatggtgctgtcagcggtatttattccgatggcattcttcggcggttctactggggcaatttatcgccagttctctatcaccatcgtttcggcaatggcgctttctgttctggtggcattgattcttacccctgcgttatgtgcaacgctgcttaaacccgtctctgctgagcatcacgaaaataagggcggtttcttcggttggtttaataccaccttcgatcatagcgttaaccactacaccaacagcgtcggcaaaatcctcggatccacaggacgatatttactgatctatgcgctgattgttgcaggaatggtggtgttgtttttacgtcttccgtcttccttcttacctgaagaggatcagggtgtctttctgaccatgattcagttacccgctggcgcgacgcaagagcggacgcaaaaagtgttggatcaagttacggattactatctgaagaacgagaaagcgaacgttgaaagtgtctttacggttaacggctttagcttcagcggccaggcacaaaacgccggtatggccttcgtcagtctgaaaccgtgggaagagcgtaatggtgacgaaaacagtgcggaagcggtaatccatcgtgccaaaatggaattgggcaagatccgcgacggttttgtcattccattcaatatgccagccattgttgaactgggcacggcaacgggtttcgactttgagttaattgatcaggctgggctgggtcacgatgccctaacccaggcccgtaaccagttgcttggtatggcggcgcaacatcctgccagcttagtcagcgtgcgccctaatggcctggaagacaccgcgcagtttaaactggaagttgaccaggaaaaggcgcaggcattaggtgtttcactttctgacatcaatcagaccatttcaacggcgctgggtgggacttacgttaacgacttcatcgaccgtggccgcgtgaaaaagttgtatgttcaggcggatgccaaattccgtatgctgccagaagatgtcgataaactttatgtccgcagcgccaacggcgaaatggtgccattctcggcctttaccacttcacattgggtgtatggctctccgcgactggaacgctacaacggtctgccgtcaatggagattcagggggaagccgcgccaggaaccagttccggcgatgccatggcgttgatggaaaaccttgcgtcaaaattacctgcgggcattggttatgactggacgggtatgtcgtatcaggaacgcttatcgggaaaccaggctcccgctctggtagcaatttcctttgtggttgttttcctgtgccttgctgcactctatgaaagctggtcaattcctgtctcggttatgttggtagtgccgttagggattgtcggcgtgctgctggcggcgacactctttaatcaaaaaaatgacgtctactttatggtgggcttgctaacgacaattggcttgtcggccaaaaacgctattttgatcgttgagttcgctaaagatctcatggagaaagagggtaaaggtgttgttgaagcgacactgatggcagtacgtatgcgtctgcgtcctatcctgatgacctctctcgcctttattctcggcgtattaccgctagctatcagtaacggtgccggcagtggcgcgcagaacgctgtgggtatcggggtaatgggaggaatggtctctgcaacgttgctggcaatcttcttcgtaccggtgttctttgtggtgatccgccgttgctttaaaggataaatcagaaacataaaggcgctttcgggtgcctttattatttccagtgaaacccataaaaattaataagatattcttctgctcactctttaaaagctttctatagttcccgctcccttcactatttttacaattcacataatttgtcattattcattccgcaagatttataacctccggtgataaaatggcattcagctcgttaataagagagttaacttattaagcgttagcgtttattactgaggtaacaccatgaaaagattaattcctgtggcattgctcaccgcattgctggcgggctgtgctcacgattcgccctgcgttccggtttatgacgatcagggtcgtctggttcacaccaatacctgtatgaaaggcacgactcaggataactgggaaacggctggggctattgccggcggggcagctgctgttgctggcctgacgatggggatcatcgctctatcgaaataactgaacagggcgcggagttccgcgctctttttaacgatacagtatctctccataagataaaatattgctatattctgctgggtaattccctgctgatttagcatgttacatcgcgttatttcgctgctttcgaaataacgcatcaatttaattttcacacttcccaccagaaatatactcacgctaacaatcattattctgcttagtaaaacacgcgtaaatattttgcgccaaaatgtggcgcatgtttcattttcgcaccattgcggggcgctgtttttattatttcctgtctacactcagcttattgcgacgcgaaatcgtgcgcaaaagctggcactacttttgcttataagaggatggccacagacaggtaaaagacgtttcccaaacgtcctataacgataattttcgcctcacaggaagcattatgaaaaagatgatgatagccacactggctgccgccagcgtgctgcttgccgttgcaaatcaggcgctgctggcgcgacgcttgatgccgttcagaaaaaaggttttgtgcaatgcgggatcagtgatggattacctgggttctcttatgccgatgctgacggtaagttttcaggtattgatgttgatatttgtcgtggtgttgccgctgctgtatttggtgacgacacgaaagtgaaatataccccgctcactgcaaaagaacgcttcaccgctttacagtcaggggaggtggatttgctctcccgtaatacgacctggacttcatctcgcgatgccgggatgggaatggcatttaccggcgtcacttattacgacggcattggcttcctgacgcacgataaagcggggctaaaaagcgcgaaagaactggatggcgctaccgtctgtattcaggcgggtactgataccgaactcaacgtcgccgactacttcaaggcaaacaatatgaagtacacaccggtgactttcgatcgctctgacgaatcagcgaaggcactggaatctggtcgctgcgatacgctggcctcggatcaatcacaactgtatgccctgcgcatcaaattaagcaacccagctgaatggattgtcttaccggaagttatctcaaaagaaccgcttggtccggtagttcgtcgtggcgatgatgaatggttctcgattgtacgctggacgcttttcgccatgctgaatgctgaagagatgggcatcaattcccagaacgtcgatgaaaaagcggctaatccagcaacgcctgatatggcacatctgctgggtaaagaaggcgattacggcaaggatctgaagctggataataaatgggcctataacatcatcaaacaggtgggtaactactcggaaatttttgagcgtaacgtaggttcagaaagcccgctgaaaattaaacgtgggcaaaataatctctggaataacggcggtattcagtacgcaccgcccgtgcgttaagtcggtgtgaggtaacgagcgtcgctacggcggcgctctcttcagcgttatgctttccgaggtttctatgtctcatcgccgctcaaccgttaaaggctcactctcttttgccaaccctacggttcgcgcctggttattccagatccttgccgttgttgctgttgtcggcattgttggttggttatttcacaacactgtaacgaatctcaataatcgtggcattacttcaggttttgcctttctggatcgcggcgctggcttcggtattgtccagcatttgatcgattaccagcagggcgacacctacggacgcgtttttattgtcggcttactcaatacgctactggtttctgcattgtgtattgtgttcgcttctgttttgggcttctttatcggtctggcgagactttcggataactggctgctacgaaagctttccacaatttatattgagatcttccgtaatattcccccgctgctgcaaatcttcttctggtactttgccgtgttgcgcaatttgcccggaccacgccaggctgtgagcgcgtttgatctggcctttttgagcaatcgtgggctttatattccgtcaccgcagctgggagacggatttattgcgtttatcctggctgttgttatggctatagtcctttctgttgggctattccgctttaataaaacataccagataaagaccggacaactgcgccgcacctggccgatcgccgcagtgttgatcattggtttgcctttactggcgcaatggctttttggcgcagcactacactgggatgtcccagccctacgaggctttaacttccgcggcgggatggttttaattcctgaactggcagccttaacgctggcactttcggtttatacatctgcatttatcgccgagattatccgcgctgggatccaggcagtgccttatggtcaacatgaagcggctcggtcactgggattacccaacccggttacgctacgccaggtcattattccccaggcattgcgggtgattattccaccgttaaccagccagtatctcaacatcgtcaaaaactcctctcttgccgccgctattggctatcccgatatggtttcgctgtttgccggcaccgtgctgaatcagacgggcaagccatcgagacgatagccatgaccatgtcggtctatctgattatcagcctgactatctcgctgctgatgaatatctataaccgccgcatcgcgatcgttgaacgctaaggagtcatgatgacaaaagtattgctgtctcatcccccgcgcccggcgagccataactcaagccgcgcgatggtgtgggtgcgaaaaaatctgttctccagctggagcaatagcctgctgactattggctgcatatggttgatgtgggaactgatcccaccgttgctgaactgggcatttttgcaggctaactgggttggctcaacgcgtgccgactgcacaaaagccggtgcctgttgggtcttcatccacgaacgatttggtcagtttatgtatgggctttacccacacgaccaacgctggcgaattaacctcgcattactgattgggcttgtgtcgatcgcaccaatgttctggaaaatactcccgcatcgcggtcgctatattgcggcctgggcggtgatttacccactgattgtctggtggctgatgtatggcggtttttttgctcttgagcgggttgaaacccggcaatggggcgggctgacgctaactttaattattgcatcagttgggattgcgggggcgctaccgtgggggatcttactggcgttaggtcgccgctcccatatgccgattgtgcgtatcttatcggtcatttttatcgaattctggcgcggcgtgccgctgattaccgttctgtttatgtcttcggtcatgctgccgttgtttatggcagaaggcaccagtatcgacaaattgatccgcgcgctggttggcgtgatcctgtttcagtcagcatatgttgcggaagtcgtgcgaggtggattacaggcgctgcctaaagggcaatatgaagcggcagagtcgctggcgttgggttactggaaaactcaggggctggttattctgccacaggcgttgaagctggtaattcctgggctggtaaataccatcatcgcactcttcaaagataccagcctggtgatcattatcgggttgttcgatcttttcagtagcgttcagcaggcaaccgttgatcccgcctggttgggtatgtcgacggaagggtatgttttcgccgcgctgatctactggatcttctgtttcagcatgtcgcgctatagccagtatctggaaaaacgttttaacaccgggcgtacaccgcattgaggacactatgagccaaattttactgcaacctgctaacgcgatgattacgctggaaaacgtcaataaatggtatggacaattccatgttttgaaaaatataaatttaaccgtgcaaccgggagaacggatcgttctgtgtggcccttcaggttccggtaaatcgacaaccattcgttgtattaatcatctggaagaacatcaacagggacggatcgtggtagatggcatcgaacttaatgaagatatccgcaatattgagcgcgtcaggcaggaagtgggaatggtctttcagcatttcaatctcttccctcatctgaccgttttacagaactgtaccctggcaccgatttgggtacgcaagatgcctaagaaagaggctgaagatctggcggtgcattacctagagcgggtgagaattgccgaacatgcgcataagtttcccggacagatttcaggtggtcagcagcaacgcgttgccattgcgcgttcgctgtgtatgaagccgaaaattatgttgtttgatgagccaacgtcggcgctcgatcctgagatggtgaaagaggtgctggatacgatgattgggctggcgcagtcgggtatgacaatgttgtgtgtaacacatgagatggggtttgcacgaaccgtcgctgaccgggtaatttttatggatcgtggggaaatagtggagcaagctgcacctgatgaattttttgcgcatcctaaatcagagcgtacgagggcatttttatcgcaggtaatccattaattgaatgttagttcgaaaagcaaaaaggccatcctttcggatggcctttcgcttgatttgatgtctggcagtttatggcgggcgtcctgcccgccaccctccgggccgttgcttcgcaacgttcaaatccgctcccggcggatttgtcctactcgggagagtgttcaccgacaaacaacagataaaacaaaaggcccagtcttccgactgagccttttgttttatttgatgtctggcagttccctactctcgcatggggagaccccacactaccatcggcgctacggcggtttcacttctgagttcggcatggggtcaggtgggaccaccgcgctactgccgccagacaaattcttttctaatctgccgaactttaacctaaaaagtggtgctgatacccagagtcgaactggggacctcacccttaccaagggtgcgctctaccaactgagccatatcagcacgctaaatttgatgcctggcagttccctactctcgcatggggagaccccacactaccatcggcgctacggcgtttcacttctgagttcggcatggggtcaggtgggaccaccgcgctacggccgccaggcaaattctgttttatcagaccgcttctgcgttctgatttaatctgtatcaggctgaaaatcttctctcatccgccaaaacagcttcggcgttgtaaggttaagcctcacggttcattagtaccggttagctcaacgcatcgctgcgcttacacacccggcctatcaacgtcgtcgtcttcaacgttccttcaggacccttaaagggtcagggagaactcatctcggggcaagtttcgtgcttagatgctttcagcacttatctcttccgcatttagctaccgggcagtgcattggcatgacaacccgaacaccagtgatgcgtccactccggtcctctcgtactaggagcagcccccctcagttctccagcgcccacggcagatagggaccgaactgtctcacgacgttctaaacccagctcgcgtaccactttaaatggcgaacagcatacccttggggacctacttcagccccaggatgtgatgagccgacatcgaggtgccaaacaccgccgtcgatatgaactcttgggcggtatcagcctgttatccccggagtaccttttatccgttgagcgatggcccttccattcagaaccaccggatcactatgacctgctttcgcacctgctcgcgccgtcacgctcgcagtcaagctggcttatgccattgcactaacctcctgatgtccgaccaggattagccaaccttcgtgctcctccgttactctttaggaggagaccgccccagtcaaactacccaccagacactgtccgcaacccggattacgggtcaacgttagaacatcaaacattaaagggtggtatttcaaggtcggctccatgcagactggcgtccacacttctaagcctcccacctatcctacacatcaaggctcaatgttcagtgtcaagctatagtaaaggttcacggggtctttccgtcttgccgcgggtacactgcatcttcacagcgagttcaatttcactgagtctcgggtggagacagcctggccatcattacgccattcgtgcaggtcggaacttacccgacaaggaattttcgctaccttaggaccgttatagttacggccgccgtttaccggggcttcgatcaagagcttcgcttgcgctaaccccatcaattaaccttccggcaccgggcaggcgtcacaccgtatacgtccactttcgtgtttgcacagtgctgtgtttttaataaacagttgcagccagctggtatcttcgactgatttcagctccacgagcaagtcgcttcacctacatatcagcgtgccttctcccgaagttacggcaccattttgcctagttccttcacccgagttctctcaagcgccttggtattctctacctgaccacctgtgtcggtttggggtacgatttgatgttacctgatgcttagaggcttttcctggaagcagggcatttgttgcttcagcaccgtagtgcctcgtcatcacgcctcagccttgattttccggatttgcctggaaaaccagcctacacgcttaaaccgggacaaccgtcgcccggccaacatagccttctccgtccccccttcgcagtaacaccaagtacaggaatattaacctgtttcccatcgactacgcctttcggcctcgccttaggggtcgactcaccctgccccgattaacgttggacaggaacccttggtcttccggcgagcgggcttttcacccgctttatcgttacttatgtcagcattcgcacttctgatacctccagcatgcctcacagcacaccttcgcaggcttacagaacgctcccctacccaacaacgcataagcgtcgctgccgcagcttcggtgcatggtttagccccgttacatcttccgcgcaggccgactcgaccagtgagctattacgctttctttaaatgatggctgcttctaagccaacatcctggctgtctgggccttcccacatcgtttcccacttaaccatgactttgggaccttagctggcggtctgggttgtttccctcttcacgacggacgttagcacccgccgtgtgtctcccgtgataacattctccggtattcgcagtttgcatcgggttggtaagtcgggatgacccccttgccgaaacagtgctctacccccggagatgaattcacgaggcgctacctaaatagctttcggggagaaccagctatctcccggtttgattggcctttcacccccagccacaagtcatccgctaatttttcaacattagtcggttcggtcctccagttagtgttacccaaccttcaacctgcccatggctagatcaccgggtttcgggtctataccctgcaacttaacgcccagttaagactcggtttcccttcggctcccctattcggttaaccttgctacagaatataagtcgctgacccattatacaaaaggtacgcagtcacacgcctaagcgtgctcccactgcttgtacgtacacggtttcaggttctttttcactcccctcgccggggttcttttcgcctttccctcacggtactggttcactatcggtcagtcaggagtatttagccttggaggatggtccccccatattcagacaggataccacgtgtcccgccctactcatcgagctcacagcatgtgcatttttgtgtacggggctgtcaccctgtatcgcgcgcctttccagacgcttccactaacacacacactgattcaggctctgggctgctccccgttcgctcgccgctactgggggaatctcggttgatttcttttcctcggggtacttagatgtttcagttcccccggttcgcctcattaacctatggattcagttaatgatagtgtgtcgaaacacactgggtttccccattcggaaatcgccggttataacggttcatatcaccttaccgacgcttatcgcagattagcacgtccttcatcgcctctgactgccagggcatccaccgtgtacgcttagtcgcttaacctcacaacccgaagatgtttcacttcagagttgcgaaaatttgagagactcacgaacaactttcgttgttcagtgtttcaattttcagcttgatccagatttttaaagagcaaaacttcgcagtgaacctttgcaggtacactctgaagtattttttatttaatcactacagagatggtggagctatgcgggatcgaaccgcagacctcctgcgtgcaaagcaggcgctctcccagctgagctatagccccataacatgtagttaaaacctcttcaaatttgccgtgcaaatttggtaggcctgagtggacttgaaccaccgacctcacccttatcaggggtgcgctctaaccacctgagctacaagcctgtagaggttttactgctcattttcatcagacaatctgtgtgagcactgcaaagtacgcttctttaaggtaaggaggtgatccaaccgcaggttcccctacggttaccttgttacgacttcaccccagtcatgaatcacaaagtggtaagcgccctcccgaaggttaagctacctacttcttttgcaacccactcccatggtgtgacgggcggtgtgtacaaggcccgggaacgtattcaccgtggcattctgatccacgattactagcgattccgacttcatggagtcgagttgcagactccaatccggactacgacgcactttatgaggtccgcttgctctcgcgaggtcgcttctctttgtatgcgccattgtagcacgtgtgtagccctggtcgtaagggccatgatgacttgacgtcatccccaccttcctccagtttatcactggcagtctcctttgagttcccggccggaccgctggcaacaaaggataagggttgcgctcgttgcgggacttaacccaacatttcacaacacgagctgacgacagccatgcagcacctgtctcacggttcccgaaggcacattctcatctctgaaaacttccgtggatgtcaagaccaggtaaggttcttcgcgttgcatcgaattaaaccacatgctccaccgcttgtgcgggcccccgtcaattcatttgagttttaaccttgcggccgtactccccaggcggtcgacttaacgcgttagctccggaagccacgcctcaagggcacaacctccaagtcgacatcgtttacggcgtggactaccagggtatctaatcctgtttgctccccacgctttcgcacctgagcgtcagtcttcgtccagggggccgccttcgccaccggtattcctccagatctctacgcatttcaccgctacacctggaattctacccccctctacgagactcaagcttgccagtatcagatgcagttcccaggttgagcccggggatttcacatctgacttaacaaaccgcctgcgtgcgctttacgcccagtaattccgattaacgcttgcaccctccgtattaccgcggctgctggcacggagttagccggtgcttcttctgcgggtaacgtcaatgagcaaaggtattaactttactcccttcctccccgctgaaagtactttacaacccgaaggccttcttcatacacgcggcatggctgcatcaggcttgcgcccattgtgcaatattccccactgctgcctcccgtaggagtctggaccgtgtctcagttccagtgtggctggtcatcctctcagaccagctagggatcgtcgccttggtgagccgttaccccaccaacaagctaatcccatctgggcacatccgatggcaagaggcccgagggtccccctctttggtcttgcgacgttatgcggtattagctaccgtttccagtagttatccccctccatcaggcagtttcccagacattactcacccgtccgccactcgtcagcgaaacagcaagctgtttcctgttaccgttcgacttgcatgtgttaggcctgccgccagcgttcaatctgagccatgatcaaactcttcaatttaaaagtttgatgctcaaagaattaaacttcgtaatgaattacgtgttcactcttgagacttggtattcatttttcgtcttgcgacgttaagaatccgtatcttcgagtgcccacacagattgtctgataaattgttaaagagcagttgcgacgcggctttcagctcactgtcgcgaggtggcgtatattacgctttcctctttcagagtcaaccctgaatttcaggatttttttctcttcgttgttccgaccatcctgtgaagtgtttcacgttgtcgtctcaacggaggcgcattatagggatcccaattttttgcacaagtatttttttgatctttttttctgtttgttgttttttcaccctttttgctgcaatcgcacacaaaacggtgcttttttgcatactaaaagacttgcacaaggccaataatgcccccaaagtcattagtaaatcatttattgctgaggtaagtatgtctgatgttttacgcccataccgcgatctttttccacaaatcggtcagcgcgtaatgatcgacgatagcagtgtcgtgattggtgacgttcgtctggctgatgatgtggggatctggccgctcgttgtgattcgtggagatgtacattatgtacagatcggagcacgcaccaatatccaggatggcagtatgttgcatgtcactcataaatcctcgtacaacccagatggcaacccattaaccattggcgaagatgtcactgttggtcacaaggtgatgctccacggctgcaccattggcaatcgagttttggttgggatgggctcaattttacttgatggcgcaatagtagaagatgatgtgatgattggtgcgggtagtctggtcccacaaaataaacggctggagagcggatatctgtatctcggtagccccgtcaaacagatccgcccgttaagtgatgaagagaaggctgggttacgctattccgcgaataattacgtgaaatggaaggacgaatatctggatcagggtaaccagacccagccttgatcatcttcactttgttcctgaattaagttttccgcttcttcttccaggtcccagcgatgctgacgaaaactcgctaaccactgttctggcgtatctccagtaaagcgatacgccagactctcgccagagatcgcgcatgtcagttgcataccattcacgagagcgggaaaacatacacattttttattctcgtcccactcttccctgtccggaaactggatggcctgattcacgcggacaattcctcctgcaattgctttataactggttctacgtcaggcagaacaccgtgccagagaagaaaggcatgagccgcctgtgccaccagcattcctaaaccatcagcattacgctttgagcctcgctgctcacaccatgccagaaaaggagtttttcctttctgatagaacatgtcatagcaataaatgcctggatgaatgagcgatgacgggatcgccggaatatcaccactgatgccactggatgttgcattaataatgagatcaaactcatgaccttccagttcgtccatactcaacgcctgaatactgccagtgtgcgcaaacaatttagccaactcttccgcgcgggataccgtccgattagttattgtcaccgcacagtccagggaaaggagtggcagtagtacgccgcgagatgctccaccagcgccgataagcagaatacgtaaaccagggcggataaaagacagacgttccagatcgcttaacaagcctacaccatcggtattgtcacccagcaggcgtccatcttctaaccgcatgagggtattaacagcaccagccaacgctgcccgttcagtaagctcatccgctctggcaaaagcctcttctttaaaaggcaccgtcacattcgcacctttaccaccagcactaaagaaagcgttcagtgtgttgatgaaatcattgatgggtgccaacacgcgcccatagggatgttcaatattcagttgctgagcaaattgctgatgaatgaatggcgatttgctgtgggctatcggattaccaaaaacagcataggtttccattatgttacccctgtcgaaacagttcacccgtcagggcatcgcggatttctgaaggatttaaacgcccccccgtttcaccaggcacaaccgggaacgccgcgccaaattgtgcgcgaacttcgtctactgttcgacaaggtggcaatccactcaagttggcactggtagaaaccagcggtttaccataagcctggcacaaagcaaccaccaacggatggtcggtgactcgtacagcaagcgaatcaaagcggcccgtcaaccagcgcggtgttgtcgcaggcgcgggaaagacaaaggtgacaggacctggccagcgggaaaaaatggtttcacgctgcacgtcagtcaacatggtgtcatcaatatagggtttaagctgctcgtaatttgctgcgattaaaatcagccccttatcaaccggacgctgttttaactccaacagtcgcatcactgctgtttcgctatcaggatcgcacccaacaccgaaaacggcttccgttggataggcgatgacacgttccttcattgagaacatctatcgcagctgcgatagcgtctctttgcaggttattattcacgttattattccgccgaaaccggctttccacattgtttactggcacaaaagtgttttacaccctgcgcggttttcttttcgatgagtagcggataatgacactcagggcattctccagctatgggtttgaagttaatggcaaattgacactccgggtagcgatcacaagagtgaaatgttttgccataacgggagcggcgctggaccagatggcccgtccgacattgggggcatgtaattgctgtttcgtccggtttatcgataagttcggtatgttcgcattcagggtagttaatgcaaccaataaacataccaaagcgtccctggcgtaataccagatttgcgccacatgcagggcaaacctgcccctccagaactttgacgatatgtccatccgctgaagatttcagaggacggacgtagtcacacgccggatactgtgagcatccaagaaacggaccgtgtttcccggatccgaataaccagttcagccccgcactttgggcaggactcattattacgcaccgtgaacagtgctgatttcgccataacaacttatgctgaattaaagaaatgattaatgcagcataccttcattcacttcaaagagtaattcttccatttgctggtacgcattttcgcagcccggaatattgaacaacaccatcaggatcacccatttcagatcatccagttcgaactctgcgttatccagcgcgagcactcgctctatcaccatttcacgagtttcaaggttgagcacctgaatctgctcaaggaaaagcagaaacccacggcagctggcatccagtcgttcacactcttccggtgtataaatacgcatggagagaggatccgaggccagttgcatcggttctgccaacccttcctgataatcagcaagtttttccagccatagcagggcattgtagatatcttctcgctcaaaacctgcgtcggtaagatcctgttcaagtttgtcttgatccacacgcaactcagcttctgtgtgaatataggtttcaaacaaatacattagtacgtcgaacatggcatgccctcctcaatcggacatagccgccgggtacagctgcgatccatcctgctaactccagttcgagtagttgagtaactacctctggcacaggttggccggcacgttcagcgacgacgtcaacaggtgttacctcatctcctacgttagccaggagctcaggaaatggcaatgccacgtcttgctgatctggtgaataaaatgaattttcaggggcgtctggcaaccagtgcaatccaaattgcaagttttccagaatttcttccggttccgtcacaagaatcgcaccttgttttattaaccagtgaggcccttcgcttcccggattccctattggacctggcaaggaaaaacttctcgcccctgctcaagcgcacaacgtgctgtcaccagcgaaccactacgcaaagccgcttccaccaccagtacacctttacttagaccactgataatgcgatttcttcgtgggaaattgtaagcaaggggtggaacatcgaggggaaattccgagacgagagcgcccccctgttcaagcagactggcagccagtcgggcatgacggcggggatgaatggtattaagtccattccccaatacagcaatgctgacgccatttacctgtaaggctgctttatgcgctacaccatcgattccacgcgccagtccactcgtaattgtcactccacgcgtcgccagagtttcgcaaaataatcgtccccatcgctcgccataccatgaatgcgcccgactccccactacggcaagctgaaatgaatgcagcgcgtgcagttctccttcaacaaacagtgcgccggggtaatctgtcgtcgccagaagttgaggaggataaaattcgctgtccgcaggaattaaatgatggttgggttgctccaaccaacaaagtgagctttcgatactctttcgtggaaatgaaagaaagcgttgtgcctgccgcaatgtaagccctgtttgctgcaatacaaccgcatcaatatgcgactgttttgccacccagtgagcgatacggaccatatcatcgccgtacaagctgctgatactcattaaacgcagccaaatttctgtatcgaccatccttatctccctgccataagcagccttagcaatctttgcgattggtcagtgatgctgtcaatcagagggggatttgtctagaatagaagaaataatctttctaactcctgaacacatctctggagatttatgtcagttttgcaagtgttacatattccggacgagcggcttcgcaaagttgctaaaccggtagaagaagtgaatgcagaaattcagcgtatcgtcgatgatatgttcgagacgatgtacgcagaagaaggtattggcctggcggcaacccaggttgatatccatcaacgtatcattgttattgatgtttcggaaaaccgtgacgaacggctagtgttaatcaatccagagcttttagaaaaaagcggcgaaacaggcattgaagaaggttgcctgtcgatccctgaacaacgtgctttagtgccgcgcgcagagaaagttaaaattcgcgcccttgaccgcgacggtaaaccatttgaactggaagcagacggtctgttagccatctgtattcagcatgagatggatcacctggtcggcaaactgtttatggattatctgtcaccgctgaaacaacaacgtattcgtcagaaagttgaaaaactggatcgtctgaaagcccgggcttaaggataagaactaacgtgtcagaatcactacgtattatttttgcgggtacacctgactttgcagcgcgtcatctcgacgcgctgttgtcttctggtcataacgtcgttggcgtgttcacccagccagaccgaccggcaggacgcggtaaaaaactgatgcccagcccggttaaagttctggctgaggaaaaaggtctgcccgtttttcaacctgtttccctgcgtccacaagaaaaccagcaactggtcgccgaactgcaggctgatgttatggtcgtcgtcgcctatggtttaattctgccgaaagcagtgctggagatgccgcgtcttggctgtatcaacgttcatggttcactgctgccacgctggcgcggtgctgcaccaatccaacgctcactatgggcgggtgatgcagaaactggtgtgaccattatgcaaatggatgtcggtttagacaccggtgatatgctctataagctctcctgcccgattactgcagaagataccagtggtacgctgtacgacaagctggcagagcttggcccacaagggcttatcaccacgttgaaacaactggcagacggcacggcgaaaccagaagttcaggacgaaactcttgtcacttacgccgagaagttgagtaaagaagaagcgcgtattgactggtcactttcggcagcacagcttgaacgctgcattcgcgctttcaatccatggccaatgagctggctggaaattgaaggacagccggttaaagtctggaaagcatcggtcattgatacggcaaccaacgctgcaccaggaacgatccttgaagccaacaaacaaggcattcaggttgcgactggtgatggcatcctgaacctgctctcgttacaacctgcgggtaagaaagcgatgagcgcgcaagacctcctgaactctcgtcgggaatggtttgttccgggcaaccgtctggtctgatagtccactcttctaagcccggtcttgccgggcgtttttatacttatgaaaaaacaacgtaatttacgtagcatggcggcccaggccgttgaacaagtcgtcgagcaagggcaatcattaagcaacattctgccaccgctccagcaaaaagtttccgataaagacaaagcacttcttcaagagttgtgctttggcgtactgcgtacgctttcgcagttagactggctgattaataagttaatggcccgtccgatgaccggcaaacagcggaccgtgcattacctgattatggttggtttgtatcaactgctttatacccgcattccacctcatgctgcgctggctgaaacggttgaaggcgctatcgcaattaagcgtccgcaacttaaagggttgataaacggtgtattacgccagttccagcgtcagcaagaagagttattagccgagtttaatgccagtgatgcacgttatctgcatccttcctggttgctgaagcgtctgcaaaaagcgtatccagagcagtggcaatccatcgtcgaagccaataaccagcgtccgccaatgtggctgcgtattaatcgtacgcatcattcccgcgacagctggcttgcattgctggatgaagcaggaatgaaaggtttcccgcatgcggattaccctgatgctgtacgtctggaaacacctgcacctgttcatgcgctacctggttttgaagacggatgggttaccgttcaggatgcatcagcacaaggttgcatgacctggcttgcgccacaaaacggtgaacacattttggatctttgtgccgcccccggcggtaaaacaacgcatatccttgaggtggcaccagaagcgcaggttgttgcggttgatatcgacgaacagcgcctctctcgggtttacgacaatttaaaacgccttggtatgaaggcgaccgtgaaacaaggtgatggccgttacccttctcaatggtgtggcgagcaacagtttgatcgcattttattagatgcgccttgttcagcaaccggtgtgattcgtcgccatccagatattaaatggttacgtcgcgatcgcgatatcccggaactcgcgcaattgcagtctgaaattctcgacgccatttggccgcatttaaaaaccggtggaactctggtctatgccacctgttcggtgttaccggaagagaatagccctgcagattaaagcctttttgcaacgtaccgctgatgccgaactttgcgaaacaggaacaccagagcaaccgggtaaacaaaatctacctggtgccgaagagggcgacggcttcttttacgctaagctaatcaaaaagtgatgagataacgggtcgcgactgatgaaaattatcattctgggtgccggccaggttggcggcacactggcggaaaacctggttggcgagaacaacgatattactgttgtcgataccaacggtgagcgtctgcggaccttacaggataaatttgacctgcgggtcgtgcaggggcatggctctcatccacgcgtattgcgggaggcaggtgccgacgacgccgatatgctggttgctgtaaccagttcagatgaaaccaatatggttgcctgccaggtagcctactcacttttcaacacccctaatcgcatcgctcgtatccgctcaccagactacgtgcgcgatgccgataagctatttcattcagatgctgtgccgattgatcatctgatcgcaccagagcagttggttatcgataatatttaccgactgattgagtatcccggcgcattgcaggtggtgaacttcgctgagggtaaagtcagcctggctgtggttaaagcctattatggcggcccgctgattggtaatgcactttcgaccatgcgcgaacatatgccacatatcgatactcgtgtggcagcaattttccgccacgatcgccccattcgtccgcaaggttcgaccattgttgaagctggtgatgaagtgttctttattgccgcttcacagcatatccgcgcggtgatgagtgaattacagcgactggaaaaaccgtataagcggatcatgctggttggtggcggtaatatcggtgcagggctggcgcgtcgtctggaaaaagattacagcgttaaactcatcgaacgtaatcagcagcgcgctgccgaactggcggaaaagttacagaatacgatcgtcttttttggtgatgcgtcggatcaagaactactggccgaagaacatatcgatcaagttgatctgtttattgccgtcaccaacgatgacgaggccaatatcatgtccgccatgcttgccaaacgtatgggtgcgaaaaaggtgatggtattgatccagcgtcgcgcttatgtggatctggttcaggggagcgttatcgatattgcgatttcaccacaacaagcaactatttctgcgttgcttagccatgtgcgaaaagcagatattgttggtgtttcctcattgcgccgcggcgtagcagaagctattgaagccgttgctcacggtgatgaaagcacctcacgcgttgtcggcagagtcattgacgaaatcaagctaccgccaggaacgattattggagcggtggtacgtggaaacgacgtgatgattgccaatgacaatctgcgcattgagcaaggcgatcacgtaattatgttcctcacagataaaaagtttattaccgacgtcgaaagactcttccagccaagccctttcttcttgtaattaataaggcgtctaatgacgccttattatttccctttgattatcaaggattaattaaattcattcctggcaggaaaatggcttaacatttgttagacttatggttgtcggcttcatagggagaataacatgagcattattaaagaatttcgcgaatttgcgatgcgcgggaacgtggtggatttggcggtgggtgtcattatcggtgcggcattcgggaagattgtctcttcactggttgccgatatcatcatgcctcctctgggcttattaattggcgggatcgattttaaacagtttgctgtcacgctacgcgatgcgcagggggatatccctgctgttgtgatgcattacggtgtcttcattcaaaacgtctttgattttctgattgtggcctttgccatctttatggcgattaagctaatcaacaaactgaatcggaaaaaagaagaaccagcagccgcacctgcaccaactaaagaagaagtattactgacagaaattcgtgatttgctgaaagagcagaataaccgctcttaacaagcgcctgaaagcagaagaccagtggtaaaaaagtgatttactttcttgccactggcctcccagttcccccgattgccatgttttccttttcgcatgtaactgcctttccccttcttatttttctctacgcgctgtcggaataagggatcatgtagtaatgcttctatcgcattatcctttatctgccctttagtatgctgatatcgactcataaaaactccagttggttatttaacggcgcgagtgtaatcctgccagtgcaaaaaatcaacaaccactcttaacgccactcgccccttgttcaagagcttcaagaatcgaacaataaacactgctatgagcagtcccacaacaggcatcgttaaggcgttgcaaggaacgctgcatactctgcaactcggctatccgtgcttcgacttcctgcaatctttcctgcacaatgccttttgactcctgacaggtatggtgttcaggatcgatgcggatcgacagcaactcgcggatcgactccagactgaaacctagttgtctggcatggcggataaatttcaatcgctggagatcgctttcggtatataggcgaaacccaccttcagtacgcacttcatgctccatcatctgctgtttttcgtaataacgaatcgtgtcgggtgttacttccgccatttttgccagctcaccaatgcgatacatacatactccactagttatcgttgattttgtccaacaacttgtcagcataatcgccgcgtaaaaaatcggtactcaatccagcttgtcgcagcttcaattccagtaatgacaatcgacggctaacctcttgatattgcggatcatcgtgacggatacctttgagaatatccagaagctgaattgcttctctccgttgctcaagttctggcggtaagcaaccggcattcttcagcaagcgataccccgcacgtaattccggtggcacgtgagaatcatcatccagtatcaatggttcgccgctacctgccaggttatcaaactcacctttcgcttgcgcttctgctatatggcgctctgcccactggtcaagtaaccacataaatactccaggggatgaacaaaaagagtacagctattgtagataagtggggatactacgggtataaaaaaacccgccggggcgggtttttttacgttgcttcagattactctgcagcagcttctgctttctctgaacgatcaaccagctcgatgtaagccatcggcgcgttgtcgcctgcacggaagccacacttcagaatacgagtgtaaccaccggcacggctcgcgaaacgcgggcccagttcgttaaacagttttgccacgatctcgttatcacgagtacgggcgaatgccagacgacgattagcaacgctatcagtcttggcaagagtaatcagcggctcaactacgcggcgcagctctttcgctttaggcagagtcgtcttgatgatttcatgacgaaccagtgaacctgccatattgcggaacatagcctggcgatggctgctgttgcggttcagttgacgaccactcttacgatggcgcatgaccttatccttctcagtaaaaccttaacctgtgatccggttactcgtcagcgatgcttgccggtggccagttttccaggcgcatgcccagagacagtccacgggaagccagcacgtctttaatctcagtaagagattttttaccaaggttaggcgttttaaggagctcaacctcggtacgctgtaccagatcaccgatatagtggatagcttctgctttaaggcagttagcagagcggacagtcaattccagatcgtcaacagggcgcagcaggatcggatcgaactctggtttctcttctttcacttcaggctgacgtacatcacgtaagtcaacgaaagcttccagttgttcagccagaatggttgccgcacgacgaatcgcctcttcaggatcgattgtgccgttggtttccatttcgatgaccagcttgtccaggtcggtacgctgttctacacgcgctgcttcaacattgtaggcaatacgctccacagggctgtagcatgcgtcgaccagcagacggccgattgggcgctcatcttcttccgaatgaattcgggtagaagccggcacataaccacgaccgcgctgaactttgatacgcatgctaatagacgcgttctcatcggtcaggtggcagatcacgtgctgcggcttgacgatttcgacatcaccgtcgtgggtgatatcggctgcagtcacagggccaatgccagatttattcaaggtaagaataacttcatctttgccctgaactctcaccgccagccctttcaggttgagcaggatttccaggatatcttcctgaacgccttctttggtgctgtactcatgtagtacaccatcaatctcaacctcggtcaccgcgcaacccggcatcgatgagagcagaatacggcgcagtgcgttacccagagtatggccaaagccacgctctaaaggctcaagggtcaccttggcgtgcgtcgaactcacttgctcgatatcaaccaggcgcggttttagaaactctgtcacagaaccctgcattgtgtcctctctttggtactaagctttacttggagtaaagctcgacgatcaggtgttcgttaatgtccgcagacagatcagaacgctccggcttacgcttaaacgtaccttccatcttgccagcatcaacttccagccaggttggcttttcacgctgctcagccagctccagagcggctttcacgcgagactgcttcttcgctttctcacgaatgcttacaacgtcattcggactaacctgataagaagcgatgttaacaacacgaccgtttaccataattgctttatggctaaccagctgacgtgcttctgcacgagtggcaccgaagcccatacggtatacaacgttgtccagacgaccttccagcagagccaacaggttttcaccggtgttgcctttcagacgtgctgcttctttgtagtagttacggaactgacgctccagcacaccatagatacggcgaactttttgcttttcacgcaactgcacaccatagtcagacagacgcggtttacgcgcaccgtgctggccaggagcttgttcaattttacacttggtatcgatcgcgcgaacgccagacttaaggaataagtcggtgccctcacgacggctcagcttgagcttaggacccaaatatcttgccattttctttctccaacaaacctggaaaacgaggcgttatacgcgacgttttttcggcggacgacaaccgttatgagggatcggagtcacatcagtaatgttagtgatgcggaaacctgcggcgttcagagcacgaatagtagattcgcggcctggacccggacctttaaccataacttccagattcttgatgccgtattctttcacggcgtcagcgcaacgctctgctgcaacctgagctgcaaacggagtggatttgcgagaaccacggaaaccggaaccaccggctgttgcccaacccaacgcgttaccctgacgatcagtgatagtcacgatggtgttgttgaaagaagcatggatatgagccacgccgtcagagacttgttttcttacacgtttacgtgcacgaattggtgcctttgccattattcaatcaccccgattatttcttgatcggtttgcgcggacccttacgggtacgtgcgttggtcttggtacgctgaccgcgaaccgggagaccacgacgatgacgcaaaccgcgatagcaaccaagatccatcaggcgcttgatgctcatgctgatttcacggcgcagatcaccttcaacgacaaatttggcaacttcgtcacgcagcgtgtcgatttgtccttcagacagctcactgatcttaacatcttcagcgatacccgctgcagccaggatggctttagaacgggtcttgccgacgccataaatcgaagttaatgcgattacggcatgcttatgatcaggaatgttaatgcctgctatacgggccactatgcactcctactatttaatatgtacgttccatgctgaaaagcccgttttcaggatactcaaatggaaacgcacagacatacaaaagattggctggctaatctagccagctcaacccaactttgcaagaaaaatatgcgaaaaaatcagccttggcgctgtttatgcttcggctcggcactgcaaatcacacggatgacaccatcacgcttaacgattttgcagttacggcataatttcttgacggaagcacgaactttcatttttactctccgtaacttctcgggcgaccaattatcggccgtagcctttcaggttcgccttcttcaatgcagactcatactgactggacatcatcagagtttgcacttgagccataaagtccataatcacgacaacaacgataagcagtgaggtcccaccgaagtagaacggtactttcattgcatcacgcatgaactccgggatcaggcagataaaggtaatatacagcgcaccaaccagggtcaggcgggtcattactttatcgatatacttcgccgtttgctctcccggacgaattcctggtacaaatgcaccggacttcttcaggttatctgctgtttcacgcgggttgaaaaccaacgccgtgtagaagaaacagaagaagatgattgcagacgcatagagtaacacataaagcggttgcccaggctgcaaatacagcgaaattgttgtcagccagttccaaccagtaccgcccccgaaccatgacgcgatggtcgccgggaacagaataatactggaagcgaagattgccgggattacccccgccatattcactttcagcggtaaatgtgtgctctgtgcagcatagacacgacgaccttgctgacgtttcgcgtagtttaccacaatgcggcgttgaccacgctcaacaaatacaacaaagaacgtcactgcaaatactaatactgcaaccaacagcaacacgaggaagtgcaggtcgccttgacgcgcttgctcgatagtatgggcaatggctggcgggagtcccgcgacaataccggcgaagataatgattgaaataccgttgccgatacctcgttcagtaatctgttcgcccaaccacatcaggaacatggttcctgtgaccagacttacaacagcggtgaagtagaatgcaaagcccgggttaatcaccaggccttgcataccaggcatattcggcagaccggtagcaataccgatcgactggaatattgccagcaccagagtaccgtagcgggtgtactggctgatcttacgacgaccagactccccttctttcttaatttctgccaacgttgggtgaaccaccgtcagcagctggataatgatcgacgccgaaatatacggcatgatccccagagcaaagatagaagcacggctgagagcaccaccagagaacatgttaaacatctcaatgatggtgcctcgctgttgctcaagcagtttggcaagtacagcggcatcaataccagggatcggaataaaagagccaatacggaacacaatcagcgcaccgataacaaacagcagtctgcgtttcagctcgcctaagccacctttggcactttgaaaatctaatcccggttgtttagccatctgctacttattcctcgattttaccgccagcagcttcgatagcagcacgagcgcctttagtaacacgcaggccacgaacagttaccggagtcgttacttcgccagccaggatcactttcgcgaactcgatctggataccgataatgttagccgctttcagcgtgttcaggtctactacaccgccttctactttagccaggtcagacagacgaatttcggctgtaatcgctgctttacgagaagtgaagccgaatttcggcagacgacggtacagaggcatctgaccaccctcgaaaccgcgacgtacgccaccgccagaacgagacttctgacctttgtgaccacgaccaccggttttaccgaggccagaaccgataccacgacccaggcgtttacccgcctttttggagccttcggccggagacagagtatttaaacgcatctcttactcctcaactttaaccatgaaggaaaccgcgttgatcataccgcgaatagcaggagtatcctcgcgctctacggtgtgaccaatacgacgcagacccaggccaagcagcgttgccttgtgtttcggcagacgaccgattgcactgcgggtttgagtaattttaatagtctttgccatggtttatttccccagaatttcttcaacggatttaccacgcttggcagcgaccatttctggagaattcatattttccaggccatcaatagttgcacgaaccacgttgatcgggttggtggaaccataggctttagccagaacgttatgaaccccagcgacttccagaacggcgcgcattgcaccaccggcgatgataccggtaccttcggaagccggctgcatgaatacgcgagaacccgtgtgaacacctttaacagggtgttgcagagtgccgttattcagcgcgacgttaatcatattgcgacgggctttttccatcgctttctggatcgctgctggaacttcacgcgctttaccgtaaccaaaaccaacgcgaccgttaccatcgccaactacagtcagagctgtgaaggagaaaatacgaccacctttaacggttttagatacgcggtttaccgcgatcagcttttcctgcagttcgccagcttgtttttcgatgtgagccatcttacacctctaccttagaactgaaggccagcttcacgggcagcatctgccagtgcctggacacgaccatgatattggaacccggaacggtcaaaggatacatctttgatgcctttttccagagcgcgttcagcgacagctttacccacagctgcagccgcgtctttgttaccggtgtacttcagttgttcagcgatagctttttctacagtagaagcagctaccagaacttcagaaccgttcggtgcaattacctgtgcgtaaatgtgacgcggggtacgatgtaccaccaggcgagttgcgcccagctcctggagcttgcggcgtgcgcgggtcgcacgacggatacgagcagatttcttatccatagtgttaccttacttcttcttagcctctttggtacgcacgacttcgtcggcgtaacgaacacccttgcctttataaggctcaggacgacggtaggcgcgcagatccgctgcaacctggccgatcacctgcttatcagcgcctttcagcacgatttcagtctgagtcggacattcagcagtgatacccgcaggcagctgatggtcaacaggatgagagaaacccagagacaggttaatcacattgcctttaaccgctgcacggtaacctacaccaaccagctgcagcttcttagtgaagccttcggtaacaccgataaccattgagttcagcagggcacgcgcggtaccagcctgtgcccaaccgtctgcgtaaccatcacgcggaccgaaggtcagggtattatctgcatgtttaacttcaacagcatcgttgagagtacgagtcagctcgccgtttttacctttgatcgtaataacctgaccgttgatttttacgtcaacgccggcaggaacaacgaccggtgctttagcaacacgagacattttttcctccgattaggctacgtagcagataatttcgccaccaagaccagcctggcgcgctgcacgatcagtcataacacctttagaggtagaaacaactgcgatacccagacccgccataactttcggcagctcatctttacgtttatagatgcgcagacctgggcggctgacacgctgaatgctttctacaacagctttgccctggaaatacttcagagtaagttccagttcaggcttggtgtcgccttcaactttaaaatcttcaataaaaccttcttccttcagcacgttggcgattgccactttcagcttggaggaaggcatggtgaccgcagctttgttcgcggcctgaccgttacggatacgggtcagcatatccgcgatcggatcttgcatgctcatctgtctttactcccgtgattcaattggtgacaattaccagctagcctttttcagacccgggatttcaccgcgcatagcggcttcacggaccttaatacggctcaacccgaacttccgcaggaaaccatgcggacgacctgtttgacggcagcggttacgctgacgagacgggctggaatcacgcggcagagtctgcagcttgagaacagcgttccaacgatcttcgtcggaagcgttcacatcagagatgatcgctttcagttcagcgcgtttcgcgaagtatttatcagctaaagctacgcgttttacttcgcgtgctttcattgattgcttagccatttagtaaccctaccttacttgcggaacgggaagtcaaaggcagccagcagagcgcggccttcttcgtcagatttcgcagtagtggtaatggtaatatccaaaccacgaacgcggtcgactttatcgtagtcgatttctgggaagatgatctgctcacggacacccatgctgtagttaccacgaccgtcgaaagacttagcggacaggccacggaagtcacggatacgaggtacagcaatagtgatcaggcgctcaaagaactcccacatgcgttcgccacgcagagttactttacagccgatcggatagccctgacggattttgaagcctgcaacagatttgcgtgctttggtgatcagcggtttttgaccggagattgctgccaggtctgctgctgcgttatccagcagttttttgtcagcgatcgcttcaccaacacccatgttcagggtgatcttctcgacccgagggacttgcatgacagaattgtagttaaactcagtcatgagttttttaactacttcgtctttgtagtaatcatgcagtttcgccatcgtactactccaaattacttgatagtttcgctgttagacttgaagaaacggacttttttaccgtcttcgaatctaaagcctacacggtcagccttgccggttgccgcattgaagattgctacgttggaaacctgaatagcggcttctttttcaacgatgccacccggttggttcagggccggaaccggcttctgatgtttcttaaccaggttgataccttcaacaatgaccttgccggaagacaggacattcttaactttaccgcgtttacctttatctttaccggttaacacgataacttcgtcatcacgacggattttcgctgccatgattcgctccttagagtacttctggtgccagagagataattttcatgaacttctcactacgaagctcacgagttaccggcccaaaaatacgcgtaccgataggctgctcgctgttgttgttcagaagaacacaagcattaccatcgaagcgaatgacagaaccgtccgggcgacgaacacccttcttggtgcgcaccactaccgccttcagcacatcaccttttttgaccttaccacgcggaattgcttctttgatggtgatcttgatgatgtcgcctacgcctgcgtagcgacggtgcgagccacccagaaccttgatacacattacgcgacgtgcaccggagttgtcggcgacgttcagcatagtctgttcttggatcattttagtgctccgctaatgtcaactactactgagacccgaaaatcaggtcgttaaaaatccccatatcgagggcgcggcattataacaccgcttcaaggatatgggtagaaaaaataaacggctcatttctgagccgtttattcgtattgagagagtgtactgtattacagaaccgctttctctacaacgcgaaccagcgtccaggatttagtcttggacagcggacggcattcgcggatttcaaccacgtcaccgataccgcattcgttgttctcgtcatgtacgtgcagtttggtcgtacgcttgatgaatttaccgtagatcgggtgtttcacaaaacgttcgatagcaacaacaatggatttctccattttgtcgctaacaacgcgaccttgcagagtacggattttatcggtcattacgcacccgccttctcgttcagtaaagtcttaacgcgtgcgacatcgcgacgcacttgcttcaacaggtgagactgttgcagctggccacttgcagcctgcatacgcaggttgaactgctcacgcagcaggttcagcagctcggtgttcagctcttcaacgctcttctcacgcagctcttttgctttcattacatcaccgtcttagttacaaaggtggttttaatcggcagtttcgctgctgccagcttgaatgcttcacgggccagctcttccggaacaccgtccatttcatacaggactttacccggctgaatcaaggcaacccaatactccacgttacctttacctttacccatacgcactgccagcggcttttcagtgatcggtttgtccgggaacacacggatccagatcttaccttgacgcttaactgcacgggtcatagcacgacgtgctgcttcgatctgacgggcagtcagacgaccacggccaacagctttcagaccgaagctgccgaagctaacatccgtaccctgcgccagaccgcggttacggcctttgtgcattttacggaattttgtacgctttggttgtaacatcagcgacgctccttatttacggcctttacgctgctgctttttaggctgagcagccggtttttccggttgttcaacagcagccataccacccaggatctcgcctttgaagatccacactttaacgccgattacaccgtaagtggtgtgcgcttcagaggtgttgtagtcgatgtcagcacgcagagtgtgcagcggtacgcgaccttcgcggtaccattcggtacgtgcgatttccgcgccgcccagacggccgctaacttcaactttaatacctttagcgcccagacgcattgcgttctgtacagcacgcttcatagcacgacggaacataacgcgacgttccagctgagaagtgatgctgtcagcaaccagttttgcgtccagttcaggcttacgaacttcggcgatgttgatctgtgcaggaacgccagcgatgtccgctacgaccttacgcagtttttctacgtcttcaccttttttaccgataacgatacccgggcgagcagtgtgaatggttacacggatgctcttagccggacgctcgataacgatacgagatacggacgctttagccagttccttagtcaggtactgacgtactttaaaatcgctgtccaggttgtcagcgaattctttggtgttcgcaaaccaggtagagttccatggttttacaatacccaggcgaataccattaggatgtactttctgacccattgctagtctccagagtctcagcgatcggacacaaccacagtgatgtggctggtgcgcttcaggatgcgatctgcacgaccttttgcacgcggcataatgcgcttcatgctcgggccttcgtctacgaaaattttcgtaactttcagatcgtcaatgtcagcgccatcgttgtgttcagcgttagcaatggcagattccagaactttcttgaccagtacagccgctttcttgttggtgtaggtcaaaatatccagagcctgcgacactttcttaccgcgaatcaggtcagcaacaaggcgaaccttctgagcagaagaacgagcatggcgatgtttagcgatagtttccatctcttcctcctaccttatttcttcttcgcttttttatcagcagcgtggccgcgataagtacgagtcggtgcgaattcacccagtttgtgaccaaccatttcgtcggttacaaataccggaacgtgctgacgaccattatggacagcgatggtcaaaccgatcatgttaggaaagatcgttgaacgacgggaccaagtgcgcaggggcttcttgtctccgctttccaccgctttctctaccttcttcagcaagtgcaggtcaataaaaggacctttcttgagagaacgtggcatggcttatcctctaaaattatttgctacggcgacgtacgatgaatttatcagtacgcttgttgctgcgggtcttcttacctttggtctgaacgccccacggagttaccgggtgcttaccaaagttacgaccttcaccaccaccatgtgggtggtctaccgggttcatcgcggtaccgcgaacggtcggacgaacaccacgccagcgtgcagcacctgctttacccagaacgcgcagcatatgctcagcattgccaacttcgcccagagttgcacggcagtctgcttctactttacgcatttcaccagaacgcagacgcagggtgacataagcaccatcacgagcaacgatctgaacgtaagtaccagcggaacgtgccagctgaccgcctttacctggtttcatttctacgttatgaacagtagaaccaaccgggatgttgcgcatcggcagggtgttacctggtttgattgcagcatcaacgccagactgaatctggtcgccagctttcaggcctttaggggccaggatgtaacggcgttcaccgtctttgtacagaaccagcgcgatgttcgcggaacggttcggatcgtactcaagacgttcaacaactgccgggataccgtctttgttgcgtttgaagtcaacaatacggtaagcctgcttgtggccaccaccgatatgacgagtggtgatacggccattgttgttacgaccaccggatttgctgtttttttccagcaacggagcaaaaggtttgcccttgtgcagctcagggttaaccactttaactacgtggcgacgacccggagatgtcggtttacatttaacaactgccattgtattactcctccgacttactcagcgccgccaacgaagtccagattctggccttctttcagggtgacgtaagcttttttccagtcgctacgacgaccgatacgctgtccgtgacgtttaactttccctttaactaccagggtgttaacgacttcgacttcgacttcaaacagtttctgcacagcagctttgatttctgctttggtcgcgtctttagcaactttgagtacgatggtgttggatttttccatcgcagtagacgctttttcagaaacgtgcggtgcacgcagcaccttcagcagacgttcttcacgaatcatgccagcatctcctcaacttgcttaacagcatcagcagtcattacgactttgtcgaaggcgatcaggctaaccgggtcgataccagttgcatcgcgtacgtcaaccttgtgcaggttgcgcgcagccaggaacaggttttcgtccagctcaccggtgatgatcagcacatcttccagagccatgtctttcagtttctgtgccagcagcttagttttcggcgcttctacagagaacttctcgacaacgatcagacgatcctgacgtaccagttcggacaggatgcttttcagcgcgccgcggtacatcttcttgttaactttttgactgtggtcctgcggacgagcagcaaaggtcacgccaccagaacgccagatcgggctcttgatagaaccagaacgcgcacggccggtgcctttctggcgccacggttttttaccggaaccagttacttcagcacgagtcttctgagcacgagtaccctgacgagcaccagctgcataagcaacaacaacctggtgaaccagcgcttcgttgaaatcacgaccgaaggtagtttcggaaacagtcagcgcgctctgcgcgtctttcaatactaattccattgctatctccttacgccttcacagctggtttaacgatcaggtcgctaccggttgcacccgggacagcacctttaaccagcagcaggttgcgctcagcgtcaacgcgtactacgtcaaggctctgaacggttacacgttcgttacccatctgacctgccattttcttgcctttgaacactttgcccggagtctggttctgaccgatagaacccggaacgcggtgagacaaggagttaccgtgagtagcgtcctgggtacggaagttccagcgcttaacggtacctgcgaaacctttacctttagaggtgccagttacgtcaacttttttaacgtcagcaaacagttcaacgctaatgctctgacctacagtgaactcttcgccttcagccaggcggaattcccacagaccacggccagcttctacgccagctttagcgaagtggccagcttcaggcttggtcacacggttagcttttttagcaccggtggtcacctgaatagcacggtagccatcgttagccaggtctttaacctgagtaacgcggtttgcttcaacttcgattacggttactgggatagaaacgccgtcttctgtgaagatacgggtcatacccacttttttaccgactaaaccaatcattgtttcaacctctcaatcgctcaatgacctgattaacccaggctgatctgcacgtctacaccggcagccagatccagacgcatcagagcatcaacggttttctcggttggctcaacgatgtcaaccagacgcaagtgagtacggatttcgtactgatcgcgcgcgtctttgttgacgtgcggggagatcagaacagtgaagcgctctttgcgtgtcggcagcgggatcggaccacggacctgcgcaccagtgcgcttggcagtctcgacgatttccgcggttgcttgatcgatcagacgatgatcaaacgctttcaggcggatacggattctttggttctgcatgagaccagagctccaattattttataaacgaaaatgattactcctcagacccattacgattgatgggagagtgtaaccgttcttacgtagctccccgattgggagcattgttaggtagccaaattcggctaactgaggttcagattgaacctgctgtcaactacgacaagcccgcgcattatacatacttaaccaccgaacgcaagcgtattgctagtaaagtaaacagccttcgggttatctctcaagttcgttcagtgcatttttgacacgctctcttaaaccggctttctcttcgctttcttccacagtattttcttcgtcttcagaagaagagggggcattctcaaccgcgacgcctgggtcatcttcctcctcgacggattcgacgacggggagtggctgttttttgaagaaatagtgttgtgttgattgtttaaaagcgggcgtttcagcctctacagtgacttcggcttttactatccaaagcacccatagctgcctggcatacccaccaaccagcaccattcctgcaaaccacaggcaaatcagtaataaacaaattacatatattatggtgctgtgtttttgtcgggagaagataccagggtgacctgtttctttctgctcacgcgcggcgatatagaattcaaacatgtcatttccccttcactgttgtttccggggaaatatttgcttcatcccgatataagtaggcactctcccctgccacctgccagagatgtactaacgttgaaaagccaacaacaccgtcagttttcaagtggtggcttttttgaaattgctttattttttctaccaacaagggacgccactccgccgaaggttctgtcgaaatatgcaatgcgcggtttaacatcgtttccagccagagaatctcttcctcgctgctatcacgcgtaatggtactctccccttccggcgacattttccacaacagaagataatcacccgtccataccgactcaaaccatttatgtgtcagcgtccacgtttgctgacctacgaggacatcaacgctagcctcaccgacgcgaacgaccacaacaggcaattttttgtccccgactttaagcgatgcgatccagggcaaattctgatctaccaatgtttgtaaagaagcattcccacttttacatgccagccccgctcttactgcctgatcgcaccaggccgaatcagctgggacctcgtacccccatacgccgtataacacgcttagcgcctcactatcgcgcatcaccacatgagcaatatccttagtcatatcttgtttaactactggcgttacgggtatcagccacgcaggaacgggtaacgtagctgtaaaagaggacagcagtagccaaccacaggtaagagcgataatggttccactcatcaccacggcaagctgcattttccgggggcggttatcacccaatatgcggtaaatcattcgccattgttttgctgtgaaaacgctggtctgctcggcttgctgtaataagcgaattgtttcgccggcaagcgccagctttctgcgatcgccccgacataataaagctatccgtttcagaactctggcggttaaaaggagatcgggttggtcaatattctgaccttcaaggatgcttgccttaagttcgtgctccgtcagacgtcctatcgagacaagttcaatgccctgttttttaaaatcacgttcgacttttcgatcgggtctgccgatcagcaaaaattgaccgtcaggaataagagatattgcgcgttggagatcatcaagtatgcggcggtgattcaggtgagcattttcaataataataagagggcagcgactatcagttcgatgaagcgcatgcagtaattgccccgccatctcatctcgcgtccaggcgctgtcacggcagccctgttcagccgcgttatcgtcggtaacgatccatgcggccttaccttgccaggaaacaacgaggcttaaagtaatcacacggcgatgtttatctttttgcagttgctgcgccagccaggtttttccacttccagcctcacccaacaaatagcatagacgccaggtttgacgtttctcacacaaccaggaaagaataacttctcttctcgtagacatagaacttcctgttttaattattgattatccttaatcataaaaataatgtatgtatttattaattaaatacatattactaatataaataaattttgcttgattcatgcaagcggcattaatactatttatactaacgtcaatatacaacccacccaatctattttattagaacatacatcgtgcccacactacgtttccccttccatctggcgaatcataataaagatgctgccatcaatatattgattatatttataagcatagggtcgattatttttaatgtgaattatttccatacaactatagttaaaaatggacagatcattaatcaaccaacaaacgcatttcagtctgatttcagccttgccgctttatggcgtaacgaaaatcatgctggggtaaaagatgcaaatcccgtggcagttaatcaggaaacacctaagctctctatagcgcttaatggcattgtactcacatcgaatgatgagacttcttttgtcttaattaatgaggggagcgaacaaaagcgatactccctcaacgaagcccttgagtcagcgccgggaacgtttattagaaaaataaataaaaccagcgttgtgtttgaaactcacgggcattacgaaaaagtaactctccatccagggctacctgacatcatcaagcagcctgattcagaaagtcaaaatgtactcgctgattatattatcgccacgcctatacgtgatggagaacagatatacgggcttcgattgaaccctcgtaagggcctcaatgcatttaccaccagcttgctacaaccaggggatatcgccctcaggatcaataatctttcgctgacccaccctgatgaggtttcacaggcattaagtttactgctaactcaacaaagtgctcagtttacaattcgtcgcaacggcgtaccccgcttgataaatgtttccgtcggggaacttacaggaatgaatggactgcgtcatgaaaggactcaataaaatcacctgctgcttgctggcagcactactcatgccttgtgcaggacacgctgagaacgaacaatacggcgcgaacttcaataacgccgatatccgccagttcgtggaaatagtgggtcagcatcttggcaaaacgatcctgatcgacccttcggtacagggaaccatttccgtacgcagtaatgatacgtttagccaacaggagtactaccagttctttttaagtattcttgatctttacggttattccgtgatcacgctggacaatggttttctgaaagtggttcgctcagctaatgtaaaaacatcgccagggatgattgctgacagttctcgtccaggcgtaggtgatgagttggtcacccgaattgtaccgcttgagaacgttcctgctcgtgacctggcccccctgctccgccagatgatggatgcgggtagcgtcggtaatgttgtgcattatgaaccctccaacgttcttattctgaccggtcgtgcctccaccattaataaactgattgaagtcataaagcgcgttgatgtcatcggcacagagaagcagcaaattattcatctggaatatgcgtcagcggaagatctcgccgagattcttaatcaattaatcagcgaaagccacggtaaaagccagatgccagccctcctctccgcgaagattgtggcggataagcgaaccaactctcttatcatcagtggaccggaaaaagcacgccagcgcatcacttcattactgaaaagccttgatgtcgaagagagcgaggaaggaaatacccgggtttattacctgaaatatgctaaagccacgaatctggtggaagtgctaaccggtgtttccgaaaagctgaaagatgaaaaagggaatgcgcgtaagccctcctcttctggcgcgatggataacgtcgccattaccgccgatgaacagactaactctctggtcattaccgctgaccagtccgtccaggaaaaactcgccacggtaattgcgcgtctggacattcgccgtgcacaggtgctggttgaggcaatcatcgttgaagttcaggatggaaatggactaaacctcggcgtgcaatgggcgaataaaaacgttggcgcacagcaatttaccaataccggattaccgatttttaacgctgcgcaaggtgtggctgattataaaaagaatggtgggatcaccagcgcgaatcctgcctgggatatgtttagcgcctacaatggcatggccgcaggcttcttcaatggcgactggggagtactgcttaccgcgctggccagtaacaataaaaatgacatcctcgccaccccaagcatcgtaacgctggataataaactcgcgtccttcaacgtggggcaggatgtgccggtgctatccgggtcacagaccacttcaggggataacgtctttaataccgtcgaacgcaaaacggtggggacaaaactcaaagttactccgcaggtcaatgaaggcgacgcggtgttgctcgaaatagagcaggaagtctccagcgttgactcttcctctaactcgacgctcggcccgacgtttaatacccgtactattcaaaacgccgtgctggtcaaaaccggtgaaacggtggtcctgggcggattgctggatgatttttctaaagagcaagtgtcaaaggttcctctgcttggcgatattcctttagtggggcaactcttccgctatacctccaccgagcgcgctaaacgcaacctgatggtatttatccgtccgacgattatccgtgacgatgatgtttatcgctcactgtcaaaagagaaatacacccgttaccgtcaggagcaacaacagcggatcgacgggaaatcaaaagcgctggttggctcggaagatttgccggtgctggatgaaaacacgttcaacagtcacgcccctgcgccatcgtcacggtgaggcattcatatgagaattcactcaccgtaccccgccagttgggcgctggcacaacgaattggttatctctattcagagggcgagattatttatctcgccgatacgccattcgagcggttactcgatattcaacgtcaggttggccagtgccagaccatgaccagcttgtcacaggctgattttgaagctcggctggaagcggtattccatcagaataccggtgagtcgcaacagattgcgcaggatatcgatcaatccgtcgatcttctctcgctttcggaagagatgcccgcaaatgaagatctcctgaatgaagattcagcggcaccggttatccgcttgatcaatgcgattttgagtgaggccatcaaagaaaccgcctctgatatccacattgaaacctatgaaaaaacaatgtcgatccgttttcgcatcgacggcgttttgcggacaattttacagccaaacaaaaaactggcggcactgcttatctcccgaattaaggtcatggctcgtcttgatatcgccgaaaaacgtattccacaggatggaagaattagtttgcgtatcgggcgacgtaacatagatgtccgcgtatccacactgccgtccatctatggtgaacgcgccgtactccgcctgctggataaaaacagcctccagctttcattgaacaacctggggatgacggcagcggataagcaggatttagaaaatctcattcagcttccgcacggtattatcctggtgacagggccgacaggctccggtaaaagcaccacgctctacgccatcctttcggcgctgaatactcccggccgcaatattctgacggtagaagatcccgtggaatatgagctggaaggcattgggcaaacgcaggtgaatacccgtgtggatatgtctttcgctcgcggcctgcgcgccatacttcgccaggacccggatgtcgtcatggtgggggaaattcgtgatacagaaaccgcgcagattgcggttcaggcctcgctcaccggccatctggtactctcaacactccacactaacagtgcatcaggcgcagtgacccggctccgcgacatgggcgtcgaatcattcctgctttcgtcttccctggcagggattatcgcgcaacgtctggttcgtcgcctgtgtccgcaatgccgacaattcacgcccgtatcaccccaacaagcgcagatgtttaaatatcatcagctcgcggtgacaacaattggcactcccgtaggctgccctcattgccatcaatccggctatcaggggcgcatggcgatccacgaaatgatggtggtgacgccggaattacgggccgctattcatgaaaatgtggatgaacaagcactggagcgactagtccggcaacaacacaaggccttaatcaaaaatggcctgcaaaaagtgataagcggtgacacctcctgggatgaggttatgcgcgtcgccagtgccacgctggagagcgaagcatgaattatcgctatcgcgccatgacccaggatggtcaaaaattgcaagggatcattgatgctaacgatgaacgtcaggcacgactgcggctgcgtgaagaagggcttttcctgctggatattcgcccccaaaaaagttcgggagtaaaaacacgtcgcccgaggatcagccatagtgaactgacgcttttcacccggcagttggcaaccttaagcgcagcggcattacccctggaagagagccttgccgtaatcggtcaacaaagcagtaataaacgactgggtgacgtgttaaatcaggtacgcagcgccatccttgaagggcatcccctttccgatgcattacagcattttcccacgcttttcgattcgctctatcgtaccctggtaaaagcgggcgaaaagagcgggctgctggccccggtgttggaaaagctggctgattacaatgaaaaccggcagaaaatccgcagcaagctcattcagtcactgatctacccctgtatgctcactacggtggcgattggggtcgtgattattctcctcactgctgtcgtgcccaaaattaccgaacagttcgtgcatatgaagcagcaactgccgctgagtacacgcattcttttaggtctgagcgacacgttgcaacgtaccggcccgacattattagcgacagtgtttattgtcgctgtaggtttctggctctggttaaaacgcggcaataaccgccaccgttttcatgccatgttgctgcgcgttgcgctcatcggcccgctgatttgcgccattaacagcgcacgctatctccgcactttaagtattttgcaatccagcggcgtccctctgctggatgggatgaatttgtccaccgaaagcctcaacaacctcgaaattcgccagcgtctggcaaatgcggcagagaacgttcgccagggtaacagcattcatctttcgctggaacaaaccgcaattttcccgccgatgatgctctacatggtggcctctggcgaaaaaagcgggcagctcggcacattaatggtcagagccgcagataaccaggagacactccaacaaaatcggatcgccttaacgctctccatcttcgagccagcactcattattacgatggcactgatcgtcctgtttattgtcgtgtcggtactccaacctcttcttcaacttaactcaatgattaattaaggaaagcatatgcgcgcaacggataagcaacgcggttttacattactggaaattatggtggtgatcgtcattatcggcgtacttgccagcctggtggttcctaacctaatgggcaataaagaaaaggcggataagcaaaaagccgtcagcgatattgtggcgctggaaaacgcccttgatatgtacaaactcgacaatcatcactatccaaccacaaatcaggggcttgaatccttagtagaagcgccgacactgccaccgctggccgcaaactataacaaggaaggttatatcaagcgtctgcctgccgatccctggggcaatgattatgtcctcgttaatcctggtgaacatggtgcatacgatctgctttcagcagggcccgatggtgaaatgggaaccgaggacgacatcaccaactggggtttgagcaagaagaaaaagtaagtcagcgatgaatcagcaacgcgggtttaccctgctggagatgatgctggtgctggcgctggtcgctatcacggcaagcgtggtgctcttcacatatggccgggaggatgtcgccagcactcgtgcgcgcgaaacagcggcgcggtttaccgctgcacttgaattagccatcgaccgcgccacgctcagtggtcagcctgtcggtatccatttctctgattcagcatggcgcattatggtaccgggcaaaacaccatcagcctggcgctgggttccattacaagaagatgccgcagacgagagccaaaatgactgggatgaagaactctcaattcatcttcagccatttaaacctgatgacagcaaccagccacaggttgtgattctggccgacggacaaatcacgcccttctctttgttgatggctaacgccgggaccggtgagccgctcctgacgttagtctgttcaggctcatggcccctggatcaaacgctcgccagagatacccgcccatgaacaaacaatcagggatgacactgcttgaagtcttactggcgatgagtattttcaccgctgttgctctgactttaatgagcagtatgcaagggcaacgaaatgccatcgagcgaatgcgtaacgagacgctggcattgtggatagcggataaccagcttcagtcacaagattcattcggcgaggaaaacacgtccagttctggcaaagagttaataaatggcgaagagtggaactggcgcagcgatatccactcaagcaaagacggcacgcttctggaacgcaccataacggtgacattacccagcggtcagacaacctcgcttacgcgttatcaaagcatcgataataaatccgggcaggcacaagatgattaatcgccagcagggtttcacattgctggaggtcatggcggcgctggcgattttctcaatgcttagcgtgctggcgtttatgattttttcgcaagcttccgagttgcatcaacgctcacagaaagaaatccagcagttcaatcagctacagcgcaccatcaccattcttgataacgatctcctgcaactggtcgcccggaggaatcggagtacggacaaaatcatggtgttgggtgaagaagctatttttaccacgcaaagtcgcgatccgctggctcctctcagtgaagcacaaaccttactcactgttcactggtatctgcgaaatcatacgctctaccgtgctgttcgtacttctgtggatggcaggaaggatcaacccgcccaggcgatgctggaacatgtcgagagctttcttctggaaagtaacagcggggaaagccaggaacttcctctctcagtcacgttacatctgcagactcagcaatatggggggttacagcgccgttttgcattacctgagcagttagcgagagaagagtcgccagctcagacgcaggccgggaataataaccatgaataatgaacaacgcggcgtcgcgctgctcattgtactcatgttactggcgctcatggctgctctggcagcagacatgacgctcagttttcacagccagcttcagcgaacccgccaggtaaaccatcatctgcaacggcaatatgatattgaactggcggagaaacttgcgcttgccagcctcacccaggacgttaaagataacgacagacagaccacgttgcagcagtactgggcacagccacaacagttgcagctggaagatggcaatacagtgaagtggcagttacgcgatgcccagcactgttttaatctcaatgcgttagcaaaaatctctgacgacccgctggcttcccctgatttccccgcccaggtattcagtgcgctgctgattaacgccggtatcgatcgcggaaacaccgatgagatcgtgcaatcaatcgctgactatattgatgtcgatgactcaccacgctttcacggcgcagaagatagcttttaccaaagccagacgccgccccggcatagtgccaatcagatgctttttctgactggcgaattacgtcagataaaaggcataaccgaaaacatctatcagcggcttatcccgtatgtctgcgttctcccgaccacggaacttagcatcaatcttaatatgctaacggagaacgatattccgctcttcagagcgttattcctcaataacatcacggatgctgacgctcgggtcttattgcaaaaaaggccgagggaaggctggctaaccacggatgcatttctttactgggcgcagcaggatttctccggtgtgaagccactggttgctcaggtgaaaaggcatctctttccctatagccgctattttacgctgagtacggaaagtatcagcgacgaacaatcccagggatggcaaagccatatttttttcaaccgtaaacagcagagcgcccaaatctatcggcgtacgctgcaactctactaatcataaggatcgtgatgcctgaatcgttgatggtcatacgttcttcctcgacgctgcgtaagcattgggaatggatgacgttctccgcagatagcgtatcttcggtacatacgctcacggacgatcttccgctggagtcgctggccgatcagcccggtgccggaaatgttcatcttttgatcccaccagagggccttttatatcgttccctcacgctgcccaacgccaaatacaaactcaccgcacaaacattacaatggctggcagaggagacgttacccgacaacacccaggactggcactggacggttgtcgataaacaaaacgaaagtgtcgaggtgataggcattcagtcggagaaactcagtcgctatcttgagcgtttacatactgccggactcaacgtgacgcgggttttgccagatggctgctatcttccctgggaagtagatagctggactctggttaaccagcaaacaagctggctcattcgcagtgccgcacatgccttcaacgaactggatgaacactggttacagcatcttgctgcccagtttccgcctgagaatatgctttgttatggtgtagtacctcacggcgttgcagcggccaatccacttatccagcatcctgaaataccatcactgagtttgtattctgccgatattgcattccagcgctatgacatgctgcatggtatttttcgtaaacagaaaactgtaagcaaatcgggaaaatggctcgcccgcctggcagtaagctgtctcgttctcgccattctttcttttgttggcagccggagcatcgcgctctggcatacgcttaagattgaagatcaacttcagcaacaacagcaagaaacctggcaacgttatttcccgcagatcaaacgcacccacaattttcgtttttactttaagcagcaactcgctcagcaatatcctgaagctgtgccgttgctctatcatttacaaacacttctgctggaacaccctgaactgcagttaatggaggcgaactatagccagaagcaaaagtcgctgaccttaaaaatgagtgctaagagtgaagctaatatcgatcgtttctgtgagttaacacagtcctggcttccgatggaaaaaacagaaaaagatccggtcagtggtgtatggacagtaaggaactcagggaaatgattaaatcatggtgggcagaaaaatccacatcggaaaaacagatcgttgcggcactggcggttctctcgctcggcgttttttgttggcttggggtgataaaaccgatagatacctacattgcagagcatcagtcccacgcgcaaaaaattaagaaggacatcaaatggatgcaggatcaagcgagcacccatggtttactcggtcatcctgcgcttacgcagcccatcaaaaatatccttctcgaggaagcaaaacgtgagaatttggctatcacgctggaaaacggcccggacaatactctgacaattcatcctgtcacagctcccctcgaaaacgtctcccgctggctcactacggcacaggtaacatacggtattgttattgaagaccttcagtttactcttgccggaaacgaagagatcaccctcaggcatttgtccttcagggagcaacaataatgacaatgctactgccgctcttcattctggttggttttattgcagattattttgttaatgccatcgcctatcacctctcgccgttggaggataaaacggcgttaacgtttcgccaggtattggttcatttcaggcaaaaaaaatatgcctggcatgatacagtgcccctgatactttgtgttgctgctgctatcgcctgcgccctggcacctttcacgcccatcgtgactggcgcactctttctctatttctgtttcgtactcacgctcagtgttattgattttcgcactcagctcctgcccgacaaactcaccttaccgctgctctggcttggcttggtatttaatgcgcagtatggattaattgatttacatgatgcggtttacggcgcggtagcgggctatggggtgctgtggtgtgtttactggggcgtctggttagtttgtcacaaagagggattgggctacggtgatttcaagctactggccgctgcaggcgcatggtgtggctggcaaacgttgccaatgatactgctgattgcctcgctgggtggcattggttacgccatcgtttcacaacttctgcaacgccggactataaccactatcgcattcggcccgtggcttgcgctcggcagcatgataaacctggggtatctggcctggatctcttattaaccgggagggttctccctcccgacacggctcaaccttcttcgcggatctgtgcttgcagataattttgcaggcccatcttctgaatcagatcaagttccgtttccagccagtcgatatggccttcttcatcacgcaaaatttctatcatcatatcgcggctgacgtaatcatgaacgctatcggcataaccaattgcctcacgcaaattcttcgcgccatccagctcaagtgccagatcagaacgcagcatttcctcaacatcttcaccaatgttcagtttgcccaggtcctgtaagtttggaagaccttccagaaaaagaatgcgctcaatataacgatcggcgtgtttcatctcatcaatggattcatgatactccacatcattgagacgtttgagaccccagtttttaaacattcgggcatggagaaagtactgattgattgcgacaagctcatttcccaacagtttgttgagataatttataactttagtatcacctttcattttttgactccttcgcttccactctttgaagagtagaacggcttacgagtaagtcaaaaaacacactccgtttatgcggactccttaaactccggcagctgcattaattcatcctccatcacttcacgcgcggcccggacacatttaccgcactgattgccgaccggaataaatttttttaattgctggaacgagtgaggggaaaactggcgcacagcctgacgaatttttttatcgctgataccattacaaagacaaacgtacatagagactcccgtatactttcttcaaaaataaatgaaaatagttcttatttcaattacggaaagactcttttttaagcaaagaatagaaatatgaataaaaataatgggctaccaaaagtagcccattgacaaaaaatgcggcgatactggaaggtatcgccaacacatttattgcttagtaaacggcgcgaagatttcgctaaatgcgtacttcggtgcctgttctttagtcaggccgtggaattccggagacaggttagtgccgcccggcaggtcgcgcgcgattgaccagataccaaccataccgagattacgcttctgcgcatcctgcatgaccagacgagcatcagagagatagaacacctcgccctgaacgtcgttcacgccaaccatcggcgtggtacccatcatagcgtcaatttctgcatcgctcttattgggatggaggcctttcaattgtgaatgcaggttggcaatcgcagacgttgcacacttaccgtgaatgttctggccttcggtatttgcagactgacaaatcgcgttaccgtagtccattgtcatcacgttcacacccgccagctcaacacctttcgctttggcatcgctcaggacattcatcccttccggcgtcaggccagtcggcagaattggcaaggtgtaccagatagcaatatctttgccttctgacttccatttatcctgcactttcttcacagcaaggttacgacgttcaatagatgcctgatccgcaacccaggtgccttcgatatcgaagtccaggactttgaggttcaggttatcaacgatgtcataataatgctgcatcagatcgtctacgttcttacaggaagcagccagcggagcgttgttagcaccaccgatagacagcatcacatcgccgccagcctcacgcagagctttgattttgctgtactgagcgtaattctgcataccgtaagcggtaccccatgtcggcagacaggtgttcgcatctttactcaccacaaacgccagcgtgaagtggttgacgttatgattcttagccagcgcagccagatccgggatcgtattcagcgtaaagtcgacatacggtgcataaacgtgtttcggccacgctttcttcggcgtacctacgcgctctttggttccggtccagtcaacaaaaacacgccacgggttgctgtcagaaggagaaactttctgcactttactctgagaaatgtagttcacaccgttaaagcgaatcagcgtatcgctggcataaagcgtttctggattaaactgcggcgcattattcagctcttcgttgctatagctctgagccttacctaacggcttccacgggcggctattgctaccggtggcgttttggttcgccaccagagcagggttgtcactttgcgtccagaacagcgcttcataagcctgcccatcaacaacaacgcgatcacctttcacgtacacagtggatgcggaccatgctttcgccggttcgtatttcttccacgggttatcgccgcccgggacaaagccccatgcgtcttgatcgacagaagttttataatgtgcatcgttataatctacgatgctgtccgcgctgtacgctttgctggcctggaaaccatccgcaacaatgacgccgccgttatcaatttcacaggtagtcgggttaccgtactgactcaattccgcagcggtagctgtacgctcgagacgccatgggttattggagttttcagcgctggtaccccgtgggcaatctttagacccaacccaccaggcgttcttgtaaacattaccattgaaaataacatggtaaatttcgctaccttcctggccgctccacgcttgcaatgagtaatcgttaacgctatccgctggtgttgatggctcgctgttatccggagttggggtcaccggtgtttccggagttggatcaaccggagtcacagcaccgccattattatccggcttaacggaacaggagccagggttaccatactggctgatttctgttgccgttgccgcgcgaacataacgccatgggttactggcatcgttttctttcgcatcgcctgggcaatttgccgcgcctacccaccaggcgttcttataaatgccgccgttatagataacgtaccatgtagaagaaccttcctgacctttccaggctactacagcatagttgtcgtttgacttatcagctggggctggctgaacatcaggagccggtttaacgtccggtgccggtttcacatccggtgaaggctgtggtgctgaagtacaggactgtggattactggtttctgagatttccgttgccgtagcggcacgaacataacgccatgggttgctggcatcattgcttttcgcatcacccggacagttagaagaggctacccaccaggcatttttatataccgcaccattaaagacgacataccaggtctgaccgccctgctgtttattccaggcaactacagaagaattagacggaacagtgccctgtgctggtgtagccgaaccgccattagccggcgtattggatgcaggcgtatttgaatttgaagaagatgagctgccgctcttttcgcaggaaagtgtattgccaaactgactaatttcagcagctgttgcggtacgctttaaacgccacgggttagttgcatcatttgctttcgcttttcccgggcaatttgtagaagaaacccaccaggcattttcataaattttgccatcgaaaataacctgatatttattaccaccttgttggttattccatgcttccattgccaatgctggcagagcggaacacaccagccccataccaatcatagatttagtaaatatatttaatttcattataatcccttgtgacgtaaaaactgcaaaacaaaagtcctacgcaggaattatttacgttttacgagaacccttcaatatgaattaaattacggcattaaaaataagaaaaaagcctgacaaatgaagcattttaaaaacagaaacattcatatttaaaatgttaaattgaattgatattttaaatatgaataatttattcgttctgacagtacgaataagatatgccgtcaacaaatgcaaaaagggcgccgaagcgcccttttcaattcaaaactaattaacgtgtaattagcccagaactttagcaacaacgcccgcgccaacggtacggccgccttcacggattgcgaaacgcagaccgtcgtccatcgcgatcgggtggatcagggtaacaaccattttgatgttgtcgcccggcattaccatctctacgccttccggcagttcgatggtaccagtcacgtcagtagtacggaagtagaactgcggacggtagcctttgaagaacggagtatgacggccgccttcatctttggacagaatgtacacttcagattcgaacttggtgtgcggcttgatggtgcccggcttagccagtacctgaccacgttcgatttcttcacgtttgataccacgcagcagaacacctacgttctcaccagcacggccttcgtccagcagtttgcggaacatttcaacgccagtacaggtagacttctgagtctctttgataccaacgatttcaacttcttcaccaactttgatgataccgcgttctacacgaccggtaacaacggtaccacgaccggagatggagaatacgtcttcgatcggcagcaggaacggcttgtcaatcgcacgctctggttccggaatataagaatccaggaagccagccagttccaggattttcgcttcccactctgcgtcgccttccagcgctttcagagcagaaccacgaacgatcggagtgtcgtcgcccgggaagtcgtactgagacagaagttcacgaacttccatttcaaccagttccagcagctcttcgtcatcaaccatgtcgcatttgttcaggaacacgatgatgtacggaacgcctacctgacgacccagcaggatgtgctcacgagtctgcggcatcgggccgtcagtcgcagcaactaccaggatcgcgccgtccatctgagcagcaccggtgatcatgtttttaacatagtcggcgtgccccgggcagtctacgtgtgcgtagtgacgggtcggggtgtcgtattcaacgtgagaagtgttgatggtgataccacgagctttttcttccggcgcgttatcgatctggtcgaatgcacgagcagcaccgccgtaggttttagccagtacggtggtgattgcagcggtcagagtagttttaccgtggtcaacgtggccgatagtaccaacgttaacgtgcggttttgtacgttcaaatttttctttagacacggctatattccttactatagtgctctccccttcaggagagagcacgggactttggtattaacccttaggcttatttaccacgggcttcaattacggcctgagcaacgttactcggcgcttcatcatacttcaggaattccatagtgtatgatgcacgacctttggtcagagaacgcagctgagttgcgtatccgaacatttcagacagcggtacttcagcgtggatcttaacgccagtaacttcagattcctgacctttgagcataccacgacgacggctcaagtcaccgataacgtcaccggtgttctcttccggagtttctacttcaaccttcatgatcggctcaagcagaactggtttcgctttcttaaagccttctttaaaggcgatagaagcagccagtttaaacgccagttcagaggagtcaacgtcatggtaagaaccgaagtgcagacgaatacccatgtctactaccgggtagcctgccagcggacctgctttcagctgttcctggatacctttatcaacggccgggatgtattcgccagggattacaccacctttaatgtcgttgatgaactcgtagcctttcgggtttgaacccggctccagcgggtacatgtcgataacaacatgaccatactgaccacgaccaccagactgtttcgcgtgtttaccttcaacatcggtaactttctggcggatagtttcacggtaagcaacctgcggtttacctacgttcgcttcaacgttgaattcacgcttcatacggtcaacgatgatgtcgaggtgcagttcgcccatacccgcgatgatggtctggttagattcttcgtcagtccatacacggaaagacgggtcttctttagccagacggcccagagccagacccattttttcctggtcagctttggttttcggttcaactgcgatggagattaccggctcagggaattccatacgttccagaatgatcggcgcatccgggtcacacagggtgtcaccagtggttacgtctttcagaccgatagcagcagcgatgtcgcccgcgcgaacttctttgatctcttcacgtttgttagcgtgcatctgaacgatacgaccgaaacgctcacgtgcagctttcacggagttcagtacggtatcaccagagttaaccacaccggagtaaacacggaagaaggtcaggttaccaacaaacgggtcggtagcgattttgaacgccagtgcagagaacggctcgtcatcacttgcgtgacgttcagccggagtgtctttaccgtcgtccaggataccgttgatcgcaggtacgtcaaccggggatggcaggtaatcaattaccgcatccagcatcgcctgaacacctttgttcttgaacgcagaaccacaggttaccaggatgatttcgttgttcagaacgcgctgacgcagagcacctttgatttctgcttcagtcagttcttcaccacccaggtatttttccatcagctcttcagaagcttcagctgcggattcgatcaggttctggtgccattcgttagccagttcaaccatgtctgccgggatatcttcgtattcgaaggttacgccctggtcagcgtcgttccagttgatagctttcattttcaccaggtcaacaacaccggtgaaatgttcttcagcaccaatcgccagctgcagcggaaccgggttcgcgcccagacgggttttgatctggttaacaactttcaggaagttcgcacccatgcggtccattttgttaacgaacgcaatgcgcggaactttatatttgtttgcctgacgccatacggtttcagactgcggctgaacaccaccaactgcgcagtaaaccattaccgcaccatcgagaacacgcatggaacgttctacttcgattgtgaagtcaacgtgccccggggtgtcgatgatgttgatgcgatgcggctcatactgcttagccataccagaccagaatgcagtagtcgcagcggaagtgatggtaataccacgttcctgctcctgctccatccagtccatggttgcagcgccgtcatgaacttcaccgattttatggtttacaccggtgtagaacagaatacgttcggtagtagtggttttaccggcgtcgatgtgcgcactgataccgatgttacggtagcgtgcgatgggtgttgtacgagccatttgtttcctcgtttatcttttaggcgttcaatttaagtagcccaaagcgggctgcttactggaagcgcccgcctggtgactaaaactccgaagggataaccaacggtagtgtgcgaacgccttgttggcttcggccatacggtgaacgtcttcacgtttcttaactgcagtacctttgttttctgcagcatcagaaagttcgttcgccaggcgcagagccatggatttatcaccgcgtttacgagcagcttcaacgatccaacgcattgccagagcattacgacgaaccggacggacttcaactggtacctgataagtagaaccaccaacgcggcgagacttaacttctacagtcgggcgcacgttttcgagagctacttcgaatgcttccagttcagatttaccagagcgctgagccagggtctccagcgcgctgtatacgatagattcagcagtagattttttaccatctaccatcaggatatttacaaatttagccagcagttctgatccgaacttcggatccggcagaattttacgctgaccaatgacgcgacgacgtggcatggaaatactccgttgttaattcaggattgtccaaaactctacgagtttagtttgacatttaagttaaaacgtttggccttacttaacggagaaccattaagccttaggacgcttcacgccatacttggaacgagcctgcttacggtctttaacgccggagcagtcaagcgcaccacgtacggtgtggtaacgaacacccgggaggtctttaacacgaccgccacggatcaggatcacggagtgctcctgcaggttgtgaccttcaccaccgatgtaggaagtcacttcgaaaccgttagtcagacgaacacggcatactttacgcagcgcggagttcggttttttaggagtggtagtatatacacgagtacatacgccacgtttttgcgggcatgcttccagcgcaggcacgttgcttttcgcaactttgcgagcacgtggtttgcgtaccagctggttaactgttgccattaaatagctcctggttttagcttttgcttcgtaaacacgtaataaaacgtcctcacacaatatgaggacgccgaattttagggcgatgccgaaaaggtgtcaagaaatatacaacgatcccgccatcaccaggccatctggctggggtgcttaaccgtaagtctgacgaaatcagtatagtcaatgagaatgatgtcgttcgaaatttgaccagtcaaaccgcgggcaataaggtcttcgttcagggcatagaccttaatgggggcattacgcagactttcaaggtagcggttaccgtcaactgcggcagttacgccatcttgcaataatagcagttcgtctccttcactgagcagacgcagcagcgcagcaaaatccgtcagccagggtgagcgatgtaatgtgtgcagcataaacgcctcaaaacctcaaaataacatcgtagttggcgagttcgcggcgtaaggcatctgcttcgagcggcgtggcttcgacaacaaagggtgtctgcggatctaacccgcgttcgcgcagtgaagccgcacaaacccagcactgttcaatgtcgtacagacccaacaatttaaaagtggcaatgtaatcacgcgccagcactgcatcgggcttttgtcctggcagcagctgaaaaacgccatcagctataaagaagacagccagatcgtcagttaatgcggaagttgccagtaaagcatctaaaccttcccggcctgcggctgtaccatgaggtgcagtagaaaaaacaaacgcaattcgtttcatcagaactgtaccaccctgtcacaggtcagcgaggcttccgccagcgccccaagtccgcttaaggtaaatccctgctgaaggtttgacgaagccagccccagtcttccggcctccgtttcatcaacaacgccacggcgtaatgctgccgctacgcagatattcagcgccacaccatgttgcgcattcagttgttgccaggcccgtacgaggtcaaattcgtcacttgccggagaggtcaattggttagcgttatagaccccttcccgatagaaaaagacgctgcttaactcatggccatctgctatcagcgcctgcgcaaactgaaaagcactactcgcctgttgcgtaccgtatgctggcccggtcaccacgatggcaaaacgcattacttatcttgcccctggaaatcaccgctcttgaactggcggatgtagagatagacagtgtgtttggagatgttcaggcggtcagcaacctggttgatcgcatctttaatatcgaagatccctttctcgtagagattcagcacgatctgacgatttttggcgttattagaaacattgcgatcggcattcacttcttcgatggtgaactccagcgtttgggtaaccagatcttcaacagaagaggcaaagttgacgcttgaaccgacatccggggtttctggcggcacaaaggtgctcataatctgcgagaagggaacatcaagattcatattgatgcacagcagaccaattacacgctgttcgcggttacgaatcgcgatagtcagggacttcattaatacgccgcttttggcgcgagtaaagtagcatttagaaacgctgctatccgctcccgtcatatcgtgcagcatacgtagcgccaggtcagtaattggcgaaccaatcttccggcctgtatgttcaccgttagcaatgcgaatggctgaacattttagatcctgcaaagagtgcaaaacgatttcacagtgggagccaataagcatcgctaacccgtccaccaccgcttcgtaggatttcagaatatcaaaatcggtctggtcgaaaggacgttgatccagtaaatccaactcactggtttcgttggttaaaagcgacctggacatgaaaaaaaacactccttttcaggagcctgtcgttaacttttcagggcaggctcattaatgatgcgggtaactaaattaatacagcggaggttccgctttccagcactaattatatccggcctgtaataaaaaaaccgccgcctggtcaggcggcggttcttaatgcttattttttagcagaatctgcggctttcgcatcagcttccggctttgcatcagccttcggcgctggtttcacatccagcagctctacgtcaaacaccagggtagaattcggtgggatccccggaacacccgctttgccgtaagccagttctggtggaataaccagtttgatcttaccgcctttcttgatgttcttcagaccttctgtccaacccgggataacaccgtccagacggaaagaaagcggttcaccacgggtgtaagagttgtcgaactctttaccgtcgatcagcgtacctttgtagttcactacaacagtatcgctgtctttcggtgcttcgcctttaccggcttctactacctgataaaccagaccagttgaagaggttttcacacctttctctttggcaaatttctcgcggtactctttaccttttgcttcgttatcagccgcgtctttttccatcttcgcctgagcagaagacttcacgcgagcttcgaatgcttgtagagtctgttcgatctcttggtcggagagtttgctcttatcagcaaatgcatcctgaacaccagcgatcagctgatctttatccagtttgatgcccagtttttcttgttcttttagagagttttccatgtaacgacccagcgaggcacccagtgcataagctgatttctgatcgtcatttttgaacgctgctttgctgtcagcagctgtagcaggttttgcagcttcagcagcaaaagtgattggtgcatgcagggcaacggccattgtggtcgccagcagcgttactttaaacagtgatttcatccatatctccaggatcggggcatctcaccccagggttaactattatcagaagggtactataaagcgttgtcgaacaaatctacatacagacacgccctattatcatctattttcagactctttttgtttaaattagtttcgatgaccgcgaaatgagtgctgtctcgggcagcaaagttaagtagaatccgcggcgaccattcgacaaaagaggtgaatcatgcaggatttatcattggaagcacgcctggcagagctggagagccgactggcttttcaggaaatcaccattgaagaactgaacgtcacggtgaccgctcatgaaatggagatggcgaaactgcgcgatcatctgcgtctgctgaccgagaagttaaaagccagccagccgtcgaacatcgcgtcgcaggctgaagaaacgccaccgccacattattgaggcgtaaaaaaagcggggattccccgcttttttgtcactttttcggtattagtggcaaccgcaaccgccgttgcctttaccgccacagcagccttcgccaccgtgttcatgaccgtgatcgtggccatgaccgccgcagcaaccgtcgtggtcgtgatcgtggtggtgatcgtgcgcgccgtgaacgtgaccatgagccagttcttcttcagtcgcttcgcgaatcgccacaacttcaacgttgaatttcaggttctgaccggccagcatgtggttaccatcaaccacgacgtgatcgtcttcaaccgcagtgatttcaaccggtaccggaccctggtcggtttcagccaggaaacgcatacctacctgcagttcatcaacgcccataaatacgtctttaggaacacgttgcaccaggttttcgtcgtactgaccgtaagcgtcgttcgcgccaacagcgacatcaaatttgtcgccaacttcatgaccttccagcgccgtttccaggccagagatcagggaaccgtgaccatgcaggtagtccagcggcgcactcaccggagactcatcaaccaacacaccgtcttctgtacgtacctgataggccaggctgaccaccaggtcttttgctactttcatgatatctcctgagcatgggaagaatagtggcgcagattgtagcggaattctgcagccgtgtactcactagcttaaaaaaactcggcgcatatcgctagtccggatgaaaaatcccgatcacttgctcatctttgcgaacgtgatcgcgggcttctttgtctgcttctcgcatctgatgtccgcacttaacacattcaacaatatcaatattattttcgcgccacatcgccattgaatcctgcgcctgacaggccgggcattttgcgcccgcaataaaacgttttcggattgccatctttaccctctactcaaattcatcccagccgtccagctggcgtcgttcttgttgcatttcacgctggaaaatctcttccagttcgcgtcgggcttccctggcgcgagaaatttgtacggtatcggcatgcattgggatgagctctcgcagcatccgcatatccaggcggcgaaaatgcagttgcgctcgctgtgcctgatgcggatgcatgccaagcgtgaccagcgtcttgcgccccagctctaacgcactggagaatgtttcacgggaaaactgcgtcacccctgcctgtaataactcatgcgcttccacacgtccgcgcgctcgcgcaagaatatgcaaatgcggaaagtgctgttggcatatttccaccagcttcatggtgtcttccggctcgttacaggtaatgacgatagactcagcggcctctgcacccgcagaacgtaaaagatcgacctgcgtggcgtcgccgtaataaactttgtagccgtatttacgcatcaggttaacggcgctgatatcccgctccagcacggtaatgcgcattttatttgccatcagcaaacgaccaatcacctgaccaaaacgcccgaagcccacgacaatgacctggggtttatcatcgttgacccacggtttttcgtcttcttcttccggtccgttaaactggcgggatagccatttatccaccagcttcatcagcaacggcgtggtcatcatggaaagcgtcaccgtcaccagcaacaacgccatctggtcgccctggaataagcgttgtgaagaagcggtagaaaagaggacaaaggcaaactcaccaccctgactcaacacgccagcaaactgcatccgctctgagctacgcacgccatacaatcgcgccagcagatacagcacgagaattttcaccgccaccagcacaaccacgcttatcactacccacaacagatgggtataaagcaccccgaggttgagtgacatgccgacagagataaagaacaaaccgagcagcaagcctttgaagggatcgatagccgtttccagttcatggcgatattcactttccgccagcagcacgcccgcaataaatgtaccgagcgccatcgacagccccagcgcatccataaacaatgcggaacccaacaccagcagcagcgtcgcggcggtgaacacttcccgcacgccagaagctgcaataaagcggaataccggacgcagtaaatagcgcccaccaatcagcatgccgacaaacgccagcaccttcatgccgaccttcatccagtcgaaatgttcgtctgccgaccccgccaacaacggcactaacgccagtgctgggattactgccagatcctgaaacagcagaaccgaaaacccgagctggccggattcgctgcgattcatccctttctcacgcatcaattgcaacgccattgcagttgaagacatcgcaaggccaatgccaccgaccaccgccgcctgccaggcgaaatccgtcagcatcaataatcccgccagcaacgccgcgcttaacagcacctgtgccgcgcctacgccaaaaatcgaacgccgcagttgccaaagtttggagggattcaactcaaggccgatgataaacatcaggaataccacgccgagttccgaaaagtggaggatctcatcgacgtcgctaataaaccccagcccccacgggccaattgcaatccctgccagcaaatatcccaacacagcgccaatacccagccgcgatgccagcggcaccgcagccaccgccgcgaagagaaacagcactcctgcgagtaaaaaatcggaaccttccatcagcggcctcctggagacagcggatttgccagccagtcaccgtaggctctggcgtggctcgccagctcctgtgcgctttgccgtctcgcccagtaaataatgatgggacttaaccaatgcatccggcacatgcccgccgccagttcaaaggggcgcagcacatcgctcatcgggtagcgattcagcgcgtcataacggtaagcactttccggctcgccggtggtaatcacgctacgccagtactttcccgccagttggtttcctcccggcccgctggcaaaaccacgacttaatacccggtccagccactctttcagtagcgccgggcagctataggtataaagaggatgctgaaagacaatcacctcgtgctcgcgcagtaatgcctgctcacgggggatatcaataaaaaaatcgggatagtgcgcgtaaaggtcgtgcacggtaacattgctgagctgcgtggccggtttaagcagtacccggtttgccaccgagtcctgagattccggatgggcatacagcagcaaaactttcgctggctgagacatcatccccctcccggtatggtttttgtgtatagtcgctgttttgggctaccattgcgcccggtgcggcagctcgcccatacattacattatcataatgataagttaacatagtctgaacatacggcaccttatgattgttttctcctcgttacaaattcgtcgcggcgtgcgcgtcctgctggataatgccaccgccaccatcaaccctgggcagaaagtcggcctggtgggtaaaaacggctgtggtaaatctaccctgctggcattgctgaaaaatgaaatcagcgccgacggcggcagctacacctttccgggaagctggcaactggcgtgggtgaatcaggaaacgccggcgttaccgcaagcggcgctggaatatgtcattgacggcgaccgtgaatatcgtcaactagaagcgcagctacacgacgccaacgaacgtaacgacgggcacgccattgcgaccattcatggcaagctggatgctattgacgcatggagtattcgctcccgtgctgccagcctgctgcacggcctcggtttcagcaatgaacaactggagcgcccggtaagtgatttttccgggggctggcgtatgcgtcttaaccttgcccaggcgctgatttgccgttcagacttgctgctgctcgacgaaccgactaaccacctcgatctcgatgccgttatctggctggaaaaatggctgaagagctatcagggcacgctgatcctgatctctcacgaccgcgacttcctcgatccgatcgtcgataaaattattcatatcgaacaacaaagcatgttcgagtacaccggcaactacagttcgtttgaagtacagcgcgccacccgtctggcgcagcaacaagcgatgtacgaaagccagcaggaacgcgtagcgcatctgcaaagttatatcgaccgtttccgtgccaaagccaccaaagcgaagcaggcccagagccgcattaagatgctcgagcgtatggagctaattgcccccgcgcacgtcgacaacccgttccgctttagcttccgcgcgccggaaagcctgccaaatccgttactgaagatggaaaaagtcagcgcgggctatggcgatcgcattattctcgactcgattaaactgaacctggtgcccggctcgcgtattggtctgttaggccgcaatggcgcgggtaaatcgacattaatcaaactgttagccggtgaacttgcgccagtcagcggtgaaattggtctggcgaaagggatcaaactcggctacttcgcccagcatcaacttgaatacctgcgcgccgacgaatcacctattcaacatctggcacgtttagcgccgcaggagctggaacaaaaactgcgtgactacctcggcggctttggtttccagggcgataaagtaaccgaagaaacgcgccgcttctccggtggggaaaaagcccgcctggtgctggcattaattgtctggcagcggccgaatctgctgctgctcgacgaaccgactaaccaccttgacctcgacatgcgtcaggcactcaccgaagcattaatcgagtttgaaggcgcgctggttgtcgtttcgcacgaccgtcatttgctgcgttccaccactgacgatctctacctggttcacgatcgtaaagtcgaaccgttcgacggcgatctggaagattatcaacagtggttgagcgacgtacaaaagcaggaaaaccagaccgacgaagcgccaaaagagaatgcgaacagcgcccaggcacgtaaagatcagaagcgtcgggaagctgagctgcgtgcgcaaacccagccactgcgtaaagagattgcccgtctggaaaaagagatggagaagctgaacgcgcaactggcgcaggcggaagagaaactcggcgacagcgaactgtatgaccagagccgtaaagcggagttgaccgcctgcctgcaacagcaagccagcgccaaatccggcctggaagagtgcgaaatggcatggctggaagcccaggagcagcttgagcagatgctgctggaaggccaaagcaactgatggcgcagataacgacgaccgatgccaatgaattcagcagcagtgctgaattcatccccatgcgcggctttagcaattgtcatctgcaaaccatgctgccgcgtctgtttcgtcgtcaggtgaaattcaccccgtactggcagcggctggagttgcccgacggcgattttgtcgatcttgcgtggagtgaaaaccctgcacaggcgcaacataaacctcgtctggtggtgtttcacgggctggaaggcagtctcaacagcccttacgcccacggtctggttgaggcggcgcaaaagcgcggctggctgggcgtggtgatgcattttcgcggatgcagcggtgaaccaaaccgtatgcaccgcatttaccattcgggcgaaaccgaagacgccagttggtttttacgctggctgcaacgcgaatttggtcatgcgccaacggctgccgtcggctattcgctcggcggtaatatgctggcctgtttgctggcaaaggaaggcaatgatctcccggttgatgcggcggtgattgtctctgcgccgtttatgctggaagcctgtagctatcatatggaaaagggcttttcccgcgtttatcagcgttacttgctgaacctgttaaaagccaatgccgcgcgcaagctggcagcctaccccggaacgctgccgattaatctcgcgcagttaaaatcggtacgtcgcatccgtgaatttgacgatctcatcaccgccagaattcacggctacgccgacgctatcgactattatcgtcagtgtagcgccatgccgatgctgaaccggatcgccaaaccgacgctgattattcacgccaaagacgatccgtttatggatcatcaggtgatcccgaaaccggaaagtctccccccgcaggtggagtatcaactgactgaacatggcggtcatgttggctttattggcggtacattacttcatccgcaaatgtggctggagtcacgcattcctgactggttaacaacgtatctggaggcgaaatcatgttgattccgtggcaagacctctcccccgaaacgctggaaaatttaattgaaagctttgtgttacgtgaaggcaccgattatggtgaacatgagcgtacacttgaacagaaagtcgccgacgtcaaacgccagctacagtgcggagaagcggtgctggtatggtcggagctgcacgaaacggtcaatattatgccgcgcagtcagtttcgcgaataacctgcaaccgtcggcggacgagataataatgatagctaagtcatggagttactatgtctgccaaacatccggtcattgcggtaacaggatccagcggcgcgggaccaccaccaccagcctcgcgtttcgtaaaatattcgcgcagttaaatctgcatgcagctgaggtggaaggcgacagttttcaccgttacacccgcccggaaatggacatggcgatccgcaaagcgcgcgacgccgggcggcatatcagctacttcggccccgaggctaacgacttcggcctgctggaacaaaccttcattgaatacggtcagagcggcaaagggaaatctcgcaaatatctgcatacctacgacgaagccgtaccgtggaatcaggtaccggggacattcaccccctggcaacctttaccggaacccactgatgtactgttttatgaaggtttacacggcggcgtagtcacgccacagcataacgttgcgcagcatgtggacttactggtcggcgtggtgcctatcgttaaccttgagtggattcaaaaactgatccgcgacaccagcgagcgcgggcactcacgagaagcagtgatggactcagtagtgcgttcaatggaagactatatcaactacatcacaccgcagttttcccgcacccatcttaacttccagcgcgttcccaccgtcgacacttcaaacccgttcgcggcaaaaggtatcccgtcgctcgatgaaagctttgtggtgatccattttcgtaatctggaagggatcgatttcccctggctgctggcgatgttgcaaggctcattcatttcccacatcaatacgttagtggtaccgggcggcaaaatgggtctggcaatggaattaattatgctgccgctggtgcaacgattgatggaaggaaagaaaatcgagtaactctgctattacgccggataaaatactatccggcttcacaacgggatagttaagtcacgcggcaaccacttcatacgagtgagtaatattcaccgctttttccagcatcaacgccactgaacaatatttctcggcagagagatcaaccgcacgcgcaaccgctgcgtctttcaggtcgcgaccggtgacgataaaatgcagattaatgtgcgtaaacaggcgtggtgcctcttcgcggcgttcagaggtcaattttacttcacaatcgaccacatcctgacgccctttttgcaggatcgaaaccacatcgatggcactgcaaccacccgccgccatcaacaccatttccatcggacttggtgctttatcgcctgagttgccgtccattaaaatctgatgaccagaggcggattcgcccagaaaagttaacccttcgacccacttcactcgcgcttgcatttttgctactccactgcgtcaattttcctgacagagtacgcgtactaaccaaatcgcgcaacggaaggcgacctgggtcatgctgaagcgagacaccaggagacacaaagcgaaagctatgctaaaacagtcaggatgctacagtaatacattgatgtactgcatgtatgcaaaggacgtcacattaccgtgcagtacagttgatagccccttcccaggtagcgggaagcatatttcggcaatccagagacagcggcgttatctggctctggagaaagcttataacagaggataaccgcgcatggtgcttggcaaaccgcaaacagacccgactctcgaatggttcttgtctcattgccacattcataagtacccatccaagagcacgcttattcaccagggtgaaaaagcggaaacgctgtactacatcgttaaaggctctgtggcagtgctgatcaaagacgaagagggtaaagaaatgatcctctcctatctgaatcagggtgattttattggcgaactgggcctgtttgaagagggccaggaacgtagcgcatgggtacgtgcgaaaaccgcctgtgaagtggctgaaatttcgtacaaaaaatttcgccaattgattcaggtaaacccggacattctgatgcgtttgtctgcacagatggcgcgtcgtctgcaagtcacttcagagaaagtgggcaacctggcgttcctcgacgtgacgggccgcattgcacagactctgctgaatctggcaaaacaaccagacgctatgactcacccggacggtatgcaaatcaaaattacccgtcaggaaattggtcagattgtcggctgttctcgtgaaaccgtgggacgcattctgaagatgctggaagatcagaacctgatctccgcacacggtaaaaccatcgtcgtttacggcactcgttaatcccgtcggagtggcgcgttacctggtagcgcgccattttgtttcccccgatgtggcgcagactgatttatcaccccgatatcaactatgcacttcgacaaacgctggtgctatgtttgcccgtggccgttgggttaatgcttggcgaattacgattcggtctgctcttctccctcgttcctgcctgttgcaatattgcgggccttgatacgcctcataaacgttttttcaaacgcttaatcattggtgcgtcgctgtttgccacctgtagcttgctgacacagctactactggcaaaagatgttcccctgccctttttgctgaccggattaacgctggtacttggcgtcactgctgagctggggccattgcacgcaaaattgcttcctgcatcgctgctcgccgccatttttaccctcagtttggcgggatacatgccggtctgggaaccgttgctcatctatgcgttgggcactctctggtacggattgtttaactggttttggttctggatctggcgcgaacaaccgctgcgcgagtcactaagtctgctgtaccgtgaactggcagattattgtgaagccaaatacagcctgcttacccagcacaccgaccctgaaaaagcgctgccgccgctgctggtgcgccagcaaaaagcggtcgatctaattacccagtgctatcagcaaatgcatatgctttccgcgcaaaataatactgactacaagcggatgctgcgtattttccaggaggcgctggatttacaggaacatatttcggtcagtttgcatcagccggaagaggtgcaaaagctggtcgagcgtagccatgcggaagaagttatccgctggaatgcgcaaaccgtcgccgctcgcctgcgcgtgctggctgatgacattctttaccatcgcctgccaacgcgttttacgatggaaaagcaaattggcgcactggaaaaaatcgcccgccagcatccggataatccggttgggcaattctgctactggcatttcagccgcatcgcccgcgtgctgcgcacccaaaaaccgctctatgcccgtgacttactggccgataaacagcggcgaatgccattacttccggcgctgaaaagttatctgtcactaaagtctccggcgctacgcaatgccggacgactcagtgtgatgttaagcgttgccagcctgatgggcaccgcgctgcatctgccgaagtcgtactggatcctgatgacggtattgctggtgacacaaaatggctatggcgcaacccgtctgaggattgtgaatcgctccgtgggaaccgtggtcgggttaatcattgcgggcgtggcgctgcactttaaaattcccgaaggttacaccctgacgttgatgctgattaccaccctcgccagctacctgatattgcgcaaaaactacggctgggcgacggtcggttttactattaccgcagtgtataccctgcaactattgtggttgaacggcgagcaatacatccttccgcgtcttatcgataccattattggttgtttaattgctttcggcggtactgtctggctgtggccgcagtggcagagcgggttattgcgtaaaaacgcccatgatgctttagaagcctatcaggaagcgattcgcttgattcttagcgaggatccgcaacctacgccactggcctggcagcgaatgcgggtaaatcaggcacataacactctgtataactcattgaatcaggcgatgcaggaaccggcgtttaacagccattatctggcagatatgaaactgtgggtaacgcacagccagtttattgttgagcatattaatgccatgaccacgctggcgcgggaacaccgggcattgccacctgaactggcacaagagtatttacagtcttgtgaaatcgccattcagcgttgtcagcagcgactggagtatgacgaaccgggtagttctggcgatgccaatatcatggatgcgccggagatgcagccgcacgaaggcgcggcaggtacgctggagcagcatttacagcgggttattggtcatctgaacaccatgcacaccatttcgtcgatggcatggcgtcagcgaccgcatcacgggatttggctgagtcgcaagttgcgggattcgaaggcgtaatgcaggctaaaccatcggataaggcattcacgccgcatccgacatcttttgcctgatgcttcgtatttacgccccaaccaccttcgccaccgcgtgggcgaaacgttgcatcccttcatcgatatccgcatcttccaccaccagcgacggtgcaaaacgcatcacatccggtccggcattcagcaccattacgccagcctctgcgcccgcatacaggaaatcacgcgcccgacctttgtactgtggtttcagctctgcgccaatcaacagccccataccgcgaatatcgctaaatacatcgtactgctgatcgatcttctgcagatggtcaacaaaacgctggcgtttcgcctgaatgccttccagcacttcaggggtattgatgatatcaaacgccgcccccgctactgcacaggccagaggattaccgccgtaggtggaaccgtgagaaccaggatgaaacgcagaagcaatttccgccgtggtcagcatggcgctaatcgggaagccgccgcctaacgctttcgcagaggtcagaatatccggcgtaacgccgtagtgcatgtaagcaaacaaatcgccggtccgccccatcccgcactgcacttcatcaaacaccaataatgcctgatgttgatcgcacagctcgcgcaagccctgcaaaaactctggcgtcgctgccgtcacaccgccctcgccctggatcggctcaaccaccaccgcacaggtgtgatcatccatcaccgctttcactgcatggagatcgttaaagggaacgtggatgatgtctgccggtttcggcccaaagccgtcggaatattttggctgcccacccaccgaaacggtaaacagcgagcgaccatgaaaagcgttatggaaggcaataattttggttttgaacgggctatgacgcacacaggcgtaatggcgtgccagtttaaaggcggtttcgttagcttccgtgccggagttcataaacaccacgcgttcggcaaacgttgcctcaatcagtttacgcccaagacgcagcgccggttcattggtgaaaacgttactgatatgccacagagtttcgccctgggtttttaacgcgttcaccagcgcaggatggcaatggcccaacgccgtaactgcaatgccacccgcgaaatcgacatactccttgccttgctgatcccagattcggctgccctgaccttttaccggaataaactctgccggagcataaatcggcaggatcacttcatcgaaagtcgcgcgtgtaattgctgtttgttcaattgccatctcatgatcaccctgttacgcataaacaaatgtgaaattataaccacaaaatatgcataaaaaatcactaaatggcaatcagaaatcagcgatgcaggaaattagccagcagttgatgtccttgttcgctaagaatactttctggatggaactgcacaccttccagatcccactggcgatggcgaatccccataatctctcgggtttcgctccaggccgtcacgtcaaagcacgctggtaatgagtcaggttccaccaccagcgaatggtagcgtgtcacggtaagtggatttgccagcccccgaaatacgccctcaccgttatgtgtaatcggcgaggttttgccgtgcatgacctttgcggcgcgcacaactttaccgccaaatgcctgcgccattgcctgatgaccgaggcagacgccaagaatcggcaagcgcccggcatagtggcgaataacgtcaagggagatcccggcttcatctggcgtacaggggccaggtgagatgacaattttttgtggtttaagggcgtcgatatccgccagcgtcaacgcatcgttgcgcttaaccagcacatccgcccccagttcacaaaagtactggtagaggttccaggtaaaagaatcgtagttatctataagcaggatcatggcggctccggtacaaaagaaccgcgctattttactcagattccccggcttcgcttaccactttgctaaatatcatctgcagtgcggtgagatcccccattgccccactctgatttgcctgattccaggcctctttttcgataccctgccagctcagttgatatccggcatgaatcgccagttgctcgaagaagatccgctgtgccagaccacttcccacccggaagggatgcagcacgttgatttcacaatagtaatgcgccagccgctcgacgaacttcgctttctccaggccaaccagataaccttcttcctccagatcctgcatcagggcattgccctctttttcgatataagcaaagtggcagaacggcgtatcaccctgataaatatcaacttcacgcagttgccctgcccagtcgaaaatatcctgatacagctggcgatggatagttcgcaaatgcggtaaaccgcgcaccagcggaccaagctcaatggtcgcagcacgcagcgccgtcatttcgtaagcggcctgttccagccgctgctgctggcggatgttcagccggttacgcatgatatcaaggcctggataaagatacggatcgcgcccttcgccgaatttatcgctcatagtgactcctcagctcttcaaggcgcgctaaagcctctgcggcagtaagagtgactaaaggcatctcgacgccttcaagacggcgactggcctgaaaattacgattacgctgaagctcccagagacgggacttttgcttatcggtgagtttcttcacttgatgcctccctgaacgtgtccatttgccacaagtataagcggcaaatccgggttacgccgggagagcagaagcgcgggcaagattgcccgcgcgagaaatcattacggcaggactttagcggaaaggataactaccggttttgacggcacattctggtacggaccaacgtcatgagtcggcacctgggaaatcttatcggcaacgtccatgcctttcaccactttaccaaataccgcgtaaccgaaatcacgctgaccatggtcaaggaaggcgttatcggcaacgttgataaagaactggctggtggcgctgtctttgtcagcggtacgtgccatcgcgatggtgccacgcgtgttgcgcaggccgttatcggcttcatttttgattggcgggtttggttttttctgctgcatctgctcggtgaaaccgccgccctgaatcataaagccaggaatgacgcggtgaaaggtagtgttgttataaaaaccgctgttcacataatcgacaaagttttgcacagacactggcgctttttgtttatccagctccagttcgatgttaccagctgaggttgtcaacaatacgtgcgggtcccctttcgctgccattgctgcgggagaaagagcagaaagagcgaaaacagcagccatcgccgccagggtcgatttgaacatgagatttccttaacaaacagagcagaaaaaaagcaagtgaagagattctaaatagccttcaagaacaaggccatccctttacctaattttacgtatctgaaatatatgtaacctgacgatcactttttattccgtgatcaaaatcacctcttaaaatgcaatttagcaaccgattgcaataaaacatttaaacagatcacaaaatcacctaaaatcgcccgctcgcggcatatcccgctatgccattttatttttgaacgcaggccaatcatgactaacagcaatcgcatcaagctcacatggattagctttctctcctacgcactgactggtgcgttggttattgtcaccgggatggtgatgggaaatatcgccgattatttcaatctgcctgtttccagtatgagtaataccttcaccttcctcaacgccggcattttaatctctatcttcctcaacgcctggctgatggaaatcgtcccgttgaaaacgcagttacgttttggctttctcctgatggtgctggcggttgccggtttgatgttcagccacagcctggcgctgttctcggcggcgatgttcattctcggggtggtcagcggcatcaccatgtcgattggtacattcctggtaacacaaatgtatgaagggcgtcagcgcggttcccgcctgttatttaccgactccttcttcagtatggctgggatgattttcccaatgatcgccgcgtttctactggcgcgcagcattgagtggtactgggtttatgcctgcatcgggctggtgtatgtcgctatttttattctgaccttcggctgtgagttcccggcgctgggcaaacatgcgccaaaaacggatgctccggtagagaaagaaaagtgggggatcggcgtactgtttctctctgttgcggcgttgtgctacatcctcggtcagttaggttttatctcctgggtgcctgagtatgccaaaggcctgggcatgagcctgaacgacgcgggcacgctggtgagtaacttctggatgtcatacatggtcggcatgtgggcgttcagctttattcttcgcttctttgatttgcaacgcattctgaccgtactggctggtctggctgcgattctgatgtacgtctttaacaccggaacaccagcacatatggcgtggtcaattctcgctctgggcttcttctccagcgcgatctataccaccatcatcaccctgggttcacagcagaccaaagtaccgtcgccaaaactggttaactttgtcctgacctgcggaaccatcggtactatgttgacctttgtggttaccggcccgatcgttgaacatagcggtccgcaggcggcactgcttacagcaaacggtctgtacgctgtcgtctttgtgatgtgcttcctgttaggtttcgtcagccgtcaccgtcagcataacaccctgacctctcattaattgctcatgccggacggcactatcgtcgtccggccttttcctctcttcccccgctacgtgcatctatttctataaacccgctcattttgtctattttttgcacaaacatgaaatatcagacaattccgtgacttaagaaaatttatacaaatcagcaatatacccattaaggagtatataaaggtgaatttgatttacatcaataagcggggttgctgaatcgttaaggtaggcggtaatagaaaagaaatcgaggcaaaaatgagcaaagtcagactcgcaattatcggtaacggtatggtcggccatcgctttatcgaagatcttcttgataaatctgatgcggccaactttgatattaccgttttctgtgaagaaccgcgcatcgcttatgaccgcgtacacctctcgtcttacttctctcaccacaccgccgaagagctgtcgctggtgcgcgaaggcttctacgagaaacacggcatcaaagttctggtcggcgaacgcgctatcaccatcaaccgtcaggagaaggtgattcactccagcgccggacgtaccgttttttatgacaagctgatcatggcaaccggttcctacccgtggatcccgccaatcaaaggttctgatactcaggactgctttgtctatcgcactattgaagacctcaacgccattgaatcctgcgcccgtcgcagcaaacgcggtgccgttgttggtggcggcctgttaggtctggaagccgcaggcgcgctgaaaaacttaggtattgaaacccacgttatcgaatttgcccctatgctgatggcagaacagcttgatcagatgggcggcgagcagctgcgtcgcaaaatcgaaagtatgggcgtgcgcgttcacaccagcaaaaacacccttgagattgtgcaggaaggtgttgaagcgcgtaaaaccatgcgttttgccgacggcagcgaactggaagtcgactttatcgtcttctctaccggtatccgtccgcgcgataagctggcaacccagtgtggtctggacgttgctccgcgtgggggtattgtcattaatgattcctgccagacttccgatccggatatctacgccatcggtgaatgcgcaagctggaacaaccgtgtatttggtctggtagcacctggctacaaaatggcgcaggtcgccgttgaccatattctcggtagcgaaaacgcctttgaaggtgctgaccttagcgccaagctgaaactgctgggcgtagacgtaggcggtattggtgatgcgcacggtcgcacgcctggcgcacgtagctacgtttacctcgacgaaagtaaagagatctacaaacgcctgattgtcagcgaagacaacaaaaccctgctcggtgcggtactggtgggcgataccagcgactacggtaacctgctgcaactggtgctgaacgctatcgaactgccggaaaacccggattccctgatcctgccagcacactcgggtagcggcaagccgtctatcggtgttgataaactgccggacagcgcgcaaatctgctcctgcttcgacgtcaccaaaggtgatctgattgctgccatcaacaaaggctgccacacagttgcggcgctgaaagctgaaaccaaagcgggtactggctgcggtggctgtatcccgctggtcactcaggtactgaacgcggaactggcgaaacagggcatcgaagttaacaacaacctgtgcgaacactttgcttattcgcgtcaggaactgttccatttgatccgcgttgaaggcattaaaaccttcgaagaactgctggcgaaacacggcaaaggctacggttgtgaagtttgtaaaccaaccgtcggttcgctgctggcctcctgctggaacgaatacattctgaagccggaacatactccgctgcaggattctaacgacaacttcctcgctaacatccagaaagacggcacctactcggtgatcccgcgttctccgggcggtgaaatcaccccggaagggctgatggcggtaggtcgtatcgcgcgtgaatttaatctctacaccaagatcactggctcccagcgtctggcgatgtttggcgcacagaaagacgatctgccggagatctggcgtcagctgattgaagccggcttcgaaaccggtcatgcctatgcgaaagcactgcgtatggcgaaaacctgcgtgggtagcacctggtgccgctacggcgttggcgacagcgtcggcctcggcgtggaactggaaaaccgctacaaaggcatccgtacgccgcacaaaatgaagttcggtgtctccggctgtacccgtgaatgttcagaagctcagggtaaagacgtgggtattatcgccactgaaaaaggctggaacctgtatgtttgcggtaacggcggcatgaaaccgcgtcatgcggatctgctggcggcggatatcgatcgcgaaacgctgatcaaatatctcgaccgcttcatgatgttctacatccgtactgccgacaaactgacgcgtaccgcaccgtggttagaaaacctcgaaggcggcatcgattacctgaaagcagtgatcattgacgacaaactggggctgaacgcacatctggaagaagagatggcgcgcctgcgtgaagcggtactgtgtgagtggactgaaacggtcaatacgccgtctgcgcagactcgcttcaaacacttcatcaacagcgacaagcgtgacccgaacgtgcagatggtgccagagcgcgaacagcaccgtccggcaacgccgtatgaacgtatcccagtaactctggtggaggacaacgcatgagccagtggaaagacatctgcaaaatcgatgacatcctgcctgaaaccggcgtctgcgcgctgttaggtgacgagcaggtcgcgattttccgcccgtatcacagcgatcaggtgtttgcgatcagcaacatcgacccgttcttcgagtccagcgtgctgtcacgcggactgattgcggaacaccagggcgagctgtgggtcgccagcccgctgaaaaaacagcgttttcgcttaagcgacggcttgtgcatggaagacgaacagttttccgtcaaacattacgaagcgcgagtgaaagacggcgtggtgcagctgcgcggttaatgttttaacgggaggcgcaatgcctcccctttttgcatggtcctgtaataatcttcggtatattgcaggacattttttaaactttttgttttattttttgtttttattttttaaaggataatcaaatgtttacagacactattaataagtgtgcggctaacgctgcgcgcattgcacgcctgtcggcaaataacccgctcggcttttgggtcagctccgccatggcgggcgcgtatgtgggtcttgggatcatcctgattttcacgctcggtaatttgctcgatccatccgtacgccctttggtgatgggcgcgacctttggtatcgccttaacgctggtgattatcgccggttctgaactgttcaccggacacaccatgttcctcacctttggggtaaaagcgggcagcatcagccacgggcaaatgtgggcaatcctgccgcaaacctggctgggtaacctggtcggttccgtcttcgttgccatgctctatagctggggcggcggtagcctgctgccggtagataccagcatcgttcactccgtcgcgctggctaaaaccactgcaccggcaatggtactcttcttcaaaggtgcattgtgtaactggctggtttgcctggcaatctggatggcgctgcgcactgaaggggcggcgaaatttatcgctatctggtggtgtctgctggcatttatcgcgtccggctacgagcactctatcgctaacatgacgctgttcgcgctctcctggttcggcaaccacagcgaagcctacacgctggcgggtattggtcataacctgctgtgggtgacgctgggtaatactttatcaggtgccgtattcatgggattgggttattggtatgctacgccgaaagcgaatcgtccggttgcggacaaatttaatcaaactgaaacggctgccggttaattactaaggggtttttacgtggatcatttgcctatattttgccaattacgcgatcgcgactgtctgattgtcggcggtggtgatgtcgcggaacgcaaagcaaggttgctgttagacgcaggcgctcgcttaacggtgaatgcattagcgtttattccacagttcaccgcatgggcagatgcaggcatgttaaccctcgtcgaagggccatttgatgaaagccttctcgacacctgctggctggcgattgcagcgacggatgatgacgcgcttaaccagcgcgtcagcgaagccgctgaagctcgtcgcatcttctgtaacgtggtcgatgcgccgaaagccgccagctttattatgccgtcgattattgaccgctcaccgctcatggtagcggtctcctctggcggcacctctccggttctggcacgcctgttgcgcgaaaaacttgaatcactgctgccgttacatctgggccaggtagcgaaatacgccgggcaattacgcgggcgagtgaaacaacagttcgccacgatgggtgagcgtcgccgtttctgggagaaattgttcgttaacgaccgcctggcgcagtcgctggcaaacaacgatcagaaagccattactgaaacgaccgaacagttaatcaacgaaccgctcgaccatcgcggtgaagtggtgctggttggtgcaggtccgggcgatgccgggctgctgacactgaaaggactgcaacaaattcagcaggcagatgtggtggtctacgaccgtctggtttctgacgatattatgaatctggtacgccgcgatgcggaccgtgttttcgtcggcaaacgcgcgggataccactgcgtaccccaggaagagattaaccagatcctgctgcgggaagcgcaaaaaggcaaacgcgtggtgcggctgaaaggtggcgatccgtttatttttggccgtggtggcgaagagctggaaacactgtgcaacgcgggtattccgttctcggtggttccgggtattaccgcagcttctggttgctctgcctattcgggtattccactcacgcatcgcgattatgcccagagcgtacgcttaattaccggacacttaaaaaccggtggcgagctggactgggaaaacctggcggcagaaaaacagacgctggtgttctatatggggttgaatcaggccgcgactattcagcaaaagctgattgaacacggaatgccaggcgaaatgccggtggcaattgtcgaaaacggtacggcagtcacgcagcgcgtgattgacggtacgctcacacagctgggagaactggcgcagcaaatgaacagtccatcgctaattattattggtcgggttgttggcctgcgcgataaactgaactggttctccaaccattaatttaacccgggccagagaattctggccttcttaatgactctttttatatattcagcaaataaaacatagccccttaataaatattatctgctaatgggttatattcaccgttacagcgacttacaaaattaagtcattcgctcactgacgccaattaaatattcctgtatcgttcttaacgagcagtctgcttatattcatataatcaatgaatattaattaatatataatacatagggaatgtaaatgaacaaatttattaaagttgcactggtaggtgcagtactggctacgttaactgcatgtactggtcatattgaaaaccgtgataagaactgctcttacgactacctgctgcacccggcaatttctatttctaaaatcattggcggttgcggtcctactgcacagtaagtctctgacagaaatcggctaacaccggtttaattgcccgacgccctctggattttccgagggcgtatttgtttctatgtccttcttgcccccgcccgtaaaaatattttcactttaaattcaatttgataactacatccattagccacagcgcgatcctgtgcgaaattttgtgatcttcctccacattacataacatcatatgttgttatattcatcatgcattgtcatgttaccttttaaatgactgcaaactctcccctacaacgtattggacaagaaaaaggtatcgctatgggaagccaggaactccaacgcaagctcggattttgggccgttcttgcaatcgccgtcgggacaaccgtcggctccggtatttttgtatctgtgggtgaagtggcaaaagcagcgggcaccgcgtggcttacggtgctcgcgtttgtcattggcgggttaattgtgatcccgcaaatgtgcgtctatgcggaactatccaccgcttatccggaaaatggcgcagattatgtttatctgaaaaatgccggaagccgaccgctggctttcctctccggctgggccagcttctgggccaacgatgcgccgtcattgtcgattatggcgctggcgattgtcagcaatcttggctttttaacgcctatcgatccgttgctcggtaaatttatcgccgccggattaattatcgcctttatgttgctacacctgcgctccgttgaaggcggcgcagcgtttcagacgctaattaccatcgccaaaattatcccgttcactatcgtcattggccttgggatcttctggtttaaagcggagaattttgccgcccctaccaccactgcgattggcgcaacgggcagctttatggcgctgctggcggggatctctgccaccagttggtcgtataccggcatggcctctatctgttatatgaccggcgaaattaaaaaccccggaaaaaccatgccacgagcgctgattggttcctgtctgctggttctggtgctctacaccctgctggcgctggtgatttccggcctgatgcccttcgacaaactcgccaattctgaaacgccgatttccgacgccctgacctggatccccgcactcggcagcaccgctgggatctttgttgccatcacggcgatgatcgtcattcttggttcgctttccagctgcgtgatgtaccagccgcggctggaatacgcgatggcgaaagacaacctgttctttaaatgcttcggccatgtgcatccgaaatacaacacgccggatgtctccatcatcctgcaaggggcgctggggatcttcttcatcttcgtttccgatctcaccagcctgctgggttatttcaccctggtgatgtgtttcaaaaataccctcaccttcggctccatcatctggtgtcgtaaacgcgacgattacaaaccgctgtggcgtactccggctttcgggctgatgaccaccctcgccattgcgtcaagcctcattctggtcgcctcaacctttgtctgggcaccgattcccggccttatctgcgccgtcatcgttattgctactggtctgcctgcttacgccttctgggcgaagcgtagccgccagctcaacgctttgtcgtaatgttatctggagaaaataaaatgttggatattgataaaagcaccgtggactttctggtcaccgaaaatatggttcaggaagtggaaaaagttctcagccatgacgttccgctggtgcacgccatcgtggaagagatggtgaagcgcgacattgatcgtatttatttcgttgcctgcggatcgccactcaacgcggcgcaaacggcgaaacatctggcggatcgcttttccgatcttcaggtctacgccatttccggctgggagttctgcgataacaccccgtatcgcctcgacgatcgttgcgcagtaattggcgtttctgactacggtaaaaccgaagaggtaatcaaagcgctggagctgggccgggcctgcggcgcactcactgcggcgttcaccaaacgcgcggatagcccgattacctcggcggcggaatttagcattgattatcaggccgactgtatctgggaaattcacctgctgctctgctacagcgtggtgctggagatgatcacccgcctcgcgccgaacgcggaaatcggcaagatcaaaaacgatctcaagcagttgccgaatgcgctcggtcatctggtacgcacctgggaagaaaaaggccgccagcttggtgaactggccagccagtggccgatgatttataccgttgctgcgggtccgctgcgtccgctgggttacaaagaaggcattgtaacgctgatggaatttacctggacgcacggctgcgtgattgagagcggagagttccgccatggcccgctggagattgtcgaaccgggcgttccgttcctgttcctgctcggcaatgatgaaagtcgccacaccaccgaacgcgccattaactttgttaaacagcgtactgacaacgtgatcgtcatcgattacgccgaaatttcgcaagggctgcacccgtggctggcaccgttcctgatgttcgtgccaatggagtggctctgctactacctgtctatttacaaagatcacaacccggatgaacgccgctattacggtggtctggtggaatattaatccctctcccggcccggcaacgggccggatttacgcaaggagttacccgatgaaaacaggtatgtttacctgcggccaccagcggctgcctattgaacacgcatttcgtgatgcaagcgagctgggttacgacggcatcgaaatttggggcggtcgcccgcacgcgttcgcgccggacttaaaagcgggcggcatcaaacaaatcaaggcgctggcgcagacgtatcagatgccgattatcggctatacgccagaaaccaacggctatccgtataacatgatgctgggcgatgaacatatgcgtcgcgaaagcctcgacatgatcaagctggcgatggatatggcaaaagagatgaacgcgggttatacgctgatttccgccggcccacgcgggctatctcacgccacctaatgttatctggggacggctggcagagaacctaagcgaactgtgtgagtacgcggaaaacatcggcatggatctaatcctcgaaccgttaacgccgtatgaatcgaacgtcgtgtgtaatgctaatgatgtgcttcatgcgctggcgctggtgccttcgccgcgcctgttcagcatggtcgacatttgcgcgccgtatgtccaggcggaaccggtgatgagttatttcgacaaactgggcgataaattacgtcatctgcatattgtcgacagcgacggggccagcgacacgcattacattcctggagaaggcaaaatgccgctgcgggaactgatgcgcgatattattgagcggggctatgagggttactgtacggtggagctggtgacgatgtatatgaacgagcccagactctatgccccgccaggcgctggaacgctttcgcgcgctgctgccggaggatgagagatgaaaaccctggcgacaatcggcgataactgcgtcgatatctacccgcaactgaataaagcgttttctggcggtaatgcggtcaatgtggcggtgtactgcactcgctacggcatacagccgggatgcattacctgggtgggtgacgatgactacggcacaaagctgaagcaggatctcgcccgcatgggcgtcgatatcagccatgtccatacgaaacacggcgttaccgcacaaactcaggtggaactgcacgacaatgatcgcgtttttggcgactacaccgaaggcgtgatggccgactttgccctgagtgaagaggattacgcctggctggcgcagtatgacattgtgcacgcggcaatctggggacatgcggaagacgcattcccacagctgcacgctgcgggcaaacttaccgctttcgacttctccgacaagtgggacagcccgctctggcagacactggtgccgcatctcgattttgcctttgcctccgcaccgcaagaagacgaaacgctgcgtctgaagatgaaagcgattgttgcccgtggcgcaggaacagtgattgtcacgctgggtgaaaacggcagcattgcctgggatggcgcgcagttctggcgtcaggctcctgaaccggtgacggttatcgacaccatgggtgccggagattcgttcattgccggattcctttgcggctggtctgcggggatgacattaccgcaggcgatagcgcagggaacggcgtgcgcggcgaaaaccattcagtaccacggtgcctggtaggtataacgttggcgtgagcatcttcacgccaacgtgctgttacttgccggaaaacgaccctataatccgagtaattcattctttatttcagggtcgattatgtcagctacggaccgctactctcatcaactcctctacgctaccgtccgccagcgactgctggatgatatcgcgcagggggtttaccaggccgggcaacagatccctaccgaaaacgagctttgtacacaatataacgtcagccgcattaccattcgcaaagccatcagcgacttagtggcagacggcgtactgatccgctggcagggaaaaggcacctttgtacaaagccagaaagttgaaaacgccctgcttactgtcagtggttttaccgattttggcgtctcacaaggcaaggcgacgaaagagaaagtgatcgaacaggaacgggtcagcgccgcgccgttttgcgaaaagctgaacatccccggaaacagcgaagtgttccatctctgccgggtgatgtatctcgataaagagccgctgtttattgatagttcatggatcccgctgtcgcgttatcctgactttgatgagatttacgtcgaaggaagctccacctatcagttatttcaggagcgttttgacacgcgagtggtcagcgacaaaaagaccatcgatatctttgccgccacccgcccgcaggcaaaatggctgaaatgcgaactgggcgaaccgttgtttcgcatcagcaaaatcgcctttgatcagaatgacaaaccggtgcacgtctccgaactcttctgccgcgccaatcgcatcaccttaactattgataataaaagacattaaccgtaggccggataagatgcgccagcatcgcatccggcgatgctggcgcgttgaattttacatcccgtacgttcccctcaccctaaccctctccccaaaggggcgaggggaccgttcagtacggaatttagcttgacggtgctatccagcattaaatactggcaatactctcacgcaaaatccgcagcaccgtctcttcaccgctgcgattcgggttaatgcgaatcgcacaatgttctgattgtggattcgcctggcgaaacgttccggaaaggcgataaaagagcggcgggatttcatatttcgactctgcacccaccgggtaaggcaaggcaccgcgcttttgcgcctcttccagcactctggcggcaatcggctgatgaaactcgacaatcaacaccttcgactgcgcattagcaatcaccgcgcttttcacttccggcaccgcaccaccgttaagcaaagccagcaaccgttcagatacccctgcctgcaccgcgtgcatcactggcgcaaacaccagaccacgcaatacttccagcgcctgtgcgccctggatctggctaccgccggagtaaagcgtggcgcgaatacggttgataacatcagcatcgccgaccactgcaccaacaccctctggcccaaatagcttgaagcaggaaaatgtcgagacattcgcgccgcattcacagccgattcgagccaccttcatcaccgcatagttgtcatcggttaacgctggaacacctgccgcgcgcaacgttgccagcacatctgccagcacgtagctgtcctgcggctgctggcgcgtatgctgcaccagcgccgcatccggttgttgctcgtcgacgacctgcttcagtgccgacaggtcattgaaatcaacagtaataagcgtcagccccatctgctcaataataacccgtgtcgtcgggtaaacaggcgcgtcatgcaccagaagacgctgccccggtttgagcaaagccgccagcccggcgcgaatcgcgccagtccccgcgccctgcaccagcgccgcagcctgtgcgtgaaatgcatcagccagcacctgttccacacgctgggtaacgcgcggttgattcagtcctggcgttaagcctaaatcaccgccagtaagaaactcgctgccggggaaatggcgacaaatgctatccaccagcgcaaactgcttttgctgcgcctcaataatcgtcaggctttgcagaggaaacgtcttcataggtgccttccttaagccggaacgaacaggccaagccagtaaagaacattcagcagaataccggtgatcattactgccacgaccggtgccgccattttctgtaccggacggcccagggattcgttgaggaagtaaatggcaaccgcgatagagaatccggtataacccgccatcttaattgctgcgaaaatcgaaccgaccagcagcgccacttccatcagcatattcatggcgttacggatgttatccgacgcattacgcaccgacgggtagcgtcccagccatttgccgatcgaacgaagcagcaagacttccgccgaaataaccactgcgcctaataccgctgcaaccatcggattcggcgagagatagtccaccgcataaacaaaggtaaagcccgcaactgcatacacacccgttgctaacgcggtggtggcaatcaacggcacaaaccccagtccgcgcataaattctgccagagccgcctgattaatcagcgtttgcgattgttccggcgttacgcctgcggaatatgctttctccagtgtgaagatcgacacttcactgccagcaaaaatcttcatgctggcaacggcggcaatcaatgctcccacgatggcgatatagggtaagtttttgataatccgtgacgtgcgttcttcaaacaccgaaagcccgctggcatcaatgtcattttcatcacgatgacgcaggtcgtgagttatcgcgatccccagcagcatcaccatgccaataaagatttcgatggattcagggttaagatgtgggaaatagcgcacgactaccacacgggtcatcagtaccaccacggcggcgatcagactttgcttccagccaaactggtagaaaatcgccaccagcgggaacagtgcaaaagctgaaaccaccggcgagcttaattcccccaggctacctaatacatccaccggcagcgcggtcagcagctggtttactggcaacaggcaagtaaggatcaacacgccccagatagcgccaagaccaaacgccatcaggctgtttatcgccaggacgccgaggatatcggtaggaagaaagagtaaccatgcgttgagcagcccggttttcagggtaaaagagatccccaccgaggccacaaaaccaatgctcagaccaaaagcgatactccccgcctcgcgacggttcatatagccttcaatcagttgcggcaggatcgggcggatgccgtcatgaaaaacagccgccgagcgatgcgccagaagcgatgtcatacccgtcagcacgccaccacgataatctgaatatacagatccatagtcgtgccttttatttcagatggttaatcagcatcggaatcgcgtgttcgacgtgctcaacggaaaggccaaacgccacttttccttcagcgatcattttggcgatatgctcgtctttcgctttaatgcctggtttggcaatggtgcaacttttgttatagcctatcaccgcgatggcaatcgacaatgccgcgcccgcaccggtattacacgcgccgatgtaataatccagttgcccggatttcaccttcattgccgcttccatgtcgttgtgaatgaaaacttcaaaacagccaggagccgtcgcttcaatagtttttttaatctgctcacgctgtaagcctgcaacgccaatctttttcatgagtctgtccttattggaaaaattgagagggattttcacgtaacatcacatccacatcggcctgactgaatcctgactggcgcaattgcggaataaaggtggttagtaaatagtcatagccataaccaccgttggcttttaaatgggagcggcgcgtaatatccatcgacagcatgacgcggttcagcaacccacggtcgcgtagcgcatgaagcatcgcaatacgcttttcgtccgggtagtaactgttcttgccgatggtgtcgaactgcacgtacgcgccgagatcgatcatcttcaaaatgttgtcgaggttgtctttcagatcgcagtgaccaacggtgacgcgcgaaagatcaaccccgtgggcttgtagcaacgccagttgctccagccccatcgtgctgaacgacgtatgcgtggagatcgggcgtccggtctggttatgcgccagcgcagcggcaataaataccttctcttccagcggcgtaatctttccttcgctggtgccgatctccgcgatgatcccggctttcagctccgtgccatcgataccctgttcaatttcatcgaccatctcctgcgccagttcctgcacgctgcgggtcgccacatgttccgggaaaaacgcgtcctggtaataaccggtacaggccaccacgttgatccccgtctcgcgcattacatcaagcataaattgcgcattgcgccccatgtaacggttggtcatctcaatcacattacgcacgccccgggtcatcaggtcgttcatctcctggcaaatgaacgcatactgatcaaggcggcagtccacgttgtttttaaagccggagagatcaatatgcagatgctcatgggcgagggtgtaacccgtcggatcaaaactcatagggtgtctcctgcaaaccggagggaggaaagaaaagagcgaccattttgtggcggtggcgcgcggaaaaattcacacacggtagcccccacatcagaaagcgtggtgcgcacaccgagctgcgtagcgatcatcccttgctgataaaccagcactggcaccacttcgcgggtatggtggctgtgaccaatggtcggatcgttgccgtgatccgccatcacgaccaggcaatcatctggctgcatcgcctcaacaagccgggcaaggttacggtcaacgacctgcaaacgttcggcataacgtgcgacgtcttctgcatgaccagcgaggtcggtttcctgaatgttggtgcaaataaacgccgtcggatgggtgttaaattcgttgagggtgatatccataatccgctggctatccaccagattttgccagctcacgccataaggattgttgacgatatctgccaccttacccaccagcacggttggcacgcctgcttcatacagtttttgtggcacctgcactttttcatcgacgccatagcccatatgcacgacctggaaaccgttgtcataagcgccagaacgcggcgcattgataccaataaagcgcccttctttgctttctgcggcatcgagaatgcgttgactgtcggttaacaggccaccaaatgtaatgacccgaccgacctgtacctgctcacgcacgatacgaccaattttgattgcgtcgtcaaaagagatcacagagagattggcggtaatgttatagacctggcctaaatccgcctcgagattatcgccaatcgcaaccgcctgattgacccacagaaattgcagatcatcgccacggcgctccacctgccagccagcggaaactaatgcctgctcaacacggtcaatcacatcgcgaaaaggcatccgcagcggcggtaacgggcgcgtgcctaaaatttcctgatgccccataaaggtatcgccaccttcatgttgcagctctgccacgccccaggttgcggaatctgacggctgcatatcgcctggcgcataacccaatgcgttgattagccccagcgtctccagcgttggtagctgcaaatgcggcaactggctcaggatgtgaccacatgtattcgctcccgcatcttgcggacgcaccagcgtgacatctttcattgcccctacgccaaagctatcaatcactaacaccacaaatcgcgccattacgcccccagagagtttccaagactgtcataacgaccgacgatttccggttcgccacgatgaataccggacaccagcaccacatcgctacgggtgacaaaaatctgcgtgcgaaaacagagcaccactgcactgcttaccggaaactcgcctgccagcggcagggtgtagtcgatactgctgtcatccacagttttgagattggtttcagtaatcttttgattttctggcgtaaacaccaacgcatgttgcgcatgaccacgacgatagtaaccgccgccgtagcagtagctgtcgccacggaaatgatgggagatttcacttaaccagagcatcgcgatacgttcaggctgatcgccctgctggtttgccggaatagtgcccgtcagcgcatgaccgggttcggcatgagtcacaccgtattgcgccagtaatggcagcgaagtgcagctggtcgctgaaggcgcgttcagttgctcaagtgcaataccagatttcgccagttgatcccgtgcctgtatcagcgtgtgaagattcggtgtcggcaaaacttttccgacagcctcatcccaaagcaggcaagggaaatgggtaagtccggctaaatgcagccctggcagattctggatttcggcgacaatctccggcaacaccttgagggcaaaaccgctctcctggcccggataaagaaaatcatcgtcgctataaactttaagcagcacagactggattcgcccggccttcaccgccgccgcagaaacttcccgcgctttgtcgagagtaaacacggtgatgacgtcggtgccctgttcaacggcgtcagcaacctgatgacaagggatttgtaccagatgcccctgatgcgccacaggcaaaccagcgcggcgcatgactcgcgcctctttgtaatccaccgccacaatgccgctgtagcctaatgccagcaatttttccgccagccacggattacgaccaaactgcttggtcatcagatacagttcaatgccgtaaagccgcgccgtctcaatcagccgcttaccgttttccagtatctgatccacgtcgatcacccagctgtccggggcgatcttgccctgctgccacaggcttagtgcggcggaaatcagcgccgggttctggcgtttcaatgcttctacaaacatcttgttgcctcgtttctgttccttgaattaaatattcatttttttgaatatttaggttgtgcgacgtggatttgtcgggagcttcaaacctcttcgttagcagccatccataatccataaaggttggccagcaaatagccttcttcacacgggttaacttccagtgcgaattccttcaacaacacctgatgcaattgcacaacggcttgccagtggctggattgcgccagttctgccagcaactcgttatccagcggctctatttcttcaccacggcgactgcgcatcagtgcactcgccatatgtgtcatcgccatcgttccttgctcactgcgcaccggcagatggcactctgtttccagtacgttgacgacctgcatcatgcctttgcagatgtccttatcaataacgcctgcctcgcaaagcaggttgagtctggtttccatatcagatgcctttcgtttaataactcggttcctgttccccactcactacccgttgttgatgggcgagcagggcgtgtttatctacaacggcacgcagcagttgttgcattgggtaatcatcgactcgcgtcaggaccacggcttcggtggcctgtaaaaatcgcggatcgtctgtgagcggcgtcgcctctaatcccagcatggtcagttcgttttccgccaccacgttccagatcaccgcatcgacatcgcctttaacaatgcgttgtaaactctcgtgataagagagatcgactcgttccacatcactaccgccaaaaaaaacatcggtcatgattttctgatccgccgaacggttatccagccccacgcgcttcacgtttgcggactcgcctttacggcaaatcaactggtgctcgccaacgtaggtgtgcggccccaactccagcgcgaggcataagcctttttgcgtgagataactttccgccgctagtcgcgaaaccaccgccatgtcatacacgccattaagcagacactccacgcgaatatccgcgccacgcatgtgcgcatagtaaaaaggaatgccatcaaactgggctttcaatccgctcgccaggccttcgtacaaacgggtatagggcaagggcattgcacataccacgttgttgatatccacatgagtcagcaatgctttgttatccatctcgaccagataactgccattgcgcccacggcgttcaatccgtatcgctccgcttgattccagcgttttcaacgcggcctgcgtcaggccaacggatgaacggcattcatttgccagctcatctatggttttcaatcgattaccgcacttttcacccaacaaataacgggccagcgtcgtgatgacgacgcctttcttttttgataaacgttcgacgcataataaattttcagtaaattgaatatttatatcttcaggaatttgaagataaggcgcaacagcgagatgtggaaacggcgaggcacttcacattttttcggattattgcaaatgaggataaaaaaaccgggtttccccgtttcagagtgatgataaaagcaaaattgcctgatgcgctacgcttatcaggcctacatttccttgcaatatgtgcattactttgtaggccggataaggcgttcacgccgcatccggcatgaacaaagcgcaatttgccagcaatagtgaattacggcttcgccacaaaaccaatcgcttcgtacaccgcttttagcgtacgggaagcgtgcgcgctggctttttccgcgccatctttcatcacctgttgcaggaaggcttcatcgttgcggaaacggtgatagcgttcctgcaattcagtcagcataccggaaacggcatcagccacttcacctttcagatgaccatacatcttgccttcgaactgtttttccagttctgggatgctctggcccgttaccgctgaaaggatatccaacaggttggaaacgcccgctttgttctgcacatcgtagcgaactaccggcggctcgtcggagtcagtgaccgcacgtttgattttcttcactaccgatttcggatcttccagcaggccgataacgttattgcgattatcgtcagacttggacatcttcttggtcggctccagcagcgacattacgcgcgcgccagatttcggaataaacggctccggcaccttaaagatctcgccatacagcgcgttgaaacgctgggcaatatcgcggctcagttcgaggtgctgtttctggtcttcacccaccggtaccagattagtttgatacagcaggatgtccgctgccatcagcaccggatagtcaaacagaccagcgttgatgttctcggcataacgcgcagatttatctttaaactgcgtcatgcgactcagttcgccgaagtaggtatagcagttcagtgcccagcctaactgtgcatgttccggcacgtgggactgaacaaaaatggtgcttttctcaggatcgataccacaagccagatacaaggccagcgtatccagcgtcgctttacgcagcttctgtgcatcctggcgcacggtgatcgcgtgttggtcaacgatacagtaaatgcaatggtagtcatcctgcatgtttacccactgacgcagcgcacccatgtagttaccaatggtcaattcacctgagggctgtgcgccactaaaaacgatgggcttagtcatttttcgattcctgattttcgctatgcggaagccctaatgcgggcagaaggtcatttatagactgataaattacatcaggctggctgagatcgatagcctcgccgtagttatatccgtaggttaagccaactgatgggcaacctgccgcttttgccgcctgaatatcattgcgtgagtcgccgacaaacagcatctgttgtggggcaattcccatccgctcagccaccagtaacagcgggtccggatgcggttttttgttttgcacatcatcaccaccaatcaccacgctgaagtatttggcgatatctaaggcttcgagcagcggcgcgacgaacggcgtcggtttgttggtgaccaggcctagcggcaggcctttagcctgcaacgcgcccaacgtatcggcaacgtgcgggaacaaaaacgtcccctcttcggcaacctcgccatagtagcgatcgaacagtttacgcagaatacgtacctgttcttctgccggaatgtcgtcatcaacgggcggtttacccattgttttacgctgagtcgcacgttcctgacgcgcccaggtcaatgcgcgctccatcagaacatctgcgccgttaccaatccaggtaataacgcgttcttcacctgcgacgggcaactccagcgcatacagcgccatatctaccgcagcagcaagaccaggagcactgtcgaccagcgtaccatcaagatcaaaagcgacgccgcgaatatcttcaaacttattcatgacttacctttgccagttcactgcgcatttcatcaatgacttttttgtagtctggctggtcgaagattgccgaaccggcgacgaacatatccgcgcccgccgcagcgatttcgccaatgttgttcaccttcacgccaccgtccacttctagtcgaatgtcaaagccagactcgtcgatacggcgacgtacttcgcgcagtttatccagtgtttgaggaatgaaagactgaccgccgaaaccagggttgacggacatcagcaggatcacatccagcttatccatcacgtaatccagatagctcagaggtgtcgccgggttaaataccagacccgctttacagccattttctttaatcagttgcagcgtgcggtcaacatgctcggaggcttctggatgaaaggtaatgatgctggcaccagcggcagcgaaatcaggcacaatgcgatcgacgggtttcaccatcaggtgtacgtcgataggggcggtaatgccatagttacgcaaggatttcagcaccattggcccaatcgtcagattgggaacatagtggttatccatgacgtcaaaatgcacgacatcagcgccagctgccagggcttttgcggtatcttcacccaggcgggcaaaatcagccgacagaattgagggggcaatcaaatactgtttcatccgcttctccttgagaattattttttcgcgggtgaaacgactcctggtttgtacaaagccagcagttcgtccacctttttacgtgtgccgccgttgctgcttatactgcgtcgaactttgacgacatgcaattttgcgcgctgataccactcacgcgttaacatcgtatcgtgattggagatcagcactggaatatggcgctcaaccagaccttcggcgatctccgccagatgcgcttgttgttcaagcgtaaaactgtttgtgtgatacgccgtaaagttggcggtcgcagacagcggtgcataaggcggatcgcaatagacgacggatgcatcatctgcgcgcgccatgctatcggcgtaagactcacaatagaaaaaggcattctgcgctttttcagcgaagtgatacaactctgcttccgggaaatagggttttttgtagcggccgaacggcacgttaaactcaccgcgcagattgtaacgacacaggccgttgtaaccgtagcggttcaaatataaaaacagtaccgcccgacggaacggatcctggcttttgttgaactcttcgcggaactgatagtaaacctcggcgcaatttgtttcgggaacaaacagctcgcgtgcggcctgtacgtactcatcagtacgcatcttcacaatgttatagagactgatcaggtcgctattgatatcggcaaggatataacgagaaaagtcggtgttgagaaacaccgacccggcacctacaaaaggctcaaccagacattcgcccttgggcaaatgccgtttaatatcatcaagcaggggatacttgccccctgcccacttcaaaaaagcgcgatttttcttcatgctgactaactaattacaccttctccggctgtggagaaagctccgacagcatccagcgcttcaggcaactcccgcaacgataaaccattgcgggagataaccttgattacttcagatcggcctgtacctgacgcagcggtttcgcccacgggtttttggcctggacatctgctggcaatgtagataccgcttttttcgcctcttctttcgaagcgtacacgccagaaaccaggacataccacggctgaccattacgcgtcgtttcatagacaacgtagtttttcagattctctttcttcgcccaaccgttcaggttgtcgtagttagaggaactgctcagctgcagagtgtaatggctggacggtgccgatttcaacgaaccaacattacctgcggtcttcgccccagcagcgggtgttgctgtggtttgcgccggggatgccgtctgtactggagccgtagtcgccgtctcttttggtgctggcgtagaagtcgcagccggtgccttcgtgctcgccacaggggcagctggttcagtacgcttcggcgtctgtgctaccggcttcggctccgttttcacggttgcttgcggttttttcggttcaatcaccgcctgctgacgagctgggcgcgtagtggacggacgttcagcggtttgcgttttcgccgtgtcacgcgatgcattgccattgcgaacaggcgcaaccgttgcgggttcagtcggcaacgtggaattgaccgccacattgttcagctgttgctgattttgtggctgggtcagcgcattgttcaggtcaccctgcacttcaacacgttgttgaccatccgttgccaccggggtttgcccttgagtcggcgtagaagagatcggtggcagagaaacatcctgctgagtattttccgcagacgtggttcccggcgctggctgcacgccattcgcctgatcggtcgcattgccagcaagatcaatactcttctcgccagacgcggtttgatcgctggaagtggtcgagggggcttttagcgcagaaccgataccgatgatcaacagcagtagaaccagaatgccgacgcccatcatcatatactgacgagaagcgggtttactggctgcttttttgcgcttacgcggacgacgctctacgcgctcttcatccacggtttcatcttcggattcgtcaatttcttcttcgatttccggttcctcattgcgctctttttgcgcacgagtcggacggcgatcgtcagtgtcatcaagttcaatatcatcaaaattgatctgcggttcgccacgttcagtacgctcagaacgttcagaagattgacgagaacgaccagtacgacgatcgctgggatcgggtttcagctcgtcttctggtttgaattcatccatttaacaccccactaaaaggttaatgcttaccacgttgcaattaacctgaagctaatagaccgcttgataagcggcctgacctttcttgttgttacgctgattgacaatcggcaatggcgttaagaacaagctcgtgcgaaacgccgctgcgaacttcactcttaccaattgccaacggaagaattaagcgcatctctcccgcaaggactttcttgtcacgcagcatatgcggtaaatacgcctgcgcggacatttcgcgcggcccattgaccggtaacccagcccgcttgagcagggttataatacgctgcgtttcggcagaactaaactgcccgagacgttccgacgtccgcgccgccatcaccatacccgcagcgaccgcttcaccatgtaaccaattgccataccccatttcagcttcaatggcatgaccaaaggtgtgtcccagattcagtaaagcacgtaacccggtttcgcgctcgtcggcggcgacaacttctgccttcagttcacaacaacggcgaatacagtacgccattgccggaccgtccagacgcaacaacgcatccagattctcttccagccagttaaaaaacgcaccgtcaagaataatgccgtatttgatgacttctgccagccccgacgctaactcacgcgggggaagcgttttcagacagtcgagatccaccaccactgaagcaggttggtagaacgcgccaatcatgtttttaccgaggggatggttgaccgcagttttgccgccaacggaggaatcgacctgcgacagtaacgtcgtcgggacttgaatgaaacggacaccgcgctgataactcgccgccgcgaagccggtcagatcgcccactacgccgccgccaagcgccaccagcgtagtatcgcgaccatgcggtttttgtaacaacgccgtaaagacggtatcgagtacagccaggcttttatactgctcgccgtcagggaggataacgctatcgacgttaacacccgcctgttcaagtacgccgcggaccttatcgagatacagaggagccagggtttcgttggtgaccaacatgacctgctcgcccgatttcagcggtaagaatgaagctggttcattaaacaaaccagatgcgatggtaattgggtaactacgttccccgagagtaacgacaatcctctccataacgcgacatccaccttaattactgtacccgcagacgagtgtatataaagccagaattagttgctttccagcatgtgaataatctggtttgcaaccactttagcgctttgatcatcagtacgaatggtcacgtcggcaatctcttcatacagcggattgcgttcattggccaacgcttccagaacttcacgcggcggtgtttcaacgtgcagcaacgggcgttttttatcacgctgcgtgcgtgcaagttgcttttcgatggtcgtttcaagataaacgacaacgccacgagcggaaagacggttacgcgtttcacgggatttcacagagccgccgccagtagccagcacaataccctgtttctcggtcaactcattgatgaccttttcttcgcgatcgcggaagccttcttcgccttctaaatcgaaaacccagcccacatcagctccggttcgtttctcaatctcttgatcggaatcgtaaaattccatattgagttgttgagctaactggcgcccaatagtgctttttccggcacccataggcccaaccagaaagatattgcgtttctctgccattttttcggtactactaagactattcgttaatgataaacccgcttcgctcagagagcgccgcaggacatgaactgaaacctcataagatattgcgagagtcagactgaaaattatctcaatactccagcgggtttggcaactgaataaatcacccatccctctgcatatctggtcgctgcaagcgcgctgccttgctaccaccgctctggcgataaatcaccgggtaagattagcgtaaaaaagacagcaaaatgccgcctgaatgataaatcatcatcatggaacgcaggcagcgaagagcaccaactctcaaatcggtactccttgtatgctaaatacctgcgcgcgtcaaatagatgaaacacgttcagcgtaaaaacattaccgcttttacggctgtttactcactggaaaccagtcgtggcgtgataaacaccactaactcgcgtcgttcatcttcttttccgtcatgacgaaataattgcccgaaccagggaatgtcgccaagcaacggtacgctatcctgacccgatttatttttacgggtaaaaatgccgcccagcgccaacgtttctccgcttttgacctcgacctgcgtttcgatctcctgcttatcaatcgccagcacttcgccatcggcctgctgtagcacctgccccggaacgttctggctgatgtgtaatttcagccggatgcgacctttttgtaacaccgtgggcgtgacctccatccccaggacggcctctttaaattccaccgacgtcgcgccactttccccgctggaaacctgatatggaatttcgctcccctgtttaatgctggcaggctgaagatgtgaggccagcagacgcggactggcgataatatccagctgctgtttttgttcgagcgcggaaagctcaagatccagcaagcgtccgttgatgcgcccaatgttaaaaccgacatgcgttgtcgccgtcgctacggagaggtcgctaccaagcgtggtgacttgcccaacgccaccagcgtgttgcgcatcggccagcgtccatttcacgcctaactcacgcaaacttttttcattaatggtgacaatatgcgccgacagctcaacctgcccgaccggcagatccatttgcgctacccactgttcaagcgcgcttaacgccgttttgttatctcgtagcaaaaggcgattggtgcgtttatcgacggtcatactccctttggcactcagtagcttctcccccgctttcgccagttctcccgcgtcggcgtattgcagggttatactgcgattttccagcggcagatttgcctgcgcccgcgcctgctccgcctcctggcgggcgatattgttattctgccaggcaatggaatgcactgagagaatgttgccttcctgccgcgttatcagtccggcgcttttcactacagtttgtagtgcctgcttccagggaacatctgttagatgtaacgacaccgtaccgctgacgtctggcgacacgaccaggttcaacttctcctgttcagccagcgcctgcaacacctgagctaccggaacgtcatccaccatcagcgtcactttttgcggctttgccgcctgtacgccgggtatcagcatcaacagtagtgcggctatccattgcttcatttgtatctccttgccgttgccacaaccattgtggcggttcgcagtttgtcccggtacccagcgttagtacgtctggcgtcagctgtaaaattgtccagccgttttccagcacatcgttttgctgcacccgtcgccatttcttttgcccgtcttttattacaccgatgatgcgctcgcctcgccctaccatcccctgatagcgccactggctaagttcgctaatccggcatagatcttccggcggtttaaaagggtcacgcataccggttaaaaggcacaatgcaatacctgccaacaaccagcgtttaaccctcatgcggcgtctccagttgtagcgtgaacaaaagatcatcaccttccacgcttaacgaaaaacggctcacgctgacgttgcgctctgccagccgtgtaaatgccgacggcactgcttcccacagcgttttcaacgccaactcgcctccctgcgcggatggatgccaggaaaccagttgcgcgccggataactgaaaatccagtggcgaaaagggcagcgttttttcctcgctgaagggagcggtgtctaccaggcgatacagtgcggcccactgctggtgatgacttgcccgtagtcgaattaatgcgtcgcgctcttcatggtgtgtcgatgacagaaaaatgagcgtaactaacatcagcaaccagaatgcccagcaaagctggcggaggcggggtgatgtggcgaaccaccagtcaaagaacatgttcatcgctaaccttccttgttaactgatactcaaattgccagcgtccctgcgcatcctgctgcgtggctccccgctgattgagatgaaaagatgcatcctggcggagtgacgtttctagtgcgtttaacgcggtaatgcttgttgtcagccccttgatctccagcgttccctgctgccagcttatcgttgtcagccaggcgtgctcgggtaaaagcgccgccagtgcttccagcgcagattgccagtcgcgggtaaattgtcgctggcgctgccgttgcgaacgctgttcgcgtaactgctgttgctccagcaaacgtggcttcgttatctgtaagctgcgggcgagttgttgttccgcctgaagcaaaactgcgtctatgcgcgcttcggcgctgcctgtcagacgcagtattagcgttatcccgacggccagcagcagaggcgcaacgaacatcagcaaccagaaacgcagaaaagcggtccggcgttgctgtcgccagggcaaaaaattaattggcgggttcatcagtacgccttcccaagcgccagccccagcgcgatggcaaagtctccacctggcggcggtagcggcggctgacgaacagaaacggcctcccagggatcaaatccgccttcgccacatatcgcgacgctttcgggatcaacggataacgctgccgccagctccttcgcgctagtcatccccaccgccagtttgcgcccccagctatagcgcgtcgcccacagccactgttcgttatcacgccaggccagacattgctgatgagaaggtaaaaaaggcaggaatcgctgtaatgcactggcatccggggtgatcgcgctcacatgaacacgcaacctttctgccagagtaagcagcgttgccagctctttgctttgcgcggcagtcacgttataggcgggactgagtgagtcttcgctgtaatcgaagcgcagggagtccggatccatatccagctcgcgggccatcgtccctgacagccaggccgtttgctcccgctcaccaagggacatcgacgggcgcggaaatgaccgctgtaatgtgcgactggcgggaaacgccaacataatgtgatgacgctgcggcagttcgcgactccacggtaacaacgttttagccagctgctgcgcatcaacaatccgcccatctttgataatgtcgttctccagcggcaaccgccaccagcgttgcaaaaagcattcttttgcgccccgcacgatcgcaaccgctaccgcttcttgctgttgtaaatgcaaaccaatttgccagatcttaaatgccattgtgatgatctccttatcacccgtcactctgacgggtatatcaatgcgtctggcttgcctttatactaccgcgcgtttgtttataaactgcccaaatgaaactaaatgggaaatttccagtgaagttcgtaaagtattttttgatccttgcagtctgttgcattctgctgggagcaggctcgatttatggcctataccgctacatcgagccacaactgccggatgtggcgacattaaaagatgttcgcctgcaaattccgatgcagatttacagcgccgatggcgagctgattgctcaatacggtgagaaacgtcgtattccggttacgttggatcaaatcccaccggagatggtgaaagcctttatcgcgacagaagacagccgcttctacgagcatcacggcgttgacccggtggggatcttccgtgcagcaagcgtggcgctgttctccggtcacgcgtcacaaggggcaagtaccattacccagcagctggcgagaaacttcttcctcagtccagaacgcacgctgatgcgtaagattaaggaagtcttcctcgcgattcgcattgaacagctgctgacgaaagacgagatcctcgagctttatctgaacaagatttaccttggttaccgcgcctatggtgtcggtgctgcggcacaagtctatttcggaaaaacggtcgaccaactgacgctgaacgaaatggcggtgatagccgggctgccgaaagcgccttccaccttcaacccgctctactcgatggatcgtgccgtcgcgcggcgtaacgtcgtgctgtcgcggatgctggatgaagggtatatcacccaacaacagttcgatcagacacgcactgaggcgattaacgctaactatcacgcgccggagattgctttctctgcgccgtacctgagcgaaatggtgcgccaggagatgtataaccgttatggcgaaagtgcctatgaagacggttatcgcatttacaccaccatcacccgcaaagtgcagcaggccgcgcagcaggcggtacgtaataacgtgctggactacgacatgcgccacggctatcgcggcccggcaaatgtgctgtggaaagtgggcgagtcggcgtgggataacaacaagattaccgatacgctgaaggcgctgccaacctatggtccgctgctgcctgccgcagtcaccagcgccaatcctcagcaagcgacggcgatgctggcggacgggtcgaccgtcgcattgagtatggaaggcgttcgctgggcgcgtccttaccgttcggatactcagcaaggaccgacgccgcgtaaagtgaccgatgttctgcaaacgggtcagcaaatctgggttcgtcaggttggcgatgcatggtggctggcacaagtgccggaagtgaactcggcgctggtgtcgatcaatccgcaaaacggtgccgttatggcgctggtcggtggctttgatttcaatcagagcaagtttaaccgcgccacccaggcactgcgtcaggtgggttccaacatcaaaccgttcctctacaccgcggcgatggataaaggtctgacgctggcaagtatgttgaacgatgtgccaatttctcgctgggatgcaagtgccggttctgactggcagccgaagaactcaccaccgcagtatgctggtccaattcgcttacgtcaggggctgggtcagtcgaaaaacgtggtgatggtacgcgcaatgcgggcgatgggcgtcgactacgctgcagaatatctgcaacgcttcggcttcccggcacaaaacattgtccacaccgaatcgctggcgctgggttcagcgtccttcaccccaatgcaggtggcgcgcggctacgcggtcatggcgaacggcggcttcctggtggacccgtggtttatcagcaaaattgaaaacgatcagggcggcgtgattttcgaagcgaaaccgaaagtagcctgcccggaatgcgatattccggtgatttacggtgatacgcagaaatcgaacgtgctggaaaataacgatgttgaagatgtcgctatctcccgcgagcagcagaatgtttctgtaccaatgccgcagctggagcaggcaaatcaggcgttagtggcgaagactggcgcgcaggagtacgcaccgcacgtcatcaacactccgctggcattcctgattaagagtgctttgaacaccaatatctttggtgagccaggctggcagggtactggctggcgtgcaggtcgtgatttgcagcgtcgcgatatcggcgggaaaaccgggaccactaacagttcgaaagatgcgtggttctcgggttacggtccgggcgttgtgacctcggtctggattggctttgatgatcaccgtcgtaatctcggtcatacaacggcttccggagcgattaaagatcagatctcaggttacgaaggcggtgccaagagtgcccagcctgcatgggacgcttatatgaaagccgttcttgaaggtgtgccggagcagccgctgacgccgccaccgggtattgtgacggtgaatatcgatcgcagcaccgggcagttagctaatggtggcaacagccgcgaagagtatttcatcgaaggtacgcagccgacacaacaggcagtgcacgaggtgggaacgaccattatcgataatggcgaggcacaggaattgttctgattaaaaaggcgcttcggcgccttttcagtttgctgacaaagtgcacttgtttatgccggatacggcgtgaacgcgttatccggctaacaaaatcgtgaaaactcaataaattgcagaaaccccataagcctgataaacattgtgcatcaggcaaacttcacgcatttacactcgcccctgccctttcaaccattcgcgcacgaggaacagcgcactgacattgcgcgcttcattgaagtcagggtcttccagcaaatccatcatatgcgccagcggccagcgcacctgtggtagcggctctggctcatcgccttccagtgattccgggtagagatcttgcgctaccacgatattcattttgctggaaaagtaagacggtgccatgctgagcttcttcaaaaaagtcagatcgttcgctccaaatccaacctcttcttttagctcgcggttagcggcttcgtagacgctttcacccggatcaattaatcctttcgaaaaacctaattcgtaggattcagttcccactgcgtattcgcggatcaggatcaggtgatcgtccacaatcggcacaatcatcactgcttcccggttggttggacgcattcgttcataaacacgccgcacgccattgctgaactccagatccacgctctcgacggtaaacagtcgggaacgggctacagtttcaacattcagaatggtgggtttttgtaatgatttgctcatcgtgggatctatgctgtgaaatcagcggttattgtgcgatatcggacacgctttcggcaatgtgaattgcatgttatttacatttatgtaacttaataaataatcgtcctcaaatcaaattaaaagtcaataggttgaaataactccaggaatttgctgatattccgccttcagagggtttgctatgatcagcggttactgtgatgtgcttaatgatgctcaagttaaactccacgcttgccgatagccaaccgcagaatcatgtattgtgtccggtgcgactgaccacgcctgacagactaagtaagatggggaaagcatgagcaccattgtgatttttttagctgctttgctggcctgctcactacttgcgggatggctgataaaagtgcgatccagacggcgtcagctgccctggaccaacgccttcgcggatgcgcaaacgcgtaaactcacacctgaagaacgtagcgccgttgaaaattatcttgagagcctgacgcaggtattacaggtgcctggcccaacgggagccagcgcggcaccgatctctctggcgctgaatgccgaaagcaacaacgtcatgatgctgacacacgctatcacgcgttacggcatctctaccgacgatccgaataaatggcgttactacctcgattcggtagaagtccacctgccccctttctgggaacagtacatcaacgatgagaataccgttgaactgattcataccgattcgctgccgctggttatttcactcaacggtcatacgctgcaggagtacatgcaggaaactcgcagctatgccttgcaacctgttccgtcaacgcaggcgtcgattcgcggggaagagagtgagcaaatcgagctactcaatattcgcaaagaaacgcatgaagaatatgcgctgagtcgtccgcgcgggctgcgtgaagcgttgctgatcgtcgcctccttcctgatgttctttttctgcctgattaccccggatgtatttgttccgtggctggcaggcggcgcgttactgctgctgggcgcaggtctgtgggggctattcgcgcccccggcaaaatcctccctgcgggaaattcattgtctgcgcggtacaccccgtcgttggggattgtttggcgaaaacgatcaggaacagatcaacaatatttcactcggtattatcgacctggtctatcccgcacactggcagccatacattgctcaggatctcggtcaacaaaccgatatcgatatctatctcgaccgccatgtagtgcgtcagggacgatatctttcgctgcatgatgaagtaaaaaactttccgttacagcactggctgcgcagtacgattatcgctgcgggctcgctgctggtgctgtttatgctgttattctggatcccgctggatatgccgctgaaattcactctctcatggatgaaaggcgcgcagaccattgaagccaccagcgtaaaacaactggctgacgctggcgtgcgggtaggcgatacattgcgtattagcggtacgggaatgtgtaatattcgaacttccggaacctggagcgcgaaaaccaattcaccttttttaccgtttgactgctcgcagatcatctggaacgacgcccgctcattgccattaccagaatctgaactggtcaacaaagcgacggcattgactgaagcagttaatcgccagctgcaccctaaaccggaagatgaatctcgcgtcagtgcctcattacgttcagcaattcaaaaatccggcatggtattgcttgatgattttggcgacattgtactgaagacagcggatttatgttctgccaaagatgactgtgtgcgactgaaaaatgcgctggtcaatctcggcaacagtaaagactgggacgcgctggtaaaacgcgccaacgccgggaagctcgatggcgtgaatgtgttattacgcccggtgagtgcggaatcgctggataacctggtggcaacctccaccgcgccgtttatcacgcatgaaacggcgcgagcggcacaatcactaaacagtccggcccccggcggattcctgattgtcagcgacgaaggcagcgattttgttgatcagccctggccttcggcatcactttacgactacccgccgcaagaacagtggaacgctttccagaaactggcacaaatgctgatgcatacgccgtttaacgccgagggtatcgtcacaaaaatcttcactgacgccaatggtacgcagcatattggccttcatccgatcccggatcgttccggcctgtggcgctatctcagcaccacattgctgctactgacgatgctgggtagcgccatttacaatggcgtacaggcctggcgtcgttaccagcgtcatcgcactcgcatgatggagattcaggcctattatgaaagctgcctgaacccgcaactgatcaccccttcagaaagccttatcgaataacacgtttgcgcggcaggttatgctaccctgtcgcgcaaattgcttcactctggagatttccctcatgcatatcaacattgcctggcaggacgtagataccgttctgctggatatggacggcacgttgctcgacctcgccttcgataactatttctggcaaaagctggtgcctgaaacatggggcgcgaaaaacggggttacgccacaggaagcgatggaatatatgcgccagcaatatcacgacgtacagcatacgctaaactggtactgtcttgattactggagtgagcaactgggtctggatatctgtgcgatgaccaccgagatgggaccgcgtgccgtactgcgtgaagataccattccgtttcttgaggcactgaaagccagcggtaagcagcgaattttgctcaccaatgcgcatccgcacaacctggcggtaaaacttgagcataccggtctggacgcacaccttgatttattactttccacccacacatttggttatccgaaagaggatcagcggttatggcatgcggtggccgaagctacgggtctgaaagctgaaagaacgctgtttattgatgacagcgaagcgattctcgatgctgccgcgcaatttggtattcgttactgcctcggcgtgactaatcctgattccgggattgccgagaaacagtatcaacgccatccgtcactgaatgactaccgccgcctgatcccctcgctaatgtgaaggagacgccatgaaagagaaacctgctgttgaggttcgactggataaatggctatgggctgcccgtttttataaaacccgcgcgctggcccgtgaaatgattgaaggcggtaaggtgcattacaacgggcagcgcagcaagccgagcaaaatcgtcgagctgaatgccacgctcactctgcgccagggaaatgacgaacgcacggtgattgtaaaggcgattactgaacagcgtcgccccgccagcgaggcagccttgctgtatgaagagactgcggaaagtgtagagaaacgcgaaaaaatggcgctggcacgtaaacttaatgccttaaccatgccgcacccggaccgacgcccggacaaaaaagagcgccgcgacctgttacgatttaaacacggcgacagtgaataactgtcacctgcaagagagatgattatgccgcaacatgaccaattacatcgctatctgtttgaaaactttgccgtgcgcggcgaactggtaaccgtttcggaaaccctgcaacagatccttgagaaccacgattatccgcagcccgttaaaaacgtgctggcagaactgctggttgcgaccagcctgttaaccgctacgctgaagtttgatggtgatatcaccgtacagctgcagggcgacggtccgatgaatctggcggttattaacggtaacaataaccagcagatgcgcggtgtggcgcgcgtgcagggcgaaattccagaaaatgccgacctgaaaacgctggtcggcaatggttacgtggtgatcaccattaccccgagcgaaggcgaacgctatcagggcgtagttggtctggaaggtgataccctggcggcctgcctggaagattactttatgcgttctgaacagctgccgacgcgcctgtttattcgcaccggcgacgtagacggcaaaccggctgcaggcggtatgttgttgcaggtaatgcctgcgcaaaatgcccagcaggacgactttgaccacctggcgacgctaaccgaaaccatcaaaaccgaagaactgctgaccttaccggcaaacgaagtgttgtggcgtttgtatcacgaagaagaggtgacggtttacgatccgcaggatgtggagttcaaatgcacctgctcgcgtgaacgttgcgccgatgcgctgaaaacgctgcctgatgaagaagttgatagcatcctggcggaagatggcgaaattgacatgcattgtgattactgcggtaaccactatctgttcaatgcgatggatattgctgaaatccgcaacaacgcgtctccggcagatccgcaagttcattaatgagtatgtccggcagagagggctctgccggattttacgactaatacacctgatgcgctttgtcactcattcagattcacattcagcctttcaccatccactacaagatcgcgccacgctttaggcttcgtccccagttttccatccttcgcagctgtgagtaatttttctttcgttatttcgttcggaagtaaactcatatcaagcgcgtcccattcttttctgtctgagtcaaagccatagacaatgactctgtcatcattaaaagcaaacaggatccgctccgcctgaccatcactattcagatcttgctcgaccaggacgcaggcgtctttttcaatacaggtcatcacgttatagcgatcctggattaaggccgaccagaatgtcgcatcaggtttaacagaaccaggggcaattaacacattatcggctaatactttttccgatacctgttgctgaagatgttgctctccatctaacgccatcagcagatcccgcgcgcgtttcgggtctttcataaacccggcatcgcttttcagcgactcaagcgcagcacgtccatagcgaccgctctgctcgagcatgtagatagttacctggtctgacgtgtttttgccgctctgataacgcgccatatggctgttcacgctaatgcgcatactgtccagcaccggcgaattaagaagcaccagtatcaccaacaccaataacgaaaccgcaaggttcactttgccctgaagaacaacgggattttgccctttacgccagacgatgctgacaaaataccccagcgaccacaccagtaacaccagcaccgccagcacgccctgcaagcggtcgacagtccagccgtactgagcgacccgcagccataacgcccaggcggcgacgaacacatacagcggagcaaccagcaaagcggttttaatcaggcaacgcaacggccctgtccagggaagtgacgctttttgcggatcgcggacaatagccattaagatcaattgcaaaaaggccagcgtcaacagcaacccggcggcggagatgtggcgagaaatcgcgctcaggcccgtaaacggcagggtgatgataaacatcagggttagcaatgatactaacggcagcaaccccgtggcgattaacgtgaacaacttttgaatagagtcgattaaacgtgactgtgttcgcgcgaggatcaccgccagcgcggtaaccagacctaacgtgagataaataaaccagtcggttgcaaaaaagagcgtattgaaaaacgtgatgccaacaagtttaaacaactcactccacagtaaaagcaccagccacgtcaagccattggcgagaaaaatcaccagtaatataagtacgttatgccatactgactggtaaaaatagcgatagcggctactgtcattgcggatgcgaaggctttgttgtatccacggtagcaacaacattgccatcaacagcagatagcaaccaaaatcccaaagcgccttttcagctctccaggggttcatgccatcagtttgccacttcagccagccgctcatccccagcgtggcaataaacactagcgccagccatccccaaaggcgcttctgtttaaaagagatcacggagaagagtaaaacggatgaaaacgcgacggtcgcaggcacgccataaacaatccaactgtgattttttccggaaagccaggcgatcagcaggtagcaaaccagaccctgaagtaatccggtagcaatcatcccccagcgtgttgcgggtgaaagttcaacgttatccatgttggttatccagaatcaaaaggtgggttaattatcgcatccgggcagtagtattttgcttttttcagaaaataatcaaaaaaagttagcgtggtgaatcgatactttaccggttgaatttgcatcaatttcattcaggaatgcgattccactcacaatattcccgccatataaaccaagatttaaccttttgagaacattttccacacctaaaatgctatttctgcgataatagcaaccgtttcgtgacaggaatcacggagttttttgtcaaatatgaatttctccagatacgtaaatctatgagccttgtcgcggttaacacccccaaaaagactttactattcaggcaatacatattggctaaggagcagtgaaatgcgcgttaacaatggtttgaccccgcaagaactcgaggcttatggtatcagtgacgtacatgatatcgtttacaacccaagctacgacctgctgtatcaggaagagctcgatccgagcctgacaggttatgagcgcggggtgttaactaatctgggtgccgttgccgtcgataccgggatcttcaccggtcgttcaccaaaagataagtatatcgtccgtgacgataccactcgcgatactttctggtgggcagacaaaggcaaaggtaagaacgacaacaaacctctctctccggaaacctggcagcatctgaaaggcctggtgaccaggcagctttccggcaaacgtctgttcgttgtcgacgctttctgtggtgcgaacccggatactcgtctttccgtccgtttcatcaccgaagtggcctggcaggcgcattttgtcaaaaacatgtttattcgcccgagcgatgaagaactggcaggtttcaaaccagactttatcgttatgaacggcgcgaagtgcactaacccgcagtggaaagaacagggtctcaactccgaaaacttcgtggcgtttaacctgaccgagcgcatgcagctgattggcggcacctggtacggcggcgaaatgaagaaagggatgttctcgatgatgaactacctgctgccgctgaaaggtatcgcttctatgcactgctccgccaacgttggtgagaaaggcgatgttgcggtgttcttcggcctttccggcaccggtaaaaccaccctttccaccgacccgaaacgtcgcctgattggcgatgacgaacacggctgggacgatgacggcgtgtttaacttcgaaggcggctgctacgcaaaaactatcaagctgtcgaaagaagcggaacctgaaatctacaacgctatccgtcgtgatgcgttgctggaaaacgtcaccgtgcgtgaagatggcactatcgactttgatgatggttcaaaaaccgagaacacccgcgtttcttatccgatctatcacatcgataacattgttaagccggtttccaaagcgggccacgcgactaaggttatcttcctgactgctgatgctttcggcgtgttgccgccggtttctcgcctgactgccgatcaaacccagtatcacttcctctctggcttcaccgccaaactggccggtactgagcgtggcatcaccgaaccgacgccaaccttctccgcttgcttcggcgcggcattcctgtcgctgcacccgactcagtacgcagaagtgctggtgaaacgtatgcaggcggcgggcgcgcaggcttatctggttaacactggctggaacggcactggcaaacgtatctcgattaaagatacccgcgccattatcgacgccatcctcaacggttcgctggataatgcagaaaccttcactctgccgatgtttaacctggcgatcccaaccgaactgccgggcgtagacacgaagattctcgatccgcgtaacacctacgcttctccggaacagtggcaggaaaaagccgaaaccctggcgaaactgtttatcgacaacttcgataaatacaccgacacccctgcgggtgccgcgctggtagcggctggtccgaaactgtaatgatttgaagctggagaatatctatccagtatcttatagaaagcaaaacgggaggcaccttcgcctcccgtttatttacccttcttttgtcgtgccctgcgcccgcgttaccggcactggcagccaggcgcgaatggaaagcccgccccgctcgctggtgccaagctccagcatcccgttatggttatccacgatacgctgcacaattgccagccctaatcccgtgccgctaatggtgcgcgcactgtcgccgcggacaaacggctggaacaggtgcttacgttgttccggcgcaattcccggaccgtcatcttccacctggaaccaggcgcgattcggctccgttccgctgctgactttgatccagccattgccataacgggcggcgttgaccaccatattcgccaccgcgcgtttgatcgacagcgggtgcattttcacttcaatgctgccggggtaaagcgcggtttcaatttcccgctcatagccactttcggcagcaatcacctcaccgagtactgcattaagatccgccatttccatcggcatctcctgcccggtgcgcaggtagtcgataaactgctcaatgatggcgttgcactcttcgatatctttattgatcgattctgccagatagccatcctgctcgctcatcatctcagtcgccaggcgaatacgcgtcagcggcgtgcgcaagtcgtgacttacccccgccatcagcagcgtgcggtcatccgccagttgcttaacaccagccgccatatggttaaaggcacgggtaacggaacgcacctccgaagcgccatactcacgcagcggcggcggaataatccctttaccaacctgcaaggctgcgtgttcgagatcgaccaacggtcggttctggatacgaataaacagccacgccccgcctatcgccaatagcataatcgccagcgtatagcggaacagcggagagaaatcgccctgatgaatttcggtcagcggcacgcgtacccagatattgggcgacagccaggttttcagccagacgacaggcgaacttttgttgacctcaacgcgcacttccgtcgggccgcccagttgctgcgccatctgatggcttaagaattcatagtgttgcgcccaacgcagacctgcctcttcggcagcctcgttggagtagagagagatccccagctcacggtagatctcccgacggaaagcgggaggcacaaccaactgcgtgccgtcctccagttgcagtttgtcggtcatcaacatacgcacttcgtacgcgaggactttattaaactgctggaggctcggcaaaatcgcgaagttcagcaccaccagataagtcgtcaccaggctggcgaacagcaaggtgacgatgagcaataacgtacgggcaaatgaacttcgtggcgagaagcgcaatcgcctcatgctttagagccgtccggtacaaagacgtagcccagaccccagacggtctgaatgtaacgcggatgcgctggatcttcttccaccatgcggcgcagacgcgaaatctgcacgtcgatggagcgttccattgcggaatattcacgaccacgggcaaggttcatcagcttatcgcgggagagcggctcacgcggatggctgaccagtgccttcagtaccgcaaactcaccgctggtgagcggcatcggctcgtcttcgcggaacatttcgcgcgtaccgaggttaagtttgaacttaccgaaagcaattaccgcctcttcctgtgacggtgcgcctggcagttcgttcgcctgacgacgcagcaccgcacggatacgggccagcagttcacgcgggttaaacggttttggaatgtagtcgtcagcgccaatctccaggcctacgatacggtccacttcttcccctttcgccgtcaccataatgatcggcatcgggttgctctgactacgaagacgtcggcaaatcgacaagccatcttcaccaggtaacattaaatccagtaccataagatggaaagattcacgagtcagcaggcgatccatctgttctgcattagcgacgcttcgaacctggaagccttgttcggtgagataacgttccagcagcgcacgcaggcgcatgtcgtcatcgaccaccagaatcttgtagttctcttgcattgtttgtactcccaaaggttcgcaacaatttgtaagcgtgtattcttaaaaaagctcacgttcgtcaccagctaaatctggtatgaatttcagcctaaattgttacaaagcatattaaacagcagcttaagtatacaatttattcggcgaaacattattgattctgttgatatgatcacgttatacccaatgtgcgcattatcaaacagacaaagggaatcaacgagatgaaaacgcccctggttacccgggaagggtatgaaaaactcaaacaagagcttaattatctctggcgtgaagaacgcccggaggtcacaaaaaaggtgacctgggccgcaagtctgggcgaccgcagcgaaaatgctgactatcagtataataaaaagcgtctgcgtgaaatcgaccgtcgcgtgcgctatctcactaaatgcctggaaaatctcaaaatcgtcgattactcccctcagcaggaaggcaaagtcttttttggcgcgtgggtggagattgaaaacgacgatggcgtgactcaccgtttccgtattgtcggctacgatgaaatttttggccgtaaagattacatctctatcgattccccgatggcccgcgcattgctgaaaaaagaagtcggcgatctggcggtggtgaatacccctgccggggaagcgagctggtatgttaatgctatcgagtacgtgaaaccgtaaggaagagtcttaacctcctgccgatggctggcatttttgccagccagtccgtataactatcccctgatttttgatccgaaaagatgaactcaaaccatgatgaatgattcgttctgccgcattattgcgggtgaaattcaggcgcgcccggaacaggttgacgctgccgttcgcctgcttgacgaagggaataccgtgccgtttatcgcacgttatcgtaaggaaatcaccggcggtctggatgacacgcagctgcgtaatctggaaacgcgtctgagctatctgcgcgagctggaagagagacgtcaggcgatcctcaagtccatttccgagcaaggcaaactcaccgatgatctggcgaaggccatcaacgccaccctaagcaaaaccgaactcgaagacctctacctgccctacaaacctaaacgccgcacccgcgggcaaatcgccattgaagcagggcttgagccgttggctgacctgctgtggagcgatccgtcacacacgccagaagtcgccgctgcacaatatgtttatgccgataaaggcgtggcagataccaaagccgcgctggatggcgcgcgctatatcctgatggaacggtttgccgaagatgccgcgctgctggcgaaagtgcgtgattatctgtggaagaacgcgcatttggtttctacggtggtgagcggtaaagaagaggaaggggcgaaattccgcgactatttcgatcatcacgaaccgttgtccacggtgccttctcaccgcgcgctggcgatgttccgtgggcgtaacgaaggcgtacttcagctttcgctgaatgccgatccacagttcgatgagccgcccaaagagagctattgcgagcaaatcatcatggatcaccttggcctgcgcctgaacaatgccccggcggatagctggcgcaaaggcgtggtgagctggacgtggcgcatcaaggtgctgatgcatctggaaaccgaactgatgggcaccgtgcgcgaacgtgcggaagatgaagcaatcaacgtctttgcccgtaacctgcacgatctgctgatggcggcccctgccggactgcgtgcaacgatgggcctcgatccgggtctgcgtactggggtaaaagtggcggtggtcgatgccactggcaaactggtggcgaccgacaccatttacccgcacaccggacaggccgcaaaagcagcgatgaccgttgctgcgctgtgtgaaaaacataacgttgaactggtagcgatcggtaacggtacagcttcccgcgaaactgagcgtttctatctcgatgtgcagaagcagttcccgaaagtgaccgcgcagaaagtaatcgtcagcgaagcaggcgcgtcggtttactcggcttccgagctggctgcacaggagttcccggatctcgacgtttcgctgcgtggcgcggtgtctatcgcccgccgtttgcaggatccgctggcggagctggtgaaaatcgatccgaaatctatcggcgtaggtcagtatcagcatgacgtcagccagacgcaactggcccgcaaactggacgcagtagtagaagactgcgtaaacgccgttggcgtcgatctcaacactgcttctgttccgctgttaacccgcgtggcgggcctgacgcgcatgatggcgcaaaacatcgttgcctggcgcgatgagaacggtcagttccagaaccgtcagcaactgttaaaagtgagccgtctggggccgaaagccttcgagcagtgcgcgggcttcttgcgcattaaccacggtgataacccgctggacgcgtctaccgttcacccggaagcctatccggtggtggaacgcattctggcagcaacacagcaggcactgaaagatctgatgggtaacagcagcgaactgcgtaacctgaaagcgtctgactttactgatgagaaattcggtgtgccgacggtaaccgacatcatcaaagagctggaaaaaccgggtcgcgatccgcgtccggaatttaaaaccgctcagtttgccgatggcgtcgagacaatgaacgacctgcaaccgggtatgatcctcgaaggcgcagtgaccaacgtcaccaactttggcgcgtttgtcgatattggcgtgcatcaggacggcctggttcacatctcttcattgtcgaacaagtttgtggaagatccgcataccgtggtgaaagcgggcgacattgtgaaggtgaaagtgctggaagtggatcttcagcgtaaacgtatcgccctgactatgcgcctggatgagcagcctggcgaaaccaacgctcgtcgcggcggcggtaatgaacgcccgcaaaacaaccgcccggcagccaaaccacgcggtcgtgaagcgcagcctgccggtaatagcgcgatgatggatgcgctggcggcggcaatgggcaaaaaacgttaaacgcccgtactggcctacggttcgaatttgcacgaaatcgtagggcagataaggcgttcaccgcatctggcaacgaacgccttgcctgacataaaagtagccggagaatatctcgatttttattccacagccaaactcataatatattccggcaatatttatcatttcattaacaactgaaaccttaattaaacattagccagtccgggtaattcactattcgaattatattttcgctgcgatataaccttgagccacatcaacattgagtcagattattatcaaaccaacattcgcacacattttaagtattgctgatagaaaccattctcattatcattgtgttgttgattatttaatctctcctttgttggcaaatcatctggtctcatgtcgctgtcaaacgccccatgaggtagttatccagttaatgagaaacaagtaggcacctatgcaatacactccagatactgcgtggaaaatcactggcttttcccgtgaaatcagcccggcatatcgccaaaaactgctttctcttggcatgttacctggctcctcttttaatgtggtgcgcgtcgctccactcggcgaccccattcatatcgaaacccgtcgtgtgagcctggtattacgcaaaaaagatctggccttattagaagtggaagcggtttcctgttaatacggtgataacaacaatgaaaaaattaaccattggcttaattggtaatccaaattctggcaagacaacgttatttaaccagctcactggctcacgtcagcgtgtaggtaactgggctggcgttaccgtcgaacgtaaagaagggcaattctccaccaccgatcatcaggtcacgctggtggacctgcccggcacctattctctgaccaccatctcatcgcagacctcgctcgatgagcaaatcgcctgtcactacattttgagtggcgacgccgacctgctgattaacgtggtggatgcgtctaaccttgagcgtaacctgtacctgacgctacaactgctggaactcggcattccctgcattgtggcactgaacatgctcgacattgccgagaagcaaaatattcgtattgaaattgatgctctgtcggcgcgtctgggctgtccggtgatcccgctggtttcaacccgtggtcgcggtattgaagcgctcaagctggcgattgatcgctataaagctaacgagaatgtggaactggtgcattacgcacagccgctgctcaacgaagcagattcactggcaaaagtgatgccttccgacatcccgctgaaacaacgtcgctggctgggcctgcaaatgctggaaggcgatatctacagccgcgcctacgccggtgaagcgtcgcagcatctggatgccgccctcgcccgtctgcgtaatgagatggacgatccggcgctgcacattgccgatgcgcgttaccagtgcattgctgccatctgtgatgtggtaagcaacaccctgacggcagaacccagccgtttcaccactgcggtagataaaatcgtgctcaaccgtttcctcggtctgccgattttcctctttgtgatgtacctgatgttcctgctggctatcaacatcggcggggcgttacagccgctgtttgacgtcggctccgtggcgctatttgtgcatggtattcaatggattggctacacgctccacttcccggactggctgactatcttcctcgcccagggcctgggtggcggcattaacaccgtgctgccactggtgccgcagattggcatgatgtacctgttcctctccttccttgaggactccgggtatatggcgcgtgcggcgtttgtgatggaccgtctgatgcaggcgctgggcttgccggggaaatcctttgtgccgctgatcgtcggtttcggttgtaacgtaccgtcggtaatgggtgcacgtacgcttgatgcaccgcgtgaacgtctgatgaccatcatgatggcaccgtttatgtcctgcggcgcgcgtctggctatcttcgcagtattcgcggctgccttcttcgggcagaacggtgcgctggcggtcttctcgctgtatatgctgggtattgtgatggcggtgctgactggcctgatgctcaagtacaccatcatgcgcggtgaagcgacgccgtttgtcatggagttgccggtctatcatgtaccacacgttaaaagcctgattatccagacctggcagcgtctgaaaggcttcgttctgcgtgctggtaaagtgatcatcatcgtcagcattttcctgagcgctttcaacagcttctcgctgagcgggaaaatcgtcgataacatcaacgactcggcgctggcgtccgtcagccgggtgatcaccccggtcttcaagccaattggcgtgcatgaagataactggcaggcaacggttggcctgtttacaggtgccatggcgaaagaagtggtagtgggtacgctcaacaccctctacaccgcagaaaatattcaggacgaagagttcaatccggcagaatttaacctcggtgaagagctgttcagtgcgatagatgaaacctggcagagcctgaaagacaccttcagccttagcgtactgatgaaccccattgaagccagcaaaggcgacggcgaaatgggtaccggggcgatgggcgtgatggatcagaaattcggtagcgcagcagcagcttacagctacctgattttcgtcctgctgtatgtaccatgtatctcggtgatgggggctatcgcccgtgaatcaagccgtggctggatgggcttctccatcctgtgggggctgaatatcgcttactcactggcaacattgttctatcaggtcgccagctacagtcagcatccaacttacagcctggtgtgcattctggcggttatcctgtttaacatcgtggttatcggtctgctgcgccgcgcgcgtagccgggtggatatcgaactgctggcaacccgcaagtcggtaagcagttgctgcgcagccagcaccaccggtgattgccattaatggcttcacttattcaggtgcgcgatttgctggcgttacggggccgtatggaagcggcccagataagccagacattgaacactccacagccaatgattaacgccatgctgcaacaactggaaagtatgggcaaagccgtgcggattcaggaagaacctgacggctgcctctctggcagttgtaaaagctgcccggaaggaaaagcctgtctgcgcgagtggtgggcgctgcgttaaccttactccatcgcctgttttggaaagcccggtatgcgtctgcatccgggcttttttgcgtgcggctttccataaaaatgcaactcttgcagcacggcgtaagttcctttgaaagcatctcgcagggatgaaaactcgctaatacacaggtgtggagtggcgcgtagagtcgcggcattcaaacaacaggtgaaggaacgccatgagcaaaaagcagagttccaccccacacgatgcgctgttcaaactctttttacgccaaccggacacggctcgtgattttcttgcgtttcatttaccggcacccattcacgcgctttgtgatatgaaaaccctcaagctggagtcgagcagctttattgatgacgatctgcgtgaaagctattccgatgtgctgtggtcggtgaaaacggaacaaggaccaggatacatctattgtctgattgaacatcaaagcacctcaaacaaactgatcgcatttcgcatgatgcgttacgctattgccgcaatgcaaaatcaccttgatgctggatacaaaacgttgccgatggtggtgccattgttgttttaccacggtattgaaagcccctatccctattcgctgtgttggctggattgtttcgccgatcccaaactggcaaggcagctttatgcctccgcatttccgctgattgatgtcaccgtcatgcctgatgatgaaatcatgcagcaccgacgtatggcgctgctggagttaattcaaaaacatattcgtcaacgcgacctgatggggctggtagagcaaatggcctgcttattaagtagtggatacgctaatgacagacaaatcaaagggctgtttaattacatactgcaaactggcgacgctgtacgttttaacgattttatcgacggcgttgccgaacgttcaccgaaacacaaggagagtttaatgactattgcggaaagattgcggcaggagggggaacaatccaaagccctgcatatagccaaaataatgcttgaatccggagttcctcttgcagacatcatgcgctttaccgggctgtcagaagaagagttggctgcggcgagtcagtaaagttctgtctcgccatttcaaaagccacctacaccctctgcttcaacgccaccagcaggtgacaaaactcggccggatgcgaaataaatggcgcatgggccgctttggcgaagatatatgattcgctgtgaggccaaagtttatccagcatcggcaccactttgcgcggcaccagaccgtcgagatagccatacaatcgcaaaaacggcatggacacgttttgcagcggctgacggagatcgaccgttttcaggatttccagcccgccattaagcacgtcaacctccggcatcggtaacgccagaacggttttcttcaacgcccgcgcatcctggcgcgccgtttcagtccccatggtttgtaacgccaggaaccgctccactgtacgctgaaaatcatcactgagttgctgctgaaatcccgccagcacgtccggttttatccccggccactcgtcacgagcactaaaacaaggtgacgacgccacggtgaccagcgcctgaacacgctcgggatgggttaacgcaatctggcttgccaccagcccgcccagactccagcctaaccaaatggctttatcaggtgcctgttgcagcacggcttcggccatatcagcaagtgacagcgcaccaaatccccggctacgcccgaagccgggcaggtcaacaaggtgcagcgtaaaatgcgagctaagttcctcgtcaatgcaacgccacacttcggcattcagtccccatccgtgcagcagcacaagatgaacattcccctgacctttggtctgccaccagatgttattcatccgctattgttctcttttgacttacaaggatgaacatatgctaacagtaccgggattatgctggctatgccgaatgccactggcgttaggtcattgggggatttgttcggtctgttcacgcgccacccgcacagataaaacgttatgcccacaatgtggattacccgccacacactcccatcttccctgcggtcgctgcctgcaaaaaccgccgccctggcaaagactggtcacggttgccgactatgcgccgccgttaagtccgcttatccaccagcttaaattttcccggcgcagtgaaatcgccagcgccctgtcacgtctgttactattggaagtcttacacgctcgtcgcaccaccgggttgcaattgccggatcgcatcgtcagcgttccgttatggcagcggcgtcactggcgtcggggatttaatcagagcgatttgctgtgtcagccgttatcacgctggttgcactgccaatgggatagcgaagccgtcacacgtacacgggccactgcgacccagcattttctcagtgcccggctgcgcaagcgcaacctgaaaaatgcctttcgtcttgaattgcccgtgcaaggtcgccatatggtgattgtggatgatgtcgttaccaccggaagtaccgtcgcagagattgcgcagttgcttttacgcaatggtgcggcggctgtccaggtctggtgcctttgtcgaaccttgtagagcctcgatgatgggcgtattataaccaactaaaatagtcaactattaggccattactatgatccgtatttccgatgctgcacaagcgcactttgccaaactgctggcaaatcaggaagaagggacacaaatccgcgtatttgtgattaaccctggcacgcctaacgctgaatgtggcgtttcttattgtccgccggacgctgtggaagccaccgacacagccctgaaatttgacctgctgaccgcgtatgttgatgagttaagcgcaccatacctggaagatgcagagatcgattttgttaccgaccagttgggttcccagttaacgctgaaagccccgaacgccaaaatgcgtaaagtggcagacgatgcaccgctgatggagcgcgtggagtatatgctgcagtcgcagatcaacccacagcttgctggtcacggtggtcgcgtttcgctgatggaaatcaccgaagacggttacgccattctgcaatttggcggcggctgtaacggttgttccatggtcgatgtgacgctgaaagaagggatcgagaagcagctgctgaacgaattcccggagctgaaaggtgtgcgcgatctcaccgaacaccagcgcggcgaacactcctactactaagttatcccctcttttgtagattgcccgatgcgacgctaaagcgtcatttcgggcctacgttgaacatgtgccagacgttggcgcagcattgctttgtcaaatcctcggttcgtttccccgcgataatatgaccaacctctcataatttaaatttaccccgctctggtgattctcaaacgccagatgttacccgtatcattcacatgggtaccaaacatactcctgacatctgactacaataattagttttagtgggtatcagtcgtggtgccgcaatatctctgttcccgattgggataattagagtttgtcgtcagaaaattgacgttacccataacaaatgaaaggccaggtaaatcatgccattagtcattgttgctatcggtgtaatcttgttgttgctcctgatgatccgcttcaaaatgaacggcttcatcgctctcgtcctcgtggcgcttgctgttggattaatgcaaggaatgccgctggataaagttattggctccatcaaagccggtgtcgcggacgtcggtagccttgccctgatcatgggttttggcgcaatgctgggcaaaatgctggcagactgcggtggcgcacaacgtatcgccaccacgctgattgccaaatttggtaaaaaacacatccagtgggcggtggtactgaccggttttaccgttggttttgccctgttctatgaagtgggctttgtgctgatgctgccgctggtgtttaccatcgcggcttctgcgaatattccactgctgtatgttggtgtaccaatggcggctgcactgtctgtgacccacggcttcctgccaccgcatccgggtccgactgcgattgccaccattttcaatgccgatatgggtaaaaccctgctgtacggtactattctggcaatcccgaccgtgattctcgccggtccggtttacgctcgcgtgttgaaaggtatcgataagccaattccggaaggtctctacagcgcgaaaaccttcagcgaagaagagatgccgagctttggcgtcagcgtctggacctctctggtgccggtagtactgatggcgatgcgtgcgattgccgaaatgatcctgccgaaaggtcacgctttcctgccggtagcggagttcctcggtgacccggtaatggcaacgctgattgccgtgctgattgcgatgttcacctttggtctaaaccgtggtcgttcaatggatcagattaacgacacgctggtttcttccatcaaaatcattgcgatgatgctgttgatcatcggtggtggcggtgcgttcaagcaggtgctggtagacagcggcgtggacaaatacattgcttccatgatgcacgaaaccaacatttctccgctgctgatggcctggtcgattgctgccgtactgcgtatcgcgctgggttccgcaaccgttgcggcaatcactgcgggtggtatcgcggcaccgctgattgcaacgacgggtgttagcccggagctgatggttattgcggttggttccggtagtgtgattttctctcatgtgaacgatccgggcttctggctgttcaaagagtactttaacctgactatcggcgagaccatcaaatcctggtcgatgctggaaaccattatctcggtgtgcggtctggtaggctgtctgctgctgaatatggtgatttgataacactgactgccggatgcctgaccgccttatccggcctacgattcgggatgaattagtaggccggataagacgcgtcaagcatcgcatccggcatcaaccgcactctacttcttcttcgctgcagctctgcgccgtctgtccaaatccttcagcaacttgttcacgccatcatcggcaaacatcgactcaagcgttgcggaaagcttgcgtcgccagtttttatactggtaactggtgccaggaatattcaccggttcggccatatccagccagtcttccggctgtagtcctaacagagcactgttactgtcggcaatgtagcgctgcaaaccacggttcagcgtcggcgtcatcgacatcaacgatgccttatgcccggcacgtttcggcagacaaccatatttatgcagtgcatccagcagcccttgcttcgccagttcgcgatcctgatacagaccgcgcagtaccacttcatccggatacagccccagggttttgcccagcgttagatccccgcactcccagtaaccgcgcagcgttggcaggtcatgtgtcgccgcaaccgccatcgactgctccggatacgctttcggtgcacggaacgtcttctcgtggtcgttttcgaaatagagcactttgtaagagtacacaccgctgctgcgcagcttaccgacaatctctaccggtacggtaccgagatcttcaccaatcaccatacagcgatgacgtttactttcgagtgccagaatcgagagcagatcatccaccggatagtgaacatacgcgccctgatctgccgtctcgccatacggtatccaccacaaacgcagcatcgacatcacatggtcaattcgtaatgcgccgcagttttgcatattggcacgcaacagctcgataaacggttcataggcacgcgcggtgatgatatgcgggtccattggcggtaatccccagttctgccccaacgggccgaggatatccggcggcgcgccaaccgatgctttcaggcaatatagttcacggtcacaccaggtttccgccccaccttccgctacgccaaccgccagatcacgatacaagccaatcggcatttcatagccctggcttatctcccagcaggcggcaaactggctgtaagccagccactgcaaccagagataaaaatcgacgtcatcacgatgttcttcgcagaactgacgcacttctggtgaatccacgttctgatacatctctggccatgcaggccagccccagcgcatttcgtcctctttcacttgctgggcatgtagcgcatcaaaggctgcctgccagaacaggctgtcgccctgctctgcaacaaactggcgaaacgcggccatctgctcatcatcacgttgcgcgaaacctttccacgccattcgtaatgctgtcatttttagggcggtaaccgtggagtaatcgacccagtcggcatcgcgcgcctgttgcagcgtctgttgcgtggtcggcaactgccaccaggcctgagcctcttcgctaagatggaaatcttcaacggcgttaacgtcgatataaatcacattcagccaacggcgagaagacgggctgtatgggctggcgctctccggatttgccggatagagcgcatgaatcgggttcaggccaatgaacgacccgccacgttttgccacatccaccagcatcgctttgagatcgccaaaatccccaataccccagtttttttccgatcgcagcgtataaagctgaacgcaggcaccccacagcttttgtttattcagcaacgcctgcggttcgtaacagcgtttcggggcgacaatcacccggcaatgcgcgcgctggtcgtcctgggtgagtgtcagcgtgtgataaccttccggcagcttcgtcggtagattgaacgctttgccccccgttacatggcctttgtactgcgttccttcttcggtggtcagcagccagctatattcgccgctgccctccaccaccatcggcatttttttgccgctggtataaaccatgacattcgggactggcgttaccgccactttcgtggcggtacgttgatgcatcgcgtcaagcaaacgccgtttggtttcggcgctaatcgactgcggtttaccgtgggcattgatgtaattggggctaatccccgccgccagcgcggcattatccagacgtttgctttccatcgagcttccttagcgttttgcctgccagatacgagcctgataatcgcgaatagagcgatccgagctaaacataccgcagcgggcggtattgaggatcgccgcgcgagtccaggcctcctggtcgcggtacagcacatccacctgcttttgtgcctctacataggctgcgaaatccgccatcaccagatacggatcgccgccctgtttgccgatactgtgcagcatctggtcgaaggcatgcttatcgccgtcgctgtatttaccgctttccagctctttcaatactgcgtccagcaccttatctttcttccgccatttcaccgggtcgtagcctttggccagaattgccttcacttgttccacggtatgaccaaaaataaagatattttcttcaccgactttctcggcgatttcaacgttcgccccatccagcgtaccgacagtaagcgcaccattgagcgccagtttcatattgccggtaccggaagcttctttacctgcagtcgaaatttgttcggagatatccgccgccgggatcagtttttccgccgccgaaacgcaataatccggcaggaacaccaccttcaacttatcgccaaccagcggatcgttgttgatcacgtcagccactttgttgatcgcaaagataatattcttcgccaggtagtagcccggtgccgctttcgcgccgaagaggaagacgcgcggtacgcgatcagcctgcgggttttcacgaatttctttgtacaacgccagaatatgcagcagattcaggtgctggcgtttgtactcatgcaaacgtttgatctgaatatcgaaaatcgcctgtggattgatctcaataccggtacgaactttcacaaactccgccagacggactttattcgcctgcttgatctcgcgatattgctgacggaatttcgcatcatcagcgaatttttccagattgatcagctgatcgagatcgttagcccactctttttgcagtgatttatccaacagagccgccagtgccgggttgcactgtttgatccagcgacgtggggtaataccgttggtgacgttatggaatttgttcggccatagctggtgatattccgggaacagatctttcaccaccagatccgagtgcagcgccgcaacaccgttcaccgcgaaaccgccaaccacacacaggttcgccatatgcacttgtttgtcgtgcaccaccgccagtttggcccacactttttcatcgcccggccaggttttctctaccagcgttttaaagcgagtattaatttcgttaataatctgcatgtggcgcggcagtaagcctttcaccagtttcacatcccagcgttccagcgcttctggcatcagggtatggttggtgtaagcgaaagttttgctggtaatggcccaggcgtcatcccagctcatctggtgctcatcgatcagcacgcgcagcagttctggaatcgcgatagttgggtgggtatcgttcagctgaataacttcgtaatccgccagttcgtgcagtttacgccccgccagatgatggcgacgcaaaatatccgctaccgaacaggcacactggaagtattgctgcatcaggcgcagctttttaccggcagtatggttgtcgtttggatagagaactttggtcagtttttccgcattgatgccctgctgttcggcacgcaagaaatcaccgtcgttaaatttagtcagatcaaacggatgcgcgtgcgtcgcctgccacagacgcagcggctgcgccacgccattacgatagccgacaacggggagatcccacgcttgaccggtaatggtaaactccggctcccagcgtccgtctttcgtcactttaccgccaatccctacctgcacatccagtgcttcgttgtggcggaaccacgggtagttactgcgatgccagtcatccggcgcttcaacctgtttgccatcgacaaaagactggcggaacaaaccatattgatagttcagaccgtaacccgtcgcagactgaccgacagttgccattgagtcgaggaagcacgccgccagacgtcccagaccaccgttacccagcgccgggtcgatctcttcttccagcaggtccgtcagattgatgtcataagccttcaacgaatcctgtacatcctgataccagccgagattcaacaggttgttgcccgtcaggcgaccaatcaaaaactccattgagatgtagttaacatgtcgctgattcgccaccggcttggcgaatggctgagcacgcagcatttcggccagtgcttcactcactgctagccaccactggcgaggagtcatttcagccgcagaatttaagccataacgctgccactgacgtgaaagcgcttcctgaaattgcttatcgttaaaaataggttgtgacataggagttccacttttcttagattttcaacacaacgttatcgctagtttgccaggctcgatgttgaccttcctcatcctgcgggggattaggcagggaggagttgcggggatgagcaaggaaatgtgatctcaaccacttaaagctagtgcaaaccacaggattagcatcaaatcaatgcaatacagcgcagaaaatctgtatctaagtgcaaaaaatggccgttgcgtattttcaaaaagcggaaggtaactctataaattaagtaaaggagtgaaacagtttcataagtaaaatatccagtgtgctccatctcattcttaatagatttattaagatcatctttttagatggcactttcatcaggaatgaagaagaaacccttgcttaaatgaatctgatgaacataagggaaaccagtattcacgctggatcagcgtcgttttaggtgagttgttaataaagatttggaattgtgacacagtgcaaattcagacacataaaaaaacgtcatcgcttgcattagaaaggtttctggccgaccttataaccattaattacgaagcgcaaaaaaaataatatttcctcattttccacagtgaagtgattaactatgctgattccgtcaaaactaagtcgtccggttcgactcgaccataccgtggttcgtgagcgcctgctggctaaactttccggcgcgaacaacttccggctggcgctgatcacgagtcctgcgggctacggaaagaccaccctcatttcccagtgggcggcaggcaaaaacgatatcggctggtactcgctggatgaaggtgataaccagcaagagcgtttcgccagctatctcattgccgccgtgcagcaggcaaccaacggtcactgtgcgatatgtgagacgatggcgcaaaaacggcaatatgccagcctgacgtcactcttcgcccagcttttcattgagctggcggaatggcatagcccactttatctggtcatcgatgactatcatctgatcactaatccagtgatccacgagtcaatgcgcttctttattcgccatcaaccagaaaatctcaccctggtggtgttgtcacgcaaccttccgcaactgggcattgccaatctgcgtgttcgtgatcaactgctggaaattggcagtcagcaactggcatttacccatcaggaagcgaacgagttttttgattgccgtctgtcatcgccgattgaagccgcagaaagcagtcggatttgcgatgacgtttccggttgggcgacggcactacagctaatcgccctctccgcccggcagaatacccactcagcccataagtcggcacgccgcctggcgggaatcaatgccagccatctttcggattatctggtcgatgaggttttggataacgtcgatctcgcaacgcgccattttctgttgaaaagcgccattttgcgctcaatgaacgatgccctcatcacccgtgtgaccggcgaagaaaacgggcaaatgcgcctcgaagagattgagcgtcaggggctgtttttacagcggatggatgataccggcgagtggttctgctatcacccgctgtttggtaacttcctgcgccagcgctgccagtgggaactggcggcggagctgccggaaatccaccgtgccgccgcagaaagctggatggcccagggatttcccagcgaagcaattcatcatgcgctggcggcaggcgatgcgctgatgctgcgcgatattctgcttaatcacgcctggagtctgttcaaccatagcgaactgtcgctgctggaagagtcgcttaaggccctgccgtgggacagcttgctggaaaatccgcagttggtgttattgcaggcgtggctgatgcaaagccaacatcgctacggcgaagttaacaccctgctagcccgtgctgaacatgaaatcaaggacatcagagaagacaccatgcacgcagaatttaacgctctgcgcgcccaggtggcgattaacgatggtaatccggatgaagcggaacggctggcaaaactggcactggaagagctgccgccgggctggttctatagccgcattgtggcaacctcggtgctgggtgaagtgctgcactgcaaaggcgaattgacccgctcactggcgctaatgcagcaaaccgaacagatggcacgccagcacgatgtctggcactacgctttgtggagtttaatccagcaaagtgaaattctgtttgcccaagggttcctgcaaaccgcgtgggaaacgcaggaaaaagcattccagctgatcaacgagcagcatctggaacagctgccaatgcatgagtttctggtgcgcattcgtgcgcagctgttatgggcctgggcgcggctggatgaagccgaagcgtcggcgcgtagcgggattgaagtcttgtcgtcttatcagccacagcaacagcttcagtgcctggcaatgttgattcaatgctcgctggcccgtggtgatttagataacgcccgtagccagctgaaccgtctggaaaacctgctggggaatggcaaatatcacagcgactggatctctaacgccaacaaagtccgggtgatttactggcaaatgaccggcgataaagccgccgctgccaactggttgcgtcatacggctaaaccagagtttgcgaacaaccacttcctgcaaggtcaatggcgcaacattgcccgtgcacaaatcttgctgggcgagtttgaaccggcagaaattgttctcgaagaactcaatgaaaatgcccggagtctgcggttgatgagcgatctcaaccgtaacctgttgctgcttaatcaactgtactggcaggccggacgtaaaagtgacgcccagcgcgtgttgctggacgcattaaaactggcgaatcgcaccggatttatcagccattttgtcatcgaaggcgaagcgatggcgcaacaactgcgtcagctgattcagcttaatacgctgccggaactggaacagcatcgcgcgcagcgtattctgcgagaaatcaatcaacatcatcggcataaattcgcccatttcgatgagaatttcgttgaacgtctgctaaatcatcctgaagtacctgaactgatccgcaccagcccgctgacgcaacgtgaatggcaggtactggggctgatctactctggttacagcaatgagcaaattgccggagaactggaagtcgcggcaaccaccatcaaaacgcatatccgcaatctgtatcagaaactcggcgtggcccatcgccaggatgcggtacaacacgcccagcaattgctgaagatgatggggtacggcgtgtaagtttagccggataacgcgccagatccggcttacatctctgcatcattcaatgctcacccgcgttacgccatctgtttctatcaaactaaaccgcaccggcaagaaacgctccaccaccgcgatattggtcagcagatggcatgagggatgggcgaccgtaaattcccccgcgcccgccagcgccatcggtagcaccagttggtcagcaagatattcccccaccgccgccgtgcttgccaggtagcgtttcacctctttcaccaactgtgccgcaaccacctcggcactgacgcgcttttcaccgacgacaaaaaagcgttcggtgatattttcactttcgacttcaagcgagacggtattacccggcccctggtcgcgcggcaggttatgaatattctgttcatgcagggaaaaactccccgccagtgtagcgatttcacgctcagcaacatggcgcggcacaccagctaatagaacttctccacgcatctgcacaatgttcccgcgctcgccaagttgcaaggtgttaaacgatgccacgggcgagacttccgttgccaccacaccgcctccggcagggtaaaaaccgtggcgtaacagcgtggtttgctgatgaattcctattttcgccagcagcggctccagcacccggcggataaaatccgaggcggcgccgacgggttatcggtcgccgcgctcacttcaacacgcgaaggtccatcggcaaaccacagcgcgggcagcaccgtttgcagcaccagcgtacaacttccggcgctaccgatagcaaagcggtaatcgccgccgcgcacggtgccgggccggaagagcagacgctgcgaccccagctccgcgccttccacggttgctccgcaaatttccgtcgccgcctttaccgcggtcagatgctggcgcaacagccccggtttcgcccgcccggcacgaatgctggtgatggtaaatggctggccggttatcatcgacaggctcagcgccgagcgcaggatctgcccgccaccttcgccctgtgcgccatccagcgcaatcatccttttcatcatttatccttttacgcacaccacctgacgcagggtatagataacttccaccagatcgctttgtgccgccatcaccgcatcaatatctttatacgccatcgggatttcgtcgatcacttcggcatctttacggcattccacatgcgcggtggcacgaatttgatcttccacgctgaacagttttttcgctttagttcggctcattacccgcccggcaccgtggctgcacgaacagaacgactcttcatttcccagcccacggacgataaagctttttgctcccatcgaaccgggaataattccatattgaccagcacgcgcagacaccgcgcctttacgcgtcacgtagatctcttcaccaaagtgctgttctttttgcacatagttgtggtgacagttgatctcttccatcgccagcgtttgtggctgtctgaccgttttctgcgtaatgctctgcaatgccgttaccacgttttccatcatcgcatcgcggttaaggctggcaaaaagctgcgcccaggccacggctttcaggtaatcatcaaagtattccgtaccttccataaagtacgccagatcacgcgacggcaacgtctcaagcgtttcctgcatctctttttgtgccagatcgataaagtaagtcccgatggcgttaccaattccgcgtgaaccggagtgcagcataatccacacctggtccgactcatcaaggcagatttcaataaagtggttaccggttcccagcgttcccaggtgtttatagttattggtattcaggaaacggggatatttttgcgttaaccactgataaccggcttcaagctcagcccatttagcatcgacgttaacaggtggattttcccaggcacctttatcacgtttacaacggccagtggtacgcccgtgcggcacggccgtttcaatcgcctgacgcagctctgccaggttttcaggcaggtcttccgccgttaacgcggtaccgagcgcgttcattccacagccaatatccacgcccaccgccgccggaataatcgcccctttggtcgggatcacgctaccaatggtggaacctttacccaggtgtacatcaggcattaccgcaatatgtttgaaaataaacggcatcttcgccgtattaataagttgctgacgcgcatcggcctctaccggcacgcctttggtccacatttttaccggggcattttcagtggtcagtaattcgtaattcattttgtttttctcttttcgttgtttgctgtcctgataattgcaaccgtcgtgccagaaaattaaataagcagcttaattttttaattcattgttttaaaaaagattatatctttacgtccgtaaccggagatttcccgcaaagccaatttaccgataatgaaatatcgtcttttataaggatatctaagatgcgtaaaacagtggcttttggctttgtcggtaccgtactggattatgccgggcgcggcagtcagcgctggtcaaaatggcgtccgacactctgtttatgccagcaagaatcgttggtcatcgatcgactggaattgttgcacgacgcccgctcgcgctcgctatttgaaacgcttaaacgcgatatcgccagcgtttcgccagaaacagaagtggtgagcgttgagattgaactgcataacccgtgggatttcgaagaggtctacgcctgcctgcatgatttcgcccgtggttacgagtttcagccagaaaaagaagactatttaattcacatcaccaccggtacccacgtcgcgcagatttgctggtttctgctggcagaagcgcgttacctgcccgcccggctgatacaatcttcacctccgcgcaaaaaagaacagccgcgcggcccaggtgaagtaacgattatcgatctcgatttaagccgttataacgccatcgccagccgctttgccgaggaacgccagcaaacgcttgattttcttaagtccggcattgccacgcgtaacccccacttcaaccgcatgattgagcagatcgaaaaagtggcgatcaaatcccgcgcgccgattctgcttaacggtccaaccggcgcgggcaagtcatttctggcgcgacgcatcttagagttaaaacaggcgcggcatcagtttagcggcgcgtttgtggaagtgaactgcgccaccctgcgcggcgataccgccatgtcgacgctgtttggtcatgtaaaaggcgcgtttaccggggcgcgggaatctcgtgaaggtttattacgcagcgccaacggcggaatgttgtttcttgatgagattggcgaactgggcgcagacgaacaggcaatgctgctgaaagccattgaagagaaaaccttttacccgtttggcagcgatcgccaggtgagcagtgattttcagcttatcgccggaacggtgcgcgatttgcgccagctggttgccgaaggcaaatttcgcgaagatctgtacgcgcggatcaatctctggaccttcaccctgccgggtctacgccagcgccaggaagatattgaaccgaacctggattatgaagtggagcgccacgcctcactcactggcgacagcgtgcgttttaacaccgaagcgcggcgcgcctggttggcttttgcgacctctccccaggcaacatggcgcggtaactttcgcgaactttctgccagcgtcacgcggatggccacctttgccactagcggacgcatcactctggacgtggttgaagatgagataaaccgtctgcgctataactggcaggagagccgcccctccgcgcttacggcgttgctgggcgcagaggcagaaaacatcgatctcttcgaccgtatgcaactggaacacgttatcgctatctgccgccaggcaaagtcgctttccgcagccggacgccagctttttgacgtttcgcgccagggcaaagccagcgtcaatgacgcggatcggctacgcaaatacctggcgcgttttggtctgacgtgggaagccgtgcaggatcagcacagctccagttgaatatggtggtccgtcagcacctgcatcacgcttactggcggcggggcgtcggtgtagacggcatctaccatgctgatgctgcccatattgaccatcgcgttacggccaaatttcgagtgatcgacaaccagcataacgtggcgcgagttctcaataatggcgcgtttggtgcgaacttcgtggtaatcgaactccagcagcgagccgtcgctatcgatgccgcttatccccagaatgccgaaatcaaggcggaactgggagataaaatcgagcgtcgcttcgccaatgatcccgccatcgcggctgcgtaattcgccaccggcgagaatgatgcgaaaatcttcttttaccatcaacgtgttagcaacgttgagattgttggtgacaatgcgcaaattgctgtgattgagcagtgcgtgcgctaccgcttccggcgtggtgccgatatcgataaacagcgtcgagccattggggatttgctccgccactttgcgggcgatgcgctctttttcttcggtctgggtggccttgcgatcgtgccacggcgtgttaaccgaactggaaggcagcgccgcaccgccatgatggcgcaggatcaggttttgctccgccagctcattgaggtcgcggcgaatagtctgcgggctgacggagaaatgctctaccagctcttcggtactgacataaccctgctgtttaaccagttcgataataccgttgtgacgttgtgtttgtttcatttataaatccctggaattattttcgttttcgcgcattgagcgaatcaacaaaagccatcgctaaacccacggctaacccggcgatgtgtgctccgttcgccatcgacatcccaaacaaatcaaaccatccggcgacaatccagatcagcgcaaagataattaacccacgttgcaggtaaatgccactttgcggatcgcgttcgccacgtagccagacgtagcccatcagcgcatacaccacgccagaaagcccgccaaaccacggcccgctgaatttttgctgcacatagccgcttaacagggcgctgataagcgtaatgacaattagcttaccgctaccgaggcgtttttccaccgcaccgccgagataccaccaccagagcaggttaaagaggatatgcatcagcgagaagtgcattaacgcgtgggtgaagtaacgccagaactcaaatttcagtgttggatcgaatggccaggccagccataacatcacttcctgatcgccgagaatttgcatggcaataaacaccaccacgcaggcgatcatcatcacccaggttaccggacctgcgcgttcacgcaaggcggcaaagaaaggataacggcgataatgcaggccactgccggtatggcctgcctgccagctcgccgccagataacgcggatctgccgggttttcgagaaaacgcgccacgtccgcccgtacgcgctcggcctgggactcatccgccagccagacatcgctttggttatgttgttgaatcgtgaggataacaccctgcgtcgccatgtaatcaacaaacgcctgcgccacgcgggggttagcaaaagaggtaatcatcaacatcgttgctgtcgcttattccacacaaaaggggacagtataaagcgttacgcgccgtacgccacctctgcgggaaactgacgttgccaggcttcaaagccgccgtcaatgctatagaccacatcgtagccctgttgcagcagatactgcgccgcgcctttgctgctattgccgtgataacacatcaccatcaccggagtgtcaaagtcgttatcacgcataaaagcgcccagcgtgtcgttggttaaatggaaagcctgcaccgcatgtcccattgcgaaactctgtggatcgcgaatatcgaccagcaccgcctctttttcctgcaacttctggtgcgcgtcggcaacgttaatacattcgaactgatccatgcgtctctctttctttacaaacaagtgggcaaatttaccgcacagtttacgtcgaagcggcagataaacgccataatgttatacatatcactctaaaatgttttttcaatgttacctaaagcgcgattctttgctaatatgttcgataacgaacatttatgagctttaacgaaagtgaatgagggcagcatggaaaccaaagatctgattgtgatagggggcggcatcaatggtgctggtatcgcggcagacgccgtggacgcggtttatccgtgctgatgctggaggcgcaggatctcgcttgcgcgacctcttccgccagttcaaaactcattcacggtggcctgcgctaccttgagcactatgaattccgcctggtcagcgaggcgctggctgaacgtgaagtgctgctgaaaatggccccgcatatcgccttcccgatgcgttttcgcctgccacatcgtccgcatctgcgcccggcgtggatgattcgcattggtctgtttatgtacgatcatctgggtaaacgcaccagcttgccgggatcaactggtttgcgttttggcgcaaattcagtgttaaaaccggaaattaagcgcggattcgaatattctgactgttgggtagacgacgcccgtctggtactcgccaacgcccagatggtggtgcgtaaaggcggcgaagtgcttactcggactcgcgccacctctgctcgccgcgaaaacggcctgtggattgtggaagcggaagatatcgataccggcaaaaaatatagctggcaagcgcgcggcttggttaacgccaccggcccgtgggtgaaacagttcttcgacgacgggatgcatctgccttcgccttatggcattcgcctgatcaaaggcagccatattgtggtgccgcgcgtgcatacccagaagcaagcctacattctgcaaaacgaagataaacgtattgtgttcgtgatcccgtggatggacgagttttccatcatcggcactaccgatgtcgagtacaaaggcgatccgaaagcggtgaagattgaagagagtgaaatcaattacctgctgaatgtgtataacacgcactttaaaaagcagttaagccgtgacgatatcgtctggacctactccggtgtgcgtccgctgtgtgatgatgagtccgactcgccgcaggctattacccgtgattacacccttgatattcatgatgaaaatggcaaagcaccgctgctgtcggtattcggcggtaagctgaccacctaccgaaaactggcggaacatgcgctggaaaaactaacgccgtattatcagggtattggcccggcatggacgaaagagagtgtgctaccgggtggcgccattgaaggcgaccgcgacgattatgccgctcgcctgcgccgccgctatccgttcctgactgaatcgctggcgcgtcattacgctcgcacttacggcagcaacagcgagctgctgctcggcaatgcgggaacggtaagcgatctcggggaagatttcggtcatgagttctacgaagcggagctgaaatacctggtggatcacgaatgggtccgccgcgccgacgacgccctgtggcgtcgcacaaaacaaggcatgtggctaaatgcggatcaacaatctcgtgtgagtcagtggctggtggagtatacgcagcagaggttatcgctggcgtcgtaaattaacgtaaggtgatcaggtcagatttcaatctggcctgagactgatgacaaacacaaaactgcctgatgcgctacgcttatcaggcctacgtggtttatgcaatatattgaatttgcatggtcttgtaggccagataagacgttcacgtcgcatccggcatgaacaaagcgcactttgtcaaaaatctaacctactttttaattcagggaattaccgcaaagcccacgccatcatacccaacgtaacaaaactcaggcacgttccccactcgccccgagaaaaatagcattaatgcgcccagcgccagcataaaaattttgagcagaaggtaaattgttggcgtgataaggatattacaaacttcaataataccggcaagtccgacacccagcatggcaataaccaccgccaaaaattgcgccagtatggggatgccgaaaaaagtcattaccagcgaggtcaaaatccattttctgttttgcattattctttccattctttttgaatggtgaaattatactccccgagtccccttgccccttctggacacttttccgaaatgatggcggaaaaaaacgggaccctttggccccgttctatttattggtgaacttacaatctcaccggatcgatatgccagatatgatcggcgtactctttgatagtacggtcagaagagaagtagcccatattggcaatgttcagcatcgcttttgcggtccactcttcctgaagctcgtagagttcatcgactttatcctgacaatcgacatagctgcgataatccgccagtacctggtagtgatcgccgaagttgatcagcgaatcaaccagatcgcgatagcgacccggatcttccggactgaatacaccgctgccgatttgcgtcagcacctgatgcagctcctcatctttctcgtagtattcacgcggtttgtagccctgacgacgcagttcttccacttcttccgctgtgttaccaaaaataaagatattgtcagcaccgacatgatccagcatctcgacattcgcaccgtccaacgtaccgatagtcagcgcaccgttaagcgcaaacttcatgttactggtgccggaagcttccgtccctgccagcgaaatctgttcagacagatctgccgccggaatgatcaactgcgccaggctaacgctgtagttcgggatgaacacgactttcagcttatcgccaatctgcggatcgttgttgatcactttcgctacgtcattgatcaaatgaataatgtgcttcgccatgtaataggccgaagccgccttaccgccaaaaatattcacgcgcggtacccacttcgcatccgggtcggccttgatgcggttatagcgggtaatcacatgcaacacattcatcaattgacgtttgtattcgtgaatacgtttgatttgtacatcgaacaacgcctttggattcaccaccacattcagctgctgggcgatatactctgccagacgctttttgttctccagcttcgcctgatgcacagcgtgattaaccattgggaaatcacagtgttgttgcagctcattaagcaggctaaggtcggtgcgccagttacggcccaggtgttcgtccagcacggctgaaagcgatgggttcgctaccgccagccagcgacgcggcgtcacaccgttggtgacgttggtgaaacgacccgggaagattttcgcaaagtcggcaaacaacgattgcaccatcagattagagtgcagttccgatacaccgttaactttgtggctcacaacaaccgccagccaggccatacgcacacgacgaccgttggattcatcaatgatcgacgcccgtcccagcagatcggtatcgttcggatactgttcctgcaaggttttcaggaaatagtcgttgatttcaaagatgatctgcaggtgacgcggcagaattttacccagcatatcaaccggccaggtttccagcgcctcgctcatcagcgtgtggttagtgtaggagaagacctgacaacacacctcaaacgcgtcgtcccagctaaattggtgctcatcgatcagcagacgcatcatctcaggaatcgacagtaccggatgggtatcattgagatgaatcgcgattttatccgccaggttatcgtaggttttatgcaactgataatggcggcttaaaatgtcctgaatggtcgaggaaaccaggaagtattcctgacgcaggcgcacgtcacgcccggagtaggtggagtcatccggatacagtacgcgagatacgttctcggagtggtttttatcttccactgccgcgaagtagtcaccctggttgaatttaccgaggttaatttcgctactggcttgcgcactccacaaacgcagcgtgttggtcgcgtcggtgtcgtaaccagggattatctgatcgtaagcgactcccagaatctcttcggtttcaatccagcgcgtttttttaccttcctgctgaatgcgaccgccaaaacggactttatagcgcgtgttgtggcgtttgaattcccacgggttaccgtattccagccagtagtctggcgactctttctggctaccgttaacgatgttctgcttgaacataccgtagtcatagcggatgccgtaaccgcgccccggcaaccctaacgtcgccagagaatcaaggaagcaagccgccagacgtcccaggccaccgttaccgaggcctgggtcattttcttcatcaatcagctcttcgagatttaaccccatcgcttccagtgcgccctgtacatcttcgtaaattcctagcgacaacatggcgttggagagcgtacggccaatcaaaaactccatcgacaggtagtaaacctgacgagtttcttgcgacaactgggcacggtttgaacgtaaccagcgctccacgagacgatcgcgcacagcaaataacgttgcgttcagccattcatgtttattggcgacgaccgggtcctttccaatcgtaaacatcagcttgtaagcgatagagtgcttaagagcttctacgctaagcgtgggcgatgaatatgtaaacggagcattcatataggcgtttcctgaaaactatttcaagcgatagtaaagctcacggtacgacttcgccgcgacctgccagctaaaatccattgccatagcctgacgttgcacaaaccgccacagtgaaggacgggaccacagtacaaaagcacgtcgaatagcccgtaacagcgaccaggcattactatcttcaaagacaaacccactggcgacgccatctgcaaggttctcaagagaacagtcagaaaccgtatcagcaagcccaccggtgcgccgcactaacggcagcgtaccgtacttcaatccataaagttgcgttaagccgcacggttcaaaacggctgggcaccagaatgacgtccgcgccgcccataatgcgatgcgaaaatgcttcgtgatagccaatctgaacgcccacctgaccggggtattccgctgccgccgcaaggaaaccttcctgcagcaccggatcgcccgcgccgagtagcgccagctgcccgccctgctccagaagacccggtaaggcttccagcaccaggtcgagacctttctggctggtcagacggctcaccactgcaaaaagcggcactttatcgtcaaccttaagccccattgcgatttgtaactggcgcttattttccgctttatcttccaacgtatcgcgggtgtaacgcgaggccaacagtaagtccgtctctggactccagattttctcgtccacgccgttcagtacgccggaaagacgcccttcacggtgacgctgttgcaacagaccttccataccgtaggcaaactgcggttcggtgatctcgcgagcgtaggttggactgaccgccgtaatgtgatcggcatagtacagaccggccttcaggaaagagatttgtccgttgaattccagcccatgaatattaaagaatgaccatggcaattggatgtcattcatgtgatgtgcataaaacatgccttgataggccaggttgtgcacagtaaacaccgacttcgccggacgcccgcgcgccgccagatacgcaggcgcaaggcctgcatgccagtcgtgcgcatgcaccacatcaggacgccagaatgggtcaagcccgctggccatttctgccccaacccaccccagcagcgcaaaacgcaatacgttgtcggtataggcaaataagttggtatcgtgatacgggcttcccggacgatcatagagatgcggcgcgtcaatcaggtaaatgccaaccccgttgtaatgaccgaacaacagcgtgatatgtccggcgaaggtatcacgacgggatactacctgcgcatcggtcacgccacggcgaatatcgggaaatgcaggcaacagtacgcgagcgtcaacgccgtctgcgatttgtgctgcgggtaatgccccaataacatcagccagaccgccggttttaagcagcgggaacatctctgaacatacatgtaaaacctgcattatcgctcctgtttatgccctaacttccgtagcatttcgcgcgttaccagcacgatgccttcttctgaacgatagaaacgacgtgcatcttcctctgcgttttcaccaatcaccatgccttccggaataacacaagcacgatcgatgacgcagcggcgcagacggcacgagcgacctacccatacttccggtaacaatacggcggaatcaatgttgcagaatgaattcacgcgaacgcgcgagaacagaacggactgcaccaccaccgaaccggagatcacacaaccgccggaaaccagtgagttaagggtcatcccgtggctaccggagcgatcctgcacgaatttcgctggcggtaatgattcattgtaggtgcgaattggccaattgcgatcgtacatatccagttccggcaccacagaggccagatcgaggttcgctttccagtaagcttccagcgtacccacatcgcgccagtacggctcggcatccgggtcggattgtacgcaagagagcgggaacgggtgcgcataggccagaccggcttcggtgatcttgggaatcaaatctttgccaaagtcgtggctggagttctcatcgcgatcgtcttcttccagcagttcatacagatagtcggcgtcaaagacgtagatacccatactcgccagagatttgctcggatcgttcggcattgacggcgggttagcaggtttttcaacgaattcgataattttatcgttctcatcaaccgccataacgccaaatgcggaggcttcttcaatcggtactggcatacaagcaacggtgcaacgtgcgcctttttcgacgtgatcgataagcatacgcgagtagtcttgcttgtagatatggtcgcccgccaggatcaccacgtattccgctttataacggcggataatgtcgaggttttgggtgaccgcatctgcggtgccgcgataccagttttcccctttcattctctgctgtgctggcagcagatcgacaaactcgttcatttcttcattgaagaatgaccagccgcgctgaatgtgctgcaccagagtgtgggactggtactgggtgatcacgcccatacgacggatcccggagttgatgcagttagacagcgcaaagtcgataatgcggaacttaccgccgaagtgtacggccggttttgctcgcttattggttaaatccttcaggcgggtaccacgtcctcccgccagtatcagggcaacagatttcaatggcagctggcgcgccaacattaagtgatcgttcttctctaaactaaccatgactaactccttttttatcatctctggaacacacacaatccgtgtgcaggtccctgccagacagccgtaatcactgggttatcctctccagcgaatgggggaatggcgtgccactccccagcaggtaaaacaatctctgttacctcaagcgtggcgttaattgcgatcaaaaagcgatccgagagcagaatttgcagctgtttcggcccgttttgccactcatccgtgcttaaaggttgagcatatcgatttagccaacggacattgccgtcgccttcttcccaccagcgattctccaccaaagcgggaatgcgcttgcgcagatggattaacgcggcggtaaatgcggttaaaccactgcttgcctgcgaccagtccaaccaggttaattggttatcctgacagtaggcattgttattgccatgctggctgtgaccatgttcgtcaccggccagtaacatcggcgtaccctgggagagcaacaacgttgttaacagggcgtgaatgctgtcgcgccgccgttcaaccaggtcaagagaaccgcctaacccttctttaccatgattgttactgtaattgttgttggtcccgtcgcgattttcttctccgtttgcttcattgtgtttatggttgaagcaaacgcagtcgcgaagcgtaaaaccgtcatgcgcggtgacgagattaatcgcggcactcggcagacgaccattacgtttaaaaacatcgctggaggcagcaaaacgcccggcaaacgcccccagaggcaaatcataatgtagccagaaacgacgggcagcatcgcggaaatgatcgttccactcggcaaacagcggcgggaaatttcccacctgataaccaccaggagcgatatcccacggttcagcaattaacttcacctgcgagagcaccgggcagttctggatagcggtaaacaacggcgcatcctgacggaactctggcgtacggcccatgactgccgccagatcaaagcggaaaccatcgacgtggcaggtttctacccaataacgcaggcaggcgctggcataatccaccaccgccggatgactcaaattgagcgtgttgccgcaaccggtccagttgtgataatcgccgtcttctcttatccaataatagctacggttatcgatcccacgcagcgagaataacgggccgtcgaggtccagttccgcactatggttgagcacgatatcaagaatgacttcgatacccgctttatgcagtgctttgattgcatcgcgaaactcatccagcgccgtttctggcgagcaggcatacgccggatgcagcgcaaacatcgccaccgggttgtaaccccagtagttacttagccccatgcgttgcagacgtggttcactggcaaactgcgccactggcagcagttccagcgcggtaatgcccaattgtttcaaatagttgatcatcaccggatgcccgagggctttataagtgccacggatctcgaccgggatctccgggtgcaagtacgttaatcctttgacatgggcttcataaatgatggtgctgccccacggcgtgcgcggcggggcatcatcttcccagtcatagtgatcaaccaccactacgcatttcggcgcaatggcggcgttgtcgcgatagtcaggttcattatgaccggcgtgcagcagcgggttatctttaaactccccgtcaatttgccgcgcgcaaggatcaatcaacaacttcgccgggttaaagcatgcccctcggcgggttgccagggcatgaacgcgataaccataacgcaaacccgggcgcgcatccggcagataaccgtgccaaatgtcgccactgtgccctggcaagtcatagcgatgttcctggccattggcgtcaaagacacacagttctacccgctcggcatgagcggagaaaagtgtgaagttgacgccctgaccgtcgtaatgcgcgccgaggggagcgggtttgccaatggcgagttgtgtcattctgcctcccgaaccagccagatagtggccagcggtggtagcgtcaggcttagtgaatgctgacgaccgtggctggcaatctcatcgctgtgtaccgtgccgccattgcctgcattactgccgtgatagtgcatggaatcggtattgaggatttcacgccatttgcccggctggtttatgccgaagcgataatcatgacgcggtaccggcgtaaagttactggcaacgatgatttcgttaccctctttatcgcgacgcacaaagatcagcaccgagcgttctttgtcatccaccaccagccattcaaagccgtacgggtcaaaatccagttcatgcattgctttatggtggcggtaggtgaggttcagatcgcgcaccagacgctggacaccgtggtgccagttatcgccgccttccaacagatgccagtcgaggctggcgtcatggttccactcgcggccctgggcaaattcgttacccatgaacagtagtttcttgcccgggaatgcccacatccagccatagtaggcgcgcaggttcgcgaatttctgccatgcgtcgcccggcatgcggtcgagaatcgattttttaccgtggaccacttcatcatgcgacaacggcaggacgaagttttcagtgtagttgtagagaatcccgaaggtcagtttatcgtgatgatactgacgataaaccgggtcgagcttcatgtagtccagggtgtcatgcatccagccgaggttccacttgtaccagaagcccagaccgcccatatcctgcggacgagaaacgccagggaaatcggtagactcctcagccattgtcaccgcaccggaaacctgctcaccaagaatacggttggtattacgcaagaattcaatcgcttcaagattctcgcgcccgccaaattcgttcgggatccactccccctctttacggctgtagtcgcgataaatcattgacgccaccgcatcgacgcgcagcgcatcaataccaaaacgttcaatccagtaaagcgcgttaccgacgaggaagttactgacttcacggcgaccatagttgtagatcagcgtgttccagtcctgatgatagccttcacgcggatcgctgtgttcatacaagttcgtgccatcaaattcggcaagcgcaaagtcatcagtcgggaagtggcctggcacccagtcgagaatcacgttcagaccagctgcgtgtgcggcatcaatgaaataacggaagtcgtcgcgagtaccaaaacggcgggttggcgcatacaggccggttggctgataaccccaactgccatcgaagggatgctcgttaatgggcagtagttcgaggtgggtaaagcccatccatttagcataaggcaccagttgatcggccagctcgcggtagctcaaccagaaattgttgtcggtgtggcgacgccaggaacccaggtgaacttcataaatagagattggcgcatcaaactgattcgcttttttgcgctcttcagtctgtacaaccttttccggcagcccgcaaataagagacgcggtttccgggcgcatttgcgcttcaaaggcataagggtcggacttcagacgcaagttgccattggcatcaatcatctcgtatttatagagctgaccgttatgcgccccagggataaacagttcccagatgccgctctctttacgcaggcgcatcgggtgacggcgaccgtcccagtagttgaattgcccaaccaccgagacccgacgggcgtttggagcccagacagagaaacgcgtacctgtgacgccatccatagtatctgcatgcgcgcctaaggtttcatacgggcgcaggtgagtaccttcagataatagccaggcatccatttcctggattagcggaccaaaacggtaaggatcatcaatcaggttttgctgaccatgccagacaacagccaactgatagcggaaaaaattcttacgtcgcggaatgacgccgctaaagaatccccgtgagtcgagacactccagttttgcgagtttgcgcccggttttcggttcaatcacccacacatcggtagcgtcgggtaaaagggcacggacttccagtcccgcggtggttttatgcattcccagtacggaaaaaggatccgcaaaatggcctgcaattagcgcgttaatcacgtctctatcgatacgatcggacatgcttgtcttcctgttttattgtgtcaccccatccaattggatttttgacttctggttgtgacatttttttgacctgaacggcgcagcactctgtgcatcctctctgcgtcgtcctcacttcaggtaaggctgtgaatactcatgtattcagccacccttaaagaatagccaatgctctatttaactcccggtaaatcatgaaacatctgcgcttactcctgtattacgcactaacaggggcggcatcgcgccccagatttaatgaataaagattacgccagttgacgaagcatccgacgcagcggctccgcggccccccacagcagctggtcgcccacggtaaaggctgacaggaactctggtcccatattcagcttacgcaggcggcctaccggcgtggtcagcgtgccggtaacggcagctggggttagctcacgcatagtgatttcccgatcgttcggaacgactttcgcccacggattgtgcgcagccagcagttcttccacggtcggaatagacacatcttttttcaatttaatagtgaatgcctggctgtggcagcgcaatgccccgacacgcacacataaaccatctaccggaattacggaagatgtgttgaggatcttgttggtttccgcctgccctttccactcttcgcggctctgaccgttatcgagctgtttgtcgatccacggaatcaggctacccgccagcggcacgccaaagttatccaccggcagctcaccgctacgggttaaggttgtgactttgcgttcgatatcgagaatagcagaggacggggtcgcgagttcatctgccacatggccatacagatggcccatctgggttaataactcacgcatatgtcgcgcaccaccgccggaagcggcctggtaggttgcaacggacacccaatcaacaagatcattggcgaataaaccacccaacgacatcaacatcaggcttacggtacagttaccgccaacaaaagtcctgatgccattatttaatccgtcggtaatgacgtcctgattgacggggtcaagaatgatgatggcgtcatctttcatgcgcagagacgatgctgcgtcaatccagtaaccttgccatccgctttcacgaagctttggatagatttcgttggtataatcgccgccctgacaggtcacaatgatatcgagggcctttagcgcctccagatcaaaggcatcctgaagtgtgccagtggttccgccaaaagacggcgcagcctggccaagctgagaagtagaaaagaagacagggcgaatggcgtcgaagtcgcgctcttcaaccatgcgttgcatgagaacggagccgaccataccgcgccagccgataaaaccaacatttttcataagcgtttttttcctgcaaagatgtgtgctgtataaatgtgccggtctcctcttggcacatctttcaccatacaaaaagcagccaaagtcgcaagtgaaattaatcaatgatagcgaagccatcagtaatgcgacttatcctgctttgttagcacgcagaaagtccgcggcaattatcagggaatttgagttatgaatgaaatcatttctgcagcagttttattgatcctgattatggatccgctcggaaacctacctattttcatgtccgtactgaaacatactgaaccgaaaagacggcgggcaatcatggtgcgagagttgcttattgctctcctggtgatgctggtgttcctgtttgcgggtgagaaaattctggcatttcttagcctacgagcagaaaccgtctccatttctggcggcatcattctgtttctgatcgccattaaaatgattttccccagcgcttcaggaaatagcagcgggcttccggcaggtgaagagccatttatcgtgccgttggcaattccgttagtcgccgggccgactattctcgccacgctgatgttgttgtctcatcagtacccgaatcagatggggcatctggtgattgctctgctgctggcctggggcggcacctttgtcatcctgctacagtcttcgctatttttacgtctgctgggcgagaaaggggtgaacgcacttgaacgcctgatgggattgattctggtgatgatggcaacccagatgttcctcgacggcattcgaatgtggatgaaggggtaacgaggagagtttttcgaaaagaacccggtagcgtcacaactaccgggcgaacaaacttaactcaacagctggaacgcaatcatcccaacgatggcaccgacagtgccgaggatggtttccatcatggtccaggttttcagcgtttcggcttcggtcgcgccggtaaatttaccgaacaaccagaaaccggcgtcgttaacgtggctgacaacaatcgaaccaccagcgatacaaatcgacagcgccgccatttgcgcaccggagtagttcagttgttcaataaccggcatcaccagtcctaccgccgttaaacaggctacggtggcagaaccctgaatgatgcgcactgcagctgccagcacgaagcaggtgatagcaatcggcaggcccatgccggttaacgttcgcccagtgccggacctacgccagagtcaaccagcacctgtttgaacacgccgcccgcaccaatcaccagcagaatgatccccgccggttgcagcgcgtgaccgcaaatctccatcactttgtcttttggcatgccctgacgcattgccagaccgtaaatcgccaccagacaagcaaccagaatcgcggtaaacggatgaccgataaactcaaaccattcgtaagcagttgatccttccggcacaaaacgcgcggcaatggttttcagccctaccagcaccagcggcagcaggatcagcgacaggctgaatccgaaagatggcattttgccttcgccgagatgcggttcgctgatgtcgtcaggaatatgcagctcaacgtaacggctgatgaagttaccccacagcggcccggcaataatcattcccggaattgccgcacacaggccaatcaggatcatccagccaaagtcggcattcatctgcgatgccagcagcatcggcgctggtccaggcaccagaaatgccgccgctgccgccacgcctgcaaataatgggattaccagcttcaccaggttcgtaccggtgtggcgcgccattgagaaagcaacgctaatcagcagaactatcgccacttcaaagaacagcggtagcgcacagaccagccccgcaaggccgatggcataatgcgcgcggctgtgaccgaaggatttgagcattttgacggcaatctgatcgactgcgccggtttcatgtaagatcttgccaaacatagctcccagggcgacaaccaccgccaggaagccgagggtgcctcccatccctttttccatcgtcgctgcgattttatcgagcggcataccagaaaaaaggccagcccccatggacaccaccattaaagccaggaaagcgtgcatacgcgccttcatgactaaaaacagcagcagtaaaacagaccctactgctgttaaaacaagcgttaatgtagtcactacttatttgccttttttaataacctcaatggtgcttgccacaacaccttccagcggttgatcgatatccaccaccagtacatcggtttcgtccgcacccggctcctgcagcgtttcaaactgcgtcaccaacatttgggttttaaagaaatggcctttgcgcgctttcaggcggctttcaatcacatcaaaatcgcctttcaaatagatgaaagagagattcggattaccttcacgcagcaagtcgcgatagtgttttttcaatgcagaacagacgatcagcgacactttattagtgcgctgcatagcaaacgcggcgtcgttcagcgcctgcaaccacggtttgcgatcgtcgtcattcagtggttcgccagacgccattttttcgatattgcgccgtggatggaggaaatcgccatcaagaaacgcggcatgaagttgatgcgccacttcactggcgaccgcagatttgccgctgcccgatacgcccatcaagacgtaaatgtggtgatcatggttagtcgtgctcaaagtggtgcccccacaatacaagaattaaaaatgttacgggtaactgttatcggtaacattgtccagccggacaatatcagaagcaatatccatccatgccttaagtgtataagtgtgagctacttcaaatttgtgggcttaaatagatccgcccggtgacaaggtgaaacctaaatctaacattttcggtgtcacagattcgccacgaatacgcgccagcagcgttcagcgccaatactgcccatccgctcacgcggcgtcagcacgctcgcaagtcgtggctccatcacctgaccaatgtcatgaccgtggaaaccggcaatcgccatatcgtcaggaacttttaaccccagacgctgacattcaaacgccgcgccgaccgccaggtcatcattcgtacagaacacgccatccagctgcggatattcccgccgcgcctggcgaatcagttcaataccggaagagtaagaagaagattgctcaaccatcacgctatatggcaccaggcctgcatccagcatcgcctgttcgtatcccttctgtttgatgatagtacgttcgtcgagacgtgcgccgagataggcaatgtggcgatgcccgcgagcaataatggcagtggtcatctggcgtgctgcttcaaagttatcaaaaccgacggcgatatcaaggcatggcgacttgctgtccatcagttccaccacgggaatacccgccacttcaatcatctttaaggtgcgcggcgtgtgggtacgttcggtgaggatcaggccgtcgatattccaggagagcatggattcgaggcgttcttgctccatttccggtttataaccgtagtgcgccagcatggtctgataaccgtgcgcgtcggtgacgctttcgattccgcgtaatacttccgcgaaaacctggttggtgagagaaggtaacaggacgccaatcgcccggctggtggcgttagagaggatatcgggcgcacgattgggaatatagcccagttcatcaagagccgcggcaatcttgccgcgtagagcgacggaaacctgctccgggttgcgtaaaaaacggctgaccgtcattttggtcacgcctacacggtcagccacatcctgaagtacgggtcttttctttttcatcgtcctgaaggtacaaaagagatagattctcttagtttaacacggacacatcagaaccttcccggggaaaacagtgcttgtttacaattattagatatacactaaatcaattgcatcgcattgtgctaacgacgcggcaaaaccccggaagcgtacatcagcacgcgaccggagcgagcgaggaagcctgcaaaaaggcaggcttcaaagatgccgttgagttttaaaccggcggcagatcgaacagtaacacttcgctgtcgctatccgcatggatggagattgcctgctcatcccagattgccagaccatcgctggtcgaggctttcacgccgttaatggtgacattgcctttcaccacctggatccagacgcggcgttcagcggcaatctgatgcaccgactgctcatctttcagcaacgcccagcggtacagttccatatcctgatgcactttcaatgaaccatctcgcgcatccggcgagagcaccagctgtttgccctgtacggcatcgaagcgacgctgttcataacgcggcgtaataccgttttcttcaggcatgatccagatctgatacagatgcagacgctcggtgctgcttgggttgtactctgagtgacgaatacccgtaccagcactcataatctggaactcacccgccggaacctgctctttattgcccatgctgtcctgatgctcaacagtaccttccagcacgtaggtcaaaatttccatatctttatgcgggtgagtgccgaagccctgccctgcttcaatcacgtcgtcgttaatcacgcgcagcgcggagaagcccataaagttcggatcgtaatagttggcaaaagagaaagtatgccaggagtccagccagccatgatttgcatgaccacgttcatttgctttgcgtaagtagatcatttgtattcgccccctgaatgatttcgatgggcttagtgtggacccgatctgcctgggatgatagagggtgaaaattgacccctctgttcaaaaaaattgaactattcgaggggccatcaaacttacttagcgagagttactgtggagggagaggcttgctcaaatccgcgttcaaggatttccagattggtaagaacttcagattccttgacgtaatttggcgcaccgtgggtgatggtttgatacaacgcatcataaacgcgcccgtaatcgcccatctccggcttcatctcttctctgaccgtcacgccctcgtcattgacatactccagcacaccgaccgaatcatccgctgcgaatcccggttcgcccggcataatattagccttcaggctggtttcctgctggtcgataccgtatttaataaacgaacctttcttaccgtgaacgataaatttcggataatcgattttcaccagatggctggttttgacgatggctttcaggtcgccataaaacagttgcgcttcaaaggtgtcgtcaggattggctttattacgcaggctgcggatgtcataagcgacgtgatccgggcgaccgaacagagaaataatctggtccatcgtatgcacaccaaggccataaaacgcgccatcctgcggcagcccaggtttggtttctgccaccgggcggtaatagtcaaaatggctttccacttcaacaatctctcccaacttgccactttcaatcgcttttttcgctgtcaggaagcaggagtcaaagcgacgattctgatacggcgtgacggtcagccctttgcttttcgccaacgcaaacagctctttcgcctgcgcaagtgtcggagtgaacggtttttcgaccagcacatttttcccggcttccagcgcgcgtttcgcgtactcgaaatggctgtccgcgtgggtgcagacaacaaccagcttaacatcgggatcgtttagtacttcgtcgagatcgctggtgaaatggatatgggaataaatgggagcctgttcttccggcttcgcatggcgacgaaaaatatgcgcgacatgccagctatccttgcggttaagtacatacggcagatggtaacgggtggtgcttttgccgaagccaataaaggcgcagttgatgaccatgatttcgtcctttttaaggtggttatttacaccttagcgcaaagcggacgtggttcctactggagtgcgcataacgaacacaagcactcccgtggataaattgagaacgaaagatcaaaaaaaaagccagcacccggctggctaagtaatactggaagcaatgtgagcaatgtcgtgctttcaggttctccgcgagggtcttcctgatcgcgagacaataataatcattctcattcgcacttgtccaacactttttgcaaaaaaatgcatttgactcgcatttgaaagtcaatgatgttgaaagggacatttaccccaaagaggacaaaggaatgagtgagatagtaatacgccacgcagaaacacgggattacgaggccatcaggcagattcacgcccagccggaggtgtattgcaacacactacaggtgcctcatccttccgatcatatgtggcaggagcgactcgccgatcgtcccggcatcaagcaactcgtcgcctgtattgatggagacgtcgtgggccatctcaccattgacgtgcaacagcgcccacgccgcagtcatgttgccgattttggtatctgtgtcgactctcgttggaagaaccgcggcgtcgccagcgccctgatgcgagagatgattgaaatgtgcgacaactggttgcgggtagatcgcattgaactaaccgtgtttgtcgataacgccccggcaattaaggtctataaaaaatacggctttgaaattgaagggactggtaagaagtacgcattgcgtaatggtgaatatgtcgatgcatattatatggcgcgggtgaagtaagatagtgccctttttctgagatggaaaaagggtgtcattcaaaatcgacataccttcctttaaggtatttatttgcccaatacatatattgagatttaactcataattacttcctaaagtgtaatattttattttttaatatatacgcctacaatttcctggagtaaataaataacaattaacaagcataatattgccattgataaaatagcatgccataaaaggacttttcagggatgagtaatattgtttacctgacagtaacgggagaacaacaaggaagcatctccgcaggttgtgggacttctgagtctacaggtaatcgttggcagagcgggcatgaggatgaaatatttacattctcactcttaaataatattaataatacggggcttggttcacagttccatggtataacattttgtaaattaattgataaaagcactccattatttattaattccattaacaataatgaacaattatttatgggatttgacttctatcgaataaatagatttggtagattggaaaagtattattatatacaactaagaggcgcttttttatcggctattcatcaccagatcattgaaaaccaactggatacagaaacaataactattagttatgaatttatcctctgtcaacatcttatcgcaaataccgagttcagctatttggcactccctgaaaattataaccgtttgtttttaccaaattcaaaaaaccaaacaaataatcgtttcaaaacgttaaacagcaaagctattggcaggctacttgctgctggtggcgtatacaatgggaacattgaaggattcagagatactgcggaaaaactgggtggagatgcaataaaaggctatgatcaaatactaaatgaaaaaacagcgggcatagcgatagcaacagcatctattcttttaacaaagcgttctaatgttgatacatatacagaaataaatagttacttaggcaaacttagaggtcaacaaaaacttcttgatggtatagacataatagaaataatatacattaagagaccttcaaaagacttagctaacttacgaaaggagtttaataaaactgtaagaaaaaattttcttatcaaacttgcaaaaacctccgaagcatctggaagattcaacgccgaagaccttttaagaatgagaaagggcaatgttcctctaaattataatgttcaccataaactatctctagatgatggtggtactaatgatttcgaaaatttagtattaatcgaaaacgaaccatatcataaagtttttactaacatgcaatcacgaatagctaagggaatattagtaggtgaaagcaaaatcactccctgggccattccatctggctcaatttatcctcccatgaaaaatattatggaccacacaaaatgatgactaaaacccaaataaataaattaataaaaatgatgaatgatttagactatccatttgaagcaccgctcaaggaatcatttattgaaagtataatccaaatagaatttaattctaattcaactaattgcctggagaagttatgtaatgaagttagtattctttttaagaatcaacctgattatcttacttttttaagagcaatggatggattcgaagttaatggattacgattatttagcctctcgattccagaaccttcagttaaaaacctttttgccgtaaatgaattttatagaaataatgatgatttcataaaccctgatctacaagaacggttagtgatcggggattatagcatttcaatatttacttatgacattaaaggtgatgctgccaacttactgatttagtgtatgatggtgtttttgaggtgctccagtggcttctgtttctatcagctgtccctcctgttcagctactgacggggtggtgcgtaacggcaaaagcaccgccggacatcagcgctatctctgctctcactgccgtaaaacatggcaactgcagttcacttacaccgcttctcaacccggtacgcaccagaaaatcattgatatggccatgaatggcgttggatgccgggcaacagcccgcattatgggcgttggcctcaacacgattttacgtcacttaaaaaactcaggccgcagtcggtaacctcgcgcatacagccgggcagtgacgtcatcgtctgcgcggaaatggacgaacagtggggctatgtcggggctaaatcgcgccagcgctggctgttttacgcgtatgacagtctccggaagacggttgttgcgcacgtattcggtgaacgcactatggcgacgctggggcgtcttatgagcctgctgtcaccctttgacgtggtgatatggatgacggatggctggccgctgtatgaatcccgcctgaagggaaagctgcacgtaatcagcaagcgatatacgcagcgaattgagcggcataacctgaatctgaggcagcacctggcacggctgggacggaagtcgctgtcgttctcaaaatcggtggagctgcatgacaaagtcatcgggcattatctgaacataaaacactatcaataagttggagtcattaccgacattaaaagtaacttttttgaaattagagataatattggcacagaaaatatattcagttcgtttagtgatttctcttcattcttaaacgaaatcatggacagttgttcataataatcaaaaggaaacaaaaatcattgtaaaccatgccatctttttagagattaccagcagaaaattccttgttcgaaatttagcagtgcaagctatggaaaaacttacaacggaactacactccttaagtgagatggaccgaagacatgtagtctctattttagccgaaatagctaatggctatgatgattttaatgacatgttgatttatttagaattttacccgaatcataagattctgatatcttaaataagaaaatcccgttcgacgttctgaaaaagaaatcataaaatattagcagatacttatttcgtgactatatcttatccgatgaacttttttcaaaaccagcatttaataatatctttgacgaagatgaacgcgtctttgctcaatgtatcacacaggaataataatataacactcaacaataatatttattataattatgattacttatcacgacgcattcgcgaaagcgaaccattaccttgatgatgcagatctcccggtcgtcattactctacatggacgctttagccagggctggtatttctgtttcgaagcacgagaatttctcgaaactggagatgaggccgcgcgcttagctggtaacgcaccttttattattgataaagacagtggtgaaattcattctctgggaacggcaaaaccgctggaagaatatctacaggattacgaaataaaaaaggctaccttcggcttgccctgacaaaatagccctcttcccacgaagagggccgctaaccttagtaccccgccgttaaatcatccaccgagcgcgggtcggatgcgccgtacaactcaccgtccggcccaaccataatgctttgtgtactgcccatcgcctctttcagcgccactttctgaccttttgcttccagcagcttgagcgtatccgggctaaaccctttttcgacacgcagctcgtccggcaaccactgatggtggaaacgcggcgcattggtcgcttcggcgacgttcaagccataatcgatgctattcaccaccatttgcagcactgtagtgatgatccggctaccgcctgggctaccggtaaccagccaggttttaccgtctttcaccacaatggtcggcgacatcgacgacagcgggcgtttgttcggcccgacggcgttggcatcaccgcccaccagcccgtaaacgttcggtacgcccggtttggcggagaaatcatccatctggttattaagcagaataccgctctcgcccgcgacaatgcccgtaccgaaggtggtgttcagcgtataggtcaccgccaccgcgttaccatctttatccaccactgagtaatgggtagtttgattactctcataaggcgcaagcttgccggggcgaatttcgctggatggcttcgctttattgatatcaatttgatcggcaatagatttggcataggctttattggtcagcgcctgccacggtactttgacaaaatccgggtcgccaagatattccgagcggtcggcgtaggcgtatttctccgcttctgccatgatttgcatcgcatcggcgctgccaaagccgtatttcttcatatcgaagttttccagaatattgaggatttgtacgatatggatcccgccggaggatggcggtggcatggagtaaacctgatacccgcgataatcgccgcttatcggagtgcgttcgaccgctttataggctgctaaatcttctttagtgatcaagccaccgtttttctgcatctcctgggcgatctgttccgcaatcgtgcctttatagaattcgtccgggccgttttcagcaatcatctccaggctctttgccaggttcgcctgcaccagcgtgtcgccctttttcagcggctcgccctctttccagaagatagctttactgttttcgtgattcggcaacacttcgctaccgtaggttttgagatcgtcagccagcgcgtcgttaacgataaaaccatcgcgtgccagtttaaacgcgggctgcacgactttgttcagcggcatggtgccgtatttatccagcgccagcgagaaacctgctaccgtacccggtgtgccggaagccagatgcgaagtgagtgattttttgctgtccgggttgccctgatcatcgaggaacatatcgcgggtcgctttggcgggtgccatttcgcggaaatcgatagccgtggtattgccatttttcgagcggattaacataaaaccaccaccgcccagattccctgcctgcggatgcgttaccgccagcgcgtagcccaccgccacggcggcatcaacggcattcccgccctccttgagaatatccacccccacctgagtggcagtggcgtccacagacgctaccattccctgtttcgcgcgtaccgggtggaagacatcttcctccacaccatacgagacgggcggcgcaggaggcgcggcggcggcgctaaaacaacttcctgagagcagagcagcaatggccacccggcgtaaaaacgtcggttttatcatcgttattctccagagattaaggggcaaccccagctaagcctggtatataactctgaattaatcatcgttttgtcgggaagcgagtaaacttaaaggatatcttcagaggaggatacgcgatgaaacgacttctgattcttacggcactcctgccgtttgtcggctttgcacagcccattaatactctgaacaaccctaaccagccggggtatcagatacccagccagcagcggatgcaaacccagatgcagactcagcaaatccagcaaaaagggatgctgaatcagcaactgaaaacgcaaactcagttgcaacagcagcatttagaaaaccagataaacaataattctcagcgggtgttgcagtcacagccgggggagcgaaatcccgcccggcagcaaatgctgcccaacaccaacggcgggatgttaaacagcaaccgtaatccggatagttcgttgaatcagcagcatatgctgccggagaggagaaacggcgacatgctgaatcagcccagcacgccgcagcctgacattccgttgaaaactattgggccgtaaagttcggaccaatcacgtcaatcgcatcggtacagatgcaatccacaccccagcgcagcaactctgctgcgcgctggggtttattgacggtataaaccagaatccgcagtccggcgtctttcaactgcatcactcgcgctttattgagtaacttatgattgagatgaatagagacgcagcccagccgcgcggtcagttcgcgccagtcgtcgcgccactcatccagcaacaaaccgcgcggcagttccggtgccgcctgttgtgcagcttctaaagcatcaatctcaaacgatgacagcagcggcggcgtcataccggcccacagctcgcgtgccgccagcgccaccattttgcccgttaatggcccggtgccggtggtgggtttgatttcgatattcgccatcatcccgtgttcgcggcaacgttccgccacctgcgaaagcaacggtagcggctcacctttaaacattttgctgtaccaactgcccgcatccacgcgcagtaaatcctgccagttcagttcacccgcgacgccccagccgttgctggtacgttcgagattgtcgtcatggagcaggaagatctcgccatctttcgataacttcgcgtcaaattcgatcatcttatgaccgtattttgccccgacgtcgattgacgccagggtgttttccggggccagcttaccgccgccacgatgagcgacgatgcggggataaggccagttactcatactcgttgtcctgtttcaccatcaaaaagatgcagctgattttccgccagatgcagccacagcgtgctgcctgccgtcgggcgctcctgatgcgccagtcgcaccaccagcttctgctcgccccagcgtccgtgcgccaggttatctgcgccgaggatctccagcgtgtccatcaccatcggtacgccgccttctgcctgcgagcttagcgcaatatgttccgggcgaatgccgagagtcattttacgcccggcatactgacggtagccaccgtttagcggcagctcaataccgccgtccagttcgaaatgcgtgccttcgttattcacgcggcctgtcagcaggttcatcgccggactgccgataaaactcgctacaaacaggctggcgggcttttcgtagacttcaactggtgtgccaatctgttcggcaacaccgccgttcatcaccattactcgctgggcgagcgtcatcgcttcaacctgatcgtgagtaacgtagagtgaagtcgttttcaggcgacggtgcaactgttgcagttcaagacgcatctgcacgcgcagcttggcatcgaggttagagagcggctcatcaaacaggaacaccgccggatcgcgcacaatcgcgcggcccatcgccacacgctggcgctgaccgccggaaagctcgcgcgggcgacgtttgagcagaccgtccagctccagaatgcgcgccgcttctttaacgcgctcggcaatttgctgcttgcccatgccgcgaattttcagcccccacgccatgttttcttcgacactcatatgcggataaagcgcgtagttctggaacaccatcgcaatcccgcgatcttttggctccatttcagtcacgcgctggtcgttgatccagatatcgccttctgtcacccgctccagcccggcaaccatgcgcagcagcgtcgatttcccgcagccagacggcccgaccatcacgataaattcgccatccgccacatcaagggtcagcggtttaatgacctgggttttaccatcccagcttttggttactgcctgtaatttcagtcctgccatcttatttctcactatcgaccaggccgcgcacgaaggcacgctgcatcactaaaacaatcaccaccggagggataagcgttaacaacatcgccaccatcactgagttccattccgtggtgccttcgcctgtagcgatcatccctttgatccctgccacggtggtgccgagatccacatcggtaataatcaacaacggccacaaatactgattccagccgtagataaaggtgatcacaaacagcgccgccagattagttttggagagcggaaaaacgatgtcgcaaaagaagcgcattggcgatgcgccgtcgatccgcgcggcttccaccagctcatccggcagcgtcataaagaactggcggaacaggaaagtagcggtcgccgaggccatcagcggcagcgttaaaccggcgtagctgtcgagcatctgcaggttggcgatgacttccaccgtcgggaagatacgtacttcaaccggcagcatcagggtgataaaaatcatccagaagaagaggttacgtagcggaaaacgaaaccagacaatggcaaatgccgagagcatcgagacggtaattttgccgagcgtaatgctgaacgccatcacaaagctgttaagcaacatccgccagaacggcgcgctattcgtgcctaccccgttcacccagatgttgtggatgttttccagcagatgtgtgccggggatgagcgtcatcggcgcggcatagacggcctgtttatccagcgtcgccgcgacaaacgccacgtacagcgggaagaggatcaccgcgatcccgaggatcagcatggtatggctgaatatcgtcagccacggacggttctcaatcattggtaacgcaccttgctttcaacatagcggaactgcaccaccgtcagcacgatgacgaggaacatcaacaccaccgactgtgcggcagacgaagccagatccagtccggtaaaaccttcgcggtagatcttataaatcagcgtcgtggtggcctgaaccggcccgccggacgtggcggcgtcgatcaccgggaaggtgtcgaagaaggcatacaccaggttcactaccagcaggaagaaactcaccggggcgataagcggcagcgcaatcttaaagaagcggcgaatcggccctgcaccgtcgatggctgcggcttcgatcaacgaacggggaatggattgcagcgcggcatagaagaacaggaagttgtagctgatttgcttccatactgaggcaaacaccaccagaaacattgcctgaccgctgttttgcgcgtggttccagtcgtagccgaactccgcgagaaaatgggtgatcagcccgcgaccggggttaaacaggaagatccacaatacggcggcaacggcgggagccacggcgtaaggcagcaacattaaggtttgatagaaacggctgccgcgcacgatgtactccaccagcgccgcaaagaacagcgataccagcaaaccgctgacggtgacaaaggtgctgaattttatcgtcgtccagaaggagtcgagatagtagctgtcatggaacagcgtgacgaagttatccaggccgacaaactggctggagaaaccaaacggatcgacgctttgtagcgagtaccacaacgcttcgcccgcaggccagataaaaaagataacggtgatgatgagctgcggcgcgaccagcagataaggcagccagcgcgagcggaacaccggacgggatgatgacattacggttaattcctgaactgtgccggatgcgcttcgcttatccggcctacacgcgatgccaggtcagataagcgaaacgcatccgacattacactgattaagacttcgtcgatttctcaaagcggcgcagcaactgatttccacgctcaacggcggtatccagtgcctgctgtggtgtcttcttaccggtccacacgctctccagctcttcatccacaatcacgcggatctgcggcatgttgcccagacgcagccctttggtgaacggcaacggcggcttattcagcatctgacgcgtcgcggtatccgcccctgggtttttctcataaaagccctgctcacgggtcaggtcatacgctgctttggtgattggcagataaccggttttctgatgccactcggcagcgttttctggcttcgcgaggaaatcgaggaacttcgccacaccggtatacgtttctttatctttaccctgcatcacccacaggctggctccgccgataatggcgttttgtggcgcatctttcgcatcggcgtcgtaaggcatcatgcctacgccgtagttaaatttggcgtactcgcgaatgttggcaagagaaccggaagaggcggtggtcatcgcgcaatcaccgttatagaacttctcggtggattcatccttacgaccgacgtagctgaagtcgcccttcttgttcatctcctcgagcatggcgatgtgtttcacctgctccggcttattgaactccagcaccgcgtccgtgccgtcaaagccgttgtttttgctggcaaacggcagaccgttccaggcgctaaagttttccagttggatccagccctgccagccgctggcgtagccgcacttcatgccggaggctttcagtttcgcggcatagtccgccagatcctgccaggttttcggcggctgttccgggtctaatcctgctttcttgaaggcgtctttgttgtaatagagaacgggggtcgagctgttgaatggctgggagagtaagtggcccgttttgctgtcggagtagtaacctgaaaccgtcggcacaaactgcgactcatcgaactgaatccctgcctctttaaacacgtcatacaccggtttaatggctttcgacgccatcatggtggcggtgccaacttcataaacctgcaaaatagccggcgcgttgccggtacgaaatgcggcaatccccgcgcttaaattctgttcgtagttgcctttataggtcggtacaattttgtaatccgggttttcggcgttaaaacgttgggccagagaatccacctctttacccagttccccttccatagaatgccagaacggaatggtcgtcactgcctgtgcattccccattaacgccagtccgagcgccagtgctgaagctgtataatgtaacggtttcatcgtttatctctcttgttgtaccgaatgcgcgaattcacgcgttttatgctcgcggggtaacatgacatgctcgaattacagaaaaataacttttttgttacatttgtaagatagtaaggtgtcagaaagatgacaaggcggtgacggcgtgggtgagggaaaatgggagatggggcacggataagcgggaaaatatagaaggtctgaatcaaactctacagattgctcatcgtttcatgccggatgcggcgtaaacgccttatcaggcctacaagatcgtgcaaattcaacatattgccactcacccagtaggcctgataagcgcagcgcatcaggcaattttacatttgtcacctgtctcaaaggagtcttttgactccctatcaatcaacgtgttattacccgcctaaatacgcacttctcaccgcttcattcgccagcagcgcatcaccagtatcggaaagcactacatggccgttttccagcacgtagccgcgatccgccagctttagcgcctggttggcgttctgctcgacgagaaagatagtcatcccctgctcgcgcagctgctcgatggtgtcgaaaatttgctggatgataatcggcgcaagaccgagcgatggctcatcaagcagtagcaaacgcgggttgctcatcagcgcacgaccaatcgccagcatctgctgttcaccgccggacatggtgcccgcccgctgaatacggcgctcatgcagacgtggaaacagctcatacacccactttatgcgctcctggaactggtcgcgttcagcaaaaaaaccgcccatcgccaggttctcttccaccgtcatccgcgagaagacgcgacgcccttccgggacaatcgccaccgcttcgcgcatgattttcgctgtctgccagtcggtaatgtctttatcatcaaacacaattcgcccgctggtggcacgcggatcgccgcataacgtgccgagcaaggtggttttccccgccccgttcgcgccaatcagcgtgacaatctcgccctgattgatatgcaggctcacctcatgcagcgcctggattttgccgtagtgggcgctgactttgtcaaaggacaacatgactttttccatcttatgcctcacctaaataggcacggatcacgtccgggttattacggatctgctccggcgtaccgtttgccagcggcgtcccctgattgaccacgtaaattcggtccgaaattcccatcaccagcttcatatcgtgttcaatcaacaagatagtggtgttgtgatgattgcgcagttcggcaatcagctcatccagctctttcgtctctttcgggttaagacctgccgcaggttcgtcgagcattaaaatctccggctgcgtcaccatgcagcgggcaatctcaagacggcgctggtcaccataggccaggttactcgcctgacggttggcgtgttccagcaaaccaatgcgctcaagccaggtcgcggcgcggtcgagcgcttcgctctgggcgcgacggaaggatggcgttttcaacaggccagagaacagcccggttttcagttgctgatgctgcgccaccagcaggttttcaattaccgtcatttcacggaacagacgcacatgctggaaggtgcgcaccacgcccatgcgggcaatttgctgccccggtaaaccttccaggtgctgatcgcgcagtaaaatggtgccgccggtgggtttgtagaatccggtcagacagttaaaaaccgtggtttttccggcaccgttagggccgattaacgagacgatctcctgcgggtacagttcaagattgacgttgttcaccgccagcaggccgccgaagcgcatcatcaggccgttaacagataataatggctgactcatgcctgctctcctttcgctgcgccgtttttcagcttcagttgcgggcgcgtcatgggcagcaagccctgcggacgccagatcatcatcagcaccatcaaaccaccgagcattaacatgctgtattcgttgaaatcacgcatcaactcgcgcgacaccaccagcaaaattgccgccagaatcaccgcaaattgcgagcccataccgccgagcaccactatcgccagcacaaacgccgattcggcaaaggtgaaggattccgggctgacaaagccctgacgcgccgcaaacagcgttccggcaaaaccggcaaacgcggcacttatggtaaaggcagtcagcttgatacgacgcgggcttaagcccagcgaacggcaggcgatttcatcttcacgcaacgcttcccacgcacgccccagcggcatccgcagcaggcggttaatgacaaacaggcttagcaccaccagcagcaacgccaccaggtagaggaagatgacacgatcggagggatcgtatttcaggccaaagaaattactgaacgtgtcccagccgccttcacgagcggtacggctgaactcgagtccgaagagtgtcggtttcgggatctgactgattccgttcgggccgccggtaatttcggtgttattgagcagcaatatgcgcacaatttcgccgaaaccgagggtaacgatcgccagatagtcaccgcgcaaacgcagcaccggaaaaccgagcaggaagcccgccgccgctgccattaatccagcaatcggcaggcaggtccagaagcccaagccgtaatagtgattgagcagcgcaaaagtgtaagcgccgatggcgtaaaaaccgccgtaccccagcaccagcagaccagaaagaccaacaaccacgttcagcccgagaccgaggataatgtagatcatggtcagggtggcaatatccaccgtcccgcgtgaaaccataaacggccacgccaccgcaagcaccaacagcgccacgaggaacagtttctgcttcaccgtggagccatcaatggcgggcagaataaacttcggtccggaaacgcttttcaaccctttctggaaagccggtcgcaaaagctggaagaaaaagaccaccgccgtgccgataaacacccactgccaacggacatccgaagccgtgtcgaccaccagtttggtgccatccagctccagttgcacgcccataaagacgcccgccagcacaaagaacatcgcggcagagagcagcgccattgcaatatgcatcggtttcatactttctctacctccgggcgacccagaataccggtcggcatcaccagcagcaccagaatcagcagggcgaatgagaccacatctttatattccgtactcagataggcagaagagagcgcctccgcaatccccagaatcaggccgccaatcatcgctcccggaatgctgccaatcccaccgagcaccgccgcggtaaaggctttcatcccggccataaagccgatgtaggggttaatgacgccgtagaactgaccgagcagcacacccgccaccgccgccatcgccgcgccaatcacaaaggtcagcgcaatcacccggtcggtgttaatgccaagcagactcgccattttcagatcttccgcgcaggcacgacacgcgcgacccatgcgggaatagcgaatgaaaatcgtcagcgccagcatggcgaggaaggtaacaatccagatcaccgcctgcatggtggtaatagaggcagagaagttttcgctatgccccaccacccactgaccgttaaacaggctcggcagcgccacgtcgcgcgaaccttcggtcaggctgacgtagttttgcaggaagatggacataccgattgcagagatgagtgcaatcaggcgcttagagttacgcaccgggcggtaagccacccgttcgatactccagccgtaggcgctggcaatgacgattgcgccgacgaatcccgcagctaccagcagccagccggtatcaatgcccatcatcatcagcgcggcgatgatcataaatgagacgtagctgccaatcatataaacctcgccgtgggcgaagttgatcatgccgataatgccgtaaaccatggtgtagccgatggctatcagcgcgtaggtactgcccagcgtgacgccgttaaacatctgctgcaagaaatacaaaaactgctcagacataaggtaacctttctaaacccgcccgcattttacgggcggtgggatgatcacttggctgccgtggatgaaccgtcggcgtgccactggaagacaccaaaatcaaatcccttaagatcgcctttttcatcccagttcagcggcccaatcacggtgtttgcaccgttagcttttaaatctttcaccagcgccagcggctcatcgctgccggtacgctcaagggcagtcgccagagattgcaccgccgcgtaggtgatccagacataaggcccggacggatctttcttgtctgctttcagcgcatcaacgatgccctggtttgccggatcctggtcatagcgttttggcatagtgaccaacatgccttcggcggcatcaccggcaatgttcgacaacgacgcattacccacaccttccggccccataaactgggttttcaggccaacggaacgggcctggcgcagcatctgccccatttccgggtagtaaccgccgtagtaaacgaagtcgatgttttcttttttcaggcgggcgatcagcgcggagaaatctttctccccggcggtaataccgtcgaagaagacgacgttggcgttagccgctttcagcccgtcctgcaccgaacgcgccagcccttcgccatactgttgtttgtcgtgaatgatggcgatgcgctggggcttcaccgtctcaagaatgtattttgccgccgttggcccctgggaagagtccagcccggcagtacgcataatgtgttgataaccgcgttgggtcagctccgggttggtcgctcccggcgagatcatcagaataccttcgtcttcatagatatctgacgcaggctgggtagaagaagaacacagatgaccaataacgtatttaatgccgtcattaacgattttgttggcgaccgcaacggcttgtttcgggtcgcatgcgtcgtcatattccacgccaaccagtttatcgcccttaattccccctttggcattaatgtctttaattgcctgacgcgcgccgttaaattccatatcgccccactgggcaatcgggccggacatcgcgccgacaacggcgactttaatatcgtcagccatagcggtgtgtgaaattgccagtgcaatcatccctgcgatgatagttttcgcattccgtttcatagtcaaaaatccccattcgtgatgttgtgttgctttgtttttatgtgttaacaaatcagactgttctttttttatactgcactgtttttgcctgtctgattaaggggttagcgcagtattttgtgataatagcgattaaaatccctatttttcagtcgattaagaacagataatattctgaatttattgatagataaacagaaaaaagtgcctttgtcagcataaaataacggcacaaagggcggaataattcactatcattcaggggattatgctggacatttttcattctctaatgttttaattttgtaattattgctgttaaaaaattaatcacctgccaaaagaaataaaaaagagaaagcctccgattaaattatttcgctacactggttccacttttgtgatttacacgggttacccatgaagctgaccatcattcgattagaaaaatttagcgaccaagaccggattgacctgcaaaagatctggccggagtattccccttcctcgttacaggttgacgataaccaccgtatctacgccgcgcgttttaacgagcgcctgctcgctgccgtgcgggtaaccttaagcggcaccgagggagcactggattccctgcgcgtgcgggaagtcacccgccgtcgcggtgtggggcaatatctgctggaagaggttttgcgtaacaatcctggcgtttcatgctggtggatggcggatgcaggcgtggaagatcgcggtgtgatgacggcgtttatgcaggcgctggggtttacggcacaacagggcggctgggagaagtgttaatcgtcaagtttgatttcaaaagtgatattgcctgatgcgctacgcttatcaggcctacaatgtgtgttgcaatttactgatttctttggatcttgtaggccggataaggcgtttacgccgcatccggcatgaagcaacgtactcgatattagcaatttggcggcaacccaaagttgccgattaatgattacttcgcatcggtcgccgtgccgttggcgtgccagtcaaatacgccgaactcaaagcctttcagatcgcctttctcatcccaggtcagcggtcccattacggtatccacggagttcgctttcaggtatttggcgatttcagccggatcgtcagactgattcaggcccgcctgcaaagattgcagcgcggcgtaggtggtccaaacgaatgcgccacttgggtcctgttttttcgctttgatcgcgtcaacaatgggtttgttcgccggaacctgatcgtagttcttcggcttggtcaccagcagcccttccgctgattcgcccgcaatgttagacagcgaaacgttagccacaccttccggccccataaactgagttttcagccctgccgcgcgtgcctgacgcaggatttgccccatttccgggtgataaccgccgtagtaaacgaagtcgatattctcttttttcagacgcgccaccagcgttgagaaatctttttccccggcggtgatgccatcaaagaacaccacgtttgcattgcctttcttcaggccgtcctgcaccgctcgcgccagaccttcgccgtattgctgtttgtcgtgaacgatagcaatacgctgcggtttcactttctcaagaatatatttcgccgccgtcggcccctggtcggagtccaggccggtggtgcgcaggatcagctgatagccacgggcggtcagctccggcgcggttgccgctggggtgatcattaaaatgccttcgtcttcgtagatgtcagacgcaggctgcgttgatgaagaacagaggtgaccaatcacatatttaatgccgtcgttaacgactttgttcgccaccgcaaccgcctgtttcgggtcacaggcatcgtcatattttacgatttgcagtttgttgcctttaatgccgcctttagcgttgatatccgcaaccgcctgctctgcgccggtaaactcctggtcaccgtactgcgcaaccggaccggacattgcgcccacgaccgcgactttaatatcttctgccagagccatattgctgaatgccagcgcgatacatcctgccagtaacgctttaccctttatgttcatcctgagaatccccattcttctggttattacgtgtgttgtgatgttgtttttcagcactttatttcgttttatgcatgactacccgtgctttagcagcatactctgctaaaacatacccgatttttatgatattggaatagctattttgacagtttattaacaatctgcgtggggattggcgttttgccggaggggaaattgattattacagaggcccaaaaaacaaaaaccccggactctcatccagggttctctgcttaatagcggaaattacgcttcaatggcagcacgcaattttttcatcgcgttcttttccagctggcgtacacgctcagcggaaacgccgtaacggtcagccagttcctgcaacgtggacttgttgtcttcgtccagccagcgcgcacggatgatgtcctggctgcgttcgtccagaccctgcatcgcgtcggtcagacggtttgccgcctgctcttcccagttatcatcttcaatgccgtcggcaaagttagatgatttatcctgcagatagagcaccggagccatcggctggctgtcggaatcgtcgtcggaagacaggtcaaaggtcatgtcctgtgccgccatacgtgattccatctcacgtacgtctttgctggttacgcccagttcacgggccaccatttcgacttcatcctggttaaaccagcccagacgctgcttggttttacgcaggttgaagaacagtttgcgctgcgctttggtggtcgcaactttgacgatacgccagttacgcagaacgtattcgtggatctctgctttgatccagtgaacggcgaaggagaccaggcgcacacccacttccgggttgaaacggcgcactgctttcatcaggccgatgttaccttcctgaatcaaatccgcctgtggcaggccatagcccgcataattacgagcaatatgaacaacaaaccgcaggtgagacaggatcagcgttttagctgcttccagatcgccatggtaatgcagcttttcagccagcgcccgctcctcgtcagccgacaacatcggccacgcgttagctgcccggatgtaggaatccaggttgccaactggggctaaagctaaactttgcattttgtcagtcattcaaatcctctcaatcgatatcttctggcgcttcagtggtagcaacaactgtgccagagcttaagagcaacgaggttatcattcactgttttatcagaccgtgattttatccacaagttcaatgcaagcttgtgaataaattacgcacaaaatgtgacatagagatgaaataccgggaagagacaacggggtctctttccctgctacggaacccattgcagggaaagagtataacacgcttttattattcaggcgtaaagtggcgtaaatgttgtaccgtggcaagccacgctgccacccagccaatcatcgagcataccagcagcaatagcaggcattcatcgaatgataagccattgatatcaaacttcgttccgaaaacctgtgccacttccgcaaccgccgatgacaatcgcagcaccagaatttctgacaaaattaatgacaacaatgcgccagaaaatcccagcagtgcgccaccatacaggaacgggcgcaggatgaatccatctgtcgcaccaatcagtttctgtacgttaatggagtcacggcgagcaaagatactcagacgcacactgttaccgatgacgaggaacacggccgccaccatcaacacgccgatcatcgccgaaacgcgcccgaccagcccggtcaacgccgccagacgggcaaaccagctgtcatccatccgcacttcgtcaatgccgttaatctgcgtgatacgatcacgcagcgtattcagtgattccgtcccctggaaatcgagtttcgggatcaccaccgccactgccggaagcgggttttcttccagcatatccagcgcaccaccaaaaccagaccagttacggaactcacccagtgcgtcttcacgagaaagatagttcactttctccacgccttgctcggcctgcaactgtgccaccacgcccgcagcagcgtcatcgtccagcgttttttgcagataaacagtgatttgcggtgacggataatactgcgtcgccgcctggttaacgtttttgtacaccatataacagacgctgggcagcgtcagagaaatggcgataaccatcaccgttaaaaacgtggcgaacggtttgcttttcagatcctgcaatgcgccgtggaaggcatagcgcacctgttcgttgaaaacgttggttttgcgatttaccggttttggcgaggatttcgcgcgttttggtgcgttacgaccgccgtcgcctgagccgccgaccgatttacggaagcgatcaagacgcccgccaaactgccgaatatgattgattgcatcgcgcttattcatggcccacgcctccatgcaagtgaccatcgctcagggtgagcatgcgataggaacgccgcgagatcaggttgatgtcgtgcgttgccatcaatacggttaccccaacgcggttaaactcttcaaacagacgtaaaatgccttccgacagcgcgtcgtccaggttaccagtcggttcgtccgccagcagtaccgcgggcttgttcaccaccgcgcgggcaatgccaacacgctgttgttcaccgcccgaaagctgaatagggaagttcttcgctttgtccagtagcccgactttatccagcgccgccgacacccggcgacgaatatcgtcaccgctggcaccggcgataatcagcgggatcgccacgttatcgtagacagtacggtccatcagtagatggtgatcctggaaaatcatgccaatctggcggcgcagaaacggaacttcacggtttttcagacgcgtgatgtcatggccgctaaaccagattttcccggcgctgggccgctcaatcccacagatcagcttcaggagggtacttttccctgcgccggaatgaccggtcagaaacgccatctcacccggctgcatatggaacgtaacgccctgcagcgcctgtctcccaccgagataagccttgctgacatgttcaaagcgaatcattgttaatcctctcgggcaaaaagtgcctctataaagtcgtccgccttaaacggacgcaaatcctcaatacgttcgccgacaccaatgtagcggatagggataccaaactggtcagccaccgagaaaattaccccgcctttcgccgtgccgtccagtttcgttagcgtgatgccggttaagccaacggcttcatggaacagtttggcctggcttaccgcgttctgcccggtgctggcatcaatagtcagcataacttcatgcggcgcttcaacgtcgagtttcttcatcacgcggacgattttcttcaactcttccatcaggtgcgatttgttctgcaggcgtccggctgtatcggcaatcaggacgtcgatattacgcgctttagctgcctgaatggcgtcgaagataacagaggcggaatccgccccggtatgctgggcaatcaccggaatattgttgcgctgaccccagacctgaagctgttcaaccgcagctgcacggaaagtatcacccgccgccagcatcaccgatttaccctgctgctcaaactgacgcgccagcttaccaatcgtcgtggttttacccacaccgttgacgcccaccatcaggatcacaaacggcgctttgccttcaacattcagcggctcatcgactttcgccagaatctcgcccatctcttctttcagcaggccatagagcgcctcggcgtcacgaagctgcttgcgggatgcgccttccgtcagattggtgataattttacgtgtggtttccacacccacatcggcgatcaaaagctgctcttccagctcctcaaacagatcatcgtcgatttttttaccgcggaacaggctgataaatccggaaccgagattttctttggtttttaacaggctgcgtttcaggcgcgcgaaaaaaccttctttggtcggtttttcctgctcctgagcgatttcttccaccggctgctcttcttctgccggaggaaccaccatcaccgcctcttctgccgcttcggcagccagcgccgtttccagctcttcgtcggtaatttcttctttagccgcttcttcttccgccgcttcgacaatctctacggtttccgcttcagcctgccactcttctggcgaaaccgcttcggcgttgacgtcttccggcaacggcagctcttcacgttcgatagccactggctccggcgtttcttctacgaccggttccggctgtgcaacgacttccgcttcaggctgcgctttttcactttcagcaacctgttcagtgacttccacaacgtcggcagcaaaagtttccgcctcggcttcagtatgcgcttgcggctgctcttcaacggcttgttcagaggccttcacaggctcttgcgcctgaacgatttcttctacaaccggttgttcattctgaacttctgtctctttttccggggtctgctctttttgaccaaagcccagccaggaaaaaaagccacgttttttttctttcgccatttgcgactacactcctcgctgttgcttcatggcacagcgttaacgctatgtacatagcagctaaaaaaatgatgaaatagtctatcacttaacttaattcacatcaccgcctgcaagtatgtgttatctggcggattgagcaatttatcatgaaaaaaccgaatcattccggcagcggccaaatccgcattattggcgggcagtggcgaggccgtaaactcccggttcctgatagcccaggtctgcgccccaccaccgaccgcgtacgcgaaacgttgtttaactggctggctccggtcattgttgacgcccaatgtctggattgcttcgccgggagcggcgcgctggggctggaagcgttatcgcgctacgctgcgggggcaacgttgattgagatggatcgcgcggtttctcagcagttaattaagaatctggcgacactaaaagcaggcaatgcacgcgtggtgaacagcaacgcgatgtcattcctggcgcaaaaaggtacaccgcataatatcgtgtttgtcgatccaccgttccgccgtggcttgttagaagagacgataaatttactggaagataacggctggctggctgacgaagccctgatttatgtcgaaagcgaagtcgaaaacggtctgcccactgttccagcaaactggtcattacatcgggaaaaagtggcgggtcaggtggcttatcggctgtatcaacgcgaagcacaaggagaaagtgatgctgattaatattggtcgtttgttaatgctctgcgtttggggatttttaatcctcaacctggtgcatcccttcccacgcccgctgaatatcttcgttaacgtggcgctgatttttaccgtgctgatgcatggtatgcagctggcgctattgaaatccactttaccgaaagatggcccgcagatgaccaccgccgaaaaggtacggattttccttttcggcgtgtttgaactgctggcctggcagaagaaatttaaagttaaaaaataaccttattgttcgcctacaaagctgacaaagcgcgttcctttatagctcagcgtacctttatcgcccactgtcagggcgtggtactgctgggcgtcgaggcgaaacgtctgctccattcctccgctttgcggtttgaagcttgcctcatagcgtatactggtgcctgccggagtcacttcctgctggcgcgaacggcgatcgttaatcggtttttcccgcttgttgctcaccaccaccagcttttgctggagcggagccatatcattatcagctttttcccgtcgctgttgcataaaacgaaacgatgcggcgacgacaattaagccaatgataacaataaagaaaagaggtggtttgctcatctttatccctcatcggaaaatgcggaaataagcataccctgccagttatggtgttgtcatccgtccaccctcgccactaaactggaagcaagaccgtaggcattccgcttacgaaaaaataacgaattcaaggaactaagatgctttggtcgtttatcgctgtctgtctttccgcatggctatctgtggatgcatcgtatcgtgggccaacctggcaacgctgggtgtttaaaccgttaacccttcttctcctgctgttactggcctggcaagcgccgatgttcgacgccattagctatctggtgctggcagggctgtgcgcctcactgctgggcgatgcgctaaccctgttgccacgtcaacgtctgatgtacgccatcggcgcgtttttcctctcgcacctgctgtacaccatctatttcgccagtcagatgacgctctctttcttctggcctctaccactggtgctgctggttctgggtgcgctgttactggcgattatctggacgcgcctggaagagtaccgttggcctatctgcacgtttatcggcatgacgctggtgatggtgtggctggcaggtgaactgtggttcttccgtccgaccgctccggcgctctctgcgtttgttggcgcttcgttgctgtttatcagtaactttgtctggctggggagccactatcgccgacgcttccgtgcggataacgcgattgctgcggcctgctactttgccggtcacttcctgatcgtccgctcgctgtatctctgataaaacttgactctggagtcgactccagagtgtatccttcggttaatgagaaaaaacttaaccggaggatgccatgtcgactcctgacaatcacggcaagaaagcccctcaatttgctgcgttcaaaccgctaaccacggtacagaacgccaacgactgttgctgcgacggcgcatgttccagcacgccaactctctctgaaaacgtctccggcacccgctatagctggaaagtcagcggcatggactgcgccgcctgtgcgcgcaaggtagaaaatgccgtgcgccagcttgcaggcgtgaatcaggtgcaggtgttgttcgccaccgaaaaactggtggtcgatgccgacaatgacattcgtgcacaagttgaatctgcgctgcaaaaagcaggctattccctgcgcgatgaacaggccgccgaagaaccgcaagcatcacgcctgaaagagaatctgccgctgattacgctaatcgtgatgatggcaatcagctggggtctggagcagttcaatcatccgttcgggcaactggcgtttatcgcgaccacgctggttgggctgtacccgattgctcgtcaggcattacggttgatcaaatccggcagctacttcgccattgaaaccttaatgagcgtagccgctattggtgcactgtttattggcgcaacggctgaagctgcgatggtgttgctgctgtttttgattggtgaacgactggaaggctgggccgccagccgcgcgcgtcagggcgttagcgcgttaatggcgctgaaaccagaaaccgccacgcgcctgcgtaagggtgagcgggaagaggtggcgattaacagcctgcgccctggcgatgtgattgaagtcgccgcaggtgggcgtttgcctgccgacggtaaactgctctcaccgtttgccagttttgatgaaagcgccctgaccggcgaatccattccggtggagcgcgcaacgggcgataaagtccctgctggtgccaccagcgtagaccgtctggtgacgttggaagtgctgtcagaaccgggagccagcgccattgaccggattctgaaactgatcgaagaagccgaagagcgtcgcgctcccattgagcggtttatcgaccgtttcagccgtatctatacgcccgcgattatggccgtcgctctgctggtgacgctggtgccaccgctgctgtttgccgccagctggcaggagtggatttataaagggctgacgctgctgctgattggctgcccgtgtgcgttagttatctcaacgcctgcggcgattacctccgggctggcggcggcagcgcgtcgtggggcgttgattaaaggcggagcggcgctggaacagctgggtcgtgttactcaggtggcgtttgataaaaccggtacgctgaccgtcggtaaaccgcgcgttaccgcgattcatccggcaacgggtattagtgaatctgaactgctgacactggcggcggcggtcgagcaaggcgcgacgcatccactggcgcaagccatcgtacgcgaagcacaggttgctgaactcgccattcccaccgccgaatcacagcgggcgctggtcgggtctggcattgaagcgcaggttaacggtgagcgcgtattgatttgcgctgccgggaaacatcccgctgatgcatttactggtttaattaacgaactggaaagcgccgggcaaacggtagtgctggtagtacgtaacgatgacgtgcttggtgtcattgcgttacaggataccctgcgcgccgatgctgcaactgccatcagtgaactgaacgcgctgggcgtcaaaggggtgatcctcaccggcgataatccacgcgcagcggcggcaattgccggggagctggggctggagtttaaagcgggcctgttgccggaagataaagtcaaagcggtgaccgagctgaatcaacatgcgccgctggcgatggtcggtgacggtattaacgacgcgccagcgatgaaagctgccgccatcgggattgcaatgggtagcggcacagacgtggcgctggaaaccgccgacgcagcattaacccataaccacctgcgcggcctggtgcaaatgattgaactggcacgcgccactcacgccaatatccgccagaacatcactattgcgctggggctgaaagggatcttcctcgtcaccacgctgttagggatgaccgggttgtggctggcagtgctggcagatacgggggcgacggtgctggtgacagcgaatgcgttaagattgttgcgcaggagataaggcaaaccgatcgcaacattgagcgcgatcggtcccctcgcccctctggggagagggttagggtgaggggaaaaggcggcatcgaagccaatcagcccctatcaaccgcctttacgaatcaaataacgataaggcagtccatccgtctctttagcaaccagttcgtgttccataaaggtacaaaacccaggaatatcgcgggtagtggccggatcgtcggcgataatcagcaacgtttcgccaggctgcatattgcgcacggttttgcgcaccatcatcaccggttccgggcagcgcaggccaagcgcgtcgagtgtgtggtcagggctggaaaagagatcggtcattttcttctcatcacttaaaaaaacggcgctagtttacgccctgtgagtccgtaagcaaactaggttaacgattgcgtgaaaattaaccattgcattgtcaacgtaaagcagtatcatgcggcggctcgaaaaaagggtaagcacgttattatgttaaggtaacagacgtgtcgtacgtattgggttccctcaccccaatggttaatcaaaaaggtacaatatgaacgttttctcgcaaactcaacgctataaggcgttgttctggttatcgttatttcatctgctggtgatcacctccagtaactatctggttcagcttcccgtctccattttgggtttccataccacctggggcgcgtttagctttccgtttatttttcttgctaccgacctgaccgtgcgtatttttggcgcaccgctggcccgacgcattatcttcgcggtaatgatccctgcgttattaatctcctacgtcatctcgtcgctattctatatgggttcctggcagggattcggcgcactcgcccacttcaacctgtttgtcgcccgtatcgccaccgccagtttcatggcctacgcgctggggcaaatcctcgacgtgcacgtttttaaccgcctgcgtcagagtcgccgctggtggctggcaccgacagcgtccacactgttcggtaacgtcagcgacacgctggcctttttcttcattgccttctggcgtagcccggatgcctttatggctgaacactggatggaaatcgcgctggtcgattactgtttcaaagtgttaatcagtatcgttttcttcctgccaatgtatggcgtattactcaatatgctgttgaaaagactggcagataaatccgaaatcaacgctttgcaggcgagttaaaggttcgttatcagagttgtgataagatggatgaatgagccgttatggccgtttatcgaaaggaagaagtcaatgcgcaatctggttaaatatgtcggaattggcctgctggttatggggcttgcggcctgtgatgataaagacactaacgctacggcgcagggttcggtcgcggaaagtaacgctaccgggaatcccgtcaacctgcttgatggcaagttaagtttctcgctgccagcggatatgaccgaccagagcggtaagctgggaacgcaggccaataacatgcatgtctggtccgacgccaccgggcagaaagcagtcatcgtcatcatgggcgatgatccgaaagaagatctggcggtgctggcgaagcgtctggaagatcagcaacgtagccgcgatccgcagctgcaagtggtaaccaataaagccattgagctgaaaggtcacaaaatgcagcagttagacagtattatctccgcgaaaggccagacggcgtactcttccgttattctgggtaacgtgggtaatcaactgctgaccatgcaaattacgctgcccgctgacgatcagcaaaaagcgcagaccaccgcagaaaacatcattaatacgctggttattcagtaagttttaagatgatgaggcggcctcagggacgtgttccggaggccgtttttttaatcgccacgtcagtaataacgcgattgcgaccagtcccgccgccgccagataaatcaccggtacgcccgcccagctcatcaccagcccagccagtggtccagtcacgccaagcgataaatccataaatacggtgtaagttgccagcgccgccccctgattttgctgcggaaccgcttttaccgccactacacccaatgccgggaacaccagcgaaaacccggcccccgccagtaagacgccgattttcgccatccacggcatagtcgccacgccaaccagtagcaggccgattatctcaacgctaaagcaaatcatcgctacgtttaagccaccgatacggttaatgccgttagggaataacaaacgcgtaccgacaaacgcacagctaaacagcgtcagcgcgaaagccgcaccgtcccaacctttagcgtcataaaacagcgtgataaaggtggcgatgacgccaaatccggcggaagccagtgccagcgccataccgtacagccagacgcgcccaagcaccgcgcgaaacggcagcggtttgcctttactggcttttaccgtcggacgcgggatcgccaacaaaatggccaccagcgccacgcccataatgattaacgctaacgcctgcaagccgccccagtgataaaacacgacgcctaacggcgcacccatcgccatcgccccgtaagtgacaatgccgttccacgaaatcacccgcccgatatgcagcgagccaaccacgccaacgccccatagggtcgatcccgttccggcaaaactttgcccaatcccaaggatgacgcgccccaggcaaagtaataacaggctgatgacaggcagactggcggttaatcctgccgtcagataccccagaccgctcaaaaagcagccgcataaaccgaagacgacaatctttttgggtcccagcgaatcggcgtaacgtccggcatgagggcggctcagcaaggtggcgaaatattgcaggctgataaccaatcctgcccagaaggcgctaaagcccatcacatcatggacatagcccggtaatacagcgagcggcaacccgatggtgaggtagctggcgaagttaaacatgactatagagacaatgcgcaaattcaggcgcaatccgtttagcgcgggttcggctacgggttcgggcatgaggatcaccacatttttacaacagtgtttcatttttaccacgtgctgacgtgaaaatcagcagtaagaatcagaatattgctggcgtgactcccgctacacttaatacaaaaagtcacaaggaagccccaatggaaacccctcaacccgataaaacgggcatgcacattctgctcaagctggcctcgctggtagtgatcctcgcgggcattcacgcagcggcagatatcattgtgcagctgttactggcgctgttttttgccatcgtcctcaacccgctcgtcacctggtttattcgtcggggagtacaacgccccgttgccattacgattgtagtggtggtgatgctgatcgcactaaccgcgctggtcggcgtactggcggcatcgtttaacgaatttatctctatgctgccgaagtttaataaggagctgacgcgcaaactttttaaattgcaggagatgttgccttttcttaatttgcatatgtcgccggagcgaatgctgcagcggatggactcggaaaaagtggttaccttcaccacagcgctaatgaccgggctttccggggcaatggcgagcgtgcttttgctggtgatgaccgtagtttttatgctgtttgaagtgcgccacgtcccttacaaaatgcgttttgcgctgaataatccacagattcacatcgcgggattacaccgcgcacttaaaggcgtttcgcactatcttgcattgaagacgctactcagtttatggacaggtgtcatcgtctggctggggctggagctgatgggggtgcagtttgcgctgatgtgggcagtactggcgtttttgctcaactacgtgcccaatatcggcgcggtaatttccgccgtaccgccaatgattcaggtgctgctgtttaatggtgtttacgaatgtattctggtcggcgcattgtttttagtggtccatatggtcatcggcaatattttagaaccacggatgatgggccatcgcctggggatgtccaccatggtggtatttctttcattgttaatttggggatggctgctcggcccggtagggatgctactttcggtgccattaaccagcgtgtgtaaaatctggatggaaaccaccaaaggcggtagcaaactggcgattttactggggccgggcagaccgaaaagtcggttaccgggatgaggcgacaagtgatacgatacgcactttcattttccattaaacgttggccctgatatgtatcggatagttctggggaaagtttcgaccttaagcgcagctccactgccaccgggtttacgcgagcaagcaccgcaaggtccacgacgcgaacgctggctggcggggcgtgcattgctttcgcacacgctttccccgctaccggagatcatctatggcgaacaaggcaaacctgcatttgcgccggaaatgccgctatggttcaacttaagccatagcggtgacgatatcgccctgctgttgagtgatgaaggcgaagtcggctgcgatatcgaagtgattcgcccgcgcgccaactggcgctggctggcgaacgccgtattcagcctcggggaacacgctgagatggacgccgtgcatcctgatcagcaactggaaatgttctggcgcatctggacgcgcaaagaagccatcgttaaacagcgtggcggcagcgcctggcaaatcgtcagcgtagacagcacctatcactcctcgctgtcagtcagccattgtcagcttgaaaatttaagccttgcgatctgcacccctactccctttacgctcaccgccgacagtgtgcaatggatcgattcagttaactgatccgcccacccgactgcccatctattgatccagaacaggtaatcagtatgacgaatacttaaaatcgtcatacttatttccgccatctattttaatccattggggttaccatgctctccacactccgccgcactctatttgcgctgctggcttgtgcgtcttttatcgtccatgccgctgcaccagatgaaatcaccaccgcctggccggtgaatgtcgggccactaaacccgcacctttacacgcctaaccagatgttcgcccagagcatggtttatgaaccattggtgaaatatcaggcagacggttcggtgatcccgtggctggcaaaaagctggactcattcagaagatggtaaaacctggaccttcaccctgcgtgatgacgtgaaattctccaacggtgaaccgttcgatgccgaggcggcggcagaaaacttccgcgcagtgctcgataaccgtcaacgtcacgcctggctggagctggcaaaccagattgttgatgttaaagcactcagtaaaacagagctgcaaattaccctgaaaagcgcctactatcctttcctgcaagaactggccctgccccgtcctttccgttttatcgctccctcgcagtttaaaaaccatgaaaccatgaacggaattaaagcgccgattggcaccggaccgtggattttgcaggaatcgaaactgaatcagtacgatgtcttcgtccgtaacgaaaactactggggcgaaaagccagcgattaaaaagatcacctttaacgtcatcccggacccgactacccgcgcggtggcgtttgaaactggcgatatcgacctgctgtacggaaacgaagggttattaccgctcgataccttcgcccgctttagccagaatccggcttaccacacccaactgtcacagccgatcgaaaccgtgatgctggcgctcaataccgccaaagcccccaccaacgagctggcagtacgtgaagctcttaattacgcggtaaacaaaaaatcgctgattgataacgcgttgtatggcacccagcaggtcgccgacaccctgtttgccccttctgtgccctacgccaacctcggcctgaaaccgagccagtacgatccgcaaaaagcgaaagcgttgctggaaaaagccggttggacgctgcctgcgggcaaagacatccgcgagaaaaatggtcagccgctgcgcattgaactttcgttcatcggcaccgatgcgttaagcaaatcgatggcggaaatcattcaggctgatatgcgccagattggcgcagatgtctcgctgattggcgaagaagagagcagtatctatgctcgtcagcgcgacggtcgttttggcatgattttccaccgcacctggggcgcgccatatgatccacacgccttcctcagttcaatgcgcgtaccgtcacacgctgacttccaggcacagcaaggattagccgacaaaccgctgattgataaagagatcggcgaagtgctggcgacccatgacgaaacgcaacgtcaggcgctgtatcgcgacattctgacccgtctgcatgacgaggcggtttatctgcctatcagttacatctcaatgatggtggtatcaaaaccggagctgggtaacatcccctacgcgccgatcgccaccgaaattccgttcgaacagattaaaccggtgaaaccttaatgttgcgttacgtattacgccgctttctgctgctgatcccgatggtgctcgccgcctcggtgatcatttttctgatgctgcgcctcggtaccggcgacccggcgctcgattatttgcgtctgtctaacctgccgccgacgccggagatgctggcctctacccgcaccatgctgggactggatcagccgctgtacgtccagtacggcacctggttgtggaaggcgctgcatcttgactttggtatctcattcgccagccaacgcccggtactggacgatatgctgaacttcctgcccgccacgctggaacttgcaggtgcggcgctggtattaattctgctcacttccgtaccgctcggtatctgggcggcgcgccatcgcgaccgtctgccggatttcgccgtacgtttcatcgcgtttcttggcgtgtcgatgcctaacttctggctggcgtttttactggtgatggcgttttcggtgtatctgcaatggctacccgcgatgggttacggcggctggcagcacatcattttgcctgcggtttccattgcctttatgtcgctggcgattaacgcgcgtttactgcgcgccagtatgctggacgtcgccggtcagcgtcacgtcacctgggcgcgtctgcgcggcctgaacgacaaacagaccgaacgtcgccacatcctgcgcaatgcctcgctgccgatgatcaccgccgtggggatgcatatcggcgaactgattggcgggacgatgattatcgaaaacatctttgcctggccgggcgtcgggcgctatgcggtgtcggcgatttttaaccgtgactatccggtgatccagtgctttacgctgatgatggtggtggtttttgtggtctgtaatttgattgtcgatttgctcaacgccgcgctggacccgcgcattcgtcgtcatgaaggagcgcacgcgtgaactttttcctctcttcccgctggtcggtacgcctggcgctgatcattatcgccctgctggcgctgattgcgctcaccagccagtggtggctgccgtatgacccacaggcgattgatttgccgtcgcgcctgctttcgccggatgcgcagcactggctgggcaccgatcacttaggtcgcgatattttctcgcggctgatggcagcgacccgcgtgtcgctcggttcggtaatggcctgcctgctgctggtgctgacattagggctggttattggcggcagcgccgggttgattggcgggcgcgttgatcaggccaccatgcgcgtcgccgatatgtttatgaccttcccgacctcgattctgtcgttctttatggttggcgtgctcggcaccgggctgaccaacgtaattatcgccatcgccctgtcgcactgggcgtggtatgcacgcatggtgcgcagcctggtgatttcactacgccaacgcgagtttgtgctggcgtcacggctttccggtgcgggccatgtgcgggtgtttgtcgatcatctggcaggcgcggtgatcccttcgctgctggtgctggcaacgctggatatcggccatatgatgctgcacgtcgcggggatgtctttccttggcctcggtgtgaccgcgccgaccgccgaatggggcgtgatgattaacgacgcgcgccagtatatctggacccagccgctgcaaatgttctggccggggctggcgctgtttatcagcgtgatggcctttaacctggtgggtgacgcactgcgcgatcatctggaccctcatctggtgacggagcacgcacactaatgccgcaacagattgaactacgtaatatcgcgctacaggccgcgcagccgctggtacacggtgtatcgttaaccctgcaacgcgggcgcgtgctggcgttagtcggcggtagcggcagcgggaaatcattaacctgcgccgcaacgctgggcattttgcccgctggcgttcgccagacggcgggggaaattttagccgatggcaaaccggtttcgccttgcgccctgcgcggcatcaaaattgccaccatcatgcagaacccgcgcagcgcctttaatccactgcacaccatgcacacccacgcgcgggaaacctgcctggcgttagggaaacccgccgatgacgctacgcttaccgctgccatagaagcggtggggctggaaaacgccgcgcgcgtgctgaagctgtacccgttcgagatgagcggcggcatgttgcagcgcatgatgattgcgatggcggtgctgtgtgaatcaccgtttatcatcgccgatgaaccgaccaccgaccttgacgtggtagcacaggcgcgcatcctcgatctgctggaaagcattatgcaaaaacaagcgccgggaatgctgctggtgacccatgatatgggcgttgtggcgcgtctggcggatgacgtggcggtgatgtctgacggtaagattgtcgaacagggcgatgtagaaacgctgtttaacgcccccaaacatacagtgacgcgcagcctggtttccgctcatctcgccctctacggtatggagctggcatcatgactttacttaacatctccggcctttcccatcactatgcgcacggtggatttaacggaaaacatcaacatcaggcggtgctgaataacgtttccctgaccctgaaaagcggcgaaaccgtcgccctgctggggcgcagcggctgcgggaaaagtaccctcgcgcggttgctggtgggtttagaatcgcccgcgcaggggaatattagctggcgtggcgaaccgctggcgaaactcaatcgcgcccagcgtaaagcgttccgccgcgatattcagatggtatttcaggactccatcagcgccgtgaatccgcgcaaaaccgtgcgcgagatcctgcgtgaaccgatgcgccacctgctatcactgaaaaaatccgaacaactggcgcgcgccagcgaaatgctgaaggcggtcgatctcgatgacagcgttctcgacaaacgcccaccgcagttaagcggcggccagctccagcgcgtctgcctggctcgcgcgctggcggtcgaaccgaaactactgattctggatgaagccgtttctaaccttgatctcgtgttacaggcgggtgtcattcgcctgctgaaaaagctacaacaacagtttggcaccgcctgcctgttcatcacccacgacttacgcctggtagaacgcttttgccagcgggtaatggttatggacaacggacaaatcgtcgaaacccaggtggtgggagagaaattaaccttttcctctgacgccggacgtgtgctacaaaacgcggtattacccgcattccccgtgcgccgtcgcaccacagaaaaggtttaacgcaaatgcaacgagtcaccatcacgcttgatgacgatttactggagacgctggacagcctgagccagcgtcgtggttataacaaccgttccgaagctatccgcgacattctgcgtagcgccctggcgcaagaggccacccagcagcacggcacgcaaggtttcgcggtgctgtcgtatgtgtatgaacacgaaaaacgcgacttagccagccgcattgtctccacccagcatcatcaccacgacctctccgtcgccacgctgcatgtgcacatcaaccacgacgactgtctggaaatcgccgtgttgaaaggtgacatgggtgacgtgcagcattttgccgatgacgttatcgcccagcgcggcgtgcggcacgggcatttgcagtgcttgccgaaggaagattgagtctattattgggtcctttggtgaacgatcaacaaagggccactagcacacctgattcctctctaaataccctatccgaaccttctcttttgtaacgttctaaatatattcctaaaaatcttcaattcattgtgaccacaagtttttcttcgctttttcgtatgaagatactgtcattaaaataatagaaaaggattttacgatgagcggaaaaccggcggcgcgtcagggtgacatgacgcagtatggcggtagcattgttcagggttcagccggggtacgtattggtgcccccaccggcgtggcctgttcggtgtgccccggcggagtgacgtccggccatccggtcaatcccctgctcggtgcaaaggtccttcccggtgaaaccgacatcgccctgcccggcccgctgccgttcatcctctcccgcacctacagcagttaccggacaaaaacgcccgcgccggtggggagcctcggccccggctggaaaatgcctgcggatatccgcttacagctgcgcgataacacactgatactcagtgataacggcggcagaagcctgtattttgagcacctgtttcccggtgaggacggttacagccgcagcgagtcactgtggctggtgcgcggcggcgtggcgaaactggatgaaggtcaccggctggccgcactctggcaggcgctgccggaagaactccgcttaagtccgcatcgttatctggcgacaaacagtccgcaggggccgtggtggctgctcggttggtgtgagcgggtgccggaagcggatgaggtgctgcctgcgccgctgccgccgtaccgggtactgaccgggctggtggaccgcttcgggcgcacacagacgttccaccgcgaagccgccggtgaattcagcggcgaaatcaccggcgtgacggatggtgcctggcgtcacttccggctggtactgaccacgcaggcgcagcgggcagaagaagcccggcagcaggccatttccggcgggacggaaccgtccgcttttcctgataccctgccgggttacaccgaatatggccgggacaacggcatccgtctgtctgccgtgtggctgacgcacgacccggaatacccggagaatttacctgccgcgccgctggtgcgctatggctggacgccacgcggcgaactggcggtggtgtatgaccgtagtggcaaacaggtgcgcagctttacttacgatgataaataccggggccggatggtggcgcaccgtcacacgggccggccggaaatccgttaccgttacgacagcgacgggcgggtgacagaacagctaaacccggcaggcttaagctacacgtatcagtatgagaaagaccgcatcaccatcaccgacagcctggaccgccgtgaagtgctgcacacgcagggcgaagccgggctgaagcgggtggtgaaaaaggaacacgcggacggcagcgtcacgcagagtcagtttgacgccgtgggcaggctcagggcacagacggatgccgcaggcaggacaacagagtacagcccggatgtggtgacgggcctcatcacgcgcataaccacgccggatggcagggcatcggcgttttactataaccaccacaaccagttaacgtcagccaccgggcctgacgggctggaattgcgccgggaatatgatgaattgggccgtctgattcaggaaactgcccctgacggcgatatcacccgctaccgttatgataatccacacagtgacttaccctgcgcaacggaagatgccaccggcagccggaaaaccatgacgtggagccgttacggtcagttgctgagcttcaccgactgttccggttatgtaacccgttatgaccatgaccgcttcgggcagatgacggcggtgcaccgcgaggaagggctgagtcagtaccgcgcatacgacagccgtggacagttaattgccgtgaaagacacgcagggccatgaaacgcggtatgaatacaacatcgccggtgacctgaccgccgtcattgccccggacggcagcagaaacgggacacagtacgatgcgtggggaaaggccgtccgtaccacgcagggcgggctgacgcgcagtatggaatacgatgctgccggacgggtcatccgcctgaccagtgaaaacggcagccacaccaccttccgttacgatgtacttgaccggctgatacaggaaaccggctttgacggccgcacacagcgttatcaccacgacctgaccggcaaacttatccgcagcgaggatgagggtctggtcacccactggcactatgacgaagcagaccgcctcacgcaccgcaccgtgaagggtgaaaccgcagagcggtggcagtatgacgaacgtggctggctgacagacatcagccatatcagcgaagggcaccgggtggcggtgcattacaggtatgatgagaaaggccggctgaccggtgagcgtcagacggtgcatcacccgcagacggaagcactgctctggcagcatgagaccagacatgcgtacaacgcgcaggggctggcgaaccgctgtataccggacagcctgcccgccgtggaatggctgacctacggcagcggttacctggcaggcatgaaactcggcgacacaccgctggtggagtacacccgcgaccgcctgcaccgggaaacgctgcgcagcttcggccgttatgaactcaccaccgcttatacccctgccgggcagttacagagccagcacctgaacagcctgctgtctgaccgcgattacacctggaacgacaacggcgaactcatccgcatcagcagcccgcgccagacccggagttacagctacagcaccaccggcaggctgaccggcgttcacaccaccgcagcgaatctggatatccgcatcccgtatgccacagacccggcaggtaaccgcctgcccgacccggagctgcacccggacagcaccctcagcatgtggccggataaccgtatcgcccgtgacgcgcactatctttaccggtatgaccgtcacggcaggctgacagagaaaaccgacctcatcccggaaggggttatccgcacggatgatgagcggactcaccggtaccattacgacagtcagcaccggctggtgcactacacgcggacacaatatgaagagccgctggtcgaaagtcgctatctttacgacccgctgggccgcagggtggcaaaacgggtgtggcggcgtgaacgggacctgacgggctggatgtcgctgtcacggaaaccgcaagtgacctggtacggctgggacggcgaccggctgaccacgatacagaacgacaggagccgcatccagacgatttatcagccggggagcttcacgccactcatcagggtcgaaactgccaccggtgagctggcgaaaacgcagcgccgcagcctggcggatgcccttcagcagtccggcggcgaagacggtggcagtgtggtgttcccgccggtgctggtgcagatgctcgaccggctggaaagtgaaatcctggctgaccgggtgagtgaggaaagccgccgctggctggcatcgtgcggcctgaccgtggagcagatgaaaaaccagatggacccggtgtacacgccggcgcgaaaaatccacctgtaccactgcgaccatcgcggcctgccgctggcgctcatcagcacggaaggggcaacagcgtggtgcgcagaatatgatgaatggggcaacctgctgaatgaagagaacccgcatcagctgcagcagcttatccggctgccggggcagcagtatgatgaggagtccggcctgtattacaaccgccaccgctattatgacccgctgcaggggcgatatatcactcaggatccgattggactgaaggggggatggaacctgtatggatatcaattgaatccgatatcagacatcgaccccctgggtttatctatgtgggaggatgcaaaatcgggggcatgtactaatggtctttgcggcacactatccgctatgataggtccagataaatttgattctatagatagcaccgcatatgacgccttaaataaaataaatagccaatctatttgcgaagataaagagttcgctggtttaatatgtaaggataatagtggcagatatttctcaacagcacctaaccgaggagaaagaaaaggatcatatccattcaatagcccttgccctaatggtactgagaaagtatcagcttatcatactcatggtgcagatagtcatggagaatattgggacgaaatattttcaggtaaagatgagaaaatagttaaaagtaaagataacaatatcaagtcattttatttaggtacgcccagtggtaattttaaagcaatagataaccacgggaaggaaataacaaacagaaaaggattacctaatgtctgcagagttcatggtaatatgtaaaaaaatattgtttaggaactgtgtcattgtatctttgtttgtttttacatacaacacatgggcgcagtgtaataataatattaaaataatgcgcaagtatgaaagtgaaggtaaatataccgttagaaatttggttaaaaataaagctatagcattggaattagctgagatatatgttaagaatcgttatggacaggatgccgcagaagaagaaaaaccatacgaaatcactgagttaacaacaagttgggttgttgaaggtaccattcactcagaccaaattgctggtggggtttttattatagaaataggcaaaaatgatgggagaattctgaattttggccacggaaaataagtatgtaaggataatcaaacatcgtgtgcgctgatggcagagtaggtggaggactccagacagtcaaacgatagaaaaagatagcctttatggaggttcctgcaatgtcaaatacataccagaaaagaaaggcaagtaaagagtatggtttatataataaatgtaagaaactaaatgatgatgaattatttcgcttacttgatgatcgcaattccttgaaaaggatttcatctgccagagtattacagttaagaggggggcaagacgctgttagattggcaattgaattctgcactgacaaaaattatatccgtagagatatcggagcatttatactcgggcaaatataaatttgcaaaaaatgcgaagataatgtttttaatattttgaacaatatggcattgaatgataagagtgcttgcgttcgagctacggcaatcgagtcaacggccagggaaagatcatcaaaagttcactttttgcactaaataattcgcattttatgtttaaaaattgagatattccttattacctgaagctgttttttattgcttatacatgatcaaatactccttacctaattaaggagaacaaaatggaacttaaaaaattgatggaacatatttctattatccccgattacagacaaacctggaaagtggaacataaattatcggatattctactgttgactatttgtgccgttatttctggtgcagaaggttgggaagatatagaggattttggggaaacacatctcgattttttgaagcaatatggtgattttgaaaatggtattcctgttcacgataccattgccagagttgtatcctgtatcagtcctgcaaaatttcacgagtgctttattaactggatgcgtgactgccattcttcagatgataaagacgtcattgcaattgatggaaaaacgctccggcactcttatgacaagagtcgccgcaggggagcgattcatgtcattagtgcgttctcaacaatgcacagtctggtcatcggacagatcaagacggatgagaaatctaatgagattacagctatcccagaacttcttaacatgctggatattaaaggaaaaatcatcacaactgatgcgatgggttgccagaaagatattgcagagaagatacaaaaacagggaggtgattatttattcgcggtaaaaggaacccaggggcggctaaataaagcctttgaggaaaaatttccgctgaaagaattaaataatccagagcatgacagttacgcaatcagtgaaaagagtcacggcagagaagaaatccgtcttcatattgtttgcgatgtccctgatgaacttattgatttcacgtttgaatggaaagggctgaagaaattatgcgtggcagtctcctttcggtccataatagcagaacaaaagaaagagccagaaatgacggtcagatattatatcagttctgctgatttaaccgctgagaaattcgccacagcgatccgaaatcactggcacgtggagaataagctgcactggcgtctggacgtggtaatgaatgaagacgactgcaaaataagaagaggaaatgcagcagaattattttcagggatacggcacattgctattaatattttgacgaatgataaggtattcaaggcagggttaagacgtaagatgcgaaaagcagccatggacagaaactatctggcgtcagtccttgcggggagcgggctttcgtaatcttgccctgaatacaggactgagtatcaaaaagccggttaactgaaactgtccaggttttgggggtcagttcataaacgccttatccggcctaaaaacaactaaaattcaataaattgcaccgatgcgtagtccctataagcttacgcatcgggcaattgtatttacgccattgtcccaatcgtcttcctgaatcgcagcagcgcaatggtgaaaaatgcgccgccaattgccatcagcgtcagaaactgcggccagacgatttcgaatccggcaccccggtagaggatggcctgcgcgaggctaacaaagtgtgtcgtcggcatggtcagcataatgtcctgcaccatctgcggcatactttcgcgcggcgtggaaccaccggaaagcatttgcagcggcagcagcaccagaatcaccagcagccccagttgcggcattgaacgcgctatcgtccccataaaaatgccgattgacgtggtggcaaacagactgagcgccacgcccagcataaacagcgggatcgagccttcaatcggtacgcccagtacacctttcaccatcagcaccagcgataatcccgataccaccagcaccaccagccccatcgaccagatcttcgccatcatgatctcaaacggcgttatcggcatcaccagtaagtgttccaccgtgccgtgttcacgctcgcggatcagcgccgatccggtcaatacaatcgccagcatggtaatgttgttgatgatcgccatcaccccgccaaaccacgcgggatcgaggttcgggttaaagcgcatccgggtttccagcgataccaacggttcgctgttatcacggtagcgcgcgacaaagctgttcacttcaccgttgataatattctggatatacccattgccggtaaatgcctggctcatgcgcgtggcatcgacgttcacctgaatatccggctggcgtccggcgaggacatcacgctgaaaattaggcggaatatttatcgcgaaggtatagcgtccggcgtccagtccggcatccatctcatcggcggtgatcatctccggtggcaaaaaccacggacgatagaagctgttaacgatccggttcgataactgcgattgatccatatcggcaatggcgatcggcgcgaggttcaacgatcctggcgtaacggtcgctgacgaatacaccgacaccgtaaacgagaagacaatcagcgtcagcatcgctttatcaccgagcagactgcgcaactctttgatacccagattaaaaatattgcgtaaatggcgcatcatccctcctgttttttcagcagcaggatacttaagcccatcaccagcgggatggctatcagtaacgggataaaaagttgccacaaatcagtcagatccagcgctttcgagaacgtcccgcgggcgatagtcagaaaatgactggtcgggtaaacctcgccgatccaacgtccaggcccttccagcgaagctaccggatcgatcatcccggaaaactgtgtcgccgggatcaacgtgataatcgccgttccgaaaatggcggcaatctggcttttcataaaggtggagatcagcagccccattccggtggcaatgatgatatacagcagcgccgccagggtgagcgtcaggaaactgcctttatgcggtacgccaaacacaaacaccgacaggccgcagagcaggaaaaagttcagcatccccagcgcgatgtatggcaactgtttaccaagcaaaaattcactacgcgtggtgggggtcacgtaaaggttgataatcgacccaagctctttttcccgcaccacgctaagggcgcttagcattgacgggatcatcatcagcagaagcgggatcaccgccggaacaatcgctggcaggctttttacgtccgggttatagcgatagcgcgtctcaatattcatcagcccgctttggctggcgggtgtcgattgtcggctcgccacatcctgtaaccagctctggtgcatggcctgcacgtaaccttttaccgtttcagcacggctcggcatcgctccgtcgatccagacgccgagttccacaggcgtaccacgcgcgatatcgcgcccgaaattgggcgggatctcaatcgccaccgtgatatcgcccgcacgcatccgacgatcaagctcgtcataactggtgagcggcggctgttcgataaagtaacgggaaccggagaggttgagtgtccacgcctggctactgacggtctggtcgcggtcgagcaccgcaaagcgcaggttttccacatccatactgatgccgtaacccattatcagcatcaggatcaccgttcccatcagcgccagcgtcgaacgtactggatcgcgtcgcagttccagcgcttcgcggcggctgtagctaaacagacggcgcaggctaaatccctgacgcggcgcgtgggtggtgtcgtgtaccacgggcggcgcttcggcttcgttgctctgccctgccgcttcctgcaaataggcgataaatgcctcttccagactggcggctccgcgtttctcaaccagttcctgcggtgtaccgctggcaagcacttttccggcgtgcatcagtgagatgcggtcgcaacgttccgcttcgttcataaagtgggtggagatgaagatagtcactttgtcctggcgcgagagatcgaccatcaactgccagaacatatccctcgccaccggatcgacaccagaagtaggctcatcgaggattaacatctccgggcgatgaatcaccgccaccgccagcgaaagccgctggcgaatgccgagcggcaatgactccggcagaatatcttcaacgtcgttgagcttaaaacgctcgctcatttcagccactcttgcgggaatttccgcttccgggatgtgaaacaaacgggcatgtaactcaaggttttgccgcacggtgagttcgttatagagcgaaaacgcctgcgacatatagcccacccgacggcgggtatcgatatcttttggatcaaccggttgcccgaacagccacgcctcaccttcgctggcgggcagcagtccggtgagcattttcatggtggtggatttaccgcagccgttcgaaccaagaaaaccaaaaatctccccgcgtggaatgcggaaattaacgtgatcaacggcaacgaaggaaccaaaacgcatggtcagatcgcgcgcttcgatggcaatctctgcgttttcaggttgatacggtgggatcactaccgcctgatgcgcctggcgttgcgcttgcggtaacagatttataaatgcttcttccagcgtagtttgcgtttgctgccgtagctcttcggcgctgccagttgccagcacttctccggcattcatcgctaccagccagtcgaagcgttcggcctcttccatataggcggtggcgaccagcacgctcatattgctctgccgctggcgaatactgtcgatcagatcccagaactgggagcgggagagcgggtcaacccccgttgttggctcatcaaggatcaacagttccgggtcgtggattaacgcgcagcacagcccaagtttttgcttcatcccgccggagagtttccctgccggacgatcgcgaaacggtgctaacccggtgctggtcagcagctcattgattcgcacttcccgctccgctttgtcgtgaccgaacaggcgagcgaaaaaatcgacgttttcatacaccgacaaggtgtggtagaggtttttgcccagcccctgcggcatccaggcgatgcgcgggcagacgtcgcggcgatgcttcgggtcgcgcatatcgccgcccagcaccatcacattgccctgttcaatgacgcgggcaccggaaatcaacgacaacaagctcgacttcccgacgccgtccgggccaatcagcccgaccatacagcgggccggaatatcgagagtgatattgttcagcgcaacggtttttccataatgctggctcacgcccgccagttgcgcgacaggcggacgggaaccagttccagatgcgtcattgcggcaacctcaccacgaggtcgtcaggccacggaagttcttcattcacccgcacccacgctacgcccggcaaaccggttttgacatattccagatgctgctggagtaattccggtgggatacgcgctttgacgcggaacatcagtttcagccgttcatcgctggtttcgacggtttttggcgtgaactgggcgacactggcgacaaaactgatggttgcaggaatacgcagatctggcgcggcatcgaggatcagccgggcttcaccgcccagtttcagcgtgcccgcctgttcggttggcaggaagaaagtcatatagacgtcgctgagatcgaccatattcagcacccgaccgcctgccgccagcacttcgcctggctcggcaacccgatactgcacgcgtccgtcacgcggggctttcagttcgctgtcatcgatatctgcggcaatgcgccgttcagtggcttgtgccgcttcgacgcgggtttgcgcctgaatgatattggtgcgtgccgcttctatagccgctttagaagccgatacctgagctttcgccgattccagcgcagctcgggcgctctcagcggcggcgcgatcgtcatccagctgttgcgcagaaatagcccctcgttgggccagtgaacgggaacgcgtatgacgttttgctacggagtccagttctgcctggcgttgattaaccagcgactgtgcggcacgagtttcgctttgtcgttgctccagcaaagcctgcgcggcagcaacggcgctttgtgcctctttgatttgcgcgatggcttccagtcgctgttcctgcaacacgcgagtatccatcttcgccagcacttcaccttcgcgaacaaacttgccttctttcaccagaatggtgtcgatacgcccggcaattttgctggcaatatccacttccgtcgcttcaatgcgcccattactgacagcaaagccttccggcacacctgccgggcgcaacagccaccacgccacgatagccgccaccgccagtaacccgacaacccaccacgccagatggcgcttactcttatccataatcgacccgccataatccctgtaagcaaacgacgcgtgttacaactgccgccgaacgacgttcagcggattcttccatccgggataagaaggaaacggcaaatacgaccagcgcgcagagcattgagcgccaacggggaaggcttagtgaaaacgggtagtaatgttgtcatcatcagcattcctggccgtaaatgaaacacgcatactcataagtgtgatctataaaactggctgacaaaacggtatccatcctgttggatagcgtttcacgcctgttcagttgcaggaacagagcattcctttttacgttttatcaacagtctcaaccagatagtaacattaatattcatgttgtctatggttcagagctgtaacattgtgcgccttctaatcaaaggcataagtccatttctgtttttttcatgctggtaagacttccagggagtggttatctcaggccctgcaccagggttaatttggcaattatgcatgctgaacattcttccagcatgtttactgtcacgggcgttaagacctaaaactgtccccgtttcgcctatgcgttctcttccaccatttccgttatgtgcaacaacttgatttatacctaacatttgtgaacatgctaatagtgcttcaagtttaggtctgtaatctgtcgaaacagaaaaataacgattaaaggatcgacaagagatagcccggctagttttaaactttttgccattaattatagcatgatgctttttattgataattgccgctaattcgaccggatcgagagcattggtcatttcatcaatagagactgttatcggtcctataatgtaacgttttcgctgatcatcaaaagttatcccatgatgatttgccattattttgtatttggggtcatagaaacatacaggataatcttttatcccagagtaggtatcctcatcgagtggtttcatacgcgtgaagttctgcatatagttaccattgcaattcgtttcatgatttccagctaatacatgaacattttcattgatactcattatgcgttttaacaaatcgatgataaattgatcaccacagatattgctaaatcgatcgccggtttggtcgcccagaaacgtacatggcgtcacagcgtctttattaataactaaataaggctgaagactttctaaaataatgtctcttctgttcaggatactgattattgtattaacattagtgttaagttgctcattaaagttctcccttagcaatacgttgagaacttcatcttctatattaagcaactggctaaggaaattttctccttcagccatgattcccaaatgtcccgttgcgaaaagcgcgaacaaaactgcaccgactgagccatcggtatcaccaaaataggttggtctggtacttgtgggatcaacgggtaaacaattggagaaatagattctgtcagcgaactggggttttatcattgtttcgaatttaatatcagatacattatattgcgatattttccagttccagatgggtttgtacgactcagtaactgcaacatcattagcattatcatttactgtcatattattaagtaaataaacaatactgcaccaattaatatcggtattatcaagagagcaaccgtaatttttgctattaattgtcacaataaactgataattattattcctacgtagaatatgagcacgcatgcccgatagcatactatatttttctgaatgatccgtttgtatggtaaatgaaattttgtcatcttgaatagattgttggaaccgttctatttgccaatcatctattttttccacaacctcaccgagcattgtcctggcaatacttgatatatcatcacctataccatttgcaatatacccaaacagttctttagtgaagttggtaacatgctcttgcaccatatcatttgttgcgattgtcgttgtactgtcgttagtgcctgccacagttccaattttcatattttacctcatattatttaccgcgaggaatacatagttaacattttatcttatgacatacacctcatgttcgatgggaaaataattatattttgcacaaatcattcagcctcaaagcataatatgaaatttcttatctcatagcagagaaagtccctaaagattgtagaggcgtcatcagaacatgcctctacaatcgattaagaaaacctatgaaatactggcaggattaaaaagacataccaccgtattcatggagttttaatgtagttgaaaacaactaagccctgaggaataaattattttattatttttatcacgtgcttccttcagggaatttagccccataataccattatcaaattgttgattatgatctaccccgggcccatgatgcccatatttttgtctaatgtatttgctggggtcttcacctttgagtgtctccccacatatgaagatacgttcacgtgctggtctgaaatcagtagtgttatcaaaataattagcatatacaggtgtgggtttcaaagtattgcttcggattagatggaatagaggatcatccatgtgttctttatgttttttattaaaaatattggctaattcctcaggatcagtaggatttttcatctgattaaatggaacctgcaaagcaccgagacaataacattttttcttcatctcttattattccgtgatgactggttaaaacttgcctttctgagtcataattacaaacatcgagcgttttaattaagttatacgtatcaccggcagagagtttatgatttgctagtcgtgcagtatagttaccattaaaattgatttcatgatttccagccagaacgacgacatttttattaatacggctatctttattaccctccatatttcgcatagaatttagcaaagtaaggatatatttatcaccaaaaatagtactaaatctatcgcctgtatgatccccaaggaagatacaaggggttatcgcatcgtcctttaaaaaaacatgttgatgcaactcattcaagatcatgtctctcgtatttaataaatcgtagagcactttattatttttatgtttgtatgcagatgaagccatctcttcgtgttttaataattcacataataaactccaacccttttccctgatgcctatatgccctgaaacgagcaatgcataaagtacagcgcctactcttccatctgtatcgccaaaataagccgtgttggcattttgtgggttaatcacaccacactgtttatagaagtctatttttgaaaacacagatttaacatagctatcaaacttttccttagtaaacgtctctttagagacatcccaacgccagtcaggtttgaaattaccactaagaagagtaaagaaatttctcgctatgatagaaagcccatcaactttataaattatatctgatttatctccagaggaattaataaaataataaccgcccttacactcaacagtaacggtaatgggagacgataattttaacacatggttattgtctggtataattgtaaagataaacgtatcagtagtattgtcggcgaatctattatattcttgaatatctatagaaggttcactattataaaaccatactttctccatctggtgactacgatcatttaccttccagtgaccatgttgcaggaaatagatgatatgcaggccaaaatcgttatctatttgcgaatcattatccagtttatcaaattcaactatctttgcacgatgtgttttatcaaccttgccatggtgttgatgactgttaactttatctgaatgcttatcttgatggcttgaagagatgtttctaatctgattgtcaattgctttcataaataacctgtgatatttttgaattgtttgtaacaaaataaatgatacttgtctgaaaaacagatttacgacgatataaaataataatacttatatgttcgctgattttaagcaccgagactatccggtcttttaccaaataatgaagaataatccctccctggaagataattgtaaaaaacaacagcataagaattaatcttaggataaatttttatttatcatggccttttgaacgctgaaaagtagcgctctgcaaagtaaaccccgctatagttatgctatgcatttgtctttaatgatatctcgtcattatattaacaggatgaaattatcattaatgcatatttcaatattagcagggatacctgaggagtttaaagtgaacatatatatcgggtggcttttcaaattaatccctttgattatgggcttaatttgtatcgcgttaggtggctttgtgctggaaagttcagggcaaagcgagtatttcgtcgcgggtcatgtgctgatttctctggcggccatatgcctggcattattcactaccgcatttattatcatttcgcagctcacgcgcggcgttaatacgttttacaatacattgttccccattattggctatgcggggtcaattatcaccatgatatggggttgggcactgttagcaggcaatgatgtgatggcagacgagtttgtcgccggccatgttattttcggcgttggtatgattgccgcctgtgtatcgacggtggcagcgtcatccggtcactttctgctcattcccaaaaatgcagcggggagcaagagcgacggaacaccggtacaggcttattcttcattaatcggtaactgcctcattgccgttcccgttttactcaccctgctcggtttcatttggtctattacgctgttacgtagtgctgacataactccgcattatgtcgcgggtcacgtattgcttgggttaaccgcaatctgtgcctgtctaattggccttgttgccacaattgtccatcaaacacgtaatacgttttcaactaaagaacactggctgtggtgttattgggttatttttctcggctcaatcacggtactgcaggggatatacgtcttagtcagttccgatgcaagcgcccgactggctcccggcattattcttatttgcctcggaatgatctgttacagcatattctcaaaagtctggctactggcactggtatggagacgtacctgttcgttagccaacagaataccgatgattcccgtcttcacctgcctgttttgccttttcctggcatcgtttcttgcggaaatggcgcagaccgacatgggatattttattccttcgcgagttctggtcggtttgggagcggtatgctttacgttgttctcaatcgtttcaatattagaagcgggttctgctaaaaaataattgcaacgtaccggataaaaccagcgttgaccatttgcgtaacgctggtttttcttaggcatcatgaaataacgcagcattaatgcatagtggttaagtataaaaaacagcaaagttactgtttttttcaacctgttcatatttcataaagatctggccactgagtgagttttcaatcacctttccatccaccttatattaagcatggagggtttcagttcacgggctcattagaaaataatcacaagataaccactatcaaaattagctcatttttaatgcgactctaataattttcatctttaggaaataggtcaggacgactttgctgcaatcaaatcctgcgcacaagcccacgcactcgaccacgcccactggaagttatagccccccagccagccggtgacgtccatcacttcgccgatgaagtacagcccaggcactttgcgcgcttccatcgtccgtgaagagagttcgttggtgtccacgccgccgagcgtcacttcggcagtgcgatacttcagtgccgttgggttgtacgcgccagtcggtcaatgtgctaatcagtgcctgttggtcacgcacgttgagctgttttagcgaaacatccgggatttgcccgagttgctgtaagcgttcaaccaaccgcttcggtagatgaaccgccagtgtgtttttcaggctttgattcggatgtgcgttacgctgctcattcaggaaggtttcgaggtccacatccggtagcagattgatgctgacaaattcccccggttgccagtagcttgaaatctgcaacaccgccggtccagacaagccgcggtgggtgaagagtaagttctcacggaaaacggtgccgttttcagcggtaatcacggaaggcaccgccacgcccgccagcacctgtaactcttcgagcaacggtttatgcagagtgaatggcaccagacccgcgcgggtcggcagcacgttgaggccaaattgttcggcaatcttataaccaaacggcgacgcgcccagccccggcattgacagcccaccagtcgcgatgaccagcttttcgcaaccgacagtcatgccgttcagatcaagcgtgaagcctgtttcatccttcgccacactcagcacttcgctacgcaatctgaaggtcacattgcccttctcgcactcatccaccagcatgtcgacaatctgctgcgcggagtcatcgcagaagagttgccctaacgttttctcgtgccaggcgatgccgtgtttattgaccagatcaatgaaatcccactgggtaaaacgtgcgagtgcagacttacaaaaatgcggattctggctcagataagcgcctggttcgacataaaggttggtaaagttgcagcgcccaccgccagacataaggattttgcgccctggttttttaccattatcgatcagcagaacccggcgtcctgcctgacctgccagcgcagaacagaacatacccgccgcaccagcgcctataataatggcatcaaacctttccacgttgcgctcctcttagaaaaaacgggcgtgaattgtaaagattcctcagtggtcgcaccagcatcaatattactaaaaggaagtatttgcctgaattatataagataattattttttgagtgaaatccatacagggggcaaatcaaaaaaagtctatatttcactttgcccgcgccgcgaaagtcactgataatgcgccgcgttcatgtcctcaaaatggcgtaacgtcctatgctacatttgtttgctggcctggatttgcataccgggctgttattattgcttgcactggcttttgtgctgttctacgaagccatcaatggtttccatgacacagccaacgccgtggcaaccgttatctatacccgcgcgatgcgttctcagctcgccgtggttatggcggcggtattcaactttttgggtgttttgctgggtggtctgagtgttgcctatgccattgtgcatatgctgccgacggatctgctgcttaatatgggatcgtctcatggccttgccatggtgttctctatgttgctggcggcgattatctggaacctgggtacctggtactttggtttacctgcatccagctctcatacgctgattggcgcgatcatcgggattggtttaaccaatgcgttgatgaccgggacgtcagtggtggatgcactcaatatcccgaaagtattaagtattttcggttctctgatcgtttcccctattgtcggcctggtgtttgctggcggtctgattttcttgctgcgtcgctactggagcggcaccaagaaacgcgcccgtatccacctgaccccagcggagcgtgaaaagaaagacggcaagaaaaagccgccgttctggacgcgtattgcgctgatcctttccgctatcggcgtggcgttttcgcacggcgcgaacgatggtcagaaaggcattggtctggttatgttggtattgattggcgtcgcgccagcaggcttcgtggtgaacatgaatgccactggctacgaaatcacccgtacccgtgatgccatcaacaacgtcgaagcttactttgagcagcatcctgcgctgctcaaacaggctaccggtgctgatcagttagtaccggctccggaagctggcgcaacgcaacctgcggagttccactgccatccgtcgaataccattaacgcgctcaaccgcctgaaaggtatgttgaccaccgatgtggaaagctacgacaagctgtcgcttgatcaacgtagccagatgcgccgcattatgctgtgcgtttctgacactatcgacaaagtggtgaagatgcctggcgtgagtgctgacgatcagcgcctgttgaagaaactgaagtccgacatgcttagcaccatcgagtatgcaccggtgtggatcatcatggcggtcgcgctggcgttaggtatcggtacgatgattggctggcgccgtgtggcaacgactatcggtgagaaaatcggtaagaaaggcatgacctacgctcaggggatgtctgcccagatgacggcggcagtgtctatcggcctggcgagttataccgggatgccggtttccactactcacgtactctcctcttctgtcgcggggacgatggtggtagatggtggcggcttacagcgtaaaaccgtgaccagcattctgatggcctgggtgtttacccttccggctgcggtactgctttccggcgggctgtactggctctccttgcagttcctgtaatcgtacgcaccaaaacgagcgggtcagctggcccgcttcagattgtgacatagtgcgctttgttcatgccggatgcggcgtgaacgccttatccggcctacaaaaacatgcaaattcaatagattgcagagattatgtaggcctgataagcgtagcgcatcaggcaattttgcgtttgtaatcagtctcgagcgggtcagtttactggcccgctttttttatgcgttattattgctgaagtgcttaatgccaaatcatcaatgcaatcaggctgaccaccaccagaccacacaatgcgctggtcagaataaactgccgacgcacccgctcacagcggcgaataaattcatcatcgtgatgatcgcgataacgttgggcatagatataccaaacgagacgcacctgtttgttgggttggccatgtgaggtaaaaaagccccctccatcaacatattgatagagcaatggatcgcagttacgcagtaccactaacaacgcgcgtagtgatgagaaatagcgcgccatgttaacaatgcaaacgacacataaagcccaaaataatgcgacggtgcttatcatacctcctccccggcgacctgcccgcggagttccaccccggggctaccgctcccgatacgctgccaatcagttaacaccaggtcctggagaaaccgcttttgtggtgaccaacatacgagcggctctatagatagtgtaggagatcaggttgttttttttccagaaggttaaccactatcaatatattcatgtcgaaaatttgtttatctaacgagtaagcaaggcggattgacggatcatccgggtcgctataaggtaaggatggtcttaacactgaatctttacggctgggttagccccgcgcacgtagttcgcaggacgcgggtgacgtaacggcacaagaaacgctagctggccagtcatcgacaactttatggaaggagtaacactatggcttataaacacattctcatcgcggtcgacctctccccggaaagcaaagttctggtagagaaagcagtctctatggctcgcccctacaatgcgaaagtttctctgatccacgtagatgtaaactactctgacctatacaccgggcttattgatgtgaatctgggtgatatgcagaaacgcatctctgaagagacacatcatgcactgaccgagctttccactaatgcaggctacccaatcactgaaaccctgagcggcagcggcgacctgggccaggttctggtcgatgcaatcaagaaatacgatatggatttggtggtttgtggtcaccaccaggacttctggagcaaactgatgtcttccgcacgtcagctgatcaacaccgttcacgttgatatgctgattgttccgctgcgcgacgaagaagaataatcttccctctacgacgtgttcctgaacgcccgcatatgcgggcgttttgctttttggcgcgccttgttacctgatcagcgtaaacaccttatctggcctacggtctgcgtacgcaatcaaaatccccagccaatacaacatttaacaccatcatattttccatcattagtgtgatcatctggttattttctgttgtaatagtgtattaatctattcaccgcatcaatattaagaatctctgacagatgtaaactttttcgcgcgttatcccttacgcgttcatacttttcaggatggtattggaaggttaataaatatgaatacaacaacacccatggggatgctgcagcaacctcgcccatttttcatgatcttttttgtcgagttatgggagcgattcggctactacggcgtgcagggcgtactggcggttttcttcgttaaacagcttggattctcgcaagagcaggcttttgtcacttttggtgcttttgctgcgctggtctatggcctcatttccattggcggctatgtcggcgaccacctgctggggaccaaacgcaccattgttcttggagcacttgtgctggcgattggctacttcatgaccggcatgtcgctacttaagcctgacctgattttcatcgccctggggactatcgctgtcggtaacggcctgtttaaagctaacccagccagcttgctttcgaagtgctatccgccgaaagatccgcggcttgatggcgcattcaccctgttctatatgtcgatcaacatcggctcgttgatagcgttatcgctggcccctgtgatcgctgatagattcggttattcagtcacctacaacctgtgcggggcggggttaattatcgcattactggtttacatcgcctgtcgtggaatggtgaaagacattggttctgaacccgacttccggccaatgagcttcagcaaactgttgtacgtgttacttggcagcgtggtgatgatcttcgtatgcgcatggctgatgcacaacgtagaagtcgccaatctggtgctgattgttctctccatcgtcgtcaccatcatcttctttcgtcaggcattcaagctggataaaaccgggcgcaataaaatgtttgtcgcctttgtcctgatgctcgaagcggtggtgttttacattctctacgcccagatgccaacatcgctgaacttctttgccatcaacaacgtgcatcatgaaattctcggtttttccatcaacccggtcagcttccaggcgcttaacccgttctgggtggtactcgccagcccaatactggcaggcatttacacgcatctgggtaacaaaggcaaagacctctcgatgccgatgaaatttactctcggcatgtttatgtgctcactgggctttttgacggcggcagctgcgggaatgtggtttgcggatgcacaagggctgacatcgccatggtttatcgtgctggtgtacttattccagagcttaggtgaactgtttattagcgcccttggcctggcgatgattgctgccctggtgccgcagcatttgatgggctttattctcgggatgtggttcctgacgcaggctgccgcgttcttgctgggcggctatgtggcaacatttaccgcggtgccggacaacattaccgatccgcttgagacgttgcccgtctataccaacgtgtttggtaagattggtctggtcacgctgggcgttgcagtagtgatgctgttgatggtgccgtggctgaaacgcatgattgcgacgccggaaagccattaattattcttgcagaaagcagggtagcgttatcgctaccctgttttagttttacactggcgtacctgcatagatatcaaagcgatgccctttagtgactaccgcgtttggcgtggcgacattcgccagcggtggcgcgtagtccgggcgctttaccaccacgcgtttggtcgccagcaagcgtgcaggctccagtaatccatcggcatcaagatccggtcccaccagcgactgaaagacacgcatctcttttttcactagcgcgcttttctgcttatgcgggaacatcgggtcgagataaaccacctgcgggcgcggggtaatatcagtcagcgccgtcaggctggaggcgtgaattaactgcaaccgctcctgcaaccagccgccgatttccgcatccgcataaccacgcgccaggccgtcgtcgagtagcgcggcaaccactggattacgctccagcatccgcacgcggcagccgactgaagccagtacaaaggcatcgcgcccaagtcctgcagtggcatccaccacatccggcaaataatcgcctttaatgcccaccgctttcgccaccgcctcaccgcgaccaccgccgaatttgcgtcggtgcgccatcgctccgccaacaaaatcaacaaagatgccgccaagttttggctcatcacgcttgcgcaattccagatgttccggcgttaacaccagcgccatcaggttgtcttcatcgtgctccagcccccagcgggccgccagaacagataaggcaccgtctccggtgcctgtttcatcaattaagcagattttcactgaatgatcagcccttaatgccgtaatgctccagcatcgcatccagctgcggttcacgaccacggaagcgtttgaacagatccatcggctcttctgaaccgccacggctcagaatgttgtcgaggaacgactgcccggtttcacggttgaaaatgccctcttcctcaaagcgcgagaaagcatctgccgccagtacgtcagcccacaggtagctgtagtaacctgcggcataaccaccggcgaaaatatggctgaaagcgtgcgggaaacggccccaggacggagatggcaccacggcaaccagtttcttgatttctgccagagtttcgaggatttttgccccctgatccgggcggaactcggcatgaaggcggaaatcaaacaggccgaactccagctgacgcagaataaacagcgccgcctggtagttcttcgccgccagcattttatccagcaactctttcggcagcggttcgccggtttcatagtgaccagagataaacgccagcgcctccggctcccagcaccagttttccataaactgactcggcagttcgaccgcatcccacggcacaccgctgataccggaaacaccagcggtttcgatgcgggtcagcatatggtgcaggccgtgaccgaactcgtggaagagggtgatcacttcgtcgtgagtgaacagcgccggtttaccatttaccgggcggttgaagttacaagtcaaatacgcgaccggtttttgcaaagaaccatcagctttacgcatctggcctacgcagtcatccatccacgccccgccgcgcttgttttcacgggcatacagatcgaggtagaagctaccgcgcagttcgttattttcgtcatacagttcgaagaaacgtacatccggatgccagacatcaacatctttacgctctttagcggtgatgccgtaaatacgcttaaccacttcaaacaggccgttaaccgctttgttttccgggaagtacggacgcagctgttcgtcactgatgctgtagaggtgctgtttttgtttttcgctgtagtaagcgatatcccacggctgcaactcatcgacgccaaattcggctttggcaaaggcacgcaattgcgccagctctttttcgccttgtggacgcgcgcgttttgccagatcggttaagaaatccagcacctgctgcgggttttctgccattttagtggcaagggatttaaaggcgtagttttcaaagcccagcagttgcgccagttcgtgacgcagcgcgaggatctcttccatcaccttgctgttatcccatttaccggcgtttgggccttgatcggaggcgcgggtgctgtaagcgcgatacatctcttcacgcagagcctggttgtcgcagtaggtcattaccggcaagtagcttgggatatccagcgtcagcaaataaccttccagctctttcgcttcggcctgggcttttgccgcagccagcgcgctttctggcatccccgccagctccgcttcgtcggtaacgagtttggtccagcccattgtcgcatcgaggacgttgttgctgtactggttgcccagttcagaaagacgggtcgcaatttcgccgtaacgctgctgtttctctttcggcagacctatgccagagagttcaaagtcgcgcagtgcgttatcaaccgctttcttctgcgccgtgttcagcgtggcgtaatgatcgccatcgcgcaggtcgcgatacgctttatacagcccttcatgttgccctacccaggtgctgtattccgacagcagcggcagggtttgttcgtaggcttcacgcagttccgggctatttttcaccgagttcaggtggctgaccggggagaagatacgccccaacacatcgtccacttccgccagcggctggcagagattttcccaggtgtacggtgccccttgcgctactacgcgctccacgttttcgcggcagtcgttcaatgccttagtcacggctggaacgacatgttccgggagaattttagaaaacggaggcaattcaaagggagtcagtaacggattcgtcattcgcgcagtcctggttaaagaggttaaggaagcgctcaacaggcgctttacataatgtgtgtagcatggggttaagtgtagtgaatttcaatgagaaacgttacgctttcgcggcggcggcctcttttcggtatactgtcctgatacgcttttgtgcgccccgaatacgggccgatttttacttaccggaacacctttacccatgctcagttatcgccacagctttcacgctggcaaccacgccgacgtccttaaacataccgttcagagcctgatcatcgagtcgctgaaagagaaagataaaccgtttctctatctcgacacccacgcaggggccgggcgttatcagttaggcagcgaacatgccgagcgtaccggcgaatatctcgaaggcatcgcccgtatctggcagcaggacgatttgcccgcagaactggaggcgtacatcaatgtggtaaaacacttcaaccgtagcggtcagttgcgttactaccccggttcgccgttgattgctcgcctgctactgcgtgaacaggacagcctgcaactgaccgaactgcacccgagcgattacccgttgttgcgttctgaatttcagaaagatagccgtgcgcgtgtcgaaaaagccgacggtttccagcagcttaaggccaaactgccgccggtttcccgccgtggtttaatccttatcgacccgccgtatgaaatgaaaactgactatcaagcggtggtcagcgggatagcagaaggttacaaacgtttcgccactggtatttacgcactgtggtatccggtggtgctgcgtcagcaaattaagcgcatgatccacgatctggaagcgaccggtattcgcaaaattctgcaaattgaactggcggtactgccagacagcgatcgccgtggcatgaccgcttccggcatgattgtgattaacccgccgtggaaactggaacaacagatgaataacgtgctgccgtggctgcacagcaaactggttccggcaggcaccgggcacgccaccgtaagctggatcgtgccggagtaattgcagccattgctggcacctattacgtctcgcgctacaatcgcggtaatcaacgataaggacactttgtcatgactaaacactatgattacatcgccatcggcggcggcagcggcggtatcgcctccatcaaccgcgcggctatgtacggccagaaatgtgcgctgattgaagccaaagagctgggcggcacctgcgtaaatgttggctgtgtgccgaaaaaagtgatgtggcacgcggcgcaaatccgtgaagcgatccatatgtacggcccggattatggttttgataccactatcaataaattcaactgggaaacgttgatcgccagccgtaccgcctatatcgaccgtattcatacttcctatgaaaacgtgctcggtaaaaataacgttgatgtaatcaaaggctttgcccgcttcgttgatgccaaaacgctggaggtaaacggcgaaaccatcacggccgatcatattctgatcgccacaggcggtcgtccgagccacccggatattccgggcgtggaatacggtattgattctgatggcttcttcgcccttcctgctttgccagagcgcgtggcggttgttggcgcgggttacatcgccgttgagctggcgggcgtgattaacggcctcggcgcgaaaacgcatctgtttgtgcgtaaacatgcgccgctgcgcagcttcgacccgatgatttccgaaacgctggtcgaagtgatgaacgccgaaggcccgcagctgcacaccaacgccatcccgaaagcggtagtgaaaaataccgatggtagcctgacgctggagctggaagatggtcgcagtgaaacggtggattgcctgatttgggcgattggtcgcgagcctgccaatgacaacatcaacctggaagccgctggcgttaaaactaacgaaaaaggctatatcgtcgtcgataaatatcaaaacaccaatattgaaggtatttacgcggtgggcgataacacgggtgcagtggagctgacaccggtggcagttgcagcgggtcgccgtctctctgaacgcctgtttaataacaagccggatgagcatctggattacagcaacattccgaccgtggtcttcagccatccgccgattggtactgttggtttaacggaaccgcaggcgcgcgagcagtatggcgacgatcaggtgaaagtgtataaatcctctttcaccgcgatgtataccgccgtcaccactcaccgccagccgtgccgcatgaagctggtgtgcgttggatcggaagagaagattgtcggtattcacggcattggctttggtatggacgaaatgttgcagggcttcgcggtggcgctgaagatgggggcaaccaaaaaagacttcgacaataccgtcgccattcacccaacggcggcagaagagttcgtgacaatgcgttaaatgttaaagggctaagagtagtgtgctcttagcccttaattacgtttccgctatcagttcagaagctgaagcagaaagcggatcagttccagcagcgcaattaacgcccctagaacgatgattgctttatcaatcacccgttttctccatgcgatggagtgagaatgcatccgcttactcatccactgcctgtcacggcgcatgtctcattgttagataagaactctctcactccggccagagcatcagttaacggcaccacccgtacttctgaccaggactttgaaagcgtttatgcgcattgccagagtgaaaatgcctcagagctaactggataatcatacagtacatgcaggttataaaaccagcacgtccttgcaatagtttcagtatggtattagcattgatgcgttagatgatggctatctcactccagtcagagccaccaactcagggctggaaagtaaaaaaccgacgcaaagtcggtttttttacatccggattcggacaaggcttaatatgacgatgacccagtgaaagtatataaatcgtcactgcgatatataccgaagtgctccctccgccagctgaagaaatcgctaattcttgcaatgttagccactggctaatagtattgagctgttagataagaactctctcactccagccagagccaccaactcagggctggaaagtaaaaaaccgacgcaaagtcggtttttttacgtcctgattcagacctcctttcaaatgaatagccaactcaaaattcacacctattaccttcctctgcacttacacattcgttaagtcatatatgtttttgacttatccgcttcgaagagagacactacctgcaacaatcaggagcgcaatatgtcatttctgttacccatccaattgttcaaaattcttgctgatgaaacccgtctgggcatcgttttactgctcagcgaactgggagagttatgcgtctgcgatctctgcactgctctcgaccagtcgcagcccaagatctcccgccacctggcattgctgcgtgaaagcgggctattgctggaccgcaagcaaggtaagtgggttcattaccgcttatcaccgcatattccagcatgggcggcgaaaattattgatgaggcctggcgatgtgaacaggaaaaggttcaggcgattgtccgcaacctggctcgacaaaactgttccggggacagtaagaacatttgcagttaaaaatttagctaaacacatatgaattttcagatgtgttttatccgggaggcattatgttactggcaggcgctatctttgtcctgaccatcgtattggttatctggcagccgaaaggtttaggcatcggctggagtgcaacgctcggcgcagtactggcgttagttacgggcgtggtccatccgggtgatattccggtggtgtggaatatcgtctggaacgcgacggctgcgtttatcgccgtcattatcatcagcctgctgctggatgagtccggcttttttgaatgggcggcgctgcacgtctcacgctggggtaatggtcgtggtcgcttgctgtttacctggattgtcctgctcggtgctgccgttgccgccctgtttgccaatgatggcgcggcgcttattttgacaccgattgtcatcgccatgctgctggctttagggttcagtaaaggcactacgctggcgttcgtgatggcggccggattcattgccgataccgccagcctgccgcttattgtctccaacctggtgaatatcgtttccgctgatttctttggcctcggctttcgcgaatacgcctcggtgatggtgccggtggatatcgccgcgattgttgccacgctggtgatgttacatctctattttcgcaaagatattccgcagaactacgatatggcgctgctgaaatctcccgcagaagcgatcaaagatcctgctacgttcaaaactggctgggttgttttactgcttctgctggtgggatttttcgtcctggaaccgctcggcattccggtgagcgccattgcagctgtgggcgcgctgatattatttgtcgtcgctaaacgcggtcatgcgattaatacgggtaaagtcctgcgcggtgccccctggcagattgtcatcttctcgctcggcatgtatctggtggtttatggcctgcgcaatgccggattaacggaatatctttctggcgtactcaacgtgctggcggataacggcctgtgggccgcgacgctcggcaccggattcctcaccgccttcctctcttctattatgaacaatatgccgacggtactggttggcgcgttgtccattgatggcagcacggcatctggcgttatcaaagaagcgatggtttatgccaatgtgattggctgcgatttgggaccgaaaattaccccaattggtagcctggctacgctactctggctgcacgtactttcgcagaagaatatgactatcagctggggatattacttccgtacagggattatcatgaccctgcctgtgctgtttgtgacgctggctgcgctggcgctacgtctctctttcactttgtaatgagatactgatatgagcaacattaccatttatcacaacccggcctgcggcacgtcgcgtaatacgctggagatgatccgcaacagcggcacagaaccgactattatccattatctggaaactccgccaacgcgcgatgaactggtcaaactcattgccgatatggggatttccgtacgcgcgctgctgcgtaaaaacgtcgaaccgtatgaggagctgggccttgcggaagataaatttactgacgatcggttaatcgactttatgcttcagcacccgattctgattaatcgcccgattgtggtgacgccgctgggaactcgcctgtgccgcccttcagaagtggtgctggaaattctgccagatgcgcaaaaaggcgcattctccaaggaagatggcgagaaagtggttgatgaagcgggtaagcgcctgaaataaagcggcgatatcccccccacaggttgttagaaaagtgcgctttatttatgtcggatgcgacgctggcgcgtcttatccgacctacaaagttatgaaaattcgatgaatagtatgttatttgtaggcctgacaggcgtagcgcatcaggcgattttgctatttacacagtactccctgcgtgagattccaattatcgcgtccagcatggtgtatcagtgagctgcttagttatcagcgatacagcgcagtagtttaaagacgtactggattatgatttatcagtggtttacacaacaaattattaaataattataagataccttaacccattttattattacacatctaaaacatcacaaaaaaaatcacttcacacactatcagagaacataataactttttaaaatgagcgcattttgatagttgttaacgatttcctttacgatactatcactaccctttttttacacacaaatattaccgggtggagataaaagggaaatcaaaggtaattatatcaggaagatataacgcattacatttattgtgtgtagaagaaaatccattcctgttctaattatccaatttaaacatcttagcataaaacaaatgatgaataaggaattttatgtcaattgactttaccccaggtataataaatacatatcacggcgatatttataactgcacaacaaataccgataatgctaaaacgccagacacaccgaagtggccttgcgataattgggaagaacaacaacccattaattccacattctctggagaaggatatatctctgatcaatatgatttagcgcaacaccaacttcaacaaattaatgcgtgccacacgaacactacatatacaaatgcagactactcaaaagttgtggctcaacttgtaagtcttattactaacattgaaacgataagttcgacacaacttacgcaacagacacaatcaatacttaatcagattaataacattagatatgaaaaaaacaaaagtgctgaatgtcgaatcattgttatcgctaatcctaaacccgacaaggcaatcataactaaaattagcgtagaagagggaatacccataacattcagtgtccaaaccatgttttcagatactaattttattgctgaacaacgagctgacttaccaactaatataaaagatattcaaagcctgtatcaaaaaatgacgaagttatatattgagcacagtgaaaataaaaacaggatgaaagtctttgccggaaccaactttattgatttcaatatgacaggacagaacctgtccgggttcgttctaaccttgtcaaggttttatttcgaagatctacttaatataaatttcactgacgcaaatttagggaaggtgcgaataagcggggaaattcttctcggctgactcagtcatttcatttcttcatgtttgagccgattttttctcccgtaaatgccttgaatcagcctatttagaccgtttcttcgccatttaaggcgttatccccagtttttagtgagatctctcccactgacgtatcatttggtccgcccgaaacaggttggccagcgtgaataacatcgccagttggttatcgtttttcagcaaccccttgtatctggctttcacgaagccgaactgtcgcttgatgatgcgaaatgggtgctccaccctggcccggatgctggctttcatgtattcgatgttgatggccgttttgttcttgcgtggatgctgtttcaaggttcttaccttgccggggcgctcggcgatcagccagtccacatccacctcggccagctcctcgcgctgtggcgccccttggtagccggcatcggctgagacaaattgctcctctccatgcagcagattacccagctgattgaggtcatgctcgttggccgcggtggtgaccaggctgtgggtcaggccactcttggcatcgacaccaatgtgggccttcatgccaaagtgccactgattgcctttcttggtctgatgcatctccggatcgcgttgctgctctttgttcttggtcgagctgggtgcctcaatgatggtggcatcgaccaaggtgccttgagtcatcatgacgcctgcttcggccagccagcgattgatggtcttgaacaattggcgggccagttgatgctgctccagcaggtggcggaaattcatgatggtggtgcggtccggcaaggcgctatccagggataaccgggcaaacagacgcatggaggcgatttcgtacagagcatcttccatcgcgccatcgctcaggttgtaccaatgctgcatgcagtgaatgcgtagcatggtttccagcggataaggtcgccggccattaccagccttggggtaaaacggctcgatgacttccaccatgttttgccatggcagaatctgctccatgcgggacaagaaaatctcttttctggtctgacggcgcttactgctgaattcactgtcggcgaaggtaagttgatgactcatgatgaaccctgttctatggctccagatgacaaacatgatctcatatcagggacttgttcgcaccttccttaggtgacactatttttttacataaagaacaccctacccccaaattatataaagatggacaatatcttgacaaacaaatcgaaggtttattttcaacattattaaccattaatgacaaccttttacgagcaaaagcggaaattgcttcgacaataattaaatttttagaggccaggataaccaatctttcatacaatgacatattaaaatatcagcaagaattccaaagacaatgttataagcaagttaaagcctttacgacactctcccgatacaataaaattcaaacatgggcagaaatgtctgaatatcaattcgaagtatttcaatacgagacgcttaacccaaaaaaaatgtcacacacgccttatttaaagaggccactgcctaatgaaaaagatataaattatggggtggaaatagaaataccatctggtaaaagaattcgcttatcaaatcattaccagaatataataccataatattgattattagcactttataatcattgaataaaaatagattttatgtacttttaaaacaatgcactatattatggggtgatggatattcatgtcacgccccaaaattaactgagttcacctaaacagaaaggatataaacatcagacaggtttacgttactatcaggcatatcacctcagaatcagatgaaaactataaagaaatatctattatggttttaatatttgttgataaggatagtaacatgaacatgacaaaaggtgcactcatcctcagcctttcatttttgcttgccgcatgtagttcaattccgcaaaatatcaaaggcaataaccaacctgatattcaaaaaagttttgttgctgttcataaccagccggggttatatgttggtcaacaagcgcgctttggtgggaaggttatcaacgttatcaatggcaaaacggatacgttgttagaaatctctgtattaccgttggatagctatgcgaagcctgatattgaagccaactatcagggccgactgctcgccagacaaagcggcttccttgatccagtgaactatcgtaatcactttgttaccatcctcggcaccattcagggtgaacaacctggctttatcaataaagtcccgtataacttcctggaagtgaatatgcagggcatccaggtgtggcatttgagagaagtggttaataccacctataacctgtgggattacggctatggtgcattctggccggaaccgggctggggtgcgccttactacaccaatgcggtgagtcaggtaacacctgagctggtcaaataacaccaccgaaagatgcagatgctttctcagcatctgcatcatgcattacatcaaattaatacacagtaagctaactattattattataagccctgtcctgttaattacctttggcaaactgattataaagttaatgtccgcaccaggagtcggttatgtttcttataattaccagggatacgatgttcttcaccgcgatgaaaaacattctgagtaaaggtaatgtcgttcatatacagaacgaagaagagatcgacgtaatgttgcatcagaatgccttcgtcattattgatacattaatgaataatgtatttcattctaattttctcactcaaattgaacgattaaaacctgtccatgtcattattttctccccctttaatattaaacgctgcctggggaaagtgccggtgacctttgttccgcggactatcactatcattgattttgtcgcactcatcaatggcagttactgctctgtgcctgaagcggctgtgtcactttcgcgcaagcaacatcaggttctgagctgcattgcgaatcaaatgacaacggaagatattctggagaaactgaaaatatcgctaaaaacgttctactgccataaacacaatatcatgatgatcctcaatcttaagcggatcaatgagctggtacgccatcagcatattgattatctggtgtgaatttcaggcttacggtgagtctggctacgctgccacacagattagctaattgaaacgcctttcacccctgccataccttttaataatcgcaacaggtcttctatcgacgttgtggcatgaagctggatatcaatggcgaccacttcatgatcttcattttcctgcaacgaaactaaatcagtttttattttttgctgcttaaaccagtcgagcattgataccgtattaccgttcactaatgtcagctgtaaatggtaatttttgttcatcaggcggaaggttaattgatggaagacttccagcaccaacaaggtcatcactgaaccataaatacccagttcgtacataccgctgccaataaccatacctatggcggcggtcacccagatatccgctgccgtcgtcagacctacaatattttggttacgaacgagaatgttacctgcaccgataaacccgacgcccgtcaccacctgagcagcaatacggctggggtcgagtccgacgtgatctaaagacagcacgtcagcaaaaccatatttcgaaacaatcataaacagggcgcttcccatgccaattaatacatgtgtgcgtaaccctgctcctttgccgcgcatttgcctttccatgccaatagcgccacaggcaattgccgcgagtataagacgtataataaattctgctgtcatataaaaatgcaaaaaggagcagcaagatggctcaacttgctactcctttttacttgcacctcattaattcggcaagtcattagatgcttgatttttgaaggtatacaaatttttctgcgggtttttcttacagtattcgatcactttaggaatttgagtgagatcggtttcatttaaagtaacggtatcgccacctttatatactgtttcttcatgcagcatccaccatgcaaccggggtcattgcttttggattcagatcaataaattcctggcaggtcatatctttagcggattcattggctgccaacgcagattgtgcgttcaccagtgacaaagccgctacagcgcccataaaaataaacgctttacggagagatgaaatattcattttgtaacccattcaatatagagattatatatgaacaggaggaatagctgcttttaaagaagatattccggcctgttcaatatgcaaggaagtacgatgtaacgcattcccggaattacatatctttcttaattttgtcccattcgcctttaactttatctttaaagttggcttgtttatcctgagtacaagcctgaacgatagctggggttacggttgcaataccctgaacatctaaaaccgcatcttctggtttatctttgttgttcagcgcttcagcaaaaccaactgcagttggctggaaggattcgtccacagccaggaaatcttcacaggtccaggagttgaccggttttttgttatcagctgctttttgcgcatccgctgcattgctcacaactggcagaagaagcagaccaccaagaataacgcctaatacttttttcatcgtaatatcctcaactataaagtgaaagagccgtcacgaatcaatttcgacactgaggttataacctggttttctgtatatgtcatgttgatggaaaatatcaaaatcagatatttttatttcaatacaatgagttacagatgcatcagatactgcaattaggaaatttttattaaatcgactgcattcttagacgcgtttttggcatagattgatagcaggggattttcttcttaattttatagggtggttctatgttatatatagataaggcaacaattttgaagtttgatctggagatgcttaaaaaacatcgcagagcaatccagtttattgccgtgctgctgtttatcgtcgggttgctgtgtatcagtttcccgttcgtctctggcgatattttaagcacagtagtgggtgcattattaatctgctcgggtattgcgcttattgtcgggttattcagcaaccgcagtcataatttctggccggtattatccggtttcctcgtcgcagtcgcctatttattgatcggctatttcttcatccgcgcaccggagctgggcatttttgccattgcggcatttattgccggtttgttctgtgttgcaggggttattcgcctgatgagttggtatcgtcagcgttcaatgaaaggcagctggctacagctcgttattggtgtgctggatatcgtcattgcctggatattccttggtgcaacgccgatggtgtctgtaacgctggtttccacactggtgggaattgaactgatatttagcgccgccagcctgttcagcttcgccagtttgttcgttaagcagcaataattaccccggttgtcacccggatcatagtcacttgatgtgactatgatccgattaatactctctccgctacgcagtgttgtagatcaattgcgcactatcattgaaataattacctgctagtgattatttcaacctactgaatttcatctaatttttttcactctatggcaaattagccatttcaaacattatcatggctgatattttccgtagtcaggtttaatgttttaaaagtgctgtgggaaagtgaacaaagagttccgtaagcgttgatgctatgggcggttaaataagtaatccgggttcatttttttgcaactggcgttgattacattgcataaatatccgtgtctccagacgctatataaaaacctgaagacatgaatgcgttatttactcaggtaatttcaatgcgttaaaagaaagctggcaatccaattgccagcttaagtcgaaacaaggagactcgatatttaaatcggattacattttaactttagtaatattcttcagagatcacaaactggttattgataacttattcttgggcagtaatccgcaaacgttaactttttgtttgctatttacaagctgataacaaccaggaatcttacttaggatcaatatatggagtgcgtgatggataaatctgaagtattgattagtgttaatagacgtattagttcacgaagggtaaagttcttataggcgtttactatattgaacaacgattcggacaaggatgtaaataatgaaaaggatgacatattcgaaacgataacggctaaggagcaagttatgatttttctcatgacgaaagattcttttcttttacagggcttttggcagttgaaagataatcacgaaatgataaaaatcaattccctgtcagagatcaaaaaagtaggcaataaacccttcaaggttatcattgatacctatcacaatcatatccttgatgaagaagcgattaaatttctggagaaattagatgccgagagaattattgttttggcaccttatcacatcagtaaactaaaagctaaagcgcctatttattttgttagccgcaaagaaagtatcaaaaatcttcttgagattacttatggtaaacacttgccccataagaattcacaattatgtttttcacataatcagttcaaaattatgcaactgattctgaaaaataaaaatgaaagcaatatcacgtcgacgctcaatatttcgcaacaaacattaaagattcagaaattcaacattatgtacaagctgaaactaagacgtatgagcgacatcgtcaccctgggtatcacatcttatttttagtcaggacataagcaactgaaattgatggctggcatgacgagggatgcagatgctgatttcattacccccggtgattactaaaggagaggctaaaacgactttattcccctggtatgtgtatccaccagtagaacccttcgttgcccgaatgctggcaggaactgttggcagaacggcaacattttttttgtcgttgacctcaccatgtcgatcactgtgcctgtatcccaccttactggctgacaaccccactatgccgctggtctgtaaatccctcatatctctcctcgcgcgcaatttaaagaaccgttatttctcaagaattttcagggactaaaatgaacagaagaagaaagctgttaataccgttgttattctgcggcgcgatgctcaccgcctgcgatgacaaatcggcggaaaacgccgccgccatgacgcctgaggtcggtgtcgtcacactctcccccggttcggtcaatgtgttgagcgaattgcccggtagaaccgttccttatgaagttgccgagatacgtccccaggtgggcggtattatcattaaacgcaactttatcgaaggcgataaagtgaaccagggcgattcgctgtatcagattgatcctgcacctttacaggccgagctaaactccgccaaaggctcgctggcgaaagcgctctctaccgccagcaatgcccgcatcacctttaaccgccaggcatcgttgctgaagaccaactacgttagccgtcaggattacgacaccgcgcgcacccagttgaatgaagcagaagccaatgtcaccgtcgccaaagcggctgttgaacaggcgacgatcaatctgcaatacgcgaatgtcacctcgccgattacgggcgtcagcgggaaatcgtcggtgaccgtcggcgcactcgttaccgctaatcaggcagattcgctggttaccgtacaacgtctggacccgatttatgtcgatctcacgcagtcggtgcaagatttcttacgcatgaaagaagaggtcgccagtgggcaaatcaaacaggttcagggcagtacgccagtacagctcaatctggaaaatggtaaacgctacagccagaccggcacgctgaaattctccgacccgacagtggatgaaaccacgggctccgtgacgttacgggcgattttccccaacccaaatggtgacttgctgcctggcatgtacgtcacggcattagtggatgaaggtagccgccagaatgtattactggtgccgcaggaaggcgtcacccacaacgcccagggtaaagcaacggcgctcattctggataaagacgatgtcgtgcagctacgcgaaattgaagccagcaaagccatcggcgaccagtgggtcgtcacctctggcttgcaggctggcgatcgggtgatcgtttccggtttgcaacgcattcgtccgggtatcaaagcacgagcaatttcctccagccaggaaaacgccagcaccgaatcgaaacaataacgttgcaggcttaaggggactttcatggctaactattttattgatcgcccggtttttgcctgggtacttgccattattatgatgcttgcaggtggtctggcgatcatgaacttaccggttgcgcagtatccgcagattgcgccaccgaccattaccgtcagcgctacctatccaggtgccgatgcgcaaacggtagaagactcggtcactcaggtgattgagcaaaatatgaatgggcttgatggcctgatgtacatgtcttcaaccagtgatgcggcgggcaatgcctctatcactctgaccttcgagactgggacatctcctgatatcgcacaggttcaagtgcaaaataaactgcaactcgctatgccttcattacctgaagcagtgcagcagcaggggattagcgtcgataagtcgagcagtaatatcctgatggtagcggcgtttatttctgataacggcagcctcaaccagtacgatatcgcggactatgtagcgtctaatatcaaagacccgctaagccgtaccgcgggcgttggtagcgtacaactctttggttccgagtatgccatgcgtatctggctggacccgcaaaaactcaataaatataacctggtaccttccgatgttatttcccagattaaggtgcaaaacaaccagatttccggtggtcaactgggtggcatgccacaggcggcagaccagcagctaaacgcctcgatcattgtgcagacgcgtctgcaaacgccggaagaatttggcaaaatcctgttgaaagttcagcaagatggttcgcaagtgctgctgcgtgatgtcgctcgcgtcgaacttggggcggaagattattccaccgtggcacgctataacggcaaacctgctgccgggatcgccatcaaactggctgccggagcaaacgccctggatacctcgcgggcagtcaaagaggaactgaaccgcttatcagcctatttcccggcaagtctgaagacggtttatccttacgacaccacgccgtttatcgaaatttctattcaggaagttttcaaaacactggttgaggctatcatcctagtcttcctggtcatgtatctgtttttgcagaatttccgtgccacaatcatcccgacgattgccgtaccggtggttattctcgggacgtttgcgatcttgtcggcggtcggtttcaccatcaacacgttgactatgttcgggatggtgctggcgatagggttactggtggatgacgccatcgtggtggtggagaacgtcgagcgtgtcattgcggaagataagctaccgccgaaggaagcgacgcataaatcgatggggcagatccaacgtgcgctggtcggtattgccgttgttctttccgcagtgtttatgccgatggcctttatgagcggtgcaaccggggagatctaccgccagttctccatcacgctgatctcctccatgctgctttcagtatttgtggcaatgagcctgacccctgccctgtgcgccaccattctgaaagccgcgccggaaggcggtcacaaacctaacgccctgttcgcacgcttcaacacgctgtttgaaaaatcaactcaacactataccgatagcacccgctcgctgttgcgttgtaccggtcgctacatggtggtctacctgctgatttgcgccgggatggcggtgctgttcctgcgcacgccgacctctttcttaccagaagaggatcagggggtatttatgaccaccgcgcagttaccttccggtgccaccatggttaacaccacgaaagtgctgcaacaggtgacggattattatctgactaaagagaaagataatgtccagtcggtgtttaccgttggcggctttggcttcagcggtcaggggcaaaacaacggcctggcgtttatcagtctcaagccgtggtctgaacgtgtcggtgaggaaaactcggttaccgcgatcattcagcgggcaatgattgcgttaagcagtatcaataaagccgtcgtcttcccgttcaacttacccgcggtggctgaactgggtaccgcgtcaggttttgatatggaactgctggacaacggtaacctggggcacgaaaaactaacccaggcgcgaaacgagctgttatcactggcagcgcaatcaccgaatcaggtcaccggggtacgcccgaacggcctggaagatacgccgatgttcaaagtgaacgtcaacgctgcgaaagctgaagcgatgggcgtggcgctgtctgatatcaaccagacaatttccaccgccttcggcagcagctacgtgaacgacttcctcaaccaggggcgggtgaaaaaagtgtatgtccaggcaggcacgccgttccgtatgttgccggataacatcaaccaatggtatgtacgcaacgcctctggcacgatggcaccgctttctgcctactcgtctaccgaatggacctatggttcaccgcgactggaacgctacaacggcatcccgtcaatggagattttaggtgaagcggcggccgggaaaagtaccggtgacgccatgaaatttatggcagacctggtcgctaaacttccggcaggcgtcggctactcatggaccggactatcgtatcaggaagcgttatcctcaaatcaggctcctgcgctgtatgcgatttcactggtcgtggtgttcctcgccctcgccgcactctatgagagctggtcaattccgttctcggtgatgttggttgttccgttaggcgtcgttggcgcattactggccaccgatctgcgcggcttaagtaatgacgtctacttccaggttggtttgctgaccaccatcgggctttccgccaaaaacgccatcctgattgtcgaatttgccgttgagatgatgcagaaagaagggaaaacgccgatagaggcaatcatcgaagcggcgcggatgcgtttacgcccaatcctgatgacctctctggcctttattctcggcgtgctgccgctggttatcagtcatggtgccggttctggcgcgcaaaacgcggtaggtaccggcgtgatgggcgggatgtttgccgcaacagtgctggcaatttacttcgttccggtctttttcgttgtagtggaacatctctttgcccgctttaaaaaagcgtaacgtgtaaatgagagtaaggttgaacatgaaggttcagccttactctttcctgctaaccattcaccactcaacaaccagctaaccgtcaggaataccaggcttagtacacagcactgaaagtagaaaccactccagccattcgtcatcaatttgaacaacacaatactgacccacattcccgtaatcgtatgaattgtcagcttaataatcccaaacatgccgagtcttttcctcctgaaaataccgataccgcctggcaaactgcgaaagagaactagccggtagcccggcagaaatcatcagggaagagtttcacatgaagcaggtgtgagatcctgaccaatattcaaatgcgaaatatgtcaggaaaaggtacctggcgaatgttgcgcaaactgatgtggcgttacaccataatattgtcgaaatgtgtttataaagtacgatgtactgctatagccacatttttccgcaatagtatgcagaggaatttgacgtaactcgagtaatcgtctggccatcgacatcctggaggcgagtaatattttactgaaacaggtattttcatcctgcaacttttttttgattagactctcgctggtatacattctttccgcgatatcgcgcagataccaacgtttggcgatatcaaagctaataaggcgttcaacttttcctgaaacagtgctgatgctattgaaaagtaaggggatcagttctttcttatgagaaaacatcgataaacaggaaaggtagagcatattgctcagtatcggtgaatttaccccggattcattgaagctatcaaaaatcgccgtcaccagcggcatggggggtgactggttaattaacaaacggtctttgctgtgtaaccctaaattgcgtggtagctgacgaatattttgtaagtaatggcaaactgtcagctcatcgatatccagtcgtcgcgtatccggtgaacaaaacgcaaaatcgtctgccaaatttttctccagcagcagaatactctcgttatgcagcgatattttttgctgttcatgataaatatcgaatgaacgacgaatgaggatcaccgagcagacatgagtcatgattatcccttatatttcatactgcgattatttcaatttcagtatactaatgaaatgatgccagactgtttcttagcgcaaaaactgccagatttggtaggaccaaaatttatccacaaagtagttttgcataacagttaattgataataagtaaatgcagcacgaatatattttcgcacagcgtatagcttatgtttataaaaaaatggctgatcttatttccagtaaaagttatatttaacttactgagagcacaaagtttcccgtgccaacagggagtgttataacggtttattagtctggagacggcagactatcctcttcccggtcccctatgccgggttttttttatgtctgagtaaaactctataatcttattccttccgcagaacggtcagtgccgtaaaaattcccttgcgcaacaatacttgccgccgagtcacggttcgacaatctctgcgccgatcgctcctgatactctgtgggcgtcatcccataataatttcgaaagacgtaaatgaaatacgacacgctgtgatatccacaggatactgcaactcgcttaattgaaaaaccatgtataacaataagttgcaaagcacgttgcattctacactcagtaagcaactgtgaatatgatgtctcttcttcgcgcaattttttctttaacagacttggactcatcaacagctcgctggcgattcgggctagtgtccactcatgggcgatattattattgataaccgtacaaactcgtgttcgcatgttcggttgtaaaacgttcagaagcagcggtataaagtgctcatcctcaagaaaaacagataacaacgcaaagattaatgctcttttacgtagcatttctgcatagcgaagattcttattctgcgatagttgcgcaacttcctgaaaaacaggaatatctctactacagtgatgaacgagtaatgaagaaacttttttatgtgcatgaagatttaatgcctcctccttgagcatcgggagaaataatgaaagcgtgtcccttgacacgaatacaaaattttcaacacacttatctactcgaatttggcttgcatccgcaaaaaccaggtcaccgccattaaaatagcgatattcaccattaaccatggtgagaatatatttatgtcttgcatacgcaattagacaattcccatgtagtgattgcatagttgacttaatattacataaacatattactgtttattaatgtagcacgccgccctcttaagtcaaattgattgataaataaatttaaacgaagcgggagaacaggatgataatgtgtgatgttctacgggcaggatgactggatttataatacaaaaacgtgtttaagaacacagggaaattaatagtaagcaaataatcccttttcgtgacattaaaggtaatcgctacatttaataaacattcatataacatatatcttatcaacacgatgaatagacagccaatatattattgcgattaataagcaaccgaatgcccagctgtttttttaaaggctgggcattcggtttttacaacgttatgttatcaggtgtgtttaaagctgttctgctgggcaataccctgcagtttcgggtgatcgctgagatatttcagggaggctttgtagtcttccagcaacagttcagcaaagtccatttcgaagccgcgacgacacataatgcgcatcaccacgatgtcggtggcttcaccgccgagagtgaaggccggaacctgccagccgcgcagacgcagacgttcagagaggtcgtacagggtgtatcccggatcttcaccatctttcagtttgaagcaaaccgccgggatgccttcgtccgggcgacccgtacagatgaactcatacggccccagtttggcgatttcatccgccagataagcggcaacctggtaagaggcgttctgtactttggtatagccttcacgaccgaggcgcaggaattcatagtactgtgcaattacctgacccgccgggcgggagaagttgatggcaaaagtaccaatttgaccacccaggtagtcaacgttgaacaccagttcctgcggcagcgcttcttcgtcacgccagataacccagccgcagcccagcggagccagaccgaatttatggcctgaagcactgatcgatttcacacgcggcaggcggaagtcccagacgatatccggggcgacgaacggtgccaggaagccaccgctggcagcgtcgatgtgcatgtcgatgtcgataccggtgtcggcctggaatttatccagcgcatcgtgcagcggttgtgggaactcatagttaccggtgtaggtcacgccgaaagtcggcaccacgccgatggtgttttcgtcacaggcttcaatcatgcgtttcgggtccataaacaactgaccggggcgcatagggatctcacgcagctccacatcccagtagcgggcgaatttatgccagcagatttgtaccggaccgcacaccaggtttggtttatccgttggtttgcctgcagcttccatacgcttgcgccaacgccatttcatcgccatcccgccgagcatacaggcctcggaagaaccaatggtgttggtgccaacggcctgaccatttttcggcgcaggcgcatgccacagatcggcaaccatatttacgcaacgcaggtcgatggctgcggattgcggatattcttctttgtcgatccagtttttattgatcgacaaatccatcaatttatggacgttttcgtcgtcccaggtctggcagaaagtggccaggttctgacgagcgttgccatcaagatataattcatcattgataatctgaaatgcgacatcatcgcgcatttcgtgcagcggaaatcgttttgactccgcgatagtagaaatggcctttgcgccaaaacgtgaatcgagtagttctgagcggaaatccgttaacagcttctggtccatttcgaactccttaaatttatttgaaggcaataaaaaagtaggatttatccgcaatggaagcaaggcattacaggcttaatttaaataacaaaatcctaagcagaaaaacgactttttataatataaacatttaacatgataatattaaaaacagactttattatcgtaataaaaatcgcccaaacattgctgttcgggcgatcaaattaattattgtttatcctgcatatacggcgtgtacaccccgttcagactgtgcaggaaagctacgatatcatccacatcctcctgcggcagctctttgcctacctgatagcgcagcatcagtttcaccgccccgtccagcgtcggcacgtcaccgcgatggaagtacggtgccgttaaagcaacgttacgtaaaccgggtactttctgacgcaatttatcacgctcttctttagtcacattcatacgaccaatatccgccgccgtaatttccccaaagttaaagtcttttttcagccccaacggttcaaaggaacgtccgccgagaataataccaccatgacaagttgcacatttattatctttaaataattgatagccttttttctgttgcgccgtcagcgcattttcatctccgcgcaaccatttatcaaatggggaatccggcgtaattaatgttttctcaaattcagcaatggcatcagtaatattttcgccactgaaaccttgcggatagacttcgaggaactgcgttttaagctgcggatctttttccagcttagcaataatttcgtcccaggatttcgacgccatttcaatcgggttcaacggcggtccaccagcctgatcctgcaatgttgccgcacgaccatcccagaactgctcaacgttaaatactgagttaaataccgtcggcgcgttaatcggcccaactgcgccaccaacaccaatcgatgtttttctgccatcgacgccccccgcattcaacgcatggcaatgagcgcatgaaatggtgctatcagccgataaacggggatcgtgatacagcgcaaaacccaacgccactttttgcgcatcggtaggcagtttttgcgggatgggctgcaccggttcattgcgatgttccggagcagtatcattgctggcgtaatattccgcgcgctgttttgcaatccaggccagtatttccgcccgctcttcatcactcaccttacccgcccagtgtagcgcggtataacgcgttggtggcatagtttcatactgcatcacccattcaatcttattcaaatcgctttgcgaaacgggtttatcagccagcagtgccgcacgcacggcctcaaggttaaaagatttatatccaagcttaatgtcgtaatccatcaactgtttcgcgccaggaatataataataggcgggtaattctgccgaaggcgtgtggcaatagtcgcatcctttttcgcggagaaagcctaaaaccttattattttcactgacagcagatgcctgaacatcggcctgtttactgcgtttattatcgtggtaccacacataaccagataaccctaaatagcaaatcgcgacgccagccaggccgatcgcggtaatacgtgagaccattttcattattcttccctcacggtggtgagttattgtgacccagaaaattttccagaatgctgcaaacgtctctgcgagacaaagccatcataaaaaacagggagatacgctttttgataggaatcaatcaattacatgaatataaactatcaataagatagcctgtgcctattacccagatcaggaatggcatatcatgattgcggcgagagcaggattgaatgttctgaaaatgaaaaacaacaccaaatcggtatttttataaattccattgatattagtgcgttatattttttgacaggttaataaacgtgatccaccgcacgctttgtcgcccaccaggcggagcgaatgactacccttaaagaaaagccgataattagcgacgaatttcggaggttggatccttatgctcaatcagaaaattcaaaaccctaatccagacgaactgatgatcgaagtcgatctctgctatgagctggacccgtatgaattaaaactggatgagatgatcgaggcagaaccggaacccgagatgattgaagggctgcctgcctctgatgcgctgacgcctgccgatcgctatctcgaactgttcgagcatgttcagtcggcgaaaattttccccgacagtaaaacctttcccgactgcgcacctaaaatggacccgctggatatcttaatccgctaccgtaaagtgcgccgtcatcgtgattttgacttgcgcaagtttgttgaaaaccacttctggctgccggaggtctactccagcgagtatgtatcggacccgcaaaattccctgaaagagcatatcgaccagctgtggccggtgctaacccgcgaaccacaggatcacattccgtggtcttctctgctggcgctgccgcagtcatatattgtcccgggcggccgttttagcgaaacctactattgggattcctatttcaccatgctggggctggcggaaagtggtcgggaagatttgctgaaatgcatggccgataacttcgcctggatgatcgaaaactacggtcacatccccaacggcaaccgcacctattatttgagccgctcgcaaccaccggtttttgcgctgatggtggagttgtttgaagaagatggtgtacgcggtgcgcgccgctatctcgaccaccttaaaatggaatatgccttctggatggacggtgcagaatcgttaatccctaatcaggcctatcgccatgttgtgcggatgccggacggatcgctgctcaaccgttactgggacgatcgcgacacgccgcgtgacgaatcctggcttgaggacgttgaaaccgcgaaacattctggtcgcccgcccaacgaggtgtaccgcgatttacgcgcgggggcggcctccggttgggattactcttcccgttggctgcgtgatactggtcgtctggcgagcattcgtaccacccagttcatccccatcgatctgaatgccttcctgtttaaactggagagcgccatcgccaacatctcggcgctgaaaggcgagaaagagacagaagcactgttccgccagaaagccagtgcccgtcgcgatgcggtaaaccgttacctctgggatgatgaaaacggcatctaccgcgattacgactggcgacgcgaacaactggcgctgttttccgctgccgccattgtgccactctatgtcggtatggcgaaccatgaacaggccgatcgtctggcaaacgccgtgcgcagtcggttactgacacctggcgggattctggcaagcgagtacgaaaccggtgaacagtgggataaacccaacggctgggcaccgttacaatggatggcgattcagggatttaaaatgtacggcgatgaccttctgggtgatgaaatcgcgcgaagctggctgaagacggtgaatcagttctatctggaacagcacaaactgatcgaaaaataccatattgccgatggtgttccccgcgaaggcggcggtggcgagtatccgttgcaggatgggtttggctggactaacggtgtggtacgccgtttaattggtttgtacggcgaaccataatatttttacagccagccgctaacttcctgctggctgtaaaattatcctcttcaggaggagatatttaacatcattgccgcctgggtgcgatttttcacttccagacggcgatacagggattccagatgcgcttttaccgttccggtactgatattcagcgctctgccgatctccttatttgattcgcccgccgctaacatggttaaaatctcccgctggcgggcgcttaacgatttgagatctttaatgtccttttccggcgtcgtccgccagtctccaggcagaaacatcatccccatcgccgcactatttaccgccaacgcaaatgtctcgacggttgaatcacgaggcacaatggccagcacattaaaatggataacttcctgtaaccaccgtttattgcaatccgtcgccgtaattaacaccttaacctcaggaaattgcaccacggttttttgcagcaaccagtagcaaaactcaccatcctgatcgccatcgagcataactaaggcttcagggtaactttccagcttttgccataactcgtctgcctgactggccccctgaatactcactcctggaatacgctgctgtaaactgattttcattccatgaataaatattgactgcctgtcaaacatgactatttgcataactgaatctccacctgaatacgttaaaaagacttaagtagtggaagggtattacccgcgagaaaaaataagaattcgccatttggcggtggccattctacagagatgacgtgtagaaaatagttaccgatataaatagttacagctaaacgcctgaaattacatgtcgagggcactatttaaaacaattttgaggatttccttatattggtggttagtacgcatgcaattaaaaatgaaattccgcgaccacaagccaaaataacaaacggcaaggagacaaaaataagcacaaatagccaacacgtcctctgttcactttaaagggaatcgctgaaaaatacgctctgtttaaggggattcacctttctcagaaagctattccgcccttttcctgctgagaaatcgccacattcggcatgacaacattgtgaaacccggcattagatgttagaaaaaacaataaacaatgcgatatgcgcgttactgtttcgctgtgaacaacaatcggtcaaagaaatggataaaattcacgcaatgcagttgttcatcaaagtcgcggagctggaaagtttttcccgcgcagcggatttctttgctttgccaaagggaagtgtttcgcgccagatacaggcactggaacatcaacttggcacccagcttctccagcgcaccacgcgacgggtcaaactcacgccagaaggcatgacctattatcaacgagcaaaagatgtgttgagtaatctcagcgaactggacggtctgtttcaacaggatgccaccagtatcagcggtaaattacgcatcgacatcccgccaggaatcgcgaaaagcctgttactgccgcgcctgtcggaatttctctatctgcatccgggaattgagctggaactgagtagccatgaccgtccggtagatattcttcatgatggttttgattgcgtgatacgcactggcgcgttaccggaagatggcgttatcgcccgtcccctcggcaaactgaccatggtcaactgtgccagtccgcactatctgacgcgctttggttatccgcaaagccccgatgatctgacttcacacgcaatagtgcgttatacaccgcacctgggtgtacatccgttaggttttgaggttgccagcgttaatggcgtccagtggtttaagtctggcggcatgttgacggtaaacagtagcgaaaactatctcaccgccggtcttgccggtctggggattattcagatcccgcgcattgccgtgcgcgaagccctgcgtgccgggcggcttattgaagtattacctggctaccgtgccgagccgctctccctttcgctggtttatccgcagcgtcgggagctttcccggcgtgtaaacctgtttatgcagtggctggctggcgtaatgaaagagtacctggactgaccgactatactttttaagaatgaccacgacagaaggacaaaagagcggatgacgcaggaaaacgagatcaaacgtcccatccaggatctggagcacgagccgattaagccgttggataatagcgagaaaggcagcaaagttagccaggcgctggaaaccgtcaccaccactgccgaaaaagtccaacgccaaccggttattgcgcacctgattcgcgcgacagaacgctttaacgatcggctgggtaaccagtttggtgcggctatcacctatttctcatttttgtcgatgataccaattttgatggtgtcgtttgccgcagggggctttgtgctggcctcccatccgatgttgctacaggatatcttcgacaaaattctgcaaaacatcagcgatccgacgctagccgccacgttgaaaaacaccatcaacaccgccgttcagcagcgtacgactgtagggcttgtcggcctggcggtggcactttattccggcatcaactggatgggtaacctgcgtgaagcgattcgtgcccagtcgcgcgatgtctgggaacgctcgccgcaagatcaggagaagttctgggtaaaatatctgcgagattttatttcgctgattggtttgttgattgcgctgattgtgacgctttcgatcacctcggttgccggttcggcgcagcaaatgattattagcgccctgcacctgaacagcattgagtggctgaaaccgacgtggcgattgattggcctggcgatttccatcttcgccaactatctgcttttcttctggatcttctggcggttgccgcgccaccgtccgcgcaaaaaagccctgattcgcggaacatttctggctgctattggttttgaagtgattaaaatcgtgatgacctacaccctgccatcgttgatgaaatccccctctggcgcagcatttggttccgtgctggggctgatggcatttttctacttcttcgcccgtttgacgctgttttgcgcggcgtggattgccaccgccgaatataaagacgacccgcgaatgccggggaaaacgcagccttaaaataggccggatgcggcgtaaacgccttatccggcatacgattttattcggcctggctccccgtaggccggataagatgcgccagcatcgcatccggctataatgcgcacataacctcttgaaactcgtccccagagcctcttcagccatctatttgggagcaaacaatttcattccaactcataaccccagcatataaatccagttggtaacttttatttaacctgaaaccagttttatccactatttataaaattatgtgaagcatttcatagaagaaaaatcactggcctaaacattatcccctttttgcctgatttttgaccatttccgcgatttgttacacattgaaatatcacttttgctgtgcgtaatatggctattcgttagccaaaaaataagaaaagattatgcaagcaacagccacaacactcgaccacgagcaagaatacacgccgatcaactcgcgtaataaagtccttgtcgcctctctcattggcacagccattgagttcttcgacttttacatttacgccactgcggccgttattgtgtttccgcatatcttcttcccgcagggcgatcctacggcagcaacgctacagtcgctcgccaccttcgccatcgccttcgtcgcgcgccccattggctctgccgtttttggtcattttggcgatcgcgttgggcgtaaagcgacgctggtcgcctcgttgctaacgatggggatttcgaccgtggtgattggtctgctgccgggctatgccacgattggtattttcgccccgctgctgctggcgctggctcgatttggtcagggtctgggcttaggcggtgaatggggcggcgcggcgctgctggcgactgaaaacgccccaccgcgcaaacgtgcactgtatggctcctttccgcagctgggcgcaccgattggcttcttctttgccaatggcactttcttgctgctttcctggctactgaccgacgagcagtttatgagctggggctggcgtgtgccatttatcttctcggcggtgctggtcattatcggcctgtatgttcgcgtgtcgctgcatgagtcgccggtgtttgagaaagtcgctaaagcgaaaaaacaggtgaagatcccgctgggtacgctgctgaccaaacatgttcgcgtaaccgtactgggtacgttcattatgctggcaacctatacgctgttttacatcatgacggtctactctatgacctttagtaccgccgccgcgccagttgggcttggcctgccgcgtaacgaagtgttgtggatgttgatgatggcagttattggttttggcgtgatggtgccagtcgctggattactggctgatgcctttggtcgccgtaaaagcatggtaatcatcaccacgctgatcatcctgttcgcgctgttcgcctttaacccactgctcggttctggcaacccgattctggtttttgccttcctgctgctggggttaagtctgatgggtctgaccttcgggccaatgggtgcgctgttaccagagctgtttccgacagaagtgcgttacaccggagcatcgttctcttacaacgtagcgtcgattctcggggcttccgttgcgccatatatcgcagcctggttgcagactaactacgggctaggtgcggtggggttatatctggcggcgatggctggcttgacgttaatcgccctgctgctgacccatgagacgcgacatcagtcgttgtaataagagtgaaaagcctgatgcgctacgcttatcaggcctgaatttccatacaatatattgaattcgcaaggatttgtaggccggataaggcgttcacgccgcatccggcatgaacaaagcacactttgccaacaatctaaatctgtttaattgccggatgtcagacatccggcaattatcatcacttcttcatctgcgacaaaatcgtccgacactgattagcctcccttcggaaggtgagatcagtgccagtaacgccgccgccggtgttaccagcgttgccagtgccgcagcaacagcaccacgggcaatcagcggtccggctttcaccccagcctgcggatttttaaacgtcccccgcacatacagcggcgaacgcagtgtgataatccgaattcctttactctccggatcaatagtcaaatccagctgttccgaagcaaaacttgccgtgccggtaacattaatcaacgcgttctcagtatcgaaagcaaaaatctgcgggcgcgccacgccgttggcaatattcagattcgccgccgcgcagttcacccgcacctcatcatcaccaaatatcgcaccgacaatgtagttgccgacattcagcccaacaatctccatcaggttgcggctcaccagcccgtcattcatcaacagtttcaggttgccgttactgttgcctaaaagtgccgccaccgagttaccgctaccgcgtagttccgcgtcaccgttcatttcccccagcgtcttctgcatcagttccacatcgggcatcagttctttcagtttcagtcgacgagcctgaatatctgcccgcccctgcatcggctttttatcgccttccagatgaatattcgccgcaatgctgccgcccgccatgccaaatttcagcggttgcaggcgcaggtcagcatttttgaggatgatatgagtagaaagatcgctaatcggcaggctactgccatgctcaatgcgccgccctttgaagcgaacatcggcatccataacgtcccatttatcggtttcgaagcggtcataaggcagcactttgcccgcaggctgaacgcttttttcgcccttcttctgttcagaccgtttcgacttttctgcccctttcccggaatcaacgccaatcaacggtcccaggtccgccagccgcaattgccgcgactcgacatcaccttccagttttggtcgtggctttccggtggtgtagaccagagaaccgtggatatcgctatcaccaattcgcccattaaaaccgcgataatcaaagaccgacgatttttcagtgtcgattttcgctaccagccgaccatccgtttcaaacggcggggtatcgggcagcagaacgcccgtcagttcatagagatcacccagtgaatcgccagaaaatttaagccgtaaatcgacaccgcccatcttcattgggtcattcacgacgccatcaaaagcaacacgggtgttaccagagcggaaatcagcctgtaccggaaacggcgtcccttcgccacgcagcgccagcataccgcctatttttcccgtacccgtgagcggttcaccgttatatcgtccctgcgccttcaggccaaaaacgtaatcgcccaccttttctttatccgctttacctttcgatccagtaacttcgctgaacggcagcggcttgcctaagggatcaacaaaaatctccagatccgctttgcttactttgtcatcaatggcgatccgcccttgatcgaaaagaatattatccagccgaaacgaccatgccgacggtttgcattcgcgtctttgttatcatcgttggcaagattaaacgtccagttattgttcttttcagagaggcgaatcaggcgcgcgtcgggcttttcgagcttgatccacggcagccagaccgttttggtcagcagcgccagcggggccagcgttgcctctacgcgtggcaaatgcaccatcgtgacttcgggaatatccggtggattgccaagaatgatgtcttccgcgtgtacatggggccacggcacccagctgcgccagccagtttcttgtttttgccgctcccacaccacgcccagatcgccacggatagcgaacggacgattcaactccgcagagactttctggttgatagtcggtttgagtcgattccagtcaaaagttgcaatcaaaatgatcgccacgacaatcaacaacaagaaagcccctgaaatcgcagcggttattttgcctgccttgctcatcgttcgcttcctcatattcttcctgtgccagtcctaaagatagtccagccaggcggaaaatgaggcagcttatagcgccagaaccgccgtattcagcgtttctatcggtgccgggcgtgaaagaaaccagccttgtgcggcgaatgcgggcgagttctgaacatcacgccactcttccggcgtttctacgcctcgacaatcaccccgcgacaatagcgattcattagatgtaaaagctgagaaaagagtgtgcgtccttccggcgactgacgcagcatcacaaacagttctcgcgcgattttgatgtagtcataacgcacttcacttagcgcagagaaatttgccatcccggtaccaaaatcatccagccacagcgggccaaattcacacatcgaggcaaaggttgaatctttcggcagacggatatgctccaccagttcgaaacgcagccagggaagacgctcaatctggcgcaggatttttggttgctgacgcagggcgatgagcgtagggccatcaatattgaccgatgccagcaggccgtgctctataaagaagtcggctttttgcgccagcaaatcaatctgctctttcacaacctccatccgatggctgacggtgatttcagtaaaatagcgatccggcggcaggcgttgcgaagggttcaagggatgcgtgaccaccgttaatagctccacggccattaaccgcccgcatgtttgatagatcggctgccaggtgtaagcacgctcacactgcaaccaaaaacgccgttcctgcaagctctcgatgcttgcttcagggttgcttattcgctggataacctgccttatcatcaaagatgtcctgtgtttaaaagtgatgctgcccggactcgacaaagattatcggcgcgtaagggcagaactttaccgcctggccggggtaaatttcctcactccacaacggaatctttcaggaatacgttctggctcaaaaaaataatggaacactgttttaatatggttgaccagcaaaccaccacagcgcaaactaacgctaattttttacagatcaggttcacgactatgtccaaaaagattgccgtgattggcgaatgcatgattgagctttccgagaaaggcgcggacgttaagcgcggtttcggcggcgataccctgaacacttccgtctatatcgcccgtcaggtcgatcctgcggcattaaccgttcattacgtaacggcgctgggaacggacagttttagccagcagatgctggacgcctggcacggcgagaacgttgatacttccctgacccaacggatggaaaaccgtctgccgggcctttactacattgaaaccgacagcaccggcgagcgtacgttctactactggcggaacgaagccgccgccaaattctggctggagagtgagcagtctgcggcgatttgcgaagagctggcgaatttcgattatctctacctgagcgggattagcctggcgatcttaagcccgaccagccgcgaaaagctgctttccctgctgcgcgaatgccgggccaacggcggaaaagtgattttcgacaataactatcgtccgcgcctgtgggccagcaaagaagagacacagcaggtgtaccaacaaatgctggaatgcacggatatcgccttcctgacgctggacgacgaagacgcgctgtggggtcaacagccggtggaagacgtcattgcgcgcacccataacgcgggcgtgaaagaagtggtggtgaaacgcggggcggattcttgcctggtgtccattgctggcgaagggttagtggatgttccggcggtgaaactgccgaaagaaaaagtgatcgataccaccgcagctggcgactctttcagtgccggttatctggcggtacgtctgacaggcggcagcgcggaagacgcggcgaaacgtgggcacctgaccgcaagtaccgttattcagtatcgcggcgcgattatcccgcgtgaggcgatgccagcgtaaacgcagcatatgcaaaaggctggataaagtgttacccctctatccagctcatccataaatacctgatggttgtgctaactcatcaccatcaggcattactgtgcaggtggaatatccgtcacttcaggatgtacgtcatccgtggcgacagaggtggtcgcagcggcggtagatggggccatgatttgatcccagaccgcctgcaacgctttcatgttaaattccggctcgcctttcggctgcagcagtattaacgccatatcattcgacaactgttgacgcagatcctgatttaacatctctaccgtcaggctattaaggaaatcctgccgcagtttctgatattgctccggcgcgatatcgacaacctgattttgcaacgaacgcatccgctgacccatcagaatatcggtatcagctcgtgcataggcggcaaacagtttctgcagctccagtttcttttgcgccactaacgcattgaactcttcttccggcagacctttatcgcgaaccttcgccagttcacgcgccaccagattaaggttgctgttcagcttgtcgtttggtgattcgatgttgatggcacactgcgcacgcagatacagcacacggcagtcaaatccaagaccgatgtctttgctgttactggcacttaacgcttgctgaacatgccagaacagcgcctcgcgggccaggtccgcacgccagtagcgcagcagtgcggctgattcacgaatcggctgccacggcgtatcccacatgatagataaccggtcctgacgcaccgcgtcagtcataatactcaccgcttccgcacgcagcggagaaagcgtcggcaccggagctggcgtttcacgtttgcctttcagttcgccaaacgttttgtttatttggtcgacaaccgagcgcgcatccacgtttcccaccaccagtagcgtcattgcatccggggtgtaccatttctgatagaaatctttaattttttccgcttcaacgggttgtttcagcggatcggcaggatcgtgacctaacaaggttgaccctttcagacgatagcgccaccagccctctttagtatcggcaggccaggttgccaccatgtcctgactttgcagcgcgtggttgatggtttctggtgtgatggtcaatttgccagtggcatttgccagataagagagcgcttctttcagcaaatcgttacggttattgggcaaactcagattaaacagcgtggtgtcataagagacaattaccggcggcatcgggcgtttagggtcgatcccctgctgccacaatgaacgcgcctgtgctgcgtcaaggccaccgctttgcgttagcgcaatacgagggatggcgtgactgtaaccgctctgttgtgtactttcggcgagcgaaccggtattaaccagcaggcgaatttcaacacgatcgctgggacgctggggggtggtcagcacttgccactgtaaaccgttggaaagcgtcccctgttgccatgctggatcaggctggagcgcatctgcctgcacatagccagcagtggccatcatcagcaaaccgcccgctaaaagtcgaatttttgtgccctgcatgtgaacccctgatcaactatcctggtaataaaaaaactgcccgttgtcggtcagtctaaatgacgttaaaaacacttcgtgttagaccgcaagaacatgaaaatgtcacggaagaagtgaaataaacctgaactcacccaggtggtaagttcaggcacaggggtcaattatgcgcaaacacccgcactcggggaagggagtgcgggcataagtgatgagattaagaggataattcgtgcgttttgccatccggcgcacgattattcagcacatcgtccagttttttgtggtccagttctttcacccacttagcaacgacaatggtcgctacgccgttaccgaccaggttagtcagcgcacgagcttctgacataaagcggtcgataccgaggatcagcgccagacccgctaccggcaaatggcccaccgcagagagcgtcgccgccagcacgataaagccactacccgttacccctgccgcccctttagaagaaagcagcaacacgattaacagcgtgatttggtggacgatatccatctgactgttagtggcctgggcgataaacaccgccgccattgtcaggtatatcgatgtgccatcaaggttaaacgagtagcctgtcgggatgaccagccccaccaccgatttacggcagccgagtttctccatcttgtcgagcatacgcggcagcgccgactcggaagatgaagtccccagtacaatcagcagttcttcacggatgtagcggataaatttgaagatactgaaaccagtcgctttagcgattgaacccaataccagcaccacaaacaggatacaggtaatgtagaaacagataatcagctgccccagttgcaccagtgtgccgacgccgtatttaccgatggtaaacgccattgccccgaacgcaccaataggtgccagacgcatgatcatattgatgatgccgaagatgacctgcgagaaactttcgatgacgttaaaaatcagttggcctttgctgcccagacggtggagcgcaaaaccaaacagtacggcaaacagcagcacctgcagaatgttaccgctggcaaatgcgccaatgacgctcgccgggatgacatccataatgaaggcgacaatgccctggtctttcgcctgatcggcgtaaaccgctaccgctttcgcatcaagcgttgccggatcgacgttcattccggcaccaggctgcacgacgttaacgatgataagaccaataatcagcgcgatggtactgacaatttcaaagtaaagcagtgcgactgcgccggtacgaccgaccgccttcatgctttccatgcccgcaatgcccgttacgacggtacaaaagatgacaggagcgatgatcatcttaatgagcttaacgaagccgtcgccaagcggtttcatttgctcgcctatttcaggatagaaatggccaaggagaataccaatggctatcgctgtcaggacctgaaagtaaaggcttttaaacagagaggttttcatagggtgtcctttagtaaaaccacaggtcttgtaaggttatggggtacctgcggccttaaaataacacccagacaacatcacagaaatgtacctggatcataattgaaacaaaaaggttaaaaagtttgagctggctcgcacaaaccagcactttttaaagttttgtaatcagtttggggtagctacttttcttccaggtaactctcttcgaagatttcaatagggagtgggcgagcaaaaaggaagccctgggcaataccaacgcccgcttttgccagccagtcgcgttgtgcttcagtctccacgccttcggcaatcatttgtaagttcaggctctgcgccagcatgataattgcagcaatcatgctgctatctcccggcaagccttcaacaaacattttgtcgattttcagtacgtcgattggcaacgatttcatatgctgcagctgacgcagccctgcgtagcccatgccgaaatcatccagcgccacccgaactccggcattgcgcagcggacggaggattgccaccgcagcatgagggtcgtcaatacgtcggctttctgtcacttccagaatcagtgttcccggctgaatgcgatagcgggttaacagttccagcatatccgccaccatattcgggtgcatcagttgcagcgcagagaggtttaccgacaagggcagcataatgccgcgctcttgccaggctgcaagcaatcgacaggactcttccagcacccagtgaccgacggtaaccatcagcccacagcactcaatgcgatcgattaagccatccggcaggtcccaactgccatccggttgctggatacgcagtaacacttccgcactgaccagtttaccgctggtcatctcgacctgtggctgtaaccaaatagcaaactgatgattttccagtgcattaaggatatcgctctcttccgtcaaccgcttctgggcggcttccatctgctgcggatcaaagaactgaatctgattcttgcctttatggcgagcggtaaatgccgcagaaatagcgcgactgtaaagctgttcggcggtgagatcgccgtagaacatcgccacgccaatgctacagtgcggacggagttgaatacgttcaatcggcaggcgctcgctcatgatagtgagcacttgctgacctaaggtgattgcgtgccacggttcctgtacaccgttggcaatgacagcaaagtcataaccgctaatctgcgcgaggatcatacgtggcgacagtaccgatttgagtttttccaccagcgtcagcagcagaatttctcgttgcgcctctttcagcacgcccgcagtatcacgcagggtttcacaggtgatgatcatcagcgcggtggtttgtttacgcgcgacaacctgctccagcatctccatcagcaaggctttgttcggcaaatccgacaccgggaagcgcatcgcattttcgttctgttcttcataatggcgctgcagcaattgctggttgaggttgtaactgcgcaccaacataccgatttcatcgtcctgatgcagacgcggtaatgccagttggtgaccaacaagctccttggctgggatggcgttaagttcgcgagcaatattgcgtaacggatgcaaaatcaggcggttaatgcaccagctgatggcgacggtcaggataagcgacaaaagtaagtaaatggtcactaacgttgagagggtgctcatcacgaacttatacatacggaaggaatccgcctgtagtaccagataggcaattggctgcgggtttgccggacgttcgagcgagtaaacgcccagcgagatttgaaccggtagctcaaacaggcgagtaaccattaccggcaccgggcgctctggaataaaacttttacgcagcgcctggaactggttaggcagcactacatcggcacggctgaccacgcctgccggtttaatgctggcaagaatagcttccgcttcgggaatatcgcctttcaaaatagctgaagataagggttcgcggacagagcgagcaatgctttccagttgcgtagccgtgttatagcgattctgctggaccagatggaacagcaaaacggtgcaaaaaataaaaacgaacaccaggacaacggctgccaccattgccatctgcttgattgttaacgagcgacttacgcgcaaattgtctccccccggaaatcccagattgccgcccgagtatacccgatcgcagcggcattaagagaggcgctatctgaaaacttaccagtcggcgtaaggtatcagcggctgcggcggtaaatccatgtcaccctgccatccggcggcggaataacgtacgtagagcaggaaatggctgggtgcgtaatctttcgcctgctggatatcaattgccgtgccaacaaaccagttggaagtaacacgtcgttcaagtaatgcccgcgccgtgtagccgaagccctgactgctgccgccatcgttggattgccgcgcagcttcttcctgccagtcggtcgggatcagattcatcagcggataacgcggcatggttttggtgcgtgaatgcgaccacgagccagacgcacccagctcccacgaccagttttccgtgcgctcccgccacatcaccggtatggcaaacgacaggtattcctgcggactgtagtaaccgccctgaccgagtgagtagccactcagatctttgtcgtaatgccagatcatgttgttcaggccgattgtgacgcggcgattgttctggttaatgaccttatagtaatagcccgtcatccagcgcacgcgccagttatcttcgacatttttaccggttaactggtcgccactaagcgatgcccagacgccgtttgcttcacctttatcgtagctcagacttagccccacaccgtcggcacgtacgccaccccattttttcccggtattgctcggggagtctttttgcccaccaaaggccagcaaagaactggagatgggccgacggtgggcgttaacggtgtaacccagcggcccgatatcatcgctgtaactgatgccgccgaccacatccaccacgttgaagcccatcggcgtggtaccgatatcccagctccagacgtcatttcgccagccgaccgccacgctggcaccggaatccgactggctgcggttgccgctacagtcctgtaatgtacaggtgccccagttgtcatcccatttgccatcggcattagtggagaaactgccgacgttcatattgacgaaatcactgcgaaagaacatccgcccgtcagaatacggcgcatccacctgcaacatggtagtgtgcgctttcagatcggagtaaccaccggtgccgctcgaaccccagtaatcgtgctcaagggtgacgttaagatcctgctggcgatagaggtccgccgcatcgctgcgcacgccacgtttcagccagtcatctttctcgtcgttacgggtcagtcgggtaaaggtgtcgttatcctgcggacgcgtcgtagtcacaccggatgcgaccatggcgtctttgtaggtttccagcgcctgcgttggatcgcccgcctgcgcttcaaacttcgcaccatcacgcagcaccatcgcgctttccatcgacggtggctgagattttgcctgcgggatcaacttattaaacgtccgctgcgctgctgcggtatcgccaagctgcgcctgtgccagcgccacgcgccgctgtgtgttcagcgaggcgttatcggtagcgggcagtttcgccagctggctacgtgccgccgctttgtcaccggcagcaatatccacttccgtcagaccaagaatggcgtcggcgttagctggctcccgcgtcaggacattctgatatgcagcgcgggcggcggtgtaatcacgtcgttgttgcgcccagtcagccagcgtgaggtcaatacgcgtggaaggtggttgctggcgcagcacttccgcttctgcctctttgccgctttctcgcaggcggttagcggtttccagcacctgatcgctttgcagtcgattaaccagctcctgaatattgctgttccactgcgcacgcggcaggctattgatatgcgccagcgccgctctgtcctggtcatgaccagagaggtacagcccgtaagcgtaaacctgctccgggtcgttcgacttctgctgcgccagattgcgcattaacgtatcggcctggctgcgttgtccggcctgccagagatcctgcgaaagtcggtaagtaatccatacgctgccggggtccagcgccagtcgttgccgctgaagtgctgccgcctgcgcccatttgccctggttttccagtgcctctgcctgctgtgccagacggtcgttttgcaggctgcgttcgatatcatcaatgctacgccgctgactggcagagagcgaggcgataaacgcttcagctttttctggcgattgctggcggtaaatatttgccagcccgcgcacggcgttagtgttgccgctgtccatacgcaaggtctgctgataataacgttcggcggcgggataatcttttcgcgccatcgccacatcgcccagccccagcactgcataactgtcggtgttatcgacattacgcgcctgctggaacaggcgttctgcccggtcaggattattggctttcagcgcagcatcgccctgctggatcgccagccagtagcggtttactttcagcagactgttccatttgtcgttgttgctgctgtgcgggtccagtgcgagggctttttccagattcgccactgcattggcgcgatcgcctttctgagaatacgcctggcccagcgcccccagagcttcactgtctttcgggttcgcccgcaccgcctgttgtagttcgggaatggctttacccgccataccagagtccaccgccgctaaaccttgcgcacgagcgcggaaagcaggatcggccagctgtttttgctgttctgccagttgcgattgcgcagccgccacgctatcgccatcactaaagatcgagagatattttttcagcgccgacacactggcatcactgacgggcatgtctttaatctgcccgtaccagattttagaggccccttcgcgcccggcgttcgattttgccatctgttccaggacggcaaaaccttcgtcacggcgatcgctactaaacagcaatagcgccagattgttttgcaggcccgtattgcccggtgcatccgcattgatgcgttttaactgattaatcgcttcgccacggcgagccggaattttcgccaccgtactccagtactcgacagcaatgtcaccttccggcggcgcaccgttgaacagtttgttgtaactcgccacagcttcttctgcatgaccggtcgtcgcctgcaatcgtgcctgttgcagtgcctgacgaccatccggcgtggaaagtagcatcgtagtccgcgacgatttatacgcatttgaactcggcgctaactgcgacagccgatcgagctgtttttgcgcgccatcaatatcgccctgacgtaacaaagaacggaaacgggcggcaacgacgtccgggttattcggatcaataagttccagccgatataacgactgttgcaccagatcttcacgatgggtcgcttcgcctaaccgaacttgctccagcaactgttgctgagcggttggtgctgcctcgaccatcggcatgacggccagaccgagggaaagcggaatatgtttagtgtgaatttgcgcattcctggccccagtcaggtaataactcaccttttgtcgagaagcggaaacggtgttgatcccagccttgtccaaacagggtcagcacatagttgtaataggcatcgctgccgggaaagttatcggccacgcgctggcgctgaacggcctgcgcatcgcggttttgtaaaaagggcagcatggcggcagaaaaaccgactggtcctttaccctgcgctttccccgtagccacatccactttttccggcggataaccgtttttctcagtgaatgtcgccatcggtttaaaccggttgagcatccgcgctttttgcggatcgctgtcaggcatcatgcctacccacatgtaaacgcggatagcgtcgtagctgctgatcaatgttttttcggcttttagctgccagcctttgtctttctcatagcgcacccagtctggcgaaaaacctttcggggcggtttccagcaataaacgttgattggtttcgcgcagcgtggtccacggcgcgccaaagcgggtgaaatactgcgccagcgtcggcggcaggtagctggggttaaaacgccagctgttatcctcagcaaaacccactttgcccggtaacaacatggaacccagcccaggcaccgtcaccacttcctcccgcgcgatacgttttagcaacgcgctgccgatgtcggtataacgctgctctttccacaaacgccccgcctccagcaacgaccaggccatccagacatcaccatcggaggccgaattgctgtccagcacttcccacttactgttctctttcttgccccacagccaggcgggcaaacgttcttttaaagaaccctgagcgagattgttctgcgtccagtcgagaatattatcgaaagctgcacggtcgttagccgccagggcagagaacatgccgtaactttgcccttcggaggtggtgattttgcgcgcgtcgctggggtcgatgacgcgcccttcctgactgatgtaatcctttttaaactgctcccaggcaggccaggtacaggctgcctgaacactaaaggcagccagcagcagcatcgtcacgattccactacgcaacacattcatcttcaattactcgttatccgggttaagacgacgacgactaataattcgcagcagacgccacagtacccatgccagcaatatcacactgatagccgccagcaccgccagcagaatcggatggtttgccagcgcataccacacgcgctcgaaccacggcagatgacctacgtaataaacgtcgccaacacgtaggctgttgataccggactcgcggatcaccgcgaccgaaccgaacatggtggcgcgtttgccgctatcgttcaccgcatcgttaagcatttcataaccgcgtgggctatctgccaacagcgcaatcacgctgcgctggtcgttatacggcgactggaagccaatcaccgccgccatcgcaccggaagaggtcagcgttgaccgggtttctgccgcgcgatcgctctcgtccggcacaatgccggggaacggggtctggcgcatcggtgttttcacccagctttcggtcgcctgcaccaataggtcgatctgcttatcgtctttcagtttgtccgggataccaccgatgatcatgatgtcggcatctttgccctgaatggtgctgccatcatcggtcaccgtcagattaatcgccgggaagcccgtctgtgcgccgataaaaccaacagtattcagcaacgtttccatctgtgcttcgttaggcgctttcggcatcacggtgatggtttgcgacagatccgccatccggctgaatgggaagcccgcgttagcaaaggcgcgtagatccggcatcgggatgaagtggtaatacttcgagaagtcgatggtggagtcgtcaccaatcaccacatgattctgcaccggctggaaggtaatacagttatccaccgaaccgcccggcatcgggttcatatactcaaagtcgaagcgcagctggttggtcgcgcccagtttcagcgccggaatagagacatctgttttgccatccagcaaaccttgtaataccggaatccgcagcagcaggcggttcgcctcctgtttgctgctcaggttgaaggattgcaggaactggttattcaggctgatatccatccgcgaactgtctttcaccggcggcatggtgtagcggtaattaatatccatatcaatgccggtactgcgcatcaggtagagatccggcggcaggtttagcgaaacgttaatcgctgctggctcaagaccgctggattgtaactgttcttcataggttttcagttcgccaaatgtgaccggacgatcggtacgtacccagttcggcgcatcgtacggcttacgcggtagcagcggtttcacttcattcactaccacgctttcaccacggaacagaatgttaccctgagcgatacctttcgctgcctgcaacaggtctttgtcgtcacgaccaaacaccaccagcagtttgacgtaaggattctgcggatggttaatcatctcaatcaccggggcttttaccgccggatgatcgcgcaggaagtccggccgtttgtcgttggttgcaaagacaatggcattgcgatccggcagttggttatagagtaccgggaagttctgcccacgccagccagaacgcgaaccaaaccacgaggcgacaatggcagaggcttgttgcagcccaacatccggcgcacccgcaaagaccatcggcaaggtgttggtgcggttatcgctcgggtcaaagaatggcaccgggaagtgtgacaggtcattcttcacattcagggtctgataggtcagatccagtccactgctccgcccaacatccagccaaagcgtggtgctggccggtttttcgcacacgtcctgataatggccgacaaactccagccgtacacggttgaagtcgctaataaacagtgggttaatgggcatttgcgccagcgtttttttacccaactgttctttggtcactggcagcacgcccatcagttcatcattgagataaacctttaactgcgactggacaggcagtaacgatggcgatggggtgtattcgaggttgagcatcgccttcgtcaccacttcatcgctgcgcataccaaactcaatgctgccgttcgggttaatgccacgtagcaccatgctgcccggcggcggtgcaatttgcgcaaaggtcagcttcacatcacgcgaaggaccgttctgcgccacgactggcgcatcagcgccctgcacgcccggcatcacttgccccacctgcggattttgttccgtctgggcggctacagctggctcagcattgatcagtggttgcgttgctggcgtcgcctgcgtcatgaaagaggggaacgcactcatccccatagccactgcacaaatccagaatagttttcttttcatcgcgttatcatcattgttgagccaaagcctgatccgatggttgtgccgtttcgctccgctccgggcggcgcggaataaacgatacaacccaggaaaccagagaagtcagcacacggaatatgcccttcaccgaagaaggcgcaaactccgccagatggcggtagccacggaagccgagcttcagaatatccagcagactttccagcggcttatcttccgggtagctgtcctgccagagcgcccatgtatccgcacgggcaaacgtacactgcacaaaatcgatatgttgctgggtggtgagcggcattaatttcagcccaacttcattacccatcacgcgcgccacctgggtcgggaagacgtattcctgctgaccgcgtttaagcaacagattcactttctgcccttccagaatctgcgcctgaccgttgatcttgatccccaaaccaccgtcggagaaatcctgaacggtacacgagaagaggtgaccatcttcgcgggcaattgccgcgggcatcgtcatctccacgcggtgcgatcggcgtacctgtttgctttctaccgataccgcaactgcgccgccaagaacaatcaggttgtagaacacccacaccatactgacgaccacggtgagcatctcggttggcgggccatagaagtagcgccagatgcctaccgcaacgcccaccaggttgagcaggacaaggaagatgtagggccgcgagatcacccagtcgacgtactcttcttccaccagtccacctttggcggtgacgttaaatttgcctttgtgcgggttaatcagcgccaccagcgtcggtggtgcgatataccacgccagcaccgtttcgtagatttcactccagaaagagtggcgatatttgccctggatcttggagttggtcaggctggcatggatcatatgcggcagcacgaatagggcgatcatcaacgctggcgcatagatgatgtaggcatgaagcagcaggaacgccagcggcgcagtcaggaagatcagccgtggaatgcccgacaagaagtggaacatggcgttgacgtaacatagccgctgagcaaacttcagccctttaccggtgagcgggttatcgagacggaagatttgtaccatcccgcgcgcccagcgaatacgctgaccgatatgcgccgacagactttcggtcgccagccccgccgcctgcggaatacgcatatacgcggaggtatagccacgacggtgcaaccgcagagaagtatgcgcatcttcagtcacggtttcgacagcaatgccgccaatttcatccagcggcttacgacgaatcaccgcacaggaaccgcagaagaaagtggcgtcccacatatcgttgccatcctgcaccagaccatagaacagcgtgccttcgttcggcgttttacggaaacgccccaggttgcgttcaaacgggtccggtgagaagaagtggtgcggcgtctgcatcatcgccagctgtttttctttcaggaaccagcccatggtcatttgcaagaacgatcgcgttggtacgtggtcgcagtcgaaaatcgacacgaactcgcctttggcatatttcagcgcattgttgatgttgcctgctttcgcatgttcatgagtggtgcgggcgatatatttcacccccacgttttgcgcaaactggcgaaactcttccctgccgccgtcatcaaggatccagatattcagcttatctttcggccagtcgatacccagcgaggcgtaaatggtatttttcaccacgttgagatcttcgttgtaagtcgggacaaagatatccaccgacggccacagcgacatatctttcggcaatggcaccggctgacgattcagcggccatactacctggaagtagccgagcaccagcacaatccacgcgtacgtttcagcgaagagcagaataagcccgcacaccaggctgaccggatcgtcccagttcagcgtagaggtgtaacgccaccagatataacggcaagaaacggtcagcgacagcacaatcaacattagcgccgagaagcgccccggcatccgccgtacgatcagcgctaccccccacagcagcatcaggaagataaactgcgccagcgggttaaacggctgagtaacgcagattaacgccagaatcagcgagaaggtgacgatgataccgaggatcaaccgccgcgccccggcactcaaatgaccgagctcttttttctcatccagatgctgtgttttatggcgtaacgcgctcaggcagctcgttcatccattgatggtaacgtccacgaatattttgcagacctgaaaatgcccgcctgcgcggtttcggcgtttctttgcgcgatgcaccgatcaataaccagcatgtttgaatgagataacggaccgggtccagcggacgcggacgcgaggcgttgatatgcggatacaggtttttatgttctgcgcgaatacgctgccagcgcgggtgctccagcggaataaaaatccaggccaggatcatccagaaacagccgagcgtcgcgctgaaagccgacgcaccgtgacgacgataatcgcgataacgcccgataagccgcgcgttgaccggcgggataagcaaccaccgggtcaggatactcatgatgcactcccgactggcgttttcagcccggagtagttcaacaggcaccagttcgccagcgtcagtatctcttcagccgccagcgcatcactgcgatattcacctactggttgcttagccgccaggcattcagccatcgcttcatcacgatgaatgagcatcggcagtaatcggcgctggctttgcaaccaaagctggtaaatatcgtcctgaacctgactgccaatacggaagtcattaatcaaaatatgtgcgccatccggcagcgcttgctgatgcagtcggatatggcagttggcatccacattgacgattgccagcgagtgatcgcacaaactcagcagctggtgggttatctgcgaggcatcacgcggtaagtcgattaaaatccactggtaacgcccgctggcttttagttgctgtaagccggagcaaatatcgctcagccgggtttgccagtgctgtggattttcttgttcttcaatggataactgaccaaaaggcagcaaatcgagctgcgaggtgtagcgcaacccagcgtcacgccagtcctggccatccagcatcgctctggcccagccctgacggtgggtaaaatcaacattaaatgacaggcgcaacaagttgtccgggcaggcatcgaccaccaggacattttctcccaacatttgtaatgaccaggctaatgcggcggtgatggttgttgtccccacgcctccccgcaccccctgctatcccagtacggccattcaccaatcccctacttttgttgcgcaaactctgccagcaacggccagcgttttaatgccgcggccaactgttcgcgttgggaaatatcggcataatcaatatcaggcagtgaaaatgcctgctttaacgccacaatatcattctggaagatatagcctatcgcgggatcaggcagagtatctggttcattgttattcattttgcttgatccctatgaaataaccgtaccgttcatgagacaattctaaccgtgagcatttcgccggtttattgtttacggcgagacgggaatttgctcactttttgactttccgttacgcaacagaaaaagttaaaaacgaaaagactaaaatcacacgtcttgtgaccttctaaattgattcacatgctaaatctgataagttttaatttcaatggtaggtttatttcttagctttcgctagtaaactgataatcagacaaaatggtgacatgagggacattgtggaccctgtattctctatcggtatctcatcattatgggatgagctgcgacatatgccagcaggcggcgtctggtggtttaacgtcgatcgccatgaagatgctatcagtctggcgaatcaaacaattgcatcccaggctgaaaccgcacacgtcgcggtcattagcatggacagcgatccggcgaaaatctttcaattagatgattctcaagggccggaaaaaataaaattattttcaatgctaaatcatgaaaaaggtctatactatttgacccgtgatttgcagtgttctattgatccccataattacctttttattcttgtttgcgcaaataacgcatggcaaaacattcctgccgagcggcttcgctcatggttggataaaatgaataaatggagcaggttaaaccattgttcgcttttggtaattaatcccggaaataataacgataaacaattttcattgttgcttgaggaataccgttcactttttggtcttgccagtttgcgttttcagggtgaccaacatttgctggatattgccttctggtgcaacgaaaaaggggtcagcgcccgtcagcagcttagcgttcagcaacaaaatggtatctggacattagttcaaagcgaagaggcggagatccaaccacgcagcgacgaaaaacgcattctgagtaatgttgctgtactggaaggtgcgccgccgctatcggaacactggcaactgttcaacaataacgaagtcctgttcaatgaagcccgtaccgctcaggcggcgacggtggtcttttctttacagcaaaatgcgcaaatcgagccactggcccgcagcattcataccctgcgtcgccagcgcggtagtgcgatgaaaatcctcgtgcgggaaaataccgctagcctgcgcgccaccgatgaacgtttgttattggcctgcggtgcaaatatggttattccgtggaatgcgccactctcccgttgtctgacgatgatcgaaagcgtgcaagggcagaagtttagtcgctatgtgccggaagatatcactaccttgctgtcaatgacccagccgctcaaactgcgtggtttccagaagtgggatgtgttctgtaatgccgtcaacaacatgatgaataaccctctattacctgcccacggtaaaggcgttctggttgccctacgtccggtaccgggtatccgcgttgaacaagccctgacgctgtgtcgccctaaccgtaccggcgatatcatgaccattggcggtaatcggctggtgctgtttctctcattctgtcggattaacgatctggataccgcgttgaatcatattttcccattgcctactggcgacattttctcaaaccgtatggtctggtttgaagatgatcaaatcagtgccgagctggtgcagatgcgcttgcttgccccagaacaatggggcatgccgctgcctttaacgcaaagttctaaaccggtcatcaatgccgagcacgatggtcgccactggcgacgaataccagaacccatgcgactgttagatgatgctgtggagcgctcatcatgatgaccatcagcgatatcattgaaattattgtcgtttgcgcactgatatttttcccgctgggctatctggcgcggcactctttgcgacgcattcgcgacaccttacgtttgttctttgctaaacctcgttatgttaaaccggccgggacgttacgccgcacggaaaaagccagggcaaccaaaaaatgactcaatttacgcaaaataccgccatgccttcttccctctggcaatactggcgcggcctttccggctggaacttctattttctggttaagttcggcctgttgtgggcgggatatcttaacttccatccgctcctcaatttggtgtttgccgcgtttctgctgatgccccttccgcgctacagcctgcatcgcttgcgccactggattgccctgccgatcggctttgctttgttctggcatgacacctggttgcctggcccggaaagcataatgagccagggttcgcaggtggcggggttcagtaccgattatttaatcgaccttgtcacacgctttattaactggcagatgattggggccatttttgttttattagtggcctggttattcctgtcacaatggattcgcattaccgtttttgtggttgccatactgctatggctgaacgtacttaccctggcgggaccaagtttctccttgtggccagccggacaaccgacgaccactgtaacaacgacgggtggtaacgcagcggcaaccgttgcggcgacgggtggcgcaccggtagtgggtgatatgcccgcacaaactgcaccgccaacaacggcgaaccttaacgcctggctgaataatttctataacgcggaggcgaaacgtaaatcgaccttcccgtcttcgctgcccgctgatgctcagccatttgaactactggtgattaacatctgttcgctttcctggtcggatatagaagccgccgggttgatgtcgcatccactgtggtcgcatttcgatattgagttcaagaactttaactccgccacctcctacagtggcccggcggcgatccgtttactgcgcgccagctgcgggcagacttcgcacactaatctgtatcaaccggcaaataacgactgctatctgtttgataacctttcgaaactgggctttacccagcacctgatgatgggacataacggccagttcggcggttttttgaaagaagttcgcgaaaatggcggcatgcagagcgaattgatggatcaaacaaatctgccggttattttgctgggctttgatggttcgccggtttatgacgataccgctgtgcttaaccgctggctggacgttaccgaaaaagataaaaacagccgtagtgccacgttctacaacacgcttccactgcatgacggcaaccattatccgggggtcagcaaaacagcggattacaaagcgcgggcgcagaaattctttgatgaactggacgccttctttactgaacttgagaaatcgggtcgtaaagtgatggtggtcgtggtgccggaacacggcggcgcgctgaagggcgacagaatgcaggtatctggcctacgtgatatccctagcccgtctatcaccgacgtccccgttggggtgaaattcttcggcatgaaggcaccgcatcagggggcaccgattgtcatcgaacaaccgagcagcttcctggctatctccgatctggtggttcgcgttctcgatggcaagattttcaccgaagacaatgttgactggaaaaaactcaccagtgggttgccacaaacagcaccggtctccgagaactcaaatgcagtagttattcaataccaggataaaccgtacgttcgcctgaacggcggcgactgggtgccttacccgcagtaagaacgaaaaaggccgcagagtttcccccctgcggcctggtccgggcgcaaattgccattacggcagcctgacgcccgcatgacacgttacttccgcttgttcagccagttcacgatcatactggcaagaatgccagcaatgaccggagccgctaaatcatgccagaaggccatgcccagctctgcgaacgtcatatagccgcctgtgttgtaatgacaacgtttcgcggctattcttgagtggtctagagtcaagattagcccccgtggtgttgtcaggtgcatacctgcaacgtgcgggggttttctctctccagcaaccaatgccaccagggataaagcccccgcaacattgcgcctcaccggaacctttccggcttgccgctgattctacgattgctttttactgtcagcacccggcaatcttcctcattgcgcgatgccttccagcttaatttctttatttgcaatagttgcagttcatatccgggctgactccagactggtagtgaaatgcgcaattttgtagaattgcgcctcctcgcgacctccccagtgaatctgttgcctcattttttacatactgcgtattcgacttctccacctgttgcgcaagagaaactgggtttattcatttttgcgaggccgacttctttctggacaggactttatgcagcacaacacactatcgaaacacaatcagaaattgccgtttacacgctacgacttcggctgggttttattatgcataggcatggcgattggtgccggaaccgtgctgatgccagtacaaattggcttgaagggaatttgggtatttattaccgcagcgatcattgcttatcctgccacctgggtagtgcaggacatttatttaaaaaccctttctgaaagcgattcctgtaatgactacaccgatattatcagtcattacctggggaagaactggggaattttcctcggggttatctactttttgatgattatccacgggatttttatctactctctctccgtggttttcgacagcgcctcgtacctgaaaaccttcggtttaaccgatgccgatctttcacaatctctactttataaagtcgctattttcgccgtactggtggcgattgcgtctggtggtgaacgattactgtttaagatttccgggccaatggtggtggtcaaagtagggattattgtcgtgttcggttttgcgatgatcccgcactggaatttcgccaatataaccgccttcccgcaagcctccgtctttttccgcgatgtcttgcttaccattccattttgcttcttttctgcagtatttattcaggtacttaacccaatgaatattgcctatcgtaaacgggaagcggataaagtactggcaacccggctcgcgctgcgtacccaccgaattagttatatcacgctcatcgcggtgatcctgttttttgccttttcgtttaccttctcaattagccacgaagaagccgtttctgcctttgaacaaaatatctcagcactggcgctggccgcgcaggtgatccctgggcatatcattcatatcacctctacggtgcttaatatctttgccgtactgaccgcattctttggcatttatctcggtttccacgaggccattaaaggcattattctcaatctgttaagccgaattattgataccaagaaaattaactcacgcgtgctgactctggcgatctgcgcttttatcgtcattacgttgacgatttgggtttcgtttcgtgtatcggtgctggtgttctttcagttgggaagcccgttatatggtattgtgtcgtgcctcattccgtttttcctgatctataaagtcgcacaactggaaaaacttcgcggatttaaagcctggctgattctgctgtacggcattttgctatgcttgtcgccactgttgaagctgattgagtaaaccggagcgcatggccccggttttgtgagttaacgctgcggattttcatcctgatcaacagcaaaacaagctaccagttgaccgccgtagtcttttagctgcggctgcaactgggtgcaggggccgaagcgccgacgacagcgggcgttgaaggcgcaacccggcggtggattcagtgggcttggtagttcaccgctgagcttgatgcgctcgcggcgatcgtccgggttcaggcgcggcgtcgcggaaagtagcgcctgagtgtacggatggcgcgggttattgaagatttggtctttcgttcccttctccacgcagcggcccaggtacatcaccatcacttcatcagcaatgtgctccaccaccgacaggtcgtgggagataaagacataagacagccccaactcctgctgcaaatccatcatcagattcagcacctgcgcgcgcactgaaacatccagcgcggaaaccggttcatcggcaatcaccacatccgggtcgagcatcagaccacgggcgatggcgatacgctgacgctgaccgccggagaacatatgcggatagcggtcatagtgctcggttttcaggccgactttcgccatcatcgacagggctttttcccgacgctgttctttgcttaagctggtgttgatcagcagcggctcttcaagaatttgcccgacttttttacgcggattcagcgaaccgtaagggttctggaagacgatctggattttctgccgacgcagcttctgcgcctgcggatcgtgcttaagcagatcctgcccctggtaatacagctcgccaccggtgggcatttcaatcatcgtcagcaaccgaccgagggtcgatttaccgcagccagattcgcccactactgccagcgttttgccacgttcaaggttaaacgaaacgccatccagcgctttaaccagacgttccggcgcgaacatgcctttcttcaccggataatgttttttcaggtcgatagcctgcaacagcggttgttgcagggtggcctcttgcgtactcatagtgtcggcctcccggcatcatcaagtgggtaatggcatttggactgacgcccgtcagcgagcatattcagcgccggttcttcagcgcgacatctgtcagtggcataggggcagcgcgggttaagcaggcagccgttcgggcggtcgtacttgccgggaacgacacctggcaacgacgccagacgttctttgtcctgagcaaattctggcagcgcacgcagcaatgcctgagtatacgggtgacgcggcgcatggaagatggcgtgcgcatcaccggtttccaccacctggcctgcatacatcacgatgattttatgtgccgcttccgccaccagcgccaggtcatgggtaattaacaccagcgccatgttctctttctgctgtagctccagcagtagttcgatgatttgcgcctgaatggtcacgtccagcgcggtggtcggttcatcggcaatcagcagttttggccgacaggcaatcgccatggcgatcatcacgcgctggctcatgccgccggaaagctgatgcgggtaaacatccagacgcgatgccggatcgggaataccgacctgattcagcaggtcaatcgctcgctgacggcgggtacttttgttgccgccctgatgcaccttaatcgcttccataatctggaaacccacggtgtagcacgggttaaggctggtcatcgggtcctggaagatcatcgccacttcggcacccaccaggttgcggcgctctttttctgagatacgctgcaaatcctggccgttaaactccagtttttctgccattacgcggcccggataatcaatcagccccataatcgccagtgaactgaccgacttaccggagccggactcacccacaatcccgaccacttcgccctgttttacgctgtagctgatgcggtctacggcgcggaacggcgcgctttcgtcgccgaaatgcaccgataatttatctacatttaataacgccatctcgaacctcttactgcttcagtttgggatcgagcgcgtcacgcagaccgtcacccatcaggttaaatgccagcaccgtcagcaggatcgccagacccgggaaggtcacgacccaccaggcgctttgcgcgaactgcaacacgtcggagagcatggtgccccactcaggcgttggcggctgtgcccccatgccgaggaaaccaagagcagccatatcgagaatggcgttagagaaaccgagcgacgcctgaacaatcagcggcgcaaggcagttcgggaagatgttaataaacatctgacgcatcgccccggcacccgccacgcgagacgcggtgacgtaatcgcggttaacttccaccagcacggcggcgcgggttaagcgcacatagtgcggcaaggcaacgaaggtcagtgccagcgcggcgttaccaatcgacgggccgaaaattgccaccagcaccagcgccagcagcagacttggcagcgccagcatgatatcgaccacgcgcataatgatgttatcgaccaggccgccaaagtaaccggcgatcaggccgagaataacgcccataatcagcgataacacaactaccagacagccaaccagcagcgacaggcgcgcaccgtacatcaggcgcgacagcacatcacggcctacgtcatcggtgcccagcaagtgcgccatgctgccgccttcctgccaggctggcggggcgagcagtgcatcgcggaactgttccgccgggttatagggtgcaatccagttggcaaagatcgcgatgaacagcacgatgacgacgtaaaccagcccgacgaccgcgcctttgttgcgtttaaaatagtgccagaactcctgtaacggggtcatcggcaccggtgcgctaatcactttattttcagtaacctgtgacatgatgtccccttacttcttatgacgaatacgcgggttcaccacgccgtacagcagatcgaccagcaagttgacgaggataatcatcgtcgccaccagcaatacgccgccctgcactaccggatagtcgcggcgttgcagtgcgtcaatcaaccagcgtcccagaccgggccacgagaagatggtttcggtcagaatcgcccccgccagcaatgttcccacctgcaggccgataacggtcaccaccggcagcatcgcgttacgcagcgcatggacgataatcacccgcatgcgggttagccctttggcgcgcgcggtgcggatgtaatcctcgcccagcacttccagcatcgaggagcgtgtcatacgcacaatgaccgccagcggaatagtacccagcacaatggcaggcaagatcatatgggcgacggcatcgataaagttgccgtcttcaccccagatggcggtgtcgattagcataaaaccggttaacggattggagtcatcgaggaacaccatatcgctcacgcgaccggagacgggcgtcaggttccagtgcaccgaaaccagcatgatcagcatcatgccccaccagaagataggcattgaataacctgtcagcgccaggccaaccgctgtgtgatcgaaaatggaaccgcgtttaaccgcagccagcacgccgaccggaataccgactgccgtagcaaaaatcatcgcgcagacgccaagttccagcgtggcctggaagcgcggcacgaactcttcccaaaccgggatgcggcttttcattgaaatgcctagatcgccatgcataacgccccaaatgtaatggagatactgctgccacatcggtttatctaagccgagttcagccagcagctgcgcgtgacgctctggggagatcccacgttcgcccgccatgatcatcaccggatcgcccgggatcatgtggacaaaggcaaatgtgagaagggtaataccgataaacgtggggatgacgagtcccaaacgtcggagaataaactgcaacataacccggattctctatagtgacccgcagcctggaactgcgtgtctgtattgctcacaaatcaattcccgcccttatcggacagggaatgaagtattgctgccggatggcgctgcacgcagaggcacagcgccaccgggtatacagattgttgacaaagtgcgctttgtttatgccggatgcgcggttaacgccttatccggcctacaaaatcgtgcaaattcaatacattgcagaattttcgtaggcctgataagcggagcgcatcaggcatttttgcctttgccatcagtcttgtatggcttttaattattcgatagagacgttttcgaagtgatgtttgcctaatggatcaaccacatagcctttaacttctttacgtaccggttcaaacacggtggagtgagcgatgatcagtgccggagcctgatcgtgcatcaccacctgcgcttgtttgtacagttcaacgcgtttattgtggtcgtcggtagcacgcgccggttgaatcagatcttcaaacggtttgtagcaccattttgagtagttggagccttgttcagaggcggcgcagctgaacagggtggcgaagaagttatccggatccccgttatcgccagtccagcccatcattaccgtctggtgctcgccatctttcgcacgcttgaggtactcaccccattcgtaggtgacaattttggcctgcacgccgactttcgcccagtctgcctgaatcatctccgccatgcggcgagcgttcgggttatacggacgttgtaccggcatcgcccacaggtcgatggagaaacctttttccagacccgcttctttcagcaaggctttcgctttttcaggatcgtaggtgtagtcctgaacgtcgtcgttatagccccacatggttggcgggatcaggtttttcgctgatacgcccgcgccctgataaaccgctttgatgatcgcgtctttgttcaccgcgtaggtcagagcctggcgaactttcacgtcatcgagtggttttttctgcacgttatacgagagataaccgacgttcagccccggcatttccatcagattgatggatttatcctgcttcatgcgagcgatatctgccgggttcgggtacggcatcacctggcattcattcttctgcaatttcgcgtaacgcacggaagcgtcaggggtaatagagaaaaccagcgtatcgatctgcggtttggtgccccagtagccatcaaacgctttgtagcggatacgggaatctttttgatactgctgtaactggaacggaccggttccgattgggttgaggtccagtttttccggtgtaccggctttcatcatcgcatcagcatattcttttgacagaatagaggcgaagtccattgccaggtcagcgaggaacggcgcttccgggcgagtcagcacaaactgaacggtgttgtcgtccacctttttcacttcactgatcagctctggcaagcccatgccttcgaagtattcgtagctgccgccagaaactttatggtacgggttttgcgcgtttttctgacgatcgaacgagaacaccacatcatcggcgttcagttcacgcgtcggtttgaattctttattgtcgtgccacttcacacctttacgcagatggaaggtataggttttaccgtcttcgctgacttcccacttttcagcgaggcccgggatcacttcggtggtgccgattttaaattcaaccagacggttataaagcgggacggaagaggcgtcataggtggtgccggaggtaaacagctgcgggttaaacccttccggagatccttctgagcaataaaccagagttttagcctgaacacttgctgcgacggtcatagccaccaggctgagaccaagcttcagcatccctgactttttcaaggaaatacgcattattctgctccaattgtgatgtttgttgttttaaccctttgcagtgggttgtcgctgcctgaccttttttgttttttgcccggtcgggtcaacgttatgaggtggggatgccgtactaattaacatcagtgtaacagtgcggatcctccataaaatgcccctcgtgacctacaatctgtcaacagaatgtgaaaacgtcaatacagccaaccgggatttacaccaacggtgagaatccacacacaaagattaaaaaaacttcaaacagctatttgcagcagagaaatttgtgctactccaacatgaccagaacaatcagcttaatatttagcaacatttggtgattaagttttatgcatttaatgaaaaaaatctgaggaaaaggtggatatctgagcgattaataccatgaacgctaaaacgcacagcggaaaatgccagggccagccataagtaacgcaaaaaaagatttaagcaaatataaaaaaagacaatggtttctgtcacaaatccgttaatggatagtgagatatggggcgcaaatttggcagggaaatgtgtgtcgtgtaggtcgaataaggcggtcgcgccgcatccgacaatggccggcacatttgcctgatgcgacgctgacgcgtcttatcaggcctacgtcgagtcgaacctccctgcccccggaggttctcatcctcatgagctgcagatgcaaaaaagcctgctcgttgagcaggcttttcgaatttggtcggtgatagaggattactcgccacttcgtggctcgccctgcgggccgttgctggcgcaacgttctctcgcttcgctcgagtcgaacctccctgcccccggaggttctcatcctcatgagctgcagatgcaaaaaagcctgctcgttgagcaggcttttcgaatttggtcggtgatagaggattcgaacctccgaccccttcgtcccgaacgaagtgcgctaccaggctgcgccaatcaccgaatgcggggcgcatcttactgcgcagatacgccctcgtcaatcccttaatagcaaaatgccttttgatcggcgagaaagtcagcaggccgcttagttagccgctgcctcttttgcctgcggatgtgacaccagttgttgttttcgttaattccaccatccggtgaagtatagccaagacaacccatgatggtatcgtacagctctacgtgacggcgtggcactttcatgtcggcttcttttttcagctgcgcaaacgcctgcgcattggccggattttccagatatttatctgacatccagaccatcatcggtacgcggaactgctccggcggtgccagttcacgcggcgtgccgtgcaggtgctcgcgttcattaattgactcaccgtggtcagctgcgtagaacacaatcgctttcttatcgcgaacctgatcaatcacgctggagataaagtgatccacataggtcaccgagttgtcataggagttgatcatctgcgctttggtacagccgctatcaacaccaatacattccggcttccactgcgcgaagctacgcggataacgctgggtgtagttaaaatgcgaacctttggtatgcagaatgatcagatgcttaccatccgggttgcgccctagcgattgctgcatttcgtctaccagcaacatatcatctaccggcttgccacgattacgtggctccgcaccaatctgctcacgataagcaatgttgtccgccatcgtgttgctgtagaaccacatttcgctctgcatagcgtagaggtcagaactgaatcctaactgcttcagaaccgcgaaaatgttctgttcttttaatgtgcgctgcggattatcttccgcgcccccctgacgtacaaacatgcaacgcagtgagagtttggttgcggtatcacaggagtaaccacggaacgccgccagatttttctcctgggccagtttcggcgtggtattacgctcatagccgaaaatacccatatggtcccaacgcgtggtttcaccgatgataaacacgacataagtgtcatcaacgttttgcggtgcctgataagtgaatttcttcgccggattaagcaatgaattattatcggaagattcatcgacccgcgcccaggcatacagccccaacgcagaaagccagtttgatggcagataagagttcgctacgacaccgccataactcggcaaatcaacgccggtcgccctctccactttcttctgctggatatccagcaaacgaatcggtgcccaaaccataatacccgccagtacgacgaccgccaggctgcgaatacgctgccctggggttcgcagttgtcggagcaaggtgtagcgacagcggttattccagataaggataagaggcaatgcactaacggcgattaaccagagaataaagttcagaccaacaacttcttttgacaggtcgatatcggtggtcatgacggaagcgatgatgccataaccaatgaccacattaaggaaggtcatgtaatagctggcacctgcggaaaagagcaccaccagcgatgccagaatacgccagctgcggcggccaaacagcgaaagaagacgtagtaaaaagaaggtcaccagtacggtggcggccagttcaacaacagcagaaatgcctttccagacggtaaaatcgtgcgcatagctgccgaagcggcggtaaaaaaccgcgccattcataaaaaggccaatatagattgcaagcaaaaagctcagcttctgctgtgtaatcgatttgatgtatctcatgcaaacaaaccctggacaaacaggtgataacaccctgcttagtggcttttcaggcccggcagggaaaaagtgcggaggtagtcagataagtaaaatctacacgcgcgaataagtagaccacagcaaagggaaaaagtgtggggaaagagtgtgcatgaagcacaaatttacaaaaatgcaagtttgaaaagagactttagcgttacaaaaagcagtaaaaagggccagttaattggcccaaattttacgagtcattgtttatacatttcgttgatgcgtttgatgcacacggaagctgaagcccagtagctcgcggctgagcattaaagggagccatgcgcctcacgcaacattttctgctctggctgacgaatcgtcgtagaaagcgccaatgacagaatcagcagggcgaaaatcacgtagaaggtcacatagaagccgccaaacagtgaggcgataatcgaaccacaaatgctaccgataccgaaaccgagataaatcacaccgtagtttttcgccaggttattgaggccaaagaactcactgaccagtgacggaaagacggtaatagtgccgccaaagttaaatgccacgcaggcaatcgctgcaaagaacgtcactgcattcaatggtgcaaacagcagggccgccatacccaccagcgatatcacctgaccaatggtaataacacggatacgggcgattttgtcagacagaatacccagcaccagacgacctgaaaggttggcgatggaaataacagtgactgcattggctgcggaaaccacatcaaggtgtgccagactttgggcgatatctttcgctaccccaatcacgtacaggccgctcatgcaggcggtcaggaacattaccgctaacatccagtactgcggtttacgcatcgactctgccagcgtgtaatctttctccaccacaccattgctggttttcacttcctgttttggtgcgtctttcattaacgttgcgccgaaaacaatcatcaacagcgcaatcgctccccaaatcacaaaggttttttccagaccgaccgtttccagcagctgcgtgtcgataaatttgaaacccaggctacccagaccataagaaccgatagcgaacgcggagatcagacctttacgctccgggaaccacttcacacagttagagagcgtcagcagataacccgcgccatctgccagtcccaccagcacaccggcgcttaaccacagcatcatcaggttgtcagaatgcgctgtcaggaagaagcctaatcccagcaaaatgccggaagccatggtgacgcgtttaacgccaaaacgttcctgtaatttgcccgcaacagaagacgaaattgccagccccagacttaacaagccgaaagagaaagcgacctggcttaccggcgcatccagcttggcggaaagcgcgccattaaacaggctccaggtataaaccgaccccagcgcaaactgggtaatgatagtaccgatgagtgtcagccagcgggtacgctgataatttgaaggtgtcatggcagtattcctgcagtaataaaaaggaaaaatctctgccgacaaccataacgaagtgcactttatgcctggggaaaaacggcatgaaatgccatcagaacggaatgaaatgccttagttcaggaatgaatgacgcgacaattattcaccaaatttattatttggtaagttagcacccactatcgccacaactattgttatttaatggtttcaattgtgactgttacgttaaaatctggcgctaacccccatcgtatacagatagtcgctattattagtggtattttctgcctgagttagcgcggcataggcggcaatattttgattgagcaacatatcagcgcctacggtgacatccagccagttgccgttctggtttgtcgccgtcatccggctcaggcctgattgcgccttccagatattctcgccaaattgctggttatagctgatttgcgcccagggtcggagatcgccaagccgggagtcaacacgccagcctaaggtactcacgctggcatgccataacggatcggtcagcgtggtagtactgtcgccaaactcgttatacatcgaggtggttgtgccatcgtaatgtaatgccgcgaccgggccggttgtaacctgttcatataaaggaaaattccagcccatactcatactgctggtcacatccacaggggtttcttccgccagattgacttccagtcccagcgccctttggctactttgaatacgttgcgacaaaatatcgttgtaatcaggttgatgatcactatcccaggtgtaacgctctgtggaaagtccgggttgcgtatcaacgatatattcttgttgccaggcgtaagctgtgttgagaaaaaaggcactgattaccacgctcgccagcaggcttagctgccagcgaccaccgcttttttttatgatcattaacacgactccagggaagagccgaattcggcaatattattgtcattgtatgaaggatatcgggcatagtagccctgtattaaatattgactttttcaccgatgcgtcaagaaaagcggctgaaatttttacgatcgggtacatagcgagggaaagtatggaacgttgcggctgggtgagtcaggacccgctttatattgcctaccatgataatgagtggggcgtgcctgaaactgacagtaaaaaactgttcgaaatgatctgccttgaagggcagcaggctggattatcgtggatcaccgtcctcaaaaaacgcgaaaactatcgcgcctgctttcatcagttcgatccggtgaaggtcgcagcaatgcaggaagaggatgtcgaaagactggtacaggacgccgggattatccgccatcgagggaaaattcaggcaattattggtaatgcgcgggcgtacctgcaaatggaacagaacggcgaaccgtttgtcgactttgtctggtcgtttgtaaatcatcagccacaggtgacacaagccacaacgttgagcgaaattcccacatctacgtccgcctccgacgccctatctaaggcactgaaaaaacgtggttttaagtttgtcggcaccacaatctgttactcctttatgcaggcatgtgggctggtgaatgatcatgtggttggctgctgttgctatccgggaaataaaccatgattcgggaagcgcaacgttcagaactccccgcgatcctcgaactgtggctggaaagtacaacctgggggcatccctttataaaagcgaattactggcgtgactgcattccgctggtgcgggatgcctatcttgccaacgcgcaaaactgggtctgggaagaagacggtaagcttctcggttttgtcagcattatggaaggccgatttctggcagcgatgtttgtcgcaccgaaggccgtcaggcgcggtattggtaaggcgctgatgcagtatgtgcagcagcgccatccccacctgatgctggaggtttatcaaaaaaatcaaccggcgataaatttttaccaggcacagggttttcacattgtcgattgcgcatggcaggatgaaacccaactacccacatggattatgagctggccggtggttcaaacgctgtaagtgtcagttccggaccgttgtatttttccagccatgccagcgccgtattacccgcacagccattccccagccgcgagctggggagatctttggtcagcacgttcactgcgccgtttttacaaataccgtcagcggttaaatccagatccggccatgccccttcgtgaatgcaaatcacgccaggtttaattccctcgctaatgaccgctccggcaagaatttgcccgcgtgcgttccacaaccgaacagtatcgccatcttgtatgccgcgctcctgggcatcgtcaggatgaatggtgacaggctcacgatttgccaccgcgtacaattcgcgcagagaactgtaattcagctggctgtgcaggcggtgcgccggatgggcagaaagtacctgcaactgttctggttcggcattgccctgccattcgtccggctccagccacattggatgcccagggcaatccgggtaaccgtaatcggcaatacgctgtgagaagatttcaatcttgccgctggcggtttttaacggatgcgccagcggatcgcggcaaaaatcagcgaagcgaataaaccgctcgctgtccgggttttccggcatctcaattaactggttggcttgccagaactcagcaaatggcggcaattcaacctgctggcttgccccgcgctgtcgggcaacgttataaaacgtttccagccattgcagctcactttttccttccgtaaaacgtgcataaccgcccttctcccagcgttcacttaactcggcaaaaacatcaaaatcattacgcgcttcatagcgtggcggcaccacttgcttcatcggcaccagatgctgattactgtaatcaccggtcatggtgagatcattacgctcaaaagaggtagtcgcaggcagaacgatatccgcgtgttttgccgccgccgtccagaagcattcagagatcaccaccagctccggtttttgccaggcacggatcaggcgattggtatcctgatgatgagtaaagttggcaccgcccgcccaccagataaaacgaatatccgggaaatgtcggttcataccgttgtgttgatatgcgccaccagggttttccagtgcttcaacaatgcgggcaacagggattttatccaccgcatcgcagccacccggcaagctgccctgcatggaagagagcaccgcagaacgccgcgtggggttaccaccattggcaaaatggtaagaaagaccaaaaccgccgccgggtgtgccgatttgccccaacattgctgccagcgtgacgatcatccagtgtttttgctcaccaaactgttggcgctgcattccccagcctgccatcagcatggtggtattttggtggaaaatagccgccagctcgcggattttcgctgcgccaacaccacaaatctctgctgcccattcggcggttttcgctattccgtcactctcgcccagcaaataagaggcgaagacggcataacctgtggtgcaacgcgccagaaacgcttcgtcgtgccaaccattttccaccagcgtatgggcgatccccagcatcagcgcaacatcggtgcccatgtgcggtgccacccactccattttatcgccaaagaaatcgacggtttccgatcgcattggatcaatgcagatcagctttttcccgctgtcacgcagtgcagaaaagtaagaaagcccctgctcatcggatgcattccacgcaattttcagcgtattgagtgggttagcactccacagcaccacgacatcgctatgttccagcaccagcggccaactggtctgctgttgataaacttcactaccacccacgacatacggcatgatcgcctgtgccgcgccggtcgaataatcccccagatgcccggtataaccgcctgccagcgccatatagcgttgtaataatgtcgaggccttatgcagcacgccgtttgaacgccagccgtaggaaccagcaaaaatcgatgccggaccataagcctcacgaatgcgtttatgttgttggtgaataagatccagcgcctcatcccaactcacgcgaacaaattcatcctgcccacgaatgccttgcgggttttccggtgacgcaagaaagccttttcgcaccattggaaatcgtacccgcgtattgctgtgaacctggtcgcgaaccgcgctctgcaaggagttttccattcctgtggctaacgcgccacgcgagctaaacacggtttcgccgtcggtttcaaccagcatgggcccccaatgggcggcagtcagaacggaatatcgtgaggatgagttggccaaaccgaagactcctgaaaggttagatgtattgagcagttaaatattacttacaaatttccgagtattcccaggaataatcttcatgttcacgcggcataatctcccgccacggaacccgtggcaaagaataaaaaggttattaaggattaacaatgaagaaacgtgtttatcttattgccgccgtagtgagtggcgctctggcggtatctggctgcacaactaacccttacaccggcgaacgcgaagcaggtaaatctgctatcggcgcaggtctgggctctctcgtgggcgcgggtattggtgcgctctcttcttcgaagaaagatcgcggtaaaggcgcgctgattggcgcagcagcaggcgcagctctgggcggcggcgttggttattacatggatgtgcaggaagcgaacgtgcgcgacaaaatgcgcggcactggtgttagcgtaacccgcagcggggataacattatcctcaatatgccgaacaatgtgaccttcgacagcagcagcgcgaccctgaaaccggcgggcgctaacaccctgaccggcgtggcaatggtactgaaagagtatccgaaaacggcggttaacgtgattggttataccgacagcacgggtggtcacgacctgaacatgcgtctctcccagcaacgtgcggattccgttgccagcgcgttgatcacccagggcgtggacgccagccgcatccgtactcagggccttggcccggctaacccaatcgccagcaacagcaccgcagaaggtaaggcgcaaaaccgccgtgtagaaattaccttaagcccgctgtaatccctttcatgccaggtgatgcagaaatcacctggcattcttcagttttccttcatcatatttcaggctaaggtgatcgccttatcagtgaatggagagaagcatgaagccgtccgttatcctctacaaagccttacctgatgatttactgcaacgcctgcaagagcatttcaccgttcaccaggtggcaaacctcagcccacaaaccgtcgaacaaaatgcagcaatttttgccgaagctgaaggtttactgggttcaaacgagaatgtaaatgccgcattgctggaaaaaatgccgaaactgcgtgccacatcaacgatctccgtcggctatgacaattttgatgtcgatgcgcttaccgcccgaaaaattctgctgatgcacacgccaaccgtattaacagaaaccgtcgccgatacgctgatggcgctggtgttgtctaccgctcgtcgggttgtggaggtagcagaacgggtaaaagcaggcgaatggaccgcgagcataggcccggactggtacggcactgacgttcaccataaaacactgggcattgtcgggatgggacggatcggcatggcgctggcacaacgtgcgcactttggcttcaacatgcccatcctctataacgcgcgccgccaccataaagaagcagaagaacgcttcaacgcccgctactgcgatttggatactctgttacaagagtcagatttcgtttgcctgatcctgccgttaactgatgagacgcatcatctgtttggcgcagaacaattcgccaaaatgaaatcctccgccattttcattaatgccggacgtggcccggtggttgacgaaaatgcactgatcgcagcattgcagaaaggcgaaattcacgctgccgggctggatgtcttcgaacaagagccactgtccgtagattcgccgttgctctcaatggccaacgtcgtcgcagtaccgcatattggatctgccacccatgagacgcgttatggcatggccgcctgtgccgtggataatttgattgatgcgttacaaggaaaggttgagaagaactgtgtgaatccgcacgtcgcgactaagccgcgactgcgtagagtaaagcccgataatcgctcgggcttttactctttattgggttgcagtaactgctgtagtccaggcctgattaaacgcctgatgctgtgccggtaatggcgcaatcagtttgttatattcacttgcctgctgtgaagtcgggaactggatgccatttgcgacaaagctcacctgagtaccttgctgagcaatgtagtctccaaccatcaccagttgttgcgtgaaagtttgtgccgccggaatcaacggttgcaatgcatcagctggcgtcgttaccactttggtgaatgcctgatcaaagaccggtttcaaatcatcgctctgttttagcgcagagtgcgcagcatcggcctgcaacttcgcattttgcagttgttgcgccagcacacccagcgaaccgttcatttcacgcagcggaccgctttgcgtaacgtaatcctgcggtacgcgaattgcgttaacgctgtctacaaccgggcgcagaccggaatccatcgcctgattcacctgctgagaataaccatacagaatcgcgtaatcagagacaaaaggaccaaactgttttttctgatcggcagtcagggttggtagacgttcaccgctacgcatcactgtattctgcaggaagtcgataaacgctttacgctgatcgccttctttatcaaaacacccactcaggctaactaccattaataacgccgcaagaggcgcaaaccagcgagagcaggactttcctgtcgccattttcttactcctttcacccaaaaaaagcgcacaacgacacacgcgtgtctgacgtgacaaggatagtccaggacaggcttgcaggataccctttctacgtaatcttcctggtaaaatcatggagaaaatgaaacaaggttaatttgttgtttcattgttaaaaaatgatagtgccgttgccttttttgtagccagagatttacgccttcgcagaaggttagattttcgaaatctttacaaaacaggagtggtaagagatatatcggcatttatcagatcgttaggtggctataagtcacgctaaatgacaggctgaatcgaatcatagccagagcatgccctgacttcaccccgctgtgtctgcttttcccgactattcttaatgagcttcgatgcaattcacgatcccgcagtgtgatttgaggagttttcaatggaatataaagatccaatgcatgagctgttgagcagcctggaacagattgtttttaaagatgaaacgcagaaaattaccctgacgcacagaacaacgtcctgtaccgaaattgagcagttacgaaaagggacaggattaaaaatcgatgatttcgcccgggttttgggcgtatcagtcgccatggtaaaggaatgggaatccagacgcgtgaagccttcaagtgccgaactaaaattgatgcgtttgattcaagccaacccggcattaagtaagcagttgatggaatagacttttatccactttattgctgtttacggtcctgatgacaggaccgttttccaaccgattaatcataaatatgaaaaataattgttgcatcacccgccaatgcgtggcttaatgcacatcaacggtttgacgtacagaccattaaagcagtgtagtaaggcaagtcccttcaagagttatcgttgatacccctcgtagtgcacattcctttaacgcttcaaaatctgtaaagcacgccatatcgccgaaaggcacacttaattattaaaggtaatacactatgtccggtaaaatgactggtatcgtaaaatggttcaacgctgacaaaggcttcggcttcatcactcctgacgatggctctaaagatgtgttcgtacacttctctgctatccagaacgatggttacaaatctctggacgaaggtcagaaagtgtccttcaccatcgaaagcggcgctaaaggcccggcagctggtaacgtaaccagcctgtaatctctgcttaaaagcacagaatctaagatccctgccatttggcggggatttttttatttgttttcaggaaataaataatcgatcgcgtaataaaatctattattatttttgtgaagaataaatttgggtgcaatgagaatgcgcaacgccgtaagtaaggcgggaataatttcccgccgaagactcttactctttcaatttgcaggctaaaaacgccgccagctcataactctcctgtttaatatgcaattcacacagtgaatctcttatcatccaggtgaaaaataaaagcgtgaaacaaatcactattaaagaaagtaatctatatttctgcggcattcccagcctcctgtgttgatttccaacgagtatgtactgcacccattttgttggacgatgaaatggaatagcccctaatatgtcaaagccaaaatacccttttgaaaagcgccttgaagtcgtgaatcactacttcacaactgatgatggttacaggatcatctcggcacgttttggtgtcccccgaacccaggtcaggacatgggttgccctctatgaaaaacatggagaaaaaggtttaattcccaaacctaaaggcgttagtgctgatccagagttgcgtattaaggtcgtgaaagctgtgatcgagcagcacatgtcccttaatcaggctgctgctcactttatgcttgctggtagtggttctgtagccaggtggctgaaggtctatgaagagcgcggagaagctggtttacgcgcgctcaagattggcaccaaaagaaacattgcaatatcagttgatccagaaaaagcggcatcagcattggagctgtcaaaagaccgacgcattgaggatcttgaaaggcaagttcgatttcttgaaacgcggcttatgtatctaaaaaagctgaaagccttagctcatcccacgaaaaagtgaaagtactcaacgagctaaggcagttttatcctcttgatgagcttctcagggctgcggagataccgcgcagtacgttttattatcatctaaaggctctcagcaagcctgacaagtatgcggacgttaaaaagcgtattagtgagatttatcacgagaatagaggccgatacggataccgtagggtaacgctgtctcttcatcgagaagggaaacagattaaccataaagctgttcagcgcctgatgggaaccctctcacttaaagcagcgattaaggtcaagcgataccgctcttacagaggagaggtagggcaaaccgcccctaatgttctccaaagagatttcaaggctacgcggccaaacgagaagtgggttaccgatgttactgaatttgcagtcaatgggcgcaagctgtatttgtctccagtaatagatctcttcaacaacgaagttatttcttacagcctttcggaaagaccagtgatgaacatggttgagaatatgctcgatcaggcattcaaaaagcttaatcctcacgagcatcctgttctgcactctgaccagggatggcagtatcgtatgagaagatatcaaaatatccttaaagaacatggtattaaacaaagcatgtccagaaaaggcaattgtctggataatgctgtggtggagtgtttctttggaaccttaaagtcggagtgtttttatcttgatgagttcagtaatataagcgaactgaaggatgctgttacggaatatattgaatactacaacagcagaagaattagcctgaaattaaaaggtctgactccaattgaatatcggaatcagacctatatgcctcgtgtttaactgtccaactttttggggtcagtacaaactttgatttatagtcaggtggggcttttctctgtctgcctttcggtgaatacctgagacaaacagtctcaagcacccgtggctattctagcttaataagtttgtttcttctccttgatataatcctaaaaaaatctcataaaattaatatatgagataatctttattcagcagaagattattaaaggttgctgtattatttagcgataaaaaaagcctgccagatggcaggctatttaataacggcgttattattgcaacagcgaaatatccgcaacgcgcaggaacagttcgcgcagtttctccagcatggtcagacggttgatacgcaattctttgtcatcaaccatgaccatcactttatcgaagaaagcatcaaccggttcacgcagctcagccagttcgaccagcgcatcctggtaacgaccttccgtaaagtacggctccagcttgtcacgtagcaccacaacctgcatcgccagtttaatttcttccggctctttcagggtagaggcattcacgcggtcgctcagcacttcgtcagatttcgccagaatgttagatacacgtttgttcgccgccgccagtgcagcagctgcatccagggtacggaaatgcgataccgctttcatacgggcatcgaaatcagccggacgagtcggacgacgcgccagtaccgcctggatggtgtcaacggtataaccttcgtcctgataccaggcgcggaagcgaccgagcataaagtcgataacatcatcaactacgttggcattagtcagcttatcgccatacagacgcaccgcttcttcggtcagcgtttgcagatcaaggttgaggttcttctcaacgataattcgcagcacgccaagcgcggcacgacgcagcgcaaacgggtctttgtcgcctttcggatgctgaccgataccgaagatacccgccagggtatccatcttgtcagcaatcgccagcgcacaagctactgggttggacggcaggtcatcaccagcaaaacgcggctgatactgctcattcagcgccaccgcgacatcttccgcttcgccatcgtgacgcgcatagtgcatccccataacgccctgggtgtcggtgaactcgaagaccatgttggtcatcaggtcgcacttagacagcagacccgcacgggtagcgtggttaacgtcagcgccaatctgttcagcaatccagccagccagcgcctggatgcggtcagttttgtcgcgcagcgtccccaactgttgctggaacaacacggtttgcaggcgcggcaggttatcttcaagacgttttttacggtcggtgttgaagaagaactcggcatccgccagacgcggacgaacgactttctcgttaccggagataatctgctgcggatctttcgattcgatgttggcaacgaagataaagttcggcagcagtttgccgtcgttcgcatacaccgggaagtatttctggtcacctttcatggtgtaaaccagcgcttcagccggcaccgcgaggaatttctcttcgaattttgcggtcagaacgaccggccactccaccagcgaagccacttcttccagcaggctttcgcttaagtcagcgttaccgccaatcttacgcgctgcttcttcggcatcggctttaatcttcgccttacgttcttcgtaatcggcgatgactttcccacgctcacgcagaatttccggatactgatcggcgttatcgatggtgaattccggctcgcccataaagcggtggccgcgaatcacgcgatcggactgaatgcccagaatggttgccggaatgactttgtcgcccagcagcagggtcacggtgtgcaccggacgcacgaagtgcacgtcgcttgcgccccaacgcatcagtttcgggatcggcagtttcgccagagaagtcgcaaccatattcggcagcagtgcttcggtgctttcgcccttcacatgggcgcgatacagcagccattcgcctttatcggtagtcagacgctcagcctggtcaacggtaataccgcaaccacgcgcccaaccttctgccgctttgctcggtttgccttcagcgtcgaacgcctgggcaatcgccgggccgcgtttttcgatttcacgatccggttgcgcttccgccaggttagctactttcagcgccagacgacgcggagcagcaaaccattgaacggtgccgtgtgcgaggccagcgttatccagctccgcagtaaagttcgcagcaaaggactcagccaggctgcgcagtgcttttggtggcagctcttcagtgccgatttccaccagaaaagttttctcagacatagccgcctcttacttatctttgttgcacatcgggaagccgagggcttcacgggaagcgtagtatgcttctgccactgctttggtcagggtgcgaatgcgcagaatgtagcgctgacgctcggtgacggagatggctttacgcgcatccagcaggttgaagctgtgggcggctttcagaatacgctcgtaggctggcagcggcagcggattttccagcgccagcagctgctgcgcttctttctcgtactgctcgaagcaggtgaacaggaagtccacatccgcgtattcgaagttgtaagtggactgctccacttcgttctgatggaacacgtcgccgtaggtggttttacccagcgggccgtcgctccagaccaggtcgtaaacgctgtctacgccctgaatgtacatggccagacgttccagaccgtaggtgatctcgccggtaaccggtttacactccagaccaccaacctgctggaagtaagtgaactgcgtcacttccatgccgttcagccacacttcccagcccagtccccaggcacccagcgtcgggttttcccagttatcttccacgaaacggatgtcgtgaatagtcgggtccatgcccagctctttcagagaaccgaggtacagctcctgaatattgtccggcgatggcttaatgaccacctggaactgatagtagtgctgtaaacggttggggttttcgccgtagcgaccatcggtcgggcgacgagaaggctgaacataagcagccgccatcggttctggccccagctcgcgcagacaggtcattgggtgagaggttcccgcgccgacttccatgtccaatggttgaacaatggtgcagccctggcgagcccagtaatcctgtaaggtcaggatcaagccctggaaggtcctggtatcaaacttttgcatattatttcgtgctggatacgtgtggatttaaaggaagggatcagtatacccgctggatggaagatatacagtacgaaacgggaaaaagcagggcttaacgcatggaaagatgcaaaaaatggccatccgcgtcaaaagaacagacaaactgctctttacggaaggtataaccgcgcatttcatagcttccctggaactgttcgaaggcggtgacgtcgattttttgctcgccggtgttataacgttttgccgcctgatccttgcataacgcttccatattcaacgaacgcagaggatcaacctttacccgttgtgctttctgcacgggtgacggtatagaacaacccactagcaccataagcgccattgccggaaagaaagcgttcatcatcattaaattaccgtctggtttgcaggtgagtcttattatttatatcggtatagtggctgatatcttacgaatttccttaagcctctataagctgtagtgataaaactcagattattccagtgcgccaaccaaatgatttatcggtcagactttttttaaccagatacagagacacagatgcagcccaaaatttactggattgataacctgcgagggatagcgtgtttaatggtggtgatgattcacaccactacctggtatgtgaccaatgctcatagtgttagccccgtcacatgggatatcgccaatgttctgaattctgcctctcgtgtcagcgtgccgctatttttcatgatttccggctatctcttttttggcgaacgcagcgcccagccgcgccatttcttgcgtatcggcttatgtctgattttttatagcgcaatcgcactgctctacattgcgctgtttacctccatcaatatggagttagcgctgaaaaacctgctgcaaaagccagtgttttaccacttgtggtttttcttcgcgattgcggtgatttatctggtttcaccgctgattcaggtgaagaacgtcggcggaaaaatgttgctggtgctaatggcggtgattggcattatcgctaacccaaacacagtgccgcagaaaattgacggttttgaatggctgccaattaacttatatatcaatggcgatactttttactacattctgtatggcatgttgggccgcgctatagggatgatggacacacagcataaagcactgtcgtgggtgagcgccgcgctgtttgcgacgggggtttttattatctctcgcgggacattatatgaattgcagtggcgcggaaattttgccgatacctggtatctttactgtgggccgatggtttttatctgcgcaatcgcgctattgactctggttaaaaacacgctggatacgcgtaccattcgcggacttggcttaatctcccgccattcattgggtatatacggattccacgccttgattatccatgcgctgcgcacccggggaattgagcttaaaaattggccaatactggatattatttggatcttttgcgcgacgttggcagcgagtttgttactttctatgctggtacaacgaatcgacagaaacagattagtgagttaagtaaaagcccggtcacattggactgaccgggcttacgtgagttattcgctgtattcttcctgggtaacctgtgtttcttttggtgggtttattccggcatcacgaatatttttctgcaccgctactgcaccaaacaagcttaagaagaaagccagtccataaaaacctttttcgctgagtaataatgtcgcattccacagacctaccatcagtaatgcaacagagataataaagacagtcaggcaggtcatataataaatggaagtggtcggtatgccttcatacttgtcccgaacggtcttttgataagacgccgcagaaaacagtcctaataccagtacggcaaaataatatcctttttcatttaactgcatctctgcattccatagccctaacagataggtaacgataccaccaacgagagctatccatgacacaatactaaaggccggtgaataggttgatattttgttgtccatcacagtattcctttcattcctgaatatgtaagagctttatgttgctcatgccgagcgaaacaaacgcatttgaccaaacaagcagacaaaaaaggcgatgggatagatcaccatttcataagtattgataggtgcgtttaaaacaccgataaacaagagaccgatagtgattaacgcaactaactggcagatatgggtaaaaaaatcatccagttgcccgagtttttctgcgcgaagatatgcatagttgccaaaagttgctgtcattaacacgccaagaaaatagccttttccacttaacaatgggcatgagatccatagcccaaccagataaaccagcgccccgacaacaaataatagttttgccacagtctttgaggttttcataacgatctccatatctaccagcgatacattacgagtaaccaacgaaagacaaaactgaaaaatgccattaacaaatgattttcagaataaattcatactaaatattaattaattactgagatatatagatgtgaattatcccccacccggtcaggcaggggataacgtttacgccattaatggcagaagttgctgatagaggcgacggaacgtttctcgtcgtggctgataagcggcataacgctgcgcatctggtagatgcgactgttctaacggtagttgcggcaacaattcaatgagcgatttctctggattcgccgcgatctgcgccagccttgctgcgcccagtgctggccccacatccccccccgtacggtaatcgagctgctgaccgctgatatccgccagcatctgacgccagtactcactacgcgccccgcccccaatcaacgtaacactttgcggtttaataccgcaggcatgcacgacatccatgccatctgccagcgcataacccacgccttccagcactgctcgcgccagttcattggggccatgttgatgagtcaaaccaaagaaaacccccttcgcctggggattattgtgtggcgtacgctcgccggaaagataaggcagaaaccaaactggctcggcactttcatcagcctgttgagctgcagcgattaaagctgggacattgctcaggccggttaatttcgcggcccaatccagacacgacgctgcactcagcatcacagacattaaatgccaacgttgcggtagcgcatggcaaaagctatgtacggcgctttctggcttgcttaagaacccttcgctgacagcaaaatagacccccgacgtccccagcgataacattgcctgattagcatcaaccattcccacaccaactgcaccagctgcattgtcgccaccgcctgcgacaactggcaccgtcgccataccccacgctttcgcaacttcaggtaacaaagcaccagtaatttcgctgccttcgtataatgcgggcatctggtcacgagataagtcgcaagcctgcagcatgacgtcactccagtcacgctttgcgacatccagccacatggtgccagctgcgtcagacatatcgctggcaaactcccccgtcatacgcagacgcaagtaatctttcggtaataatactttgtcgatttgacggaatatctccggctcatgccgctgaacccatagcaatttaggcgcagtaaatccgggcatcatcaggttgccggtaatcacccgcgattgcggaactcgcgcttccagcaaagtgcactcttgcgcacagcgcccgtcgttccacaaaatggcagggcgtaacacccgttgctgagcatccagcaaggttgctccgtgcatctggccggcaatacccaatgctttaacgtcctgcagagaatgctgatcgcccagagctttcattgcgcgatcagttgcctgccaccactgttccgggtcttgttccgaccagagtggatgcgggcgcgaaacggtcagcttttccgtttgcgcagcaaccacctcaccctgctcgttgagcaaaataacttttacgcccgaggtgccaagatctatcccgatatacatatcgatcgttccttaaaaaaatgcccggtatcgctaccgataaccgggccaacggactgcacagttagccgttatttgtcgaacagataatggtttaccagattttccagttgttcctggcgaccactctgatgcaccggagacaaatgatgttcctgagcatatttggctaaatctgccagtgacatttggcctttcaggatttgctggcccaattcgctattccagccggaataacgctgcgcgatgcgtttatccagctcgccatcttcaatcatgcgcgctgcaattttcagcgccagtgccatcgtatccatcgcgccgatatgaccgtaaaacagatcatatttatcagtactttgacgacgtactttggcatcgaagttcagaccaccggtggtgaaaccgcctgctttgagaatttcatacatcaccagcgcattctcttccacactgttcgggaactggtcggtgtcccagcccagttgcgcatcgccacggttggcgtcgacagaaccgaacaggccaagcgcaatggcggtggctatttcatgatggaaagagtgacctgccagcgtcgcgtggttagcttcaatgttcagtttaatctctttttccagaccaaactgtttcaggaagccatagaccgtcgcggcatcgtaatcatattgatgtttggtcggttcttgcggtttcggttcgataagcaacgtgccctggaaaccgattttatgtttatgctcaaccaccatctgcataaagcggcccagttgttcacgctcctgacgcaagtcggtatttaacagcgtttcgtaaccttcacgaccgccccacaggacatagttttcaccgcccaatttatgggttgcttccatcgctgtaacaacttgcgttgccgcccagctgaagacttcaggatctgggttcgtcgccgcacccgcgccgtagcgagggtttgtaaagcagttggccgttccccacagcagcttcacgccgctctcttcttgcttgcctgccaggacatcaaccatttgcgcaaaattattgatgtactcttttaacgacgcgccctcaggggaaacatccacatcgtggaagcaataaaatggcacatgtaacttgtggaaaaactcaaatgcgacatctgctttacgcttcgccaacgccagtgcctcaccaggctgctgccacggacgattaaacgcccccacaccaaacatatccgccccgttccagcagaaggtgtgccagtagcaggcggcaaaacgcaagtgctcttccatacgcttacccaacaccagttcgtcgggattgtagtgacggaatgctaacgggtttgaggattttgagccttcataacgaacgcgatcgagctggtcaaaataggcttgcatattgaactccataatcaggtaatgccgcgggtgatggatgatgtcgtaatattgggcactccctttcagttgctcaattatgttatttcacactgctattgagataattcacaagtgtgcgctcgctcgcaaaataaaatggaatgatgaaactgggtaattcctcgaagagaaaaatgcaataagtacaattgcgcaacaaaagtaagatctcggtcataaatcaagaaataaaccaaaaatcgtaatcgaaagataaaaatctgtaattgttttcccctgtttagttgctaaaaattggttacgtttatcgcggtgattgttacttattaaaactgtcctctaactacagaaggccctacaccatgaaaataaagaacattctactcaccctttgcacctcactcctgcttaccaacgttgctgcacacgccaaagaagtcaaaataggtatggcgattgatgatctccgtcttgaacgctggcaaaaagatcgagatatctttgtgaaaaaggcagaatctctcggcgcgaaagtatttgtacagtctgcaaatggcaatgaagaaacacaaatgtcgcagattgaaaacatgataaaccggggtgtcgatgttcttgtcattattccgtataacggtcaggtattaagtaacgttgtaaaagaagccaaacaagaaggcattaaagtattagcttacgaccgtatgattaacgatgcggatatcgatttttatatttctttcgataacgaaaaagtcggtgaactgcaggcaaaagccctggtcgatattgttccgcaaggtaattacttcctgatgggcggctcgccggtagataacaacgccaagctgttccgcgccggacaaatgaaagtgttaaaaccttacgttgattccggaaaaattaaagtcgttggtgaccaatgggttgatggctggttaccggaaaacgcattgaaaattatggaaaacgcgctaaccgccaataataacaaaattgatgctgtagttgcctcaaacgatgccaccgcaggtggggcaattcaggcattaagcgcgcaaggtttatcagggaaagtagcaatctccggccaggatgcggatctcgcaggtattaaacgtattgctgccggtacgcaaactatgacggtgtataaacctattacgttgttggcaaatactgccgcagaaattgccgttgagttgggcaatggtcaggaaccaaaagcagataccacactgaataatggcctgaaagatgtcccctcccgcctcctgacaccgatcgatgtgaataaaaacaacatcaaagatacggtaattaaagacggattccacaaagagagcgagctgtaagcgttacgccccagcgcggagcgggggcgtgatttctctccatgccgcgtgaatgaattggcttaggtggagtcgttatgccttatctacttgaaatgaagaacattaccaaaaccttcggcagtgtgaaggcgattgataacgtctgcttgcggttgaatgctggcgaaatcgtctcactttgtggggaaaatgggtctggtaaatcaacgctgatgaaagtgctgtgtggtatttatccccatggctcctacgaaggcgaaattatttttgcgggagaagagattcaggcgagtcacatccgcgataccgaacgcaaaggtatcgccatcattcatcaggaattggccctggtgaaagaattgaccgtgctggaaaatatcttcctgggtaacgaaataacccacaatggcattatggattatgacctgatgacgctacgctgtcagaagctgctcgcacaggtcagtttatccatttcacctgatacccgcgttggcgatttagggcttgggcaacaacaactggttgaaattgccaaggcacttaataaacaggtgcgcttgttaattctcgatgaaccgacagcctcattaactgagcaggaaacgtcgattttactggatattattcgcgatctacaacagcacggtatcgcctgtatttatatttcgcacaaactcaacgaagtcaaagcgatttccgatacgatttgcgttattcgcgacggacagcacattggtacgcgtgatgctgccggaatgagtgaagacgatattatcaccatgatggtcgggcgagagttaaccgcgctttaccctaatgaaccacataccaccggagatgaaatattacgtattgaacatctgacggcatggcatccggttaatcgtcatattaaacgagttaatgatgtctcgttttccctgaaacgtggcgaaatattgggtattgccggactcgttggtgccggacgtaccgagaccattcagtgcctgtttggtgtgtggcccggacaatgggaaggaaaaatttatattgatggcaaacaggtagatattcgtaactgtcagcaagccatcgcccaggggattgcgatggtccccgaagacagaaagcgcgacggcatcgttccggtaatggcggttggtaaaaatattaccctcgccgcactcaataaatttaccggtggcattagccagcttgatgacgcggcagagcaaaaatgtattctggaatcaatccagcaactcaaagttaaaacgtcgtcccccgaccttgctattggacgtttgagcggcggcaatcagcaaaaagcgatcctcgctcgctgtctgttacttaacccgcgcattctcattcttgatgaacccaccaggggtatcgatattggcgcgaaatacgagatctacaaattaattaaccaactcgtccagcagggtattgccgttattgtcatctcttccgaattacctgaagtgctcggccttagcgatcgtgtactggtgatgcatgaagggaaactaaaagccaacctgataaatcataacctgactcaggagcaggtgatggaagccgcattgaggagcgaacatcatgtcgaaaagcaatccgtctgaagtgaaattggccgtaccgacatccggtggcttctccgggctgaaatcactgaatttgcaggtcttcgtgatgattgcagctatcatcgcaatcatgctgttctttacctggaccaccgatggtgcctacttaagcgcccgtaacgtctccaacctgttacgccagaccgcgattaccggcatcctcgcggtaggaatggtgttcgtcataatttctgctgaaatcgacctttccgtcggctcaatgatggggctgttaggtggcgtcgcggcgatttgtgacgtctggttaggctggcctttgccacttaccatcattgtgacgctggttctgggactgcttctcggtgcctggaacggatggtgggtcgcgtaccgtaaagtcccttcatttattgtcaccctcgcgggcatgttggcatttcgcggcatactcattggcatcaccaacggcacgactgtatcccccaccagcgccgcgatgtcacaaattgggcaaagctatctccccgccagtaccggcttcatcattggcgcgcttggcttaatggcttttgttggttggcaatggcgcggaagaatgcgccgtcaggctttgggtttacagtctccggcctctaccgcagtagtcggtcgccaggctttaaccgctatcatcgtattaggcgcaatctggctgttgaatgattaccgtggcgttcccactcctgttctgctgctgacgttgctgttactcggcggaatgtttatggcaacgcggacggcatttggacgacgcatttatgccatcggcggcaatctggaagcagcacgtctctccgggattaacgttgaacgcaccaaacttgccgtgttcgcgattaacggattaatggtagccatcgccggattaatccttagttctcgacttggcgctggttcaccttctgcgggaaatatcgccgaactggacgcaattgcagcatgcgtgattggcggcaccagcctggctggcggtgtgggaagcgttgccggagcagtaatgggggcatttatcatggcttcactggataacggcatgagtatgatggatgtaccgaccttctggcagtatatcgttaaaggtgcgattctgttgctggcagtatggatggactccgcaaccaaacgccgttcttgattttgataaaaattttctcaaagccggttacgtattaccggttttgagtttttgcatgattcagcaggaaaagaaccatgtttactaaacgtcaccgcatcacattactgttcaatgccaataaagcctatgaccggcaggtagtagaaggcgtaggggaatatttacaggcgtcacaatcggaatgggatattttcattgaagaagatttccgcgcccgcattgataaaatcaaggactggttaggagatggcgtcattgccgacttcgacgacaaacagatcgagcaagcgctggctgatgtcgacgtccccattgttggggttggcggctcgtatcaccttgcagaaagttacccacccgttcattacattgccaccgataactatgcgctggttgaaagcgcatttttgcatttaaaagagaaaggcgttaaccgctttgctttttatggtcttccggaatcaagcggcaaacgttgggccactgagcgcgaatatgcatttcgtcagcttgtcgccgaagaaaagtatcgcggagtggtttatcaggggttagaaaccgcgccagagaactggcaacacgcgcaaaatcggctggcagactggctacaaacgctaccaccgcaaaccgggattattgccgttactgacgcccgagcgcggcatattctgcaagtatgtgaacatctacatattcccgtaccggaaaaattatgcgtgattggcatcgataacgaagaactgacccgctatctgtcgcgtgtcgccctttcttcggtcgctcagggcgcgcggcaaatgggctatcaggcggcaaaactgttgcatcgattattagataaagaagaaatgccgctacagcgaattttggtcccaccagttcgcgtcattgaacggcgctcaacagattatcgctcgctgaccgatcccgccgttattcaggccatgcattacattcgtaatcacgcctgtaaagggattaaagtggatcaggtactggatgcggtcgggatctcgcgctccaatcttgagaagcgttttaaagaagaggtgggtgaaaccatccatgccatgattcatgccgagaagctggagaaagcgcgcagtctgctgatttcaaccaccttgtcgatcaatgagatatcgcaaatgtgcggttatccatcgctgcaatatttctactctgtttttaaaaaagcatatgacacgacgccaaaagagtatcgcgatgtaaatagcgaggtcatgttgtagcgatgatgagaattgtcggcgtcacatcaggtaacgctgcgtggttgtcggatgcggcgtgaacgccttatccgacctacccgccaggcatgataaaacgcaccaacaacgcttcaggctcgtagctcaactgcctgagacaaagtaaaaagccttatccgactgacaagtcggataaggctcaaggaaatgcaattacatatgcgccgcgattaaccgttggttatcctggtacattgcgaacaggtagttgttataactcttccctttggtcgagtagcccttcagcttgtgaatcatcgctgtggcagtcacttcctgatccgctttacgcagctgcgcacgcgatttacggaacgaagagtaagccgggtgcgtattcaggttagtgacataggcgctcaccgattctttgacagaactaaactgtgagtaccctttcactttacctggcgcattggtacaacgtcctttcatcgatttcatgccgaacaggttgttgttgttgcgcgccagcttcgacgttccccaaccgctttctgctgcagccatcgtcgccaccatactggtggggataatgtctacgcgttcaagcaaggtattccacgggatttttcgcgtattaccggaccacttcaccttgtagcgtttggcgatgtctttcagacgcgcacgctcagcaggtgaccattggccctgatactgttttgaaatgagccagttacgttccgcagtaatggccgcattttggctggtaatgtaaggcattacggtccggagaaacgcctttttccttggtgttccggaagggtattttcgcaaatcaggaagtgaactactctttgcactattgcgagaatactcttgtttactgcttacctgtttattactagctttagttaagtgggacttttgactcgctgttgttgtgtgcgtcttcgctaacacctcactcgaaaacaccagagtgagtaacataagaatcatcgccccatatcgtcgtatgggagtcaaaatcatcaggtctcctggtcggatttaatcattccaacaccttatatttttcacaaatttgagagttgaatctcaaatcatatcaaaaatagctgtcaagagcaccccaaggaatagtccaaatctgaaactatgtcacgtgttaacgattcagattggcgctaaatcgcagaaaatgtgggggttatcgcaaaattcagccgttttttgcgcgagatcgctcacccttgcttctcatcctgtggacttaccgctcagggatgagttttgtttggcttatcgctggcaaactgtctgaaatcgcagcaataaggactcatccgccatgaaactcgccgcctgttttctgacactccttcctggcttcgccgttgccgccagctggacttctccggggtttcccgcctttagcgaacaggggacaggaacatttgtcagccacgcgcagttgcccaaaggtacgcgtccactaacgctaaattttgaccaacagtgctggcagcctgcggatgcgataaaactcaatcagatgctttccctgcaaccttgtagcaacacgccgcctcaatggcgattgttcagggacggcgaatatacgctgcaaatagacacccgctccggtacgccaacattgatgatttccatccagaacgccgccgaaccggtagcaagcctggtccgtgaatgcccgaaatgggatggattaccgctcacagtggatgtcagcgccactttcccggaaggagccgccgtacgggattattacagccagcaaattgcgatagtgaagaacggtcaaataatgttacaacccgctgccaccagcaacggtttactcctgctggaacgggcagaaactgacacatccgcccctttcgactggcataacgccacggtttactttgtgctgacagatcgtttcgaaaacggcgatcccagtaatgaccagagttacggacgtcataaagacggtatggcggaaattggcacttttcacggcggcgatttacgcggcctgaccaacaaactggattacctccagcagttgggcgttaatgctttatggataagcgccccatttgagcaaattcacggctgggtcggcggcggtacaaaaggcgatttcccgcattatgcctaccacggttattacacacaggactggacgaatcttgatgccaatatgggcaacgaagccgatctacggacgctggttgatagcgcacatcagcgcggtattcgtattctctttgatgtcgtgatgaaccacaccggctatgccacgctggcggatatgcaggagtatcagtttggcgcgttatatctttctggtgacgaagtgaaaaaatcgctgggtgaacgctggagcgactggaaacctgccgccgggcaaacctggcatagctttaacgattacattaatttcagcgacaaaacaggctgggataaatggtggggaaaaaactggatcagaacggatatcggcgattacgacaatcctggattcgacgatctcactatgtcgctagcctttttgccggatatcaaaaccgaatcaactaccgcttctggtctgccggtgttctataaaaacaaaatggatacccacgccaaagccattgacggctatacgccgcgcgattacttaacccactggttaagtcagtgggtccgcgactatgggattgatggttttcgggtcgataccgccaaacatgttgagttgcccgcctggcagcaactgaaaaccgaagccagcgccgcgcttcgcgaatggaaaaaagctaaccccgacaaagcattagatgacaaacctttctggatgaccggtgaagcctggggccacggcgtgatgcaaagtgactactatcgccacggcttcgatgcgatgatcaatttcgattatcaggagcaggcggcgaaagcagtcgactgtctggcgcagatggatacgacctggcagcaaatggcggagaaattgcagggtttcaacgtgttgagctacctctcgtcgcatgatacccgcctgttccgtgaagggggcgacaaagcagcagagttattactattagcgccaggcgcggtacaaatcttttatggtgatgaatcctcgcgtccgttcggtcctacaggttctgatccgctgcaaggtacacgttcggatatgaactggcaggatgttagcggtaaatctgccgccagcgtcgcgcactggcagaaaatcagccagttccgcgcccgccatcccgcaattggcgcgggcaaacaaacgacacttttgctgaagcagggctacggctttgttcgtgagcatggcgacgataaagtgctggtcgtctgggcagggcaacagtaacttttccggcttcccgttcgtcagtacctcgggaagccgccaaccaggataaaatgtcagccctaatcagcgttgcaggataaagcaccgctcactcttcaacagaccgatttgcaccccagcaaatgtagcgttattgttaccttccttgctacagagttcgacagatatcccgctatgacattctccctttttggtgacaaatttacccgccactccggcattacgctgttgatggaagatctgaacgacggtttacgcacgcctggcgcgattatgctcggcggcggtaatccggcgcagatcccggaaatgcaggactacttccagacgctactgaccgacatgctggaaagtggcaaagcgactgatgcactgtgtaactacgacggtccacaggggaaaacggagctactcacactgcttgccggaatgctgcgcgagaagttgggttgggatatcgaaccacagaatattgcactaacaaacggcagccagagcgcgtttttctacttatttaacctgtttgccggacgccgtgccgatggtcgggtcaaaaaagtgctgttcccgcttgcaccggaatacattggctatgctgacgccggactggaagaagatctgtttgtctctgcgcgtccgaatattgaactgctgccggaaggccagtttaaataccacgtcgattttgagcatctgcatattggcgaagaaaccgggatgatttgcgtctcccggccgacgaatccaacaggcaatgtgattactgacgaagagttgctgaagcttgacgcgctgggcaatcaacacggcattccgctggtgattgataacgcttatggcgtcccgttcccgggtatcatcttcagtgaagcgcgcccgctatggaatccgaatatcgtgctgtgcatgagtctttccaagctgggtctacctggctcccgctgcggcattatcatcgccaatgaaaaaatcatcaccgccatcaccaatatgaacggcattatcagcctggcacctggcggtattggtccggcgatgatgtgtgaaatgattaagcgtaacgatctgctgcgcctgtctgaaacagtcatcaaaccgttttactaccagcgtgttcaggaaactatcgccatcattcgccgctatttaccggaaaatcgctgcctgattcataaaccggaaggagccattttcctctggctatggtttaaggatttgcccattacgaccaagcagctctatcagcgcctgaaagcacgcggcgtgctgatggtgccggggcacaacttcttcccagggctggataaaccgtggccgcatacgcatcaatgtatgcgcatgaactacgtaccagagccggagaaaattgaggcgggggtgaagattctggcggaagagatagaaagagcctgggctgaaagtcactaaaaattgcctgatgcgctacgcttatcaggcctacatgatttctgcaatatattgaatttggaagaatttgtaggccggataaggcgtttacgccgcatctggcataaacaaagcgcactgttccggcgttgagaaacgccggaaaacgtttcaaacaggctgctgccgtagccgatgccgctgcactttctcgacatccatgcactgcaacgcctttgtcgggcaggcttcaacacaggccggtcccgtctcccgatgccagcacagatcgcacttaatcgccctcgcctttttgcgcgaagaaacgacctccatcgcaccaaacgggcaagccagcatacagcttttacagccaatgcaacgtgtttgttcaacgaaaatatgcccatgttcgcggcttatcgcgtcaacagggcaagacattcgcgcacggtgcatcttcacactgatgacaggctactgccgtggtccagcagtggtctttaatgacacgaatacgggaaataaactcgtctggtgacaacgcagcgcaatcctgattctcatgatgcgacactgcgcaagccacttcacaggtacggcaaccgatacatttcgtcgcatccgcaataataaaccggttcatgatcactcctttgcactaaaacagcagagtgccagagagcgcgtccctactgctttgatccaacgaaggaaatgttaaagttttggcacttgtccaaagcgttatgtgatcgcgcccaggtcatccctgacagtaaatcccagttcattagaaatagcctgcgcggtttcacgcagtggtttcaggagatttttctctcccacctgtttcagacgtgatgtcgaaagcgaaatcgacacggcgtacggcacccgcccatgaatatcaaacaccggaacagcaatacaggagacgccgagttcgttttcttctctgtccatcgccgctccgctttcacgaatgtgcgccagttcgtcgaacatcgcgggcagctcggtaatggtattgcgggttaacggctggatctcatgctgatggctttcccagtatgacttcacgtagtccgggtgaccaaacgccatgtagatcttgcccattgcggaacagtagagcggcatatgctggccaatataggcacgggttcgcagcatcccggttgtgggttccagcttataaatcaaaatagcgtgatcgtcttcgcggctggagaagttaatggtttcaccagtggcgatgttcagtgcctcaagatgcggagcggcgatatgaatgatattcagcgaagacagcgccttctgcccgacggcaataaatttggtggtcaggcgataactccctgcggcaggcgcggtggtcacatagccgcaggactgtaatccctgcaataagcgatggacggtactcttatttaaaccagccagctccgaaagatgcgccaacggacaaccgtttggatagttgctcaaaatctcaatcagcatcaacccgcgaaacagactctggcttccggctggacgctctttttcctgcgccatctcgttctctttttttcccatcacttctttccccattttgtcgcgtcctgatggtagcgcaaagtgtgccgtagttcacgatctcgacagataatttataaccaattgatttttatgtcttttgaaattcatcaatcagattgccttgttaaaaagtgatcgatatatttgaaatcaagtttcgcatattgaaattttaagccaaaaaagcgatcaaaaaaacaaggaagcctgggatgaaagtgacatttgagcagttaaaagcagcctttaatcgggtcttaatttcacgcggcgttgacagcgaaacggctgacgcctgtgcagagatgttcgcccgcaccaccgaatccggcgtttattctcacggcgttaatcgtttccctcgtttcattcaacaactggaaaacggcgatatcattcctgatgcccaacccaaacgtataaccagcctcggcgcaattgaacagtgggacgcccagcgttcgatcggtaacctgacagcgaaaaagatgatggatcgcgccattgaactggctgccgatcacggtattggtctggtggcactacgtaatgccaaccactggatgcgcggcggcagctacggctggcaggcggcggaaaaaggctatattggcatttgctggaccaactccatcgccgtaatgccgccgtggggcgcaaaagagtgtcgcataggcactaacccgctgatcgtcgccattccttccacgccgatcaccatggtcgatatgtcgatgtcgatgttctcttacggcatgttagaagttaaccgtctggcaggtcgtcagctcccggtcgatggtggctttgatgatgagggcaatttgaccaaagaacctggcgttatcgagaagaatcgccgcattttgccgatgggctactggaaaggttctggcatgtcgattgtgctggatatgatcgctactctcctttccgacggcgcatccgttgccgaagtcacccaggacaacagcgacgaatacggcatttcacaaatttttattgccattgaagtggacaagcttatcgacggtcccacccgcgatgccaagctgcaacgcatcatggattacgttactagtgccgagcgtgctgacgaaaatcaggccattcgcttacccggccatgaatttactaccctgctggccgaaaaccgccgtaacggcatcactgttgatgacagcgtgtgggccaaaatccaggcgttatgaggagataagtcatgatttttggacatatcgcgcagcccaatccgtgccgtttgcccgccgccattgaaaaggcgctcgattttctgcgcgctaccgatttcaacgccctggagccgggcgttgtcgaaatcgacggcaaaaatatttatacgcaaattatcgatttaaccacacgcgaagcggtggtaaaccgtccggaagtgcatcgtcggtatatcgatattcagtttctggcgtggggcgaagagaaaatcggcattgctattgatacgggaaataataaagtcagcgaatcactattagagcagcgcaatattattttttatcacgacagtgaacatgaatcatttatagaaatgataccgggcagctacgcaattttctttccgcaggatgttcaccgaccaggttgtattatgcaaacagcctctgagatacgaaaaattgtggttaaagtcgcattaacggcgctgaattaatcgaataatcgtctacgccagaacgcctgggtaatgttattgctctaactatattaataattcaggttgctgcacatgcgacttgaattatgacagacatagcctcaaggaatagctatgaaaaaaatactcgaagcaatactggcgattaatctcgccgtactttcctgtattgtatttataaacattattttaagatatggttttcagacaagcattttatctgttgatgaattgtcacgttatttatttgtctggttaacgtttattggcgcgattgtagcttttatggataacgcccacgttcaggtcacctttctggtggagaaactctcccccgcatggcagcgacgagtcgctctggttacccattccttaatcttatttatttgtggcgcactggcctggggcgcaacgctaaaaacaattcaggactggagcgattattcaccgatcctcggtttacccatcggcctgatgtatgccgcttgtctgcccaccagcctcgttatcgcattctttgaactgcgtcatttatatcaactcatcacgcgtagcaattctctaacgtcgccaccgcaaggagcttaatcatggctgtgctgatttttctgggctgtctgttgggtggtattgctatcggtttgcctattgcctgggcactgttgttgtgcggggcggcgttaatgttctggctggacatgtttgatgtccagatcatggcacaaacgctggtgaacggagccgatagcttctccctgctggcgattccgttctttgtgctggcgggtgaaatcatgaatgcgggcggcttgtcaaaacgcattgttgacctgccgatgaaactggtggggcataaaccaggcgggctgggctacgtcggcgtgctggcagctatgattatggcgagcctttctggttctgccgttgcggataccgccgccgttgccgctctactggtgccgatgatgcgcagcgccaactatccggtcaaccgggcggcggggctgattgcctctggcggcattatcgcgccaattattcccccttccattccgtttattatcttcggcgtttccagcggattatccatcagtaagctgtttatggcgggcattgcccctggcatgatgatgggcgcaacgctgatgcttacctggtggtggcaggccagtcgccttaatttaccccgccagcaaaaagcaacgatgcaggaaatctggcactcttttgtctccggtatctgggcgctgtttcttccagtcatcattattggcgggtttcgctccggcctgtttacccctaccgaagccggggccgttgctgctttctatgcgctgtttgtcgccacagttatttaccgtgaaatgaccttcgccacactttggcatgtactcattggcgcggcgaaaaccacctcagtggttatgtttctggtggcctcggcacaagtttccgcctggctgattaccattgctgaactgccgatgatggtttctgatttactgcaaccgttggtcgattcaccgcgtctgctgtttatcgtcattatggtggctatcctgattgtcggcatggtcatggatttaacgccgacggtattaattcttaccccggtattaatgcctttagttaaagaggcaggaatcgatccgatttatttcggtgtcatgtttatcattaactgctcaatcggcttaattacaccgcctatcggtaatgtacttaacgttatttcaggggtggcaaaactcaaattcgatcgatgcagtcagaggcgttttcccttacgtcctggttttatattcattattagtcgtatttgtttttattcccgatctcatcatcctccctttgaaatggattaattaaaaggaaaatattatgaaattacgctctgtaacctacgcattattcattgctggcctggctgcattcagcacatcttctctggcggcacaatctttacgtttcggttatgaaacatcacaaaccgactcgcaacatattgcggcgaaaaaattcaatgatttattgcaggagagaaccaaaggcgagctgaaattaaaactgttcccggacagcactctcggtaacgcgcaggcgatgatcagcggcgtacgtggcggcaccatcgatatggaaatgtccggctcgaataactttgccgggttatcaccagtgatgaacttgcttgatgtccctttcctgttccgcgataccgctcacgcgcataaaacgctcgacggcaaagtcggtgatgatctgaaagcctcacttgaaggtaaaggactgaaagtactggcctactgggaaaacggctggcgcgatgtcaccaactcgcgcgcaccggttaaaacccccgccgacctgaaagggctgaaaatccgcaccaacaatagcccgatgaatatcgccgcattcaaagtctttggcgctaacccgatcccgatgccgtttgccgaagtctataccgggctggaaacccgcactatcgacgctcaggaacacccgatcaacgtcgtctggtcagcaaaatttttcgaagtgcagaagttcctttctctgacgcaccacgcctattccccgcttctggtggtgatcaacaaagcgaagtttgatggcttaagtccggagttccagcaggcgctagtttcatctgcacaagaagcgggtaactatcagcgcaaactggttgctgaagatcagcaaaaaatcatcgacggcatgaaagaagcgggcgtggaagtcatcaccgatctcgaccgcaaagcctttagcgacgcactggggaatcaggttcgcgacatgtttgttaaagatgtgccgcagggagctgatctgctgaaagccgtggatgaggtgcaataaaccatgacgcaatactggctggggttagattgtggcggtagctggctgaaagccgggctgtatgaccgcgaaggccgggaggcaggcgtgcagcgcctgccgctgtgcgcattaagcccgcagccaggctgggcagagcgcgatatggcagaactgtggcaatgctgcatggctgtcattcgcgccctgcttactcattctggtgttagcggggaacaaattgtcggtatcggcatctccgcacagggaaagggcttgtttttgctggataaaaacgacaaaccgctcgggaatgctattttgtcctcggaccgccgggcgatggaaatcgttcgtcgctggcaggaagatggcatcccggaaaaactctacccgctgacccgacaaaccttgtggaccgggcatccggtgtcgctgttacgctggctgaaagagcacgaaccagaacgctacgcgcaaattggctgcgtgatgatgacgcacgactacctgcgctggtgtttaactggcgtcaaaggctgtgaagagagcaatatttccgagtccaacctctacaacatgagtcttggggaatatgacccgtgcctcaccgactggctggggatcgctgaaatcaatcacgccctgccgcctgttgtcggatctgccgaaatctgcggggagatcaccgctcagacagccgccctgaccggtctgaaagcgggtacgcccgttgttggcggcctgtttgatgtggtttccaccgcactctgcgccgggatcgaagacgaatttaccctcaatgcggtgatggggacctgggcggtgaccagcggcataacccgcggtttacgtgacggtgaagcgcatccgtatgtctatggtcgctacgttaacgatggtgaatttatcgttcacgaagccagccctacctcttccggcaacctcgaatggtttaccgcacagtggggagaaatctcgtttgatgagatcaatcaggccgttgccagcttgccgaaggctgggggcgatctctttttcctgccgttcctgtacggcagcaacgccggactcgagatgaccagtggtttctacgggatgcaggccattcacacccgcgcgcacctgttgcaggccatctatgaaggggtggtgttcagccatatgacccacctcaaccgaatgcgcgaacgttttactgatgttcacaccctacgcgtcactggcggcccggcgcactccgatgtctggatgcaaatgctggcggacgtcagcggtctgcgtatcgagctgccgcaggtggaagaaaccggctgctttggtgcggcccttgccgcccgcgtcggcaccggggtttatcacaacttcagcgaagcccaacgtgacttgcgacacccggtgcgcaccctgctgccagatatgaccgcccatcagctttaccaaaaaaaatatcaacgttatcagcatctcattgccgcacttcagggctttcacgcccgcattaaggagcacacattatgagccgaccacttctgcaactggccctcgaccactcatcacttgaagccgcgcagcgcgacgtgacgctgttaaaagacagcgtcgatatcgtcgaagcgggcaccattctctgtttaaacgaagggcttggcgcggtgaaagccttgcgcgaacagtgcccggacaaaatcatcgttgctgactggaaggtcgccgacgctggtgaaacgctcgcgcaacaggcgtttggcgcaggcgctaactggatgaccatcatctgcgccgcgccgctcgcgacggtagaaaaaggccacgcaatggcacaacgctgcgggggtgaaattcagatagagctgttcggtaactggacgctggacgacgcccgcgactggcatcgtattggcgtgcggcaggccatttatcatcgcggtcgtgatgcacaggccagcgggcaacagtggggcgaagccgatctggcacgcatgaaggcgctttcagatatcggccttgagctttccattactggcgggattacccctgctgacctgccgctgtttaaagatatccgcgtgaaagcgtttattgccgggcgggcactggcaggcgcggcaaatccggcgcaagtggctggcgatttccatgcgcaaatcgacgctatctggggaggtgcgcgtgcgtaatcatcagttagggatttatgaaaaagcgctggcgaaagatctctcctggccggagcggctggtgctggcaaaaagctgcggttttgattttgtcgaaatgtcggtggatgaaaccgacgaacggctctcacgtcttgactggagcgccgcacaaaggacttcgctggttgccgcgatgatcgaaacaggtgttgggatcccgtcgatgtgcctgtccgcacatcgtcgctttccctttggtagccgtgacgaggcagtgcgcgaacgggcgcgggaaatcatgagtaaagcgattcgcctggcgcgcgatctcggcattcgcaccatccagctggcaggttatgacgtctattacgaagaccacgacgaaggcacccggcaacgttttgctgaagggctggcgtgggcagtcgaacaggcggcggcatcacaagtaatgctggcggtggagattatggataccgcgtttatgaactccatcagcaaatggaaaaaatgggacgagatgctcgcctcaccgtggttcaccgtctacccggacgtcggcaacctcagcgcctggggcaatgatgttcccgccgaactgaaactgggcattgaccgtatcgccgcgatccacctgaaagacacccagccagtcaccgggcaaagtcccggacagttccgcgacgtgccgtttggcgaaggctgcgtcgatttcgttggcatcttcaaaacgctgcataaactgaactatcgcggttctttcctgattgagatgtggaccgaaaaagccaaagagccggtgctggagattattcaggcgcggcgttggattgaagcgcgtatgcaggaggctggatttatatgttagagcaactgaaagccgacgtgctggcggcgaatctggcgcttcccgctcaccatctggtgacgttcacctggggcaatgtcagcgcggtagacgaaacgcggcaatggatggtaatcaaaccttccggcgtcgagtacgacgtgatgaccgccgacgatatggtggtggttgagatagccagcggtaaggtggtggaaggcagcaaaaaaccctcttccgatacaccaacgcatctggcgctctaccgtcgctatgccgaaattggcggtattgtgcatacccactcgcgccacgccaccatctggtcacaggccgggctggatctccccgcctggggcaccacccacgccgattatttttacggtgccatcccctgcacgcgacagatgaccgcagaggagattaacggcgaatatgaatatcagaccggcgaagtgatcattgaaaccttcgaagaacgtggcaggagtccggcacaaatcccggcggtgctggtgcattctcacggcccgttcgcatggggtaaaaacgccgccgatgccgtgcataacgccgtagtactcgaagaatgcgcctatatgggtctattctcgcgccagcttgcgccgcagctccctgcgatgcaaaacgaactgctggataagcactacctgcgtaagcatggggccaatgcctattacgggcagtaatccctcacgccggggcttcatcgccccggactacgaattgatatgttccttgctgtaacgccgcttccacgctgctggcgttaaaccagtatgtttctgaaaaatctgccggaaatagccaacgtcattaaaccgtattgcatggagcaggccgacaacgtcgagtcactgcataacctgttgctgcccgccgatgcgccatttacgacatttgaaggcaagggattgttcagccataagatcctgattcagacgccaggttcccggtatgaacagagcaatccagagcaacaacctttgtggcattacgacggagcaccagccgcaccgacatccaccggtgaattaaaaacgccagctcaccccggtgacaaaggtaaaactctcattacgatcaatcatcgggctgtcggtaatctcttccggcagctcgctgtatcctgcgctcgccatcaatacgacgtgctctcctatcgggtattttgccgtcaggctgacatagggcacccaggcatcctgcgcggaataacttgccagaccgctacgacgggactcactctctgaaatgccatagtaatagtcactgaaattctcgtcataatagagaacgcccagcgcaggtgtcagcgacagacgacctatctgcattttgtggaataccgatagctcccccacccagccgttgctgttatccagaacgtccgcagctgcagaggctttcacggttccccaacgctcgtggtgataccaggcaacccccgccatagccgtactatcacgcttatcaagctgttgcatggcataatcgtcattatcggtagggtcaaattccagcggcatccaggatgcggtcaggctaagttcatttttttcactttgcgacagaataaaacctaacgtggtctgacgaacataaaaagtatcaccttcataactaatcagcggaattgccttcgtattttcattataaccgcgataaggcgattcattataagccgcaccagcaccaatggataattcagaagcagttgcgcttgccataaaaggcaacgcaaataacgccacaatattgcgattaattaacatgtccggtattccattttaaaataagataaaaaagagtcggcataataatgcttacaatttctccggtgcaagattcatatttatatagtaatatataaaattatatataattgggctgttgcgatgacaaaattacaacttaagtaccgggagttaaaaattatctcggtaatcgctgccagtgaaaatatcagccatgccgcgactgtacttggcatcgcacaggccaacgtcagcaaatatcttgctgattttgaatcaaaagtgggtttaaaagtctttgaccgaaccacccggcagctgatgctcacaccttttggcaccgcgctgttaccgtacatcaacgacatgctggacagaaacgagcaacttaataattttattgcagattataagcatgagaaacgtggtcgggtcaccatctacgccccaaccggcataattacctatttatccaaacatgtaatcgataaaattaaagatatcggtgatatcaccttatcgctaaaaacctgcaatcttgagcgtaatgccttttatgaaggcgtcgaatttcctgatgattgtgatgttttaatcagctacgctccaccaaaagatgaatcgctggttgccagttttattacccaatatgccgtaaccgcttatgccagccagcgctatcttgagaaacatcccattagccgtcctgacgaactcgaacatcactcctgtattttgatcgactcgatgatgatcgacgacgcgaatatctggcgcttcaacgtcgccgggagtaaagaggtgcgggattatcgcgtgaagggaaattacgtttgcgacaacacgcaatctgcgctggagctggcacgaaatcacctggggattgtgtttgcgccagacaaaagtgtgcagagcgacctgcaagacggcacgctggtgccctgctttcagcaaccctatgaatggtggctggatctggtggctatcttccgtaaacgggaataccagccctggcgggtccagtatgtgctggatgaaatgctgcgtgaaattcgccaccagcttgctcagtcgcagcaactgcggcctgaacaagcggcggaaagcgaagattaatgatcgagataaaggtaatgcacccagctggtcatgcgtaatagcactttgcgcatcaccgagacatggctgaaatgatcagagtaaaccgccacctgggcgtaaataccgtctggtaaagcgctcaaatcagtgtgctcatccagttcaatggtcgcgataacgccatctgaacccggcgctgtgtttaacgtctgtaaggtgccggtcgactgataagctccgccgggaacggctggactaatggctgccagcttaccgctgaataccttacctggcagagcattaaacaccacttccgcatcgtcgccaggagccagtcgcagcaaggagttctgacggaactgcgccacgatttgtcgtttctgatcgggtataaacaccatcaccggacgtagcggcagcgacgcggcataggtacccggacgaatcagtacctgggtcacataaccatcgctcggcgcacgcactatcgtctgctcaaggttatattttgcttccgcgagctgtgctttcaggctggcgatttgagaatgttcacccaacaccaggctatccagctggctctggatctgtttttgttccgccgccgatgacttcacggaggcttcctgcgccagataattttgccgcgccacatcgatatcgcgttctgaaaacgggtttactttcgcctggctgccacgtgcgtaacgctgatactctttagcgaatttatcccgcgtggcctttgcctgctgagtattcgccgccatctcatctaactctgcgcccaacgcccgctgtttatgttctgcggtaacgatatccgccatcagccgatccacccgcgcctgataacgcgtcgggtccagtcgaaatagcacctcaccttttttaatcagcgtatttttcttatccgtcacttcaatcaccacaccagtcacctgtgggacaacaggaatagaaataaccgctttttgcgctttaaaggtatacggatggttatagttcattaacagaattagaccgctgacaataaatattccacccagggccgctgtgggaatggtccatttatttacgggaattttgaagatcttaaacattgcccatgcaaaagccacataggtcaaaataatcagtaaatccataagtattactcggcagaagaggatttgatgtcggcgagctgtttctccagcccggcaatgcgctgttgcagttgcataacggatgaatcatggctttgcattccccatccccgctccgggcggtaaagcgtggcccaaatccacaaaaacggccagataacatgtaacgtaaaaagactcacccaaccagcaacatgaatggcgtcggcatgaggatgattacgttttttggcaatcaggtagggaatatcatgtaaaataatgatcccatagaagatcaccagaaatacaaaaataagcactcccagtgcaaaatagtccaggaacatatttccctcaaagaatataaaaaagaacaattaacgcatattatgaaatgccatgatgcagtgcaatttccttatttatataacgacatattgttttttatatactttcttaaatgtgctgtctggtttttcaacaggacgaggtttatcatattgaaatagtggaactattggccaaactaatgaataactccagtaaaacatccacagtacagattaagcgtattaaaccttcaattatctaccgtttattgctgattggcctcggatcaccaatggtgatttacggcctggttcgcccgctcaccatcgaaacgcgagattaaactcctgacaaaacacgccccagaaacgtacttctgttggcgtagtctgggttattgcgcacgtaggtttaaaacgtaaattgtaacaacgtgcgctttgtttatgccggatgcggcgtgtacgccttatccggcctacggtcaggttcccgtaggcatgataagacgcgtaagcgtcgcatcaggcaatgaatacccaatgcgaccagcttcttatatcagaacagccccaacggtttatccgagtagctcaccagcaggcacttggtttgctggtaatgctccagcatcatcttgtgggtttcgcgaccgatacctgattgtttgtagccaccaaacgccgcatgtgccgggtaagcgtgataacagttggtccacacgcgcccagcctgtatgccgcgccccatcttataggccagattaccgttgcggctccagacgcccgcgcccaggccatattgcgtatcgttcgccagctccagcgcttcttccatcgttttgaaggtggtcaccgccagcaccgggccaaaaatctcctcctggaacacccgcatattgttctgaccaaacagaatcgtcggttcgaggtagtagccgtctttcagttcaccttccagcagcttgcgccgcccgcctgtgagcacgtcagcgccctcttttttaccgatatcaatgtagttgaggatggtttccagttgcccgtgagaaacctgcgcgcccatttgcgtcacgctgtcgagcgggttaccgctacgaatgctttcgacacggcggatggcgcgttccataaagcgttcgtagatagattcctgcactaaagcacgactcggacaggtgcaaacttcgccctggttaaaggcaaacagtgcaaagccttccagcgctttatcgaaaaaggcatcttcttcatccatcacatcagcaaagaagatatttggcgacttaccgcccaactccagcgtcaccggaataatgttttgcgttgcgtattgcataatttgttggcccacttccgttgagccggtaaacgccactttggcgatgcgtttcgaggtcgccagatattcgccaattaccccacctgcgccattgaccacgttcaccacgcccggcggcagtaaatcaccgacaatttccattagcagcagtacagaaagcggggtaagacgtgcgggtttcagcaccacacagttgcccgccgccagcgcgggagccattttccagctcgccatcagcagcgggaagttccacgggataatctgccccaccacgcctaacggttcatggaaatgataggccacggtttcgctatcaacttcactgatcccaccttcctgcgcccgaatacacgaggcgaaatagcggaaatggtcaatcgccagcggtacatccgcagcactggtttcgcgaatgggtttgccgttatcccaggtttcagctgtcgctaacagctcgaggttttgttccattcgatcggcaatcttaaacagaatcgccgcacgatcctgcaccgaggtgtgcgcccatttatctttcactttgtgcgcagcatccagcgccagatcgatgtctcgtttgcccgaagacgccacttcgcacagcagctgcccggtcaccggcgtcagattctggtaatactcgccgtcggcaggggctacccattcgccgccaataaagttgtcatagcgggcttttaacttgagggggaaaccatactcgccgggcttaatctgtgctgaagggggattattggtcatgatcgtctccttgcggtgtgaggtataacaagggtagacgtgactggcgaaatcttcgccagtcggtaacagctttacgacagctatcacgaatttacgggcaagggttacagagatagttgaaaaagcggctaacaatttgccagccgttgtggaaatgatgattacctcgctgcataaatcgccacaatttcttcgtgagttgcctggatcgggttagtaaagccacaggcatctttcagggcattagtcgccaataccgcgaaatcttcttctttcacgttcaggtcgcgtaggcctgccgggatatccactttcttcgccagttcacggatggcgttaatgcaggcttcagcaccttccgcgtcgtttttacctgtcacgttcacgcccattgcagcggcacagtcacgcagacgtgcagcggcgactttgctgttgaatacctgaacgtgcggcagcaaaacggcgttacatacaccgtgtggcaggttgtagaaaccgcccagctggtgcgccatcgcatgaacataacccagagaagcattattgaacgccataccggcgaggaactgggcataagccattgcttcacgcgctttcgcattactgccatcttcaacggctaacggcaggttttcggcaatcatggtcacggctttcagtgcacaagcgtcagtgatcggcgtggcggcaatagaaacatatgcttcgatagcgtgcgttaaggcatccatacccgttgcggcggtcagtgacttcggcataccaatcatcagagaggagtcattgacagaaagcagcggagtgacatgtttatcaacaatcgccattttgatatgacgcgcttcgtcagtgatgatgcagaaacgggtcatttcagaggccgtacccgccgtggtattgatggcgatcatcggcagctgcggttttgcagagcggtcaacgccttcgtaatcgcgaatatcgccgccattggctgccaccagcgcaataccttttgcgcagtcgtgtggagaaccaccgcctaaggagatcacgctatcgcaattattctctttaagtaatttcaaacctgcggcgacgttttccgtggtggggttaggttgggtgccatcataaataacgctaaaaatattgcgttcttccagtgctttttgcacatcgcccgccatacctaatttcgttaacatattgtcagtgacaattaaggtacgggtaaatccataatctgccatcatattcattgcatcagtcaatgaatcagcgccgatgacattcacagaaggaataaagaacgttgaagctgccataacacactcctgaaagtgtaaaaaagggcgggcagcttactgaggattttcattcgaaaatatgatcagtattattgattatcaaaattaatctaataaaaagcacattgtattcattaaacaatgtgctttttttaaattcataagaattttgtattaatttattttaaaacttaattaatcatttccttatttttccggaaataataatgcgtcgcgcgcaataaatgatcatttccacgacgacgcgtaaagccaatgcggtcaaaatattccagaatctgaattgccagctttcggcctacgcctaagcgatcgcggaaatccgccgcgcaggttgaaccacactcctgatcgagatcgcggatcatattggcaaactcgacaatccgatcgttacggtaataacgatctttaacgatcgcggtaattattccttgctgcgccgcctggcgtagagtcaggcgcattgcctgctcgtcggttcccgtctcttttgccaggtcacgcacccaccacggttcgtcaccaaacagtggctctgctttttgccagatggcctgctgctcttcgctgaagcccgctttgtgatctggcagatgcagccagccgtgatggctgtggatgtcgccgctttcgcgcatcttttcaatcagcaacagtaccagcgcttcatcttccattggcaacgccatacgtcgcagacgttcgcgcccagggccaggttcatcgcgatgttgctcatgataagtcgctaatgtgtcgagaattttccgctgccagcgggcggcaaccggcgcattcaacaagctataaccagcctgaatataaccaggctgttgcagcaattcgcgcatcccttcgccgttgagctggcgcgcccaggcgaaatccgcaaggttaaccgcgccgcgttccagatgaacagataacgcatcggcatcgctctgcgcccgtgcaagagacgccagccattgcagatattccggcttacgtttaccgcgacgcggcgggttaagcatcacgacgcgcgctccggccagcgtgttgcgggcagagatatcgcgcaataccaggcggtcgttatctgccagccataacggggtgtcgaagaccagttcagcaaggttatcttccagcagtgaaacgcgtcccgtgacgtggctggcggcgtggtgaatatgcagcggctgccactgggtcagcggtgtatgggtttgaagctcgacaatcacccgtgtgaacggctctggcggcacatcggcaagcagccagtcgccacggttaatctgctctttttccgcatcacccgcgatgttaagcgcgatacgctgcccggcattggcggtttctgttggctggttttgcgcatgcagcgcacgtacacgcatcggtttatttacaccagtcagccagagtgaatcgcctaccttcacttccccgcttaacgccgtaccggtgacgaccagcccggcaccttttacggtaaatgcgcggtcaatcgcgaggcggaaactatgttggctggcgtgctcgcgttccggcaactgaagcagatgctcgcgcagggcatccattccccgaccttcggttgctgcggtgataaacagttttgcctcagcaaaaccgtattcccgcagaacctcctttacctggcgttcaacctcatcaacacgcgcttcgtccacgcgatcggctttggtcagcgccactgtcagcatcgggttaccggtcagctgcaaaatcgccagatgctcacgggtctgtgccatcacgccgtcatcgcacgccaccaccaacagcgcgtgatcgataccaccaacgcccgccagcatgttggaaagaaacttttcatgaccgggaacgtcgataaaaccaggcacgcgaccatccggctgcggccagtaggcatagccgagatcgatggtcatgccgcgctttttttcttccggcagacggtcagcatttacgccagtaatcgcctgcaataaggttgttttgccgtggtcaacgtgtccggcagtcgcaataatcatttcaacaacatctccaaaaaccgttgctcatcttcaaggcagcgtaaatccagccacaatcgtccgtcataaatacgaccaatcaccggcactggcaattcacgccagcgggcggctaatgactcaaggtgtaccgcgtccatcatggggtgtaaacgttaatgccgcgctcggcaggcgatcaaccggcagcgaaccactgccaatctgcgaaagacatggcataacctgtaccgcaaactccgcgccgtaatgtgcggcaaggggggcctgtaaacgttgtgcctggatttgaatgacctctgcgctgcgggtaagcaggcgcagggtcggtaatttttcactcagagcttcagggtgtaaataaagacgcaacgtggcttccagcgccgcgagggtcattttatccgcgcgtaatgcacgcttcagcgggtggctttgcaggcgggcgatcatctcttttttaccaacaataattcctgcctgcggcccgcctaacaacttgtcgccggagaaactcaccagactgacgcccgccgcaatcaactcctgcggcattggctctttcggcaaaccgtactggctaagatcgaccagcgagccactgcctaaatcagtcactacgggaacatccagctctttgccgagcgccaccagttccgcttcatctatcgctttggtgaacccctgaatgctgtagttactggtatgtactttcatcaacagtgcggtattttcattcaccgcctgacgataatcattcgcgtgcgtgcggttggtggtccctacttcgtgtagggtgcagcctgcctgacgcataacatcgggaatacgaaacgcgccgccaatctccaccagttcgccgcgagataccaccacctcttttccgctggcagtggccgccaacatcaataacaccgccgccgcattgttattgacgatacaggcatcttccgcccccgtaatacggcacagcagctgcgccagcgcccgatcgcgatgtccgcgtccggcgtcgtccagatcatactcgagggtcactggcgaacgcatagcctgcgcaacggcttccaccgcggcttccgcctgtaaagctcgcccaaggttggtatgcagcacggttcccgtcaggttgatcaccggacgcagcgcgctctgcgcttctttcgtcaaccgggcatcgacttcttgcgcccagttttcacaccacgcaggcagcgtctggctgccacgaatcacttctcgcgcttcgtcgagcatctgacgcaacaattccaccacgcgggtgtgaccataagtatcacgcaaagaaaggaaggagctatcgcgcaataagcgatcaatagccggaagttgactatagagggaacgcgtttcggttgtcataggaaacctggctgatcaaggccctctcacacggagaagggcgtttaacataaccacggattgtaacgtgagatgggtcaggaggacatatcgcgcatcaagcctttggcggttcggtgcgagcaaaactttcgcggctaaacaggttttcgaccagtttgactaagtgtgggcggtcgacacaccaacctggcgcaacgcggcggaaattgagatatccgacggcacaggcaatggcgatagtcgccagattgaccgtatcggttttgagtgtgccatcgaccagatatccttccagcacatccagactgcggttgattttctcccgctggcgtaacaattcatcttcagactgctgcgccgctggacgcgcctgttcacgcaccgataccagcccggcatccataatgccatccgccagtgcctcaattttgcgcacccgcaacgactccagcggatcgcgcggcaacatcgccggagcgacattcattaattcaatatattcagcgatgatcggcgaatcaaaccagcattcgccctcttcggtcaccagcaccggcacttttcctaacgggttaaattgcgccacgccgttgtccgcgttatagggcagttcattaataaattcgaaagttatgcccttttctaacaacagaatagaaagtttgcgtacaaacgggctggtgtagctaccgacgagtttcatgccgagtcctttgtgcgaggaaaaatatcagtatggcctggtgatgggaaaaagggcagaaaatgttgatggtttgttacttccaaataaatcacatatttatcatggtgatataaatattttcctaattatttcactctgatggatatctcacttcaggctttcttataaatctgtagggtttcgcctgtcagcagacaaataacccgataaaacaaggatgagaaatgagcggaaaaccggcagcgcgtcagggcgacatgacgcagtatggcggtagcattgttcagggttcagccggggtgcgcattggtgcccccaccggcgtggcctgttcggtgtgccccggcggagtgacgtccggccatccggtcaatcccctgctcggtgcaaaggtccttcccggtgaaaccgacatcgccctgcccggcccgctgccgttcatcctctcccgcacctacagcagttaccggacaaaaacgcccgcgccggtggggagcctcggccccggctggaaaatgcctgcggatatccgcttacagctgcgcgataacacactgatactcagtgataacggcggcagaagcctgtattttgagcacctgtttcccggtgaggacggttacagccgcagcgagtcactgtggctggtgcgcggcggcgtggcgaaactggatgaaggtcaccggctggccgcactctggcaggcgctgccggaagaactccgcttaagtccgcatcgttatctggcgacaaacagtccgcaggggccgtggtggctgctcggttggtgtgagcgggtgccggaagcggatgaggtgctgcctgcgccgctgccgccgtaccgggtactgaccgggctggtggaccgcttcgggcgcacacagacgttccaccgcgaagccgccggtgaattcagcggcgaaatcaccggcgtgacggatggtgcctggcgtcacttccggctggtactgaccacgcaggcgcagcgggcagaagaagcccggcagcaggccatttccggcgggacggaaccgtccgcttttcctgataccctgccgggttacaccgaatatggccgggacaacggcatccgtctgtctgccgtgtggctgacgcacgacccggaatacccggagaatttacctgccgcgccgctggtgcgctatggctggacgccacgcggcgaactggcggtggtgtatgaccgtagtggcaaacaggtgcgcagctttacttacgatgataaataccggggccggatggtggcgcaccgtcacacgggccggccggaaatccgttaccgttacgacagcgacgggcgggtgacagaacagctaaacccggcaggcttaagctacacgtatcagtatgagaaagaccgcatcaccatcaccgacagcctggaccgccgtgaagtgctgcacacgcagggcgaagccgggctgaagcgggtggtgaaaaaggaacacgcggacggcagcgtcacgcagagtcagtttgacgccgtgggcaggctcagggcacagacggatgccgcaggcaggacaacagagtacagcccggatgtggtgacgggcctcatcacgcgcataaccacgccggatggcagggcatcggcgttttactataaccaccacaaccagttaacgtcagccaccgggcctgacgggctggaattgcgccgggaatatgatgaattgggccgtctgattcaggaaactgcccctgacggcgatatcacccgctaccgttatgataatccacacagtgacttaccctgcgcaacggaagatgccaccggcagccggaaaaccatgacgtggagccgttacggtcagttgctgagcttcaccgactgttccggttatgtaacccgttatgaccatgaccgcttcgggcagatgacggcggtgcaccgcgaggaagggctgagtcagtaccgcgcatacgacagccgtggacagttaattgccgtgaaagacacgcagggccatgaaacgcggtatgaatacaacatcgccggtgacctgaccgccgtcattgccccggacggcagcagaaacgggacacagtacgatgcgtggggaaaggccgtccgtaccacgcagggcgggctaacgcgcagtatggaatacgatgctgccggacgggtcatccgcctgaccagtgaaaacggcagccacaccaccttccgttacgatgtacttgaccggctgatacaggaaaccggctttgacggccgcacacagcgttatcaccacgacctgaccggcaaacttatccgcagcgaggatgagggtctggtcacccactggcactatgacgaagcagaccgcctcacgcaccgcaccgtgaagggtgaaaccgcagagcggtggcagtatgacgaacgtggctggctgacagacatcagccatatcagcgaagggcaccgggtggcggtgcattacaggtatgatgagaaaggccggctgaccggtgagcgtcagacggtgcatcacccgcagacggaagcactgctctggcagcatgagaccagacatgcgtacaacgcgcaggggctggcgaaccgctgtataccggacagcctgcccgccgtggaatggctgacctacggcagcggttacctggcaggcatgaaactcggcgacacaccgctggtggagtacacccgcgaccgcctgcaccgggaaacgctgcgcagcttcggccgttatgaactcaccaccgcttatacccctgccgggcagttacagagccagcacctgaacagcctgctgtctgaccgcgattacacctggaacgacaacggcgaactcatccgcatcagcagcccgcgccagacccggagttacagctacagcaccaccggcaggctgaccggcgttcacaccaccgcagcgaatctggatatccgcatcccgtatgccacagacccggcaggtaaccgcctgcccgacccggagctgcacccggacagcaccctcagcatgtggccggataaccgtatcgcccgtgacgcgcactatctttaccggtatgaccgtcacggcaggctgacagagaaaaccgacctcatcccggaaggggttatccgcacggatgatgagcggactcaccggtaccattacgacagtcagcaccggctggtgcactacacgcggacacaatatgaagagccgctggtcgaaagtcgctatctttacgacccgctgggccgcagggtggcaaaacgggtgtggcggcgtgaacgggacctgacgggctggatgtcgctgtcacggaaaccgcaagtgacctggtacggctgggacggcgaccggctgaccacaatacagaacgacagaacccgcatccagacgatttatcagccggggagcttcacgccactcatcagagttgaaaccgccaccggtgagctggcgaaaacgcagcgccgcagcctggcggatgcgcttcagcagtccggcggcgaagacggtggcagtgtggtgttcccgccggtgctggtgcagatgctcgaccggctggaaagtgaaatcctggctgaccgggtgagtgaggaaagccgccgctggctggcatcgtgcggcctgaccgtggagcagatgcaaaaccagatggacccggtgtacacgccggcgcgaaaaatccacctgtaccactgcgaccatcgcggcctgccgctggcccttatcagcaaggaagggacaacagaatggtgcgcagaatacgatgaatggggcaacctgctgaatgaagagaacccgcatcagctgcagcagcttatccgcctgccggggcagcagtatgatgaggagtccggcctgtattacaaccgccaccgctattatgacccgctgcaggggcggtatatcactcaggatccgattgggctgaaggggggatggaatttttatcagtatccgttgaatccagttacgaatacagatcctctggggttagaagtttttcctagaccattccccttgccaattccatggcccaaaagccctgcacagcagcaagcagatgataatgctgcaaaagcattgacaaaatggtggaacgatacagcatcacaaagaatatttgactctctaatattgaataatccgggactagcattagatataacaatgatagcttctcgtggaaatgttgcagacacagggataactgatcgtgtcaatgacataataaatgacagattctggagtgatgggaaaaaacccgacagatgtgacgtacttcaggaactaattgattgtggtgatattagtgctaaagatgcaaaaagcacacagaaagcctggaattgtcgtcactccagacagtcaaacgataaaaaaagatagcccttgtggaggttcctgcaatgtcaaatacataccagaaaagaaaggcaagtaaagagtatggtttatataatcaatgtaagaaactaaatgatgatgaattatttcgcttacttgatgatcacaattccttgaaaaggatttcatctgccagagtattacagttaagaggtgggcaagacgctgttagattggcaattgagttctgctctgataaaaattatatccgtagagatatcggagcatttatactcgggcaaataaaaatttgcaaaaaatgcgaagataatgtttttaatattttgaacaatatggcattgaatgataagagcgcttgcgttcgagctacggcaatcgagtcaacggctcagcgatgcaagaaaaacccaatttattcacctaaaatagtagaacaatctcaaattactgcttttgataaatcgactaatgtcagacgtgctacagcatttgctatttctgttatcaatgataaagcaacaattccactattgattaatctgttaaaagatccaaatggagatgtcagaaactgggccgcatttgcaataaatatcaataaatatgataatagtgatattagggattgttttgtggagatgcttcaggataaaaatgaggaagtccgtattgaagcaataatcggactttcctacagaaaagataaaagggttttatctgttttatgcgatgagttaaaaaaaaatactgtttatgatgatatcattgaagctgcgggtgaattaggtgataaaacgctacttcctgttttagatactatgttgtacaagtttgatgacaatgaaattataacttccgctattgataagctgaagcgttcatagcgtgagttgcctatgcacagtgggggattcccgccggcacggtgcagatgctcgaccggctggaaagtgaaatcctggctgaccgggtgagtgaggaaagccgccgctggctggcatcgtgcggcctgaccgtggagcagatgaaaaccagatggacccggtgtacacgccggcgcgaaaaatccacctgtaccactgcgaccatcgcggcctgccgctggcccttatcagcaaggaagggacaacagaatggtgcgcagaatacgatgaatggggcaacctgctgaatgaagagaacccgcatcagctgcagcagcttatccgcctgccggggcagcagtatgatgaggagtccggcctgtattacaaccgccaccgctattatgacccgctgcaggggcggtatatcactcaggatccgattgggctgaaggggggatggaatttttatcagtatccgttgaatccggtcataaatgtagatccgcaaggtttggttgatataaatttataccccgaaagtgatcttatccattctgtagctgatgagattaatatcccaggcgttttcacaatcggggggcatggtacccccacatctattgaatccgcaacgcgcagtatcatgacagctaaagatctagcatatctaattaaatttgatgggaattataaagatgggatgacagtttggttattttcttgtaatacaggtaaaggacaaaattcatttgctagctaattagctaaagagttacatacaaatgtaataggacctgacacgctatggacgtggtgggggcgaggaactaatggtaagttaaaaatggatacagtgctaacagcaccaacgaaccttaattcaaataaggatctaatggctataacaacaaaagaccttggtaattggataacatatgggccatctgggcaccccatttctaatatgcaaggtacgccagaaaaacccagtgatataagataggttgtagatgtatgaaagcatgcttgttactatttttttatttctcttttatttgtcaattgcatggtgctgatgtgaaaataaaacaaaacgaaagtatgatggggtctacagcaatgacctatgatttaagtgaagaaaagttgatgaaactgaagtataaatcacaacatggtgattcagaggcatcatttcgactatatcaatattactgctttactaaaaataacatttacaaacaattgcgattcttggaaagatcagcatctcaggggaatgttacagcgcagtttaattatggggtctttttatcagatacaaatccaacattatcagaatattataatttgaatagagctatttattggatggaattcgctgtaaataacggtaatattgatgcaaagagcaaacttcaagagctcaaaaagctaaagcgaatggatagaaggaagaataaggagaatccgtaaaagcaatagttcatcagactgccgcagcagtagtatgatgatgaatcagggctgtactataactattatcggtaacattaaccgcagcaggggcggtataacactcaggctccgattgggctggaaggtaggtggaatttttatcagtatccgttgaacccgatttctggaatcgatccccttgggattagccacctgtttatacagcataactttaggtatgctttcgtgtgtttcagatataccatgtgatgataatttttatgatgtgcttagtattccagtcgcttctggtaataatatgcaatgtaaaaataatccccgttgtacacatttataaatagatggccaatacctcaaggcctatggagttggaatgttaatgacccgggagcaagcaatagaaaacctgacggcatacgattagtaccgtcagttaatacaggaacttataatcgcaatggattttcaatacatagttgtttaaacgcttttggtccgtctttaggacctcgattctgttccgagggttgtataactggtttatctaatgacatgcaaaaattaaatgagttaatattttcagagccagatagcacattaacagttacggactaaaaaatatggcaaggttattaacaattgtatttttttctctatttctgcgagtgcagttactgcaagacaatttcagagagagttagatttggcagacaaagcaatattatgggcactaatatcagccagtactaaagagggacgaaaagcgtgttcactaagctattttgcctgtaaggccgcagaggctgaactcggactggcatatatggctgcgaatgataacaaggaatttctcacatccttatctaatataatgaggtacaaaatagatgctggactttccgaatcctatacatgctatttattaagtaagggaaagatcataagaccatatctgaaaaatctaaatccactccaacttgccgctgattgcattgaaacagtaaataaaataaaagataagaataaaaaaaatcattgatataaattcagttaatatttgtagtgatgataaaaatataaaattgagagttaatagtactattatggccattgatgattctataaagtgcatcgatgaatgataacttaattttatttaaaaatatattaataactcactctccaggagtttttttaacttagttttataatgaatacgataattaaaagtgaagaagaaaatagttgtatacatatattccatgaccctacattgtgatctatagattaaatattttttaaatgtgactgtcatccttcagataataaagccatcatcgcaatagatggaaaagcactcctgctcttttttgattagagccgtcgcaggaggaacaactcatatcatcattgcgatctcgacgatgtatagtctcatcctgcggcagaacaagacggataaaaaatccaatgagagcacactcatccagaacttattaacataatgaatattaaagaaaaatcatcgaagctaatgaagtaatatgcaaaaataattagtccttacaaggagcaaagttccataatctcccccctccccctcaatgatccaaataaagataatgcatccagctggtcattcttagcagcactttccgcatcaccgaaacatggctgaaatggtcggagtaaaccgccacctgggcgtagatgccgtcgggtaaggcatcgatatcatcgttagggtccagttcaatggttcccagcacaccgtccgtgccgggcacgaccgttaatgattgcaataccccctgcgcctgataagaaccgcctggcacgacaggtaaaatactagtcagtttgccgtgaaacacctgcccaggtagcgcgttaaacaccacttccgcatcatcgccaggtttcagacgtaacagcgagttttgccgaaattgggcgacaatttgccgtttttgctcggggatgaagaccatcaccggacgcagcggcaaggcagctgcgtatgtacctgggcggatcagtacctgagtaacgtagccattgctcggcgcgcgaatgacagtctgctcaaggttatattttgcttcagtaagttgcgctcttaagctcacaatctgcgattgctcgccgttaaccatactgtcgagctggctctggatctgcgcctgctccgccaccgagcctttcaccagcgcatcctgcgcgaggaaattttgccgcgcatcgtcgatgtcacgttccgagaacggattcaccgccgcctggctgcctttcaagtaacgttgataatttttaaacagacggtcgcgctccgctgaaacctgggtggtgttggcctgcgcttcagtgagctgcgcacgcagcgtctttatattatgcgtcgccgtcatcaggtcagcctgaagtctgtcaactcgcgcctggtaacgaaccgggtcgagcttaaaaagcacctcgcccttttgaataagctgattattcttgtcagtgacttcagtaacaattcccgtcacctgtggcgtgatagggatcgctatcactgccttttgcgcggtaaaagtgtaagggtggttgtagttcatcaacaaaatcaaaccactcaccagaaacacgcctcccagcgccgccgtcgccagcgtccactgatttaccggaatgcggaagattttaaagaccgcccacgccagcgccacgtaagttaaaacaatcaatagatccataattagatctccgggaacgtggaatagtcagtctttttctcggcggcgagttgatgctccagccgggaaattcggtcagaaagtgcggcgatttccgggtcagtcgctttctcctgcgacgcaacatgtgactgcataccccagccacgctccggttgatagagcgtcgcccagatccacagaaacggccagataacatgcagagtaaacaggctcacccagcccgccgtatgaatagcgtcggcatggggatggttgcgctttttggcaatcagataagggatgtcatgtatcgcgatgattccataaaaaatcaccagaaagacgaagatcagcactcccaacgcgaaatagtttagaaacatatctgcctcggattcacgtttatcagtgttgtttttgggctggcagccagaagggagtcaggctgatattttgacaataatccgggttcgcgattctcgccataacaccaaagaataatttttagaggtgatgagttgcttagttacataacgattgtatgacgaaggcataacatgctgtagatcacatcaggtgaacgccgtaagaaaatatcttgtgattcagatcacaaagattcaacaaaccatcaaaacaaaaatgtgacactactcacatttaaatgccatttttagcgaaaatcgccgccttgttgcttttttacacaagcgttttgtgatgaacgtcacgtcaattacctctctaccccctatatttatgtgattgatatcacacaaaaggccgtcgactggacagttaaccgattcagtgccagatttcgcagtatctacaaggtccggctacctctgccgccacattaacaaaaaacctcgggcttccagcctgcgcgacagcaaacataagaaggggtgtttttatgtcatccgatattaagatcaaagtgcaaagctttggtcgtttcctcagcaacatggtgatgccaaatatcggcgcgtttatcgcgtggggtatcatcaccgcgttatttattccaacagggtggttaccgaacgagacgctggcgaagctggtcgggccgatgatcacttatctcctgccgctgctgatcggttataccggtggtaagctggtaggcggcgaacgtggcggcgtagtcggtgccatcaccaccatgggcgttatcgtcggcgcagacatgccgatgttcctcggttctatgattgcaggtccgctgggcggctggtgcattaagcacttcgaccgctgggtagacggtaagatcaaatccggttttgagatgctggtgaataacttctccgcaggcatcatcgggatgatcctcgctattctggcattcctcggcattggcccgattgttgaagccctgtccaaaatgctggctgcgggcgttaacttcatggttgtccatgacatgctgccgctggcgtctatctttgttgaaccggcgaaaatcctgttcctcaacaacgccattaaccacggtatcttctcgccgctgggtattcagcagtcccatgaactgggtaaatcaatcttcttcctgattgaagctaacccaggtccaggtatgggcgtgctgctggcgtacatgttctttggtcgtggtagcgctaaacagtctgcgggcggtgcggcaatcatccacttcctggggggtatccacgaaatctacttcccgtatgtgctgatgaatccgcgtctgatcctcgcagtcatcctcggcggtatgactggcgtgttcacgctgactatcctgggcggtggtctggtttctccggcatctccgggttctatccttgctgtactggcgatgacaccaaaaggtgcttacttcgctaacatcgcgggtgtgtgtgcggcgatggctgtctccttcgttgtctctgctattttgctgaaaaccagcaaagtgaaagaagaagatgatattgaagcagcaactcgtcgtatgcaggacatgaaagctgagtctaaaggcgcatctccgctgtctgctggcgatgtgactaacgacctgagccacgtacgtaaaatcatcgttgcctgtgacgccggtatgggttccagtgcgatgggcgcaggcgttctgcgtaagaaaattcaggatgcaggtctgtcgcagatttctgttactaacagcgcgatcaacaacctgccgccagatgtggacctcgtcatcactcaccgtgacctgaccgaacgcgctatgcgccaggttccgcaggcacagcatatttcgctgaccaacttcctcgacagcggcctgtacaccagcctgaccgaacgtctggttgctgcccaacgccacacggcaaacgaagagaaagtaaaagacagcctgaaagacagctttgacgattccagtgctaacctgttcaagctaggcgcggagaacatcttcctcggtcgcaaagcggcaaccaaagaagaagcgattcgttttgctggcgagcagctggtgaaaggcggttacgttgagccggaatacgttcaggcgatgctggatcgtgaaaaactgaccccgacttatctgggtgagtctatcgcggtgccacacggtacggttgaagcgaaagatcgcgtactgaaaacgggcgtcgtgttctgccagtacccggaaggcgtgcgcttcggtgaagaagaagatgacattgcccgtctggtgattggtattgctgcccgtaacaacgagcacattcaggttatcaccagcctgaccaatgcactggatgatgagtccgtcatcgagcgtctggcacacaccaccagcgtggatgaagtgctggaactgctggcaggtcgtaagtaatccaatcccaccctctccacatggagaaggtggggttaattgcctgatgcgctacgcttatcaggcctacaggatgcatcacaatttgttgaatttgcacgttcttgtaggccggataaggcgcttacgcgcatccgcgctgcccctctcctcacggagagggtttgggtgagggaaaagcctcaccccagccctctcgggtaaaaacattgatgaaggttaatactatgaaagcattacattttggcgcaggtaatatcggtcgtggctttatcggtaaactgctggcagacgcgggtatccaactgacgtttgccgatgtcaatcaggtggtacttgatgccctgaatgcccgtcatagctatcaggtacatgtggttggtgaaaccgagcaggtagataccgtttccggcgtcaatgctgtcagcagcattggtgatgatgtcgttgatctgattgctcaggttgatttagtcactaccgccgttggcccggttgtgctggaacgtattgctccggcaatcgccaaagggcaggtgaaacgtaaagaacaaggtaatgaatccccgctgaacatcatcgcctgtgaaaacatggtacgcggtaccacgcagctgaaaggccatgtgatgaacgccctgccggaagacgccaaagcgtgggtagaagaacacgttggctttgtcgattccgccgttgaccgcatcgtaccgccttcggcttcggcaactaacgatccgctggaagtgacggtagaaaccttcagcgaatggattgtcgataaaacgcagttcaaaggcgcactgccgaacatcccaggcatggagttaaccgacaacctgatggcatttgtcgaacgtaaactcttcaccctgaacacgggtcatgctataaccgcgtacctcggaaaactggccggtcatcagaccattcgtgacgcgattctcgacgagaaaatccgcgcggtggtaaaaggtgcgatggaagaaagtggtgcagtattgatcaagcgctacggctttgacgctgacaagcatgcggcgtacatccagaaaattctcggccgttttgagaacccgtatctgaaagatgatgtagagcgcgtaggccgtcagccactgcgtaaactgagtgctggcgaccgtctgatcaagccactgctcggtacgctggaatatggtctgccacataaaaacctgattgaaggtattgccgctgcaatgcacttccgcagtgaagatgatccgcaggctcaggaactggcagcactgatcgctgacaaaggtccgcaggcggcgctggcacagatttccggtcttgatgccaacagcgaggttgtatccgaggcggtaaccgcttataaagcaatgcaataatggtggaccaggcgcaggacaccctgcgcccgaataacagattgtcagatatgcaggcaacaatggaacaaacccaggcctttgaaaaccgtgtgcttgagcgtctgaatgctggcaaaaccgtgcgaagctttctgatcaccgccgtcgagctcctgaccgaggcggtaaatcttctggtgcttcaggtattccgcaaagacgattacgcggtgaagtatgctgtagaaccgttactcgacggcgatggtccgctgggcgatctttctgtgcgtttaaaactcatttacgggttgggcgtcattaaccgccaggaatacgaagatgcggaactgctgatggcattgcgtgaagagctaaatcacgacggcaacgagtacgcctttaccgacgacgaaatccttggaccctttggtgaactgcactgcgtggcggcgttaccaccgccgccacagtttgaaccagcagactccagtttgtatgcaatgcaaattcagcgctatcaacaggctgtgcgatcaacaatggtcctttcactgactgagctgatttccaaaatcagcttaaaaaaagcctttcaaaagtaagcaacgtctgcttactgcccctctacctgcttcggccgataaagccgacgataatactccagacgttgtagatataacggcacgctttcatcgggtattccggacggaatcgcgttacggggaggaagttttttcagatactcccggaacgcctggcttgatgccatgaaatctacggctttatcgataagaagcggaacgttttcacctaatttgcccatgatgatatctccgtattaccccgcgccgggaatgcgcggccgccaattttagtttaggttcccggtaaagatgacattaaggaaaacgtgctgaatcctcaataatcatccgctgctgtttattatcttttttctatagatttcttaattaatcaacgaattgcgcagtttttgagcatgttaatgattacgttacagaactattacaatgtcattagttgtgaacaaagcacctggtcgcgcatactaggggctataaatttatctttatcagaagccatcacatgaaagaagtcgaaaaaaacgaaatcaaacgcctcagcgatcgcctggacgccatccgccaccagcaggccgatctttcgctggttgaagccgcagacaaatatgccgagctggaaaaagagaaagccacgctggaagcagaaattgctcgcctgcgtgaagttcatagccaaaaactgagtaaagaagcacagaagctgatgaagatgccattccagcgcgcaattaccaaaaaagagcaggctgatatgggcaagctgaagaaaagtgttcgcggactggtcgttgtgcacccaatgaccgcactgggccgcgaaatgggcctgcaggagatgactgggttttcaaagaccgcgttttaagaacacagtatctacagggtgattctgcacattcctataggccgagtaaggtgttcacgccgcatccggcaagataaggcgctctggatcaacaacctaagggcaattctctgatgaggattgcccttttctttaccagacatctccccccacaagaattggccctaccaattcttcgcttatctgacctctggttcacaatttcccaattaaaactcacatcaatgttgccaatacataacatttagttaaccattcattgtcattatccctacacaacacaattggcagtgccacttttacacaacgtgtgacaaggagatgagcaacagactcattacacgatgtgcgtggactccaggagacctgcaatgaatctctggcaacaaaactacgatcccgccgggaatatctggctttccagtctgatagcatcgcttcccatcctgtttttcttctttgcgctgattaagctcaaactgaaaggatacgtcgccgcctcgtggacggtggcaatcgcccttgccgtggctttgctgttctataaaatgccggtcgctaacgcgctggcctcggtggtttatggtttcttctacgggttgtggcccatcgcgtggatcattattgcagcggtgttcgtctataagatctcggtgaaaaccgggcagtttgacatcattcgctcgtctattctttcgataacccctgaccagcgtctgcaaatgctgatcgtcggtttctgtttcggcgcgttccttgaaggagccgcaggctttggcgcaccggtagcaattaccgccgcattgctggtcggcctgggttttaaaccgctgtacgccgccgggctgtgcctgattgttaacaccgcgccagtggcatttggtgcgatgggcattccaatcctggttgccggacaggtaacaggtatcgacagctttgagattggtcagatggtggggcggcagctaccgtttatgaccattatcgtgctgttctggatcatggcgattatggacggctggcgcggtatcaaagagacgtggcctgcggtcgtggttgcgggcggctcgtttgccatcgctcagtaccttagctctaacttcattgggccggagctgccggacattatctcttcgctggtatcactgctctgcctgacgctgttcctcaaacgctggcagccagtgcgtgtattccgttttggtgatttgggggcgtcacaggttgatatgacgctggcccacaccggttacactgcgggtcaggtgttacgtgcctggacaccgttcctgttcctgacagctaccgtaacactgtggagtatcccgccgtttaaagccctgttcgcatcgggtggcgcgctgtatgagtgggtgatcaatattccggtgccgtacctcgataaactggttgcccgtatgccgccagtggtcagcgaggctacagcctatgccgccgtgtttaagtttgactggttctctgccaccggcaccgccattctgtttgctgcactgctctcgattgtctggctgaagatgaaaccgtctgacgctatcagcaccttcggcagcacgctgaaagaactggctctgcccatctactccatcggtatggtgctggcattcgcctttatttcgaactattccggactgtcatcaacactggcgctggcactggcgcacaccggtcatgcattcaccttcttctcgccgttcctcggctggctgggggtattcctgaccgggtcggatacctcatctaacgccctgttcgccgcgctgcaagccaccgcagcacaacaaattggcgtctctgatctgttgctggttgccgccaataccaccggtggcgtcaccggtaagatgatctccccgcaatctatcgctatcgcctgtgcggcggtaggcctggtgggcaaagagtctgatttgttccgctttactgtcaaacacagcctgatcttcacctgtatagtgggcgtgatcaccacgcttcaggcttatgtcttaacgtggatgattccttaatgattgttttacccagacgcctgtcagacgaggttgccgatcgtgtgcgggcgctgattgatgaaaaaaacctggaagcgggcatgaagttgcccgctgagcgccaactggcgatgcaactcggcgtatcacgtaattcactgcgcgaggcgctggcaaaactggtgagtgaaggcgtgctgctcagtcgacgcggcggcgggacgtttattcgctggcgtcatgacacatggtcggagcaaaacatcgtccagccgctaaaaacactgatggccgatgatccggattacagtttcgatattctggaagcccgctacgccattgaagccagcaccgcatggcatgcggcaatgcgcgccacacctggcgacaaagaaaagattcagctttgctttgaagcaacgctaagtgaagacccggatatcgcctcacaagcggacgttcgttttcatctggcgattgccgaagcctcacataacatcgtgctgctgcaaaccatgcgcggtttcttcgatgtcctgcaatcctcagtgaagcatagccgtcagcggatgtatctggtgccaccggttttttcacaactgaccgaacaacatcaggctgtcattgacgccatttttgccggtgatgctgacggggcgcgtaaagcaatgatggcgcaccttagttttgttcacaccaccatgaaacgattcgatgaagatcaggctcgccacgcacggattacccgcctgcccggtgagcataatgagcattcgagggagaaaaacgcatgattatttccgcagccagcgattatcgcgccgcagcgcaacgcattctgccgccgttcctgttccactatatggatggtggtgcatattctgaatacacgctgcgccgcaacgtggaagatttgtcagaagtggcgctgcgccagcgtattctgaaaaacatgtccgacttaagcctggaaacgacgctgtttaatgagaaattgtcgatgccggtggcactggctccggtgggtttgtgtggcatgtatgcgcgtcgtggcgaagttcaggcagccaaagcggcggacgcgcatggtattccgtttactctctcgacggtttccgtttgcccgattgaagaagtcgcgccagccatcaagcgcccaatgtggttccagctttatgtactgcgcgatcgcggctttatgcgtaacgcgctggagcgagcaaaagcagcgggttgttcgacgctggttttcaccgtggatatgccgacaccgggcgcacgctaccgtgatgcgcattcaggtatgagcggcccgaacgcggcaatgcgccgctacttgcaagcggtgacacatccgcaatgggcgtgggatgtgggcctgaacggtcgtccacatgatttaggtaatatctcagcttatctcggcaaaccgaccggactggaagattacatcggctggctggggaataacttcgatccgtccatctcatggaaagaccttgaatggatccgcgatttctgggatggcccgatggtgatcaaagggatcctcgatccggaagatgcgcgcgatgcagtacgttttggtgctgatggaattgtggtttctaaccacggtggccgccagctggacggtgtactctcttccgcccgtgcactgcctgctattgcagatgcggtgaaaggtgatatagccattctggcggatagcggaattcgtaacgggcttgatgtcgtgcgtatgattgcgctcggtgccgacaccgtactgctgggtcgtgctttcttgtatgcgctggcaacagcgggccaggcgggtgtagctaacctgctaaatctgatcgaaaaagagatgaaagtggcgatgacgctgactggcgcgaaatcgatcagcgaaattacgcaagattcgctggtgcaggggctgggtaaagagttgcctgcggcactggctcccatggcgaaagggaatgcggcatagtcgtttgcgccccctcaccctaaccctctccctcagggagaggggaccgttcggcgctgtatgtactccctcactctgaaacgacaccgcactctttttttctccctcgcccctccggggagagggccggggtgaggggaaaaggccgcactgctcaccaattttctgctatcctgcccccgcactaagggggcagtatgctaaacatcgtactttacgaaccagaaattccgccaaatactggcaacatcatccgtctttgcgctaataccggctttcgtctgcatatcatcgaaccgatgggatttgcctgggacgataagcgcctgcgccgcgcggggctggactatcacgagtttaccgccgttacgcgtcatcatgactatcgcgcgttcctcgaagcagaaaatccccagcgcctgttcgccctcaccacgaaaggtacacctgctcacagcgccgtaagctatcaggatggcgattatctgatgttcggcccggaaacacgcggcctgccagcgagcattcttgatgccctgcccgctgaacaaaaaattcgcattccgatggtgccggacagccgcagcatgaatctgtccaatgcggtgtcggtagtggtgtatgaagcctggcggcagttggggtatccgggagcggtattgagagattagttactgtaggccggatagatgattacatcgcatccggcacgatcacaggacattagatcccatccccatactcaaatgtatggttaataccgttgaaatgctggtccatatccattgatggcttatcgctgtctggtttaccgacaatacgagccggaacgccagcggcggtggtatgcggcggcaccggttgcagcaccacggaacctgcgccaatcttcgcgccgcgcccaacttcaatattgccgaggattttcgcgcccgcgccaatcatcacaccttcacgaattttcgggtgacggtcaccaccagatttacccgtaccgccaagcgtcacagattgcagaatcgatacgtcgttttcaatcaccgccgtttcaccaacgacgatgcctgtcgcgtggtcaagcatgataccgcgaccaatttttgctgccgggtgaatatcgacctggaacgtcacagaaacctggttttgcagaaagattgccagtgcgcgacgcccctgattccacaaccagtgaccgatgcgataggcctgcaaggcatgaaaacccttcaggtataacaacggggttgagtatttatcgactgccgggtcgcgggtacgcaccgcctgaatatcacaggccgcagaggcgatcatttccgggtcagcggcgtaggcttcttccaccacttcacggatagcaatagcaggcataattggcgatgacagcttgttcgccagcatgtagctcagtgcactgccaaggttttcgtgcttgagtagcgtcgcgtggtaaaaactggccagcattggctcacagtccgccagcgttctggcttcggctttaatattgttccagacaatttccagttcttcacacgacattgcttactccacacgatgagataatgaccggcccgttctgcgcgggccgggtcatagcggtaacaaaggttccctggggttagtggctgctgcgctcgtccttgcgtgcacgacctagtaaagtcaatgctgcctcgcgcgcgttttttccgcaatataatacttgataaatttcctcggttattggcatttcaacgccgaagcgatgcgccagttcgcggacttctttcgtattgcggtagccttccaccacctgaccaatcttctcctgcgcgctttgtacatccatgccctgaccgagcatcatgccaaaacggcggttacgcgactggttgtcggtacaggtaagcaccagatcgccaagccccgccatgcccataaaggtggcagggtcggcacccagcgccgcaccaagacgcgacatttcagccagcccacgggtgatcagcgccgtacgcgcattcgcaccaaaaccgataccgtcggacatccccgcaccaatggcaataacgtttttcaccgcgccgccaagctgcacgccaatgaaatccggattgctgtaaacgcggaaacttttgccgcagtgcagcagctgctggagatcatcggcaaaggtctgatcggtcgaggccagcgaaatagctgtcggtaaacctgccgccagttctttcgcaaacgttgggccagagataaccgccagcggaatttgatcgcctaaggcctcacgcgccacgtcctgtaacagacgtccggtttccgcttccagccctttggtcgcccacaccagacgcgcatcaggacgcatcagtggtttaatctggcgcagcacttcaccaaagacatggctgggtacgacgacgagaatattacggctggctgccagcgcagtggcgagatcgctttcaagatggagcgtatcgggaaaaggcacatcggggagaaacgcggcgttacagcggtcgcgttcaagcgttgcgatatgttcagggtcatggccccagaggacaacctcgtggccatttcttgccagggtgatggcaagagcggtgccgtacgagccggcaccgatcacagtcattgaagcattacgttggttcatcaggcatcctgatgttcttcagtaccttcgccagcctgctgctgcaaatagttcatgaacagcgcatcgaagttaaccggcgcaaggttcagttgcgggaatgtaccgcgggataccatgctggtgatgcactcacgagcatacgggaacagaatgttcgggcagtatgctcccaggcaatgcgccatctgggtgccttcgatacccgcgatggagaaaataccgccctgctgaacttcacacaggaacgcggtttcttcgcccaaagaggccgttacggtaacacgcagtaccacttcgtatacgtcatctgccagttgggaagatgccgtatccagatcaagtttaacttctggttgccaatctttctggaaaacgtgcggcgcgttcggcgcttcgaaagagatatccttggtataaatacgttggatctggaaagtcatttcagtgttgttttgttctgacatgtgtagaaaacccttaagtgttgtccttaaatactgcgcaatgtaatgccaacgttcacacgttatttcagcaggggatccagtccaccacgtgcatccaatgcatacaagtcatcacagccgccaatgtgctgtgcgtcaataaaaatctggggaaccgtggtgcgaccgctgcgtttgatcatctcttcacgcttggcggcgttgccatcgatcggcagctcctggaaactcacgcccttgctgctcagcagtgcttttgcacgatggcaatacgggcaggtttctttggtatagatttcaacattggccataaattagctcctgtttttttaccctgaaatttcatgttgcagggcggcagcaaaatggagtgtccccagaagcttataacaataagtcgctgggggcctaattgcagctaacggcctgcatcatgaaagacgacaggtaaattatttgccgcgcaccaaaggcaagttttcgccagcccagccagcgacgccttctttcagcacgaatacttgcgcaaaaccagctttcgtcagtgcgtttgcaggctcctggcactgcatgccagaaccgtctaccacgataaccggtttgtctttgtgcttctcaagctcaccaacattgttggctttgatttcgctcggcaacagattaatagaacctgcgatatggcctttacggaagtcatcacgctgacgtaaatccacaaccacagcgtcttctttgttgatcagacgcgtagcttcaccacgagtaatcaccttcactttcgaggtcaggctcttaaacgtagtcacaagaaccgccaccagtaacgcgatccaggcgatactcagtatgggatgacggccaacaaattgcataatttcttgcatggggggtaacaactcccgacgtagtgattaaaaaaaccaggaaaggagtatacctgcgcggtgcggcaaatacagccagcgcgttaactggaatgcaattttgcggggcgcgacgaaaaaaaagcgtaaatctggcatcggcttgccgcgagcggtcgtatattttgatcttcagaggctattttatcgattcagctgtagtaaaattacgcaaattttgactcttgagtatgaggttgtcgcaatgttggtttctaaaaaacctatggtactggtgattctggatggctatggctatcgcgaagaacagcaggataacgccatttttagtgctaaaaccccggtaatggatgcactgtgggccaatcgtccgcataccctaatcgacgcttccggtctggaagtcggtctgcctgaccgtcagatgggtaactccgaagtaggccacgttaacctgggtgccggccgcatcgtgtatcaggacctgactcgtctggacgttgaaatcaaagatcgcgctttctttgctaatccggtgctgactggcgcggtagataaagcgaaaaacgcaggcaaagcggtacacattatgggtctgctctccgcaggcggcgtacacagccacgaagatcacatcatggcgatggtagaactggcagctgaacgcggcgcagaaaaaatctacctgcacgcattccttgacggtcgcgacactccgccgcgcagtgctgaatcctcgctgaaaaaattcgaagaaaaatttgccgcgctgggcaaaggccgcgtagcgtccatcattggtcgttactacgcgatggaccgcgataaccgttgggatcgcgtagaaaaagcttatgacctgctgactctggcgcagggcgagttccaggccgataccgccgttgctggtttgcaggctgcttatgctcgcgacgaaaatgatgaattcgtgaaagcgaccgttatccgtgctgaaggtcagccagacgcggcaatggaagacggcgatgcactgattttcatgaacttccgtgctgaccgcgcgcgtgaaatcactcgtgctttcgtgaacgctgatttcgatggcttcgcgcgtaagaaagtggttaacgtcgatttcgtgatgctgaccgaatacgccgctgacatcaaaactgcggttgcttacccacccgcttccctggttaacaccttcggcgagtggatggcgaaaaacgacaaaactcagttgcgtatttccgaaaccgaaaaatatgcccacgttactttcttcttcaacggtggcgtagaagagtcgttcaaaggcgaagatcgcattctgatcaactcaccgaaagtggctacctacgatctgcaaccggaaatgagctccgcagagctgaccgaaaaactggttgcggccatcaagagcggcaaatacgacaccatcatctgtaactatccgaacggcgacatggtaggtcacaccggggtgatggaagcggcggttaaagcggttgaagcgctggatcactgcgtggaagaagtcgcgaaagcggttgagtccgtgggtggacaactgctgatcaccgctgaccacggtaacgctgagcagatgcgcgatccggcaacgggtcaggcacacacggcacacaccaacctgccagttccgctgatttacgttggtgataagaacgtgaaagcggttgaaggcggcaaactttctgacatcgcgccgaccatgttgtcgctgatgggtatggaaatcccgcaagagatgactggtaagccgctgttcatcgtggaataatccctccccatgaggggaaaggcgattaataccatgacacgggccgtgaaaccgcgcaggtttgcaatcaggcccatcatctacgccagcgttcttagcgctggcgtattgttgtgcgccttttccgcccacgcggatgagcgtgaccaactcaaatctattcaggctgacatcgccgcaaaagagcgcgcggtacgccaaaagcaacaacaacgcgcaagcctgctcgcacaattgaaaaagcaggaagaagcgatctctgaagccacccgtaagctgcgcgaaacgcaaaacacgctcaatcaactcaataaacagattgatgagatgaacgcgtcgattgccaaactggagcagcaaaaagccgcccaggagcgcagcctcgccgcacaactggatgccgcattccgtcagggcgagcataccggtattcagctgattctcagcggtgaagaaagccagcgtggacagcgtttacaggcttatttcggctatctcaaccaggcgcgacaagaaaccattgcccagttgaagcaaacgcgtgaagaagtcgccatgcagcgtgctgaactggaagagaaacagagcgagcaacaaacgctgttatatgagcagcgcgcccaacaggcgaaactgactcaggcgctgaacgagcgtaaaaagacgctggcagggctggagtcttccatccagcaaggtcagcaacagttgagcgagctgcgcgccaacgaatcccgtctgcgtaacagcattgcccgtgcggaagccgcggcgaaagcgcgtgcagaacgagaagcacgtgaggcccaggcggttcgcgaccgccagaaagaagcgacgcgcaaaggcaccacctacaaaccgaccgaaagcgaaaaatcgctgatgtcccgtaccggtggtctgggcgcgccgcgtggtcaggcattctggccggttcgcgggccgacgctgcatcgctatggcgaacagctacagggtgaattacgctggaaaggtatggttatcggtgcttctgaaggtactgaagttaaagcgattgccgacggtcgggtgattctggctgactggctgcaaggctacggtctggtggtggtggttgagcatggtaaaggcgacatgagtctttacggctataatcagagcgcactggtgagcgttggttcgcaggttcgcgcgggccagccgattgcactggtgggcagcagtggcggtcagggtcggccttcactctatttcgaaattcgccgccagggtcaggcggtcaatccacagccgtggttgggaagataagttttgtttccatttcgtcgtaacgttcttgcatttgccgctctgttggcgctctcctcccccgtacttgctggcaaacttgccatcgtcattgatgattttgggtatcgcccgcacaacgaaaaccaggtgctggcgatgccttccgctatctccgtcgctgtattacccgattcaccgcacgccagagagatggcgaccaaagcgcataacagcgggcacgaagtgttgattcatctcccgatggcaccgttgagtaaacagccgctggagaaaaatacgctacgcccggagatgagcagcgacgaaattgagcgcattattcgtagtgcggtcaataacgtgccctatgccgtggggatcaacaaccacatgggcagcaagatgacctctaacctgtttggtatgcagaaagtgatgcaggcgctggagcgttacaatctttacttcctcgacagcgtaaccatcggtaatacccaggcgatgcgcgccgcgcaaggcactggcgtgaaggtgatcaaacggaaggtattcctcgacgattcgcaaaatgaagcggacatccgtgtgcaatttaatcgcgcaattgacctggcgcgtcgcaacggttcgaccattgccattgggcatcctcaccctgcaacggtacgcgtgttgcaacagatggtttataacctgccgccagacattacgctggtgaaagccagcagcttgctgaatgaaccgcaggttgatacttctacaccgccgaaaaacgctgtgcctgatgcaccgcgtaatccgttccgtggcgtgaagctgtgcaaaccgaagaaaccgatagaacctgtttatgctaatcgcttctttgaagtattaagcgaaagcatcagccagagcacgctgatcgtttacttccagcatcagtggcaaggctggggcaaacagcccgaagcggcgaagtttaacgctagcgcaaattaaaggcgctacgcgtaatgcgatggtgcgaccgcgttttgtcgcgccattgccataagcggaaagaccacagtaacgcctggtaaccgaccttcacgctgcgcacattggtaatcaggcgcttatacataccggaagtaaatatctcggcaatcatccgttggcgggtaagaatatccggctctttgcgcaccgcatggcaaacacgcaatgcctcgtaagttatttgctgatgaaattccggataaatcataattttgtcggcataatttcgatttaatttctccagcaggcgggtaatcttaatatagtgacgttgataattaaggtttttattcccttgtctatgcaaccgactcactgacgtattatgcagataatatttatataatgattgctcggtatatcgcgcacgcagcgcgttaaacatgaattctgttgtccagacaatatcctgatgatgtaatccggcaataaatttaatgttatttttaacaataacatcacggcgataaacccccatccagacaacgtgagtccaacggcgcgaagaaagccccatccgcagccagtccgggccggttaatacgccggttgagcgaaggcgatcggtggggatggattgccaggtttctcccgtttcacgaaaacaccagtcagcgttgcactgcgccacgtcgaggtcgtcctctaacgccatggtcatcagcgtttcgtacatggtgggatagacttcatcgtcagcatcgacaaaagcgacatatttgcccgttgccacttcaatcccacgattacgcgccaccgatgcgccagcattcgcctgatgcaacaaacgaacgtgcggatagttttctgcgtaatactttgctatttcaacagaattatccgttgaaccatcgttaataataatgatttccagagcagtccaggtttgcgtaattaaagattccatacaagtgcggaaatcatcgcccgcattatataacggaataataacactaagtttattggtgctgttcatcataaattaccgacgacctctgaagttatcctgacgttttacaggctttgtattaagaaactattaagcctgtgagatattatttttacaggtgagagagtcacttcagggtagagagataatgagagcagctatataagagatcagcacaattacgaactctttattacactgacaggattttacatatttaacagattatcctcagataaaagggctggaataccagcccttgttcgtgttaatcccagctcagaataactttcccggactggcccgaacgcatagcgtcaaagcccttctggaaatcatcgatagagaaacgatgggtaatgatcggcgaaagatcgaggccagactgaatcagcgccgccatcttgtaccaggtttcaaacatctcacgaccgtaaatacctttaatgaacaagcctttaaagatcactttggtccagtcgatagacatatcagacggcggaatacccagcatcgcaatacggccgccgtgattcatggtgtcaagcatggtacgaaacgctggcggcgcaccggacatttccagaccgacatcaaaaccttcggtcatgcctaactccgccatcacgtcattgagattttctttggcgacgttaaccgcacgggtgatacccattttacgcgccagctcaaggcggtattcgttaacatcagtgatcaccacattgcgtgcaccaacgtgtttcgccaccgccgctgccataataccaatcgggcctgcaccagaaaccagcacatcttcgcccaccagatcaaacgacagcgcggtatgcacggcgttaccgaagggatcaaaaattgcggctaagtcatcggaaatattgtcggggattttgaaggcgttgaatgccgggatcaccagatattcggcaaagcagcccgggcgattaacaccaacgcctatcgtgttgcggcacaaatgggtacgaccaccacgacagttgcggcaatgaccacaggtgatatggccttcgccagaaacgcgatcgccgatcttgaagcctttcacttcctgaccaatacctaccacttcaccgacatattcatggcccacgaccatcggcaccgggatggttttttgcgaccactcatcccagttatagatgtgaacgtcagtcccgcagatggctgttttacggattttaatcagcagatcgttatgcccgagttccggtacaggaacgtcggtcatccagatgccctcttccgctttcagtttggataacgctttcatctcacatcctcaggcgataacgcccagttgtttaccaatacgcgtaaatgcttctactgcacgcgtaatttgctcaggggtatgcgccgcagacatctgggtacgaatacgcgcctgacctttcggaacgaccggatagaagaaaccggtaacgtaaatgccctctttttgcagctcacgggcaaatttctgcgccactaccgcatcaccaagcatgaccggaataatggcgtgatcggctcccgccagggtaaagcccgccgccgacatttgctcacggaactgacgcgcgttcgcccacagacggtcacgcagttcgctgcccgcttcgaccatctccagtactttgatggacgcggcaacaatggccggtgccagcgagttggagaacaggtacggacgagaacgctggcgcagccactcaaccacttctttgcgcgccgcggtataaccaccagaagccccgcccagcgctttaccaagcgtaccggtgataatatcgacccggcccatcacatcgcagtattcatgggaaccacgaccattttcaccgacaaaaccgaccgcgtgggagtcgtctaccatcaccagggcatcatatttatctgccagatcgcaaacgcccttcaggttggcaatcacgccgtccattgagaacacaccatcggtggcgatcagcacatgacgcgcaccggcttcacgcgcttctttcagacgtgcttccagctcctgcatatcgttgttggcatagcgatagcgtttagctttgcacagacgcacaccatcaataatagacgcgtggttcagtgcgtcggagataatggcgtcttccgcacccagaagcgtttcaaacaggccaccgttagcatcaaagcaggaagagtagagaatcgcatcttccatccccaggaaggccgccagtttttgttcaagctctttatggctgtcctgagtgccgcaaataaaacgcaccgaagccatgccgaaaccgtgagaatccattcccgcctttgccgccgcaatcagatcaggatgattcgccagcccgagatagttgttggcacaaaagttaatgacgtggcttccatcagccacagtgatatctgcttgctgcgcagacgtaataatgcgctcttctttaaacaacccttccgcccgtgcggtttccagatcgttggttaactgctgataaaattctccacgcattgcgattctccagacagggcaaattccagcacatattacccaaacttataggtcgcgacgagataacgcgttaacacttctgcaaaattcaggataaataacgtgtaacttgatgtctctcaacacctacagatagtagaaaaactgtacagttttggctgggcataatgatgattgattttactgcattgatataaaaagaaaaaatgatgccaaagcatcatttttcctatctcagttggtatcaaaacgctacccactaatggagggaaacctattttcttgaaaggaaaattctcagcgcctgcatttttgcccctaaagtgttactcctgaagcagcgaaacaaatcgaaccattttcctctccccagatagtttaggttgaagagatcggggcgtttgtaatagcacatgacaaaaatgccctggtcatcgtccacaatgttattatttagtgttattttttgactttccagaactaatttatagaattctttccatttatgctgtgaaccaacaattgcgcccccaataatatatacatgattgccaatcatgaaatcaaaaacctgttgttgagatgtgacagtaagccctttttttatagtgaaaagatgcatcttactttcatcaaatgggaaatcccaaattttcaatcctcgagttacatttggcttatggcaatagccaaaatctatccacgcaacaagaggcgttttcactaagcccatgttgatagctttatttacaaaataggccttaaggttacataccaaaacatactctggtgaccagtactctgggttttttaattgtcgaggctcaagtctatttgtaaacgactcatctttttgaattttttcgatacgacttctgatatatctaaatttcttttttatatcgataacgataaccgttgttggttttccgttgcgaatcgcttcaacccttggtttcaaatcgggagaagtgaaaataatcatctcattttcaagtgcggccagacgctcaaagtaactaaaataaacatcaactgaacgagctagtttttcacggaaccctttattagcagtccaatcccctctaccaatgtcaaaatatgcagtgataattgtggtggatgatttcattactaataagaccattaatataaaaaaagaattatatcataagaattatatcataaatattaatagaatgtatactgtatattatccattcaaatgcttccgttatttatcatacatcggaatattgatactaaagcactattcacatgcaaaaccaacatccgccatgaaggactagctaaaacccaaactagtttgttgcaattagcatccttgcacctctatgtaaagggctgaagggattcggatgtgatggtatgattacagacattcgtgtctgagattgtctctgactccataattcgaaggttacagttatgatcatcgttaccggcggcgcgggctttatcggcagcaacatcgttaaagccctgaatgataaaggcatcaccgatattctggtggtggacaacctgaaagacggcaccaagtttgtgaacctggtggatctgaatatcgcagactatatggataaggaagacttcctgatccagattatggctggcgaagagttcggcgatgtcgaagcgattttccacgaaggcgcgtgctcttccaccaccgagtgggacggcaagtatatgatggataacaactatcaatactccaaggagctgctgcactactgcctggagcgtgaaatcccgttcctgtacgcttcttccgcagccacctacggcggacgcacctccgactttattgaatcccgcgagtacgaaaaaccgttgaacgtctacggttactcaaaattcctgtttgatgaatatgttcgtcaaatcctgcctgaagcgaactcgcagattgttggcttccgttatttcaacgtttatggaccgcgtgaaggccataaaggcagcatggcgagcgtcgctttccatctcaacacccagcttaacaacggtgaatcaccgaagctgtttgaaggtagcgagaacttcaaacgcgacttcgtctatgtgggcgacgtggctgatgtgaatctgtggttcctggaaaatggcgtttccggcatcttcaatctcggtactggtcgtgcggaatccttccaggcggtagctgatgctacgctggcttatcacaagaaaggccagatcgaatacattccgttcccggataaactgaaaggccgctatcaggcgttcactcaggcagatctgacaaatctgcgcgcggcgggttacgacaaaccgttcaaaaccgttgctgaaggtgtaacggaatacatggcctggctgaatcgcgacgcataagagctctgcatgaaaatactggtgatcggcccgtcttgggttggcgacatgatgatgtcgcaaagtctctatcgcacgctccaggcgcgctatccccaggcgataatcgatgtgatggcaccggcatggtgccgtccattattatcgcggatgccggaagttaacgaagctattcctatgcctctcggtcacggagcgctggaaatcggcgaacgccgcaaactgggtcatagcctgcgtgaaaagcgctacgaccgcgcctacgtcttacccaactccttcaaatctgcattagtgcctttcttcgcgggtattcctcatcgcaccggctggcgcggcgagatgcgctacggtttactcaacgatgtacgcgtgctcgataaagaagcctggccgctaatggtggaacgctatatagcgctggcctatgacaaaggcattatgcgcacagcacaagatctgccgcagccattgttatggccgcagttgcaggtgagcgaaggtgaaaaatcatatacctgtaatcaattttcgctttcatcagaacgtccgatgattggtttttgcccgggtgcggagtttggtccggcaaaacgctggccacactaccactatgcggagctggcaaagcagctgattgatgaaggttatcaggtggttctgtttggctcggcgaaagatcatgaagcgggcaatgagattcttgccgctttgaataccgagcagcaggcatggtgtcggaacctggcgggggaaacacagcttgatcaagcggttatcctgattgcagcctgtaaagccattgtcactaacgattctggcctgatgcatgttgcggcggcgctcaatcgtccgctggttgccctgtatggtccgagtagcccggacttcacaccgccgctatcccataaagcgcgcgtgatccgtttgattaccggctatcacaaagtgcgtaaaggtgacgctgcggagggttatcaccagagcttaatcgacattactccccagcgcgtactggaagaactcaacgcgctattgttacaagaggaagcctgacggatgcgggttttgatcgttaaaacatcgtcgatgggcgatgttctccatacgttgcccgcactcactgatgcccagcaggcaatcccagggattaagtttgactgggtggtggaagaagggttcgcacagattccttcctggcacgctgccgttgagcgagttattcctgtggcaatacgtcgctggcgtaaagcctggttctcggcccccataaaagcggaacgcaaagcgtttcgtgaagcgctacaagcagagaactatgacgcagttatcgacgctcaggggctggtaaaaagcgcggcgctggtgacgcgtctggcgcatggcgtaaagcatggcatggactggcaaaccgctcgcgaacctttagccagcctgttttacaatcgtaagcatcatattgcaaaacagcagcacgccgtagaacgcacccgcgaactgtttgccaaaagtttgggctatagcaaaccgcaaacccagggcgattatgctatcgcacagcattttctgacgaacctgcctacagatgctggcgaatatgccgtatttcttcatgcgacgacccgtgatgataaacactggccggaagaacactggcgagaattgattggtttactggctgattcaggaatacggattaaacttccgtggggcgcgccgcatgaggaagaacgggcgaaacgactggcggaaggatttgcttatgttgaagtattgccgaagatgagtctggaaggcgttgcccgcgtgctggccggggctaaatttgtagtgtcggtggatacggggttaagccatttaacggcggcactggatagacccaatatcacggtttatggaccaaccgatccgggattaattggtgggtatgggaagaatcagatggtatgtagggctccaagagaaaatttaattaacctcaacagtcaagcagttttggaaaagttatcatcattataaaggtaaaacatgctaacatcctttaaacttcattcattgaaaccttacactctgaaatcatcaatgattttagagataataacttatatattatgttttttttcaatgataattgcattcgtcgataatactttcagcataaaaatatataatatcactgctatagtttgcttattgtcactaattttacgtggcagacaagaaaattataatataaaaaaccttattcttcccctttctatatttttaataggcttgcttgatttaatttggtattctgcgtttaaagtagataattcgccatttcgtgctacttaccatagttatttaaatactgccaaaatatttatatttggttcttttattgttttcttgacactaactagccagctaaaatcaaaaaaagagagtgtattatacactttgtattctctgtcatttctaattgctggatatgcaatgtatattaatagcattcatgaaaatgaccgcatttcttttggtgtaggaacggcaacaggagcagcatattcaacaatgctaatagggatagttagtggcgttgcgattctttatactaagaaaaatcatccttttttatttttattaaatagttgcgcggtactttatgttctggcgctaacacaaaccagagcaaccctactcctgttccctataatttgtgttgctgcattaatagcttattataataaatcacccaagaaattcacttcctctattgttctactaattgctatattagctagcattgttattatatttaataaaccaatacagaatcgctataatgaagcattaaatgacttaaacagttataccaatgctaatagtgttacttccctaggtgcaagactggcaatgtacgaaattggtttaaatatattcataaagtcacctttttcatttagatcagcagagtcacgcgctgaaagtatgaatttgttagttgcagaacacaataggctaagaggggcattggagttttctaacgtacatctacataatgagataattgaagcagggtcactgaaaggtctgatgggaattttttccacacttttcctctatttttcactattttatatagcatataaaaaacgagctttgggtttgttgatattaacgcttggcattgtggggattggactcagtgatgtgatcatatgggcacgcagcattccaattatcattatatccgctatagtcctcttactcgtcattaataatcgtaacaatacaattaattaagaataaacaagtttaagaagtgagttaaaactcacttcttatctatacaacttaatctctttactgaattagttaaagtttcagtatcgatatcttttaccgtatatgttggggatactatttgtatagatttatgatgattcggggaccaaattaaatgcgagggatattccggagtacgtgaattagggtaaaatgcaagcgttggtttatgataagccgcagcgatatgaacaagagctgtatcaacagaaatgacaaaatcactatacttggtcaacgcaacggtataaataaactcatcaaatggtagtgtttcgatttcaagtattggtattgtcaataaatcttgcggtaacccggtaaatataatccgataattttcaaagtgtgttttcacttcttgatatataacttttatttgctcaaacgtaagacggcatattttttttgcacctaatggattaataatgactattcttgtatctccaataaattcttttattttatcttcaacatctactggtaaatgcaagtcgtagttggtggaaaatttaccctcaccataaatatgcttcagtatttctattgctcgtgtactcatatgttcttttaaacattcatcgtggggatggtaaaatgaatagtaacgcttataccaatgatcaaaacccagaatgtaagaatcttttaaacttgataatattaagctatgcttaaatgagggcatagtttcaaaggggtctaatacaatatcgaactgtaaatcccgcagatgcttacatagagtaagcatttcaagaaaaccggttgattctttaatacagaactcaaatatatttttattattagagagaaattccccaccctttctatttgtgagaagagttattttaacccctttactataaagttcacgataaatcgaacttaatacaattagatcaccaagtttattattatcatgaataataaggcatgatttaacttgtgctggatctgtaatttgattatttattttattacgaaataaaaaagaaaggaaattaatcttgattttgtttatataaaatcttttctttttgtgaaaagttcctaagcgcatttttataccatattattttagtttcaggatgattaattagcataagaatcggttgaagttctatattgcattttttttcttgtcatatcttttgattcttctgcactgatgtcttgaagtttaataaatggaattacatcgtaagaaatagctgtatcatctgataaattataaatattaatatcttttacattatcatgcataaaacgaaaaaatggcaatattttgaataaatccctacttaattccgagggcatgggatttttattctcatcatagaaacgagaacagctacccgttaaatcaagaccagaacaaataatccgcgcatacttaagtgaatatgcgatttgaattgcagcaaaggcaatagtatggcatgagcaataaccaagactaatgtccttgcaaaatccaaccagacgaccttttttagacaacggtacagagatcagcagttctttgtgaatctgtctcaaaatattaaatttaatcttctttataaaaccacctttttcccgacggtaaaaggaccgtaatacgaggcagttctggaggatataaagtttatcttctttggaagcgtgttcataaacgtcaacgtttactatggtataacgacttctctggctaaatttataaaaatcatcacgacgctgatgtaaaaatcggacatctgtaagtacatatataaaaggaacgatattattacttaacagatattgcgcagaaccattgacagcaataatatcctttgttcgtaatactgacaaaggtgttttttgcgatgtagggcccgaaagaaaaataataacatcatcagatattttattttcaatcaggttttcaacatcttttttgtcaatgtatctaatattcttcatgataaacctgtgaaataaataactccgcttaaaactgtcctggtgaagacatgtaattgtgggattttttttagcgcgctggtttccctttcaaacgccgcataaaattgcgcatttttttacgatatactaaaagataatagcctagatctctaatctcatttttaataccgtaatgacgctctaagtcaatacgatctttcgctttacgctgcgctgaagcacgctttccggagagatcgataattcgaacctcaccattttttataatgaagttaccacgatgggggtcgccagaaaccatgccatgttgatgtaaggcattaattgattgctgaattttattttttagcgcatcatcaatatcgggcatatcacacaactctatgccatcaatatactcgatgatcatgatataagtatggacaaaacgtaaggttttccgttcagccaataaataaaagtcattgagtgtatttaacccttcatttcgtactttttgggtttgctcaaaaaggcgttcgtaataatcaccttttaacagagacttaaagaaacgttcgttacgcttaactttcggagaaaaaaccttaagaatcaatttaccgtaatcggtatcaataagcataacttttgtatcatcaatagaacgaaaaaccttgatgatatttatattataagacaagaagtcatttaatacattgaggtactttgaattgttttcatcggtaaaaacaaccaagtctttgatcttgctcttctgaatcataataaaccagttaaatgttatttacggtaatattttcggcaaagataacagactcctgctataattcctgagatataatgatgttgcactaaaagatgtttatatctttttttaaattcaataattgatttcgcatctcgtggagagtcatctttccagggggaattttctaaagctattttatagtattttaccgatggataaattgcccatttgtgccacggtttagttgcacctgtataatgaataagaagagtactttctgtaatcagctttttatagttttgatgtgttttgtcttttaattcacttttaattgtataaattgtattgtactcacgaggcaaaaataatgtcatccctttcagtaagacattcataacatcctgatcagggtatttataaacattatctttactcataagaatagacaacgctttttctgttagttttgcgtcagcccatttttttaagtctaaataaacgacaccggaattaaagtactgcccaagtaattcaggatcagacaacctggataccgccttttcttgcattggctcaacatctttaacaacagcagcaaccgctccatttaaacccagatgtaatagttggctaatatcgcctttacaaacaacatctgcatcaagataaagcaaacgatcaagcgttaaacccaataattgaaatgcaaataaacggaagtacattgctcttgaccagacctgtgtacaaggcaagcactggagcttatcagtgttaattctatataacgtgattcttaattggttttgctctgcaagctttgcaattttttgaaaaaaaccatcattataaacatcagcaataatataaaaatcaagattaatatgtcgattatttaggacaattgatgtgatggaaacacctacaccatcaagataattagcatcgacaccataggcaacatttaaacattcagaagtatttatattagctagccgaaaatcccaggctttaactttatctatctctatggcaggaaatgagtccacaatgctacccttatatcattactttatagtttcccagttttaatgctttatcttttcaataaaataaaaaagatagttgctaaatccttttagatatctatgctttttaagcatatgttttgcgctatatcttaattgattgctattgttcggtttcagcaacgccgtattcttccatggcgaagcattttttgcctccataaaggcttgtgatacaggataatcccaggcccaatcatgccagggcttggttggcccgatataatggataaaaatagtatcgttggttactgggtttataaagctttctttgagttgataatttaagctgaactgggtgttatatttaatatcagcgaaaataagtttatccgccagcaacatatttaacacatcctgatcaggatgtgttatttttttgattatttctggctcatttagcattgcaatagctcgtgcagaaacctgctgagccgcccattgggcagtattaatcaataaaaaaccggagttaaagtaacctttagcaattcccgcaacacctaacgaatgggcgcgtttttcccaccagtcagcttgcccttctgtaacaaccattgcgactttatcgtcaggaaatgagaaattaattagtggctcaatagtcccctgacaaatgatatctgcatccagataaaggactttaggcgccttattaataaagtaatctgcaataacaaaacgaaaatatattgcatgagtccaattcttagtgctaggcaatgagcgcagtcgatcaccattaatcagatatattttaattctggttttatactgcaacgccagggcatcaaaatacttacgatcatcatcaccaaaataatcagtaaaaatatggaaacacaatcgacttccttcattatattttaatattgaagcaatcgaaattccgcaaccaaatagaaagtttttgtcagttccataagcgatgtccagacaaagattttctgtttctactttatgatcataatcaataactgaattaagaaactcagtttcctggaaaaacacctgctgcattatttcctccgggaaatagcagaaataattaccttatgtaatctatcgtaatacttcgattggtaaaattcatcgatcgacgcaggaattttttcatgttcgatatgaatttcacctgctatatatttatttagaagagttacaaaaccagcaatatctcccggttgatacagatggccattgacatcaggttgaataatgtcagcaggcccggagacacaatcggcactgatacaaggaatcccccacgacaaggcttcaagtagggtcattgggaaaccttcaaaagatgacgtgagcaataacgcactcactttttcaatatcttgctggaccaattcccagggatattgttgccaaccataccagacaattcgatcatcaatatttaattctctaccataagcctggcatttttcgaaatcggagccatcacccaatacatggagtttccagttacctttcgcttgtgataagccatcaagcaggtctttaactcttttctggccttcaaatttcatacgcccaacataaataaacgttgccgtttcaccttcctcgggcgcgggaatgactgagtctttagtttcgacgggattaaaaataacatttatcgtcgattctgctacacctcgattaatcatttgctgtttaatgccagagctgattgctaaatgatagtcggcacaggtgatatattcagcatgttttttgtgatctaaagaaaaatgtggccatgaaaatactggcatatcaattcctgattttttacgtgcttttgcggcaaacaggcaggagatcacatcaatacaaataacgatatctggttggtactcctgaagccatttacttagagcatgaatatgtttcgcccgacgcaaaaaacctaaacgaatattggaaaatgaacatgagtatttaataccttccagccatcccttatccattttgtcattacgacaaaagaaaaacatttcactttggatatgttgttgcctgaaggtagtaataacatcacggatgacagtttccatgccgccaaatccagaaacagcttcgccgataaacgctattttcatagaaactctcattaattgagtaaaactcactgttttaacggttttatttgtctataaaatcagaaacaatcgttgacatcattttatctggactgaatttatataaactatcataatccattggtttaacagatgagttaataaaatactctaacttatcccaatcatcatgacctattataaaaaagcgagattcactatagatttctgaaccaaatacatttatattattagtaattaattttttattgaaaaatagtgcctcaagtatacgaagagtccagccagattggttttctttggttatatcaacaattatattagcatttaatgttcttctaatattctcttcataagatatttgtttttcaatcaaatactttgaagtcgtagatgatgtcttatctttgacaacattaaaatctagcttacatcctagtgttgttaatctctcggctaactcattaattatttgaagacgccctttatcacgaccaaggaaaaaacatattggctggctgttatttttgtcagataaactataatttctaatttcatccattcctataggaaaaaattgttctattgccttgatcttttcattccctataaatctatgctcaaaatcatatataatatcgaaataattcgcgttatcaagaataaaatcttcgccaacagtatttcttagaagcaaaactttatgacagttaatattttttaatatttgtttattgatacctttattaacaacactgtcattaatgataattatgtcatcttttttaatatcattgaggtaatgcttgatgaataatcgccccagccatgcattatccatccctatttttgatatttttttattaatccagttatatttttttggtgttgttatattttttatcttgtacttttttttcaggtactgaatcatttttaattcataatctgcaacccaatttataaaataaatagtcataataaagttagttccagtacatactaataaatatttttataatcctttgcgttgtgttcgctctttaatacgctcggccttaacgcttgccatgttcaataaattctgttcaagagacaatattttgcgtaaaggcatcccaaaataaaccttcataaatcgccagatatctctttgcgtcaggccaatattcattgatgagaaatataaaccaatcaggtctttatcgcgccagcggcgcggtacttttgcacgtatctgtgcccgatgcagatcgataactgaaatttttaattcatcttcccggccagtaaatggcaaatgaagcaaaaagtggcaaatgtaacagtcgcggtgatttatccctgcagtatgcattttacgcaccatagttgctacacgtgcgatcagcatacgcttaacacgtatatcaggcgggttgactgcccaatcggcacaataatcttcaaggctaattgtgggagtgagatcttcggtaataataaatgatgcgcgagttaatggatttaaccctttttcgccaaacccaatgcccttcattgtatcaacgccaacatcactcaggcgatgaatagcgtgccactctctgtctgcgcccaaaacgggcatccgcaatgagagtagattttttataatctcttttaatgtcgtccccttgtgccatttaagaaaatagcttttcccggacagttcaaagcgtaatgtacgacgagtctccagttcacgaaagacctcgccgttcagttttttgacctctgcaaaagcatctttaccacgccaaagtgtggcaagcggctcttttaattcaaccatctaaaccacctgtaatgatatccgcggctttttctggcaagctatacaaatcctgagtatcggcataatggcgagcattctccgcccaggccattcgcaatggcgactgagttaacgctttacgtaaaacttcatttaattgttcctgagagaaaggttcagcgatgaccgttccacaattggcatccgcaatataatgcgcgtacccacataccgctgttgttaaaacaggtaacccagcagtgatcgcttctagaagaacgatacccgcggcttcctgataagcgggatgcagtaataaatcagcggctgccattaattctgacacatcattgcgaccggagaagaaatgcacattgctccgcacgccgagtttttctgccagcgcttcaaattttcgcggcttatcctgaccaacaacaaataaaagcgtattgtgacgtaatgattccggtaacgatgccaaagcttcaattgagcgatctacacctttacggccaaaatctgatccaacctgcagtaataagttttgttgctcttttatgccatttttctggcgataaatttcacggctgtttgggatttgctcactgtattttctgtccggataaataccgggaggaagaatttgaaaacgttcaggttcagtttgataatgcttctggaaatcggcgatttgcttatcggtcagcatcataagtttcgtcgatttaccctgctcgaaagtcgctcgctcaaatgcggcataatggcgatatcgtgatgttaaacgatataaaaaacctttttcttgcgcaactttctcggcgtaacaaacatcagcggcaaaataaacatccaggccaggcatcttattaaacccaacaacgcgatctgcgggatgctctttgagatgattttgtacccaggcataatattctgcattgcgtccatggttggtatgggacttaactggcacctgaataagctcaaatgctttcgggcaatcgccttcccacgactgtgtatatacccgaacatggtggccccgtgcggcaactgttgatgcaatgcgcataaagtcacgttgaagcccaccaaatggaaaatatttatataaacaaaacgccacgatcataattgtgcattcctgtcagctgaaggggcatcttctggcaacagcttttccgtagcggcgatcacatcctccgctgggataacagaaagatattttttgttgcggtcaagttcatgccgggtcggcattttctgataattccccgcccagaattgaataatattctcggtccagggacgccagaatacgtgatccgttgcaccaaatagactaatgactggcgttttcactgccgctgcaatatgtcccggcgcagaatccacaccaataaaaagcactgcatgatcaattaatgcacccagttcaggaaaacgtgttttacctgcaaggccagtaatgggttttgtttcgcaacctcgtgcaatctcatctacacaagcgagatcatctgccgagggcccacaggttagcacaacctgatagcctcgctgttgcagcgcatcgataaccttagaaaatttatcgttatcccaacacttaaatatctgacgcgctgtcggttggatgacaacataatgatcttttacgcccagggcatctaattcccggcgcatcttcttccagcaatcttcggcgtaactcattgttgtgtcggtgtagaaatcggtaatacctaatggctcaaggaccgataaattacgctcaacaatatgtgtaccgtgtattggcgctaagtgtgtgaagctttttttccaaataccatgctgccgatgaccataaagttgcgatattttcatccgtgcaggtaaacaacgtaccagcagcgccaccatccactgatccgtaagattaatgaccaggtcataattattcgcacgcagagtttttatcaacgaaagcacatttttaattttatcgaaagttcccgcacctttattgcttatcccatagagcgcattaatttccgggttttcagacaaaatagggatggtgtcctgataaagcagcatatcgatttttgcatcaggataattctgcttgagcgtactgatgacaggagtagttaataacatatccccatgatatcgcatctttatgaccaggatttttcgaaatggcttttccactagcgactcttttgtgtgattgtctggttaagttaagcagaaaaaagcacgctaccgccccaggctcaacagctacctgaatactgataacgcacttactttgacgtgctagtgtatcatttctttcgcagcaatccgacccgaatgatttttatacacaaaatatactttaatcataaaaatcaaatagataaaaaatagcatttcgataatgtcagtacggcctatgtagatttgaaaatggggccgagtttcaatgaatcgcataaaaatacaaaaaaaatgaagatgtagcggcagatcagaccaaactgaagctatttaagtcaaaaacgggaaaagtaatggtaaagccacagctaaatacatagaatccccagcacatccataagtcagctatttactatgctcgaattgctttacaccgcccttctctaccttattcagccgctgatctggatacggctctgggtgcgcggacgtaaggctccggcctatcgaaaacgctggggtgaacgttacggtttttaccgccatccgctaaaaccaggcggcattatgctgcactccgtctccgtcggtgaaactctggcggcaatcccgttggtgcgcgcgctgcgtcatcgttatcctgatttaccgattaccgtaacaaccatgacgccaaccggttcggagcgcgtacaatcggctttcgggaaggatgttcagcacgtttatctgccgtatgatctgcccgatgcactcaaccgtttcctgaataaagtcgaccctaaactggtgttgattatggaaaccgaactatggcctaacctgattgcggcgctacataaacgtaaaattccgctggtgatcgctaacgcgcgactctctgcccgctcggccgcaggttatgccaaactgggtaaattcgtccgtcgcttgctgcgtcgtattacgctgattgctgcgcaaaatgaagaagatggtgcacgttttgtggcgctgggcgcaaaaaataatcaggtgaccgttaccggtagcctgaaattcgatatttctgtaacgccgcagttggctgctaaagccgtgacgctgcgccgccagtgggcaccacaccgcccggtatggattgccaccagcactcacgaaggcgaagagagtgtggtgatcgccgcacatcaggcattgttacagcaattcccgaatttattgctcatcctggtaccccgtcatccggaacgcttcccggatgcgattaaccttgtccgccaggctggactaagctatatcacacgctcttcaggggaagtcccctccaccagcacgcaggttgtggttggcgatacgatgggcgagttgatgttactgtatggcattgccgatctcgcctttgttggcggttcactggttgaacgtggtgggcataatccgctggaagctgccgcacacgctattccggtattgatggggccgcatacttttaactttaaagacatttgcgcgcggctggagcaggcaagcgggctgattaccgttaccgatgccactacgcttgcaaaagaggtttcctctttactcaccgacgccgattaccgtagtttctatggccgtcatgccgttgaagtactgtatcaaaaccagggcgcgctacagcgtctgcttcaactgctggaaccttacctgccaccgaaaacgcattgaggttgttatgcaaaaacgggcgatttatccgggtactttcgatcccattaccaatggtcatatcgatatcgtgacgcgcgccacgcagatgttcgatcacgttattctggcgattgccgccagccccagtaaaaaaccgatgtttaccctggaagagcgtgtggcactggcacagcaggcaaccgcgcatctggggaacgtggaagtggtcgggtttagtgatttaatggcgaacttcgcccgtaatcaacacgctacggtgctgattcgtggcctgcgtgcggtggcagattttgaatatgaaatgcagctggcgcatatgaatcgccacttaatgccggaactggaaagtgtgtttctgatgccgtcgaaagagtggtcgtttatctcttcatcgttggtgaaagaggtggcgcgccatcagggcgatgtcacccatttcctgccggagaatgtccatcaggcgctgatggcgaagttagcgtagcgtttatgccggatggtatgccatccggcgcgcatgaattacttctggcactgccgacaataaaacgttgcccgctgcgcatgtttagtcgccacaatcggcgtaccgcacacccgacacggctcaccttttcgcccgtaaacctgcaattcctgagcgaaatagcccggtttaccatcactttgcagaaaatctttcagcgttgtaccaccctgctcaatcgaacgcagcaacaccgctttaatcacccgagctaacaattcacactctgccagcgacagtgatgacgccagccgatccggatggatccccgccgcaaacagtgattcgctggcatagatattccctacccctaccaccagcttgttatccatcagccacggtttaatcgccgtttttttcttcgcgcacttctgatgcagatactcaccattgaaatcgtcgctaagcggctccggtccaagatgggtcagcacattatgcccttccagctctttggtccacagccaggcaccaaagcggcgcggatcggtgtagcgcagcactttgccgttgctcatcaccaaatccacatggtcatgcttttcagggggaagttcttctggaaggatgcgcaggctgccagacatccctaaatgaatgataatccagccctcaggcagctccagcagcagatatttagcccgccgctgcacgctaagcactggttggtcgcttaaacggtagatctcttctgaaaccggccagcgcaagcgtccgttgcgcaccactgcatgaagaatggttgcaccaacgagatgcggttctatgccgcggcggctggtttcaacttcgggtaattcaggcatagcatctccaggaatgaacagatgcagtcaatatgggggcaagcagataacaaaaaaccccgccggagcgaggttttttgttacatcaaagcgagaattatttgattttcgcttctttgtagatcacgtgctggcgaacaactggatcgaattttttcagttccagtttttccggcttagtacgtttgttcttcgtagtggtatagaagtgaccagtaccagcagaagaaaccagcttgattttctcacgaatacctttagccatgatttatttcctctaagtacttagtacttttcgccacgggcacgcagttcagccagaactgtatcgatgccttttttatcgattacacgcatacctttagcagatacgcgcagggtgacaaaacgcttctcgctctcaacccagaaacggtgagagtgcaggttcggcaggaaacggcgtttagtcgcgttcagtgcgtgggaacggttgttaccggtcaccggacgcttgccagtaacttggcagactcgggacatgtctattctccaaaaatcaaattagctcgagcttcgtatggggtattggcgcctcgtcaggctttacagcccggtcatcgcagttctatgtgaactctcgattgccaggcccaaatgccaaacccgagattctcaaaggtggcgtagtatacgctgactcagcgatgtgctcaagtcccgaacagacaaagatcccgaaggatcgcgcatagcgggttaaatccagccgcgttcggcaaaagaaacatactctccacgcccaatcacgatatggtcgagcacgcgtaaatccatgaactgacaactctttattatccgttcagtaatgagtttatccgctttactgggttcagcacaacccgaagggtgattatgtgcaaggatcagcgccgaggcgtttatttttatcgcttcgcggataatttcccgaggatggacttcaacatggtttagcgtgccggaaaaaagacgcctatgcgttataacccggtgttgggagtcgagaaagatcaccataaagatctcccgctcctcacccgtgagctggctttgtaaaaattccctcgtcatctccgggctgagtaaagggctttcttcacgcatccgcacgttgtagtaacgccgcgccagttcagcaatcccctttaactgggcaaatttcgccacgccaattccatgaacgccactaaattgttcatattcagaggttaacaagccataaagagagccgaaattctccagcatctcttttgccagggttaatacatctttaccgcgcgttccggtacgcagaaatagcgccagcagctcgacatccgttaaggcgctaataccaaacttcagcattttttcgcgcggcatcaacagctgtgaattgtttttcaccttcacctcctttgtggtgctcgcatcctgtcatagccgtttcgttaaatcgacggccagttttcaatcctggaaagcgcctcgcaaagtgaatctcaggtgaaggcacgacaacaaaagtattgtgataaaatcgccaacttctggtgtcaccctacaggaaaaatcatcatgagcctggccggtaaaaaaatcgttctcggcgttagcggcggtattgctgcctataaaacccctgaactggtgcgtcgtttgcgcgatcgcggggccgacgtccgcgtagccatgaccgaagcggcaaaagcctttatcaccccacttagcttgcaggcggtttctggttatcccgtttccgacagtctgctggacccggcagccgaagccgctatgggccatattgagctgggtaaatgggctgatttagtgattctcgcccctgccacggcagatttgattgcccgtgttgctgccggaatggcgaatgacctggtatcgacgatttgtctggctacacctgcgcctgtagccgtgctccccgccatgaaccagcagatgtaccgtgccgctgccacgcagcataatttagaggtgcttgcttcccgtggtttgctcatctgggggccagacagtggcagtcaggcttgtggtgatatcggtcctgggcgaatgctcgatccgttaaccattgtggatatggcggtagcgcatttttcgcccgtcaacgacctgaaacatctgaacattatgattaccgccggcccgacgcgtgaaccgctcgatccggtgcgttatatctctaatcacagctccggcaagatgggttttgctatcgccgccgccgctgcccgtcgtggcgcgaacgtcacgctggtatcaggtccggtttcactaccgacgccaccgtttgttaaacgtgttgatgtgatgaccgcgctggaaatggaagccgccgtgaatgcttctgtacagcagcaaaatatttttatcggctgcgccgccgtggcggattatcgcgcagctaccgtggccccagagaaaatcaaaaagcaggccacgcagggtgatgaattaacaataaaaatggttaaaaaccccgatatcgtcgcaggcgttgccgcactaaaagaccatcgaccctacgtcgttggatttgccgccgaaacaaataatgtggaagaatacgcccggcaaaaacgtatccgtaaaaaccttgatctgatctgcgcgaacgatgtttcccagccaactcaaggatttaacagcgacaacaacgcattacaccttttctggcaggacggagataaagtcttaccgcttgagcgcaaagagctccttggccaattattactcgacgagatcgtgacccgttatgatgaaaaaaatcgacgttaagattctggacccgcgcgttgggaaggaatttccgctcccgacttatgccacctctggctctgccggacttgacctgcgtgcctgtctcaacgacgccgtagaactggctccgggtgacactacgctggttccgaccgggctggcgattcatattgccgatccttcactggcggcaatgatgctgccgcgctccggattgggacataagcacggtatcgtgcttggtaacctggtaggattgatcgattctgactatcagggccagttgatgatttccgtgtggaaccgtggtcaggacagcttcaccattcaacctggcgaacgcatcgcccagatgatttttgttccggtagtacaggctgaatttaatctggtggaagatttcgacgccaccgaccgcggtgaaggcggctttggtcactctggtcgtcagtaacacatacgcatccgaataacgtcataacatagccgcaaacatttcgtttgcggtcatagcgtgggtgccgcctggcaagtgcttattttcaggggtattttgtaacatggcagaaaaacaaactgcgaaaaggaaccgtcgcgaggaaatacttcagtctctggcgctgatgctggaatccagcgatggaagccaacgtatcacgacggcaaaactggccgcctctgtcggcgtttccgaagcggcactgtatcgccacttccccagtaagacccgcatgttcgatagcctgattgagtttatcgaagatagcctgattactcgcatcaacctgattctgaaagatgagaaagacaccacagcgcgcctgcgtctgattgtgttgctgcttctcggttttggtgagcgtaatcctggcctgacccgcatcctcactggtcatgcgctaatgtttgaacaggatcgcctgcaagggcgcatcaaccagctgttcgagcgtattgaagcgcagctgcgccaggtattgcgtgaaaagagaatgcgtgagggtgaaggttacaccaccgatgaaaccctgctggcaagccagatcctggccttctgtgaaggtatgctgtcacgttttgtccgcagcgaatttaaataccgcccgacggatgattttgacgcccgctggccgctaattgcggcacagttgcagtaatatgacgccggatgacttttcatccggcgagtttctttaaacgccaaactcttcgcgataggccttaaccgccgccagatgttccgccatttccggcttctcttccaggtaagcaatcaggtctttcagggtgatgatagagatcactttgcagttgtaatcacgctcaacttcctgaatcgccgaaatctcgccgcgcccgcgttcctgacgatcgagcgaaatcaacacgccagcaagcgtcgcgccattggcctgaataatctccatcgactcgcgaatcgccgttccggcggtgatcacatcatctaccagcattacgcgtccttgtaacgcgctaccaaccagattgccgccttcaccgtggtcttttgcttctttgcggttaaagcagtacggcaggtccaggtcgtgatgctccgccagtgccacagcggttgtggtggcaatcgggatccctttgtaagcagggccaaacagcagatcgaactcaatgccggaatccaccaacgcttcagcgtaaaaacggcctaacagtgccagatcgcgcccggtattaaacagcccggcgttgaagaaataggggcttttgcgcccggatttcagcgtaaactcgccaaactttaacacctgcttgctaagcgcaaattcaataaactggcgctgatatggtttcatgccttcgctcctcatcttacttttctacagacaaaaaaaaggcgactcatcagtcgccttaaaaatcagtttgccagcgccgccttctgcgtcgctacaatggattcgattcccctcgggccagagccaacaagatgagtagctcttcatgggtgaacggctcgccttctgccgtcccctgcacttcaatgatgcgcccgtcttcggtcatcactacgttcatgtcggtctctgcggcagagtcttcaacgtattccagatcgcaaaccgcttcgccgttcacaattccgacagaaactgcggctaccatccctttcatcggattggttttcagcttgccgttttccaccagcttctgtagcgcatctaccagcgccacgcaggcacccgtaatcgacgcggtacgcgtgccaccatcagcctgaagcacgtcgcagtccagcgtaatggtgaactcacccagcgctttcaaatctactgccgcgcgaagagcacgggcgatcagacgctggatttccattgtgcgtccaccctgcttacctttcgccgcttcacgagcgttacgggtgtgggtagaacgtggcagcatgccgtactctgcggtgatccagccctggccctgacctttcaggaagcgcggcacgccttcttcaatagaggcggtacacaacactttggtatcgccaaattcgaccagcaccgagccttctgcatgttttgtatagttacgagtcagggtaacgggacgcacctgattattgctacggcctgctggacgcatattgaaatctccggcttgaaacaaatgtggctgcgcattatacggacttccggcggttattcctatcctgacaaggcatcgatggctataatccttccacctctccttttataaacaggaacgtctatgatccgcagtatgaccgcctacgcccggcgtgaaatcaagggtgaatgggggagcgcaacctgggaaatgcgctcggtaaaccagcgttatctggaaacttactttcgtctgccggagcagttccgtagccttgaacctgtcgttcgcgagcgtattcgttctcgcctgacgcgcggtaaagtggaatgtaccctgcgctatgagccagatgttagcgcgcaaggtgagctgatcctcaacgaaaaactggctaaacagctggtaactgccgcgaactgggtaaaaatgcagagtgacgaaggggaaatcaacccggttgatattctacgctggccgggcgtgatggcagcccaggagcaggatcttgacgccattgccgctgaaattctcgcggcgctggatggtacgctggacgactttattgtcgcgcgcgaaaccgaaggtcaggcactgaaagcattgatcgagcagcgtctggaaggcgtcaccgccgaagtggtcaaagtccgctcccatatgccggaaatcctgcaatggcagcgtgagcgtctggtcgcgaagctggaagatgctcaggtgcaactggaaaacaaccgtctggagcaggaactggttctgctggcacaacgaattgacgttgccgaagaactggatcgcctcgaagcgcatgtcaaagagacctacaacattctgaagaaaaaagaagcggttggtcgtcgtctggattttatgatgcaggagttcaaccgcgagtcgaacactcttgcgtcgaagtctatcaatgccgaagtgacaaactccgccatcgagctgaaagtgttgattgagcagatgcgcgagcagattcagaacatcgaataactcgtaacgccaattcttacttttccgccttcacaaatgccgccactcaaacagagcggcatttttcttccccgcaacattcaattctgttttgcgtgcctgctccagattttgcgatgtttttttgcccagcacactgagaacgtgagatactcacaactgtatataaatacagttacagatttactttctttgcaattgatatcacatggagtgggcaatgaacgaacatcatcaaccttttgaagagataaaactgattaatgcaaacggagcagaacaatggtcagcaagacaacttgggaaactactgggttattcagagtatcgtcactttatacctgtattaacgcgcgccaaagaagcctgtgagaacagtggtcacacaattgatgaccatttcgaggagatcctcgatatggtcaaaattggctcaaatgccaaaagagcattaaaagacatcgtactctcccgctatgcctgttacctggtagtacaaaacggcgaccctgcgaaaccggtcattgcggcagggcagacttattttgctatccagacccgacggcaggagcttgctgacgatgaagcatttaagcaacttcgtgaagacgaaaagcgtctgtttctgagaaatgagttgaaagaacataacaaacaattggttgaggcagcacagcaagctggggtagcgacagctactgatttcgccatatttcagaatcatggttaccaggggctgtatggtggattagatcagaaagctattcatcagcggaaggggctgaaaaagaatcagaagatcctggatcatatgggttcaacagaactggcggctaatctctttcgagctacccaaacagaagaaaaactcaagcgggatggcgtgaattcaaaacagcaagcaaacaccacacactttgacgtgggtcgcaaggtgaggcaaaccattcaggaacttggcggaaccatgcctgaggagttgccgaccccgcaggtcagcatcaagcagttggaaaacagtgtaaaaattacagagaagaaatagcagaaactaaaaactctttttgttgattgagacacccgatgcgtaagccaaggtccaggtgcagtgaacacaatggctaaatattgcacctttcttttccccctcagttttaacctattttttcttatgcattttctcagacaagaagtcagaagaatgcatctctgctacagaaaatagcgatttcacataactacaagttatcaatttcccctccccttaaaaaatctcaatcgtgacaatgcgcacaaatcgctaccctgccagacagatttttagggagagaaccatgctgttacacattttgtatttggttggcattactgccgaagccatgacgggggcgctggcggccggacgacggcgcatggatacatttggcgtaattattattgcgaccgccaccgcaattggcggagggtcagtgcgcgatattctgctgggccactatccgctcggctgggtcaaacacccggaatatgtgattatcgtcgctaccgccgcagtactcaccactatcgttgctcctgtaatgccttacctgcgcaaagtgtttctggtgctcgatgcgctcggactggtggtcttttctatcatcggggcacaggttgcactggatatggggcacggcccaattattgccgttgtcgcggcggtaaccaccggcgtgtttggcggcgttttgcgcgatatgttctgtaaacgtatcccactggtattccagaaagagttgtatgccggtgtctcatttgcctccgccgtgctgtacatcgcgctgcaacactatgtttctaaccatgatgtggtaattatctccaccctggtattcggcttttttgcccgcttactggcgctacgccttaagctgggattaccggtcttttactacagccacgaaggacactaaggttcaaaacctgtgatctgctgggcagccagccaactgcccagcttcttgatttgcgcattttccttccattcaataacctgtctggcgcgtcccgatccagtccccggcagctgctgccagaactgctccgtgctaaataaaagttgcgaccaggaccgttcatcactggcattaagcgccgcccgggttagcggtattcccattgccatcacccagcgagtaaaaggctgcttacgagccagattaaactgatgccatagctgcgcacttttacttttcgcgatccccggcgtgttctgtaattgctctggcgttaataaaagccaggaaaagatatgttcaaagcgatgagtctgatgcagcgcgcgccaaccggcctcaccaatgccatccagcccaagaacctgttttgcccccagccagactaagcgtgaaatgaactgttcctgacaaacatcagaagcaaagtagcaggtcaacgagttaaagcggttttctggcggtgtcggttttgtacgttctgcaccgcgccacaccacatcatcaatgcgaggaataccctgaccggcaaggctgacgagaatctgatcaccaggcgcaatatcccactcctgccagcgcctgacggaaccaatattcacccgctggacttttttatcatccagcatgacaggtgcgagtgacgcaaccaccgatattttaccgctcttacccaccgcaaactgaattgccttcacttcggcaacctgagctacaggttgatatttccaggccaccagccactctgcctggcccggtagccaatggcgggattctggctctttcgccgctcgtacaactacgccatcggtgacgaagggtaattccgctttccaccactcattgcgtacgcgcgcaacttcatcagcatttttcaccgcacgggtatacgtctgcgttagagtaaaacctgcggtagccagctcttttaaacgatcagacattaactgcggtccatccggccatgcccagacaaaaacgcccagagaattcagcgtgtcgctatcgtcctggcgcatcatcaagccagcaacttttgcgcgggcatttattccccccatttgttgttggatatgcccctcgcgctggagaaatatttccccctgaagcgtactgttggctaaaggcccgctaacggtttgcggcacagcggaaattaagctaactttctgcgtccagtcctcgcctttcaggccattaccgcgactgattgctttgttcagtttcccgtcccgataaaccagggttaccgcaacgccatcaacttttggctgcacccaaagatcgctacgttctcgcatccacagacttaatgcgtttttatccaccattttgcgtacacccgtatgggcaaccggatgcataaccgcaccatttaaaggcggcatcatcacgtcgcggggctcgctcccaaagcagcgttgccactgcgtaagacgggcgcttaactgatcgtaaacaccgtcttccacctcactttttccttccttccagtagtcatcgtcccactgttttatttgctgttgcaggcgggaaatttcttcctgtgctctggctggcgaccaggccggacagaccgcccacacagatgattgccagcacaagatacctattaatatcgccatccatactttcatcatcacctccgctgtagatagtcaggcagatatacaacgtgatgaaagcaaagccgagtggcaaaaacggagtctgcgaggacgcttcctgaaaatcgtctttattgcagtgaatgacaggcaaatgcggaagcagctacgcaaaacgcaacaactttgcgcaaaaagtgtgagcaagggctacgtcacatggccgcgccgtgtataataagctcgtatgtaggctttatttcgctaatcacatacgaaagatactcatggctcaaggcacgctttatattgtttctgcccccagtggcgcgggtaaatccagcctgattcaggctttattaaaaacccaaccgttgtatgacacccaggtttctgtttcacacaccacacgccaaccgcgtcctggtgaagtccacggtgaacattatttctttgttaatcatgatgaatttaaagaaatgattagcagagatgcgttcctcgaacacgcagaagtttttggtaattactatggcacttcgcgtgaggccattgagcaagtactggcgaccggtgtcgatgtttttctcgatatcgactggcagggcgcgcagcaaattcgccagaagatgccgcacgcgcggagtatctttattttaccgccgtccaaaattgaactggaccgccgtctacgcggtcgcggtcaggacagcgaagaggtcattgcaaagcgtatggcgcaagctgttgcagaaatgagccattacgccgaatatgattatctgattgtgaatgatgacttcgataccgcgttgaccgatttgaagaccattattcgcgccgaacgtctgcgcatgagccgccaaaagcagcgtcatgacgctttaatcagcaaattgttggcagactgaacctgatttcagtatcatgcccagtcatttcttcacctgtggagctttttaagtatggcacgcgtaactgttcaggacgctgtagagaaaattggtaaccgttttgacctggtactggtcgccgcgcgtcgcgctcgtcagatgcaggtaggcggaaaggatccgctggtaccggaagaaaacgataaaaccactgtaatcgcgctgcgcgaaatcgaagaaggtctgatcaacaaccagatcctcgacgttcgcgaacgccaggaacagcaagagcaggaagccgctgaattacaagccgttaccgctattgctgaaggtcgtcgttaatcacaaagcgggtcgcccttgtatctgtttgaaagcctgaatcaactgattcaaacctacctgccggaagaccaaatcaagcgtctgcggcaggcgtatctcgttgcacgtgatgctcacgaggggcaaacacgttcaagcggtgaaccctatatcacgcacccggtagcggttgcctgcattctggccgagatgaaactcgactatgaaacgctgatggcggcgctgctgcatgacgtgattgaagatactcccgccacctaccaggatatggaacagctttttggtaaaagcgtcgccgagctggtagagggggtgtcgaaacttgataaactcaagttccgcgataagaaagaggcgcaggccgaaaactttcgcaagatgattatggcgatggtgcaggatatccgcgtcatcctcatcaaacttgccgaccgtacccacaacatgcgcacgctgggctcacttcgcccggacaaacgtcgccgcatcgcccgtgaaactctcgaaatttatagcccgctggcgcaccgtttaggtatccaccacattaaaaccgaactcgaagagctgggttttgaggcgctgtatcccaaccgttatcgcgtaatcaaagaagtggtgaaagccgcgcgcggcaaccgtaaagagatgatccagaagattctttctgaaatcgaagggcgtttgcaggaagcgggaataccgtgccgcgtcagtggtcgcgagaagcatctttattcgatttactgcaaaatggtgctcaaagagcagcgttttcactcgatcatggacatctacgctttccgcgtgatcgtcaatgattctgacacctgttatcgcgtgctgggccagatgcacagcctgtacaagccgcgtccgggccgcgtgaaagactatatcgccattccaaaagcgaacggctatcagtctttgcacacctcgatgatcggcccgcacggtgtgccggttgaggtccagatccgtaccgaagatatggaccagatggcggagatgggtgttgccgcgcactgggcttataaagagcacggcgaaaccagtactaccgcacaaatccgcgcccagcgctggatgcaaagcctgctggagctgcaacagagcgccggtagttcgtttgaatttatcgagagcgttaaatccgatctcttcccggatgagatttacgttttcacaccggaagggcgcattgtcgagctgcctgccggtgcaacgcccgtcgacttcgcttatgcagtgcataccgatatcggtcatgcctgcgtgggcgcacgcgttgaccgccagccttacccgctgtcgcagccgcttaccagcggtcaaaccgttgaaatcattaccgctccgggcgctcgcccgaatgccgcttggctgaactttgtcgttagctcgaaagcgcgcgccaaaattcgtcagttgctgaaaaacctcaagcgtgatgattctgtaagcctgggccgtcgtctgctcaaccatgctttgggtggtagccgtaagctgaatgaaatcccgcaggaaaatattcagcgcgagctggatcgcatgaagctggcaacgcttgacgatctgctggcagaaatcggacttggtaacgcaatgagcgtggtggtcgcgaaaaatctgcaacatggggacgcctccattccaccggcaacccaaagccacggacatctgcccattaaaggtgccgatggcgtgctgatcacctttgcgaaatgctgccgccctattcctggcgacccgattatcgcccacgtcagccccggtaaaggtctggtgatccaccatgaatcctgccgtaatatccgtggctaccagaaagagccagagaagtttatggctgtggaatgggataaagagacggcgcaggagttcatcaccgaaatcaaggtggagatgttcaatcatcagggtgcgctggcaaacctgacggcggcaattaacaccacgacttcgaatattcaaagtttgaatacggaagagaaagatggtcgcgtctacagcgcctttattcgtctgaccgctcgtgaccgtgtgcatctggcgaatatcatgcgcaaaatccgcgtgatgccagacgtgattaaagtcacccgaaaccgaaattaatgttttatgaacccaacacgttatgcacgcatctgcgaaatgctcgccaggcggcagcctgatctgaccgtctgcatggagcaggtccacaaacctcataacgtttctgcgattattcgtaccgcagatgccgttggcgtacatgaagttcacgccgtctggcctggtagccgcatgcgcaccatggcttcggcagcggcgggtagtaacagctgggtacaggtgaaaacacaccgcaccattggcgatgccgtcgctcatctcaaaggccagggcatgcagattctggcaacccatctttctgataacgctgtcgatttccgcgaaattgattacactcgcccgacctgcattttgatgggacaggagaaaacgggcatcacgcaggaagcattggccctggcggatcaggacatcatcattccgatgatcggcatggtgcagtcgctgaatgtttccgttgcctcagccctcattctttacgaagcccagcgtcagcggcaaaatgcaggcatgtacctgcgtgaaaacagcatgttgccggaagcagagcaacaacgcctgttgtttgaaggcggctatccggtgctggcgaaagtcgcaaaacgcaaaggcctgccttatccccacgtcaatcagcaaggcgagatcgaagctgatgccgactggtgggctactatgcaggctgcagggtaagtgccatgaaaggtcgcctgttagatgctgtcccactcagttccctaacgggcgttggcgcagcacttagtaacaaactggcgaaaatcaacctgcataccgtgcaggatctactcttacaccttcccctgcgctacgaagatcgcacccatctctaccccatcggagaactactgccgggcgtttatgccacggtggaaggcgaagtgctgaactgcaatatctccttcggcggtcggcggatgatgacctgccagatcagcgacggttccggcatcctcaccatgcgctttttcaatttcagcgcggcaatgaaaaatagcctggcggcgggccgccgtgtactggcttatggcgaagcaaagcgcggtaaatatggtgcggagatgatccacccggaataccgcgtgcagggcgatctcagcacgccagaattacaggaaacgctcacgccggtttatccaacaacggaaggcgtaaagcaggccacgctgcgtaaattaaccgaccaggcgctggatctgctcgacacctgcgccattgaagaactcctgccgccggaactgtcacaaggaatgatgacgctaccggaagcgttgcgcactttgcaccgcccgccaccgacgctacagcttagcgatctggaaaccgggcagcatccggcgcaacgtcgtctgattctggaagaactgctggcgcacaacctcagcatgttagccttacgtgccggagcacagcgttttcatgcccagccgctgagcgccaatgacacgctgaaaaataaactcctcgccgccttaccgttcaagccaacgggcgcacaggcacgcgtagtggcggagatcgagcgcgatatggcgctggatgtgccgatgatgcgtctggtgcagggcgatgtaggttccggtaaaacgctggtcgccgccctcgccgcgttgcgtgcgattgcccacggcaaacaggtagcattgatggcaccaaccgaattactcgccgagcagcacgccaataacttccgcaactggtttgcaccgctcggtatcgaagtgggctggctcgccggtaagcagaaaggtaaagcacggctggcacagcaggaagccatcgccagcggtcaggtgcagatgattgtcggtacacacgccatcttccaggaacaggtgcagtttaacggcctggcgctggtgattatcgacgaacagcatcgttttggcgtgcatcagcgtctggcattgtgggagaaaggccagcagcagggcttccatccgcatcagttgatcatgaccgccacgccgatcccccgcacgctggcaatgactgcgtatgccgatctcgatacctcggtgatagatgatgccgccaggccgcacgccagtgactacggtcgctattcctgatacccgccgtaccgacatcattgaccgcgtgcaccacgcctgcataactgaaggtcgtcaggcatactgggtttgtacgttgattgaagagtcggaattgctggaagcgcaggcggcggaagctacctgggaagagttgaaactggcgctaccagagttgaacgttggcctggtacacgggcggatgaaacctgccgagaaacaggcggtgatggcgtcgtttaaacaaggtgagctacacctgctggttgccacaaccgttattgaagtcggcgttgatgtgcctaacgccagtctgatgattatcgaaaacccggagcgtctgggtctggcgcagttacaccagctgcgcgggcgcgtaggtcgtggcgcggtggcttctcactgcgtgctgctctacaaaacgccgctttctaaaacggcgcaaattcgcctgcaagtgctgcgcgacagtaacgacggttttgtgattgcgcaaaaagatctggagattcgcggccctggcgaattgttaggcacgcgtcagacgggtaatgctgaatttaaagtggcggatttactgcgcgatcaggcgatgatcccggaagttcagcgcctggcacgccatattcacgaacgttacccacaacaggcaaaagccctgatagaacgctggatgccggagacggaacgttactcgaatgcgtaaaaggcggcagtgagaagaccgccatttcaggttaccctaccttcctgccggatgcgattcatcaccctacaaattcaataaattatgaatcaatacgcaggcttgataagcgaagcgtatcaggcatttgtctttgttgcggcggcacttctaccgccgcttcatcggttaaccggcaaaaatcggcaacatcaaatacaacttaattaccagcgcattgacgatatcgataaagaacgcaccgaccatcggcaccaccaaaaacgccatgtgcgacgggccaaagcgttcagtgatcgcctgcatgttggcgattgccgttggcgttgcaccgaggccaaaaccacagtgacccgcagccagcactgccgcatcgtagtttttgcccatcatgcgccaggtaacgaagatggcatacaacgccatgaagatggtctgtaccaccagaatcgccagcatcggcagcgccagcgaagccagctcccacagtttcagccccatcaacgccatcgccaggaacaacgacaagcttacgttacccagcacggataccgcacgctcaaagacgcggtaaaagcccattattgacagaccgttgctcagaatcacgccaacaaacagtacacagacgaaggtcggcagttcaaaagcagtgccagccaaaagttgcgcaacaattttccccaccgtcaggcagatagcaatcagcgcgatagtttcaatcagcaccaacgaggtgatcatgcgtcccacatccggcttttcaaacgccgtcgggacttcctggtcatccggaataccgttcggcgtggtggagtgtttcaccagatagcgcgccaccggaccgccaatcaagccgcccagcaccagaccgaacgttgcacaggccatcgccacttccgtcgcattggtgaagccataacgttcaatgaacaatttactccacgcagcgcccgtaccgtgaccgccggaaagagtaatagaaccggccaacagccccatcagcggatcaagccctaacaagctagccataccaatgccaatggcattttgcatcaccaacagaccaacaaccacaatcaagaagatgccaaccacacgcccaccggcacgcaaactggcaatgttggcgttcaggccaatggtggcgaagaaagccagcattaacggatcgcgcagggacatatcaaagttgacttcccagcccatgctttttttcagtactagtagcgccagcgccaccaacaaaccacccgcaacaggttccggtatggtgtatttcttcaaaaaggagacggaatggaccaacttacgcccgagcagcaacgtcagcgttgcggcaacaagcgttgctaaagtatcgagatgaaacatagttactcctttgtatccgcatcactctttcatactcgtcatacttcatcgcgcagtggcaacttcatgaactatgacgggtatcgagttatgctttcctgggtcaaattctcagctgttaatgaacaaatggcatggattttaagcagaaaaataccaaaagttatataaaaaagtgcatttatctcatttaaatatttagatgaggatgtggcaaacgtttgcttttctctttcggtcagctaaaatgcccgctttgctaccacgggattgttttcgatgtctgtttccaccctcgagtcagaaaatgcgcaaccggttgcgcagactcaaaacagcgaactgatttaccgtcttgaagatcgtccgccgcttcctcaaaccctgtttgccgcctgtcagcatctgctggcgatgttcgttgcggtgatcacgccagcgctattaatctgccaggcgctgggtttaccggcacaagacacgcaacacattattagtatgtcgctgtttgcctccggtgtggcatcgattattcaaattaaggcctggggtccggttggctccgggctgttgtctattcagggcaccagcttcaactttgttgccccgctgattatgggcggtaccgcgctgaaaaccggtggtgctgatgttcctaccatgatggcggctttgttcggcacgttgatgctggcaagttgcaccgagatggtgatctcccgcgttctgcatctggcgcgccgcattattacgccgctggtttctggcgttgtggtgatgattatcggcctgtcgctaattcaggttgggttaacgtccattggcggcggttacgcagccatgagcgataacaccttcggcgcaccgaaaaatctgctgctggcaggcgtggtcttagccttaattatcctgcttaaccgtcaacgtaacccttacttacgcgtggcctcactggtaattgcgatggcggccggatatgcgctggcgtggtttatgggcatgttgccagaaagcaacgaacctatgacgcaagaactgattatggtgccaacgccgctctattacggtcttggcattgaatggagtctgctgctgccgctgatgctggtctttatgatcacttcgctggaaaccattggcgatatcacggcgacctctgacgtttccgaacagccagtgtccggtccgctgtacatgaaacgcctgaaaggcggcgtgctggcaaacggcctgaactcgtttgtttcggcggtgtttaacaccttcccgaactcctgcttcgggcaaaacaacggagtgatccagttgactggtgttgccagccgctatgtcggttttgtcgtcgcgctgatgttgatcgtgctgggtctgttcccggcagtgagcggttttgtacaacacattccagaaccggttctgggcggcgcaacgcttgtaatgtttggcaccatcgccgcctccggtgtgcgtatcgtttctcgtgagccgctgaaccgtcgggcgattctgattatcgcgctgtcgctggcggttggtctgggcgtgtctcagcagccgctgattttgcagtttgcccctgaatggctgaaaaacctgctctcctccgggatcgccgcgggcggtattactgccatcgtgctgaatctgattttcccaccagaaaaacagtaattcactggcggcggtaagataattaccgccgcagtctcacctctttaaccattcccgccttgaggattgcgcgtaaatcgtgcataactcccttatgtgcatttcacgggatggaagaccatgaaatttattgggaagctgcttctctacattctcatcgctctgttagtggcgatcgctggcctctattttcttctgcaaacccgctggggagcagaacatatcagcgcatgggtttccgagaatagcgactatcatctggccttcggggcgatggatcaccgtttttccgcgccatctcatatcgtgctggagaacgtcacgtttggtcgtgatggccagcccgcgaccctggtggccaaaagtgtcgacattgcgctaagcagtcggcaactgaccgaaccacgccatgtcgataccatcctgctggaaaacgggacgctgaatctcaccgaccagaccgcgccgctaccgttcaaagccgatcgtctgcaactgcgtgatatggcgtttaatagcccgaatagcgaatggaaactgagcgcgcagcgggtaaatggcggcgtagttccgtggtcaccaaaagccggtaaagtgctgggtacgaaggcgcagattcagtttagtgccggatcgctttcgctcaatgatgttcctgccaccaatgtactgattgaaggcagtattgataacgatcgcgttacgctgactaacctgggtgccgacatcgcccgcgggacattaaccggaaacgcgcagcgtaacgccgacggcagctggcaagtggaaaacctgcgcatggcggatatacgtctacaaagcgaaaaatcgctaaccgacttctttgcgccattacgctctgtcccgtcgttgcagattggtcgcctggaagtgatcgatgctcgtttgcaaggtccggactgggcggtgaccgacctcgatctcagcttgcgcaacatgaccttcagtaaagatgactggcagacacaggaaggcaaactgtcgatgaacgctagcgagttcatttatggttcgctgcatttatttgacccgattataaacacggaattttccccgcagggcgtagcgctgcgccagttcaccagccgctgggaagggggtatggtcagaacgtcagggaactggctgcgtgacgggaaaacgttgatccttgatgatgcggcaattgccgggctggaatataccttgccgaaaaactggcaacagttgtggatggaaacgacacccggttggttaaacagcctgcaactgaagagatttagcgccagccgcaatctgatcattgatatcgaccctgacttcccgtggcagctcaccgcgctcgatggttacggtgccaacctgacgctggttaccgatcataaatggggcgtctggagtggctcggcgaatctgaatgccgccgccgcgacattcaatcgtgttgatgttcgtcgcccgtcgctggcgctgaccgccaacagcagcacggtgaatatcagcgaactgagtgcatttactgaaaaaggcattctggaagccaccgccagtgtttcacaaacgccacaacgtcagacacatatcagcctgaatggacgcggtgtgccggtgaatattttgcaacagtggggatggcctgaattaccgttgactggcgacggcaatattcagcttaccgccagtggcgatattcaggccaatgtcccgttgaaacctacggttagcgggcaattgcatgccgtgaacgccgcaaagcagcaagtgactcaaaccatgaatgctggcatcgtttccagcggtgaagttacatcgacggagccggtgcggtaaacatcaatctcgccgggtacgactcagacgtacccggcattccatcaatagattacaacgtaattgtcagcgcattcccttgaggcttcaccaccagcccctgctcactttcagcctgcgaaccgtcttgcagaccatttactttcacaacattgcgcaggcacagtgtccagttcttcgcctcgcccgcaccagtcacagtaatcgtgttgccagtacgtgctgcttttaaagtaaagatcaccgatccgtcagcagcgggcacttcacagacggcttcatgcccgtcttgcagattgaagaggtggaatgccgtgccttcgtgccacacgtaatcgggacgttgatcgttgttgcccagcgccagtagagtgttatcacgcacataaacgggcagactcaggaagccgtgctgctgtttatgccagcgactaccgtcgagttcatcgttgtgccacaggtgtgtccagcgaccttccggcaggtagaactgcacatcgcccgcttcagtgaacaccggcgcaaccatcacgttgtcgcctaacatgtattgacggtcaaggtaatcacaagccggatcgtccgggaactccatcatcatggcccgcatcatcggcgtaccccgcgcgttcgcacgcgagcttcacgatacagatacggcatcatgcggcatttcagttgcgtgaagaagcgcaccacatcacaggactcatcatcgtaggcccacggcacacgataagatttgctaccgtgtaaacggctatggctggagagcaaaccaaacgcgcaccagcgtttgtaaacgtgcgccggagcggtattttcaaagccgccgatatcgtggctccagaagccaaaacctgaaaggccaatagacaaaccaccgcgcaggctttccgccattgattcgtagttagcgtaacaatcgccaccccagtgtaccgggaatttctgcgcaccgacggaggccgagcgggcaaacaagacagcttcttcctcaccaacggtgtccttgagcacgttccacaccagttcgttgtagatgtacgcataatggttatgcattttctgcggatcggaaccgtcaaaccactgaacatcagttgggatacgttcgccaaagtcggtcttaaagcaatcaacgcccatcgcgaccagacctttcagtttgtcggcgtaccatttgcaggcatccggattggtaaagtcataaatcgccagacctggctgccatttatcccactgccatagcgaaccgtccgggcgtttgagtaaatagcctttctcttgtaactctttaaagacgggggatttttgaccgatataggggttaatccagacgcagattttcagtcctttcgctttcaggcggcggatcatcccttccgggtcagggaaagtcagcgggtcccactcaaaatcgcaccactggaaggctttcatccagaaacagtcaaagtggaaaacatgcagcggcagattgcgttccgccataccatcgataaagctgtttaccgtcgcttcgtcgtagttggtggtaaatgaagtggttagccacaggccgaaggaccacgcgggcggcagcgccggacgaccagtaaagcgggtataacgatcaagtaccgctttcggcgtcgggccgtcgataacaaagtattcgagatattcactctcaacgctgaactgcactttggagactttctccgatcccacttcaaaagagacacactggggatgattgaccagtaccccataaccacggttagtcatgtagaacgggatatttttatacgcctgttcagtacttgtgccgccgtcccggttccaggtctctaccgtctggccattgcgcaccagggcagtaaagcgctctcccagaccgtaaactgtttcgccaacgccaagatcaagccgctcaaacatataattgcgttgattattcgtgtcctgcacgtagccattatttttcacctgactaccggtaatacgttcgccgttgcgcagaaaatccagtgaccagaactcacctttgctgacacgcgcgcttaagttgccacttttaaactcagcataacgttctgtgttttcgattgtgaccttcacgtcctgcaaaatattgagcggataatgaggaccgttattcagcgccccctgaaaatgctcaatccgcacaccgacaataccttcctgtggggagaaaaagcgcaacgtaaataaaggcgtatcaagctgccaggtacgttcacgcacatcacggggggcagcatagaccaccatttcattatcctgctgttcaacctcgaacacctgaagcgggtgaatcaaattgaggccaggttgaatcaaccagtttccatcgctaattttcattgccgttccttagttctgcacttcttgagaggtgaattgttgctggcaacggcgtttaccctgagccagctgttccataacggttttcagattgtgcgtcgtgagtgagtagtagcgtttagcgataatcgcgctcagcaaataacagatcgccggaacaatcgtgaatagcgcaataatgatgctaatcgtggcgctgttctgcgctttttctgccgcatcatatccgccataagccagcatccagccgataagagcgccgccgaagcaaccccagtttgagcacaaacagcgtgccagcaaaactgatcccggtcaggcgtttaccattgcaccactcgccgtagtcgacggtatcggacatcattacccactggataggtgtcaccagttgatgcaacacaccaatcacgaagatgaagacaaacatagtgatgctggcctgcatgggaacaaagaacatcgcgaggctaatcactgccagcagggcgttcgtccaccagaagatagtgactttacatttccagtcggtcagaggttttgccagtgcggaaccaatcaggttacccacgcaataagtggtgagaaaagcgacaaacacttccggcgtgcccaaaatccatgtgacgtaatacatcatcgccccaccgcgtacgcacaccgccaggatattgaaaatggttagtaaaccgacaatccgccactggtcgttttgccagatatcacgtaaatcttcccgcatagacgttgttgtaggtggtgcttcaacgcgttctttagtggtgaagaaacaaaatgccagcatcatgaatgccaccacggaaaggaccgcgataccgccctggaaaccgagtggtttattatcaccgccaattaaattaaccagtggcatcatcagaacagtagaaagcatgcctcccgcggtcgccagcacaaaacgccaggattgcagcgagatacgctgagtcgggtcattggtgattacaccacccaatgcgcagtaagggatattgacgacggtataaagtaaggtaagtagggtgtaagtaattgctgcatagatcattttgccgttcatactgagatctggcgtgctataggccagtacacagacgatcccgaatggcagtgcgccaaacagtacccacggacgaaatttaccccagcgagagcgcgttcgatcggccaacaaccccatgcaaggatcggaaatcgcatccagtgcacgagcgaccaaaaacatggttccgacaaaaccggcaggaatgccaaaaatatcggtataaaagaacatcatatataacattacgttatcgaaaataatgtggctggcggcgtctcccatgccataaccaattttctctttaacggacaacacttcactcttcatctgcttttccttgatgctataggggtgctgagaccgataacgcattttgtaaaccatccctgtgagagcgaatattccgatatctggttattaatttatgattcttgttttatgtgatcgtggtagcgttaattccgctcatatatcattgtaaaatatgggttttatatgaactataatgctttcgtgataatacgctgcgtgtattaggcggaaaaaactgatctgggggatgtagaaactcaaggaagtagctataatgcgccccgcctccatgtagcaatcgaggcgcggaagatcgtcgtctccggtgaggcggctggacttcaaatccagttggggccgccagcggtcccgggcaggttcgactcctgtgatcttccgccaaaatgcctctcctgacgttctccaaccccttgtaatactgtcaatccagatattttctactgctcaatattcaatcggcttcaggaatacctggtctaaggttttgtgatggacgatgagcggctgaagaatccgcctgtcggttcttctgtcctcgaacgcatccgcgatattcacgccagtatgcgccgtgtttatttgcaggtgatttgcccccctgctgactctcagccaactgtatcgccattaaggtgaagatgttgttttactcgccccagaacacccttttttatacgactattctatttctttaaccgctggcgaaaaaaactgactataaacttcaccaataatcagactgccatcaagattaatttgttcatttaatatatcaaatcaacttgttttatttttactatcaaaaatagctcattgccttactataattaatatataaattcggtaattaattcttaacatgcttttactaataatctcaattgctggccctataatattgcgctagcattgctttctggttgtatcagcgatactcaaaaattcttaatacaatactcattcgactggtacttatttgtaactcagttatattttttcgcccggtgattcagaagaatgcaaaaaacggctaccactccatcaaaaatacttgatctcactgccgcggcatttttacttgtcgcctttctgacgggtattgcgggcgctcttcagactcctaccctaagtatattcctcgcagatgaactgaaagcccgtcctataatggtaggttttttcttcaccggtagcgctattatgggaattctggtcagtcaatttctggcaaggcactccgataaacaaggcgaccgtaaattactgattctgctatgttgcttatttggagtgctggcctgcacgctttttgcgtggaatcgcaactacttcattctcctctcaacgggcgtacttctgagtagttttgcttccaccgcaaacccgcaaatgttcgccctcgcccgtgaacacgccgacagaacaggccgtgagacggtcatgttcagtacatttttacgtgctcagatctcgcttgcctgggttatcgggccaccgctcgcttatgaactggcaatgggatttagttttaaagtgatgtatctcaccgctgccatcgcatttgttgtttgcggactgatagtctggttgtttttgccatcaatacaaagaaatattcctgtcgttacccaacccgtagaaattttaccctccacccacaggaagcgggatacgcggctactttttgtggtctgttcaatgatgtgggcggcgaataatctctacatgataaatatgccgctatttattattgatgaactgcatctaaccgataaactgactggagaaatgattggtatcgctgccggtctggaaattccgatgatgttaatcgcaggctattacatgaaacgtattggcaagcgactattaatgctcattgctatcgtgagtggaatgtgtttttacgccagcgtactcatggcgacgactccggcggttgagctggaattgcaaattcttaatgccatcttccttggtattctctgtggtatcggcatgctttattttcaggacttgatgcctgaaaaaataggctctgcgacaacgttatatgcaaatacttcacgcgtcggctggattatcgccggctctgttgacggaattatggttgaaatctggagctaccatgcgttgttctggctggcgatagggatgttgggtattgcgatgatttgcctgctgtttattaaagatatttagctcaccagtctgggctaagaaaaatcggcgtggcgcaaacagagccatcctcgccatttttgctatcatgcctgcatacataaacgacaaaacagtatgcagagggaaaaatgggttccaccagaaaggggatgctgaacgttctgattgccgccgtgttgtggggaagttcaggggtctgcgcgcaatacatcatggagcaaagccagatgtcgtcgcagtttttgactatgacgcgtttgatattcgccggtttgattctactgacgctgtcatttgttcatggcgataaaatcttttctattattaacaatcataaagatgccattagcctgctgattttttccgtggttggcgcgctaactgtacagctcacttttttgctaaccatcgaaaaatcgaacgcagccacggcaacggtgctgcaattcctctcaccgacgattatcgtcgcctggttctcactggtgcgtaaatcgcgcccgggcattctggttttctgcgctattttgacatcgctggtcgggacttttttattggtgacacacggtaatccgacgtcattatcgatctctcctgccgcgttgttctggggcattgcctcggcatttgctgctgcattctataccacctatccctcaacgctaattgcccgctatggcacgttaccagtcgtcggctggagtatgctgattggcggtctgattctgttgcctttttatgccagacaaggaacaaactttgtcgttaacggcagtttgattctggcgtttttttatttggtggtcattggtacgtccctgacatttagtctgtacctgaaaggagcacaattaattggcggtccaaaagccagcattttgagctgtgcagaaccattaagtagcgcgctactctctttgctgttgctggggatcacgttcacattaccggactggctgggaacgctgctgattctgtcatcggtgattttgatttcaatggattcccgtcgccgcgccagaaaaataaatcgtccggcgcggcataagtgagaattaccagccaggcaccgcgccaccgttaaaaatggtttctgccgctttagcgacttcgggtgattgataagattgcagaaattccttcacgttttctgcattcttattatcttcccgtgccaccaaaatattcacatacggcgaattcttatcttcaataaatacgctgtcgtgcaccggagaaagcccggtctgctgaatgtaagtggtgctgataatcgctacatcaactttgggatcatccagtacgcgcgggagctgcgccccctcgagttccataatctgcaaatgacgaggattatcggttatatccagcgcggtaggtaataacccttttccctctttcagagtaattagcttctctttttgcaacagtaaaagtgcgcgaccaaggttggtcgggtcgttggggatcgccactgtcgcgccttcttttatttgcgccacggttttgatttttttggaataacccgccatagggaagacaaacgtatttcccaccgctaccagtttataaccatgcgcctgattatcttgttcaagaaagggtcgatgctggaagacattcgcatcaagttcgccatgatttgtcgcatcgttcggtagcaacgaaccgctaaatcctaccagttcaacatcgaggccatatttctcttttgccacctttttagcgacttccgcgacatcttgttctgcgccatttataacgccaactttaatgtgttttgcatcgctgctactctggtcgcaacctgccagcagaattccggccagcaataatgcggcccctgtccgtagatgatgtgttgtcagtttcatttttttatccttttattaatgattacctgactatagcggtaaggtcgctgcggtttaaaaaacgaaacgctatcgataagaataaaaaggaataaaagtggaatataaagtctggcacttcttactgaccacgcaagcgcgtttcgtacagcatgatgagagcgatgaaagcaaactacacttatgcttcattcgatacacatttgtaaaaggttgaatccatgaaaccaacgacactactgcttattttcacttttttcgctatgccaggcatcgtatacgccgagtcgccttttagctcactgcagtccgcaaaagagaaaaccacggtattacaagatttacgtaaaatttgcacgccacagtgccattatcagatgaagcgtgggaaaagttaatgttgtcagatgaaaacaataaacaacatatacgcgaggccatcgtggcgatggaacgtaataatcagagcaattattgggaagcgttgggtaaggtagaatgcccggatatgtaagaacagcaacaactactgaccaacgcttctttacctgatatcaggatttcttcattttcacctttgcagtaaccaacaatgcagtcagcaacatcaatgtgccggacaacatcaacggcgaagtcagaccaatattatccagcgcataaccgccgattgccgcgccacaggtattagcaagctgaataaccgccacctgaatagacccggctttttctgcctgatcggccagcgagcgggtgatccacgttgaccagccgacgggaaccaatgcaaaagttagcccccagataatcgccacgccggtagcaacgattttatcgcttccccacaacgtcagtaccaacgcactcacagccagtattaacggcgcgcctgctaaggccagttttaccgaacgtttaagaatgaacgacgaaagcgacgtaccaataaagctggcgataccaaaactcaacagcaccagcgttaagccatccacgccgaatcccgccaggttcatatacaccgggcgaatatacgtgaagaaagcaaactgcccggcgaaagacatgaagatggcgatcatccctgccatcacacccggacgttgtaataagcggaaagtattttgtttctgatgcgagggttcgcctggcagtgaaggcaatgatttgataatccagaaaatacacagcacgcccatcaccgccgccgcattaaagacattgcgccaaccgataagctcgcctaaaaaactgcccaacggcgcggcaatcaccagcgcaatagaaaccgcgccgaagatcaccgacagcgccttcggcaccgtacgcggcggcaccagacgcatggtcagcgacgccgacatcgcccagaacccgcccagcgccagccccagacaggcacgaccgattaaaagcaaactgaatgagttagcaaaggaaaccagcaagcaggagagcgtcagcaaaacggcaaacaaaataacaacgtagcggcggtcagtagcctgaattgtctgggtaataaacaaactggcaaacattgccacaaaggcggtcacggtcaccgattgcccggcaaccccttccgaaatgcctaaatcctgggccattggcgtcaacaaactgacgggcaaaaactcaacgataatcagacaggcgacacaaaacgccaccgagaaaacggctgaccagttcggtcgggtgatggcatccgcgccgcggttttcggcaataaattcactcatggtgttacccgtggcatgtttcaggggaaaagccgaccactttaacattgaaatgtgtgacgcatttaacgtttttgcaacttttacggtgttgcttgagctggagttaagatcgaaacggaacagggcaaagattaccggatgcggcgtgaacgtcttatccacccgacaggtcaggcgcggtctgtaggctgataagacgaaacggtttcaatgcaaccagtgaacgccctcggcaggctgaaagaacgcgttatagcgcatctgaaaagcattaatatcctgcatttcaggttcggtttcgcgcagaaaacctagcgccagcctgacctgagcgtcggtaatcggcgcggcgaggcgagctttttgtaaaatccgatgccattgcagcaggttctgttcgctaccatcgacaatgacaatttgccagatgagcaacacctgcgcggcgttttgcaggtgcgactcatccggacgatgcaaataacgtaaaaattcgtcaccagctgactttcccatttgatcgaccatcgactccacgggtacgacatcgatgttcagccgatcgctgagacggcgaatcgcttttctggccccggatgtcagcacccgaaaaccaaccacaaacactaccgccagcgtggcgagcattatccagatcatgagttctcctgcgtaatcagaactcatgatatctggaaaccctcgccagttactaatccaccagaataatcttcagtgcaaacagagctgcgaccaccaccacacacaggttcagatcgcgccagcgcccggtgcatactttcatgatgcagtacgacataaagccgagtgcaatcccttcggtgatcgagaaagtaaagggcatcatcaccgtggtaataaacgcaggcaccgattcggtaaaatcatcccagttaacgcgcgccaggctcgaagtcatcagcacgccaacaaagattaacgctccggcggttgcgtaaggaggaactatcgccaccagcggtgagaagaacataaccaacaggaacataacgccaaccacaaccgcagtcagccccgtgcggccaccgactgccacaccagaagtactttcaatataggcagtaacagacgaggtgccgataaacgcacccgccaccgaactgacgctatcaacatacagcgccttattcatattggggaatttaccgttaccatctattaagcccgctttatcagttacaccaattaatgttcctgatgaatcaaataggttgatcagcataaaggagaaaatgataccggcgagttcaagtgttaacgcgccgctcaaatctacttcaccaatgacgccgctaatatcaggcggaatggaatagacgccgctaaaatgaacatcaccgaaaaataatccacagcaagacgtcaccacaatagaaaccagcaccgcggcatgaaaatgacgtgatgacaacacggttataataaaaaaccctaaaatacctaacaacacgccgtgagaacttaaatcgccaatcatcaccagcgtgtctttattggcgacaataacgccagtattttttaatcccattaaggcgataaataatccaattccgctggtgataccaatacgtaaacttaagggaatgttggagatcatccagtaccggatacgaaacagcgtgagcaaaaatagtccaactgcgccccagaatattgcgcccatcccggtctgccaggagatgcccatcgcccccacgaccacgaaggcaaagaaggcgttcagccccattgccggagccagcgccacgggtaagttagcaaatatccccatcgcaatactgccgataccggcaatcaaacaggtggtaacaaacaccactttcgggtccatttgtgccgcgccgaggatttgcgggttcacaaaaacgatgtacaccatggttaaaaaagtggtcatccccgcaatcaattctgtgcggacggtggtcccatgctgaggtagtttaaataatcgcgaaagcgtccctgattcattactcacgtaatcggtattgtcattattcatttttttgtccattggaggagatttaatcccttgcttttgtaaaacaaatgacaacaacggttcagtgataattatcacatttcaattgcacattaatggatattctttaataatctcgcgacgttttcttttatgataaataataatcaaatttgataaaatcaaaatgagaaaaatatgaataattctattaaccataaatttcatcacattagccgggctgaataccaggaattgttagccgtttcccgtggcgacgctgttgccgattatattattgataatgtctctattctcgacctgatcaatggcggagaaatttccggcccaattgtgattaaaggacgttacattgccggtgttggcgcagaatacactgatgctccggctttgcagcggattgatgctcgcggcgcaacggcggtgccagggtttattgatgctcacctgcatattgaatccagcatgatgacgccggtcacttttgaaaccgctaccctgccgcgcggcctgacgaccgttatttgcgaccctcatgaaatcgtcaacgtgatgggcgaagccggattcgcctggtttgcccgctgtgccgaacaggcaaggcaaaaccagtacttacaggtcagctcttgcgtacccgccctggaaggctgcgatgttaacggtgccagttttacccttgaacagatgctcgcctggcgggaccatccgcaggttaccggccttgcagaaatgatggactaccctggcgtaattagcgggcagaatgcgctgctcgataaactggatgcatttcgccacctgacgctggacggtcactgcccgggtttgggtggtaaagaacttaacgcctatattactgcgggtattgaaaactgccacgaaagttatcagctggaagaaggacgccggaaattacaactcggcatgtcgttgatgatccgcgaagggtccgctgcccgcaatctcaacgcgctggcaccgttgatcaacgaatttaacagcccgcaatgcatgctctgtaccgatgaccgtaacccgtgggagatcgcccatgaaggacacatcgatgccttaattcgccgcctgatcgaacaacacaatgtgccgctgcatgtggcatatcgcgtcgccagctggtcgacggcgcgccactttggtctgaatcacctcggcttactggcacccggcaagcaggccgatatcgtcctgttgagcgatgcgcgtaaggtcacggtgcagcaggtactggtgaaaggcgagccgattgatgcgcaaaccttacaggcggaagagtcggcgagactggcacaatccgctccgccatatggcaacaccattgcccgccagccagtttccgccagcgactttgccctgcaatttacgcccggaaaacgctatcgggtcattgacgtcatccataacgaattgattacgcactcccactccagcgtctacagcgaaaatggttttgatcgcgatgatgtgagctttattgccgtacttgagcgttacgggcaacggctggctccggcttgtggtttgcttggcggctttggactgaatgaaggtgcgctggctgcgacggtcagccatgacagccataatattgtggtgatcggtcgcagtgccgaagagatggcgctggcggtcaatcaggtgattcaggatggcggcgggctgtgcgtggtacgtaacggccaggtacaaagtcatctgccgttacccattgccgggctgatgagcaccgacacggcgcagtcgctggcggaacaaattgacgccttgaaagccgccgcccgtgaatgcggtccgttacccgatgagccgtttattcagatggcgtttctttctctgccagtgatccccgcgctaaaactaaccagtcaggggctatttgatggcgagaagtttgccttcactacgctggaagtcacggaataataaaaaaagcccggcgtcatgccgggcaaaagtcaccagttacgtttatgccactgtcaactgctgaatttttttctcgcggcggattttgcgttcttccattaccgccactatcgccatcaggcagatacaaccaatcgcggcgatatccagcgcggcgaaggtgcctgcccagccggtaaggccgaataccggcgtcccatcggcaatcattcccagacctaacttggcaaagctgtcaccaatcaggtaagcaaaggtgcctttaataccatcggcagcgccaatcgcttttttaggtacaaagccaacagcagccacaccaatcaacaattgcgggccaaagaccaggaaacccaacgcaaagagagaagccagatagatatattcgttactggcatgttgatacacaccgagcgtggcgataatcagcgccagcgcgatgcaggccaccaggccacggcgaccgttcgccaggtcagagagccagccccacagcagcgtaccgaccagcgcaccagcttcaaacagcgtaaagccctgaatcgccaccgctttagagagtttcagttcctggaacgcgtatacggttgaccactggtcgataccaatacgtaccacatagaggaaaatgttggcgaagcacagcagccagatcactttgtttttcagcacatactcaacaaagatctgccacttggtcatatcggtagattctgtctctttgtcctcttcgctgatctcctcgccgaacagttcttcagctttgccgaggccataagattccggggagtcgctgccgtaacgcaggccgataaaaccgacaatcagcgcgataatcgacgggaagataaacatgccgatgacatggccatcgaacaggtaatttgccccgaacagcgccacaccttgcgcctgcaccgccaaggttgtgagaaatattccagaaaccgaggaatgtcccgcgtttacgacgcggcgtccatttggtgatggtggagtaactgcacgaaccgccggtactctggaaaaagccgcttaaggcgtagaaggcaatcatcaggaacaggctaaccgagccgctgcccatactggcactgaagcccagcatacaaatagcagagaggatcagcatgaacggcaggaattgtttggtgtttttgccgtcggcgtagtaggaaaccagcgttttacccacgccataagtgatggagaaacccaggccgatcatccccagctgcgtcatgctcaacccgtaggtcgaaatcatatcgttctgcgcgatgttaaagttcttgcgaatcaggtacatcgtcaggtagccgataaagaccaccaggtaggattgcatgaacggtttgaaccacattttgcgccgcacttcgagcggaaggtccagggtcggcttgcgaacctggtttaagaaagccagcatgggttactcctgaaatgaatacctgcgtgaggcatgcattgtaaaaatcagcagcaaatcaggcctgagatagcgtccaggcaaaacctggaaaatttcttagttttgccggatatgaagtgaaaaggtgagatgcatcacgcttcgcgcggtgtctgggcgttcaaaaagggcagtaacagcagtgcggaaatcccggcggcgatagagataaccacaaaaaatccgctccagtgccaggtatcgagtactttcgccagcggccaaccagcaagcgacgcccccagataagcaaacaagccgacaaaccccgtcgccgcccctgccgcctctttgtgggaacactctgccgccgccataccgattaacatctgtgggccaaagacaaaaaaaccaatggtgaagaagcaggttgcctgcatcacgtagctggcaaatggcatcagccacagggagccgactgaaagcaaaattccggcggcgaaaatcaaattcatcggccctcggttgccgttaaacaatttgtccgagccccaaccggctaccagcgcaccgataaatccgcccagttcaaacatcgtcactgccgtattcgccgtgaccagatcgacgcccagtgtctcggacatatacaaattgccccagtcgttgatcgccgcccggaccacatagaccagcacatagcaaaacgaaagcagccagatatacggattcagcaacacatatttggtgaggatctctttacgcgtcaaccctgccccttcttgttgttgagcaatttccagcgcgtcgtgtcgccattcaccgaccgccggtaaacctaacgcctgcgggcgatcgcgtacgccagcagagaaaaatccccacgactatcgccatacaaccagcaatcatcatcccggcacgccagccgtaatgcagcgcagccgctcatcacaatgggaatgagtgcgccgccgacgttatgcgccgtgttccataatgcccaccaaccgccgcgctcggtacgtgaataccaggccgttaacagacgcgcacacaccggtgaaccccagccctggaaaaaggcgttcagcacccagagcacggcaaacgcccatagcgacgtcgagaagccaaacagaatgttgataatgcccgtggcgataagccctatccccataaaataacgggcatttgagcgatcgctgacaatgccggagacaaacttcgacacgccataggtaatgtaaaacagggtcgctaacaggccgatatcgctacggctgagcacgccgttagcaaggatttctggtacggcggcgttaaaacttttccgcgtgaagtaaaacagcgcgtaacccagccagatggtcagcagaatatgccgacgccagtagcgatagcgggcatcaatttcatatttatcagtcattaatggcgcatcggcaggcgctttcagaaacggcaacatcatcaaaccttagacatagcgttgaggtagagaaacgctgacacgcgtgccgtgcagacaggaaatgtgtaatgtgccacccagcgccgttacgcgctcgcgcattccggtgaggccaaaaccttgttgcccggaacccggcggcaaaccgctgccatcgtcttcaataaccagcatcaaccgttcatcctgctgccagccttgcagggtgaccgcgctggcatcagcatgtttcacaatgttgttcagcccttcctggcagacacgaaacagcgtcacgcgctggttttcgcttaacgctgattcatcgattcgccattcgagatggctgacaataccgcgcccttccagctccatttcccgcatcagtgagcggatggcctgctccagggtgagatcatccaactggcgcggacgtaaccgacccaacaaacggcgcaccgcgtcgtaaacgcccagcgatagttgttcgatgagctgcccgctctgcttcacgctggcgttatctgccgccagccgctgaacaatgcccgcctgagtacgaatagcagtgatggtctgaccgatatcatcatgcagctcacgcgccacatcacggcgcacgctctcttcggtttccagcaaccgttcagccagatgctgattgcgcgccagttccttttgcagcgactggttaagttcacgcaaccgctggatgccagcgccaagcaacaaccctgtcagactttgcaccagcagcgagagcaataaatccaccggatgatcgcgccaggtttgactggcgatcagcgcgatggcgttcatcaacgtcgcaatcagcgccccttgccaaccatagtgccaggccagcgcgataatcggcagcgccagacagaatggcgtaaagcgcgacagttcgtccggcaatcccaactggagccagagactgataacaaacagcagcaagtaccagaccagatgtcgcccgcgccagttgattggctgagaaaccagtgacggaccgagcggcagccaggtgttattggcgagatagtgccagaacaccagacatatcggggccagcgtcaggccgccagttaaagtcagcaacagcgcattccacgactctttgccgtgccaaagccagggcagcgactgcaacaacgccgccgccgttaacgccgccccctgtaacagcaaggtgcgccagtcacgctgatggcgatagcgcgagatcagcgctacgggcagtaacgtcagtaaactaccgatcatcaataacggaaaatgggttaaaccgaccgcctgcgttagccagtaaatcagcagccactccgcgcccagcaatacgggccagtatccgcgcgggcattgcagcattagccccagacgcagaccaaacggaaataacagcaccgccatatcagggcgctcaaccagatgcaggctgatactccacaggcaaaaccatgcggcagagaagataaaaaagcaggcaataacggtaattaagcgggagaacaacgtcttcatcaccagccatcaaacatgcggcgcgccagctctacgtcgttactgacgcccagtttttccatcagattggcgcgatggacgtgtaccgttttcggtgacaagcccagttcggcggcaatctctttcaccgccattccttgcgccagtttttccgccacctggcgttcacgtttggttagcgggtcctgacgaccggatgccagtttaatggcaatatccggcgtcagataacagccgcccgtggcaaccgtatgcaccgcagcaatgagttcatccgggctacagcgtttggaaagaaagccgcgtgcccccgcgttaagcgcctgctcaaccagcgcaggactgtcgtgaacggagagcataatcgtcgccatacctttcggcagctggcttagcagctccagaccggagatatcgggcatggagatatcgcaaatacacacctgcacaccgcgccccggcagccccgccagcgcctcgcgccccgaaccaaactcggcaactacctgcaaatcaggttccagccccagcagctgcgcaaagccggagcggacgatgaggtgatcgtctataagggcaacggtgatcatggtcttgtcctggcgggtaaaaaaaatacgcgcttaccttaacgataagcgcgatgttgttcaagccttgagcggttactgaaaaaacaccgcgatcttgttaaacatcgtcggatcggactgattacgctgcactttcacgacatcttccagcttatcgatttggcttatcatctgctccagacgctggtcgtcattgaccagtagccagatatggcttttgtcgctgtcctgaatcggcagacaaagaatgccttcaacgttaaaagcgcggcgggcaaaaaggccacaaacgtgggtcattacgcccggatggttgcgaacggtgagctccagaattacgttgtcatgagttgtgttttgcatggcttattcccccaccatttcagtattcgccgcacctggcggcaccatcgggtaaactttttcttcggcatcaatgcgcacatggatcagcgccgggccagggcgattgatgatttcctgcaatgaagcctgcggatcggcttcgttattcaaatcacaggtttcgaggccgaatccggcggcaatctgcataaagttgattttgcccggataggtggcggcaaaaacgccttgctcgtagaacagactctgttgctgatgcaccagccccagcgcttcgttgttcatcagaatgattttgacatccagctgattttcactggcggtcgccatctcctgaatattcatcatcaggctgccgtcgccggagaaacacaacactttgcgatccgggttcgccagcgcagcgccaatcgccgcaggcaggccaaaacccatcgtgcccagcccaccggaggtcagccactggcgtgggcgattgagcggataagcttgcgcggtccacatctgatgctgaccaacgtcggtggtgataattgcattgtcatcgacacaggcggcaacggcgttgatcaggccgtaatggcttaacggatcgcacgctttcgggattggacacggaaactcacgctgcaaatccgctaccaactggtgccactctgcacgcggttgcgcttccaccagcgggatcaactgcgccagcacgtcatcaacatccgcctgaatcgccacgtgcggctgcttgattttacccagctctgcacggtcgatatcgacatgaatgattttggcattcggacagaactgctcggttttgccaatcgcccggtcatcaaaacgcgcaccgagcactatcaacaaatccgcctcctgcaaaatatagttggtgctgcgcacgccgtgcatccccagcatacccagcgacaacggatgcgcttttggcaacatgcccagcgccattaaagtcatggtggtaggcagttgcgctttctccgccagttcacgcacccgtgcgggcgcattgatcacaccgccgcccagataaagcaccgggcgtttggcagcgttaatcatcgccgctgcgtcacgaatgctttcttcgctaaaggcgggggcggcggctttttctgccatagcgggctgtgtttcaatctcaaaaactgccgtttgcacatccttaggaatgtctatccacaccgggcctgggcggcctgattgcgcaatgcggaaggcatcgctcatgacctgcgggagttcttcgatatgtctgaccagatagttgtgtttggtgatggggatagagatgccgtaggtgtccacttcctggaaggcgtcggtgccgatcatcgaggcgggaacctgaccagtgatgcaaatcagcgggatggagtccagccgcgcatcggcaatggcggtcaccaggttagtcgcacccggtccgctacaggccatacagaccgccggtttaccgtcggtgcgcgccattccctgagcgataaagcccgcgccctgttcatgacgggccagaatatggcggatttgcgtgctttggcttaaggcatcgtaaacaggcaggatagaaccgcccggaatgcctgtcacaatcttaatgccctgctgttccaggaaatgaacgataaattctgcgccggtaaagcgcttacgcgtcgatgttgtgcccgaacttgccatgctccagtccttttcttctgggccgactttccgggaggtgcttaaacgaaaaaccccgcccggtttgcgccggcggggttttggaatcgtgtgttgttccagtccctacggcgcattgccgacgaccaccaccacacgcacgacgaccactgcggcggatggcgcagttggtagtagttttgcgttgagcatggaagtagtcattggggaccttgttggttttgtgtttaacaatatttatacaagcacagctttacaggggagacaatggaaaatttttcagcaagggaaaattgaggggttgatcacgttttgtactgaattgcagataacaaaaaaccccgccggagcgaggtttcgtcagtcgcctgcggctggtaaccgcaaagcacactgtattatgtcaacactgaaagtatacgtgttccgcgcagaacgcgcaatttcggcacgaattttgacgtatttagtgcatagttgagtatcgatcacagtttgcgttttgtccaaatattactgtttatttatacagtaaacttctataatatcactgtacgcaatgtgttatgcgggggccgcatcgttacccggcgcactaagtcctggctgaaacgggtggtgccgtcagcgccttaaccccgcgtgagcacactgtgttatgtcaacaagcacaacgtttctccttgagataccgcgtgcacaacagctggcaacaggcagcggaaaggtacgtcagctggcagtgctcctgaaccacaggagacgcgtatgaacctggtggatatcgccattcttatcctcaaactcattgttgcagcactgcaactgcttgatgctgttctgaaatacctgaagtaattcagattcaagtcgcaccaaaggggagcgggaaaccgctccccttttatatttagcgtgcgggttggtgtcggatgcgatgctgacgcatcttatccgccctaccatctctcccggcaacatttattgccgcttttgtttacatattctgccgctaaacaattccccattcctggcgtatatctggctaacattcatcaatgtgatagattcctctcccgcatttatgggaatgcgtagtgacttattctaattatttttataaaagcatccgtgataatgaaaaggcaaagaaacgtcaatttgttattgatgttggtattactcgtggccgtcggtcagatggcgcaaaccatttatattccagctattgccgatatggcgcgcgatctcaacgtccgtgaaggggcggtgcagagcgtaatgggcgcttatctgctgacttacggtgtctcacagctgttttatggcccgatttccgaccgcgtgggccgccgaccggtgatcctcgtcggaatgtccatttttatgctggcaacgctggtcgcggtcacgacctccagtttgacggtgttgattgccgccagcgcgatgcaggggatgggcaccggcgttggcggcgtaatggcgcgtactttaccgcgagatttatatgaacggacacagttgcgccatgctaacagcctgttaaacatggggattctcgtcagtccgttgctcgcaccgctaatcggcggtctgctggatacgatgtggaactggcgcgcctgttatctctttttgttggttctttgtgctggtgtgaccttcagtatggcccgctggatgccggaaacgcgtccggtcgatgcaccgcgcacgcgcctgcttaccagttataaaacgcttttcggtaacagcggttttaactgttatttgctgatgctgattggcggtctggccgggattgccgcctttgaagcctgctccggcgtgctgatgggcgcggtgttagggctgagcagtatgacggtcagtattttgtttattctgccgattccggcagcgttttttggcgcatggtttgccggacgtcccaataaacgcttctccacgttaatgtggcagtcggttatctgctgcctgctggctggcttgctgatgtggatccccgactggtttggcgtgatgaatgtctggacgctgctcgttcccgccgcgctgttctttttcggtgccgggatgctgtttccgctggcgaccagcggcgcgatggagccgttccccttcctggcgggcacggctggcgcgctggtcggcggtctgcaaaacattggttccggcgtgctggcgtcgctctctgcgatgttgccgcaaaccggtcagggcagcctggggttgttgatgaccttaatgggattgttgatcgtgctgtgctggctgccgctggcgacgcggatgtcgcatcaggggcagcccgtttaagcgcacgtcaccgcagcatcgtcatcagctccatgggagaacgatgctgctttatcagatcacgcatcacccgcatatgcggtgcggagtaagaataaaacgcctgatagcccgcacaaagcacgctgtctggcgtctcctgccgagcgtgcgggcacaggcgatgccagtcgcacgcctggcagtcacagcgcggttgcgggttttcgctgccacaccatttttgtaaggtggcgtcaaaaagctcaatcgagatacgactgatatctgcccgcacccaacactcgaacagggcaattaaaaatttcccccacagctctgctgtcaccgaagcggccgtcagatcgccccggtcatcaaattcaagatagggaatgagctgtacggagcggatgccccgctgtttgaaattgtgataaaaatcggcaggttgcagagcatccttgtactctacaaccagtttatgcctgtcctcttcagcatcaatgacctgacttcctgtcatgcgactctctcaataaatacgataagttgatgtatatgcgttacagcaaacagtattgcgagagataacaccgcgagggagatcaaaaatttgtcacggactacgtgaaattgggaaaaatcgctattcgtgacatccattaaattgcgattacgggtgtagtgccagaggatcagcgccacgatggcgagaatgccaatcgaaatccagaataacatgcccgcctggtgccagttgtgtttgatagccaacgccatcaacgcgccgtagcccagcatggtacgaaaccacgccagtgatgtgcgctccggctgcagtcctgggtcggcaatgcgtctggctttgcggctatccggcatacaacaccagtcccataacgatcaccgccacgaccatcaatattaagctaatgattaataagctgttggtgtagggcaggtcctctttcagacgcatcgctttttcattgcgtaaccagcgcaagtagccatacatcgctaacccgccggaaaacagacacaacaacaacgccagcagttcgcgaatgacgggcgtggcgaaatctggcgcaagttgatcaagcccaacccccgccgccagaaatcctagtgcagtacggatccacgccagaaaagtacgctcattagccagcgagaagcggtaatcaggcgcttctccgaggcgggaaattttcattgttgctcctttgcaatttcactaacgctctacctttagcggtttttttaagaatttcgtccgcccgtttcctgatatgcttttgccatccgctacaaggaggtcagatgggtatcatagctcaaaataaaatcagttcattgggcatgctgttcggtgccatcgctttaatgatggggattatccacttttcattcggccctttctccgcaccaccgccaacgtttgaaagcatcgtggcggacaaaacggctgaaattaaaagaggtcttctcgccggaataaaaggcgaaaaaattaccaccgtggagaaaaaagaggacgtagatgtcgataaaatcctcaatcaaagcggtatcgcactggccattgctgcgctactttgcgcatttattggcggtatgcgtaaggaaaatcgctggggcattcgcggcgcgctggtttttggcggcgggacgctggctttccataccttgctttttggtatcggcatcgtgtgcagcattttgctgatattccttatcttttccttcctgaccggcggttcactggtttaagcagcctgaataatgcccgccgggtgatcatcagcgggcattatcgtcagaacttctgttttttctcctccaccttcaccccttgtgtcggtaggccggtgtcatagtcgcgtacaactggcgaatagccatcttgtggacgtggacgaaacgcccccatccagcgcggccgtgcatctttacgccacggacgcagactccattggtaactgcggaacggatcgcgaattttgtccatgtaatccaataaggcgtcatgcattttgctgcgaacgtctgcaaaacggatatcatcgatcaggttatgcatttcatttgggtcattacggcgatcgtaaagttcatcactggtgaagaggttgagtaccagtttaaagtcatccgtcacccagcaacgcaccggaataaaaccgccaaagctgtcatgctcaatctcgtagcggttaaattccaccatcacgccgcgtggctctttcacggcaaggatattttcccccggcagaatctctggtttttcaatatctgccagcgccatcattgtcggcagtaaatcgatatgactgactggcgtatcgacctgtcgccgctccccttgcggcgaacggatgatcagcggaatgcgggtgatgtcgtcatacatcgccgcccctttactgatcagcttatgtgcgcccatcatttcgccgtgatcggaggtataaataacccacgtattttcacgttgctctggcgttaaggcattgatgacccgtccgatttggtcatcaacaaagtcattacaggcaaaatagagcggatggtgataaagcccgtcatcaccgactggcgatggcatcgcctgcgcccataagcggtgatgttccggtttgttagccaggtcatcctgtgctttctcgcccagctcgtagtaaaaatcagcgtatttctctaaatactccaccggacaggtgaacgggtgatgcggctcatcatacgaaaccaccatcaggaaaggctcgtctgcgcgcgcaggctgttgcagaaaatccaccgcccgattgctgatacgatgcgcccaggtgaaggtttcgtcgatatggttcgcctgtaaatcttcgacgctgtttaggccattgcgccacaggctaatctctttttccgtcagttcgctaagatagttcgccccatcgaaccagtaatcagcgtcccactccggcggacactcgccagtgccgaaatagtcatgaccgtcgagatgccatttgccgatgtaacaggtgtgatagccggcatccttaaagtagcgccccatagtggagatgtttttgcctggcgcgacgttgttggtccacgggccggactggttagcgtagataccggtaaatagtccggcccgtgcaggcgtacaaaccggtgaacaggtgtaggcggaattaaagcgaataccttccgccgccagactatcaatattttgcgtattcagcggtttaccgctatagcaaccgaccatattggtggcctgggtatcggtcatgacgaacagaaaattggggcgtttcataggctatccttcccgtcgggagtaaaggttacggctgggtcgtgacgatgccgccagctgtcaaaaatcaggtagacaatcactacggcggcaatgaaataactgatcatcgctaaccagcgcgtaccgtagccgccgaattcagccagcccggcatagacgccaatcatcgcgaacaggatgccaattgacgcgatcttgacgtttttccacggtttcatgtccaccgcaaacgcatctttgaaggtgaacggcgtggcgcgcggtttgataaaaccgatcaccagcatcacgaccacgttgatgcagaacgtacaggccagcacatagaggaaatggaagtcgaacttcaccagatagttgatggtgatgtagctgattatgccaatccccatcgctacttttgccgccagcgccgggatgcgcgggaagaaaaagcccataatgatgatggtaaccagcggcacgttgtaaatgccgttgagctgtttcatccagctatacagcccctgcggcgcgttggcgatccacggcgcgaccagcaccgaaacgatagcgataaagaaaccaaatttgcgcccgacggtgaccagctgctgcggctcggcattctggttaatgatgcgacggtaaatacccatactgaataacgtactggcgctattcagaaagccgttgaaggtactgatcaccgcaccaaataacaccgcgccgaagaaacccaccattggcactggcagaacgttattgaccagcgtcgggtaggccatgtcggctttcggtaaatcctgatacagatgaaacgcaatcaaccctggcagcaccagtaccagcgggtcgagcattttcagcaccgccgttaacagcgcccccttttgcccttccgccaggctttttgacgccagcgtgcgttgcacgatgccctgatttgtacaccagtaaaaggtgttcaccagaatcaaaccggtaaatgccgcgccaatcggcaagggatcggtcgggccaccgattgagtttaatttctcggcgtgaacggtggtgagttgctcaatgccctgcataaagctgcccttgcccatcgcgattaggccaaataccggcaccatcaacccgccgataaccagcccaataccgttgatggagtccgccactgccattgcgcgcagtccgccgatcaccgcatacaaaattcccgccagaccaagcaaaattaccagtagccagatagccgcaccgtgagaaatctgtagcgattccccgacgtgaaacaggctgttgagcgccaacgcgccggagtagagaacaatcggcagaaagcagacgccggtggcaattaggaagcagaagtcgatgataatacgcgtcgttttatcataacgttcctccagaaaatcggggatggtggcaatgccgcgcttcagatagcgcggtaaaaagattagcgcgaggaagatcagcgtcaccgctgaagtcacttcccagcccatcaccgacatgccgcttttgtaggcctgcccggaaaggccgaccagttgttccgtggaaaggttggttagcattaacgaagcggcaataaccggcgcttttagtgaacgtccggcaagaaaatagccttgttgcgatccggtatctgttttgcggaccttccaccaggtgatcaccgccaccagcagcgtaaaaccgacaaaactcaagatttgtaacgaattcatctcatagcccttatttatgtttatgtcccggacgcatgaatatagggagaggtaaaatgcgtcgggtcaggcagtcagattcttaaaatacaaacgtcgtatccctgaacggattgttttctgttaagttcaggttgtgagcataattcgccggagggatattaaaatgaatggaaaattgcaaagttcagatgtaaaaaacgaaactccgtacaatattcccttattgattaacgaaaatgtgatctccagcggaatttctctgatctcgctctggcatacctacgccgacgagcattaccgggtgatctggccgcgggacaagaagaaaccgcttatcgccaactcatgggttgcggtgtataccgtacaaggatgtgggaaaattcttttaaagaatggcgaacaaataacactgcatggcaactgtattatattcttaaagccaatggatattcactcttatcactgtgaaggtttagtctgggaacagtactggatggaatttacccccaccagtatgatggatattcccgttggtcagcaaagcgttatttataatggcgaaatttataatcaggaactcaccgaagttgctgagttaataacttcaccagaagcaataaaaaataatctggcagtcgcttttctgacgaaaattatttatcagtggatttgtcttatgtacgcagatggtaaaaaagatccacaacggcggcaaattgaaaaattaattgccactttacatgccagtctgcaacaacgctggagcgtagctgatatggctgccacgatcccctgtagcgaagcctggttgcgtcgtctgtttttacgctataccggcaagacgccgaaagaatattacctcgatgcgcgtctggatctggcgctatcgctattaaagcaacaaggaaactcggttggcgaagtcgctgatacgctcaacttcttcgactcctttcatttcagcaaagcctttaaacataaatttggttatgcgccgtcagccgtgctaaagaatacggaccagcacccaacggatgccagtccacacaattaacgtaactctggccagtacgctttgttggcctccagcaactcatccagaatagctttggcgaccgaggcgctcggtaccgttttcgacaacgtaatcgcctgccacaggtgctgatatgaacgctgttcccaggcgtccacgaccagtttttccaccgccacttgctgactcattaaccctttctgaaactgcgggatatcgccgaccaccagtggttcaggccgtagtagcgcacgcgcatctgtttgcgatcttgcagcccaacaatttgcgccatccggctttcaataccgattggcatgtcacagatgttgaggattttcgcattcgggcgcagacgacgcgtggcttctgcgacaatggctgccgggttggagtagttgagcatccaggcatttggtgaatatttttccatataatccaccagttccaggacgccgccaatggaacgcatgccgtacgctattccgccgggtccgcaagtttcctgaccaacaacgccgtggcgcagcgggattttttcatccagttcgcgcatcgggtatttgccgacgcggatgtgcgccatgacaaaatcaacgtcgctgaatgccacttcaggatcggtggtgtaactaaacgcaatgtccggcgctttttctttaaggatgactttacaggcttcggcaatcacttcctgccgcgcaccatcgttatcataaaatttcagtgcacgaagcgggaaacggtcctgattcgccaggagcatcaacacgatgcctggcgtaaaggtgcttccaccgcctgcgacaaccactgagaatttggtcattatactgcctccgtaatggcaacattttctgctgattgatgagaattaattaagctatcgagctgttcacgcagctgagatacatgcagaccaatgatcacctgaatggcatcgccactacggaagacgccgtgcgctcccagctttttaaagacttcgtcatccagcgtttgtgacatgtcatgcagtgcaatacgtaaacgcgtcgcgcaattgttaatgctggagatattgccgaccccgcccagggcttgcaggataccggcagcctgatccagctctttttttggctctgccgcggtggtttggcctcgcgaggctttgtattcggcttttgagtagagtttcacttccgcatcttcacgtcccggcgtgcacatgttgaactgcagaatcagtgtgcggaaaaccacgaagtacagcagggtaaagcacaacccaatggcgatttgggtcagcatcatatccgcgtggttgctgaacatcgggatccagttttgcggtaaaacctagtcaatcagacctccgcccatgttgcccaccacaccaaagagatacattacggtcgacattgaggccgccagcacggcgtgtaccgcaaacagcaacggtgaaatgaacaggaaggtaaattccagcggttcggtaattcccaccagcatggcggttaaggttgcgggaatcagcaagcccgccacttttacccgattttccggtgcggcagtgaagtacatcgctaaagaaatgcccacggcaccaaagatttttgagttaccgtgcagggcaaaaccgccttccgggaacaacgatttcagcggctcggcgctcaaactgaactcttgcagatgctgcgcccagtacatctgaatgccgccttcaacagctgccggaccaaagataaactgtccgtagatgaagtggtgtaaaccggttgggatcagaatacgttcgaggaaggtgtaaacccagaccccaagtgcacccgccgaacgcaggaacgcttgcagagattcaatccccatttgtacttttggccagccgagcaacgtcagccaggcacaggggatcatcaccaggaaggcgataatcaccacataagacgtcccctggaaaatgccgagaaaaaccggcagttttttatcgaacagacggttatgcagcgccgtcacaatgccggaaatgataattgcgccgataatgctggtatcgagggttttaatcccggccatcattgtcagaccgctacctgccaccgcgtcctgagtgaaatcgacgccgaagtagcttccccaggtcattcccatcgcgttgatgaaatagttccaggtcaggaaactcaccatcaccgccagacaagcacgcccctgcgcttgcttagcaaggccaatgggtaaaccgacagcaaaaatcagcggcatattacggaataccgtccaaccgccctcttcaataatgtgtacgatttgcgcgaataaactgttcggatcggtcagtgattccccgacaaacatcgggttttgcagcaagatggcaagacccaccacaatcccggcgaagggaaacagcagcactggcgtgaacatcgcgccgccaaagcgttgaatttgactgagcatttccacatcctcttttctcaattctgtaagtaggaagcctgattggttatgcggcaggcctggagcgaggataggaagatgcgatcggcagaacatgacgacccaatgggattcgtgatcgctttcatgcttttcgttgggcggtagagatctacgttttcgcgaaaaagtagacctctgtgagcacaggtacacagcatcgaacacatctttaaaaaaaagatgttttttcaatcgattaagcagaacttgtgtgcgcattacccgggcttgcaggcaaaaaagagatctagagatgatctacaaaagcattgcggagcggttaagaattcgacttaactccgcagatttcacgctaaacagccttcttcccggtgaaaaaaagctggcggaagagtttgcggtatcgcggatgaccatccgtaaagccattgacctgctggtagcgtgggggctggtggtccgccgccacggtagtggcacttacctggtgcgcaaagatgtactgcatcaaaccgccagtctgaccgggctggtggaggtgttaaaacggcagggaaaaacggtcaccagccaggtgctgatttttgaaatcatgcctgcgcctccggccattgccagccagttacggattcaaatcaacgagcagatctacttctcccgtcgcgttcgttttgtggaagggaaaccgctgatgctggaagacagctatatgccggtaaaactgttccgtaatctttcgctgcaacatctggaagggtcgaagtttgaatatattgaacaagagtgcgggattttgattggcggtaattatgaaagcctgacgccagtgctcgccgatagactgctggcgcggcaaatgaaggtagcggaacacacgccactgctgcggatcacctcgttgtcatatagcgagagcggggagtttttgaattattcagtgatgttcagaaatgccagcgaataccaggtggagtaccatttacggcgactccacccggaaaagagttaaccgatactccagaagagcaccgccagtaattggggggtgataatgcgcaggaacattaccaacggatagacagtggcgtaagagagcgccgccgcaccgctggttggatgaagattattagcaaacgccagcgccggaggatcggtcatggaacctgccagcatcccgcacatggtcaggtaattcattttggctaacatccgcgccagaatgccaacagtaatcagcggaacggcggtgatcagggcaccataaccaatccagcttagcccttcgccattgaccagggtattcacaaaatccccaccagatttcagaccaacgaccgagaggaacagcacgatccccagctcccgcagcgcgaggttggcgcttggcggcataaaccagtacagcttgccgatactgccgatacgcccgaggatcaacgccataatcagcggtccgcccgccagccccagtttcaacgcggccgggaatcctggcacaaagacgggaatagaacctaacaatacgcctagcccgatgccaataaacactggcagcatctgaacctgttgcagtttttgctgcgcattccccagcacattggcaacggcatcaattgcggacggacgccccaccagattgaggatatcgccgaactgcaggctgatatcgccactggcgaccagttcgaccccggcacggttcaggcgcgagataacaacgtcatagcgttctttaaagtgcaggtcgcgaatacgttttccgagcacgttttcattggtgaccaccacacgctcgacgcgcaaatcagtgcctttcgtggacagcgaagtatcgacctcctgaccaatcaccagttgcgcattatgtaaatccgctggctgacccaccagatgcagcaaatcgcccagttggataatggtatctggcgaaggaacttttagggtttcttcgcgtttcagacgcgagcagataattttgtcgccgttgagaatcggtacatctttaatggctaaatcatgcaggttagggttctcaacgcgaatattgatagtcttgatcagcgcgccgccattggtgcgtgaagactcgtgctgctgagcttctgtctcgacattgacgcggaaaataacccgcaacatccacatggtgaacaaaatcccgcaaatgccgaatggatacgccatcgcgtaactcatccccatctgatcgaccatttccattggtgtacccaggtcgcgcaaaatctgctgccctgcccccagcgctggcgtattggtaaccgcaccggagaaaatccccagcactaccggcagtggaatatcaaacagtttatgcaggatggcggtaaccagaccaccgatgatgacgatcagaacagcaaacaggttgaggcgtaatccggagacgcgcaatgaggcaaagaagcccggccctacctgaatcccgatagtataaacgaacaggatcaggccaaattcctgaataacatgcagcatatcgctacttaatgtcatccccgcctgagaaacaaaatggccgacgatgatcccaccaaacagcacgccgccaatacctaatcctatgccgcgaaatttgacgttgccgataaacaaaccgacgactgccaccaaagccagaatactgaccgttaatgctatatcactcatcgtccatttctcttgagataacattttaattgctacggattatggctgaatcggtgaagcagatttgccttatagcgcacattatcacgggaaagaacgtgccgaaatatcttaaacagtcgaaatttaacgcattgttgagtaagtaagacaaaaaaagccccaccagaatggcggggcaaagagaatagctagttagctatttaacgcgggacgttcgctgatagcgatacgctgcgctgcgatgggttcaggctcattacgaattaaatcaatatgcagtaaaccgtttacgaaggttgcgccagagacttccatattttcagccagcgtaaagctcaggctaaatggctgattcataagcccttgatgcagccattttttctcttcttttggctgctccggcgtgccttttacgctcaggcgcgtaccttccagttgaatctctaaatcttcctgacggaaacctgccagcgcaagggtaatgcggtagtggttatcgtcgcttttctcaatgttgtacggcgggaagctctggctttcaccggcgttttgcagtgcgttggccagtttgtcaaaaccgatccattgacgcatcagtggggataaatcgaagttacgcatagtcatttctccttctaagaagcgagtaagtacctgcaaatccgaagattcgcatatgctccctgacggcgagcatggagatgtcaggccgcgccaggcggccttagggaattagttgatttcgatacggcgcggttttttcgcttccggaatcacgcgttcgagatcgatatacagcaaaccatttaccaggttagcaccacgaacatgaatgttctcagctaactggaatttgcgttcaaagttgcgttcagcgatgccctggtacagataggtgcgctctttttgttcgtcggcgtgagcacctttcaccaccagcagattatcctgggcggtaatttccagttcgctctcagcaaaaccagccacagcgatagcaatgcggtaatggttttcgtctaccagttcaacgttatacggagggtagccgccattactctggctctggttgttttctaagtggttaaacaaacggtcaaatccaatagcagaacggtaaagcggggataaatcaaagttacgcataatcaatagctcctgaaatcagcgagaatgtaagaccttccacaatggacaggtcaggtagccagaacacccatcaggcgcgtcctcatcggctacgatgtaaaaatgggtctggaaatgaacttttcaagccttatcagcggacttttttttgcagtttatggtctattgcatagactgagggggcagcacgaaacgttaaagtgcgatagccgccacagtgcgacgtaatgatgatgttattttcagcaagggatcgctataactcatcaggccaacacccacgatcaacagatgaatttattatgataagaaatgtgttgttagcgttcatgatatgcagcggaatgacattactcggaggatgctccagcgtgatgtcccataccggagggaaagaaggaacgtatcccggcacccgcgccagcgcaaccatgattggcgacgatgaaaccaactggggcactaagtcgctggcgattctcgatatgccgtttaccgctgtgatggacacgcttttactgccgtgggatgtgttccgcaaagacagctcggtgcgctcgcgcgttgaaaaaagcgaagccaacgcgcaagccaccaatgcggttattccaccggccagaatgcctgataactgatttagcgatcagtttcggtgatccacagctggccgccttccatccacgccagccactgaccatccggcgagaagaccacggcgtccgcagaaggtgaattggcgtggtgttcggttaaatactcaacctcgccgctttgcgcatgggcacaagcaattcgattatccagcacaaagcccaaccattctcctgacggatgccagttaaatgcagactgaatatccgttttgttatgggttaactggcgcggctcgccgccctgtggcgagataagccacagttgcacaatgccgttatcatctcgcattaaaaacgcgatttgtgtaccctgcggattacagcgcacccagtggcgcgggacgttgactaaccccggataagcccgatggtgggtaaaggttaaacgtcgctgcacgacgccacgcggtggcgcgggcagggttgtttccgttccgcttaacggcgcatcacctgccgctttccagccagcttcatcttgcggtaactcaacgataaacagctccggcactttctcgccctttggcgaaagtgtgtcgccaataaatgccagcgcgtgatttcctacccatccttcttcataagcacgattgatttcatcactgccaggctgtggcgtgggcgtggttttgctcaccagcacgcaccagtggctaccgctgtattcacgcggatgctgcttttgtacgttgaccgggccaaacggcgcagcaacaccgacgtttcgcaaatccagcgccggatcgagttcatgcattacatggtcgttataggtaaagctcaccctttcaccgttcgggctaaagacatgcacatggctgccgccgcgcagcactcctggcgtatacggcgcggtaatatccatcgcatcaaggttactcatcttgccgccttcaacaatcactccgcgccgatgatggaagtcgtaatgccatgtttcatcaggattttccgggccgtggatgaaaacatatttctctgacttcggatgaacggtcaccacgccgacgtgtgcgccctgtgacgcgcgatagataacctcgacctcgccggtatggatattcacacgctcaatggtctcgccggtaaacgacgcgccagaaggacgcacgtcaaataccagccactggctgtcgggcgtccaggtattggtattggtgagcaggtgattacggggagcaaaggttatctgtttcatggcgcggtcctgatacaaaacgggtcccgccatcatacttcacaaggacttcactttcagacaatagtcttttgccatcgtgatgaatgtgagtgaaaagatggaacatttcgacgtggcgattattggcctcggcccggcaggatcggcgttggcacgaaagttagcaggcaaaatgcaggtgatcgcgctggataaaaagcaccagtgtggtactgaaggtttcagcaaaccctgcggcggtctgctggcaccggacgcgcagcgatcttttattcgcgatgggctgacgcttcctgtcgatgtgatcgctaatccgcagattttcagcgtcaaaaccgtcgacgtcgccgcatcgctcacgcgtaactaccagcgaagctatatcaatattaatcgccatgctttcgacttgtggatgaaatcgctgatccccgccagcgttgaggtttatcacgacagcctgtgccgaaaaatctggcgtgaggatgataaatggcatgtcatttttcgtgcagacggctgggagcaacatattaccgcccgctatctggtcggtgccgatggcgcaaactcgatggtgcggcgacatctctacccggatcatcaaatccgtaaatatgtcgctatccagcagtggttcgcggagaaacatccggtgccgttctactcctgcatctttgataattcgataactaactgttattcatggagtatcagcaaagacggttattttatctttggcggtgcctatccaatgaaagacggtcagacgcgtttcacgacgctgaaagagaaaatgagcgcctttcagttccagtttggtaagacggtgaaaagcgaaaaatgcacggtgctgtttccctcgcgctggcaggattttgtctgcggtaaggacaacgcctttctgattggtgaagcggcgggatttatcagcgccagctcgctggaggggattagctatgcgctggatagcacagacattctgcgttcggtgttactgaagcagccagagaagctcaataccgcttactggcgcgccacccgcaaactgcgtttaaaactcttcggcaagatagtaaaaagccgatgcctgaccgcaccggctttaagaaagtggattatgcgcagtggtgtggcacatattccacagttgaaggattagccaacgcgcttcacatcgcccaccagcaggatataagagagcgcgccaatcaacgcgacggcggagatataaaccagtgcaggtgcgaaaccgtaaccctgcgccaggtaccccaccaccagcggaacggtgatgccgcccagaccaccggcgaagttaaacacgccgccggttaaaccaatcaggcgcatcggtgccagagaagaaaccagcgaccaggtaatcgaagcaaaaccgttaccgaagaatgccagcgccatcaggcacataatcatcatcggatcgttagtgtagttagcgcccataatgcaggtggagatcagcaagccgcagataatcggcgttttacgcgcaaagcccagtgaaaagcccttacgtaccagcagatccgctacccagccagagagcaggacgccgacaaacgccgcgaggaatggcaccgtggtcataaagcctgctttcagcgccgtgattcctttttcctgggttaaatagttcgggaaccaggttaagaaaaaccacagtgtagaagccaccgcaaattgcccaagataaacgccgatcagtttacgatggaacaccagtttccagtctttggctgttaacggctgacgcgcctctttcttcaccggcgcatcaccatccaccagaccgccgccatcacgaatgtaatccagttcagctttgctgatacctttggtcaggcgcggcggctgataaaccttaaaccaaatcagcgaccagataatgccgataccaccagtgacaatgaacacccagtgccagctcaacatctcctgaatccagatcagcagcggcgtcagaaacgccagaccgacaaactgaccagacgtataaaaaccaacggcagaagcgcgttcatgttccgggaaccagctggtcaccatccggttattggtcgggaaagcaggcgcttcgaaaataccggttatcgcgcgcagaccaattaatgacattaagcccgtggcaaagccctggaataaagtcgccactgaccagccaaatatcgcaataaaataagtcacgcgagaacctacgcgatctaaaaaccaaccgccggggatctgacatagcgtataaagccaggcgaaggccgaaaatacatagcccatttccgctttggtaatgccgaactcttcctgaatatgggcggaagccacggccaggttggcgcggtcgacataacaaatgactaccgtaataaagatcatcaccagcgtcagataacgccgacgccccggctttgctgcattaacgggaatatccatagcgagctttctccagattttgggcatagcgaagccgctcaccatgccctgtaatttacagagggttatatttttgtattgctgttttagtgcccgatgaggggcttacgtggcaggaattaccactctgctacgctgttatcttcatgacgccagagcggattacgccagtccggggcatttttactgaactcaatcactttagcttcgtcgatttccacgcctaagcccggtttcgttaacggtttaaagaagccgccgaccatgctgaagtcttctttgtttttcacaaagtcgagtaactccgcgcctttgttgtaatgaattcccatactttgttcctgaagtacggcgttataggaaacaaagtcgatatgcaggcaagccgccagtgcaatcggtccgagcggacagtgcggcgcaagggtcacgtcataggcttctgccattccggcgattttgtagcattcggtaataccgcccgcgtgggagagatccggttgcagaatcgaaataccacctgcctccagcacgcgtttaaaatcgaagcgtgagaacatgcgttcacccgccgccagtggaatatgcgtttgtgccgccagtttcgggtagtattcggcttgttccgccagcaccggctcctcaataaacagcgggcgatacggctccagttctttaatcagcactttcgccatcggcgcgctgacgcgaccgtggaaatcaagaccaaactcaatctgattgccaaaagcttcacgaatttgtgccacggtgttaaccgccgcatctaccgcgcgggagttatcaattagccccagttcttcacaaccgttcagtttgaaggtatcgaagccgatttgccgtagcgttttaatgccgtcgataacatccgccggacgatcgccgccaacccaactgtaggctttaattttgtcgcgaaccaggccgcccatcagttgccagaccggcgcattcagcactttacctttgatatcccataacgcctggtcaatcccggcgatggcgctcatcaggatcggaccgccgcgatagaatccggcgcgatacatcacttgccataagtcattgatgcgcgatggatcctgaccaatcaaatagtcacccagctcgtgaactgccgcttccaccgtacgggcgcggccttcgatcacgggctcgccccaaccgaccacgccttcatcggtttcaattttcaggaacatccagcggggaggtaaacgatacgtggtaattttggtgattttcattgcacctgcctctcgatacgccttaacaaatgctgctgcctgctgcgcggtgcgctctacggattgcccggcgcgatagagatcgctgcctaagcccgcccctgcacaacctgcgtctatccactgcgccaggttttctgcgtcacgccgccaacggcaaagactgcgatgtccgatggcaataccgcttttaacgctttgatgtattgcggaccaaaagccgatgacggaaatattttcagcgcctgcggcgcccgcttcgagcgcggtaaaggcttcggtcgccgtcgcgcagccggggcagacggtcatgccgtagcccaccgcacggcggatcacttcactatggatattgggcgtaacgatgagctgacagcccatcctggcgagcgcatcgacctgttcaggtttcagtaccgtacctgcgccaatcaacgccttgtcgccgtacgcatcaacgatggcgggaatgctttgctcccattgtggggaattcagcgggatttcaaccgcgtcgaacccggcgtcaatcaccgcgccaacatgcgccaggcctcgtcgggcgtaataccgcgcaaaatggcgatcagcgggagtttagtttgccactgcatgagcgatgctccttataccagcctgaaatgccgtgtcgcccgccaccgccgtcacgtcgcaacccatcgcctgaaaggcttgctggtagcgcgcggtcagcgatgttccggcgacaagggtgatggcgtgttgatgggccacatagtcgcgcatactggcgacctctgcgccaatcaacaaaccagagagaaattcgctgacctgttcgcggggaagtgttcccagcacatgcgaggcgcgaacttcaaaaagctgcggcaatatggcgggcgtattaagaccacgctcaaggccagctgtgaaggcatcggcagagttttcctgcggcggcaaacctgcgccaatcaatgagtgatttaacagtaaatgatgtaattcaccggtcatcacggtgcgaaaatcgttgatttgctggctatcggcctgcacccatttgcaatgggttccgggcatgacataaagagaggaaggagccagagctcgcgcgccgatcaattgtgtttcttcgccgcgcatcacattgtggttatcgtcatgagagacacataatccgggaataatccagatattgtcgccaactgacgttaattgttcgccaatagacgaaaaacaggcaggaacagataaatacggtgcaactttccagccgacgttgctgccaaccattcctgccattaccactggcgttttctcttcacgccagtcggtcgtgacttctgctaacaccgcagccggagattttccgttcaggcgcgtgacgcctgcttctgattgcctgctctccaggcagtggtcgccctgataaagccaggcgcgcagattggtcgatccccagtcaattgcgatgtagcgagctgtcatgtgatttcctttaaccttcgtgtcgagctggcgatcatggtaagcgccgcctgctctgccgcatcgccgtcctgatgtcgtatcgcatcgaacagcgccttatgttcctggagcgtttgcggcatgttggcctcatcgcccatccaggttcgttcaaaaaccgcccgcctgcagcgaactgatcgcaatgctaagttgctgtaacaccgggttatgcaccgactgcagcaccgcctcgtggtagcgaatatccgcttcgttaaacgcttcgcggtcctgattgttggcaatcatctcgttcagcgccgattcaatctgcgccagatcgctggaagtcgcgcgctctgcccgcaacggcaatcgccggttccaccagatttcgcacttcgctcatggcactgataagccgtgggtcgtagtcattttccagcacccattgcagtacgtcagtgtcgaggtaattccactggttacgcggtgccacaaacgccccgcgataacgtttcatttcaatcagccgcttcgccatcagcgaacggaacacctcacggatgatgttgcgcgaggttgcaaactcctcacagagttccgcctcagccggaagcggcgagcctggcacgtatttgccgtgaacgatctgtttacccagcgtaatgacaatgcgatcggttttattgagagtcatggagagtccttgtgctctgtatgttcttctctactttaccccgatcgatgcataacgcggcaactttgtagtaccagcgtgatgacgttcgcgtttgccgtgcgtgtaatgtagtacaaacttatattgttgtactacaatttagatcacaaaaagaacaatgcataaaaaaatgacatgcgtcgggcagaaatctgaaaagggatatcaggcgctaaacaggagggaaagaagagtatgctttcaacggcttagctactcgtttaaaggattaatcatgagttgaatttaagggattttttaaggctgccggtttattcccactggcgctgatgctttcaggctgtatctcgtatgctctggtttcccataccgcaaagggtagttcaggaaagtatcaatcgcagtcagacaccatcactgggctatcgcaggcaaaagatagtaatggaacaaaaggctatgtttttgtaggggaatcgctggattaccttatcactgatggtgccgatgacatcgttaagatgctcaatgatccagcacttaaccggcacaatattcaggttgccgatgacgcaagatttgttttaaatgcggggaaaaagaaatttaccggcacaatatcgctttactactactggaataacgaagaagaaaaggcactggcaacgcattatggttttgcctgtggtgttcaacactgtaccaggtcactggaaaacctaaaaggcacaatccatgagaaaaataaaaacatggattactcaaaggtgatggcgttctaccatccatttaaagtgcgattttatgaatactattcacccagaggcattccgggatggtgtttccgcagcattactgccagtgactgttacgctggacatcattactgcaccgctgcaatttctggttgtatatgcagtaaaccaataatcagtaagcgggcaaacgcgtttatgctgtttgcccgcccacagattaattcagcacatacttctcaatagcaaacgccacgccatcttcaaggttagatttggtgacaaagttcgccacttctttcactgaaggaatagcgttatccatcgccacaccgacgcctgcatattcaatcattgcgatatcgttttcctgatcgccaatcgccatgatttcttccggtttaatacctaacacgtcggccagtgatttcacccccgtacctttgttaacgcgtttatcgaggatttcgaggaagtacggcgcacttttcagcacggtatatttctctttcacttcctgcggaatacgcgcgatagcctggtcgaggatggcgggttcatcaatcatcatcactttcaggaactgggtattggggtccattttctccgcttcgcagaacaccagcggaatggtggcaacgaaggattcatgcaccgtgtagtagctgatatcacggttggcggtgtacagcgtggtgcggtccagggcgtggaaatgagaaccgacttcgcgagagagtttttccaggaacgatagtcgtcatagctgagagcagtttgcgccacggtgctaccatcagcggccttctgtaccagcgcgccgttataagtaatgcagtagtcgcccggctgttccatatgcagctctttcaggtagttgtgcacacctgcatacgggcgacccgtcgttagcacgacattcacgccacgggcgcgagctgcggcaatcgcatttttaacggcgggtgaaatggtgtgatcgggcagcagaagggtgccatccatatcgatagcaatgagtttaatagccatgagttccccaggtagattggttcctgacccatgctaacgcgattccgctcaaaaatcagtacaacacccgagggaaaagggggatgcaacgcgcgttgcgtgctccctttttgcttagcggaagagtttccctttcagcagttccatgcctgcggaaagcagatcgttattggcttgtggtgacacttcaccttgcggtgagagcgcatcaataatcttcggcaattgttctgccagtaaactggaagctgtactggtatccacgccaagtttttgcccgagatcggacaccgcatttgtgccgagcgccgattccagttgctcgccactaaccgattgattgccctgttgattactcagccaggttgagagaatggcccctaagccgccactttgcagtttttccagcagcacctgaatgccgccctgctcctcaacccaacttaaaatagcctgatatttccccgcatcgcctttcagaaaggcaccgacaacttcatcaaaaagccccatgataatcacctgtaaagcgttacgtgttgacccaaaaagtatagatttgcgggatgataattgcggattgcagaaataaaaagggcggagatgatctccgcccttttcttatagcttcttgccggatgcggcgtgaacgccttatccggcctacaaaatcatgaaaattcaatacattgcaagattttcgtaggcctgataagcgtagcgcatcaggcacgctcgcatggttagcgccattaaatatcgatattcgccgctttcagggcgttctcttcaataaacgcacggcgcggttcaacggcgtcgcccatcagcgtggtgaacaactggtcggcagcaatcgcatctttaacggtaacgcgcagcatacgacgactttccgggtccatagtggtttcccacagctgttccgggttcatctcgcccagacctttataacgctggatggagaggccgcgacgggactctttcaccagccagtccagcgcctgctcgaagctggctaccggctgacgacgctcgccacgttcgataaacgcatcttcttccagcaagccacgcagtttctcacccagcgtgcagatacgacgatattcgccaccggtgataaactcgtgatccagcggatagtcagtatccacaccgtgggtacgcacgcgaacaatcggctcgaacaggttttgctcagcattggtgtgaacatcaaacttccactggctgccgtgctgttctttgtcgttcagttcgctgaccagcgcgttcacccagcgggtaacggtctgctcatcagaaaggtcagcttccgtcaacgtcggctgatagataagctctttcagcattgctttcggataacgacgctccatacgattgatcattttctgcgtcgcgttgtactcagataccagtttctctaacgcttcgccagccaatgccggtgcactggcgttggtgtgcagcgttgcgccgtccagcgcgatagagatctggtactgatccatcgcttcgtcgtctttaatgtactgttcctgcttgcctttcttcactttgtacagcggcggctgagcgatgtagacgtgaccgcgttcaacgatttccggcatctgacgatagaagaaggtcaacagcagcgtacgaatgtgcgagccgtcgacgtccgcatcggtcatgatgatgatgctgtgataacgcagtttgtccgggttgtactcgtcacgaccgataccacagccaagcgcggtgataagcgtcgccacttcctgagaagagagcatcttatcgaagcgcgctttctcgacgttgaggattttacccttcagcggcagaatcgcctggttcttgcggttacgcccctgcttcgcagagccgcccgcggagtccccttccaccaggtacagttcggaaagcgccggatcgcgttcctggcagtctgccagtttgcccggcaggcccgctaagtcgagcgcacctttacggcgggtcatttcacgcgcgcgacgcggcgcttcacgggcacgggcagcatcgataattttgccaaccacgattttcgcgtcggttgggttttccagcaggtattctgccagcagttcgttcatctgctgttcaaccgccgatttcacctcagaagaaaccagtttgtctttggtctgggaggagaatttcgggtccggcactttcacggaaacgaccgcaatcaggccttcacgcgcatcgtcaccggtggcgctgactttggcttttttgctgtagccttctttgtccatgtaggcgttcagggtacgggtcatcgccgcacggaagcctgccaggtgagtaccgccgtcacgctgcggaatgttgttggtaaagcagtagatgttttcctggaagccatcgttccactgcaacgccacttcgacgccaataccgtctttttcagtggagaagtagaagatattcgggtggatcggcgttttgttcttgttcagatattcaacgaacgccttgatgccgccttcatagtggaagtggtcttctttgccgtcgcgcttgtcgcgcagacgaatggaaacgccggagttgaggaacgacaactcacgcagacgtttcgccagaatttcatattcgaactcggtcacattggtgaaggtttcgaggctgggccagaaacgcaccatggtgccggttttttcagtctcgccggtaaccgccagcggggcctgcggtacaccgtgttcgtagatctgacggtgaattttaccctcgcgctggataaccagctccagtttttgcgacagggcgtttactaccgaaacaccaacgccgtgcagaccgccggacactttataggagttatcgtcaaatttaccgcctgcgtgcagaacggtcatgatcacttccgccgccgatacgccctcttccgggtgaataccggtcggaatgccgcgcccgtcatcctgtacagagacagagttatcggcgtgaatggtgacgataatttctttacagtgacccgcgagcgcttcgtcgatagcgttatctaccacctcgaataccatgtggtgcagaccggtgccgtcatccgtgtcgccgatatacatacccgggcgcttacgcaccgcatccagccctttcaggactttgatactggaggagtcataagaattcgacatcaacgtttctcgctcatttatacttgggttaatccgttattttacccttttccacggtaaacatcttcgaattttcgtccgacatgtctataacgtgttcagcactgatcgcgctgacaaagacctgtgattgcgtcgcttttaagcggctggcaagcagcccgcgacgctcatcatcaagctcagaggcaaaatcatctatcaggtagagacaccgccgcccgctttcacgggtgaggaactctccttgcgccagacgtaaggcgcacatcaacagcttaagctgcccacgcgataaggtatcttccaccggcgcaccgtcggcgcgaatgcgtaagtccgctttgtgcgggccgtgcgcggtgtaggttagctggcgatcgcgttcaaaattacgttccagcacctcagcatattctgtctctttctcccagccgcgctggaaagagaaagtcagagaaaactcagggagaaattgcttacaggtatcagccatatcggccgcgataccggcgctatactccgcgcgccaggtgctgatttgctccgccagcgggatcagctctttatcccacgggcgtagctgttcgtaacgtgtcacctggcgcagcgccgcattgcgctgcttgagcaatcgcttgagattgctccaggcggtgaaaaatccgggttcgttgtgaaagcatccccagtcgaggaatgctcttctgtatttggggccgccgttgagtaaagtaaacccttctggcgttatcaactgcattggcatcaggtgcgccagttccgcgaccttatgcccgtctgtaccgtcgatgcggactttgctgtcgccctgtttgtctttggttaagccaatcgctgtctcgcgctcttcgccctgtaatcgcccgtggagaacaaacgcctcctgctcatggcgaatgacgcgaccaatctgcaaactgcgaaacgcccgaccatggccgagcgtatagatggcttccagcacgctggttttgccactgccgttggcacctaccagaaagttaaagccgggagataaggcgagatccgcggtttcaatgttgcggaaatcgcggatcaacaagcgggtgagggacattacagtctcattggcatgacaacataagccgcgctctggctggccgcatcttcaatctgcacgctggaaaccgaatcggtcagcatcatgcggacgttttcgcatttcagcgcgttcagaacatccagcacataactgacgttgaagccgatttccatctccgcaccgctataggtaacgtcgaggatctcttccgcttcttcctgttccgggttgttggcggtgattttcagctggttttcgctgacataaagacgtacgccgcggaatttctcgttagagagaatcgccgcgcgagcaaacgcctgcttgagcagatcgcagccagcttccagatgtttgtccgggttcttcggcagaacgcggcgataatccgggaagcgaccatccaccagtttggaggtgaagataaagtcgccaacgtgggcgcgaatgttgttgctgccaatctgtacgcgcagcggattgtcgccgccgtcgagcatacgcatcagttcaatcacgcctttacgcggtacgatcaccgaatggcttggcaaagattgaccaattggcattgaacagaccgccagacggtggccgtcggttgccacggtgcgcagttcttcaccttcggtttcaaacagcataccatttaagtaatagcgaacgtcctgatgcgccatagaaaactgggtcgcttcaatcagacgcttcatcgttgcctgcggcagggtaaattcgacttcactctgccagtcatcgaggttcgggaaatccgccgctggcagggtagacagcgaaaaacggctacgcccggagcgtaccagcatccgttcaccttccagctgcacggcaatttccgcgccttcaggcagaccacggcagatatcaaagaatttgcgcgccggaacggtcgtcgctcctggctcgtgtggctgaaccagcgcaacacgtgccaccatttccatctcgagatcagtaccggtcagcgacaacgtaccgtcagcaacctgtaacagcagattaccgagaatcggtagcgtaggacgaccacctaacggaccgctcacctgttgtagcggttttaataaatgctcacgttctacggtaaatttcataggtttacgatgacaatgttctgattaaatttgaaaaatcttctttgatatcgtggctctcttcacgcaactgctcgatcttacggcaggcatgaagcaccgtcgtgtggtcacggccaccaaacgcatcgccaatctccggcagactgtggttagtcagctctttcgccagcgccatcgccatctggccgggacccacccgagcgggatcgacgcttggaaaggagatccgcgactttgatcttgtagtactccgccaccgtcttctgaatattgtcgatggtgaccagtttttcctgcaatgccagcaagtcgcgcagcgcctcacgcacgaagtcgatggtgatcgcccgtccggtaaagttggcattggcaatgacgcggttcagcgccccttccagctcacgtacgttagatcgtagacgcttggcgataaagaacgccacttcgcccggcaaacgaatgtcgttttcgtcggcctttttcatcaggatcgccacacgggtttccagctctggcggttcgatcgccacagtcagtccccaaccgaagcgggatttcaaacgatcctcaacgccgttgatctctttcggatagcgatccgaggtgagaatgatctgttgattaccttccagcaggggttgaaggtgtggaaaaactcttcctgagatcgttctttattagcaaaaaactgaatatcgtcgatcagcagtgcatctacggaacggtagtagcgtttaaactcttcgatcgcgttgttttgcagggctttaaccatgtcctgaacaaagcgctcggagtgcatataaaccactttggcattcggcttgcgcgccataatgccgttacccaccgcatgcagcaggtgagttttacccagacccgtgccgccataaaggaacaacgggttataggcaccgccagggttatccgccacctggcgagccgccgcgcgcgccagttggttagatttaccttcaacgaagttatcaaacgtgtgtttgacgtttacgttagaacgataggtcggttctgccggggccgggacgttatcccaacctgagcgcgtagaaggcgcagcacgttgcggctgcgtttgcgccacctgtgcaggggccgcgacgttgctcgtcactgccgcttgtggcgtttgcgtcaccggtttggtgccgacttcaaaacgcagctgtggggcatccgctccgcagaaactggttagcagtccattgatattattaaggtacttgtcccgtacccaatcgaggacaaaacggtttggcgcgtacagggccagcgtgttatcgctcagttccgcctgcaatgggcgtatccacatactgaattctgtggctggtaactcatcctgcaatcgggcaagacactgctgccaaagcgaaagtgacacggcggactccactcgaacaaaagtcgataatgactaaggctgaaacattcatgattgttgacgtacgtcgaaaagaccctgcttgagggtgacgcacgaaccgctgtctgcggttatatgcccgagtcaagatcctgcaaaacgatcgggaccgcggatcatagcctaaactgcgcaagagatcttctgtttctcacagattttcccgatttatccacaggactttccagaactcgctaagtgtaaacgatcctgccgcgaggcgggcacgatttacgccgcatattggaaaatttaatgaccatagacaaaaattggcttaatcgatctaataaagatccaggacgatccttgcgctttacccatcagcccgtataatcctccacccggcgcgccatgctggtttccactggtgtgaggtcgtacattttccctgcgaaaaggtgcggaaaagcgcggtaaataaggaaagagaattgactccggagtgtacaattattacaatccggcctctttaatcacccatggcttcggtgtccatcgtttcatttttcggcggatatccaataaagccattgaatttattcaagtttaggtagaaatcgccatgaaacgcacttttcaaccgtctgtactgaagcgcaaccgttctcacggcttccgtgctcgtatggctactaaaaatggtcgtcaggttctggcacgtcgtcgtgctaaaggccgcgctcgtctgaccgtttctaagtaataaagctaacccctgagtggttaagctcgcatttcccagggagttacgcttgttaactcccagtcaattcacattcgtcttccagcagccacaacgggctggcacgccgcaaattaccattctcggccgcctgaattcgctggggcatccccgtatcggtcttacagtcgccaagaaaaacgttcgacgcgcccatgaacgcaatcggattaaacgtctgacgcgtgaaagcttccgtctgcgccaacatgaactcccggctatggatttcgtggtggtggcgaaaaaaggggttgccgacctcgataaccgtgctctctcggaagcgttggaaaaattatggcgccgccactgtcgcctggctcgcgggtcctgatagccctcattcgggtctatcaacgcctgattagtccgctactcgggccgcattgtcgtttcactccaacctgttcaagctacggaattgaggcattgcgcaggtttggagtgataaaaggcagttggttgacggtgaaacgcgtattaaaatgccaccctttacaccctggtggtgacgatcccgtcccgcccggaccatttgataccagagaacactaacgatggattcgcaacgcaatcttttagtcatcgctttgctgttcgtgtctttcatgatctggcaagcctgggagcaggataaaaacccgcaacctcaggcccaacagaccacgcagacaacgaccaccgcagcgggtagcgccgccgaccagggcgtaccggccagtggccaggggaaactgatctcggttaagaccgacgtgcttgatctgaccatcaacacccgtggtggtgatgttgagcaagctctgctgcctgcttacccgaaagagctgaactctacccagccgttccagctgttggaaacttcaccgcagtttatttatcaggcacagagcggtctgaccggtcgtgatggcccggataacccggctaacggcccgcgtccgctgtataacgttgaaaaagacgcttatgtgctggctgaaggtcaaaacgaactgcaggtgccgatgacgtataccgacgcggcaggcaacacgtttaccaaaacgtttgtcctgaaacgtggtgattacgctgtcaacgtcaactacaacgtgcagaacgctggcgagaaaccgctggaaatctcctcgtttggtcagttgaagcaatccatcactctgccaccgcatctcgataccggaagcagcaacttcgcactgcacaccttccgtggcgcggcgtactccacgcctgacgagaagtatgagaaatacaagttcgataccattgccgataacgaaaacctgaacatctcttcgaaaggtggttgggtggcgatgctgcaacagtatttcgcgacggcgtggatcccgcataacgacggtaccaacaacttctataccgctaatctgggtaacggcatcgccgctatcggctataaatctcagccggtactggttcagcctggtcagactggcgcgatgaacagcaccctgtgggttggcccggaaatccaggacaaaatggcagctgttgctccgcacctggatctgaccgttgattacggttggttgtggttcatctctcagccgctgttcaaactgctgaaatggatccatagctttgtgggtaactggggcttctccattatcatcatcacctttatcgttcgtggcatcatgtacccgctgaccaaagcgcagtacacctccatggcgaagatgcgtatgttgcagccgaagattcaggcaatgcgtgagcgtctgggcgatgacaaacagcgtatcagccaggaaatgatggcgctgtacaaagctgagaaggttaacccgctgggcggctgcttcccgctgctgatccagatgccaatcttcctggcgttgtactacatgctgatgggttccgttgaactgcgtcaggcaccgtttgcactgtggatccacgacctgtcggcacaggacccgtactacatcctgccgatcctgatgggcgtaacgatgttcttcattcagaagatgtcgccgaccacagtgaccgacccgatgcagcagaagatcatgacctttatgccggtcatcttcaccgtgttcttcctgtggttcccgtcaggtctggtgctgtactatatcgtcagcaacctggtaaccattattcagcagcagctgatttaccgtggtctggaaaaacgtggcctgcatagccgcgagaagaaaaaatcctgattcggtgagttttcgctaaaataagggcggtcagttgaccgccttttttcttttcgtagggcggataagcaccgccgatccgccacacaaagcaacaggaacatcatgagcgataatgacactatcgtagcccaggccacgcctccgggacgtggcggcgttggcatcctgcgcatctccggcttcaaagcccgtgaagttgccgaaaccgtgctgggtaaactgcctaagccgcgctacgccgattatcttccgtttaaagacgccgacggcagcgtgctcgatcaggggattgcgctatggttccctggcccgaactcgttcaccggcgaagatgtgctggaactgcaaggtcatggcggtccggtgatcctcgacctgctgttaaaacgcattctgaccattcccggcctgcggattgctcgccctggtgagttttccgaacgcgcgtttcttaacgataaacttgacttagcccaggccgaggcgattgccgatcttatcgacgccagttcggaacaggcggcccgttcggcacttaactcgctgcaaggcgcattctccgcacgggttaatcatctggtagaagccctcacccacttgcgcatttacgtcgaagcggcaattgatttccccgatgaagagatcgatttcctctccgacggaaaaattgaagcccagctcaatgacgttattgccgatcttgatgcagtgcgtgctgaagcacgtcagggtagtttgttgcgcgaagggatgaaagtggtgattgccggacgtcctaacgccggtaaatcgagcctgttaaacgcgctggcggggcgtgaagcggcaatcgtaaccgatatcgccggaactacgcgtgacgtgctgcgtgtatccacattgacggaatgccgctgcatatcatcgataccgccgggctacgtgaagccagtgacgaagtagaacgtattggtatcgagcgcgcgtggcaggaaattgaacaggccgaccgcgtgctgtttatggtcgatggcaccacaacagacgccgtggatccggcagagatctggccggaatttattgcccgtctgccagcgaaactgccgatcaccgtggtgcgcaataaagccgatatcaccggcgaaacgctgggaatgagtgaagtgaacggtcacgcgttaattcgtctctcggcaaggactggtgaaggcgtggacgtgctgcgtaaccatctcaaacagagcatgggctttgacaccaacatggaaggcggcttcctggcgcgtcgtcgccacctacaggcgctggaacaggcagcggaacatctacaacagggcaaagcgcaactgttgggagcctgggcaggtgaactgctggcggaagagttgcgtctggcacagcagaacttaagcgaaatcaccggggaatttacttcagacgacctgctggggcggattttctccagcttctgtattggtaagtaaccgcgcttacgaagccgcattctgactgtcagatgcgcgtcgcttcattgttaccactcctgttattcctcaaccctttttttaaacattaaaattcttacgtaatttataatctttaaaaaaagcatttaatattgctccccgaacgattgtgattcgattcacatttaaacaatttcagaatagacaaaaactctgagtgtaataatgtagcctcgtgtcttgcgaggataagtgcattatgaatatcttacatatatgtgtgacctcaaaatggttcaatattgacaacaaaattgtcgatcaccgcccttgatttgcccttctgtagccatcaccagagccaaaccgattagattcaatgtgatctatttgtttgctatatcttaattttgccttttgcaaaggtcatctctcgtttatttacttgttttagtaaatgatggtgcttgcatatatatctggcgaattaatcggtatagcagatgtaatattcacagggatcactgtaattaaaataaatgaaggattatgtaatggaaaactttaaacatctccctgaaccgttccgcattcgtgttattgagccagtaaaacgtaccactcgcgcttatcgtgaagaggcaattattaaatccggtatgaacccgttcctgctggatagcgaagatgtttttatcgatttactgaccgacagcggcaccggggcggtgacgcagagcatgcaggctgcgatgatgcgcggcgacgaagcctacagcggcagtcgtagctactatgcgttagccgagtcagtgaaaaatatctttggttatcaatacaccattccgactcaccagggccgtggcgcagagcaaatctatattccggtactgattaaaaaacgcgagcaggaaaaaggcctggatcgcagcaaaatggtggcgttctctaactatttctttgataccacgcagggccatagccagatcaacggctgtaccgtgcgtaacgtctatatcaaagaagccttcgatacgggcgtgcgttacgactttaaaggcaactttgaccttgagggattagaacgcggtattgaagaagttggtccgaataacgtgccgtatatcgttgcaaccatcaccagtaactctgcaggtggtcagccggtttcactggcaaacttaaaagcgatgtacagcatcgcgaagaaatacgatattccggtggtaatggactccgcgcgctttgctgaaaacgcctatttcatcaagcagcgtgaagcagaatacaaagactggaccatcgagcagatcacccgcgaaacctacaaatatgccgatatgctggcgatgtccgccaagaaagatgcgatggtgccgatgggcggcctgctgtgcatgaaagacgacagcttctttgatgtgtacaccgagtgcagaaccctttgcgtggtgcaggaaggcttcccgacatatggcggcctggaaggcggcgcgatggagcgtctggcggtaggtctgtatgacggcatgaatctcgactggctggcttatcgtatcgcgcaggtacagtatctggtcgatggtctggaagagattggcgttgtctgccagcaggcgggcggtcacgcggcattcgttgatgccggtaaactgttgccgcatatcccggcagaccagttcccggcacaggcgctggcctgcgagctgtataaagtcgccggtatccgtgcggtagaaattggctctttcctgttaggccgcgatccgaaaaccggtaaacaactgccatgcccggctgaactgctgcgtttaaccattccgcgcgcaacatatactcaaacacatatggacttcattattgaagcctttaaacatgtgaaagagaacgcggcgaatattaaaggattaacctttacgtacgaaccgaaagtattgcgtcacttcaccgcaaaacttaaagaagtttaattaatactacagagtggctataaggatgttagccactctcttaccctacatcctcaataacaaaaatagccttcctctaaaggtggcatcatgactgatcaagctgaaaaaaagcactctgcattttggggtgttatggttatagcaggtacagtaattggtggaggtatgtttgctttacctgttgatcttgccggtgcctggtttttctggggtgcctttatccttatcattgcctggttttcaatgcttcattccgggttattgttattagaagcaaatttaaattatcccgtcggctccagttttaacaccatcaccaaagatttaatcggtaacacctggaacattatcagcggtattaccgttgccttcgttctctatatcctcacttatgcctatatctctgctaatggtgcgatcattagtgaaacgatatcaatgaatttgggttatcacgctaatccacgtattgtcgggatctgcacagccattttcgttgccagcgtattgtggttaagttcgttagccgccagtcgtattacctcattgttcctcgggctgaagattatctcctttgtgatcgtgtttggttcttttttcttccaggtcgattactccattctgcgcgacgccaccagctccactgcgggaacgtcttacttcccgtatatctttatggctttgccggtgtgtctggcgtcatttggtttccacggcaatattcccagcctgattatttgctatggaaaacgcaaagataagttaatcaaaagcgtggtatttggttcgctgctggcgctggtgatttatctcttctggctctattgcaccatggggaatattccgcgagaaagctttaaggcgattatctcctcaggcggcaacgttgattcgctggtgaaatcgttcctcggcaccaaacagcacggcattatcgagttttgcctgctggtgttctctaacttagctgttgccagttcgttctttggtgtcacgctggggttgttcgattatctggcggacctgtttaagattgataactcccacggcgggcgtttcaaaaccgtgctgttaaccttcctgccacctgcgttgttgtatctgatcttcccgaacggctttatttacgggatcggcggtgccgggctgtgcgccaccatctgggcggtcattattcccgcagtgcttgcaatcaaagctcgcaagaagtttcccaatcagatgttcacggtctggggcggcaatcttattccggcgattgtcattctctttggtataaccgtgattttgtgctggttcggcaacgtctttaacgtgttacctaaatttggctaaatccttcaagaagccagccattcgctggcttcttgcctctcaggaaatcacttatgtccaaatggcaactcgcctgatcctccttcaccacgtatgctttgcgtcaccttactatcaggacgctttagcccatgtcccgctttttgatttgtagttttgccctggttttactttatcccgccgggattgatatgtacctcgttggtttaccgcgcatcgccgccgatctcaatgccagcgaagcgcagttgcatattgcgttctccgtatatctggcggggatggcagctgcgatgttatttgccggtaaagtggccgatcgttcagggagaaagccggtcgccatacccggcgcggcgctatttattattgcctcggtgttctgttcactggctgaaaccagcacgttatttcttgcaggccgatttctacaggggttgggcgcaggctgttgttacgtagtggcgttcgctattttgcgcgacacgctggatgatcgacgtcgggctaaagtgctgtcattactcaacggtattacctgcatcattccggtgttagcgccagtgctcggacatctgattatgcttaaattcccgtggcagagtctgttctgggcgatggcaatgatgggcatcgcggtactgatgttgtctttgtttattttaaaagaaacgcgcccagcggcccccgcagcttcggataaaccacgagaaaatagcgagtcgctgcttaaccgttttttcctcagccgtgttgttatcaccaccctcagcgtttcggtgatcctcactttcgtcaacacgtcaccggtattgctgatggaaatcatggggtttgagcgcggtgaatacgccaccattatggcgctgaccgctggcgtcagcatgaccgtttcattctccacgccatttgcgctgggaatttttaagccacgtacgttgatgatcacctcgcaggtgttattcctggcggcggggatcactcttgccgtttcaccttcccatgcggtttctctgtttggtatcacgctgatttgcgccggtttctcggtaggttttggtgtggcgatgagtcaggcgttagggccgttttcattacgcgcgggcgtagccagctcgaccttaggtattgcgcaggtttgcggttcgtcactgtggatttggctggcagcggtggttggtatcggcgcatggaatatgctgatcgggattctgattgcctgtagcatagtgagcctgttgctgattatgttcgtcgcgcctggacgccccgttgccgctcatgaagaaatccatcaccacgcttgatctcaatctgctgctttgtctgcaactgctgatgcaggagcgcagcgtaaccaaagcggcgaagcggataaacgtgacaccttcggcggtgagtaagtcgctggcaaagttaagagcgtggtttgacgacccgctctttgtgaactcaccgctgggtctgtcgcccacaccgctgatggtcagcatggagcaaaatctggcggagtggatgcaaatgagcaacctgctgctggataaaccgcaccaccagacaccgcgcggcctgaagtttgagctggcggcggaatcaccgctgatgatgatcatgcttaatgcgctgtcgaaacagatctaccaacgttacccgcaggcgaccatcaaattacgtaactgggattacgattccttagatgccattactcgtggtgaagtggatatcggtttttccggtcgcgaaagccatcctcgctcgcgggagctgttaagctcgctaccgttagccattgattatgaagtgctgtttagtgatgtgccctgcgtctggttacgcaaagatcatccggcactgcatcaaacgtggaatctggacaccttcttacgttatccgcatatcagcatttgctgggaacagagcgatacctgggcgctggacaatgtgttacaggagctgggacgcgaacgcacgattgctatgagcctgccggaattcgagcagtcactgtttatggcagcgcaacccgacaatctgctactggcgaccgcgccgcgctactgtcagtactacaatcaactccatcaactgccgttggttgctcttcctctcccgtttgacgaaagccagcaaaaaaagctggaagttccttttaccctgctgtggcataaacggaacagccataatccgaagatcgtctggttacgggaaaccattaaaaacctttacgcgtcgatggcataaccgaatcgtatgaaacgcgacccaatttcacaataaaatgtaaaaaagttgtaataagcttgtctgaatcgaacttttagccgctttagtctgtccatcattccagtaaatgattactcttgtattcataatggaccattaagcatggagcgaaaaatggcgactcactttgcccgagggattttaacggaaggacatctgatttctgttcgtctcccctcccagtgtcatcaagaagcccgaaacattccccctcatcgtcaaagccgttttctggcgtccagaggtttactcgcagaactgatgttcatgctgtatggcattggcgaattgccggaaatcgtcaccctgccgaaaggtaaaccggttttcagtgataaaaatttgccttcgttttccatttcctatgccgggaatatggttggcgtggcgttaacaaccgaaggtgaatgtggcctcgatatggaactacagcgtgcgacgcgcgggtttcatagcccacacgcgcccgataaccacaccttttccagcaatgaatcgctatggatcagtaaacaaaacgatcctaacgaagcgcgggcgcagctcatcacgctgcgccgaagcgtgctaaaactaaccggtgatgttttgaatgacgatccgcgcgatctgcagctgctgcccattgccggacgcctgaaatgtgctcatgtaaatcatgtagaagcgttatgcgacgcggaagacgtgctggtgtggtccgtggcggtcacgcccacgattgaaaagctcagtgtctgggagttagatggcaaacacggctggaaaagcctgccggatattcacagccgcgccaacaatcctaccagccggatgatgcgttttgcccaactctctaccgtgaaggctttttcgccaaattgatagacaaccacaggagtcatcatgtctgaaaaattgcaggtggttacgttactggggagcctgcgcaaaggctcatttaatggcatggttgcacgtaccctgccgaaaattgctccggcgagcatggaagtcaatgcgttaccatccattgccgacattcccttgtatgacgctgacgtacagcaggaagaaggttttccagcaacggttgaagctctggcggaacagatccgtcaggctgacggtgtggtgatcgtcacgccggaatataactactcggtaccgggtgggctgaaaaatgccatcgactggctttcccgcctgccggatcaaccgctggccggtaaaccggtattgattcagaccagctcaatgggcgtgattggcggcgcgcgctgtcagtatcacctgcgccagattctggttttcctcgatgcaatggtgatgaacaagccggaatttatgggcggcgtgattcagaacaaagttgatccgcaaaccggagaagtgattgatcagggtacgctggaccacctgaccgggcaattgaccgcatttggtgagtttattcagcgagttaagatctaaataaaaaacccgccagcaatcatgcatggcgggtttttaacgcgctatcgattttagtgagcgtcgataaagacaatcttcaggataaacagcagcgcaacgatgattacgcacgggcttagatcacgcagacgtccggtaccgattttcatcacgcagtaggagataaagcccagcgcgataccttcggtaatcgagaagctgaacggcatcatcacggcggtaataaacgccggaacagattcagtaagatcctgccagttcacgcgtgccagactggaagtcatcagcacgccaacgtaaatcagcgcaccagctgcagcgtagcctggcaccatccccgccagcggcgacagaaagataaccagcaggaacagcagaccaacaaccactgccgtcagaccggtacgaccgccaaccgatacgccggaagaggactcaatataagccgtaacggaagaagtaccgataaacgaaccggtcacggaagagatactgtcgacatacagcgcctgcttcatgcgcgggaatttccccttctcatccgccagacctgctttatcggtcacgccaatcagcgtaccggaggagtcaaacaagttgaccaacatgaaagagaaaatcacccctgccagcccgaggttaaacgacccggctaaatctacatgacccacaactgtcattacgctcggcggcgcagaaacgatgccattgtagtgcacatcacccagcatccagcccagcagcgtcgtcaccacgatagaaaccagcaccgctgcgtgaatgttgcgcgaggccagaatagcaatgatgaagaagccgaggatacccagaagtacgctgtgagaagtcagattaccgatgctcaccagcgtttccgggttagcgacaatcacacctgcgtttttcagccccatcatgccaatgaacagaccgataccgctggtaatacccacacgcagactcaccggaatgttggctatcatccagtagcgaacgcggaaaatcgtcagtaacagcagacctatcgcgccccagaagattgcgcccatcccgacctgccacggcaagcccatcgcctgtacaacgacaaaagcgaagaacgcattcaggcccatagcgggtgccagtgcaactggcaggttagcaaacagtcccatcataatactgccgaatgcagcgatcagacaggtagtgacgaagacggcgctggtatccatgccagcaacgccaagaatttgcgggttaacaaaaacgatgtaaaccatcgtcaggaaggtggtaaaaccggcgatcacttcggtccgtgccgtcgtgccatgttcgcgcagtttaaacacgcgttccagcatcccctgaccagaagtctgggtggtatgttgatgactcattatctatttccgaacaaggagggaaaatccgtcgctatcgtataccaaaatgcgacaataggcgcgtttgtgagagacttttttattggatttacttatacggcaacgattgcgttgcgcaaatcggctctacgaaaacgttaaactgattaaaaaggaaaggcatgtcccggatagaagcggtatttttcgactgcgacggtacgctggtcgacagtgaagtcatttgctctcgcgcatatgtaacgatgtttcaggaatttggtattacgctcgatcctgaagaggtattcaaacgtttcaaaggtgtaaaactgtacgaaattatcgatattgtttcccttgaacatggtgttacgttagcgaaaacagaagctgaacacgtttaccgtgcagaagtcgctcggctgttcgattcagaactggaagccatcgaaggggctggagcgctcctgtcagcgatcactgcgccaatgtgtgtggtatctaacggcccaaataacaaaatgcagcattctatgggcaagctgaatatgttgcactacttcccggataaactgttcagcggctacgatattcagcgctggaagccagacccggcgttaatgttccatgcggcaaaagcgatgaatgtaaatgtagaaaactgcattctggttgatgactcagttgccggtgcacaatctggtatcgacgcaggtatggaagtgttctacttctgcgccgacccgcacaataagccgatcgttcacccgaaagtcaccacctttacccatctttcgcagttacctgaactgtggaaagcgcgtggttgggatattacggcatagttcttcacactcccttcacttaccccgcttaaattggcgctcaaaggtaagtaaagggagtttgatatgtctgtttcacgtcgggtaatacatcacggactttattttgcagttttaggaccgttaattggtgttctgtttcttgtcctctacatattcttcgcaaaagaaccgctggttctttgggtgataatacatccaatttttctcttattgtcgataactacgggagctattcctgcgttgttaaccggtgtaatggttgcctgtctgccggaaaagatcgggtcacagaaacgttatcgttgtctggctggtggcataggtggcgtcgttatcaccgagatctattgtgcagttattgtacatattaagggcatggcttcctcggagttgtttgaaaacattctttctggtgacagtctcgttgtccgcatcattcctgcattgctggcaggtgtggtgatgagcagaatcattacccgtctacccggattggatatttcatgtcctgaaacagactctttaagttaagcgggatactttatctttgggctactcaaaagcagacaggatgtttctatgactcaaaatatcaggccgttaccccaattcaaatatcatcccaagccactggaaacaggcgcatttgaacaggataaaaccgtagagtgcgattgctgtgaacaacagacgtcagtttattactcgggtcccttttattgcgttgatgaagttgaacatctctgtccgtggtgtattgcggacggttctgctgctgaaaagtttgcaggtagttttcaggatgatgccagcatagaaggtgttgaatttgagtatgatgaagaggacgaatttgccggtattaagaacacatatcctgatgaaatgctgaaagagttggttgaacgcacgccaggttatcatggatggcagcaggaattctggctcgcgcattgtggcgatttctgtgtttttatcggctatgtgggctggaatgatataaaagatcgcctcgatgaatttgccaaccttgaagaagattgtgagaatttcggtattagaaattctgatctagctaaatgcctgcaaaagggtggtcattgtcagggttatctcttccgctgtctccactgcggcaagctgagactgtggggtgatttttcgtagttatttaaataatgagaacaggccggagcgtaattcacacatccggccttatttcttaagcttaaccgagtgctaattctgcggcacggctttatcagcgattaccatcagcgaaggatgcagctgcaacacggaagctggaacatcttcggtaaccggaccttgcagaacatttttcagtgcctgcgctttacccgcgccgctgacaattatcagcaagtttttcgccgccatgatgcttttcggccccatcgtcacgtagctgtcaggcactaacgaaaagtcgccgcccaactcgccatgcgccacaatatcaaccatctctccctggatcgggaactccacggtttgctcatggaaatgggtcgtattcggcaaattgccacaaaaatgaccatctgcacctaatcccagcaccaccaaatccagtccgccttcacgcgccagtttctgatcatgctcgcggtagttatcaatagtgagcttctggatattctcttctttgatccccgcaggggtgaaaaacagattacgcagattggtaatcgttacgccttctccctctttgccgcgaaatggaatttcatcaaaattatagaaatagcagttatcgtaccagggcttacctttaaccagggtggtgaggtattcatacatgcctttgggcgtgctaccggcggtaattgccaggttaacacgacgcgtcttcgacatataaccaagcagatggtgtgcgcgacacggctcatttcctggtaatcttcggtaatgattaatttcatcttaatgccttattttatttaaataatttctgtacaaaggctgcataggctggtcgccagacatccatttcatggttcagacccggatattcctggtaatcaaagttaatttttttctgctcaagctcagttttcagcccggcgatatccttgccggttacgacatctttatcccccacaaccacagtaaaattacgtagttgctggttgatagctgccggatcgttcagtcgggccgcgacaccttcatccggtacggttgtcgtggtaacaccactgaatgtggccagccagccaaagctttccagatgattcattccggaaaccagcgcctggtacccgccttgtgaaagccctgccagcgcgcggccatcggcatctttacggacattaaaacgcttgctaatcagcgggataatatcgttcatcagttcgcgatctgccgctttagcattcagcggataaaagactttacgtctttcctgaggcacgaaatcttcgggaataatgcccttcgcatcggtttctgtatccgggatcaccaccagcatcggtttaattttcccttcagcaagcaggttatccatgatttgcgggatacgcccctgatcgatagcggaacgtccggtatcaccaaagccgtgatagaaatagagcactggcaaaggctcgcccatgccggtgtatcctggcggggtccagacatacatctgacgttcagattgcaatgcgttggagtggtaagttatggcgatcaaatcaccatgcgcaacagaacgcgtatccagataactgcctggcaccagaatcatactggagttaacctggcgctgaggattagtcattgcggtgcctgtatcaatgctgcgtacaccatcaacattgaaaaaatactcgtacaggttgcctttcaggataggtgtgcgccacgaccagactcctgcttcgtctttggtcatcgggtgaatattgtccggaaccggaacacccaccactacagagacattttttgccccaggggcaaagtagcgaaaggtcacgctgttatcggcattgacctgagtcacatactgtttcaccgggatagtgggtgccgggctggctggcatatccgctgctatggcccactgagcagaaataccgctggcaatagccagcgttaaagcagcaatttttatattcatcgtaatattcctttcattaagttccattaccaccagatttcagcctgggcaccgacagcaaactggtcgtctttattgtcttcaaaggtgaagccatccagttcgttttccagggctttgatatacgtggcgtagaaacgaatttccggacgcgaggtcaacatactggtattgactttaaaggtatggaagagcgtggttttataaccagactcattaaatttattactattcgcatctttgttttgctgggtgaaatagcccagttcaacacctgtctggttatattggtcccaaatataggccgggcgaacaaccgcacgaatagattcgaaatcagagtgggcgcctgtttcgtagctatatatatcgttaccgaaggagtaaacaatcgcgttagctacaatgaaatgatcgccaatataggcttcgccctgcgaagtcagacgtaccgctgttccgccggtgtgatcaccataataacgaccattaaaggtggtaaatggacttgcgccagcataacggccaaagttactggcgatagagttattcgcgaccaggaaggagaattcgttgaagccacctttatcaaatttctgcgttaaagatgtgccaaacatccaggtatctttccagtcataatacccgttattatcctgattatctttttccgatgcgctttcgtttgccgtgacataacgaccacttaccattaaggtggctttatcccataacgggatatctttatagcgtaaatcaatggtattggtattaatctgctgtttgttttgcaggctgcgatcgtaatcatcgacatcttcgcgaaccagcgcgatatcaattttacccggaccgactttccagttttccagacctacacccgctgcggcatcagtacgctgcgttttccagtcaagcatctggatttcaattttcggcgcaccgtgtttacccacccagaaatcagcctctggcgcaaagggcaggaaacctttggtggtaacgtacatatcggagaactgcatatagttctcgccaccggcgttatcgccaaaccagccggtagagtactgctgaccaacgttaccatccatcatcacaacggcatcaacccgtttgccgttttcgttgtagacacgttgttttaactgcaaatcaaaccagccggagtattcgttaccaaagcggcccagagaaccaatcgcccatgatttaggtgaaccatgagaggcggtcccccaaccagaacggtaatagccgttgtaactaaagccaatttcatctttcacaaatttactgaaatctttcagagtcatggaagaataaatcgagcctgtctcactggcatttttctcttcatttttgaccagtacagcatcaggttttgcggcactactggtcgggaacggattggcggcatacccttgatcattcgtacttacgctacgattcaccgtcgctggcgtatactttttcttctcttcatctttatactttttgagttcgctttgcgtttctcttaacgccttttctaataactcaaggcgttgttccaccgttaatgattcagccaatgattgtgcagaaaaggctaacggtgccattaataagatggcagaggtaataagatttcgtctaaacataatatccctttatggtgcaaagaaagaattaacgcagcatccagactgttctgaatgcgacgataattaaggtgctttaatggttattttttttaatgacagcccccgcgtcttgatcacctctgcataccatccgaagcttttcttgcgtgttcttgtgaggcttccttcgccattatcatcacgatccacataaataaagccgtagcgcttagacatttgtgaatgagatgcactgactaaatcaattggcccccaactggtgtaccccataatatccacaccatcggcaatcgcttcatttacctgtaccaggtgatcgtttaaataggcaattcgataatcgtcctgtatcgaaccatccgcttcaacgctgtcttttgcgcctaatccgttctcgacaataaataacggtttttgataacgatcccaaagcgtatttaacagaacccgtaatccaaccggatcaatttgccaccccctctgaacttttcagatgcggattggggatcatattcagtatgttgccctgcgcatttttattaatgctttcgtcgtgggaaacacaaccagtcatgtaataactaaaagagatgaaatcgacggtatgttttaaatcttctgcgtcactttcagtcatctcaatggtgatattgtggtcgcggaagaaacgctgcatatagccgggatactggccacgcgcctgaacatcaccaaagaacatccagcgccggttctcttccatgcctgcaacatatcctgtggctggcaggtgagggggtaaaccagcccaccgagaagcatattgccgattttcgcttcggggagcaggctatgacaggctttaactgcccgcgcactggcaaccagttgatggtggatagcctgataaacttccgcctcgccactctcttctgccagccccacgcccgtgaatggcgcgtgtaacgacatgttgatttcattaaacgtcagccataacgccactttatgttggtagcgagtaaagaccgtgcgggcgtaatgctcgaagtgatcgatgaccgctcgattagcccaaccgccgtagtttttcaccagcccatatggcatttcgtaatgggataacgttaccagcggcttgatccccgcctgcgccatttcatcaaacagccgatcgtaaaacgctaaccccgcttcattcggttcgacttcgtcgccctgagggaaaattcgcgcccaggcaatggaaatacgcagacaggtgaagcccatctcggcaaataacgcgatatcttccgggtaacggtgataaaaatcgatggcgacatctttgatattctctttccccaggatgcgcggttccatttttcccattacgccatgaggctgtaaatctgaggtcgagatccctttgccatcttcctgccaggcaccttccacctgattggcagctgttgcgccaccccaaagaaatgtttctggaaatgctttcataattaactccttttatcgttagcgaatgatggataacagcggttcacctgcgcttatctgcgccgtgccgtggggtaatacgtccgtaaaatcatcgctattactgattaataccggcgtcgtcagatcaaatccggcctcgcgaatagcagggatatcaaaagaaatcagccgatcgcctgtattgaccttgtcacccacgttgacgtgagcggaaaagaatttgccgtccagttttacggtgtcgataccgacatgaatcaggatctccacaccatcatctgactcaatgccaatggcgtgtaatgtggcgaacaacgaagcaattcgacccgcaaccggagaacgcacttcaccaaccgagggcagaatggcaatacctttacccaacaggccactggcaaacgtggtatcagcgacgtgaatgagcggcacaatctctcccgtcatcggtgaacagataccgccctgctcaggtggtgtaataacctctggtgttttctcttgcggggcaccctgcgctggctgacgtttagcggtgatgaaatgaagcatcaccgtaccgacaaatgcgcaaccgatggcaatgacaccgccaataacgctggcccagacggtgaaatcaattcccgttgacgggatggtttgcatgaaggtgaaaatacttggcaaaccaaaggagtagactttcgtttgcgcgtagccaataatggtggcccccaaagccccactgatacaggcgataacaaaggggtacttacgcggcaggttgacgccatataccgctggttcggtgataccaaacagactcgtcaacgccgctgatcccgccaccacttttttctgcgcatcgcgttcgcagaggaagacgccgagcgccgccccgacctgcgccataatggcgggcattaacagcgggatcatggtgtcgtagcccagcacggtgaagttattgatacacagcggcaccaggccccagtgcagtccgaacatgacgaagatttgccagaagccgcccattaccgcgcccgcaaatgcaggaaccgcctgataaagccagagataaccggcggcaatcagttcgcttatccaggttgatagcggccccaccagcagaaaggtgacgggtgtgataaccatcagacatagcaatggtgtgaagaaatttttgattgccgacggtaaccacgcattaagtcggcgttccagaatgctgcacaaccaggcagaaaaaataatgggaataaccgatgacgagtaattcaacaatgtgaccggaatacccaggaaatccagccccagcgcatccgctttttgcccgttctcgaaagcagtcagaattaatggatgcactaacgctccaccaatcaccatggcagtaaatggattaccgccgaagcgtttccccgcggtgtatcccaggattatcgggaagaaccaaaacaaggcatcactggcgctgaataaaattaaataagtaccactttgttcggtcgtccactgaaaagtgagcgccagagccagcatacctttcaagatcccggttgccgccatcaaaccgatcagaggcgtaaaaatacctgaaataacataaacaaagcggtttagcagattacctttatcatcattttccggtgcctgttgcgctttttcgtcaaggcctgccacactgttaaccgccaggaagacatcggccacatggttacctatgaccacctgaaactggccaccgctttccaccaccataataataccgggggtctttttcagtacctctgcttgcgctttgctttcatcctttaatttaaaacgtaatcgcgttgcgcaatgcatcagactcacaatgttatctgcgcccccgactcctgcgactatttttctggctaactccgtcataacttgccctctaccgctttgcggcaaaactccaaaaaaaaacctgaaaaaaacggcctgacgtgaatcaagcaatttttttcaggttttgcccgcttagtgcggtaacaatcctttactcagtaataatatttcagtgttctttgcgcacgcgctctatatttatggctaaaaacataatctctgcgggtgaaattttacgttgatactgcaaaccaataaaaatggcgatccgttccgcacattgccatgcttgcgggtaattttgttttactgcttgttgtaatgattcatcactatcgttaattgaagcatgttcaagaatacgccaggataaaaacttcagatgtgtaaccagtcgctgataactcaagctttcttcctggtaattaaggctgaactgaaattttattaattgcagcatttcgcgcattaactgcgtgacacctgcaacatcctccatatttccgctcatttgggcactgaccagatgcatggcaataaagcccacttcatctttcggtaactgcacgcccaaccgtttatcaataatggttaacgcttcttcccctagctggaactctttcgggtaaagccgctggatatcccacagcaacgggttgggcagcaacacgttttgctgaaagcgtttaatcgcaaactggcaatggtcagttagcgagatataaatactgtcctgtaattttcccaagcgctcctgcgctaaagagataatacgatcacaggttgccatcacctcaagaggaatatgacttaagagttcgcttaatcgcccgttcagttcatgactgctcaaggcatactctttttctattccacttgagttaattctttcgccagcgcgtttttgaaagccaattccgcgccccatgacgactttttcccgctgttgatcatcaataaccaccacaacattattgttgagaattttggtgatttgcatgttcatagcaaggaccttttttataaacaaaaaaacccgacttcaccagtattctctggttatgtcaggttttgcctgcgaatgcagtaacaatccagtcatttattaatggtttttataacgaacatccaggttcggaaattaatttaattgcgtgcagagaaaatagcaatgcgctattgataaaaatatgaccatgctcgcagttattaactttgtgtaattttaggaatttataaagttatatataacaaatcccaataattaagttattgggatttgtctggtgaattatttgtcgctatctttccccgccagcagtttatccagctcatcgccaccgacgtgacggaaatcctgccccttcacgtagtagaagataaactcacaaatattctggcagcggtcgccaatacgttcgatagaacgcgcgcagaacagcgcagtaagtacgctcggaatggtacgcgaatcttccatcatgtaggtcatcagttgacgaacaataccttcgtattcctgatcgacttttttatcttcacgataaatacgtaccgcttcgtcaatgtccatccgcgcgaacgcgtccagcacgtcgtgcagcatctggatggtatgacggcccagcgactccagacttaccagcaacggctgatgctgctgggagaatttctccagcgcagtacggcagattttgtccgccacgtcgccaatacgctccagctcggcaatggttttactgatcaccataaccagtcgcaggtcgctcgccgtcggctgacgtttggcgataatgcgcacgcaggcttcatcgatcgccacttccatcatgttgacgttcttgtcgccttcgatgacgcgcttcgccagatcgctgtcctggttatgcatcgcggtgattgcatcagaaagctgctgctccaccatgccgcccatggtcatcacctgcgtgcggatactttccagttcggcgttgaactggccggaaatatgtttattaagattgagactgtccataacgcactcctgaatcaaccgtaacgaccggtgatgtagtcttctgtttgtttcttcgctggcttggtgaacagatcgtccgtgttgctgaactcaatcaattcgcccaggtacataaacgccgtgtggtcggaacaacgcgcagcctgctgcatgttgtgggtgacgatcaccacggtgtaatcctgcttcagttcggtgatcagctcttcaatacgcccggtagagatagggtcgagcgccgaacacggttcgtcgagcagcagcacttccgggcgaatggcgataccacgcgcaatacacagacgctgttgctgaccaccagagagagagtaaccgctctggtgcaatttatctttggtttcgttccacaatgcggctttggtcaatgcccactgcacgcgctcgtccatgtcggcacgggagagcttctcaaacagacgaacgccaaaagcgatgttgtcgtagatggacatcggaaacggcgtcggtttctggaacaccatgcccactttcgcacgcagcagtgcgatatcctgagagttggtcaggatgttgtcgccatcaagcagaatttcaccttccgcacgctgctccgggtacagttcaaacattttgttgaaggtacgcagcagcgtcgatttaccgcagccggacggcccgataaacgccgttacctggtttttagcgatatccaggttgatgtttttcagggcatggaatttgccgtagtagaagttcaaattacgaacctgaattttactcggggcagtttcaaccatactcattgcaatcttttcctcatcgtgcctgatgcacttcgctaatcaggcttaccgtaggccggatcaggcgttcacgccgcatccggcaaagtgttaaccgtgtacagagtcaaaaaggcgctcggtcggtcccctcgcccctctggggagagggttagggtgaggggaaaaccgtgtcagcaatatcaaccgtgtttattcttcgcaaaaacaacgcgcgccagaatgttcagcagcagtacgcacagggtaatgatcaataccccggcccaggccaattgctgccattccgcaaacgggctcatcgcaaacttaaagatcgtcaccggcaggttggcgatcggctgcatcatgtccgtgctccagaactggttggagagcgcggtaaacagcagcggcgcggtttcaccagcaatacgggcaatcgccagcaggataccggtcataatcccggacaccgacgctttcagcgtaatcgcagagatcatcttccacttcggtgtacccagcgcataagccgcttcacgcaggctgtacggcaccagtttcagcatgttctcggtggtgcggataacaatcggcacctgcaacaacgccagggcaatcacgcccgcccagccggagaagtgctccatctgcgccaccacaatggtgtaaacaaacagaccaaccacaatcgacggcgcagagagcagaatgtcgttaatgaagcgaatcacttctgccagccaggatttacgaccatattccgccagataaatccccgccataatgcccagcggcgtaccgaataccgtggcccacaaaattaacagcccgctacccgccagagcgttcgccagaccaccaccttccgtattgggcggcggcgtcatttcagtgaacagcgccagcgacataccgtcgataccgcgagtgatggtggacattaaaatccagatcagccagaacaggccgaaggccatcgtcgccatcgagagcgtcagcgcaatacggtttttgaggcggcgacgcgcctgcattttgcggcgagattcagccagcgccgcagtggtttgcatttcaaccatagccattagcgtgccccctcattcttagccaggcgcataatcataaacttcgatgcggcgaggacgatgaaggtaatcacaaacaggatcaggcccagttccatcagtgcggcaacgtgcagaccggattccgcttccgcaaattcgttcgccagcgcagaggtgatactgttgcccggcatatacagcgaggcgctgtcgagctggtaggtgttaccgatgataaaggtcaccgccatggtttcaccgagcgcgcggcccagccccagcatgatgccgccgataacaccatttttggtgaacggaagaacgatacgccagataacttcccaggtggtgcagccaataccgtaggccgactctttcatcatcaccggggtttgttcgaacacatcacgcattaccgccgcaatgtacggaataatcatgatggcgaggatcacgcctgccgcgaggataccgataccaaatgcggggccagagaacagcgcgccaacaatcgggatattcgacatgatattgccgaccggctcctgaaagtaaacggcgaacagcggcgcaaagataaacaggccccacatgccgtaaacgatacttggaatggctgccagcagctcaatggcgatacccagcgggcgtttcagccagccaggcgcaagctcagtcaggaacagggcgataccgaaactcaccgggacggcgatcagcagcgcgataaacgaagtcaccaacgtaccgtagatcggcaccagcgccccgtagatatcgttcggtgcatcccactctttggtccataggaaagccagaccaaatttctgaatgctcggccaggaggagatgatcagagagacaataatgccacccaacatcaatagcacaatcagcgccgccagttttaccagcacgctgaaaattatgtcgccctttttacccggtgggttaaaagcaggcttggttgcagccataagttactcttcagttaaacgcgtttacaaagtcattttgtaatgccggatgcggcgtaaaacaccgtacccggcctggagttttattagtacagcggcttaccgctactgtctttaatattggtcttccacagcgcgaacctgttcaactacactatccggcaggctggcgtaatccaggtcgttcgcctgtttagccccggttttgtacgcccagtcgaagaatttcagcacttctgtcttgttctggtttcttctgatctttgtggatcagaatgaacgtggtagaggtaataggccatgcatcttcgcctttctggttggtcagatcctgagcgaaggttttgctccagtctgcaccttttgctgcattagcgaagttttcttcggtcggactaaccggtttaccatcagcggagatcagtttggtgtacgccaggttgttctgcttcgcgtaagcatattcaacataaccaattgcacccggcagacgctgaacgaacgcggcgataccgtcgttacctttaccgcccagaccgatcggccattttacggtagagccagtaccaacgttgtttttccactcttcgttcactttcgccaggtagctggtgaagacgaaggaagtcccggagccatctgcgcggcgtactacagcaatgttttgtgaaggcagtttcagacccggattcagtttggcgatggcttcatcatcccacttcttgattttgcccaggtagatgtcgccgagggttttaccatccagcaccagttcgccagacttcagccctggaatgttaaccgccagcaccacgccgccaatcacggtcgggaactggaacagaccttcctgagccagtttttcgtcagacagcggcgcgtcagaggcaccaaaatcaacggtattagcgataatctgttttacgccaccggaagaaccgataccctggtagttaactttattaccggtttctttctggtaagtgtcagcccatttggcatacaccggcgcagggaaggttgcacctgcacctgtcaggcttgcttctgcaaacacagagaaagcactcatcgataaggtcgcggcgacaacagttgcgacggtggtacgcataactttcataatgtctcctgggaggattcataaagcattgtttgttggctacgagaagcaaaataggacaaacaggtgacagttatatgtaaggaatatgacagttttatgacagagagataaagtcttcagtctgatttaaataagcgttgatattcagtcaattacaaacattaataacgaagagatgacagaaaaattttcattctgtgacagagaaaaagtagccgaagatgacggtttgtcacatggagttggcaggatgtttgattaaaaacataacaggaagaaaaatgccccgcttacgcagggcatccatttattactcaaccgtaaccgattttgccaggttacgcggctggtcaacgtcggtgcctttgatcagcgcgacatggtaagccagcagctgcagcggaacggtgtagaagatcggtgcaatcacctcttccacatgcggcatctcgatgatgtgcatgttatcgctacttacaaaacccgcatcctgatcggcgaagacatacaactgaccgccacgcgcgcgaacttcttcaatgttggatttcagtttttccagcaattcgttgttcggtgcaacaacaataaccggcatatcggcatcaattagcgccagcggaccgtgtttcagttcgccagcagcgtaggcttcagcgtgaatgtaagagatctctttcaacttcaatgcgccttccagcgcgattgggtactgatcgccacggcccaggaacagcgcgtgatgtttgtcagagaaatcttctgccagcgcttcaatgcgtttgtcctgagacagcatctgctcaatacggctcggcagcgcctgcagaccatgcacgatgtcatgttcaatggaggcatccagacctttcaggcgagacagcttcgccaccagcatcaacagcacagttaactgagtggtgaatgctttagtggatgccacgccgatttctgtacccgcgttggtcattagcgccagatcggattcgcgcaccagagaagaacccggaacgttacagattgccagtgaaccaaggtaacccagctctttcgacagacgcaggccagccagggtatccgcggtttcgccagactgtgacaaggtgatcatcaggctgttacgacgcacggcagatttgcgatagcggaattcagaggcgatttcgacgtcgcacggaatacctgctagcgattcaaaccagtagcgggaaaccataccggagttataagaagtaccacaggcgaggatctgaatatgctcaaccttcgacagcagttcgtcggcgttcggtcccagctcgcttaaatcaacctgaccgtggctgatgcgtccggtaagggtgtttttgatcgcgttcggctgttcgtagatctctttctgcatgtagtgacggtaaatgcctttatcgcccgcgtcatattgcagattggattcgatatcctgacgttttacttccgcgccagttttatcgaagatgtttaccgaacggcgagtgatttccgcaatatcgccctcttcaaggaagataaagcgacgggtcaccggcaacagcgccagctggtcagaagcgataaagttttcgcccatccccaggccaatcaccagcggactaccagaacgtgccgccagcagggtatccgggtgacgggagtccatgatcactgtaccgtacgcaccacgcagctgcgggatagcacgcagaacggcctcacgcagagtcccgccttgtttcagctcccagttcaccagatgggcaatcacttcggtgtcggtttcagaaacgaaggtatagccacgcgcttttagctcttcacgcagcggttcatggttttcgatgatgccgttatgcaccaccacaatgtgttcagaaacatgcggatgcgcattcacttctgaaggttcaccgtgggtcgcccagcgagtgtgagcaataccagtgccgccatgcagaggatgttcttccgctgcctgtgccagcatctggactttaccgaggcgacgcaggcgggtcatatgaccttctgcatcaacaacggccagaccggcagagtcatatccgcggtattccagacgacgtaaaccttcaagaaggatttctgctacatcacgttgcgcgatcgcgccaacaattccacacatagtttttgattccgatttatatcgttgtcggtcaacctgtatgcccgttttttcgggcgccccgagccttgtagagagtggggttatttttatagttactgcttgtgggagggagattatgttatctcctcatcccatgtgaccgggttagccggccagaatcactttttctttaccggacgacgccagccttctttctgagtctgcggcacacggctgatagctaatgcattttcgccgacattacgcgtcacagttgtacccgcagcaatggtcgcgcctttgcctactgttaccggggccaccagctgagtgtcggaaccaacaaacacatcgtcgccgataatggtcttaaatttattcgcaccatcgtagttgcaggtaatggttcccgcgccgatgttaacgttatcgccaatttccgcatcgcccaggtaagtcagatgaccagctttcgagcctttacccagacgcgcttttttcatctcaacgaagttaccgacgtgagcaccttccagcaactcagcaccaggacgcaaacgggcaaacgggccaatggtacaggccgctgccagattcgcatcttccacaacggtatacggactgatttcgcaatcatcgccaatcacgctgtttttaatcacgcaaccggtgccaattttcacgcgatgaccgagagtcacgttgccctcgatgataacgttagtatcaatttcaacatcgcgcccgtgagttagcgtaccacgcagatcaaaacgcgctggatcgcgcagcataacgcctgctaacagcagtttttcagcctgttcggactgataaacacgctccagacgggagagttgcaggcggttattcacgccttctacttcgcttaaacgttgcggatgaacggcgacgatttcacgcccttcctgatacgccagcgcaataatgtcggtgatgtagtattcgccctgagcattattgttggtcagcttcgccagccagcgtttcatatctgcgccgttggcaatcagaatgccggtgttgatctcctgaatctgacgctgctcgtcggtggcatctttgtgctcaacaatgccggtaactttgccgttttcacgggtgatacgtccataaccggtcggatcatccagtttcaccgtcagcagaccaatgccaccctgcggtttagcatcacgcagacgctggagtgtttcgacagagatcagcggcacgtcgccgtagagcattaaaatgtcttcatcatcggcaaagaaaggtgcggcctgctgcattgcatgacccgtacccagctgctctgcctgaagcacccagttaaggttgtcgtctttcagcgcctgttttagcagatcgccgccgtgaccgtacaccaggtgaacgtgcgctgcgcctaattcattcgcagcatcaatgacatgctgaaccatcgctttcccggcaagggtatgcagcactttcggaagatcggaatacatgcgcgtgcctttgcctgcggcaaggatcactacgctcatagcattattcaacatacgcgtcctgactgtaatttgagaacgaatttaaaccgcttcaccttgaaaaaactacatttttttcatcgtgaaatggacagaggataaattgttcaataacggattatccccgctgacgaaagcgccattttcgaccatcgtcacgccttttgtctgcagaaaattaaggcagtaccttaatttaagcgtcaggtggatgtttttgctcttatttcgatcaatgaataaacaggaaaacaggggggttttatatcagcaggatctatgtgaacgctattcaggacgggtcacacgcgcaaaaaaaagccagcctgtttccagactggcttttgtgcttttcaagccggtgttacatcgcttttttggtcaactcgataacgcgcagctgcgcgatcgctttggccagttccgcagacgcctgagcgtaatctacgtcgccgtgagagctgctaatgtgctcttcagccttacgtttcgcttccatggctcgcgcttcgtcgagatcctggccgcgaattgcggtgtcggccagaacggtcacgttgccaggctgcacttcaagaatgccgccagacagatagataaactcttcgtgaccgtgctgtttcacgatgcgaatcataccaggcttaatggcggtgagcagcggtgcgtggccagggtagatccccagttcaccttcgctacccgttacctggattttctcgaccagaccagagaacatttgttgctctgcgctgacgacgtccaggtggtaagtcattgccatatcaccctccgattaaggcgttaaagttttttggctttttccacagcttcttcgatggaaccgaccatgtagaacgcctgctccggcaggtgatcgtattcgccttccatgatgcctttaaagccacggatggtgtctttcagggagacgtatttacccggagaaccggtgaatacttctgccacgaagaacggctgggacaggaagcgctggatcttacgagcacgcgctaccaccagtttgtcttcttcagacagttcatccatacccaggatggcgatgatgtctttcagttcctgataacgttgcaggatggactgaacgccacgcgcggtgtcgtagtgttcctgaccaaccaccagcgggtccagctgacggctggtggagtccagcgggtcaacggccgggtagatacccagagacgcgatctgacggctcagtaccacggttgcgtcaaggtgcgcaaaggtggttgccggagacgggtcagtcaagtcatccgcaggtacgtatactgcctgtacggaggtgatagaaccagttttggtggaggtgatacgttcctgcagaacgcccatctcttccgccagggtcggctgataacctaccgctgaaggcatacggcccagcagtgcggatacttccgtaccggccagggtgtaacgatagatgttgtcaacgaacagcagaacgtcacgaccttcgtcacggaatttctcagccatggtcagaccggtcagagcaacgcgcagacggtttcccggcggctcgttcatctggccatacaccagggatactttgtcgataacgttggagtcggtcatttcgtggtagaagtcgttaccctcacgagtacgttcacctacgcccgcaaacacagagtaaccggagtgctcgatcgcgatgttacgaatgagctccatcatgtttacggttttacctacacccgcaccaccgaacagaccaactttaccgcccttagcgaacggacacatcaggtcgataactttgataccggtttccagcagttcctgagagtttgacagctcttcgtaggaaggtgctgcgcggtgaatcgcccaacgctcttcttcaccgatctcgcctttcatgtcgaccggttcacccagtacgttcatgatacggcccagagtcgctttacctaccgggacttcaatcgggtgttcgaggtcttttacatccagaccgcgacgcagaccgtcggaggaacccattgcgatggtacgtacgataccgccgccgagctgctgctgaacttccagcaccagacgctcattaccattttgcacctcaagagcatcgtacacgcgcggtacggcatcctgagggaattcgacgtcaactacggcgccgattacctggacaatctttccagtagccatcttaaatcctctacgaaataacctgtttaaaccgcggcggcccccgagacgatctcggtgagttcctgagtaatgctggcctgacgagctttgttgtataccaactgcagctctttaatcaggctgccgccattgtcggtcgcggctttcatcgccaccatacgggcggcctgctcgctggccaggttttcaaccacgccctgataaacctgagattcgacataacgacgcagcagggtatccagcaacgccttcggatcgggttcgtacaggtaatcccaggatttatgtttcagatcatcatcatctgatgccggtaacggcagcagctggctgatggtcggaacctgagacatggtgttaataaatttgttgctgacaatgtaaagcttgtccagacggccttcgtcgtaggcctgcaacatcacttttaccggaccgatcagttcggacagggaagggttatcccccatgccggtgacctgggcaacaacattgccgcccacggagttgaagaacgacacgcctttcgagccgatcattgcgaggtcgcattgaacgcctttgtcggtccaggtcttcatttccgccagcagttttttgaacaggttaatgttcaaaccaccgcacaaaccacggtcggtcgacaccaccaggtagcccacgcgtttaacgtcgcggtcttccaggtaagggtgcttatattccagattaccgtgtgcaaggtgaccaatcactttgcgcatggtttctgcataaggacggctggccgccatgcgatcctgcgatttacgcattttggaagcggcgaccatctccatcgctttagtgatcttttgcgtgttctggacgcttgcgatcttactacgtatctcttttgcgccggccatgagcttctcctcaatgccttgcggcctgccctaaggcaagccgccagacgttaccaggattgggttgctttgaaggaatcgaggatgcctttcagcttgccttcgatttcgtcgttgtagccaccggtctggttgatctcttgcatcaacggagcgtgatcacggtcgacgtaagccagcagagcggcttcgaagctgccaattttcgacagttcaacatccgccaggtaaccacgttctgctgcgaacagaaccagagactgctgcgcaacggacatcggcgcatactgtttctgtttcagcagttcggtcactttctgaccgtggtcaagctgcttacgtgttgcatcgtcaaggtcggatgcaaactgagagaacgctgccagttcacgatactgtgccagagcggtacggataccaccggacagttttttcatgatcttggtctgtgctgcaccaccaacacgggatacggaaatacccgggttaaccgcaggacgaataccggcgttgaacaggttggtttccaggaagatctgaccatcggtaatggagattacgttggtcggaacgaacgcagaaacgtcacccgcctgagtttcgataatcggcagtgcggtcagagaaccggttttccctttcacttcacctttggtgaaggcttcaacgtattcggcgttaacacgtgcagcacgctccagcagacgagagtggaggtagaaaacgtcgcccgggaatgcttcacgtcctggcggacgacggagcagcagggagatctgacggtaagcaacagcctgtttagacaggtcatcgtaaatgatcagcgcatcttcaccgcggtcacggaagtattcgcccattgcgcaaccggcatacggtgccaggtattgcagtgcagcggattcagacgcggttgctaccacaacgatggtgttagccagtgcgccgtgctcttccagtttacgtaccacgttagaaatggtggacgctttctggccgatagcgacatagatacatttgataccggaatcgcgctggttgatgatggcatcgatagccagtgcggttttacctgtctgacggtcaccgatgatcaattcacgctgaccacgaccgattgggatcatggagtcaacggctttataaccggtctgtaccggctgatctacggactgacgttcgataacgcccggagcgattgcttctacagcagagaagccgtcgtgatccagcggacctttaccgtcgattggtgcacccagagtgttaaccacacggcccagcaggccacggccaaccggaacttccaggatacggccagtacacttaactttcatgccttcggcaaggtcagcgtacggacccataacaaccgcacctacagagtcgcgctcgaggttcagtgcgatagcgtaacggttacccggcagggagatcatttcaccctgcatacaatcggccaggccgtgaatgcggataacaccgtcacttacagaaacaatagtaccttcgttgtgagcttcactcacaacattgaactgagcaatgcgctgcttgatcagttcgctgatttcggtggaattcagttgcatgctccagtccccttaagactgcaagacgtctgcaaggcgctcaagacgaccgcgtacgctgccatcaatgaccatatcacccgctcggatgataacgcctgccattacagacttatcgattttgcaattcagcttaactttgcgtgacagacgtttttccatcgcagcagaaattttcgcgagctgttgttcactcagtgcggcagcggaaatgacgtctacctcagcggtagcctcactcacggcacgcaggtgaataaactgctccagaacatccgggagcgcgttaagacgaccattttcagccataacccgaatcaggttctgaccgttttcgtccagttgctcaccacaaactgcgataaacgactcggcgagcgtttctggcgcaagcgcgccagagagaagctctgccatttgttcgtttttggttacctcggcggcaaacgccagcatgtcctgccagcgttctacactttggtgttcgacggcaaagtcaaaagctgctttggcgtaggggcgagctaccgtaataaattcagacatcagcccctccctccttacagttcagcgacaagtttatccacgatgtcgctgttagcagcttcatccacggaacgttcgatgatcttctcggcgccagcaacagccaggatagcaacttgcttacgcagctcttcacgggcacgtttacgctcggcttcaatttccgcctgcgcctgggccacgattttagtacgttcctgttctgcctcagctttcgcttcgtccagaatctgcgagcggcgtttgttcgcctgctcgatgattacctgggcttccgctttcgcttttttcagctggtcggtcgcgctggcctttgcaaggtcaaggtccttatgtgctcgttctgcggaagcaaggccgtcagcaatttctttttgacgtttttcgatggctgccattaatggcggccatacgtacttcatgcagaacagaacgaacaggacaaacgcgatggcctggccgaggattgttgcgttaagattcacagcacaatgcctctatttagttaacgttctgatattgctctttaaataaaagcaacgcttactacgcgacagcgaacatcacgtacagacccagacctacagcgatcatcgggatagcatccaccagacccataacgataaagaactgagtacgcagcagaggaatcagatcaggttgacgcgctgcgccttccaggaatttacccccgaggatgccgataccgatcgcagcaccgattgccgccagacccatcatcacagcggcagccatgtacagcagatccatattcaggttttccatgacagtctccagtttgtttcagttaaaacgtagtagtgttggtaaattaatgttcttcagacgccatcgacagatagacgatcgtcagaaccatgaagatgaaggcttgcagcgtaatgatcaggatgtggaaaatggcccacggcacattcaggatccactgtgaccaccacggcaacagaccagcaatcagaatgaaaatcagctcaccggcatacatgttaccgaacagtcgcaaaccgagtgaaactggtttggacagcaggcttaccccttcaaggattaagttgacaggaatgaacgcccagtgattgaacggctgcagcgtcaactctttcgtgaagccgccgatgcctttcattttgatgctgtagaacagaatcaggataaatacgcccagtgccatagacagcgttacgttcacgtccgcagacggaaccacacgcagtgcaggcagacccagtacatgttcagcaatgtacggcagcaggtcgataggcagtaaatccatcaggttcatcaggaatacccagacgaagatcgtcagggccagcggagcaatcagcttgcttttgccatggtacatgtctttcacgctaccattaacaaagccgatcaccagctcaatcgcggtctgaaacttacctggcacaccgctggtcgcctttttggctacgctacggaataaaaccaggaacaacagacccagcaccaccgagaagaacatggagtcaatattgattgtccagaaggtggctggggggttttgtggatccaccagcgagaatgtacgcaggtccagctgaaggttattcaggtggtgtcctatgtaatcctgcggcgtcatattttctgaagccatgatgccttttaccctttgttgttaattacagccggtgccagtatctgaaccaccagcaccaaaacccacgtaacgatcagcggcaagaataccgcctttaaaaccgccaacgccaccaccagtaacaccaacatcgccagaactttgaaagcttcgccaaatgcgaatgtccaggccacccggcctttcgctggtgtatgcgcctggtgacgccaggcaaatatcataaacaaaacgttaggcagaaagactgccaggcccccgcttattgcagagacgccccagaaggggtctttgaggctgaacagcaatccacttgctatcaccaccagtaactgaacgagcagaagcttccgagcaacgtttcgactcacgagcgacacagacatcacgtttttcactcctgctcccttcgaggtatgccgcgtgtcgtataaaactttctttaaggcttagagtcaagcatcaaaaagcggtcaaattatacggtgcgcccccgtgatttcaaacaataagtagccaaaaggtgaataaatgtttaaatatttttccagtgcatacaattgcgacttttctgctaaccctgttcgatcatgaaaaactgtaaataacgcgtaaacactggtgataaagcgtgcttcagatcacatattgcgcatgttcgcgcacagcatatttatttacttggcaaatgatgcctttgcaagtttatgatatttcagtctaaaaacagatactgttttaataaatgacatttacacaacaaaaaccacccattgacatttttaataatgttttaacagccaatgatggttcttagcgccgatttttagcagactgatattttcactaatgacttattttctgcttaccaaaaaaagccacgttatcttgttgatgcaaaagagtgaacgtggcgttaaatgtaaccagttatatcagtagaaaacctggttgttgttaacagtctaaccggtcaattttttatgatttttttgataaaaattaaattttatttgctttaatcaccaccagatgacgttcgccatccagggctggaacctgaagtttaaccactgattcgacctgatattcttcgggcaacaaagcgatttcatcttccggcatttgccctttcagcgcgtagaaacggccttgctcaccaggaagatggtggcaccagctcaccatatcgttcagagaggcaaaagcgcggctaattacgccatcaaatggcggctctgaaggaaactcttctaccctgctctgtactggttcaatattctccagtttaagctcatgttgcacctgacgaaggaaacgcacgcgtttaccaaggctatccaacagagtgaaatgggcttcaggacgcacgatagagagtggaatgcctggcagtcctggtccggtgccgacatcgataaaccgttcaccttgcagatacggtgccaccacaatgctatcgagaatatggcgtaccagcatctcattaggatcgcggaccgaagtcaggttgtacgctttgttccatttatgcagcatattcacgtaggcaataagctggtttttctggtgatcggtaagcgaaatacctgcgtctttcagcagtaaggagagtttgttgagcacggtgattacctgttcttgatgcgttgcctggtaagcgggtgcttaccaggcatttttaatgcgttatgcgctacgacgcagcataccctgttttttcagccacaccagcagaatggagatggccgcaggcgtgacgccagaaatacgcgaagcttggccgatagaggctggtttgtgatcgttaagtttggcgatcacttcgttagaaagaccggatacctggcggtaatccagtgtcgcgggtagcagggtgttctcgttacgcagctgcttttcgatctcatcttgctggcgcgcgatataaccttcgtatttaacctgaatctcaacctgttccgccgcctgttcgtctgtcaacgcaggggcaaacggcgtcagcgtggttaatttttcataagtcatttccggacgcagcagatcttcaccactggcttcacgggaaagcggcgcagtcaggtgagcattcacttcggctgcagcttccgccgacggggttacccaggtcgatttcagacgctgacgctcacgctcgatattctcaagtttctcgttaaagcgcgcccaacgttcgtcatccaccaggcccagttcacgaccgatttcagtcaaacgcagatccgcattatcttcgcgtagcatcagacgatattctgcgcgcgaagtaaacatacgatacggttctttggttcctaaagtgcacaggtcatcaactagtacgccgagatacgcctgagaacgtgccggagcccaaccttctttgtcagcagacagacgggcagcgttaagaccggccagcaaaccttgcgcagcggcttcttcgtaaccggtagtgccgttaatctgaccagcaaagaacagcccctggataaacttgctctccagcgtcggtttcaggtcgcgaggatcgaagaagtcatactcaatggcataacccggacgcacgatcttcgcgttttccatcccctgcatagagcggacgatttgcatctgcacatcgaacggcaggctggtggagataccgttcggataaatttcattagaggtcagtccttccggttcaaggaagatctgatgctgatttctgtcggcgaagcgcatgactttgtcttcgatcgacgggcagtagcgtgggccgacaccttcgatcacccctgcgtacattgggctacgatcgaggttactgcggatcacatcatgggttttctcgttggtatgagtgatataacacggcacctgctggggatgctgggacgcattgcccataaacgagaataccggcattgggttatcgccatgctgttgcgccagtacgctaaagtcgatggttcgagcatcaatacgcggtggtgtcccggttttcagacgaccaacgcgcagcggcagttcacgcaaacggcgagaaagcggaatggacggcggatcaccagcacggccaccgctgtaattatccagaccgatatgaattttaccgtcgaggaacgtcccaacggtgagcacgacggctttggcacggaacttcagtcccatttgggtaacagcaccgaccacgcgatcgttttcgacaataagatcttcaaccgcctgctggaagatcatcaggttcggttggttctccagcgccgtacgtaccgcctgacggtagagcacacgatccgcctgagctcgggtagcgcgaaccgccggtcctttgcttgcgtttagtatcctaaactggatacccgcctgatcgatcgctttcgccatcagaccgccgagtgcatccacttcttttaccagatgtcccttcccaataccgccgatcgccgggttgcagctcatctgccccagagtgtcgatattgtgtgtcaaaagcagagtctgttgacccatacgcgccgcggccatcgcggcctcggtgcctgcatgacccccgccaatgatgatgacgtcaaaaggatccggataaaacatggtgattgcctcgcataacgcggtatgaaaatggattgaagcccgggccgtggattctactcaactttgtcggcttgagaaagacctgggatcctgggtattaaaaagaagatctatttatttagagatctgttctattgtgatctcttattaggatcgcactgccctgtggataacaaggatccggcttttaagatcaacaacctggaaaggatcattaactgtgaatgatcggtgatcctggaccgtataagctgggatcagaatgaggggttatacacaactcaaaaactgaacaacagttgttctttggataactaccggttgatccaagcttcctgacagagttatccacagtagatcgcacgatctgtatacttatttgagtaaattaacccacgatcccagccattcttctgccggatcttccggaatgtcgtgatcaagaatgttgatcttcagtgtttcgcctgtctgttttgcaccggaatttttgagttctgcctcgagtttatcgatagccccacaaaaggtgtcatattcacgactgccaataccgattgcgccaaagcggactgcagaaagatcgggcttctgttcctgcaatgcttcatagaaaggagaaaggttgtccggaatatctccggcaccgtgggtggagctgataaccagccagatccctgaggcaggtaaatcttctaacagcggaccgtgcagcgtttcggtggtaaaacccgcctcttccagcttttcagccaggtgttctgctacatattcggcaccgccgagggtgctgccgctgataagagtgatatctgccataaaccgccacctttattaagagtggcgtattgtacgctgtgaacgcgttgggatctacctgtggaaaagtatgggattaaaaaagccgatcagggcttgatggtacgcatgatcgggttttgcaggacgatcaatgtctcggtggactgaatttcatcaattgtttggatcttgttgataagtacatgctggagagcgtcgatcgaacggcacatcacttttataaagatgctgtagtggccggttgtgtaataggcttcagtgacttcatcaaggctttccagctttgccagcgcggaagggtagtctttggcgctctttaatataatgccgataaagcagcctacgtcataaccgagctgcttcgggctgacatcaatacgcgccccggtaatgatccccgcctgcttcattttctctactcgaacgtgaatcgtccccggactgacgccaaattgtttcgccagttcggcgtaagcggtgcgcgcattgcccattaatgcttccaggatgccacggtccagattgtcgatcagataattttccataggattttcttatgcggattgatgattcattctattttagccttcttttttaatgaatcaaaagtgagttaggctttttattgaatgattattgcatgtgtgtcggtttttgttgcttaatcataagcaacaggacgcaggagtataaaaaatgaaaaccgcttacattgccaaacaacgtcaaattagcttcgtgaaatctcacttttctcgtcaactggaagaacgtctggggctgatcgaagtccaggcgccgattcttagccgtgtgggggatggcacgcaggataacttgtcgggctgtgaaaaagcggtgcaggtaaaagtgaaagctctgcctgatgcccagttcgaagtggttcattcactggcgaagtggaaacgtcagaccttagggcaacacgacttcagcgcgggcgaagggctgtacacgcacatgaaagcccttcgccccgatgaagaccgtctttctccgttgcactcggtctatgttgaccagtgggactgggaacgcgtaatgggcgacggtgagcgtcaattctcgactctgaaaagcacggtagaggcgatctgggcgggaattaaagcaaccgaagctgcggttagcgaagagtttggcctggcaccgttcctgccggatcagatccacttcgtacacagccaggagttactgtctcgttatccggatcttgatgccaaagggcgtgagcgggcgatagcgaaagatcttggcgcggtattccttgtcgggattggcggcaagctgagcgatggtcatcgccacgacgtgcgcgcaccggattatgatgactggagcaccccgtcagagctgggccatgcgggtctgaacggcgatattctggtgtggaacccggtactggaagatgcgtttgagctttcctccatggggatccgtgtagatgccgacacgctgaagcatcaactggcgctgaccggtgacgaagatcgcctggagctggagtggcatcaggcgctgctgcgcggtgaaatgccgcagaccatcggcggcggtatcggccagtctcgtttgactatgctgctgctgcaactgccgcatatcggccaggttcagtgtggagtatggccagctgctgttcgcgagagcgtcccttctctgctgtaataatttatcgccgccagcgtctgagcaggcggcttcgcatcccggtatcaaagcgccagatatgatcgaaaatgcgcatgatgccgggtttgccgtgtgccgacatcgccacggcatgaaagcgatgctgatgtacccgctgcagctctttcactttactcgtcacgtcgtcaggcaaccgctgagcgataaaatcagaaatcaccaccgcatcggcatcaaaccattccctgctttgcaagcgttccataatggcgcgaaaacaactggcaagatcggtgccgccacgaaactgctggcttaaaaaacggattgcttgttcgatgccttgtgggcctgaaagctcataacggacgatctcggtggaaaatagcataatatagcagcgccggttttctgcgagagcaatgcgcatcaaggccaggcagaacgctttcgcacactgttcattaaagccgcccattgagccggaagtatccacacagacaataaacggcccgcgcggctgttcatcgtaatctttatgtaccaccggacgttcgatcactttttcacgccacgactcaccgtgcaggcgataggtgagcaactgtttttccaccagccgacggtaaaactcatactccagttccgttatccctagtgtcgccagttctggcggcaggagacgtaaaatatcatcgctttgttgcagaccatcaacctgctcaggaaccgtcgccggttcgcgcaccatggtgcggaaggtttccatctgcgcatcgttgcgcggtattgatttggcttcccgagaacgccccagctgctctgccaggcgtttcagttccggctgttcgttaagaaattcaccgtatttcacaatcaactgatagtcgccacgtttaagctgaccggcgctcatatcccacagacgaccagctgcagtattgttatctgcgagaatcggttcaagttgtcgctcagcgtcatgcgttcctgaacttcactcaacagttgttcgcgttcttcttctaatagctgttgatttaacgtcgttgcttgcacgatcagacttaaacgccaacgctggagaaaaagcgtgtgtaacgctgaagtgatcgtgctgttagcatcaaccaactgtcgggcttgttctgcccatggagaattcagacgatgcagtaagtccaggatctgtggtagctgcacaataaactgtggcgtggagaggagctggctttgctgatagcacatcacctcttcggtgagttccggcgggactcgggcatctttcagccgactgcgcacgcttcacgccagcggggaacatcatcagtgattgccgccttcaggcgtgggaatttttcaaagaagaccgccagctgcggtgaggccagcagtgcgatgatcatctcttcgatcaatccctcttcgctgacggccagcatcacattaagcgtatccagcgttagcattgttgtgcctggcgaatctgtgcaccgacatcctgtaggctggcttcaatgcgacctaaccagtcgccagggataaacaagacatttttgctgttcgctgaataaagcgtgttgcttgcgccagtcgctttcaagctcttccagttgttgttttatttcaccaggcagaccttcagccgatgaaccgggaagtgccagcgtactgccttgtaaacttacatcgcgaacgacaagatgttgggcgctatcaacttccagattcagtttctgggcaaagccgataccgttcagtttaccgcgaatttcaccacctttgctcagccactgttccagcgcgctacgctcaaaggagatatgaaccacttccatatcatgcagttttaacggtttttgcagcagtagagtcagagtggaagcagtaacgttaacaggaagttgatactgctgacgacggctgaaaatgccgcccagacgaattaccgttaaggctgttttatcgctttgttgctgctggagttgcaggtgacgttgcacaatcgcgccaaggcgagtcaacatcccttgctgttgccaggcgtgaccggtcatcaatacatcaatttgttgttgtatcaaattcaggctttgcgcgtcataccacaggcaatctttcagcaaaatgagatctaccggggcaacagcactgcgaccgctaaaaaaggcgctggcctgcaataatcggatcgcttttttccagcgacgatccgagacataaggcgcatccggtaatttatccagttgctggcgcagcataaaaatcagctcaaatacatgatcgggcagcgtaatttcaccaatctctttctgccagcgttcatattcttcatctgtgacctgcaaggcatcaggaaccggattgtcgttttcatcctgttgactggtcagcatggagcggaaattcgctttatcctgcactttatctaaccacagacgaatcagcatgcggtcatataacgcttccagactgctgtctgcttccggcagctcgttggaggccgccaccagcagacgcatcgggattttttctacgtgtgcaccgttgcggaactggcgctcgttaatggcggtgagcaaggtattaagaattgccgggcccgctttccagatctcatccagaaagacaatttctgcttccggcaggtaaccgctggttaaacgttcatagcgcccttcatcttttagcgcctgaatagaaaggggaccaaaaacttcttccggcgtggagaagcgggtcatcagatattcaaacgcgcgggcattctgaaaggcgaattttaagcgccgggcgatcaaacttttggcaatacctggcgggccaaggaggaacacactttcaccacttaattgccgctaataaacacaagcggatggcgtggctacgttcataaagccccttttccaacgaactgctcaggcgggaaattctttccgctaataaatgagggtgagccataatgaagtggcgtcctttcgtcaaaagttctgcgtaaattgcgagtatagacgtttcttgctggtggctaaaatagtctcaaagggggggtatttttctttgagccaggttaatgtggccgcatttaggagtacgattttgccgttaatcgtgcatactgtgcgcttttttgtgggccaagggactaagcacacatttcatatttcaacgaaagactagtctatgagcactgataataagcaatcattgcccgcgattaccctcgcggcgattggagttgtctacggcgatattggtaccagcccgttatatacacttcgtgaatgtttgtccggccagtttggttttggcgttgaacgcgatgccgtgtttggctttttatcgctgatcttctggctgctaatctttgtggtttccattaaatatctcaccttcgtgatgcgggcagataacgccggtgagggggggatcctgacgttgatgtcgcttgccgggcgtaatacgtcggcgcgaaccacatcaatgctggtgattatggggctaatcggcggcagctttttctatggtgaagtcgtcataacacccgctatttcggtgatgtcagccattgaaggtctggaaatcgtcgccccgcagctggatacctggatagttcccctctcaattatcgttctcactttattatttatgattcaaaaacatggcacggctatggtcggtaagctgtttgcgccgatcatgctgacctggtttttgattctggcaggactggggttacgtagcattattgctaacccggaagtgctgcatgcgctgaatccaatgtgggcggtgcatttcttccttgaatacaaaacggtttcttttattgcattaggggcagtggtgttgtcgattacgggggtcgaggcgctgtatgctgatatggggcactttggtaagttccctattcgcctggcgtggttcaccgtcgtattaccttccttgacccttaattacttcggtcagggagcgctgttgttaaagaacccggaagcgattaagaacccgttcttcctgttggcaccggactgggcgctgatcccgctgctgatcatcgccgcactggcgacggtaattgcctcgcaggcggttatctctggcgtcttctcattgacgcgtcaggcggtacgtctgggatatttgtcgccgatgcgcattattcacacctccgaaatggagtcagggcaaatctatattccgtttgtgaactggatgctctatgtcgcggtcgtgattgtgattgtcagctttgagcactccagcaacctggcggcggcgtacgggattgcggtgaccggaaccatggtgctgacgtctattctctcgactaccgtggcacgtcagaactggcactggaataagtattttgttgcgctgatcctgattgctttcctttgtgtcgatattccattgttcaccgctaacctcgataaactgctctccggcggctggttgccattgagcctcggtactgtgatgtttatcgtgatgaccacctggaagagcgagcgtttccgcttgctgcggcggatgcatgaacatggtaactctctggaagcgatgattgcttcgctggagaaatcaccgcctgttcgcgtgcccgggaccgcggtgtatatgtcgcgtgcaatcaacgtcattccctttgcgctgatgcataaccttaaacataacaaggtattgcatgagcgggtcgattctgttaactctgcgcaccgaagacgctccatatgtccataacgtccgtcgggtacagattgaacaactgtcgcccactttctggcgcgtggtggcaagttatggttgcgagaaacgccaaacgtagaagaagttttccaccgctgcggtctggaaggattaagttgccggatgatggaaacctccttctttatgtcgcatgagtcgttgatcctcgcaaacgcccgtggtatttgcgtctgcgcggcaagctgtacttgctgctgcaacgtaatgcgctgcgtgcaccagatcaatttgaaatcccgccaaacagggttatcgaactgggtactcaggtcgaaatctaacgccagacgcctcctttcttcataagggggcgtttttgttttcatggttaatcaccatgtaaaacgtttcgaggttgatcacatttccgtaacgtcacgatggttttcccaactcagtcaggattaaactgtgggtcagcgaaacgtttcgctgatggagaaaaaaatgaaaaaaggcaccgttcttaattctgatatttcatcggtgatctcccgtctgggacataccgatacgctggtggtgtgtgatgctggtttacccatccccaaaagtacaacgcgtatcgatatggcattaacccagggtgtaccttcttttatgcaggtgctgggcgtcgtcacaaatgaaatgcaggtcgaggcggccattatcgcggaagagatcaaacaccataatccgcaactccacgaaacgttgctcactcaccttgagcagctgcaaaaacaccagggaaataccattgaaattcgttacaccacgcatgaacaattcaaacaacaaaccgcagaaagtcaggcggtaattcgcagcggagaatgttctccgtatgcgaatatcattctctgtgctggcgtgacgttctgaggccgtcatggaagcattacttcagcttaaaggcatcgataaagccttcccgggcgtaaaagccctctcgggcgcagcgttaaatgtctatccgggccgcgtgatggcgctggtgggcgaaaacggcgcgggtaaatccaccatgatgaaagtgcttactggcatctatactcgcgatgccggtacgcttttatggctggggaaagaaacgacatttaccgggccaaaatcttcccaggaagccgggattgggattatccatcaggaactgaacctgatcccgcagttgaccattgccgaaaacattttcctcggtcgtgagtttgttaatcgctttggcaaaattgactggaaaaccatgtatgccgaagcggataaattgctggctaaacttaacctgcgctttaaaagcgacaagctggtgggcgatctttccatcggtgaccagcaaatggttgaaatcgccaaagtgctgagctttgagtcgaaagtcatcattatggatgaaccgaccgatgcgctgaccgataccgaaaccgaatccctgttccgcgtcatccgcgagctgaaatcgcaaggccgcggtattgtctatatctcccaccgcatgaaagaaatcttcgagatttgcgatgacgttaccgtttttcgtgatgggcaatttattgctgagcgcgaagtggcatcactgaccgaagattcgctgattgagatgatggtgggtcgcaagctggaagatcaatatccgcacctggacaaagcgccgggagatatccgcctgaaagtcgataatctctgcggacctggcgttaacgatgtctcttttactttacgcaaaggcgaaattcttggcgtctctggtttgatgggcgcaggtcgtaccgaactgatgaaagtgctctacggcgcactaccgcgcaccagcggttacgtcaccctggatgggcatgaagtcgttacccgttcaccgcaggatggcctggcaaacggcattgtgtatatctccgaagaccgtaaacgtgacggtttagtgttgggcatgtcagtaaaagagaacatgtcgctgacagcgctgcgctacttcagccgcgctggcggcagtttgaagcatgccgatgaacagcaggctgtgagtgatttcattcgtctgtttaatgtgaaaactccgtcgatggaacaggcaattggtctgctttccggtggcaatcagcaaaaagtggcgattgcccgcggtctgatgacacgccccaaagtgttgatccttgatgaacctacccgtggcgtagatgtcggcgcgaaaaaagagatctatcaactgattaaccagttcaaagccgatggcttgagcatcattctggtgtcatcggagatgccagaagtattaggcatgagcgatcgcatcatcgtcatgcatgaagggcatctcagcggggaatttactcgtgagcaggccacccaggaagtgttaatggctgccgctgtgggcaagcttaatcgcgtgaatcaggagtaaaaaaatgacaacccagactgtctctggtcgccgttatttcacgaaagcgtggctgatggagcagaaatcgcttatcgctctgctggtgctgatcgcgattgtctcgacgttaagcccgaactttttcaccatcaataacttattcaatattctccagcaaacctcagtgaacgccattatggcggtcgggatgacgctggtgatcctgacgtcgggcatcgacttatcggtaggttctctgttggcgctgaccggcgcagttgctgcatctatcgtcggcattgaagtcaatgcgctggtggctgtcgctgctgctctcgcgttaggtgccgcaattggtgcggtaaccggggtgattgtagcgaaaggtcgcgtccaggcgtttatcgctacgctggttatgatgcttttactgcgcggcgtgaccatggtttataccaacggtagcccagtgaataccggctttactgagaacgccgatctgtttggctggtttggtattggtcgtccgctgggcgtaccgacgccagtctggatcatggggattgtcttcctcgcggcctggtacatgctgcatcacacgcgtctggggcgttacatctacgcgctgggcggcaacgaagcggcaacgcgtctttctggtatcaacgtcaataaaatcaaaatcatcgtctattctctttgtggtctgctggcatcgctggccgggatcattgaagtggcgcgtctctcctccgcacaacccacggcggggactggctatgagctggatgctattgctgcggtggttctgggcggtacgagtctggcgggcggaaaaggtcgcattgttgggacgttgatcggcgcattaattcttggcttccttaataatggattgaatttgttaggtgtttcctcctattaccagatgatcgtcaaagcggtggtgattttgctggcggtgctggtagacaacaaaaagcagtaataacgactacaggacatcttgaatatgaacatgaaaaaactggctaccctggtttccgctgttgcgctaagcgccaccgtcagtgcgaatgcgatggcaaaagacaccatcgcgctggtggtctccacgcttaacaacccgttctttgtatcgctgaaagatggcgcgcagaaagaggcggataaacttggctataacctggtggtgctggactcccagaacaacccggcgaaagagctggcgaacgtgcaggacttaaccgttcgcggcacaaaaattctgctgattaacccgaccgactccgacgcagtgggtaatgctgtgaagatggctaaccaggcgaacatcccggttatcactcttgaccgccaggcaacgaaaggtgaagtggtgagccacattgcttctgataacgtactgggcggcaaaatcgctggtgattacatcgcgaagaaagcgggtgaaggtgccaaagttatcgagctgcaaggcattgctggtacatccgcagcccgtgaacgtggcgaaggcttccagcaggccgttgctgctcacaagtttaatgttcttgccagccagccagcagattttgatcgcattaaaggtttgaacgtaatgcagaacctgttgaccgctcatccggatgttcaggctgtattcgcgcagaatgatgaaatggcgctgggcgcgctgcgcgcactgcaaactgccggtaaatcggatgtgatggtcgtcggatttgacggtacaccggatggcgaaaaagcggtgaatgatggcaaactagcagcgactatcgctcagctacccgatcagattggcgcgaaaggcgtcgaaaccgcagataaagtgctgaaaggcgagaaagttcaggctaagtatccggttgatctgaaactggttgttaagcagtagttttaatcaggttgtatgacctgatggtgacataaatacgtcatcgacagatgaacgtgtaatataaagaaaagcagggcacgcgccaccctaacacggtggcgcattttatggacatcccgaatatgcaaaacgcaggcagcctcgttgttcttggcagcattaatgctgaccacattcttaatcttcaatcttttcctactccaggcgaaaccgtaaccggtaaccactatcaggttgcatttggcggcaaaggcgcgaatcaggctgtggctgctgggcgtagcggtgcgaatatcgcgtttattgcctgtacgggtgatgacagcattggtgagagcgttcgccagcagctcgccactgataacattgatattactccggtcagcgtgatcaaaggcgaatcaacaggtgtggcgctgatttttgttaatggcgaaggtgagaatgtcatcggtattcatgccggcgctaatgctgccctttccccggcgctggtggaagcgcaacgtgagcgtattgccaacgcgtcagcattattaatgcagctggaatcaccactcgaaagtgtgatggcagcggcgaaaatcgcccatcaaaataagactatcgttgcgcttaacccggctccggctcgcgaacttcctgacgaactgctggcgctggtggacattattacgccaaacgaaacggaagcagaaaagctcaccggtattcgtgttgaaaatgatgaagatgcagcgaaggcggcgcaggtactgcatgaaaaaggtatccgtactgtactgattactttaggaagtcgtggtgtatgggctagcgtgaatggtgaaggtcagcgcgttcctggattccgggtgcaggctgtcgataccattgctgccggagatacctttaacggtgcgttaatcacggcattgctggaagaaaaaccattgccagaggcgattcgttttgcccatgctgccgctgcgattgccgtaacacgtaaaggcgcacaaccttccgtaccgtggcgtgaagagatcgacgcatttttagacaggcagaggtgacgcttggctacaatgaaagatgttgcccgcctggcgggcgtttctacctcaacagtttctcacgttatcaataaagatcgcttcgtcagtgaagcgattaccgccaaagttgaagcggcgattaaagaactcaattacgcgccatcagctctggcgcgtagcctcaaactcaatcaaacacataccattggcatgttgatcactgccagtaccaatcctttctattcagaactggtgcgtggcgttgaacgcagctgcttcgaacgcggttatagtctcgtcctttgcaataccgaaggcgatgaacagcggatgaatcgcaatctggaaacgctgatgcaaaaacgcgttgatggcttgctgttactgtgcaccgaaacgcatcaaccttcgcgtgaaatcatgcaacgttatccgacagtgcctactgtgatgatggactgggctccgttcgatggcgacagcgatcttattcaggataactcgttgctgggcggagacttagcaacgcaatatctgatcgataaaggtcatacccgtatcgcctgtattaccggcccgctggataaaactccggcgcgcctgcggttggaaggttatcgggcggcgatgaaacgtgcgggtctcaacattcctgatggctatgaagtcactggtgattttgaatttaacggcgggtttgacgctatgcgccaactgctatcacatccgctgcgtcctcaggccgtctttaccggaaatgacgctatggctgttggcgtttaccaggcgttatatcaggcagagttacaggttccgcaggatatcgcggtgattggctatgacgatatcgaactggcaagctttatgacgccaccattaaccactatccaccaaccgaaagatgaactgggggagctggcgattgatgtactcatccatcggataacccagccgacccttcagcaacaacgattacaacttactccgattctgatggaacgcggttcggcttagatttacgctgtcttttgatcaaattattaccatcggttgttttcagaagcatgaacattgctgctgaagcaacagtaataatgcccattgtgataaacgtatagtggaattgttcgacagtcgttgtgccttccattccttcataaacgcgaaggacggccgcacttacagcaacgcctaaactaatcgacagttgctgcgtgaccgccagaacactgttaccgctgctggcattgtcatcggtcagatcggcaagtgtgatggtattcatcgcggtaaactgcgtcgacatagccatccctaatataaacaacggcaagatcagcatccatatagccattgctggtgattgcaaagagaactgagcgatcattagcccaataatcaccgtgatccccactaacgtatggcgatagcccagacgacgtaagacttgggtaaccatcgattttgcaataatggaacctaacgctgtcggtgccatcatacagccagcaataaacgcctgataaccaaatcctacctgtaacatcaatggcataaggaacggtacacagccggtccccagacgggttgcaatattgcctacgataccgatcgagaaagtgcgggttttaaataaatctaatgaaattaatgggtttggcgtgcgtcgtgcatggagaatatagagaagcagtaacccgatgctggtgacaattaccgtcaaggcaatccagctggcgacaatcttttccccgaatagctctattccgcttgagaagagaacaaggctgaggccaaacagcaaaaagccagtgatatcgaatctgcgtcgtgcggtggtgaaattgggcatatgtttgcgcgcgtaaagaaggcccgcaatacctatggggatattgattaaaaatatccagtgccaggttgcccaggtgaccagcacgccgccaagaacggggcctaaaattggccccaccagacccggcatggcgacaaaattcaatactggaagaagttcattacgaggataagcgcgcagtaaggccagccgagcaacaggcatcatcattgcgccgcctatcccctgaataacccggaagacaaccagctgtggtagcgaattagaaagtgcgcaggccagagaacccaatgtgaacagactcacggcaagggtaaaaatgcgacgcgtaccgaagcgatcggctagccatccgcttaccggaataagcatcgccaccgtcagcgtataactgatgatggctgattgcatcgcgagaggagaacgattaaggctatgagcgattgcgggtaaggcggtattaagaatagtggcatcaagtgcctgcatgaagaaggccatcgccgcgatccacggcaaacccgccatactgcgcttctttttatcgctcattcaatgtcctgttatcgggttatcacttatcaggtgagcgtagcagcgcctgacaagctttaaatgccgcgtcgccatcgctttggataatcgcatcgacaatcgcctgatgcagatccagctttatcactgtgtcgctggtaattgacgtgaagtaagtgtgataaaccgaatggaatagcgaggcgaatgaggtcaaaaacggattggcgctcatttcatagatatgctcatgccaggccatatcgacttcgatccagcgttcacggcgaaagttctcttttaatgccgccatttcggccattaacgtattgagatgcgctttctgttccgcggtgccaaccgttgccagtaggcaggcttgcggctccagacagatacgcataaccagaaagtgatcgatgacctgatgaaagttctcttctgtcatccaccaggtaagcaattcctgatcaagaaaattccagttcgattgtggcatgacccgagtaccaattcgcggtcgcggtaaaaccatcccttttgccgttaacgttttgaccgcttcgcgtaccgctgtacgactcactccaaattgctcgcccagctcaatctcaccgggcaaaatggtgccgggttcatattcaccttttaagatccgttgcgccagcttctcagccagaacatacgaaaggtttttctgtgcagctaactgttgtgcgcttaaaggcattacttatcttcctttttctttttattcctccttagtatgccaccaggaagtgtgattacggttgcaaaaacggcaaattgcttgttttatggcacattaacggggcttttgctgaaaaaatgcgcggtcagaaaattattttaaatttcctcttgtcaggccggaataactccctataatgcgccaccactgacacggaacaacggcaaacacgccgccgggtcagcggggttctcctgagaactccggcagagaaagcaaaaataaatgcttgactctgtagcgggaaagcgtattatgcacaccccgcgccgctgagaaaaagcaaagcggcactgctctttaacaatttatcagacaatctgtgtgggcactcgaagatacggattcttaacgtcgcaagacgaaaaatgaataccaagtctcaagagtgaacacgtaattcattacgaagtttaattctttgagcatcaaacttttaaattgaagagtttgatcatggctcagattgaacgctggcggcaggcctaacacatgcaagtcgaacggtaacaggaaacagcttgctgtttcgctgacgagtggcggacgggtgagtaatgtctgggaaactgcctgatggagggggataactactggaaacggtagctaataccgcataacgtcgcaagaccaaagagggggaccttcgggcctcttgccatcagatgtgcccagatgggattagctagtaggtggggtaacggctcacctaggcgacgatccctagctggtctgagaggatgaccagccacactggaactgagacacggtccagactcctacgggaggcagcagtggggaatattgcacaatgggcgcaagcctgatgcagccatgccgcgtgtatgaagaaggccttcgggttgtaaagtactttcagcggggaggaagggagtaaagttaatacctttgctcattgacgttacccgcagaagaagcaccggctaactccgtgccagcagccgcggtaatacggagggtgcaagcgttaatcggaattactgggcgtaaagcgcacgcaggcggtttgttaagtcagatgtgaaatccccgggctcaacctgggaactgcatctgatactggcaagcttgagtctcgtagaggggggtagaattccaggtgtagcggtgaaatgcgtagagatctggaggaataccggtggcgaaggcggccccctggacgaagactgacgctcaggtgcgaaagcgtggggagcaaacaggattagataccctggtagtccacgccgtaaacgatgtcgacttggaggttgtgcccttgaggcgtggcttccggagctaacgcgttaagtcgaccgcctggggagtacggccgcaagttaaaactcaaatgaattgacgggggcccgcacaagcggtggagcatgtggtttaattcgatgcaacgcgaagaaccttacctggtcttgacatccacggaagttttcagagatgagaatgtgccttcgggaaccgtgagacaggtgctgcatggctgtcgtcagctcgtgttgtgaaatgttgggttaagtcccgcaacgagcgcaacccttatcctttgttgccagcggtccggccgggaactcaaaggagactgccagtgataaactggaggaaggtggggatgacgtcaagtcatcatggcccttacgaccagggctacacacgtgctacaatggcgcatacaaagagaagcgacctcgcgagagcaagcggacctcataaagtgcgtcgtagtccggattggagtctgcaactcgactccatgaagtcggaatcgctagtaatcgtggatcagaatgccacggtgaatacgttcccgggccttgtacacaccgcccgtcacaccatgggagtgggttgcaaaagaagtaggtagcttaaccttcgggagggcgcttaccactttgtgattcatgactggggtgaagtcgtaacaaggtaaccgtaggggaacctgcggttggatcacctccttaccttaaagaagcgttctttgcagtgctcacacagattgtctgataggaagtgaaaagcaaggcgtcttgcgaagcagactgatacgtccccttcgtctagaggcccaggacaccgccctttcacggcggtaacaggggttcgaatcccctaggggacgccacttgctggtttgtgagtgaaagtcacctgccttaatatctcaaaactcatcttcgggtgatgtttgagatatttgctctttaaaaatctggatcaagctgaaaattgaaacactgaacaacgaaagttgttcgtgagtctctcaaattttcgcaacacgatgatgaatcgaaagaaacatcttcgggttgtgaggttaagcgactaagcgtacacggtggatgccctggcagtcagaggcgatgaaggacgtgctaatctgcgataagcgtcggtaaggtgatatgaaccgttataaccggcgatttccgaatggggaaacccagtgtgtttcgacacactatcattaactgaatccataggttaatgaggcgaaccgggggaactgaaacatctaagtaccccgaggaaaagaaatcaaccgagattcccccagtagcggcgagcgaacggggagcagcccagagcctgaatcagtatgtgtgttagtggaagcgtctggaaaggcgcgcgatacagggtgacagccccgtacacaaaaatgcacatattgtgagctcgatgagtagggcgggacacgtggtatcctgtctgaatatgggagggaccatcctccaaggctaaatactcctgactgaccgatagtgaaccagtaccgtgagggaaaggcgaaaagaaccccggcgaggggagtgaaaaagaacctgaaaccgtgtacgtacaagcagtgggagcacgcttaggcgtgtgactgcgtaccttttgtataatgggtcagcgacttatattctgtagcaaggttaaccgaataggggagccgaagggaaaccgagtcttaactgggcgttaagttgcagggtatagacccgaaacccggtgatctagccatgggcaggttgaaggttgggtaacactaactggaggaccgaaccgactaatgttgaaaaattagcggatgacttgtggctgggggtgaaaggccaatcaaaccgggagatagctggttctccccgaaagctatttaggtagcgcctcgtgaattcatctccgggggtagagcactgtttcggcaagggggtcatcccgacttaccaacccgatgcaaactgcgaataccggagaatgttatcacgggagacacacggcgggtgctaacgtccgtcgtgaagagggaaacaacccagaccgccagctaaggtcccaaagtcatggttaagtgggaaacgatgtgggaaggcccagacagccaggatgttggcttagaagcagccatcatttaaagaaagcgtaatagctcactggtcgagtcggcctgcgcggaagatgtaacggggctaaaccatgcaccgaagctgcggcagcgacgcttatgcgttgttgggtaggggagcgttctgtaagcctgcgaaggtgtgctgtgaggcatgctggaggtatcagaagtgcgaatgctgacataagtaacgataaagcgggtgaaaagcccgctcgccggaagaccaagggttcctgtccaacgttaatcggggcagggtgagtcgacccctaaggcgaggccgaaaggcgtagtcgatgggaaacaggttaatattcctgtacttggtgttactgcgaaggggggacggagaaggctatgttggccgggcgacggttgtcccggtttaagcgtgtaggctggttttccaggcaaatccggaaaatcaaggctgaggcgtgatgacgaggcactacggtgctgaagcaacaaatgccctgcttccaggaaaagcctctaagcatcaggtaacatcaaatcgtaccccaaaccgacacaggtggtcaggtagagaataccaaggcgcttgagagaactcgggtgaaggaactaggcaaaatggtgccgtaacttcgggagaaggcacgctgatatgtaggtgaagcgacttgctcgtggagctgaaatcagtcgaagataccagctggctgcaactgtttattaaaaacacagcactgtgcaaacacgaaagtggacgtatacggtgtgacgcctgcccggtgccggaaggttaattgatggggtcagcgcaagcgaagctcttgatcgaagccccggtaaacggcggccgtaactataacggtcctaaggtagcgaaattccttgtcgggtaagttccgacctgcacgaatggcgtaatgatggccaggctgtctccacccgagactcagtgaaattgaactcgctgtgaagatgcagtgtacccgcggcaagacggaaagaccccgtgaacctttactatagcttgacactgaacattgagccttgatgtgtaggataggtgggaggctttgaagtgtggacgccagtctgcatggagccgaccttgaaataccaccctttaatgtttgatgttctaacgtggacccgtgatccgggttgcggacagtgtctggtgggtagtttgactggggcggtctcctcctaaagagtaacggaggagcacgaaggttggctaatcctggtcggacatcaggaggttagtgcaatggcataagccagcttgactgcgagcgtgacggcgcgagcaggtgcgaaagctaggtcatagtgatccggtggttctgaatggaagggccatcgctcaacggataaaaggtactccgggataacaggctgataccgcccaagagttcatatcgacggcggtgtttggcacctcgatgtcggctcatcacatcctggagctgaagtaggtcccaagggtatggctgttcgccatttaaagtggtacgcgagctgggtttagaacgtcgtgagacagttcggtccctatctgccgtgggcgctggagaactgaggggggctgctcctagtacgagaggaccggagtggacgcatcactggtgttcgggttgtcatgccaatggcactgcccggtagctaaatgcggaagagataagtgctgaaagcatctaagcacgaaacttgccccgagatgagttctccctgactcctttaagggtcctgaaggaacgttgaagacgacgacgttgataggccgggtgtgtaagcgcagcgatgcgttgagctaaccggtactaatgaaccgtgaggcttaaccttacaacgccgaagctgttttggcggatgagagaagattttcagcctgatacagattaaatcagaacgcagaagcggtctgatgaaacagaatttgcctggcggccgtagcgcggtggtcccacctgaccccatgccgaactcagaagtgaaacgccgtagcgccgatggtagtgtggggtctccccatgcgagagtagggaactgccaggcatcaaattaagcagtaagccggtcataaaaccggtggttgtaaaagaattcggtggagcggtagttcagtcggttagaatacctgcctgtcacgcagggggtcgcgggttcgagtcccgtccgttccgccaccctaattaggggcgtagttcaattggtagagcaccggtctccaaaaccgggtgttgggagttcgagtctctccgcccctgccagaaatcatccttagcgaaacgtaaggattttttttatctgaaataaccctctccgaagtaaatccttctaccggcatccttgccagccattcatattaatacacttcatccagcacgttaattttcaaaagatcgcgaatcaacgcatttttatcgctattttgcagccatatggcataaagcggccgtgaaagtgttgtgctatcgacaacggtatgcaggccgccttttttacgcgcccagctgacgggtagccaggtgcaaccattaagcatcgcaatctgttgctgtgccagttcagcagaactggttgtcagaatgggcacttcgtcagcaccgatcaaacctgcctcatgctgttgaaaatctggcccccactcaagtcgcagataattaagatctccctttagttttgaaggggcactggtataaagcgctaaagtgaaatatcccagcaactgactactaaattcgtccattttgggcgcttcagtggtaataagaagatcaagctggcgttcatgcagctgttttaccagagactgccgttgggcaattcgcgcttcgaactgtaagcctgtatgggcatcctgattttgatacaagcgtcccagccactgattaagcatacattcccacaacgaggcgctggcaccgatagaaaactcgttatgtcgtgaggtatgcgccacctcttacgggcggcctgccaggtgctcatgagcgtttctgcataaggcagtagtttttcaccggcagcggttaaacggatattgtttctgtggcgggtgaaaaggttcacacccagttgattttccagttgtctgattcgaaagctcactgctgactgggtcagatagagcgattcagccgctcgaccaaagtgacgcgttcggctaacttccaggaaagtttttaacaattccgtatccacagtgctctccgcaaaattatttgtcgttatgatttaaatgttttgttttacactctgtcaagcgtaactaatactccgcgccataactagctcggtcaaagaattaggagcgtgcaggatggcggaaagctttacgacgactaatcgatatttcgacaataaacattatccacgtggattctctcgtcatggtgatttcaccatcaaagaggcacaactgcttgagcgtcatggttatgccttcaatgagttggatcttggcaaacgcgagccggttaccgaggaagagaaactcttcgtagcagtatgccgtggcgaacgtgagccagtgacagaagcagaacgcgtgtggtccaagtatatgacgcgtattaagcgtccaaaacgttttcacaccctttccgcggtaaaccgcaggttgaaggtgctgaagactacaccgattctgacgattaataaaaagggcgaaatgccctttttttatgtcagtagtttctgcagatggatgagcaaacggtcaatcgctcgatagctaactgcctcctgcaaatgctgacgtgtgataatgtcagactgatcaatatcagcaatggttcgtgcaactttcaataaccgctgccaggcacgaatcgataaccccagatggatcagtgttccttccaaccacatcgcatcttcgctctcaagtttgcagaattggcgtatttccggactatccagccaggcattcagtttattctgccgcttaaattggcgctctctggcggccattacgcgttgtttaacggtggcgctgctttctcccggcactaccgttttactcaaaatgccggggggtggtaatgggatctccagtgagagatcgaagcggtcgagaaagggccccgagagccggttgagataacgtaatgtctgttctggcgtgcagcggttatggtttccctgataatgtccggtagggctgggattcatcgccgcaacaagctggaaacgggctggataggttatttttgctcgtgtgcgtgaaagatggatctgcccggattcaatcggctctcgcaaggcatccagtgtacgccgttcaaattcaggtagctcatcaagaaaaagcacgccgttatgcgccagcgaaatttcaccgggccctggaattgcgccaccgcctaccatcgcagttaacgatgcactgtgatgaggtgagcggaacgggcgctgccgccattgtttttgtactgattcagcatttaccagacttaatatcgcagcactctccagtgcctcttcattgcttaaatctggcaacaggccattaatacggctggcgagcattgttttacctgttcccggcggcccaatcagtaaaaggttgtgcccgccagcagcggtaatttccagtcctcgctttccttgttcctgaccgataacatcactgagatcatgttgtagcgcccgggatactgcatcagttggtttcgggcgttcgagagcgtgcttaccttccagaaacgcacagacagcttgcagatgatcggctatcaggcatccttcaccgttaattagccccacttcatcttcgttatctttcgcgacgataatttttctgcccgacttaatagcttcagttgcactggagattgcgccgggaacgccacgcagagcgcctgtaagcgccagttctccgactaattcatattcatctaacttattggctgtaagctgttctgaggccgccagcaacgcaatggcgataggtaaatcatatcgtcccccttcttttggcagatcagctggagccaggttgatggtgatttttttcgccggatattcatatccgctattgataatggcgctgcgcacgcgatcgcgagcttcttttaccgttgtttctggtaagcccaccatcgttaagccgggtagacctttactgatatgtacctcaacagtgatcgggggcgcatttactcccagggctgcgcgggtatgaacaattgacagtgacataagccctccttgagtcaccattatgtgcataagatatcgctgctgtagcccgctaattcgtgaattttagtggctgattcctgtttatttgtgcaagtgaagttgagttgttctggcggtggaatgatgctcgcaaaaaatgcagcggacaaggatgaactacgaggaagggaacaacattcatactgaaattgaatttttttcactcactattttatttttaaaaaacaacaatttatattgaaattattaaacgcatcataaaaatcggccaaaaaatatcttgtactatttacaaaacctatggtaactctttaggcattccttcgaacaagatgcaagaaaagacaaaatgacagcccttctacgagtgattagcctggtcgtgattagcgtggtggtgattattatcccaccgtgcggggctgcacttggacgaggaaaggcttagagatcaagccttaacgaactaagacccccgcaccgaaaggtccgggggttttttttgaccttaaaaacataaccgaggagcagacaatgaataacagcacaaaattctgtttctcaagattcaggacggggaactaactatgaatggcgcacagtgggtggtacatgcgttgcgggcacagggtgtgaacaccgttttcggttatccgggtggcgcaattatgccggtttacgatgcattgtatgacggcggcgtggagcacttgctatgccgacatgagcagggtgcggcaatggcggctatcggttatgctcgtgctaccggcaaaactggcgtatgtatcgccacgtctggtccgggcgcaaccaacctgataaccgggcttgcggacgcactgttagattccatccctgttgttgccatcaccggtcaagtgtccgcaccgtttatcggcactgacgcatttcaggaagtggatgtcctgggattgtcgttagcctgtaccaagcacagctttctggtgcagtcgctggaagagttgccgcgcatcatggctgaagcattcgacgttgcctgctcaggtcgtcctggtccggttctggtcgatatcccaaaagatatccagttagccagcggtgacctggaaccgtggttcaccaccgttgaaaacgaagtgactttcccacatgccgaagttgagcaagcgcgccagatgctggcaaaagcgcaaaaaccgatgctgtacgttggcggtggcgtgggtatggcgcaggcagttccggctttgcgtgaatttctcgctgccacaaaaatgcctgccacctgtacgctgaaagggctgggcgcagtagaagcagattatccgtactatctgggcatgctggggatgcacggcaccaaagcggcaaacttcgcggtgcaggagtgtgacctgctgatcgccgtgggcgcacgttttgatgaccgggtgaccggcaaactgaacaccttcgcgccacacgccagtgttatccatatggatatcgacccggcagaaatgaacaagctgcgtcaggcacatgtggcattacaaggtgatttaaatgctctgttaccagcattacagcagccgttaaatcaatgactggcagcaacactgcgcgcagctgcgtgatgaacattcctggcgttacgaccatcccggtgacgctatctacgcgccgttgttgttaaaacaactgtcggatcgtaaacctgcggattgcgtcgtgaccacagatgtggggcagcaccagatgtgggctgcgcagcacatcgcccacactcgcccggaaaatttcatcacctccagcggtttaggtaccatgggttttggtttaccggcggcggttggcgcacaagtcgcgcgaccgaacgataccgttgtctgtatctccggtgacggctctttcatgatgaatgtgcaagagctgggcaccgtaaaacgcaagcagttaccgttgaaaatcgtcttactcgataaccaacggttagggatggttcgacaatggcagcaactgttttttcaggaacgatacagcgaaaccacccttactgataaccccgatttcctcatgttagccagcgccttcggcatccatggccaacacatcacccggaaagaccaggttgaagcggcactcgacaccatgctgaacagtgatgggccatacctgcttcatgtctcaatcgacgaacttgagaacgtctggccgctggtgccgcctggcgccagtaattcagaaatgttggagaaattatcatgatgcaacatcaggtcaatgtatcggctcgcttcaatccagaaaccttagaacgtgttttacgcgtggtgcgtcatcgtggtttccacgtctgctcaatgaatatggccgccgccagcgatgcacaaaatataaatatcgaattgaccgttgccagcccacggtcggtcgacttactgtttagtcagttaaataaactggtggacgtcgcacacgttgccatctgccagagcacaaccacatcacaacaaatccgcgcctgagcgcaaaaggaatataaaaatgaccacgaagaaagctgattacatttggttcaatggggagatggttcgctgggaagacgcgaaggtgcatgtgatgtcgcacgcgctgcactatggcacttcggtttttgaaggcatccgttgctacgactcgcacaaaggaccggttgtattccgccatcgtgagcatatgcagcgtctgcatgactccgccaaaatctatcgcttcccggtttcgcagagcattgatgagctgatggaagcttgtcgtgacgtgatccgcaaaaacaatctcaccagcgcctatatccgtccgctgatcttcgtcggtgatgttggcatgggagtaaacccgccagcgggatactcaaccgacgtgattatcgctgctttcccgtggggagcgtatctgggcgcagaagcgctggagcaggggatcgatgcgatggtttcctcctggaaccgcgcacgaccaaacaccatcccgacggcggcaaaagccggtggtaactacctctcttccctgctggtgggtagcgaagcgcgccgccacggttatcaggaaggtatcgcgctggatgtgaacggttatatctctgaaggcgcaggcgaaaacctgtttgaagtgaaagatggtgtgctgttcaccccaccgttcacctcctccgcgctgccgggtattacccgtgatgccatcatcaaactggcgaaagagctgggaattgaagtacgtgagcaggtgctgtcgcgcgaatccctgtacctggcggatgaagtgtttatgtccggtacggcggcagaaatcacgccagtgcgcagcgtagacggtattcaggttggcgaaggccgttgtggcccggttaccaaacgcattcagcaagccttcttcggcctcttcactggcgaaaccgaagataaatggggctggttagatcaagttaatcaataaatacaaaaaatgggacggcacgcaccgtcccatttacgagacagacactgggagtaaataaagtatgcctaagtaccgttccgccaccaccactcatggtcgtaatatggcgggtgctcgtgcgctgtgggcccaccggaatgaccgacgccgatttcggtaagccgattatcgcggttgtgaactcgttcacccaatttgtaccgggtcacgtccatctgcgcgatctcggtaaactggtcgccgaacaaattgaagcggctggcggcgttgccaaagagttcaacaccattgcggtggatgatgggattgccatgggccacggggggatgctttattcactgccatctcgcgaactgatcgctgattccgttgagtatatggtcaacgcccactgcgccgacgccatggtctgcatctctaactgcgacaaaatcaccccggggatgctgatggcttccctgcgcctgaatattccggtgatctttgtttccggcggcccgatggaggccgggaaaaccaaactttccgatcagatcatcaagctcgatctggttgatgcgatgatccagggcgcagacccgaaagtatctgactcccagagcgatcaggttgaacgttccgcgtgtccgacctgcggttcctgctccgggatgtttaccgctaactcaatgaactgcctgaccgaagcgctgggcctgtcgcagccgggcaacggctcgctgctggcaacccacgccgaccgtaagcagctgttccttaatgctggtaaacgcattgttgaattgaccaaacgttattacgagcaaaacgacgaaagtgcactgccgcgtaatatcgccagtaaggcggcgtttgaaaacgccatgacgctggatatcgcgatgggtggatcgactaacaccgtacttcacctgctggcggcggcgcaggaagcggaaatcgacttcaccatgagtgatatcgataagctttcccgcaaggttccacagctgtgtaaagttgcgccgagcacccagaaataccatatggaagatgttcaccgtgctggtggtgttatcggtattctcggcgaactggatcgcgcggggttactgaaccgtgatgtgaaaaacgtacttggcctgacgttgccgcaaacgctggaacaatacgacgttatgctgacccaggatgacgcggtaaaaaatatgttccgcgcaggtcctgcaggcattcgtaccacacaggcattctcgcaagattgccgttgggatacgctggacgacgatcgcgccaatggctgtatccgctcgctggaacacgcctacagcaaagacggcggcctggcggtgctctacggtaactttgcggaaaacggctgcatcgtgaaaacggcaggcgtcgatgacagcatcctcaaattcaccggcccggcgaaagtgtacgaaagccaggacgatgcggtagaagcgattctcggcggtaaagttgtcgccggagatgtggtagtaattcgctatgaaggcccgaaaggcggtccggggatgcaggaaatgctctacccaaccagcttcctgaaatcaatgggtctcggcaaagcctgtgcgctgatcaccgacggtcgtttctctggtggcacctctggtctttccatcggccacgtctcaccggaagcggcaagcggcggcagcattggcctgattgaagatggtgacctgatcgctatcgacatcccgaaccgtggcattcagttacaggtaagcgatgccgaactggcggcgcgtcgtgaagcgcaggacgctcgaggtgacaaagcctggacgccgaaaaatcgtgaacgtcaggtctcctttgccctgcgtgcttatgccagcctggcaaccagcgccgacaaaggcgcggtgcgcgataaatcgaaactggggggttaataatggctgactcgcaacccctgtccggtgctccggaaggtgccgaatatttaagagcagtgctgcgcgcgccggtttacgaggcggcgcaggttacgccgctacaaaaaatggaaaaactgtcgtcgcgtcttgataacgtcattctggtgaagcgcgaagatcgccagccagtgcacagctttaagctgcgcggcgcatacgccatgatggcgggcctgacggaagaacagaaagcgcacggcgtgatcactgcttctgcgggtaaccacgcgcagggcgtcgcgttttcttctgcgcggttaggcgtgaaggccctgatcgttatgccaaccgccaccgccgacatcaaagtcgacgcggtgcgcggcttcggcggcgaagtgctgctccacggcgcgaactttgatgaagcgaaagccaaagcgatcgaactgtcacagcagcaggggttcacctgggtgccgccgttcgaccatccgatggtgattgccgggcaaggcacgctggcgctggaactgctccagcaggacgcccatctcgaccgcgtatttgtgccagtcggcggcggcggtctggctgctggcgtggcggtgctgatcaaacaactgatgccgcaaatcaaagtgatcgccgtagaagcggaagactccgcctgcctgaaagcagcgctggatgcgggtcatccggttgatctgccgcgcgtagggctatttgctgaaggcgtagcggtaaaacgcatcggtgacgaaaccttccgtttatgccaggagtatctcgacgacatcatcaccgtcgatagcgatgcgatctgtgcggcgatgaaggatttattcgaagatgtgcgcgcggtggcggaaccctctggcgcgctggcgctggcgggaatgaaaaaatatatcgccctgcacaacattcgcggcgaacggctggcgcatattctttccggtgccaacgtgaacttccacggcctgcgctacgtctcagaacgctgcgaactgggcgaacagcgtgaagcgttgttggcggtgaccattccggaagaaaaaggcagcttcctcaaattctgccaactgcttggcgggcgttcggtcaccgagttcaactaccgttttgccgatgccaaaaacgcctgcatctttgtcggtgtgcgcctgagccgcggcctcgaagagcgcaaagaaattttgcagatgctcaacgacggcggctacagcgtggttgatctctccgacgacgaaatggcgaagctacacgtgcgctatatggtcggcggacgtccatcgcatccgttgcaggaacgcctctacagcttcgaattcccggaatcaccgggcgcgctgctgcgcttcctcaacacgctgggtacgtactggaacatttctttgttccactatcgcagccatggcaccgactacgggcgcgtactggcggcgttcgaacttggcgaccatgaaccggatttcgaaacccggctgaatgagctgggctacgattgccacgacgaaaccaataacccggcgttcaggttctttttggcgggttagggaaaaatgcctgatagcgcttcgcttatcaggcctacccgcgcgacaacgtcatttgtggttcggcaaaatcttccagaatgcctcaattagcggctcatgtagccgctttttctgcgcacacacgcccagctcaaacggcgttttctcatcgctgcgctctaaaatcatcacgcggttacgcaccggttcggggctgttttccagcaccacttccggcaacaatgccacgccacagccgagtgccaccatcgataccatcgcttcatgcccgccaaccgtggcgtaaatcatcgggttactgattttattgcgtcgaaaccacagttcaatgcggcggcgtaccggcccctgatcggccataataaacggcaccgttgaccagtccggcttctctaccgacacctgattacgcaccgggcagggcagcgcgggggcaatcagcactactgccagattctccagcatcgaaaacgccactgcgccgggcaaggtttccggtttacccgcaatcgccagatccgcttcaccagtgaccaccttttccatcgcatctgccgcatcaccagtagtaagtttaatctccaccgacgggtgttccgcgcggaagcgatccagaatcggcggcagatggctgtaggcagcggtcaccgagcagaagatatgtaattcgccagagagcgacggcccttgctgatcgatggtgtggcgcaactgctgatactgcaacagcgtttgctgggcgaaaacgcgcagctcttcgcccgcttcagtcagcgtcaccgtgcggttatcgcgcacaaacagcggctgaccgagatcttcttccaggcgctgaatctgccgtgagagcgtggatgggctaacgtgcatcgcccgcgcgctgcggccaaaatggcggctttccgccagatgcaggaaggttttcagatcgcgtaaatccacagggacagccctcgatgttgacgttgcaaaaattgcaatgtgacgttgtgaatatatcaatttccgcaataaatttcctgtcatatagtgaattcaatctcgcaaacgcgaaccgaacaataagaagcacaacatcacgaggaatcaccatggctaactacttcaatacactgaatctgcgccagcagctggcacagctgggcaaatgtcgctttatgggccgcgatgaattcgccgatggcgcgagctaccttcagggtaaaaaagtagtcatcgtcggctgtggcgcacagggtctgaaccagggcctgaacatgcgtgattctggtctcgatatctcctacgctctgcgtaaagaagcgattgccgagaagcgcgcgtcctggcgtaaagcgaccgaaaatggttttaaagtgggtacttacgaagaactgatcccacaggcggatctggtgattaacctgacgccggacaagcagcactctgatgtagtgcgcaccgtacagccactgatgaaagacggcgcggcgctgggctactcgcacggtttcaacatcgtcgaagtgggcgagcagatccgtaaagatatcaccgtagtgatggttgcgccgaaatgcccaggcaccgaagtgcgtgaagagtacaaacgtgggttcggcgtaccgacgctgattgccgttcacccggaaaacgatccgaaaggcgaaggcatggcgattgccaaagcctgggcggctgcaaccggtggtcaccgtgcgggtgtgctggaatcgtccttcgttgcggaagtgaaatctgacctgatgggcgagcaaaccatcctgtgcggtatgttgcaggctggctctctgctgtgcttcgacaagctggtggaagaaggtaccgatccagcatacgcagaaaaactgattcagttcggttgggaaaccatcaccgaagcactgaaacagggcggcatcaccctgatgatggaccgtctctctaacccggcgaaactgcgtgcttatgcgctttctgaacagctgaaagagatcatggcacccctgttccagaaacatatggacgacatcatctccggcgaattctcttccggtatgatggcggactgggccaacgatgataagaaactgctgacctggcgtgaagagaccggcaaaaccgcgtttgaaaccgcgccgcagtatgaaggcaaaatcggcgagcaggagtacttcgataaaggcgtactgatgattgcgatggtgaaagcgggcgttgaactggcgttcgaaaccatggtcgattccggcatcattgaagagtctgcatattatgaatcactgcacgagctgccgctgattgccaacaccatcgcccgtaagcgtctgtacgaaatgaacgtggttatctctgataccgctgagtacggtaactatctgttctcttacgcttgtgtgccgttgctgaaaccgtttatggcagagctgcaaccgggcgacctgggtaaagctattccggaaggcgcggtagataacgggcaactgcgtgatgtgaacgaagcgattcgcagccatgcgattgagcaggtaggtaagaaactgcgcggctatatgacagatatgaaacgtattgctgttgcgggttaagtgcgcgctgatgccctcaccccgactctcccacagggagagggagaaaacactcaagccttctcctggagaaggccttgctattagttgcggtacagcaccttaatgatgtgatatccgaactgggtgtgcagcgggccggtcggctccagtaccggacaagagaaaaccactttatcgaacgccggaaccatctgaccctggcggaattcacctaaatcaccgccgcgtttgcctgatgggcaaatggagtgtttcttcgccagcttgccgaaatcggccccgttcttaatctgctcgagaagatccagagccagtttctcttcttttacaaggatatgcagtgctgctgctgtttttgccatgatcgtgccttgagtgaataattgtcaggcggcgattttagcatgatccgcagatgctaacgtaattgtcagtcagggagtggctggtacatatatggcaaaagcccggaaaatcctgctcgcaggtcctcaaggggagaaaacttagggcctctatgggctacaaagtcattatcggggatggttattttattgtcaatttatgagcgatatggcattgattgacttgatgaccgccctctgtatgtctgcaaccaactcatgtggcaaacattgattaagataccctctgtaagtccttgctctgtttaatctgtttcgactgacttgttgtaccaggtcggctttggcccaacgaatctgctgatcaaagaattgcaggtcattgataacattactggctatttcaacatgcattccacgttttaacttgtctggtcgcgagtggttgataatggaacgacgatgcatgcgttgccattaatttttccgttgagcacgacaactaacctgttttttatcatttcaggaggaatgcggccatcgtaatacgtcgtgctgaacggtccattttggctaacaggatagttaccaaagttgcattccagtatttcaccaaccttagggctgaaattaatcgccacgagtaaacctctccttagtaaactctgaaaaagtaataacacaacgttacgacccgatattttctaagtctaatggattcacgatgaactccgatttcggtcttctctctctgatttaaacatccgcagccaaccggttagcggcttacacgcggtcacattcaaatgcgattctgctacaatcctccccccgttcgaagattgagcaatacacctatgcgtctaaaccccggccaacaacaagctgtcgaattcgttaccggcccctgcctggtgctggcgggcgcgggttccggtaaaactcgtgttatcaccaataaaatcgcccatctgatccgcggttgcggttatcaggcgcggcacattgcggcggtgacctttactaataaagcagcgcgcgagatgaaagagcgtgtagggcagacgctggggcgcaaagaggcgcgtgggctgatgatctccactttccatacgttggggctggatatcatcaaacgcgagtatgcggcgcttgggatgaaagcgaacttctcgttgtttgacgataccgatcagcttgctttgcttaaagagttgaccgaggggctgattgaagatgacaaagttctcctgcaacaactgatttcgaccatctctaactggaagaatgatctcaaaacaccgtcccaggcggcagcaagtgcgattggcgagcgggaccgtatttttgcccattgttatgggctgtatgatgcacacctgaaagcctgtaacgttctcgacttcgatgatctgattttattgccgacgttgctgctgcaagccaatgaagaagtccgcaagcgctggcagaacaaaattcgctatctgctggtggatgagtatcaggacaccaacaccagccagtatgagctggtgaaactgctggtgggcagccgcgcgcgctttaccgtggtgggtgacgatgaccagtcgatctactcctggcgcggtgcacgtccgcaaaacctggtgctgctgagtcaggattttccggcgctgaaggtgattaagcttgagcagaactatcgctcttccgggcgtattctgaaagcggcgaacatcctgatcgccaataacccgcacgtctttgaaaagcgtctgttctccgaactgggttatggcgcggagctaaaagtattaagcgcgaataacgaagaacatgaggctgagcgcgttactggcgagctgatcgcccatcacttcgtcaataaaacgcagtacaaagattacgccattctttatcgcggtaaccatcagtcgcgggtgtttgaaaaattcctgatgcaaaaccgcatcccgtacaaaatatctggtggtacgtcgtttttctctcgtcctgaaatcaaggacttgctggcttatctgcgcgtgctgactaacccggacgatgacagcgcatttctgcgtatcgttaacacgccgaagcgagagattggcccggctacgctgaaaaagctgggtgagtgggcgatgacgcgcaataaaagcatgtttaccgccagctttgatatgggcctgagtcagacgcttagcggacgtggttatgaagcattgacccgcttcactcactggttggcagaaatccagcgtctggcggagcgggagccgattgccgcggtgcgtgatctgatccatggcatggattatgaatcctggctgtacgaaacatcgcccagcccgaaagccgccgaaatgcgcatgaagaacgtcaaccaactgtttagctggatgacggagatgctggaaggcagtgaactggatgagccgatgacgctcacccaggtggtgacgcgctttactttgcgcgacatgatggagcgtggtgagagtgaagaagagctggatcaggtgcaactgatgactctccacgcgtcgaaagggctggagtttccttatgtctacatggtcggtatggaagaagggtttttgccgcaccagagcagcatcgatgaagataatatcgatgaggagcggcggctggcctatgtcggcattacccgcgcccagaaggaattgacctttacgctgtgtaaagaacgccgtcagtacggcgaactggtgcgcccggagccgagccgctttttgctggagctgccgcaggatgatctgatttgggaacaggagcgcaaagtggtcagcgccgaagaacggatgcagaaagggcaaagccatctggcgaatctgaaagcgatgatggcggcaaaacgagggaaataatcaaggccggaaaagatgcgtcagcatcgcatccggcacttactcattaatgcacttccagcggccagtggacatagctctgccactggctttcctgagcaataatctctttacccagcggatgttgggttagccaaccttgcggaagcgtcaaggtcaacagttcatggttagcctgtaatgtcatctctggcacgagatcgtcacggcgacggctggcaaaaatgatggccaggcgtagtaaacggcagagttgttctgcgagccgcggcggtacggcattttgctgatgcagcgatgagagatcgaccggattagtctggttgagcagtagcgtcgccagcaattttttctgtgcgggggtaaaaccgggaagatccagattacgcaccagataagcagcgtgttgcggcgcttgtttgaagtcaacgctcaggccgatttcatgaagctgacaggcgctgatgagcaaatcgcggcttattgcttcaagatgccattcgttttccacctgatcgaagaagttagccgcaactttggctacgcgctgtgcctgatcaatatcgatcataaagcggcgttgaatattacgcagcgtacggctgcgaatatcctgctcgacggccagatgcaacatgccgtagaccaggccttcacgcagcgcaccgcccgccagggtcatacactgaatattcagttcggtaaaaatggcgatcaggatcgccagaccactcgggaacactaacgcacgttccagcgtcagcccgtcaatctccagttcctccagccgaccgcaatgaatggctcgctgtttcaattgctgcaacttttccagggtaatgcgttcatccatcccctgtgccatcatgatttcctgtaacgcctgcacggtgccggaagcaccaacgcacactttccagccgtgataccgtaattcatcggcaaccggacgtaacacttcgcgtgccgctttttctgcagcatcaaaattttcctgccccagattacgatcggcaaaatagcgttccagccaggtgacgcagcccatcgacaggctgaacaacgaggtggtttgtgcacccgtgccggttaccagttcagtactggctccgcctatatccaccaccaggcgctgatcggcaccaccagtggtgtgagcaacgccctgataaatcagacgtgcttcctcttcaccgctgatcacctgtaccggacaaccgagaatttcctgcgctttggcaataaaatcacccgcattgacggcaaggcgtaacctcgccgtagcgacaacgcgaatttgcgagggaggaatatcttgcagacgttcagcaaacaggcgcaaacattgccaaccgcgctccattgcttcattggagagggcattttcgctattcaggccagcagccagacgcactttgcgttttattcgcgtcagcgtctggatgcttccagccacctcgcgcacaaccagcatatgaaaactattcgaaccgagatcaatggctgcatacagcgacgaggtggaacccatactcttcatccttcaatctgtctctgtgttggctgcattctttcacctgaatcacttactacagtaagctcatcgggattcattctcttgccatcttgatacagtttgaatgattttgagtatgacattttttatttaacctgaacgacgacgattacgcggagcgccagtacgacgcggaccattgcctgtgcgcgggcgcgtgaggcgcagcggttttggcagatcggtcatcaatgcgtccggattgtatttgcttaccggaattgagtgaccaatataggtctcaatagcaggcaaattcaatgcatactcttcacacgccaggctgatagagtgaccgcttgcgcctgcgcgacctgtacgaccaatacggtgaacgtaatcttcacagtcatcgggtaaatcgtagttaaagacgtgcgtcactgccggaatatgcaaaccacgcgcggcaacgtcggtggcaaccagaatatccagatcgccacgggtaaattcatcaagaatacgcagacgttttttctgcgcgacatcgcctgtcaataaaccgacacgatgaccatctgctgccaggtggccccagatctcttcacaacggtgtttggtgttggcgaaaataatcgctctgtctggccactcttcttcgatcagcgtttgcagcaaacgcattttttcttcgttagaagggtagaaaagctcttctttaatacggtggcccgttttctgttccggttccacttcaatatattcggcattgttcatctgctcgaacgccagttcacgtacccggtacgaaagcgtggcggagaacagcatgttgaggcgctggtttgcaggcggcatacggcggaacagccagcggatatctttaataaagcccagatcgtacatgcgatcggcttcgtccagtaccaccacctgaatggcaccgaggttaatgtggttctgcttggcgtagtcaattaaacgccccgtggtgccaatcagaatgtcaacgccgctttccagcactttcagctgtttgtcgtagccatcaccaccgtaagccagacccagcttcaggccagtagcttccgccagcggttctgcgtcggcatggatctgcacggcaagttcacgcgtcggtgccataattaaggcacgcggctgattcaccttgcgatcggcaatcgcaggatgagagagaagataatgaaacgttgacgtaagaaacgccatcgttttcccggtaccggtttgcgcctgcccggctacgtcacgacccgccagcgtcagcggaagggccagtgcctgaatgggcgtacagttatgaaacccttttttttcaagggcttctacaaccttcggatgcagggcgaagtcggaaaacttctgttctgttaaatgtgttttgctcatagtgtggtagaatatcagcttactattgctttacgaaagcgtatccggtgaaataaagtcaacctttagttggttaatgttacaccaacaacgaaaccaacacgccaggcttattcctgtggagttatatatgagcgataaaattattcacctgactgacgacagttttgacacggatgtactcaaagcggacggggcgatcctcgtcgatttctgggcagagtggtgcggtccgtgcaaaatgatcgccccgattctggatgaaatcgctgacgaatatcagggcaaactgaccgttgcaaaactgaacatcgatcaaaaccctggcactgcgccgaaatatggcatccgtggtatcccgactctgctgctgttcaaaaacggtgaagtggcggcaaccaaagtgggtgcactgtctaaaggtcagttgaaagagttcctcgacgctaacctggcgtaagggaatttcatgttcgggtgccccgtcgctaaaaactggacgcccggcgtgagtcatgctaacttagtgttgacttcgtattaaacataccttattaagtttgaatcttgtaatttccaacgcttcccgttttatcttaaatgcgaagtgaacagatttctggctcgtcactcaatccgtcttgtcgtttcagttctgcgtactctcctgtgaccaggcagcgaaaagacatgagtcgatgaccgtaaacaggcatggatgatcctgccataccattcacaacattaagttcgagatttaccccaagtttaagaactcacaccactatgaatcttaccgaattaaagaatacgccggtttctgagctgatcactctcggcgaaaatatggggctggaaaacctggctcgtatgcgtaagcaggacattatttttgccatcctgaagcagcacgcaaagagtggcgaagatatctttggtgatggcgtactggagatattgcaggatggatttggtttcctccgttccgcagacagctcctacctcgccggtcctgatgacatctacgtttcccctagccaaatccgccgtttcaacctccgcactggtgataccatctctggtaagattcgcccgccgaaagaaggtgaacgctattttgcgctgctgaaagttaacgaagttaacttcgacaaacctgaaaacgcccgcaacaaaatcctctttgagaacttaaccccgctgcacgcaaactctcgtctgcgtatggaacgtggtaacggttctactgaagatttaactgctcgcgtactggatctggcatcacctatcggtcgtggtcagcgtggtctgattgtggcaccgccgaaagccggtaaaaccatgctgctgcagaacattgctcagagcattgcttacaaccacccggattgtgtgctgatggttctgctgatcgacgaacgtccggaagaagtaaccgagatgcagcgtctggtaaaaggtgaagttgttgcttctacctttgacgaacccgcatctcgccacgttcaggttgcggaaatggtgatcgagaaggccaaacgcctggttgagcacaagaaagacgttatcattctgctcgactccatcactcgtctggcgcgcgcttacaacaccgttgttccggcgtcaggtaaagtgttgaccggtggtgtggatgccaacgccctgcatcgtccgaaacgcttctttggtgcggcgcgtaacgtggaagagggcggcagcctgaccattatcgcgacggcgcttatcgataccggttctaaaatggacgaagttatctacgaagagtttaaaggtacaggcaacatggaactgcacctctctcgtaagatcgctgaaaaacgcgtcttcccggctatcgactacaaccgttctggtacccgtaaagaagagctgctcacgactcaggaagaactgcagaaaatgtggatcctgcgcaaaatcattcacccgatgggcgaaatcgatgcaatggaattcctcattaataaactggcaatgaccaagaccaatgacgatttcttcgaaatgatgaaacgctcataaatttgtcttatgccaaaaacgccacgtgtttacgtggcgttttgcttttatatctgtaatcttaatgccgcgctggcgatgttaggaaaattcctggaatttgctggcatgttatgcaatttgcatatcaaatggttaatttttgcacaggactggtgggtttggaacggactttcccttctgaataaaggtcttcgtggttatacttctgctaataattttctctgagagcatgcattgtgaatttactgacagtgagtactgatctcatcagtatttttttattcacgacactgtttctgttttttgcccgtaaggtggcaaaaaaagtcggtttagtggataaaccaaacttccgcaaacgtcaccagggattgatacctctcgttggggggatttcggtttacgcagggatttgcttcacgttcggaattgtcgattactatattccgcatgcatctctctatctcgcttgtgccggtgtgcttgttttcattggcgcgctggatgaccgttttgatatcagcgtaaaaatccgtgccaccatacaggccgctgttggcattgttatgatggtgttcggcaagctttatctcagtagcctgggttatatctttggctcctgggagatggtgctcggaccgtttggttacttcctgacgctatttgccgtctgggcggccattaatgcgttcaacatggttgatggcattgatggcttgctgggcgggttgtcctgcgtctcgtttgcagcaatcggtatgattttgtggttcgacgggcaaaccagcctcgcaatctggtgctttgcgatgatcgccgccatcctgccatacatcatgcttaaccttggtatcctgggtcgccgctacaaagtctttatgggtgatgcgggcagtacgctgattggttttaccgttatctggatcctgctcgaaacgacccagggcaaaacccatcccatcagcccggttaccgctttgtggataatcgccattccgctaatggatatggtggcgattatgtaccgtcgcctgcgtaaaggcatgagcccattctctcctgaccgtcagcatattcaccatttgatcatgcgtgccgggtttacttcccgtcaggcgtttgtgctgattacccttgccgcagcactgctcgcttccattggcgtgctggcagaatattctcattttgtcccggagtgggtcatgctggtgctctttttgctagcattcttcctctatggatattgcattaagcgtgcctggaaagttgctcgctttattaagcgcgtaaaacgcagactgcgtagaaatcgtggtggcagccccaatttaaccaaataaatgaggatgtgatgacacaaccaatgcctgggaaaccggccgaagacgctgaaaatgaactggatattcgtgggttgtttcgtaccttgtgggctgggaagctatggattattggcatggggctggcgtttgcgttaatcgcgctggcgtatacgttttttgctcgtcaggagtggagctcgacggcgattaccgatcgtccaacggtgaatatgctggggggatattactcgcagcagcaatttttgcgtaacctggatgtccgttcaaacatggcttctgccgaccaaccatcggtcatggacgaagcctataaagagtttgttatgcaactggcctcgtgggatacccgcagagagttctggctgcaaaccgactattacaaacagcggatggtgggcaacagcaaagccgatgcggcgttgctggatgaaatgattaacaacatccagtttatccccggagactttacccgcgcggtcaatgacagcgtgaagcttattgccgaaaccgcgcctgacgctaataacctgttacgtcagtatgttgcttttgccagccagcgtgcagccagccatctgaatgatgagctgaaaggcgcatgggcggcgcgtaccatccagatgaaagctcaggtgaagcgtcaggaagaggtggcgaaagccatctacgaccgccggatgaacagcattgagcaggcgctgaaaattgctgagcagcataatatttcgcgcagtgcgacagatgtacctgccgaggaattacctgattcagaaatgttcctgcttgggcgtccaatgcttcaggctcgactggaaaatttacaggccgtcggtccggcctttgatctcgactatgatcagaatcgggccatgttaaacaccctgaatgttggtccaaccctggatccgcgttttcagacctatcgctatttgtacgccggaagaaccggtaaaacgcgatagcccacgtcgtgccttcctgatgattatgtggggcattgtcggggggctgatcggggctggtgtcgcattaacccgccgttgctcgaaatagcaacactgctgcggtgagcgcaaaggcgctcgccgcttattcgaagagaatcgatgtgaaagtactgactgtatttggtacgcgcccggaagcatcaagatggcgccgttggtgcatgcgttggcaaaagatcctttttttgaggctaaagtttgcgtcactgcgcagcatcgggagatgctcgatcaggtgctgaaactcttttccattgtacctgactacgatctcaacataatgcagccaggacagggcctgacagagataacctgtcggattctggaagggctaaaacctattcttgccgagttcaaaccagacgtcgtgctggttcacggcgatacgacgacgacgctggcaaccagcctggcggcgttttatcagcgtattcctgttggtcacgttgaggctggtctgcgcacgggcgatctctattcgccgtggccggaagaggctaaccgtacattgaccgggcatctggcgatgtatcacttctctccaaccgaaacttcccggcaaaacttgctgcgtgaaaacgttgcggatagccgaatcttcattaccggtaatacagtcattgatgcactgttatgggtgcgtgaccaggtgatgagcagcgacaagctgtcagaactggcggcaaattacccgtttatcgaccccgataaaaagatgattctggtgaccggtcacaggcgtgagagtttcggtcgtggctttgaagaaatctgccacgcgctggcagacatcgccaccacgcaccaggacatccagattgtctatccggtgcatctcaacccgaacgtcagagaaccggtcaatcgcattctggggcatgtgaaaaatgtcattctgatcgatccccaggagtatttaccgtttgtctggctgatgaaccacgcctggctgattttgaccgactcaggcggcattcaggaagaagcgccttcgctggggaaacctgtgctggtgatgcgcgataccactgagcgtccggaagcggtgacggcgggtacggtgcgtctggtaggcacggataagcagcgaattgtcgaggaagtgacgcgtcttttaaaagacgaaaacgaatatcaagctatgagccgcgcccataacccgtatggtgatggtcaggcatgctctcgcattctggaagcgttaaaaaataatcggatatcactatgagttttgcgaccatttctgttatcggactgggttatatcgggctgccaacccgagcgtttgcctcacggcaaaaacaggtaattggtgtcgatatcaaccaacatgcggttgataccatcaatcgtggcgaaatccatatcgtcgaacctgatttggcgagtgtagtaaaaactgccgtagaaggcggttttttacgagcgagcacgacgccagttgaagcggatcgctggctgattgctgtacccacgccgtttaagggcgatcatgagccagatatgacctacgttgaatcggctgctcgctccattgcgccagtgctgaaaaaaggcgcgctggtgatccttgaatccacctcgccggtggggtcaaccgagaagatggcagaatggttagcagagatgcgtccggatctcactttcccgcagcaggtgggcgagcaggcggacgtcaacattgcttactgcccggaacgcgtgttaccaggacaggtaatggtcgagctgattaaaaacgatcgcgtgattggtggtatgacgccggtttgttcggcccgcgccagcgaactgtacaaaattttcctcgaaggtgagtgtgtcgtcactaactcgcggacggcggaaatgtgtaagctcaccgaaaacagcttccgcgatgtgaatatcgcttttgctaatgaattgtcgctgatttgtgccgatcaggggattaacgtctgggaactgattcgcctggcgaatcgtcaccctcgcgttaatattcttcagcctggccctggcgtgggcggtcactgcattgctgttgatccgtggtttatcgtggcacagaacccccagcaggcgcggcttatccgtaccgcgcgcgaagtgaacgatcacaaaccgttctgggttatcgatcaggtgaaagcggcggtggctgattgcctggcggctaccgataaacgcgccagtgaactgaaaatcgcctgctttggtctggcgtttaaaccgaatattgatgacctgcgcgaaagcccggcgatggaaatcgctgaactgatcgcccagtggcatagcggcgaaactctggttgttgagcctaacatccaccagttgccgaaaaaactgaccgggctttggtactctggcgcagcttgacgaggcgctggcaacggcagacgtgctggtgatgctggtcgatcatagtcagttcaaagttatcaatggcgacaatgtccatcagcagtatgtcgtcgatgccaaaggagtctggcgctgatgagaaaaattctgataacaggtggtgccgggtttattggctcggcgctggtgcgttatatcatcaacgaaacgagcgacgcggtggtagtggtcgataagctgacctacgccggaaacctgatgtcgctggcaccggtcgcgcaaagcgagcgctttgcctttgagaaagttgatatctgcgatcgggcagaactggcacgcgtattcactgagcatcagccagactgtgtcatgcatctggcagccgaaagccatgttgaccgttctattgacggcccggcagcgtttattgaaaccaacattgtcgggacttatacattgcttgaagcggcgcgggcttactggaatgcgctgacggaagataaaaaatcagcgttccgttttcatcatatctccactgacgaagtatatggtgacctgcactcgacggatgatttcttcaccgaaaccacgccgtatgcgccgagcagcccttattccgcgtcaaaagccagcagcgaccatctggtgcgcgcctggctgcggacctatggtctgccgacgcttatcaccaactgctcgaataactacggcccttaccactttccggaaaaactgatcccgctgatgatcctcaacgcgctggcgggtaaatcgctgccggtatatggcaacgggcagcaaatccgtgactggctgtatgtggaagatcacgcccgcgcgctgtattgcgtggcgaccaccgggaaagtcggtgaaacctataatattggtggtcacaacgagcgtaagaatctcgatgttgtggaaaccatttgcgagctgctggaagaactggctccgaacaagccgcacggcgtggcgcactatcgtgacctgatcacctttgtcgctgaccgtccggggcatgatctgcgttatgccattgatgcttcgaaaattgcccgtgaacttggctgcgtgccgcaggaaacctttgaaagtggaatgcgtaaaacggttcagtggtatctggctaatgaaagctggtggaagcaggtgcaggacggcagctatcagggcgagcgtttaggtctgaaaggctaattttcagcggaggcaaacatgaaaggtattatcctggcgggcggttccggcacccgattgcatccgattacgcgcggcgtatcgaagcaactgttgccgatttacgataagccaatgatttactatccgctgtcggtgctgatgctggccggtatccgcgaaattctcatcatcactacgccggaagataaaggttatttccagcgcctgctgggcgatggtagtgagttcggtatccagctggaatatgccgaacagcccagcccggacggtctggcgcaggcctttatcatcggtgaaaccttccttaatggtgaaccttcttgtctggtgctgggcgataacatcttcttcggtcagggcttcagtccgaagctgcgtcatgttgcggcgcgcaccgaaggggcgacggtttttggctatcaggtgatggacccggaacgctttggcgtggtggagtttgacgacaatttccgcgctatctcgctggaagaaaagccaaaacagccgaagtcaaactgggcggtgaccgggctttatttctacgacagtaaagtcgtggagtacgcaaagcaggtgaagccgtcggagcgtggtgaactggagattacctccatcaaccagatgtacctcgaggcgggcaacctgaccgttgaactgctcgggcgcggatttgcctggctggataccggcactcacgacagcctgattgaagccagcacctttgtacagacggtggaaaaacgccagggctttaagattgcctgcctggaagagattgcctggcgtaacggctggctcgatgacgagggtgtgaagcgtgctgccagttcattagcgaaaactggctacggccaatatctgctggagttacttcgtgcccgtccgcgccagtattgagccactaacctgggaaaacgccttctttggtgttaacagcgccatcggtgcgcattacgtctgaagcaccgctcctgacgccagacgcgttagcgcgtggtcacgggtgcaggccaaaattgcggcatcaaatacgggtgaactggatgccctgcaacagctgggattctccctggtagaaggtgaagttgatttggcgctacccgtgaacaatgccagtgatagcggtgctgtagtggcacaagagaccgatattcccgcattacgtcagttagccagcgccgcatttgcgcaaagccgttttcgtgcgccgtggtatgcgcctgacgccagcagtcgcttttatgcacagtggattgaaaatgccgtgcgcggcacctttgatcatcaatgtctgattttacgtgcggcgtccggcgatattcgcggctatgtctctttacgggaactcaatgcgacagatgcgcgaattggcctgctggctggacgcggtgcaggtgctgagctgatgcaaacggcgctaaactgggcgtatcgtcgcggtaaaacaactttgcgggtggcgacccaaatgggcaacaccgccgcgcttaaacgatacatacaaagtggtgcgaatgtagaaagcaccgcgtactggttatacaggtgatcacatgattccatttaacgcaccgccggtggtgggaaccgaactcgactatatgcagtcggcaatgggtagcggcaaactgtgtggcgatggcggttttacccgtcgctgccagcagtggctggagcaacgttttggcagcgccaaagtgttactgacgccgtcctgcaccgcttcgctggagatggcggcgctgctgctcgatatccagcctggcgatgaagtgatcatgccgagctacacctttgtctccaccgccaatgcctttgtgctgcgtggcgcaaaaatcgtttttgtggatgttcgcccggacaccatgaacatcgacgaaacgctgattgaagcggcgatcaccgacaaaacgcgcgttatcgtgccggtccattacgcgggtgtggcctgcgaaatggacaccattatggcgttggcgaaaaagcataatttgtttgtggtagaagatgccgctcagggcgtgatgtccacttacaaagggcgtgcactgggaaccattggtcatattggctgctttagcttccatgaaaccaaaaactacacggcgggcggtgaaggcggcgcgacgctgattaacgataaagcgttaatcgaacgagccgagatcatccgtgaaaagggcactaaccgcagccagttcttccgtggtcaggtcgataaatatacctggcgcgatattggctccagctatttgatgtccgatctgcaagctgcatacctgtgggcgcaactggaagcagcggatcgtatcaaccagcaacgtctggcgctgtggcaaaactactacgatgcgttacgcctctggcgaaagccgggcgtatcgagctgccgtcgattcccgatggctgcgtgcagaacgcgcatatgttctacattaaactgcggatattgatgaccggagcgcgttgattaactttctgaaagaagcggaaatcatggcggtgtttcattacattcgctgcacggttgcctgcgggggaacactttggtgagttccacggtgaagatcgctacaccaccaaagagagcgagcgcctgctgcgcctgccgctgttctacaacctgtcgcccgtcaatcagcgtacggtaattgcgactttgttgaactacttttcctgatatgtcgttggcaaaagcgtccttgtggacggcggccagtacactggtcaagattggtgccgggttactggtcggtaagttgctggcggtgtcatttggtccggcggggcttgggctggcggcaaatttccgccagttgattaccgtgctcggcgtgcttgccggggctggcatctttaacggtgtaaccaaatacgttgcccagtaccatgataatccgcaacagctgcgccgcgtggtcggcacttcatcagcgatggtacttggtttctctacgctgatggcgctggtttttgtgctggcagctgcgccaatcagccagggattgtttggtaataccgactatcaggggctggtgcgtttagtggcgctggtgcaaatggggatcgcctggggcaacctgttactggcgctgatgaaaggctttcgcgatgccgcaggtaatgcgttatcgctgattgtcggcagcttgattggcgttctcgcgtactacgtcagttaccgtttgggcggttatgaaggggcgttgctgggtctggcgctgattcccgcgctggtggtaattcctgccgccatcatgttgatcaaacgtggtgtcatcccgttaagctatctgaaacccagctgggataacggtctggcagggcagttgagcaaatttacgctcatggcgttgattacgtcggtgaccttgcctgttgcttacatcatgatgcgtaaactgctggcggcgcagtatagctgggatgaggtggggatctggcaaggggtgagcagtatttccgatgcctacctgcaatttattacggcatcgttcagcgtatatttgctgcccacgttgtcgcggctaacggaaaagcgcgatatcacccgggaagtggttaaatcgctgaaattcgtcttaccggcagtggcggcggcgagttttaccgtctggctgctgcgtgattttgctatctggctgctgttgtcgaataaatttaccgctatgcgcgatctctttgcctggcagttagtgggtgatgtgttaaaagtgggcgcttatgtctttggttatctggtgatcgccaaagcgtcactgcggttttatattctggcggaagtcagccagttcactttattgatggtatttgcccactggctaatccctgcgcatggtgcactgggcgcggcgcaggcatatatggcaacttatatcgtctatttttctctttgttgtggcgtgtttttactctggcgtaggcgggcatgactgtactgattcacgtactgggatcggatatccctcaccataaccgaaccgttttgcggtttttcaatgacgcgctggccgcgacgagcgagcacgcgcgcgagtttatggttgttggcaaggacgacggcttaagtgatagctgtccggcgctttctgtgcaatttttccctggaaaaaatcgctggcggaagcggtcatcgcgaaagcaaaagctaaccgtcagcagcgttttttcttccacggtcagttcaatcccacactgtggctggctctgctgagtggtggcattaagcccagccagtttttctggcatatctggggggcagacctgtatgagctttccagtggcttgagatataagcttttttacccactacgtcgcctgggccaaaagcgagtcggctgtgtatttgccacccgcggcgatttgagcttttttgccaaaacgcacccaaaggtgcggggcgaactgctgttcttcccgacgcggatggacccttcgctcaatacgatggcgaacgatcggcaacgtgaagggaaaatgaccattctggtggggaactccggcgaccgcagcaatgagcatattgctgccttgcgcgccgttcatcagcaatttggcgatacggtaaaagtggtggtgccgatgggatatccgcctaataacgaagcgtacattgaggaagttcgtcaggcggggctggagttattcagcgaagaaaatctacaaattctgagcgaaaaactggaatttgacgcctatctggcgctacttcgtcagtgcgatcttggttactttatttttgcccgccagcagggcattggtacgctgtgcttactgattcaggcgggcattccttgtgtgcttaaccgggaaaatccgttctggcaggatatgacggaacaacattccggtgctgtttactaccgacgatctcaacgaggatattgtgcgtgaagcgcagcgcagttggcgtcggtggataaaaacaccattgccttctttagccctaactatctacaaggctggcagcgggcgttggcgattgcgccagggaggtcgcatgagtctgctgcaattcagtggcctgtttgttgtctggctgctctgcacgctgtttattgccacgctgacctggtttgagtttcgccgtgtgcgctttaacttcaatgtcttcttttcattgctgtttttgctcacctttttcttcggcttcccgctgaccagcgtgctggtatttcgctttgatgttggtgtcgcgccgccagaaatcttgttgcaggcgttgctttctgcgggctgcttctacgcggtttactatgtcacctacaaaacccgcctacgcaaacgcgttgctgatgtaccgcgccgtccgctgtttaccatgaaccgcgtggagaccaatcttacgtgggtgatcctgatgggtatcgcgctggtaagcgtcggcatcttcttcatgcacaacggctttttgctgttccggcttaactcctacagtcagatcttttccagtgaagtctccggcgtggcgttaaaacgcttcttttactttttcatcccggcgatgctggtggtctactttctgcgccaggacagcaaagcgtggctgtttttcctcgtcagcacggtcgcctttggcttgctgacttatatgattgtcggcggcactcgcgccaatatcatcatcgcattcgctatcttcctgtttattggcattattcgcggctggatttcgttgtggatgctggcggcggcgggcgtgctggggattgttggcatgttctggctggcactaaaacgctatggaatgaatgtgagcggcgatgaagcgttctatacgtttctctatctcactcgcgacaccttctcgccgtgggagaatctggcgttgctgttgcagaactacgacaacatcgacttccagggcctggctccaattgtccgcgatttctatgtctttatcccttcctggctgtggccgggtcgcccgagtatggtgctgaactcagccaactactttacctgggaagtgctgaataaccactccggactggcgatctcgcctacgcttataggctcactggtggtgatgggcggcgcgttgttcatcccgctcggggcgatcgtggttggtctgatcatcaaatggttcgactggctgtatgagctgggcaaccgcgagcctaatcgctataaagctgcgatattgcacagtttctgctttggggcgatcttcaatatgatcgtgctggcgcgtgaagggctggattcgtttgtctcacgcgtggtcttttttatcgtggtcttcggcgcatgtctgatgatcgcaaaactgttgtactggctttttgaaagcgccggactcattcataaacgtacaaaatcatcgctccggacgcaggttgaaggataacaatgaataacaacaccacggcaccaacctatacgctgcgtggcttacagttgattggttggcgtgatatgcagcacgccctcgattatctgtttgctgacgggcagcttaagcagggaacgctggttgccattaatgctgaaaaaatgctgactattgaagataacgccgaggtcagggagttaattaacgctgccgaatttaaatatgcggatggcatcagcgttgtacgttcagtacgtaaaaagtacccgcaggcgcaggtttcccgcgttgccggtgccgatctctgggaagagctgatggcgcgcgcaggcaaagaagggacgccggtatttcttgtgggcggtaaacctgaagctgtggcgcaaactgaagctaaactgcgcaaccagtggaatgtgaatatcgttggcagtcaggatggttattttaaacccgagcagcgtcaggcgctgtttgaacgcattcatgccagcggtgcgcaaatcgtcaccgttgcgatgggatcgccaaagcaggagatcatcatgccgactgccgtctggtacatccagatgcgctgtatatgggcgttggcgggacttacgatgttttcaccggtcacgtaaaacgcgcaccgaaaatctggcaaacgctggggctggagtggctctaccgcctgctttcgcagccgagccgcattaagcgtcagcttcgtttgctgcgttatttacgctggcactacaccggcaacctatgattttcctctctttgtaaagcgacggagtggtcactccgtcgcctgtctgcttttttattacacaaagcattcaaatttttaatgctttatttgccatttctcctgaattacgaaaacatttgcaacactcgatgtacccataacgataaccggtaacaccggaaagcatgcaaacacaacacgaggatttatggcagataacaaaccagagctacagcgtgggctggaagctcgacatatcgaactcatcgccctggggggcaccattggcgtcggcctgtttatgggggccgccagtaccctgaaatgggccgggccatccgtattgttggcctatatcatcgccgggctgttcgtctttttcatcatgcgttcaatgggcgaaatgttgttcctcgaaccggttaccgttgcgttcgccgtttatgcgcatcgttatatgagcccgttctttggctatctcaccgcctggtcttactggtttatgtggatggcggtggggatctctgaaatcaccgccattggcgtttatgtccagttctggttcccggagatggcgcagtggatacccgcattgatcgcagtggcgctggtggcgttggcgaatctggcggcggtgcggttgtacggcgaaatcgagttctggttcgcgatgatcaaagtcaccacgattatcgtgatgattgtcattggcctgggcgtgattttctttggctttggcaatggcgggcagtcgattggttttagcaatctcacagagcatggcggtttctttgcgggtggctggaaagggttcctgaccgctctgtgtattgtggtggcgtcctaccagggcgtggagctgattggcattactgccggtgaagcgaagaatccgcaggtgacgctgcgcagtgccgtaggcaaggtgctgtggcggatcctgattttctacgtaggcgcgattttcgttatcgtcaccatcttcccgtggaatgaaataggcagcaacggcagcccgttcgtactgacttttgccaaaatcggtattaccgcagcggcgggcattatcaactttgtggtgctgacggctgcgctctctggctgtaacagcggcatgtacagttgcggacgtatgctctacgcactggcgaaaaaccgtcagttaccggcggcaatggcgaaagtttcccgtcacggcgtaccggttgcgggtgtggcagtatctattgctattctgctaattgctcatgcctggaactacatcattcccaatccgcagcgtgtgtttgtctacgtctacagtgccagcgtgcttccggggatggtgccatggtttgtgatattgataagccagctgcgttttcggcgtgcacataaagcggcgattgccagccatccgttccgctcaatcctgttcccgtgggccaattacgtaacaatggcattcctgatttgcgttttgatcggcatgtactttaatgaagatacgcgtatgtcgctgtttgttggcatcatctttatgctggcggtgacggcgatttataaagtttttggccttaatcgccacgggaaagcgcataaactggaggaataagcagcaaaacgcacaaaccgtaaccaaacgcgcaatttatttaaaaagggactagacagaggggtgggaagtccgtattatccacccccgcaacggcgctaagcgcccgtagctcagctggatagagcgctgccctccggaggcagaggtctcaggttcgaatcctgtcgggcgcgccatttagtcccggcgcttgagctgcggtggtagtaataccgcgtaacaagatttgtagtggtggctatagctcagttggtagagccctggattgtgattccagttgtcgtgggttcgaatcccattagccaccccattattagaagttgtgacaatgcgaaggtggcggaattggtagacgcgctagcttcaggtgttagtgtccttacggacgtgggggttcaagtcccccccctcgcaccacgactttaaagaattgaactaaaaattcaaaaagcagtatttcggcgagtagcgcagcttggtagcgcaactggtttgggaccagtgggtcggaggttcgaatcctctctcgccgaccaattttgaaccccgcttcggcggggttttttgttttctgtgcatttcgtcaccctcccttcgcaataaacgcccgtaataactcattgccccacggtatgatttcgcccttaacgtattgaaggatgacttcaggcaaggagcgaccatgctgcaacaggttccaacgcgtgcttttcatgtgatggcgaaaccgagcggttccgattgtaatctgaactgtgactactgtttttatctcgaaaaacaatccctttaccgcgaaaagccagtcacgcatatggacgatgacacgctggaagcgtatgtccgtcactatatcgctgccagcgaaccgcaaaacgaagtggcttttacctggcagggcggcgaaccaacgctactcgggctggcgttttaccgccgtgccgtagcgctacaggcgaaatatggtgctggcaggaagataagtaacagcttccagactaacggcgtgctgctggatgacgaatggtggccgtttctcgcggagcatcattttcttgttggtttatcgctggatggcccgcctgagatccacaatcaatatcgcgtgactaaaggtggcagacccacgcataagctggtgatgcgtgccctgacgctcctgcaaaaacatcatgtcgactataacgtgctggtctgcgttaatcgcaccagcgcgcagcaaccgttgcaggtatatgattttttgtgcgatgcgggagtcgaattcatccagtttattccggtggtcgagcgcctggctgatgaaacaactgcccgcgatggacttaagttacatgcgcctggtgatattcagggtgagctaacggaatggtcggtgcgccccgaggagttcggtgagtttctggtggcgatattcgaccactggatcaaacgcgacgtcggcaagattttcgtgatgaatatcgaatgggcgtttgccaattttgtcggtgcgccgggtgcggtttgccatcatcagccaacctgtgggcgctcggtgattgttgagcacaacggcgacgtttacgcctgtgatcactatgtttatccgcaatatcggctggggaatatgcaccagcaaacaattgcagaaatgatcgattccccgcaacagcaggcgtttggtgaagataaatttaagcagttaccggcgcagtgtcgcagttgtaacgtgttaaaagcgtgctggggaggctgcccgaaacaccgcttcatgctcgatgccagcggcaaaccgggactgaattatttgtgtgccgggtatcagcgttatttccgccatctaccgccatatcttaaagcaatggctgattgtctggcgcacggtcgcccggccagcgacattatgcatgcgcatttgctggtggtgagtaagtagaaatcggcggccgcctgcggttgatctgtggatgcggcgtaaacgccttatccggcctacatgatcgtgcaaattcaataaattgcagcgttctgtaggctggataagatgcgtcagcatcgcatccggcaaaggcagatctcagcgatagcgccggcttagtcagatttaatctgcgcgcgtggtggatattttttcaggatctccatatacgcgtgcatttcggtctgtagcggtacacccatcggaatatggcgcacgccgatggagtcgctttcctgcggatcggtgtagaggttaaacaccgacgatcccgccgtttgcattactgtgccggtgaatccaccctgatatccgctctgggtataagcgtaaggttgctgaatcaggacgtgatacttgaactcatccatacgcacagcagcgagtttaccgttgaggaagtagtgctcggccttacggttagactgaccatttgttcccaggaagaaggatgtctggtccacaccatcgataaaggtggttttcggcactaaattcgccactttcgctccaggatgccctgccagatccagcgcggtagggaagagatctgccagatcgacaataccgtcagatttacgcggttggatcatccctttccagtaaacgaaagtcggtacgcgaacgccgccttcccaggtcgaacctttcgcaccacggaacggggtgcgtccgtgcggcggtacttcggcttccggtccgttatcggaggtaaagacgatcagcgtgttatcaagctgaccgtttttctccagtgttttatacagattagcgaacacatcgttcatctccaccatgcagtcgccatacgaggtgcgtgccggagagctacccgcatatttcgcatttgggtagttatcgaagtggcagccacgagtgccgtagtagaggaagaatggtttatcgctcttcgccatcttgtcgaggaacttaacgccatagtccatccagcgttgatccagatcttccatatatttcggcgtaatgtcggcaatggcctgttgttcgccgccgcgcaccgcatgaacgtcatctttgctgaacggtaattgcttgatgtattcagaacggtccggactcagggccacttccggattgacgtgaacgtcgcgccattcggtgtacatatcagacaccgagttaaagccacggaaatcatcaaagccaacgttctgcggctgcgactctttgttttcccccatatgccattttccgatggcctgagtgacgtagccctgatcgtgcagcaactgcggcagcgtggttaacccttgcagcccgcccggttgcccgtacattggcggcatcagaatgccgtggtggatggagtattgtccggtgagaatggtggcgcgggttggggaagagcttggttgagaatacgccgaagttaaaatcagcccctggctggcaacggcgtcgatatctggtgtagggttacccaccgccacgccgccaccgttaaaaccgacgtccatccagcccacatcgtccagcaagaaaacaaccacattcggtttcttaccggtttttttctcaagttctgccagcttctgctgggtttctttatcctgcgccggatgctgcattactggcatcatattgtcggcaatagtggtcgccggtttaaccagatactggtttgggtgatcgtatccggcaaagcctttgcgtgcggtggcagttgacggggtatctgctgcgctggccatgagaggaagagcggcggcgacagcaacaacaagacgtttgggtgaaaacgaaaattccatgcaaaatgctccggtttcatgtcatcaaaatgatgacgtaattaagcattgataattgagatccctctccctgacaggatgattacataaataatagtgacaaaaataaattatttatttatccagaaaatgaattggaaaatcaggagagcgttttcaatcctacctctggcgcagttgatatgtaaggcaggtttattatatcgcgttgattattgatgctgtttttagttttaacggcaattaatatatgtgttattaattgaatgaattttatcattcataataagtatgtgtaggatcaagctcaggttaaatattcactcaggaagttattactcaggaagcaaagaggattacagaattatctcataacaagtgttaagggatgttatttcccgattctctgtggcataataaacgagtagatgctcattccatctcttatgttcgccttagtgcctcataaactccggaatgacgcagagccgtttacggtgcttatcgtccactgacagatgtcgcttatgcctcatcagacaccatggacacaacgttgagtgaagcacccacttgttgtcatacagacctgttttaacgcctgctccgtaataagagcaggcgtttttttatgtatcaggaaggccccggagtgcttgcctccggtgagaaggaactactgtggcgggttattctgcaacgttaacatcaaaccgtcgcgacgcatagctgcagcttcttccggcttgtgcagtctgtccagcgcgtcggcaagccatgcgtaatcgtaggcgtccggacgttgtttcagcgctgcgcggaaggcgagcgatgcttcctgccattctccgtgcttcatcagtgactggcccagtgtgctccacaacagcgggcgatcgccgacgtttttgatttgctggcgcagcactttttccagctgttccggattgtttgttttcagtcgaggaatcggcagcagtaggcgatcgtcgtactggcgtttcaggccatcgatgataatttgctgggcagtatcatgatcgtcacattcaataagatgttccgccattgccacctgcaacgctacctgatgacgcgttttccggctttggtttttccaccagttacgcaaaccttcgctaccgttatcggcacgcgcctgatccatcaggccaatccatgcctgttgttccagcattgcacgatgttcttcatcaccaacatgggctttcgccattgatgggataatatccagcagcgaactccatgcacctgtgcggatatacgcctgttccgccagacgtaatacttccggatggcgtggcgtaacttccagcagcttatccacgccgtggcgtgcagcatggttttcattacgggccagttgcagacgtacgcgggtgatttctaccggaatggtgtcgttgccggccagctccgctgcgcgttccagatgttggttggcgcgtgcttcatcaccacgttgttgcgcggcttcggcagccagtagatagttcaccaccggttgttccgcgtgatcggcatttttcgccatcagcttttcaacttgctgataatcgccttccgccagtttcagcagcgcctgttcggtctgcttacgtgcacggcgacgcttacgtccgacaaaccacccacgggtgtgcgcgccagtgcggaagatccgccgcagtagccactcaatggcaaacagcactaccatcgccagaatcaatatgatcgccaggcccgtgacgctggtttcgatattgtagttgtcggtctggatcagcacataaccctgatggccggcaatcatcgggccaaccacgatccccgcaatcagcaacacaaagagcaataacacttttagcatggttattctccttgcggcgcggctgccggagtatcagcttgcggtgcaggtgcaggtttagcttccgttgtccccgctgccggttgtgccagcaggttacgcacgcgagtctgcatcagtttttccagcatcgcctggctttgcagggtttccggaagatccatcgagatattttgctggcttaactggtccacctcgtcgaggaacgctttggtggtggcatcatcagtatcgtagtaagcacgtacccaggtggagacgttctccagcgcctggcgataagtctcttcctggtgacgcggtacagcttgtgctgcgaccagcaggcgagagcgaatattttcgcgcagatagatatcctgatttggcgctaacagcggtacggcggtgtcatcacgacggcgaatcgtaatgaagttgtccataaagttctgccagcttttttgcagattgatacgccattcgctgatggaactggaaagctcttcaccgtctgaatccatcggcgaaccatcgctgtcattatcggccagacgcaggttatctacctgatttgaaagctgattaagcttaaggatgatgccgtcataatccacctgcgatactgcagaaaggctggcgatatcatcggtaattgcccgacgaacggtaatcagactcgggtcattcatatccgccaggctggcgtctgcacttttcagcaacgctgcagcggtcgtgacgtcctgatcgctccacagcttccgtccggcgagtttcaccagaaaatcggcctgagccagcagccaggttttagcatcgctgccggaaatggtggcgaccttttgttggacttcatccaactgttttgccagcgtttcttgctgacgattcgcctgcttaagttgtgcagcttgttgcttaataatgccttccagctcggctttttggctctcctgggctttttgcaatgccgtcagttggttagccagggcatcgctggtggcggtctgattgacggcctgttgtttaccccagccatacaaaccgatgcccgccgccagagcaatagcgatagccaccgcgctgagaatcaatgcggtattgttcttactctttttttctgttgcgacaggttgtgacgtggtgtccacggcctccctggtctcttcaaccacggcggaggttttttcttgttccgtcattatggcttcctgttatgagagttattgtaatgcccgtaaaagcgcatcgttgtcagcgttatcggcgaccttaatgtcttgccagcccagttcccgggcgagtttcgccaaacgctcactgacgaccaatagtcgacagtgtagtaaccagtgctcacgataccattgtgggatcagcgaccagagttgctgcaacatttcaccgctggtaacaacgaccatcgtcacctcgcgggcttgccagcgcatcgcttcttctgcaccatcgtaatggattgcgcatcgttgataacattcacaaaaagtgacctcagcaccgcgcgccgtcagggtatccccaattagctcacgaccaccattgccacgtaatatcagcgcacgtttgcccgcaatattttgtaattcaggtaattgtagcaagacttcgctgatttcccgatcctgcgggtagagaatcttctgtccacttacggtatgtagtgccagtgcggtggtgcgtccaatggcgaaataatcaggtagtcggggccatttacgatcttgctgatgcagctgtgattgggcaaaagcaaccgcgtgttgcgagagggcaaacaacagatcgctctcccccagcgctgccagttgatcagcaagttgcggtaattgttgacccggagaaaactcaatcagcggaaaatgccaggccacctgccccagtgtgcgcagacggctcactaactcttctccagcgggagacgggcgggtgacaaggatactcatgccggggcgtctccgttatagacttcagcgaggatctcgcgcgcgccgttattcagtagctcttctgccagcgaaatccccatttgttcggcatcttgcggcgcaccgcggcgttcaccgcgaataatctgcgaaccgtccggccggccgaccagcgcacgcagccagatttcgccatcaataagctcggcgtagctaccaattggcacctgacatccgccttcgagacgggtattcatggcgcgttctgcggtaacgcgcagtgcagtttcgtggtgattcagcgcggcaagcagctcgcgagtgcgtgaatcatcaaggcggcattcaatacccaccgcaccttgtcctaccgccggaagagaaatctcgggtggcaagccggcgcgaatacgtgactccagacctaaacgttttagtccggctacggcaagaatgatggcatcgtattcgccgttatccagtttgctcaggcgagtgccgacgttgccgcgcagggagcggataatcagatccggacggcgttcaccgagttggcactggcgacgtaaactggacgtcccgacgatactgcctgccggtaacgcatccagactgtcatagttattggacacaaaggcatcgcgaggatcttcacgctcacaaatagtgaccagtcccagaccttgcgggaattcaaccggcacatctttcattgagtgtacggcgatatcggcgcgattttcgaggagcgcgacttccagctcttttacaaataagccttttccgcctactttcgccagcggcgtatcaagaatcacatcgccgcgcgtcaccatcggtaccagttcaacgaccaggcccggatggctcgccatcaacttgtctttgacatagtgtgcctgccagagtgcaagtgggctttggcgtgtggcaattcttaaaacattgtctaacatgcttgttaccgtcattatcatccgtggtccatcctaacatccttgccagagtgatgtcagtgttgtggtgaaacgtagacgcctgcgcaaaccgtaaaatgaggtctggcagtggatcctgacaggcgtttcacgccgttgtaataaggaatttacagagaataaacggtgctacacttgtatgtagcgcatctttctttacggtcaatcagcaaggtgttaaattgatcacgttttagaccattttttcgtcgtgaaactaaaaaaaccaggcgcgaaaagtggtaacggttacctttgacatacgaaatatcccgaatgccgcgtgttaccgttgatgttggcggaatcacagtcatgacgggtagcaaatcaggcgatacgtcttgtacctctatattgagactctgaaacagagactggatgccataaatcaattgcgtgtggatcgcgcgcttgctgctatggggcctgcattccaacaggtctacagtctactgccgacattgttgcactatcaccatccgctaatgccgggttaccttgatggtaacgttcccaaaggcatttgcctttacacgcctgatgaaactcaacgccactacctgaacgagcttgaactgtatcgtggaatgtcagtacaggatccgccgaaaggtgagcttccaattactggtgtatacaccatgggcagcacctcgtccgtagggcaaagttgttcctctgacctggatatctgggtctgtcatcaatcctggctcgatagcgaagagcgccaattgctacaacgtaaatgtagcctgctggaaaactgggccgcctcgctgggtgtggaagtcagcttcttcctgattgatgaaaaccgcttccgtcataatgaaagcggcagcctggggggcgaagattgtggctccacccagcatatactgctgcttgacgaattttatcgtaccgccgtgcgtctcgccggtaagcgtattctgtggaatatggtgccgtgcgacgaagaagagcattacgacgactatgtgatgacgctttacgcgcagggcgtgctgacgccaaatgaatggctggatctcggtggcttaagctcgctttctgctgaagagtactttggtgccagcctttggcagctctacaagagtatcgattccccatacaaagcggtactgaaaacactgctgctggaagcctattcctgggaatacccgaacccacgtctgctggcgaaagatatcaaacagcgtttgcacgacggcgagattgtatcgtttggtctcgatccatactgcatgatgctggagcgtgttactgaatacctgacggcgattgaagattttacccgtctggatttagtacgtcgctgcttctatttaaaagtgtgcgaaaagctcagccgtgaacgcgcctgcgtaggctggcgtcgcgcagtgttgagccagttagtgagcgagtggggttgggacgaagctcgtctggcaatgctcgataaccgcgctaactggaagattgatcaggtgcgtgaggcgcacaacgagttgctcgacgcgatgatgcagagctaccgtaatctgatccgctttgcgcgtcgcaataaccttagcgtctccgccagtccgcaggatatcggcgtgctgacgcgtaagctgtatgccgcgtttgaagcattaccaggtaaagtgacgctggtaaacccgcagatttcacccgatctctcggaaccgaatctgacctttatttatgtgccgccgggccgggctaaccgttcaggttggtatctgtataaccgcgcgccaaatattgagtcgatcatcagccatcagccgctggaatataaccgttacctgaataaactggtggcgtgggcatggtttaacggcctgctgacctcgcgcacccgtttgtatattaaaggtaacggcattgtcgatttgcctaagttgcaggagatggtcgccgacgtgtcgcaccatttcccgctgcgcttacctgcaccgacaccgaaggcgctctacagcccgtgtgagatccgccatctggcgattatcgttaacctggaatatgacccgacagcggcgttccgcaatcaggtggtgcatttcgatttccgtaagctggatgtcttcagctttggcgagaatcaaaattgcctggtaggtagcgttgacctgctgtaccgcaactcgtggaacgaagtgcgtacgctgcacttcaacggcgagcaatcgatgatcgaagccctgaaaactattctcggcaaaatgcatcaggacgccgcaccgccagatagcgtggaagtcttctgttatagccagcatctgcgcggcttaattcgtactcgcgtgcagcaactggtttctgagtgtattgaattgcgtctttccagcacccgccaggaaaccgggcgtttcaaggcgctgcgcgtttctggtcaaacctgggggttgttcttcgaacgcctgaatgtatcggtacagaaactggaaaacgccatcgagttttatggcgcgatttcgcataacaaactgcacggcctgtcagtgcaggttgaaaccaatcacgtcaaattaccggcggtggtggacggctttgccagcgaagggatcatccagttctttttcgaagaaacgcaagacgagaatggctttaatatctacattctcgacgaaagcaaccgggttgaggtatatcaccactgcgaaggcagcaaagaggagctggtacgtgacgtcagtcgcttctactcgtcatcgcatgaccgttttacctacggctcaagcttcatcaacttcaacctgccgcagttctatcagattgtgaaggttgatggtcgtgaacaggtgattccgttccgcacaaaatctatcggtaacatgccgcctgccaatcaggatcacgatacgccgctattacagcaatatttttcgtgatgaacgtgccggaaagcgaggcttatccggcatgcaatcttagcggaaactgactgtttcacccgcctgctgcgtcgccgcctgttccagcaaatcccagaaggtttcgccgctgcgatcacaaatccactcatcgcctttcaggtcaaaatggtagccgccctgtttggttgccagccatacctggtgcagcggctcctggcggttgataatgattttgctgccattctcaaaggtaatggtcagtacgccgccgttgatttcgcagtcgatatcgctgtcgccatcccagtcgtccaggcgttcttcaatggtcagccagagttgatcagccaggcgatgaaattcactgtcgttcattgttgtatcctgtttttaagtgatggcggcagtatagcggcatggggtcagggcttcaaagtttgcacctctgcggctgcgttccggcacgattcatccgtcaccggaataatgatgtctctgtgtagcgaaagatttgtctcttcattagggcgcagttacaccacgtctttccctgtttctggtaaacattatgatcaggtttaccgagcgagcatcctcacgctgacggaactaaaaaagacaacaaacaaaccacattgcgatagtgcataaagccatcctggcgcgaggtgccgatcacgaaactaccagcaaaacataaatccccacgagtaagcgttatactcgcagcatttcctcacttttcagacttcataaagagtcgctaaacgcttgcttttacgtcttctcctgcgatgatagaaagcagaaagcgatgaactttacaggcaatccataatgaaaaacgtgtttaaggcactcactgtattacttactctcttcagcctgacgggctgcggtctgaaaggtccgctctatttcccgcctgcagataaaaacgcaccgccgccgaccaaaccggtagagacgcaaacgcaatccacggtgccggataaaaacgatcgcgccactggcgatggtccatcccaggtgaattactaaaagtcagtttctgtacccgcgtgattggagtaaatgatgcagttctcgaaaatgcatggccttggcaacgattttatggtcgtcgacgcggtaacgcagaatgtctttttttcaccggagctgattcgtcgcctggctgatcggcacctgggggtagggtttgaccaactgctggtggttgagccgccgtatgatcctgaactggattttcactatcgcattttcaatgctgatggcagtgaagtggcgcagtgcggcaacggtgcgcgctgctttgcccgttttgtgcgtctgaaaggactgaccaataagcgtgatatccgcgtcagcaccgccaacgggcggatggttctgaccgtcaccgatgatgatctggtccgcgtaaatatgggcgaacccaacttcgaaccttccgccgtgccgtttcgcgctaacaaagcggaaaagacctatattatgcgcgccgccgagcagacaatcttatgcggcgtggtgtcgatgggaaatccgcattgcgtgattcaggtcgatgatgtcgataccgcggcggtagaaacgcttggtcctgttctggaaagccacgagcgttttccggagcgcgccaatatcggttttatgcaagtggttaagcgcgagcatattcgtttacgcgtttatgagcgtggggcaggagaaacccaggcctgcggcagcggcgcgtgtgcggcggttgcagtagggattcagcaaggtttgctggccgaagaagtacgcgtggaactccccggcggtcgtcttgatatcgcctggaaaggtccgggtcacccgttatatatgactggcccggcggtacatgtctacgacggatttattcatctatgaagcaaccaggggaagaactgcaggaaacactcacggagcttgatgaccgggcggttgtcgattatctgattaaaaatcctgagttttttatccgtaatgcgcgcgcagtagaagcgatacgtgtgccgcatccggtacgcggcaccgtttcgttggtcgagtggcacatggcccgcgcacgtaatcatattcatgttctggaagagaacatggcgctgttgatggaacaggctatcgccaacgaaggcctgttttatcgcctactctacctgcagcgcagtctcaccgccgccagcagtctcgacgatatgctgatgcgctttcaccgctgggcgcgcgatctcggcctggcaggtgcgagtctgcgcctgtttccggatcgctggcgcttaggtgcgccgtcgaaccacactcatctggcattaagccgtcagtctttcgaaccgctgcgtattcagcgtttggggcaggaacagcactatcttgggccgcttaacggaccagagctgctggtggtgctaccggaagcgaaagcggtgggatcggtggcgatgtcgatgctgggaagcgatgctgatttgggtgtcgtgctgtttaccagtcgcgatgccagtcactatcaacaagggcaaggaacgcagttacttcatgaaattgcgctgatgttgccggagcttctggagcgttggattgaacgcgtatgaccgatttacacaccgatgtagaacgctacctacgttatctgagcgtggagcgccagcttagcccgataaccctgcttaactaccagcgtcagcttgaggcgatcatcaattttgccagcgaaaacggcctgcaaagctggcagcaatgtgatgtgacgatggtgcgcaattttgctgtacgcagtcgccgtaaagggctgggagcagcaagtctggcgttacggctttctgcgctacgtagcttttttgactggctggtcagccagaacgaactcaaagctaacccggcgaaaggtgtttcggcaccgaaagcgccgcgtcatctgccgaaaaacatcgacgtcgacgatatgaatcggctgctggatattgatatcaatgatcccctcgctgtacgcgaccgtgcaatgctggaagtgatgtacggcgcgggtctgcgtctttctgagctggtggggctggatattaaacacctcgacctggagtctggtgaagtgtgggttatggggaaaggcagcaaagagcgccgcctgccgattggtcgcaacgctgtggcgtggattgagcactggcttgatttgcgcgacctgtttggtagcgaagacgacgcgctttttctgtcgaaactgggcaagcgtatctccgcgcgtaatgtgcagaaacgctttgccgaatggggcataaaacaagggctgaataatcacgttcatccgcataaattacgtcactcgttcgccacgcatatgctggagtcgagcggcgatcttcgtggtgtgcaggagctgctgggtcatgccaacctctccaccacgcaaatctatactcatcttgattttcaacaccttgcctcggtgtacgatgcggcgcatccacgcgccaaacgggggaaataatgcgtttttaccggcctttggggcgcatctcggccgtcacctttgacctggatgataccctttacgataaccgtccggtgattttgcgcaccgagcgagaggcgcttacctttgtgcaaaattatcatccggcgctgcgcagcttccagaatgaagatctgcaacgcctgcgccaggcggtacgggaagcggaacccgagatttatcacgacgtgacgcgctggttttcgttcgattgaacaagcgatgctcgacgccgggctgagtgccgaagaagccagtgcaggcgcacacgcagcaatgatcaactttgccaaatggcgcagccgaatcgacgtcccgcagcaaactcacgacaccttaaaacagctggcgaagaaatggccgctggtggcgatcaccaacggtaacgcccagccggagctgtttggtttgggggattattttgagtttgtgctgcgcgctggcccgcacgggcgctcaaaaccgttcagcgatatgtactttttggctgcggaaaaactcaacgtgccgatcggagatcttacatgttggggacgatctcaccactgacgtgggtggggcaattcgcagcggaatgcaggcttgttggatcagaccggaaaatggcgatctgatgcaaacctgggacagccgtttactgccgcatctggaaatttcccggttggcatctctgacctcgctgatataatcagcaaatctgtatatatacccagctttttggcggagggcgttgcgcttctccgcccaacctatttttacgcggcggtgccaatggacgtttcttacctgctcgacagccttaatgacaaacagcgcgaagcggtggccgcgccacgcagcaaccttctggtgctggcgggcgcgggcagtggtaagacgcgcgtactggtgcatcgtatcgcctggttgatgaggtggaaaactgctcgccatactcgattatggcggtgacgtttaccaacaaagcggcggcggagatgcgtcatcgtatcgggcaactgatgggcacgagccagggcggtatgtgggtcggcaccttccacggctggcgcaccgtttgctgcgtgcgcaccatatggacgccaatctgccgcaggatttccagatcctcgacagtgaagaccagctacgcctgcttaagcgtctgatcaaagccatgaacctcgacgagaagcagtggccgccgcggcaggcaatgtggtacatcaacagccagaaagatgaaggcctgcgtccgcatcatattcaaagctacggtaatccggtggagcagacctggcagaaggtgtatcaggcgtatcaggaagcgtgtgaccgcgcgggcctggtggacttcgccgagctgctgctgcgcgctcacgagttgtggcttaacaagccgcatatcctgcaacactaccgcgaacgttttaccaatatcctggtggacgaattccaggataccaacaacattcagtacgcgtggatccgcctgctggcgggcgacaccggcaaagtgatgatcgtcggtgatgacgaccagtcaatctacggctggcgcggggcgcaggtggagaatattcagcgtttccttaatgatttccccggtgccgaaactattcgtctggagcaaaactaccgctctaccagcaatattctgagcgccgctaacgccctgattgaaaacaataacgggcgtctgggtaaaaaactgtggaccgatggcgcggacggtgagcctatttccctctattgcgcttttaacgaactcgatgaagcgcgttttgtggttaaccgcatcaaaacctggcaggacaacggcggagcgcttgccgagtgcgccattctctaccgcagcaacgcccagtcgcgggtgctcgaagaggcgttattgcaggccagtatgccgtaccgtatttacggcgggatgcgcttcttcgaacgccaggaaatcaaagatgcgctctcgtatctgcgcctgattgccaaccgcaacgacgacgcggcctttgagcgtgtggtgaatacgccaacgcggggtattggtgaccggacgctggacgtggtacgtcagacatcgcgcgatcgccagttaacactctggcaggcatgtcgtgagctgttgcaggaaaaagccctcgccgggcgagctgccagcgccttgcagcgatttatggaattaatcgacgccttagcgcaggaaactgccgatatgccgctgcatgtacagactgaccgggtaattaaagactccggcctgcgtaccatgtatgagcaggagaagggcgaaaaaggtcagacgcgtatcgaaaacttagaggaactggtgacggcaacgcgccagttcagctacaacgaagaagacgaagatttaatgccgctgcaggcgttcctctcccatgcggcactggaagcaggtgaagggcaggcggatacctggcaggatgcggtgcagttgatgacgctacactcggcgaaaggcctggagttcccgcaggtgtttatcgttggtatggaagagggcatgttcccaagccagatgtcgctggatgaaggcgggcgtctggaagaagaacgccgtctggcctacgttggcgtaacccgcgcgatgcagaaactgacgctgacctacgcggaaacccgccgtctgtatggtaaagaggtttaccatcgcccgtcgcgctttatcggcgagctgccggaagagtgtgtggaagaggtgcgcctgcgcgccacggtaagccgcccggtcagccatcagcggatgggtacgccgatggtcgagaacgacagcggctacaagctcggccagcgcgtacgccacgctaagtttggtgaaggcaccattgtcaatatggaaggcagcggtgagcatagccgtttgcaggtggcatttcagggccagggtattaaatggctggtggcggcatacgcccggctggagtcggtgtaacgttgccggatgcggtgctgcgcaccttatttggcctaaaaaatcattcagattcaataaattgcaacgtcatgtaggccggatagggcgtttacgccgcatccggcatctgcgccatcttcagtatctgacacaaaactatcgttttaacctttccgctcgacggaaatcatggtgacaaaaggatagcgttgccacgggattgccccgcctttcatatacatatgtgaaatcgtgccatcaagataaagcagctgctcaacgttcagtttcgctttggcataacaggcaaaatcataaaaatttgttgcctgctggctcaacaaaaacacggcgttcccatgtttattaatcccaacaccgttacgaattttgcttgaggcgacgttgggatgaatacgcggattaattacaccgttttccatcaacattggccctgactgcaccgcaaactgaatctctttactggttttgaaggcatccagacgaacgatgccgactttatctcccgcgacataaaacacgccgccagacggataaagaaattcccttcacctgaagcgagatttaacgccaccttctgctgaccgttttcgatgtacaaaccgagcggcgcatagctttcatcatagatgccgccgttcatcgccatctgcacctgaccctgactattaatatccgccagcagagcatgtaacgttccccacgcttcgccattggctttttgccagtacattttcacccgctctgtttgaggattaacggtatacgcctgtacggtcagcgtcggatctgagagtgcgcaatcatcagcggcaacagcaaacaagggaagtaaggtgagggcgagaaaaatccgtttgagattcaaggtgatcattcctttaccaatgagtagctgatgcgccattataggtcctggatgtgggatttttttatcctgttagcgaccttgacgagtaccaaaaagcgcgaagttcaactattgttctgtggtgttctgttgcgtgttgacggcaaaattttgctggcgtaacatgcgcgcacgatcactctaagaggacattcgccttggacacacccagtagatactggctcactatcctgtcatccaggatcaactcctaaggctatccctttttgctgatagccttagcgttgtcagcgacctcaatttttcccgtcgcgctgagtcaggctgtttaatggtctgaaacccaatttgtttctgtgtgcccaccgaactgtccgatattttaagcattgggagtcccggtcatgctgagcgcatttcaactggaaaataaccgactgacccggctggaagtcgaagagtcacaaccccttgtaaatgcagtatggattgatcttgtcgaaccggacgacgacgagcgactgcgcgtacaatctgaacttggccagaggcctgcaacccgcccggaactggaagacatcgaagcatcggcacgtttctttgaagacgacgacggcctgcatattcactccttcttcttctttgaagatgcggaagatcacgccggtaactccactgtggcatttaccatccgtgatggtcgtctgtttactctgcgtgagcgtgaactgcccgcttttcgtctgtatcgtatgcgtgcccgtagccagtcgatggtagacggtaacgcctacgagttgctgctggatctgttcgaaaccaaaatcgaacagttggcagatgaaattgaaaatatctatagcgacctggagcagttgagccgggtgattatggaagggcatcagggcgatgagtacgacgaggcgctctccactctggcggaactggaagatatcggctggaaagttcgcctgtgtctgatggatacccagcgcgcgctcaacttcctggtgcgtaaagcgcgtttaccgggtgggcaactggagcaggcgcgtgaaatcctgcgagatatcgaatccctgctgccgcataacgaatccctgttccagaaggtgaacttcctgatgcaggcggcaatgggttttatcaacatcgagcagaaccgcatcatcaaaatcttctcggtggtatccgtggtattcctgccgccgacgctcgttgcttccagctatggcatgaactttgagtttatgccagaactgaagtggagcttcggctaccctggcgcgattatctttatgatcctcgcgggcctggcaccgtatctgtactttaagcggaagaactggttgtaaaaaacgagagcggtggcttagtctggctaagccacctgttattcaaaggctccaggtatttaacccttttacctctttctcatagaaccatttgttcgtgttaacagcaacataggctgctacggcaattcccagaatgttaacgccaattagtgcaccaacaaatagagatagaataccaagtaatagaactataattgcttttttccataaccccaggacaaataaatatatccaggaacagaagaaagcaatgaaattcatttgaatagttaagcgttgtcttacttttaatgctttaaatgctgctttatattctggtgttgccccccagaatccaggaaaaccatgttgatcataaaaattaaatcggtatttccatttttcacttaatgaaccatcgttcatatattccttactcataaatactccataactattgttttgatgaatcagtaggtgcaagcattagcatactgaaagtggaaaaataacaaatcaaaaaaatcatcgaaccattgcctgaacaggcaaaatcttcggctatcattgtgatgatagagatgatatatactgctaatgtaccaaaaacataagtttttatatagatgaaaccactatcacggagtcgctggcaattcatgttgatgacgagataatggagtacgatggtagagactataacaagaaagcctgcttctccatcgttaaaaaagataataagaaaggcaaaaatgaaatttattaaaataaatgaaaatatataacgacgtctggaaatcttaccgttagatgttgggataaatatacgtaacataaattttacatccttgtatgagtctccggtcagcatggcaatatgcccactctcatgcaagagtcggcatattttttcagaatatatttattttttatttggacgttctacgctgcgtataaatcgcatccatcacaaaaattgccagcgccacccaaataaaggcgaaagtcaccatcttatcggcacccggtttttcaccataaaacgtcacagccagcaggaacatcagcgtcgggccaatgtactggaaaaagcctaacgttgagagacgcaagcgcgtggcagcggcggtaaaacacaacagcggtacggtagtgacaataccggcggcgatcagcagtaaattcagcgacatcgggttttgccccatatggctggttgagctgtcggcaatagcaaacaggtaaattgccgccacgggcagcagccacatggtttcgattaacatgccggtttgcgcttcaacggcaatcttcttgcgtaccagaccgtagaaggcaaaactaaatgccagtcccagcgcgataataggtagcgaaccaaaagtccacagctggactaacacgccacatatcgccagaatcaccgccagccattgcatccggcggaatccgtcgccgaggaaaatcatccccagcacaatgttcaccagcgggttaataaagtaaccaaggctccgttccagcatatggtgattgttcaccgcccagataaacagtagccagttgccaccaatcagcacggcagagactgccagcataaaaattttctgtggcgtctgaatcagcgtttttaaataggaccactggcggcaaatgctcatcagcaccaccataaagaaaaacgaccagatcacgcgatgcgtcaggatttcatcggcgggcacgtagtaaatcaacttgaagtacgtggcgctataccccaaataaaataagcggcaagagcgagtaatacgccctgccgcgtttgttttgcatccatcgggaatactcatttttaattggtaacagcagtttacctgcttttatgtcttcaacctaccatataggtggcggtggcactggcaatataaagctgttcttcattgtgtaattcaacgcgggcgacggcgactttattgcctgcacgcaacaggctactagtagcagtaaaacgctcgcccctgcctgggcgcagataatcaacgcgaagatcaatggtccccatccgcgatacgcgctggcgtagttcatcttcactgatggtttcgtggcgggttaaggtacttcccacgcacaccagaccggcggcgacatccagcgccgacgcaatgaccccgccgtgcaaaatgctttgcgcccagttgcccaccatcattggctgatttttaaaggccagctgtgcgaactctttttcgtaacgctccagttccatccccaatgcgcggttaaatggcatgtgataaacaaacatctcacccactaatttcagggcttgttcagcggtcagtacggcagacatatcatccttacacttcattggttaatgaaatgttgattttatgcttctttgttgttggtttctactttaggaagggataactaacggctatggagttaagtatgtaaaatagcccgcagaaaaatattcaccttatcaataattcgttacggagaacacgaccgatgcggactctgcagggctggttgttgccggtgtttatgttcgctatggcagtatatgcacaagaggcaacggtgaaagaggtgcatgacgcgccagcggtgcgtggcagtattatcgccaatatgctgcaggagcatgacaatccgttcacgctctatccttatgacaccaactacctcatttacacccaaaccagcgatctgaataaagaagcgattgccagttacgactgggcggaaaatgcgcgtaaggatgaagtaaagtttcagttgagcctggcatttccgctgtggcgtgggattttaggcccgaactcggtgttgggtgcgtcttatacgcaaaaatcctggtggcaactgtccaatagcgaagagtcttcaccgtttcgtgaaaccaactacgaaccgcaattgttcctcggttttgccaccgattaccgttttgcaggttggacgctgcgcgatgtggagatggggtataaccacgactctaacgggcgttccgacccgacctcccgcagctggaaccgcctttatactcgcctgatggcagaaaacggtaactggctggtagaagtgaagccgtggtatgtggtgggtaatactgacgataacccggatatcaccaaatatatgggttactaccagcttaaaatcggctatcacctcggtgatgcggtgctcagtgcgaaaggacagtacaactggaacaccggctacggcggcgcggagttaggcttaagttacccgatcaccaaacatgtgcgcctttatactcaggtttacagcggctatggcgaatcgctcatcgactataacttcaaccagacccgtgtcggtgtgggggttatgctaaacgatttgttttgatgaacggttgagtggttggcaaatctggaatccagcatccaggattaccctctcagagactaaaagcattgcagtttctcgcgcaggcgctgaaaatagcgcctgtttttatttcaggcaatcggggtgaatgtggcgcaggcggaagtgttgaatctggagtccggagctaaacaggttttacaagaaacctttggctaccaacagtttcgccccggccaggaagaaattatcgacactgtgctttccggccgcgattgcctcgtcgtcatgcccactggtggcggaaaatccctttgctatcaaatccctgccttattgctaaacggccttaccgtggttgtttcaccgctgatttcgttgatgaaagatcaggtggatcaactgcaagccaacggcgtggcggcggcgtgccttaactcgacgcaaacccgcgaacagcaacttgaagtgatgacaggctgccgcaccgggcaaattcgtctgctttatatcgccccggaacgcctgatgctggataactttcttgagcatctggcgcactggaatccggtgttattagccgttgatgaagcgcactgtatctcccaatggggccacgatttccgcccggaatatgccgcgctcggtcagttgcgccagcggttcccgacgctgccgtttatggcgctgaccgccacagccgacgacaccacgcgccaggatatcgtgcgcctgctggggctgaacgatccgctgattcaaatcagcagttttgaccgtccgaatattcgctacatgctgatggagaagttcaaaccgctcgatcagttgatgcgctacgtgcaggaacagcgcggtaagtcaggcattatctactgcaacagccgcgcgaaagtagaagacaccgctgcggccctgcaaagcaagggaattagcgcggcggcctatcatgccgggctggaaaataatgttcgcgccgatgtgcaggaaaaattccagcgcgatgacctgcaaattgtggtggcgacggtggcgttcggcatgggcatcaataaaccaaacgttcgcttcgtggtccactttgatattccgcgcaatatcgaatcctattatcaggaaaccggacgcgccgggcgtgatggcctgcccgcggaagcgatgctgttttacgatccggctgatatggcgtggctgcgccgttgtctggaagagaagccgcaggggcagttgcaggatatcgagcgccacaaactcaatgcgatgggcgcgtttgccgaagcgcaaacttgccgtcgtctggtattgctgaactattttggcgaagggcgtcaggagccgtgcgggaactgcgatatctgcctcgatccgccgaaacagtacgacggttcaaccgatgctcagattgccctttccaccattggtcgtgtgaatcagcggtttgggatgggttatgtggtggaagtgattcgtggtgctaataaccagcgtatccgcgactatggtcatgacaaactgaaagtctatggcatgggccgtgataaaagccatgaacattgggtgagcgtgatccgccagctgattcacctcggcctggtgacgcaaaatattgcccagcattctgccctacaactgacagaggccgcgcgcccggtgctcgcggaatcctctttgcaacttgccgtgccgcgtatcgtggcgctcaaaccgaaagcgatgcagaaatcgttcggcggcaactatgatcgcaaactgttcgccaaattacgcaaactgcgtaaatcgatagccgatgaaagtaatgtcccgccgtacgtggtgtttaacgacgcaaccttgattgagatggctgaacagatgccgatcaccgccagcgaaatgctcagcgttaacggcgttgggatgcgcaagctggaacgctttggcaaaccgtttatggcgctgattcgtgcgcatgttgatggcgatgacgaagagtagtcagcagcataaaaaagtgccagtatgaagactccgtaaacgtttcccccgcgagtcaaatgtatgttgatgttatttctcaccgtcgccatggtgcacattgtggcgcttatgagccccggtcccgatttcttttttgtctctcagaccgctgtcagtcgttcccgtaaagaagcgatgatgggcgtgctgggcattacctgcggcgtaatggtttgggctgggattgcgctgcttggcctgcatttgattatcgaaaaaatggcctggctgcatacgctgattatggtgggcggtggctgtatctctgctggatgggttaccagatgctacgtggtgcactgaaaaaagaggcggtttctgcacctgcgccacaggtcgagctggcgaaaagtgggcgcagtttcctgaaagtttactgaccaatctcgctaatccgaaagcgattatctactttggctcggtgttctcattgtttgtcggtgataacgttggcactaccgcgcgctggggcatttttgcgctgatcattgtcgaaacgctggcgtggtttaccgtcgttgccagcctgtttgccctgccgcaaatgcgccgtggttatcaacgtctggcgaagtggattgatggttttgccggggcgttatttgccggatttggcattcatttgattatttcgcggtgatgccagacgcgtcttcagagtaagtcggataaggcgtttacgccgcatccgacattatttttcacgcatgcctcgccgatgctaacagcgctcccaccagcataaacaacgagccgaaaatcttattcagcgccttcatctgctttggtcctttaatccatagagcaatccgttgagcaagggtggcgtaaccgatcatcacaataatatcgaccacaatagtggtgacgccgagcacgatatactgcatcagttgcggctgttgcggcatgatgaattgcggaaatagcgccgccagaaacacaatacttttgggattggtgagattcacaaaaactgcgcgctggaacaaatgtcgacgcgattgagtagaggccagcgatttaaggtcaattgcaccagcggcgcgccactgctggattcccagccaaatcaagtaagccgcgcctgcccacttcaacacttcaaacgcaatcactgagcgggaaaatagcgtcccaaccccacgccaaccagcacaatatgaatcgccagtccggtctgaagcccagcaatagacgccaccgcgccgcgataaccgtggttgagcgaggtggtcatagtgttgattgcaccagagcctggcgacagcgttaaaatgatcgatgtcagcaggtaggcaaaccaccattctaaggtcatgatgaactcccggtgtgtctatttttgtgccacaatacgctactgtcgcagcgttgtgtcaggcacgctaaaaaaaacgattttacgtggtttaagaggcagattacccgatgtttcagcagcaaaaagactgggaaacaagagaaaacgcgtttgctgcttttaccatgggaccgctgactgatttctggcgtcagcgtgatgaagcagagtttactggtgtggatgacattccggtgcgctttgtccgttttcgcgcacagcaccatgaccgggtggtagtcatctgcccggggcgtattgagagctacgtaaaatatgcggaactggcctatgacctgttccatttggggtttgatgtcttaatcatcgaccatcgcgggcagggacgttccggtcgcctgttagccgatccgcatctcgggcatgttaatcgctttaatgattatgttgatgatctggcggcattctggcagcaggaggttcagcccggtccgtggcgtaaacgctatatactggcacattcgatgggcggtgcgatctccacattatttctgcaacgccatccaggtgtatgtgacgccattgcgctaactgccgcaatgtttgggatcgtgattcgtatgccgtcatttatggcacggcagatcctcaactgggccgaagcgcatccacgtttccgtgatggctatgcaataggcaccgggcgctggcgcgttgccgtttgctatcaacgtactgacccacagcagacagcgatatcgacgtaacttacgcttctatgctgatgacccaacgattcgcgtcggtgggccgacctaccattgggtacgcgaaagtattctggctggcgaacaggtgttagccggtgcgggtgatgacgccacgccaacgcttctcttgcaggctgaagaggaacgcgtggtggataaccgcatgcatgaccgtttttgtgaactccgcaccgccgcgggccatcctgtcgaaggaggacggccgttggtaattaaaggtgcttaccatgagatcctttttgaaaaggacgcaatggcctcagtcgcgctccacgccatcgttgattttttcaacaggcataactcacccagcggaaaccgctctacagaggtttaaatttcttatgtaccaggttgttgcgtctgatttagatggcacgttactttctcccgaccatacgttatccccttacgccaaagaaactctgaagctgctcaccgcgcgccatcaactttgtgtttgcgaccggtcgtcaccacgttgatgtggggcaaattcgcgataatctggagattaagtcttacatgattacctccaatggtgcgcgcgttcacgatctggatggtaatctgatttttgctcataacctggatcgcgacattgccagcgatctgtttggcgtagtcaacgacaatccggacatcattactaacgtttatcgcgacgacgaatggtttatgaatcgccatcgcccggaagagatgcgcttttttaaagaagcggtgttccaatatgcgctgtatgagcctggattactggagccggaaggcgtcagcaaagtgttcttcacctgcgattcccatgaacaactgctgccgctggagcaggcgattaacgctcgttggggcgatcgcgtcaacgtcagtttctctaccttaacctgtctggaagtgatggcgggcggcgtttcaaaggccatgcgctggaaggctggcgaactggctacagctgaaggattgattgcgttgtgacgggatgaacgacgccgaaatgctgtcgatggcgggaaagctgcattatgggcagtggccaccagcgtctgaaagaccttcatcccgagctgaagtgattggtactaatgccgacgacgcggtgccgcattatctgcgtaaactctatttatcgtaatcgttctttatttggtcagttgtcaacctgatacttcgctacaatggatacccgttaatcaaagagttttccattgtggcgctacttatcatcaccacgattctgtgggccttctcctttagcttttatggcgagtaccttgcggggcacgtcgatagctattttgcggtgctggtgcgcgttggcctggcggcactcgtttttctgccgtttctgcgtacccgtggcaatagcctgaaaacggtcggcctgtatatgctggtgggcgcgatgcagcttggcgtgatgtatatgctgagtttccgcgcttatctctacctgacggtttccgagctgctgctgttcaccgtgctgacgccgctctacatcacgctgatttatgacatcatgagtaagcgccgtctgcgctggggctatgcctttagcgccttgctggcggtgattggtgccgggattattcgctatgatcaggtcaccgaccatttctggactggcttgctgctggtgcaactctccaatatcacttttgccattggcatggtgggttacaaacgcctgatggaaactcgcccgatgccacagcataacgcctttgcgtggttctatcttggcgcgtttctggtggcagtgattgcatggttcttgctgggaaatgcgcagaaaatgccgcaaaccacgctgcaatggggcattctggtgtttcttggcgtggtggcttccgggattggctactttatgtggaactacggcgcgacgcaggtggacgccggaacgctgggcattatgaataatatgcacgttccggcagggctgctggtaaacctggctatctggcaccaacagccgcactggccaacgtttattacaggcgcgctggtgatcctggcctcactgtgggtgcatcgtaagtgggtcgctccgcgctcttcacaaacggcagatgatcgcaggcgtgattgcgcgctgagcgaataaacgcttccgtaactggctgacgctgctcgccatcgcgcacggcggcgtacagtcggctccacaagccttcgcccagggttttggtcaccaccagaccctggcgctcaaaactctctactacccaatgcggtagcgcggcaatacccatccgcgcggcaaccatctgaatcaacaataaggtgttatcgacgcttttcagtgacgggctgacgcctgccggctgaagaaaatgccgccagacatccagtcgactacgctgcaccggataaattaatagcgtctcgctggcgagatcttccggtgtaattcgcgttttcgccgccagtggatggtcaggtgctaacaccagacgcacttcatagtcgaacatcggcgaataatgcaggccactgcgcggcagaatatcggacgtcattaccagatccagctctccctgttgcaaggcgggctgcgggtcaaatgtcacgcccgatttaaaatccatctctacctgcggccagttcttatggaaattttctaacgcgggtgtcagccactgaatacagctatggcactcaatggcaatgcgcagacgcgtctgctgcggttcattgcaggcttgcagggcctggctaatttgcggcagtacctggtttgccagttgcaacaggatttctccctgcggtgtaaagcgtagcggctggctcttacgcacaaatagccggaagccaaggcgttgttccagatcgctaaactggtgagacagggcggattgcgtctgatgcaacgtcgccgcagcggctgcgagcgagccgcagttccgcaacgcttgtagcgttttcaggtgttttacttcgatcatgaaagtccttcacttcggcatgaataatttgcgcttgaggaatatacagtaaccgccaattatggatgtgtaaacatctggacggctaaaatccttcgtcttttaaatttatggtgcgttggctgcgtttctccaccccggtcacttacttcagtaagctcccggggatgaataaacttgccgccttccctaaattcaaaatccataggatttacatataattagaggaagaaaaaatgacaatattgaatcacaccctcggtttccctcgcgttggcctgcgtcgcgagctgaaaaaagcgcaagaaagttattgggcggggaactccacgcgtgaagaactgctggcggtagggcgtgaattgcgtgctcgtcactgggatcaacaaaagcaagcgggtatcgacctgctgccggtgggcgattttgcctggtacgatcatgtactgaccaccagtctgctgctgggtaacgttccggcgcgtcatcagaacaaagatggttcggtagatatcgacaccctgttccgtattggtcgtggacgtgcgccgactggcgaacctgcggcggcagcggaaatgaccaaatggtttaacaccaactatcactacatggtgccggagttcgttaaaggccaacagttcaaactgacctggacgcagctgctggacgaagtggacgaggcgctggcgctgggccacaaggtgaaacctgtgctgctggggccggttacctggctgtggctggggaaagtgaaaggtgaacaatttgaccgcctgagcctgctgaacgacattctgccggtttatcagcaagtgctggcagaactggcgaaacgcggcatcgagtgggtacagattgatgaacccgcgctggtactggaactaccacaggcgtggctggacgcatacaaacccgcttacgacgcgctccagggacaggtgaaactgctgctgaccacctattttgaaggcgtaacgccaaatctcgacacgattactgcgctgcctgttcagggtctgcatgttgacctcgtacatggtaaagatgacgttgctgaactgcacaagcgcctgccttctgactggttgctgtctgcgggtctgatcaatggtcgtaacgtctggcgcgccgatcttaccgagaaatatgcgcaaattaaggacattgtcggcaaacgtgatttgtgggtggcatcttcctgctcgttgctgcacagccccatcgacctgagcgtggaaacgcgtcttgatgcagaagtgaaaagctggtttgccttcgccctacaaaaatgccatgaactggcactgctgcgcgatgcgctgaacagtggtgacacggcagctctggcagagtggagcgccccgattcaggcacgtcgtcactctacccgcgtacataatccggcggtagaaaagcgtctggcggcgatcaccgcccaggacagccagcgtgcgaatgtctatgaagtgcgtgctgaagcccagcgtgcgcgttttaaactgccagcgtggccgaccaccacgattggttccttcccgcaaaccacggaaattcgtaccctgcgtctggatttcaaaaagggcaatctcgacgccaacaactaccgcacgggcattgcggaacatatcaagcaggccattgttgagcaggaacgtttgggactggatgtgctggtacatggcgaggccgagcgtaatgacatggtggaatactttggcgagcacctcgacggatttgtctttacgcaaaacggttgggtacagagctacggttcccgctgcgtgaagccaccgattgtcattggtgacattagccgcccggcaccgattaccgtggagtgggcgaagtatgcgcaatcgctgaccgacaaaccggtgaaagggatgctgacggggccggtgaccatactctgctggtcgttcccgcgtgaagatgtcagccgtgaaaccatcgccaaacagattgcgctggcgctgcgtgatgaagtggccgatctggaagccgctggaattggcatcatccagattgacgaaccggcgctgcggcaaggtttaccgctgcgtcgtagcgactgggatgcgtatctccagtggggcgtagaggccttccgtatcaacgccgccgtggcgaaagatgacacacaaatccacactcacatgtgttattgcgagttcaacgacatcatggattcgattgcggcgctggaccgagacgtcatcaccatcgaaacctcgcgttccgacatggagttgctggagtcgtttgaagagtttgattatccaaatgaaatcggtcctggcgtctatgacattcactcgccaaacgtaccgagcgtggaatggattgaagccttgctgaagaaagcggcaaaacgcattccggcagagcgcctgtgggtcaacccggactgtggcctgaaaacgcgcggctggccagaaacccgcgcggcactggcgaacatggtgcaggcggcgcagaacttgcgtcgggggtaaaatccaaaccgggtggtaataccacccggtcttttctcattacagcgacttcttcccaccatactgcttaaaccattccagcatacgctgccagccatcttctgcagatgcggcatgatagctcgggcgataatcagcgttgaatgcatgcccggcgtccgggtacacgataatctctgctttcgcattagcagcccgcagcgcctggcgcatggtttcaacgctctcctgcggaatgctgttatcctgaccaccatataagccgagaatccggcgttaagatcggttgcgatatcaacaggttgtttcggtgaattcagcgacttgtccgcgtcagtttgccgtaccacgccactgcgcttttagctgtggattatgcgcggcatacagccaggtgatacgtccaccccagcagaatccggtgatcattaaacgatgaacatcgccgccgttgcgaagcccaactggcgacatgatcgagatcggccagcacctgcgagtcaggcacttttgctaccagaccgctaagcaacgtggggatatcggcaaaatcattcggatcgccttcgcggaagtaaagttcaggtgcgatacgcagatacccctccagcgccagacggcacaaatgtcggatatgttcatgcacgccaaaaatttcctgcactacaatgaccactggcagtggccatcgctttgctttggtctggcatggtaagcaggcatgttatcccttgtgaagggatagaggtgaagcccgccacaatcgtgtcggggtctgaacgatggtcgaagcgagaggcatgcagcaggtgcaaatccagattgttgtgttgttgccatggtattctccgtaccttataaaaatgttgcgcaatgttaactatagtcagcatgccaacaaatcacattgcctgaatcggctcatcttttatgcagtcctgcagaatgaagggtgatttatgtgatttgcatcacttttggtgggtaaatttatgcaacgcatttgcgtcatggtgatgagtatcacgaaaaaatgttaaacccttcggtaaagtgtctttttgcttcttctgactaaaccgattcacagaggagttgtatatgtccaagtctgatgtttttcatctcggcctcactaaaaacgatttacaaggggctacgcttgccatcgtccctggcgacccggatcgtgtggaaaagatcgccgcgctgatggataagccggttaagctggcatctcaccgcgaattcactacctggcgtgcagagctggatggtaaacctgttatcgtctgctctaccggtatcggcggcccgtctacctctattgctgttgaagagctggcacagctgggcattcgcaccttcctgcgtatcggtacaacgggcgctattcagccgcatattaatgtgggtgatgtcctggttaccacggcgtctgtccgtctggatggcgcgagcctgcacttcgcaccgctggaattcccggctgtcgctgatttcgaatgtacgactgcgctggttgaagctgcgaaatccattggcgcgacaactcacgttggcgtgacagcttcttctgataccttctacccaggtcaggaacgttacgatacttactctggtcgcgtagttcgtcactttaaaggttctatggaagagtggcaggcgatgggcgtaatgaactatgaaatggaatctgcaaccctgctgaccatgtgtgcaagtcagggcctgcgtgccggtatggtagcgggtgttatcgttaaccgcacccagcaagagatcccgaatgctgagacgatgaaacaaaccgaaagccatgcggtgaaaatcgtggtggaagcggcgcgtcgtctgctgtaattctcttctcctgtctgaaggccgacgcgttcggccttttgtatttttgcgtagcgcctcgcaggaaatgcctttccaactggacgtttgtacagcacaattctattttgtgcgggtaagttgttgcgtcaggaggcgttgtggatttctcaatcatggtttacgcagttattgcgttggtgggtgtggcaattggctggctgtttgccagttatcaacatgcgcagcaaaaagccgagcaattagctgaacgtgaagagatggtcgcggagttaagcgcggcaaaacaacaaattacccaaagcgagcactggcgtgcagagtgcgagttactcaataacgaagtgcgcagcctgcaaagtattaacacctctctggaggccgatctgcgtgaagtaaccacgcggatggaagccgcacagcaacatgctgacgataaaattcgccagatgattaacagcgagcagcgcctcagtgagcagtttgaaaacctcgccaaccgtatttttgagcacagcaatcgccgggttgatgagcaaaaccgtcagagtctgaacagcctgttgtcgccgctacgtgaacaactggacggtttccgccgtcaggttcaggacagcttcggtaaagaagcacaagaacgccataccctgacccacgaaattcgcaatctccagcaactcaacgcgcaaatggcccaggaagcgatcaacctgacgcgcgcgctgaaaggcgacaataaaacccagggcaactggggcgaggtagtattgacgcgggtgctggaggcttccggtctgcgtgaagggtatgaatatgaaacccaggtcagcatcgaaaatgacgcccgctcgcggatgcagccggatgtcatcgtgcgcctgccgcagggaaaagatgtggtgatcgacgccaaaatgacgctggtcgcctatgaacgctattttaacgccgaagacgactacacccgcgaaagcgcgctacaggaacatatcgcgtcggtgcgtaaccatatccgtttgctgggacgcaaagattatcaacagctgccggggctgcgaactctggattacgtgctgatgtttattcccgttgaacccgcttttttactggcgcttgaccgccagccggagctgatcaccgaagcgttgaaaaacaacatcatgctggttagcccgactacgctgctggtggcgctgcgcactatcgccaacctgtggcgttatgagcatcaaagccgcaacgcccagcaaatcgccgatcgtgccagcaagctgtacgacaagatgcgtttgttcatcgatgacatgtccgcgattggtcaaagtctcgacaaagccaggataattatcggcaggcaatgaaaaaactctcttcagggcgcggaaatgtgctggcgcaggcagaagcgtttcgcggtttaggagtagaaattaaacgcgagattaatccggatttggctgaacaggcggtgagccaggatgaagagtatcgacttcggtcggttccggagcagccgaatgatgaagcttatcaacgcgatgatgaatataatcagcagtcgcgctagcccattgggagtagttaagccgggtagaaatctagggcatcgacgcccaatctgttacacttctggaacaattttttgatgagcaggcattgagatggtggataagtcacaagaaacgacgcactttggttttcagaccgtcgcgaaggaacaaaaagcggatatggtcgcccacgttttccattccgtggcatcaaaatacgatgtcatgaatgatttgatgtcatttggtattcatcgtttgtggaagcgattcacgattgattgcagcggcgtacgccgtgggcagaccgtgctggatctggctggtggcaccggcgacctgacagcgaaattctcccgcctggtcggagaaactggcaaagtggtccttgctgatatcaatgaatccatgctcaaaatgggccgcgagaagctgcgtaatatcggtgtgattggcaacgttgagtatgttcaggcgaactgaggcgctgccgttcccggataacacctttgattgcatcaccatttcgtttggtctgcgtaacgtcaccgacaaagataaagcactgcgttcaatgtatcgcgtgctgaaacccggcggccgcctgctggtgcttgagttctcgaagccaattatcgagccgctgagcaaagcctatgatgcatactccttccatgttgccgcgtattggctcactggtcgcgaacgacgccgacagctaccgttatctggcagaatccatccgtatgcatcccgatcaggataccctgaaagccatgatgcaggatgccggattcgaaagtgtcgactactacaatctgacggcaggggttgtggcgctgcatcgtggttataagttctgacaggagaccggaaatgccttttaaacctttagtgacggcaggaattgaaagtctgctcaacaccttcctgtatcgctcacccgcgctgaaaacggcccgctcgcgtctgctgggtaaagtattgcgcgtggaggtaaaaggcttttcgacgtcattgattctggtgttcagcgaacgccaggttgatgtactgggcgaatgggcaggcgatgctgactgcaccgttatcgcctacgccagtgtgttgccgaaacttcgcgatcgccagcagcttaccgcactgattcgcagtggtgagctggaagtgcagggcgatattcaggtggtgcaaaacttcgttgcgctggcagatctggcagagttcgacctgcggaactgctggccccttataccggtgatatcgccgctgaaggaatcagcaaagccagcggaggcgcaaagttcctgcatcacggcattaagcgccagcaacgttatgtggcggaagccattactgaagagtggcgtatggcacccggtccgcttgaagtggcctggtttgcggaagagacggctgccgtcgagcgtgctgttgatgccctgaccaaacggctggaaaaactggaggctaaatgacgccaggtgaagtacggcgcctatatttcatcattcgcacttttttaagctacggacttgatgaactgatccccaaaatgcgtatcaccctgccgctacgctatggcgatactcattattctggatgccaaatcggcataaagacaaacttttaggtgagcgactacgactggccctgcaagaactggggccggtttggatcaagttcgggcaaatgttatcaacccgccgcgatctttttccaccgcatattgccgatcagctggcgttattaggacaaagttgctccgtttgatggcaagctggcgaagcagcagattgaagctgcaatggcgctgccggtagaagcgtggtttgacgattttgaaatcaagccgctggacttctgcttctatcgcccaggttcataccgcgcgattgaaaatcgaatggtaaagaggtggtgattaaagtcatccgcccggatattttgccggttattaaagcggatctgaaacttatctaccgtctggctcgctgggtgccgcgtttgctgccggatggtcgccgtctgcgcccaaccgaagtggtgcgcgagtacgaaaagacattgattgatgaactgaatttgctgcgggaatctgccaacgccattcagcttcggcgcaattttgaagacagcccgatgctctacatcccggaagtttaccctgactattgtagtgaagggatgatggtgatggagcgcatttacggcattccggtgtctgatgttgcggcgctggagaaaaacggcactaacatgaaattgctggcggaacgcggcgtgcaggtgttcttcactcaggtctttcgcgacagctttttccatgccgatatgcaccctggcaacatcttcgtaagctatgaacacccggaaaacccgaaatatatcggcattgattgcgggattgttggctcgctaaacaaagaagataaacgctatctggcagaaaactttatcgccttctttaatcgcgactatcgcaaagtggcagagctacacgtcgattctggctgggtgccaccagataccaacgttgaagagttcgaatttgccattcgtacggtctgtgaacctatctttgagaaaccgctggccgaaatttcgtttggacatgtactgttaaatctgtttaatacggcgcgtcgcttcaatatggaagtgcagccgcaactggtgttactccagaaaaccctgctctacgtcgaaggggtaggacgccagctttatccgcaactcgatttatggaaaacggcgaagcctttcctggagtcgtggattaaagatcaggtcggtattcctgcgctggtgagagcatttaaagaaaaagcgccgttctgggtcgaaaaaatgccagaactgcctgaattggtttacgacagtttgcgccagggcaagtatttacagcacagtgttgataagattgcccgcgagcttcagtcaaatcatgtacgtcagggacaatcgcgttattttctcggaattggcgctacgttagtattaagtggcacattcttgttggtcagccgacctgaatgggggctgatgcccggctggttaatggcaggtggtctgatcgcctggtttgtcggttggcgcaaaacacgctgattttttcatcgctcaaggcgggccgtgtaacgtataatgcggctttgtttaatcatcatctaccacagaggaacatgtatgggtggtatcagtatttggcagttattgcattattgccgtcatcgttgtactgctttttggcaccaaaaagctcggctccatcggctccgatcttggtgcgtcgatcaaaggctttaaaaaagcaatgagcgatgatgaaccaaagcaggataaaaccagtcaggatgctgattttactgcgaaaactatcgccgataagcaggcggatacgaatcaggaacaggctaaaacagaagacgcgaacgccacgataaagagcatgggtgtaatccggtgtttgatatcggttttagcgaactctattggtgttattcggctgctgcttcggggccgcaacgactcgtggcggtaaaaacggtagggctggatcgcgcgttggttcactggcgacaaggtgcagaacgaactgacccaggagttaaaactccaggagtttcaggacagtctgaaaaaggttgaaaaggcgagcctcactaacctgacgcccgaactgaaagcgtcgatggatgaactacgccaggccgcggagtcgatgaagcgttcctacgttgcaaacgatcctgaaaaggcgagcgatgaagcgcacaccatccataacccggtggtgaaagataatgaagctgcgcatgagggcgtaacgcctgccgctgcacaaacgcaggccagttcgccggaacagaagccagaaaccacgccagagccggtggtaaaacctgctgcggacgctgaaccgaaaaccgctgcaccttccccttcgtcgagtgataaaccgtaaacatgtctgtagaagatactcaaccgcttatcacgcatctgattgagctgcgtaagcgtctgctgaactgcattatcgcggtgatcgtgatattcctgtgtctggtctatttcgccaatgacatctatcacctggtatccgcgccattgatcaagcagttgccgcaaggttcaacgatgatcgccaccgacgtggcctcgccgttctttacgccgatcaagctgacctttatggtgtcgctgattctgtcagcgccggtgattctctatcaggtgtgggcatttatcgccccagcgctgtataagcatgaacgtcgcctggtggtgccgctgctggtttccagctctctgctgttttatatcggcatgcattcgcctactttgtggtctttccgctggcatttggcttccttgccaataccgcgccggaaggggtgcaggtatccaccgacatcgccagctatttaagcttcgttatggcgctgtttatggcgtttggtgtctcctttgaagtgccggtagcaattgtgctgctgtgctggatggggattacctcgccagaagacttacgcaaaaaacgcccgtatgtgctggttggtgcattcgttgtcgggatgttgctgacgccgccggatgtcttctcgcaaacgctgttggcgatcccgatgtactgtctgtttgaaatcggtgtcttcttctcacgcttttacgttggtaaagggcgaaatcgggaagaggaaaacgacgctgaagcagaaagcgaaaaaactgaagaataaattcaaccgcccgtcagggcggttgtcatatggagtacaggatgtttgatatcggcgttaatttgaccagttcgcaatttgcgaaagaccgtgatgatgttgtagcgtgcgcttttgacgcgggagttaatgggctactcatcaccggcactaacctgcgtgaaagccagcaggcgcaaaagctggcgcgtcagtattcgtcctgttggtcaacggcgggcgtacatcctcacgacagcagccagtggcaagctgcgactgaagaagcgattattgagctggccgcgcagccagaagtggtggcgattggtgaatgtggtctcgactttaaccgcaacttttcgacgccggaagagcaggaacgcgcttttgttgcccagctacgcattgccgcagatttaaacatgccggtatttatgcactgtcgcgatgcccacgagcggtttatgacattgctggagccgtggctggataaactgcctggtgcggttcttcattgctttaccggcacacgcgaagagatgcaggcgtgcgtggcgcatggaatttatatcggcattaccggttgggtttgcgatgaaccgacgcggactggagctgcgggaacttttgccgttgattccggcggaaaaattactgatcgaaactgatgcgccgtatctgctccctcgcgatctcacgccaaagccatcatcccggcgcaacgagccagcccatctgccccatattttgcaacgtattgcgcactggcgtggagaagatgccgcatggctggctgccaccacggatgctaatgtcaaaacactgtttgggattgcgttttagagtttgcggaactcggtattcttcacactgtgcttaatctctttattaataagattaagcaatagcatggagcgagcctcaccatcgggttcggtgaaaatggcctgaaagccttcgaacgcgccttcggtaataatcaccttatcacccggataaggggttgccggatcgacaatgtctttcggtttatataccgatagctgatgaataaccgccgatgggactatcgctggcgacgcgccaaagcgcacgaagtggctgacaccgcgggtcgcgttgatagtcgtggtatgaatcacttctgggtcaaattccacaaacaggtagttggggaacaatggctcactgactgcagtacgttttccacgcacgattttttccagggtgatcatcggtgccaggcaattcacagcctgtctttcgaggtgttcctgggcacgttgaagttgcccgcgcttgcagtacagtaaataccaggattgcataatgactcttatccgtttaatcggggcgcaaggatagcaaaagctttacgctaagttaattatattccccggtttgcgttataccgtcagagttcacgctaatttaacaaatttacagcatcgcaaagatgaacgccgtataatgggcgcagattaagaggctacaatggacgccatgaaatataacgatttacgcgacttcttgacgctgcttgaacagcagggtgagctaaaacgtatcacgctcccggtggatccgcatctggaaatcactgaaattgctgaccgcactttgcgtgccggtgggcctgcgctgttgttcgaaaaccctaaaggctactcaatgccggtgctgtgcaacctgttcggtacgccaaagcgcgtggcgatgggcatggggcaggaagatgtttcggcgctgcgtgaagttggtaaattattggcgtttctgaaagagccggagccgccaaaaggtttccgcgacctgtttgataaactgccgcagtttaagcaagtattgaacatgccgacaaagcggctgcgtggtgcgccctgccaacaaaaaatcgtctctggcgatgacgtcgatctcaatcgcattcccattatgacctgctggccggaagatgccgcgccgctgattacctgggggctgacagtgacgcgcggcccacataaagagcggcagaatctgggcatttatcgccagcagctgattggtaaaaacaaactgattatgcgctggctgtcgcatcgcggcggcgcgctggattatcaggagtggtgtgcggcgcatccgggcgaacgtttcccggtttctgtggcgctgggtgccgatcccgccacgattctcggtgcagtcactcccgttccggatacgctttcagagtatgcgtttgccggattgctacgtggcaccaagaccgaagtggtgaagtgtatctccaatgatcttgaagtgcccgccagtgcggagattgtgctggaagggtatatcgaacaaggcgaaactgcgccggaagggccgtatggcgaccacaccggttactataatgaagtcgatagtttcccggtatttaccgtgacgcatattacccagcgtgaagatgcgatttaccattccacctataccgggcgtccgccagatgagcccgcggtgctgggtgtcgcactgaacgaagtgtttgtgccgattctgcaaaaacagttcccggaaattgtcgatttttacctgccgccggaaggctgctcttatcgcctggcggtagtgacaatcaaaaaacagtacgccggacacgcgaagcgcgtcatgatgggcgtctggtcgttcttacgccagtttatgtacactaaatttgtgatcgtttgcgatgatgacgttaacgcacgcgactggaacgatgtgatttgggcgattaccacccgtatggacccggcgcgggatactgttctggtagaaaatacgcctattgattatctggattttgcctcgcctgtctccgggctgggttcaaaaatggggctggatgccacgaataaatggccgggggaaacccagcgtgaatggggacgtcccatcaaaaaagatccagatgttgtcgcgcatattgacgccatctgggatgaactggctatttttaacaacggtaaaagcgcctgatgcgcgtttgttttgccctatttatcgatccgacagagaaagcgcatgacaaccttaagctgtaaagtgacctcggtagaagctatcacggataccgtatatcgtgtccgcatcgtgccagacgcggccttttcttttcgtgctggtcagtatttgatggtagtgatggatgagcgcgacaaacgtccgttctcaatggcttcgacgccggatgaaaaagggtttatcgagctgcatattggcgcttctgaaatcaacctttacgcgaaagcagtcatggaccgcatcctcaaagatcatcaaatcgtggtcgacattccccacggagaagcgtggctgcgcgatgatgaagagcgtccgatgattttgattgcgggcggcaccgggttctcttatgcccgctcgattttgctgacagcgttggcgcgtaacccaaaccgtgatatcaccatttactggggcgggcgtgaagagcagcatctgtatgatctctgcgagcttgaggcgctttcgttgaagcatcctggtctgcaagtggtgccggtggttgaacaaccggaagcgggctggcgtgggcgtactggcaccgtgttaacggcggtattgcaggatcacggtacgctggcagagcatgatatctatattgccggacgttttgagatggcgaaaattgcccgcgatctgttttgcagtgagcgtaatgcgcgggaagatcgcctgtttggatgcgtttgcatttatctgagatataaaaaaacccgcccctgacaggcgggaagaacggcaactaaactgttattcagtggcatttagatctatgacgtatctggcaaaccatgcccgatgcgacgctgtcggtcttatcgtgcctacaaatagtccgaaccgtaggccggataaggcgtttacgcgcatccggcaattggtgcatgatgcctgatgcgacgctgtcgcgtcttatcgtgcctacaaatagtccgaaccgtaggccggataaggcgtttacgcatccggcaattggtgcatgatgcctgatgcgagtggcgcgtcttatcaggcctacattggtgccggatcggtagaccggataaggcgttcaccgcatccggcaagtggttaaacccgctcaaacaccgtcgcaataccctgacccagaccgatacacatcgtcgccagaccaaactgaacgtctttgcgttccatcagattcagcagcgtggtgctgatacgcgcaccggaacaacccagcggatgacccagccgatcgcgccaccgttgaggttgatcttctcgtcaatctgctcaattagtcccagatctttaatacatggcaggatctgcgcggcaaaggcttcgttcatttcaaacacgccgatatcgctggcagaaagccccgcttttttcagcgccagtttcgaggccggaaccgggccgtaacccataatcgatgggtcacaaccaacgaccgccatcgaacgcacacgagcgcgcggcttaagacctaattcatgggcgcggctttcactcatcaccagcatggcagctgcgccatcggaaagtgcagaagatgtgcccgccgttaccataccgtttactggatcaaacgccggacgcagcgtggcgagggcttccacggtggtttccgggcgaatcacttcgtcgtaattaaactgcttcaggacgccgtcggcatcgtgaccaccggtcgggatgatttcatttttaaatgcggccgactgcgtggcggcccaggcgcgggcgtgtgcgcgcggcaaaggcatcctgcatttcacggctgataccgtgcatacgcgccagcatttctgccgttaagcccatcatgcccgccgctttggcgacattgcggctcaggccggggtgaaaatcgacgccgtgactcatcggcacatggcccatatgctccacgccgccaaccagacatgcctgcgcatcgccagtcatgatcattcgtgctgcgtcatgcagtgcctgcatggatgaaccacacaagcgattaacggtaaccgccggacagagtgtggtacttctgccagcagcgcggcgttacgggcgatattaaaaccctgctccagcgtctgctgcacacaaccccagtaaatatcgtcgagggcgccgcttccagcgccgggttacgcgccagcagcgtacgcattaaatgagcggagagatcttctgcacgcacgttacgaaaagcaccgcccttcgaacggcccatcggggtgcgaattgcatcgacaatgacaacctgttccattgtgactccttaagccgttttcaggtcgccaaccggacgggctggctcaaccggaggatagtacggttcgttatgacgcgctttattacgcagaccttccggcacttcatacagcgggccgaggtgctgatattgctgtgccatatcgaggtattttgcgctaccgagggtgtccagccagcggaacgcgccgccgtggaacggagggaagcccaggccgtagaccagcgccatatccgcttccgccggagtggcgataatgccttcctccagacagcgcaccacttcgttgaccatcgggatcatcatgcgggcgataatctcttcttcgctgaaatcgcgcttcggctggctcacttctgccagcaggtcttcaacggcggcgtcttcttctttcttcggcttacctttgctgtcttctttataacgccagaaaccgaggccgttcttctgaccaaagcggttggcatcaaacagcgcgtcgatggcatcgcggtaatctttctgcatccgctgcgggaagcctgctgccatgacagcctgagcgtgatgcgcggtatcaatgcccacaacgtccagcagatatgccgggcccatcggccagccaaactgtttttccatcactttgtcgatcttgcggaaatccgcgccgtcgcgcagcagctggctgaaaccggcgaaatacgggaacagcacgcggttaacaaagaagccggggcagtcgttaaccacaatcggcgtcttgcccatcttgctcgcccaggcgacaactttcgcgatggtttcgtcggagcttttctcgccgcgaataatttctaccaacggcattcggtggaccgggttaaagaagtgcatcccgcagaagttttccgggcgttccagcgcgttggccagttcgctgataggaatggttgaagtgttagacgccagcacggtatcctggcgtactttttgttcggtttctgccagtacggcttttttcactttcgggttttcaacaaccgcttctaccacaatatccacgcggtcaaatccggcgtagtcgagcgttgggtggattgtggagatcacgccagccagtttcagaccatcgatcttgccgcgctcaagctgcttgttcagcagtttcgcggcttcggtcatgccgagggttaacgacttgtcgttgatatctttcatgacaaccggcacgcctttccacgcagactggtaagcgatgccgccgcccataatgcctgcacccagcaccgcggcctgtttcggggtttcaacgtctttggtgagtttcttcgctttgccttttacatattgatcgttaaggaaaatgccgaccagtgcgcgggcttcgttggtatgcgccagcgggacaaaacttttgttttccaggtttaaggcttcttcacgaccaaaacgggccgcagcttcaatggtttttactgcggtgatgggggccggataatgtttccccgctgtttgtgcgaccatccctttagcgatggtgaagctcatggtggcttcaatcttgctcagttttagtggttccagcttcggctgacgttttgctttccagtcgaggtcgccgttaatggcctggcgtaaaaccgcctttgcgccttcaaccagtttttctgctttgactacgccatccaccagaccgattttcagcgcctgatccgcgccgacatctttaccggcggcaatgatttccagcgcactgtcagcgcccagcatacgtggcatacgtacagaaccgccaaagccaggcatgatgcccagtttggtttccggcagaccgatgcgcagatccggcgtcgccagacgataatcggtcgccagcacgcattcgcagccaccgcccagcgcatagccattgacggcagcaatggtcggcaccggcagatcttccaggcgattaaacacgctattggcaaagtgcagccactgacttaactgttcttcaggaacgaggaacagggacaaaaattcggtgatatcagcaccgacgataaaggctgctttgttcgaacgcagcagcagcccttttagatctgattgctgttccagcacgccgatggcctcgccgaggctggcgacggtcgcagtgtcgagtttattaactgaacctggggcatcaaataccagttcggcaatgccatcttccagccagtcaaggtacagggtgtcgcctttgtaaagcatgtcagtctcctgaatccgcaaggtgatctggtcgtaccagatgagtcgaagtgtgtattttgtgttaaaaatatgcaaacaaaagattaaagaaatgccgatctgatcacgctcggcagaaatcacgctctggatgaacgatgtgctaagatgcggagacttaaggtcaaaaaaacagaagggtaaaaaatggaatcactggcctcgctctataaaaatcatatagctaccttacaagaacggactcgcgatgcgctggcgcgcttcaagctggatgcgttacttattcactccggcgagctgttcaatgtttttctcgacgatcatccctatccgtttaaagtgaacccgcaattcaaagcgtgggtgccggtaactcaggtgccaaactgctggttgctggtggatggcgtgaacaagccgaaactgtggttctatctgccggttgattactggcacaacgtcgaaccgctgccgacctctttctggactgaagatgtggaagtgatcgcgctgccgaaagccgatggcattggtagcctgctgcctgctgcgcgcggcaatatcggttatatcggtccggtgccggaacgtgcgctgcaactgggtattgaggccagcaacatcaacccgaaaggggttatcgactacctgcattactatcgctccttcaaaactgagtacgaactggcctgtatgcgtgaagcgcagaaaatggcggtcaacggtcaccgcgcggcagaagaagcgttccgttctggcatgagcgagttcgatatcaacattgcctatctgaccgcgaccggtcatcgtgataccgacgtaccttacagcaacattgtggcgcttaacgaacacgctgcggtactgcattacaccaaactggaccatcaggcaccggaagagatgcgcagcttcctgctggatgccggggcagaatataacggctatgcggctgacctgacccgtacctggtcggcaaaaagtgacaacgactacgcgcagctggtgaaggacgttaatgatgaacaactggcgctgatcgccaccatgaaagcaggcgtcagctatgtggattaccacatccagttccatcagcgcatcgccaaactgctgcgtaaacatcaaatcatcaccgatatgagtgaagaagcgatggtcgaaaacgatcttaccgggccgtttatgccgcatggtatcggccatccgctgggcctgcaggtgcatgacgtcgctggttttatgcaggatgatagcggtacgcacctcgcggcaccggcaaaatatccgtacctgcgctgcacccgtattctccagccgggcatggtgttaaccatcgaaccgggtatctacttcatcgaatcgctactggcaccgtggcgtgaagggcagttcagcaagcacttcaactggcagaaaattgaagcactgaaaccgttcggcggcattcgtatcgaagacaacgtggtgatccacgaaaacaacgtggaaaacatgacccgggatctgaaactggcgtgatggaaagctggttaattcctgcggcaccggtcacggtcgttgaagagatcaaaaagagccgcttcataacgatgttggcgcataccgatggcgttgaggcggcgaaagcgtttgttgaatcggtgcgggcagaacaccccgatgcccggcaccattgcgtggcgtgggtcgcgggtgcgccggatgattctcaacagctgggtttctctgacgacggggagccggcgggaacggcaggtaaaccgatgctcgcccagctaatgggcagcggcgtcggggaaattaccgctgtggtagtgcgctactacggcggcatattgcttggcaccggtgggttagtgaaagcgtatggcggcggcgtgaatcaggcgctgcgccagctaacgacccaacgcaagacgccattaaccgaatatactttgcaatgtgaatatcatcagttaaccggcattgaagcgttgctggggcagtgtgacggcaaaattatcaacagtgattatcaggcattcgttctgctgcgggtggcgcttccggcggcgaaagtggctgaattttccgcaaagctggcggattttagccgtggttcattgcaattgttagcgattgaagaataatccccacttcgttttgcagaactaaggaagcggcagagatgcattttcgcgccattacccgaatcgttggactactggtcatcttattttcagggaccatgattatccctgggctggtagcactcatctaccgggatggagcgggccgcgcttttacccagaccttttttgtcgccctcgccattggctctatgctgtggtggccgaaccgcaaagagaaaggcgaacttaaatcccgtgagtttctgatagtggtgctgttctggaccgtgctgggtagcgtcggtgcgctcccttttatcttctcggaaagcccgaacctcacgattaccgatgcgttttttgaatctttctctggcctgaccactacgggagccactacgctggtggggctggattcgctccctcacgccatcctcttttatcgccagatgctgcaatggtttggcgggatggggatcatcgtgttggcggttgcgatactgcctatcctcggcgtgggtgggatgcagctctatcgcgcagaaatgcccggcccgctgaaagataacaaaatgcgcccgcgaattgcggaaacggcgaaaaccctgtggttgatttatgtcttgctgaccgtcgcctgtgcgctggcgttgtggtttgccggaatggatgcctttgatgccatcggccatagctttgcgactatcgctattggcggcttctcgacacatgatgccagtatcggttatttcgatagcccgactattaacactatcattgctatcttcctgctgatctccggctgtaactacggtctgcacttttcactgttaagtgggcgtagtctgaaggtttattggcgcgatccggaatttcgcatgtttatcggcgtacagtttacgctggtggttatttgtaccctcgtactgtggtttcataatgtctacagttcggcgctgatgacaattaaccaggcgtttttccaggtggtgtcgatggcgacaaccgccgggtttacaactgacagcattgcccgctggccgctctttttgccggtactgcttttatgttcagcctttatcggcggttgcgccgggtcaacgggcggtggcctgaaggtgatccgcatcctgctgctgtttaagcaggggaaccgtgagctgaaacgactggtgcatccgaacgccgtctatagcattaagctggggaatcgcgcactgccggaacgtatcctcgaagccgtttggggatttttctccgcctatgcattggtgtttattgtcagtatgctggcgattatcgcacgggcgtggatgacttttctgcctttgcgtcggttgttgcgacattgaataacctggggccagggcttggcgtggttgctgataactttaccagtatgaacccggtggctaaatggatcctgattgccaacatgctgtttggtcgtctcgaggtctttacattgctggtgctctttaccccgactttctggcgtgaatgatggagtaatacgtgaaaacattaattcttttctcaacaagggacggacaaacgcgcgagattgcctcctacctggcttcggaactgaaagaactggggatccaggcggatgtcgccaatgtgcaccgcattgaagaaccacagtgggaaaactatgaccgtgtggtcattggtgcttctattcgctatggtcactaccattcagcgttccaggaatttgtcaaaaaacatgcgacgcggctgaattcgatgccgagcgccttttactccgtgaatctggtggcgcgcaaaccggagaagcgtactccacagaccaacagctacgcgcgcaagtttctgatgaactcgcaatggcgtcccgatcgctgcgcggtcattgccggggcgctgcgttacccacgttatcgctggtacgaccgttttatgatcaagctgattatgaagatgtcaggcggtgaaacggatacgcgcaaagaagttgtctataccgattgggagcaggtggcgaatttcgcccgagaaatcgcccatttaaccgacaaaccgacgctgaaataagcataaagaataaaaaatgcgcggtcagaaaattattttaaatttcctcttgtcaggccggaataactccctataatgcgccaccactgacacggaacaacggcaaacacgccgccgggtcagcggggttctcctgagaactccggcagagaaagcaaaaataaatgcttgactctgtagcgggaaggcgtattatgcacaccccgcgccgctgagaaaaagcgaagcggcactgctctttaacaatttatcagacaatctgtgtgggcactcgaagatacggattcttaacgtcgcaagacgaaaaatgaataccaagtctcaagagtgaacacgtaattcattacgaagtttaattctttgagcgtcaaacttttaaattgaagagtttgatcatggctcagattgaacgctggcggcaggcctaacacatgcaagtcgaacggtaacaggaagaagcttgcttctttgctgacgagtggcggacgggtgagtaatgtctgggaaactgcctgatggagggggataactactggaaacggtagctaataccgcataacgtcgcaagaccaaagagggggaccttcgggcctcttgccatcggatgtgcccagatgggattagctagtaggtggggtaacggctcacctaggcgacgatccctagctggtctgagaggatgaccagccacactggaactgagacacggtccagactcctacgggaggcagcagtggggaatattgcacaatgggcgcaagcctgatgcagccatgccgcgtgtatgaagaaggccttcgggttgtaaagtactttcagcggggaggaagggagtaaagttaatacctttgctcattgacgttacccgcagaagaagcaccggctaactccgtgccagcagccgcggtaatacggagggtgcaagcgttaatcggaattactgggcgtaaagcgcacgcaggcggtttgttaagtcagatgtgaaatccccgggctcaacctgggaactgcatctgatactggcaagcttgagtctcgtagaggggggtagaattccaggtgtagcggtgaaatgcgtagagatctggaggaataccggtggcgaaggcggccccctggacgaagactgacgctcaggtgcgaaagcgtggggagcaaacaggattagataccctggtagtccacgccgtaaacgatgtcgacttggaggttgtgcccttgaggcgtggcttccggagctaacgcgttaagtcgaccgcctggggagtacggccgcaaggttaaaactcaaatgaattgacgggggcccgcacaagcggtggagcatgtggtttaattcgatgcaacgcgaagaaccttacctggtcttgacatccacggaagttttcagagatgagaatgtgccttcgggaaccgtgagacaggtgctgcatggctgtcgtcagctcgtgttgtgaaatgttgggttaagtcccgcaacgagcgcaacccttatcctttgttgccagcggtccggccgggaactcaaaggagactgccagtgataaactggaggaaggtggggatgacgtcaagtcatcatggcccttacgaccagggctacacacgtgctacaatggcgcatacaaagagaagcgacctcgcgagagcaagcggacctcataaagtgcgtcgtagtccggattggagtctgcaactcgactccatgaagtcggaatcgctagtaatcgtggatcagaatgccacggtgaatacgttcccgggccttgtacacaccgcccgtcacaccatgggagtgggttgcaaaagaagtaggtagcttaaccttcgggagggcgcttaccactttgtgattcatgactggggtgaagtcgtaacaaggtaaccgtaggggaacctgcggttggatcacctccttaccttaaagaagcgttctttgaagtgctcacacagattgtctgatgaaaatgagcagtaaaacctctacaggcttgtagctcaggtggttagagcgcacccctgataagggtgaggtcggtggttcaagtccactcaggcctaccaaatttgcacggcaaatttgaagaggttttaactacatgttatggggctatagctcagctgggagagcgcctgctttgcacgcaggaggtctgcggttcgatcccgcatagctccaccatctctgtagtgattaaataaaaaatacttcagagtgtacctgcaaaggttcactgcgaagttttgctctttaaaaatctggatcaagctgaaaattgaaacactgaacaacgaaagttgttcgtgagtctctcaaattttcgcaactctgaagtgaaacatcttcgggttgtgaggttaagcgactaagcgtacacggtggatgccctggcagtcagaggcgatgaaggacgtgctaatctgcgataagcgtcggtaaggtgatatgaaccgttataaccggcgatttccgaatggggaaacccagtgtgtttcgacacactatcattaactgaatccataggttaatgaggcgaaccgggggaactgaaacatctaagtaccccgaggaaaagaaatcaaccgagattcccccagtagcggcgagcgaacggggagcagcccagagcctgaatcagtgtgtgtgttagtggaagcgtctggaaaggcgtgcgatacagggtgacagccccgtacacaaaaatgcacatgctgtgagctcgatgagtagggcgggacacgtggtatcctgtctgaatatggggggaccatcctccaaggctaaatactcctgactgaccgatagtgaaccagtaccgtgagggaaaggcgaaaagaaccccggcgaggggagtgaaaaagaacctgaaaccgtgtacgtacaagcagtgggagcacgcttaggcgtgtgactgcgtaccttttgtataatgggtcagcgacttatattctgtagcaaggttaaccgaataggggagccgaagggaaaccgagtcttaactgggcgttaagttgcagggtatagacccgaaacccggtgatctagccatgggcaggttgaaggttgggtaacactaactggaggaccgaaccgactaatgttgaaaaattagcggatgacttgtggctgggggtgaaaggccaatcaaaccgggagatagctggttctccccgaaagctatttaggtagcgcctcgtgaattcatctccgggggtagagcactgtttcggcaagggggtcatcccgacttaccaacccgatgcaaactgcgaataccggagaatgttatcacgggagacacacggcgggtgctaacgtccgtcgtgaagagggaaacaacccagaccgccagctaaggtcccaaagtcatggttaagtgggaaacgatgtgggaaggcccagacagccaggatgttggcttagaagcagccatcatttaaagaaagcgtaatagctcactggtcgagtcggcctgcgcggaagatgtaacggggctaaaccatgcaccgaagctgcggcagcgacactatgtgttgttgggtaggggagcgttctgtaagcctgtgaaggtgtgctgtgaggcatgctggaggtatcagaagtgcgaatgctgacataagtaacgataaagcgggtgaaaagcccgctcgccggaagaccaagggttcctgtccaacgttaatcggggcagggtgagtcgacccctaaggcgaggccgaaaggcgtagtcgatgggaaacaggttaatattcctgtacttggtgttactgcgaaggggggacggagaaggctatgttggccgggcgacggttgtcccggtttaagcgtgtaggctggttttccaggcaaatccggaaaatcaaggctgaggcgtgatgacgaggcactacggtgctgaagcaacaaatgccctgcttccaggaaaagcctctaagcatcaggtaacatcaaatcgtaccccaaaccgacacaggtggtcaggtagagaataccaaggcgcttgagagaactcgggtgaaggaactaggcaaaatggtgccgtaacttcgggagaaggcacgctgatatgtaggtgaagcgacttgctcgtggagctgaaatcagtcgaagataccagctggctgcaactgtttattaaaaacacagcactgtgcaaacacgaaagtggacgtatacggtgtgacgcctgcccggtgccggaaggttaattgatggggttagccgcaaggcgaagctcttgatcgaagccccggtaaacggcggccgtaactataacggtcctaaggtagcgaaattccttgtcgggtaagttccgacctgcacgaatggcgtaatgatggccaggctgtctccacccgagactcagtgaaattgaactcgctgtgaagatgcagtgtacccgcggcaagacggaaagaccccgtgaacctttactatagcttgacactgaacattgagccttgatgtgtaggataggtgggaggctttgaagtgtggacgccagtctgcatggagccgaccttgaaataccaccctttaatgtttgatgttctaacgttgacccgtaatccgggttgcggacagtgtctggtgggtagtttgactggggcggtctcctcctaaagagtaacggaggagcacgaaggttggctaatcctggtcggacatcaggaggttagtgcaatggcataagccagcttgactgcgagcgtgacggcgcgagcaggtgcgaaagcaggtcatagtgatccggtggttctgaatggaagggccatcgctcaacggataaaaggtactccggggataacaggctgataccgcccaagagttcatatcgacggcggtgtttggcacctcgatgtcggctcatcacatcctggggctgaagtaggtcccaagggtatggctgttcgccatttaaagtggtacgcgagctgggtttagaacgtcgtgagacagttcggtccctatctgccgtgggcgctggagaactgaggggggctgctcctagtacgagaggaccggagtggacgcatcactggtgttcgggttgtcatgccaatggcactgcccggtagctaaatgcggaagagataagtgctgaaagcatctaagcacgaaacttgccccgagatgagttctccctgactccttgagagtcctgaaggaacgttgaagacgacgacgttgataggccgggtgtgtaagcgcagcgatgcgttgagctaaccggtactaatgaaccgtgaggcttaaccttacaacgccgaaggtgttttggcggattgagagaagattttcagcctgatacagattaaatcagaacgcagaagcggtctgataaaacagaatttgcctggcggcagtagcgcggtggtcccacctgaccccatgccgaactcagaagtgaaacgccgtagcgccgatggtagtgtggggtctcctcatgcgagagtagggaactgccaggcatcaaataaaacgaaaggctcagtcggaagactgggcctttcgttttatctgttgtttgtcggtgaacgctctcctgagtaggacaaatccgccgggagcggatttgaacgttgcgaagcaacggcccggagggtggcgggcaggacgcccgccataaactgccaggcatcaaattaagcagaaggccatcctgacggatggcctttttgcattggcgcagaaaaaaatgccggatgcgacgctggcgcgtcttatccagcctactcttgcttatccgttctgcttttgcatccactccaccacaaaatcagccagcccctcaacatcattaatatccagtaatgcgacatcaagattaagcggcacatcactggctacagcaataacatgcctgtctatcactaattcttcaggtcgatgtccggctccatcgcgaaacagcacaatctttgcgatctcttcatgcttaaacccttcgaccagaatcaaatccagctttgaggtatccattcgacttgcgagaaactgtagatccagctcttcttcgtctggtgtttccgtcatcaaggcccatcgttgctggctggcaacgatggtttgtgccgcgccagccttgcgcagctcatagctatctttgcctggcttatcaacatccatatcatggtgcgtatgcttaatcagccctggacggatccctctggcgcataatgccgggatcagttttttcaaaagcgtagtttttccggtaccactccacgcggcaaaggcgagtaacggtatcatcgtttttcctgccatcgggcaagctcctctggcgtattcacgttaacaaatgcatctttatgatcgctgaaatcaaccgcatgaccgccagccagacgcataaataccattacccggcgttctcctgcttgcagatattccagtaataaaggctcaatagcgcggtttaccagagcaatagtcgggtgatcgcgttcaccgtcatggacccacacgacaggcgcatctttgcgctgatgattaagcctggctgctaaatcagggggaatgtaaggcgtatcgcacgggcaaaacaaaaaccactcaccagcttcctgctgcattactgaaagcattcctgccagagggcctgggtaatccgccagtgaatcttcaatcactttcagaccgcttgcctgatagatttcctgatgacgattagcattaaccacgacgtgagagagctgcgtcataagcgcgtcagcgacatgttgccataatggtttgccgtttaattcaagcaatcctttatctacgccgcccattcgtctggctttaccgcctgccagcacaacgcctgttatcgtcgtcatcagattcaccgatatcgcctcttttattgtgggattgaccctgctaacgtgtctgtctcaagagtaaggagcatcactatgaaatgtaaacgtctgaatgaagttattgaactcctccagccagcctggcaaaaagagccagaccttaacctgctgcaatttttgcagaaactggcgaaagagtcaggttttgacggcgaactggcggatttgacggatgacattctgatctatcacctgaaaatgcgtgattccgcgaaagatgcggtgatcccgggtttgcagaaagattatgaagaagacttcaaaacggcgctgttacgcgctcgcggcgtaattaaagagtaaaagcttgtaagcggcgccaccaaaatcatcgtgaaatgataatccttcgtcattcgtaatgttttccggatgatgggatgaataacagcgcttttactttccagacactacacccggataccatcatggacgctctgtttgagcatgggatccgggtggattccggtcttaccccgcttaacagctatgaaaaccgtgtctatcaatttcaggacgaagatcgtcgacgttttgtcgtcaaattttatcgccctgaacgttggacagccgatcaaatcctcgaagaacatcaatttgcgttgcagctggtaaatgatgaagttccggtcgcagcacctgtggcctttaacggtcagactttattgaatcatcagggattttatttcgctgtttttccaagcgtcggtggtcgccagttcgaagctgataatatcgatcagatggaagcggttgggcgttatttagggcgtatgcaccagacggggcgcaaacagctttttatccatcgcccgaccatcggtttgaacgaatatctcattgagccacgcaagctgtttgaggacgctacactgataccttccgggttgaaagcggcattcctgaaagcgacagatgagctgattgccgccgttacagcacactggcgggaagatttcaccgttctgcggctacatggagactgccacgccgggaatattctctggcgcgatggtccaatgtttgttgatctggatgatgcacgtaatggtccagccgttcaggatttgtggatgttgctcaatggcgataaagccgagcagcggatgcaactggaaactattattgaagcttatgaagaatttagcgagttcgacaccgctgaaatcggactgattgaacctttacgcgccatgcgtttggtttattatcttgcctggctaatgcggcgttgggctgatcccgcgttcccgaaaaatttcccgtggttaaccggggaagattactggctgcgacagacggcgacttttatagaacaggcaaaagttctacaagaaccccctttgcaattaacacctatgtattaatcggagagagtagatcatgaaaaagatttggctggcgctggctggtttagttttagcgtttagcgcatcggcggcgcagtatgaagatggtaaacagtacactaccctggaaaaaccggtagctggcgcgccgcaagtgctggagtttttctctttcttctgcccgcactgctatcagtttgaagaagttctgcatatttctgataatgtgaagaaaaaactgccggaaggcgtgaagatgactaaataccacgtcaacttcatgggtggtgacctgggcaaagatctgactcaggcatgggctgtggcgatggcgctgggcgtggaagacaaagtgactgttccgctgtttgaaggcgtacagaaaacccagaccattcgttctgcttctgatatccgcgatgtatttatcaacgcaggtattaaaggtgaagagtacgacgcggcgtggaacagcttcgtggtgaaatctctggtcgctcagcaggaaaaagctgcagctgacgtgcaattgcgtggcgttccggcgatgtttgttaacggtaaatatcagctgaatccgcagggtatggataccagcaatatggatgtttttgttcagcagtatgctgatacagtgaaatatctgtccgagaaaaaataattcaatgtaaattacataaagcccgtgagtattcacgggcttttttattatttaataaatataaatacattctgataatgcatcctgccgctggacattatttcagcataagtggatattcaaagttttgctgttttatcagggaatatttatatgatacgtaagtcagctacaggtgttattgttgcgttagccgtaatctggggtggtggcacatggtacacaggtacgcaaattcagcctggtgtcgaaaaatttattaaagattttaacgatgctaaaaagaaaggtgaacatgcctacgatatgacgttaagttatcaaaattttgacaaaggcttttttaattcccgttttcaaatgcaaatgacattcgataacggtgcacccgatctcaatatcaagccaggccagaaagttgtatttgatgtggatgttgagcacggtccgttgcccatcacaatgttaatgcatggtaatgtcatcccagcactggcagcggcaaaagtgaacttagtgaataatgaactgacacaaccgctatttatcgccgcgaaaaataaatcgcccgtggaagcgacattgcgattcgcgtttggtggctcattctctacgacattagatgttgcccctgcagagtatggaaagttttcttttggtgagggccagtttacttttaatggtgatggtagttcattgtctaacctggatattgaaggcaaagtcgaagatattgttctgcaattatcaccaatgaacaaagtaacggcaaaaagttttaccattgattctctggcgcgattagaagaaaagaaatttccggttggtgaaagcgagtcgaaatttaatcagattaacattatcaatcacggggaagacgttgcccaaatcgatgctttcgttgcaaaaaccaggctggatcgcgttaaagacaaagattatatcaatgtcaatctcacctacgaacttgataagttaacaaaagggaatcagcaactcggtagtggtgagtggtcattgattgctgaatctattgatccctcagcagtcgcgcaatttatcatccagtataacattgcgatgcagaagcagcttgccatgcaccctgagttagcaaacgatgaagttgctctgcaagaagtgaatgctgcattgttcaaagagtatttaccgttattacaaaaaagtgagccgaccattaaacaaccggtaagatggaagaacgcactcggcgaactaaatgccaatctggatatcagtattgccgacccagccaaatcttcatcatccacaaacaaagatatcaaatcgctcaattttgatgtgaagttaccgcttaatgtcgtcacagaaaccgcaaaacagcttaatttatctgaaggaatggatgcggaaaaagcgcaaaagcaggctgataaacaaatcagcgggatgatgacattaggtcagatgtttcagttaatcacgattgacaacaataccgcctcgctgcagctgcgttatacaccgggtaaagttgtttttaacggacaggagatgagcgaagaagaatttatgtctcgtgccggacgttttgttcattaaaatactcactcgcctctgctcattcagaggcgagtaaaacttacttattctgacgctgtgatgacatgagagacgtcagaagccggtctttttcctgccacaatgagttcagccattgctgaaaatggcgcttaaagcttttgtcattgatgtagtcgccatgtaactcatcggcaataggctgtaaatccacatgtacgacaatccgcgtcagtttaccgcttaacatatcgaagaacggctgacggttattgtccggataacacagcgtaacattaagcagtttatcgaattgtttacccagtacatttagcgccatcgcaatgcctgccgcctttggtggcaacaagttttgaaaagtggagtgggtttgctgatgtttttcttgcgtgaaacgggagccttcaacgaaattgacaatggtggtgggatgcaggcgaaacttttcacaagaacgccgagtggtttcaacatctttaccacgtcgctccggatgacgtaataaataagcgcgggaataacgcttcataaacggcatatccagcgaccagcacgccaggccaagaaatggcacccaggccagctgttgcttgaggaaatatttattcatcggaatgtgcttacgaaacagcacgcacagtacgacaatatctgcccaactacggtggttacaaataagcagataccagttcttcttacttaacccttccagcccgtgaacttcccattgaaggtgtgggttcagatgcagtaataccgccagaccttcacaccagcaatacatcataaaatcacaaaaacgcgaaacctttcgccaaatgactggcacaggtagcaatagttttacaatcccggcaatgatgatcgggacggaacaaaaaatagtgaccaaaatggtcaatacgatactcagcaaaagggttatcgcagcgagtattctcgtcataatgaatttattcaaaaggttagccatagacagtgcgctaaagaagcgcaaggcgcagattttagcagaaaacgacccaaataacggatgatccttaaggagaaaaataattcatatctatccacattagaaaaaatcccattatctcaattattagggatggatttatttttaactgcatgaaaaacaaagacaaacatcatgctgtaaaaagcatgataataaattaaaagcgatgtaaataatttatgcacaaagttatccacatgacgatttgcgagcgatccagaagatctacaaaagattttcacgaaaagcggtgaaaaactcatgttttcatcctgtctgtggcatcctttacccataatctgataaacaggcacggacattatggttcagatcccccaaaatccacttatccttgtagatggttcatcttatctttatcgcgcatatcacgcgtttcccccgctgactaacagcgcaggcgagccgaccggtgcgatgtatggtgtcctcaacatgctgcgcagtctgatcatgcaatataaaccgacgcatgcagcggtggtctttgacgccaagggaaaaacctttcgtgatgaactgtttgaacattacaaatcacatcgcccgccaatgccggacgatctgcgtgcacaaatcgaacccttgcacgcgatggttaaagcgatgggactgccgctgctggcggtttctggcgtagaagcggacgacgttatcggtactctggcgcgcgaagccgaaaaagccgggcgtccggtgctgatcagcactggcgataaagatatggcgcagctggtgacgccaaatattacgcttatcaataccatgacgaataccatcctcggaccggaagaggtggtgaataagtacggcgtgccgccagaactgatcatcgatttcctggcgctgatgggtgactcctctgataacattcctggcgtaccgggcgtcggtgaaaaaaccgcgcaggcattgctgcaaggtcttggcggactggatacgctgtatgccgagccagaaaaaattgctgggttgagcttccgtggcgcgaaaacaatggcagcgaagctcgagcaaaacaaagaagttgcttatctctcataccagctggcgacgattaaaaccgacgttgaactggagctgacctgtgaacaactggaagtgcagcaaccggcagcggaagagttgttggggctgttcaaaaagtatgagttcaaacgctggactgctgatgtcgaagcgggcaaatggttacaggccaaaggggcaaaaccagccgcgaagccacaggaaaccagtgttgcagacgaagcaccagaagtgacggcaacggtgatttcttatgacaactacgtcaccatccttgatgaagaaacactgaaagcgtggattgcgaagctggaaaaagcgccggtatttgcatttgataccgaaaccgacagccttgataacatctctgctaacctggtcgggctttcttttgctatcgagccaggcgtagcggcatatattccggttgctcatgattatcttgatgcgcccgatcaaatctctcgcgagcgtgcactcgagttgctaaaaccgctgctggaagatgaaaaggcgctgaaggtcgggcaaaacctgaaatacgatcgcggtattctggcgaactacggcattgaactgcgtgggattgcgtttgataccatgctggagtcctacattctcaatagcgttgccgggcgtcacgatatggacagcctcgcggaacgttggttgaagcacaaaaccatcacttttgaagagattgctggtaaaggcaaaaatcaactgacctttaaccagattgccctcgaagaagccggacgttacgccgccgaagatgcagatgtcaccttgcagttgcatctgaaaatgtggccggatctgcaaaaacacaaagggccgttgaacgtcttcgagaatatcgaaatgccgctggtgccggtgctttcacgcattgaacgtaacggtgtgaagatcgatccgaaagtgctgcacaatcattctgaagagctcacccttcgtctggctgagctggaaaagaaagcgcatgaaattgcaggtgaggaatttaacctttcttccaccaagcagttacaaaccattctctttgaaaaacagggcattaaaccgctgaagaaaacgccgggtggcgcgccgtcaacgtcggaagaggtactggaagaactggcgctggactatccgttgccaaaagtgattctggagtatcgtggtctggcgaagctgaaatcgacctacaccgacaagctgccgctgatgatcaacccgaaaaccgggcgtgtgcatacctcttatcaccaggcagtaactgcaacgggacgtttatcgtcaaccgatcctaacctgcaaaacattccggtgcgtaacgaagaaggtcgtcgtatccgccaggcgtttattgcgccagaggattatgtgattgtctcagcggactactcgcagattgaactgcgcattatggcgcatctttcgcgtgacaaaggcttgctgaccgcattcgcggaaggaaaagatatccaccgggcaacggcggcagaagtgtttggtttgccactggaaaccgtcaccagcgagcaacgccgtagcgcgaaagcgatcaactttggtctgatttatggcatgagtgctttcggtctggcgcggcaattgaacattccacgtaaagaagcgcagaagtacatggacctttacttcgaacgctaccctggcgtgctggagtatatggaacgcacccgtgctcaggcgaaagagcagggctacgttgaaacgctggacggacgccgtctgtatctgccggatatcaaatccagcaatggtgctcgtcgtgcagcggctgaacgtgcagccattaacgcgccaatgcagggaaccgccgccgacattatcaaacgggcgatgattgccgttgatgcgtggttacaggctgagcaaccgcgtgtacgtatgatcatgcaggtacacgatgaactggtatttgaagttcataaagatgatgttgatgccgtcgcgaagcagattcatcaactgatggaaaactgtacccgtctggatgtgccgttgctggtggaagtggggagtggcgaaaactgggatcaggcgcactaagattcgcctgaacatgccttttttcgtaagtaagcaacataagctgtcacgttttgtgatggctattagaaattcctatgcaacaactgaaaaaaaattacaaaaagtgctttctgaactgaacaaaaaagagtaaagttagtcgcgtagggtacagaggtaagatgttctatctttcagaccttttacttcacgtaatcggatttggctgaatattttagccgccccagtcagtaatgactggggcgttttttattgggcgaaagaaaagatccgtaatgcctgatgcgctatgtttatcaggccaacggtagaattgtaatctattgaatttacgggccggatacgccacatccggcacaagcattaaggcaagaaaattattcgccgtcctgcgtttcttctacaggctgcatctcgctaaaccaggtatccagtttctgccgcagcttgtccacgccttgtttcttcaacgaagaaaacgtttcaacctgcacatcaccgttaaacgccagtacagcttcacgcaccatattcaattgcgctttacgtgcgccgcttgccagtttgtccgctttggtcagcagcaccagaacggcgatattgctgtctaccgcccactcaatcatctgctgatccaaatctttcagcggatggcgaatatccattagcaccaccagaccttgcaggctctgacgtttttcgaggtattcgccgagcgcacgctgccatttgcgcttcatctcttccgggacttccgcataaccgtacccaggcaagtcaaccagacgcttgccgtcagccacttcaaacaggttgataagctgggtgcgccctggggtttttgaggtacgagccaggcttttctggttagtcagcgtgttcagcgcgctggatttacctgcgttggaacggcctgcaaaagccacttcaattccggtatcggaaggtaggtggcgaatatcaggcgcactcatcacaaaatgcgtctgttgataattcaaattagtcaaagcggtcgtctccgtcagtcaaagctttgtggcgattatacctgaaccataataaaaggcggatttttcggcgtgagcgttgtaagtaaaagccatacgctttgtgagacattgccgatagtctttatgcgaaatagcagagaaaattctgcgatgcatgtcaaataagctatataaatcagtgaattgcttttatataaaactctgaaaatgtgcaaatactgatggcggttgattgtttgtttaaagcaaaggcgtaaagtagcacccatagagcgaggacgctaacaggaacaatgactcaggatgagggtcaggagcgccaggaggcgaagacagaggattgtcaggaagacaaacgtccggagacgtaattaaacggaaatggaatcaacacggattgttccggctaaaggaaaaacagggtgtgttggcggcctgcaaggattgtaagacccgttaagggttatgagtcaggaaaaaaggcgacagagtaatctgtcgccttttttctttgcttgctttctgttagattccgccgcaaatctatactgaataaaacggctaaaagacgaaccattatgaaaccatcatcttcaaactcacgcagcaaaggtcatgcaaaagcgcgtcgaaaaacacgcgaggagctggatcaggaagctcgtgatcgcaagcgtcagaaaaaacgtcgtggtcatgcgccgggcagccgcgcagcgggcggaaacaccacgtcaggcagcaaaggccagaacgcaccaaaagatccacgtattggcagtaaaacccctattccattgggcgtgactgaaaaagtcaccaaacagcacaaaccgaagagtgagaaacctatgctttcaccgcaggcggagttggaattactggaaacggatgagcgtctggatgcgctgctggaacgtctggaagcaggcgaaaccctgagtgccgaagagcaatcctgggtggatgctaaactggatcgtattgatgagttgatgcagaaactcggcctctcttatgacgatgacgaagaagaggaagaagacgagaagcaagaagacatgatgcgtctgctgcggggcaactaacggattgccgccgtgggccttcccgttctgctgataacccttccggttatatgttatctggtgtggttattcgttaaactacagcggttgtcgcggcgacaaaagtggctgcgcaaccggctgatgacccgaaacgggcatccgccggtacgccgtagccgccagagacgccatcggaaggagtgagcatgtctgtacagcaaatcgactgggatctggccctgatccagaaatataactattccgggccacgatacacctcgtacccgaccgcgctggagttttcagaagacttcggcgaacaggcgtttttacaagccgtggcgcgctatcctgagcgtccattatctctctacgtacatatcccgttctgccataagctttgttacttctgcggttgcaataagattgttactcgccagcagcacaaggccgatcagtatctggacgcgctggagcaagaaatcgtccatcgtgcaccgctgttcgccgggcgtcacgtcagccaattgcactggggcggcggaacgccgacgtatctgaataaagcgcaaatcagccgcctgatgaagctgctgcgcgaaaacttccagttcaatgccgatgcggagatttcgatcgaagtcgatccgcgggaaatcgaactggatgtactcgatcatttacgcgccgaaggctttaatcgcctgagcatgggcgtgcaggacttcaacaaagaagtgcaacgtctggttaaccgcgagcaggatgaagagttcatctttgcactgcttaaccatgcgcgtgagattggttttacctccaccaacatcgacctgatttacggcctgccgaaacagacgccggagagtttcgcctttaccctgaaacgtgtggcggagctgaaccccgatcgtctgagtgtctttaactacgcgcatctgccgaccatttttgctgctcagcgcaaaatcaaagatgctgacctgccgagtccgcagcaaaaactcgatatcctgcaggaaaccatcgccttcctgacgcaatcgggctatcagtttatcggtatggatcactttgcccgtccggatgacgagctggcggtggcccagcgtgaaggcgtgctgcatcgtaacttccagggctacaccactcagggcgataccgatctgctggggatgggcgtttccgccatcagcatgattggcgactgctacgcgcagaaccagaaagagttgaagcagtactatcagcaagtggatgaacaaggcaatgcgctgtggcgtggtattgcgctaacgcgtgatgactgtattcgccgcgatgtgattaagtcgctcatctgcaacttccgtctggattacgcccctattgagaaacagtgggatttgcacttcgctgattactttgcggaagatctcaagctgctcgccccgttagcaaaagatgggctggtggatgtggatgagaagggaatacaggtgacggcgaaaggtcgcttgctgatccgcaacatttgcatgtgctttgatacctatctgcgccagaaagcgcggatgcagcagttctctcgggtgatttaaatagtgaatggcgcttcgtttacaaagtagaaaacgaaagcgccatcaatgtgctgagaacaagattgcctgatgcgctgggcaacaaaacctgttgaaattattgcttttgtaggccggataaggcgtttacgccgcatcaggccatctgagcatgatgcctgatgcggcgtggtcgcgtcttatcaggcctacgactttctccgcatccggcataaacaacgagcttcagctaaacagcccaatcattgcggcacacagcacggcagcaacggcagtttgcggtgtgtggctgtcaactgcgccactcgataccagattaattattgattccagcataatgactctccccgttttccgggcaagatcatactgaacttatcggaacagtaaagcgtaaaataccagcaatttgcgctcaataatcaatctttacacacaagctgtgaatcactccatccccagctcttttaacttacgcgtcagggtgttgcggccccagccgagtagccgcgccgcttcctgtttatgcccctgcgtatgtcgcaacgcggtcgtcagtaacgtccgctccagctctggctgcgcttcggaaagcagattttgatgaccggaacgcagcgctctgtctgcccactgcgcaagaagcgtcgcccagctgtccggttgcatttgcgaagtactctccgcaaccgttgattcaaacagttcgccgggcaaatcctgaatcaacacttcctgcccggcggccatcaccgttagccagcggcaggtgttttccagctggcgcacgttgcctggccacgccagacgcgtcagagcagcttcggtttccggatgcagtaacttcgcttctacgcccagttcgcgcgcggcaacctgtaaaaaatggcgcgccagacggggaatatcttcccgacgttcgcgcagcggcggcagatgaacgcggataacgttcaggcggtggaacagatcctcacggaacttaccttcctgcactcgctgttcgagattctggtgagtggcagcgataatccgcacatccactttcaccggcgcatagccgccaacgcggtaaaactgaccgtctgccagcacgcgcagcaaacgcgtctgcacatccagcggcatatcaccaatttcgtcgaggaataatgtaccgccatcggcctgttcaaaacgcccctgacgaatggtattcgcgccagtaaacgcgcctttctcgtggccaaacagttctgattcgatcaaatcttttgggatagctgccatattcagcgcgataaacggcgctttggcgcgcggactgtggcgatgcagggcatgagcgaccagttctttaccggtgccggattcgccgttaatcagcacgctaatagaagaacgcgaaagccgaccgataatacggaacacgtcctgcatggctggcgcttcgccgatgatatcggtcgttgggccgttaagctgaacattacgcggctgctgctgttcctggtaatgactgatagcgcgctcaaccagcgccactgcttcgtcgatatcaaacggtttgggcagataatcaaacgccccttgttgataggcgctgacggcagcatccagatcggaatgtgcggtcataatgatgaccggaagcattggatggcgctgtttaatctgcttgagcagcgccagcccgtccattcccggcatacggatatctgaaagcagcacatccggcgttttgctcgccagcgcctccagcacttctgcgccgttctcaaacgtcgtacaggttaaacctgccccagcgagcgcacgttcaagcacccaacggatggaactatcgtcatcgactacccagactatccctcgttgcataaacgtcacctttatttcctgataggcaggtaaaccgagaactcggtatgccctggccaactggtaaattcaattttgcctgaatgctgatcaatcaaattacgagcgatggataagccaagcccggtgccaccttcgcggccgctgaccatcgggtaaaacagcgtatcctgcaaatgaggcggaatgcccggcccgttatcttccacatcaatccgcgccgccagccggtagcgctcgccgtgtaaggtcagttgaaacgcggtgcgggtacgcagaatgatttcaccgccttccggccccagcgcctgtagcgcattgcgcacaatattcagcaagacctgttcaatttgatccgggtcgtgcgccagttccggtaggctgggatcgtaatcacgaatcaaccgcacgttgtccggcagttccatcgacaccagcgttaccacgcgttcagccactttgtgaatactttcggtaacgcgcgtaccgggcagctgcggccccaacagacggtcgaccagatttcgcagccggtccgcctgttcgataatcactttggtatattcgagtagtgatgggtcaggtaacgctttgctgagcagctgcgccgcgccacgtaaaccgccaagcggatttttaatctcatgtgccaggccgcgcactaaatcacgggcagcaacctgctgggcgtgctgtagctgttcctgacttaagcggcgctggttatccatcggagccatctccagcaggatcatgccgtccggcatacgctgggccgtcacagaaaggatatgcgagcgcccgtcgatgaccagcgtcacttcgttatcggtaaaaccttgccccgcctccagactttcttgcatcagctcgatatttaatgagaagtagctcaacagttccggtaacggtgtaccaaacaatttgcgggagctttgggcgagcagttgttgcgcggcagggttggcgtaatggatcgccaggttgtcatcgattaacaaaatactgttaatcagcgagttgaggatctgcccagcatcgggctgcgtgcctgttgccataaagcagtctcctgaacaggttgcaccattttagtgcattatagctttttacggataaaaagcgcgaagcatcagagaattgacggagaaaaaagcccatgcagagatgggctacagatagctgacaaacttcacgttggagagcgactcacctgctccggcctaccacatcatcaccgtgtaggccggataagacgcatttgcgtcgcatccggcgtgatgtgcttgccaccgatcccaggcctgccagagacaggcgaaaagtttccacggcaactaaaacacttagacgctgtagtacagctcaaactctaccggatgcggagtcatacgcacgcggtcatcttcttcgcgacgcagagcgatgtacgcatcaattgcttcgtcagtgaacacgccaccggctttcaggaactcgcggtccagatccagttcgttcagtgcttcttccagagagcctgcaacctgtgggatctctttcgcttcttctggcggcaggtcatacaggtttttgtccatggcttcgcccggatggatcttgttcttgataccatcaagaccggccatcagcagggcagcaaagcacaggtacgggttagctgccggatccgggaaacgtacttcgatacgacgtgctttcggagaagaaaccaccggaatacggatagacgcagaacggttacgcgcagagtaagccagcattaccggtgcttcatagcccgggaccagacgcttataagagttggtggtcgggtttgccagggcgttaatcgctttagcgtgtttgattacgccgccaatgtagtacagcgcctgctcagacagacctgcgtatttgtcgcctgcgaacaggttaacgccgtttttagacagagacatgtggcagtgcataccggagccgttatcaccgaacatcggttttggcataaaggtcgcggttttaccgaagcggtgcgctacgttgtgcacaacatatttgtagatctgaatttcgtcagcttttttggtcatggtattgaagcgggtagccacttcgttctgaccagcagtcgctacttcgtggtgatgggcttcaaccaccagacccatctgttccatcaccagacacatttcagaacgaatatcctgagccgagtctaccggtggaaccgggaagtaaccgcctttcactgccggacggtgacctttgttaccaccttcgtattgggtggaggagttccatgcgccttcgatatcgtcgatagcaacgtgggaaccggagatagatgatccgaaacggatgtcatcgaacaggaagaattcaggttctggcccgaacagtacggtgtcggcaatgccagtggaacgcaggtaatcttcggcgcgcttcgcaatggagcgcgggtcacggtcatagccttgcagggtgccaggttcaaggatgtcgcaacggataatcagggtggagtcggcgaagaacgggtcaatcactgcggtggatgcgtctggcatcagcaccatgtcggactcgttaatgcctttccagccgccaatcgaggagccgtcaaacattttgccttcttcgaagaattcagcattcacctgatgagcagggatagtgacgtgctgttctttacctttagtatcggtgaagcgcaaatcaacaaacttcacttcgtgctcgttcagcatcgtcagtacgtgttcagcggacatactttaactctcctggattggtcatggtcgtcgtggtaacgaaatctgcaattattttggccgtgtcgccgtaaaaaagataaagcgaaatctgtgccaacttttaaattgcccctaaaaggcgttatcatgcgcaccatcgtgcaaaagggctgcaccacgatgtgaatgttgcaccaatatagtgcttcaatggaaacattaagcaccatgttggtgcaatgacctttggataaccctttttatgctccgtgaaagcgatcacaaagggactctgcaatacttgtttgcggaggatgtttgtgatcctgttttgtagtgcgattaatccgtgtacaataacgcgctatttctaatgcctgaggcaaagttgtgatcgaaaaattgcgtaatatcgccatcatcgcgcacgtagaccatggtaaaaccaccctggtagacaagctgctccaacaatccggtacgttcgactctcgtgccgaaacccaagagcgcgtgatggactccaacgatttggagaaagagcgtgggattaccatcctcgcgaaaaacaccgctatcaaatggaatgattaccgtatcaacatcgttgataccccggggcacgccgacttcggtggtgaagttgaacgtgtaatgtccatggtagactcagtgctgctggtggttgacgcatttgacggcccgatgccgcaaacgcgcttcgtaaccaaaaaagcgtttgcttacggcctgaagccgattgttgttatcaacaaagttgaccgccctggcgcgcgtcctgattgggttgtggatcaggtattcgatctgttcgttaacctcgacgcgaccgacgagcagctggacttcccgatcgtttacgcttctgcgctgaacggtatcgcgggtctggaccacgaagatatggcggaagacatgaccccgctgtaccaggcgattgttgaccacgttcctgcgccggacgttgaccttgacggtccgttccagatgcagatttctcagctcgattacaacagctatgttggcgttatcggcattggccgcatcaagcgcggtaaagtgaagccgaaccagcaggtcactatcatcgatagcgaaggcaaaacccgcaacgcgaaagtcggtaaagtgctgggccacctcggtctggaacgtatcgaaaccgatctggcggaagctggcgatatcgttgcgatcacgggccttggcgaactgaacatttctgacaccgtttgcgacacgcaaaacgttgaagcgctgccggcactctccgttgatgagccgaccgtttctatgttcttctgcgttaacacctcgccgttctgcggtaaagaaggtaagttcgtaacgtctcgtcagatcctggatcgtctgaacaaagaactggtacacaacgttgcgctgcgcgtagaagaaaccgaagacgccgatgcgttccgcgtttctggtcgtggcgaactgcacctgtctgttctgatcgaaaacatgcgtcgtgaaggtttcgaactggcggtatcccgtccgaaagttatcttccgtgaaatcgacggtcgtaaacaagagccgtatgaaaacgtgactctggacgttgaagaacagcatcagggttctgtaatgcaggcgctgggcgaacgtaaaggcgacctgaaaaacatgaatccagacggtaaaggccgcgtacgtctcgactacgtgatcccaagccgtggtctgattggcttccgttctgagttcatgaccatgacttccggtactggtctgctgtactccaccttcagccactacgacgacgtacgtccgggtgaagtgggtcagcgtcagaacggcgtactgatctctaacggtcagggtaaagcggtcgcgttcgcgctgttcggtctgcaggatcgcggtaagctgttcctcggtcacggtgcagaagtttacgaaggtcagattatcggtattcatagccgctctaacgacctgactgtaaactgcctgaccggtaagaaactgaccaacatgcgtgcttccggtactgacgaagccgttgttctggttccgcctatccgcatgactctggaacaagctctggagttcatcgatgatgacgaactggtagaagtgactccgacctctatccgtattcgtaaacgtcactgacggaaaacgatcgtcgccgcgccaaccgcgcaccgaaagacgattaatttcgttttttagtcataaaaaacctgccagcgatggcaggtttttttttgcctgtcgtgagcgcacaccaatgcgagtatctcccttataagtctgtggttacgtcaatagagagctttgtcacaattatctgcaaagtcatacgccgttaattgctttcttttttggcgtacagcgtaagatgcttcatctggtttaaaccaaaaggattaaacaatggcggagaatcaatccaccgtagaaaatgcaaaagagaaactggatcggtggttgaaagatggcatcaccacgccgggtggaaaactcccttcagaaagagagctgggagaactgctgggcattaaacgtatgacgctgcgccaggcgttgttgaacctcgaggcagaatccaaaatcttccgtaaggatcgtaaggggtggttcgtgacccagccgcgatttaattacagtccggagctgtcggcgagctttcagcgggccgcaattgagcaagggcgagagccttcctgggggtttaccgagaaaaaccgtaccagcgatattcccgagacgctcgcgccactgattgcagtgacgccatcaactgaactctatcgcatcaccggctggggggcgctggaaggacataaagttttctatcacgaaacatatattaatcctgaagttgctccgggctttattgaacaacttgaaaaccactcattttctgcagtctgggaaaagtgctaccaaaaagagacggtagtaaaaaaattgattttcaaacccgtcagaatgccgggcgatatcagcaagtatcttggcggttctgcgggtatgccagcgatcttaattgaaaagcatcgcgccgaccagcaaggcaatattgtccaaatagatattgaatattggcgatttgaggccgtagacctcatcattaatctgtaggtgttttatggtgacaataaataacgcaagaaagattctacaacgtgtcgacactcttcctctttatttacatgcttatgcctttcatttaaatatgcggctggaaagagtgttgcctgctgatttacttgatatcgcaagtgaaaataatctacgtggcgtcaaaatccatgttctcgatggcgagcgtttttctcttggtaatatggacgataaagaactctctgcctttggggataaagcccgccgtctgaaccttgatattcatattgaaaccagcgcctcagataaggcatctattgacgaagccgtcgccatcgcgttgaaaactggggcatcgtccgtacgtttttatccacgttatgaaggtaatttgcgcgacgtattatcgattatcgctaacgacattgcctatgtacgggaaacgtatcaggacagcggcctgacttttacgatcgagcagcatgaagatttaaaaagtcatgagctggtgtcgctggtcaaagaaagtgagatggaatctctttccttactgtttgattttgcgaacatgatcaatgcaaatgagcatcccatcgacgctttaaaaacgatggcaccgcatattacccaggtccatatcaaagatgccttgatcgttaaagaaccgggtggcctgggtcataaagcctgtatttcaggtcagggtgatatgccgttcaaagcgttattaacgcaccttatctgcctgggtgatgatgagccgcaggtgacggcatatggcctggaagaagaggttgattactatgcgccggcgttccgctttgaagacgaagatgataatccgtggatcccttatcgccagatgagtgaaacaccattgccagaaaatcatttactggatgcgcggttacgtaaagaaaaagaagatgcaattaatcagataaatcatgtgcgtaacgtactacaacaaatcaaacaagaggcaaaccatcttctgaaccactaataagttttaactcatacgcagttaataaaaccattccatatgaatggtcggtatcttattgcctttaaaacagtgattttaaaaatcgcttaggggatgttatgctcacgaaaaagaaatgggcgttatttagtctattaacactgtgtggcggtacaatttataaattaccgtcgctgaaagatgcgttttatatcccgatgcaggaatatttccatttgaccaatggtcaaattggtaatgctatgtcggtaaactcatttgtcaccacagtgggcttttttctgtctatttattttgccgataaactaccgcgcagatacaccatgtcattctcactcattgcgacaggattactgggtgtttatttgacgacaatgccggggtattggggcatcctctttgtctgggcgctatttggcgttacttgcgacatgatgaactggccggtcttgctcaagtcggtaagtcgattgggcaatagcgaacaacaaggtcggttgtttggcttcttcgaaacagggcgtggcattgtcgataccgtggtggcattttctgcgttggcagtatttacctggtttggcagtggcttattaggttttaaagcaggcatctggttctattcccttattgtgattgccgtaggcattattattttctttgtcctgaatgacaaagaagaggcaccgtccgttgaggtgaaaaaagaagacggagcatcgaaaaacaccagtatgacctcggtgctgaaagacaaaactatctggcttatcgcttttaacgtcttcttcgtttacgcggtttactgtggcctgacattcttcattccattcctgaaaaacatctatctattgcccgttgcgctggtgggggcttacggcatcattaaccaatactgtctgaaaatgattggtggaccgattggtggcatgatttcagataagatcctgaaatcgccaagtaaatatctatgctacacctttatcattagtaccgctgcgctcgtactgttgattatgctgccgcacgaaagtatgccggtctatttagggatggcatgtacgctgggctttggcgcgatagtctttacacagcgagccgtattttttgcacctatcggcgaagcaaaaattgctgaaaataaaacaggtgcggcgatggcgttgggtagctttattggttacgctccggcgatgttctgcttcagtctgtatggctacattctggatttaaatccggggattattggctacaaaatcgtgtttggcattatggcctgcttcgcattcagtggtgcggtggtttccgtaatgctggttaagcgtattagccaacgtaagaaagagatgctggcggctgaagcttaattaatggccggatgtgcttaatccggccaacgaaaaccgtatcaaccgtaggccggataaggcgtttacgcgcatccggcaggtttcacatcagaagaaatacttcgtcccgatacggatctggttttgctcgcggtggtacggttcgacgttgcggtctaaccagcgcaattcgaaataagggagccagtgttcattaatacggtaacggaaggtgttagtgatttcccaatgatgatctttcccgttgctactattaaagtcattcactcgcatgaagtaatgtggctcaaatgtataggaaaatttatcggtgattttaaaattccagtaggtgccaatttcataggtgtcattattatccagttccccgctcaaatctgttgaactatagttattatggttatagcgatttcgtactgtcagattaaaccatggtacaaatttatagttgacgtccagatacactgcaccacccgaaccgatactcttatcattaattaagccaccgggctggatggttaatttatcggttggtttaaataacggataccagccttcaatttcgttatatccatgttttagttcatcttctcgctgaaagttgtaggtattggttaacataatacccgcgcccatatcgaagttataacccacacgtagcataacctcgccctgatcggaggcaagattatatgcctccctgttttcgacgtatgcgccagcaaataccgaggcagaggtcagagaagataataaaattattgcattaatctttttcataataagtccattttttaaacgtagggaggccgccacccaccaggatggaaatagcggctattgacatttataacgttacggaagcccgttttttcttctgtcgccatctctttatttttgcgttggttgatttcctcaataatcaatgcaaaccgtttttcattgagtgtgtaaaagaatcccatcgtcaatgcagcaataattgccagtgcacaaggccagataaaaatgagctgacgcaaaccctgtaatgtcgcatcgctttgcgcgatgttgggaacataaccaatttgcgtcagcataatgcctggcaagaagccagcaagtgcggcagaaattttacgaaagaaggtataaccggtataaacagaaccttcggcacgaataccggttttccattcaccgtaatctacggtatctggtaccagtgcccagttcaggctgtttacaaaggccgtgccaaaaaaggcgacacaagagaacatgacgaaagtgaaagagttacttccccagaaataattcagtatatcacccaccgcccacagcaccatgccagccagataaacctgttttttaccaaaacattttacagttaatggcaccagtaatacgccgatgaggatgcatcccatactgaagaatcccatccacgacaataaattaatatcattcagcacatactgggtgtaatagacctgaatcgccagtttgatattaaatgccgccagggtacacaagttagcaatgcataaaaccagcaatggcggattccgaaatatcgcgcaaaatgatttgagaatactggctttatgtccggttggcgttgtgtccacataatgctctttgacgcctctgtagcacagcatcataaaaataaagccgccaatggagaacataagtgccgcacaggcataaccgacggttgagtcagaaaaaagcgactgcaacggaataaacgccacggtacaaatcaatagccctatggttgcaccaccctggcggtaagcgcgagcgtgcgcgcgctcattcgggtttttggtaattgccgggatcatcgcaccatacgagcagttcatcagactgtatgaaagtccaaacatcataaacagcgcggtggcaatcgtcgttttaaccggcaaacaaaaggtggtggcgataaactggagcgttgcaattaacgccgccggaaccgctgcatataaaataaagggacgaaatttgcctttaggcccaatatttttccgcgagtcgagtaaaaatccggtgagcatatcggtaaacgcggtaaaaaacttcgccaccagaaagataatcccgccatagtaagcaggcatccctaattcatcggtataaaatttgaggagatacagagtaccgatgcagagcattaaattcgaaccgacgtcgcccataccataggcgattttttcccgcagattcagttttaatgtcagtggattatggtcagacataatcactccttataacgccccgcagcgtcgtttattattattacgccgtgcgctttacgggcttctatctcttccacaatgcggacatacatcttctcgttcaggctgtagaagcaacccatcgccacaatggtgactaccgccagtgcgcttgggtagatgaagatcaactggcgtaacccttcaatggtgtggtcagcctgtgcgacgttcggcacatagccaatttgcgtcagcatccagccggggaagaaaccagccagcgcctgagacactttgcgaaagaaggtaaaaccggtgtagaccgttccttccgaacgcacgccggtgcgccactcgccgtactcgacggtgtcggaaaccagcgcccagttcaggctgttaacaaacgctgagccaaagaacgccaggcaggagaacgccacgaagctgaccgaaccgccgccgaagaaatagttgagcagatcgcccagcacccaaatcagcaggccgccgatataaactttcttcttgccaaaacgtctgactgaggcaggcatcaggaatacgccgatgaaaatacagcccatgctgaaaaatcccatatacgacaacaggatgggatcgttaagcacgtactgggtgtaatagacctggatggcgagcttgacgttaaacgcccctaaagtgcagaggttggcaatgcacagaatgaacagcgggcggttacccgcaattgcgcggaaagattgcagcaggcccggcttttgcgccggattagcaggctgggtttcgacataacgctctttcacgcccgagtagcagatccacataaacagcaggccaaacagtgaaaacagcgtggcggcgaagatatagccaagttgctgattaccttcgataagattcataactggcacgaatcccaccgtgcacagcagcaggcccagcgtagcgccgccctgacgccatgccgccagtgaggcgcgttcgttggggtttttggtgatagcgggaaccattgcgccgtaggagcagttcatcatgctgaaaaacagtccgtaaagcataaacagaatagtggccatcaccgttttaccggtgacatcaaacggtgtgccgacaaagttggcgatcgccagtaaggtgaccgggaatgacgcatacagaataaaaggacggaacttaccttttggaccgatcttgcgtcgggaatccaacataatgccggtacccatatcggtaaacgcagtaaagaattttgaaatcaaaaagataatgccgccataggtgcctggcagccccagaacgtcggtataaaacttcaaaagataaagcgtaccgatatccagcaggatgttagaggccaggtcgccaataccgtaagagagtttctctttaaagggcaggcgtaaagttgctggatcttccgttgtgatgtgactcatcgatgttctccctttgcccatgagtttcccacggcggatgtgattagatgctttttaacgacgcgaacagtgccgcccattcgctatcggcgcgataaaagaccggcggcttgccgatgggcgcattaacggtaacttccccgccccggaacgcttcacccgtcaggcgtggacccagttatcctccggcagatagagcgtccagtcgctacggccttcttcatgcaccggagcgaccagaatgtcgcgacctaacaggtactgatatttcagggtgtaagtgtgcgcatcgtcttcgtaatgcaggaacagcgggcgcataaccggcaggccggacttcgcattcagcgcgacggcctctttcaggtaaggtttcagggtggtgaagacggtggtcatacgggcgaaatgggcgatggtttctgcgtcgccgtcaaactgccagttgtcgccaggacggttaccttcgtgggtgcgcatcatcggcgtgaaggcgctgaaatcgcaccagcgcaagcagctctttcgtgcttcatctcaaacagggtggtgtaaccgccaatgtcgctgtggtgcaggccatgtccggtcattgccagcgacagcgccgccgggacaaccgacgccaggccatcgtcgagactccagtcgacgttctggtcgcccgcccacatcatggtggagtatttctggctaccggtagaaccggcgcgcataaagaaaaggatctcgccgagcttgcccgtttcttcaagggcttcgtagttacacttcgcccacagcgcaggccaggcgttatgcataatttcggcactgacgccgttatgcaagtacgtgtcggtgggcagatactcgccgaagtcagccatccagccgccgcagccgagttcaatcatgttctttttgatcacttccttgaaccaggcgtaggcttctggattagtgagatcgacaacgccgccgtaaaactcgccaaactccaccagatagtcaccgccagaggcatcttttgccagatagccgtgttgtgccgcttcttcgcagagatctttatcgctggcaacatacgggttgatataggccaggaactgcacgccctcctgattccactgcttaatgcgtgaatccagttgcgggtagttttcgctgttccacttccagttccacatcacgcgtttgccaaaagaggtcatacgaataccggaccagtcctgcgcccagatgccgttgaccttcacgcccgcgttacgcatggtgtccagtttcttctggcacacttccgtcccgccctgaatgccgagcgttactccgtcataaatccagtcgggcagttctggctggcgtcccagcagggcggttaatttttccagcagggaaatgtatgtgtcagcacattcaaaacgcagcgttgctttgtcttcccacagcgccagttcatggtattccggggcactaaagtcgaagttcatatagcaactgttatcaacatggcagtaatacttctgcgtgctgacaaacgtaggctgtgggaagaaagtccagtaatagtcgccgcccgcattttctttgcagtcggcctgccaggtgacataggtttgtttgttgcgaccaacgccttgttcactggtccatagcgggaacggtttgccacgcagatcgaagtaggaaaactgttcgccgcagccgtagatatggtcctctggttgagcggcaaggcgcagccagatacggttgtggttaaggttgtcgttttgtagttccagcaataaacgcccctgatcgtcggcagagatattcagcgtggcgctaatgtcagaaccacggctgaaatgaattaaccaaccatccggtgactggctgacgatggcgtcggtaagcgcaattttctcctgtagtttatctttaatgctgaaattaccgcggaacatatcgatatccgctatacctgagccaatccataaacaaggattatctttgctatgggttaaaataagacgttgttgaaaatgtagggtaaaactgtcgttattctgatgaaattgaaaatctaataactgtggacgtggcgtatccataactaatctccatagagttgagaacgagattgttgccttcctgttattacaggcttatgtaaaatgattctcataaaactgatatataaaaactttacagaagctgagctgtttttaacttaataaattgaagatacataatgttgcctttagcgagtgaaatgttcttcaatgattttgactgctaatcaatacaagttattttctctgtccgtaaatattaaaaaacaggcggtgcggttttcctgattccagtaataataagtcgatacctgaattaaaggcgttaggcgggcaactcataggttcaactgccagtccctgacgctgtaatttttcaccgctataaacctgcacccagagttgatcggaacaaaggcttaccgaaagcgcctgctgtggatgggtaatggtcatttcccacaaatcattagcggttttaaaggtgtggtcgatttttgtcgcggctatttttttcgcctgcgtgaaatttaaatccagctcatcaacgtggtgaagcgttgtcggattcgcgtgctcatcgacggcataaacctggtttgccggaagctggaacagatattcatcaacagatgttaagttgcaggttaaataaggatgaatacccacgccataaggcgctgcgacagtgccgatattctggcttgcgatctcaacggaaagacccgtgtgtgcgttgagcgaataaacaacttgtgaagccagcataaacggatagccgtaactgggcggcagaaaagctgtcagggtaacgctggtggcggttaattcactaatttgccagtctcgccaggcaagcagcccgtgaatagcggcttttgaactatgttcattaatgggtaactgatattcctgcccctgatagcggtaacagccgttggcgatccggttcggccacggaataagcactttacccagatgcgccagcggcatctcttcgggtttgtgcgggatgactaaatgacaaccctgaaaggttaattcagccagaccagcaccgacggtcacaatggtcgcgtgataatcccccgcggcaagtgaaacggtctgtccactgcaatgcatattggtgatttgcatacaaggcaccttaattaacgacatacagcctcccgtgaggctgatgtcaaacccaaaaactgcaccggacggtcccctcgcccctttggggagagggttagggagaggggaaaacccgcaccctattttcagatcagttatttcgcattaatatccagcagacccgctgcaaccgctggagccatgccgggcgctaacgggatacgcgggatcaccaggcaatgcagcaggtgataaatatcctgtttgccgtcccagactttggtggtgaccttattgtccgcatccagctcctgccaccaggaaccattttcatagtccatcaggtacttaatgcagtactcccaccatgtttgataccaggtttcatactggcgatcgccagtgacggtgtagagcgcgtaggccgtacccattgcttcgacgataggccaacgtacacgttcgcggaccaccggttttccttcccagtcaacggtataaacaatcccgtccgcgccatcgggtgcccaggcatcgcgcacggtggcgttaaacagacctttggcatcttctagcagccatgctggtggttgttcgcaacgggcttccagggcagcatggatgtgcagcattaaacggccccattcgatccagtggcctggtgtacctccgaacgcgcggaagcgatgcgccgggttatctttgttgtaatccggcagcggattccactgggtatcgaagtgttcgttaacgcgataatgattatttctggcgacgtcgtggataatcacggaagccacgcgaatcgcgcgatccagccattttttgtcgtgagtgacgtcataaacaatcaagaaagcttccaccgcgtgcatattggcattgccgccgcggtactcttcggttttgctgaaggcttcgtcccaggattccaggcacatctgctcttcttcgctccagaaatatttctcgataatttcaatggtgtaatcgagcagcttgcgcgcttccgggtgacccgttgtgacggcgctggcggcacccagcagagcaaagaagtgttgatagccctgtttggaggcatccaccacgccctcgtcattcacgcaggcataccagccgccatattttttatcacgcagtgcgccgttcatggctttgataccgtgatcaaccaacgagtaagcgccaggtcgacccatcgccgcagcaacggaataaacgtgcaacatacgagcggtgatccacagatgggtgcccatctcttctttgatttgccctttattgcctaaccagccaaaaccagtcggcactacggaatttttaccaaaatcaaagatgcggtcggtttcctgttccagccaacggttgtggcttagggtgttaaaccatttcattccttttatcctcatcttagcggcgtttagccatcatttcgtcgacgatatcgccaagttgttgtaatttcggtgcgcaaacgtcacgcagcatcagctcgttgtctggtaaaccgacgaccgatgcccagactgcacggcctgccaggaatcccgatgcgcccgccgtcattgccacgcgtacggcacgcgggaacagtttttcgtcgacaccggaagagaggatcacccatggcatattgatatggtcattcagacgttgtgaagcacagagaagctcttgttgcggacctttgccataaagcggcatttcaactttgtagaggtcagcgccactgtcgcccagctctttggcggcatcgatgatcgcttgttcgcgatcgaatttatcgccacgacgcggtgggcggacgactggctcaatgatgcttaccagaccgtgtgagtggcacagttcgttgaactctttcaccatatccagacgttgctgcgcatcttcatcactacgccacagcaccagcagttttaaggctttgccaccgtcttgtttgatctgtagcggattgattttgcggtcaataaccacgctatcgaccggaataccgttgccaggaatgaactcatcggcggcgacaatcatggcgcaacttttggcaatcgcgttttgctcaaccacctggcggtagcagaattgttgatctaccagaatcgccgaggcataaggcgagagggcctttgcagcgttaactttgaaatcagttaaaacgctatcggctaccggagcgggtgccccagccgcggcaaacatcatgcgcatggcttcgcgctgatcgaccgccagcatggcaaaaccgcccgatgcgcgcgtaatgtcgttgatggtgtacttattcattcatttattcctttatccagtcgttacatttttactttggcagtcatcccggcactgacacggacctgttccagaatggcggaccagtcctggcgaccgcgacccgctgcgcgcgcctggctataaacctcccgtgaggcggcccccagcggcattggcacatgcagctggttggcgacatcaagggcgatgccaagatccttatgggcaagatcgatcatgaaggcgggagaaagatctccgctgaggactttgtttggccaggaagtggtgaagtgacctttaccggcggcggtaccgctcatcactttgacggcaacatcgaagggaagattcagggcttcgcacaaaacggcggcttctgccgaaagcgcattgagcgcgatgctcatgtagttgttgatgagcttaacgcggatccccatgcccggaccgccagcgttgatcaactcactgcccatcgccatcaggatcggtgtggcacgttcaacttgttcagcggtgccgccagccagcagtaacagagtaccggtaatggcatttgcagaagtacggcctaccggaacatccatcatgctgaagcctttggcttgcatatcggcaatcaatttatcggtttgcagcggatggatggtggacatatcaatgaccagcgcatcggtagataagccttcgcaaacgccgttttcaccgaacaacacgttgcgcaccagatcgccattcggcaacatggtaatgataaattcggcatctttagcggcctgcgccgggttggcggcgggagtcgcacctttgtctaccagatgccgcacagcttcggcgttcacatcaaagacgcgaagttgatgcccttgctgcaataaattgctcgccattggcgaacccatttgtcctaaaccgataaacgcgattgctgccataaccctctcctgaatacagttatgtcactttttgtcatttatgacatgctttgcttgtctgtttttgatcgtatttgtaatttatcgtcaaaaaattgacagccgtcactttttaaacaattggtgaaattaaaatgaacgcatcccaaaatgtttaaggaatgaccatgattcgtgttgcttgtgtaggtataaccgtgatggatcgcatctattacgtggaagggttaccgacggagagcggtaaatacgtggcgagaaattatacggaagttggtggcgggccagcggcgacggcagcggttgcggcggcaaggctgggggcgcaggtcgattttattggtcgcgtaggtgatgacgacacgggcaacagcctgctggcagagctggaatcctggggcgttaacacccgttacaccaaacggtataaccaggcgaaatcttcgcaatccgccatcatggtggataccaaaggcgagcggataatcattaactaccccagcccggatctgctgcctgacgcagagtggttggaggaaattgatttctctcagtgggatgttgtgctggcagatgtacgctggcacgacggcgctaaaaaagccttcaccctggcccgtcaggcgggtgtgatgaccgttctggacggggacattacgccgcaggatatcagtgagctggtggcattaagcgatcacgcggccttttcagaaccgggtctggcgcgcttaacgggcgtgaaagagatggccagtgcgctaaaacaggcacaaacgctcacaaatggtcatgtctatgtgacccagggtagcgcaggctgcgactggctggaaaatggtgggcgtcagcatcaaccggccttcaaagttgatgtggtagataccacaggtgcgggtgatgtttttcacggcgctttggcggtggcgctggcaacaagtggggatttagcggagtcagtccgcttcgccagcggtgtagcggcgttaaaatgcacacgtcccggtggacgagccgggatccctgactgtgatcaaacccgatcttttttgtcactttttgtataaaatgccagggtgatggtttttcgaggaattttcatgagccttaccgaactaaccggtaacccgcggcacgaccaactcctcatgctgatcgccgagcgtgggtatatgaatattgatgagctggcaaatctgctggatgtctccacgcagacggtccgccgggatattcgtaaattaagcgagcaaggcctgattacgcgccatcacggtggcgcgggtcgggcttccagcgtcgttaatacggcgttcgagcagcgtgaggtttcgcaaaccgaggaaaaaaaagcgattgccgaagcggtggcagactatattcctgatggttcaacaatatttatcaccattggtacgactgttgagcatgttgcccgggcgttacttaaccataatcatttgcggataatcaccaacagcctgcgtgtggcgcatattctttaccacaacccgcgctttgaagtgatggtgcccggcggtacgttgcgctctcataatagcgggatcattggcccttcagcggcgtcctttgtggctgattttcgtgctgattatctggtaacaagcgttggggcgattgagagcgatggcgcgttgatggagtttgatgtaaacgaagctaacgtggtgaaaacgatgatggcgcacgcgagaaatattctgctggtcgccgatcacactaagtatcatgcttcggcggcggttgaaattggtaacgtggcacaggtcactgcgctctttaccgacgagctgccgcccgctgcgctaaaatcacgcttacaagacagccaaattgaaatcattcttccccaggaagacgcgtagatttttgtgaccgttaacctggcttcataccttgccacatagccaaacccatcctttcccgctacagttaatttcttgtggcgcgaaaggaggcaaaaatgctctatatctttgatttaggtaatgtgattgtcgatatcgactttaaccgtgtgctgggagcctggagcgatttaacgcgtattccgctggcatcgcttaagaagagttttcatatgggggaggcgtttcatcagcatgagcgtggggaaattagcgacgaagcgttcgcagaggcgctgtgtcatgagatggctctaccgctaagctacgagcagttctctcacggctggcaggcggtgtttgttgcgctgcgcccggaagtgatcgccatcatgcataaactgcgtgagcaggggcatcgcgtggtggtgctttccaataccaaccgcctgcataccaccttctggccggaagaatacccggaaattcgtgatgctgctgaccatatctatctgtcgcaagatctggggatgcgcaaacctgaagcacgaatttaccagcatgttttgcaggcggaaggtttttcacccagcgatacggtctttttcgacgataacgccgataatatagaaggagccaatcagctgggcattaccagtattctggtgaaagataaaaccaccatcccggactatttcgcgaaggtgttatgctaaaaaccattcaggacaaagccaggcaccgtacccgtccactatgggcctggctaaaactactctggcaacgcattgatgaggacaacatgacaaccctggcaggtaaccttgcctatgtgtcgttgctctcattagtgccgctggttgccgttgtttttgcgcttttcgccgcttttcccatgttttccgacgtcagcattcagttacgtcactttatttttgccaactttctgcctgctactggcgatgttattcagcggtatatcgaacaatttgttgccaattccaacaagatgaccgccgttggggcgtgcgggctgatcgtcaccgcgttattgttgatgtactccatcgatagcgcgttgaataccatctggcgcagtaaacgagcgcgaccaaaaatttactcgttcgccgtgtactggatgattttaacgctggggccgctgctggcaggggccagtctggcgatcagttcctatttgctctccctgcgctgggcgagcgatctcaatactgtcatcgacaacgtgctgcgtatttttccgttgctgttgtcgtggatctccttctggttgctgtacagcattgttcctaccatccgcgtacctaaccgcgacgcgattgtcggcgcgtttgtcgccgcactcctgttcgaagcaggaaagaaaggtttcgcgctttatatcaccatgttcccgtcatatcagctcatttatggtgtgctggcggtgatccccattctctttgtttgggtctactggacatggtgtatcgtcttgcttggcgcggaaattactgtcactctcggggaataccgcaaactaaaacaagcagctgaacaagaagaagacgacgaaccatgattgcattaattcaacgcgtaacccgtgccagcgtcaccgtggagggagaagtgacgggcgaaattggcgcgggacttttggtgttattgggtgtcgaaaaggatgacgacgaacagaaagcaaaccgtctgtgcgagcgtgtgctcggctaccgcatctttagcgatgccgaaggcaagatgaatctcaacgtgcaacaggcgggcggcagtgtgctggtggtttcccagtttaccctcgccgcagataccgaacgggggatgcgcccaagtttctccaaaggtgcatcaccggatcgcgcagaggcgttatatgactatttcgtcgaacgctgccgtcagcaagagatgaacacgcaaacaggacgcttcgctgcggatatgcaggtatcgctggtcaatgatggccccgtgacattctggttgcaggtatgagccagcttccagggttgtcacgggaaacaagagagagtatcgctatgtatcaccttcgggttccacaaacagaagaagaattagagcgttactatcagtttcgctgggaaatgttgcgtaagcccctgcatcaaccaaaaggttcggaacgcgacgcgtgggatgcgatggcgcatcaccagatggtcgtcgacgagcagggtaatctggtggcggtaggccgactgtatattaatgccgacaatgaagcgtccattcgctttatggccgttcatcccgacgtgcaggacaaagggttaggcacgctgatggcgatgaccctggagtcggtggcgcgtcaggaaggcgttaagcgcgtgacctgtagcgcccgtgaagacgcggtggagtttttcgccaagctggggtttgttaatcagggagaaatcaccacgccaaccaccacgccgattcgccattttttgatgattaagcccgtcgccactctggatgacattctgcatcgcggcgactggtgcgcgcagctgcaacaggcgtggtacgaacatatcccgcttagtgaaaaaatgggcgtgcgcattcagcaatataccgggcaaaaatttatcactaccatgccagaaaccggcaatcagaatccgcaccatacgctgtttgccgggagtttattctcactggcgacgctcactggttggggacttatctggctgatgctgcgtgaacgccacctcggcggaacgattattcttgcggatgcgcatatccgctacagcaagccgattagcggtaaacctcatgcggtagccgacctcggtgccttaagcggcgatctcgaccgtctggcgcgcggacgaaaagcacgggtgcagatgcaggtcgaaatctttggcgacgagacgccgggtgcagtgtttgaaggcacgtatatcgttctgcccgcgaagccatttggcccgtatgaagagggcgggaacgaagaagagtagctgatggagaggggcggtgctgcctctctcattcaggtcatttatattagtccttggctatttcggttatattaaataagaactctataaatttttattcttcgttggctccatacgtgtcttgctacatcactgttcaggagcatttaaatattatttgtagaactgagtggcaattatcgcagataatgcttaattcatcatcttagttcatgtttgagcgatttttgatagtcaaaaccccctctggtgccatacttttctcataaatatttttaaaatctatagctaacaaatattatgcaaagataatggactagcatcattgtcagtatcattcatttactgctctgtatgttatgaataattatgttgtatgtttgctcttaaaccgtgggaaggaggctataatggttgccaatattaatctcattaaacaagaaagttattctgttgttaatttagaaaaacaactttcccgaactgttaccaacaaaattataacgatgagcaagtaaagaccggttggtggcagtactgaccggtctgtgatgaaagattaatttcaccttaaatcctggtgctgttaggatgctgacgtttttcggctacaccattcagattatgcaaataaatatctctgaatataatatattcatagcacccataattcatcctgggcgataactaaaccatttttgagtaataaatgaaacaactgcaacactcttattatttctggaaaacgcctcgcaaaaacaaaacaacatgcaaaaatccgctttttttaaatgattttccggcgtaattttcgcacatacattaatgagtaatatatgtaaggtattggtaatggcgatgaatacggtttttcttcatttatcagaagaggcaattaaacggctgaacaagcttcggggctggcgtaaggtttcacgatctgcaattttacgcgaagcggtagagcaatatctggaacgtcagcaattcccggtgcgtaaagcaaagggaggcaggcaaaagggggaggtagttggtgttgatgatcagtgtaaggagcataaggaatgacaaaaatttttcattcttgaatataaaaaacagatgcccttattctggtattaatacaaggctgttttacttgaacttataataactgcaactgttacatcatatctggaaaacgcctcgcaaaaataaaaaatgatgcgtaaatgagctttctttaaagattcggcaagggtacttttctctccatagattcaaaaatgatattggcgagatatttatgaactctctggcaggtatagatatgggcagaattttactcgatttatcgaatgaggtgattaagcaacttgatgatctcgaggtgcagcgtaatcttcctcgtgcggacctattaagggaagcggtagatcaatacctgataaatcaatcgcaaacagcaagaaccagtgttcctggcatctggcaagggtgtgaggaagatggtgtcgaatatcagcgtaagctgcgcgaggaatggtaatgggaaaaaatgatgtcaatcagattgctgacaacgtgcgcgttgttcatgccggatgcggcgtgaacgccttatccggcctacaaagtcgtataaattcaatgtattgcagtttattggtaggcctgataagcgcagcgcatcaggcaatcttacgcttgtcatcagtctcatgcccataaccttattgatgtggtggtgggtaaattgaggccaaaccggcactggcggcatagcttgaggtggtaacgcggaatacgagagatggtgtcgtcacaccctatgagctgtaatccgggcgacctgcgccacccggaaaacgtcagagattactctccttcacccggaaacaggaacgggttgatggaactgcgggcatagccttcttgctccattcgtgcgtccagtaccagagaggcgaggtcatctgctacggcttcgatttttggatctttttcctgatagagaattttcaggtaagtgtcgcagtcatcgcagctttcggctttaatcgcggcctgttcgtcatccagcgaccagtaatgcagtttgccgctctgctcgcagttgctgcattttacgcgcactacgtgccattcagtttcacacaggttgcagtgcaggtaacgtagcccctgagtggtgccaatttgcaccatgctggacaccggcatagaaccacaaaccgggcaatattgacgttgctcgccgtattcagcgcgggctttgccggggatcagattggccatctgcgcccagtagagcgacagtgcagcccagataaacggcgctttatcgctgctgacggacgagaaatcagaggcaaacagcgcgctggccatatcttccagctcctgagtcgatgccttctccagattctcaatcactgccagcgccgggccgctcatttcaggtttcagctcagcaatcagcgccatcagcagcttttgccagtgcttatcacgcggcagaacgtgaatatccagcgggggcttgccttgtgcgctggcttctttaatgcgcgcagtcagatccatctccagcggatggtcgtacagcaccacttcctgggcgtgggcgataagcgcagcaaagcgcaggtaatcacccagaggattattttctgccagctcgcgcagacgctcggcgcggcggttgtataaattcttgagccgagggaacaataacggcggaatcatatccgccgtacgtttctcgcttgaacccagctcatcttgcgggattatgcgaatactcattcagctttcttttccgttgtcttgcggacctcacggtaccagcgcgggtgatgtttcttcgcccaggcgctggtaacccatccttccaccatggcggtaatcgtgcctttcacccaaagggcggcgtagatatgcaccatgataaccacaattaacgccactgcggcaaatgaatgcagcattaacgcgaatcggatcaccgggattgagaaagcaggcgcaaaataaggacgccagataatcacgccgctcaccagcagcagaaccaggaaaataatcgccgcccagaaaacgcatttctgaccgaagttataacgcccggtgtcacctacttcctcgttgacgacgatcttacgaatattcttcgcccaaaagatatcatcccgattgattaggttgtgatgccagtaacggaaaaacatgatgatgaacgaggcaaacataaccacgccgacaaacgggtgcagaattcgcgccagctgcggtgtgcccatgatttgcatcaaccagttgaaggacgggaacaaaaagcccagcccgctcaccgccgccaggatgaagcagaaggcggtgatccagtggttgatacgttccggcgcggtgtagcgcacgatggtgtcacgtcgtttcatttgcgctcctcgtctttctcttcgtgcagattattctcttcctcatccgcacggttcggaccgacacccacgtagtggaagatactggccgcaaaggtagccgcaaagccaacagccgcgagcggtttccagatgcctttccagaatttcacggtttcgctgatttccgggttctccggcaagccatgatacagatttggcttgtcagcatggtgcagcacgtacatgacgtgtgtaccaccgacgcctgccggatcgtacagacccgcattgtcgtaaccgcgggttttcagctcagcaacgcgctcgctcgccagcgttttcatcgactctttcgtaccgaagtgaatcgcgcccgttgggcaggtcttcacgcaggctggttcttgcccaaccaccacgcggtcaacgcacagcgtacatttgtagacgcggttgtcttccgggttgaggcgcggaatgtcgaacggacagcccgcaatgcaataaccgcagccaatgcactgctcggactggaagtcgacgataccgttggcatactgaataattgcaccttccgccgggcacgctttcaggcagcctggatcggaacagtgcatacagccgtctttgcggatcagccattccagtttgtcgttctgctccacttccgagaagcgcattaccgtccacgatttggcgcttaaatcattggggttgtcgtacaccccaatgttattgccgacggtatcgcgaatgtcgttccactctgaacacgccacctgacaggctttacagccgatacaggtggtaacgtcgatgagtttcgccacttcttcctggaagtcccgcgcctgaggcgcgggggtcagaccgttagtcgcggaacgacgaatgatatcttgagattgataagccatatgtcgtctccgttacaccttttccacattcacaaggaaggacttaaactccggcgtctgcgtgttcgcatcaccaacgaatggcgttaaagtattggcaataaagccttttttagctacgccttcatagccccagtgaatcggaataccgatggtatcgatatctttgccgttcgctttcagcgtgcgaatacgtttggtcaccaccgctttggctttgatatagccacggttggaggagactttcacggtatcgccctgggcaatgccaagtttattcgccagcgactccccgatttccacaaactgctctggctgcaaaatcgcgttcaacagcgcgtgtttggtccagtagtggaagtgctcggtcagacgataggtggttccgacatacgggaacttatcggctttacccaatgcttcggcgtcgtctttaaagatacgtgcagccgggttcgagataacgtttggatgcagcgggttagttcccagcggcgtttcaaacggctcgtagtgttccgggaacggaccttccgccatcttatcgagggcaaacagacgccccatgccttcctgctgcatgataaacggcccgacgccgctacccggaggcgctgcgctgtagtccggaatatcccagccggtccacttagtgccgtcccatttcagcaactgacgcttcggatcccacgggttaccctgcggatctgcggaggcgcggttatacagaatgcggcggttaagcggccatgcccatgcccagcccagcgtgttaccgaggccagacggatcggcgttatcacggcgtgccatctggttgccttccggcgtccagctaccggcgaaaatccagcagccacaggaggttgtaccgtcatcgcgcaattgggcgaacgaactaagttgttggcctttcttgacgataaccgcaccggttgccggatcggtaatatcggccagcgccttaccgttgctctccatcgccacttcttctgaagatggctcatgcggaatggcgtagttccatgtcatgttcagcacctggtccgggttcgcgccaccctgttcggcatacatcttgcgcaagcgcaggaagataccggagaggatctcgccgtcagtcagcgcaatccccggggcgtccgcacctttccagtgccactgtaaccagcgacctgagttaacgatagaaccgttctcttccgcgaagcaggtcgatggcagacggaacacttcggtctggatcttcgacgagtcaacttcgttcagctcaccgtggttctgccagaagttagaggtttcagtgttcagtgggtcgatggtgacgaggaacttcagtttcgacagacaaccgatcactttgtttttgttcgggaatgaggcaacagggttaaagccctggcagatatagccattgaccttgccctctttcatcatctcgaagtattgcaggacgtcgtagcctttatcccacttcggcaaccagtcaaagccccagctattttccgccgtcgctttatcaccaaagaaggccttcatcatagagacgaagaatttcgggtagttgccccagtagtttacctggccttccagcagcggttttggcgtgttggcggtaaggtaggtttgcagatcggtctgcttctcgcttggcagcgtcatgtaacctggcaggctctgcgacagcagccccaggtccgtcagcccctgaatattggagtgaccgcgcagggcgttaacgccgccgcctgccatccccatattgccgagcagcagctggatcatcgccatcgtacgaatgttttgcgcaccaacggagtgttgcgtccagccgagggcatacaggaacgaggcagttttatcgtgagcactggtttctgcgatgtattcgcagactttcaggaacgcgtcttttggcgtaccacagatgttttcaaccacatctggcgtgtagcgggaaacgtgctgtttcagcaagttccacacgcagcgcggatgttgcagcgtggtatcgcgtttgcgaagccgttttccgtccagttcataagtccaggaggatttatcgtacttgcgtttttccgcgtcgtagccggtgaacaggccatcttcaaagccgtaatcctcacgcacgatcaggctggcgttggtataggcttcggtgtattcgcggttgaatttttcattgttcagcaggtacagcaatacgcctgacaggaaagcaatgtcagtaccggaacgaataggggcatagtagtcagctaccgccgccgtacgcgtaaagcaggatcgatcacaatcagcttcgcgccggttgtgaattttggcttccatcgcccagcggaacccgaccgggtgagcttcagcggcgttaccgcccatcaccacgacgaggttggcgttcttgatgtcgacccagtggttggtcatcgcaccgcgaccaaatgttggagcaagacttgctaccgttggtccgtgtcagacacgcgcctggttgtcgaccgcgagcatacccagcgcgcgggagaatttttgcgttaaatagccggtttcgttactcgacgcggaagcacacagcatcccggtggagagccagcggttaacagtcacgccttcggcgttttgcgcaatgtagttagcatcgcggtcttctttcatcagtttggcgatgcgatcaaacgcctcttcccaactgatttgctgccatttatcagaacctggcgcacggtattccggaaacttcagacggctttcggagtggatgaaatccaccaggccagcgcctttcggacaaagtgcaccgcggttgaccgggtgatccggatcgccttcgatatggaagatagatgctttggcgttttttgctccgtcaccgaggctgtacatcaacagcccacagcctacggaacaataggtgcaggtattacgggtttcgcgggtgcgcagcagtttatactgccgggtttccgcgagtgctacgctgggtgcaaaacccagtgccgctgccgtggtgcctgccataccgccagcgcagatcttaaagaactgccttctgctgacctgcatggattgctccttgtttcgacattgtcacgtcccatttacattcgcttgctgcgtgtgcagggagtgggagttatttttctttgcggaaggggccgcaaaggtccagaattggctcaatttccctccatccaggaagggtttgtaacagaataccataatgttggtgtgtgtgttcttatctggttaagagaaagtgaaaaaaacacagcgaaaagaaatcgaaaatgtgacaaatatcacaggtgttcgtcaaattgagttatggcggcgtgatgatttacaacacccacggttagatgaggtcgcggaagaagttcccgttgcgctggtctacaacggcatttcgcatgtggtgatgatggcgtcgcccaaagaccttgagtactttgcgctcggtttttcgctttccgaggggattatcgaaagtccgcgcgatatcttcggcatggatgtcgttccttcctgtaatggtcttgaagtacaaattgagctttccagccgccgctttatggggttgaaggagcgccgccgggcgctggcgggacgtacgggctgtggcgtatgcggcgtggagcaacttaatgacatcggaaaaccggtgcagccgctaccgttcacccagacgtttgatctcaacaaactggatgatgcattacgtcatctcaacgattttcagccagtggggcaactgactggttgtactcacgccgctgcctggatgttgccatctggcgaactggtcggcgggcatgaagacgtgggtcgccatgtggcgctggacaaactgttaggccgccggtcacaagaaggggaaagctggcagcaaggtgcggtactggtttccagtcgtgccagttatgaaatggtgcaaaagtcggcgatgtgcggcgtagagattttgtttgcggtgtctgccgcgaccacgcttgctgtagaagtggctgagcgctgtaatctgacactggtaggtttttgtaaaccgggtcgggcaacggtttatacccatccgcagcgtttgagcaattaattaaaataagtcctgcgaaatatattaaattgcaggacttattcatttcgtgaattttattattttatttataaacaaaatgcgtgtagtggcgttttcttttttcatttattatgttcactctcttatctatatatttataaggcaattaaatgaaaaggaatttattatcttccgctattatagtcgccatcatgtccctcggtctgacgggttgtgatgataaaaaagccgaaacagaaacgctcccgcctgccaatagtcaacctgccgcaccagctcctgaagcgaaacctactgaagctcccgttgcaaaagcagaagctaaacctgaaacacctgcgcaaccggtggtcgatgaacaagcggttttcgacgaaaaaatggatgtctatatcaagtgctacaacaagttacagatcccggtacagcgcagtctggcgcgttatgctgactggctgaaagattttaaacaggggcctaccggtgaagagcgtactgtttatggcatctacggcattagtgaatccaacctcgctgagtgtgaaaaaggcgtaaaaagtgctgtggcgttaacgcctgcgctgcaaccaattgatggcgtggcggtgagttatatcgatgctgccgtggcgttgggtaataccattaacgaaatggataaatattacacccaggaaaattataaagacgatgcgtttgcgaaagggaaaacgctgcaccagacattcttaaaaaatctggaagcctttgaacctgtagccgaatcttatcatgcggcgattcaggaaattaatgataagcgtcagcttgcggaactgaaaaatattgaagaaagagaagggaaaacattccactactactctctggcagtcatgatttcagcgaaacaaattaataacctgatatcgcaagataagtttgatgcagaagcggcaatgaagaaagtgtctgaactggaaacgctagtggcgcaggccaaagaagcggataaaggcggcatgaatttctcgtttattaattcggcaggccagtatcaactcgaggctaaaaaatacgttcgccgcatcagagataaagtcccgtactctgactgggataaagagcaacttcaggacgcaaactcaagctggatggtcgaagactctttcccgagagcattacgcgagtacaacgaaatggttgatgactataatagcctgcgttaaacgtttttgatgataaatgcagtgtcggatgcggcgcgatccgacacagttcaccccttgtgaagtaactccataaatgcctcatatcctgttaacccggcaataatctccgccggatgctgacacaatatgcttgccagatagctaaatatttttagctcatgacgcgcatcggcggcggcgcaggcgatcaagacatggttaatgacttcgttattcacctcaactggttgggcgagggtaataaaaaatccacgaaaacgtcgctcctgttcgctccagcaatgtgggatggcgaggcgattaacaatcaggttttcaccttcgccttcgcgggcgatgatgcgttgtgcttcatcggcggtaatatggtgttgtgcgactaattgcgcacaaatttgccgggtaatatgttgccagctttcaccgcgtacattcgaataatgaaaacttccgggggcagagaaaaaacgctccggctgttggcgaataaatgccgtcgccagaaaatgttttatttgttcgataccggcagccgtaatgatattttttacggtgatgtaattatttaccgcgtcatccagtaaataatggctgttgttaatgatcaataacggctcaatctcttcgcgaatggcaacaagttcgcttaagctacgggcaataattacccgacaatttaaaacatcgcgctcaatggcgagctgattaatagtggcaatcgcgttctggtccgagagcaaaatgatcggctggcgttcgttttgatgccgctccagcgcacaggcaaaatacaaaccgatcagatcgctgtcgaaaaggggaatatcgagctgttcacgcagtagcgtaataaagtgcagactcatatcaaaggccgcaggccaggcggctttcaggttattcatgctgctctggcggtgctcagcaatccacactggtgcggcaaggcaacgtaataaatgcccggtaatattctcaaccagctgcgcatcaataatattcaatgacgcgatgcccggcaccctttgcagcaacccctgcacattatcggctgaaattacctgcgcttgctgatgctgtttctctatcaaacccgtcagggttcttacagcgttatcaccaagaaacagaccgctatgttcaacgatttgttttatctcgtcaccgggatattgcggccactcatcggtcagttgattacgcagggcgtaaatcgccagaatcaggctggagagataatcaccctgcatgagcggccagcggtgttggttgtcgcaggccgtggataaatgctgaaggttgtctcgtgttatgcccgccagcggaattaaaaacggatctttgcgcagcaagttcgccagcaagataacgcgtttctcttctgtctcatcaatgaaatggcccaaaccagggcggctggccaggcaacaagtgcgttcataacgctgttttaaccggggcagacgctctgctacccacgtttctggcaaattaagcgccgaggcgagttgcgcacggggagtgaaagtattcagtaataacagcgccagcagccgatcgtcgttatcgtgcttttgcagcaactgaaaaaagctgcggcgctcgaagatttccagctgatagcccgcactgccactggcgaaaatgcgggctttgccgttaagggtgaagttgagatagtcaatatcacgcaggatggtcctgcctgaaacgccagtctgttgcgccagctcgccaggcgtgcgcggctgttgctccagcagatcgacaatctttaactggcgttcgtttagcattaatccacctgacggaactggctaaacgcgttgactttctccgcagttaaggtcgtcagaaaaccccgtatcagcgtgagcagagcttcgtaatcggcttttgaaatcataccgctgttggcgtgcagataacgagttggcagacacagcgcgacaaccggacgcccgccgcccatcacgttgtagcgcccgccatccgtcgcaccggttttcatggtggaaaattgcagcggtaaatcgttatgtgcggcacagctttttaacgctgctaccagtttctggttggggaagtagcgcttgtcaaacagcatcagccccggcccctggcccagtttcagcgggtatttaatgttatcaatgcccggaacatcgcccgctacggcggtatccaacacgatcacgacgtccggtttaatgtgttccgccgaggtttgcgccccgcgtagcccaacttcttcttccacactgccaacgccatacagcgtaatttcgggattattcaccgtctgcaatagttcagccatcattgcgcagccgatgcggttatccaacgccttgccgaccactttatcttcgccccagcaggcaaaattggcttccgggctaataaaattaccaatttccacgccgcgcttttccacctcttcgcgactgttcgcgccaatatcaatgaacatctcatcaaatgacagcggttgttgcttttgcttttccgttaacgcatgaggcgcgacggaaccaatcacaccagggattttcactcccttgtgtgtgcgtatggttacccggtggttgagcatcgactgattccaccagccgccaatggtggtaaaacgcagaaaaccgctctcgtcgatgtgggtgaccataaagccgacttcatccatatgtccgacaacggcaacttttggacctttattccccttacgggcaacaaagctgcccagaccatcgaaggtgatttcattcacgcaaggttccagcgtgtttatcagaatgtcgcgaacttcctgttcatcgccgctgacggcgctggcttcgcacaactgttgcagtaactcaatgttcatggacaagctcctgttgcgcggctttcgctttgcggcgtaaccacaatcctttcaggacgataatgaatgaaatgttcagcgcgaggccaatcgccagcaccagataaaacgaacccaccggcgacatcaggccgatcagcgggtcaaagatacccaaaccaggtgccagacgtttgattccgaaagcgatcaccagcacgccggtaatgccgcccgccagcgtattggcggtaatcatcggcaacggagctgccagagcgtaaggaatagccggttcggttgcgactgtggcaccgaccacaatggcactactggcagcctctttttcctgtcgggtaaacagtttgggcgcaatgaacgtcgcaagacccgccgcgacgggcggcatcagcgcgacaacgccgacgatggcgtaccagtcataaatgtgtttttccagcagtgagaagcagaagaaccaggcggttttattgatggggccgcccatatcgaacgccagcatcgcaccgaccagaaacgctgccgcaaacttcattgatggaggaatggtattcaggaagtggagcagcccgcccatgaggtcggacatcaccggcccgataacgtagtaagtgagcacgccgaaaaccagcagagtaacgaacgggatcagcattgaaccgagcagcggttgtaatgctttgccaaggcgcactttgcggaaccagaagacgaaatagccaatcgccagccccagcaccaccgcgccgaggaatcccgcacccgactgggtgccgagcagcgctttgtcgttcgccagatagcaaaccagaaacgccggagcgaaagccggtttatcggcaatcgacgaggcaatataagcgcccatgatggggatcataaaggtgaagccaaggtaaccgatggattcaactacccaggtaaacgacggcgcgcctttcgacatatcggtatacggcaaaccgaactgcaccagcatgttggcaagcgccaccaggataccaccgccgatgacaaacggcagcgccgcagagacgcccgccatcaggtggctcatcacgctaccgctttgcacttcctgtttgccaagcttcacgccgctatctgcggcaaaaagctgcgagtttgtcggtaattcgctgaaaatctggtcgatatttttcaacgcctgggagatggcaatctcataaactttcttcccggcaaaccgcgcgcgatcatcaccgctcaggccacgcccggtagcgagaatgacgtaatcggcagcggcaatctcttcgctggataagcggttttcaacgccactggacccttgagtttccacttttatggtatgaccgagagaacgggctttctgttccagggcttccgccaccatgtaggtgtgagcgatcccggcggggcagttggtgatcgcgacaatacgtaaggatgactccatcgccacttccttatgagctgagggtttgatttaacaaggcaagcacctggtcggtatcgccctgttgcagttgatgaataaattccttgtgaataattttgcgacacagtgtgccgatgattttgacctgatcctctttttgcacgccgaggcagatccagcaattgacgtcttcgccatcgctggctttccagtcaatagcctggcctttgcgggcgaataatacgaacggttgtttaacgcaggcgcttttaccgtgcggcacggcgacaccggaaccaaatccagtagagtgcattttttcgcgcagcagcagggtttgcaggaactggtgtgagtcggtgataaaaccgttttgtaacgctattgtcgccaactgcttcagaacggaataagcgccattgccctgaatattcaggtcaatacagcttgcagtaagagctgccattaatcggactccataaaatatattttaatcaattgtaatggtggagcgattaagtgatgagaggcgatatgtcggtaaacaatgacaatttgagacagagtgaaaggtcagatttgcggagtaatgcacataatggttatttaaataaaccacatgaatcattaatgggttattcattatttttgtgatttactcacaatgtatcagggaaatataacttaccgggagatgtaatatgtttaatttttcaaatcgaaatttaaaatattgtgccggaggcatctctggcacattgggcaattacggcaggtaaaacacttcttgcagctcgctactcaccgggctgttatccgggttagcgggcataacatcggtcatatatttccaccaacgttggcaaacatcagtgctggcaaccgcattccagcgttcttcagattcaatctctaccatggcaaacagcagattacgcgctttgtcgagatagatggcgtagttatgcgcaccgtgagatttcagcactgcttccagttctggccagatgggattatgccgacgctgatactcttcgtgggcgtcggggtttacctgcatgacaaaggctttgcggatcatgtttgctccttacagcgccagcgcactggcgagtggcgtaacgccgaaacgcttgccgagcgctatcaactcttcacggctgatggtctgtttcatgccgcccatcgaataaaccttcactaatacttgtgctgatttttctgcggtgtcgattaaaccgaaggtttcatccagcgtcggtccgctgccgaagacgccgtggaagggccacaacaccagcgaatgtttttgcatctcttgtgcggtcgcctggccgatttcgtccgtgccgggcaccatccacggcaaaatgccaacgccatccgggaataccaccagacactcggtgctgccttcccacagttggcgagtgaagaccgcggtgtcgttttcaagtacataggtgagggcgatcaggttggtggcgtggcagtgcatgatcacccgatctttgccgttggtggctttaatgcgctcgcagtgggaaaggaagtgagccggaagttcggaagtggggacggcttcgttggttaacccccaaagaatgtggtagcccgcgccgtcgctgtcgacttttacgatgcctaagttagccgcaggatcaagctggacgttacggaagaatttgcccgagccggtgacaataaacggtgtatttgccagtaaaggcatgggctggctgagcgggatatagcgcggttgttggtggaaattgtcgtgatatggtgcgatatcggcgtcatccaggcgtagcgtcaggttgccgccgttgcgctcatcccagcctttcagccaggcgtcggtggtggctttgatcattccctggacaaaccaggactgagtaatgttttgcatgttctgtgttcctgtaaattcggtgttgtcggatgcacgacccgtaggccggataaggcgctcgcgcgcatccacggcaatcaatgcctgatgcgacgctgtcgcgtcttatcaggcctacaactattgccgacctgtaggcctgataagcgacttgtgcgcatccggcaatcaatgcctgatgcgacgctgtcgcgtcttatcaggcctacaactgttgccgacctgtaggccggataaggcacttgtgcgcatccggcaatcaatgcctgatgcgacgctgtcgcgtcttatcaggcctacaactattgccgacctgtaggccggataaggcacttgtcggcatccggcaatcaatgcctgatgcgacgctgtcgcgtcttatcaggcctacaactgttgccgacccgtaggccggataaggcgtcgcgcgcatccggcagtgtttacccgcggcgactcaaaatttctttctcataagcccgcacgctctccagccattcgctacctgctggcgtatcgtgacgttggcaatacatttcccagaccgcctgccacggcaacgatttctgctcttccagcagtgccagacgcgcagtgtaatcgcccgccgcttccagcttgcgcacgtcagcggtaggttccagcaacgcacgcagcagggcttttttcatattgcgtgtaccaatgacccacgcggcaatgcggttgatagaggcatcgaagaagtcaaggccgatatgcacccggtcaaacagatcgtgacgcacaatctcactggcaattgcctgggtttcatcatccagcagcactacgtgatcgctgtcccagcgaaccggacggctgacgtgcagcagcaactgcggcacatacagcatggcggcggaaatcttgtcggaaatcacttcagtcgggtggaagtgcccggcgtccaggcacagcgcagtctggcggctggtggcataccccatgtaaaactcattggagccaaccgtgtagctctctgcgccaatgccaaacaatttgctctcaacggcgtcgatatggtgcgcagggtttagcttctcgctgatcacctcatccagtgctgccagcagacgctgacgcggggcgagacggtcaacggtgatatctttcataccatccgggatccagatgttcatcaccgatggtgtgccgagttgctcgccaaaataggccgaaacgcgacggctggctttgcagtgatcaatccagaactggcgaatgctgtcgtcggcatgggaaagcgtaaagccatcggcgcttagcggatgcgaaaagcaggaggggttaaaatccagaccgagctgattggctttcgcccattcaacccagtttttgaagtgctctggtttgatctggtcgcgcgagactggcgtatctgattccagatagatggcatgtaaattaagccgtttcggccccggaatcagccgcatagcctgttccagatcggcacgtagctcactggcattacgcgctttgcccggataattgcctgtggcctgaatccccccggtcagcgaaccttccgggttttcaaaaccggaaacatcatcgccctgccagcagtgcattgaaacgggtaaacgatcaagttggcgcagcgcctcctcgacatcaatccccaccgccgcgaaacgctgtttcgctagctcccaggcctgttccagttgagtggtcatgcgcaaagctcctttgtctgtcgtgtagagtgaatctgcgccacatagtgggcaatttcactgtcaggattaggggtaaaggtggtcagattcgcggtggtgctgacgacctgacggaaatcatccacattgttgagttcatccagcgtcattaactggatgccgatattgccgagcgtcgaggcttcaacaggcccggcgatcacccgaataccgcaggcatcggcgcatagctggttgagcagcgtgttctggcagcctccgccgacaatatgcagttgcgagaaatcttcaccgcgcagctgcgccagctcatgcaacacatcggcatacagcagcgccagactgtcgaaaatgcagcgcgccagttcagcatcactttccgggatcggttgcgccgtttcccgacacgcagcctgaatttcgctgcacatcgtctcaggattaataaagcgatcgtcattgggattgataatgaagcggcaagccggaagtgcctgtgtcgcggagataagcgccggaagatcgttgatttgctgctcctgaagcactcgctgaagcagccataagcccataatatttttcagcacccgatagcgaccttccgccccgccttcattggtgatgttggctgccagtgccgtgtcattggtaaatggcgtctggctttcgaagcccatcaatgaccaggtgccagaagagagataagcagcacgtgagccgtttaacggcgaggcgataaccgcgctggcggtatcatggctggcaacggcgaccactggaatctcattaccctgcgggcaaatccagtgacctatgacattacccggatgcgtcgggcgaccaaaccaggctttgttggccccgctccacgccagtagcgactcgtcccagtcgtcgctattgatattgaccagttgcgtggtcgtggcgttggtatattcccagttcatcttgccggtcaggcgataactgaagtaatccggcatcagcagagcgtgagcaatgtgtggaataagttcaggttgttgctccgtcagcgcacgcaactgataaagcgtattgaagggcagaaactggatgccgctacgttgataaatatcgcgtttgccgagttgttgttgtgcctgcgccattaggccattggtgcggctatcgcgataagcaacgggcaggcccacacgctgaccctgttggtcgagcagcacaaagtccacgccccaggtatcaatcccaatgctatcgatacgaatcccttcctcgcacaccttgtttaatccaaggcgaatggcactttcaaggctatccacatcccaggtgacatagccgttctgactatgcagcccattgttaaaacgatggatttcgcgcagcgtcaggctgcggcattcacgctcgtaacgcgccagcatcacgcgcccactggatgcgccgagatcgacggcgacacaattgcgaaaggtcataatgtgatcctgctgaatttcattacgaccagtctaaaaagcgcctgaattcgcgaccttctcgttactgacaggaaaatgggccattggcaaccagggaaagatgaacgtgatgatgttcacaatttgctgaattgtggtgatgtgatgctcaccgcatttcctgaaaattcacgctgtatcttgaaaaatcgacgttttttacgtggttttccgtcgaaaatttaaggtaagaacctgacctcgtgattactatttcgccgtgttgacgacatcaggaggccagtatgaccgtattacatagtgtggatttttttccgtctggtaacgcgtccgtggcgatagaaccccggctcccgcaggcggattttcctgaacatcatcatgattttcatgaaattgtgattgtcgaacatggcacgggtattcatgtgtttaatgggcagccctataccatcaccggtggcacggtctgtttcgtacgcgatcatgatcggcatctgtatgaacataccgataatctgtgtctgaccaatgtgctgtatcgctcgccggatcgatttcagtttctcgccgggctgaatcagttgctgccacaagagctggatgggcagtatccgtctcactggcgcgttaaccacagcgtattgcagcaggtgcgacagctggttgcacagatggaacagcaggaaggggaaaatgatttaccctcgaccgccagtcgcgagatcttgtttatgcaattactgctcttgctgcgtaaaagcagtttgcaggagaacctggaaaacagcgcatcacgtctcaacttgcttctggcctggctggaggaccattttgccgatgaggtgaattgggatgccgtggcggatcaattttctctttcactgcgtacgctacatcggcagcttaagcagcaaacgggactgacgcctcagcgatacctgaaccgcctgcgactgatgaaagcccgacatctgctacgccacagcgaggccagcgttactgacatcgcctatcgctgtggattcagcgacagtaaccacttttcgacgctttttcgccgagagtttaactggtcaccgcgtgatattcgccagggacgggatggctttctgcaataacgcgaatcttctcaacgtatttgtacgccatattgcgaataatcaacttcgttctctggccgaggtagccacggtggcgcatcagttaaaacttctcaaagatgatttttttgccagcgaccagcaggcagtcgctgtggctgaccgttatccgcaagatgtctttgctgaacatacacatgatttttgtgagctggtgattgtctggcgcggtaatggcctgcatgtactcaacgatcgcccttatcgcattacccgtggcgatctcttttacattcatgctgacgataaacactcctacgcttccgttaacgatctggttttgcagaatattatttattgcccggagcgtctgaagctgaatcttgactggcagggggcgattccgggatttaacgccagcgcagggcaaccacactggcgcttaggtagcatggggatggcgcaggcgcggcaggttatcggtcagcttgagcatgaaagtagtcagcatgtgccgtttgctaacgaaatggctgagttgctgttcgggcagttggtgatgttgctgaatcgccatcgttacaccagtgattcgttgccgccaacatccagcgaaacgttgctggataagctgattacccggctggcggctagcctgaaaagtccctttgcgctggataaattttgtgatgaggcatcgtgcagtgagcgcgttttgcgtcagcaatttcgccagcagactggaatgaccatcaatcaatatctgcgacaggtcagagtgtgtcatgcgcaatatcttctccagcatagccgcctgttaatcagtgatatttcgaccgaatgtggctttgaagatagtaactatttttcggtggtgtttacccgggaaaccgggatgacgcccagccagtggcgtcatctcaattcgcagaaagattaattcgccatgccgatgccgacgatgttagcggcgacaataatcaccacacaaccgaggctcaacaccgttaccggacggcgtcctgcattgttccactctttcagcaccagcccgacgataccgccgcacaatacatagaaactcatatgcagcatccaactgatgtagtcatactgcgccggaatgcgggcgtggccccaggcatagaaaaagaattgcagataccacatcaacccgcccagtgtcgagagtaacacattgtgaatgatcagcgattttgccagcgagaagtcggcttttagcgacaaatccttcacttttgccagacgaataaaacagaaaccgaggttaatgatcgcgccgccgcccatgatgacaacatagcttggcagagcgacatacagtggatcgacgccaagtgcggcagcggcttcatgcatcggttttgcggcgttcatcgcaaaggacatcccggcagagaaaatgccgcacatcaccgccagcaccagcccttttttcagattgaactcttcggctttaatgcccatcttgcgctctttcaactgcccggcgcgagttacaatccctacgccaatcagcgccaccagaacgccgagcaacgtcatgcgtccgccttcggtgctaatcaacacatcgaaattgccgttgataattggcgtcatcagcgtaccgacaatcaacgtaatgccaatggcgatgccaattcccatcgacatgccgagataacgcatggtcaggccgtagttgatattaccgatcccccacatagcgccgaacagaaaaacaggcagtcgcgtagagagactaaacgagctgtaatacgcccagaaattcggtagtaacagggcgctgatggcccacggcagaataatccacgaaacaatcccaccgactgaccacatggtttcccatgaccatttttttacttttttgaacggagcgtaaaaacaggctgcactggccgcgccgatcaaatgccaaaatatccccatcgtaatcgcgttactcatcttcttatcctcatcatttttcgtcgcgtcacatctccgacgagatgagtgtaaaaatcgtgctgtcgattaacctttcgcctgttgccgccgttgtcgatttactggcaatcacggcattaagtgggtgatttgcttcacatctcgggcattttcctgcaaaaccatacccttacgaaaagtacggcattgataatcattttcaatatcatttaattaactataatgaaccaactgcttacgcggcattaacaatcggccgcccgacaatactggagatgaatatgagctataccctgccatccctgccgtatgcttacgatgccctggaaccgcacttcgataagcagaccatggaaatccaccacaccaaacaccatcagacctacgtaaacaacgccaacgcggcgctggaaagcctgccagaatttgccaacctgccggttgaagagctgatcaccaaactggaccagctgccagcagacaagaaaaccgtactgcgcaacaacgctggcggtcacgctaaccacagcctgttctggaaaggtctgaaaaaaggcaccaccctgcagggtgacctgaaagcggctatcgaacgtgacttcggctccgttgataacttcaaagcagaatttgaaaaagcggcagcttcccgctttggttccggctgggcatggctggtgctgaaaggcgataaactggcggtggtttctactgctaaccaggattctccgctgatgggtgaagctatttctggcgcttccggcttcccgattatgggcctggatgtgtgggaacatgcttactacctgaaattccagaaccgccgtccggactacattaaagagttctggaacgtggtgaactgggacgaagcagcggcacgttttgcggcgaaaaaataatcatttgccgcctgctgcaatgaggcgtataggccgcatatcagcttaaaaaatgaaccatcgccaacggcggtggtttttttgtgatcaatttcaaaataaaaacaatgatccgataaaaataaaacagcgtttcaattgatgtggttttgatcacttttattgattaaatgaatgtctatcttcgtttccatcaacactgatgctccattgaggaattacgcatcagcccttaaaaatatgccgacaggtgatggaaatgcagataaaacgctcgattgagaaaatcccgggggggatgatgctcgtcccgctattccttggcgcactgtgccacaccttctcgccgggggcggggaaatattttggatcattcaccaacgggatgattaccggtacggtgcccattctggcggtgtggtttttttgcatgggggcgtcaataaaattaagcgcgacgggaacggtactgcgtaaatccggtacgctggtggtaactaaaattgccgtcgcgtgggtggttgcggcaattgcctcgcgtattattccggaacatggtgttgaagttggattctttgccggactttcaacgctggcgctggtggcggcgatggatatgaccaatggcggactttacgcttccatcatgcagcagtacggcacaaaagaagaagctggggcatttgtgttgatgtcgttggagtccgggccgctcatgacgatgattattctgggcactgccgggattgcctcgtttgaaccgcatgttttcgtcggcgcagtattaccgttcctggtgggctttgccctggggaaccttgaccctgaattgcgagaatttttcagcaaagcggtgcaaacgctgattccattctttgccttcgcgctgggcaataccattgatttgactgtgattgcccagactggtttgctggggatcctgttgggtgtggcagtaattatcgtgaccggtattccgttgattatcgccgataaattgattggcggtggcgatggcactgccggaattgccgcttccagttccgcaggggccgcggtagcgacacctgtgctgattgcagaaatggtgcctgcgtttaaaccgatggctccggcagcaacttcgctggtagcgacggcggtcattgtgacttcgattctggtgccaattcttacctctatctggtcacgtaaagtcaaagccagagcagcgaaaatcgaaattttaggtacggtgaaataaacctgcttccttaatccccacagccggatgaactaacgttcgtccggtttgctattgagttcctgcctggatacttaccgcgaaaacagcacgcctgacataaaataaatatggtctaatggggaaatttctcgtggagagggaacagatgcgatatccggttgatgtatacacaggcaagattcaggcttatcccgaaggcaaacccagcgcaattgctaaaatccaggttgatggtgagttgatgctgacggagctggggctggaaggtgacgagcaggcggagaaaaaggttcacggcgggccagacagagcgctgtgtcattatcctcgtgagcattatctctactgggcgcgggaatttccggaacaggcggagttgtttgttgcgcctgcgtttggtgaaaacctctcaaccgacggcctgacggaaagtaatgtttatatgggcgatattttccgctggggagaggcattaattcaggtcagccagccgcgctcgccttgctataaactcaattaccattttgatatcagcgatatagcgcagttgatgcaaaacacaggtaaggtggggtggttgtatagcgtgatagcgccagggaaagtgtctgcggacgcgccgctggagttggtttcccgtgtcagcgatgtgaccgtgcaggaggctgccgccatcgcatggcatatgccgtttgatgacgatcaatatcaccgtttactctccgctgccgggttatcgaaaagctggacgcggacgatgcaaaagcgccgactgagcggcaagatcgaagatttttcccgccggttgtggggaaaataacccccggagtgtaggcctgataagacgctatcagcgtcgcatcaggcatcctgctcaaatgccggatgcggcgtaaacgccttatcctgcctgcaaatgcgaagtttaactccgcttatacagcggcaaccaaatcaccagccgtaaaccgcccagcgggctgtcttctgccttcacccagccacgatgctgctgaatggcggtttcaacaatcgccagccccaaacctgtaccgccagattcacgatcgcgtgcttcatcggtacgatagaacggacggaaaatctgttcgcgatcttccgggctaacgccaggaccatcgtcgtccaccgtaatggtgataccgtctttatctaccgcaaagcccacttcaatcttcgtatgggaataacgcagagcattacgaacaatgttttccagcgcactttccagggcgttcggattgccgtacagcggccacggcccaggcgggaagttaactgtcaacgacttgcccatttgctcggcttcgaacgccgcgttatccagcacttcactccacaactggttggctttgatggtttcgctaaccagcgcgtttttttgctgattacgtgacatcaccaacagatcgttgatcatgctgtccagacgttgcgcttcggtttcaatacgctccagttccttgctttcaccgctacgacggcgcagtaacgccgtacccagttgcagacgcgtcagcggggtgcgcagctcgtgagagatatcagaaagcagacgctgctgagaggtcatcatgcgctccagcgcggtgaccatctggttaaaactggcacctgcggcaaggaattcctgtggccccgcttccagttccgggtgctggcgtaagtttccctgggcaacttcatcggcagcgtttttcagcttacgcgccggttttgccagactccaggccaaccacaacagcagcggcgtactgaccaacatggtgacaatcagcagtaatagcgggcggtcaaacagtaagttaatgaaatcggattgagaactgctggccggacgaatcagataaagttggtaattatcttcgccatcacgcacggagaacggaccgaccagttccacgcggccatactttttcttctgcggatgatcggcgttatcggcctgaccaataaagttacgaatgatctgcatttcgctgcgttcagcgccgatcacgcggccttcggtggtcaccaataacaaacgctgtcctggcggtgcccacttatcaatcgcccggaacagacgccgccaccacattaaatcgttgggcggatcgttcgccagctccgcttcgacatgctgctcaatcatcagcccctgacgctgttcgctatccagaagctcggtcatctggcgtgaatcgagcttgggtaacatcaaaaccaacatcaacaccagcgccagcgtcagccagaagatggcgaagatgcgcgcggttaagctgcctatcatgaagcagaaaccatcagatagccgcgaccacgcaaggttttaaaccacgggtgaccatctttacgatccggcagtttacgacgcaggttggaaatgtgcatatcaatagcgcggtcgaaaggcgtcaggcgtttgcccaacacttcctggcttaaatgttcacgggaaaccacctgacccagatgctgtgccagcaaatagagcagggtaaactcagtaccggttaactccagcgtttgcccgtcgaagctggcttcctgacggcctggattcagcactaaggcatcaacttccagtgtcggtgaaccgttgtcgttgttttgctgttgctcgctccagtgcgaacggcaggatcgcgcgaatacgtgccaccagctcacgatcattaaacggtttcgggagatagtcatctgcgcccagctcaaggccgagaacgcgatcaagttcactgccgcgcgccgtcaacataatgacaggcgtctggtgtgtctggcgaagtgcttttaatgtgtcgataccatttttcttcggcatcattacgtcaagcaaaagtaaatcaatgctgtcgtccagaagatcaagcgcctgttccccatcgtgggcaacaatcacgttgaagccttccatctcgagcagctcctttaatagggaagtcagctctcggtcatcatcaactaacaggattttattcattgtttaaatacctccgaggcagaaattacgtcatcagacgtcgctaatccatgactttacgttgttttacaccccctgacgcatgtttgcagcctgaatcgtaaactctctatcgttgaatcgcgacagaaagattttgggagcaaatgatgcgcatagttaccgctgccgtcatggcctcaacgctggcagtcagttcattaagccacgctgctgaagtcggttcaggcgataactggcatccgggtgaagaacttacgcagcgcagtacgcagagccatatgttcgacggcataagtttaaccgaacatcagcgtcagcagatgcgagatcttatgcaacaggcccggcacgaacagcctcctgttaatgttagcgaactggagacaatgcatcgccttgtcaccgcagaaaattttgatgaaaacgctgtgcgcgcacaggcagaaaaaatggcgaatgagcaaattgctcgtcaggttgagatggcaaaagtccgcaaccaaatgtatcgcctgttaacgccggagcagcaagcggttttaaacgagaaacatcaacaacgaatggagcagttgcgtgacgtgacgcaatggcaaaaaagttcatcgttgaagctattgagtagtagcaactcacgttcccagtagtaaaccctgttttccttgccatagacaccatccctgtcttcccccacatgctgtgggggttttttttatcctcaatttgcctgctgcttaatgcattgcagatgatttgcttccgttatactagcgtcagttgatagcgggagtatttatgaatcaatcttatggacggctggtcagtcgggcggcgattgctgcgacggcgatggcttcgctgctattgctgattaaaatttttgcatggtggtataccgggtcggtgagtattctcgccgcgctggtggattcgctggtggatatcggcgcgtcgttgacgaatttattggtggtgcgatattccctgcaacctgccgacgataatcactcgtttggtcacggtaaagctgagtccctcgcggcgctggcgcaaagtatgtttatctccggttcggcactattcctgtttttgacgggtattcaacatctgatatctccaacaccgatgacagatccaggcgtcggggttatcgtgacaattgtggcgctaatttgtacgattatccttgtctcgtttcagcgttgggtggtgcggcggacgcaaagccaggcggtgcgggctgatatgctacattaccagtctgatgttatgatgaacggcgcaattctgctggcgctggggttgtcctggtacggctggcatcgcgccgatgctctgtttgcattgggaatcggcatctatattttatatagcgcgttacgcatgggatatgaggcggtacagtcattactggatcgcgcattgcctgatgaggaacggcaagaaattattgatatcgtgacttcctggccgggtgttagcggcgctcacgatcttcgcacgcggcagtcagggccgacccgctttattcagattcatttggaaatggaagactctctgcctttggttcaggcacatatggtggcggatcaggtagagcaggctattttacggcgttttccgggatcggatgtaattatccatcaggacccctgttccgtcgtacccagggagggtaaacggtctatgctttcataatcagtataaaagagagccagacccgcattttgtgtataaaataccgccatttggcctgacctgaatcaattcagcaggaagtgattgttatactatttgcacattcgttggatcacttcgatgtgcaagaagacttccggcaacagatttcattttgcattccaaagttcagaggtagtcatgattaagaaaatcggtgtgttgacaagcggcggtgatgcgccaggcatgaacgccgcaattcgcggggttgttcgttctgcgctgacagaaggtctggaagtaatgggtatttatgacggctatctgggtctgtatgaagaccgtatggtacagctagaccgttacagcgtgtctgacatgatcaaccgtggcggtacgttcctcggttctgcgcgtttcccggaattccgcgacgagaacatccgcgccgtggctatcgaaaacctgaaaaaacgtggtatcgacgcgctggtggttatcggcggtgacggttcctacatgggtgcaatgcgtctgaccgaaatgggcttcccgtgcatcggtctgccgggcactatcgacaacgacatcaaaggcactgactacactatcggtttcttcactgcgctgagcaccgttgtagaagcgatcgaccgtctgcgtgacacctcttcttctcaccagcgtatttccgtggtggaagtgatgggccgttattgtggagatctgacgttggctgcggccattgccggtggctgtgaattcgttgtggttccggaagttgaattcagccgtgaagacctggtaaacgaaatcaaagcgggtatcgcgaaaggtaaaaaacacgcgatcgtggcgattaccgaacatatgtgtgatgttgacgaactggcgcatttcatcgagaaagaaaccggtcgtgaaacccgcgcaactgtgctgggccacatccagcgcggtggttctccggtgccttacgaccgtattctggcttcccgtatgggcgcttacgctatcgatctgctgctggcaggttacggcggtcgttgtgtaggtatccagaacgaacagctggttcaccacgacatcatcgacgctatcgaaaacatgaagcgtccgttcaaaggtgactggctggactgcgcgaaaaaactgtattaatgatttcggaaaaaggcagattcctttaccctgaaaccgatgacagaagcaaaaatgcctgatgcgcttcgcttatcaggcctacatgaattctgcaatttattgaatttgcaaacttttgtaggccggataaggcgttcgcgccgcatccggcatggacaaagcgcactttgtcagcaatatgaggcggatttcttccgcctttttaatccctcaacatatacccgcaagttatagccaatctttttttattctttaatgtttggttaaccttctggcacgctttgctcatcacaacacaacataagagagtcgggcgatgaacaagtggggcgtagggttaacatttttgctggcggcaaccagcgttatggcaaaggatattcagcttcttaacgtttcatatgatccaacgcgcgaattgtacgaacagtacaacaaggcattcagcgcccactggaaacagcaaactggtgataacgtggtgattcgtcagtcacacggtggctcaggtaaacaagcgacgtcggtaatcaacggtattgaagctgatgttgtcacgctggctctggcctatgacgtggacgcaattgcggaacgcgggcggattgataaagagtggatcaaacgtctgccggataactccgcaccgtacacttccaccattgttttcctggtacgtaagggaaatccgaagcagatccatgactggaacgatctgattaaaccgggtgtttcggtgatcacgcctaatccgaaaagctctggtggcgcgcgctggaactacctggcagcctggggctacgcgctgcatcacaacaacaacgatcaggcaaaagcacaggattttgttcgggcactgtataaaaacgtcgaagttctggattctggcgcgcgtggctccactaacacttttgtcgagcgcggaattggcgatgtactgattgcctgggaaaacgaagctctgctggcagcgaatgaactggggaaagataaattcgaaatcgtcacgccgagtgagtctatcctcgcagagccaaccgtgtcggtggtcgataaagtggtcgagaaaaaaggtactaaagaggtggcggaagcctacctgaaatatctctactcgccagaaggtcaggaaattgccgcgaaaaactactaccgtccgcgcgacgctgaggtggcgaaaaagtacgaaaatgcgtttccaaagctgaagttattcaccattgatgaagagttcggcggctggacgaaagcgcaaaaagagcattttgctaacggcggtacgttcgatcagatcagcaaacgctgatttccccaggataattatcaaacccggtggtttctcgcgaccgggttttttatttgtcacgattttgcgttacccttgcatctctttgaggtacagggaaaaaaagatgaaaaaagcgggtcttctttttttggtgatgatagttatcgccgttgtggctgccggtattggttactggaaattaaccggtgaagagtcggatacattacgtaagattgtccttgaggaatgtttgcccaatcagcagcaaaatcaaaatccttcgccatgtgcggaagtcaaacccaatgccggatacgtggttttaaaagatcttaatggcccactgcaatatctgttgatgccaacgtatcgtattaacggtactgaaagtcctttgttgaccgatccttcaacgccgaacttcttttggttggcttggcaggcgcgtgattttatgagcaaaaaatacggccagccggttcccgatcgcgcggtttctttggcgatcaactcccgcaccgggcgtacgcaaaaccattttcatattcatatctcttgtattcgtcctgatgtgcgcaaacagctggataacaatctggcgaacatcagcagccgctggttgccactgccaggtggtttgcgcgggcatgaatacctggcgcgtcgggtaacggaaagcgaactggtacaacgcagcccatttatgatgctggcagaagaagtacctgaggcgcgggaacatatgggacgctacgggctggcgatggtacggcagagtgataactcatttgtattgctggcgacacaacgaaatctactgacgcttaaccgtgcttcagccgaggaaattcaggatcatcagtgtgagattttgcgttaaggcgaagagttaaggaaagtaagtgccggatatgaaatccggcacctgtcagacttaagcctgtttagccgcttctgcagctttaacgattactgcgaaggcgtcagctttcagagaagcaccaccaaccagcgcgccgtcgatatccggctgagcaaacagttctgcagcgttagacgcgtttacagagccgccgtactgaatgatcacttgttcagcgatgttagcgtcaactttagcgatgtggtcacggatgaatttgtgaacagcctgtgcctgagccggagttgcagatttgccagtaccgattgcccatacaggttcgtaagcgataaccgcaccttcgaatgccgcagcaccctgagttttcagtaccgcgtcgatctgacgtgcgcaaacttcttcagttttgcccgcttcattttcagcttcggtttcaccgatgcacagaaccggagtcaggccctgctctttcagcaccgcgaattttttcgcgatcagttcgtcagattctttgtggtaagtacgacgttcagagtgaccgatgatgatgtactgtgcgccgatgtctttcagcatagcagcagaggtttcaccggtgaatgcgccggacaggttcaggtccacgttttgcgcacccagcatgatgtggctgccttcagcttcgcgcttcgccatatcgatatacatttccggtggtgcgattgcaaccgcacagccagcaacacctgccagctctttacgcaggttagaaaccagctcgtgaaccatgtggcggctgccgttcagtttccagttacccatcactaaaggatgtcgcattttaattctccacgcttataagcgaataaaggaagatggccgccccgcagggcagcaggtctgtgaaacagtatagagattcatcggcacaaaggctttgctttttgtcatttattcaaaccttcaagcgattcagatagcgccagcttaatcggttcaacagcgaaggtcagccccttttcgccgttgtccgcgacaacataacgcagtgcaccttctgtctcggtgtaataacgtttgtttttccccgccgttagtagcgactgcagttttttctggctttgtgttttggtcattaatggggtgagtgtgcggatcaccgctgccatgtattcctgagctttcgctttcgcggctttttgctctggcccctggatgggtagccaggtcatttgaatgcttttgatttttaaggtaccgcgctccagcgctgtagaagcatacaagttctcattaattttacttgcagcacgagtgagattggctttgtcgggactgctgtcgatggcacgaaattcgttcagtggcaggctgggattctggctgttaaagtcttctcgaaactggctgatggagagatcgaaagtaggggctccagccagcagataaggcgcggtcgttgccgtatctggtgtttgtgcatgcgcctctgttgtaacggttaatgcagaacataagagaaaaaacagcgtacaccctggcttcattgacagtaccttttgttatgactggctccgattaaaacgatatctgtcgcccttgtcaaaagggtagaatcctggaaaagacaaccatcaaggaacttacatgaccatacagcaatggttattctcatttaaagggcgtattggacgccgtgatttctggatttggataggcctgtggttcgcaggcatgctggtgcttttctcactggcgggtaagaatctactcgatattcagaccgcggcgttttgccttgtgtgcttgctctggccaacagcggcagtaactgttaagcgcttgcatgatcgcgggcgttccggcgcatgggcatttctgatgattgtggcgtggatgctgctggcgggtaactgggcgattttaccgggtgtctggcaatgggcggtggggcgttttgtcccgacgttgattctggtgatgatgcttatcgatcttggtgcgtttgttggcacacaaggcgaaaataaatatggtaaagatactcaggatgtgaagtataaagccgacaataaatcaagtaattaacctttaatatatctcttactgctatttttttccgggattgttatttccacgatgcaaatgacaatacccggaaaatccttctgaactcttcaccttaagcaatatcaaaaaaaatggtaatccataagatcattacttgtttgttcttcccttaacggcgcattattcttaagtcgtaatcgacagagaggcgaatatacagaggtgccctatgaaagatgtcgtagataaatgcagtactaaaggatgtgcgattgatatcggtacggtgattgataacgacaactgtaccagtaagttttcgcgcttttttgccacccgcgaagaagcagagtcttttatgaccaaactgaaagagcttgccgccgctacatcctctgcagatgaaggggccagcgtggcctataagattaaggatctggaggggcaagttgagcttgatgcggccttcactttctcatgccaggccgagatgattatttttgagttatcactgcgttcgttagcttgatggagttgctttagaaggagttaaacatggcttataaacacattggcgtggcaatttccgggaatgaagaagatgccttactggtgaataaagccctggagctcgccagacataatgacgctcacctgacgttaattcatattgatgatggcttaagcgagttgtatccgggtatctacttccctgcaacagaagatattcttcaattgttgaagaataagtcggataacaagctgtataaactgacgaaaaatattcaatggccgaagacaaaactgcgtattgaacgcggagaaatgccggaaacactgctggaaattatgcaaaaagagcagtgcgacctccttgtctgtggtcatcatcactcatttatcaaccgtttgatgccggcatatcgcgggatgatcaataagatgagtgcggatttgctcatcgtgccgtttatcgataagtaaccgcttaccagtaatgctccgctgtcatatggcccggtcggcgacgtaaatgtttcgtcatctgccgggtctctttcagcaactgttgtgtatcgcgcaccatctgtggattgccgcacagcatcacatggctggtttctttattcatcggcaggccaatcgtgctttccagttccccactttcaattaatgccggtatccgtccggtgagcgaccccgctgccgtttcccgactgaccaccgtctgaatgcgcagttttccttcgtagcgtttttccagttcctgcatcagtggcaaatagcttaagtcggcggcataacgtgcggcgtgcaccaggaccagatttttgaagcgatctaaatctttacctagttgcagaatcgataaataagggccaatcgctgtaccggttgccagcatccatagcgtttcgcagtgcggcacttcatcgagcacaaagaatcctgccgcttcgctaaccacctgcacttcatcgcctggtttcagtgccgccagtcgtgggcttaatttgccatcggggacggtgaccaggtaaaactccagatcgggattatcgggcgagtttacataggagtaggcgcgctggacgcgttcgccgtcgatttcaaggccaagcttggtaaattgcccggcggtaaacggaagcacgggggcgtgaacggtgagactaaacagggcgtcggtccagttctgcactttagtgactttgcctgttacccaatcagccatgtttttctcctgttttgattgacttgccttatcttcgttctccgaacaaaaaaattccagtcccgaaggactggaaggctcaatcgatcaaatcaatcagaggatgtgcacctgcatttccgggtctttgcgatccagatagtggatggactgaatgcggcgaatggtgcgtgacttgccgcggatcagcagcgtttcggtagtcgcgatattgcctttgcggctaatgccttccagcagatcgcctttggtaataccggtggcagagaagatgacgttatcgctgcgcgccatatcgcccaggcgcaatactttaccggcttcgatgcccatcgctttgcagcgtgccagctcctgctcgccaatgcgacgattctcttcgttgtcgcctttgacgtcatgacgcgccagcagacgaccgttcatgtcgccatctaatgcgcggatcaccgccgcagaaactacgccttccggcgcgccaccaataccgtacagcacgtcaacttcgctgtctggcatacaggtgagaattgaggccgcaacgtcgccgtccggaatagcaaatacgcgtacgccgagttgctgcatttcagcgataacggcatcgtggcgtggtttagccagaatcgttaccgtcagttcgctcaacggtttgccgagcgccgccgctacattgcgcaggttatccgccagcggcaggttcagatcaatggtgcctttggctcccggcccgacaatcagcttctccatatacatatccggcgcattgaggaagcagcctttatcgcctactgccagcaccgccagcgcgttagcctggcccatcgccgtcatgcgcgtgccttcaatcggatcaacagcaatatctaccgcgtcgccgcgaccagtaccgactttttcaccaatgtagagcatcggtgcttcgtcgatttcaccttcaccaatgacgatggtgccgtcaatgttgacctggttgagcataatacgcatggcgtttaccgccgcgccgtccgcggtgtttttatcgccgcgtcctaaccatttgtagccagccagcgccgctgattcggtgacgcgggaaaattcgatggcaagttctcgtctcatagcaaactctaagcagtaaggaatggcgcgaagtgtagcacaggggaagggagggattattgatgtgtgcggggttgcccccgcacgtttcgggactaccggatgcggcataaacgcttcattcggcatttacattattcgtcgtgttcttcccacgccatcgcgcgtttaaccgcttttttccagcctgcgtaacggtaattacgctcagtggtttcgatgcctggacggaactcgcgctcaatcaccgctttctcttgcagctcgtcgaggttctgccagaagccaaccgccaggcctgcgagataggccgcacccaatgcggtgacttcgcgcacttccgggcgctcaacgcgggtgccgagaatatcggactggaactgcatcaggaaattgtttgctactgcgccaccatccacgcgcagggcgtgcagacggataccagagtcggcctgcatcgcttccagcacgtcacgcgtctgataagcaatagactccagcgtcgcgcgtataatgtggttagcgttcaccccacgagtcagaccgaaaatcgccccgcgcgcatacgggtcccagtacggcgcacccagcccggtaaatgccggaaccacatacacaccattggtgttttgcactttggtggcgaaatattcggaatcgtaggcgtcgttaatcaacttcatttcatcgcgcagccactgaatggatgcgcctgccataaacaccgcaccttccaacgcatagttcacttcgccagtcgggccgcaggcgatggtggtcagcaggccgttttctgatttcaccgctttctcgccagtgttcatcagcataaagcagccagtgccataggtgttcttcgccatcccttctttcacgcacaactgaccaaacagcgcggcctgctggtcaccggcgatcccggagattggaatacgcgtgccgcctttgccgccaatgttagtctgaccgtatacttcggaagaacgacgcacttctggcagcatctcgcgcggaatatccagcacttccagcattttgtcgtcccagtccagggtatggatgttgaacaacatggtacgagaggcgttggtgtaatcggtcacatggacacggccctgagtcattttccagataagccacgtatcaaccgtaccaaacagcaattcaccacgacgtgcacgctcgcgagagccttccacatggtcgaggatccacttcactttggtgccagaaaagtacgggtcaatcaccagaccggtattgctgcggatataatcttctaaaccgtcacgttttaaatgctcgcagatttctgcggtacgacggcactgccagacaatggcgttatagataggcttgccggtttctttttcccagacaatagtggtttcacgctggttcgtaataccgatagctgcaatttgatcggaactgatatcggctttcgccagcacttctaccagcgtggagctttgggtggcccagatttccattgggtcgtgttctacccaacctggttttgggtagatttgctcaaattcgcgctgcgacacgctaatgatattggcatcgtgatccattacgaccgcgcgggagctggtggtgccctggtcgagcgcaacgatatattttttttcagtcatgtttaattgtcccgtagtcatattacagcgaagctttttgttctgaaggagttgtggtttccttttcttccacaacacagatatcgcaaggcaaatggcgaccaatcagtttgcggtaggcaaatgcacctacaatcgcgccaacgatagggccgaaaagcggcaccaggaagtaaggaatgtctctgccgccggtaaaggcgacattgccccagcccgccagccaggcaaagactttcggaccgaagtcacgcgctgggttcatggcaaaacctgtcaatgggcccatagatgcgccaatgaccgcaatcagtagaccaatcagcaagggagccaaagggccgcgtggtacaccgttgccatcgtccgttaacgccaggatcagccccatcagaatagcggtaatcaccatctcaactgcgaaagcctgcacaaaattgatatgaggattagggtaagtagagaaagtgccagccagatcaacactttcaacgctgccgcgaacaatgtgatgagtctgctcgaagtcgaaaaataaattgtagtaaagcccgtaaactaaagccgcagcacagaaagcgccggcaacttgtgaaacgataaaaggaataactttgcgcttgtcgaaacaggcaaacagccacaatgcaatggtaacagcgggattaagatgcgcgccggaaacccctgcggtcaggtagatggccattgccacccccagtccccaaatgacactgatttcccactgaccaaaagacgcaccagcgacttttagtgctgcaacgcaacccacaccgaagaaaatcaacaacccggtaccgaggaattcagcaatgcactggcctttcaaggttgatgtttgactcataatcggatcctgaagagttaatgtttgttgtatgcgtgaaagtcacggacctccacgatgcttgtaggcatgctgtaaacttatcgttaacgagcaaaaacgagaaatatcgaacttaaaatgtgtgtgcctcgtcataaaatgagcgttatcgcgccatttattccatctgattgtacatgatgcatgtttgttagatcattcgcgcaacaaatttattaacattttcgattgatgtggattatgtcaccaggagaaggatgaaaagtgtggcaaaccgtaatctgcaaggcgtgccgctggacagcgatggcgcggcttcatacaatcggagctaactaaagtgcgctcgtatttattaaggcgtcaccggtaatcgggacgaggatttttatccatcaacgccttgcaattcaggagaggtatgacaatgtcattagaagtgtttgagaaactggaagcaaaagtacagcaggcgattgataccatcactctgttgcagatggaaatcgaagagctgaaagaaaaaaacaactcactgtcgcaggaagttcaaaatgcccagcatcagcgcgaagagctggagcgtgagaacaaccatctgaaagaacagcagaacggctggcaggaacgtctgcaggccctgctgggtcgcatggaagaggtctgattacgcttcatcttccgcgtaatttctttactgtgtaggccaacaggtaacgcagaaaaaaggcaccttgcggtgcctttcttatcattcaatatccagcggatcttctgaaagaataatcccggtattgtcggcataaagatggtcgccggagaagaaggtgacaccgccaaaattgacgcggacatcgctttcgccaatgccttcgccagcggcaccaaccggaattgccgccatcgcctggatgccgatatccaactcttccaggtcatctacctgacgcaccgcgccgtaaatgaccagaccttcccattcattttgtactgccagacgcgccagttcagcatcgaccagtgcgcgacgaacagaaccaccgccatcgacgacaagaacacgaccacggccattctgttcgagcagatcgtacagcaacccgttgtcctcgaaacattttaccgtgattatttgtccgccaaacgacgcccgtccgccaaagttggagaacagcggttccacgacgttaacatcttcttgatagatgtcacaaagctcggaagtatcgtatttcataggcttaacattcagttgctgcgagaattttcagtatatcgcgctatgtgggctgttggcaaaatcatcaattgttaattgatatttgtcagttatgctgcccactggcttaggaatatccctaaaacaaacagcaggttagtcagtaacgctcccttgacagtacgttccagcattggtcgcatcgccaccgggtccatttcccgcatcacataacgggcttgcttcaccagtaatggtgccgccagcaggaacagccagccccacaggctatgcagcgaaaagagattaaacagcgccagacacaccagcgagcccatcagcaggcaggcatgataacgacgcgcgttcacttcacctaagcgcaccaccagcgtgtttttgccattttcgcggtcgctattgatatcacgcaggttattaatattcagtactgccgttgccagcaggccgcatgcggtcgccggaaggatcagtgccggaatcaatgtatgagcctgtaaataccagctccccatgacactcaaccagccaaagaaaaccagtacggaaatatcacccagaccgatataaccataaggacgattgcccacggtgtaggtgatagcggcaatgatcgacaacccgccaagaatcaggaaaccgacaaaatcggccagcgtatggcatgccactgcaaccagtgccagcccggagagacagatgagcacgacggtaataatgagcgcccgtttcatctcttgctgggtaatgacccctttttgcatgccgcgtagcggcccaatgcggtcaggtttatcgctgccttttaccgcatcgccgtaatcattggcgaggttagaaaggatctgtaatagcccggcggtaattagtgccagcagggcgaccagcggatcgaagtgaccttgccaccatgccagcgctgtcccgacgataattgcagcaaaggcgagggggagggttttaggtcgtaaactttccagccacgcctgagttcggctaatttgttgttcagtcataatacgcgccaataaaaatggggcctttcagccccatcaaacaatgatgaaaatgattgaacgcgattataggataaaacggctcagatcttcatctgccaccaacgcatccagatgtttgctcacataatctgcgtcaatagtgatattttgaccgcttaaatcgctggcgtcgtaggaaatctcttccattaaacgctccagaacagtgtgtaaacgacgagcaccgatgttttcggtagattcgttcacctgccatgccgcttccgcgatgcgtttaataccggagtcggtaaactcgatatttacgccttcagtcgccatcagtgctttgtactgcacggtgatagaggcattcggctcggtcagaatacgctcgaagtcgctggtggtcagcgcctgcagttcaacgcggattggcagacgaccttgcagttccgggatcaggtcagacggtttcgcaatctggaacgcgccagaagcgataaacagaatgtggtcagttttgaccatcccgtgtttggtggaaacggtgcaaccttctaccagcggcagcaggtcacgctgaacgccttcacgagaaacatccggaccggaagactcgccgcgcttacagattttgtcgatttcgtcgataaacacgatcccgtgctgctcaacagcgtcgatagcgtcttgcttcagctcttccgggttcaccagtttcgccgcttcttcttcaatcagcagcttcatggcgtctttgattttcagcttacgcgctttttgcttctggccgcccaggttctggaacatggactgcagctggctggtcatctcttccatgcccggaggagccataatttcaacgcccatcggtgctgcggcaagatcgatctcgatttctttgtcatcaagctggccttcacgcagttttttgcggaatgcctgacgagcagcggacggttcctgctgctgttcggtctgtccccagttgtttttagcaggtgggatcagcacgtcgagaatacgttcttctgccagttcttcagcgcgataacggtttttctcgatagcctggacgcgtaccattttcacggcggcatcggtcagatcgcgaataatagaatccacttccttaccgacgtagcccacttcggtgaatttggtcgcttcaactttgatgaacggcgcattcgccagcttagccagacgacgggcgatttcagttttaccgacaccggtcgggccgatcatcaggatatttttcggggtcacttcatggcgcagctcttcgttgagctgcatgcgacgccagcggttacgcagagcaatcgccacagaacgcttggcgttgtcctggccgatgatgtgcttatccagttcgctgacgatttcgcgtggggtcatttcagacatgggagatccttacgctttgtagcttaattcttcgatggtgtggaaatggttggtatagatgcaaatgtcgcctgcaatatccaacgccttttcagcaatttcacgggcgctaagttcagtgttttctaacagcgcgcgcgccgcagcctgggcgtaagggccgccggagccgatagcaataagatcgttttctggctgcaccacgtcaccgttaccggtgatgataagcgatgcagtttcatccgcgactgccagcagtgcttcaagtttgcgcagcatgcgatcggtacgccagtcttttgccagctcaacggcggctttgaccagatggccctgatgcatttccagtttacgttcaaacagttcgaacagcgtaaaagcatccgcagtaccgcccgcaaagcccgcgatgactttgtcgttgtacagacggcggacctttttcacgttgcctttcattacggtattgcccaacgtggcctgaccatcaccagcgatgaccacatggccgttacggcgtacgcttactatagttgtcacgagctgaccccttggttacgaatacagagtacaaaccccgtacaaaagtacggggcataatgcaattatagatgggggggattttgagggtttcaacccccggcggcgagccgaatgcagtttgtatgacccgccatcttcaaccgattgagggtgctgtctgcgttctctttgcctttcaccgggccaatgaccacacgattccagccattgttggtggtgattttcgagtcaaagccttcgaacgccagctgagcacgtaccgtctctgcctgttccgcgcctctgaacgaaccgcactgcaccatccagcggcgttcgtcttttttctccgccgtcggttttggcgcgtcagcggcacgagcaactggcgcagcttgctgcggcttcgactgcgcagtcgtgtgcgcaggagtttgcagcagatcctggtacggctgctgagaagaagccggtttagactggcgcggttgcgcctgtaccggtgcggcttgcgacgtacgcgtctgctgctgccagctttgttcagtcgtacgcgactgctgagccaggcgttgctgttccgctaattgctgcgcctgacgttggcgctgtagcgtttgctgacgctgttccggcgtctgttcattccacggaacttcaaccagctgcgttggctgctggcgcatatcagcctgcatttgttcaagaagctgacgttgttctggtgtcagttgctccggcgttttcacttcaccaccggcagaaggttctgtgggcgcacgcactcccggctggcgactttccagctctttaatgtagcgccagcgttcttctggttttggtggtagtccgtttccggtcactttctggctttgcagcgtctcggactcttctttcttgtgatgcgtaatgaagtacagaccaccgataaaggtcacaagaacggcggcagcaatagcgaccatagcgggagaaaccgcaggcagatttcgttgctttttccgtgaggtgctcttttttcgccgcgaaggtgccggttggctgcggcgtacataatctcgttgtgccactatcgtttcgctgtatttattcgttcgtcagcccgccatgttacttaagcggcgggcctttgaccagtcacggcagtcttaaaggtttactttaaggtaacgcgcgtgttgatccccggatgataagttcgcagtccattaaacgagagccactgccaacgtgttgcccctgcatttgatcaagcaataacagcatagcttcccgaccgatttcgtaacgcggctgcgcgatggttgtcagcggcggatcacaaaattgcgtcaggtcgatgttatcaaaaccgattatggaaaggtcttccgggactttcagcccctggcgttttgcctgagaaagtgcgccgagcgccatcacatcgctatggcagaagacagcagtaggcggttgtggaagatcaagcagctgctgcatcgctttgcttccggcttcgaaggtgaagtcgccacgggcgatgtattgcggatcaaccataatgccgcagcgacgcagcgcctgaacatagccttgcaggcggtagtgacacagcggcatctcttcgggaccggctatacagccaatccgtttatgcccttgctcatataaataatttactgcatcaaatgcggcggtcagattgtcgatatgaactgtaggcagctccagctccggtgcaaattcgttcgccatcaccatcggcggcagattacgctgttcctcaatgctggcatcaaacggcagccttgaacccagcaacaacatgccatcaatttgcttggtgatgatcaaatcgataaaggttttttcctgctgattttgatgcgcacagtcgccaatcagcaccagatatccgtgatttgccgccgtaacttcgataccgcgaataatttcgctaaagaagggatcgcagatatccgggacaatcaccagaatggtgcgggattcattacgcttgacgttgcgccccataggctgcggtaaataacccacttcccgggccgctttttcaacccgattacgggtggcctgggagactttatcgggattcattaatgctcgggagacggtcgctgtagagacttttgccttgagggcaacgtctttcatggtcgcggcagtttcctgcttcttcgctttcacactcactcctcgcctggcacgtcaggcgtactacatccatgtttacttcacatcggcaacatttttagcagatagcgcgtgaaaacggttacagaattttcatgaaaagtgtgatgaatattgaatttttcgatccgcctcgcatcgtgagcggtttaaccctcaatcggatcaacatccagcacccatttcaccttacgggaatccggtattgtattgatgagcgccagcgtaccgttaatgatgtgttgcaagcgcacgcgggaagggtgctgcaacaatatctgccagcgccagcgaccgccacgtttaggtgccagagccggaaccggaccgagaacccacagtttctcgtctgccagtgggctggagaggatcagattacgcagttgttgcaggaacaatggcgcgtgctgattgttatgatcttccgcacgcacaatcacatggctggtccacggcggtagctgcatcattcgccgctcagccagcgcctgttcggcaaaggcgtcgtagcctttatagagcaacgtttgcaacagaggatgttccggatggtgcgtttgcagcaccacttcgccctgtttacccgcacgcccggcacgaccggcgacctgggtgtaaagctgagcgaaacgctctgccgagcgaaaatcggcagaaaacagcgcgccgtccacgtccagtaatgcaaccagcgtcacatccgggaaatggtgacctttcgccagcatttgtgtaccaatcaaaatccgcgcgccgccgcgatgtacttctgccagttgctgttccagcgcccctttgcggctggtggtatcgcggtcgatacgagaaatgggcacgccggggaacaacggcgcgagcgtctgttcaagctgttcggtgcccagccccacggggaccaggtgcgtggaaccgcaggaagggcactggcgcggcaccggacgctgactgtcacagtggtggcagcgcagatggtgctgcgcctgatgcagcgtgtagtagtgatcgcaacgtgggcattcggcaatccagccacagtcgtggcacagcagtgcaggcgcaaagccacggcggttaagaaagagaatgacctggttatcagcctgtaaatgctggcgcatacgagtgattaacgccggagccagacctgcctgcaccttctgaccttttaaatccagcacatgttgaattgccggacgcgcattccctgcccgacgggtcaggcgcagcaggcggtattttttctgctggacgttgcataacgtttccagcgcgggcgttgcggagccaagaataatcgggatttgctcgctgtgcgcacgatacaccgccaggtcgcgggcatgatagcgccagccttcctgctgcttgtaggagctgtcgtgctcttcatcaatgacaatcacgccgagatttttaaacggcgtaaacagcgcggagcgggtgccgatcacaatcgccgcctcaccatttttcgctttcagccacgccgaaagacgctcgctgtcgttcaggccggaatgcagaacttccacgggggcattaaaacgttcacgaaaacgggcgatagtttgcggtgtcaggccgatttccggcaccatcaccagcgcctgtttgccctgagcgagcacgttttccagtacgctgagataaacctccgttttaccggaaccggtaacgcccgccagcagccaggcagaaaaagtatctgccgcgctatgaattgcgccaacggcggtggcctgttcggtattcaatcgcaaccgctcaccagaaacggcatagttcgttcgccagtcgctaaactctggtgtttcacttgctaaatcacacagaccttttttgcgtagcgcctgcaacgcggcatcattaaattcgagcgtggcgacctggtcgcgccagattttgccttgccgtaacgccgccagcgcctgttgttgcttgggggagcgtttcaggctgttcagatccaccgcctggccttgttcagtggcaaaccagtaccacatcggcgcgttcgccgcaggccgcccctggcgtagtaaaatcggcaaggcatgaaacagcacatcgccaatcggatgatgatagtaatctgccgcccatagcagcaatcgccagacggagtgagtaaacaccggctcactatccagcacttcgactaccgcttttagctcattgagcggcagttcgctggcatcgctaactgataccacaatcccgatgcgctcctgctgtttgccaaacggcacgcgcacgcgacacccagctttaaccgtcatgccttctggcagcagatagtcaaaggtacgaggaagcggaacgggcaaggcaacgtgggcaacgggcatagcatcatcctgacttgaaattcggtgggttagtatacacattgccgtagaagagtgcggatcagtttgcatacgctggttaatttctgtatgatttcgcgccttcgtacgaaatgatcgtattgaagctatacttttaacatcgcgtggtgtctggcgttagggctggaagagcgacgcggccttaaaccgaggttttcccatgaaaaaagatattcacccgaaatacgaagaaattactgctagctgctcttgcggtaacgtaatgaaaatccgctccaccgttggtcatgacctgaacctcgacgtgtgcagcaagtgccacccgttcttcactggcaaacagcgtgatgttgctaccggtggccgtgttgaccgcttcaacaagcgtttcaacatcccgggcagcaaataagaccggatttccgaaaaaagcgccgcacggcgctttttttgtgcctgaattttggtcgtattaccacgaaaacagcggccattctttggcgaccgtggtgagttgtggcgcatcgaaaacggcttgtggcgagaccaccgtttcctcaagcggaatattcttgccgtaacgttctttgagctttgcctgaacttgtgggctgctcaggtcgaactctttcaacttctgctgctcgcccacgcgcattcccagcgcgttctggtaaaccttccacaccacttccgaacagtactggcgatcgtcgctccatgagaagctgaaatcatacggtttaccgagataacgttttgccgtttgcgccagtttttgctgttgttcaacactcagtccgccttcaacgcggcgaacaacgtatttgcccttttcaccatgggcgatccactgcttgagcggggtgtatttcaccgggccgactgcttcaaaaacgtagggctttttgttgcgtatcaccagcataccggtgtggctataatcggtatgggtcgccagttggatcgctttactttgcgatgagcgagagatctgaaagatgatgtcgccggtttgtggctgccaggcaaaggcaggtacagaaaccagcaggctgaggatcagcagcctgtttttcatagttaaacgtccatgtataaaaagcggtgggtcgcagacaacgtgctcgttgtttatgccggatgcggcgtgaacgccttatccggcctacaagttcgtgcaaattcaataaattgcaatatgacgtaggcctgataagcgtagcgcatcaggcgattccactccgcgccgctcttttttgctttagtattcccacgtctccgggttaatccccatctcacgcatgatctcttttgccgcttccgggatttcgtcgctgcgctctttacgcagatcggcatcatccggcaaaggttgcccggtaaaggcatgcagaaacgcttcgcacagcagctcgctgttggtagcgtgacgcaggttgttcacctgacgacgcgtgcgttcatcggtgaggatttttaacaccttaagaggaatggaaaccgtaatctttttgacttgttcactcttcttgccgtgctcagcgtatgggctgatatattcgccgctccattcagccatgagatacttaatcctcttcgtcaataaattgagaccagaccacacagttgatgtgggtactgaccgtaaacccgcatagtttaccgtacaggcgttaccgtgacatcgtgtaatgcacctgtcggcgtgataatgcatataattttaacggctatttgggatttgctcaatctatacgcaaagaagtttagatgtccagatgtattgacgtccattaacacaatgtttactctggtgcctgacatttcaccgacaaagcccagggaacttcatcacatgacgcgtaaacaggccaccatcgcagtgcgtagcgggttaaatgacgacgaacagtatggttgcgttgtcccaccgatccatctttccagcacctataactttaccggatttaatgaaccgcgcgcgcatgattactcgcgtcgcggcaacccaacgcgcgatgtggttcagcgtgcgctggcagaactggaaggtggtgctggtgcagtacttactaataccggcatgtccgcgattcacctggtaacgaccgtctttttgaaacctggcgatctgctggttgcgccgcacgactgctacggcggtagctatcgcctgttcgacagtctggcgaaacgcggttgctatcgcgtgttgtttgttgatcaaggcgatgaacaggcattacgggcagcgctggcagaaaaacccaaactggtactggtagaaagcccaagtaatccattgttacgcgtcgtggatattgcgaaaatctgccatctggcaagggaagtcggggcggtgagcgtggtggataacaccttcttaagcccggcattacaaaatccgctggcattaggtgccgatctggtgttgcattcatgcacgaaatatctgaacggtcactcagacgtagtggccggcgtggtgattgctaaagacccggacgttgtcactgaactggcctggtgggcaaacaatattggcgtgacgggcggcgcgtttgacagctatctgctgctacgtgggttgcgaacgctggtgccgcgtatggagctggcgcagcgcaacgcgcaggcgattgtgaaatacctgcaaacccagccgttggtgaaaaaactgtatcacccgtcgttgccggaaaatcaggggcatgaaattgccgcgcgccagcaaaaaggctttggcgcaatgttgagttttgaactggatggcgatgagcagacgctgcgtcgtttcctgggcgggctgtcgttgtttacgctggcggaatcattagggggagtggaaagtttaatctctcacgccgcaaccatgacacatgcaggcatggcaccagaagcgcgtgctgccgccgggatctccgagacgctgctgcgtatctccaccggtattgaagatggcgaagatttaattgccgacctggaaaatggcttccgggctgcaaacaaggggtaaaaatgagtgtgattgcgcaggcaggggcgaaaggtcgtcagctgcataaatttggtggcagtagtctggctgatgtgaagtgttatttgcgtgtcgcgggcattatggcggagtactctcagcctgacgatatgatggtggtttccgccgccggtagcaccactaaccagttgattaactggttgaaactaagccagaccgatcgtctctctgcgcatcaggttcaacaaacgctgcgtcgctatcagtgcgatctgattagcggtctgctacccgctgaagaagccgatagcctcattagcgcttttgtcagcgaccttgagcgcctggcggcgctgctcgacagcggtattaacgacgcagtgtatgcggaagtggtgggccacggggaagtatggtcggcacgtctgatgtctgcggtacttaatcaacaagggctgccagcggcctggcttgatgcccgcgagtttttacgcgctgaacgcgccgcacaaccgcaggttgatgaagggctttcttacccgttgctgcaacagctgctggtgcaacatccgggcaaacgtctggtggtgaccggatttatcagccgcaacaacgccggtgaaacggtgctgctggggcgtaacggttccgactattccgcgacacaaatcggtgcgctggcgggtgtttctcgcgtaaccatctggagcgacgtcgccggggtatacagtgccgacccgcgtaaagtgaaagatgcctgcctgctgccgttgctgcgtctggatgaggccagcgaactggcgcgcctggcggctcccgttcttcacgcccgtactttacagccggtttctggcagcgaaatcgacctgcaactgcgctgtagctacacgccggatcaaggttccacgcgcattgaacgcgtgctggcctccggtactggtgcgcgtattgtcaccagccacgatgatgtctgtttgattgagtttcaggtgcccgccagtcaggatttcaaactggcgcataaagagatcgaccaaatcctgaaacgcgcgcaggtacgcccgctggcggttggcgtacataacgatcgccagttgctgcaattttgctacacctcagaagtggccgacagtgcgctgaaaatcctcgacgaagcgggattacctggcgaactgcgcctgcgtcaggggctggcgctggtggcgatggtcggtgcaggcgtcacccgtaacccgctgcattgccaccgcttctggcagcaactgaaaggccagccggtcgaatttacctggcagtccgatgacggcatcagcctggtggcagtactgcgcaccggcccgaccgaaagcctgattcaggggctgcatcagtccgtcttccgcgcagaaaaacgcatcggcctggtattgttcggtaagggcaatatcggttcccgttggctggaactgttcgcccgtgagcagagcacgctttcggcacgtaccggctttgagtttgtgctggcaggtgtggtggacagccgccgcagcctgttgagctatgacgggctggacgccagccgcgcgttagccttcttcaacgatgaagcggttgagcaggatgaagagtcgttgttcctgtggatgcgcgcccatccgtatgatgatttagtggtgctggacgttaccgccagccagcagcttgctgatcagtatcttgatttcgccagccacggtttccacgttatcagcgccaacaaactggcgggagccagcgacagcaataaatatcgccagatccacgacgccttcgaaaaaaccgggcgtcactggctgtacaatgccaccgtcggtgcgggcttgccgatcaaccacaccgtgcgcgatctgatcgacagcggcgatactattttgtcgatcagcgggatcttctccggcacgctctcctggctgttcctgcaattcgacggtagcgtgccgtttaccgagctggtggatcaggcgtggcagcagggcttaaccgaacctgacccgcgtgacgatctctctggcaaagacgtgatgcgcaagctggtgattctggcgcgtgaagcaggttacaacatcgaaccggatcaggtacgtgtggaatcgctggtgcctgctcattgcgaaggcggcagcatcgaccatttctttgaaaatggcgatgaactgaacgagcagatggtgcaacggctggaagcggcccgcgaaatggggctggtgctgcgctacgtggcgcgtttcgatgccaacggtaaagcgcgtgtaggcgtggaagcggtgcgtgaagatcatccgttggcatcactgctgccgtgcgataacgtctttgccatcgaaagccgctggtatcgcgataaccctctggtgatccgcggacctggcgctgggcgcgacgtcaccgccggggcgattcagtcggatatcaaccggctggcacagttgttgtaatttcagaaatttaataatgcccggtactcatgttttcgggtttatggtttctaatgaaatatattgaattatcataggattaggccggattaagcgtttacgacgaatccggcaagaagcaataagtacatggttagtttatatttgcagtccggtttgctttgcataccggattttctttttcttaccatcctgaagttttttcatcttccctgatttttcctcaccatcattggtcatttttcggttgacgcccttcggcttttccttcatctttacatctggacgtctaaacggatagatgtgcacaacacaacatataactacaagcgattgatgaggtaaggtatgagcttttttcacgccagccagcgggatgccctgaatcagagcctggcagaagtccaggggcagattaacgtttcgttcgagtttttcccgccgcgtaccagtgaaatggagcagaccctgtggaactccatcgatcgccttagcagcctgaaaccgaagtttgtatcggtgacctatggcgcgaactccggcgagcgcgaccgtacgcacagcattattaaaggcattaaagatcgcactggtctggaagcggcaccgcatcttacttgcattgatgcgacgcccgacgagctgcgcaccattgcacgcgactactggaataacggtattcgtcatatcgtggcgctgcgtggcgatctgccgccgggaagtggtaagccagaaatgtatgcttctgacctggtgacgctgttaaaagaagtggcagatttcgatatctccgtggcggcgtatccggaagttcacccggaagcaaaaagcgctcaggcggatttgcttaatctgaaacgcaaagtggatgccggagccaaccgcgcgattactcagttcttcttcgatgtcgaaagctacctgcgttttcgtgaccgctgtgtatcggcgggcattgatgtggaaattattccgggaattttgccggtatctaactttaaacaggcgaagaaatttgccgatatgaccaacgtgcgtattccggcgtggatggcgcaaatgttcgacggtctggatgatgatgccgaaacccgcaaactggttggcgcgaatattgccatggatatggtgaagattttaagccgtgaaggagtgaaagatttccacttctatacgcttaaccgtgctgaaatgagttacgcgatttgccatacgctgggggttcgacctggtttataaatagtgtggcttttgtgaaaatcacacagtgatcacaaattttaaacagagcacaaaatgctgcctcgaaatgagggcgggaaaataaggttatcagccttgttttctccctcattacttgaaggatatgaagctaaaacccttttttataaagcatttgtccgaattcggacataatcaaaaaagcttaattaagatcaatttgatctacatctctttaaccaacaatatgtaagatctcaactatcgcatccgtggattaattcaattataacttctctctaacgctgtgtatcgtaacggtaacactgtagaggggagcacattgatgagcacgtcagacgatatccataacaccacagccactggcaaatgcccgttccatcagggcggtcacgaccagagtgcgggggcgggcacaaccactcgcgactggtggccaaatcaacttcgtgttgacctgttaaaccaacattctaatcgttctaacccactgggtgaggactttgactaccgcaaagaattcagcaaattagattactacggcctgaaaaaagatctgaaagccctgttgacagaatctcaaccgtggtggccagccgactggggcagttacgccggtctgtttattcgtatggcctggcacggcgcggggacttaccgttcaatcgatggacgcggtggcgcgggtcgtggtcagcaacgttttgcaccgctgaactcctggccggataacgtaagcctcgataaagcgcgtcgcctgttgtggccaatcaaacagaaatatggtcagaaaatctcctgggccgacctgtttatcctcgcgggtaacgtggcgctagaaaactccggcttccgtaccttcggttttggtgccggtcgtgaagacgtctgggaaccggatctggatgttaactggggtgatgaaaaagcctggctgactcaccgtcatccggaagcgctggcgaaagcaccgctgggtgcaaccgagatgggtctgatttacgttaacccggaaggcccggatcacagcggcgaaccgctttctgcggcagcagctatccgcgcgaccttcggcaacatgggcatgaacgacgaagaaaccgtggcgctgattgcgggtggtcatacgctgggtaaaacccacggtgccggtccgacatcaaatgtaggtcctgatccagaagctgcaccgattgaagaacaaggtttaggttgggcgagcacttacggcagcggcgttggcgcagatgccattacctctggtctggaagtagtctggacccagacgccgacccagtggagcaactatttcttcgagaacctgttcaagtatgagtgggtacagacccgcagcccggctggcgcaatccagttcgaagcggtagacgcaccggaaattatcccggatccgtttgatccgtcgaagaaacgtaaaccgacaatgctggtgaccgacctgacgctgcgttttgatcctgagttcgagaagatctctcgtcgtttcctcaacgatccgcaggcgttcaacgaagcctttgcccgtgcctggttcaaactgacgcacagggatatggggccgaaatctcgctacatcgggccggaagtgccgaaagaagatctgatctggcaagatccgctgccgcagccgatctacaacccgaccgagcaggacattatcgatctgaaattcgcgattgcggattctggtctgtctgttagtgagctggtatcggtggcctgggcatctgcttctaccttccgtggtggcgacaaacgcggtggtgccaacggtgcgcgtctggcattaatgccgcagcgcgactgggatgtgaacgccgcagccgttcgtgctctgcctgttctggagaaaatccagaaagagtctggtaaagcctcgctggcggatatcatagtgctggctggtgtggttggtgttgagaaagccgcaagcgccgcaggtttgagcattcatgtaccgtttgcgccgggtcgcgttgatgcgcgtcaggatcagactgacattgagatgtttgagctgctggagccaattgctgacggtttccgtaactatcgcgctcgtctggacgtttccaccaccgagtcactgctgatcgacaaagcacagcaactgacgctgaccgcgccggaaatgactgcgctggtgggcggcatgcgtgtactgggtgccaacttcgatggcagcaaaaacggcgtcttcactgaccgcgttggcgtattgagcaatgacttcttcgtgaacttgctggatatgcgttacgagtggaaagcgaccgacgaatcgaaagagctgttcgaaggccgtgaccgtgaaaccggcgaagtgaaatttacggccagccgtgcggatctggtgtttggttctaactccgtcctgcgtgcggtggcggaagtttacgccagtagcgatgcccacgagaagtttgttaaagacttcgtggcggcatgggtgaaagtgatgaacctcgaccgtttcgacctgctgtaatctgaccccgttcagcggctgcttgctggcagtcgctgaacgttctttaccagcgtatagtgggcgaacgaaaactacacactggatctctcatgtctgccgcaggaaagagcaacccactggcaatcagtggcctggttgtgctcacacttatctggagttatagctggattttcatgaagcaagtcaccagttacatcggtgccttcgactttaccgccttacgctgcattttcggcgctctcgttttattcatcgtccttttattacgtggtcgcggaatgcgcccgacaccgtttaaatacaccttagccattgccctgttacaaacctgcgggatggttggtctggcgcagtgggcgttggtcagcggaggtgcggggaaggtggcgatcctgagctataccatgccgttctgggtggtgattttcgccgcgttgtttctcggtgaacgcctgcgacgtgggcaatatttcgcgattctgattgccgctttcggcttatttttggtgttgcagccgtggcaactcgatttctcttcgatgaaaagtgccatgctggcaatcctctccggcgtcagttggggggcgagcgcgattgttgctaaacgtctgtatgcccgtcatccgcgcgtggatttattgtcgttaacatcctggcagatgctgtatgcggcgctggtgatgagtgtggtcgctttactggtgccgcaacgtgaaattgactggcagcccaccgtgttctgggcgctggcctacagtgcgattctggcgacggcactggcgtggagcttatggttgtttgtattgaaaaacttgcctgccagtattgccagcttaagcacactggccgttcccgtttgcggcgtactcttttcctggtggctgctcggcgagaatccgggggccgttgaaggtagcggtattgtgctgattgtgctggcactggcgctggtgagccgtaagaaaaaagaagccgtcagtgtaaaaaggatctgaattttttcttcatgtggggcgatctcttatttaacaaaataacgataatgccccaccatccgccagttaaacagcacatcttcttcctgcgcgcctgcgccaatgttatgtatcaccagcggcgtaccgtcgcgggcgaagccatctgaaaccaccccaatatgtgccagcccgttatccagtcgccaggagacaatatcgcccgcttgatagtcactggggttcttgctggtggggcgtgttttatcatggcggctaaaccaggtttccagattaggcacccgacggtgatcgatgttgctgtccgggcgctttaacttccatttttgcgggtactcagcaaaattcttcgccatatcttcgtgaaccagtttctgcaaatcgaccttctggctgcgcaatgcgcggatcaccacatcggaacatacaccgcgttcttgcggaacatcaccgccaggataagtaagctgcacatacgccggatcgtaaaatagcgtgctgccaatttgctgtctggcaccgtctgcgatggcaaggttggtattggcctggatttgtaccacggttggtggaacggcgggagattttaaggagtggctggtaaatgccgttagcaggctgagcagcgccagtgaagctttcatctggttcgtccgtgaaaataagagtcacagattcgaccttccgggctaacgattgttctgtagagaaaatgtccagaagcggataaaaaattcctgaacaacgtgggagtttcagattactggcacagagtgccggatgcggagtgaacgccttatccggcctacaaaagcacgcaaattcaatatattgcagagattgcgtaggcctgataagcgtagcgcatcaggcaattttgcgttcaaactcccggacaagccgggagtttggagtaggttattcccactcttgcaggaaacgctgaccgtactggtcggctaccagcagagcggcgtaaacctgatctggcgtcgcgccgccaggcatgttgtgaatggtttcaccttctgcacatgccgcttctgccacaattcgcattttcgccgggacatcttctttaatatccagttgagcgagagttattggcaaacctaccgcatggctaagggcagctacggtttcgatttcctccaccggcgcattttccagaaccagctgcgtcagcgtaccgaatgccactttttcaccgtgataatagtgatgcgcgtccgggatagcggtcaggccgttatgcactgcgtgcgccgcagccagaccaccactttcaaaaccaacaccgctcaaataggtgttcgcttcaatcacgcgctccagcgccggagtcactacatgctgttcggcagcaagcatcgctttttcgccttcttccagcagggtgttgtagcacagttcagccagtgccagcgcagcctgggtgcacttgccgcccgccatggtggtcgcgccgctacgagagcaggcacgcgcttcaaaccaggttgccagcgcatcgccgatacccgccgctaacagacgtgcaggtgcgccagcgacgattttggtgtcgacaatgaccatattcgggttatttggcaacagcagatagcggtcaaactcaccctcatcggtgtagataacagacaatgcgctgcacggtgcatcggtagaggcgatagtcggtgcgatcgctaccggaacacccatgaaatgtgccagtgctttggcagtatcgagggtttttccgccaccgataccgagaattgcgccacactgcgcagtctccgcgatgccacgcagacggtcgatctcattttgcgaacattcaccgccaaacggcgcaatttctactaccagtccagcatctttaaagcttttctcgacagtggattgagcaaaacctaaaacaaatttgtcacccaccactaaccagcgttctgccagcggcttcaggtattcgcccagacgattaatcacatcagcgccctggatgtatttacccggtgattgaataatgcggtccataattgctcctttagagatgagtagtgccaaatgcggcattccagtcgtgttcgaacttctctatagctgactctaccgcaggggtgttgagcatttgttgcgctacatctaagggcagggtgatggattcacatcctgccagtaaacagtccagcgcctgacgcggcgttttaaagctggctgccagcaccatgctttctggcgcgtgcatttctaacagcgtttgcagctcctgaaccgtacgaatgccgtctccgccctgggcatctacgcggttaacatacggagcaacgtattttgcccctgccagtgcggctaataacccttgtgcggcgctatatacagcagtgccaagtgtagtaataccctcttttttcagtattttaattgctgccagaccttcggaagtcaccgggattttcaccacaatacccggaatagcgtcgcgcaggcgcttcgcttcttccaccatcccctgcgcgtcgcggctcatggtctgagcaaacagaatgccctcatcaccaatcgctttttgcagacgcggcagcacttcccatatggactccttgctggcagcgataatgctcgggttagttgtcaccccggcaatggggaatatgcgtgccagacgttcgacttctgcgacgttagcggtgtccagatacagttccatgatgtttccttttacagttccagttcatgttgcagcaggctggcgatagcgtcggcagaggcggcgttaaccagcgcgttacggaattcttcgtgcatgatgcggcgagcgaggcgcgagaaaatgcgcatatgctgatcgcccgcagcgtgtttgttcagggttaacataatgatgaattgcgcttcatcatcgccccagcgcaccggcgcttgcagacgcgccacgctgatggtggattgctcaatgtgttctgatttgctgtgtggaatggcaaaactaaagcccagaccggtagagaaaacggcctcgcgcgcccacaagtcggcttccagtttacgcggatagcggcagcggcccgccagcagcaggttatcggtcatgcctttgagcacttcttctttgctgcgccagtcgctttccagtgtgatgcactcggcggtgaccagcggtgcgtcttgttgggtcatgcggaattgcgccagcaggtgttctacttccagcgaagtacggcaggccattgcctggttgagcaacttgcggcactcacggctatcaagttgcgccatccgagctttcgccgccggaattgatggtgcgctcatgctgagttcatccagccctaagccgaccagcaacggcagcacggaacctttcgctcccagctcaccgcacagaccaatccatttgccctggcgatgcaccgcttgcacggcgtaatcgagcgcccgcaagaatgccggattcaggctgttgtagtgacgagtaaccttagcgttatcgcgatccaccgccagcagatactgcgtcaggtcattactaccaatactaaagaaatcaatctcttcgcagcattgatcgatgatgaacatcaccgacggcacttccagcatgatgccgagctggattttctcatcaaacggaatgtgttcgttacgtagttgctgtttggcttccgccagtttttctttcacccataagatctcttccattgaggagatcatcgggatcatgattttcaggctgccgtgagcggaggcgcggaggatcgaccgtagctgcgtggtaaacaacgacgcgtactcttcataaatacgcacggcgcgataaccgaggaacgggtttgcctctgcgggaatgttcagataatcaacgggtttgtcgccgccaatgtccatagtgcgcacaataatgctgcgtccgttggcggattccagcgcctgacaaaaaatgttgtacaactcgctttcgcccggtgcgctggtgcgatccatatagagcatttcagtgcggaacaaaccaacgccttccgcaccattgccgaatgcggcctgcgcttccacggagtgagcgatgttagcggcaatttcaatgcggataccgtcagcggtacgggcttgttgggtcagccagacacgctgttgctcacgcagggcgtcctgtacgcgggcttcttgctgataataacgagctacggcttcccctggctcaaccacaatcgccccggcgttgccgtcgatataaatcgtttgttgctgccacggagtaagggcatcaatatccacaccaaccagcgttggaatgttgaacgaacgggcaaggatcaccgtatgtgaggtggtgccgccgcttttgagcaacaatcctttgaggtgatttttatccagttcgaggaactggctgggggtcagttcatcagccatacaaatggcgggctgcgtcagtttgcccggtgccgggaagcgttgctcaccgtagatttgctggagtaactggaagcagacgtcgcgtacgtccagggcacgttcttgcaggtagctgctgctggaacgggaaaactcttcgcaaaagtgattcgcgctggcaacaattgcttcggcgcagcttaatccggcgctgacgcctgccagtaaatgttcgcgcagggaagtatcgccagccagggatcggtgagcttccagaatcgcgctggtagcaccgtcgctatccagcagacgaaactcaatgtttttcagtaccagcgtcaggccgttttccagtgcggattgctcggcgtcaacgcctttggctgcgggaagattacccagcgcattgagatctaaagaagagatcggcgtcagaatgccgcctgcactaccgctgcacacggtgcgggcgcggataatttgcggattcagattggtcagtgaaaccggcagtggttccagttcgtcagatttaacttccgccagcggcgcatcgcagtgggggaattcatcgcgcagccattggcttaaacgctggtgcgcttcctgttcgtcggccccggaaatcagtaactggcagttatcgcccgccagcgtatcggtgccaatcagcgcaagggcgcttttggcgttgccttgcggtcagtgcgcaggttatgccactcaatttgtgatgaaaaagtattacacagcgtttcaacgtggcttgccggacgcgcatgtacgccgttaggtagctcacaaataaattccacaatcagggccattgcctctctcccggtacggttttctgtttacaggataagagcgcacggcaacggcctgccatgtgacaaatctgccaaaagctggacaaatgtaatgtaaccgtcaatttgcgacgcgtctcacaagacgctgttttgcggcatgcttccggtttatcgcaagttatgaggcggatcgcatttttgtactgatattacaaaagtccagtaaatggcctttttatccactgtttgctccgcctgcgattgcctattgtttcctccatcaaaaatatggacatgggctttcgcaagcccgggagcagcttatgaatgagttggtgcagatcctgaaaaatacccgtcagcatttaatgacgggcgtttcacacatgattcccttcgtggtatcgggcggtattttgctggcggtttccgtcatgttgtatggcaaaggcgcagtgccggatgccgtagccgatccaaatctgaaaaaactgtttgatatcggcgttgcgggcttgacgctgatggtgcctttcctcgcagcgtacatcggttattccattgcagagcgttctgcgctggctccgtgcgctatcggtgcctgggttggtaacagctttggtgcgggcttctttggtgcactgatcgccgggattatcggcggcatcgtggtgcattacctgaagaaaattccggtgcataaagttctgcgctcggtgatgcctatcttcattattcctatcgtcggcacactgattaccgcaggcatcatgatgtggggcttgggcgagcctgtaggggcgttgaccaacagcctgactcagtggcttcaggggatgcagcagggcagcattgttatgctggcggtgatcatgggtctgatgctggcgttcgatatgggcggtccggttaacaaagtggcctatgccttcatgctgatttgcgttgctcagggtgtttataccgtggtggccatcgctgccgtgggtatttgtatcccgccgctggggatggggctggcgacgctgattggtcgtaaaaatttctccgcagaagagcgcgaaaccggcaaagcggcactggtgatgggctgtgttggcgttactgaaggggcgattcctttcgccgctgccgatccgctgcgtgtcattccttccatcatggtcggttcagtttgtggtgcagtaactgcggcgctggtcggtgcgcagtgctatgcaggctggggtggtctgattgtgctgccggtggttgaaggcaagctgggttatatcgcagcagtggctgtcggagcagtggtgacggctgtttgtgtgaacgtgctgaaaagtctggcgcgtaaaaatgggtcttcgactgatgaaaaagaagacgacctggatttggattttgaaattaattaattgaggaacgagccatgacgaaaattattgcagtaaccgcatgtccttcaggtgttgcccatacctatatggcagcagaggcgctggaaagtgccgcgaaagcgaaaggctgggaagtgaaagtagaaacccaggggtcaattggtctggaaaatgaactgactgcggaagatgtggcgagcgctgatatggtgattctgaccaaagatatcggcatcaagtttgaagagcgttttgctggcaagaccatcgtgcgcgtcaacatcagcgatgcagtaaaacgtgctgacgccattatgagcaaaattgaagctcacctggcgcaaaccgcttaagttcttctcccgctcgcaagggcgggttcgctttcccacaggagttcctcatgacgaatcgtatctctcgcctcaaaactgcactgtttgccaatacccgtgaaatctcgctggagcgggcgctgctttataccgccagccatcggcaaaccgaaggcgaaccggtgatattgcgccgggcgaaagcaacagcgtatatccttgaacatgttgaaatttcgattcgtgatgaagaactgattgccggtaaccgcaccgtaaaaccgcgcgccgggattatgtcgccggaaatggacccttactggctgctgaaagagctggatcaattcccgacgcgtccgcaggaccgctttgctatcagcgaagaagataaacgtatctaccgtgaagagttgttcccgtactgggaaaaacgttcgatgaaagatttcatcaacgggcagatgacagatgaagtaaaagccgcgaccaacacgcagattttcagcatcaaccagacggataaaggccaggggcacattattattgattacccacgcctgttgaatcacgggctgggtgagctggtggcacagatgcagcaacattgtcagcaacagccggagaatcacttttatcaggccgcgttgttactgctggaagcctcgcagaaacacattttgcgttacgccgaactggcggaaacgatggcggcaaactgcacagatgcccagcgtcgcgaagagctgctgactattgcagagatctcccgccataacgcgcaacataagccgcagacgttctggcaggcgtgccagttattctggtacatgaacatcattctgcaatacgaatccaacgccagttcgctatcgttggggcgcttcgaccagtatatgttgccgttctatcagacatcattaacccagggcgaagatgcggcgttcctgaaagaactgctcgaatctttatgggtgaaatgcaacgacatcgtgctgttgcgctccaccagtagcgcgcgttatttcgccggtttcccgaccggctataccgcactgctcggcgggttaaccgagaacggacgtagcgcggtgaacgtgctttcgttcctttgccttgacgcctatcaaagcgtgcaattaccgcaaccgaacctcggcgtgcgcactaacgccttgatcgacacgccgttcctgatgaaaaccgccgaaaccattcgcttcggtaccggtattccgcaaatctttaacgatgaagtggtggtgccagcgttcctcaaccgtggcgtttcgctggaagatgcgcgcgactattccgtagtgggctgtgtggaattatctattcccggcagaacctacggcttgcatgacatcgcgatgtttaatctgctgaaagtgatggaaatctgcctgcatgaaaatgaaggcaatgctgcgctgacttatgaaggtttactggagcagatccgcgccaagatcagccactacatcaccctgatggttgagggcagcaatatttgtgatatcggccatcgcgactgggcacctgtaccgctgctctcatcgtttatcagcgattgtctggaaaaaggccgcgatattaccgatggcggcgcgcgttataacttctccggcgtacaggggatcggtatcgccaacctgagcgattctctccatgcgttgaaagggatggtttttgagcaacagcgtttaagttttgacgaattgctgtcggtattaaaagccaacttcgcaacgccagaaggcgaaaaagtccgcgctcgcttaattaaccgcttcgagaaatacggtaacgatatcgacgaggtggataacatcagcgccgaactgttgcgccactactgcaaagaagtggaaaaataccagaacccgcgcggcggctacttcacgccgggatcgtataccgtttctgctcacgtcccgttgggatcggtggttggcgcgacgccagacggtcgttttgccggagaacagctggcagacggcggcttgtcacccatgctgggccaggacgcacaagggccaacagcggtactgaagtcagtcagtaagctcgataacacgctgctgtctaacggtacgttgctgaacgtgaaattcactccggcgaccctggaaggtgaagcaggattacgcaaactggccgacttcttacgggcgtttacccagcttaagttacaacatattcagtttaacgtggtgaacgccgacacgttgcgggaagcgcaacagcgcccacaagattatgccgggctggtggtgcgcgttgccggatacagcgccttctttgtcgaactgtcgaaggagatccaggatgacatcatccgccggacagcgcatcagctgtaacgttgtggaaacgcgccgcgatgatgtggcgcgcattttcaacattcagcgttattcactgaatgacggcgagggcattcgtacggtggtcttttttaaaggctgtccgcatctttgcccgtggtgtgctaatccggagtcgatctccggcaaaatccagacggtacgcagagaggcgaaatgtctgcactgtgcgaaatgtttgcgtgatgcggatgaatgcccctccggggcgtttgaacggattggtcgcgatatcagccttgacgctctggaacgggaagtgatgaaagatgacattttctttcgcacgtccggcggcggcgtcacgctttctggcggcgaagtgttaatgcaggcggagtttgctacccgttttttacagcgactgcggctgtggggtgtgtcatgcgccattgaaactgccggagacgcaccagccagcaagctattaccgctggcgaaattgtgcgatgaagtgttgttcgatttaaaaattatggacgcgactcaggcgcgggatgtggtgaagatgaacctgccacgcgtgctggagaatctgcgtttgctggtgagtgagggcgtcaacgtgatcccgcgtttaccgctgatccctggtttcacgctcagccgggagaatatgcagcaggcgctggatgtactgatcccgctgaatatcaggcagatccatctgttaccgtttcatcagtacggcgaaccgaaataccgcctgctggggaaaacatggtcgatgaaagaggtgcctgcgccgtcgtcagctgatgtggcaacgatgcgcgaaatggcagaacgggccggacttcaggttaccgtgggaggttaaaatggcatacctggtggcagtaaccgcctgcgtaagcggcgtggcgcatacttatatggcggcggaacggctggaaaagttgtgcctgttagagaagtggggagtcagcattgaaactcagggcgcgctgggaacggagaatcgtttagcggatgaggatatccgccgggcggatgttgctctgttgattacggatatcgagcttgccggtgccgagcgatttgaacattgccgctatgtgcaatgcagcatctacgcattcctgcgtgagccgcagcgggtaatgagcgcggtgcgcaaagtgctttctgcgccgcagcaaacccatcttattctggagtagtcggtttttctgtcagttggctgtggtactgccggcgatattccgacggcgagcgttcggtgtttttacgaaacagacggcagaagtagttgctgtcgacaaagccgcaggcgtgcgccacttcttttaccttcaggtcatagcctttcaataacgtcttagcgtgctccagtcgcgtgtgattcaggtattcgttaaaaccaatggcccccgttttttgaaacaggtgcgagaggtaatttggcgaaatataaaacgcctgtgcaacagattcgcgggtaagcgcggaggcatagcgttcgtcgatataatcgcgaatagcttcaaatagtgcctggctgcgtgaggcggtctggatttggctgccaagcaaatcgcggcagtggctaagcaggctggcgacgataagccttgccgtttgctgctcctgcggctgcatttgcatttcattgagcgtttgtagcagaaaagaacctatgcgtgggccgcgtcgggcgacgtgttgcttcgccagattttgatattgtttgccatcccattgcacgacgctgaagccgagttgctgtttgccaaacagcacgctaaaggtagtagcgggggcttgccattgtggaaaattccagccaccagcaggaacgtacagcacatcgccgggaactaacgttgctccagcgccggtatcaacaaactcaccttccagcacaatttccagccgtggaaaatcgacctgatacgcaagatcgggcaccgggccgttactgctggcaaagtaaatctggcgcagggacagcgggccgttgatcaggcgggagagcagatagctgacgtcgtgatacatgttattcccttaggtatgtagacgggaaaacagtaactggcattattaaaaaaggccacctgaaaagtgtggcctgaggggagttcgatgtaaacattgcggcagttgtattgccggatgtggcgtaaacgccttatccagcctaccgccgcgatctgtaggccggataagacgcgtcaagcgtcgcatccggcaaatagcgcctggctgataattactgattacccacctgatcgccatagggcagtgtgtcgtaatcgatcagtgcgtttttcttatacgggttaccaatccagcgggtagtttctttgaactgcggattcaccactgaacgggttggatcgtaaccgtcgtaagataagcccgccaaatctgaccaggtgtggatcagttccgccaggctgtatttacgatcaacatcctgcgagaaatcacggggatgagtcgcttgccatttttctgacgtccacagcaggaacggaatggtgtacatatgacgcgtcgggttgtcctcattacgcccctgagttttgtgcggcggcgtgtcgtaaacctcttcaccgtggtcagagaaataaaccaggaaaccgttcgggtttgctgctttaaagtctttaatcaggctggcaaccacatgatcgttatacaggttagcgttgtcataatcgttatatgactccagctcttccgcgtttaatcccggcggaacatgatcggtattgccatcaaacttgccctgattttccgggtagcggtatttgtatttgatatgcgtacccagcagatgaacaatgatcagtttcttcggcgcagggtcattcagcacttcctggaacggcttcagcacgttggtgtcgtattcacgcgcactctgcgtacgttgctggttcatgtagtactgcttgtcggtctggcgcgaaaataccgtcagcatggtattgcgggcggtcatcgtctgctggttggtgatccagaaggttttataacccgcctgtttcatcatgttcatcagcgacggctgcgtcagatacagatccgggttcttttcattggcaaaggtcagcgcctgttgcaggatttcaatggtgtacggacgagacgtaactacgttattaaacacggtcagattcggatcggttttatgcagcgcatccagctccggcgtggtttcacgcggataaccgtacagactcatgcgtccgcgctgggtcgactcgccaatcaccagcactaaagtgcgcggttcgttacccgattcatctttgaaattagccagtggcggcaaggcattattttcattcagtaactttgttagcgagtttagttgctgacgatactgataatagccggtcaggaattgccacggtgcggcaggctccatacgcgaggccaggttatccaacgttttctcaaacggcttgtttttgataaacgtattcatggcgatcggatgcagaatcaagccataaagcagggcaaaagagacaacataacgccacggctttggaatatagaccgggcgcaggcgtgtccacagcagaactgccaccgccgtataggccagcgcgataagcacaattttcaggctgaaatactggcttaaatactcgctggcttcgttggtgttggtttcgaacatcacaaacagaacgctctgcgagaactcctgaccgtagatgacgtagtagcacagcgccgccagagaggccgcccatagcaccacgccgattactgcggcaataattttaatccgcttcggaaagaggaataccgggatcaaccacagcgaactgaataacagcgagtcgcgaatgccgttagtgccactataaccactgatgtaaataatggcctgtagcagagtagagaaaaaccaaaagtagagcagtgcccaacccagggctttccagctaaaaagaggtttagcctggacttctgtggaatgcatagtaagaacctgtcttgaaaaaatatcgccgaatgtaacgacaattccttaaggatatctgaaggtatattcagaatttgaataaaatgcagacagaaatatattgaaaacgagggtgttagaacagaagtatttcagaaaaccctcgcgcaaaagcacgagggtttgcagaagaggaagattagccggtattacgcatacctgccgcaatcccggcaatagtgaccattaacgcttgttcgacgcgaggatccggttcctggccttctttttctgcctggcgggagcggtgcagcaactcggcctgcaatacgttcagcgggtcggtgtaaatattccgtagctgaatagactctgcaatccacggcagatcggccatcagatgggaatcgttggcaatcgccagcaccactttgatgtcttcttcttgcaggttgcgtaactctttacctaacggccacagtgctttgtctaccaggcgttggtcatagtattccgccagccacaggtctgctttggcgaagaccatctccagcatgccgagacgcgtcgagaagaatggccaatcgcggcacatagcctccagctcgctctgtttgccgtcttcgaccactttttgcagcgccgtacctgcacccagccaggcggggagcatcagacggttttgcgtccaggcgaagatccacggaatggcgcgtagtgactcgacgccgccggttgggcgacgtttcgccggacgtgaacccaacggcagtttgcccagttcttgttccggcgtagcggagcggaagtaaggcacaaaatctttgttttcacgtacgtagccgcggtagacatcgcaggagatgactgacagttcatccataatgcgacgccagctctctttcggctccggcggtggcagcaggttggcttccagaatcgccccggtataaagcgacaggctgctgacggtgatttctggcagaccatatttaaagcggatcatctcgccctgttcggttacgcgcaggccgcctttcaggcttcctggcggttgtgacagcagcgccgcatgagcaggtgcgccgccgcgaccaatggaaccgccgcgaccgtggaacaacgtcagctcaatacccgctttttcgcaggttttgattaatgcatcctgtgcctgatattgcgcccaggaagctgccatcactcccgcatcttttgctgagtcggaatagccaatcatcaccatctgtttgccctgaatcaggccacgataccagtcaatattgagcagctgggtcatgacatcgttggcgttgttcagatcatcgagggtttcaaacagcggagcaaccggcatcgcaaacccgatacccgcttctttcagcagcaggtggacagccagtacgtcggacggcgttttcgccatcgagatcacgtaggcggcaatggagccttgcggtgcttcggcaatcacctggcaggtatcgagcacttcgcgcgtttcggcgcttggttgccagttgcgcggcagaagcggacgtttggagttcagttcgcggatcaggaacgcctgtttgtcggcctctgaccagctttcgtagtcgccgataccgaggtagcgggtcagctcgcccagcgcttcggtatgacgcgtgctctcctgacggatatcaatacggaccagcggtacgccgaaacatttcacgcggcgcagggtgtcgagcagatcgccgttggcgataatacccatgccacacgcctgaagtgactggtagcaagcgtagagcggttcccacagttcttcgttttgtgtcagcaggccttctggttttggcagttcttcgcctttcaggcgcgcttccagccatgcctgtgtcgccatcaggcgagaacgcaggtttttcatcagatagcgatacggttctgcggcaccttcttcgccaaccagcgccagcagttcaggggtcgcttcaaccatcgacagttcagaaaccagcacctgaatatctttcaggaacaaatcggtggctttccagcggctgagtagcaggacgtggcgggtgatatcggcagtgacgttcgggttgccgtcgcggtcgccgcccatccacgaagtaaaacggaccggaacaaattcgacgggcagtttgtagccgaggttctcttccagttgttcgttcagttcgcgcaggtaatttggtacgccttgccacaggctgttttccactacggcaaagccccatttggcttcatctaccgggcttggacgcagcttacggatttcatcggtatgccatgactgggcgatcaactggcgcaggcgacgcatcagctggttgtgttcgtagtcagcgatatctttgttatcgagctgttttaaacaggcgttcacttccaccattttgtggatcagtgtacgacgggtaatttcggttgggtgagccgtgaggaccagttccagcgacagcgattccactgcttttttgatggtgtcttcgctcagttccggctggtttttcagtttacgcagggtgcgggcgatcacttccgggttgctggcagcttcgcctttcggcgaaatgctgtggtattgctcggcggtgttggccaggttcaggaactgactaaacgcacgcgcaacgggcagcagctcgtcgttcgacaaattttgtaaggtggtgagcaactcctggcggttagcatcattgccagcgcgtgaagatttcgacaacttacggatagtttctacgcgttcaagaatgtgttctcccaacgcatccttgatggtttctcccagcactttgccgagcatactgacattactacgcaatgcggaatattgttcgttcatattaccccagacaccccatcttatcgtttgatagccctgtatccttcacgtcgcattggcgcgaatatgctcgggctttgcttttcgtcgtcttttataaagccacgtaaaagcggtgacgtcaaatgctgcgaaatcgcttcagcaaacgaataaatagcaggaatttacgtcattaaattcacgacgctttaaataagcgtaacttatggaaatgttaaaaaatcgccccaagtaacaccaaaggtgtaggtcggataagatgcgcaagtatcgcatccgacattattgcggcactggagtttggcaacagtgccggatgcggcgcgagcgccttatccggcctacagttgggcatcgtttgagtcactgtcggtcggataagatgcgcaagtatcgcatccgacattattgcggcactggagtttggcaacagtgccggatgcggcgcgagcgccttatccggcctacggttgggcatcgtttgagtcactgtaggtcggataagatgcgcaagcatcgcatccgacattattgcggcactggagtttggcaacagcgccggatgcggcgcgagcgccttatccggcctacgttttaatgccagcaaaaatggtgaattacctgggttatcagttcgcgggtgggcttgataaaccgtgtttccagatattcatcaggttgatgagcctgattaattgagccaggccccaacaccagcgtcgggcataacgtttgaataaacggcgcttcggtacagtagttcaccacttcggtttttgctccgagcaatttctcaaccacttcaaccagttgatgattcggtgggcattcatagccagggatcggcggatgcagctcgtcgaccgtcagacgacccggccagcgttcgctcaccggagccaatgcatcgttgagcaaaccattaagttcattgagtgtcatgccaggcagcggacgaatatccatatgcaactcacagcaagcgcaaatacggttagaagcgtcgccaccgtgaatatgcccgaggttgagcgtagggtatggcacggtaaacgcttcgtagtgataacgttctttcaggttatcgcgcaattgcaaaatatgcccgatggcgtcgtgcattagttcgatagcgttaactccgcgtgctggatcgctggagtgccccgactggccctgaatacggatggcgttagagatatgacctttatgtgcgcgtaccggttgtagtgacgtcggttcgccaatgatggcgcaatccgggcgcagggcggtagtttcggcaaaataacgcgctccggccatactggtttcttcatcagcagtcgccagaatgtagagcggttttttcagtttcgtgacgtcgacatcgcgtagcgcatcaaggataaacgcaaaaaagcctttcatgtcggcggtgcctaagccgtaaagcttgccgtcatgctccgtcagtgtaaacggatcgcgcgtccagcgaccgtcatcaaatggcaccgtatcggtatgccccgccagcaacaagccgccagccccctgtccgatacttgccagcatattgaatttgttgcgagttcctggaacaggctgcacttccacattgaagcccaaatctttaaaccagtccgccagcagagtgattaaatctgcattgctttgatcgagtgcctcttccgtggcgcttattgaaggtgtggcaatcagagcgcggtaaatctcgataaatggcggtaatttgtttttcattgttgacacacctctggtcatgatagtatcaatattcatgcagtatttatgaataaaaatacactaacgttgagcgtaataaaacccaccagccgtaaggtgaatgttttacgtttaacctggcaaccagacataagaaggtgaatagccccgatgttgaatacgctgattgtgggtgccagcggctacgctggcgcagagctagtgacctatgtaaatcgccatccgcatatgaacataaccgctttgactgtttcagcgcaaagcaatgatgcgggaaagttaatctccgatttgcatccgcagctaaaaggcatcgttgatctgccgttgcagccgatgtcggatatcagcgagtttagcccaggggtggacgtagtgtttctcgccaccgcccatgaagttagccacgatttagcgccgcagtttcttgaagcgggctgcgtggtgttcgacctttccggcgcgtttcgtgttaacgacgccaccttctatgaaaaatattacggctttacccatcaatacccggaactgttggaacaggcagcctacggtctggcggagtggtgcggtaataaattaaaagaagcgaatttgattgcggtgccgggctgttatccgacggcggcacagctggcgctgaaaccgttgattgatgccgatcttcttgacctcaatcagtggccggtgatcaacgccaccagcggcgtgagcggtgcagggcgtaaagcggccatttcaaacagcttttgtgaagttagcctgcaaccgtatggcgtctttactcatcgccatcaaccagagatcgccacacacctcggtgctgacgttatcttcaccccacatctgggcaatttcccgcgcggcattctcgaaaccattacctgccgcctgaaatcgggtgtgacccaggcgcaagtcgcgcaagtgttacagcaggcgtatgcccataaaccgctggtgcggctgtatgacaaaggcgttccggcgctgaaaaatgtcgttgggctgccattttgcgatatcgggtttgccgttcagggcgagcatctgattattgtggcgaccgaagacaacttactgaaaggcgcggcggcacaagcggtacagtgcgccaatattcgtttcggctatgcggaaacgcagtctcttatttaagggtgcaatgatgaatccattaattatcaaactgggcggcgtactgctggatagtgaagaggcgctggaacgtctgtttagcgcactggtgaattatcgtgagtcacatcagcgtccgctggtgattgtgcacggcggcggttgcgtggtggatgagctgatgaaagggctgaatctgccggtgaaaaagaaaaacggcctgcgggtgacgcctgctgatcagatagacattatcaccggagcactggcgggaacggcaaataaaaccctgttggcatgggcgaagaaacatcagattgcggccgtaggtttgtttctcggtgacggcgacagcgtcaaagtgacccagcttgatgaagagttaggtcatgttggactggcgcagccaggttcgcctaagcttatcaactccttgctggagaacggttatctgccggtggtcagctccattggcgtaacagacgaagggcaactgatgaacgtcaatgccgaccaggcggcaacggcgctggcggcaacgctgggcgcggatctgattttgctctccgacgtcagcggcattctcgacggcaaagggcaacgcattgccgaaatgaccgccgcgaaagcagaacaactgattgagcagggcattattactgacggcatgatagtgaaagtgaacgcggcgctggatgcggcccgcacgctgggccgtccggtagatatcgcctcctggcgtcatgcggagcagcttccggcactgtttaacggtatgccgatgggtacgcggattttagcttaagttttgttggccggaggcgcagctttccggcattgaatttcaaaataaggaaacagagttatggcactttggggcgggcgttttacccaggcagcagatcaacggttcaaacaattcaacgactcactgcgctttgattaccgtctggcggagcaggatattgttggctctgtggcctggtccaaagccctggtcacggtaggcgtgttaaccgcagaagagcaggcgcaactggaagaggcgctgaacgtgttgctggaagatgttcgcgccaggccacaacaaatccttgaaagcgacgccgaagatatccatagctgggtggaaggcaaactgatcgacaaagtgggccagttaggcaaaaagctgcataccgggcgtagccgtaatgatcaggtagcgactgacctgaaactgtggtgcaaagataccgttagcgagttactgacggctaaccggcagctgcaatcggcgctggtggaaaccgcacaaaacaatcaggacgcggtaatgccaggttacactcacctgcaacgcgcccagccggtgacgttcgcgcactggtgcctggcctatgttgagatgctggcgcgtgatgaaagccgtttgcaggatgcgcttaagcgtctggatgtcagcccgctaggctgtggcgcgctggcgggaacggcctatgaaatcgaccgtgaacagttagcaggctggctgggctttgcttcggcgacccgtaacagtctcgacagcgtttctgaccgtgaccatgtgttggaactgctttctgctgccgctatcggcatggtgcatctgtcgcgttttgctgaagatctgattttctttaacaccggcgaagcggggtttgtggagctttctgaccgcgtgacttccggttcatcattaatgccgcagaagaaaaacccggatgcgctggagctgattcgcggtaaatgcggccgggtgcagggggcgttaaccggcatgatgatgacgctgaaaggtttgccgctggcttacaacaaagatatgcaggaagacaaagaaggtctgttcgacgcgctcgatacctggctggactgcctgcatatggcggcgctggtgctggacggcattcaggtgaaacgtccacgttgccaggaagcggctcagcagggttacgccaacgccaccgaactggcggattatctggtggcgaaaggcgtaccgttccgcgaggcgcaccatattgttggtgaagcggtggtggaagccattcgtcagggcaaaccgctggaagatctgccgctcagtgagttgcagaaattcagtcaggtgattgacgaagatgtctatccgattctgtcgctgcaatcgtgcctcgacaagcgtgcggcaaaaggcggcgtctcaccgcagcaggtggcgcaggcgattgcttttgcgcaggctcggttagggtaagaacatttatatgtataaatttgagcctggcttatcgccgggcttttttatggcaaaaaaaagcggatcctggagatccgcaaaagttcacgttggctttagttattcgagttgagaaactctcgaaacgggcagtgacttcaagggttaaaagaggtgccgctccgtttctgtgagcaattatcagtcagaatgcttgatagggataatcgttcattgctattctacctatcgccatgaactatcgtggcgatggaggatggataatgaatattcgtgatcttgagtacctggtggcattggctgaacaccgccattttcggcgtgcggcagattcctgccacgttagccagccgacgcttagcgggcaaattcgtaagctggaagatgagctgggcgtgatgttgctggagcggaccagccgtaaagtgttgttcacccaggcgggaatgctgctggtggatcaggcgcgtaccgtgctgcgtgaggtgaaagtccttaaagagatggcaagccagcagggcgagacgatgtccggaccgctgcacattggtttgattcccacagttggaccgtacctgctaccgcatattatccctatgctgcaccagacctttccaaagctggaaatgtatctgcatgaagcacagacccaccagttactggcgcaactggacagcggcaaactcgattgcgtgatcctcgcgctggtgaaagagagcgaagcattcattgaagtgccgttgtttgatgagccaatgttgctggctatctatgaagatcacccgtgggcgaaccgcgaatgcgtaccgatggccgatctggcaggggaaaaactgctgatgctggaagatggtcactgtttgcgcgatcaggcaatgggtttctgttttgaagccggggcggatgaagatacacacttccgcgcgaccagcctggaaactctgcgcaacatggtggcggcaggtagcgggatcactttactgccagcgctggctgtgccgccggagcgcaaacgcgatggggttgtttatctgccgtgcattaagccggaaccacgccgcactattggcctggtttatcgtcctggctcaccgctgcgcagccgctatgagcagctggcagaggccatccgcgcaagaatggatggccatttcgataaagttttaaaacaggcggtttaaaccgtttaacgcagctacccgataggcttccgccatcgtcgggtagttaaaggtggtgttgacgaagtactcaatagtgttgccgccacctttctgttccataatcgcctgaccgatatgaataatttcggcagcgcgctcgccaaagcagtgaatacccagaatctcttttgtttcccgatggaacaaaattttcagcgtgcccacgttcatgccgacgatttgtgcgcgtgccagatgtttaaactgggcgcggcccacttcatatggcactttcattgcggtcagctgctgttcggttttgcccacagagctgatttccgggatggtgtaaataccggtagggatatcttcaatcagatgtgcggtggcttcgccttttaccagcgcctgcgcggcaatgcgcccctggtcataggccgccgacgccaggctcggataaccaatcacgtcgcccaccgcgtaaacgtgtggctgtgcggtctgatacatgctgttgaccttcagctgtccgcggctgtcagtttctagcccaatgttctgtaacgccagcgaatcggtattaccggtgcgaccgttggcatagagcaggcagtcagctttcagttttttacccgacttcagatgcatgatcacaccatcgtcacagccttcgatcttctcgtactcttcgttgtgacgaatcactacgccactgttccagaagtgataggagagagaatctgacatctcttgatcgagaaatgccagcaggcgatcgcgggtgttgatcagatccacttttacatccataccgcggaagatcgacgcatattcacagccgatcactccagcaccatagataagtacatggcgcggttcgtggtgcatgctgagaattgagtcgctgtcgtaaatgcgtggatgggtgaaatcaacatctgttggatgatatggacgagagccgcaggcaataacaaatttttcagcggttagtgtttcaacgctgccgtccgggcaatccagcgccaacgtatgctcgtcaacaaagcgagcgtttccctgcaatatttcacagtgattacgttcgtaaaatccctgacgcatgcgcgtttgttgattaatcacgttatcggcatggttaaggatatcggcaaaagaagagcggagcagtcgggaatggtcgctgtaaagtgggttttgattgaattctataatgcggctgacggcgtgacggagagctttcgacgggatggtgccccagtgggtgcaaccgccgccaacattttgataacgctcgataactgcgacgcgcgcaccttgcttaaccaggcccattgcagcgccttcgccgccggggccgggaacctattactatggcatcgtaatcgtaggaatgtggcatggtagggcttacctgttcttatacataaaagcaacagaatggtaacattttatcgcgggtaagccaattgatccccgtcatttatctggctatatcctgagcggcctttgctttgtctgtttcttacttttgccctgacgttttattggatttttatcgacgatactctccgtttaagcggcaggtttccgctgtacgtaaaagaaccggccaaagaattgcagtaaatatgttttattgcgttaccgttcattcacaatactggagcaatccagtatgttcattctctggtatagtgccagcagtacttttggcaaggattcagacatcgtgatgggcgtaagagcgcaacaaaaagaaaaaacccgccgttcgctggtggaagccgcatttagccaattaagtgctgaacgcagcttcgccagcctgagtttgcgtgaagtggcgcgtgaagcgggcattgctcccacctctttttatcggcatttccgcgacgtagacgaactgggtctgaccatggttgatgagagcggtttaatgctacgccaactcatgcgccaggcgcgtcagcgtatcgccaaaggcgggagtgtgatccgcacctcggtctccacatttatggagttcatcggtaataatcctaacgccttccggttattattgcgggaacgctccggcacctccgctgcgtttcgtgccgccgttgcgcgtgaaattcagcacttcattgcggaacttgcggactatctggaactcgaaaaccatatgccgcgtgcgtttactgaagcgcaagccgaagcaatggtgacaattgtcttcagtgcgggtgccgaggcgttggacgtcggcgtcgaacaacgtcggcaattagaagagcgactggtactgcaactgcgaatgatttcgaaaggggcttattactggtatcgccgtgaacaagagaaaaccgcaattattccgggaaatgtgaaggacgagtaatgaaacaagcaaatcaagatagaggtacgctgctgctggcgttagttgctggcttatcgattaatggtactttcgcagcgctgtttagctccattgtgccattttctgtattcccgattatttccctggtgctgacggtttactgcctgcatcaacgttatcttaatcgcactatgccggtaggcttgccgggtctggcagctgcctgttttattctcggcgtactgctgtacagcacggtagttcgtgcggaatatccggatatcggctctaacttcttcccggcagtactctccgtcattatggtgttctggattggcgcgaagatgcgtaaccgtaagcaggaagttgctgagtaatcggtattatgccggatgctggcgcatccggcatgggttttacttcgcggtcagtaatacgccgcactccatatggtgcgtgtaggggaactgatcaaacagagccagacgttcgaccttgtgcgtctggcttaatgtttccagattcttgcataacgtttccgggttacaggagatgtacaaaatacgcggatacgcctgcaccattttctcggtttcactgtccagaccgctgcgcggagggtcgacaaaaatggtttcgcactgataactctttaagtcgatcccttgcaggcggttaaactcgcgcacaccattcatcgcctgagtaaattcttctgccgccatacgaataatttgtacgttatcaatatggttagctgcgatgttgtattgcgcagcagcaaccgacggcttagcgatttcggtggctaatacccgatcaaaattacgcgccagcgctaatgaaaagttaccgttgccgcagtacagctccagtaaatcgccttttgagcctttggttacgtccagcgcccattccagcatctgaatattcatcgccgcgttcggctgggtaaagctgttttctacctgacggtagatcatctctttccctgcgaccggcagacgttcatcgatgtaatcctgatccagctcgattttggttttcgttgcccgaccaatcagatgcacattcagattctgcgcgcgcagtgcatcgcgcagggcctccgcttcctgacgccactcatcatccagcttcttatggtatagcagggaaaccaccgcctgattactcagtgtagtgaggtaatcaatctggaacaacttgtggcgcagaacgggattattacgcacacccgcaatcatcgccgtcatcaactggttgataagttcactggcggcggggaagctatccacgcggatgcggcttttggtttgttgatcgaaaatgatgtgatacaggtcatcgccatcgtgccagatgcggaactccgcgcgcatccggtaatgactgaccggcgagcgaaacacttccggaaccaggtcagaaaacggtgccatcatactttgcaaacgtaccactttttcggctaactgcgcttcatactgttctgttggaaggtgttcgggggtcatgatgtatcctgaaaaattaaagtacgcggcgattgtagggattgctcatcagatgtccagatcttgatgaattcctatttgtgagctacgtctggacagtaacttgttacaacctgtagcatccacttgccggtcctgtgagttaatagggaatccagtgcgaatctggagctgacgcgcagcggtaaggaaaggtgcgatgattgcgttatgcggacactgccattcggtgggaagtcatcatctcttagtatcttagatacccctccaagcccgaagacctgccggccaacgtcgcatctggttctcatcatcgcgtaatattgatgaaacctgcggcatccttcttctattgtggatgctttacaatgattaaaaaagcttcgctgctgacggcgtgttccgtcacggcattttccgcttgggcacaggataccagcccggatactctcgtcgttactgctaaccgttttgaacagccgcgcagcactgtgcttgcaccaaccaccgttgtgacccgtcaggatatcgaccgctggcagtcgacctcggtcaatgatgtgctgcgccgtcttccgggcgtcgatatcacccaaaacggcggttcaggtcagctctcatctatttttattcgcggtacaaatgccagtcatgtgttggtgttaattgatggcgtacgcctgaatctggcgggggtgagtggttctgccgaccttagccagttccctattgcgcttgtccagcgtgttgaatatatccgtgggccgcgctccgctgtttatggttccgatgcaataggcggggtggtgaatatcatcacgacgcgcgatgaacccggaacggaaatttcagcagggtggggaagcaatagttatcagaactatgatgtctctacgcagcaacaactgggggataagacacgggtaacgctgttgggcgattatgcccatactcatggttatgatgttgttgcctatggtaataccggaacgcaagcgcagacagataacgatggttttttaagtaaaacgctttatggcgcgctggagcataactttactgatgcctggagcggctttgtgcgcggctatggctatgataaccgtaccaattatgacgcgtattattctcccggttcaccgttgctcgatacccgtaaactctatagccaaagttgggacgccgggctgcgctataacggcgaactgattaaatcacaactcattaccagctatagccatagcaaagattacaactacgatccccattatggtcgttatgattcgtcggcgacgctcgatgagatgaagcaatacaccgtccagtgggcaaacaatgtcatcgttggtcacggtagtattggtgcgggtgtcgactggcagaaacagactacgacgccgggtacaggttatgttgaggatggatatgatcaacgtaataccggcatctatctgaccgggctgcaacaagtcggcgattttacctttgaaggcgcagcacgcagtgacgataactcacagtttggtcgtcatggaacctggcaaaccagcgccggttgggaattcatcgaaggttatcgcttcattgcttcctacgggacatcttataaggcaccaaatctggggcaactgtatggcttctacggaaatccgaatctggacccggagaaaagcaaacagtgggaaggcgcgtttgaaggcttaaccgctggggtgaactggcgtatttccggatatcgtaacgatgtcagtgacttgatcgattatgatgatcacaccctgaaatattacaacgaagggaaagcgcggattaagggcgtcgaggcgaccgccaattttgataccggaccactgacgcatactgtgagttatgattatgtcgatgcgcgcaatgcgattaccgacacgccgttgttacgccgtgctaaacagcaggtgaaataccagctcgactggcagttgtatgacttcgactggggtattacttatcagtatttaggcactcgctatgataaggattactcatcttatccttatcaaaccgttaaaatgggcggtgtgagcttgtgggatcttgcggttgcgtatccggtcacctctcacctgacagttcgtggtaaaatagccaacctgttcgacaaagattatgagacagtctatggctaccaaactgcaggacgggaatacaccttgtctggcagctacaccttctgaaccacgtcccaccgtgctggtgtttgactccggcgtcggtgggttgtcggtctatgacgagatccggcatctcttaccggatctccattacatttatgctttcgataacgtcgctttcccgtatggcgaaaaaagcgaagcgtttattgttgagcgagtggtggcaattgtcaccgcggtgcaagaacgttatccccttgcgctggctgtggtcgcttgcaacactgccagtaccgtttcacttcctgcattacgcgaaaagttcgacttcccggttgttggtgtcgtgccggcgattaaacctgctgcacgtctgacggcaaatggcattgtcggattactggcaacccgcggaacagttaaacgttcttatactcatgagctgatcgcgcgtttcgctaatgaatgccagatagaaatgctgggctcggcagagatggttgagttggctgaagcgaagctacatggcgaagatgtttctctggatgcactaaaacgtatcctacgcccgtggttaagaatgaaagagccgccagataccgttgtattgggttgcacccatttccctctactacaagaagaactgttacaagtgctgccagagggaacccggctggtggattctggcgcagcgattgctcgccgaacggcctggttgttagaacatgaagccccggatgcaaaatctgccgatgcgaatattgccttttgtatggcaatgacgccaggagctgaacaattattgcccgttttacagcgttacggcttcgaaacgctcgaaaaactggcagttttaggctgatttggttgaatgttgcgcggtcagaaaattattttaaatttcctcttgtcaggccggaataactccctataatgcgccaccactgacacggaacaacggcaaacacgccgccgggtcagcggggttctcctgagaactccggcagagaaagcaaaaataaatgcttgactctgtagcgggaaggcgtattatgcacaccccgcgccgctgagaaaaagcgaagcggcactgctctttaacaatttatcagacaatctgtgtgggcactcgaagatacggattcttaacgtcgcaagacgaaaaatgaataccaagtctcaagagtgaacacgtaattcattacgaagtttaattctttgagcgtcaaacttttaaattgaagagtttgatcatggctcagattgaacgctggcggcaggcctaacacatgcaagtcgaacggtaacaggaagaagcttgcttctttgctgacgagtggcggacgggtgagtaatgtctgggaaactgcctgatggagggggataactactggaaacggtagctaataccgcataacgtcgcaagaccaaagagggggaccttcgggcctcttgccatcggatgtgcccagatgggattagctagtaggtggggtaacggctcacctaggcgacgatccctagctggtctgagaggatgaccagccacactggaactgagacacggtccagactcctacgggaggcagcagtggggaatattgcacaatgggcgcaagcctgatgcagccatgccgcgtgtatgaagaaggccttcgggttgtaaagtactttcagcggggaggaagggagtaaagttaatacctttgctcattgacgttacccgcagaagaagcaccggctaactccgtgccagcagccgcggtaatacggagggtgcaagcgttaatcggaattactgggcgtaaagcgcacgcaggcggtttgttaagtcagatgtgaaatccccgggctcaacctgggaactgcatctgatactggcaagcttgagtctcgtagaggggggtagaattccaggtgtagcggtgaaatgcgtagagatctggaggaataccggtggcgaaggcggccccctggacgaagactgacgctcaggtgcgaaagcgtggggagcaaacaggattagataccctggtagtccacgccgtaaacgatgtcgacttggaggttgtgcccttgaggcgtggcttccggagctaacgcgttaagtcgaccgcctggggagtacggccgcaaggttaaaactcaaatgaattgacgggggcccgcacaagcggtggagcatgtggtttaattcgatgcaacgcgaagaaccttacctggtcttgacatccacggaagttttcagagatgagaatgtgccttcgggaaccgtgagacaggtgctgcatggctgtcgtcagctcgtgttgtgaaatgttgggttaagtcccgcaacgagcgcaacccttatcctttgttgccagcggtccggccgggaactcaaaggagactgccagtgataaactggaggaaggtggggatgacgtcaagtcatcatggcccttacgaccagggctacacacgtgctacaatggcgcatacaaagagaagcgacctcgcgagagcaagcggacctcataaagtgcgtcgtagtccggattggagtctgcaactcgactccatgaagtcggaatcgctagtaatcgtggatcagaatgccacggtgaatacgttcccgggccttgtacacaccgcccgtcacaccatgggagtgggttgcaaaagaagtaggtagcttaaccttcgggagggcgcttaccactttgtgattcatgactggggtgaagtcgtaacaaggtaaccgtaggggaacctgcggttggatcacctccttaccttaaagaagcgtactttgtagtgctcacacagattgtctgatagaaagtgaaaagcaaggcgtttacgcgttgggagtgaggctgaagagaataaggccgttcgctttctattaatgaaagctcaccctacacgaaaatatcacgcaacgcgtgataagcaattttcgtgtccccttcgtctagaggcccaggacaccgccctttcacggcggtaacaggggttcgaatcccctaggggacgccacttgctggtttgtgagtgaaagtcgccgaccttaatatctcaaaactcatcttcgggtgatgtttgagatatttgctctttaaaaatctggatcaagctgaaaattgaaacactgaacaacgagagttgttcgtgagtctctcaaattttcgcaacacgatgatgaatcgaaagaaacatcttcgggttgtgaggttaagcgactaagcgtacacggtggatgccctggcagtcagaggcgatgaaggacgtgctaatctgcgataagcgtcggtaaggtgatatgaaccgttataaccggcgatttccgaatggggaaacccagtgtgtttcgacacactatcattaactgaatccataggttaatgaggcgaaccgggggaactgaaacatctaagtaccccgaggaaaagaaatcaaccgagattcccccagtagcggcgagcgaacggggagcagcccagagcctgaatcagtgtgtgtgttagtggaagcgtctggaaaggcgcgcgatacagggtgacagccccgtacacaaaaatgcacatgctgtgagctcgatgagtagggcgggacacgtggtatcctgtctgaatatggggggaccatcctccaaggctaaatactcctgactgaccgatagtgaaccagtaccgtgagggaaaggcgaaaagaaccccggcgaggggagtgaaaaagaacctgaaaccgtgtacgtacaagcagtgggagcacgcttaggcgtgtgactgcgtaccttttgtataatgggtcagcgacttatattctgtagcaaggttaaccgaataggggagccgaagggaaaccgagtcttaactgggcgttaagttgcagggtatagacccgaaacccggtgatctagccatgggcaggttgaaggttgggtaacactaactggaggaccgaaccgactaatgttgaaaaattagcggatgacttgtggctgggggtgaaaggccaatcaaaccgggagatagctggttctccccgaaagctatttaggtagcgcctcgtgaattcatctccgggggtagagcactgtttcggcaagggggtcatcccgacttaccaacccgatgcaaactgcgaataccggagaatgttatcacgggagacacacggcgggtgctaacgtccgtcgtgaagagggaaacaacccagaccgccagctaaggtcccaaagtcatggttaagtgggaaacgatgtgggaaggcccagacagccaggatgttggcttagaagcagccatcatttaaagaaagcgtaatagctcactggtcgagtcggcctgcgcggaagatgtaacggggctaaaccatgcaccgaagctgcggcagcgacgcttatgcgttgttgggtaggggagcgttctgtaagcctgcgaaggtgtgctgtgaggcatgctggaggtatcagaagtgcgaatgctgacataagtaacgataaagcgggtgaaaagcccgctcgccggaagaccaagggttcctgtccaacgttaatcggggcagggtgagtcgacccctaaggcgaggccgaaaggcgtagtcgatgggaaacaggttaatattcctgtacttggtgttactgcgaaggggggacggagaaggctatgttggccgggcgacggttgtcccggtttaagcgtgtaggctggttttccaggcaaatccggaaaatcaaggctgaggcgtgatgacgaggcactacggtgctgaagcaacaaatgccctgcttccaggaaaagcctctaagcatcaggtaacatcaaatcgtaccccaaaccgacacaggtggtcaggtagagaataccaaggcgcttgagagaactcgggtgaaggaactaggcaaaatggtgccgtaacttcgggagaaggcacgctgatatgtaggtgaggtccctcgcggatggagctgaaatcagtcgaagataccagctggctgcaactgtttattaaaaacacagcactgtgcaaacacgaaagtggacgtatacggtgtgacgcctgcccggtgccggaaggttaattgatggggttagcgcaagcgaagctcttgatcgaagccccggtaaacggcggccgtaactataacggtcctaaggtagcgaaattccttgtcgggtaagttccgacctgcacgaatggcgtaatgatggccaggctgtctccacccgagactcagtgaaattgaactcgctgtgaagatgcagtgtacccgcggcaagacggaaagaccccgtgaacctttactatagcttgacactgaacattgagccttgatgtgtaggataggtgggaggctttgaagtgtggacgccagtctgcatggagccgaccttgaaataccaccctttaatgtttgatgttctaacgttgacccgtaatccgggttgcggacagtgtctggtgggtagtttgactggggcggtctcctcctaaagagtaacggaggagcacgaaggttggctaatcctggtcggacatcaggaggttagtgcaatggcataagccagcttgactgcgagcgtgacggcgcgagcaggtgcgaaagcaggtcatagtgatccggtggttctgaatggaagggccatcgctcaacggataaaaggtactccggggataacaggctgataccgcccaagagttcatatcgacggcggtgtttggcacctcgatgtcggctcatcacatcctggggctgaagtaggtcccaagggtatggctgttcgccatttaaagtggtacgcgagctgggtttagaacgtcgtgagacagttcggtccctatctgccgtgggcgctggagaactgaggggggctgctcctagtacgagaggaccggagtggacgcatcactggtgttcgggttgtcatgccaatggcactgcccggtagctaaatgcggaagagataagtgctgaaagcatctaagcacgaaacttgccccgagatgagttctccctgaccctttaagggtcctgaaggaacgttgaagacgacgacgttgataggccgggtgtgtaagcgcagcgatgcgttgagctaaccggtactaatgaaccgtgaggcttaaccttacaacgccgaagctgttttggcggatgagagaagattttcagcctgatacagattaaatcagaacgcagaagcggtctgataaaacagaatttgcctggcggcagtagcgcggtggtcccacctgaccccatgccgaactcagaagtgaaacgccgtagcgccgatggtagtgtggggtctccccatgcgagagtagggaactgccaggcatcaaataaaacgaaaggctcagtcgaaagactgggcctttcgttttatctgttgtttgtcggtgaacgctctcctgagtaggacaaatccgccgggagcggatttgaacgttgcgaagcaacggcccggagggtggcgggcaggacgcccgccataaactgccaggcatcaaattaagcagaaggccatcctgacggatggcctttttgcgtttctacaaactcttcctgtcgtcatatctacaagccatccccccacagatacggtaaactagcctcgtttttgcatcaggaaagcagctatgaaccactccttaaaaccctggaacacatttggcattgatcataatgctcagcacattgtatgtgccgaagacgaacaacaattactcaatgcctggcagtatgcaaccgcagaaggacaacccgttcttattctgggtgaaggaagtaatgtactttttctggaggactatcgcggcacggtgatcatcaaccggatcaaaggtatcgaaattcatgatgaacctgatgcgtggtatttacatgtaggagccggagaaaactggcatcgtctggtaaaatacactttgcaggaaggtatgcctggtctggaaaatctggcattaattcctggttgtgtcggctcatcacctatccagaatattggtgcttatggcgtagaattacagcgagtttgcgcttatgttgattctgttgaactggcgacaggcaagcaagtgcgcttaactgccaaagagtgccgttttggctatcgcgacagtatttttaaacatgaataccaggaccgcttcgctattgtagccgtaggtctgcgtctgccaaaagagtggcaacctgtactaacgtatggtgacttaactcgtctggatcctacaacagtaacgccacagcaagtatttaatgcggtgtgtcatatgcgcaccaccaaactccctgatccaaaagtgaatggcaatgccggtagtttcttcaaaaaccctgttgtatctgccgaaacggctaaagcattactgtcacaatttccaacagcaccaaattacccccaggcggatggttcagtaaaactggcagcaggttggcttatcgatcagtgccagctaaaagggatgcaaataggtggggctgcggtgcaccgtcaacaggcgttagttctcattaatgaagacaatgcaaaaagcgaagatgttgtacagctggcgcatcatgtaagacagaaagttggtgaaaaatttaatgtctggcttgagcctgaagtccgctttattggtgcatcaggtgaagtgagcgcagtggagacaatttcatgaaggataacaccgtgccactgaaattgattgccctgttagcgaacggtgaatttcactctggcgagcagttgggtgaaacgctgggaatgagccgggcggctattaataaacacattcagacactgcgtgactggggcgttgatgtctttaccgttccgggtaaaggatacagcctgcctgagcctatccagttacttaatgctaaacagatattgggtcagctggatggcggtagtgtagccgtgctgccagtgattgactccacgaatcagtaccttcttgatcgtatcggagagcttaaatcgggcgatgcttgcattgcagaataccagcaggctggccgtggtcgccggggtcggaaatggttttcgccttttggcgcaaacttatatttgtcgatgttctggcgtctggaacaaggcccggcggcggcgattggtttaagtctggttatcggtatcgtgatggcggaagtattacgcaagctgggtgcagataaagttcgtgttaaatggcctaatgacctctatctgcaggatcgcaagctggcaggcattctggtggagctgactggcaaaactggcgatgcggcgcaaatagtcattggagccgggatcaacatggcaatgcgccgtgttgaagagagtgtcgttaatcaggggtggatcacgctgcaggaagcggggatcaatctcgatcgtaatacgttggcggccatgctaatacgtgaattacgtgctgcgttggaactcttcgaacaagaaggattggcaccttatctgtcgcgctgggaaaagctggataattttattaatcgcccagtgaaacttatcattggtgataaagaaatatttggcatttcacgcggaatagacaaacagggggctttattacttgagcaggatggaataataaaaccctggatgggcggtgaaatatccctgcgtagtgcagaaaaataagaaaggggagtattcgctcccctgcaaattatttgcgtagtctgacctcttctaccgcatgattagcacttttcgtcaggattaaactggcgcgctcacgagtaggtagaatattttgctttaagttcagccagttgatctctttccacaatgtcatggcagtcttaatcgcttcttctttagttaatttcgcgtagttatgaaaataggaatccgggtcggtaaaagccccttcgcggaatttcagaaaacggttgatataccatgtctgaagtaagtcttccggtgcatcaacatatatcgaaaaatcgacaaaatcagaaacaaatacatgatgtggatcgtgtggataatccatcccgctctgtaagacatttaacccttcaagaattaaaatatcaggctgaacaaccgttttatctccatccgggatcacatcataaataagatgtgagtaaacaggtgctgtaacgtttggcacgccggatttgagatcggaaacaaacttcaccaggcgatgcatatcatacgattccgggaagcctttcttcttcatcagaccacgttctttcagaacctgattagggtgaaggaagccatctgtagtgatcagttcaacacgacgatgttccggccaacggcttaatagcgcctgcaatacacgggcggttgtacttttccccaccgcgacactgccagcaatactgataatgtaaggaatgcgttgcccgttggtaccaagaaactgttccagaactgcctgacggcgcagattcgagcttatatagaagttcagcaaacgtgacaaaggtaaatagatctcggcaacttcttctaacgagagatcttcattaatacctttgagacgggcgatctcatcttccgataacgtcataggtacggaatcacgcagagctgcccactggttgcggtcaaactgtaggtaaggcgtcattaacgtttgctcttttatactcataagcatgtttctggcggtcatagctctatcggcaaagcgatatttgccatggcgcgtcacagttctgttgaatgggttaatgggcaggagggtaacaccagatggggaggaataataagaaaaaatctctgccaggaagctatcgttgaaaagcaatgtgacagatattccatctgataaaaagaattatggtttagcaggagcgcattgttgagcacaatgatgttgaaaaagtgtgctaatctgccctccgttcggctgtttcttcatcgtgtcgcataaaatgtgaccaataaaacaaattatgcaattttttagttgcatgaactcgcatgtctccatagaatgcgcgctacttgatgccgacttagctcagtaggtagagcaactgacttgtaatcagtaggtcaccagttcgattccggtagtcggcaccatcaagtccggtggggttcccgagcggccaaagggagcagactgtaaatctgccgtcacagacttcgaaggttcgaatccttcccccaccaccaatttcggccacgcgatggcgtagcccgagacgataagttcgcttaccggctcgaataaagagagcttctctcgatattcagtgcagaatgaaaatcaggtagccgagttccaggatgcgggcatcgtataatggctattacctcagccttccaagctgatgatgcgggttcgattcccgctgcccgctccaagatgtgctgatatagctcagttggtagagcgcacccttggtaagggtgaggtcggcagttcgaatctgcctatcagcaccacttcttttctcctccctgttttttccttctgtttattgcattcaacaagtcgggcatgttgcctggttgatgtggtgatatcaccgatttatccgtgtcttagagggacaatcgatgtctaaagaaaagtttgaacgtacaaaaccgcacgttaacgtcggtactatcggccacgttgaccatggtaaaacaacgctgaccgctgcaatcactaccgtactggctaaaacctacggcggtgctgctcgcgcattcgaccagatcgataacgcgccggaagaaaaagctcgtggtatcaccatcaacacttctcacgttgaatacgacaccccgacccgtcactacgcacacgtagactgcccggggcacgccgactatgttaaaaacatgatcaccggtgctgcgcagatggacggcgcgatcctggtagttgctgcgactgacggcccgatgccgcagactcgtgagcacatcctgctgggtcgtcaggtaggcgttccgtacatcatcgtgttcctgaacaaatgcgacatggttgatgacgaagagctgctggaactggttgaaatggaagttcgtgaacttctgtctcagtacgacttcccgggcgacgacactccgatcgttcgtggttctgctctgaaagcgctggaaggcgacgcagagtgggaagcgaaaatcctggaactggctggcttcctggattcttacattccggaaccagagcgtgcgattgacaagccgttcctgctgccgatcgaagacgtattctccatctccggtcgtggtaccgttgttaccggtcgtgtagaacgcggtatcatcaaagttggtgaagaagttgaaatcgttggtatcaaagagactcagaagtctacctgtactggcgttgaaatgttccgcaaactgctggacgaaggccgtgctggtgagaacgtaggtgttctgctgcgtggtatcaaacgtgaagaaatcgaacgtggtcaggtactggctaagccgggcaccatcaagccgcacaccaagttcgaatctgaagtgtacattctgtccaaagatgaaggcggccgtcatactccgttcttcaaaggctaccgtccgcagttctacttccgtactactgacgtgactggtaccatcgaactgccggaaggcgtagagatggtaatgccgggcgacaacatcaaaatggttgttaccctgatccacccgatcgcgatggacgacggtctgcgtttcgcaatccgtgaaggcggccgtaccgttggcgcgggcgttgtagcaaaagttctgagctaattgccgataacatttgacgcaatgcgcactaaaagggcatcatttgatgccctttttgcacgctttcgtaccagaacctggctcatcagtgattttctttgtcataatcattgctgagacaggctctgttgagggcgtataatccgaaaagctaatacgcgtttcgatttggtttgcctcgcgatcgcggggtgaaaatgtttgtagaaaacttctgacaggttggtttatgagtgcgaataccgaagctcaaggaagcgggcgcggcctggaagcgatgaagtgggtcgttgtggtggcattgctcctggtggcgattgtcggcaactatctttatcgcgacattatgctgccgctgcgtgcgctggccgtagtaattctgattgctgcagcgggtggtgtcgcgctgttaacgacaaaaggtaaagctaccgttgcttttgcccgtgaagcgcgtaccgaagtccgtaaggtcatttggccgactcgccaggaaacattgcacaccacgctgattgtggctgcggttaccgcagtaatgtcactgatcctgtggggactggatggtattctggttcgcctggtatcctttatcactggcctgaggttctgagatgtctgaagctcctaaaaagcgctggtacgtcgttcaggcgttttccggttttgaaggccgcgtagcaacgtcgctgcgtgagcatatcaaattacacaacatggaagatttgtttggtgaagtcatggtaccaaccgaagaagtggttgaaatccgtggcggtcagcgtcgcaaaagcgaacgtaaattcttccctggctacgtcctcgttcagatggtgatgaacgacgcgagctggcacctggtgcgcagcgtaccgcgtgtgatgggcttcatcggcggtacttccgatcgtcctgcgccaatcagcgataaagaagtcgatgcgattatgaaccgcctgcagcaggttggtgataagccgcgtccgaaaacgctgtttgaaccgggtgaaatggtccgtgttaatgatggtccgttcgctgacttcaacggtgttgttgaagaagtggattacgagaaatctcgtctgaaagtgtctgtttctatcttcggtcgtgcgaccccggtagagctggacttcagccaggttgaaaaagcctaacccagcgatcaaaaaagcggcgatttaatcgttgcacaaggcgtgagattggaatacaatttcgcgccttttgtttttatggccttgcccgtaaaacgattttttatatcacggggagcctctcagaggcgttattacccaacttgaggaatttataatggctaagaaagtacaagcctatgtcaagctgcaggttgcagctggtatggctaacccgagtccgccagtaggtccggctctgggtcagcagggcgtaaacatcatggaattctgcaaagcgttcaacgcaaaaactgattccatcgaaaaaggtctgccgattccggtagtaatcaccgtttacgctgaccgttctttcactttcgttaccaagaccccgccggcagcagttctgctgaaaaaagcggctggtatcaagtctggttccggtaagccgaacaaagacaaagtgggtaaaatttcccgcgctcagctgcaggaaatcgcgcagaccaaagctgccgacatgactggtgccgacattgaagcgatgactcgctccatcgaaggtactacgttccatgggcctggtagtggaggactaagaaatggctaaactgaccaagcgcatgcgtgttatccgcgagaaagttgatgcaaccaaacagtacgacatcaacgaagctatcgcactgctgaaagagctggcgactgctaaattcgtagaaagcgtggacgtagctgttaacctcggcatcgacgctcgtaaatctgaccagaacgtacgtggtgcaactgtactgccgcacggtactggccgttccgttcgcgtagccgtatttacccaaggtgcaaacgctgaagctgctaaagctgcaggcgcagaactggtaggtatggaagatctggctgaccagatcaagaaaggcgaaatgaactttgacgttgttattgcttctccggatgcaatgcgcgttgttggccagctgggccaggttctgggtccgcgcggcctgatgccaaacccgaaagtgggtactgtaacaccgaacgttgctgaagcggttaaaaacgctaaagctggccaggttcgttaccgtaacgacaaaaacggcatcatccacaccaccatcggtaaagtggactttgacgctgacaaactgaaagaaaacctggaagctctgctggttgcgctgaaaaaagcaaaaccgactcaggcgaaaggcgtgtacatcaagaaagttagcatctccaccaccatgggtgcaggtgttgcagttgaccaggctggcctgagcgcttctgtaaactaatgcctttacgtgggcggtgattttgtctacaatcttacccccacgtataatgcttaatgcagacgtatatccgagatattcgggttgtggcaaggcggcaactgagtgagtcgccaggagcatagctaactatgtgactggtgcgaatgaaggaagccaacgccgtcacaagctgaatagcgacggatagaaaagatttgttcgttggagcctggcctatccaggcctccgtcgaagaccgcaggagtttcgcaagaaacttaatcccctgcgtagacggtgacagaacgctaagattattcttttatattctggcttgtttctgctcaccgtaattaagacgctctctccgtttggaggagtgaagtgagttccagagattttctctggcaaacatccaggagcaaagctaatggctttaaatcttcaagacaaacaagcgattgttgctgaagtcagcgaagtagccaaaggcgcgctgtctgcagtagttgcggattcccgtggcgtaactgtagataaaatgactgaactgcgtaaagcaggtcgcgaagctggcgtatacatgcgtgttgttcgtaacaccctgctgcgccgtgctgttgaaggtactccgttcgagtgcctgaaagacgcgtttgttggtccgaccctgattgcatactctatggaacacccgggcgctgctgctcgtctgttcaaagagttcgcgaaagcgaatgcaaaatttgaggtcaaagccgctgcctttgaaggtgagctgatcccggcgtctcagatcgaccgcctggcaactctgccgacctacgaagaagcaattgcacgcctgatggcaaccatgaaagaagcttcggctggcaaactggttcgtactctggctgctgtacgcgatgcgaaagaagctgcttaatcgcagttatctttttaacgcattcgcttacgtataaacttattctgatattcaggaacaatttaaatgtctatcactaaagatcaaatcattgaagcagttgcagctatgtctgtaatggacgttgtagaactgatctctgcaatggaagaaaaattcggtgtttccgctgctgctgctgtagctgtagctgctggcccggttgaagctgctgaagaaaaaactgaattcgacgtaattctgaaagctgctggcgctaacaaagttgctgttatcaaagcagtacgtggcgcaactggcctgggtctgaaagaagctaaagacctggtagaatctgcaccggctgctctgaaagaaggcgtgagcaaagacgacgcagaagcactgaaaaaagctctggaagaagctggcgctgaagttgaagttaaataagccaacccttccggttgcagcctgagaaatcaggctgatggctggtgactttttagtcaccagcctttttgcgctgtaaggcgccagtagcgtttcacactgtttgactactgctgtgcctttcaatgcttgtttctatcgacgacttaatatactgcgacaggacgtccgttctgtgtaaatcgcaatgaaatggtttaagcgtgatagcaacaggcattgcggaaagtgttccattttccggtcaacaaaatagtgttgcacaaactgtccgctcaatggacagatgggtcgacttgtcagcgagctgaggaaccctatggtttactcctataccgagaaaaaacgtattcgtaaggattttggtaaacgtccacaagttctggatgtaccttatctcctttctatccagcttgactcgtttcagaaatttatcgagcaagatcctgaagggcagtatggtctggaagctgctttccgttccgtattcccgattcagagctacagcggtaattccgagctgcaatacgtcagctaccgccttggcgaaccggtgtttgacgtccaggaatgtcaaatccgtggcgtgacctattccgcaccgctgcgcgttaaactgcgtctggtgatctatgagcgcgaagcgccggaaggcaccgtaaaagacattaaagaacaagaagtctacatgggcgaaattccgctcatgacagacaacggtacctttgttatcaacggtactgagcgtgttatcgtttcccagctgcaccgtagtccgggcgtcttctttgactccgacaaaggtaaaacccactcttcgggtaaagtgctgtataacgcgcgtatcatcccttaccgtggttcctggctggacttcgaattcgatccgaaggacaacctgttcgtacgtatcgaccgtcgccgtaaactgcctgcgaccatcattctgcgcgccctgaactacaccacagagcagatcctcgacctgttctttgaaaaagttatctttgaaatccgtgataacaagctgcagatggaactggtgccggaacgcctgcgtggtgaaaccgcatcttttgacatcgaagctaacggtaaagtgtacgtagaaaaaggccgccgtatcactgcgcgccacattcgccagctggaaaaagacgacgtcaaactgatcgaagtcccggttgagtacatcgcaggtaaagtggttgctaaagactatattgatgagtctaccggcgagctgatctgcgcagcgaacatggagctgagcctggatctgctggctaagctgagccagtctggtcacaagcgtatcgaaacgctgttcaccaacgatctggatcacggcccatatatctctgaaaccttacgtgtcgacccaactaacgaccgtctgagcgcactggtagaaatctaccgcatgatgcgccctggcgagccgccgactcgtgaagcagctgaaagcctgttcgagaacctgttcttctccgaagaccgttatgacttgtctgcggttggtcgtatgaagttcaaccgttctctgctgcgcgaagaaatcgaaggttccggtatcctgagcaaagacgacatcattgatgttatgaaaaagctcatcgatatccgtaacggtaaaggcgaagtcgatgatatcgaccacctcggcaaccgtcgtatccgttccgttggcgaaatggcggaaaaccagttccgcgttggcctggtacgtgtagagcgtgcggtgaaagagcgtctgtctctgggcgatctggataccctgatgccacaggatatgatcaacgccaagccgatttccgcagcagtgaaagagttcttcggttccagccagctgtctcagtttatggaccagaacaacccgctgtctgagattacgcacaaacgtcgtatctccgcactcggcccaggcggtctgacccgtgaacgtgcaggcttcgaagttcgagacgtacacccgactcactacggtcgcgtatgtccaatcgaaacccctgaaggtccgaacatcggtctgatcaactctctgtccgtgtacgcacagactaacgaatacggcttccttgagactccgtatcgtaaagtgaccgacggtgttgtaactgacgaaattcactacctgtctgctatcgaagaaggcaactacgttatcgcccaggcgaactccaacttggatgaagaaggccacttcgtagaagacctggtaacttgccgtagcaaaggcgaatccagcttgttcagccgcgaccaggttgactacatggacgtatccacccagcaggtggtatccgtcggtgcgtccctgatcccgttcctggaacacgatgacgccaaccgtgcattgatgggtgcgaacatgcaacgtcaggccgttccgactctgcgcgctgataagccgctggttggtactggtatggaacgtgctgttgccgttgactccggtgtaactgcggtagctaaacgtggtggtgtcgttcagtacgtggatgcttcccgtatcgttatcaaagttaacgaagacgagatgtatccgggtgaagcaggtatcgacatctacaacctgaccaaatacacccgttctaaccagaacacctgtatcaaccagatgccgtgtgtgtctctgggtgaaccggttgaacgtggcgacgtgctggcagacggtccgtccaccgacctcggtgaactggcgcttggtcagaacatgcgcgtagcgttcatgccgtggaatggttacaacttcgaagactccatcctcgtatccgagcgtgttgttcaggaagaccgtttcaccaccatccacattcaggaactggcgtgtgtgtcccgtgacaccaagctgggtccggaagagatcaccgctgacatcccgaacgtgggtgaagctgcgctctccaaactggatgaatccggtatcgtttacattggtgcggaagtgaccggtggcgacattctggttggtaaggtaacgccgaaaggtgaaactcagctgaccccagaagaaaaactgctgcgtgcgatcttcggtgagaaagcctctgacgttaaagactcttctctgcgcgtaccaaacggtgtatccggtacggttatcgacgttcaggtctttactcgcgatggcgtagaaaaagacaaacgtgcgctggaaatcgaagaaatgcagctcaaacaggcgaagaaagacctgtctgaagaactgcagatcctcgaagcgggtctgttcagccgtatccgtgctgtgctggtagccggtggcgttgaagctgagaagctcgacaaactgccgcgcgatcgctggctggagctgggcctgacagacgaagagaaacaaaatcagctggaacagctggctgagcagtatgacgaactgaaacacgagttcgagaagaaactcgaagcgaaacgccgcaaaatcacccagggcgacgatctggcaccgggcgtgctgaagattgttaaggtatatctggcggttaaacgccgtatccagcctggtgacaagatggcaggtcgtcacggtaacaagggtgtaatttctaagatcaacccgatcgaagatatgccttacgatgaaaacggtacgccggtagacatcgtactgaacccgctgggcgtaccgtctcgtatgaacatcggtcagatcctcgaaacccacctgggtatggctgcgaaaggtatcggcgacaagatcaacgccatgctgaaacagcagcaagaagtcgcgaaactgcgcgaattcatccagcgtgcgtacgatctgggcgctgacgttcgtcagaaagttgacctgagtaccttcagcgatgaagaagttatgcgtctggctgaaaacctgcgcaaaggtatgccaatcgcaacgccggtgttcgacggtgcgaaagaagcagaaattaaagagctgctgaaacttggcgacctgccgacttccggtcagatccgcctgtacgatggtcgcactggtgaacagttcgagcgtccggtaaccgttggttacatgtacatgctgaaactgaaccacctggtcgacgacaagatgcacgcgcgttccaccggttcttacagcctggttactcagcagccgctgggtggtaaggcacagttcggtggtcagcgtttcggggagatggaagtgtgggcgctggaagcatacggcgcagcatacaccctgcaggaaatgctcaccgttaagtctgatgacgtgaacggtcgtaccaagatgtataaaaacatcgtggacggcaaccatcagatggagccgggcatgccagaatccttcaacgtattgttgaaagagattcgttcgctgggtatcaacatcgaactggaagacgagtaattctcgctcaaacaggtcactgctgtcgggttaaaacccggcagcggattgtgctaactccgacgggagcaaatccgtgaaagatttattaaagtttctgaaagcgcagactaaaaccgaagagtttgatgcgatcaaaattgctctggcttcgccagacatgatccgttcatggtctttcggtgaagttaaaaagccggaaaccatcaactaccgtacgttcaaaccagaacgtgacggccttttctgcgcccgtatctttgggccggtaaaagattacgagtgcctgtgcggtaagtacaagcgcctgaaacaccgtggcgtcatctgtgagaagtgcggcgttgaagtgacccagactaaagtacgccgtgagcgtatgggccacatcgaactggcttccccgactgcgcacatctggttcctgaaatcgctgccgtcccgtatcggtctgctgctcgatatgccgctgcgcgatatcgaacgcgtactgtactttgaatcctatgtggttatcgaaggcggtatgaccaacctggaacgtcagcagatcctgactgaagagcagtatctggacgcgctggaagagttcggtgacgaattcgacgcgaagatgggggcggaagcaatccaggctctgctgaagagcatggatctggagcaagagtgcgaacagctgcgtgaagagctgaacgaaaccaactccgaaaccaagcgtaaaaagctgaccaagcgtatcaaactgctggaagcgttcgttcagtctggtaacaaaccagagtggatgatcctgaccgttctgccggtactgccgccagatctgcgtccgctggttccgctggatggtggtcgtttcgcgacttctgacctgaacgatctgtatcgtcgcgtcattaaccgtaacaaccgtctgaaacgtctgctggatctggctgcgccggacatcatcgtacgtaacgaaaaacgtatgctgcaggaagcggtagacgccctgctggataacggtcgtcgcggtcgtgcgatcaccggttctaacaagcgtcctctgaaatctttggccgacatgatcaaaggtaaacagggtcgtttccgtcagaacctgctcggtaagcgtgttgactactccggtcgttctgtaatcaccgtaggtccatacctgcgtctgcatcagtgcggtctgccgaagaaaatggcactggagctgttcaaaccgttcatctacggcaagctggaactgcgtggtcttgctaccaccattaaagctgcgaagaaaatggttgagcgcgaagaagctgtcgtttgggatatcctggacgaagttatccgcgaacacccggtactgctgaaccgtgcaccgactctgcaccgtctgggtatccaggcatttgaaccggtactgatcgaaggtaaagctatccagctgcacccgctggtttgtgcggcatataacgccgacttcgatggtgaccagatggctgttcacgtaccgctgacgctggaagcccagctggaagcgcgtgcgctgatgatgtctaccaacaacatcctgtccccggcgaacggcgaaccaatcatcgttccgtctcaggacgttgtactgggtctgtactacatgacccgtgactgtgttaacgccaaaggcgaaggcatggtgctgactggcccgaaagaagcagaacgtctgtatcgctctggtctggcttctctgcatgcgcgcgttaaagtgcgtatcaccgagtatgaaaaagatgctaacggtgaattagtagcgaaaaccagcctgaaagacacgactgttggccgtgccattctgtggatgattgtaccgaaaggtctgccttactccatcgtcaaccaggcgctgggtaaaaaagcaatctccaaaatgctgaacacctgctaccgcattctcggtctgaaaccgaccgttatttttgcggaccagatcatgtacaccggcttcgcctatgcagcgcgttctggtgcatctgttggtatcgatgacatggtcatcccggagaagaaacacgaaatcatctccgaggcagaagcagaagttgctgaaattcaggagcagttccagtctggtctggtaactgcgggcgaacgctacaacaaagttatcgatatctgggctgcggcgaacgatcgtgtatccaaagcgatgatggataacctgcaaactgaaaccgtgattaaccgtgacggtcaggaagagaagcaggtttccttcaacagcatctacatgatggccgactccggtgcgcgtggttctgcggcacagattcgtcagcttgctggtatgcgtggtctgatggcgaagccggatggctccatcatcgaaagccaatcaccgcgaacttccgtgaaggtctgaacgtactccagtacttcatctccacccacggtgctcgtaaaggtctggcggataccgcactgaaaactgcgaactccggttacctgactcgtcgtctggttgacgtggcgcaggacctggtggttaccgaagacgattgtggtacccatgaaggtatcatgatgactccggttatcgagggtggtgacgttaaagagccgctgcgcgatcgcgtactgggtcgtgtaactgctgaagacgttctgaagccgggtactgctgatatcctcgttccgcgcaacacgctgctgcacgaacagtggtgtgacctgctggaagagaactctgtcgacgcggttaaagtacgttctgttgtatcttgtgacaccgactttggtgtatgtgcgcactgctacggtcgtgacctggcgcgtggccacatcatcaacaagggtgaagcaatcggtgttatcgcggcacagtccatcggtgaaccgggtacacagctgaccatgcgtacgttccacatcggtggtgcggcatctcgtgcggctgctgaatccagcatccaagtgaaaaacaaaggtagcatcaagctcagcaacgtgaagtcggttgtgaactccagcggtaaactggttatcacttcccgtaatactgaactgaaactgatcgacgaattcggtcgtactaaagaaagctacaaagtaccttacggtgcggtactggcgaaaggcgatggcgaacaggttgctggcggcgaaaccgttgcaaactgggacccgcacaccatgccggttatcaccgaagtaagcggttttgtacgctttactgacatgatcgacggccagaccattacgcgtcagaccgacgaactgaccggtctgtcttcgctggtggttctggattccgcagaacgtaccgcaggtggtaaagatctgcgtccggcactgaaaatcgttgatgctcagggtaacgacgttctgatcccaggtaccgatatgccagcgcagtacttcctgccgggtaaagcgattgttcagctggaagatggcgtacagatcagctctggtgacaccctggcgcgtattccgcaggaatccggcggtaccaaggacatcaccggtggtctgccgcgcgttgcggacctgttcgaagcacgtcgtccgaaagagccggcaatcctggctgaaatcagcggtatcgtttccttcggtaaagaaaccaaaggtaaacgtcgtctggttatcaccccggtagacggtagcgatccgtacgaagagatgattccgaaatggcgtcagctcaacgtgttcgaaggtgaacgtgtagaacgtggtgacgtaatttccgacggtccggaagcgccgcacgacattctgcgtctgcgtggtgttcatgctgttactcgttacatcgttaacgaagtacaggacgtataccgtctgcagggcgttaagattaacgataaacacatcgaagttatcgttcgtcagatgctgcgtaaagctaccatcgttaacgcgggtagctccgacttcctggaaggcgaacaggttgaatactctcgcgtcaagatcgcaaaccgcgaactggaagcgaacggcaaagtgggtgcaacttactcccgcgatctgctgggtatcaccaaagcgtctctggcaaccgagtccttcatctccgcggcatcgttccaggagaccactcgcgtgctgaccgaagcagccgttgcgggcaaacgcgacgaactgcgcggcctgaaagagaacgttatcgtgggtcgtctgatcccggcaggtaccggttacgcgtaccaccaggatcgtatgcgtcgccgtgctgcgggtgaagctccggctgcaccgcaggtgactgcagaagacgcatctgccagcctggcagaactgctgaacgcaggtctgggcggttctgataacgagtaatcgttaatccgcaaataacgtaaaaacccgcttcggcgggtttttttatggggggagtttagggaaagagcatttgtcagaatatttaaggaatttctgaatactcataatcaatgtagagatgactaatatcctgaaactgactgaactaattgagtcaaactcggcaaggattcgatactattcctgtgtaactttcttaaggaacgagaatgaaacaggaagtggaaaagtggcgaccttttggacatccggatggtgatattcgtgatttatcatttcttgatgctcatcaggctgtctacgttcagcatcatgagggcaaagagcctttagagtatcgcttttgggttacctactctcttcactgcttcacaaaagattatgaacatcagacgaacgaagaaaaacaatcgttaatgtaccacgcgcctaaagaatctcgtcccttctgccagcaccgttataacttagcgcgcacacacttaaaaagaactattttggcgctgccagaaagcaacgttattcatgccgggtatggtagctatgccgtgattgaggtggacttagacggaggagataaggcattttactttgttgcgttcagggctttcagggaaaagaaaaaactccgtttgcatgtaactagcgcttatcccatttctgaaaaacagaaaggtaaatcagtgaaatttttcaccattgcctacaacttattgagaaataagcagcttcctcagccctcaaaataacaaaacccaccttaaggtgggtttcgccagagaattatctctggtattcagaacgccattaccggactttgccttgaccttgcgataatcgcaggttgcgggatgtctgaatttcttcagtctgctgcatcctggaagatgagaacatgtgttcttattttcgtctctatcatagttgagtatttactctcttacaatcagatctctttcattgctcaacaggcgatggcttcagactttgcattacggaatttttaagaaaggcagggcgaaacgaggaagaagcttttcgccctggacaacattcctgctgacggcactaccataaaaaaacacaacgctttcaacaaccttgcgtttttcatcttccgtagcggctcggaataaatttacgttcttacattccgtctcatagtctttgcgaggcgcgtcccagatagctgtcccagtctttccataccggctgcaaaccctgagcggttaacgcggcagcaaccgcttccggtctgcgatcgtcgtgcggtgagaactgttccaactcggggtgattatcggcatagccacctggctgcgttttcgagaaggcgctgacgttattgatcgccagcggaataacgcgatcgcgaaaccacggtgattcccgcgtggagagtgacagttcaatctccggtgcaagcagtcggaaggcgcagatggtttgcactaactggcgttcatccataatcgacgcaggctcaatgccgccagtacacgggcgcaggcgcggaaaggagacagagtaacggctttgccagtaatgctgttgcagccatagcaaatgttcggcaaccatatagctgtcaacgcgccagttgtcggaaaggccaattagcgcgccgaggcctatcttatcaatccccgcacgccccagccgatccggcgtttccagccgccagaagaagtcctgttttttgcctttcagatgatggcgggcataagtcgcctcgtgatatgtctcctgataaaccatcacgccatccagaccaagttgctttaactcggcgtattccgtctccgccagcggttgcacttccatctgtagtgaagagaactgttcacgaagggcagggagatgacgacgaaagtaatccatccccactttcgcctgatgttcaccagtgactaacagcagatgttcaaagcccatctcccgtatagcggcactttccctggcaatatccgcttcatccagcgttttgcgcttgatgcgattactcatggaaaatccacagtacgtgcagtcgttagcgcaaagattggaaagataaagcgggacgtagaaactaactgtgttgccaaatcgctgacgggtcagacgctgcgcccgttgggccagttgttccagatagccactggcggcaggcgataacagcgccatcatgtcgtcgcgggtgagttgcgaggcatttagcgcccgctctacgtcagcagccgttttgccgttgatacgcaggcggatgtcgtcccagtccagttgtcgccagcgatcgctgaaggttttcatgccgatgcctccagaaatccggtcagcgggctggtggcatgagcaaaataactgcggctgcccggtccggactgacgtgccagtaggcctgcttctaccgccagacgaaatgccttcgccatgttgacgggatcgtccgcgacggcaatcgccgtattcactaacaccgcgtcggcccccatttccagcgcctgcgcggcatggctgggaacgccgatgccagcatcgacaaccaccggcactgtggcctgctggataataatctccagcatggcgcgggtttccagtccctgattcgagccaatcggcgcgccgagcggcatcaccgctgcacagccgacttcttccagacgtttacacaataccggatcggccccgcagtaaggcagcacgacaaatccctgttgtaccagcgtttcggcggctttcagggtttcgatgggatcgggcaacagccagcgggcgtcagggtgaatctctaattttaaccagtttgtgcctaacgcttcacgagccagatgggcggcgaaaatggcttcttccgctgttttcgccccggatgtatttggcagcagggtcacacccgccgcgataagcggttcgaggatagcgtcgttgtgctggcgcaagtcgacacgtttcatcgccagtgtcaccagctggctgccggaagcgcggatcgcctccaccatcagttgtgaagaagcgaatttccctgtgccggtaaacagatgtgaatcaaacgttttgtccgcaatacgtaacatttcaaccccctgcaataacctgaaaaagcaggatctggtcgccatcctgcacgatatgttgcgcccactgctcacgcgggacgatttgctgattaatcgccagagccgcgcccgcttgtcgttggtcgagttgctccagtagttcgtgaacagtttgcccggcggcgcactgcatcgcttgatcgttaaacaggatctgcattgcttcctccgcataccgggcaaccactggcgcggcgcaacgccaggctgcgccactggctcgatttaccgtcgaacagtcggagttctcccgcaggtgtctctataccgcttaataacttaatggcttccagtgcctgcaaagtgcccataaccccgaccaccgggccaaccacgcccgccgtgcggcagttgcgttctggctcctggttatctggccacaggcagcggtaacacccctgctcccagggcggcgtcagtaccatcaactgaccgccaaatccgaccgcgctggcggtgataagcggcgtgttgagtgccacgcaggcggcattaatctcctggcgagtcgccatattgtcggtacagtcgagcaccacatcggcccgtgcaaccgcatcttttaacgcctcacccgttaaccgttgttgtaatgctgtcagttgaatgtcgggattcaactgtgtcagtcgctgttggctgacctgcgatttcgggcgatcgatatcttcagtggtaaagaggatttgtcgttgcagattgcttaaatgcacatcgtcgtcatctgccagtaccagcgtcccgacgccagcgcccgccaggtacagcgcagcaggtgtacccagcccgcccagaccgataatcagcacctggctgtcgagcagtttttgctgcccgtccagagcgatatcgtcgagcaggatttggcggctataacgcataaagtcacggtcattcatcgccaactcctgcaatttccagcaactgtgccgttgccaaacgccagtctgcggcttgagtaatggcgctgacgacggcgatactgccgacacccgttgctatcaccgcaggcgcgcgtgccagactgataccgccaatcgccacggtgggataatccgccagtcgctcaacatgccgtgccagctgttccagcccctgcggtgcagaaggcatctgtttggtttgcgtcgggaacacatgtcccagcgcgatataagaggggcgtgctgccagcgcgacgtcgatttccatatcgtcatgtgtcgaaacgcccagccgcaggcctgccgcgcggatggcattgagatcggtggcttgcaaatcttcctgccccaaatggacgccatacgcctgatgcttgatcgccagccgccagtaatcgttgataaacaatcgcgcgttatagcggcggcccagcgcaattgccgccacgacatcggcttccacctcttcatcgcgccgatctttgatgcgtagctggagagtacgtacgcctgcatccaacagacgttcgatccactgtacgctgtccaccaccgggtacagtcctgaacgaaaaggtacaggaggaaaatcaggctgatacatcacgcttcctccttacgcaggtagatttctccgcctctggcacggaagttctccgacatatccgccattcccatttcaatagtttgcgtggcggcgtaatcacgcacttcctggctgattttcatcgagcagaatttcggcccacacatggagcaaaaatgggcgactttacctgactcttgcggcagggtttcatcgtgataagcgcgggcggtaaacgggtcgagggccagattaaactggtcttcccagcgaaattcgaagcgggctttcgacatggcgttatcgcgaatttgcgcgcccggatgccctttcgccaggtcagcggcgtgggcagcaatcttataggtgataagcccctgcttaacatcttctttattgggcagacccagatgctcttttggcgttacgtaacagagcatcgcgcagccaaaccagccaatcatcgccgcaccaatccccgacgtgaagtggtcatagcccggcgcaatatcggtagttagcggccccagagtgtaaaacggcgcttcgtggcagtgctctaactcctcggtcatattgcggcggatcatctgcatcggcacgtggcctgggccttcaatcatcacctgcacgtcatattcccaggcaattttggtcagttcgcccagcgtatgcagctcggcaaactgcgcttcatcgttggcgtcctgaatagaaccggggcgcagaccgtcgcccagcgacagcgaaacgtcataagcggcacagatttcacaaatttcgcggaagtgttgatagaggaaattttcctgatgatgggagaggcaccatttcgccataatcgaaccgccgcgagagacgataccggtcaggcgtttcgcggtcatcggcacatagcgcagcagtacgcccgcatggatagtgaagtaatccacaccttgctcggcctgttccagcagcgtgtcgcggaacgcttcccaggtaagatcttcggcgatcccgttaaccttctccagcgcctggtagatcggcactgtaccgatcggcaccgggctgttacgcaaaatccactcgcgggtttcgtgaatatagcgaccggtggagagatccatcaccgtatccgctccccagcgcgtggaccataccagcttttccacttcttcttcgatggaagaggtgaccgccgagttgccgatattggcgttaacttttaccaggaaattgcgaccaataatcatcggctccgattccggatgattaatgttggccgggataatcgcacgtccggcagcaacttcatcacggacaaattccgcagtgatattttccggcagatgtgcgccaaagctcattcccggatgctggtggcgtaaaacctcgctacggatgcgctcgcggcccatattctcgcggatggcgatgaattccatttccggcgtgatgatgccctggcgggcgtagtgcagttgggtgacacggcgtcctgctttggcgcgttttggtgttagtacgccgctaaaacgcagttcgtcgaggccatcatctgccagccgcgctttagtgtaatcggaactgcgcacggtaagttcttcggtatcgccgcgcgcatcgatccacggctggcgtagttttgccagcccttgctgcacgttaatggcaatctgcggatcaccatacgggccggaggtgtcgtagaccggaatcgcttcgttttcttcgtactgcggctgttctttgctaccgccaattagcgtcgggctaagctggatctcacgcatcggcacgcgcacgccggggtgtgtgccagtgatataaatgcgttttgagttgggaaaggcggtgccttccagggtgtcgataaaatgttgggcccgggcgcgttgttcgcggcgggtcagttttgttgcagacatagctcattccaaaaagttaaggacgtggcttgtcagacgacggatgaagcaagagacgatcgccgcaggggcgatgcgatagcagattaactcttgttcccttcgcaggtattagcctgatcaggttccgcggatcccgaataaacggtctcagccagttaaggcactccgacaagaaattagccccgcaaatggggcattgaatgtaaattacgcgttaacagcgcagaactcaagcaggatgtttgacgcgggcggcgtcaagcaccagcagaatcagcttatcttccagcacaaagcgcgcttccagcgcctcgccgatgtcagataaaacctgttgaaactcaaggtaattatcatgatcgatggcggtttccagactggaatcgtagtaatccataatctgttgagtattggcttcgagttgcggccaaatcttcgcggcgcgcgcgagttgcccgttgccttccagcttatgaagaatgcgctcataaatactgaaatgtccggcagacaagtaatcgaccaggctctgacaaaaatcatcaagggctttttcgtttagcctcatgtacgattctttgccaggcttaatgccaaccagattgtagtaagccacgagcagatgcttacgtacatgtagccagcgatcaaccagtttgttacttcctctgacgcgctccgtcaggttatcgagctggttaagcatgattgactccgcaagtttgtattcaaaaactgctcagtgagaaatgtaaaaaccatgttaaacatgccagtgatgcaaaggtagtgcaagagctatggatcgtataattgaaaaattagatcacggctggtgggtcgtcagccatgaacaaaaattatggttgccgaagggagaattgccatatggcgaacgggcaaatttcgatcttgtgggtcagcgcgcactacaaatcggcgaatggcagggggaacctgtttggttagtacaacagcagcggcgtcacgatatggggtcggtacgtcaggtcattgatctcgatgttgggctgtttcaactggccggacgaggcgtacaactggcggagttttaccgatcgcataaatactgtggttactgcgggcatgaaatgtatccgagcaaaaccgaatgggcgatgctgtgcagccattgccgtgagcgttactacccgcaaatcgccccctgcattattgttgccatccgtcgcgatgattcgatcctcctcgcccagcatacccgccatcgtaacggtgtccatacagtacttgccggattcgtcgaagtgggcgaaaccctcgagcaggcagtcgcgcgggaagtgatggaagagagcggaattaaagttaaaaacttgcgttacgtgacttctcagccgtggccgtttcctcagtctttaatgaccgcgtttatggcggaatatgacagcggcgacatcgtgatcgacccgaaagaattgctcgaggcgaactggtatcgctatgacgatttgccgttactcccgccgcccggcaccgtagcgcgccgtctgatagaagatacggtggcgatgtgtcgggcagagtatgagtgatgatacactgaccgcctgacgcactaaggaacagccaaaatgaccgaacttaaaaacgatcgttatctgcgggcgctgctccagcccgttgatgtcactccagtatggatgatgcgccaggcgggtcgctatctaccggaatataaagccacgcgcgcccaggcaggcgattttatgtcgctgtgcaaaaacgccgagctggcgtgcgaagtgactttgcaaccgctgcgtcgctacccgctggatgcggcgatcctcttttccgatatcctcaccgtgccggacgcgatggggttagggctctattttgaagccggagaaggtccgcgttttacctcgccagtcacctgcaaagctgacgtcgataaactgccaattccggacccggaagatgaactgggttacgtgatgaacgcggtgcgtaccattcgtcgcgaactgaaaggcgaagtgccgctgattggtttttccggcagcccgtggacgctggcgacctacatggtggaaggcggcagcagcaaagccttcaccgtgatcaaaaaaatgatgtatgccgatccgcaggcgctgcacgctctgctcgataaactggcgaaaagcgtcactttgtatctgaatgcgcagattaaagccggtgctcaggcagtgatgattttcgacacctggggcggcgtgcttaccgggcgcgattatcaacagttctcgctctattacatgcataaaattgttgatggtttactgcgtgaaaacgacggtcgccgcgtaccggtcacgctgtttaccaaaggcggcggacagtggctggaagccatggcagaaaccggttgcgatgcgctgggcctcgactggacaacggacatcgccgatgcgcgccgccgtgtgggcaataaagtcgcgttgcagggtaatatggatccgtcgatgctgtacgcgccgcctgcccgcattgaagaagaagtagcgactatacttgcaggtttcggtcacggcgaaggtcatgtctttaaccttggtcacggcattcatcaggatgtgccgccagaacatgctggcgtgttcgtggaggcagtgcatcgactgtctgaacagtatcaccgctaaggagtgattatggatctcgcgtcattacgcgctcaacaaatcgaactggcttcttctgtgatccgcgaggatcgactcgataaagatccaccggatctgatcgccggagccgatgtcgggtttgagcagggcggagaagtgacgcgagcggcgatggtgctgctgaaatatccctcgcttgagctggtcgagtataaagttgcccgcatcgccaccaccatgccttacattccaggttttctttccttccgcgaatatcctgcgctgctggcagcgtgggagatgctgtcgcaaaagccggatttagtgtttgtcgatggtcatgggatctcgcatcctcgccgtcttggcgtcgccagccattttggcttattggtggatgtgccgaccattggcgtggcgaaaaaacggctctgcggtaaattcgaaccgctctccagcgaaccgggcgcgctggccccactgatggataaaggcgagcagctggcctgggtctggcgcagcaaagcgcgctgtaacccgttgtttatcgctaccggccatcgggtcagcgtggacagcgcgctggcgtgggtacaacgctgcatgaaaggctatcgtctgccggagccaacgcgctgggcggacgcggtggcctcggaacgtccggcgttcgtgcgctatacagcaaatcagccctaattcaggtaaactgcggataatttccgtatttgagaactcaacatgttacaaaacccaattcatctgcgtctggagcgcctggaaagctggcagcatgtcactttcatggcttgcttatgcgaacgcatgtaccccaattacgccatgttctgccagcaaaccggttttggtgatgggcaaatttaccgtcgcattctcgatctcatctgggaaacgctgaccgttaaagacgcaaaagtaaatttcgacagccaactggagaaatttgaagaagcgattccttcagccgacgatttcgatctgtacggcgtttatccggcaatcgatgcctgcgtggcgttaagtgaactggtccattcgcgtttgagtggtgaaacgctcgaacacgcggtggaagtgagtaagacctccatcacgaccgttgcgatgctggaaatgactcaggctggtcgcgaaatgagcgatgaagagcttaaagaaaacccagctgtagagcaagaatgggacattcagtgggaaatattccgacttttagctgagtgcgaagaacgcgatatcgagctgataaaaggccttagggcagacctgcgtgaggcgggtgagagcaatattggtataatttttcagcaataagaccagaaaacgtgatttaacgcctgatttgtcgtacctggagtcttccctttcgccccccgtctggtctacatttggggggcgaaaaaaagtggctatcggtgcgtgtatgcaggagagtgctattctggcatttccgtcgcactcgatgcttagcaagcgataaacacattgtaaggataacttatgaacaagactcaactgattgatgtaattgcagagaaagcagaactgtccaaaacccaggctaaagctgctctggagtccactctggctgcaattactgagtctctgaaagaaggcgatgctgtacaactggttggtttcggtaccttcaaagtgaaccaccgcgctgagcgtactggccgcaacccgcagaccggtaaagaaatcaaaattgccgcagctaacgtaccggcatttgtttctggcaaggcactgaaagacgcagttaagtaagattgcgtggcagtgaacagttttaacgaaggggtggtttcaccccttttgtctttctggcgtcgatcattgatgctggctggcgctctgcttctcactgcctgtagtcataactcttcacttcctccctttaccgccagtggatttgctgaagaccagggcgcggtacgcatctggcgaaaagacagcggcgataatgtgcatctgcttgccgtgtttagcccgtggcgcagtggcgataccacgacgcgagagtatcgctggcagggcgataacctcacgctcatcaatatcaatgtttacagcaaaccgccggtgaatattcgcgcgcgttttgacgatcgcggtgatctgagctttatgcaacgtgaatccgatggggaaaagcagcagctttctaacgaccaaatcgatttataccgttatcgtgctgatcagatccgccagattagcgatgccttacgtcaggggagagtcgtgctgcgccaggggcgctggcatgcgatggaacagaccgtgaccacctgcgaagggcaaaccattaaacctgatttagattcgcaggcgatagcgcatatcgagcgccgccagagccgctcttctgttgatgtcagcgtggcatggctggaagcgcccgaaggttcgcaattactgttagtggcaaactctgatttctgtcgctggcaacccaacgagaaaacgttctgatttaccagtggcccatacccatatgaccgccaccaccgcagccgccgtagcccatgcccattccggctccgcgcggaatacccgcttcagccatcgcgatatctcgtttcacccgtaactcatctaacgactgacgcaaattctccatctctttggcgaccgcgttaattttgctgctatccggtgggttcgcggctaacagggcattgtattcataacgcttcgtcaccagttgctgttgcagtgcgctgctttgagcgtaaaagtcattatggattttctgccacgctgtctgttgttcgctggtcaaaggcgcggcattttgctgccacataccgtgtccgccgtgagcaaatgcagatgtcgatcccatcgccattgctgaaagcgccatcattaccagggcaattttcgtgttccgtttcatggttaatcctccagtggttgtcttacttcgggtattgcatcttccgtgccaacgatgaaacgctgatatgacgggtaatctggcatgataaacgagtaaaaatgactcgcctgctgcgggtagcgagtcatttttactcattgaaacttaagcctttgtgttacagcgcagggtaagcgctgataaaagatggcatgatttctgctgtcagaaagggatgagcaggcaaagaagaagatgcgttttatgcaacgttctaaagactccttagctaaatggttaagcgcgatcctccccgtggtcattgttgggctggtgggattgtttgcggtaactgtgattcgtgattatgggcgggcaagcgaggcagaccgccaggcattactggaaaaaggtaatgtgcttatccgcgctctggagtcgggaagccgcgtagggatggggatgcgaatgcaccatgtacagcaacaggcgcttctggaagagatggcgggacagccgggagtgttgtggttcgcagtcaccgatgcgcagggcatcattattcttcatagcgaccccgataaggtcgggcgtgcgctctattcgccggatgaaatgcagaaattaaagccagaggaaaactcccgctggcggctgcttgggaaaacggaaactacgcctgcacttgaggtctatcgtttgttccagccaatgtcagcgccctggcggcatggaatgcacaatatgccgcgctgtaacggcaaagctgtgccacaagtagatgcacaacaggctatttttatcgccgttgatgccagtgatctggttgcaacccagagtggggaaaagcgcaataccctgattatcctcttcgccctggcgacggtcttgctggcaagcgtattgtcattcttctggtatcgccgctatctgcgctcgcgccagcttctacaagatgaaatgaagcgcaaagagaagctggtggcgctggggcatcttgcggcaggcgttgcccacgaaatccgtaacccactttcctcgattaaaggactggcgaaatactttgccgagcgcgcgcctgcagggggagaagcgcatcaactggcgcaggtgatggcgaaagaggccgaccgtttaaaccgcgtggtaagcgagttgctggaactggttaagccaacgcatctggctttgcaggcggtggatctcaacacgctgattaaccactcattacagctggtaagtcaggatgcaaacagccgggagatccagttacgctttaccgccaacgacacattaccggaaattcaggccgacccggacaggctgactcaggtcctgttgaatctctatctcaatgctattcaggcgattggtcagcatggcgtgattagcgtgacggccagcgaaagcggcgcgggcgtgaaaatcagcgttaccgacagcggtaagggaattgcggcagatcagcttgatgccatcttcactccgtacttcaccactaaagccgaaggcaccggattggggctggcggtcgtgcataatattgttgaacaacacggtggtacaattcaggtcgcaagccaggagggaaaaggctcaacgttcaccctctggcttccggtcaatattacgcgtaaggacccacaaggatgacgcacgataatatcgatattctggtggtggatgatgacattagccactgcactattttgcaggctttactgcgcggctggggctataacgtcgcgctggcgaacagcgggcgacaggcgttggagcaggtgcgggaacaggtttttgatcttgtgctttgcgatgtgcgaatggcggagatggacggcatcgccacgctgaaagagatcaaagcgttaaacccggcaattccggtgctgattatgactgcgtactccagcgtcgagacggcggtagaggcactgaaaactggggcgctggattatctcatcaagccgctggatttcgataacctacaggcgacgctggaaaaagcgctcgcgcatacgcacagtattgatgctgaaacacctgcggtgactgccagccagttcggtatggtcggtaaaagcccggcgatgcaacacctgctcagtgaaatcgccctcgtcgcgccatcggaagccacggtactgatccacggcgattccggcaccggtaaagagctggtcgccagggcgattcacgccagtagcgcacgtagcgaaaaaccgctggtaacgctcaactgtgcggcactcaacgaatccttgctggaatctgaattgttcggtcacgaaaaaggggcgtttactggagccgataaacgccgggaagggcgctttgttgaggcggacggcggcacgctgtttctcgatgaaattggcgatatctcgccgatgatgcaggtgcgtctgctgcgtgcgattcaggagcgcgaagttcagcgtgtcggtagcaaccagattatctcggttgatgtccggctgattgcggcgacccatcgcgatcttgccgcagaggtgaatgccgggcgttttcgccaggatctctactatcgcctgaatgtggtggcgattgaagtaccatcgctgcggcaacggcgggaagatatccctctgctggctggccattttctgcagcgctttgccgagcgtaatcgcaaggcggtaaaaggttttacgccccaggcgatggatctgttgattcattacgactggccgggaaatattcgtgagctggaaaacgcggtggaacgggcagtggtgctgctgaccggggaatatatttccgaacgcgagctgccgctggcgattgccagtacgccgatcccgctgggacaaagtcaggatattcagccgttggtggaagtggaaaaagaggtgattctggcggcgctggagaaaacgggcggcaacaaaaccgaagccgcccgtcagttagggatcacgcgcaaaacgctattggcaaaactgtcgcgttagttctgctcgcgttcgatagcgcgccagccgatatctttccggcagaagcagtcgtcccagtggatatcggtcattaaggcataggcgcgtttctgcgcttctgccacggtatgacccagcgcggtgacgcacagtacgcgcccgccgttggtcactacctgctcgtcatccgccagttttgtgcccgcgtggaacactttgccgcctgccacttcttccagcggcaggccgtggatcacgtcaccggtgcggtaatcacccggatatccacccgcagccatcaccacgccgagagaagcgcgttcatcccactcggacgttttctcgtccagtttgctttcacaggccgccaggcagagctcaaccagatcggacttcatgcgcagcataatcggctgggtttccggatcgccaaagcggcagttaaattcaataaccttcggattgccctgtttgtcgatcatcaggcccgcgtagagaaaaccggtgtaggtgttgccttccgccgccatgcctttcacggttggccagataatacgttccatggtgcgctgatgaacgtcatcggttactaccggcgcgggggagtaagcgcccatcccgccggtgtttggtccggtatctttatcgcctacgcgtttgtgatcctggctggtagccatcggcagcacatgctcgccgtccaccatcacgataaagctcgcttcttcgccatcgaggaactcttcgataacgatgcgatgacccgcgtcgccaaaagcgttgcccgccagcatatcgtgaacagccgcttccgcttcttccagcgtcatcgccacgataacgcctttcccggcagccagaccgtccgctttaatgacgattggcgcgcctttctcacgcagatacgccagcgcaggttctacctcggtgaagttctggtattccgccgtagggatcttatggcgggccaggaaatctttggtaaacgcttttgagccttccagttgggccgcacctgcggttgggccgaagattttcagcccggcggcgcggaaggtatcgaccacgcctttcaccagcggcgcttccgggccgacgatggtcagatcaatcttttcgttttgtgcgaaatccaacagcgccgggatatcggtcacgccaatagcaacgttttgcagcgcgggttccagtgcagtgcctgcattacccggagcaacaaaaacagtctcaaccagcggcgactgggccgctttccaggccagcgcgtgctcgcgcccgccgttaccaatcactaatactttcatctattgctccattaatggcggaagtggcgcatgtcggtgaagagcatcgcaataccgtgctcgtcggcggcggcaatcacttcgtcatcacggatagaaccgccaggctggattacgcaggtcacgcccgcagcggcggcggcatcaataccgtcgcggaacgggaagaacgcgtcagaagccatcgaggaacctttcacttccaggccttcatcggccgctttaataccggcgatttttgcggagtacacgcggctcatctggcccgcgccaatgccgatagtcatattgtttttggcatagacgatagcgttggatttcacaaacttcgccaccttccagcagaacagcgcatcacgcagttcctgttcgctcggctgacgtttggtcaccacgcgcagttcttccgcaccgaccatccccaggtcacgatcctgaaccagcagaccgccgttcacgcgtttgaaatcgaggcccggaacacgctcgccccactgaccgcaggtcagaacgcgtacgttctgtttggcggcggtgattttcagggcttcttcgctggcggacggcgcaataatcacttcgacaaactgacgagaaatgatggcctgtgcggtttccgcatccagctcgcggttaaaggcaatgatgccgccgaatgcggaggttgggtcggttttgtacgcgcgatcgtaagcatcaagaatggaattgccgatagccacgccgcaagggttggcgtgcttcacaatcacacatgccggctcggcgaactctttcacgcactccagcgccgcatcggtatcggcgatgttgttataagagagggctttaccctgaacctgggttgcggtagcaacggaggcttctttcacattctcttctatatagaaggcagcctgctggtggctgttctcgccgtaacgcatatccagcttcttaatgaagttcaggttcagcgtgcgtgggaagcgaccggcggcttctttgctttcaccgtggtaagccggaaccatgctgccgaagtagttggcaatcatgctgtcgtaggcggcagtgtgttcgaaggctttgatggcgaggtcgaaacgggttgcaagcgtcagcgatccttcgttgtcatccatctctttaataatggcgtcatagtcgctgctcttcaccacgattgcgacatctttatggttcttggcggcggagcgcaccatcgttgggccgccgatatcgatgttctcaaccgcatcttccagcgagcaaccttcacgggccacggtctgggcgaacggatacaggttaacaaccaccatatcgataggctggatctgatgttcttccataatggcatcgtcctggccgcgacggcccagaatgccaccatgtactttcggatgcagggtcttcacgcgtccatccatcatctccgggaaaccggtgtaatcggaaacttcggttaccggcagacctttttctgctaacagacgggcagtgccccctgtagacagcagctccacaccgcgtgcggaaagtgcctgggcgaattcgacgataccggctttgtcagaaacactgagcagagcgcggcggactggacgacgttgttgcatggtaaatcccctggatttgactattacagagagcgttagctgaatttttcgcgaaaaactcagctaacgcccctaacggggcatccttatttttcgcccgcattgtaacgaaaacgtttgcgcaacgctcgcgaatttttctctttcaatggtgatcacaattttgactgtggttaccgtgggcaaaatacagaaattacattgatgattgtggataactctgtgcgtaaaaaggtataaagcgggcttttgctggggaatgcagcagtcagtcatttttctgcaatttttctattgcggcctgcggagaactccctataatgcgcctccatcgacacggcggatgtgaatcacttcacacaaacagccggttcggttgaagagaaaaatcctgaaattcagggttgactctgaaagaggaaagcgtaatatacgccacctcgcgacagtgcgctaaagcgcgtcgcaactgctctttaacaatttatcagacaatctgtgtgggcactcgaagatacggattcttaacgtcgcaagacgaaaaatgaataccaagtctcaagagtgaacacgtaattcattacgaagtttaattctttgagcatcaaacttttaaattgaagagtttgatcatggctcagattgaacgctggcggcaggcctaacacatgcaagtcgaacggtaacaggaagaagcttgcttctttgctgacgagtggcggacgggtgagtaatgtctgggaaactgcctgatggagggggataactactggaaacggtagctaataccgcataacgtcgcaagaccaaagagggggaccttcgggcctcttgccatcggatgtgcccagatgggattagctagtaggtggggtaacggctcacctaggcgacgatccctagctggtctgagaggatgaccagccacactggaactgagacacggtccagactcctacgggaggcagcagtggggaatattgcacaatgggcgcaagcctgatgcagccatgccgcgtgtatgaagaaggccttcgggttgtaaagtactttcagcggggaggaagggagtaaagttaatacctttgctcattgacgttacccgcagaagaagcaccggctaactccgtgccagcagccgcggtaatacggagggtgcaagcgttaatcggaattactgggcgtaaagcgcacgcaggcggtttgttaagtcagatgtgaaatccccgggctcaacctgggaactgcatctgatactggcaagcttgagtctcgtagaggggggtagaattccaggtgtagcggtgaaatgcgtagagatctggaggaataccggtggcgaaggcggccccctggacgaagactgacgctcaggtgcgaaagcgtggggagcaaacaggattagataccctggtagtccacgccgtaaacgatgtcgacttggaggttgtgcccttgaggcgtggcttccggagctaacgcgttaagtcgaccgcctggggagtacggccgcaaggttaaaactcaaatgaattgacgggggcccgcacaagcggtggagcatgtggtttaattcgatgcaacgcgaagaaccttacctggtcttgacatccacggaagttttcagagatgagaatgtgccttcgggaaccgtgagacaggtgctgcatggctgtcgtcagctcgtgttgtgaaatgttgggttaagtcccgcaacgagcgcaacccttatcctttgttgccagcggtccggccgggaactcaaaggagactgccagtgataaactggaggaaggtggggatgacgtcaagtcatcatggcccttacgaccagggctacacacgtgctacaatggcgcatacaaagagaagcgacctcgcgagagcaagcggacctcataaagtgcgtcgtagtccggattggagtctgcaactcgactccatgaagtcggaatcgctagtaatcgtggatcagaatgccacggtgaatacgttcccgggccttgtacacaccgcccgtcacaccatgggagtgggttgcaaaagaagtaggtagcttaaccttcgggagggcgcttaccactttgtgattcatgactggggtgaagtcgtaacaaggtaaccgtaggggaacctgcggttggatcacctccttaccttaaagaagcgttctttgcagtgctcacacagattgtctgatagaaagtgaaaagcaaggcgtcttgcgaagcagactgatacgtccccttcgtctagaggcccaggacaccgccctttcacggcggtaacaggggttcgaatcccctaggggacgccacttgctggtttgtgagtgaaagtcacctgccttaataatctcaaaactcatcttcgggtgatgtttgagatatttgctctttaaaaatctggatcaagctgaaaattgaaacactgaacaacgaaagttgttcgtgagtctctcaaattttcgcaacacgatgatgaatcgtaagaaacatcttcgggttgtgaggttaagcgactaagcgtacacggtggatgccctggcagtcagaggcgatgaaggacgtgctaatctgcgataagcgtcggtaaggtgatatgaaccgttataaccggcgatttccgaatggggaaacccagtgtgtttcgacacactatcattaactgaatccataggttaatgaggcgaaccgggggaactgaaacatctaagtaccccgaggaaaagaaatcaaccgagattcccccagtagcggcgagcgaacggggagcagcccagagcctgaatcagtgtgtgtgttagtggaagcgtctggaaaggcgcgcgatacagggtgacagccccgtacacaaaaatgcacatgctgtgagctcgatgagtagggcgggacacgtggtatcctgtctgaatatggggggaccatcctccaaggctaaatactcctgactgaccgatagtgaaccagtaccgtgagggaaaggcgaaaagaaccccggcgaggggagtgaaaaagaacctgaaaccgtgtacgtacaagcagtgggagcacgcttaggcgtgtgactgcgtaccttttgtataatgggtcagcgacttatattctgtagcaaggttaaccgaataggggagccgaagggaaaccgagtcttaactgggcgttaagttgcagggtatagacccgaaacccggtgatctagccatgggcaggttgaaggttgggtaacactaactggaggaccgaaccgactaatgttgaaaaattagcggatgacttgtggctgggggtgaaaggccaatcaaaccgggagatagctggttctccccgaaagctatttaggtagcgcctcgtgaattcatctccgggggtagagcactgtttcggcaagggggtcatcccgacttaccaacccgatgcaaactgcgaataccggagaatgttatcacgggagacacacggcgggtgctaacgtccgtcgtgaagagggaaacaacccagaccgccagctaaggtcccaaagtcatggttaagtgggaaacgatgtgggaaggcccagacagccaggatgttggcttagaagcagccatcatttaaagaaagcgtaatagctcactggtcgagtcggcctgcgcggaagatgtaacggggctaaaccatgcaccgaagctgcggcagcgacgcttatgcgttgttgggtaggggagcgttctgtaagcctgcgaaggtgtgctgtgaggcatgctggaggtatcagaagtgcgaatgctgacataagtaacgataaagcgggtgaaaagcccgctcgccggaagaccaagggttcctgtccaacgttaatcggggcagggtgagtcgacccctaaggcgaggccgaaaggcgtagtcgatgggaaacaggttaatattcctgtacttggtgttactgcgaaggggggacggagaaggctatgttggccgggcgacggttgtcccggtttaagcgtgtaggctggttttccaggcaaatccggaaaatcaaggctgaggcgtgatgacgaggcactacggtgctgaagcaacaaatgccctgcttccaggaaaagcctctaagcatcaggtaacatcaaatcgtaccccaaaccgacacaggtggtcaggtagagaataccaaggcgcttgagagaactcgggtgaaggaactaggcaaaatggtgccgtaacttcgggagaaggcacgctgatatgtaggtgaggtccctcgcggatggagctgaaatcagtcgaagataccagctggctgcaactgtttattaaaaacacagcactgtgcaaacacgaaagtggacgtatacggtgtgacgcctgcccggtgccggaaggttaattgatggggttagcgcaagcgaagctcttgatcgaagccccggtaaacggcggccgtaactataacggtcctaaggtagcgaaattccttgtcgggtaagttccgacctgcacgaatggcgtaatgatggccaggctgtctccacccgagactcagtgaaattgaactcgctgtgaagatgcagtgtacccgcggcaagacggaaagaccccgtgaacctttactatagcttgacactgaacattgagccttgatgtgtaggataggtgggaggctttgaagtgtggacgccagtctgcatggagccgaccttgaaataccaccctttaatgtttgatgttctaacgttgacccgtaatccgggttgcggacagtgtctggtgggtagtttgactggggcggtctcctcctaaagagtaacggaggagcacgaaggttggctaatcctggtcggacatcaggaggttagtgcaatggcataagccagcttgactgcgagcgtgacggcgcgagcaggtgcgaaagcaggtcatagtgatccggtggttctgaatggaagggccatcgctcaacggataaaaggtactccggggataacaggctgataccgcccaagagttcatatcgacggcggtgtttggcacctcgatgtcggctcatcacatcctggggctgaagtaggtcccaagggtatggctgttcgccatttaaagtggtacgcgagctgggtttagaacgtcgtgagacagttcggtccctatctgccgtgggcgctggagaactgaggggggctgctcctagtacgagaggaccggagtggacgcatcactggtgttcgggttgtcatgccaatggcactgcccggtagctaaatgcggaagagataagtgctgaaagcatctaagcacgaaacttgccccgagatgagttctccctgactccttgagagtcctgaaggaacgttgaagacgacgacgttgataggccgggtgtgtaagcgcagcgatgcgttgagctaaccggtactaatgaaccgtgaggcttaaccttacaacgccgaaggtgttttggcggattgagagaagattttcagcctgatacagattaaatcagaacgcagaagcggtctgataaaacagaatttgcctggcggcagtagcgcggtggtcccacctgaccccatgccgaactcagaagtgaaacgccgtagcgccgatggtagtgtggggtctccccatgcgagagtagggaactgccaggcatcaaattagaaaaaccccggtccataaggccggggttttttgcatatcaattatttgcatgatgaagggaatctcatgtcagttctgtatatccaaattcgtcgtaatcaaattactgttcgcgatcttgaaagcaaacgtgaagtgtcaggagacgctgccttcagtaaccagcgcctgttaatcgccaatttctttgttgcagaaaaagttctgcaagatcttgttctgcaactccacccacgttcaacctggcattcttttttgccagcaaaacgtatggatattgttgtgagcgcactggaaatgaatgagggcggtttgtcacaggttgaggaacgcattctccatgaagtggtcgctggggcaacgttaatgaaatatcgccagttccacatccatgcgcaatcagcggtactcagtgatagtgcggtcatggcaatgcttaagcagaaataatcgtgtcaccattggtgggtactaaacctgaagttcagcccaccgggatgagaaaaaatcgcctacgcccccacatacgccagattcagcaacggatacggtttccccaaatcgtccacctcagagcgtcccgtaaccttaaaacccaccttcttatagaacccaaccgcctgctcattttgctcattaacgttggttgtcagttccggtgccatcgagagcgcatgctccaccagcacccgacctacgccgcagccgcgcacatcaggatcgataaacagcgcatccatatgctgcccacttagcaacataaatccaaccggctgatcccgctcattaaccgcgacccacaacggcgcttccggcaggaaggaacgaactaggtcctccagctcggtccgatactctgctgatagaaaatcgtgagtggcatcgacagaacgacaccaaatcgcaacgagttcctccccttcctcatgccgtgagcggcgaatactaataaccattttctctccttttagtcattcttatattctaacgtagtcttttccttgaaactttctcaccttcaacatgcaggctcgacattggcaaattttctggttatcttcagctatctggatgtctaaacgtataagcgtatgtagtgaggtaatcaggttatgccgattcgtgtgccggacgagctacccgccgtcaatttcttgcgtgaagaaaacgtctttgtgatgacaacttctcgtgcgtctggtcaggaaattcgtccacttaaggttctgatccttaacctgatgccgaagaagattgaaactgaaaatcagtttctgcgcctgctttcaaactcacctttgcaggtcgatattcagctgttgcgcatcgattcccgtgaatcgcgcaacacgcccgcagagcatctgaacaacttctactgtaactttgaagatattcaggatcagaactttgacggtttgattgtaactggtgcgccgctgggcctggtggagtttaatgatgtcgcttactggccgcagatcaaacaggtgctggagtggtcgaaagatcacgtcacctcgacgctgtttgtctgctgggcggtacaggccgcgctcaatatcctctacggcattcctaagcaaactcgcaccgaaaaactctctggcgtttacgagcatcatattctccatcctcatgcgcttctgacgcgtggctttgatgattcattcctggcaccgcattcgcgctatgctgactttccggcagcgttgattcgtgattacaccgatctggaaattctggcagagacggaagaaggggatgcatatctgtttgccagtaaagataagcgcattgcctttgtgacgggccatcccgaatatgatgcgcaaacgctggcgcaggaatttttccgcgatgtggaagccggactagacccggatgtaccgtataactatttcccgcacaatgatccgcaaaatacaccgcgagcgagctggcgtagtcacggtaatttactgtttaccaactggctcaactattacgtctaccagatcacgccatacgatctacggcacatgaatccaacgctggattaatcttctgtgatagtcgatcgttaagcgattcagcaccttacctcaggcaccttcgggtgccttttttatttccgaaacgtacctcagcaggtgaataaattttattcatattgttatcaacaagttatcaagtatttttaattaaaatggaaattgtttttgattttgcattttaaatgagtagtcttagttgtgctgaacgaaaagagcacaacgatccttcgttcacagtggggaagttttcggatccatgacgaggagctgcacgatgactgaacaggcaacaacaaccgatgaactggctttcacaaggccgtatggcgagcaggagaagcaaattcttactgccgaagcggtagaatttctgactgagctggtgacgcattttacgccacaacgcaataaacttctggcagcgcgcattcagcagcagcaagatattgataacggaacgttgcctgattttatttcggaaacagcttccattcgcgatgctgattggaaaattcgcgggattcctgcggacttagaagaccgccgcgtagagataactggcccggtagagcgcaagatggtgatcaacgcgctcaacgccaatgtgaaagtctttatggccgatttcgaagattcactggcaccagactggaacaaagtgatcgacgggcaaattaacctgcgtgatgcggttaacggcaccatcagttacaccaatgaagcaggcaaaatttaccagctcaagcccaatccagcggttttgatttgtcgggtacgcggtctgcacttgccggaaaaacatgtcacctggcgtggtgaggcaatccccggcagcctgtttgattttgcgctctatttcttccacaactatcaggcactgttggcaaagggcagtggtccctatttctatctgccgaaaacccagtcctggcaggaagcggcctggtggagcgaagtcttcagctatgcagaagatcgctttaatctgccgcgcggcaccatcaaggcgacgttgctgattgaaacgctgcccgccgtgttccagatggatgaaatccttcacgcgctgcgtgaccatattgttggtctgaactgcggtcgttgggattacatcttcagctatatcaaaacgttgaaaaactatcccgatcgcgtcctgccagacagacaggcagtgacgatggataaaccattcctgaatgcttactcacgcctgttgattaaaacctgccataaacgcggtgcttttgcgatgggcggcatggcggcgtttattccgagcaaagatgaagagcacaataaccaggtgctcaacaaagtaaaagcggataaatcgctggaagccaataacggtcacgatggcacatggatcgctcacccaggccttgcggacacggcaatggcggtattcaacgacattctcggctcccgtaaaaatcagcttgaagtgatgcgcgaacaagacgcgccgattactgccgatcagctgctggcaccttgtgatggtgaacgcaccgaagaaggtatgcgcgccaacattcgcgtggctgtgcagtacatcgaagcgtggatctctggcaacggctgtgtgccgatttatggcctgatggaagatgcggcgacggctgaaatttcccgtacctcgatctggcagtggatccatcatcaaaaaacgttgagcaatggcaaaccggtgaccaaagccttgttccgccagatgctgggcgaagagatgaaagtcattgccagcgaactgggcgaagaacgtttctcccaggggcgttttgacgatgccgcacgcttgatggaacagatcaccacttccgatgagttaattgatttcctgaccctgccaggctaccgcctgttagcgtaaaccaccacataactatggagcatctgcacatgaaaacccgtacacaacaaattgaagaattacagaaagagtggactcaaccgcgttgggaaggcattactcgcccatacagtgcggaagatgtggtgaaattacgcggttcagtcaatcctgaatgcacgctggcgcaactgggcgcagcgaaaatgtggcgtctgctgcacggtgagtcgaaaaaaggctacatcaacagcctcggcgcactgactggcggtcaggcgctgcaacaggcgaaagcgggtattgaagcagtctatctgtcgggatggcaggtagcggcggacgctaacctggcggccagcatgtatccggatcagtcgctctatccggcaaactcggtgccagctgtggtggagcggatcaacaacaccttccgtcgtgccgatcagatccaatggtccgcgggcattgagccgggcgatccgcgctatgtcgattacttcctgccgatcgttgccgatgcggaagccggttttggcggtgtcctgaatgcctttgaactgatgaaagcgatgattgaagccggtgcagcggcagttcacttcgaagatcagctggcgtcagtgaagaaatgcggtcacatgggcggcaaagttttagtgccaactcaggaagctattcagaaactggtcgcggcgcgtctggcagctgacgtgacgggcgttccaaccctgctggttgcccgtaccgatgctgatgcggcggatctgatcacctccgattgcgacccgtatgacagcgaatttattaccggcgagcgtaccagtgaaggcttcttccgtactcatgcgggcattgagcaagcgatcagccgtggcctggcgtatgcgccatatgctgacctggtctggtgtgaaacctccacgccggatctggaactggcgcgtcgctttgcacaagctatccacgcgaaatatccgggcaaactgctggcttataactgctcgccgtcgttcaactggcagaaaaacctcgacgacaaaactattgccagcttccagcagcagctgtcggatatgggctacaagttccagttcatcaccctggcaggtatccacagcatgtggttcaacatgtttgacctggcaaacgcctatgcccagggcgagggtatgaagcactacgttgagaaagtgcagcagccggaatttgccgccgcgaaagatggctataccttcgtatctcaccagcaggaagtgggtacaggttacttcgataaagtgacgactattattcagggcggcacgtcttcagtcaccgcgctgaccggctccactgaagaatcgcagttctaagcaacaacaaccgttgctgactgtaggccggataaggcgttcacgccgcatccggcaatcggtgcacgatgcctgatgcgacgcttgcgcgtcttatcatgcctacagccgttgccgaacgtaggctggataaggcgtttacgccgcatccggcaattctctgctcctgatgagggcgctaaatgccgcgtggcctggaattattgattgctcaaaccattttgcaaggcttcgatgctcagtatggtcgattcctcgaagtgacctccggtgcgcagcagcgtttcgaacaggccgactggcatgctgtccagcaggcgatgaaaaaccgtatccatctttacgatcatcacgttggtctggtcgtggagcaactgcgctgcattactaacggccaaagtacggacgcggcatttttactacgtgttaaagagcattacacccggctgttgccggattacccgcgcttcgagattgcggagagcttttttaactccgtgtactgtcggttatttgaccaccgctcgcttactcccgagcggctttttatctttagctctcagccagagcgccgctttcgtaccattccccgcccgctggcgaaagactttcaccccgatcacggctgggaatctctactgatgcgcgttatcagcgacctaccgctgcgcctgcgctggcagaataaaagccgtgacatccattacattattcgccatctgacggaaacgctggggacagacaacctcgcggaaagtcatttacaggtggcgaacgaactgttttaccgcaataaagccgcctggctggtaggcaaactgatcacaccttccggcacattgccatttttgctgccgatccaccagacggacgacggcgagttatttattgatacctgcctgacgacgaccgccgaagcgagcattgtttttggctttgcgcgttcttattttatggtttatgcgccgctgcccgcagcgctggtcgagtggctacgggaaattctgccaggtaaaaccaccgctgaattgtatatggctatcggctgccagaagcacgccaaaaccgaaagctaccgcgaatatctcgtttatctacagggctgtaatgagcagttcattgaagcgccgggtattcgtggaatggtgatgttggtgtttacgctgccgggctttgatcgggtattcaaagtcatcaaagacaggttcgcgccgcagaaagagatgtctgccgctcacgttcgtgcctgctatcaactggtgaaagagcacgatcgcgtgggccgaatggcggacacccaggagtttgaaaactttgtgctggagaagcggcatatttccccggcattaatggaattactgcttcaggaagcagcggaaaaaatcaccgatctcggcgaacaaattgtgattcgccatctttatattgagcggcggatggtgccgctcaatatctggctggaacaagtggaaggtcagcagttgcgcgacgccattgaagaatacggtaacgctattcgccagcttgccgctgctaacattttccctggcgacatgctgtttaaaaacttcggtgtcacccgtcacgggcgtgtggttttttatgattacgatgaaatttgctacatgacggaagtgaatttccgcgacatcccgccgccgcgctatccggaagacgaacttgccagcgaaccgtggtacagcgtctcgccgggcgatgttttcccggaagagtttcgccactggctatgcgccgacccgcgtattggtccgctgtttgaagagatgcacgccgacctgttccgcgctgattactggcgcgcactacaaaaccgcatacgtgaagggcatgtggaagatgtttatgcgtatcggcgcaggcaaagatttagcgtacggtatggggagatgcttttttgagtaaagcttccatataatttttctccgcaatgtatcgagggttatccgtaaagccaaagctttcagccatcttatttaatgtattaaggattaattcagcaataacccggtgaccaaattcaaaagccaactcaaaggcagagtatttttgtggggctttgtgttgccaaaaatccataatatcttcagcggtaaatccaaacaggcgtgcatggtcagataaagcaagataaaccgtctctacaacattttgttgtttatgctgtatcgctgaaaacaaaccgggatattcattagaattatttgccaggaggaggggcttcatattttttttatcgaatttaaacgtattaaacagagtgggtaatgcgttaaaaatagtattaataacgttcatgtgtccgcgctgcatggccataaacaaacccgtgtcgcgcgcaagacttttagcggtcagaagatctacaatatcggaagctgaaatgttaatttcctgggctaggctgggcaatgcttcaagaataactttcacgatatcgctatgtccattttgcatcgccagatatagtcctgggcaaccataaaaatcctttgccttcaggagatcgagtacctgttctttagtcaaatgacatgtgcgaattaacaaaggtaacgcgttcaaaacaattttcagcatgtcggcatcaccattcgccataacatggtataaaacatggctggacgttctatttttggcactcaggaatttatacacttgttcgttatctaaatgatgtgttgcggccagtttaggtaaggcgttcagaatcgaggttacaacatttttatccttacgtgatatcgctaaaaataatccagaaaaaccatttttatcttttgcctccagaatatgcatgagattttttttcgagagtaatccttcatatcctgtttctgacaatgaattgaaaatagtctcaacgatatccgcattaccataatttatagccaaatataaacctggcaggttaatactattataggcagtcaacatttctgttctatgtagttctggcattttctggagttgaatcatcagttgcgtaagttggtgattctgaccaattgccattagcaaattcatcgttgcaggtgataatggaggggttatttcatccacagatccttttaacatcaatagctgttctttcggaagtgctggaattattgcaacagattgattaataacatgatcatttgaccatttcaggaggctataatctacattcataaaatccatcagagaatagtgtttaatattctctttgctttcgctcataattcttattttatcgttagttacattaggatcataaaccgaaaccacgtaatgggtacatccttcagttgtgttctttattcttagccggaccgtcaaagcatggttatccaccagtaatatggctgccataacactgatgccatttgattccatcttgtcaaaatatgctttcataactagcccgaaatcaccgcaggcagcaacgcaacgcccctcaggacggctggaaaccaacgccaaagtctggtttttgcattttttgttgaagtgcgtgagaaatttttcagctgaagagtaatcatcttgatggggtttgtaatcaacattctgataaatatcattaatatattgtgcagcaatgtgtcggcatactatacggttttggggtcgccccggaaaataacattgaccattaagtttaattcttgggaattctttttcttttctatctgattttaggtttaattcttgtttatcaagagtgtctgagcgttgaggtaaaatttccattaggtatttttcaaatattggggcaatggtttgagtaagtgtcgtgttttcgtttttattaattatcgtaatttctttcttatcagcttgtaagacggacgtggaaaatttaatgacaaaatccttgttgctaaagatatgacgaccattttgtctacagttctctgagaagctttttaatagaggcgtcgccagctccttgccagaaaatttatcctcgagttctttataaaacaattcactcagggtttggtgttcatttgtctgggctgtattattaatatttgcagagaaagaactacgaggaatacgagtaatcatttaaatatctcattgtttattgatgtcttgaattttaactatcagaacagtgaaaaaatttaatatgattacaactaaagaaatatcataaatcgctcaatctcataatgcagccgtaaaagtttcggtggaatgagatcttgcgattttgttaataattaagtggtttgatgtttaaaaataatgctgagttaataaaagtgtgtgaagtgtatgacattaagttattttggcgtcaatgcgattaacagacacccttattctattgccactcaggtatgatgggcagaatattgcctctgcccgccagaaaaagtcagcgcattccaccgtacgccagcgtcacttccttcgccgctttaatcaccatcgcgccaaactcggtcacgcggtcatcggtaatacgtgaaatcggtccggaaatagaaattgcggcaaacggttcacggtgctcatcgaaaatacacgctgcaaggcaacgtagccccagtgcatgttcctcatcgtcaaatgaataaccccgtttgcgcgtttgggcgagatcttcttttaaatgcacaggagacaccagcgttgcgtgggtataggcatgtaaccctttgcggtgcagcagcttcgtcacctgttcttcgctcagttgggctaaaaaggctttacccgcaccggaagcgtgcatcggcaatttaccgccgataggcgcggacattcgcatcagatgcgtacactgtacctggtcgataataatcgcttcgtgatcgctttgatcaagcaccgccatattgaccgtttcgccagactcttccattagattgcgcaggatagggtgaacaatcgctaacaaattacggctctggagaaagctgctgccgaccataaaggcatgtgcgccgattgcccaatgtcccagttcgccaacctgacgcacgaaaccctgctgttgcatcgtggttagcaggcggtgggtcgtggaattgggtaacccggcttgttgcgccagttccgtgagtgccacactgccattggattcggcaatccactccagtaatttcaggccacgcgttaaagactgaacctgtccagtcgctggtgcggtggcaacggcgggttttctgccgcgtttcgcgggaatgggtgcgaccatgacagtctcttttttctgtatcgtggaaatcattttcatttttattgttagctaatgcaatagttactgaactgatccgatgagttaatgttgaacaaatctcatgttgcgtggtggtcgcttttaccacagatgcgtttatgccagtatggtttgttgaatttttattaaatctgggttgagcgtgtcgggagcaagtgtgagcagcaaagtggaacaactgcgtgcgcagttaaatgaacgtattctggtgctggacggcggtatgggcaccatgatccagagttatcgactgaacgaagccgattttcgtggtgaacgctttgccgactggccatgcgacctcaaaggcaacaacgacctgctggtactcagtaaaccggaagtgatcgccgctatccacaacgcctactttgaagcgggcgcggatatcatcgaaaccaacaccttcaactccacgaccattgcgatggcggattaccagatggaatccctgtcggcggaaatcaactttgcggcggcgaaactggcgcgagcttgtgctgacgagtggaccgcgcgcacgccagagaaaccgcgctacgttgccggtgttctcggcccgaccaaccgcacggcgtctatttctccggacgtcaacgatccggcatttcgtaatatcacttttgacgggctggtggcggcttatcgagagtccaccaaagcgctggtggaaggtggcgcggatctgatcctgattgaaaccgttttcgacacccttaacgccaaagcggcggtatttgcggtgaaaacggagtttgaagcgctgggcgttgagctgccgattatgatctccggcaccatcaccgacgcctccgggcgcacgctctccgggcagaccaccgaagcattttacaactcattgcgccacgccgaagctctgacctttggcctgaactgtgcgctggggcccgatgaactgcgccagtacgtgcaggagctgtcacggattgcggaatgctacgtcaccgcgcacccgaacgccgggctacccaacgcctttggtgagtacgatctcgacgccgacacgatggcaaaacagatacgtgaatgggcgcaagcgggttttctcaatatcgtcggcggctgctgtggcaccacgccacaacatattgcagcgatgagtcgtgcagtagaaggattagcgccgcgcaaactgccggaaattcccgtagcctgccgtttgtccggcctggagccgctgaacattggcgaagatagcctgtttgtgaacgtgggtgaacgcaccaacgtcaccggttccgctaagttcaagcgcctgatcaaagaagagaaatacagcgaggcgctggatgtcgcgcgtcaacaggtggaaaacggcgcgcagattatcgatatcaacatggatgaagggatgctcgatgccgaagcggcgatggtgcgttttctcaatctgattgccggtgaaccggatatcgctcgcgtgccgattatgatcgactcctcaaaatgggacgtcattgaaaaaggtctgaagtgtatccagggcaaaggcattgttaactctatctcgatgaaagagggcgtcgatgcctttatccatcacgcgaaattgttgcgtcgctacggtgcggcagtggtggtaatggcctttgacgaacagggacaggccgatactcgcgcacggaaaatcgagatttgccgtcgggcgtacaaaatcctcaccgaagaggttggcttcccgccagaagatatcatcttcgacccaaacatcttcgcggtcgcaactggcattgaagagcacaacaactacgcgcaggactttatcggcgcgtgtgaagacatcaaacgcgaactgccgcacgcgctgatttccggcggcgtatctaacgtttctttctcgttccgtggcaacgatccggtgcgcgaagccattcacgcagtgttcctctactacgctattcgcaatggcatggatatggggatcgtcaacgccgggcaactggcgatttacgacgacctacccgctgaactgcgcgacgcggtggaagatgtgattcttaatcgtcgcgacgatggcaccgagcgtttactggagcttgccgagaaatatcgcggcagcaaaaccgacgacaccgccaacgcccagcaggcggagtggcgctcgtgggaagtgaataaacgtctggaatactcgctggtcaaaggcattaccgagtttatcgagcaggataccgaagaagcccgccagcaggctacgcgcccgattgaagtgattgaaggcccgttgatggacggcatgaatgtggtcggcgacctgtttggcgaagggaaaatgttcctgccacaggtggtcaaatcggcgcgcgtcatgaaacaggcggtggcctacctcgaaccgtttattgaagccagcaaagagcagggcaaaaccaacggcaagatggtgatcgccaccgtgaagggcgacgtccacgacatcggtaaaaatatcgttggtgtggtgctgcaatgtaacaactacgaaattgtcgatctcggcgttatggtgcctgcggaaaaaattctccgtaccgctaaagaagtgaatgctgatctgattggcctttcggggcttatcacgccgtcgctggacgagatggttaacgtggcgaaagagatggagcgtcagggcttcactattccgttactgattggcggcgcgacgacctcaaaagcgcacacggcggtgaaaatcgagcagaactacagcggcccgacggtgtatgtgcagaatgcctcgcgtaccgttggtgtggtggcggcgctgctttccgatacccagcgtgatgattttgtcgctcgtacccgcaaggagtacgaaaccgtacgtattcagcacgggcgcaagaaaccgcgcacaccaccggtcacgctggaagcggcgcgcgataacgatttcgcttttgactggcaggcttacacgccgccggtggcgcaccgtctcggcgtgcaggaagtcgaagccagcatcgaaacgctgcgtaattacatcgactggacaccgttctttatgacctggtcgctggccgggaagtatccgcgcattctggaagatgaagtggtgggcgttgaggcgcagcggctgtttaaagacgccaacgacatgctggataaattaagcgccgagaaaacgctgaatccgcgtggcgtggtgggcctgttcccggcaaaccgtgtgggcgatgacattgaaatctaccgtgacgaaacgcgtacccatgtgatcaacgtcagccaccatctgcgtcaacagaccgaaaaaacaggcttcgctaactactgtctcgctgacttcgttgcgccgaagctttctggtaaagcagattacatcggcgcatttgccgtgactggcgggctggaagaggacgcactggctgatgcctttgaagcgcagcacgatgattacaacaaaatcatggtgaaagcgcttgccgaccgtttagccgaagcctttgcggagtatctccatgagcgtgtgcgtaaagtctactggggctatgcgccgaacgagaacctcagcaacgaagagctgatccgcgaaaactaccagggcatccgtccggcaccgggctatccggcctgcccggaacatacggaaaaagccaccatctgggagctgctggaagtggaaaaacacactggcatgaaactcacagaatctttcgccatgtggcccggtgcatcggtttcgggttggtacttcagccacccggacagcaagtactacgctgtagcacaaattcagcgcgatcaggttgaagattatgcccgccgtaaaggtatgagcgttaccgaagttgagcgctggctggcaccgaatctggggtatgacgcggactgattcacaaatctgtcacttttccttacaacaaacagggcgctcaatgagtgccctgtctctttattaatatgaaacacttatactggaaacaggctggaataatcttagccggaaaaacgaatgtcaaaaggcacagtaaagatgccagtcagcgtgtttccggtcctttggtcattcaattgcttcaggaacatataacgataaggagaacctgaactcgtgttaacgctgcttcacctgctttctgccgtcgccctgctggtctgggggactcatattgttcgaaccggcgtaatgcgcgtcttcggcgcgcgtttgcgtactgtccttagccggagcgtcgaaaaaaagccgctcgccttttgcgcggggatcggcgttaccgcactggtacagagcagtaatgccaccaccatgctggtgacctcgtttgtcgctcaggatctggtagccctcgcaccggctctggtcattgtgctgggtgcagatgtcgggacggcgctaatggcgcgtattctcaccttcgacttatcctggctgtcaccgttacttatttttatcggcgtgatttttttcctcggacgcaaacagtcacgcgccgggcaactgggccgcgtcggtattggtcttgggctgattttgctagcgctggagttgattgtgcaggccgtaacgccgatcacccaggcaaacggcgttcaggtgatctttgcctcgctgaccggcgatattctgctggatgcgctgattggcgcgatgttcgccattatcagctactccagccttgctgctgtactgctgaccgcgactctgaccgccgcaggcattatctccttccccgtggcgctctgtctggtgattggtgctaacctcggttccggtctgctggcaatgctcaacaacagtgccgccaatgccgcagcccgccgtgtcgcgctgggtagtctgctgtttaagctggtgggtagcctgattatcctgccgtttgtccatttgctggcagagacaatggggaagttgtcattgccaaaagcggaactggtgatctatttccacgtcttctacaaccttgtacgttgcctggtcatgctgccatttgttgacccgatggcacggttttgcaaaacgattattcgcgatgaaccggaactggatacccagctacggcctaaacatctggatgtcagcgcgctggatacgcccacgcttgctctggcgaacgccgcgcgcgaaaccctgcgcattggcgacgccatggaacagatgatggaagggttgaataaagtgatgcacggtgagccacggcaggagaaagagctgcgtaagctggcagatgatatcaacgttctctacaccgccattaagctgtatctggcgcggatgccaaaagaagagctggcggaggaagagtcgcgccgctgggcagagatcatcgaaatgtcgctcaaccttgaacaggcctccgatatcgtcgagcgcatgggcagcgaaattgctgacaaatcactggcagcacggcgggcattttcgcttgatgggttgaaggaactggatgcgctctatgagcaattgctcagtaatttaaagctggcaatgtcggtgttcttctctggcgatgtcaccagcgctcgtcgtttgcgtcgcagcaaacatcgttttcgcattcttaatcgccgctattcccacgcccacgtcgatcgcctgcatcagcaaaacgtgcagagcattgaaaccagttcgctacatttaggcttactgggagatatgcagcgcctgaactcgctgttttgttcggtggcttacagtgtgctggaacagccggatgaagatgaaggacgggacgagtattaatattgtgaatcctgtaggcctgataagacgcgtcaagcgtcgcatcaggcactatgaacaagatgccggatcatgcatccggcaattcacttaaaaacggtgaccagcttccagcggaaccgcttcttcaccagccttaaacacataagtggtgttcgggccacccagcgtagcgtgacctttactcactgtgatccagttaccttccggtagaccaataatcgtcagttctggcgcgacgaccagcagttcgcgaatacgctgctcacgggtttcacctttatggccttccggcagcgcgttggtgaagtgcgggttgatttgcagcgggaacagatttagcgcatcgaaaccttgcggatcgacaatcggcatatcgttggtggtacgaatagttgggcaagcaaggttagcgcctgcgctccagccaatatacagagcgccacgtttaaccacgtcagtaattggtgccagcagcccgcgctcgcggcactgtttcagcaactggaaagtattcccgccgccgacaatcacgatctcagcattttcaatcgcggcaacgggatcgacaacgctatgaataccggtgacagaaacacccagcggagcgagaaccgcagccgttttcgctgtgtaatcatcccaggtctgcgttacgccagcgaaagggataaacaccgctgagcggcgaccctgcaactgttcagcaattagcggcagtgcatgttccagccaggctttacccggcagcgtcgagttactcaataaaagcagttccattacttctccggttagtaagaaatcacgggaggcatgctaccactgcgaatttaaccacttactgacatggctcacgatgtcgcacattgcttctggaaagtgatttgagcaggtaacgaattcaagccaatggaaataacaaatagttcgctcatgactattttttatcaacccaaaggtacggtatattccgttttttacaggagaatttatgctgcccgactcatcagtccgtttaaataaatacatcagcgaaagcggaatttgctcacgccgcgaagcggatcgctatatcgagcaaggcaatgtgttccttaatggcaagcgagccaccattggcgatcaggtgaaacccggcgacgttgtgaaagtaaacggtcagttgattgaacctcgggaagccgaagatttggtacttatcgccctgaacaagcccgttggtattgtaagcaccaccgaagatggcgagcgcgataacattgtcgatttcgttaaccacagcaaacgcgtgttcccgattggccgcctggataaagactcccaggggctgattttcctcaccaatcacggcgatctggtgaataagatcctgcgtgctggcaatgatcatgagaaagagtatctggtgacggtcgataaaccgattaccgaggagtttattcgcggcatgagtgcgggggtgccaatcctcgggacagtgaccaaaaagtgcaaagttaaaaaagaagcgccgtttgtcttccgcattaccctggtgcaggggctgaaccgtcagatccggcgcatgtgcgagcatttcggctatgaagtgaaaaagctggaacgcacgcgcatcatgaacgttagcttaagcggcattccgctgggggaatggcgcgatttaaccgacgatgagttaatcgacctctttaagctcattgaaaattcctcttccgaggtaaaacctaaagcgaaggccaaaccgaaaacagcgggcatcaaacgtccagtcgttaagatggaaaaaacggcggaaaaaggcggtcgcccggcgtccaacggtaagcgttttacctcgccggggcgtaaaaagaaggggcgctgattaacgcctcagactgatgaaaacggcccaaaagtgcccggacagtcccctcgccccttcgggaaaagggttagggtgaggggaaaattgtgttcacactgacgagtgaaaatctcaggcgttgattgtggattagcgcctgccgcgcgtcgacgtatttgctgaccagctaaatgacgcttcaggatccggtttataagcctgctttttcttcaactggcgggcttttttcgcttcagcctcacgctcaaccattaatttatcgatgtaatctttcttaatgctgttggtttcggagttggtcaatacgcgaccatgcgcaatccgcgcccgatccagcagtgttttaagttcacgctgctcgcgttcagtcatctctttttgggtaatacgggggagtgccatgatggtgccctcagtgagccagagagttcagtgtacgggaattcgtttgcgagcagaactgataatattcattttgccttctcttaactatttatctctttcgataattaattagagatgcagataaaaaaattaaaggcaattattctccgataaagacgctggttaacagagtacaggctcgtttattgatgagcatagtgacaagaaaatcaatacggcccgaaatatagcttccaggccatacagtatttactcaaacaaattactatgcagtttttgcaccacctgctcggcatcttcgccgggcaccaggaagcacaggttatggctggatgcgccataacaaatcatgcgaatgttgaacggttccagtacgccgaatacctctttgccaacgccgcaggcttttgacaggtcattgccaatcaacgcgaccagcgccagaccttcttccacctccacccgacacagtgcggaaagctccatcagcagagattgcgtcagcaacgtatcgccagtggaggttgaaccggtggtatcaagggttaatgccacgctcacttctgacgtggtgattaagtctaccgaaatattatgccgcgcgaggatgccgaaaacttccgcgaggaaaccgcgagaatgcagcatattcaggctgtgcaaagtgagcagagtctgattgcgacgaagcgccagagcgcggaacagcggcggattttcagttttattgcacaccagcgtaccacctgcgcgtgggtctttgctggagccgacaaagaccgggatatcgctgcgtactgcgggtagcaacgttgccggatgcagtacttttgcaccaaaagttgccatctctgccgcttcggcaaacgcgatttcatcaatgcgttttgctgcggaaactacgcgtggatcggtggtgtagatgcccgggacgtcggtccagatatcaacacgagatgcgtgtaaagcctccgccagcaaggctgccgtataatcgctgcctccacggccaagcgtcgttgtacgacctttattttcgctaccgataaatccctgggtgatcactaagccttcattgagacgtgggagcagctgcagcgcggccagttccgccagcgcggctatatctggctctgcacgaccaaatcggtcgttggtacgcatcactttacgtacatcaaaccactgtgcctgaacatcgcgttcgcgcaggatctcaacaaacagcagggtcgacatcagctcgccgtggctgaccagctcatctgtcagcgccggagacgttgccagcgccgccgcttctgccagaacagtaatgttctccagcagacgttcaatctcttcacggataacgttcgggtaacgcagacgttccagaatggcaaactggatgttgcggatagcgtcgagtttttcgaatcgctcgccaggttccagtccttcagctaaagcgaccagcagattagtgataccagcagaagccgagaggacaactaaacgcacgttggcatcagaaagcacaatatcagcgctgcggttcatggcgtcaaaatcagctacgctggtaccgccaaatttggagacaacaatttcagacataactacctcgtgtcaggggatccattttcagccttggcacaagggaagagcggaagacgggtgggcgcagagcgatacttcgctactattttcacccagaagtgctccaccacttgcgaaacgcccgactgcgaacgcttctggtgacaacccaggggattcagcccctgtagccgatgatgaacgtggccagccgttcaatcacctcggcgatgcaccccctcaggtgttatcacaggactggctcctccaacaccgttacttgggcaacgcgcctcttctggcctgcgctagcgcaggtagtacatttataaataaagggtgagcggggcggttgtcaacgatggggtcatgcggatttttcatccactcctggcggtcagtagttcagctaataaatgcttcactgcgctaagggtttacactcaacattacgctaacggcactaaaaccatcacatttttctgtgactggcgctacaatcttccaaagtcacaattctcaaaatcagaagagtattgctaatgaaaaacatcaatccaacgcagaccgctgcctggcaggcactacagaaacacttcgatgaaatgaaagacgttacgatcgccgatctttttgctaaagacggcgatcgtttttctaagttctccgcaaccttcgacgatcagatgctggtggattactccaaaaaccgcatcactgaagagacgctggcgaaattacaggatctggcgaaagagtgcgatctggcgggcgcgattaagtcgatgttctctggcgagaagatcaaccgcactgaaaaccgcgccgtgctgcacgtagcgctgcgtaaccgtagcaataccccgattttggttgatggcaaagacgtaatgccggaagtcaacgcggtgctggagaagatgaaaaccttctcagaagcgattatttccggtgagtggaaaggttataccggcaaagcaatcactgacgtagtgaacatcgggatcggcggttctgacctcggcccatacatggtgaccgaagctctgcgtccgtacaaaaaccacctgaacatgcactttgtttctaacgtcgatgggactcacatcgcggaagtgctgaaaaaagtaaacccggaaaccacgctgttcttggtagcatctaaaaccttcaccactcaggaaactatgaccaacgcccatagcgcgcgtgactggttcctgaaagcggcaggtgatgaaaaacacgttgcaaaacactttgcggcgctttccaccaatgccaaagccgttggcgagtttggtattgatactgccaacatgttcgagttctgggactgggttggcggccgttactctttgtggtcagcgattggcctgtcgattgttctctccatcggctttgataacttcgttgaactgctttccggcgcacacgcgatggacaagcatttctccaccacgcctgccgagaaaaacctgcctgtactgctggcgctgattggcatctggtacaacaatttctttggtgcggaaactgaagcgattctgccgtatgaccagtatatgcaccgtttcgcggcgtacttccagcagggcaatatggagtccaacggtaagtatgttgaccgtaacggtaacgttgtggattaccagactggcccgattatctggggtgaaccaggcactaacggtcagcacgcgttctaccagctgatccaccagggaaccaaaatggtaccgtgcgatttcatcgctccggctatcacccataacccgctctctgatcatcaccagaaactgctgtctaacttcttcgcccagaccgaagcgctggcgtttggtaaatcccgcgaagtggttgagcaggaatatcgtgatcagggtaaagatccggcaacgcttgactacgtggtgccgttcaaagtattcgaaggtaaccgcccgaccaactccatcctgctgcgtgaaatcactccgttcagcctgggtgcgttgattgcgctgtatgagcacaaaatctttactcagggcgtgatcctgaacatcttcaccttcgaccagtggggcgtggaactgggtaaacagctggcgaaccgtattctgccagagctgaaagatgataaagaaatcagcagccacgatagctcgaccaatggtctgattaaccgctataaagcgtggcgcggttaatcatcgtcgatatgtaggccggataaggcgttcacgccgcatccggcaaccgatgcctgatgcgacgcggtcgcgtcttatcaggcctacaggtcgatgccgatatgtacatcgtattcggcaattaatacatagcacgattgattaaataaccttaataacaatgccgacgttatgtcggcatttttttatcagataaatccccttgtctgtaatttaacggaaatcataccgtgaggttaatcctaaaatagatttttaatcgttgtttatttcggaaaatacgcagattaattgcttttgtttttattttaagtttatgatttttattgttatttaaatataagttgaaacttatatttgatattcattccaattatcctaaaacgccatcgctaattccccgcgccgtaattcgcatgctttagttgtgtatactcgatcccgcccgaaatgtttttgggtaaatctccattcattcaatgaagggaaattgttatgaaaaaagttctgtatggcatttttgccatatctgcgcttgcggcgacttctgcgtgggctgcacctgtacaggtgggcgaagcggcagggtcggcagcaacgtcggtttcggcggggagttcctccgcgaccagcgtcagcaccgtaagctcggcggtgggtgtcgcgcttgcggcaaccggtggcggtgatggttctaataccgggaccaccacaaccacgaccaccagtacccagtaataaagtatgtatccccaaaataattcgagtcattgcatctgtggctagaagtatgaagggattaaccataaccacactccggtgtggttattctgcccctctggagaagagtcgtgaagcgacctgcactcattcttatctgcctgttattacaggcctgttcagccacgactaaagagctgggcaattcactgtgggacagtctgttcggcacgccaggcgtacagctgacggatgatgatattcaaaatatgccctacgccagccagtacatgcagcttaatggcgggccgcagttatttgtggtgctggccttcgctgaagacggacaacaaaaatgggtcactcaggatcaggctactctcgttacccaacatggccgtctggtgaagactctgctcggcggcgacaacctgattgaagtgaataaccttgctgccgacccgctgattaaacccgcacaaatcgttgatggcgcaagctggacgcgcacgatgggctggaccgagtaccagcaggtacgctacgccaccgcacgctcagtcttcaaatgggatggcaccgataccgtcaaagtcggcagcgatgaaaccccggttcgcgtgctggacgaagaagtctccaccgaccaggcgcgctggcataaccgctattggatcgacagcgaagggcaaattcgccagtcggaacagtatctcggcgcggattattttccggtgaaaaccactctcatcaaggcggcaaaacaatgattaaacaaactattgtcgcgttgcttttgagtgtgggagcgtcatcggtcttcgcggcaggaaccgtcaaggtgttcagcaatggcagcagtgaggccaaaacgctaacgggcgcagagcatttaatcgatctggtaggccaaccgcggctggcaaacagctggtggcccggtgcggtgattagcgaagagctggcaacggcggcagcattgcgtcagcagcaggcgttgctgacacggctggcagaacagggcgcagattccagcgccgacgatgccgctgcgattaacgccttacgccagcaaattcaggcgttgaaagtgacgggcaggcaaaaaatcaatcttgatcccgatatcgtccgcgttgccgaacgcggtaacccgccgttgcagggcaactacacgctgtgggtcggaccaccgccgtccacggtcacgttgttcgggcttatcagccgtcctggcaagcagccattcactccaggtcgcgacgtggcgagctatctctctgaccagagcctgctcagcggtgcggatcgcagctacgcgtgggtggtttacccggacggacgcacgcaaaaagcgccggtggcttactggaacaagcgtcacgtagagccgatgcccggcagcattatttatgttggcctcgcggactccgtctggagtgagacgcctgatgcccttaacgccgacattcttcagactctgacgcagcggatacctcaataatgaaaaaaagacatctgcttagcttactggcgctgggcattagcacagcttgctacggcgaaacatatcctgcgcccattggtccgtcgcagtcggatttcggtggcgtaggattattacaaacgcccaccgcgcgtatggcacgggaaggggagttgagtctgaactatcgcgataacgatcagtaccgttattactcagcttcagtgcaactcttcccgtggctggaaacaacgctgcgctacaccgacgtgcgcacccggcagtacagcagcgtcgaagcgttctctggcgatcaaacgtataaagataaagccttcgatctcaaactgcgtttgtgggaagagagttactggctgccgcaagtggcggttggtgcgcgggatatcggcggtacggggctgtttgatgcggaatatcttgttgccagcaaagcctgggggccgttcgattttacgctcggcctgggctgggggtatttgggcaccagcggtaatgtgaaaaatccgctctgttcagccagtgataaatattgctatcgcgataacagctacaaacaggcgggatctatcgacggtagccagatgttccacggtcctgcctcactgtttggcggcgtggaataccagacgccctggcaaccgctgcgcctgaaactggagtatgaaggcaataattatcagcaggattttgccgggaagctggagcaaaaaagtaagtttaacgtcggtgcgatttatcgcgttaccgattgggccgacgttaaccttagctatgaacgtggcaacacctttatgtttggcgttacgttgcgcaccaactttaacgatctgcgcccgtcttacaacgataacgcccgcccgcaatatcaaccgcagccgcaggatgccattttgcagcattcggtggtggcgaatcagttaacgctgttgaaatacaatgccggacttgccgatccacagatccaggcgaaaggcgatacgctgtatgttaccggcgagcaggtgaaatatcgtgattcgcgcgaagggatcatccgtgcgaatcggatcgtgatgaacgatctgccggatgggatcaaaacgatccgcattacggaaaatcgccttaacatgccgcaggtgacgacggaaaccgatgtcgccagcctgaaaaatcatctcgccggagagccgttgggccacgaaacgacgctggcgcaaaaacgcgtcgagccagtggttccgcagtccaccgagcagggctggtatatcgacaaatcacgctttgatttccatatcgatccggtgctgaaccagtcggtcggtggcccggaaaacttttacatgtatcagctgggcgtgatgggaacggcagatttgtggctgacggaccatctgctgaccaccggcagcctgtttgcaaatcttgccaacaactacgacaagtttaactacactaatcctccgcaggactcgcacttaccgcgcgtgcgtacccatgtgcgcgagtatgtgcagaacgatgtctatgtgaataacctgcaagccaactacttccagcatctgggcaacggcttctacggtcaggtctacggtggttatctcgaaaccatgtttggcggtgcgggggcagaagtgttgtatcgcccgctggacagcaactgggcgtttggtctggatgccaactacgttaaacagcgcgactggcgtagtgcaaaagatatgatgaaattcaccgactacagcgtgaaaaccggacatctgaccgcctactggacgccatctttcgctcaggatgtgttagttaaagccagcgtcgggcagtatctggcaggggataaaggcggcacgctggagatcgccaaacgctttgatagcggcgtggtggtgggtggctatgccacgatcactaatgtttcgaaagaggagtacggcgaaggggacttcaccaaaggcgtgtatgtctcggtaccgttggatctcttctcgtctggcccgacacgcagccgtgcggcgattggctggacgccgctgacgcgtgacggtggtcagcaacttgggcgtaagttccagttgtatgacatgaccagcgaccgtagcgtcaatttccgctaagtcatgggaaaggtgccagttttcgcactcactggcaccttcattcttaatggcctgtcgagccatcaggaacgcagttcactcccggtttgcgatctggtgtgtaaaggcgaaaacattctgtcttcctgtccgtcgatatcggttgcaggtctggttgcctgagcgactgggccatcattgggctggagacattgctttgcggtaggtcggctttatcagcagtaccgagcggaccagcataagcaggaagaacagagactgataacatcaaagcagcaaaataaggcttcatttttaccacctttatcaggttacgtttcatttgttccagaggaacattgtcgatttttcgcgcattgctggtggctgggaatcacctgaatgggtgatttttgaattaccggctttggtgcggtttgtcttgccggatgcgccgccaggcgcggcttatccggcctacgggtaggtatatccggctttggtggaggcgcgctccaaatccaggttgaacaaaacatacacaaaaaatatagatctccgtcacatttttgcgttatacaggaagctcgccactgtgaaggaggtactgctatgacgtcactctctcgtccgcgcgtggagtttatctccaccattttgcagaccgtactcaatcttggcctgctgtgcctcggcctgattttggttgtcttcctcggcaaagaaacggtgcatctggctgatgtgctgttcgcgccagaacaaaccagcaaatatgagctggtagaaggactggtggtttactttctctatttcgaatttatcgcgctgattgtgaagtactttcagtccggttttcacttcccgctacgttactttgtctatattgggatcaccgccattgtgcgcttgatcatcgtcgatcataaatcgccactggatgtgttgatctactcggctgcgatcctgttactggtgatcaccctgtggctgtgtaattcgaaacggctgaagcgggagtaaaaagtcagcacgccgaaatggcgcggcgtgctggacaggaagattacagcgtagcagtttgttgtgttttcttcgtttccggttcccagagcgcttccagctcctcaagggttttacctttggtttccgggacaaatttccacataaacagtgctgccagaacgcccatacaaccgtaaatccagtaggagaaaccgttgtggaaatgggccaccagccaggagtttttgtccatcatcgggaaggtccaggagacgaagtagttcgccagccactgggccgccaccgcgattgccagcgctttaccacgaatagcattcgggaagatttccgacagcagtacccagcataccggaccccaggacatggcaaaggcggcaacatagaacagcatcgacagtagcgccacaatacccggtgcctgagtgtaaaacgcggtaccgaggctaaacataccgattgccattccgagtgcgccgataatttgcagtggcttacgaccaaatttatccaccgtcataattgccagaacggtgaaggtgaggttgataactccgacaataatggtctgcaacagcgcgatatccgtgctggcccccagcgttttgaacacttccggcgcgtagtacagcaccacattgatgccgacaaattgctggaagatggagagcattacgccgattacaatcacgcccacgccaaacatcagcagacgaccaccggttttgcggccatgatccagggagtgtttaatttcctgtactgcctgagttgcaagcgtgttgcccataattttgcgcaggataccttccgcctgttcttgcttgccgcgcgacatcagccagcgaggactttctggcacggtatacagcagcattaagaacagcagtgcagggatacattccgaggcaaacatataacgccagccgtcagtattcagccagctggcatcaccggaacgggcaataaaatagtttacgcagtaaactaaaagttgcccgaaaataatcgcaaactggttaaaagagaccagtttcccgcgaatatgagctggagccagttccgcaatatacattggcgagagcattgaggctaaaccaacgccaataccgccaataatgcgataaataacaaattccgggacataacctgccagataaacaggcacagtgttgtccgggtttatagaggtaaaaccaagttctggccaggcagaacctacaccagaaataaaaaacaggacagcagcaatcttaagtgaatcacgacgaccgaagcggttactgcaataaccaccgagggcaccgccgatgatgcaaccaatcagagcgctggccacgcaaaaccctaacagggagttggcagcggattcacttaagttttgtggagcaacaaagacggtattgagtgactcaacagtaccggaaataacggcggtgtcgtagccaaataataaaccacctaatgtagcgactaaggtaatcgaaaatatataactggaattatactgggtattcattcagacctgccttagaccattctgatcttttatcagtgcattgatgttggaattgtcaggcagttaaggcaattatcattttttacaatgcgtttacgtaatgtcttttctgtgatcttaattgtgataattatccaaaattgataaaaacaatactattgccgtgactcagagcacgaaagagaattatcgtaagtgggaaaacaaataacgtaaaaataataagctctatgatggaaatattaaccggcgaacgattcagattgcagacgaaagaaaaaaaggcgctccgtggagcgccgaataacagtcacaagttgggataacgtaagttgagggtgcagcggcataacattggcagaacaacatctttaacctttcacaccacctgccgtcaggccgttgaccagccagcgttgagccagcaagaagacgatggtgatcggtaatgcagacatcacggcagcggcggcaaagtcaccccacaggtagttttgcgggttgaggtattgctgcatccccacggccagggtgtagctgtttacgtcacgcagtaacagcgacgcgaccggaacttcagtaatggcagcgataaacgacaggatgaataccaccgccagaatcggtactgacagcggcaacaggacaaggcggaaggcctgccacggtgtcgcaccatccagcgcagcagcttcttccagcgaactgtcgatggtttcgaaatagcctttgatggtccagacatgcagcgcaatcccacccagatacgcgaaaattacgccgccgtgagtattcaggccaatgaatggaatgtactcacccagacgatcaaacaacgcatacaacgcgaccagtgaaagtactgccgggaacatctggaaaatcagcattcctttcagcagcgtcgctttgcctggaaagcgcatacgggcgaaagcgtaggcgcaggtggtggagagcgccacaatgccaatcgcggaaatcccggcgacctttaccgagttccacagccacagcagtaccgggaatggcggtggcgtaatgcgaccatcagcctgttcaacgctaaaacctaacgccagtttccagtgatcccaggagatttgctccgggatcaggctgccggtcgcaaagtttccctgacgcagcgagatagcgacgaccatcagcagcgggaacataatcgctgcgataaaaagtagcagtagcaggtgagtaataaataaacgagctttttgcgatttcggttggaccattgccatttttgttatctcccttaatcaaacttcattcgcgtggctttcaggttcactatcgccagcgcacccaccagcaggaagatcagcgtggcaattgctgccgccagaccgaagtcctgacccccgccgccttcaaaagcgatgcggtaggtgtagttaacaagcaggtcggtataaccggctggcgtggtcgtgccaagacgatccgggccgccgttggttaacagttgaatcagcacgaagttgttaaagttaaaggcgaagctggcgatcatcagcggcgtcagcggtttaatcagcagcggcagcgtaatcttaaagaagttctggaacggacctgcgccatccattgctgaggcttcatacaaatcgtccggaatcgctttcagcaagcccatgcagaggatcatcatgtacggataacccagccaggtattgacgataattagcatcgtgcgggcggtggtcggatcgctgaaccaggcgggcttcacgccaaacagcgcgctcaacatcatgttgatttcaccgaagctctggttaaacaaccctttgaaaatcaagattgaaatgaacgatggcaccgcgtagggcagaatcagcaggacgcgatagaccgctttgccgcgcaacgcttcccactgcaccagacacgccagaaccatgccgaccgccaccgttaaaaagacagtgatcagcgagaacaccacggtccagacgaaaatggcgaggaacggtttctgaatgccttcgtcggtaaagacgcgggtaaagtttttccagccggtggtcacggtgtaaccggggcttagcttttcatcaccccagttgccgtcggcggtaatggactggtaaaagccaatttggttattcggacgatatttcacgccgctctgattattcgtcaacgtgccgtcaccgtcgagtgtgtagagcggctgcgtgccagaaaactggcgcagggagctcatcatcactttgttgccatccggcagaatggcggtaatgtcactcagcgcctgacgattctgggtaatcacgcgcagattcgcgcgttcgccttcgggctgggcggtcgtttctttcagttgcagtttttgctcgccgccaaatttaaaagcgtcggagaggtaatttttgccggtttcgccgtcgctgagcgccagttgccactcatcgcccgccgggtaaagaccaaagttataggttttgcctgcttgccaggagcgatctaacaacacttcctgcgcacgttcaaaagtcagctggttagtgctgctgtagttggtgaaggcaatggcgatggtgcagaccagagggaagaggacgaataatcccattccagccattcccgggtaaacatagcgccaggcgtaggctttacgattggcgaaaatatacagccccgctgaactcaatatcagcgtggtaatggcgaacaggtattccccttgtgcgtacattaaaacaacaaggtaacccaccagcaggccgagcagacctagcactgaccatttcagcgcgtcgctttgccaccaatgtttctttttaatgacatccatggggttcttcctcattccaggacggataaggctttcacgccttatccgacaacaactgcctgatgcgacgctgacgcgtcttatcaggcctacatacgtttcggttttgtaggccggacaaggcgttcacgccgcatccggcatttcacagcattacttggtgatacgagtctgcgcgtctttcagggcttcatcgacagtctgacgaccgctggcggcgttgatcaccgcagtacgcacggcataccagaaagcggacatctgcgggatgttcggcatgatttcacctttctgggcgttttccatggtggcggcaatacgtggatctttcgccaactcttcctcgtaagacttcagcgctacggcacccagcggtttgtctttattaaccgcttccagaccttcatcagtcagcagatagttttcgaggaactctttcgccagctctttgttcggactggcggcgttaatacctgcgctcagcacgccaacgaacggtttggatggttgacccttgaaggtcggcagtaccgttacaccataattcactttgctggtgtcgatgttggaccatgcccacgggccgttgatggtcatcgctgtttcgcctttattaaaggcagcttctgcgatggagtaatcggtgtctgcattcatgtgtttgtttttaatcaggtcaaccaggaaggtcagacccgctttcgcgccagcgttatccacgcccacgtctttaatgtcgtacttgccgttttcatacttgaacgcataacccccgtcagcagcaatcagcggccaggtgaagtacggttcttgcaggttgaacatcagcgcgctcttacctttcgctttcagttctttatccagcgccgggatctcttcccaggtttttggcgggttcggcagcagatctttgttataaatcagcgataacgcttcaacagcgatcgggtaagcaatcagcttgccgttgtaacgtacggcatcccaggtaaacggatacagcttgtcctggaacgctttgtccggggtgatttcagccaacaggccagattgagcgtagccaccaaagcggtcgtgtgcccagaagataatgtcagggccatcgccagttgccgcaacctgtgggaatttctcttccagtttatccggatgctcaacggtgactttaattccggtatctttctcgaatttcttaccgacttcagcgagaccgttatagcctttatcgccgttaatccagattaccagtttaccttcttcgattttggcgagagccgaggcggaaaacatcatcgtcgttaatgcggataatgcgaggatgcgtgcacctgtttttattttcataatctatggtccttgttggtgaagtgctcgtgaaaacacctaaacggactctagtttctttatacggcaacctctttccatcctccttgcccctacgccccaccgtcgctttgtgtgatctctgttacagaattggcggtaatgtggagatgcgcacataaaatcgccacgatttttgcaagcaacatcacgaaattccttacatgacctcggtttagttcacagaagccgtgttctcatcctcccgcctcctcccccataaaaaagccagggggtggaggatttaagccatctcctgatgacgcatagtcagcccatcatgaatgttgctgtcgatgacaggttgttacaaagggagaagggcatggcgagcgtacagctgcaaaatgtaacgaaagcctggggcgaggtcgtggtatcgaaagatatcaatctcgatatccatgaaggtgaattcgtggtgtttgtcggaccgtctggctgcggtaaatcgactttactgcgcatgattgccgggcttgagacgatcaccagcggcgacctgttcatcggtgagaaacggatgaatgacactccgccagcagaacgcggcgttggtatggtgtttcagtcttacgcgctctatccccacctgtcagtagcagaaaacatgtcatttggcctgaaactggctggcgcaaaaaaagaggtgattaaccaacgcgttaaccaggtggcggaagtgctacaactggcgcatttgctggatcgcaaaccgaaagcgctctccggtggtcagcgtcagcgtgtggcgattggccgtacgctggtggccgagccaagcgtatttttgctcgatgaaccgctctccaacctcgatgctgcactgcgtgtgcaaatgcgtatcgaaatctcccgtctgcataaacgcctgggccgcacaatgatttacgtcacccacgatcaggtcgaagcgatgacgctggccgacaaaatcgtggtgctggacgccggtcgcgtggcgcaggttgggaaaccgctggagctgtaccactatccggcagaccgttttgtcgccggatttatcggttcgccaaagatgaacttcctgccggtaaaagtgaccgccaccgcaatcgatcaagtgcaggtggagctgccgatgccaaatcgtcagcaagtctggctgccagttgaaagccgtgatgtccaggttggagccaatatgtcgctgggtattcgcccggaacatctactgccgagtgatatcgctgacgtcatccttgagggtgaagttcaggtcgtcgagcaactcggcaacgaaactcaaatccatatccagatcccttccattcgtcaaaacctggtgtaccgccagaacgacgtggtgttggtagaagaaggtgccacattcgctatcggcctgccgccagagcgttgccatctgttccgtgaggatggcactgcatgtcgtcgactgcataaggagccgggcgtttaagcaccccacaaaacacacaaagcctgtcacaggtgatgtgaaaaaagaaaagcaatgactcaggagatagaatgatgattactctgcgcaaacttcctctggcggttgccgtcgcagcgggcgtaatgtctgctcaggcaatggctgttgatttccacggctatgcacgttccggtattggttggacaggtagcggcggtgaacaacagtgtttccagactaccggtgctcaaagtaaataccgtcttggcaacgaatgtgaaacttatgctgaattaaaattgggtcaggaagtgtggaaagagggcgataagagcttctatttcgacactaacgtggcctattccgtcgcacaacagaatgactgggaagctaccgatccggccttccgtgaagcaaacgtgcagggtaaaaacctgatcgaatggctgccaggctccaccatctgggcaggtaagcgcttctaccaacgtcatgacgttcatatgatcgacttctactactgggatatttctggtcctggtgccggtctggaaaacatcgatgttggcttcggtaaactctctctggcagcaacccgctcctctgaagctggtggttcttcctctttcgccagcaacaatatttatgactataccaacgaaaccgcgaacgacgttttcgatgtgcgtttagcgcagatggaaatcaacccgggcggcacattagaactgggtgtcgactacggtcgtgccaacttgcgtgataactatcgtctggttgatggcgcatcgaaagacggctggttattcactgctgaacatactcagagtgtcctgaagggctttaacaagtttgttgttcagtacgctactgactcgatgacctcgcagggtaaagggctgtcgcagggttctggcgttgcatttgataacgaaaaatttgcctacaatatcaacaacaacggtcacatgctgcgtatcctcgaccacggtgcgatctccatgggcgacaactgggacatgatgtacgtgggtatgtaccaggatatcaactgggataacgacaacggcaccaagtggtggaccgtcggtattcgcccgatgtacaagtggacgccaatcatgagcaccgtgatggaaatcggctacgacaacgtcgaatcccagcgcaccggcgacaagaacaatcagtacaaaattaccctcgcacaacaatggcaggctggcgacagcatctggtcacgcccggctattcgtgtcttcgcaacctacgccaagtgggatgagaaatggggttacgactacaccggtaacgctgataacaacgcgaacttcggcaaagccgttcctgctgatttcaacggcggcagcttcggtcgtggcgacagcgacgagtggaccttcggtgcccagatggaaatctggtggtaatagcaaaacctgggccggataaggcgtttacgccgcattcggcaaccaacgcctgatgcgacgcttgcgcgtcttatcaggcctacaacggctgtcaaatgtaggccggataaggcgtttacgccgcatccggcataaaaacaggttgtcattatctgaaaggggcgaaagcccctctgattatcgggtttagcgcgctattgcctggctaccgctgagctccagattttgaggtgaaaacaatgaaaatgaataaaagtctcatcgtcctctgtttatcagcagggttactggcaagcgcgcctggaattagccttgccgatgttaactacgtaccgcaaaacaccagcgacgcgccagccattccatctgctgcgctgcaacaactcacctggacaccggtcgatcaatctaaaacccagaccacccaactggcgaccggcggccaacaactgaacgttcccggcatcagtggtccggttgctgcgtacagcgtcccggcaaacattggcgaactgaccctgacgctgaccagcgaagtgaacaaacaaaccagcgtttttgcgccgaacgtgctgattcttgatcagaacatgaccccatcagccttcttccccagcagttatttcacctaccaggaaccaggcgtgatgagtgcagatcggctggaaggcgttatgcgcctgacaccggcgttggggcagcaaaaactttatgttctggtctttaccacggaaaaagatctccagcagacgacccaactgctcgacccggctaaagcctatgccaagggcgtcggtaactcgatcccggatatccccgatccggttgctcgtcataccaccgatggcttactgaaactgaaagtgaaaacgaactccagctccagcgtgttggtaggacctttatttggttcttccgctccagctccggttacggtaggtaacacggcggcaccagctgtggctgcacccgctccggcaccggtgaagaaaagcgagccgatgctcaacgacacggaaagttattttaataccgcgatcaaaaacgctgtcgcgaaaggtgatgttgataaggcgttaaaactgcttgatgaagctgaacgcctgggatcgacatctgcccgttccacctttatcagcagtgtaaaaggcaaggggtaattacgccccacagtgctgattttgcaacaactggtgcgtctcctggcgcacctttttttatgcttccttcctgggatatgagcgattttttatagtaactcacttcttcttcactaagaatatccattatctcaatgccttatcagagattcttttcctttcgccggtagtgtctggacattcaggctacttttccaggttattttatttctgttatgcagaggttttatgataagtcatatcctaaattctggcggcaataactctttgatgaaacatgatgtggtgcaaggaaataatatagtagatcttgatttactacgtaatttaaatggggtgccaggtttaaacagagataactttatttatatcagcaatattttttcaaatataaaacaacggaacgaaaaaatcatgcaataaatatgtttcgtgaagtctcaatcagtaatgatactataagtgtaaaattctacagaaatgaaaaaaattgaatgcgcttgcaattttctgatggataaagatgcgcaggggtatatcgacctgtctgatttggatttaacaagttgtcattttaaaggtgacgttatatcgaaggtgtcttttttatcatcaaatctacaacatgtaacattcgaatgtaaagaaattggggattgcaattttactactgcaatagttgataatgtcatatttagatgtcgacgtttacacaatgtgatttttatcaaagcgagtggtgaatgtgtcgatttcagcaaaaatattcttgatacagttgacttctcgcagagtcaacttggtcatagtaattttcgcgaatgtcagattagaaattcaaacttcgataattgttatctttacgcttcgcacttcaccagagcagagtttctgtctgccaaagaaatatcatttattaaatcgaatttgacagctgttatgtttgattatgtgcgaatgtcgacagggaattttaaagattgcattacagaacaattggaattaactattgattattcagatatattttggaatgaagatctcgatggttatatcaataacattataaaaatgattgatacattgccagataatgcaatgatattgaaatccgttctggccgtaaaactggtgatgcaattaaaaatacttaatattgttaataaaaactttattgagaatatgaagaaaatatttagccattgtccttatataaaagatcccattatacgcagttatatccattctgatgaagataacaagttcgatgattttatgcgtcaacatcgattcagtgaggtgaatttcgatacccaacagatgatcgattttattaacagatttaatacgaataaatggctaattgataaaaataacaatttttttatccaacttatcgatcaggccttacgatcaacggatgatatgatcaaagcaaatgtttggcatctttataaagagtggattcgtagtgatgatgtttcacctatatttatagaaactgaagataatttaagaacctttaacacgaatgaattaacacgaaacgataatatctttatcctgttctcctcagtcgatgatgggccagttatggtggtaagctcccagcgcttacatgatatgttgaatcctacaaaagataccaattggaattccacgtatatctacaaatccagacatgagatgttgcctgttaatcttactcaggaaacacttttcagctccaaatctcatggtaaatatgcgcttttccccatttttactgcgagttggcgagctcatcgtataatgaataagggtgtttaagtaaaggaaaacatcaccgttcctggcatcctggacggtgatgcccctacggttgccctcgccagcacgggcatcggtaaagcgtaaggttcaacatcgttttaccacttcatgcgattgttgcgtttttgttgcgtattagatcacttaatttgctttacatctcccgtaaacacttttctgcgatacaatgcctttacgttatgtaacggagagttcggcatgtcacaccccgcgttaacgcaactgcgtgcgctgcgctattgtaaagagatccctgccctggatccgcaactgctcgactggctgttgctggaggattccatgacaaaacgttttgaacagcagggaaaaacggtaagcgtgacgatgatccgcgaagggtttgtcgagcagaatgaaatccccgaagaactgccgctgctgccgaaagagtctcgttactggttacgtgaaattttgttatgtgccgatggtgaaccgtggcttgccggtcgtaccgtcgttcctgtgtcaacgttaagcgggccggagctggcgttacaaaaattgggtaaaacgccgttaggacgctatctgttcacatcatcgacattaacccgggactttattgagataggccgtgatgccgggctgtgggggcgacgttcccgcctgcgattaagcggtaaaccgctgttgctaacagaactgtttttaccggcgtcaccgttgtactaagaggaaaaaaatatggagtggagtctgacgcagaataagctgctggcgtttcatcgcttaatgcgtacggataagccaattggcgcgttactgctgctctggccaacattatgggcgttgtgggtggcgacaccgggcgttccccagctctggatcctggcggtgtttgtcgcgggtgtctggctgatgcgcgctgccggatgtgtggtgaatgattatgctgaccgcaagtttgatggtcatgttaagcgcacggcgaaccgaccacttcccagcggcgcggtaacagagaaagaggcgcgcgcgctgtttgtcgtgctggtactgatttcgtttttactggtgctgacgctgaatacgatgaccattctgttgtcgattgccgcgctagcgctggcgtgggtgtacccgtttatgaagcggtatacccatctaccgcaagtggtgctgggcgcggcgtttggctggtcgattccaatggcttttgccgctgtgagtgagtcggtgccattgagttgctggttaatgttcctcgccaatattctctgggcggtggcttacgacacgcagtatgcgatggttgaccgcgatgatgatgtgaagattggcattaaatccacggcaatcctgttcggccaatacgataaattgattattggtattttgcagattggcgtactggcactgatggcgatcatcggtgagttaaatggcttaggctggggatattactggtcaattctggtggctggcgcgctgtttgtttatcaacaaaaactgattgccaaccgcgagcgtgaagcctgctttaaagcatttatgaataataactatgttggtctggtactatttttagggctggcaatgagttactggcatttctgatgatgtaaaaaagccggatgatcatccggctttcttctgggttgcctgatgcgcggcgcttctcaggcctacacaacacatcgcaatttattgaatttgcagattatggaaggccggataaggcgttttcgccgcatccggcaattctctctgattacccttcgccctgcgtcgcactctcaatcgtcaaacgcacgtctgatgtaatcaactccgccagcaactgataaaccttcatcgtttctgccggttcggcatcgccgctatcgctgatatacccttcatcacgcagtgtcagcaccagagaactgaacaccgccttgtcgaagaactccggcgcgttgatgccgtgcagcacggagagacgttgcgcgacggtgcggctctctttctccagcgtaccgcggttgatcgacgggttggcactcaacaaccagaaggtgatggcataacgttgcagcgtttcgcgcgcgcctgcggccagcagctgtagcgtgcgagaatgcgccgggttgatatgcaactcatcatcttgcagggtaatcagcccctgacgttgcatctcatttgccagcgcatcaataacgtccggcaactcgtcgcgatcccagcgcaggaacagctccgctttcagcattgggtaaagcacattgacgtgctccatcaatacgtcgcgggagatgtggcgatgctgggtgacgattgccgccatcagcgaaggcagcaccaacatatgcgcaatgttgttgcgatagtaggtcatcagcaccgcttgctcgcgcggcagaatgatgatgtcgccgattgtgtctttctcgacttcaaacttgttcatttgcagcgcgtgatcgataagctcgctggcgctggctgaaggaacggtagagtccgtggagtagggcacgttgcgcatcagatccaggtagcagttgagttgctcggttaactgctcgcgggtgagtgagcgctgacgtgatgccagtagcgcagtacagcacaggttcatggcgtttgccgcgcctgcgttgttaatgcgtaccatcagatcggcagcaatattattgaccgtcggcgttaaccatgccggacgcaccgcttcgatgggatcgatagattcacgccagtcaggtacatgctggttaaggtaggtcatcaacggcattggttcaccgaagttgacgtaaccctgaccgagattacgcagcttgcttaaaccgcgcagcatctgcggcaggctctctttctctttcgtcgcgccgcgcagttctttggcgtaagtacccacttccatgacgtgctcataaccgatatagatcggaatcagcgtaatcggacgcgtgccgccacgcagcatcgcctgaatggtcatcgacagcgtaccagttttcggatccagcaaacgccccgtacgggaacgaccgccttccacgaagtactcgacggaataaccacggctgaacagttcgccgagatactcccggaaaacggtggaataaagtttattgcctttaaacgtacggcgaataaagaacgcccccagacggcggaaaatcggcccggcaggccagaaattcaggttgatcccggcggcgatatgcggcggcaccagcccctggtgatacagcacgtaagaaagcagcaggtagtccatgtgactgcggtggcaaggcacatataccagctcatgaccgtcgtgggccagctggcgaacgcgctcagcgttatggacgttgatgccctggtaaagtcggttccaggtgaagcccagaatacggtcagtcaggcgaatcatctcgtaagagaaattcgccgcaatctcttccatcagtgcaatcgcgttctgctgcgctttttcatgggagatttttttgctgcgcgcttcatcttctaccgctttggcaatggcgcgggaggcgagcagcttattaaacagatcctgacgagcaggcaaacgtgggcctacggcagccagacgttgacgggcaaagtgcatacgcgccacgcgcgccagtttctgagcgatagttttatccgtgccgtgttcatccgccatacggcgcagcgaaactgacggcgagaaacgcacaaaactgtcgcgaccgagccacagtacagcgaaaaatttctgtacgccgttaagcatacgcagcggcgggttcacttcgcctttttcacgccccggcgcgcgaccaaacatcaccgacactggcaccatctgcacatccagatttgggttgctacggtgcaaatcgagatagtcgtggaacagcttaatagactcttctttcggcgtgtaataggtgaacacacgcggcccgccgtgaatgaacacatagcgcggcagtagcgtgccgtcgatttccagcggctctaacgggtcaggcaagtcatgtgccagacactgggcgcgcaacgtcagcaaatctgctttcgagttgtacggtaaaacgtacataattggacgagaggtatccagccccagttccggggcaggatctgccggaatagacttgctttttaccaggatgcttaatggtaaattcagtaatttgtagtaaattcgtggccagccggacataaacgatgtaaagcctctggttaataatgcaaatgcgcggcaaggatagcagaaagtcatgggaaattctgtggtatccgctcatgtttcgcgcggctacgcaaacccgaatcatcggatttaacggtacactgatattgacgctcataatgtaaaaaggttctttcaatggccaataataccactggattcacccgaattatcaaagctgctggctattcctggaaaggtttacgcgctgcatggatcaacgaagcggcattccgtcaggaaggcgtagcggtattgttggcggtggtcatcgcctgctggctggatgtggacgcgattacccgcgtgctgcttatcagctccgtgatgctggtgatgattgtggaaatcctcaatagcgccatcgaagcagtggttgaccgaattggctctgaataccatgagctttccggacgcgcaaaagatatgggatccgctgcggtgctgattgccattatcgtcgccgtgattacctggtgcattctgttatggtcgcattttggataacccttccagaattcgataaatctctggtttattgtgcagtttatggttccaaaatcgccttttgctgtatatactcacagcataactgtatatacacccagggggcggaatgaaagcgttaacggccaggcaacaagaggtgtttgatctcatccgtgatcacatcagccagacaggtatgccgccgacgcgtgcggaaatcgcgcagcgtttggggttccgttccccaaacgcggctgaagaacatctgaaggcgctggcacgcaaaggcgttattgaaattgtttccggcgcatcacgcgggattcgtctgttgcaggaagaggaagaagggttgccgctggtaggtcgtgtggctgccggtgaaccacttctggcgcaacagcatattgaaggtcattatcaggtcgatccttccttattcaagccgaatgctgatttcctgctgcgcgtcagcgggatgtcgatgaaagatatcggcattatggatggtgacttgctggcagtgcataaaactcaggatgtacgtaacggtcaggtcgttgtcgcacgtattgatgacgaagttaccgttaagcgcctgaaaaaacagggcaataaagtcgaactgttgccagaaaatagcgagtttaaaccaattgtcgttgaccttcgtcagcagagcttcaccattgaagggctggcggttggggttattcgcaacggcgactggctgtaacatatctctgagaccgcgatgccgcctggcgtcgcggtttgtttttcatctctcttcatcaggcttgtctgcatggcattcctcacttcatctgataaagcactctggcatctcgccttacccatgattttctccaatatcaccgttccgttgctgggactggtcgatacggcggtaattggtcatcttgatagcccggtttatttgggcggcgtggcggttggtgcaacggcgaccagctttctctttatgctgttgctgtttttacgcatgagcaccaccgggctgactgcgcaggcttatggtgccaaaaatcctcaggcattagcccgtacgctggtgcaaccgttgctgttggcgttgggggctggggcgttaattgcgctgctgcgtacgccgattatcgatctggcgctgcatattgttggcggtagtgaggcagtcctggaacaggcgcggcgctttcttgaaatccgctggttaagcgcaccggcgtcgctggcgaatctggtattactcggttggttactcggcgtgcaatatgcccgtgcgccagtaattttgttagtggtcggcaatatcctcaacattgtgctggatgtctggctggtgatggggctgcatatgaacgtgcagggcgcggcgctggcgacggttattgcggaatatgcaacattgctgattggtctgctaatggtgcgtaaaatcctcaaactacgcggaatttccggcgaaatgctgaaaactgcctggcgaggaaacttccgtcgcttgctggcgcttaaccgcgatatcatgctgcgttcgctgttgttgcaactctgtttcggcgcgatcaccgtacttggcgcgcgactggggagtgacattatcgctgttaacgcggttctgatgacgctactcacctttaccgcctatgcgctggatggttttgcctacgcggttgaagcgcactccggtcaggcatacggtgcgcgcgacggtagccagttgctggatgtctggcgggcagcgtgccgccagtcggggatcgtagcgttactgttttcggtggtttatttgctggctggggaacacatcattgcgttactgacgtcgttaacccagattcagcagctggctgaccgctatcttatctggcaggtgattttgccggtggttggcgtctggtgttatctgctggacggcatgtttataggcgcaacgcgtgccaccgaaatgcgtaacagtatggcggtggccgccgcaggttttgcgctgacgctccttacgctgccgtggctgggtaatcatgctttgtggctggcattaaccgtctttctggcgttgcgcgggctttctctggcggctatctggcggcgtcactggcgcaatggtacctggtttgccgcaacgtgacggttaaaaattctgaataaataatcctaagccaaattgctgactacacttaatctcacgttcagaagaaaagtgaacgtactctcattcacaacctaacgatgaggtcttgattatgaataaagatgaagccggcggtaactggaaacagtttaaaggtaaagtgaaagagcaatggggcaaactgaccgatgatgatatgacgatcattgaaggtaaacgtgatcaactggtcggtaaaatccaggaacgttatggttatcagaaagatcaggcagaaaaagaggtcgtggattgggaaacccgcaatgaatatcgctggtaattaatccctcctgcccgacgtgtacaaggatgtacgccctcttaacgcggtttctttttcacctgcacagagtgatcatgctggcactgttcaggatgacgacacgcttccacttctacacatgccgcacagagcccatgtgcttcaatcacattatgccgcagggcaaaccccatttttgccgccagcgtatgcataatgtcttccacgccttctgcacactcttctttcactgcgccgcagcgatcgcaaataaacatggctgacgtatgggtgggctgatcgaacagatgacagagcacataactgttggtggattccaccttatgcacaaaaccttgctcaagcagaaaatccagcgcgcgataaaccgttggcggcttggcttgcggttcagcttcgcgcagtaaatcaagcagatcataagcgctgatagcgccatcctgcagactcatcaggcgcaacacttccaggcgctgtggggtcaggcgcacattacgctgcgcgcagattttttcagcctgcgctaataactcctgcgttgtggtcttttccatcgggcacctcaaagtgggggttaagaatgtccttactttaccatgttccaggaaaaacaccgagaacccttattgttgccgtaatgttgattttctgttttgtaggtaaggtgttatgttgccttgtcgtaccattatcaacacgataataattaataattcatttttaaataaattgcttcaagttaactcgctatttatttaactgggtttaaacgcatacctgtagttcagaaattatgagcgatttttgatagtgaccagatggcaaaagaattataaggaggacacggtacgacaaaaaaggtagatgaatcatgttgaagataatacccggtgcaactggatactttaataaaacactcaattcaaatcaattcgataatgaagatgcaatcaaagataaattagataatagaggttcaatcaaaggtaaattaaataatatatatggtaaatctattgattatgcagcgctgcgtcatcgggatattattattgcaaaaatagatttgtttattcaacgaatcacgcataatttatggcatgcacgtaaaaaaatgtgtttttaattgtgcaaataaatgatctcaaaatgtgggtcaataagtatattgacgattgcactgatgaggatttaaacgatcgtgactttattgcatcagttgttgaccgggctatttttcatttcgcgattaatagtatatgtaatcctggggataataaagatgcaatgcccattgaacaatgtacttttgatgtagaaactaagaatgaccttccctccacggttcagctattttatgaggaatctaaggataatgaacctttagcgaatatacattttcaagcaataggttctggttttttaacgtttgttaatgcctgccaggaacatgatgacaacagcttaaaattatttgcttcgctgttaatttcactttcatattctagtgcctacgcagatttatcagaaacagtgtatattaatgaaaataatgagagctacctgaaagctcagtttgaaaaattatctcaacgtgatatgaagaagtacctgggagagatgaagcgtctggctgatgggggagaaatgaattttgatggctatctggataagatgtcacatctggtgaatgaaggaacgctcgatcctgatattttaagcaaaatgcgagatgctgcaccacaattaattagcttcgcgaagtcgtttgacccaacctcaaaggaagagattaaaatacttacagacacttctaaattaatttatgatttgttcggggttaaatcggagaaataatatgtgaagttcttcgatagtatggaaggcattatataaaaggacccaatatttattgggttcttttttctctatcaatactattagcagggagatatatcaccagagtttaatgtgtgattttttatttatcgtcgaacctggattgtttatcattggccttaacaaagttaacggctaataagattatttccatcacttcgtgagagcttcatgccttgagaggatctcaattttcttttgcaatgagacaggcgcttcctgttgttatggtatagtaccccgctattgagcctcctgaatagtgatgctgaataacataaccccatgatatatcgataaaataatctctacatttgaaaatgcacggtaattctgaaatgcaaaaaatcaaccaaaccagcgcaatgcctgaaaaaactgacgttcactggagtggtcggtttagcgttgcaccaatgctcgactggacggacagacattgccgctatttcttgcgtctgctttcccgcaatacgttgctgtataccgaaatggtgaccacaggggcgattattcacggtaaaggtgattatctggcgtacagtgaagaagaacatccggtagcgttgcaactgggcggtagcgatccggcggcgctggcgcagtgtgcaaagctggcagaagcgcgcggatatgatgagatcaacctgaatgtcggctgcccgtctgaccgggtgcagaacggcatgtttggtgcgtgtctgatgggtaatgcgcagctggttgccgactgcgtgaaagcgatgcgcgatgtggtgtcgattccggtgacggtgaaaacgcgtattggcatcgacgaccaggacagctatgaatttctctgcgatttcatcaataccgtttccggcaaaggcgagtgtgagatgttcatcatccacgcacgtaaagcctggctttcggggttaagcccgaaagaaaaccgtgaaatcccgccgctcgattatccgcgtgtgtatcaactgaagcgtgactttccgcatctgacaatgtcgattaacggtggtatcaagtcgctggaagaggccaaagcacacctgcaacatatggatggcgtgatggtcgggcgcgaggcgtatcagaatccgggtattctggcggcggtagaccgggagatctttggttcctcggataccgatgccgatccggtggcggtagtgcgcgccatgtatccgtacattgagcgtgaactcagccaggggacgtatctcggccatattacccggcatatgttgggcttgttccagggtattcctggcgcgcggcagtggcggcgttatttaagtgaaaatgcccataaagcgggtgcagacattaatgtgctggaacacgcgctcaaactggtggcggataagcgttaacttttcaccaaaaagtagtcaaattcaccacgccctgcgcaccgtcgcggggcgttttgctgttaaatcaatagattatttttggcatgattcttgtaatgccagcaagagatttcatatttgggagagcatcatgctggaactactttttgtgattggcttttttgtcatgctgatggtcaccggcgtttcgttgctgggcattatcgccgcgctggttgtggcgacggccattatgttcctcggcggtatgctggcattgatgattaagttgctgccgtggttactactggcgattgcggtggtgtgggttattaaggcgattaaagcaccaaaagtgccgaaatatcagcgttatgaccgctggcgttactaagggattgtgcggatgatcacaacctaaggttttatccttagaacaaaataggaattgataatcaaatctgtcactattgcgcctctaacagattcatcgtgctgtaccctacatacagccgaactataaaaagaaagggcttcccaggtggaagccctatttcttttatggaatcagcaggctggaaccttgcgtcgcccggctttccagaatctcatgcgcacgctgcgcatccttcagcggatatttctgctgctcggcgacatcgaccttaatcacaccgctggcaatcaaagagaacagttcattactggcctcggttaattcctcccgcgtggtgatatagccttgcagggaagggcgtgtcacatacaacgagcctttttgattgagaatgcctaagttcacaccggtaaccgcacctgatgagttgccaaaactgaccattaagccgcggcgttgcaggcaatccagcgaccgttcccaggtgtctctgcccacggaatcgtacaccacgcgcactttcttaccgccggtgatctcttttaaccgctcgaccagatcctcttcacgatagttaataacctgccacgcgcccgcttttagcgcgctctgcgctttttgcgcggttcctacggtgccgataagtttcgcgcccagggcttttgcccactggcaggcaattaagccaacgccgccagccgctgcgtggaacaggaactgttcatcgggtttaatttcataggttttgcgcagcagataataaaccgttaagcctttcaggaaggatgccgcagcttgctcaaaagaaattgccgcaggcagaatcgccgctttatccgcaataatgttatgcacagagctgtaagcgcctaacgccgactgcgcatagactacacgatcgcctgccttaatatgctttacaccactgccgactttactcacgatgcctgctgcttcggtgcctaatccgctgggtagcgatggcggcgggtaaaggccgctgcggatatatgtgtcgataaaattgatgccgatggctttattttcgacctggatttcattctccgccggatcggcaggagtgaactctacggcttgaagtacttccgggccaccgtgcttgtgaaattcaattcgtgttgccatgtgtcctccagaacgtatcgtcagggtctgcttcatatgataaagtttcgacccattctttatctcggtaactccattcactatggcaggaaataaacccttcaacaaacagcaggctgaaccccgcgaacgcgatccacaagttgccgggctgaaagtgcctccgcactcgatcgaagcggagcagtcggtgttgggcggtttaatgctagataacgaacgctgggatgatgtagccgagcgtgtggtagcagacgatttttacacccgcccacaccgtcatatctttactgaaatggcgcgtttgcaggaaagcggtagccctatcgatctgattactcttgcggaatcgctggaacgccaggggcaactcgatagcgtcggtggttttgcttatctggcagagctgtcaaaaaatacgccaagtgcggctaacatcagtgcctatgcggacatcgtgcgtgaacgtgccgttgtccgtgagatgatctcggttgcgaatgagattgccgaagctggttttgatccgcaggggcgtaccagcgaagatctgctggatctggctgaatcccgcgtctttaaaattgccgaaagtcgtgcgaacaaagacgaagggccgaagaacatcgccgatgtgctcgacgcaaccgtggcgcgtattgagcagttgtttcagcagccacacgatggcgttaccggggtaaacaccggttatgacgatctcaacaaaaaaaccgctggcttgcagccgtcggatttgatcatcgtcgccgcgcgtccgtcgatgggtaaaacaacatttgcgatgaacctcgtcgaaaacgcggcgatgttgcaggataaaccggtacttatcttctcgctggagatgccatcagaacagatcatgatgcgttctctggcgtcgctgtcgcgcgttgaccagactaaaatccgtaccgggcagctcgatgacgaagactgggcgcgcatttccggcaccatgggtattttgctcgaaaaacgcaatatctatatcgatgactcctccggcctgacgccaacggaagtgcgttcccgcgcacgccgtattgcccgtgaacacggcggcatcgggcttatcatgatcgactacctgcaactgatgcgcgtaccggcgctttccgataaccgtacgctggaaattgcagaaatctctcgctcgctgaaagcactggcgaaagaactgaacgtgccggtggtggcgctgtcccagttgaaccgttctctggaacaacgtgccgacaaacgcccggtcaactccgacctgcgtgaatctggctctatcgagcaggatgcggacttgatcatgtttatctatcgtgatgaggtgtatcacgaaaacagtgatttaaaaggcatcgcggaaattattatcggtaaacaacgtaacggcccaatcgggacggtacgcctgacctttaacggtcaatggtcgcgcttcgacaactatgcggggccgcagtacgacgacgaataataattattttatgaattaggtaattaaagcaaacacttatcaaggaacacaaatgcaagcggcaactgttgtgattaaccgccgcgctctgcgacacaacctgcaacgtcttcgtgaactggcccctgccagtaaaatggttgcggtggtgaaagcgaacgcttatggtcacggtcttcttgagaccgcgcgaacgctccccgatgctgacgcctttggcgtagcccgtctcgaagaagctctgcgactgcgtgcggggggaatcaccaaacctgtactgttactcgaaggcttttttgatgccagagatctgccgacgatttctgcgcaacattttcataccgccgtgcataacgaagaacagctggctgcgctggaagaggctagcctggacgagccggttaccgtctggatgaaactcgataccggtatgcaccgtctgggcgtaaggccggaacaggctgaggcgttttatcatcgcctgacccagtgcaaaaacgttcgtcagccggtgaatatcgtcagccattttgcgcgcgcggatgaaccaaaatgtggcgcaaccgagaaacaactcgctatctttaataccttttgcgaaggcaaacctggtcaacgttccattgccgcgtcgggtggcattctgctgtggccacagtcgcattttgactgggtgcgcccgggcatcattctttatggcgtctcgccgctggaagatcgctccaccggtgccgattttggctgtcagccagtgatgtcactaacctccagcctgattgccgtgcgtgagcataaagccggagagcctgttggttatggtggaacctgggtaagcgaacgtgatacccgtcttggcgtagtcgcgatgggctatggcgatggttatccgcgcgccgcgccgtccggtacgccagtgctggtgaacggtcgcgaagtaccgattgtcgggcgcgtggcgatggatatgatctgcgtagacttaggtccacaggcgcaggacaaagccggggatccggtcattttatggggcgaaggtttgcccgtagaacgtatcgctgaaatgacgaaagtaagcgcttacgaacttattacgcgcctgacttcaagggtcgcgatgaaatacgtggattaatcgttctgtaatatttgattgtctgtgccggatgcggcgtgaatgccttatccggccaataaaatcctaaaaattcaataagttgatgttctttcatgctcttataaaggtcgtgcctctggcggatgtacgtttgtcatgagtctcactctgttgctaattgccgttcgctcctgaacatccactcgatcttcgccttcttccggtttattgtgttttaaccacctgcccgtaaacctggagaaccatcgcgtgtttcaaaaagttgacgcctacgctggcgacccgattcttacgcttatggagcgttttaaagaagaccctcgcagcgacaaagtgaatttaagtatcggtctgtactacaacgaagacggaattattccacaactgcaagccgtggcggaggcggaagcgcgcctgaatgcgcagcctcatggcgcttcgctttatttaccgatggaagggcttaactgctatcgccatgccattgcgccgctgctgtttggtgcggaccatccggtactgaaacaacagcgcgtagcaaccattcaaacccttggcggctccggggcattgaaagtgggcgcggatttcctgaaacgctacttcccggaatcaggcgtctgggtcagcgatcctacctgggaaaaccacgtagcaatattcgccggggctggattcgaagtgagtacttacccctggtatgacgaagcgactaacggcgtgcgctttaatgacctgttggcgacgctgaaaacattacctgcccgcagtattgtgttgctgcatccatgttgccacaacccaacgggtgccgatctcactaatgatcagtgggatgcggtgattgaaattctcaaagcccgcgagcttattccattcctcgatattgcctatcaaggatttggtgccggtatggaagaggatgcctacgctattcgcgccattgccagcgctggattacccgctctggtgagcaattcgttctcgaaaattttctccctttacggcgagcgcgtcggcggactttctgttatgtgtgaagatgccgaagccgctggccgcgtactggggcaattgaaagcaacagttcgccgcaactactccagcccgccgaattttggtgcgcaggtggtggctgcagtgctgaatgacgaggcattgaaagccagctggctggcggaagtagaagagatgcgtactcgcattctggcaatgcgtcaggaattggtgaaggtattaagcacagagatgccagaacgcaatttcgattatctgcttaatcagcgcggcatgttcagttataccggtttaagtgccgctcaggttgaccgactacgtgaagaatttggtgtctatctcatcgccagcggtcgcatgtgtgtcgccgggttaaatacggcaaatgtacaacgtgtggcaaaggcgtttgctgcggtgatgtaatgcaggaaagcaggctggagctacccagcctgcagtgaaattaaactgtcgtcgctttcactctttctttatagatgatttttttgatgccatcgttctacgtgagagataataaacgttgttagttcttttattgttaagcttatcccaattatctggaattccttatcctgtttttttgggtggagtaataatttctgcacatctaaccattattaaatttaataataagtatcgggtttgttacgatagaatatttctatatcctcaagaatatgctttgccttattgcctgtgactttctgagattcaattatagtatcgttaaattctaatgttaaagagaactcttttttccgctttgtgtaagtttaaccttatattgattaccaatatcaaataaaaaggtcctgtaatgagaataatcacctttaacctcctcggcaaaacagcaaagcgtgcaaatatacataaagtctttcttacccctgattttgttaactaaatcaataaatgcgtgaaaaactttacttgcaatagaacttgatacttcttctccaggtctaaaaaatcttttgcaatttttaactgtgtttctatgtataaaaagaaatctttggcataagagatatctttattatttagtgcatctagctcaacaggtaaagatgtcgttttgttgctattcacatatgatatattcatatcatcatctccatcgcgagtaataaaattaatcaccattgtagggtagggggctggtcaatcagaaatcatctttataaacttcgattgtttttgtaatgctgtatcattaagttcattaaatcgtacagcagataaatgttctatcaaatttcgctcatttgccgaggattcatcataataaacgtaaaattaatgtatccttacatcgagtaataaacattttttatacaaaaaaagacaggaacgtatttactgggttaaatataatcatcctgcttttcatcacaaaaaccgcagataatccttcctttccccggcagctggcgttatggtcagatggtttttgcaacaaatctcacaataaaaagtttcaacatactgactatttagggaaaaatatgcgcaagatcacacaggcaatcagtgccgtttgcttattgttcgctctaaacagttccgctgttgccctggcctcatctccttcaccgcttaaccctgggactaacgttgccaggcttgctgaacaggcacccattcattgggtttcggtcgcacaaattgaaaatagcctcgcagggcgtccgcaatggcggtggggtttgatatcgatgacacggtacttttttccagtccgggcttctggcgcggcaaaaaaaccttctcgccagaaagcgaagattatctgaaaaatcctgtgttctgggaaaaaatgaacaatggctgggatgaattcagcattccaaaagaggtcgctcgccagctgattgatatgcatgtacgccgcggtgacgcgatcttctttgtgactggtcgtagcccgacgaaaacagaaacggtttcaaaaacgctggcggataattttcatattcctgccaccaacatgaatccggtgatctttgcgggcgataaaccagggcaaaatacaaaatcgcaatggctgcaggataaaaatatccgaattttttatggcgattctgataatgatattaccgccgcacgcgatgtcggcgctcgtggtatccgcattctgcgcgcctccaactctacctacaaacccttgccacaagcgggtgcgtttggtgaagaggtgatcgtcaattcagaatactgacagagcgggagagcgtgatgctctccgcaatgctgtttttttaatcacacctttatcctttcgctgtcttgctgcaaactgattaagagagttttatcaaggagcagcacatgtggtatcaaaagacgctcacgcttagcgccaaatctcgtgggtttcatctggtaacggatgaaattctgaatcagctggctgatatgccgcgcgttaacatcggcttactgcatctgttgctgcaacatacctccgcctctctgacacttaatgagaactgcgatcccaccgtacgccacgacatggagcgttttttcctccgcaccgttcccgacaacggaaattatgagcatgactatgagggagcagacgatatgccttctcatatcaaatcctcaatgctgggaacatcgcttgtattgccggtgcataaagggcgtattcagaccggcacctggcaaggcatttggctgggggaacatcgcatccacggcggatcgcgtcgcatcatcgcgacactacaaggggagtaaaaaatgaccatttcggagttgctacaatattgcatggcaaaaccaggcgcagaacagagcgtgcataatgactggaaagcgacgcagatcaaagtggaagatgtactgtttgcgatggtgaaagaagtagaaaatcgcccagctgtttcgctgaaaaccagcccggagctggcggatgctacgtcagcagcacagcgatgtcggtccaagccgccatctgaataaagcgcactggagcaccgtgtatctcgacggttcgctgccagattcgcaaatctattatctggtggatgcgtcttatcagcaggcggtgaatttactgccggaagaaaaacgtaaattgctggtgcaactctgaaaggaaaaggccgctcagaaagcggccttaacgattacagcatcggcttaaggaagcgtgccgtgtgtgatgttcgcactccgcgacggtttctggcgtaccggagacgaggatctcgccgccaccactgccgccttctggtcccaggtcgacaatccagtcagcggttttgatcacgtcgagattgtgctcaatcaccacaatggtgttgccctgatcgcgcagtttatgcagtacgtcgagcagttgctgaatatcggcgaagtgcagaccggtggtcggctcgtcgagaatatacagcgtctgcccggtgccgcgttttgacagttcacgcgccattcacgcgctgggcttcaccgcctgaaagggtggttgcggactgccccagtcgaatgtacgtcaggccaacgtccatcaacgtttgcagcttacgcgccagtgcaggtacggcatcaaagaactcacgcgcctcttcgatggtcatatccagcacttcgtggatggttttgcctttgtacttaatctccagcgtttcacggttatagcgtttacctttgcactggtcgcacggcacgtagatatccggcaggaagtgcatctccactttgatcacgccatcgccctgacaggcctcgcagcgtccgccacgaacgttaaagctgaaacgtcccggcgtatagccgcgcgcacgggattccggtacgcccgcaaacagttcgcgcacaggcgtaaacacgccggtataggtcgccgggttagaacgtggagtacgaccaattgggctttggtcgatatcgatcactttatcgaaatgctccagcccctgaatatcgcgatacggtgctggttcggcgatggtcgccccattcaactggcgttgggcaatcgggaacagtgtgtcgttaatcagcgtcgatttaccggaacctgaaaccccggtgatgcaggtaaacagacccaccggcagcgtcagcgtcacgtccttcaggttgttgccgcgtgcgcctgtcagcttcagcactttttccggattcgccggaacgcgtttcttcggcacttcaatcttgcgtttgccgctcatgtactgcccggtcaacgactccggcaccgccataatcgcttccagcggaccttctgcgaccacttcaccgccgtgaacacctgcgcccgggccaatgtcgatcacatggtcagcggcgcgaattgcgtcttcgtcgtgctccaccacaatcacggtattaccgagatcgcgcagatggataagcgtacccaacaggcgctcgttatcacgctggtgcaggccgatagacggctcgtccagcacgtacataacgccaaccaggcccgcaccaatctggctcgccagacggatacgctgtgcttcaccgccagaaagcgtttctgccgagcgggaaagcgtcaggtaattcaggccgacgttaacgaggaatttcagacgatcgccgatctctttaaggattttttctgcaatcttcgcccgctgacctgcgagtttgagattgttgaagaattccatcgcatgaccaatgctcatgtcggagatagcaggcagcggcgtattctcgacatacacgtggcgcgcttcccgacgcagacgcgtcccttcgcagctggcgcacggacgattactgataaacttggctaattcttcgcgtaccgcgctggattccgtctctttatagcggcgctccatattatgcagcacgccttcgaacggatgacgacgaatggaggtatcgccacgatcgttcatgtatttgaattcaatgttttctttgccagaaccgtacaacaccactttatgcacgttcgcgctcaggctgccccacggcgcttcgacgtcgaacttatagtgatctgccagcgatttcagcatctggaaataatagaagttgcggcgatcccagccacggatcgcaccaccagccagcgacagttccggattctggatcactcgatcaggatcgaaatattgctgtacgccaaggccgtcgcaggtcgggcaggcccccgccgggttgttaaacgaaaacagtcgcggctccagttcacgcatactgtagccgcaaattgggcaggcgaagttggcggagaacagcagctcttccgctttcgggtcgtccatatccgccactaccgcggtaccaccggaaagctccagcgcggtttcaaatgactcggcaagacgttgggtaagatcgtcacgcaccttgaagcgatcaaccaccacttcaatggtatgtttcttttgcagttccagttttggcggatcggaaagatcgcagacttcgccatcaatacgagcacggatgtagccctggcttgccaggttctccagcgttttggtgtgttcgcctttgcgctctttaatgattggcgcgagtagcatcagacgcttgccttccggctgcgacagcacgttatccaccatctggctgacggtttgcgccgccagcgggacgtcgtggtccggacagcgcggctcgccaacgcgggcgaataacaaacgcaaatagtcgtggatttcggtgattgtccccaccgtagaacgcgggttatgagacgtcgatttctgctcaattgagatggcaggagaaagcccctcaatatgatcgacgtccggcttttccatcagtgacagaaactgccgcgcgtaggcggaaagggattcaacgtaacggcgctgcccttcggcatataaggtgtcgaaagcgagcgaggatttgccagaacccgaaagcccggtcacgacaatgagcttgtcgcgggggataacgaggttgatgtttttgagattatgggtgcgggcgccccgaacttcgatcttatccattcacctttcccggattaaacgcttttttgcccggtggcatggtgctaccggcgatcacaaacggttaattatgacacaaattgacctgaatgaatatacagtattggaatgcattacccggagtgttgtgtaacaatgtctggccaggtttgtttcccggaaccgaggtcacaacatagtaaaagcgctattggtaatggtacaatcgcgcgtttacacttattcagaacgatttttttcaggagacacgaacatggccagcagaggcgtaaacaaggttattctcgttggtaatctgggtcaggacccggaagtacgctacatgccaaatggtggcgcagttgccaacattacgctggctacttccgaatcctggcgtgataaagcgaccggcgagatgaaagaacagactgaatggcaccgcgttgtgctgttcggcaaactggcagaagtggcgagcgaatatctgcgtaaaggttctcaggtttatatcgaaggtcagctgcgtacccgtaaatggaccgatcaatccggtcaggatcgctacaccacagaagtcgtggtgaacgttggcggcaccatgcagatgctgggtggtcgtcagggtggtggcgctccggcaggtggcaatatcggtggtggtcagccgcagggcggttggggtcagcctcagcagccgcagggtggcaatcagttcagcggcggcgcgcagtctcgcccgcagcagtccgctccggcagcgccgtctaacgagccgccgatggactttgatgatgacattccgttctgatttgtcattaaaacaataggttatattgttttaaggtggatgattaaagcatctgccagccataaaaaagaagcctccgttatggaggcttctacgtatcaggtcaaaatcattggccattgtggcggtgtctgattcatctcttctatcatcaccgactcgatgttgtgccagatagcggtgatgtccgccattgtgatgccaagcaaccccattgcgaaccaacaggcggaaacaacgcccagaccgctgctgatcaccgcaagcccgacataatcagaccgacgaaaacggatgttgagtgtgctggccagaaacatcattacggcactaagaagttgccagcgaagaagaaccacgccagtggtgagggtagccatcaaacaattcctctgaaaagagccgatgccctggacagcgcggcgttgttcacgggaggcgtggtacactctggctatcgcggggcttgcagaacacaaaaatgaaacactctgtttgtttcattaattttgtgaactatatcacaattgattgtttgttagccatattaggccgtgacttttattgctgtacagattatgtggtttttcagtggcattaagggcatatcttcccgccgcctctgcattcctgtaggaaattaattttgaatatcaatgaattattttcatccaggtgacgattagaaaggtatcaatttcaaatcaggcaaaagtgctatttataccgtaagatttatctaaagacgtcggtacccagggttttcaccttgcaatggccgggtataaacaggcaggaaattgatagcaatgagtcatcgtgcacgacaccaattactggcgttgccgggcattatctttttagttctctttcccatcattctttcgctatggattgccttcctttgggcaaaatcagaagtgaataatcagctccgaacctttgctcaactggcactggataaatccgagctggtcattcgccaggcagatttagtgagcgatgcagctgaacgctatcaggggcaagtttgcactccagcccatcaaaagcgaatgttgaatattattcgtggctatctttatattaatgaattgatctatgcccgtgataaccattttttatgctcatcgctgatagcgcctgtaaacggctatacgattgcaccggccgattataagcgtgaacctaacgtttctatctattattaccgcgatacgccttttttctctggctataaaatgacctatatgcagcggggaaattatgtggcggttatcaaccctctcttctggagtgaagtgatgtctgatgacccgacattgcaatggggtgtgtatgatacggtgacgaaaacctttttctcgttaagcaaagaggcctcggcagcaacgttttctccgctgattcatttgaaggatttaaccgtacaaagaaatggctatttatatgcgacagtttattcgacaaaacgcccaattgcagccattgttgcgacttcatatcaacgtcttataacccatttttataatcatcttatttttgcgttgcccgccggtattttggggagtcttgttctgctattactctggctacgtattcgacaaaactatttatctcccaaacgtaaattgcaacgcgccctcgaaaaacatcaactttgtctttattaccagccaataatcgatatcaaaacagaaaaatgtatcggcgctgaagcgttgttacgttggcctggtgagcaggggcaaataatgaatccggcagagtttattccgctggcagaaaaggaggggatgatagaacagataactgattatgttattgataatgtcttccgcgatctgggcgattacctggcaacacatgcagatcgctatgtttctattaacctgtcggcctccgattttcatacgtcacggttgatagcgcgaatcaatcagaaaacagagcaatacgcggtgcgtccgcagcaaattaaatttgaagtgactgagcatgcatttcttgatgttgacaaaatgacgccgattattctggctttccgccaggcaggttacgaagtggcaattgatgattttggtattggctactctaacttgcataaccttaaatcattgaatgtcgatattttgaaaatcgacaaatcgtttgttgaaacgctgaccacccacaaaaccagtcatttgattgcggaacacatcatcgagctggcgcacagcctggggttaaaaacgatcgctgaaggcgtcgaaactgaggagcaggttaactggctgcgcaaacgcggcgtgcgctattgccagggatggttctttgcgaaggcgatgccgccgcaggtgtttatgcaatggatggagcaattacccgcgcgggagttaacgcgcgggcaataaaattacaggcggtggcgataatcgctgggagtgcgatcaaactgccgacggaaaacgcgggagaaggtctgctgcgagacataacccaggtccattgcgatatcaaaaatcggacgctcggtggtgcgcaactcaacggcggccagtaacaggcggcgttggcgaatgtaatcgccaagcgtctgatgcgtcaccgtgcggaacattcgttgcaagtaccactttgaatagcctgatttttttgcgactacatcaatgttaagcggctggtcaatatgctcgtcaatccatgcgataagatcctgaataattttctgatgggacataaatctgcctcttttcagtgttcagttcgttaattcatctgttggggagtataattcctcaagttaacttgaggtaaagcgatttatggaaaagaaattaccccgcattaaagcgctgctaacccccggcgaagtggcgaaacgcagcggtgtggcggtatcggcgctgcatttctatgaaagtaaagggttgattaccagtatccgtaacagcggcaatcagcggcgatataaacgtgatgtgttgcgatatgttgcaattatcaaaattgctcagcgtattggcattccgctggcgaccattggtgaagcgtttggcgtgttgcccgaagggcatacgttaagtgcgaaagagtggaaacagctttcgtcccaatggcgagaagagttggatcggcgcattcataccttagtggcgctgcgtgacgaactggacggatgtattggttgtggctgcctttcgcgcagtgattgcccgttgcgtaacccgggcgaccgcttaggagaagaaggtaccggcgcacgcttgctggaagatgaacaaaactaaagcgccacaagggcgctttagtttgttttccggtctttgtctttctctctatcccgctggtacacaggagggtttcccccgacgtcaacacacctcattcgagcacgtggtggaggttccggttggtgttgatgctttaattgtatgtcaccgacgtttcttcgccagtgtaaaagtatactttttaaccgcaatatttttgtcatctcagacgattttttatcgcaatcctgaacggtatacggctcgataacgctgcaatcttgcgcaccgacgataacgtttgcgcatcaattgcctggtttttcatcgtcaagacaataaaagagaaaaaagcagcaaacttcggttgaaaaagccgctatgatcgccggataatcgtttgctttttttaccacccgttttgtatgcgcggagctaaacgtttgcttttttgcgacgcagcaaattgtcgcaaacctggagcaggaagataacgtttcgctggcaggggattgtccgccacgcatcttgacgaaaattaaactctcaggggatgttttcttatgtctacgccatcagcgcgtaccggcggttcactcgacgcctggtttaaaatttcacaacgtggaagcactgtccgtcaggaagtggttgccgggttaacaacgtttctggcgatggtctactcggtcatcgtcgttccaggtatgttgggtaaagcaggcttcccgcctgcggcagttttcgttgcaacctgtctggttgccggactcggttctatcgtgatgggtctgtgggctaatctgccgttggcgattggttgcgccatctccctgacagcgtttaccgcattcagcctggtgctggggcaacatattagcgtacctgtcgcgctgggtgccgtgttcctgatgggtgtgctgtttacggtaatttctgccacgggtatccgtagctggattttgcgcaacttgcctcacggtgtggcgcacggcacggggattggtatcggtctgttcctgctgctcattgccgctaacggtgtcggtctggtgattaaaaacccgcttgatggtctgcccgttgcgctgggtgatttcgcgaccttcccggtgattatgtcactggtaggtctggcggtgatcatcggcctggaaaaactgaaagtccctggtggcattctgctgaccattatcggtatctcaattgtcggtttgatcttcgatcctaacgtccatttctccggcgttttcgccatgccttcattgagcgatgaaaacggcaattcactgattggcagcctggacattatgggcgcgctgaatcctgtagtcctgccaagcgttctggcgctggtgatgacggcagtatttgatgccaccggaactatccgtgccgtcgccggccaggcgaacctgctggataaagatgggcagatcatcgacggtgggaaagcactgaccactgactccatgagcagcgttttctctggcctggtgggtgcggctccggcagcggtatacatcgagtctgcggcgggtacggcggcgggcggtaaaaccggtttgacggctatcaccgttggcgtgctgttcctcctgattctgttcctctctccgctctcttacctcgttccggggtatgcaacggctccggcgctgatgtacgttggcctgctgatgctgagcaacgtggcgaaaatcgactttgctgattttgttgatgcgatggcgggtctggttacggctgtattcatcgtgctgacctgtaacatcgtaacaggcatcatgatcggcttcgcgactctggtgattggtcgtctggtttccggcgaatggcgcaagttgaacatcggtacggtcgttatcgccgtggcgctggtgaccttctatgcgggtggctgggctatctaatctttcatcggattctgaaaacgggtggcaatggctgcccgtttttattttctccgcacattgtgtgagcttttgcgatattctgaaaaaaatgagaattcaggcataacgtctttctcagatcataaaaaacatcgcaaacagggaacgcatggaaatcttcttcaccatactgataatgaccctcgtggtctcgctgtccggggtggtcactcgtgtcatgccctttcagatcccgcttccgcttatgcaaatcgccatcggtgcgctactggcgtggccgacgtttggtttgcatgtggagtttgatcctgaactctttttagtcttgtttatcccgccgttgctgttcgctgatggctggaaaacgccgacccgtgaatttctcgaacatggtcgagagattttcggcctcgcgctggcgctggtggtggtcaccgtggtcggcattggcttccttatttactgggtggtgccgggcattccgctgatccctgcctttgcgctggcggcggtgctttctccgaccgatgctgtggcgctctccgggattgttggcgaagggcgcatcccgaaaaaaatcatgggcattttgcagggcgaagcgttgatgaatgacgcctccggtctggtgtcgttgaagtttgccgtagcagtggcgatggggacgatgatcttcaccgtcggcggtgcgacggtcgaatttatgaaagtagccattggcggtattctcgccggttttgtggtgagctggctgtacggtcgctcgctgcgattcctcagccgctggggcggtgatgaacccgcgacgcagatcgtcctgctgttcctgctgccattcgcttcttatctgattgccgaacatattggcgtttccggcatcctcgctgcggttgccgccgggatgaccatcacccgctccggtgtgatgcgccgtgcgccgctggcaatgcgcctgcgtgcaaacagcacctgggcgatgctggaatttgtctttaacggcatggtgttcctgctgttaggtctgcagctgccgggtattctggagacgtcgctgatggcagcagaaatcgaccctaacgtcgaaatctggatgctgtttaccaatattattctgatatatgcggcgctgatgctggtccgtttcggctggctgtggacgatgaaaaagttcagcaaccgcttcctgaagaagaagccgatggagtttggttcgtggaccacacgagaaatcctgatcgcgtctttcgccggggtgcgtggggcgatcactctggccggtgtgctctctatcccgctgctcttgccggatggtaacgtcttcccggcgcgctatgagctggtgttcctggcggctggcgtcattctcttctcgctgtttgtcggcgtggtgatgttgcctattctgctacaacacattgaagtcgcggatcattcgcaacaattgaaagaggaacgtattgcgcgagcggcaacggcagaagtggcgattgtggcgatccagaaaatggaggagcgtctggcggcggataccgaagagaatatcgataaccagctgcttacggaggtcagttctcgcgtcattggtaacctgcgtcgtcgcgccgatggacgtaacgacgttgaaagttccgtgcaggaagagaaccttgagcgtcgcttccgtctggcggcattgcgttctgaacgtgctgaactttaccacctgcgcgccacacgggagatcagcaacgaaacgctgcaaaaattactgcacgatctcgatttgcttgaagcgttgctaattgaggaaaatcagtaagccgaaagcgacgtaaccaggcccgaggtaatctgaaaaaggtgcaatcttttgcacctttaacaggttagctcgggctaacattcatgattctaaaacaaataaattatctctcttttaaagtcaattcattggctgttcttcgacttaacctcaatctgcatcttgcataatatctgcagtaatcttcatagcgactgcatgaagattatcctcagtttgtgacatgccagtatgagtggcacaatcttcttcaaagaatttctgtagtgttaccaggatatcactattaatggagatattttcctcaccacggagaatggtaatacccattccctggacgctagcctcatcgaaattaacacgatagagacggatattaaacatccaggcttttgttaaaacagaacagttgaaatggcaattgcttaaattggcattattaaaattaacattagccatattagagtcggtacatataaccatttcgaggaacgtatttgttaaccgcgtaaaaaagagtttgctatcaattaagtttatattctggagggttgctttattcaggttgacacgagacagatcagcatgttcaaagttaattaaatcaagtttagagaagctaaggtcggctctaaataaattaatatatggcgctattactttataaagatttacctcagccatgtatgccatataaaaatttgaataatcaaggaaggtatttttaatattggctctattcattgttgcattgtagaattgaacatgcatagcggaacatgaatttagagttccgtcagtcatttttatctgagcgaaatttgagtcatcgagaatacaattatcaaaaagtattttttccattatggcgaaattaaaattcgttttatacatattacagtcctgaaaaatagcgttttgtagtctgcaacctgcaaaattcgaattggataaatcttcatctttaatcacgatacctttcaggctaaggtgtgaaaaatcgtaaccaccatttactgtctgtgggatttcgatagtattattatggacggtgacattatttataaaatataccaccttaattgacacttccttatctttattaaggtaaactcttctcgtaattctatcgtcacatttattatttgcatgtgaagctatatctataaaatatttatgtattttcctgtccgtttctttcgtgatttttcctgatggtaaactatcataaattcttttcattttctgaatcaagcctatcactttttcatgatcatccattttgaaaagagagagggctttattgtcaattaacgtgtttttatgatgtttgctgtaattatctgattttgttttctttgtatgtgatggacttgtgacagagtggttatcgttaatcaggcaaagagggaaaaacatattatttaaaccattatagcgcataaaatatccttataattaacaagaaagaaaaggcatattctctgcattatcattttctacgactgtcaaaaatcgctcattttttaatgagtttatttgtttaatattatgggaaaaggtgatgcatttgggagaggaagagtattccccggtcagacgaccggggaaggggagagattaatgcgcgcggccttgctcaacgccaaagccggtctgggagcggataaactgcgcgcggaacagttcacgctcacgcgcgccttccgctgagttatcggttgccgagaagaaccagatgccgaggaatgccacggtgatagagaacagcgccgggtattcatacgggaagatggctttttcgtgaccaaggatctgtacccaaatcgtcgggccgaggatcatcagtactactgcggtaatcagccccagccagccacccatcatcgcgccacgcgtggtcagtttcgaccagtacatagaaagcagaatgatcgggaagttacagctcgccgcgatggcaaacgccagccccaccataaaggcgatgttctgattctcaaacagcacgccgaggataatcgcaatcacgccgaggatcagtacggtgatttttgatacccgcagctcttcacgttcggtcgcgccttttttgaagacgttagcgtacaagtcatgcgaaaccgcggatgcgcccgccagcgtcagacccgcaaccaccgcgaggatagtggcgaaagcaaccgctgaaataaaaccgaggaacaggttgccgcccactgcattcgccaggtgaacggccgccatgttgttaccaccaatcagatggcccgccgcgtctttatattccggattcgcaccaaccagcatgatcgcgccgaagccgataataaaggtcagaatatagaagtagcccataaacccggtggcgtagaacacgctcttacgtgcttcgcgggcatcgctgactgtaaagaagcgcatcagaatgtgcggcaagcccgccgtaccaaacatcagtcccagacccagagagagcgcggagatcggatctttcaccagcccgcccggcttcatgatgtcgacacctttcgggtgtaccgccatcgcttcactgaacagattgttgaagctaaagccgacgtgtttcatcaccataaaggccataaagctggcaccgaacagcaacagcacggctttgataatttgcacccaggtggtcgccagcatgccgccgaacaggacgtacatcatcatcagcacgccgaccagcaccaccgcaatgtgatagttaaggccaaacagcagctcgatcagtttacctgcgcccaccatctgggcgataaggtaaagcgccaccaccaccagagaaccacaggccgaaagaatacgaatcggcccttgtttcagacggtaagaggccacatcggcaaaggtgtagcgccccaggttacgcagacgttcggcaatcaggaacaaaatgatcggccagcccaccaggaagcccagcgagtaaattaagccgtcatagccggaggtaaacaccagcgcggagatccccaagaatgaggcggcggacatatagtccccggcaatcgccagcccgttctggaagccagtgatattgccgcctgcggtgtagtagtcgctacgagaacgtacgcgttttgatgcccagtaggtaatgccgagcgtaaacacgacgaaaatcaggaacataataatcgcctgccagttcgttggctggcgctctacggccccgctaatagcatccgcggcgttagctgcgaaagggagtgtggcggcaagcgccgtcagaactcttttcatgatgcttgtacctcatgcaggacttcattattaagacggtcgaattcgccgttcgcccgccagatgtagataccggtgagaacaaaggagatcacaatcactccaacaccaattggaataccgcgtgtgacgctggtgttcggattcagcggcgtgcccagccagccgggcgcgaaggcgatcagtaaaataaagccgatataaactgccagcataataatcgacaggatggtggcaaaccgttgccgtttttcgactaactccctgaaatgcgcattgtcttctatccgctgataaatagtgccattcatcacagattctccagaggtaatgtagggattgttttaattcccgctcccttatgggagaaggttaacgctcgggtaacccttgccgaatgtaggccggataaggcgtttacgccgcatccggcaatcaatgcctgatgcgacgctgtcgcgtcttatcaggcctacaaaccgttaccgactcgcatcgggcaattgtgggttacgatggcatcgcgatagcctgcttctcttcaagcagcttctcgactacgccaggatcggcaagcgtcgaggtatcgcccaggttgctggtatcgcccgccgcaattttgcgcagaatacggcgcataattttgccggagcgggttttaggcagggagtcggtccagtgcagcacgtctggcgtcgccagcgggccaatctctttacgcacccagttgcggacttctgcgtacagttctggtgacggttcctccccgtgattaagcgtgacgtaggcgtagatcgcctgacctttaatattgtgcggaatacctactacggcggcttcggcaatcttcggatgcgccaccagcgccgactcaatctctgccgtccccagacggtgaccggagacgttcagcacgtcgtccacacgcccggttatccagtaatagccatcttcatcgcgacgcgcgccgtcgccgctgaaatacatatttttgaaggtggagaagtaggtctgttcaaaacgttcgtgatcgccaaacagcgtacgcgcctgacccggccaggagtcggtgattaccaggctaccttcggtggccccctccagcgggttaccttcgttatcgaccagcgccggttgcacgccgaagaacggacgtgttgccgaaccggctttcagctcggtagcgccaggcagcggggtgatcatgaaaccgccggtttcggtctgccaccaggtatcgaccaccggacatttctcgttgccgatttttttccagtaccactcccacgcttccgggttaattggctcgcccacggaaccgagaatgcgcagcgacgaacggtcggtgccttcgatcgctttatcgccttccgccatcagcgcgcggatcgccgtgggtgcggtatagagaatattgacctgatgcttgtccaccacctgcgccatacgggcaggcgtcggccagttgggtacgccttcaaacatcagcgtggtcgcaccgcaggccagcgggccgtacagcaagtaactgtgtccggtcacccagcccacatcggcggtgcaccagtagatatcacccggatgataatcaaagacatatttaaaggtcagcgccgcgtacaccagataaccgccggtagtatgcagcacaccttttggcttaccggtagaaccggaggtgtagagaataaacagcggatcttcggcgttcatctcttccgcctggtgctgatcgctcgcttgctcaaccaggtcgtgccaccacaggtcgcgcccttcctgccagtcaattttcccgccagtacgcttcagtaccaccacatgctctacgctggtgacgttcgggtttttcagcgcgtcatcaacgtttttcttcagcggaatactgcgcccggcacgcacaccttcgtcggaagtgatcaccagtcgtgagttggaatcaataatgcgcccggcaacggcttccggcgagaagccgccgaaaatcaccgaatgcaccgcgccaatgcgggcgcaggccagcatcgcaaccgcggcttccggcaccatcggcatataaatcgccaccacatcaccttttttaatgcccagctcgagcagggtattggcgaagcggcagacgtcgcggtgcagctctttatagctgatatgtttgctctggctggcgtcgtcgccttcccagatgatggcggtacgatcgccgttttcttgcagatggcggtcaaggcagtttgccgccagattcagcgtgccgtcctcgtaccatttaatggacacattaccgggggcaaaggaggtgtttttcaccttctggtaaggtttgatccagtcaagaatttttccctgttcgccccagaaggtatcaggtacgttaatagattgttgatacatcgcctcgtactgctgagggtttatcaggcaacggtctgcgatgttggcaggaatggtgtgtttgtgaatttggctcatgcttttgttctccttgtaggatgttaataatatgtggcataagcgttaaatgtaggggtattggcagttttgtttagtatttgggcgacagatcacgcaaaagtagaattgtgcaaataaacggcagggtaatttttgaaggtcagcaacaaaagttgattaattctttgaggaacatgcagttatgcatgctgttgaaaaagaggaagatactgactaactctaaagtggtattttacatgcacttacaattgattaaagacaacattcacagtgtggttatttgttacacataggggcgagcaatgtcatgacagtgtaggtgcggttactgtcgtgaaaaacaataaaaaccgccattgcaacaatggcgcaattcggatgaagcccctatgacaaggataaaaataaacgcacgccgtatcttcagcttattgattccttttttctttttcacttctgttcacgctgaacaaacggctgctcccgcaaaacctgtaactgtggaagcgaagaatgaaacctttgccccgcagcatcccgatcaatatctctcctggaaagccacctcggaacagtcagagcgtgttgacgccctggcggaagatccacggctggtgatcctgtgggcggggtatcccttctcgcgcgattacaacaagccgcgtggacatgcttttgctgtgaccgatgtgcgtgaaaccctgcgtaccggtgcgccgaaaaacgctgaagatggtccgctaccgatggcatgctggagttgtaaaagcccggatgtggcgcgtctgatccagaaagacggcgaagatggctacttccacggtaaatgggcgcgcggcggtccggaaatcgtcaacaacttaggttgtgccgattgccataacaccgcctctccagagttcgccaaaggcaaaccggagttaaccctttcccgtccgtatgcggctcgcgcgatggaagccattggtaaaccttttgagaaagccggacgtttcgaccagcaatcgatggtttgcggtcagtgccatgtggagtattacttcgacggcaaaaacaaagcggttaaattcccgtgggatgacggcatgaaagtcgaaaatatggagcagtattacgacaaaattgccttctctgactggactaactccctgtcgaaaacgccaatgctgaaagcgcagcacccggaatatgaaacctggacagcgggcattcacggtaaaaacaacgtgacctgtatcgactgccatatgccaaaagtgcagaacgccgaaggcaaactctacaccgaccataaaattggtaatccgtttgataacttcgcccagacttgtgcgaactgccatacccaggacaaagctgccttgcaaaaagtggtcgcggaacgtaagcagtcgattaacgacctgaaaatcaaggttgaagatcaactggttcacgctcacttcgaagcgaaagcagcgctggatgcaggcgcgacggaagctgaaatgaagccaattcaggacgatatccgtcatgcccagtggcgctgggatctggcgatcgcttcccacggcattcatatgcacgcaccggaagaaggtttacggatgctcggtacggcgatggataaagcggcggatgcacgcaccaaactggcgcgcctgctggcgaccaaaggcatcacccatgaaatccagatcccggatatctcaaccaaagagaaagcccagcaggccattggcctgaacatggaacaaatcaaggccgagaagcaggacttcatcaaaacggtgatcccgcagtgggaagaacaggcacgtaaaaacggtctgttaagccaataaccccgttccgcctcgcaaggggcggaaaacacaatggagtgaatatgagcgtattacgttcgttattaactgccggggtgctggcgtcgggcctgttgtggagcctgaacggaattaccgctacccctgcggcgcaggcatctgatgatcgctacgaagttacccagcagcgtaacccggatgccgcctgtctggactgtcataaaccagataccgaaggtatgcatggaaaacatgcttccgttatcaacccgaataacaaactgccggtcacctgcaccaactgtcacggccagccatcaccgcaacaccgcgaaggggtgaaagatgtgatgcgctttaacgagccgatgtacaaggttggagagcagaacagcgtctgtatgtcctgtcatctgccggaacagttgcaaaaagcgttctggccgcacgatgtccacgtaaccaaagtggcgtgcgccagctgccattccctgcatccacagcaagatacgatgcagacgttaagtgacaaaggacggattaagatttgcgtcgattgccacagcgatcagcgcaccaatccgaactttaacccggcgtctgttccgttgcttaaggagcagccatgacctggtctcgtcgccagtttctcaccggcgtcggcgtgctggcagccgtcagcggcaccgcagggcgcgtggtggcgaaaacgttgaatatcaatggggtgcgttacggcatggtgcatgacgagtcgttatgcatcggctgtaccgcctgtatggatgcttgtcgggaagtgaacaaggtgccggaagcgtcttcgcgcctgacgattattcgtagcgagccgcagggcgaatttcctgatgtgaaatatcgcttcttccgtaagtcttgccagcactgcgatcatgcgccgtgcgttgacgtctgcccgaccggtgcgtcttttcgcgatgctgccagtgggattgtcgatgttaatccggatctctgcgtcggttgtcagtactgcatcgccgcctgtccgtaccgcgtgcgctttatccatccggtcacgaagacggcggacaaatgcgatttctgccgtaagaccaatttgcaggccggtaagttgcccgcgtgcgttgaagcttgcccgaccaaggcgctgacgtttggcaatctggacgatcccaacagtgagatttcgcaactgctgcgccagaagcccacttaccgctacaagctggcgctgggaaccaaaccgaagctgtaccgcgtaccgtttaaatacggggaggtgagccaatgacgcagacttccgcatttcattttgaatcgctggtgtgggactggccgattgccatctacctgtttttgattggtatttctgctggtctggtgacgctggccgtgctgttacgtcgcttctacccgcaggcgggcggtgcagacagtacgttgctgcgcaccacgctgattgtcgggccgggcgcggtgatcctcggtctgttgatcctcgtcttccacctgacaagaccgtggaccttctggaagctgatgttccactacagttttacctcggtgatgtcgatgggggtgatgctgtttcagctctacatggtggtgctggtgctgtggctggcgaaaatctttgaacatgatttgcttgccctgcaacaacgctggttgccgaagctggggatcgtgcaaaaggttctgagcctgctgacgcccgttcatcgcggactggaaacattgatgctggtgctggcggtgttgttgggggcttataccggctttctgctgtcggcgctgaaatcgtatccgttcctcaataacccgatcctgccggtgctgttcctcttctccggcatctcgtccggtgcggcggtggcgctgatcgccatggcgatacgccaacgcagtaacccgcattccacggaagcgcagtttgtacaccgtatggaaatccctgtggtatggggtgaaatcttcctgctggtggcgttttttgtcggtctggcgctgggcgatgacggtaaagttcgtgcgctggtggcggcattaggtggcggtttctggacgtggtggttctggcttggtgtcgccgggctggggctgattgtgccaatgctgctcaaaccgtgggtcaatcgcagttccggcattcctgccgtgctggcggcgtgtggggccagtctggtcggcgtgttgatgctgcgctttttcattctctacgccggacagttgacggtggcgtaagccagaaaagaggtggtttctggacgtattccttcctgaagtcggttttctggcgttgttgttaagtctcggggtcaacgtgttgaccccgttgacggccttcgcgggagtgcggttgcgctggcctgccatgatgcgactcacttgcatcggcattctggcgcagttcgcgctcctgctgctcgcctttggcgtactgacgtattgttttctcatcagcgatttctcggtcatttatgtcgcgcaacatagctatagcctgctgtcgtgggaactcaagctggcagcggtgtggggcggccatgaaggttcgctgctgctttgggtgctgctgctttccgcctggagcgcgctgtttgcctggcattatcggcagcaaaccgatccgctatttccgctgacgttagccgttttatctctcatgctcgccgcactgctactgtttgtggtgctgtggtccgatcccttcgtgcggatatttccaccagcaatcgaaggccgcgatctcaatccgatgctgcaacatcccggtcttatctttcatccaccgctgctttaccttggctatggcggtttgatggtagcggcgagcgtggcgctggcgagtctactgcgcggcgagtttgatggtgcctgcgcccgaatttgctggcgctgggcgttacctggctggagtgcattaacggcggggatcatcctcggttcctggtgggcctactgcgaactcggctggggcggctggtggttctgggatccggtggaaaacgcctctttattaccctggctttctgccactgcgctgctgcacagtttgtccctgacacgccagcgggggattttttgccactggtcgctgttgctggcgatagttactctgatgctgtcgctgctgggcaccttaattgtccgttctggcattctggtttcggttcatgcgttcgcgctggataacgtccgcgccgtgccgttgttcagcctgtttgcactgattagccttgcgtctctggctctgtatggctggcgagcgcgggacggtggcccggcggtgcatttttcggggttatcgcgggaaatgttaatcctcgctacgctgttgctgttttgcgcagtgctactgatcgtgctggtgggaacgctttatccgatgatttacggcctgctgggctggggacgcctctccgttggcgcgccgtattttaaccgcgcgacgttaccgtttggtctgttgatgctggtggtgattgtgctggcgacgtttgtctctggcaaacgcgtgcagcttccggcgctggtagctcatgcgggcgtgctgttatttgccgctggggtcgtggtctccagcgtcagccgtcaggagatcagcctgaatttacagccgggtcagcaggtgacgctggcaggatacaccttccgttttgagtgcctcgatctacaagccaaaggcaattacaccagcgaaaaagcgatagtggcactgtttgaccatcagcaacgcattggtgaactgacgccggagcggcgtttttatgaagcacgccgtcaacaaatgatggaaccgtcaattcgctggaacggcatccatgactggtatgcggtcatgggggagaaaactgggccggatcgttacgcttttcgtttgtatgtacaaagcggtgtgcgctggatctgggggggaggattgttgatgattgcgggcgcattgttaagcggatggcgggggaagaagcgcgatgaataaagggcttctcacgctactgctgttatttacctgttttgcgcacgctcaggtcgtagacacctggcaattcgccaatccgcaacaacagcaacaggcgttaaatattgccagccagttacgttgtccgcagtgccagaatcaaaacttactggaatccaacgcgccggtggctgtcagtatgcgccatcaggtttacagcatggtggcggaggggaagaacgaagtcgaaatcattggctggatgaccgaacgctacggagattttgttcgctataacccaccgttaacgggtcagacgctggtgttatgggcgctgccagtggtgttgttactgctgatggcactgatcctctggcgagtgagggcgaagcgatgaaacagcccaaaataccggtgaaaatgctgacaacactcacgatattgatggtatttctctgtgtcggcagttatctgttaagcccaaaatggcaggcggtacgtgcggagtatcagcgtcagcgcgatccgctacatcagtttgccagccagcaaaccccggaagcgcagcttcaggcattgcaggataaaatccgcgctaatccacaaaacagcgaacagtgggcgttactgggcgagtactatctgtggcaaaacgattacagcaattcgttgctggcgtaccgtcaggcgttgcaactacgtggtgagaacgctgaactgtatgcggcgctggcgacggtgctttattaccaggccagccagcatatgaccgcccagactcgcgcaatgatcgacaaagccctcgcgctggacagtaatgaaatcaccgccctgatgctgctggcttccgatgcgtttatgcaggcgaactacgcgcaagccatcgaactatggcaaaaagtgatggatctcaactcaccgcgagttaaccgaacacagctggttgagtcgattaatatggcgaaattgttgcagcggagattggattaatcatctggtgatgaagattatgtcattgagctgcataaaaaataatcgaatgaacatatgccaaaaataatcactaatcagtattattgcagattaaacaaataaaaatctttccataacaaatggttattcattaatcctgccataaactcgcgttattatgcattaatgcagcgaaaagctctgttgttaaagggttgcgcaacataccgcgcaaatgatactgatcataagcgttaaaaaaatctacaaaccaacgcaacacaattcatgccctggcagtatgtcacgttctcgcgtttctgaacggggaacggcgctccattgaggaagtcattcatatgaaaaatataaaattcagcctggcctggcagattctgtttgctatggtgctgggcattctcctgggaagctacctgcactaccatagcgacagccgcgactggctggtcgtcaatttgctctctccggcgggtgatatcttcatccatctgattaaaatgattgttgtgccgattgtgatctccacgctggtggtgggtatcgcgggtgttggtgatgccaaacagctcgggcgtattggcgcgaaaaccattatctacttcgaggtgatcaccaccgtcgccatcattttggggatcactctggcgaacgtcttccagcccggtgccggggtggatatgtcgcagttggcgaccgtcgatatctcgaaatatcagagcactacggaagcggtacaaagcagttcccacggcattatgggcacgattttgtcgctggtgccgacgaacattgtggcgtcgatggcgaaaggcgaaatgctgccgatcatctttttctcggtgctgtttggtctggggctttcttccctgcccgcgacgcatcgtgaaccgctggtgaccgtgttccgctccatctctgaaaccatgtttaaagtgactcacatggtgatgcgttatgcaccggtgggtgtgtttgcgctgattgcggtgacggtggctaactttggtttctcgtctctgtggccactggcgaaactggtgctgctggtgcatttcgccattctgttcttcgcgctggtagtgctgggaattgtggcgcgcctgtgcgggttaagcgtctggatcctgattcgtattctgaaagatgagctgattctggcgtactccactgccagctctgaaagcgtgctgccgcgaattattgagaagatggaagcctacggagcaccggtgtcgatcaccagtttcgtggtgccgaccggttactcttttaaccttgatggttcgacgctgtatcaaagtattgccgctatcttcatcgcgcagttgtatggcattgacctgtccatctggcaggaaatcattctggtgctgacgctgatggtgacctcgaaagggattgctggcgtgcctggcgtgtcgtttgtggtgttgctggcaacgctgggtagcgtaggtattccgctggaaggtctggcgtttattgctggtgttgaccgtatcctcgacatggcgcgtactgcgctgaacgtggtgggtaatgcgctggcggtgctggtgattgccaagtgggaacacaaatttgaccgtaagaaagcgctggcttatgagcgtgaagtgctgggcaaatttgataaaactgcggatcaataattgaagattgccggggatatccacccggcaatgtgtgaatgcctgatgcgacgcttgccgcgtcttatcaggcctacgccagacagcgcaatagcctgatttagcgtgattttgtaggtcggataaggcgtttatgccgcatccgacatcaacgcctgatgcgacgcttaacgcgtcttatcaggcctacgccagacagcgcaatagcctgatttagcgtgattttgtaggtcggataaggcgtttacgccgcatccgacatcaacgcctgatgcgacgcttgccgcgtcttatcaggcctacgccagacagcgcaatagcctgatttagcgtgattttgtaggtcggataaggcgtttatgccgcatccgacatcaacgcctgatgcgacgcttaacgcgtcttatcaggcctacgccagacagcgcaatagcctgatttagcgtgattttgtaggtcggataaggcgtttatgccgcatccgacatcaacgcctgatgcgacgcttaacgcgtcttatcaggcctacgccagacagcgcaatagcctgatttagcgtgattttgtaggtcggataaggcgtttaccgcatccgacatcaatgcctgatgcgacgcttgccgcgtcttatcaggcctatcttaaccgttggttaatttttcaaactcttcacacccggtatcaaacccttccatacagctcaggttcaaccagtgcagcgccttttgcttgttcttctcgataaaaccttcttcaccgtttaagaacatcattcccgcccagtactcggaataaccggttcgggaaattgcagagctgcgtttgaaataccaggttgccttgtcatcgtcggccttaatgcccacgccgttggcgtaaatcaaaccaagcagcatttgggcatcgacggcagagtcgttctccagatcttccgaggcgttttctaacagcgaaattgcctttggataatccggtttacccgcttgagtatttaccagaatatgcgccagcgttacttcaccttctttactgcccgcttgcgccgctttctctgcaagaacttttgcttgtggatagtccagactgaccggattggtgattttgatctgcgccagcagcgcgcaggcatcagcatcaccgctgtcggcggctttctgtgcccaatattcggctttgctcaaatcgccggagctaaaccagctgtcggcaagaaaatattgtgcgcgtcggtccccggcctctgctgcctttaaatactggctgccaggctcggagtcgttggcgtgggcaaagaatgtcaaaaacaacatcaatgcgataatttttttcattttgataatacgattgggtagggagtaaccagtataaagagttcgaatggataaaaaaacagcctccgaaaggaggctgtagaaaggacggtattacgccagtgccgcttcgcgcaggcgagttttcaacttgttgtactcgtcaatcacgtactgctcggcggcgcgctgatcggcgatcggctcgacgcgaacggcgcagtatttgtactccggcgttttcgtaatcgggcttaagttttcggtaaccagctcgttacaggcaccaatccaccactggtaggtcatgtaaatcgcccctttgttcggacgatcgctgacctgcgcacgggtgataattttgcctttacgcgagtgcacccaaaccaatgcctcatcttcaatacccagacgtttggcgtcttcggtattgatttgtgcgtagccaggttcatcagccagcgccgccagtgccgcacagttaccggtcatcgaacggcaagagtagtgaccaacttcacgcaccgttgacagtaccatcgggtactcgtcggtgagtttgtcgattggcgctacccagtcgcaggtgaagaactgcgccagaccgttcggggtatcaaacttctctttaaacagataagaagtcccctgatcggcatctgaagtatcgcggcaaggccactgaatgaagcccagttcgcccattttctcgtaagtcgcaccgtagaaatccgggcacagatgacgcaactcatcccagatctcctgggtgttgttgtagtgcatcggataacccatacgggtggcgatttcactgatgatttgccagtccgttttcagatcccatttcggttcaaccgccttgaagaaacgctggaagccacggtcagccgcagtaaacacgccttcatgctcgccccacgacgttgacggtaaaataacatccgccgccgacgcggttttggtcataaagatgtcctgaacgataaccagttccagatcttcaaaggctttacgtactgccgacagctccgcgtcagtttgtagcggatcttcgcccataatgtacgcggcacgcacttcgccatgcgctgcgcggtgcggcagctcgctgatgcatagccggtatgcgctggcaggctttccacgccccaggctttggcgaatttctcgcggttagccggatctttcacgtactggtatcccggatacgtatccggcagcgcgcccatatcgcaggcaccctgaacgttgttctgaccacgaaccgggttaacacccgcatgcggcttaccgaggttaccggtcagcatcgcgaggctggtcagagaacgcacggtttccacgccctggtagaactgggttacacccatgccccacaggatggcggcgcttttcgcctgggcatacatccgtgccgcctgacgaatctcactggcgctgacgccggtgatatcttcaaccgactccggcgtgtagccttcaacgattttacgatactcttcaaagccttctgtacgtgaagcgacgaacgctttgtcgtacagattttcttcaataatgacatggcccatcgcattcaacagcgcgatgttcgagccgtttttcagtgcaatgtgcatgtcagcaatgcgcgcggtttcaattttgcgcggatcgcagacgataattttcgccccgttacgtttagcgttaattacgtgattcgccacgattgggtgggaatccgccgggttgtacccgaaaacgaacactaaatcggtattatcaatttcgttaatagcattgctcattgcgccattaccgaccgattggtgcagacctgcaaccgatgggccgtgtcagacacgagcgcagcagtcaacgttattggtaccaataacggcgcgcgcaaatttttgcattacatagttggtttcgttacccgtaccacgcgaggagccggtcgtctggatggcatccggaccgtacttctctttgatggcgctcaggcgctcggcaacgtaattcagtgcctcatcccaggaaacaggttcgagtttgccgccacgctggcgacggatcatgggggttttcaggcgcggggtcaggatctgggtatcgttaatgaagtcccagccataataacccttcagacacagggtaccctggttggttttcccctgcgctgcctccgcccggacgattttgccgttatcgacgaccaggttgattttgcaacctgatgcgcaataggggcaaaccgtgacgacttttttcatcggtctcgctccagttaatcaaatcacgcatacgcgctctcgactacagtatgcatcttttatgccacattttatgtggggtcattccctgatattacgggcactatttattcaaaactctgacgaaaaacaggctgtcgtcagttttgacgtgacgaaacgaaataccgcgtgacagccatcacgcggcagacattttattttttctcgacgacgggacctgcctgatacccgccgcccagcgatttcatcaactgaatgctttggatcacccggcggctgtccagcatcagtaatgacatctcttcggcaagcactggcaaccgggcttcggtggcctgtaagcggctggttaagccgcgctgataggcggcctcggcagcgcgctgggtaaagcgcgtggcttccacgcgttcagcctgcatttctcgctcgtcgttgagcgtttgcagacgcgtgccgttgacggcaacgtcacgcaccgcgttcagtactgactggttgtaacgttcaatcatcatgttgctggcggcgcgcgtgccttcgagattggcattcaaccgtccaccgtcaaacagcggcaatttcagacccgggatgaagttgaactggcgactggtttttttgaataaggtatgcagatggatggagtccagaccgaaaaacgctttgatatcaaagctcggatagaacaacgcccgcgcggaatccacctgatctaatgacgcctgaacataccagcgcatggcttgcagatccgggcgtctggcgagcaactcataagagagtgtcgccggaatgccggtctggacttgcggtaatgccaccggtctgatctccggcatatcgctggctcccgcgccaatcaatgcacgcagagattctcgcgtttcggtgatttgccctttgacggcaacaatttgtttatcgaccgccagaatctgtgcccgcgcgccgtggaaaggcacttgcgcttccagaccgtgcgccactttactctggtgcgctttcaccgcgtaatcaatcacatcgtgagtttgttctaacagatcgagcatctgatagctggcctgcatactgtaataaagctgcgctacgcccgtggccagcgatagctctactgctgcggtttctgccagcgcggcattatgcgccgcaatggcgcggcaaccgctgagcgatgcacaccccacaaatcaagatccagtccggcaaacaaacctactgtggcttccgtatagtacggcccgtccatacccagtgctggcgcatccattgaataagggcttaaaaagccgttcgccgagacacgttggcggttgagcatccctaacgctgcgacctgtaattgtgaaccggcatctaacaaatcggcctgggactgcgctttttcttcccgcagtttcgcttcggcgagggtgtgtgaaccacttagcgtccgttggatcagcgcatccagctgcgggtcattgagttgtttccaccactgcgcctgcgccagccggagctggcaagatgaatatcgtcggccagtttgatttgttccggtttgagctgttgatgaggtgcagaatccttacgtaccagggcacagccggaaatcagcgtcgtgctgccgagaatgctgcacaacagcagacgtgaaagttgacgattgatcattgcgtggctccttgtgcctgttccgtggcgggcgttaatgccggggctgtccagtctggcaagcgggcgaaaagctggcagacgtgttgctcctgttttaataaggtgggcaggatggcctgagaggcgggtgtctcttcaagcgttatttgaggagaacggctgagtgcggttgccagaccggcagcgtatttctccagggcgtcggcaaactgacctgctctgtccggctgtagtgcgttatccagcgcctgcgccgagttccaggtggcatcccaggcgtgaagaagatcgcggccctgacgaataaccgtttgcgaacgttcaatcagtaatgcgcgttcttcgctgtccagttgacgctccagcgccacgcgttggcacatctcttcacaggcattaaacgccgcatgcagaccgatacgaatttgcagataagtgcgcagagccgtgacttcctgctggcgtgggatccgcattactttacttaacatacccagcgtgccagccagtttttgcggcagtgtgcgcgcttcactttcaggccagacaaaggtgtaaatcaccgcggacaccacggtaccaatgatgatacccagggcgcgatcgcgaatttccaccaggtcgtacactgggccaaaaacgttttcgagcgtggcgagcgcgaaggtgaccaccatctgtgtgccgatataagaagagcgttcagagctggtggcaatccatgcgcccaacaggaaaatcggtgccagcacaaacagcaattcgacaatattgtccagccagggcatgaccagtagcgtgaataacagcgccagaatcgcgccgcaaaaggccccgccaaaacgcagcaccatcttctggtacgacgaaccgacatttgggttagcgacgatcacgcatgtcagcatacaggtgtgaatgccttcccagtccacgccgctgtaaaaggtgtaacagatcaaacaggcgagcagcgtttttaccgcgtagcgcatatagtctggattggtaaaagcatcggcggccattgatggcggtttggctgcgggcgttggcggcgtattcgggtccatctgacccagttgtaacaacgtctggcagatattctccaggttacattcccgtgccgccatcgcttcactttcactgatccgccagtcgctttgccagcactgaccttcagcaacggcatgctgcagcttgttgatttctgaagctaatttttgtcggaattcaataattgcctgagaatcagcaaaagaggtgggatcgtagcgattcagcgtcgagtaaatgtaggttaccgttgccacgcagctttgccaccatgcgttttgagttcgccagttggcatcgtccgcgaggcaaaagacattgagtttttgtagcgccagcgcctctctttcaatccgcgtttcgggtagcggtgcgaggctgtctgtcaggtgactaatggcatcatcaagccgatcattaagcgcctgatgcatttgcgaaatggcacgactgggaaaccacagcacgccgattaacgtcatcagcaaggttggatagaggccaacaacgatacaccacagcgttaagcgcacgaccacttccggatagtcgagcatggcggggaaggtttgcccgtaaatagcgacaatggcgacggcgaaaaagaccagccccaagcgatgggtgcgcatcaaaaacatgcagcccatcaggatcggtccggcgatgatcaatcggatcaacggttcgccgtatgaccatttgtagatcaaaaacaggctgccgatctccagcaccgtggcaaccacaaacaagatcgcgacaaatttggtgtaaaacgcgttcgactgaataccgtaaaacagcactgccagcgataacgccacaaaagggatctcaaaggtcatcgagatcagaatcaccagcaggcagcctacccagagttgcacggtctgcggcacgcgacctggtcgccgctcgcttaactcttcatgaaagaacgccagcagcctgaccaccggtaatggcagggagttgagcgcgctcattattgcggctcaagattagcgactgccgaagcgccgatgcggaacatttccgggtcaggtttatcgaccatgattttgaccggaaaacgctgggcaacgcggacccagttaatagaacgagacactttcggcaggccgcccagcaccaggccgccgtcatccggtagcacgccgtagccaatcgaatccactttaccctcgaaggttttgccgctgtcactcatcaggcgaatcgttgcgggtgtacctgagcgaatatttttcagatcggtttcgcggaagttggcgatcacataccagtgacgagtgtcgattagggtaaaaatagggcgcatggcagaagcaaattgcccgacggaggttttgagggaaatgacccggccatcaaacggcgcgcgaacggtcgccatttccagatgcagtttggtcagggcaatatccgcttcgaccgccgcacgctgggcaactaatgcatccacgccgctgacggcgctggcggctgactgcgcctgtaacaatacggcattaagatccgcttctgcggcgcgctgcgccgttcttgcacggtcaacatcttccgctgagacaaaaccttctttcagtaatggctcggtgcggcgtaatgtatctgtggcctgtttcgcggcggcacgggctttttctaccgtggcattaaccgagtcggcaccaaactgttgcgcgtcaacgctacgctgggtgagcataatttgcttatccagcgccgcgagggaggcttcagctttcgccagattggcttcgtacgggcgcgggtcgatgcggaacagcaaatcgccctgtttgactgcctggttgtcggtgaccgccagttctacaatgcggccgctgacttccggtaccacatcaatggtatctgctgacgcgtaagcgtcattagttgatggcgcactgtctacgcgccagataacgaaaacaagggcaaccagcgccaacgcaaccactaacagagcagggaatttactgcgaggagcttttttcggcgtactttccatgagcgcgtctcaaatagattagaaaaatgccagccagaacagcatggcgtagagagcaaaaagggcggtataaataattccgacaaatgccagattgatatttgcccgctgaataactcgcctcgtgatgagcgtcaaaataaggctggcaatggcgcagaaaaaccagctgggataataagcgccgatcaccgggattgccggagataatgagcatcccgaaaccatgaagacgggaattatccaggctgtttttttgagttgcatcgccatgcgagagagaactgttggcatattaaatacatcctgtctgctgcgaacaatatctgtagtgaatatcaatatccattgaaggcgtcagtatggctattttcttgatgaataaaaatagctttattcagccaccgcattcataacttatatattttatttattaattggctgtatatatttttaaaataaatacttttgggggcttcagcgcccccaaaagcgagtgacattaatttggggttacgatattcacccacaaatcgaaattatccagacaggcgataatttcttccagtttcgcgccattgccaataattttggctttcttcgcttttaccagatccgccattttggcttgtccggtcagcacggcgtcgagatcttcacggctgatgtagaaagaggcgtcggcttgcggttgcagcgttttccggtagttaagcacgctatcgttcagcgtcaggttgaggttatcgccgttgctcatattgaagttcaggctgatatttttacccgcagctttcgcgctatcgaggcgaacggccataaagtcgaacagcatttcgaccgacatcccgcgaatggtgtccggggaaccggtggtgccgtggctgaacttatgcaccccttcgcgcagctctttcgcgccggtcaggtagaaaccgcgccatgtggcggactcggcctgatagcccagctgttcaaagttattcgcttgcagattcttcgcgacctggtcacccgggttggcggcaatcacctgtttcagcagttctgccgaccagcggtaatcaccttgcttgttcgcttcttgcgccaggttgatgacacgggcagaaccgcccagcgcctgcacgtaacgtttacccatctccacctgaccatacggatgcaggttagccgggttaccgtcgtaatagccaagatagaagttatacaccgcgcgggcgttgtggctgacagaaccgtaatagccgcggctggcccagttattggcaagtgcaggcggcagcttaatcatgtcgccgatttcattcatggtgtagccctggttcgccaggtgcagggtctggtcgtgaatgtacttgatggtatcgcggtatttaccaatataatcattgatatgcttattgccccagaccggccaggtgtgcggcataaacagcacttccgcgtcgttaccccacatatccagcgtttcgttcagatactcggtccacttgctggtgtcgcgggttttcgcgccgcgcagagtgtagaagttgtgcagggtatgcgtggcgttctcggcggtacacagggctttcagggccggaatatagaagtgcatttcggctggcgcttcgctacctggggtcatcaggaagtcaaactccaggccgtcgataatcatcttctcgccagttctgacgatagttttcgtcggtgcaataatgctcgggtcgcccgttgccagcgtcacgccaaggccattacccacattgccttgcgcgttgtgcggcagtaacagaccgtaagagtagagcgcacggcggctcatgatgttacccgccagcacgttttcgctgatggcttcgtccataaagcctgcaggggcaatcacctgaactttgccggatttaacatcggcttcagagataatgcctttcacgccaccatagtggtcggtgtggctgtgagtgtagataacggcaacaatcggtttttgcggacgatgctggaagtaaaggtcaagtgcggcttttgcggcaggcggcgtcaccagcgggtcgataacaataatgcctttctcgccctcaacgaacgtaatgttagagatatcctggccgcgcacctgatacattttatcggtgactttgaacaggccagaaataccgttgatttgcgactgacgccacaggctggggtttacggtttccggcgctgcggcattaatatcaaatttgtaatcgtccgcgcggtagtaaactttaccgttcgcatcacgcagaataccttcatccagcagcggggcgataaatccacgctgggcatcgtcaaaatcctgacgatcgctaaacggtaatgatttggcgtaattctgattaacctgttgggtatattgagtggcggctttcgcttcctctttcgcgttagcggtatttaccatcatgccgctggcggcagttaacgcaataacaatcctgctcaaacggaataaccgagagttattcatataaatctccatttatcatttatgtcgtaaatatgtaatccatgcaaaatacgtcatttaaagctggcgttatcataattgggaaattgcgactttaataagtggaagtgtgagcggaacgcgccattttattaggcatttgtgctgaagagggaaaattacagtaaaactatcattgcagaaaataatatgagtcgttttatgtgtttattatatatattgtacctgtcgttggcacagcgggacattgcgctactgtgccaacgttttactcatggggctttagcacagaactgtggcaaaaaacgttgatgcgccaatattgctgcaccctgagcgccattaaagtcagaagatgaggcggcaataaagcgcacgacctgatgcggcagtggacggcgcaggtacttttgggtcatggcaacgagagtctcgcgtgggaaggcgggcatatccatcacgccaccgcccaggatcaccgcatcgggatcgaacagattaatgctggtggcaatggcccgtgccgcgttttcaagcagactctggacgaaaggggcgttttccgcatggacgaaaagatcgcgcaatgggtaatttcggggctgttgttcgtaccagcgtcttagcgccattccagagcaattggtttccaggcacccaggattgccacacgcgcagtgttgggtcatatctcccagggggatatgacccagttcgcctgccacaccgtgtgcacccgtccacggcgcaccgttcatccacactgcgaaccccatccccgtaccgagataggccgccagaaccagttgttgcgtaaggcggttttctactacgtcccaggagagttgcaggttaacgtcgcgggaaaactcaaccggacaattcagcgtattttcgagcttatcggcgagatcatataaatccgccgctgttaacggcaggttaggcgtagaaataatggtgcgtttatctttactgaccagcgccggaaatcccatcaccagaccatgacagcgagcgttaaagcgcctgagttgctcgtcaatcatttcgccgatacccgacaccaggccgggagcaatgacttctgcggtccgctttttttcgcagtgtagcgtttcaccttctgctgtccgcagacaaaagcggatatgcgttgcccccatatccacgcccgctacgacgttatgctgtttttgcatgaggctgtacctcgctttttgcagccagaatctgcgcggtcataattctccatgcttcgtcgatattttccgcatgattaaacaggccggaagtgccgacgataaagacatccgcccctgccgccatcagtttttcgtaagttgcctggttgcaggaaccgtccacctcaatttcgtactccagaccttctcgttcacgccatgccttcagttcggcaagtttatccagcatttcaggaatgaacggttgtccggcaaagccgggatcgacagtcatgaccgtaattttatcggccttatggatatagtatttcatggcctcaactggcgtctccgggttaaggatcagccccactttcatgtcatgacggcggatttcatcaatcaggcggaacgcctggccgttgatggtttccggatgcagagtgatgaaatctgctcccgcacgcgccagttgagcaatgtaatcctgcggccgcgtcaccatcagatgacagtcgagcggtttagttgccagttttttaacctgacttacgaagaacggtgagagtgtcagattggggacaaagtgaccgtccatgatatcgatgtggaagtaatcggcatggctgtcgataaattcgatctgttctttaaatttcagcagatccatacacattaacgagggggagattttcatgttcaattccttacttactgataagacggtcaagggcgacagccgcgataattaatccgcccatcaccaccagttggtaataggtttgtacctgcaaaatattcagaccgttgttgatggtgccgatgatcaacccgccaatcaccacagagaaaatgcgccccttgccgccgaagaaactggtgccgccaatgatggcgctggcaatggcataggtttcaaaacccataccggcaagcggttctgcggcaccgagtcgtgcagttgagacgacgcctgccagacctgcacaaacaccggagatgataaacaccaccaggatgtggaatttcacgtcaatcccggaatagaacgccgaatttttgttgccgcccagtgcgtagatgttgcgcccgagccgcatacgcgttgtcagaaaccaaaggatgagcgcgacaattagtgagaagataacggggacaggtatcccaattacgctggcggcaaagaagttcacgaagtcaaatgagaagccgtataccgagttggcatcggagatcaccagcgtgatcccacggaaaatcgcgttggtgccaagggtgatgatgaacgggtgtagccccgtccagttgaccaggcagccgttgatcgcccccagtgcgccgccaaccagtacaccgccaatcatcgctgcgagaaacgggtcaacacctgccaacatcagtttggcggtcaccataccggaaagcgccagaatcgcgccaaccgagaggtcgataccagcgaccaggatagcgaaaaactcgcccatgccgatcaataccgtcacggagctttgaacaaaaatctgggtaatattattggtggtcagaaaatattctggtgacagcgaaccaaagatggcgacgatgatcgccaggataaaaaaggtgccgtatttatcccagaacagcgcaaagttgaacggtttcttctcgctcgcttcgctttttactcttgtggtaaagcccatgccataatctcctcttcgctcatgtcatcgcgattcgtcaggatttgcgtcagtcgtccttcgcagaacacggcgatgcggtcgcagacggtgataatttcaggtagttcagatgacaccatcaggatgacttttccgtcgtccgccagttggcgcatcactttgtaaatttcggctttcgcgccaacgtcgatgccgcgggtaggttcatcgaaaataatcacttccgggcaacagcacagccatttggagatcaggactttctgctgatttcccccggagagttcggtgatattctggtttaccgaatgacatttcagcgccagcagttcgcgttgattttcagcggtacgttgctcgtcaacttcatgaaacaagcccatcgcgcctttatagccgccgtctttcagactgcggctgatcgccatgttctgagcgatggaaaagttggggaaaaaaccgttatcccggcggctttcagtgatgtaagccatcccttttttcacggcatccaggggtgaacgtggagagatatctttgccattaagacggatttctccgccagcgcgtttatccacgccaaacagacaattcatcagttcagtacgtccggaaccgaccagtccggcaaagcctaatatttctccccggcagacgctaaatgagatatcccggaccttttttctgtcacgactggtgacgttccgcacctcaaaaaccgtttcgtgcgcaaggttgctgacattctccttcatcgcgttaaaacggttttgcagttcgcggcctaccatcagacggacgatatcgtcatttgacacatcgcttactatgccgctgcaaacgctgctgccgtctttcatcaccgtatagcggtcgcaaatacggcgaatttccgccaacttatgcgagatatagacgatggccgtaccctctttacgcaactgattcatgatcagaaacagatagtccacctctttattggtgagtgaggaggtgggttcatccatgatgatgactttggcatcgagcatcagcgttttggcaatttctagcatctgcttgtggctgatagataaattcgccactttctcatctagatcaactttcaagcccacgcgtaataacatcatggcggcgcggacacgcatttctcgccagtcgataatattgacgccacagatttttttcgtcagatgacgaccaatatataaattttccagtacggttaattcatcaataacgctgagttcctgataaataatcccgataccgagttgtgccgctaatttatgatccagcttgttatagctaatgttattaatggtaatggtgcctttggtcggctcatgtattccggataaaactttcattagcgtggatttacccgcgccattttctcctagtaatgcatgtatttcaccaggataaaccgttaaattaaccgactttaatgcgtgaaccggaccaaaggacttgccgatccccgccatcgatatatatggcgtggccataaataacctctctgcacgaaatatcgtattattgcctgatggctacatttatcaggtctacgttcaggttattttgttggccggataagacacttcattagcatcatcatccggcatcattcagttttattgagtgaccaggattgaatcgaccagtttaaattccggtgctttatccagcgggataaccttgccggatttctcagcgtcaaccatcagcttcagacccgttgcgccgatatccgccgggttctgggcaaccgtcgcggtcatttgtccggcttccaccattttgcgggcttccggaatgccatctgtaccgacgaccagcacttttcccgtttttccggcgtttgcgactgcctgagcaacacccattgccatcgtgtcattcgcgcaatagatcgctttaatattcggattacgttgcaacacgttagtggcgacatccagtgctttaatgcggtcccagtcggcaggctggctggcgacaagcttgatctggcttgcttttttgaaggcttcggtggcaccattacgacgcgcttcaccggaggcgttaccggctttaccctcaatgattgcgacttcaccaccttcagcgcccaatttgtcaataatgaacgacgcgcctttcgccccgacagcaacgttatcggtggtgacaaaagcttccacattgccgccagcttttttcagattatccatgtcgattttttcatcgagattaaccagataaatgccttttttccatgcgcgggcgacaggcatgaccagattcactgaggataatggagcgaaggcgatacctttgtaatttttattactgagatcttcaaataactgcaattgagattgaaaatcgccttctgaaggagaggcaaaaatatcaacgctgacgcccagtgtttttgcttcatcttcaatgccttttttcatatctacccaaaatgggttggagagggttttcaatacgacagcatattcggcggcagcaaaagcgctggttgacaacattaagcccacgagtgtgccgctgaaatatttcagatatttattcataataatgttctcacggtaaggggacaggtaactccgcgatggcggaattacctttttcttatttcagcgcgcctggtgagaagaaatcaacaattgcgccggttttttgcatattaatattagcttgttcaatgttgagctgggcgacagagacaaaaaaagcgtccagcaaagttagttgtaatattcttgccgaggcattacgacctaataacggcgtttccggggctggtgagcaaataatataatcggccagtttcgctatcggtgaatggtagctatgggttatacaaataatctttgccccgttcttttttgccagttctacggccgcttttacatcactggttcgcccggaatgggtcactaccagcacaacatctccttcctgtaacaacgaagcggacatcatcatgatgtgagcatcaggataggcctgacagcgtacgccaatgcgcaagaacttgtgctgtacatcagcacagatagcatttgatcctccggcaccgtacaaatcccgctgtctggcctgatagaaaaagcgggcggcacggtggatctcatcaacgttgacgatcgactgaccttccataatggtgcgtaaagtgatgttaaataccttattcaccacatcctgcggcgcttcatcaaaagccaactcggaaggcaatacctgttctgactgagaaaaataatcttccagcgcactgcgtaagttacgaaagccgctaaaccccagcagctttgataccttaactatcatcgcttcagataccgccagagcttctgcgacatctttaattgcgggtgcacaactcaggttaccgggtttgagtaaccactccacgatgcggctttcattttctgtcattccttcctgcttcattcgcaggtaaggcgctaaccctataccgttcggaagcgctgaatcaaactctgactggctcatcacgttctcttgtccttgaattgaagacgccactatatcaccacagcaagaacagaaaagatgctggcgacttcacaaaaaaataaaatttataaagtttattttattgtgaacaatggcgagtggcttaaaattttatttcatttaattagtttaaaaacatgatgttatttgtttttctggttttttagatgatagatgttgctggatggtgagtgtctttaacgctattgcgctgtcagatgtaactctgtaaaacagatcaggaaggcgtaattcatcgattttgggtgtttttaattcattaacatcacaaatgttttttgattgtgaagttttgcacggacggggaagatgaatgaaaaagattgcatttggctgtgatcatgtcggtttcattttaaaacatgaaatagtggcacatttagttgagcgtggcgttgaagtgattgataaaggaacctggtcgtcagagcgtactgattatccacattacgccagtcaagtcgcactggctgttgctggcggagaggttgatggcgggattttgatttgtggtactggcgtcggtatttcgatagcggcgaacaagtttgccggaattcgcgcggtcgtctgtagcgaaccttattccgcgcaactttcgcggcagcataacgacaccaacgtgctggcttttggttcacgagtggttggcctcgaactggcaaaaatgattgtggatgcgtggctgggcgcacagtacgaaggcggtcgtcatcaacaacgcgtggaggcgattacggcaatagagcagcggagaaattgagattcatccactacttgcatggatgagtaatgattaatgtggatagagtttctttttgaggttggctaatgaaacgctttccgctatttcttttattcaccctgctcacgctgtccacgttccggcccaggccgatattatcgacgacaccattggcaatattcagcaggcgattaatgacgcttataaccctgaccgtgggcgagactatgaagattcgcgcgacgacggctggcagcgtgaagtgagcgacgatcggcgcagacaatatgacgaccgccgccgccagtttgaagatcgccgcaggcagctggacgatcgccagcgccagcttgatcaggagcgtcggcaactggaggatgaagagcggagaatggaagatgagtatgggcgatgaggttgggtatggagcaggcatcgcccctcaccccaatggggagagggagaaaacgagcgcaatattcaatatcgagcacaatcggtcccctcgcccctctggggagagggttagggtgagggggccagcgcgcacattccctctcatcacgccaccccaatctccatcccatcaaaccccacctcaaaccctgacggtagtgcgttttccatcagccacgcatcaaactggtggctgatatgggtcagaatcacccgtggcgagcggataacctgattcagcgcaagcacggtatttaaatcacagtgattacgcggtgcatccgcgcgcggcgggtgactgcaatccatcaccattacctgcggctgattattgcgtaaaaatttcagcgttttttccggcaagcctgcggtgtcagacagccacgccacccggctgtgtgccgtttccagcagataaccgaaggtcagttttgagtggttgagcggcaggggcgtgacctgtaacccctgcaaatcaaacaccacaaacggttccaccgtgtggctgaaatcaagcaggcccggatgtttaaacagatcgtcgcagccctgttcatccggcgggccgtaaaccgggatcggatcgccaacgccccagcgcagcggaaacagcccctggacgtgatccatatgataatgcgtcagcaaaaactgctggaacgatccgggcgaccagcgatcggcgagatcgtgcagcccggcgtcgatcagggtgattgcgtcgttaaacttcactacgccgctgcacggttggcggcgatactgcggcgagcgccgcgctctggcgcaggccgcacactcgcagccccatgccggaacgccctgtgcgccgccggtgccggtgagcgtgagggtcaggctcatgttacagcgccttggtgaagcggaagtggctctgctcgtagccttcgcgcagatagaaacggtgcgcgtcgtggcgcttcacgttggtcgaaagttcggtcatttcggccccggcctggcgggcttcttcttctgcccacgccagtaacttactgccgacgttcagaccgcgcgcctgcggcattaccaccaactcctgaatttcgccgatccagttgacatgatgcagatgaaactgcaaatgcaggccgatcatgccgacaacttcgccatcaagcagcgccagatggtagcgcatgtttgggtcgcgcagattggcgttaaaacccacgcgaaacgcgtggtggtcaaactccgcctgttttagctcacaaatcagcgcgtaaaccgcgtcggtgtcgtactgcgtggccgggcgaagctcacaagcaggcatggtgtttctccttctgatggatcagcgtcagcagcgtgtcgaccgactggcgcaggctgccgtcattgttgagcgtatggcaatcctgtggagtatagcgggcggcgcgcgccaggcgggcgttaatttcactggcgttttcacggccacggttttccaggcgctggcggaggatctccggcgaaacctgtaaacagacgggcagcagcgccgattgatagcgcgcccgcgcctgcggcagatgggcgcgtgagccgttgaccagcacgtcgaatccggcgtgcagccagagatcaatctcgacgccgacgccataatacagaccgttagcgtgccagcttaaggccaacagattttgccccgcgcgggtaaaaaactcctgctcgctcagggcgatatggttttcacttccggcgctggcatcgcgcgtgatgtagcgatgcgccaccagtaactgagtttgttcccgcaggcggagttccgccagcaggctgtctttcccggagccggacggccccattaaccaaatcagttttcccatcatcagaacacccttttaccctgacgccagacgtggtcgatatgaatatgattgtccttgcgatgcgccagcaccaggtcggcgcgtttgccctcgccaatcaccccgcgatcctggagattaagcgcctgcgctggatttttagtcaccagcttcaccgcctgcggcagcgtaaagcggttgctctggtcatcggcgacgcgaaatgccgcatcgagcaggctggcggggtagtagtcggaagagaggatatccagcaggccaagctgcgccagttcactggccgccacgttgccggagtgcgagccgccgcgcacaatattcggcgcgcccatcagcacgttcatgccatgcttgcgcgaggcttccgccgcttcgaacgtggtgggaaattcggcgatcacgctgccaagctggtgagattcagcaacgtgggcgtgggtggcgtcatcgtggctggcaagcgcaatttttcgcgcgcggcacagggcggcgatggattcgcgattcggctgcgaccagcgtgcggcgagcgccagttgctcttcttcgtactgctgcatctgcgcatcagtgagggagtatttgccctgataatattcgcgatacttctcgcggttggcgaactggcgctggcccggcgagtggtccatcagcgacaccagcgtcaccggctcgcgctgcaccagtttttcaaacagcggcagcgtggtgtgatgcggcagttcgcagcgcagatgcagacggtgctcggcgcggttgacgccgcgtttctgcgtctcttcgatggcgttgatcatcttctccagattctccagccgatcgccgccgtcgcgcacgtcgccaattgccacggcatccagtacggtggtgatgccgctcgccaccatcagcgcgtcgtggctgctcatcgccgagtgggcaggccagtcaactttcgggcgcggggtgaagaatttatccagattatcggtatgcagctcaatcagccccggcagcagccagccgccttcgccgtccatcgcctccggcaggcggctctggctttcggcaaaggcgcggatttcgccgttctgcacctccagcgaaccgcttaccacctcgttttccagcaccagcttaacgttattgataatcatgaagaggctcccattgggtgcaggcggtcggcgacgtcattacgtacagcttcgtcatggaagatgcctacgatggctgcgccacgggttttggcttcgcgaatcagttccaccaccgcggcgctgtttttggcgtccagcgaggcggtaggttcgtcaagcagcagaatggggtagtcgacgataaagccgcgggcgatgttgacgcgctgctgttcgccaccggaaaatgtcgatggtgccaggtgccacaggcgttccggcacgttcaggcgggtgagaagacgcgcggctttagcggcgcaggcttcacgcggaacgccggtatcgagcagcggctgcatcaccacttccagtgctgagatacgcgggatgacgcgcagaaactggctcacccagccgacggtggttttgcggatttccaccactttgcgcgctggcgcggtgaccaggtctacccactcgtcaccgtgtttgatctggatttgaccttcgtcgggcagatagttggcgtacagcgagcgtagcagagttgatttgccgctgccggaatggccgtggagcaccacgcattcgcccgcgttgacggtgagcgaggcgcgattgaggacgggcaggcgcacgccgttttgctggtgcaggatgaaggttttactgacgttttgtacgttaatcatttttcgcctcgtggttcgggtgtcggatgcgacgctgacgcgtcttatccgacctacggggagcgcatttgtaggccggataaggcgtttacgccgcatccggcaccggctcaattctgcaaaaccgatgacaccagcagctgtgtatacggatgatgcgggtcgtcgagcacgcggtcggttaacccactctccaccacttgcccctgcttcatcaccagcaaacggtccgccagcaggcgggcgacgcctaaatcatgggtgacaatcaccaccgcgaggttcagctccaccaccaggccgcgcagcaggtcgagcaggcgggcctgcaccgacacatccagcccgccggtcggttcatccataaacaccagcttcggatgcgtcaccaggttgcgggcaatctgcaaacgctgctgcataccgccggaaaaggtggtcggcaggtcgtcgatccggttggcgggaatctccacctcttccagccacttctgcgcggtggcacgaatatcgccgtaatgacgtgccccggtcgccatcagccgctcgccgatattgccgcctgccgacacctggcggcgcaggccgtcgagtggatgctgatgcaccacgccccattcggtacgcagcaggcgacggcggtcggcctcgctcattgcatacagcgaacggttctcgtagtgaatttccccctgctgcggcgtcaggcgcgcggagatcgacttcagctgcgtggtcttcccggagccggattccccgacaatgcccagcacttcccccggccataaatcaaaagagacatcgctaaagcctttgcccggcgcgtaaaggtgggtcaggttattgaccgaaagtaacggttgattcattggttttttgcctcgctctgttggcggcaataatcggtatcggagcagacaaacatgcggtttccggcgtcatccagcaccacttcatcaagatagctgtgggtcgatccgcagatggcgcatggctcatcccactgctgaacggtgaacgggtgatcgtcgaaatcgagactttccacgcgggtaaacggcggcaccgcatagatgcgcttctcgcgccccgcgccgaacagttgcagggcgggcatcatgtccatttttgggttatcgaatttcgggatcggcgacgggtccatcacgtagcgcccatttaccttcaccggataggcgtaggtggtggcgatatgaccgaagcgggcgatatcttcatacagtttcacctgcatcacgccgtactcttccagcgcgtgcatggtgcgggtttccgtttcgcgcggctcgataaagcgcagcggctcggggattggcacctggaagataattatctgatcttcggtcagcggcgtttcggggatgcggtgacgcgtctggataaccgtcgcatcgtccgtacgttccgtggtgtttaccccggtcacgcgcttgaagaagttgcgaatcgacacggcgttggtggtgtcatccgcgccctggtcaatcaccttcagcacgtcgctttcgccaatcacgctggcggtaagctgaatgccgccggttccccagccgtacggcatcggcatctcgcgcccgccaaacggcacctgataaccggggatcgccaccgcttttaagatggcgcggcggatcatgcgtttggtctgctcgtcgaggtaggcaaagttgtagccgctcagattagccatggttctgctcctgttgcagacgtttgagtagctccagttcggcctggaaatcgacgtagtgggggagtttgaggtgtgagacaaagcctgcggcttcgacgttgtcggcatgtgccagcacgaactcttcatcctgcgccgggcctgtcgcgtgctcgccgtactccggggcttgcagagcgcggtcgaccagcgccatcgccatcgctttgcgctcgctcatgccgaacaccagcccgtagccgcgcgtgaagtgcggcggctcacccggcgggtcgataaaaccgttaaccatttcacactcagtcatcagcagttcgccgacgttcaccgcaaatcccagctcttccggcacaatcgacacgtcgatatagccgctgcggatctcgcctgcgaacgggtgattgcgcccgtaaccgcgttgggtggagtaggccagcgccagcaaatagccttcgtcgccgcgcatcaactgctgcaaacgggaggagcgtgagcaggggtaaaccggcggcgtgcgggtgatgtcatccggctgtgcgccgctatcctcttcaaacttcgccagcccctgacgcgccagcaggctgaaaacgtgcggcgacggctgctgttcgctgtcggcggtggtcagcgtcggcgcttcgccgtttgccagcagggtaaaatcgagcaggcgatgggtgtagtcgtaggttgggccaagcagctggccgccgggaatgtctttataaacggcggagatacggcgttcgagacgcatcccggtggtgtcgagcggctcgcttaccgccagcttcgccaacgtggtgcggtaggcgcgcagcaggaaaatcgcttcaacgttatcgccgctggcctgtttcagcgccagcgccgccagttcgcggtcggcaatgccgccttcggtcatcacgcgatctaccgcgaggttaagctgctgttcaatctgggcgacgctcagttcgggcaaatcggtatcgcctcggcgtcggctctcttgcagggcgtgggcggcgtcgatcgccttctcgccccctttcacggcaacgtacatcagcacacctccacatgagtggttcgcggaatagccagcaggcgctcgccacaggtcaggatcaggtcgatgccgagcgggaacggatgcgggcgctcggtgagttcgtgcagaatgcactccggcagctgcggagcgatcattcgttcttcggcaatacccgcaccagtaaggcgcaacatgcgtccgccgctcaggctggcgacctgtaaaatcagcgtcgcacccgcttccggcgcaacggcggtgccggtggaaagggcgttgagctgttcgctggaaatcgcctcatccgtcaccgcgaaggtcgcctgttccggctggctgaccagcggcgcgttggtatgaaaacgcaggctctggttgacgatatcgttatttaatggggtagaaagccacaccggcgtgtcgttatcggccagcgtcagcagcacgctggtggtggcgatattcagcggttgccagccgcgtttgagctgatgcagggcgacaatcacgcccggctcgctcatggcctttaacaggcgacgaaaactgtgctgggcatcctgcacgggaagcataaaagcggtttccagggtcatgcgttgtctccgcgaaccatcgtaaagaagtcgacccggctggcgttcacttcggcctggcgtgcggcaatgcgtgccatacggtcagcgtccagcggggcaataagggtttctgataagttttgaaagtggcgagattgctgcatcagcgcgtcaatcagcgcgcagcgttcggcgtgctgtttatcacgcccctgcacccagctgtagccgagcgtgccgtcagtcaggcgcacggcggcgcgggtcagcgtggcgtcgccggcaaaaaaacgttcgccggtgccgcccatccgcgcctgaatctgtaccaggccagtttcagcggcgcggatcacctcatagtcggcggtgatgtttagcgcgttcaggcgtgctgccagttcagccggttggctgtgcgccagcacggacatccagtgctggcgggtcgcggtatctgcgtgcattcagtgctccatagtgaattcaatcatgtcggcgcgcgtcaggctgacggagtactccgccgggctgctttcaccgtcacggtggttaagggtgcgcacgcacagcagcggcgacatattcgggatttcaagacgctggcactctttggcctgggcgcggcgggcgctgatccgcgtctggctgcggcgcagcgcaattccggtttgctcgcgcagaaaatcgtgcagcgagccgctgtcgaagcgttgcagcgtcggccagagggtgaggtccgcgaagtagtggtcgattaaacagagcgcgacgccgttgacacgacgcagggtgcgcaggtggatgacgttctccccctcggtaatccccagtgcgtcagcgacgtggccggacgcggggcgcaataccgaaagcagtttttcgctggtgggatggctgccctgatccagcagattctggctaaaacgcgcctgggcgttgagcgggtaatcgaacgggcgcatcagcaccagcacgccgacgccctgacggcgctgtacccagcctttttccaccagttggtcgatggcgcggcgcagggtgtggcgattcacctcaaagcgcgctgccagttgctgctcggcgggaagatagtcgccgcagcggtagtgttgacgaagctcctgctcaagttttgcggctatctcttgatagcgtgttgggtagctggtcggatgtgtagacaagtgcatagatatcaatgcctcgcttatcagataaagtgcttacgcaaccgttgagagaggaaatccagcaggctgaccgtgacgatgataagcaccatcagggcgcaggtttgttggaactggaaaccgcgaatcgcttcccacagggtgacgccgatcccgcctgcgccgaccatgccgacgacggtcgccgagcggacgttggattcgaagcgatagagggagtaggagatcagcagtggcatcacctgtggcagcacgccgtagaggatctcttcgagcttgttggcaccggtggcgcgaatgccttccaccgggccgggctcaatcgcttccaccgcttcggaaagcagcttggagagcacgccggtggtgtggataaacagcgccagcacgccagcacgccagcgaacgggccgaggccgacggcgaccacgaacagcatggcgaagaccatttcgttaatggcgcggcaggcgtccatcaggcggcgaacgggctggtaaacccaccacggcaccaggttttcggcgctcatcaggccaaaggggatggagagaaccaccgccagcgcggtgccccagacggcgatttgcagcgtgacggccatttcggtgaggtaatcctgccactggctgaaatcgggcgggaagaagtcggcggcgaacgtcgccatgttgccgccgtctttgatcagcgtaagcggggccatttccgcgccctgccacgagacgaccaacacggcgagtacaacggcccagctcagaagcgagaaccagctgcgcttgggtggggcgatggtgatggtttgcatgtttggctccggtctgtaggccggataaggtgcttgcaccgcatccggcatcaacgcctgcacattgtcggatgcgacgccggggcgtcttatccgacctacgatttactgcaccgctttactcaccgaactcatcgcgcttagcgcgttgttcaggcggtccaggtcatccagctgcgcctgaatctcggtggtttttgccagcttgtcctgctcattcagtcctttattgcttttcacgccctgcatctctttaaacagcgcgagctggcgaatcggcaccagttgcaggtcgctggaagcgcggaatggcgcccagcccaggcgttccagcaccgctttttcttccggcgttttgccgtagttcataaagaagtcgtagatcttgtctttggtggtttcggaaagattcttgcgccagacgatcggatcgcctgggatcagcggcgacttccagatcaccttcagttctttcagcttctctggcgcggaggttttcagcttgtcgaggttttcggtgttgttggtggcaacatccacctgcttgttggcgacggccagcgcgttggtttcatgcccggcgttgacggtgcgcttgaagtcgctggcggagatattgtttttggcgaagacgtagtagccggggacgaggaagccagaggtggagttaggatcgccattgccaaaggtgagatctttccgcttcgccagcagatcgttcaggttgttgatcggactgtctttgttgacgatcaacacgctccagtaacccggcgatccatccgccgcgaccgtctgggcgaagacctggccattggcgcgatccaccgcttccatcgccgacagattgccgtaccaggcgatatccactttattgaagcgcatcccctggataatgcccgcgtagtccggggcaaagaaggcgttgaccttcacgcccagcttcttctccatatcctgcaagaacggcgtccattgcggtttcaggttttgctgtgattccgttgaaataatgccgaaattcaacgccttttcctgctcttcggcgtgcgccgggcttaacagggtgctgaggctgaacatgctggtgaaggccagcgaggcaattatcttagcgttcattcgttttcctcaatgatggggatgtcaggcagctttcgcgttctcttcgacgcggttaatgctgcggtagagatggtcaaaacgttcgttatcaaactgttggctgctgccgtcgtagaagacgtgcccctggcgcagggcgacgatgcgttcgcagtagcgcagggcgtaatccacctgatgcagcgtgacgaccacggtgatgccgtcgttctggttgatgtcgcgcagggtgtccatcacgatgcgcgctgattctgggtccagcgaggcgatgggttcatcggccagaatcactttcgcctgctgcatcagcgcacgggcaatcgccacacgttgctgctggccgccggagagggtggaaacgcgctgatgggcaaaatgcaccatgccaacgcgggtcagcgcctgtaacgcgcgctgtttctgctcgccggtgaaccagctaaaacaggtgcgccagaacggcgtgctgccgagcgcgccaatcagcacgttctccagtacgctcaggcggttcaccaggttgaattgttggaatatgtagccggtatgggcgcggcttttgcggatatcgcgggccaggcggccttcgcgctggactgtgcggcccagcagctcgatatggctaccgacagatttatcgccggtaatcaaaccgcttaagtgacgtaaaagggtggattttccggaacccgacggcccaagcagagccaccatttcaccgtgatgaatgttcagatcaaccgcatgcagcgcctgatgctgattgaaggttttggcgagcttctcgacacggataatcgtttgcatgatgcagcctccctaaaaaagtggctccatcgtggcggattattgtgacgatttggttaattaaaagtgactaacagatgaagagttaacgggaattcgatgacagtgcgggagggcgggcctcccggcgggttattgcgttggttgttgtttgacgacattaatcatccacggtacgccaaatttatcggtgactttgccaaagccatgcgcccagaaagtttcctgccaggccatttcgatttttccgttagcggcaagattgtcaaaccagcgttttccttcttcgacctgttgcgaatcgagcaccagcgtaaagccggagtagctggcttttcctgacggcatggcatcgctcatcatgatgtcgcttccggcaatgcgcacattggcgtgggcgatggcggtatcgggaaattgcattccggaagggcagttctcggcgctgtcctgcgctgattttggcatttcgccgaagctgattttatagagcagttccgcgcccaacgtacgttgataataggcaatcgcgtcggaacagttaccggcaaaagagaggtagggacttaacggcatgatggtgacctcagttaagagaagccagttaagtgtagttcgaaatttatacagatgagaggcggcctgataagacgcgcgagcgtcgcatcaggcagtcggcactgttgccggatgcggcgtaaacgccttatccggcctacggagggtgcgggaatttgtaggcctgataagacgcgcaagcgtcgcatcaggcagtcggcaccttgcggatcggcgtaaacgccttatccggcctacggaggtgcgggaatttgtaggcctgataagacgcgcaagcgtcgcatcaggcagtggcactgttgcggatgcgtaaacgccttatccggcctacggagggtgcgggaatttgtaggcctgataagacgcgcaagcgtcgcatcaggcagtcggcaccgttgccggatgcggcgtaaacgccttatccggcctacggagggtgcgggaatttgtaggcctgataagacgcgcaagcgtcgcatcaggcatctggcaccgttgccggatgcggcgcgagcgccttatccggcttaccgatcacaatacaatcagttctttttcacaaactcagatttcagtttcatcggaccaaaaccgtcgattttgcaatcgatgttatggtcgccttcaaccaggcggatgtttttcactttggtgccaattttcagcatcgaagagctacctttcaccttcagatctttaatgatggtaacgctgtcgccgtcagccagcagattgccgttagcatctttaacgatcagctcgtcgctttcctgtgcaggttctgcgtcgttccattcgtaggcacattccgggcagatgtacatgccgttatcttcgtaggtgtattcggagttgcattttgggcagtgtggtaatgacatgtggatttcctcaaaagtcagcagggcaaaagcgccaaaaaacggcagattgccgaaaaaggccgcaattatacacaaaatccctgagtttgtcgggggtactgctgattttagacgacgatcgttttcatttgaaaggaaacgcaaaaagaaaataatctttttgcctctatttattatttaagataatgttaatgctctacttgttctttttttaattcacatgatatttttatctttctgacgttttaaacgtatcagaagacgttatttattctgataaaaaacaacacactaaatataaaattatttcttgcagtaattataaaagccgaaaacagaactcaaaaacaatctggctaaataaaataacaaaatttgctttaaggaagaattttctatgtacacacagaccctgtatgagttaagtcaggaggctgaacgcctgttacagctttctcgccaacagttgcagttactggaaaaaatgcctctctctgtacccggagacgacgcgccacaactggctttaccctggagtcagcctaatatcgccgaacgtcacgcgatgctgaataatgagttgcgtaaaatttcccgactggaaatggtgcttgcaattgtcggtaccatgaaagcagggaaatcaaccaccattaatgccattgttggtacggaggttctgcctaatcgtaatcgcccaatgactgcgctgccgacgcttattcgccatacgcccgggcaaaaggaaccggtactgcatttttcacatgtcgcgccaatcgattgtttaattcaacaattacaacagcgcctgcgtgattgcgatattaagcatctgaccgatgtgctggaaatagataaagatatgcgtgcgcttatgcagcggatcgaaaatggcgtcgctttcgaaaaatattatctgggtgcccagcctatttttcattgtctgaaaagtttgaatgatttagtgcgactggcgaaggcgctggacgtcgattttcctttttctgcttacgccgccattgagcatattcccgtgattgaagtggagtttgtccatctagcggggctggagagttatcccggtcagttgacgttactggatacccccgggccaaatgaagccgggcaaccgcatctgcaaaaaatgcttaaccagcagctggcacgcgcctcggcggtactggcggtgctggattatacgcaactgaaatcgatctccgatgaagaggtccgtgaggcgattttggcggtggggcaatcggtgccgctgtacgtgctggtcaataagttcgatcaacaggatcgtaacagtgacgacgccgaccaggtgcgggcactgatttccgggacgctgatgaaaggctgtattacgccacagcagatatttccggtgtcgtcgatgtggggctacctggcgaatcgggcgcgctatgagttagccaacaacggtaagttaccaccgccagagcaacaacgctgggtggaagattttgcccatgccgcgcttggcaggcgctggcgtcatgccgatctggcggacctcgaacatattcgtcatgctgccgatcagttgtgggaagattcgctgttcgcccagccaattcaggcgttgcttcatgccgcttacgctaacgcctcgttgtatgctctgcgatctgccgcgcataaactgttgaattacgcgcagcaggcgcgggaatacctggattttcgtgcgcacgggttaaacgtcgcttgtgaacaattgcggcaaaatatccaccagatcgaagaaagtttgcagctattgcaactcaatcaggcgcaggtgagcggcgagattaaacatgaaatcgagctggccctgacctccgccaaccactttctgcgtcaacagcaagatgcgctgaaggtgcagttagccgccttgtttcaggatgattcggagccgttaagcgagattcgtacccgctgtgagacactgttacagacggcgcagaacaccatcagtcgcgactttacgctgcgttttgccgagcttgaatccaccctttgccgggtgttaaccgatgttattcgccccattgagcaacaagtcaaaatggaattgagcgagtcagggtttcgtcctgggtttcattttcctgtttttcacggcgtagttccccacttcaacactcgccagctgttcagtgaagtcatttcgcgccaggaagcaacggacgagcagagcacgcgtttaggcgttgtgcgtgagactttttcgcgctggttgaatcagcccgactggggacggggaaatgagaaatcaccgacagaaacggttgattacagtgtgttgcaacgagcattaagcgcagaagtcgatctctattgccaacaaatggctaaagttctggcagagcaggtcgatgaatctgttacggcaggcatgaatacttttttcgctgagttcgcttcatgtttgacggaattacagacgcgtttacgcgaaagtctggctctgcgtcaacaaaatgaatcggtggtcaggctgatgcagcagcaattgcagcagactgtgatgactcacggctggatttacaccgacgcccagctgttacgcgatgatattcaaacacttttcacggcagaacgatattgaccaagacgttacttgacggccccggtcgcgtgctggagtcggtttatccccgctttttagtggatctggcgcagggtgatgatgcccgccttccacaagcccatcagcagcagtttcgtgaacgactgatgcaggaacttctttcgcgtgtgcagcttcagacatggacgaacggcggcatgttaaatgcgccgcttagcctgcgtctgacattggtggaaaaactggcgtcgatgctggatcccggtcatctggcactgacgcagatcgcgcagcatctggcgctgctgcaaaaaatggatcaccgccagcactctgctttcccggagctcccccagcaaattgccgccttgtatgagtggttttcagcccgttgtcgctggaaggaaaaggcgttaacgcaacgaggcctactggtgcaggcaggtgatcagagcgagcaaatttttacccgctggcgtgctggggcgtataacgcctggtcgttgcctgggcgctgttttatcgttctggaggagttgcgctggggggcatttggcgatgcctgccgtctgggaagcccgcaagcggtggcgttgttgctgggtgatttgctcgagaaagcgacacaacatctggcagagagtatcaatgcggcaccgaccacgcgtcactattaccatcagtggtttgcctcttcgaccgttccgacgggcggggagcatgctgattttttaagttggctgggaaagtggaccacggcagataaacaacccgtttgctggtcagtgacccaacgctggcaaactgtcgcgctggggatgccacgactctgttcagcgcagcgtctggcgggggcaatgctcgaggaaatcttctctgtaaatttggcgtaaataatcagttacatcaatgagtcctaaacgaaatccatgtgtgaagttgatcacaaatttaaacactggtagggtaaaaaggtcattaactgcccaattcaggcgtcaactggtttgattgtacattccttaaccggagggtgtaagcaaacccgctacgcttgttacagagattgcatcctgcaattcccgctccccttttgcggccgtcgcgctgatttttctggcgtttgcggaaatgggccaactctgcgaggaaagctatgctgaaaaggaaaaaagtaaaaccgattacccttcgtgatgtcaccattattgatgacggtaaactgcgtaaagccattaccgcagcatcactgggtaatgcaatggaatggttcgattttggtgtttatggttttgttgcttacgcattaggtaaagtttttttcccgggggctgaccccagcgtgcagatggttgctgcacttgccactttctccgttccctttctgattcgaccgcttggcggactcttctttggtatgttgggcgataaatatggtcgccagaagatcctcgctatcactattgtgattatgtcgatcagtacgttctgtattggcttaataccgtcctacgacacgattggtatttgggcaccgattctgctgttgatctgtaagatggcacaaggtttctcggtcggcggtgaatataccggggcgtcgatatttgttgcggaatactcccctgaccgtaaacgtggctttatgggcagctggctggacttcggttctattgccgggtttgtgctgggtgcgggcgtggtggtgttaatttcgaccattgtcggcgaagcgaacttcctcgattggggctggcgtattccgttctttatcgctctgccgttagggattatcgggctttacctgcgccatgcgctggaagagactccggcgttccagcagcatgtcgataaactggaacagggcgaccgtgaaggtttgcaggatggcccgaaagtctcgtttaaagagattgccactaaatactggcgcagcctgttgacatgtattggtctggtaattgccaccaacgtgacttactacatgttgctgacctatatgccgagttatttgtcgcataacctgcattactccgaagaccacggggtgctgattattatcgccattatgatcggtatgctgtttgtccagccggtgatgggcttgctgagtgaccgttttggccgtcgtccgtttgtgctacttggtagtgttgccctgtttgtgttggcgatcccggcgtttattctgattaacagtaacgtcatcggcctgatttttgccgggttactgatgctggcggtgatccttaactgctttacgggcgttatggcttctaccttgccagcgatgttcccgacgcatatccgttacagcgcgctggcggcggcatttaatatttcggtgctggttgccggtctgacgccaacgctggcggcctggctggtcgaaagctcgcagaatctgatgatgcctgcctattacctgatggtagtggcggtggttggtttaatcaccggcgtaaccatgaaagagacggcaaatcgtccgttgaaaggtgcgacaccggcggcgtcagatatacaggaagcgaaggaaattctcgtcgagcattacgataatatcgagcagaaaatcgatgatattgaccacgagattgccgatttgcaggcgaaacgtacccgcctggtgcagcaacatccgcgaattgatgaataagctgaaacggatggcctgatgtgacgctgtcttatcaggccaattgaactcttaaggttcacttaatctctgacgcgcatactctcctccaggttaacggaggagagtgcaatgaaaaaccgtgtttatgaaagtttaactaccgtgttcagcgtgctggtggtcagcagctttctttatatctggtttgccacgtactgatctttcttcagccgtacccaggcccgcgtgccggaagtctcttgccggttttgcaggaaaaactgcccgtgatgcaactgtgtaatgcggctgacaatacttaaccccagaccaatcccgccataacggctgtccatacgtacaaacgctttactcaactccccgcatttactctcatcaatacctggtccttcatcttcaactgccatgaccgctccgtcatcttcttgcagcttaatcataatgttgctgccttgcgggctgtaacgatgggcgttttctaccaggtttcgcaataacatccgcagcagggttgcatcaccctgaacggtgatgtcggcggcgctctctggcaatagcagggtttgctgtcgctggtcgagcatggtactgagttcgtcatacgaggggagaatgacatcttccagcagttttacatgttgataattaccggaagaaaatgactgtccggcacgcgccagttgcagcagctgggagacgctctccatcatctgatcaagccgtgccactaacggtgctacatcaatgtgatgcgttttcgccagcagttccagatgcaaacgcacccccgccagtggcgttcgcagttcgtgcgcgacgtcagcggtaaacaacctttcgttatccagcgtgctggtcaggcgactgaccagatcgtttaacgccgaaaccaccgcttcgatttcgagggtggcgctgtgaatggcaatgggcgttaagttgtcggcggtgcgcgcttccagctctttttgcagctccgccagcgggcgggtgatgcggcgtaccgcctgatagcagataaatagcgtcaggctgaccataaagacgccggggacaatcaggctggcgaccgcctcgcggatctcacgcatgatgtggcgatcgttgttgcgattgtcgcgtagcgcctgctcaaacagctgaatctgctcggtactttcatgccatagccagaagacgctgatcagctcaaacaccaacaaaatggccccgatggtcaatatcagccgttggcgcagcgatattggtcggcgcagaaaatgcatcagattcaattagttttcctcattcgcgaccagcatatagccaaagccgcgcacggtgcggatacgggctttgcccactttgtcgcgcagattgtggatatgcacttccagggtgttggtcgagggttcattgtcccagttatagatgtcgttgtagagaatttcccgatgcaccggactgcctgctttgagcattaaccgtgacagcagagcatattctttgggcgtcagaatcaactcttcaccgcccatccatacctgacggcgacccatgttcagcgtcagattgccaacaatcagctcactttcgccctgattattatggcgtcgtagcagggcgcggatacgggcatgtaactcttccagcgcaaaaggcttcaccagatagtcgtcggcaccgacatccagcccggcgattttgtcggtcagcgtatcgcgagcggtgaggatcagtaccggcagggtatattttttctgccggatacgggcgagaaaatgcagtccatcttcgtcgggtaaccctaaatccagtaccaccaggctgtaatgacctgcctcaaggctttgttccgccatccgcgcggttgtcacgctatcgcacgcgtagccttcggtttgcgccgccagaatcagtccctgcaataacagcgtatcgtcttcaacaatcagaattttcattcactcactctcctgcaagtttgcagaatatcatccgcagcctggtaatacttcgtctcaacgccagttaatcccaatagcgtggagaataaattgtcttgtgaatagtgttgcgtttgcgcctgtttttgcaggcagttctggtcaacctgataccgtttttgataatcctccgacagccacagcagcatcggcacctgtttttggctatccggggcgatggcataaggcagaccgtgcagatagatgccattttcacctaacgattcaccgtggtcagaaagataaaccaggctggtggtaaatttatcctgatgttctttcagcagattaatcgctttatcaacaatatagtcgacgtaaaccagcgtgttgtcgtaagtgttcaccagttgctctttggtacaggtctggatctcattggtgtcgcaggttggggtaaatttcctgaactgaggcggatagcggttgtaataggtcggaccgtggctgccgatggtgtgtaagacaatcacgccatcaccttgcaggttattgatgtactcttcaagcccgtggaacagcacttcgtcatagcattcgccgttgatgcactgatcaggtagattcagcgcggtgacgttctggtgaggcacgcggtcgcaggcacctttacagccgccatcgttgtcattccacagcacgttgatgcccgctcgctgaatgatatccagcacgccttcctggtgctgtgccagctcttctttgtagtgctcacgcggcatatccgagaacatgcacggtactgaaactgccgttgccgtgccgcaagatgcggtattagggaaatagaccacgttatctttcgccagccgcgggttagtttcacgcgggtagccgttgagggagaagttctccgcccgcgaggtttcgccgacaatcaggatggtcaaatttttacgtttttcgttctgcattaacgggttgcggtgcgcgtcttcaccaattcgcaccagcggcagatttgccagtcgctgatgggagtaccatgaccagctggcaacaatgctgttagaggggcttaaggatttcaccagctctttgttattgcggaacaacgaggcgtagtctttataaaacagtgcggcgaccagcaaaatcagtagtacagaaaccagaatattggctccacggaaaagaacactgcgcagacgcgaggtggcaggtttgatttttatccagcaggcaatcagcgcagcaagcacgccgctgaatcccagcgttaataacatttgcggtgtcatcagcgcataactttctgccggagtggtatcaataatattggcaatcatcgagcggtcgatgacgatgccgtaagtcattatgaaatattgtgcagccgcgccaaccagaataaacaggcaggccagtggtcgattaagccataagaaagagcttagtgtcaggacaatattaatcacgctgaaagcgacgaccggcatcgacaagaaaaccagtacgttatgcagcgaatccagcggcagcgcctgcaacacctgtttaaaaaaggcaatattcaggcagatagagatataaaaagcggccaacaatagccaggcgagtaaattcaaagagggtctttttagtaggcgcttcaacatcacggtgtttccatcgaacaaagtgcgcatatgctcgcaaagcaaaattaagccaaccttaagttcttaaggttggcttttatgtttgctggattaaggggaattaatctttgcttattggtgcatctaagggatacgggtttttatgtagccggttgtaattcagcgcatacatggcggtgatgaccatcagggtgacaaatgaccacataacctctttcgctccggaccccaccacggcccagatgcagtagaggaaggcaatggtagtaactgccagatatgccgggcgtgctttaccaaagtgaccgtgtccgagcagcagtaacgccgcacaggtgtaaagatatggcaccagtgtaaagatgaccgagacggaagaaaccagaccgaactctttggtcgcgtttggtgaaatgctgctgagctggaagatggtcatcaaaataccgacgataatcagccccgccactggctacccgctttatttacacgggcaaaaatcggtgggaacagtccgtcatcggcagcggctttcgccgtttgacccgccagcaacgtccagccgcccagtgaacctaagcaacccgcagctgcgcagaaggaaacaatggccccggcggtgtcacccaacgccatccgtgcggcatcaccgaatggcgaagcagaaacgcgcagtgcggcattagggatcatccccataatcgcggtggtagaaagtacatagcaaacggcggcaatcaataccccaccaatggtggcgatagggacattgcgtttcgggtttttcaccacacctgcggcaacggaggcactttccacaccgatgaacgaccacagcgtaacgttaagggtactttgaattgcaccgaaggtgcccaggccgctgacgttccatgccgccatataggtttcaccacggaaccagaaccagccaaatacggcaatcccgacgatggggatcagcgccagcacggtggcaactgcctgcacacgggtgatcattttcggaccgacaatgttcagcaggacgaagatccacagcaccacgacgcaggtgatggttaataccaatggatctttcagaatcgggaagaagtaacttaaatatcctacgccaatgaccaccatggcgatattgccgatccagcaggccagccagtagaggacgttggtttgataaccgagaaacgggccaaagcagcggcgggcgtaagcgtaagaaccaccaggacttgggtcgaggaacgacattttggcgtataccatcgagagccccagtgcaccgataatcgtcaccaaccatccataaatggcaatcccgccagtagaggccaggtttgcaggtaacagaaaaacacctgaccccataatattccccgacaccatcagggtgacggggattaagcccactttgtgagcatcagcatccgaagacataattaaactcctgcgaaggcgagcttcgtgacaataaattacgtcatatcatacgcctgcattcgatagttgaattattatcgaccgggttatcgctgatgccgttattaatatagctcttcgttaaggttaaaaatcaggcgacagtgcgttctctgtgctgactaacataatgcagcggcgtcataccgtagaagtctttaaagacagaaataaagtacgacgtactgttgtagccgcaggactgtgatacctgagagatatttttaccgtccatcattaattcatttacggcataacgcatgcggcaggtggtgattatttggctataactggtgttttcgcttttcaactttttctttaacagacttgggctaagacataaacaactggctaccatactaagattccagtctttgtgaatatcgctttcaataatttgataaacgctgtcacttacacaattacgtaacatatacatcattaatgaaacgaattttttactgtcgagaaaacgggatagcaccgtgaataataatgcgcgtgttcgttccttttctgactcagtttctgcgggcatcatgctgtgttgcgcggcaacgcgaaagacgtctggcgtcaggcatggcagggtgagtatgggcgtagcgctacgttgccatactggtatttgcgagagatctttattcagaaaccggaggtaatctttgatgatgtcgtgactaatatgagcaaccaaagtgttgttaagagaggagacgtcgataatattattttcacaatttaataacgccatatggttagctttaaggctaataggttctttcccattcacccttatccagacatctttttcagtcaataaaacaatacaaggttggtcgctgcaaatcctcatacatgtactcctgagtgcgaataaaagaccagttctcgctaaagcaaagcgataccgggaaatggttatataattgtatgatgaatataaacatgcataaaaataacgagttttactaatagtacaaatttttatagtaatttctcatgtacatatttttttacaggataaataacaggcaaaaaaaagcgcggggtggggccgcgcaaaaagtatgacatttttgtttgcagcaatttttatgaaaacgttgccatactcaaaaggcctaaggccaggcggcgtaatgttatttaaacaattacgccttcagcggaatagtggttacgctttcacgcacataacgtggtaaataccgtcaataatttcagtcccttcagtttcgtgttcaaatccagggaaatggtggtcccaggattgcagcgagcgtaaataacttacttgcggactgtttttatcgccgaagttttcaccagacagcagcatcgggattcctggcggatacgggataactgagtttgccgcgatgcgtcctggcagattttcaatggataccagttcgacattgttgtcgacaatcgcgttgtacgcttcacgcggggtgacttccgccaccggcaggccggaataggcttcgttcaaccgtgcgccagggttgttttctttcagccaggcaaacatggtgtcacccagatcgtgaatccccatgttcgcgtaagtgtcaggatattgttcaacaagttccggcatcacctgcgccagcggtgtgttggcgtcatagtggcgtttgaaggagcaaagggtgttaaccagagttccccatttcccacgggttacgcccatagagaacaggaacataatttggaagtcagtggtgcgggtaggtacaatgccgtggcgaccaagccaggcagtgaccagcgccgccggaacaccggtttcttccagttcaccatcttcacccattcccggagcaaggatgctgactttaatcgggtcgagcatactccagttatccggaatatctttgaagccgtgccagctttcgcccggatgcattacccagcagtcctgaacggtggtcagcagtttggttggtgcgtcagcaaagtcataggttttgccggtttgtgggtcggtgacgacttctttgttccacggtttgaagaaccagctaccgtcagcggtgaactctttatatagccgcgccatcgcctgacggaaatcaaccgcttcgtcaatcacttcctgtgtcagtgacaggccgctgttgccgtccatcatcgacaccgccacgtcgttggatgcgcagatggcatacagcggggaggtggtggcatgcatcatgtaggcctggttgaagcgggagaagttaatcgccccacgaccttcacgtacatgaatataagaagcctgtgacagcgcattcagcagtttgtgggtggagtgggtggcgaaaacggtaggaccgttgtgatcgccaggttcgccgcgcatggcatagtgatcggcatagatcgggttgaaacgtgcatagccgtaccaggcttcgtcaaagtgcagacgatcggaggttttttccagcagatcctgcgcttctttagcgttataacacacgccgtcataggtgcagttggtcaccacgcagtaagacggtttttgcccggctttgtctttggtcagcgggctttcactgattttcttctgcaaggtttcaggttgcatttcctgcggatagattggcccgataatgccgtagcggttgcggcttggcaccatatagaccggtttcgcgcctgtcagcatcaaaccttgttcgatggatttatggcagttacggtcaacgaccacgacatcgttatcggtcatgcaagcctgcatgatggtgcggttagagccggaagtaccgacgactaccgaccaggagcgatcggcaccaaatacgcgtgcggcatatttttcgctttcgccaaatgcgccagtatggtcaagcaaagaaccgagggaagttcgttcgatgcccatgtcggtgcggaacagattttcaccatagtagtcatggtagaaacgtccggcgggtgttttggtaaaaccaacgccgccctggtggcctggcgctgcccaggaatattcatggatgtcactatatttcatcagcgcgctgaacagtggcggcaacagctgctggcggtagcgggtcatcgcggcaacggcgcgtccggcgataaagtcggcggtatcttccagaatccaggcgaattcatcgacaagctccagcaggtcgcgatccattgcggcgagggctttttcccgatcgcccaacaggaagaccggcacgttttgttggcgctcatgaagcttaccgatcaattgtctgacgttttgatgttcgtccggatgttccatttgatagctgaacatcaggcagtcaatggcttcgtttgaagagagaatggcaaaaccatcatcaaaggaggtggatttaatcacggtaacattttgctggcttaaagcatctgccagacgctcaacggcgttaccgacccaggtgtcttgatggagaaactcgctttcaacaattaatactttcatcattgcttacccggttatgaaggaatcttcgttgcgggcaagtatcttccggccttttcgggctgtaaagcgcgtgaaaaacaaacatttttgaaatatttagttttataaacaatacgttatgtgattattttaaattattttcactgcttattatcgacggctaaactatttttttggctgatactgatatcgtctttagccgggaaacgtctggcggcgctgttggctaagtttgcggtattgttgcggcgacatgccgacatatttgccgaacgtgctgtaaaaacgactacttgaacgaaagcctgccgtcagggcaatatcgagaatacttttatcggtatcgctcagtaacgcgcgaacgtggttgatgcgcatcgcggtaatgtactgtttcatcgtcaattgcatgacccgctggaatatccccattgcatagttggcgttaagtttgacgtgctcagccacatcgttgatggtcagcgcctgatcatagttttcggcaataaagcccagcatctggctaacataaaattgcgcatggcgcgagacgctgtttttgtgtgtgcgcgaggttttattgaccagaatcggttcccagccagagaggctaaatcgcttgagcatcaggccaatttcatcaatggcgagctggcgaatttgctcgttcggactgtttaattcctgctgccagcggcgcacttcaaacgggctaagttgctgtgtggccagtgatttgatcaccatgccgtgagtgacgtggttaatcaggtctttatccagcggccaggagagaaacagatgcatcggcagattaaaaatcgccatgctctgacaggttccggtatctgttagttggtgcggtgtacaggcccagaacagcgtgatatgaccctgattgatattcactttttcattgttgatcaggtattccacatcgccatcgaaaggcacattcacttcgacctgaccatgccagtggctggtgggcatgatatgcggtgcgcgaaactcaatctccatccgctggtattccgaatacagcgacagcgggctgcgggtctgtttttcgtcgctgctgcacataaacgtatctgtattcatggatggctctctttcctggaatatcagaattatggcaggagtgagggaggatgactgcgagtgggagcacggttttcaccctcttcccagaggggcgaggggactctccgagtatcatgaggccgaaaactctgcttttcaggtaatttattcccataaactcagatttactgctgcttcacgcaggatctgagtttatgggaatgctcaacctggaagccggaggttttctgcagattcgcctgccatgatgaagttattcaagcaagccaggagatctgcatgatgtctgcacccaaaattacatttatcggcgctggttcgacgattttcgttaaaaatattcttggtgatgtgttccatcgcgaggcgctgaaaacggcgcatattgccctgatggacattgaccccacccgcctggaagagtcgcatattgtggtgcgtaagctgatggattcagcaggggccagcggcaaaatcacctgccacacccaacagaaagaagccttagaggatgccgattttgtcgtggtggcatttcagattggcggttatgaaccttgcacggtgactgatttcgaggtctgtaagcggcatggtctggaacaaaccattgccgatacgttggggccgggcggtattatgcgcgcgctacgtaccattccgcatctgtggcaaatttgcgaggacatgacggaagtctgccccgatgccaccatgctcaactatgttaacccaatggcgatgaatacctgggcgatgtatgcccgctatccgcatatcaaacaggtcgggctgtgccattcggtgcagggaacggcggaagagttggcgcgtgacctcaatatcgacccagctacgctgcgttaccgttgcgcaggtatcaaccatatggcgttttacctggagctggagcgcaaaaccgccgacggcagttatgtgaatctctacccggaactgctggcggcttatgaagcagggcaggcaccgaagccgaatattcatggcaatactcgctgccagaatattgtgcgctacgaaatgttcaaaaagctgggctatttcgtcacggaatcgtcagaacattttgctgagtacacaccgtggtttattaagccaggtcgtgaggatttgattgagcgttataaagtaccgctggatgagtacccgaaacgctgcgtcgagcagctggcgaactggcataaagagctggaggagtataaaaaagcctcccggattgatattaaaccgtcacgggaatatgccagcacaatcatgaacgctatctggactggcgagccgagtgtgatttacggcaacgtccgtaacgatggtttgattgataacctgccacaaggatgttgcgtggaagtagcctgtctggttgatgctaatggcattcagccgaccaaagtcggtacgctaccttcgcatctggccgccctgatgcaaaccaacatcaacgtacagacgctgctgaccgaagctattcttacggaaaatcgcgaccgtgtttaccacgccgcgatgatggacccgcatactgccgccgtgctgggcattgacgaaatatatgctcttgttgacgacctgattgccgcccacggcgactggctgccaggctggttgcaccgttaaaacgcgactaaacgctactgcgccgggggatttattccggcgcacacctctgacgataccaataacagaaggcgggcgttggtaacagcgacccgataccctatgagcatttcaatgactacaaaactcagttatggatttggagcgttcgggaaggattttgcgatcggcattgtgtatatgtacctcatgtattactacaccgatgtcgtcgggctgtctgtgggtttggtcggtactttgtttctggtggcgaggatctgggatgctattaacgatccgattatgggatggattgtaaatgctacgcgatcgcgatggggtaagttcaaaccctggatcctgatcggtacgttggcaaactctgtaatcttatttctcctctttagtgcgcatctgtttgaaggtactactcagattgtctttgtttgcgtgacctacatcctctggggcatgacttacaccattatggatattcccttctggtcgctggttccaaccatcacgctcgataaacgtgagcgcgaacaactggttccttatccgcgtttttttgccagtctggcaggctttgttacggcaggtgtgacgctaccatttgttaattatgtcggcggtggcgatcggggatttggctttcagatgttcactctggtactgatcgccttttttattgtttcaaccatcatcactctgcgcaatgtgcatgaagtcttttcgtcagacaatcaaccgtctgctgaaggaagccatctgacacttaaagccatcgttgcgctaatttataaaaacgatcagctttcatgcctcttgggtatggctcttgcttataatgtagccagcaacattattaccggctttgctatctattatttctcatatgttatcggtgatgcggatttgttcccctattatctgtcgtatgcgggagctgctaacctggtgacgttagtattcttcccacgcttagttaaatcattatcccgacgcattttatgggccggagcatctattcttccggtgttaagctgtggtgttctcctgttaatggcattaatgagctatcacaacgtcgtcctcattgtgattgcgggtattttgctgaatgtgggaacggcgcttttctgggtattacaggtcatcatggtggcagatatcgttgattacggtgaatataaactgcacgtacgctgtgaaagtatcgcttactccgtgcagactatggtggtgaagggcggttcagcctttgcggcttttttcattgcggttgtgttagggatgattggctatgtaccgaatgttgaacagtctacgcaagccctattaggtatgcagtttattatgattgctctaccaactctgtttttcatggtaacgctgattctctacttccgtttctatcgcctcaatggtgacacgctgcgcaggatccagatccatctgctggataaatatcgcaaagtaccgcccgagcctgttcatgctgatattccggtcggtgcagtgagtgatgtgaaagcctgacgtggacaatagctaacgaaaatggcctgatgcgatatgtttatcaggccacgtcttaatgtaatgctttggatttgcaaattttgtagaccggataaggaattcacgccgcatccggcatcaacaaagcgcaagttgttatccggttatcaagccaaagcgccgtagctggcggcaatgaaagcgagcgaggaatatcaccgtcgttaatgcgccaagcagcgcgcagaacatatcggattgcgtgtcccactggtcgccctgggtgccgagaaaatcatccgctccctgacccattgccagcgctgcccaccactcgattaattcatacatcgcgcttatcgccagcgccacgcagcagaccaggaacgccaccattttacgtccgcgcacgtacatcccgcgaacgagaatttctcgtgccaccagtgcaggcaccagcccctggaaaaagtgccccagcttgtcatacggattacgactcaaccccagccattcctgcacctcaaaaccaacggggactttcgcgtaggtgtattgtccgccgaccatcaggatgatggcgtgaaggaaaatgagcgtatagagcagcggcgttaacggataacgtctggcggtggcaagcagtagctgcacgacaataatcaccggtgtcacttccatcagccaggtgagtttgtcatgggccgaaatgccggtataaatcaggattaacgttagcgtcagtgcgctggtgttaagaattaacggcttgagtgtgcgggtcatggtgagttcgcaaatcagggaaaatactgactattcaccagcaagcgtgaaattacaatcgcaaaagaggtggccagggggatcacctggcagcatgctgccaggcgctgggccgaagaggttacttagtgcagttcgcgcactgtttgttgacgatttgctggaagaagtcgttacctttgtcatcgaccaggataaacgccgggaaatcttctacttcgattttccagatagcttccatacccagctccggataagcgacgcactccagatgcttgatgctctgctgcgccagtaccgccgccggaccgccgatgctaccgaggtagaagccgccgtgtttatgacacgcgtcggtaacctgctgactgcggttacctttcgccagcatgatcatgctgccgccgtgggattgcagcagatccacgtaggagtccatacggcctgcggtggttgggccaagtgaacctgatggataaccggcaggggttttcgccggacccgcgtagtagatcgggtgatctttgatgtactgcggaagttctttaccggcgtcaatcagctctttcagcttggcgtgtgcaatatctcggcccacgataatggtgccggtgagcgacaaacgagtggataccgggtattgcgaaagctgggcgaggatctctttcatcgggcggttaaggtcaactttcaccgcttcgccttcaccggcctggcgcagttcttgtggaatgtactggcctgggttgtgttccagtttttcgatccagataccttcgcggttgattttcgctttaatgttacggtcagcggagcaggagacgcccatgccgaccgggcaggatgcgccgtgacgtggcagacggataacgcgaatgtcgtgcgcgaagtatttaccgccaaactgcgcgccaagaccgagtttctgggcctcttccagcagttcctgttccagctggacatcgcggaacgcctgaccatgttcgttcccttccgtcggcagttcatcgtaatagtgagcgcttgctaacttgacggttttcaggttggtttccgcagacgtaccgccaatcacaaacgcgatatggtacggcgggcaggctgcagtaccgagggtacgcattttctcgacgaggaagtttttcagtttgccgggagtcagcagggctttggtttcctggtagagatacgttttgttggcagagccgccgcctttcgcaacgcaaaggaatttgtactcatcgccatctaccgcgtacaggtcgatttgcgcaggcaggttagtgccggtgttgacctctttgtacatgtccagcgccgcattctgtgaatagcgcaggttatcttcgatataggtgttatagacgcctttcgacagcgtttcttcatcaccgccgccggtccacacgcgctggccttttttaccgacgatgatcgcggtgccggtatcctggcaggtcggcagcacgcctttggcggcgatttcggagtttcttaagaattgcagcgccacgtacttgtcgttttcgctggcttctggatcgtgaagaatagccgcaacctgtttctggtgtgccgggcggagcataaaagaagcgtcgtgaaaggcttgctgcgccagcagggtcagggcttctggttccactttcaggatggtttcgccgtcgaagtcggcaacgctaacgtaatcggaagtgagtagatagtattcggtattgtctttccccatcgggaaaggtgcctggtagataaagggtttgtttgacatagcttccagcctgtaactctgtatttgttattcgaaaatggcgtgccgcgtagtcacgggcggcacgcaaagtgcatttataagaacccgtacatcgcggcgaagatccagccgaagacgcacgatacgctcacaccaatcaaccccggcagaataaagctgtggttgatgacgaagcgaccgatgtgggtggtgccggaacggtcaaactgaatcgctgccagatcgctcggataagtcggcaggatgtaataaccgtagcaagccggtgctgaagccacgatgtatgccggatcaacgccgatcgccagcgcgaccggaacaatcgccgccagcgccgcagcctgagagtttacaaacttggaaaccagcagcagaacaatggcataggcccacggatactctttcaccatttcacccagtacgccctgaatttcagacatatgcgcaccgaacatggtttctgccatccatgcgataccgtacaccgccacgatggcgatcataccggaacggaagacttcgttttttgagatagacgcgggattggttttggtcaggataataatcagcgccccggtcagcagcataaacatctgaataaccagtaccatcgacagcggtttgccgccgaaggatggacgcaggtccgaatcagcaccaagaagggcgactacagcgattgccccgaggaaaatccacattgccagccagttgcttttcggcagttttttatccagcagcgtcgcggtatcaccgtaaacatactcacggttttccggtacggagatgaatttctggaactcttcgtctttatccagatctttaccgcggaaccagctgaagataccgatcgccaggataccgattaacgtcgatggaatggtgattgccagcagatcgaggaactcaagatggcgaccatcaaaggtgacattacccagcatcgcaaccagagacacgaccgcaaccgacaccggactggcgataatccccatctgtgcaccgatagaacttgccgccatcggacgttccggacggatgttgttcttaatggcgacgtcgtagatgatcggcagaatggtgtaaaccacatgacccgtaccgcaaagaatggtcagtgtacaggtcacaaacggcgcgacaattgagacatatttcgggttgcggcgcagcagcttctcggcaatttgcagcatgacatcaagaccgcccgaagcttgcaaggtcgccgatgccgccaccaccgcaatgataaccagcatgacatcaactggtggtttacctggctgaaggtggaagacgaagaccagaatgaccagaccgataccgcctaataaacccagcgcgataccaccctttctggcaccataaaacagacatatcagtattatgataagttggatagtaaataacatgtgtgaaccctcgcgataatcctatttaaatttttgctgaatagatcacagtcacgttctgttttgtatgaactgttttcagagcctgactaaatatccgtttggtcgttaccggctttagcaaatacctcacagtgaatattggctgattaaagcagcggcaaatttatgcactgtgataagcggctttttcagagagaaagactctctggcgatgggtttatagtttgtactgcgcagatgttaatgttttgtttgctgttatcttattgatatttatcggtctattttttgttctcagggcagatgtcattaggtttatagattaatctgatctacccatttgtgggtaaaaatacacataatgcgggtgacataatagttaattaacttttgttagcgttttgaaattaaaaacaccgttcacctgaagagatattaatttttagcgatgatggagggataattatatttgatctggcacaagttttactgatgaaggatgtaacttgtgccaggggtattttgcattacggtaataattattacttacagataaccagcgatccgttattggcaatattgtttcagtagtgagtagtgttctgcctgaatacggtaacggtaaactggacgccccgtgacgccataatggatactggtgaacaagatgtggcagttgaccagccagatgaggtatttacggcaggaaacacgcgaaatgttaacctcgttggctagctcgtcggttgaaaattcatagtcctgatgcgcgtcaatccactggcacagtgtgcgtaacgtctgcggcgttaagccttttggcaagcgacgaggatcctgttcgttggagctgctgccgtggattagctgatcaagctcggcctggtcataatactgatgtttttccagcgccattttcttttgccgccagccggtgagcgcctcttcaaagcgggaagcctggaagggtttgatcaggtaatccacgacaccgtaatgcagcgaatctttaatggttgccgcatcggctgcggaggagatgacaatcacatcacttttgcaacgcgcgttatgcaggacaggcagtaaatcgagcccgttctctttttgcatatagatatcgagcaatatcaggtcgataggcgtatcgctattgaagataatctctttggctttctccagcgtcgaggctgttccacagcattgaaagcctgggatttgtgctacgtatcggcgattcagctccgcgaccattgcgtcgtcatcgataattaatacattgatcatctgttcgacctctccccgtcccagggtatctggacaaaaaattgtgtgaaaatcccgggttccgattccacggcgatgctgccgccgagattttctacctgttgtttgacaagtgctaaaccgacgcctcgctcgcttccttttgtcgagacacctttgtcaaaaatgtgatcgattttatcgggtgcgatccccggtccatcatcattaacttcacagtgcagccagccgtgacggtagtgcaatgttacgctaatttcgcctccgggttccggccctaatgcctccagcgcgttttctatcagatttcccaacgtggtaatcagcgtcgcgacctggtcctcactgccgctgtctggcagctggctttcactgtttaaaatcagcgtatggcctaaatcggtcgcgcggttaatcttgctgattaaaaaaccagcgataaccggagatttgatcttacccagcagagagccaatctcttcctgatagttattggctgttttgagaatgtaatcttccaactgcttataactcttcagatgcaataatccgagaatcacatgcaatttattcataaattcgtgggatcgttcacgaagtgcgtcagcatagttgaccagaccgtcgagtcgctgcatcagtttacgtacttcagttttgtccctgaaggttgaaatggcaccgatgataacgccattactgcgcaccggaacggtgttgatcagtaatagccggtctttaatcgtaatctcttcgtcgcggcgcggggtaccgtcgcgtaacacttccgagacatctaccacctgtgaccatgagtggcttagcgtcgacagtttctcatcgtcctgcgacttacggtaattcagcaattcttgtgcggcatcgttgatcagcgtgacctcgccgcgatcgtccacggcaacgacgccttctttgatagactgcaacatggcctggcgttgctcaaacagcgtggagatttcgtagggttccaggccgaaaaggatttttttcagtaccttaaccagaatgcaggtgccaatcagtccgaccagcatgccaaataataccgaccagataatgctccagcgactgtcattgatctgttgggtcacacggcttaactcaaggccgatcgccaccacgccaatttgtttatgattttcatcgtagatgggggtaaatacgcgtaaagcctgcgccagaaaaccgcgattgatagcgacattttcttcgccattcagcgctttaaggatgtcatcacctttaaatggctgaccaatacgctgggcttcaggatgcgagtagcgaagactttgcatatcggtaacgacaataaacagcagatcgttgcgtttgcgtacggcttccgcgatggcctggatgccactctcctgcggttttttctgcaagccctgacggatttccggcgagtcggcgagggtacgcgccactgccagtgccttgttggctagcccatctcgcgtcatatcactgatttgcgagaagtaaatcagatgcaccaccaatagcaccgagaacagtaccgcactgaccattaagatcactgtggtactcaatttcatcggacgtttgcgtaacatgcggtagggcaatgaatgtctcatcagcttccttgtgtgacaaatttcttaagcattatctctgatgaggcgggtaattcaaagggagtaagaatgattggctatataggggaagagactctggcaacggaaactgccagtgctgtatgaagattccggggctatgcttatagcgataatcatactgatgagagagggaaggtcatggatcaggcgctactggacgggggttatcgctgttataccggcgaaaagatcgatgtctatttcaacactgcgatatgtcagcattctggcaattgcgtacgtggcaacggcaagttatttaatctcaaacgaaagccgtggatcatgccggatgaagtcgacgtcgccactgtggttaaagtgattgatacgtgcccgagcggcgcgctgaaataccgtcataaataagcgagggtaaaatggaaatacgcgaaggccacaataaattttacattaatgacaaacaaggcaagcaaatcgctgaaattgtctttgtgccgaccggagagaatttagcgattatcgaacataccgatgtcgatgaaagcctgaaagggcaagggattggtaaacagctggttgcgaaagtcgtggaaaaaatgcgtcgggaaaaacgaaaaattatcccattatgcccatttgcgaaacatgaatttgataaaacgcgggagtatgatgatattcgcagttgatgggagagtacagagtcacgatatttttcattctctccgcgatgtgatgcaggagagcatctgaagggtagggggatgcacaaagaatgggcagagagcgcgtttttttgtcccaagtcatcccctttactgagcaaaaaaaagaatatctcctatatgagaatcatcaatcggggttaataagttttgcgtccccagagcgtttaatattgataggagtcatattatggaaggtaaaaacaagttcaatacttatgttgtttcttttgattatccatcatcttattcctcagtgttcttaagattaagatcattgatgtatgatatgaatttctcctctatcgtggctgatgaatatgggataccacgacaattgaatgaaaactccttcgcaataacgacatcgttagccgcaagtgaaatcgaagatttaatcaggctcaaatgcttagacttaccggatattgattttgacctcaacattatgacagttgatgactatttccgtcagttttacaagtagccaggaaggataagaagaacataaaaaatggcactattctctaaaatattaattttttatgtgattggtgtgaacatatcctttgtcattatctggtttatctcacatgagaaaacacatattcgtttacttagtgcattcctggtcggaataacctggccaatgagtctgcctgtggcattacttttttctctcttttaggagctgtagttgagtggacccgctggttatcgtgaaacgaagcgtctctcctcaaaactggatttgcggaacgatgaacgaagcagtcgcctgactgcttcgttcattaaagtgaaatttatttctgtgggcgcatcgccgggaagagaataacgtcgcgaatagtatggctgttagtaaacagcataatcattcggtcgataccaatacccagaccagcggttggcggcagaccatattccagcgcagtcacgtaatcttcgtcatagaacatggcttcgtcgtcacctgcagctttagcattaacctgttcctggaaacgttcagcctgatcttctgcgtcgtttaattcgctaaaaccattaccgatttcacgaccaccgatgaagaattcaaaacggtcggtgatttccgggttaacatcattacggcgtgccagcggggacacttctgccggatattccgtaataaaggttggctgaatcagatgtgcttctgccacttcatcaaagatctctgtgacaatacgtcccaacccccagcttttctctaccgtaataccgatagattcagctaatgctttagcagcatcaaaattatccaggtcggccatatcggtttctggacgatattttttgattgcttcgcgcatggtgagtttttcaaacggtttgccgaaatcaaacacatgctcgccataagtgactttagtggtacccagaacctcttgtgccagggtgcggaacagtgactctgtcagttcaatcaaatcgtggtaatccgcatacgccatgtagagttccatcattgtgaactcaggattatggcgaacagaaataccttcattacggaagttacggttgatttcgaatacccgttcaaaaccgcctacaaccagacgtttcagatacagctccggcgcgatacgcagatacatatctaaatccagagcattatgatgggtaataaacgggcgagcagatgccccacctggaattacctgcatcatcggggtttctacttccataaagccgcgcgcgaccatgaattgacggatagcggccagaatttttgaacggacaacaaacgtttgacgggatttatcgttagcgatgaggtccagataacgttgacgataacggacttcctgatcctgcagaccatggaatttatctggtaaaggacgtagtgctttagtcagcaggcgcagctcagtacagtgaatggaaagctcacccgtttgcgtcttaaacagcgtaccgcgggcaccgataatgtcacccagatcccattttttaaactgatcgttataaacaccttctggcaggctatctcttgcaacgtacagttgaatacggccaccgacatcctgcaacgttacaaaggaggctttccccatgatacgacgggtcatcattcggccagcaaccgagacttcaatgtttaaggattccagttcctggttatccttcgcatcaaactcttcgtgcaactggtcagaggtatggtcgcggcgaaaatcattgggaaacgccacaccttgctgacgtagtgccgccagtttttcgcggcgatttctcagttcatcgttaaaatcaatagcctcattggctccccgtgtttcttgttcagacattttggttcctctaaatccagctttcaatttagcgtagataaagagacagatcggtacactgtattatctgcctcgactattagtaactcagtttatcttatcgaaactaacgcttacctcaagttgatatcactaataaataaccatcaaaatggtttaaatgacttattaatctcgatttgttagtgttataaactgaaagttaatttattcataaccaattgtttttacgacagttaatcgttgctctcctgtatcatattcgtcggcgtgctaaacagaaaacgggtagcaaaggccaatacgacgatgatcgcgacacaagccaacgtccactctcccatctgagaaaagaatcgctggtaagctgcaattgccataccgctaatttgcgactctgtcgtctgctgtgccacgacgcctgccagccagttggcgaccgcgcctgttgccagcatataaatcccggttaatacgccagacattttcagacgcgtgatttgcgcaatcgccaccgggtcaataaagagttcggcaaagcccattagcgccagcccggatatcatcacgcccattgacgcttgaccgtcagccgctgcatgtcgggcatcaaatgccaacaacataaagccacaagccatcagcagtaagccaaaggcaaacttcagccagacgcgcaatgttgagttgccgcggctttctggcgacgccagccaggccagtacaaccccagcgagcatcaccgcaattgcattcaccgactggaatagtgctgtaggtacttcaatattgaatgcctgacgattcacaaagcgatcgataaacaagctgatggtactgccgccctgttgtgccagtacccagaacaatgtcccgacaaacatcaacaatacaatttgccaaagagcacggcgatgttcggggaatttgatcatcatgcgggcaatgatttgtgcggcaatgaggcaaacgatcgccagcaaatatccggaccagtcgttctccagcagcagagtaaaaaatactggggctaaacagagcatcaccactaaccagctccatactggtaaggcaaatttgacactagtgagcgcttttttatccatactacgtgtggactggaaatgacgatgaccgcttaagaaaatcaacaaaccgataaacatgccgccacccgcaagggcaaagccaacatgccatccataccactgagcagccaggccgcaggcgattggggctgcgatagaaccgatattgcccgcagcatacagcagcgaaaaaccgccatcacgtcgatgatcgttctcgtcgtagagctcgccaagcaaacagctgatgtttgatttgaataaaccgtagccacaaataatgattgccagcgccagatacaggctaaaggttgaatttgtatcaatacccagcaccacatggccaagggtcattaacagcgcgccggcaatcactgcagtgcggttgccgagcaggcggtcggcaagccagccgccgagaataggggtaacgtaaaccagagaagcatatgcgctgaacaggctgatggcatggttatcatcaaaaccaagctgatgggtgagatagagaatgagtaaggcacgcatgccgtaaaaactgaagtactcccagatttggatcgccacgatatagtatatcgcgcgcggctgtgagggtgttttcatgtgttctccttatgagcaaaaaagggaagtggcaagccacttcccttgtacgagctaattattttttgctttcttctttcaataccttaacggtatagcggccatcagcctgacggtatgcaccgtgaatatcggtttcaaagcccggatagtgagcgccgatttcacacagcatctgcaggaactccagaaccggacggctttcttcggtgatcatttcacccggcattaccagaggaactcccggcgggtacggaaggatcatattggcgttaatacgacctaccatttcgtcgaggtaaacttcttcggtcataccgtgcagctctttctggaatgcagcatacggagtcattaccatcgtcggcagcacttcaaatgcgcgatacatcagatccggcagattgtggtgaacaatcagtttgtggatattctgagccagttcctgaatacgcatgttttcatagaattcaggatcttcacgatacagagacggcagcatgtttttcacacgcaggttcaggtcgaacgcacgtttaaagtcagtcagagcacgcagcaggctcagtgctttggtcttatcgataccgatgctgaacaggaacagcaggttatacggaccggttttctcaacaacgatgccatgttcgtcgaggtatttcgccacgatgctggccggaataccaaagtcgctcatggtgccgtctttttccatccccggagtcagcagggtgactttgatcgggtcaagatacatgtgctcgttatcgatgtttttgaagccgtgccaggtgctgtcagaacgcagcggccagcattcagtcgtatcgatatgatccggctgccatacatcaaagaaccagccatcagattccgttctcagacgtttgatctctttacggaatttgatcgcacgttcaatagaaccgttgatcagacgcttacctgcattgcctttcatcatcgccgcagcggtttcagtggacgccacgataccgtagtgcggagaagtggtggtgtgcatcatgtaggcttcgttaaaggtttcttcgtttacgtcacctttaacgtggatcatggaagcctgagagaacgccgccagcagtttgtgagtggactgggtttcgtaaatcactttcccttctacacggccaccgctcataccgcatttaccttcgtaaatcggtgagaagttggtgtaaggcacccacgcggagtcaaagtggatggatttcacatccagtgttttcttgatgaagtcggtgttgtacagcagaccatcataggtagagttggtaattacagcatgtaccggccaggttgcgtttggtgtttctttcacgcgcttagcaatggtagcgtgctggaattcactctgtgggataccaccaagaataccgtaagcgttacgggtcgggcggaaatagattggcgtaacatcgctcatcatcatcaggtgggtcagcgatttgtggcagttacggtcaatcagaatggtgctgcctgctggagcagagtacataccaacaattttgttcgcagtggaagtaccgttggtcaccatgtagctgcggtctgcgttaaagacgcgagcgatatactgttctgcttctttgtgtggaccactgtgatccagcagagaacccagttcagatactgaaatggaaatatcagatttcatggtattcggaccaaagaaatcatagaacaggctacctaccgggcttttctggaatgcagtaccgcccatgtgaccaggagtacagaaagtatatttaccttcacgaacatatttaaacagtgctttagtcagcggaggcagaatagtgttgatatattcgtcagtggtctgcttgatcttattagcaatatcttcagcagcacccagcgcatattcaaagaagctaatctgtaaacgcaggtcattcaggcttacatcgagagtggaatacgtattagcgaacgcgtacaacggcaggttctcgttcattttgctaatttcttcgcacagctcgagattatatttatcccagtcaaaaataacgccgcacagacgcgcattgttttcgatcagttttaataagtcgtcacggtcgttcgggtaaacaatctggaagttcagacgttcaagcgcgcgatgaagttcacggatgggttcttctttaaaataaacccccatgtgattcaatattgcaataacgttcatagtcatatctccaggtaaaaaaggcccctcccaacacatgggacaaaatgaaaggaggagcctcggaaaatacttttaattaatgtgcgttagacgcggtgtggttatccattgagtggctctggcgctcgtgcattttgcgagcgtagaacatcaggataatcaggctgacgatgaaggtacctgccagctcgaaggagcttgcgcccatcagcgcgatgaagcagaacacgcaacccagtacagagcagatcaggctgacaaagttgcggatgttaacgccttcaaaacgaatcaggtcaacgcaagagtagaaatacggcagcatagtcagcagtactgcgataccggtcagttcaccgaacaggtcagatgctttaccaccggcagagttcatcagagtgataaggatcatcagggcagtcattttcactgcagccagcagcagaccttttttcggaataccgttgctgtcgacttcaccataaactttcgggaagttaccgtcgttagcggcacgtacacctgcctggcctaccaacatcatccaggagcccagagaagtcaggcacgcaaaggcggtgaatgcagaaaccagcggcgcagcccagttaccgaggatagttgaagcactgattgcaaacggagcaccggaagccgccattacagaagacggatacataccggaaagcacctgagtcgcagcgatgtaaacaatacctgctaaaccagtacccagcatggttgccagcggaacggtacgtttcgggtttttaaccataccagtacttacagctgcggattcaacacccacgaaggcccacaggcagagcagaatacttttaatgatcgcatgaccatcagtggtatccgcagtattccagttagctgcataagttgccgcatcaaaccaatgccagccaacaatagcagtcatcaccacaggaataagaaccagcaccagaccaatagtggttaaacggcttacccaagtaccgccgagcatatttacaaaggtaaatacccagacgatagcaatacaggcgatacccgccggaacaggatcatttaatactgggaagaaggtggaaagataagatacagcggtaataccaatcgccaggttaccaatccagttagcatggtaataaagaacacctgtctgaaaaccaaatgcaggggaaatttctccggcataagcaattgggccaccttgttgcgggttttttgttgccagtcgggcatatacatacgccagcgacattgcaccaataatagagataatccaaccccagatagcaataccaccgatacttgctaggttcgcaggtaataatgcaataccgctccccatcatattaccggcaacaacaccggtacaggcaaatagcccgatcttcttggcagaactcatgctcttctcctaatttcatttttgaatttggagtccgggtcatgatgtataactatttcctgaccagaccaaactggcgataagattactcacgaaaaaaggattaatcctaaagattaggtgaaataacacaaaagtttctgtaagtgagaacttgaggttttttattaacacatcaggatcgcaagttgatatcatgaaaagataaacatttaatgtttacaatggattgcgtgacattctctggttaaatttatgtaataaaaattatgcggcaaataaattgccgcaacatattataccaacaggaacatacaaaaactcaacaacaaatatttccgagcataaatcaacccggagttacttattctgaagcaagaaatttgtcgagataaggtacaacataaggaacagaagtctggaatataccattttcaatccagtaaagggtgtttgcccctgggcgtaaattaaaggcggtgagatatgcatcagctgcttcccggttcatccccttcatttcataaaccttgccaagcaacacataatttagccaggacatttcaagatcaatgccagtatttatcgcctggtaagactcatctgttttaccttttaccagagcactgaccgcttttatttgatatataatggacaggttgttcaattccggcagtgtaacaatgttatctatttctgtgttcagtgctgctaattgtttttcatctaaaggatgttgagaatggcgcacgatatcaactaatgctttttctgctctcgcgtaggtaaattctggggatgattgaacaatctcacctaataattcactggcacggttcaatgatttatcatcgccatgcagtaaataatcatgtgcctgataaaaattagttaataacgcaccacgatgcggcaaaattttctggagcgtctcctgcattcgttgtggccacggttggtttaacgcttttgataaactctccagtaaatcattttgaatcgccagctgattaccgttagtgatgacataacgtttatccagcatggttgaaccatctgcattgtctaccaattttatcgacataaagcattgttgagcacggtattggcgctgattaacaaacgcaatagataatgttttaccggaactgctcggttcatcaatgttgtagttgattttgtcatgcaccataaaggtggagaaggtgttaagtgatgtcgccaccaaatcacccacgcctatcgcgtaagagagctgatacggggaactccagctgttacaacttttatttaccatattaatgtcaatatcgcgtggattgagcaaaatacgcgatttgctcataggaagacgtgtatcaagacttgaaaacgctaccagtgctacacagatacctaacgacaacaggaaaaaaaaccatacccaaaaggtagtgaatcgtttgcttttaactggggattgttcaggtggcgttgcggtgttttgaatgttaagactgtgggagggagaatctgtggcaggaaccgcctctggtatagggggaggcgaagatagcattatttcctctccctcttcttcgctgtaccagataaccggcaccattaatttatagccgcgctttggtacagtagcgatatagacaggactatcttcatcattatcttttaatgacttacgtagttctgagatactctgcgtcacaacgtgattggtgacaatacttctcttccagacattatcgataagttcatccctgctaagtacttcgccactgtgttgagcaaagaaaaccagaagatcgattaatctcggctcaagggtaagttgacgcccattgcggctaatttggtttatggacggagtaacaagccattcgccaacgcgaactacaggttgttgcataatagaaactcattcgaaaagggaatgatgcaatgataattgccacaacctatttttaccatctatagatgggtttatttacatattattggtgaatgcaagacgttatttttaccagccataaacttcttgattacatagtattacgaaaggattttactgagaaccagaagtaatattccttaccatcaaaattcatcatctttgccaaagaaaaatgttcagaaaataatccatggaaaattgtccggagcacttactattttaatggattgttagtctttgcatgagcaagcgaactgatacatttctctttgttctcattcagaaaatctcatcagtcgccgttcagaccggtgttgtgctttatggatgcgttacgctcctgatgacgtcatttgacgttcaacagcatcacggggccgcacgacatttcacgtcagttagtgctatagctcaggaacaaattttcccgaattgggatatgcccgcaaattgctggtgatgtggggagaatctggttgagttcggtagaattgatttggaggcagaacgcttaaatcgtggcgtcctgaaacgaaaaacggacctccgtggaggtccgtttatatgaatttggtgcccggactcggaatcgaaccaaggacacggggattttcaatcccctgctctaccgactgagctatccgggcaacggggcgcattaaaccgtaatctgcacatctcgtcaacctaatttcagtaaaagcgattcaactgcttaagattgcggcaaatcgcttcttttctgtgtttctgtcaggtcaatgcaccaccctggcggcagcgggcgaagcgcaggatatcttccgccagccgatgtgcagtgtcgacatccgcctggctacgattcaccagcattcggcttaaacagccttccagcaccagttccatctgctttgctaccatcgccggatcgtcaacttccagtgtggttaacagttcgtgggtgaaatcgtaggccgcgcttttttgctgatcggccagttgatgaatagggtggccaggatcgggataaaacgtacaggcagcgataaatagacagcccggatagcggttgtttttaacgcactccgataacgcctgataacgtgccagcagcttttgttcggcggtttgcgtttcgtccagcatcagctgacgacgccagacatctatctgttggctaagataacgcagcgcatcgtagaggattgcctctttgtctggccagaagcggcgtagctcgtccagtggataatccacacgttcagcaaccatctccagcgtggtgttggcaatcccttgtaattctaataatttcagggcttctcccagtacatcttcacgttgcacgctattttcctccgtctttcccactgcaagtgtcgttcacggttggcgatcgcgcaaatgtgcgctgaaggtttcagcatccataaagcccgtgacgcgtgcttgtggatgctcctggccttgtccgtcaaaaaagagaattgtcggtaggccaaggacattaagatgctttaacagcgccacatcttgtgcgtcgttggccgtgacgttggcctgaagtaagaccgtgtctgctaacgctttttgcacctgcgggtcgctgaaggtgtatttctcaaactctttacaggcgacgcaccagtcggcataaagatctaacatcaccggtttgcctttggcttcaacgagcgcctgatttaactcatctaccgttttgatttgtgtaaagttgagatgcgtctgagtttgcgcggtatgcgtcgcaccaaatgcccaatcctgaagtgggcgcacgctaaccaatgccgctgccagcagaataatttgcacaatacgcatccagccgcgtttagcctgtaggctggtgataaaggcccagccaaagaatgcgacacccagcgccgaccacaagcgtaatccccatacatcaccaatcactcgctccagcaggaagaccggcagtgcgaggatcacaaaaccaaacgcggttttgacttgttccatccacgggccgcttttcggcagcaagcggttaccaaagacggtaattagcatcagcggcaggcccatgcccaacgcatagagataaagcgtgccgccgcccagccacatgttcccgctttgggcgatatacagcagaatcgcgctaagcggtgcggtggtgcatggtgaacagatcagtccggcaatcgcccccataacaaacacaccgccaggtgagccgccctgttggcgattgctcatcaacgtgagacgtgtttgcagcgaagaggggagttgcagggtaaacaagccaaacattgacatcgccagcaaggtaaagacgatggcgaggccaatgagcacgtatgggtgctgtagcgccgcctggaactgtaaccctgcggcggcaaccaccagacccagcgccgtgtaggtcagcgccatcccctgcacataaataaaggtcagcaacaatgctctggcagtggagagccgctgtttaccacccagcacgatgccagaaatcagtgggtacattggcagcacgcatggcgtaaaggcgataccaataccgatcaacaacgcccagagcgcggaaaagggcaattgcgcggtgggctgctcttgctgcggaacagacacaggctgtggcgctgcgttgttggcgaccacttcgcttaacggaacggttttggtttctggcggataacagaaaccggcatcagcacagccctggtaggtgacagttaacgtcgctcccgcactcgcctggttgatggtgacgggaagcgtcagccgatcgcggtaaatctcgcttttgccgtaaaactcatcttcatgccagacgccttgcggcagctgcacgtcggcaattttcgcgtgttccggcgtaatgcggatctgtttacggtagaggtagtaaccgtctttgatctgccaggtcagattaaggtcatgttggttttgctgaaaatcaaaagcaaaggcttgatccgcggggacaaattgtgaacgtcccggcgcgtcgaataatccggcaaaaacggaagtgctgcaaagtagcaggatcagcgtaaagatgcgttgagccatgagaggtaatctgtgtctccgtgtgtaacaggtaaaaccagaagttccggggtttgatatggatgatgagacttcaggcattccagcagtgcctgctggtgagatacggtagtttttaaaatcatctgcacttcgtattcttgctccagcttaccttcccagtaatagagagaggtagcgccggggatcaaggtcgcgcaggccgccagtttttccgccagcactttggcggctaaatcctgggctgtcgcttcatctggtgccgtacatagcaccacgacagacgcggtattcgaacttttttcatcaagcataaacacctcgcaagaacagatggaaccgcaagagagaggtcactatacaacggacgggggaaggatgttagtcggcgggaaagaaagcggggcgtgaacgccccgcgattgatcattacagcatgaagctacccagcacgaagccgaagcaaacggccagggcaacacccagagtacccgggatgaagaacggatggttgaagacgaatttaccgatacgggtagtacccgtgtcatccatctgtaccgcagcaaccagcgtcgggtaggtcggcagaatgaacagaccagacaccgcagcgaaagaagcaacagcggtcagcggtgaaacgttcagtgccagagccatcggcatcagtgcttttgcggttgcagcctgagagtacagcagagcagaagcaaagaagaagatgacggccagcagccacggatgaccctgaatcacttcaccagcggtatctttgatccagtcgatgttgttggaaacgaaagtatcgcccagccacgcaacacccaggatacaaatacaggcgctcatacctgctttgaaggtgctggagttgaggatgttgtcggtatcgactttacagataacggtggtcagagttgcaacgctgagcatgatgatcaggattgcgttggtggtgttcatcagcggtttttcaaccagacccatgcttgggctgttgatgattgcatagataaccacgccaactacgcccagcaggaacagccagacggacgtttttgcaccggatttgatttcaatctgcttttcaccgcgcagttcaaccaggccctcttccagacgcttgcgataaatcggatcgtcagagagtttggagttgaacagcatagtgaccaggaaggacatcaccagaaccgccagcagggtggacgggatgaccacggagagcagatggaggtagctgatgccatgaccttccatcacggaagacatgtaaaccactgccgctgagattggcgatgcggtgatcgcaatctgcgcggataccactgcagtagacagcggacggcaaggtttaacgccttgttccttcgcaacttcagcgataactggcagtgtcgccagagagatgttgccagtaccagcaaagatagtcaggaaataggtcacgatcggtgcgaggatcgtgatgtatttcgggttacggcgcagcagcttttctgtctgatgaaccagatagtccagaccgccagcaacctgcatggcagaaatagcggcgataaccgccatgataatggagatgacatcgaacgggatgttaccgggtttaacgccaatagcggcaagaaccagcacccccaatccgcctgcaaaaccaatacctattccccccaatctggcgcccaagaagatcgccagcaaaactatgatgagttctacaactagcatattagccttccttgttttttaacaagttgatattagattgttatttttaagttactgctcacaagaaaaaaggcacgtcatctgacgtgccttttttatttgtactaccctgtacgattactgttcgctttcatcagtatagcgttttgctttgtaagccgggtgcatcagattctgtacggagaaaatatcgtcaagttccgcttcagtcaacagaccgcgttccagaacgacttcacgtacactcttaccggtttcggcacagattttacccacgatgtcaccgttgtggtgaccgatgaacgggttcaggtaagtaacgataccgatagagttgtaaacgtaaccttcgcacacttctttgttagcagtgatgccgttaatgcatttttccagcaggttgtagcaagcgttggtcagaatgtgaacggattcgaacatggcctggccaatgaccggctccataacgttcaactgcagctgacctgcttctgctgccatggtaacagtggtgtcgttaccgatgactttgaagcatacctggttaaccacttccggaacaaccgggtttactttagctggcatgatggaagagcccgcctgcagttccggcaggttgatctcgttcaggccggcacgtgggcctgaagagagcaagcgcaggtcgttacagattttggacatcttcacagccaggcgtttcagcgcgccgtgaaccataacataagcgccgcagtcagaggtcgcttcgatcaggtcttcagccggtacgcatgggaagccagtaacttcagccagttttttcactgccagcggagagtactctttcggcgtgttcagaccagtaccgattgctgttgcaccaaggttaacttccagcagcagttcagcggtacgttggatgtttttcacttcttctttcagcaggatgctgaaagcgcggaattcctgaccgagggtcatcggtactgcgtcctgcagctgggtacgacccattttcaggatgtcctggaattcgacagctttacgttcaaagccttcacgcagttggttaatcgcatctaccagcttaatcagggaagagtaaactgcgatacggaaaccggtcgggtaggcgtcgttagtggactgacatttgttaacatggtcgttcgggttcaggtactgatattcacctttttggtgacccatcagttccagaccgatattggccagcacttcgttggtgttcatgtttacggaagtacctgcgccgccctggtagacgtctaccgggaactgatccatgcattttccgttgttcaggacttcatcacatgcggcaatgatggcattcgctacacttttaggaatggtttgcagctctttgtttgccatagctgcggcttttttaaccattaccataccgcgaacaaattcaggaatatcactgattttgttgttgctgatatagaagttttcaatcgctctcagagtgtgaacaccatagtaggcatcagctggaacttccctggtacccaacagatcttcttcgatacgaatgttgtttgacatgtgaaccttctttttcaagctgccaatgatttgctttaaacacacagaatatatgtggtttcgaatgtttttcgaccgacgattatcccctgcatcgaccgaatacccgagatcatatgctgcttgaggatttctaccgtaatctggatcactttaagtgtcggtttttaccccttaattattaatttgtgaaatagatcaccgctttgggattactaccaaaaatagttgcgcaaacatcttgaaattttgctaatgaccacaatataagctaaacgcgattcgcaacccattcaggtagccggggttaaccggctgctattacaggagaaacctttgcgctggttaccttttattgccattttcctttatgtctatattgagatttcaatctttattcaggttgcccatgtattgggggtattgctgaccctcgtgctggttatattcacgtcagttatcggtatgtcactggtacgtaaccagggctttaagaatttcgtgctgatgcagcaaaaaatggcggcgggtgaaaacccagcggcggagatgattaaaagtgtttcgctgatcattgctggtttgctgcttttattaccgggcttttttaccgacttcctcggtcttctacttttattgccgccggtgcaaaagcatctgacagtgaagttgatgccgcatttgcgcttttctcgcatgcctggcggcggttttagcgccgggaccggtggcggtaatacttttgatggtgagtaccagcgaaaggatgatgagcgcgaccgccttgatcataaagacgatcgccaggattaatgtcgaaacgccggattatgtggttatgccattttccggcgtttttcgttttggcagcaacagccataaccccgccagcatgatcagcgcatagagacttttccagccgaccattgccagtaacagaacgcataacagcccgccaaccaccgccagtagtcgataacgtccttgcaataatttacagcctgccagcatgcataacagataaatcataataaagatgccattggcataaataataagagcgtccagattgatctctaaagcatgaatcaccaaagtgctcaccacacagcagccgagcaccgcattgagggcattattcgggatatggcgagaagagaggcgtgccaggtagtggtcaggattatgttgcgcctgcgaccagaccaggcgggcgaagctctgtatataaatgttgagactggcaaagcaggccagatagccaatcacgcaggcaatccataacgctcctacaccgaacaactgcactacaatttttggaagcgatgctgccgccgccattttttcaccataggcgtcgaagtgtaagacgactaccgtacagccccagtagactaatcctgccagcagcagaccaatcatcaaagcacgaggaaaatcacgctctggatttttaaattccgaggcgagatgggcaaatgcctccagaccgacaaaacaccagaacatcactgataacgcagcaaataacccggtaagttcgatattaccaggtgccggaaaggggatattcgcaggtttgatatcgcccgcccaccagatagcgacaatcagcgcgacgataagtccggcaataacggtttgtagattagcactggaactggcaccgcgagtaccgatataccacaccagcgccagcgtaccgagttctgccaacaacagttgccagctatgccagccaaacatcgcctggccgaacccggcggcaatttgtagtgcggcaggcaaacccacgggaatgaccgataaaaacagccagccggtgactcgctcaagccgcgaaccaaacgccataccgacgaagtgcgcgacgccgcctgcgctgggatagtggcgacccagaatcgcaaacacaatcgcaatcgggaacactaagataatcaaaacgggccacgcccacaggctgttattgcccgctaccagcgcagctaacgcaggaacggcaaacacgccagtgcctaataatgacgtcgatagcaggccaatgccctgggccagccccagttcttgtttgagtccactcatgggttgatgtccgattgcgcccaaattttgggcaactgcgtagattttcgatggtagcacaatcagattcgcttatgacggcgatgaagaaattgcgatgaaatgtgaggtgaatcagggttttcacccgattttgtgctgatcagaattttttttctttttcccccttgaaggggcgaagcctcatccccatttctctggtcaccagccgggaaaccacgtaagctccggcgtcacccataacagatacggactttctcaaaggagagttatcaatgaatattcgtccattgcatgatcgcgtgatcgtcaagcgtaaagaagttgaaactaaatctgctggcggcatcgttctgaccggctctgcagcggctaaatccacccgcggcgaagtgctggctgtcggcaatggccgtatccttgaaaatggcgaagtgaagccgctggatgtgaaagttggcgacatcgttattttcaacgatggctacggtgtgaaatctgagaagatcgacaatgaagaagtgttgatcatgtccgaaagcgacattctggcaattgttgaagcgtaatccgcgcacgacactgaacatacgaatttaaggaataaagataatggcagctaaagacgtaaaattcggtaacgacgctcgtgtgaaaatgctgcgcggcgtaaacgtactggcagatgcagtgaaagttaccctcggtccaaaaggccgtaacgtagttctggataaatctttcggtgcaccgaccatcaccaaagatggtgtttccgttgctcgtgaaatcgaactggaagacaagttcgaaaatatgggtgcgcagatggtgaaagaagttgcctctaaagcaaacgacgctgcaggcgacggtaccaccactgcaaccgtactggctcaggctatcatcactgaaggtctgaaagctgttgctgcgggcatgaacccgatggacctgaaacgtggtatcgacaaagcggttaccgctgcagttgaagaactgaaagcgctgtccgtaccatgctctgactctaaagcgattgctcaggttggtaccatctccgctaactccgacgaaaccgtaggtaaactgatcgctgaagcgatggacaaagtcggtaaagaaggcgttatcaccgttgaagacggtaccggtctgcaggacgaactggacgtggttgaaggtatgcagttcgaccgtggctacctgtctccttacttcatcaacaagccggaaactggcgcagtagaactggaaagcccgttcatcctgctggctgacaagaaaatctccaacatccgcgaaatgctgccggttctggaagctgttgccaaagcaggcaaaccgctgctgatcatcgctgaagatgtagaaggcgaagcgctggcaactctggttgttaacaccatgcgtggcatcgtgaaagtcgctgcggttaaagcaccgggcttcggcgatcgtcgtaaagctatgctgcaggatatcgcaaccctgactggcggtaccgtgatctctgaagagatcggtatggagctggaaaaagcaaccctggaagacctgggtcaggctaaacgtgttgtgatcaacaaagacaccaccactatcatcgatggcgtgggtgaagaagctgcaatccagggccgtgttgctcagatccgtcagcagattgaagaagcaacttctgactacgaccgtgaaaaactgcaggaacgcgtagcgaaactggcaggcggcgttgcagttatcaaagtgggtgctgctaccgaagttgaaatgaaagagaaaaaagcacgcgttgaagatgccctgcacgcgacccgtgctgcggtagaagaaggcgtggttgctggtggtggtgttgcgctgatccgcgtagcgtctaaactggctgacctgcgtggtcagaacgaagaccagaacgtgggtatcaaagttgcactgcgtgcaatggaagctccgctgcgtcagatcgtattgaactgcggcgaagaaccgtctgttgttgctaacaccgttaaaggcggcgacggcaactacggttacaacgcagcaaccgaagaatacggcaacatgatcgacatgggtatcctggatccaaccaaagtaactcgttctgctctgcagtacgcagcttctgtggctggcctgatgatcaccaccgaatgcatggttaccgacctgccgaaaaacgatgcagctgacttaggcgctgctggcggtatgggcggcatgggtggcatgggcggcatgatgtaattgccctgcacctcgcagaaataaacaaacccccgggcagaaatgtctgggggtttttcttttggtcatctttctagtataagattcagacacggacgacgcgagtggcgtccagctcattgattatggggaataacatgcacgtaaaatacttagcagggattgtcggtgccgcgctactgatggcgggttgtagctccagcaacgaattgagtgctgccggtcagagtgtacgcattgtggacgagcagccaggcgcagagtgccagctgattggtactgcgacaggtaagcaaagcaactggctttccgggcaacacggagaagaaggcggttctatgcgcggcgcagcaaacgatctgcgcaaccaggcggctgcaatgggcggtaacgtgatttatggcatcagtagcccgtcgcagggaatgttgtccagttttgtcccgacggatagccagattatcggtcaggtttataagtgcccgaactgatgtgatccagaggctgggtgacaaacgtataattgcctgatgcgcttcgcttatcaggcctacataaggcattgcaactgattgaatgcttgagaatttgtaggccggataaggcgtttacgccgcatccggcatgaccaacgatcacgttatcagtcatttcaggctggatggctccagcctcgcattagcaaagatgagattatttcgcctgtggtgcagttttgctggtggattgaacacgtaagtgatgcagcgcgcgtaagcattgatcctgggttagcggttgggcgttattcgccgctacggtgcgaacatagacctgacatggcacacccgcgagttttttcagtcgtgggctgaaatcaagcattcggcgagtgatcgcttctatttctttacccggcgttgcttcacgcgttttcaccactgcgccgctaaattgttctttgccactttcatctttaaagcggtaaagcaccgccagataatggtcgaacaagttatgtttccattccggttgggaataggtgtcatattccagattgccattgtcctggcagtcaacgtcgtataacggcaggaaatctaacagtgaggtaatacgtaatgccagttcacgcatttccgcattattaattgcatgaatgattgctcgcgccagcatttcaatctgcaactcattgacgactaactcacatttgctaccgtcatgtagcgttaatacgaaggtaagattttcgccttgattatcggtaagttccagcgtgttaacccgacgattaatatcggcatttttaagctcatcaaccagaatttctgggatgttttctgccattttcttaatgactttatcgcgagcttgctcatactgaaggtgtgcagcagcatccagtttatgcttttgatgcagacgactttccagcgcaatcagcaggtcgcgcagttccatgacagacataaagaacaacgattctttattgcgaggttctttaattttcagcgccagtgcaatgaaattattactcttgcgaataacaccggtattaacacccttgatgcttatggccatgtaggttctccctaaccatttctcaattaaataattaattttaatttataagccagataaatgggcttggtagtaatagttgttaaaataacataaatagccgtactcactctatataaacagaaaagaaaggttaattattggtgttagctatataaaaagtaacaacagcaatgcatatgaataattaaaggttatgcaacgggcaaagattaaacttcccagtttaatgacaggttgctgtacttgcgtttgttgctcttgccggatgcagcgtaaacgccttatccggcctacagttcattgcaaatccattcaatttcaatgcacgatgtaggcctgataagcgtagcgaatcaggcaattttaatgtttaacttccctgtttaatcagttactgctggcgtagctggagatccagcggcgttttgctgggttcgccgccaatttctcgcgccagtttcggcaccagatatcccgacaccagtgtcagcaactcacgcataatctgccgtgcttcgtcatcactcaccataaaatgcgccgcgccctgtactttatcgagcacatgcaggtaatacggcattacgccggcatcgaacaacgcattactcaggtttgccagcgtttgtgcgttatcgttcacatcacgtaacagaacgctctggttcagcaaagtaacgcctacccggcgcaacttagccatcgcctgacggaatgtttcatctacctcattggcatggttgatgtgattcaccagcaagatttgcagcgtagaacgggcaaagcattcaaccagcgcctcggtgatacgtgccgggatcacaatcggcagacggctgtgaatccgcagacgttttatatgcgggatggcttccagttgtgtgagcaaccagtccagctcgtgatctttcgccatcagcggatcgccgccggagaaaatcatctcgtccagttccggatgcgcagcaacatactcaagtgcagtttgccagttacgcttgttgccctgattttcggcataggggaagtgacgacggaagcaatagcggcaatttaccgcgcagccgcctttgaccagcaaaagcgcccggttgtggtatttatgcaacaaaccaggcactacgctgtgctgttcttccagtgggtcggtggagaatccgggcgcgatgacaaactcatcttgcgaggtaagtacctgacgcaaaagaggatcgtccggattgcctttctccatgcgatcgataaatgagcggggcacacgcagggcaaaaagctttttggcgctgcgtccggctaacagtttttcctccgcgtctatattcaaaagacgcagaagttcatcaggatcggtcacaacatcggcaagttgcgttaaccaatcttctctggatggggtatttagggttacaatatgcgccattttgtggcttagctaccaattaacaaatttcagagggccttatggcaacgtactatagcaacgattttcgtgctggtcttaaaatcatgttagacggcgaaccttacgcggttgaagcgagtgaattcgtaaaaccgggtaaaggccaggcatttgctcgcgttaaactgcgtcgtctgctgaccggtactcgcgtagaaaaaaccttcaaatctactgattccgctgaaggcgctgatgttgtcgatatgaacctgacttacctgtacaacgacggtgagttctggcacttcatgaacaacgaaactttcgagcagctgtctgctgatgcaaaagcaattggtgacaacgctaaatggctgctggatcaggcagagtgtatcgtaactctgtggaatggtcagccgatctccgttactccgccgaacttcgttgaactggaaatcgttgataccgatccgggcctgaaaggtgataccgcaggtactggtggcaaaccggctaccctgtctactggcgctgtggttaaagttccgctgtttgtacaaatcggcgaagtcatcaaagtggatacccgctctggtgaatacgtctctcgcgtgaagtaatgcggttgtggtgcggcctgcaggctgcaccatcacttattcaggtcagagatgatgaaacgccttatcgttcttgttttgcttgccagcacgctgctcacgggctgtaacaccgctcgcggtttcggcgaagacatcaaacatctcggcaactccatctctcgcgctgccagctaatttttcttctcttccgaaaaatcatcagattcccatcatttttggcgatgttgtctattattaatttgctataggcaaacataaataacattacctaaaaggaagacgttatggtgaagaagacaattgcagcgatcttttctgttctggtgctttcaacagtattaactgcctgcaacaccacgcgtggcgttggtgaagacatttctgatggcggtaacgcgatttctggcgcagcaacgaaagcgcagcaataagcaataacggtacgacagctgtgtcgtgccgtttgttttttctgcgatagtcacaaaggtaatagttgaaattcccctgccacctggcaaaatatccgttcaaccatcagctttgcaggacgacctgcaaacgcctcttttcaccggggacggccccaattctccggagcctgatatgtcctggattatcttagttattgctggtctgctggaagtggtatgggccgttggcctgaaatatacccacggctttagtcgtttgacgccgagtgttattactgtgacggcgatgattgtcagtatggcgctacttgcctgggcgatgaaatcgttaccagtagggacggcttatgccgtgtggacgggtattggcgcagtcggcgcggccataaccggcattgtgctgctcggtgagtccgctaacccgatgcgcctggcgagtctggcgttaatcgtattggggattattggtctgaaactcagcactcactaactaccaggctgctgtacccaaataaatttactgacatcaaacccttcccgggtcgcgactgccagcatctcctgtttcacttcgtcagaaatggttggcgtgcgggagagtatccacaggtagtcgcggtccgggccgcaaaccagcgcatggcggtattcccgatcgagtgcaataacgttataaccgccatagaaaggaccaaagaatgacactttcagcgcagcgcgagttggtgcgccggtaaagtacgctttcccttcactctgctgccacattcctctgtcagggttatagcctttattaatgacattcaggccgccgtcatcacgcaggctgtatgttgcggtgactttttccagtccacgttcaaagcggtgatcaaaacgggcaatctcataccaggtaccgagataacgtttggcgtcgaaattatttactacggtcacgccacgcggcggcgtaggagaactgcaggcaacgaccagaaatgcagctgtcgctgcggcaacgagagggagcaggcgcataaatgtttccttactggtttttttctaagtgtagatgacagcaaggaaaagcggagaaaaggtccgaaaattcggacccgatggaattttactgtagagcgttaagaatctgccaggcggcgtcgactctcgctggattgggatagtttttgtttgccagcatcacgatacccagctctttttctggaataaacgcgacatagctaccaaatccgccggtcgcccctgttttatgtacccatgatgcgcgtactgcaggagttgggggcgtaatcgcttttacggggcgtgctgccagtgcaattttattgtcactgccgttaatgatgctgtcaggatttaccggccagtccagcatttcccagcccaggccctgatacatatcgccggtttgccagtagcgagattgtgccagttgtatcccttgttgaagcgttttctcattgatatcaaggggttttaaattgctttgcacccagcgggccatatcttcaatggtcgacttcacaccataagcttcagcatctaacgccccaggcgaaacatgcactgccttaccttcgcgatatccccaggcgtaattcttttcttctgcgggcggtacattaatccacgtatggttgagtttgagtggctggaagacacgagtttgcatcgcctgctcaaaactcaaaccagacggcttcacagccagtgcgccgaacaaaccgatactggagttggcatacagacgttgtgttcctggagcccatgcaggctgccagttttgatagaagcgcagcaagtcgcttgaggatttcacctcatccggcacctgcaatggcaggccgccagcagtgtaggttgcgagatgtaatagtgtgatcccattccactgtttagcggtaagttcaggccagtattttgttgtgggatcgcttaacttgatttcccctcgagcaatagcgtcgccaccaagcacgccagtaaatgttttgctgaccgaacctaactcaaacaacgtttgctgtgtgacgggctgctttttggcgatgtccgcatagccccaggtaaagtaataaggtttaccctgataaattaccgccaccgccatacccgggatcttttgttgctctataagcggggtaattgtgcgatgcacaatatcgttgatttgttgaggggcagcaaatgtggagcaagaggcggtaattaataaggcgcagagcgtcgttttgaacatagggtctggtttccatacaaaacggcccgccataggcgggccggatttacattggcgatgcgttagattgtaacgacaccaatcagcgtgacaactgtcaggatagcagccagaccgtagaaaacccatttgcccgcaggtacgtggattttcagatcgtgcatcgcgtggtgcatacggtgtaaaccacaccacagcggcagaacgatcatcaggaacaggaatacgcgaccaatgaagctctgcgcgaacgccagaacgcgctcgtagctcagcgcatcacccggaaacaaccccagtggcagcagaatacccaccagcaggatcatcaccggcgcaatgatggcgctccacataccaccggccccgaagaggccccagaataccggttcgtcagaacgctttggatttggattaatcatctcaggctccttaccagtacagggcaacaaacaggattacgatggtggcaaccacagttaccgcccagagacttttgataattggctctggtcccattttttcgtcttttacaatgatattggccgctttcggtgccagttcaaaccaggttttggtgtgcagcagagctgccgccagagtgatcaggttaatgatcacgataaccgggttttgtaaaaagtcgacgaatcccgcccaggcttccgggccatttttcagggcaaacagcccgaaaatcagttcaatgctgaaccacacagccggaaccgccgtgccttcgcgcagcatgtaaaagcgataaaacggcaattttttccaccaggtggacgtcattggccgtacatacggtttacgtttagtcgtcatgttgcactccttagcgtggtttcagggtcgcgataagaaagtctttcgaactttctactttgccctgctgaatggccgcagccggatcgacgtgtttcgggcagacttcggagcagtagcccacgaaagtacagctccatacgccgttctggctgttcaactgcgccatacgctccttcttaccgtggtcgcggctatcttcgttataacgatgcgccagcgtaatggcagccggaccgatgaactctgggttcaggccaaactgcgggcacgcggcgtagcacaaaccacagttgatgcaaccggagaactggtgatacttcgccatctgcgccggggtctggatgttagtaccctgatccgcggtgcgggagttgccgatgatgtacggtttgatcgcttccagactttcgatgaagtgggtcatatcgaccaccagatcgcgttcaatcgggaagttagctaacgcttcaaccttcataccgtcggtgtaatcacgcaggaaggttttacatgccagttttggcacgttgttaaccatcatgccgcaggaaccacaaatcgccatacggcaggaccagcggtagctcaggtccggtgccaggttgtctttgatgtagcccagcgcatccagtaatgaggtagttgcgtcataaggcacttcatagaatgcgctatgcggtgcggtatcgacttccgggttatagcgcaccacctcaattttcaggtttttcatctcagccattcgccttctccttcttattggctgcttccgccttatcggctgcatccgcttcgccaccgtaaacgcgtttagctggcggcagcgtagtaatcttcacgtcgctgtactccaggcgagtcgtgccatcagcatcgcggaaggcgagggtgtgtttgaggaagttgacgtcgtcacgctcggtgcaaccttcgtccagacgctggtgcgcgccgcgggactctttacgtgccattgcggagtgcgccatacattcagcaacgttcagaccgtggcccagttcaatggtgtagagcaggtcggtgttgaacacgctggaagtgtcggtgatgcgcacgcgcttgaagcgttcctgcagctctgccagcttgtcgatggttttctgcatcagttccggcgtacggtagataccgcagccttcttccatagccaggcccatttcgtcgcggatcttcgcccagttttcgccgccatcctggttaaccagatctttcagacgttgttcaacgccagctgcctgcgcttcaattgccgcttcgttgccattaccggcagttgctgcacgctctgtcgcttgttcaccggccagacggccgaagaccaccagttccgccagggagttagaacccagacggtttgcaccgtgcagaccaacagaggaacattcacccacggcgaacagacctttaatgcgggtttcacagttctgatcggtttcgataccgcccatggtgtagtgtgcggtcggacgtaccggaatcggttctttaaccggatcgacgccaacgtacgctttcgccagttcgcagatgaacggcagacgttcatgcagttttttctcgccgaggtgacgcaagtcgagataaaccacatcgccacgcggcgtggagatggtgttgcctttacgccattcgtgccagaaggcctgagagactttgtcgcgtggacccagttccatatatttgtttttcggctcgcccagcggagtttccgggcccatgccgtaatcttgcagataacggtagccatttttgttgaccagaataccgccttcaccgcggcaaccttcggtcatcaggataccggaacctggcagaccggttgggtgatactgaacgaattccatgtcacgcagcggaacgccgtggcttagcgccatacccataccgtcaccggtaacgatgccgccgttggtgttgtaacgataaacgcgacccgcaccgccagtagccataacgaccgcgttagcacggatctgcaccagcgtgccttccatcatgttcattgctaccaggccgcgaacatgaccatcatcaaccagaatatccagcacgaaatgttcgtcaaaacgctggatctgcgggaattgcagagaggtctggaacagcgtgtgcagcatatggaagccggtcttatcggcggcgaaccaggtgcgctcgattttcatgccgccgaagcgacgtacgttgacgctaccatccgggcgacggctccatgggcatccccacagttccagttgggtcatttcggttgggcagtggtggacgaaataatccacgacatcctgctcacacaaccagtcgccacccgctactgtatcgtgaaagtgatattcgaagctgtcatgatcctgcgcgacagcggcggagcccccttctgcagcaacggtatggctacgcatcgggtatacttttgagattagtgcgatttttgcattcggatttgcctgcgcggcagcaattgcagcacgtaatcccgcgccaccggcgcctacaatggcaagatcggcttgaaaggtttgcacgacattcctccagattgtttttatcccacagccacgtacttcagggtaagtacctgaaagttacggtctgcgaacgctattccactgctcctttataggtacaacagtatagtctgatggataagtctgaaatttgacgagatcgatttttttagtgcgcaagagggctaaattatcactgaagatgattaatttaattactaaaccatcagatcgtgctttttttagtcactgcccaccgctgtttgattcctgcgtaaaatttgtctcgccgtcgcgttgcgagtagacttcgtgcccttgtcaaaaactggagatttaactatgagcgaaacggcatcctggcagccgagcgcatccattcctaacttattaaaacgcgcggcgattatggcggagatccgtcgtttctttgccgatcgtggagtgctggaggtggagacgccttgtatgagccaggcgacggtaaccgatattcatttggtcccgtttgagacacgtttcgttggccccgggcattcgcaggggatgaatctctggttaatgaccagcccggaataccatatgaaacgcctgctggttgccggttgtgggccggtattccagctgtgccgcagcttccgtaatgaagagatggggcgttatcacaaccctgagttcactatgctggagtggtatcgaccgcactatgatatgtaccggttgatgaacgaggtggacgatctcttacaacaggtgctggactgcccggcagcagaaagcctttcttatcaacaagctttcttgcgttatctggaaattgacccgctctctgccgacaaaacgcaactgcgggaagtcgcagcgaaactggatttgagcaatgttgctgataccgaagaagaccgcgacacgctgctacaattgctgtttacctttggcgtagagccaaatattggcaaagaaaaaccgacctttgtgtaccactttccagccagccaggcatcactggcgcaaatcagtaccgaagatcatcgggtcgctgaacgctttgaggtttattataaaggtattgagctggcgaatggtttccatgaattgacggatgcccgtgagcagcaacaacgctttgaacaagataaccgtaagcgcgcggcgcgcggtttgccgcagcaccccattgaccagaatctgattgaagccttgaaagtcggtatgcctgactgttccggcgtggcattaggtgttgatcgtctggtgatgttggcgctgggcgcggagacactggctgaagtcatcgcctttagcgttgaccgggcataattctgaaaaattactgaattaacagcgaagaatggcgtgataagcgccattctgtagcatatgttttcatttttccgttaaaggccacaatttaagactggatatttgatatcatccaggtatcaattctgtattggtttttacgctgcctgctcaatgttgcgcagtgcagttcagtgggcacgtgttatacacgcgctgaaatgaaggatggtttcatgcctcacacgataaaaaagatgagtctgataggactcatattgatgatctttacttccgtatttggatttgccaatagcccatcggcttattacttaatgggttatagtgcgattcccttttatatattttctgcattgttattctttattccattcgccttaatgatggctgaaatgggagctgcttatcgcaaagaagaaggcggtatctattcctggatgaataatagtgtcggaccacgttttgccttcattggtacgtttatgtggttttcctcttatatcatctggatggtgagtacctccgcgaaagtttgggtaccgttctcaacattcctctatggtagcgacatgacccagcactggcgtattgccggactggagcctacgcaggtggttggtctgctggctgtggcatggatgattctggtcaccgtcgttgcttctaaggggattaataaaattgcccgcattactgcggtgggcggtattgcagtaatgtgtctgaatttagtattgctgttagtaagcattactattttgttattaaatggtgggcatttcgcgcaggatattaatttccttgcatcaccgaacccgggttatcagtccggtctggcaatgctatcgtttgtggtatttgccatttttgcctatggcggaattgaagcggttggtggtctggtcgataaaacggaaaatccagaaaagaactttgccaaaggtattgtttttgccgctattgttatttcaatcggttattcgctggcaatatttttatggggcgtcagcacaaactggcagcaggtattaagtaatggttccgttaacctcggcaatattacctatgtgctgatgaagagccttgggatgacgctgggtaatgcactgcatttgtcacctgaagcgtcattgtcgctgggcgtatggtttgcgcgtattactggactttcgatgttcctcgcctataccggtgcgttctttacgctttgctattcaccgttgaaagccatcatccaggggacgccgaaagcattgtggccggaaccgatgacgcgcctgaatgcgatggggatgccgtctatcgccatgtggatgcagtgcgggttggttactgtcttcatcctgctggtttcgtttggtggcggtaccgcatcggcgttctttaacaagctgacgctgatggcgaacgtgtctatgacgcttccttacctgttcctcgcgctggctttcccgttctttaaagcacgtcaggatctcgacagaccgtttgtgattttcaaaacgcatttgtcggcaatgattgcgacagtggttgtcgtactggtggtgacatttgcgaacgtcttcaccatcattcaacctgtggttgaagccggagactgggacagcacattgtggatgattggcggccctgtcttcttctcgctgttagcgatggcgatttaccagaactattgcagcagagtggcaaaaaatccgcagtgggcggtggaataacccgatgccctatcgtctacctgacgatagggcgtaaagacaggaaatgttatggatgacaccagccgggacccggcaataaccgaagatgaaatcagggcgctgcaattttctgccggggatgtagcggaaatagagcagacgattctctcttttgtcgatgcctgccacacccgtaaagtggcgatggtggtgggtagcaccattaacaccctcaaagatcgcgatggtaaacggtggggaaacctgccggatatttattgcgcttatcttatccgatgtctggtttttcgcggggaattagtgggatacggcgatttgtttcgtatgcgctatagcgaaattaagcgaccggttaccttatgagtgcgcgcatgtttgtcttatgctgcatctggtttattgtggcgttcctctggataaccatcacttccgcgctggacaaagagtggatgattgatggacgcgggattaacaacgtctgcgatgtgttgatgtatctcgaagaagacgatacccgtgatgttggtgtgataatgacgttaccgctctttttcccttttctctggttcgctttgtggcgaaaaaaacgcggctggtttatgtacgccaccgcgctggctattttcggctactggctgtggcagttttttctgcgctatcagttttgtttgtgagccggattggttcatccggcacacaaacttacaaacttcccgcctgacgacctttgcccgcagacgtcagcgttctccccgtttgtttaccgttgaggctttccagacgcatctggaagggcgggaatggcatatcgataccgtgggcatggaagccagccagaatcagctggtggatctcatggcgtagcggcatacggtgacccatctcagcggcgtaaatacgcagctcgaaaatctgaatcccctgttgcagatccaccaggaagacttccggtgccgggttgtcgatcaccagcgagcagcgagccgctgcggtgagcaggatttccgtcacttcttcgctattggcatcggcaggggccggtatcgtcaacaccacgcgcgtgaccgagtcagagagcgaccagttgataaactgctcggtaataaacgccttgttcggcacgattatctctttacggtcccagtcgctgatggtggtggcgcgggtgttaattttcgtcacgctaccggtgagatcgcgaattgtcaccgtatcgccaatgcgaatcggtttttcgaacaggataatcagaccagagataaagttggcgaaaatttcctgcaaaccaaaaccgagaccaacaccgagcgcggcaaccagccactgcaatttcgaccactcaataccaatcattgagaagccgaccagcccgccaatcagcatcagcagatatttggtgatggtggtgatggcgtaacccgtacccggcgttaaatccaggtgctgcaaaatcgccagttccagcagcgcgggcaagttgcgcaccagctgcgtggtgatgataaacaccagaatggcaatcagcaccgcaccgagggtaattggctccagactttctacgccctgtaccgtggaggtgacatcccacagcgaaatattttcgaggaagccgaaagcggaatggatttctgaccacagcacaatgacagaaagcagggcgatcaacatcaaaattgagcgcaccagccgcaaggattgcgcactgatggcatcgagatcgacttcgctttcatcgacttcaattgctccttccgggctactgtgatgatgcgcttcctcttcgccacgcgcacgttgcgctaacatctctgcccggcgatgcttcgcccgatcaaacgccagcctgcggcgctggatcagcatccagcggcggataacgtgataaaccaccagtagcaggaaccagatggcaaccgaggtttcaagcctcgctaacagcgcctgtgccgttgccagataacccaccgccgacgccagaatggcaaccaacggcgcgccaatcatcatgttccacagcatatggttggtaatgttgtcgccgctgccctctttgttgagatacagcggaatcccggcctttttcaggctgagggtgaccaccgccagcgcaccgcaaatgaggataaagcaaagccgtcccagcgaaccggagaattcacggtcgtcgaggttatcgaacatcatcagcgccataatcagcggcacaataagcccgatgctcatcaggtagtagcgcatcccacgggaaacacgttcgcgcggccagccaaaatgagcgataaacaagccgttcgggcgggcaaaggtggcgcaaatcatcactacccacagcagcggcacggtggccgttacaccatcgccaatcgcgaccgccagcggataaggccacgcctcgcgcaagccgtaacccagcgtcatccacagcaccggtaacggtgacgcgacgagaatcgaccagaaaagagtgcgcaacgtcagccagaagtgatcctgagtcactttgccaactttcgccgccgaacgttcaagaaaacgggtgaaatagcggcgcgagtaaatactgcaaccgaccagaatcaacgcgccaaacagcggcaaaattgtctctttgctggtcagcatcatcacactggctttgcccaactgactgaaggtgtccagcgaaatgagacgacgcagatcctgggcgatttccagcggccaggcgatggtcatcgggcgcacgtcagaggtccagaacagatagcggtgcgttgcttcgttcacctctttcagcgcatcctccagttgcccgttggagactttcagcttggtcagttccaatagtagcgtgtcgccaccctgcaacaatgagttcagcaactcacgctgagtgcgcagttgtgcttccagaatacggttttgctcggcagtcagcggctgaccgtcggcctgatgaatttgccgtagcagcggctgtttattaagcagatcctcataacgtaaccgttgcacacgcaactgcgccatttcggtatcaagctgttgtggtttcggcatttccggcagccgtgccacctgcgcccgcagcgcttcgccgagcagattggacgatcccagccattgcgactgttcacgcagcgtattcaacgcctgccggacctgtaacgtctggctggcagcctgacgctgttgcgaggcaacgagatccatccgctgcgcctgttgattcaaagccgccgatagttcgcggttaattttgaattgcgcgacgatatctttcggcaaatcggcgctgttttctgccagcaattcggtactttccagcgcccgctccgcctcaagctgacgttggctgtttaattgattacgcaaggcctgcaaatacgcatccagttgctggctctctttttccgccagctctgagcgtaagcgcgctaattcctggcggttattggcagacagctgcgccagctccagttcatcaacgagcgccttaagacgtgcagagtcagactgcaacgcgaaattttgtgcctgattgagcggagtattgccggtaagcgttcccaggcggcgctcgatctcatttaactgacggcgggcgtcggtttgctgttgcggcagttgattcagcgaatcggcaatctcgcgggcgcgctcctgctcttgctgggcctgacggcttttatccagcaactggctgctgacctggagaatttcctgattcagcgcgtcggtagacattcccggcgacacgctgcgcggctcgtcacgcatgttgtttaattgtgcgcgcagagtagcggagagtttcggataattatcgataacttgctgatattgtttgatgcgctcaagggaaccttttcgttcctcaagcgcatttaaggcagactggagcgcctctacgacttccggctgtgcgggtttcgccgcttttgcctgctccagttcctgagtgatttgtttgctatcgggggccgtcgcggcgtacgccccccaactgaggcaccaggccatcagaaaagtgataatcaggcgcacgtcagcgtttcctttgatggattagacctggtcttttttgtcgtcaaccaatgggctggcgtcgtgttctgcttcgatctcttcagcaggaagcggggcaggttcagcgtctggcgtaacaaaggtttcggtagatactgccagcggctggccaattttcgtgacagacaggctttccagttgctcaaccagattcactttacccggtgcaaacaggttgataacggtggaaccgagtttaaagcgacccatttcctggcctttcagcagtgccacagaaccgtcgttttccccggcaggccaggtccagcgcttgatgataccttcgcgcggcggcgtaatggtgcccgcccagaccgtctcaatgctgccaacaatcgtcgctccgaccagaatctgcgccattgggccaaattcggtatcgaaaaggcaaatcacgcgttcgttacgggcaaacagattcggcacgttctgagccgtgagatggttaacggagaagagatcgcccggcacgtagatcatctcacgcagaataccgttgcacggcatgtgtacgcggtggtagtcacgcggggagaggtaagtggtcacaaacgtaccgttgcggaacaggtccgccatcagatagttgcctgccagcagggcttcgaggctgtagttgtggcctttggcttgcaggattttatcttcttcgattttacccaactggctgataacgccatcggcaggcatgaccagtacattcggatcggtatcgattgggcgtacttcgtcacgcagcggacggacaaagaattcgttaaaggtgcggtagctggcggtgtccggcttttgcgcctctttcatgtcgaccttgtagtatttaacgaacagatcgataaccagttttgtcagccatcctgcccgcttgcttgcgccccaacccgccaggcgagtaagccatagtttcggcagaatgtactgtagcgaaagtttaaatgaatttaacaaggtagcctccaggccattgttttgtcgttcctgatccggcctacatgccggatcctgaaaaaaaggggacgattctaacgacggttagcttaattgtcagtcatccgtatcagaaaagtttttacgcgtttttacctgcgccatgctttccagaatacggtgatagttttcgaaacgggtttccgcgattttcccttcctcaaccgcttcccggatagcgcagcccggatcggtatcgtgtttgcaatcgcgatatttacacagacctaaatagtcatggaattcgacaaagccctgagtgatttgttccggctccaggtgccagaggccgaactcacgcactcctggggagtcaatcacatcaccgccgtgcgggaagtgatacagccgagcggcggtcgtggtgtgctgaccgagccccgagttgtcagagatatcgttggtcaggatctctttttgcagccccagcaacgcattcagcaggctggatttgccgacgccagactgcccggcaaaaatgctgatgcgcccggtcaacgcctcttccagcggttttagcccatcctgagtatggctggaaaccatcaatacgcgataaccgatattgcggtagatatccatctgctcgttgacgaacgccatgccttcgtcgtccagcaggtctatcttgttgagcacaataatcggctcaatctgcaaggtttcgcaggccaccaggtaacggtcgataatattgagcgacagctccggcaaaatggcggagacaatgacaatctggtcgatgttggcggcaataggttttacgccgtcgtagaaatccggacgcgtcaacaccgaggtacgctcatgcaccgcttccacgatccctttgacatttacgccttccgccgccggtttacccggacgccagactacgcggtcgccggttaccagcgaacggatggtacggcgaatattgcagcggtgaacgtcgccatcggcggattccacatcagcgtgcataccaaagcggctgatgacgataccttcatcaggctcgccaaacagattgtcgtcgtagtcgggcttctccttagacgttttaagacgacgctggtgattggcgttcacgcggcgctgctggcctttggagagtttatttttactcaatcgtacagactcctggtcgcccctgatgggcaaaacatctatgatacacgcaattgtggatcaatatagtcactgtgaatgggtggaaaatagcatgagtgccaatgaaaacaacctgatttggatcgatcttgagatgaccggtctggatcccgagcgcgatcgcattattgagattgccacgctggtgaccgatgccaacctgaatattctggcagaagggccgaccattgcagtacaccagtctgatgaacagctggcgctgatggatgactggaacgtgcgcacccataccgccagcgggctggtagagcgcgtgaaagcgagcacgatgggcgatcgggaagctgaactggcaacgctcgaatttttaaaacagtgggtgcctgcgggaaaatcgccgatttgcggtaacagcatcggtcaggaccgtcgtttcctgtttaaatacatgccggagctggaagcctacttccactaccgttatctcgatgtcagcaccctgaaagagctggcgcgccgctggaagccggaaattctggatggttttaccaagcaggggacgcatcaggcgatggatgatatccgtgaatcggtggcggagctggcttactaccgcgagcattttatcaagctgtaaaatttttcctggtcacgtaagcgccggaatccacttgcggcggcgtgattttgacgctaaattgaacgtcttgctgataatttcagcacttgagataaaaacgcaaaaaaaacttttttggggggttgcagagggaaagatttctcgtataatgcgcctcccgtaacgacgcagaaatgcgaaaattacgaaagcaaaattaagtagtacgcgggaatagctcagttggtagagcacgaccttgccaaggtcggggtcgcgagttcgagtctcgtttcccgctccaaaatttgaaaagtgctgcaaagcacagaccacccaagcgggaatagctcagttggtagagcacgaccttgccaaggtcggggtcgcgagttcgagtctcgtttcccgctccaaaatttgaaagtgctgtaaggcacagaccacccaagcgggaatagctcagttggtagagcacgaccttgccaaggtcggggtcgcgagttcgagtctcgtttcccgctccaaattcttctctcaataaaatatccacagcgacgcgatgcgttattgctggtttttgttgtctctgacaaactcttgtaaacagagttatccacagcctcaggctgtaatcttaatttcaaagaaacttcgcacggtgaatagtatttttttaacctattgatagataagttaaaaattaagattccgttttgtcgagtcgatcacttgacgattttattcgtcttgaattgcaatgcgtttttatttttattcacaagctgtggatgaatcaggcgtcacgcggtaaccctttttcaatcacccgaaccagacgctgttttttcggcaattgcacttcgactatgcacgcatttcgtctctctatttgctgcgcaatcgcccacgctatgtgctcatcgagaagtgggtgctcacctttacgactttccagcgctgtcaaaatcgtttcatcccaaggggcattgcctaatgctacggcgatattacgcagccaacgcaggtgaccaatacgacgaatcgccgatccttccgtgacttttaaaaacttctcttcgctccaggcgaataactcaatgagttccggtgcgtgtagcggcttacgcgggctgaaatcctcttctgtggtgagttgtgaatagcgattccacgggcagataagctggcagtcatcgcaaccgtaaatacggtttcccattaacggtcgcaactcttccgggatcgccccttcaagttcgatggtgagataagagatacagcggcgagcatcgacggtatatggctcgacgatggcaccggtcgggcaaatcgtcatacaggccacgcatttgccgcatccttcctcgactggttgatccacgggcagcggaatatcgaccagcaattcgcctaaaaagaagaacgaaccggcctcgcgattgaggataagtgagtgcttacctgtccagccgagcccagctttttcagctaacgggcgctcgagaataggcgcagaatcgacaaacggtctaaaattcagcgaaacacaatgttgctgaatcatctcgcccagctttttgagtcggttgcgcagaagtttgtgatagtcacggcccagcgcataacggctaacatagccgagtttggggtttttcagcgtgctggcaaatgcggcgttagcaggaaggtaattcatccgcacgctgatcacgcgcagcgtaccgggcaataactcatgagggcgagcgcgcagcataccgtgacgtgccatccagtccatttcgccgtggtattgtttgtccagccatgcttgcagtttgggctcggactcgctgagatcggtatcggtaatacctacctgctgaaagcccagttccagcccccactgtttaattttttgcgctaactgattgagatcgaggggctctgacatgacggaccatacaatgaagaaaaaccccgtaagtataccacacaccgtctggtacgccgacgatatccgccgcggagaacgcgaggcggcagatgtgctggggctcacactctatgagctgatgcttcgcgctggcgaggccgcattccaggtgtgtcgttcggcgtatcctgacgcccgccactggctggtgctgtgcggtcatggtaataacggcggcgatggctacgtggtcgcgcgactggccaaagcggtcggcattgaggtcacgttgttggcccaggagagcgacaaaccgttgccggaagaggccgcgctggcacgcgaagcatggttaaacgcgggtggcgagatccatgcttcgaatattgtctggcccgaatcggtagatctgattgttgatgcgctgctcggtaccggtttgcggcaagcgccccgcgaatccattagccagttaatcgaccacgctaattcccatcctgcgccgattgtggcggttgatatcccttccggcctgctggctgaaactggcgctacgccaggcgcggtgatcaacgccgatcacaccatcacttttattgcgctgaaaccaggcttgctcactggaaaagcgcgggatgttaccggacaactgcattttgactcactggggctggatagttggctggcaggtcaggagacgaaaattcagcggttttcagcagaacaactttctcactggctaaaaccgcgtcgcccgacttcgcataaaggcgatcacgggcggctggtaattatcggtggcgatcacggcacggcgggggctattcgtatgacgggggaagcggcgctgcgtgctggtgctggtttagtccgagtactgacccgcagtgaaaacattgcgccgctgctgactgcacgaccggaattgatggtgcatgaactgacgatggactctcttaccgaaagcctggaatgggccgatgtggtggtgattggtcccggtctgggccagcaagagtgggggaaaaaagcactgcaaaaagttgagaattttcgcaaaccgatgttgtgggatgccgatgcattgaacctgctggcaatcaatcccgataagcgtcacaatcgcgtgatcacgccgcatcctggcgaggccgcacggttgttaggctgttccgtcgctgaaattgaaagtgaccgcttacattgcgccaaacgtctggtacaacgttatggcggcgtagcggtgctgaaaggtgccggaaccgtggtcgccgcccatcctgacgctttaggcattattgatgccggaaatgcaggcatggcgagcggcggcatgggcgatgtgctctctggtattattggcgcattgcttgggcaaaaactgtcgccgtatgatgcagcctgtgcaggctgtgtcgcgcacggtgcggcagctgacgtactggcggcgcgttttggaacgcgcgggatgctggcaaccgatctcttttccacgctacagcgtattgttaacccggaagtgactgataaaaaccatgatgaatcgagtaattccgctccctgatgagcaggcaacattagacctgggcgagcgggtagcgaaagcctgcgatggcgcaaccgtaatctatctgtatggcgatttaggcgcaggtaaaaccacctttagccggggctttttacaggctctgggtcatcagggtaatgtcaaaagccccacttatacgctggtcgaaccctatacgctcgacaacttaatggtctatcactttgatttgtaccgccttgccgatcccgaggagctggagtttatggggatccgcgattattttgccaacgatgccatctgcctggtggagtggccacaacaaggtacaggtgttcttcctgacccggatgtcgaaatacacattgattatcaggcacaaggccgtgaggcgcgcgtgagtgcggtttcctctgcgggtgaattgttgctggcgcgtttagccggttaacctttgaaaggtggcgggatgatgtatcgcatcagaaattggttggtagcgacgctgctgctgctgtgcacgccggtgggtgccgcgacgctctctgatattcaggtttctaacggtaatcaacaggcgcggataacgttgagttttattggcgatcctgattatgcgtttagccatcaaagcaaacgcaccgtggcgctcgatatcaaacaaacgggcgtgattcagggactgccgttgttgttcagcggcaataatctggtgaaggcgattcgctctggaacgcctaaagatgcacaaacgctacggctggtggtcgatcttaccgaaaacggtaaaaccgaagcggtgaagcggcagaatggcagcaattacactgtcgtctttacgattaacgccgatgtgccgccaccgcctcctccgccgcccgtggttgcgaaacgcgttgaaacgcctgcggttgtcgcaccgcgcgtcagcgaaccggcgcgcaatccgtttaaaacggaaagtaaccgcactacgggtgttatcagcagtaatacggtaacgcgtccggcagcgcgcgcgacggctaacactggcgataaaattatcatcgctattgatgccggacacggcggtcaggaccctggcgctatcggccccggtggtacgcgggagaaaaatgtcaccatcgccatcgcgcgtaaattgcgtactttgctcaatgacgatccgatgtttaaaggcgttttaacccgtgacggggattactttatctcggtgatggggcgcagtgatgtggcacgtaagcaaaacgccaatttcctcgtgtcgattcacgctgatgccgcaccgaaccgcagtgcgactggcgcttccgtatgggtgctctctaaccgtcgcgccaacagtgaaatggccagctggctggagcagcacgagaaacagtcggagctgctgggtggggcgggtgatgtgctggcgaacagtcagtctgacccctatttaagccaggcggtgctggatttacagttcggtcattcccagcgggtagggtatgatgtagcgaccagtatgatcagtcagttgcaacgcattggcgaaatacataaacgtcgaccagaacacgccagccttggcgttctgcgctcgccggatatcccatcagtactggtcgaaaccggttttatcagcaacaacagcgaagaacgtttgctggcgagcgacgattaccaacaacagctggcagaagccatttacaaaggcctgcgcaattacttccttgcgcatccgatgcaatctgcgccgcagggtgcaacggcacaaactgccagtacggtgacgacgccagatcgcacgctgccaaactaaggacgattgatgccaattcaggtcttaccgccacaactggcgaaccagattgccgcaggtgaggtggtcgagcgacctgcgtcggtagtcaaagaactagtggaaaacagcctcgatgcaggtgcgacgcgtatcgatattgatatcgaacgcggtggggcgaaacttatccgcattcgtgataacggctgcggtatcaaaaaagatgagctggcgctggcgctggctcgtcatgccaccagtaaaatcgcctctctggacgatctcgaagccattatcagcctgggctttcgcggtgaggcgctggcgagtatcagttcggtttcccgcctgacgctcacttcacgcaccgcagaacagcaggaagcctggcaggcctatgccgaagggcgcgatatgaacgtgacggtaaaaccggcggcgcatcctgtggggacgacgctggaggtgctggatctgttctacaacaccccggcgcggcgcaaattcctgcgcaccgagaaaaccgaatttaaccacattgatgagatcatccgccgcattgcgctggcgcgtttcgacgtcacgatcaacctgtcgcataacggtaaaattgtgcgtcagtaccgcgcagtgccggaaggcgggcaaaaagaacggcgcttaggcgcgatttgcggcaccgcttttcttgaacaagcgctggcgattgaatggcaacacggcgatctcacgctacgcggctgggtggccgatccaaatcacaccacgcccgcactggcagaaattcagtattgctacgtgaacggtcgcatgatgcgcgatcgcctgatcaatcacgcgatccgccaggcctgcgaagacaaactgggggccgatcagcaaccggcatttgtgttgtatctggagatcgacccacatcaggtggacgtcaacgtgcaccccgccaaacacgaagtgcgtttccatcagtcgcgtctggtgcatgattttatctatcagggcgtgctgagcgtgctacaacagcaactggaaacgccgctaccgctggacgatgaaccccaacctgcaccgcgttccattccggaaaaccgcgtggcggcggggcgcaatcactttgcagaaccggcagctcgtgagccggtagctccgcgctacactcctgcgccagcatcaggcagtcgtccggctgccccctggccgaatgcgcagccaggctaccagaaacagcaaggtgaagtgtatcgccagcttttgcaaacgcccgcgccgatgcaaaaattaaaagcgccggaaccgcaggaacctgcacttgcggcgaacagtcagagttttggtcgggtactgactatcgtccattccgactgtgcgttgctggagcgcgacggcaacatttcacttttatccttgccagtggcagaacgttggctgcgtcaggcacaattgacgccgggtgaagcgcccgtttgcgcccagccgctgctgattccgttgcggctaaaagtttctgccgaagaaaaatcggcattagaaaaagcgcagtctgccctggcggaattgggtattgatttccagtcagatgcacagcatgtgaccatcagggcagtgcctttacccttacgccaacaaaatttacaaatcttgattcctgaactgataggctacctggcgaagcagtccgtattcgaacctggcaatattgcgcagtggattgcacgaaatctgatgagcgaacatgcgcagtggtcaatggcacaggccataaccctgctggcggacgtggaacggttatgtccgcaacttgtgaaaacgccgccgggtggtctgttacaatctgttgatttacatccggcgataaaagccctgaaagatgagtgatatcagtaaggcgagcctgcctaaggcgatttttttgatggggccgacggcctccggtaaaacggcgttagccattgagctgcgtaaaattttaccagtagagttgataagcgttgattctgcccttatttacaaagggatggatatcgggacggcgaagccgaacgctgaagagttactcgccgcgccgcaccgattgctggatattcgcgatccgtcgcaggcttactcggctgctgattttcgccgcgatgcgctggcggaaatggccgatatcaccgcggcggggcggatcccactgttagtgggcggtacgatgttgtatttcaaggcattgctggaagggttgtcgccgctaccgtcggcagacccggaagtacgggccagaattgagcaacaggcggcagagcaaggttgggagtcattgcatcgtcaacttcaggaggtagatccggttgcggcagcaaggattcatccaaatgatccacaaaggctttcccgggcactggaagtttttttcatttcgggtaaaactttaacggaactgacgcaaacgtcaggagacgctctaccgtatcaggtgcatcagttcgccatcgccccggcgagccgtgaactgctccatcaacgcattgagcagcgttttcatcagatgttggcttcaggttttgaagcagaagtccgggcgctttttgcccgaggagatttgcatacggacttgccttccattcgttgcgtgggttatcgccagatgtggtcttaccttgaaggcgaaatctcatacgatgaaatggtttatcgaggtgtttgcgccacgagacagttggcgaagcggcagataacctggctgcgtggttgggaaggggttcactggcttgacagtgaaaaaccagaacaggcgcgtgacgaagtattacaggttgttggtgctatcgcaggctgaatgtgtacaattgagacgtatcgtgcgcaattttttcagaatcgaaaggttcaaagtacaaataagcatataaggaaaagagagaatggctaaggggcaatctttacaagatccgttcctgaacgcactgcgtcgggaacgtgttccagtttctatttatttggtgaatggtattaagctgcaagggcaaatcgagtcttttgatcagttcgtgatcctgttgaaaaacacggtcagccagatggtttacaagcacgcgatttctactgttgtcccgtctcgcccggtttctcatcacagtaacaacgccggtggcggtaccagcagtaactaccatcatggtagcagcgcgcagaatacttccgcgcaacaggacagcgaagaaaccgaataaggtttcgggctgtttttttacacggggagccagcgatcctgcgttccccgctgatctatttagagggttatacgcttgtttgaccgttatgatgctggtgagcaggcggtactggtacacatctattttacgcaagacaaagatatggaagacctccaggagtttgaatctctggtctcttccgccggtgtcgaagcattgcaggtgattaccggtagccgtaaagcgccgcacccaaagtattttgtaggtgaaggtaaagcagttgaaattgcggaagctgtcaaagcgacgggtgcttcggtcgttctttttgaccatgccctgagcccggcgcaagagcgtaacctggagcgtttgtgcgagtgtcgtgttatcgaccgcaccggccttattttagatattttcgcccaacgtgcgcgtacccatgagggtaagttgcaggttgagctggcgcagctgcgccatctggctacgcgcctggtgcgtggctggacccaccttgaaagacagaaaggcgggataggtttgcgtggtccgggtgaaacccagctcgaaaccgaccgtcgtttgttgcgtaatcgcatcgtgcagatacagtcgcgcctggaaagagttgaaaagcagcgtgagcaggggcggcaatcgcgtatcaaagccgacgttcctactgtttcgctggtgggatataccaacgccggtaaatctacccttttcaatcgcatcaccgaagcgcgggtctacgcggcagaccagttgtttgccaccctcgacccgacgttgcggcgtattgacgttgcagatgtcggtgaaaccgtacttgcagataccgtagggtttattcgccacctgccgcacgatctggtggcggcatttaaagccacgttacaagagacgcggcaagccacattactgctgcacgtcattgatgcggcggatgtgcgtgtacaagaaaacatcgaagcggtgaatacggttcttgaagagatcgacgctcacgagatcccaaccctgctggtgatgaacaagatcgatatgctggaagatttcgaaccgcgtattgatcgggacgaagagaacaaaccgaaccgtgtctggctttccgcacagaccggagcggggataccacagctttttcaggctttgacggagcggctttccggcgaggtggcgcagcatacattgcgtctgccaccgcaggaagggcgtctgagaagtcgtttttatcagcttcaggcaatagaaaaagagtggatggaggaggacggcagcgtaagtctgcaagttcgtatgccgatcgttgactggcgtcgcctctgtaaacaagaaccggcgttgatcgattacctgatctaacggcgtagcgtctgaagcgtggagtcatatcctctggcgtcgaaagacaacagggatcaccgcataacaaatatggagcacaaacatggcgtggaatcagcccggtaataacggacaagaccgcgacccgtggggaagcagcaaacctggcggcaactctgagggaaatggaaacaaaggcggtcgcgatcaagggccacctgatttagatgatatcttccgcaaactgagcaaaaagctcggtggtctgggcggcggtaaaggcaccggatctggcggtggcagttcatcgcaaggcccgcgcccgcagcttggcggtcgtgtcgttaccatcgcagcggcagcgattgtcattatctgggcggccagtggtttctataccattaaagaagccgaacgcggcgtggtaacacgctttggtaaattcagccatctggttgagccgggtctgaactggaaaccgacgtttatcgacgaagtcaaaccggtgaacgtggaagccgtgcgtgaactggccgcttctggtgtgatgctgacgtcggacgagaacgtagtgcgcgttgagatgaacgtgcagtaccgcgtcaccaatccggaaaaatatctgtatagcgtgaccagcccggatgacagcctgcgtcaggctaccgacagcgccctgcgtggagttatcggtaaatacaccatggaccgcattctgacggaaggtcgtaccgtgattcgtagcgatactcagcgcgaactggaagagacgattcgtccgtatgacatgggtatcacgctgctggacgtcaacttccaggctgctcgtccgccggaagaagtaaaagcggcgtttgacgatgcgattgccgcgcgtgaaaacgaacagcaatacattcgtgaagcagaagcgtataccaacgaagttcagccgcgtgcgaacggtcaggcgcaacgtatcctcgaagaggcgcgtgcgtacaaggcccagaccatcctggaagctcagggtgaagtggcgcgctttgctaaacttctgccggaatataaagccgcgccggaaattactcgcgagcgtctgtatatcgagacgatggaaaaagtgttgggtaacacccgcaaagtgctggttaacgataaaggtggcaacctgatggttctgccgttagaccagatgctgaaaggtggtaacgcccctgcggcgaagagcgataacggtgccagcaatctgctgcgtctgccgccagcctcttcctccacaaccagtggagcaagcaacacgtcgtccaccagtcagggcgatattatggaccaacgccgcgccaacgcgcagcgtaacgactaccagcgtcagggggaataacgatgcgtaagtcagttatcgcgattatcatcatcgtgctggtagtgctttacatgtctgtctttgtcgtcaaagaaggtgagcgcggtattacgctgcgttttggtaaggtactgcgtgacgatgacaacaaacctctggtttatgagccgggtctgcatttcaagataccgttcattgaaacggtgaaaatgctcgacgcacgtattcagaccatggacaaccaggccgaccgctttgtgaccaaagagaagaaagacctgatcgtcgactcttacatcaaatggcgcatcagcgatttcagccgttactacctggcaacgggtggtggcgacatttcgcaagcggaagtgctgttgaaacgtaagttctctgaccgtctgcgttctgaaattggtcgcctggacgtgaaagatatcgtcaccgattcccgtggtcgtctgaccctcgaagtacgtgacgcgctgaactccggttctgcgggtacagaagatgaagttactaccccggcggcagataacgccattgccgaagcggcagagcgcgtaacggctgagacgaagggcaaagttccggtcatcaacccgaacagtatggcggcgctgggtattgaagttgtcgatgtgcgtatcaagcagatcaacctgccgaccgaagtgtctgaagcgatctacaaccgtatgcgcgccgagcgtgaagcggtagcgcgtcgtcaccgttcacaaggtcaggaagaagcggaaaaactgcgcgcgactgccgactatgaagtgaccagaacgctggcagaagctgagcgtcagggccgcatcatgcgtggtgaaggcgatgccgaagcagccaaactgtttgctgatgcattcagtaaagatccggacttctacgcattcatccgtagcctgcgtgcttatgagaacagcttctctggcaatcaggacgtgatggtcatgagcccggatagcgatttcttccgctacatgaagacgccgacttccgcaacgcgttaatataacgactgcggtacaggtcaataaagccaccgcatcctcagggatgtcggtggttttctttttctataaggataatgaatgaattcgacaatctggctggcgcttgccctggttttggtactggaaggtttagggccgatgctttacccgaaggcatggaagaagatgatctctgcgatgaccaatttgcccgataatattttacgtcgttttggcggtggacttgtggttgcgggcgttgtggtctactacatgttgaggaaaacgattggctgaacaaaaaacagactgatcgaggtcatttttgagtgcaaaaagtgctgtaactctgaaaaagcgatggtagaatccatttttaagcaaacggtgattttgaaaaatgggtaacaacgtcgtcgtactgggcacccaatggggtgacgaaggtaaaggtaagatcgtcgatcttctgactgaacgggctaaatatgttgtacgctaccagggcggtcacaacgcaggccatactctcgtaatcaacggtgaaaaaaccgttctccatcttattccatcaggtattctccgcgagaatgtaaccagcatcatcggtaacggtgttgtgctgtctccggccgcgctgatgaaagagatgaaagaactggaagaccgtggcatccccgttcgtgagcgtctgctgctgtctgaagcatgtccgctgatccttgattatcacgttgcgctggataacgcgcgtgagaaagcgcgtggcgcgaaagcgatcggcaccaccggtcgtggtatcgggcctgcttatgaagataaagtagcacgtcgcggtctgcgtgttggcgaccttttcgacaaagaaaccttcgctgaaaaactgaaagaagtgatggaatatcacaacttccagttggttaactactacaaagctgaagcggttgattaccagaaagttctggatgatacgatggctgttgccgacatcctgacttctatggtggttgacgtttctgacctgctcgaccaggcgcgtcagcgtggcgatttcgtcatgtttgaaggtgcgcagggtacgctgctggatatcgaccacggtacttatccgtacgtaacttcttccaacaccactgctggtggcgtggcgaccggttccggcctgggcccgcgttatgttgattacgttctgggtatcctcaaagcttactccactcgtgtaggtgcaggtccgttcccgaccgaactgtttgatgaaactggcgagttcctctgcaagcagggtaacgaattcggcgcaactacggggcgtcgtcgtcgtaccggctggctggacaccgttgccgttcgtcgtgcggtacagctgaactccctgtctggcttctgcctgactaaactggacgttctggatggcctgaaagaggttaaactctgcgtggcttaccgtatgccggatggtcgcgaagtgactaccactccgctggcagctgacgactggaaaggtgtagagccgatttacgaaaccatgccgggctggtctgaatccaccttcggcgtgaaagatcgtagcggcctgccgcaggcggcgctgaactatatcaagcgtattgaagagctgactggtgtgccgatcgatatcatctctaccggtccggatcgtactgaaaccatgattctgcgcgacccgttcgacgcgtaattctggtacgcctggcagatattttgcctgccgggcgaacagtgtgatacattgctgtgtcgggtaagccattacgctatccgacacagtgttaaatcctcgcttttttccttccccgaactgaaataaattagcgacacagcttgtggctggtttatcatcaatataaatgtattttttcccgatttcccttttgaggttgatgtgcagttaacgagtttcactgattacggattacgtgcgctgatctacatggcgtcattgccagaagggcggatgaccagtatttctgaagtgactgacgtctacggcgtctcccgtaatcatatggtcaaaataatcaatcaacttagtcgtgccggctacgtgactgctgttcgtggaaaaaatggcggcattcgcctgggtaaaccggcgagtgcgatacgtattggtgatgtggtgcgcgagctggagcccttatcgctggtgaattgcagcagtgagttttgccacattacacctgcctgtaggttgaaacaggcactttctaaggccgtgcaaagttttcttacggaactggataactacacgcttgccgatttggttgaagagaatcaaccgctttataaattattgctggtggagtgacgaaaatcttcatcagagatgacaacggaggaaccgagatgtcacaagatcctttccaggaacgcgaagctgaaaaatacgcgaatcccatccctagtcgggaatttatcctcgaacatttaaccaaacgtgaaaaaccggccagccgtgatgagctggcggtagaactgcacattgaaggcgaagagcagcttgaaggcctgcgtcgccgcctgcgcgcgatggagcgcgatggtcaactggtcttcactcgtcgtcagtgctatgcgctgccggaacgcctcgacctggtgaaaggtaccgttattggccaccgtgatggctacggctttctgcgggttgaagggcgtaaagatgatttgtatctctccagcgagcagatgaaaacctgcattcatggcgatcaggtgctggctcagccgctgggtgctgaccgtaaaggtcgtcgtgaagcgcgtattgtccgcgtactggtgccaaaaaccagccagattgttggtcgctactttaccgaagcgggcgtcggctttgtggttcctgacgacagccgtctgagcttcgatatcttaatcccgcccgatcagatcatgggcgcgcggatgggctttgtggtcgtagtcgaactgactcagcgtccgactcgccgcaccaaagcggtgggtaaaatcgtcgaagtgctgggcgacaatatgggcaccggcatggcggttgatatcgctctgcgtacccatgaaattccgtacatctggccgcaggctgttgagcaacaggttgccgggctgaaagaagaagtgccggaagaagcaaaagcgggccgtgttgatctgcgcgatttaccgctggtcaccattgatggcgaagacgcccgtgactttgacgatgcagtttactgcgagaaaaaacgcggcggcggctggcgtttatgggtcgcgattgccgacgtcagctactatgtgcgtccgtcaacgccgctggacagagaagcgcgtaaccgtggcacgtcggtgtacttcccttcgcaggttatcccgatgctgccggaagtgctctctaacggcctgtgttcgctcaacccgcaggtagaccgcctgtgtatggtgtgcgagatgacggtttcgtcgaaaggccgcctgacgggctacaaattctacgaagcggtgatgagctctcacgcgcgtctgacctacaccaaagtctggcatattctgcagggcgatcaggatctgcgcgagcagtacgccccgctggttaagcatctcgaagagttgcataacctctataaagtgctggataaagcccgtgaagaacgcggtgggatctcatttgagagcgaagaagcgaagttcattttcaacgctgaacgccgtattgaacgtatcgaacagacccagcgtaacgacgcgcacaaattaattgaagagtgcatgattctggcgaatatctcggcggcgcgtttcgttgagaaagcgaaagaaccggcactgttccgtattcacgacaagccgagcaccgaagcgattacctctttccgttcagtgctggcggagctggggctggaactgccgggcggtaacaagccggaaccgcgtgactacgcggagctgctggagtcggttgccgatcgtcctgatgcagaaatgctgcaaaccatgctgctgcgctcgatgaaacaggcgatttacgatccagaaaaccgtggtcactttggcctggcattgcagtcctatgcgcactttacttcgccgattcgtcgttatccagacctgacgctgcaccgcgccattaaatatctgctggcgaaagagcaggggcatcagggcaacaccactgaaaccggcggctaccattattcgatggaagagatgctgcaactgggtcagcactgttcgatggcggaacgtcgtgccgacgaagcaacgcgcgatgtggctgactggctgaagtgtgacttcatgctcgaccaggtaggtaacgtctttaaaggcgtaatttccagcgtcactggctttggcttcttcgtccgtctggacgacttgttcattgatggtctggtccatgtctcttcgctggacaatgactactatcgctttgaccaggtagggcaacgcctgatgggggaatccagcggccagacttatcgcctgggcgatcgcgtggaagttcgcgtcgaagcggttaatatggacgagcgcaaaatcgactttagcctgatctccagcgaacgcgcaccgcgcaacgtcggtaaaacggcgcgcgagaaagcgaaaaaaggcgatgcaggtaaaaaaggcggcaagcgtcgtcaggtcggtaaaaaggtaaactttgagccagacagcgccttccgcggtgagaaaaaaacgaagccgaaagcggcgaagaaagacgcgagaaaagcgaaaaagccatcggcgaaaacgcagaaaatagctgcagcgaccaaagcgaagcgtgcggcgaagaaaaaagtggcagagtgatcaataccctctttaaaagaagagggttagattgctgacaaaatgcgctttgttcatgccggatgcggcgtgaacgccttatccggcctacataatcacgcaaattcaatatattgcagagatcatgtaggccggataaacgtagtgcatcaggcaaaacgtaaacaacgagtacattaatgagcgaaatgatttacggcatccacgcagtgcaggccctgctggagcgcgcccctgaacgttttcaggaagtctttattttaaaaggccgtgaagataaacgtctgttaccgctgattcacgcccttgagtctcagggcgtggttatccagttggcaaaccgccaatatctcgacgagaaaagcgacggtgccgtgcatcagggcattatcgcccgcgtgaagccaggacgtcagtatcaggaaaacgatctgccggatctgatcgcttcgctcgatcaaccgttcctgctgatcctcgacggcgtaaccgatccgcacaacctcggcgcgtgcctgcgtagtgcggacgccgcaggcgttcatgcggtgattgtgccgaaagatcgctccgcacagctcaacgctacggcgaaaaaagtagcctgcggcgcggcagaaagcgttccgctgattcgggtgactaaccttgcgcgcaccatgcgtatgttgcaggaagagaatatctggatcgtcggtacggcaggcgaggcggatcatacactctatcagagcaaaatgaccggacgcctggcgctggtgatgggtgcggaaggtgaaggtatgcgtcgcctgactcgtgaacattgcgatgagttgatcagcatcccgatggctggaagcgtttcttccctgaacgtttcggttgcgaccggaatttgcttatttgaagcggtgcgccagcgcagctaatttctcagaattatgaaaagccatccagatttggatggtttttttttgtctatagctggtaagataattacgtattgcaaatattcattttattaatatttaaacttaatctatatggaataatatatgacatggaatccgttggcgctagcgacggcgctgcaaactgtacctgaacaaaatattgatgtaacaaatagcgagaacgcattaattattaaaatgaatgattatggcgatttgcaaatcaatattctttttacttcccgccaaatgattatcgaaacctttatttgtccggtgagtagtatcagcaatccagatgaatttaataccttcttattaagaaatcagaagatgatgccgttgtcatcggtagggatctccagcgtacaacaggaagagtattacattgttttcggggcgttatcgcttaaatcttctcttgaagatatcctgcttgagataacctcgctggtagataacgcattggatctggctgaaattacagaagaatattcacactaattacaaggacgggtatttatgggaattttaaaaagtttatttacgctggggaaatcgtttatctcccaggcggaagaatccattgaagaaacccagggcgtgcgcatgctggaacagcatattcgtgacgctaaagctgaactcgataaagccggaaaatctcgcgttgatctgctggcgcgggtgaaattaagtcacgataagctgaaagatttacgtgagcgcaaagccagtctggaagcccgtgcgctggaagcgttaagcaagaacgttaatccgtcgttgattaacgaagttgctgaagaaatcgcgcgccttgagaatctcattaccgctgaagagcaagtgttgtcgaatctggaagtctcccgtgatggcgtggaaaaagcagttacagcgacagcgcagcgtatcgctcagtttgagcagcaaatggaagtcgttaaagccactgaagccatgcagcgtgcacaacaggctgtaacaacctctaccgttggcgcatcttccagcgtttcgacagcggcagaatccttaaaacgcctgcaaacgcgtcaggccgaacgtcaggctcgcctggatgctgccgcacagttggagaaagtcgcagacggtcgcgaccttgacgaaaagctggcggaagccggaattggcggtagcaataaaagtagcgcccaggatgtattagcaagactgcaacgccaacagggcgagtaatttttttgccagcctcgctaaaaggctggcaactattttaaggataaaatatgtctggttttttccagcgtctgtttggcaaggataataagccagctatcgctcgtggtccgctgggacttcatctcaatagtggctttacgctcgacacgttagcgtttcgtttgctggaagatgaattgctgattgcgctgccgggtgaggaatttacggtagccgccgtcagccacatcgatctgggcggcggtagtcagattttccgctactacacttcaggcgatgagtttctgcaaatcaataccaccggcggcgaagatattgatgacattgatgatatcaagctctttgtctatgaagagagctacggtatcagtaaagagagtcactggcgcgaggcgatcaacgccaaagcgatgggagcaatgaccttaaactggcaggaaaaacgctggcagcgattttttaacagcgaagaaccgggaaatatcgaacccgtctacatgctggaaaaagtagaaaatcaaaaccatgccaaatgggaggtccataattttaccatgggctaccaacggcaagtaaccgaagatacttacgaatatttgctgctaaatggtgaggaatcttttaacgatctcggcgagccagagtggttattttcgcgcgcgttgggtgtcgatatcccgctgacatcacttcatattattggttaattacaaggacgtttacaatgcatatactggattcacttcttgcctttagcgcctatttttttattggcgtggctatggtgattatttttctgtttatctattctaaaattacaccgcacaacgaatggcagttaatcaaaaacaataataccgcggcgtcactggcgttcagcggtacattgttgggttacgttatccccttatccagtgcggcaatcaatgcggtgagtattccagactatttcgcctggggcgggattgcactggtgattcagttactcgtttttgctggtgtcagactttatatgcccgcattaagcgaaaaaattattaatcacaataccgcagcaggaatgtttatgggaaccgccgcgctggctggcggtatttttaacgcagcttgtatgacatggtaatggacgatcatggccagaaaacgcaaatcaagaaataacagtaaaattggtcacggagcgattagtcgcattggtagaccgaataatccttttgaaccgtgccgcaatcgctacgcacaaaaatacttaacgttggcgctaatgggcggtgccgcttttttcgtattgaaaggttgtagcgatagtagcgatgtcgataacgacggcgacggaacgttttacgcgacagtgcaggattgtattgatgacggtaataatgccgacatttgcgcgcgtggctggaacaacgccaaaacggcattttatgccgatgttccgaagaatatgactcagcagaactgtcagtctaagtacgaaaattgctactacgacaatgttgaacagagttggatcccggtcgtttctggatttttgttaagccgggttattcgtaaagatcgcgatgagccgtttgtttataacagcggcggttcctcttttgcttcgcgcccagtctggcgcagcacttctggtgattactcctggcgctccggttctggcaaaaaagagtcttactcttcgggcggctttaccaccaaaaaagcgtctaccgtttctcgcggcggctatggtcgttcttccagcgcccgtgggcattggggaggctaatcatgctgagacacaacgttcctgtgcgacgggatctggaccagatcgccgctgacaacggtttcgactttcatatcatcgacaatgaaatctattgggatgagagtcgggcttaccgttttactctgcgccagattgaagagcagatcgaaaaaccgactgcggaactgcatcagatgtgccttgaggtggtggatcgcgcggtaaaagatgaagagatcctgacgcaactggcgatcccgccgttgtactgggatgtgatcgctgaaagctggcgcgcccgcgatccttcgctgtatggacggatggattttgcctggtgtggcaatgcgccggtgaagctgctggagtacaacgccgatacgccaacttcattgtacgagtcggcttatttccagtggctgtggctggaggatgcccggcgcagcggcattattccgcgtgatgccgatcagtacaatgctattcaggaacgcctgatttcacgctttagcgagctttacagtcgggaaccgttttatttttgctgctgtcaggacaccgatgaagacaggagtaccgtgctgtacttgcaggactgcgcccagcaggcagggcaggagtcgcggtttatctacattgaagatctcggtttgggcgtcggcggcgtactgaccgatcttgatgataatgtcatccagcgtgcatttaagctgtatccgctggagtggatgatgcgtgacgataacggtccgctgctgcgcaagcgtcgcgagcaatgggtggagccgttatggaaaagtatcttgagtaataaagggctaatgccgctgctttggcgcttcttccctggtcatcctaatcttcttgcgtcctggttcgatggcgagaaaccgcagattgccgctggcgaaagctatgtgcgtaaaccaatctattcgcgcgaaggcggcaacgtcaccatttttgacggcaagaataacgttgttgaccacgctgatggtgattacgccgatgaaccgatgatctaccaggcgtttcaacctctgccgcggtttggcgatagctacacactcatcggtagctggattgtcgatgatgaagcgtgcggaatggggatccgtgaagataacacactgatcaccaaagacacctcacgtttcgttccgcattacattgctggataagaatgttttagcaatctctttctgtcatgaatccatggcagtgaccatactaatggtgactgccattgatggagggagacacagtgcactggcaaactcacaccgtttttaatcaacctataccattaaataacagcaacttatacctgtctgatggcgcgctctgcgaagcggtaacgcgtgaaggtgctggctgggatagcgattttctagccagtattggtcagcagttaggaacggctgaatcccttgaactggggcggctggcgaatgtgaatccgcctgaattattgcgctacgatgcgcaaggacgccgtctggacgatgtgcgttttcaccccgcctggcacctgctgatgcaggcgctatgtaccaatcgggtgcacaatcttgcctgggaagaagacgctcgctccggcgcatttgtggcgcgcgcggcgcgttttatgttacatgcgcaggttgaggcagggtcgttatgtccgataaccatgacctttgccgccacgccattgttgttacagatgttacccgcgccgtttcaggactggaccacgccgctattgagcgatcgctacgattctcacttattgccaggtgggcaaaaacgcggtttgttgattggcatgggaatgacggaaaagcagggcggttccgatgttatgagcaacaccacccgtgcagagcgtctggaagatggctcttatcggctggtggggcataaatggtttttctcggttccgcaaagcgatgcgcatctggtgctggcgcagaccgcgggtggtctgtcctgcttttttgtgccgcgctttttgcctgacgggcaacgcaacgcgattcgcctcgagcggctgaaagataagctgggtaatcgctctaacgccagttgcgaagtggagtttcaggatgccattggttggttgttggggctggaaggggaaggaattcgtctgatcctgaaaatgggtgggatgacgcgttttgattgcgccctgggtagccatgccatgatgcgccgtgcattttcgctggcgatttatcatgcacatcaacgccatgtttttggtaatccattgatccaacagccccttatgcgtcatgtcttaagtcgcatggcacttcagcttgaagggcaaacggcgttgctgtttcgtcttgcgcgagcgtgggaccggcgtgccgatgccaaagaagccctgtgggcgcgtttatttacgcctgcggcaaaatttgtgatctgcaaaagaggtatgccgtttgtggccgaagcgatggaggtgctgggcggcattggttattgcgaggagagtgagctgccgcggctttaccgggagatgccggtaaacagtatttgggaaggttccggcaatattatgtgcctggatgtgttgcgcgttctcaataagcaagcgggcgtatacgacttattgtcggaagcatttgtggaagtgaaagggcaggatcgctattttgatcgcgcggttcgtcgtttacagcagcagctgcgtaagccagctgaagaactggggcgagagattactcatcagctattcctgctgggctgcggtgcgcaaatgttgaaatatgcttctccgccaatggcgcaggcgtggtgtcaggtgatgttagatacgcgcggcggcgtacggttgtcagagcagatccagaatgatttattgctgcgggcgacggggggagtgtgtgtgtaagcgtatacgactgatggcgacgctggtttcgattaactaaatgaaatatgtgaaaattgtaggccggacaaggcgctcgcgccgcatccggcattgttcatttgctgtagatgacactcatgcatacagtatcgcctgtacgcgccagttatcaggctgctggtcttcgtacatggtaataatgcggtaccatgacgcaccttgttcatcggcctttaacgccacgatacgttccacgtcctgcggatcccctgaaatattgctaactgagatctgacctatttcattcaggcccgtcacgcagtcagcactggcgaattctgcagactgtgccgtggcgctcgcaggataagtcactaattgcagcgagggtgaggcaagtaattgtttcatcgtcagctccatttttcgtttccccacatgttgcagggcattccatcgcggtaataaacgcccaggcttccagccggtaatttattgtgcacaggtaaacgcatagggacgcaaagcaatgtaaagctgactatgtaagttgtctgatttatttacggtacaaaatggcttgtgaataccactgtcctgtcacgatggtttcgtccaccatgacgacaacgtaataatcagcttttgcagcgacagctttcgctttgatttctgctaatgcgtcatccggagaaccccgaaccatcgtgcttacgctacctattcgctgtaacccttgcgtctggtcgcggcgaatctcttgcggatggtccgttactggcggtgctggctgtggcgtaccttgcagtgcgctacaggcacttaacatcaacaccaataataaactggcaaaccggtaaataacgctattacgtttcctgctaaccatagtgtagtgccttattaatttaactttgggggaatgttcccgaattgttacctggtacgcgattttcgaatgaaaacgtgacgaaagcgtaacccacatctcaacattatgaactaataccgccagcagaaacttgtgctaaggatttcttcatgtcataccagacaaaaaggagagacagatgattgaaatagaatcacgcgagctggcagatattcccgttcttcatgcttatcctgtcgggcaaaaagataccccgttaccgtgcgtaattttttatcacggctttacttcatccagtctggtgtatagctattttgccgttgcgctggcgcaggctggtttgcgggtgatcatgccggatgcgcccgatcacggtagccgttttagtggtgacgcagcgcggcggttaaatcaattctggcaaatcttgctacaaagtatgcaggaattcactactttacgtgcggcaatagccgaagaaaactggctgcttgatgaccgtctggcagtcggtggcgcgtcgatgggcgcgatgacggcactggggattaccgctcgccaccccacggtgagatgtaccgccagcatgatgggatcgggctattttacatcactcgcccgttcactgtttccaccgctgatacctgaaacggcagcacagcagaatgaattcaataacattgtcgcgccactggcagagtgggaagcgacaaaccacctggaacaacttagtgacagacctctactgctgtggcatggcctcgacgatgacgttgtgcctgccgacgaatcactacgtttgcagcaggccttaagcgagacgggacgggataaactgctaacctgttcatggcagccaggcgtgcgtcaccgcattacgcctgaggcgttagatgctgccgtgacatttttccgccagcatctttaaacacgcagaatgctgaccccttgcgcttccagttgttgcaggatttccgggttagcatttttgccggtgataagcatatcgatttgatcggcacggctaaaaagcattcccgcgcgttcgccaatcttactgctatcaaccagtaccaccagtttccctaccacgctcagcatcttctgctctgccattgctgtcagcatatcggttttatacaacccttctgcggtcagcccttttccgctggtaaacatccagtgcccggcatagagactgttttcgctgccctgcgggcttaaagtgatggactgacttttgttgtactgtccgcccataatgatcacgctgtcatgttcttgatcgatcaggtaatttgccagcggtagataattagtgatgatttgcactggcttgccacacatttcccgcccaagcagaaacgcggtggagccgcagttgatgactacgctttcgcccggattaaccagctgcgaggccgctttagcgatacgtactttttcatcgtgattctgcgcctgatgcagattcatcggcgtccagcgcgggcgctgttgggtaatagcttctgcgccattgcgcacttttttcagtttgccgctttcgtcaagtttattgatatcgcgtcgcgcagtggcaggcgaaattcccagacgctcaacgactttctcaacggtcacaaagcccaattgtgcgagcatttccaggaggatttgatgtctttgtgcttcagtcatgagctattccgataaaatttgatttttttagatgatatttgaaatagccaggaaatactacgccggatagcgcgaacttctccacgctacccggtataaacgacagattacaggaatgacttgaacggcagatccggttcaatagtgaagcaatcatcgaaaccgcgcggatagtggtactcgaagttgtctttatccagcggccaggtaaatttgccacccacctgccagataaacggcttgaagccatacttcaggcgatcttttttcatctcccacagcacgcggatctcttgcggatcggcctggaagtttgaccagatatcgtggtggaacgggatcactactttcgcattcagcgcttcacccatacgcagcatatcggcgctggtcattttgtcggtgataccgcgcgggttttcgccgtacgatcctaacgccacgtcgatctgatgttcgttaccgtgcttcgcataatagttagagtagtgggagtcgccgctgtgatacagggagccgccaggcgttttgaacaggtagttcaccgcgcgatcgtccatgccatctggcagtacgccagccgctttttgatcggcaggcagggtgatcagtgcagtacggtcgaaagcatcaagcgcatgaatttcaatgtctttcacttttactacatcgcccggtttgaccacgatgcaacgctctttcggtacgccccagccaatccacaaatccacacaggttttcggtccgataaacggtacgtcatctgcacaattctgcatcacggcagcagcgacgttaacgtcgatatgatcgttgtgatcgtgagtcgccagtaccgcgtcgatctggcgaatcgcaaacggatcaagaacaaacggggtggtacgcaggtttggctgcagttttttcacgccagccatgcgctgcatctggtgaccctgtttcattaacgggttaccgtgactttgtttgccagtgccgcaccagaaatcaacgcaaacgttggtgccaccttccgatttcaaccagatcccggtgcagccaagccaccacatcgcaaatgtgccaggagcgacctgttcttgttcaatttcttcattcaaccagctaccccactccgggaaagtgctcaggatccaggattcacgggtgatacttttcactttactcatcgccatttaccttcatgatagttcaattcgaatcaatatgtgattggttttgattaatcctgacactattttttcaggaaggcaatgaccattttttgactttttgccagggaagttgttgttgattttgagtatggaaagatttaatggaatgtgtaattcaattaactaaatgaatttaaatggataattgtttcgttgtgtgaatcccactctatccatgtggaattatttgcgggtcgcgtcacatttaatcataaataatcttgttgtgattacttttgaaaattagagtgagtgcacaacattccgggtgtgtggaatacccggttacctcttcttcaggagatcgttatggagatcctctacaacatctttaccgtgttttttaaccaggtcatgaccaatgccccgttgttgctgggtattgtgacctgtctgggctacatcctactgcgcaaaagtgtcagcgttattattaaaggcacgattaaaaccataattggtttcatgttgttgcaggcagggtccggcatcctcaccagcaccttcaaaccggtggtggcgaaaatgtccgaagtctacggcattaacggcgcaatttccgatacctacgcttcaatgatggcaaccatcgaccgcatgggcgatgcctatagctgggtgggttacgccgtattgttagcgctggcgctgaacatctgttacgtgctgttgcgtcgcattaccggcattcgcacaatcatgttgaccggccacatcatgttccagcaggccgggttgattgccgttacgctgtttatcttcggctactccatgtggaccaccattatctgtaccgcgattctggtttcgctctactggggcatcacttccaacatgatgtacaagccgactcaggaagtgacggatggctgtggtttctccatcggtcaccagcagcagtttgcatcatggattgcctataaagtcgcgccgttcctcggcaaaaaagaggagagcgttgaagacctcaaattgccgggctggctgaacattttccacgacaacatcgtctccacggcgattgtgatgaccatcttctttggtgccattctgctctccttcggtatcgacaccgtgcaggcgatggcaggcaaagtgcactggacggtgtacatcctgcaaactggtttctcctttgcggtggcgatcttcatcatcacgcagggtgtgcgcatgtttgtggcggaactctctgaagcatttaacggcatttcccagcgcctgatcccaggtgcggttctggcgattgactgtgcagctatctatagcttcgcgccgaacgccgtggtctggggctttatgtggggcaccatcggtcagctgattgcggttggcatcctggtcgcctgcggctcctcgatcctgattattcctggctttatcccgatgttcttctctaacgccaccatcggcgtgttcgctaaccacttcggcggctggcgtgcggcgctgaagatttgtctggtgatggggatgatcgaaatctttggttgcgtctgggcggtgaaactcaccggtatgagtgcctggatgggcatggcggactggtcgattctggcaccgccgatgatgcaaggcttcttctccatcggtatcgcctttatggccgtcatcattgtaattgcactggcttatatgttcttcgctggccgcgcgctcgcgcagaagaagatgcagaaaaacaactggcagaacagtctgcttaataaggagttttgattatgaccgtacgtattctggctgtgtgtggcaacggacaaggcagttccatgatcatgaagatgaaagtggaccagtttttaacccaatcaaacattgaccatacggtaaacagctgcgcggttggcgagtacaaaagcgagttgagtggcgcggatatcatcatcgcttctacgcacattgcgggcgaaatcaccgtgaccggcaacaaatacgtggttggcgtgcgcaacatgctctctcctgccgactttggcccgaaactgctggaagtgatcaaagagcatttcccgcaggatgtgaagtaaggacgcgccatgaaattacgtgattcgctggcggaaaataaatccatccgcctgcaggctgaagcagagacatggcaggaagcggtgaaaatcggcgttgacctgctggtggcggcagatgtggtagagccgcgttactaccaggcgattctggatggcgttgaacagttcggtccttatttcgttatcgctccgggcctggcaatgccgcacgggcgtccggaagagggcgttaagaaaaccggtttctctctggtaacgctgaaaaagccgctggagttcaaccacgatgacaacgatccggtggatatcctcatcaccatggcggcggtcgatgccaatactcaccaggaagtgggcatcatgcagatcgtcaacctgtttgaagatgaagagaattttgaccgtttacgcgcctgccgtaccgagcaggaagtactggatctcattgaccgcaccaacgccggcagcttaagaaggaattgaacatgtcattaccgatgttgcaagtcgcgctggacaaccagactatggatagcgcctacgaaaccactcgcctgattgccgaagaagtcgacattatcgaagtgggcaccattctgtgcgtgggcgaaggcgtgcgtgcggttcgtgacctgaaagcgctctacccgcacaaaatcgtactggcagacgccaaaattgccgatgcaggcaaaatcctttcgcgtatgtgcttcgaagccaacgctgactgggtgacggtaatttgctgtgcggatatcaacaccgccaaaggcgcgctggacgtggcaaaagagtttaacggcgacgtgcagatcgaactgaccggttactggacctgggaacaggcgcaacagtggcgcgatgcaggcattgggcaggtggtttatcaccgcagccgtgacgcgcaggccgcaggcgtggcgtggggcgaagcggacatcaccgcgatcaaacgtctttccgatatgggcttcaaagtcaccgtcaccggaggcctggcgctggaagatctgccgctgttcaagggtattccgattcacgtctttatcgcgggccgtagtatccgtgatgccgcttctccggtggaagccgcacgtcagttcaaacgttccatcgctgaactgtggggctaaggagcggatatgttgtccaaacaaatcccgcttggcatctatgaaaaagcgctccccgccggggagtgctggctggaacgcctgcaactggcaaaaacgttaggcttcgattttgtcgaaatgtcggtagatgaaactgacgatcgcctgtcgcgcctcaactggagccgcgagcagcgtctggcgctggtcaatgcgattgttgaaaccggcgtgcgcgtgccgtccatgtgcctttctgctcatcgtcgtttcccgctgggcagtgaagatgacgcggtgcgggcgcaggggctggagattatgcgtaaagctatccagttcgcccaggatgtcggtattcgcgtgatccagctggcgggctatgacgtttactatcaggaagccaataacgaaacgcgtcgtcgtttccgtgacggcctgaaagagagcgttgagatggcaagccgcgcgcaggtgacgctggcgatggagatcatggattatccgttgatgagctccatcagcaaggcgctgggatacgcgcactatctcaacaatccgtggttccagctctacccggatatcggcaacctgtcggcgtgggacaacgatgtgcagatggagttgcaggccggaatcgggcatatcgtcgcggtacatgtgaaagacaccaaacctggcgtcttcaaaaacgtgccgtttggcgaaggtgtagtggatttcgaacgttgtttcgaaacgctcaaacagagtggctattgcgggccgtacctgattgagatgtggagcgaaacggcggaagacccggcggcagaagtggcgaaagcgcgtgattgggtgaaagcgcgcatggcgaaagcgggcatggtggaggcggcataatgcaaaagctaaaacagcaggtatttgaagccaacatggagctgccgcgctacgggctggtgacctttacctggggcaacgtcagcgctatcgaccgcgaacgcgggctggtggtgatcaagcccagcggcgttgcctacgaaaccatgaaagcggccgatatggtggtggttgatatgagcggcaaggtggtggaaggggagtatcgcccatcttccgacactgcgacgcatctcgaactctaccgtcgttacccgtcgcttggtggcattgtccatacccactccactcatgccaccgcatgggcgcaggcggggctggcgatcccggcgttaggcaccacgcacgccgactacttctttggcgacattccgtgtacgcgcgggttaagcgaagaagaggtgcagggcgagtatgaactgaacaccggcaaagtgattatcgaaacgctgggcaacgccgagccgctgcatacgccgggaattgtggtgtatcagcacgggccgttcgcctgggggaaagatgctcacgatgcggtgcataacgcggtggtgatggaagaagtggcgaaaatggcgtggattgcccgcggcattaacccacaactcaatcacatcgacagcttcctgatgaataaacacttcatgcgtaaacacggtcctaacgcttattacgggcagaagtagaacacgcgctgcggaaatttccttcctcgggagataactggtctaattccgcagccgtttttcaaaaaaaagccccctgcgaagggggcaaagcaaactatggcaatgtttcgttggttatacctggtgctagcgataaatatccgcgctggcgtgcatattgccgttactccccggttcccgcatcagaattacgtggtagtacgttgcgccttgcgcatctgtttcttcatttaatgcctgacgtgcttcgctttcagtggcgaaattatgattgatataaatcacgcctaagctttgcacatcgtccatatttctggcctggtggttattaatttcaatggctgcccatgtatttgcacttagcaaaagcacagccagaagggctaaaacacgactgaacatagatacctcctcgacggctgactttgtgtgctctcctctgtgatgatcttctgatttaattttaatcaatgataaagaagttgatggtgaccatttctgatgcagttgttcaaaaaaacaccatgatgaagtgtgatgaacttcaaatcagcgtgttagaggttaattgcgaaaggggagatttatttcggctctgcccttgagtttagcgaggcatacaagtactataacgcgtcatttttcagccgacctttaacacgttccttgcctccccgggattcggctgacccagacaggaggctgaataatccgtaaggagcaattcgatgcgtcattacgaaatcgtttttatggtccatcctgaccagagcgaacaggttccgggcatgatcgagcgctacactgctgccatcactggtgcagaaggcaagatccaccgtctggaagactggggccgccgtcagctggcttacccgatcaacaaactgcacaaagcacactacgttctgatgaatgttgaagctccgcaggaagtgatcgatgagctggaaactaccttccgcttcaacgatgccgttatccgcagcatggttatgcgtaccaagcacgctgttaccgaagcatctccgatggttaaagcgaaagacgagcgccgtgagcgtcgcgatgatttcgcaaacgaaaccgctgatgatgctgaagctggggattctgaagagtaatttctgatgaccaaccgtctggtgttgtccggcaccgtgtgcagggctccccttcgaaaggtcagtccatcaggaattcctcactgccagttcgtgcttgagcatcgttctgtgcaggaggaagccggctttcaccggcaggcgtggtgtcaaatgcccgttattgttagcggacacgaaaaccaggccattactcacagtataacggtcggcagtcgcataaccgttcaggggttcatttcatgccacaaggcaaagaacggactgagcaaaatggttttgcatgccgagcagattgaattgatagattctggagactagccatatggcacgttatttccgtcgtcgcaagttctgccgtttcaccgcggaaggcgttcaagagatcgactataaagatatcgctacgctgaaaaactacatcaccgaaagcggtaagattgtcccaagccgtatcaccggtacccgtgcaaaataccagcgtcagctggctcgcgctatcaaacgcgctcgctacctgtccctgctgccgtacactgatcgccatcagtaatcggtcacggtccattaatacgactttgagaggataaggtaatgcaagttattctgcttgataaagtagcaaacctgggtagcctgggtgatcaggtaaacgttaaagcgggctatgctcgtaacttcctggtaccgcagggtaaagctgttccagctaccaagaaaaacattgaattcttcgaagctcgtcgcgctgaactggaagctaaactggctgaagttctggcagctgctaatgctcgcgctgagaaaatcaatgcactggaaactgttaccatcgcgtctaaagctggcgacgaaggtaaactgttcggttccatcggtactcgcgacatcgctgacgctgtaactgcagctggcgttgaagtggctaagagcgaagttcgtctgccgaacggcgttctgcgtaccactggcgaacacgaagtgagcttccaggttcacagcgaagtattcgcgaaagtgatcgtaaacgtagtagctgaataattcgttattcaacgagacgtaaaaacgccgaccattggtcggcgttttgctttctatttttcgtcaggtattagtttcgcaagtagatccattcaccattctcttgtgtccataagtcaggatggtttgctggcgttagatacatacgagcgcaactgatgtctcgctcctgcggcactcgctcgaaacccaaacccgagtagattgcggctgaacttgataaggaacgcagaccaattttcaaatcatggggtaaatcagaatacgcgtttagcaatgcagcaatgatgaatccgagggcattagaaacgcctgtaacagtgcgaagttggtcgatataaagatcgattgttggtagttcagatgaccagcaattaggcatttgggcaggaagggttacaacgtatcctatcgtttggccggtatagtctggagtaccataaccaggtcccaaaaccacttcgtgtattgtgtatttactgttgggttcgaaggattcgacatcttgcaataaatatttcagttctgcggttaacctcgcacccgcgtaagctttattgtatttctgggcgtgaatattatctaatgtagcttcatggttccatccaaaagaattatcaccattcattgtgattccatcgtaagcattacacctcgtcgctaacttattgaatgcttgccagtctgagagatctagtttgtggatctcaacagtacgtctgccatcgcaattatgatctcttccacgatttgaaagtaatgtagcgcgtgcgtattgatgaaattttaattttactggtttgtcggtggacgaaaaacgagataaatatgcaggaaatgaataaatagtcgttggtaatgtcattgtaatgttacctgtttaatgtttttataaatatcgcagctgaatgttcacagaaaaaaatcgatattaataaaaataagtttgttttctgaagtggtgaaaatagcggatggtgaaagatattaatatcaaaaatcgctcattatggatataacgatgcacccggggagaaaatgacttccacgccttacaccgtacattcttgttgtgcggtatgtaattattctacgctgtcggtatcggtgtattcgttaatcagcaggttagccagccacaaaaagccattgagaaaattattgattttacatgggattattatattgctaatccttggtttttaaaaattgtgcatagtgaaaatcaaagtaaaggtgtgcattatgcaaaatcacagcgtctcttagaaattaaccatgcgcacttgcagttaatggaatccttattggatgaagggaagaaacacaatatttttaagccagatatcgacccattgcaggtgaatattaatattgctgcgcttggcggatattatttgatcaaccagcatacgcttggcctggtttatcacatcagtatggtttcaccccaggcactggaagccagacgtaaggtcatcaaagagacaatccttagctggcttttggttgacccttcatctaccgcgcacgaataaaactgccatccggctggcgggtgaacaggacctgttgattattccccgtatcaatggttaagcccgtcaccacgccgctggcgttctggcggattttcaccatctgcccgttttgcaaattactcagcggcttacccgcgccttctacctgcgccattgcatagacatcggtagcgggcagtccgtggtcgcggaacagctgcgccatcgttttaccgggttcgacacggtaagagcgccattgattatcaattccgctatctggctggaatggttgcgtttgggtagtttgcggctgctcttctggctggccttcctgtataggttctggagcgaccggagccacctgatcaggatcattttgtggggtaactaattgcgcccgcagctgttcttctgtcggcggttgtgattgcgactgaatatctaactgcgcttcacgcgtcaccaccggcgcgttgggcgtatcatcagatggaagcagaaatccgaccaccaatacaatggcggcaataatgatcccccgacgatgcatcggcggcagcgggtccatgaagcgaaaattgtccggcgcgtgccagactttctccagggttggttttagttcaaagcgcccgggcatggtttcctcctgctccgcgtcttgttcctcaatcatagcctatgaataagctaacgctatgatgtccgtggtaaacccgcctttattatattcatacgggatattgctattgtttctttttccctgggatttgtcatcattcccgcgacaaagttttacccaaagaagtgtggctgatatgctgcccgctactttataccctaagaaaggaaatacgatgaccaccccaacttttgacaccatcgaagcgcaagcaagctacggcattggtttgcaggtagggcaacaactgagtgaatctggcctggaagggctgctgccagaagcactggttgcaggtattgccgatgcgctggaaggcaaacatccggctgttccggttgatgtggtgcatcgcgcgctgcgtgaaatccacgagcgcgccgatgccgttcgtcgtcagcgtttccaggcgatggctgctgaaggtgtgaaatacctggaagaaaacgccaaaaaagaaggtgtgaatagcaccgaatctggcctgcaattccgcgtgatcaaccagggtgaaggcgcaattccggcacgtaccgaccgcgttcgtgttcattacaccggtaaactgatcgacggcaccgtgtttgacagctccgttgctcgtggtgaacccgctgaattcccggttaatggcgtgatccctggctggattgaagcactgactctgatgccggtaggttctaaatgggaactgactatcccgcaggaactggcatatggcgagcgcggcgcaggcgcatccatccctccgttcagcaccctggtgtttgaagtcgaactgctggaaatcctctaagcagcgcattctgttcccctcgaacgagaggggagcaggcattcagcaataaacccttcagtttgccaaacggcgctattttgtgttgcaaagaccccgtaagcgtgtatttttgtgagctgtttcgcgttatcaccgtgatatgacactcactttaaacataaaattaacattagatctaaatcttagtattcatcccgcgtattgttacctaatatcgatgagtcccgatacagattcgtcgtatcatagactgactaaaggccgtagagcctgaacaacacagacaggtacaggaagaaaaaaacatggtagatcaggtaaaagtcgttgccgatgatcaggctccggctgaacagtcgctacggcgcaatctcacaaaccgacatattcagcttattgccattggcggtgccattggtacggggttgtttatggggtctggcaaaacgattagccttgccgggccgtcgatcattttcgtttatatgatcattggttttatgctctttttcgtgatgcgggcaatgggggaattgctgctttcgaatctggaatacaaatcttttagtgacttcgcttccgatttactcgggccgtgggcaggatatttcaccggctggacttactggttctgctgggttgtaaccggtatggcagacgtggtggcgatcacggcttatgctcagttctggttccccgatctctccgactgggtcgcctcgctggcggtgatagtgctgctgctgacgctcaatctcgccaccgtgaaaatgttcggtgagatggagttctggtttgcgatgatcaaaatcgtcgccattgtgtcgctgattgtcgtcggcctggtcatggtggcgatgcactttcagtcaccgactggtgtggaagcgtcattcgcgcatttgtggaatgacggcggctggttcccgaaaggtttaagtggcttctttgccggattccagatagcggttttcgctttcgtggggattgagctggtaggtacaacagctgcggaaaccaaagatccagagaaatcactgccacgcgcgattaactccattccgatccgtatcattatgttctacgtcttcgcgctgattgtgattatgtccgtgacgccgtggagttcggtagtcccggagaaaagcccgtttgttgaactgttcgtgttggtagggctgcctgctgccgcaagcgtgatcaactttgtggtgctgacctctgcggcgtcttccgctaacagcggcgtcttctctaccagccgtatgctgtttggtctggcgcaggaaggtgtggcaccgaaagcgttcgctaaactttctaagcgcgcagtacccgcgaaagggctgacgttctcgtgtatctgtctgctcggcggcgtggtgatgttgtatgtgaatcctagtgtgattggcgcgttcacgatgattacaaccgtttccgcgattctgtttatgttcgtctggacgattatcctttgctcgtaccttgtgtatcgcaaacagcgtcctcatctacatgagaagtcgatctacaagatgccgctcggcaagctgatgtgctgggtatgtatggcgttctttgtgttcgtggtcgtgttgctgacactggaagatgacactcgccaggcgctgctggttaccccgctgtggtttatcgcgctggggttgggctggctgtttattggtaagaagcgggctgctgaactgcggaaataaccgcattatcatgctggatggcgcaatgccatccagcttttagatcactcacccgccagcgcgcgtgggaacagtacattgttttccagactgatgtgatccatcaggtcatcaatcagttcattaatgccgttatacatcgctttccaggtggtgcaggcttctggcggcggtgtgacgttattggtggtgtgtttaatcacttccagcagttcgcccgcttcatcgtgctcgctttccattacgctgattggccccattgcctggctgcccatgccttgtttgatcatcgggaagaggatctgctcttctttcatcatgtggctggaaagctcttcatgcagcatggtcaggtattttgtcagcccttttggcacgctcggtttgtcggcgtgaacgcgctcgactttagtcgcttgcagaatcagctccggcagttgctcgcggtgacgatcgtggtagcgcacgatgatatggtcgatgatttctgccagcggggcgctacgccagtctttctcaatcggttgttcagcgagctttgccagttcagcttcaatgacctcaacatccagttctttacgtgccgccgcgcgcgccagcgtctgcttaccgccacagcagtaatccatatcatatttacgaaacagagctgaagcgcgaggaatagagagcgccagttcacctaaaggttggtcgcgataagccatagctgatacctcattcttaataagataagatgtattttaaatgcatctttaaggcaaaagctataacccttacgtagcagaggcttatttaactcactgccagcgtgtcaactttctgagacagattcagttaaaggtttttctggttttgctctgaccgcgatgaccacgccaatcactaacagcgcgataccgctcagcgtcattagcggcggcatttgctggcggagtaaaaaggtgtacagcaaacctgccagcgtttcgaaaacaatcagcggcccgagaatcactgtcggtaatagctggctggcgacgttccagcagagtgcgccaacccatgagcaaagcacggctatcgcaaccatcagactaataaacaccagcggacgggggccaaagggtagggagaagtccggcgtttgcgtattcagccagtaacaagcgacgagatagccgataagtgaaaccggcagtgtgaccagcgcctgcgctgttgcccacatcatcggatgtttgtcgggattttcccgcagccagcgggcgttgcgcagggcataccacgcccagcagaccacggaaactaacgccagcacgatgccagaggtataacgtgcccagtcaaaatcggggagtccgtggtttaactcagcaatattcacacacgccaggccgatgccaatacaaatcagtgctggggcgagttttccccacgcgagtttgccgtcgcgctggctataaagcagattggcaaagacaggaatgaccaccggcagggtgccgataatcatcgtggaaacaggcgcgccagtacgttgaatggcactggcaaggcagaagtaatagatgaggttgcccatcatagtgagcatcaaggcggtaagccagtcgcgacgcgccaactgacgcagacgcacgcgtcccagccaggcaatgggcagcgcaattaaccctaacgccagataacgccccatcgactgcaacatcgccgggtattccggcacgatcaacggcccgacaaaaataagcccccacatcaaccctgctaacagggcgtacagcacgccgctaatcattactggcatccattgatctgtcagaagaaagttcaggaagcagacatgattgctcccggcatcccgtcattatcagagaggatgcgggaggatgccactttaattaactagttattaacattaaaaagatggcttacgctttcggctaacgttgtcgttgggtggccaatcaatttgctaagtgttttgctgtcatcaaacagaccgcctttcgatgcgccaacgtcagaatccgccagcatatccgccagtccgtcgggcagtccgacgcttttcagtgccgcggcgaaatcggcttcgctcagattttgataggtaacctgtttgccgctctgtttggtcagctctgccgctaactgtgtcaacgtccaggcactatcgcccgccagttcgtaaaccttgccttcgtgaccggcttcgctaatcacgcgtgccgcagctgccgcataatctgcccgcgttgctgaggcgattttgccatcgcccgccgcaccgataaatacgccgtgttccagtgctgccggggcgctggcgaggtagttttcgctgtaccagccgttgcgcagcagggtgtaaacgatgccagaatcagccagcattttctccgtctcgatgtgctcatcggcgaggccgagcggggaggtatctgcatgtagcaggctggtataagcgataaatttcacgccagccgcctttgcggcattaataacattacgatgctgcggggcacgttgacccacttcgctggaagagatcagcagtagtttttccactccctgaagtgcagatgtcagtgcggcttcatcgccgtagtcagcctgacgcacggtaatgccttgtgctgccagggcttgggcttttgccggattacgaacgatagccactatttggctggcaggaaccgttttcatcaaggattcaataacatagtgaccaagttggccagtggcaccagtaatagcgatcatgggaagtctccatcgttttgtcttgtgtttaaatacgctaacacctaaacttacttttagtaagtacgtacaaaaaggtaagtatgaaatgagtcaggttagcctgtcgcaacaactgaaagagggtaatctctttgcggaacagtgcccgtcgcgcgaggtgttgaaacacgtcaccagccgttggggggtgttgattctggtggcgctacgcgaaggtactcatcgctttagcgacctgcggcgcaaaatcggtggggtgagtgaaaagatgcttgcgcagtcgttacaggcgttagaacaggatggttttcttaaccgtatcgcgtatccggtggtgccgccgcatgtggaatatagcctcacgccgctgggcgagcaggtgagcgaaaaggttgctgcactggcggactggattgagttgaatttgcccgaggtgttggcggtgcgggatgaacgtgcggcataactgccggatgcgctgagcttatctggtctacggtgcatggcttgtagggcggataagatgcgccagcatcgcatccgccaataaatgccggatgcggttgatgatttataggccgaaaaagaagtgttttacttactcaaatccacctgataaatcgcaaacccgatatcatcggtcgcgactttattcatcggatactgccctttctctttaataaacgctgcggctttatctgacggagaggtttcgaaacggatatccagtttcttatcgccagctatcggtgctaaacgccagttgttatctgccgccgggtgaatttcccccgcacgtttcgactcatcagcaatccacgctgccagcaccgagcggttctcatccggtgaagcaaaagcgatatggctgtcgcccgtaccggcaaatttgccgccgtaagcgcgatagttattggtggcaaccaggaacatggcgttcggatcaatcggcttgccattaaaggtcaggttcttaatcctttccgcattggcattaatcatctggcactcgccgtcataacgggcgggctgggtaacatcaatctgataattcacaccatcaataacatcaaagttataagtgcggaaaccatcccagttgatgagtgactgtggtttcgtgctgttgggatcaatctggttaaactgtcccgcggagcactccagccactctttcacctctttaccgctggctttcaccacaatcagcgtattgggatagagataaagatcggcggcattacggaaggtcaactggcctttttccacctccacatagcttgccgggtcatttttgcgaccaccgactttaaacggtgcggcagctgaaagcaccggcagttttgccagatccggatcgccctgaatgtaatgctcgacatacgctttttgcgcgttgttcaccacctgcacggtcggatcgtcctgcaccagcgccagatagctatacatattgtcggcagatttaccgattggcttgctgacgaactggcgtgtggcatcgtgatcggctttgagtgtttctaccagcttgctgtcttccgccgcgagggattttttattagcgatgtcgtaaatcggtcgtgcttccgctttcgcctgcgtcacctgccatttaccgctgtcattactgagttgtaagtcgaccacaccaagatgatcgccccacatgcctggcattaccgccggaacaccattcagcgtgcctttggcgatatcagccccttcgatatcagcaaaatctttacctgggaaaacggcgtgagcatggccaaacataatggcgttaacgcccggaatttcactgaggtaataaactgagttttccgccatcactttatacggatcggcagatagcccggaatgtgccagaacgacaacaacatcggcacctttctcgcgcatttcaggcacgtatttgcgcacggtttcggtaatatcattcaccgtcactttcccggataaattagctttatcccagcccatgatttgtggtggcacgacgccaatatagccaatcttcagcgtctgtttttttccgtctttatcgaccacttcggtgtctttaattaaatacggtgtaaacattggctgtttggttctggcgtcaatgacgttggcatttacataagggaatttcgctcctgccagcgcatttttcaggtaatccagaccgtagttaaactcgtggttgccaagcgttccgacggtatagtccagcgtatttaatgccttatagaccgggtgaatatcacctgcttttaatcctttcgccgacatgtaatcggccagcggactcccctgaatcaaatcgccgttatcaaccagtacgctgtttttcacttcattgcgggcatcgttaatcaggcttgccgtacgtaccagtccgaatttttccgtggcggtgtctttgtaataatcgaaatccatcatgttgctatgcagatcagtggtttccatgatacgcagatcgaccgtcgctgcattcacactggcggcaatcagcgtggccaggagcgttgcgctaaacttaatcatcagggacatccttttatcatcgggaatacgaaagaaaagggagaataaacgtcttacttatagaacagtgaagaatgccacaattttacgctttgaaaatgatgacactatcacagttggcgcattcattaacgatagggtataagtaaaacaataagttaacaccgctcacagagacgaggtggagaaatgttagatcaagtatgccagcttgcacggaatgcaggcgatgccattatgcaggtctacgacgggacgaaaccgatggacgtcgtcagcaaagcggacaattctccggtaacggcagcggatattgccgctcacaccgttatcatggacggtttacgtacgctgacaccggatgttccggtcctttctgaagaagatcctcccggttgggaagtccgtcagcactggcagcgttactggctggtagacccgctggatggtactaaagagtttattaaacgtaatggcgaattcaccgttaacattgcgctcattgaccatggcaaaccgattttaggcgtggtgtatgcgccggtaatgaacgtaatgtacagcgcggcagaaggcaaagcgtggaaagaagagtgcggtgtgcgcaagcagattcaggtccgcgatgcgcgcccgccgctggtggtgatcagccgttcccatgcggatgcggagctgaaagagtatctgcaacagcttggcgaacatcagaccacgtccatcggctcttcgctgaaattctgcctggtggcggaaggacaggcgcagctgtacccgcgcttcggaccaacgaatatttgggacaccgccgctggacatgctgtagctgcagctgccggagcgcacgttcacgactggcagggtaaaccgctggattacactccgcgtgagtcgttcctgaatccggggttcagagtgtctatttactaaattcagatggcagaaacagtgtatttcctgattctgccatcctgatttctcccaacctaaaaagttataaataaaaagagattgtatttaaagtgcaaaaattcaattgctaataagttacattttaataatgagcgttttttgatagtttacttctatagtgagatatttaatggcgacataaagtaaccaaataaaataaggttgtcatatgttacccaggatcagacacaataattttattggtgcggtggagttatttgtaaagtcttcgtatacaaaaacacattcaaacaatttttttaacaacatccatcatgcatttaagaaaaaagattggatttcgaattatgatagcctgttaactttgagggagttctttcgttgcgcaactcagattgataaaagtggttatcaggtgctttcatcaaaaaatgaaactgttcacgccatggataagtttcttatcagtttcagccttaaagataacggtgccgaatatacaatgacattgcgaggtagtggatttgaatacgaagaaatacccataacaataaatgaatataactcattcatggatttcaaaaaccgtgaatttccgttagaacaaacagacgattgtatgcctgggatattctacagaaaaaacagtctgacataccgaaaaggattaaaggttatattcaccaggcgattggtgacgtgtctttaggttatgccttattggaggatatagtaagcaaattaaaacggggtaaatttgaactccaaataccaggaggtggaattaaagaatgcgatggatggtatatttacgaaaaaataattgatgataattttgccatagtcatagaatctttgggctttgcgcttaaaatctatggaggggatgaacgttttcgtaatggttcctctgttgttttggaggatgaagattactctcttatttataattttctggttaatgcaggttgccaacaagtcgaattagccgaacaagtggatgcgatagtaagtgcgaatctggccgcagatagcgatattaccaaagaaaagatttgcgagaaatataaatcgaccattgaggcgtttaaaaaagagcaactagcgttaccagtattagttcggcgtaagaactcagagacttaattcccctatcccatagataacgataggggaaaattatttttgcagaatttatgttattgccattatttgagcaacttttgcagcaggtccatcacttgctgcacctcttccggtgtgagcgccccgtctttggcccattgcacgcgaccatccttatccagcaccactacagcggaactttcttcatccagctgccaggcaccgagcgcgacgccattgctatcgacaataaactgcgaccagggataaagctttttattactctccagactgctgcgcacaaacatccctgaacccggaatcgcgtcgtcggtgttaacaatggtggtggtctggtaacgatcgtgcggtaacttcgctgatttaatcgcttcaatcagcgtcgcgtttttctcttttgcagaggtgcgaccagcaatatgttgcagtactcgcacttttcccactaactgcgcgctgttccaggttttgtagctaaactgatctttatcaagcaccaactcgccccgatcggtaatgccaatcggcggcactcgctgaccggtttcgaactgatgtgcggaagccatcatcggcaacagcaggcaggtgagtgccagaatcttgcgtagggtcatggtgtttccttcttatgatatgcaggtgatccgaccacttgggtctgagttttaatcatatgtgctatttatcgaatttcccgcaagtgtgatgccagtttgcggtcaagcgcacaaatcatatgaaaaatgaatgcttatactgaagaccgcgcttcggtaaaaagataattctgaataattgtaacctttaggtaaaaaaagttatacgcggtggaaacattgcccggatagtctatagtcactaagcattaaaatttgcgcctcataatagttgggccgattgtggcaccgcacaggcgtaatactcagcaggagataacaatgaaaattttccaacggtacaacccacttcaggtggcgaagtacgtaaagatcctgttccgtggacggttatacatcaaggacgttggcgcttttgaattcgataagggtaagattcttatcccaaaagtgaaggataagctgcatttgtcagtgatgtccgaagttaaccgtcaggttatgcgtctgcaaacagagatggcttaaccaaagtgctatgcagtaaaaagtgctatgcagtaataagacggctcctgattcaggagccgttgatgtttctgggggttacgcgacgctttcttctttatctttagcgtcaggcagttttggcgaaagggcggtggccttgctgtcgatccgggtcaccagcagctggtcgatgcggtagttatcgatatccaccacttcaaatttgtagccggcgaatttcaccgaatcggtgcgtttcgggatcttacgcagcataaacatcataaagccgccgatggtttcgtagttgcccgactgcgggaactcgtcaatatccagcacgcgcatgacgtcgtcaattggggtgccgccgtcaatcagccatgagttctcatcacgggcgacaatctgctcttccagcccctgaccgaccagatcgcccatcagcgtggtcatcacgtcattgagggtgatgatccccaccaccagcgcgtactcgttcatgatcaccgcgaagtcttcacctgcggttttaaaactttccaacgcctctgaaagggttaacgtatccggcacaatcagcgtgttgcgaatttgtacgccgctgttcagtgccaggctttggttagccagcacgcggttcagcaggtctttagaatcgacataaccgatgatgtggtcaatatcttcattacagacgaggaacttagagtgcggatgttccgccaccttattcttcaggctttgctcatcttcgtggagatcaaaccaaatcacgttttcacgcggtgtcattgaagacggaacggtacgggattccagctcaaagacgttttcaatcagctcgtgttcctgtttacgtaacacgcccgccagcgcaccggcttccactaccgcgtagatgtcatcagaagtgatgtcatctttacgtaccattggcagtttgaaaatacggaagattatgttcgccaggccgttgaagaaccacaccagcggggtgcaaacgtacaggcagaagcgcatcgggttgatgatacgcaaagccacagcttctggcgcaatcataccgatgcgtttcggggttaaatccgcaaacaggataaacatgccagtcactaacgagaaagagagaataaagctcagttgctcagagagctctgccgacatatagcgggagaacaggctgtgaaaagctggagaaaatgccgcatcaccgacgataccgccgagaatcgccactgcgttcagaccgatttggaccacggtaaagaacatgccgggattttcctgcatattcagaacgcgttgggcatttatattgccttcatcagccagcagtttaagtttgattttgcgtgaggcggcaagcgagatctcggacatcgagaagaacgcacttacagcgatcaagcagagtatgactaaaatactgtttaacatatcttatccgacctttcaggccagatcctcggaaggggaagttgattaatttgtgtgaaatacacattgaaagccgattcgaagaaagtgaaccggcattttcagtggctagtatagcgtaaggtactgtaaagccgccagagggttaaaattcagacagctgaaaaatgcaaaactgcctgatacgctatgccgatcaggcctacgcagtccttgcaatatattgaatttggacgattttgtaggcctggtaagtcgtttacgccgcatcaggcatagacaaagagcactttatcaacaaactacatttgtacccgtaacgctatgcttccggcggcagacagacgccaattccgccaattccacagtaaccatacgggtttttatgcagatattgctggtggtcatcttcggcataataaaacggtgtggcgttagcgatttccgtggtgatgtgacgatcgtcatcggcggcaagcatcgccgcctgaaaacgttccagactggcgcgagctgcggcatcctgttctggggtcagcggataaatcgctgaacgatactgcgtgccgtggtcattgccctgacgcattccctgggcgggatcgtgattctcccaaaatacctgtagcaactgctcatagctgatgacggaaggatcgtaaacaatgcgtaccgcttcggcatgacccgtatcaccggagcacacttcccgataagtcggatttggcgtatagccgccggtatagcctgcggcggtgctgtaaacgccgggtaactgccagaacagacgctccacaccccagaaacaacccatcgcaaaaatggcaatctccattccgtcaggtacattggtcattgagtgaccgttgaccgcatgcagcgtggctacgggcatcggggtgttacgtccaggcagggcatcggcgggggaaaccagatgctttttatcaaataaactcatggtgtcgctctcccgaaaatcggtcattggggttaaggttgtaacaagaggcgtatttgcacacaataaccaccgtgaataggtctaaagtaaaacataagaaatatttggggtttagtctgctttttaatccatattactggatttttgttaagccgtttaacggcgttccaggggcaggaaaaaaggatattcaggagaaaatgtgcgctatatccgacagttatgctgtgtaagcttactctgcttaagcggatctgccgtcgccgcgaacgtccgtctacaggtcgaggggttatcgggacagctggaaaagaacgttcgtgcgcagctttctacgattgaaagtgatgaagtgacgccagaccgtcgctttcgcgcacgcgtcgatgatgccatccgcgaaggtctgaaagcgctgggttattaccagccgaccattgaatttgatctccgtccaccgccaaagaaagggcggcaggtattgatcgccaaagtcacgccaggcgtgccggtgttaattggcggcaccgatgtggtattgcgcggcggcgcgcggaccgataaagactatttgaaattgctcgatactcgcccggctattggcacggtactgaaccagggcgattatgaaaatttcaaaaagtccttaaccagcattgcgttgcgtaaaggttatttcgatagcgaatttaccaaagcgcagctgggcattgcgctcggcctgcataaagccttctgggatattgattataacagtggcgaacgttaccgctttgggcatgtgacctttgaaggatcacaaatccgcgatgaatacctgcaaaatctggtgccgtttaaagagggcgatgagtacgaatcgaaagatctggcagaactgaaccgccgactttctgctaccggctggtttaactcggtggtggtggctccacaatttgataaagcgcgcgaaacgaaagtattaccattgacgggcgtggtttcgccgcgaacagaaaacaccatcgaaaccggggtcggttactctacggacgtgggaccgcgcgtgaaagcgacgtggaaaaagccgtggatgaactcttatggtcacagtctgaccaccagtactagtatttccgcgccggaacagaccctcgacttcagctataaaatgccgctgctgaagaatccactggaacaatattatttggtgcagggcggttttaagcgcactgacctgaacgataccgaatctgactccactacgctggtggcttctcgctactgggatctctccagcggctggcagcgtgccattaacctgcgctggagtctcgaccactttactcagggtgaaattaccaataccacgatgctgttttatcctggggtgatgattagccgcacgcgttctcgtggtggcctgatgccaacctggggcgactcgcaacgctactctatcgactactccaacacggcctggggttcagatgtcgatttctccgttttccaggcgcagaacgtctggatccgcacactgtacgatcgccatcgttttgttacacgcggcacgctgggctggattgaaaccggtgatttcgacaaagtaccgccggatctgcgtttcttcgccgggggcgaccgcagtattcgtggctacaaatacaaatctatcgctccgaaatacgccaacggtgacctgaaaggggcctcgaagttgataaccggatcgctggaataccagtacaacgtgaccggaaaatggtggggcgcggtgtttgtcgatagtggcgaagcggtaagcgatattcgccgcagcgactttaaaaccggtaccggggtcggcgtgcgctgggaatcgccggtcgggccaatcaaactcgattttgccgtaccggtcgcggataaagacgaacacgggttacagttttacatcggtctggggccagaattatgagtttatggaaaaaaatcagcctcggcgtggttatcgttatcttactgttgctgggatcggtggcgtttctggtgggcaccaccagcggcctgcatctggtatttaaagcggcggatcgctgggtgccaggactggatattggcaaggtcaccggcgggtggcgcgatctcaccttgtctgacgttcgttatgagcagccaggcgtggcggtaaaagcgggcaatctgcatctggctgtcgggcttgagtgcctgtggaacagcagtgtttgtattaatgatctggcgctgaaagacattcaggtcaacatcgacagtaaaaaaatgcctccttctgaacaggttgaagaagaggaagatagcggtccgctggatctctccacgccgtatcccatcaccctgacacgggtggcactggacaacgtcaacattaagattgatgacaccacggtatcggtgatggacttcacctccggcctgaactggcaggagaaaaccctgaccctgaaaccgacgtcgctgaaaggcctgctgattgctctgccgaaagtggcggaagtggcgcaggaagaagtggtcgaaccgaaaattgaaaatccgcagccggatgaaaagccgctcggcgaaacgctgaaagatctcttttctcgcccggtattgccggaaatgaccgacgtgcatttgccgcttaacctgaacattgaagagtttaagggcgagcagctgcgcgtgacgggcgacacggacatcaccgtgagcaccatgctgctgaaagtgagcagcattgacggcaatactaaactggacgccctggatatcgattccagtcaagggatcgtcaacgccagcggcacggcgcagctgtcagacaactggccggtggacatcactctcaacagtacactgaacgtggagccgttgaaaggtgaaaaagtgaagctgaaaatgggcggcgcgctgcgcgaacagctggagattggcgttaatctttccggtccggtggatatggatttacgcgcccagacgcgactggcggaagccggattgccgctcaacgtggaagtgaacagcaaacagctttactggccgttcactggtgagaagcagtatcaggcggatgatctgaaactgaaacttaccggcaaaatgaccgattacacgctctctatgcgtacggcagtgaagggacaggagatcccgcccgcgactattaccctcgacgccaaaggtaatgaacagcaggtcaatctcgacaaactcaccgtcgcggcgctggaagggaaaactgaactcaaggcgttgctcgactggcaacaggccattagttggcgcggtgagctaacgcttaacggcattaacaccgccaaagagttcccggactggccgtcgaaactcaatggcttgattaaaacccgcggtagcctgtacggcggcacctggcagatggacgtgccggagttgaagctgaccggtaacgttaaacagaacaaagtgaacgttgacggcacgctgaaaggcaacagttatatgcagtggatgatcccagggcttcatctggaactcgggccaaacagtgccgaagtgaaaggcgagctgggggtaaaagatctcaatcttgatgccaccatcaacgcgccggggctggataacgcgctgccggggcttggcggtacagcgaaagggctggtgaaagtacgcggcacggtggaagcgccacaactactggcagatatcaccgcgcgcggcctgcgctggcaggaactttccgtggcgcaggttcgcgtggaaggcgatatcaaatccaccgatcagatcgccgggaaactcgacgtacgcgttgagcaaatttcgcagccggatgtaaatatcaacctcgtcaccctgaatgccaaaggcagcgaaaagcagcacgagctacagttgcggattcagggggagcctgtctccgggcagcttaatctggcaggaagttttgatcgcaaagaagaacgctggaagggaactcttagcaatacccgcttccagacgccggttggcccgtggtcgctgacccgcgatattgcgctggattaccgcaataaggagcaaaaaatcagcatcgggccacactgctggcttaacccgaatgcggaactgtgcgtgccgcaaactatcgatgcgggggccgaagggcgtgcggtggtgaatctcaaccgcttcgacctcgccatgctgaaaccgtttatgccagaaaccactcaggccagcggtatcttcacgggtaaagcggacgttgcctgggacaccacgaaagaggggctgccgcagggcagtatcaccctttcggggcgtaacgtgcaggtaacgcaaaccgtcaacgatgcggcgctgcccgtggcgtttcagacactgaatctgacggcggaattgcgtaacaaccgtgccgaattgggctggaccatccgcctgaccaataacggccagtttgatggacaggtgcaggtgaccgatccgcaaggccgccgtaatcttggtggcaacgtcaatatccgtaacttcaaccttgcgatgataaaccccatctttacccgtggggaaaaagcagcggggatggtgagtgccaacttgcgtctgggtggtgatgtgcaaagcccgcagttgtttggtcagcttcaggttacgggtgtggatatcgatggcaactttatgccgtttgatatgcaaccgagccagcttgcggtcaactttaacggtatgcgctcgacgcttgccggtacagtacggacccagcagggtgaaatctacctgaacggtgatgccgactggagccaaattgaaaactggcgggcgcgggtaacggcgaaaggcagtaaagtgcggatcaccgtgccgccgatggtacgaatggatgtatcgccagatgttgtattcgaggctacaccaaacctgtttaccctcgatggtcgcgtggatgtcccttgggcgcgcatcgtggtgcacgatctgccggaaagcgcagtaggcgtctccagcgatgtggtgatgcttaacgataacctgcaaccggaagagccgaaaacggcgtcgattccgattaacagtaacctgattgtccacgttggcaacaatgtgcgcattgacgcctttggcctgaaagcgcggctgacgggcgatctcaatgtcgttcaggacaaacaagggctgggtctgaacgggcagatcaacatccctgaagggcgcttccatgcctatggtcaggatctgattgtgcgtaaaggtgagttactgttctctggtccgccagatcaaccgtatcttaatattgaagctattcgtaacccggatgctacagaagacgacgtaatcgccggagttcgcgtcactggtctggcggacgaaccgaaagcggagatcttctctgacccggcgatgtcgcaacaagctgccttgtcttatttgctacgtggacaagggctggagagcgatcagagcgacagtgcggcaatgacctcgatgctgattggtttgggggttgcgcaaagtggccagattgtgggtaaaatcggcgagacgtttggcgtaagcaatttagcgctcgacacccagggagtaggcgactcctcccaggtagtggtcagcggctatgtattgccaggtctgcaagtgaaatacggcgtgggtatatttgactctatagcaacactcacgttacgttatcgcctgatgcctaagctatatctggaagccgtgtctggtgtagaccaggcactggatttgctctatcagttcgagttttagcaatgcgaatatttgtctacggcagtttacgccacaaacaaggcaacagtcactggatgaccaatgcccagttactgggcgatttcagtatcgataactaccagttgtatagcctgggccactatccaggcgcagttccggggaacggaacggtacacggtgaagtttatcgtattgacaacgccacgctggccgaacttgatgccttgcgcaccaggggcggtgaatacgcgcgccagttgattcagacgccgtacgggagtgcatggatgtacgtttatcaacgacccgtcgatggattaaagctaattgaaagcggcgactggttagacagggataagtaaccatatgcatacgccaccttcgggtggcgttgttttttgcgagacgactcgcattctgttttgtaattccctcaccttttgcttttctctccgagccgctttccatatctattaacgcataaaaaactctgctggcattcacaaatgcgcaggggtaaaacgtttcctgtagcaccgtgagttatactttgtataacttaaggaggtgcagatgcgtattaccataaaaagatgggggaacagtgcaggtatggtcattcccaatatcgtaatgaaagaacttaacttacagccggggcagagcgtggaggcgcaagtgagcaacaatcaactgattctgacacccatctccaggcgctactcgcttgatgaactgctggcacagtgtgacatgaacgccgcggaacttagcgagcaggatgtctggggtaaatccacccctgcgggtgacgaaatatggtaaagaaaagtgaatttgaacggggagacattgtgctggttggctttgatccagcaagcggccatgaacagcaaggtgctggtcgacctgcgcttgtgctctccgttcaagcctttaatcaactgggaatgacgctggtggcccccattacgcagggcggaaattttgcccgttatgccggatttagcgttcctttacattgcgaagaaggcgatgtgcacggcgtggtgctggtgaatcaggtgcggatgatggatctacacgcccggctggcaaagcgtattggtctggctgcggatgaggtggtggaagaggcgttattacgcttgcaggcggtggtggaataaggtgtgtttatttatcgcgggcataaaaaaacccttactaaccgaagcccggcgttcagggttattacgccagaagaacttatttattctttgcgcgctcgaaggaggcaacgatttcagctttagcggcttctgcgttttcccaaccttcaactttcacccacttgcctttttcgaggtctttgtagtgctcgaagaagtgagcgatttgcgctttcagcagttcaggcagatcgttaacgtctttaatgtgatcgtattctttgctcagcttgctgtgcggaaccgcaaccagtttcgcatcttcaccggcttcgtcggtcattttcagaacgccaaccggacggcaacggatcacagaacccggctgcagcgggtacggagttgggaccagtacgtcaaccgggtcaccgtccagagacagggtgtggttgatgtaaccgtagttgcatggatagaacatcgcggtggacatgaagcggtcaacgaacagtgcgccgctctctttgtcgatttcgtatttgatcggatctgcgttagccgggatctcaataacaacgtagatgtcttccggcagatctttacccgcagggacgttgagtaagctcatgtctgtttcctttaaaaatatgtggcaaacaagtgccgagtattatagccaactcgcgccgaatgtcttcgcttgttttcgtcttcattttcctttttcaccagttttaagacggtatacagagcaggaaaatccataaccgtagccgcatttttcatagtgagatgaaagcgattacaaacttgtgattaacgttttatttacttttttgaagtgtgatgtaacgcaatctgttacataacgaattgtctatagttttttcgcgaacatcttttaaccaataataactaccccgacgaggacaaccctatgtggaaacgcttacttatagtctctgcagtctcggcagccatgtcgtctatggcgttggccgctccattaaccgttggattttcgcaggtcggatcggaatcaggctggcgtgccgcagaaaccaatgtggcgaaaagtgaagccgaaaagcgcggaatcacgttgaaaattgccgatggtcagcaaaagcaggaaaaccagattaaagcggtacgttccttcgttgcacaaggggtggatgcgatctttatcgctccggtggtcgcgacaggttgggaaccggtattaaaagaggcgaaagatgccgaaatcccggtattcttgctcgatcgttccattgatgtgaaagacaaatctctctatatgaccaccgtcactgccgacaacatcctcgaaggcaagttgattggtgactggctggtaaaagaagtgaatggcaaaccatgcaacgtggtggagctgcagggcaccgttggggccagcgtcgccattgaccgtaagaaaggctttgccgaagccattaagaatgcgccaaatatcaaaatcatccgctcgcagtcaggtgacttcacccgcagtaaaggcaaagaagtcatggagagctttatcaaagcggaaaacaacggcaaaaacatctgcatggtttacgcccataacgacgacatggtgattggtgcaattcaggcaattaaagaagcgggcctgaaaccgggcaaagatatcctcacgggttccattgacggtgtaccggacatctacaaagcgatgatggatggcgaagcgaacgccagtgttgaactgacgccgaatatggcaggtcccgccttcgacgcgctggagaaatacaaaaaagacggcaccatgcctgaaaagctgacgttaaccaaatccaccctttacctgcctgataccgcaaaagaagaattagagaagaagaaaaatatggggtattgagggttgctatgcctgatgccgattcgtaggccggataaggcgctcggcgcatccggcgatggtgcactgaagcctgatgcgacgcttaccgcgtcttatcatgcctactgggagcacgctttacaccgggggaaaccatgacgaccgaccaacaccaggagatcctccgcaccgaaggattaagtaaatttttccccggcgtcaaagcgttagacaacgttgatttcagcctgcgccgtggcgaaatcatggcgctgctcggtgaaaacggggcgggaaaatcaacgctaatcaaagcattaactggtgtataccacgccgatcgcggcaccatctggctggaaggccaggctatctcaccgaaaaataccgcccacgcgcaacaactcggcattggcaccgtctatcaggaagtcaacctgctacccaatatgtcggtcgctgataatctatttataggccgcgaacccaaacgcttcggccttctacgccgcaaagagatggaaaagcgcgccaccgaactgatggcatcttacggtttctccctcgacgtgcgcgaaccgctcaaccgcttttcagtcgcgatgcagcaaatcgtcgctatttgtcgggctatcgatctctctgccaaagtgctgatcctcgatgaacccaccgccagtctcgacacccaggaagtggagttactgtttgacctgatgcgtcagttgcgcgatcgcggcgtcagcctgatttttgtcactcactttctcgatcaggtctatcaggtcagcgatcggatcaccgtcttacgcaacggcagtttcgtaggctgtcgggaaacgtgcgagctaccgcagatcgaactggtaaaaatgatgctggggcgcgagctggatacccacgcgctacagcgtgccgggcgaacattgttgagcgacaaacccgttgccgcgttcaaaaattacggcaaaaaaggaacgatcgcaccgtttgatctcgaagtacgccccggcgagatcgtcggtctggctggattgctgggatcaggacgtaccgaaaccgccgaagtgatcttcggtatcaaacctgctgacagcggcacggcgttgatcaaaggcaaaccgcaaaacctgcgatcgccacatcaggcttcggtactgggcattggcttctgcccggaagacaggaaaaccgatggcatcatcgctgccgcctcggtgcgggaaaatatcatcctcgctctccaggcccagcgcggctgctacgtcccatttcccgcaaagaacagcaagagattgccgaacgctttatccgccagcttggcattcgcacaccttcaactgaacaaccgattgaatttctctccggcggcaatcagcaaaaagtgttgctttcacgttggctactgacccgaccgcaatttctgatcctcgatgagccaacccgcggcattgatgttggtgcccacgccgagatcatccgcctgattgaaacgctatgcgccgatggtctggcgctgctggtgatctcctccgaactggaagagctggtgggctatgccgatcgggtgattatcatgcgcgatcgcaaacaggtggcggagatcccgctggcagagctttccgttccggcgatcatgaacgccattgcggcgtaaggagaacagtgtgatgcctcaatctcttccggacaccactacgccaaaaaggcgctttcgctggccgacggggatgccgcagctggtagcactattgctggtgctgctggtcgatagcctggtagccccgcatttctggcaggtggtgcttcaggatgggcgtttgttcggtagccccatagacattcttaaccgtgcagctcccgttgcgttactggcgattggcatgacgctggtgatcgccaccggtgggattgatctctccgtaggggcggtgatggctatcgccggagccacaacggctgcgatgacggtcgcgggattcagcctgccgattgttttgttaagcgccctgggcaccggcatcctggcgggattgtggaacggcatactggtagcgatcctcaaaattcagccgtttgtcgccactctgatcctgatggtcgccgggcgcggcgtggcgcaactgatcaccgccgggcagatcgtcacgtttaactcgccggatctctcatggttcggcagtggatcgctgttgttcctgccaacgccggtcattatcgcggtgctgacgcttatcctgttctggctgttgacccgcaaaacggcgctggggatgtttatcgaagccgttggtatcaacattcgggcggcaaaaaatgccggggtaaacacgcgaatcatcgtcatgctcacttatgtgttgagcgggctgtgtgcggcgattgcgggcattatcgtggcggcggatattcgcggtgccgatgccaacaacgctgggttatggctggagctggacgccattctcgcggtggtgattggcggcggatcgctgatgggcgggcgctttaacctgctactttcggtggtgggggcgctgattattcaggggatgaacaccggaattttgctttcgggctttccgccagagatgaaccaggtggtgaaagcggtggtggtgctttgcgtgctgattgttcagtcgcaacgctttatcagtctgattaaaggagtacgtagccgtgataaaacgtaatttgccactgatgatcaccatcggcgtctttgtgttgggttatctttactgcctgacccagtttcccggttttgcttccacaagagtgatctgcaatatcctgaccgataatgcctttcttgggatcattgccgttggcatgacctttgtgatcctctcaggtgggatcgatctctccgtcggttcggtgatcgcctttactggcgtgtttctggcaaaagtgattggcgatttcggcctctcgccgctgctggcgtttccgctagtgctggtgatgggctgtgccttcggcgcatttatggggcttctgatcgacgccctgaagatcccggcatttatcattacgcttgcggggatgttctttttgcgcggcgtcagctatctcgtttcggaagagtcgattccgataaaccatcccatttatgacacgctctcaagccttgcgtggaaaatccctggcggcggtcgcttaagtgcgatgggactgctgatgttggcggtggtggttatcggcatattcctcgcgcatcgtacccgttttggtaatcaggtatacgccattggcggcaacgcaacgtcggcgaatctgatggggatttccactcgcagcaccactattcgcatttatatgctctccaccggactggcaacgctggcggggattgtcttctcgatttatacccaggccggatatgcgctggcgggcgtaggtgtggaactggatgctatcgcctcagtggtaattggcggtacgcttttgagcggtggcgttggaacggtattagggacgctttttggcgtggcgattcagggactgattcagacttacataaactttgatggcacgctgagttcctggtggacgaaaatcgccatcggtattttgttgtttatttttatagcattacagcgtggattaacggtgctgtgggagaatcgtcagagttcgccagtgacaagagtcaacattgcgcagcaataaaaacgcctctccgtgtggagaggcgcaggagattacgcgtccgggaactcacggataaagcgttcgacatcttcaaccatatggtcgttgccgacaaagaatgaacggcgctggtgcagggtttccgggatgatatccagaatacgctctttgccatcgctcgctttaccgcccgcttgttccgccaggaatgccatcgggttgcactcatacagcaaacgcagtttgccgtccgggtggctggcggtgcttgggtagagataaataccgcctttcagcaggttacggtggaaatccgcgaccagtgaaccgatataacgtgaggtataagggcggttggtggatttatcttcttcctggcagaatttaatgtacttcttcaccccgttcggaaacttaatgtagtttccttcgttgatggagtaggttttgcctttctccgggaagcgcatccgttcctggcacaggcagaaaacgccgagcgaaggatcgtaagtaaaggcgtgaacaccgcatccggtggtgtaaaccagcatggtagaggagccgtataccacgtaacctgccgcaacctgtttgttaccaggctggaggaaatcttcttccgttaccggcgtgccaacaggcgtaacgcggcggtagatggagaaaatggtaccgacagagacgttaacatcgatgttggacgagccatccagggggtccatcagcaccacgtattttgcgtgttcacagccttcaaagacgacaatctcatcttcttcttcagaggcaatgcccgcaacgatatcgcgtgctttcagtgcggctttcagtttttcattagcgaacaagtcgagtttctgctgaacctcgccctgcacgttctcagcaccgctggcacccaggatatcaaccagtcctgctttgttgatatcgcgatggataatcttggcgcccagttttattgccgacagcaaagcagtgagctcaccggtagcatgagaaaactcgtgctgcttttcgacaataaattcacctaacgttttcataaaactttccctgcaatgtttatggagtaaagcgaccgcaacaatcttaacaaataatctcaatgttgcgctcaggtgaatcgcgccagcaaattacggattatcctgaaatgcgtttctcacttgcccgacatatgcgtaaaatgagcggcagattaaaaaaggatagtgacgtatgcgcattcatattttaggaatttgtggcacatttatgggcggtctggcgatgctggcgcgccagttaggccatgaagtaacgggttcggacgccaatgtgtatccgccgatgagcaccttacttgagaagcaaggcattgagctgattcaggggtacgatgccagccagctcgagccgcagccggatctggtgattattggcaacgccatgacccgtggaaatccgtgtgtggaagcggtactggaaaaaaatatcccttatatgtcaggtccacagtggctgcacgattttgtgctgcgcgaccgctgggtgctggccgttgccggtacacacggcaaaaccaccaccgcgggaatggcgacctggattctggaacagtgtggttacaaaccgggctttgtaatcggcggtgtgccggggaactttgaggtttcggctcatctgggcgaaagcgacttctttgttatcgaagcggatgagtatgactgcgccttcttcgacaaacgctctaaatttgttcattactgcccgcgtacgctgatcctcaacaaccttgagttcgatcacgccgatatctttgacgacctgaaagcgatccagaaacagttccaccatctggtgcgtatcgttccggggcagggccgtattatctggccggaaaatgacatcaacctgaaacagaccatggcgatgggctgctggagcgagcaggagctggtgggtgagcagggtcactggcaggcgaaaaagctgaccaccgatgcttccgaatgggaagttttgctggatggcgaaaaagtgggcgaagtgaaatggtcgctggtaggcgaacataatatgcacaatggcctgatggcgattgcagcggctcgccatgttggtgtagcgccggcagatgccgctaacgcgctgggttcgtttattaatgctcgtcgccgtctggagttgcgtggtgaagcgaatggcgtcacggtatatgacgattttgcccatcacccgacggcgattctggcaacgctggcggcgctgcgtggcaaagttggtggtacggcgcgcattattgctgtgctggagccgcgctcgaataccatgaaaatggggatctgcaaagacgatctggcaccttcattaggtcgtgccgatgaagtcttcctgctgcaaccggcgcatattccgtggcaggtggcagaagtggcagaagcctgcgttcagcctgcacactggagtggcgatgtggatacgctggcagatatggtggtgaaaaccgctcagcctggcgaccatattctggtgatgagcaacggcggttttggtgggatccatcagaaactgctggatgggctggcgaagaaggcggaagccgcgcagtaattcggccttagccagatatagtatgcgtaggccggataaggcgttcacgccgcatccggcatttgagcatagtgcctgatgcgacgcttgatgcgtcttatcaggcctacaggtgcaccgtatccggcaaaccatactcacatcaacaacgaaaattacccttcgttctccgctaactcgcgcagatactggaaaatctggcgtgcggatttcggcggcttattcccttctttctctttcttcgcgttgcggatcagagtacgcagttgctgacgatcggcatcgggccacagatttaatacctcagcgatggcgtcatcaccttgatcgatcagacgatcgcgcaggttttccagtttatggaacagcaccacctgctggttgtgacggtttttcagcttatccagcgcctgacgaataggctctacgtcgcgctggcgcagcatcttaccgatgagctgcaactggcggcggcgaccttccatcttaatacgctgggcgagctcaatagccgcgcgcagatccgcatctaacgggatcttatccagcgcgtttttccccagatcaacaatttccgcgccaaggcgttttagctcctcggcatcacgtttaatttcacttttactgacccagataatttcatcgtcttcgtcttcgatgtcatcaccgggaacgtcgtcgagccagtcttcgggctgcttagtcatctcaggctccttaaaaaaagaggctaatgttaccagttaagatgcgcactgaaaaacggttctctgttagacttcagagaaactctctacattatggcacttgcaatgaaagtaatctctcaagttgaagcgcagcgcaagattctggaagaagcagtttccactgcgctggagttggcctcaggcaaatcggacggtgcggaagttgccgtcagcaagaccaccggcattagcgtaagcacgcgttatggtgaagtggagaatgttgaattcaatagcgatggcgcgctggggatcactgtttatcaccagaaccgcaaaggtagcgcatcatccaccgatttaagcccgcaggccattgcccgtactgtacaggcggcgctggatattgcccgttatacctcgccagatccctgtgccggcgtggcagacaaagagctgctggcctttgacgcaccagatctcgacttgttccaccctgcggaagtttccccggatgaagccattgaactggcggcccgcgcagaacaggcggcattgcaggcggacaaacgcatcaccaataccgaaggtggcagctttaacagccactacggtgtcaaagtttttggcaacagccacggcatgttgcagggttactgctcaacgcgtcattcgctctccagctgtgtaattgccgaagaaaatggcgatatggagcgtgattacgcctacaccattggtcgtgcgatgagcgatctgcaaacgccagagtgggttggggccgactgtgctcgccgtactttatcgcgtctgtcaccgcgtaaactctccaccatgaaagcgccagtcatttttgccaatgaagtggcaaccgggctttttgggcatctggtgggggcgatagcgggtggatcggtttatcgtaaatctaccttcctgctggattcgctgggtaaacaaattctgccggactggctgaccattgaagagcatccgcatctgctgaaagggctggcgtcgacgccattcgacagcgaaggtgtgcgcaccgagcgtcgcgatattattaaagatggcatcctgactcagtggctgctgaccagctactcggcgcggaaactggggctgaaaagcaccggacatgcgggcggtattcacaactggcggattgccggacaaggtctaagcttcgagcagatgctcaaagagatgggcaccgggctggtggtgacggaattgatgggccagggcgtgagtgccattaccggtgattattcccgtggtgcagcgggcttctgggtagagaatggcgaaattcagtatccggtgagcgaaatcaccatcgcaggtaatttaaaagatatgtggcgcaatattgtcaccgtcggtaacgatattgaaacacgcagtaatatacagtgtggttctgtgctgttgccggagatgaaaatcgccggacagtaaaaaaactggcgcgacctgccgcgctataaactaaaaaattacacaaaatcattcgcactgcatcgagacggaaagtgaatgagggccggggagcgtactcgcagtacgtgacccggtcgaatgagcgtagtcgtcgatgaggcagtgtgaaggatgaagtgtaaataaaaaaggaactattcttgcagtctcctcgttggtattcagttcggcgtcatttgctgctgatctcgaagacaatatggaaaccctcaacgacaatttaaaagtggtcgaaaaagccgataacgcggcgcaagtcaaagacgcgttaacgaagatgcgcgccgcagcgctggatgcgcaaaaagcaacgccgccgaagctcgaagataaatcaccggacagcccggaaatgaaagatttccgccacggtttcgacattctggtcggtcagattgacgacgcgctgaagctggcaaatgaaggtaaagtaaaagaagcgcaggctgctgcagagcaactgaaaacgacccgcaattcatatcacaagaagtatcgttaattcctcatttccctgttgcctgcactcaggtaacagggaacttatcatcgcaaatgatgcaccacctgattgctgctgccgcgccagatcagggaagggtcttttaaatcctgcacaaatttgccgtcgaccagcacgttaatcaaatcaacaacctgcatttgcgcagcgttgagttcgtcgagtttatagcctgtccacacccagatgtctttacccggacactcggcgcggatgcgttgtaccagtttcagaatatccggcacgttttgcggatgcagcggatcgccgccggagagggaaataccctggcgtttgatacgagtgtcattcagatcgttaatgatctggtcttccattgctttggtaaatggctgaccggaatttacccgccatgtgcttttgttatagcaaccggggcattcatgaacacacccggagacaaacagggtgcaacgagtgccggggccgttgacgatgtcgacaggatagtactgatgataattcattatttcgcctggcttatcagtccgcgtgtaggctgcatccggtaatcaatgcctgatgcgacgctgtcgcgtcttatcagacctggagcaattgccaaatgtaggccggataaggcgtttacgccgcatccggcatttgcttagctcagagtgaagattaacctatctgcccattccccaaatgtttaacgcggcgcttaacttcttcctgcttaccagcgttaaacggacgtgcatccgggctacctaaatatccgcacacgcggcgagttaccgacacacgggaggcgtcatggttaccacatttcgggcaagtgaagcctttgctggtgcactcgaactcaccggtaaagccacactcgtagcactcatcaatcggtgtattggtgccgtaatacggtacatgctgatagctgtaatcccagacatcttccagcgccttcaggttgtgctgaatgtttggatactcgccgtagcaaatgaaaccaccgttcgccagcggcgggtaaggcgcttcaaagtcgatcttgtcgtacgggttcaccttcttctccacatcgaggtggaaactgttggtgtagtaacctttatcggtcacgcccggcaccacgccaaactcagcagtatcgagacggcagaagcgatcgcacaggttttcactcggcgtgctgtagagactgaaaccataacccgtttcttctttccactgatccactgcctgacgcagacgttcaacaatggcgatacctttcgcgcgaagctgctcgttgtcgtaaacatgctcgccgccgaacagcgcgttaatggtttcgtggatgccgatgtaacccagcgaaatagacgcacgaccgtttttgaagatttcagaaacatcatcgtcagcattgagacgcacgccacaagcaccttccatatagaggatcggggccacgcgcgctttcacgccttcgagacgagcgatacgggtcatcagcgccttacgtgccagcaccagacgttcatccagcagcttccagaaggtggcttcatcgccttttgcttccagagcaatacgcggcaggttcaggctgatcacgccgaggttgttacgaccatcgtggatctgctcgccgttttcattttcccacacgccgaggaagctgcggcagcccatcggagttttaaacgaaccggtgactttcactacctgatcgtagttcaggatatccggatacatgcgcttgcttgcgcactccagcgccagctgtttgatgtcgtagttcggatcgccttttttatggttcaggccatcgcgaatcgcaaacaccagtttcgggaacaccgcagttttacggtttttaccgaggcctgcgatacggttacgcaggatcgattcctgaatcaggcgcgattcccagctggtgcccaggccaaaaccaaaggttacaaacggcgtctgaccgttggcggtgtgcagggtgtttacttcgtactccagtgactggaaggcatcgtagcactctttgatggttcgagagttagcgtagccttcggcgtccgggatgttccactcttctgcggtcttgcgatgtttgttgtagctggcagtgacaaacggtgccagcacttcatcgatacggttaatggtggtgccgccataaatatggctggcaacctgagcaataatctgcgcagttaccgcggttgccgtagagatcgacttcggcggttcaatctcggcgttccccattttaaagccctgggtcagcatgcctttcaggtcgatcaacatgcagttgaacatcgggaagaacggtgagtaatcgagatcgtgatagtgaatatcgccacgctcatgtgcctgcaccacgtcacgcggcagcaggtgctgacgtgcatagtgtttagccacgatcccggccagcaggtcgcgctgggttggaatcaccttgctgtctttgttggcgttttcgttgagtaacgaggcgttggtctgctcgaccagaccacggatctcctggttcaggcgaccgcgtttttcacgttcaatgtcgcgatcgtgacggtactcgatgtaagcacgagccagttgtttgtatggacctgacatcagctgattttcaactgcggtctggatctcattgatatccacctggttgcggccctgcatctgctcgctgacaaccgcggcaacagtggcgcaataatcggcatcatcgacttccgctgctttagctgcacgcagaatcgcttctttgatgcgctctgatttaaacggcactttgcagccgtctcgtttcatcacatgcggtgtcatgatcgctccatatttttaagaacaggttatccacagaaattgggaaaggcgttttccggttttttcgtttcgttttccggtgctttccgcaatcgccatccgcttatccacaacgccgcacctttttcgtggggagctgtagtagcaattatagtcgattaatacaacatattgggttgggacgcattttaaagtctatatatagtgctttgcatcaaggatgtttgagctttttttgatgtagctcaaagtaaaaagcagagcgtacggatgacgggcgctacagcgatatgtaaattttttaatgaatttgctggttgaaaaatcaacaaaaacaacatactgacagacaaaaccccggaatgaccggcattaccggggcttagggaagatttacttctgtaaccaccagacagcctcaaaaggccgtaaattcatggcacagggttgtggtgaggcttcttcgtagttatgcatcacaagctgccagttgccgcgcatttgccctgcctgccagggttggatctcacggctaaggttggcaatgaccagcaaggtttgccccttccattcacggcgatagcaccacaatacagggctgtttggcagcagatcctggtaattgccccatgtcaggatggcttcctgcttacgcagtgcgattaacttttggtaggtgtaaaacaccgaggaatcatcggccagcgcggcttctacgttgatttgttgatagttatcgcccaggccaatccacggttcgccagccgtaaacccggcattatcgccgttgctccattgcatgggcgtgcgactgttgtcacgggatttactggcgaggattgccaataactcgtcggcatcacgcccatcgttgcgcagctcggcaaacatattgaggctctctacgtcgcgatagtcagtaatgcgcgtgaaatgcgggttggtcatgccaatctcttcgccctggtagatatacggcgttccctgcatgccatgcagcaccatcgccagcatttttgccgcaggcacgcggtattcaccttcatcaccaaagcgagaaacaatgcgcggctgatcgtggttacaccagaacaaggcattccatgctacgttgtgcattccttgttgccagtggcggaacaatgttttcaacgccacaaagtcaggtttagccagcgtccatttttcaccaccgggataatcgaccttcaggtgatgaaaattaaaggtcatcgacaattcactgcctgtcagagccgcgtatcgctggcaatgctcaaggctggtggaggacatttcacctacggtcattaacccgcgtggcgtaaacacatcgcggttcatctcgtgcaaaaactcgtgtgctcgtggcccgtcggtgtagaagcgacgcccgtcgccgtccaggtcttcagggaaacgcgggtctttggagatcagattcaccacatccaggcgcaacccgtcgaccccacgatcggcccagaactcacagacttttttcagctctgcgcgtaccgctggattctcccagttgagatccgcctgttctggtgcaaagagatgcaaatagtactgttcgctttccgcatgccagcgccacgcactaccgccaaattttgaacgccagttgttcggtggcgtttctggttctccatcgcgccagatataaaactggcggtaagggctttctttgttcagcgcctcgcgaaaccaggcatgttgggtagaggtatggttaaacaccatatcgagaatgatacgaatcccgcgcgattttgcctgcgtcaccagttcgtcaaaatcgtccagcgtgccgtaggtgggatcaatcgccgtatagttcgctacgtcgtaaccgttatcgacctggggagagacataaaagggggttagccagatggcatcaacgcccagtttatgcagatagtccaggtgttggataacgccacgtaaatcgccggtaccgctacccgtggtgtcctgaaaactctttggataaatctggtagataacgccgttttgccaccagtggggaagatgagtcattacgttattcctgcgaatgcgagggggcgcaattgcgccccgaagaaaattaaacaatgtccagcgtgcccaggcggtatttccgctgatagataaacgaggtgagtacaatcgggatgatgatggcgatagccattgccagcgcaaacacctgccagtagctcggttgaatcgagagaattcccggcaggccgcctacgccgatgccattcgccataacgccgttcaggccgcatagcaatcctgccagaccagaaccaatcatcgcgcacagcatcgggaagcgatatttcaggttgatgccgtacattgcaggctcagtgaccccaagccaggcggagatagcggcaggcacggagatctcgcgttcattgtgcttgcggctggaaatgataatgcctatcacggcggagccctgagcgatattcgacagcgcaatcagcggccacactggcgtaccacccatgctttgaatcatctgcaaatcaatagcaagcgtggtctggtgtacaccggtgatcaccagcggggcgtacaggaagccaaacaatgctgcgccaatcggagcaaagctgccggtcatcaggtgacgtaccgcaaaggcaacgccatcgccaatcatgcgaccaaacggaccaatcagcgcatgggcgaggaacaccgcgaggatcagcgaacagacgggtaccaccaccagatagaggtaatccggcacgatgcgtttaaggcgagtttcaataacgcccagcgccagtccggctaacagtgccgggatcacctgcgcctgatagcctactttggcgatgctgaacatgccaaagtcccacacttccggcagctgctgcccgagcagataagcgttcatcagctgtggagaaaccagtgtcactgccaagcacgataccaaggatcggcgttgcgccatttttttcaccgctgaccagcaaataccgaccggcaggtagaagaagatcgcttcaccgatcaaccacagaaaatcgtagatcgtttgcagggaagggtacatttgcgccagcgtctgaccgttgctcatgggcaaatcgccgatcacattgcgaaaaccgaggatcaaaccgccgctaatcaacgcgggcagcaacgggaagaagatcaccgcgaaatgagagatcaactgctcatgccatttcatattatgccgggcggctttttttacctgctctttatcaacctgcgcctgtccggttgacgcaatcagtgcttgatagtaatcacccacgttggtgccaatcaccacctgaaattgcccggcattggtgaaacagcctttcaccatagggagttgctcaatttctttcggtctggcattggccggttggttgaggacaaagcgtaggcgagtaatacagtggctcaccgtcgcaatattgccgcgcccgccgaccagttcaatcaaccgatcgatatccgtttggtttattttgctcatcataaagccccatggcagatgacatttttggttggctgcagaatatattgcgcggaaaaatttaaaaacgggaacgttcccgaaacgcagcgaagatcacaatttatcgttcaggaaacgatcaggacagggtggcggggatgatgatttgttgcggttcgctgcgcccggttacctgcgcgatcaactggcaagccgcctggcgtccagcttcggcgtaaccgggatctacggttacgatctccggatggaggaatttcattaacggcgtattaccgacgctcgccagttgcaaggtgtcgatgcgttgctcttgcaggtatttacttgcgccaagtgccagcgtgtcggttgcgcacagtaaggcggtagtttcaggcgtaatcacttttgcaacgttctcatagccttgcttcatagcaagccctggcagggcggcaacgggatgcagtttatgcgctttgcagaacgccaggtaggcttcgtgacgtcgcttaccggttgtcacgtcactgtgcggcacgccgagataactgatattacgatgcccctggtcatacagccgttgcatcaggattttgattgccccttcgtcgtcataacagaccgaagcaaagccttttgcgtcacgcgccagcagaaccagcgatgactgccagtgggctaacatttcttctgttatgccagtaaaaccgaacagcactacgccgtcgatattacgccgtttcagcactcccaaatgttcggcaactaattgcggggaaaactgactttccatcatgattgggtcgtaaccttgttcatagaacgctggcagcatggtttgaacggcgagattttctgacaacgaatccagacgggtaacaatgatggcgaccactttatcgctttgcccacgcatagcgcgcgcagagcgggaaggggaaaatccatgctgattcatcactgcttcaacacgctcgcgggtgagctggctcacgccgctttcgttattcagcacccgggaaactgtagatttccccacgccgcttaagcgcgcgatatctttgatggtcagccgattttgcatcctgttgtcctgtaacgtgttgtttaattatttgagcctaacgttacccgtgcattcagcaatgggtaaagtctggtttatcgttggtttagttgtcagcaggtattatatcgccatagatgctacgaatattattggattctccttattatttgcggcgcttttttcacttaccggaggttatatggaacctgatcccacgcctctccctcgacggagattaaaacttttccggtaagcccgtcttttcacggcgttaccggatgcgtaaggccgtgacgttttaacgtccctgctcagctttattaccttcaggtaaggcttcgccacgcctgaagacatttctgtactgtttcagacagtgcggagggactccttatgtttaaagaaatttttacccggctcattcgccatttaccttcccgtctggttcatcgtgatccattgcctggcgcgcagcagacagtgaatacggtggtcccgccgtccttaagtgcgcattgcctgaaaatggcggtgatgcccgaagaagaattgtggaaaacgttcgacacccatccggaagggttaaatcaggcggaagtggaatctgcccgcgaacaacatggtgaaaataaattacccgcacaacaaccgtcgccgtggtgggtacatttatgggtctgctatcgcaacccctttaatattttactcaccattctcggcgctatttcttacgccacggaagatttatttgctgcgggcgttatcgcgctaatggtcgctatttctacgttgctgaactttattcaggaagcacgttccactaaagcggcagatgccctgaaagcgatggtcagcaatactgcgacggtgctgcgcgtaattaacgacaaaggcgaaaatggctggctggagatcccgatcgaccagctggtgcccggcgatattataaaactggcggcgggagatatgatcccggcagatttacgtatcttgcaggcgcgggatctgttcgtcgctcaggcgtcgttaaccggtgagtctctgcccgtagaaaaagccgctaccactcgccagccggagcacagcaatccgctggagtgcgacacgctgtgttttatgggcaccaccgtggtgagcggcacggcacaagcaatggtgattgctacaggtgccaatacctggtttggtcaactggcggggcgtgttagtgagcaggaaagcgagccgaatgcctttcagcaagggatcagccgcgtcagtatgctgctgattcgctttatgctggtgatggcagccggtggtgctgttaatcaatggttacaccaaaggcgactggtgggaagcgcgctgtttgcgctttcggtcgcggtaggcctaacgccggaaatgttgccgatgattgttacctcgacgctggcgcgcggcgcagtaaagctgtcgaaacagaaagtgatcgtcaaacatctggatgctattcagaactttggcgcaatggatattctgtgcactgataaaaccggcaccctgacgcaggataaaattgtgctggagaatcataccgatatctccggtaaaaccagcgaacgcgtgctgcatagcgcgtggttgaacagtcattatcagaccggacttaaaaacctgctcgatacagcggtgctcgaaggtacggatgaagagtcagcgcgctcgctggccagtcgttggcaaaaaattgatgagattccgtttgatttcgagcgtcgccggatgtcggtggtagtggcagaaaataccgagcaccatcagctggtttgcaaaggtgcattgcaggaaatcctcaatgtgtgttcgcaggtgcgtcacaatggcgagattgtgccgctcgatgacatcatgctgcgtaagattaagcgggttactgatacgctgaatcgtcaggggctgcgcgtggttgcggtggcgacgaaatacctgccagcgcgtgaaggagattaccagcgggcggatgaatccgacctgatcctcgaaggatatattgcttttcttgatccgccaaaagagacaaccgctccggcactgaaggcattaaaagcgagtggaattaccgtaaaaatccttactggcgacagtgagttagttgcagcgaaagtgtgccatgaagtggggctggacgcgggagaggtggtcattggtagtgatattgaaacgctatctgacgacgaactggcaaatcttgcacagcgtaccacgctgtttgcccgcctgacgccgatgcataaagaacgcattgtgaccttactgaagcgcgaagggcatgtggttggctttatgggcgatggtattaatgatgcgcccgccttacgcgctgcggatatcggcatttctgtggacggcgcggtagatattgcccgtgaagcggctgatatcatcctgctggaaaaaagcctgatggtgctggaagagggggttattgagggacgtcgcactttcgccaacatgctgaaatacatcaaaatgacggcgagctctaacttcggtaatgtgttcagcgtgctggtagcgagtgctttcttgcccttcctgccgatgttgccgttacacttgcttattcagaacctgctgtacgatgtgtcacaggtggcgatcccgtttgataacgtcgacgacgagcaaattcaaaagccgcagcgttggaatccggcggatctggggcgctttatgatcttcttcggaccgatcagctcgatcttcgatattttgacgttttgcctgatgtggtgggtattccatgccaacacgccggaaacgcaaacgctgttccagtcgggatggtttgtggtgggcttactgtcgcaaacgctgattgtgcatatgatccgcacccgccgtgtgccgtttattcagagctgtgcatcgtggccgttaatgatcatgaccgtgatcgtgatgattgtcgggatcgcattgccgttttcaccgctggccagttatctgcaattacaggcgctgccgttaagctatttcccgtggctggttgcgattctggcagggtatatgacattaacccagttggtgaaagggttctatagccgtcgttacggctggcaataaagaataaactgggcacgatagccccgattcagattgtagacaaagtgagttttgttcatgccggatgcggcgtaaatgccttatccggccaacaaattcaataaattgcaggaatcacgtaggcctgataagcgtagcgcatcaggcgattttgcgtttgtcatcagacttaatccgggcatgatagcccggatttccatcaagattagcgacgaacagcgatcgcttcgatctcaatcttcacgtctttcggcagacgggcaacttcaacgcaagaacgtgccgggaaggtggcgttgtgttcggtgaagaaggcttcgtaagtggcgtttacggttgcgaagtcgttcagatcttttacaaacacggtagttttaacgatgtcgcccactttcaggccagcggcttcgacgatcgcttttacgttatccagcgactgacgtgcctgtgcagcgacgtctgccggtacttcgcccgttttcggatttaccgggatctgaccggaggtgatgatcatattgcccagatcaacgccctgtacgtaaggaccgatagctgccggtgcattttccgtcgcgatagttttgctcatgatttctcctttattacagcggtaaaaagtctggctcattatagggagccagacttttattaccaaccgcaattaattggccagcaccacattatgggaaaactctttttcacagtatttgcatttgagcgcgatatcattggcgcgttttcgcacggcaaagctggatgaaaccggttcggcatggctgatacagttgctgttcgggcagaccagcacattgtcgatgcgctccggcagacttgggcgcgatttacccaccacttcatagttgtcgatacggttaaccgtggcttgcggcgcatacaatgccagttgatctacttgatcttcactcaaaaaggtattttcgattttgatcagatctttgcggcccatctcgccagaaggcaggttcagaccaatggtgatgcgctgatccgtttcggtcagcttgaacagactcaacagcttaaaaccgatctgggcggggatatggtcaattaccgtgccgcgtttaatagcttcaacctgcaatttattatcgtgtgtcatctctatttccccttacagtaccagatcgcgattcagaaccagtgccagtaacgcctggcgagcgaaaatcccgttgcctgcctgctggaagtaccaggcgtgtggcgttttatcaacatccgtcgcaatctcatcaacacgcggcagcggatgcagcactttcatattggctttggcgttgtggagatcgctggcgcgaagaacaaactgcgctttcacgttggcgtactcggacgggtccagacgctctttttgcacgcgggtcatgtacaggatgtctacttccgccatcacttcttcaatagagctgtgcagactccatgcgatccctttttcatcgagcatatccagaatgtattggcgcattgccagcgcgtccggcgcgatgaagtaaaaacggttgccgtcgaacttcgctaacgcctgagtcagggagtgaacggtgcggccatatttcaggtcaccaaccattgcgacgtggagattgtccagacgcccctgggtttcctgaatagtgaataagtccagcaaggtttgcgtcggatgttggttggagccatcaccggcattcagtaccggtacattgccggaaaactcggtggccaggcgcgccgcaccttcctgcggatgacgcatcactatcgcatcgacgtaagtgctgataaccgaaatggtatcggccagcgtttcgccctttttacccagtgatgtattggcgctgtcggagaagcccaccacgctggcccccaggcggtgcatagatgtttcgaaagagaggcgggtacgggtagaggcttcgaagaaacagctggcaatgactttgtgcttcaacagctctggttgcgggtttgctttcagtttcgccgctgtcgccagcaccagattaaggtcatccgactaaggtcgtttatggaaatgatatgtttctgatatagcggattagccatcttttatctcctgacgcctgggcaaaaaaaagcccctcgattgaggggctgggaatgggtgatcaacgggaagaaaaacggcaggccagcgtcttttttcagacgcggtaagacaaaatgtcgaacacactgaaccatacatcctcccggcaaattgtccggcattatactcatcgtcagaagcggcgcaagcatttgatgcaatattttgtcagcgcaaacggtttatttgaattaaaagtcaaggtatatgcatttttatttgatgtgattctgcaggggaactgtccttcggtatcaataattgcagacattccctgctttttcctttttcactttcacgcaatcagatatgcattttattccattcatccgacttatagggcggagtgtgaaagcgaacggctaacactattgcttactgctcagggatgcgcgctatcactttaatttcaaaatcaaagcctgccagccatgtaacacccaccgccgtccagtttggataaggtggggcgctaaatatttcatttttcaccgtcatgatgtcttcaaattggttttctggatcggtatggaagctcgtaacatcaatgatatcgtcaaaagtgcatcccgcagctgccagggtcgcatgcaaattatcaaatgccagtctgacttgttgctgaaaatcgggttctggtgttccgtcctctcgacttcctacttgcccggaaacaaacagcaaatcgccggaacgaatagccgcagaataacgatgctcagcatatagtgaatgtcggccagcagggaaaacagcggttctttctaccatttggttatcctcaagatttacgacatgaacagaagatttctctttaccgggagccgcttttagcggacgacgtgagtaaacaaaacccagacatcatggataatggctgggcttaattgagcgtagtcggttattgcgccaaacgcgccatcaatggtatgcatcgcgccggtaacaaaactggcttctggccctgctaaccatgcgaccataccagcgacctcttccggttgcccatgtcttttgatagccatcaaactatgcaacatatcgcgcattggcccgttggcgggattagcgtcggtatcaattggccctggctggacgacgttaatggtgatcccacgcggtccaaaatcacgggccagcccgcgcgccatgccttgcagggcagatttgctggcggcataagcagccatgcctgcaacaggcatacgatcgccattcacggagccgatgattaagatgcgcccgccttcgggcatctgccgggcggcttcaacagaggcatgataaggagcatgaatattgattttgaaaaggcgatcaatatcgtcggcatttaattccagggcctcgccaaagacgccaatacctgcatttaccaccaggatatccaatgcgccgctcttacgaacgacatcaatgacagcgtctctgtcagcactatctgtgaatactgctgtcgctccagtctcttgtgccaggcgtttagcggcatctttcgaccccgcataggtgaatcgtacattggccccatcggtgacgaaacgacgtacgatagcggcaccgataccacgactgccaccgaggatgagaactgtcttacctgtaaaagcgcccataaggactccttgatttattatgtaacatgcattacaaaactgttttaactttctgtcaacaggttttgtaatggtcactaaaaaacaatctcgcgttccaggtcgtcccagacgtttcgctcctgagcaggcaatctctgcggcaaaagtgctttttcaccaaaaaggtttcgatgctgtcagtgttgctgaagttactgattatcttggtattaaccccccgagcctctacgcggcttttggcagtaaagctgggttatttagccgtgtactcaatgaatacgtcggtacggaagctattccgcttgccgatattcttcgtgatgatcgtccggtaggcgagtgcctggttgaggtattaaaagaagcggcgcgcagatatagccaaaacggcggctgcgctggctgtatggttcttgaaggtattcatagtcatgatccacaagcgcgtgatattgccgttcaatattatcacgccgcagaaacgaccatttatgactacatcgccaggcggcatccacaacgcgcacaatgtgtgactgattttatgagtaccgtgatgtctgggctttctgcgaaggcacgagaggggcactctatagaacaactctgtgcaacagctgcaatggcgggggaagcgataaaaactattcttgaggagtgatgcgggccttgacccgaaaggcgggaaagcgcctgccgataagttgtgataagacaataattcacgcgttaaggctagcggaattgattatcttttcgtataacgatagaaatgaaacgttgttttaattaaggagtggaaaagatgatcatcggaaatattcataatcttcagccgtggctaccccaggagttacgccaggcgattgagcatatcaaagcacacgttacggcagaaacgccaaagggcaagcacgatatcgaaggcaatcgactgttttatcttatctcggaagatatgaccgagccgtacgaagctcgccgtgcggagtaccatgcccgctatcttgacattcagattgtgttaaaaggtcaggaaggcatgaccttcagcacgcaacctgcaggcgcgccggataccgactggttagctgataaagacatcgcatttttgccggaaggcgttgatgagaaaacagttattctaaatgaaggtgattttgttgtgttttatccgggggaagtgcataaaccgctgtgcgcagtgggcgcgccagcccaggttcgcaaagcagtagtgaagatgctgatggcgtgatgacttttcgccgtaaataactcaaggtttacggcgagtttgtgaaaagagcgttttttgatatttttttgtgagtaaaatttgtaatgcttagacgttcttattcactcaaggagttcgtcatgagcaaaatatcagatttaaattattctcaacacattacattagccgacaattttaaacaaaaaagtgaagttttaaatacctggcgtgttggaatgaatgattttgcccgtattgccggggggcaggataacagaaggaatattctttctcctggagcatttttagagtttttggcaaagatatttaccctgggttatgtggattttagcaaacgctccaacgaagcgggtagaaatatgatggctcatattaagtcctcatcttattctaaagatactaatggcaatgaaaaaatgaagttttacatgaataatcctgtaggggaacgagcggattcacccaaggtgattatagaaatttcactttccactatcactactatggggactcgtcaaggacatacagccattatatttccacaacctgatggttcgactaaccgttatgaagggaagtcctttgaaagaaaagatgagagttcattacacctgattactaacaaggttctggcgtgttaccaaagtgaagctaacaagaaaatagcgcgtctattaaataataatcaggagttaaataatctacagaaattaaataatctacagaagttaaataatctactgaagttaaataatatacaggggttaaataatcctcaggagttaaataatccgcagaatttaaatgattctcaggagttaaataactcgcaggaattaaatagtccacaggagttaaatgatccgcaggagttaaataattctcaggacttaaataactctaaggtgagttgtacagtttcagttgattctacgattacgggtttattaaaagaaccattgaataatgcattattagcaataaggaacgaacatctgctattaatgcctcatgtatgtgatgaatcgatttcatacttactgggcgaaaaaggtatacttgaagaaatagataagctctacgcattaaatgatcacggaattgataatgacaaagtaggtaacaatgaaattaatgacatcaaagttaacctgtctcatattcttattgattccttagatgatgcaaaggttaaccttacaccggtcatcgattcgattctggagactttttcaaaatccccatatattaatgatgtaagaatactggattggtgttttaataaaagcatgcaatattttgatgatactaaaaagataaagcatgcatgctccgtaataaatcatattaatcttcgcagcgatcagtctaaaatagctgagacattatttttcaatctcgataaagaaccctataaaaatagccctgaattacaggggttgatttggaataagttggttgtatatgtcaatgaatttaacttaagtaatcgagaaaaaacaaatttaatacaaaggctatttgataatgttgagtctatatttaatgaagtacctgtcagcattttagtgaatgatatttttatgaatgatttctttatgaaaaatcctgagatgattaattggtacttccctcagttacttaagagttatgagggtgaaaagatttattttgataatttaaaatatgatttaaatgataatgataaggaatctaataaagaaattttgaagaatcaaccagataatgttatcaaagaaaaactgaataatgaatacaaacttagatttagaatgatgcaaactatcttgcaatcgagagttaatgtattaccatatattaatgaacagcgtttaaataaactaaatccaccggaaaatttacgtatagcaatagaacactttgggtggaagaatagacctatcactgcataaataatgtgatgccgggatggtttccgcatcttatagcgatcagattatttactgagcgtcgcgaccatcaccgctttgatagtatgcatacggttttccgcctgatcaaaaacaatgctggcggcagattcgaagacctcatcagtgacttccataccgccatgtaggccaaattcttccgccattttcttgccaagcgtcgtttggtcgtcatgaaacgcgggcaggcagtggaggaatttgacctccgggttaccggtcaactgcatcatcttgctgttcacctgatattcacgcagcaatgcaatccgttccgcccatttctcttttgcttcccccatcgacacccacacatcggtatagataaagtcagcaccttcaactcccttcgcgacatcttcagtcagcgtaatattcccaccattttgctgtgccagggcgcggcattccgtaaccagcgcagcttccggccagcacgcttgtggcgcgaccagacgcaaatccagaccggtaagcgccgcagcttcgagcatcgaattgcccatgttgttacgcgcgtcacctgcatagaccagcgtcatttcgttgaacgctttgccgggcaaatgctcctgcatggtgagaagatccgccagcagctgcgtgggatggaactcattggtcaggccattccataccggcacgctagcgtattccgccagtgtttcgacaatctcctgaccatagccgcgatactgaataccgtcatacatgcgaccaagcacgcgggcagtgtctttaatcgactctttatgaccaatctggctgccgcttgggccgagataagtaacgcgagcaccctggtcatatgcggcaacttcgaaagagcatcgggtacgagtcgagtctttttcgaagatgagcgcgatgtttttaccagtgagtttggcttcttctttaccgcttttcttatcggctttcagcttcgcggctaactgcagcaggctgttgagttcagctggcgtgaaatcgagtaatttcaggaaatgcttatgataaaacccggacatagatccctcctgtcgtaacgcctcaatgaattaaaattcaatttatatggatgattattcatttgcaagtctaaagcataaatctttgtcacaaaggtggaggcaatgtcagtggtgtgtgacaataagagtatcggcaggacattaagaggaatgagccatggcaaacccggaacaactggaagaacagcgtgaagaaacacgtttgattattgaagaattactggaagatggcagcgatccggacgcgctgtacaccatcgaacaccatctttccgcagacgatctggaaaccctggaaaaagcagcagttgaagcgtttaaactcggttacgaagtgaccgatccagaagagctggaagttgaagatggtgatatcgtgatttgctgcgacatcctcagcgagtgcgcgttgaatgccgatctgatcgatgcccaggttgaacaactgatgacgctggcagagaaatttgacgttgagtacgacggatggggcacttactttgaagatcctaacggcgaagatggcgacgatgaagattttgtcgatgaagacgatgacggagttcgccactaattaagcgtagcgcatcaggcccaggtagttcctgcaacctggtgaatttgtagcccggataaggcattcatgtcacatccggcataaacaaaacgtacgttgttaatgttcgaagcccgcgagttgaacacgcgggcatttttttagagttcgcgcaacatccgcacttcacaatcgacatggcccgtgcagccaagcgcatagtcgatatgctcaaagcccaaatgctcataaagcgcaatggcttcctttaaaaaagcggtcgtttccagatagcagcgtttgaaacccatctctcgcgcctgctccatcgccattaaggccagtttttttgccagccctttgccgcggatagccggaagaaaatacatcttttgcagttcgcaaatatccgactcactcccggttaatggcgctatcccaccgccgccgaccacttcaccctcgtactcaacgacccaatatgcatggccaggctgactatatacttgatacagctcgtcaagattcggatcggcgacggtgtagcctttatcagcggtaagaccgtattcggcggatacctgacgaatgacgcgggcgatagcgaggattatcctgcagcgtcaggcgacgattacaggtgattgcggcgcaatgttattcatagtttaacccaataaaaataaagtaattatacatttgtttaataccactctcttcttacgtacgcaagcgacttataaagtaataaagtttttgccagcctattactgataagagtattgtaacgtaacattaccccctgtctgtatatataagttatatcaatggattttttaatttcagggaatttttatggctcaagttattaatgaaatggatagttccgtcccattcgtttgtttttcatggtacaggtgagagatattttcttatttgtgtggtgaatgtgttgttaacgattataacgctaggtatctatttaccatgggcattaatgaaatgtaagcgttatctttatgctaatatggaagttaacggacaacgattttcttatggaattaccggtgggaatgtttttgttagttgtcttttttttgtttttttctatttcgcaatcttaatgacagtgtcagcagatatgccgcttgttggttgtgttttgactttgttactgttggttttgcttatatttatggcagcaaaaggactgcgtcatcaggccttaatgaccagtctcaacggcgtaagatttagttttaattgctctatgaaagggttctggtgggtgacctttttcttgccgattttaatggccattgggatggggactgttttctttatctcgacaaagatgctacctgccaatagttcaagtagtgttattatatccatggttctgatggcaatagttggtattgtttccattggtatttttaatggtactttattatagtctggtaatgagttttctctggagtaataccagtttcggtatacatcgtttcaaggtgaaattagatactacgtattgtataaaatatgccattctcgcatttttagctttattgccttttctcgctgttgctggttatattatcttcgatcaaatattaaatgcgtatgatagttctgtatatgcaaatgatgacattgagaatttacagcaatttatggaaatgcaacgtaaaatgataatcgcgcagttaatctattattttgggattgctgttagcacaagttatttaacggtgtctttgcgaaaccattttatgagcaacctgtcactgaatgatgggcgtattcgttttcgcttaactttaacgtaccacggtatgctttatcgcatgtgtgcgttggtggtgatatccgggattacgggcggtctggcttatccactgctgaaaatatggatgattgactggcaggcaaaaaatacgtatttgctgggcgatttggatgaccttcctttaatcaataaagaagaacaaccagataaaggcttcttagccagtatttcacggggagttatgccttctttaccatttctgtaagagataaaaaaaggccggatgcatgctccggccttgcgttttcatcactgtgttttgattacagcgcggcgataacagcctgctgttcaatcagtttcgctttcgcttccgcatagccttccagcttctcacgctctttcgcgatgaccgcttccggtgcgcgggcgacaaagccttcgttcgccagtttgttctcgatacggctgatttcaccttcaatcttcgccacttctttcgccagacgcgccagctcatcttctttgttgatgaggccagccatcgggatcagcagctctgcaccgtcgatgatcttcgtaacggaaaccggacctttgtcatcggcaggcagcacggtgatactttccagacgcgccagggtttgcaggaagccacggttttcatttacgcgacgttctgcatccgcgctgcaaccacgcagcagcagctccagcggtttgcccggcgcgatgttcatttctgcacggatgttacgtaccgcaacgatcgcctgtttcagccattcggtgtcggccagtgcggcttcatcaacctgagatgcatcgtactgcgggaacggctgcagcatgatggtgtcggcagtgataccgcaaagtactttcacacgctgccagatggtttcggtgatgaacggaatgatcggatgcgcgaggcgcagcagaccttccagtacagtcaccagcgtatggcgagtaccgcgcagttctgcttcggtgccaccgttcattaccggcttggtcagctcgagataccagtcacagaactggttccaggtgaactcatacagaatgcctgcggcgatatcgaagcggaagctgtccagcgcttcgcggtacgctttgatggtctggttgaactccgccagaatccagcggtccgccagcgacagcgtcatttcgccgccgttgaagccgcaatcctgaccttctgtgttcatcagcacaaagcggctggcgttccacagcttgttacagaagttacggtaaccttccagacgcttcatatcccagttgatgtcacgaccggtagacgccagcgccgccagggtgaagcgcagcgcgtcagtaccgtgcggctcaataccgttcgggaactgcttctcggtgcgcttacggattttgtccgccagctgcggctgcatcatattgccggtacgtttttccagcagttctggcagcgaaataccgtcaaccatatccagtgggtcgataacgttacccttggatttggacatcttctggccttcgtcatcacgaatcaggccggtcatgtaaacggtgtggaacggcacctgcggtttgccattttcatctttgatgaagtgcatggtcatcatgatcatgcgggcaatccagaagaaaatgatgtcgaaaccagataccatcacgctggttgggtggaactgacgcagggcgtcggtattttccggccagccaagggtagagaaggtccacagcgcagaagagaaccaggtatcgagaacgtcttcgtcctgacgcaggacaacatcagcaccgaggttattttctttacgcacttcgtcttcgttgcggccaacataaacgttacccgcttcgtcataccatgccgggatacggtgaccccaccacaactgacgagagatacaccagtcctgaatatcgcgcatccaggagaagtacatgttttcgtactgcttcggtacgaactgaatgtcgccgttctcaaccgcttcaaccgccggtttcgccaggacatcggcacgcacgtaccactggtcggtcagcattggttcgataactacgccgccacggtcgccgtaaggaacggtcaggtcgtgcggtttaatttcttccagcaggccaagcgcgtcaactgcggcaacgactgctttacgtgcagcaaaacgctccagtttctggaactctgcagggatttcgctggaataaacgtcagattcgttacctttggtatcgaacacctgggcgctttcacggatatcgccgtcaaaggtcaggatgttgatcatcggcagggcgtgacgtttacccacttcatagtcgttaaagtcgtgcgccggagtgattttcacgcagccggtgcctttttccatgtcggcgtgttcgtcgccaacgatcggaatacgacggttaaccagcggcagaatgacatatttgccaatcagatctttgtaacgcggatcttccgggttaacggctacgccagtatcgcccagcagggtttctggacgggtagtcgcgaccaccagataatctttaccgtctgcggttttcgcaccgtcagccagcggatagcggatgtgccacatcgaacctttcgattcgcggttttcgacttccaggtcagagatagcggtgcgcagtttcggatcccagtttaccaggcgtttgccacggtaaatcaggtcttctttatacagacgaacgaaaacttctttcaccgcattggacaggccttcgtccatggtgaagcgttcacgctcccagtcgacggagttgccgagacggcgcatctgacgggtaatggtgccgccagattccgctttccattcccagattttgtcgatgaaagcttcgcggccgtagtcgtgacgggttttaccttcttctgcggcaatcttgcgctcaacgaccatctgggtagcgatcccggcgtggtcagtaccgacctgccacagggtgtttttgccctgcatgcgctgatagcggatcatggtatccatgatggtttgctggaaggcgtgacccatatgcaaactgccggtgacgttcggcggcgggatcatgatgcagaaactttcctggctttcatcgccattaggcttaaagtagccctgcttttcccagtgctcgtaaagcggctgttcgatatcttgtgggttatatgtcttttccattatttccaggttgccgtattcaggttgaaaccagccacgcggtaggctttatagcgttcgcgcgccagttgtttcagagaatcttcataaggaacgaagtctaccacttctgtgaaagcggtggcaaaatctgcaaagcttgttcgcagactaatcaatatatcgcgccggctgctgctacgcttttgcggccaggcgatctccaccggtgcaccgccgcgcggtccttctcccgctaaattatgcggaacaaagctttctgccggacgcgcccacagggcttcatccagccggtaagcctgcttttcatcttcacaggcgatgagcacgcgcttaccgctgcgccaacgttctgcggcaatttcacacaccagttgctcaacggcgcttaagccatcgacggtggtgtcattgtccagaaggtagaacgtcgcgtttttcataaatggggcttcttgtggtggatttaaatacgcatcaggtatacaccgcagcgcctgatgcgacgctgttgtgtcttatcaggcctacgagttcagtgctgtgtaggtcggataaggcgttcacgccgcatccggcaataacagccttgcctgacgcaattactcttcgccgttaaacccagcgcggtttaacaggaactgtgccagcaacgctaccggacgaccggtggcgccttttgctttaccagaacgccaggcggtaccggcgatatccaggtgcgcccagttgtacttacgggtaaagcgtgacaggaagcaacctgcggtaatcgccccaccaggacgaccgccaatgttcgccatatcggcaaaattggactccagttgttcctgatactcgtcacccagcggtaagcgccatgcgcggtcaccggattgttcagacgcggcaatcagttcatgggccagcggattatggttcgccatcagaccagtaatatgatgacccagcgcgatcacgcaggcaccggtcagcgtcgccacgtcaatcaccgcttccggctcaaaacgctcaacgtaagttaacacgtcgcacagtaccaggcggccttcagcgtcggtgttcagcacttcaacggtttgaccggacatggtggttaacacatcgcccggacgataggctcgtccgccaggcatgttttcgcagcctgccaacacgccgataacgttaatcggcagttgtagctccgcgaccatccgcatcacgccgtaaaccgctgccgcaccgcacatatcgtacttcatctcatccatgccttctgaaggcttgatcgagataccgccggagtcgaaggttaaacctttacccaccagcacgattgggcgtgcatcttccgacgcgttgcctttgtactcaatcaccgacatcagcgattcgttttgcgaaccctgaccgaccgccagataggaatgcatccccagctctttcatctgctgttcgccgataacgcgggtgatgacattcttgctgtagctgtcagccagctggcgcgcttgtgaagcgaggtaagcggcgttacagatattcggcggcatattgccgagatcttttgctgctttaatcccggcggcaatcgccagaccgtgctggatcgcgcgctcaccgctggtcagttcacggcgggtcggcacgttgaacaccatcttacgcagcggacgacgcggttcgctcttgttcgttttcagctgatcgaaactgtagagcgtctcttttgccgtctcgacagcctgacgcactttccagtagttgttacggcctttaacgtgcagctcagtcagaaagcagaccgcttccattgagccagtatcattcagcgtattaatggttttctgaataacctgcttgtactgacgctcatccagctcacgttctttgccgcaaccaataaggagaattcgctcggaaagtacattcggaacatggtgcagcaacaatgtctgccccggttttccttccagttcgccccgacgtagcagggcgctgatgtacccatcgctgattttatcgagctgttctgcaatcggagaaaggcgacgtggttcgaagacgcccacgacgatgcaggcactccgctgtttctccgggctaccgctttttacactaaactccatgcactacgctcctgaatcttaaagacaacggcggtggctacagatagaattgcaagctttcgtaactcatgtccgctgttgcgatgacttcgtgttaatcttaacgttattacggcattggcacgtcagaacaaaatctgagaggtgaatccgttgagtataattatcttagcgacgatttcgacgactcaagagaataaatgacgtttaagccatgaaacaagctaaaatcctgcaaaagacgagtttttacgggcgtatttaaagtgataatcataagatatctggtgcgggagacgctcaaaagccagctggcgatactcttcatcttgcttttgatcttcttctgtcaaaagttagtgaggatcctcggcgcagcggttgacggcgatattccggcgaatctggtgctctcccttctcgggttgggcgtgccggaaatggcgcagcttatcctgccattaagcctgttcctcgggctgctgatgacgctgggcaaactgtataccgaaagtgaaattacggtaatgcatgcctgcggcctgagcaaagcggttctggtgaaagcggcaatgatccttgcggtattcacggcaatcgtagcggcggttaacgtgatgtgggcgggaccgtggtcatcgcgtcatcaggatgaagtgttagcagaagcgaaagcgaaccctggcatggcggcgctggcgcaagggcaattccagcaagcgactaatggcagctcggtgctgttcatcgaaagcgttgacggcagcgatttcaaagatgtgttcctcgcgcaaattcgaccaaaaggtaatgcacgtccttctgtggtggtggccgattccggacatttaacccagctgcgcgacggctcccaggtcgtcactctcaaccagggaacgcgcttcgaaggcactgcattgttacgtgatttccgcattacggacttccaggattatcaggcgatcattggtcaccaggcggtggcgctcgacccgaacgataccgaccagatggacatgcgcacattgtggaacactgacaccgatcgtgctcgcgcagaactgaactggcgtatcacgttggtattcaccgtgtttatgatggcacttatggtcgtaccgctgagcgtggttaacccacgtcagggacgcgtactgtcgatgctgccagccatgctgctgtatctacttttcttcctgatccagacctccctgaaatcgaacggcggtaaaggtaagctggacccgacgctgtggatgtggaccgttaacctgatttatctggctttagcgattgttctcaacctttgggacaccgtgccggtccgccgcctgcgcgccagtttttcgcgtaaaggagcggtgtgatgcaaccttttggcgtacttgaccgctatatcggtaaaactattttcaccaccatcatgatgacactgttcatgctggtgtcgctgtcgggcattatcaagtttgtcgatcagctgaaaaaagccgggcaggggagttacgacgcgttaggcgcaggaatgtataccttgctgagcgtgccgaaagatgtgcagatcttcttcccgatggcggctctgcttggggcgttgcttggtcttgggatgctggcgcagcgcagcgaactggtggtgatgcaggcttctggttttacccgtatgcaggtggcgctgtcggtgatgaaaaccgccattccgctggtcttgctgacgatggcgattggcgaatgggtcgcgccgcagggcgagcagatggcgcgtaactaccgtgcgcaggcgatgtacggcggctcgttgctctctacccagcaaggcttatgggcgaaagatggcaacaacttcgtctacattgagcgggttaaaggtgacgaagagttaggtggcatcagcatttatgcctttaacgagaatcgtcgtctgcaatccgtacgctatgccgctactgcgaagtttgacccggaacataaagtctggcgtctgtcgcaggttgatgaatctgatctgaccaatccgaaacagattaccggttcgcagacggtgagcggcacctggaaaaccaacctcacgccggacaaactgggcgtggtggcgctggacccggatgcactctctatcagcggtttgcacaactatgtgaagtatctgaagtcgagcggtcaggatgccggacgttatcagctcaacatgtggagcaaaatcttccagccgctatctgtggcggtgatgatgctgatggcgctgtcgttcatctttggcccactgcgtagcgtaccgatgggcgtgcgtgtggtcaccggtatcagtttcggttttgtcttctacgtactggaccagatcttcggcccgctgacgttggtttatggcatcccgccgatcatcggcgcactgttgccaagcgccagcttcttcttaatcagcctgtggctgttaatgagaaaatcgtaaccgaatgaacgaataaagggagcgaaagctccctttattattgttagcaaagtgtgcttcgttcattcctgaaaaataattaaaattcaatatattgcagtggggtgggcatgataagacgcgccagcgtcgcatcaggcaaagacaaatctcgcctgacttaccttcttctcccccccagcaaactccccaacatcccgcgtacaatctgattcgtcacttggcgagcggcgcttttggccattgtttgcaccacaccatctttcttcccgccgcgtggtccggtagtgccgaacaaaatatccttcaatccaccaagaatgccgtcatccaccgctacctctttccctttcgcgggaggattattttgctgctcggtactggcctgaaagcctttttgcaacatctcataggcggattcccggtccacctcatcctcatatttgccatacaccggagagtgattaatcaagccattacgctcatcttccgtcaccggccccatccgcgaacaaggcgcgatcaccatcgcacgctccaccacagaagggcttcctttcgcatccagaaaagagatcaacgcctcgccggtgcccagttcctgaatcgccttttcggtatcaaacgccggattggcccgcatggtttgcgccgctgccttcactgctttctgatcttttggcgtaaaagcccgcaaagcatgttgaacgcgattaccgagctgcccgagcacattatccggaatatcagacgggttttgcgaaacgaaccagacgcccacgccttttgagcgaataagccttatcacctgctcaatcttatccagcagtacctgcggggcatcgttaaacagcagatgtgcctcgtcgaagaaaaacaccagttttggtttctccagatcgcccgcttccggcaattgttcatacaactctgaaagcatccacagcaggctggcggcgtacagtttcggcatctgataaagtttctcggcgctgaggatattgataacgcctttaccgttggcatcggtgcgcatccagtctttgatatccagcatcggctcaccaaagaagtgtgctgcgccttgctgttccagcgacaacagcccgcgctggatggcaccaaccgatgcgctactgatattaccgtactgattctggaaggatttggcgttatcgccgatgtactgggtaattgcccgcagatctttaaagtcgagcagtaacagcccctgatcgtcagcaatgcggaagatgatattcagcacgccagattgcacatcgttgagattcaacagtcgtgccagcaacagcggccccagatccgaaaccgtcgcccgcaccggatggcctttctcgccaaagatatcccacaccaccaccggattggcatgcggttgccagtcattgacgccgatatttttaagccttgcgagcagtttttccgacaccgttcctgcctgcgcgacgccggtcagatcgcctttcacatcagccataaacaccggcacgccgatttccgacaatgactccgccagtttttgcagcgtaacggttttacccgtccccgttgcgccggtaatcagcccatgacggttagccattcccggcagtaaaaacagttctgtgtccggcgtgcgggcaattaacaggggttcactcatgagatatcctccagtttcctgcctggagtataggcaacgtccggcaaagagaatacgtgtaatgaagagaaaataacctaaagcgtgttgccgtgataaatctgatacccgaggtcaacagtgttgtggttgtgatcgttatttttaattttgctcagcaacatttgggcggccatccgaccaatatcaaaacggggagtaattacgctggcgaggcttgggatcatttgcctgccaatctccagcccatgaaaacccgcaatggaaatttgttctggcacggcgaggtttcgctcgcggcacagcagaagcgcacccatcgcaatatcgtcattggtgcaaaatacaccgtctaaatccgggtttgcgctaagggcatcacgcattaactgcattcctaaatgaatggatgagatggcgcgtggattcatgcgtaatggggaaagattatgcagcatcatcgcatcgcaatacccctgataacgctgttcatcgcgggtgtcatctttggaaccgagatacagaattttgtgcctgactcgcttctccagcatggtacacaccatgtcaaaagcggcctgccgattatcaaaaccgacctccatatccagccgttctccctgtacatccatcaattccacgaccggaatggtggctgaacgcagaaatttcaccgtcctgatggtgtgatatttttccgaaagtataatcccgtcaatgttataagagagcaggttaatcaccgactcttcttcggaatcgcgatcgtaattgtaattagcaataagggtctgataattatgctcagaggtgacggattctattcccgcgagaatgtcagcgaagagttgattttgaaatgacggaatcaagataccgagggtataactttgtgcattcaacaacatgccgggagcgcgattagggatataattgatctcttccataattttggcgatgcgctcgcctgtttcctttgccacctttttcggcgagcggatataacgactcacggtcatttttgttacgccagccagcgtagcgatatcctgtaaagaaattctgtgattgcgcataacttctcccaacgtcgggggaatcttcaatcttcccccgaaactacatcacaatattttattctttcagtgcaatacggcgttaatggctaacacgcccagcaaacccataatagaaataagggtttccatcaccgtccaggtacgcaacgtttcaccaaccgtcagattaaaataccctttaaatagccagaagccagggtcgtttacgtgtgacgcgatcacgctgcccgcaccggttgccagtaccattaaagcgggatcggcatgggtaacgttgataatcggcaacaccacacccgcggtggtaatggccgcgacggtggcagagcccagagcgatacgcaacagcgccgcaacagtccagcacatcaataacggcgaaagtgtagttccggtcattaagtgtgaaatatagtgcccgacaccgctatctactaatacctgcttaaacgcgccgccgccagcgataataaacacaatcatcgcgatagcgcctatagaatccccaatgatatccatgatttgctcgatggtgcgtccattacgtcggcccagtgtgaaaatcgcaataacaatggcaataaacagcgcaacggcagggttaccgacaaattcaaagaagaggcgcacggtgttagttttcggtaacgtaatttcacaaacggcggcgatagccatcaggatgaccgggatcacggcagcgaaaatactgttccagaaggagggcatctcctcttcgctaaacagatgaggattaaataagccttccggtggtgctttctcaaagcgagttagcagtttagaaaacagcggtcctgcgacaataactgtcggaatggtaatgataaatccatacagtaaagtcgttccgagattagcctcaaagatagtcgcgatggcagtaggccctggatgtggcggcagaaaacagtgggttacagagagcgctgctaccattggtacgccaacatacaacaggggtaatcctgatgatgctacgatggtaaataccaacggcaacagcaggacaaaacccacttcaaaaaacatggcgaggcccacaaccagaccggtgatcactagcgcccattgcacgcgttttttaccaaaagtagcaatcagcgtagtggcgatacgttgtgccgcacccgtatcagaaatcagcttgcctaacatggccccgaaaccgaggatcattgccagcccgccgagcgtgctgccgataccattttgtatagagtgcaggacggcctgtgcatccatcccttcggcaaatccgacgacggcagctaccagaacgagggcaataaagccgttaactttaaagccgatcatcaggataagaagcagcgcgacgcctgccgcaataatgattaatggcatagtctttatctcttattagtgccagaaaagcagcgctttcgcgctgcacgtaggggggctgttaaacagccactaacatgccgccatcaacaaacaacaggtggccgtttacgaaatcagaggcttttgaagaaaggaacaccgcagcaccaatcagttcctgcggatctccccagcgtgcggcgggggtccgtttgcacaaccaggcggtgaaggcttcgtcctcaaccagtgctttagtcatttctgttttgaaatagcccggcgcaataccgttgacctgaatattgtggcgcgccagctcgacgcacatgccgcgggtgagcatttttaccgcccctttcgatgcggcataaggggtgatggtgtcacgtcccagttcgctttgcatcgagcaaatattaataactttacctgccttgcgttcaaccatgtgacgagttaccgcttgcgataccaggaacacggcggtctggtttactgcgatcacatcattccactcttgttcagggaactcagtaaaaggatgacggcgctggataccggcgttattcaccagcacatcaatggggccgatgtccttttcgatatgttcaacggcggcatcaatttcatgtttatgagtaacattaaaaggtgcggcaacggcctgaataccctcctggtggagtttttctacagcaagttctgcgcgttcggcagtaatatcattaataattatttgtgcgccatatttacccaggccggttgccagtaaaaagccaatgccctgtgctgaaccggtaatcaagatattttttcctgccagtgaaaatagatcgttcattgtattattcctttatttatctcttagaaaacaagctggacttttgctgcctgggttttatcaccggcgaaacgtagcgcctcttccaggtcagtgaagggatattcagcactcagtaaaggcagtggattgataacgccattcgccagccatgacactgcggtattaaattcgctggtaaaacggaaagagcctctgagtgaaatctccttaccaatcaacgtcatcattgggaattctgccatcgcgcctcccatacctacctgcaccattacgccgcgtgcacgagtgacctccagacaggtattcactgatgaaggatgaccggacacttcaaagctgacatcgaaatagcctttttccgctttccagtgatccatgtcgtcgttttgtgggtttacgagcacatccgcccccatctctttgcccagcgaaagggaacggggactcacatcagcacagacaatttccgcggcccccagtgttttcactgcactgacaatcaggcagccaatgggtccaacaccggaaataaatactcgcttgccctgtaactcgccggcctgatgtgcggcatgaatcgcgacggctaaaggttcggcaaaagccataaccttttcgtcagctttggccggataagggacacattgcgacgtttcgaccattttataacgggtaaaaccaccatcaacatgagggaaatacatggcactgccaaaaaaacgcatatctgtacactgattctcgttatgttcaatgcagtatttgcagtgaccgcacggtttagacggattaatggctaccgtttgcccttcatgtaattctgatgagtcgctatgaataactttaccgataacttcatgacctaacaccatcggtgcctttatcatgaaattacctacttttccttcctgataataatgtaaatcggaaccgcaaattccacctcgggttatttgtactaatgttccattattattccaatctatcgtctgctcggtaacggcaacagttttcttgcccgcaacaacgcaggactgtgttttcacttgcataaattcctcactggtcaggtagacacctcggaagcatttaagcggttttaactgtcattatttgtgatgaagatcacgtcagaaaattgttacattactatgttacgcataacgtgatgtgccttgtaattcttatcagtagaaataaaaaaacgtgaaattattatgccgccaggcgtagtatcgcagcaggtaagatgattcaggagattttaaatggcgggtgaaagctttattttgatgggcgtttcagggagtggtaaaacattaattggtagcaaggttgccgcgttattatctgctaaatttattgatggtgacgatcttcatccagccaaaaatatagataaaatgtcgcagggtattccattatctgatgaagatcgacttccctggctggaacgcttaaatgatgcttcatacagtctttataaaaagaatgaaacaggatttattgtctgttcatcattaaaaaaacagtatcgtgatattttacgcaagggtagcccccatgttcatttcctctggttagatggcgactatgaaactattctcgcgcgaatgcagcgtcgggctgggcattttatgccggtagcgttactaaaaagtcagtttgaggcactggagcgtccacaagcagatgaacaggatattgtgcgcattgatatcaaccatgatattgccaatgtcaccgaacaatgtcggcaggctgtgctggcgatacgacaaaacagaatatgtgcgaaagagggcagcgcctcagatcagcgctgcgaatgattttcaaaaatcggctttcaacaccacgcggtaacgcgccttaccgtcgcgcacatgctggatggcgtcgttaattttcgacatcgggaacagttcggtggtcggcgcaaccttgctgcgggcggcaaaacgcatcagcttacgcagctcataaggcgtgccggtagcagaaccagagacgctgcgatcgcccgcaattaacgtaaaggccggaacagacagcggcgtgagaaccgcaccgaccgtatggaaattaccgccataggtcagcgcctcaaaatagggctgccagtcgaggctgacgttgacggtgttgataatgagatcaaactgccccgccagtgctttcagtgcctgcggatcgcggctattcaccactttatcggcacccatcgccagcacttcctgctctttcgccggattagaactaaaggctgtcacctcgcatcccattgcgtgcagaagttttatagcgatatgccccagcccgccaataccaattaccccaacgcggctggtagcagtgatatggtgcatcaacagtggtttaaagaccgtgataccgccgcacaacagcggcccggcggactcgatatcaatattttctggcagtggaatcacccattgccagtccgcacgcaacttctcggcaaagccaccgcgattcataatcgtcggcaccgcaccttgctcgcagttgatctgattaccgctaatacaggcgtcgcagtgaccacagctacgcgccgtccagccaatcccgacacgctgaccgacctgcaaacctttatcctgcgcggcgctcccgagtgccaccacgcgcccaatcacctcatgcccggcaaccagcggatattgtgaaaatccccattcgttatcgatcatcgacagatcggaatggcagatcccgcagtaatccacctgcacttcaacatcttgtggcctcagctcaccgggatcgtactcataaacttccagttcgccgcccgcttcttttgcggcatagctttttatcatcgacattttttggtccttctctggtgttgtttgggaagtgtagagcatggcagggcggggtgcctggagtgtgacaaaggttacacatcgctgtatgcaatgctgaaaatttcagcacttagcgaggtgcgagcaagctggcgcttgcatggtggcgtgcgacaggtataatccacaacgttttccgcatacctcttcagtgccgaagtggcgaaatcggtagacgcagttgattcaaaatcaaccgtagaaatacgtgccggttcgagtccggccttcggcaccaaaagtatgtaaatagacctcaactgaggtctttttttatgcctgaaatccagtgtttatctatctttcccgctatattaactctctcaaggtcaaccgatatcaacgtacatctaccaacatatgttggtacagatgatggtatttccggttcgataatgcttgtaccaacagggagggaatacgatggcattaacagatatcaaagtcagagcagccaagccaacggataagcaatattagctgactgatggtggcggtatgcatctgcttgtccatccaaatggttctaagtactggcgtttgcagtaccgttatgagggaaagcaaaaaatgctggcacttggggtttatcctgaaatcacactagcggatgccagagtacgtcgtgacgaggcgcgtaagctgcttgcgaatggcgtcgatccgggagacaaaaagaaaaatgataaggttgaacagagtaaagcacgaacctttaaagaagtcgcgattgagtggcatggcaccaataaaaagtggtctgaagatcacgcccatcgtgtgctaaaaagtcttgaagataatctttttgcagcgcttggtgaacgtaatatcgctgagttaaaaactcgagatttattagcacctattaaggccgtagaaatgtctggacgtcttgaagtggccgctcgtcttcagcagcgcactacagccatcatgcgctatgcagtgcaaagtgggttaattgattataacccggcacaagagatggctggggcggttgcttcctgtaatcgacaacatcgtcccgcgcttgaattaaagcgcatccctgagttgcttacaaaaatagatagctatactggtaggccgctaacccgatgggcgatagaactcactttgctgatctttattcggtccagtgagctgcgttttgctcgttggtcagagatcgatttcgaagcgtctatatggactatcccaccggagcgggagcctattcctggagtgaaacattcccatagaggctcaaaaatgcgtacaacgcatctagtgcctctttcaacgcaagctcttgcaattttaaagcagataaaacagttttatggggcccatgacttgatatttattggtgatcacgattcgcacaaacccatgagtgagaatacggtaaatagtgcgttacgggtcatggggtatgatacaaaagtagaggtttgtggtcatggctttcgaacaatggcctgtagttcattggtcgaatcaggtctgtggtctcgtgatgctgttgaacgtcagatgagccacatggcgcgaaattcagtgagggccgcgtatatccataaagcagagcatctggaagaacggcgattgatgctacagtggtgggccgattttctggatgtaaacagagaaaggtttatcagtccatttgaatatgcaaagattaataatccattaaaacagtaatcatcccgggcaaatgcccgggattattctaggattattttctttgttaaaaaagacaaacggtattaactgatgtatttactatttaccgctccctgcaggggggattatcagaatccgcggttattcattatttatatacattcaataaaaaagtaacctcataaaaaatcctgtactcacagggtgatgcgggataactgacgtaaggagtgctgcagggatttgatggtcccttgtagactggccccctgaatctccagacaaccaatatcacttaaataagtgatagtcttaatactagtttttagactagtcattggagaacagatgattgatgtcttagggccggagaaacgcagacggcgtaccacacaggaaaagatcgcaattgttcagcagagctttgaaccggggatgacggtctccctcgttgcccggcaacatggtgtagcagccagccagttatttctctggcgtaagcaataccaggaaggaagtcttactgctgtcgccgccggagaacaggttgttcctgcctctgaacttgctgccgccatgaagcagattaaagaactccagcgcctgctcggcaagaaaacgatggaaaatgaactcctcaaagaagccgttgaatatggacgggcaaaaaagtggatagcgcacgcgcccttattgcccggggatggggagtaagcttagtcagccgttgtctccgggtgtcgcgtgcgcagttgcacgtcattctcagacgaaccgatgactggatggatggccgccgcagtcgtcacactgatgatacggatgtgcttctccgtatacaccatgttatcggagagctgccaacgtatggttatcgtcgggtatgggcgctgcttcgcagacaggcagaacttgatggtatgcctgcgatcaatgccaaacgtgtttaccggatcatgcgccagaatgcgctgttgcttgagcgaaaacctgctgtaccgccatcgaaacgggcacatacaggcagagtggccgtgaaagaaagcaatcagcgatggtgctctgacgggttcgagttctgctgtgataacggagagagactgcgtgtcacgttcgcgctggactgctgtgatcgtgaggcactgcactgggcggtcactaccggcggcttcaacagtgaaacagtacaggacgtcatgctgggagcggtggaacgccgcttcggcaacgatcttccgtcgtctccagtggagtggctgacggataatggttcatgctaccgggctaatgaaacacgccagttcgcccggatgttgggacttgaaccgaagaacacggcggtgcggagtccggagagtaacggaatagcagagagcttcgtgaaaacgataaagcgtgactacatcagtatcatgcccaaaccagacgggttaacggcagcaaagaaccttgcagaggcgttcgagcattataacgaatggcatccgcatagtgcgctgggttatcgctcgccacgggaatatctgcggcagcgggcttgtaatgggttaagtgataacagatgtctggaaatataggggcaaatccaccttgtgctgatatgaatacggatattttatacagaatacttttcagtacaagcgactgtattacagtctgccatatatgattacctgtgatcaggaagaataagtggctgaggtttcaaactgtctgccggtatattcctctctcccttaaaaaccataacaggttagttatcttcgtctgtcagcggattgaatggcggtatattttcagtacaaataccggtcatccactgaaaaatacctgcgaaatgacgggcactgatttttctactgacgggctgatgagacgttatgtcactggcggtaataatcagtggcacactgtagcctccctgcacatgaccataatgatgaacaggattggcactgtcgctgaccgacagcccaaggccagaaaagtaaagcatggcgaaatgacgtgagtaccggcgaaggataccatcaagctggccaagaaagttatccagtttactgatgctggcgaggtaacaggcaatttttcggggatactgctccaggtaattattcggctaggagttaaggctgtcacacggatttggatgagaacccatcatgtgcaggaaaattatcttcggagaggatgtatccgccagcgcacgttctgtttcctgtaacaacagtttgtcatctgttttacgggaagcgaagctgcctttcttgaggaaagtggcatgctccgcatcagaagcaataacagagatgcgtgtgtcatgctcccccagttttccttgattggatatccaccatgtgctgtatcctgcttttgctgccagcgccaccacattgttgccggaatcagggttctgctcatagtcataaatcagtgtccggctcagggaagacactgtactggaggctgtcgaggtataatcgtcaataaataaaccgggtgccgtattcagccacggtgtggttggtacgggatagtcatacactgacatataatccctgcgcacactctcaccagtgacaataacaatcgtatcatataacggtgctcccggctggattttccagttgtcagccccgtgctactcagttgttcataacgctgcatttcacgtaatgtgtcagttgtccccacaactgttcctttaaccatccgcaatggccaacggtttacagagcataatacgaatagccgtagagccagccagttacggtggtcgcgatggtgtgtccgccagaaaatcaccacgaataccagaatcgcggcactgaccagaaaatgataaacaggaaacacggggcggttcactttgctttctcctgtagtgttttctgtaggttctgaaccggttctagcggggttgtgaggctgatggcaatcgccgggctcttcctgcatgttacactggtactgcaagagggggccttcgctcctctgacattactcagtattttcactactacaccccatctgccatccataacaaccgattcaccccctcgcgaggcgttgttgcccgtcacccggacagacaccgttatggacttctcttgttgcacgatcgatcaattgttatgcatgctgacaccacaaccccggtgggtatgaccgatgcctttctcactctcttcccggtcatcgtcggccttccccgttattgtggcgtgtcagcaccctcgacggcatttcgatggctgctcagtgttcactcacgttacggcccgcataacccgttgacttcctgaagaagtcgtttcagggagagattcagcccttttgttacctcctggaccgcttcttgtccttccagtcggagcgagagttagccggggcggactttcaccgacggaaagatcgtgcatttcaaggcacacacaacaatatctgcgagcgtgctatccgtccggtcgttatgggacgaaaggcctggttgttcgctggttcactggtggccgggaaccgcgcggcacagataatgagccttctgggaaccgcagtctggagccacatgcttggctgacggacgtcctgacgcgtctgccggagtggccggaggagaggttggctgagttactgcctcttgagggctttaccttcttcgggtaagtgatacctgccgtcaggtgtttgtgcaccgggccataacctgcagttgggaattgaacgcctgacaacaggaaatgagctagagcagtaaacacgcgggctgacaatgggtcagaatatgagttagcccggcgttattcctggggtcagtacttcagatctagcctccggtaccagactagctagcccctacgcaaccaaataaatcaaccatcgtcagagtgcaatcgttcatatacactgtcggtgatgcgctaaaaaatgcgttaatgttgagttcctcgaacccttaccaattaagggacatagccagatacgcaactggctgatgcaagcagtctaatgtctttagatccgctggcctgcgggcatgacaatgtcaaacagtcaaagattgtggcgttgacggtcagtcttggggacaaaaaagctcagtattctcgttggcaaccagataatttaacagttgatgctgaaacgaaataggcatcttggttctgtaatgccagtcagttaagcaactgactggctctttttcggggctgtggggtatttccagggcctctcctttaccactctcgggaaggccctttcccttcttgtcggtaatttcacaagttgtcccatacttgcaagatcgcgcatcagctccggtatacgtcccggtgaagcgccctgcaatgtcatcagcattctcatcaccattccgcatgattctgagaaactcagttgattcggccagtaacctttcagatgttccgccattttaatcatctgatatctcaccagattataagccagtaagacaccccacagctcttgctccacaagctccggctttttacttctcagcgtcagcctgctccgttgcatcgtctgttttatctccctgtatcccagttcgatttcccagcgatgactgtacagatcccccatttctcctccggggaagcgcatggcgtccgtcatcgacgtcagcagatggcagacttttcctttgcgcgtcacggtcagcaggcgggcagtcacttcatttcccagtcccggccacttttttcgtgcctgcgggctggttttcagcttcaccagatgatcgcctttacccagttttctgatctcttcatattgcgctccctttctgagaggtatcatccagtggcggtgttctcccgccaggctccaggcatttaacagtcccagtgagtaataacctttatccattaacgtcagagtgttatcgccggtttgttctataagttgctcagcaagctcattttcgctgttcttcatcgtgccgaaggctgcagccgtcagcagatggctggtcagttccatctggcagaccattttgacctgcgggtagagcgccgggttcccggcatgtgtctggcgggggaaggctgcatcgttctctggtgtatccggtgtgcgccagaacacaccatcgatggccagcagggtcaggccgcaccagtgcggatgcggcgtggcgttatgccagagctgcgctgttttcgtgaacacgcggcggacagcctcacttcccaggcgctggcgggcctgaataacggcactgggggcaacgaaggggcgattgcccggcagcatgatgtccaggcgattcacaatctggtgaagaggttctttacgctcaagcgccatgccaacaatacaccagaccatcatttcgaggggaagacggcgcttgcgtagcgttacagtacctgattcggcaaggcaacgagagatgagttcggggtcgaggtaatcccccagagaagtcagtgggttacgcagagaatcgtaacgggataccagatcaagagcctgtccaatgtgcataaaaaaatccggaaacaagtgagcgtttccggattcttacacagccactggatcggtcaactgatccttaactgatcggcattaatcttggttctggtgtttgtaacaaactatcagctacaaaaatatgctcaatttgtgacatcagtaacaaaacgcgttttgttatgtggattgcttgttttttgatctggtataacaggtataaaggtatacagaaaagcaaagaaatactgcaaaggaaaacagctataacgtaagctaaagtaataacctctcagtctttcctcatttgacgaagggagttttattcaacctgaacggactacgaaaatgagcacaatgaataagtcaatttttgaagcagggttgaactgtgccagtggtggaatatctggcgaacattgttttttgttggtgacccaaaactgtaggtgggtatcagttttatctttcatagagtgaaatatgttaagaagaaatggaggaaaagattgtactgattaggtattgataacaatcaatagtactggcgtatttgaagacaatataattatttctggatattgttgaggctccctaatatttactttaagggctatattagaataacacaggaaacaaatatggcaacagcatggtataaacaagttaatccaccacaacggaaagctcttttttccgcatggcttggatatgtatttgatggctttgattttatgatgatattttacattcttcatattataaaagcagatcttggcattacggatattcaggctactttaatagggacagtggccttcatagccagacctattggaggtggtttttttggtgccatggctgataaatatggtcgtaagccaatgatgatgtgggcaattttcatttactcagtcggaacaggccttagcggtattgctacaaacttatatatgctcgcagtttgccgttttattgttggcttagggatgtctggtgaatatgcatgtgcttcaacttatgcggtagaaagttggcctaaaaatcttcaatctaaagctagtgcttttttggtaagtggtttttctgttggaaatattattgcggcacaaataatccctcagtttgctgaagtatatggatggagaaactctttttttataggcctgttaccagttttactagttctttggatcagaaaaagtgctccagaaagtcaggagtggattgaagataaatataaggataaatcaacatttttgtctgtcttcagaaaaccacatctttcaatctctatgatcgttttcctcgtctgtttttgtctatttggtgcaaactggccgataaacggactacttccttcctacctggcagataatggagttaatacagtggtcatttcaactctgatgacaatagcaggtttaggaacactgacaggtacaatattttttggttttgttggtgataagattggtgtaaaaaaagcctttgtagtcggtctaataacttcatttattttcctttgtcctcttttttttatttctgtgaaaaactcttctcttataggattatgtctctttggattaatgtttacaaatttaggtattgcagggttggttccaaaatttatatatgattactttccaacaaaattaagaggattagggaccggtcttatttataacttaggggcaactggaggaatggccgcacctgtattagctacatacatttcaggatattatggcttaggtgtttcattattcattgttacggttgcattctctgccttattaattttgttagttggttttgatattccaggtaaaatttataaactatccgtggctaaatgattggaggctttatgattaattatggcgttgttggtgttggatactttggcgctgaattagctcgttttatgaatatgcatgataatgcaaaaattacatgtgtatacgatcctgaaaatggagaaaatattgcccgtgaattgcagtgtatcaatatgtcaagcttggatgctttagtctcaagtaaattagtcgattgcgtgatcgtagccaccccaaattatctgcataaagaaccagtaattaaagcagcaaagaataagaagcatgttttttgtgaaaaaccaattgcattaagttatgaagattgtgtggatatggtcaaagcgtgtaaagaagctggtgtgacctttatggccgggcatattatgaattttttcaatggggttcaatatgcacggaagttaattaaagaaggtgttatcggcgaaatattatcatgtcatactaagagaaatggctgggaaaacaaacaagagagactttcctggaaaaagatgaaagaacaatctggtggacatctatatcatcatatacatgagttagattgtgttcagcatttacttggagaaataccagagacggttactatgattggtggaaatttggcccattctggtccaggatttggcaatgaagatgatatgttatttatgaccttggaattcccgtcaggaaaactagcaaccttagagtgggggagtgcatttaactggccggaacattatgtcatcatcaatggaactaaaggctctattaaaattgatatgcaagaaacagcagggtcacttaggattggcggtcagacaaagcattttttggtccatgaaacacaagaagaagatgatgatcgtcggaaaggcaatatgacctcagaaatggatggcgctatagcatatggtcatccaggaaaaaaaacaccattatggcttgccagtttaataagaaaggagacgttattcctccataatatcctctgtggtgcaaaacctgaagaagattatattgaccttctcaatggtgaggcggccatgtcggcgattgctactgctgatgctgccactctttcaagatcgcaggacaggaaagtgaaaatcagtgagatcattaaacatacatcagtaatgtaaaaactatacgcctcttgatttaattcaggaggccttttatgtatgatcaagaattttatcttcgataatctcataattttagcagtgccatttatgataaaaacatcccttaaaaccaatctaatctttttcttcctctgtgtatttgttccccatatggcgtcataatttacgctacgtaatacgggatagttacgatacgcagcgatagcgctaagttttagttaaaatcccccatcagcgggatatggggatctctgggaggttcaggttttagcatcgcgactttaatacgacagacgctggtgacgatgatgccaagtagtgactcttccgaataaggttcccactgaccaattggcgcgcgcttcgcaataaaatctcccttcgcccagtattgggaaaagtagatacattcaaactgtgtacgctgtttcgtctcacagttcacgacattgctggccgatgagctgaccattgggcctatccgggctgtcccgatggatattacgccgaagtatgtgggaattgccagcggattgatgaacgccggttccgctgtcgccgacattatttcacctatcgcctttggcattattatcgacaaaacaggcaactggagtttaccattctacggttccgtcgcattgcttgttattggtatattcctgacgttcttcatgcgtccagataagtcattgtaaaagtcgaatcagggctgaagtggcacactgaatttggccacctgaacagaggtgatatgctcacctcagaacaacacaggtgctccaatgaaaaaaagaaatttcagcgcagagtttaaacgcgaatccgctcaactggttgttgaccagaaatacacggtggcagatgccgcgaaagctatggatgttggcctttccacaatgacaagatgggtcaaacaactgcgtgatgagcgtcagggcaaaacaccaaaagcctctccgataacaccagaacaaatcgaaatacgtaagctgaggaaaaagctacaacggattgaaatggagaatgaaatattaaaaaggctactgtagattcaatctgtcaatgcaacacccctttcaattatctctttcggtgttttgaacttcagtgtctttctcggtctgttgtttagctgagcagcaaccagatctagttcatgttgagtatattgggcaagacatgtctttttaggaaagtactgccgaattagcccatttgtgttctcatttgttccccgctgccaaggactctgaggatcgcagaagtaaactttaacgccggtgctgacagtaaattctagatgtctggccagttccattcctctgtcccatgtcagtgattttctgagttctgacggtaaactcaggaatttgtcggtaagagcctgatttactgagacagaatctttgcccctgagtctaaggatgatcgtataacgtgattttcggtctacaagtgtggctatatgagagttttttgtacctgagactaaatcgccctcccaatgccctagagagcgtctgttatcgatatttcgggaacgttcgtgaattggtgttccgttcactatgttaatcgtacctctttcgcctttgcgggtatgacgcctgccatggcgaaggctatgcgaccgtcgcagatgctgtatattcaggtggtgtagcgcttcacggctacgaaagtacagcgttttataaattgtctcaggtgatattcgcagcgttttttgacgtggttttgttcgccttaaccatcctgatatttgctctggagaccatttcatctccagcttttccagaacaagctttcgcaatggtaaattttgatccagtaagcacggttttggccttttcgccattctgttggctcggttattagcatcaacagctttgtaatagcgtctgccccgattacgctgaacttcacgtgagatcgtcgaaggactgcgattcagcgcagtagctatcgcacgaatgctcattttggctgacaaaccagctcgtatctcctcgcgctcagacagtgtcaggtgagctacagcccgcttacgctcatggggttttatgccgccagtatcccttaacatagtgaagatcgttccgggttttgaacccaggatattcgctatttcactgaagcctgttccgttcttccatagttcaaaaacagaggctttttcctctgctgtaaatgttcgtctcattcaaaaaacctccgcaaccccatgttttcacataactgttgcgttgaccaattgaatctacagttgctttttttaatatatctcgctcaaggcgagcttcatttaacgccttacgcagttgcagaatttcagattccagttcagccaccgtgcgggaaccaggagtaccgagcccttttctggcggcggtaacccattgtcctaaagtgccttcaggaagagataatcgggaagcgccttcactgatcgaaagttgattttcaagaaccgttctgacagcttcggctttgaactttttagagtaacgttgggtttttctgctcattattagctccttctgatgccattctatttcaggaaggagtgtccgttaaactcaggctacctcaggaaaaaccgtcctgaaaaaccagacggcagacgggctgtattacgcagtcaggtacttgagctacatggcatcagccacggttcggccggagcaagaagcatcgccacaatggcaacccggagaggctaccagatgggacgctggcttgctggcaggctcatgaaagagctggggctggtcagctgtcagcagccgactcaccggtataaacgtggtggtcatgaacatgttgctatccctaactaccttgaaaggcagttcgccgtgaccgagccaaatcaggtgtggtgcggtgatgtgacctatatctggacgggtaagcgctgggcgtacctcgccgttgttctcgacctgttcgcaagaaaaccagtgggctgggccatgtcgttctcgccggacagcaggcttaccatgaaagcactggaaatggcatgggaaacccgtggtaagcccgtcggggtgatgttccaagcgatcaaggcagtcattatacgagcaggcagttccggcagttactgtggcgataccggatcaggcagagtatgagtcggcgtggaaactgctgggataacagcccaatggagcgcttcttcaggagtctgaagaacgaatgggtgccagcgacgggctatgtaagcttcagcgatgcagctcacgcaataacggactatatcgttggatattacagcgcactaagaccgcacgaatataatggtgggttaccaccaaacgaatcagaaaaccgatactggaaaaactctaacgcggaggccagttttagttgaccacaacagactacctgaagggagccgcggtcgcctggcagttgcagtagcaggagatcatccagccgcagtacaggtcacgatgactctggttaatgataccggctttgaccccgtattttccggctctatcgctgaatcatggcgtcagcagccgtgcacaccatcctattgttgtgactgggaggctgccaccatgcttcgcgctttccctctggcgaaaaagggagaaggacgggcccgtctgccttcactttatgccagcttcggtaagctgggtgagacaccgactcatgaagatatcattgataacaatcgatccatcaactggcctgtataacgtggctgccggtgattaagaaagctgcacctacctaagtagtagcaaacgcacactttttagaaaaatcgatggtcagaaactggattagcaattccgttccatggttgcttttgatttacgttggcgtctgatcattgatttatcctcaaaagcccaacctcattggtaatgaaccagctccgtgaatgtccgctctggcacagagcgaaattttttgatctcccccctgaaatctaaacttagtcatgtcacgtttttgggtttctaaaattttaacttcgcgtttttcgttgccgtaagggttatacagaaatgtccgttaagcagagttcaaaattgattgccgtgatcacgactggtttgaaagccgcgcccaagcctgtacagctctggtttgcgttgattatgaacctgtcagcctaaagcaagcggatggacgatgagtattggtaatctttcagagtccggaaaagttcagccccagtctgaacaggcttgctggcgccagtccagtttcattcagtcgtggtttggttcttacggcctgtgcaatctacctcattaggcacatcggcctgccagataccggctcggggtgtatttccgcttccacgctgaatactgttctcagcaatcctggggtcatcacctcttctggtgtgccttgcgccataacatgtccgtttgccattaccaccagttgatcgcagtaccggctagcctgattaaggtcgtgcagcacagcgaccaccgttttcccctgagtccggagttcgcccatcaaccgcatcaggtccacctggtgattgatatcaagataggtggttggctcatcaagtaatacaacgggcgtattctgggccaggaccattgccagaaatgcgcgctggcgctgaccgccggaaagctcggttaaccgacgaacggcaagatgattgatccgggtctggttcatggcgacattaactcgtgcattgtcttcagcggagagacgcccccagagtgacagccagggattacgaccatacgaaaccagctcctggactgtgatcccctctggcgttaaatggtgctgaggcagcagcgaaagcctgcgggccaactggcgcgatgagagcatatttatgggattatcgccgagaaatacggtgccagactgcggcattaaaagccgcgaaaaacagtttaacagcgtcgatttcccgcaaccgttaggaccgatcagggcggtgatcttccccgttggcagtgagagtgaaacgtcgttaagtaccttgtctgtcccgtaactgaccgtcagattttcagttcgtaaagtcatttatcgcattctcacaagcaaccagacaaaccacggcgcaccgataatggcggtcagcacgccaaccgggagctccagtgggggatgaataattctcgccagcagatcggcaaccaccaacagcaacgcacctgtcagggccgaaacaggcagcagtctgcggtgacgtccaccggtgatgctacgcatcatatgcggcaccacgagaccaataaagctaatcgggccgcaggcggccacgccggtagatgtcatggcgacagctagtaacaaagcccagaatcgggtatggggcaccgacacaccgagcgtggtggcgcgcgcatcgccgagtgcaaggaggtcgagatcgcggcaaaaactcaggctcagcggcagaaataaaatcatcagcgggatggcaatcttcacaaagctccagtcacggccccataagctgccggtcagccacagcagggcgttgttcacatcctgcgggcgcgagagcatcagataatccgtcaggctggcccagcatgcagaaagcgccacgccggtgagcgccagcttcatcggctggtgggtctttgccagcatcttcagcaatatcaaccccgccatgccgcccgcaaaggccagcagcggcagcaccatcacgggcagtgacggcataagaagtagagcccccacagaggccaggctggcggcatggttaacaccgagaatatccggtgatgccagagggttgcgcacaatcccctgtatcagcacgcccgccacggcgagggctgcaccgacaaacagtgccagcagcaagcgcggcagtcggtactccatcaatacataataatgctcgtgtccggcctgccagtcggtcagcagcgcgcgccacggcacggggatcactcccatatggagtgataacagcgcacagcccgccagggcaagggtgatgaaaataaccagcgcaattttcatcctcgcctcctcacaagccagacaaagcaagggctgccaatcagcgccagcactgcgcctgcgggcagatctccggggaaggccagcgcgcgtgcgagtacatctgccagcagcatcagcgtggcccccagcagcatgctcactggcagtacgttgcgctgatcgaagcctgcccagaagcgcgccagatgtggcaccagcagaccgataaacgccaccggacctgctacgctgacgcacgcaccaaccagaagcagcactaacatattgatgaccaaacgtagcctcgtcaggttcactcccagcgtatgggcggtgctgtcgctgaggttgagcaggttcagttgattcgccagcagcaacacgacagggactgcagtgaccaccaccggcaagagctgccagacatcctgccagcgggcgtgggacactccgcctgccagccagtaaaagatgccgtaagcatgatcttcggccagcagcagggtgatgcgggtaaggcccatacaaaaggccgacagcgcgatacccgcgaggatcagtttgtttctgtcatgggtatgacgaaatccgcctcctgcggtcatgaccagcagccagctcacgccgcccccgcatgccgcgatgaatgacagagaatagcctgcaatcggcgtcggactcagcgcgctggtaagcgccatagccagcgccgcgccgctgttaatgccgagcagtgaaggagaggccattgggttgtgggtcagggtttgcagcagcgtgcccgcgagcgccaggcttgcgccgatcagaacggcgaccaggcttcgtggcaaacgaaggttttgcaccagcgcttctggtagcgttggcgtgtgtccaggcagcagggcgcgggttgcatctgctccggaaacaggaatggccgagtagcaaaacagactcagccagaaaataataataagtgctgcaacgggaagcccccacagcagcaccgggtgttttatcgcggtcatttcacaacggtaagcggctgatggtggaagatttttaccgtgtcagcggcaatacgctctgcagcaaaaataccgcgcatccgcgcccaggtgttactgtcgaccgaagcaacctgctgcttctgcgcggcggttaacatctgccagagcggatcttgttgccagcgtttaacaatgctctcttcgcgatagtgggcaaccagcagccaggcaggattgaccgccagcagttgctccaggccgatggacggcatggacgcacccgccatcgcagcgggaacgttcagccccagagaggccagcacgctgccggtccaggtctcctgagtatgcaggttgaattgctgttcgcgtgatgtgccaaaggccacgcgtgtccctttgggaagctggctggcccactgcgccatcctctctttatgttgttccagacgtgcctgcatctctcgctttttacccaccatttcgccgatgatagccgcagattgcaaattttcagcgtaggtttcgttgcgggacttaagcagcagtaccggcgcgatttgctgcaaggcgatgtaaacccccgcatggcgactgctgtcggcaatgatcaggtctggtttcagagcggcaatggcttccaggctcggctgcgcgcgcgttccgacggactgccacggtttcaggtgcgcacgcacttcgggcaggatgcgttttgcatcgttatcgtcggcaataccgatcgggatgacgtccacggcggccagcgcatcggcgaacgagagttccagcaccacaatccgttgtggcgttttttcgagtgtaaacgtgccgtgttcgtcctgaaccgtggcggcaaaggcgtggctgatcaccagcagcaggcctgcaaaaagaaaacggataaatgccaacataatcacattccagctaaaagcccggcaagccgggcgttaacacatcagaacttcaacgacccctgcatatacagcgtgcgcggctggcctgcatagatgcctttgttgttgtcgtcataagagcggatgaagtagtcctggtcgaagatgtttttcacaccgaatgccaggttcagatctgccatctgcgggccaaagtcatacgccacgcgtgcgccccagagcatgaagccgggaatgcggccggtactgccgtcggcgctctctttcaccgtattggcgttatccgcaaactggctggactggaaatcgctgttcagattgaacgtccagtttcctggcttgtagtccacgcccagcgtgcctttatgtttcggggagaatggtaccagattgccgtaggtgtcgcctttctcgcggatttccgcgttcacatacgcatagctggcgtagatggaaacgttatcaagcgttggcgttagcgtacccagatcgtaacgtgcctgcgtttccagcccggtatggcgcgttttgccacgtgcagtgacggtgtcgttggtctggttggagtcgtactgattgttaaagttaatcaggaacagccccatttccgccgtcagcgcgccgtcgtcgtagcgggtaccgagttcccaggttcgcgctttttccggttcaacattgccgctttgcacagccttgccaatctggctgtactgtacggtgccgaacgagccttcagtgtttgcataaagattccagctgtcagtcaggtgatagagcacgttcaacgccggaagcggtgcgttatagctcacttcttcgtgcgtgcctgtgatggcgttgttctggtatgactcgatatgttcgaaacgcatacccggcgtgatggtccagttgccgatgtcgattttgtcatccagataccaggcgtgcgcctcggtgccggaacgcgtatcgcggtcgtaagggcttgagccggacggcaactgcccgctgctggtggcggtgtagtaacgcatttcatgcgttgattcattcaaatagcgatagcccacgcccacttcgtgcgcggaagggccgatcataaagatctggctgtagcgtggctcaataccgcgcacccagtagttacgcggcgagagggtgatgcgtttgccttgctccaggtagccgctgcgcagggtttgggtgtagaacccctgaatgttgaatttatgctggctgtctggctggaactggtagcccaggctcgccagcttgcgacgaccccagaagcggtcatacgggcgggtggattgccagcgatcggcgtcgtaatccgcgcgagacaggccaccgggcatgtcggcttcaccgtcgtaatattgcagcaggctgttgaaggtgtgcacctcatccggcgcatatttgcttttcagcatcaggtcgtcgatgcgggtggcgctgtgctcgcgccagtcactgccgcgcgtgccggagtagagcagcgcggtgccaaaaccgttgtccgctgtgccgcccaccatcaggttgtgcgtctctttcgggttgttttgtgaagaggttgggctgagctgaccttccacgcccgcctcgataccaaagtcctgcggaatggcacgggtaacaaagttcaccacgccgcccacgctctgcggtccgtaacgcaccgcaccaccaccgcgtaccacgtcaatggcatccatgttgccgagcgaaacgggagccagtgaaagctgcggctgaccgtaaggggcgaaggggacggggatgccgtccatcaggacggtcgagcggctggcgaggcgcgggttcaggccccggatgccaaagttcatcgccaggtcgtggctgccggtgccgttgttttccggcgcgctgacgccagggatgcggttaagtacctcacgcatggtggttgcgccggttttggcgaaatcctcacggcggatcacgtcacgcgcgccagcatgttcaaatacgtcgttttcacgcgcatcacccagccagtcgccgaccacggtcagggcatcttcttttggtgcgggcgcgggctccagcgtccagctgttatttcccagcggttttacctgcagtccgctgccgtccagcagttgttgcaggccgctctcgacgtcgtaatcgccgtgcaggccgttgctctgcttgccgcgcgtcaggctggcgtcaaccgagagggtaaatccgctgtgtgcggcatactgattgagcgctttatcgagcgatcccggtgcgatattaacctgtgcagcaaaagcggaaaacgagagaccggccagcggcagcaggctcaggcgaatggtgttaaccaaaggtgttgttttacgaaaaacgcgtaacggcgtcataccttccccatcatcatttttgttgtgttcagctatgagtcgaacgagaagggtaaaaaggacaatcgaaataagaattattttccttacagtggtgaaatgtttatccagtaccgcgtaatagactgaattttaacgggaagcgtttgcgcgataacgttcaggatcgcatcggtatttttcagcgggaacgtcccgctcaggcgcagcccggcaacggcgggatcgcagcgcagcacgccgttgcggtaacgggttagcgtggctatcacctcacccagcggtttatcgctgaagctcaggatgtccttcgtccagcttgtactctcgtcatccagcggtttcactgcgccaaactcagaggcgctgaactgcaggctttcaccagcgttcacgatgcgtttttgcgcgggggcactggcgagaagcacttccacagcgtgctgctgcacgtcaagctgcgtgaaattatcctgctggcggacggtaaattctgtccctaaagcagtgagctggccctgacgggtcaggacacggaaggggcgttgcagggcatctttcgcggtagtaatggcgatttcaccgtaccagagccggacggtgcgctgatgcgcatcaaaacgcacatccgccgcgctttgggtattcagcgtgagcagggagccatcttccagttgctgacggctgactgtgcctttggcggtgcggtaatctgcccgcagaccttcgccggtttccgactgccagagctgccagcctccgccagcgccgagcaacagcagtaatcctttcatcacgtgacggcgggtgaggcgggtatcgtgcaacgcccggctggcaacgtcgccaggcacaccgccaagctggttgcgcaggttttcaacctgctgccaggcccactggttatcctgatcctgttcataccactgttgccagcgcgcttcctgttgtgggctgacgcgctcgccgcttagcacggcataccagtgggaagctgaacgcagcgcctgacggcgggaatcggttaacaaaggattcataacccatactccagacggaacagcaggcagtgctcgacggctttcgccacgtattttttcacggagctgatggaaacaccgagtttgtgcgcaatctcgctgtatgtcagaccatccagttgcgaaagcagaaacgcttcacgtgttttgccgtttagcccgtccagcatgctgtcgaggagttgtagggtctcgagttggctttcgcgttcctcaggtgaaggcgctcccccctccggcataagcgccagcatctccagatacgctttttccagcgcgtttcggcgaaacaggtccaccatcacgcgtttggcgatagtgcagaggaaggagcgaggatcgcggatcgtcgagagcgtttcgctgaccattacccgcaaaaaagtgtcctgggcaatgtcatctgcatcaaaagcagactggagtttgcgcgtcagccagcttttcaaccagccgtgatgtgtgccataaagcgactcgaacgttaaggaagctgtggtagtggcgcggtcagacatgcggagtgcatcaaaagttaattatcacgtagtcatattaatatgagaatggttatcattacaattggaaataaaattgtttccaatagacatttttaacatgttgtttttctaagtgttataaggtaggtataaaatgggatggagcctctgcttctggcatgtgtcggtcagaatgactcatgatgtggtctgctattattgacatcctcactgccctaaaggatggggatttcggtaatgctgccaacttactgatttagtgtatgatggtgattttaaggtgcttgcgtggcttccatttccatcagatgtccttcctgctccgctactgaaggcgtggtgcgtaacggcaaaagcactgccggacatcagcgctatctctgctctccttgccgtaaaacatggcaactacagttcacttacaccgcctctcagcccggtaagcaccagaaaatcattgatatggccatgaatggcgtcggatgtcgcgccagtgcacgcattatgggcgttggcctcaacacggttttacgtcacttaaaaaactcaggccgcagtcggtaacctcgcgcatacaaccgggcagtgatgtgattgtctgcgctgaaatggacgaacagtggggctacgtcggtgctaaatcacgtcagcgctggctgttttacgcgtatgacaggatacggaggacggttgtggcgcacgtcttcggtgaacgcactctggccacactggagcgtcttctgagcctgctgtcggcctttgaggtcgtggtatagatgacggatggctggccgctgtatgaatcacgcctgaagggaaagctgcacgttatcagcaagcgttacactcagcgcattgagcgacataatctgaatctgagacaacatctggcaaggctgggacggaagttactgtcgttctcaaaatcggtggagttgcatgacaaggtcatcgggcattatctgaacataaaacactatcagtaagttggagtcattaccgaccatgtttatttcatacattgtgggtattgttcttattatcgccgctaatcaataaaatcctgccccatatctacatggggcagttgttcattcttttagtgtggtaattcacacgccagcaaaaactctgccgttccttcatcaacaatcaggtccgtgacatatcctcccagcagggcacccaacgttgcgtcatagcctctttccccaccagcaaggaagatcttccgttcaatctgccttagctgagccagactgattcccagaatacgctggtcaacatcagccacgacgggcatcccttccttgtcatagaagcgaccacaaatgacacctactgcgcctaaatcccgatacgtctgcatttccttcttattcagcacgcccacccgaatcaggggattttcatcaagcgcgttacccacgacaaaaaaggctttcgtacagcgagtcagaacgtcaaaattcgatcgaataataggctctgcctgtaactccatggccagtctggcgcttgataccacggcgggcacgtgcagcgaggcgacacggcctgaaagcttgtaggcgatttgcgatgaggattcaatgatcgtcaggtctggctgagatggcatggaaccgagcatctgtataacggtgacatttttacatgacttcggcgtcatggttttgctcatctgatggattgttcttccccaggcaacccccagcacatcaccattctcaatcacctgattcagatacatgccaccggcacgtgaaaggcgagtccgcatcagctttgtatcatcacgttttccggcatgttcgccatccggcacgatgatcactctctggagattgaatttatcgcgaatttgcaaagcagcgtcgatagagccaaagacattcacatccaggttgatatgaaccagtccattttcccgggctgtttgcaggtatttgacaaccgtgacgcggacacccccatgatagctgcaacttcagtctggcttttgccttcctgatagtacagccatgttgcatgaagtacgggatcatcattgaacaggctgctgtttgtttgatctctatccacttttgtatacctgtattaaaccggggaaatgctcatcttaaccctgtttacccggagagttgatgcagattgccagtggcatgattttatacagatattttattcttttacatgaaataaaccagcataccatttgagcgatcgcccgctgttcccccatactgtaaagccggagacatgctccgcgtttacagtattactgagaatacacccatcaagcataatcgaaggttcaatatcgcccctttttgatcgccagcgattcgtcaccgtgcagacggttgccgtcactcactaaattatgggggacagtgaacaacaggttggctcactggcaagaacccgattataaaactaagctggcgagcagaataaaaatcagcccactgatggataagagtgtggacatcagcgtccaggataacagcgtttctttggtggtcaggccaaaaaagtctttaatcatccagaaactggcatcgttaacgtgagaacaaatacaggatccggcaccggtagccagcgtaatcaaggccaggttggtattgggatgtactgccaacaatgggatgaccagaccggcggtagagatcgccgcgacggtggctgaacccagacaaatacgcaggaatgcgccacgccccaggccatcaggatcgggttaatatccatacccgaaaccagggtggaaatatactgaccaacgccagagtcgatgagaacttgcttgaatgcaccaccaccaccgataatcagcagcagaccggcaatacccgcgatagcttttccgcaagaatccatcaggtcagggattgttttcccgcgccccaggcccatggtatagatcgcgaatagcagtgaaatcagcatggcgatcgttgaattacctaagaacagtatcacgttgtaaaataagcctgaatccgcggcacttttggcatgagtcatctggatgatggtgacaaccgccatcaggatcaccggcagcattgccgtgagaaaactgatcccaaagcctggcatttcgctttcgctgaatcggcgggtcgcgccgagagaggctatattcccctcttttttaaaggcgtccggaataatgcgctggcagaatttattcaataccgggccgcaaagaataaaggttggaatgccgacaatgataccgtatatcagtaccaatcctacatcagcgccatattccctggcgataacagtcgggccggggtgcggcggcaaaaaaccgtgtgcgaccagcaaaccagaaagcatcggcacacacataaacatcggtgatatttttgcttcacgggcaatagcgaataaaataggtaccagaagaattaaaccgacttcgaaaaaaagtgcgataccgacaataaacgccgaacagaccactgcccagtcaagtttatttttcccgaaataattcagcatggtcagcgctattcgctgcgcaccacccgcatcggccagcaagcgaccgagcataacaccgaagccaaatatcaaaccaatatggcccagcgtaccgccaagtccggattcgactgaggtgacgactttactcaaatccataccactggcgatggcgacagcaatcgagacaataattaacgaaacaaacgtattaagcttaatttttatggttaaaagcaggagtaaagcaatccctgccacaacgataattagtggcataacgtcctctcataacagggtagcgacccatcattatccgactgagcaaataacgaatgatgcagagtcggataattcaggtgtctggatgtttttatttatgctttcagtttttattcataaaatcgcgcaaagccgcgccaattttgtttacatcataaatacaaccggtccatgtcccaccactcacggcctgaagcattgcccatagccgggtatcatctggcaattcaggatcgggaagtaaatcctgatggctgggtctggcatttaatattgcagttgcctcctcctgtgaaggtaattgttcatcgctacgggttccgaggaaattgacttcgccgtgaagctcgcgacaatcaattttaatttcaattaaatccccggtgcgtaatttaccgatgggggcctccgccagcgcttctggccccacatggccgatgcacgcgccagtagaaacgcccgagaaacgtgcatcggtgattaacgaaacatgcttaccgtatgacagatgcttcagggcactggtaacctggtaggtttcttccatccctgtacctgaaggtccaacgccaataatgaccagaatatcgcccgccttgatcttgtcatgtttgatatcgtaaatcgcacttttctcggacagataaaccttcgccacacctttatggtaatagataccttgctcatcaatcatcgaggggtcaatggcggtggatttgatcaccgaaccttctggcgcaatattgcccaccgggaaggtgatagttgaggttaatccgcgcgcttttgcttgctgcggagacatgatcacttcgtcagcgttgatttgttcctgatcgagcaggagttgcttgaaccgctgacgccgttcggagtgctcccaccagtcgaggttttctttcagcgtgctgccggtaaccgtcataacgtcttcatgcaacaatccgaggctgcgcagatgcaacatgacttccggcacaccacctgccataaaggcattgaccgttggatgataaaccgggccattaggcagtacgctcaccagtcggggcacgcgcttgttgatgcggatccagtcatcaacggtcgggatatggcaacctgcctggtgagcaattgccgggatgtgtaacagcaggtttgttgaaccaccgaacgcggcatggaccgtcatcgcattctctatcgctttatcggtgagaatttcccgggtggtgatgcctttttgactcaggttcagcgcagctcgcgcggaagctctggcgatctcccgccacacaggctcaccggaaggggccagggctgaatgtgggattgccagtcccaatccttcggccaccacctgagatgtcccggcagtgcccaaaaattgacagccgccgccggaagaggcacaggctttacagcccgcacggcgtgcgtcctgtagagataattcgccattggcgaagcgtgcgccaatggtttgcaccttgccgttgtcttctccatcctttgcgggcagcgtcgcgccgccggggaccagcacggttgcgatgttgtgctgcgcggcgagtgccatcatggtggccggaagccccttatcgcaactcgccacaccaataactgctttcgcgtcgggcagagagcgaataaggcggcgcattaccatcgatgcgtcatttcggtatggtagcgaatcaaacatccccgttgtaccctgagtacgcccgtcacaaggatcggagacgtacacggcatagggcagggcatggttggctttaataacctcggccgccgctttcatctggatgtccagttcgtaatgcccctggtgcaacgccagcgccacgggtttaccgtctgcgccgcgtaagccaccgagtgtactgagcagtaaaataccgtcccgatccagctcgtccggagaccaacccattccggcattcatggtcataccgaacagatccccgctcgggcggttgataagcatctctgcggttaatgggagttcgccgtccgggccatcggcgtgcgttctgacggtgtaaatatcgtggctctcgtcagcaaaaatattgcgaacagacatgagtttctcctcagactggtaaaatgccctgcgcggtaagcagcacgtggactttatcttttgcttcttcagatgcttcaagaatcggtggtaagcaatatgtctctacaggcagcccgacacactgcatgctgtatttgatcagtgagacaaacggtgtttcgagggcgtaaatagcgggcagttgtagtagttttttattcagcgtcgcagcggtcgccagatcgccttcacgccaggcgcggtagatgccgacggagagttccggagcaaagttagcgctggcggttatcgcaccgtcgccgcccagcagcatcgtattcagcaaatgatcatcgtaaccgcagaataccgaaaacgacgggcgtaccgacttaactgtgttgatcatcgtacgcaagtgaccaacgctgtcgatggtgtctttgatgccaacgatattctcgttttgcagagccagacgcgtcacggtttccggggttaagtcctgacccgtcagatccggaaagttgtacaggatcaccggtagggtgacgctacgggcgatctgctggtaatagtcgtcaagatttcgtggtgcgactttccagtagtaggggttgatggcgacgataccatcagcgccgtaggcttgcgcatgctgcgccagtttgaccgcttcgtcagtggaaggggaaccgacgccaatcaataccggcactcgcccgtcgacaatggttacagcttcttcggcgagtgccatgcgctgggctgtattcatttggctaaattcaccaccggtacccagataaaacagcccgtcgacccctttattaatcaggaagtcggcaacttcgcgcattgcctttttatcaagggttccgtcacgatgaaacgtgctggataccggtggaataatgccgctgaattttttcattacctcagtttccttttcgtaagtgctcattttcgtttctgtatcccagcccatatgatatttgctcagcgcatttccggagcaattccagatagctgtctatcttatttcctgaataaactaccggatcgccagaaagtgagattgcatagttaactctgttatacatattgaataccggcatacttaaacataccgccccataggttgattcttcgttgtctatggcccatccccgaaggcgtgttttttgtaattcttccagaaacaattttttatcggtaaatgtattgcgcgtatgtggagttaacgtgagtgcttctaaaaaataatccagttcttctcgtgtcttccaggctaataatgccttacccaacgcggtaatatgcaactcaagttttttgccaatccagcttttgctcgtcggtacagagtccggactttcgatcttgtcgagatagatagccgaaatgctctccatcgccccaagatgacaaaccagtccacttttcagcgacaactcctgcattggccgcttagtcacctcaaatatattttgacggtgtaacgcctgacaacccaattcgtagttttttattcccagtgaatagtagccgtttttgtttttaattaagaaaccacaatccaccattacattcaataaattaagcaggctgcttttggggtactggaatttatttaataactccatataacttgccataccaacccatgcaatgtgggttaatattttttcagcacggactaatgaattacaccctttgcgaaccataatggctcctccttgctcatggaataaatggtatcggcattacatagtggaaaatatgctttgttcagcatgctgaaccgtaatgatgtgattaaatgtgatcttgtacacactttgaataatgaatccagaacagccacatttagtgaatgagaataaaaagtagatggcgtgttgttgcaacatcgtagtgtgtggattgcgcctagagcttctttattcgttcgagcgcatcgccaatattttctattgggtgccattgattatttttgcttgaaatccctctcgaatgaacttacttatcactttattgaatgaggtaaaaacaactgacatccggctcgctgataacgctgtgcaatagtctcaggtaacccgctgtcactgatgatcgttttaatacatgatagtgttgctacagcatgcggctcaacggcatcaaattttgagtgatcggccatgagaataacttcacgcgagcgttgaataatccgtgttttcaccccgacctcaaacatggtggcattggtgatccccgtctccagcgacagcgcatcgcaggagataaacgcacgttctacggaaaaggcattgatcatctccagcgccagactctctcctaccgaaaaataacctgggcgaatcagtcctccgataatgtaactttccacatggggaaaacagcccagttcattggcgattttaatgtcgttgcagatgacctttacccgcgcatcggccaggcatttcgccagttcgaggcaggttgagccggagtcgagaaaaaagcagtcgccatctttgatcattgttcgggcaagggcagctatttctcttttcgccacagattgcaatgtacgtttcacgtcgaagacgtactctttgtcgtctgtactgtcgtcgaagtccaggcaaccgtgaccgcggatcatgcctggatactggttgacaatatactggaaatcacgacggacagtcgcttccgcatagccaaaaagctccatggcctgctgtgtggagaggtgacgatgttgccacaggtagtgcagcatctgtttgatacggtcaggtctctgttggctcatcagaaacaatctcctcttacagggtggcgaattgagctaaggtcgcgcgatagtcagatgaagagaacagggcgcgcccaatcaccatatgttgcgccccagctgctgccagttgctgtgcagctgccagcgtaattccaccgtcggcccagcactcggtctgaggaaaagccgtgcgtactttttggattttctcgcacatggagggaataaaccgctgtccctgcccatcgggctcactggtcatcaccatcactccgtccagctcagacgccagatatcgccaggcgtcgatcggggttgccggattaaataccagtccggctcgtgcgccggtatggcggatctcagttaacgtttccgaaggatagtccagcgtttctgcatgaacgaagatccacgcgggtctgatttcagccagcgcgttaaaccagcgctgtggccgggcaagcatgaaatgaaaggacaagggatgaggcgtctgtctggcgacggcctgcaccgttttcatcccaaacgtaatgttgttaatgaagctgctgtcctcaatatccagatgcaggctcccaaaatccagattgtccaatgccgtcagctcacgaccatagtgcagaggatttgcgctggcgagagaagggtgcaggatcataagcgcctccgttaacctgataccagcgcaaacagtgcatcgtctgtgctggcatttcccactgccgttaagcgttgtggcgaatcaataaactggctgatgcgctgaatggtcaaaatatgtgcgttggcatccgtggcgctgacgcagagaagcagccagacggggtcgcactcctcgttaccaaaggcgaccggggtgcgtagcgtggtgatactgacctgattatagtttgcgccttgctctggtcgggcgtgaggcaaggcgattcctggggctatcagataataaggcccccagttaagggtattttcgatgatcccattaacgtagcatggctgcgcggcaccataggctaccagcgggcgggtggcgatttccacggcctgacgccagtcggtggctttacgttgtgcctgtacccatttaatatcgttaatcatccgtcgttgactccatgccgattcgggttaatctggtagcgatccccgtcgatacttttgacgaaggcggcagggatcgcagaagggttattgctctttgccggggataagcgctctgcttatccccatcttatcggcgtatatgatgcactttctccataaactgactgactcgcgcctggtcaacgaaattggcaaaaacgccgtcctttttaaaggtggttgcggtcacacagccatcggcgatactgagttgttcctccacgttttccaggcagacgcccgtgttggccaacacgacggtgtcaggcaccgtttctttgacccgttttaacagcgcgctgtcggtacgcgtcccggcggtcaggccagaaacacagagcgcatcaggatggttgttaaatactgtcgatttagcaatagaacagatatcgcgattgcccagatacacggcggcctctgggacgatattgaacaaggttttcacttcgcctgcaccaatccggtgttgatgacggatggtctcaccgacgttagtgtcccagacgccaaagtcgctggcataggcaccggtaaatatctcgcggataaacttagcgccggtagccatcgccaggtcgaatgaggcgaccggatcccacagaacattcacgccaaacgggatgcggatatcgctcattaattgcccgatgattcgtgccattgccgcagtggtttccggacgcaccttcgtgagatagggaagactaaactcgttggagaacatgactgcatccaccccaccattttggagcgccatcagatcgtcccaggctttgtcgataacccagttcatccccaactgcgcatcaaaactcgggtcgccgggcaatgcacgtagatggcacatggcgatgaccgctttttccgtcccaataacctctttcagccaactcattgaaagtactccttattccgataattcacgtttacgtaagaacagcacgacgctggcgacaataccgaccgccacgacaacgccaataatcccaagcgacatcaattcagaaatcgaccaaccgaacatattgcccacggacaacgctgagatttgcgcactttcaccggcaaaactgaaaccgcctttgagcgccatttcagtgaagtaaggcgcgaactgggtggcgatcagcaggacggtaatcatcacgatgaccccgcttatcaacgtcctgaccaggtctccgcggtggataaccgtagccatacagataaagaacggtgctaccggcaggtctgcgaggggtaacactttgttgcccggtaaaatgctggccagaattaacataatgggtatcagtagcagaccgacagcaatggtggttggatgccccagcgtcacagcagtatccagaccgatatacacttcacgtcctttgaaatatttctggaagaactttcttgcaccgtcggagatgggcagcaggccctcaacaatcaggcggatcatgcgcgggaacaacaccatgattgccgcaacggtaatcatcagactggcgcaacctttaaagccttcaccagccgccaggccaaaaatcagaccgagcactacgccgataatcaccggatcgccgaccatgccgtagcgtttctggatctcctgagcatcgatattgcgtcccttcatgaaagggattttttcatagatagcatcaagtagaacgaaaagcggtactgaactggaaccgtagccttgcggtatcgaaataccttccagcccgacgatgttctgtacccgttttgccgtccagtcggccatttttaacgatagcgccgcatggcagattgcccccagcacaccataaatcaggctaccggtcataagctggaccaccgtacccgtaatggcgtagtgccagtaattgtaaatatcgacgttcatcgttttggtcagacgggtgaccagcatggcgacattgagaagaaaaataactgggataatcatggcgccaatggctgtcgcataaccaacgccggaggcagggcctgcgccaacgtcaaagacatgcagggctaggccgaaacgctcaatcatcactttgatagggggactgaggctgtcgatcgccatgacgatcaccagtcccataccgacaaaaccaatcccaaccgttacccctgccttaatcgcctgcagccaggggatgcggaagataaggccaatcacgatcatgatgatagggacgaaaacggtaccgccgagagacaggatgtaatcaaacataatgcctccttttattgagttaacagagccttgatttgttgttttaacgcgtcgtcgttgatccctgtgagcagggcggcgccattaagcgtagggatgccgtaatcactgttggttcgcatggaggttacaataaggtccataccgttacagttaagagggatctcattcagacagcattgggcggtagtggctgaaatgccctgttcagtcaggaactcttgcagcttgtgtgcaatcatggttgaagtcgacatgccggtaccgcatgccacaaggatctttttcataatggatgtgcctcttgtgtagtgcctgaatcaggctcaacggggaaatgtgctgctgacatacctgccagagcggtcaataggcggatgcaatcagtcaaatcacgcaggctggcaacctccgccggagaatgggtatagcgacaaggaatagagagactggcgcagggaataccatcctgctcaacctggatataaccggtttctgttatcacgccgggagccacttctcgctgcaccggaatgttgtgttcaagagccgtctgttccaacatccgtatcaggcgaggaggcgtgattaatccggccagcgttccccgaccatggtagttcaggcaggtgatcccaacgccctgattaatcctgacctcggaataatcgtgtaaatcaggggtgtcacacgatggagtgatatcaataccaatcgccaggtcaggttttacacggcgtaatacgggaacaatgccgcggatattaaattcttcctgtaccgaagccaccagataaacggcgatatcaagctccatagtactgatagcatccgctacaccgagcagggcagtacagcctagacgatcgtctagtgctttactgcacaccagatcgtttgccaggagttgcggcgggttatacagagtgacaggcgtaccgacctgaatgcccatccgtatagcgtcgtctttgtctttggcaccaatatcaatccacagtttgtcgacagaaggtgactgcgtgcgctcgtccgctttggcaaagtggtaggacttaatgccgatacaccccatgactggccctttgtccccggtgagggtgacgatggaaccagccatagtgacctgcgcaggaccgcctacgcgttcaaagcgtaaaaatccagacggctctattttgcgcaccataaaaccgacttcatccatatgcgcaaaaatcatcagtcgcagcgcatcgggtttatcactaccgtagcgcgcgacgacattcccaagcctgtctcgccagacctcttttgcctgacgcctgaattcgcacagcatgacgtcagcgacagcgttttcgtgtcctgaaatcgcattgtgctgcaaaagcgagaacagggtttcctgcacagaaaatgacatagctatctccgtagaccgtaaaacaatcactcgttgagcgttttataggcgcagactggtcgaataattgtgagaacgttcacgtgaaaacgcgcaaagctgaacaaataaaaaattatgtgagccgagtggaataaaagcgctcaacgtttgtgaaagttacgggctggagagaccagtgattatggttgaaataatgaggatgaataaaacgcggtaactgttatagcaccactttgttgcaggacgctccctcttcattacgtcctgcacgtggataccccagcatctccatcagcggatcttagaatgtaatggcgcgtggcaggtcgttggttcccagcataatgtaagaaaacatcggatctcctgaatagattcagagggagtatagataatcagctcaaatcactctccgctttatgagcccaggctggcattgccgtcagataacgttttgcacgcttatgtgcttcctccgggccgactttttgccaggaatcaaggaagctggctaaacctgataccgcttcttcccagggtttgagattgccgttgctgtcgctgcattacgcacaatattgatcactggcactgtgtgcatctggtgccgacatcggcattccgcaagcctgacagaactgttcatgttgtgacatatgatgctccttatggtgacatcttgattaataaacatactgaatatgtattgtgcaggtgatacatcagatcaaagcaaaggtaaagcctcgatatttccagccagaaataccgggaacctgttgttaccgggcgatgagtgcgaacacgccccagccaaagcattcccgcgcgtaggtcacgtagcgtttcggcgcgatgtttagttcggccctgacttcggcggcgaagtcatcgtcaggattcgcttccagccagcggcgcatggtcagccattttgcggcttcataccggtcccagccttcctggtctgccagtaccatttccaccacgtcatagccgagatcgtcgaacgctccgacaagtcctggcagcgtcaggaaatcgcttgtcgagctgacgccgcaggcctgggctatttcttctgttgctggtagctgacgccagtagggttcgccgataagcatgatcccgcccggtttcaggctttgcgctagcagctcctccgccccggcaaacccaccggcaatccatgtcgcgccgacgcaggccgccacgtcacatttttcatttgcgacgtaaccggccgcatcgttatgaataaaatgtacgcgttcgctgacgccgagttcttccgcgcgacgctttgcctgcgcggtgaagagcgaactcatgtcgatgccagtccccgtaatgccatgatccctggcccaggtgcagagcatctcgcccgagccgctgccgaggtcaagaatgcgggtgcccggcttcatgcgcagcacgcgacccagcgtggcgtacttctcttcggtgaacgggttatggatgcggtgttcactttcgctgatggtaaaaatacgtgggatatccattatttaattcctgttattgggttaagccttaaaaaggacacaacaagattgttattcacgtcagtgctccggtttcatcagggtctgcgcaccggatgtggccggtcagggtcatgggctgagcggtgagtgattgcatcatccagcaggctttgtgctcctccgggatgggataaggtgccggatagcctttgtctccggcacagggttcgaacccatgtcgggggtaataggtggcgtggccgagaacaaaaaccgtctggcagcccatcaacctcaggtgctcgatgccagtgcgtatcaaccgtcctcccacgcccatcccttggtattccggtatgaccgccaggggagcgaggatgtgcatcaacggtgaatccatttctcctttgaaggttgcccgggtaaataaaatatgcccgacggctttgccttcataccgggctagcagcgataacgcggggcgcgcgctttcatcctcaagtaaagaggccactaaatcggcttctttgctgaagccaaatgcgcgggtttcgacttcccggatatcactggcatcacttttatctgtgatatgaaaagtgaagtggtgtactgtcatagaaactctccttagcgattatcgagctgagcgcgaactttattcagctcggtggtgttgattcgatagggctggccattgacggacttgataagttttttggttttgagttttttgaagacggcgagcgtgcagtcggtcagcaacagcccttcgcggctgtagcattcaacggaagtgacgcggcctgaagaatcgcggacgtgcgcaatacgtctacctttagcgagaacgtgtaaggtatgttgttcctgacgggataaattcatactgaagaacctatttaatcatcatgtgcaaaacgtgcaaacacaccgcggtgtccgcattcgatttcggcgcattgataatcagtccggcctgaaaaggtcggggaactgattatcggatgattacattctccagcatcaaagcctcgggttgagttgaaaggtatttacggagcgaatattaacacgtagttataggagggatatgtttcagtagaaaaagtgtgatgtactttggaaattgaatgccaacccatttactggaaaaggcagatgacactgacgaatgcatgttgaagtacgcctgaaatggcctcatcggcttttcccttcgggagattattctccttttgttaaatccagaacataaatatgctcacccatcttcgatgcttgaaaaattgaagccaatcctgataagtaatttttttgaaagggtattttccggattcacaccggctttgatgagtgaaaaaccgttctcttttattcagtcaatcgtggcggtaattgcttcaattgcatatccctggcgagcataagcgggactgatggtatagccgagccaaaacacatcgcattgctgacgtaaatagatatcaccaatcaaaacctgcgtcatttgttgacaatggccaattgaatatcgcgagcaagtgtaagaactcccagcaagaccctgtaaataattctgtgtaactgcccacgattaaaggtggccgctcaggcggtcaccgtattcgataataaatgggtctggaaaaagtgcagcatctggcagcgtaatgcaggtagcccagttcaactctcactaccagtatgatcccaagttcgagcgcggaatgtatctgtatgagcatcgtcgctgtttcaataacatcatcgactactgtaactcactttgctatcacggtaagttgcagcctaaaagagggatggaaaaaggacgattttccccgcaatgggatatttacatattgatggtagaggcatgaagccaaatggagggagccgtcataaccctcttgaagctgaaacaatagcagcatggctggtggcacataaggatgatatagagcgccattacggggaaccactgtacaaagttgttggtgttgtgacgccattttcggcgcaggttaatgctatcaaaatgtcattgcgtaagctggaaattaatggcaaagacgagcagggtttactgacagtggggactgtgcactccttgcagggggcggaaagggcgattgttctcttttctcctgtctactcaaaacatgaagatggcaggtttcttgatagcaacagcactatcctcaatgttgctgtctcacgcgctaaagatagttttctggtatttggcgatatggaccttatcgagatgcagcccgcattttcgccgcgagggttattggcaaaatatctcttttcttcagataataatgcgttgcaatttgagtttcagaaacgacaggatttaatttccgcacatacacaaatttcaacgctgcatggtgtggagcagcatgatgaatttttgaacaagactcttgccggagctcaaaagaaaataacgattatttccccttggttatcctggcaaaaagtggagcaaacgggatttctggcatcaatggctttggcccgttcccggggcattgatattaccgtggtgacggataaaaactgcaatatagcgcatgtcgatgatgataagcgtcaggagaaacaacatctgctgaatgatgctgttgaaaagctcaataagatgggtatcgctacgaaattggttaatcgtgttcacagcaaaattgtgattgaggatgaagaactgctgtgtgtcggatcttttaactggttcagtgctacacgggaagataagtatcaacgatacgatacgtctttggtgtaccgtggtgaaggcgtaaaaaatgaaataaaggcaatatatggtagtctggatcaacgtcagctttaaatgtgatgagccgttcatgatacaggagtagtaaagggcatattttaccaatgttaaggcgactttccgttttattgcgagtcgcctttcctgattataaatcttattgtttacctaatcattttcctttgcataatgcgcctgggattaatggcgggtgcttttaggaatgaaagaaaatgcaagcaataatataataatggcctaatttctttgaacatcattaagcatatcatcatcgtctatttgccagaatccgtcgacttataatcgccagaacggcatatcaggacggtgctgcgaacgctgtggcccaaaacgttccagtaaactgtgtagatgttcgtagatttccgagccataatcgaaaaggcgcggatgtctattaaggcatccggctaatctgtaagcaataacaacggtttatgcggtgcgcgtttttcacccttgtgccagattattatattggcaattgcctgctgttcgagcccgcaagtgaagagatattaccttgatctcatttgttttttgttgtctactctgagaacgaacaaggacatcccccatgaataaactccccgctcacctttcgcgccaaaactgcaaaattgcttctacaaatctgtcagaaataatcccccgacgggctgcagtgctgaaatgactgcttcgcagtgccgtcgtccagttctccggtgaccggtacgctgaaccgtaatatcccgtgcttaaatcgtccgggtcttcatcaggcgcgttcgtcagtcctctttcaccttgttgctggaagtcgacgaaaataatattggctaaaacattattttgataattgccataaatagcttcatacgaatgcgggaaattttctttccagtaccaggtggtatcgccgcaaaaccacggcgcgtcagtaatattattaagctgagaatggtattgttttagatccctacgaaaggcttcaaccatatgattaaagtgttgagggtgtgacgcgtagtcactggtcattaagtcaaattcgccttgcatccagcatgcgccgaggaatttgttctgcggattttttgccagtgcggctcgcgttctgctgactaaatcctggtacagcggagtatccgttccccaacgacaagcatcatggctggctccgtgccgttctgaatatgtcccttcgctgcccgcggtaaaagccgatccgccacggcaacacggaacgataagaatccctgcattatcaggaatgaagggcagtaatttccgtgcaatatgcagtgcctggccaacggtgccgtactgtgtttgatgattcgttgccagaggatggtgataaccctgcatatcctgaacatcgtgtgggcagtgagtcagtggaataatgtcgttaaagtgacatggcgggcctccgggatgcgtatgcgcaaatctcgctaattgtttaattctgggatgaggcgcatcttccctgtccggtaatggcagtccttcgccatacgccatggcattagactgaccagcaacggtaagaacatagtaataatcgggcgatattattgcgttcatataaatttcgcgtaattgaaatgacaaattgatagcagggcccctttaccggggccctgaagcgttagttttgtactgtgactttattatccttcacagtgatcaaaactgaatccgtcaccgctttgccgcctgcagtttcaccgccaataatcaatagactattattccagggcaatgatactccgtaggcccgaccttgcgataattcacccgatttatcccatttcccgttatgccaaagatgaatatcagtgctatatgattttttcaggccttcatgcgcatagttcttaccgttctggtaattttctcgtgaacctttgaatccggcccctccggcaaatataagagaatcattgcttatccccgcaaaaccgccagctacgccatctggtgatgagacgggagcaagcttattccattttaaattattaccggtgaaatcaagttcaaatacggcatccgttcgcaatcctggtttggcttcgccattaataagccaggttttatcacctttattcacaaccgccgcaccagccgttccgtaccagggcgattcgccagcgtaactccattgctgtgttgagggatcaaaagacaacagaaacttattgaagaaataatcttctgcttttttgtcaaaatagtgagcattgattttatctatagcggttgaatcttttccagcctcgttgagatcttcaaaatagccattgaagatattctggttaacaccaccagtaacataagccttgccgttgtgtacaaaagtcacatggcccgccatgcccatcggcgcgtgcgacatcaatttaacccaactattggttttggggttgtatttgtgtacgtcattaaatacctgagtcaagccctcgctgtttttgccaatgccgccaaacacatacagattgccatcaataaatgcagaggttgcttgatctcttggtccgccagggaatgcagctaacgctgtccattttttatctttggcctgtgtatccagcttgtaccatgccgtacctgcgctacctaaaccaatgtagacagtgtcgttatcaattgctccggtaccacttttaaatggcacaggagtttccggtaatacagacgcgtttgcggcaaatgaagccatcatgatagcaagcgccgttattgttttattcattgtgactgtctcctgtctactacagtttaaatgacacaccaatgcgataactgttttccgataaattatctctgccgttgtaaacaccctgacggtcaaggtagtcatattctatgtatggcgtaatatcgggcgtcatatggtattgtagaacaaatgcattttccgtcgcccatttcttatggtttgcatagcgataatcgttctgtttgctgtatagcgtcgtttgccatgcgaaggtgaaatcactattaatatggtaagtgacatatccatcccaacgatgaacgttatcacgagacatatcaccggataagtcttgttgtcggtaagctttccagtcgtaacgatagcgaatgccaaaattaagatcttttgtcgcgtcccaggacagttttacgtagggtccgtagcgtgtgccgttgctgctaaaatgcgttaacattcccgggcgcaccgtccattgatcatcaagtttaatcgcgtaattaacttcaacctgaacatcattgagtgcggcattttcctttttattatcatgaatggtattccaggtattactttccatgcttgcccaccatccattttgccatccctcactgactttgagtcgagtctcataggcgtggcttccactacgatatccaccacgtacgtccagtgtcgcagcctgagaaattaatggggacgaaaagcacagtaataatacgccagaaagtattttagcctttttcataaatttcactcatttgtaggatacagaaagcaatacaaagcccgcataaacaattagcatttatgttgtgtaatatttttttgccaggcttatagtgtctttggcaaccggtagctgtattttatatttttttgtataaggtctcctgtgaaaaatctcttttcacattatttaaataaacagagatccagattaaatacctgagtataaaatctcttctgatgtttaattgatttgaatgttcgtaagctatatcacttactcaatccattttacccagagtcataaaatagaatgtctgttgatctcattttcatattcctttcagactgaagtgcgttttcatcacccgatgagaaagaactgaagtgatgtttgccatagattgcgagatgccctgtctcattgactatcttggtgcacctttatacctgttataccagatcaaaaatcacgcaatccatacaacaaaaccagatttgcaattcgtgtcacaaaatatgtcgatctttttctaagaggaagatgccatgtgaagccagacgaacacttgcggtggtcttcaaaaactaaagatcttagtttaactatttgttttataaataatttattaagagtctaaacaaggggagctttgcaagctaactcagtgagcttggtgaaaatcagtgtttacccgccatcaggctgagcataattctcatcatgaaatatgtttcctggtttgtggcttgtaactggtcacttctgaagtcgatctggagaggcttgttgatgttggtgttttcaggatgatgtttcacttagtttgtttgccgtatcgcccggcgaatggctgtgattgaggaaggtttaagtcgtagtgaccaaagctatatttaccaacgaatgtagatgaaaaaatcatctcctgcgttcccccatatctctaggataaaaaggaatgtaacaatctcatggcgtaagctgacgaatcagcaggaataatcgctagggacctaagaattagcatgataatagccactaagaaattactgcgctccatgaaatagccattttgtggcaaatggagttgactaataatgtcatatgtgagacggctagttgaacgaatattaaattttgctgaattttttatgttgattttacttgttacagaacatatcacatgatatatagataagattagttgcattaatgatgagggttattattagattcgtatccgattgataaatatataaaggtacatagcatgcaagagcatggcgtttgtatggcaacgttattataattaacagttgctactccatttaagttcactcagaagaactggtccacttacgttagttattaagcaaacgttcgcttttataaacataatcaggataaaaatgttggattattgctaacccagcacagctagtgcgcgtctgtaattataagggaaaaacgatgaagaataaggctgataacaaaaaaaggaacttcctgacccatagtgaaatcgaatcactccttaaagcagcaaataccgggcctcatgcagcacgtaattattgtctgactttgctttgttttattcatggtttccgggcgagtgaaatttgtcgattgaggatttcggatattgatcttaaggcaaagtgtatatatatccatcgattaaaaaaaggcttttcaacaacgcacccgctattgaataaagaagttcaggctttaaaaaactggttgagtatccgtacttcgtacccgcatgctgagagcgagtgggtatttttatcacgtaaggggaatccgctttctcggcaacagttttaccatattatctcgacttccggtggtaatgccgggttgtcactggagattcatccgcacatgttacgccattcgtgtggttttgctttggcgaatatgggaatagatacgcgacttatccaggattatcttgggcatcgcaatattcgtcatactgtctggtataccgccagcaatgcagggcgtttttacggcatctgggatagagccagaggacgacagcgtcacgctgttttatagagatagttgagataccagggatggtgttaaaaactacattattcttacgatatatcaaaaatgattaaccatttattaattgatgttattgtaagtgtgattcttaattatcataataaacattaagttaaccatatccatacaaaatacaatggtttatgttcttcaaaataaataaacaaaatcattcataaatttacacatcacttaaaatctcctgtttccgcacttttttctttattttttaagcaactggaagttaatccactgcaatctattgttatattgaatcaaatcaatgaaaatagatgttgtcacatcagtgatattttatttttgtatgatatttaatgtaattgactgatagccacatcactccgtgtgtggttatctttttatctattgggctaattttgaccgattgaggtttcctataggtattcattcaaatatatctcagttaggagtactactattgtgagtaaacgtcgttatcttaccggtaaagaagttcaggccatgatgcaggcggtttgttacggggcaacgggagccagagattattgtcttattctgttggcatatcggcatgggatgcgtattagtgaactgcttgatctgcattatcaggaccttgaccttaatgaaggtagaataaatattcgccgactgaagaacggattttctaccgttcacccgttacgttttgatgagcgtgaagccgtggaacgctggacccaggaacgtgctaactggaaaggcgctgaccggactgacgctatatttatttctcgccgcgggagtcggctttctcgccagcaggcctatcgcattattcgcgatgccggtattgaagctggaaccgtaacgcagactcatcctcatatgttaaggcatgcttgcggttatgaattggcggagcgtggtgcagatactcgtttaattcaggattatctcgggcatcgaaatattcgccatactgtgcgttataccgccagtaatgctgctcgttttgccggattatgggaaagaaataatctcataaacgaaaaattaaaaagagaagaggtttgatttaacttattgataataaagttaaaaaaacaaataaatacaagacaattggggccaaactgtccatatcataaataagttacgtattttttctcaagcataaaaatattaaaaaacgacaaaaagcatctaactgtttgatatgtaaattatttctattgtaaattaatttcacatcacctccgctatatgtaaagctaacgtttctgtggctcgacgcatcttcctcattcttctctccaaaaaccacctcatgcaatataaacatctataaataaagataacaatagaatattaagccaacaaataaactgaaaaagtttgtccgcgatgctttcctctatgagtcaaaatggccccaaatgtttcatcttttgggggaaaactgtgcagtgttggcagtcaaactcgtttacaaaacaaagtgtacagaacgactgcccatgtcgatttagaaatagttttttgaaaggaaagcagcatgaaaattaaaactctggcaatcgttgttctgtcggctctgtccctcagttctacagcggctctggccgctgccacgacggttaatggtgggaccgttcactttaaaggggaagttgttaacgccgcttgcgcagttgatgcaggctctgttgatcaaaccgttcagttaggacaggttcgtaccgcatcgctggcacaggaaggagcaaccagttctgctgtcggttttaacattcagctgaatgattgcgataccaatgttgcatctaaagccgctgttgcctttttaggtacggcgattgatgcgggtcataccaacgttctggctctgcagagttcagctgcgggtagcgcaacaaacgttggtgtgcagatcctggacagaacgggtgctgcgctgacgctggatggtgcgacatttagttcagaaacaaccctgaataacggaaccaataccattccgttccaggcgcgttattttgcaaccggggccgcaaccccgggtgctgctaatgcggatgcgaccttcaaggttcagtatcaataacctacccaggttcagggacgtcattacgggcagggatgcccacccttgtgcgataaaaataacgatgaaaaggaagagattatttctattagcgtcgttgctgccaatgtttgctctggccggaaataaatggaataccacgttgcccggcggaaatatgcaatttcagggcgtcattattgcggaaacttgccggattgaagccggtgataaacaaatgacggtcaatatggggcaaatcagcagtaaccggtttcatgcggttggggaagatagcgcaccggtgccttttgttattcatttacgggaatgtagcacggtggtgagtgaacgtgtaggtgtggcgtttcacggtgtcgcggatggtaaaaatccggatgtgctttccgtgggagaggggccagggatagccaccaatattggcgtagcgttgtttgatgatgaaggaaacctcgtaccgattaatcgtcctccagcaaactggaaacggctttattcaggctctacttcgctacatttcatcgccaaatatcgtgctaccgggcgtcgggttactggcggcatcgccaatgcccaggcctggttctctttaacctatcagtaattgttcagcagataatgtgataacaggaacaggacagtgagtaataaaaacgtcaatgtaaggaaatcgcaggaaataacattctgcttgctggcaggtatcctgatgttcatggcaatgatggttgccggacgcgctgaagcgggagtggccttaggtgcgactcgcgtaatttatccggcagggcaaaaacaagagcaacttgccgtgacaaataatgatgaaaatagtacctatttaattcaatcatgggtggaaaatgccgatggtgtaaaggatggtcgttttatcgtgacgcctcctctgtttgcgatgaagggaaaaaaagagaataccttacgtattcttgatgcaacaaataaccaattgccacaggaccgggaaagtttattctggatgaacgttaaagcgattccgtcaatggataaatcaaaattgactgagaatacgctacagctcgcaattatcagccgcattaaactgtactatcgcccggctaaattagcgttgccacccgatcaggccgcagaaaaattaagatttcgtcgtagcgcgaattctctgacgctgattaacccgacaccctattacctgacggtaacagagttgaatgccggaacccgggttcttgaaaatgcattggtgcctccaatgggcgaaagcacggttaaattgccttctgatgcaggaagcaatattacttaccgaacaataaatgattatggcgcacttacccccaaaatgacgggcgtaatggaataacgcagggggaatttttcgcctgaataaaaagaattgactgccggggtgattttaagccggaggaataatgtcatatctgaatttaagactttaccagcgaaacacacaatgcttgcatattcgtaagcatcgtttggctggtttttttgtccgactcgttgtcgcctgtgcttttgccgcacaggcacctttgtcatctgccgacctctattttaatccgcgctttttagcggatgatccccaggctgtggccgatttatcgcgttttgaaaatgggcaagaattaccgccagggacgtatcgcgtcgatatctatttgaataatggttatatggcaacgcgtgatgtcacatttaatacgggcgacagtgaacaagggattgttccctgcctgacacgcgcgcaactcgccagtatggggctgaatacggcttctgtcgccggtatgaatctgctggcggatgatgcctgtgtgccattaaccacaatggtccaggacgctactgcgcatctggatgttggtcagcagcgactgaacctgacgatccctcaggcatttatgagtaatcgcgcgcgtggttatattcctcctgagttatgggatcccggtattaatgccggattgctcaattataatttcagcggaaatagtgtacagaatcggattgggggtaacagccattatgcatatttaaacctacagagtgggttaaatattggtgcgtggcgtttacgcgacaataccacctggagttataacagtagcgacagatcatcaggtagcaaaaataaatggcagcatatcaatacctggcttgagcgagacataataccgttacgttcccggctgacgctgggtgatggttatactcagggcgatattttcgatggtattaactttcgcggcgcacaattggcctcagatgacaatatgttacccgatagtcaaagaggatttgccccggtgatccacggtattgctcgtggtactgcacaggtcactattaaacaaaatgggtatgacatttataatagtacggtgccaccggggccttttaccatcaacgatatctatgccgcaggtaatagtggtgacttgcaggtaacgatcaaagaggctgacggcagcacgcagatttttaccgtaccctattcgtcagtcccgcttttgcaacgtgaagggcatactcgttattccattacggcaggagaataccgtagtggaaatgcgcagcaggaaaaaacccgctttttccagagtacattactccacggccttccggctggctggacaatatatggtggaacgcaactggcggatcgttatcgtgcttttaatttcggtatcgggaaaaacatgggggcactgggcgctctgtctgtggatatgacgcaggctaattccacacttcccgatgacagtcagcatgacggacaatcggtgcgttttctctataacaaatcgctcaatgaatcaggcacgaatattcagttagtgggttaccgttattcgaccagcggatattttaatttcgctgatacaacatacagtcgaatgaatggctacaacattgaaacacaggacggagttattcaggttaagccgaaattcaccgactattacaacctcgcttataacaaacgcgggaaattacaactcaccgttactcagcaactcgggcgcacatcaacactgtatttgagtggtagccatcaaacttattggggaacgagtaatgtcgatgagcaattccaggctggattaaatactgcgttcgaagatatcaactggacgctcagctatagcctgacgaaaaacgcctggcaaaaaggacgggatcagatgttagcgcttaacgtcaatattcctttcagccactggctgcgttctgacagtaaatctcagtggcgacatgccagtgccagctacagcatgtcacacgatctcaacggtcggatgaccaatctggctggtgtatacggtacgttgctggaagacaacaacctcagctatagcgtgcaaaccggctatgccgggggaggcgatggaaatagcggaagtacaggctacgccacgctgaattatcgcggtggttacggcaatgccaatatcggttacagccatagcgatgatattaagcagctctattacggagtcagcggtggggtactggctcatgccaatggcgtaacgctggggcagccgttaaacgatacggtggtgcttgttaaagcgcctggcgcaaaagatgcaaaagtcgaaaaccagacgggggtgcgtaccgactggcgtggttatgccgtgctgccttatgccactgaatatcgggaaaatagagtggcgctggataccaataccctggctgataacgtcgatttagataacgcggttgctaacgttgttcccactcgtggggcgatcgtgcgagcagagtttaaagcgcgcgttgggataaaactgctcatgacgctgacccacaataataagccgctgccgtttggggcgatggtgacatcagagagtagccagagtagcggcattgttgcggataatggtcaggtttacctcagcggaatgcctttagcgggaaaagttcaggtgaaatggggagaagaggaaaatgctcactgtgtcgccaattatcaactgccaccagagagtcagcagcagttattaacccagctatcagctgaatgtcgttaagggggcgtgatgagaaacaaacctttttatcttctgtgcgcttttttgtggctggcggtgagtcacgctttggctgcggatagcacgattactatccgcggctatgtcagggataacggctgtagtgtggccgctgaatcaaccaattttactgttgatctgatggaaaacgcggcgaagcaatttaacaacattggcgcgacgactcctgttgttccatttcgtattttgctgtcaccctgtggtaatgccgtttctgccgtaaaggttgggtttactggcgttgcagatagccacaatgccaacctgcttgcacttgaaaatacggtgtcagcggcttcgggactgggaatacagcttctgaatgagcagcaaaatcaaataccccttaatgctccatcgtccgcgctttcgtggacgaccctgacgccgggtaaaccaaatacgctgaatttttacgcccggctaatggcgacacaggtgcctgtcactgcggggcatatcaatgccacggctaccttcactcttgaatatcagtaactggagatgctcatgaaatggtgcaaacgtgggtatgtattggcggcaatattggcgctcgcaagtgcgacgatacaggcagccgatgtcaccatcacggtgaacggtaaggtcgtcgccaaaccgtgtacggtttccaccaccaatgccacggttgatctcggcgatctttattctttcagtcttatgtctgccggggcggcatcggcctggcatgatgttgcgcttgagttgactaattgtccggtgggaacgtcgagggtcactgccagcttcagcggggcagccgacagtaccggatattataaaaaccaggggaccgcgcaaaacatccagttagagctacaggatgacagtggcaacacattgaatactggcgcaaccaaaacagttcaggtggatgattcctcacaatcagcgcacttcccgttacaggtcagagcattgacagtaaatggcggagccactcagggaaccattcaggcagtgattagcatcacctatacctacagctgaacccgaagagatgattgtaatgaaacgagttattaccctgtttgctgtactgctgatgggctggtcggtaaatgcctggtcattcgcctgtaaaaccgccaatggtaccgctatccctattggcggtggcagcgccaatgtttatgtaaaccttgcgcccgtcgtgaatgtggggcaaaacctggtcgtggatctttcgacgcaaatcttttgccataacgattatccggaaaccattacagactatgtcacactgcaacgaggctcggcttatggcggcgtgttatctaatttttccgggaccgtaaaatatagtggcagtagctatccatttcctaccaccagcgaaacgccgcgcgttgtttataattcgagaacggataagccgtggccggtggcgctttatttgacgcctgtgagcagtgcgggcggggtggcgattaaagctggctcattaattgccgtgcttattttgcgacagaccaacaactataacagcgatgatttccagtttgtgtggaatatttacgccaataatgatgtggtggtgcctactggcggctgcgatgtttctgctcgtgatgtcaccgttactctgccggactaccctggttcagtgccaattcctcttaccgtttattgtgcgaaaagccaaaacctggggtattacctctccggcacaaccgcagatgcgggcaactcgattttcaccaataccgcgtcgttttcacctgcacagggcgtcggcgtacagttgacgcgcaacggtacgattattccagcgaataacacggtatcgttaggagcagtagggacttcggcggtgagtctgggattaacggcaaattatgcacgtaccggagggcaggtgactgcagggaatgtgcaatcgattattggcgtgacttttgtttatcaataaagaaatcacaggacattgctaatgctggtacgcaatattacctgaagctaaaaacctgcacgttagccctttgtaggccagataagacgcgtcagcgtcgcatctggcataaacaaagcgcactttgctggtctgttcccctcaccctaaccctctccccggaggggcgaggggactgtccgggcacatttttagactttgtcatcagtctgagctgccattggcaggctctggtgtccttttacgctaccatgctaataatcagcacaataatcagcccaaccacggagttgaccagctccagcagaccccaggttttcaacgtgtcttttactgacaggtcaaagtaacctttgaacaaccagaaagatgcatcgttaatgtgggtgagggtgttggaacccgcagccgtcgccagtaccagcagcgccggattcacgccaaccagctgaccagttgctggatctaggattgcagcactgataatcccggcggcggtcatcgccgaaacgacaccctgacccgtcgccagacgaattagcacagtgatcagccatgccatgatgtagggcgagatattgccgtgggacatcaacatgccgatggtgtcgccaatgccggtgtcgatgatggtctgcttcagcacgccacccgcaccgatgatcagaatcaccattgcaatactcttcaccgcgctttcaaaagcgttcatcacccactgcatgtcatgaccacgtgcggtgccaaagagtacgaatgcaaccaccatcgcaataaacattgcaatcggcgaggaaccgataaagttaaccacttcccaggcaggggtatcttttaccagccagatattggcgatggtggtagagatcataatgatcgccgggatcagcggcaccagaatcgaaacgccgaaagagggcagattattcatatctaccggttgatctgctttcaggaatgatggcgttgggcgctcaagattgccgaggaacttcggcaggatcagacctgcgcagattacacttgggatcgtcaccagtacgccatagatataaaccatccccatatccgcgccataagcattcaccagcgccaccggacccggctgcggtgggaacagtgaatgtgcggtagtggcagctgctactgccgggatcgccagtttcaggaacggaattttagcttcggcggcaataacaataaccagcggcgctaacatgataaaggccacttcatagaacatcgccagaccaaaaatcaggccgatgataatcaccgacagctgtacatagcgcagaccgagacgcgccagcagcgtatgcgctatctggtgagccgcgccggagtcgaccatcaatttaccgatgaccgcaccgaacaccacgatgatagccagttcccccagcgtgttgccgaagcccgctttcatagtgtgcagcagcgacatcaaatccatgcccgccagcatcccgacggacagcgccgccaccaacaaagccaccattgaattgattttgaacttcaaattcagtaccagcatcagaccaatgccgaataccacccagagaatgttaagcacatgcataacgttttaccttacctggttgaaccgttgttattttgggcgatatgttatgtaaattggtcaaccattgttgcgatgaatgtcacatcctctgatcaataaccatcgattaccctttgctgcaatttgcagcaacaaccatgagagtgaaattcttgtgatgtggttaaccaatttcagaattcgggttgacatgtcttaccaaaaggtagaacttatacgccatctcatccgatgcaacgccacggctgcggtctggttgttcatccggatacctaaacaactccagggttccgcgtctctttgctgtggaacccactatgtgaaagaggaaaaatcatggaacagacctggcgctggtacggcccaaacgatccggtttctttagctgatgtccgtcaggcgggcgcaactggcgtggttaccgcgctgcaccatatcccgaacggcgaagtatggtccgttgaagagatcctcaaacgcaaggcgatcattgaagacgcaggcctggtgtggtctgtcgtagaaagcgtgccaattcacgaagatatcaaaacccacactggcaactatgagcagtggatcgctaactatcagcagactctgcgcaacctggcgcagtgtggcattcgcaccgtgtgctacaacttcatgccggtgctcgactggacccgtactgacctcgaatacgtgctgccagacggctccaaagctctgcgcttcgaccagatcgaattcgctgcattcgaaatgcatatcctgaaacgcccaggcgcggaagcggattacaccgaagaagaaattgctcaggcagctgaacgcttcgccactatgagcgatgaagacaaagcgcgtctgacccgtaacatcattgctggtcttccgggcgcggaagaaggctacaccctcgaccagttccgtaaacacctggagctgtacaaagatatcgacaaagcgaagctgcgcgaaaactttgccgtcttcctgaaagcgattattccagttgctgaagaagtcggcgtgcgtatggctgttcacccggacgatccgccgcgcccgatcctcggcctgccgcgcattgtttccaccattgaagatatgcagtggatggttgataccgtaaacagcatggcaaacggttttaccatgtgcaccggttcctacggcgtgcgtgctgacaacgatctggttgatatgatcaagcagttcggtccgcgtatttacttcacccatctgcgctccaccatgcgtgaagataacccgaaaaccttccacgaagcggcgcacctgaacggtgacgttgatatgtacgaagtggtgaaagcgattgttgaagaagaacaccgtcgtaaagcggaaggcaaagaagacctgatcccgatgcgtccggaccacggtcatcagatgctggacgacctgaagaagaaaaccaacccaggttactccgcaattggtcgtctgaaaggcctggccgaagttcgcggtgtcgaactggcgatccagcgcgctttctttagccgttaatatccaccggcatggctgcgcgccgtgccggttccttcttccttgccgtcactctttgaagacggattctggagtttacgatgactactattgttgacagcaatctgccggttgcccgcccgtcatgggatcattctcgtctggaatcacgcattgtgcatctcggttgcggggcgtttcaccgcgcgcaccaggcgctgtatacccatcatctgctggaaagcaccgacagcgactggggcatctgcgaagttaacctgatgccaggcaacgaccgcgtgctgatcgaaaacctgaaaaaacagcaactgctgtacaccgtagcggaaaaaggcgcagagagcaccgagctgaaaattatcggttcgatgaaagaagcgctgcatccggaaatcgatggctgcgaaggtattctcaacgcgatggcgcgtccgcaaacggcgattgtctctctaacggtcacggaaaaaggctactgcgctgatgcggcaagcggtcaactggatctcaataacccgctgatcaagcacgatctggaaaacccgactgcgccgaagtccgcgattggttacatcgtcgaagcgttgcgtctgcgtcgtgaaaaagggttgaaagcgtttacggtgatgtcctgcgataacgtgcgtgaaaacggtcatgtggcgaaggtcgcggtactggggctggctcaggcgcgtgacccgcagctggcggcatggattgaagaaaatgtcaccttcccgtgcaccatggttgaccgcatcgttccggcggcgacgccagaaaccttacaggaaattgctgaccagctgggtgtttacgacccgtgcgccattgcctgcgaaccgttccgtcagtgggtgattgaagataacttcgttaatggtcgcccggattgggataaagtgggcgcacagttcgttgcagacgttgtgccgttcgaaatgatgaagctgcgtatgctgaacggcagccactcttttctggcgtacctcggttacctcggcggctatgaaaccattgccgacaccgtgactaacccggcttatcgcaaagcggcctttgccctgatgatgcaggaacaagcgccaacgctgtcgatgccggaaggtacagacctgaacgcctatgcgacgctgctgatcgagcgtttcagcaacccgtctctgcgtcaccgtacctggcagattgcgatggacggcagccagaagttaccgcagcgtctgctggacccggtgcgtctgcacctgcaaaacggcggcagctggcgtcacctggcgctgggcgtggctggctggatgcgttacacccagggcgtggatgagcagggtaatgccattgacgtggtcgacccgatgctggcggagttccagaagatcaacgcgcagtatcagggcgcagaccgcgtgaaagcgctgctgggcctgagcggtatttttgccgatgatctgccgcagaatgccgactttgttggcgcagtgacggcggcatatcagcagctgtgcgaacgcggtgcgcgcgagtgtgtggctgcgctgtaactaactgattaccctacagacttactggtcaatcaaactgatatttggttgaccagttttcgtttttttgcccacctgtacgtgccaacttccagtgctaatggtatagtttgagattaacgggggccgtaaaattgcccgttgtaggccggataaggcgttcacgccgcatccggcaaaaatttgattaaccgcacctaacggacacaacaccatgaaatctgccacctctgcgcaaagaccttaccaggaagtcggggcgatgatccgcgatctgatcataaagacgccgtacaatcctggcgaacggctgccgccggagcgtgaaattgcagaaatgcttgatgtcacgcggacggtggtacgtgaagcgctgatcatgctggagatcaaagggctggtggaagtacgccggggtgccggtatctatgttcttgataactcaggcagccagaacacagacagtccggatgccaacgtctgcaacgatgccggtccttttgagctgttacaggcgcggcagttattggagagcaacatcgccgagtttgccgctttgcaggctacccgcgaagatatcgtcaaaatgcgtcaggcattgcaactggaagagcgtgaactggcttccagtgcgccgggcagcagcgaaagcggtgacatgcagttccatctcgctattgccgaagcaacgcataacagcatgctggtggagctgttccgtcagtcctggcagtggcgggaaaacaatccaatgtggatccagttgcacagccatctggatgacagcctgtatcgcaaagagtggttgggcgatcacaaacagatcctcgccgcgttaatcaaaaaagatgcccgagcggcgaagctggcaatgtggcagcatctggaaaacgttaagcaacgtctgctggaattctcgaacgttgacgatatttattttgatggctatctgtttgattcatggccgctggataaagtcgacgcctgacttattataataagcgcaagggtaaacgttccttgcgctttcttaaattaagaagtcgcaatgagtattactttgtaaattgcagggtattgtttagctatctgtataacctgaatgttagtactcattcttcctggtagttatttaccaatataattccattcaccattttttaattcaaacagttctggaagagatgacggttgcagagtcatacgtttgagtggtgcattttcatcacccgggataactttatatcccatttttgcatggatctccgcggtaccgggataggcttctataccaattattgggtcattacccaactcaatattagcattaagtaatgcggcaagggcgaatccggaagaatttgctacccctgttaccgtcattatctgatcaatatagatatcaatccttggctgctcattggtccatctttttgcctgagaagctggaagggttgaaatatatcctatcgtggttccggcataaccaggaacattgcaaccagggcctaatgttatttcatgaactgtatagtcctcaacaggatcgaaagggctcttcataaataaatttagccgtaaaccttctgctaactctgtggtagcatgcgcctttttacatatgccaccatatatttcgtctaaagctgaggtgattttcaagttccgatagagcatacgtcctgttgttgtaataccatcggattctctgcatgctcctgtcacataattaaatggccaaggctctttactaatatcaagttttctaatttcgacaacgctttttccatcgtaattatggttattgccacgagtaagaggcggaagatagatgttttccgaatccatgcgtgcatattttaatttacgtgtaaactcactgtcgactattgggtgatgaaggaagtgagcatctgtaataatttgactctgaagggcattgcttaatggcatagacataatagttaccttttatgagtatttcactgatgtttagaaaaatagataaatttttctgtagtaaaaagagaagtaaacaaatgacatgcatgtttctgttgtagtgatatcaactctacacggtgatattaaagggtaggaaacactctaaagtatcaaaaaacgctcatttaaaattatttgcatgcaatttaaaagcatatcttattactaattggaatttgatgttgctatattgaggtctatattaataatgcctgtgaatggtatttttgatgtatttgatatgttatcaatttatattatttacaaactaattgtttcaaataatacatggctgattatgcggaaataaataatttcccaccggaattaagtagcagcggtgacaagtattttcatctacgtaactattcggaatattcagaatatactagcggtttttttttgagtttgatgatttttatcaaatcatgacttttttcctgaaaagtcagtagatattcataggcaagtaaggttttatactttgctgacaggattcaggcctgtctcagactgacatggatgtaatgaacaaaagggaatggctatggaaaatgagcatcaatacagtggtgcccggtgttcagggcaagccgcatatgttgctaaacgtcaggagtgcgcaaaatgatgcgacaatcacttcaggctgttttacctgaaatttcaggcaataaaacgtcatcgctgcgtaaatcggtatgcagcgatctcctcactctttttaattctcctcattcggcattaccgtcattacttgtttcaggcatgcccgagtggcaagtgcataacccgagcgacaaacatctccagagctggtattgccgtcagctgcgttctgcactgttatttcatgagccacggattgcggcgttgcaggttaatttgaaagaagcgtactgccacactctggcgatcagccttgagataatgctgtaccacgacgatgaaccgctaacgtttgatctggtctgggataatggcggttggcgcagtgcgacgctggagaatgtcagctaagcacaatctccagctcgcgcagttcacgccagaagcgttcggcaacgggattcatgcgggtattcatccggtatgcataggcctgaatcgggatcaccagttcgtcccgattcagtacaacgagcttcccgctgcgaatttcttgttggatggcgtactccggcagccaggcaatcccacagccgtcgagggcaacctgctttaaaagctcgctcatcgaagagacaaaaaaggtgctgaaacttaactcactgtggcgcgtcagggtgcgattaatcaatcgccccatgtaggagttgcggctgtaattcagtaacggaaagtgtggctgcgcgaggttaaaaagtgcttctccgtgttcgtcactggcgcagacagggaacaattgagattcaaataagcgaatgtggtcaaacggcgcttccagcaaatcttcgtcgtgaaaggaaaaaatacagtcactttgcccttcacgcagtttatcgaccgcttcatcgacatcaatagcttcaattgcccaggtaaagagcggcggcatctggctgataatggacggtaacagcccgagggaaagagagtgtgcagcggctatcttgatttttcgttgcgcgtaatcgctgccgccacgcagctctgccagattgctctctaactgttgcaacagatggcggatctgcgaatggaagattttcccttgttctgagagttgcagcggcgttacctggcggttaaacaattcaacaccaatcgcctgttccagcgcacggatgcggcggctgaatgccggttgcgagacgttgcgactgactgccgcctgggaaaaattgcggcatttttccagggtcagaaaatcataaagccatttggtttcaatattatgcaaaatcgcaccacagtcatccattacgttttactctgtcagccgcccttgcgggcattctacgtccattcgggcggctgacaaccgtttaagccgtttcaaacgttcctttcacgcaggctttgccgtctttgaccatcagtttgccgcgagcgtatacctgctcaatgcgcagttctggcgtcatgaccagcaagtcagcatcattgcctggcagaatttcgcctttcccggtcaggttaaggaaaccggctacgctactggtgagcgggcgcagggcatcgctgatactgaaatcatagtctttgaccagcacctgcacggtttccagcaacgtttcaaaaccggcaacaccgatatgggttaaattcccttcgtcatcgaagaacggctggctaccgttgccgtcggagctgagggtgacgcgtgccagcggaatacccgcctgaacggcgcgggcaataccttcggcaggggcgaccggttcgtcaatgctgctggtgatatcgatggtgccgcctttgcgcgcgaactccagcgcctgctcaaacaacggtacgttgcggttaacgtgggtcggcagcagcttgctgatcggcacatcgcagttttccagcaggtcataaataggctgtaacgcctttttactgtcgcccatgtggaacacggtgacgccaggtttaccgccgagcaaaccgccaacgcgggattctgccgccatattggccaggtgataaacgtccggtgcggcagaacggtgatcagagatggcgcatttcacgccaatcacacgatcgataatcgccacgtctttttccacggaacccgtaatggtgcgggaagggacatgataagcgccggtcagcatccaggcgctgatgccttcttcattgagcgcacgggtcttggcgagcagggattccgggtggcgagagatagagtcggtgcccagcagaccaaccactgacgtgacgcccgcttccgtcaggcgacttagcgccacttccggcgtgcgcgtcgtgggacctgcttcgccgccaccgccaatcaaatggacgtgttgatcaataaaacctgggcagaggatctgcccactgagatcgacaaccgtgcagttcggtacaatgtcagaagggatattgctggcaacggcgataattttgccgttagcgacgaggacatcgcaaattccccgatcttccggcgcatacaaatgcgctccctgcagcagggtaaaaccggctgcggtataatcaatcatggtaactccttgttaaacaataagctgcataacccagatcgacagcaatgcgttaatcacgcagaccgtaatgatatgcgggtaatatttggcattcacttcggctgtccccaggcagcgaccgacattttgcaccgggttgcccattaaatacatcgcgggcagtaaaacggtgacatcgtgaccggttaatgcgccagcggttgccagactggcggcaacaccgactgcgccacccatactcattaatgcggctaaaaggacggttgccgcttcaccgggtaatccccacagcgccattacgggttcacagatatgccccacccagtcgagcaggccggtaattttcagcgcctgaatgatgacaaacgccatcaccacgtttggcagcaggttggtcgtggcgatagtaaagccacggcgcgcgccatcgataaacatatccatgacgtttttgcggacctgagttgtcatgcttgcgctccttgcgttgggttgcgacgttcttcgaagttaagccagacgcgcaaaatgttggctccgacaaatttaaacaccaggatgacggctaaaggtacgattacggacgtgcccagaaaggcaaacaccgcgacgccggaagagaagtagttggtgatgatggcgctaccgctggtttgatatgcggcgaaaatcactttatcgcgttcggtaatttcaccttcctgcgccagctctttggtcataccggcggcggcatcggtgttttgcaggttagcgatcagcgccagcgagcagatccctggaatgcccaacaacggttttagcacaggtgtcattaactgctgcgcggcgcgtaatccaccaagaccatcggtaattgaaataatccccagagagagaatgactgacggtgccagctccagcgcaaagagaaagccatctttagcccccgcgccacccgcgccgcgaaatgaggtggtggctccgttcgcaccaggcagttgcccaaacgatccgttcagaacggaaaaatcaaaaacgcgccaccagctgtctgttccggaaaaaacaccggaaaaaaagattatggtgagaaaaaaggccagataccctttaatgcccactttttctgtcgccagctccccggctacagcatccccttgttgtgtcataacaatccccattgtttttttgtgtttgtgtgttgcttgagccaggaaaattcctggaactgaaaaaccttatcagccatgtgggtatggggaaaatgcaagtatgtttctggctatgcgttttttgcatagcggaaaaattacgctgtgtggaaaaggctctgcgcaggattgagttgcagaaaattcataaaccaagtgacaatgacatcagtaaataaaaacagaaaatccagggacgaaaacgagatggcaaagtacaacgaaaaagagctggcggatacgagcaagtttttaagttttgtcctccgacacaaaccggaggcgattggtatcgtactggaccgtgaaggatgggcggatatcgataagctcatactttgtgcccaaaaagcgggcaagcggttaacccgtgcattgctggatactgtggttgccaccagcgataaaaagcgttttagttattccagtgatggtaggtgcatccgcgcggttcaggggcattcgacttcgcaggtcgctatttcctttgccgaaaaaacaccgccacagtttctctaccacggtacggcaagccgtttccttgacgagataaaaaaacaggggctgattgcaggtgagcgtcactacgtacatctctctgctgatgaagcaacggcacgcaaagtgggagcaagacacggatcgccggttattttaaccgtcaaagcacaggaaatggcgaaacgaggcctccctttctggcaagcggaaaacggggtctggctgacatcaacggttgcggttgagtttcttgagtggtaagggaaacttccctcatgaagtgaccacttgtagcttaaataattgcactgtgctgataagcgcagcaataaacaacgccgccgcgccgcagagagtggcgctggcaagcgccgatgttccattgctgagcatactggtcagcgccgggccgaggatttgcccaatgccgtaaatgagcgtcacaaagcctaaaagattgagatttcccggtacgctcagttggcgggcgatagtcatcaccagagatgtcgtgcccataaaggtaccgccaaaaccaagactgctgatgataagcaagagaggcgagtcgctggcgagagtaagcagcacacagatagcctgcaccagcaaattcgccgtcaggcagggcaaagccccccaacgttttgctgcccatagccagccaaagcaaccaggcacaattgataagccgactaacgtccagagatgggcggttaacaatggtgagcctgcatctttcgccatgagcggcaggtaagtcgcgacgatgatataaccaaatcccgccaggccgtacagaatagccagtaaccaccagctcattatctgttgctccgtttttgccaatggcattggtgtgatggcgtgttttttcgagggcattaaaagcgtaagtgcaatcagcatcatgccagaaagcgccccggcgccttgccataacgtttgcgaggagaggtcaaaatgcaggcctgccagaacatattcattgcccagtgcgatgccaatgccaacgccagaaaacaaagctgccagcacaaaaggatggcgcgtgtgctgcataatcagcgtcgaaccaaaaatcagcataccggcgctggcgacacccgccaggacgcgaatcaataacaccagaataaatggcggcaaccatgccattgcgaggatcaacaacccgctcgccagggcagaagccaacagaaatgggcgcaggcgcgatggctggtgaaatgcgccaaaagaaaatagcagactgccagccagataccccgcatagttgccgctggcaatccacgagagctggctaaatgaaaacgatccttccgccatcatgacgggcaacataggcgtataaaggaagcggcctaaacccatacctaaggtcagaaccagcatcccgaaaagcgcggtgctgaaagaaaagcgttctacgggatgcgtggacgaaggcatgtttaaccttgtttgtcatttttgttgttaacaagttaataacaaaaaggtgaagcatgccagcctgttaatgcgatgattgaggggtaaagcgataaaaacgatttggttcgctaacgatataaatattaccagaggcatccatcgcaaccccttcggcctgtttgatgttatgcgacaaacctcgactgcctttggttagtgacatttcaccgataacctcgccaaccagggttacttcctggagtgcgcgagattcatgagacagcaccagaagcgtatttttttgctggttaaattctgcgccggacacatcatctaaagtaaattgccgttgtagtgcctcgtctttgctgatgtgtaattcattgctacttaacagcccgttaactttgtagacctcaatcggatttttctctttaaaaaaccagaaagtgtgatcctggcgagaataagccaacccttcaaaaccgcaattggttggggagtcttgcagcgggatttttatttttttgaggatttttacttccgagtttggggtcagtgaaatcacataaatggcgtaatcgcgctcatcgctaatgacaaactgattatcgccaatgtattcgatcgtctcgagatccttaacaaaatccagaggaattgtgcggataaaatcaccattggtggtcatttcaacaatggcggcaggtttgttgatagtgctaaaaagagtattgctttgtgccgaccaggtcagcgaagagatattattcgttatgcctgcaatttctttgccgtcaatggtggcgtggtaattctgaaatgatgctgcatgattgcttttacgggcgcaagattgcacgaagaaagtacacactgccacaatggcaaaaagaatcacaataatggagatgcgtttacttaacgaaatactttttgtcacggtaatccctttaaggcaaatcaataagatatcgagaagtatacgtagcgaccttaatgaatccttaacgcggagaaaccccgtaatgtgcaatgcagcgccagacaccatcctgctggcaataaattgactcagtcagcccagggatcacccattgtatttcctcgccggggggacaggtcagccaaatgcataacccgcagccgccgcgtaaatcacggggaatatcgctgacgcgaaaagtcatgcccgctgcctgcaacgctttgcgggtttgtatgacgccgaccgtggagtgaaataaaaataaaaactctttcatcggcgtgtcctcactcgttgaccaattaccgccgcgccaattgcgccagcaaattgcgcatcaggatgggtatttaccggcattcgcaggtgagattccagcatccgggcaaacttctggcaatgactaacgccaccagtaaacagaatcggcgcttcacaggagagacgagcaatgaaattggcactcctccgcgccatcgcgttaatcactcctgcgagaatcgcttctggcgcgacgcccgctgagcgcaggctgatcgcttctgattcagcaaacactgtgcacatactcgtgatggcgtgcggcgtgacattttcggtaatgctgtcgagttgctcgacgctggtgccaagcgtgcgcgagatcacctccaggaaacgcccggtgcccgccgcgcatttgtcattcatcaggaaatcgcacaggttaccgtcatcatcaagctgaatcactttgctgtcctgaccaccgatgtcgattaccgcgcgcgttgctggcgcaagaaaccgtgcgcccagcccgtgacaggagatttccgttacctgtttatcggcaaaatccaccagttgccgcccgtagccggtgagcgtcagaaacggcgttgtctctaacccttcgcgcagagtttcccaggcttcagtaattgctgttgccgggcgaaagggggttggaacgaggaaacggcgcgtaatcacgccgtctgccagtaagatccctttggtggcggttgagccggaatcaatgccaatcgaatatgccactgccactccttacagcatctcaataaaggccgcgacacgggtactgagctgcccgacatccgaggtggagtagtctgtttcaatagcgatataaggaatgttgtgctgctggcgcacatgacgtttaatcgccagcgattccaccgcgtaggtatggcacgcctgcaaaatcacatcaactacgccatcgacctgatattcctccaccatctggctgagcattttcaggcgctgatcgttcggcgaaacacaggagcagccaatcgccagatatttatccgccagcgcgtcgtagacatcgcccgtttctgccacgcattgctcggtcgctttcgccccggtgcagttttcataaccgacaacccagccgccattctcttcaatcgcgcgcaccactttttctgctgcgccgccaatcgggcagccggtgattaaaatgcgcggacgcgggtccagtcgctggccttcttcccactgctgacgaacgcgggcggtcattgcatccagttcattgatcaacgcctctttatcgaaccggaaggttgcgccgtaaaccactttcagaatgtcgctgccgctaagcgccggaggatttaactgcccaagatgataaaaattagccagtgcgcgacgttcgcggtttttcagcgcaatggcatcgcgcagagcatcttcgctaatctcgtgcccaaaacgttcttctaccgttttttgcaagcgcagcatctcggctttccataacgcacgcgaggcatcgtccttaacgctgttgggcaattgcatcacatgaacaggcttaaactccgccatgtattcatacattttctttttgccgtcgcaggtggtttcaccgaccaccagatccgaaaagtagaagtaggggcatttatcggttttgccgaagccgtagctgcttttaatcagcgggcagaggttgcgcggcagatctttctccgcttcttcaatggtttcatcagaggtggaacagagcgaaaccacaaccgcaccggctgccatcgggatctcttgcggcataaaggtgcagtaagtgccaaccagcggaatgccgcgctccttgagatccatgacggtgagaaagcctgtctggcgagcttcagagaactgatcgaaaatggcgggtagatcggtgacaagtgacatgattttccttccccgtaccacgggagataatgaaaagaggccacattattaccattcttttagtatggtttatttgatctctctcgcggttagccacttagtttttcatggatttctaaaaattgccgagggggaacaaggccgggagctgcgacagcaaatataaaattagcccaatacaaccgccaaccagcgtaccgttgacacgaataaactgcagatctttgccgatatttaactctatttgccgcgacatatcccgcgcatcccagctttttaccgtatcgctgatgtggcgcgtcaggaatgcggaaaactcaggcgcgacgcggtgcgcggcttgttcaagatgaccatttaacgacgcccgcaaggcatcatcggcaattaacgtttcgccaaaccattgacccgctcgtgcgatgcgttctttcacacgagaatcttcactgttgatatccactttcagccattcccgtaaatccccccacaattcactgagatagcgattaaaagcttcatcttctttcagatagctttttacggcatcggctcgcgctgccatttccggatcgtttttcagcttgtcgatcagggcgaaggtggcgcgatcaaacgcatggcggatctgatgcgcacgatcgcgactaatatcatcaagcaaagaattcaccgcgtcagaaaccaactccgcgctatgttcgcccaaccattcggtggggagaattttggctttcagtggatgctcgctctccagccagcgaacaatttgctgggcgataaacttgcgcgatttatcgcgctggagaagggcgatcaactgtgcgatcagcgtatccagcagcacctgatgacgatcgtttttggtcatactctccagcatcaacgcactggtgccggaaagatcgaccttatcaatcgcccgatggaccgcgcgcttaagcaggcgctgaatacgcgcatcatcggtaagttcgagaaaaccgctcatgatctgcaacagatgctgaccaacgcggcgggcgttttctggctggctaaaccagttgccaatcagcaacgccggttcgtggcgtcgaatcaatgccaccagggattgagtatcaagaaatttttcctgcacgaactggccgagattttcgccaatccggtctttattacgcgggataatcgccgtatggcgagaaatgatcggaatcggcacgcggcgaaacagcgccaccaccgcaaaccagtccgccagcgcgccgaccatcgccgcttcagcaatcgccttcacgccgctcacccaaaaattgggcggcaaaaacagcgtaacgacaaaggtagcagcggcgataagcagtaaagagagcgccaaccttttggcgcgtctgagttcgatgagtttattcataacgttaagaatagagcctgacggccggatcgcgcaaaaatcactgctcctccactagctcggctgcctgatgctggcgcacgcgattgagcaatcccgccagggtgaaaacgacgataacgcccgccacaacggctaacagatgaaacggcaagcgaccgccgttaaaccatagccagcggccgatttcgaccgagaccgacatcaccatcaggatcaccatatttagcgatgcggagacggtccctttcggtaacttattggaaaacagcgtaaagcggaataaggtcgggaaaatcaaaccaatcccgaaagcatacagactggtgcccagcaccgaccacagccagacgtgcggcgacagcagattgccgacaatcaacagcgagaggccgaccagttgaatgggtacggcacgccagataaaccgcggttcggtcggatctttaacaaaacgcgccacgatggcattcgcaacaatcaccgcgccgaacaccggaacctgtgtccaggcgaactgcgaagttgttaagctgcctgcatcgataaggatcaccggcgagacagccacccagctcatcatcgggatatagcttaaagagatggttgctgcgccaaagaggaacagccgattgcaaaagacattacgaaaatcgcgcaagacgcttttggcgctaaacggaaccgcgccgcgcttcaccgtctctggcatcgccaacagtaagccaacaaatgagataaaacccataaccgcaatgatggcaaaaaggactttccagtgcataaagtgcatcagagctgcgccggaaagcgggccgataatcggcgcaatcagtacgatggaggtgataatcgccatcaacttgatcccttttgtctgtccgaacgcctcctgcaccgtgacataaccaacggtggcaataaaacagatactggtgccctgaattgcacgcgcgataagaaactgtgtcatagacgttgtgaacattgtcgcggcgcaggcaagggtaaaaattagcgccccggtaatcagcaccggcctgcggccaattctgtcggaaagcggccccagcagccactgtaacgccataccgccagcaagatagagactgacggcagcaggggccagactgacatcggcattaaaatcacgtaccacattaatgatcccaggctggatcagatccgtcgacagatacgcagcaaagtcatacaaaatcaacgccatcgggaaaaacagcgtggcggcatggcgggtaaaaaaacgtggcataacaaacaactccttgtccggagaaccccaacggggaaaacgaaattcaataccgtcggtaatgacgaaaggcaggtgagaagggcaacgagactgcaaatgtactgaatttcatgtaatcaaccacactgcctgtgaacacacagacagagaaatactttctgacttcgggtcagaatgtataacgattacaaatagtcatcagcacattacacctcttgaattgatgggttgcatagaaaatatacaccttaagtgtaattaaaatttgcggttaatcaaaagagcgcggtggaaaggggaatatctgccgggtacaggacatgtaaaacgcgagcttgtttccggaaaaatgtatcgtttgcagaagaataaaaatagcctggaaagcgcctcggggaatgggaaattgccgggtgagaatggttttgttagtcgctaaagtcaggccatctttttcaacaggtgatggatcgccatgacaaacttcacgaccagcacgccgcatgatgcattatttaaaacctttctcacgcaccctgacactgcgcgggattttatggagattcacttacctaaagatttacgtgaactgtgcgatctcgatagcttaaaactggaatccgccagctttgtcgatgaaaaattgcgggcgctacactccgatattttatggtcggtaaagacccgcgaaggcgatggctatatctatgtggtgattgaacatcagagccgcgaggacattcatatggcctttcgcctgatgcgctattccatggcggtgatgtagcgccatatagagcatgataaacgccagccgctaccgttggtcatcccgatgctattttatcacggtagccgtagtccttacccctggtccctgtgctggctggacgaatttgccgacccgactaccgcacggaagctttataacgccgcgttcccgctggtggatgttactgtcgtgccagacgacgagattgtgcagcatcgcagagtcgccctgttggagttgatccaaaagcatattcgccagcgcgatctgatggggcttatcgatcaactggtagtattactggttacagagtgtgctaatgacagccagataactgcgctgttaaattacattttactgactggcgatgaagcgcgttttaatgagtttatcagtgaacttacccgtcgaatgccacaacacagggagcgaataatgacgattgcagagcgaattcataatgatggatatataaaaggggagcagcgcattcttcgattgttgttgcagaatggggcggatcctgaatggatacaaaagattaccggactttcggcagagcaaatgcaggcattaaggcagcccttgcctgagcgtgagcgctattcatggctcaagagctaatcagagacggatgacaaacgcaaagcagcctgatgcgctatgcttatcaggtctacataacccattaaatatattgaactttaaagatttttgtagacctggtcaggcgttcacatggcatccggcatgaacaaagcgtactttgcttaattcaggctggaacgtggcgatgacccagcaaagataaaacgagtcacaggttatgcatgagaggaaatcaggcgcttcgccgctatttcgaatttattccattgcccgatacacggcctcgccaatttgcttcagtgcttcgcgataggtttcgctgagcggcaaagcgcagttgatgcgcagacaattacggtatttgccggaagctgagaaaatcgagcctgccgccacctggattttcatgcggcacagctgccgcgcgacgcagaccatatcgacctgttcaggcaattctatccacagtaaaaatccgcctttcgggcgcgtaatacagatttcgcagggaaaatattcccgtatccagcaggtataaagcgccaaattgcgctgatagatctgccgcatccgccggatatggcgatgatagtgaccttccagcacaaacgttgccgccgccatttgcgtggacggcacattaaagctgctgatggcgtatttcatatgcatcagtttatcgtgataacgccccggtgcgacccaacccacgcgcaggcctggtgcaatacttttactgaacgagctgcacaacagcactcgcccgtcgatatcccaggaatgaatggtccgcgggcgcggatactccgtcgccagttcgccatagacatcatcttcaaaaatcacaatatcatgacgctgagcgagagagagaacggcccgtttgcgcgcgtccggcataataaatcccagcggattattacagtttggcaccagaatgatgcctttaatcggccactgttccagcgccagttccagcgcttcaacgctgatgccagtttctggatcggttgggatttcaatcactttcacgcccatgccgcgcagcatctgcatcgaaccgtaataacagggggattcgaccgcgacaatatcgcccggtttacacactgccattaacgccagcgacatcgagttatggcagccgctggtgatgatgatgtcatcggcggtgaccaccgagccgctgtcgagcatcaggcgggcaatctgctctcgcaatactcgctgaccggctaacaagtcataaccgagaacggtttgcagattatgctgcaccacccggcttagctcccgccacagcggtttcaggctgggcgcttcgacatccggtgtgcttttgcttaacggaacaatggaactgtcgctatgcgcctccagcatatccagcacctgatcccactgggtaatttccaccgggcgctgcaccggacgcgtcatcggcggtactggcggctgggctttacgttgtgcgacaaaataacccgaacgcggctgcggagtgatgagcttcatcgtctccagcgtctgatacgcctgctgcacggtgctgatactgacgccgtgctcctgacttaagctgcgcaccgacggcaatttctccccgtgacgatacagcccttgctcaatccgttcggcaagcagagtcgccagatgttgataacgcgtcatgctgtattccttatgtggaccatacagagagaaaaaccggtacagatgaggctaaaaaaccggatgcagatgctgttttaacctgtctgtatgttaaataaaagtaatatttgaatctgtattgtgaactgccagaaggtggatgatgaagcctctgaaagatgaggaggtagcagatggaatttcacgaaaacagagctaaagcgccgtttatcggcctggtgcaactctggcaggcggtgaggcgttggcggcggcaaatgcagacccgacgcgtgttacagcagatgagtgatgagcggttgaaggatatcgggttacgcagggaggatgtggagtgaggggggatatagatttatatataataaaacgtttttatgtttttaaattaagttataaaaattttcccgagacaattcatcaataggtatggagtgtacaggaatatcttcttcactaacctctttaaactcatgtcgataacggtcaaaaaacgcacagtgattacttgtgttttttgactgactttacaactctcattattcgctattgtgcagtttctctaattgttttataccctggaaagttaaatgtcagctactgaatactttttgattgtttgagatttattttcatttgaaattataaaatcaggtgataaatgagttgtgattaatagatggttgatatcatttttatctaaaattgatttatagtatcgacctgaaaaaatagttgttgccgcctgagtaactatacaatattctgaaaggttttctttcaaattagaaatgttgtggggttttgtttttgtatcttttatctctaaggagcttgctttgggtcaatcagaatacatttcatgggtaaaatgtacttcctggctaagtaactttgtgaatcttagagggttgagacaaccggatggccgtcctctttatgaatatcatgcaaccaatgatgaatatacccaattaacgcagctactccgtgcagtcggtcaatcacaatctaatatatgtaatagggactttgctgcctgttttgttcttttttgctctgagtggtaccgcagggattatgaacggcaatgcggatggacgtgggaccctatatataaaaaaatagggatttcattcaccgccacagagcttggtactatcgtaccgaaagggatggaagattactggctgcgcccaattcgattttatgaatctgaacgacgcaattttctcggaacattattcagtgaaggtggtttacctttccggctactcaaagaatcagacagtcgctttctggctgttttctccaggatccttggacaatatgagcaagcaaagcagtcaggtttttctgccctttcgctggcaagagctgtcatagaaaaatcagcgctgccaactgtttttagcgaagatacctctgtagaacttatcagtcatatggctgataacctcaattccttagtacttactcacaacctaataaatcacaaagaaccagtacaacagcttgagaaggttcaccctacctggcgaagcgagtttccaataccgttagatgatgaaacaggaacgcattttttgaatggactgctatgcgcagcctctgtagaggctaagcctcgactacaaaaaaataagagtacgcgttgccaattctattggtcagaaaagcatccagatgagcttagggtgatagtatctcttccggacgaagtttcctttcctgtaacaagcgagccgtcaactacgcgctttgaacttgccatttgtgaagatggtgaggaagtctctggccttgggccagcctatgcttctctggaaaacagacaggcaacagttcgattacgtaaaagcgaagtgagatttggcaggcaaaatccatcggcaggtttgtcgttagtggctcgtgctggagggatgattgttgggagcattaaacttgatgacagtgaaattgccattggtgaggtgccgttaaccttcatcgttgatgcagatcaatggctgttacagggacaggcttcttgcagtgtgcgaagcagcgatgttctgattgtgctccctcgggataatagcaatgttgctggttttgatggccaatcgagggcagtaaacgtattaggactaaaagcactacctgtgaagggatgtcaggacgttacagttacagcaaatgaaacttatcggattcgcaccggaagagaacaaatcagcatcggaaggtttgctctaaatggaaagcgtgcaagctgggtttgtcatccagatgaaacatttattggtgtaccaaaagtcatttctacactaccggatattcaaagcattgatgtaacgcgttacacgtgctgacaaaacagcattacagccagcaggaagtactgcgttggatcgatgtctgttcagggactcaacctaatgcaaaggatcccgcatttcttaaagtcagggcgcatatcttccagcgtaatacctagggaatatgggcttgtgttgataaagattgcagattaaagcacggtacaccgctcgacaaaggctggccctttggctatgtgtatgtgaaccagcgacaaaattgtgactgtggaagccctgtatacgaagttgcattctgtaatgattgtaatgagcctcatcttctggcacgggacaaaaagggcaaactagtccagtgggaaaataaaggtggcgatgaattctctttgcaggatgaagtacctgttgaacatgacgctacagaagaaaaagtcgaaaaagagaacagttttcagcctccgttgattattgccgcaggagagaccagcgaggcaggttataccctacaacgcctcgaccgtcagacgcgccgtattggcttattaacaatgacagcattccgctgattattaatgatattgaacaggtttgtagtgccagtggctgtggctacagaggcatgagtgggaaacagcccttccggcgtgcactattaggtgggccattttacgttactaatatcgtgcccaccgttctagagtattgtcaggactttaccagtgatgaaggcaaagagggcgtcggaccagattcgttgccaggacgaggtcgtcgactcatcacctttacagacagtcgacaagggacagcccgaatggcggtgcgtatgcagcaagaagcagaacgcagtcgcttacgcggaagcgtagtcgaaattctcagctggcatcaaaggacgcaaacgtctacagcgccgaatgccaatgccgatctggaaaaattagcggccagggcgaagcaagcccgtgagcaggcagaagaatatcgaagctggggaatgccagaccaggcgaaattgtcacaagcacaggctgaacagcttgaacaggcttatcaggctgcaaccggtgggaaagccgcgactatcctggtatcccgaacctggacggagatggttaacgagcttaaagagagagccgatatccgcgggccggttctgcaatataaccattatcttaagcctgaagtgtttaatgaaaacggcggcccccttaagctttctgaaatgttgttgttccgggaattcatgcgtcgccctaaacggactaacagcctggaaacacaggggctggttcaggttggttaccaggggctggagaaaatacataagagccccttgcactggcaggaaaaaggattaacgctggatgactggcgcgattttctcaaggttacgttggatcattacgttcgcgagagcaacttcacacagctggatgatgagctgaaaaactggattggtagccgtttttcatcaaaaattcgtccgtaacccggaatcaaaagatcctgaagataatcagaacagacgctggcctcaaattcgtaatggcaacgtatcccatcgtttagcgaagttgctgatgctgggggctggattcaaaaccgtcaatgcggcaactattgatattatcaatacatggctgaaagaagcatgggcccaacttaccggaccgcttgcagtactgaaacccgatggcaaccgtttttatttaccgaaaggagcatatgactttttctttaatcacggatgcctggatttgcccggtaaccaataaaatcctggatacggcttttaaaggcttaaccccttatctgcctacccatatttcgttcgagcatcttaccctggcgcaatatgacacttttgtcgcgcagaaagtcacaatgccggaaatctggaagctggatcgttcacaggaagactacgcagagggtctggcaaaagcacgcgactgggtcagccatgatccgctgatcgcacaattgcggtcggaaaacgtctggacagacattaacgatcgtgtcgtggaaggcggcttctactatcgtactgccgagcactctgcccagcagtcgtcagaacgtctgcaaagctatgaaaagatgttcaagaatgggcaactaaatgttctcaactgttccaccaccatggaaatgggggttgataccgatcgcgtgatgacgctggcctctcgcagccagcaggcaacgattccggggccggagtggcacctgaatgacgaactggtggtgcgtagtctcggttataaaacggtagaactgaacgagtttattctgccggctaaagccaccaacgctgtcgagcgggtcaaagacattcagatccacaaacagttgaatggaccactgtcgcagtttgggcaacgcttctgggacgtgctgtttaacgaccatgaagaagcgcagtcactgatgaataacacgcgaattaccggcgttcactataccgatcgctatctgcaaaacccggttgcgctggcgttgttgggatcaattctgagaccgctaaaaacaaagctgaccgatggcgctgaagtgacgctggatacgctatttaaagataaagatcgccccggtaaccggcctttccatgactggatgagcatagcggattttcaggatttcgctgatcagtggtttgctgctgcgctgggcaggccggtagaactgacggtgttcgactcgccgcgcgatatccctcaccatcgtaaactgacggtgacttttgaggatggtcaggtattgaagatccgcttcgatcaggggatgggctactggcgcatcaacttttcatcgcaatggcattactttgatttccgcgatgacgtttctttccagttagtcaaaatggctcaggcctgcaaggaagggaatgtcgccaacagcgaagagagttgggcaacggatgtgctggtggaggtgatcgcctcctgatgatgagccgctcccgatgtggtgtcgggagcggtattttctataaaacttaccgcttatttgagatattcatcgaaaatgtcgagtaattcttgatgtatacacggccattcctgacctaaattgacggtacacaagccaatatcgaagccattaattttataacgatgtttcactgcggtatctacgtggggatatattaataacccccctatgttttcgccattttcaggctttaacgaccataagtaattcatcagttgataaagattttgcgaatgaaatttttctgttcccattcgtcgtgaaaaaatgctcttatagtatttggcgtcaacgataagtattttttctgatgagcgaatggtgatgtcagtttccattcgaggtaacaaattaagtgactgatccgatatactcgatgcatcccattttaaataagagcgggttgtgtttgcagacgttaattcacgacggcaaaattcataaagaaacttttgataaagtaatgacatctctttttcgtttctttcaaaatcatagaaacggtagtgtcctttgttttgacctggaatagaattattgacgatgaatttgcagacactgataacgaatttataataacgcgtattttttccgccattcagatagctgaaatgctgcggagttaaatgaagagtgctaatgcccggtaattttctataaagtgaacgagcttcatctctgatagttgaatttaacttttcatgcttaattaatatggctaatgtgctttttataattcggttagccagcgtgtcttcattaagcatatcaaaagtactgacggttttcccatgattaagatggaagccgcgtattgttttagcaaactctattcgccctttgatgccaggaatgatctcggtgttaggattgtaatcaagctcaagccctcggcgtgaaagctgtaaaacccctttatttaatacataccccaggatatcaagaagattgttaccgggtatggcttcaaggtttgcctgcttaatttcctgtaaataaccccatgcataggtaagcatgtaatagatattacggacaggtatcacgggctgttccactatgagtcccctaataatttgttggtccatttctgttgtttataggggtcatcaaagaaatattcttcgagtaaaggggcgatatccgtcatcacaatttcattaagccattgcgtatccggagaggtgccatcttccaacccacagcagaagtaactatgcccaatgcggaatcctttcccaaggatagtggcctctttgctgatttcctggttcaactcgttcattttttggcataaagactcaacaaatgaaggttctgcttttttattcagtaaaaaattccggaactgtggtgtatcaaaacctggctcaatatctatgaaagaaaatcgtctgcgtagggcatagtcaacaacggccagagagcgatcggcagtattcattaaaccgatgatataaacattctccgggacatagaatcgttcttcatcgttttcggagtaggttaggggaacagaccagttttcacctcgtttatcatgttccattaacatcatcacttcgccaaatactttactgagattggcacgattgatttcatctataataaaaatatactttttctctggctgctctttagcttgctgacaaaaattgtaaaatatgccgtctttacgtcggaagccgacgccattcggacgatagccctgtataaaatcctcatagctataagattgatggaactgaaccatattgacgcgttgcggagccttttctcctgtcagcaagtaagccagacggcgtgcaacaaaggtttttccaacgccgggcggcccctggaggataatattttttttgatggttaatcgtttgagtatcgtctctattgtggtttcagggataaacaaatcatttaacgcatcttccagacagtatgattcagtttttgacataggtggaataacactcttgccagaattaaatattaatttatagtcgttgattatgttgtccagcatagaggcaaatcgggtgtaatcaataccctgtgagactttttgggaacaggcgtaataggactgtccgtattttttaggatatacacccgaagttgcctgaaaatactctgcgattgttttaggtatgtctgaagagaactgccattgggcatgtggttcattcgtgtcgcttataccataagccaaaaccaactcatcaaaatctttataatagagaataacgggatatataccgttagaagcttcctgaccttctccaagaaatgcaaaccagggaatagacgtaaaattaccataaccgaaactcaattttactcgcaggttacggtaagacgttggataatctttagtggattgcgaacgttgttgctgtgcttgcttaataaatttttcaatccagggttgaatagattccataagatatgccttcctcattgctaagcctctattatcgctttcgcaacgtactgaaacaatagatttttactgcaaaatcagactggtaaatatttactgagggggaaagtttctattgagtcagtggaaggctcccggtggttaaccgggagtaaacgctgttacgcgactttctgtttaccggcaatcactccaataaacgcctgcacctgcttttgtttacgcgccgacagtttgcacacctggcgtagcgactgcatcagttcgctctcctcggcggcgggtggttgggcggtgaggacaatacagccttccatcactttgacatctaccgccgtgccagtggcaaaaccggcggcttccagccactgacctttcagggtgatggcgggaatacggctgtaatccgggtagcgactcgcataaccgacggtgacatgacggttatttgccggggagacttctgcttcgaacggttgtgcaatagaatgcgtgtcagtcataactgctattctccaggaatagtgattgtgattagcgatgcgggtgtgttggcgcacatccgcaccgcgctaaatacctgtatatatcatcagtaaatatggggaaagtccagctaaaaatagaataaaatgggcaatttctggaatgatttaaatatatttatgtgggttatgattggcgtgaaataataaaaagcgcaccggaaaggtgcgccagaaaataatgttcaggattttttacgtgaggcttttttacccccgctagctgcgcgttcagctttgattttttccagcaacgcggcggcgctgttttctccgctgatcaaatccgggttttcggcccgccactgggcggtaagttcaccacggaacgcttttgccaggatggattgcgtcaggttgttgacgcgggctaaggcgttgttgacctgtttttctatggtgtcggcgtaggcgaagagttgctcgacgcggcgaacgatttcggcttgttcttttactggaggtaataaaacaacttgggatttgatatcttttcctgaaatacctttttgaccagaagttgttttcacgcagttcatcattgcatttcgtgctgagggggatgaaaaaaatatttcgatatattctggtaaagcatctttggttaatcgagctcgaataagtttatcaggatatagcaaattttgatgttgtaattttttcaataacccacaaacaccaacaaattctaaacttccgttatagcgagtaaataaaagatctccatcttgtaatttgtggcggtttagttcactttctgaacattctagaaaccgaatatcgttttgatctacatggccagcacgtacagaactaatgcgtagtattggatgaccaacaccactttcatttggctttgatgaaagaccattacgtaattcagttaagatagattcaaaatttaacttcttaaatacagaatgttgcggctcaaaattacgccatttttctgtcaattttccattaactgcgccccccaataccgcttgacgaaaacgtttcaggatttgtgggatttgctcaaaacgtgctttggtgctgtctacctgcgccagcagcgtatcgagtttttcagcgatgattttttgttcggcaagtggtgggattggtatatttatcaaatcaaagcttgccggcttaatattattaatatttgcaccagcagaaagtgatgaaattttgtttcgataaagagaagattttgtgaaatgagcaataaaaccagaaaatataagtttttcaggacgtaatacaccgcaaaatgcgccgaaactacattcaaatggtagatgctgatgtgcggatttaccaactacggatttgctccctgatgacattgcaataacaatatcttcaggagatattttttgactttctttaacaagatttttaggaacaaaaaccaagtccgtagtatcaaacttgccattctgaatattgttcgcacggataagaggcaaataatcatcttttagataatttattgcctgctcttttttatacgttactcctcggattagagttgtgaccgtagatactggggcgataacccacccctccggcaatttccccgcactcattccttcaccccaccaaacgcttcttccagcaactgacgctgcaaatcggcctcatcgctcgcccccagttcacgcatcagcgcatccagttcagacagcgcctgtaccagttcgcccatcgcttctgccgctaatacatccggctccggcaggctgtcggcatcaatactgtctttatctttcagccaggagatatccagcgaatcggattttgcggtgcggatccactcacggctgaacttgcgccagcggctggtagcaagatgctggtcggtgtttttgttctcttcgctgtcggcaacttccgtctcttcggcgttaaaactccattcaccttcagtgcgcgggcttaaaccgtgcgggtcttcgccatacacgcgctcaaacggctgcaaatgctcgtcggtaaacggtgtgcgcttgccgaaactcggcatattggtacgcaggtcatacacccacacatcatcggtacagttcttatcctgattcgggttcgccaccgtccctttggtaaagaacagcacgttggtcttcacgccctgagcgtaaaaaataccggtcggcagacgcagaatggtgtgcagatgacacttatccatcaggtcacgacgaatgtcggtgcctttgccgccttcaaacagcacgttatccggcaccaccaccgccgcacgaccgccgggatgcagcgtttcgataatatgctgcataaagcacaactgtttgttgctggtcgggtgaacaaaggtgcgggtaatgttggtgcctgcggcgctgccaaacggcgggttagtggcgacaatatgcgccttcggcaggttttcaccgtcgctacccagagtgttgcccagacggattgcgccgccgtggtcgaggttgccttcaatatcgtgcagcaggcagttcatcagtgccagacgacgggtgccgggcaccagttcgaggccgataaacgcgcggtggatctggaaatcctgcgtgtcgccatcaaggtcgtccagatcattggtttgcgacttaacatagcggtcggcttcaatcaaaaagcccgccgtacctgccgccgggtcctgcaccacttcacgcggctgcggtttcagcagatgaataatggttttaatcagcggacgcggggtgaagtactggcctgcaccagacttggtttcattcgcgttcttctgcaacagcccttcgtacatatcgccgaagtcatcgcgcgacttaccgtgcgcgccgttgtaccagtccagcgaatccatattgctgaccagtgcggttatttgtttcggctcggtgatggtggtactaacattatgaaaaactgcctgtaccagctttttgtcatcttcgcctaaatgcacgagcatttttcggtagaactgcaactgctcctggccgatgcgggatttcaggtcatcccagcggtaaccttccggcaggtattccgcttcctgaccggtctctttacacattttcaaaaacagcagcgaggcgagttcattgacgtagttttgataggaaacgccgccatcgcgcaggttgtcgcacagcttccacagcttcgcgaccagatcgttattgttcattgtgagttccgtaaattaagcagcggcccaaattcatcgagccgcagaagaagaaattgccgagggtaatatacacaaaatcattcaggttgcatcaaggcggcaagtgagtgaatccccgggagcgtacagaagtacgtgaccggggtgaacgagcgcagccaacgcagaggcagcctgaaggatgaagtgtatacgtgtcaggccagctcgtcccagatataatcgctgaatttgcccagcagggtatcgagattatcgtcaaaggttctttgcagcatcgccttcccgccgcgacggtggaagttgccggttttgaagacatcgtcgtcgagcaccactttctctttcagcgcctgcgctaaacgatcgagccagcttaattgctcgctgctccagtcgttttcgcccttaatgcgcgtcagcgcgtgatcgacacgttcctcaaacggtttcagcgcatcgcccaccgcagcgcggcgaatatgaccaatcagccgggcggcgatatcttcattgcgcgtctctttccatgctttgcgcagggaagattcctcaaagtgctggcggtcaaaccactcctgtagctcgaccagccctttacgggtgagatcgcgcgggcgattaataactgcctgcaatgccggttgcgcgttcggggaacgttgcaccagcgagtcaaaggcttcgaggaaatcctgcggcgtgtcgtaatcaccgtacagcgattttacactcaccacttcatcgtcgatatcgaggaagatcggcgcatcattcaggttgttgatgtccgttttcagcttttccagacgggcgataaagccaggcagtttgttaaagacttcggcgctccagtgcggccctttttcccgcaggcgcgaggcgaagccgttaaagttcacgcccgccgcgtcctggcatagctcatccagacgacgcacctgtttatctatcgtttcgctgcggtcacggttaaacgtggccagaccgatgatacgctggagcttcgccaccagttgttcatggctgtgctcggcaaaactgcggccatccgcttcggtgattttataggtttctgaatcggtaatttcattgaccagcgtttgcagttccaccttcgggcgcaccaccaccggacgcatggtgtcgacgctctccagcgtgctgtagatatcgacacagtcaaaaatcttaaagctggttttattcacctccgggcataagcgcgtggcgcggcctttcatctgttcgtacagaatgcggctgcgtactttacgcaggaacacgatattacagatcgacggaatatcgacgccggtcgtcagcaggtcgacggttaccacgatattgggcagccgctctttattgaagcgggtgatcatggtctgcactttgcgcgcgtctttatcggcatcaccggtgatcttgatgatcgcgtcgtgctccagttgcggatactttttcttgaacgcggcacgcagctcttccaccaccatatcggcatgggcattggtgacgcagaagaccagcgttttttgcgatccggtcgggtcaagataattggtgagttcgttacagacggcgcggttaaacgccgggatcaccaggccacggttaaagtcggcgacttcaaaatcctgatcgtcttccagggtgtcattgatcacttctccctgcgggctgatgcgctctacctgctcgcctttggagagataaaccccctcctgcgcgttgcgggtgatgatctgaataggcggatcctggtcgatcagaaaaccgtcgataaccgcggtacggtaggtataacggtaaaccggctcgccgaaaatctgcacagtatgtagcgccggggtggcggtgagagcgatttttaccgcatcgaagtgatcgagaatgcgacggtaggcagagacgtaatccagctggctgcggaactgcagttcgccttcggtctgctctttatcgagaatatagccgcgatgcgcttcgtcaacgacgatacagtcgtaacgggccaccggcatcggttcatctgattgcagggtgcgtttcaccagcgactgtacggtggcaacgtgaattttggtgctgtcttccgggaatttatccgtcagccctttaatgtcgaaaatgctgttgaaggtgtcgccgttaatacgcgtatcttcaaacgcgcccagcgcctgttcgccaagagaacggcggtcgacaaggaagagaatgcgtttaaaacgctgggactggatcaggcggaacatcatggcgattgccgtacgggttttaccggtaccggtcgccatcgccagcaggatctcttgttgccccttgacgattgccttttcaaccgcgcggacggcatcttcctgataataacgcaggcccagctcgctcatgccagggttatcggcaaaccactgattctgtttttgcggttcgctgccgagcatttccagcagctcttccgggcggtgccactcgggtaaggctttcgacatattgcgggtatcacgcacgtcgcgataccagatgccgcttttggtcttcattgttgcgcggtattcgcgcccgttggtcgagtagcagaaggggattttaaaccgttgtttgccgctggtgtcctgccagctggtttcatactctggcactgcttcatgcacttcatccggtgagtagtgctcaagcaaggtttcccgcaggaagccattatcgaaacatttactgtagcgatacgactcattgagcctggcgggaacgtcgatattgttacgtttcgcctctaccaccgcgatgggtttgaggccgacaaacagcacataatccgcaaagccctgattacccgtttcatcttttccggtcggccattcggcaatggctttattgacgccgggttccggacgtgcgcctttggagaagcgcagggttttgctgtcggcctgccagcctgctttacgcagttgcgcatcaatcaggaagcgactctcttcttcgctaaggttgagtgtgcgcttgatggcctgatcggtaatttctttgtggtaagccttacgttcctgttcggtctgttttgccagttccgcgttcttctcggcgagctgtgcttccagtgccgcaaggcgagcctgggtttgcgcttcggtttcctgctgtttgccttccagaatggcgatatagccgttcagggcaaccagcttctgctgttgcgcttcgacttctgcctgagtctgcgctttttctcgcacctgctgttcaagctgttgttttagcgtcagcacttcctggtgatagaggttttcaccacgttccggcaacacaaacaccggcaccgggaagtcataatctttagtgaccagacggtagtaccagacagccaggcggaacccgagtcgcaggcacatctgggcatcgttgagatcgttatgatattcgtgcaccgcctggttaccaatgcggcgtaatttgtgaaatacagagaggatgttgtcatcaacaaaggcgattttgccgagttcacgcaggagatcgtgttgattctcacaaggggggatgttgagtaacagaccaagatgtttcgctgtggcttcgccaaacatacgcattttaatcagcgtcgtgttgggatcatccgggtagttattttccgccgcacaggcgatggcataagtgaagtcgttgacgcccttcaggaattcaaaattggatttattcatcattgttattaatccattgctgtgcgggcctgtccaaatatttaaggcccataacatctcatcttagctttctgtacctttccgggcaatgaccacggtcacagcaactgactcatttctaacgtgttcgtctatttttgtagtgctatagtagccgaaaaacatctacctgattctgcaaggatgtactatgacggttcctacctatgacaaatttattgaacctgttctgcgttatctggcaacaaaaccggaaggtgcagccgcgcgtgatgttcatgaggctgccgcggatgcattaggactggatgacagccagcgagcgaaagtcattaccagcggacaacttgtttataaaaatcgtgcaggctgggcgcatgaccgtttaaaacgtgccgggttgtcgcaaagtttgtcgcgtggcaaatggtgcctgactcctgcgggttttgactgggttgcgtctcatccccagccaatgacggagcaggagacgaaccatctggccttcgcttttgtgaatgtcaaacttaagtcacggccggatgccgtcgatttagatccgaaagccgactctcccgatcatgaagaacttgcaaagagcagcccggacgatcggttagatcaggcgctaaaagagcttcgtgatgcggtggctgatgaggttctggaaaacttattgcaggtttctccttcgcgctttgaagtcattgttctggatgttttgcatcgcctggggtatggcggccaccgtgatgatttgcagcgtgttggcggtactggagatggtggcatcgatggtgtgatatcgcttgataaacttggcctggagaaagtttatgttcaggcaaaacgttggcagaatactgtaggcaggccagaattacaggcattttacggcgcactggctgggcaaaaagcgaaacgtggggtgtttattaccacttctggatttacttctcaggcgcgtgactttgcccaatccgtcgagggtatggtgttggttgatggggaacgcctggtgcacttaatgatcgaaaacgaagtaggggtttcttcacgtttgttgaaggtgccgaaactggatatggactattttgagtgaaatatcaggccggatgccggtgcgccttatccggcccataaccccttacttcctcaaccccgcaaacgcagcccgaatctcttcctccggcagctggatcccgataaacaccatcgtgctatgcggtttttcatcgccccacggcctgtcccagtcggcgctgtagaggcgctggacgccctggaacagcaggcggttaggttcgccgtcaatccacagcatccctttgtaacgtagcagtttatccgccgactccagcagcaggttttccatcacgcgggaaacttcgctgatatctaccgggtaatccagttccaccacaatcgacgaaatatcgttttgtttatctgcgataaagtggaaacgcggtttggtgctgacgacgttttcttccagcataaaaccgttggtgttgaacagcaggcccagatcgatgtcgccgtgggtgacggtgtagaccggtgcgcgggcgttgatgcgcgccaggcgttcatgcagtttttctgcttcgcctgcgacgtcggttttggtcagcagaatgcggtcggcgtagccaacctgtgactgggcgatggtgaactggttcatctgctcatcggcatgtaccgcatccaccagcgcaatcacgccgtccagcagataacgctggcataaaacttcatgggagaaaaaggtctgaataatcgggccgggatcggccatgccggtgcattcaatgaccagacggtcgaactgaatattgcccttgtcgagattgtccagcaggtcgagtagcgcgtcctccagctcgttggagcgcgaacaacagatgcagccgttggtcagcgttttgatctgcgtggcgcggtcgccaatcagttgatcatcaacagagacttcgccgaattcgttttcaatcacggcaatcttgtagccgtgctgttcgttaagaatatggcgccagcagggtggtttttcctgcgcctaaaaaaccggtgagtagggtaactgcaatcgggttcatgctctctccattaacaacagcgcataccgcctttaccatcgccgccgtagcgcgcgttctggcgttcgcggaagaattcttcatagctcatgtacggcttgtcgggatggttggtcttcatatgctcgacgtagttgtcgtagtctggaatgccaatcaacatcttcgccgcctggccgagatatttttttgcctgtcctaagttaccaaacatagttcactctgataagaacaaagccccgccgaagcggggctaaacacggttagtggtgcgaagagatcttcacgccgccttccgggattggaacgtacggtgtttctttgtcagtacgtttgtcgctgttacgcaccgcaagccaggttttgaaaccgtagaagatgatgctgtacaccacaatcaggaacagaatactcagacctgcgttggtgtagttgttcacaacgatgtggttcatattggcaatctgctgcgccgtcaggtcagtaccgttagcaatcttctctttgtactggcttgccatgtagaagaagccttccatctgcgggttggtgctgaacagtttcaggcccagcgcccaggtggtgcagataagcagccatacagccggaacaacagttacccagatgtattgggtgcgcttcatcttaatcagcacaacggtgcccagtaccagcgctacggctgccagcatctggttggagataccgaacagcggccacaggctcttaacgccgcccagcggatcaaccacgccctgatacagcaggtagccccacagacccacacagcccgcagtaccgatgataccggcaaccagagaatcggtttttttcaggaacgggatgaagttacccagcaggtcttgcagcataaagcggccagaacgggtacccgcatccagcgcggtcaggatgaacagggcttcgaacagaataccgaagtgataccagaagcccatgtcagccatcggcagcactttgtggaacacgtgcgcgatacctaccgccagcgtcggcgcgccacctgcacggttcaggacagaaggctcaccaatgtctttcgcggtttgcaggatctgctctggcgaaatcacgaagccccaggagctgacggtcgctgccgcgtgtgcggtaacgtctttcagctgcgccatgatgatcggcgcgttctcgccacccatttcatgcaggttaggcatggtgatgccaaggccagcaggcggggtgttcatcgcgaagtaaagacccggttcgatgatggacgcagcaaccagcgccataatcgccacgaaggactccatcagcattgcgccgtagccgatgaaacgcgcgtcggtttcattagccagcagttttggcgtcgtaccggaagagatcagcgcgtggaagccagataccgcaccacaggcgatggtgatgaacaggaacgggaacagagcgcctttccacagcgggccagtaccgtcaatgtactgggtcatggcaggcattttcagttccgggttcagcaccacgatacccagcgccaggccgacgataacgccgattttcaggaaggttgccagatagtcgcgcggtgcgaggatcagccacactggcagcagtgcggaaacaaacgcatagccaatcagcgcgaaggtaatggtggtgtctttaaaggtcagtgccggaccccagtacggatcgtgagcaatcacgccaccgaagtagatagaggcaaccagcagcacgataccaatgacagagacttcacccacacgccccggacgaataaagcgcatgtagatacccataaacagcgcaatcggtacggttgagcaaacggtgaagacaccccacggactttcggccagggctttaaccacaatcagcgccaggacggcgaggatgatgatcatgattaagaaacagccaaacagcgcgatagtccccggtactggtcccatctcttctttgatcatctcaccaagagatgcgccattacggcgagaggagataaacagcaccataaagtcctgaaccgcaccggccagcacgacccccgccagcagccacagcgtgccaggcaggtagcccatctgcgcggcgagaaccggacccaccagcggaccagcaccggcgatagcggcgaagtggtgaccaaacaacacgtaacggttggtcggaacgtagttcagaccgtcgttgttaataaccgcaggcgtcgcgcgcgtggggtcgagtttcatcaccttctgggcgatgtacagactgtagtagcgatacgccaccagatacaccgatacagaggcgaccacgatccacagggcgctgatgtgctccccccgacgtaatgcaactaccgcgaggcagaatgcaccgatgattccgagaatcacccagggtatgtgcttgaatatctttttagtatccatagtaaaacctggcatgtattgattaatagttggccgaagccgttctaggtttgcgttgcgtttgaggaggtaaattgaccgctatcctgtagtgatgttgccagagttacgcgcgcgtaaagtaaggtaaataactgagtggttattttagggatgtaagcggtcagttttgcggttgagcggcaaaggcgtcgtttaagtgacgataaatatgtgattcatatcacatatttatattgtgaataatttatgtaaataatggctttttaaattcagagtgtgaataaaattcactcggcgtaatctccgcgggatattcataaagtttttcctttccaggccgaaaatcttgcatcggtccacaggaaagagaaaccatgttaaaacgtatcaaaattgtgaccagcttactgctggttttggccgtttttggccttttacaactgacatcaggcggtctgttctttaatgccttaaagaatgacaaagaaaatttcactgttttacaaaccattcgccagcagcaatccacgctgaatggcagctgggtcgcgttgttgcagacgcgtaacaccctcaaccgcgcgggtatccgctacatgatggatcagaataatattggtagcggttcaaccgttgctgagctgatggagagtgccagtatttcgctgaaacaggcggaaaaaaactgggcggattacgaagcgttgccgcgtgacccgcgtcagagcaccgccgcagcggcagagatcaaacgtaattacgatatttatcacaatgcgctggcggagctgatccaactgttaggtgcaggcaaaatcaacgagttctttgatcagccgacccagggatatcaggacggtttcgagaagcagtatgtggcttacatggagcaaaacgatcggctccatgatatcgccgtcagcgataacaatgcctcctacagccaggcgatgtggattctggtgggcgtgatgatcgtcgtactggcggtcatcttcgccgtctggttcggtattaaagcctcgctggtagcgccaatgaatcgcctgattgacagcattcgtcatattgcaggcggcgatctggtgaaaccgattgaggtggatggctctaatgagatggggcaactggcagagagtttgcgccatatgcagggagagctgatgcgtaccgtcggtgatgtgcgcaacggggccaatgccatctatagcggtgccagcgaaatcgccaccggcaataacgatctctcttcgcgcaccgagcaacaggccgcttcgctggaagagacggcagccagcatggagcaactgaccgcaacggtgaagcagaacgccgaaaatgcgcgccaggccagccatctggcgttaagtgcttctgaaacggcgcaacgcggcggtaaagtggtagataacgtggtgcagactatgcgcgatatctccaccagttcgcagaaaatcgccgatattatcagcgtaattgacggcattgccttccagaccaatattctggctttgaacgcggcggttgaggctgcgcgtgcgggtgagcaagggcgcggttttgcggtggtcgcgggagaagtgcgtaatctggcccagcgcagcgcccaggcggctcgtgaaattaaaagcctgattgaagactcggtggggaaagtggatgttggctctacgctggtcgaaagcgccggggaaacaatggcggagattgtcagcgccgtgacccgcgtgacggacattatgggcgaaattgcttctgcttctgatgagcagagccgtggtatcgatcaggttggcttagcggttgctgagatggaccgggtaactcaacagaacgccgcgctggtggaagagtctgccgctgccgccgccgcgctggaagagcagccagtcgcctgaccgaagcagtggcagtgttccggattcagcaacagcagcgtgaaacatcggctgtggtaaaaaccgtgacgccagctgcgccgcgtaaaatggccgtggcagatagcgaggagaactgggaaacattttaatcgccatgaaaatgcccgataagcaaaatgttatcgggcataaggagattaatctttacgtgggtcgttgatcggctgacgaaccaggaagatgtacgccagtgcccccgctgcggtgacgcaaccgcagatgattagtgccagacggaatgagtgggtggtatcaacaataaaaccagtaatgatcggcgcaaaagaggcgcagatgaagctggcaaagttctggatactgcccaccgacgcagtcatgcgagaagcaactgcgacgtggatcaagccccagcaggatgttccggcaaagtgaatacagaacagtgccatgccaatcagcagaaccgccgtcatggatgttgtcgcttgtggtactatcagcgtaaaggcggcagaacagaacatcccggcaataatgcagatcttacggcttttaatcggagccattccccctttgaccagccagtcggtaacgtaaccgttgaccagcatcccggcagccccaaacaggaaagggatagccgccatcaaccctgtgctttttaaatccaggttataggctgtttgcaggtaaccaggaagccaggccagatacagccacgcagtgtagttgatgccactgaatccgagcatcattccccacattgtacggttacggaacaggctgccgattcggcaaaactgagcggatctcggcgggcattgacgctacctgcattgagataagcttgctcaacggcagtcagttctacgtgctcgcggttgcgatagagcatataccagccgatggcgagaaaaatccccagtacaccaatggtaataaacatcccgcgccagcccatcaccagcatcatcgccgccagaatcggtgggcttacggcaacgccaatggtagaagctgcgttgaagaagcccatcgggcgtccgcgctctttgatgttgaaccagtcgttaatgacttttacaccgcatgggttcatcggcgcttcaccaatccccataccgatacgcaccaacacgaactgcgtaaagttgtgcaccatgccagacattgcctggaacagtgaccagaagaacatccccagtcccagcatcaggcgtgggcctttacgatccaatagtgggccgcaaggaagttgcgcaatcccgtaagcgagtgaaaacacggagagcaaagcgccgatttcggtggcacttaatcccaattcttcacgaatcgttaaatttgctaccgacagcgaactgcggtcgagataattgattaccgccgcaaaaaataataacaacatggcggtggtttgaatgcgtttaattcgggtactgcgttgaactaatccatctggtggcacgggaatatctgccgacgaagatggagtaaatgaagaacgcggatcgatggtgatattttctttttccacgccggactcctgtatttataattttaattgtttacgtaattgtgcattacgcaaggttgacattaacggcaggttaaagttttaggactttactaccgctcacaaaaacatttttagtcgactgattgtgagcataggtaagcgggaatttcccggtatttatcttttgataaaaccgtgcacccgctaatagtttgctgtttttaatccgtacttaatgagcataacgcgtgttctcattaatggatcgaatcattgattgtttagctgaattcaaatggttacggagcgcaagggtggcatcaaggtcactgcggcaaatcagagcgctgagaatggtcatatgctcatcgacggcaatgatattgcgctgtttaagatcgctttcgtcccattgatagtgaaaatgaaagatgactgagatgatctcaagcgattgatcaaaaaagatattgtcggcagctgaaagcagtaaggagtgaaaatctctgtcaagttgcgagaacatgcgaaagctattgccgatgttgtcacgcagtagccgatgacgttcgagcatggttttcgcctgcagccagcggggatcatgatcaggcaggttgagaaagtgctgaagtgaatgtgtttcgagcatttcgcgtagctcaaacagctgctcggcgtaggattgatcgaattgcttcatgctccactggccgcgcttttcgctgtgaataagattataacggccgaattttaaaagatattctcttactacaaccgggctgacacccgcggcccgagccagttgcagttcagaaaacgtttcccctgggcgtaactggcgctggtttatcatcgtgaaaaaagcctgctcaaacactttgttttgttcactcattgaagcggtagtacaggcgaaaccgtcatcatggtcaggtttacgcgcaataacatagtcgtttccaacctgcgtcaagaccgcgcattcgcgtaagtggctgagaatatgacgcactgtggtgcggctgatgttgtacatttccgccagcgcactttgcgatgaagtggggaagggatatgaccccgcgccatatcatcaatgacctggttaatcacattgtggcgtaaattttgtgaacgactcatattttcctccttgtgagtccattaaaacccgatttaaaacatttttatgcgtgtgttttcacaaaaaagattttccgttccgctgccatttttcattttcattgatatctaaggcaacaaaaagtggagagccgaatcatgtctacgatgaatgttttaatttgccagcagccgaaagaattagtctggaaacaacgcgagatacctattccgggtgacaatgaagcattaataaaaattaagtctgtcgggatttgcggtaccgatattcatgcctggggtggaaatcaaccattttttagttatccacgtgttttaggccatgaaatatgtggggagattgttgggctgggtaaaaatattgctgatcttaaaaatggtcagcaagttgctgtgatcccttatgttgcctgtcagcaatgcccggcgtgtaaaagcgggcgtaccaattgctgtgaaaaaatttcagtcattggcgtgcatcaggatggcggttttagtgagtatttgagcgtgccggtggcgaacattttgcccgcagacggtattgacccgcaggcggcagcattgattgaacctttcgctattagcgctcatgcggtgcgtcgcgcagccattgctcccggcgagcaggtgctggtggtcggggcggggccaatcggtctgggcgcggcggcaatcgctaaagccgatggcgcacaggtggtggtggcggataccagtccggcgcgccgtgaacatgtggcaacgcgtctggaattacctttactggacccgtcagccgaagattttgacgcgcagctacgggcgcagtttggtggttcgctggcgcagaaagtgatcgacgcgacaggtaatcaacatgcgatgaataacaccgtgaatttgattcgtcacggcggcacggtggtatttgtcggcctgtttaaaggtgagttgcagttctccgatccggaattccataaaaaagaaacgacgatgatgggcagccgcaacgccacgccggaagattttgctaaagtcggtcgactgatggcggaaggaaaaatcactgctgacatgatgttaacccatcgctatccgttcgccacgctggcagaaacctacgagcgcgatgtgattaacaatcgtgagttaattaaaggcgtaattactttctgataaggcgagattattaaagttgccatgcagcgtccggggaagtgttgggcgctgttttttttgtttcttaataatgtgttgtaagccgtagaaggcgtgtaggtcgcaccctatgcgacctacacatcagtcaggaattacccttcacgttctaccactttaatttccaccatgccgatcccgagcttacgcggcgagtgtccgaggatattcccttcgttggttgagacaggttccggcggcacaattaccagtgtgtcggcatcggttgggttatcgaaatgcagtgtggtggtggtcacttcattgcccagcacaagagtttgttcttcattgcctacgcgtaccggaataggacggctggcgttattgccgtatgctttggcggtaatcaccaggtcaaatttcttcggcagcggatgcttgtactcgatttttacttcatcgcccagctgcgcgttggaccagcggccccacgactccggacgggaaatcccgctaaactgtttcacctcttctggcgcaccggcgacgttaaagatgaaactgtcggctttgtagcgaatatcgttatcaacaatcttcagcgtatcgacattgcctttgtaacgcgccatgtcgatgaccgtatctttaaatgccgttttgccctgccatgttgttttgtcaacatgctgaacaatttgctgaccgccaagctgcccttgcgagacacaccagtcggtggaaagtgccagttccggagcccagagttgtgccatcttgtagcaacggtcaacccagacgaaattgtcgcgtggagcgaaatcggccagctggaaacgcagcggtgctgagtattcgctttccggcagcggttccacgcgtttgtctgaaacccgcaacagcagcggcaaacggaaatggctacccgagaaggcaatcatgtttttctgctggtcgatggtgaactctttcatctctttagggaatttccacaggcggatgatatctggcttccacgccaatgttttctctttgatattgaggaagatttccgacatcgactgcccggataaactgctacgaccaagtccgagatagttatcgccaccgagaatgtccagcaccgtcgcgccgttatccatcgtgttacgcttcactgccagcgtctcttgctgcggcttgtcgccacgaatgacaaaaaacaggttattgcgatcctgcttattgaggtatttccacgccgtgttgttcatcgctaaatggtcagaagagacgacgatgacggtatctttaaaccacggtgacgctttgattttgttgataaacgtcgcgatgttctcctggctgcaacttaccgcgctgaatgactgattcggtttaccgtcaaaatcatattttttgcggttacaggtacgagagataaaaccatccgggtgatgggtatcgactgtcagggtaaacagtgagaatcgctgacctgagcgggaaagctcttcaaactttttccacgcttcatcgagaacggtatcgtcgtagaatccccagtcgttgcgatagtgcgggtcggctaccacgcttttcagctcttctgagccgtataagtggtcgaagccatgcgacttcaggaacacatctttaccggcaaaacgcagattcgcgccctgcacgaaatagttctgataacccgagtttttcaggatatctcccagacagatgttctgcgggaagaagctggagacagaggcggaggcgttgccttcaaagggggcaaacagcggtatgccgcactgagaagccaccatgcccgcaatcgtgtaatctgttcccggcagctgctgcgtgtggctgaaatccaggccttcatttttcaacgcgcccagttcaggcgtgagatccgggaaagcctcgttatcaaaataggtccgctcgagactttcgccgtagatataaaccaggttgagtttcgggtcagggatagttttcgacggctctttataataagccgcaaagtccgggtcgccgtcgcgtgactgggatttcaccagttccgttatctgacgaaatgccgggctggcgtccaccgaacccagcgccagtaagagcgccagcaggctgtaaccaaaatggtgcggatgatggcgacgacggcgcaggatccagcccagcgcaccgaacaccgctgtcagccccagcacaatgccgatacccggcaaaatgtatttgctgacgccagcaccggtcaggctgttggttaaggtatagagaaccgcgtcgttaataccatcgccagtaaaatagtcgctggcaaacagggtgatatttaaaacgacaaatagccccagcaccgttaacgtggctgcaaaccaccaggtgttacgtcccgctttccatgcgtaaatcagcacagaggcgagaaaaagggcgaaagagagtagttctgacaacgggcgatcctcactaaaccgggccgtttagccaacgtttaagctttttgagaagcacaatgtaatggcgtcgccatattgctgcaattctagtgtcaaaaaaatgcgatgttgttaggaattagtttataaacagacttttttgattacggtcacttcccgtgtaacaggggtaaaaccgtccaggagcagggaaaagggcaggagagagccgcgtcagccgggtaacagctaaaacgcggcgtttcgcggttcaggaaatgaagttcagcccctgttttaacaccagatcgcaggctttggttttcaccttttctgccagcggagttgttccgatgttatccagattgagttgctgaccatctttggttttcagcaaaccctgaatgccgtccagatagttggtgtcttctttttgctcttcactgttcaggcccagcttttccagcacctggttcttgatgttttcggcatcggttaccgacgccagcttttgcttcgcgcagtattgcagaatgcctgcggcattgttcatgttatctgcgcttaaggcctggtttccgctgctaagcaagttagttaatgacgcgagcgaccaaccgccttcctgtgtcgtgctgttttggttgccaagttcgctggcggcgctggagagcgcatctttccaggacgcagcatgcaccccggtggaaattaatgcgctggcggcaatggcacagcacagaagatgtttaacagttttcatcatcattactcaaggtggaattgtgtcgcagtataccgccagaaacggggattaatactctttacctgttacccggctacggtagctatcccagttgaagatcacccacaaactgttacccaggcgcatacggtccatcacgcgttcgcccagcaacttggtcatctcttccatattactgttggtcagcatcccggttgggcgtttggaagaagagcggcgatcgacgatctggttgatgatcactttttcgtatttcgattcggtctgcacgccgatctcatcgatcaccagcagatcaacgttgctcagatcgttaagcagttgttcttcgctggtaccgctattcctgaaggtatctttcatcgccgacataatatcggccacggtgatgatcaatacggatttaccgcgtagcagcagctcgttgcagattgccgccgccagatggtttttgccggttcctggcttaccagaaaagatgaagctggcgatgttgccgtcaaactcttcgacatactggcgcgctttgcttaacgcattcatctgcccttcacactcaacgcgatagttctcaaaggaacagttctgatgcagtggacgaataccggagcggttaaaggtgcgctgcattttcatcgcccgattttcacgttcgagagcggcggagcggatcgctccttgttctttttgccaggccagtagttcttcacccgttttgaatgcgggtttgatatgggcaggcatcattttttgcaggcgttgcatcaggtcgccaacgtttttcatcgttaccctctgaatcctggtggaatttggctgtcaggttcgctgaccgtattcacatctcgtttcggcagtccgccgttgctggcacgaccgatttgcaggctgcgcgccagtttttgttgccactgcacatggtgaaagactttaccttccgcctgccagtaggcaatgaatgaggccagttcttcggtggtcaccggctctcttagcgccacgccccatagcgccgccaggcggataaaatcggcatcgggttgccagtccggatacatggcgaatttccccatgggtacagcaacgggagcggcttgcggttcctgatagagttgatcgtccagagcgacatcgcttcccggacgcgccagcttttcttccagcgccagcagttcagccaggcgtgcaggcgtgacggcataaaacgccggggcattgttagcaaatacggcaaccacaccgccttcagcttttgccagaacggtttggtgatcgtgtaccagggcgtcaataccaacgacgtccggggtcaaaactctggaagacatactgtttctcaaatatggaacgatgaacgagaagggagataacttttatagtaacacacggaggagaggaggctgtctctcatccgtgtgcttaagcgaggcaattttatacgcgagggcgcttgcggtacaaccataatccaggaatggaaagaccgatggataacgcaccaacaatcgatgaagctgtaagaaagttggttaacagggtaatcatcaacggttcgctgtaacctaactggctgatttttaccgccgaaatcattgcggtataagccgatatgcccgggaacatagggataacggccgccacggtaaacactttcggatgcgccagataccagcgcgaccattgaataccaatggtaccgaccagcatagaagccataaaggttgaccactcaatattcaacccgctggtcatcaagatcattcgggaaccatgacctatcgagccaagcagcgcacaccagcgtaacgcccgcacgggaacgttgaacaccatcgcaaagccgaccgcaggaatggcggcgaggatcatatcctgcgccaacgctaacagaaattcgatcacacccatccgcgtagcccccaaatcgtcagtgccatcactacgccgacgcaggtagccagtgtcagcagactggcgatcgcccagcgtgccagtccggtattgatgtggcctttaaacatatcggcgacggcattaatcaacggaaagcccggcactagcagcagaacgctggcggccatcgcaatggtgggggtattgctgaaagtggggagttgcaaaagcaatccggaaatggtggtggcggcgaaagcggtaaggcaaaagttgatctgtggatgaagatgacgttgtgccagcagctggcggatatacatcgcggtcgtactggcaaagaaggtgatgacggcaccatcccagccaccgttattgagtttacagaaacaggcgcaagaaaggccaaccattaaggctaccagccatcttgggtaacgtaatggctgaatttggctaaatcgtttctctacgcctttgtaatccagcagatgatgctccgcaagaatcacaatgtgctggacttcagtcaccacatgcatattaatgccgcgatcgtgatttttacgtgtcgatgtcaggcattgcccatctttaatagttgtcagcactatggcgttcgaagagatagaactttcgacgctgtccattcccagtgcccgacccagtcgtgaggaaagctcatcaaccaacgcgctttccgcaccatgttgcaaaagaaataatccacactggatacaaagccgtgttacggctcgctgttgctcagtttgcataactcgccctttgtcatagacgtgctgcgtattgttcagataatgagaatccatttgtatcatgaagcacggttgttttgcggtaggttaagatcaaaattgcgctgattaatcctggttatcgggagaagctcggtgataaaaagcgaattatctctcgccgcaaacaaactatcacatgaatattatcatcataatgaatttattgtttggcctttacgaatcaggataatagataaccgggcacgttttttaatgttaacaagctaaaaccatcagatttcattgaataaatattggttgtgtgattttgcattctgcgggaagggatatcatttaattataaattaaatgaatgtgatttctgtttttcattaagtattcctaacaacttaatgtagatattttaaatgtctccaggctatttcaccaggttatcatttgatgctaaccttctgacacatgcagtggagttgttgtgcagcaggagtatgctgatatgaaagtgaatgctaaggataatttattcgcttaatctattaatttgctggaaacatttaaggaatgaatatcctgaataaaccatcataatttttagacagtggatgtggaggaaatatgttgccaggatgctgcaaaaatggaattgttatcagtaaaatacctgttatgcaagcagggttaaaagaggtcatgaggactcacttccctgaatatgaaataatatccagcgcctctgcggaggaccttaccttattacaattacgtcgttccggattagtcattgctgatttagccggtgaaagtgaagatccacgttctgtttgtgaacattattattctttaatctcacaatatcgggaaattcactgggttttcatggtgtcacgctcctggtattcccaggcagtagaactgctcatgtgccctacggcgacgttattgtctgatgttgaacccattgagaatctggtcaagaccgtacgttccggcaatacgcacgcagagcgtatcagcgccatgctgacctccccggcaatgactgaaactcatgattttagctatcgctccgtcattctcactctttcagagcgcaaggtactgcggctattaggtaaaggatggggcatcaaccagatagcttcattgcttaagaaaagtaataaaactatcagcgcccaaaaaaacagtgcgatgcgtcgactggcaattcacagcaacgctgaaatgtatgcatggataaatagcgcgcagggtgcaagagaacttaacttgccttctgtttatggagatgccgcagaatggaacacagccgaattaagaagagaaatgtcgcactcatagaaaaatgcgtcatgagtagtatcggtattgagagtttattcagaaagtttgcgggtaacccttataagctccatacctataccagtcaggagtcatttcaggatgccatgtcgcggatctcgtttgcggcggtcattttttctttttctgccatgagaagtgagcgcagagagggattatcttgcctgactgaactggcgattaagtttccgcgtacccggcgtttagttattgcggatgatgatattgaagctcggctgattggttcattgtcgccatcaccgctggacggtgtattaagtaaagcgtcaacgctggagatttttcatcaggaactctttttgtcattaaatggtgtacgtcaggcgaccgaccgactgaacaatcagtggtacattaaccaaagccggacgttaagcccgacggagagagaaatattgcgctttatgtcgcgtggctactcaatgacacaaattgccgagcagcttaaacgcaatatcaaaacgatccgtgcacataaatttaatgtgatgtcgaaactgggcgtcagttctgacgcagggttgttggaggccgcagatattctgttatgtatgcggcattgcgaaacaagtaatgtgttgcatccctattaatccgcatgatgccgggtttacttccccggcagtgctttcatttcagcgtacaatcgccacattgctgcacatccggtaagcgataacgctggcagcaagtgcggcgcaccagcaggccgtcgcgcagtaccacggtacgccagagtggattatcttcaccgttcgtgagcgttttctcaaaaaagagggcatggcgcagcgattcaacagtagcctcgccgagcagttgcttcatctcagtgagataccagttgatcaaataaccggtattactccagataagtttgccgttgatctctccggtcgcttctagtgcttgcacaaccggaaccagcgcctggctgattaacgtttccattcgatgctgcggcgaatgtggtgttgcgtttttatcttcacacacatcgacccagaaacaggcgacgcgtccggtttcgtgaaactcagcatggaaatgttccggcgacacatctaatgccttttcctgcgtcagtagcgccagcattaatggtggcaccatcaggccgatataccattgtgcccatagtgagatcagcggtttgttctcgcggatcatcatcggttggttgcgatagatatgatcggaatagaccgccagcagagaacttagcacattcggtgatgaccattgcgccagcgtcatggcgttaagtggggcaggttcatccaggcggataaactccagcaaatgttcacgatgttttgcgatcgtcgcccgcacggcttgcgcaagcgtgggatcctgcggctggagatgcgttcgccagatgacatcttcatagagcggtgcggaacgataggccataatcgggatagtaatctaaatgataatgattgctaatcatagcgataggtttacccgatagcaagggatttatctggcttgcaaatgataaaaattatcatatgatattggttatcattatcaatgaaagagatgaaatcatgttgcaacgtacgctgggcagtggctggggagtgttgctgccgggattgctgattgcagggctgatgtatgcggatttatcgtcagatcagtggcggattgtcattctgatgggattagtattgacgccgatgatgctgtatcacaaacagttgcggcattacattttgctaccatcgtgcctggcacttattgctggcatcatgctgatgataatgaatttgaatcagggatgaaaaatcaaggaagaaacaagaaaggaagtaaagataattggtgcgaggggggggacttgaacccccacgtccgtaaggacactaacacctgaagctagcgcgtctaccaattccgccaccttcgcacagtcatcttactttttttgatatcgcctcgtttggtgcgaggggggggacttgaacccccacgtccgtaagaacactaacacctgaagctagcgcgtctaccaattccgccaccttcgcccagtgcgagcaatatcaacgtggtttttggtgcgaggggggggacttgaacccccacgtccgtaaggacactaacacctgaagctagcgcgtctaccaattccgccaccttcgcataccatcaattcttaaaaagaattgctaccacggaggcgcattctagtggttttcagcttttcgtcaatagttaattatcgacagaggtgtaattgctggaaaaatgtccatcaggaaactagcgtgcaggtttggtatgcatgcgggggcagatgccagatgcgacgctggcgcgtcttatctggcctacgaagggctaacgtgcaggttttgtaggtcggataaggcgttcacgccgcatccgacacggtattcggcgagataattaacctttcttcgcctggcgggtcataatggcgcgatacaccttgaagcgccctgtttgcgcgatcacttcgtggaagccaaatgtctcatccagcacgtccggataaggcaggaaggcgttcgctacaattcgcagctcgccgccgctattaagatgacgcaccgcaccgcgaatcagcgtttgcgccgcatccaggctggtttgcatcccatcgtggaacggcgggttggagatgatcatatcaaaacgacctttcacctcggaaaagacgttgctggcaaagacttcaccttcaacaccgttggccgcaagtgttgcgcggctggcttctaccgccggggcagagacatcgcacaaggtgagacgaattttcggcgaatggcgcgcaaaggcaactgaaagcacgcccgcgccacagccgacatccagcactttacctttcgtgtgcggagttaacgtcgagagcagcaactggctaccgacatccagaccgtcgcggctaaacacgccaggcagcgttttgaccgtcaggccatcgacgctgtattcgccccagaatttctccgcatcaaataccggctgtttttccagacgaccaaaatagaggccacagcgacgagcgctgtcgactttattcaacggcgcataatctgccagcatctgctcggcgctgcgcacgccgctgcggttctcgccaacgacaaaaatatctgtccccactggcagcagagaaagtaaattcatcaactggaactgggcttccggtttgttcttcggccagtagtaaatcagcgtatcgcaatctgcgacgtcatccgccgtggcgaccagactgaaacgggcgttatcccccatctggcggcttaatacctgccagtggtggaattgctgggtatgagcacggctggccgcggtatctaaacgcgcgggcaggtcatcctgtaagtctccggcaaacagaatacggctttgttcgaaatcatcactgtgacgcagcaagacttcacttgccggggtaaatgcagacatggaatgctcctcaattgatactggcggcgattatagccatatgttggcgcggtatcgacgaatttgctatatttgcgcccctgacaacaggagcgattcgctatgacatcccgacgagactggcagttacagcaactgggcattacccagtggtcgctgcgtcgccctggcgcgttgcagggggagattgccattgcgatcccggcacacgtccgtctggtgatggtggcaaacgatcttcccgccctgactgatcctttagtgagcgatgttctgcgcgcattaaccgtcagccccgaccaggtgctgcaactgacgccagaaaaaatcgcgatgctgccgcaaggcagtcactgcaacagttggcggttgggtactgacgaaccgctatcactggaaggcgctcaggtggcatcaccggcgctcaccgatttacgggcaaacccaacggcacgcgccgcgttatggcaacaaatttgcacatatgaacacgatttcttccctcgaaacgactgatttaccggcggcttaccacattgaacaacgcgcccacgcctttccgtggagtgaaaaaacgtttgccagcaaccagggcgagcgttatctcaactttcagttaacgcaaaacggcaaaatggcggcgtttgcgattacgcaagtggtgctggatgaagctacattgttcaatattgcggtcgatcctgactatcagcgtcagggattgggaagggcgctgctggaacatctgatcgacgaactggaaaaacgcggcgtggcgacactatggctggaagtccgtgcttcaaacgctgccgccattgccctgtacgaaagtttaggctttaacgaggcgacgattcgccgcaattactaccccaccacggacggtcgcgaagacgccatcatcatgcgttgccaatcagtatgtaatacaaggtggaataatgaagtgggactggattttctttgatgccgatgaaacgctgtttacctttgactcattcaccggcctgcagcggatgtttcttgattacagcgtcacctttaccgctgaagattttcaggactatcaggccgttaacaagccactgtgggtggattatcaaaacggcgcgatcacttcattacagcttcagcacgggcggtttgagagctgggccgaacggctgaacgtcgagccaggtaaactcaacgaagcctttattaatgcgatggcggaaatctgcacgccgctgccgggcgcggtttctctgcttaacgccattcgtggcaacgccaaaatcggcatcatcaccaacggctttagtgccttgcaacaggtgcgtctggaacgcacgggcctgcgtgattacttcgatttgctggtgatttccgaagaagttggcgttgccaaaccgaataagaaaattttcgattatgcgctggaacaggcgggcaatcctgaccgttcacgcgtgctgatggttggcgacactgccgagtccgatattctcggtggcatcaacgccgggcttgcgacctgctggctgaatgcacaccatcgcgagcaaccagaaggcatcgcgcccacctggaccgtttcttcgttgcacgaactggagcagctcctgtgtaaacactgattgcctcccccccgttgatgggtaaaatagccgcaatttttcgttttcaacaagcgcggcgcgatgccgcttactcaagaagaaagaattatgacgttgtctccttatttgcaagaggtggcgaagcgccgcacttttgccattatttctcacccggacgccggtaagactaccatcaccgagaaggtgctgctgttcggacaggccattcagaccgccggtacagtaaaaggccgtggttccaaccagcacgctaagtcggactggatggagatggaaaagcagcgtgggatctccattactacgtctgtgatgcagtttccgtatcacgattgcctggttaacctgctcgacaccccggggcacgaagacttctcggaagatacctatcgtaccctgacggcggtggactgctgcctgatggttatcgacgccgcaaaaggtgttgaagatcgtacccgtaagctgatggaagttacccgtctgcgcgacacgccgatcctcacctttatgaacaaacttgaccgtgatatccgcgacccgatggagctgctcgatgaagttgagaacgagctgaaaatcggctgtgcgccgatcacctggccgattggctgcggcaagctgtttaaaggcgtttaccacctttataaagacgaaacctatctctatcagagcggtaaaggccacaccattcaggaagtccgcattgttaaagggctgaataacccggatctcgatgctgcggttggtgaagatctggcacagcagctgcgtgacgaactggaactggtgaaaggcgcgtctaacgagttcgacaaagagctgttccttgcgggcgaaatcactccggtattcttcggtactgcgctgggtaacttcggcgtcgatcatatgttggatggcctggtggagtgggcacctgcgccgatgccgcgtcagactgatacccgtaccgtagaagcgagcgaagataaatttaccggcttcgtatttaaaattcaggccaacatggacccgaaacaccgcgaccgcgtggcgtttatgcgtgtggtgtccggtaaatatgaaaaaggcatgaaactgcgccaggtgcgcactgcgaaagatgtggtgatctccgacgcgctgacctttatggcgggtgaccgttcgcacgttgaagaagcgtatccgggcgatatcctcggcctgcacaaccacggcaccattcagatcggcgacacctttacccagggtgagatgatgaagttcaccggtattccgaacttcgcaccagaactgttccgtcgtatccgcctgaaagatccgctgaagcaaaaacagctgctcaaagggctggtacagctttccgaagagggcgcggtgcaggtgttccgtccaatctccaacaacgatctgatcgttggtgcagttggtgtgctgcagtttgatgtggtggtagcgcgcctgaagagcgaatacaacgttgaagcagtgtatgagtcagtcaacgttgccactgcccgctgggtagaatgtgcagacgcgaagaaattcgaagagttcaagcgtaagaacgaaagccaactggcgcttgatggcggcgataacctcgcttacatcgctaccagcatggtcaacctgcgcctggcacaggaacgttatccggacgttcagttccaccagacccgcgagcattaattcttgcctccagggcgcggtacgcgctgcgccctgtcaatttcccttccttattagccgcttacggaatgttcttaaaacattcacttttgcttatgttttcgctgatatcccgagcggtttcaaaattgtgatctatatttaacaaagtgatgacatttctgacggcgttaaataccgttcaatgcgtagatatcagtatctaaagccgtcgattgtcattctaccgatattaataactgattcagaggctgtaatggtcgttattcatcactcatcgcttttgtgatggcgaccattgacttctgtagagggtgaagtctctccctattcagcaatgcaacctcgtgttgccaggctcaaattacgagcaaacatacaggaataaatcgatgactatgacaagactgaagatttcgaaaactctgctggctgtaatgttgacctctgccgtcgcgaccggctctgcctacgcggaaaacaacgcgcagactaccaatgaaagcgcagggcaaaaagtcgatagctctatgaataaagtcggtaatttcatggatgacagcgccatcaccgcgaaagtgaaggcggccctggtggatcatgacaacatcaagagcaccgatatctctgtaaaaaccgatcaaaaagtcgtgaccctgagcggtttcgttgaaagccaggcccaggccgaagaggcagtgaaagtggcgaaaggcgttgaaggggtgacctctgtcagcgacaaactgcacgttcgcgacgctaaagaaggctcggtgaagggctacgcgggtgacaccgccaccaccagtgaaatcaaagccaaactgctggcggacgatatcgtcccttcccgtcatgtgaaagttgaaaccaccgacggcgtggttcagctctccggtaccgtcgattctcaggcacaaagtgaccgtgctgaaagtatcgccaaagcggtagatggtgtgaaaagcgttaaaaatgatctgaaaactaagtaattcgtcgtaattcgtcctcccgaactttgtcgggaggcgcgatgtgcaccacactaaaaatatcgcattgagtgattttcacgctcatatcaagcggtgacattaactatggtaaaggagacgcttatgtttcgttggggcatcatatttctggttatcgcgttaatcgccgccgcacttgggtttggtggtctggccggtaccgctgcaggcgcagctaaaattgtctttgtcgtcgggattattctgttcctggtgagtttgttcatgggccgaaaacgaccctagatttcagaccattaagaaaattttatccaaagccagtccagcggactggcttttgcggttttagcgaataataaattgcgttactttgtcattctttcacaacaaaaacaggaaggcagaggtggggcagcgaatacctgtaacgcttggtaatattgcgccgttgtcgctaaggccgttccagcctggacgaatagctctggtgtgcgaaggcggcggacagcgtggaattttcacggctggcgtgctggatgagtttatgcgcgcgcagtttaatcctttcgatctttatctcggcacatctgccggggcgcagaacctctcggcgtttatctgcaatcagcccggttacgcgcgcaaagtcatcatgcgctataccacaaaacgcgaatttttcgatccattgcgctttgtccgtggaggaaatcttatcgatctcgactggctggtggaggccactgcaagccagatgccgttgcaaatggataccgccgcgcggttgtttgacagcggcaaatcgttttatatgtgcgcctgtcgtcaggatgactacgcgccgaattactttttaccaaccaaacaaaactggctggatgtgattcgcgcctccagtgcgatacctggcttttatcgtagcggagtgtcgctggaaggcattaactacctggatggcgggatcagtgatgcgattccggttaaagaggcggcaaggcagggcgctaaaacgttggtcgtcattcgcactgtgccgtcacaaatgtactacacgccgcagtggttcaaacgcatggaacgctggctgggtgacagtagcctgcagccgctggtcaatctggtgcagcatcatgaaaccagctatcgtgacattcagcaatttattgagaaaccaccgggcaagctgcggatattcgaaatttatccgccgaagccattacatagtatcgcgcttggcagtcggattccggcgctgcgtgaagactataaacttgggcgtttatgcggtcgttatttcctcgccacggttggcaagctattaactgaaaaagcgccgcttacccgccatctggtgccagtggtgacgccggaatcgattgtcattccgcctgcgccagtcgccaacgatacgctggttgccgaagtgagcgacgctccgcaggcgaacgacccgacatttaacaatgaggatctggcttgatttgccgttttatcgacacccactgccattttgatttcccgccgtttagtggcgatgaagaggccagcctgcaacgcgcggcacaagcgggcgtaggcaagatcattgttccggcaacagaggcggaaaattttgcccgtgtgttggcattagcggaaaattatcaaccgctgtatgccgcattgggcttgcatcctggtatgttggaaaaacatagcgatgtgtctcttgagcagctacagcaggcgctggaaaggcgtccggcgaaggtggtggcggtgggggagatcggtctggatctctttggcgacgatccgcaatttgagaggcagcagtggttactcgacgaacaactgaaactggcgaaacgctacgatctgccggtgatcctgcattcacggcgcacgcacgacaaactggcgatgcatcttaaacgccacgatttaccgcgcactggcgtggttcacggtttttccggcagcctgcaacaggccgaacggtttgtacagctgggctacaaaattggcgtaggcggtactatcacctatccacgcgccagtaaaacccgcgatgtcatcgcaaaattaccgctggcatcgttattgctggaaaccgacgcgccggatatgccgctcaacggttttcaggggcagcctaaccgcccggagcaggctgcccgtgtgttcgccgtgctttgcgagttgcgccgggaaccggcggatgagattgcgcaagcgttgcttaataacacgtatacgttgtttaacgtgccgtaggccggataaggcgttcacgccgcatccggcagttggcgcacaatgcctgatgcgacgcttaacgcgtcttatcatgcctacaggtttgtgccgaaccgtaggccggataaggcgttcacgccgcatccggcagttggcgcacaatgcctgatgcgacgcttgtcgcgtcttatcatgcctacaagtctgtgccgaaccgtaggccggataaggcgttcacgccgcatccggcagtcggcgcataatgcctgatgcgacgcttgtcgcgtcttatcatgcctacaggtttgtgccgaaccgtaggccggataaggcgttcgcgccgcatccggcagttggcgcacaatgcctgatgcgacgcttgacgcgtcttatcaggcctacaagtctgtgccgaaccgtaggccgtatccggcatgtcacaaatagagcgccggaaatatcaaccggctcaccccgcgcacctttaacgcatcagccaacggctcaacgtcttccggcgtggcgctcgcccagctttgcgcctcgccatacacgccgtgggcatgaaacgcgttcaggcgtaccggaacatcgccgagtcccttgataaacgccgccagttcttcgatgtgttgcaaataatccacctggccagggatcaccagcaaacgcagttccgccagcttgccgcgctctgccagcaaatagatgctgcgcttaatctgctgattatcgcgtccggtgagttgttgatgacattcgctcccccacgctttgagatcgagcattgcgccgtcgcacaccgggagcaatttttcccagccggtttcgctcaacatgccgttactgtccaccagacaggtgagatggcgcagttgcggatcgtttttgatagcagtaaacagcgccaccacaaacggcagctgggtcgtggcttcaccgccactcaccgttatcccttcgataaacagcactgctttgcggacatggctaagcacttcgtccacgctcatggattgcgccatgggcgtggcatgttgcggacacctcttcaggcaggtatcacactgctcgcaaaccacagcgttccacaccactttgccgtcaacaatctgcaacgcctgatgcggacactgtggcacgcactccccacagtcattgcaacgtcccatcgtccacggattgtgacagtttttgcagcgcagattgcagccctgcaaaaacagagccagacgactgcctggcccgtcaacgcaggagaaggggataatcttactgactaaagcgcatctgctgttcatggcttatcacgcgcggctggcgttccagaatacgagtgttgcgtgcggcttcttcgcccagccaggtggtgttggtgcgtgaaccttcggcgcgatatttttctaaatccgacaaacgcaccatataaccggtaacgcgaaccagatcgttaccgctgacattggcggtaaattcacgcattccggctttaaaggcaccgaggcaaagctgtaccagtgcctgcgggttacgtttgatggtttcgtcgagcgtcagaatgtcgctgatgccggaataataataagcatgatgcggggcgacagtttgcagatgggtgatcggatctggctcatcgccatacggcaaacgcgcgcccggcgtggtgccgatatcggaactgatccccgactgtgcgtgtaacatggcgcgtttttgccagccatatttcacgggggtattggcgacaaactccgccagttgcgcgctgatgcgataacctacttcatttgcggcggcttctttaccgtagcgcgcggcaatcccttctttttcacacagcaagttaaccgcttccgccagcccatacatgccaaacattggcacaaaacgttcagggttaatcagcccttctttcaccaggaagctattctcaaagaagtgtgattgttgatagaggaattcacaccgcgcatcgatgatggcgatctgctgctggcagtagtgcggtagagtgcgcgtaaagaagtcatccagcgattcgctgcgctcggcaatggctttcaggttaaggcgtaccagcgtgctgccaccacccgccagcggcagtgagttgtaacagctcacaatcccgtagcccccttttgtgaaaattttatcatgcaccggaccgttggcgatgtgcggtttgctacattcacagatgttcttcgccacttccagcagcaggtcatcaggggtgatttcaggatcgtagataaaggtcaggttcggtgaaacctgcttcaactctgcatctgcacgtaagatcgcgcgggtaatgggcgaatcagacgggccgatattggcgtgcataaaggcgtctggcagggttctgtcgaggtaacgccagaaacgttttattcgaacatcgatctcgtcttgtgttagaattctaacatacggttgcaacaacgcatccagttgccccaggtagaccggcatcgatgtgaccgacggtacgtggtggtaaagaatggtcagcagagagagtgcgtcatcaagatctttcgcgccttccagctccagccattcggaaccgttcgccagaaaacgggcgtaatcgggtaagacatagcgcggtttgtacggcgcatgaccttcaaacatatcgcagattacaccttcatccagcgcgcggcgggcttcggcaggaagctgtgggtaaggcagattgttttctgcttccagtgccagaaaatggcgcttctgctccgggctaagcactgggctggtgacaatttgctggcaacgttgttgcagtgcattttcatgagaagtgggcatcttcttttccttttatgccgaaggtgatgcgccattgtaagaagtttcgtgatgttcactttgatcctgatgcgtttgccaccactgacgcattcatttgaaagtgaattatttgaaccagatcgcattacagtgatgcaaacttgtaagtagatttccttaattgtgatgtgtatcgaagtgtgttgcggagtagatgttagaatactaacaaactcgcaaggtgaattttattggcgacaagccaggagaatgaaatgactgatctgaaagcaagcagcctgcgtgcactgaaattgatggacctgaccaccctgaatgacgacgacaccgacgagaaagtgatcgccctgtgtcatcaggccaaaactccggtcggcaataccgccgctatctgtatctatcctcgctttatcccgattgctcgcaaaactctgaaagagcagggcaccccggaaatccgtatcgctacggtaaccaacttcccacacggtaacgacgacatcgacatcgcgctggcagaaacccgtgcggcaatcgcctacggtgctgatgaagttgacgttgtgttcccgtaccgcgcgctgatggcgggtaacgagcaggttggttttgacctggtgaaagcctgtaaagaggcttgcgcggcagcgaatgtactgctgaaagtgatcatcgaaaccggcgaactgaaagacgaagcgctgatccgtaaagcgtctgaaatctccatcaaagcgggtgcggacttcatcaaaacctctaccggtaaagtggctgtgaacgcgacgccggaaagcgcgcgcatcatgatggaagtgatccgtgatatgggcgtagaaaaaaccgttggtttcaaaccggcgggcggcgtgcgtactgcggaagatgcgcagaaatatctcgccattgcagatgaactgttcggtgctgactgggcagatgcgcgtcactaccgctttggcgcttccagcctgctggcaagcctgctgaaagcgctgggtcacggcgacggtaagagcgccagcagctactaagtaagatgctttacgcctgatgcgctgcgcttatcaggcctacgagacgtatctacccgtaggccggataaggcgtagacgcatccggcaaaagccgcctcatactcttttcctcgggaggttaccttgtttctcgcacaagaaattattcgtaaaaaacgtgatggtcatgcgctgagcgatgaagaaattcgtttctttatcaacggtattcgcgacaacactatctccgaagggcagattgccgccctcgcgatgaccattttcttccacgatatgacaatgcctgagcgtgtctcgctgaccatggcgatgcgagattcaggaaccgttctcgactggaaaagcctgcatctgaatggcccgattgttgataaacactccaccggtggcgtcggcgatgtgacttcgctgatgttggggccgatggtcgcagcctgcggcggctatattccgatgatctctggtcgcggcctcggtcatactggcggtacgctcgacaaactggaatccatccctggcttcgacattttcccggatgacaaccgtttccgcgaaattattaaagacgtcggcgtggcgattatcggtcagaccagttcactggctccggctgataaacgtttctacgcgacccgtgatattaccgcaaccgtggactccatcccgctgatcaccgcctctattctggcgaagaaacttgcggaaggtctggacgcgctggtgatggacgtgaaagtgggtagcggcgcgtttatgccgacctacgaactctctgaagcccttgccgaagcgattgttggcgtggctaacggcgctggcgtgcgcaccaccgcgctgctcaccgacatgaatcaggtactggcctccagtgcaggtaacgcggttgaagttcgtgaagcggtgcagttcctgacgggtgaatatcgtaacccgcgtctgtttgatgtcacgatggcgctgtgcgtggagatgctgatctccggcaaactggcgaaagatgacgccgaagcgcgcgcgaaattgcaggcggtgctggacaacggtaaagcggcagaagtctttggtcgtatggtagcggcacaaaaaggcccgaccgacttcgttgagaactacgcgaagtatctgccgacagcgatgctgacgaaagcagtctatgctgataccgaaggttttgtcagtgaaatggatacccgcgcgctggggatggcagtggttgcaatgggcggcggacgccgtcaggcatctgacaccatcgattacagcgtcggctttactgatatggcgcgtctgggcgaccaggtagacggtcagcgtccgctggcggttatccacgcgaaagacgaaaacaactggcaggaagcggcgaaagcggtgaaagcggcaattaaacttgccgataaagcaccggaaagcacaccaactgtctatcgccgtatcagcgaataacggtatactgatctgatcatttaaatttgaagcactgagtacggagaacatatgaaacgtgcatttattatggtgctggactcattcggcatcggcgctacagaagatgcagaacgctttggtgacgtcggggctgacaccctgggtcatatcgcagaagcttgtgccaaaggcgaagctgataacggtcgtaaaggcccgctcaatctgccaaatctgacccgtctggggctggcgaaagcacacgaaggttctaccggtttcattccggcgggaatggacggcaacgctgaagttatcggcgcgtacgcatgggcgcacgaaatgtcatccggtaaagataccccgtctggtcactgggaaattgccggtgtcccggttctgtttgagtggggatatttctccgatcacgaaaacagcttcccgcaagagctgctggataaactggtcgaacgcgctaatctgccgggttacctcggtaactgccactcttccggtacggtcattctggatcaactgggcgaagagcacatgaaaaccggcaagccgattttctatacctccgctgactccgtgttccagattgcctgccatgaagaaactttcggtctggataaactctacgaactgtgcgaaatcgcccgtgaagagctgaccaacggcggctacaatatcggtcgtgttatcgctcgtccgtttatcggcgacaaagccggtaacttccagcgtaccggtaaccgtcacgacctggctgttgagccgccagcaccgaccgtgctgcagaaactggttgatgaaaaacacggccaggtggtttctgtcggtaaaattgcggacatctacgccaactgcggtatcaccaaaaaagtgaaagcgactggcctggacgcgctgtttgacgccaccatcaaagagatgaaagaagcgggtgataacaccatcgtcttcaccaacttcgttgacttcgactcttcctggggccaccgtcgcgacgtcgccggttatgccgcgggtctggaactgttcgaccgccgtctgccggagctgatgtctctgctgcgcgatgacgacatcctgatcctcaccgctgaccacggttgcgatccgacctggaccggtactgaccacacgcgtgaacacattccggtactggtatatggcccgaaagtaaaaccgggctcactgggtcatcgtgaaaccttcgcggatatcggccagactctggcaaaatattttggtacttctgatatggaatatggcaaagccatgttctgatggatttgggcggagcggttgactccgcctttgttatgtcacaaaaaggataaaacaatggctaccccacacattaatgcagaaatgggcgatttcgctgacgtagttttgatgccaggcgacccgctgcgtgcgaagtatattgctgaaactttccttgaagatgcccgtgaagtgaacaacgttcgcggtatgctgggcttcaccggtacttacaaaggccgcaaaatttccgtaatgggtcacggtatgggtatcccgtcctgctccatctacaccaaagaactgatcaccgatttcggcgtgaagaaaattatccgcgtgggttcctgtggcgcagttctgccgcacgtaaaactgcgcgacgtcgttatcggtatgggtgcctgcaccgattccaaagttaaccgcatccgttttaaagaccatgactttgccgctatcgctgacttcgacatggtgcgtaacgcagtagatgcagctaaagcactgggtattgatgctcgcgtgggtaacctgttctccgctgacctgttctactctccggacggcgaaatgttcgacgtgatggaaaaatacggcattctcggcgtggaaatggaagcggctggtatctacggcgtcgctgcagaatttggcgcgaaagccctgaccatctgcaccgtatctgaccacatccgcactcacgagcagaccactgccgctgagcgtcagactaccttcaacgacatgatcaaaatcgcactggaatccgttctgctgggcgataaagagtaattgtgtttcgctgcaaggcgattgccttgtgaagccggagcgggagactgctccggctttttagtatctattcatttttctctccagcttgaatattttcgctatacttttcagtgaaatgtgttaataaatctattcaagtatctattcacgaatctattcattaatgagcgagctgactgatcttttactgcaagggccgcgttctgccccggaattgcgccagcgtctggcaatcagtcaggcgacgttctcacgccttgttgccagagaagatcgggtgattcgctttggtaaagcacgggcaacgcgatatgcactgctgcgtccttatcgcggaattgagcgtattcccgtctggcgggtggacgataccggaaaggcgcataaattcgccgacatccggttgtgctggccgcagggaagttgtctggtaacaggcgcagatggcgacgaacagtggtttgatggtttgccctggtatttgaccgatctccgaccgcagggctttttagggcgcgcgtggggcaggaagttagccgcgcaactgaatctgactgatgatatacgtctctggcaggaagaagatgtgctctacgccctgaccgtatttaacggtgaatatactggcggttggttggtcggggaggggaattatcagcgatggattactgcacaacaccctgcggaaattcctctggatcaaaaactcacccattacgaacagctggcaagtgatgcactggcaggagaaattgtgggttcttctgcgggcggcgagcagccaaaatttacctactatgcacaaacgccgtcaggcaataaacatgtgttggtgaaattcaccgtaccacagcaaaccgcggtcagccaacgttggggtgacctgctaattgctgaatctattgccgcgcaaatcctgcgtgacggtgggatccacgccatcgagtcaacggtgcttgtaacaagtaacaggcaggtattcctcgaagcggaacgctttgactgcaaaggtaacgatggtcgcttgcctattgtgtcgctggaggcggtgcagagtgagtttatctcttctccgggatcgtggccgcaggcaatgcgccgtttgtgtgagcaacaacttgtcactcaccagagcgtggcgcaaacagaagtgatctgggcatttgggcgacttatcgccaacagcgatatgcacgcaggtaatttatcgttttatttatctgaaccgccatttgcgctgacgcccgtctacgacatgctgccgatggtctatgcaccaaacagcgctggaatgctgcgtgatgctgccattgaggtgaagtttgatcttaacgtcagtaaaagcgcttggttaacggcgatcccgctggcgcagcagttctggcaaacggtcgccagagatccgcgtatcagcgaggcgtttcgccacattgcgcaagaaatgccggaaaaaatccggcaaatcgaagagaaagttgcccgcatgggcgggtaactaccttacagcccccgccatccatgccgataactcccgtagctctttttcctgttccgggaagtcaaccaacagcgcttcgcactcctgttgcagcatatctgcgcggtacaggcagccttgcagtcgtccggcgagggcttccagcggcgcggggttgaggctgtcggtaaacacctgggcgcgggtgatatggcctttttcaacgtcgaaatgcagttccacgccgccccaggtaaagcgttcatccagcagatgcgagaatgccggagcctgaccgaagttccattcccagctactctggcgggcaaaggtttcggcgaagtttggcaagtctggcgttttgttcggggagatgatttccgcttccacgcgctcgccataatgggcgaaaaaggcctcggttatggcctcgcaaacctgctcatgggtgatccccggcaacagctcggtgaggttggtcacgcgggaacgtaccgacgtaatgcctttcgccgccagtttctttttatccggattgagatagtttgccaggcggctgaggtcggcattgagtagcaaggtgccgtggtggaagccgcgatctttggtttcgcgataggccgagcctgagactttgcggtcgccttcgacggttttcaccaccagatcgttacgtccggacgcttcggcgctgacgccgagcgcgttcagcgcattgagcacaatcgacgtggagatagttttatcgtactccggcttgccagccataaaggtaaagcaggtattgccgagatcgtggaacaccgcgccgccaccgctactgcgccgcgccaggcggacgttatcttcttccatccgccgggtattacactctttccacgggttctgcgcgcgaccaattactaccgtgtcggcattgcgccagagaaacagaacgcgctgcgtggcgggcatttggcgaaaaatacactcttccaccgccaggttaaaccacgggtcgtaagagtcagagatgagcaggcgtaatgtggacataacgatttcctttcttgtagtaatgggtcactcttttttctcgctttcttcctcttccggcaccggtttgctggcggttaacaggaagggcgattgctgccagcgggtgcgtttaccctgtagcagcgtgcgggtcagcactacaccgattgccagtgagagcagcaacatcaggcgtaaaatgttagtggtgttatccacctgttgggcttcggtggcgagcgtatgggtgtcgagtgtcaggcgcagatagccgagcggtccgtttttacccgcaattggctcgacaatctgctggttaaaatagccgcctgcttttttaccgtcgagcgccagccggtcgcgcacttcgacgctttcgccagaacgtgcgataagatcgccttgttcgtcatacacacccgcgtcgaggatacggctttcatccgttaactgatcgaggatcgcctgaatgcgtttttcatccggtgagtcggtacgcatcagcggtgcaacgttcagcgtcacctgacgcgccagggtgcgggccagttcttccagctgtggattacgctgtcgctggtggttttgactaaaccatgacgctccctgcatcagcgccactaacaaggcaagacagaacaggacaatcactgcccgatgcagccggaatttcagttttgtgcgagccatcttccaccctttgaaaatttgagacttaatgttgccagaagcaatggatacaaggtagcctcatgcgttattttccctgcttcgaacgattttacaggagccttaatgcctaacattacctggtgcgacctgcctgaagatgtctctttatggccgggtctgcctctttcattaagtggtgatgaagtgatgccactggattaccacgcaggtcgtagcggctggctgctgtatggtcgtgggctggataaacaacgtctgacccaataccagagcaaactgggtgcggcgatggtgattgttgccgcctggtgcgtggaagattatcaggtgattcgtctggcaggttcactcaccgcacgggctacacgcctggcccacgaagcgcagctggatgtcgccccgctggggaaaatcccgcacctgcgcacgccgggtttgctggtgatggatatggactccaccgccatccagattgaatgtattgatgaaattgccaaactggccggaacgggcgagatggtggcggaagtaaccgaacgggcgatgcgcggcgaactcgattttaccgccagcctgcgcagccgtgtggcgacgctgaaaggcgctgacgccaatattctgcaacaggtgcgtgaaaatctgccgctgatgccaggcttaacgcaactggtgctcaagctggaaacgctgggctggaaagtggcgattgcctccggcggctttactttctttgctgaatacctgcgcgacaagctgcgcctgaccgccgtggtagccaatgaactggagatcatggacggtaaatttaccggcaatgtgatcggcgacatcgtagacgcgcagtacaaagcgaaaactctgactcgcctcgcgcaggagtatgaaatcccgctggcgcagaccgtggcgattggcgatggagccaatgacctgccgatgatcaaagcggcagggctggggattgcctaccatgccaagccaaaagtgaatgaaaaggcggaagtcaccatccgtcacgctgacctgatgggggtattctgcatcctctcaggcagcctgaatcagaagtaattgctcgcccgccatcctgcgggcggcacagcattaacgaggtacaccgtggcaaaagctccaaaacgcgcctttgtttgtaatgaatgcggggccgattatccgcgctggcaggggcagtgcagtgcctgtcatgcctggaacaccatcaccgaggtgcgtcttgctgcgtcgccaatggtggcgcgtaacgagcgtctcagcggctatgccggtagcgccggggtggcaaaagtccagaaactctccgatatcagccttgaagagctgccgcgtttttccaccggatttaaagagttcgaccgcgtactaggcggcggcgtggtgccaggaagtgccattctgattggcggtaaccctggtgcggggaaatccacgctgctactgcaaacgctgtgcaaactggcccagcagatgaaaacgctgtatgtcaccggcgaagagtcgctgcaacaggtggcaatgcgcgctcatcgccttggcctgccgactgacaatctcaatatgttgtcggaaaccagcatcgaacagatctgcctgattgccgaagaagagcaaccgaagctgatggtaattgactcgatccaggtgatgcatatggcggatgtacagtcatcgcctggtagcgtggcgcaggtgcgtgaaacggcggcttatttgacacgcttcgccaaaacgcgcggtgtggcgattgtcatggtggggcacgtaaccaaagatggttcgctggctggcccgaaagtgctggaacactgtatcgactgttcggtgcttttggatggcgatgccgactcccgttttcgcaccttgcgcagccataaaaaccgcttcggcgcggtgaatgagctgggcgtcttcgcgatgaccgaacaggggctgcgtgaagtcagcaacccttcggcaattttcttaagtcgcggcgatgaagtgacctccggtagctcagtgatggtggtatgggaaggaacgcgtccactgctggtggagattcaggcgctggtcgatcactcgatgatggcgaacccacgccgcgtggcagtggggctggaacaaaaccgtctggcaatcctgctggctgtgttgcaccgtcacggtggtctgcaaatggccgatcaggatgtgtttgtgaacgtggtcggcggcgtgaaggtaaccgaaaccagtgccgacttagcgttactgctggcgatggtttccagcctgcgcgacagaccgctgccgcaggatctggtggtgtttggtgaagtcgggctggcaggggagatccgcccggtgcccagcggtcaggaacgaatctctgaagcggcgaaacacggttttcgccgggcgattgttccggcggctaacgtgccgaaaaaagcgccggaagggatgcagatttttggcgttaaaaaactctccgacgcgcttagcgtgttcgacgacttataatgagatatacggagggagatatgtcgtcatttgattacctgaaaactgccatcaagcaacagggctgcacgctacagcaggtagctgatgccagcggtatgaccaaagggtatttaagccagttactgaatgccaaaatcaaaagccccagcgcgcaaaagctggaggcgttgcaccgttttttggggcttgagtttccccggcagaagaaaacgatcggtgtcgtattcggtaagttctacccactgcataccggacatatctaccttatccagcgcgcctgtagccaggttgacgagctgcatatcattatgggttttgacgatacccgtgaccgcgcgttgttcgaagacagtgccatgtcgcagcagccgaccgtgccggatcgtctgcgttggttattgcaaacttttaaatatcagaaaaatattcgcattcatgctttcaacgaagagggcatggagccgtatccgcacggctgggatgtgtggagcaacggcatcaaaaagtttatggctgaaaaagggatccagccggatctgatctacacctcggaagaagccgatgcgccacagtatatggaacatctggggatcgagacggtgctggtcgatccgaaacgtacctttatgagtatcagcggtgcgcagatccgcgaaaacccgttccgctactgggaatatattcctaccgaagtgaagccgttttttgtgcgtaccgtggcgatccttggcggcgagtcgagcggtaaatccaccctggtaaacaaacttgccaatatcttcaacaccaccagtgcgtgggaatatggccgcgattatgtcttttcacacctcggcggtgatgagatcgcattgcagtattctgactacgataaaatcgcgctgggccacgctcaatacattgattttgcggtgaaatatgccaataaagtggcatttatcgataccgattttgtcaccactcaggcgttctgcaaaaagtacgaagggcgggaacatccgttcgtgcaggcgctgattgatgaataccgtttcgatctggtgatcctgctggagaacaacacgccgtgggtggcggatggtttacgcagcctcggcagttcggtggatcgcaaagagttccagaacttgctggtggagatgctcgaagagaacaatatcgaatttgtgcgggttgaagaggaagattacgacagtcgtttcctgcgctgcgtggaactggtgcgggagatgatgggggagcagagataaccgtgatgaaactgctcaaaggcgaggtataaaatgagtttttttgatgagttgaaaacctctctggaagaggctgtcgagattaaacaaggtttgaaaaaacctgcacgggtgacccgccacgaaattgaggatgctaaggctgttgtagaccggaaacggtgttcacgccgcatccggcattcggtgctcaatgcctgatgcgacgcttaccgcgtcttatcaggcctacagttttacaacgtattgaaattgctggttttgtaggccggataaggcgttcgcgccgcatccggcattttacgcattacttcgcaatacgcttgtacttgatacgcttcggctccagcgcgtgctgcgcccagcgtgcgtttcttgtactcttcgtactcggtaaagttaccttcgaagaactcaactttaccttcatcctggtaatccagaatgtgcgtggcgatacggtcgaggaaccaacggtcgtgcgagataaccatcgcacagcccgggaactccagcagggcgttttccagcgcgcgcagggtttcgatatccaggtcgttggttggttcgtcgagcagcagcatgttgccgccaacctgcagcagcttcgccagatgcagacgaccgcgctcaccaccggagagttcaccaacgcgtttaccctgatcaacccctttaaagttaaagcggccaacgtaggcgcggcttggcatctcggtgttgccgatcttcatgatatccagcccgccggaaacttcttcccaaacggttttgctgttatccattgagtcacggaactgatcaaccgacgccagtttcaccgtttcacccaaagtgatggtgccgctgtccggctgttcctgaccagagatcatacggaacagggtcgatttacccgcaccgttcggaccgatgatcccgacgatcgctcctttcgggatcgagaagctcaggtcatcaatcagcagacgatcgccataggatttacgcaggttgctgacttccagcactttatcgcccagacgcggtccaggtggaataaacagttcgttggtttcgttacgtttctgatattcggtgctgttcagttcttcaaagcgcgccagacgtgctttacctttcgactgacggcctttagtaccttgacgtacccattccagctctttctcaatcgacttacgacgcgccgcttcttgtgaagcttcctgcgccaggcgctgatctttctgctccagccaggaggagtagttaccttcccacggaataccttcaccgcggtcaagttcgaggatccagcctgcaacgttatcgaggaagtaacggtcgtgggtaatcgccacaacggtgccttcgaagtcgtgcaggaagcgttccagccaggccacggattcggcatccaggtggttggtcggttcgtcgagcagcagcatgtctggtttttccagcagcaggcggcacaacgctacgcgacgacgttcaccaccggagaggttagcgattttcgcgtcccagtccggcagacgtagcgcatccgccgcacgctccagctgtacgttcagattatgaccgtcgtgagcctgaatgatctcttccagacggccttgttcagcggccagcttgtcaaaatcggcatccggatcggcgtacagcgcatacacttcatccaggcgtttcagggcgttaaccacttctgaaaccgcttcttcaatggactcacgcacggtgtgttccgggttcagctgcggttcctgcggcagataaccaatcttgatgtctggctgcggacgcgcttcaccttcgatgtctttatcaatgcccgccataatgcgcagcagggtggacttacccgcgccattcagacccaggacaccaatttttgccccagggaagaaactcagagagatgtttttcaaaatatgacgtttcggcggaacaactttgccgacacgatgcatggtataaacgaattgagccacgttggacttcgcctctatgtttatcgtgataatgagttttcaaaggcgaagtgtagcctttttccccgcctaatcccagccggtcgatcaccctcgcagtaaaagtaaaaaagtgtccgtaacgtggcgtaaacggcaatgactggttagcataaatctattacgcggcatgacgctgcattgatgtatttacacttagaggatgcgcttgtggaaaaagccaaacaagttacctggcggctgttggctgccggtgtctgtctgctgacggtcagcagcgtggcgcgagccgactcactggatgagcagcgtagtcgttacgcgcaaatcaagcaggcctgggataatcgacaaatggatgtggtcgaacaaatgatgcctggactgaaggattatccgctttatccctacctggaataccgccagatcaccgatgatctgatgaatcaaccggcggtgacggtcactaactttgttcgcgctaaccccacgcttcctcccgctcgcacgctgcaatctcgtttcgtcaatgaactggcgcggcgtgaagactggcgtggcttgttagcctttagcccggaaaagcccggaactaccgaagcgcaatgtaattactactatgcgaaatggaacaccgggcagagtgaagaagcctggcaaggggcgaaagagctgtggctaaccggcaagagccagcctaacgcctgtgacaagttatttagcgtctggcgtgcgtcaggtaaacaagatccgctggcgtatttagagcgtatccgtctggcgatgaaagcgggtaacacaggcctggtaacagtgctggcagggcagatgcctgccgattaccagactatcgcctcggcaatcatttcactggcgaacaaccctaatacggtactgaccttcgcgcgtacaactggcgcgaccgattttacccgtcaaatggcggcggtggcgtttgccagtgtggcgcggcaggatgctgagaatgcacggctgatgatcccatcgcttgcccaggcgcagcagcttaatgaagatcagattcaggagctgcgcgatatcgtcgcctggcgtttgatgggcaacgatgtcaccgacgagcaggcgaaatggcgcgatgacgccattatgcgctcgcaatctacttcgcttattgaacgccgtgtacgaatggcgcttggcaccggcgatcgtcgcggcctgaatacctggctggcgcgtctgcctatggaagcgaaagagaaagatgaatggcgttactggcaggcggatttattgctggaacgcggacgtgaagctgaagcaaaagagattttgcatcaactcatgcaacagcgtggtttctacccgatggttgcagcacaacgcatcggcgaagagtatgagctgaagattgataaagcgccgcagaatgttgacagcgccctgactcaggggccggagatggcgcgcgtgcgcgagttgatgtactggaatctcgataataccgcgcgtagcgagtgggccaatctggtgaagagcaagtcaaaaacagagcaggctcaactggcgcggtatgctttcaacaaccaatggtgggatcttagcgttcaggcaacgatcgccgggaagctgtgggatcatctggaagagcgattcccgctggcttacaacgatcttttcaaacgctacaccagcggtaaggagatcccgcaaagctatgcgatggcgattgctcgtcaggagagcgcctggaatccgaaagtgaaatcaccggtaggggccagcggcttgatgcagattatgcctggtacagcgacccatacggtgaagatgttctctattcccggttatagcagtcctgggcaattgctggatccggaaacgaatatcaacattggcaccagttacctgcaatatgtttatcagcagtttggcaataatcgtattttctcctcagcagcttataacgccggaccagggcgggtgcgaacctggcttggcaacagcgccgggcgtatcgacgcagtggcatttgtcgagagtattccattctccgagacgcgcggttatgtgaagaacgtgctggcttatgacgcttactaccgctatttcatgggggataaaccgacgttgatgagcgccacggaatggggacgtcgttactgatccgcacgtttatgatatgctatcgtactctttagcgagtacaaccgggggaggcattttgcttcccccgctaacaatggcgacatattatggcccaacaatcaccctattcagcagcgatggcagaacagcgtcaccaggagtggttacgttttgtcgacctgcttaagaatgcctaccaaaacgatctccatttaccgttgttaaacctgatgctgacgccagatgagcgcgaagcgttggggactcgcgtgcgtattgtcgaagagctgttgcgcggcgaaatgagccagcgtgagttaaaaaatgaactcggcgcaggcatcgcgacgattacgcgtggatctaacagcctgaaagccgcgcccgtcgagctgcgccagtggctggaagaggtgttgctgaaaagcgattgattttgtaggcctgataagacgtggcgcatcaggcatcgtgcaccgaatgccggatgcggcgtgaacgccttatccgtcctacaaatacccgtaatttcaatatgtttggtaggcatgataagacgcggcagcgtcgcatcaggcgcttaatacacggcattatgaaacggactcagcgccaggatcaccgcctggtgatagacgctggcgcgagtgagtttcccggcggtaaacacgccgatcgccccttccttacgaccaatctcatcaataccggtataacgcgacatcacgggaccaagcgcctcaccttcacgcactttttccagaatcaccgcaggcaacggcaaagtagccgaacgcgcctcgccgcgctggctggcgttttcaatcaccacccaactgaaagtgctgtcaccatcgatgccagcttcaatcgccacccaaaaatcagcctctggaagtaaacggcgggcattggctacccgatttcgtgcgccagcgcgcgtttcctcactgccaaagggctgttccggtacaccgctctcgacggcaacggatgcaatatggcaggatccttcgccgaagatctcgtgaaatgcctgcagaatggcctgaattttagcgggattggtggtcgcacagacaacttggtgcataatcagcattactcagaaaattaacgttacagcagtatacggaaaaaaagcatgttacaggtatacctagtccgccacggtgaaacgcagtggaacgccgagcgacgtattcagggccagtctgacagcccgctgaccgccaaaggtgagcaacaggcgatgcaggtggcaacccgtgccaaagagcttggcattacgcatatcatcagtagcgatttaggacgcacccggcgtacggcggaaatcatcgcccaggcctgcggctgtgacatcatctttgattctcgcctgcgtgaattaaacatgggtgtgctggaaaaaagacatatcgattctctgaccgaagaagaagagaactggcgtcggcagctggtcaatggcaccgttgacgggcgtattcctgaaggcgagtcaatgcaggagctcagcgatcgcgtcaatgcggcactggaatcttgccgggacttaccgcagggaagccgaccgctgctggtgagtcatggtattgcactgggatgcctggtgagtacgattctcggattaccagcatgggcagagcgccgcttacgtctgcgtaactgttctatttcgcgcgtggattatcaggaaagcctgtggctggcgtctggctgggtcgttgaaaccgcaggggacatctcgcatctggacgcccctgcattagatgagctgcagcgttaacgacggatcggaatcagcagttcacagcgtagattaattgggcgatctcccgctttggcatcttctgccgggtagtatcgctcaatatcctgacctttacggcgcgtcaggttgagcattggcatgcacgttccgtataccgtcaggataaactcctgcacgccggttcccagaccttcataggtaaacatcacatattcgccgccctgcagcatcaccggatgccccgtcagtacatagccatctgcctgatcctgggctaacgcggtggtatagaatacctcttgctcgtcgtctttatcctgactcggacgcgtttcattcaggccgtagagcaccggcggaatggtcggcgcgttgccgagaaaatcgtgccagaactgataacgcatttcatggcggaaatcagagatttgctccagcgaacaggagtagctctgggtaacaccaatcagcggcgtatcttccagggtgacaaatttgtgctctggcatagtgaattcacccaggcgtagcggcgggcgaataccaaaggcgctccattcaggagaacggcggtaaagtgcaggagtctgggcaaactgcttcttgaatgcgcgggtaaatgtctgttgagagtcgaagcggtattgcagcgcgatgtccagaatcggacgcgcagtcaggcgtagtgcgaccgccgatttcgacaaacgacgagcacgaatatacgcgccaatagcatggccagtgacatctttaaacattctctgtaagtgccacttggaataacctgctttcgccgctacattgtcgagcgacaggggctgatccagatgaccttccagccagattaaaaggtcgcgaataatgccggcctgatccataaaatatcctcatcctttcaacaacgagcacctgacatcaggtaattggataatagcattttttgctgttttagcattcagtgtttttttcttagtagagtatgttttagggcttgacggaaataaaagtattgagattttgttcttaatcaatatgttatttaccgtgacgaactaattgctcgtgtaatagataaaaatggtaacaatatgaaatacaagcatttgatcctgtctttaagcctgataatgctggggccattggctcatgcagaagagattggttcggtcgacaccgtatttaaaatgatcggcccggatcacaaaattgttgtggaagcctttgatgatcccgatgtgaaaaatgtcacctgttatgtgagccgggcgaaaaccggtggtattaaagggggattgggtctggcggaagatacctccgatgcggccatttcttgtcagcaagtcgggccgattgaactgtcggatcgtattaaaaacggcaaagctcagggcgaggtagtattcaaaaaacgcacgtccctggtctttaagtcgttacaggtcgtgcgcttttatgatgccaaacgcaacgcgctcgcttatctggcttactccgacaaagttgtagaaggttcgccgaaaaacgcgattagcgcggttcctgtcatgccgtggcggcaataacagaggcgatttatgcaacgggaaacggtctggttagtggaagatgagcaagggatagccgacacgctggtctacatgttgcagcaggaaggttttgccgtcgaggtctttgagcgaggcttgccggtgctggataaagctcgcaagcaggtacccgacgtcatgattctcgatgttggtctgccggatattagcggctttgaattgtgccgccagttactggcgctccatccggcgttacctgtactgttcctgacggcccgaagtgaagaggtcgatcgcctgcttgggctggaaattggtgctgacgactacgtggctaaaccgttttcaccccgcgaagtgtgcgccagggtgcgcaccttactgcgtcgggtgaagaagttctcgacgccgtctcccgtcatccgtattggacattttgaattgaatgaacccgcggcgcagatcagctggtttgacacgccattagcgctgactcggtatgagtttttattgttgaagacgttactcaagtcaccgggccgcgtctggtcccgccagcaactgatggatagcgtatgggaagatgcgcaggacacctacgatcgcaccgtcgatacccacattaaaacgctgcgtgccaagctgcgcgccatcaaccccgatctttcaccgattaatactcatcgcggcatgggatatagcctgaggggcctgtaatgcgtatcggcatgcggttgttgctgggctattttttactggtggcggtggcagcctggttcgtactggccatttttgtcaaagaagttaaaccgggcgtgcgaagagcaacggaggggacgttgatcgacaccgcaacgttgctggcggagctggcgcgtcccgatttgctctctggggacccaacgcatgggcaactggcgcaggcgtttaatcagctacaacatcgcccgtttcgcgccaatatcggtggcattaacaaagtgcgcaatgaatatcatgtctatatgaccgatgcgcagggcaaagtattgttcgattcggcaaataaagccgttggacaggattattcgcgctggaatgacgtctggctaacgttgcgtggtcagtatggtgcgcgcagcacgttgcaaaatcctgccgatcccgaaagttctgtgatgtatgttgccgcaccgattatggacggctcgcggcttattggcgttttgagcgtaggcaaaccgaacgcggcgatggctccggtcattaagcgtagcgagcggcgaattttatgggccagcgccattttgttggggattgcactggtgattggcgcaggcatggtttggtggatcaaccgctctattgcccggctcactcgctatgctgattccgtcactgacaataagcccgttcctctccccgatctcggtagtagcgagttgcgtaaactcgcgcaggcgctggaaagtatgcgcgtgaagctggaagggaaaaactatattgagcagtatgtttacgcattaactcatgagctaaaaagcccactggcggcgattcgtggagcggcggaaattttacgcgaaggtccgccgccggaagtggtggctcgttttactgacaacattctgacgcaaaatgcgcgtatgcaggcattggtagaaacgttactacgccaggcaagactggagaatcgtcaggaagtcgttctgactgctgttgatgtggcggcattattccgccgcgtcagcgaagcgcgcaccgtgcagttggcagaaaaaaaaatcactctgcatgttacgcccaccgaggttaacgttgctgctgaaccggcgttactggagcaggcgctgggaaatttactggataacgccatcgattttacccccgagagcggttgcatcacgctaagcgccgaagtggatcaggaacacgtcacgcttaaggtgctggataccggtagtggtattcctgactacgcgctttcacgtatttttgaacgcttttactctttgcctcgtgcaaatgggcaaaaaagcagcggtctggggttggcgttcgtcagtgaggtcgcccgtttgtttaacggcgaagtcacgctgcgcaacgtgcaggaaggtggcgtgctggcctcgcttcgacttcaccgtcacttcacatagcttcaaattcttcccacatagtcttcgtatcctgctgccattgcaaaggagaagactatgttgaaatcccccctgttctggaaaatgactagcctgtttggtgcagtattgctgttgttgattccgataatgctgattcggcaggtgattgtcgaacgtgctgattaccgtagcgatgtggaagatgcgattcgccaaagtaccagcgggccgcaaaaactcgttgggccgctcatcgctattcctgtgaccgagctttatacggtgcaggaagaggataaaaccgtggagcggaaacgaagttttatccatttttggttacctgagtcattgatggttgatggcaatcagaacgtggaagaacgcaagatagggatttataccggtcaggtctggcacagtgatttaacgttaaaagccgatttcgatgtttcgcgtcttagcgaactcaacgcgccaaatatcaccttaggcaagccatttattgtgattagcgtcggggatgcgcgtggtattggtgtggtgaaagcgcctgaagttaacggaacggcgctgaccattgaacccggcaccgggttagagcaaggcgggcagggcgtgcatatccctttacctgaaggggactggcggaagcagaacctgaagctgaatatggccctgaatttaagcggtaccggcgatctttctgtggtgcctggcgggcgtaatagcgaaatgaccttaaccagcaactggccgcatcccagttttttaggtgattttctaccagccaaacgggaagttagcgagtcaggttttcaggcgcactggcaaagcagctggtttgctaataatctcggtgagcgttttgcttcaggcaatgataccggctgggaaaacttcccggcgtttagcgtcgcagtaacgacgccagccgatcaataccaattaactgaccgggcgactaagtacgccattctgctgattgcactgacttttatggcgttctttgtttttgaaacgctcaccgcgcaacgtttacacccaatgcaatatttgctggtggggctttcattggtgatgttttatttgctcttgctggcgctttctgaacataccggttttaccgtggcatggataatcgccagtctgattggggcgataatgaacggtatttatttgcaagcggtattgaaaggttggtgcaacagcatgttgtttaccctcgcgctgttgttgctggatggtgtgatgtggggactgctcaactctgccgatagcgcgctgttgttgggaaccagtgtgctggtggtggcgctggccggcatgatgtttgtgacccgtaatatcgactggtatgcgttttcactgccgaaaatgaaagccagtaaagaagttacaacggacgatgagttacgtatctggaaataaggttgaaaaataaaaacggcgctaaaaagcgccgttttttttgacggtggtaaagccgattaatcttccagatcaccgcagaagcgataaccttcaccgtgaatggtggcgatgatttccggcgtatccggcgtagattcgaaatgtttacgaatacggcggatcgtcacgtctacagtacggtcgtgcggtttcagctcacggccggtcattttcttcagcagttcagcacgggactgaattttgcctgggttttcacagaagtgaagcatggcgcggaactcgctgcgcggcagcttgtactgctcgccatcagggccgatcaacgaacggctgttgatgtccagttcccaaccattgaacttgtagctttcaacgctacgacgttcttcgctgacagtacccagattcatggtacgggacagtaggttgcgtgcacgaatcgtcagttcacgcgggttgaacggtttggtgatgtagtcatctgcaccgatttcgaggccgagaattttatcgacttcgttgtcacggccagtcaggaacatcaacgcaacattcgcctgctcgcgcagttcacgcgctaacagaagaccgttcttacccggcagattgatatccatgatcaccaggttgatgtcatattcagagaggatctgatgcatttccgcgccatctgtcgcttcgaaaacatcatagccttccgcttcgaaaatacttttcaacgtgttgcgtgttaccaactcgtcttcaacgataagaatgtgcggggtctgcatgtttgctacctaaattgccaactaaatcgaaacaggaagtacaaaagtccctgacctgcctgatgcatgctgcaaattaacatgatcggcgtaacatgactaaagtacgtaattgcgttcttgatgcactttccatcaacgtcaacaacatcattagcttggtcgtgggtactttccctcaggacccgacagtgtcaaaaacggctgtcatcctaaccattttaacagcaacataacaggctaagaggggccggacacccaataaaactacgcttcgttgacatatatcaagttcaattgtagcacgttaacagtttgatgaaatcatcgtatctaaatgctagctttcgtcacattattttaataatccaactagttgcatcatacaactaataaacgtggtgaatccaattgtcgagatttattttttataaaattatcctaagtaaacagaaggatatgtagcattttttaacaactcaaccgttagtacagtcaggaaatagtttagccttttttaagctaagtaaagggctttttctgcgacttacgttaagaatttgtaaattcgcaccgcgtaataagttgacagtgatcacccggttcgcggttatttgatcaagaagagtggcaatatgcgtataacgattattctggtcgcacccgccagagcagaaaatattggggcagcggcgcgggcaatgaaaacgatggggtttagcgatctgcggattgtcgatagtcaggcacacctggagccagccacccgctgggtcgcacatggatctggtgatattattgataatattaaagttttcccgacattggctgaatcgttacacgatgtcgatttcactgtcgccaccactgcgcgcagtcgggcgaaatatcattactacgccacgccagttgaactggtgccgctgttagaggaaaaatcttcatggatgagccatgccgcgctggtgtttggtcgcgaagattccgggttgactaacgaagagttagcgttggctgacgttcttactggtgtgccgatggtggcggattatccttcgctcaatctggggcaggcggtgatggtctattgctatcaattagcaacattaatacaacaaccggcgaaaagtgatgcaacggcagaccaacatcaactgcaagctttacgcgaacgagccatgacattgctgacgactctggcagtggcagatgacataaaactggtcgactggttacaacaacgcctggggcttttagagcaacgagacacggcaatgttgcaccgtttgctgcatgatattgaaaaaaatatcaccaaataaaaaacgccttagtaagtatttttc"
  },
  {
    "path": "testdata/large/bible.txt",
    "content": "In the beginning God created the heaven and the earth. And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters. \nAnd God said, Let there be light: and there was light. \nAnd God saw the light, that it was good: and God divided the light from the darkness. \nAnd God called the light Day, and the darkness he called Night. And the evening and the morning were the first day. \nAnd God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters. \nAnd God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so. \nAnd God called the firmament Heaven. And the evening and the morning were the second day. \nAnd God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so. \nAnd God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good. \nAnd God said, Let the earth bring forth grass, the herb yielding seed, and the fruit tree yielding fruit after his kind, whose seed is in itself, upon the earth: and it was so. \nAnd the earth brought forth grass, and herb yielding seed after his kind, and the tree yielding fruit, whose seed was in itself, after his kind: and God saw that it was good. \nAnd the evening and the morning were the third day. \nAnd God said, Let there be lights in the firmament of the heaven to divide the day from the night; and let them be for signs, and for seasons, and for days, and years: \nAnd let them be for lights in the firmament of the heaven to give light upon the earth: and it was so. \nAnd God made two great lights; the greater light to rule the day, and the lesser light to rule the night: he made the stars also. \nAnd God set them in the firmament of the heaven to give light upon the earth, \nAnd to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good. \nAnd the evening and the morning were the fourth day. \nAnd God said, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fly above the earth in the open firmament of heaven. \nAnd God created great whales, and every living creature that moveth, which the waters brought forth abundantly, after their kind, and every winged fowl after his kind: and God saw that it was good. \nAnd God blessed them, saying, Be fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth. \nAnd the evening and the morning were the fifth day. \nAnd God said, Let the earth bring forth the living creature after his kind, cattle, and creeping thing, and beast of the earth after his kind: and it was so. \nAnd God made the beast of the earth after his kind, and cattle after their kind, and every thing that creepeth upon the earth after his kind: and God saw that it was good. \nAnd God said, Let us make man in our image, after our likeness: and let them have dominion over the fish of the sea, and over the fowl of the air, and over the cattle, and over all the earth, and over every creeping thing that creepeth upon the earth. \nSo God created man in his own image, in the image of God created he him; male and female created he them. \nAnd God blessed them, and God said unto them, Be fruitful, and multiply, and replenish the earth, and subdue it: and have dominion over the fish of the sea, and over the fowl of the air, and over every living thing that moveth upon the earth. \nAnd God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat. \nAnd to every beast of the earth, and to every fowl of the air, and to every thing that creepeth upon the earth, wherein there is life, I have given every green herb for meat: and it was so. \nAnd God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day. \nThus the heavens and the earth were finished, and all the host of them. \nAnd on the seventh day God ended his work which he had made; and he rested on the seventh day from all his work which he had made. \nAnd God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made. \nThese are the generations of the heavens and of the earth when they were created, in the day that the LORD God made the earth and the heavens, \nAnd every plant of the field before it was in the earth, and every herb of the field before it grew: for the LORD God had not caused it to rain upon the earth, and there was not a man to till the ground. \nBut there went up a mist from the earth, and watered the whole face of the ground. \nAnd the LORD God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul. \nAnd the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed. \nAnd out of the ground made the LORD God to grow every tree that is pleasant to the sight, and good for food; the tree of life also in the midst of the garden, and the tree of knowledge of good and evil. \nAnd a river went out of Eden to water the garden; and from thence it was parted, and became into four heads. \nThe name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold; \nAnd the gold of that land is good: there is bdellium and the onyx stone. \nAnd the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia. \nAnd the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates. \nAnd the LORD God took the man, and put him into the garden of Eden to dress it and to keep it. \nAnd the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat: \nBut of the tree of the knowledge of good and evil, thou shalt not eat of it: for in the day that thou eatest thereof thou shalt surely die. \nAnd the LORD God said, It is not good that the man should be alone; I will make him an help meet for him. \nAnd out of the ground the LORD God formed every beast of the field, and every fowl of the air; and brought them unto Adam to see what he would call them: and whatsoever Adam called every living creature, that was the name thereof. \nAnd Adam gave names to all cattle, and to the fowl of the air, and to every beast of the field; but for Adam there was not found an help meet for him. \nAnd the LORD God caused a deep sleep to fall upon Adam, and he slept: and he took one of his ribs, and closed up the flesh instead thereof; \nAnd the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man. \nAnd Adam said, This is now bone of my bones, and flesh of my flesh: she shall be called Woman, because she was taken out of Man. \nTherefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh. \nAnd they were both naked, the man and his wife, and were not ashamed. \nNow the serpent was more subtil than any beast of the field which the LORD God had made. And he said unto the woman, Yea, hath God said, Ye shall not eat of every tree of the garden? \nAnd the woman said unto the serpent, We may eat of the fruit of the trees of the garden: \nBut of the fruit of the tree which is in the midst of the garden, God hath said, Ye shall not eat of it, neither shall ye touch it, lest ye die. \nAnd the serpent said unto the woman, Ye shall not surely die: \nFor God doth know that in the day ye eat thereof, then your eyes shall be opened, and ye shall be as gods, knowing good and evil. \nAnd when the woman saw that the tree was good for food, and that it was pleasant to the eyes, and a tree to be desired to make one wise, she took of the fruit thereof, and did eat, and gave also unto her husband with her; and he did eat. \nAnd the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons. \nAnd they heard the voice of the LORD God walking in the garden in the cool of the day: and Adam and his wife hid themselves from the presence of the LORD God amongst the trees of the garden. \nAnd the LORD God called unto Adam, and said unto him, Where art thou? \nAnd he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself. \nAnd he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat? \nAnd the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat. \nAnd the LORD God said unto the woman, What is this that thou hast done? And the woman said, The serpent beguiled me, and I did eat. \nAnd the LORD God said unto the serpent, Because thou hast done this, thou art cursed above all cattle, and above every beast of the field; upon thy belly shalt thou go, and dust shalt thou eat all the days of thy life: \nAnd I will put enmity between thee and the woman, and between thy seed and her seed; it shall bruise thy head, and thou shalt bruise his heel. \nUnto the woman he said, I will greatly multiply thy sorrow and thy conception; in sorrow thou shalt bring forth children; and thy desire shall be to thy husband, and he shall rule over thee. \nAnd unto Adam he said, Because thou hast hearkened unto the voice of thy wife, and hast eaten of the tree, of which I commanded thee, saying, Thou shalt not eat of it: cursed is the ground for thy sake; in sorrow shalt thou eat of it all the days of thy life; \nThorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field; \nIn the sweat of thy face shalt thou eat bread, till thou return unto the ground; for out of it wast thou taken: for dust thou art, and unto dust shalt thou return. \nAnd Adam called his wife's name Eve; because she was the mother of all living. \nUnto Adam also and to his wife did the LORD God make coats of skins, and clothed them. \nAnd the LORD God said, Behold, the man is become as one of us, to know good and evil: and now, lest he put forth his hand, and take also of the tree of life, and eat, and live for ever: \nTherefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken. \nSo he drove out the man; and he placed at the east of the garden of Eden Cherubims, and a flaming sword which turned every way, to keep the way of the tree of life. \nAnd Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD. \nAnd she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground. \nAnd in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD. \nAnd Abel, he also brought of the firstlings of his flock and of the fat thereof. And the LORD had respect unto Abel and to his offering: \nBut unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell. \nAnd the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen? \nIf thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto thee shall be his desire, and thou shalt rule over him. \nAnd Cain talked with Abel his brother: and it came to pass, when they were in the field, that Cain rose up against Abel his brother, and slew him. \nAnd the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother's keeper? \nAnd he said, What hast thou done? the voice of thy brother's blood crieth unto me from the ground. \nAnd now art thou cursed from the earth, which hath opened her mouth to receive thy brother's blood from thy hand; \nWhen thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth. \nAnd Cain said unto the LORD, My punishment is greater than I can bear. \nBehold, thou hast driven me out this day from the face of the earth; and from thy face shall I be hid; and I shall be a fugitive and a vagabond in the earth; and it shall come to pass, that every one that findeth me shall slay me. \nAnd the LORD said unto him, Therefore whosoever slayeth Cain, vengeance shall be taken on him sevenfold. And the LORD set a mark upon Cain, lest any finding him should kill him. \nAnd Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden. \nAnd Cain knew his wife; and she conceived, and bare Enoch: and he builded a city, and called the name of the city, after the name of his son, Enoch. \nAnd unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech. \nAnd Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah. \nAnd Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle. \nAnd his brother's name was Jubal: he was the father of all such as handle the harp and organ. \nAnd Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah. \nAnd Lamech said unto his wives, Adah and Zillah, Hear my voice; ye wives of Lamech, hearken unto my speech: for I have slain a man to my wounding, and a young man to my hurt. \nIf Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold. \nAnd Adam knew his wife again; and she bare a son, and called his name Seth: For God, said she, hath appointed me another seed instead of Abel, whom Cain slew. \nAnd to Seth, to him also there was born a son; and he called his name Enos: then began men to call upon the name of the LORD. \nThis is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him; \nMale and female created he them; and blessed them, and called their name Adam, in the day when they were created. \nAnd Adam lived an hundred and thirty years, and begat a son in his own likeness, and after his image; and called his name Seth: \nAnd the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters: \nAnd all the days that Adam lived were nine hundred and thirty years: and he died. \nAnd Seth lived an hundred and five years, and begat Enos: \nAnd Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters: \nAnd all the days of Seth were nine hundred and twelve years: and he died. \nAnd Enos lived ninety years, and begat Cainan: \nAnd Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters: \nAnd all the days of Enos were nine hundred and five years: and he died. \nAnd Cainan lived seventy years and begat Mahalaleel: \nAnd Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters: \nAnd all the days of Cainan were nine hundred and ten years: and he died. \nAnd Mahalaleel lived sixty and five years, and begat Jared: \nAnd Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters: \nAnd all the days of Mahalaleel were eight hundred ninety and five years: and he died. \nAnd Jared lived an hundred sixty and two years, and he begat Enoch: \nAnd Jared lived after he begat Enoch eight hundred years, and begat sons and daughters: \nAnd all the days of Jared were nine hundred sixty and two years: and he died. \nAnd Enoch lived sixty and five years, and begat Methuselah: \nAnd Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters: \nAnd all the days of Enoch were three hundred sixty and five years: \nAnd Enoch walked with God: and he was not; for God took him. \nAnd Methuselah lived an hundred eighty and seven years, and begat Lamech. \nAnd Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters: \nAnd all the days of Methuselah were nine hundred sixty and nine years: and he died. \nAnd Lamech lived an hundred eighty and two years, and begat a son: \nAnd he called his name Noah, saying, This same shall comfort us concerning our work and toil of our hands, because of the ground which the LORD hath cursed. \nAnd Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters: \nAnd all the days of Lamech were seven hundred seventy and seven years: and he died. \nAnd Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth. \nAnd it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them, \nThat the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose. \nAnd the LORD said, My spirit shall not always strive with man, for that he also is flesh: yet his days shall be an hundred and twenty years. \nThere were giants in the earth in those days; and also after that, when the sons of God came in unto the daughters of men, and they bare children to them, the same became mighty men which were of old, men of renown. \nAnd God saw that the wickedness of man was great in the earth, and that every imagination of the thoughts of his heart was only evil continually. \nAnd it repented the LORD that he had made man on the earth, and it grieved him at his heart. \nAnd the LORD said, I will destroy man whom I have created from the face of the earth; both man, and beast, and the creeping thing, and the fowls of the air; for it repenteth me that I have made them. \nBut Noah found grace in the eyes of the LORD. \nThese are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God. \nAnd Noah begat three sons, Shem, Ham, and Japheth. \nThe earth also was corrupt before God, and the earth was filled with violence. \nAnd God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth. \nAnd God said unto Noah, The end of all flesh is come before me; for the earth is filled with violence through them; and, behold, I will destroy them with the earth. \nMake thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch. \nAnd this is the fashion which thou shalt make it of: The length of the ark shall be three hundred cubits, the breadth of it fifty cubits, and the height of it thirty cubits. \nA window shalt thou make to the ark, and in a cubit shalt thou finish it above; and the door of the ark shalt thou set in the side thereof; with lower, second, and third stories shalt thou make it. \nAnd, behold, I, even I, do bring a flood of waters upon the earth, to destroy all flesh, wherein is the breath of life, from under heaven; and every thing that is in the earth shall die. \nBut with thee will I establish my covenant; and thou shalt come into the ark, thou, and thy sons, and thy wife, and thy sons' wives with thee. \nAnd of every living thing of all flesh, two of every sort shalt thou bring into the ark, to keep them alive with thee; they shall be male and female. \nOf fowls after their kind, and of cattle after their kind, of every creeping thing of the earth after his kind, two of every sort shall come unto thee, to keep them alive. \nAnd take thou unto thee of all food that is eaten, and thou shalt gather it to thee; and it shall be for food for thee, and for them. \nThus did Noah; according to all that God commanded him, so did he. \nAnd the LORD said unto Noah, Come thou and all thy house into the ark; for thee have I seen righteous before me in this generation. \nOf every clean beast thou shalt take to thee by sevens, the male and his female: and of beasts that are not clean by two, the male and his female. \nOf fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth. \nFor yet seven days, and I will cause it to rain upon the earth forty days and forty nights; and every living substance that I have made will I destroy from off the face of the earth. \nAnd Noah did according unto all that the LORD commanded him. \nAnd Noah was six hundred years old when the flood of waters was upon the earth. \nAnd Noah went in, and his sons, and his wife, and his sons' wives with him, into the ark, because of the waters of the flood. \nOf clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth, \nThere went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah. \nAnd it came to pass after seven days, that the waters of the flood were upon the earth. \nIn the six hundredth year of Noah's life, in the second month, the seventeenth day of the month, the same day were all the fountains of the great deep broken up, and the windows of heaven were opened. \nAnd the rain was upon the earth forty days and forty nights. \nIn the selfsame day entered Noah, and Shem, and Ham, and Japheth, the sons of Noah, and Noah's wife, and the three wives of his sons with them, into the ark; \nThey, and every beast after his kind, and all the cattle after their kind, and every creeping thing that creepeth upon the earth after his kind, and every fowl after his kind, every bird of every sort. \nAnd they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life. \nAnd they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in. \nAnd the flood was forty days upon the earth; and the waters increased, and bare up the ark, and it was lift up above the earth. \nAnd the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters. \nAnd the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered. \nFifteen cubits upward did the waters prevail; and the mountains were covered. \nAnd all flesh died that moved upon the earth, both of fowl, and of cattle, and of beast, and of every creeping thing that creepeth upon the earth, and every man: \nAll in whose nostrils was the breath of life, of all that was in the dry land, died. \nAnd every living substance was destroyed which was upon the face of the ground, both man, and cattle, and the creeping things, and the fowl of the heaven; and they were destroyed from the earth: and Noah only remained alive, and they that were with him in the ark. \nAnd the waters prevailed upon the earth an hundred and fifty days. \nAnd God remembered Noah, and every living thing, and all the cattle that was with him in the ark: and God made a wind to pass over the earth, and the waters asswaged; \nThe fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained; \nAnd the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated. \nAnd the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat. \nAnd the waters decreased continually until the tenth month: in the tenth month, on the first day of the month, were the tops of the mountains seen. \nAnd it came to pass at the end of forty days, that Noah opened the window of the ark which he had made: \nAnd he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth. \nAlso he sent forth a dove from him, to see if the waters were abated from off the face of the ground; \nBut the dove found no rest for the sole of her foot, and she returned unto him into the ark, for the waters were on the face of the whole earth: then he put forth his hand, and took her, and pulled her in unto him into the ark. \nAnd he stayed yet other seven days; and again he sent forth the dove out of the ark; \nAnd the dove came in to him in the evening; and, lo, in her mouth was an olive leaf pluckt off: so Noah knew that the waters were abated from off the earth. \nAnd he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more. \nAnd it came to pass in the six hundredth and first year, in the first month, the first day of the month, the waters were dried up from off the earth: and Noah removed the covering of the ark, and looked, and, behold, the face of the ground was dry. \nAnd in the second month, on the seven and twentieth day of the month, was the earth dried. \nAnd God spake unto Noah, saying, \nGo forth of the ark, thou, and thy wife, and thy sons, and thy sons' wives with thee. \nBring forth with thee every living thing that is with thee, of all flesh, both of fowl, and of cattle, and of every creeping thing that creepeth upon the earth; that they may breed abundantly in the earth, and be fruitful, and multiply upon the earth. \nAnd Noah went forth, and his sons, and his wife, and his sons' wives with him: \nEvery beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark. \nAnd Noah builded an altar unto the LORD; and took of every clean beast, and of every clean fowl, and offered burnt offerings on the altar. \nAnd the LORD smelled a sweet savour; and the LORD said in his heart, I will not again curse the ground any more for man's sake; for the imagination of man's heart is evil from his youth; neither will I again smite any more every thing living, as I have done. \nWhile the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease. \nAnd God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth. \nAnd the fear of you and the dread of you shall be upon every beast of the earth, and upon every fowl of the air, upon all that moveth upon the earth, and upon all the fishes of the sea; into your hand are they delivered. \nEvery moving thing that liveth shall be meat for you; even as the green herb have I given you all things. \nBut flesh with the life thereof, which is the blood thereof, shall ye not eat. \nAnd surely your blood of your lives will I require; at the hand of every beast will I require it, and at the hand of man; at the hand of every man's brother will I require the life of man. \nWhoso sheddeth man's blood, by man shall his blood be shed: for in the image of God made he man. \nAnd you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein. \nAnd God spake unto Noah, and to his sons with him, saying, \nAnd I, behold, I establish my covenant with you, and with your seed after you; \nAnd with every living creature that is with you, of the fowl, of the cattle, and of every beast of the earth with you; from all that go out of the ark, to every beast of the earth. \nAnd I will establish my covenant with you, neither shall all flesh be cut off any more by the waters of a flood; neither shall there any more be a flood to destroy the earth. \nAnd God said, This is the token of the covenant which I make between me and you and every living creature that is with you, for perpetual generations: \nI do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth. \nAnd it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud: \nAnd I will remember my covenant, which is between me and you and every living creature of all flesh; and the waters shall no more become a flood to destroy all flesh. \nAnd the bow shall be in the cloud; and I will look upon it, that I may remember the everlasting covenant between God and every living creature of all flesh that is upon the earth. \nAnd God said unto Noah, This is the token of the covenant, which I have established between me and all flesh that is upon the earth. \nAnd the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan. \nThese are the three sons of Noah: and of them was the whole earth overspread. \nAnd Noah began to be an husbandman, and he planted a vineyard: \nAnd he drank of the wine, and was drunken; and he was uncovered within his tent. \nAnd Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without. \nAnd Shem and Japheth took a garment, and laid it upon both their shoulders, and went backward, and covered the nakedness of their father; and their faces were backward, and they saw not their father's nakedness. \nAnd Noah awoke from his wine, and knew what his younger son had done unto him. \nAnd he said, Cursed be Canaan; a servant of servants shall he be unto his brethren. \nAnd he said, Blessed be the LORD God of Shem; and Canaan shall be his servant. \nGod shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant. \nAnd Noah lived after the flood three hundred and fifty years. \nAnd all the days of Noah were nine hundred and fifty years: and he died. \nNow these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood. \nThe sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras. \nAnd the sons of Gomer; Ashkenaz, and Riphath, and Togarmah. \nAnd the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim. \nBy these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations. \nAnd the sons of Ham; Cush, and Mizraim, and Phut, and Canaan. \nAnd the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtechah: and the sons of Raamah; Sheba, and Dedan. \nAnd Cush begat Nimrod: he began to be a mighty one in the earth. \nHe was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD. \nAnd the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar. \nOut of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah, \nAnd Resen between Nineveh and Calah: the same is a great city. \nAnd Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim, \nAnd Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim. \nAnd Canaan begat Sidon his first born, and Heth, \nAnd the Jebusite, and the Amorite, and the Girgasite, \nAnd the Hivite, and the Arkite, and the Sinite, \nAnd the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad. \nAnd the border of the Canaanites was from Sidon, as thou comest to Gerar, unto Gaza; as thou goest, unto Sodom, and Gomorrah, and Admah, and Zeboim, even unto Lasha. \nThese are the sons of Ham, after their families, after their tongues, in their countries, and in their nations. \nUnto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born. \nThe children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram. \nAnd the children of Aram; Uz, and Hul, and Gether, and Mash. \nAnd Arphaxad begat Salah; and Salah begat Eber. \nAnd unto Eber were born two sons: the name of one was Peleg; for in his days was the earth divided; and his brother's name was Joktan. \nAnd Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah, \nAnd Hadoram, and Uzal, and Diklah, \nAnd Obal, and Abimael, and Sheba, \nAnd Ophir, and Havilah, and Jobab: all these were the sons of Joktan. \nAnd their dwelling was from Mesha, as thou goest unto Sephar a mount of the east. \nThese are the sons of Shem, after their families, after their tongues, in their lands, after their nations. \nThese are the families of the sons of Noah, after their generations, in their nations: and by these were the nations divided in the earth after the flood. \nAnd the whole earth was of one language, and of one speech. \nAnd it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there. \nAnd they said one to another, Go to, let us make brick, and burn them thoroughly. And they had brick for stone, and slime had they for morter. \nAnd they said, Go to, let us build us a city and a tower, whose top may reach unto heaven; and let us make us a name, lest we be scattered abroad upon the face of the whole earth. \nAnd the LORD came down to see the city and the tower, which the children of men builded. \nAnd the LORD said, Behold, the people is one, and they have all one language; and this they begin to do: and now nothing will be restrained from them, which they have imagined to do. \nGo to, let us go down, and there confound their language, that they may not understand one another's speech. \nSo the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city. \nTherefore is the name of it called Babel; because the LORD did there confound the language of all the earth: and from thence did the LORD scatter them abroad upon the face of all the earth. \nThese are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood: \nAnd Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters. \nAnd Arphaxad lived five and thirty years, and begat Salah: \nAnd Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters. \nAnd Salah lived thirty years, and begat Eber: \nAnd Salah lived after he begat Eber four hundred and three years, and begat sons and daughters. \nAnd Eber lived four and thirty years, and begat Peleg: \nAnd Eber lived after he begat Peleg four hundred and thirty years, and begat sons and daughters. \nAnd Peleg lived thirty years, and begat Reu: \nAnd Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters. \nAnd Reu lived two and thirty years, and begat Serug: \nAnd Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters. \nAnd Serug lived thirty years, and begat Nahor: \nAnd Serug lived after he begat Nahor two hundred years, and begat sons and daughters. \nAnd Nahor lived nine and twenty years, and begat Terah: \nAnd Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters. \nAnd Terah lived seventy years, and begat Abram, Nahor, and Haran. \nNow these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot. \nAnd Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees. \nAnd Abram and Nahor took them wives: the name of Abram's wife was Sarai; and the name of Nahor's wife, Milcah, the daughter of Haran, the father of Milcah, and the father of Iscah. \nBut Sarai was barren; she had no child. \nAnd Terah took Abram his son, and Lot the son of Haran his son's son, and Sarai his daughter in law, his son Abram's wife; and they went forth with them from Ur of the Chaldees, to go into the land of Canaan; and they came unto Haran, and dwelt there. \nAnd the days of Terah were two hundred and five years: and Terah died in Haran. \nNow the LORD had said unto Abram, Get thee out of thy country, and from thy kindred, and from thy father's house, unto a land that I will shew thee: \nAnd I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing: \nAnd I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed. \nSo Abram departed, as the LORD had spoken unto him; and Lot went with him: and Abram was seventy and five years old when he departed out of Haran. \nAnd Abram took Sarai his wife, and Lot his brother's son, and all their substance that they had gathered, and the souls that they had gotten in Haran; and they went forth to go into the land of Canaan; and into the land of Canaan they came. \nAnd Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land. \nAnd the LORD appeared unto Abram, and said, Unto thy seed will I give this land: and there builded he an altar unto the LORD, who appeared unto him. \nAnd he removed from thence unto a mountain on the east of Bethel, and pitched his tent, having Bethel on the west, and Hai on the east: and there he builded an altar unto the LORD, and called upon the name of the LORD. \nAnd Abram journeyed, going on still toward the south. \nAnd there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land. \nAnd it came to pass, when he was come near to enter into Egypt, that he said unto Sarai his wife, Behold now, I know that thou art a fair woman to look upon: \nTherefore it shall come to pass, when the Egyptians shall see thee, that they shall say, This is his wife: and they will kill me, but they will save thee alive. \nSay, I pray thee, thou art my sister: that it may be well with me for thy sake; and my soul shall live because of thee. \nAnd it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair. \nThe princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh's house. \nAnd he entreated Abram well for her sake: and he had sheep, and oxen, and he asses, and menservants, and maidservants, and she asses, and camels. \nAnd the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram's wife. \nAnd Pharaoh called Abram and said, What is this that thou hast done unto me? why didst thou not tell me that she was thy wife? \nWhy saidst thou, She is my sister? so I might have taken her to me to wife: now therefore behold thy wife, take her, and go thy way. \nAnd Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had. \nAnd Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south. \nAnd Abram was very rich in cattle, in silver, and in gold. \nAnd he went on his journeys from the south even to Bethel, unto the place where his tent had been at the beginning, between Bethel and Hai; \nUnto the place of the altar, which he had make there at the first: and there Abram called on the name of the LORD. \nAnd Lot also, which went with Abram, had flocks, and herds, and tents. \nAnd the land was not able to bear them, that they might dwell together: for their substance was great, so that they could not dwell together. \nAnd there was a strife between the herdmen of Abram's cattle and the herdmen of Lot's cattle: and the Canaanite and the Perizzite dwelled then in the land. \nAnd Abram said unto Lot, Let there be no strife, I pray thee, between me and thee, and between my herdmen and thy herdmen; for we be brethren. \nIs not the whole land before thee? separate thyself, I pray thee, from me: if thou wilt take the left hand, then I will go to the right; or if thou depart to the right hand, then I will go to the left. \nAnd Lot lifted up his eyes, and beheld all the plain of Jordan, that it was well watered every where, before the LORD destroyed Sodom and Gomorrah, even as the garden of the LORD, like the land of Egypt, as thou comest unto Zoar. \nThen Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other. \nAbram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom. \nBut the men of Sodom were wicked and sinners before the LORD exceedingly. \nAnd the LORD said unto Abram, after that Lot was separated from him, Lift up now thine eyes, and look from the place where thou art northward, and southward, and eastward, and westward: \nFor all the land which thou seest, to thee will I give it, and to thy seed for ever. \nAnd I will make thy seed as the dust of the earth: so that if a man can number the dust of the earth, then shall thy seed also be numbered. \nArise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee. \nThen Abram removed his tent, and came and dwelt in the plain of Mamre, which is in Hebron, and built there an altar unto the LORD. \nAnd it came to pass in the days of Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of nations; \nThat these made war with Bera king of Sodom, and with Birsha king of Gomorrah, Shinab king of Admah, and Shemeber king of Zeboiim, and the king of Bela, which is Zoar. \nAll these were joined together in the vale of Siddim, which is the salt sea. \nTwelve years they served Chedorlaomer, and in the thirteenth year they rebelled. \nAnd in the fourteenth year came Chedorlaomer, and the kings that were with him, and smote the Rephaims in Ashteroth Karnaim, and the Zuzims in Ham, and the Emins in Shaveh Kiriathaim, \nAnd the Horites in their mount Seir, unto Elparan, which is by the wilderness. \nAnd they returned, and came to Enmishpat, which is Kadesh, and smote all the country of the Amalekites, and also the Amorites, that dwelt in Hazezontamar. \nAnd there went out the king of Sodom, and the king of Gomorrah, and the king of Admah, and the king of Zeboiim, and the king of Bela (the same is Zoar;) and they joined battle with them in the vale of Siddim; \nWith Chedorlaomer the king of Elam, and with Tidal king of nations, and Amraphel king of Shinar, and Arioch king of Ellasar; four kings with five. \nAnd the vale of Siddim was full of slimepits; and the kings of Sodom and Gomorrah fled, and fell there; and they that remained fled to the mountain. \nAnd they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way. \nAnd they took Lot, Abram's brother's son, who dwelt in Sodom, and his goods, and departed. \nAnd there came one that had escaped, and told Abram the Hebrew; for he dwelt in the plain of Mamre the Amorite, brother of Eshcol, and brother of Aner: and these were confederate with Abram. \nAnd when Abram heard that his brother was taken captive, he armed his trained servants, born in his own house, three hundred and eighteen, and pursued them unto Dan. \nAnd he divided himself against them, he and his servants, by night, and smote them, and pursued them unto Hobah, which is on the left hand of Damascus. \nAnd he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people. \nAnd the king of Sodom went out to meet him after his return from the slaughter of Chedorlaomer, and of the kings that were with him, at the valley of Shaveh, which is the king's dale. \nAnd Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God. \nAnd he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth: \nAnd blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all. \nAnd the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself. \nAnd Abram said to the king of Sodom, I have lift up mine hand unto the LORD, the most high God, the possessor of heaven and earth, \nThat I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich: \nSave only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion. \nAfter these things the word of the LORD came unto Abram in a vision, saying, Fear not, Abram: I am thy shield, and thy exceeding great reward. \nAnd Abram said, LORD God, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus? \nAnd Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir. \nAnd, behold, the word of the LORD came unto him, saying, This shall not be thine heir; but he that shall come forth out of thine own bowels shall be thine heir. \nAnd he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be. \nAnd he believed in the LORD; and he counted it to him for righteousness. \nAnd he said unto him, I am the LORD that brought thee out of Ur of the Chaldees, to give thee this land to inherit it. \nAnd he said, LORD God, whereby shall I know that I shall inherit it? \nAnd he said unto him, Take me an heifer of three years old, and a she goat of three years old, and a ram of three years old, and a turtledove, and a young pigeon. \nAnd he took unto him all these, and divided them in the midst, and laid each piece one against another: but the birds divided he not. \nAnd when the fowls came down upon the carcases, Abram drove them away. \nAnd when the sun was going down, a deep sleep fell upon Abram; and, lo, an horror of great darkness fell upon him. \nAnd he said unto Abram, Know of a surety that thy seed shall be a stranger in a land that is not their's, and shall serve them; and they shall afflict them four hundred years; \nAnd also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance. \nAnd thou shalt go to thy fathers in peace; thou shalt be buried in a good old age. \nBut in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full. \nAnd it came to pass, that, when the sun went down, and it was dark, behold a smoking furnace, and a burning lamp that passed between those pieces. \nIn the same day the LORD made a covenant with Abram, saying, Unto thy seed have I given this land, from the river of Egypt unto the great river, the river Euphrates: \nThe Kenites, and the Kenizzites, and the Kadmonites, \nAnd the Hittites, and the Perizzites, and the Rephaims, \nAnd the Amorites, and the Canaanites, and the Girgashites, and the Jebusites. \nNow Sarai Abram's wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar. \nAnd Sarai said unto Abram, Behold now, the LORD hath restrained me from bearing: I pray thee, go in unto my maid; it may be that I may obtain children by her. And Abram hearkened to the voice of Sarai. \nAnd Sarai Abram's wife took Hagar her maid the Egyptian, after Abram had dwelt ten years in the land of Canaan, and gave her to her husband Abram to be his wife. \nAnd he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes. \nAnd Sarai said unto Abram, My wrong be upon thee: I have given my maid into thy bosom; and when she saw that she had conceived, I was despised in her eyes: the LORD judge between me and thee. \nBut Abram said unto Sarai, Behold, thy maid is in thine hand; do to her as it pleaseth thee. And when Sarai dealt hardly with her, she fled from her face. \nAnd the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur. \nAnd he said, Hagar, Sarai's maid, whence camest thou? and whither wilt thou go? And she said, I flee from the face of my mistress Sarai. \nAnd the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands. \nAnd the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude. \nAnd the angel of the LORD said unto her, Behold, thou art with child and shalt bear a son, and shalt call his name Ishmael; because the LORD hath heard thy affliction. \nAnd he will be a wild man; his hand will be against every man, and every man's hand against him; and he shall dwell in the presence of all his brethren. \nAnd she called the name of the LORD that spake unto her, Thou God seest me: for she said, Have I also here looked after him that seeth me? \nWherefore the well was called Beerlahairoi; behold, it is between Kadesh and Bered. \nAnd Hagar bare Abram a son: and Abram called his son's name, which Hagar bare, Ishmael. \nAnd Abram was fourscore and six years old, when Hagar bare Ishmael to Abram. \nAnd when Abram was ninety years old and nine, the LORD appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect. \nAnd I will make my covenant between me and thee, and will multiply thee exceedingly. \nAnd Abram fell on his face: and God talked with him, saying, \nAs for me, behold, my covenant is with thee, and thou shalt be a father of many nations. \nNeither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee. \nAnd I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee. \nAnd I will establish my covenant between me and thee and thy seed after thee in their generations for an everlasting covenant, to be a God unto thee, and to thy seed after thee. \nAnd I will give unto thee, and to thy seed after thee, the land wherein thou art a stranger, all the land of Canaan, for an everlasting possession; and I will be their God. \nAnd God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations. \nThis is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised. \nAnd ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you. \nAnd he that is eight days old shall be circumcised among you, every man child in your generations, he that is born in the house, or bought with money of any stranger, which is not of thy seed. \nHe that is born in thy house, and he that is bought with thy money, must needs be circumcised: and my covenant shall be in your flesh for an everlasting covenant. \nAnd the uncircumcised man child whose flesh of his foreskin is not circumcised, that soul shall be cut off from his people; he hath broken my covenant. \nAnd God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be. \nAnd I will bless her, and give thee a son also of her: yea, I will bless her, and she shall be a mother of nations; kings of people shall be of her. \nThen Abraham fell upon his face, and laughed, and said in his heart, Shall a child be born unto him that is an hundred years old? and shall Sarah, that is ninety years old, bear? \nAnd Abraham said unto God, O that Ishmael might live before thee! \nAnd God said, Sarah thy wife shall bear thee a son indeed; and thou shalt call his name Isaac: and I will establish my covenant with him for an everlasting covenant, and with his seed after him. \nAnd as for Ishmael, I have heard thee: Behold, I have blessed him, and will make him fruitful, and will multiply him exceedingly; twelve princes shall he beget, and I will make him a great nation. \nBut my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year. \nAnd he left off talking with him, and God went up from Abraham. \nAnd Abraham took Ishmael his son, and all that were born in his house, and all that were bought with his money, every male among the men of Abraham's house; and circumcised the flesh of their foreskin in the selfsame day, as God had said unto him. \nAnd Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin. \nAnd Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin. \nIn the selfsame day was Abraham circumcised, and Ishmael his son. \nAnd all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him. \nAnd the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day; \nAnd he lift up his eyes and looked, and, lo, three men stood by him: and when he saw them, he ran to meet them from the tent door, and bowed himself toward the ground, \nAnd said, My LORD, if now I have found favour in thy sight, pass not away, I pray thee, from thy servant: \nLet a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree: \nAnd I will fetch a morsel of bread, and comfort ye your hearts; after that ye shall pass on: for therefore are ye come to your servant. And they said, So do, as thou hast said. \nAnd Abraham hastened into the tent unto Sarah, and said, Make ready quickly three measures of fine meal, knead it, and make cakes upon the hearth. \nAnd Abraham ran unto the herd, and fetcht a calf tender and good, and gave it unto a young man; and he hasted to dress it. \nAnd he took butter, and milk, and the calf which he had dressed, and set it before them; and he stood by them under the tree, and they did eat. \nAnd they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent. \nAnd he said, I will certainly return unto thee according to the time of life; and, lo, Sarah thy wife shall have a son. And Sarah heard it in the tent door, which was behind him. \nNow Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women. \nTherefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also? \nAnd the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old? \nIs any thing too hard for the LORD? At the time appointed I will return unto thee, according to the time of life, and Sarah shall have a son. \nThen Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh. \nAnd the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way. \nAnd the LORD said, Shall I hide from Abraham that thing which I do; \nSeeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him? \nFor I know him, that he will command his children and his household after him, and they shall keep the way of the LORD, to do justice and judgment; that the LORD may bring upon Abraham that which he hath spoken of him. \nAnd the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous; \nI will go down now, and see whether they have done altogether according to the cry of it, which is come unto me; and if not, I will know. \nAnd the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD. \nAnd Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked? \nPeradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein? \nThat be far from thee to do after this manner, to slay the righteous with the wicked: and that the righteous should be as the wicked, that be far from thee: Shall not the Judge of all the earth do right? \nAnd the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes. \nAnd Abraham answered and said, Behold now, I have taken upon me to speak unto the LORD, which am but dust and ashes: \nPeradventure there shall lack five of the fifty righteous: wilt thou destroy all the city for lack of five? And he said, If I find there forty and five, I will not destroy it. \nAnd he spake unto him yet again, and said, Peradventure there shall be forty found there. And he said, I will not do it for forty's sake. \nAnd he said unto him, Oh let not the LORD be angry, and I will speak: Peradventure there shall thirty be found there. And he said, I will not do it, if I find thirty there. \nAnd he said, Behold now, I have taken upon me to speak unto the LORD: Peradventure there shall be twenty found there. And he said, I will not destroy it for twenty's sake. \nAnd he said, Oh let not the LORD be angry, and I will speak yet but this once: Peradventure ten shall be found there. And he said, I will not destroy it for ten's sake. \nAnd the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place. \nAnd there came two angels to Sodom at even; and Lot sat in the gate of Sodom: and Lot seeing them rose up to meet them; and he bowed himself with his face toward the ground; \nAnd he said, Behold now, my lords, turn in, I pray you, into your servant's house, and tarry all night, and wash your feet, and ye shall rise up early, and go on your ways. And they said, Nay; but we will abide in the street all night. \nAnd he pressed upon them greatly; and they turned in unto him, and entered into his house; and he made them a feast, and did bake unleavened bread, and they did eat. \nBut before they lay down, the men of the city, even the men of Sodom, compassed the house round, both old and young, all the people from every quarter: \nAnd they called unto Lot, and said unto him, Where are the men which came in to thee this night? bring them out unto us, that we may know them. \nAnd Lot went out at the door unto them, and shut the door after him, \nAnd said, I pray you, brethren, do not so wickedly. \nBehold now, I have two daughters which have not known man; let me, I pray you, bring them out unto you, and do ye to them as is good in your eyes: only unto these men do nothing; for therefore came they under the shadow of my roof. \nAnd they said, Stand back. And they said again, This one fellow came in to sojourn, and he will needs be a judge: now will we deal worse with thee, than with them. And they pressed sore upon the man, even Lot, and came near to break the door. \nBut the men put forth their hand, and pulled Lot into the house to them, and shut to the door. \nAnd they smote the men that were at the door of the house with blindness, both small and great: so that they wearied themselves to find the door. \nAnd the men said unto Lot, Hast thou here any besides? son in law, and thy sons, and thy daughters, and whatsoever thou hast in the city, bring them out of this place: \nFor we will destroy this place, because the cry of them is waxen great before the face of the LORD; and the LORD hath sent us to destroy it. \nAnd Lot went out, and spake unto his sons in law, which married his daughters, and said, Up, get you out of this place; for the LORD will destroy this city. But he seemed as one that mocked unto his sons in law. \nAnd when the morning arose, then the angels hastened Lot, saying, Arise, take thy wife, and thy two daughters, which are here; lest thou be consumed in the iniquity of the city. \nAnd while he lingered, the men laid hold upon his hand, and upon the hand of his wife, and upon the hand of his two daughters; the LORD being merciful unto him: and they brought him forth, and set him without the city. \nAnd it came to pass, when they had brought them forth abroad, that he said, Escape for thy life; look not behind thee, neither stay thou in all the plain; escape to the mountain, lest thou be consumed. \nAnd Lot said unto them, Oh, not so, my LORD: \nBehold now, thy servant hath found grace in thy sight, and thou hast magnified thy mercy, which thou hast shewed unto me in saving my life; and I cannot escape to the mountain, lest some evil take me, and I die: \nBehold now, this city is near to flee unto, and it is a little one: Oh, let me escape thither, (is it not a little one?) and my soul shall live. \nAnd he said unto him, See, I have accepted thee concerning this thing also, that I will not overthrow this city, for the which thou hast spoken. \nHaste thee, escape thither; for I cannot do anything till thou be come thither. Therefore the name of the city was called Zoar. \nThe sun was risen upon the earth when Lot entered into Zoar. \nThen the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven; \nAnd he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground. \nBut his wife looked back from behind him, and she became a pillar of salt. \nAnd Abraham gat up early in the morning to the place where he stood before the LORD: \nAnd he looked toward Sodom and Gomorrah, and toward all the land of the plain, and beheld, and, lo, the smoke of the country went up as the smoke of a furnace. \nAnd it came to pass, when God destroyed the cities of the plain, that God remembered Abraham, and sent Lot out of the midst of the overthrow, when he overthrew the cities in the which Lot dwelt. \nAnd Lot went up out of Zoar, and dwelt in the mountain, and his two daughters with him; for he feared to dwell in Zoar: and he dwelt in a cave, he and his two daughters. \nAnd the firstborn said unto the younger, Our father is old, and there is not a man in the earth to come in unto us after the manner of all the earth: \nCome, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father. \nAnd they made their father drink wine that night: and the firstborn went in, and lay with her father; and he perceived not when she lay down, nor when she arose. \nAnd it came to pass on the morrow, that the firstborn said unto the younger, Behold, I lay yesternight with my father: let us make him drink wine this night also; and go thou in, and lie with him, that we may preserve seed of our father. \nAnd they made their father drink wine that night also: and the younger arose, and lay with him; and he perceived not when she lay down, nor when she arose. \nThus were both the daughters of Lot with child by their father. \nAnd the first born bare a son, and called his name Moab: the same is the father of the Moabites unto this day. \nAnd the younger, she also bare a son, and called his name Benammi: the same is the father of the children of Ammon unto this day. \nAnd Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar. \nAnd Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah. \nBut God came to Abimelech in a dream by night, and said to him, Behold, thou art but a dead man, for the woman which thou hast taken; for she is a man's wife. \nBut Abimelech had not come near her: and he said, LORD, wilt thou slay also a righteous nation? \nSaid he not unto me, She is my sister? and she, even she herself said, He is my brother: in the integrity of my heart and innocency of my hands have I done this. \nAnd God said unto him in a dream, Yea, I know that thou didst this in the integrity of thy heart; for I also withheld thee from sinning against me: therefore suffered I thee not to touch her. \nNow therefore restore the man his wife; for he is a prophet, and he shall pray for thee, and thou shalt live: and if thou restore her not, know thou that thou shalt surely die, thou, and all that are thine. \nTherefore Abimelech rose early in the morning, and called all his servants, and told all these things in their ears: and the men were sore afraid. \nThen Abimelech called Abraham, and said unto him, What hast thou done unto us? and what have I offended thee, that thou hast brought on me and on my kingdom a great sin? thou hast done deeds unto me that ought not to be done. \nAnd Abimelech said unto Abraham, What sawest thou, that thou hast done this thing? \nAnd Abraham said, Because I thought, Surely the fear of God is not in this place; and they will slay me for my wife's sake. \nAnd yet indeed she is my sister; she is the daughter of my father, but not the daughter of my mother; and she became my wife. \nAnd it came to pass, when God caused me to wander from my father's house, that I said unto her, This is thy kindness which thou shalt shew unto me; at every place whither we shall come, say of me, He is my brother. \nAnd Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife. \nAnd Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee. \nAnd unto Sarah he said, Behold, I have given thy brother a thousand pieces of silver: behold, he is to thee a covering of the eyes, unto all that are with thee, and with all other: thus she was reproved. \nSo Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children. \nFor the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham's wife. \nAnd the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken. \nFor Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him. \nAnd Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac. \nAnd Abraham circumcised his son Isaac being eight days old, as God had commanded him. \nAnd Abraham was an hundred years old, when his son Isaac was born unto him. \nAnd Sarah said, God hath made me to laugh, so that all that hear will laugh with me. \nAnd she said, Who would have said unto Abraham, that Sarah should have given children suck? for I have born him a son in his old age. \nAnd the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned. \nAnd Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking. \nWherefore she said unto Abraham, Cast out this bondwoman and her son: for the son of this bondwoman shall not be heir with my son, even with Isaac. \nAnd the thing was very grievous in Abraham's sight because of his son. \nAnd God said unto Abraham, Let it not be grievous in thy sight because of the lad, and because of thy bondwoman; in all that Sarah hath said unto thee, hearken unto her voice; for in Isaac shall thy seed be called. \nAnd also of the son of the bondwoman will I make a nation, because he is thy seed. \nAnd Abraham rose up early in the morning, and took bread, and a bottle of water, and gave it unto Hagar, putting it on her shoulder, and the child, and sent her away: and she departed, and wandered in the wilderness of Beersheba. \nAnd the water was spent in the bottle, and she cast the child under one of the shrubs. \nAnd she went, and sat her down over against him a good way off, as it were a bow shot: for she said, Let me not see the death of the child. And she sat over against him, and lift up her voice, and wept. \nAnd God heard the voice of the lad; and the angel of God called to Hagar out of heaven, and said unto her, What aileth thee, Hagar? fear not; for God hath heard the voice of the lad where he is. \nArise, lift up the lad, and hold him in thine hand; for I will make him a great nation. \nAnd God opened her eyes, and she saw a well of water; and she went, and filled the bottle with water, and gave the lad drink. \nAnd God was with the lad; and he grew, and dwelt in the wilderness, and became an archer. \nAnd he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt. \nAnd it came to pass at that time, that Abimelech and Phichol the chief captain of his host spake unto Abraham, saying, God is with thee in all that thou doest: \nNow therefore swear unto me here by God that thou wilt not deal falsely with me, nor with my son, nor with my son's son: but according to the kindness that I have done unto thee, thou shalt do unto me, and to the land wherein thou hast sojourned. \nAnd Abraham said, I will swear. \nAnd Abraham reproved Abimelech because of a well of water, which Abimelech's servants had violently taken away. \nAnd Abimelech said, I wot not who hath done this thing; neither didst thou tell me, neither yet heard I of it, but to day. \nAnd Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant. \nAnd Abraham set seven ewe lambs of the flock by themselves. \nAnd Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves? \nAnd he said, For these seven ewe lambs shalt thou take of my hand, that they may be a witness unto me, that I have digged this well. \nWherefore he called that place Beersheba; because there they sware both of them. \nThus they made a covenant at Beersheba: then Abimelech rose up, and Phichol the chief captain of his host, and they returned into the land of the Philistines. \nAnd Abraham planted a grove in Beersheba, and called there on the name of the LORD, the everlasting God. \nAnd Abraham sojourned in the Philistines' land many days. \nAnd it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am. \nAnd he said, Take now thy son, thine only son Isaac, whom thou lovest, and get thee into the land of Moriah; and offer him there for a burnt offering upon one of the mountains which I will tell thee of. \nAnd Abraham rose up early in the morning, and saddled his ass, and took two of his young men with him, and Isaac his son, and clave the wood for the burnt offering, and rose up, and went unto the place of which God had told him. \nThen on the third day Abraham lifted up his eyes, and saw the place afar off. \nAnd Abraham said unto his young men, Abide ye here with the ass; and I and the lad will go yonder and worship, and come again to you. \nAnd Abraham took the wood of the burnt offering, and laid it upon Isaac his son; and he took the fire in his hand, and a knife; and they went both of them together. \nAnd Isaac spake unto Abraham his father, and said, My father: and he said, Here am I, my son. And he said, Behold the fire and the wood: but where is the lamb for a burnt offering? \nAnd Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together. \nAnd they came to the place which God had told him of; and Abraham built an altar there, and laid the wood in order, and bound Isaac his son, and laid him on the altar upon the wood. \nAnd Abraham stretched forth his hand, and took the knife to slay his son. \nAnd the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I. \nAnd he said, Lay not thine hand upon the lad, neither do thou any thing unto him: for now I know that thou fearest God, seeing thou hast not withheld thy son, thine only son from me. \nAnd Abraham lifted up his eyes, and looked, and behold behind him a ram caught in a thicket by his horns: and Abraham went and took the ram, and offered him up for a burnt offering in the stead of his son. \nAnd Abraham called the name of that place Jehovahjireh: as it is said to this day, In the mount of the LORD it shall be seen. \nAnd the angel of the LORD called unto Abraham out of heaven the second time, \nAnd said, By myself have I sworn, saith the LORD, for because thou hast done this thing, and hast not withheld thy son, thine only son: \nThat in blessing I will bless thee, and in multiplying I will multiply thy seed as the stars of the heaven, and as the sand which is upon the sea shore; and thy seed shall possess the gate of his enemies; \nAnd in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice. \nSo Abraham returned unto his young men, and they rose up and went together to Beersheba; and Abraham dwelt at Beersheba. \nAnd it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor; \nHuz his firstborn, and Buz his brother, and Kemuel the father of Aram, \nAnd Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel. \nAnd Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham's brother. \nAnd his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah. \nAnd Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah. \nAnd Sarah died in Kirjatharba; the same is Hebron in the land of Canaan: and Abraham came to mourn for Sarah, and to weep for her. \nAnd Abraham stood up from before his dead, and spake unto the sons of Heth, saying, \nI am a stranger and a sojourner with you: give me a possession of a buryingplace with you, that I may bury my dead out of my sight. \nAnd the children of Heth answered Abraham, saying unto him, \nHear us, my lord: thou art a mighty prince among us: in the choice of our sepulchres bury thy dead; none of us shall withhold from thee his sepulchre, but that thou mayest bury thy dead. \nAnd Abraham stood up, and bowed himself to the people of the land, even to the children of Heth. \nAnd he communed with them, saying, If it be your mind that I should bury my dead out of my sight; hear me, and intreat for me to Ephron the son of Zohar, \nThat he may give me the cave of Machpelah, which he hath, which is in the end of his field; for as much money as it is worth he shall give it me for a possession of a buryingplace amongst you. \nAnd Ephron dwelt among the children of Heth: and Ephron the Hittite answered Abraham in the audience of the children of Heth, even of all that went in at the gate of his city, saying, \nNay, my lord, hear me: the field give I thee, and the cave that is therein, I give it thee; in the presence of the sons of my people give I it thee: bury thy dead. \nAnd Abraham bowed down himself before the people of the land. \nAnd he spake unto Ephron in the audience of the people of the land, saying, But if thou wilt give it, I pray thee, hear me: I will give thee money for the field; take it of me, and I will bury my dead there. \nAnd Ephron answered Abraham, saying unto him, \nMy lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead. \nAnd Abraham hearkened unto Ephron; and Abraham weighed to Ephron the silver, which he had named in the audience of the sons of Heth, four hundred shekels of silver, current money with the merchant. \nAnd the field of Ephron which was in Machpelah, which was before Mamre, the field, and the cave which was therein, and all the trees that were in the field, that were in all the borders round about, were made sure \nUnto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city. \nAnd after this, Abraham buried Sarah his wife in the cave of the field of Machpelah before Mamre: the same is Hebron in the land of Canaan. \nAnd the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by the sons of Heth. \nAnd Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things. \nAnd Abraham said unto his eldest servant of his house, that ruled over all that he had, Put, I pray thee, thy hand under my thigh: \nAnd I will make thee swear by the LORD, the God of heaven, and the God of the earth, that thou shalt not take a wife unto my son of the daughters of the Canaanites, among whom I dwell: \nBut thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac. \nAnd the servant said unto him, Peradventure the woman will not be willing to follow me unto this land: must I needs bring thy son again unto the land from whence thou camest? \nAnd Abraham said unto him, Beware thou that thou bring not my son thither again. \nThe LORD God of heaven, which took me from my father's house, and from the land of my kindred, and which spake unto me, and that sware unto me, saying, Unto thy seed will I give this land; he shall send his angel before thee, and thou shalt take a wife unto my son from thence. \nAnd if the woman will not be willing to follow thee, then thou shalt be clear from this my oath: only bring not my son thither again. \nAnd the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter. \nAnd the servant took ten camels of the camels of his master, and departed; for all the goods of his master were in his hand: and he arose, and went to Mesopotamia, unto the city of Nahor. \nAnd he made his camels to kneel down without the city by a well of water at the time of the evening, even the time that women go out to draw water. \nAnd he said O LORD God of my master Abraham, I pray thee, send me good speed this day, and shew kindness unto my master Abraham. \nBehold, I stand here by the well of water; and the daughters of the men of the city come out to draw water: \nAnd let it come to pass, that the damsel to whom I shall say, Let down thy pitcher, I pray thee, that I may drink; and she shall say, Drink, and I will give thy camels drink also: let the same be she that thou hast appointed for thy servant Isaac; and thereby shall I know that thou hast shewed kindness unto my master. \nAnd it came to pass, before he had done speaking, that, behold, Rebekah came out, who was born to Bethuel, son of Milcah, the wife of Nahor, Abraham's brother, with her pitcher upon her shoulder. \nAnd the damsel was very fair to look upon, a virgin, neither had any man known her: and she went down to the well, and filled her pitcher, and came up. \nAnd the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher. \nAnd she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink. \nAnd when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking. \nAnd she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels. \nAnd the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not. \nAnd it came to pass, as the camels had done drinking, that the man took a golden earring of half a shekel weight, and two bracelets for her hands of ten shekels weight of gold; \nAnd said, Whose daughter art thou? tell me, I pray thee: is there room in thy father's house for us to lodge in? \nAnd she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor. \nShe said moreover unto him, We have both straw and provender enough, and room to lodge in. \nAnd the man bowed down his head, and worshipped the LORD. \nAnd he said, Blessed be the LORD God of my master Abraham, who hath not left destitute my master of his mercy and his truth: I being in the way, the LORD led me to the house of my master's brethren. \nAnd the damsel ran, and told them of her mother's house these things. \nAnd Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well. \nAnd it came to pass, when he saw the earring and bracelets upon his sister's hands, and when he heard the words of Rebekah his sister, saying, Thus spake the man unto me; that he came unto the man; and, behold, he stood by the camels at the well. \nAnd he said, Come in, thou blessed of the LORD; wherefore standest thou without? for I have prepared the house, and room for the camels. \nAnd the man came into the house: and he ungirded his camels, and gave straw and provender for the camels, and water to wash his feet, and the men's feet that were with him. \nAnd there was set meat before him to eat: but he said, I will not eat, until I have told mine errand. And he said, Speak on. \nAnd he said, I am Abraham's servant. \nAnd the LORD hath blessed my master greatly; and he is become great: and he hath given him flocks, and herds, and silver, and gold, and menservants, and maidservants, and camels, and asses. \nAnd Sarah my master's wife bare a son to my master when she was old: and unto him hath he given all that he hath. \nAnd my master made me swear, saying, Thou shalt not take a wife to my son of the daughters of the Canaanites, in whose land I dwell: \nBut thou shalt go unto my father's house, and to my kindred, and take a wife unto my son. \nAnd I said unto my master, Peradventure the woman will not follow me. \nAnd he said unto me, The LORD, before whom I walk, will send his angel with thee, and prosper thy way; and thou shalt take a wife for my son of my kindred, and of my father's house: \nThen shalt thou be clear from this my oath, when thou comest to my kindred; and if they give not thee one, thou shalt be clear from my oath. \nAnd I came this day unto the well, and said, O LORD God of my master Abraham, if now thou do prosper my way which I go: \nBehold, I stand by the well of water; and it shall come to pass, that when the virgin cometh forth to draw water, and I say to her, Give me, I pray thee, a little water of thy pitcher to drink; \nAnd she say to me, Both drink thou, and I will also draw for thy camels: let the same be the woman whom the LORD hath appointed out for my master's son. \nAnd before I had done speaking in mine heart, behold, Rebekah came forth with her pitcher on her shoulder; and she went down unto the well, and drew water: and I said unto her, Let me drink, I pray thee. \nAnd she made haste, and let down her pitcher from her shoulder, and said, Drink, and I will give thy camels drink also: so I drank, and she made the camels drink also. \nAnd I asked her, and said, Whose daughter art thou? And she said, the daughter of Bethuel, Nahor's son, whom Milcah bare unto him: and I put the earring upon her face, and the bracelets upon her hands. \nAnd I bowed down my head, and worshipped the LORD, and blessed the LORD God of my master Abraham, which had led me in the right way to take my master's brother's daughter unto his son. \nAnd now if ye will deal kindly and truly with my master, tell me: and if not, tell me; that I may turn to the right hand, or to the left. \nThen Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good. \nBehold, Rebekah is before thee, take her, and go, and let her be thy master's son's wife, as the LORD hath spoken. \nAnd it came to pass, that, when Abraham's servant heard their words, he worshipped the LORD, bowing himself to the earth. \nAnd the servant brought forth jewels of silver, and jewels of gold, and raiment, and gave them to Rebekah: he gave also to her brother and to her mother precious things. \nAnd they did eat and drink, he and the men that were with him, and tarried all night; and they rose up in the morning, and he said, Send me away unto my master. \nAnd her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go. \nAnd he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master. \nAnd they said, We will call the damsel, and enquire at her mouth. \nAnd they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go. \nAnd they sent away Rebekah their sister, and her nurse, and Abraham's servant, and his men. \nAnd they blessed Rebekah, and said unto her, Thou art our sister, be thou the mother of thousands of millions, and let thy seed possess the gate of those which hate them. \nAnd Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way. \nAnd Isaac came from the way of the well Lahairoi; for he dwelt in the south country. \nAnd Isaac went out to meditate in the field at the eventide: and he lifted up his eyes, and saw, and, behold, the camels were coming. \nAnd Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel. \nFor she had said unto the servant, What man is this that walketh in the field to meet us? And the servant had said, It is my master: therefore she took a vail, and covered herself. \nAnd the servant told Isaac all things that he had done. \nAnd Isaac brought her into his mother Sarah's tent, and took Rebekah, and she became his wife; and he loved her: and Isaac was comforted after his mother's death. \nThen again Abraham took a wife, and her name was Keturah. \nAnd she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. \nAnd Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim. \nAnd the sons of Midian; Ephah, and Epher, and Hanoch, and Abidah, and Eldaah. All these were the children of Keturah. \nAnd Abraham gave all that he had unto Isaac. \nBut unto the sons of the concubines, which Abraham had, Abraham gave gifts, and sent them away from Isaac his son, while he yet lived, eastward, unto the east country. \nAnd these are the days of the years of Abraham's life which he lived, an hundred threescore and fifteen years. \nThen Abraham gave up the ghost, and died in a good old age, an old man, and full of years; and was gathered to his people. \nAnd his sons Isaac and Ishmael buried him in the cave of Machpelah, in the field of Ephron the son of Zohar the Hittite, which is before Mamre; \nThe field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife. \nAnd it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahairoi. \nNow these are the generations of Ishmael, Abraham's son, whom Hagar the Egyptian, Sarah's handmaid, bare unto Abraham: \nAnd these are the names of the sons of Ishmael, by their names, according to their generations: the firstborn of Ishmael, Nebajoth; and Kedar, and Adbeel, and Mibsam, \nAnd Mishma, and Dumah, and Massa, \nHadar, and Tema, Jetur, Naphish, and Kedemah: \nThese are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations. \nAnd these are the years of the life of Ishmael, an hundred and thirty and seven years: and he gave up the ghost and died; and was gathered unto his people. \nAnd they dwelt from Havilah unto Shur, that is before Egypt, as thou goest toward Assyria: and he died in the presence of all his brethren. \nAnd these are the generations of Isaac, Abraham's son: Abraham begat Isaac: \nAnd Isaac was forty years old when he took Rebekah to wife, the daughter of Bethuel the Syrian of Padanaram, the sister to Laban the Syrian. \nAnd Isaac intreated the LORD for his wife, because she was barren: and the LORD was intreated of him, and Rebekah his wife conceived. \nAnd the children struggled together within her; and she said, If it be so, why am I thus? And she went to enquire of the LORD. \nAnd the LORD said unto her, Two nations are in thy womb, and two manner of people shall be separated from thy bowels; and the one people shall be stronger than the other people; and the elder shall serve the younger. \nAnd when her days to be delivered were fulfilled, behold, there were twins in her womb. \nAnd the first came out red, all over like an hairy garment; and they called his name Esau. \nAnd after that came his brother out, and his hand took hold on Esau's heel; and his name was called Jacob: and Isaac was threescore years old when she bare them. \nAnd the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents. \nAnd Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob. \nAnd Jacob sod pottage: and Esau came from the field, and he was faint: \nAnd Esau said to Jacob, Feed me, I pray thee, with that same red pottage; for I am faint: therefore was his name called Edom. \nAnd Jacob said, Sell me this day thy birthright. \nAnd Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me? \nAnd Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob. \nThen Jacob gave Esau bread and pottage of lentiles; and he did eat and drink, and rose up, and went his way: thus Esau despised his birthright. \nAnd there was a famine in the land, beside the first famine that was in the days of Abraham. And Isaac went unto Abimelech king of the Philistines unto Gerar. \nAnd the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of: \nSojourn in this land, and I will be with thee, and will bless thee; for unto thee, and unto thy seed, I will give all these countries, and I will perform the oath which I sware unto Abraham thy father; \nAnd I will make thy seed to multiply as the stars of heaven, and will give unto thy seed all these countries; and in thy seed shall all the nations of the earth be blessed; \nBecause that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws. \nAnd Isaac dwelt in Gerar: \nAnd the men of the place asked him of his wife; and he said, She is my sister: for he feared to say, She is my wife; lest, said he, the men of the place should kill me for Rebekah; because she was fair to look upon. \nAnd it came to pass, when he had been there a long time, that Abimelech king of the Philistines looked out at a window, and saw, and, behold, Isaac was sporting with Rebekah his wife. \nAnd Abimelech called Isaac, and said, Behold, of a surety she is thy wife; and how saidst thou, She is my sister? And Isaac said unto him, Because I said, Lest I die for her. \nAnd Abimelech said, What is this thou hast done unto us? one of the people might lightly have lien with thy wife, and thou shouldest have brought guiltiness upon us. \nAnd Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death. \nThen Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him. \nAnd the man waxed great, and went forward, and grew until he became very great: \nFor he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him. \nFor all the wells which his father's servants had digged in the days of Abraham his father, the Philistines had stopped them, and filled them with earth. \nAnd Abimelech said unto Isaac, Go from us; for thou art much mightier than we. \nAnd Isaac departed thence, and pitched his tent in the valley of Gerar, and dwelt there. \nAnd Isaac digged again the wells of water, which they had digged in the days of Abraham his father; for the Philistines had stopped them after the death of Abraham: and he called their names after the names by which his father had called them. \nAnd Isaac's servants digged in the valley, and found there a well of springing water. \nAnd the herdmen of Gerar did strive with Isaac's herdmen, saying, The water is ours: and he called the name of the well Esek; because they strove with him. \nAnd they digged another well, and strove for that also: and he called the name of it Sitnah. \nAnd he removed from thence, and digged another well; and for that they strove not: and he called the name of it Rehoboth; and he said, For now the LORD hath made room for us, and we shall be fruitful in the land. \nAnd he went up from thence to Beersheba. \nAnd the LORD appeared unto him the same night, and said, I am the God of Abraham thy father: fear not, for I am with thee, and will bless thee, and multiply thy seed for my servant Abraham's sake. \nAnd he builded an altar there, and called upon the name of the LORD, and pitched his tent there: and there Isaac's servants digged a well. \nThen Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army. \nAnd Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you? \nAnd they said, We saw certainly that the LORD was with thee: and we said, Let there be now an oath betwixt us, even betwixt us and thee, and let us make a covenant with thee; \nThat thou wilt do us no hurt, as we have not touched thee, and as we have done unto thee nothing but good, and have sent thee away in peace: thou art now the blessed of the LORD. \nAnd he made them a feast, and they did eat and drink. \nAnd they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace. \nAnd it came to pass the same day, that Isaac's servants came, and told him concerning the well which they had digged, and said unto him, We have found water. \nAnd he called it Shebah: therefore the name of the city is Beersheba unto this day. \nAnd Esau was forty years old when he took to wife Judith the daughter of Beeri the Hittite, and Bashemath the daughter of Elon the Hittite: \nWhich were a grief of mind unto Isaac and to Rebekah. \nAnd it came to pass, that when Isaac was old, and his eyes were dim, so that he could not see, he called Esau his eldest son, and said unto him, My son: and he said unto him, Behold, here am I. \nAnd he said, Behold now, I am old, I know not the day of my death: \nNow therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison; \nAnd make me savoury meat, such as I love, and bring it to me, that I may eat; that my soul may bless thee before I die. \nAnd Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it. \nAnd Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying, \nBring me venison, and make me savoury meat, that I may eat, and bless thee before the LORD before my death. \nNow therefore, my son, obey my voice according to that which I command thee. \nGo now to the flock, and fetch me from thence two good kids of the goats; and I will make them savoury meat for thy father, such as he loveth: \nAnd thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death. \nAnd Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man: \nMy father peradventure will feel me, and I shall seem to him as a deceiver; and I shall bring a curse upon me, and not a blessing. \nAnd his mother said unto him, Upon me be thy curse, my son: only obey my voice, and go fetch me them. \nAnd he went, and fetched, and brought them to his mother: and his mother made savoury meat, such as his father loved. \nAnd Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son: \nAnd she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck: \nAnd she gave the savoury meat and the bread, which she had prepared, into the hand of her son Jacob. \nAnd he came unto his father, and said, My father: and he said, Here am I; who art thou, my son? \nAnd Jacob said unto his father, I am Esau thy first born; I have done according as thou badest me: arise, I pray thee, sit and eat of my venison, that thy soul may bless me. \nAnd Isaac said unto his son, How is it that thou hast found it so quickly, my son? And he said, Because the LORD thy God brought it to me. \nAnd Isaac said unto Jacob, Come near, I pray thee, that I may feel thee, my son, whether thou be my very son Esau or not. \nAnd Jacob went near unto Isaac his father; and he felt him, and said, The voice is Jacob's voice, but the hands are the hands of Esau. \nAnd he discerned him not, because his hands were hairy, as his brother Esau's hands: so he blessed him. \nAnd he said, Art thou my very son Esau? And he said, I am. \nAnd he said, Bring it near to me, and I will eat of my son's venison, that my soul may bless thee. And he brought it near to him, and he did eat: and he brought him wine and he drank. \nAnd his father Isaac said unto him, Come near now, and kiss me, my son. \nAnd he came near, and kissed him: and he smelled the smell of his raiment, and blessed him, and said, See, the smell of my son is as the smell of a field which the LORD hath blessed: \nTherefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine: \nLet people serve thee, and nations bow down to thee: be lord over thy brethren, and let thy mother's sons bow down to thee: cursed be every one that curseth thee, and blessed be he that blesseth thee. \nAnd it came to pass, as soon as Isaac had made an end of blessing Jacob, and Jacob was yet scarce gone out from the presence of Isaac his father, that Esau his brother came in from his hunting. \nAnd he also had made savoury meat, and brought it unto his father, and said unto his father, Let my father arise, and eat of his son's venison, that thy soul may bless me. \nAnd Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau. \nAnd Isaac trembled very exceedingly, and said, Who? where is he that hath taken venison, and brought it me, and I have eaten of all before thou camest, and have blessed him? yea, and he shall be blessed. \nAnd when Esau heard the words of his father, he cried with a great and exceeding bitter cry, and said unto his father, Bless me, even me also, O my father. \nAnd he said, Thy brother came with subtilty, and hath taken away thy blessing. \nAnd he said, Is not he rightly named Jacob? for he hath supplanted me these two times: he took away my birthright; and, behold, now he hath taken away my blessing. And he said, Hast thou not reserved a blessing for me? \nAnd Isaac answered and said unto Esau, Behold, I have made him thy lord, and all his brethren have I given to him for servants; and with corn and wine have I sustained him: and what shall I do now unto thee, my son? \nAnd Esau said unto his father, Hast thou but one blessing, my father? bless me, even me also, O my father. And Esau lifted up his voice, and wept. \nAnd Isaac his father answered and said unto him, Behold, thy dwelling shall be the fatness of the earth, and of the dew of heaven from above; \nAnd by thy sword shalt thou live, and shalt serve thy brother; and it shall come to pass when thou shalt have the dominion, that thou shalt break his yoke from off thy neck. \nAnd Esau hated Jacob because of the blessing wherewith his father blessed him: and Esau said in his heart, The days of mourning for my father are at hand; then will I slay my brother Jacob. \nAnd these words of Esau her elder son were told to Rebekah: and she sent and called Jacob her younger son, and said unto him, Behold, thy brother Esau, as touching thee, doth comfort himself, purposing to kill thee. \nNow therefore, my son, obey my voice; arise, flee thou to Laban my brother to Haran; \nAnd tarry with him a few days, until thy brother's fury turn away; \nUntil thy brother's anger turn away from thee, and he forget that which thou hast done to him: then I will send, and fetch thee from thence: why should I be deprived also of you both in one day? \nAnd Rebekah said to Isaac, I am weary of my life because of the daughters of Heth: if Jacob take a wife of the daughters of Heth, such as these which are of the daughters of the land, what good shall my life do me? \nAnd Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan. \nArise, go to Padanaram, to the house of Bethuel thy mother's father; and take thee a wife from thence of the daughers of Laban thy mother's brother. \nAnd God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people; \nAnd give thee the blessing of Abraham, to thee, and to thy seed with thee; that thou mayest inherit the land wherein thou art a stranger, which God gave unto Abraham. \nAnd Isaac sent away Jacob: and he went to Padanaram unto Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob's and Esau's mother. \nWhen Esau saw that Isaac had blessed Jacob, and sent him away to Padanaram, to take him a wife from thence; and that as he blessed him he gave him a charge, saying, Thou shalt not take a wife of the daughers of Canaan; \nAnd that Jacob obeyed his father and his mother, and was gone to Padanaram; \nAnd Esau seeing that the daughters of Canaan pleased not Isaac his father; \nThen went Esau unto Ishmael, and took unto the wives which he had Mahalath the daughter of Ishmael Abraham's son, the sister of Nebajoth, to be his wife. \nAnd Jacob went out from Beersheba, and went toward Haran. \nAnd he lighted upon a certain place, and tarried there all night, because the sun was set; and he took of the stones of that place, and put them for his pillows, and lay down in that place to sleep. \nAnd he dreamed, and behold a ladder set up on the earth, and the top of it reached to heaven: and behold the angels of God ascending and descending on it. \nAnd, behold, the LORD stood above it, and said, I am the LORD God of Abraham thy father, and the God of Isaac: the land whereon thou liest, to thee will I give it, and to thy seed; \nAnd thy seed shall be as the dust of the earth, and thou shalt spread abroad to the west, and to the east, and to the north, and to the south: and in thee and in thy seed shall all the families of the earth be blessed. \nAnd, behold, I am with thee, and will keep thee in all places whither thou goest, and will bring thee again into this land; for I will not leave thee, until I have done that which I have spoken to thee of. \nAnd Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not. \nAnd he was afraid, and said, How dreadful is this place! this is none other but the house of God, and this is the gate of heaven. \nAnd Jacob rose up early in the morning, and took the stone that he had put for his pillows, and set it up for a pillar, and poured oil upon the top of it. \nAnd he called the name of that place Bethel: but the name of that city was called Luz at the first. \nAnd Jacob vowed a vow, saying, If God will be with me, and will keep me in this way that I go, and will give me bread to eat, and raiment to put on, \nSo that I come again to my father's house in peace; then shall the LORD be my God: \nAnd this stone, which I have set for a pillar, shall be God's house: and of all that thou shalt give me I will surely give the tenth unto thee. \nThen Jacob went on his journey, and came into the land of the people of the east. \nAnd he looked, and behold a well in the field, and, lo, there were three flocks of sheep lying by it; for out of that well they watered the flocks: and a great stone was upon the well's mouth. \nAnd thither were all the flocks gathered: and they rolled the stone from the well's mouth, and watered the sheep, and put the stone again upon the well's mouth in his place. \nAnd Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we. \nAnd he said unto them, Know ye Laban the son of Nahor? And they said, We know him. \nAnd he said unto them, Is he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep. \nAnd he said, Lo, it is yet high day, neither is it time that the cattle should be gathered together: water ye the sheep, and go and feed them. \nAnd they said, We cannot, until all the flocks be gathered together, and till they roll the stone from the well's mouth; then we water the sheep. \nAnd while he yet spake with them, Rachel came with her father's sheep; for she kept them. \nAnd it came to pass, when Jacob saw Rachel the daughter of Laban his mother's brother, and the sheep of Laban his mother's brother, that Jacob went near, and rolled the stone from the well's mouth, and watered the flock of Laban his mother's brother. \nAnd Jacob kissed Rachel, and lifted up his voice, and wept. \nAnd Jacob told Rachel that he was her father's brother, and that he was Rebekah's son: and she ran and told her father. \nAnd it came to pass, when Laban heard the tidings of Jacob his sister's son, that he ran to meet him, and embraced him, and kissed him, and brought him to his house. And he told Laban all these things. \nAnd Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month. \nAnd Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be? \nAnd Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel. \nLeah was tender eyed; but Rachel was beautiful and well favoured. \nAnd Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter. \nAnd Laban said, It is better that I give her to thee, than that I should give her to another man: abide with me. \nAnd Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her. \nAnd Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her. \nAnd Laban gathered together all the men of the place, and made a feast. \nAnd it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her. \nAnd Laban gave unto his daughter Leah Zilpah his maid for an handmaid. \nAnd it came to pass, that in the morning, behold, it was Leah: and he said to Laban, What is this thou hast done unto me? did not I serve with thee for Rachel? wherefore then hast thou beguiled me? \nAnd Laban said, It must not be so done in our country, to give the younger before the firstborn. \nFulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years. \nAnd Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also. \nAnd Laban gave to Rachel his daughter Bilhah his handmaid to be her maid. \nAnd he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years. \nAnd when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren. \nAnd Leah conceived, and bare a son, and she called his name Reuben: for she said, Surely the LORD hath looked upon my affliction; now therefore my husband will love me. \nAnd she conceived again, and bare a son; and said, Because the LORD hath heard I was hated, he hath therefore given me this son also: and she called his name Simeon. \nAnd she conceived again, and bare a son; and said, Now this time will my husband be joined unto me, because I have born him three sons: therefore was his name called Levi. \nAnd she conceived again, and bare a son: and she said, Now will I praise the LORD: therefore she called his name Judah; and left bearing. \nAnd when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die. \nAnd Jacob's anger was kindled against Rachel: and he said, Am I in God's stead, who hath withheld from thee the fruit of the womb? \nAnd she said, Behold my maid Bilhah, go in unto her; and she shall bear upon my knees, that I may also have children by her. \nAnd she gave him Bilhah her handmaid to wife: and Jacob went in unto her. \nAnd Bilhah conceived, and bare Jacob a son. \nAnd Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan. \nAnd Bilhah Rachel's maid conceived again, and bare Jacob a second son. \nAnd Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali. \nWhen Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife. \nAnd Zilpah Leah's maid bare Jacob a son. \nAnd Leah said, A troop cometh: and she called his name Gad. \nAnd Zilpah Leah's maid bare Jacob a second son. \nAnd Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher. \nAnd Reuben went in the days of wheat harvest, and found mandrakes in the field, and brought them unto his mother Leah. Then Rachel said to Leah, Give me, I pray thee, of thy son's mandrakes. \nAnd she said unto her, Is it a small matter that thou hast taken my husband? and wouldest thou take away my son's mandrakes also? And Rachel said, Therefore he shall lie with thee to night for thy son's mandrakes. \nAnd Jacob came out of the field in the evening, and Leah went out to meet him, and said, Thou must come in unto me; for surely I have hired thee with my son's mandrakes. And he lay with her that night. \nAnd God hearkened unto Leah, and she conceived, and bare Jacob the fifth son. \nAnd Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar. \nAnd Leah conceived again, and bare Jacob the sixth son. \nAnd Leah said, God hath endued me with a good dowry; now will my husband dwell with me, because I have born him six sons: and she called his name Zebulun. \nAnd afterwards she bare a daughter, and called her name Dinah. \nAnd God remembered Rachel, and God hearkened to her, and opened her womb. \nAnd she conceived, and bare a son; and said, God hath taken away my reproach: \nAnd she called his name Joseph; and said, The LORD shall add to me another son. \nAnd it came to pass, when Rachel had born Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to my country. \nGive me my wives and my children, for whom I have served thee, and let me go: for thou knowest my service which I have done thee. \nAnd Laban said unto him, I pray thee, if I have found favour in thine eyes, tarry: for I have learned by experience that the LORD hath blessed me for thy sake. \nAnd he said, Appoint me thy wages, and I will give it. \nAnd he said unto him, Thou knowest how I have served thee, and how thy cattle was with me. \nFor it was little which thou hadst before I came, and it is now increased unto a multitude; and the LORD hath blessed thee since my coming: and now when shall I provide for mine own house also? \nAnd he said, What shall I give thee? And Jacob said, Thou shalt not give me any thing: if thou wilt do this thing for me, I will again feed and keep thy flock. \nI will pass through all thy flock to day, removing from thence all the speckled and spotted cattle, and all the brown cattle among the sheep, and the spotted and speckled among the goats: and of such shall be my hire. \nSo shall my righteousness answer for me in time to come, when it shall come for my hire before thy face: every one that is not speckled and spotted among the goats, and brown among the sheep, that shall be counted stolen with me. \nAnd Laban said, Behold, I would it might be according to thy word. \nAnd he removed that day the he goats that were ringstraked and spotted, and all the she goats that were speckled and spotted, and every one that had some white in it, and all the brown among the sheep, and gave them into the hand of his sons. \nAnd he set three days' journey betwixt himself and Jacob: and Jacob fed the rest of Laban's flocks. \nAnd Jacob took him rods of green poplar, and of the hazel and chesnut tree; and pilled white strakes in them, and made the white appear which was in the rods. \nAnd he set the rods which he had pilled before the flocks in the gutters in the watering troughs when the flocks came to drink, that they should conceive when they came to drink. \nAnd the flocks conceived before the rods, and brought forth cattle ringstraked, speckled, and spotted. \nAnd Jacob did separate the lambs, and set the faces of the flocks toward the ringstraked, and all the brown in the flock of Laban; and he put his own flocks by themselves, and put them not unto Laban's cattle. \nAnd it came to pass, whensoever the stronger cattle did conceive, that Jacob laid the rods before the eyes of the cattle in the gutters, that they might conceive among the rods. \nBut when the cattle were feeble, he put them not in: so the feebler were Laban's, and the stronger Jacob's. \nAnd the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses. \nAnd he heard the words of Laban's sons, saying, Jacob hath taken away all that was our father's; and of that which was our father's hath he gotten all this glory. \nAnd Jacob beheld the countenance of Laban, and, behold, it was not toward him as before. \nAnd the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee. \nAnd Jacob sent and called Rachel and Leah to the field unto his flock, \nAnd said unto them, I see your father's countenance, that it is not toward me as before; but the God of my father hath been with me. \nAnd ye know that with all my power I have served your father. \nAnd your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me. \nIf he said thus, The speckled shall be thy wages; then all the cattle bare speckled: and if he said thus, The ringstraked shall be thy hire; then bare all the cattle ringstraked. \nThus God hath taken away the cattle of your father, and given them to me. \nAnd it came to pass at the time that the cattle conceived, that I lifted up mine eyes, and saw in a dream, and, behold, the rams which leaped upon the cattle were ringstraked, speckled, and grisled. \nAnd the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I. \nAnd he said, Lift up now thine eyes, and see, all the rams which leap upon the cattle are ringstraked, speckled, and grisled: for I have seen all that Laban doeth unto thee. \nI am the God of Bethel, where thou anointedst the pillar, and where thou vowedst a vow unto me: now arise, get thee out from this land, and return unto the land of thy kindred. \nAnd Rachel and Leah answered and said unto him, Is there yet any portion or inheritance for us in our father's house? \nAre we not counted of him strangers? for he hath sold us, and hath quite devoured also our money. \nFor all the riches which God hath taken from our father, that is ours, and our children's: now then, whatsoever God hath said unto thee, do. \nThen Jacob rose up, and set his sons and his wives upon camels; \nAnd he carried away all his cattle, and all his goods which he had gotten, the cattle of his getting, which he had gotten in Padanaram, for to go to Isaac his father in the land of Canaan. \nAnd Laban went to shear his sheep: and Rachel had stolen the images that were her father's. \nAnd Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled. \nSo he fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead. \nAnd it was told Laban on the third day that Jacob was fled. \nAnd he took his brethren with him, and pursued after him seven days' journey; and they overtook him in the mount Gilead. \nAnd God came to Laban the Syrian in a dream by night, and said unto him, Take heed that thou speak not to Jacob either good or bad. \nThen Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead. \nAnd Laban said to Jacob, What hast thou done, that thou hast stolen away unawares to me, and carried away my daughters, as captives taken with the sword? \nWherefore didst thou flee away secretly, and steal away from me; and didst not tell me, that I might have sent thee away with mirth, and with songs, with tabret, and with harp? \nAnd hast not suffered me to kiss my sons and my daughters? thou hast now done foolishly in so doing. \nIt is in the power of my hand to do you hurt: but the God of your father spake unto me yesternight, saying, Take thou heed that thou speak not to Jacob either good or bad. \nAnd now, though thou wouldest needs be gone, because thou sore longedst after thy father's house, yet wherefore hast thou stolen my gods? \nAnd Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me. \nWith whomsoever thou findest thy gods, let him not live: before our brethren discern thou what is thine with me, and take it to thee. For Jacob knew not that Rachel had stolen them. \nAnd Laban went into Jacob's tent, and into Leah's tent, and into the two maidservants' tents; but he found them not. Then went he out of Leah's tent, and entered into Rachel's tent. \nNow Rachel had taken the images, and put them in the camel's furniture, and sat upon them. And Laban searched all the tent, but found them not. \nAnd she said to her father, Let it not displease my lord that I cannot rise up before thee; for the custom of women is upon me. And he searched but found not the images. \nAnd Jacob was wroth, and chode with Laban: and Jacob answered and said to Laban, What is my trespass? what is my sin, that thou hast so hotly pursued after me? \nWhereas thou hast searched all my stuff, what hast thou found of all thy household stuff? set it here before my brethren and thy brethren, that they may judge betwixt us both. \nThis twenty years have I been with thee; thy ewes and thy she goats have not cast their young, and the rams of thy flock have I not eaten. \nThat which was torn of beasts I brought not unto thee; I bare the loss of it; of my hand didst thou require it, whether stolen by day, or stolen by night. \nThus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes. \nThus have I been twenty years in thy house; I served thee fourteen years for thy two daughters, and six years for thy cattle: and thou hast changed my wages ten times. \nExcept the God of my father, the God of Abraham, and the fear of Isaac, had been with me, surely thou hadst sent me away now empty. God hath seen mine affliction and the labour of my hands, and rebuked thee yesternight. \nAnd Laban answered and said unto Jacob, These daughters are my daughters, and these children are my children, and these cattle are my cattle, and all that thou seest is mine: and what can I do this day unto these my daughters, or unto their children which they have born? \nNow therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee. \nAnd Jacob took a stone, and set it up for a pillar. \nAnd Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap. \nAnd Laban called it Jegarsahadutha: but Jacob called it Galeed. \nAnd Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed; \nAnd Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another. \nIf thou shalt afflict my daughters, or if thou shalt take other wives beside my daughters, no man is with us; see, God is witness betwixt me and thee. \nAnd Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee: \nThis heap be witness, and this pillar be witness, that I will not pass over this heap to thee, and that thou shalt not pass over this heap and this pillar unto me, for harm. \nThe God of Abraham, and the God of Nahor, the God of their father, judge betwixt us. And Jacob sware by the fear of his father Isaac. \nThen Jacob offered sacrifice upon the mount, and called his brethren to eat bread: and they did eat bread, and tarried all night in the mount. \nAnd early in the morning Laban rose up, and kissed his sons and his daughters, and blessed them: and Laban departed, and returned unto his place. \nAnd Jacob went on his way, and the angels of God met him. \nAnd when Jacob saw them, he said, This is God's host: and he called the name of that place Mahanaim. \nAnd Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom. \nAnd he commanded them, saying, Thus shall ye speak unto my lord Esau; Thy servant Jacob saith thus, I have sojourned with Laban, and stayed there until now: \nAnd I have oxen, and asses, flocks, and menservants, and womenservants: and I have sent to tell my lord, that I may find grace in thy sight. \nAnd the messengers returned to Jacob, saying, We came to thy brother Esau, and also he cometh to meet thee, and four hundred men with him. \nThen Jacob was greatly afraid and distressed: and he divided the people that was with him, and the flocks, and herds, and the camels, into two bands; \nAnd said, If Esau come to the one company, and smite it, then the other company which is left shall escape. \nAnd Jacob said, O God of my father Abraham, and God of my father Isaac, the LORD which saidst unto me, Return unto thy country, and to thy kindred, and I will deal well with thee: \nI am not worthy of the least of all the mercies, and of all the truth, which thou hast shewed unto thy servant; for with my staff I passed over this Jordan; and now I am become two bands. \nDeliver me, I pray thee, from the hand of my brother, from the hand of Esau: for I fear him, lest he will come and smite me, and the mother with the children. \nAnd thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude. \nAnd he lodged there that same night; and took of that which came to his hand a present for Esau his brother; \nTwo hundred she goats, and twenty he goats, two hundred ewes, and twenty rams, \nThirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals. \nAnd he delivered them into the hand of his servants, every drove by themselves; and said unto his servants, Pass over before me, and put a space betwixt drove and drove. \nAnd he commanded the foremost, saying, When Esau my brother meeteth thee, and asketh thee, saying, Whose art thou? and whither goest thou? and whose are these before thee? \nThen thou shalt say, They be thy servant Jacob's; it is a present sent unto my lord Esau: and, behold, also he is behind us. \nAnd so commanded he the second, and the third, and all that followed the droves, saying, On this manner shall ye speak unto Esau, when ye find him. \nAnd say ye moreover, Behold, thy servant Jacob is behind us. For he said, I will appease him with the present that goeth before me, and afterward I will see his face; peradventure he will accept of me. \nSo went the present over before him: and himself lodged that night in the company. \nAnd he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok. \nAnd he took them, and sent them over the brook, and sent over that he had. \nAnd Jacob was left alone; and there wrestled a man with him until the breaking of the day. \nAnd when he saw that he prevailed not against him, he touched the hollow of his thigh; and the hollow of Jacob's thigh was out of joint, as he wrestled with him. \nAnd he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me. \nAnd he said unto him, What is thy name? And he said, Jacob. \nAnd he said, Thy name shall be called no more Jacob, but Israel: for as a prince hast thou power with God and with men, and hast prevailed. \nAnd Jacob asked him, and said, Tell me, I pray thee, thy name. And he said, Wherefore is it that thou dost ask after my name? And he blessed him there. \nAnd Jacob called the name of the place Peniel: for I have seen God face to face, and my life is preserved. \nAnd as he passed over Penuel the sun rose upon him, and he halted upon his thigh. \nTherefore the children of Israel eat not of the sinew which shrank, which is upon the hollow of the thigh, unto this day: because he touched the hollow of Jacob's thigh in the sinew that shrank. \nAnd Jacob lifted up his eyes, and looked, and, behold, Esau came, and with him four hundred men. And he divided the children unto Leah, and unto Rachel, and unto the two handmaids. \nAnd he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost. \nAnd he passed over before them, and bowed himself to the ground seven times, until he came near to his brother. \nAnd Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept. \nAnd he lifted up his eyes, and saw the women and the children; and said, Who are those with thee? And he said, The children which God hath graciously given thy servant. \nThen the handmaidens came near, they and their children, and they bowed themselves. \nAnd Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves. \nAnd he said, What meanest thou by all this drove which I met? And he said, These are to find grace in the sight of my lord. \nAnd Esau said, I have enough, my brother; keep that thou hast unto thyself. \nAnd Jacob said, Nay, I pray thee, if now I have found grace in thy sight, then receive my present at my hand: for therefore I have seen thy face, as though I had seen the face of God, and thou wast pleased with me. \nTake, I pray thee, my blessing that is brought to thee; because God hath dealt graciously with me, and because I have enough. And he urged him, and he took it. \nAnd he said, Let us take our journey, and let us go, and I will go before thee. \nAnd he said unto him, My lord knoweth that the children are tender, and the flocks and herds with young are with me: and if men should overdrive them one day, all the flock will die. \nLet my lord, I pray thee, pass over before his servant: and I will lead on softly, according as the cattle that goeth before me and the children be able to endure, until I come unto my lord unto Seir. \nAnd Esau said, Let me now leave with thee some of the folk that are with me. And he said, What needeth it? let me find grace in the sight of my lord. \nSo Esau returned that day on his way unto Seir. \nAnd Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth. \nAnd Jacob came to Shalem, a city of Shechem, which is in the land of Canaan, when he came from Padanaram; and pitched his tent before the city. \nAnd he bought a parcel of a field, where he had spread his tent, at the hand of the children of Hamor, Shechem's father, for an hundred pieces of money. \nAnd he erected there an altar, and called it EleloheIsrael. \nAnd Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land. \nAnd when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her. \nAnd his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel. \nAnd Shechem spake unto his father Hamor, saying, Get me this damsel to wife. \nAnd Jacob heard that he had defiled Dinah his daughter: now his sons were with his cattle in the field: and Jacob held his peace until they were come. \nAnd Hamor the father of Shechem went out unto Jacob to commune with him. \nAnd the sons of Jacob came out of the field when they heard it: and the men were grieved, and they were very wroth, because he had wrought folly in Israel in lying with Jacob's daughter: which thing ought not to be done. \nAnd Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife. \nAnd make ye marriages with us, and give your daughters unto us, and take our daughters unto you. \nAnd ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein. \nAnd Shechem said unto her father and unto her brethren, Let me find grace in your eyes, and what ye shall say unto me I will give. \nAsk me never so much dowry and gift, and I will give according as ye shall say unto me: but give me the damsel to wife. \nAnd the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister: \nAnd they said unto them, We cannot do this thing, to give our sister to one that is uncircumcised; for that were a reproach unto us: \nBut in this will we consent unto you: If ye will be as we be, that every male of you be circumcised; \nThen will we give our daughters unto you, and we will take your daughters to us, and we will dwell with you, and we will become one people. \nBut if ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone. \nAnd their words pleased Hamor, and Shechem Hamor's son. \nAnd the young man deferred not to do the thing, because he had delight in Jacob's daughter: and he was more honourable than all the house of his father. \nAnd Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying, \nThese men are peaceable with us; therefore let them dwell in the land, and trade therein; for the land, behold, it is large enough for them; let us take their daughters to us for wives, and let us give them our daughters. \nOnly herein will the men consent unto us for to dwell with us, to be one people, if every male among us be circumcised, as they are circumcised. \nShall not their cattle and their substance and every beast of their's be our's? only let us consent unto them, and they will dwell with us. \nAnd unto Hamor and unto Shechem his son hearkened all that went out of the gate of his city; and every male was circumcised, all that went out of the gate of his city. \nAnd it came to pass on the third day, when they were sore, that two of the sons of Jacob, Simeon and Levi, Dinah's brethren, took each man his sword, and came upon the city boldly, and slew all the males. \nAnd they slew Hamor and Shechem his son with the edge of the sword, and took Dinah out of Shechem's house, and went out. \nThe sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister. \nThey took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field, \nAnd all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house. \nAnd Jacob said to Simeon and Levi, Ye have troubled me to make me to stink among the inhabitants of the land, among the Canaanites and the Perizzites: and I being few in number, they shall gather themselves together against me, and slay me; and I shall be destroyed, I and my house. \nAnd they said, Should he deal with our sister as with an harlot? \nAnd God said unto Jacob, Arise, go up to Bethel, and dwell there: and make there an altar unto God, that appeared unto thee when thou fleddest from the face of Esau thy brother. \nThen Jacob said unto his household, and to all that were with him, Put away the strange gods that are among you, and be clean, and change your garments: \nAnd let us arise, and go up to Bethel; and I will make there an altar unto God, who answered me in the day of my distress, and was with me in the way which I went. \nAnd they gave unto Jacob all the strange gods which were in their hand, and all their earrings which were in their ears; and Jacob hid them under the oak which was by Shechem. \nAnd they journeyed: and the terror of God was upon the cities that were round about them, and they did not pursue after the sons of Jacob. \nSo Jacob came to Luz, which is in the land of Canaan, that is, Bethel, he and all the people that were with him. \nAnd he built there an altar, and called the place Elbethel: because there God appeared unto him, when he fled from the face of his brother. \nBut Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth. \nAnd God appeared unto Jacob again, when he came out of Padanaram, and blessed him. \nAnd God said unto him, Thy name is Jacob: thy name shall not be called any more Jacob, but Israel shall be thy name: and he called his name Israel. \nAnd God said unto him, I am God Almighty: be fruitful and multiply; a nation and a company of nations shall be of thee, and kings shall come out of thy loins; \nAnd the land which I gave Abraham and Isaac, to thee I will give it, and to thy seed after thee will I give the land. \nAnd God went up from him in the place where he talked with him. \nAnd Jacob set up a pillar in the place where he talked with him, even a pillar of stone: and he poured a drink offering thereon, and he poured oil thereon. \nAnd Jacob called the name of the place where God spake with him, Bethel. \nAnd they journeyed from Bethel; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labour. \nAnd it came to pass, when she was in hard labour, that the midwife said unto her, Fear not; thou shalt have this son also. \nAnd it came to pass, as her soul was in departing, (for she died) that she called his name Benoni: but his father called him Benjamin. \nAnd Rachel died, and was buried in the way to Ephrath, which is Bethlehem. \nAnd Jacob set a pillar upon her grave: that is the pillar of Rachel's grave unto this day. \nAnd Israel journeyed, and spread his tent beyond the tower of Edar. \nAnd it came to pass, when Israel dwelt in that land, that Reuben went and lay with Bilhah his father's concubine: and Israel heard it. Now the sons of Jacob were twelve: \nThe sons of Leah; Reuben, Jacob's firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun: \nThe sons of Rachel; Joseph, and Benjamin: \nAnd the sons of Bilhah, Rachel's handmaid; Dan, and Naphtali: \nAnd the sons of Zilpah, Leah's handmaid: Gad, and Asher: these are the sons of Jacob, which were born to him in Padanaram. \nAnd Jacob came unto Isaac his father unto Mamre, unto the city of Arbah, which is Hebron, where Abraham and Isaac sojourned. \nAnd the days of Isaac were an hundred and fourscore years. \nAnd Isaac gave up the ghost, and died, and was gathered unto his people, being old and full of days: and his sons Esau and Jacob buried him. \nNow these are the generations of Esau, who is Edom. \nEsau took his wives of the daughters of Canaan; Adah the daughter of Elon the Hittite, and Aholibamah the daughter of Anah the daughter of Zibeon the Hivite; \nAnd Bashemath Ishmael's daughter, sister of Nebajoth. \nAnd Adah bare to Esau Eliphaz; and Bashemath bare Reuel; \nAnd Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan. \nAnd Esau took his wives, and his sons, and his daughters, and all the persons of his house, and his cattle, and all his beasts, and all his substance, which he had got in the land of Canaan; and went into the country from the face of his brother Jacob. \nFor their riches were more than that they might dwell together; and the land wherein they were strangers could not bear them because of their cattle. \nThus dwelt Esau in mount Seir: Esau is Edom. \nAnd these are the generations of Esau the father of the Edomites in mount Seir: \nThese are the names of Esau's sons; Eliphaz the son of Adah the wife of Esau, Reuel the son of Bashemath the wife of Esau. \nAnd the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz. \nAnd Timna was concubine to Eliphaz Esau's son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau's wife. \nAnd these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau's wife. \nAnd these were the sons of Aholibamah, the daughter of Anah the daughter of Zibeon, Esau's wife: and she bare to Esau Jeush, and Jaalam, and Korah. \nThese were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz, \nDuke Korah, duke Gatam, and duke Amalek: these are the dukes that came of Eliphaz in the land of Edom; these were the sons of Adah. \nAnd these are the sons of Reuel Esau's son; duke Nahath, duke Zerah, duke Shammah, duke Mizzah: these are the dukes that came of Reuel in the land of Edom; these are the sons of Bashemath Esau's wife. \nAnd these are the sons of Aholibamah Esau's wife; duke Jeush, duke Jaalam, duke Korah: these were the dukes that came of Aholibamah the daughter of Anah, Esau's wife. \nThese are the sons of Esau, who is Edom, and these are their dukes. \nThese are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah, \nAnd Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom. \nAnd the children of Lotan were Hori and Hemam; and Lotan's sister was Timna. \nAnd the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam. \nAnd these are the children of Zibeon; both Ajah, and Anah: this was that Anah that found the mules in the wilderness, as he fed the asses of Zibeon his father. \nAnd the children of Anah were these; Dishon, and Aholibamah the daughter of Anah. \nAnd these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran. \nThe children of Ezer are these; Bilhan, and Zaavan, and Akan. \nThe children of Dishan are these; Uz, and Aran. \nThese are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah, \nDuke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir. \nAnd these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel. \nAnd Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah. \nAnd Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead. \nAnd Jobab died, and Husham of the land of Temani reigned in his stead. \nAnd Husham died, and Hadad the son of Bedad, who smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith. \nAnd Hadad died, and Samlah of Masrekah reigned in his stead. \nAnd Samlah died, and Saul of Rehoboth by the river reigned in his stead. \nAnd Saul died, and Baalhanan the son of Achbor reigned in his stead. \nAnd Baalhanan the son of Achbor died, and Hadar reigned in his stead: and the name of his city was Pau; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab. \nAnd these are the names of the dukes that came of Esau, according to their families, after their places, by their names; duke Timnah, duke Alvah, duke Jetheth, \nDuke Aholibamah, duke Elah, duke Pinon, \nDuke Kenaz, duke Teman, duke Mibzar, \nDuke Magdiel, duke Iram: these be the dukes of Edom, according to their habitations in the land of their possession: he is Esau the father of the Edomites. \nAnd Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan. \nThese are the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brethren; and the lad was with the sons of Bilhah, and with the sons of Zilpah, his father's wives: and Joseph brought unto his father their evil report. \nNow Israel loved Joseph more than all his children, because he was the son of his old age: and he made him a coat of many colours. \nAnd when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him. \nAnd Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more. \nAnd he said unto them, Hear, I pray you, this dream which I have dreamed: \nFor, behold, we were binding sheaves in the field, and, lo, my sheaf arose, and also stood upright; and, behold, your sheaves stood round about, and made obeisance to my sheaf. \nAnd his brethren said to him, Shalt thou indeed reign over us? or shalt thou indeed have dominion over us? And they hated him yet the more for his dreams, and for his words. \nAnd he dreamed yet another dream, and told it his brethren, and said, Behold, I have dreamed a dream more; and, behold, the sun and the moon and the eleven stars made obeisance to me. \nAnd he told it to his father, and to his brethren: and his father rebuked him, and said unto him, What is this dream that thou hast dreamed? Shall I and thy mother and thy brethren indeed come to bow down ourselves to thee to the earth? \nAnd his brethren envied him; but his father observed the saying. \nAnd his brethren went to feed their father's flock in Shechem. \nAnd Israel said unto Joseph, Do not thy brethren feed the flock in Shechem? come, and I will send thee unto them. And he said to him, Here am I. \nAnd he said to him, Go, I pray thee, see whether it be well with thy brethren, and well with the flocks; and bring me word again. So he sent him out of the vale of Hebron, and he came to Shechem. \nAnd a certain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou? \nAnd he said, I seek my brethren: tell me, I pray thee, where they feed their flocks. \nAnd the man said, They are departed hence; for I heard them say, Let us go to Dothan. And Joseph went after his brethren, and found them in Dothan. \nAnd when they saw him afar off, even before he came near unto them, they conspired against him to slay him. \nAnd they said one to another, Behold, this dreamer cometh. \nCome now therefore, and let us slay him, and cast him into some pit, and we will say, Some evil beast hath devoured him: and we shall see what will become of his dreams. \nAnd Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him. \nAnd Reuben said unto them, Shed no blood, but cast him into this pit that is in the wilderness, and lay no hand upon him; that he might rid him out of their hands, to deliver him to his father again. \nAnd it came to pass, when Joseph was come unto his brethren, that they stript Joseph out of his coat, his coat of many colours that was on him; \nAnd they took him, and cast him into a pit: and the pit was empty, there was no water in it. \nAnd they sat down to eat bread: and they lifted up their eyes and looked, and, behold, a company of Ishmeelites came from Gilead with their camels bearing spicery and balm and myrrh, going to carry it down to Egypt. \nAnd Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood? \nCome, and let us sell him to the Ishmeelites, and let not our hand be upon him; for he is our brother and our flesh. And his brethren were content. \nThen there passed by Midianites merchantmen; and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmeelites for twenty pieces of silver: and they brought Joseph into Egypt. \nAnd Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes. \nAnd he returned unto his brethren, and said, The child is not; and I, whither shall I go? \nAnd they took Joseph's coat, and killed a kid of the goats, and dipped the coat in the blood; \nAnd they sent the coat of many colours, and they brought it to their father; and said, This have we found: know now whether it be thy son's coat or no. \nAnd he knew it, and said, It is my son's coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces. \nAnd Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days. \nAnd all his sons and all his daughters rose up to comfort him; but he refused to be comforted; and he said, For I will go down into the grave unto my son mourning. Thus his father wept for him. \nAnd the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh's, and captain of the guard. \nAnd it came to pass at that time, that Judah went down from his brethren, and turned in to a certain Adullamite, whose name was Hirah. \nAnd Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her. \nAnd she conceived, and bare a son; and he called his name Er. \nAnd she conceived again, and bare a son; and she called his name Onan. \nAnd she yet again conceived, and bare a son; and called his name Shelah: and he was at Chezib, when she bare him. \nAnd Judah took a wife for Er his firstborn, whose name was Tamar. \nAnd Er, Judah's firstborn, was wicked in the sight of the LORD; and the LORD slew him. \nAnd Judah said unto Onan, Go in unto thy brother's wife, and marry her, and raise up seed to thy brother. \nAnd Onan knew that the seed should not be his; and it came to pass, when he went in unto his brother's wife, that he spilled it on the ground, lest that he should give seed to his brother. \nAnd the thing which he did displeased the LORD: wherefore he slew him also. \nThen said Judah to Tamar his daughter in law, Remain a widow at thy father's house, till Shelah my son be grown: for he said, Lest peradventure he die also, as his brethren did. And Tamar went and dwelt in her father's house. \nAnd in process of time the daughter of Shuah Judah's wife died; and Judah was comforted, and went up unto his sheepshearers to Timnath, he and his friend Hirah the Adullamite. \nAnd it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep. \nAnd she put her widow's garments off from her, and covered her with a vail, and wrapped herself, and sat in an open place, which is by the way to Timnath; for she saw that Shelah was grown, and she was not given unto him to wife. \nWhen Judah saw her, he thought her to be an harlot; because she had covered her face. \nAnd he turned unto her by the way, and said, Go to, I pray thee, let me come in unto thee; (for he knew not that she was his daughter in law.) And she said, What wilt thou give me, that thou mayest come in unto me? \nAnd he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it? \nAnd he said, What pledge shall I give thee? And she said, Thy signet, and thy bracelets, and thy staff that is in thine hand. And he gave it her, and came in unto her, and she conceived by him. \nAnd she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood. \nAnd Judah sent the kid by the hand of his friend the Adullamite, to receive his pledge from the woman's hand: but he found her not. \nThen he asked the men of that place, saying, Where is the harlot, that was openly by the way side? And they said, There was no harlot in this place. \nAnd he returned to Judah, and said, I cannot find her; and also the men of the place said, that there was no harlot in this place. \nAnd Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her. \nAnd it came to pass about three months after, that it was told Judah, saying, Tamar thy daughter in law hath played the harlot; and also, behold, she is with child by whoredom. And Judah said, Bring her forth, and let her be burnt. \nWhen she was brought forth, she sent to her father in law, saying, By the man, whose these are, am I with child: and she said, Discern, I pray thee, whose are these, the signet, and bracelets, and staff. \nAnd Judah acknowledged them, and said, She hath been more righteous than I; because that I gave her not to Shelah my son. And he knew her again no more. \nAnd it came to pass in the time of her travail, that, behold, twins were in her womb. \nAnd it came to pass, when she travailed, that the one put out his hand: and the midwife took and bound upon his hand a scarlet thread, saying, This came out first. \nAnd it came to pass, as he drew back his hand, that, behold, his brother came out: and she said, How hast thou broken forth? this breach be upon thee: therefore his name was called Pharez. \nAnd afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah. \nAnd Joseph was brought down to Egypt; and Potiphar, an officer of Pharaoh, captain of the guard, an Egyptian, bought him of the hands of the Ishmeelites, which had brought him down thither. \nAnd the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian. \nAnd his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand. \nAnd Joseph found grace in his sight, and he served him: and he made him overseer over his house, and all that he had he put into his hand. \nAnd it came to pass from the time that he had made him overseer in his house, and over all that he had, that the LORD blessed the Egyptian's house for Joseph's sake; and the blessing of the LORD was upon all that he had in the house, and in the field. \nAnd he left all that he had in Joseph's hand; and he knew not ought he had, save the bread which he did eat. And Joseph was a goodly person, and well favoured. \nAnd it came to pass after these things, that his master's wife cast her eyes upon Joseph; and she said, Lie with me. \nBut he refused, and said unto his master's wife, Behold, my master wotteth not what is with me in the house, and he hath committed all that he hath to my hand; \nThere is none greater in this house than I; neither hath he kept back any thing from me but thee, because thou art his wife: how then can I do this great wickedness, and sin against God? \nAnd it came to pass, as she spake to Joseph day by day, that he hearkened not unto her, to lie by her, or to be with her. \nAnd it came to pass about this time, that Joseph went into the house to do his business; and there was none of the men of the house there within. \nAnd she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out. \nAnd it came to pass, when she saw that he had left his garment in her hand, and was fled forth, \nThat she called unto the men of her house, and spake unto them, saying, See, he hath brought in an Hebrew unto us to mock us; he came in unto me to lie with me, and I cried with a loud voice: \nAnd it came to pass, when he heard that I lifted up my voice and cried, that he left his garment with me, and fled, and got him out. \nAnd she laid up his garment by her, until his lord came home. \nAnd she spake unto him according to these words, saying, The Hebrew servant, which thou hast brought unto us, came in unto me to mock me: \nAnd it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out. \nAnd it came to pass, when his master heard the words of his wife, which she spake unto him, saying, After this manner did thy servant to me; that his wrath was kindled. \nAnd Joseph's master took him, and put him into the prison, a place where the king's prisoners were bound: and he was there in the prison. \nBut the LORD was with Joseph, and shewed him mercy, and gave him favour in the sight of the keeper of the prison. \nAnd the keeper of the prison committed to Joseph's hand all the prisoners that were in the prison; and whatsoever they did there, he was the doer of it. \nThe keeper of the prison looked not to any thing that was under his hand; because the LORD was with him, and that which he did, the LORD made it to prosper. \nAnd it came to pass after these things, that the butler of the king of Egypt and his baker had offended their lord the king of Egypt. \nAnd Pharaoh was wroth against two of his officers, against the chief of the butlers, and against the chief of the bakers. \nAnd he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound. \nAnd the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward. \nAnd they dreamed a dream both of them, each man his dream in one night, each man according to the interpretation of his dream, the butler and the baker of the king of Egypt, which were bound in the prison. \nAnd Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad. \nAnd he asked Pharaoh's officers that were with him in the ward of his lord's house, saying, Wherefore look ye so sadly to day? \nAnd they said unto him, We have dreamed a dream, and there is no interpreter of it. And Joseph said unto them, Do not interpretations belong to God? tell me them, I pray you. \nAnd the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me; \nAnd in the vine were three branches: and it was as though it budded, and her blossoms shot forth; and the clusters thereof brought forth ripe grapes: \nAnd Pharaoh's cup was in my hand: and I took the grapes, and pressed them into Pharaoh's cup, and I gave the cup into Pharaoh's hand. \nAnd Joseph said unto him, This is the interpretation of it: The three branches are three days: \nYet within three days shall Pharaoh lift up thine head, and restore thee unto thy place: and thou shalt deliver Pharaoh's cup into his hand, after the former manner when thou wast his butler. \nBut think on me when it shall be well with thee, and shew kindness, I pray thee, unto me, and make mention of me unto Pharaoh, and bring me out of this house: \nFor indeed I was stolen away out of the land of the Hebrews: and here also have I done nothing that they should put me into the dungeon. \nWhen the chief baker saw that the interpretation was good, he said unto Joseph, I also was in my dream, and, behold, I had three white baskets on my head: \nAnd in the uppermost basket there was of all manner of bakemeats for Pharaoh; and the birds did eat them out of the basket upon my head. \nAnd Joseph answered and said, This is the interpretation thereof: The three baskets are three days: \nYet within three days shall Pharaoh lift up thy head from off thee, and shall hang thee on a tree; and the birds shall eat thy flesh from off thee. \nAnd it came to pass the third day, which was Pharaoh's birthday, that he made a feast unto all his servants: and he lifted up the head of the chief butler and of the chief baker among his servants. \nAnd he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh's hand: \nBut he hanged the chief baker: as Joseph had interpreted to them. \nYet did not the chief butler remember Joseph, but forgat him. \nAnd it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river. \nAnd, behold, there came up out of the river seven well favoured kine and fatfleshed; and they fed in a meadow. \nAnd, behold, seven other kine came up after them out of the river, ill favoured and leanfleshed; and stood by the other kine upon the brink of the river. \nAnd the ill favoured and leanfleshed kine did eat up the seven well favoured and fat kine. So Pharaoh awoke. \nAnd he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good. \nAnd, behold, seven thin ears and blasted with the east wind sprung up after them. \nAnd the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream. \nAnd it came to pass in the morning that his spirit was troubled; and he sent and called for all the magicians of Egypt, and all the wise men thereof: and Pharaoh told them his dream; but there was none that could interpret them unto Pharaoh. \nThen spake the chief butler unto Pharaoh, saying, I do remember my faults this day: \nPharaoh was wroth with his servants, and put me in ward in the captain of the guard's house, both me and the chief baker: \nAnd we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream. \nAnd there was there with us a young man, an Hebrew, servant to the captain of the guard; and we told him, and he interpreted to us our dreams; to each man according to his dream he did interpret. \nAnd it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged. \nThen Pharaoh sent and called Joseph, and they brought him hastily out of the dungeon: and he shaved himself, and changed his raiment, and came in unto Pharaoh. \nAnd Pharaoh said unto Joseph, I have dreamed a dream, and there is none that can interpret it: and I have heard say of thee, that thou canst understand a dream to interpret it. \nAnd Joseph answered Pharaoh, saying, It is not in me: God shall give Pharaoh an answer of peace. \nAnd Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river: \nAnd, behold, there came up out of the river seven kine, fatfleshed and well favoured; and they fed in a meadow: \nAnd, behold, seven other kine came up after them, poor and very ill favoured and leanfleshed, such as I never saw in all the land of Egypt for badness: \nAnd the lean and the ill favoured kine did eat up the first seven fat kine: \nAnd when they had eaten them up, it could not be known that they had eaten them; but they were still ill favoured, as at the beginning. So I awoke. \nAnd I saw in my dream, and, behold, seven ears came up in one stalk, full and good: \nAnd, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them: \nAnd the thin ears devoured the seven good ears: and I told this unto the magicians; but there was none that could declare it to me. \nAnd Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath shewed Pharaoh what he is about to do. \nThe seven good kine are seven years; and the seven good ears are seven years: the dream is one. \nAnd the seven thin and ill favoured kine that came up after them are seven years; and the seven empty ears blasted with the east wind shall be seven years of famine. \nThis is the thing which I have spoken unto Pharaoh: What God is about to do he sheweth unto Pharaoh. \nBehold, there come seven years of great plenty throughout all the land of Egypt: \nAnd there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land; \nAnd the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous. \nAnd for that the dream was doubled unto Pharaoh twice; it is because the thing is established by God, and God will shortly bring it to pass. \nNow therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt. \nLet Pharaoh do this, and let him appoint officers over the land, and take up the fifth part of the land of Egypt in the seven plenteous years. \nAnd let them gather all the food of those good years that come, and lay up corn under the hand of Pharaoh, and let them keep food in the cities. \nAnd that food shall be for store to the land against the seven years of famine, which shall be in the land of Egypt; that the land perish not through the famine. \nAnd the thing was good in the eyes of Pharaoh, and in the eyes of all his servants. \nAnd Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is? \nAnd Pharaoh said unto Joseph, Forasmuch as God hath shewed thee all this, there is none so discreet and wise as thou art: \nThou shalt be over my house, and according unto thy word shall all my people be ruled: only in the throne will I be greater than thou. \nAnd Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt. \nAnd Pharaoh took off his ring from his hand, and put it upon Joseph's hand, and arrayed him in vestures of fine linen, and put a gold chain about his neck; \nAnd he made him to ride in the second chariot which he had; and they cried before him, Bow the knee: and he made him ruler over all the land of Egypt. \nAnd Pharaoh said unto Joseph, I am Pharaoh, and without thee shall no man lift up his hand or foot in all the land of Egypt. \nAnd Pharaoh called Joseph's name Zaphnathpaaneah; and he gave him to wife Asenath the daughter of Potipherah priest of On. And Joseph went out over all the land of Egypt. \nAnd Joseph was thirty years old when he stood before Pharaoh king of Egypt. And Joseph went out from the presence of Pharaoh, and went throughout all the land of Egypt. \nAnd in the seven plenteous years the earth brought forth by handfuls. \nAnd he gathered up all the food of the seven years, which were in the land of Egypt, and laid up the food in the cities: the food of the field, which was round about every city, laid he up in the same. \nAnd Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number. \nAnd unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him. \nAnd Joseph called the name of the firstborn Manasseh: For God, said he, hath made me forget all my toil, and all my father's house. \nAnd the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction. \nAnd the seven years of plenteousness, that was in the land of Egypt, were ended. \nAnd the seven years of dearth began to come, according as Joseph had said: and the dearth was in all lands; but in all the land of Egypt there was bread. \nAnd when all the land of Egypt was famished, the people cried to Pharaoh for bread: and Pharaoh said unto all the Egyptians, Go unto Joseph; what he saith to you, do. \nAnd the famine was over all the face of the earth: and Joseph opened all the storehouses, and sold unto the Egyptians; and the famine waxed sore in the land of Egypt. \nAnd all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands. \nNow when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another? \nAnd he said, Behold, I have heard that there is corn in Egypt: get you down thither, and buy for us from thence; that we may live, and not die. \nAnd Joseph's ten brethren went down to buy corn in Egypt. \nBut Benjamin, Joseph's brother, Jacob sent not with his brethren; for he said, Lest peradventure mischief befall him. \nAnd the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan. \nAnd Joseph was the governor over the land, and he it was that sold to all the people of the land: and Joseph's brethren came, and bowed down themselves before him with their faces to the earth. \nAnd Joseph saw his brethren, and he knew them, but made himself strange unto them, and spake roughly unto them; and he said unto them, Whence come ye? And they said, From the land of Canaan to buy food. \nAnd Joseph knew his brethren, but they knew not him. \nAnd Joseph remembered the dreams which he dreamed of them, and said unto them, Ye are spies; to see the nakedness of the land ye are come. \nAnd they said unto him, Nay, my lord, but to buy food are thy servants come. \nWe are all one man's sons; we are true men, thy servants are no spies. \nAnd he said unto them, Nay, but to see the nakedness of the land ye are come. \nAnd they said, Thy servants are twelve brethren, the sons of one man in the land of Canaan; and, behold, the youngest is this day with our father, and one is not. \nAnd Joseph said unto them, That is it that I spake unto you, saying, Ye are spies: \nHereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither. \nSend one of you, and let him fetch your brother, and ye shall be kept in prison, that your words may be proved, whether there be any truth in you: or else by the life of Pharaoh surely ye are spies. \nAnd he put them all together into ward three days. \nAnd Joseph said unto them the third day, This do, and live; for I fear God: \nIf ye be true men, let one of your brethren be bound in the house of your prison: go ye, carry corn for the famine of your houses: \nBut bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so. \nAnd they said one to another, We are verily guilty concerning our brother, in that we saw the anguish of his soul, when he besought us, and we would not hear; therefore is this distress come upon us. \nAnd Reuben answered them, saying, Spake I not unto you, saying, Do not sin against the child; and ye would not hear? therefore, behold, also his blood is required. \nAnd they knew not that Joseph understood them; for he spake unto them by an interpreter. \nAnd he turned himself about from them, and wept; and returned to them again, and communed with them, and took from them Simeon, and bound him before their eyes. \nThen Joseph commanded to fill their sacks with corn, and to restore every man's money into his sack, and to give them provision for the way: and thus did he unto them. \nAnd they laded their asses with the corn, and departed thence. \nAnd as one of them opened his sack to give his ass provender in the inn, he espied his money; for, behold, it was in his sack's mouth. \nAnd he said unto his brethren, My money is restored; and, lo, it is even in my sack: and their heart failed them, and they were afraid, saying one to another, What is this that God hath done unto us? \nAnd they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying, \nThe man, who is the lord of the land, spake roughly to us, and took us for spies of the country. \nAnd we said unto him, We are true men; we are no spies: \nWe be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan. \nAnd the man, the lord of the country, said unto us, Hereby shall I know that ye are true men; leave one of your brethren here with me, and take food for the famine of your households, and be gone: \nAnd bring your youngest brother unto me: then shall I know that ye are no spies, but that ye are true men: so will I deliver you your brother, and ye shall traffick in the land. \nAnd it came to pass as they emptied their sacks, that, behold, every man's bundle of money was in his sack: and when both they and their father saw the bundles of money, they were afraid. \nAnd Jacob their father said unto them, Me have ye bereaved of my children: Joseph is not, and Simeon is not, and ye will take Benjamin away: all these things are against me. \nAnd Reuben spake unto his father, saying, Slay my two sons, if I bring him not to thee: deliver him into my hand, and I will bring him to thee again. \nAnd he said, My son shall not go down with you; for his brother is dead, and he is left alone: if mischief befall him by the way in the which ye go, then shall ye bring down my gray hairs with sorrow to the grave. \nAnd the famine was sore in the land. \nAnd it came to pass, when they had eaten up the corn which they had brought out of Egypt, their father said unto them, Go again, buy us a little food. \nAnd Judah spake unto him, saying, The man did solemnly protest unto us, saying, Ye shall not see my face, except your brother be with you. \nIf thou wilt send our brother with us, we will go down and buy thee food: \nBut if thou wilt not send him, we will not go down: for the man said unto us, Ye shall not see my face, except your brother be with you. \nAnd Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother? \nAnd they said, The man asked us straitly of our state, and of our kindred, saying, Is your father yet alive? have ye another brother? and we told him according to the tenor of these words: could we certainly know that he would say, Bring your brother down? \nAnd Judah said unto Israel his father, Send the lad with me, and we will arise and go; that we may live, and not die, both we, and thou, and also our little ones. \nI will be surety for him; of my hand shalt thou require him: if I bring him not unto thee, and set him before thee, then let me bear the blame for ever: \nFor except we had lingered, surely now we had returned this second time. \nAnd their father Israel said unto them, If it must be so now, do this; take of the best fruits in the land in your vessels, and carry down the man a present, a little balm, and a little honey, spices, and myrrh, nuts, and almonds: \nAnd take double money in your hand; and the money that was brought again in the mouth of your sacks, carry it again in your hand; peradventure it was an oversight: \nTake also your brother, and arise, go again unto the man: \nAnd God Almighty give you mercy before the man, that he may send away your other brother, and Benjamin. If I be bereaved of my children, I am bereaved. \nAnd the men took that present, and they took double money in their hand and Benjamin; and rose up, and went down to Egypt, and stood before Joseph. \nAnd when Joseph saw Benjamin with them, he said to the ruler of his house, Bring these men home, and slay, and make ready; for these men shall dine with me at noon. \nAnd the man did as Joseph bade; and the man brought the men into Joseph's house. \nAnd the men were afraid, because they were brought into Joseph's house; and they said, Because of the money that was returned in our sacks at the first time are we brought in; that he may seek occasion against us, and fall upon us, and take us for bondmen, and our asses. \nAnd they came near to the steward of Joseph's house, and they communed with him at the door of the house, \nAnd said, O sir, we came indeed down at the first time to buy food: \nAnd it came to pass, when we came to the inn, that we opened our sacks, and, behold, every man's money was in the mouth of his sack, our money in full weight: and we have brought it again in our hand. \nAnd other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks. \nAnd he said, Peace be to you, fear not: your God, and the God of your father, hath given you treasure in your sacks: I had your money. And he brought Simeon out unto them. \nAnd the man brought the men into Joseph's house, and gave them water, and they washed their feet; and he gave their asses provender. \nAnd they made ready the present against Joseph came at noon: for they heard that they should eat bread there. \nAnd when Joseph came home, they brought him the present which was in their hand into the house, and bowed themselves to him to the earth. \nAnd he asked them of their welfare, and said, Is your father well, the old man of whom ye spake? Is he yet alive? \nAnd they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance. \nAnd he lifted up his eyes, and saw his brother Benjamin, his mother's son, and said, Is this your younger brother, of whom ye spake unto me? And he said, God be gracious unto thee, my son. \nAnd Joseph made haste; for his bowels did yearn upon his brother: and he sought where to weep; and he entered into his chamber, and wept there. \nAnd he washed his face, and went out, and refrained himself, and said, Set on bread. \nAnd they set on for him by himself, and for them by themselves, and for the Egyptians, which did eat with him, by themselves: because the Egyptians might not eat bread with the Hebrews; for that is an abomination unto the Egyptians. \nAnd they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marvelled one at another. \nAnd he took and sent messes unto them from before him: but Benjamin's mess was five times so much as any of their's. And they drank, and were merry with him. \nAnd he commanded the steward of his house, saying, Fill the men's sacks with food, as much as they can carry, and put every man's money in his sack's mouth. \nAnd put my cup, the silver cup, in the sack's mouth of the youngest, and his corn money. And he did according to the word that Joseph had spoken. \nAs soon as the morning was light, the men were sent away, they and their asses. \nAnd when they were gone out of the city, and not yet far off, Joseph said unto his steward, Up, follow after the men; and when thou dost overtake them, say unto them, Wherefore have ye rewarded evil for good? \nIs not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing. \nAnd he overtook them, and he spake unto them these same words. \nAnd they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing: \nBehold, the money, which we found in our sacks' mouths, we brought again unto thee out of the land of Canaan: how then should we steal out of thy lord's house silver or gold? \nWith whomsoever of thy servants it be found, both let him die, and we also will be my lord's bondmen. \nAnd he said, Now also let it be according unto your words: he with whom it is found shall be my servant; and ye shall be blameless. \nThen they speedily took down every man his sack to the ground, and opened every man his sack. \nAnd he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin's sack. \nThen they rent their clothes, and laded every man his ass, and returned to the city. \nAnd Judah and his brethren came to Joseph's house; for he was yet there: and they fell before him on the ground. \nAnd Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine? \nAnd Judah said, What shall we say unto my lord? what shall we speak? or how shall we clear ourselves? God hath found out the iniquity of thy servants: behold, we are my lord's servants, both we, and he also with whom the cup is found. \nAnd he said, God forbid that I should do so: but the man in whose hand the cup is found, he shall be my servant; and as for you, get you up in peace unto your father. \nThen Judah came near unto him, and said, Oh my lord, let thy servant, I pray thee, speak a word in my lord's ears, and let not thine anger burn against thy servant: for thou art even as Pharaoh. \nMy lord asked his servants, saying, Have ye a father, or a brother? \nAnd we said unto my lord, We have a father, an old man, and a child of his old age, a little one; and his brother is dead, and he alone is left of his mother, and his father loveth him. \nAnd thou saidst unto thy servants, Bring him down unto me, that I may set mine eyes upon him. \nAnd we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die. \nAnd thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more. \nAnd it came to pass when we came up unto thy servant my father, we told him the words of my lord. \nAnd our father said, Go again, and buy us a little food. \nAnd we said, We cannot go down: if our youngest brother be with us, then will we go down: for we may not see the man's face, except our youngest brother be with us. \nAnd thy servant my father said unto us, Ye know that my wife bare me two sons: \nAnd the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since: \nAnd if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave. \nNow therefore when I come to thy servant my father, and the lad be not with us; seeing that his life is bound up in the lad's life; \nIt shall come to pass, when he seeth that the lad is not with us, that he will die: and thy servants shall bring down the gray hairs of thy servant our father with sorrow to the grave. \nFor thy servant became surety for the lad unto my father, saying, If I bring him not unto thee, then I shall bear the blame to my father for ever. \nNow therefore, I pray thee, let thy servant abide instead of the lad a bondman to my lord; and let the lad go up with his brethren. \nFor how shall I go up to my father, and the lad be not with me? lest peradventure I see the evil that shall come on my father. \nThen Joseph could not refrain himself before all them that stood by him; and he cried, Cause every man to go out from me. And there stood no man with him, while Joseph made himself known unto his brethren. \nAnd he wept aloud: and the Egyptians and the house of Pharaoh heard. \nAnd Joseph said unto his brethren, I am Joseph; doth my father yet live? And his brethren could not answer him; for they were troubled at his presence. \nAnd Joseph said unto his brethren, Come near to me, I pray you. And they came near. And he said, I am Joseph your brother, whom ye sold into Egypt. \nNow therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life. \nFor these two years hath the famine been in the land: and yet there are five years, in the which there shall neither be earing nor harvest. \nAnd God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance. \nSo now it was not you that sent me hither, but God: and he hath made me a father to Pharaoh, and lord of all his house, and a ruler throughout all the land of Egypt. \nHaste ye, and go up to my father, and say unto him, Thus saith thy son Joseph, God hath made me lord of all Egypt: come down unto me, tarry not: \nAnd thou shalt dwell in the land of Goshen, and thou shalt be near unto me, thou, and thy children, and thy children's children, and thy flocks, and thy herds, and all that thou hast: \nAnd there will I nourish thee; for yet there are five years of famine; lest thou, and thy household, and all that thou hast, come to poverty. \nAnd, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you. \nAnd ye shall tell my father of all my glory in Egypt, and of all that ye have seen; and ye shall haste and bring down my father hither. \nAnd he fell upon his brother Benjamin's neck, and wept; and Benjamin wept upon his neck. \nMoreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him. \nAnd the fame thereof was heard in Pharaoh's house, saying, Joseph's brethren are come: and it pleased Pharaoh well, and his servants. \nAnd Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan; \nAnd take your father and your households, and come unto me: and I will give you the good of the land of Egypt, and ye shall eat the fat of the land. \nNow thou art commanded, this do ye; take you wagons out of the land of Egypt for your little ones, and for your wives, and bring your father, and come. \nAlso regard not your stuff; for the good of all the land of Egypt is your's. \nAnd the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way. \nTo all of them he gave each man changes of raiment; but to Benjamin he gave three hundred pieces of silver, and five changes of raiment. \nAnd to his father he sent after this manner; ten asses laden with the good things of Egypt, and ten she asses laden with corn and bread and meat for his father by the way. \nSo he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way. \nAnd they went up out of Egypt, and came into the land of Canaan unto Jacob their father, \nAnd told him, saying, Joseph is yet alive, and he is governor over all the land of Egypt. And Jacob's heart fainted, for he believed them not. \nAnd they told him all the words of Joseph, which he had said unto them: and when he saw the wagons which Joseph had sent to carry him, the spirit of Jacob their father revived: \nAnd Israel said, It is enough; Joseph my son is yet alive: I will go and see him before I die. \nAnd Israel took his journey with all that he had, and came to Beersheba, and offered sacrifices unto the God of his father Isaac. \nAnd God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I. \nAnd he said, I am God, the God of thy father: fear not to go down into Egypt; for I will there make of thee a great nation: \nI will go down with thee into Egypt; and I will also surely bring thee up again: and Joseph shall put his hand upon thine eyes. \nAnd Jacob rose up from Beersheba: and the sons of Israel carried Jacob their father, and their little ones, and their wives, in the wagons which Pharaoh had sent to carry him. \nAnd they took their cattle, and their goods, which they had gotten in the land of Canaan, and came into Egypt, Jacob, and all his seed with him: \nHis sons, and his sons' sons with him, his daughters, and his sons' daughters, and all his seed brought he with him into Egypt. \nAnd these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn. \nAnd the sons of Reuben; Hanoch, and Phallu, and Hezron, and Carmi. \nAnd the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman. \nAnd the sons of Levi; Gershon, Kohath, and Merari. \nAnd the sons of Judah; Er, and Onan, and Shelah, and Pharez, and Zarah: but Er and Onan died in the land of Canaan. And the sons of Pharez were Hezron and Hamul. \nAnd the sons of Issachar; Tola, and Phuvah, and Job, and Shimron. \nAnd the sons of Zebulun; Sered, and Elon, and Jahleel. \nThese be the sons of Leah, which she bare unto Jacob in Padanaram, with his daughter Dinah: all the souls of his sons and his daughters were thirty and three. \nAnd the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli. \nAnd the sons of Asher; Jimnah, and Ishuah, and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel. \nThese are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls. \nThe sons of Rachel Jacob's wife; Joseph, and Benjamin. \nAnd unto Joseph in the land of Egypt were born Manasseh and Ephraim, which Asenath the daughter of Potipherah priest of On bare unto him. \nAnd the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard. \nThese are the sons of Rachel, which were born to Jacob: all the souls were fourteen. \nAnd the sons of Dan; Hushim. \nAnd the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem. \nThese are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven. \nAll the souls that came with Jacob into Egypt, which came out of his loins, besides Jacob's sons' wives, all the souls were threescore and six; \nAnd the sons of Joseph, which were born him in Egypt, were two souls: all the souls of the house of Jacob, which came into Egypt, were threescore and ten. \nAnd he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen. \nAnd Joseph made ready his chariot, and went up to meet Israel his father, to Goshen, and presented himself unto him; and he fell on his neck, and wept on his neck a good while. \nAnd Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive. \nAnd Joseph said unto his brethren, and unto his father's house, I will go up, and shew Pharaoh, and say unto him, My brethren, and my father's house, which were in the land of Canaan, are come unto me; \nAnd the men are shepherds, for their trade hath been to feed cattle; and they have brought their flocks, and their herds, and all that they have. \nAnd it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation? \nThat ye shall say, Thy servants' trade hath been about cattle from our youth even until now, both we, and also our fathers: that ye may dwell in the land of Goshen; for every shepherd is an abomination unto the Egyptians. \nThen Joseph came and told Pharaoh, and said, My father and my brethren, and their flocks, and their herds, and all that they have, are come out of the land of Canaan; and, behold, they are in the land of Goshen. \nAnd he took some of his brethren, even five men, and presented them unto Pharaoh. \nAnd Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers. \nThey said morever unto Pharaoh, For to sojourn in the land are we come; for thy servants have no pasture for their flocks; for the famine is sore in the land of Canaan: now therefore, we pray thee, let thy servants dwell in the land of Goshen. \nAnd Pharaoh spake unto Joseph, saying, Thy father and thy brethren are come unto thee: \nThe land of Egypt is before thee; in the best of the land make thy father and brethren to dwell; in the land of Goshen let them dwell: and if thou knowest any men of activity among them, then make them rulers over my cattle. \nAnd Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh. \nAnd Pharaoh said unto Jacob, How old art thou? \nAnd Jacob said unto Pharaoh, The days of the years of my pilgrimage are an hundred and thirty years: few and evil have the days of the years of my life been, and have not attained unto the days of the years of the life of my fathers in the days of their pilgrimage. \nAnd Jacob blessed Pharaoh, and went out from before Pharaoh. \nAnd Joseph placed his father and his brethren, and gave them a possession in the land of Egypt, in the best of the land, in the land of Rameses, as Pharaoh had commanded. \nAnd Joseph nourished his father, and his brethren, and all his father's household, with bread, according to their families. \nAnd there was no bread in all the land; for the famine was very sore, so that the land of Egypt and all the land of Canaan fainted by reason of the famine. \nAnd Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the corn which they bought: and Joseph brought the money into Pharaoh's house. \nAnd when money failed in the land of Egypt, and in the land of Canaan, all the Egyptians came unto Joseph, and said, Give us bread: for why should we die in thy presence? for the money faileth. \nAnd Joseph said, Give your cattle; and I will give you for your cattle, if money fail. \nAnd they brought their cattle unto Joseph: and Joseph gave them bread in exchange for horses, and for the flocks, and for the cattle of the herds, and for the asses: and he fed them with bread for all their cattle for that year. \nWhen that year was ended, they came unto him the second year, and said unto him, We will not hide it from my lord, how that our money is spent; my lord also hath our herds of cattle; there is not ought left in the sight of my lord, but our bodies, and our lands: \nWherefore shall we die before thine eyes, both we and our land? buy us and our land for bread, and we and our land will be servants unto Pharaoh: and give us seed, that we may live, and not die, that the land be not desolate. \nAnd Joseph bought all the land of Egypt for Pharaoh; for the Egyptians sold every man his field, because the famine prevailed over them: so the land became Pharaoh's. \nAnd as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof. \nOnly the land of the priests bought he not; for the priests had a portion assigned them of Pharaoh, and did eat their portion which Pharaoh gave them: wherefore they sold not their lands. \nThen Joseph said unto the people, Behold, I have bought you this day and your land for Pharaoh: lo, here is seed for you, and ye shall sow the land. \nAnd it shall come to pass in the increase, that ye shall give the fifth part unto Pharaoh, and four parts shall be your own, for seed of the field, and for your food, and for them of your households, and for food for your little ones. \nAnd they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh's servants. \nAnd Joseph made it a law over the land of Egypt unto this day, that Pharaoh should have the fifth part, except the land of the priests only, which became not Pharaoh's. \nAnd Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly. \nAnd Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years. \nAnd the time drew nigh that Israel must die: and he called his son Joseph, and said unto him, If now I have found grace in thy sight, put, I pray thee, thy hand under my thigh, and deal kindly and truly with me; bury me not, I pray thee, in Egypt: \nBut I will lie with my fathers, and thou shalt carry me out of Egypt, and bury me in their buryingplace. And he said, I will do as thou hast said. \nAnd he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed's head. \nAnd it came to pass after these things, that one told Joseph, Behold, thy father is sick: and he took with him his two sons, Manasseh and Ephraim. \nAnd one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed. \nAnd Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me, \nAnd said unto me, Behold, I will make thee fruitful, and multiply thee, and I will make of thee a multitude of people; and will give this land to thy seed after thee for an everlasting possession. \nAnd now thy two sons, Ephraim and Manasseh, which were born unto thee in the land of Egypt before I came unto thee into Egypt, are mine; as Reuben and Simeon, they shall be mine. \nAnd thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance. \nAnd as for me, when I came from Padan, Rachel died by me in the land of Canaan in the way, when yet there was but a little way to come unto Ephrath: and I buried her there in the way of Ephrath; the same is Bethlehem. \nAnd Israel beheld Joseph's sons, and said, Who are these? \nAnd Joseph said unto his father, They are my sons, whom God hath given me in this place. And he said, Bring them, I pray thee, unto me, and I will bless them. \nNow the eyes of Israel were dim for age, so that he could not see. And he brought them near unto him; and he kissed them, and embraced them. \nAnd Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath shewed me also thy seed. \nAnd Joseph brought them out from between his knees, and he bowed himself with his face to the earth. \nAnd Joseph took them both, Ephraim in his right hand toward Israel's left hand, and Manasseh in his left hand toward Israel's right hand, and brought them near unto him. \nAnd Israel stretched out his right hand, and laid it upon Ephraim's head, who was the younger, and his left hand upon Manasseh's head, guiding his hands wittingly; for Manasseh was the firstborn. \nAnd he blessed Joseph, and said, God, before whom my fathers Abraham and Isaac did walk, the God which fed me all my life long unto this day, \nThe Angel which redeemed me from all evil, bless the lads; and let my name be named on them, and the name of my fathers Abraham and Isaac; and let them grow into a multitude in the midst of the earth. \nAnd when Joseph saw that his father laid his right hand upon the head of Ephraim, it displeased him: and he held up his father's hand, to remove it from Ephraim's head unto Manasseh's head. \nAnd Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head. \nAnd his father refused, and said, I know it, my son, I know it: he also shall become a people, and he also shall be great: but truly his younger brother shall be greater than he, and his seed shall become a multitude of nations. \nAnd he blessed them that day, saying, In thee shall Israel bless, saying, God make thee as Ephraim and as Manasseh: and he set Ephraim before Manasseh. \nAnd Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers. \nMoreover I have given to thee one portion above thy brethren, which I took out of the hand of the Amorite with my sword and with my bow. \nAnd Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days. \nGather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father. \nReuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power: \nUnstable as water, thou shalt not excel; because thou wentest up to thy father's bed; then defiledst thou it: he went up to my couch. \nSimeon and Levi are brethren; instruments of cruelty are in their habitations. \nO my soul, come not thou into their secret; unto their assembly, mine honour, be not thou united: for in their anger they slew a man, and in their selfwill they digged down a wall. \nCursed be their anger, for it was fierce; and their wrath, for it was cruel: I will divide them in Jacob, and scatter them in Israel. \nJudah, thou art he whom thy brethren shall praise: thy hand shall be in the neck of thine enemies; thy father's children shall bow down before thee. \nJudah is a lion's whelp: from the prey, my son, thou art gone up: he stooped down, he couched as a lion, and as an old lion; who shall rouse him up? \nThe sceptre shall not depart from Judah, nor a lawgiver from between his feet, until Shiloh come; and unto him shall the gathering of the people be. \nBinding his foal unto the vine, and his ass's colt unto the choice vine; he washed his garments in wine, and his clothes in the blood of grapes: \nHis eyes shall be red with wine, and his teeth white with milk. \nZebulun shall dwell at the haven of the sea; and he shall be for an haven of ships; and his border shall be unto Zidon. \nIssachar is a strong ass couching down between two burdens: \nAnd he saw that rest was good, and the land that it was pleasant; and bowed his shoulder to bear, and became a servant unto tribute. \nDan shall judge his people, as one of the tribes of Israel. \nDan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward. \nI have waited for thy salvation, O LORD. \nGad, a troop shall overcome him: but he shall overcome at the last. \nOut of Asher his bread shall be fat, and he shall yield royal dainties. \nNaphtali is a hind let loose: he giveth goodly words. \nJoseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall: \nThe archers have sorely grieved him, and shot at him, and hated him: \nBut his bow abode in strength, and the arms of his hands were made strong by the hands of the mighty God of Jacob; (from thence is the shepherd, the stone of Israel:) \nEven by the God of thy father, who shall help thee; and by the Almighty, who shall bless thee with blessings of heaven above, blessings of the deep that lieth under, blessings of the breasts, and of the womb: \nThe blessings of thy father have prevailed above the blessings of my progenitors unto the utmost bound of the everlasting hills: they shall be on the head of Joseph, and on the crown of the head of him that was separate from his brethren. \nBenjamin shall ravin as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil. \nAll these are the twelve tribes of Israel: and this is it that their father spake unto them, and blessed them; every one according to his blessing he blessed them. \nAnd he charged them, and said unto them, I am to be gathered unto my people: bury me with my fathers in the cave that is in the field of Ephron the Hittite, \nIn the cave that is in the field of Machpelah, which is before Mamre, in the land of Canaan, which Abraham bought with the field of Ephron the Hittite for a possession of a buryingplace. \nThere they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah. \nThe purchase of the field and of the cave that is therein was from the children of Heth. \nAnd when Jacob had made an end of commanding his sons, he gathered up his feet into the bed, and yielded up the ghost, and was gathered unto his people. \nAnd Joseph fell upon his father's face, and wept upon him, and kissed him. \nAnd Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel. \nAnd forty days were fulfilled for him; for so are fulfilled the days of those which are embalmed: and the Egyptians mourned for him threescore and ten days. \nAnd when the days of his mourning were past, Joseph spake unto the house of Pharaoh, saying, If now I have found grace in your eyes, speak, I pray you, in the ears of Pharaoh, saying, \nMy father made me swear, saying, Lo, I die: in my grave which I have digged for me in the land of Canaan, there shalt thou bury me. Now therefore let me go up, I pray thee, and bury my father, and I will come again. \nAnd Pharaoh said, Go up, and bury thy father, according as he made thee swear. \nAnd Joseph went up to bury his father: and with him went up all the servants of Pharaoh, the elders of his house, and all the elders of the land of Egypt, \nAnd all the house of Joseph, and his brethren, and his father's house: only their little ones, and their flocks, and their herds, they left in the land of Goshen. \nAnd there went up with him both chariots and horsemen: and it was a very great company. \nAnd they came to the threshingfloor of Atad, which is beyond Jordan, and there they mourned with a great and very sore lamentation: and he made a mourning for his father seven days. \nAnd when the inhabitants of the land, the Canaanites, saw the mourning in the floor of Atad, they said, This is a grievous mourning to the Egyptians: wherefore the name of it was called Abelmizraim, which is beyond Jordan. \nAnd his sons did unto him according as he commanded them: \nFor his sons carried him into the land of Canaan, and buried him in the cave of the field of Machpelah, which Abraham bought with the field for a possession of a buryingplace of Ephron the Hittite, before Mamre. \nAnd Joseph returned into Egypt, he, and his brethren, and all that went up with him to bury his father, after he had buried his father. \nAnd when Joseph's brethren saw that their father was dead, they said, Joseph will peradventure hate us, and will certainly requite us all the evil which we did unto him. \nAnd they sent a messenger unto Joseph, saying, Thy father did command before he died, saying, \nSo shall ye say unto Joseph, Forgive, I pray thee now, the trespass of thy brethren, and their sin; for they did unto thee evil: and now, we pray thee, forgive the trespass of the servants of the God of thy father. And Joseph wept when they spake unto him. \nAnd his brethren also went and fell down before his face; and they said, Behold, we be thy servants. \nAnd Joseph said unto them, Fear not: for am I in the place of God? \nBut as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive. \nNow therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them. \nAnd Joseph dwelt in Egypt, he, and his father's house: and Joseph lived an hundred and ten years. \nAnd Joseph saw Ephraim's children of the third generation: the children also of Machir the son of Manasseh were brought up upon Joseph's knees. \nAnd Joseph said unto his brethren, I die: and God will surely visit you, and bring you out of this land unto the land which he sware to Abraham, to Isaac, and to Jacob. \nAnd Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence. \nSo Joseph died, being an hundred and ten years old: and they embalmed him, and he was put in a coffin in Egypt. \nNow these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob. \nReuben, Simeon, Levi, and Judah, \nIssachar, Zebulun, and Benjamin, \nDan, and Naphtali, Gad, and Asher. \nAnd all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already. \nAnd Joseph died, and all his brethren, and all that generation. \nAnd the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them. \nNow there arose up a new king over Egypt, which knew not Joseph. \nAnd he said unto his people, Behold, the people of the children of Israel are more and mightier than we: \nCome on, let us deal wisely with them; lest they multiply, and it come to pass, that, when there falleth out any war, they join also unto our enemies, and fight against us, and so get them up out of the land. \nTherefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses. \nBut the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel. \nAnd the Egyptians made the children of Israel to serve with rigour: \nAnd they made their lives bitter with hard bondage, in morter, and in brick, and in all manner of service in the field: all their service, wherein they made them serve, was with rigour. \nAnd the king of Egypt spake to the Hebrew midwives, of which the name of the one was Shiphrah, and the name of the other Puah: \nAnd he said, When ye do the office of a midwife to the Hebrew women, and see them upon the stools; if it be a son, then ye shall kill him: but if it be a daughter, then she shall live. \nBut the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive. \nAnd the king of Egypt called for the midwives, and said unto them, Why have ye done this thing, and have saved the men children alive? \nAnd the midwives said unto Pharaoh, Because the Hebrew women are not as the Egyptian women; for they are lively, and are delivered ere the midwives come in unto them. \nTherefore God dealt well with the midwives: and the people multiplied, and waxed very mighty. \nAnd it came to pass, because the midwives feared God, that he made them houses. \nAnd Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive. \nAnd there went a man of the house of Levi, and took to wife a daughter of Levi. \nAnd the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months. \nAnd when she could not longer hide him, she took for him an ark of bulrushes, and daubed it with slime and with pitch, and put the child therein; and she laid it in the flags by the river's brink. \nAnd his sister stood afar off, to wit what would be done to him. \nAnd the daughter of Pharaoh came down to wash herself at the river; and her maidens walked along by the river's side; and when she saw the ark among the flags, she sent her maid to fetch it. \nAnd when she had opened it, she saw the child: and, behold, the babe wept. And she had compassion on him, and said, This is one of the Hebrews' children. \nThen said his sister to Pharaoh's daughter, Shall I go and call to thee a nurse of the Hebrew women, that she may nurse the child for thee? \nAnd Pharaoh's daughter said to her, Go. And the maid went and called the child's mother. \nAnd Pharaoh's daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the women took the child, and nursed it. \nAnd the child grew, and she brought him unto Pharaoh's daughter, and he became her son. And she called his name Moses: and she said, Because I drew him out of the water. \nAnd it came to pass in those days, when Moses was grown, that he went out unto his brethren, and looked on their burdens: and he spied an Egyptian smiting an Hebrew, one of his brethren. \nAnd he looked this way and that way, and when he saw that there was no man, he slew the Egyptian, and hid him in the sand. \nAnd when he went out the second day, behold, two men of the Hebrews strove together: and he said to him that did the wrong, Wherefore smitest thou thy fellow? \nAnd he said, Who made thee a prince and a judge over us? intendest thou to kill me, as thou killedst the Egyptian? And Moses feared, and said, Surely this thing is known. \nNow when Pharaoh heard this thing, he sought to slay Moses. But Moses fled from the face of Pharaoh, and dwelt in the land of Midian: and he sat down by a well. \nNow the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock. \nAnd the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock. \nAnd when they came to Reuel their father, he said, How is it that ye are come so soon to day? \nAnd they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock. \nAnd he said unto his daughters, And where is he? why is it that ye have left the man? call him, that he may eat bread. \nAnd Moses was content to dwell with the man: and he gave Moses Zipporah his daughter. \nAnd she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land. \nAnd it came to pass in process of time, that the king of Egypt died: and the children of Israel sighed by reason of the bondage, and they cried, and their cry came up unto God by reason of the bondage. \nAnd God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob. \nAnd God looked upon the children of Israel, and God had respect unto them. \nNow Moses kept the flock of Jethro his father in law, the priest of Midian: and he led the flock to the backside of the desert, and came to the mountain of God, even to Horeb. \nAnd the angel of the LORD appeared unto him in a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fire, and the bush was not consumed. \nAnd Moses said, I will now turn aside, and see this great sight, why the bush is not burnt. \nAnd when the LORD saw that he turned aside to see, God called unto him out of the midst of the bush, and said, Moses, Moses. And he said, Here am I. \nAnd he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground. \nMoreover he said, I am the God of thy father, the God of Abraham, the God of Isaac, and the God of Jacob. And Moses hid his face; for he was afraid to look upon God. \nAnd the LORD said, I have surely seen the affliction of my people which are in Egypt, and have heard their cry by reason of their taskmasters; for I know their sorrows; \nAnd I am come down to deliver them out of the hand of the Egyptians, and to bring them up out of that land unto a good land and a large, unto a land flowing with milk and honey; unto the place of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites. \nNow therefore, behold, the cry of the children of Israel is come unto me: and I have also seen the oppression wherewith the Egyptians oppress them. \nCome now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt. \nAnd Moses said unto God, Who am I, that I should go unto Pharaoh, and that I should bring forth the children of Israel out of Egypt? \nAnd he said, Certainly I will be with thee; and this shall be a token unto thee, that I have sent thee: When thou hast brought forth the people out of Egypt, ye shall serve God upon this mountain. \nAnd Moses said unto God, Behold, when I come unto the children of Israel, and shall say unto them, The God of your fathers hath sent me unto you; and they shall say to me, What is his name? what shall I say unto them? \nAnd God said unto Moses, I AM THAT I AM: and he said, Thus shalt thou say unto the children of Israel, I AM hath sent me unto you. \nAnd God said moreover unto Moses, Thus shalt thou say unto the children of Israel, the LORD God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath sent me unto you: this is my name for ever, and this is my memorial unto all generations. \nGo, and gather the elders of Israel together, and say unto them, The LORD God of your fathers, the God of Abraham, of Isaac, and of Jacob, appeared unto me, saying, I have surely visited you, and seen that which is done to you in Egypt: \nAnd I have said, I will bring you up out of the affliction of Egypt unto the land of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, unto a land flowing with milk and honey. \nAnd they shall hearken to thy voice: and thou shalt come, thou and the elders of Israel, unto the king of Egypt, and ye shall say unto him, The LORD God of the Hebrews hath met with us: and now let us go, we beseech thee, three days' journey into the wilderness, that we may sacrifice to the LORD our God. \nAnd I am sure that the king of Egypt will not let you go, no, not by a mighty hand. \nAnd I will stretch out my hand, and smite Egypt with all my wonders which I will do in the midst thereof: and after that he will let you go. \nAnd I will give this people favour in the sight of the Egyptians: and it shall come to pass, that, when ye go, ye shall not go empty. \nBut every woman shall borrow of her neighbour, and of her that sojourneth in her house, jewels of silver, and jewels of gold, and raiment: and ye shall put them upon your sons, and upon your daughters; and ye shall spoil the Egyptians. \nAnd Moses answered and said, But, behold, they will not believe me, nor hearken unto my voice: for they will say, The LORD hath not appeared unto thee. \nAnd the LORD said unto him, What is that in thine hand? And he said, A rod. \nAnd he said, Cast it on the ground. And he cast it on the ground, and it became a serpent; and Moses fled from before it. \nAnd the LORD said unto Moses, Put forth thine hand, and take it by the tail. And he put forth his hand, and caught it, and it became a rod in his hand: \nThat they may believe that the LORD God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath appeared unto thee. \nAnd the LORD said furthermore unto him, Put now thine hand into thy bosom. And he put his hand into his bosom: and when he took it out, behold, his hand was leprous as snow. \nAnd he said, Put thine hand into thy bosom again. And he put his hand into his bosom again; and plucked it out of his bosom, and, behold, it was turned again as his other flesh. \nAnd it shall come to pass, if they will not believe thee, neither hearken to the voice of the first sign, that they will believe the voice of the latter sign. \nAnd it shall come to pass, if they will not believe also these two signs, neither hearken unto thy voice, that thou shalt take of the water of the river, and pour it upon the dry land: and the water which thou takest out of the river shall become blood upon the dry land. \nAnd Moses said unto the LORD, O my LORD, I am not eloquent, neither heretofore, nor since thou hast spoken unto thy servant: but I am slow of speech, and of a slow tongue. \nAnd the LORD said unto him, Who hath made man's mouth? or who maketh the dumb, or deaf, or the seeing, or the blind? have not I the LORD? \nNow therefore go, and I will be with thy mouth, and teach thee what thou shalt say. \nAnd he said, O my LORD, send, I pray thee, by the hand of him whom thou wilt send. \nAnd the anger of the LORD was kindled against Moses, and he said, Is not Aaron the Levite thy brother? I know that he can speak well. And also, behold, he cometh forth to meet thee: and when he seeth thee, he will be glad in his heart. \nAnd thou shalt speak unto him, and put words in his mouth: and I will be with thy mouth, and with his mouth, and will teach you what ye shall do. \nAnd he shall be thy spokesman unto the people: and he shall be, even he shall be to thee instead of a mouth, and thou shalt be to him instead of God. \nAnd thou shalt take this rod in thine hand, wherewith thou shalt do signs. \nAnd Moses went and returned to Jethro his father in law, and said unto him, Let me go, I pray thee, and return unto my brethren which are in Egypt, and see whether they be yet alive. And Jethro said to Moses, Go in peace. \nAnd the LORD said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life. \nAnd Moses took his wife and his sons, and set them upon an ass, and he returned to the land of Egypt: and Moses took the rod of God in his hand. \nAnd the LORD said unto Moses, When thou goest to return into Egypt, see that thou do all those wonders before Pharaoh, which I have put in thine hand: but I will harden his heart, that he shall not let the people go. \nAnd thou shalt say unto Pharaoh, Thus saith the LORD, Israel is my son, even my firstborn: \nAnd I say unto thee, Let my son go, that he may serve me: and if thou refuse to let him go, behold, I will slay thy son, even thy firstborn. \nAnd it came to pass by the way in the inn, that the LORD met him, and sought to kill him. \nThen Zipporah took a sharp stone, and cut off the foreskin of her son, and cast it at his feet, and said, Surely a bloody husband art thou to me. \nSo he let him go: then she said, A bloody husband thou art, because of the circumcision. \nAnd the LORD said to Aaron, Go into the wilderness to meet Moses. And he went, and met him in the mount of God, and kissed him. \nAnd Moses told Aaron all the words of the LORD who had sent him, and all the signs which he had commanded him. \nAnd Moses and Aaron went and gathered together all the elders of the children of Israel: \nAnd Aaron spake all the words which the LORD had spoken unto Moses, and did the signs in the sight of the people. \nAnd the people believed: and when they heard that the LORD had visited the children of Israel, and that he had looked upon their affliction, then they bowed their heads and worshipped. \nAnd afterward Moses and Aaron went in, and told Pharaoh, Thus saith the LORD God of Israel, Let my people go, that they may hold a feast unto me in the wilderness. \nAnd Pharaoh said, Who is the LORD, that I should obey his voice to let Israel go? I know not the LORD, neither will I let Israel go. \nAnd they said, The God of the Hebrews hath met with us: let us go, we pray thee, three days' journey into the desert, and sacrifice unto the LORD our God; lest he fall upon us with pestilence, or with the sword. \nAnd the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens. \nAnd Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens. \nAnd Pharaoh commanded the same day the taskmasters of the people, and their officers, saying, \nYe shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves. \nAnd the tale of the bricks, which they did make heretofore, ye shall lay upon them; ye shall not diminish ought thereof: for they be idle; therefore they cry, saying, Let us go and sacrifice to our God. \nLet there more work be laid upon the men, that they may labour therein; and let them not regard vain words. \nAnd the taskmasters of the people went out, and their officers, and they spake to the people, saying, Thus saith Pharaoh, I will not give you straw. \nGo ye, get you straw where ye can find it: yet not ought of your work shall be diminished. \nSo the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw. \nAnd the taskmasters hasted them, saying, Fulfil your works, your daily tasks, as when there was straw. \nAnd the officers of the children of Israel, which Pharaoh's taskmasters had set over them, were beaten, and demanded, Wherefore have ye not fulfilled your task in making brick both yesterday and to day, as heretofore? \nThen the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants? \nThere is no straw given unto thy servants, and they say to us, Make brick: and, behold, thy servants are beaten; but the fault is in thine own people. \nBut he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the LORD. \nGo therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks. \nAnd the officers of the children of Israel did see that they were in evil case, after it was said, Ye shall not minish ought from your bricks of your daily task. \nAnd they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh: \nAnd they said unto them, The LORD look upon you, and judge; because ye have made our savour to be abhorred in the eyes of Pharaoh, and in the eyes of his servants, to put a sword in their hand to slay us. \nAnd Moses returned unto the LORD, and said, LORD, wherefore hast thou so evil entreated this people? why is it that thou hast sent me? \nFor since I came to Pharaoh to speak in thy name, he hath done evil to this people; neither hast thou delivered thy people at all. \nThen the LORD said unto Moses, Now shalt thou see what I will do to Pharaoh: for with a strong hand shall he let them go, and with a strong hand shall he drive them out of his land. \nAnd God spake unto Moses, and said unto him, I am the LORD: \nAnd I appeared unto Abraham, unto Isaac, and unto Jacob, by the name of God Almighty, but by my name JEHOVAH was I not known to them. \nAnd I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers. \nAnd I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant. \nWherefore say unto the children of Israel, I am the LORD, and I will bring you out from under the burdens of the Egyptians, and I will rid you out of their bondage, and I will redeem you with a stretched out arm, and with great judgments: \nAnd I will take you to me for a people, and I will be to you a God: and ye shall know that I am the LORD your God, which bringeth you out from under the burdens of the Egyptians. \nAnd I will bring you in unto the land, concerning the which I did swear to give it to Abraham, to Isaac, and to Jacob; and I will give it you for an heritage: I am the LORD. \nAnd Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage. \nAnd the LORD spake unto Moses, saying, \nGo in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land. \nAnd Moses spake before the LORD, saying, Behold, the children of Israel have not hearkened unto me; how then shall Pharaoh hear me, who am of uncircumcised lips? \nAnd the LORD spake unto Moses and unto Aaron, and gave them a charge unto the children of Israel, and unto Pharaoh king of Egypt, to bring the children of Israel out of the land of Egypt. \nThese be the heads of their fathers' houses: The sons of Reuben the firstborn of Israel; Hanoch, and Pallu, Hezron, and Carmi: these be the families of Reuben. \nAnd the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman: these are the families of Simeon. \nAnd these are the names of the sons of Levi according to their generations; Gershon, and Kohath, and Merari: and the years of the life of Levi were an hundred thirty and seven years. \nThe sons of Gershon; Libni, and Shimi, according to their families. \nAnd the sons of Kohath; Amram, and Izhar, and Hebron, and Uzziel: and the years of the life of Kohath were an hundred thirty and three years. \nAnd the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations. \nAnd Amram took him Jochebed his father's sister to wife; and she bare him Aaron and Moses: and the years of the life of Amram were an hundred and thirty and seven years. \nAnd the sons of Izhar; Korah, and Nepheg, and Zichri. \nAnd the sons of Uzziel; Mishael, and Elzaphan, and Zithri. \nAnd Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar. \nAnd the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites. \nAnd Eleazar Aaron's son took him one of the daughters of Putiel to wife; and she bare him Phinehas: these are the heads of the fathers of the Levites according to their families. \nThese are that Aaron and Moses, to whom the LORD said, Bring out the children of Israel from the land of Egypt according to their armies. \nThese are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron. \nAnd it came to pass on the day when the LORD spake unto Moses in the land of Egypt, \nThat the LORD spake unto Moses, saying, I am the LORD: speak thou unto Pharaoh king of Egypt all that I say unto thee. \nAnd Moses said before the LORD, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me? \nAnd the LORD said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet. \nThou shalt speak all that I command thee: and Aaron thy brother shall speak unto Pharaoh, that he send the children of Israel out of his land. \nAnd I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt. \nBut Pharaoh shall not hearken unto you, that I may lay my hand upon Egypt, and bring forth mine armies, and my people the children of Israel, out of the land of Egypt by great judgments. \nAnd the Egyptians shall know that I am the LORD, when I stretch forth mine hand upon Egypt, and bring out the children of Israel from among them. \nAnd Moses and Aaron did as the LORD commanded them, so did they. \nAnd Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nWhen Pharaoh shall speak unto you, saying, Shew a miracle for you: then thou shalt say unto Aaron, Take thy rod, and cast it before Pharaoh, and it shall become a serpent. \nAnd Moses and Aaron went in unto Pharaoh, and they did so as the LORD had commanded: and Aaron cast down his rod before Pharaoh, and before his servants, and it became a serpent. \nThen Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments. \nFor they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods. \nAnd he hardened Pharaoh's heart, that he hearkened not unto them; as the LORD had said. \nAnd the LORD said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go. \nGet thee unto Pharaoh in the morning; lo, he goeth out unto the water; and thou shalt stand by the river's brink against he come; and the rod which was turned to a serpent shalt thou take in thine hand. \nAnd thou shalt say unto him, The LORD God of the Hebrews hath sent me unto thee, saying, Let my people go, that they may serve me in the wilderness: and, behold, hitherto thou wouldest not hear. \nThus saith the LORD, In this thou shalt know that I am the LORD: behold, I will smite with the rod that is in mine hand upon the waters which are in the river, and they shall be turned to blood. \nAnd the fish that is in the river shall die, and the river shall stink; and the Egyptians shall lothe to drink of the water of the river. \nAnd the LORD spake unto Moses, Say unto Aaron, Take thy rod, and stretch out thine hand upon the waters of Egypt, upon their streams, upon their rivers, and upon their ponds, and upon all their pools of water, that they may become blood; and that there may be blood throughout all the land of Egypt, both in vessels of wood, and in vessels of stone. \nAnd Moses and Aaron did so, as the LORD commanded; and he lifted up the rod, and smote the waters that were in the river, in the sight of Pharaoh, and in the sight of his servants; and all the waters that were in the river were turned to blood. \nAnd the fish that was in the river died; and the river stank, and the Egyptians could not drink of the water of the river; and there was blood throughout all the land of Egypt. \nAnd the magicians of Egypt did so with their enchantments: and Pharaoh's heart was hardened, neither did he hearken unto them; as the LORD had said. \nAnd Pharaoh turned and went into his house, neither did he set his heart to this also. \nAnd all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river. \nAnd seven days were fulfilled, after that the LORD had smitten the river. \nAnd the LORD spake unto Moses, Go unto Pharaoh, and say unto him, Thus saith the LORD, Let my people go, that they may serve me. \nAnd if thou refuse to let them go, behold, I will smite all thy borders with frogs: \nAnd the river shall bring forth frogs abundantly, which shall go up and come into thine house, and into thy bedchamber, and upon thy bed, and into the house of thy servants, and upon thy people, and into thine ovens, and into thy kneadingtroughs: \nAnd the frogs shall come up both on thee, and upon thy people, and upon all thy servants. \nAnd the LORD spake unto Moses, Say unto Aaron, Stretch forth thine hand with thy rod over the streams, over the rivers, and over the ponds, and cause frogs to come up upon the land of Egypt. \nAnd Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt. \nAnd the magicians did so with their enchantments, and brought up frogs upon the land of Egypt. \nThen Pharaoh called for Moses and Aaron, and said, Intreat the LORD, that he may take away the frogs from me, and from my people; and I will let the people go, that they may do sacrifice unto the LORD. \nAnd Moses said unto Pharaoh, Glory over me: when shall I intreat for thee, and for thy servants, and for thy people, to destroy the frogs from thee and thy houses, that they may remain in the river only? \nAnd he said, To morrow. And he said, Be it according to thy word: that thou mayest know that there is none like unto the LORD our God. \nAnd the frogs shall depart from thee, and from thy houses, and from thy servants, and from thy people; they shall remain in the river only. \nAnd Moses and Aaron went out from Pharaoh: and Moses cried unto the LORD because of the frogs which he had brought against Pharaoh. \nAnd the LORD did according to the word of Moses; and the frogs died out of the houses, out of the villages, and out of the fields. \nAnd they gathered them together upon heaps: and the land stank. \nBut when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the LORD had said. \nAnd the LORD said unto Moses, Say unto Aaron, Stretch out thy rod, and smite the dust of the land, that it may become lice throughout all the land of Egypt. \nAnd they did so; for Aaron stretched out his hand with his rod, and smote the dust of the earth, and it became lice in man, and in beast; all the dust of the land became lice throughout all the land of Egypt. \nAnd the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast. \nThen the magicians said unto Pharaoh, This is the finger of God: and Pharaoh's heart was hardened, and he hearkened not unto them; as the LORD had said. \nAnd the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh; lo, he cometh forth to the water; and say unto him, Thus saith the LORD, Let my people go, that they may serve me. \nElse, if thou wilt not let my people go, behold, I will send swarms of flies upon thee, and upon thy servants, and upon thy people, and into thy houses: and the houses of the Egyptians shall be full of swarms of flies, and also the ground whereon they are. \nAnd I will sever in that day the land of Goshen, in which my people dwell, that no swarms of flies shall be there; to the end thou mayest know that I am the LORD in the midst of the earth. \nAnd I will put a division between my people and thy people: to morrow shall this sign be. \nAnd the LORD did so; and there came a grievous swarm of flies into the house of Pharaoh, and into his servants' houses, and into all the land of Egypt: the land was corrupted by reason of the swarm of flies. \nAnd Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land. \nAnd Moses said, It is not meet so to do; for we shall sacrifice the abomination of the Egyptians to the LORD our God: lo, shall we sacrifice the abomination of the Egyptians before their eyes, and will they not stone us? \nWe will go three days' journey into the wilderness, and sacrifice to the LORD our God, as he shall command us. \nAnd Pharaoh said, I will let you go, that ye may sacrifice to the LORD your God in the wilderness; only ye shall not go very far away: intreat for me. \nAnd Moses said, Behold, I go out from thee, and I will intreat the LORD that the swarms of flies may depart from Pharaoh, from his servants, and from his people, to morrow: but let not Pharaoh deal deceitfully any more in not letting the people go to sacrifice to the LORD. \nAnd Moses went out from Pharaoh, and intreated the LORD. \nAnd the LORD did according to the word of Moses; and he removed the swarms of flies from Pharaoh, from his servants, and from his people; there remained not one. \nAnd Pharaoh hardened his heart at this time also, neither would he let the people go. \nThen the LORD said unto Moses, Go in unto Pharaoh, and tell him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me. \nFor if thou refuse to let them go, and wilt hold them still, \nBehold, the hand of the LORD is upon thy cattle which is in the field, upon the horses, upon the asses, upon the camels, upon the oxen, and upon the sheep: there shall be a very grievous murrain. \nAnd the LORD shall sever between the cattle of Israel and the cattle of Egypt: and there shall nothing die of all that is the children's of Israel. \nAnd the LORD appointed a set time, saying, To morrow the LORD shall do this thing in the land. \nAnd the LORD did that thing on the morrow, and all the cattle of Egypt died: but of the cattle of the children of Israel died not one. \nAnd Pharaoh sent, and, behold, there was not one of the cattle of the Israelites dead. And the heart of Pharaoh was hardened, and he did not let the people go. \nAnd the LORD said unto Moses and unto Aaron, Take to you handfuls of ashes of the furnace, and let Moses sprinkle it toward the heaven in the sight of Pharaoh. \nAnd it shall become small dust in all the land of Egypt, and shall be a boil breaking forth with blains upon man, and upon beast, throughout all the land of Egypt. \nAnd they took ashes of the furnace, and stood before Pharaoh; and Moses sprinkled it up toward heaven; and it became a boil breaking forth with blains upon man, and upon beast. \nAnd the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians. \nAnd the LORD hardened the heart of Pharaoh, and he hearkened not unto them; as the LORD had spoken unto Moses. \nAnd the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh, and say unto him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me. \nFor I will at this time send all my plagues upon thine heart, and upon thy servants, and upon thy people; that thou mayest know that there is none like me in all the earth. \nFor now I will stretch out my hand, that I may smite thee and thy people with pestilence; and thou shalt be cut off from the earth. \nAnd in very deed for this cause have I raised thee up, for to shew in thee my power; and that my name may be declared throughout all the earth. \nAs yet exaltest thou thyself against my people, that thou wilt not let them go? \nBehold, to morrow about this time I will cause it to rain a very grievous hail, such as hath not been in Egypt since the foundation thereof even until now. \nSend therefore now, and gather thy cattle, and all that thou hast in the field; for upon every man and beast which shall be found in the field, and shall not be brought home, the hail shall come down upon them, and they shall die. \nHe that feared the word of the LORD among the servants of Pharaoh made his servants and his cattle flee into the houses: \nAnd he that regarded not the word of the LORD left his servants and his cattle in the field. \nAnd the LORD said unto Moses, Stretch forth thine hand toward heaven, that there may be hail in all the land of Egypt, upon man, and upon beast, and upon every herb of the field, throughout the land of Egypt. \nAnd Moses stretched forth his rod toward heaven: and the LORD sent thunder and hail, and the fire ran along upon the ground; and the LORD rained hail upon the land of Egypt. \nSo there was hail, and fire mingled with the hail, very grievous, such as there was none like it in all the land of Egypt since it became a nation. \nAnd the hail smote throughout all the land of Egypt all that was in the field, both man and beast; and the hail smote every herb of the field, and brake every tree of the field. \nOnly in the land of Goshen, where the children of Israel were, was there no hail. \nAnd Pharaoh sent, and called for Moses and Aaron, and said unto them, I have sinned this time: the LORD is righteous, and I and my people are wicked. \nIntreat the LORD (for it is enough) that there be no more mighty thunderings and hail; and I will let you go, and ye shall stay no longer. \nAnd Moses said unto him, As soon as I am gone out of the city, I will spread abroad my hands unto the LORD; and the thunder shall cease, neither shall there be any more hail; that thou mayest know how that the earth is the LORD's. \nBut as for thee and thy servants, I know that ye will not yet fear the LORD God. \nAnd the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled. \nBut the wheat and the rie were not smitten: for they were not grown up. \nAnd Moses went out of the city from Pharaoh, and spread abroad his hands unto the LORD: and the thunders and hail ceased, and the rain was not poured upon the earth. \nAnd when Pharaoh saw that the rain and the hail and the thunders were ceased, he sinned yet more, and hardened his heart, he and his servants. \nAnd the heart of Pharaoh was hardened, neither would he let the children of Israel go; as the LORD had spoken by Moses. \nAnd the LORD said unto Moses, Go in unto Pharaoh: for I have hardened his heart, and the heart of his servants, that I might shew these my signs before him: \nAnd that thou mayest tell in the ears of thy son, and of thy son's son, what things I have wrought in Egypt, and my signs which I have done among them; that ye may know how that I am the LORD. \nAnd Moses and Aaron came in unto Pharaoh, and said unto him, Thus saith the LORD God of the Hebrews, How long wilt thou refuse to humble thyself before me? let my people go, that they may serve me. \nElse, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast: \nAnd they shall cover the face of the earth, that one cannot be able to see the earth: and they shall eat the residue of that which is escaped, which remaineth unto you from the hail, and shall eat every tree which groweth for you out of the field: \nAnd they shall fill thy houses, and the houses of all thy servants, and the houses of all the Egyptians; which neither thy fathers, nor thy fathers' fathers have seen, since the day that they were upon the earth unto this day. And he turned himself, and went out from Pharaoh. \nAnd Pharaoh's servants said unto him, How long shall this man be a snare unto us? let the men go, that they may serve the LORD their God: knowest thou not yet that Egypt is destroyed? \nAnd Moses and Aaron were brought again unto Pharaoh: and he said unto them, Go, serve the LORD your God: but who are they that shall go? \nAnd Moses said, We will go with our young and with our old, with our sons and with our daughters, with our flocks and with our herds will we go; for we must hold a feast unto the LORD. \nAnd he said unto them, Let the LORD be so with you, as I will let you go, and your little ones: look to it; for evil is before you. \nNot so: go now ye that are men, and serve the LORD; for that ye did desire. And they were driven out from Pharaoh's presence. \nAnd the LORD said unto Moses, Stretch out thine hand over the land of Egypt for the locusts, that they may come up upon the land of Egypt, and eat every herb of the land, even all that the hail hath left. \nAnd Moses stretched forth his rod over the land of Egypt, and the LORD brought an east wind upon the land all that day, and all that night; and when it was morning, the east wind brought the locusts. \nAnd the locust went up over all the land of Egypt, and rested in all the coasts of Egypt: very grievous were they; before them there were no such locusts as they, neither after them shall be such. \nFor they covered the face of the whole earth, so that the land was darkened; and they did eat every herb of the land, and all the fruit of the trees which the hail had left: and there remained not any green thing in the trees, or in the herbs of the field, through all the land of Egypt. \nThen Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the LORD your God, and against you. \nNow therefore forgive, I pray thee, my sin only this once, and intreat the LORD your God, that he may take away from me this death only. \nAnd he went out from Pharaoh, and intreated the LORD. \nAnd the LORD turned a mighty strong west wind, which took away the locusts, and cast them into the Red sea; there remained not one locust in all the coasts of Egypt. \nBut the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go. \nAnd the LORD said unto Moses, Stretch out thine hand toward heaven, that there may be darkness over the land of Egypt, even darkness which may be felt. \nAnd Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days: \nThey saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings. \nAnd Pharaoh called unto Moses, and said, Go ye, serve the LORD; only let your flocks and your herds be stayed: let your little ones also go with you. \nAnd Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the LORD our God. \nOur cattle also shall go with us; there shall not an hoof be left behind; for thereof must we take to serve the LORD our God; and we know not with what we must serve the LORD, until we come thither. \nBut the LORD hardened Pharaoh's heart, and he would not let them go. \nAnd Pharaoh said unto him, Get thee from me, take heed to thyself, see my face no more; for in that day thou seest my face thou shalt die. \nAnd Moses said, Thou hast spoken well, I will see thy face again no more. \nAnd the LORD said unto Moses, Yet will I bring one plague more upon Pharaoh, and upon Egypt; afterwards he will let you go hence: when he shall let you go, he shall surely thrust you out hence altogether. \nSpeak now in the ears of the people, and let every man borrow of his neighbour, and every woman of her neighbour, jewels of silver and jewels of gold. \nAnd the LORD gave the people favour in the sight of the Egyptians. Moreover the man Moses was very great in the land of Egypt, in the sight of Pharaoh's servants, and in the sight of the people. \nAnd Moses said, Thus saith the LORD, About midnight will I go out into the midst of Egypt: \nAnd all the firstborn in the land of Egypt shall die, from the first born of Pharaoh that sitteth upon his throne, even unto the firstborn of the maidservant that is behind the mill; and all the firstborn of beasts. \nAnd there shall be a great cry throughout all the land of Egypt, such as there was none like it, nor shall be like it any more. \nBut against any of the children of Israel shall not a dog move his tongue, against man or beast: that ye may know how that the LORD doth put a difference between the Egyptians and Israel. \nAnd all these thy servants shall come down unto me, and bow down themselves unto me, saying, Get thee out, and all the people that follow thee: and after that I will go out. And he went out from Pharaoh in a great anger. \nAnd the LORD said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt. \nAnd Moses and Aaron did all these wonders before Pharaoh: and the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go out of his land. \nAnd the LORD spake unto Moses and Aaron in the land of Egypt saying, \nThis month shall be unto you the beginning of months: it shall be the first month of the year to you. \nSpeak ye unto all the congregation of Israel, saying, In the tenth day of this month they shall take to them every man a lamb, according to the house of their fathers, a lamb for an house: \nAnd if the household be too little for the lamb, let him and his neighbour next unto his house take it according to the number of the souls; every man according to his eating shall make your count for the lamb. \nYour lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats: \nAnd ye shall keep it up until the fourteenth day of the same month: and the whole assembly of the congregation of Israel shall kill it in the evening. \nAnd they shall take of the blood, and strike it on the two side posts and on the upper door post of the houses, wherein they shall eat it. \nAnd they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it. \nEat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof. \nAnd ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire. \nAnd thus shall ye eat it; with your loins girded, your shoes on your feet, and your staff in your hand; and ye shall eat it in haste: it is the LORD's passover. \nFor I will pass through the land of Egypt this night, and will smite all the firstborn in the land of Egypt, both man and beast; and against all the gods of Egypt I will execute judgment: I am the LORD. \nAnd the blood shall be to you for a token upon the houses where ye are: and when I see the blood, I will pass over you, and the plague shall not be upon you to destroy you, when I smite the land of Egypt. \nAnd this day shall be unto you for a memorial; and ye shall keep it a feast to the LORD throughout your generations; ye shall keep it a feast by an ordinance for ever. \nSeven days shall ye eat unleavened bread; even the first day ye shall put away leaven out of your houses: for whosoever eateth leavened bread from the first day until the seventh day, that soul shall be cut off from Israel. \nAnd in the first day there shall be an holy convocation, and in the seventh day there shall be an holy convocation to you; no manner of work shall be done in them, save that which every man must eat, that only may be done of you. \nAnd ye shall observe the feast of unleavened bread; for in this selfsame day have I brought your armies out of the land of Egypt: therefore shall ye observe this day in your generations by an ordinance for ever. \nIn the first month, on the fourteenth day of the month at even, ye shall eat unleavened bread, until the one and twentieth day of the month at even. \nSeven days shall there be no leaven found in your houses: for whosoever eateth that which is leavened, even that soul shall be cut off from the congregation of Israel, whether he be a stranger, or born in the land. \nYe shall eat nothing leavened; in all your habitations shall ye eat unleavened bread. \nThen Moses called for all the elders of Israel, and said unto them, Draw out and take you a lamb according to your families, and kill the passover. \nAnd ye shall take a bunch of hyssop, and dip it in the blood that is in the bason, and strike the lintel and the two side posts with the blood that is in the bason; and none of you shall go out at the door of his house until the morning. \nFor the LORD will pass through to smite the Egyptians; and when he seeth the blood upon the lintel, and on the two side posts, the LORD will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you. \nAnd ye shall observe this thing for an ordinance to thee and to thy sons for ever. \nAnd it shall come to pass, when ye be come to the land which the LORD will give you, according as he hath promised, that ye shall keep this service. \nAnd it shall come to pass, when your children shall say unto you, What mean ye by this service? \nThat ye shall say, It is the sacrifice of the LORD's passover, who passed over the houses of the children of Israel in Egypt, when he smote the Egyptians, and delivered our houses. And the people bowed the head and worshipped. \nAnd the children of Israel went away, and did as the LORD had commanded Moses and Aaron, so did they. \nAnd it came to pass, that at midnight the LORD smote all the firstborn in the land of Egypt, from the firstborn of Pharaoh that sat on his throne unto the firstborn of the captive that was in the dungeon; and all the firstborn of cattle. \nAnd Pharaoh rose up in the night, he, and all his servants, and all the Egyptians; and there was a great cry in Egypt; for there was not a house where there was not one dead. \nAnd he called for Moses and Aaron by night, and said, Rise up, and get you forth from among my people, both ye and the children of Israel; and go, serve the LORD, as ye have said. \nAlso take your flocks and your herds, as ye have said, and be gone; and bless me also. \nAnd the Egyptians were urgent upon the people, that they might send them out of the land in haste; for they said, We be all dead men. \nAnd the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders. \nAnd the children of Israel did according to the word of Moses; and they borrowed of the Egyptians jewels of silver, and jewels of gold, and raiment: \nAnd the LORD gave the people favour in the sight of the Egyptians, so that they lent unto them such things as they required. And they spoiled the Egyptians. \nAnd the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children. \nAnd a mixed multitude went up also with them; and flocks, and herds, even very much cattle. \nAnd they baked unleavened cakes of the dough which they brought forth out of Egypt, for it was not leavened; because they were thrust out of Egypt, and could not tarry, neither had they prepared for themselves any victual. \nNow the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years. \nAnd it came to pass at the end of the four hundred and thirty years, even the selfsame day it came to pass, that all the hosts of the LORD went out from the land of Egypt. \nIt is a night to be much observed unto the LORD for bringing them out from the land of Egypt: this is that night of the LORD to be observed of all the children of Israel in their generations. \nAnd the LORD said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof: \nBut every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof. \nA foreigner and an hired servant shall not eat thereof. \nIn one house shall it be eaten; thou shalt not carry forth ought of the flesh abroad out of the house; neither shall ye break a bone thereof. \nAll the congregation of Israel shall keep it. \nAnd when a stranger shall sojourn with thee, and will keep the passover to the LORD, let all his males be circumcised, and then let him come near and keep it; and he shall be as one that is born in the land: for no uncircumcised person shall eat thereof. \nOne law shall be to him that is homeborn, and unto the stranger that sojourneth among you. \nThus did all the children of Israel; as the LORD commanded Moses and Aaron, so did they. \nAnd it came to pass the selfsame day, that the LORD did bring the children of Israel out of the land of Egypt by their armies. \nAnd the LORD spake unto Moses, saying, \nSanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine. \nAnd Moses said unto the people, Remember this day, in which ye came out from Egypt, out of the house of bondage; for by strength of hand the LORD brought you out from this place: there shall no leavened bread be eaten. \nThis day came ye out in the month Abib. \nAnd it shall be when the LORD shall bring thee into the land of the Canaanites, and the Hittites, and the Amorites, and the Hivites, and the Jebusites, which he sware unto thy fathers to give thee, a land flowing with milk and honey, that thou shalt keep this service in this month. \nSeven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the LORD. \nUnleavened bread shall be eaten seven days; and there shall no leavened bread be seen with thee, neither shall there be leaven seen with thee in all thy quarters. \nAnd thou shalt shew thy son in that day, saying, This is done because of that which the LORD did unto me when I came forth out of Egypt. \nAnd it shall be for a sign unto thee upon thine hand, and for a memorial between thine eyes, that the LORD's law may be in thy mouth: for with a strong hand hath the LORD brought thee out of Egypt. \nThou shalt therefore keep this ordinance in his season from year to year. \nAnd it shall be when the LORD shall bring thee into the land of the Canaanites, as he sware unto thee and to thy fathers, and shall give it thee, \nThat thou shalt set apart unto the LORD all that openeth the matrix, and every firstling that cometh of a beast which thou hast; the males shall be the LORD's. \nAnd every firstling of an ass thou shalt redeem with a lamb; and if thou wilt not redeem it, then thou shalt break his neck: and all the firstborn of man among thy children shalt thou redeem. \nAnd it shall be when thy son asketh thee in time to come, saying, What is this? that thou shalt say unto him, By strength of hand the LORD brought us out from Egypt, from the house of bondage: \nAnd it came to pass, when Pharaoh would hardly let us go, that the LORD slew all the firstborn in the land of Egypt, both the firstborn of man, and the firstborn of beast: therefore I sacrifice to the LORD all that openeth the matrix, being males; but all the firstborn of my children I redeem. \nAnd it shall be for a token upon thine hand, and for frontlets between thine eyes: for by strength of hand the LORD brought us forth out of Egypt. \nAnd it came to pass, when Pharaoh had let the people go, that God led them not through the way of the land of the Philistines, although that was near; for God said, Lest peradventure the people repent when they see war, and they return to Egypt: \nBut God led the people about, through the way of the wilderness of the Red sea: and the children of Israel went up harnessed out of the land of Egypt. \nAnd Moses took the bones of Joseph with him: for he had straitly sworn the children of Israel, saying, God will surely visit you; and ye shall carry up my bones away hence with you. \nAnd they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness. \nAnd the LORD went before them by day in a pillar of a cloud, to lead them the way; and by night in a pillar of fire, to give them light; to go by day and night: \nHe took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, that they turn and encamp before Pihahiroth, between Migdol and the sea, over against Baalzephon: before it shall ye encamp by the sea. \nFor Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in. \nAnd I will harden Pharaoh's heart, that he shall follow after them; and I will be honoured upon Pharaoh, and upon all his host; that the Egyptians may know that I am the LORD. And they did so. \nAnd it was told the king of Egypt that the people fled: and the heart of Pharaoh and of his servants was turned against the people, and they said, Why have we done this, that we have let Israel go from serving us? \nAnd he made ready his chariot, and took his people with him: \nAnd he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them. \nAnd the LORD hardened the heart of Pharaoh king of Egypt, and he pursued after the children of Israel: and the children of Israel went out with an high hand. \nBut the Egyptians pursued after them, all the horses and chariots of Pharaoh, and his horsemen, and his army, and overtook them encamping by the sea, beside Pihahiroth, before Baalzephon. \nAnd when Pharaoh drew nigh, the children of Israel lifted up their eyes, and, behold, the Egyptians marched after them; and they were sore afraid: and the children of Israel cried out unto the LORD. \nAnd they said unto Moses, Because there were no graves in Egypt, hast thou taken us away to die in the wilderness? wherefore hast thou dealt thus with us, to carry us forth out of Egypt? \nIs not this the word that we did tell thee in Egypt, saying, Let us alone, that we may serve the Egyptians? For it had been better for us to serve the Egyptians, than that we should die in the wilderness. \nAnd Moses said unto the people, Fear ye not, stand still, and see the salvation of the LORD, which he will shew to you to day: for the Egyptians whom ye have seen to day, ye shall see them again no more for ever. \nThe LORD shall fight for you, and ye shall hold your peace. \nAnd the LORD said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward: \nBut lift thou up thy rod, and stretch out thine hand over the sea, and divide it: and the children of Israel shall go on dry ground through the midst of the sea. \nAnd I, behold, I will harden the hearts of the Egyptians, and they shall follow them: and I will get me honour upon Pharaoh, and upon all his host, upon his chariots, and upon his horsemen. \nAnd the Egyptians shall know that I am the LORD, when I have gotten me honour upon Pharaoh, upon his chariots, and upon his horsemen. \nAnd the angel of God, which went before the camp of Israel, removed and went behind them; and the pillar of the cloud went from before their face, and stood behind them: \nAnd it came between the camp of the Egyptians and the camp of Israel; and it was a cloud and darkness to them, but it gave light by night to these: so that the one came not near the other all the night. \nAnd Moses stretched out his hand over the sea; and the LORD caused the sea to go back by a strong east wind all that night, and made the sea dry land, and the waters were divided. \nAnd the children of Israel went into the midst of the sea upon the dry ground: and the waters were a wall unto them on their right hand, and on their left. \nAnd the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen. \nAnd it came to pass, that in the morning watch the LORD looked unto the host of the Egyptians through the pillar of fire and of the cloud, and troubled the host of the Egyptians, \nAnd took off their chariot wheels, that they drave them heavily: so that the Egyptians said, Let us flee from the face of Israel; for the LORD fighteth for them against the Egyptians. \nAnd the LORD said unto Moses, Stretch out thine hand over the sea, that the waters may come again upon the Egyptians, upon their chariots, and upon their horsemen. \nAnd Moses stretched forth his hand over the sea, and the sea returned to his strength when the morning appeared; and the Egyptians fled against it; and the LORD overthrew the Egyptians in the midst of the sea. \nAnd the waters returned, and covered the chariots, and the horsemen, and all the host of Pharaoh that came into the sea after them; there remained not so much as one of them. \nBut the children of Israel walked upon dry land in the midst of the sea; and the waters were a wall unto them on their right hand, and on their left. \nThus the LORD saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore. \nAnd Israel saw that great work which the LORD did upon the Egyptians: and the people feared the LORD, and believed the LORD, and his servant Moses. \nThen sang Moses and the children of Israel this song unto the LORD, and spake, saying, I will sing unto the LORD, for he hath triumphed gloriously: the horse and his rider hath he thrown into the sea. \nThe LORD is my strength and song, and he is become my salvation: he is my God, and I will prepare him an habitation; my father's God, and I will exalt him. \nThe LORD is a man of war: the LORD is his name. \nPharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea. \nThe depths have covered them: they sank into the bottom as a stone. \nThy right hand, O LORD, is become glorious in power: thy right hand, O LORD, hath dashed in pieces the enemy. \nAnd in the greatness of thine excellency thou hast overthrown them that rose up against thee: thou sentest forth thy wrath, which consumed them as stubble. \nAnd with the blast of thy nostrils the waters were gathered together, the floods stood upright as an heap, and the depths were congealed in the heart of the sea. \nThe enemy said, I will pursue, I will overtake, I will divide the spoil; my lust shall be satisfied upon them; I will draw my sword, my hand shall destroy them. \nThou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters. \nWho is like unto thee, O LORD, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders? \nThou stretchedst out thy right hand, the earth swallowed them. \nThou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation. \nThe people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina. \nThen the dukes of Edom shall be amazed; the mighty men of Moab, trembling shall take hold upon them; all the inhabitants of Canaan shall melt away. \nFear and dread shall fall upon them; by the greatness of thine arm they shall be as still as a stone; till thy people pass over, O LORD, till the people pass over, which thou hast purchased. \nThou shalt bring them in, and plant them in the mountain of thine inheritance, in the place, O LORD, which thou hast made for thee to dwell in, in the Sanctuary, O LORD, which thy hands have established. \nThe LORD shall reign for ever and ever. \nFor the horse of Pharaoh went in with his chariots and with his horsemen into the sea, and the LORD brought again the waters of the sea upon them; but the children of Israel went on dry land in the midst of the sea. \nAnd Miriam the prophetess, the sister of Aaron, took a timbrel in her hand; and all the women went out after her with timbrels and with dances. \nAnd Miriam answered them, Sing ye to the LORD, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea. \nSo Moses brought Israel from the Red sea, and they went out into the wilderness of Shur; and they went three days in the wilderness, and found no water. \nAnd when they came to Marah, they could not drink of the waters of Marah, for they were bitter: therefore the name of it was called Marah. \nAnd the people murmured against Moses, saying, What shall we drink? \nAnd he cried unto the LORD; and the LORD shewed him a tree, which when he had cast into the waters, the waters were made sweet: there he made for them a statute and an ordinance, and there he proved them, \nAnd said, If thou wilt diligently hearken to the voice of the LORD thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the LORD that healeth thee. \nAnd they came to Elim, where were twelve wells of water, and threescore and ten palm trees: and they encamped there by the waters. \nAnd they took their journey from Elim, and all the congregation of the children of Israel came unto the wilderness of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after their departing out of the land of Egypt. \nAnd the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness: \nAnd the children of Israel said unto them, Would to God we had died by the hand of the LORD in the land of Egypt, when we sat by the flesh pots, and when we did eat bread to the full; for ye have brought us forth into this wilderness, to kill this whole assembly with hunger. \nThen said the LORD unto Moses, Behold, I will rain bread from heaven for you; and the people shall go out and gather a certain rate every day, that I may prove them, whether they will walk in my law, or no. \nAnd it shall come to pass, that on the sixth day they shall prepare that which they bring in; and it shall be twice as much as they gather daily. \nAnd Moses and Aaron said unto all the children of Israel, At even, then ye shall know that the LORD hath brought you out from the land of Egypt: \nAnd in the morning, then ye shall see the glory of the LORD; for that he heareth your murmurings against the LORD: and what are we, that ye murmur against us? \nAnd Moses said, This shall be, when the LORD shall give you in the evening flesh to eat, and in the morning bread to the full; for that the LORD heareth your murmurings which ye murmur against him: and what are we? your murmurings are not against us, but against the LORD. \nAnd Moses spake unto Aaron, Say unto all the congregation of the children of Israel, Come near before the LORD: for he hath heard your murmurings. \nAnd it came to pass, as Aaron spake unto the whole congregation of the children of Israel, that they looked toward the wilderness, and, behold, the glory of the LORD appeared in the cloud. \nAnd the LORD spake unto Moses, saying, \nI have heard the murmurings of the children of Israel: speak unto them, saying, At even ye shall eat flesh, and in the morning ye shall be filled with bread; and ye shall know that I am the LORD your God. \nAnd it came to pass, that at even the quails came up, and covered the camp: and in the morning the dew lay round about the host. \nAnd when the dew that lay was gone up, behold, upon the face of the wilderness there lay a small round thing, as small as the hoar frost on the ground. \nAnd when the children of Israel saw it, they said one to another, It is manna: for they wist not what it was. And Moses said unto them, This is the bread which the LORD hath given you to eat. \nThis is the thing which the LORD hath commanded, Gather of it every man according to his eating, an omer for every man, according to the number of your persons; take ye every man for them which are in his tents. \nAnd the children of Israel did so, and gathered, some more, some less. \nAnd when they did mete it with an omer, he that gathered much had nothing over, and he that gathered little had no lack; they gathered every man according to his eating. \nAnd Moses said, Let no man leave of it till the morning. \nNotwithstanding they hearkened not unto Moses; but some of them left of it until the morning, and it bred worms, and stank: and Moses was wroth with them. \nAnd they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted. \nAnd it came to pass, that on the sixth day they gathered twice as much bread, two omers for one man: and all the rulers of the congregation came and told Moses. \nAnd he said unto them, This is that which the LORD hath said, To morrow is the rest of the holy sabbath unto the LORD: bake that which ye will bake to day, and seethe that ye will seethe; and that which remaineth over lay up for you to be kept until the morning. \nAnd they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein. \nAnd Moses said, Eat that to day; for to day is a sabbath unto the LORD: to day ye shall not find it in the field. \nSix days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none. \nAnd it came to pass, that there went out some of the people on the seventh day for to gather, and they found none. \nAnd the LORD said unto Moses, How long refuse ye to keep my commandments and my laws? \nSee, for that the LORD hath given you the sabbath, therefore he giveth you on the sixth day the bread of two days; abide ye every man in his place, let no man go out of his place on the seventh day. \nSo the people rested on the seventh day. \nAnd the house of Israel called the name thereof Manna: and it was like coriander seed, white; and the taste of it was like wafers made with honey. \nAnd Moses said, This is the thing which the LORD commandeth, Fill an omer of it to be kept for your generations; that they may see the bread wherewith I have fed you in the wilderness, when I brought you forth from the land of Egypt. \nAnd Moses said unto Aaron, Take a pot, and put an omer full of manna therein, and lay it up before the LORD, to be kept for your generations. \nAs the LORD commanded Moses, so Aaron laid it up before the Testimony, to be kept. \nAnd the children of Israel did eat manna forty years, until they came to a land inhabited; they did eat manna, until they came unto the borders of the land of Canaan. \nNow an omer is the tenth part of an ephah. \nAnd all the congregation of the children of Israel journeyed from the wilderness of Sin, after their journeys, according to the commandment of the LORD, and pitched in Rephidim: and there was no water for the people to drink. \nWherefore the people did chide with Moses, and said, Give us water that we may drink. And Moses said unto them, Why chide ye with me? wherefore do ye tempt the LORD? \nAnd the people thirsted there for water; and the people murmured against Moses, and said, Wherefore is this that thou hast brought us up out of Egypt, to kill us and our children and our cattle with thirst? \nAnd Moses cried unto the LORD, saying, What shall I do unto this people? they be almost ready to stone me. \nAnd the LORD said unto Moses, Go on before the people, and take with thee of the elders of Israel; and thy rod, wherewith thou smotest the river, take in thine hand, and go. \nBehold, I will stand before thee there upon the rock in Horeb; and thou shalt smite the rock, and there shall come water out of it, that the people may drink. And Moses did so in the sight of the elders of Israel. \nAnd he called the name of the place Massah, and Meribah, because of the chiding of the children of Israel, and because they tempted the LORD, saying, Is the LORD among us, or not? \nThen came Amalek, and fought with Israel in Rephidim. \nAnd Moses said unto Joshua, Choose us out men, and go out, fight with Amalek: to morrow I will stand on the top of the hill with the rod of God in mine hand. \nSo Joshua did as Moses had said to him, and fought with Amalek: and Moses, Aaron, and Hur went up to the top of the hill. \nAnd it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed. \nBut Moses hands were heavy; and they took a stone, and put it under him, and he sat thereon; and Aaron and Hur stayed up his hands, the one on the one side, and the other on the other side; and his hands were steady until the going down of the sun. \nAnd Joshua discomfited Amalek and his people with the edge of the sword. \nAnd the LORD said unto Moses, Write this for a memorial in a book, and rehearse it in the ears of Joshua: for I will utterly put out the remembrance of Amalek from under heaven. \nAnd Moses built an altar, and called the name of it Jehovahnissi: \nFor he said, Because the LORD hath sworn that the LORD will have war with Amalek from generation to generation. \nWhen Jethro, the priest of Midian, Moses' father in law, heard of all that God had done for Moses, and for Israel his people, and that the LORD had brought Israel out of Egypt; \nThen Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back, \nAnd her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land: \nAnd the name of the other was Eliezer; for the God of my father, said he, was mine help, and delivered me from the sword of Pharaoh: \nAnd Jethro, Moses' father in law, came with his sons and his wife unto Moses into the wilderness, where he encamped at the mount of God: \nAnd he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her. \nAnd Moses went out to meet his father in law, and did obeisance, and kissed him; and they asked each other of their welfare; and they came into the tent. \nAnd Moses told his father in law all that the LORD had done unto Pharaoh and to the Egyptians for Israel's sake, and all the travail that had come upon them by the way, and how the LORD delivered them. \nAnd Jethro rejoiced for all the goodness which the LORD had done to Israel, whom he had delivered out of the hand of the Egyptians. \nAnd Jethro said, Blessed be the LORD, who hath delivered you out of the hand of the Egyptians, and out of the hand of Pharaoh, who hath delivered the people from under the hand of the Egyptians. \nNow I know that the LORD is greater than all gods: for in the thing wherein they dealt proudly he was above them. \nAnd Jethro, Moses' father in law, took a burnt offering and sacrifices for God: and Aaron came, and all the elders of Israel, to eat bread with Moses' father in law before God. \nAnd it came to pass on the morrow, that Moses sat to judge the people: and the people stood by Moses from the morning unto the evening. \nAnd when Moses' father in law saw all that he did to the people, he said, What is this thing that thou doest to the people? why sittest thou thyself alone, and all the people stand by thee from morning unto even? \nAnd Moses said unto his father in law, Because the people come unto me to enquire of God: \nWhen they have a matter, they come unto me; and I judge between one and another, and I do make them know the statutes of God, and his laws. \nAnd Moses' father in law said unto him, The thing that thou doest is not good. \nThou wilt surely wear away, both thou, and this people that is with thee: for this thing is too heavy for thee; thou art not able to perform it thyself alone. \nHearken now unto my voice, I will give thee counsel, and God shall be with thee: Be thou for the people to God-ward, that thou mayest bring the causes unto God: \nAnd thou shalt teach them ordinances and laws, and shalt shew them the way wherein they must walk, and the work that they must do. \nMoreover thou shalt provide out of all the people able men, such as fear God, men of truth, hating covetousness; and place such over them, to be rulers of thousands, and rulers of hundreds, rulers of fifties, and rulers of tens: \nAnd let them judge the people at all seasons: and it shall be, that every great matter they shall bring unto thee, but every small matter they shall judge: so shall it be easier for thyself, and they shall bear the burden with thee. \nIf thou shalt do this thing, and God command thee so, then thou shalt be able to endure, and all this people shall also go to their place in peace. \nSo Moses hearkened to the voice of his father in law, and did all that he had said. \nAnd Moses chose able men out of all Israel, and made them heads over the people, rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens. \nAnd they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves. \nAnd Moses let his father in law depart; and he went his way into his own land. \nIn the third month, when the children of Israel were gone forth out of the land of Egypt, the same day came they into the wilderness of Sinai. \nFor they were departed from Rephidim, and were come to the desert of Sinai, and had pitched in the wilderness; and there Israel camped before the mount. \nAnd Moses went up unto God, and the LORD called unto him out of the mountain, saying, Thus shalt thou say to the house of Jacob, and tell the children of Israel; \nYe have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself. \nNow therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be a peculiar treasure unto me above all people: for all the earth is mine: \nAnd ye shall be unto me a kingdom of priests, and an holy nation. These are the words which thou shalt speak unto the children of Israel. \nAnd Moses came and called for the elders of the people, and laid before their faces all these words which the LORD commanded him. \nAnd all the people answered together, and said, All that the LORD hath spoken we will do. And Moses returned the words of the people unto the LORD. \nAnd the LORD said unto Moses, Lo, I come unto thee in a thick cloud, that the people may hear when I speak with thee, and believe thee for ever. And Moses told the words of the people unto the LORD. \nAnd the LORD said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes, \nAnd be ready against the third day: for the third day the LORD will come down in the sight of all the people upon mount Sinai. \nAnd thou shalt set bounds unto the people round about, saying, Take heed to yourselves, that ye go not up into the mount, or touch the border of it: whosoever toucheth the mount shall be surely put to death: \nThere shall not an hand touch it, but he shall surely be stoned, or shot through; whether it be beast or man, it shall not live: when the trumpet soundeth long, they shall come up to the mount. \nAnd Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes. \nAnd he said unto the people, Be ready against the third day: come not at your wives. \nAnd it came to pass on the third day in the morning, that there were thunders and lightnings, and a thick cloud upon the mount, and the voice of the trumpet exceeding loud; so that all the people that was in the camp trembled. \nAnd Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount. \nAnd mount Sinai was altogether on a smoke, because the LORD descended upon it in fire: and the smoke thereof ascended as the smoke of a furnace, and the whole mount quaked greatly. \nAnd when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice. \nAnd the LORD came down upon mount Sinai, on the top of the mount: and the LORD called Moses up to the top of the mount; and Moses went up. \nAnd the LORD said unto Moses, Go down, charge the people, lest they break through unto the LORD to gaze, and many of them perish. \nAnd let the priests also, which come near to the LORD, sanctify themselves, lest the LORD break forth upon them. \nAnd Moses said unto the LORD, The people cannot come up to mount Sinai: for thou chargedst us, saying, Set bounds about the mount, and sanctify it. \nAnd the LORD said unto him, Away, get thee down, and thou shalt come up, thou, and Aaron with thee: but let not the priests and the people break through to come up unto the LORD, lest he break forth upon them. \nSo Moses went down unto the people, and spake unto them. \nAnd God spake all these words, saying, \nI am the LORD thy God, which have brought thee out of the land of Egypt, out of the house of bondage. \nThou shalt have no other gods before me. \nThou shalt not make unto thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the water under the earth. \nThou shalt not bow down thyself to them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me; \nAnd shewing mercy unto thousands of them that love me, and keep my commandments. \nThou shalt not take the name of the LORD thy God in vain; for the LORD will not hold him guiltless that taketh his name in vain. \nRemember the sabbath day, to keep it holy. \nSix days shalt thou labour, and do all thy work: \nBut the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, thy manservant, nor thy maidservant, nor thy cattle, nor thy stranger that is within thy gates: \nFor in six days the LORD made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore the LORD blessed the sabbath day, and hallowed it. \nHonour thy father and thy mother: that thy days may be long upon the land which the LORD thy God giveth thee. \nThou shalt not kill. \nThou shalt not commit adultery. \nThou shalt not steal. \nThou shalt not bear false witness against thy neighbour. \nThou shalt not covet thy neighbour's house, thou shalt not covet thy neighbour's wife, nor his manservant, nor his maidservant, nor his ox, nor his ass, nor any thing that is thy neighbour's. \nAnd all the people saw the thunderings, and the lightnings, and the noise of the trumpet, and the mountain smoking: and when the people saw it, they removed, and stood afar off. \nAnd they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die. \nAnd Moses said unto the people, Fear not: for God is come to prove you, and that his fear may be before your faces, that ye sin not. \nAnd the people stood afar off, and Moses drew near unto the thick darkness where God was. \nAnd the LORD said unto Moses, Thus thou shalt say unto the children of Israel, Ye have seen that I have talked with you from heaven. \nYe shall not make with me gods of silver, neither shall ye make unto you gods of gold. \nAn altar of earth thou shalt make unto me, and shalt sacrifice thereon thy burnt offerings, and thy peace offerings, thy sheep, and thine oxen: in all places where I record my name I will come unto thee, and I will bless thee. \nAnd if thou wilt make me an altar of stone, thou shalt not build it of hewn stone: for if thou lift up thy tool upon it, thou hast polluted it. \nNeither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon. \nNow these are the judgments which thou shalt set before them. \nIf thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing. \nIf he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him. \nIf his master have given him a wife, and she have born him sons or daughters; the wife and her children shall be her master's, and he shall go out by himself. \nAnd if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free: \nThen his master shall bring him unto the judges; he shall also bring him to the door, or unto the door post; and his master shall bore his ear through with an aul; and he shall serve him for ever. \nAnd if a man sell his daughter to be a maidservant, she shall not go out as the menservants do. \nIf she please not her master, who hath betrothed her to himself, then shall he let her be redeemed: to sell her unto a strange nation he shall have no power, seeing he hath dealt deceitfully with her. \nAnd if he have betrothed her unto his son, he shall deal with her after the manner of daughters. \nIf he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish. \nAnd if he do not these three unto her, then shall she go out free without money. \nHe that smiteth a man, so that he die, shall be surely put to death. \nAnd if a man lie not in wait, but God deliver him into his hand; then I will appoint thee a place whither he shall flee. \nBut if a man come presumptuously upon his neighbour, to slay him with guile; thou shalt take him from mine altar, that he may die. \nAnd he that smiteth his father, or his mother, shall be surely put to death. \nAnd he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death. \nAnd he that curseth his father, or his mother, shall surely be put to death. \nAnd if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed: \nIf he rise again, and walk abroad upon his staff, then shall he that smote him be quit: only he shall pay for the loss of his time, and shall cause him to be thoroughly healed. \nAnd if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished. \nNotwithstanding, if he continue a day or two, he shall not be punished: for he is his money. \nIf men strive, and hurt a woman with child, so that her fruit depart from her, and yet no mischief follow: he shall be surely punished, according as the woman's husband will lay upon him; and he shall pay as the judges determine. \nAnd if any mischief follow, then thou shalt give life for life, \nEye for eye, tooth for tooth, hand for hand, foot for foot, \nBurning for burning, wound for wound, stripe for stripe. \nAnd if a man smite the eye of his servant, or the eye of his maid, that it perish; he shall let him go free for his eye's sake. \nAnd if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake. \nIf an ox gore a man or a woman, that they die: then the ox shall be surely stoned, and his flesh shall not be eaten; but the owner of the ox shall be quit. \nBut if the ox were wont to push with his horn in time past, and it hath been testified to his owner, and he hath not kept him in, but that he hath killed a man or a woman; the ox shall be stoned, and his owner also shall be put to death. \nIf there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him. \nWhether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him. \nIf the ox shall push a manservant or a maidservant; he shall give unto their master thirty shekels of silver, and the ox shall be stoned. \nAnd if a man shall open a pit, or if a man shall dig a pit, and not cover it, and an ox or an ass fall therein; \nThe owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his. \nAnd if one man's ox hurt another's, that he die; then they shall sell the live ox, and divide the money of it; and the dead ox also they shall divide. \nOr if it be known that the ox hath used to push in time past, and his owner hath not kept him in; he shall surely pay ox for ox; and the dead shall be his own. \nIf a man shall steal an ox, or a sheep, and kill it, or sell it; he shall restore five oxen for an ox, and four sheep for a sheep. \nIf a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him. \nIf the sun be risen upon him, there shall be blood shed for him; for he should make full restitution; if he have nothing, then he shall be sold for his theft. \nIf the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double. \nIf a man shall cause a field or vineyard to be eaten, and shall put in his beast, and shall feed in another man's field; of the best of his own field, and of the best of his own vineyard, shall he make restitution. \nIf fire break out, and catch in thorns, so that the stacks of corn, or the standing corn, or the field, be consumed therewith; he that kindled the fire shall surely make restitution. \nIf a man shall deliver unto his neighbour money or stuff to keep, and it be stolen out of the man's house; if the thief be found, let him pay double. \nIf the thief be not found, then the master of the house shall be brought unto the judges, to see whether he have put his hand unto his neighbour's goods. \nFor all manner of trespass, whether it be for ox, for ass, for sheep, for raiment, or for any manner of lost thing which another challengeth to be his, the cause of both parties shall come before the judges; and whom the judges shall condemn, he shall pay double unto his neighbour. \nIf a man deliver unto his neighbour an ass, or an ox, or a sheep, or any beast, to keep; and it die, or be hurt, or driven away, no man seeing it: \nThen shall an oath of the LORD be between them both, that he hath not put his hand unto his neighbour's goods; and the owner of it shall accept thereof, and he shall not make it good. \nAnd if it be stolen from him, he shall make restitution unto the owner thereof. \nIf it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn. \nAnd if a man borrow ought of his neighbour, and it be hurt, or die, the owner thereof being not with it, he shall surely make it good. \nBut if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire. \nAnd if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife. \nIf her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins. \nThou shalt not suffer a witch to live. \nWhosoever lieth with a beast shall surely be put to death. \nHe that sacrificeth unto any god, save unto the LORD only, he shall be utterly destroyed. \nThou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt. \nYe shall not afflict any widow, or fatherless child. \nIf thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry; \nAnd my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless. \nIf thou lend money to any of my people that is poor by thee, thou shalt not be to him as an usurer, neither shalt thou lay upon him usury. \nIf thou at all take thy neighbour's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down: \nFor that is his covering only, it is his raiment for his skin: wherein shall he sleep? and it shall come to pass, when he crieth unto me, that I will hear; for I am gracious. \nThou shalt not revile the gods, nor curse the ruler of thy people. \nThou shalt not delay to offer the first of thy ripe fruits, and of thy liquors: the firstborn of thy sons shalt thou give unto me. \nLikewise shalt thou do with thine oxen, and with thy sheep: seven days it shall be with his dam; on the eighth day thou shalt give it me. \nAnd ye shall be holy men unto me: neither shall ye eat any flesh that is torn of beasts in the field; ye shall cast it to the dogs. \nThou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness. \nThou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment: \nNeither shalt thou countenance a poor man in his cause. \nIf thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again. \nIf thou see the ass of him that hateth thee lying under his burden, and wouldest forbear to help him, thou shalt surely help with him. \nThou shalt not wrest the judgment of thy poor in his cause. \nKeep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked. \nAnd thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous. \nAlso thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt. \nAnd six years thou shalt sow thy land, and shalt gather in the fruits thereof: \nBut the seventh year thou shalt let it rest and lie still; that the poor of thy people may eat: and what they leave the beasts of the field shall eat. In like manner thou shalt deal with thy vineyard, and with thy oliveyard. \nSix days thou shalt do thy work, and on the seventh day thou shalt rest: that thine ox and thine ass may rest, and the son of thy handmaid, and the stranger, may be refreshed. \nAnd in all things that I have said unto you be circumspect: and make no mention of the name of other gods, neither let it be heard out of thy mouth. \nThree times thou shalt keep a feast unto me in the year. \nThou shalt keep the feast of unleavened bread: (thou shalt eat unleavened bread seven days, as I commanded thee, in the time appointed of the month Abib; for in it thou camest out from Egypt: and none shall appear before me empty:) \nAnd the feast of harvest, the firstfruits of thy labours, which thou hast sown in the field: and the feast of ingathering, which is in the end of the year, when thou hast gathered in thy labours out of the field. \nThree items in the year all thy males shall appear before the LORD God. \nThou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning. \nThe first of the firstfruits of thy land thou shalt bring into the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk. \nBehold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared. \nBeware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him. \nBut if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries. \nFor mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off. \nThou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images. \nAnd ye shall serve the LORD your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee. \nThere shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil. \nI will send my fear before thee, and will destroy all the people to whom thou shalt come, and I will make all thine enemies turn their backs unto thee. \nAnd I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee. \nI will not drive them out from before thee in one year; lest the land become desolate, and the beast of the field multiply against thee. \nBy little and little I will drive them out from before thee, until thou be increased, and inherit the land. \nAnd I will set thy bounds from the Red sea even unto the sea of the Philistines, and from the desert unto the river: for I will deliver the inhabitants of the land into your hand; and thou shalt drive them out before thee. \nThou shalt make no covenant with them, nor with their gods. \nThey shall not dwell in thy land, lest they make thee sin against me: for if thou serve their gods, it will surely be a snare unto thee. \nAnd he said unto Moses, Come up unto the LORD, thou, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship ye afar off. \nAnd Moses alone shall come near the LORD: but they shall not come nigh; neither shall the people go up with him. \nAnd Moses came and told the people all the words of the LORD, and all the judgments: and all the people answered with one voice, and said, All the words which the LORD hath said will we do. \nAnd Moses wrote all the words of the LORD, and rose up early in the morning, and builded an altar under the hill, and twelve pillars, according to the twelve tribes of Israel. \nAnd he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the LORD. \nAnd Moses took half of the blood, and put it in basons; and half of the blood he sprinkled on the altar. \nAnd he took the book of the covenant, and read in the audience of the people: and they said, All that the LORD hath said will we do, and be obedient. \nAnd Moses took the blood, and sprinkled it on the people, and said, Behold the blood of the covenant, which the LORD hath made with you concerning all these words. \nThen went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel: \nAnd they saw the God of Israel: and there was under his feet as it were a paved work of a sapphire stone, and as it were the body of heaven in his clearness. \nAnd upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink. \nAnd the LORD said unto Moses, Come up to me into the mount, and be there: and I will give thee tables of stone, and a law, and commandments which I have written; that thou mayest teach them. \nAnd Moses rose up, and his minister Joshua: and Moses went up into the mount of God. \nAnd he said unto the elders, Tarry ye here for us, until we come again unto you: and, behold, Aaron and Hur are with you: if any man have any matters to do, let him come unto them. \nAnd Moses went up into the mount, and a cloud covered the mount. \nAnd the glory of the LORD abode upon mount Sinai, and the cloud covered it six days: and the seventh day he called unto Moses out of the midst of the cloud. \nAnd the sight of the glory of the LORD was like devouring fire on the top of the mount in the eyes of the children of Israel. \nAnd Moses went into the midst of the cloud, and gat him up into the mount: and Moses was in the mount forty days and forty nights. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, that they bring me an offering: of every man that giveth it willingly with his heart ye shall take my offering. \nAnd this is the offering which ye shall take of them; gold, and silver, and brass, \nAnd blue, and purple, and scarlet, and fine linen, and goats' hair, \nAnd rams' skins dyed red, and badgers' skins, and shittim wood, \nOil for the light, spices for anointing oil, and for sweet incense, \nOnyx stones, and stones to be set in the ephod, and in the breastplate. \nAnd let them make me a sanctuary; that I may dwell among them. \nAccording to all that I shew thee, after the pattern of the tabernacle, and the pattern of all the instruments thereof, even so shall ye make it. \nAnd they shall make an ark of shittim wood: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof, and a cubit and a half the height thereof. \nAnd thou shalt overlay it with pure gold, within and without shalt thou overlay it, and shalt make upon it a crown of gold round about. \nAnd thou shalt cast four rings of gold for it, and put them in the four corners thereof; and two rings shall be in the one side of it, and two rings in the other side of it. \nAnd thou shalt make staves of shittim wood, and overlay them with gold. \nAnd thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them. \nThe staves shall be in the rings of the ark: they shall not be taken from it. \nAnd thou shalt put into the ark the testimony which I shall give thee. \nAnd thou shalt make a mercy seat of pure gold: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof. \nAnd thou shalt make two cherubims of gold, of beaten work shalt thou make them, in the two ends of the mercy seat. \nAnd make one cherub on the one end, and the other cherub on the other end: even of the mercy seat shall ye make the cherubims on the two ends thereof. \nAnd the cherubims shall stretch forth their wings on high, covering the mercy seat with their wings, and their faces shall look one to another; toward the mercy seat shall the faces of the cherubims be. \nAnd thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee. \nAnd there I will meet with thee, and I will commune with thee from above the mercy seat, from between the two cherubims which are upon the ark of the testimony, of all things which I will give thee in commandment unto the children of Israel. \nThou shalt also make a table of shittim wood: two cubits shall be the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof. \nAnd thou shalt overlay it with pure gold, and make thereto a crown of gold round about. \nAnd thou shalt make unto it a border of an hand breadth round about, and thou shalt make a golden crown to the border thereof round about. \nAnd thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof. \nOver against the border shall the rings be for places of the staves to bear the table. \nAnd thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them. \nAnd thou shalt make the dishes thereof, and spoons thereof, and covers thereof, and bowls thereof, to cover withal: of pure gold shalt thou make them. \nAnd thou shalt set upon the table shewbread before me alway. \nAnd thou shalt make a candlestick of pure gold: of beaten work shall the candlestick be made: his shaft, and his branches, his bowls, his knops, and his flowers, shall be of the same. \nAnd six branches shall come out of the sides of it; three branches of the candlestick out of the one side, and three branches of the candlestick out of the other side: \nThree bowls made like unto almonds, with a knop and a flower in one branch; and three bowls made like almonds in the other branch, with a knop and a flower: so in the six branches that come out of the candlestick. \nAnd in the candlesticks shall be four bowls made like unto almonds, with their knops and their flowers. \nAnd there shall be a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches that proceed out of the candlestick. \nTheir knops and their branches shall be of the same: all it shall be one beaten work of pure gold. \nAnd thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it. \nAnd the tongs thereof, and the snuffdishes thereof, shall be of pure gold. \nOf a talent of pure gold shall he make it, with all these vessels. \nAnd look that thou make them after their pattern, which was shewed thee in the mount. \nMoreover thou shalt make the tabernacle with ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubims of cunning work shalt thou make them. \nThe length of one curtain shall be eight and twenty cubits, and the breadth of one curtain four cubits: and every one of the curtains shall have one measure. \nThe five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another. \nAnd thou shalt make loops of blue upon the edge of the one curtain from the selvedge in the coupling; and likewise shalt thou make in the uttermost edge of another curtain, in the coupling of the second. \nFifty loops shalt thou make in the one curtain, and fifty loops shalt thou make in the edge of the curtain that is in the coupling of the second; that the loops may take hold one of another. \nAnd thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle. \nAnd thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make. \nThe length of one curtain shall be thirty cubits, and the breadth of one curtain four cubits: and the eleven curtains shall be all of one measure. \nAnd thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle. \nAnd thou shalt make fifty loops on the edge of the one curtain that is outmost in the coupling, and fifty loops in the edge of the curtain which coupleth the second. \nAnd thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one. \nAnd the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle. \nAnd a cubit on the one side, and a cubit on the other side of that which remaineth in the length of the curtains of the tent, it shall hang over the sides of the tabernacle on this side and on that side, to cover it. \nAnd thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins. \nAnd thou shalt make boards for the tabernacle of shittim wood standing up. \nTen cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board. \nTwo tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle. \nAnd thou shalt make the boards for the tabernacle, twenty boards on the south side southward. \nAnd thou shalt make forty sockets of silver under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons. \nAnd for the second side of the tabernacle on the north side there shall be twenty boards: \nAnd their forty sockets of silver; two sockets under one board, and two sockets under another board. \nAnd for the sides of the tabernacle westward thou shalt make six boards. \nAnd two boards shalt thou make for the corners of the tabernacle in the two sides. \nAnd they shall be coupled together beneath, and they shall be coupled together above the head of it unto one ring: thus shall it be for them both; they shall be for the two corners. \nAnd they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board. \nAnd thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle, \nAnd five bars for the boards of the other side of the tabernacle, and five bars for the boards of the side of the tabernacle, for the two sides westward. \nAnd the middle bar in the midst of the boards shall reach from end to end. \nAnd thou shalt overlay the boards with gold, and make their rings of gold for places for the bars: and thou shalt overlay the bars with gold. \nAnd thou shalt rear up the tabernacle according to the fashion thereof which was shewed thee in the mount. \nAnd thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubims shall it be made: \nAnd thou shalt hang it upon four pillars of shittim wood overlaid with gold: their hooks shall be of gold, upon the four sockets of silver. \nAnd thou shalt hang up the vail under the taches, that thou mayest bring in thither within the vail the ark of the testimony: and the vail shall divide unto you between the holy place and the most holy. \nAnd thou shalt put the mercy seat upon the ark of the testimony in the most holy place. \nAnd thou shalt set the table without the vail, and the candlestick over against the table on the side of the tabernacle toward the south: and thou shalt put the table on the north side. \nAnd thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework. \nAnd thou shalt make for the hanging five pillars of shittim wood, and overlay them with gold, and their hooks shall be of gold: and thou shalt cast five sockets of brass for them. \nAnd thou shalt make an altar of shittim wood, five cubits long, and five cubits broad; the altar shall be foursquare: and the height thereof shall be three cubits. \nAnd thou shalt make the horns of it upon the four corners thereof: his horns shall be of the same: and thou shalt overlay it with brass. \nAnd thou shalt make his pans to receive his ashes, and his shovels, and his basons, and his fleshhooks, and his firepans: all the vessels thereof thou shalt make of brass. \nAnd thou shalt make for it a grate of network of brass; and upon the net shalt thou make four brasen rings in the four corners thereof. \nAnd thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar. \nAnd thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass. \nAnd the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it. \nHollow with boards shalt thou make it: as it was shewed thee in the mount, so shall they make it. \nAnd thou shalt make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen of an hundred cubits long for one side: \nAnd the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver. \nAnd likewise for the north side in length there shall be hangings of an hundred cubits long, and his twenty pillars and their twenty sockets of brass; the hooks of the pillars and their fillets of silver. \nAnd for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten. \nAnd the breadth of the court on the east side eastward shall be fifty cubits. \nThe hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three. \nAnd on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three. \nAnd for the gate of the court shall be an hanging of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework: and their pillars shall be four, and their sockets four. \nAll the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass. \nThe length of the court shall be an hundred cubits, and the breadth fifty every where, and the height five cubits of fine twined linen, and their sockets of brass. \nAll the vessels of the tabernacle in all the service thereof, and all the pins thereof, and all the pins of the court, shall be of brass. \nAnd thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always. \nIn the tabernacle of the congregation without the vail, which is before the testimony, Aaron and his sons shall order it from evening to morning before the LORD: it shall be a statute for ever unto their generations on the behalf of the children of Israel. \nAnd take thou unto thee Aaron thy brother, and his sons with him, from among the children of Israel, that he may minister unto me in the priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons. \nAnd thou shalt make holy garments for Aaron thy brother for glory and for beauty. \nAnd thou shalt speak unto all that are wise hearted, whom I have filled with the spirit of wisdom, that they may make Aaron's garments to consecrate him, that he may minister unto me in the priest's office. \nAnd these are the garments which they shall make; a breastplate, and an ephod, and a robe, and a broidered coat, a mitre, and a girdle: and they shall make holy garments for Aaron thy brother, and his sons, that he may minister unto me in the priest's office. \nAnd they shall take gold, and blue, and purple, and scarlet, and fine linen. \nAnd they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work. \nIt shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together. \nAnd the curious girdle of the ephod, which is upon it, shall be of the same, according to the work thereof; even of gold, of blue, and purple, and scarlet, and fine twined linen. \nAnd thou shalt take two onyx stones, and grave on them the names of the children of Israel: \nSix of their names on one stone, and the other six names of the rest on the other stone, according to their birth. \nWith the work of an engraver in stone, like the engravings of a signet, shalt thou engrave the two stones with the names of the children of Israel: thou shalt make them to be set in ouches of gold. \nAnd thou shalt put the two stones upon the shoulders of the ephod for stones of memorial unto the children of Israel: and Aaron shall bear their names before the LORD upon his two shoulders for a memorial. \nAnd thou shalt make ouches of gold; \nAnd two chains of pure gold at the ends; of wreathen work shalt thou make them, and fasten the wreathen chains to the ouches. \nAnd thou shalt make the breastplate of judgment with cunning work; after the work of the ephod thou shalt make it; of gold, of blue, and of purple, and of scarlet, and of fine twined linen, shalt thou make it. \nFoursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof. \nAnd thou shalt set in it settings of stones, even four rows of stones: the first row shall be a sardius, a topaz, and a carbuncle: this shall be the first row. \nAnd the second row shall be an emerald, a sapphire, and a diamond. \nAnd the third row a ligure, an agate, and an amethyst. \nAnd the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings. \nAnd the stones shall be with the names of the children of Israel, twelve, according to their names, like the engravings of a signet; every one with his name shall they be according to the twelve tribes. \nAnd thou shalt make upon the breastplate chains at the ends of wreathen work of pure gold. \nAnd thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate. \nAnd thou shalt put the two wreathen chains of gold in the two rings which are on the ends of the breastplate. \nAnd the other two ends of the two wreathen chains thou shalt fasten in the two ouches, and put them on the shoulderpieces of the ephod before it. \nAnd thou shalt make two rings of gold, and thou shalt put them upon the two ends of the breastplate in the border thereof, which is in the side of the ephod inward. \nAnd two other rings of gold thou shalt make, and shalt put them on the two sides of the ephod underneath, toward the forepart thereof, over against the other coupling thereof, above the curious girdle of the ephod. \nAnd they shall bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it may be above the curious girdle of the ephod, and that the breastplate be not loosed from the ephod. \nAnd Aaron shall bear the names of the children of Israel in the breastplate of judgment upon his heart, when he goeth in unto the holy place, for a memorial before the LORD continually. \nAnd thou shalt put in the breastplate of judgment the Urim and the Thummim; and they shall be upon Aaron's heart, when he goeth in before the LORD: and Aaron shall bear the judgment of the children of Israel upon his heart before the LORD continually. \nAnd thou shalt make the robe of the ephod all of blue. \nAnd there shall be an hole in the top of it, in the midst thereof: it shall have a binding of woven work round about the hole of it, as it were the hole of an habergeon, that it be not rent. \nAnd beneath upon the hem of it thou shalt make pomegranates of blue, and of purple, and of scarlet, round about the hem thereof; and bells of gold between them round about: \nA golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about. \nAnd it shall be upon Aaron to minister: and his sound shall be heard when he goeth in unto the holy place before the LORD, and when he cometh out, that he die not. \nAnd thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, HOLINESS TO THE LORD. \nAnd thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be. \nAnd it shall be upon Aaron's forehead, that Aaron may bear the iniquity of the holy things, which the children of Israel shall hallow in all their holy gifts; and it shall be always upon his forehead, that they may be accepted before the LORD. \nAnd thou shalt embroider the coat of fine linen, and thou shalt make the mitre of fine linen, and thou shalt make the girdle of needlework. \nAnd for Aaron's sons thou shalt make coats, and thou shalt make for them girdles, and bonnets shalt thou make for them, for glory and for beauty. \nAnd thou shalt put them upon Aaron thy brother, and his sons with him; and shalt anoint them, and consecrate them, and sanctify them, that they may minister unto me in the priest's office. \nAnd thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach: \nAnd they shall be upon Aaron, and upon his sons, when they come in unto the tabernacle of the congregation, or when they come near unto the altar to minister in the holy place; that they bear not iniquity, and die: it shall be a statute for ever unto him and his seed after him. \nAnd this is the thing that thou shalt do unto them to hallow them, to minister unto me in the priest's office: Take one young bullock, and two rams without blemish, \nAnd unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them. \nAnd thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams. \nAnd Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water. \nAnd thou shalt take the garments, and put upon Aaron the coat, and the robe of the ephod, and the ephod, and the breastplate, and gird him with the curious girdle of the ephod: \nAnd thou shalt put the mitre upon his head, and put the holy crown upon the mitre. \nThen shalt thou take the anointing oil, and pour it upon his head, and anoint him. \nAnd thou shalt bring his sons, and put coats upon them. \nAnd thou shalt gird them with girdles, Aaron and his sons, and put the bonnets on them: and the priest's office shall be theirs for a perpetual statute: and thou shalt consecrate Aaron and his sons. \nAnd thou shalt cause a bullock to be brought before the tabernacle of the congregation: and Aaron and his sons shall put their hands upon the head of the bullock. \nAnd thou shalt kill the bullock before the LORD, by the door of the tabernacle of the congregation. \nAnd thou shalt take of the blood of the bullock, and put it upon the horns of the altar with thy finger, and pour all the blood beside the bottom of the altar. \nAnd thou shalt take all the fat that covereth the inwards, and the caul that is above the liver, and the two kidneys, and the fat that is upon them, and burn them upon the altar. \nBut the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering. \nThou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram. \nAnd thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar. \nAnd thou shalt cut the ram in pieces, and wash the inwards of him, and his legs, and put them unto his pieces, and unto his head. \nAnd thou shalt burn the whole ram upon the altar: it is a burnt offering unto the LORD: it is a sweet savour, an offering made by fire unto the LORD. \nAnd thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram. \nThen shalt thou kill the ram, and take of his blood, and put it upon the tip of the right ear of Aaron, and upon the tip of the right ear of his sons, and upon the thumb of their right hand, and upon the great toe of their right foot, and sprinkle the blood upon the altar round about. \nAnd thou shalt take of the blood that is upon the altar, and of the anointing oil, and sprinkle it upon Aaron, and upon his garments, and upon his sons, and upon the garments of his sons with him: and he shall be hallowed, and his garments, and his sons, and his sons' garments with him. \nAlso thou shalt take of the ram the fat and the rump, and the fat that covereth the inwards, and the caul above the liver, and the two kidneys, and the fat that is upon them, and the right shoulder; for it is a ram of consecration: \nAnd one loaf of bread, and one cake of oiled bread, and one wafer out of the basket of the unleavened bread that is before the LORD: \nAnd thou shalt put all in the hands of Aaron, and in the hands of his sons; and shalt wave them for a wave offering before the LORD. \nAnd thou shalt receive them of their hands, and burn them upon the altar for a burnt offering, for a sweet savour before the LORD: it is an offering made by fire unto the LORD. \nAnd thou shalt take the breast of the ram of Aaron's consecration, and wave it for a wave offering before the LORD: and it shall be thy part. \nAnd thou shalt sanctify the breast of the wave offering, and the shoulder of the heave offering, which is waved, and which is heaved up, of the ram of the consecration, even of that which is for Aaron, and of that which is for his sons: \nAnd it shall be Aaron's and his sons' by a statute for ever from the children of Israel: for it is an heave offering: and it shall be an heave offering from the children of Israel of the sacrifice of their peace offerings, even their heave offering unto the LORD. \nAnd the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them. \nAnd that son that is priest in his stead shall put them on seven days, when he cometh into the tabernacle of the congregation to minister in the holy place. \nAnd thou shalt take the ram of the consecration, and seethe his flesh in the holy place. \nAnd Aaron and his sons shall eat the flesh of the ram, and the bread that is in the basket by the door of the tabernacle of the congregation. \nAnd they shall eat those things wherewith the atonement was made, to consecrate and to sanctify them: but a stranger shall not eat thereof, because they are holy. \nAnd if ought of the flesh of the consecrations, or of the bread, remain unto the morning, then thou shalt burn the remainder with fire: it shall not be eaten, because it is holy. \nAnd thus shalt thou do unto Aaron, and to his sons, according to all things which I have commanded thee: seven days shalt thou consecrate them. \nAnd thou shalt offer every day a bullock for a sin offering for atonement: and thou shalt cleanse the altar, when thou hast made an atonement for it, and thou shalt anoint it, to sanctify it. \nSeven days thou shalt make an atonement for the altar, and sanctify it; and it shall be an altar most holy: whatsoever toucheth the altar shall be holy. \nNow this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually. \nThe one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even: \nAnd with the one lamb a tenth deal of flour mingled with the fourth part of an hin of beaten oil; and the fourth part of an hin of wine for a drink offering. \nAnd the other lamb thou shalt offer at even, and shalt do thereto according to the meat offering of the morning, and according to the drink offering thereof, for a sweet savour, an offering made by fire unto the LORD. \nThis shall be a continual burnt offering throughout your generations at the door of the tabernacle of the congregation before the LORD: where I will meet you, to speak there unto thee. \nAnd there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory. \nAnd I will sanctify the tabernacle of the congregation, and the altar: I will sanctify also both Aaron and his sons, to minister to me in the priest's office. \nAnd I will dwell among the children of Israel, and will be their God. \nAnd they shall know that I am the LORD their God, that brought them forth out of the land of Egypt, that I may dwell among them: I am the LORD their God. \nAnd thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it. \nA cubit shall be the length thereof, and a cubit the breadth thereof; foursquare shall it be: and two cubits shall be the height thereof: the horns thereof shall be of the same. \nAnd thou shalt overlay it with pure gold, the top thereof, and the sides thereof round about, and the horns thereof; and thou shalt make unto it a crown of gold round about. \nAnd two golden rings shalt thou make to it under the crown of it, by the two corners thereof, upon the two sides of it shalt thou make it; and they shall be for places for the staves to bear it withal. \nAnd thou shalt make the staves of shittim wood, and overlay them with gold. \nAnd thou shalt put it before the vail that is by the ark of the testimony, before the mercy seat that is over the testimony, where I will meet with thee. \nAnd Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it. \nAnd when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the LORD throughout your generations. \nYe shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon. \nAnd Aaron shall make an atonement upon the horns of it once in a year with the blood of the sin offering of atonements: once in the year shall he make atonement upon it throughout your generations: it is most holy unto the LORD. \nAnd the LORD spake unto Moses, saying, \nWhen thou takest the sum of the children of Israel after their number, then shall they give every man a ransom for his soul unto the LORD, when thou numberest them; that there be no plague among them, when thou numberest them. \nThis they shall give, every one that passeth among them that are numbered, half a shekel after the shekel of the sanctuary: (a shekel is twenty gerahs:) an half shekel shall be the offering of the LORD. \nEvery one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the LORD. \nThe rich shall not give more, and the poor shall not give less than half a shekel, when they give an offering unto the LORD, to make an atonement for your souls. \nAnd thou shalt take the atonement money of the children of Israel, and shalt appoint it for the service of the tabernacle of the congregation; that it may be a memorial unto the children of Israel before the LORD, to make an atonement for your souls. \nAnd the LORD spake unto Moses, saying, \nThou shalt also make a laver of brass, and his foot also of brass, to wash withal: and thou shalt put it between the tabernacle of the congregation and the altar, and thou shalt put water therein. \nFor Aaron and his sons shall wash their hands and their feet thereat: \nWhen they go into the tabernacle of the congregation, they shall wash with water, that they die not; or when they come near to the altar to minister, to burn offering made by fire unto the LORD: \nSo they shall wash their hands and their feet, that they die not: and it shall be a statute for ever to them, even to him and to his seed throughout their generations. \nMoreover the LORD spake unto Moses, saying, \nTake thou also unto thee principal spices, of pure myrrh five hundred shekels, and of sweet cinnamon half so much, even two hundred and fifty shekels, and of sweet calamus two hundred and fifty shekels, \nAnd of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin: \nAnd thou shalt make it an oil of holy ointment, an ointment compound after the art of the apothecary: it shall be an holy anointing oil. \nAnd thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony, \nAnd the table and all his vessels, and the candlestick and his vessels, and the altar of incense, \nAnd the altar of burnt offering with all his vessels, and the laver and his foot. \nAnd thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy. \nAnd thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office. \nAnd thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations. \nUpon man's flesh shall it not be poured, neither shall ye make any other like it, after the composition of it: it is holy, and it shall be holy unto you. \nWhosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people. \nAnd the LORD said unto Moses, Take unto thee sweet spices, stacte, and onycha, and galbanum; these sweet spices with pure frankincense: of each shall there be a like weight: \nAnd thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy: \nAnd thou shalt beat some of it very small, and put of it before the testimony in the tabernacle of the congregation, where I will meet with thee: it shall be unto you most holy. \nAnd as for the perfume which thou shalt make, ye shall not make to yourselves according to the composition thereof: it shall be unto thee holy for the LORD. \nWhosoever shall make like unto that, to smell thereto, shall even be cut off from his people. \nAnd the LORD spake unto Moses, saying, \nSee, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah: \nAnd I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship, \nTo devise cunning works, to work in gold, and in silver, and in brass, \nAnd in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship. \nAnd I, behold, I have given with him Aholiab, the son of Ahisamach, of the tribe of Dan: and in the hearts of all that are wise hearted I have put wisdom, that they may make all that I have commanded thee; \nThe tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle, \nAnd the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense, \nAnd the altar of burnt offering with all his furniture, and the laver and his foot, \nAnd the cloths of service, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office, \nAnd the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do. \nAnd the LORD spake unto Moses, saying, \nSpeak thou also unto the children of Israel, saying, Verily my sabbaths ye shall keep: for it is a sign between me and you throughout your generations; that ye may know that I am the LORD that doth sanctify you. \nYe shall keep the sabbath therefore; for it is holy unto you: every one that defileth it shall surely be put to death: for whosoever doeth any work therein, that soul shall be cut off from among his people. \nSix days may work be done; but in the seventh is the sabbath of rest, holy to the LORD: whosoever doeth any work in the sabbath day, he shall surely be put to death. \nWherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant. \nIt is a sign between me and the children of Israel for ever: for in six days the LORD made heaven and earth, and on the seventh day he rested, and was refreshed. \nAnd he gave unto Moses, when he had made an end of communing with him upon mount Sinai, two tables of testimony, tables of stone, written with the finger of God. \nAnd when the people saw that Moses delayed to come down out of the mount, the people gathered themselves together unto Aaron, and said unto him, Up, make us gods, which shall go before us; for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him. \nAnd Aaron said unto them, Break off the golden earrings, which are in the ears of your wives, of your sons, and of your daughters, and bring them unto me. \nAnd all the people brake off the golden earrings which were in their ears, and brought them unto Aaron. \nAnd he received them at their hand, and fashioned it with a graving tool, after he had made it a molten calf: and they said, These be thy gods, O Israel, which brought thee up out of the land of Egypt. \nAnd when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the LORD. \nAnd they rose up early on the morrow, and offered burnt offerings, and brought peace offerings; and the people sat down to eat and to drink, and rose up to play. \nAnd the LORD said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves: \nThey have turned aside quickly out of the way which I commanded them: they have made them a molten calf, and have worshipped it, and have sacrificed thereunto, and said, These be thy gods, O Israel, which have brought thee up out of the land of Egypt. \nAnd the LORD said unto Moses, I have seen this people, and, behold, it is a stiffnecked people: \nNow therefore let me alone, that my wrath may wax hot against them, and that I may consume them: and I will make of thee a great nation. \nAnd Moses besought the LORD his God, and said, LORD, why doth thy wrath wax hot against thy people, which thou hast brought forth out of the land of Egypt with great power, and with a mighty hand? \nWherefore should the Egyptians speak, and say, For mischief did he bring them out, to slay them in the mountains, and to consume them from the face of the earth? Turn from thy fierce wrath, and repent of this evil against thy people. \nRemember Abraham, Isaac, and Israel, thy servants, to whom thou swarest by thine own self, and saidst unto them, I will multiply your seed as the stars of heaven, and all this land that I have spoken of will I give unto your seed, and they shall inherit it for ever. \nAnd the LORD repented of the evil which he thought to do unto his people. \nAnd Moses turned, and went down from the mount, and the two tables of the testimony were in his hand: the tables were written on both their sides; on the one side and on the other were they written. \nAnd the tables were the work of God, and the writing was the writing of God, graven upon the tables. \nAnd when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp. \nAnd he said, It is not the voice of them that shout for mastery, neither is it the voice of them that cry for being overcome: but the noise of them that sing do I hear. \nAnd it came to pass, as soon as he came nigh unto the camp, that he saw the calf, and the dancing: and Moses' anger waxed hot, and he cast the tables out of his hands, and brake them beneath the mount. \nAnd he took the calf which they had made, and burnt it in the fire, and ground it to powder, and strawed it upon the water, and made the children of Israel drink of it. \nAnd Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them? \nAnd Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief. \nFor they said unto me, Make us gods, which shall go before us: for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him. \nAnd I said unto them, Whosoever hath any gold, let them break it off. So they gave it me: then I cast it into the fire, and there came out this calf. \nAnd when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:) \nThen Moses stood in the gate of the camp, and said, Who is on the LORD's side? let him come unto me. And all the sons of Levi gathered themselves together unto him. \nAnd he said unto them, Thus saith the LORD God of Israel, Put every man his sword by his side, and go in and out from gate to gate throughout the camp, and slay every man his brother, and every man his companion, and every man his neighbour. \nAnd the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men. \nFor Moses had said, Consecrate yourselves today to the LORD, even every man upon his son, and upon his brother; that he may bestow upon you a blessing this day. \nAnd it came to pass on the morrow, that Moses said unto the people, Ye have sinned a great sin: and now I will go up unto the LORD; peradventure I shall make an atonement for your sin. \nAnd Moses returned unto the LORD, and said, Oh, this people have sinned a great sin, and have made them gods of gold. \nYet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written. \nAnd the LORD said unto Moses, Whosoever hath sinned against me, him will I blot out of my book. \nTherefore now go, lead the people unto the place of which I have spoken unto thee: behold, mine Angel shall go before thee: nevertheless in the day when I visit I will visit their sin upon them. \nAnd the LORD plagued the people, because they made the calf, which Aaron made. \nAnd the LORD said unto Moses, Depart, and go up hence, thou and the people which thou hast brought up out of the land of Egypt, unto the land which I sware unto Abraham, to Isaac, and to Jacob, saying, Unto thy seed will I give it: \nAnd I will send an angel before thee; and I will drive out the Canaanite, the Amorite, and the Hittite, and the Perizzite, the Hivite, and the Jebusite: \nUnto a land flowing with milk and honey: for I will not go up in the midst of thee; for thou art a stiffnecked people: lest I consume thee in the way. \nAnd when the people heard these evil tidings, they mourned: and no man did put on him his ornaments. \nFor the LORD had said unto Moses, Say unto the children of Israel, Ye are a stiffnecked people: I will come up into the midst of thee in a moment, and consume thee: therefore now put off thy ornaments from thee, that I may know what to do unto thee. \nAnd the children of Israel stripped themselves of their ornaments by the mount Horeb. \nAnd Moses took the tabernacle, and pitched it without the camp, afar off from the camp, and called it the Tabernacle of the congregation. And it came to pass, that every one which sought the LORD went out unto the tabernacle of the congregation, which was without the camp. \nAnd it came to pass, when Moses went out unto the tabernacle, that all the people rose up, and stood every man at his tent door, and looked after Moses, until he was gone into the tabernacle. \nAnd it came to pass, as Moses entered into the tabernacle, the cloudy pillar descended, and stood at the door of the tabernacle, and the Lord talked with Moses. \nAnd all the people saw the cloudy pillar stand at the tabernacle door: and all the people rose up and worshipped, every man in his tent door. \nAnd the LORD spake unto Moses face to face, as a man speaketh unto his friend. And he turned again into the camp: but his servant Joshua, the son of Nun, a young man, departed not out of the tabernacle. \nAnd Moses said unto the LORD, See, thou sayest unto me, Bring up this people: and thou hast not let me know whom thou wilt send with me. Yet thou hast said, I know thee by name, and thou hast also found grace in my sight. \nNow therefore, I pray thee, if I have found grace in thy sight, shew me now thy way, that I may know thee, that I may find grace in thy sight: and consider that this nation is thy people. \nAnd he said, My presence shall go with thee, and I will give thee rest. \nAnd he said unto him, If thy presence go not with me, carry us not up hence. \nFor wherein shall it be known here that I and thy people have found grace in thy sight? is it not in that thou goest with us? so shall we be separated, I and thy people, from all the people that are upon the face of the earth. \nAnd the LORD said unto Moses, I will do this thing also that thou hast spoken: for thou hast found grace in my sight, and I know thee by name. \nAnd he said, I beseech thee, shew me thy glory. \nAnd he said, I will make all my goodness pass before thee, and I will proclaim the name of the LORD before thee; and will be gracious to whom I will be gracious, and will shew mercy on whom I will shew mercy. \nAnd he said, Thou canst not see my face: for there shall no man see me, and live. \nAnd the LORD said, Behold, there is a place by me, and thou shalt stand upon a rock: \nAnd it shall come to pass, while my glory passeth by, that I will put thee in a clift of the rock, and will cover thee with my hand while I pass by: \nAnd I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen. \nAnd the LORD said unto Moses, Hew thee two tables of stone like unto the first: and I will write upon these tables the words that were in the first tables, which thou brakest. \nAnd be ready in the morning, and come up in the morning unto mount Sinai, and present thyself there to me in the top of the mount. \nAnd no man shall come up with thee, neither let any man be seen throughout all the mount; neither let the flocks nor herds feed before that mount. \nAnd he hewed two tables of stone like unto the first; and Moses rose up early in the morning, and went up unto mount Sinai, as the LORD had commanded him, and took in his hand the two tables of stone. \nAnd the LORD descended in the cloud, and stood with him there, and proclaimed the name of the LORD. \nAnd the LORD passed by before him, and proclaimed, The LORD, The LORD God, merciful and gracious, longsuffering, and abundant in goodness and truth, \nKeeping mercy for thousands, forgiving iniquity and transgression and sin, and that will by no means clear the guilty; visiting the iniquity of the fathers upon the children, and upon the children's children, unto the third and to the fourth generation. \nAnd Moses made haste, and bowed his head toward the earth, and worshipped. \nAnd he said, If now I have found grace in thy sight, O LORD, let my LORD, I pray thee, go among us; for it is a stiffnecked people; and pardon our iniquity and our sin, and take us for thine inheritance. \nAnd he said, Behold, I make a covenant: before all thy people I will do marvels, such as have not been done in all the earth, nor in any nation: and all the people among which thou art shall see the work of the LORD: for it is a terrible thing that I will do with thee. \nObserve thou that which I command thee this day: behold, I drive out before thee the Amorite, and the Canaanite, and the Hittite, and the Perizzite, and the Hivite, and the Jebusite. \nTake heed to thyself, lest thou make a covenant with the inhabitants of the land whither thou goest, lest it be for a snare in the midst of thee: \nBut ye shall destroy their altars, break their images, and cut down their groves: \nFor thou shalt worship no other god: for the LORD, whose name is Jealous, is a jealous God: \nLest thou make a covenant with the inhabitants of the land, and they go a whoring after their gods, and do sacrifice unto their gods, and one call thee, and thou eat of his sacrifice; \nAnd thou take of their daughters unto thy sons, and their daughters go a whoring after their gods, and make thy sons go a whoring after their gods. \nThou shalt make thee no molten gods. \nThe feast of unleavened bread shalt thou keep. Seven days thou shalt eat unleavened bread, as I commanded thee, in the time of the month Abib: for in the month Abib thou camest out from Egypt. \nAll that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male. \nBut the firstling of an ass thou shalt redeem with a lamb: and if thou redeem him not, then shalt thou break his neck. All the firstborn of thy sons thou shalt redeem. And none shall appear before me empty. \nSix days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest. \nAnd thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end. \nThrice in the year shall all your menchildren appear before the LORD God, the God of Israel. \nFor I will cast out the nations before thee, and enlarge thy borders: neither shall any man desire thy land, when thou shalt go up to appear before the LORD thy God thrice in the year. \nThou shalt not offer the blood of my sacrifice with leaven; neither shall the sacrifice of the feast of the passover be left unto the morning. \nThe first of the firstfruits of thy land thou shalt bring unto the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk. \nAnd the LORD said unto Moses, Write thou these words: for after the tenor of these words I have made a covenant with thee and with Israel. \nAnd he was there with the LORD forty days and forty nights; he did neither eat bread, nor drink water. And he wrote upon the tables the words of the covenant, the ten commandments. \nAnd it came to pass, when Moses came down from mount Sinai with the two tables of testimony in Moses' hand, when he came down from the mount, that Moses wist not that the skin of his face shone while he talked with him. \nAnd when Aaron and all the children of Israel saw Moses, behold, the skin of his face shone; and they were afraid to come nigh him. \nAnd Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them. \nAnd afterward all the children of Israel came nigh: and he gave them in commandment all that the LORD had spoken with him in mount Sinai. \nAnd till Moses had done speaking with them, he put a vail on his face. \nBut when Moses went in before the LORD to speak with him, he took the vail off, until he came out. And he came out, and spake unto the children of Israel that which he was commanded. \nAnd the children of Israel saw the face of Moses, that the skin of Moses' face shone: and Moses put the vail upon his face again, until he went in to speak with him. \nAnd Moses gathered all the congregation of the children of Israel together, and said unto them, These are the words which the LORD hath commanded, that ye should do them. \nSix days shall work be done, but on the seventh day there shall be to you an holy day, a sabbath of rest to the LORD: whosoever doeth work therein shall be put to death. \nYe shall kindle no fire throughout your habitations upon the sabbath day. \nAnd Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the LORD commanded, saying, \nTake ye from among you an offering unto the LORD: whosoever is of a willing heart, let him bring it, an offering of the LORD; gold, and silver, and brass, \nAnd blue, and purple, and scarlet, and fine linen, and goats' hair, \nAnd rams' skins dyed red, and badgers' skins, and shittim wood, \nAnd oil for the light, and spices for anointing oil, and for the sweet incense, \nAnd onyx stones, and stones to be set for the ephod, and for the breastplate. \nAnd every wise hearted among you shall come, and make all that the LORD hath commanded; \nThe tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets, \nThe ark, and the staves thereof, with the mercy seat, and the vail of the covering, \nThe table, and his staves, and all his vessels, and the shewbread, \nThe candlestick also for the light, and his furniture, and his lamps, with the oil for the light, \nAnd the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle, \nThe altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot, \nThe hangings of the court, his pillars, and their sockets, and the hanging for the door of the court, \nThe pins of the tabernacle, and the pins of the court, and their cords, \nThe cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office. \nAnd all the congregation of the children of Israel departed from the presence of Moses. \nAnd they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the LORD's offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments. \nAnd they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the LORD. \nAnd every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats' hair, and red skins of rams, and badgers' skins, brought them. \nEvery one that did offer an offering of silver and brass brought the LORD's offering: and every man, with whom was found shittim wood for any work of the service, brought it. \nAnd all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen. \nAnd all the women whose heart stirred them up in wisdom spun goats' hair. \nAnd the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate; \nAnd spice, and oil for the light, and for the anointing oil, and for the sweet incense. \nThe children of Israel brought a willing offering unto the LORD, every man and woman, whose heart made them willing to bring for all manner of work, which the LORD had commanded to be made by the hand of Moses. \nAnd Moses said unto the children of Israel, See, the LORD hath called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah; \nAnd he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship; \nAnd to devise curious works, to work in gold, and in silver, and in brass, \nAnd in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work. \nAnd he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan. \nThem hath he filled with wisdom of heart, to work all manner of work, of the engraver, and of the cunning workman, and of the embroiderer, in blue, and in purple, in scarlet, and in fine linen, and of the weaver, even of them that do any work, and of those that devise cunning work. \nThen wrought Bezaleel and Aholiab, and every wise hearted man, in whom the LORD put wisdom and understanding to know how to work all manner of work for the service of the sanctuary, according to all that the LORD had commanded. \nAnd Moses called Bezaleel and Aholiab, and every wise hearted man, in whose heart the LORD had put wisdom, even every one whose heart stirred him up to come unto the work to do it: \nAnd they received of Moses all the offering, which the children of Israel had brought for the work of the service of the sanctuary, to make it withal. And they brought yet unto him free offerings every morning. \nAnd all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made; \nAnd they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the LORD commanded to make. \nAnd Moses gave commandment, and they caused it to be proclaimed throughout the camp, saying, Let neither man nor woman make any more work for the offering of the sanctuary. So the people were restrained from bringing. \nFor the stuff they had was sufficient for all the work to make it, and too much. \nAnd every wise hearted man among them that wrought the work of the tabernacle made ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubims of cunning work made he them. \nThe length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size. \nAnd he coupled the five curtains one unto another: and the other five curtains he coupled one unto another. \nAnd he made loops of blue on the edge of one curtain from the selvedge in the coupling: likewise he made in the uttermost side of another curtain, in the coupling of the second. \nFifty loops made he in one curtain, and fifty loops made he in the edge of the curtain which was in the coupling of the second: the loops held one curtain to another. \nAnd he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle. \nAnd he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them. \nThe length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size. \nAnd he coupled five curtains by themselves, and six curtains by themselves. \nAnd he made fifty loops upon the uttermost edge of the curtain in the coupling, and fifty loops made he upon the edge of the curtain which coupleth the second. \nAnd he made fifty taches of brass to couple the tent together, that it might be one. \nAnd he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that. \nAnd he made boards for the tabernacle of shittim wood, standing up. \nThe length of a board was ten cubits, and the breadth of a board one cubit and a half. \nOne board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle. \nAnd he made boards for the tabernacle; twenty boards for the south side southward: \nAnd forty sockets of silver he made under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons. \nAnd for the other side of the tabernacle, which is toward the north corner, he made twenty boards, \nAnd their forty sockets of silver; two sockets under one board, and two sockets under another board. \nAnd for the sides of the tabernacle westward he made six boards. \nAnd two boards made he for the corners of the tabernacle in the two sides. \nAnd they were coupled beneath, and coupled together at the head thereof, to one ring: thus he did to both of them in both the corners. \nAnd there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets. \nAnd he made bars of shittim wood; five for the boards of the one side of the tabernacle, \nAnd five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the sides westward. \nAnd he made the middle bar to shoot through the boards from the one end to the other. \nAnd he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold. \nAnd he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubims made he it of cunning work. \nAnd he made thereunto four pillars of shittim wood, and overlaid them with gold: their hooks were of gold; and he cast for them four sockets of silver. \nAnd he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework; \nAnd the five pillars of it with their hooks: and he overlaid their chapiters and their fillets with gold: but their five sockets were of brass. \nAnd Bezaleel made the ark of shittim wood: two cubits and a half was the length of it, and a cubit and a half the breadth of it, and a cubit and a half the height of it: \nAnd he overlaid it with pure gold within and without, and made a crown of gold to it round about. \nAnd he cast for it four rings of gold, to be set by the four corners of it; even two rings upon the one side of it, and two rings upon the other side of it. \nAnd he made staves of shittim wood, and overlaid them with gold. \nAnd he put the staves into the rings by the sides of the ark, to bear the ark. \nAnd he made the mercy seat of pure gold: two cubits and a half was the length thereof, and one cubit and a half the breadth thereof. \nAnd he made two cherubims of gold, beaten out of one piece made he them, on the two ends of the mercy seat; \nOne cherub on the end on this side, and another cherub on the other end on that side: out of the mercy seat made he the cherubims on the two ends thereof. \nAnd the cherubims spread out their wings on high, and covered with their wings over the mercy seat, with their faces one to another; even to the mercy seatward were the faces of the cherubims. \nAnd he made the table of shittim wood: two cubits was the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof: \nAnd he overlaid it with pure gold, and made thereunto a crown of gold round about. \nAlso he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about. \nAnd he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof. \nOver against the border were the rings, the places for the staves to bear the table. \nAnd he made the staves of shittim wood, and overlaid them with gold, to bear the table. \nAnd he made the vessels which were upon the table, his dishes, and his spoons, and his bowls, and his covers to cover withal, of pure gold. \nAnd he made the candlestick of pure gold: of beaten work made he the candlestick; his shaft, and his branch, his bowls, his knops, and his flowers, were of the same: \nAnd six branches going out of the sides thereof; three branches of the candlestick out of the one side thereof, and three branches of the candlestick out of the other side thereof: \nThree bowls made after the fashion of almonds in one branch, a knop and a flower; and three bowls made like almonds in another branch, a knop and a flower: so throughout the six branches going out of the candlestick. \nAnd in the candlestick were four bowls made like almonds, his knops, and his flowers: \nAnd a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches going out of it. \nTheir knops and their branches were of the same: all of it was one beaten work of pure gold. \nAnd he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold. \nOf a talent of pure gold made he it, and all the vessels thereof. \nAnd he made the incense altar of shittim wood: the length of it was a cubit, and the breadth of it a cubit; it was foursquare; and two cubits was the height of it; the horns thereof were of the same. \nAnd he overlaid it with pure gold, both the top of it, and the sides thereof round about, and the horns of it: also he made unto it a crown of gold round about. \nAnd he made two rings of gold for it under the crown thereof, by the two corners of it, upon the two sides thereof, to be places for the staves to bear it withal. \nAnd he made the staves of shittim wood, and overlaid them with gold. \nAnd he made the holy anointing oil, and the pure incense of sweet spices, according to the work of the apothecary. \nAnd he made the altar of burnt offering of shittim wood: five cubits was the length thereof, and five cubits the breadth thereof; it was foursquare; and three cubits the height thereof. \nAnd he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass. \nAnd he made all the vessels of the altar, the pots, and the shovels, and the basons, and the fleshhooks, and the firepans: all the vessels thereof made he of brass. \nAnd he made for the altar a brasen grate of network under the compass thereof beneath unto the midst of it. \nAnd he cast four rings for the four ends of the grate of brass, to be places for the staves. \nAnd he made the staves of shittim wood, and overlaid them with brass. \nAnd he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards. \nAnd he made the laver of brass, and the foot of it of brass, of the lookingglasses of the women assembling, which assembled at the door of the tabernacle of the congregation. \nAnd he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits: \nTheir pillars were twenty, and their brasen sockets twenty; the hooks of the pillars and their fillets were of silver. \nAnd for the north side the hangings were an hundred cubits, their pillars were twenty, and their sockets of brass twenty; the hooks of the pillars and their fillets of silver. \nAnd for the west side were hangings of fifty cubits, their pillars ten, and their sockets ten; the hooks of the pillars and their fillets of silver. \nAnd for the east side eastward fifty cubits. \nThe hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three. \nAnd for the other side of the court gate, on this hand and that hand, were hangings of fifteen cubits; their pillars three, and their sockets three. \nAll the hangings of the court round about were of fine twined linen. \nAnd the sockets for the pillars were of brass; the hooks of the pillars and their fillets of silver; and the overlaying of their chapiters of silver; and all the pillars of the court were filleted with silver. \nAnd the hanging for the gate of the court was needlework, of blue, and purple, and scarlet, and fine twined linen: and twenty cubits was the length, and the height in the breadth was five cubits, answerable to the hangings of the court. \nAnd their pillars were four, and their sockets of brass four; their hooks of silver, and the overlaying of their chapiters and their fillets of silver. \nAnd all the pins of the tabernacle, and of the court round about, were of brass. \nThis is the sum of the tabernacle, even of the tabernacle of testimony, as it was counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, son to Aaron the priest. \nAnd Bezaleel the son Uri, the son of Hur, of the tribe of Judah, made all that the LORD commanded Moses. \nAnd with him was Aholiab, son of Ahisamach, of the tribe of Dan, an engraver, and a cunning workman, and an embroiderer in blue, and in purple, and in scarlet, and fine linen. \nAll the gold that was occupied for the work in all the work of the holy place, even the gold of the offering, was twenty and nine talents, and seven hundred and thirty shekels, after the shekel of the sanctuary. \nAnd the silver of them that were numbered of the congregation was an hundred talents, and a thousand seven hundred and threescore and fifteen shekels, after the shekel of the sanctuary: \nA bekah for every man, that is, half a shekel, after the shekel of the sanctuary, for every one that went to be numbered, from twenty years old and upward, for six hundred thousand and three thousand and five hundred and fifty men. \nAnd of the hundred talents of silver were cast the sockets of the sanctuary, and the sockets of the vail; an hundred sockets of the hundred talents, a talent for a socket. \nAnd of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them. \nAnd the brass of the offering was seventy talents, and two thousand and four hundred shekels. \nAnd therewith he made the sockets to the door of the tabernacle of the congregation, and the brasen altar, and the brasen grate for it, and all the vessels of the altar, \nAnd the sockets of the court round about, and the sockets of the court gate, and all the pins of the tabernacle, and all the pins of the court round about. \nAnd of the blue, and purple, and scarlet, they made cloths of service, to do service in the holy place, and made the holy garments for Aaron; as the LORD commanded Moses. \nAnd he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen. \nAnd they did beat the gold into thin plates, and cut it into wires, to work it in the blue, and in the purple, and in the scarlet, and in the fine linen, with cunning work. \nThey made shoulderpieces for it, to couple it together: by the two edges was it coupled together. \nAnd the curious girdle of his ephod, that was upon it, was of the same, according to the work thereof; of gold, blue, and purple, and scarlet, and fine twined linen; as the LORD commanded Moses. \nAnd they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel. \nAnd he put them on the shoulders of the ephod, that they should be stones for a memorial to the children of Israel; as the LORD commanded Moses. \nAnd he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen. \nIt was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled. \nAnd they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row. \nAnd the second row, an emerald, a sapphire, and a diamond. \nAnd the third row, a ligure, an agate, and an amethyst. \nAnd the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings. \nAnd the stones were according to the names of the children of Israel, twelve, according to their names, like the engravings of a signet, every one with his name, according to the twelve tribes. \nAnd they made upon the breastplate chains at the ends, of wreathen work of pure gold. \nAnd they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate. \nAnd they put the two wreathen chains of gold in the two rings on the ends of the breastplate. \nAnd the two ends of the two wreathen chains they fastened in the two ouches, and put them on the shoulderpieces of the ephod, before it. \nAnd they made two rings of gold, and put them on the two ends of the breastplate, upon the border of it, which was on the side of the ephod inward. \nAnd they made two other golden rings, and put them on the two sides of the ephod underneath, toward the forepart of it, over against the other coupling thereof, above the curious girdle of the ephod. \nAnd they did bind the breastplate by his rings unto the rings of the ephod with a lace of blue, that it might be above the curious girdle of the ephod, and that the breastplate might not be loosed from the ephod; as the LORD commanded Moses. \nAnd he made the robe of the ephod of woven work, all of blue. \nAnd there was an hole in the midst of the robe, as the hole of an habergeon, with a band round about the hole, that it should not rend. \nAnd they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen. \nAnd they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates; \nA bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the LORD commanded Moses. \nAnd they made coats of fine linen of woven work for Aaron, and for his sons, \nAnd a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen, \nAnd a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the LORD commanded Moses. \nAnd they made the plate of the holy crown of pure gold, and wrote upon it a writing, like to the engravings of a signet, HOLINESS TO THE LORD. \nAnd they tied unto it a lace of blue, to fasten it on high upon the mitre; as the LORD commanded Moses. \nThus was all the work of the tabernacle of the tent of the congregation finished: and the children of Israel did according to all that the LORD commanded Moses, so did they. \nAnd they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets, \nAnd the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering, \nThe ark of the testimony, and the staves thereof, and the mercy seat, \nThe table, and all the vessels thereof, and the shewbread, \nThe pure candlestick, with the lamps thereof, even with the lamps to be set in order, and all the vessels thereof, and the oil for light, \nAnd the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door, \nThe brasen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot, \nThe hangings of the court, his pillars, and his sockets, and the hanging for the court gate, his cords, and his pins, and all the vessels of the service of the tabernacle, for the tent of the congregation, \nThe cloths of service to do service in the holy place, and the holy garments for Aaron the priest, and his sons' garments, to minister in the priest's office. \nAccording to all that the LORD commanded Moses, so the children of Israel made all the work. \nAnd Moses did look upon all the work, and, behold, they had done it as the LORD had commanded, even so had they done it: and Moses blessed them. \nAnd the LORD spake unto Moses, saying, \nOn the first day of the first month shalt thou set up the tabernacle of the tent of the congregation. \nAnd thou shalt put therein the ark of the testimony, and cover the ark with the vail. \nAnd thou shalt bring in the table, and set in order the things that are to be set in order upon it; and thou shalt bring in the candlestick, and light the lamps thereof. \nAnd thou shalt set the altar of gold for the incense before the ark of the testimony, and put the hanging of the door to the tabernacle. \nAnd thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation. \nAnd thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein. \nAnd thou shalt set up the court round about, and hang up the hanging at the court gate. \nAnd thou shalt take the anointing oil, and anoint the tabernacle, and all that is therein, and shalt hallow it, and all the vessels thereof: and it shall be holy. \nAnd thou shalt anoint the altar of the burnt offering, and all his vessels, and sanctify the altar: and it shall be an altar most holy. \nAnd thou shalt anoint the laver and his foot, and sanctify it. \nAnd thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water. \nAnd thou shalt put upon Aaron the holy garments, and anoint him, and sanctify him; that he may minister unto me in the priest's office. \nAnd thou shalt bring his sons, and clothe them with coats: \nAnd thou shalt anoint them, as thou didst anoint their father, that they may minister unto me in the priest's office: for their anointing shall surely be an everlasting priesthood throughout their generations. \nThus did Moses: according to all that the LORD commanded him, so did he. \nAnd it came to pass in the first month in the second year, on the first day of the month, that the tabernacle was reared up. \nAnd Moses reared up the tabernacle, and fastened his sockets, and set up the boards thereof, and put in the bars thereof, and reared up his pillars. \nAnd he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the LORD commanded Moses. \nAnd he took and put the testimony into the ark, and set the staves on the ark, and put the mercy seat above upon the ark: \nAnd he brought the ark into the tabernacle, and set up the vail of the covering, and covered the ark of the testimony; as the LORD commanded Moses. \nAnd he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail. \nAnd he set the bread in order upon it before the LORD; as the LORD had commanded Moses. \nAnd he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward. \nAnd he lighted the lamps before the LORD; as the LORD commanded Moses. \nAnd he put the golden altar in the tent of the congregation before the vail: \nAnd he burnt sweet incense thereon; as the LORD commanded Moses. \nAnd he set up the hanging at the door of the tabernacle. \nAnd he put the altar of burnt offering by the door of the tabernacle of the tent of the congregation, and offered upon it the burnt offering and the meat offering; as the LORD commanded Moses. \nAnd he set the laver between the tent of the congregation and the altar, and put water there, to wash withal. \nAnd Moses and Aaron and his sons washed their hands and their feet thereat: \nWhen they went into the tent of the congregation, and when they came near unto the altar, they washed; as the LORD commanded Moses. \nAnd he reared up the court round about the tabernacle and the altar, and set up the hanging of the court gate. So Moses finished the work. \nThen a cloud covered the tent of the congregation, and the glory of the LORD filled the tabernacle. \nAnd Moses was not able to enter into the tent of the congregation, because the cloud abode thereon, and the glory of the LORD filled the tabernacle. \nAnd when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys: \nBut if the cloud were not taken up, then they journeyed not till the day that it was taken up. \nFor the cloud of the LORD was upon the tabernacle by day, and fire was on it by night, in the sight of all the house of Israel, throughout all their journeys. \nAnd the LORD called unto Moses, and spake unto him out of the tabernacle of the congregation, saying, \nSpeak unto the children of Israel, and say unto them, If any man of you bring an offering unto the LORD, ye shall bring your offering of the cattle, even of the herd, and of the flock. \nIf his offering be a burnt sacrifice of the herd, let him offer a male without blemish: he shall offer it of his own voluntary will at the door of the tabernacle of the congregation before the LORD. \nAnd he shall put his hand upon the head of the burnt offering; and it shall be accepted for him to make atonement for him. \nAnd he shall kill the bullock before the LORD: and the priests, Aaron's sons, shall bring the blood, and sprinkle the blood round about upon the altar that is by the door of the tabernacle of the congregation. \nAnd he shall flay the burnt offering, and cut it into his pieces. \nAnd the sons of Aaron the priest shall put fire upon the altar, and lay the wood in order upon the fire: \nAnd the priests, Aaron's sons, shall lay the parts, the head, and the fat, in order upon the wood that is on the fire which is upon the altar: \nBut his inwards and his legs shall he wash in water: and the priest shall burn all on the altar, to be a burnt sacrifice, an offering made by fire, of a sweet savour unto the LORD. \nAnd if his offering be of the flocks, namely, of the sheep, or of the goats, for a burnt sacrifice; he shall bring it a male without blemish. \nAnd he shall kill it on the side of the altar northward before the LORD: and the priests, Aaron's sons, shall sprinkle his blood round about upon the altar. \nAnd he shall cut it into his pieces, with his head and his fat: and the priest shall lay them in order on the wood that is on the fire which is upon the altar: \nBut he shall wash the inwards and the legs with water: and the priest shall bring it all, and burn it upon the altar: it is a burnt sacrifice, an offering made by fire, of a sweet savour unto the LORD. \nAnd if the burnt sacrifice for his offering to the LORD be of fowls, then he shall bring his offering of turtledoves, or of young pigeons. \nAnd the priest shall bring it unto the altar, and wring off his head, and burn it on the altar; and the blood thereof shall be wrung out at the side of the altar: \nAnd he shall pluck away his crop with his feathers, and cast it beside the altar on the east part, by the place of the ashes: \nAnd he shall cleave it with the wings thereof, but shall not divide it asunder: and the priest shall burn it upon the altar, upon the wood that is upon the fire: it is a burnt sacrifice, an offering made by fire, of a sweet savour unto the LORD. \nAnd when any will offer a meat offering unto the LORD, his offering shall be of fine flour; and he shall pour oil upon it, and put frankincense thereon: \nAnd he shall bring it to Aaron's sons the priests: and he shall take thereout his handful of the flour thereof, and of the oil thereof, with all the frankincense thereof; and the priest shall burn the memorial of it upon the altar, to be an offering made by fire, of a sweet savour unto the LORD: \nAnd the remnant of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire. \nAnd if thou bring an oblation of a meat offering baken in the oven, it shall be unleavened cakes of fine flour mingled with oil, or unleavened wafers anointed with oil. \nAnd if thy oblation be a meat offering baken in a pan, it shall be of fine flour unleavened, mingled with oil. \nThou shalt part it in pieces, and pour oil thereon: it is a meat offering. \nAnd if thy oblation be a meat offering baken in the fryingpan, it shall be made of fine flour with oil. \nAnd thou shalt bring the meat offering that is made of these things unto the LORD: and when it is presented unto the priest, he shall bring it unto the altar. \nAnd the priest shall take from the meat offering a memorial thereof, and shall burn it upon the altar: it is an offering made by fire, of a sweet savour unto the LORD. \nAnd that which is left of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire. \nNo meat offering, which ye shall bring unto the LORD, shall be made with leaven: for ye shall burn no leaven, nor any honey, in any offering of the LORD made by fire. \nAs for the oblation of the firstfruits, ye shall offer them unto the LORD: but they shall not be burnt on the altar for a sweet savour. \nAnd every oblation of thy meat offering shalt thou season with salt; neither shalt thou suffer the salt of the covenant of thy God to be lacking from thy meat offering: with all thine offerings thou shalt offer salt. \nAnd if thou offer a meat offering of thy firstfruits unto the LORD, thou shalt offer for the meat offering of thy firstfruits green ears of corn dried by the fire, even corn beaten out of full ears. \nAnd thou shalt put oil upon it, and lay frankincense thereon: it is a meat offering. \nAnd the priest shall burn the memorial of it, part of the beaten corn thereof, and part of the oil thereof, with all the frankincense thereof: it is an offering made by fire unto the LORD. \nAnd if his oblation be a sacrifice of peace offering, if he offer it of the herd; whether it be a male or female, he shall offer it without blemish before the LORD. \nAnd he shall lay his hand upon the head of his offering, and kill it at the door of the tabernacle of the congregation: and Aaron's sons the priests shall sprinkle the blood upon the altar round about. \nAnd he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards, \nAnd the two kidneys, and the fat that is on them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away. \nAnd Aaron's sons shall burn it on the altar upon the burnt sacrifice, which is upon the wood that is on the fire: it is an offering made by fire, of a sweet savour unto the LORD. \nAnd if his offering for a sacrifice of peace offering unto the LORD be of the flock; male or female, he shall offer it without blemish. \nIf he offer a lamb for his offering, then shall he offer it before the LORD. \nAnd he shall lay his hand upon the head of his offering, and kill it before the tabernacle of the congregation: and Aaron's sons shall sprinkle the blood thereof round about upon the altar. \nAnd he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat thereof, and the whole rump, it shall he take off hard by the backbone; and the fat that covereth the inwards, and all the fat that is upon the inwards, \nAnd the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away. \nAnd the priest shall burn it upon the altar: it is the food of the offering made by fire unto the LORD. \nAnd if his offering be a goat, then he shall offer it before the LORD. \nAnd he shall lay his hand upon the head of it, and kill it before the tabernacle of the congregation: and the sons of Aaron shall sprinkle the blood thereof upon the altar round about. \nAnd he shall offer thereof his offering, even an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards, \nAnd the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away. \nAnd the priest shall burn them upon the altar: it is the food of the offering made by fire for a sweet savour: all the fat is the LORD's. \nIt shall be a perpetual statute for your generations throughout all your dwellings, that ye eat neither fat nor blood. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, If a soul shall sin through ignorance against any of the commandments of the LORD concerning things which ought not to be done, and shall do against any of them: \nIf the priest that is anointed do sin according to the sin of the people; then let him bring for his sin, which he hath sinned, a young bullock without blemish unto the LORD for a sin offering. \nAnd he shall bring the bullock unto the door of the tabernacle of the congregation before the LORD; and shall lay his hand upon the bullock's head, and kill the bullock before the LORD. \nAnd the priest that is anointed shall take of the bullock's blood, and bring it to the tabernacle of the congregation: \nAnd the priest shall dip his finger in the blood, and sprinkle of the blood seven times before the LORD, before the vail of the sanctuary. \nAnd the priest shall put some of the blood upon the horns of the altar of sweet incense before the LORD, which is in the tabernacle of the congregation; and shall pour all the blood of the bullock at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation. \nAnd he shall take off from it all the fat of the bullock for the sin offering; the fat that covereth the inwards, and all the fat that is upon the inwards, \nAnd the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away, \nAs it was taken off from the bullock of the sacrifice of peace offerings: and the priest shall burn them upon the altar of the burnt offering. \nAnd the skin of the bullock, and all his flesh, with his head, and with his legs, and his inwards, and his dung, \nEven the whole bullock shall he carry forth without the camp unto a clean place, where the ashes are poured out, and burn him on the wood with fire: where the ashes are poured out shall he be burnt. \nAnd if the whole congregation of Israel sin through ignorance, and the thing be hid from the eyes of the assembly, and they have done somewhat against any of the commandments of the LORD concerning things which should not be done, and are guilty; \nWhen the sin, which they have sinned against it, is known, then the congregation shall offer a young bullock for the sin, and bring him before the tabernacle of the congregation. \nAnd the elders of the congregation shall lay their hands upon the head of the bullock before the LORD: and the bullock shall be killed before the LORD. \nAnd the priest that is anointed shall bring of the bullock's blood to the tabernacle of the congregation: \nAnd the priest shall dip his finger in some of the blood, and sprinkle it seven times before the LORD, even before the vail. \nAnd he shall put some of the blood upon the horns of the altar which is before the LORD, that is in the tabernacle of the congregation, and shall pour out all the blood at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation. \nAnd he shall take all his fat from him, and burn it upon the altar. \nAnd he shall do with the bullock as he did with the bullock for a sin offering, so shall he do with this: and the priest shall make an atonement for them, and it shall be forgiven them. \nAnd he shall carry forth the bullock without the camp, and burn him as he burned the first bullock: it is a sin offering for the congregation. \nWhen a ruler hath sinned, and done somewhat through ignorance against any of the commandments of the LORD his God concerning things which should not be done, and is guilty; \nOr if his sin, wherein he hath sinned, come to his knowledge; he shall bring his offering, a kid of the goats, a male without blemish: \nAnd he shall lay his hand upon the head of the goat, and kill it in the place where they kill the burnt offering before the LORD: it is a sin offering. \nAnd the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out his blood at the bottom of the altar of burnt offering. \nAnd he shall burn all his fat upon the altar, as the fat of the sacrifice of peace offerings: and the priest shall make an atonement for him as concerning his sin, and it shall be forgiven him. \nAnd if any one of the common people sin through ignorance, while he doeth somewhat against any of the commandments of the LORD concerning things which ought not to be done, and be guilty; \nOr if his sin, which he hath sinned, come to his knowledge: then he shall bring his offering, a kid of the goats, a female without blemish, for his sin which he hath sinned. \nAnd he shall lay his hand upon the head of the sin offering, and slay the sin offering in the place of the burnt offering. \nAnd the priest shall take of the blood thereof with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar. \nAnd he shall take away all the fat thereof, as the fat is taken away from off the sacrifice of peace offerings; and the priest shall burn it upon the altar for a sweet savour unto the LORD; and the priest shall make an atonement for him, and it shall be forgiven him. \nAnd if he bring a lamb for a sin offering, he shall bring it a female without blemish. \nAnd he shall lay his hand upon the head of the sin offering, and slay it for a sin offering in the place where they kill the burnt offering. \nAnd the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar: \nAnd he shall take away all the fat thereof, as the fat of the lamb is taken away from the sacrifice of the peace offerings; and the priest shall burn them upon the altar, according to the offerings made by fire unto the LORD: and the priest shall make an atonement for his sin that he hath committed, and it shall be forgiven him. \nAnd if a soul sin, and hear the voice of swearing, and is a witness, whether he hath seen or known of it; if he do not utter it, then he shall bear his iniquity. \nOr if a soul touch any unclean thing, whether it be a carcase of an unclean beast, or a carcase of unclean cattle, or the carcase of unclean creeping things, and if it be hidden from him; he also shall be unclean, and guilty. \nOr if he touch the uncleanness of man, whatsoever uncleanness it be that a man shall be defiled withal, and it be hid from him; when he knoweth of it, then he shall be guilty. \nOr if a soul swear, pronouncing with his lips to do evil, or to do good, whatsoever it be that a man shall pronounce with an oath, and it be hid from him; when he knoweth of it, then he shall be guilty in one of these. \nAnd it shall be, when he shall be guilty in one of these things, that he shall confess that he hath sinned in that thing: \nAnd he shall bring his trespass offering unto the LORD for his sin which he hath sinned, a female from the flock, a lamb or a kid of the goats, for a sin offering; and the priest shall make an atonement for him concerning his sin. \nAnd if he be not able to bring a lamb, then he shall bring for his trespass, which he hath committed, two turtledoves, or two young pigeons, unto the LORD; one for a sin offering, and the other for a burnt offering. \nAnd he shall bring them unto the priest, who shall offer that which is for the sin offering first, and wring off his head from his neck, but shall not divide it asunder: \nAnd he shall sprinkle of the blood of the sin offering upon the side of the altar; and the rest of the blood shall be wrung out at the bottom of the altar: it is a sin offering. \nAnd he shall offer the second for a burnt offering, according to the manner: and the priest shall make an atonement for him for his sin which he hath sinned, and it shall be forgiven him. \nBut if he be not able to bring two turtledoves, or two young pigeons, then he that sinned shall bring for his offering the tenth part of an ephah of fine flour for a sin offering; he shall put no oil upon it, neither shall he put any frankincense thereon: for it is a sin offering. \nThen shall he bring it to the priest, and the priest shall take his handful of it, even a memorial thereof, and burn it on the altar, according to the offerings made by fire unto the LORD: it is a sin offering. \nAnd the priest shall make an atonement for him as touching his sin that he hath sinned in one of these, and it shall be forgiven him: and the remnant shall be the priest's, as a meat offering. \nAnd the LORD spake unto Moses, saying, \nIf a soul commit a trespass, and sin through ignorance, in the holy things of the LORD; then he shall bring for his trespass unto the LORD a ram without blemish out of the flocks, with thy estimation by shekels of silver, after the shekel of the sanctuary, for a trespass offering. \nAnd he shall make amends for the harm that he hath done in the holy thing, and shall add the fifth part thereto, and give it unto the priest: and the priest shall make an atonement for him with the ram of the trespass offering, and it shall be forgiven him. \nAnd if a soul sin, and commit any of these things which are forbidden to be done by the commandments of the LORD; though he wist it not, yet is he guilty, and shall bear his iniquity. \nAnd he shall bring a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest: and the priest shall make an atonement for him concerning his ignorance wherein he erred and wist it not, and it shall be forgiven him. \nIt is a trespass offering: he hath certainly trespassed against the LORD. \nAnd the LORD spake unto Moses, saying, \nIf a soul sin, and commit a trespass against the LORD, and lie unto his neighbour in that which was delivered him to keep, or in fellowship, or in a thing taken away by violence, or hath deceived his neighbour; \nOr have found that which was lost, and lieth concerning it, and sweareth falsely; in any of all these that a man doeth, sinning therein: \nThen it shall be, because he hath sinned, and is guilty, that he shall restore that which he took violently away, or the thing which he hath deceitfully gotten, or that which was delivered him to keep, or the lost thing which he found, \nOr all that about which he hath sworn falsely; he shall even restore it in the principal, and shall add the fifth part more thereto, and give it unto him to whom it appertaineth, in the day of his trespass offering. \nAnd he shall bring his trespass offering unto the LORD, a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest: \nAnd the priest shall make an atonement for him before the LORD: and it shall be forgiven him for any thing of all that he hath done in trespassing therein. \nAnd the LORD spake unto Moses, saying, \nCommand Aaron and his sons, saying, This is the law of the burnt offering: It is the burnt offering, because of the burning upon the altar all night unto the morning, and the fire of the altar shall be burning in it. \nAnd the priest shall put on his linen garment, and his linen breeches shall he put upon his flesh, and take up the ashes which the fire hath consumed with the burnt offering on the altar, and he shall put them beside the altar. \nAnd he shall put off his garments, and put on other garments, and carry forth the ashes without the camp unto a clean place. \nAnd the fire upon the altar shall be burning in it; it shall not be put out: and the priest shall burn wood on it every morning, and lay the burnt offering in order upon it; and he shall burn thereon the fat of the peace offerings. \nThe fire shall ever be burning upon the altar; it shall never go out. \nAnd this is the law of the meat offering: the sons of Aaron shall offer it before the LORD, before the altar. \nAnd he shall take of it his handful, of the flour of the meat offering, and of the oil thereof, and all the frankincense which is upon the meat offering, and shall burn it upon the altar for a sweet savour, even the memorial of it, unto the LORD. \nAnd the remainder thereof shall Aaron and his sons eat: with unleavened bread shall it be eaten in the holy place; in the court of the tabernacle of the congregation they shall eat it. \nIt shall not be baken with leaven. I have given it unto them for their portion of my offerings made by fire; it is most holy, as is the sin offering, and as the trespass offering. \nAll the males among the children of Aaron shall eat of it. It shall be a statute for ever in your generations concerning the offerings of the LORD made by fire: every one that toucheth them shall be holy. \nAnd the LORD spake unto Moses, saying, \nThis is the offering of Aaron and of his sons, which they shall offer unto the LORD in the day when he is anointed; the tenth part of an ephah of fine flour for a meat offering perpetual, half of it in the morning, and half thereof at night. \nIn a pan it shall be made with oil; and when it is baken, thou shalt bring it in: and the baken pieces of the meat offering shalt thou offer for a sweet savour unto the LORD. \nAnd the priest of his sons that is anointed in his stead shall offer it: it is a statute for ever unto the LORD; it shall be wholly burnt. \nFor every meat offering for the priest shall be wholly burnt: it shall not be eaten. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron and to his sons, saying, This is the law of the sin offering: In the place where the burnt offering is killed shall the sin offering be killed before the LORD: it is most holy. \nThe priest that offereth it for sin shall eat it: in the holy place shall it be eaten, in the court of the tabernacle of the congregation. \nWhatsoever shall touch the flesh thereof shall be holy: and when there is sprinkled of the blood thereof upon any garment, thou shalt wash that whereon it was sprinkled in the holy place. \nBut the earthen vessel wherein it is sodden shall be broken: and if it be sodden in a brasen pot, it shall be both scoured, and rinsed in water. \nAll the males among the priests shall eat thereof: it is most holy. \nAnd no sin offering, whereof any of the blood is brought into the tabernacle of the congregation to reconcile withal in the holy place, shall be eaten: it shall be burnt in the fire. \nLikewise this is the law of the trespass offering: it is most holy. \nIn the place where they kill the burnt offering shall they kill the trespass offering: and the blood thereof shall he sprinkle round about upon the altar. \nAnd he shall offer of it all the fat thereof; the rump, and the fat that covereth the inwards, \nAnd the two kidneys, and the fat that is on them, which is by the flanks, and the caul that is above the liver, with the kidneys, it shall he take away: \nAnd the priest shall burn them upon the altar for an offering made by fire unto the LORD: it is a trespass offering. \nEvery male among the priests shall eat thereof: it shall be eaten in the holy place: it is most holy. \nAs the sin offering is, so is the trespass offering: there is one law for them: the priest that maketh atonement therewith shall have it. \nAnd the priest that offereth any man's burnt offering, even the priest shall have to himself the skin of the burnt offering which he hath offered. \nAnd all the meat offering that is baken in the oven, and all that is dressed in the fryingpan, and in the pan, shall be the priest's that offereth it. \nAnd every meat offering, mingled with oil, and dry, shall all the sons of Aaron have, one as much as another. \nAnd this is the law of the sacrifice of peace offerings, which he shall offer unto the LORD. \nIf he offer it for a thanksgiving, then he shall offer with the sacrifice of thanksgiving unleavened cakes mingled with oil, and unleavened wafers anointed with oil, and cakes mingled with oil, of fine flour, fried. \nBesides the cakes, he shall offer for his offering leavened bread with the sacrifice of thanksgiving of his peace offerings. \nAnd of it he shall offer one out of the whole oblation for an heave offering unto the LORD, and it shall be the priest's that sprinkleth the blood of the peace offerings. \nAnd the flesh of the sacrifice of his peace offerings for thanksgiving shall be eaten the same day that it is offered; he shall not leave any of it until the morning. \nBut if the sacrifice of his offering be a vow, or a voluntary offering, it shall be eaten the same day that he offereth his sacrifice: and on the morrow also the remainder of it shall be eaten: \nBut the remainder of the flesh of the sacrifice on the third day shall be burnt with fire. \nAnd if any of the flesh of the sacrifice of his peace offerings be eaten at all on the third day, it shall not be accepted, neither shall it be imputed unto him that offereth it: it shall be an abomination, and the soul that eateth of it shall bear his iniquity. \nAnd the flesh that toucheth any unclean thing shall not be eaten; it shall be burnt with fire: and as for the flesh, all that be clean shall eat thereof. \nBut the soul that eateth of the flesh of the sacrifice of peace offerings, that pertain unto the LORD, having his uncleanness upon him, even that soul shall be cut off from his people. \nMoreover the soul that shall touch any unclean thing, as the uncleanness of man, or any unclean beast, or any abominable unclean thing, and eat of the flesh of the sacrifice of peace offerings, which pertain unto the LORD, even that soul shall be cut off from his people. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, Ye shall eat no manner of fat, of ox, or of sheep, or of goat. \nAnd the fat of the beast that dieth of itself, and the fat of that which is torn with beasts, may be used in any other use: but ye shall in no wise eat of it. \nFor whosoever eateth the fat of the beast, of which men offer an offering made by fire unto the LORD, even the soul that eateth it shall be cut off from his people. \nMoreover ye shall eat no manner of blood, whether it be of fowl or of beast, in any of your dwellings. \nWhatsoever soul it be that eateth any manner of blood, even that soul shall be cut off from his people. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, He that offereth the sacrifice of his peace offerings unto the LORD shall bring his oblation unto the LORD of the sacrifice of his peace offerings. \nHis own hands shall bring the offerings of the LORD made by fire, the fat with the breast, it shall he bring, that the breast may be waved for a wave offering before the LORD. \nAnd the priest shall burn the fat upon the altar: but the breast shall be Aaron's and his sons'. \nAnd the right shoulder shall ye give unto the priest for an heave offering of the sacrifices of your peace offerings. \nHe among the sons of Aaron, that offereth the blood of the peace offerings, and the fat, shall have the right shoulder for his part. \nFor the wave breast and the heave shoulder have I taken of the children of Israel from off the sacrifices of their peace offerings, and have given them unto Aaron the priest and unto his sons by a statute for ever from among the children of Israel. \nThis is the portion of the anointing of Aaron, and of the anointing of his sons, out of the offerings of the LORD made by fire, in the day when he presented them to minister unto the LORD in the priest's office; \nWhich the LORD commanded to be given them of the children of Israel, in the day that he anointed them, by a statute for ever throughout their generations. \nThis is the law of the burnt offering, of the meat offering, and of the sin offering, and of the trespass offering, and of the consecrations, and of the sacrifice of the peace offerings; \nWhich the LORD commanded Moses in mount Sinai, in the day that he commanded the children of Israel to offer their oblations unto the LORD, in the wilderness of Sinai. \nAnd the LORD spake unto Moses, saying, \nTake Aaron and his sons with him, and the garments, and the anointing oil, and a bullock for the sin offering, and two rams, and a basket of unleavened bread; \nAnd gather thou all the congregation together unto the door of the tabernacle of the congregation. \nAnd Moses did as the LORD commanded him; and the assembly was gathered together unto the door of the tabernacle of the congregation. \nAnd Moses said unto the congregation, This is the thing which the LORD commanded to be done. \nAnd Moses brought Aaron and his sons, and washed them with water. \nAnd he put upon him the coat, and girded him with the girdle, and clothed him with the robe, and put the ephod upon him, and he girded him with the curious girdle of the ephod, and bound it unto him therewith. \nAnd he put the breastplate upon him: also he put in the breastplate the Urim and the Thummim. \nAnd he put the mitre upon his head; also upon the mitre, even upon his forefront, did he put the golden plate, the holy crown; as the LORD commanded Moses. \nAnd Moses took the anointing oil, and anointed the tabernacle and all that was therein, and sanctified them. \nAnd he sprinkled thereof upon the altar seven times, and anointed the altar and all his vessels, both the laver and his foot, to sanctify them. \nAnd he poured of the anointing oil upon Aaron's head, and anointed him, to sanctify him. \nAnd Moses brought Aaron's sons, and put coats upon them, and girded them with girdles, and put bonnets upon them; as the LORD commanded Moses. \nAnd he brought the bullock for the sin offering: and Aaron and his sons laid their hands upon the head of the bullock for the sin offering. \nAnd he slew it; and Moses took the blood, and put it upon the horns of the altar round about with his finger, and purified the altar, and poured the blood at the bottom of the altar, and sanctified it, to make reconciliation upon it. \nAnd he took all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and Moses burned it upon the altar. \nBut the bullock, and his hide, his flesh, and his dung, he burnt with fire without the camp; as the LORD commanded Moses. \nAnd he brought the ram for the burnt offering: and Aaron and his sons laid their hands upon the head of the ram. \nAnd he killed it; and Moses sprinkled the blood upon the altar round about. \nAnd he cut the ram into pieces; and Moses burnt the head, and the pieces, and the fat. \nAnd he washed the inwards and the legs in water; and Moses burnt the whole ram upon the altar: it was a burnt sacrifice for a sweet savour, and an offering made by fire unto the LORD; as the LORD commanded Moses. \nAnd he brought the other ram, the ram of consecration: and Aaron and his sons laid their hands upon the head of the ram. \nAnd he slew it; and Moses took of the blood of it, and put it upon the tip of Aaron's right ear, and upon the thumb of his right hand, and upon the great toe of his right foot. \nAnd he brought Aaron's sons, and Moses put of the blood upon the tip of their right ear, and upon the thumbs of their right hands, and upon the great toes of their right feet: and Moses sprinkled the blood upon the altar round about. \nAnd he took the fat, and the rump, and all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and the right shoulder: \nAnd out of the basket of unleavened bread, that was before the LORD, he took one unleavened cake, and a cake of oiled bread, and one wafer, and put them on the fat, and upon the right shoulder: \nAnd he put all upon Aaron's hands, and upon his sons' hands, and waved them for a wave offering before the LORD. \nAnd Moses took them from off their hands, and burnt them on the altar upon the burnt offering: they were consecrations for a sweet savour: it is an offering made by fire unto the LORD. \nAnd Moses took the breast, and waved it for a wave offering before the LORD: for of the ram of consecration it was Moses' part; as the LORD commanded Moses. \nAnd Moses took of the anointing oil, and of the blood which was upon the altar, and sprinkled it upon Aaron, and upon his garments, and upon his sons, and upon his sons' garments with him; and sanctified Aaron, and his garments, and his sons, and his sons' garments with him. \nAnd Moses said unto Aaron and to his sons, Boil the flesh at the door of the tabernacle of the congregation: and there eat it with the bread that is in the basket of consecrations, as I commanded, saying, Aaron and his sons shall eat it. \nAnd that which remaineth of the flesh and of the bread shall ye burn with fire. \nAnd ye shall not go out of the door of the tabernacle of the congregation in seven days, until the days of your consecration be at an end: for seven days shall he consecrate you. \nAs he hath done this day, so the LORD hath commanded to do, to make an atonement for you. \nTherefore shall ye abide at the door of the tabernacle of the congregation day and night seven days, and keep the charge of the LORD, that ye die not: for so I am commanded. \nSo Aaron and his sons did all things which the LORD commanded by the hand of Moses. \nAnd it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel; \nAnd he said unto Aaron, Take thee a young calf for a sin offering, and a ram for a burnt offering, without blemish, and offer them before the LORD. \nAnd unto the children of Israel thou shalt speak, saying, Take ye a kid of the goats for a sin offering; and a calf and a lamb, both of the first year, without blemish, for a burnt offering; \nAlso a bullock and a ram for peace offerings, to sacrifice before the LORD; and a meat offering mingled with oil: for to day the LORD will appear unto you. \nAnd they brought that which Moses commanded before the tabernacle of the congregation: and all the congregation drew near and stood before the LORD. \nAnd Moses said, This is the thing which the LORD commanded that ye should do: and the glory of the LORD shall appear unto you. \nAnd Moses said unto Aaron, Go unto the altar, and offer thy sin offering, and thy burnt offering, and make an atonement for thyself, and for the people: and offer the offering of the people, and make an atonement for them; as the LORD commanded. \nAaron therefore went unto the altar, and slew the calf of the sin offering, which was for himself. \nAnd the sons of Aaron brought the blood unto him: and he dipped his finger in the blood, and put it upon the horns of the altar, and poured out the blood at the bottom of the altar: \nBut the fat, and the kidneys, and the caul above the liver of the sin offering, he burnt upon the altar; as the LORD commanded Moses. \nAnd the flesh and the hide he burnt with fire without the camp. \nAnd he slew the burnt offering; and Aaron's sons presented unto him the blood, which he sprinkled round about upon the altar. \nAnd they presented the burnt offering unto him, with the pieces thereof, and the head: and he burnt them upon the altar. \nAnd he did wash the inwards and the legs, and burnt them upon the burnt offering on the altar. \nAnd he brought the people's offering, and took the goat, which was the sin offering for the people, and slew it, and offered it for sin, as the first. \nAnd he brought the burnt offering, and offered it according to the manner. \nAnd he brought the meat offering, and took an handful thereof, and burnt it upon the altar, beside the burnt sacrifice of the morning. \nHe slew also the bullock and the ram for a sacrifice of peace offerings, which was for the people: and Aaron's sons presented unto him the blood, which he sprinkled upon the altar round about, \nAnd the fat of the bullock and of the ram, the rump, and that which covereth the inwards, and the kidneys, and the caul above the liver: \nAnd they put the fat upon the breasts, and he burnt the fat upon the altar: \nAnd the breasts and the right shoulder Aaron waved for a wave offering before the LORD; as Moses commanded. \nAnd Aaron lifted up his hand toward the people, and blessed them, and came down from offering of the sin offering, and the burnt offering, and peace offerings. \nAnd Moses and Aaron went into the tabernacle of the congregation, and came out, and blessed the people: and the glory of the LORD appeared unto all the people. \nAnd there came a fire out from before the LORD, and consumed upon the altar the burnt offering and the fat: which when all the people saw, they shouted, and fell on their faces. \nAnd Nadab and Abihu, the sons of Aaron, took either of them his censer, and put fire therein, and put incense thereon, and offered strange fire before the LORD, which he commanded them not. \nAnd there went out fire from the LORD, and devoured them, and they died before the LORD. \nThen Moses said unto Aaron, This is it that the LORD spake, saying, I will be sanctified in them that come nigh me, and before all the people I will be glorified. And Aaron held his peace. \nAnd Moses called Mishael and Elzaphan, the sons of Uzziel the uncle of Aaron, and said unto them, Come near, carry your brethren from before the sanctuary out of the camp. \nSo they went near, and carried them in their coats out of the camp; as Moses had said. \nAnd Moses said unto Aaron, and unto Eleazar and unto Ithamar, his sons, Uncover not your heads, neither rend your clothes; lest ye die, and lest wrath come upon all the people: but let your brethren, the whole house of Israel, bewail the burning which the LORD hath kindled. \nAnd ye shall not go out from the door of the tabernacle of the congregation, lest ye die: for the anointing oil of the LORD is upon you. And they did according to the word of Moses. \nAnd the LORD spake unto Aaron, saying, \nDo not drink wine nor strong drink, thou, nor thy sons with thee, when ye go into the tabernacle of the congregation, lest ye die: it shall be a statute for ever throughout your generations: \nAnd that ye may put difference between holy and unholy, and between unclean and clean; \nAnd that ye may teach the children of Israel all the statutes which the LORD hath spoken unto them by the hand of Moses. \nAnd Moses spake unto Aaron, and unto Eleazar and unto Ithamar, his sons that were left, Take the meat offering that remaineth of the offerings of the LORD made by fire, and eat it without leaven beside the altar: for it is most holy: \nAnd ye shall eat it in the holy place, because it is thy due, and thy sons' due, of the sacrifices of the LORD made by fire: for so I am commanded. \nAnd the wave breast and heave shoulder shall ye eat in a clean place; thou, and thy sons, and thy daughters with thee: for they be thy due, and thy sons' due, which are given out of the sacrifices of peace offerings of the children of Israel. \nThe heave shoulder and the wave breast shall they bring with the offerings made by fire of the fat, to wave it for a wave offering before the LORD; and it shall be thine, and thy sons' with thee, by a statute for ever; as the LORD hath commanded. \nAnd Moses diligently sought the goat of the sin offering, and, behold, it was burnt: and he was angry with Eleazar and Ithamar, the sons of Aaron which were left alive, saying, \nWherefore have ye not eaten the sin offering in the holy place, seeing it is most holy, and God hath given it you to bear the iniquity of the congregation, to make atonement for them before the LORD? \nBehold, the blood of it was not brought in within the holy place: ye should indeed have eaten it in the holy place, as I commanded. \nAnd Aaron said unto Moses, Behold, this day have they offered their sin offering and their burnt offering before the LORD; and such things have befallen me: and if I had eaten the sin offering to day, should it have been accepted in the sight of the LORD? \nAnd when Moses heard that, he was content. \nAnd the LORD spake unto Moses and to Aaron, saying unto them, \nSpeak unto the children of Israel, saying, These are the beasts which ye shall eat among all the beasts that are on the earth. \nWhatsoever parteth the hoof, and is clovenfooted, and cheweth the cud, among the beasts, that shall ye eat. \nNevertheless these shall ye not eat of them that chew the cud, or of them that divide the hoof: as the camel, because he cheweth the cud, but divideth not the hoof; he is unclean unto you. \nAnd the coney, because he cheweth the cud, but divideth not the hoof; he is unclean unto you. \nAnd the hare, because he cheweth the cud, but divideth not the hoof; he is unclean unto you. \nAnd the swine, though he divide the hoof, and be clovenfooted, yet he cheweth not the cud; he is unclean to you. \nOf their flesh shall ye not eat, and their carcase shall ye not touch; they are unclean to you. \nThese shall ye eat of all that are in the waters: whatsoever hath fins and scales in the waters, in the seas, and in the rivers, them shall ye eat. \nAnd all that have not fins and scales in the seas, and in the rivers, of all that move in the waters, and of any living thing which is in the waters, they shall be an abomination unto you: \nThey shall be even an abomination unto you; ye shall not eat of their flesh, but ye shall have their carcases in abomination. \nWhatsoever hath no fins nor scales in the waters, that shall be an abomination unto you. \nAnd these are they which ye shall have in abomination among the fowls; they shall not be eaten, they are an abomination: the eagle, and the ossifrage, and the ospray, \nAnd the vulture, and the kite after his kind; \nEvery raven after his kind; \nAnd the owl, and the night hawk, and the cuckow, and the hawk after his kind, \nAnd the little owl, and the cormorant, and the great owl, \nAnd the swan, and the pelican, and the gier eagle, \nAnd the stork, the heron after her kind, and the lapwing, and the bat. \nAll fowls that creep, going upon all four, shall be an abomination unto you. \nYet these may ye eat of every flying creeping thing that goeth upon all four, which have legs above their feet, to leap withal upon the earth; \nEven these of them ye may eat; the locust after his kind, and the bald locust after his kind, and the beetle after his kind, and the grasshopper after his kind. \nBut all other flying creeping things, which have four feet, shall be an abomination unto you. \nAnd for these ye shall be unclean: whosoever toucheth the carcase of them shall be unclean until the even. \nAnd whosoever beareth ought of the carcase of them shall wash his clothes, and be unclean until the even. \nThe carcases of every beast which divideth the hoof, and is not clovenfooted, nor cheweth the cud, are unclean unto you: every one that toucheth them shall be unclean. \nAnd whatsoever goeth upon his paws, among all manner of beasts that go on all four, those are unclean unto you: whoso toucheth their carcase shall be unclean until the even. \nAnd he that beareth the carcase of them shall wash his clothes, and be unclean until the even: they are unclean unto you. \nThese also shall be unclean unto you among the creeping things that creep upon the earth; the weasel, and the mouse, and the tortoise after his kind, \nAnd the ferret, and the chameleon, and the lizard, and the snail, and the mole. \nThese are unclean to you among all that creep: whosoever doth touch them, when they be dead, shall be unclean until the even. \nAnd upon whatsoever any of them, when they are dead, doth fall, it shall be unclean; whether it be any vessel of wood, or raiment, or skin, or sack, whatsoever vessel it be, wherein any work is done, it must be put into water, and it shall be unclean until the even; so it shall be cleansed. \nAnd every earthen vessel, whereinto any of them falleth, whatsoever is in it shall be unclean; and ye shall break it. \nOf all meat which may be eaten, that on which such water cometh shall be unclean: and all drink that may be drunk in every such vessel shall be unclean. \nAnd every thing whereupon any part of their carcase falleth shall be unclean; whether it be oven, or ranges for pots, they shall be broken down: for they are unclean and shall be unclean unto you. \nNevertheless a fountain or pit, wherein there is plenty of water, shall be clean: but that which toucheth their carcase shall be unclean. \nAnd if any part of their carcase fall upon any sowing seed which is to be sown, it shall be clean. \nBut if any water be put upon the seed, and any part of their carcase fall thereon, it shall be unclean unto you. \nAnd if any beast, of which ye may eat, die; he that toucheth the carcase thereof shall be unclean until the even. \nAnd he that eateth of the carcase of it shall wash his clothes, and be unclean until the even: he also that beareth the carcase of it shall wash his clothes, and be unclean until the even. \nAnd every creeping thing that creepeth upon the earth shall be an abomination; it shall not be eaten. \nWhatsoever goeth upon the belly, and whatsoever goeth upon all four, or whatsoever hath more feet among all creeping things that creep upon the earth, them ye shall not eat; for they are an abomination. \nYe shall not make yourselves abominable with any creeping thing that creepeth, neither shall ye make yourselves unclean with them, that ye should be defiled thereby. \nFor I am the LORD your God: ye shall therefore sanctify yourselves, and ye shall be holy; for I am holy: neither shall ye defile yourselves with any manner of creeping thing that creepeth upon the earth. \nFor I am the LORD that bringeth you up out of the land of Egypt, to be your God: ye shall therefore be holy, for I am holy. \nThis is the law of the beasts, and of the fowl, and of every living creature that moveth in the waters, and of every creature that creepeth upon the earth: \nTo make a difference between the unclean and the clean, and between the beast that may be eaten and the beast that may not be eaten. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, If a woman have conceived seed, and born a man child: then she shall be unclean seven days; according to the days of the separation for her infirmity shall she be unclean. \nAnd in the eighth day the flesh of his foreskin shall be circumcised. \nAnd she shall then continue in the blood of her purifying three and thirty days; she shall touch no hallowed thing, nor come into the sanctuary, until the days of her purifying be fulfilled. \nBut if she bear a maid child, then she shall be unclean two weeks, as in her separation: and she shall continue in the blood of her purifying threescore and six days. \nAnd when the days of her purifying are fulfilled, for a son, or for a daughter, she shall bring a lamb of the first year for a burnt offering, and a young pigeon, or a turtledove, for a sin offering, unto the door of the tabernacle of the congregation, unto the priest: \nWho shall offer it before the LORD, and make an atonement for her; and she shall be cleansed from the issue of her blood. This is the law for her that hath born a male or a female. \nAnd if she be not able to bring a lamb, then she shall bring two turtles, or two young pigeons; the one for the burnt offering, and the other for a sin offering: and the priest shall make an atonement for her, and she shall be clean. \nAnd the LORD spake unto Moses and Aaron, saying, \nWhen a man shall have in the skin of his flesh a rising, a scab, or bright spot, and it be in the skin of his flesh like the plague of leprosy; then he shall be brought unto Aaron the priest, or unto one of his sons the priests: \nAnd the priest shall look on the plague in the skin of the flesh: and when the hair in the plague is turned white, and the plague in sight be deeper than the skin of his flesh, it is a plague of leprosy: and the priest shall look on him, and pronounce him unclean. \nIf the bright spot be white in the skin of his flesh, and in sight be not deeper than the skin, and the hair thereof be not turned white; then the priest shall shut up him that hath the plague seven days: \nAnd the priest shall look on him the seventh day: and, behold, if the plague in his sight be at a stay, and the plague spread not in the skin; then the priest shall shut him up seven days more: \nAnd the priest shall look on him again the seventh day: and, behold, if the plague be somewhat dark, and the plague spread not in the skin, the priest shall pronounce him clean: it is but a scab: and he shall wash his clothes, and be clean. \nBut if the scab spread much abroad in the skin, after that he hath been seen of the priest for his cleansing, he shall be seen of the priest again. \nAnd if the priest see that, behold, the scab spreadeth in the skin, then the priest shall pronounce him unclean: it is a leprosy. \nWhen the plague of leprosy is in a man, then he shall be brought unto the priest; \nAnd the priest shall see him: and, behold, if the rising be white in the skin, and it have turned the hair white, and there be quick raw flesh in the rising; \nIt is an old leprosy in the skin of his flesh, and the priest shall pronounce him unclean, and shall not shut him up: for he is unclean. \nAnd if a leprosy break out abroad in the skin, and the leprosy cover all the skin of him that hath the plague from his head even to his foot, wheresoever the priest looketh; \nThen the priest shall consider: and, behold, if the leprosy have covered all his flesh, he shall pronounce him clean that hath the plague: it is all turned white: he is clean. \nBut when raw flesh appeareth in him, he shall be unclean. \nAnd the priest shall see the raw flesh, and pronounce him to be unclean: for the raw flesh is unclean: it is a leprosy. \nOr if the raw flesh turn again, and be changed unto white, he shall come unto the priest; \nAnd the priest shall see him: and, behold, if the plague be turned into white; then the priest shall pronounce him clean that hath the plague: he is clean. \nThe flesh also, in which, even in the skin thereof, was a boil, and is healed, \nAnd in the place of the boil there be a white rising, or a bright spot, white, and somewhat reddish, and it be shewed to the priest; \nAnd if, when the priest seeth it, behold, it be in sight lower than the skin, and the hair thereof be turned white; the priest shall pronounce him unclean: it is a plague of leprosy broken out of the boil. \nBut if the priest look on it, and, behold, there be no white hairs therein, and if it be not lower than the skin, but be somewhat dark; then the priest shall shut him up seven days: \nAnd if it spread much abroad in the skin, then the priest shall pronounce him unclean: it is a plague. \nBut if the bright spot stay in his place, and spread not, it is a burning boil; and the priest shall pronounce him clean. \nOr if there be any flesh, in the skin whereof there is a hot burning, and the quick flesh that burneth have a white bright spot, somewhat reddish, or white; \nThen the priest shall look upon it: and, behold, if the hair in the bright spot be turned white, and it be in sight deeper than the skin; it is a leprosy broken out of the burning: wherefore the priest shall pronounce him unclean: it is the plague of leprosy. \nBut if the priest look on it, and, behold, there be no white hair in the bright spot, and it be no lower than the other skin, but be somewhat dark; then the priest shall shut him up seven days: \nAnd the priest shall look upon him the seventh day: and if it be spread much abroad in the skin, then the priest shall pronounce him unclean: it is the plague of leprosy. \nAnd if the bright spot stay in his place, and spread not in the skin, but it be somewhat dark; it is a rising of the burning, and the priest shall pronounce him clean: for it is an inflammation of the burning. \nIf a man or woman have a plague upon the head or the beard; \nThen the priest shall see the plague: and, behold, if it be in sight deeper than the skin; and there be in it a yellow thin hair; then the priest shall pronounce him unclean: it is a dry scall, even a leprosy upon the head or beard. \nAnd if the priest look on the plague of the scall, and, behold, it be not in sight deeper than the skin, and that there is no black hair in it; then the priest shall shut up him that hath the plague of the scall seven days: \nAnd in the seventh day the priest shall look on the plague: and, behold, if the scall spread not, and there be in it no yellow hair, and the scall be not in sight deeper than the skin; \nHe shall be shaven, but the scall shall he not shave; and the priest shall shut up him that hath the scall seven days more: \nAnd in the seventh day the priest shall look on the scall: and, behold, if the scall be not spread in the skin, nor be in sight deeper than the skin; then the priest shall pronounce him clean: and he shall wash his clothes, and be clean. \nBut if the scall spread much in the skin after his cleansing; \nThen the priest shall look on him: and, behold, if the scall be spread in the skin, the priest shall not seek for yellow hair; he is unclean. \nBut if the scall be in his sight at a stay, and that there is black hair grown up therein; the scall is healed, he is clean: and the priest shall pronounce him clean. \nIf a man also or a woman have in the skin of their flesh bright spots, even white bright spots; \nThen the priest shall look: and, behold, if the bright spots in the skin of their flesh be darkish white; it is a freckled spot that groweth in the skin; he is clean. \nAnd the man whose hair is fallen off his head, he is bald; yet is he clean. \nAnd he that hath his hair fallen off from the part of his head toward his face, he is forehead bald: yet is he clean. \nAnd if there be in the bald head, or bald forehead, a white reddish sore; it is a leprosy sprung up in his bald head, or his bald forehead. \nThen the priest shall look upon it: and, behold, if the rising of the sore be white reddish in his bald head, or in his bald forehead, as the leprosy appeareth in the skin of the flesh; \nHe is a leprous man, he is unclean: the priest shall pronounce him utterly unclean; his plague is in his head. \nAnd the leper in whom the plague is, his clothes shall be rent, and his head bare, and he shall put a covering upon his upper lip, and shall cry, Unclean, unclean. \nAll the days wherein the plague shall be in him he shall be defiled; he is unclean: he shall dwell alone; without the camp shall his habitation be. \nThe garment also that the plague of leprosy is in, whether it be a woollen garment, or a linen garment; \nWhether it be in the warp, or woof; of linen, or of woollen; whether in a skin, or in any thing made of skin; \nAnd if the plague be greenish or reddish in the garment, or in the skin, either in the warp, or in the woof, or in any thing of skin; it is a plague of leprosy, and shall be shewed unto the priest: \nAnd the priest shall look upon the plague, and shut up it that hath the plague seven days: \nAnd he shall look on the plague on the seventh day: if the plague be spread in the garment, either in the warp, or in the woof, or in a skin, or in any work that is made of skin; the plague is a fretting leprosy; it is unclean. \nHe shall therefore burn that garment, whether warp or woof, in woollen or in linen, or any thing of skin, wherein the plague is: for it is a fretting leprosy; it shall be burnt in the fire. \nAnd if the priest shall look, and, behold, the plague be not spread in the garment, either in the warp, or in the woof, or in any thing of skin; \nThen the priest shall command that they wash the thing wherein the plague is, and he shall shut it up seven days more: \nAnd the priest shall look on the plague, after that it is washed: and, behold, if the plague have not changed his colour, and the plague be not spread; it is unclean; thou shalt burn it in the fire; it is fret inward, whether it be bare within or without. \nAnd if the priest look, and, behold, the plague be somewhat dark after the washing of it; then he shall rend it out of the garment, or out of the skin, or out of the warp, or out of the woof: \nAnd if it appear still in the garment, either in the warp, or in the woof, or in any thing of skin; it is a spreading plague: thou shalt burn that wherein the plague is with fire. \nAnd the garment, either warp, or woof, or whatsoever thing of skin it be, which thou shalt wash, if the plague be departed from them, then it shall be washed the second time, and shall be clean. \nThis is the law of the plague of leprosy in a garment of woollen or linen, either in the warp, or woof, or any thing of skins, to pronounce it clean, or to pronounce it unclean. \nAnd the LORD spake unto Moses, saying, \nThis shall be the law of the leper in the day of his cleansing: He shall be brought unto the priest: \nAnd the priest shall go forth out of the camp; and the priest shall look, and, behold, if the plague of leprosy be healed in the leper; \nThen shall the priest command to take for him that is to be cleansed two birds alive and clean, and cedar wood, and scarlet, and hyssop: \nAnd the priest shall command that one of the birds be killed in an earthen vessel over running water: \nAs for the living bird, he shall take it, and the cedar wood, and the scarlet, and the hyssop, and shall dip them and the living bird in the blood of the bird that was killed over the running water: \nAnd he shall sprinkle upon him that is to be cleansed from the leprosy seven times, and shall pronounce him clean, and shall let the living bird loose into the open field. \nAnd he that is to be cleansed shall wash his clothes, and shave off all his hair, and wash himself in water, that he may be clean: and after that he shall come into the camp, and shall tarry abroad out of his tent seven days. \nBut it shall be on the seventh day, that he shall shave all his hair off his head and his beard and his eyebrows, even all his hair he shall shave off: and he shall wash his clothes, also he shall wash his flesh in water, and he shall be clean. \nAnd on the eighth day he shall take two he lambs without blemish, and one ewe lamb of the first year without blemish, and three tenth deals of fine flour for a meat offering, mingled with oil, and one log of oil. \nAnd the priest that maketh him clean shall present the man that is to be made clean, and those things, before the LORD, at the door of the tabernacle of the congregation: \nAnd the priest shall take one he lamb, and offer him for a trespass offering, and the log of oil, and wave them for a wave offering before the LORD: \nAnd he shall slay the lamb in the place where he shall kill the sin offering and the burnt offering, in the holy place: for as the sin offering is the priest's, so is the trespass offering: it is most holy: \nAnd the priest shall take some of the blood of the trespass offering, and the priest shall put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot: \nAnd the priest shall take some of the log of oil, and pour it into the palm of his own left hand: \nAnd the priest shall dip his right finger in the oil that is in his left hand, and shall sprinkle of the oil with his finger seven times before the LORD: \nAnd of the rest of the oil that is in his hand shall the priest put upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the blood of the trespass offering: \nAnd the remnant of the oil that is in the priest's hand he shall pour upon the head of him that is to be cleansed: and the priest shall make an atonement for him before the LORD. \nAnd the priest shall offer the sin offering, and make an atonement for him that is to be cleansed from his uncleanness; and afterward he shall kill the burnt offering: \nAnd the priest shall offer the burnt offering and the meat offering upon the altar: and the priest shall make an atonement for him, and he shall be clean. \nAnd if he be poor, and cannot get so much; then he shall take one lamb for a trespass offering to be waved, to make an atonement for him, and one tenth deal of fine flour mingled with oil for a meat offering, and a log of oil; \nAnd two turtledoves, or two young pigeons, such as he is able to get; and the one shall be a sin offering, and the other a burnt offering. \nAnd he shall bring them on the eighth day for his cleansing unto the priest, unto the door of the tabernacle of the congregation, before the LORD. \nAnd the priest shall take the lamb of the trespass offering, and the log of oil, and the priest shall wave them for a wave offering before the LORD: \nAnd he shall kill the lamb of the trespass offering, and the priest shall take some of the blood of the trespass offering, and put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot: \nAnd the priest shall pour of the oil into the palm of his own left hand: \nAnd the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before the LORD: \nAnd the priest shall put of the oil that is in his hand upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the place of the blood of the trespass offering: \nAnd the rest of the oil that is in the priest's hand he shall put upon the head of him that is to be cleansed, to make an atonement for him before the LORD. \nAnd he shall offer the one of the turtledoves, or of the young pigeons, such as he can get; \nEven such as he is able to get, the one for a sin offering, and the other for a burnt offering, with the meat offering: and the priest shall make an atonement for him that is to be cleansed before the LORD. \nThis is the law of him in whom is the plague of leprosy, whose hand is not able to get that which pertaineth to his cleansing. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nWhen ye be come into the land of Canaan, which I give to you for a possession, and I put the plague of leprosy in a house of the land of your possession; \nAnd he that owneth the house shall come and tell the priest, saying, It seemeth to me there is as it were a plague in the house: \nThen the priest shall command that they empty the house, before the priest go into it to see the plague, that all that is in the house be not made unclean: and afterward the priest shall go in to see the house: \nAnd he shall look on the plague, and, behold, if the plague be in the walls of the house with hollow strakes, greenish or reddish, which in sight are lower than the wall; \nThen the priest shall go out of the house to the door of the house, and shut up the house seven days: \nAnd the priest shall come again the seventh day, and shall look: and, behold, if the plague be spread in the walls of the house; \nThen the priest shall command that they take away the stones in which the plague is, and they shall cast them into an unclean place without the city: \nAnd he shall cause the house to be scraped within round about, and they shall pour out the dust that they scrape off without the city into an unclean place: \nAnd they shall take other stones, and put them in the place of those stones; and he shall take other morter, and shall plaister the house. \nAnd if the plague come again, and break out in the house, after that he hath taken away the stones, and after he hath scraped the house, and after it is plaistered; \nThen the priest shall come and look, and, behold, if the plague be spread in the house, it is a fretting leprosy in the house; it is unclean. \nAnd he shall break down the house, the stones of it, and the timber thereof, and all the morter of the house; and he shall carry them forth out of the city into an unclean place. \nMoreover he that goeth into the house all the while that it is shut up shall be unclean until the even. \nAnd he that lieth in the house shall wash his clothes; and he that eateth in the house shall wash his clothes. \nAnd if the priest shall come in, and look upon it, and, behold, the plague hath not spread in the house, after the house was plaistered: then the priest shall pronounce the house clean, because the plague is healed. \nAnd he shall take to cleanse the house two birds, and cedar wood, and scarlet, and hyssop: \nAnd he shall kill the one of the birds in an earthen vessel over running water: \nAnd he shall take the cedar wood, and the hyssop, and the scarlet, and the living bird, and dip them in the blood of the slain bird, and in the running water, and sprinkle the house seven times: \nAnd he shall cleanse the house with the blood of the bird, and with the running water, and with the living bird, and with the cedar wood, and with the hyssop, and with the scarlet: \nBut he shall let go the living bird out of the city into the open fields, and make an atonement for the house: and it shall be clean. \nThis is the law for all manner of plague of leprosy, and scall, \nAnd for the leprosy of a garment, and of a house, \nAnd for a rising, and for a scab, and for a bright spot: \nTo teach when it is unclean, and when it is clean: this is the law of leprosy. \nAnd the LORD spake unto Moses and to Aaron, saying, \nSpeak unto the children of Israel, and say unto them, When any man hath a running issue out of his flesh, because of his issue he is unclean. \nAnd this shall be his uncleanness in his issue: whether his flesh run with his issue, or his flesh be stopped from his issue, it is his uncleanness. \nEvery bed, whereon he lieth that hath the issue, is unclean: and every thing, whereon he sitteth, shall be unclean. \nAnd whosoever toucheth his bed shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd he that sitteth on any thing whereon he sat that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd he that toucheth the flesh of him that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd if he that hath the issue spit upon him that is clean; then he shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd what saddle soever he rideth upon that hath the issue shall be unclean. \nAnd whosoever toucheth any thing that was under him shall be unclean until the even: and he that beareth any of those things shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd whomsoever he toucheth that hath the issue, and hath not rinsed his hands in water, he shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd the vessel of earth, that he toucheth which hath the issue, shall be broken: and every vessel of wood shall be rinsed in water. \nAnd when he that hath an issue is cleansed of his issue; then he shall number to himself seven days for his cleansing, and wash his clothes, and bathe his flesh in running water, and shall be clean. \nAnd on the eighth day he shall take to him two turtledoves, or two young pigeons, and come before the LORD unto the door of the tabernacle of the congregation, and give them unto the priest: \nAnd the priest shall offer them, the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for him before the LORD for his issue. \nAnd if any man's seed of copulation go out from him, then he shall wash all his flesh in water, and be unclean until the even. \nAnd every garment, and every skin, whereon is the seed of copulation, shall be washed with water, and be unclean until the even. \nThe woman also with whom man shall lie with seed of copulation, they shall both bathe themselves in water, and be unclean until the even. \nAnd if a woman have an issue, and her issue in her flesh be blood, she shall be put apart seven days: and whosoever toucheth her shall be unclean until the even. \nAnd every thing that she lieth upon in her separation shall be unclean: every thing also that she sitteth upon shall be unclean. \nAnd whosoever toucheth her bed shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd whosoever toucheth any thing that she sat upon shall wash his clothes, and bathe himself in water, and be unclean until the even. \nAnd if it be on her bed, or on any thing whereon she sitteth, when he toucheth it, he shall be unclean until the even. \nAnd if any man lie with her at all, and her flowers be upon him, he shall be unclean seven days; and all the bed whereon he lieth shall be unclean. \nAnd if a woman have an issue of her blood many days out of the time of her separation, or if it run beyond the time of her separation; all the days of the issue of her uncleanness shall be as the days of her separation: she shall be unclean. \nEvery bed whereon she lieth all the days of her issue shall be unto her as the bed of her separation: and whatsoever she sitteth upon shall be unclean, as the uncleanness of her separation. \nAnd whosoever toucheth those things shall be unclean, and shall wash his clothes, and bathe himself in water, and be unclean until the even. \nBut if she be cleansed of her issue, then she shall number to herself seven days, and after that she shall be clean. \nAnd on the eighth day she shall take unto her two turtles, or two young pigeons, and bring them unto the priest, to the door of the tabernacle of the congregation. \nAnd the priest shall offer the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for her before the LORD for the issue of her uncleanness. \nThus shall ye separate the children of Israel from their uncleanness; that they die not in their uncleanness, when they defile my tabernacle that is among them. \nThis is the law of him that hath an issue, and of him whose seed goeth from him, and is defiled therewith; \nAnd of her that is sick of her flowers, and of him that hath an issue, of the man, and of the woman, and of him that lieth with her that is unclean. \nAnd the LORD spake unto Moses after the death of the two sons of Aaron, when they offered before the LORD, and died; \nAnd the LORD said unto Moses, Speak unto Aaron thy brother, that he come not at all times into the holy place within the vail before the mercy seat, which is upon the ark; that he die not: for I will appear in the cloud upon the mercy seat. \nThus shall Aaron come into the holy place: with a young bullock for a sin offering, and a ram for a burnt offering. \nHe shall put on the holy linen coat, and he shall have the linen breeches upon his flesh, and shall be girded with a linen girdle, and with the linen mitre shall he be attired: these are holy garments; therefore shall he wash his flesh in water, and so put them on. \nAnd he shall take of the congregation of the children of Israel two kids of the goats for a sin offering, and one ram for a burnt offering. \nAnd Aaron shall offer his bullock of the sin offering, which is for himself, and make an atonement for himself, and for his house. \nAnd he shall take the two goats, and present them before the LORD at the door of the tabernacle of the congregation. \nAnd Aaron shall cast lots upon the two goats; one lot for the LORD, and the other lot for the scapegoat. \nAnd Aaron shall bring the goat upon which the LORD's lot fell, and offer him for a sin offering. \nBut the goat, on which the lot fell to be the scapegoat, shall be presented alive before the LORD, to make an atonement with him, and to let him go for a scapegoat into the wilderness. \nAnd Aaron shall bring the bullock of the sin offering, which is for himself, and shall make an atonement for himself, and for his house, and shall kill the bullock of the sin offering which is for himself: \nAnd he shall take a censer full of burning coals of fire from off the altar before the LORD, and his hands full of sweet incense beaten small, and bring it within the vail: \nAnd he shall put the incense upon the fire before the LORD, that the cloud of the incense may cover the mercy seat that is upon the testimony, that he die not: \nAnd he shall take of the blood of the bullock, and sprinkle it with his finger upon the mercy seat eastward; and before the mercy seat shall he sprinkle of the blood with his finger seven times. \nThen shall he kill the goat of the sin offering, that is for the people, and bring his blood within the vail, and do with that blood as he did with the blood of the bullock, and sprinkle it upon the mercy seat, and before the mercy seat: \nAnd he shall make an atonement for the holy place, because of the uncleanness of the children of Israel, and because of their transgressions in all their sins: and so shall he do for the tabernacle of the congregation, that remaineth among them in the midst of their uncleanness. \nAnd there shall be no man in the tabernacle of the congregation when he goeth in to make an atonement in the holy place, until he come out, and have made an atonement for himself, and for his household, and for all the congregation of Israel. \nAnd he shall go out unto the altar that is before the LORD, and make an atonement for it; and shall take of the blood of the bullock, and of the blood of the goat, and put it upon the horns of the altar round about. \nAnd he shall sprinkle of the blood upon it with his finger seven times, and cleanse it, and hallow it from the uncleanness of the children of Israel. \nAnd when he hath made an end of reconciling the holy place, and the tabernacle of the congregation, and the altar, he shall bring the live goat: \nAnd Aaron shall lay both his hands upon the head of the live goat, and confess over him all the iniquities of the children of Israel, and all their transgressions in all their sins, putting them upon the head of the goat, and shall send him away by the hand of a fit man into the wilderness: \nAnd the goat shall bear upon him all their iniquities unto a land not inhabited: and he shall let go the goat in the wilderness. \nAnd Aaron shall come into the tabernacle of the congregation, and shall put off the linen garments, which he put on when he went into the holy place, and shall leave them there: \nAnd he shall wash his flesh with water in the holy place, and put on his garments, and come forth, and offer his burnt offering, and the burnt offering of the people, and make an atonement for himself, and for the people. \nAnd the fat of the sin offering shall he burn upon the altar. \nAnd he that let go the goat for the scapegoat shall wash his clothes, and bathe his flesh in water, and afterward come into the camp. \nAnd the bullock for the sin offering, and the goat for the sin offering, whose blood was brought in to make atonement in the holy place, shall one carry forth without the camp; and they shall burn in the fire their skins, and their flesh, and their dung. \nAnd he that burneth them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp. \nAnd this shall be a statute for ever unto you: that in the seventh month, on the tenth day of the month, ye shall afflict your souls, and do no work at all, whether it be one of your own country, or a stranger that sojourneth among you: \nFor on that day shall the priest make an atonement for you, to cleanse you, that ye may be clean from all your sins before the LORD. \nIt shall be a sabbath of rest unto you, and ye shall afflict your souls, by a statute for ever. \nAnd the priest, whom he shall anoint, and whom he shall consecrate to minister in the priest's office in his father's stead, shall make the atonement, and shall put on the linen clothes, even the holy garments: \nAnd he shall make an atonement for the holy sanctuary, and he shall make an atonement for the tabernacle of the congregation, and for the altar, and he shall make an atonement for the priests, and for all the people of the congregation. \nAnd this shall be an everlasting statute unto you, to make an atonement for the children of Israel for all their sins once a year. And he did as the LORD commanded Moses. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron, and unto his sons, and unto all the children of Israel, and say unto them; This is the thing which the LORD hath commanded, saying, \nWhat man soever there be of the house of Israel, that killeth an ox, or lamb, or goat, in the camp, or that killeth it out of the camp, \nAnd bringeth it not unto the door of the tabernacle of the congregation, to offer an offering unto the LORD before the tabernacle of the LORD; blood shall be imputed unto that man; he hath shed blood; and that man shall be cut off from among his people: \nTo the end that the children of Israel may bring their sacrifices, which they offer in the open field, even that they may bring them unto the LORD, unto the door of the tabernacle of the congregation, unto the priest, and offer them for peace offerings unto the LORD. \nAnd the priest shall sprinkle the blood upon the altar of the LORD at the door of the tabernacle of the congregation, and burn the fat for a sweet savour unto the LORD. \nAnd they shall no more offer their sacrifices unto devils, after whom they have gone a whoring. This shall be a statute for ever unto them throughout their generations. \nAnd thou shalt say unto them, Whatsoever man there be of the house of Israel, or of the strangers which sojourn among you, that offereth a burnt offering or sacrifice, \nAnd bringeth it not unto the door of the tabernacle of the congregation, to offer it unto the LORD; even that man shall be cut off from among his people. \nAnd whatsoever man there be of the house of Israel, or of the strangers that sojourn among you, that eateth any manner of blood; I will even set my face against that soul that eateth blood, and will cut him off from among his people. \nFor the life of the flesh is in the blood: and I have given it to you upon the altar to make an atonement for your souls: for it is the blood that maketh an atonement for the soul. \nTherefore I said unto the children of Israel, No soul of you shall eat blood, neither shall any stranger that sojourneth among you eat blood. \nAnd whatsoever man there be of the children of Israel, or of the strangers that sojourn among you, which hunteth and catcheth any beast or fowl that may be eaten; he shall even pour out the blood thereof, and cover it with dust. \nFor it is the life of all flesh; the blood of it is for the life thereof: therefore I said unto the children of Israel, Ye shall eat the blood of no manner of flesh: for the life of all flesh is the blood thereof: whosoever eateth it shall be cut off. \nAnd every soul that eateth that which died of itself, or that which was torn with beasts, whether it be one of your own country, or a stranger, he shall both wash his clothes, and bathe himself in water, and be unclean until the even: then shall he be clean. \nBut if he wash them not, nor bathe his flesh; then he shall bear his iniquity. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, I am the LORD your God. \nAfter the doings of the land of Egypt, wherein ye dwelt, shall ye not do: and after the doings of the land of Canaan, whither I bring you, shall ye not do: neither shall ye walk in their ordinances. \nYe shall do my judgments, and keep mine ordinances, to walk therein: I am the LORD your God. \nYe shall therefore keep my statutes, and my judgments: which if a man do, he shall live in them: I am the LORD. \nNone of you shall approach to any that is near of kin to him, to uncover their nakedness: I am the LORD. \nThe nakedness of thy father, or the nakedness of thy mother, shalt thou not uncover: she is thy mother; thou shalt not uncover her nakedness. \nThe nakedness of thy father's wife shalt thou not uncover: it is thy father's nakedness. \nThe nakedness of thy sister, the daughter of thy father, or daughter of thy mother, whether she be born at home, or born abroad, even their nakedness thou shalt not uncover. \nThe nakedness of thy son's daughter, or of thy daughter's daughter, even their nakedness thou shalt not uncover: for theirs is thine own nakedness. \nThe nakedness of thy father's wife's daughter, begotten of thy father, she is thy sister, thou shalt not uncover her nakedness. \nThou shalt not uncover the nakedness of thy father's sister: she is thy father's near kinswoman. \nThou shalt not uncover the nakedness of thy mother's sister: for she is thy mother's near kinswoman. \nThou shalt not uncover the nakedness of thy father's brother, thou shalt not approach to his wife: she is thine aunt. \nThou shalt not uncover the nakedness of thy daughter in law: she is thy son's wife; thou shalt not uncover her nakedness. \nThou shalt not uncover the nakedness of thy brother's wife: it is thy brother's nakedness. \nThou shalt not uncover the nakedness of a woman and her daughter, neither shalt thou take her son's daughter, or her daughter's daughter, to uncover her nakedness; for they are her near kinswomen: it is wickedness. \nNeither shalt thou take a wife to her sister, to vex her, to uncover her nakedness, beside the other in her life time. \nAlso thou shalt not approach unto a woman to uncover her nakedness, as long as she is put apart for her uncleanness. \nMoreover thou shalt not lie carnally with thy neighbour's wife, to defile thyself with her. \nAnd thou shalt not let any of thy seed pass through the fire to Molech, neither shalt thou profane the name of thy God: I am the LORD. \nThou shalt not lie with mankind, as with womankind: it is abomination. \nNeither shalt thou lie with any beast to defile thyself therewith: neither shall any woman stand before a beast to lie down thereto: it is confusion. \nDefile not ye yourselves in any of these things: for in all these the nations are defiled which I cast out before you: \nAnd the land is defiled: therefore I do visit the iniquity thereof upon it, and the land itself vomiteth out her inhabitants. \nYe shall therefore keep my statutes and my judgments, and shall not commit any of these abominations; neither any of your own nation, nor any stranger that sojourneth among you: \n(For all these abominations have the men of the land done, which were before you, and the land is defiled;) \nThat the land spue not you out also, when ye defile it, as it spued out the nations that were before you. \nFor whosoever shall commit any of these abominations, even the souls that commit them shall be cut off from among their people. \nTherefore shall ye keep mine ordinance, that ye commit not any one of these abominable customs, which were committed before you, and that ye defile not yourselves therein: I am the LORD your God. \nAnd the LORD spake unto Moses, saying, \nSpeak unto all the congregation of the children of Israel, and say unto them, Ye shall be holy: for I the LORD your God am holy. \nYe shall fear every man his mother, and his father, and keep my sabbaths: I am the LORD your God. \nTurn ye not unto idols, nor make to yourselves molten gods: I am the LORD your God. \nAnd if ye offer a sacrifice of peace offerings unto the LORD, ye shall offer it at your own will. \nIt shall be eaten the same day ye offer it, and on the morrow: and if ought remain until the third day, it shall be burnt in the fire. \nAnd if it be eaten at all on the third day, it is abominable; it shall not be accepted. \nTherefore every one that eateth it shall bear his iniquity, because he hath profaned the hallowed thing of the LORD: and that soul shall be cut off from among his people. \nAnd when ye reap the harvest of your land, thou shalt not wholly reap the corners of thy field, neither shalt thou gather the gleanings of thy harvest. \nAnd thou shalt not glean thy vineyard, neither shalt thou gather every grape of thy vineyard; thou shalt leave them for the poor and stranger: I am the LORD your God. \nYe shall not steal, neither deal falsely, neither lie one to another. \nAnd ye shall not swear by my name falsely, neither shalt thou profane the name of thy God: I am the LORD. \nThou shalt not defraud thy neighbour, neither rob him: the wages of him that is hired shall not abide with thee all night until the morning. \nThou shalt not curse the deaf, nor put a stumblingblock before the blind, but shalt fear thy God: I am the LORD. \nYe shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honor the person of the mighty: but in righteousness shalt thou judge thy neighbour. \nThou shalt not go up and down as a talebearer among thy people: neither shalt thou stand against the blood of thy neighbour; I am the LORD. \nThou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him. \nThou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the LORD. \nYe shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woollen come upon thee. \nAnd whosoever lieth carnally with a woman, that is a bondmaid, betrothed to an husband, and not at all redeemed, nor freedom given her; she shall be scourged; they shall not be put to death, because she was not free. \nAnd he shall bring his trespass offering unto the LORD, unto the door of the tabernacle of the congregation, even a ram for a trespass offering. \nAnd the priest shall make an atonement for him with the ram of the trespass offering before the LORD for his sin which he hath done: and the sin which he hath done shall be forgiven him. \nAnd when ye shall come into the land, and shall have planted all manner of trees for food, then ye shall count the fruit thereof as uncircumcised: three years shall it be as uncircumcised unto you: it shall not be eaten of. \nBut in the fourth year all the fruit thereof shall be holy to praise the LORD withal. \nAnd in the fifth year shall ye eat of the fruit thereof, that it may yield unto you the increase thereof: I am the LORD your God. \nYe shall not eat any thing with the blood: neither shall ye use enchantment, nor observe times. \nYe shall not round the corners of your heads, neither shalt thou mar the corners of thy beard. \nYe shall not make any cuttings in your flesh for the dead, nor print any marks upon you: I am the LORD. \nDo not prostitute thy daughter, to cause her to be a whore; lest the land fall to whoredom, and the land become full of wickedness. \nYe shall keep my sabbaths, and reverence my sanctuary: I am the LORD. \nRegard not them that have familiar spirits, neither seek after wizards, to be defiled by them: I am the LORD your God. \nThou shalt rise up before the hoary head, and honour the face of the old man, and fear thy God: I am the LORD. \nAnd if a stranger sojourn with thee in your land, ye shall not vex him. \nBut the stranger that dwelleth with you shall be unto you as one born among you, and thou shalt love him as thyself; for ye were strangers in the land of Egypt: I am the LORD your God. \nYe shall do no unrighteousness in judgment, in meteyard, in weight, or in measure. \nJust balances, just weights, a just ephah, and a just hin, shall ye have: I am the LORD your God, which brought you out of the land of Egypt. \nTherefore shall ye observe all my statutes, and all my judgments, and do them: I am the LORD. \nAnd the LORD spake unto Moses, saying, \nAgain, thou shalt say to the children of Israel, Whosoever he be of the children of Israel, or of the strangers that sojourn in Israel, that giveth any of his seed unto Molech; he shall surely be put to death: the people of the land shall stone him with stones. \nAnd I will set my face against that man, and will cut him off from among his people; because he hath given of his seed unto Molech, to defile my sanctuary, and to profane my holy name. \nAnd if the people of the land do any ways hide their eyes from the man, when he giveth of his seed unto Molech, and kill him not: \nThen I will set my face against that man, and against his family, and will cut him off, and all that go a whoring after him, to commit whoredom with Molech, from among their people. \nAnd the soul that turneth after such as have familiar spirits, and after wizards, to go a whoring after them, I will even set my face against that soul, and will cut him off from among his people. \nSanctify yourselves therefore, and be ye holy: for I am the LORD your God. \nAnd ye shall keep my statutes, and do them: I am the LORD which sanctify you. \nFor every one that curseth his father or his mother shall be surely put to death: he hath cursed his father or his mother; his blood shall be upon him. \nAnd the man that committeth adultery with another man's wife, even he that committeth adultery with his neighbour's wife, the adulterer and the adulteress shall surely be put to death. \nAnd the man that lieth with his father's wife hath uncovered his father's nakedness: both of them shall surely be put to death; their blood shall be upon them. \nAnd if a man lie with his daughter in law, both of them shall surely be put to death: they have wrought confusion; their blood shall be upon them. \nIf a man also lie with mankind, as he lieth with a woman, both of them have committed an abomination: they shall surely be put to death; their blood shall be upon them. \nAnd if a man take a wife and her mother, it is wickedness: they shall be burnt with fire, both he and they; that there be no wickedness among you. \nAnd if a man lie with a beast, he shall surely be put to death: and ye shall slay the beast. \nAnd if a woman approach unto any beast, and lie down thereto, thou shalt kill the woman, and the beast: they shall surely be put to death; their blood shall be upon them. \nAnd if a man shall take his sister, his father's daughter, or his mother's daughter, and see her nakedness, and she see his nakedness; it is a wicked thing; and they shall be cut off in the sight of their people: he hath uncovered his sister's nakedness; he shall bear his iniquity. \nAnd if a man shall lie with a woman having her sickness, and shall uncover her nakedness; he hath discovered her fountain, and she hath uncovered the fountain of her blood: and both of them shall be cut off from among their people. \nAnd thou shalt not uncover the nakedness of thy mother's sister, nor of thy father's sister: for he uncovereth his near kin: they shall bear their iniquity. \nAnd if a man shall lie with his uncle's wife, he hath uncovered his uncle's nakedness: they shall bear their sin; they shall die childless. \nAnd if a man shall take his brother's wife, it is an unclean thing: he hath uncovered his brother's nakedness; they shall be childless. \nYe shall therefore keep all my statutes, and all my judgments, and do them: that the land, whither I bring you to dwell therein, spue you not out. \nAnd ye shall not walk in the manners of the nation, which I cast out before you: for they committed all these things, and therefore I abhorred them. \nBut I have said unto you, Ye shall inherit their land, and I will give it unto you to possess it, a land that floweth with milk and honey: I am the LORD your God, which have separated you from other people. \nYe shall therefore put difference between clean beasts and unclean, and between unclean fowls and clean: and ye shall not make your souls abominable by beast, or by fowl, or by any manner of living thing that creepeth on the ground, which I have separated from you as unclean. \nAnd ye shall be holy unto me: for I the LORD am holy, and have severed you from other people, that ye should be mine. \nA man also or woman that hath a familiar spirit, or that is a wizard, shall surely be put to death: they shall stone them with stones: their blood shall be upon them. \nAnd the LORD said unto Moses, Speak unto the priests the sons of Aaron, and say unto them, There shall none be defiled for the dead among his people: \nBut for his kin, that is near unto him, that is, for his mother, and for his father, and for his son, and for his daughter, and for his brother. \nAnd for his sister a virgin, that is nigh unto him, which hath had no husband; for her may he be defiled. \nBut he shall not defile himself, being a chief man among his people, to profane himself. \nThey shall not make baldness upon their head, neither shall they shave off the corner of their beard, nor make any cuttings in their flesh. \nThey shall be holy unto their God, and not profane the name of their God: for the offerings of the LORD made by fire, and the bread of their God, they do offer: therefore they shall be holy. \nThey shall not take a wife that is a whore, or profane; neither shall they take a woman put away from her husband: for he is holy unto his God. \nThou shalt sanctify him therefore; for he offereth the bread of thy God: he shall be holy unto thee: for I the LORD, which sanctify you, am holy. \nAnd the daughter of any priest, if she profane herself by playing the whore, she profaneth her father: she shall be burnt with fire. \nAnd he that is the high priest among his brethren, upon whose head the anointing oil was poured, and that is consecrated to put on the garments, shall not uncover his head, nor rend his clothes; \nNeither shall he go in to any dead body, nor defile himself for his father, or for his mother; \nNeither shall he go out of the sanctuary, nor profane the sanctuary of his God; for the crown of the anointing oil of his God is upon him: I am the LORD. \nAnd he shall take a wife in her virginity. \nA widow, or a divorced woman, or profane, or an harlot, these shall he not take: but he shall take a virgin of his own people to wife. \nNeither shall he profane his seed among his people: for I the LORD do sanctify him. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God. \nFor whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous, \nOr a man that is brokenfooted, or brokenhanded, \nOr crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken; \nNo man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the LORD made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God. \nHe shall eat the bread of his God, both of the most holy, and of the holy. \nOnly he shall not go in unto the vail, nor come nigh unto the altar, because he hath a blemish; that he profane not my sanctuaries: for I the LORD do sanctify them. \nAnd Moses told it unto Aaron, and to his sons, and unto all the children of Israel. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron and to his sons, that they separate themselves from the holy things of the children of Israel, and that they profane not my holy name in those things which they hallow unto me: I am the LORD. \nSay unto them, Whosoever he be of all your seed among your generations, that goeth unto the holy things, which the children of Israel hallow unto the LORD, having his uncleanness upon him, that soul shall be cut off from my presence: I am the LORD. \nWhat man soever of the seed of Aaron is a leper, or hath a running issue; he shall not eat of the holy things, until he be clean. And whoso toucheth any thing that is unclean by the dead, or a man whose seed goeth from him; \nOr whosoever toucheth any creeping thing, whereby he may be made unclean, or a man of whom he may take uncleanness, whatsoever uncleanness he hath; \nThe soul which hath touched any such shall be unclean until even, and shall not eat of the holy things, unless he wash his flesh with water. \nAnd when the sun is down, he shall be clean, and shall afterward eat of the holy things; because it is his food. \nThat which dieth of itself, or is torn with beasts, he shall not eat to defile himself therewith; I am the LORD. \nThey shall therefore keep mine ordinance, lest they bear sin for it, and die therefore, if they profane it: I the LORD do sanctify them. \nThere shall no stranger eat of the holy thing: a sojourner of the priest, or an hired servant, shall not eat of the holy thing. \nBut if the priest buy any soul with his money, he shall eat of it, and he that is born in his house: they shall eat of his meat. \nIf the priest's daughter also be married unto a stranger, she may not eat of an offering of the holy things. \nBut if the priest's daughter be a widow, or divorced, and have no child, and is returned unto her father's house, as in her youth, she shall eat of her father's meat: but there shall be no stranger eat thereof. \nAnd if a man eat of the holy thing unwittingly, then he shall put the fifth part thereof unto it, and shall give it unto the priest with the holy thing. \nAnd they shall not profane the holy things of the children of Israel, which they offer unto the LORD; \nOr suffer them to bear the iniquity of trespass, when they eat their holy things: for I the LORD do sanctify them. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron, and to his sons, and unto all the children of Israel, and say unto them, Whatsoever he be of the house of Israel, or of the strangers in Israel, that will offer his oblation for all his vows, and for all his freewill offerings, which they will offer unto the LORD for a burnt offering; \nYe shall offer at your own will a male without blemish, of the beeves, of the sheep, or of the goats. \nBut whatsoever hath a blemish, that shall ye not offer: for it shall not be acceptable for you. \nAnd whosoever offereth a sacrifice of peace offerings unto the LORD to accomplish his vow, or a freewill offering in beeves or sheep, it shall be perfect to be accepted; there shall be no blemish therein. \nBlind, or broken, or maimed, or having a wen, or scurvy, or scabbed, ye shall not offer these unto the LORD, nor make an offering by fire of them upon the altar unto the LORD. \nEither a bullock or a lamb that hath any thing superfluous or lacking in his parts, that mayest thou offer for a freewill offering; but for a vow it shall not be accepted. \nYe shall not offer unto the LORD that which is bruised, or crushed, or broken, or cut; neither shall ye make any offering thereof in your land. \nNeither from a stranger's hand shall ye offer the bread of your God of any of these; because their corruption is in them, and blemishes be in them: they shall not be accepted for you. \nAnd the LORD spake unto Moses, saying, \nWhen a bullock, or a sheep, or a goat, is brought forth, then it shall be seven days under the dam; and from the eighth day and thenceforth it shall be accepted for an offering made by fire unto the LORD. \nAnd whether it be cow, or ewe, ye shall not kill it and her young both in one day. \nAnd when ye will offer a sacrifice of thanksgiving unto the LORD, offer it at your own will. \nOn the same day it shall be eaten up; ye shall leave none of it until the morrow: I am the LORD. \nTherefore shall ye keep my commandments, and do them: I am the LORD. \nNeither shall ye profane my holy name; but I will be hallowed among the children of Israel: I am the LORD which hallow you, \nThat brought you out of the land of Egypt, to be your God: I am the LORD. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, Concerning the feasts of the LORD, which ye shall proclaim to be holy convocations, even these are my feasts. \nSix days shall work be done: but the seventh day is the sabbath of rest, an holy convocation; ye shall do no work therein: it is the sabbath of the LORD in all your dwellings. \nThese are the feasts of the LORD, even holy convocations, which ye shall proclaim in their seasons. \nIn the fourteenth day of the first month at even is the LORD's passover. \nAnd on the fifteenth day of the same month is the feast of unleavened bread unto the LORD: seven days ye must eat unleavened bread. \nIn the first day ye shall have an holy convocation: ye shall do no servile work therein. \nBut ye shall offer an offering made by fire unto the LORD seven days: in the seventh day is an holy convocation: ye shall do no servile work therein. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When ye be come into the land which I give unto you, and shall reap the harvest thereof, then ye shall bring a sheaf of the firstfruits of your harvest unto the priest: \nAnd he shall wave the sheaf before the LORD, to be accepted for you: on the morrow after the sabbath the priest shall wave it. \nAnd ye shall offer that day when ye wave the sheaf an he lamb without blemish of the first year for a burnt offering unto the LORD. \nAnd the meat offering thereof shall be two tenth deals of fine flour mingled with oil, an offering made by fire unto the LORD for a sweet savour: and the drink offering thereof shall be of wine, the fourth part of an hin. \nAnd ye shall eat neither bread, nor parched corn, nor green ears, until the selfsame day that ye have brought an offering unto your God: it shall be a statute for ever throughout your generations in all your dwellings. \nAnd ye shall count unto you from the morrow after the sabbath, from the day that ye brought the sheaf of the wave offering; seven sabbaths shall be complete: \nEven unto the morrow after the seventh sabbath shall ye number fifty days; and ye shall offer a new meat offering unto the LORD. \nYe shall bring out of your habitations two wave loaves of two tenth deals; they shall be of fine flour; they shall be baken with leaven; they are the firstfruits unto the LORD. \nAnd ye shall offer with the bread seven lambs without blemish of the first year, and one young bullock, and two rams: they shall be for a burnt offering unto the LORD, with their meat offering, and their drink offerings, even an offering made by fire, of sweet savour unto the LORD. \nThen ye shall sacrifice one kid of the goats for a sin offering, and two lambs of the first year for a sacrifice of peace offerings. \nAnd the priest shall wave them with the bread of the firstfruits for a wave offering before the LORD, with the two lambs: they shall be holy to the LORD for the priest. \nAnd ye shall proclaim on the selfsame day, that it may be an holy convocation unto you: ye shall do no servile work therein: it shall be a statute for ever in all your dwellings throughout your generations. \nAnd when ye reap the harvest of your land, thou shalt not make clean riddance of the corners of thy field when thou reapest, neither shalt thou gather any gleaning of thy harvest: thou shalt leave them unto the poor, and to the stranger: I am the LORD your God. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, In the seventh month, in the first day of the month, shall ye have a sabbath, a memorial of blowing of trumpets, an holy convocation. \nYe shall do no servile work therein: but ye shall offer an offering made by fire unto the LORD. \nAnd the LORD spake unto Moses, saying, \nAlso on the tenth day of this seventh month there shall be a day of atonement: it shall be an holy convocation unto you; and ye shall afflict your souls, and offer an offering made by fire unto the LORD. \nAnd ye shall do no work in that same day: for it is a day of atonement, to make an atonement for you before the LORD your God. \nFor whatsoever soul it be that shall not be afflicted in that same day, he shall be cut off from among his people. \nAnd whatsoever soul it be that doeth any work in that same day, the same soul will I destroy from among his people. \nYe shall do no manner of work: it shall be a statute for ever throughout your generations in all your dwellings. \nIt shall be unto you a sabbath of rest, and ye shall afflict your souls: in the ninth day of the month at even, from even unto even, shall ye celebrate your sabbath. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, The fifteenth day of this seventh month shall be the feast of tabernacles for seven days unto the LORD. \nOn the first day shall be an holy convocation: ye shall do no servile work therein. \nSeven days ye shall offer an offering made by fire unto the LORD: on the eighth day shall be an holy convocation unto you; and ye shall offer an offering made by fire unto the LORD: it is a solemn assembly; and ye shall do no servile work therein. \nThese are the feasts of the LORD, which ye shall proclaim to be holy convocations, to offer an offering made by fire unto the LORD, a burnt offering, and a meat offering, a sacrifice, and drink offerings, every thing upon his day: \nBeside the sabbaths of the LORD, and beside your gifts, and beside all your vows, and beside all your freewill offerings, which ye give unto the LORD. \nAlso in the fifteenth day of the seventh month, when ye have gathered in the fruit of the land, ye shall keep a feast unto the LORD seven days: on the first day shall be a sabbath, and on the eighth day shall be a sabbath. \nAnd ye shall take you on the first day the boughs of goodly trees, branches of palm trees, and the boughs of thick trees, and willows of the brook; and ye shall rejoice before the LORD your God seven days. \nAnd ye shall keep it a feast unto the LORD seven days in the year. It shall be a statute for ever in your generations: ye shall celebrate it in the seventh month. \nYe shall dwell in booths seven days; all that are Israelites born shall dwell in booths: \nThat your generations may know that I made the children of Israel to dwell in booths, when I brought them out of the land of Egypt: I am the LORD your God. \nAnd Moses declared unto the children of Israel the feasts of the LORD. \nAnd the LORD spake unto Moses, saying, \nCommand the children of Israel, that they bring unto thee pure oil olive beaten for the light, to cause the lamps to burn continually. \nWithout the vail of the testimony, in the tabernacle of the congregation, shall Aaron order it from the evening unto the morning before the LORD continually: it shall be a statute for ever in your generations. \nHe shall order the lamps upon the pure candlestick before the LORD continually. \nAnd thou shalt take fine flour, and bake twelve cakes thereof: two tenth deals shall be in one cake. \nAnd thou shalt set them in two rows, six on a row, upon the pure table before the LORD. \nAnd thou shalt put pure frankincense upon each row, that it may be on the bread for a memorial, even an offering made by fire unto the LORD. \nEvery sabbath he shall set it in order before the LORD continually, being taken from the children of Israel by an everlasting covenant. \nAnd it shall be Aaron's and his sons'; and they shall eat it in the holy place: for it is most holy unto him of the offerings of the LORD made by fire by a perpetual statute. \nAnd the son of an Israelitish woman, whose father was an Egyptian, went out among the children of Israel: and this son of the Israelitish woman and a man of Israel strove together in the camp; \nAnd the Israelitish woman's son blasphemed the name of the Lord, and cursed. And they brought him unto Moses: (and his mother's name was Shelomith, the daughter of Dibri, of the tribe of Dan:) \nAnd they put him in ward, that the mind of the LORD might be shewed them. \nAnd the LORD spake unto Moses, saying, \nBring forth him that hath cursed without the camp; and let all that heard him lay their hands upon his head, and let all the congregation stone him. \nAnd thou shalt speak unto the children of Israel, saying, Whosoever curseth his God shall bear his sin. \nAnd he that blasphemeth the name of the LORD, he shall surely be put to death, and all the congregation shall certainly stone him: as well the stranger, as he that is born in the land, when he blasphemeth the name of the Lord, shall be put to death. \nAnd he that killeth any man shall surely be put to death. \nAnd he that killeth a beast shall make it good; beast for beast. \nAnd if a man cause a blemish in his neighbour; as he hath done, so shall it be done to him; \nBreach for breach, eye for eye, tooth for tooth: as he hath caused a blemish in a man, so shall it be done to him again. \nAnd he that killeth a beast, he shall restore it: and he that killeth a man, he shall be put to death. \nYe shall have one manner of law, as well for the stranger, as for one of your own country: for I am the LORD your God. \nAnd Moses spake to the children of Israel, that they should bring forth him that had cursed out of the camp, and stone him with stones. And the children of Israel did as the LORD commanded Moses. \nAnd the LORD spake unto Moses in mount Sinai, saying, \nSpeak unto the children of Israel, and say unto them, When ye come into the land which I give you, then shall the land keep a sabbath unto the LORD. \nSix years thou shalt sow thy field, and six years thou shalt prune thy vineyard, and gather in the fruit thereof; \nBut in the seventh year shall be a sabbath of rest unto the land, a sabbath for the LORD: thou shalt neither sow thy field, nor prune thy vineyard. \nThat which groweth of its own accord of thy harvest thou shalt not reap, neither gather the grapes of thy vine undressed: for it is a year of rest unto the land. \nAnd the sabbath of the land shall be meat for you; for thee, and for thy servant, and for thy maid, and for thy hired servant, and for thy stranger that sojourneth with thee. \nAnd for thy cattle, and for the beast that are in thy land, shall all the increase thereof be meat. \nAnd thou shalt number seven sabbaths of years unto thee, seven times seven years; and the space of the seven sabbaths of years shall be unto thee forty and nine years. \nThen shalt thou cause the trumpet of the jubile to sound on the tenth day of the seventh month, in the day of atonement shall ye make the trumpet sound throughout all your land. \nAnd ye shall hallow the fiftieth year, and proclaim liberty throughout all the land unto all the inhabitants thereof: it shall be a jubile unto you; and ye shall return every man unto his possession, and ye shall return every man unto his family. \nA jubile shall that fiftieth year be unto you: ye shall not sow, neither reap that which groweth of itself in it, nor gather the grapes in it of thy vine undressed. \nFor it is the jubile; it shall be holy unto you: ye shall eat the increase thereof out of the field. \nIn the year of this jubile ye shall return every man unto his possession. \nAnd if thou sell ought unto thy neighbour, or buyest ought of thy neighbour's hand, ye shall not oppress one another: \nAccording to the number of years after the jubile thou shalt buy of thy neighbour, and according unto the number of years of the fruits he shall sell unto thee: \nAccording to the multitude of years thou shalt increase the price thereof, and according to the fewness of years thou shalt diminish the price of it: for according to the number of the years of the fruits doth he sell unto thee. \nYe shall not therefore oppress one another; but thou shalt fear thy God:for I am the LORD your God. \nWherefore ye shall do my statutes, and keep my judgments, and do them; and ye shall dwell in the land in safety. \nAnd the land shall yield her fruit, and ye shall eat your fill, and dwell therein in safety. \nAnd if ye shall say, What shall we eat the seventh year? behold, we shall not sow, nor gather in our increase: \nThen I will command my blessing upon you in the sixth year, and it shall bring forth fruit for three years. \nAnd ye shall sow the eighth year, and eat yet of old fruit until the ninth year; until her fruits come in ye shall eat of the old store. \nThe land shall not be sold for ever: for the land is mine, for ye are strangers and sojourners with me. \nAnd in all the land of your possession ye shall grant a redemption for the land. \nIf thy brother be waxen poor, and hath sold away some of his possession, and if any of his kin come to redeem it, then shall he redeem that which his brother sold. \nAnd if the man have none to redeem it, and himself be able to redeem it; \nThen let him count the years of the sale thereof, and restore the overplus unto the man to whom he sold it; that he may return unto his possession. \nBut if he be not able to restore it to him, then that which is sold shall remain in the hand of him that hath bought it until the year of jubile: and in the jubile it shall go out, and he shall return unto his possession. \nAnd if a man sell a dwelling house in a walled city, then he may redeem it within a whole year after it is sold; within a full year may he redeem it. \nAnd if it be not redeemed within the space of a full year, then the house that is in the walled city shall be established for ever to him that bought it throughout his generations: it shall not go out in the jubile. \nBut the houses of the villages which have no wall round about them shall be counted as the fields of the country: they may be redeemed, and they shall go out in the jubile. \nNotwithstanding the cities of the Levites, and the houses of the cities of their possession, may the Levites redeem at any time. \nAnd if a man purchase of the Levites, then the house that was sold, and the city of his possession, shall go out in the year of jubile: for the houses of the cities of the Levites are their possession among the children of Israel. \nBut the field of the suburbs of their cities may not be sold; for it is their perpetual possession. \nAnd if thy brother be waxen poor, and fallen in decay with thee; then thou shalt relieve him: yea, though he be a stranger, or a sojourner; that he may live with thee. \nTake thou no usury of him, or increase: but fear thy God; that thy brother may live with thee. \nThou shalt not give him thy money upon usury, nor lend him thy victuals for increase. \nI am the LORD your God, which brought you forth out of the land of Egypt, to give you the land of Canaan, and to be your God. \nAnd if thy brother that dwelleth by thee be waxen poor, and be sold unto thee; thou shalt not compel him to serve as a bondservant: \nBut as an hired servant, and as a sojourner, he shall be with thee, and shall serve thee unto the year of jubile. \nAnd then shall he depart from thee, both he and his children with him, and shall return unto his own family, and unto the possession of his fathers shall he return. \nFor they are my servants, which I brought forth out of the land of Egypt: they shall not be sold as bondmen. \nThou shalt not rule over him with rigour; but shalt fear thy God. \nBoth thy bondmen, and thy bondmaids, which thou shalt have, shall be of the heathen that are round about you; of them shall ye buy bondmen and bondmaids. \nMoreover of the children of the strangers that do sojourn among you, of them shall ye buy, and of their families that are with you, which they begat in your land: and they shall be your possession. \nAnd ye shall take them as an inheritance for your children after you, to inherit them for a possession; they shall be your bondmen for ever: but over your brethren the children of Israel, ye shall not rule one over another with rigour. \nAnd if a sojourner or stranger wax rich by thee, and thy brother that dwelleth by him wax poor, and sell himself unto the stranger or sojourner by thee, or to the stock of the stranger's family: \nAfter that he is sold he may be redeemed again; one of his brethren may redeem him: \nEither his uncle, or his uncle's son, may redeem him, or any that is nigh of kin unto him of his family may redeem him; or if he be able, he may redeem himself. \nAnd he shall reckon with him that bought him from the year that he was sold to him unto the year of jubile: and the price of his sale shall be according unto the number of years, according to the time of an hired servant shall it be with him. \nIf there be yet many years behind, according unto them he shall give again the price of his redemption out of the money that he was bought for. \nAnd if there remain but few years unto the year of jubile, then he shall count with him, and according unto his years shall he give him again the price of his redemption. \nAnd as a yearly hired servant shall he be with him: and the other shall not rule with rigour over him in thy sight. \nAnd if he be not redeemed in these years, then he shall go out in the year of jubile, both he, and his children with him. \nFor unto me the children of Israel are servants; they are my servants whom I brought forth out of the land of Egypt: I am the LORD your God. \nYe shall make you no idols nor graven image, neither rear you up a standing image, neither shall ye set up any image of stone in your land, to bow down unto it: for I am the LORD your God. \nYe shall keep my sabbaths, and reverence my sanctuary: I am the LORD. \nIf ye walk in my statutes, and keep my commandments, and do them; \nThen I will give you rain in due season, and the land shall yield her increase, and the trees of the field shall yield their fruit. \nAnd your threshing shall reach unto the vintage, and the vintage shall reach unto the sowing time: and ye shall eat your bread to the full, and dwell in your land safely. \nAnd I will give peace in the land, and ye shall lie down, and none shall make you afraid: and I will rid evil beasts out of the land, neither shall the sword go through your land. \nAnd ye shall chase your enemies, and they shall fall before you by the sword. \nAnd five of you shall chase an hundred, and an hundred of you shall put ten thousand to flight: and your enemies shall fall before you by the sword. \nFor I will have respect unto you, and make you fruitful, and multiply you, and establish my covenant with you. \nAnd ye shall eat old store, and bring forth the old because of the new. \nAnd I set my tabernacle among you: and my soul shall not abhor you. \nAnd I will walk among you, and will be your God, and ye shall be my people. \nI am the LORD your God, which brought you forth out of the land of Egypt, that ye should not be their bondmen; and I have broken the bands of your yoke, and made you go upright. \nBut if ye will not hearken unto me, and will not do all these commandments; \nAnd if ye shall despise my statutes, or if your soul abhor my judgments, so that ye will not do all my commandments, but that ye break my covenant: \nI also will do this unto you; I will even appoint over you terror, consumption, and the burning ague, that shall consume the eyes, and cause sorrow of heart: and ye shall sow your seed in vain, for your enemies shall eat it. \nAnd I will set my face against you, and ye shall be slain before your enemies: they that hate you shall reign over you; and ye shall flee when none pursueth you. \nAnd if ye will not yet for all this hearken unto me, then I will punish you seven times more for your sins. \nAnd I will break the pride of your power; and I will make your heaven as iron, and your earth as brass: \nAnd your strength shall be spent in vain: for your land shall not yield her increase, neither shall the trees of the land yield their fruits. \nAnd if ye walk contrary unto me, and will not hearken unto me; I will bring seven times more plagues upon you according to your sins. \nI will also send wild beasts among you, which shall rob you of your children, and destroy your cattle, and make you few in number; and your high ways shall be desolate. \nAnd if ye will not be reformed by me by these things, but will walk contrary unto me; \nThen will I also walk contrary unto you, and will punish you yet seven times for your sins. \nAnd I will bring a sword upon you, that shall avenge the quarrel of my covenant: and when ye are gathered together within your cities, I will send the pestilence among you; and ye shall be delivered into the hand of the enemy. \nAnd when I have broken the staff of your bread, ten women shall bake your bread in one oven, and they shall deliver you your bread again by weight: and ye shall eat, and not be satisfied. \nAnd if ye will not for all this hearken unto me, but walk contrary unto me; \nThen I will walk contrary unto you also in fury; and I, even I, will chastise you seven times for your sins. \nAnd ye shall eat the flesh of your sons, and the flesh of your daughters shall ye eat. \nAnd I will destroy your high places, and cut down your images, and cast your carcases upon the carcases of your idols, and my soul shall abhor you. \nAnd I will make your cities waste, and bring your sanctuaries unto desolation, and I will not smell the savour of your sweet odours. \nAnd I will bring the land into desolation: and your enemies which dwell therein shall be astonished at it. \nAnd I will scatter you among the heathen, and will draw out a sword after you: and your land shall be desolate, and your cities waste. \nThen shall the land enjoy her sabbaths, as long as it lieth desolate, and ye be in your enemies' land; even then shall the land rest, and enjoy her sabbaths. \nAs long as it lieth desolate it shall rest; because it did not rest in your sabbaths, when ye dwelt upon it. \nAnd upon them that are left alive of you I will send a faintness into their hearts in the lands of their enemies; and the sound of a shaken leaf shall chase them; and they shall flee, as fleeing from a sword; and they shall fall when none pursueth. \nAnd they shall fall one upon another, as it were before a sword, when none pursueth: and ye shall have no power to stand before your enemies. \nAnd ye shall perish among the heathen, and the land of your enemies shall eat you up. \nAnd they that are left of you shall pine away in their iniquity in your enemies' lands; and also in the iniquities of their fathers shall they pine away with them. \nIf they shall confess their iniquity, and the iniquity of their fathers, with their trespass which they trespassed against me, and that also they have walked contrary unto me; \nAnd that I also have walked contrary unto them, and have brought them into the land of their enemies; if then their uncircumcised hearts be humbled, and they then accept of the punishment of their iniquity: \nThen will I remember my covenant with Jacob, and also my covenant with Isaac, and also my covenant with Abraham will I remember; and I will remember the land. \nThe land also shall be left of them, and shall enjoy her sabbaths, while she lieth desolate without them: and they shall accept of the punishment of their iniquity: because, even because they despised my judgments, and because their soul abhorred my statutes. \nAnd yet for all that, when they be in the land of their enemies, I will not cast them away, neither will I abhor them, to destroy them utterly, and to break my covenant with them: for I am the LORD their God. \nBut I will for their sakes remember the covenant of their ancestors, whom I brought forth out of the land of Egypt in the sight of the heathen, that I might be their God: I am the LORD. \nThese are the statutes and judgments and laws, which the LORD made between him and the children of Israel in mount Sinai by the hand of Moses. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When a man shall make a singular vow, the persons shall be for the LORD by thy estimation. \nAnd thy estimation shall be of the male from twenty years old even unto sixty years old, even thy estimation shall be fifty shekels of silver, after the shekel of the sanctuary. \nAnd if it be a female, then thy estimation shall be thirty shekels. \nAnd if it be from five years old even unto twenty years old, then thy estimation shall be of the male twenty shekels, and for the female ten shekels. \nAnd if it be from a month old even unto five years old, then thy estimation shall be of the male five shekels of silver, and for the female thy estimation shall be three shekels of silver. \nAnd if it be from sixty years old and above; if it be a male, then thy estimation shall be fifteen shekels, and for the female ten shekels. \nBut if he be poorer than thy estimation, then he shall present himself before the priest, and the priest shall value him; according to his ability that vowed shall the priest value him. \nAnd if it be a beast, whereof men bring an offering unto the LORD, all that any man giveth of such unto the LORD shall be holy. \nHe shall not alter it, nor change it, a good for a bad, or a bad for a good: and if he shall at all change beast for beast, then it and the exchange thereof shall be holy. \nAnd if it be any unclean beast, of which they do not offer a sacrifice unto the LORD, then he shall present the beast before the priest: \nAnd the priest shall value it, whether it be good or bad: as thou valuest it, who art the priest, so shall it be. \nBut if he will at all redeem it, then he shall add a fifth part thereof unto thy estimation. \nAnd when a man shall sanctify his house to be holy unto the LORD, then the priest shall estimate it, whether it be good or bad: as the priest shall estimate it, so shall it stand. \nAnd if he that sanctified it will redeem his house, then he shall add the fifth part of the money of thy estimation unto it, and it shall be his. \nAnd if a man shall sanctify unto the LORD some part of a field of his possession, then thy estimation shall be according to the seed thereof: an homer of barley seed shall be valued at fifty shekels of silver. \nIf he sanctify his field from the year of jubile, according to thy estimation it shall stand. \nBut if he sanctify his field after the jubile, then the priest shall reckon unto him the money according to the years that remain, even unto the year of the jubile, and it shall be abated from thy estimation. \nAnd if he that sanctified the field will in any wise redeem it, then he shall add the fifth part of the money of thy estimation unto it, and it shall be assured to him. \nAnd if he will not redeem the field, or if he have sold the field to another man, it shall not be redeemed any more. \nBut the field, when it goeth out in the jubile, shall be holy unto the LORD, as a field devoted; the possession thereof shall be the priest's. \nAnd if a man sanctify unto the LORD a field which he hath bought, which is not of the fields of his possession; \nThen the priest shall reckon unto him the worth of thy estimation, even unto the year of the jubile: and he shall give thine estimation in that day, as a holy thing unto the LORD. \nIn the year of the jubile the field shall return unto him of whom it was bought, even to him to whom the possession of the land did belong. \nAnd all thy estimations shall be according to the shekel of the sanctuary: twenty gerahs shall be the shekel. \nOnly the firstling of the beasts, which should be the LORD's firstling, no man shall sanctify it; whether it be ox, or sheep: it is the LORD's. \nAnd if it be of an unclean beast, then he shall redeem it according to thine estimation, and shall add a fifth part of it thereto: or if it be not redeemed, then it shall be sold according to thy estimation. \nNotwithstanding no devoted thing, that a man shall devote unto the LORD of all that he hath, both of man and beast, and of the field of his possession, shall be sold or redeemed: every devoted thing is most holy unto the LORD. \nNone devoted, which shall be devoted of men, shall be redeemed; but shall surely be put to death. \nAnd all the tithe of the land, whether of the seed of the land, or of the fruit of the tree, is the LORD's: it is holy unto the LORD. \nAnd if a man will at all redeem ought of his tithes, he shall add thereto the fifth part thereof. \nAnd concerning the tithe of the herd, or of the flock, even of whatsoever passeth under the rod, the tenth shall be holy unto the LORD. \nHe shall not search whether it be good or bad, neither shall he change it: and if he change it at all, then both it and the change thereof shall be holy; it shall not be redeemed. \nThese are the commandments, which the LORD commanded Moses for the children of Israel in mount Sinai. \nAnd the LORD spake unto Moses in the wilderness of Sinai, in the tabernacle of the congregation, on the first day of the second month, in the second year after they were come out of the land of Egypt, saying, \nTake ye the sum of all the congregation of the children of Israel, after their families, by the house of their fathers, with the number of their names, every male by their polls; \nFrom twenty years old and upward, all that are able to go forth to war in Israel: thou and Aaron shall number them by their armies. \nAnd with you there shall be a man of every tribe; every one head of the house of his fathers. \nAnd these are the names of the men that shall stand with you: of the tribe of Reuben; Elizur the son of Shedeur. \nOf Simeon; Shelumiel the son of Zurishaddai. \nOf Judah; Nahshon the son of Amminadab. \nOf Issachar; Nethaneel the son of Zuar. \nOf Zebulun; Eliab the son of Helon. \nOf the children of Joseph: of Ephraim; Elishama the son of Ammihud: of Manasseh; Gamaliel the son of Pedahzur. \nOf Benjamin; Abidan the son of Gideoni. \nOf Dan; Ahiezer the son of Ammishaddai. \nOf Asher; Pagiel the son of Ocran. \nOf Gad; Eliasaph the son of Deuel. \nOf Naphtali; Ahira the son of Enan. \nThese were the renowned of the congregation, princes of the tribes of their fathers, heads of thousands in Israel. \nAnd Moses and Aaron took these men which are expressed by their names: \nAnd they assembled all the congregation together on the first day of the second month, and they declared their pedigrees after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, by their polls. \nAs the LORD commanded Moses, so he numbered them in the wilderness of Sinai. \nAnd the children of Reuben, Israel's eldest son, by their generations, after their families, by the house of their fathers, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Reuben, were forty and six thousand and five hundred. \nOf the children of Simeon, by their generations, after their families, by the house of their fathers, those that were numbered of them, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Simeon, were fifty and nine thousand and three hundred. \nOf the children of Gad, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Gad, were forty and five thousand six hundred and fifty. \nOf the children of Judah, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Judah, were threescore and fourteen thousand and six hundred. \nOf the children of Issachar, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Issachar, were fifty and four thousand and four hundred. \nOf the children of Zebulun, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Zebulun, were fifty and seven thousand and four hundred. \nOf the children of Joseph, namely, of the children of Ephraim, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Ephraim, were forty thousand and five hundred. \nOf the children of Manasseh, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Manasseh, were thirty and two thousand and two hundred. \nOf the children of Benjamin, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Benjamin, were thirty and five thousand and four hundred. \nOf the children of Dan, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Dan, were threescore and two thousand and seven hundred. \nOf the children of Asher, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Asher, were forty and one thousand and five hundred. \nOf the children of Naphtali, throughout their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war; \nThose that were numbered of them, even of the tribe of Naphtali, were fifty and three thousand and four hundred. \nThese are those that were numbered, which Moses and Aaron numbered, and the princes of Israel, being twelve men: each one was for the house of his fathers. \nSo were all those that were numbered of the children of Israel, by the house of their fathers, from twenty years old and upward, all that were able to go forth to war in Israel; \nEven all they that were numbered were six hundred thousand and three thousand and five hundred and fifty. \nBut the Levites after the tribe of their fathers were not numbered among them. \nFor the LORD had spoken unto Moses, saying, \nOnly thou shalt not number the tribe of Levi, neither take the sum of them among the children of Israel: \nBut thou shalt appoint the Levites over the tabernacle of testimony, and over all the vessels thereof, and over all things that belong to it: they shall bear the tabernacle, and all the vessels thereof; and they shall minister unto it, and shall encamp round about the tabernacle. \nAnd when the tabernacle setteth forward, the Levites shall take it down: and when the tabernacle is to be pitched, the Levites shall set it up: and the stranger that cometh nigh shall be put to death. \nAnd the children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, throughout their hosts. \nBut the Levites shall pitch round about the tabernacle of testimony, that there be no wrath upon the congregation of the children of Israel: and the Levites shall keep the charge of the tabernacle of testimony. \nAnd the children of Israel did according to all that the LORD commanded Moses, so did they. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nEvery man of the children of Israel shall pitch by his own standard, with the ensign of their father's house: far off about the tabernacle of the congregation shall they pitch. \nAnd on the east side toward the rising of the sun shall they of the standard of the camp of Judah pitch throughout their armies: and Nahshon the son of Amminadab shall be captain of the children of Judah. \nAnd his host, and those that were numbered of them, were threescore and fourteen thousand and six hundred. \nAnd those that do pitch next unto him shall be the tribe of Issachar: and Nethaneel the son of Zuar shall be captain of the children of Issachar. \nAnd his host, and those that were numbered thereof, were fifty and four thousand and four hundred. \nThen the tribe of Zebulun: and Eliab the son of Helon shall be captain of the children of Zebulun. \nAnd his host, and those that were numbered thereof, were fifty and seven thousand and four hundred. \nAll that were numbered in the camp of Judah were an hundred thousand and fourscore thousand and six thousand and four hundred, throughout their armies. These shall first set forth. \nOn the south side shall be the standard of the camp of Reuben according to their armies: and the captain of the children of Reuben shall be Elizur the son of Shedeur. \nAnd his host, and those that were numbered thereof, were forty and six thousand and five hundred. \nAnd those which pitch by him shall be the tribe of Simeon: and the captain of the children of Simeon shall be Shelumiel the son of Zurishaddai. \nAnd his host, and those that were numbered of them, were fifty and nine thousand and three hundred. \nThen the tribe of Gad: and the captain of the sons of Gad shall be Eliasaph the son of Reuel. \nAnd his host, and those that were numbered of them, were forty and five thousand and six hundred and fifty. \nAll that were numbered in the camp of Reuben were an hundred thousand and fifty and one thousand and four hundred and fifty, throughout their armies. And they shall set forth in the second rank. \nThen the tabernacle of the congregation shall set forward with the camp of the Levites in the midst of the camp: as they encamp, so shall they set forward, every man in his place by their standards. \nOn the west side shall be the standard of the camp of Ephraim according to their armies: and the captain of the sons of Ephraim shall be Elishama the son of Ammihud. \nAnd his host, and those that were numbered of them, were forty thousand and five hundred. \nAnd by him shall be the tribe of Manasseh: and the captain of the children of Manasseh shall be Gamaliel the son of Pedahzur. \nAnd his host, and those that were numbered of them, were thirty and two thousand and two hundred. \nThen the tribe of Benjamin: and the captain of the sons of Benjamin shall be Abidan the son of Gideoni. \nAnd his host, and those that were numbered of them, were thirty and five thousand and four hundred. \nAll that were numbered of the camp of Ephraim were an hundred thousand and eight thousand and an hundred, throughout their armies. And they shall go forward in the third rank. \nThe standard of the camp of Dan shall be on the north side by their armies: and the captain of the children of Dan shall be Ahiezer the son of Ammishaddai. \nAnd his host, and those that were numbered of them, were threescore and two thousand and seven hundred. \nAnd those that encamp by him shall be the tribe of Asher: and the captain of the children of Asher shall be Pagiel the son of Ocran. \nAnd his host, and those that were numbered of them, were forty and one thousand and five hundred. \nThen the tribe of Naphtali: and the captain of the children of Naphtali shall be Ahira the son of Enan. \nAnd his host, and those that were numbered of them, were fifty and three thousand and four hundred. \nAll they that were numbered in the camp of Dan were an hundred thousand and fifty and seven thousand and six hundred. They shall go hindmost with their standards. \nThese are those which were numbered of the children of Israel by the house of their fathers: all those that were numbered of the camps throughout their hosts were six hundred thousand and three thousand and five hundred and fifty. \nBut the Levites were not numbered among the children of Israel; as the LORD commanded Moses. \nAnd the children of Israel did according to all that the LORD commanded Moses: so they pitched by their standards, and so they set forward, every one after their families, according to the house of their fathers. \nThese also are the generations of Aaron and Moses in the day that the LORD spake with Moses in mount Sinai. \nAnd these are the names of the sons of Aaron; Nadab the firstborn, and Abihu, Eleazar, and Ithamar. \nThese are the names of the sons of Aaron, the priests which were anointed, whom he consecrated to minister in the priest's office. \nAnd Nadab and Abihu died before the LORD, when they offered strange fire before the LORD, in the wilderness of Sinai, and they had no children: and Eleazar and Ithamar ministered in the priest's office in the sight of Aaron their father. \nAnd the LORD spake unto Moses, saying, \nBring the tribe of Levi near, and present them before Aaron the priest, that they may minister unto him. \nAnd they shall keep his charge, and the charge of the whole congregation before the tabernacle of the congregation, to do the service of the tabernacle. \nAnd they shall keep all the instruments of the tabernacle of the congregation, and the charge of the children of Israel, to do the service of the tabernacle. \nAnd thou shalt give the Levites unto Aaron and to his sons: they are wholly given unto him out of the children of Israel. \nAnd thou shalt appoint Aaron and his sons, and they shall wait on their priest's office: and the stranger that cometh nigh shall be put to death. \nAnd the LORD spake unto Moses, saying, \nAnd I, behold, I have taken the Levites from among the children of Israel instead of all the firstborn that openeth the matrix among the children of Israel: therefore the Levites shall be mine; \nBecause all the firstborn are mine; for on the day that I smote all the firstborn in the land of Egypt I hallowed unto me all the firstborn in Israel, both man and beast: mine shall they be: I am the LORD. \nAnd the LORD spake unto Moses in the wilderness of Sinai, saying, \nNumber the children of Levi after the house of their fathers, by their families: every male from a month old and upward shalt thou number them. \nAnd Moses numbered them according to the word of the LORD, as he was commanded. \nAnd these were the sons of Levi by their names; Gershon, and Kohath, and Merari. \nAnd these are the names of the sons of Gershon by their families; Libni, and Shimei. \nAnd the sons of Kohath by their families; Amram, and Izehar, Hebron, and Uzziel. \nAnd the sons of Merari by their families; Mahli, and Mushi. These are the families of the Levites according to the house of their fathers. \nOf Gershon was the family of the Libnites, and the family of the Shimites: these are the families of the Gershonites. \nThose that were numbered of them, according to the number of all the males, from a month old and upward, even those that were numbered of them were seven thousand and five hundred. \nThe families of the Gershonites shall pitch behind the tabernacle westward. \nAnd the chief of the house of the father of the Gershonites shall be Eliasaph the son of Lael. \nAnd the charge of the sons of Gershon in the tabernacle of the congregation shall be the tabernacle, and the tent, the covering thereof, and the hanging for the door of the tabernacle of the congregation, \nAnd the hangings of the court, and the curtain for the door of the court, which is by the tabernacle, and by the altar round about, and the cords of it for all the service thereof. \nAnd of Kohath was the family of the Amramites, and the family of the Izeharites, and the family of the Hebronites, and the family of the Uzzielites: these are the families of the Kohathites. \nIn the number of all the males, from a month old and upward, were eight thousand and six hundred, keeping the charge of the sanctuary. \nThe families of the sons of Kohath shall pitch on the side of the tabernacle southward. \nAnd the chief of the house of the father of the families of the Kohathites shall be Elizaphan the son of Uzziel. \nAnd their charge shall be the ark, and the table, and the candlestick, and the altars, and the vessels of the sanctuary wherewith they minister, and the hanging, and all the service thereof. \nAnd Eleazar the son of Aaron the priest shall be chief over the chief of the Levites, and have the oversight of them that keep the charge of the sanctuary. \nOf Merari was the family of the Mahlites, and the family of the Mushites: these are the families of Merari. \nAnd those that were numbered of them, according to the number of all the males, from a month old and upward, were six thousand and two hundred. \nAnd the chief of the house of the father of the families of Merari was Zuriel the son of Abihail: these shall pitch on the side of the tabernacle northward. \nAnd under the custody and charge of the sons of Merari shall be the boards of the tabernacle, and the bars thereof, and the pillars thereof, and the sockets thereof, and all the vessels thereof, and all that serveth thereto, \nAnd the pillars of the court round about, and their sockets, and their pins, and their cords. \nBut those that encamp before the tabernacle toward the east, even before the tabernacle of the congregation eastward, shall be Moses, and Aaron and his sons, keeping the charge of the sanctuary for the charge of the children of Israel; and the stranger that cometh nigh shall be put to death. \nAll that were numbered of the Levites, which Moses and Aaron numbered at the commandment of the LORD, throughout their families, all the males from a month old and upward, were twenty and two thousand. \nAnd the LORD said unto Moses, Number all the firstborn of the males of the children of Israel from a month old and upward, and take the number of their names. \nAnd thou shalt take the Levites for me (I am the LORD) instead of all the firstborn among the children of Israel; and the cattle of the Levites instead of all the firstlings among the cattle of the children of Israel. \nAnd Moses numbered, as the LORD commanded him, all the firstborn among the children of Israel. \nAnd all the firstborn males by the number of names, from a month old and upward, of those that were numbered of them, were twenty and two thousand two hundred and threescore and thirteen. \nAnd the LORD spake unto Moses, saying, \nTake the Levites instead of all the firstborn among the children of Israel, and the cattle of the Levites instead of their cattle; and the Levites shall be mine: I am the LORD. \nAnd for those that are to be redeemed of the two hundred and threescore and thirteen of the firstborn of the children of Israel, which are more than the Levites; \nThou shalt even take five shekels apiece by the poll, after the shekel of the sanctuary shalt thou take them: (the shekel is twenty gerahs:) \nAnd thou shalt give the money, wherewith the odd number of them is to be redeemed, unto Aaron and to his sons. \nAnd Moses took the redemption money of them that were over and above them that were redeemed by the Levites: \nOf the firstborn of the children of Israel took he the money; a thousand three hundred and threescore and five shekels, after the shekel of the sanctuary: \nAnd Moses gave the money of them that were redeemed unto Aaron and to his sons, according to the word of the LORD, as the LORD commanded Moses. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nTake the sum of the sons of Kohath from among the sons of Levi, after their families, by the house of their fathers, \nFrom thirty years old and upward even until fifty years old, all that enter into the host, to do the work in the tabernacle of the congregation. \nThis shall be the service of the sons of Kohath in the tabernacle of the congregation, about the most holy things: \nAnd when the camp setteth forward, Aaron shall come, and his sons, and they shall take down the covering vail, and cover the ark of testimony with it: \nAnd shall put thereon the covering of badgers' skins, and shall spread over it a cloth wholly of blue, and shall put in the staves thereof. \nAnd upon the table of shewbread they shall spread a cloth of blue, and put thereon the dishes, and the spoons, and the bowls, and covers to cover withal: and the continual bread shall be thereon: \nAnd they shall spread upon them a cloth of scarlet, and cover the same with a covering of badgers' skins, and shall put in the staves thereof. \nAnd they shall take a cloth of blue, and cover the candlestick of the light, and his lamps, and his tongs, and his snuffdishes, and all the oil vessels thereof, wherewith they minister unto it: \nAnd they shall put it and all the vessels thereof within a covering of badgers' skins, and shall put it upon a bar. \nAnd upon the golden altar they shall spread a cloth of blue, and cover it with a covering of badgers' skins, and shall put to the staves thereof: \nAnd they shall take all the instruments of ministry, wherewith they minister in the sanctuary, and put them in a cloth of blue, and cover them with a covering of badgers' skins, and shall put them on a bar: \nAnd they shall take away the ashes from the altar, and spread a purple cloth thereon: \nAnd they shall put upon it all the vessels thereof, wherewith they minister about it, even the censers, the fleshhooks, and the shovels, and the basons, all the vessels of the altar; and they shall spread upon it a covering of badgers' skins, and put to the staves of it. \nAnd when Aaron and his sons have made an end of covering the sanctuary, and all the vessels of the sanctuary, as the camp is to set forward; after that, the sons of Kohath shall come to bear it: but they shall not touch any holy thing, lest they die. These things are the burden of the sons of Kohath in the tabernacle of the congregation. \nAnd to the office of Eleazar the son of Aaron the priest pertaineth the oil for the light, and the sweet incense, and the daily meat offering, and the anointing oil, and the oversight of all the tabernacle, and of all that therein is, in the sanctuary, and in the vessels thereof. \nAnd the LORD spake unto Moses and unto Aaron saying, \nCut ye not off the tribe of the families of the Kohathites from among the Levites: \nBut thus do unto them, that they may live, and not die, when they approach unto the most holy things: Aaron and his sons shall go in, and appoint them every one to his service and to his burden: \nBut they shall not go in to see when the holy things are covered, lest they die. \nAnd the LORD spake unto Moses, saying, \nTake also the sum of the sons of Gershon, throughout the houses of their fathers, by their families; \nFrom thirty years old and upward until fifty years old shalt thou number them; all that enter in to perform the service, to do the work in the tabernacle of the congregation. \nThis is the service of the families of the Gershonites, to serve, and for burdens: \nAnd they shall bear the curtains of the tabernacle, and the tabernacle of the congregation, his covering, and the covering of the badgers' skins that is above upon it, and the hanging for the door of the tabernacle of the congregation, \nAnd the hangings of the court, and the hanging for the door of the gate of the court, which is by the tabernacle and by the altar round about, and their cords, and all the instruments of their service, and all that is made for them: so shall they serve. \nAt the appointment of Aaron and his sons shall be all the service of the sons of the Gershonites, in all their burdens, and in all their service: and ye shall appoint unto them in charge all their burdens. \nThis is the service of the families of the sons of Gershon in the tabernacle of the congregation: and their charge shall be under the hand of Ithamar the son of Aaron the priest. \nAs for the sons of Merari, thou shalt number them after their families, by the house of their fathers; \nFrom thirty years old and upward even unto fifty years old shalt thou number them, every one that entereth into the service, to do the work of the tabernacle of the congregation. \nAnd this is the charge of their burden, according to all their service in the tabernacle of the congregation; the boards of the tabernacle, and the bars thereof, and the pillars thereof, and sockets thereof, \nAnd the pillars of the court round about, and their sockets, and their pins, and their cords, with all their instruments, and with all their service: and by name ye shall reckon the instruments of the charge of their burden. \nThis is the service of the families of the sons of Merari, according to all their service, in the tabernacle of the congregation, under the hand of Ithamar the son of Aaron the priest. \nAnd Moses and Aaron and the chief of the congregation numbered the sons of the Kohathites after their families, and after the house of their fathers, \nFrom thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation: \nAnd those that were numbered of them by their families were two thousand seven hundred and fifty. \nThese were they that were numbered of the families of the Kohathites, all that might do service in the tabernacle of the congregation, which Moses and Aaron did number according to the commandment of the LORD by the hand of Moses. \nAnd those that were numbered of the sons of Gershon, throughout their families, and by the house of their fathers, \nFrom thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation, \nEven those that were numbered of them, throughout their families, by the house of their fathers, were two thousand and six hundred and thirty. \nThese are they that were numbered of the families of the sons of Gershon, of all that might do service in the tabernacle of the congregation, whom Moses and Aaron did number according to the commandment of the LORD. \nAnd those that were numbered of the families of the sons of Merari, throughout their families, by the house of their fathers, \nFrom thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation, \nEven those that were numbered of them after their families, were three thousand and two hundred. \nThese be those that were numbered of the families of the sons of Merari, whom Moses and Aaron numbered according to the word of the LORD by the hand of Moses. \nAll those that were numbered of the Levites, whom Moses and Aaron and the chief of Israel numbered, after their families, and after the house of their fathers, \nFrom thirty years old and upward even unto fifty years old, every one that came to do the service of the ministry, and the service of the burden in the tabernacle of the congregation. \nEven those that were numbered of them, were eight thousand and five hundred and fourscore, \nAccording to the commandment of the LORD they were numbered by the hand of Moses, every one according to his service, and according to his burden: thus were they numbered of him, as the LORD commanded Moses. \nAnd the LORD spake unto Moses, saying, \nCommand the children of Israel, that they put out of the camp every leper, and every one that hath an issue, and whosoever is defiled by the dead: \nBoth male and female shall ye put out, without the camp shall ye put them; that they defile not their camps, in the midst whereof I dwell. \nAnd the children of Israel did so, and put them out without the camp: as the LORD spake unto Moses, so did the children of Israel. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, When a man or woman shall commit any sin that men commit, to do a trespass against the LORD, and that person be guilty; \nThen they shall confess their sin which they have done: and he shall recompense his trespass with the principal thereof, and add unto it the fifth part thereof, and give it unto him against whom he hath trespassed. \nBut if the man have no kinsman to recompense the trespass unto, let the trespass be recompensed unto the LORD, even to the priest; beside the ram of the atonement, whereby an atonement shall be made for him. \nAnd every offering of all the holy things of the children of Israel, which they bring unto the priest, shall be his. \nAnd every man's hallowed things shall be his: whatsoever any man giveth the priest, it shall be his. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, If any man's wife go aside, and commit a trespass against him, \nAnd a man lie with her carnally, and it be hid from the eyes of her husband, and be kept close, and she be defiled, and there be no witness against her, neither she be taken with the manner; \nAnd the spirit of jealousy come upon him, and he be jealous of his wife, and she be defiled: or if the spirit of jealousy come upon him, and he be jealous of his wife, and she be not defiled: \nThen shall the man bring his wife unto the priest, and he shall bring her offering for her, the tenth part of an ephah of barley meal; he shall pour no oil upon it, nor put frankincense thereon; for it is an offering of jealousy, an offering of memorial, bringing iniquity to remembrance. \nAnd the priest shall bring her near, and set her before the LORD: \nAnd the priest shall take holy water in an earthen vessel; and of the dust that is in the floor of the tabernacle the priest shall take, and put it into the water: \nAnd the priest shall set the woman before the LORD, and uncover the woman's head, and put the offering of memorial in her hands, which is the jealousy offering: and the priest shall have in his hand the bitter water that causeth the curse: \nAnd the priest shall charge her by an oath, and say unto the woman, If no man have lain with thee, and if thou hast not gone aside to uncleanness with another instead of thy husband, be thou free from this bitter water that causeth the curse: \nBut if thou hast gone aside to another instead of thy husband, and if thou be defiled, and some man have lain with thee beside thine husband: \nThen the priest shall charge the woman with an oath of cursing, and the priest shall say unto the woman, The LORD make thee a curse and an oath among thy people, when the LORD doth make thy thigh to rot, and thy belly to swell; \nAnd this water that causeth the curse shall go into thy bowels, to make thy belly to swell, and thy thigh to rot: And the woman shall say, Amen, amen. \nAnd the priest shall write these curses in a book, and he shall blot them out with the bitter water: \nAnd he shall cause the woman to drink the bitter water that causeth the curse: and the water that causeth the curse shall enter into her, and become bitter. \nThen the priest shall take the jealousy offering out of the woman's hand, and shall wave the offering before the LORD, and offer it upon the altar: \nAnd the priest shall take an handful of the offering, even the memorial thereof, and burn it upon the altar, and afterward shall cause the woman to drink the water. \nAnd when he hath made her to drink the water, then it shall come to pass, that, if she be defiled, and have done trespass against her husband, that the water that causeth the curse shall enter into her, and become bitter, and her belly shall swell, and her thigh shall rot: and the woman shall be a curse among her people. \nAnd if the woman be not defiled, but be clean; then she shall be free, and shall conceive seed. \nThis is the law of jealousies, when a wife goeth aside to another instead of her husband, and is defiled; \nOr when the spirit of jealousy cometh upon him, and he be jealous over his wife, and shall set the woman before the LORD, and the priest shall execute upon her all this law. \nThen shall the man be guiltless from iniquity, and this woman shall bear her iniquity. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When either man or woman shall separate themselves to vow a vow of a Nazarite, to separate themselves unto the LORD: \nHe shall separate himself from wine and strong drink, and shall drink no vinegar of wine, or vinegar of strong drink, neither shall he drink any liquor of grapes, nor eat moist grapes, or dried. \nAll the days of his separation shall he eat nothing that is made of the vine tree, from the kernels even to the husk. \nAll the days of the vow of his separation there shall no razor come upon his head: until the days be fulfilled, in the which he separateth himself unto the LORD, he shall be holy, and shall let the locks of the hair of his head grow. \nAll the days that he separateth himself unto the LORD he shall come at no dead body. \nHe shall not make himself unclean for his father, or for his mother, for his brother, or for his sister, when they die: because the consecration of his God is upon his head. \nAll the days of his separation he is holy unto the LORD. \nAnd if any man die very suddenly by him, and he hath defiled the head of his consecration; then he shall shave his head in the day of his cleansing, on the seventh day shall he shave it. \nAnd on the eighth day he shall bring two turtles, or two young pigeons, to the priest, to the door of the tabernacle of the congregation: \nAnd the priest shall offer the one for a sin offering, and the other for a burnt offering, and make an atonement for him, for that he sinned by the dead, and shall hallow his head that same day. \nAnd he shall consecrate unto the LORD the days of his separation, and shall bring a lamb of the first year for a trespass offering: but the days that were before shall be lost, because his separation was defiled. \nAnd this is the law of the Nazarite, when the days of his separation are fulfilled: he shall be brought unto the door of the tabernacle of the congregation: \nAnd he shall offer his offering unto the LORD, one he lamb of the first year without blemish for a burnt offering, and one ewe lamb of the first year without blemish for a sin offering, and one ram without blemish for peace offerings, \nAnd a basket of unleavened bread, cakes of fine flour mingled with oil, and wafers of unleavened bread anointed with oil, and their meat offering, and their drink offerings. \nAnd the priest shall bring them before the LORD, and shall offer his sin offering, and his burnt offering: \nAnd he shall offer the ram for a sacrifice of peace offerings unto the LORD, with the basket of unleavened bread: the priest shall offer also his meat offering, and his drink offering. \nAnd the Nazarite shall shave the head of his separation at the door of the tabernacle of the congregation, and shall take the hair of the head of his separation, and put it in the fire which is under the sacrifice of the peace offerings. \nAnd the priest shall take the sodden shoulder of the ram, and one unleavened cake out of the basket, and one unleavened wafer, and shall put them upon the hands of the Nazarite, after the hair of his separation is shaven: \nAnd the priest shall wave them for a wave offering before the LORD: this is holy for the priest, with the wave breast and heave shoulder: and after that the Nazarite may drink wine. \nThis is the law of the Nazarite who hath vowed, and of his offering unto the LORD for his separation, beside that that his hand shall get: according to the vow which he vowed, so he must do after the law of his separation. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron and unto his sons, saying, On this wise ye shall bless the children of Israel, saying unto them, \nThe LORD bless thee, and keep thee: \nThe LORD make his face shine upon thee, and be gracious unto thee: \nThe LORD lift up his countenance upon thee, and give thee peace. \nAnd they shall put my name upon the children of Israel, and I will bless them. \nAnd it came to pass on the day that Moses had fully set up the tabernacle, and had anointed it, and sanctified it, and all the instruments thereof, both the altar and all the vessels thereof, and had anointed them, and sanctified them; \nThat the princes of Israel, heads of the house of their fathers, who were the princes of the tribes, and were over them that were numbered, offered: \nAnd they brought their offering before the LORD, six covered wagons, and twelve oxen; a wagon for two of the princes, and for each one an ox: and they brought them before the tabernacle. \nAnd the LORD spake unto Moses, saying, \nTake it of them, that they may be to do the service of the tabernacle of the congregation; and thou shalt give them unto the Levites, to every man according to his service. \nAnd Moses took the wagons and the oxen, and gave them unto the Levites. \nTwo wagons and four oxen he gave unto the sons of Gershon, according to their service: \nAnd four wagons and eight oxen he gave unto the sons of Merari, according unto their service, under the hand of Ithamar the son of Aaron the priest. \nBut unto the sons of Kohath he gave none: because the service of the sanctuary belonging unto them was that they should bear upon their shoulders. \nAnd the princes offered for dedicating of the altar in the day that it was anointed, even the princes offered their offering before the altar. \nAnd the LORD said unto Moses, They shall offer their offering, each prince on his day, for the dedicating of the altar. \nAnd he that offered his offering the first day was Nahshon the son of Amminadab, of the tribe of Judah: \nAnd his offering was one silver charger, the weight thereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them were full of fine flour mingled with oil for a meat offering: \nOne spoon of ten shekels of gold, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nahshon the son of Amminadab. \nOn the second day Nethaneel the son of Zuar, prince of Issachar, did offer: \nHe offered for his offering one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne spoon of gold of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nethaneel the son of Zuar. \nOn the third day Eliab the son of Helon, prince of the children of Zebulun, did offer: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliab the son of Helon. \nOn the fourth day Elizur the son of Shedeur, prince of the children of Reuben, did offer: \nHis offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elizur the son of Shedeur. \nOn the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon, did offer: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Shelumiel the son of Zurishaddai. \nOn the sixth day Eliasaph the son of Deuel, prince of the children of Gad, offered: \nHis offering was one silver charger of the weight of an hundred and thirty shekels, a silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliasaph the son of Deuel. \nOn the seventh day Elishama the son of Ammihud, prince of the children of Ephraim, offered: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elishama the son of Ammihud. \nOn the eighth day offered Gamaliel the son of Pedahzur, prince of the children of Manasseh: \nHis offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Gamaliel the son of Pedahzur. \nOn the ninth day Abidan the son of Gideoni, prince of the children of Benjamin, offered: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Abidan the son of Gideoni. \nOn the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan, offered: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahiezer the son of Ammishaddai. \nOn the eleventh day Pagiel the son of Ocran, prince of the children of Asher, offered: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Pagiel the son of Ocran. \nOn the twelfth day Ahira the son of Enan, prince of the children of Naphtali, offered: \nHis offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering: \nOne golden spoon of ten shekels, full of incense: \nOne young bullock, one ram, one lamb of the first year, for a burnt offering: \nOne kid of the goats for a sin offering: \nAnd for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahira the son of Enan. \nThis was the dedication of the altar, in the day when it was anointed, by the princes of Israel: twelve chargers of silver, twelve silver bowls, twelve spoons of gold: \nEach charger of silver weighing an hundred and thirty shekels, each bowl seventy: all the silver vessels weighed two thousand and four hundred shekels, after the shekel of the sanctuary: \nThe golden spoons were twelve, full of incense, weighing ten shekels apiece, after the shekel of the sanctuary: all the gold of the spoons was an hundred and twenty shekels. \nAll the oxen for the burnt offering were twelve bullocks, the rams twelve, the lambs of the first year twelve, with their meat offering: and the kids of the goats for sin offering twelve. \nAnd all the oxen for the sacrifice of the peace offerings were twenty and four bullocks, the rams sixty, the he goats sixty, the lambs of the first year sixty. This was the dedication of the altar, after that it was anointed. \nAnd when Moses was gone into the tabernacle of the congregation to speak with him, then he heard the voice of one speaking unto him from off the mercy seat that was upon the ark of testimony, from between the two cherubims: and he spake unto him. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Aaron and say unto him, When thou lightest the lamps, the seven lamps shall give light over against the candlestick. \nAnd Aaron did so; he lighted the lamps thereof over against the candlestick, as the LORD commanded Moses. \nAnd this work of the candlestick was of beaten gold, unto the shaft thereof, unto the flowers thereof, was beaten work: according unto the pattern which the LORD had shewed Moses, so he made the candlestick. \nAnd the LORD spake unto Moses, saying, \nTake the Levites from among the children of Israel, and cleanse them. \nAnd thus shalt thou do unto them, to cleanse them: Sprinkle water of purifying upon them, and let them shave all their flesh, and let them wash their clothes, and so make themselves clean. \nThen let them take a young bullock with his meat offering, even fine flour mingled with oil, and another young bullock shalt thou take for a sin offering. \nAnd thou shalt bring the Levites before the tabernacle of the congregation: and thou shalt gather the whole assembly of the children of Israel together: \nAnd thou shalt bring the Levites before the LORD: and the children of Israel shall put their hands upon the Levites: \nAnd Aaron shall offer the Levites before the LORD for an offering of the children of Israel, that they may execute the service of the LORD. \nAnd the Levites shall lay their hands upon the heads of the bullocks: and thou shalt offer the one for a sin offering, and the other for a burnt offering, unto the LORD, to make an atonement for the Levites. \nAnd thou shalt set the Levites before Aaron, and before his sons, and offer them for an offering unto the LORD. \nThus shalt thou separate the Levites from among the children of Israel: and the Levites shall be mine. \nAnd after that shall the Levites go in to do the service of the tabernacle of the congregation: and thou shalt cleanse them, and offer them for an offering. \nFor they are wholly given unto me from among the children of Israel; instead of such as open every womb, even instead of the firstborn of all the children of Israel, have I taken them unto me. \nFor all the firstborn of the children of Israel are mine, both man and beast: on the day that I smote every firstborn in the land of Egypt I sanctified them for myself. \nAnd I have taken the Levites for all the firstborn of the children of Israel. \nAnd I have given the Levites as a gift to Aaron and to his sons from among the children of Israel, to do the service of the children of Israel in the tabernacle of the congregation, and to make an atonement for the children of Israel: that there be no plague among the children of Israel, when the children of Israel come nigh unto the sanctuary. \nAnd Moses, and Aaron, and all the congregation of the children of Israel, did to the Levites according unto all that the LORD commanded Moses concerning the Levites, so did the children of Israel unto them. \nAnd the Levites were purified, and they washed their clothes; and Aaron offered them as an offering before the LORD; and Aaron made an atonement for them to cleanse them. \nAnd after that went the Levites in to do their service in the tabernacle of the congregation before Aaron, and before his sons: as the LORD had commanded Moses concerning the Levites, so did they unto them. \nAnd the LORD spake unto Moses, saying, \nThis is it that belongeth unto the Levites: from twenty and five years old and upward they shall go in to wait upon the service of the tabernacle of the congregation: \nAnd from the age of fifty years they shall cease waiting upon the service thereof, and shall serve no more: \nBut shall minister with their brethren in the tabernacle of the congregation, to keep the charge, and shall do no service. Thus shalt thou do unto the Levites touching their charge. \nAnd the LORD spake unto Moses in the wilderness of Sinai, in the first month of the second year after they were come out of the land of Egypt, saying, \nLet the children of Israel also keep the passover at his appointed season. \nIn the fourteenth day of this month, at even, ye shall keep it in his appointed season: according to all the rites of it, and according to all the ceremonies thereof, shall ye keep it. \nAnd Moses spake unto the children of Israel, that they should keep the passover. \nAnd they kept the passover on the fourteenth day of the first month at even in the wilderness of Sinai: according to all that the LORD commanded Moses, so did the children of Israel. \nAnd there were certain men, who were defiled by the dead body of a man, that they could not keep the passover on that day: and they came before Moses and before Aaron on that day: \nAnd those men said unto him, We are defiled by the dead body of a man: wherefore are we kept back, that we may not offer an offering of the LORD in his appointed season among the children of Israel? \nAnd Moses said unto them, Stand still, and I will hear what the LORD will command concerning you. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, saying, If any man of you or of your posterity shall be unclean by reason of a dead body, or be in a journey afar off, yet he shall keep the passover unto the LORD. \nThe fourteenth day of the second month at even they shall keep it, and eat it with unleavened bread and bitter herbs. \nThey shall leave none of it unto the morning, nor break any bone of it: according to all the ordinances of the passover they shall keep it. \nBut the man that is clean, and is not in a journey, and forbeareth to keep the passover, even the same soul shall be cut off from among his people: because he brought not the offering of the LORD in his appointed season, that man shall bear his sin. \nAnd if a stranger shall sojourn among you, and will keep the passover unto the LORD; according to the ordinance of the passover, and according to the manner thereof, so shall he do: ye shall have one ordinance, both for the stranger, and for him that was born in the land. \nAnd on the day that the tabernacle was reared up the cloud covered the tabernacle, namely, the tent of the testimony: and at even there was upon the tabernacle as it were the appearance of fire, until the morning. \nSo it was alway: the cloud covered it by day, and the appearance of fire by night. \nAnd when the cloud was taken up from the tabernacle, then after that the children of Israel journeyed: and in the place where the cloud abode, there the children of Israel pitched their tents. \nAt the commandment of the LORD the children of Israel journeyed, and at the commandment of the LORD they pitched: as long as the cloud abode upon the tabernacle they rested in their tents. \nAnd when the cloud tarried long upon the tabernacle many days, then the children of Israel kept the charge of the LORD, and journeyed not. \nAnd so it was, when the cloud was a few days upon the tabernacle; according to the commandment of the LORD they abode in their tents, and according to the commandment of the LORD they journeyed. \nAnd so it was, when the cloud abode from even unto the morning, and that the cloud was taken up in the morning, then they journeyed: whether it was by day or by night that the cloud was taken up, they journeyed. \nOr whether it were two days, or a month, or a year, that the cloud tarried upon the tabernacle, remaining thereon, the children of Israel abode in their tents, and journeyed not: but when it was taken up, they journeyed. \nAt the commandment of the LORD they rested in the tents, and at the commandment of the LORD they journeyed: they kept the charge of the LORD, at the commandment of the LORD by the hand of Moses. \nAnd the LORD spake unto Moses, saying, \nMake thee two trumpets of silver; of a whole piece shalt thou make them: that thou mayest use them for the calling of the assembly, and for the journeying of the camps. \nAnd when they shall blow with them, all the assembly shall assemble themselves to thee at the door of the tabernacle of the congregation. \nAnd if they blow but with one trumpet, then the princes, which are heads of the thousands of Israel, shall gather themselves unto thee. \nWhen ye blow an alarm, then the camps that lie on the east parts shall go forward. \nWhen ye blow an alarm the second time, then the camps that lie on the south side shall take their journey: they shall blow an alarm for their journeys. \nBut when the congregation is to be gathered together, ye shall blow, but ye shall not sound an alarm. \nAnd the sons of Aaron, the priests, shall blow with the trumpets; and they shall be to you for an ordinance for ever throughout your generations. \nAnd if ye go to war in your land against the enemy that oppresseth you, then ye shall blow an alarm with the trumpets; and ye shall be remembered before the LORD your God, and ye shall be saved from your enemies. \nAlso in the day of your gladness, and in your solemn days, and in the beginnings of your months, ye shall blow with the trumpets over your burnt offerings, and over the sacrifices of your peace offerings; that they may be to you for a memorial before your God: I am the LORD your God. \nAnd it came to pass on the twentieth day of the second month, in the second year, that the cloud was taken up from off the tabernacle of the testimony. \nAnd the children of Israel took their journeys out of the wilderness of Sinai; and the cloud rested in the wilderness of Paran. \nAnd they first took their journey according to the commandment of the LORD by the hand of Moses. \nIn the first place went the standard of the camp of the children of Judah according to their armies: and over his host was Nahshon the son of Amminadab. \nAnd over the host of the tribe of the children of Issachar was Nethaneel the son of Zuar. \nAnd over the host of the tribe of the children of Zebulun was Eliab the son of Helon. \nAnd the tabernacle was taken down; and the sons of Gershon and the sons of Merari set forward, bearing the tabernacle. \nAnd the standard of the camp of Reuben set forward according to their armies: and over his host was Elizur the son of Shedeur. \nAnd over the host of the tribe of the children of Simeon was Shelumiel the son of Zurishaddai. \nAnd over the host of the tribe of the children of Gad was Eliasaph the son of Deuel. \nAnd the Kohathites set forward, bearing the sanctuary: and the other did set up the tabernacle against they came. \nAnd the standard of the camp of the children of Ephraim set forward according to their armies: and over his host was Elishama the son of Ammihud. \nAnd over the host of the tribe of the children of Manasseh was Gamaliel the son of Pedahzur. \nAnd over the host of the tribe of the children of Benjamin was Abidan the son of Gideoni. \nAnd the standard of the camp of the children of Dan set forward, which was the rereward of all the camps throughout their hosts: and over his host was Ahiezer the son of Ammishaddai. \nAnd over the host of the tribe of the children of Asher was Pagiel the son of Ocran. \nAnd over the host of the tribe of the children of Naphtali was Ahira the son of Enan. \nThus were the journeyings of the children of Israel according to their armies, when they set forward. \nAnd Moses said unto Hobab, the son of Raguel the Midianite, Moses' father in law, We are journeying unto the place of which the LORD said, I will give it you: come thou with us, and we will do thee good: for the LORD hath spoken good concerning Israel. \nAnd he said unto him, I will not go; but I will depart to mine own land, and to my kindred. \nAnd he said, Leave us not, I pray thee; forasmuch as thou knowest how we are to encamp in the wilderness, and thou mayest be to us instead of eyes. \nAnd it shall be, if thou go with us, yea, it shall be, that what goodness the LORD shall do unto us, the same will we do unto thee. \nAnd they departed from the mount of the LORD three days' journey: and the ark of the covenant of the LORD went before them in the three days' journey, to search out a resting place for them. \nAnd the cloud of the LORD was upon them by day, when they went out of the camp. \nAnd it came to pass, when the ark set forward, that Moses said, Rise up, LORD, and let thine enemies be scattered; and let them that hate thee flee before thee. \nAnd when it rested, he said, Return, O LORD, unto the many thousands of Israel. \nAnd when the people complained, it displeased the LORD: and the LORD heard it; and his anger was kindled; and the fire of the LORD burnt among them, and consumed them that were in the uttermost parts of the camp. \nAnd the people cried unto Moses; and when Moses prayed unto the LORD, the fire was quenched. \nAnd he called the name of the place Taberah: because the fire of the LORD burnt among them. \nAnd the mixt multitude that was among them fell a lusting: and the children of Israel also wept again, and said, Who shall give us flesh to eat? \nWe remember the fish, which we did eat in Egypt freely; the cucumbers, and the melons, and the leeks, and the onions, and the garlick: \nBut now our soul is dried away: there is nothing at all, beside this manna, before our eyes. \nAnd the manna was as coriander seed, and the colour thereof as the colour of bdellium. \nAnd the people went about, and gathered it, and ground it in mills, or beat it in a mortar, and baked it in pans, and made cakes of it: and the taste of it was as the taste of fresh oil. \nAnd when the dew fell upon the camp in the night, the manna fell upon it. \nThen Moses heard the people weep throughout their families, every man in the door of his tent: and the anger of the LORD was kindled greatly; Moses also was displeased. \nAnd Moses said unto the LORD, Wherefore hast thou afflicted thy servant? and wherefore have I not found favour in thy sight, that thou layest the burden of all this people upon me? \nHave I conceived all this people? have I begotten them, that thou shouldest say unto me, Carry them in thy bosom, as a nursing father beareth the sucking child, unto the land which thou swarest unto their fathers? \nWhence should I have flesh to give unto all this people? for they weep unto me, saying, Give us flesh, that we may eat. \nI am not able to bear all this people alone, because it is too heavy for me. \nAnd if thou deal thus with me, kill me, I pray thee, out of hand, if I have found favour in thy sight; and let me not see my wretchedness. \nAnd the LORD said unto Moses, Gather unto me seventy men of the elders of Israel, whom thou knowest to be the elders of the people, and officers over them; and bring them unto the tabernacle of the congregation, that they may stand there with thee. \nAnd I will come down and talk with thee there: and I will take of the spirit which is upon thee, and will put it upon them; and they shall bear the burden of the people with thee, that thou bear it not thyself alone. \nAnd say thou unto the people, Sanctify yourselves against to morrow, and ye shall eat flesh: for ye have wept in the ears of the LORD, saying, Who shall give us flesh to eat? for it was well with us in Egypt: therefore the LORD will give you flesh, and ye shall eat. \nYe shall not eat one day, nor two days, nor five days, neither ten days, nor twenty days; \nBut even a whole month, until it come out at your nostrils, and it be loathsome unto you: because that ye have despised the LORD which is among you, and have wept before him, saying, Why came we forth out of Egypt? \nAnd Moses said, The people, among whom I am, are six hundred thousand footmen; and thou hast said, I will give them flesh, that they may eat a whole month. \nShall the flocks and the herds be slain for them, to suffice them? or shall all the fish of the sea be gathered together for them, to suffice them? \nAnd the LORD said unto Moses, Is the LORD'S hand waxed short? thou shalt see now whether my word shall come to pass unto thee or not. \nAnd Moses went out, and told the people the words of the LORD, and gathered the seventy men of the elders of the people, and set them round about the tabernacle. \nAnd the LORD came down in a cloud, and spake unto him, and took of the spirit that was upon him, and gave it unto the seventy elders: and it came to pass, that, when the spirit rested upon them, they prophesied, and did not cease. \nBut there remained two of the men in the camp, the name of the one was Eldad, and the name of the other Medad: and the spirit rested upon them; and they were of them that were written, but went not out unto the tabernacle: and they prophesied in the camp. \nAnd there ran a young man, and told Moses, and said, Eldad and Medad do prophesy in the camp. \nAnd Joshua the son of Nun, the servant of Moses, one of his young men, answered and said, My lord Moses, forbid them. \nAnd Moses said unto him, Enviest thou for my sake? would God that all the LORD'S people were prophets, and that the LORD would put his spirit upon them! \nAnd Moses gat him into the camp, he and the elders of Israel. \nAnd there went forth a wind from the LORD, and brought quails from the sea, and let them fall by the camp, as it were a day's journey on this side, and as it were a day's journey on the other side, round about the camp, and as it were two cubits high upon the face of the earth. \nAnd the people stood up all that day, and all that night, and all the next day, and they gathered the quails: he that gathered least gathered ten homers: and they spread them all abroad for themselves round about the camp. \nAnd while the flesh was yet between their teeth, ere it was chewed, the wrath of the LORD was kindled against the people, and the LORD smote the people with a very great plague. \nAnd he called the name of that place Kibrothhattaavah: because there they buried the people that lusted. \nAnd the people journeyed from Kibrothhattaavah unto Hazeroth; and abode at Hazeroth. \nAnd Miriam and Aaron spake against Moses because of the Ethiopian woman whom he had married: for he had married an Ethiopian woman. \nAnd they said, Hath the LORD indeed spoken only by Moses? hath he not spoken also by us? And the LORD heard it. \n(Now the man Moses was very meek, above all the men which were upon the face of the earth.) \nAnd the LORD spake suddenly unto Moses, and unto Aaron, and unto Miriam, Come out ye three unto the tabernacle of the congregation. And they three came out. \nAnd the LORD came down in the pillar of the cloud, and stood in the door of the tabernacle, and called Aaron and Miriam: and they both came forth. \nAnd he said, Hear now my words: If there be a prophet among you, I the LORD will make myself known unto him in a vision, and will speak unto him in a dream. \nMy servant Moses is not so, who is faithful in all mine house. \nWith him will I speak mouth to mouth, even apparently, and not in dark speeches; and the similitude of the LORD shall he behold: wherefore then were ye not afraid to speak against my servant Moses? \nAnd the anger of the LORD was kindled against them; and he departed. \nAnd the cloud departed from off the tabernacle; and, behold, Miriam became leprous, white as snow: and Aaron looked upon Miriam, and, behold, she was leprous. \nAnd Aaron said unto Moses, Alas, my lord, I beseech thee, lay not the sin upon us, wherein we have done foolishly, and wherein we have sinned. \nLet her not be as one dead, of whom the flesh is half consumed when he cometh out of his mother's womb. \nAnd Moses cried unto the LORD, saying, Heal her now, O God, I beseech thee. \nAnd the LORD said unto Moses, If her father had but spit in her face, should she not be ashamed seven days? let her be shut out from the camp seven days, and after that let her be received in again. \nAnd Miriam was shut out from the camp seven days: and the people journeyed not till Miriam was brought in again. \nAnd afterward the people removed from Hazeroth, and pitched in the wilderness of Paran. \nAnd the LORD spake unto Moses, saying, \nSend thou men, that they may search the land of Canaan, which I give unto the children of Israel: of every tribe of their fathers shall ye send a man, every one a ruler among them. \nAnd Moses by the commandment of the LORD sent them from the wilderness of Paran: all those men were heads of the children of Israel. \nAnd these were their names: of the tribe of Reuben, Shammua the son of Zaccur. \nOf the tribe of Simeon, Shaphat the son of Hori. \nOf the tribe of Judah, Caleb the son of Jephunneh. \nOf the tribe of Issachar, Igal the son of Joseph. \nOf the tribe of Ephraim, Oshea the son of Nun. \nOf the tribe of Benjamin, Palti the son of Raphu. \nOf the tribe of Zebulun, Gaddiel the son of Sodi. \nOf the tribe of Joseph, namely, of the tribe of Manasseh, Gaddi the son of Susi. \nOf the tribe of Dan, Ammiel the son of Gemalli. \nOf the tribe of Asher, Sethur the son of Michael. \nOf the tribe of Naphtali, Nahbi the son of Vophsi. \nOf the tribe of Gad, Geuel the son of Machi. \nThese are the names of the men which Moses sent to spy out the land. And Moses called Oshea the son of Nun Jehoshua. \nAnd Moses sent them to spy out the land of Canaan, and said unto them, Get you up this way southward, and go up into the mountain: \nAnd see the land, what it is, and the people that dwelleth therein, whether they be strong or weak, few or many; \nAnd what the land is that they dwell in, whether it be good or bad; and what cities they be that they dwell in, whether in tents, or in strong holds; \nAnd what the land is, whether it be fat or lean, whether there be wood therein, or not. And be ye of good courage, and bring of the fruit of the land. Now the time was the time of the firstripe grapes. \nSo they went up, and searched the land from the wilderness of Zin unto Rehob, as men come to Hamath. \nAnd they ascended by the south, and came unto Hebron; where Ahiman, Sheshai, and Talmai, the children of Anak, were. (Now Hebron was built seven years before Zoan in Egypt.) \nAnd they came unto the brook of Eshcol, and cut down from thence a branch with one cluster of grapes, and they bare it between two upon a staff; and they brought of the pomegranates, and of the figs. \nThe place was called the brook Eshcol, because of the cluster of grapes which the children of Israel cut down from thence. \nAnd they returned from searching of the land after forty days. \nAnd they went and came to Moses, and to Aaron, and to all the congregation of the children of Israel, unto the wilderness of Paran, to Kadesh; and brought back word unto them, and unto all the congregation, and shewed them the fruit of the land. \nAnd they told him, and said, We came unto the land whither thou sentest us, and surely it floweth with milk and honey; and this is the fruit of it. \nNevertheless the people be strong that dwell in the land, and the cities are walled, and very great: and moreover we saw the children of Anak there. \nThe Amalekites dwell in the land of the south: and the Hittites, and the Jebusites, and the Amorites, dwell in the mountains: and the Canaanites dwell by the sea, and by the coast of Jordan. \nAnd Caleb stilled the people before Moses, and said, Let us go up at once, and possess it; for we are well able to overcome it. \nBut the men that went up with him said, We be not able to go up against the people; for they are stronger than we. \nAnd they brought up an evil report of the land which they had searched unto the children of Israel, saying, The land, through which we have gone to search it, is a land that eateth up the inhabitants thereof; and all the people that we saw in it are men of a great stature. \nAnd there we saw the giants, the sons of Anak, which come of the giants: and we were in our own sight as grasshoppers, and so we were in their sight. \nAnd all the congregation lifted up their voice, and cried; and the people wept that night. \nAnd all the children of Israel murmured against Moses and against Aaron: and the whole congregation said unto them, Would God that we had died in the land of Egypt! or would God we had died in this wilderness! \nAnd wherefore hath the LORD brought us unto this land, to fall by the sword, that our wives and our children should be a prey? were it not better for us to return into Egypt? \nAnd they said one to another, Let us make a captain, and let us return into Egypt. \nThen Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel. \nAnd Joshua the son of Nun, and Caleb the son of Jephunneh, which were of them that searched the land, rent their clothes: \nAnd they spake unto all the company of the children of Israel, saying, The land, which we passed through to search it, is an exceeding good land. \nIf the LORD delight in us, then he will bring us into this land, and give it us; a land which floweth with milk and honey. \nOnly rebel not ye against the LORD, neither fear ye the people of the land; for they are bread for us: their defence is departed from them, and the LORD is with us: fear them not. \nBut all the congregation bade stone them with stones. And the glory of the LORD appeared in the tabernacle of the congregation before all the children of Israel. \nAnd the LORD said unto Moses, How long will this people provoke me? and how long will it be ere they believe me, for all the signs which I have shewed among them? \nI will smite them with the pestilence, and disinherit them, and will make of thee a greater nation and mightier than they. \nAnd Moses said unto the LORD, Then the Egyptians shall hear it, (for thou broughtest up this people in thy might from among them;) \nAnd they will tell it to the inhabitants of this land: for they have heard that thou LORD art among this people, that thou LORD art seen face to face, and that thy cloud standeth over them, and that thou goest before them, by day time in a pillar of a cloud, and in a pillar of fire by night. \nNow if thou shalt kill all this people as one man, then the nations which have heard the fame of thee will speak, saying, \nBecause the LORD was not able to bring this people into the land which he sware unto them, therefore he hath slain them in the wilderness. \nAnd now, I beseech thee, let the power of my lord be great, according as thou hast spoken, saying, \nThe LORD is longsuffering, and of great mercy, forgiving iniquity and transgression, and by no means clearing the guilty, visiting the iniquity of the fathers upon the children unto the third and fourth generation. \nPardon, I beseech thee, the iniquity of this people according unto the greatness of thy mercy, and as thou hast forgiven this people, from Egypt even until now. \nAnd the LORD said, I have pardoned according to thy word: \nBut as truly as I live, all the earth shall be filled with the glory of the LORD. \nBecause all those men which have seen my glory, and my miracles, which I did in Egypt and in the wilderness, and have tempted me now these ten times, and have not hearkened to my voice; \nSurely they shall not see the land which I sware unto their fathers, neither shall any of them that provoked me see it: \nBut my servant Caleb, because he had another spirit with him, and hath followed me fully, him will I bring into the land whereinto he went; and his seed shall possess it. \n(Now the Amalekites and the Canaanites dwelt in the valley.) Tomorrow turn you, and get you into the wilderness by the way of the Red sea. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nHow long shall I bear with this evil congregation, which murmur against me? I have heard the murmurings of the children of Israel, which they murmur against me. \nSay unto them, As truly as I live, saith the LORD, as ye have spoken in mine ears, so will I do to you: \nYour carcases shall fall in this wilderness; and all that were numbered of you, according to your whole number, from twenty years old and upward which have murmured against me. \nDoubtless ye shall not come into the land, concerning which I sware to make you dwell therein, save Caleb the son of Jephunneh, and Joshua the son of Nun. \nBut your little ones, which ye said should be a prey, them will I bring in, and they shall know the land which ye have despised. \nBut as for you, your carcases, they shall fall in this wilderness. \nAnd your children shall wander in the wilderness forty years, and bear your whoredoms, until your carcases be wasted in the wilderness. \nAfter the number of the days in which ye searched the land, even forty days, each day for a year, shall ye bear your iniquities, even forty years, and ye shall know my breach of promise. \nI the LORD have said, I will surely do it unto all this evil congregation, that are gathered together against me: in this wilderness they shall be consumed, and there they shall die. \nAnd the men, which Moses sent to search the land, who returned, and made all the congregation to murmur against him, by bringing up a slander upon the land, \nEven those men that did bring up the evil report upon the land, died by the plague before the LORD. \nBut Joshua the son of Nun, and Caleb the son of Jephunneh, which were of the men that went to search the land, lived still. \nAnd Moses told these sayings unto all the children of Israel: and the people mourned greatly. \nAnd they rose up early in the morning, and gat them up into the top of the mountain, saying, Lo, we be here, and will go up unto the place which the LORD hath promised: for we have sinned. \nAnd Moses said, Wherefore now do ye transgress the commandment of the LORD? but it shall not prosper. \nGo not up, for the LORD is not among you; that ye be not smitten before your enemies. \nFor the Amalekites and the Canaanites are there before you, and ye shall fall by the sword: because ye are turned away from the LORD, therefore the LORD will not be with you. \nBut they presumed to go up unto the hill top: nevertheless the ark of the covenant of the LORD, and Moses, departed not out of the camp. \nThen the Amalekites came down, and the Canaanites which dwelt in that hill, and smote them, and discomfited them, even unto Hormah. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When ye be come into the land of your habitations, which I give unto you, \nAnd will make an offering by fire unto the LORD, a burnt offering, or a sacrifice in performing a vow, or in a freewill offering, or in your solemn feasts, to make a sweet savour unto the LORD, of the herd or of the flock: \nThen shall he that offereth his offering unto the LORD bring a meat offering of a tenth deal of flour mingled with the fourth part of an hin of oil. \nAnd the fourth part of an hin of wine for a drink offering shalt thou prepare with the burnt offering or sacrifice, for one lamb. \nOr for a ram, thou shalt prepare for a meat offering two tenth deals of flour mingled with the third part of an hin of oil. \nAnd for a drink offering thou shalt offer the third part of an hin of wine, for a sweet savour unto the LORD. \nAnd when thou preparest a bullock for a burnt offering, or for a sacrifice in performing a vow, or peace offerings unto the LORD: \nThen shall he bring with a bullock a meat offering of three tenth deals of flour mingled with half an hin of oil. \nAnd thou shalt bring for a drink offering half an hin of wine, for an offering made by fire, of a sweet savour unto the LORD. \nThus shall it be done for one bullock, or for one ram, or for a lamb, or a kid. \nAccording to the number that ye shall prepare, so shall ye do to every one according to their number. \nAll that are born of the country shall do these things after this manner, in offering an offering made by fire, of a sweet savour unto the LORD. \nAnd if a stranger sojourn with you, or whosoever be among you in your generations, and will offer an offering made by fire, of a sweet savour unto the LORD; as ye do, so he shall do. \nOne ordinance shall be both for you of the congregation, and also for the stranger that sojourneth with you, an ordinance for ever in your generations: as ye are, so shall the stranger be before the LORD. \nOne law and one manner shall be for you, and for the stranger that sojourneth with you. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When ye come into the land whither I bring you, \nThen it shall be, that, when ye eat of the bread of the land, ye shall offer up an heave offering unto the LORD. \nYe shall offer up a cake of the first of your dough for an heave offering: as ye do the heave offering of the threshingfloor, so shall ye heave it. \nOf the first of your dough ye shall give unto the LORD an heave offering in your generations. \nAnd if ye have erred, and not observed all these commandments, which the LORD hath spoken unto Moses, \nEven all that the LORD hath commanded you by the hand of Moses, from the day that the LORD commanded Moses, and henceforward among your generations; \nThen it shall be, if ought be committed by ignorance without the knowledge of the congregation, that all the congregation shall offer one young bullock for a burnt offering, for a sweet savour unto the LORD, with his meat offering, and his drink offering, according to the manner, and one kid of the goats for a sin offering. \nAnd the priest shall make an atonement for all the congregation of the children of Israel, and it shall be forgiven them; for it is ignorance: and they shall bring their offering, a sacrifice made by fire unto the LORD, and their sin offering before the LORD, for their ignorance: \nAnd it shall be forgiven all the congregation of the children of Israel, and the stranger that sojourneth among them; seeing all the people were in ignorance. \nAnd if any soul sin through ignorance, then he shall bring a she goat of the first year for a sin offering. \nAnd the priest shall make an atonement for the soul that sinneth ignorantly, when he sinneth by ignorance before the LORD, to make an atonement for him; and it shall be forgiven him. \nYe shall have one law for him that sinneth through ignorance, both for him that is born among the children of Israel, and for the stranger that sojourneth among them. \nBut the soul that doeth ought presumptuously, whether he be born in the land, or a stranger, the same reproacheth the LORD; and that soul shall be cut off from among his people. \nBecause he hath despised the word of the LORD, and hath broken his commandment, that soul shall utterly be cut off; his iniquity shall be upon him. \nAnd while the children of Israel were in the wilderness, they found a man that gathered sticks upon the sabbath day. \nAnd they that found him gathering sticks brought him unto Moses and Aaron, and unto all the congregation. \nAnd they put him in ward, because it was not declared what should be done to him. \nAnd the LORD said unto Moses, The man shall be surely put to death: all the congregation shall stone him with stones without the camp. \nAnd all the congregation brought him without the camp, and stoned him with stones, and he died; as the LORD commanded Moses. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and bid them that they make them fringes in the borders of their garments throughout their generations, and that they put upon the fringe of the borders a ribband of blue: \nAnd it shall be unto you for a fringe, that ye may look upon it, and remember all the commandments of the LORD, and do them ; and that ye seek not after your own heart and your own eyes, after which ye use to go a whoring: \nThat ye may remember, and do all my commandments, and be holy unto your God. \nI am the LORD your God, which brought you out of the land of Egypt, to be your God: I am the LORD your God. \nNow Korah, the son of Izhar, the son of Kohath, the son of Levi, and Dathan and Abiram, the sons of Eliab, and On, the son of Peleth, sons of Reuben, took men: \nAnd they rose up before Moses, with certain of the children of Israel, two hundred and fifty princes of the assembly, famous in the congregation, men of renown: \nAnd they gathered themselves together against Moses and against Aaron, and said unto them, Ye take too much upon you, seeing all the congregation are holy, every one of them, and the LORD is among them: wherefore then lift ye up yourselves above the congregation of the LORD? \nAnd when Moses heard it, he fell upon his face: \nAnd he spake unto Korah and unto all his company, saying, Even to morrow the LORD will shew who are his, and who is holy; and will cause him to come near unto him: even him whom he hath chosen will he cause to come near unto him. \nThis do; Take you censers, Korah, and all his company; \nAnd put fire therein, and put incense in them before the LORD to morrow: and it shall be that the man whom the LORD doth choose, he shall be holy: ye take too much upon you, ye sons of Levi. \nAnd Moses said unto Korah, Hear, I pray you, ye sons of Levi: \nSeemeth it but a small thing unto you, that the God of Israel hath separated you from the congregation of Israel, to bring you near to himself to do the service of the tabernacle of the LORD, and to stand before the congregation to minister unto them? \nAnd he hath brought thee near to him, and all thy brethren the sons of Levi with thee: and seek ye the priesthood also? \nFor which cause both thou and all thy company are gathered together against the LORD: and what is Aaron, that ye murmur against him? \nAnd Moses sent to call Dathan and Abiram, the sons of Eliab: which said, We will not come up: \nIs it a small thing that thou hast brought us up out of a land that floweth with milk and honey, to kill us in the wilderness, except thou make thyself altogether a prince over us? \nMoreover thou hast not brought us into a land that floweth with milk and honey, or given us inheritance of fields and vineyards: wilt thou put out the eyes of these men? we will not come up. \nAnd Moses was very wroth, and said unto the LORD, Respect not thou their offering: I have not taken one ass from them, neither have I hurt one of them. \nAnd Moses said unto Korah, Be thou and all thy company before the LORD, thou, and they, and Aaron, to morrow: \nAnd take every man his censer, and put incense in them, and bring ye before the LORD every man his censer, two hundred and fifty censers; thou also, and Aaron, each of you his censer. \nAnd they took every man his censer, and put fire in them, and laid incense thereon, and stood in the door of the tabernacle of the congregation with Moses and Aaron. \nAnd Korah gathered all the congregation against them unto the door of the tabernacle of the congregation: and the glory of the LORD appeared unto all the congregation. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nSeparate yourselves from among this congregation, that I may consume them in a moment. \nAnd they fell upon their faces, and said, O God, the God of the spirits of all flesh, shall one man sin, and wilt thou be wroth with all the congregation? \nAnd the LORD spake unto Moses, saying, \nSpeak unto the congregation, saying, Get you up from about the tabernacle of Korah, Dathan, and Abiram. \nAnd Moses rose up and went unto Dathan and Abiram; and the elders of Israel followed him. \nAnd he spake unto the congregation, saying, Depart, I pray you, from the tents of these wicked men, and touch nothing of their's, lest ye be consumed in all their sins. \nSo they gat up from the tabernacle of Korah, Dathan, and Abiram, on every side: and Dathan and Abiram came out, and stood in the door of their tents, and their wives, and their sons, and their little children. \nAnd Moses said, Hereby ye shall know that the LORD hath sent me to do all these works; for I have not done them of mine own mind. \nIf these men die the common death of all men, or if they be visited after the visitation of all men; then the LORD hath not sent me. \nBut if the LORD make a new thing, and the earth open her mouth, and swallow them up, with all that appertain unto them, and they go down quick into the pit; then ye shall understand that these men have provoked the LORD. \nAnd it came to pass, as he had made an end of speaking all these words, that the ground clave asunder that was under them: \nAnd the earth opened her mouth, and swallowed them up, and their houses, and all the men that appertained unto Korah, and all their goods. \nThey, and all that appertained to them, went down alive into the pit, and the earth closed upon them: and they perished from among the congregation. \nAnd all Israel that were round about them fled at the cry of them: for they said, Lest the earth swallow us up also. \nAnd there came out a fire from the LORD, and consumed the two hundred and fifty men that offered incense. \nAnd the LORD spake unto Moses, saying, \nSpeak unto Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter thou the fire yonder; for they are hallowed. \nThe censers of these sinners against their own souls, let them make them broad plates for a covering of the altar: for they offered them before the LORD, therefore they are hallowed: and they shall be a sign unto the children of Israel. \nAnd Eleazar the priest took the brasen censers, wherewith they that were burnt had offered; and they were made broad plates for a covering of the altar: \nTo be a memorial unto the children of Israel, that no stranger, which is not of the seed of Aaron, come near to offer incense before the LORD; that he be not as Korah, and as his company: as the LORD said to him by the hand of Moses. \nBut on the morrow all the congregation of the children of Israel murmured against Moses and against Aaron, saying, Ye have killed the people of the LORD. \nAnd it came to pass, when the congregation was gathered against Moses and against Aaron, that they looked toward the tabernacle of the congregation: and, behold, the cloud covered it, and the glory of the LORD appeared. \nAnd Moses and Aaron came before the tabernacle of the congregation. \nAnd the LORD spake unto Moses, saying, \nGet you up from among this congregation, that I may consume them as in a moment. And they fell upon their faces. \nAnd Moses said unto Aaron, Take a censer, and put fire therein from off the altar, and put on incense, and go quickly unto the congregation, and make an atonement for them: for there is wrath gone out from the LORD; the plague is begun. \nAnd Aaron took as Moses commanded, and ran into the midst of the congregation; and, behold, the plague was begun among the people: and he put on incense, and made an atonement for the people. \nAnd he stood between the dead and the living; and the plague was stayed. \nNow they that died in the plague were fourteen thousand and seven hundred, beside them that died about the matter of Korah. \nAnd Aaron returned unto Moses unto the door of the tabernacle of the congregation: and the plague was stayed. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and take of every one of them a rod according to the house of their fathers, of all their princes according to the house of their fathers twelve rods: write thou every man's name upon his rod. \nAnd thou shalt write Aaron's name upon the rod of Levi: for one rod shall be for the head of the house of their fathers. \nAnd thou shalt lay them up in the tabernacle of the congregation before the testimony, where I will meet with you. \nAnd it shall come to pass, that the man's rod, whom I shall choose, shall blossom: and I will make to cease from me the murmurings of the children of Israel, whereby they murmur against you. \nAnd Moses spake unto the children of Israel, and every one of their princes gave him a rod apiece, for each prince one, according to their fathers' houses, even twelve rods: and the rod of Aaron was among their rods. \nAnd Moses laid up the rods before the LORD in the tabernacle of witness. \nAnd it came to pass, that on the morrow Moses went into the tabernacle of witness; and, behold, the rod of Aaron for the house of Levi was budded, and brought forth buds, and bloomed blossoms, and yielded almonds. \nAnd Moses brought out all the rods from before the LORD unto all the children of Israel: and they looked, and took every man his rod. \nAnd the LORD said unto Moses, Bring Aaron's rod again before the testimony, to be kept for a token against the rebels; and thou shalt quite take away their murmurings from me, that they die not. \nAnd Moses did so: as the LORD commanded him, so did he. \nAnd the children of Israel spake unto Moses, saying, Behold, we die, we perish, we all perish. \nWhosoever cometh any thing near unto the tabernacle of the LORD shall die: shall we be consumed with dying? \nAnd the LORD said unto Aaron, Thou and thy sons and thy father's house with thee shall bear the iniquity of the sanctuary: and thou and thy sons with thee shall bear the iniquity of your priesthood. \nAnd thy brethren also of the tribe of Levi, the tribe of thy father, bring thou with thee, that they may be joined unto thee, and minister unto thee: but thou and thy sons with thee shall minister before the tabernacle of witness. \nAnd they shall keep thy charge, and the charge of all the tabernacle: only they shall not come nigh the vessels of the sanctuary and the altar, that neither they, nor ye also, die. \nAnd they shall be joined unto thee, and keep the charge of the tabernacle of the congregation, for all the service of the tabernacle: and a stranger shall not come nigh unto you. \nAnd ye shall keep the charge of the sanctuary, and the charge of the altar: that there be no wrath any more upon the children of Israel. \nAnd I, behold, I have taken your brethren the Levites from among the children of Israel: to you they are given as a gift for the LORD, to do the service of the tabernacle of the congregation. \nTherefore thou and thy sons with thee shall keep your priest's office for everything of the altar, and within the vail; and ye shall serve: I have given your priest's office unto you as a service of gift: and the stranger that cometh nigh shall be put to death. \nAnd the LORD spake unto Aaron, Behold, I also have given thee the charge of mine heave offerings of all the hallowed things of the children of Israel; unto thee have I given them by reason of the anointing, and to thy sons, by an ordinance for ever. \nThis shall be thine of the most holy things, reserved from the fire: every oblation of their's, every meat offering of their's, and every sin offering of their's, and every trespass offering of their's which they shall render unto me, shall be most holy for thee and for thy sons. \nIn the most holy place shalt thou eat it; every male shall eat it: it shall be holy unto thee. \nAnd this is thine; the heave offering of their gift, with all the wave offerings of the children of Israel: I have given them unto thee, and to thy sons and to thy daughters with thee, by a statute for ever: every one that is clean in thy house shall eat of it. \nAll the best of the oil, and all the best of the wine, and of the wheat, the firstfruits of them which they shall offer unto the LORD, them have I given thee. \nAnd whatsoever is first ripe in the land, which they shall bring unto the LORD, shall be thine; every one that is clean in thine house shall eat of it. \nEvery thing devoted in Israel shall be thine. \nEvery thing that openeth the matrix in all flesh, which they bring unto the LORD, whether it be of men or beasts, shall be thine: nevertheless the firstborn of man shalt thou surely redeem, and the firstling of unclean beasts shalt thou redeem. \nAnd those that are to be redeemed from a month old shalt thou redeem, according to thine estimation, for the money of five shekels, after the shekel of the sanctuary, which is twenty gerahs. \nBut the firstling of a cow, or the firstling of a sheep, or the firstling of a goat, thou shalt not redeem; they are holy: thou shalt sprinkle their blood upon the altar, and shalt burn their fat for an offering made by fire, for a sweet savour unto the LORD. \nAnd the flesh of them shall be thine, as the wave breast and as the right shoulder are thine. \nAll the heave offerings of the holy things, which the children of Israel offer unto the LORD, have I given thee, and thy sons and thy daughters with thee, by a statute for ever: it is a covenant of salt for ever before the LORD unto thee and to thy seed with thee. \nAnd the LORD spake unto Aaron, Thou shalt have no inheritance in their land, neither shalt thou have any part among them: I am thy part and thine inheritance among the children of Israel. \nAnd, behold, I have given the children of Levi all the tenth in Israel for an inheritance, for their service which they serve, even the service of the tabernacle of the congregation. \nNeither must the children of Israel henceforth come nigh the tabernacle of the congregation, lest they bear sin, and die. \nBut the Levites shall do the service of the tabernacle of the congregation, and they shall bear their iniquity: it shall be a statute for ever throughout your generations, that among the children of Israel they have no inheritance. \nBut the tithes of the children of Israel, which they offer as an heave offering unto the LORD, I have given to the Levites to inherit: therefore I have said unto them, Among the children of Israel they shall have no inheritance. \nAnd the LORD spake unto Moses, saying, \nThus speak unto the Levites, and say unto them, When ye take of the children of Israel the tithes which I have given you from them for your inheritance, then ye shall offer up an heave offering of it for the LORD, even a tenth part of the tithe. \nAnd this your heave offering shall be reckoned unto you, as though it were the corn of the threshingfloor, and as the fulness of the winepress. \nThus ye also shall offer an heave offering unto the LORD of all your tithes, which ye receive of the children of Israel; and ye shall give thereof the LORD'S heave offering to Aaron the priest. \nOut of all your gifts ye shall offer every heave offering of the LORD, of all the best thereof, even the hallowed part thereof out of it. \nTherefore thou shalt say unto them, When ye have heaved the best thereof from it, then it shall be counted unto the Levites as the increase of the threshingfloor, and as the increase of the winepress. \nAnd ye shall eat it in every place, ye and your households: for it is your reward for your service in the tabernacle of the congregation. \nAnd ye shall bear no sin by reason of it, when ye have heaved from it the best of it: neither shall ye pollute the holy things of the children of Israel, lest ye die. \nAnd the LORD spake unto Moses and unto Aaron, saying, \nThis is the ordinance of the law which the LORD hath commanded, saying, Speak unto the children of Israel, that they bring thee a red heifer without spot, wherein is no blemish, and upon which never came yoke: \nAnd ye shall give her unto Eleazar the priest, that he may bring her forth without the camp, and one shall slay her before his face: \nAnd Eleazar the priest shall take of her blood with his finger, and sprinkle of her blood directly before the tabernacle of the congregation seven times: \nAnd one shall burn the heifer in his sight; her skin, and her flesh, and her blood, with her dung, shall he burn: \nAnd the priest shall take cedar wood, and hyssop, and scarlet, and cast it into the midst of the burning of the heifer. \nThen the priest shall wash his clothes, and he shall bathe his flesh in water, and afterward he shall come into the camp, and the priest shall be unclean until the even. \nAnd he that burneth her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the even. \nAnd a man that is clean shall gather up the ashes of the heifer, and lay them up without the camp in a clean place, and it shall be kept for the congregation of the children of Israel for a water of separation: it is a purification for sin. \nAnd he that gathereth the ashes of the heifer shall wash his clothes, and be unclean until the even: and it shall be unto the children of Israel, and unto the stranger that sojourneth among them, for a statute for ever. \nHe that toucheth the dead body of any man shall be unclean seven days. \nHe shall purify himself with it on the third day, and on the seventh day he shall be clean: but if he purify not himself the third day, then the seventh day he shall not be clean. \nWhosoever toucheth the dead body of any man that is dead, and purifieth not himself, defileth the tabernacle of the LORD; and that soul shall be cut off from Israel: because the water of separation was not sprinkled upon him, he shall be unclean; his uncleanness is yet upon him. \nThis is the law, when a man dieth in a tent: all that come into the tent, and all that is in the tent, shall be unclean seven days. \nAnd every open vessel, which hath no covering bound upon it, is unclean. \nAnd whosoever toucheth one that is slain with a sword in the open fields, or a dead body, or a bone of a man, or a grave, shall be unclean seven days. \nAnd for an unclean person they shall take of the ashes of the burnt heifer of purification for sin, and running water shall be put thereto in a vessel: \nAnd a clean person shall take hyssop, and dip it in the water, and sprinkle it upon the tent, and upon all the vessels, and upon the persons that were there, and upon him that touched a bone, or one slain, or one dead, or a grave: \nAnd the clean person shall sprinkle upon the unclean on the third day, and on the seventh day: and on the seventh day he shall purify himself, and wash his clothes, and bathe himself in water, and shall be clean at even. \nBut the man that shall be unclean, and shall not purify himself, that soul shall be cut off from among the congregation, because he hath defiled the sanctuary of the LORD: the water of separation hath not been sprinkled upon him; he is unclean. \nAnd it shall be a perpetual statute unto them, that he that sprinkleth the water of separation shall wash his clothes; and he that toucheth the water of separation shall be unclean until even. \nAnd whatsoever the unclean person toucheth shall be unclean; and the soul that toucheth it shall be unclean until even. \nThen came the children of Israel, even the whole congregation, into the desert of Zin in the first month: and the people abode in Kadesh; and Miriam died there, and was buried there. \nAnd there was no water for the congregation: and they gathered themselves together against Moses and against Aaron. \nAnd the people chode with Moses, and spake, saying, Would God that we had died when our brethren died before the LORD! \nAnd why have ye brought up the congregation of the LORD into this wilderness, that we and our cattle should die there? \nAnd wherefore have ye made us to come up out of Egypt, to bring us in unto this evil place? it is no place of seed, or of figs, or of vines, or of pomegranates; neither is there any water to drink. \nAnd Moses and Aaron went from the presence of the assembly unto the door of the tabernacle of the congregation, and they fell upon their faces: and the glory of the LORD appeared unto them. \nAnd the LORD spake unto Moses, saying, \nTake the rod, and gather thou the assembly together, thou, and Aaron thy brother, and speak ye unto the rock before their eyes; and it shall give forth his water, and thou shalt bring forth to them water out of the rock: so thou shalt give the congregation and their beasts drink. \nAnd Moses took the rod from before the LORD, as he commanded him. \nAnd Moses and Aaron gathered the congregation together before the rock, and he said unto them, Hear now, ye rebels; must we fetch you water out of this rock? \nAnd Moses lifted up his hand, and with his rod he smote the rock twice: and the water came out abundantly, and the congregation drank, and their beasts also. \nAnd the LORD spake unto Moses and Aaron, Because ye believed me not, to sanctify me in the eyes of the children of Israel, therefore ye shall not bring this congregation into the land which I have given them. \nThis is the water of Meribah; because the children of Israel strove with the LORD, and he was sanctified in them. \nAnd Moses sent messengers from Kadesh unto the king of Edom, Thus saith thy brother Israel, Thou knowest all the travail that hath befallen us: \nHow our fathers went down into Egypt, and we have dwelt in Egypt a long time; and the Egyptians vexed us, and our fathers: \nAnd when we cried unto the LORD, he heard our voice, and sent an angel, and hath brought us forth out of Egypt: and, behold, we are in Kadesh, a city in the uttermost of thy border: \nLet us pass, I pray thee, through thy country: we will not pass through the fields, or through the vineyards, neither will we drink of the water of the wells: we will go by the king's high way, we will not turn to the right hand nor to the left, until we have passed thy borders. \nAnd Edom said unto him, Thou shalt not pass by me, lest I come out against thee with the sword. \nAnd the children of Israel said unto him, We will go by the high way: and if I and my cattle drink of thy water, then I will pay for it: I will only, without doing anything else, go through on my feet. \nAnd he said, Thou shalt not go through. And Edom came out against him with much people, and with a strong hand. \nThus Edom refused to give Israel passage through his border: wherefore Israel turned away from him. \nAnd the children of Israel, even the whole congregation, journeyed from Kadesh, and came unto mount Hor. \nAnd the LORD spake unto Moses and Aaron in mount Hor, by the coast of the land of Edom, saying, \nAaron shall be gathered unto his people: for he shall not enter into the land which I have given unto the children of Israel, because ye rebelled against my word at the water of Meribah. \nTake Aaron and Eleazar his son, and bring them up unto mount Hor: \nAnd strip Aaron of his garments, and put them upon Eleazar his son: and Aaron shall be gathered unto his people, and shall die there. \nAnd Moses did as the LORD commanded: and they went up into mount Hor in the sight of all the congregation. \nAnd Moses stripped Aaron of his garments, and put them upon Eleazar his son; and Aaron died there in the top of the mount: and Moses and Eleazar came down from the mount. \nAnd when all the congregation saw that Aaron was dead, they mourned for Aaron thirty days, even all the house of Israel. \nAnd when king Arad the Canaanite, which dwelt in the south, heard tell that Israel came by the way of the spies; then he fought against Israel, and took some of them prisoners. \nAnd Israel vowed a vow unto the LORD, and said, If thou wilt indeed deliver this people into my hand, then I will utterly destroy their cities. \nAnd the LORD hearkened to the voice of Israel, and delivered up the Canaanites; and they utterly destroyed them and their cities: and he called the name of the place Hormah. \nAnd they journeyed from mount Hor by the way of the Red sea, to compass the land of Edom: and the soul of the people was much discouraged because of the way. \nAnd the people spake against God, and against Moses, Wherefore have ye brought us up out of Egypt to die in the wilderness? for there is no bread, neither is there any water; and our soul loatheth this light bread. \nAnd the LORD sent fiery serpents among the people, and they bit the people; and much people of Israel died. \nTherefore the people came to Moses, and said, We have sinned, for we have spoken against the LORD, and against thee; pray unto the LORD, that he take away the serpents from us. And Moses prayed for the people. \nAnd the LORD said unto Moses, Make thee a fiery serpent, and set it upon a pole: and it shall come to pass, that every one that is bitten, when he looketh upon it, shall live. \nAnd Moses made a serpent of brass, and put it upon a pole, and it came to pass, that if a serpent had bitten any man, when he beheld the serpent of brass, he lived. \nAnd the children of Israel set forward, and pitched in Oboth. \nAnd they journeyed from Oboth, and pitched at Ijeabarim, in the wilderness which is before Moab, toward the sunrising. \nFrom thence they removed, and pitched in the valley of Zared. \nFrom thence they removed, and pitched on the other side of Arnon, which is in the wilderness that cometh out of the coasts of the Amorites: for Arnon is the border of Moab, between Moab and the Amorites. \nWherefore it is said in the book of the wars of the LORD, What he did in the Red sea, and in the brooks of Arnon, \nAnd at the stream of the brooks that goeth down to the dwelling of Ar, and lieth upon the border of Moab. \nAnd from thence they went to Beer: that is the well whereof the LORD spake unto Moses, Gather the people together, and I will give them water. \nThen Israel sang this song, Spring up, O well; sing ye unto it: \nThe princes digged the well, the nobles of the people digged it, by the direction of the lawgiver, with their staves. And from the wilderness they went to Mattanah: \nAnd from Mattanah to Nahaliel: and from Nahaliel to Bamoth: \nAnd from Bamoth in the valley, that is in the country of Moab, to the top of Pisgah, which looketh toward Jeshimon. \nAnd Israel sent messengers unto Sihon king of the Amorites, saying, \nLet me pass through thy land: we will not turn into the fields, or into the vineyards; we will not drink of the waters of the well: but we will go along by the king's high way, until we be past thy borders. \nAnd Sihon would not suffer Israel to pass through his border: but Sihon gathered all his people together, and went out against Israel into the wilderness: and he came to Jahaz, and fought against Israel. \nAnd Israel smote him with the edge of the sword, and possessed his land from Arnon unto Jabbok, even unto the children of Ammon: for the border of the children of Ammon was strong. \nAnd Israel took all these cities: and Israel dwelt in all the cities of the Amorites, in Heshbon, and in all the villages thereof. \nFor Heshbon was the city of Sihon the king of the Amorites, who had fought against the former king of Moab, and taken all his land out of his hand, even unto Arnon. \nWherefore they that speak in proverbs say, Come into Heshbon, let the city of Sihon be built and prepared: \nFor there is a fire gone out of Heshbon, a flame from the city of Sihon: it hath consumed ar of Moab, and the lords of the high places of Arnon. \nWoe to thee, Moab! thou art undone, O people of Chemosh: he hath given his sons that escaped, and his daughters, into captivity unto Sihon king of the Amorites. \nWe have shot at them; Heshbon is perished even unto Dibon, and we have laid them waste even unto Nophah, which reacheth unto Medeba. \nThus Israel dwelt in the land of the Amorites. \nAnd Moses sent to spy out Jaazer, and they took the villages thereof, and drove out the Amorites that were there. \nAnd they turned and went up by the way of Bashan: and og the king of bashan went out against them, he, and all his people, to the battle at edrei. \nAnd the LORD said unto Moses, Fear him not: for I have delivered him into thy hand, and all his people, and his land; and thou shalt do to him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon. \nSo they smote him, and his sons, and all his people, until there was none left him alive: and they possessed his land. \nAnd the children of Israel set forward, and pitched in the plains of Moab on this side Jordan by Jericho. \nAnd Balak the son of Zippor saw all that Israel had done to the Amorites. \nAnd Moab was sore afraid of the people, because they were many: and Moab was distressed because of the children of Israel. \nAnd Moab said unto the elders of Midian, Now shall this company lick up all that are round about us, as the ox licketh up the grass of the field. And Balak the son of Zippor was king of the Moabites at that time. \nHe sent messengers therefore unto Balaam the son of Beor to Pethor, which is by the river of the land of the children of his people, to call him, saying, Behold, there is a people come out from Egypt: behold, they cover the face of the earth, and they abide over against me: \nCome now therefore, I pray thee, curse me this people; for they are too mighty for me: peradventure I shall prevail, that we may smite them, and that I may drive them out of the land: for I wot that he whom thou blessest is blessed, and he whom thou cursest is cursed. \nAnd the elders of Moab and the elders of Midian departed with the rewards of divination in their hand; and they came unto Balaam, and spake unto him the words of Balak. \nAnd he said unto them, Lodge here this night, and I will bring you word again, as the LORD shall speak unto me: and the princes of Moab abode with Balaam. \nAnd God came unto Balaam, and said, What men are these with thee? \nAnd Balaam said unto God, Balak the son of Zippor, king of Moab, hath sent unto me, saying, \nBehold, there is a people come out of Egypt, which covereth the face of the earth: come now, curse me them; peradventure I shall be able to overcome them, and drive them out. \nAnd God said unto Balaam, Thou shalt not go with them; thou shalt not curse the people: for they are blessed. \nAnd Balaam rose up in the morning, and said unto the princes of Balak, Get you into your land: for the LORD refuseth to give me leave to go with you. \nAnd the princes of Moab rose up, and they went unto Balak, and said, Balaam refuseth to come with us. \nAnd Balak sent yet again princes, more, and more honourable than they. \nAnd they came to Balaam, and said to him, Thus saith Balak the son of Zippor, Let nothing, I pray thee, hinder thee from coming unto me: \nFor I will promote thee unto very great honour, and I will do whatsoever thou sayest unto me: come therefore, I pray thee, curse me this people. \nAnd Balaam answered and said unto the servants of Balak, If Balak would give me his house full of silver and gold, I cannot go beyond the word of the LORD my God, to do less or more. \nNow therefore, I pray you, tarry ye also here this night, that I may know what the LORD will say unto me more. \nAnd God came unto Balaam at night, and said unto him, If the men come to call thee, rise up, and go with them; but yet the word which I shall say unto thee, that shalt thou do. \nAnd Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab. \nAnd God's anger was kindled because he went: and the angel of the LORD stood in the way for an adversary against him. Now he was riding upon his ass, and his two servants were with him. \nAnd the ass saw the angel of the LORD standing in the way, and his sword drawn in his hand: and the ass turned aside out of the way, and went into the field: and Balaam smote the ass, to turn her into the way. \nBut the angel of the LORD stood in a path of the vineyards, a wall being on this side, and a wall on that side. \nAnd when the ass saw the angel of the LORD, she thrust herself unto the wall, and crushed Balaam's foot against the wall: and he smote her again. \nAnd the angel of the LORD went further, and stood in a narrow place, where was no way to turn either to the right hand or to the left. \nAnd when the ass saw the angel of the LORD, she fell down under Balaam: and Balaam's anger was kindled, and he smote the ass with a staff. \nAnd the LORD opened the mouth of the ass, and she said unto Balaam, What have I done unto thee, that thou hast smitten me these three times? \nAnd Balaam said unto the ass, Because thou hast mocked me: I would there were a sword in mine hand, for now would I kill thee. \nAnd the ass said unto Balaam, Am not I thine ass, upon which thou hast ridden ever since I was thine unto this day? was I ever wont to do so unto thee? and he said, Nay. \nThen the LORD opened the eyes of Balaam, and he saw the angel of the LORD standing in the way, and his sword drawn in his hand: and he bowed down his head, and fell flat on his face. \nAnd the angel of the LORD said unto him, Wherefore hast thou smitten thine ass these three times? behold, I went out to withstand thee, because thy way is perverse before me: \nAnd the ass saw me, and turned from me these three times: unless she had turned from me, surely now also I had slain thee, and saved her alive. \nAnd Balaam said unto the angel of the LORD, I have sinned; for I knew not that thou stoodest in the way against me: now therefore, if it displease thee, I will get me back again. \nAnd the angel of the LORD said unto Balaam, Go with the men: but only the word that I shall speak unto thee, that thou shalt speak. So Balaam went with the princes of Balak. \nAnd when Balak heard that Balaam was come, he went out to meet him unto a city of Moab, which is in the border of Arnon, which is in the utmost coast. \nAnd Balak said unto Balaam, Did I not earnestly send unto thee to call thee? wherefore camest thou not unto me? am I not able indeed to promote thee to honour? \nAnd Balaam said unto Balak, Lo, I am come unto thee: have I now any power at all to say any thing? the word that God putteth in my mouth, that shall I speak. \nAnd Balaam went with Balak, and they came unto Kirjathhuzoth. \nAnd Balak offered oxen and sheep, and sent to Balaam, and to the princes that were with him. \nAnd it came to pass on the morrow, that Balak took Balaam, and brought him up into the high places of Baal, that thence he might see the utmost part of the people. \nAnd Balaam said unto Balak, Build me here seven altars, and prepare me here seven oxen and seven rams. \nAnd Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bullock and a ram. \nAnd Balaam said unto Balak, Stand by thy burnt offering, and I will go: peradventure the LORD will come to meet me: and whatsoever he sheweth me I will tell thee. And he went to an high place. \nAnd God met Balaam: and he said unto him, I have prepared seven altars, and I have offered upon every altar a bullock and a ram. \nAnd the LORD put a word in Balaam's mouth, and said, Return unto Balak, and thus thou shalt speak. \nAnd he returned unto him, and, lo, he stood by his burnt sacrifice, he, and all the princes of Moab. \nAnd he took up his parable, and said, Balak the king of Moab hath brought me from Aram, out of the mountains of the east, saying, Come, curse me Jacob, and come, defy Israel. \nHow shall I curse, whom God hath not cursed? or how shall I defy, whom the LORD hath not defied? \nFor from the top of the rocks I see him, and from the hills I behold him: lo, the people shall dwell alone, and shall not be reckoned among the nations. \nWho can count the dust of Jacob, and the number of the fourth part of Israel? Let me die the death of the righteous, and let my last end be like his! \nAnd Balak said unto Balaam, What hast thou done unto me? I took thee to curse mine enemies, and, behold, thou hast blessed them altogether. \nAnd he answered and said, Must I not take heed to speak that which the LORD hath put in my mouth? \nAnd Balak said unto him, Come, I pray thee, with me unto another place, from whence thou mayest see them: thou shalt see but the utmost part of them, and shalt not see them all: and curse me them from thence. \nAnd he brought him into the field of Zophim, to the top of Pisgah, and built seven altars, and offered a bullock and a ram on every altar. \nAnd he said unto Balak, Stand here by thy burnt offering, while I meet the LORD yonder. \nAnd the LORD met Balaam, and put a word in his mouth, and said, Go again unto Balak, and say thus. \nAnd when he came to him, behold, he stood by his burnt offering, and the princes of Moab with him. And Balak said unto him, What hath the LORD spoken? \nAnd he took up his parable, and said, Rise up, Balak, and hear; hearken unto me, thou son of Zippor: \nGod is not a man, that he should lie; neither the son of man, that he should repent: hath he said, and shall he not do it? or hath he spoken, and shall he not make it good? \nBehold, I have received commandment to bless: and he hath blessed; and I cannot reverse it. \nHe hath not beheld iniquity in Jacob, neither hath he seen perverseness in Israel: the LORD his God is with him, and the shout of a king is among them. \nGod brought them out of Egypt; he hath as it were the strength of an unicorn. \nSurely there is no enchantment against Jacob, neither is there any divination against Israel: according to this time it shall be said of Jacob and of Israel, What hath God wrought! \nBehold, the people shall rise up as a great lion, and lift up himself as a young lion: he shall not lie down until he eat of the prey, and drink the blood of the slain. \nAnd Balak said unto Balaam, Neither curse them at all, nor bless them at all. \nBut Balaam answered and said unto Balak, Told not I thee, saying, All that the LORD speaketh, that I must do? \nAnd Balak said unto Balaam, Come, I pray thee, I will bring thee unto another place; peradventure it will please God that thou mayest curse me them from thence. \nAnd Balak brought Balaam unto the top of Peor, that looketh toward jeshimon. \nAnd Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams. \nAnd Balak did as Balaam had said, and offered a bullock and a ram on every altar. \nAnd when Balaam saw that it pleased the LORD to bless Israel, he went not, as at other times, to seek for enchantments, but he set his face toward the wilderness. \nAnd Balaam lifted up his eyes, and he saw Israel abiding in his tents according to their tribes; and the spirit of God came upon him. \nAnd he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said: \nHe hath said, which heard the words of God, which saw the vision of the Almighty, falling into a trance, but having his eyes open: \nHow goodly are thy tents, O Jacob, and thy tabernacles, O Israel! \nAs the valleys are they spread forth, as gardens by the river's side, as the trees of lign aloes which the LORD hath planted, and as cedar trees beside the waters. \nHe shall pour the water out of his buckets, and his seed shall be in many waters, and his king shall be higher than Agag, and his kingdom shall be exalted. \nGod brought him forth out of Egypt; he hath as it were the strength of an unicorn: he shall eat up the nations his enemies, and shall break their bones, and pierce them through with his arrows. \nHe couched, he lay down as a lion, and as a great lion: who shall stir him up? Blessed is he that blesseth thee, and cursed is he that curseth thee. \nAnd Balak's anger was kindled against Balaam, and he smote his hands together: and Balak said unto Balaam, I called thee to curse mine enemies, and, behold, thou hast altogether blessed them these three times. \nTherefore now flee thou to thy place: I thought to promote thee unto great honour; but, lo, the LORD hath kept thee back from honour. \nAnd Balaam said unto Balak, Spake I not also to thy messengers which thou sentest unto me, saying, \nIf Balak would give me his house full of silver and gold, I cannot go beyond the commandment of the LORD, to do either good or bad of mine own mind; but what the LORD saith, that will I speak? \nAnd now, behold, I go unto my people: come therefore, and I will advertise thee what this people shall do to thy people in the latter days. \nAnd he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said: \nHe hath said, which heard the words of God, and knew the knowledge of the most High, which saw the vision of the Almighty, falling into a trance, but having his eyes open: \nI shall see him, but not now: I shall behold him, but not nigh: there shall come a Star out of Jacob, and a Sceptre shall rise out of Israel, and shall smite the corners of Moab, and destroy all the children of Sheth. \nAnd Edom shall be a possession, Seir also shall be a possession for his enemies; and Israel shall do valiantly. \nOut of Jacob shall come he that shall have dominion, and shall destroy him that remaineth of the city. \nAnd when he looked on Amalek, he took up his parable, and said, Amalek was the first of the nations; but his latter end shall be that he perish for ever. \nAnd he looked on the Kenites, and took up his parable, and said, Strong is thy dwellingplace, and thou puttest thy nest in a rock. \nNevertheless the Kenite shall be wasted, until Asshur shall carry thee away captive. \nAnd he took up his parable, and said, Alas, who shall live when God doeth this! \nAnd ships shall come from the coast of Chittim, and shall afflict Asshur, and shall afflict Eber, and he also shall perish for ever. \nAnd Balaam rose up, and went and returned to his place: and Balak also went his way. \nAnd Israel abode in Shittim, and the people began to commit whoredom with the daughters of Moab. \nAnd they called the people unto the sacrifices of their gods: and the people did eat, and bowed down to their gods. \nAnd Israel joined himself unto Baalpeor: and the anger of the LORD was kindled against Israel. \nAnd the LORD said unto Moses, Take all the heads of the people, and hang them up before the LORD against the sun, that the fierce anger of the LORD may be turned away from Israel. \nAnd Moses said unto the judges of Israel, Slay ye every one his men that were joined unto Baalpeor. \nAnd, behold, one of the children of Israel came and brought unto his brethren a Midianitish woman in the sight of Moses, and in the sight of all the congregation of the children of Israel, who were weeping before the door of the tabernacle of the congregation. \nAnd when Phinehas, the son of Eleazar, the son of Aaron the priest, saw it, he rose up from among the congregation, and took a javelin in his hand; \nAnd he went after the man of Israel into the tent, and thrust both of them through, the man of Israel, and the woman through her belly. So the plague was stayed from the children of Israel. \nAnd those that died in the plague were twenty and four thousand. \nAnd the LORD spake unto Moses, saying, \nPhinehas, the son of Eleazar, the son of Aaron the priest, hath turned my wrath away from the children of Israel, while he was zealous for my sake among them, that I consumed not the children of Israel in my jealousy. \nWherefore say, Behold, I give unto him my covenant of peace: \nAnd he shall have it, and his seed after him, even the covenant of an everlasting priesthood; because he was zealous for his God, and made an atonement for the children of Israel. \nNow the name of the Israelite that was slain, even that was slain with the Midianitish woman, was Zimri, the son of Salu, a prince of a chief house among the Simeonites. \nAnd the name of the Midianitish woman that was slain was Cozbi, the daughter of Zur; he was head over a people, and of a chief house in Midian. \nAnd the LORD spake unto Moses, saying, \nVex the Midianites, and smite them: \nFor they vex you with their wiles, wherewith they have beguiled you in the matter of Peor, and in the matter of Cozbi, the daughter of a prince of Midian, their sister, which was slain in the day of the plague for Peor's sake. \nAnd it came to pass after the plague, that the LORD spake unto Moses and unto Eleazar the son of Aaron the priest, saying, \nTake the sum of all the congregation of the children of Israel, from twenty years old and upward, throughout their fathers' house, all that are able to go to war in Israel. \nAnd Moses and Eleazar the priest spake with them in the plains of Moab by Jordan near Jericho, saying, \nTake the sum of the people, from twenty years old and upward; as the LORD commanded Moses and the children of Israel, which went forth out of the land of Egypt. \nReuben, the eldest son of Israel: the children of Reuben; Hanoch, of whom cometh the family of the Hanochites: of Pallu, the family of the Palluites: \nOf Hezron, the family of the Hezronites: of Carmi, the family of the Carmites. \nThese are the families of the Reubenites: and they that were numbered of them were forty and three thousand and seven hundred and thirty. \nAnd the sons of Pallu; Eliab. \nAnd the sons of Eliab; Nemuel, and Dathan, and Abiram. This is that Dathan and Abiram, which were famous in the congregation, who strove against Moses and against Aaron in the company of Korah, when they strove against the LORD: \nAnd the earth opened her mouth, and swallowed them up together with Korah, when that company died, what time the fire devoured two hundred and fifty men: and they became a sign. \nNotwithstanding the children of Korah died not. \nThe sons of Simeon after their families: of Nemuel, the family of the Nemuelites: of Jamin, the family of the Jaminites: of Jachin, the family of the Jachinites: \nOf Zerah, the family of the Zarhites: of Shaul, the family of the Shaulites. \nThese are the families of the Simeonites, twenty and two thousand and two hundred. \nThe children of Gad after their families: of Zephon, the family of the Zephonites: of Haggi, the family of the Haggites: of Shuni, the family of the Shunites: \nOf Ozni, the family of the Oznites: of Eri, the family of the Erites: \nOf Arod, the family of the Arodites: of Areli, the family of the Arelites. \nThese are the families of the children of Gad according to those that were numbered of them, forty thousand and five hundred. \nThe sons of Judah were Er and Onan: and Er and Onan died in the land of Canaan. \nAnd the sons of Judah after their families were; of Shelah, the family of the Shelanites: of Pharez, the family of the Pharzites: of Zerah, the family of the Zarhites. \nAnd the sons of Pharez were; of Hezron, the family of the Hezronites: of Hamul, the family of the Hamulites. \nThese are the families of Judah according to those that were numbered of them, threescore and sixteen thousand and five hundred. \nOf the sons of Issachar after their families: of Tola, the family of the Tolaites: of Pua, the family of the Punites: \nOf Jashub, the family of the Jashubites: of Shimron, the family of the Shimronites. \nThese are the families of Issachar according to those that were numbered of them, threescore and four thousand and three hundred. \nOf the sons of Zebulun after their families: of Sered, the family of the Sardites: of Elon, the family of the Elonites: of Jahleel, the family of the Jahleelites. \nThese are the families of the Zebulunites according to those that were numbered of them, threescore thousand and five hundred. \nThe sons of Joseph after their families were Manasseh and Ephraim. \nOf the sons of Manasseh: of Machir, the family of the Machirites: and Machir begat Gilead: of Gilead come the family of the Gileadites. \nThese are the sons of Gilead: of Jeezer, the family of the Jeezerites: of Helek, the family of the Helekites: \nAnd of Asriel, the family of the Asrielites: and of Shechem, the family of the Shechemites: \nAnd of Shemida, the family of the Shemidaites: and of Hepher, the family of the Hepherites. \nAnd Zelophehad the son of Hepher had no sons, but daughters: and the names of the daughters of Zelophehad were Mahlah, and Noah, Hoglah, Milcah, and Tirzah. \nThese are the families of Manasseh, and those that were numbered of them, fifty and two thousand and seven hundred. \nThese are the sons of Ephraim after their families: of Shuthelah, the family of the Shuthalhites: of Becher, the family of the Bachrites: of Tahan, the family of the Tahanites. \nAnd these are the sons of Shuthelah: of Eran, the family of the Eranites. \nThese are the families of the sons of Ephraim according to those that were numbered of them, thirty and two thousand and five hundred. These are the sons of Joseph after their families. \nThe sons of Benjamin after their families: of Bela, the family of the Belaites: of Ashbel, the family of the Ashbelites: of Ahiram, the family of the Ahiramites: \nOf Shupham, the family of the Shuphamites: of Hupham, the family of the Huphamites. \nAnd the sons of Bela were ard and Naaman: of Ard, the family of the Ardites: and of Naaman, the family of the Naamites. \nThese are the sons of Benjamin after their families: and they that were numbered of them were forty and five thousand and six hundred. \nThese are the sons of Dan after their families: of Shuham, the family of the Shuhamites. These are the families of Dan after their families. \nAll the families of the Shuhamites, according to those that were numbered of them, were threescore and four thousand and four hundred. \nOf the children of Asher after their families: of Jimna, the family of the Jimnites: of Jesui, the family of the Jesuites: of Beriah, the family of the Beriites. \nOf the sons of Beriah: of Heber, the family of the Heberites: of Malchiel, the family of the Malchielites. \nAnd the name of the daughter of Asher was Sarah. \nThese are the families of the sons of Asher according to those that were numbered of them; who were fifty and three thousand and four hundred. \nOf the sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites: of Guni, the family of the Gunites: \nOf Jezer, the family of the Jezerites: of Shillem, the family of the Shillemites. \nThese are the families of Naphtali according to their families: and they that were numbered of them were forty and five thousand and four hundred. \nThese were the numbered of the children of Israel, six hundred thousand and a thousand seven hundred and thirty. \nAnd the LORD spake unto Moses, saying, \nUnto these the land shall be divided for an inheritance according to the number of names. \nTo many thou shalt give the more inheritance, and to few thou shalt give the less inheritance: to every one shall his inheritance be given according to those that were numbered of him. \nNotwithstanding the land shall be divided by lot: according to the names of the tribes of their fathers they shall inherit. \nAccording to the lot shall the possession thereof be divided between many and few. \nAnd these are they that were numbered of the Levites after their families: of Gershon, the family of the Gershonites: of Kohath, the family of the Kohathites: of Merari, the family of the Merarites. \nThese are the families of the Levites: the family of the Libnites, the family of the Hebronites, the family of the Mahlites, the family of the Mushites, the family of the Korathites. And Kohath begat Amram. \nAnd the name of Amram's wife was Jochebed, the daughter of Levi, whom her mother bare to Levi in Egypt: and she bare unto Amram Aaron and Moses, and Miriam their sister. \nAnd unto Aaron was born Nadab, and Abihu, Eleazar, and Ithamar. \nAnd Nadab and Abihu died, when they offered strange fire before the LORD. \nAnd those that were numbered of them were twenty and three thousand, all males from a month old and upward: for they were not numbered among the children of Israel, because there was no inheritance given them among the children of Israel. \nThese are they that were numbered by Moses and Eleazar the priest, who numbered the children of Israel in the plains of Moab by Jordan near Jericho. \nBut among these there was not a man of them whom Moses and Aaron the priest numbered, when they numbered the children of Israel in the wilderness of Sinai. \nFor the LORD had said of them, They shall surely die in the wilderness. And there was not left a man of them, save Caleb the son of Jephunneh, and Joshua the son of Nun. \nThen came the daughters of Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, of the families of Manasseh the son of Joseph: and these are the names of his daughters; Mahlah, Noah, and Hoglah, and Milcah, and Tirzah. \nAnd they stood before Moses, and before Eleazar the priest, and before the princes and all the congregation, by the door of the tabernacle of the congregation, saying, \nOur father died in the wilderness, and he was not in the company of them that gathered themselves together against the LORD in the company of Korah; but died in his own sin, and had no sons. \nWhy should the name of our father be done away from among his family, because he hath no son? Give unto us therefore a possession among the brethren of our father. \nAnd Moses brought their cause before the LORD. \nAnd the LORD spake unto Moses, saying, \nThe daughters of Zelophehad speak right: thou shalt surely give them a possession of an inheritance among their father's brethren; and thou shalt cause the inheritance of their father to pass unto them. \nAnd thou shalt speak unto the children of Israel, saying, If a man die, and have no son, then ye shall cause his inheritance to pass unto his daughter. \nAnd if he have no daughter, then ye shall give his inheritance unto his brethren. \nAnd if he have no brethren, then ye shall give his inheritance unto his father's brethren. \nAnd if his father have no brethren, then ye shall give his inheritance unto his kinsman that is next to him of his family, and he shall possess it: and it shall be unto the children of Israel a statute of judgment, as the LORD commanded Moses. \nAnd the LORD said unto Moses, Get thee up into this mount Abarim, and see the land which I have given unto the children of Israel. \nAnd when thou hast seen it, thou also shalt be gathered unto thy people, as Aaron thy brother was gathered. \nFor ye rebelled against my commandment in the desert of Zin, in the strife of the congregation, to sanctify me at the water before their eyes: that is the water of Meribah in Kadesh in the wilderness of Zin. \nAnd Moses spake unto the LORD, saying, \nLet the LORD, the God of the spirits of all flesh, set a man over the congregation, \nWhich may go out before them, and which may go in before them, and which may lead them out, and which may bring them in; that the congregation of the LORD be not as sheep which have no shepherd. \nAnd the LORD said unto Moses, Take thee Joshua the son of Nun, a man in whom is the spirit, and lay thine hand upon him; \nAnd set him before Eleazar the priest, and before all the congregation; and give him a charge in their sight. \nAnd thou shalt put some of thine honour upon him, that all the congregation of the children of Israel may be obedient. \nAnd he shall stand before Eleazar the priest, who shall ask counsel for him after the judgment of Urim before the LORD: at his word shall they go out, and at his word they shall come in, both he, and all the children of Israel with him, even all the congregation. \nAnd Moses did as the LORD commanded him: and he took Joshua, and set him before Eleazar the priest, and before all the congregation: \nAnd he laid his hands upon him, and gave him a charge, as the LORD commanded by the hand of Moses. \nAnd the LORD spake unto Moses, saying, \nCommand the children of Israel, and say unto them, My offering, and my bread for my sacrifices made by fire, for a sweet savour unto me, shall ye observe to offer unto me in their due season. \nAnd thou shalt say unto them, This is the offering made by fire which ye shall offer unto the LORD; two lambs of the first year without spot day by day, for a continual burnt offering. \nThe one lamb shalt thou offer in the morning, and the other lamb shalt thou offer at even; \nAnd a tenth part of an ephah of flour for a meat offering, mingled with the fourth part of an hin of beaten oil. \nIt is a continual burnt offering, which was ordained in mount Sinai for a sweet savour, a sacrifice made by fire unto the LORD. \nAnd the drink offering thereof shall be the fourth part of an hin for the one lamb: in the holy place shalt thou cause the strong wine to be poured unto the LORD for a drink offering. \nAnd the other lamb shalt thou offer at even: as the meat offering of the morning, and as the drink offering thereof, thou shalt offer it, a sacrifice made by fire, of a sweet savour unto the LORD. \nAnd on the sabbath day two lambs of the first year without spot, and two tenth deals of flour for a meat offering, mingled with oil, and the drink offering thereof: \nThis is the burnt offering of every sabbath, beside the continual burnt offering, and his drink offering. \nAnd in the beginnings of your months ye shall offer a burnt offering unto the LORD; two young bullocks, and one ram, seven lambs of the first year without spot; \nAnd three tenth deals of flour for a meat offering, mingled with oil, for one bullock; and two tenth deals of flour for a meat offering, mingled with oil, for one ram; \nAnd a several tenth deal of flour mingled with oil for a meat offering unto one lamb; for a burnt offering of a sweet savour, a sacrifice made by fire unto the LORD. \nAnd their drink offerings shall be half an hin of wine unto a bullock, and the third part of an hin unto a ram, and a fourth part of an hin unto a lamb: this is the burnt offering of every month throughout the months of the year. \nAnd one kid of the goats for a sin offering unto the LORD shall be offered, beside the continual burnt offering, and his drink offering. \nAnd in the fourteenth day of the first month is the passover of the LORD. \nAnd in the fifteenth day of this month is the feast: seven days shall unleavened bread be eaten. \nIn the first day shall be an holy convocation; ye shall do no manner of servile work therein: \nBut ye shall offer a sacrifice made by fire for a burnt offering unto the LORD; two young bullocks, and one ram, and seven lambs of the first year: they shall be unto you without blemish: \nAnd their meat offering shall be of flour mingled with oil: three tenth deals shall ye offer for a bullock, and two tenth deals for a ram; \nA several tenth deal shalt thou offer for every lamb, throughout the seven lambs: \nAnd one goat for a sin offering, to make an atonement for you. \nYe shall offer these beside the burnt offering in the morning, which is for a continual burnt offering. \nAfter this manner ye shall offer daily, throughout the seven days, the meat of the sacrifice made by fire, of a sweet savour unto the LORD: it shall be offered beside the continual burnt offering, and his drink offering. \nAnd on the seventh day ye shall have an holy convocation; ye shall do no servile work. \nAlso in the day of the firstfruits, when ye bring a new meat offering unto the LORD, after your weeks be out, ye shall have an holy convocation; ye shall do no servile work: \nBut ye shall offer the burnt offering for a sweet savour unto the LORD; two young bullocks, one ram, seven lambs of the first year; \nAnd their meat offering of flour mingled with oil, three tenth deals unto one bullock, two tenth deals unto one ram, \nA several tenth deal unto one lamb, throughout the seven lambs; \nAnd one kid of the goats, to make an atonement for you. \nYe shall offer them beside the continual burnt offering, and his meat offering, (they shall be unto you without blemish) and their drink offerings. \nAnd in the seventh month, on the first day of the month, ye shall have an holy convocation; ye shall do no servile work: it is a day of blowing the trumpets unto you. \nAnd ye shall offer a burnt offering for a sweet savour unto the LORD; one young bullock, one ram, and seven lambs of the first year without blemish: \nAnd their meat offering shall be of flour mingled with oil, three tenth deals for a bullock, and two tenth deals for a ram, \nAnd one tenth deal for one lamb, throughout the seven lambs: \nAnd one kid of the goats for a sin offering, to make an atonement for you: \nBeside the burnt offering of the month, and his meat offering, and the daily burnt offering, and his meat offering, and their drink offerings, according unto their manner, for a sweet savour, a sacrifice made by fire unto the LORD. \nAnd ye shall have on the tenth day of this seventh month an holy convocation; and ye shall afflict your souls: ye shall not do any work therein: \nBut ye shall offer a burnt offering unto the LORD for a sweet savour; one young bullock, one ram, and seven lambs of the first year; they shall be unto you without blemish: \nAnd their meat offering shall be of flour mingled with oil, three tenth deals to a bullock, and two tenth deals to one ram, \nA several tenth deal for one lamb, throughout the seven lambs: \nOne kid of the goats for a sin offering; beside the sin offering of atonement, and the continual burnt offering, and the meat offering of it, and their drink offerings. \nAnd on the fifteenth day of the seventh month ye shall have an holy convocation; ye shall do no servile work, and ye shall keep a feast unto the LORD seven days: \nAnd ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savour unto the LORD; thirteen young bullocks, two rams, and fourteen lambs of the first year; they shall be without blemish: \nAnd their meat offering shall be of flour mingled with oil, three tenth deals unto every bullock of the thirteen bullocks, two tenth deals to each ram of the two rams, \nAnd a several tenth deal to each lamb of the fourteen lambs: \nAnd one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering. \nAnd on the second day ye shall offer twelve young bullocks, two rams, fourteen lambs of the first year without spot: \nAnd their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one kid of the goats for a sin offering; beside the continual burnt offering, and the meat offering thereof, and their drink offerings. \nAnd on the third day eleven bullocks, two rams, fourteen lambs of the first year without blemish; \nAnd their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering. \nAnd on the fourth day ten bullocks, two rams, and fourteen lambs of the first year without blemish: \nTheir meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering. \nAnd on the fifth day nine bullocks, two rams, and fourteen lambs of the first year without spot: \nAnd their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering. \nAnd on the sixth day eight bullocks, two rams, and fourteen lambs of the first year without blemish: \nAnd their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering. \nAnd on the seventh day seven bullocks, two rams, and fourteen lambs of the first year without blemish: \nAnd their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner: \nAnd one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering. \nOn the eighth day ye shall have a solemn assembly: ye shall do no servile work therein: \nBut ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savour unto the LORD: one bullock, one ram, seven lambs of the first year without blemish: \nTheir meat offering and their drink offerings for the bullock, for the ram, and for the lambs, shall be according to their number, after the manner: \nAnd one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering. \nThese things ye shall do unto the LORD in your set feasts, beside your vows, and your freewill offerings, for your burnt offerings, and for your meat offerings, and for your drink offerings, and for your peace offerings. \nAnd Moses told the children of Israel according to all that the LORD commanded Moses. \nAnd Moses spake unto the heads of the tribes concerning the children of Israel, saying, This is the thing which the LORD hath commanded. \nIf a man vow a vow unto the LORD, or swear an oath to bind his soul with a bond; he shall not break his word, he shall do according to all that proceedeth out of his mouth. \nIf a woman also vow a vow unto the LORD, and bind herself by a bond, being in her father's house in her youth; \nAnd her father hear her vow, and her bond wherewith she hath bound her soul, and her father shall hold his peace at her; then all her vows shall stand, and every bond wherewith she hath bound her soul shall stand. \nBut if her father disallow her in the day that he heareth; not any of her vows, or of her bonds wherewith she hath bound her soul, shall stand: and the LORD shall forgive her, because her father disallowed her. \nAnd if she had at all an husband, when she vowed, or uttered ought out of her lips, wherewith she bound her soul; \nAnd her husband heard it, and held his peace at her in the day that he heard it: then her vows shall stand, and her bonds wherewith she bound her soul shall stand. \nBut if her husband disallowed her on the day that he heard it; then he shall make her vow which she vowed, and that which she uttered with her lips, wherewith she bound her soul, of none effect: and the LORD shall forgive her. \nBut every vow of a widow, and of her that is divorced, wherewith they have bound their souls, shall stand against her. \nAnd if she vowed in her husband's house, or bound her soul by a bond with an oath; \nAnd her husband heard it, and held his peace at her, and disallowed her not: then all her vows shall stand, and every bond wherewith she bound her soul shall stand. \nBut if her husband hath utterly made them void on the day he heard them; then whatsoever proceeded out of her lips concerning her vows, or concerning the bond of her soul, shall not stand: her husband hath made them void; and the LORD shall forgive her. \nEvery vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void. \nBut if her husband altogether hold his peace at her from day to day; then he establisheth all her vows, or all her bonds, which are upon her: he confirmeth them, because he held his peace at her in the day that he heard them. \nBut if he shall any ways make them void after that he hath heard them; then he shall bear her iniquity. \nThese are the statutes, which the LORD commanded Moses, between a man and his wife, between the father and his daughter, being yet in her youth in her father's house. \nAnd the LORD spake unto Moses, saying, \nAvenge the children of Israel of the Midianites: afterward shalt thou be gathered unto thy people. \nAnd Moses spake unto the people, saying, Arm some of yourselves unto the war, and let them go against the Midianites, and avenge the LORD of Midian. \nOf every tribe a thousand, throughout all the tribes of Israel, shall ye send to the war. \nSo there were delivered out of the thousands of Israel, a thousand of every tribe, twelve thousand armed for war. \nAnd Moses sent them to the war, a thousand of every tribe, them and Phinehas the son of Eleazar the priest, to the war, with the holy instruments, and the trumpets to blow in his hand. \nAnd they warred against the Midianites, as the LORD commanded Moses; and they slew all the males. \nAnd they slew the kings of Midian, beside the rest of them that were slain; namely, Evi, and Rekem, and Zur, and Hur, and Reba, five kings of Midian: Balaam also the son of Beor they slew with the sword. \nAnd the children of Israel took all the women of Midian captives, and their little ones, and took the spoil of all their cattle, and all their flocks, and all their goods. \nAnd they burnt all their cities wherein they dwelt, and all their goodly castles, with fire. \nAnd they took all the spoil, and all the prey, both of men and of beasts. \nAnd they brought the captives, and the prey, and the spoil, unto Moses, and Eleazar the priest, and unto the congregation of the children of Israel, unto the camp at the plains of Moab, which are by Jordan near Jericho. \nAnd Moses, and Eleazar the priest, and all the princes of the congregation, went forth to meet them without the camp. \nAnd Moses was wroth with the officers of the host, with the captains over thousands, and captains over hundreds, which came from the battle. \nAnd Moses said unto them, Have ye saved all the women alive? \nBehold, these caused the children of Israel, through the counsel of Balaam, to commit trespass against the LORD in the matter of Peor, and there was a plague among the congregation of the LORD. \nNow therefore kill every male among the little ones, and kill every woman that hath known man by lying with him. \nBut all the women children, that have not known a man by lying with him, keep alive for yourselves. \nAnd do ye abide without the camp seven days: whosoever hath killed any person, and whosoever hath touched any slain, purify both yourselves and your captives on the third day, and on the seventh day. \nAnd purify all your raiment, and all that is made of skins, and all work of goats' hair, and all things made of wood. \nAnd Eleazar the priest said unto the men of war which went to the battle, This is the ordinance of the law which the LORD commanded Moses; \nOnly the gold, and the silver, the brass, the iron, the tin, and the lead, \nEvery thing that may abide the fire, ye shall make it go through the fire, and it shall be clean: nevertheless it shall be purified with the water of separation: and all that abideth not the fire ye shall make go through the water. \nAnd ye shall wash your clothes on the seventh day, and ye shall be clean, and afterward ye shall come into the camp. \nAnd the LORD spake unto Moses, saying, \nTake the sum of the prey that was taken, both of man and of beast, thou, and Eleazar the priest, and the chief fathers of the congregation: \nAnd divide the prey into two parts; between them that took the war upon them, who went out to battle, and between all the congregation: \nAnd levy a tribute unto the LORD of the men of war which went out to battle: one soul of five hundred, both of the persons, and of the beeves, and of the asses, and of the sheep: \nTake it of their half, and give it unto Eleazar the priest, for an heave offering of the LORD. \nAnd of the children of Israel's half, thou shalt take one portion of fifty, of the persons, of the beeves, of the asses, and of the flocks, of all manner of beasts, and give them unto the Levites, which keep the charge of the tabernacle of the LORD. \nAnd Moses and Eleazar the priest did as the LORD commanded Moses. \nAnd the booty, being the rest of the prey which the men of war had caught, was six hundred thousand and seventy thousand and five thousand sheep, \nAnd threescore and twelve thousand beeves, \nAnd threescore and one thousand asses, \nAnd thirty and two thousand persons in all, of women that had not known man by lying with him. \nAnd the half, which was the portion of them that went out to war, was in number three hundred thousand and seven and thirty thousand and five hundred sheep: \nAnd the LORD'S tribute of the sheep was six hundred and threescore and fifteen. \nAnd the beeves were thirty and six thousand; of which the LORD'S tribute was threescore and twelve. \nAnd the asses were thirty thousand and five hundred; of which the LORD'S tribute was threescore and one. \nAnd the persons were sixteen thousand; of which the LORD'S tribute was thirty and two persons. \nAnd Moses gave the tribute, which was the LORD'S heave offering, unto Eleazar the priest, as the LORD commanded Moses. \nAnd of the children of Israel's half, which Moses divided from the men that warred, \n(Now the half that pertained unto the congregation was three hundred thousand and thirty thousand and seven thousand and five hundred sheep, \nAnd thirty and six thousand beeves, \nAnd thirty thousand asses and five hundred, \nAnd sixteen thousand persons;) \nEven of the children of Israel's half, Moses took one portion of fifty, both of man and of beast, and gave them unto the Levites, which kept the charge of the tabernacle of the LORD; as the LORD commanded Moses. \nAnd the officers which were over thousands of the host, the captains of thousands, and captains of hundreds, came near unto Moses: \nAnd they said unto Moses, Thy servants have taken the sum of the men of war which are under our charge, and there lacketh not one man of us. \nWe have therefore brought an oblation for the LORD, what every man hath gotten, of jewels of gold, chains, and bracelets, rings, earrings, and tablets, to make an atonement for our souls before the LORD. \nAnd Moses and Eleazar the priest took the gold of them, even all wrought jewels. \nAnd all the gold of the offering that they offered up to the LORD, of the captains of thousands, and of the captains of hundreds, was sixteen thousand seven hundred and fifty shekels. \n(For the men of war had taken spoil, every man for himself.) \nAnd Moses and Eleazar the priest took the gold of the captains of thousands and of hundreds, and brought it into the tabernacle of the congregation, for a memorial for the children of Israel before the LORD. \nNow the children of Reuben and the children of Gad had a very great multitude of cattle: and when they saw the land of Jazer, and the land of Gilead, that, behold, the place was a place for cattle; \nThe children of Gad and the children of Reuben came and spake unto Moses, and to Eleazar the priest, and unto the princes of the congregation, saying, \nAtaroth, and Dibon, and Jazer, and Nimrah, and Heshbon, and Elealeh, and Shebam, and Nebo, and Beon, \nEven the country which the LORD smote before the congregation of Israel, is a land for cattle, and thy servants have cattle: \nWherefore, said they, if we have found grace in thy sight, let this land be given unto thy servants for a possession, and bring us not over Jordan. \nAnd Moses said unto the children of Gad and to the children of Reuben, Shall your brethren go to war, and shall ye sit here? \nAnd wherefore discourage ye the heart of the children of Israel from going over into the land which the LORD hath given them? \nThus did your fathers, when I sent them from Kadeshbarnea to see the land. \nFor when they went up unto the valley of Eshcol, and saw the land, they discouraged the heart of the children of Israel, that they should not go into the land which the LORD had given them. \nAnd the LORD'S anger was kindled the same time, and he sware, saying, \nSurely none of the men that came up out of Egypt, from twenty years old and upward, shall see the land which I sware unto Abraham, unto Isaac, and unto Jacob; because they have not wholly followed me: \nSave Caleb the son of Jephunneh the Kenezite, and Joshua the son of Nun: for they have wholly followed the LORD. \nAnd the LORD'S anger was kindled against Israel, and he made them wander in the wilderness forty years, until all the generation, that had done evil in the sight of the LORD, was consumed. \nAnd, behold, ye are risen up in your fathers' stead, an increase of sinful men, to augment yet the fierce anger of the LORD toward Israel. \nFor if ye turn away from after him, he will yet again leave them in the wilderness; and ye shall destroy all this people. \nAnd they came near unto him, and said, We will build sheepfolds here for our cattle, and cities for our little ones: \nBut we ourselves will go ready armed before the children of Israel, until we have brought them unto their place: and our little ones shall dwell in the fenced cities because of the inhabitants of the land. \nWe will not return unto our houses, until the children of Israel have inherited every man his inheritance. \nFor we will not inherit with them on yonder side Jordan, or forward; because our inheritance is fallen to us on this side Jordan eastward. \nAnd Moses said unto them, If ye will do this thing, if ye will go armed before the LORD to war, \nAnd will go all of you armed over Jordan before the LORD, until he hath driven out his enemies from before him, \nAnd the land be subdued before the LORD: then afterward ye shall return, and be guiltless before the LORD, and before Israel; and this land shall be your possession before the LORD. \nBut if ye will not do so, behold, ye have sinned against the LORD: and be sure your sin will find you out. \nBuild you cities for your little ones, and folds for your sheep; and do that which hath proceeded out of your mouth. \nAnd the children of Gad and the children of Reuben spake unto Moses, saying, Thy servants will do as my lord commandeth. \nOur little ones, our wives, our flocks, and all our cattle, shall be there in the cities of Gilead: \nBut thy servants will pass over, every man armed for war, before the Lord to battle, as my lord saith. \nSo concerning them Moses commanded Eleazar the priest, and Joshua the son of Nun, and the chief fathers of the tribes of the children of Israel: \nAnd Moses said unto them, If the children of Gad and the children of Reuben will pass with you over Jordan, every man armed to battle, before the LORD, and the land shall be subdued before you; then ye shall give them the land of Gilead for a possession: \nBut if they will not pass over with you armed, they shall have possessions among you in the land of Canaan. \nAnd the children of Gad and the children of Reuben answered, saying, As the LORD hath said unto thy servants, so will we do. \nWe will pass over armed before the LORD into the land of Canaan, that the possession of our inheritance on this side Jordan may be our's. \nAnd Moses gave unto them, even to the children of Gad, and to the children of Reuben, and unto half the tribe of Manasseh the son of Joseph, the kingdom of Sihon king of the Amorites, and the kingdom of Og king of Bashan, the land, with the cities thereof in the coasts, even the cities of the country round about. \nAnd the children of Gad built Dibon, and Ataroth, and Aroer, \nAnd Atroth, Shophan, and Jaazer, and Jogbehah, \nAnd Bethnimrah, and Bethharan, fenced cities: and folds for sheep. \nAnd the children of Reuben built Heshbon, and Elealeh, and Kirjathaim, \nAnd Nebo, and Baalmeon, (their names being changed,) and Shibmah: and gave other names unto the cities which they builded. \nAnd the children of Machir the son of Manasseh went to Gilead, and took it, and dispossessed the Amorite which was in it. \nAnd Moses gave Gilead unto Machir the son of Manasseh; and he dwelt therein. \nAnd Jair the son of Manasseh went and took the small towns thereof, and called them Havothjair. \nAnd Nobah went and took Kenath, and the villages thereof, and called it Nobah, after his own name. \nThese are the journeys of the children of Israel, which went forth out of the land of Egypt with their armies under the hand of Moses and Aaron. \nAnd Moses wrote their goings out according to their journeys by the commandment of the LORD: and these are their journeys according to their goings out. \nAnd they departed from Rameses in the first month, on the fifteenth day of the first month; on the morrow after the passover the children of Israel went out with an high hand in the sight of all the Egyptians. \nFor the Egyptians buried all their firstborn, which the LORD had smitten among them: upon their gods also the LORD executed judgments. \nAnd the children of Israel removed from Rameses, and pitched in Succoth. \nAnd they departed from Succoth, and pitched in Etham, which is in the edge of the wilderness. \nAnd they removed from Etham, and turned again unto Pihahiroth, which is before Baalzephon: and they pitched before Migdol. \nAnd they departed from before Pihahiroth, and passed through the midst of the sea into the wilderness, and went three days'journey in the wilderness of Etham, and pitched in Marah. \nAnd they removed from Marah, and came unto Elim: and in Elim were twelve fountains of water, and threescore and ten palm trees; and they pitched there. \nAnd they removed from Elim, and encamped by the Red sea. \nAnd they removed from the Red sea, and encamped in the wilderness of Sin. \nAnd they took their journey out of the wilderness of Sin, and encamped in Dophkah. \nAnd they departed from Dophkah, and encamped in Alush. \nAnd they removed from Alush, and encamped at Rephidim, where was no water for the people to drink. \nAnd they departed from Rephidim, and pitched in the wilderness of Sinai. \nAnd they removed from the desert of Sinai, and pitched at Kibrothhattaavah. \nAnd they departed from Kibrothhattaavah, and encamped at Hazeroth. \nAnd they departed from Hazeroth, and pitched in Rithmah. \nAnd they departed from Rithmah, and pitched at Rimmonparez. \nAnd they departed from Rimmonparez, and pitched in Libnah. \nAnd they removed from Libnah, and pitched at Rissah. \nAnd they journeyed from Rissah, and pitched in Kehelathah. \nAnd they went from Kehelathah, and pitched in mount Shapher. \nAnd they removed from mount Shapher, and encamped in Haradah. \nAnd they removed from Haradah, and pitched in Makheloth. \nAnd they removed from Makheloth, and encamped at Tahath. \nAnd they departed from Tahath, and pitched at Tarah. \nAnd they removed from Tarah, and pitched in Mithcah. \nAnd they went from Mithcah, and pitched in Hashmonah. \nAnd they departed from Hashmonah, and encamped at Moseroth. \nAnd they departed from Moseroth, and pitched in Benejaakan. \nAnd they removed from Benejaakan, and encamped at Horhagidgad. \nAnd they went from Horhagidgad, and pitched in Jotbathah. \nAnd they removed from Jotbathah, and encamped at Ebronah. \nAnd they departed from Ebronah, and encamped at Eziongaber. \nAnd they removed from Eziongaber, and pitched in the wilderness of Zin, which is Kadesh. \nAnd they removed from Kadesh, and pitched in mount Hor, in the edge of the land of Edom. \nAnd Aaron the priest went up into mount Hor at the commandment of the LORD, and died there, in the fortieth year after the children of Israel were come out of the land of Egypt, in the first day of the fifth month. \nAnd Aaron was an hundred and twenty and three years old when he died in mount Hor. \nAnd king Arad the Canaanite, which dwelt in the south in the land of Canaan, heard of the coming of the children of Israel. \nAnd they departed from mount Hor, and pitched in Zalmonah. \nAnd they departed from Zalmonah, and pitched in Punon. \nAnd they departed from Punon, and pitched in Oboth. \nAnd they departed from Oboth, and pitched in Ijeabarim, in the border of Moab. \nAnd they departed from Iim, and pitched in Dibongad. \nAnd they removed from Dibongad, and encamped in Almondiblathaim. \nAnd they removed from Almondiblathaim, and pitched in the mountains of Abarim, before Nebo. \nAnd they departed from the mountains of Abarim, and pitched in the plains of Moab by Jordan near Jericho. \nAnd they pitched by Jordan, from Bethjesimoth even unto Abelshittim in the plains of Moab. \nAnd the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying, \nSpeak unto the children of Israel, and say unto them, When ye are passed over Jordan into the land of Canaan; \nThen ye shall drive out all the inhabitants of the land from before you, and destroy all their pictures, and destroy all their molten images, and quite pluck down all their high places: \nAnd ye shall dispossess the inhabitants of the land, and dwell therein: for I have given you the land to possess it. \nAnd ye shall divide the land by lot for an inheritance among your families: and to the more ye shall give the more inheritance, and to the fewer ye shall give the less inheritance: every man's inheritance shall be in the place where his lot falleth; according to the tribes of your fathers ye shall inherit. \nBut if ye will not drive out the inhabitants of the land from before you; then it shall come to pass, that those which ye let remain of them shall be pricks in your eyes, and thorns in your sides, and shall vex you in the land wherein ye dwell. \nMoreover it shall come to pass, that I shall do unto you, as I thought to do unto them. \nAnd the LORD spake unto Moses, saying, \nCommand the children of Israel, and say unto them, When ye come into the land of Canaan; (this is the land that shall fall unto you for an inheritance, even the land of Canaan with the coasts thereof:) \nThen your south quarter shall be from the wilderness of Zin along by the coast of Edom, and your south border shall be the outmost coast of the salt sea eastward: \nAnd your border shall turn from the south to the ascent of Akrabbim, and pass on to Zin: and the going forth thereof shall be from the south to Kadeshbarnea, and shall go on to Hazaraddar, and pass on to Azmon: \nAnd the border shall fetch a compass from Azmon unto the river of Egypt, and the goings out of it shall be at the sea. \nAnd as for the western border, ye shall even have the great sea for a border: this shall be your west border. \nAnd this shall be your north border: from the great sea ye shall point out for you mount Hor: \nFrom mount Hor ye shall point out your border unto the entrance of Hamath; and the goings forth of the border shall be to Zedad: \nAnd the border shall go on to Ziphron, and the goings out of it shall be at Hazarenan: this shall be your north border. \nAnd ye shall point out your east border from Hazarenan to Shepham: \nAnd the coast shall go down from Shepham to Riblah, on the east side of Ain; and the border shall descend, and shall reach unto the side of the sea of Chinnereth eastward: \nAnd the border shall go down to Jordan, and the goings out of it shall be at the salt sea: this shall be your land with the coasts thereof round about. \nAnd Moses commanded the children of Israel, saying, This is the land which ye shall inherit by lot, which the LORD commanded to give unto the nine tribes, and to the half tribe: \nFor the tribe of the children of Reuben according to the house of their fathers, and the tribe of the children of Gad according to the house of their fathers, have received their inheritance; and half the tribe of Manasseh have received their inheritance: \nThe two tribes and the half tribe have received their inheritance on this side Jordan near Jericho eastward, toward the sunrising. \nAnd the LORD spake unto Moses, saying, \nThese are the names of the men which shall divide the land unto you: Eleazar the priest, and Joshua the son of Nun. \nAnd ye shall take one prince of every tribe, to divide the land by inheritance. \nAnd the names of the men are these: Of the tribe of Judah, Caleb the son of Jephunneh. \nAnd of the tribe of the children of Simeon, Shemuel the son of Ammihud. \nOf the tribe of Benjamin, Elidad the son of Chislon. \nAnd the prince of the tribe of the children of Dan, Bukki the son of Jogli. \nThe prince of the children of Joseph, for the tribe of the children of Manasseh, Hanniel the son of Ephod. \nAnd the prince of the tribe of the children of Ephraim, Kemuel the son of Shiphtan. \nAnd the prince of the tribe of the children of Zebulun, Elizaphan the son of Parnach. \nAnd the prince of the tribe of the children of Issachar, Paltiel the son of Azzan. \nAnd the prince of the tribe of the children of Asher, Ahihud the son of Shelomi. \nAnd the prince of the tribe of the children of Naphtali, Pedahel the son of Ammihud. \nThese are they whom the LORD commanded to divide the inheritance unto the children of Israel in the land of Canaan. \nAnd the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying, \nCommand the children of Israel, that they give unto the Levites of the inheritance of their possession cities to dwell in; and ye shall give also unto the Levites suburbs for the cities round about them. \nAnd the cities shall they have to dwell in; and the suburbs of them shall be for their cattle, and for their goods, and for all their beasts. \nAnd the suburbs of the cities, which ye shall give unto the Levites, shall reach from the wall of the city and outward a thousand cubits round about. \nAnd ye shall measure from without the city on the east side two thousand cubits, and on the south side two thousand cubits, and on the west side two thousand cubits, and on the north side two thousand cubits; and the city shall be in the midst: this shall be to them the suburbs of the cities. \nAnd among the cities which ye shall give unto the Levites there shall be six cities for refuge, which ye shall appoint for the manslayer, that he may flee thither: and to them ye shall add forty and two cities. \nSo all the cities which ye shall give to the Levites shall be forty and eight cities: them shall ye give with their suburbs. \nAnd the cities which ye shall give shall be of the possession of the children of Israel: from them that have many ye shall give many; but from them that have few ye shall give few: every one shall give of his cities unto the Levites according to his inheritance which he inheriteth. \nAnd the LORD spake unto Moses, saying, \nSpeak unto the children of Israel, and say unto them, When ye be come over Jordan into the land of Canaan; \nThen ye shall appoint you cities to be cities of refuge for you; that the slayer may flee thither, which killeth any person at unawares. \nAnd they shall be unto you cities for refuge from the avenger; that the manslayer die not, until he stand before the congregation in judgment. \nAnd of these cities which ye shall give six cities shall ye have for refuge. \nYe shall give three cities on this side Jordan, and three cities shall ye give in the land of Canaan, which shall be cities of refuge. \nThese six cities shall be a refuge, both for the children of Israel, and for the stranger, and for the sojourner among them: that every one that killeth any person unawares may flee thither. \nAnd if he smite him with an instrument of iron, so that he die, he is a murderer: the murderer shall surely be put to death. \nAnd if he smite him with throwing a stone, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death. \nOr if he smite him with an hand weapon of wood, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death. \nThe revenger of blood himself shall slay the murderer: when he meeteth him, he shall slay him. \nBut if he thrust him of hatred, or hurl at him by laying of wait, that he die; \nOr in enmity smite him with his hand, that he die: he that smote him shall surely be put to death; for he is a murderer: the revenger of blood shall slay the murderer, when he meeteth him. \nBut if he thrust him suddenly without enmity, or have cast upon him any thing without laying of wait, \nOr with any stone, wherewith a man may die, seeing him not, and cast it upon him, that he die, and was not his enemy, neither sought his harm: \nThen the congregation shall judge between the slayer and the revenger of blood according to these judgments: \nAnd the congregation shall deliver the slayer out of the hand of the revenger of blood, and the congregation shall restore him to the city of his refuge, whither he was fled: and he shall abide in it unto the death of the high priest, which was anointed with the holy oil. \nBut if the slayer shall at any time come without the border of the city of his refuge, whither he was fled; \nAnd the revenger of blood find him without the borders of the city of his refuge, and the revenger of blood kill the slayer; he shall not be guilty of blood: \nBecause he should have remained in the city of his refuge until the death of the high priest: but after the death of the high priest the slayer shall return into the land of his possession. \nSo these things shall be for a statute of judgment unto you throughout your generations in all your dwellings. \nWhoso killeth any person, the murderer shall be put to death by the mouth of witnesses: but one witness shall not testify against any person to cause him to die. \nMoreover ye shall take no satisfaction for the life of a murderer, which is guilty of death: but he shall be surely put to death. \nAnd ye shall take no satisfaction for him that is fled to the city of his refuge, that he should come again to dwell in the land, until the death of the priest. \nSo ye shall not pollute the land wherein ye are: for blood it defileth the land: and the land cannot be cleansed of the blood that is shed therein, but by the blood of him that shed it. \nDefile not therefore the land which ye shall inhabit, wherein I dwell: for I the LORD dwell among the children of Israel. \nAnd the chief fathers of the families of the children of Gilead, the son of Machir, the son of Manasseh, of the families of the sons of Joseph, came near, and spake before Moses, and before the princes, the chief fathers of the children of Israel: \nAnd they said, The LORD commanded my lord to give the land for an inheritance by lot to the children of Israel: and my lord was commanded by the LORD to give the inheritance of Zelophehad our brother unto his daughters. \nAnd if they be married to any of the sons of the other tribes of the children of Israel, then shall their inheritance be taken from the inheritance of our fathers, and shall be put to the inheritance of the tribe whereunto they are received: so shall it be taken from the lot of our inheritance. \nAnd when the jubile of the children of Israel shall be, then shall their inheritance be put unto the inheritance of the tribe whereunto they are received: so shall their inheritance be taken away from the inheritance of the tribe of our fathers. \nAnd Moses commanded the children of Israel according to the word of the LORD, saying, The tribe of the sons of Joseph hath said well. \nThis is the thing which the LORD doth command concerning the daughters of Zelophehad, saying, Let them marry to whom they think best; only to the family of the tribe of their father shall they marry. \nSo shall not the inheritance of the children of Israel remove from tribe to tribe: for every one of the children of Israel shall keep himself to the inheritance of the tribe of his fathers. \nAnd every daughter, that possesseth an inheritance in any tribe of the children of Israel, shall be wife unto one of the family of the tribe of her father, that the children of Israel may enjoy every man the inheritance of his fathers. \nNeither shall the inheritance remove from one tribe to another tribe; but every one of the tribes of the children of Israel shall keep himself to his own inheritance. \nEven as the LORD commanded Moses, so did the daughters of Zelophehad: \nFor Mahlah, Tirzah, and Hoglah, and Milcah, and Noah, the daughters of Zelophehad, were married unto their fathers brothers' sons: \nAnd they were married into the families of the sons of Manasseh the son of Joseph, and their inheritance remained in the tribe of the family of their father. \nThese are the commandments and the judgments, which the LORD commanded by the hand of Moses unto the children of Israel in the plains of Moab by Jordan near Jericho. \nThese be the words which Moses spake unto all Israel on this side Jordan in the wilderness, in the plain over against the Red sea, between Paran, and Tophel, and Laban, and Hazeroth, and Dizahab. \n(There are eleven days' journey from Horeb by the way of mount Seir unto Kadeshbarnea.) \nAnd it came to pass in the fortieth year, in the eleventh month, on the first day of the month, that Moses spake unto the children of Israel, according unto all that the LORD had given him in commandment unto them; \nAfter he had slain Sihon the king of the Amorites, which dwelt in Heshbon, and Og the king of Bashan, which dwelt at Astaroth in Edrei: \nOn this side Jordan, in the land of Moab, began Moses to declare this law, saying, \nThe LORD our God spake unto us in Horeb, saying, Ye have dwelt long enough in this mount: \nTurn you, and take your journey, and go to the mount of the Amorites, and unto all the places nigh thereunto, in the plain, in the hills, and in the vale, and in the south, and by the sea side, to the land of the Canaanites, and unto Lebanon, unto the great river, the river Euphrates. \nBehold, I have set the land before you: go in and possess the land which the LORD sware unto your fathers, Abraham, Isaac, and Jacob, to give unto them and to their seed after them. \nAnd I spake unto you at that time, saying, I am not able to bear you myself alone: \nThe LORD your God hath multiplied you, and, behold, ye are this day as the stars of heaven for multitude. \n(The LORD God of your fathers make you a thousand times so many more as ye are, and bless you, as he hath promised you!) \nHow can I myself alone bear your cumbrance, and your burden, and your strife? \nTake you wise men, and understanding, and known among your tribes, and I will make them rulers over you. \nAnd ye answered me, and said, The thing which thou hast spoken is good for us to do. \nSo I took the chief of your tribes, wise men, and known, and made them heads over you, captains over thousands, and captains over hundreds, and captains over fifties, and captains over tens, and officers among your tribes. \nAnd I charged your judges at that time, saying, Hear the causes between your brethren, and judge righteously between every man and his brother, and the stranger that is with him. \nYe shall not respect persons in judgment; but ye shall hear the small as well as the great; ye shall not be afraid of the face of man; for the judgment is God's: and the cause that is too hard for you, bring it unto me, and I will hear it. \nAnd I commanded you at that time all the things which ye should do. \nAnd when we departed from Horeb, we went through all that great and terrible wilderness, which ye saw by the way of the mountain of the Amorites, as the LORD our God commanded us; and we came to Kadeshbarnea. \nAnd I said unto you, Ye are come unto the mountain of the Amorites, which the LORD our God doth give unto us. \nBehold, the LORD thy God hath set the land before thee: go up and possess it, as the LORD God of thy fathers hath said unto thee; fear not, neither be discouraged. \nAnd ye came near unto me every one of you, and said, We will send men before us, and they shall search us out the land, and bring us word again by what way we must go up, and into what cities we shall come. \nAnd the saying pleased me well: and I took twelve men of you, one of a tribe: \nAnd they turned and went up into the mountain, and came unto the valley of Eshcol, and searched it out. \nAnd they took of the fruit of the land in their hands, and brought it down unto us, and brought us word again, and said, It is a good land which the LORD our God doth give us. \nNotwithstanding ye would not go up, but rebelled against the commandment of the LORD your God: \nAnd ye murmured in your tents, and said, Because the LORD hated us, he hath brought us forth out of the land of Egypt, to deliver us into the hand of the Amorites, to destroy us. \nWhither shall we go up? our brethren have discouraged our heart, saying, The people is greater and taller than we; the cities are great and walled up to heaven; and moreover we have seen the sons of the Anakims there. \nThen I said unto you, Dread not, neither be afraid of them. \nThe LORD your God which goeth before you, he shall fight for you, according to all that he did for you in Egypt before your eyes; \nAnd in the wilderness, where thou hast seen how that the LORD thy God bare thee, as a man doth bear his son, in all the way that ye went, until ye came into this place. \nYet in this thing ye did not believe the LORD your God, \nWho went in the way before you, to search you out a place to pitch your tents in, in fire by night, to shew you by what way ye should go, and in a cloud by day. \nAnd the LORD heard the voice of your words, and was wroth, and sware, saying, \nSurely there shall not one of these men of this evil generation see that good land, which I sware to give unto your fathers. \nSave Caleb the son of Jephunneh; he shall see it, and to him will I give the land that he hath trodden upon, and to his children, because he hath wholly followed the LORD. \nAlso the LORD was angry with me for your sakes, saying, Thou also shalt not go in thither. \nBut Joshua the son of Nun, which standeth before thee, he shall go in thither: encourage him: for he shall cause Israel to inherit it. \nMoreover your little ones, which ye said should be a prey, and your children, which in that day had no knowledge between good and evil, they shall go in thither, and unto them will I give it, and they shall possess it. \nBut as for you, turn you, and take your journey into the wilderness by the way of the Red sea. \nThen ye answered and said unto me, We have sinned against the LORD, we will go up and fight, according to all that the LORD our God commanded us. And when ye had girded on every man his weapons of war, ye were ready to go up into the hill. \nAnd the LORD said unto me, Say unto them. Go not up, neither fight; for I am not among you; lest ye be smitten before your enemies. \nSo I spake unto you; and ye would not hear, but rebelled against the commandment of the LORD, and went presumptuously up into the hill. \nAnd the Amorites, which dwelt in that mountain, came out against you, and chased you, as bees do, and destroyed you in Seir, even unto Hormah. \nAnd ye returned and wept before the LORD; but the LORD would not hearken to your voice, nor give ear unto you. \nSo ye abode in Kadesh many days, according unto the days that ye abode there. \nThen we turned, and took our journey into the wilderness by the way of the Red sea, as the LORD spake unto me: and we compassed mount Seir many days. \nAnd the LORD spake unto me, saying, \nYe have compassed this mountain long enough: turn you northward. \nAnd command thou the people, saying, Ye are to pass through the coast of your brethren the children of Esau, which dwell in Seir; and they shall be afraid of you: take ye good heed unto yourselves therefore: \nMeddle not with them; for I will not give you of their land, no, not so much as a foot breadth; because I have given mount Seir unto Esau for a possession. \nYe shall buy meat of them for money, that ye may eat; and ye shall also buy water of them for money, that ye may drink. \nFor the LORD thy God hath blessed thee in all the works of thy hand: he knoweth thy walking through this great wilderness: these forty years the LORD thy God hath been with thee; thou hast lacked nothing. \nAnd when we passed by from our brethren the children of Esau, which dwelt in Seir, through the way of the plain from Elath, and from Eziongaber, we turned and passed by the way of the wilderness of Moab. \nAnd the LORD said unto me, Distress not the Moabites, neither contend with them in battle: for I will not give thee of their land for a possession; because I have given Ar unto the children of Lot for a possession. \nThe Emims dwelt therein in times past, a people great, and many, and tall, as the Anakims; \nWhich also were accounted giants, as the Anakims; but the Moabites called them Emims. \nThe Horims also dwelt in Seir beforetime; but the children of Esau succeeded them, when they had destroyed them from before them, and dwelt in their stead; as Israel did unto the land of his possession, which the LORD gave unto them. \nNow rise up, said I, and get you over the brook Zered. And we went over the brook Zered. \nAnd the space in which we came from Kadeshbarnea, until we were come over the brook Zered, was thirty and eight years; until all the generation of the men of war were wasted out from among the host, as the LORD sware unto them. \nFor indeed the hand of the LORD was against them, to destroy them from among the host, until they were consumed. \nSo it came to pass, when all the men of war were consumed and dead from among the people, \nThat the LORD spake unto me, saying, \nThou art to pass over through Ar, the coast of Moab, this day: \nAnd when thou comest nigh over against the children of Ammon, distress them not, nor meddle with them: for I will not give thee of the land of the children of Ammon any possession; because I have given it unto the children of Lot for a possession. \n(That also was accounted a land of giants: giants dwelt therein in old time; and the Ammonites call them Zamzummims; \nA people great, and many, and tall, as the Anakims; but the LORD destroyed them before them; and they succeeded them, and dwelt in their stead: \nAs he did to the children of Esau, which dwelt in Seir, when he destroyed the Horims from before them; and they succeeded them, and dwelt in their stead even unto this day: \nAnd the Avims which dwelt in Hazerim, even unto Azzah, the Caphtorims, which came forth out of Caphtor, destroyed them, and dwelt in their stead.) \nRise ye up, take your journey, and pass over the river Arnon: behold, I have given into thine hand Sihon the Amorite, king of Heshbon, and his land: begin to possess it, and contend with him in battle. \nThis day will I begin to put the dread of thee and the fear of thee upon the nations that are under the whole heaven, who shall hear report of thee, and shall tremble, and be in anguish because of thee. \nAnd I sent messengers out of the wilderness of Kedemoth unto Sihon king of Heshbon with words of peace, saying, \nLet me pass through thy land: I will go along by the high way, I will neither turn unto the right hand nor to the left. \nThou shalt sell me meat for money, that I may eat; and give me water for money, that I may drink: only I will pass through on my feet; \n(As the children of Esau which dwell in Seir, and the Moabites which dwell in Ar, did unto me;) until I shall pass over Jordan into the land which the LORD our God giveth us. \nBut Sihon king of Heshbon would not let us pass by him: for the LORD thy God hardened his spirit, and made his heart obstinate, that he might deliver him into thy hand, as appeareth this day. \nAnd the LORD said unto me, Behold, I have begun to give Sihon and his land before thee: begin to possess, that thou mayest inherit his land. \nThen Sihon came out against us, he and all his people, to fight at Jahaz. \nAnd the LORD our God delivered him before us; and we smote him, and his sons, and all his people. \nAnd we took all his cities at that time, and utterly destroyed the men, and the women, and the little ones, of every city, we left none to remain: \nOnly the cattle we took for a prey unto ourselves, and the spoil of the cities which we took. \nFrom Aroer, which is by the brink of the river of Arnon, and from the city that is by the river, even unto Gilead, there was not one city too strong for us: the LORD our God delivered all unto us: \nOnly unto the land of the children of Ammon thou camest not, nor unto any place of the river Jabbok, nor unto the cities in the mountains, nor unto whatsoever the LORD our God forbad us. \nThen we turned, and went up the way to Bashan: and Og the king of Bashan came out against us, he and all his people, to battle at Edrei. \nAnd the LORD said unto me, Fear him not: for I will deliver him, and all his people, and his land, into thy hand; and thou shalt do unto him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon. \nSo the LORD our God delivered into our hands Og also, the king of Bashan, and all his people: and we smote him until none was left to him remaining. \nAnd we took all his cities at that time, there was not a city which we took not from them, threescore cities, all the region of Argob, the kingdom of Og in Bashan. \nAll these cities were fenced with high walls, gates, and bars; beside unwalled towns a great many. \nAnd we utterly destroyed them, as we did unto Sihon king of Heshbon, utterly destroying the men, women, and children, of every city. \nBut all the cattle, and the spoil of the cities, we took for a prey to ourselves. \nAnd we took at that time out of the hand of the two kings of the Amorites the land that was on this side Jordan, from the river of Arnon unto mount Hermon; \n(Which Hermon the Sidonians call Sirion; and the Amorites call it Shenir;) \nAll the cities of the plain, and all Gilead, and all Bashan, unto Salchah and Edrei, cities of the kingdom of Og in Bashan. \nFor only Og king of Bashan remained of the remnant of giants; behold his bedstead was a bedstead of iron; is it not in Rabbath of the children of Ammon? nine cubits was the length thereof, and four cubits the breadth of it, after the cubit of a man. \nAnd this land, which we possessed at that time, from Aroer, which is by the river Arnon, and half mount Gilead, and the cities thereof, gave I unto the Reubenites and to the Gadites. \nAnd the rest of Gilead, and all Bashan, being the kingdom of Og, gave I unto the half tribe of Manasseh; all the region of Argob, with all Bashan, which was called the land of giants. \nJair the son of Manasseh took all the country of Argob unto the coasts of Geshuri and Maachathi; and called them after his own name, Bashanhavothjair, unto this day. \nAnd I gave Gilead unto Machir. \nAnd unto the Reubenites and unto the Gadites I gave from Gilead even unto the river Arnon half the valley, and the border even unto the river Jabbok, which is the border of the children of Ammon; \nThe plain also, and Jordan, and the coast thereof, from Chinnereth even unto the sea of the plain, even the salt sea, under Ashdothpisgah eastward. \nAnd I commanded you at that time, saying, The LORD your God hath given you this land to possess it: ye shall pass over armed before your brethren the children of Israel, all that are meet for the war. \nBut your wives, and your little ones, and your cattle, (for I know that ye have much cattle,) shall abide in your cities which I have given you; \nUntil the LORD have given rest unto your brethren, as well as unto you, and until they also possess the land which the LORD your God hath given them beyond Jordan: and then shall ye return every man unto his possession, which I have given you. \nAnd I commanded Joshua at that time, saying, Thine eyes have seen all that the LORD your God hath done unto these two kings: so shall the LORD do unto all the kingdoms whither thou passest. \nYe shall not fear them: for the LORD your God he shall fight for you. \nAnd I besought the LORD at that time, saying, \nO Lord GOD, thou hast begun to shew thy servant thy greatness, and thy mighty hand: for what God is there in heaven or in earth, that can do according to thy works, and according to thy might? \nI pray thee, let me go over, and see the good land that is beyond Jordan, that goodly mountain, and Lebanon. \nBut the LORD was wroth with me for your sakes, and would not hear me: and the LORD said unto me, Let it suffice thee; speak no more unto me of this matter. \nGet thee up into the top of Pisgah, and lift up thine eyes westward, and northward, and southward, and eastward, and behold it with thine eyes: for thou shalt not go over this Jordan. \nBut charge Joshua, and encourage him, and strengthen him: for he shall go over before this people, and he shall cause them to inherit the land which thou shalt see. \nSo we abode in the valley over against Bethpeor. \nNow therefore hearken, O Israel, unto the statutes and unto the judgments, which I teach you, for to do them, that ye may live, and go in and possess the land which the LORD God of your fathers giveth you. \nYe shall not add unto the word which I command you, neither shall ye diminish ought from it, that ye may keep the commandments of the LORD your God which I command you. \nYour eyes have seen what the LORD did because of Baalpeor: for all the men that followed Baalpeor, the LORD thy God hath destroyed them from among you. \nBut ye that did cleave unto the LORD your God are alive every one of you this day. \nBehold, I have taught you statutes and judgments, even as the LORD my God commanded me, that ye should do so in the land whither ye go to possess it. \nKeep therefore and do them; for this is your wisdom and your understanding in the sight of the nations, which shall hear all these statutes, and say, Surely this great nation is a wise and understanding people. \nFor what nation is there so great, who hath God so nigh unto them, as the LORD our God is in all things that we call upon him for? \nAnd what nation is there so great, that hath statutes and judgments so righteous as all this law, which I set before you this day? \nOnly take heed to thyself, and keep thy soul diligently, lest thou forget the things which thine eyes have seen, and lest they depart from thy heart all the days of thy life: but teach them thy sons, and thy sons' sons; \nSpecially the day that thou stoodest before the LORD thy God in Horeb, when the LORD said unto me, Gather me the people together, and I will make them hear my words, that they may learn to fear me all the days that they shall live upon the earth, and that they may teach their children. \nAnd ye came near and stood under the mountain; and the mountain burned with fire unto the midst of heaven, with darkness, clouds, and thick darkness. \nAnd the LORD spake unto you out of the midst of the fire: ye heard the voice of the words, but saw no similitude; only ye heard a voice. \nAnd he declared unto you his covenant, which he commanded you to perform, even ten commandments; and he wrote them upon two tables of stone. \nAnd the LORD commanded me at that time to teach you statutes and judgments, that ye might do them in the land whither ye go over to possess it. \nTake ye therefore good heed unto yourselves; for ye saw no manner of similitude on the day that the LORD spake unto you in Horeb out of the midst of the fire: \nLest ye corrupt yourselves, and make you a graven image, the similitude of any figure, the likeness of male or female, \nThe likeness of any beast that is on the earth, the likeness of any winged fowl that flieth in the air, \nThe likeness of any thing that creepeth on the ground, the likeness of any fish that is in the waters beneath the earth: \nAnd lest thou lift up thine eyes unto heaven, and when thou seest the sun, and the moon, and the stars, even all the host of heaven, shouldest be driven to worship them, and serve them, which the LORD thy God hath divided unto all nations under the whole heaven. \nBut the LORD hath taken you, and brought you forth out of the iron furnace, even out of Egypt, to be unto him a people of inheritance, as ye are this day. \nFurthermore the LORD was angry with me for your sakes, and sware that I should not go over Jordan, and that I should not go in unto that good land, which the LORD thy God giveth thee for an inheritance: \nBut I must die in this land, I must not go over Jordan: but ye shall go over, and possess that good land. \nTake heed unto yourselves, lest ye forget the covenant of the LORD your God, which he made with you, and make you a graven image, or the likeness of any thing, which the LORD thy God hath forbidden thee. \nFor the LORD thy God is a consuming fire, even a jealous God. \nWhen thou shalt beget children, and children's children, and ye shall have remained long in the land, and shall corrupt yourselves, and make a graven image, or the likeness of any thing, and shall do evil in the sight of the LORD thy God, to provoke him to anger: \nI call heaven and earth to witness against you this day, that ye shall soon utterly perish from off the land whereunto ye go over Jordan to possess it; ye shall not prolong your days upon it, but shall utterly be destroyed. \nAnd the LORD shall scatter you among the nations, and ye shall be left few in number among the heathen, whither the LORD shall lead you. \nAnd there ye shall serve gods, the work of men's hands, wood and stone, which neither see, nor hear, nor eat, nor smell. \nBut if from thence thou shalt seek the LORD thy God, thou shalt find him, if thou seek him with all thy heart and with all thy soul. \nWhen thou art in tribulation, and all these things are come upon thee, even in the latter days, if thou turn to the LORD thy God, and shalt be obedient unto his voice; \n(For the LORD thy God is a merciful God;) he will not forsake thee, neither destroy thee, nor forget the covenant of thy fathers which he sware unto them. \nFor ask now of the days that are past, which were before thee, since the day that God created man upon the earth, and ask from the one side of heaven unto the other, whether there hath been any such thing as this great thing is, or hath been heard like it? \nDid ever people hear the voice of God speaking out of the midst of the fire, as thou hast heard, and live? \nOr hath God assayed to go and take him a nation from the midst of another nation, by temptations, by signs, and by wonders, and by war, and by a mighty hand, and by a stretched out arm, and by great terrors, according to all that the LORD your God did for you in Egypt before your eyes? \nUnto thee it was shewed, that thou mightest know that the LORD he is God; there is none else beside him. \nOut of heaven he made thee to hear his voice, that he might instruct thee: and upon earth he shewed thee his great fire; and thou heardest his words out of the midst of the fire. \nAnd because he loved thy fathers, therefore he chose their seed after them, and brought thee out in his sight with his mighty power out of Egypt; \nTo drive out nations from before thee greater and mightier than thou art, to bring thee in, to give thee their land for an inheritance, as it is this day. \nKnow therefore this day, and consider it in thine heart, that the LORD he is God in heaven above, and upon the earth beneath: there is none else. \nThou shalt keep therefore his statutes, and his commandments, which I command thee this day, that it may go well with thee, and with thy children after thee, and that thou mayest prolong thy days upon the earth, which the LORD thy God giveth thee, for ever. \nThen Moses severed three cities on this side Jordan toward the sunrising; \nThat the slayer might flee thither, which should kill his neighbour unawares, and hated him not in times past; and that fleeing unto one of these cities he might live: \nNamely, Bezer in the wilderness, in the plain country, of the Reubenites; and Ramoth in Gilead, of the Gadites; and Golan in Bashan, of the Manassites. \nAnd this is the law which Moses set before the children of Israel: \nThese are the testimonies, and the statutes, and the judgments, which Moses spake unto the children of Israel, after they came forth out of Egypt. \nOn this side Jordan, in the valley over against Bethpeor, in the land of Sihon king of the Amorites, who dwelt at Heshbon, whom Moses and the children of Israel smote, after they were come forth out of Egypt: \nAnd they possessed his land, and the land of Og king of Bashan, two kings of the Amorites, which were on this side Jordan toward the sunrising; \nFrom Aroer, which is by the bank of the river Arnon, even unto mount Sion, which is Hermon, \nAnd all the plain on this side Jordan eastward, even unto the sea of the plain, under the springs of Pisgah. \nAnd Moses called all Israel, and said unto them, Hear, O Israel, the statutes and judgments which I speak in your ears this day, that ye may learn them, and keep, and do them. \nThe LORD our God made a covenant with us in Horeb. \nThe LORD made not this covenant with our fathers, but with us, even us, who are all of us here alive this day. \nThe LORD talked with you face to face in the mount out of the midst of the fire, \n(I stood between the LORD and you at that time, to shew you the word of the LORD: for ye were afraid by reason of the fire, and went not up into the mount;) saying, \nI am the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage. \nThou shalt have none other gods before me. \nThou shalt not make thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the waters beneath the earth: \nThou shalt not bow down thyself unto them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me, \nAnd shewing mercy unto thousands of them that love me and keep my commandments. \nThou shalt not take the name of the LORD thy God in vain: for the LORD will not hold him guiltless that taketh his name in vain. \nKeep the sabbath day to sanctify it, as the LORD thy God hath commanded thee. \nSix days thou shalt labour, and do all thy work: \nBut the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, nor thy manservant, nor thy maidservant, nor thine ox, nor thine ass, nor any of thy cattle, nor thy stranger that is within thy gates; that thy manservant and thy maidservant may rest as well as thou. \nAnd remember that thou wast a servant in the land of Egypt, and that the LORD thy God brought thee out thence through a mighty hand and by a stretched out arm: therefore the LORD thy God commanded thee to keep the sabbath day. \nHonour thy father and thy mother, as the LORD thy God hath commanded thee; that thy days may be prolonged, and that it may go well with thee, in the land which the LORD thy God giveth thee. \nThou shalt not kill. \nNeither shalt thou commit adultery. \nNeither shalt thou steal. \nNeither shalt thou bear false witness against thy neighbour. \nNeither shalt thou desire thy neighbour's wife, neither shalt thou covet thy neighbour's house, his field, or his manservant, or his maidservant, his ox, or his ass, or any thing that is thy neighbour's. \nThese words the LORD spake unto all your assembly in the mount out of the midst of the fire, of the cloud, and of the thick darkness, with a great voice: and he added no more. And he wrote them in two tables of stone, and delivered them unto me. \nAnd it came to pass, when ye heard the voice out of the midst of the darkness, (for the mountain did burn with fire,) that ye came near unto me, even all the heads of your tribes, and your elders; \nAnd ye said, Behold, the LORD our God hath shewed us his glory and his greatness, and we have heard his voice out of the midst of the fire: we have seen this day that God doth talk with man, and he liveth. \nNow therefore why should we die? for this great fire will consume us: if we hear the voice of the LORD our God any more, then we shall die. \nFor who is there of all flesh, that hath heard the voice of the living God speaking out of the midst of the fire, as we have, and lived? \nGo thou near, and hear all that the LORD our God shall say: and speak thou unto us all that the LORD our God shall speak unto thee; and we will hear it, and do it. \nAnd the LORD heard the voice of your words, when ye spake unto me; and the LORD said unto me, I have heard the voice of the words of this people, which they have spoken unto thee: they have well said all that they have spoken. \nO that there were such an heart in them, that they would fear me, and keep all my commandments always, that it might be well with them, and with their children for ever! \nGo say to them, Get you into your tents again. \nBut as for thee, stand thou here by me, and I will speak unto thee all the commandments, and the statutes, and the judgments, which thou shalt teach them, that they may do them in the land which I give them to possess it. \nYe shall observe to do therefore as the LORD your God hath commanded you: ye shall not turn aside to the right hand or to the left. \nYe shall walk in all the ways which the LORD your God hath commanded you, that ye may live, and that it may be well with you, and that ye may prolong your days in the land which ye shall possess. \nNow these are the commandments, the statutes, and the judgments, which the LORD your God commanded to teach you, that ye might do them in the land whither ye go to possess it: \nThat thou mightest fear the LORD thy God, to keep all his statutes and his commandments, which I command thee, thou, and thy son, and thy son's son, all the days of thy life; and that thy days may be prolonged. \nHear therefore, O Israel, and observe to do it; that it may be well with thee, and that ye may increase mightily, as the LORD God of thy fathers hath promised thee, in the land that floweth with milk and honey. \nHear, O Israel: The LORD our God is one LORD: \nAnd thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might. \nAnd these words, which I command thee this day, shall be in thine heart: \nAnd thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thine house, and when thou walkest by the way, and when thou liest down, and when thou risest up. \nAnd thou shalt bind them for a sign upon thine hand, and they shall be as frontlets between thine eyes. \nAnd thou shalt write them upon the posts of thy house, and on thy gates. \nAnd it shall be, when the LORD thy God shall have brought thee into the land which he sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give thee great and goodly cities, which thou buildedst not, \nAnd houses full of all good things, which thou filledst not, and wells digged, which thou diggedst not, vineyards and olive trees, which thou plantedst not; when thou shalt have eaten and be full; \nThen beware lest thou forget the LORD, which brought thee forth out of the land of Egypt, from the house of bondage. \nThou shalt fear the LORD thy God, and serve him, and shalt swear by his name. \nYe shall not go after other gods, of the gods of the people which are round about you; \n(For the LORD thy God is a jealous God among you) lest the anger of the LORD thy God be kindled against thee, and destroy thee from off the face of the earth. \nYe shall not tempt the LORD your God, as ye tempted him in Massah. \nYe shall diligently keep the commandments of the LORD your God, and his testimonies, and his statutes, which he hath commanded thee. \nAnd thou shalt do that which is right and good in the sight of the LORD: that it may be well with thee, and that thou mayest go in and possess the good land which the LORD sware unto thy fathers. \nTo cast out all thine enemies from before thee, as the LORD hath spoken. \nAnd when thy son asketh thee in time to come, saying, What mean the testimonies, and the statutes, and the judgments, which the LORD our God hath commanded you? \nThen thou shalt say unto thy son, We were Pharaoh's bondmen in Egypt; and the LORD brought us out of Egypt with a mighty hand: \nAnd the LORD shewed signs and wonders, great and sore, upon Egypt, upon Pharaoh, and upon all his household, before our eyes: \nAnd he brought us out from thence, that he might bring us in, to give us the land which he sware unto our fathers. \nAnd the LORD commanded us to do all these statutes, to fear the LORD our God, for our good always, that he might preserve us alive, as it is at this day. \nAnd it shall be our righteousness, if we observe to do all these commandments before the LORD our God, as he hath commanded us. \nWhen the LORD thy God shall bring thee into the land whither thou goest to possess it, and hath cast out many nations before thee, the Hittites, and the Girgashites, and the Amorites, and the Canaanites, and the Perizzites, and the Hivites, and the Jebusites, seven nations greater and mightier than thou; \nAnd when the LORD thy God shall deliver them before thee; thou shalt smite them, and utterly destroy them; thou shalt make no covenant with them, nor shew mercy unto them: \nNeither shalt thou make marriages with them; thy daughter thou shalt not give unto his son, nor his daughter shalt thou take unto thy son. \nFor they will turn away thy son from following me, that they may serve other gods: so will the anger of the LORD be kindled against you, and destroy thee suddenly. \nBut thus shall ye deal with them; ye shall destroy their altars, and break down their images, and cut down their groves, and burn their graven images with fire. \nFor thou art an holy people unto the LORD thy God: the LORD thy God hath chosen thee to be a special people unto himself, above all people that are upon the face of the earth. \nThe LORD did not set his love upon you, nor choose you, because ye were more in number than any people; for ye were the fewest of all people: \nBut because the LORD loved you, and because he would keep the oath which he had sworn unto your fathers, hath the LORD brought you out with a mighty hand, and redeemed you out of the house of bondmen, from the hand of Pharaoh king of Egypt. \nKnow therefore that the LORD thy God, he is God, the faithful God, which keepeth covenant and mercy with them that love him and keep his commandments to a thousand generations; \nAnd repayeth them that hate him to their face, to destroy them: he will not be slack to him that hateth him, he will repay him to his face. \nThou shalt therefore keep the commandments, and the statutes, and the judgments, which I command thee this day, to do them. \nWherefore it shall come to pass, if ye hearken to these judgments, and keep, and do them, that the LORD thy God shall keep unto thee the covenant and the mercy which he sware unto thy fathers: \nAnd he will love thee, and bless thee, and multiply thee: he will also bless the fruit of thy womb, and the fruit of thy land, thy corn, and thy wine, and thine oil, the increase of thy kine, and the flocks of thy sheep, in the land which he sware unto thy fathers to give thee. \nThou shalt be blessed above all people: there shall not be male or female barren among you, or among your cattle. \nAnd the LORD will take away from thee all sickness, and will put none of the evil diseases of Egypt, which thou knowest, upon thee; but will lay them upon all them that hate thee. \nAnd thou shalt consume all the people which the LORD thy God shall deliver thee; thine eye shall have no pity upon them: neither shalt thou serve their gods; for that will be a snare unto thee. \nIf thou shalt say in thine heart, These nations are more than I; how can I dispossess them? \nThou shalt not be afraid of them: but shalt well remember what the LORD thy God did unto Pharaoh, and unto all Egypt; \nThe great temptations which thine eyes saw, and the signs, and the wonders, and the mighty hand, and the stretched out arm, whereby the LORD thy God brought thee out: so shall the LORD thy God do unto all the people of whom thou art afraid. \nMoreover the LORD thy God will send the hornet among them, until they that are left, and hide themselves from thee, be destroyed. \nThou shalt not be affrighted at them: for the LORD thy God is among you, a mighty God and terrible. \nAnd the LORD thy God will put out those nations before thee by little and little: thou mayest not consume them at once, lest the beasts of the field increase upon thee. \nBut the LORD thy God shall deliver them unto thee, and shall destroy them with a mighty destruction, until they be destroyed. \nAnd he shall deliver their kings into thine hand, and thou shalt destroy their name from under heaven: there shall no man be able to stand before thee, until thou have destroyed them. \nThe graven images of their gods shall ye burn with fire: thou shalt not desire the silver or gold that is on them, nor take it unto thee, lest thou be snared therin: for it is an abomination to the LORD thy God. \nNeither shalt thou bring an abomination into thine house, lest thou be a cursed thing like it: but thou shalt utterly detest it, and thou shalt utterly abhor it; for it is a cursed thing. \nAll the commandments which I command thee this day shall ye observe to do, that ye may live, and multiply, and go in and possess the land which the LORD sware unto your fathers. \nAnd thou shalt remember all the way which the LORD thy God led thee these forty years in the wilderness, to humble thee, and to prove thee, to know what was in thine heart, whether thou wouldest keep his commandments, or no. \nAnd he humbled thee, and suffered thee to hunger, and fed thee with manna, which thou knewest not, neither did thy fathers know; that he might make thee know that man doth not live by bread only, but by every word that proceedeth out of the mouth of the LORD doth man live. \nThy raiment waxed not old upon thee, neither did thy foot swell, these forty years. \nThou shalt also consider in thine heart, that, as a man chasteneth his son, so the LORD thy God chasteneth thee. \nTherefore thou shalt keep the commandments of the LORD thy God, to walk in his ways, and to fear him. \nFor the LORD thy God bringeth thee into a good land, a land of brooks of water, of fountains and depths that spring out of valleys and hills; \nA land of wheat, and barley, and vines, and fig trees, and pomegranates; a land of oil olive, and honey; \nA land wherein thou shalt eat bread without scarceness, thou shalt not lack any thing in it; a land whose stones are iron, and out of whose hills thou mayest dig brass. \nWhen thou hast eaten and art full, then thou shalt bless the LORD thy God for the good land which he hath given thee. \nBeware that thou forget not the LORD thy God, in not keeping his commandments, and his judgments, and his statutes, which I command thee this day: \nLest when thou hast eaten and art full, and hast built goodly houses, and dwelt therein; \nAnd when thy herds and thy flocks multiply, and thy silver and thy gold is multiplied, and all that thou hast is multiplied; \nThen thine heart be lifted up, and thou forget the LORD thy God, which brought thee forth out of the land of Egypt, from the house of bondage; \nWho led thee through that great and terrible wilderness, wherein were fiery serpents, and scorpions, and drought, where there was no water; who brought thee forth water out of the rock of flint; \nWho fed thee in the wilderness with manna, which thy fathers knew not, that he might humble thee, and that he might prove thee, to do thee good at thy latter end; \nAnd thou say in thine heart, My power and the might of mine hand hath gotten me this wealth. \nBut thou shalt remember the LORD thy God: for it is he that giveth thee power to get wealth, that he may establish his covenant which he sware unto thy fathers, as it is this day. \nAnd it shall be, if thou do at all forget the LORD thy God, and walk after other gods, and serve them, and worship them, I testify against you this day that ye shall surely perish. \nAs the nations which the LORD destroyeth before your face, so shall ye perish; because ye would not be obedient unto the voice of the LORD your God. \nHear, O Israel: Thou art to pass over Jordan this day, to go in to possess nations greater and mightier than thyself, cities great and fenced up to heaven, \nA people great and tall, the children of the Anakims, whom thou knowest, and of whom thou hast heard say, Who can stand before the children of Anak! \nUnderstand therefore this day, that the LORD thy God is he which goeth over before thee; as a consuming fire he shall destroy them, and he shall bring them down before thy face: so shalt thou drive them out, and destroy them quickly, as the LORD hath said unto thee. \nSpeak not thou in thine heart, after that the LORD thy God hath cast them out from before thee, saying, For my righteousness the LORD hath brought me in to possess this land: but for the wickedness of these nations the LORD doth drive them out from before thee. \nNot for thy righteousness, or for the uprightness of thine heart, dost thou go to possess their land: but for the wickedness of these nations the LORD thy God doth drive them out from before thee, and that he may perform the word which the LORD sware unto thy fathers, Abraham, Isaac, and Jacob. \nUnderstand therefore, that the LORD thy God giveth thee not this good land to possess it for thy righteousness; for thou art a stiffnecked people. \nRemember, and forget not, how thou provokedst the LORD thy God to wrath in the wilderness: from the day that thou didst depart out of the land of Egypt, until ye came unto this place, ye have been rebellious against the LORD. \nAlso in Horeb ye provoked the LORD to wrath, so that the LORD was angry with you to have destroyed you. \nWhen I was gone up into the mount to receive the tables of stone, even the tables of the covenant which the LORD made with you, then I abode in the mount forty days and forty nights, I neither did eat bread nor drink water: \nAnd the LORD delivered unto me two tables of stone written with the finger of God; and on them was written according to all the words, which the LORD spake with you in the mount out of the midst of the fire in the day of the assembly. \nAnd it came to pass at the end of forty days and forty nights, that the LORD gave me the two tables of stone, even the tables of the covenant. \nAnd the LORD said unto me, Arise, get thee down quickly from hence; for thy people which thou hast brought forth out of Egypt have corrupted themselves; they are quickly turned aside out of the way which I commanded them; they have made them a molten image. \nFurthermore the LORD spake unto me, saying, I have seen this people, and, behold, it is a stiffnecked people: \nLet me alone, that I may destroy them, and blot out their name from under heaven: and I will make of thee a nation mightier and greater than they. \nSo I turned and came down from the mount, and the mount burned with fire: and the two tables of the covenant were in my two hands. \nAnd I looked, and, behold, ye had sinned against the LORD your God, and had made you a molten calf: ye had turned aside quickly out of the way which the LORD had commanded you. \nAnd I took the two tables, and cast them out of my two hands, and brake them before your eyes. \nAnd I fell down before the LORD, as at the first, forty days and forty nights: I did neither eat bread, nor drink water, because of all your sins which ye sinned, in doing wickedly in the sight of the LORD, to provoke him to anger. \nFor I was afraid of the anger and hot displeasure, wherewith the LORD was wroth against you to destroy you. But the LORD hearkened unto me at that time also. \nAnd the LORD was very angry with Aaron to have destroyed him: and I prayed for Aaron also the same time. \nAnd I took your sin, the calf which ye had made, and burnt it with fire, and stamped it, and ground it very small, even until it was as small as dust: and I cast the dust thereof into the brook that descended out of the mount. \nAnd at Taberah, and at Massah, and at Kibrothhattaavah, ye provoked the LORD to wrath. \nLikewise when the LORD sent you from Kadeshbarnea, saying, Go up and possess the land which I have given you; then ye rebelled against the commandment of the LORD your God, and ye believed him not, nor hearkened to his voice. \nYe have been rebellious against the LORD from the day that I knew you. \nThus I fell down before the LORD forty days and forty nights, as I fell down at the first; because the LORD had said he would destroy you. \nI prayed therefore unto the LORD, and said, O Lord GOD, destroy not thy people and thine inheritance, which thou hast redeemed through thy greatness, which thou hast brought forth out of Egypt with a mighty hand. \nRemember thy servants, Abraham, Isaac, and Jacob; look not unto the stubbornness of this people, nor to their wickedness, nor to their sin: \nLest the land whence thou broughtest us out say, Because the LORD was not able to bring them into the land which he promised them, and because he hated them, he hath brought them out to slay them in the wilderness. \nYet they are thy people and thine inheritance, which thou broughtest out by thy mighty power and by thy stretched out arm. \nAt that time the LORD said unto me, Hew thee two tables of stone like unto the first, and come up unto me into the mount, and make thee an ark of wood. \nAnd I will write on the tables the words that were in the first tables which thou brakest, and thou shalt put them in the ark. \nAnd I made an ark of shittim wood, and hewed two tables of stone like unto the first, and went up into the mount, having the two tables in mine hand. \nAnd he wrote on the tables, according to the first writing, the ten commandments, which the LORD spake unto you in the mount out of the midst of the fire in the day of the assembly: and the LORD gave them unto me. \nAnd I turned myself and came down from the mount, and put the tables in the ark which I had made; and there they be, as the LORD commanded me. \nAnd the children of Israel took their journey from Beeroth of the children of Jaakan to Mosera: there Aaron died, and there he was buried; and Eleazar his son ministered in the priest's office in his stead. \nFrom thence they journeyed unto Gudgodah; and from Gudgodah to Jotbath, a land of rivers of waters. \nAt that time the LORD separated the tribe of Levi, to bear the ark of the covenant of the LORD, to stand before the LORD to minister unto him, and to bless in his name, unto this day. \nWherefore Levi hath no part nor inheritance with his brethren; the LORD is his inheritance, according as the LORD thy God promised him. \nAnd I stayed in the mount, according to the first time, forty days and forty nights; and the LORD hearkened unto me at that time also, and the LORD would not destroy thee. \nAnd the LORD said unto me, Arise, take thy journey before the people, that they may go in and possess the land, which I sware unto their fathers to give unto them. \nAnd now, Israel, what doth the LORD thy God require of thee, but to fear the LORD thy God, to walk in all his ways, and to love him, and to serve the LORD thy God with all thy heart and with all thy soul, \nTo keep the commandments of the LORD, and his statutes, which I command thee this day for thy good? \nBehold, the heaven and the heaven of heavens is the LORD's thy God, the earth also, with all that therein is. \nOnly the LORD had a delight in thy fathers to love them, and he chose their seed after them, even you above all people, as it is this day. \nCircumcise therefore the foreskin of your heart, and be no more stiffnecked. \nFor the LORD your God is God of gods, and Lord of lords, a great God, a mighty, and a terrible, which regardeth not persons, nor taketh reward: \nHe doth execute the judgment of the fatherless and widow, and loveth the stranger, in giving him food and raiment. \nLove ye therefore the stranger: for ye were strangers in the land of Egypt. \nThou shalt fear the LORD thy God; him shalt thou serve, and to him shalt thou cleave, and swear by his name. \nHe is thy praise, and he is thy God, that hath done for thee these great and terrible things, which thine eyes have seen. \nThy fathers went down into Egypt with threescore and ten persons; and now the LORD thy God hath made thee as the stars of heaven for multitude. \nTherefore thou shalt love the LORD thy God, and keep his charge, and his statutes, and his judgments, and his commandments, alway. \nAnd know ye this day: for I speak not with your children which have not known, and which have not seen the chastisement of the LORD your God, his greatness, his mighty hand, and his stretched out arm, \nAnd his miracles, and his acts, which he did in the midst of Egypt unto Pharaoh the king of Egypt, and unto all his land; \nAnd what he did unto the army of Egypt, unto their horses, and to their chariots; how he made the water of the Red sea to overflow them as they pursued after you, and how the LORD hath destroyed them unto this day; \nAnd what he did unto you in the wilderness, until ye came into this place; \nAnd what he did unto Dathan and Abiram, the sons of Eliab, the son of Reuben: how the earth opened her mouth, and swallowed them up, and their households, and their tents, and all the substance that was in their possession, in the midst of all Israel: \nBut your eyes have seen all the great acts of the LORD which he did. \nTherefore shall ye keep all the commandments which I command you this day, that ye may be strong, and go in and possess the land, whither ye go to possess it; \nAnd that ye may prolong your days in the land, which the LORD sware unto your fathers to give unto them and to their seed, a land that floweth with milk and honey. \nFor the land, whither thou goest in to possess it, is not as the land of Egypt, from whence ye came out, where thou sowedst thy seed, and wateredst it with thy foot, as a garden of herbs: \nBut the land, whither ye go to possess it, is a land of hills and valleys, and drinketh water of the rain of heaven: \nA land which the LORD thy God careth for: the eyes of the LORD thy God are always upon it, from the beginning of the year even unto the end of the year. \nAnd it shall come to pass, if ye shall hearken diligently unto my commandments which I command you this day, to love the LORD your God, and to serve him with all your heart and with all your soul, \nThat I will give you the rain of your land in his due season, the first rain and the latter rain, that thou mayest gather in thy corn, and thy wine, and thine oil. \nAnd I will send grass in thy fields for thy cattle, that thou mayest eat and be full. \nTake heed to yourselves, that your heart be not deceived, and ye turn aside, and serve other gods, and worship them; \nAnd then the LORD's wrath be kindled against you, and he shut up the heaven, that there be no rain, and that the land yield not her fruit; and lest ye perish quickly from off the good land which the LORD giveth you. \nTherefore shall ye lay up these my words in your heart and in your soul, and bind them for a sign upon your hand, that they may be as frontlets between your eyes. \nAnd ye shall teach them your children, speaking of them when thou sittest in thine house, and when thou walkest by the way, when thou liest down, and when thou risest up. \nAnd thou shalt write them upon the door posts of thine house, and upon thy gates: \nThat your days may be multiplied, and the days of your children, in the land which the LORD sware unto your fathers to give them, as the days of heaven upon the earth. \nFor if ye shall diligently keep all these commandments which I command you, to do them, to love the LORD your God, to walk in all his ways, and to cleave unto him; \nThen will the LORD drive out all these nations from before you, and ye shall possess greater nations and mightier than yourselves. \nEvery place whereon the soles of your feet shall tread shall be yours: from the wilderness and Lebanon, from the river, the river Euphrates, even unto the uttermost sea shall your coast be. \nThere shall no man be able to stand before you: for the LORD your God shall lay the fear of you and the dread of you upon all the land that ye shall tread upon, as he hath said unto you. \nBehold, I set before you this day a blessing and a curse; \nA blessing, if ye obey the commandments of the LORD your God, which I command you this day: \nAnd a curse, if ye will not obey the commandments of the LORD your God, but turn aside out of the way which I command you this day, to go after other gods, which ye have not known. \nAnd it shall come to pass, when the LORD thy God hath brought thee in unto the land whither thou goest to possess it, that thou shalt put the blessing upon mount Gerizim, and the curse upon mount Ebal. \nAre they not on the other side Jordan, by the way where the sun goeth down, in the land of the Canaanites, which dwell in the champaign over against Gilgal, beside the plains of Moreh? \nFor ye shall pass over Jordan to go in to possess the land which the LORD your God giveth you, and ye shall possess it, and dwell therein. \nAnd ye shall observe to do all the statutes and judgments which I set before you this day. \nThese are the statutes and judgments, which ye shall observe to do in the land, which the LORD God of thy fathers giveth thee to possess it, all the days that ye live upon the earth. \nYe shall utterly destroy all the places, wherein the nations which ye shall possess served their gods, upon the high mountains, and upon the hills, and under every green tree: \nAnd ye shall overthrow their altars, and break their pillars, and burn their groves with fire; and ye shall hew down the graven images of their gods, and destroy the names of them out of that place. \nYe shall not do so unto the LORD your God. \nBut unto the place which the LORD your God shall choose out of all your tribes to put his name there, even unto his habitation shall ye seek, and thither thou shalt come: \nAnd thither ye shall bring your burnt offerings, and your sacrifices, and your tithes, and heave offerings of your hand, and your vows, and your freewill offerings, and the firstlings of your herds and of your flocks: \nAnd there ye shall eat before the LORD your God, and ye shall rejoice in all that ye put your hand unto, ye and your households, wherein the LORD thy God hath blessed thee. \nYe shall not do after all the things that we do here this day, every man whatsoever is right in his own eyes. \nFor ye are not as yet come to the rest and to the inheritance, which the LORD your God giveth you. \nBut when ye go over Jordan, and dwell in the land which the LORD your God giveth you to inherit, and when he giveth you rest from all your enemies round about, so that ye dwell in safety; \nThen there shall be a place which the LORD your God shall choose to cause his name to dwell there; thither shall ye bring all that I command you; your burnt offerings, and your sacrifices, your tithes, and the heave offering of your hand, and all your choice vows which ye vow unto the LORD: \nAnd ye shall rejoice before the LORD your God, ye, and your sons, and your daughters, and your menservants, and your maidservants, and the Levite that is within your gates; forasmuch as he hath no part nor inheritance with you. \nTake heed to thyself that thou offer not thy burnt offerings in every place that thou seest: \nBut in the place which the LORD shall choose in one of thy tribes, there thou shalt offer thy burnt offerings, and there thou shalt do all that I command thee. \nNotwithstanding thou mayest kill and eat flesh in all thy gates, whatsoever thy soul lusteth after, according to the blessing of the LORD thy God which he hath given thee: the unclean and the clean may eat thereof, as of the roebuck, and as of the hart. \nOnly ye shall not eat the blood; ye shall pour it upon the earth as water. \nThou mayest not eat within thy gates the tithe of thy corn, or of thy wine, or of thy oil, or the firstlings of thy herds or of thy flock, nor any of thy vows which thou vowest, nor thy freewill offerings, or heave offering of thine hand: \nBut thou must eat them before the LORD thy God in the place which the LORD thy God shall choose, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates: and thou shalt rejoice before the LORD thy God in all that thou puttest thine hands unto. \nTake heed to thyself that thou forsake not the Levite as long as thou livest upon the earth. \nWhen the LORD thy God shall enlarge thy border, as he hath promised thee, and thou shalt say, I will eat flesh, because thy soul longeth to eat flesh; thou mayest eat flesh, whatsoever thy soul lusteth after. \nIf the place which the LORD thy God hath chosen to put his name there be too far from thee, then thou shalt kill of thy herd and of thy flock, which the LORD hath given thee, as I have commanded thee, and thou shalt eat in thy gates whatsoever thy soul lusteth after. \nEven as the roebuck and the hart is eaten, so thou shalt eat them: the unclean and the clean shall eat of them alike. \nOnly be sure that thou eat not the blood: for the blood is the life; and thou mayest not eat the life with the flesh. \nThou shalt not eat it; thou shalt pour it upon the earth as water. \nThou shalt not eat it; that it may go well with thee, and with thy children after thee, when thou shalt do that which is right in the sight of the LORD. \nOnly thy holy things which thou hast, and thy vows, thou shalt take, and go unto the place which the LORD shall choose: \nAnd thou shalt offer thy burnt offerings, the flesh and the blood, upon the altar of the LORD thy God: and the blood of thy sacrifices shall be poured out upon the altar of the LORD thy God, and thou shalt eat the flesh. \nObserve and hear all these words which I command thee, that it may go well with thee, and with thy children after thee for ever, when thou doest that which is good and right in the sight of the LORD thy God. \nWhen the LORD thy God shall cut off the nations from before thee, whither thou goest to possess them, and thou succeedest them, and dwellest in their land; \nTake heed to thyself that thou be not snared by following them, after that they be destroyed from before thee; and that thou enquire not after their gods, saying, How did these nations serve their gods? even so will I do likewise. \nThou shalt not do so unto the LORD thy God: for every abomination to the LORD, which he hateth, have they done unto their gods; for even their sons and their daughters they have burnt in the fire to their gods. \nWhat thing soever I command you, observe to do it: thou shalt not add thereto, nor diminish from it. \nIf there arise among you a prophet, or a dreamer of dreams, and giveth thee a sign or a wonder, \nAnd the sign or the wonder come to pass, whereof he spake unto thee, saying, Let us go after other gods, which thou hast not known, and let us serve them; \nThou shalt not hearken unto the words of that prophet, or that dreamer of dreams: for the LORD your God proveth you, to know whether ye love the LORD your God with all your heart and with all your soul. \nYe shall walk after the LORD your God, and fear him, and keep his commandments, and obey his voice, and ye shall serve him, and cleave unto him. \nAnd that prophet, or that dreamer of dreams, shall be put to death; because he hath spoken to turn you away from the LORD your God, which brought you out of the land of Egypt, and redeemed you out of the house of bondage, to thrust thee out of the way which the LORD thy God commanded thee to walk in. So shalt thou put the evil away from the midst of thee. \nIf thy brother, the son of thy mother, or thy son, or thy daughter, or the wife of thy bosom, or thy friend, which is as thine own soul, entice thee secretly, saying, Let us go and serve other gods, which thou hast not known, thou, nor thy fathers; \nNamely, of the gods of the people which are round about you, nigh unto thee, or far off from thee, from the one end of the earth even unto the other end of the earth; \nThou shalt not consent unto him, nor hearken unto him; neither shall thine eye pity him, neither shalt thou spare, neither shalt thou conceal him: \nBut thou shalt surely kill him; thine hand shall be first upon him to put him to death, and afterwards the hand of all the people. \nAnd thou shalt stone him with stones, that he die; because he hath sought to thrust thee away from the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage. \nAnd all Israel shall hear, and fear, and shall do no more any such wickedness as this is among you. \nIf thou shalt hear say in one of thy cities, which the LORD thy God hath given thee to dwell there, saying, \nCertain men, the children of Belial, are gone out from among you, and have withdrawn the inhabitants of their city, saying, Let us go and serve other gods, which ye have not known; \nThen shalt thou enquire, and make search, and ask diligently; and, behold, if it be truth, and the thing certain, that such abomination is wrought among you; \nThou shalt surely smite the inhabitants of that city with the edge of the sword, destroying it utterly, and all that is therein, and the cattle thereof, with the edge of the sword. \nAnd thou shalt gather all the spoil of it into the midst of the street thereof, and shalt burn with fire the city, and all the spoil thereof every whit, for the LORD thy God: and it shall be an heap for ever; it shall not be built again. \nAnd there shall cleave nought of the cursed thing to thine hand: that the LORD may turn from the fierceness of his anger, and shew thee mercy, and have compassion upon thee, and multiply thee, as he hath sworn unto thy fathers; \nWhen thou shalt hearken to the voice of the LORD thy God, to keep all his commandments which I command thee this day, to do that which is right in the eyes of the LORD thy God. \nYe are the children of the LORD your God: ye shall not cut yourselves, nor make any baldness between your eyes for the dead. \nFor thou art an holy people unto the LORD thy God, and the LORD hath chosen thee to be a peculiar people unto himself, above all the nations that are upon the earth. \nThou shalt not eat any abominable thing. \nThese are the beasts which ye shall eat: the ox, the sheep, and the goat, \nThe hart, and the roebuck, and the fallow deer, and the wild goat, and the pygarg, and the wild ox, and the chamois. \nAnd every beast that parteth the hoof, and cleaveth the cleft into two claws, and cheweth the cud among the beasts, that ye shall eat. \nNevertheless these ye shall not eat of them that chew the cud, or of them that divide the cloven hoof; as the camel, and the hare, and the coney: for they chew the cud, but divide not the hoof; therefore they are unclean unto you. \nAnd the swine, because it divideth the hoof, yet cheweth not the cud, it is unclean unto you: ye shall not eat of their flesh, nor touch their dead carcase. \nThese ye shall eat of all that are in the waters: all that have fins and scales shall ye eat: \nAnd whatsoever hath not fins and scales ye may not eat; it is unclean unto you. \nOf all clean birds ye shall eat. \nBut these are they of which ye shall not eat: the eagle, and the ossifrage, and the ospray, \nAnd the glede, and the kite, and the vulture after his kind, \nAnd every raven after his kind, \nAnd the owl, and the night hawk, and the cuckow, and the hawk after his kind, \nThe little owl, and the great owl, and the swan, \nAnd the pelican, and the gier eagle, and the cormorant, \nAnd the stork, and the heron after her kind, and the lapwing, and the bat. \nAnd every creeping thing that flieth is unclean unto you: they shall not be eaten. \nBut of all clean fowls ye may eat. \nYe shall not eat of anything that dieth of itself: thou shalt give it unto the stranger that is in thy gates, that he may eat it; or thou mayest sell it unto an alien: for thou art an holy people unto the LORD thy God. Thou shalt not seethe a kid in his mother's milk. \nThou shalt truly tithe all the increase of thy seed, that the field bringeth forth year by year. \nAnd thou shalt eat before the LORD thy God, in the place which he shall choose to place his name there, the tithe of thy corn, of thy wine, and of thine oil, and the firstlings of thy herds and of thy flocks; that thou mayest learn to fear the LORD thy God always. \nAnd if the way be too long for thee, so that thou art not able to carry it; or if the place be too far from thee, which the LORD thy God shall choose to set his name there, when the LORD thy God hath blessed thee: \nThen shalt thou turn it into money, and bind up the money in thine hand, and shalt go unto the place which the LORD thy God shall choose: \nAnd thou shalt bestow that money for whatsoever thy soul lusteth after, for oxen, or for sheep, or for wine, or for strong drink, or for whatsoever thy soul desireth: and thou shalt eat there before the LORD thy God, and thou shalt rejoice, thou, and thine household, \nAnd the Levite that is within thy gates; thou shalt not forsake him; for he hath no part nor inheritance with thee. \nAt the end of three years thou shalt bring forth all the tithe of thine increase the same year, and shalt lay it up within thy gates: \nAnd the Levite, (because he hath no part nor inheritance with thee,) and the stranger, and the fatherless, and the widow, which are within thy gates, shall come, and shall eat and be satisfied; that the LORD thy God may bless thee in all the work of thine hand which thou doest. \nAt the end of every seven years thou shalt make a release. \nAnd this is the manner of the release: Every creditor that lendeth ought unto his neighbour shall release it; he shall not exact it of his neighbour, or of his brother; because it is called the LORD's release. \nOf a foreigner thou mayest exact it again: but that which is thine with thy brother thine hand shall release; \nSave when there shall be no poor among you; for the LORD shall greatly bless thee in the land which the LORD thy God giveth thee for an inheritance to possess it: \nOnly if thou carefully hearken unto the voice of the LORD thy God, to observe to do all these commandments which I command thee this day. \nFor the LORD thy God blesseth thee, as he promised thee: and thou shalt lend unto many nations, but thou shalt not borrow; and thou shalt reign over many nations, but they shall not reign over thee. \nIf there be among you a poor man of one of thy brethren within any of thy gates in thy land which the LORD thy God giveth thee, thou shalt not harden thine heart, nor shut thine hand from thy poor brother: \nBut thou shalt open thine hand wide unto him, and shalt surely lend him sufficient for his need, in that which he wanteth. \nBeware that there be not a thought in thy wicked heart, saying, The seventh year, the year of release, is at hand; and thine eye be evil against thy poor brother, and thou givest him nought; and he cry unto the LORD against thee, and it be sin unto thee. \nThou shalt surely give him, and thine heart shall not be grieved when thou givest unto him: because that for this thing the LORD thy God shall bless thee in all thy works, and in all that thou puttest thine hand unto. \nFor the poor shall never cease out of the land: therefore I command thee, saying, Thou shalt open thine hand wide unto thy brother, to thy poor, and to thy needy, in thy land. \nAnd if thy brother, an Hebrew man, or an Hebrew woman, be sold unto thee, and serve thee six years; then in the seventh year thou shalt let him go free from thee. \nAnd when thou sendest him out free from thee, thou shalt not let him go away empty: \nThou shalt furnish him liberally out of thy flock, and out of thy floor, and out of thy winepress: of that wherewith the LORD thy God hath blessed thee thou shalt give unto him. \nAnd thou shalt remember that thou wast a bondman in the land of Egypt, and the LORD thy God redeemed thee: therefore I command thee this thing to day. \nAnd it shall be, if he say unto thee, I will not go away from thee; because he loveth thee and thine house, because he is well with thee; \nThen thou shalt take an aul, and thrust it through his ear unto the door, and he shall be thy servant for ever. And also unto thy maidservant thou shalt do likewise. \nIt shall not seem hard unto thee, when thou sendest him away free from thee; for he hath been worth a double hired servant to thee, in serving thee six years: and the LORD thy God shall bless thee in all that thou doest. \nAll the firstling males that come of thy herd and of thy flock thou shalt sanctify unto the LORD thy God: thou shalt do no work with the firstling of thy bullock, nor shear the firstling of thy sheep. \nThou shalt eat it before the LORD thy God year by year in the place which the LORD shall choose, thou and thy household. \nAnd if there be any blemish therein, as if it be lame, or blind, or have any ill blemish, thou shalt not sacrifice it unto the LORD thy God. \nThou shalt eat it within thy gates: the unclean and the clean person shall eat it alike, as the roebuck, and as the hart. \nOnly thou shalt not eat the blood thereof; thou shalt pour it upon the ground as water. \nObserve the month of Abib, and keep the passover unto the LORD thy God: for in the month of Abib the LORD thy God brought thee forth out of Egypt by night. \nThou shalt therefore sacrifice the passover unto the LORD thy God, of the flock and the herd, in the place which the LORD shall choose to place his name there. \nThou shalt eat no leavened bread with it; seven days shalt thou eat unleavened bread therewith, even the bread of affliction; for thou camest forth out of the land of Egypt in haste: that thou mayest remember the day when thou camest forth out of the land of Egypt all the days of thy life. \nAnd there shall be no leavened bread seen with thee in all thy coast seven days; neither shall there any thing of the flesh, which thou sacrificedst the first day at even, remain all night until the morning. \nThou mayest not sacrifice the passover within any of thy gates, which the LORD thy God giveth thee: \nBut at the place which the LORD thy God shall choose to place his name in, there thou shalt sacrifice the passover at even, at the going down of the sun, at the season that thou camest forth out of Egypt. \nAnd thou shalt roast and eat it in the place which the LORD thy God shall choose: and thou shalt turn in the morning, and go unto thy tents. \nSix days thou shalt eat unleavened bread: and on the seventh day shall be a solemn assembly to the LORD thy God: thou shalt do no work therein. \nSeven weeks shalt thou number unto thee: begin to number the seven weeks from such time as thou beginnest to put the sickle to the corn. \nAnd thou shalt keep the feast of weeks unto the LORD thy God with a tribute of a freewill offering of thine hand, which thou shalt give unto the LORD thy God, according as the LORD thy God hath blessed thee: \nAnd thou shalt rejoice before the LORD thy God, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates, and the stranger, and the fatherless, and the widow, that are among you, in the place which the LORD thy God hath chosen to place his name there. \nAnd thou shalt remember that thou wast a bondman in Egypt: and thou shalt observe and do these statutes. \nThou shalt observe the feast of tabernacles seven days, after that thou hast gathered in thy corn and thy wine: \nAnd thou shalt rejoice in thy feast, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite, the stranger, and the fatherless, and the widow, that are within thy gates. \nSeven days shalt thou keep a solemn feast unto the LORD thy God in the place which the LORD shall choose: because the LORD thy God shall bless thee in all thine increase, and in all the works of thine hands, therefore thou shalt surely rejoice. \nThree times in a year shall all thy males appear before the LORD thy God in the place which he shall choose; in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles: and they shall not appear before the LORD empty: \nEvery man shall give as he is able, according to the blessing of the LORD thy God which he hath given thee. \nJudges and officers shalt thou make thee in all thy gates, which the LORD thy God giveth thee, throughout thy tribes: and they shall judge the people with just judgment. \nThou shalt not wrest judgment; thou shalt not respect persons, neither take a gift: for a gift doth blind the eyes of the wise, and pervert the words of the righteous. \nThat which is altogether just shalt thou follow, that thou mayest live, and inherit the land which the LORD thy God giveth thee. \nThou shalt not plant thee a grove of any trees near unto the altar of the LORD thy God, which thou shalt make thee. \nNeither shalt thou set thee up any image; which the LORD thy God hateth. \nThou shalt not sacrifice unto the LORD thy God any bullock, or sheep, wherein is blemish, or any evilfavouredness: for that is an abomination unto the LORD thy God. \nIf there be found among you, within any of thy gates which the LORD thy God giveth thee, man or woman, that hath wrought wickedness in the sight of the LORD thy God, in transgressing his covenant, \nAnd hath gone and served other gods, and worshipped them, either the sun, or moon, or any of the host of heaven, which I have not commanded; \nAnd it be told thee, and thou hast heard of it, and enquired diligently, and, behold, it be true, and the thing certain, that such abomination is wrought in Israel: \nThen shalt thou bring forth that man or that woman, which have committed that wicked thing, unto thy gates, even that man or that woman, and shalt stone them with stones, till they die. \nAt the mouth of two witnesses, or three witnesses, shall he that is worthy of death be put to death; but at the mouth of one witness he shall not be put to death. \nThe hands of the witnesses shall be first upon him to put him to death, and afterward the hands of all the people. So thou shalt put the evil away from among you. \nIf there arise a matter too hard for thee in judgment, between blood and blood, between plea and plea, and between stroke and stroke, being matters of controversy within thy gates: then shalt thou arise, and get thee up into the place which the LORD thy God shall choose; \nAnd thou shalt come unto the priests the Levites, and unto the judge that shall be in those days, and enquire; and they shall shew thee the sentence of judgment: \nAnd thou shalt do according to the sentence, which they of that place which the LORD shall choose shall shew thee; and thou shalt observe to do according to all that they inform thee: \nAccording to the sentence of the law which they shall teach thee, and according to the judgment which they shall tell thee, thou shalt do: thou shalt not decline from the sentence which they shall shew thee, to the right hand, nor to the left. \nAnd the man that will do presumptuously, and will not hearken unto the priest that standeth to minister there before the LORD thy God, or unto the judge, even that man shall die: and thou shalt put away the evil from Israel. \nAnd all the people shall hear, and fear, and do no more presumptuously. \nWhen thou art come unto the land which the LORD thy God giveth thee, and shalt possess it, and shalt dwell therein, and shalt say, I will set a king over me, like as all the nations that are about me; \nThou shalt in any wise set him king over thee, whom the LORD thy God shall choose: one from among thy brethren shalt thou set king over thee: thou mayest not set a stranger over thee, which is not thy brother. \nBut he shall not multiply horses to himself, nor cause the people to return to Egypt, to the end that he should multiply horses: forasmuch as the LORD hath said unto you, Ye shall henceforth return no more that way. \nNeither shall he multiply wives to himself, that his heart turn not away: neither shall he greatly multiply to himself silver and gold. \nAnd it shall be, when he sitteth upon the throne of his kingdom, that he shall write him a copy of this law in a book out of that which is before the priests the Levites: \nAnd it shall be with him, and he shall read therein all the days of his life: that he may learn to fear the LORD his God, to keep all the words of this law and these statutes, to do them: \nThat his heart be not lifted up above his brethren, and that he turn not aside from the commandment, to the right hand, or to the left: to the end that he may prolong his days in his kingdom, he, and his children, in the midst of Israel. \nThe priests the Levites, and all the tribe of Levi, shall have no part nor inheritance with Israel: they shall eat the offerings of the LORD made by fire, and his inheritance. \nTherefore shall they have no inheritance among their brethren: the LORD is their inheritance, as he hath said unto them. \nAnd this shall be the priest's due from the people, from them that offer a sacrifice, whether it be ox or sheep; and they shall give unto the priest the shoulder, and the two cheeks, and the maw. \nThe firstfruit also of thy corn, of thy wine, and of thine oil, and the first of the fleece of thy sheep, shalt thou give him. \nFor the LORD thy God hath chosen him out of all thy tribes, to stand to minister in the name of the LORD, him and his sons for ever. \nAnd if a Levite come from any of thy gates out of all Israel, where he sojourned, and come with all the desire of his mind unto the place which the LORD shall choose; \nThen he shall minister in the name of the LORD his God, as all his brethren the Levites do, which stand there before the LORD. \nThey shall have like portions to eat, beside that which cometh of the sale of his patrimony. \nWhen thou art come into the land which the LORD thy God giveth thee, thou shalt not learn to do after the abominations of those nations. \nThere shall not be found among you any one that maketh his son or his daughter to pass through the fire, or that useth divination, or an observer of times, or an enchanter, or a witch. \nOr a charmer, or a consulter with familiar spirits, or a wizard, or a necromancer. \nFor all that do these things are an abomination unto the LORD: and because of these abominations the LORD thy God doth drive them out from before thee. \nThou shalt be perfect with the LORD thy God. \nFor these nations, which thou shalt possess, hearkened unto observers of times, and unto diviners: but as for thee, the LORD thy God hath not suffered thee so to do. \nThe LORD thy God will raise up unto thee a Prophet from the midst of thee, of thy brethren, like unto me; unto him ye shall hearken; \nAccording to all that thou desiredst of the LORD thy God in Horeb in the day of the assembly, saying, Let me not hear again the voice of the LORD my God, neither let me see this great fire any more, that I die not. \nAnd the LORD said unto me, They have well spoken that which they have spoken. \nI will raise them up a Prophet from among their brethren, like unto thee, and will put my words in his mouth; and he shall speak unto them all that I shall command him. \nAnd it shall come to pass, that whosoever will not hearken unto my words which he shall speak in my name, I will require it of him. \nBut the prophet, which shall presume to speak a word in my name, which I have not commanded him to speak, or that shall speak in the name of other gods, even that prophet shall die. \nAnd if thou say in thine heart, How shall we know the word which the LORD hath not spoken? \nWhen a prophet speaketh in the name of the LORD, if the thing follow not, nor come to pass, that is the thing which the LORD hath not spoken, but the prophet hath spoken it presumptuously: thou shalt not be afraid of him. \nWhen the LORD thy God hath cut off the nations, whose land the LORD thy God giveth thee, and thou succeedest them, and dwellest in their cities, and in their houses; \nThou shalt separate three cities for thee in the midst of thy land, which the LORD thy God giveth thee to possess it. \nThou shalt prepare thee a way, and divide the coasts of thy land, which the LORD thy God giveth thee to inherit, into three parts, that every slayer may flee thither. \nAnd this is the case of the slayer, which shall flee thither, that he may live: Whoso killeth his neighbour ignorantly, whom he hated not in time past; \nAs when a man goeth into the wood with his neighbour to hew wood, and his hand fetcheth a stroke with the axe to cut down the tree, and the head slippeth from the helve, and lighteth upon his neighbour, that he die; he shall flee unto one of those cities, and live: \nLest the avenger of the blood pursue the slayer, while his heart is hot, and overtake him, because the way is long, and slay him; whereas he was not worthy of death, inasmuch as he hated him not in time past. \nWherefore I command thee, saying, Thou shalt separate three cities for thee. \nAnd if the LORD thy God enlarge thy coast, as he hath sworn unto thy fathers, and give thee all the land which he promised to give unto thy fathers; \nIf thou shalt keep all these commandments to do them, which I command thee this day, to love the LORD thy God, and to walk ever in his ways; then shalt thou add three cities more for thee, beside these three: \nThat innocent blood be not shed in thy land, which the LORD thy God giveth thee for an inheritance, and so blood be upon thee. \nBut if any man hate his neighbour, and lie in wait for him, and rise up against him, and smite him mortally that he die, and fleeth into one of these cities: \nThen the elders of his city shall send and fetch him thence, and deliver him into the hand of the avenger of blood, that he may die. \nThine eye shall not pity him, but thou shalt put away the guilt of innocent blood from Israel, that it may go well with thee. \nThou shalt not remove thy neighbour's landmark, which they of old time have set in thine inheritance, which thou shalt inherit in the land that the LORD thy God giveth thee to possess it. \nOne witness shall not rise up against a man for any iniquity, or for any sin, in any sin that he sinneth: at the mouth of two witnesses, or at the mouth of three witnesses, shall the matter be established. \nIf a false witness rise up against any man to testify against him that which is wrong; \nThen both the men, between whom the controversy is, shall stand before the LORD, before the priests and the judges, which shall be in those days; \nAnd the judges shall make diligent inquisition: and, behold, if the witness be a false witness, and hath testified falsely against his brother; \nThen shall ye do unto him, as he had thought to have done unto his brother: so shalt thou put the evil away from among you. \nAnd those which remain shall hear, and fear, and shall henceforth commit no more any such evil among you. \nAnd thine eye shall not pity; but life shall go for life, eye for eye, tooth for tooth, hand for hand, foot for foot. \nWhen thou goest out to battle against thine enemies, and seest horses, and chariots, and a people more than thou, be not afraid of them: for the LORD thy God is with thee, which brought thee up out of the land of Egypt. \nAnd it shall be, when ye are come nigh unto the battle, that the priest shall approach and speak unto the people, \nAnd shall say unto them, Hear, O Israel, ye approach this day unto battle against your enemies: let not your hearts faint, fear not, and do not tremble, neither be ye terrified because of them; \nFor the LORD your God is he that goeth with you, to fight for you against your enemies, to save you. \nAnd the officers shall speak unto the people, saying, What man is there that hath built a new house, and hath not dedicated it? let him go and return to his house, lest he die in the battle, and another man dedicate it. \nAnd what man is he that hath planted a vineyard, and hath not yet eaten of it? let him also go and return unto his house, lest he die in the battle, and another man eat of it. \nAnd what man is there that hath betrothed a wife, and hath not taken her? let him go and return unto his house, lest he die in the battle, and another man take her. \nAnd the officers shall speak further unto the people, and they shall say, What man is there that is fearful and fainthearted? let him go and return unto his house, lest his brethren's heart faint as well as his heart. \nAnd it shall be, when the officers have made an end of speaking unto the people that they shall make captains of the armies to lead the people. \nWhen thou comest nigh unto a city to fight against it, then proclaim peace unto it. \nAnd it shall be, if it make thee answer of peace, and open unto thee, then it shall be, that all the people that is found therein shall be tributaries unto thee, and they shall serve thee. \nAnd if it will make no peace with thee, but will make war against thee, then thou shalt besiege it: \nAnd when the LORD thy God hath delivered it into thine hands, thou shalt smite every male thereof with the edge of the sword: \nBut the women, and the little ones, and the cattle, and all that is in the city, even all the spoil thereof, shalt thou take unto thyself; and thou shalt eat the spoil of thine enemies, which the LORD thy God hath given thee. \nThus shalt thou do unto all the cities which are very far off from thee, which are not of the cities of these nations. \nBut of the cities of these people, which the LORD thy God doth give thee for an inheritance, thou shalt save alive nothing that breatheth: \nBut thou shalt utterly destroy them; namely, the Hittites, and the Amorites, the Canaanites, and the Perizzites, the Hivites, and the Jebusites; as the LORD thy God hath commanded thee: \nThat they teach you not to do after all their abominations, which they have done unto their gods; so should ye sin against the LORD your God. \nWhen thou shalt besiege a city a long time, in making war against it to take it, thou shalt not destroy the trees thereof by forcing an axe against them: for thou mayest eat of them, and thou shalt not cut them down (for the tree of the field is man's life) to employ them in the siege: \nOnly the trees which thou knowest that they be not trees for meat, thou shalt destroy and cut them down; and thou shalt build bulwarks against the city that maketh war with thee, until it be subdued. \nIf one be found slain in the land which the LORD thy God giveth thee to possess it, lying in the field, and it be not known who hath slain him: \nThen thy elders and thy judges shall come forth, and they shall measure unto the cities which are round about him that is slain: \nAnd it shall be, that the city which is next unto the slain man, even the elders of that city shall take an heifer, which hath not been wrought with, and which hath not drawn in the yoke; \nAnd the elders of that city shall bring down the heifer unto a rough valley, which is neither eared nor sown, and shall strike off the heifer's neck there in the valley: \nAnd the priests the sons of Levi shall come near; for them the LORD thy God hath chosen to minister unto him, and to bless in the name of the LORD; and by their word shall every controversy and every stroke be tried: \nAnd all the elders of that city, that are next unto the slain man, shall wash their hands over the heifer that is beheaded in the valley: \nAnd they shall answer and say, Our hands have not shed this blood, neither have our eyes seen it. \nBe merciful, O LORD, unto thy people Israel, whom thou hast redeemed, and lay not innocent blood unto thy people of Israel's charge. And the blood shall be forgiven them. \nSo shalt thou put away the guilt of innocent blood from among you, when thou shalt do that which is right in the sight of the LORD. \nWhen thou goest forth to war against thine enemies, and the LORD thy God hath delivered them into thine hands, and thou hast taken them captive, \nAnd seest among the captives a beautiful woman, and hast a desire unto her, that thou wouldest have her to thy wife; \nThen thou shalt bring her home to thine house, and she shall shave her head, and pare her nails; \nAnd she shall put the raiment of her captivity from off her, and shall remain in thine house, and bewail her father and her mother a full month: and after that thou shalt go in unto her, and be her husband, and she shall be thy wife. \nAnd it shall be, if thou have no delight in her, then thou shalt let her go whither she will; but thou shalt not sell her at all for money, thou shalt not make merchandise of her, because thou hast humbled her. \nIf a man have two wives, one beloved, and another hated, and they have born him children, both the beloved and the hated; and if the firstborn son be hers that was hated: \nThen it shall be, when he maketh his sons to inherit that which he hath, that he may not make the son of the beloved firstborn before the son of the hated, which is indeed the firstborn: \nBut he shall acknowledge the son of the hated for the firstborn, by giving him a double portion of all that he hath: for he is the beginning of his strength; the right of the firstborn is his. \nIf a man have a stubborn and rebellious son, which will not obey the voice of his father, or the voice of his mother, and that, when they have chastened him, will not hearken unto them: \nThen shall his father and his mother lay hold on him, and bring him out unto the elders of his city, and unto the gate of his place; \nAnd they shall say unto the elders of his city, This our son is stubborn and rebellious, he will not obey our voice; he is a glutton, and a drunkard. \nAnd all the men of his city shall stone him with stones, that he die: so shalt thou put evil away from among you; and all Israel shall hear, and fear. \nAnd if a man have committed a sin worthy of death, and he be to be put to death, and thou hang him on a tree: \nHis body shall not remain all night upon the tree, but thou shalt in any wise bury him that day; (for he that is hanged is accursed of God;) that thy land be not defiled, which the LORD thy God giveth thee for an inheritance. \nThou shalt not see thy brother's ox or his sheep go astray, and hide thyself from them: thou shalt in any case bring them again unto thy brother. \nAnd if thy brother be not nigh unto thee, or if thou know him not, then thou shalt bring it unto thine own house, and it shall be with thee until thy brother seek after it, and thou shalt restore it to him again. \nIn like manner shalt thou do with his ass; and so shalt thou do with his raiment; and with all lost thing of thy brother's, which he hath lost, and thou hast found, shalt thou do likewise: thou mayest not hide thyself. \nThou shalt not see thy brother's ass or his ox fall down by the way, and hide thyself from them: thou shalt surely help him to lift them up again. \nThe woman shall not wear that which pertaineth unto a man, neither shall a man put on a woman's garment: for all that do so are abomination unto the LORD thy God. \nIf a bird's nest chance to be before thee in the way in any tree, or on the ground, whether they be young ones, or eggs, and the dam sitting upon the young, or upon the eggs, thou shalt not take the dam with the young: \nBut thou shalt in any wise let the dam go, and take the young to thee; that it may be well with thee, and that thou mayest prolong thy days. \nWhen thou buildest a new house, then thou shalt make a battlement for thy roof, that thou bring not blood upon thine house, if any man fall from thence. \nThou shalt not sow thy vineyard with divers seeds: lest the fruit of thy seed which thou hast sown, and the fruit of thy vineyard, be defiled. \nThou shalt not plow with an ox and an ass together. \nThou shalt not wear a garment of divers sorts, as of woollen and linen together. \nThou shalt make thee fringes upon the four quarters of thy vesture, wherewith thou coverest thyself. \nIf any man take a wife, and go in unto her, and hate her, \nAnd give occasions of speech against her, and bring up an evil name upon her, and say, I took this woman, and when I came to her, I found her not a maid: \nThen shall the father of the damsel, and her mother, take and bring forth the tokens of the damsel's virginity unto the elders of the city in the gate: \nAnd the damsel's father shall say unto the elders, I gave my daughter unto this man to wife, and he hateth her; \nAnd, lo, he hath given occasions of speech against her, saying, I found not thy daughter a maid; and yet these are the tokens of my daughter's virginity. And they shall spread the cloth before the elders of the city. \nAnd the elders of that city shall take that man and chastise him; \nAnd they shall amerce him in an hundred shekels of silver, and give them unto the father of the damsel, because he hath brought up an evil name upon a virgin of Israel: and she shall be his wife; he may not put her away all his days. \nBut if this thing be true, and the tokens of virginity be not found for the damsel: \nThen they shall bring out the damsel to the door of her father's house, and the men of her city shall stone her with stones that she die: because she hath wrought folly in Israel, to play the whore in her father's house: so shalt thou put evil away from among you. \nIf a man be found lying with a woman married to an husband, then they shall both of them die, both the man that lay with the woman, and the woman: so shalt thou put away evil from Israel. \nIf a damsel that is a virgin be betrothed unto an husband, and a man find her in the city, and lie with her; \nThen ye shall bring them both out unto the gate of that city, and ye shall stone them with stones that they die; the damsel, because she cried not, being in the city; and the man, because he hath humbled his neighbour's wife: so thou shalt put away evil from among you. \nBut if a man find a betrothed damsel in the field, and the man force her, and lie with her: then the man only that lay with her shall die. \nBut unto the damsel thou shalt do nothing; there is in the damsel no sin worthy of death: for as when a man riseth against his neighbour, and slayeth him, even so is this matter: \nFor he found her in the field, and the betrothed damsel cried, and there was none to save her. \nIf a man find a damsel that is a virgin, which is not betrothed, and lay hold on her, and lie with her, and they be found; \nThen the man that lay with her shall give unto the damsel's father fifty shekels of silver, and she shall be his wife; because he hath humbled her, he may not put her away all his days. \nA man shall not take his father's wife, nor discover his father's skirt. \nHe that is wounded in the stones, or hath his privy member cut off, shall not enter into the congregation of the LORD. \nA bastard shall not enter into the congregation of the LORD; even to his tenth generation shall he not enter into the congregation of the LORD. \nAn Ammonite or Moabite shall not enter into the congregation of the LORD; even to their tenth generation shall they not enter into the congregation of the LORD for ever: \nBecause they met you not with bread and with water in the way, when ye came forth out of Egypt; and because they hired against thee Balaam the son of Beor of Pethor of Mesopotamia, to curse thee. \nNevertheless the LORD thy God would not hearken unto Balaam; but the LORD thy God turned the curse into a blessing unto thee, because the LORD thy God loved thee. \nThou shalt not seek their peace nor their prosperity all thy days for ever. \nThou shalt not abhor an Edomite; for he is thy brother: thou shalt not abhor an Egyptian; because thou wast a stranger in his land. \nThe children that are begotten of them shall enter into the congregation of the LORD in their third generation. \nWhen the host goeth forth against thine enemies, then keep thee from every wicked thing. \nIf there be among you any man, that is not clean by reason of uncleanness that chanceth him by night, then shall he go abroad out of the camp, he shall not come within the camp: \nBut it shall be, when evening cometh on, he shall wash himself with water: and when the sun is down, he shall come into the camp again. \nThou shalt have a place also without the camp, whither thou shalt go forth abroad: \nAnd thou shalt have a paddle upon thy weapon; and it shall be, when thou wilt ease thyself abroad, thou shalt dig therewith, and shalt turn back and cover that which cometh from thee: \nFor the LORD thy God walketh in the midst of thy camp, to deliver thee, and to give up thine enemies before thee; therefore shall thy camp be holy: that he see no unclean thing in thee, and turn away from thee. \nThou shalt not deliver unto his master the servant which is escaped from his master unto thee: \nHe shall dwell with thee, even among you, in that place which he shall choose in one of thy gates, where it liketh him best: thou shalt not oppress him. \nThere shall be no whore of the daughters of Israel, nor a sodomite of the sons of Israel. \nThou shalt not bring the hire of a whore, or the price of a dog, into the house of the LORD thy God for any vow: for even both these are abomination unto the LORD thy God. \nThou shalt not lend upon usury to thy brother; usury of money, usury of victuals, usury of any thing that is lent upon usury: \nUnto a stranger thou mayest lend upon usury; but unto thy brother thou shalt not lend upon usury: that the LORD thy God may bless thee in all that thou settest thine hand to in the land whither thou goest to possess it. \nWhen thou shalt vow a vow unto the LORD thy God, thou shalt not slack to pay it: for the LORD thy God will surely require it of thee; and it would be sin in thee. \nBut if thou shalt forbear to vow, it shall be no sin in thee. \nThat which is gone out of thy lips thou shalt keep and perform; even a freewill offering, according as thou hast vowed unto the LORD thy God, which thou hast promised with thy mouth. \nWhen thou comest into thy neighbour's vineyard, then thou mayest eat grapes thy fill at thine own pleasure; but thou shalt not put any in thy vessel. \nWhen thou comest into the standing corn of thy neighbour, then thou mayest pluck the ears with thine hand; but thou shalt not move a sickle unto thy neighbour's standing corn. \nWhen a man hath taken a wife, and married her, and it come to pass that she find no favour in his eyes, because he hath found some uncleanness in her: then let him write her a bill of divorcement, and give it in her hand, and send her out of his house. \nAnd when she is departed out of his house, she may go and be another man's wife. \nAnd if the latter husband hate her, and write her a bill of divorcement, and giveth it in her hand, and sendeth her out of his house; or if the latter husband die, which took her to be his wife; \nHer former husband, which sent her away, may not take her again to be his wife, after that she is defiled; for that is abomination before the LORD: and thou shalt not cause the land to sin, which the LORD thy God giveth thee for an inheritance. \nWhen a man hath taken a new wife, he shall not go out to war, neither shall he be charged with any business: but he shall be free at home one year, and shall cheer up his wife which he hath taken. \nNo man shall take the nether or the upper millstone to pledge: for he taketh a man's life to pledge. \nIf a man be found stealing any of his brethren of the children of Israel, and maketh merchandise of him, or selleth him; then that thief shall die; and thou shalt put evil away from among you. \nTake heed in the plague of leprosy, that thou observe diligently, and do according to all that the priests the Levites shall teach you: as I commanded them, so ye shall observe to do. \nRemember what the LORD thy God did unto Miriam by the way, after that ye were come forth out of Egypt. \nWhen thou dost lend thy brother any thing, thou shalt not go into his house to fetch his pledge. \nThou shalt stand abroad, and the man to whom thou dost lend shall bring out the pledge abroad unto thee. \nAnd if the man be poor, thou shalt not sleep with his pledge: \nIn any case thou shalt deliver him the pledge again when the sun goeth down, that he may sleep in his own raiment, and bless thee: and it shall be righteousness unto thee before the LORD thy God. \nThou shalt not oppress an hired servant that is poor and needy, whether he be of thy brethren, or of thy strangers that are in thy land within thy gates: \nAt his day thou shalt give him his hire, neither shall the sun go down upon it; for he is poor, and setteth his heart upon it: lest he cry against thee unto the LORD, and it be sin unto thee. \nThe fathers shall not be put to death for the children, neither shall the children be put to death for the fathers: every man shall be put to death for his own sin. \nThou shalt not pervert the judgment of the stranger, nor of the fatherless; nor take a widow's raiment to pledge: \nBut thou shalt remember that thou wast a bondman in Egypt, and the LORD thy God redeemed thee thence: therefore I command thee to do this thing. \nWhen thou cuttest down thine harvest in thy field, and hast forgot a sheaf in the field, thou shalt not go again to fetch it: it shall be for the stranger, for the fatherless, and for the widow: that the LORD thy God may bless thee in all the work of thine hands. \nWhen thou beatest thine olive tree, thou shalt not go over the boughs again: it shall be for the stranger, for the fatherless, and for the widow. \nWhen thou gatherest the grapes of thy vineyard, thou shalt not glean it afterward: it shall be for the stranger, for the fatherless, and for the widow. \nAnd thou shalt remember that thou wast a bondman in the land of Egypt: therefore I command thee to do this thing. \nIf there be a controversy between men, and they come unto judgment, that the judges may judge them; then they shall justify the righteous, and condemn the wicked. \nAnd it shall be, if the wicked man be worthy to be beaten, that the judge shall cause him to lie down, and to be beaten before his face, according to his fault, by a certain number. \nForty stripes he may give him, and not exceed: lest, if he should exceed, and beat him above these with many stripes, then thy brother should seem vile unto thee. \nThou shalt not muzzle the ox when he treadeth out the corn. \nIf brethren dwell together, and one of them die, and have no child, the wife of the dead shall not marry without unto a stranger: her husband's brother shall go in unto her, and take her to him to wife, and perform the duty of an husband's brother unto her. \nAnd it shall be, that the firstborn which she beareth shall succeed in the name of his brother which is dead, that his name be not put out of Israel. \nAnd if the man like not to take his brother's wife, then let his brother's wife go up to the gate unto the elders, and say, My husband's brother refuseth to raise up unto his brother a name in Israel, he will not perform the duty of my husband's brother. \nThen the elders of his city shall call him, and speak unto him: and if he stand to it, and say, I like not to take her; \nThen shall his brother's wife come unto him in the presence of the elders, and loose his shoe from off his foot, and spit in his face, and shall answer and say, So shall it be done unto that man that will not build up his brother's house. \nAnd his name shall be called in Israel, The house of him that hath his shoe loosed. \nWhen men strive together one with another, and the wife of the one draweth near for to deliver her husband out of the hand of him that smiteth him, and putteth forth her hand, and taketh him by the secrets: \nThen thou shalt cut off her hand, thine eye shall not pity her. \nThou shalt not have in thy bag divers weights, a great and a small. \nThou shalt not have in thine house divers measures, a great and a small. \nBut thou shalt have a perfect and just weight, a perfect and just measure shalt thou have: that thy days may be lengthened in the land which the LORD thy God giveth thee. \nFor all that do such things, and all that do unrighteously, are an abomination unto the LORD thy God. \nRemember what Amalek did unto thee by the way, when ye were come forth out of Egypt; \nHow he met thee by the way, and smote the hindmost of thee, even all that were feeble behind thee, when thou wast faint and weary; and he feared not God. \nTherefore it shall be, when the LORD thy God hath given thee rest from all thine enemies round about, in the land which the LORD thy God giveth thee for an inheritance to possess it, that thou shalt blot out the remembrance of Amalek from under heaven; thou shalt not forget it. \nAnd it shall be, when thou art come in unto the land which the LORD thy God giveth thee for an inheritance, and possessest it, and dwellest therein; \nThat thou shalt take of the first of all the fruit of the earth, which thou shalt bring of thy land that the LORD thy God giveth thee, and shalt put it in a basket, and shalt go unto the place which the LORD thy God shall choose to place his name there. \nAnd thou shalt go unto the priest that shall be in those days, and say unto him, I profess this day unto the LORD thy God, that I am come unto the country which the LORD sware unto our fathers for to give us. \nAnd the priest shall take the basket out of thine hand, and set it down before the altar of the LORD thy God. \nAnd thou shalt speak and say before the LORD thy God, A Syrian ready to perish was my father, and he went down into Egypt, and sojourned there with a few, and became there a nation, great, mighty, and populous: \nAnd the Egyptians evil entreated us, and afflicted us, and laid upon us hard bondage: \nAnd when we cried unto the LORD God of our fathers, the LORD heard our voice, and looked on our affliction, and our labour, and our oppression: \nAnd the LORD brought us forth out of Egypt with a mighty hand, and with an outstretched arm, and with great terribleness, and with signs, and with wonders: \nAnd he hath brought us into this place, and hath given us this land, even a land that floweth with milk and honey. \nAnd now, behold, I have brought the firstfruits of the land, which thou, O LORD, hast given me. And thou shalt set it before the LORD thy God, and worship before the LORD thy God: \nAnd thou shalt rejoice in every good thing which the LORD thy God hath given unto thee, and unto thine house, thou, and the Levite, and the stranger that is among you. \nWhen thou hast made an end of tithing all the tithes of thine increase the third year, which is the year of tithing, and hast given it unto the Levite, the stranger, the fatherless, and the widow, that they may eat within thy gates, and be filled; \nThen thou shalt say before the LORD thy God, I have brought away the hallowed things out of mine house, and also have given them unto the Levite, and unto the stranger, to the fatherless, and to the widow, according to all thy commandments which thou hast commanded me: I have not transgressed thy commandments, neither have I forgotten them. \nI have not eaten thereof in my mourning, neither have I taken away ought thereof for any unclean use, nor given ought thereof for the dead: but I have hearkened to the voice of the LORD my God, and have done according to all that thou hast commanded me. \nLook down from thy holy habitation, from heaven, and bless thy people Israel, and the land which thou hast given us, as thou swarest unto our fathers, a land that floweth with milk and honey. \nThis day the LORD thy God hath commanded thee to do these statutes and judgments: thou shalt therefore keep and do them with all thine heart, and with all thy soul. \nThou hast avouched the LORD this day to be thy God, and to walk in his ways, and to keep his statutes, and his commandments, and his judgments, and to hearken unto his voice: \nAnd the LORD hath avouched thee this day to be his peculiar people, as he hath promised thee, and that thou shouldest keep all his commandments; \nAnd to make thee high above all nations which he hath made, in praise, and in name, and in honour; and that thou mayest be an holy people unto the LORD thy God, as he hath spoken. \nAnd Moses with the elders of Israel commanded the people, saying, Keep all the commandments which I command you this day. \nAnd it shall be on the day when ye shall pass over Jordan unto the land which the LORD thy God giveth thee, that thou shalt set thee up great stones, and plaister them with plaister: \nAnd thou shalt write upon them all the words of this law, when thou art passed over, that thou mayest go in unto the land which the LORD thy God giveth thee, a land that floweth with milk and honey; as the LORD God of thy fathers hath promised thee. \nTherefore it shall be when ye be gone over Jordan, that ye shall set up these stones, which I command you this day, in mount Ebal, and thou shalt plaister them with plaister. \nAnd there shalt thou build an altar unto the LORD thy God, an altar of stones: thou shalt not lift up any iron tool upon them. \nThou shalt build the altar of the LORD thy God of whole stones: and thou shalt offer burnt offerings thereon unto the LORD thy God: \nAnd thou shalt offer peace offerings, and shalt eat there, and rejoice before the LORD thy God. \nAnd thou shalt write upon the stones all the words of this law very plainly. \nAnd Moses and the priests the Levites spake unto all Israel, saying, Take heed, and hearken, O Israel; this day thou art become the people of the LORD thy God. \nThou shalt therefore obey the voice of the LORD thy God, and do his commandments and his statutes, which I command thee this day. \nAnd Moses charged the people the same day, saying, \nThese shall stand upon mount Gerizim to bless the people, when ye are come over Jordan; Simeon, and Levi, and Judah, and Issachar, and Joseph, and Benjamin: \nAnd these shall stand upon mount Ebal to curse; Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali. \nAnd the Levites shall speak, and say unto all the men of Israel with a loud voice, \nCursed be the man that maketh any graven or molten image, an abomination unto the LORD, the work of the hands of the craftsman, and putteth it in a secret place. And all the people shall answer and say, Amen. \nCursed be he that setteth light by his father or his mother. And all the people shall say, Amen. \nCursed be he that removeth his neighbour's landmark. And all the people shall say, Amen. \nCursed be he that maketh the blind to wander out of the way. And all the people shall say, Amen. \nCursed be he that perverteth the judgment of the stranger, fatherless, and widow. And all the people shall say, Amen. \nCursed be he that lieth with his father's wife; because he uncovereth his father's skirt. And all the people shall say, Amen. \nCursed be he that lieth with any manner of beast. And all the people shall say, Amen. \nCursed be he that lieth with his sister, the daughter of his father, or the daughter of his mother. And all the people shall say, Amen. \nCursed be he that lieth with his mother in law. And all the people shall say, Amen. \nCursed be he that smiteth his neighbour secretly. And all the people shall say, Amen. \nCursed be he that taketh reward to slay an innocent person. And all the people shall say, Amen. \nCursed be he that confirmeth not all the words of this law to do them. And all the people shall say, Amen. \nAnd it shall come to pass, if thou shalt hearken diligently unto the voice of the LORD thy God, to observe and to do all his commandments which I command thee this day, that the LORD thy God will set thee on high above all nations of the earth: \nAnd all these blessings shall come on thee, and overtake thee, if thou shalt hearken unto the voice of the LORD thy God. \nBlessed shalt thou be in the city, and blessed shalt thou be in the field. \nBlessed shall be the fruit of thy body, and the fruit of thy ground, and the fruit of thy cattle, the increase of thy kine, and the flocks of thy sheep. \nBlessed shall be thy basket and thy store. \nBlessed shalt thou be when thou comest in, and blessed shalt thou be when thou goest out. \nThe LORD shall cause thine enemies that rise up against thee to be smitten before thy face: they shall come out against thee one way, and flee before thee seven ways. \nThe LORD shall command the blessing upon thee in thy storehouses, and in all that thou settest thine hand unto; and he shall bless thee in the land which the LORD thy God giveth thee. \nThe LORD shall establish thee an holy people unto himself, as he hath sworn unto thee, if thou shalt keep the commandments of the LORD thy God, and walk in his ways. \nAnd all people of the earth shall see that thou art called by the name of the LORD; and they shall be afraid of thee. \nAnd the LORD shall make thee plenteous in goods, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy ground, in the land which the LORD sware unto thy fathers to give thee. \nThe LORD shall open unto thee his good treasure, the heaven to give the rain unto thy land in his season, and to bless all the work of thine hand: and thou shalt lend unto many nations, and thou shalt not borrow. \nAnd the LORD shall make thee the head, and not the tail; and thou shalt be above only, and thou shalt not be beneath; if that thou hearken unto the commandments of the LORD thy God, which I command thee this day, to observe and to do them: \nAnd thou shalt not go aside from any of the words which I command thee this day, to the right hand, or to the left, to go after other gods to serve them. \nBut it shall come to pass, if thou wilt not hearken unto the voice of the LORD thy God, to observe to do all his commandments and his statutes which I command thee this day; that all these curses shall come upon thee, and overtake thee: \nCursed shalt thou be in the city, and cursed shalt thou be in the field. \nCursed shall be thy basket and thy store. \nCursed shall be the fruit of thy body, and the fruit of thy land, the increase of thy kine, and the flocks of thy sheep. \nCursed shalt thou be when thou comest in, and cursed shalt thou be when thou goest out. \nThe LORD shall send upon thee cursing, vexation, and rebuke, in all that thou settest thine hand unto for to do, until thou be destroyed, and until thou perish quickly; because of the wickedness of thy doings, whereby thou hast forsaken me. \nThe LORD shall make the pestilence cleave unto thee, until he have consumed thee from off the land, whither thou goest to possess it. \nThe LORD shall smite thee with a consumption, and with a fever, and with an inflammation, and with an extreme burning, and with the sword, and with blasting, and with mildew; and they shall pursue thee until thou perish. \nAnd thy heaven that is over thy head shall be brass, and the earth that is under thee shall be iron. \nThe LORD shall make the rain of thy land powder and dust: from heaven shall it come down upon thee, until thou be destroyed. \nThe LORD shall cause thee to be smitten before thine enemies: thou shalt go out one way against them, and flee seven ways before them: and shalt be removed into all the kingdoms of the earth. \nAnd thy carcase shall be meat unto all fowls of the air, and unto the beasts of the earth, and no man shall fray them away. \nThe LORD will smite thee with the botch of Egypt, and with the emerods, and with the scab, and with the itch, whereof thou canst not be healed. \nThe LORD shall smite thee with madness, and blindness, and astonishment of heart: \nAnd thou shalt grope at noonday, as the blind gropeth in darkness, and thou shalt not prosper in thy ways: and thou shalt be only oppressed and spoiled evermore, and no man shall save thee. \nThou shalt betroth a wife, and another man shall lie with her: thou shalt build an house, and thou shalt not dwell therein: thou shalt plant a vineyard, and shalt not gather the grapes thereof. \nThine ox shall be slain before thine eyes, and thou shalt not eat thereof: thine ass shall be violently taken away from before thy face, and shall not be restored to thee: thy sheep shall be given unto thine enemies, and thou shalt have none to rescue them. \nThy sons and thy daughters shall be given unto another people, and thine eyes shall look, and fail with longing for them all the day long; and there shall be no might in thine hand. \nThe fruit of thy land, and all thy labours, shall a nation which thou knowest not eat up; and thou shalt be only oppressed and crushed alway: \nSo that thou shalt be mad for the sight of thine eyes which thou shalt see. \nThe LORD shall smite thee in the knees, and in the legs, with a sore botch that cannot be healed, from the sole of thy foot unto the top of thy head. \nThe LORD shall bring thee, and thy king which thou shalt set over thee, unto a nation which neither thou nor thy fathers have known; and there shalt thou serve other gods, wood and stone. \nAnd thou shalt become an astonishment, a proverb, and a byword, among all nations whither the LORD shall lead thee. \nThou shalt carry much seed out into the field, and shalt gather but little in; for the locust shall consume it. \nThou shalt plant vineyards, and dress them, but shalt neither drink of the wine, nor gather the grapes; for the worms shall eat them. \nThou shalt have olive trees throughout all thy coasts, but thou shalt not anoint thyself with the oil; for thine olive shall cast his fruit. \nThou shalt beget sons and daughters, but thou shalt not enjoy them; for they shall go into captivity. \nAll thy trees and fruit of thy land shall the locust consume. \nThe stranger that is within thee shall get up above thee very high; and thou shalt come down very low. \nHe shall lend to thee, and thou shalt not lend to him: he shall be the head, and thou shalt be the tail. \nMoreover all these curses shall come upon thee, and shall pursue thee, and overtake thee, till thou be destroyed; because thou hearkenedst not unto the voice of the LORD thy God, to keep his commandments and his statutes which he commanded thee: \nAnd they shall be upon thee for a sign and for a wonder, and upon thy seed for ever. \nBecause thou servedst not the LORD thy God with joyfulness, and with gladness of heart, for the abundance of all things; \nTherefore shalt thou serve thine enemies which the LORD shall send against thee, in hunger, and in thirst, and in nakedness, and in want of all things: and he shall put a yoke of iron upon thy neck, until he have destroyed thee. \nThe LORD shall bring a nation against thee from far, from the end of the earth, as swift as the eagle flieth; a nation whose tongue thou shalt not understand; \nA nation of fierce countenance, which shall not regard the person of the old, nor shew favour to the young: \nAnd he shall eat the fruit of thy cattle, and the fruit of thy land, until thou be destroyed: which also shall not leave thee either corn, wine, or oil, or the increase of thy kine, or flocks of thy sheep, until he have destroyed thee. \nAnd he shall besiege thee in all thy gates, until thy high and fenced walls come down, wherein thou trustedst, throughout all thy land: and he shall besiege thee in all thy gates throughout all thy land, which the LORD thy God hath given thee. \nAnd thou shalt eat the fruit of thine own body, the flesh of thy sons and of thy daughters, which the LORD thy God hath given thee, in the siege, and in the straitness, wherewith thine enemies shall distress thee: \nSo that the man that is tender among you, and very delicate, his eye shall be evil toward his brother, and toward the wife of his bosom, and toward the remnant of his children which he shall leave: \nSo that he will not give to any of them of the flesh of his children whom he shall eat: because he hath nothing left him in the siege, and in the straitness, wherewith thine enemies shall distress thee in all thy gates. \nThe tender and delicate woman among you, which would not adventure to set the sole of her foot upon the ground for delicateness and tenderness, her eye shall be evil toward the husband of her bosom, and toward her son, and toward her daughter, \nAnd toward her young one that cometh out from between her feet, and toward her children which she shall bear: for she shall eat them for want of all things secretly in the siege and straitness, wherewith thine enemy shall distress thee in thy gates. \nIf thou wilt not observe to do all the words of this law that are written in this book, that thou mayest fear this glorious and fearful name, THE LORD THY GOD; \nThen the LORD will make thy plagues wonderful, and the plagues of thy seed, even great plagues, and of long continuance, and sore sicknesses, and of long continuance. \nMoreover he will bring upon thee all the diseases of Egypt, which thou wast afraid of; and they shall cleave unto thee. \nAlso every sickness, and every plague, which is not written in the book of this law, them will the LORD bring upon thee, until thou be destroyed. \nAnd ye shall be left few in number, whereas ye were as the stars of heaven for multitude; because thou wouldest not obey the voice of the LORD thy God. \nAnd it shall come to pass, that as the LORD rejoiced over you to do you good, and to multiply you; so the LORD will rejoice over you to destroy you, and to bring you to nought; and ye shall be plucked from off the land whither thou goest to possess it. \nAnd the LORD shall scatter thee among all people, from the one end of the earth even unto the other; and there thou shalt serve other gods, which neither thou nor thy fathers have known, even wood and stone. \nAnd among these nations shalt thou find no ease, neither shall the sole of thy foot have rest: but the LORD shall give thee there a trembling heart, and failing of eyes, and sorrow of mind: \nAnd thy life shall hang in doubt before thee; and thou shalt fear day and night, and shalt have none assurance of thy life: \nIn the morning thou shalt say, Would God it were even! and at even thou shalt say, Would God it were morning! for the fear of thine heart wherewith thou shalt fear, and for the sight of thine eyes which thou shalt see. \nAnd the LORD shall bring thee into Egypt again with ships, by the way whereof I spake unto thee, Thou shalt see it no more again: and there ye shall be sold unto your enemies for bondmen and bondwomen, and no man shall buy you. \nThese are the words of the covenant, which the LORD commanded Moses to make with the children of Israel in the land of Moab, beside the covenant which he made with them in Horeb. \nAnd Moses called unto all Israel, and said unto them, Ye have seen all that the LORD did before your eyes in the land of Egypt unto Pharaoh, and unto all his servants, and unto all his land; \nThe great temptations which thine eyes have seen, the signs, and those great miracles: \nYet the LORD hath not given you an heart to perceive, and eyes to see, and ears to hear, unto this day. \nAnd I have led you forty years in the wilderness: your clothes are not waxen old upon you, and thy shoe is not waxen old upon thy foot. \nYe have not eaten bread, neither have ye drunk wine or strong drink: that ye might know that I am the LORD your God. \nAnd when ye came unto this place, Sihon the king of Heshbon, and Og the king of Bashan, came out against us unto battle, and we smote them: \nAnd we took their land, and gave it for an inheritance unto the Reubenites, and to the Gadites, and to the half tribe of Manasseh. \nKeep therefore the words of this covenant, and do them, that ye may prosper in all that ye do. \nYe stand this day all of you before the LORD your God; your captains of your tribes, your elders, and your officers, with all the men of Israel, \nYour little ones, your wives, and thy stranger that is in thy camp, from the hewer of thy wood unto the drawer of thy water: \nThat thou shouldest enter into covenant with the LORD thy God, and into his oath, which the LORD thy God maketh with thee this day: \nThat he may establish thee to day for a people unto himself, and that he may be unto thee a God, as he hath said unto thee, and as he hath sworn unto thy fathers, to Abraham, to Isaac, and to Jacob. \nNeither with you only do I make this covenant and this oath; \nBut with him that standeth here with us this day before the LORD our God, and also with him that is not here with us this day: \n(For ye know how we have dwelt in the land of Egypt; and how we came through the nations which ye passed by; \nAnd ye have seen their abominations, and their idols, wood and stone, silver and gold, which were among them:) \nLest there should be among you man, or woman, or family, or tribe, whose heart turneth away this day from the LORD our God, to go and serve the gods of these nations; lest there should be among you a root that beareth gall and wormwood; \nAnd it come to pass, when he heareth the words of this curse, that he bless himself in his heart, saying, I shall have peace, though I walk in the imagination of mine heart, to add drunkenness to thirst: \nThe LORD will not spare him, but then the anger of the LORD and his jealousy shall smoke against that man, and all the curses that are written in this book shall lie upon him, and the LORD shall blot out his name from under heaven. \nAnd the LORD shall separate him unto evil out of all the tribes of Israel, according to all the curses of the covenant that are written in this book of the law: \nSo that the generation to come of your children that shall rise up after you, and the stranger that shall come from a far land, shall say, when they see the plagues of that land, and the sicknesses which the LORD hath laid upon it; \nAnd that the whole land thereof is brimstone, and salt, and burning, that it is not sown, nor beareth, nor any grass groweth therein, like the overthrow of Sodom, and Gomorrah, Admah, and Zeboim, which the LORD overthrew in his anger, and in his wrath: \nEven all nations shall say, Wherefore hath the LORD done thus unto this land? what meaneth the heat of this great anger? \nThen men shall say, Because they have forsaken the covenant of the LORD God of their fathers, which he made with them when he brought them forth out of the land of Egypt: \nFor they went and served other gods, and worshipped them, gods whom they knew not, and whom he had not given unto them: \nAnd the anger of the LORD was kindled against this land, to bring upon it all the curses that are written in this book: \nAnd the LORD rooted them out of their land in anger, and in wrath, and in great indignation, and cast them into another land, as it is this day. \nThe secret things belong unto the LORD our God: but those things which are revealed belong unto us and to our children for ever, that we may do all the words of this law. \nAnd it shall come to pass, when all these things are come upon thee, the blessing and the curse, which I have set before thee, and thou shalt call them to mind among all the nations, whither the LORD thy God hath driven thee, \nAnd shalt return unto the LORD thy God, and shalt obey his voice according to all that I command thee this day, thou and thy children, with all thine heart, and with all thy soul; \nThat then the LORD thy God will turn thy captivity, and have compassion upon thee, and will return and gather thee from all the nations, whither the LORD thy God hath scattered thee. \nIf any of thine be driven out unto the outmost parts of heaven, from thence will the LORD thy God gather thee, and from thence will he fetch thee: \nAnd the LORD thy God will bring thee into the land which thy fathers possessed, and thou shalt possess it; and he will do thee good, and multiply thee above thy fathers. \nAnd the LORD thy God will circumcise thine heart, and the heart of thy seed, to love the LORD thy God with all thine heart, and with all thy soul, that thou mayest live. \nAnd the LORD thy God will put all these curses upon thine enemies, and on them that hate thee, which persecuted thee. \nAnd thou shalt return and obey the voice of the LORD, and do all his commandments which I command thee this day. \nAnd the LORD thy God will make thee plenteous in every work of thine hand, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy land, for good: for the LORD will again rejoice over thee for good, as he rejoiced over thy fathers: \nIf thou shalt hearken unto the voice of the LORD thy God, to keep his commandments and his statutes which are written in this book of the law, and if thou turn unto the LORD thy God with all thine heart, and with all thy soul. \nFor this commandment which I command thee this day, it is not hidden from thee, neither is it far off. \nIt is not in heaven, that thou shouldest say, Who shall go up for us to heaven, and bring it unto us, that we may hear it, and do it? \nNeither is it beyond the sea, that thou shouldest say, Who shall go over the sea for us, and bring it unto us, that we may hear it, and do it? \nBut the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it. \nSee, I have set before thee this day life and good, and death and evil; \nIn that I command thee this day to love the LORD thy God, to walk in his ways, and to keep his commandments and his statutes and his judgments, that thou mayest live and multiply: and the LORD thy God shall bless thee in the land whither thou goest to possess it. \nBut if thine heart turn away, so that thou wilt not hear, but shalt be drawn away, and worship other gods, and serve them; \nI denounce unto you this day, that ye shall surely perish, and that ye shall not prolong your days upon the land, whither thou passest over Jordan to go to possess it. \nI call heaven and earth to record this day against you, that I have set before you life and death, blessing and cursing: therefore choose life, that both thou and thy seed may live: \nThat thou mayest love the LORD thy God, and that thou mayest obey his voice, and that thou mayest cleave unto him: for he is thy life, and the length of thy days: that thou mayest dwell in the land which the LORD sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give them. \nAnd Moses went and spake these words unto all Israel. \nAnd he said unto them, I am an hundred and twenty years old this day; I can no more go out and come in: also the LORD hath said unto me, Thou shalt not go over this Jordan. \nThe LORD thy God, he will go over before thee, and he will destroy these nations from before thee, and thou shalt possess them: and Joshua, he shall go over before thee, as the LORD hath said. \nAnd the LORD shall do unto them as he did to Sihon and to Og, kings of the Amorites, and unto the land of them, whom he destroyed. \nAnd the LORD shall give them up before your face, that ye may do unto them according unto all the commandments which I have commanded you. \nBe strong and of a good courage, fear not, nor be afraid of them: for the LORD thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee. \nAnd Moses called unto Joshua, and said unto him in the sight of all Israel, Be strong and of a good courage: for thou must go with this people unto the land which the LORD hath sworn unto their fathers to give them; and thou shalt cause them to inherit it. \nAnd the LORD, he it is that doth go before thee; he will be with thee, he will not fail thee, neither forsake thee: fear not, neither be dismayed. \nAnd Moses wrote this law, and delivered it unto the priests the sons of Levi, which bare the ark of the covenant of the LORD, and unto all the elders of Israel. \nAnd Moses commanded them, saying, At the end of every seven years, in the solemnity of the year of release, in the feast of tabernacles, \nWhen all Israel is come to appear before the LORD thy God in the place which he shall choose, thou shalt read this law before all Israel in their hearing. \nGather the people together, men and women, and children, and thy stranger that is within thy gates, that they may hear, and that they may learn, and fear the LORD your God, and observe to do all the words of this law: \nAnd that their children, which have not known any thing, may hear, and learn to fear the LORD your God, as long as ye live in the land whither ye go over Jordan to possess it. \nAnd the LORD said unto Moses, Behold, thy days approach that thou must die: call Joshua, and present yourselves in the tabernacle of the congregation, that I may give him a charge. And Moses and Joshua went, and presented themselves in the tabernacle of the congregation. \nAnd the LORD appeared in the tabernacle in a pillar of a cloud: and the pillar of the cloud stood over the door of the tabernacle. \nAnd the LORD said unto Moses, Behold, thou shalt sleep with thy fathers; and this people will rise up, and go a whoring after the gods of the strangers of the land, whither they go to be among them, and will forsake me, and break my covenant which I have made with them. \nThen my anger shall be kindled against them in that day, and I will forsake them, and I will hide my face from them, and they shall be devoured, and many evils and troubles shall befall them; so that they will say in that day, Are not these evils come upon us, because our God is not among us? \nAnd I will surely hide my face in that day for all the evils which they shall have wrought, in that they are turned unto other gods. \nNow therefore write ye this song for you, and teach it the children of Israel: put it in their mouths, that this song may be a witness for me against the children of Israel. \nFor when I shall have brought them into the land which I sware unto their fathers, that floweth with milk and honey; and they shall have eaten and filled themselves, and waxen fat; then will they turn unto other gods, and serve them, and provoke me, and break my covenant. \nAnd it shall come to pass, when many evils and troubles are befallen them, that this song shall testify against them as a witness; for it shall not be forgotten out of the mouths of their seed: for I know their imagination which they go about, even now, before I have brought them into the land which I sware. \nMoses therefore wrote this song the same day, and taught it the children of Israel. \nAnd he gave Joshua the son of Nun a charge, and said, Be strong and of a good courage: for thou shalt bring the children of Israel into the land which I sware unto them: and I will be with thee. \nAnd it came to pass, when Moses had made an end of writing the words of this law in a book, until they were finished, \nThat Moses commanded the Levites, which bare the ark of the covenant of the LORD, saying, \nTake this book of the law, and put it in the side of the ark of the covenant of the LORD your God, that it may be there for a witness against thee. \nFor I know thy rebellion, and thy stiff neck: behold, while I am yet alive with you this day, ye have been rebellious against the LORD; and how much more after my death? \nGather unto me all the elders of your tribes, and your officers, that I may speak these words in their ears, and call heaven and earth to record against them. \nFor I know that after my death ye will utterly corrupt yourselves, and turn aside from the way which I have commanded you; and evil will befall you in the latter days; because ye will do evil in the sight of the LORD, to provoke him to anger through the work of your hands. \nAnd Moses spake in the ears of all the congregation of Israel the words of this song, until they were ended. \nGive ear, O ye heavens, and I will speak; and hear, O earth, the words of my mouth. \nMy doctrine shall drop as the rain, my speech shall distil as the dew, as the small rain upon the tender herb, and as the showers upon the grass: \nBecause I will publish the name of the LORD: ascribe ye greatness unto our God. \nHe is the Rock, his work is perfect: for all his ways are judgment: a God of truth and without iniquity, just and right is he. \nThey have corrupted themselves, their spot is not the spot of his children: they are a perverse and crooked generation. \nDo ye thus requite the LORD, O foolish people and unwise? is not he thy father that hath bought thee? hath he not made thee, and established thee? \nRemember the days of old, consider the years of many generations: ask thy father, and he will shew thee; thy elders, and they will tell thee. \nWhen the Most High divided to the nations their inheritance, when he separated the sons of Adam, he set the bounds of the people according to the number of the children of Israel. \nFor the LORD's portion is his people; Jacob is the lot of his inheritance. \nHe found him in a desert land, and in the waste howling wilderness; he led him about, he instructed him, he kept him as the apple of his eye. \nAs an eagle stirreth up her nest, fluttereth over her young, spreadeth abroad her wings, taketh them, beareth them on her wings: \nSo the LORD alone did lead him, and there was no strange god with him. \nHe made him ride on the high places of the earth, that he might eat the increase of the fields; and he made him to suck honey out of the rock, and oil out of the flinty rock; \nButter of kine, and milk of sheep, with fat of lambs, and rams of the breed of Bashan, and goats, with the fat of kidneys of wheat; and thou didst drink the pure blood of the grape. \nBut Jeshurun waxed fat, and kicked: thou art waxen fat, thou art grown thick, thou art covered with fatness; then he forsook God which made him, and lightly esteemed the Rock of his salvation. \nThey provoked him to jealousy with strange gods, with abominations provoked they him to anger. \nThey sacrificed unto devils, not to God; to gods whom they knew not, to new gods that came newly up, whom your fathers feared not. \nOf the Rock that begat thee thou art unmindful, and hast forgotten God that formed thee. \nAnd when the LORD saw it, he abhorred them, because of the provoking of his sons, and of his daughters. \nAnd he said, I will hide my face from them, I will see what their end shall be: for they are a very froward generation, children in whom is no faith. \nThey have moved me to jealousy with that which is not God; they have provoked me to anger with their vanities: and I will move them to jealousy with those which are not a people; I will provoke them to anger with a foolish nation. \nFor a fire is kindled in mine anger, and shall burn unto the lowest hell, and shall consume the earth with her increase, and set on fire the foundations of the mountains. \nI will heap mischiefs upon them; I will spend mine arrows upon them. \nThey shall be burnt with hunger, and devoured with burning heat, and with bitter destruction: I will also send the teeth of beasts upon them, with the poison of serpents of the dust. \nThe sword without, and terror within, shall destroy both the young man and the virgin, the suckling also with the man of gray hairs. \nI said, I would scatter them into corners, I would make the remembrance of them to cease from among men: \nWere it not that I feared the wrath of the enemy, lest their adversaries should behave themselves strangely, and lest they should say, Our hand is high, and the LORD hath not done all this. \nFor they are a nation void of counsel, neither is there any understanding in them. \nO that they were wise, that they understood this, that they would consider their latter end! \nHow should one chase a thousand, and two put ten thousand to flight, except their Rock had sold them, and the LORD had shut them up? \nFor their rock is not as our Rock, even our enemies themselves being judges. \nFor their vine is of the vine of Sodom, and of the fields of Gomorrah: their grapes are grapes of gall, their clusters are bitter: \nTheir wine is the poison of dragons, and the cruel venom of asps. \nIs not this laid up in store with me, and sealed up among my treasures? \nTo me belongeth vengeance and recompence; their foot shall slide in due time: for the day of their calamity is at hand, and the things that shall come upon them make haste. \nFor the LORD shall judge his people, and repent himself for his servants, when he seeth that their power is gone, and there is none shut up, or left. \nAnd he shall say, Where are their gods, their rock in whom they trusted, \nWhich did eat the fat of their sacrifices, and drank the wine of their drink offerings? let them rise up and help you, and be your protection. \nSee now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand. \nFor I lift up my hand to heaven, and say, I live for ever. \nIf I whet my glittering sword, and mine hand take hold on judgment; I will render vengeance to mine enemies, and will reward them that hate me. \nI will make mine arrows drunk with blood, and my sword shall devour flesh; and that with the blood of the slain and of the captives, from the beginning of revenges upon the enemy. \nRejoice, O ye nations, with his people: for he will avenge the blood of his servants, and will render vengeance to his adversaries, and will be merciful unto his land, and to his people. \nAnd Moses came and spake all the words of this song in the ears of the people, he, and Hoshea the son of Nun. \nAnd Moses made an end of speaking all these words to all Israel: \nAnd he said unto them, Set your hearts unto all the words which I testify among you this day, which ye shall command your children to observe to do, all the words of this law. \nFor it is not a vain thing for you; because it is your life: and through this thing ye shall prolong your days in the land, whither ye go over Jordan to possess it. \nAnd the LORD spake unto Moses that selfsame day, saying, \nGet thee up into this mountain Abarim, unto mount Nebo, which is in the land of Moab, that is over against Jericho; and behold the land of Canaan, which I give unto the children of Israel for a possession: \nAnd die in the mount whither thou goest up, and be gathered unto thy people; as Aaron thy brother died in mount Hor, and was gathered unto his people: \nBecause ye trespassed against me among the children of Israel at the waters of MeribahKadesh, in the wilderness of Zin; because ye sanctified me not in the midst of the children of Israel. \nYet thou shalt see the land before thee; but thou shalt not go thither unto the land which I give the children of Israel. \nAnd this is the blessing, wherewith Moses the man of God blessed the children of Israel before his death. \nAnd he said, The LORD came from Sinai, and rose up from Seir unto them; he shined forth from mount Paran, and he came with ten thousands of saints: from his right hand went a fiery law for them. \nYea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words. \nMoses commanded us a law, even the inheritance of the congregation of Jacob. \nAnd he was king in Jeshurun, when the heads of the people and the tribes of Israel were gathered together. \nLet Reuben live, and not die; and let not his men be few. \nAnd this is the blessing of Judah: and he said, Hear, LORD, the voice of Judah, and bring him unto his people: let his hands be sufficient for him; and be thou an help to him from his enemies. \nAnd of Levi he said, Let thy Thummim and thy Urim be with thy holy one, whom thou didst prove at Massah, and with whom thou didst strive at the waters of Meribah; \nWho said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant. \nThey shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar. \nBless, LORD, his substance, and accept the work of his hands; smite through the loins of them that rise against him, and of them that hate him, that they rise not again. \nAnd of Benjamin he said, The beloved of the LORD shall dwell in safety by him; and the Lord shall cover him all the day long, and he shall dwell between his shoulders. \nAnd of Joseph he said, Blessed of the LORD be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath, \nAnd for the precious fruits brought forth by the sun, and for the precious things put forth by the moon, \nAnd for the chief things of the ancient mountains, and for the precious things of the lasting hills, \nAnd for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren. \nHis glory is like the firstling of his bullock, and his horns are like the horns of unicorns: with them he shall push the people together to the ends of the earth: and they are the ten thousands of Ephraim, and they are the thousands of Manasseh. \nAnd of Zebulun he said, Rejoice, Zebulun, in thy going out; and, Issachar, in thy tents. \nThey shall call the people unto the mountain; there they shall offer sacrifices of righteousness: for they shall suck of the abundance of the seas, and of treasures hid in the sand. \nAnd of Gad he said, Blessed be he that enlargeth Gad: he dwelleth as a lion, and teareth the arm with the crown of the head. \nAnd he provided the first part for himself, because there, in a portion of the lawgiver, was he seated; and he came with the heads of the people, he executed the justice of the LORD, and his judgments with Israel. \nAnd of Dan he said, Dan is a lion's whelp: he shall leap from Bashan. \nAnd of Naphtali he said, O Naphtali, satisfied with favour, and full with the blessing of the LORD: possess thou the west and the south. \nAnd of Asher he said, Let Asher be blessed with children; let him be acceptable to his brethren, and let him dip his foot in oil. \nThy shoes shall be iron and brass; and as thy days, so shall thy strength be. \nThere is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky. \nThe eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them. \nIsrael then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew. \nHappy art thou, O Israel: who is like unto thee, O people saved by the LORD, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places. \nAnd Moses went up from the plains of Moab unto the mountain of Nebo, to the top of Pisgah, that is over against Jericho. And the LORD shewed him all the land of Gilead, unto Dan, \nAnd all Naphtali, and the land of Ephraim, and Manasseh, and all the land of Judah, unto the utmost sea, \nAnd the south, and the plain of the valley of Jericho, the city of palm trees, unto Zoar. \nAnd the LORD said unto him, This is the land which I sware unto Abraham, unto Isaac, and unto Jacob, saying, I will give it unto thy seed: I have caused thee to see it with thine eyes, but thou shalt not go over thither. \nSo Moses the servant of the LORD died there in the land of Moab, according to the word of the LORD. \nAnd he buried him in a valley in the land of Moab, over against Bethpeor: but no man knoweth of his sepulchre unto this day. \nAnd Moses was an hundred and twenty years old when he died: his eye was not dim, nor his natural force abated. \nAnd the children of Israel wept for Moses in the plains of Moab thirty days: so the days of weeping and mourning for Moses were ended. \nAnd Joshua the son of Nun was full of the spirit of wisdom; for Moses had laid his hands upon him: and the children of Israel hearkened unto him, and did as the LORD commanded Moses. \nAnd there arose not a prophet since in Israel like unto Moses, whom the LORD knew face to face, \nIn all the signs and the wonders, which the LORD sent him to do in the land of Egypt to Pharaoh, and to all his servants, and to all his land, \nAnd in all that mighty hand, and in all the great terror which Moses shewed in the sight of all Israel. \nNow after the death of Moses the servant of the LORD it came to pass, that the LORD spake unto Joshua the son of Nun, Moses' minister, saying, \nMoses my servant is dead; now therefore arise, go over this Jordan, thou, and all this people, unto the land which I do give to them, even to the children of Israel. \nEvery place that the sole of your foot shall tread upon, that have I given unto you, as I said unto Moses. \nFrom the wilderness and this Lebanon even unto the great river, the river Euphrates, all the land of the Hittites, and unto the great sea toward the going down of the sun, shall be your coast. \nThere shall not any man be able to stand before thee all the days of thy life: as I was with Moses, so I will be with thee: I will not fail thee, nor forsake thee. \nBe strong and of a good courage: for unto this people shalt thou divide for an inheritance the land, which I sware unto their fathers to give them. \nOnly be thou strong and very courageous, that thou mayest observe to do according to all the law, which Moses my servant commanded thee: turn not from it to the right hand or to the left, that thou mayest prosper withersoever thou goest. \nThis book of the law shall not depart out of thy mouth; but thou shalt meditate therein day and night, that thou mayest observe to do according to all that is written therein: for then thou shalt make thy way prosperous, and then thou shalt have good success. \nHave not I commanded thee? Be strong and of a good courage; be not afraid, neither be thou dismayed: for the LORD thy God is with thee whithersoever thou goest. \nThen Joshua commanded the officers of the people, saying, \nPass through the host, and command the people, saying, Prepare you victuals; for within three days ye shall pass over this Jordan, to go in to possess the land, which the LORD your God giveth you to possess it. \nAnd to the Reubenites, and to the Gadites, and to half the tribe of Manasseh, spake Joshua, saying, \nRemember the word which Moses the servant of the LORD commanded you, saying, The LORD your God hath given you rest, and hath given you this land. \nYour wives, your little ones, and your cattle, shall remain in the land which Moses gave you on this side Jordan; but ye shall pass before your brethren armed, all the mighty men of valour, and help them; \nUntil the LORD have given your brethren rest, as he hath given you, and they also have possessed the land which the LORD your God giveth them: then ye shall return unto the land of your possession, and enjoy it, which Moses the LORD's servant gave you on this side Jordan toward the sunrising. \nAnd they answered Joshua, saying, All that thou commandest us we will do, and whithersoever thou sendest us, we will go. \nAccording as we hearkened unto Moses in all things, so will we hearken unto thee: only the LORD thy God be with thee, as he was with Moses. \nWhosoever he be that doth rebel against thy commandment, and will not hearken unto thy words in all that thou commandest him, he shall be put to death: only be strong and of a good courage. \nAnd Joshua the son of Nun sent out of Shittim two men to spy secretly, saying, Go view the land, even Jericho. And they went, and came into an harlot's house, named Rahab, and lodged there. \nAnd it was told the king of Jericho, saying, Behold, there came men in hither to night of the children of Israel to search out the country. \nAnd the king of Jericho sent unto Rahab, saying, Bring forth the men that are come to thee, which are entered into thine house: for they be come to search out all the country. \nAnd the woman took the two men, and hid them, and said thus, There came men unto me, but I wist not whence they were: \nAnd it came to pass about the time of shutting of the gate, when it was dark, that the men went out: whither the men went I wot not: pursue after them quickly; for ye shall overtake them. \nBut she had brought them up to the roof of the house, and hid them with the stalks of flax, which she had laid in order upon the roof. \nAnd the men pursued after them the way to Jordan unto the fords: and as soon as they which pursued after them were gone out, they shut the gate. \nAnd before they were laid down, she came up unto them upon the roof; \nAnd she said unto the men, I know that the LORD hath given you the land, and that your terror is fallen upon us, and that all the inhabitants of the land faint because of you. \nFor we have heard how the LORD dried up the water of the Red sea for you, when ye came out of Egypt; and what ye did unto the two kings of the Amorites, that were on the other side Jordan, Sihon and Og, whom ye utterly destroyed. \nAnd as soon as we had heard these things, our hearts did melt, neither did there remain any more courage in any man, because of you: for the LORD your God, he is God in heaven above, and in earth beneath. \nNow therefore, I pray you, swear unto me by the LORD, since I have shewed you kindness, that ye will also shew kindness unto my father's house, and give me a true token: \nAnd that ye will save alive my father, and my mother, and my brethren, and my sisters, and all that they have, and deliver our lives from death. \nAnd the men answered her, Our life for yours, if ye utter not this our business. And it shall be, when the LORD hath given us the land, that we will deal kindly and truly with thee. \nThen she let them down by a cord through the window: for her house was upon the town wall, and she dwelt upon the wall. \nAnd she said unto them, Get you to the mountain, lest the pursuers meet you; and hide yourselves there three days, until the pursuers be returned: and afterward may ye go your way. \nAnd the men said unto her, We will be blameless of this thine oath which thou hast made us swear. \nBehold, when we come into the land, thou shalt bind this line of scarlet thread in the window which thou didst let us down by: and thou shalt bring thy father, and thy mother, and thy brethren, and all thy father's household, home unto thee. \nAnd it shall be, that whosoever shall go out of the doors of thy house into the street, his blood shall be upon his head, and we will be guiltless: and whosoever shall be with thee in the house, his blood shall be on our head, if any hand be upon him. \nAnd if thou utter this our business, then we will be quit of thine oath which thou hast made us to swear. \nAnd she said, According unto your words, so be it. And she sent them away, and they departed: and she bound the scarlet line in the window. \nAnd they went, and came unto the mountain, and abode there three days, until the pursuers were returned: and the pursuers sought them throughout all the way, but found them not. \nSo the two men returned, and descended from the mountain, and passed over, and came to Joshua the son of Nun, and told him all things that befell them: \nAnd they said unto Joshua, Truly the LORD hath delivered into our hands all the land; for even all the inhabitants of the country do faint because of us. \nAnd Joshua rose early in the morning; and they removed from Shittim, and came to Jordan, he and all the children of Israel, and lodged there before they passed over. \nAnd it came to pass after three days, that the officers went through the host; \nAnd they commanded the people, saying, When ye see the ark of the covenant of the LORD your God, and the priests the Levites bearing it, then ye shall remove from your place, and go after it. \nYet there shall be a space between you and it, about two thousand cubits by measure: come not near unto it, that ye may know the way by which ye must go: for ye have not passed this way heretofore. \nAnd Joshua said unto the people, Sanctify yourselves: for to morrow the LORD will do wonders among you. \nAnd Joshua spake unto the priests, saying, Take up the ark of the covenant, and pass over before the people. And they took up the ark of the covenant, and went before the people. \nAnd the LORD said unto Joshua, This day will I begin to magnify thee in the sight of all Israel, that they may know that, as I was with Moses, so I will be with thee. \nAnd thou shalt command the priests that bear the ark of the covenant, saying, When ye are come to the brink of the water of Jordan, ye shall stand still in Jordan. \nAnd Joshua said unto the children of Israel, Come hither, and hear the words of the LORD your God. \nAnd Joshua said, Hereby ye shall know that the living God is among you, and that he will without fail drive out from before you the Canaanites, and the Hittites, and the Hivites, and the Perizzites, and the Girgashites, and the Amorites, and the Jebusites. \nBehold, the ark of the covenant of the LORD of all the earth passeth over before you into Jordan. \nNow therefore take you twelve men out of the tribes of Israel, out of every tribe a man. \nAnd it shall come to pass, as soon as the soles of the feet of the priests that bear the ark of the LORD, the LORD of all the earth, shall rest in the waters of Jordan, that the waters of Jordan shall be cut off from the waters that come down from above; and they shall stand upon an heap. \nAnd it came to pass, when the people removed from their tents, to pass over Jordan, and the priests bearing the ark of the covenant before the people; \nAnd as they that bare the ark were come unto Jordan, and the feet of the priests that bare the ark were dipped in the brim of the water, (for Jordan overfloweth all his banks all the time of harvest,) \nThat the waters which came down from above stood and rose up upon an heap very far from the city Adam, that is beside Zaretan: and those that came down toward the sea of the plain, even the salt sea, failed, and were cut off: and the people passed over right against Jericho. \nAnd the priests that bare the ark of the covenant of the LORD stood firm on dry ground in the midst of Jordan, and all the Israelites passed over on dry ground, until all the people were passed clean over Jordan. \nAnd it came to pass, when all the people were clean passed over Jordan, that the LORD spake unto Joshua, saying, \nTake you twelve men out of the people, out of every tribe a man, \nAnd command ye them, saying, Take you hence out of the midst of Jordan, out of the place where the priests' feet stood firm, twelve stones, and ye shall carry them over with you, and leave them in the lodging place, where ye shall lodge this night. \nThen Joshua called the twelve men, whom he had prepared of the children of Israel, out of every tribe a man: \nAnd Joshua said unto them, Pass over before the ark of the LORD your God into the midst of Jordan, and take you up every man of you a stone upon his shoulder, according unto the number of the tribes of the children of Israel: \nThat this may be a sign among you, that when your children ask their fathers in time to come, saying, What mean ye by these stones? \nThen ye shall answer them, That the waters of Jordan were cut off before the ark of the covenant of the LORD; when it passed over Jordan, the waters of Jordan were cut off: and these stones shall be for a memorial unto the children of Israel for ever. \nAnd the children of Israel did so as Joshua commanded, and took up twelve stones out of the midst of Jordan, as the LORD spake unto Joshua, according to the number of the tribes of the children of Israel, and carried them over with them unto the place where they lodged, and laid them down there. \nAnd Joshua set up twelve stones in the midst of Jordan, in the place where the feet of the priests which bare the ark of the covenant stood: and they are there unto this day. \nFor the priests which bare the ark stood in the midst of Jordan, until everything was finished that the LORD commanded Joshua to speak unto the people, according to all that Moses commanded Joshua: and the people hasted and passed over. \nAnd it came to pass, when all the people were clean passed over, that the ark of the LORD passed over, and the priests, in the presence of the people. \nAnd the children of Reuben, and the children of Gad, and half the tribe of Manasseh, passed over armed before the children of Israel, as Moses spake unto them: \nAbout forty thousand prepared for war passed over before the LORD unto battle, to the plains of Jericho. \nOn that day the LORD magnified Joshua in the sight of all Israel; and they feared him, as they feared Moses, all the days of his life. \nAnd the LORD spake unto Joshua, saying, \nCommand the priests that bear the ark of the testimony, that they come up out of Jordan. \nJoshua therefore commanded the priests, saying, Come ye up out of Jordan. \nAnd it came to pass, when the priests that bare the ark of the covenant of the LORD were come up out of the midst of Jordan, and the soles of the priests' feet were lifted up unto the dry land, that the waters of Jordan returned unto their place, and flowed over all his banks, as they did before. \nAnd the people came up out of Jordan on the tenth day of the first month, and encamped in Gilgal, in the east border of Jericho. \nAnd those twelve stones, which they took out of Jordan, did Joshua pitch in Gilgal. \nAnd he spake unto the children of Israel, saying, When your children shall ask their fathers in time to come, saying, What mean these stones? \nThen ye shall let your children know, saying, Israel came over this Jordan on dry land. \nFor the LORD your God dried up the waters of Jordan from before you, until ye were passed over, as the LORD your God did to the Red sea, which he dried up from before us, until we were gone over: \nThat all the people of the earth might know the hand of the LORD, that it is mighty: that ye might fear the LORD your God for ever. \nAnd it came to pass, when all the kings of the Amorites, which were on the side of Jordan westward, and all the kings of the Canaanites, which were by the sea, heard that the LORD had dried up the waters of Jordan from before the children of Israel, until we were passed over, that their heart melted, neither was there spirit in them any more, because of the children of Israel. \nAt that time the LORD said unto Joshua, Make thee sharp knives, and circumcise again the children of Israel the second time. \nAnd Joshua made him sharp knives, and circumcised the children of Israel at the hill of the foreskins. \nAnd this is the cause why Joshua did circumcise: All the people that came out of Egypt, that were males, even all the men of war, died in the wilderness by the way, after they came out of Egypt. \nNow all the people that came out were circumcised: but all the people that were born in the wilderness by the way as they came forth out of Egypt, them they had not circumcised. \nFor the children of Israel walked forty years in the wilderness, till all the people that were men of war, which came out of Egypt, were consumed, because they obeyed not the voice of the LORD: unto whom the LORD sware that he would not shew them the land, which the LORD sware unto their fathers that he would give us, a land that floweth with milk and honey. \nAnd their children, whom he raised up in their stead, them Joshua circumcised: for they were uncircumcised, because they had not circumcised them by the way. \nAnd it came to pass, when they had done circumcising all the people, that they abode in their places in the camp, till they were whole. \nAnd the LORD said unto Joshua, This day have I rolled away the reproach of Egypt from off you. Wherefore the name of the place is called Gilgal unto this day. \nAnd the children of Israel encamped in Gilgal, and kept the passover on the fourteenth day of the month at even in the plains of Jericho. \nAnd they did eat of the old corn of the land on the morrow after the passover, unleavened cakes, and parched corn in the selfsame day. \nAnd the manna ceased on the morrow after they had eaten of the old corn of the land; neither had the children of Israel manna any more; but they did eat of the fruit of the land of Canaan that year. \nAnd it came to pass, when Joshua was by Jericho, that he lifted up his eyes and looked, and, behold, there stood a man over against him with his sword drawn in his hand: and Joshua went unto him, and said unto him, Art thou for us, or for our adversaries? \nAnd he said, Nay; but as captain of the host of the LORD am I now come. And Joshua fell on his face to the earth, and did worship, and said unto him, What saith my Lord unto his servant? \nAnd the captain of the LORD's host said unto Joshua, Loose thy shoe from off thy foot; for the place whereon thou standest is holy. And Joshua did so. \nNow Jericho was straitly shut up because of the children of Israel: none went out, and none came in. \nAnd the LORD said unto Joshua, See, I have given into thine hand Jericho, and the king thereof, and the mighty men of valour. \nAnd ye shall compass the city, all ye men of war, and go round about the city once. Thus shalt thou do six days. \nAnd seven priests shall bear before the ark seven trumpets of rams' horns: and the seventh day ye shall compass the city seven times, and the priests shall blow with the trumpets. \nAnd it shall come to pass, that when they make a long blast with the ram's horn, and when ye hear the sound of the trumpet, all the people shall shout with a great shout; and the wall of the city shall fall down flat, and the people shall ascend up every man straight before him. \nAnd Joshua the son of Nun called the priests, and said unto them, Take up the ark of the covenant, and let seven priests bear seven trumpets of rams' horns before the ark of the LORD. \nAnd he said unto the people, Pass on, and compass the city, and let him that is armed pass on before the ark of the LORD. \nAnd it came to pass, when Joshua had spoken unto the people, that the seven priests bearing the seven trumpets of rams' horns passed on before the LORD, and blew with the trumpets: and the ark of the covenant of the LORD followed them. \nAnd the armed men went before the priests that blew with the trumpets, and the rereward came after the ark, the priests going on, and blowing with the trumpets. \nAnd Joshua had commanded the people, saying, Ye shall not shout, nor make any noise with your voice, neither shall any word proceed out of your mouth, until the day I bid you shout; then shall ye shout. \nSo the ark of the LORD compassed the city, going about it once: and they came into the camp, and lodged in the camp. \nAnd Joshua rose early in the morning, and the priests took up the ark of the LORD. \nAnd seven priests bearing seven trumpets of rams' horns before the ark of the LORD went on continually, and blew with the trumpets: and the armed men went before them; but the rereward came after the ark of the LORD, the priests going on, and blowing with the trumpets. \nAnd the second day they compassed the city once, and returned into the camp: so they did six days. \nAnd it came to pass on the seventh day, that they rose early about the dawning of the day, and compassed the city after the same manner seven times: only on that day they compassed the city seven times. \nAnd it came to pass at the seventh time, when the priests blew with the trumpets, Joshua said unto the people, Shout; for the LORD hath given you the city. \nAnd the city shall be accursed, even it, and all that are therein, to the LORD: only Rahab the harlot shall live, she and all that are with her in the house, because she hid the messengers that we sent. \nAnd ye, in any wise keep yourselves from the accursed thing, lest ye make yourselves accursed, when ye take of the accursed thing, and make the camp of Israel a curse, and trouble it. \nBut all the silver, and gold, and vessels of brass and iron, are consecrated unto the LORD: they shall come into the treasury of the LORD. \nSo the people shouted when the priests blew with the trumpets: and it came to pass, when the people heard the sound of the trumpet, and the people shouted with a great shout, that the wall fell down flat, so that the people went up into the city, every man straight before him, and they took the city. \nAnd they utterly destroyed all that was in the city, both man and woman, young and old, and ox, and sheep, and ass, with the edge of the sword. \nBut Joshua had said unto the two men that had spied out the country, Go into the harlot's house, and bring out thence the woman, and all that she hath, as ye sware unto her. \nAnd the young men that were spies went in, and brought out Rahab, and her father, and her mother, and her brethren, and all that she had; and they brought out all her kindred, and left them without the camp of Israel. \nAnd they burnt the city with fire, and all that was therein: only the silver, and the gold, and the vessels of brass and of iron, they put into the treasury of the house of the LORD. \nAnd Joshua saved Rahab the harlot alive, and her father's household, and all that she had; and she dwelleth in Israel even unto this day; because she hid the messengers, which Joshua sent to spy out Jericho. \nAnd Joshua adjured them at that time, saying, Cursed be the man before the LORD, that riseth up and buildeth this city Jericho: he shall lay the foundation thereof in his firstborn, and in his youngest son shall he set up the gates of it. \nSo the LORD was with Joshua; and his fame was noised throughout all the country. \nBut the children of Israel committed a trespass in the accursed thing: for Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, took of the accursed thing: and the anger of the LORD was kindled against the children of Israel. \nAnd Joshua sent men from Jericho to Ai, which is beside Bethaven, on the east of Bethel, and spake unto them, saying, Go up and view the country. And the men went up and viewed Ai. \nAnd they returned to Joshua, and said unto him, Let not all the people go up; but let about two or three thousand men go up and smite Ai; and make not all the people to labour thither; for they are but few. \nSo there went up thither of the people about three thousand men: and they fled before the men of Ai. \nAnd the men of Ai smote of them about thirty and six men: for they chased them from before the gate even unto Shebarim, and smote them in the going down: wherefore the hearts of the people melted, and became as water. \nAnd Joshua rent his clothes, and fell to the earth upon his face before the ark of the LORD until the eventide, he and the elders of Israel, and put dust upon their heads. \nAnd Joshua said, Alas, O LORD God, wherefore hast thou at all brought this people over Jordan, to deliver us into the hand of the Amorites, to destroy us? would to God we had been content, and dwelt on the other side Jordan! \nO LORD, what shall I say, when Israel turneth their backs before their enemies! \nFor the Canaanites and all the inhabitants of the land shall hear of it, and shall environ us round, and cut off our name from the earth: and what wilt thou do unto thy great name? \nAnd the LORD said unto Joshua, Get thee up; wherefore liest thou thus upon thy face? \nIsrael hath sinned, and they have also transgressed my covenant which I commanded them: for they have even taken of the accursed thing, and have also stolen, and dissembled also, and they have put it even among their own stuff. \nTherefore the children of Israel could not stand before their enemies, but turned their backs before their enemies, because they were accursed: neither will I be with you any more, except ye destroy the accursed from among you. \nUp, sanctify the people, and say, Sanctify yourselves against to morrow: for thus saith the LORD God of Israel, There is an accursed thing in the midst of thee, O Israel: thou canst not stand before thine enemies, until ye take away the accursed thing from among you. \nIn the morning therefore ye shall be brought according to your tribes: and it shall be, that the tribe which the LORD taketh shall come according to the families thereof; and the family which the LORD shall take shall come by households; and the household which the LORD shall take shall come man by man. \nAnd it shall be, that he that is taken with the accursed thing shall be burnt with fire, he and all that he hath: because he hath transgressed the covenant of the LORD, and because he hath wrought folly in Israel. \nSo Joshua rose up early in the morning, and brought Israel by their tribes; and the tribe of Judah was taken: \nAnd he brought the family of Judah; and he took the family of the Zarhites: and he brought the family of the Zarhites man by man; and Zabdi was taken: \nAnd he brought his household man by man; and Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, was taken. \nAnd Joshua said unto Achan, My son, give, I pray thee, glory to the LORD God of Israel, and make confession unto him; and tell me now what thou hast done; hide it not from me. \nAnd Achan answered Joshua, and said, Indeed I have sinned against the LORD God of Israel, and thus and thus have I done: \nWhen I saw among the spoils a goodly Babylonish garment, and two hundred shekels of silver, and a wedge of gold of fifty shekels weight, then I coveted them, and took them; and, behold, they are hid in the earth in the midst of my tent, and the silver under it. \nSo Joshua sent messengers, and they ran unto the tent; and, behold, it was hid in his tent, and the silver under it. \nAnd they took them out of the midst of the tent, and brought them unto Joshua, and unto all the children of Israel, and laid them out before the LORD. \nAnd Joshua, and all Israel with him, took Achan the son of Zerah, and the silver, and the garment, and the wedge of gold, and his sons, and his daughters, and his oxen, and his asses, and his sheep, and his tent, and all that he had: and they brought them unto the valley of Achor. \nAnd Joshua said, Why hast thou troubled us? the LORD shall trouble thee this day. And all Israel stoned him with stones, and burned them with fire, after they had stoned them with stones. \nAnd they raised over him a great heap of stones unto this day. So the LORD turned from the fierceness of his anger. Wherefore the name of that place was called, The valley of Achor, unto this day. \nAnd the LORD said unto Joshua, Fear not, neither be thou dismayed: take all the people of war with thee, and arise, go up to Ai: see, I have given into thy hand the king of Ai, and his people, and his city, and his land: \nAnd thou shalt do to Ai and her king as thou didst unto Jericho and her king: only the spoil thereof, and the cattle thereof, shall ye take for a prey unto yourselves: lay thee an ambush for the city behind it. \nSo Joshua arose, and all the people of war, to go up against Ai: and Joshua chose out thirty thousand mighty men of valour, and sent them away by night. \nAnd he commanded them, saying, Behold, ye shall lie in wait against the city, even behind the city: go not very far from the city, but be ye all ready: \nAnd I, and all the people that are with me, will approach unto the city: and it shall come to pass, when they come out against us, as at the first, that we will flee before them, \n(For they will come out after us) till we have drawn them from the city; for they will say, They flee before us, as at the first: therefore we will flee before them. \nThen ye shall rise up from the ambush, and seize upon the city: for the LORD your God will deliver it into your hand. \nAnd it shall be, when ye have taken the city, that ye shall set the city on fire: according to the commandment of the LORD shall ye do. See, I have commanded you. \nJoshua therefore sent them forth: and they went to lie in ambush, and abode between Bethel and Ai, on the west side of Ai: but Joshua lodged that night among the people. \nAnd Joshua rose up early in the morning, and numbered the people, and went up, he and the elders of Israel, before the people to Ai. \nAnd all the people, even the people of war that were with him, went up, and drew nigh, and came before the city, and pitched on the north side of Ai: now there was a valley between them and Ai. \nAnd he took about five thousand men, and set them to lie in ambush between Bethel and Ai, on the west side of the city. \nAnd when they had set the people, even all the host that was on the north of the city, and their liers in wait on the west of the city, Joshua went that night into the midst of the valley. \nAnd it came to pass, when the king of Ai saw it, that they hasted and rose up early, and the men of the city went out against Israel to battle, he and all his people, at a time appointed, before the plain; but he wist not that there were liers in ambush against him behind the city. \nAnd Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness. \nAnd all the people that were in Ai were called together to pursue after them: and they pursued after Joshua, and were drawn away from the city. \nAnd there was not a man left in Ai or Bethel, that went not out after Israel: and they left the city open, and pursued after Israel. \nAnd the LORD said unto Joshua, Stretch out the spear that is in thy hand toward Ai; for I will give it into thine hand. And Joshua stretched out the spear that he had in his hand toward the city. \nAnd the ambush arose quickly out of their place, and they ran as soon as he had stretched out his hand: and they entered into the city, and took it, and hasted and set the city on fire. \nAnd when the men of Ai looked behind them, they saw, and, behold, the smoke of the city ascended up to heaven, and they had no power to flee this way or that way: and the people that fled to the wilderness turned back upon the pursuers. \nAnd when Joshua and all Israel saw that the ambush had taken the city, and that the smoke of the city ascended, then they turned again, and slew the men of Ai. \nAnd the other issued out of the city against them; so they were in the midst of Israel, some on this side, and some on that side: and they smote them, so that they let none of them remain or escape. \nAnd the king of Ai they took alive, and brought him to Joshua. \nAnd it came to pass, when Israel had made an end of slaying all the inhabitants of Ai in the field, in the wilderness wherein they chased them, and when they were all fallen on the edge of the sword, until they were consumed, that all the Israelites returned unto Ai, and smote it with the edge of the sword. \nAnd so it was, that all that fell that day, both of men and women, were twelve thousand, even all the men of Ai. \nFor Joshua drew not his hand back, wherewith he stretched out the spear, until he had utterly destroyed all the inhabitants of Ai. \nOnly the cattle and the spoil of that city Israel took for a prey unto themselves, according unto the word of the LORD which he commanded Joshua. \nAnd Joshua burnt Ai, and made it an heap for ever, even a desolation unto this day. \nAnd the king of Ai he hanged on a tree until eventide: and as soon as the sun was down, Joshua commanded that they should take his carcase down from the tree, and cast it at the entering of the gate of the city, and raise thereon a great heap of stones, that remaineth unto this day. \nThen Joshua built an altar unto the LORD God of Israel in mount Ebal, \nAs Moses the servant of the LORD commanded the children of Israel, as it is written in the book of the law of Moses, an altar of whole stones, over which no man hath lift up any iron: and they offered thereon burnt offerings unto the LORD, and sacrificed peace offerings. \nAnd he wrote there upon the stones a copy of the law of Moses, which he wrote in the presence of the children of Israel. \nAnd all Israel, and their elders, and officers, and their judges, stood on this side the ark and on that side before the priests the Levites, which bare the ark of the covenant of the LORD, as well the stranger, as he that was born among them; half of them over against mount Gerizim, and half of them over against mount Ebal; as Moses the servant of the LORD had commanded before, that they should bless the people of Israel. \nAnd afterward he read all the words of the law, the blessings and cursings, according to all that is written in the book of the law. \nThere was not a word of all that Moses commanded, which Joshua read not before all the congregation of Israel, with the women, and the little ones, and the strangers that were conversant among them. \nAnd it came to pass, when all the kings which were on this side Jordan, in the hills, and in the valleys, and in all the coasts of the great sea over against Lebanon, the Hittite, and the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, heard thereof; \nThat they gathered themselves together, to fight with Joshua and with Israel, with one accord. \nAnd when the inhabitants of Gibeon heard what Joshua had done unto Jericho and to Ai, \nThey did work wilily, and went and made as if they had been ambassadors, and took old sacks upon their asses, and wine bottles, old, and rent, and bound up; \nAnd old shoes and clouted upon their feet, and old garments upon them; and all the bread of their provision was dry and mouldy. \nAnd they went to Joshua unto the camp at Gilgal, and said unto him, and to the men of Israel, We be come from a far country: now therefore make ye a league with us. \nAnd the men of Israel said unto the Hivites, Peradventure ye dwell among us; and how shall we make a league with you? \nAnd they said unto Joshua, We are thy servants. And Joshua said unto them, Who are ye? and from whence come ye? \nAnd they said unto him, From a very far country thy servants are come because of the name of the LORD thy God: for we have heard the fame of him, and all that he did in Egypt, \nAnd all that he did to the two kings of the Amorites, that were beyond Jordan, to Sihon king of Heshbon, and to Og king of Bashan, which was at Ashtaroth. \nWherefore our elders and all the inhabitants of our country spake to us, saying, Take victuals with you for the journey, and go to meet them, and say unto them, We are your servants: therefore now make ye a league with us. \nThis our bread we took hot for our provision out of our houses on the day we came forth to go unto you; but now, behold, it is dry, and it is mouldy: \nAnd these bottles of wine, which we filled, were new; and, behold, they be rent: and these our garments and our shoes are become old by reason of the very long journey. \nAnd the men took of their victuals, and asked not counsel at the mouth of the LORD. \nAnd Joshua made peace with them, and made a league with them, to let them live: and the princes of the congregation sware unto them. \nAnd it came to pass at the end of three days after they had made a league with them, that they heard that they were their neighbours, and that they dwelt among them. \nAnd the children of Israel journeyed, and came unto their cities on the third day. Now their cities were Gibeon, and Chephirah, and Beeroth, and Kirjathjearim. \nAnd the children of Israel smote them not, because the princes of the congregation had sworn unto them by the LORD God of Israel. And all the congregation murmured against the princes. \nBut all the princes said unto all the congregation, We have sworn unto them by the LORD God of Israel: now therefore we may not touch them. \nThis we will do to them; we will even let them live, lest wrath be upon us, because of the oath which we sware unto them. \nAnd the princes said unto them, Let them live; but let them be hewers of wood and drawers of water unto all the congregation; as the princes had promised them. \nAnd Joshua called for them, and he spake unto them, saying, Wherefore have ye beguiled us, saying, We are very far from you; when ye dwell among us? \nNow therefore ye are cursed, and there shall none of you be freed from being bondmen, and hewers of wood and drawers of water for the house of my God. \nAnd they answered Joshua, and said, Because it was certainly told thy servants, how that the LORD thy God commanded his servant Moses to give you all the land, and to destroy all the inhabitants of the land from before you, therefore we were sore afraid of our lives because of you, and have done this thing. \nAnd now, behold, we are in thine hand: as it seemeth good and right unto thee to do unto us, do. \nAnd so did he unto them, and delivered them out of the hand of the children of Israel, that they slew them not. \nAnd Joshua made them that day hewers of wood and drawers of water for the congregation, and for the altar of the LORD, even unto this day, in the place which he should choose. \nNow it came to pass, when Adonizedec king of Jerusalem had heard how Joshua had taken Ai, and had utterly destroyed it; as he had done to Jericho and her king, so he had done to Ai and her king; and how the inhabitants of Gibeon had made peace with Israel, and were among them; \nThat they feared greatly, because Gibeon was a great city, as one of the royal cities, and because it was greater than Ai, and all the men thereof were mighty. \nWherefore Adonizedec king of Jerusalem, sent unto Hoham king of Hebron, and unto Piram king of Jarmuth, and unto Japhia king of Lachish, and unto Debir king of Eglon, saying, \nCome up unto me, and help me, that we may smite Gibeon: for it hath made peace with Joshua and with the children of Israel. \nTherefore the five kings of the Amorites, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, the king of Eglon, gathered themselves together, and went up, they and all their hosts, and encamped before Gibeon, and made war against it. \nAnd the men of Gibeon sent unto Joshua to the camp to Gilgal, saying, Slack not thy hand from thy servants; come up to us quickly, and save us, and help us: for all the kings of the Amorites that dwell in the mountains are gathered together against us. \nSo Joshua ascended from Gilgal, he, and all the people of war with him, and all the mighty men of valour. \nAnd the LORD said unto Joshua, Fear them not: for I have delivered them into thine hand; there shall not a man of them stand before thee. \nJoshua therefore came unto them suddenly, and went up from Gilgal all night. \nAnd the LORD discomfited them before Israel, and slew them with a great slaughter at Gibeon, and chased them along the way that goeth up to Bethhoron, and smote them to Azekah, and unto Makkedah. \nAnd it came to pass, as they fled from before Israel, and were in the going down to Bethhoron, that the LORD cast down great stones from heaven upon them unto Azekah, and they died: they were more which died with hailstones than they whom the children of Israel slew with the sword. \nThen spake Joshua to the LORD in the day when the LORD delivered up the Amorites before the children of Israel, and he said in the sight of Israel, Sun, stand thou still upon Gibeon; and thou, Moon, in the valley of Ajalon. \nAnd the sun stood still, and the moon stayed, until the people had avenged themselves upon their enemies. Is not this written in the book of Jasher? So the sun stood still in the midst of heaven, and hasted not to go down about a whole day. \nAnd there was no day like that before it or after it, that the LORD hearkened unto the voice of a man: for the LORD fought for Israel. \nAnd Joshua returned, and all Israel with him, unto the camp to Gilgal. \nBut these five kings fled, and hid themselves in a cave at Makkedah. \nAnd it was told Joshua, saying, The five kings are found hid in a cave at Makkedah. \nAnd Joshua said, Roll great stones upon the mouth of the cave, and set men by it for to keep them: \nAnd stay ye not, but pursue after your enemies, and smite the hindmost of them; suffer them not to enter into their cities: for the LORD your God hath delivered them into your hand. \nAnd it came to pass, when Joshua and the children of Israel had made an end of slaying them with a very great slaughter, till they were consumed, that the rest which remained of them entered into fenced cities. \nAnd all the people returned to the camp to Joshua at Makkedah in peace: none moved his tongue against any of the children of Israel. \nThen said Joshua, Open the mouth of the cave, and bring out those five kings unto me out of the cave. \nAnd they did so, and brought forth those five kings unto him out of the cave, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon. \nAnd it came to pass, when they brought out those kings unto Joshua, that Joshua called for all the men of Israel, and said unto the captains of the men of war which went with him, Come near, put your feet upon the necks of these kings. And they came near, and put their feet upon the necks of them. \nAnd Joshua said unto them, Fear not, nor be dismayed, be strong and of good courage: for thus shall the LORD do to all your enemies against whom ye fight. \nAnd afterward Joshua smote them, and slew them, and hanged them on five trees: and they were hanging upon the trees until the evening. \nAnd it came to pass at the time of the going down of the sun, that Joshua commanded, and they took them down off the trees, and cast them into the cave wherein they had been hid, and laid great stones in the cave's mouth, which remain until this very day. \nAnd that day Joshua took Makkedah, and smote it with the edge of the sword, and the king thereof he utterly destroyed, them, and all the souls that were therein; he let none remain: and he did to the king of Makkedah as he did unto the king of Jericho. \nThen Joshua passed from Makkedah, and all Israel with him, unto Libnah, and fought against Libnah: \nAnd the LORD delivered it also, and the king thereof, into the hand of Israel; and he smote it with the edge of the sword, and all the souls that were therein; he let none remain in it; but did unto the king thereof as he did unto the king of Jericho. \nAnd Joshua passed from Libnah, and all Israel with him, unto Lachish, and encamped against it, and fought against it: \nAnd the LORD delivered Lachish into the hand of Israel, which took it on the second day, and smote it with the edge of the sword, and all the souls that were therein, according to all that he had done to Libnah. \nThen Horam king of Gezer came up to help Lachish; and Joshua smote him and his people, until he had left him none remaining. \nAnd from Lachish Joshua passed unto Eglon, and all Israel with him; and they encamped against it, and fought against it: \nAnd they took it on that day, and smote it with the edge of the sword, and all the souls that were therein he utterly destroyed that day, according to all that he had done to Lachish. \nAnd Joshua went up from Eglon, and all Israel with him, unto Hebron; and they fought against it: \nAnd they took it, and smote it with the edge of the sword, and the king thereof, and all the cities thereof, and all the souls that were therein; he left none remaining, according to all that he had done to Eglon; but destroyed it utterly, and all the souls that were therein. \nAnd Joshua returned, and all Israel with him, to Debir; and fought against it: \nAnd he took it, and the king thereof, and all the cities thereof; and they smote them with the edge of the sword, and utterly destroyed all the souls that were therein; he left none remaining: as he had done to Hebron, so he did to Debir, and to the king thereof; as he had done also to Libnah, and to her king. \nSo Joshua smote all the country of the hills, and of the south, and of the vale, and of the springs, and all their kings: he left none remaining, but utterly destroyed all that breathed, as the LORD God of Israel commanded. \nAnd Joshua smote them from Kadeshbarnea even unto Gaza, and all the country of Goshen, even unto Gibeon. \nAnd all these kings and their land did Joshua take at one time, because the LORD God of Israel fought for Israel. \nAnd Joshua returned, and all Israel with him, unto the camp to Gilgal. \nAnd it came to pass, when Jabin king of Hazor had heard those things, that he sent to Jobab king of Madon, and to the king of Shimron, and to the king of Achshaph, \nAnd to the kings that were on the north of the mountains, and of the plains south of Chinneroth, and in the valley, and in the borders of Dor on the west, \nAnd to the Canaanite on the east and on the west, and to the Amorite, and the Hittite, and the Perizzite, and the Jebusite in the mountains, and to the Hivite under Hermon in the land of Mizpeh. \nAnd they went out, they and all their hosts with them, much people, even as the sand that is upon the sea shore in multitude, with horses and chariots very many. \nAnd when all these kings were met together, they came and pitched together at the waters of Merom, to fight against Israel. \nAnd the LORD said unto Joshua, Be not afraid because of them: for to morrow about this time will I deliver them up all slain before Israel: thou shalt hough their horses, and burn their chariots with fire. \nSo Joshua came, and all the people of war with him, against them by the waters of Merom suddenly; and they fell upon them. \nAnd the LORD delivered them into the hand of Israel, who smote them, and chased them unto great Zidon, and unto Misrephothmaim, and unto the valley of Mizpeh eastward; and they smote them, until they left them none remaining. \nAnd Joshua did unto them as the LORD bade him: he houghed their horses, and burnt their chariots with fire. \nAnd Joshua at that time turned back, and took Hazor, and smote the king thereof with the sword: for Hazor beforetime was the head of all those kingdoms. \nAnd they smote all the souls that were therein with the edge of the sword, utterly destroying them: there was not any left to breathe: and he burnt Hazor with fire. \nAnd all the cities of those kings, and all the kings of them, did Joshua take, and smote them with the edge of the sword, and he utterly destroyed them, as Moses the servant of the LORD commanded. \nBut as for the cities that stood still in their strength, Israel burned none of them, save Hazor only; that did Joshua burn. \nAnd all the spoil of these cities, and the cattle, the children of Israel took for a prey unto themselves; but every man they smote with the edge of the sword, until they had destroyed them, neither left they any to breathe. \nAs the LORD commanded Moses his servant, so did Moses command Joshua, and so did Joshua; he left nothing undone of all that the LORD commanded Moses. \nSo Joshua took all that land, the hills, and all the south country, and all the land of Goshen, and the valley, and the plain, and the mountain of Israel, and the valley of the same; \nEven from the mount Halak, that goeth up to Seir, even unto Baalgad in the valley of Lebanon under mount Hermon: and all their kings he took, and smote them, and slew them. \nJoshua made war a long time with all those kings. \nThere was not a city that made peace with the children of Israel, save the Hivites the inhabitants of Gibeon: all other they took in battle. \nFor it was of the LORD to harden their hearts, that they should come against Israel in battle, that he might destroy them utterly, and that they might have no favour, but that he might destroy them, as the LORD commanded Moses. \nAnd at that time came Joshua, and cut off the Anakims from the mountains, from Hebron, from Debir, from Anab, and from all the mountains of Judah, and from all the mountains of Israel: Joshua destroyed them utterly with their cities. \nThere was none of the Anakims left in the land of the children of Israel: only in Gaza, in Gath, and in Ashdod, there remained. \nSo Joshua took the whole land, according to all that the LORD said unto Moses; and Joshua gave it for an inheritance unto Israel according to their divisions by their tribes. And the land rested from war. \nNow these are the kings of the land, which the children of Israel smote, and possessed their land on the other side Jordan toward the rising of the sun, from the river Arnon unto mount Hermon, and all the plain on the east: \nSihon king of the Amorites, who dwelt in Heshbon, and ruled from Aroer, which is upon the bank of the river Arnon, and from the middle of the river, and from half Gilead, even unto the river Jabbok, which is the border of the children of Ammon; \nAnd from the plain to the sea of Chinneroth on the east, and unto the sea of the plain, even the salt sea on the east, the way to Bethjeshimoth; and from the south, under Ashdothpisgah: \nAnd the coast of Og king of Bashan, which was of the remnant of the giants, that dwelt at Ashtaroth and at Edrei, \nAnd reigned in mount Hermon, and in Salcah, and in all Bashan, unto the border of the Geshurites and the Maachathites, and half Gilead, the border of Sihon king of Heshbon. \nThem did Moses the servant of the LORD and the children of Israel smite: and Moses the servant of the LORD gave it for a possession unto the Reubenites, and the Gadites, and the half tribe of Manasseh. \nAnd these are the kings of the country which Joshua and the children of Israel smote on this side Jordan on the west, from Baalgad in the valley of Lebanon even unto the mount Halak, that goeth up to Seir; which Joshua gave unto the tribes of Israel for a possession according to their divisions; \nIn the mountains, and in the valleys, and in the plains, and in the springs, and in the wilderness, and in the south country; the Hittites, the Amorites, and the Canaanites, the Perizzites, the Hivites, and the Jebusites: \nThe king of Jericho, one; the king of Ai, which is beside Bethel, one; \nThe king of Jerusalem, one; the king of Hebron, one; \nThe king of Jarmuth, one; the king of Lachish, one; \nThe king of Eglon, one; the king of Gezer, one; \nThe king of Debir, one; the king of Geder, one; \nThe king of Hormah, one; the king of Arad, one; \nThe king of Libnah, one; the king of Adullam, one; \nThe king of Makkedah, one; the king of Bethel, one; \nThe king of Tappuah, one; the king of Hepher, one; \nThe king of Aphek, one; the king of Lasharon, one; \nThe king of Madon, one; the king of Hazor, one; \nThe king of Shimronmeron, one; the king of Achshaph, one; \nThe king of Taanach, one; the king of Megiddo, one; \nThe king of Kedesh, one; the king of Jokneam of Carmel, one; \nThe king of Dor in the coast of Dor, one; the king of the nations of Gilgal, one; \nThe king of Tirzah, one: all the kings thirty and one. \nNow Joshua was old and stricken in years; and the LORD said unto him, Thou art old and stricken in years, and there remaineth yet very much land to be possessed. \nThis is the land that yet remaineth: all the borders of the Philistines, and all Geshuri, \nFrom Sihor, which is before Egypt, even unto the borders of Ekron northward, which is counted to the Canaanite: five lords of the Philistines; the Gazathites, and the Ashdothites, the Eshkalonites, the Gittites, and the Ekronites; also the Avites: \nFrom the south, all the land of the Canaanites, and Mearah that is beside the Sidonians unto Aphek, to the borders of the Amorites: \nAnd the land of the Giblites, and all Lebanon, toward the sunrising, from Baalgad under mount Hermon unto the entering into Hamath. \nAll the inhabitants of the hill country from Lebanon unto Misrephothmaim, and all the Sidonians, them will I drive out from before the children of Israel: only divide thou it by lot unto the Israelites for an inheritance, as I have commanded thee. \nNow therefore divide this land for an inheritance unto the nine tribes, and the half tribe of Manasseh, \nWith whom the Reubenites and the Gadites have received their inheritance, which Moses gave them, beyond Jordan eastward, even as Moses the servant of the LORD gave them; \nFrom Aroer, that is upon the bank of the river Arnon, and the city that is in the midst of the river, and all the plain of Medeba unto Dibon; \nAnd all the cities of Sihon king of the Amorites, which reigned in Heshbon, unto the border of the children of Ammon; \nAnd Gilead, and the border of the Geshurites and Maachathites, and all mount Hermon, and all Bashan unto Salcah; \nAll the kingdom of Og in Bashan, which reigned in Ashtaroth and in Edrei, who remained of the remnant of the giants: for these did Moses smite, and cast them out. \nNevertheless the children of Israel expelled not the Geshurites, nor the Maachathites: but the Geshurites and the Maachathites dwell among the Israelites until this day. \nOnly unto the tribes of Levi he gave none inheritance; the sacrifices of the LORD God of Israel made by fire are their inheritance, as he said unto them. \nAnd Moses gave unto the tribe of the children of Reuben inheritance according to their families. \nAnd their coast was from Aroer, that is on the bank of the river Arnon, and the city that is in the midst of the river, and all the plain by Medeba; \nHeshbon, and all her cities that are in the plain; Dibon, and Bamothbaal, and Bethbaalmeon, \nAnd Jahaza, and Kedemoth, and Mephaath, \nAnd Kirjathaim, and Sibmah, and Zarethshahar in the mount of the valley, \nAnd Bethpeor, and Ashdothpisgah, and Bethjeshimoth, \nAnd all the cities of the plain, and all the kingdom of Sihon king of the Amorites, which reigned in Heshbon, whom Moses smote with the princes of Midian, Evi, and Rekem, and Zur, and Hur, and Reba, which were dukes of Sihon, dwelling in the country. \nBalaam also the son of Beor, the soothsayer, did the children of Israel slay with the sword among them that were slain by them. \nAnd the border of the children of Reuben was Jordan, and the border thereof. This was the inheritance of the children of Reuben after their families, the cities and the villages thereof. \nAnd Moses gave inheritance unto the tribe of Gad, even unto the children of Gad according to their families. \nAnd their coast was Jazer, and all the cities of Gilead, and half the land of the children of Ammon, unto Aroer that is before Rabbah; \nAnd from Heshbon unto Ramathmizpeh, and Betonim; and from Mahanaim unto the border of Debir; \nAnd in the valley, Betharam, and Bethnimrah, and Succoth, and Zaphon, the rest of the kingdom of Sihon king of Heshbon, Jordan and his border, even unto the edge of the sea of Chinnereth on the other side Jordan eastward. \nThis is the inheritance of the children of Gad after their families, the cities, and their villages. \nAnd Moses gave inheritance unto the half tribe of Manasseh: and this was the possession of the half tribe of the children of Manasseh by their families. \nAnd their coast was from Mahanaim, all Bashan, all the kingdom of Og king of Bashan, and all the towns of Jair, which are in Bashan, threescore cities: \nAnd half Gilead, and Ashtaroth, and Edrei, cities of the kingdom of Og in Bashan, were pertaining unto the children of Machir the son of Manasseh, even to the one half of the children of Machir by their families. \nThese are the countries which Moses did distribute for inheritance in the plains of Moab, on the other side Jordan, by Jericho, eastward. \nBut unto the tribe of Levi Moses gave not any inheritance: the LORD God of Israel was their inheritance, as he said unto them. \nAnd these are the countries which the children of Israel inherited in the land of Canaan, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, distributed for inheritance to them. \nBy lot was their inheritance, as the LORD commanded by the hand of Moses, for the nine tribes, and for the half tribe. \nFor Moses had given the inheritance of two tribes and an half tribe on the other side Jordan: but unto the Levites he gave none inheritance among them. \nFor the children of Joseph were two tribes, Manasseh and Ephraim: therefore they gave no part unto the Levites in the land, save cities to dwell in, with their suburbs for their cattle and for their substance. \nAs the LORD commanded Moses, so the children of Israel did, and they divided the land. \nThen the children of Judah came unto Joshua in Gilgal: and Caleb the son of Jephunneh the Kenezite said unto him, Thou knowest the thing that the LORD said unto Moses the man of God concerning me and thee in Kadeshbarnea. \nForty years old was I when Moses the servant of the LORD sent me from Kadeshbarnea to espy out the land; and I brought him word again as it was in mine heart. \nNevertheless my brethren that went up with me made the heart of the people melt: but I wholly followed the LORD my God. \nAnd Moses sware on that day, saying, Surely the land whereon thy feet have trodden shall be thine inheritance, and thy children's for ever, because thou hast wholly followed the LORD my God. \nAnd now, behold, the LORD hath kept me alive, as he said, these forty and five years, even since the LORD spake this word unto Moses, while the children of Israel wandered in the wilderness: and now, lo, I am this day fourscore and five years old. \nAs yet I am as strong this day as I was in the day that Moses sent me: as my strength was then, even so is my strength now, for war, both to go out, and to come in. \nNow therefore give me this mountain, whereof the LORD spake in that day; for thou heardest in that day how the Anakims were there, and that the cities were great and fenced: if so be the LORD will be with me, then I shall be able to drive them out, as the LORD said. \nAnd Joshua blessed him, and gave unto Caleb the son of Jephunneh Hebron for an inheritance. \nHebron therefore became the inheritance of Caleb the son of Jephunneh the Kenezite unto this day, because that he wholly followed the LORD God of Israel. \nAnd the name of Hebron before was Kirjatharba; which Arba was a great man among the Anakims. And the land had rest from war. \nThis then was the lot of the tribe of the children of Judah by their families; even to the border of Edom the wilderness of Zin southward was the uttermost part of the south coast. \nAnd their south border was from the shore of the salt sea, from the bay that looketh southward: \nAnd it went out to the south side to Maalehacrabbim, and passed along to Zin, and ascended up on the south side unto Kadeshbarnea, and passed along to Hezron, and went up to Adar, and fetched a compass to Karkaa: \nFrom thence it passed toward Azmon, and went out unto the river of Egypt; and the goings out of that coast were at the sea: this shall be your south coast. \nAnd the east border was the salt sea, even unto the end of Jordan. And their border in the north quarter was from the bay of the sea at the uttermost part of Jordan: \nAnd the border went up to Bethhogla, and passed along by the north of Betharabah; and the border went up to the stone of Bohan the son of Reuben: \nAnd the border went up toward Debir from the valley of Achor, and so northward, looking toward Gilgal, that is before the going up to Adummim, which is on the south side of the river: and the border passed toward the waters of Enshemesh, and the goings out thereof were at Enrogel: \nAnd the border went up by the valley of the son of Hinnom unto the south side of the Jebusite; the same is Jerusalem: and the border went up to the top of the mountain that lieth before the valley of Hinnom westward, which is at the end of the valley of the giants northward: \nAnd the border was drawn from the top of the hill unto the fountain of the water of Nephtoah, and went out to the cities of mount Ephron; and the border was drawn to Baalah, which is Kirjathjearim: \nAnd the border compassed from Baalah westward unto mount Seir, and passed along unto the side of mount Jearim, which is Chesalon, on the north side, and went down to Bethshemesh, and passed on to Timnah: \nAnd the border went out unto the side of Ekron northward: and the border was drawn to Shicron, and passed along to mount Baalah, and went out unto Jabneel; and the goings out of the border were at the sea. \nAnd the west border was to the great sea, and the coast thereof. This is the coast of the children of Judah round about according to their families. \nAnd unto Caleb the son of Jephunneh he gave a part among the children of Judah, according to the commandment of the LORD to Joshua, even the city of Arba the father of Anak, which city is Hebron. \nAnd Caleb drove thence the three sons of Anak, Sheshai, and Ahiman, and Talmai, the children of Anak. \nAnd he went up thence to the inhabitants of Debir: and the name of Debir before was Kirjathsepher. \nAnd Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife. \nAnd Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter to wife. \nAnd it came to pass, as she came unto him, that she moved him to ask of her father a field: and she lighted off her ass; and Caleb said unto her, What wouldest thou? \nWho answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs. \nThis is the inheritance of the tribe of the children of Judah according to their families. \nAnd the uttermost cities of the tribe of the children of Judah toward the coast of Edom southward were Kabzeel, and Eder, and Jagur, \nAnd Kinah, and Dimonah, and Adadah, \nAnd Kedesh, and Hazor, and Ithnan, \nZiph, and Telem, and Bealoth, \nAnd Hazor, Hadattah, and Kerioth, and Hezron, which is Hazor, \nAmam, and Shema, and Moladah, \nAnd Hazargaddah, and Heshmon, and Bethpalet, \nAnd Hazarshual, and Beersheba, and Bizjothjah, \nBaalah, and Iim, and Azem, \nAnd Eltolad, and Chesil, and Hormah, \nAnd Ziklag, and Madmannah, and Sansannah, \nAnd Lebaoth, and Shilhim, and Ain, and Rimmon: all the cities are twenty and nine, with their villages: \nAnd in the valley, Eshtaol, and Zoreah, and Ashnah, \nAnd Zanoah, and Engannim, Tappuah, and Enam, \nJarmuth, and Adullam, Socoh, and Azekah, \nAnd Sharaim, and Adithaim, and Gederah, and Gederothaim; fourteen cities with their villages: \nZenan, and Hadashah, and Migdalgad, \nAnd Dilean, and Mizpeh, and Joktheel, \nLachish, and Bozkath, and Eglon, \nAnd Cabbon, and Lahmam, and Kithlish, \nAnd Gederoth, Bethdagon, and Naamah, and Makkedah; sixteen cities with their villages: \nLibnah, and Ether, and Ashan, \nAnd Jiphtah, and Ashnah, and Nezib, \nAnd Keilah, and Achzib, and Mareshah; nine cities with their villages: \nEkron, with her towns and her villages: \nFrom Ekron even unto the sea, all that lay near Ashdod, with their villages: \nAshdod with her towns and her villages, Gaza with her towns and her villages, unto the river of Egypt, and the great sea, and the border thereof: \nAnd in the mountains, Shamir, and Jattir, and Socoh, \nAnd Dannah, and Kirjathsannah, which is Debir, \nAnd Anab, and Eshtemoh, and Anim, \nAnd Goshen, and Holon, and Giloh; eleven cities with their villages: \nArab, and Dumah, and Eshean, \nAnd Janum, and Bethtappuah, and Aphekah, \nAnd Humtah, and Kirjatharba, which is Hebron, and Zior; nine cities with their villages: \nMaon, Carmel, and Ziph, and Juttah, \nAnd Jezreel, and Jokdeam, and Zanoah, \nCain, Gibeah, and Timnah; ten cities with their villages: \nHalhul, Bethzur, and Gedor, \nAnd Maarath, and Bethanoth, and Eltekon; six cities with their villages: \nKirjathbaal, which is Kirjathjearim, and Rabbah; two cities with their villages: \nIn the wilderness, Betharabah, Middin, and Secacah, \nAnd Nibshan, and the city of Salt, and Engedi; six cities with their villages. \nAs for the Jebusites the inhabitants of Jerusalem, the children of Judah could not drive them out; but the Jebusites dwell with the children of Judah at Jerusalem unto this day. \nAnd the lot of the children of Joseph fell from Jordan by Jericho, unto the water of Jericho on the east, to the wilderness that goeth up from Jericho throughout mount Bethel, \nAnd goeth out from Bethel to Luz, and passeth along unto the borders of Archi to Ataroth, \nAnd goeth down westward to the coast of Japhleti, unto the coast of Bethhoron the nether, and to Gezer; and the goings out thereof are at the sea. \nSo the children of Joseph, Manasseh and Ephraim, took their inheritance. \nAnd the border of the children of Ephraim according to their families was thus: even the border of their inheritance on the east side was Atarothaddar, unto Bethhoron the upper; \nAnd the border went out toward the sea to Michmethah on the north side; and the border went about eastward unto Taanathshiloh, and passed by it on the east to Janohah; \nAnd it went down from Janohah to Ataroth, and to Naarath, and came to Jericho, and went out at Jordan. \nThe border went out from Tappuah westward unto the river Kanah; and the goings out thereof were at the sea. This is the inheritance of the tribe of the children of Ephraim by their families. \nAnd the separate cities for the children of Ephraim were among the inheritance of the children of Manasseh, all the cities with their villages. \nAnd they drave not out the Canaanites that dwelt in Gezer: but the Canaanites dwell among the Ephraimites unto this day, and serve under tribute. \nThere was also a lot for the tribe of Manasseh; for he was the firstborn of Joseph; to wit, for Machir the firstborn of Manasseh, the father of Gilead: because he was a man of war, therefore he had Gilead and Bashan. \nThere was also a lot for the rest of the children of Manasseh by their families; for the children of Abiezer, and for the children of Helek, and for the children of Asriel, and for the children of Shechem, and for the children of Hepher, and for the children of Shemida: these were the male children of Manasseh the son of Joseph by their families. \nBut Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, had no sons, but daughters: and these are the names of his daughters, Mahlah, and Noah, Hoglah, Milcah, and Tirzah. \nAnd they came near before Eleazar the priest, and before Joshua the son of Nun, and before the princes, saying, The LORD commanded Moses to give us an inheritance among our brethren. Therefore according to the commandment of the LORD he gave them an inheritance among the brethren of their father. \nAnd there fell ten portions to Manasseh, beside the land of Gilead and Bashan, which were on the other side Jordan; \nBecause the daughters of Manasseh had an inheritance among his sons: and the rest of Manasseh's sons had the land of Gilead. \nAnd the coast of Manasseh was from Asher to Michmethah, that lieth before Shechem; and the border went along on the right hand unto the inhabitants of Entappuah. \nNow Manasseh had the land of Tappuah: but Tappuah on the border of Manasseh belonged to the children of Ephraim; \nAnd the coast descended unto the river Kanah, southward of the river: these cities of Ephraim are among the cities of Manasseh: the coast of Manasseh also was on the north side of the river, and the outgoings of it were at the sea: \nSouthward it was Ephraim's, and northward it was Manasseh's, and the sea is his border; and they met together in Asher on the north, and in Issachar on the east. \nAnd Manasseh had in Issachar and in Asher Bethshean and her towns, and Ibleam and her towns, and the inhabitants of Dor and her towns, and the inhabitants of Endor and her towns, and the inhabitants of Taanach and her towns, and the inhabitants of Megiddo and her towns, even three countries. \nYet the children of Manasseh could not drive out the inhabitants of those cities; but the Canaanites would dwell in that land. \nYet it came to pass, when the children of Israel were waxen strong, that they put the Canaanites to tribute, but did not utterly drive them out. \nAnd the children of Joseph spake unto Joshua, saying, Why hast thou given me but one lot and one portion to inherit, seeing I am a great people, forasmuch as the LORD hath blessed me hitherto? \nAnd Joshua answered them, If thou be a great people, then get thee up to the wood country, and cut down for thyself there in the land of the Perizzites and of the giants, if mount Ephraim be too narrow for thee. \nAnd the children of Joseph said, The hill is not enough for us: and all the Canaanites that dwell in the land of the valley have chariots of iron, both they who are of Bethshean and her towns, and they who are of the valley of Jezreel. \nAnd Joshua spake unto the house of Joseph, even to Ephraim and to Manasseh, saying, Thou art a great people, and hast great power: thou shalt not have one lot only: \nBut the mountain shall be thine; for it is a wood, and thou shalt cut it down: and the outgoings of it shall be thine: for thou shalt drive out the Canaanites, though they have iron chariots, and though they be strong. \nAnd the whole congregation of the children of Israel assembled together at Shiloh, and set up the tabernacle of the congregation there. And the land was subdued before them. \nAnd there remained among the children of Israel seven tribes, which had not yet received their inheritance. \nAnd Joshua said unto the children of Israel, How long are ye slack to go to possess the land, which the LORD God of your fathers hath given you? \nGive out from among you three men for each tribe: and I will send them, and they shall rise, and go through the land, and describe it according to the inheritance of them; and they shall come again to me. \nAnd they shall divide it into seven parts: Judah shall abide in their coast on the south, and the house of Joseph shall abide in their coasts on the north. \nYe shall therefore describe the land into seven parts, and bring the description hither to me, that I may cast lots for you here before the LORD our God. \nBut the Levites have no part among you; for the priesthood of the LORD is their inheritance: and Gad, and Reuben, and half the tribe of Manasseh, have received their inheritance beyond Jordan on the east, which Moses the servant of the LORD gave them. \nAnd the men arose, and went away: and Joshua charged them that went to describe the land, saying, Go and walk through the land, and describe it, and come again to me, that I may here cast lots for you before the LORD in Shiloh. \nAnd the men went and passed through the land, and described it by cities into seven parts in a book, and came again to Joshua to the host at Shiloh. \nAnd Joshua cast lots for them in Shiloh before the LORD: and there Joshua divided the land unto the children of Israel according to their divisions. \nAnd the lot of the tribe of the children of Benjamin came up according to their families: and the coast of their lot came forth between the children of Judah and the children of Joseph. \nAnd their border on the north side was from Jordan; and the border went up to the side of Jericho on the north side, and went up through the mountains westward; and the goings out thereof were at the wilderness of Bethaven. \nAnd the border went over from thence toward Luz, to the side of Luz, which is Bethel, southward; and the border descended to Atarothadar, near the hill that lieth on the south side of the nether Bethhoron. \nAnd the border was drawn thence, and compassed the corner of the sea southward, from the hill that lieth before Bethhoron southward; and the goings out thereof were at Kirjathbaal, which is Kirjathjearim, a city of the children of Judah: this was the west quarter. \nAnd the south quarter was from the end of Kirjathjearim, and the border went out on the west, and went out to the well of waters of Nephtoah: \nAnd the border came down to the end of the mountain that lieth before the valley of the son of Hinnom, and which is in the valley of the giants on the north, and descended to the valley of Hinnom, to the side of Jebusi on the south, and descended to Enrogel, \nAnd was drawn from the north, and went forth to Enshemesh, and went forth toward Geliloth, which is over against the going up of Adummim, and descended to the stone of Bohan the son of Reuben, \nAnd passed along toward the side over against Arabah northward, and went down unto Arabah: \nAnd the border passed along to the side of Bethhoglah northward: and the outgoings of the border were at the north bay of the salt sea at the south end of Jordan: this was the south coast. \nAnd Jordan was the border of it on the east side. This was the inheritance of the children of Benjamin, by the coasts thereof round about, according to their families. \nNow the cities of the tribe of the children of Benjamin according to their families were Jericho, and Bethhoglah, and the valley of Keziz, \nAnd Betharabah, and Zemaraim, and Bethel, \nAnd Avim, and Pharah, and Ophrah, \nAnd Chepharhaammonai, and Ophni, and Gaba; twelve cities with their villages: \nGibeon, and Ramah, and Beeroth, \nAnd Mizpeh, and Chephirah, and Mozah, \nAnd Rekem, and Irpeel, and Taralah, \nAnd Zelah, Eleph, and Jebusi, which is Jerusalem, Gibeath, and Kirjath; fourteen cities with their villages. This is the inheritance of the children of Benjamin according to their families. \nAnd the second lot came forth to Simeon, even for the tribe of the children of Simeon according to their families: and their inheritance was within the inheritance of the children of Judah. \nAnd they had in their inheritance Beersheba, and Sheba, and Moladah, \nAnd Hazarshual, and Balah, and Azem, \nAnd Eltolad, and Bethul, and Hormah, \nAnd Ziklag, and Bethmarcaboth, and Hazarsusah, \nAnd Bethlebaoth, and Sharuhen; thirteen cities and their villages: \nAin, Remmon, and Ether, and Ashan; four cities and their villages: \nAnd all the villages that were round about these cities to Baalathbeer, Ramath of the south. This is the inheritance of the tribe of the children of Simeon according to their families. \nOut of the portion of the children of Judah was the inheritance of the children of Simeon: for the part of the children of Judah was too much for them: therefore the children of Simeon had their inheritance within the inheritance of them. \nAnd the third lot came up for the children of Zebulun according to their families: and the border of their inheritance was unto Sarid: \nAnd their border went up toward the sea, and Maralah, and reached to Dabbasheth, and reached to the river that is before Jokneam; \nAnd turned from Sarid eastward toward the sunrising unto the border of Chislothtabor, and then goeth out to Daberath, and goeth up to Japhia, \nAnd from thence passeth on along on the east to Gittahhepher, to Ittahkazin, and goeth out to Remmonmethoar to Neah; \nAnd the border compasseth it on the north side to Hannathon: and the outgoings thereof are in the valley of Jiphthahel: \nAnd Kattath, and Nahallal, and Shimron, and Idalah, and Bethlehem: twelve cities with their villages. \nThis is the inheritance of the children of Zebulun according to their families, these cities with their villages. \nAnd the fourth lot came out to Issachar, for the children of Issachar according to their families. \nAnd their border was toward Jezreel, and Chesulloth, and Shunem, \nAnd Haphraim, and Shihon, and Anaharath, \nAnd Rabbith, and Kishion, and Abez, \nAnd Remeth, and Engannim, and Enhaddah, and Bethpazzez; \nAnd the coast reacheth to Tabor, and Shahazimah, and Bethshemesh; and the outgoings of their border were at Jordan: sixteen cities with their villages. \nThis is the inheritance of the tribe of the children of Issachar according to their families, the cities and their villages. \nAnd the fifth lot came out for the tribe of the children of Asher according to their families. \nAnd their border was Helkath, and Hali, and Beten, and Achshaph, \nAnd Alammelech, and Amad, and Misheal; and reacheth to Carmel westward, and to Shihorlibnath; \nAnd turneth toward the sunrising to Bethdagon, and reacheth to Zebulun, and to the valley of Jiphthahel toward the north side of Bethemek, and Neiel, and goeth out to Cabul on the left hand, \nAnd Hebron, and Rehob, and Hammon, and Kanah, even unto great Zidon; \nAnd then the coast turneth to Ramah, and to the strong city Tyre; and the coast turneth to Hosah; and the outgoings thereof are at the sea from the coast to Achzib: \nUmmah also, and Aphek, and Rehob: twenty and two cities with their villages. \nThis is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages. \nThe sixth lot came out to the children of Naphtali, even for the children of Naphtali according to their families. \nAnd their coast was from Heleph, from Allon to Zaanannim, and Adami, Nekeb, and Jabneel, unto Lakum; and the outgoings thereof were at Jordan: \nAnd then the coast turneth westward to Aznothtabor, and goeth out from thence to Hukkok, and reacheth to Zebulun on the south side, and reacheth to Asher on the west side, and to Judah upon Jordan toward the sunrising. \nAnd the fenced cities are Ziddim, Zer, and Hammath, Rakkath, and Chinnereth, \nAnd Adamah, and Ramah, and Hazor, \nAnd Kedesh, and Edrei, and Enhazor, \nAnd Iron, and Migdalel, Horem, and Bethanath, and Bethshemesh; nineteen cities with their villages. \nThis is the inheritance of the tribe of the children of Naphtali according to their families, the cities and their villages. \nAnd the seventh lot came out for the tribe of the children of Dan according to their families. \nAnd the coast of their inheritance was Zorah, and Eshtaol, and Irshemesh, \nAnd Shaalabbin, and Ajalon, and Jethlah, \nAnd Elon, and Thimnathah, and Ekron, \nAnd Eltekeh, and Gibbethon, and Baalath, \nAnd Jehud, and Beneberak, and Gathrimmon, \nAnd Mejarkon, and Rakkon, with the border before Japho. \nAnd the coast of the children of Dan went out too little for them: therefore the children of Dan went up to fight against Leshem, and took it, and smote it with the edge of the sword, and possessed it, and dwelt therein, and called Leshem, Dan, after the name of Dan their father. \nThis is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages. \nWhen they had made an end of dividing the land for inheritance by their coasts, the children of Israel gave an inheritance to Joshua the son of Nun among them: \nAccording to the word of the LORD they gave him the city which he asked, even Timnathserah in mount Ephraim: and he built the city, and dwelt therein. \nThese are the inheritances, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, divided for an inheritance by lot in Shiloh before the LORD, at the door of the tabernacle of the congregation. So they made an end of dividing the country. \nThe LORD also spake unto Joshua, saying, \nSpeak to the children of Israel, saying, Appoint out for you cities of refuge, whereof I spake unto you by the hand of Moses: \nThat the slayer that killeth any person unawares and unwittingly may flee thither: and they shall be your refuge from the avenger of blood. \nAnd when he that doth flee unto one of those cities shall stand at the entering of the gate of the city, and shall declare his cause in the ears of the elders of that city, they shall take him into the city unto them, and give him a place, that he may dwell among them. \nAnd if the avenger of blood pursue after him, then they shall not deliver the slayer up into his hand; because he smote his neighbour unwittingly, and hated him not beforetime. \nAnd he shall dwell in that city, until he stand before the congregation for judgment, and until the death of the high priest that shall be in those days: then shall the slayer return, and come unto his own city, and unto his own house, unto the city from whence he fled. \nAnd they appointed Kedesh in Galilee in mount Naphtali, and Shechem in mount Ephraim, and Kirjatharba, which is Hebron, in the mountain of Judah. \nAnd on the other side Jordan by Jericho eastward, they assigned Bezer in the wilderness upon the plain out of the tribe of Reuben, and Ramoth in Gilead out of the tribe of Gad, and Golan in Bashan out of the tribe of Manasseh. \nThese were the cities appointed for all the children of Israel, and for the stranger that sojourneth among them, that whosoever killeth any person at unawares might flee thither, and not die by the hand of the avenger of blood, until he stood before the congregation. \nThen came near the heads of the fathers of the Levites unto Eleazar the priest, and unto Joshua the son of Nun, and unto the heads of the fathers of the tribes of the children of Israel; \nAnd they spake unto them at Shiloh in the land of Canaan, saying, The LORD commanded by the hand of Moses to give us cities to dwell in, with the suburbs thereof for our cattle. \nAnd the children of Israel gave unto the Levites out of their inheritance, at the commandment of the LORD, these cities and their suburbs. \nAnd the lot came out for the families of the Kohathites: and the children of Aaron the priest, which were of the Levites, had by lot out of the tribe of Judah, and out of the tribe of Simeon, and out of the tribe of Benjamin, thirteen cities. \nAnd the rest of the children of Kohath had by lot out of the families of the tribe of Ephraim, and out of the tribe of Dan, and out of the half tribe of Manasseh, ten cities. \nAnd the children of Gershon had by lot out of the families of the tribe of Issachar, and out of the tribe of Asher, and out of the tribe of Naphtali, and out of the half tribe of Manasseh in Bashan, thirteen cities. \nThe children of Merari by their families had out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities. \nAnd the children of Israel gave by lot unto the Levites these cities with their suburbs, as the LORD commanded by the hand of Moses. \nAnd they gave out of the tribe of the children of Judah, and out of the tribe of the children of Simeon, these cities which are here mentioned by name. \nWhich the children of Aaron, being of the families of the Kohathites, who were of the children of Levi, had: for theirs was the first lot. \nAnd they gave them the city of Arba the father of Anak, which city is Hebron, in the hill country of Judah, with the suburbs thereof round about it. \nBut the fields of the city, and the villages thereof, gave they to Caleb the son of Jephunneh for his possession. \nThus they gave to the children of Aaron the priest Hebron with her suburbs, to be a city of refuge for the slayer; and Libnah with her suburbs, \nAnd Jattir with her suburbs, and Eshtemoa with her suburbs, \nAnd Holon with her suburbs, and Debir with her suburbs, \nAnd Ain with her suburbs, and Juttah with her suburbs, and Bethshemesh with her suburbs; nine cities out of those two tribes. \nAnd out of the tribe of Benjamin, Gibeon with her suburbs, Geba with her suburbs, \nAnathoth with her suburbs, and Almon with her suburbs; four cities. \nAll the cities of the children of Aaron, the priests, were thirteen cities with their suburbs. \nAnd the families of the children of Kohath, the Levites which remained of the children of Kohath, even they had the cities of their lot out of the tribe of Ephraim. \nFor they gave them Shechem with her suburbs in mount Ephraim, to be a city of refuge for the slayer; and Gezer with her suburbs, \nAnd Kibzaim with her suburbs, and Bethhoron with her suburbs; four cities. \nAnd out of the tribe of Dan, Eltekeh with her suburbs, Gibbethon with her suburbs, \nAijalon with her suburbs, Gathrimmon with her suburbs; four cities. \nAnd out of the half tribe of Manasseh, Tanach with her suburbs, and Gathrimmon with her suburbs; two cities. \nAll the cities were ten with their suburbs for the families of the children of Kohath that remained. \nAnd unto the children of Gershon, of the families of the Levites, out of the other half tribe of Manasseh they gave Golan in Bashan with her suburbs, to be a city of refuge for the slayer; and Beeshterah with her suburbs; two cities. \nAnd out of the tribe of Issachar, Kishon with her suburbs, Dabareh with her suburbs, \nJarmuth with her suburbs, Engannim with her suburbs; four cities. \nAnd out of the tribe of Asher, Mishal with her suburbs, Abdon with her suburbs, \nHelkath with her suburbs, and Rehob with her suburbs; four cities. \nAnd out of the tribe of Naphtali, Kedesh in Galilee with her suburbs, to be a city of refuge for the slayer; and Hammothdor with her suburbs, and Kartan with her suburbs; three cities. \nAll the cities of the Gershonites according to their families were thirteen cities with their suburbs. \nAnd unto the families of the children of Merari, the rest of the Levites, out of the tribe of Zebulun, Jokneam with her suburbs, and Kartah with her suburbs, \nDimnah with her suburbs, Nahalal with her suburbs; four cities. \nAnd out of the tribe of Reuben, Bezer with her suburbs, and Jahazah with her suburbs, \nKedemoth with her suburbs, and Mephaath with her suburbs; four cities. \nAnd out of the tribe of Gad, Ramoth in Gilead with her suburbs, to be a city of refuge for the slayer; and Mahanaim with her suburbs, \nHeshbon with her suburbs, Jazer with her suburbs; four cities in all. \nSo all the cities for the children of Merari by their families, which were remaining of the families of the Levites, were by their lot twelve cities. \nAll the cities of the Levites within the possession of the children of Israel were forty and eight cities with their suburbs. \nThese cities were every one with their suburbs round about them: thus were all these cities. \nAnd the LORD gave unto Israel all the land which he sware to give unto their fathers; and they possessed it, and dwelt therein. \nAnd the LORD gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the LORD delivered all their enemies into their hand. \nThere failed not ought of any good thing which the LORD had spoken unto the house of Israel; all came to pass. \nThen Joshua called the Reubenites, and the Gadites, and the half tribe of Manasseh, \nAnd said unto them, Ye have kept all that Moses the servant of the LORD commanded you, and have obeyed my voice in all that I commanded you: \nYe have not left your brethren these many days unto this day, but have kept the charge of the commandment of the LORD your God. \nAnd now the LORD your God hath given rest unto your brethren, as he promised them: therefore now return ye, and get you unto your tents, and unto the land of your possession, which Moses the servant of the LORD gave you on the other side Jordan. \nBut take diligent heed to do the commandment and the law, which Moses the servant of the LORD charged you, to love the LORD your God, and to walk in all his ways, and to keep his commandments, and to cleave unto him, and to serve him with all your heart and with all your soul. \nSo Joshua blessed them, and sent them away: and they went unto their tents. \nNow to the one half of the tribe of Manasseh Moses had given possession in Bashan: but unto the other half thereof gave Joshua among their brethren on this side Jordan westward. And when Joshua sent them away also unto their tents, then he blessed them, \nAnd he spake unto them, saying, Return with much riches unto your tents, and with very much cattle, with silver, and with gold, and with brass, and with iron, and with very much raiment: divide the spoil of your enemies with your brethren. \nAnd the children of Reuben and the children of Gad and the half tribe of Manasseh returned, and departed from the children of Israel out of Shiloh, which is in the land of Canaan, to go unto the country of Gilead, to the land of their possession, whereof they were possessed, according to the word of the LORD by the hand of Moses. \nAnd when they came unto the borders of Jordan, that are in the land of Canaan, the children of Reuben and the children of Gad and the half tribe of Manasseh built there an altar by Jordan, a great altar to see to. \nAnd the children of Israel heard say, Behold, the children of Reuben and the children of Gad and the half tribe of Manasseh have built an altar over against the land of Canaan, in the borders of Jordan, at the passage of the children of Israel. \nAnd when the children of Israel heard of it, the whole congregation of the children of Israel gathered themselves together at Shiloh, to go up to war against them. \nAnd the children of Israel sent unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, into the land of Gilead, Phinehas the son of Eleazar the priest, \nAnd with him ten princes, of each chief house a prince throughout all the tribes of Israel; and each one was an head of the house of their fathers among the thousands of Israel. \nAnd they came unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, unto the land of Gilead, and they spake with them, saying, \nThus saith the whole congregation of the LORD, What trespass is this that ye have committed against the God of Israel, to turn away this day from following the LORD, in that ye have builded you an altar, that ye might rebel this day against the LORD? \nIs the iniquity of Peor too little for us, from which we are not cleansed until this day, although there was a plague in the congregation of the LORD, \nBut that ye must turn away this day from following the LORD? and it will be, seeing ye rebel to day against the LORD, that to morrow he will be wroth with the whole congregation of Israel. \nNotwithstanding, if the land of your possession be unclean, then pass ye over unto the land of the possession of the LORD, wherein the LORD's tabernacle dwelleth, and take possession among us: but rebel not against the LORD, nor rebel against us, in building you an altar beside the altar of the LORD our God. \nDid not Achan the son of Zerah commit a trespass in the accursed thing, and wrath fell on all the congregation of Israel? and that man perished not alone in his iniquity. \nThen the children of Reuben and the children of Gad and the half tribe of Manasseh answered, and said unto the heads of the thousands of Israel, \nThe LORD God of gods, the LORD God of gods, he knoweth, and Israel he shall know; if it be in rebellion, or if in transgression against the LORD, (save us not this day,) \nThat we have built us an altar to turn from following the LORD, or if to offer thereon burnt offering or meat offering, or if to offer peace offerings thereon, let the LORD himself require it; \nAnd if we have not rather done it for fear of this thing, saying, In time to come your children might speak unto our children, saying, What have ye to do with the LORD God of Israel? \nFor the LORD hath made Jordan a border between us and you, ye children of Reuben and children of Gad; ye have no part in the LORD: so shall your children make our children cease from fearing the LORD. \nTherefore we said, Let us now prepare to build us an altar, not for burnt offering, nor for sacrifice: \nBut that it may be a witness between us, and you, and our generations after us, that we might do the service of the LORD before him with our burnt offerings, and with our sacrifices, and with our peace offerings; that your children may not say to our children in time to come, Ye have no part in the LORD. \nTherefore said we, that it shall be, when they should so say to us or to our generations in time to come, that we may say again, Behold the pattern of the altar of the LORD, which our fathers made, not for burnt offerings, nor for sacrifices; but it is a witness between us and you. \nGod forbid that we should rebel against the LORD, and turn this day from following the LORD, to build an altar for burnt offerings, for meat offerings, or for sacrifices, beside the altar of the LORD our God that is before his tabernacle. \nAnd when Phinehas the priest, and the princes of the congregation and heads of the thousands of Israel which were with him, heard the words that the children of Reuben and the children of Gad and the children of Manasseh spake, it pleased them. \nAnd Phinehas the son of Eleazar the priest said unto the children of Reuben, and to the children of Gad, and to the children of Manasseh, This day we perceive that the LORD is among us, because ye have not committed this trespass against the LORD: now ye have delivered the children of Israel out of the hand of the LORD. \nAnd Phinehas the son of Eleazar the priest, and the princes, returned from the children of Reuben, and from the children of Gad, out of the land of Gilead, unto the land of Canaan, to the children of Israel, and brought them word again. \nAnd the thing pleased the children of Israel; and the children of Israel blessed God, and did not intend to go up against them in battle, to destroy the land wherein the children of Reuben and Gad dwelt. \nAnd the children of Reuben and the children of Gad called the altar Ed: for it shall be a witness between us that the LORD is God. \nAnd it came to pass a long time after that the LORD had given rest unto Israel from all their enemies round about, that Joshua waxed old and stricken in age. \nAnd Joshua called for all Israel, and for their elders, and for their heads, and for their judges, and for their officers, and said unto them, I am old and stricken in age: \nAnd ye have seen all that the LORD your God hath done unto all these nations because of you; for the LORD your God is he that hath fought for you. \nBehold, I have divided unto you by lot these nations that remain, to be an inheritance for your tribes, from Jordan, with all the nations that I have cut off, even unto the great sea westward. \nAnd the LORD your God, he shall expel them from before you, and drive them from out of your sight; and ye shall possess their land, as the LORD your God hath promised unto you. \nBe ye therefore very courageous to keep and to do all that is written in the book of the law of Moses, that ye turn not aside therefrom to the right hand or to the left; \nThat ye come not among these nations, these that remain among you; neither make mention of the name of their gods, nor cause to swear by them, neither serve them, nor bow yourselves unto them: \nBut cleave unto the LORD your God, as ye have done unto this day. \nFor the LORD hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day. \nOne man of you shall chase a thousand: for the LORD your God, he it is that fighteth for you, as he hath promised you. \nTake good heed therefore unto yourselves, that ye love the LORD your God. \nElse if ye do in any wise go back, and cleave unto the remnant of these nations, even these that remain among you, and shall make marriages with them, and go in unto them, and they to you: \nKnow for a certainty that the LORD your God will no more drive out any of these nations from before you; but they shall be snares and traps unto you, and scourges in your sides, and thorns in your eyes, until ye perish from off this good land which the LORD your God hath given you. \nAnd, behold, this day I am going the way of all the earth: and ye know in all your hearts and in all your souls, that not one thing hath failed of all the good things which the LORD your God spake concerning you; all are come to pass unto you, and not one thing hath failed thereof. \nTherefore it shall come to pass, that as all good things are come upon you, which the LORD your God promised you; so shall the LORD bring upon you all evil things, until he have destroyed you from off this good land which the LORD your God hath given you. \nWhen ye have transgressed the covenant of the LORD your God, which he commanded you, and have gone and served other gods, and bowed yourselves to them; then shall the anger of the LORD be kindled against you, and ye shall perish quickly from off the good land which he hath given unto you. \nAnd Joshua gathered all the tribes of Israel to Shechem, and called for the elders of Israel, and for their heads, and for their judges, and for their officers; and they presented themselves before God. \nAnd Joshua said unto all the people, Thus saith the LORD God of Israel, Your fathers dwelt on the other side of the flood in old time, even Terah, the father of Abraham, and the father of Nachor: and they served other gods. \nAnd I took your father Abraham from the other side of the flood, and led him throughout all the land of Canaan, and multiplied his seed, and gave him Isaac. \nAnd I gave unto Isaac Jacob and Esau: and I gave unto Esau mount Seir, to possess it; but Jacob and his children went down into Egypt. \nI sent Moses also and Aaron, and I plagued Egypt, according to that which I did among them: and afterward I brought you out. \nAnd I brought your fathers out of Egypt: and ye came unto the sea; and the Egyptians pursued after your fathers with chariots and horsemen unto the Red sea. \nAnd when they cried unto the LORD, he put darkness between you and the Egyptians, and brought the sea upon them, and covered them; and your eyes have seen what I have done in Egypt: and ye dwelt in the wilderness a long season. \nAnd I brought you into the land of the Amorites, which dwelt on the other side Jordan; and they fought with you: and I gave them into your hand, that ye might possess their land; and I destroyed them from before you. \nThen Balak the son of Zippor, king of Moab, arose and warred against Israel, and sent and called Balaam the son of Beor to curse you: \nBut I would not hearken unto Balaam; therefore he blessed you still: so I delivered you out of his hand. \nAnd you went over Jordan, and came unto Jericho: and the men of Jericho fought against you, the Amorites, and the Perizzites, and the Canaanites, and the Hittites, and the Girgashites, the Hivites, and the Jebusites; and I delivered them into your hand. \nAnd I sent the hornet before you, which drave them out from before you, even the two kings of the Amorites; but not with thy sword, nor with thy bow. \nAnd I have given you a land for which ye did not labour, and cities which ye built not, and ye dwell in them; of the vineyards and oliveyards which ye planted not do ye eat. \nNow therefore fear the LORD, and serve him in sincerity and in truth: and put away the gods which your fathers served on the other side of the flood, and in Egypt; and serve ye the LORD. \nAnd if it seem evil unto you to serve the LORD, choose you this day whom ye will serve; whether the gods which your fathers served that were on the other side of the flood, or the gods of the Amorites, in whose land ye dwell: but as for me and my house, we will serve the LORD. \nAnd the people answered and said, God forbid that we should forsake the LORD, to serve other gods; \nFor the LORD our God, he it is that brought us up and our fathers out of the land of Egypt, from the house of bondage, and which did those great signs in our sight, and preserved us in all the way wherein we went, and among all the people through whom we passed: \nAnd the LORD drave out from before us all the people, even the Amorites which dwelt in the land: therefore will we also serve the LORD; for he is our God. \nAnd Joshua said unto the people, Ye cannot serve the LORD: for he is an holy God; he is a jealous God; he will not forgive your transgressions nor your sins. \nIf ye forsake the LORD, and serve strange gods, then he will turn and do you hurt, and consume you, after that he hath done you good. \nAnd the people said unto Joshua, Nay; but we will serve the LORD. \nAnd Joshua said unto the people, Ye are witnesses against yourselves that ye have chosen you the LORD, to serve him. And they said, We are witnesses. \nNow therefore put away, said he, the strange gods which are among you, and incline your heart unto the LORD God of Israel. \nAnd the people said unto Joshua, The LORD our God will we serve, and his voice will we obey. \nSo Joshua made a covenant with the people that day, and set them a statute and an ordinance in Shechem. \nAnd Joshua wrote these words in the book of the law of God, and took a great stone, and set it up there under an oak, that was by the sanctuary of the LORD. \nAnd Joshua said unto all the people, Behold, this stone shall be a witness unto us; for it hath heard all the words of the LORD which he spake unto us: it shall be therefore a witness unto you, lest ye deny your God. \nSo Joshua let the people depart, every man unto his inheritance. \nAnd it came to pass after these things, that Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old. \nAnd they buried him in the border of his inheritance in Timnathserah, which is in mount Ephraim, on the north side of the hill of Gaash. \nAnd Israel served the LORD all the days of Joshua, and all the days of the elders that overlived Joshua, and which had known all the works of the LORD, that he had done for Israel. \nAnd the bones of Joseph, which the children of Israel brought up out of Egypt, buried they in Shechem, in a parcel of ground which Jacob bought of the sons of Hamor the father of Shechem for an hundred pieces of silver: and it became the inheritance of the children of Joseph. \nAnd Eleazar the son of Aaron died; and they buried him in a hill that pertained to Phinehas his son, which was given him in mount Ephraim. \nNow after the death of Joshua it came to pass, that the children of Israel asked the LORD, saying, Who shall go up for us against the Canaanites first, to fight against them? \nAnd the LORD said, Judah shall go up: behold, I have delivered the land into his hand. \nAnd Judah said unto Simeon his brother, Come up with me into my lot, that we may fight against the Canaanites; and I likewise will go with thee into thy lot. So Simeon went with him. \nAnd Judah went up; and the LORD delivered the Canaanites and the Perizzites into their hand: and they slew of them in Bezek ten thousand men. \nAnd they found Adonibezek in Bezek: and they fought against him, and they slew the Canaanites and the Perizzites. \nBut Adonibezek fled; and they pursued after him, and caught him, and cut off his thumbs and his great toes. \nAnd Adonibezek said, Threescore and ten kings, having their thumbs and their great toes cut off, gathered their meat under my table: as I have done, so God hath requited me. And they brought him to Jerusalem, and there he died. \nNow the children of Judah had fought against Jerusalem, and had taken it, and smitten it with the edge of the sword, and set the city on fire. \nAnd afterward the children of Judah went down to fight against the Canaanites, that dwelt in the mountain, and in the south, and in the valley. \nAnd Judah went against the Canaanites that dwelt in Hebron: (now the name of Hebron before was Kirjatharba:) and they slew Sheshai, and Ahiman, and Talmai. \nAnd from thence he went against the inhabitants of Debir: and the name of Debir before was Kirjathsepher: \nAnd Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife. \nAnd Othniel the son of Kenaz, Caleb's younger brother, took it: and he gave him Achsah his daughter to wife. \nAnd it came to pass, when she came to him, that she moved him to ask of her father a field: and she lighted from off her ass; and Caleb said unto her, What wilt thou? \nAnd she said unto him, Give me a blessing: for thou hast given me a south land; give me also springs of water. And Caleb gave her the upper springs and the nether springs. \nAnd the children of the Kenite, Moses' father in law, went up out of the city of palm trees with the children of Judah into the wilderness of Judah, which lieth in the south of Arad; and they went and dwelt among the people. \nAnd Judah went with Simeon his brother, and they slew the Canaanites that inhabited Zephath, and utterly destroyed it. And the name of the city was called Hormah. \nAlso Judah took Gaza with the coast thereof, and Askelon with the coast thereof, and Ekron with the coast thereof. \nAnd the LORD was with Judah; and he drave out the inhabitants of the mountain; but could not drive out the inhabitants of the valley, because they had chariots of iron. \nAnd they gave Hebron unto Caleb, as Moses said: and he expelled thence the three sons of Anak. \nAnd the children of Benjamin did not drive out the Jebusites that inhabited Jerusalem; but the Jebusites dwell with the children of Benjamin in Jerusalem unto this day. \nAnd the house of Joseph, they also went up against Bethel: and the LORD was with them. \nAnd the house of Joseph sent to descry Bethel. (Now the name of the city before was Luz.) \nAnd the spies saw a man come forth out of the city, and they said unto him, Shew us, we pray thee, the entrance into the city, and we will shew thee mercy. \nAnd when he shewed them the entrance into the city, they smote the city with the edge of the sword; but they let go the man and all his family. \nAnd the man went into the land of the Hittites, and built a city, and called the name thereof Luz: which is the name thereof unto this day. \nNeither did Manasseh drive out the inhabitants of Bethshean and her towns, nor Taanach and her towns, nor the inhabitants of Dor and her towns, nor the inhabitants of Ibleam and her towns, nor the inhabitants of Megiddo and her towns: but the Canaanites would dwell in that land. \nAnd it came to pass, when Israel was strong, that they put the Canaanites to tribute, and did not utterly drive them out. \nNeither did Ephraim drive out the Canaanites that dwelt in Gezer; but the Canaanites dwelt in Gezer among them. \nNeither did Zebulun drive out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites dwelt among them, and became tributaries. \nNeither did Asher drive out the inhabitants of Accho, nor the inhabitants of Zidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor of Aphik, nor of Rehob: \nBut the Asherites dwelt among the Canaanites, the inhabitants of the land: for they did not drive them out. \nNeither did Naphtali drive out the inhabitants of Bethshemesh, nor the inhabitants of Bethanath; but he dwelt among the Canaanites, the inhabitants of the land: nevertheless the inhabitants of Bethshemesh and of Bethanath became tributaries unto them. \nAnd the Amorites forced the children of Dan into the mountain: for they would not suffer them to come down to the valley: \nBut the Amorites would dwell in mount Heres in Aijalon, and in Shaalbim: yet the hand of the house of Joseph prevailed, so that they became tributaries. \nAnd the coast of the Amorites was from the going up to Akrabbim, from the rock, and upward. \nAnd an angel of the LORD came up from Gilgal to Bochim, and said, I made you to go up out of Egypt, and have brought you unto the land which I sware unto your fathers; and I said, I will never break my covenant with you. \nAnd ye shall make no league with the inhabitants of this land; ye shall throw down their altars: but ye have not obeyed my voice: why have ye done this? \nWherefore I also said, I will not drive them out from before you; but they shall be as thorns in your sides, and their gods shall be a snare unto you. \nAnd it came to pass, when the angel of the LORD spake these words unto all the children of Israel, that the people lifted up their voice, and wept. \nAnd they called the name of that place Bochim: and they sacrificed there unto the LORD. \nAnd when Joshua had let the people go, the children of Israel went every man unto his inheritance to possess the land. \nAnd the people served the LORD all the days of Joshua, and all the days of the elders that outlived Joshua, who had seen all the great works of the LORD, that he did for Israel. \nAnd Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old. \nAnd they buried him in the border of his inheritance in Timnathheres, in the mount of Ephraim, on the north side of the hill Gaash. \nAnd also all that generation were gathered unto their fathers: and there arose another generation after them, which knew not the LORD, nor yet the works which he had done for Israel. \nAnd the children of Israel did evil in the sight of the LORD, and served Baalim: \nAnd they forsook the LORD God of their fathers, which brought them out of the land of Egypt, and followed other gods, of the gods of the people that were round about them, and bowed themselves unto them, and provoked the LORD to anger. \nAnd they forsook the LORD, and served Baal and Ashtaroth. \nAnd the anger of the LORD was hot against Israel, and he delivered them into the hands of spoilers that spoiled them, and he sold them into the hands of their enemies round about, so that they could not any longer stand before their enemies. \nWhithersoever they went out, the hand of the LORD was against them for evil, as the LORD had said, and as the LORD had sworn unto them: and they were greatly distressed. \nNevertheless the LORD raised up judges, which delivered them out of the hand of those that spoiled them. \nAnd yet they would not hearken unto their judges, but they went a whoring after other gods, and bowed themselves unto them: they turned quickly out of the way which their fathers walked in, obeying the commandments of the LORD; but they did not so. \nAnd when the LORD raised them up judges, then the LORD was with the judge, and delivered them out of the hand of their enemies all the days of the judge: for it repented the LORD because of their groanings by reason of them that oppressed them and vexed them. \nAnd it came to pass, when the judge was dead, that they returned, and corrupted themselves more than their fathers, in following other gods to serve them, and to bow down unto them; they ceased not from their own doings, nor from their stubborn way. \nAnd the anger of the LORD was hot against Israel; and he said, Because that this people hath transgressed my covenant which I commanded their fathers, and have not hearkened unto my voice; \nI also will not henceforth drive out any from before them of the nations which Joshua left when he died: \nThat through them I may prove Israel, whether they will keep the way of the LORD to walk therein, as their fathers did keep it, or not. \nTherefore the LORD left those nations, without driving them out hastily; neither delivered he them into the hand of Joshua. \nNow these are the nations which the LORD left, to prove Israel by them, even as many of Israel as had not known all the wars of Canaan; \nOnly that the generations of the children of Israel might know, to teach them war, at the least such as before knew nothing thereof; \nNamely, five lords of the Philistines, and all the Canaanites, and the Sidonians, and the Hivites that dwelt in mount Lebanon, from mount Baalhermon unto the entering in of Hamath. \nAnd they were to prove Israel by them, to know whether they would hearken unto the commandments of the LORD, which he commanded their fathers by the hand of Moses. \nAnd the children of Israel dwelt among the Canaanites, Hittites, and Amorites, and Perizzites, and Hivites, and Jebusites: \nAnd they took their daughters to be their wives, and gave their daughters to their sons, and served their gods. \nAnd the children of Israel did evil in the sight of the LORD, and forgat the LORD their God, and served Baalim and the groves. \nTherefore the anger of the LORD was hot against Israel, and he sold them into the hand of Chushanrishathaim king of Mesopotamia: and the children of Israel served Chushanrishathaim eight years. \nAnd when the children of Israel cried unto the LORD, the LORD raised up a deliverer to the children of Israel, who delivered them, even Othniel the son of Kenaz, Caleb's younger brother. \nAnd the Spirit of the LORD came upon him, and he judged Israel, and went out to war: and the LORD delivered Chushanrishathaim king of Mesopotamia into his hand; and his hand prevailed against Chushanrishathaim. \nAnd the land had rest forty years. And Othniel the son of Kenaz died. \nAnd the children of Israel did evil again in the sight of the LORD: and the LORD strengthened Eglon the king of Moab against Israel, because they had done evil in the sight of the LORD. \nAnd he gathered unto him the children of Ammon and Amalek, and went and smote Israel, and possessed the city of palm trees. \nSo the children of Israel served Eglon the king of Moab eighteen years. \nBut when the children of Israel cried unto the LORD, the LORD raised them up a deliverer, Ehud the son of Gera, a Benjamite, a man lefthanded: and by him the children of Israel sent a present unto Eglon the king of Moab. \nBut Ehud made him a dagger which had two edges, of a cubit length; and he did gird it under his raiment upon his right thigh. \nAnd he brought the present unto Eglon king of Moab: and Eglon was a very fat man. \nAnd when he had made an end to offer the present, he sent away the people that bare the present. \nBut he himself turned again from the quarries that were by Gilgal, and said, I have a secret errand unto thee, O king: who said, Keep silence. And all that stood by him went out from him. \nAnd Ehud came unto him; and he was sitting in a summer parlour, which he had for himself alone. And Ehud said, I have a message from God unto thee. And he arose out of his seat. \nAnd Ehud put forth his left hand, and took the dagger from his right thigh, and thrust it into his belly: \nAnd the haft also went in after the blade; and the fat closed upon the blade, so that he could not draw the dagger out of his belly; and the dirt came out. \nThen Ehud went forth through the porch, and shut the doors of the parlour upon him, and locked them. \nWhen he was gone out, his servants came; and when they saw that, behold, the doors of the parlour were locked, they said, Surely he covereth his feet in his summer chamber. \nAnd they tarried till they were ashamed: and, behold, he opened not the doors of the parlour; therefore they took a key, and opened them: and, behold, their lord was fallen down dead on the earth. \nAnd Ehud escaped while they tarried, and passed beyond the quarries, and escaped unto Seirath. \nAnd it came to pass, when he was come, that he blew a trumpet in the mountain of Ephraim, and the children of Israel went down with him from the mount, and he before them. \nAnd he said unto them, Follow after me: for the LORD hath delivered your enemies the Moabites into your hand. And they went down after him, and took the fords of Jordan toward Moab, and suffered not a man to pass over. \nAnd they slew of Moab at that time about ten thousand men, all lusty, and all men of valour; and there escaped not a man. \nSo Moab was subdued that day under the hand of Israel. And the land had rest fourscore years. \nAnd after him was Shamgar the son of Anath, which slew of the Philistines six hundred men with an ox goad: and he also delivered Israel. \nAnd the children of Israel again did evil in the sight of the LORD, when Ehud was dead. \nAnd the LORD sold them into the hand of Jabin king of Canaan, that reigned in Hazor; the captain of whose host was Sisera, which dwelt in Harosheth of the Gentiles. \nAnd the children of Israel cried unto the LORD: for he had nine hundred chariots of iron; and twenty years he mightily oppressed the children of Israel. \nAnd Deborah, a prophetess, the wife of Lapidoth, she judged Israel at that time. \nAnd she dwelt under the palm tree of Deborah between Ramah and Bethel in mount Ephraim: and the children of Israel came up to her for judgment. \nAnd she sent and called Barak the son of Abinoam out of Kedeshnaphtali, and said unto him, Hath not the LORD God of Israel commanded, saying, Go and draw toward mount Tabor, and take with thee ten thousand men of the children of Naphtali and of the children of Zebulun? \nAnd I will draw unto thee to the river Kishon Sisera, the captain of Jabin's army, with his chariots and his multitude; and I will deliver him into thine hand. \nAnd Barak said unto her, If thou wilt go with me, then I will go: but if thou wilt not go with me, then I will not go. \nAnd she said, I will surely go with thee: notwithstanding the journey that thou takest shall not be for thine honour; for the LORD shall sell Sisera into the hand of a woman. And Deborah arose, and went with Barak to Kedesh. \nAnd Barak called Zebulun and Naphtali to Kedesh; and he went up with ten thousand men at his feet: and Deborah went up with him. \nNow Heber the Kenite, which was of the children of Hobab the father in law of Moses, had severed himself from the Kenites, and pitched his tent unto the plain of Zaanaim, which is by Kedesh. \nAnd they shewed Sisera that Barak the son of Abinoam was gone up to mount Tabor. \nAnd Sisera gathered together all his chariots, even nine hundred chariots of iron, and all the people that were with him, from Harosheth of the Gentiles unto the river of Kishon. \nAnd Deborah said unto Barak, Up; for this is the day in which the LORD hath delivered Sisera into thine hand: is not the LORD gone out before thee? So Barak went down from mount Tabor, and ten thousand men after him. \nAnd the LORD discomfited Sisera, and all his chariots, and all his host, with the edge of the sword before Barak; so that Sisera lighted down off his chariot, and fled away on his feet. \nBut Barak pursued after the chariots, and after the host, unto Harosheth of the Gentiles: and all the host of Sisera fell upon the edge of the sword; and there was not a man left. \nHowbeit Sisera fled away on his feet to the tent of Jael the wife of Heber the Kenite: for there was peace between Jabin the king of Hazor and the house of Heber the Kenite. \nAnd Jael went out to meet Sisera, and said unto him, Turn in, my lord, turn in to me; fear not. And when he had turned in unto her into the tent, she covered him with a mantle. \nAnd he said unto her, Give me, I pray thee, a little water to drink; for I am thirsty. And she opened a bottle of milk, and gave him drink, and covered him. \nAgain he said unto her, Stand in the door of the tent, and it shall be, when any man doth come and enquire of thee, and say, Is there any man here? that thou shalt say, No. \nThen Jael Heber's wife took a nail of the tent, and took an hammer in her hand, and went softly unto him, and smote the nail into his temples, and fastened it into the ground: for he was fast asleep and weary. So he died. \nAnd, behold, as Barak pursued Sisera, Jael came out to meet him, and said unto him, Come, and I will shew thee the man whom thou seekest. And when he came into her tent, behold, Sisera lay dead, and the nail was in his temples. \nSo God subdued on that day Jabin the king of Canaan before the children of Israel. \nAnd the hand of the children of Israel prospered, and prevailed against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan. \nThen sang Deborah and Barak the son of Abinoam on that day, saying, \nPraise ye the LORD for the avenging of Israel, when the people willingly offered themselves. \nHear, O ye kings; give ear, O ye princes; I, even I, will sing unto the LORD; I will sing praise to the LORD God of Israel. \nLORD, when thou wentest out of Seir, when thou marchedst out of the field of Edom, the earth trembled, and the heavens dropped, the clouds also dropped water. \nThe mountains melted from before the LORD, even that Sinai from before the LORD God of Israel. \nIn the days of Shamgar the son of Anath, in the days of Jael, the highways were unoccupied, and the travellers walked through byways. \nThe inhabitants of the villages ceased, they ceased in Israel, until that I Deborah arose, that I arose a mother in Israel. \nThey chose new gods; then was war in the gates: was there a shield or spear seen among forty thousand in Israel? \nMy heart is toward the governors of Israel, that offered themselves willingly among the people. Bless ye the LORD. \nSpeak, ye that ride on white asses, ye that sit in judgment, and walk by the way. \nThey that are delivered from the noise of archers in the places of drawing water, there shall they rehearse the righteous acts of the LORD, even the righteous acts toward the inhabitants of his villages in Israel: then shall the people of the LORD go down to the gates. \nAwake, awake, Deborah: awake, awake, utter a song: arise, Barak, and lead thy captivity captive, thou son of Abinoam. \nThen he made him that remaineth have dominion over the nobles among the people: the LORD made me have dominion over the mighty. \nOut of Ephraim was there a root of them against Amalek; after thee, Benjamin, among thy people; out of Machir came down governors, and out of Zebulun they that handle the pen of the writer. \nAnd the princes of Issachar were with Deborah; even Issachar, and also Barak: he was sent on foot into the valley. For the divisions of Reuben there were great thoughts of heart. \nWhy abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart. \nGilead abode beyond Jordan: and why did Dan remain in ships? Asher continued on the sea shore, and abode in his breaches. \nZebulun and Naphtali were a people that jeoparded their lives unto the death in the high places of the field. \nThe kings came and fought, then fought the kings of Canaan in Taanach by the waters of Megiddo; they took no gain of money. \nThey fought from heaven; the stars in their courses fought against Sisera. \nThe river of Kishon swept them away, that ancient river, the river Kishon. O my soul, thou hast trodden down strength. \nThen were the horsehoofs broken by the means of the pransings, the pransings of their mighty ones. \nCurse ye Meroz, said the angel of the LORD, curse ye bitterly the inhabitants thereof; because they came not to the help of the LORD, to the help of the LORD against the mighty. \nBlessed above women shall Jael the wife of Heber the Kenite be, blessed shall she be above women in the tent. \nHe asked water, and she gave him milk; she brought forth butter in a lordly dish. \nShe put her hand to the nail, and her right hand to the workmen's hammer; and with the hammer she smote Sisera, she smote off his head, when she had pierced and stricken through his temples. \nAt her feet he bowed, he fell, he lay down: at her feet he bowed, he fell: where he bowed, there he fell down dead. \nThe mother of Sisera looked out at a window, and cried through the lattice, Why is his chariot so long in coming? why tarry the wheels of his chariots? \nHer wise ladies answered her, yea, she returned answer to herself, \nHave they not sped? have they not divided the prey; to every man a damsel or two; to Sisera a prey of divers colours, a prey of divers colours of needlework, of divers colours of needlework on both sides, meet for the necks of them that take the spoil? \nSo let all thine enemies perish, O LORD: but let them that love him be as the sun when he goeth forth in his might. And the land had rest forty years. \nAnd the children of Israel did evil in the sight of the LORD: and the LORD delivered them into the hand of Midian seven years. \nAnd the hand of Midian prevailed against Israel: and because of the Midianites the children of Israel made them the dens which are in the mountains, and caves, and strong holds. \nAnd so it was, when Israel had sown, that the Midianites came up, and the Amalekites, and the children of the east, even they came up against them; \nAnd they encamped against them, and destroyed the increase of the earth, till thou come unto Gaza, and left no sustenance for Israel, neither sheep, nor ox, nor ass. \nFor they came up with their cattle and their tents, and they came as grasshoppers for multitude; for both they and their camels were without number: and they entered into the land to destroy it. \nAnd Israel was greatly impoverished because of the Midianites; and the children of Israel cried unto the LORD. \nAnd it came to pass, when the children of Israel cried unto the LORD because of the Midianites, \nThat the LORD sent a prophet unto the children of Israel, which said unto them, Thus saith the LORD God of Israel, I brought you up from Egypt, and brought you forth out of the house of bondage; \nAnd I delivered you out of the hand of the Egyptians, and out of the hand of all that oppressed you, and drave them out from before you, and gave you their land; \nAnd I said unto you, I am the LORD your God; fear not the gods of the Amorites, in whose land ye dwell: but ye have not obeyed my voice. \nAnd there came an angel of the LORD, and sat under an oak which was in Ophrah, that pertained unto Joash the Abiezrite: and his son Gideon threshed wheat by the winepress, to hide it from the Midianites. \nAnd the angel of the LORD appeared unto him, and said unto him, The LORD is with thee, thou mighty man of valour. \nAnd Gideon said unto him, Oh my Lord, if the LORD be with us, why then is all this befallen us? and where be all his miracles which our fathers told us of, saying, Did not the LORD bring us up from Egypt? but now the LORD hath forsaken us, and delivered us into the hands of the Midianites. \nAnd the LORD looked upon him, and said, Go in this thy might, and thou shalt save Israel from the hand of the Midianites: have not I sent thee? \nAnd he said unto him, Oh my Lord, wherewith shall I save Israel? behold, my family is poor in Manasseh, and I am the least in my father's house. \nAnd the LORD said unto him, Surely I will be with thee, and thou shalt smite the Midianites as one man. \nAnd he said unto him, If now I have found grace in thy sight, then shew me a sign that thou talkest with me. \nDepart not hence, I pray thee, until I come unto thee, and bring forth my present, and set it before thee. And he said, I will tarry until thou come again. \nAnd Gideon went in, and made ready a kid, and unleavened cakes of an ephah of flour: the flesh he put in a basket, and he put the broth in a pot, and brought it out unto him under the oak, and presented it. \nAnd the angel of God said unto him, Take the flesh and the unleavened cakes, and lay them upon this rock, and pour out the broth. And he did so. \nThen the angel of the LORD put forth the end of the staff that was in his hand, and touched the flesh and the unleavened cakes; and there rose up fire out of the rock, and consumed the flesh and the unleavened cakes. Then the angel of the LORD departed out of his sight. \nAnd when Gideon perceived that he was an angel of the LORD, Gideon said, Alas, O LORD God! for because I have seen an angel of the LORD face to face. \nAnd the LORD said unto him, Peace be unto thee; fear not: thou shalt not die. \nThen Gideon built an altar there unto the LORD, and called it Jehovahshalom: unto this day it is yet in Ophrah of the Abiezrites. \nAnd it came to pass the same night, that the LORD said unto him, Take thy father's young bullock, even the second bullock of seven years old, and throw down the altar of Baal that thy father hath, and cut down the grove that is by it: \nAnd build an altar unto the LORD thy God upon the top of this rock, in the ordered place, and take the second bullock, and offer a burnt sacrifice with the wood of the grove which thou shalt cut down. \nThen Gideon took ten men of his servants, and did as the LORD had said unto him: and so it was, because he feared his father's household, and the men of the city, that he could not do it by day, that he did it by night. \nAnd when the men of the city arose early in the morning, behold, the altar of Baal was cast down, and the grove was cut down that was by it, and the second bullock was offered upon the altar that was built. \nAnd they said one to another, Who hath done this thing? And when they enquired and asked, they said, Gideon the son of Joash hath done this thing. \nThen the men of the city said unto Joash, Bring out thy son, that he may die: because he hath cast down the altar of Baal, and because he hath cut down the grove that was by it. \nAnd Joash said unto all that stood against him, Will ye plead for Baal? will ye save him? he that will plead for him, let him be put to death whilst it is yet morning: if he be a god, let him plead for himself, because one hath cast down his altar. \nTherefore on that day he called him Jerubbaal, saying, Let Baal plead against him, because he hath thrown down his altar. \nThen all the Midianites and the Amalekites and the children of the east were gathered together, and went over, and pitched in the valley of Jezreel. \nBut the Spirit of the LORD came upon Gideon, and he blew a trumpet; and Abiezer was gathered after him. \nAnd he sent messengers throughout all Manasseh; who also was gathered after him: and he sent messengers unto Asher, and unto Zebulun, and unto Naphtali; and they came up to meet them. \nAnd Gideon said unto God, If thou wilt save Israel by mine hand, as thou hast said, \nBehold, I will put a fleece of wool in the floor; and if the dew be on the fleece only, and it be dry upon all the earth beside, then shall I know that thou wilt save Israel by mine hand, as thou hast said. \nAnd it was so: for he rose up early on the morrow, and thrust the fleece together, and wringed the dew out of the fleece, a bowl full of water. \nAnd Gideon said unto God, Let not thine anger be hot against me, and I will speak but this once: let me prove, I pray thee, but this once with the fleece; let it now be dry only upon the fleece, and upon all the ground let there be dew. \nAnd God did so that night: for it was dry upon the fleece only, and there was dew on all the ground. \nThen Jerubbaal, who is Gideon, and all the people that were with him, rose up early, and pitched beside the well of Harod: so that the host of the Midianites were on the north side of them, by the hill of Moreh, in the valley. \nAnd the LORD said unto Gideon, The people that are with thee are too many for me to give the Midianites into their hands, lest Israel vaunt themselves against me, saying, Mine own hand hath saved me. \nNow therefore go to, proclaim in the ears of the people, saying, Whosoever is fearful and afraid, let him return and depart early from mount Gilead. And there returned of the people twenty and two thousand; and there remained ten thousand. \nAnd the LORD said unto Gideon, The people are yet too many; bring them down unto the water, and I will try them for thee there: and it shall be, that of whom I say unto thee, This shall go with thee, the same shall go with thee; and of whomsoever I say unto thee, This shall not go with thee, the same shall not go. \nSo he brought down the people unto the water: and the LORD said unto Gideon, Every one that lappeth of the water with his tongue, as a dog lappeth, him shalt thou set by himself; likewise every one that boweth down upon his knees to drink. \nAnd the number of them that lapped, putting their hand to their mouth, were three hundred men: but all the rest of the people bowed down upon their knees to drink water. \nAnd the LORD said unto Gideon, By the three hundred men that lapped will I save you, and deliver the Midianites into thine hand: and let all the other people go every man unto his place. \nSo the people took victuals in their hand, and their trumpets: and he sent all the rest of Israel every man unto his tent, and retained those three hundred men: and the host of Midian was beneath him in the valley. \nAnd it came to pass the same night, that the LORD said unto him, Arise, get thee down unto the host; for I have delivered it into thine hand. \nBut if thou fear to go down, go thou with Phurah thy servant down to the host: \nAnd thou shalt hear what they say; and afterward shall thine hands be strengthened to go down unto the host. Then went he down with Phurah his servant unto the outside of the armed men that were in the host. \nAnd the Midianites and the Amalekites and all the children of the east lay along in the valley like grasshoppers for multitude; and their camels were without number, as the sand by the sea side for multitude. \nAnd when Gideon was come, behold, there was a man that told a dream unto his fellow, and said, Behold, I dreamed a dream, and, lo, a cake of barley bread tumbled into the host of Midian, and came unto a tent, and smote it that it fell, and overturned it, that the tent lay along. \nAnd his fellow answered and said, This is nothing else save the sword of Gideon the son of Joash, a man of Israel: for into his hand hath God delivered Midian, and all the host. \nAnd it was so, when Gideon heard the telling of the dream, and the interpretation thereof, that he worshipped, and returned into the host of Israel, and said, Arise; for the LORD hath delivered into your hand the host of Midian. \nAnd he divided the three hundred men into three companies, and he put a trumpet in every man's hand, with empty pitchers, and lamps within the pitchers. \nAnd he said unto them, Look on me, and do likewise: and, behold, when I come to the outside of the camp, it shall be that, as I do, so shall ye do. \nWhen I blow with a trumpet, I and all that are with me, then blow ye the trumpets also on every side of all the camp, and say, The sword of the LORD, and of Gideon. \nSo Gideon, and the hundred men that were with him, came unto the outside of the camp in the beginning of the middle watch; and they had but newly set the watch: and they blew the trumpets, and brake the pitchers that were in their hands. \nAnd the three companies blew the trumpets, and brake the pitchers, and held the lamps in their left hands, and the trumpets in their right hands to blow withal: and they cried, The sword of the LORD, and of Gideon. \nAnd they stood every man in his place round about the camp; and all the host ran, and cried, and fled. \nAnd the three hundred blew the trumpets, and the LORD set every man's sword against his fellow, even throughout all the host: and the host fled to Bethshittah in Zererath, and to the border of Abelmeholah, unto Tabbath. \nAnd the men of Israel gathered themselves together out of Naphtali, and out of Asher, and out of all Manasseh, and pursued after the Midianites. \nAnd Gideon sent messengers throughout all mount Ephraim, saying, come down against the Midianites, and take before them the waters unto Bethbarah and Jordan. Then all the men of Ephraim gathered themselves together, and took the waters unto Bethbarah and Jordan. \nAnd they took two princes of the Midianites, Oreb and Zeeb; and they slew Oreb upon the rock Oreb, and Zeeb they slew at the winepress of Zeeb, and pursued Midian, and brought the heads of Oreb and Zeeb to Gideon on the other side Jordan. \nAnd the men of Ephraim said unto him, Why hast thou served us thus, that thou calledst us not, when thou wentest to fight with the Midianites? And they did chide with him sharply. \nAnd he said unto them, What have I done now in comparison of you? Is not the gleaning of the grapes of Ephraim better than the vintage of Abiezer? \nGod hath delivered into your hands the princes of Midian, Oreb and Zeeb: and what was I able to do in comparison of you? Then their anger was abated toward him, when he had said that. \nAnd Gideon came to Jordan, and passed over, he, and the three hundred men that were with him, faint, yet pursuing them. \nAnd he said unto the men of Succoth, Give, I pray you, loaves of bread unto the people that follow me; for they be faint, and I am pursuing after Zebah and Zalmunna, kings of Midian. \nAnd the princes of Succoth said, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thine army? \nAnd Gideon said, Therefore when the LORD hath delivered Zebah and Zalmunna into mine hand, then I will tear your flesh with the thorns of the wilderness and with briers. \nAnd he went up thence to Penuel, and spake unto them likewise: and the men of Penuel answered him as the men of Succoth had answered him. \nAnd he spake also unto the men of Penuel, saying, When I come again in peace, I will break down this tower. \nNow Zebah and Zalmunna were in Karkor, and their hosts with them, about fifteen thousand men, all that were left of all the hosts of the children of the east: for there fell an hundred and twenty thousand men that drew sword. \nAnd Gideon went up by the way of them that dwelt in tents on the east of Nobah and Jogbehah, and smote the host; for the host was secure. \nAnd when Zebah and Zalmunna fled, he pursued after them, and took the two kings of Midian, Zebah and Zalmunna, and discomfited all the host. \nAnd Gideon the son of Joash returned from battle before the sun was up, \nAnd caught a young man of the men of Succoth, and enquired of him: and he described unto him the princes of Succoth, and the elders thereof, even threescore and seventeen men. \nAnd he came unto the men of Succoth, and said, Behold Zebah and Zalmunna, with whom ye did upbraid me, saying, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thy men that are weary? \nAnd he took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth. \nAnd he beat down the tower of Penuel, and slew the men of the city. \nThen said he unto Zebah and Zalmunna, What manner of men were they whom ye slew at Tabor? And they answered, As thou art, so were they; each one resembled the children of a king. \nAnd he said, They were my brethren, even the sons of my mother: as the LORD liveth, if ye had saved them alive, I would not slay you. \nAnd he said unto Jether his firstborn, Up, and slay them. But the youth drew not his sword: for he feared, because he was yet a youth. \nThen Zebah and Zalmunna said, Rise thou, and fall upon us: for as the man is, so is his strength. And Gideon arose, and slew Zebah and Zalmunna, and took away the ornaments that were on their camels' necks. \nThen the men of Israel said unto Gideon, Rule thou over us, both thou, and thy son, and thy son's son also: for thou hast delivered us from the hand of Midian. \nAnd Gideon said unto them, I will not rule over you, neither shall my son rule over you: the LORD shall rule over you. \nAnd Gideon said unto them, I would desire a request of you, that ye would give me every man the earrings of his prey. (For they had golden earrings, because they were Ishmaelites.) \nAnd they answered, We will willingly give them. And they spread a garment, and did cast therein every man the earrings of his prey. \nAnd the weight of the golden earrings that he requested was a thousand and seven hundred shekels of gold; beside ornaments, and collars, and purple raiment that was on the kings of Midian, and beside the chains that were about their camels' necks. \nAnd Gideon made an ephod thereof, and put it in his city, even in Ophrah: and all Israel went thither a whoring after it: which thing became a snare unto Gideon, and to his house. \nThus was Midian subdued before the children of Israel, so that they lifted up their heads no more. And the country was in quietness forty years in the days of Gideon. \nAnd Jerubbaal the son of Joash went and dwelt in his own house. \nAnd Gideon had threescore and ten sons of his body begotten: for he had many wives. \nAnd his concubine that was in Shechem, she also bare him a son, whose name he called Abimelech. \nAnd Gideon the son of Joash died in a good old age, and was buried in the sepulchre of Joash his father, in Ophrah of the Abiezrites. \nAnd it came to pass, as soon as Gideon was dead, that the children of Israel turned again, and went a whoring after Baalim, and made Baalberith their god. \nAnd the children of Israel remembered not the LORD their God, who had delivered them out of the hands of all their enemies on every side: \nNeither shewed they kindness to the house of Jerubbaal, namely, Gideon, according to all the goodness which he had shewed unto Israel. \nAnd Abimelech the son of Jerubbaal went to Shechem unto his mother's brethren, and communed with them, and with all the family of the house of his mother's father, saying, \nSpeak, I pray you, in the ears of all the men of Shechem, Whether is better for you, either that all the sons of Jerubbaal, which are threescore and ten persons, reign over you, or that one reign over you? remember also that I am your bone and your flesh. \nAnd his mother's brethren spake of him in the ears of all the men of Shechem all these words: and their hearts inclined to follow Abimelech; for they said, He is our brother. \nAnd they gave him threescore and ten pieces of silver out of the house of Baalberith, wherewith Abimelech hired vain and light persons, which followed him. \nAnd he went unto his father's house at Ophrah, and slew his brethren the sons of Jerubbaal, being threescore and ten persons, upon one stone: notwithstanding yet Jotham the youngest son of Jerubbaal was left; for he hid himself. \nAnd all the men of Shechem gathered together, and all the house of Millo, and went, and made Abimelech king, by the plain of the pillar that was in Shechem. \nAnd when they told it to Jotham, he went and stood in the top of mount Gerizim, and lifted up his voice, and cried, and said unto them, Hearken unto me, ye men of Shechem, that God may hearken unto you. \nThe trees went forth on a time to anoint a king over them; and they said unto the olive tree, Reign thou over us. \nBut the olive tree said unto them, Should I leave my fatness, wherewith by me they honour God and man, and go to be promoted over the trees? \nAnd the trees said to the fig tree, Come thou, and reign over us. \nBut the fig tree said unto them, Should I forsake my sweetness, and my good fruit, and go to be promoted over the trees? \nThen said the trees unto the vine, Come thou, and reign over us. \nAnd the vine said unto them, Should I leave my wine, which cheereth God and man, and go to be promoted over the trees? \nThen said all the trees unto the bramble, Come thou, and reign over us. \nAnd the bramble said unto the trees, If in truth ye anoint me king over you, then come and put your trust in my shadow: and if not, let fire come out of the bramble, and devour the cedars of Lebanon. \nNow therefore, if ye have done truly and sincerely, in that ye have made Abimelech king, and if ye have dealt well with Jerubbaal and his house, and have done unto him according to the deserving of his hands; \n(For my father fought for you, and adventured his life far, and delivered you out of the hand of Midian: \nAnd ye are risen up against my father's house this day, and have slain his sons, threescore and ten persons, upon one stone, and have made Abimelech, the son of his maidservant, king over the men of Shechem, because he is your brother;) \nIf ye then have dealt truly and sincerely with Jerubbaal and with his house this day, then rejoice ye in Abimelech, and let him also rejoice in you: \nBut if not, let fire come out from Abimelech, and devour the men of Shechem, and the house of Millo; and let fire come out from the men of Shechem, and from the house of Millo, and devour Abimelech. \nAnd Jotham ran away, and fled, and went to Beer, and dwelt there, for fear of Abimelech his brother. \nWhen Abimelech had reigned three years over Israel, \nThen God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech: \nThat the cruelty done to the threescore and ten sons of Jerubbaal might come, and their blood be laid upon Abimelech their brother, which slew them; and upon the men of Shechem, which aided him in the killing of his brethren. \nAnd the men of Shechem set liers in wait for him in the top of the mountains, and they robbed all that came along that way by them: and it was told Abimelech. \nAnd Gaal the son of Ebed came with his brethren, and went over to Shechem: and the men of Shechem put their confidence in him. \nAnd they went out into the fields, and gathered their vineyards, and trode the grapes, and made merry, and went into the house of their god, and did eat and drink, and cursed Abimelech. \nAnd Gaal the son of Ebed said, Who is Abimelech, and who is Shechem, that we should serve him? is not he the son of Jerubbaal? and Zebul his officer? serve the men of Hamor the father of Shechem: for why should we serve him? \nAnd would to God this people were under my hand! then would I remove Abimelech. And he said to Abimelech, Increase thine army, and come out. \nAnd when Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger was kindled. \nAnd he sent messengers unto Abimelech privily, saying, Behold, Gaal the son of Ebed and his brethren be come to Shechem; and, behold, they fortify the city against thee. \nNow therefore up by night, thou and the people that is with thee, and lie in wait in the field: \nAnd it shall be, that in the morning, as soon as the sun is up, thou shalt rise early, and set upon the city: and, behold, when he and the people that is with him come out against thee, then mayest thou do to them as thou shalt find occasion. \nAnd Abimelech rose up, and all the people that were with him, by night, and they laid wait against Shechem in four companies. \nAnd Gaal the son of Ebed went out, and stood in the entering of the gate of the city: and Abimelech rose up, and the people that were with him, from lying in wait. \nAnd when Gaal saw the people, he said to Zebul, Behold, there come people down from the top of the mountains. And Zebul said unto him, Thou seest the shadow of the mountains as if they were men. \nAnd Gaal spake again, and said, See there come people down by the middle of the land, and another company come along by the plain of Meonenim. \nThen said Zebul unto him, Where is now thy mouth, wherewith thou saidst, Who is Abimelech, that we should serve him? is not this the people that thou hast despised? go out, I pray now, and fight with them. \nAnd Gaal went out before the men of Shechem, and fought with Abimelech. \nAnd Abimelech chased him, and he fled before him, and many were overthrown and wounded, even unto the entering of the gate. \nAnd Abimelech dwelt at Arumah: and Zebul thrust out Gaal and his brethren, that they should not dwell in Shechem. \nAnd it came to pass on the morrow, that the people went out into the field; and they told Abimelech. \nAnd he took the people, and divided them into three companies, and laid wait in the field, and looked, and, behold, the people were come forth out of the city; and he rose up against them, and smote them. \nAnd Abimelech, and the company that was with him, rushed forward, and stood in the entering of the gate of the city: and the two other companies ran upon all the people that were in the fields, and slew them. \nAnd Abimelech fought against the city all that day; and he took the city, and slew the people that was therein, and beat down the city, and sowed it with salt. \nAnd when all the men of the tower of Shechem heard that, they entered into an hold of the house of the god Berith. \nAnd it was told Abimelech, that all the men of the tower of Shechem were gathered together. \nAnd Abimelech gat him up to mount Zalmon, he and all the people that were with him; and Abimelech took an axe in his hand, and cut down a bough from the trees, and took it, and laid it on his shoulder, and said unto the people that were with him, What ye have seen me do, make haste, and do as I have done. \nAnd all the people likewise cut down every man his bough, and followed Abimelech, and put them to the hold, and set the hold on fire upon them; so that all the men of the tower of Shechem died also, about a thousand men and women. \nThen went Abimelech to Thebez, and encamped against Thebez, and took it. \nBut there was a strong tower within the city, and thither fled all the men and women, and all they of the city, and shut it to them, and gat them up to the top of the tower. \nAnd Abimelech came unto the tower, and fought against it, and went hard unto the door of the tower to burn it with fire. \nAnd a certain woman cast a piece of a millstone upon Abimelech's head, and all to brake his skull. \nThen he called hastily unto the young man his armourbearer, and said unto him, Draw thy sword, and slay me, that men say not of me, A women slew him. And his young man thrust him through, and he died. \nAnd when the men of Israel saw that Abimelech was dead, they departed every man unto his place. \nThus God rendered the wickedness of Abimelech, which he did unto his father, in slaying his seventy brethren: \nAnd all the evil of the men of Shechem did God render upon their heads: and upon them came the curse of Jotham the son of Jerubbaal. \nAnd after Abimelech there arose to defend Israel Tola the son of Puah, the son of Dodo, a man of Issachar; and he dwelt in Shamir in mount Ephraim. \nAnd he judged Israel twenty and three years, and died, and was buried in Shamir. \nAnd after him arose Jair, a Gileadite, and judged Israel twenty and two years. \nAnd he had thirty sons that rode on thirty ass colts, and they had thirty cities, which are called Havothjair unto this day, which are in the land of Gilead. \nAnd Jair died, and was buried in Camon. \nAnd the children of Israel did evil again in the sight of the LORD, and served Baalim, and Ashtaroth, and the gods of Syria, and the gods of Zidon, and the gods of Moab, and the gods of the children of Ammon, and the gods of the Philistines, and forsook the LORD, and served not him. \nAnd the anger of the LORD was hot against Israel, and he sold them into the hands of the Philistines, and into the hands of the children of Ammon. \nAnd that year they vexed and oppressed the children of Israel: eighteen years, all the children of Israel that were on the other side Jordan in the land of the Amorites, which is in Gilead. \nMoreover the children of Ammon passed over Jordan to fight also against Judah, and against Benjamin, and against the house of Ephraim; so that Israel was sore distressed. \nAnd the children of Israel cried unto the LORD, saying, We have sinned against thee, both because we have forsaken our God, and also served Baalim. \nAnd the LORD said unto the children of Israel, Did not I deliver you from the Egyptians, and from the Amorites, from the children of Ammon, and from the Philistines? \nThe Zidonians also, and the Amalekites, and the Maonites, did oppress you; and ye cried to me, and I delivered you out of their hand. \nYet ye have forsaken me, and served other gods: wherefore I will deliver you no more. \nGo and cry unto the gods which ye have chosen; let them deliver you in the time of your tribulation. \nAnd the children of Israel said unto the LORD, We have sinned: do thou unto us whatsoever seemeth good unto thee; deliver us only, we pray thee, this day. \nAnd they put away the strange gods from among them, and served the LORD: and his soul was grieved for the misery of Israel. \nThen the children of Ammon were gathered together, and encamped in Gilead. And the children of Israel assembled themselves together, and encamped in Mizpeh. \nAnd the people and princes of Gilead said one to another, What man is he that will begin to fight against the children of Ammon? he shall be head over all the inhabitants of Gilead. \nNow Jephthah the Gileadite was a mighty man of valour, and he was the son of an harlot: and Gilead begat Jephthah. \nAnd Gilead's wife bare him sons; and his wife's sons grew up, and they thrust out Jephthah, and said unto him, Thou shalt not inherit in our father's house; for thou art the son of a strange woman. \nThen Jephthah fled from his brethren, and dwelt in the land of Tob: and there were gathered vain men to Jephthah, and went out with him. \nAnd it came to pass in process of time, that the children of Ammon made war against Israel. \nAnd it was so, that when the children of Ammon made war against Israel, the elders of Gilead went to fetch Jephthah out of the land of Tob: \nAnd they said unto Jephthah, Come, and be our captain, that we may fight with the children of Ammon. \nAnd Jephthah said unto the elders of Gilead, Did not ye hate me, and expel me out of my father's house? and why are ye come unto me now when ye are in distress? \nAnd the elders of Gilead said unto Jephthah, Therefore we turn again to thee now, that thou mayest go with us, and fight against the children of Ammon, and be our head over all the inhabitants of Gilead. \nAnd Jephthah said unto the elders of Gilead, If ye bring me home again to fight against the children of Ammon, and the LORD deliver them before me, shall I be your head? \nAnd the elders of Gilead said unto Jephthah, The LORD be witness between us, if we do not so according to thy words. \nThen Jephthah went with the elders of Gilead, and the people made him head and captain over them: and Jephthah uttered all his words before the LORD in Mizpeh. \nAnd Jephthah sent messengers unto the king of the children of Ammon, saying, What hast thou to do with me, that thou art come against me to fight in my land? \nAnd the king of the children of Ammon answered unto the messengers of Jephthah, Because Israel took away my land, when they came up out of Egypt, from Arnon even unto Jabbok, and unto Jordan: now therefore restore those lands again peaceably. \nAnd Jephthah sent messengers again unto the king of the children of Ammon: \nAnd said unto him, Thus saith Jephthah, Israel took not away the land of Moab, nor the land of the children of Ammon: \nBut when Israel came up from Egypt, and walked through the wilderness unto the Red sea, and came to Kadesh; \nThen Israel sent messengers unto the king of Edom, saying, Let me, I pray thee, pass through thy land: but the king of Edom would not hearken thereto. And in like manner they sent unto the king of Moab: but he would not consent: and Israel abode in Kadesh. \nThen they went along through the wilderness, and compassed the land of Edom, and the land of Moab, and came by the east side of the land of Moab, and pitched on the other side of Arnon, but came not within the border of Moab: for Arnon was the border of Moab. \nAnd Israel sent messengers unto Sihon king of the Amorites, the king of Heshbon; and Israel said unto him, Let us pass, we pray thee, through thy land into my place. \nBut Sihon trusted not Israel to pass through his coast: but Sihon gathered all his people together, and pitched in Jahaz, and fought against Israel. \nAnd the LORD God of Israel delivered Sihon and all his people into the hand of Israel, and they smote them: so Israel possessed all the land of the Amorites, the inhabitants of that country. \nAnd they possessed all the coasts of the Amorites, from Arnon even unto Jabbok, and from the wilderness even unto Jordan. \nSo now the LORD God of Israel hath dispossessed the Amorites from before his people Israel, and shouldest thou possess it? \nWilt not thou possess that which Chemosh thy god giveth thee to possess? So whomsoever the LORD our God shall drive out from before us, them will we possess. \nAnd now art thou any thing better than Balak the son of Zippor, king of Moab? did he ever strive against Israel, or did he ever fight against them, \nWhile Israel dwelt in Heshbon and her towns, and in Aroer and her towns, and in all the cities that be along by the coasts of Arnon, three hundred years? why therefore did ye not recover them within that time? \nWherefore I have not sinned against thee, but thou doest me wrong to war against me: the LORD the Judge be judge this day between the children of Israel and the children of Ammon. \nHowbeit the king of the children of Ammon hearkened not unto the words of Jephthah which he sent him. \nThen the Spirit of the LORD came upon Jephthah, and he passed over Gilead, and Manasseh, and passed over Mizpeh of Gilead, and from Mizpeh of Gilead he passed over unto the children of Ammon. \nAnd Jephthah vowed a vow unto the LORD, and said, If thou shalt without fail deliver the children of Ammon into mine hands, \nThen it shall be, that whatsoever cometh forth of the doors of my house to meet me, when I return in peace from the children of Ammon, shall surely be the LORD's, and I will offer it up for a burnt offering. \nSo Jephthah passed over unto the children of Ammon to fight against them; and the LORD delivered them into his hands. \nAnd he smote them from Aroer, even till thou come to Minnith, even twenty cities, and unto the plain of the vineyards, with a very great slaughter. Thus the children of Ammon were subdued before the children of Israel. \nAnd Jephthah came to Mizpeh unto his house, and, behold, his daughter came out to meet him with timbrels and with dances: and she was his only child; beside her he had neither son nor daughter. \nAnd it came to pass, when he saw her, that he rent his clothes, and said, Alas, my daughter! thou hast brought me very low, and thou art one of them that trouble me: for I have opened my mouth unto the LORD, and I cannot go back. \nAnd she said unto him, My father, if thou hast opened thy mouth unto the LORD, do to me according to that which hath proceeded out of thy mouth; forasmuch as the LORD hath taken vengeance for thee of thine enemies, even of the children of Ammon. \nAnd she said unto her father, Let this thing be done for me: let me alone two months, that I may go up and down upon the mountains, and bewail my virginity, I and my fellows. \nAnd he said, Go. And he sent her away for two months: and she went with her companions, and bewailed her virginity upon the mountains. \nAnd it came to pass at the end of two months, that she returned unto her father, who did with her according to his vow which he had vowed: and she knew no man. And it was a custom in Israel, \nThat the daughters of Israel went yearly to lament the daughter of Jephthah the Gileadite four days in a year. \nAnd the men of Ephraim gathered themselves together, and went northward, and said unto Jephthah, Wherefore passedst thou over to fight against the children of Ammon, and didst not call us to go with thee? we will burn thine house upon thee with fire. \nAnd Jephthah said unto them, I and my people were at great strife with the children of Ammon; and when I called you, ye delivered me not out of their hands. \nAnd when I saw that ye delivered me not, I put my life in my hands, and passed over against the children of Ammon, and the LORD delivered them into my hand: wherefore then are ye come up unto me this day, to fight against me? \nThen Jephthah gathered together all the men of Gilead, and fought with Ephraim: and the men of Gilead smote Ephraim, because they said, Ye Gileadites are fugitives of Ephraim among the Ephraimites, and among the Manassites. \nAnd the Gileadites took the passages of Jordan before the Ephraimites: and it was so, that when those Ephraimites which were escaped said, Let me go over; that the men of Gilead said unto him, Art thou an Ephraimite? If he said, Nay; \nThen said they unto him, Say now Shibboleth: and he said Sibboleth: for he could not frame to pronounce it right. Then they took him, and slew him at the passages of Jordan: and there fell at that time of the Ephraimites forty and two thousand. \nAnd Jephthah judged Israel six years. Then died Jephthah the Gileadite, and was buried in one of the cities of Gilead. \nAnd after him Ibzan of Bethlehem judged Israel. \nAnd he had thirty sons, and thirty daughters, whom he sent abroad, and took in thirty daughters from abroad for his sons. And he judged Israel seven years. \nThen died Ibzan, and was buried at Bethlehem. \nAnd after him Elon, a Zebulonite, judged Israel; and he judged Israel ten years. \nAnd Elon the Zebulonite died, and was buried in Aijalon in the country of Zebulun. \nAnd after him Abdon the son of Hillel, a Pirathonite, judged Israel. \nAnd he had forty sons and thirty nephews, that rode on threescore and ten ass colts: and he judged Israel eight years. \nAnd Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the mount of the Amalekites. \nAnd the children of Israel did evil again in the sight of the LORD; and the LORD delivered them into the hand of the Philistines forty years. \nAnd there was a certain man of Zorah, of the family of the Danites, whose name was Manoah; and his wife was barren, and bare not. \nAnd the angel of the LORD appeared unto the woman, and said unto her, Behold now, thou art barren, and bearest not: but thou shalt conceive, and bear a son. \nNow therefore beware, I pray thee, and drink not wine nor strong drink, and eat not any unclean thing: \nFor, lo, thou shalt conceive, and bear a son; and no razor shall come on his head: for the child shall be a Nazarite unto God from the womb: and he shall begin to deliver Israel out of the hand of the Philistines. \nThen the woman came and told her husband, saying, A man of God came unto me, and his countenance was like the countenance of an angel of God, very terrible: but I asked him not whence he was, neither told he me his name: \nBut he said unto me, Behold, thou shalt conceive, and bear a son; and now drink no wine nor strong drink, neither eat any unclean thing: for the child shall be a Nazarite to God from the womb to the day of his death. \nThen Manoah intreated the LORD, and said, O my Lord, let the man of God which thou didst send come again unto us, and teach us what we shall do unto the child that shall be born. \nAnd God hearkened to the voice of Manoah; and the angel of God came again unto the woman as she sat in the field: but Manoah her husband was not with her. \nAnd the woman made haste, and ran, and shewed her husband, and said unto him, Behold, the man hath appeared unto me, that came unto me the other day. \nAnd Manoah arose, and went after his wife, and came to the man, and said unto him, Art thou the man that spakest unto the woman? And he said, I am. \nAnd Manoah said, Now let thy words come to pass. How shall we order the child, and how shall we do unto him? \nAnd the angel of the LORD said unto Manoah, Of all that I said unto the woman let her beware. \nShe may not eat of any thing that cometh of the vine, neither let her drink wine or strong drink, nor eat any unclean thing: all that I commanded her let her observe. \nAnd Manoah said unto the angel of the LORD, I pray thee, let us detain thee, until we shall have made ready a kid for thee. \nAnd the angel of the LORD said unto Manoah, Though thou detain me, I will not eat of thy bread: and if thou wilt offer a burnt offering, thou must offer it unto the LORD. For Manoah knew not that he was an angel of the LORD. \nAnd Manoah said unto the angel of the LORD, What is thy name, that when thy sayings come to pass we may do thee honour? \nAnd the angel of the LORD said unto him, Why askest thou thus after my name, seeing it is secret? \nSo Manoah took a kid with a meat offering, and offered it upon a rock unto the LORD: and the angel did wonderously; and Manoah and his wife looked on. \nFor it came to pass, when the flame went up toward heaven from off the altar, that the angel of the LORD ascended in the flame of the altar. And Manoah and his wife looked on it, and fell on their faces to the ground. \nBut the angel of the LORD did no more appear to Manoah and to his wife. Then Manoah knew that he was an angel of the LORD. \nAnd Manoah said unto his wife, We shall surely die, because we have seen God. \nBut his wife said unto him, If the LORD were pleased to kill us, he would not have received a burnt offering and a meat offering at our hands, neither would he have shewed us all these things, nor would as at this time have told us such things as these. \nAnd the woman bare a son, and called his name Samson: and the child grew, and the LORD blessed him. \nAnd the Spirit of the LORD began to move him at times in the camp of Dan between Zorah and Eshtaol. \nAnd Samson went down to Timnath, and saw a woman in Timnath of the daughters of the Philistines. \nAnd he came up, and told his father and his mother, and said, I have seen a woman in Timnath of the daughters of the Philistines: now therefore get her for me to wife. \nThen his father and his mother said unto him, Is there never a woman among the daughters of thy brethren, or among all my people, that thou goest to take a wife of the uncircumcised Philistines? And Samson said unto his father, Get her for me; for she pleaseth me well. \nBut his father and his mother knew not that it was of the LORD, that he sought an occasion against the Philistines: for at that time the Philistines had dominion over Israel. \nThen went Samson down, and his father and his mother, to Timnath, and came to the vineyards of Timnath: and, behold, a young lion roared against him. \nAnd the Spirit of the LORD came mightily upon him, and he rent him as he would have rent a kid, and he had nothing in his hand: but he told not his father or his mother what he had done. \nAnd he went down, and talked with the woman; and she pleased Samson well. \nAnd after a time he returned to take her, and he turned aside to see the carcase of the lion: and, behold, there was a swarm of bees and honey in the carcase of the lion. \nAnd he took thereof in his hands, and went on eating, and came to his father and mother, and he gave them, and they did eat: but he told not them that he had taken the honey out of the carcase of the lion. \nSo his father went down unto the woman: and Samson made there a feast; for so used the young men to do. \nAnd it came to pass, when they saw him, that they brought thirty companions to be with him. \nAnd Samson said unto them, I will now put forth a riddle unto you: if ye can certainly declare it me within the seven days of the feast, and find it out, then I will give you thirty sheets and thirty change of garments: \nBut if ye cannot declare it me, then shall ye give me thirty sheets and thirty change of garments. And they said unto him, Put forth thy riddle, that we may hear it. \nAnd he said unto them, Out of the eater came forth meat, and out of the strong came forth sweetness. And they could not in three days expound the riddle. \nAnd it came to pass on the seventh day, that they said unto Samson's wife, Entice thy husband, that he may declare unto us the riddle, lest we burn thee and thy father's house with fire: have ye called us to take that we have? is it not so? \nAnd Samson's wife wept before him, and said, Thou dost but hate me, and lovest me not: thou hast put forth a riddle unto the children of my people, and hast not told it me. And he said unto her, Behold, I have not told it my father nor my mother, and shall I tell it thee? \nAnd she wept before him the seven days, while their feast lasted: and it came to pass on the seventh day, that he told her, because she lay sore upon him: and she told the riddle to the children of her people. \nAnd the men of the city said unto him on the seventh day before the sun went down, What is sweeter than honey? And what is stronger than a lion? and he said unto them, If ye had not plowed with my heifer, ye had not found out my riddle. \nAnd the Spirit of the LORD came upon him, and he went down to Ashkelon, and slew thirty men of them, and took their spoil, and gave change of garments unto them which expounded the riddle. And his anger was kindled, and he went up to his father's house. \nBut Samson's wife was given to his companion, whom he had used as his friend. \nBut it came to pass within a while after, in the time of wheat harvest, that Samson visited his wife with a kid; and he said, I will go in to my wife into the chamber. But her father would not suffer him to go in. \nAnd her father said, I verily thought that thou hadst utterly hated her; therefore I gave her to thy companion: is not her younger sister fairer than she? take her, I pray thee, instead of her. \nAnd Samson said concerning them, Now shall I be more blameless than the Philistines, though I do them a displeasure. \nAnd Samson went and caught three hundred foxes, and took firebrands, and turned tail to tail, and put a firebrand in the midst between two tails. \nAnd when he had set the brands on fire, he let them go into the standing corn of the Philistines, and burnt up both the shocks, and also the standing corn, with the vineyards and olives. \nThen the Philistines said, Who hath done this? And they answered, Samson, the son in law of the Timnite, because he had taken his wife, and given her to his companion. And the Philistines came up, and burnt her and her father with fire. \nAnd Samson said unto them, Though ye have done this, yet will I be avenged of you, and after that I will cease. \nAnd he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam. \nThen the Philistines went up, and pitched in Judah, and spread themselves in Lehi. \nAnd the men of Judah said, Why are ye come up against us? And they answered, To bind Samson are we come up, to do to him as he hath done to us. \nThen three thousand men of Judah went to the top of the rock Etam, and said to Samson, Knowest thou not that the Philistines are rulers over us? what is this that thou hast done unto us? And he said unto them, As they did unto me, so have I done unto them. \nAnd they said unto him, We are come down to bind thee, that we may deliver thee into the hand of the Philistines. And Samson said unto them, Swear unto me, that ye will not fall upon me yourselves. \nAnd they spake unto him, saying, No; but we will bind thee fast, and deliver thee into their hand: but surely we will not kill thee. And they bound him with two new cords, and brought him up from the rock. \nAnd when he came unto Lehi, the Philistines shouted against him: and the Spirit of the LORD came mightily upon him, and the cords that were upon his arms became as flax that was burnt with fire, and his bands loosed from off his hands. \nAnd he found a new jawbone of an ass, and put forth his hand, and took it, and slew a thousand men therewith. \nAnd Samson said, With the jawbone of an ass, heaps upon heaps, with the jaw of an ass have I slain a thousand men. \nAnd it came to pass, when he had made an end of speaking, that he cast away the jawbone out of his hand, and called that place Ramathlehi. \nAnd he was sore athirst, and called on the LORD, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised? \nBut God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof Enhakkore, which is in Lehi unto this day. \nAnd he judged Israel in the days of the Philistines twenty years. \nThen went Samson to Gaza, and saw there an harlot, and went in unto her. \nAnd it was told the Gazites, saying, Samson is come hither. And they compassed him in, and laid wait for him all night in the gate of the city, and were quiet all the night, saying, In the morning, when it is day, we shall kill him. \nAnd Samson lay till midnight, and arose at midnight, and took the doors of the gate of the city, and the two posts, and went away with them, bar and all, and put them upon his shoulders, and carried them up to the top of an hill that is before Hebron. \nAnd it came to pass afterward, that he loved a woman in the valley of Sorek, whose name was Delilah. \nAnd the lords of the Philistines came up unto her, and said unto her, Entice him, and see wherein his great strength lieth, and by what means we may prevail against him, that we may bind him to afflict him; and we will give thee every one of us eleven hundred pieces of silver. \nAnd Delilah said to Samson, Tell me, I pray thee, wherein thy great strength lieth, and wherewith thou mightest be bound to afflict thee. \nAnd Samson said unto her, If they bind me with seven green withs that were never dried, then shall I be weak, and be as another man. \nThen the lords of the Philistines brought up to her seven green withs which had not been dried, and she bound him with them. \nNow there were men lying in wait, abiding with her in the chamber. And she said unto him, The Philistines be upon thee, Samson. And he brake the withs, as a thread of tow is broken when it toucheth the fire. So his strength was not known. \nAnd Delilah said unto Samson, Behold, thou hast mocked me, and told me lies: now tell me, I pray thee, wherewith thou mightest be bound. \nAnd he said unto her, If they bind me fast with new ropes that never were occupied, then shall I be weak, and be as another man. \nDelilah therefore took new ropes, and bound him therewith, and said unto him, The Philistines be upon thee, Samson. And there were liers in wait abiding in the chamber. And he brake them from off his arms like a thread. \nAnd Delilah said unto Samson, Hitherto thou hast mocked me, and told me lies: tell me wherewith thou mightest be bound. And he said unto her, If thou weavest the seven locks of my head with the web. \nAnd she fastened it with the pin, and said unto him, The Philistines be upon thee, Samson. And he awaked out of his sleep, and went away with the pin of the beam, and with the web. \nAnd she said unto him, How canst thou say, I love thee, when thine heart is not with me? thou hast mocked me these three times, and hast not told me wherein thy great strength lieth. \nAnd it came to pass, when she pressed him daily with her words, and urged him, so that his soul was vexed unto death; \nThat he told her all his heart, and said unto her, There hath not come a razor upon mine head; for I have been a Nazarite unto God from my mother's womb: if I be shaven, then my strength will go from me, and I shall become weak, and be like any other man. \nAnd when Delilah saw that he had told her all his heart, she sent and called for the lords of the Philistines, saying, Come up this once, for he hath shewed me all his heart. Then the lords of the Philistines came up unto her, and brought money in their hand. \nAnd she made him sleep upon her knees; and she called for a man, and she caused him to shave off the seven locks of his head; and she began to afflict him, and his strength went from him. \nAnd she said, The Philistines be upon thee, Samson. And he awoke out of his sleep, and said, I will go out as at other times before, and shake myself. And he wist not that the LORD was departed from him. \nBut the Philistines took him, and put out his eyes, and brought him down to Gaza, and bound him with fetters of brass; and he did grind in the prison house. \nHowbeit the hair of his head began to grow again after he was shaven. \nThen the lords of the Philistines gathered them together for to offer a great sacrifice unto Dagon their god, and to rejoice: for they said, Our god hath delivered Samson our enemy into our hand. \nAnd when the people saw him, they praised their god: for they said, Our god hath delivered into our hands our enemy, and the destroyer of our country, which slew many of us. \nAnd it came to pass, when their hearts were merry, that they said, Call for Samson, that he may make us sport. And they called for Samson out of the prison house; and he made them sport: and they set him between the pillars. \nAnd Samson said unto the lad that held him by the hand, Suffer me that I may feel the pillars whereupon the house standeth, that I may lean upon them. \nNow the house was full of men and women; and all the lords of the Philistines were there; and there were upon the roof about three thousand men and women, that beheld while Samson made sport. \nAnd Samson called unto the LORD, and said, O Lord God, remember me, I pray thee, and strengthen me, I pray thee, only this once, O God, that I may be at once avenged of the Philistines for my two eyes. \nAnd Samson took hold of the two middle pillars upon which the house stood, and on which it was borne up, of the one with his right hand, and of the other with his left. \nAnd Samson said, Let me die with the Philistines. And he bowed himself with all his might; and the house fell upon the lords, and upon all the people that were therein. So the dead which he slew at his death were more than they which he slew in his life. \nThen his brethren and all the house of his father came down, and took him, and brought him up, and buried him between Zorah and Eshtaol in the buryingplace of Manoah his father. And he judged Israel twenty years. \nAnd there was a man of mount Ephraim, whose name was Micah. \nAnd he said unto his mother, The eleven hundred shekels of silver that were taken from thee, about which thou cursedst, and spakest of also in mine ears, behold, the silver is with me; I took it. And his mother said, Blessed be thou of the LORD, my son. \nAnd when he had restored the eleven hundred shekels of silver to his mother, his mother said, I had wholly dedicated the silver unto the LORD from my hand for my son, to make a graven image and a molten image: now therefore I will restore it unto thee. \nYet he restored the money unto his mother; and his mother took two hundred shekels of silver, and gave them to the founder, who made thereof a graven image and a molten image: and they were in the house of Micah. \nAnd the man Micah had an house of gods, and made an ephod, and teraphim, and consecrated one of his sons, who became his priest. \nIn those days there was no king in Israel, but every man did that which was right in his own eyes. \nAnd there was a young man out of Bethlehemjudah of the family of Judah, who was a Levite, and he sojourned there. \nAnd the man departed out of the city from Bethlehemjudah to sojourn where he could find a place: and he came to mount Ephraim to the house of Micah, as he journeyed. \nAnd Micah said unto him, Whence comest thou? And he said unto him, I am a Levite of Bethlehemjudah, and I go to sojourn where I may find a place. \nAnd Micah said unto him, Dwell with me, and be unto me a father and a priest, and I will give thee ten shekels of silver by the year, and a suit of apparel, and thy victuals. So the Levite went in. \nAnd the Levite was content to dwell with the man; and the young man was unto him as one of his sons. \nAnd Micah consecrated the Levite; and the young man became his priest, and was in the house of Micah. \nThen said Micah, Now know I that the LORD will do me good, seeing I have a Levite to my priest. \nIn those days there was no king in Israel: and in those days the tribe of the Danites sought them an inheritance to dwell in; for unto that day all their inheritance had not fallen unto them among the tribes of Israel. \nAnd the children of Dan sent of their family five men from their coasts, men of valour, from Zorah, and from Eshtaol, to spy out the land, and to search it; and they said unto them, Go, search the land: who when they came to mount Ephraim, to the house of Micah, they lodged there. \nWhen they were by the house of Micah, they knew the voice of the young man the Levite: and they turned in thither, and said unto him, Who brought thee hither? and what makest thou in this place? and what hast thou here? \nAnd he said unto them, Thus and thus dealeth Micah with me, and hath hired me, and I am his priest. \nAnd they said unto him, Ask counsel, we pray thee, of God, that we may know whether our way which we go shall be prosperous. \nAnd the priest said unto them, Go in peace: before the LORD is your way wherein ye go. \nThen the five men departed, and came to Laish, and saw the people that were therein, how they dwelt careless, after the manner of the Zidonians, quiet and secure; and there was no magistrate in the land, that might put them to shame in any thing; and they were far from the Zidonians, and had no business with any man. \nAnd they came unto their brethren to Zorah and Eshtaol: and their brethren said unto them, What say ye? \nAnd they said, Arise, that we may go up against them: for we have seen the land, and, behold, it is very good: and are ye still? be not slothful to go, and to enter to possess the land. \nWhen ye go, ye shall come unto a people secure, and to a large land: for God hath given it into your hands; a place where there is no want of any thing that is in the earth. \nAnd there went from thence of the family of the Danites, out of Zorah and out of Eshtaol, six hundred men appointed with weapons of war. \nAnd they went up, and pitched in Kirjathjearim, in Judah: wherefore they called that place Mahanehdan unto this day: behold, it is behind Kirjathjearim. \nAnd they passed thence unto mount Ephraim, and came unto the house of Micah. \nThen answered the five men that went to spy out the country of Laish, and said unto their brethren, Do ye know that there is in these houses an ephod, and teraphim, and a graven image, and a molten image? now therefore consider what ye have to do. \nAnd they turned thitherward, and came to the house of the young man the Levite, even unto the house of Micah, and saluted him. \nAnd the six hundred men appointed with their weapons of war, which were of the children of Dan, stood by the entering of the gate. \nAnd the five men that went to spy out the land went up, and came in thither, and took the graven image, and the ephod, and the teraphim, and the molten image: and the priest stood in the entering of the gate with the six hundred men that were appointed with weapons of war. \nAnd these went into Micah's house, and fetched the carved image, the ephod, and the teraphim, and the molten image. Then said the priest unto them, What do ye? \nAnd they said unto him, Hold thy peace, lay thine hand upon thy mouth, and go with us, and be to us a father and a priest: is it better for thee to be a priest unto the house of one man, or that thou be a priest unto a tribe and a family in Israel? \nAnd the priest's heart was glad, and he took the ephod, and the teraphim, and the graven image, and went in the midst of the people. \nSo they turned and departed, and put the little ones and the cattle and the carriage before them. \nAnd when they were a good way from the house of Micah, the men that were in the houses near to Micah's house were gathered together, and overtook the children of Dan. \nAnd they cried unto the children of Dan. And they turned their faces, and said unto Micah, What aileth thee, that thou comest with such a company? \nAnd he said, Ye have taken away my gods which I made, and the priest, and ye are gone away: and what have I more? and what is this that ye say unto me, What aileth thee? \nAnd the children of Dan said unto him, Let not thy voice be heard among us, lest angry fellows run upon thee, and thou lose thy life, with the lives of thy household. \nAnd the children of Dan went their way: and when Micah saw that they were too strong for him, he turned and went back unto his house. \nAnd they took the things which Micah had made, and the priest which he had, and came unto Laish, unto a people that were at quiet and secure: and they smote them with the edge of the sword, and burnt the city with fire. \nAnd there was no deliverer, because it was far from Zidon, and they had no business with any man; and it was in the valley that lieth by Bethrehob. And they built a city, and dwelt therein. \nAnd they called the name of the city Dan, after the name of Dan their father, who was born unto Israel: howbeit the name of the city was Laish at the first. \nAnd the children of Dan set up the graven image: and Jonathan, the son of Gershom, the son of Manasseh, he and his sons were priests to the tribe of Dan until the day of the captivity of the land. \nAnd they set them up Micah's graven image, which he made, all the time that the house of God was in Shiloh. \nAnd it came to pass in those days, when there was no king in Israel, that there was a certain Levite sojourning on the side of mount Ephraim, who took to him a concubine out of Bethlehemjudah. \nAnd his concubine played the whore against him, and went away from him unto her father's house to Bethlehemjudah, and was there four whole months. \nAnd her husband arose, and went after her, to speak friendly unto her, and to bring her again, having his servant with him, and a couple of asses: and she brought him into her father's house: and when the father of the damsel saw him, he rejoiced to meet him. \nAnd his father in law, the damsel's father, retained him; and he abode with him three days: so they did eat and drink, and lodged there. \nAnd it came to pass on the fourth day, when they arose early in the morning, that he rose up to depart: and the damsel's father said unto his son in law, Comfort thine heart with a morsel of bread, and afterward go your way. \nAnd they sat down, and did eat and drink both of them together: for the damsel's father had said unto the man, Be content, I pray thee, and tarry all night, and let thine heart be merry. \nAnd when the man rose up to depart, his father in law urged him: therefore he lodged there again. \nAnd he arose early in the morning on the fifth day to depart; and the damsel's father said, Comfort thine heart, I pray thee. And they tarried until afternoon, and they did eat both of them. \nAnd when the man rose up to depart, he, and his concubine, and his servant, his father in law, the damsel's father, said unto him, Behold, now the day draweth toward evening, I pray you tarry all night: behold, the day groweth to an end, lodge here, that thine heart may be merry; and to morrow get you early on your way, that thou mayest go home. \nBut the man would not tarry that night, but he rose up and departed, and came over against Jebus, which is Jerusalem; and there were with him two asses saddled, his concubine also was with him. \nAnd when they were by Jebus, the day was far spent; and the servant said unto his master, Come, I pray thee, and let us turn in into this city of the Jebusites, and lodge in it. \nAnd his master said unto him, We will not turn aside hither into the city of a stranger, that is not of the children of Israel; we will pass over to Gibeah. \nAnd he said unto his servant, Come, and let us draw near to one of these places to lodge all night, in Gibeah, or in Ramah. \nAnd they passed on and went their way; and the sun went down upon them when they were by Gibeah, which belongeth to Benjamin. \nAnd they turned aside thither, to go in and to lodge in Gibeah: and when he went in, he sat him down in a street of the city: for there was no man that took them into his house to lodging. \nAnd, behold, there came an old man from his work out of the field at even, which was also of mount Ephraim; and he sojourned in Gibeah: but the men of the place were Benjamites. \nAnd when he had lifted up his eyes, he saw a wayfaring man in the street of the city: and the old man said, Whither goest thou? and whence comest thou? \nAnd he said unto him, We are passing from Bethlehemjudah toward the side of mount Ephraim; from thence am I: and I went to Bethlehemjudah, but I am now going to the house of the LORD; and there is no man that receiveth me to house. \nYet there is both straw and provender for our asses; and there is bread and wine also for me, and for thy handmaid, and for the young man which is with thy servants: there is no want of any thing. \nAnd the old man said, Peace be with thee; howsoever let all thy wants lie upon me; only lodge not in the street. \nSo he brought him into his house, and gave provender unto the asses: and they washed their feet, and did eat and drink. \nNow as they were making their hearts merry, behold, the men of the city, certain sons of Belial, beset the house round about, and beat at the door, and spake to the master of the house, the old man, saying, Bring forth the man that came into thine house, that we may know him. \nAnd the man, the master of the house, went out unto them, and said unto them, Nay, my brethren, nay, I pray you, do not so wickedly; seeing that this man is come into mine house, do not this folly. \nBehold, here is my daughter a maiden, and his concubine; them I will bring out now, and humble ye them, and do with them what seemeth good unto you: but unto this man do not so vile a thing. \nBut the men would not hearken to him: so the man took his concubine, and brought her forth unto them; and they knew her, and abused her all the night until the morning: and when the day began to spring, they let her go. \nThen came the woman in the dawning of the day, and fell down at the door of the man's house where her lord was, till it was light. \nAnd her lord rose up in the morning, and opened the doors of the house, and went out to go his way: and, behold, the woman his concubine was fallen down at the door of the house, and her hands were upon the threshold. \nAnd he said unto her, Up, and let us be going. But none answered. Then the man took her up upon an ass, and the man rose up, and gat him unto his place. \nAnd when he was come into his house, he took a knife, and laid hold on his concubine, and divided her, together with her bones, into twelve pieces, and sent her into all the coasts of Israel. \nAnd it was so, that all that saw it said, There was no such deed done nor seen from the day that the children of Israel came up out of the land of Egypt unto this day: consider of it, take advice, and speak your minds. \nThen all the children of Israel went out, and the congregation was gathered together as one man, from Dan even to Beersheba, with the land of Gilead, unto the LORD in Mizpeh. \nAnd the chief of all the people, even of all the tribes of Israel, presented themselves in the assembly of the people of God, four hundred thousand footmen that drew sword. \n(Now the children of Benjamin heard that the children of Israel were gone up to Mizpeh.) Then said the children of Israel, Tell us, how was this wickedness? \nAnd the Levite, the husband of the woman that was slain, answered and said, I came into Gibeah that belongeth to Benjamin, I and my concubine, to lodge. \nAnd the men of Gibeah rose against me, and beset the house round about upon me by night, and thought to have slain me: and my concubine have they forced, that she is dead. \nAnd I took my concubine, and cut her in pieces, and sent her throughout all the country of the inheritance of Israel: for they have committed lewdness and folly in Israel. \nBehold, ye are all children of Israel; give here your advice and counsel. \nAnd all the people arose as one man, saying, We will not any of us go to his tent, neither will we any of us turn into his house. \nBut now this shall be the thing which we will do to Gibeah; we will go up by lot against it; \nAnd we will take ten men of an hundred throughout all the tribes of Israel, and an hundred of a thousand, and a thousand out of ten thousand, to fetch victual for the people, that they may do, when they come to Gibeah of Benjamin, according to all the folly that they have wrought in Israel. \nSo all the men of Israel were gathered against the city, knit together as one man. \nAnd the tribes of Israel sent men through all the tribe of Benjamin, saying, What wickedness is this that is done among you? \nNow therefore deliver us the men, the children of Belial, which are in Gibeah, that we may put them to death, and put away evil from Israel. But the children of Benjamin would not hearken to the voice of their brethren the children of Israel. \nBut the children of Benjamin gathered themselves together out of the cities unto Gibeah, to go out to battle against the children of Israel. \nAnd the children of Benjamin were numbered at that time out of the cities twenty and six thousand men that drew sword, beside the inhabitants of Gibeah, which were numbered seven hundred chosen men. \nAmong all this people there were seven hundred chosen men lefthanded; every one could sling stones at an hair breadth, and not miss. \nAnd the men of Israel, beside Benjamin, were numbered four hundred thousand men that drew sword: all these were men of war. \nAnd the children of Israel arose, and went up to the house of God, and asked counsel of God, and said, Which of us shall go up first to the battle against the children of Benjamin? And the LORD said, Judah shall go up first. \nAnd the children of Israel rose up in the morning, and encamped against Gibeah. \nAnd the men of Israel went out to battle against Benjamin; and the men of Israel put themselves in array to fight against them at Gibeah. \nAnd the children of Benjamin came forth out of Gibeah, and destroyed down to the ground of the Israelites that day twenty and two thousand men. \nAnd the people the men of Israel encouraged themselves, and set their battle again in array in the place where they put themselves in array the first day. \n(And the children of Israel went up and wept before the LORD until even, and asked counsel of the LORD, saying, Shall I go up again to battle against the children of Benjamin my brother? And the LORD said, Go up against him.) \nAnd the children of Israel came near against the children of Benjamin the second day. \nAnd Benjamin went forth against them out of Gibeah the second day, and destroyed down to the ground of the children of Israel again eighteen thousand men; all these drew the sword. \nThen all the children of Israel, and all the people, went up, and came unto the house of God, and wept, and sat there before the LORD, and fasted that day until even, and offered burnt offerings and peace offerings before the LORD. \nAnd the children of Israel enquired of the LORD, (for the ark of the covenant of God was there in those days, \nAnd Phinehas, the son of Eleazar, the son of Aaron, stood before it in those days,) saying, Shall I yet again go out to battle against the children of Benjamin my brother, or shall I cease? And the LORD said, Go up; for to morrow I will deliver them into thine hand. \nAnd Israel set liers in wait round about Gibeah. \nAnd the children of Israel went up against the children of Benjamin on the third day, and put themselves in array against Gibeah, as at other times. \nAnd the children of Benjamin went out against the people, and were drawn away from the city; and they began to smite of the people, and kill, as at other times, in the highways, of which one goeth up to the house of God, and the other to Gibeah in the field, about thirty men of Israel. \nAnd the children of Benjamin said, They are smitten down before us, as at the first. But the children of Israel said, Let us flee, and draw them from the city unto the highways. \nAnd all the men of Israel rose up out of their place, and put themselves in array at Baaltamar: and the liers in wait of Israel came forth out of their places, even out of the meadows of Gibeah. \nAnd there came against Gibeah ten thousand chosen men out of all Israel, and the battle was sore: but they knew not that evil was near them. \nAnd the LORD smote Benjamin before Israel: and the children of Israel destroyed of the Benjamites that day twenty and five thousand and an hundred men: all these drew the sword. \nSo the children of Benjamin saw that they were smitten: for the men of Israel gave place to the Benjamites, because they trusted unto the liers in wait which they had set beside Gibeah. \nAnd the liers in wait hasted, and rushed upon Gibeah; and the liers in wait drew themselves along, and smote all the city with the edge of the sword. \nNow there was an appointed sign between the men of Israel and the liers in wait, that they should make a great flame with smoke rise up out of the city. \nAnd when the men of Israel retired in the battle, Benjamin began to smite and kill of the men of Israel about thirty persons: for they said, Surely they are smitten down before us, as in the first battle. \nBut when the flame began to arise up out of the city with a pillar of smoke, the Benjamites looked behind them, and, behold, the flame of the city ascended up to heaven. \nAnd when the men of Israel turned again, the men of Benjamin were amazed: for they saw that evil was come upon them. \nTherefore they turned their backs before the men of Israel unto the way of the wilderness; but the battle overtook them; and them which came out of the cities they destroyed in the midst of them. \nThus they inclosed the Benjamites round about, and chased them, and trode them down with ease over against Gibeah toward the sunrising. \nAnd there fell of Benjamin eighteen thousand men; all these were men of valour. \nAnd they turned and fled toward the wilderness unto the rock of Rimmon: and they gleaned of them in the highways five thousand men; and pursued hard after them unto Gidom, and slew two thousand men of them. \nSo that all which fell that day of Benjamin were twenty and five thousand men that drew the sword; all these were men of valour. \nBut six hundred men turned and fled to the wilderness unto the rock Rimmon, and abode in the rock Rimmon four months. \nAnd the men of Israel turned again upon the children of Benjamin, and smote them with the edge of the sword, as well the men of every city, as the beast, and all that came to hand: also they set on fire all the cities that they came to. \nNow the men of Israel had sworn in Mizpeh, saying, There shall not any of us give his daughter unto Benjamin to wife. \nAnd the people came to the house of God, and abode there till even before God, and lifted up their voices, and wept sore; \nAnd said, O LORD God of Israel, why is this come to pass in Israel, that there should be to day one tribe lacking in Israel? \nAnd it came to pass on the morrow, that the people rose early, and built there an altar, and offered burnt offerings and peace offerings. \nAnd the children of Israel said, Who is there among all the tribes of Israel that came not up with the congregation unto the LORD? For they had made a great oath concerning him that came not up to the LORD to Mizpeh, saying, He shall surely be put to death. \nAnd the children of Israel repented them for Benjamin their brother, and said, There is one tribe cut off from Israel this day. \nHow shall we do for wives for them that remain, seeing we have sworn by the LORD that we will not give them of our daughters to wives? \nAnd they said, What one is there of the tribes of Israel that came not up to Mizpeh to the LORD? And, behold, there came none to the camp from Jabeshgilead to the assembly. \nFor the people were numbered, and, behold, there were none of the inhabitants of Jabeshgilead there. \nAnd the congregation sent thither twelve thousand men of the valiantest, and commanded them, saying, Go and smite the inhabitants of Jabeshgilead with the edge of the sword, with the women and the children. \nAnd this is the thing that ye shall do, Ye shall utterly destroy every male, and every woman that hath lain by man. \nAnd they found among the inhabitants of Jabeshgilead four hundred young virgins, that had known no man by lying with any male: and they brought them unto the camp to Shiloh, which is in the land of Canaan. \nAnd the whole congregation sent some to speak to the children of Benjamin that were in the rock Rimmon, and to call peaceably unto them. \nAnd Benjamin came again at that time; and they gave them wives which they had saved alive of the women of Jabeshgilead: and yet so they sufficed them not. \nAnd the people repented them for Benjamin, because that the LORD had made a breach in the tribes of Israel. \nThen the elders of the congregation said, How shall we do for wives for them that remain, seeing the women are destroyed out of Benjamin? \nAnd they said, There must be an inheritance for them that be escaped of Benjamin, that a tribe be not destroyed out of Israel. \nHowbeit we may not give them wives of our daughters: for the children of Israel have sworn, saying, Cursed be he that giveth a wife to Benjamin. \nThen they said, Behold, there is a feast of the LORD in Shiloh yearly in a place which is on the north side of Bethel, on the east side of the highway that goeth up from Bethel to Shechem, and on the south of Lebonah. \nTherefore they commanded the children of Benjamin, saying, Go and lie in wait in the vineyards; \nAnd see, and, behold, if the daughters of Shiloh come out to dance in dances, then come ye out of the vineyards, and catch you every man his wife of the daughters of Shiloh, and go to the land of Benjamin. \nAnd it shall be, when their fathers or their brethren come unto us to complain, that we will say unto them, Be favourable unto them for our sakes: because we reserved not to each man his wife in the war: for ye did not give unto them at this time, that ye should be guilty. \nAnd the children of Benjamin did so, and took them wives, according to their number, of them that danced, whom they caught: and they went and returned unto their inheritance, and repaired the cities, and dwelt in them. \nAnd the children of Israel departed thence at that time, every man to his tribe and to his family, and they went out from thence every man to his inheritance. \nIn those days there was no king in Israel: every man did that which was right in his own eyes. \nNow it came to pass in the days when the judges ruled, that there was a famine in the land. And a certain man of Bethlehemjudah went to sojourn in the country of Moab, he, and his wife, and his two sons. \nAnd the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Bethlehemjudah. And they came into the country of Moab, and continued there. \nAnd Elimelech Naomi's husband died; and she was left, and her two sons. \nAnd they took them wives of the women of Moab; the name of the one was Orpah, and the name of the other Ruth: and they dwelled there about ten years. \nAnd Mahlon and Chilion died also both of them; and the woman was left of her two sons and her husband. \nThen she arose with her daughters in law, that she might return from the country of Moab: for she had heard in the country of Moab how that the LORD had visited his people in giving them bread. \nWherefore she went forth out of the place where she was, and her two daughters in law with her; and they went on the way to return unto the land of Judah. \nAnd Naomi said unto her two daughters in law, Go, return each to her mother's house: the LORD deal kindly with you, as ye have dealt with the dead, and with me. \nThe LORD grant you that ye may find rest, each of you in the house of her husband. Then she kissed them; and they lifted up their voice, and wept. \nAnd they said unto her, Surely we will return with thee unto thy people. \nAnd Naomi said, Turn again, my daughters: why will ye go with me? are there yet any more sons in my womb, that they may be your husbands? \nTurn again, my daughters, go your way; for I am too old to have an husband. If I should say, I have hope, if I should have an husband also to night, and should also bear sons; \nWould ye tarry for them till they were grown? would ye stay for them from having husbands? nay, my daughters; for it grieveth me much for your sakes that the hand of the LORD is gone out against me. \nAnd they lifted up their voice, and wept again: and Orpah kissed her mother in law; but Ruth clave unto her. \nAnd she said, Behold, thy sister in law is gone back unto her people, and unto her gods: return thou after thy sister in law. \nAnd Ruth said, Intreat me not to leave thee, or to return from following after thee: for whither thou goest, I will go; and where thou lodgest, I will lodge: thy people shall be my people, and thy God my God: \nWhere thou diest, will I die, and there will I be buried: the LORD do so to me, and more also, if ought but death part thee and me. \nWhen she saw that she was stedfastly minded to go with her, then she left speaking unto her. \nSo they two went until they came to Bethlehem. And it came to pass, when they were come to Bethlehem, that all the city was moved about them, and they said, Is this Naomi? \nAnd she said unto them, Call me not Naomi, call me Mara: for the Almighty hath dealt very bitterly with me. \nI went out full and the LORD hath brought me home again empty: why then call ye me Naomi, seeing the LORD hath testified against me, and the Almighty hath afflicted me? \nSo Naomi returned, and Ruth the Moabitess, her daughter in law, with her, which returned out of the country of Moab: and they came to Bethlehem in the beginning of barley harvest. \nAnd Naomi had a kinsman of her husband's, a mighty man of wealth, of the family of Elimelech; and his name was Boaz. \nAnd Ruth the Moabitess said unto Naomi, Let me now go to the field, and glean ears of corn after him in whose sight I shall find grace. And she said unto her, Go, my daughter. \nAnd she went, and came, and gleaned in the field after the reapers: and her hap was to light on a part of the field belonging unto Boaz, who was of the kindred of Elimelech. \nAnd, behold, Boaz came from Bethlehem, and said unto the reapers, The LORD be with you. And they answered him, The LORD bless thee. \nThen said Boaz unto his servant that was set over the reapers, Whose damsel is this? \nAnd the servant that was set over the reapers answered and said, It is the Moabitish damsel that came back with Naomi out of the country of Moab: \nAnd she said, I pray you, let me glean and gather after the reapers among the sheaves: so she came, and hath continued even from the morning until now, that she tarried a little in the house. \nThen said Boaz unto Ruth, Hearest thou not, my daughter? Go not to glean in another field, neither go from hence, but abide here fast by my maidens: \nLet thine eyes be on the field that they do reap, and go thou after them: have I not charged the young men that they shall not touch thee? and when thou art athirst, go unto the vessels, and drink of that which the young men have drawn. \nThen she fell on her face, and bowed herself to the ground, and said unto him, Why have I found grace in thine eyes, that thou shouldest take knowledge of me, seeing I am a stranger? \nAnd Boaz answered and said unto her, It hath fully been shewed me, all that thou hast done unto thy mother in law since the death of thine husband: and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people which thou knewest not heretofore. \nThe LORD recompense thy work, and a full reward be given thee of the LORD God of Israel, under whose wings thou art come to trust. \nThen she said, Let me find favour in thy sight, my lord; for that thou hast comforted me, and for that thou hast spoken friendly unto thine handmaid, though I be not like unto one of thine handmaidens. \nAnd Boaz said unto her, At mealtime come thou hither, and eat of the bread, and dip thy morsel in the vinegar. And she sat beside the reapers: and he reached her parched corn, and she did eat, and was sufficed, and left. \nAnd when she was risen up to glean, Boaz commanded his young men, saying, Let her glean even among the sheaves, and reproach her not: \nAnd let fall also some of the handfuls of purpose for her, and leave them, that she may glean them, and rebuke her not. \nSo she gleaned in the field until even, and beat out that she had gleaned: and it was about an ephah of barley. \nAnd she took it up, and went into the city: and her mother in law saw what she had gleaned: and she brought forth, and gave to her that she had reserved after she was sufficed. \nAnd her mother in law said unto her, Where hast thou gleaned to day? and where wroughtest thou? blessed be he that did take knowledge of thee. And she shewed her mother in law with whom she had wrought, and said, The man's name with whom I wrought to day is Boaz. \nAnd Naomi said unto her daughter in law, Blessed be he of the LORD, who hath not left off his kindness to the living and to the dead. And Naomi said unto her, The man is near of kin unto us, one of our next kinsmen. \nAnd Ruth the Moabitess said, He said unto me also, Thou shalt keep fast by my young men, until they have ended all my harvest. \nAnd Naomi said unto Ruth her daughter in law, It is good, my daughter, that thou go out with his maidens, that they meet thee not in any other field. \nSo she kept fast by the maidens of Boaz to glean unto the end of barley harvest and of wheat harvest; and dwelt with her mother in law. \nThen Naomi her mother in law said unto her, My daughter, shall I not seek rest for thee, that it may be well with thee? \nAnd now is not Boaz of our kindred, with whose maidens thou wast? Behold, he winnoweth barley to night in the threshingfloor. \nWash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the floor: but make not thyself known unto the man, until he shall have done eating and drinking. \nAnd it shall be, when he lieth down, that thou shalt mark the place where he shall lie, and thou shalt go in, and uncover his feet, and lay thee down; and he will tell thee what thou shalt do. \nAnd she said unto her, All that thou sayest unto me I will do. \nAnd she went down unto the floor, and did according to all that her mother in law bade her. \nAnd when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of corn: and she came softly, and uncovered his feet, and laid her down. \nAnd it came to pass at midnight, that the man was afraid, and turned himself: and, behold, a woman lay at his feet. \nAnd he said, Who art thou? And she answered, I am Ruth thine handmaid: spread therefore thy skirt over thine handmaid; for thou art a near kinsman. \nAnd he said, Blessed be thou of the LORD, my daughter: for thou hast shewed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich. \nAnd now, my daughter, fear not; I will do to thee all that thou requirest: for all the city of my people doth know that thou art a virtuous woman. \nAnd now it is true that I am thy near kinsman: howbeit there is a kinsman nearer than I. \nTarry this night, and it shall be in the morning, that if he will perform unto thee the part of a kinsman, well; let him do the kinsman's part: but if he will not do the part of a kinsman to thee, then will I do the part of a kinsman to thee, as the LORD liveth: lie down until the morning. \nAnd she lay at his feet until the morning: and she rose up before one could know another. And he said, Let it not be known that a woman came into the floor. \nAlso he said, Bring the vail that thou hast upon thee, and hold it. And when she held it, he measured six measures of barley, and laid it on her: and she went into the city. \nAnd when she came to her mother in law, she said, Who art thou, my daughter? And she told her all that the man had done to her. \nAnd she said, These six measures of barley gave he me; for he said to me, Go not empty unto thy mother in law. \nThen said she, Sit still, my daughter, until thou know how the matter will fall: for the man will not be in rest, until he have finished the thing this day. \nThen went Boaz up to the gate, and sat him down there: and, behold, the kinsman of whom Boaz spake came by; unto whom he said, Ho, such a one! turn aside, sit down here. And he turned aside, and sat down. \nAnd he took ten men of the elders of the city, and said, Sit ye down here. And they sat down. \nAnd he said unto the kinsman, Naomi, that is come again out of the country of Moab, selleth a parcel of land, which was our brother Elimelech's: \nAnd I thought to advertise thee, saying, Buy it before the inhabitants, and before the elders of my people. If thou wilt redeem it, redeem it: but if thou wilt not redeem it, then tell me, that I may know: for there is none to redeem it beside thee; and I am after thee. And he said, I will redeem it. \nThen said Boaz, What day thou buyest the field of the hand of Naomi, thou must buy it also of Ruth the Moabitess, the wife of the dead, to raise up the name of the dead upon his inheritance. \nAnd the kinsman said, I cannot redeem it for myself, lest I mar mine own inheritance: redeem thou my right to thyself; for I cannot redeem it. \nNow this was the manner in former time in Israel concerning redeeming and concerning changing, for to confirm all things; a man plucked off his shoe, and gave it to his neighbour: and this was a testimony in Israel. \nTherefore the kinsman said unto Boaz, Buy it for thee. So he drew off his shoe. \nAnd Boaz said unto the elders, and unto all the people, Ye are witnesses this day, that I have bought all that was Elimelech's, and all that was Chilion's and Mahlon's, of the hand of Naomi. \nMoreover Ruth the Moabitess, the wife of Mahlon, have I purchased to be my wife, to raise up the name of the dead upon his inheritance, that the name of the dead be not cut off from among his brethren, and from the gate of his place: ye are witnesses this day. \nAnd all the people that were in the gate, and the elders, said, We are witnesses. The LORD make the woman that is come into thine house like Rachel and like Leah, which two did build the house of Israel: and do thou worthily in Ephratah, and be famous in Bethlehem: \nAnd let thy house be like the house of Pharez, whom Tamar bare unto Judah, of the seed which the LORD shall give thee of this young woman. \nSo Boaz took Ruth, and she was his wife: and when he went in unto her, the LORD gave her conception, and she bare a son. \nAnd the women said unto Naomi, Blessed be the LORD, which hath not left thee this day without a kinsman, that his name may be famous in Israel. \nAnd he shall be unto thee a restorer of thy life, and a nourisher of thine old age: for thy daughter in law, which loveth thee, which is better to thee than seven sons, hath born him. \nAnd Naomi took the child, and laid it in her bosom, and became nurse unto it. \nAnd the women her neighbours gave it a name, saying, There is a son born to Naomi; and they called his name Obed: he is the father of Jesse, the father of David. \nNow these are the generations of Pharez: Pharez begat Hezron, \nAnd Hezron begat Ram, and Ram begat Amminadab, \nAnd Amminadab begat Nahshon, and Nahshon begat Salmon, \nAnd Salmon begat Boaz, and Boaz begat Obed, \nAnd Obed begat Jesse, and Jesse begat David. \nNow there was a certain man of Ramathaimzophim, of mount Ephraim, and his name was Elkanah, the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephrathite: \nAnd he had two wives; the name of the one was Hannah, and the name of the other Peninnah: and Peninnah had children, but Hannah had no children. \nAnd this man went up out of his city yearly to worship and to sacrifice unto the LORD of hosts in Shiloh. And the two sons of Eli, Hophni and Phinehas, the priests of the LORD, were there. \nAnd when the time was that Elkanah offered, he gave to Peninnah his wife, and to all her sons and her daughters, portions: \nBut unto Hannah he gave a worthy portion; for he loved Hannah: but the LORD had shut up her womb. \nAnd her adversary also provoked her sore, for to make her fret, because the LORD had shut up her womb. \nAnd as he did so year by year, when she went up to the house of the LORD, so she provoked her; therefore she wept, and did not eat. \nThen said Elkanah her husband to her, Hannah, why weepest thou? and why eatest thou not? and why is thy heart grieved? am not I better to thee than ten sons? \nSo Hannah rose up after they had eaten in Shiloh, and after they had drunk. Now Eli the priest sat upon a seat by a post of the temple of the LORD. \nAnd she was in bitterness of soul, and prayed unto the LORD, and wept sore. \nAnd she vowed a vow, and said, O LORD of hosts, if thou wilt indeed look on the affliction of thine handmaid, and remember me, and not forget thine handmaid, but wilt give unto thine handmaid a man child, then I will give him unto the LORD all the days of his life, and there shall no razor come upon his head. \nAnd it came to pass, as she continued praying before the LORD, that Eli marked her mouth. \nNow Hannah, she spake in her heart; only her lips moved, but her voice was not heard: therefore Eli thought she had been drunken. \nAnd Eli said unto her, How long wilt thou be drunken? put away thy wine from thee. \nAnd Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the LORD. \nCount not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto. \nThen Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him. \nAnd she said, Let thine handmaid find grace in thy sight. So the woman went her way, and did eat, and her countenance was no more sad. \nAnd they rose up in the morning early, and worshipped before the LORD, and returned, and came to their house to Ramah: and Elkanah knew Hannah his wife; and the LORD remembered her. \nWherefore it came to pass, when the time was come about after Hannah had conceived, that she bare a son, and called his name Samuel, saying, Because I have asked him of the LORD. \nAnd the man Elkanah, and all his house, went up to offer unto the LORD the yearly sacrifice, and his vow. \nBut Hannah went not up; for she said unto her husband, I will not go up until the child be weaned, and then I will bring him, that he may appear before the LORD, and there abide for ever. \nAnd Elkanah her husband said unto her, Do what seemeth thee good; tarry until thou have weaned him; only the LORD establish his word. So the woman abode, and gave her son suck until she weaned him. \nAnd when she had weaned him, she took him up with her, with three bullocks, and one ephah of flour, and a bottle of wine, and brought him unto the house of the LORD in Shiloh: and the child was young. \nAnd they slew a bullock, and brought the child to Eli. \nAnd she said, Oh my lord, as thy soul liveth, my lord, I am the woman that stood by thee here, praying unto the LORD. \nFor this child I prayed; and the LORD hath given me my petition which I asked of him: \nTherefore also I have lent him to the LORD; as long as he liveth he shall be lent to the LORD. And he worshipped the LORD there. \nAnd Hannah prayed, and said, My heart rejoiceth in the LORD, mine horn is exalted in the LORD: my mouth is enlarged over mine enemies; because I rejoice in thy salvation. \nThere is none holy as the LORD: for there is none beside thee: neither is there any rock like our God. \nTalk no more so exceeding proudly; let not arrogancy come out of your mouth: for the LORD is a God of knowledge, and by him actions are weighed. \nThe bows of the mighty men are broken, and they that stumbled are girded with strength. \nThey that were full have hired out themselves for bread; and they that were hungry ceased: so that the barren hath born seven; and she that hath many children is waxed feeble. \nThe LORD killeth, and maketh alive: he bringeth down to the grave, and bringeth up. \nThe LORD maketh poor, and maketh rich: he bringeth low, and lifteth up. \nHe raiseth up the poor out of the dust, and lifteth up the beggar from the dunghill, to set them among princes, and to make them inherit the throne of glory: for the pillars of the earth are the LORD's, and he hath set the world upon them. \nHe will keep the feet of his saints, and the wicked shall be silent in darkness; for by strength shall no man prevail. \nThe adversaries of the LORD shall be broken to pieces; out of heaven shall he thunder upon them: the LORD shall judge the ends of the earth; and he shall give strength unto his king, and exalt the horn of his anointed. \nAnd Elkanah went to Ramah to his house. And the child did minister unto the LORD before Eli the priest. \nNow the sons of Eli were sons of Belial; they knew not the LORD. \nAnd the priest's custom with the people was, that, when any man offered sacrifice, the priest's servant came, while the flesh was in seething, with a fleshhook of three teeth in his hand; \nAnd he struck it into the pan, or kettle, or caldron, or pot; all that the fleshhook brought up the priest took for himself. So they did in Shiloh unto all the Israelites that came thither. \nAlso before they burnt the fat, the priest's servant came, and said to the man that sacrificed, Give flesh to roast for the priest; for he will not have sodden flesh of thee, but raw. \nAnd if any man said unto him, Let them not fail to burn the fat presently, and then take as much as thy soul desireth; then he would answer him, Nay; but thou shalt give it me now: and if not, I will take it by force. \nWherefore the sin of the young men was very great before the LORD: for men abhorred the offering of the LORD. \nBut Samuel ministered before the LORD, being a child, girded with a linen ephod. \nMoreover his mother made him a little coat, and brought it to him from year to year, when she came up with her husband to offer the yearly sacrifice. \nAnd Eli blessed Elkanah and his wife, and said, The LORD give thee seed of this woman for the loan which is lent to the LORD. And they went unto their own home. \nAnd the LORD visited Hannah, so that she conceived, and bare three sons and two daughters. And the child Samuel grew before the LORD. \nNow Eli was very old, and heard all that his sons did unto all Israel; and how they lay with the women that assembled at the door of the tabernacle of the congregation. \nAnd he said unto them, Why do ye such things? for I hear of your evil dealings by all this people. \nNay, my sons; for it is no good report that I hear: ye make the LORD's people to transgress. \nIf one man sin against another, the judge shall judge him: but if a man sin against the LORD, who shall intreat for him? Notwithstanding they hearkened not unto the voice of their father, because the LORD would slay them. \nAnd the child Samuel grew on, and was in favour both with the LORD, and also with men. \nAnd there came a man of God unto Eli, and said unto him, Thus saith the LORD, Did I plainly appear unto the house of thy father, when they were in Egypt in Pharaoh's house? \nAnd did I choose him out of all the tribes of Israel to be my priest, to offer upon mine altar, to burn incense, to wear an ephod before me? and did I give unto the house of thy father all the offerings made by fire of the children of Israel? \nWherefore kick ye at my sacrifice and at mine offering, which I have commanded in my habitation; and honourest thy sons above me, to make yourselves fat with the chiefest of all the offerings of Israel my people? \nWherefore the LORD God of Israel saith, I said indeed that thy house, and the house of thy father, should walk before me for ever: but now the LORD saith, Be it far from me; for them that honour me I will honour, and they that despise me shall be lightly esteemed. \nBehold, the days come, that I will cut off thine arm, and the arm of thy father's house, that there shall not be an old man in thine house. \nAnd thou shalt see an enemy in my habitation, in all the wealth which God shall give Israel: and there shall not be an old man in thine house for ever. \nAnd the man of thine, whom I shall not cut off from mine altar, shall be to consume thine eyes, and to grieve thine heart: and all the increase of thine house shall die in the flower of their age. \nAnd this shall be a sign unto thee, that shall come upon thy two sons, on Hophni and Phinehas; in one day they shall die both of them. \nAnd I will raise me up a faithful priest, that shall do according to that which is in mine heart and in my mind: and I will build him a sure house; and he shall walk before mine anointed for ever. \nAnd it shall come to pass, that every one that is left in thine house shall come and crouch to him for a piece of silver and a morsel of bread, and shall say, Put me, I pray thee, into one of the priests' offices, that I may eat a piece of bread. \nAnd the child Samuel ministered unto the LORD before Eli. And the word of the LORD was precious in those days; there was no open vision. \nAnd it came to pass at that time, when Eli was laid down in his place, and his eyes began to wax dim, that he could not see; \nAnd ere the lamp of God went out in the temple of the LORD, where the ark of God was, and Samuel was laid down to sleep; \nThat the LORD called Samuel: and he answered, Here am I. \nAnd he ran unto Eli, and said, Here am I; for thou calledst me. And he said, I called not; lie down again. And he went and lay down. \nAnd the LORD called yet again, Samuel. And Samuel arose and went to Eli, and said, Here am I; for thou didst call me. And he answered, I called not, my son; lie down again. \nNow Samuel did not yet know the LORD, neither was the word of the LORD yet revealed unto him. \nAnd the LORD called Samuel again the third time. And he arose and went to Eli, and said, Here am I; for thou didst call me. And Eli perceived that the LORD had called the child. \nTherefore Eli said unto Samuel, Go, lie down: and it shall be, if he call thee, that thou shalt say, Speak, LORD; for thy servant heareth. So Samuel went and lay down in his place. \nAnd the LORD came, and stood, and called as at other times, Samuel, Samuel. Then Samuel answered, Speak; for thy servant heareth. \nAnd the LORD said to Samuel, Behold, I will do a thing in Israel, at which both the ears of every one that heareth it shall tingle. \nIn that day I will perform against Eli all things which I have spoken concerning his house: when I begin, I will also make an end. \nFor I have told him that I will judge his house for ever for the iniquity which he knoweth; because his sons made themselves vile, and he restrained them not. \nAnd therefore I have sworn unto the house of Eli, that the iniquity of Eli's house shall not be purged with sacrifice nor offering for ever. \nAnd Samuel lay until the morning, and opened the doors of the house of the LORD. And Samuel feared to shew Eli the vision. \nThen Eli called Samuel, and said, Samuel, my son. And he answered, Here am I. \nAnd he said, What is the thing that the LORD hath said unto thee? I pray thee hide it not from me: God do so to thee, and more also, if thou hide any thing from me of all the things that he said unto thee. \nAnd Samuel told him every whit, and hid nothing from him. And he said, It is the LORD: let him do what seemeth him good. \nAnd Samuel grew, and the LORD was with him, and did let none of his words fall to the ground. \nAnd all Israel from Dan even to Beersheba knew that Samuel was established to be a prophet of the LORD. \nAnd the LORD appeared again in Shiloh: for the LORD revealed himself to Samuel in Shiloh by the word of the LORD. \nAnd the word of Samuel came to all Israel. Now Israel went out against the Philistines to battle, and pitched beside Ebenezer: and the Philistines pitched in Aphek. \nAnd the Philistines put themselves in array against Israel: and when they joined battle, Israel was smitten before the Philistines: and they slew of the army in the field about four thousand men. \nAnd when the people were come into the camp, the elders of Israel said, Wherefore hath the LORD smitten us to day before the Philistines? Let us fetch the ark of the covenant of the LORD out of Shiloh unto us, that, when it cometh among us, it may save us out of the hand of our enemies. \nSo the people sent to Shiloh, that they might bring from thence the ark of the covenant of the LORD of hosts, which dwelleth between the cherubims: and the two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God. \nAnd when the ark of the covenant of the LORD came into the camp, all Israel shouted with a great shout, so that the earth rang again. \nAnd when the Philistines heard the noise of the shout, they said, What meaneth the noise of this great shout in the camp of the Hebrews? And they understood that the ark of the LORD was come into the camp. \nAnd the Philistines were afraid, for they said, God is come into the camp. And they said, Woe unto us! for there hath not been such a thing heretofore. \nWoe unto us! who shall deliver us out of the hand of these mighty Gods? these are the Gods that smote the Egyptians with all the plagues in the wilderness. \nBe strong and quit yourselves like men, O ye Philistines, that ye be not servants unto the Hebrews, as they have been to you: quit yourselves like men, and fight. \nAnd the Philistines fought, and Israel was smitten, and they fled every man into his tent: and there was a very great slaughter; for there fell of Israel thirty thousand footmen. \nAnd the ark of God was taken; and the two sons of Eli, Hophni and Phinehas, were slain. \nAnd there ran a man of Benjamin out of the army, and came to Shiloh the same day with his clothes rent, and with earth upon his head. \nAnd when he came, lo, Eli sat upon a seat by the wayside watching: for his heart trembled for the ark of God. And when the man came into the city, and told it, all the city cried out. \nAnd when Eli heard the noise of the crying, he said, What meaneth the noise of this tumult? And the man came in hastily, and told Eli. \nNow Eli was ninety and eight years old; and his eyes were dim, that he could not see. \nAnd the man said unto Eli, I am he that came out of the army, and I fled to day out of the army. And he said, What is there done, my son? \nAnd the messenger answered and said, Israel is fled before the Philistines, and there hath been also a great slaughter among the people, and thy two sons also, Hophni and Phinehas, are dead, and the ark of God is taken. \nAnd it came to pass, when he made mention of the ark of God, that he fell from off the seat backward by the side of the gate, and his neck brake, and he died: for he was an old man, and heavy. And he had judged Israel forty years. \nAnd his daughter in law, Phinehas' wife, was with child, near to be delivered: and when she heard the tidings that the ark of God was taken, and that her father in law and her husband were dead, she bowed herself and travailed; for her pains came upon her. \nAnd about the time of her death the women that stood by her said unto her, Fear not; for thou hast born a son. But she answered not, neither did she regard it. \nAnd she named the child Ichabod, saying, The glory is departed from Israel: because the ark of God was taken, and because of her father in law and her husband. \nAnd she said, The glory is departed from Israel: for the ark of God is taken. \nAnd the Philistines took the ark of God, and brought it from Ebenezer unto Ashdod. \nWhen the Philistines took the ark of God, they brought it into the house of Dagon, and set it by Dagon. \nAnd when they of Ashdod arose early on the morrow, behold, Dagon was fallen upon his face to the earth before the ark of the LORD. And they took Dagon, and set him in his place again. \nAnd when they arose early on the morrow morning, behold, Dagon was fallen upon his face to the ground before the ark of the LORD; and the head of Dagon and both the palms of his hands were cut off upon the threshold; only the stump of Dagon was left to him. \nTherefore neither the priests of Dagon, nor any that come into Dagon's house, tread on the threshold of Dagon in Ashdod unto this day. \nBut the hand of the LORD was heavy upon them of Ashdod, and he destroyed them, and smote them with emerods, even Ashdod and the coasts thereof. \nAnd when the men of Ashdod saw that it was so, they said, The ark of the God of Israel shall not abide with us: for his hand is sore upon us, and upon Dagon our god. \nThey sent therefore and gathered all the lords of the Philistines unto them, and said, What shall we do with the ark of the God of Israel? And they answered, Let the ark of the God of Israel be carried about unto Gath. And they carried the ark of the God of Israel about thither. \nAnd it was so, that, after they had carried it about, the hand of the LORD was against the city with a very great destruction: and he smote the men of the city, both small and great, and they had emerods in their secret parts. \nTherefore they sent the ark of God to Ekron. And it came to pass, as the ark of God came to Ekron, that the Ekronites cried out, saying, They have brought about the ark of the God of Israel to us, to slay us and our people. \nSo they sent and gathered together all the lords of the Philistines, and said, Send away the ark of the God of Israel, and let it go again to his own place, that it slay us not, and our people: for there was a deadly destruction throughout all the city; the hand of God was very heavy there. \nAnd the men that died not were smitten with the emerods: and the cry of the city went up to heaven. \nAnd the ark of the LORD was in the country of the Philistines seven months. \nAnd the Philistines called for the priests and the diviners, saying, What shall we do to the ark of the LORD? tell us wherewith we shall send it to his place. \nAnd they said, If ye send away the ark of the God of Israel, send it not empty; but in any wise return him a trespass offering: then ye shall be healed, and it shall be known to you why his hand is not removed from you. \nThen said they, What shall be the trespass offering which we shall return to him? They answered, Five golden emerods, and five golden mice, according to the number of the lords of the Philistines: for one plague was on you all, and on your lords. \nWherefore ye shall make images of your emerods, and images of your mice that mar the land; and ye shall give glory unto the God of Israel: peradventure he will lighten his hand from off you, and from off your gods, and from off your land. \nWherefore then do ye harden your hearts, as the Egyptians and Pharaoh hardened their hearts? when he had wrought wonderfully among them, did they not let the people go, and they departed? \nNow therefore make a new cart, and take two milch kine, on which there hath come no yoke, and tie the kine to the cart, and bring their calves home from them: \nAnd take the ark of the LORD, and lay it upon the cart; and put the jewels of gold, which ye return him for a trespass offering, in a coffer by the side thereof; and send it away, that it may go. \nAnd see, if it goeth up by the way of his own coast to Bethshemesh, then he hath done us this great evil: but if not, then we shall know that it is not his hand that smote us: it was a chance that happened to us. \nAnd the men did so; and took two milch kine, and tied them to the cart, and shut up their calves at home: \nAnd they laid the ark of the LORD upon the cart, and the coffer with the mice of gold and the images of their emerods. \nAnd the kine took the straight way to the way of Bethshemesh, and went along the highway, lowing as they went, and turned not aside to the right hand or to the left; and the lords of the Philistines went after them unto the border of Bethshemesh. \nAnd they of Bethshemesh were reaping their wheat harvest in the valley: and they lifted up their eyes, and saw the ark, and rejoiced to see it. \nAnd the cart came into the field of Joshua, a Bethshemite, and stood there, where there was a great stone: and they clave the wood of the cart, and offered the kine a burnt offering unto the LORD. \nAnd the Levites took down the ark of the LORD, and the coffer that was with it, wherein the jewels of gold were, and put them on the great stone: and the men of Bethshemesh offered burnt offerings and sacrificed sacrifices the same day unto the LORD. \nAnd when the five lords of the Philistines had seen it, they returned to Ekron the same day. \nAnd these are the golden emerods which the Philistines returned for a trespass offering unto the LORD; for Ashdod one, for Gaza one, for Askelon one, for Gath one, for Ekron one; \nAnd the golden mice, according to the number of all the cities of the Philistines belonging to the five lords, both of fenced cities, and of country villages, even unto the great stone of Abel, whereon they set down the ark of the LORD: which stone remaineth unto this day in the field of Joshua, the Bethshemite. \nAnd he smote the men of Bethshemesh, because they had looked into the ark of the LORD, even he smote of the people fifty thousand and threescore and ten men: and the people lamented, because the LORD had smitten many of the people with a great slaughter. \nAnd the men of Bethshemesh said, Who is able to stand before this holy LORD God? and to whom shall he go up from us? \nAnd they sent messengers to the inhabitants of Kirjathjearim, saying, The Philistines have brought again the ark of the LORD; come ye down, and fetch it up to you. \nAnd the men of Kirjathjearim came, and fetched up the ark of the LORD, and brought it into the house of Abinadab in the hill, and sanctified Eleazar his son to keep the ark of the LORD. \nAnd it came to pass, while the ark abode in Kirjathjearim, that the time was long; for it was twenty years: and all the house of Israel lamented after the LORD. \nAnd Samuel spake unto all the house of Israel, saying, If ye do return unto the LORD with all your hearts, then put away the strange gods and Ashtaroth from among you, and prepare your hearts unto the LORD, and serve him only: and he will deliver you out of the hand of the Philistines. \nThen the children of Israel did put away Baalim and Ashtaroth, and served the LORD only. \nAnd Samuel said, Gather all Israel to Mizpeh, and I will pray for you unto the LORD. \nAnd they gathered together to Mizpeh, and drew water, and poured it out before the LORD, and fasted on that day, and said there, We have sinned against the LORD. And Samuel judged the children of Israel in Mizpeh. \nAnd when the Philistines heard that the children of Israel were gathered together to Mizpeh, the lords of the Philistines went up against Israel. And when the children of Israel heard it, they were afraid of the Philistines. \nAnd the children of Israel said to Samuel, Cease not to cry unto the LORD our God for us, that he will save us out of the hand of the Philistines. \nAnd Samuel took a sucking lamb, and offered it for a burnt offering wholly unto the LORD: and Samuel cried unto the LORD for Israel; and the LORD heard him. \nAnd as Samuel was offering up the burnt offering, the Philistines drew near to battle against Israel: but the LORD thundered with a great thunder on that day upon the Philistines, and discomfited them; and they were smitten before Israel. \nAnd the men of Israel went out of Mizpeh, and pursued the Philistines, and smote them, until they came under Bethcar. \nThen Samuel took a stone, and set it between Mizpeh and Shen, and called the name of it Ebenezer, saying, Hitherto hath the LORD helped us. \nSo the Philistines were subdued, and they came no more into the coast of Israel: and the hand of the LORD was against the Philistines all the days of Samuel. \nAnd the cities which the Philistines had taken from Israel were restored to Israel, from Ekron even unto Gath; and the coasts thereof did Israel deliver out of the hands of the Philistines. And there was peace between Israel and the Amorites. \nAnd Samuel judged Israel all the days of his life. \nAnd he went from year to year in circuit to Bethel, and Gilgal, and Mizpeh, and judged Israel in all those places. \nAnd his return was to Ramah; for there was his house; and there he judged Israel; and there he built an altar unto the LORD. \nAnd it came to pass, when Samuel was old, that he made his sons judges over Israel. \nNow the name of his firstborn was Joel; and the name of his second, Abiah: they were judges in Beersheba. \nAnd his sons walked not in his ways, but turned aside after lucre, and took bribes, and perverted judgment. \nThen all the elders of Israel gathered themselves together, and came to Samuel unto Ramah, \nAnd said unto him, Behold, thou art old, and thy sons walk not in thy ways: now make us a king to judge us like all the nations. \nBut the thing displeased Samuel, when they said, Give us a king to judge us. And Samuel prayed unto the LORD. \nAnd the LORD said unto Samuel, Hearken unto the voice of the people in all that they say unto thee: for they have not rejected thee, but they have rejected me, that I should not reign over them. \nAccording to all the works which they have done since the day that I brought them up out of Egypt even unto this day, wherewith they have forsaken me, and served other gods, so do they also unto thee. \nNow therefore hearken unto their voice: howbeit yet protest solemnly unto them, and shew them the manner of the king that shall reign over them. \nAnd Samuel told all the words of the LORD unto the people that asked of him a king. \nAnd he said, This will be the manner of the king that shall reign over you: He will take your sons, and appoint them for himself, for his chariots, and to be his horsemen; and some shall run before his chariots. \nAnd he will appoint him captains over thousands, and captains over fifties; and will set them to ear his ground, and to reap his harvest, and to make his instruments of war, and instruments of his chariots. \nAnd he will take your daughters to be confectionaries, and to be cooks, and to be bakers. \nAnd he will take your fields, and your vineyards, and your oliveyards, even the best of them, and give them to his servants. \nAnd he will take the tenth of your seed, and of your vineyards, and give to his officers, and to his servants. \nAnd he will take your menservants, and your maidservants, and your goodliest young men, and your asses, and put them to his work. \nHe will take the tenth of your sheep: and ye shall be his servants. \nAnd ye shall cry out in that day because of your king which ye shall have chosen you; and the LORD will not hear you in that day. \nNevertheless the people refused to obey the voice of Samuel; and they said, Nay; but we will have a king over us; \nThat we also may be like all the nations; and that our king may judge us, and go out before us, and fight our battles. \nAnd Samuel heard all the words of the people, and he rehearsed them in the ears of the LORD. \nAnd the LORD said to Samuel, Hearken unto their voice, and make them a king. And Samuel said unto the men of Israel, Go ye every man unto his city. \nNow there was a man of Benjamin, whose name was Kish, the son of Abiel, the son of Zeror, the son of Bechorath, the son of Aphiah, a Benjamite, a mighty man of power. \nAnd he had a son, whose name was Saul, a choice young man, and a goodly: and there was not among the children of Israel a goodlier person than he: from his shoulders and upward he was higher than any of the people. \nAnd the asses of Kish Saul's father were lost. And Kish said to Saul his son, Take now one of the servants with thee, and arise, go seek the asses. \nAnd he passed through mount Ephraim, and passed through the land of Shalisha, but they found them not: then they passed through the land of Shalim, and there they were not: and he passed through the land of the Benjamites, but they found them not. \nAnd when they were come to the land of Zuph, Saul said to his servant that was with him, Come, and let us return; lest my father leave caring for the asses, and take thought for us. \nAnd he said unto him, Behold now, there is in this city a man of God, and he is an honourable man; all that he saith cometh surely to pass: now let us go thither; peradventure he can shew us our way that we should go. \nThen said Saul to his servant, But, behold, if we go, what shall we bring the man? for the bread is spent in our vessels, and there is not a present to bring to the man of God: what have we? \nAnd the servant answered Saul again, and said, Behold, I have here at hand the fourth part of a shekel of silver: that will I give to the man of God, to tell us our way. \n(Beforetime in Israel, when a man went to enquire of God, thus he spake, Come, and let us go to the seer: for he that is now called a Prophet was beforetime called a Seer.) \nThen said Saul to his servant, Well said; come, let us go. So they went unto the city where the man of God was. \nAnd as they went up the hill to the city, they found young maidens going out to draw water, and said unto them, Is the seer here? \nAnd they answered them, and said, He is; behold, he is before you: make haste now, for he came to day to the city; for there is a sacrifice of the people to day in the high place: \nAs soon as ye be come into the city, ye shall straightway find him, before he go up to the high place to eat: for the people will not eat until he come, because he doth bless the sacrifice; and afterwards they eat that be bidden. Now therefore get you up; for about this time ye shall find him. \nAnd they went up into the city: and when they were come into the city, behold, Samuel came out against them, for to go up to the high place. \nNow the LORD had told Samuel in his ear a day before Saul came, saying, \nTo morrow about this time I will send thee a man out of the land of Benjamin, and thou shalt anoint him to be captain over my people Israel, that he may save my people out of the hand of the Philistines: for I have looked upon my people, because their cry is come unto me. \nAnd when Samuel saw Saul, the LORD said unto him, Behold the man whom I spake to thee of! this same shall reign over my people. \nThen Saul drew near to Samuel in the gate, and said, Tell me, I pray thee, where the seer's house is. \nAnd Samuel answered Saul, and said, I am the seer: go up before me unto the high place; for ye shall eat with me to day, and to morrow I will let thee go, and will tell thee all that is in thine heart. \nAnd as for thine asses that were lost three days ago, set not thy mind on them; for they are found. And on whom is all the desire of Israel? Is it not on thee, and on all thy father's house? \nAnd Saul answered and said, Am not I a Benjamite, of the smallest of the tribes of Israel? and my family the least of all the families of the tribe of Benjamin? wherefore then speakest thou so to me? \nAnd Samuel took Saul and his servant, and brought them into the parlour, and made them sit in the chiefest place among them that were bidden, which were about thirty persons. \nAnd Samuel said unto the cook, Bring the portion which I gave thee, of which I said unto thee, Set it by thee. \nAnd the cook took up the shoulder, and that which was upon it, and set it before Saul. And Samuel said, Behold that which is left! set it before thee, and eat: for unto this time hath it been kept for thee since I said, I have invited the people. So Saul did eat with Samuel that day. \nAnd when they were come down from the high place into the city, Samuel communed with Saul upon the top of the house. \nAnd they arose early: and it came to pass about the spring of the day, that Samuel called Saul to the top of the house, saying, Up, that I may send thee away. And Saul arose, and they went out both of them, he and Samuel, abroad. \nAnd as they were going down to the end of the city, Samuel said to Saul, Bid the servant pass on before us, (and he passed on), but stand thou still a while, that I may shew thee the word of God. \nThen Samuel took a vial of oil, and poured it upon his head, and kissed him, and said, Is it not because the LORD hath anointed thee to be captain over his inheritance? \nWhen thou art departed from me to day, then thou shalt find two men by Rachel's sepulchre in the border of Benjamin at Zelzah; and they will say unto thee, The asses which thou wentest to seek are found: and, lo, thy father hath left the care of the asses, and sorroweth for you, saying, What shall I do for my son? \nThen shalt thou go on forward from thence, and thou shalt come to the plain of Tabor, and there shall meet thee three men going up to God to Bethel, one carrying three kids, and another carrying three loaves of bread, and another carrying a bottle of wine: \nAnd they will salute thee, and give thee two loaves of bread; which thou shalt receive of their hands. \nAfter that thou shalt come to the hill of God, where is the garrison of the Philistines: and it shall come to pass, when thou art come thither to the city, that thou shalt meet a company of prophets coming down from the high place with a psaltery, and a tabret, and a pipe, and a harp, before them; and they shall prophesy: \nAnd the Spirit of the LORD will come upon thee, and thou shalt prophesy with them, and shalt be turned into another man. \nAnd let it be, when these signs are come unto thee, that thou do as occasion serve thee; for God is with thee. \nAnd thou shalt go down before me to Gilgal; and, behold, I will come down unto thee, to offer burnt offerings, and to sacrifice sacrifices of peace offerings: seven days shalt thou tarry, till I come to thee, and shew thee what thou shalt do. \nAnd it was so, that when he had turned his back to go from Samuel, God gave him another heart: and all those signs came to pass that day. \nAnd when they came thither to the hill, behold, a company of prophets met him; and the Spirit of God came upon him, and he prophesied among them. \nAnd it came to pass, when all that knew him beforetime saw that, behold, he prophesied among the prophets, then the people said one to another, What is this that is come unto the son of Kish? Is Saul also among the prophets? \nAnd one of the same place answered and said, But who is their father? Therefore it became a proverb, Is Saul also among the prophets? \nAnd when he had made an end of prophesying, he came to the high place. \nAnd Saul's uncle said unto him and to his servant, Whither went ye? And he said, To seek the asses: and when we saw that they were no where, we came to Samuel. \nAnd Saul's uncle said, Tell me, I pray thee, what Samuel said unto you. \nAnd Saul said unto his uncle, He told us plainly that the asses were found. But of the matter of the kingdom, whereof Samuel spake, he told him not. \nAnd Samuel called the people together unto the LORD to Mizpeh; \nAnd said unto the children of Israel, Thus saith the LORD God of Israel, I brought up Israel out of Egypt, and delivered you out of the hand of the Egyptians, and out of the hand of all kingdoms, and of them that oppressed you: \nAnd ye have this day rejected your God, who himself saved you out of all your adversities and your tribulations; and ye have said unto him, Nay, but set a king over us. Now therefore present yourselves before the LORD by your tribes, and by your thousands. \nAnd when Samuel had caused all the tribes of Israel to come near, the tribe of Benjamin was taken. \nWhen he had caused the tribe of Benjamin to come near by their families, the family of Matri was taken, and Saul the son of Kish was taken: and when they sought him, he could not be found. \nTherefore they enquired of the LORD further, if the man should yet come thither. And the LORD answered, Behold he hath hid himself among the stuff. \nAnd they ran and fetched him thence: and when he stood among the people, he was higher than any of the people from his shoulders and upward. \nAnd Samuel said to all the people, See ye him whom the LORD hath chosen, that there is none like him among all the people? And all the people shouted, and said, God save the king. \nThen Samuel told the people the manner of the kingdom, and wrote it in a book, and laid it up before the LORD. And Samuel sent all the people away, every man to his house. \nAnd Saul also went home to Gibeah; and there went with him a band of men, whose hearts God had touched. \nBut the children of Belial said, How shall this man save us? And they despised him, and brought no presents. But he held his peace. \nThen Nahash the Ammonite came up, and encamped against Jabeshgilead: and all the men of Jabesh said unto Nahash, Make a covenant with us, and we will serve thee. \nAnd Nahash the Ammonite answered them, On this condition will I make a covenant with you, that I may thrust out all your right eyes, and lay it for a reproach upon all Israel. \nAnd the elders of Jabesh said unto him, Give us seven days' respite, that we may send messengers unto all the coasts of Israel: and then, if there be no man to save us, we will come out to thee. \nThen came the messengers to Gibeah of Saul, and told the tidings in the ears of the people: and all the people lifted up their voices, and wept. \nAnd, behold, Saul came after the herd out of the field; and Saul said, What aileth the people that they weep? And they told him the tidings of the men of Jabesh. \nAnd the Spirit of God came upon Saul when he heard those tidings, and his anger was kindled greatly. \nAnd he took a yoke of oxen, and hewed them in pieces, and sent them throughout all the coasts of Israel by the hands of messengers, saying, Whosoever cometh not forth after Saul and after Samuel, so shall it be done unto his oxen. And the fear of the LORD fell on the people, and they came out with one consent. \nAnd when he numbered them in Bezek, the children of Israel were three hundred thousand, and the men of Judah thirty thousand. \nAnd they said unto the messengers that came, Thus shall ye say unto the men of Jabeshgilead, To morrow, by that time the sun be hot, ye shall have help. And the messengers came and shewed it to the men of Jabesh; and they were glad. \nTherefore the men of Jabesh said, To morrow we will come out unto you, and ye shall do with us all that seemeth good unto you. \nAnd it was so on the morrow, that Saul put the people in three companies; and they came into the midst of the host in the morning watch, and slew the Ammonites until the heat of the day: and it came to pass, that they which remained were scattered, so that two of them were not left together. \nAnd the people said unto Samuel, Who is he that said, Shall Saul reign over us? bring the men, that we may put them to death. \nAnd Saul said, There shall not a man be put to death this day: for to day the LORD hath wrought salvation in Israel. \nThen said Samuel to the people, Come, and let us go to Gilgal, and renew the kingdom there. \nAnd all the people went to Gilgal; and there they made Saul king before the LORD in Gilgal; and there they sacrificed sacrifices of peace offerings before the LORD; and there Saul and all the men of Israel rejoiced greatly. \nAnd Samuel said unto all Israel, Behold, I have hearkened unto your voice in all that ye said unto me, and have made a king over you. \nAnd now, behold, the king walketh before you: and I am old and grayheaded; and, behold, my sons are with you: and I have walked before you from my childhood unto this day. \nBehold, here I am: witness against me before the LORD, and before his anointed: whose ox have I taken? or whose ass have I taken? or whom have I defrauded? whom have I oppressed? or of whose hand have I received any bribe to blind mine eyes therewith? and I will restore it you. \nAnd they said, Thou hast not defrauded us, nor oppressed us, neither hast thou taken ought of any man's hand. \nAnd he said unto them, The LORD is witness against you, and his anointed is witness this day, that ye have not found ought in my hand. And they answered, He is witness. \nAnd Samuel said unto the people, It is the LORD that advanced Moses and Aaron, and that brought your fathers up out of the land of Egypt. \nNow therefore stand still, that I may reason with you before the LORD of all the righteous acts of the LORD, which he did to you and to your fathers. \nWhen Jacob was come into Egypt, and your fathers cried unto the LORD, then the LORD sent Moses and Aaron, which brought forth your fathers out of Egypt, and made them dwell in this place. \nAnd when they forgat the LORD their God, he sold them into the hand of Sisera, captain of the host of Hazor, and into the hand of the Philistines, and into the hand of the king of Moab, and they fought against them. \nAnd they cried unto the LORD, and said, We have sinned, because we have forsaken the LORD, and have served Baalim and Ashtaroth: but now deliver us out of the hand of our enemies, and we will serve thee. \nAnd the LORD sent Jerubbaal, and Bedan, and Jephthah, and Samuel, and delivered you out of the hand of your enemies on every side, and ye dwelled safe. \nAnd when ye saw that Nahash the king of the children of Ammon came against you, ye said unto me, Nay; but a king shall reign over us: when the LORD your God was your king. \nNow therefore behold the king whom ye have chosen, and whom ye have desired! and, behold, the LORD hath set a king over you. \nIf ye will fear the LORD, and serve him, and obey his voice, and not rebel against the commandment of the LORD, then shall both ye and also the king that reigneth over you continue following the LORD your God: \nBut if ye will not obey the voice of the LORD, but rebel against the commandment of the LORD, then shall the hand of the LORD be against you, as it was against your fathers. \nNow therefore stand and see this great thing, which the LORD will do before your eyes. \nIs it not wheat harvest to day? I will call unto the LORD, and he shall send thunder and rain; that ye may perceive and see that your wickedness is great, which ye have done in the sight of the LORD, in asking you a king. \nSo Samuel called unto the LORD; and the LORD sent thunder and rain that day: and all the people greatly feared the LORD and Samuel. \nAnd all the people said unto Samuel, Pray for thy servants unto the LORD thy God, that we die not: for we have added unto all our sins this evil, to ask us a king. \nAnd Samuel said unto the people, Fear not: ye have done all this wickedness: yet turn not aside from following the LORD, but serve the LORD with all your heart; \nAnd turn ye not aside: for then should ye go after vain things, which cannot profit nor deliver; for they are vain. \nFor the LORD will not forsake his people for his great name's sake: because it hath pleased the LORD to make you his people. \nMoreover as for me, God forbid that I should sin against the LORD in ceasing to pray for you: but I will teach you the good and the right way: \nOnly fear the LORD, and serve him in truth with all your heart: for consider how great things he hath done for you. \nBut if ye shall still do wickedly, ye shall be consumed, both ye and your king. \nSaul reigned one year; and when he had reigned two years over Israel, \nSaul chose him three thousand men of Israel; whereof two thousand were with Saul in Michmash and in mount Bethel, and a thousand were with Jonathan in Gibeah of Benjamin: and the rest of the people he sent every man to his tent. \nAnd Jonathan smote the garrison of the Philistines that was in Geba, and the Philistines heard of it. And Saul blew the trumpet throughout all the land, saying, Let the Hebrews hear. \nAnd all Israel heard say that Saul had smitten a garrison of the Philistines, and that Israel also was had in abomination with the Philistines. And the people were called together after Saul to Gilgal. \nAnd the Philistines gathered themselves together to fight with Israel, thirty thousand chariots, and six thousand horsemen, and people as the sand which is on the sea shore in multitude: and they came up, and pitched in Michmash, eastward from Bethaven. \nWhen the men of Israel saw that they were in a strait, (for the people were distressed,) then the people did hide themselves in caves, and in thickets, and in rocks, and in high places, and in pits. \nAnd some of the Hebrews went over Jordan to the land of Gad and Gilead. As for Saul, he was yet in Gilgal, and all the people followed him trembling. \nAnd he tarried seven days, according to the set time that Samuel had appointed: but Samuel came not to Gilgal; and the people were scattered from him. \nAnd Saul said, Bring hither a burnt offering to me, and peace offerings. And he offered the burnt offering. \nAnd it came to pass, that as soon as he had made an end of offering the burnt offering, behold, Samuel came; and Saul went out to meet him, that he might salute him. \nAnd Samuel said, What hast thou done? And Saul said, Because I saw that the people were scattered from me, and that thou camest not within the days appointed, and that the Philistines gathered themselves together at Michmash; \nTherefore said I, The Philistines will come down now upon me to Gilgal, and I have not made supplication unto the LORD: I forced myself therefore, and offered a burnt offering. \nAnd Samuel said to Saul, Thou hast done foolishly: thou hast not kept the commandment of the LORD thy God, which he commanded thee: for now would the LORD have established thy kingdom upon Israel for ever. \nBut now thy kingdom shall not continue: the LORD hath sought him a man after his own heart, and the LORD hath commanded him to be captain over his people, because thou hast not kept that which the LORD commanded thee. \nAnd Samuel arose, and gat him up from Gilgal unto Gibeah of Benjamin. And Saul numbered the people that were present with him, about six hundred men. \nAnd Saul, and Jonathan his son, and the people that were present with them, abode in Gibeah of Benjamin: but the Philistines encamped in Michmash. \nAnd the spoilers came out of the camp of the Philistines in three companies: one company turned unto the way that leadeth to Ophrah, unto the land of Shual: \nAnd another company turned the way to Bethhoron: and another company turned to the way of the border that looketh to the valley of Zeboim toward the wilderness. \nNow there was no smith found throughout all the land of Israel: for the Philistines said, Lest the Hebrews make them swords or spears: \nBut all the Israelites went down to the Philistines, to sharpen every man his share, and his coulter, and his axe, and his mattock. \nYet they had a file for the mattocks, and for the coulters, and for the forks, and for the axes, and to sharpen the goads. \nSo it came to pass in the day of battle, that there was neither sword nor spear found in the hand of any of the people that were with Saul and Jonathan: but with Saul and with Jonathan his son was there found. \nAnd the garrison of the Philistines went out to the passage of Michmash. \nNow it came to pass upon a day, that Jonathan the son of Saul said unto the young man that bare his armour, Come, and let us go over to the Philistines' garrison, that is on the other side. But he told not his father. \nAnd Saul tarried in the uttermost part of Gibeah under a pomegranate tree which is in Migron: and the people that were with him were about six hundred men; \nAnd Ahiah, the son of Ahitub, Ichabod's brother, the son of Phinehas, the son of Eli, the LORD's priest in Shiloh, wearing an ephod. And the people knew not that Jonathan was gone. \nAnd between the passages, by which Jonathan sought to go over unto the Philistines' garrison, there was a sharp rock on the one side, and a sharp rock on the other side: and the name of the one was Bozez, and the name of the other Seneh. \nThe forefront of the one was situate northward over against Michmash, and the other southward over against Gibeah. \nAnd Jonathan said to the young man that bare his armour, Come, and let us go over unto the garrison of these uncircumcised: it may be that the LORD will work for us: for there is no restraint to the LORD to save by many or by few. \nAnd his armourbearer said unto him, Do all that is in thine heart: turn thee; behold, I am with thee according to thy heart. \nThen said Jonathan, Behold, we will pass over unto these men, and we will discover ourselves unto them. \nIf they say thus unto us, Tarry until we come to you; then we will stand still in our place, and will not go up unto them. \nBut if they say thus, Come up unto us; then we will go up: for the LORD hath delivered them into our hand: and this shall be a sign unto us. \nAnd both of them discovered themselves unto the garrison of the Philistines: and the Philistines said, Behold, the Hebrews come forth out of the holes where they had hid themselves. \nAnd the men of the garrison answered Jonathan and his armourbearer, and said, Come up to us, and we will shew you a thing. And Jonathan said unto his armourbearer, Come up after me: for the LORD hath delivered them into the hand of Israel. \nAnd Jonathan climbed up upon his hands and upon his feet, and his armourbearer after him: and they fell before Jonathan; and his armourbearer slew after him. \nAnd that first slaughter, which Jonathan and his armourbearer made, was about twenty men, within as it were an half acre of land, which a yoke of oxen might plow. \nAnd there was trembling in the host, in the field, and among all the people: the garrison, and the spoilers, they also trembled, and the earth quaked: so it was a very great trembling. \nAnd the watchmen of Saul in Gibeah of Benjamin looked; and, behold, the multitude melted away, and they went on beating down one another. \nThen said Saul unto the people that were with him, Number now, and see who is gone from us. And when they had numbered, behold, Jonathan and his armourbearer were not there. \nAnd Saul said unto Ahiah, Bring hither the ark of God. For the ark of God was at that time with the children of Israel. \nAnd it came to pass, while Saul talked unto the priest, that the noise that was in the host of the Philistines went on and increased: and Saul said unto the priest, Withdraw thine hand. \nAnd Saul and all the people that were with him assembled themselves, and they came to the battle: and, behold, every man's sword was against his fellow, and there was a very great discomfiture. \nMoreover the Hebrews that were with the Philistines before that time, which went up with them into the camp from the country round about, even they also turned to be with the Israelites that were with Saul and Jonathan. \nLikewise all the men of Israel which had hid themselves in mount Ephraim, when they heard that the Philistines fled, even they also followed hard after them in the battle. \nSo the LORD saved Israel that day: and the battle passed over unto Bethaven. \nAnd the men of Israel were distressed that day: for Saul had adjured the people, saying, Cursed be the man that eateth any food until evening, that I may be avenged on mine enemies. So none of the people tasted any food. \nAnd all they of the land came to a wood; and there was honey upon the ground. \nAnd when the people were come into the wood, behold, the honey dropped; but no man put his hand to his mouth: for the people feared the oath. \nBut Jonathan heard not when his father charged the people with the oath: wherefore he put forth the end of the rod that was in his hand, and dipped it in an honeycomb, and put his hand to his mouth; and his eyes were enlightened. \nThen answered one of the people, and said, Thy father straitly charged the people with an oath, saying, Cursed be the man that eateth any food this day. And the people were faint. \nThen said Jonathan, My father hath troubled the land: see, I pray you, how mine eyes have been enlightened, because I tasted a little of this honey. \nHow much more, if haply the people had eaten freely to day of the spoil of their enemies which they found? for had there not been now a much greater slaughter among the Philistines? \nAnd they smote the Philistines that day from Michmash to Aijalon: and the people were very faint. \nAnd the people flew upon the spoil, and took sheep, and oxen, and calves, and slew them on the ground: and the people did eat them with the blood. \nThen they told Saul, saying, Behold, the people sin against the LORD, in that they eat with the blood. And he said, Ye have transgressed: roll a great stone unto me this day. \nAnd Saul said, Disperse yourselves among the people, and say unto them, Bring me hither every man his ox, and every man his sheep, and slay them here, and eat; and sin not against the LORD in eating with the blood. And all the people brought every man his ox with him that night, and slew them there. \nAnd Saul built an altar unto the LORD: the same was the first altar that he built unto the LORD. \nAnd Saul said, Let us go down after the Philistines by night, and spoil them until the morning light, and let us not leave a man of them. And they said, Do whatsoever seemeth good unto thee. Then said the priest, Let us draw near hither unto God. \nAnd Saul asked counsel of God, Shall I go down after the Philistines? wilt thou deliver them into the hand of Israel? But he answered him not that day. \nAnd Saul said, Draw ye near hither, all the chief of the people: and know and see wherein this sin hath been this day. \nFor, as the LORD liveth, which saveth Israel, though it be in Jonathan my son, he shall surely die. But there was not a man among all the people that answered him. \nThen said he unto all Israel, Be ye on one side, and I and Jonathan my son will be on the other side. And the people said unto Saul, Do what seemeth good unto thee. \nTherefore Saul said unto the LORD God of Israel, Give a perfect lot. And Saul and Jonathan were taken: but the people escaped. \nAnd Saul said, Cast lots between me and Jonathan my son. And Jonathan was taken. \nThen Saul said to Jonathan, Tell me what thou hast done. And Jonathan told him, and said, I did but taste a little honey with the end of the rod that was in mine hand, and, lo, I must die. \nAnd Saul answered, God do so and more also: for thou shalt surely die, Jonathan. \nAnd the people said unto Saul, Shall Jonathan die, who hath wrought this great salvation in Israel? God forbid: as the LORD liveth, there shall not one hair of his head fall to the ground; for he hath wrought with God this day. So the people rescued Jonathan, that he died not. \nThen Saul went up from following the Philistines: and the Philistines went to their own place. \nSo Saul took the kingdom over Israel, and fought against all his enemies on every side, against Moab, and against the children of Ammon, and against Edom, and against the kings of Zobah, and against the Philistines: and whithersoever he turned himself, he vexed them. \nAnd he gathered an host, and smote the Amalekites, and delivered Israel out of the hands of them that spoiled them. \nNow the sons of Saul were Jonathan, and Ishui, and Melchishua: and the names of his two daughters were these; the name of the firstborn Merab, and the name of the younger Michal: \nAnd the name of Saul's wife was Ahinoam, the daughter of Ahimaaz: and the name of the captain of his host was Abner, the son of Ner, Saul's uncle. \nAnd Kish was the father of Saul; and Ner the father of Abner was the son of Abiel. \nAnd there was sore war against the Philistines all the days of Saul: and when Saul saw any strong man, or any valiant man, he took him unto him. \nSamuel also said unto Saul, The LORD sent me to anoint thee to be king over his people, over Israel: now therefore hearken thou unto the voice of the words of the LORD. \nThus saith the LORD of hosts, I remember that which Amalek did to Israel, how he laid wait for him in the way, when he came up from Egypt. \nNow go and smite Amalek, and utterly destroy all that they have, and spare them not; but slay both man and woman, infant and suckling, ox and sheep, camel and ass. \nAnd Saul gathered the people together, and numbered them in Telaim, two hundred thousand footmen, and ten thousand men of Judah. \nAnd Saul came to a city of Amalek, and laid wait in the valley. \nAnd Saul said unto the Kenites, Go, depart, get you down from among the Amalekites, lest I destroy you with them: for ye shewed kindness to all the children of Israel, when they came up out of Egypt. So the Kenites departed from among the Amalekites. \nAnd Saul smote the Amalekites from Havilah until thou comest to Shur, that is over against Egypt. \nAnd he took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword. \nBut Saul and the people spared Agag, and the best of the sheep, and of the oxen, and of the fatlings, and the lambs, and all that was good, and would not utterly destroy them: but every thing that was vile and refuse, that they destroyed utterly. \nThen came the word of the LORD unto Samuel, saying, \nIt repenteth me that I have set up Saul to be king: for he is turned back from following me, and hath not performed my commandments. And it grieved Samuel; and he cried unto the LORD all night. \nAnd when Samuel rose early to meet Saul in the morning, it was told Samuel, saying, Saul came to Carmel, and, behold, he set him up a place, and is gone about, and passed on, and gone down to Gilgal. \nAnd Samuel came to Saul: and Saul said unto him, Blessed be thou of the LORD: I have performed the commandment of the LORD. \nAnd Samuel said, What meaneth then this bleating of the sheep in mine ears, and the lowing of the oxen which I hear? \nAnd Saul said, They have brought them from the Amalekites: for the people spared the best of the sheep and of the oxen, to sacrifice unto the LORD thy God; and the rest we have utterly destroyed. \nThen Samuel said unto Saul, Stay, and I will tell thee what the LORD hath said to me this night. And he said unto him, Say on. \nAnd Samuel said, When thou wast little in thine own sight, wast thou not made the head of the tribes of Israel, and the LORD anointed thee king over Israel? \nAnd the LORD sent thee on a journey, and said, Go and utterly destroy the sinners the Amalekites, and fight against them until they be consumed. \nWherefore then didst thou not obey the voice of the LORD, but didst fly upon the spoil, and didst evil in the sight of the LORD? \nAnd Saul said unto Samuel, Yea, I have obeyed the voice of the LORD, and have gone the way which the LORD sent me, and have brought Agag the king of Amalek, and have utterly destroyed the Amalekites. \nBut the people took of the spoil, sheep and oxen, the chief of the things which should have been utterly destroyed, to sacrifice unto the LORD thy God in Gilgal. \nAnd Samuel said, Hath the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Behold, to obey is better than sacrifice, and to hearken than the fat of rams. \nFor rebellion is as the sin of witchcraft, and stubbornness is as iniquity and idolatry. Because thou hast rejected the word of the LORD, he hath also rejected thee from being king. \nAnd Saul said unto Samuel, I have sinned: for I have transgressed the commandment of the LORD, and thy words: because I feared the people, and obeyed their voice. \nNow therefore, I pray thee, pardon my sin, and turn again with me, that I may worship the LORD. \nAnd Samuel said unto Saul, I will not return with thee: for thou hast rejected the word of the LORD, and the LORD hath rejected thee from being king over Israel. \nAnd as Samuel turned about to go away, he laid hold upon the skirt of his mantle, and it rent. \nAnd Samuel said unto him, The LORD hath rent the kingdom of Israel from thee this day, and hath given it to a neighbour of thine, that is better than thou. \nAnd also the Strength of Israel will not lie nor repent: for he is not a man, that he should repent. \nThen he said, I have sinned: yet honour me now, I pray thee, before the elders of my people, and before Israel, and turn again with me, that I may worship the LORD thy God. \nSo Samuel turned again after Saul; and Saul worshipped the LORD. \nThen said Samuel, Bring ye hither to me Agag the king of the Amalekites. And Agag came unto him delicately. And Agag said, Surely the bitterness of death is past. \nAnd Samuel said, As the sword hath made women childless, so shall thy mother be childless among women. And Samuel hewed Agag in pieces before the LORD in Gilgal. \nThen Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul. \nAnd Samuel came no more to see Saul until the day of his death: nevertheless Samuel mourned for Saul: and the LORD repented that he had made Saul king over Israel. \nAnd the LORD said unto Samuel, How long wilt thou mourn for Saul, seeing I have rejected him from reigning over Israel? fill thine horn with oil, and go, I will send thee to Jesse the Bethlehemite: for I have provided me a king among his sons. \nAnd Samuel said, How can I go? if Saul hear it, he will kill me. And the LORD said, Take an heifer with thee, and say, I am come to sacrifice to the LORD. \nAnd call Jesse to the sacrifice, and I will shew thee what thou shalt do: and thou shalt anoint unto me him whom I name unto thee. \nAnd Samuel did that which the LORD spake, and came to Bethlehem. And the elders of the town trembled at his coming, and said, Comest thou peaceably? \nAnd he said, Peaceably: I am come to sacrifice unto the LORD: sanctify yourselves, and come with me to the sacrifice. And he sanctified Jesse and his sons, and called them to the sacrifice. \nAnd it came to pass, when they were come, that he looked on Eliab, and said, Surely the LORD's anointed is before him. \nBut the LORD said unto Samuel, Look not on his countenance, or on the height of his stature; because I have refused him: for the LORD seeth not as man seeth; for man looketh on the outward appearance, but the LORD looketh on the heart. \nThen Jesse called Abinadab, and made him pass before Samuel. And he said, Neither hath the LORD chosen this. \nThen Jesse made Shammah to pass by. And he said, Neither hath the LORD chosen this. \nAgain, Jesse made seven of his sons to pass before Samuel. And Samuel said unto Jesse, The LORD hath not chosen these. \nAnd Samuel said unto Jesse, Are here all thy children? And he said, There remaineth yet the youngest, and, behold, he keepeth the sheep. And Samuel said unto Jesse, Send and fetch him: for we will not sit down till he come hither. \nAnd he sent, and brought him in. Now he was ruddy, and withal of a beautiful countenance, and goodly to look to. And the LORD said, Arise, anoint him: for this is he. \nThen Samuel took the horn of oil, and anointed him in the midst of his brethren: and the Spirit of the LORD came upon David from that day forward. So Samuel rose up, and went to Ramah. \nBut the Spirit of the LORD departed from Saul, and an evil spirit from the LORD troubled him. \nAnd Saul's servants said unto him, Behold now, an evil spirit from God troubleth thee. \nLet our lord now command thy servants, which are before thee, to seek out a man, who is a cunning player on an harp: and it shall come to pass, when the evil spirit from God is upon thee, that he shall play with his hand, and thou shalt be well. \nAnd Saul said unto his servants, Provide me now a man that can play well, and bring him to me. \nThen answered one of the servants, and said, Behold, I have seen a son of Jesse the Bethlehemite, that is cunning in playing, and a mighty valiant man, and a man of war, and prudent in matters, and a comely person, and the LORD is with him. \nWherefore Saul sent messengers unto Jesse, and said, Send me David thy son, which is with the sheep. \nAnd Jesse took an ass laden with bread, and a bottle of wine, and a kid, and sent them by David his son unto Saul. \nAnd David came to Saul, and stood before him: and he loved him greatly; and he became his armourbearer. \nAnd Saul sent to Jesse, saying, Let David, I pray thee, stand before me; for he hath found favour in my sight. \nAnd it came to pass, when the evil spirit from God was upon Saul, that David took an harp, and played with his hand: so Saul was refreshed, and was well, and the evil spirit departed from him. \nNow the Philistines gathered together their armies to battle, and were gathered together at Shochoh, which belongeth to Judah, and pitched between Shochoh and Azekah, in Ephesdammim. \nAnd Saul and the men of Israel were gathered together, and pitched by the valley of Elah, and set the battle in array against the Philistines. \nAnd the Philistines stood on a mountain on the one side, and Israel stood on a mountain on the other side: and there was a valley between them. \nAnd there went out a champion out of the camp of the Philistines, named Goliath, of Gath, whose height was six cubits and a span. \nAnd he had an helmet of brass upon his head, and he was armed with a coat of mail; and the weight of the coat was five thousand shekels of brass. \nAnd he had greaves of brass upon his legs, and a target of brass between his shoulders. \nAnd the staff of his spear was like a weaver's beam; and his spear's head weighed six hundred shekels of iron: and one bearing a shield went before him. \nAnd he stood and cried unto the armies of Israel, and said unto them, Why are ye come out to set your battle in array? am not I a Philistine, and ye servants to Saul? choose you a man for you, and let him come down to me. \nIf he be able to fight with me, and to kill me, then will we be your servants: but if I prevail against him, and kill him, then shall ye be our servants, and serve us. \nAnd the Philistine said, I defy the armies of Israel this day; give me a man, that we may fight together. \nWhen Saul and all Israel heard those words of the Philistine, they were dismayed, and greatly afraid. \nNow David was the son of that Ephrathite of Bethlehemjudah, whose name was Jesse; and he had eight sons: and the man went among men for an old man in the days of Saul. \nAnd the three eldest sons of Jesse went and followed Saul to the battle: and the names of his three sons that went to the battle were Eliab the firstborn, and next unto him Abinadab, and the third Shammah. \nAnd David was the youngest: and the three eldest followed Saul. \nBut David went and returned from Saul to feed his father's sheep at Bethlehem. \nAnd the Philistine drew near morning and evening, and presented himself forty days. \nAnd Jesse said unto David his son, Take now for thy brethren an ephah of this parched corn, and these ten loaves, and run to the camp of thy brethren; \nAnd carry these ten cheeses unto the captain of their thousand, and look how thy brethren fare, and take their pledge. \nNow Saul, and they, and all the men of Israel, were in the valley of Elah, fighting with the Philistines. \nAnd David rose up early in the morning, and left the sheep with a keeper, and took, and went, as Jesse had commanded him; and he came to the trench, as the host was going forth to the fight, and shouted for the battle. \nFor Israel and the Philistines had put the battle in array, army against army. \nAnd David left his carriage in the hand of the keeper of the carriage, and ran into the army, and came and saluted his brethren. \nAnd as he talked with them, behold, there came up the champion, the Philistine of Gath, Goliath by name, out of the armies of the Philistines, and spake according to the same words: and David heard them. \nAnd all the men of Israel, when they saw the man, fled from him, and were sore afraid. \nAnd the men of Israel said, Have ye seen this man that is come up? surely to defy Israel is he come up: and it shall be, that the man who killeth him, the king will enrich him with great riches, and will give him his daughter, and make his father's house free in Israel. \nAnd David spake to the men that stood by him, saying, What shall be done to the man that killeth this Philistine, and taketh away the reproach from Israel? for who is this uncircumcised Philistine, that he should defy the armies of the living God? \nAnd the people answered him after this manner, saying, So shall it be done to the man that killeth him. \nAnd Eliab his eldest brother heard when he spake unto the men; and Eliab's anger was kindled against David, and he said, Why camest thou down hither? and with whom hast thou left those few sheep in the wilderness? I know thy pride, and the naughtiness of thine heart; for thou art come down that thou mightest see the battle. \nAnd David said, What have I now done? Is there not a cause? \nAnd he turned from him toward another, and spake after the same manner: and the people answered him again after the former manner. \nAnd when the words were heard which David spake, they rehearsed them before Saul: and he sent for him. \nAnd David said to Saul, Let no man's heart fail because of him; thy servant will go and fight with this Philistine. \nAnd Saul said to David, Thou art not able to go against this Philistine to fight with him: for thou art but a youth, and he a man of war from his youth. \nAnd David said unto Saul, Thy servant kept his father's sheep, and there came a lion, and a bear, and took a lamb out of the flock: \nAnd I went out after him, and smote him, and delivered it out of his mouth: and when he arose against me, I caught him by his beard, and smote him, and slew him. \nThy servant slew both the lion and the bear: and this uncircumcised Philistine shall be as one of them, seeing he hath defied the armies of the living God. \nDavid said moreover, The LORD that delivered me out of the paw of the lion, and out of the paw of the bear, he will deliver me out of the hand of this Philistine. And Saul said unto David, Go, and the LORD be with thee. \nAnd Saul armed David with his armour, and he put an helmet of brass upon his head; also he armed him with a coat of mail. \nAnd David girded his sword upon his armour, and he assayed to go; for he had not proved it. And David said unto Saul, I cannot go with these; for I have not proved them. And David put them off him. \nAnd he took his staff in his hand, and chose him five smooth stones out of the brook, and put them in a shepherd's bag which he had, even in a scrip; and his sling was in his hand: and he drew near to the Philistine. \nAnd the Philistine came on and drew near unto David; and the man that bare the shield went before him. \nAnd when the Philistine looked about, and saw David, he disdained him: for he was but a youth, and ruddy, and of a fair countenance. \nAnd the Philistine said unto David, Am I a dog, that thou comest to me with staves? And the Philistine cursed David by his gods. \nAnd the Philistine said to David, Come to me, and I will give thy flesh unto the fowls of the air, and to the beasts of the field. \nThen said David to the Philistine, Thou comest to me with a sword, and with a spear, and with a shield: but I come to thee in the name of the LORD of hosts, the God of the armies of Israel, whom thou hast defied. \nThis day will the LORD deliver thee into mine hand; and I will smite thee, and take thine head from thee; and I will give the carcases of the host of the Philistines this day unto the fowls of the air, and to the wild beasts of the earth; that all the earth may know that there is a God in Israel. \nAnd all this assembly shall know that the LORD saveth not with sword and spear: for the battle is the LORD's, and he will give you into our hands. \nAnd it came to pass, when the Philistine arose, and came, and drew nigh to meet David, that David hastened, and ran toward the army to meet the Philistine. \nAnd David put his hand in his bag, and took thence a stone, and slang it, and smote the Philistine in his forehead, that the stone sunk into his forehead; and he fell upon his face to the earth. \nSo David prevailed over the Philistine with a sling and with a stone, and smote the Philistine, and slew him; but there was no sword in the hand of David. \nTherefore David ran, and stood upon the Philistine, and took his sword, and drew it out of the sheath thereof, and slew him, and cut off his head therewith. And when the Philistines saw their champion was dead, they fled. \nAnd the men of Israel and of Judah arose, and shouted, and pursued the Philistines, until thou come to the valley, and to the gates of Ekron. And the wounded of the Philistines fell down by the way to Shaaraim, even unto Gath, and unto Ekron. \nAnd the children of Israel returned from chasing after the Philistines, and they spoiled their tents. \nAnd David took the head of the Philistine, and brought it to Jerusalem; but he put his armour in his tent. \nAnd when Saul saw David go forth against the Philistine, he said unto Abner, the captain of the host, Abner, whose son is this youth? And Abner said, As thy soul liveth, O king, I cannot tell. \nAnd the king said, Enquire thou whose son the stripling is. \nAnd as David returned from the slaughter of the Philistine, Abner took him, and brought him before Saul with the head of the Philistine in his hand. \nAnd Saul said to him, Whose son art thou, thou young man? And David answered, I am the son of thy servant Jesse the Bethlehemite. \nAnd it came to pass, when he had made an end of speaking unto Saul, that the soul of Jonathan was knit with the soul of David, and Jonathan loved him as his own soul. \nAnd Saul took him that day, and would let him go no more home to his father's house. \nThen Jonathan and David made a covenant, because he loved him as his own soul. \nAnd Jonathan stripped himself of the robe that was upon him, and gave it to David, and his garments, even to his sword, and to his bow, and to his girdle. \nAnd David went out whithersoever Saul sent him, and behaved himself wisely: and Saul set him over the men of war, and he was accepted in the sight of all the people, and also in the sight of Saul's servants. \nAnd it came to pass as they came, when David was returned from the slaughter of the Philistine, that the women came out of all cities of Israel, singing and dancing, to meet king Saul, with tabrets, with joy, and with instruments of musick. \nAnd the women answered one another as they played, and said, Saul hath slain his thousands, and David his ten thousands. \nAnd Saul was very wroth, and the saying displeased him; and he said, They have ascribed unto David ten thousands, and to me they have ascribed but thousands: and what can he have more but the kingdom? \nAnd Saul eyed David from that day and forward. \nAnd it came to pass on the morrow, that the evil spirit from God came upon Saul, and he prophesied in the midst of the house: and David played with his hand, as at other times: and there was a javelin in Saul's hand. \nAnd Saul cast the javelin; for he said, I will smite David even to the wall with it. And David avoided out of his presence twice. \nAnd Saul was afraid of David, because the LORD was with him, and was departed from Saul. \nTherefore Saul removed him from him, and made him his captain over a thousand; and he went out and came in before the people. \nAnd David behaved himself wisely in all his ways; and the LORD was with him. \nWherefore when Saul saw that he behaved himself very wisely, he was afraid of him. \nBut all Israel and Judah loved David, because he went out and came in before them. \nAnd Saul said to David, Behold my elder daughter Merab, her will I give thee to wife: only be thou valiant for me, and fight the LORD's battles. For Saul said, Let not mine hand be upon him, but let the hand of the Philistines be upon him. \nAnd David said unto Saul, Who am I? and what is my life, or my father's family in Israel, that I should be son in law to the king? \nBut it came to pass at the time when Merab Saul's daughter should have been given to David, that she was given unto Adriel the Meholathite to wife. \nAnd Michal Saul's daughter loved David: and they told Saul, and the thing pleased him. \nAnd Saul said, I will give him her, that she may be a snare to him, and that the hand of the Philistines may be against him. Wherefore Saul said to David, Thou shalt this day be my son in law in the one of the twain. \nAnd Saul commanded his servants, saying, Commune with David secretly, and say, Behold, the king hath delight in thee, and all his servants love thee: now therefore be the king's son in law. \nAnd Saul's servants spake those words in the ears of David. And David said, Seemeth it to you a light thing to be a king's son in law, seeing that I am a poor man, and lightly esteemed? \nAnd the servants of Saul told him, saying, On this manner spake David. \nAnd Saul said, Thus shall ye say to David, The king desireth not any dowry, but an hundred foreskins of the Philistines, to be avenged of the king's enemies. But Saul thought to make David fall by the hand of the Philistines. \nAnd when his servants told David these words, it pleased David well to be the king's son in law: and the days were not expired. \nWherefore David arose and went, he and his men, and slew of the Philistines two hundred men; and David brought their foreskins, and they gave them in full tale to the king, that he might be the king's son in law. And Saul gave him Michal his daughter to wife. \nAnd Saul saw and knew that the LORD was with David, and that Michal Saul's daughter loved him. \nAnd Saul was yet the more afraid of David; and Saul became David's enemy continually. \nThen the princes of the Philistines went forth: and it came to pass, after they went forth, that David behaved himself more wisely than all the servants of Saul; so that his name was much set by. \nAnd Saul spake to Jonathan his son, and to all his servants, that they should kill David. \nBut Jonathan Saul's son delighted much in David: and Jonathan told David, saying, Saul my father seeketh to kill thee: now therefore, I pray thee, take heed to thyself until the morning, and abide in a secret place, and hide thyself: \nAnd I will go out and stand beside my father in the field where thou art, and I will commune with my father of thee; and what I see, that I will tell thee. \nAnd Jonathan spake good of David unto Saul his father, and said unto him, Let not the king sin against his servant, against David; because he hath not sinned against thee, and because his works have been to thee-ward very good: \nFor he did put his life in his hand, and slew the Philistine, and the LORD wrought a great salvation for all Israel: thou sawest it, and didst rejoice: wherefore then wilt thou sin against innocent blood, to slay David without a cause? \nAnd Saul hearkened unto the voice of Jonathan: and Saul sware, As the LORD liveth, he shall not be slain. \nAnd Jonathan called David, and Jonathan shewed him all those things. And Jonathan brought David to Saul, and he was in his presence, as in times past. \nAnd there was war again: and David went out, and fought with the Philistines, and slew them with a great slaughter; and they fled from him. \nAnd the evil spirit from the LORD was upon Saul, as he sat in his house with his javelin in his hand: and David played with his hand. \nAnd Saul sought to smite David even to the wall with the javelin: but he slipped away out of Saul's presence, and he smote the javelin into the wall: and David fled, and escaped that night. \nSaul also sent messengers unto David's house, to watch him, and to slay him in the morning: and Michal David's wife told him, saying, If thou save not thy life to night, to morrow thou shalt be slain. \nSo Michal let David down through a window: and he went, and fled, and escaped. \nAnd Michal took an image, and laid it in the bed, and put a pillow of goats' hair for his bolster, and covered it with a cloth. \nAnd when Saul sent messengers to take David, she said, He is sick. \nAnd Saul sent the messengers again to see David, saying, Bring him up to me in the bed, that I may slay him. \nAnd when the messengers were come in, behold, there was an image in the bed, with a pillow of goats' hair for his bolster. \nAnd Saul said unto Michal, Why hast thou deceived me so, and sent away mine enemy, that he is escaped? And Michal answered Saul, He said unto me, Let me go; why should I kill thee? \nSo David fled, and escaped, and came to Samuel to Ramah, and told him all that Saul had done to him. And he and Samuel went and dwelt in Naioth. \nAnd it was told Saul, saying, Behold, David is at Naioth in Ramah. \nAnd Saul sent messengers to take David: and when they saw the company of the prophets prophesying, and Samuel standing as appointed over them, the Spirit of God was upon the messengers of Saul, and they also prophesied. \nAnd when it was told Saul, he sent other messengers, and they prophesied likewise. And Saul sent messengers again the third time, and they prophesied also. \nThen went he also to Ramah, and came to a great well that is in Sechu: and he asked and said, Where are Samuel and David? And one said, Behold, they be at Naioth in Ramah. \nAnd he went thither to Naioth in Ramah: and the Spirit of God was upon him also, and he went on, and prophesied, until he came to Naioth in Ramah. \nAnd he stripped off his clothes also, and prophesied before Samuel in like manner, and lay down naked all that day and all that night. Wherefore they say, Is Saul also among the prophets? \nAnd David fled from Naioth in Ramah, and came and said before Jonathan, What have I done? what is mine iniquity? and what is my sin before thy father, that he seeketh my life? \nAnd he said unto him, God forbid; thou shalt not die: behold, my father will do nothing either great or small, but that he will shew it me: and why should my father hide this thing from me? it is not so. \nAnd David sware moreover, and said, Thy father certainly knoweth that I have found grace in thine eyes; and he saith, Let not Jonathan know this, lest he be grieved: but truly as the LORD liveth, and as thy soul liveth, there is but a step between me and death. \nThen said Jonathan unto David, Whatsoever thy soul desireth, I will even do it for thee. \nAnd David said unto Jonathan, Behold, to morrow is the new moon, and I should not fail to sit with the king at meat: but let me go, that I may hide myself in the field unto the third day at even. \nIf thy father at all miss me, then say, David earnestly asked leave of me that he might run to Bethlehem his city: for there is a yearly sacrifice there for all the family. \nIf he say thus, It is well; thy servant shall have peace: but if he be very wroth, then be sure that evil is determined by him. \nTherefore thou shalt deal kindly with thy servant; for thou hast brought thy servant into a covenant of the LORD with thee: notwithstanding, if there be in me iniquity, slay me thyself; for why shouldest thou bring me to thy father? \nAnd Jonathan said, Far be it from thee: for if I knew certainly that evil were determined by my father to come upon thee, then would not I tell it thee? \nThen said David to Jonathan, Who shall tell me? or what if thy father answer thee roughly? \nAnd Jonathan said unto David, Come, and let us go out into the field. And they went out both of them into the field. \nAnd Jonathan said unto David, O LORD God of Israel, when I have sounded my father about to morrow any time, or the third day, and, behold, if there be good toward David, and I then send not unto thee, and shew it thee; \nThe LORD do so and much more to Jonathan: but if it please my father to do thee evil, then I will shew it thee, and send thee away, that thou mayest go in peace: and the LORD be with thee, as he hath been with my father. \nAnd thou shalt not only while yet I live shew me the kindness of the LORD, that I die not: \nBut also thou shalt not cut off thy kindness from my house for ever: no, not when the LORD hath cut off the enemies of David every one from the face of the earth. \nSo Jonathan made a covenant with the house of David, saying, Let the LORD even require it at the hand of David's enemies. \nAnd Jonathan caused David to swear again, because he loved him: for he loved him as he loved his own soul. \nThen Jonathan said to David, To morrow is the new moon: and thou shalt be missed, because thy seat will be empty. \nAnd when thou hast stayed three days, then thou shalt go down quickly, and come to the place where thou didst hide thyself when the business was in hand, and shalt remain by the stone Ezel. \nAnd I will shoot three arrows on the side thereof, as though I shot at a mark. \nAnd, behold, I will send a lad, saying, Go, find out the arrows. If I expressly say unto the lad, Behold, the arrows are on this side of thee, take them; then come thou: for there is peace to thee, and no hurt; as the LORD liveth. \nBut if I say thus unto the young man, Behold, the arrows are beyond thee; go thy way: for the LORD hath sent thee away. \nAnd as touching the matter which thou and I have spoken of, behold, the LORD be between thee and me for ever. \nSo David hid himself in the field: and when the new moon was come, the king sat him down to eat meat. \nAnd the king sat upon his seat, as at other times, even upon a seat by the wall: and Jonathan arose, and Abner sat by Saul's side, and David's place was empty. \nNevertheless Saul spake not any thing that day: for he thought, Something hath befallen him, he is not clean; surely he is not clean. \nAnd it came to pass on the morrow, which was the second day of the month, that David's place was empty: and Saul said unto Jonathan his son, Wherefore cometh not the son of Jesse to meat, neither yesterday, nor to day? \nAnd Jonathan answered Saul, David earnestly asked leave of me to go to Bethlehem: \nAnd he said, Let me go, I pray thee; for our family hath a sacrifice in the city; and my brother, he hath commanded me to be there: and now, if I have found favour in thine eyes, let me get away, I pray thee, and see my brethren. Therefore he cometh not unto the king's table. \nThen Saul's anger was kindled against Jonathan, and he said unto him, Thou son of the perverse rebellious woman, do not I know that thou hast chosen the son of Jesse to thine own confusion, and unto the confusion of thy mother's nakedness? \nFor as long as the son of Jesse liveth upon the ground, thou shalt not be established, nor thy kingdom. Wherefore now send and fetch him unto me, for he shall surely die. \nAnd Jonathan answered Saul his father, and said unto him, Wherefore shall he be slain? what hath he done? \nAnd Saul cast a javelin at him to smite him: whereby Jonathan knew that it was determined of his father to slay David. \nSo Jonathan arose from the table in fierce anger, and did eat no meat the second day of the month: for he was grieved for David, because his father had done him shame. \nAnd it came to pass in the morning, that Jonathan went out into the field at the time appointed with David, and a little lad with him. \nAnd he said unto his lad, Run, find out now the arrows which I shoot. And as the lad ran, he shot an arrow beyond him. \nAnd when the lad was come to the place of the arrow which Jonathan had shot, Jonathan cried after the lad, and said, Is not the arrow beyond thee? \nAnd Jonathan cried after the lad, Make speed, haste, stay not. And Jonathan's lad gathered up the arrows, and came to his master. \nBut the lad knew not any thing: only Jonathan and David knew the matter. \nAnd Jonathan gave his artillery unto his lad, and said unto him, Go, carry them to the city. \nAnd as soon as the lad was gone, David arose out of a place toward the south, and fell on his face to the ground, and bowed himself three times: and they kissed one another, and wept one with another, until David exceeded. \nAnd Jonathan said to David, Go in peace, forasmuch as we have sworn both of us in the name of the LORD, saying, The LORD be between me and thee, and between my seed and thy seed for ever. And he arose and departed: and Jonathan went into the city. \nThen came David to Nob to Ahimelech the priest: and Ahimelech was afraid at the meeting of David, and said unto him, Why art thou alone, and no man with thee? \nAnd David said unto Ahimelech the priest, The king hath commanded me a business, and hath said unto me, Let no man know any thing of the business whereabout I send thee, and what I have commanded thee: and I have appointed my servants to such and such a place. \nNow therefore what is under thine hand? give me five loaves of bread in mine hand, or what there is present. \nAnd the priest answered David, and said, There is no common bread under mine hand, but there is hallowed bread; if the young men have kept themselves at least from women. \nAnd David answered the priest, and said unto him, Of a truth women have been kept from us about these three days, since I came out, and the vessels of the young men are holy, and the bread is in a manner common, yea, though it were sanctified this day in the vessel. \nSo the priest gave him hallowed bread: for there was no bread there but the shewbread, that was taken from before the LORD, to put hot bread in the day when it was taken away. \nNow a certain man of the servants of Saul was there that day, detained before the LORD; and his name was Doeg, an Edomite, the chiefest of the herdmen that belonged to Saul. \nAnd David said unto Ahimelech, And is there not here under thine hand spear or sword? for I have neither brought my sword nor my weapons with me, because the king's business required haste. \nAnd the priest said, The sword of Goliath the Philistine, whom thou slewest in the valley of Elah, behold, it is here wrapped in a cloth behind the ephod: if thou wilt take that, take it: for there is no other save that here. And David said, There is none like that; give it me. \nAnd David arose and fled that day for fear of Saul, and went to Achish the king of Gath. \nAnd the servants of Achish said unto him, Is not this David the king of the land? did they not sing one to another of him in dances, saying, Saul hath slain his thousands, and David his ten thousands? \nAnd David laid up these words in his heart, and was sore afraid of Achish the king of Gath. \nAnd he changed his behaviour before them, and feigned himself mad in their hands, and scrabbled on the doors of the gate, and let his spittle fall down upon his beard. \nThen said Achish unto his servants, Lo, ye see the man is mad: wherefore then have ye brought him to me? \nHave I need of mad men, that ye have brought this fellow to play the mad man in my presence? shall this fellow come into my house? \nDavid therefore departed thence, and escaped to the cave Adullam: and when his brethren and all his father's house heard it, they went down thither to him. \nAnd every one that was in distress, and every one that was in debt, and every one that was discontented, gathered themselves unto him; and he became a captain over them: and there were with him about four hundred men. \nAnd David went thence to Mizpeh of Moab: and he said unto the king of Moab, Let my father and my mother, I pray thee, come forth, and be with you, till I know what God will do for me. \nAnd he brought them before the king of Moab: and they dwelt with him all the while that David was in the hold. \nAnd the prophet Gad said unto David, Abide not in the hold; depart, and get thee into the land of Judah. Then David departed, and came into the forest of Hareth. \nWhen Saul heard that David was discovered, and the men that were with him, (now Saul abode in Gibeah under a tree in Ramah, having his spear in his hand, and all his servants were standing about him;) \nThen Saul said unto his servants that stood about him, Hear now, ye Benjamites; will the son of Jesse give every one of you fields and vineyards, and make you all captains of thousands, and captains of hundreds; \nThat all of you have conspired against me, and there is none that sheweth me that my son hath made a league with the son of Jesse, and there is none of you that is sorry for me, or sheweth unto me that my son hath stirred up my servant against me, to lie in wait, as at this day? \nThen answered Doeg the Edomite, which was set over the servants of Saul, and said, I saw the son of Jesse coming to Nob, to Ahimelech the son of Ahitub. \nAnd he enquired of the LORD for him, and gave him victuals, and gave him the sword of Goliath the Philistine. \nThen the king sent to call Ahimelech the priest, the son of Ahitub, and all his father's house, the priests that were in Nob: and they came all of them to the king. \nAnd Saul said, Hear now, thou son of Ahitub. And he answered, Here I am, my lord. \nAnd Saul said unto him, Why have ye conspired against me, thou and the son of Jesse, in that thou hast given him bread, and a sword, and hast enquired of God for him, that he should rise against me, to lie in wait, as at this day? \nThen Ahimelech answered the king, and said, And who is so faithful among all thy servants as David, which is the king's son in law, and goeth at thy bidding, and is honourable in thine house? \nDid I then begin to enquire of God for him? be it far from me: let not the king impute any thing unto his servant, nor to all the house of my father: for thy servant knew nothing of all this, less or more. \nAnd the king said, Thou shalt surely die, Ahimelech, thou, and all thy father's house. \nAnd the king said unto the footmen that stood about him, Turn, and slay the priests of the LORD: because their hand also is with David, and because they knew when he fled, and did not shew it to me. But the servants of the king would not put forth their hand to fall upon the priests of the LORD. \nAnd the king said to Doeg, Turn thou, and fall upon the priests. And Doeg the Edomite turned, and he fell upon the priests, and slew on that day fourscore and five persons that did wear a linen ephod. \nAnd Nob, the city of the priests, smote he with the edge of the sword, both men and women, children and sucklings, and oxen, and asses, and sheep, with the edge of the sword. \nAnd one of the sons of Ahimelech the son of Ahitub, named Abiathar, escaped, and fled after David. \nAnd Abiathar shewed David that Saul had slain the LORD's priests. \nAnd David said unto Abiathar, I knew it that day, when Doeg the Edomite was there, that he would surely tell Saul: I have occasioned the death of all the persons of thy father's house. \nAbide thou with me, fear not: for he that seeketh my life seeketh thy life: but with me thou shalt be in safeguard. \nThen they told David, saying, Behold, the Philistines fight against Keilah, and they rob the threshingfloors. \nTherefore David enquired of the LORD, saying, Shall I go and smite these Philistines? And the LORD said unto David, Go, and smite the Philistines, and save Keilah. \nAnd David's men said unto him, Behold, we be afraid here in Judah: how much more then if we come to Keilah against the armies of the Philistines? \nThen David enquired of the LORD yet again. And the LORD answered him and said, Arise, go down to Keilah; for I will deliver the Philistines into thine hand. \nSo David and his men went to Keilah, and fought with the Philistines, and brought away their cattle, and smote them with a great slaughter. So David saved the inhabitants of Keilah. \nAnd it came to pass, when Abiathar the son of Ahimelech fled to David to Keilah, that he came down with an ephod in his hand. \nAnd it was told Saul that David was come to Keilah. And Saul said, God hath delivered him into mine hand; for he is shut in, by entering into a town that hath gates and bars. \nAnd Saul called all the people together to war, to go down to Keilah, to besiege David and his men. \nAnd David knew that Saul secretly practised mischief against him; and he said to Abiathar the priest, Bring hither the ephod. \nThen said David, O LORD God of Israel, thy servant hath certainly heard that Saul seeketh to come to Keilah, to destroy the city for my sake. \nWill the men of Keilah deliver me up into his hand? will Saul come down, as thy servant hath heard? O LORD God of Israel, I beseech thee, tell thy servant. And the LORD said, He will come down. \nThen said David, Will the men of Keilah deliver me and my men into the hand of Saul? And the LORD said, They will deliver thee up. \nThen David and his men, which were about six hundred, arose and departed out of Keilah, and went whithersoever they could go. And it was told Saul that David was escaped from Keilah; and he forbare to go forth. \nAnd David abode in the wilderness in strong holds, and remained in a mountain in the wilderness of Ziph. And Saul sought him every day, but God delivered him not into his hand. \nAnd David saw that Saul was come out to seek his life: and David was in the wilderness of Ziph in a wood. \nAnd Jonathan Saul's son arose, and went to David into the wood, and strengthened his hand in God. \nAnd he said unto him, Fear not: for the hand of Saul my father shall not find thee; and thou shalt be king over Israel, and I shall be next unto thee; and that also Saul my father knoweth. \nAnd they two made a covenant before the LORD: and David abode in the wood, and Jonathan went to his house. \nThen came up the Ziphites to Saul to Gibeah, saying, Doth not David hide himself with us in strong holds in the wood, in the hill of Hachilah, which is on the south of Jeshimon? \nNow therefore, O king, come down according to all the desire of thy soul to come down; and our part shall be to deliver him into the king's hand. \nAnd Saul said, Blessed be ye of the LORD; for ye have compassion on me. \nGo, I pray you, prepare yet, and know and see his place where his haunt is, and who hath seen him there: for it is told me that he dealeth very subtilly. \nSee therefore, and take knowledge of all the lurking places where he hideth himself, and come ye again to me with the certainty, and I will go with you: and it shall come to pass, if he be in the land, that I will search him out throughout all the thousands of Judah. \nAnd they arose, and went to Ziph before Saul: but David and his men were in the wilderness of Maon, in the plain on the south of Jeshimon. \nSaul also and his men went to seek him. And they told David; wherefore he came down into a rock, and abode in the wilderness of Maon. And when Saul heard that, he pursued after David in the wilderness of Maon. \nAnd Saul went on this side of the mountain, and David and his men on that side of the mountain: and David made haste to get away for fear of Saul; for Saul and his men compassed David and his men round about to take them. \nBut there came a messenger unto Saul, saying, Haste thee, and come; for the Philistines have invaded the land. \nWherefore Saul returned from pursuing after David, and went against the Philistines: therefore they called that place Selahammahlekoth. \nAnd David went up from thence, and dwelt in strong holds at Engedi. \nAnd it came to pass, when Saul was returned from following the Philistines, that it was told him, saying, Behold, David is in the wilderness of Engedi. \nThen Saul took three thousand chosen men out of all Israel, and went to seek David and his men upon the rocks of the wild goats. \nAnd he came to the sheepcotes by the way, where was a cave; and Saul went in to cover his feet: and David and his men remained in the sides of the cave. \nAnd the men of David said unto him, Behold the day of which the LORD said unto thee, Behold, I will deliver thine enemy into thine hand, that thou mayest do to him as it shall seem good unto thee. Then David arose, and cut off the skirt of Saul's robe privily. \nAnd it came to pass afterward, that David's heart smote him, because he had cut off Saul's skirt. \nAnd he said unto his men, The LORD forbid that I should do this thing unto my master, the LORD's anointed, to stretch forth mine hand against him, seeing he is the anointed of the LORD. \nSo David stayed his servants with these words, and suffered them not to rise against Saul. But Saul rose up out of the cave, and went on his way. \nDavid also arose afterward, and went out of the cave, and cried after Saul, saying, My lord the king. And when Saul looked behind him, David stooped with his face to the earth, and bowed himself. \nAnd David said to Saul, Wherefore hearest thou men's words, saying, Behold, David seeketh thy hurt? \nBehold, this day thine eyes have seen how that the LORD had delivered thee to day into mine hand in the cave: and some bade me kill thee: but mine eye spared thee; and I said, I will not put forth mine hand against my lord; for he is the LORD's anointed. \nMoreover, my father, see, yea, see the skirt of thy robe in my hand: for in that I cut off the skirt of thy robe, and killed thee not, know thou and see that there is neither evil nor transgression in mine hand, and I have not sinned against thee; yet thou huntest my soul to take it. \nThe LORD judge between me and thee, and the LORD avenge me of thee: but mine hand shall not be upon thee. \nAs saith the proverb of the ancients, Wickedness proceedeth from the wicked: but mine hand shall not be upon thee. \nAfter whom is the king of Israel come out? after whom dost thou pursue? after a dead dog, after a flea. \nThe LORD therefore be judge, and judge between me and thee, and see, and plead my cause, and deliver me out of thine hand. \nAnd it came to pass, when David had made an end of speaking these words unto Saul, that Saul said, Is this thy voice, my son David? And Saul lifted up his voice, and wept. \nAnd he said to David, Thou art more righteous than I: for thou hast rewarded me good, whereas I have rewarded thee evil. \nAnd thou hast shewed this day how that thou hast dealt well with me: forasmuch as when the LORD had delivered me into thine hand, thou killedst me not. \nFor if a man find his enemy, will he let him go well away? wherefore the LORD reward thee good for that thou hast done unto me this day. \nAnd now, behold, I know well that thou shalt surely be king, and that the kingdom of Israel shall be established in thine hand. \nSwear now therefore unto me by the LORD, that thou wilt not cut off my seed after me, and that thou wilt not destroy my name out of my father's house. \nAnd David sware unto Saul. And Saul went home; but David and his men gat them up unto the hold. \nAnd Samuel died; and all the Israelites were gathered together, and lamented him, and buried him in his house at Ramah. And David arose, and went down to the wilderness of Paran. \nAnd there was a man in Maon, whose possessions were in Carmel; and the man was very great, and he had three thousand sheep, and a thousand goats: and he was shearing his sheep in Carmel. \nNow the name of the man was Nabal; and the name of his wife Abigail: and she was a woman of good understanding, and of a beautiful countenance: but the man was churlish and evil in his doings; and he was of the house of Caleb. \nAnd David heard in the wilderness that Nabal did shear his sheep. \nAnd David sent out ten young men, and David said unto the young men, Get you up to Carmel, and go to Nabal, and greet him in my name: \nAnd thus shall ye say to him that liveth in prosperity, Peace be both to thee, and peace be to thine house, and peace be unto all that thou hast. \nAnd now I have heard that thou hast shearers: now thy shepherds which were with us, we hurt them not, neither was there ought missing unto them, all the while they were in Carmel. \nAsk thy young men, and they will shew thee. Wherefore let the young men find favour in thine eyes: for we come in a good day: give, I pray thee, whatsoever cometh to thine hand unto thy servants, and to thy son David. \nAnd when David's young men came, they spake to Nabal according to all those words in the name of David, and ceased. \nAnd Nabal answered David's servants, and said, Who is David? and who is the son of Jesse? there be many servants now a days that break away every man from his master. \nShall I then take my bread, and my water, and my flesh that I have killed for my shearers, and give it unto men, whom I know not whence they be? \nSo David's young men turned their way, and went again, and came and told him all those sayings. \nAnd David said unto his men, Gird ye on every man his sword. And they girded on every man his sword; and David also girded on his sword: and there went up after David about four hundred men; and two hundred abode by the stuff. \nBut one of the young men told Abigail, Nabal's wife, saying, Behold, David sent messengers out of the wilderness to salute our master; and he railed on them. \nBut the men were very good unto us, and we were not hurt, neither missed we any thing, as long as we were conversant with them, when we were in the fields: \nThey were a wall unto us both by night and day, all the while we were with them keeping the sheep. \nNow therefore know and consider what thou wilt do; for evil is determined against our master, and against all his household: for he is such a son of Belial, that a man cannot speak to him. \nThen Abigail made haste, and took two hundred loaves, and two bottles of wine, and five sheep ready dressed, and five measures of parched corn, and an hundred clusters of raisins, and two hundred cakes of figs, and laid them on asses. \nAnd she said unto her servants, Go on before me; behold, I come after you. But she told not her husband Nabal. \nAnd it was so, as she rode on the ass, that she came down by the covert on the hill, and, behold, David and his men came down against her; and she met them. \nNow David had said, Surely in vain have I kept all that this fellow hath in the wilderness, so that nothing was missed of all that pertained unto him: and he hath requited me evil for good. \nSo and more also do God unto the enemies of David, if I leave of all that pertain to him by the morning light any that pisseth against the wall. \nAnd when Abigail saw David, she hasted, and lighted off the ass, and fell before David on her face, and bowed herself to the ground, \nAnd fell at his feet, and said, Upon me, my lord, upon me let this iniquity be: and let thine handmaid, I pray thee, speak in thine audience, and hear the words of thine handmaid. \nLet not my lord, I pray thee, regard this man of Belial, even Nabal: for as his name is, so is he; Nabal is his name, and folly is with him: but I thine handmaid saw not the young men of my lord, whom thou didst send. \nNow therefore, my lord, as the LORD liveth, and as thy soul liveth, seeing the LORD hath withholden thee from coming to shed blood, and from avenging thyself with thine own hand, now let thine enemies, and they that seek evil to my lord, be as Nabal. \nAnd now this blessing which thine handmaid hath brought unto my lord, let it even be given unto the young men that follow my lord. \nI pray thee, forgive the trespass of thine handmaid: for the LORD will certainly make my lord a sure house; because my lord fighteth the battles of the LORD, and evil hath not been found in thee all thy days. \nYet a man is risen to pursue thee, and to seek thy soul: but the soul of my lord shall be bound in the bundle of life with the LORD thy God; and the souls of thine enemies, them shall he sling out, as out of the middle of a sling. \nAnd it shall come to pass, when the LORD shall have done to my lord according to all the good that he hath spoken concerning thee, and shall have appointed thee ruler over Israel; \nThat this shall be no grief unto thee, nor offence of heart unto my lord, either that thou hast shed blood causeless, or that my lord hath avenged himself: but when the LORD shall have dealt well with my lord, then remember thine handmaid. \nAnd David said to Abigail, Blessed be the LORD God of Israel, which sent thee this day to meet me: \nAnd blessed be thy advice, and blessed be thou, which hast kept me this day from coming to shed blood, and from avenging myself with mine own hand. \nFor in very deed, as the LORD God of Israel liveth, which hath kept me back from hurting thee, except thou hadst hasted and come to meet me, surely there had not been left unto Nabal by the morning light any that pisseth against the wall. \nSo David received of her hand that which she had brought him, and said unto her, Go up in peace to thine house; see, I have hearkened to thy voice, and have accepted thy person. \nAnd Abigail came to Nabal; and, behold, he held a feast in his house, like the feast of a king; and Nabal's heart was merry within him, for he was very drunken: wherefore she told him nothing, less or more, until the morning light. \nBut it came to pass in the morning, when the wine was gone out of Nabal, and his wife had told him these things, that his heart died within him, and he became as a stone. \nAnd it came to pass about ten days after, that the LORD smote Nabal, that he died. \nAnd when David heard that Nabal was dead, he said, Blessed be the LORD, that hath pleaded the cause of my reproach from the hand of Nabal, and hath kept his servant from evil: for the LORD hath returned the wickedness of Nabal upon his own head. And David sent and communed with Abigail, to take her to him to wife. \nAnd when the servants of David were come to Abigail to Carmel, they spake unto her, saying, David sent us unto thee, to take thee to him to wife. \nAnd she arose, and bowed herself on her face to the earth, and said, Behold, let thine handmaid be a servant to wash the feet of the servants of my lord. \nAnd Abigail hasted, and arose and rode upon an ass, with five damsels of hers that went after her; and she went after the messengers of David, and became his wife. \nDavid also took Ahinoam of Jezreel; and they were also both of them his wives. \nBut Saul had given Michal his daughter, David's wife, to Phalti the son of Laish, which was of Gallim. \nAnd the Ziphites came unto Saul to Gibeah, saying, Doth not David hide himself in the hill of Hachilah, which is before Jeshimon? \nThen Saul arose, and went down to the wilderness of Ziph, having three thousand chosen men of Israel with him, to seek David in the wilderness of Ziph. \nAnd Saul pitched in the hill of Hachilah, which is before Jeshimon, by the way. But David abode in the wilderness, and he saw that Saul came after him into the wilderness. \nDavid therefore sent out spies, and understood that Saul was come in very deed. \nAnd David arose, and came to the place where Saul had pitched: and David beheld the place where Saul lay, and Abner the son of Ner, the captain of his host: and Saul lay in the trench, and the people pitched round about him. \nThen answered David and said to Ahimelech the Hittite, and to Abishai the son of Zeruiah, brother to Joab, saying, Who will go down with me to Saul to the camp? And Abishai said, I will go down with thee. \nSo David and Abishai came to the people by night: and, behold, Saul lay sleeping within the trench, and his spear stuck in the ground at his bolster: but Abner and the people lay round about him. \nThen said Abishai to David, God hath delivered thine enemy into thine hand this day: now therefore let me smite him, I pray thee, with the spear even to the earth at once, and I will not smite him the second time. \nAnd David said to Abishai, Destroy him not: for who can stretch forth his hand against the LORD's anointed, and be guiltless? \nDavid said furthermore, As the LORD liveth, the LORD shall smite him; or his day shall come to die; or he shall descend into battle, and perish. \nThe LORD forbid that I should stretch forth mine hand against the LORD's anointed: but, I pray thee, take thou now the spear that is at his bolster, and the cruse of water, and let us go. \nSo David took the spear and the cruse of water from Saul's bolster; and they gat them away, and no man saw it, nor knew it, neither awaked: for they were all asleep; because a deep sleep from the LORD was fallen upon them. \nThen David went over to the other side, and stood on the top of an hill afar off; a great space being between them: \nAnd David cried to the people, and to Abner the son of Ner, saying, Answerest thou not, Abner? Then Abner answered and said, Who art thou that criest to the king? \nAnd David said to Abner, Art not thou a valiant man? and who is like to thee in Israel? wherefore then hast thou not kept thy lord the king? for there came one of the people in to destroy the king thy lord. \nThis thing is not good that thou hast done. As the LORD liveth, ye are worthy to die, because ye have not kept your master, the LORD's anointed. And now see where the king's spear is, and the cruse of water that was at his bolster. \nAnd Saul knew David's voice, and said, Is this thy voice, my son David? And David said, It is my voice, my lord, O king. \nAnd he said, Wherefore doth my lord thus pursue after his servant? for what have I done? or what evil is in mine hand? \nNow therefore, I pray thee, let my lord the king hear the words of his servant. If the LORD have stirred thee up against me, let him accept an offering: but if they be the children of men, cursed be they before the LORD; for they have driven me out this day from abiding in the inheritance of the LORD, saying, Go, serve other gods. \nNow therefore, let not my blood fall to the earth before the face of the LORD: for the king of Israel is come out to seek a flea, as when one doth hunt a partridge in the mountains. \nThen said Saul, I have sinned: return, my son David: for I will no more do thee harm, because my soul was precious in thine eyes this day: behold, I have played the fool, and have erred exceedingly. \nAnd David answered and said, Behold the king's spear! and let one of the young men come over and fetch it. \nThe LORD render to every man his righteousness and his faithfulness; for the LORD delivered thee into my hand to day, but I would not stretch forth mine hand against the LORD's anointed. \nAnd, behold, as thy life was much set by this day in mine eyes, so let my life be much set by in the eyes of the LORD, and let him deliver me out of all tribulation. \nThen Saul said to David, Blessed be thou, my son David: thou shalt both do great things, and also shalt still prevail. So David went on his way, and Saul returned to his place. \nAnd David said in his heart, I shall now perish one day by the hand of Saul: there is nothing better for me than that I should speedily escape into the land of the Philistines; and Saul shall despair of me, to seek me any more in any coast of Israel: so shall I escape out of his hand. \nAnd David arose, and he passed over with the six hundred men that were with him unto Achish, the son of Maoch, king of Gath. \nAnd David dwelt with Achish at Gath, he and his men, every man with his household, even David with his two wives, Ahinoam the Jezreelitess, and Abigail the Carmelitess, Nabal's wife. \nAnd it was told Saul that David was fled to Gath: and he sought no more again for him. \nAnd David said unto Achish, If I have now found grace in thine eyes, let them give me a place in some town in the country, that I may dwell there: for why should thy servant dwell in the royal city with thee? \nThen Achish gave him Ziklag that day: wherefore Ziklag pertaineth unto the kings of Judah unto this day. \nAnd the time that David dwelt in the country of the Philistines was a full year and four months. \nAnd David and his men went up, and invaded the Geshurites, and the Gezrites, and the Amalekites: for those nations were of old the inhabitants of the land, as thou goest to Shur, even unto the land of Egypt. \nAnd David smote the land, and left neither man nor woman alive, and took away the sheep, and the oxen, and the asses, and the camels, and the apparel, and returned, and came to Achish. \nAnd Achish said, Whither have ye made a road to day? And David said, Against the south of Judah, and against the south of the Jerahmeelites, and against the south of the Kenites. \nAnd David saved neither man nor woman alive, to bring tidings to Gath, saying, Lest they should tell on us, saying, So did David, and so will be his manner all the while he dwelleth in the country of the Philistines. \nAnd Achish believed David, saying, He hath made his people Israel utterly to abhor him; therefore he shall be my servant for ever. \nAnd it came to pass in those days, that the Philistines gathered their armies together for warfare, to fight with Israel. And Achish said unto David, Know thou assuredly, that thou shalt go out with me to battle, thou and thy men. \nAnd David said to Achish, Surely thou shalt know what thy servant can do. And Achish said to David, Therefore will I make thee keeper of mine head for ever. \nNow Samuel was dead, and all Israel had lamented him, and buried him in Ramah, even in his own city. And Saul had put away those that had familiar spirits, and the wizards, out of the land. \nAnd the Philistines gathered themselves together, and came and pitched in Shunem: and Saul gathered all Israel together, and they pitched in Gilboa. \nAnd when Saul saw the host of the Philistines, he was afraid, and his heart greatly trembled. \nAnd when Saul enquired of the LORD, the LORD answered him not, neither by dreams, nor by Urim, nor by prophets. \nThen said Saul unto his servants, Seek me a woman that hath a familiar spirit, that I may go to her, and enquire of her. And his servants said to him, Behold, there is a woman that hath a familiar spirit at Endor. \nAnd Saul disguised himself, and put on other raiment, and he went, and two men with him, and they came to the woman by night: and he said, I pray thee, divine unto me by the familiar spirit, and bring me him up, whom I shall name unto thee. \nAnd the woman said unto him, Behold, thou knowest what Saul hath done, how he hath cut off those that have familiar spirits, and the wizards, out of the land: wherefore then layest thou a snare for my life, to cause me to die? \nAnd Saul sware to her by the LORD, saying, As the LORD liveth, there shall no punishment happen to thee for this thing. \nThen said the woman, Whom shall I bring up unto thee? And he said, Bring me up Samuel. \nAnd when the woman saw Samuel, she cried with a loud voice: and the woman spake to Saul, saying, Why hast thou deceived me? for thou art Saul. \nAnd the king said unto her, Be not afraid: for what sawest thou? And the woman said unto Saul, I saw gods ascending out of the earth. \nAnd he said unto her, What form is he of? And she said, An old man cometh up; and he is covered with a mantle. And Saul perceived that it was Samuel, and he stooped with his face to the ground, and bowed himself. \nAnd Samuel said to Saul, Why hast thou disquieted me, to bring me up? And Saul answered, I am sore distressed; for the Philistines make war against me, and God is departed from me, and answereth me no more, neither by prophets, nor by dreams: therefore I have called thee, that thou mayest make known unto me what I shall do. \nThen said Samuel, Wherefore then dost thou ask of me, seeing the LORD is departed from thee, and is become thine enemy? \nAnd the LORD hath done to him, as he spake by me: for the LORD hath rent the kingdom out of thine hand, and given it to thy neighbour, even to David: \nBecause thou obeyedst not the voice of the LORD, nor executedst his fierce wrath upon Amalek, therefore hath the LORD done this thing unto thee this day. \nMoreover the LORD will also deliver Israel with thee into the hand of the Philistines: and to morrow shalt thou and thy sons be with me: the LORD also shall deliver the host of Israel into the hand of the Philistines. \nThen Saul fell straightway all along on the earth, and was sore afraid, because of the words of Samuel: and there was no strength in him; for he had eaten no bread all the day, nor all the night. \nAnd the woman came unto Saul, and saw that he was sore troubled, and said unto him, Behold, thine handmaid hath obeyed thy voice, and I have put my life in my hand, and have hearkened unto thy words which thou spakest unto me. \nNow therefore, I pray thee, hearken thou also unto the voice of thine handmaid, and let me set a morsel of bread before thee; and eat, that thou mayest have strength, when thou goest on thy way. \nBut he refused, and said, I will not eat. But his servants, together with the woman, compelled him; and he hearkened unto their voice. So he arose from the earth, and sat upon the bed. \nAnd the woman had a fat calf in the house; and she hasted, and killed it, and took flour, and kneaded it, and did bake unleavened bread thereof: \nAnd she brought it before Saul, and before his servants; and they did eat. Then they rose up, and went away that night. \nNow the Philistines gathered together all their armies to Aphek: and the Israelites pitched by a fountain which is in Jezreel. \nAnd the lords of the Philistines passed on by hundreds, and by thousands: but David and his men passed on in the rereward with Achish. \nThen said the princes of the Philistines, What do these Hebrews here? And Achish said unto the princes of the Philistines, Is not this David, the servant of Saul the king of Israel, which hath been with me these days, or these years, and I have found no fault in him since he fell unto me unto this day? \nAnd the princes of the Philistines were wroth with him; and the princes of the Philistines said unto him, Make this fellow return, that he may go again to his place which thou hast appointed him, and let him not go down with us to battle, lest in the battle he be an adversary to us: for wherewith should he reconcile himself unto his master? should it not be with the heads of these men? \nIs not this David, of whom they sang one to another in dances, saying, Saul slew his thousands, and David his ten thousands? \nThen Achish called David, and said unto him, Surely, as the LORD liveth, thou hast been upright, and thy going out and thy coming in with me in the host is good in my sight: for I have not found evil in thee since the day of thy coming unto me unto this day: nevertheless the lords favour thee not. \nWherefore now return, and go in peace, that thou displease not the lords of the Philistines. \nAnd David said unto Achish, But what have I done? and what hast thou found in thy servant so long as I have been with thee unto this day, that I may not go fight against the enemies of my lord the king? \nAnd Achish answered and said to David, I know that thou art good in my sight, as an angel of God: notwithstanding the princes of the Philistines have said, He shall not go up with us to the battle. \nWherefore now rise up early in the morning with thy master's servants that are come with thee: and as soon as ye be up early in the morning, and have light, depart. \nSo David and his men rose up early to depart in the morning, to return into the land of the Philistines. And the Philistines went up to Jezreel. \nAnd it came to pass, when David and his men were come to Ziklag on the third day, that the Amalekites had invaded the south, and Ziklag, and smitten Ziklag, and burned it with fire; \nAnd had taken the women captives, that were therein: they slew not any, either great or small, but carried them away, and went on their way. \nSo David and his men came to the city, and, behold, it was burned with fire; and their wives, and their sons, and their daughters, were taken captives. \nThen David and the people that were with him lifted up their voice and wept, until they had no more power to weep. \nAnd David's two wives were taken captives, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite. \nAnd David was greatly distressed; for the people spake of stoning him, because the soul of all the people was grieved, every man for his sons and for his daughters: but David encouraged himself in the LORD his God. \nAnd David said to Abiathar the priest, Ahimelech's son, I pray thee, bring me hither the ephod. And Abiathar brought thither the ephod to David. \nAnd David enquired at the LORD, saying, Shall I pursue after this troop? shall I overtake them? And he answered him, Pursue: for thou shalt surely overtake them, and without fail recover all. \nSo David went, he and the six hundred men that were with him, and came to the brook Besor, where those that were left behind stayed. \nBut David pursued, he and four hundred men: for two hundred abode behind, which were so faint that they could not go over the brook Besor. \nAnd they found an Egyptian in the field, and brought him to David, and gave him bread, and he did eat; and they made him drink water; \nAnd they gave him a piece of a cake of figs, and two clusters of raisins: and when he had eaten, his spirit came again to him: for he had eaten no bread, nor drunk any water, three days and three nights. \nAnd David said unto him, To whom belongest thou? and whence art thou? And he said, I am a young man of Egypt, servant to an Amalekite; and my master left me, because three days agone I fell sick. \nWe made an invasion upon the south of the Cherethites, and upon the coast which belongeth to Judah, and upon the south of Caleb; and we burned Ziklag with fire. \nAnd David said to him, Canst thou bring me down to this company? And he said, Swear unto me by God, that thou wilt neither kill me, nor deliver me into the hands of my master, and I will bring thee down to this company. \nAnd when he had brought him down, behold, they were spread abroad upon all the earth, eating and drinking, and dancing, because of all the great spoil that they had taken out of the land of the Philistines, and out of the land of Judah. \nAnd David smote them from the twilight even unto the evening of the next day: and there escaped not a man of them, save four hundred young men, which rode upon camels, and fled. \nAnd David recovered all that the Amalekites had carried away: and David rescued his two wives. \nAnd there was nothing lacking to them, neither small nor great, neither sons nor daughters, neither spoil, nor any thing that they had taken to them: David recovered all. \nAnd David took all the flocks and the herds, which they drave before those other cattle, and said, This is David's spoil. \nAnd David came to the two hundred men, which were so faint that they could not follow David, whom they had made also to abide at the brook Besor: and they went forth to meet David, and to meet the people that were with him: and when David came near to the people, he saluted them. \nThen answered all the wicked men and men of Belial, of those that went with David, and said, Because they went not with us, we will not give them ought of the spoil that we have recovered, save to every man his wife and his children, that they may lead them away, and depart. \nThen said David, Ye shall not do so, my brethren, with that which the LORD hath given us, who hath preserved us, and delivered the company that came against us into our hand. \nFor who will hearken unto you in this matter? but as his part is that goeth down to the battle, so shall his part be that tarrieth by the stuff: they shall part alike. \nAnd it was so from that day forward, that he made it a statute and an ordinance for Israel unto this day. \nAnd when David came to Ziklag, he sent of the spoil unto the elders of Judah, even to his friends, saying, Behold a present for you of the spoil of the enemies of the LORD; \nTo them which were in Bethel, and to them which were in south Ramoth, and to them which were in Jattir, \nAnd to them which were in Aroer, and to them which were in Siphmoth, and to them which were in Eshtemoa, \nAnd to them which were in Rachal, and to them which were in the cities of the Jerahmeelites, and to them which were in the cities of the Kenites, \nAnd to them which were in Hormah, and to them which were in Chorashan, and to them which were in Athach, \nAnd to them which were in Hebron, and to all the places where David himself and his men were wont to haunt. \nNow the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa. \nAnd the Philistines followed hard upon Saul and upon his sons; and the Philistines slew Jonathan, and Abinadab, and Melchishua, Saul's sons. \nAnd the battle went sore against Saul, and the archers hit him; and he was sore wounded of the archers. \nThen said Saul unto his armourbearer, Draw thy sword, and thrust me through therewith; lest these uncircumcised come and thrust me through, and abuse me. But his armourbearer would not; for he was sore afraid. Therefore Saul took a sword, and fell upon it. \nAnd when his armourbearer saw that Saul was dead, he fell likewise upon his sword, and died with him. \nSo Saul died, and his three sons, and his armourbearer, and all his men, that same day together. \nAnd when the men of Israel that were on the other side of the valley, and they that were on the other side Jordan, saw that the men of Israel fled, and that Saul and his sons were dead, they forsook the cities, and fled; and the Philistines came and dwelt in them. \nAnd it came to pass on the morrow, when the Philistines came to strip the slain, that they found Saul and his three sons fallen in mount Gilboa. \nAnd they cut off his head, and stripped off his armour, and sent into the land of the Philistines round about, to publish it in the house of their idols, and among the people. \nAnd they put his armour in the house of Ashtaroth: and they fastened his body to the wall of Bethshan. \nAnd when the inhabitants of Jabeshgilead heard of that which the Philistines had done to Saul; \nAll the valiant men arose, and went all night, and took the body of Saul and the bodies of his sons from the wall of Bethshan, and came to Jabesh, and burnt them there. \nAnd they took their bones, and buried them under a tree at Jabesh, and fasted seven days. \nNow it came to pass after the death of Saul, when David was returned from the slaughter of the Amalekites, and David had abode two days in Ziklag; \nIt came even to pass on the third day, that, behold, a man came out of the camp from Saul with his clothes rent, and earth upon his head: and so it was, when he came to David, that he fell to the earth, and did obeisance. \nAnd David said unto him, From whence comest thou? And he said unto him, Out of the camp of Israel am I escaped. \nAnd David said unto him, How went the matter? I pray thee, tell me. And he answered, That the people are fled from the battle, and many of the people also are fallen and dead; and Saul and Jonathan his son are dead also. \nAnd David said unto the young man that told him, How knowest thou that Saul and Jonathan his son be dead? \nAnd the young man that told him said, As I happened by chance upon mount Gilboa, behold, Saul leaned upon his spear; and, lo, the chariots and horsemen followed hard after him. \nAnd when he looked behind him, he saw me, and called unto me. And I answered, Here am I. \nAnd he said unto me, Who art thou? And I answered him, I am an Amalekite. \nHe said unto me again, Stand, I pray thee, upon me, and slay me: for anguish is come upon me, because my life is yet whole in me. \nSo I stood upon him, and slew him, because I was sure that he could not live after that he was fallen: and I took the crown that was upon his head, and the bracelet that was on his arm, and have brought them hither unto my lord. \nThen David took hold on his clothes, and rent them; and likewise all the men that were with him: \nAnd they mourned, and wept, and fasted until even, for Saul, and for Jonathan his son, and for the people of the LORD, and for the house of Israel; because they were fallen by the sword. \nAnd David said unto the young man that told him, Whence art thou? And he answered, I am the son of a stranger, an Amalekite. \nAnd David said unto him, How wast thou not afraid to stretch forth thine hand to destroy the LORD's anointed? \nAnd David called one of the young men, and said, Go near, and fall upon him. And he smote him that he died. \nAnd David said unto him, Thy blood be upon thy head; for thy mouth hath testified against thee, saying, I have slain the LORD's anointed. \nAnd David lamented with this lamentation over Saul and over Jonathan his son: \n(Also he bade them teach the children of Judah the use of the bow: behold, it is written in the book of Jasher.) \nThe beauty of Israel is slain upon thy high places: how are the mighty fallen! \nTell it not in Gath, publish it not in the streets of Askelon; lest the daughters of the Philistines rejoice, lest the daughters of the uncircumcised triumph. \nYe mountains of Gilboa, let there be no dew, neither let there be rain, upon you, nor fields of offerings: for there the shield of the mighty is vilely cast away, the shield of Saul, as though he had not been anointed with oil. \nFrom the blood of the slain, from the fat of the mighty, the bow of Jonathan turned not back, and the sword of Saul returned not empty. \nSaul and Jonathan were lovely and pleasant in their lives, and in their death they were not divided: they were swifter than eagles, they were stronger than lions. \nYe daughters of Israel, weep over Saul, who clothed you in scarlet, with other delights, who put on ornaments of gold upon your apparel. \nHow are the mighty fallen in the midst of the battle! O Jonathan, thou wast slain in thine high places. \nI am distressed for thee, my brother Jonathan: very pleasant hast thou been unto me: thy love to me was wonderful, passing the love of women. \nHow are the mighty fallen, and the weapons of war perished! \nAnd it came to pass after this, that David enquired of the LORD, saying, Shall I go up into any of the cities of Judah? And the LORD said unto him, Go up. And David said, Whither shall I go up? And he said, Unto Hebron. \nSo David went up thither, and his two wives also, Ahinoam the Jezreelitess, and Abigail Nabal's wife the Carmelite. \nAnd his men that were with him did David bring up, every man with his household: and they dwelt in the cities of Hebron. \nAnd the men of Judah came, and there they anointed David king over the house of Judah. And they told David, saying, That the men of Jabeshgilead were they that buried Saul. \nAnd David sent messengers unto the men of Jabeshgilead, and said unto them, Blessed be ye of the LORD, that ye have shewed this kindness unto your lord, even unto Saul, and have buried him. \nAnd now the LORD shew kindness and truth unto you: and I also will requite you this kindness, because ye have done this thing. \nTherefore now let your hands be strengthened, and be ye valiant: for your master Saul is dead, and also the house of Judah have anointed me king over them. \nBut Abner the son of Ner, captain of Saul's host, took Ishbosheth the son of Saul, and brought him over to Mahanaim; \nAnd made him king over Gilead, and over the Ashurites, and over Jezreel, and over Ephraim, and over Benjamin, and over all Israel. \nIshbosheth Saul's son was forty years old when he began to reign over Israel, and reigned two years. But the house of Judah followed David. \nAnd the time that David was king in Hebron over the house of Judah was seven years and six months. \nAnd Abner the son of Ner, and the servants of Ishbosheth the son of Saul, went out from Mahanaim to Gibeon. \nAnd Joab the son of Zeruiah, and the servants of David, went out, and met together by the pool of Gibeon: and they sat down, the one on the one side of the pool, and the other on the other side of the pool. \nAnd Abner said to Joab, Let the young men now arise, and play before us. And Joab said, Let them arise. \nThen there arose and went over by number twelve of Benjamin, which pertained to Ishbosheth the son of Saul, and twelve of the servants of David. \nAnd they caught every one his fellow by the head, and thrust his sword in his fellow's side; so they fell down together: wherefore that place was called Helkathhazzurim, which is in Gibeon. \nAnd there was a very sore battle that day; and Abner was beaten, and the men of Israel, before the servants of David. \nAnd there were three sons of Zeruiah there, Joab, and Abishai, and Asahel: and Asahel was as light of foot as a wild roe. \nAnd Asahel pursued after Abner; and in going he turned not to the right hand nor to the left from following Abner. \nThen Abner looked behind him, and said, Art thou Asahel? And he answered, I am. \nAnd Abner said to him, Turn thee aside to thy right hand or to thy left, and lay thee hold on one of the young men, and take thee his armour. But Asahel would not turn aside from following of him. \nAnd Abner said again to Asahel, Turn thee aside from following me: wherefore should I smite thee to the ground? how then should I hold up my face to Joab thy brother? \nHowbeit he refused to turn aside: wherefore Abner with the hinder end of the spear smote him under the fifth rib, that the spear came out behind him; and he fell down there, and died in the same place: and it came to pass, that as many as came to the place where Asahel fell down and died stood still. \nJoab also and Abishai pursued after Abner: and the sun went down when they were come to the hill of Ammah, that lieth before Giah by the way of the wilderness of Gibeon. \nAnd the children of Benjamin gathered themselves together after Abner, and became one troop, and stood on the top of an hill. \nThen Abner called to Joab, and said, Shall the sword devour for ever? knowest thou not that it will be bitterness in the latter end? how long shall it be then, ere thou bid the people return from following their brethren? \nAnd Joab said, As God liveth, unless thou hadst spoken, surely then in the morning the people had gone up every one from following his brother. \nSo Joab blew a trumpet, and all the people stood still, and pursued after Israel no more, neither fought they any more. \nAnd Abner and his men walked all that night through the plain, and passed over Jordan, and went through all Bithron, and they came to Mahanaim. \nAnd Joab returned from following Abner: and when he had gathered all the people together, there lacked of David's servants nineteen men and Asahel. \nBut the servants of David had smitten of Benjamin, and of Abner's men, so that three hundred and threescore men died. \nAnd they took up Asahel, and buried him in the sepulchre of his father, which was in Bethlehem. And Joab and his men went all night, and they came to Hebron at break of day. \nNow there was long war between the house of Saul and the house of David: but David waxed stronger and stronger, and the house of Saul waxed weaker and weaker. \nAnd unto David were sons born in Hebron: and his firstborn was Amnon, of Ahinoam the Jezreelitess; \nAnd his second, Chileab, of Abigail the wife of Nabal the Carmelite; and the third, Absalom the son of Maacah the daughter of Talmai king of Geshur; \nAnd the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital; \nAnd the sixth, Ithream, by Eglah David's wife. These were born to David in Hebron. \nAnd it came to pass, while there was war between the house of Saul and the house of David, that Abner made himself strong for the house of Saul. \nAnd Saul had a concubine, whose name was Rizpah, the daughter of Aiah: and Ishbosheth said to Abner, Wherefore hast thou gone in unto my father's concubine? \nThen was Abner very wroth for the words of Ishbosheth, and said, Am I a dog's head, which against Judah do shew kindness this day unto the house of Saul thy father, to his brethren, and to his friends, and have not delivered thee into the hand of David, that thou chargest me to day with a fault concerning this woman? \nSo do God to Abner, and more also, except, as the LORD hath sworn to David, even so I do to him; \nTo translate the kingdom from the house of Saul, and to set up the throne of David over Israel and over Judah, from Dan even to Beersheba. \nAnd he could not answer Abner a word again, because he feared him. \nAnd Abner sent messengers to David on his behalf, saying, Whose is the land? saying also, Make thy league with me, and, behold, my hand shall be with thee, to bring about all Israel unto thee. \nAnd he said, Well; I will make a league with thee: but one thing I require of thee, that is, Thou shalt not see my face, except thou first bring Michal Saul's daughter, when thou comest to see my face. \nAnd David sent messengers to Ishbosheth Saul's son, saying, Deliver me my wife Michal, which I espoused to me for an hundred foreskins of the Philistines. \nAnd Ishbosheth sent, and took her from her husband, even from Phaltiel the son of Laish. \nAnd her husband went with her along weeping behind her to Bahurim. Then said Abner unto him, Go, return. And he returned. \nAnd Abner had communication with the elders of Israel, saying, Ye sought for David in times past to be king over you: \nNow then do it: for the LORD hath spoken of David, saying, By the hand of my servant David I will save my people Israel out of the hand of the Philistines, and out of the hand of all their enemies. \nAnd Abner also spake in the ears of Benjamin: and Abner went also to speak in the ears of David in Hebron all that seemed good to Israel, and that seemed good to the whole house of Benjamin. \nSo Abner came to David to Hebron, and twenty men with him. And David made Abner and the men that were with him a feast. \nAnd Abner said unto David, I will arise and go, and will gather all Israel unto my lord the king, that they may make a league with thee, and that thou mayest reign over all that thine heart desireth. And David sent Abner away; and he went in peace. \nAnd, behold, the servants of David and Joab came from pursuing a troop, and brought in a great spoil with them: but Abner was not with David in Hebron; for he had sent him away, and he was gone in peace. \nWhen Joab and all the host that was with him were come, they told Joab, saying, Abner the son of Ner came to the king, and he hath sent him away, and he is gone in peace. \nThen Joab came to the king, and said, What hast thou done? behold, Abner came unto thee; why is it that thou hast sent him away, and he is quite gone? \nThou knowest Abner the son of Ner, that he came to deceive thee, and to know thy going out and thy coming in, and to know all that thou doest. \nAnd when Joab was come out from David, he sent messengers after Abner, which brought him again from the well of Sirah: but David knew it not. \nAnd when Abner was returned to Hebron, Joab took him aside in the gate to speak with him quietly, and smote him there under the fifth rib, that he died, for the blood of Asahel his brother. \nAnd afterward when David heard it, he said, I and my kingdom are guiltless before the LORD for ever from the blood of Abner the son of Ner: \nLet it rest on the head of Joab, and on all his father's house; and let there not fail from the house of Joab one that hath an issue, or that is a leper, or that leaneth on a staff, or that falleth on the sword, or that lacketh bread. \nSo Joab, and Abishai his brother slew Abner, because he had slain their brother Asahel at Gibeon in the battle. \nAnd David said to Joab, and to all the people that were with him, Rend your clothes, and gird you with sackcloth, and mourn before Abner. And king David himself followed the bier. \nAnd they buried Abner in Hebron: and the king lifted up his voice, and wept at the grave of Abner; and all the people wept. \nAnd the king lamented over Abner, and said, Died Abner as a fool dieth? \nThy hands were not bound, nor thy feet put into fetters: as a man falleth before wicked men, so fellest thou. And all the people wept again over him. \nAnd when all the people came to cause David to eat meat while it was yet day, David sware, saying, So do God to me, and more also, if I taste bread, or ought else, till the sun be down. \nAnd all the people took notice of it, and it pleased them: as whatsoever the king did pleased all the people. \nFor all the people and all Israel understood that day that it was not of the king to slay Abner the son of Ner. \nAnd the king said unto his servants, Know ye not that there is a prince and a great man fallen this day in Israel? \nAnd I am this day weak, though anointed king; and these men the sons of Zeruiah be too hard for me: the LORD shall reward the doer of evil according to his wickedness. \nAnd when Saul's son heard that Abner was dead in Hebron, his hands were feeble, and all the Israelites were troubled. \nAnd Saul's son had two men that were captains of bands: the name of the one was Baanah, and the name of the other Rechab, the sons of Rimmon a Beerothite, of the children of Benjamin: (for Beeroth also was reckoned to Benjamin. \nAnd the Beerothites fled to Gittaim, and were sojourners there until this day.) \nAnd Jonathan, Saul's son, had a son that was lame of his feet. He was five years old when the tidings came of Saul and Jonathan out of Jezreel, and his nurse took him up, and fled: and it came to pass, as she made haste to flee, that he fell, and became lame. And his name was Mephibosheth. \nAnd the sons of Rimmon the Beerothite, Rechab and Baanah, went, and came about the heat of the day to the house of Ishbosheth, who lay on a bed at noon. \nAnd they came thither into the midst of the house, as though they would have fetched wheat; and they smote him under the fifth rib: and Rechab and Baanah his brother escaped. \nFor when they came into the house, he lay on his bed in his bedchamber, and they smote him, and slew him, and beheaded him, and took his head, and gat them away through the plain all night. \nAnd they brought the head of Ishbosheth unto David to Hebron, and said to the king, Behold the head of Ishbosheth the son of Saul thine enemy, which sought thy life; and the LORD hath avenged my lord the king this day of Saul, and of his seed. \nAnd David answered Rechab and Baanah his brother, the sons of Rimmon the Beerothite, and said unto them, As the LORD liveth, who hath redeemed my soul out of all adversity, \nWhen one told me, saying, Behold, Saul is dead, thinking to have brought good tidings, I took hold of him, and slew him in Ziklag, who thought that I would have given him a reward for his tidings: \nHow much more, when wicked men have slain a righteous person in his own house upon his bed? shall I not therefore now require his blood of your hand, and take you away from the earth? \nAnd David commanded his young men, and they slew them, and cut off their hands and their feet, and hanged them up over the pool in Hebron. But they took the head of Ishbosheth, and buried it in the sepulchre of Abner in Hebron. \nThen came all the tribes of Israel to David unto Hebron, and spake, saying, Behold, we are thy bone and thy flesh. \nAlso in time past, when Saul was king over us, thou wast he that leddest out and broughtest in Israel: and the LORD said to thee, Thou shalt feed my people Israel, and thou shalt be a captain over Israel. \nSo all the elders of Israel came to the king to Hebron; and king David made a league with them in Hebron before the LORD: and they anointed David king over Israel. \nDavid was thirty years old when he began to reign, and he reigned forty years. \nIn Hebron he reigned over Judah seven years and six months: and in Jerusalem he reigned thirty and three years over all Israel and Judah. \nAnd the king and his men went to Jerusalem unto the Jebusites, the inhabitants of the land: which spake unto David, saying, Except thou take away the blind and the lame, thou shalt not come in hither: thinking, David cannot come in hither. \nNevertheless David took the strong hold of Zion: the same is the city of David. \nAnd David said on that day, Whosoever getteth up to the gutter, and smiteth the Jebusites, and the lame and the blind that are hated of David's soul, he shall be chief and captain. Wherefore they said, The blind and the lame shall not come into the house. \nSo David dwelt in the fort, and called it the city of David. And David built round about from Millo and inward. \nAnd David went on, and grew great, and the LORD God of hosts was with him. \nAnd Hiram king of Tyre sent messengers to David, and cedar trees, and carpenters, and masons: and they built David an house. \nAnd David perceived that the LORD had established him king over Israel, and that he had exalted his kingdom for his people Israel's sake. \nAnd David took him more concubines and wives out of Jerusalem, after he was come from Hebron: and there were yet sons and daughters born to David. \nAnd these be the names of those that were born unto him in Jerusalem; Shammuah, and Shobab, and Nathan, and Solomon, \nIbhar also, and Elishua, and Nepheg, and Japhia, \nAnd Elishama, and Eliada, and Eliphalet. \nBut when the Philistines heard that they had anointed David king over Israel, all the Philistines came up to seek David; and David heard of it, and went down to the hold. \nThe Philistines also came and spread themselves in the valley of Rephaim. \nAnd David enquired of the LORD, saying, Shall I go up to the Philistines? wilt thou deliver them into mine hand? And the LORD said unto David, Go up: for I will doubtless deliver the Philistines into thine hand. \nAnd David came to Baalperazim, and David smote them there, and said, The LORD hath broken forth upon mine enemies before me, as the breach of waters. Therefore he called the name of that place Baalperazim. \nAnd there they left their images, and David and his men burned them. \nAnd the Philistines came up yet again, and spread themselves in the valley of Rephaim. \nAnd when David enquired of the LORD, he said, Thou shalt not go up; but fetch a compass behind them, and come upon them over against the mulberry trees. \nAnd let it be, when thou hearest the sound of a going in the tops of the mulberry trees, that then thou shalt bestir thyself: for then shall the LORD go out before thee, to smite the host of the Philistines. \nAnd David did so, as the LORD had commanded him; and smote the Philistines from Geba until thou come to Gazer. \nAgain, David gathered together all the chosen men of Israel, thirty thousand. \nAnd David arose, and went with all the people that were with him from Baale of Judah, to bring up from thence the ark of God, whose name is called by the name of the LORD of hosts that dwelleth between the cherubims. \nAnd they set the ark of God upon a new cart, and brought it out of the house of Abinadab that was in Gibeah: and Uzzah and Ahio, the sons of Abinadab, drave the new cart. \nAnd they brought it out of the house of Abinadab which was at Gibeah, accompanying the ark of God: and Ahio went before the ark. \nAnd David and all the house of Israel played before the LORD on all manner of instruments made of fir wood, even on harps, and on psalteries, and on timbrels, and on cornets, and on cymbals. \nAnd when they came to Nachon's threshingfloor, Uzzah put forth his hand to the ark of God, and took hold of it; for the oxen shook it. \nAnd the anger of the LORD was kindled against Uzzah; and God smote him there for his error; and there he died by the ark of God. \nAnd David was displeased, because the LORD had made a breach upon Uzzah: and he called the name of the place Perezuzzah to this day. \nAnd David was afraid of the LORD that day, and said, How shall the ark of the LORD come to me? \nSo David would not remove the ark of the LORD unto him into the city of David: but David carried it aside into the house of Obededom the Gittite. \nAnd the ark of the LORD continued in the house of Obededom the Gittite three months: and the LORD blessed Obededom, and all his household. \nAnd it was told king David, saying, The LORD hath blessed the house of Obededom, and all that pertaineth unto him, because of the ark of God. So David went and brought up the ark of God from the house of Obededom into the city of David with gladness. \nAnd it was so, that when they that bare the ark of the LORD had gone six paces, he sacrificed oxen and fatlings. \nAnd David danced before the LORD with all his might; and David was girded with a linen ephod. \nSo David and all the house of Israel brought up the ark of the LORD with shouting, and with the sound of the trumpet. \nAnd as the ark of the LORD came into the city of David, Michal Saul's daughter looked through a window, and saw king David leaping and dancing before the LORD; and she despised him in her heart. \nAnd they brought in the ark of the LORD, and set it in his place, in the midst of the tabernacle that David had pitched for it: and David offered burnt offerings and peace offerings before the LORD. \nAnd as soon as David had made an end of offering burnt offerings and peace offerings, he blessed the people in the name of the LORD of hosts. \nAnd he dealt among all the people, even among the whole multitude of Israel, as well to the women as men, to every one a cake of bread, and a good piece of flesh, and a flagon of wine. So all the people departed every one to his house. \nThen David returned to bless his household. And Michal the daughter of Saul came out to meet David, and said, How glorious was the king of Israel to day, who uncovered himself to day in the eyes of the handmaids of his servants, as one of the vain fellows shamelessly uncovereth himself! \nAnd David said unto Michal, It was before the LORD, which chose me before thy father, and before all his house, to appoint me ruler over the people of the LORD, over Israel: therefore will I play before the LORD. \nAnd I will yet be more vile than thus, and will be base in mine own sight: and of the maidservants which thou hast spoken of, of them shall I be had in honour. \nTherefore Michal the daughter of Saul had no child unto the day of her death. \nAnd it came to pass, when the king sat in his house, and the LORD had given him rest round about from all his enemies; \nThat the king said unto Nathan the prophet, See now, I dwell in an house of cedar, but the ark of God dwelleth within curtains. \nAnd Nathan said to the king, Go, do all that is in thine heart; for the LORD is with thee. \nAnd it came to pass that night, that the word of the LORD came unto Nathan, saying, \nGo and tell my servant David, Thus saith the LORD, Shalt thou build me an house for me to dwell in? \nWhereas I have not dwelt in any house since the time that I brought up the children of Israel out of Egypt, even to this day, but have walked in a tent and in a tabernacle. \nIn all the places wherein I have walked with all the children of Israel spake I a word with any of the tribes of Israel, whom I commanded to feed my people Israel, saying, Why build ye not me an house of cedar? \nNow therefore so shalt thou say unto my servant David, Thus saith the LORD of hosts, I took thee from the sheepcote, from following the sheep, to be ruler over my people, over Israel: \nAnd I was with thee whithersoever thou wentest, and have cut off all thine enemies out of thy sight, and have made thee a great name, like unto the name of the great men that are in the earth. \nMoreover I will appoint a place for my people Israel, and will plant them, that they may dwell in a place of their own, and move no more; neither shall the children of wickedness afflict them any more, as beforetime, \nAnd as since the time that I commanded judges to be over my people Israel, and have caused thee to rest from all thine enemies. Also the LORD telleth thee that he will make thee an house. \nAnd when thy days be fulfilled, and thou shalt sleep with thy fathers, I will set up thy seed after thee, which shall proceed out of thy bowels, and I will establish his kingdom. \nHe shall build an house for my name, and I will stablish the throne of his kingdom for ever. \nI will be his father, and he shall be my son. If he commit iniquity, I will chasten him with the rod of men, and with the stripes of the children of men: \nBut my mercy shall not depart away from him, as I took it from Saul, whom I put away before thee. \nAnd thine house and thy kingdom shall be established for ever before thee: thy throne shall be established for ever. \nAccording to all these words, and according to all this vision, so did Nathan speak unto David. \nThen went king David in, and sat before the LORD, and he said, Who am I, O Lord GOD? and what is my house, that thou hast brought me hitherto? \nAnd this was yet a small thing in thy sight, O Lord GOD; but thou hast spoken also of thy servant's house for a great while to come. And is this the manner of man, O Lord GOD? \nAnd what can David say more unto thee? for thou, Lord GOD, knowest thy servant. \nFor thy word's sake, and according to thine own heart, hast thou done all these great things, to make thy servant know them. \nWherefore thou art great, O LORD God: for there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears. \nAnd what one nation in the earth is like thy people, even like Israel, whom God went to redeem for a people to himself, and to make him a name, and to do for you great things and terrible, for thy land, before thy people, which thou redeemedst to thee from Egypt, from the nations and their gods? \nFor thou hast confirmed to thyself thy people Israel to be a people unto thee for ever: and thou, LORD, art become their God. \nAnd now, O LORD God, the word that thou hast spoken concerning thy servant, and concerning his house, establish it for ever, and do as thou hast said. \nAnd let thy name be magnified for ever, saying, The LORD of hosts is the God over Israel: and let the house of thy servant David be established before thee. \nFor thou, O LORD of hosts, God of Israel, hast revealed to thy servant, saying, I will build thee an house: therefore hath thy servant found in his heart to pray this prayer unto thee. \nAnd now, O Lord GOD, thou art that God, and thy words be true, and thou hast promised this goodness unto thy servant: \nTherefore now let it please thee to bless the house of thy servant, that it may continue for ever before thee: for thou, O Lord GOD, hast spoken it: and with thy blessing let the house of thy servant be blessed for ever. \nAnd after this it came to pass that David smote the Philistines, and subdued them: and David took Methegammah out of the hand of the Philistines. \nAnd he smote Moab, and measured them with a line, casting them down to the ground; even with two lines measured he to put to death, and with one full line to keep alive. And so the Moabites became David's servants, and brought gifts. \nDavid smote also Hadadezer, the son of Rehob, king of Zobah, as he went to recover his border at the river Euphrates. \nAnd David took from him a thousand chariots, and seven hundred horsemen, and twenty thousand footmen: and David houghed all the chariot horses, but reserved of them for an hundred chariots. \nAnd when the Syrians of Damascus came to succour Hadadezer king of Zobah, David slew of the Syrians two and twenty thousand men. \nThen David put garrisons in Syria of Damascus: and the Syrians became servants to David, and brought gifts. And the LORD preserved David whithersoever he went. \nAnd David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem. \nAnd from Betah, and from Berothai, cities of Hadadezer, king David took exceeding much brass. \nWhen Toi king of Hamath heard that David had smitten all the host of Hadadezer, \nThen Toi sent Joram his son unto king David, to salute him, and to bless him, because he had fought against Hadadezer, and smitten him: for Hadadezer had wars with Toi. And Joram brought with him vessels of silver, and vessels of gold, and vessels of brass: \nWhich also king David did dedicate unto the LORD, with the silver and gold that he had dedicated of all nations which he subdued; \nOf Syria, and of Moab, and of the children of Ammon, and of the Philistines, and of Amalek, and of the spoil of Hadadezer, son of Rehob, king of Zobah. \nAnd David gat him a name when he returned from smiting of the Syrians in the valley of salt, being eighteen thousand men. \nAnd he put garrisons in Edom; throughout all Edom put he garrisons, and all they of Edom became David's servants. And the LORD preserved David whithersoever he went. \nAnd David reigned over all Israel; and David executed judgment and justice unto all his people. \nAnd Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder; \nAnd Zadok the son of Ahitub, and Ahimelech the son of Abiathar, were the priests; and Seraiah was the scribe; \nAnd Benaiah the son of Jehoiada was over both the Cherethites and the Pelethites; and David's sons were chief rulers. \nAnd David said, Is there yet any that is left of the house of Saul, that I may shew him kindness for Jonathan's sake? \nAnd there was of the house of Saul a servant whose name was Ziba. And when they had called him unto David, the king said unto him, Art thou Ziba? And he said, Thy servant is he. \nAnd the king said, Is there not yet any of the house of Saul, that I may shew the kindness of God unto him? And Ziba said unto the king, Jonathan hath yet a son, which is lame on his feet. \nAnd the king said unto him, Where is he? And Ziba said unto the king, Behold, he is in the house of Machir, the son of Ammiel, in Lodebar. \nThen king David sent, and fetched him out of the house of Machir, the son of Ammiel, from Lodebar. \nNow when Mephibosheth, the son of Jonathan, the son of Saul, was come unto David, he fell on his face, and did reverence. And David said, Mephibosheth. And he answered, Behold thy servant! \nAnd David said unto him, Fear not: for I will surely shew thee kindness for Jonathan thy father's sake, and will restore thee all the land of Saul thy father; and thou shalt eat bread at my table continually. \nAnd he bowed himself, and said, What is thy servant, that thou shouldest look upon such a dead dog as I am? \nThen the king called to Ziba, Saul's servant, and said unto him, I have given unto thy master's son all that pertained to Saul and to all his house. \nThou therefore, and thy sons, and thy servants, shall till the land for him, and thou shalt bring in the fruits, that thy master's son may have food to eat: but Mephibosheth thy master's son shall eat bread alway at my table. Now Ziba had fifteen sons and twenty servants. \nThen said Ziba unto the king, According to all that my lord the king hath commanded his servant, so shall thy servant do. As for Mephibosheth, said the king, he shall eat at my table, as one of the king's sons. \nAnd Mephibosheth had a young son, whose name was Micha. And all that dwelt in the house of Ziba were servants unto Mephibosheth. \nSo Mephibosheth dwelt in Jerusalem: for he did eat continually at the king's table; and was lame on both his feet. \nAnd it came to pass after this, that the king of the children of Ammon died, and Hanun his son reigned in his stead. \nThen said David, I will shew kindness unto Hanun the son of Nahash, as his father shewed kindness unto me. And David sent to comfort him by the hand of his servants for his father. And David's servants came into the land of the children of Ammon. \nAnd the princes of the children of Ammon said unto Hanun their lord, Thinkest thou that David doth honour thy father, that he hath sent comforters unto thee? hath not David rather sent his servants unto thee, to search the city, and to spy it out, and to overthrow it? \nWherefore Hanun took David's servants, and shaved off the one half of their beards, and cut off their garments in the middle, even to their buttocks, and sent them away. \nWhen they told it unto David, he sent to meet them, because the men were greatly ashamed: and the king said, Tarry at Jericho until your beards be grown, and then return. \nAnd when the children of Ammon saw that they stank before David, the children of Ammon sent and hired the Syrians of Bethrehob and the Syrians of Zoba, twenty thousand footmen, and of king Maacah a thousand men, and of Ishtob twelve thousand men. \nAnd when David heard of it, he sent Joab, and all the host of the mighty men. \nAnd the children of Ammon came out, and put the battle in array at the entering in of the gate: and the Syrians of Zoba, and of Rehob, and Ishtob, and Maacah, were by themselves in the field. \nWhen Joab saw that the front of the battle was against him before and behind, he chose of all the choice men of Israel, and put them in array against the Syrians: \nAnd the rest of the people he delivered into the hand of Abishai his brother, that he might put them in array against the children of Ammon. \nAnd he said, If the Syrians be too strong for me, then thou shalt help me: but if the children of Ammon be too strong for thee, then I will come and help thee. \nBe of good courage, and let us play the men for our people, and for the cities of our God: and the LORD do that which seemeth him good. \nAnd Joab drew nigh, and the people that were with him, unto the battle against the Syrians: and they fled before him. \nAnd when the children of Ammon saw that the Syrians were fled, then fled they also before Abishai, and entered into the city. So Joab returned from the children of Ammon, and came to Jerusalem. \nAnd when the Syrians saw that they were smitten before Israel, they gathered themselves together. \nAnd Hadarezer sent, and brought out the Syrians that were beyond the river: and they came to Helam; and Shobach the captain of the host of Hadarezer went before them. \nAnd when it was told David, he gathered all Israel together, and passed over Jordan, and came to Helam. And the Syrians set themselves in array against David, and fought with him. \nAnd the Syrians fled before Israel; and David slew the men of seven hundred chariots of the Syrians, and forty thousand horsemen, and smote Shobach the captain of their host, who died there. \nAnd when all the kings that were servants to Hadarezer saw that they were smitten before Israel, they made peace with Israel, and served them. So the Syrians feared to help the children of Ammon any more. \nAnd it came to pass, after the year was expired, at the time when kings go forth to battle, that David sent Joab, and his servants with him, and all Israel; and they destroyed the children of Ammon, and besieged Rabbah. But David tarried still at Jerusalem. \nAnd it came to pass in an eveningtide, that David arose from off his bed, and walked upon the roof of the king's house: and from the roof he saw a woman washing herself; and the woman was very beautiful to look upon. \nAnd David sent and enquired after the woman. And one said, Is not this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite? \nAnd David sent messengers, and took her; and she came in unto him, and he lay with her; for she was purified from her uncleanness: and she returned unto her house. \nAnd the woman conceived, and sent and told David, and said, I am with child. \nAnd David sent to Joab, saying, Send me Uriah the Hittite. And Joab sent Uriah to David. \nAnd when Uriah was come unto him, David demanded of him how Joab did, and how the people did, and how the war prospered. \nAnd David said to Uriah, Go down to thy house, and wash thy feet. And Uriah departed out of the king's house, and there followed him a mess of meat from the king. \nBut Uriah slept at the door of the king's house with all the servants of his lord, and went not down to his house. \nAnd when they had told David, saying, Uriah went not down unto his house, David said unto Uriah, Camest thou not from thy journey? why then didst thou not go down unto thine house? \nAnd Uriah said unto David, The ark, and Israel, and Judah, abide in tents; and my lord Joab, and the servants of my lord, are encamped in the open fields; shall I then go into mine house, to eat and to drink, and to lie with my wife? as thou livest, and as thy soul liveth, I will not do this thing. \nAnd David said to Uriah, Tarry here to day also, and to morrow I will let thee depart. So Uriah abode in Jerusalem that day, and the morrow. \nAnd when David had called him, he did eat and drink before him; and he made him drunk: and at even he went out to lie on his bed with the servants of his lord, but went not down to his house. \nAnd it came to pass in the morning, that David wrote a letter to Joab, and sent it by the hand of Uriah. \nAnd he wrote in the letter, saying, Set ye Uriah in the forefront of the hottest battle, and retire ye from him, that he may be smitten, and die. \nAnd it came to pass, when Joab observed the city, that he assigned Uriah unto a place where he knew that valiant men were. \nAnd the men of the city went out, and fought with Joab: and there fell some of the people of the servants of David; and Uriah the Hittite died also. \nThen Joab sent and told David all the things concerning the war; \nAnd charged the messenger, saying, When thou hast made an end of telling the matters of the war unto the king, \nAnd if so be that the king's wrath arise, and he say unto thee, Wherefore approached ye so nigh unto the city when ye did fight? knew ye not that they would shoot from the wall? \nWho smote Abimelech the son of Jerubbesheth? did not a woman cast a piece of a millstone upon him from the wall, that he died in Thebez? why went ye nigh the wall? then say thou, Thy servant Uriah the Hittite is dead also. \nSo the messenger went, and came and shewed David all that Joab had sent him for. \nAnd the messenger said unto David, Surely the men prevailed against us, and came out unto us into the field, and we were upon them even unto the entering of the gate. \nAnd the shooters shot from off the wall upon thy servants; and some of the king's servants be dead, and thy servant Uriah the Hittite is dead also. \nThen David said unto the messenger, Thus shalt thou say unto Joab, Let not this thing displease thee, for the sword devoureth one as well as another: make thy battle more strong against the city, and overthrow it: and encourage thou him. \nAnd when the wife of Uriah heard that Uriah her husband was dead, she mourned for her husband. \nAnd when the mourning was past, David sent and fetched her to his house, and she became his wife, and bare him a son. But the thing that David had done displeased the LORD. \nAnd the LORD sent Nathan unto David. And he came unto him, and said unto him, There were two men in one city; the one rich, and the other poor. \nThe rich man had exceeding many flocks and herds: \nBut the poor man had nothing, save one little ewe lamb, which he had bought and nourished up: and it grew up together with him, and with his children; it did eat of his own meat, and drank of his own cup, and lay in his bosom, and was unto him as a daughter. \nAnd there came a traveller unto the rich man, and he spared to take of his own flock and of his own herd, to dress for the wayfaring man that was come unto him; but took the poor man's lamb, and dressed it for the man that was come to him. \nAnd David's anger was greatly kindled against the man; and he said to Nathan, As the LORD liveth, the man that hath done this thing shall surely die: \nAnd he shall restore the lamb fourfold, because he did this thing, and because he had no pity. \nAnd Nathan said to David, Thou art the man. Thus saith the LORD God of Israel, I anointed thee king over Israel, and I delivered thee out of the hand of Saul; \nAnd I gave thee thy master's house, and thy master's wives into thy bosom, and gave thee the house of Israel and of Judah; and if that had been too little, I would moreover have given unto thee such and such things. \nWherefore hast thou despised the commandment of the LORD, to do evil in his sight? thou hast killed Uriah the Hittite with the sword, and hast taken his wife to be thy wife, and hast slain him with the sword of the children of Ammon. \nNow therefore the sword shall never depart from thine house; because thou hast despised me, and hast taken the wife of Uriah the Hittite to be thy wife. \nThus saith the LORD, Behold, I will raise up evil against thee out of thine own house, and I will take thy wives before thine eyes, and give them unto thy neighbour, and he shall lie with thy wives in the sight of this sun. \nFor thou didst it secretly: but I will do this thing before all Israel, and before the sun. \nAnd David said unto Nathan, I have sinned against the LORD. And Nathan said unto David, The LORD also hath put away thy sin; thou shalt not die. \nHowbeit, because by this deed thou hast given great occasion to the enemies of the LORD to blaspheme, the child also that is born unto thee shall surely die. \nAnd Nathan departed unto his house. And the LORD struck the child that Uriah's wife bare unto David, and it was very sick. \nDavid therefore besought God for the child; and David fasted, and went in, and lay all night upon the earth. \nAnd the elders of his house arose, and went to him, to raise him up from the earth: but he would not, neither did he eat bread with them. \nAnd it came to pass on the seventh day, that the child died. And the servants of David feared to tell him that the child was dead: for they said, Behold, while the child was yet alive, we spake unto him, and he would not hearken unto our voice: how will he then vex himself, if we tell him that the child is dead? \nBut when David saw that his servants whispered, David perceived that the child was dead: therefore David said unto his servants, Is the child dead? And they said, He is dead. \nThen David arose from the earth, and washed, and anointed himself, and changed his apparel, and came into the house of the LORD, and worshipped: then he came to his own house; and when he required, they set bread before him, and he did eat. \nThen said his servants unto him, What thing is this that thou hast done? thou didst fast and weep for the child, while it was alive; but when the child was dead, thou didst rise and eat bread. \nAnd he said, While the child was yet alive, I fasted and wept: for I said, Who can tell whether GOD will be gracious to me, that the child may live? \nBut now he is dead, wherefore should I fast? can I bring him back again? I shall go to him, but he shall not return to me. \nAnd David comforted Bathsheba his wife, and went in unto her, and lay with her: and she bare a son, and he called his name Solomon: and the LORD loved him. \nAnd he sent by the hand of Nathan the prophet; and he called his name Jedidiah, because of the LORD. \nAnd Joab fought against Rabbah of the children of Ammon, and took the royal city. \nAnd Joab sent messengers to David, and said, I have fought against Rabbah, and have taken the city of waters. \nNow therefore gather the rest of the people together, and encamp against the city, and take it: lest I take the city, and it be called after my name. \nAnd David gathered all the people together, and went to Rabbah, and fought against it, and took it. \nAnd he took their king's crown from off his head, the weight whereof was a talent of gold with the precious stones: and it was set on David's head. And he brought forth the spoil of the city in great abundance. \nAnd he brought forth the people that were therein, and put them under saws, and under harrows of iron, and under axes of iron, and made them pass through the brick-kiln: and thus did he unto all the cities of the children of Ammon. So David and all the people returned unto Jerusalem. \nAnd it came to pass after this, that Absalom the son of David had a fair sister, whose name was Tamar; and Amnon the son of David loved her. \nAnd Amnon was so vexed, that he fell sick for his sister Tamar; for she was a virgin; and Amnon thought it hard for him to do anything to her. \nBut Amnon had a friend, whose name was Jonadab, the son of Shimeah David's brother: and Jonadab was a very subtil man. \nAnd he said unto him, Why art thou, being the king's son, lean from day to day? wilt thou not tell me? And Amnon said unto him, I love Tamar, my brother Absalom's sister. \nAnd Jonadab said unto him, Lay thee down on thy bed, and make thyself sick: and when thy father cometh to see thee, say unto him, I pray thee, let my sister Tamar come, and give me meat, and dress the meat in my sight, that I may see it, and eat it at her hand. \nSo Amnon lay down, and made himself sick: and when the king was come to see him, Amnon said unto the king, I pray thee, let Tamar my sister come, and make me a couple of cakes in my sight, that I may eat at her hand. \nThen David sent home to Tamar, saying, Go now to thy brother Amnon's house, and dress him meat. \nSo Tamar went to her brother Amnon's house; and he was laid down. And she took flour, and kneaded it, and made cakes in his sight, and did bake the cakes. \nAnd she took a pan, and poured them out before him; but he refused to eat. And Amnon said, Have out all men from me. And they went out every man from him. \nAnd Amnon said unto Tamar, Bring the meat into the chamber, that I may eat of thine hand. And Tamar took the cakes which she had made, and brought them into the chamber to Amnon her brother. \nAnd when she had brought them unto him to eat, he took hold of her, and said unto her, Come lie with me, my sister. \nAnd she answered him, Nay, my brother, do not force me; for no such thing ought to be done in Israel: do not thou this folly. \nAnd I, whither shall I cause my shame to go? and as for thee, thou shalt be as one of the fools in Israel. Now therefore, I pray thee, speak unto the king; for he will not withhold me from thee. \nHowbeit he would not hearken unto her voice: but, being stronger than she, forced her, and lay with her. \nThen Amnon hated her exceedingly; so that the hatred wherewith he hated her was greater than the love wherewith he had loved her. And Amnon said unto her, Arise, be gone. \nAnd she said unto him, There is no cause: this evil in sending me away is greater than the other that thou didst unto me. But he would not hearken unto her. \nThen he called his servant that ministered unto him, and said, Put now this woman out from me, and bolt the door after her. \nAnd she had a garment of divers colours upon her: for with such robes were the king's daughters that were virgins apparelled. Then his servant brought her out, and bolted the door after her. \nAnd Tamar put ashes on her head, and rent her garment of divers colours that was on her, and laid her hand on her head, and went on crying. \nAnd Absalom her brother said unto her, Hath Amnon thy brother been with thee? but hold now thy peace, my sister: he is thy brother; regard not this thing. So Tamar remained desolate in her brother Absalom's house. \nBut when king David heard of all these things, he was very wroth. \nAnd Absalom spake unto his brother Amnon neither good nor bad: for Absalom hated Amnon, because he had forced his sister Tamar. \nAnd it came to pass after two full years, that Absalom had sheepshearers in Baalhazor, which is beside Ephraim: and Absalom invited all the king's sons. \nAnd Absalom came to the king, and said, Behold now, thy servant hath sheepshearers; let the king, I beseech thee, and his servants go with thy servant. \nAnd the king said to Absalom, Nay, my son, let us not all now go, lest we be chargeable unto thee. And he pressed him: howbeit he would not go, but blessed him. \nThen said Absalom, If not, I pray thee, let my brother Amnon go with us. And the king said unto him, Why should he go with thee? \nBut Absalom pressed him, that he let Amnon and all the king's sons go with him. \nNow Absalom had commanded his servants, saying, Mark ye now when Amnon's heart is merry with wine, and when I say unto you, Smite Amnon; then kill him, fear not: have not I commanded you? be courageous, and be valiant. \nAnd the servants of Absalom did unto Amnon as Absalom had commanded. Then all the king's sons arose, and every man gat him up upon his mule, and fled. \nAnd it came to pass, while they were in the way, that tidings came to David, saying, Absalom hath slain all the king's sons, and there is not one of them left. \nThen the king arose, and tare his garments, and lay on the earth; and all his servants stood by with their clothes rent. \nAnd Jonadab, the son of Shimeah David's brother, answered and said, Let not my lord suppose that they have slain all the young men the king's sons; for Amnon only is dead: for by the appointment of Absalom this hath been determined from the day that he forced his sister Tamar. \nNow therefore let not my lord the king take the thing to his heart, to think that all the king's sons are dead: for Amnon only is dead. \nBut Absalom fled. And the young man that kept the watch lifted up his eyes, and looked, and, behold, there came much people by the way of the hill side behind him. \nAnd Jonadab said unto the king, Behold, the king's sons come: as thy servant said, so it is. \nAnd it came to pass, as soon as he had made an end of speaking, that, behold, the king's sons came, and lifted up their voice and wept: and the king also and all his servants wept very sore. \nBut Absalom fled, and went to Talmai, the son of Ammihud, king of Geshur. And David mourned for his son every day. \nSo Absalom fled, and went to Geshur, and was there three years. \nAnd the soul of king David longed to go forth unto Absalom: for he was comforted concerning Amnon, seeing he was dead. \nNow Joab the son of Zeruiah perceived that the king's heart was toward Absalom. \nAnd Joab sent to Tekoah, and fetched thence a wise woman, and said unto her, I pray thee, feign thyself to be a mourner, and put on now mourning apparel, and anoint not thyself with oil, but be as a woman that had a long time mourned for the dead: \nAnd come to the king, and speak on this manner unto him. So Joab put the words in her mouth. \nAnd when the woman of Tekoah spake to the king, she fell on her face to the ground, and did obeisance, and said, Help, O king. \nAnd the king said unto her, What aileth thee? And she answered, I am indeed a widow woman, and mine husband is dead. \nAnd thy handmaid had two sons, and they two strove together in the field, and there was none to part them, but the one smote the other, and slew him. \nAnd, behold, the whole family is risen against thine handmaid, and they said, Deliver him that smote his brother, that we may kill him, for the life of his brother whom he slew; and we will destroy the heir also: and so they shall quench my coal which is left, and shall not leave to my husband neither name nor remainder upon the earth. \nAnd the king said unto the woman, Go to thine house, and I will give charge concerning thee. \nAnd the woman of Tekoah said unto the king, My lord, O king, the iniquity be on me, and on my father's house: and the king and his throne be guiltless. \nAnd the king said, Whoever saith ought unto thee, bring him to me, and he shall not touch thee any more. \nThen said she, I pray thee, let the king remember the LORD thy God, that thou wouldest not suffer the revengers of blood to destroy any more, lest they destroy my son. And he said, As the LORD liveth, there shall not one hair of thy son fall to the earth. \nThen the woman said, Let thine handmaid, I pray thee, speak one word unto my lord the king. And he said, Say on. \nAnd the woman said, Wherefore then hast thou thought such a thing against the people of God? for the king doth speak this thing as one which is faulty, in that the king doth not fetch home again his banished. \nFor we must needs die, and are as water spilt on the ground, which cannot be gathered up again; neither doth God respect any person: yet doth he devise means, that his banished be not expelled from him. \nNow therefore that I am come to speak of this thing unto my lord the king, it is because the people have made me afraid: and thy handmaid said, I will now speak unto the king; it may be that the king will perform the request of his handmaid. \nFor the king will hear, to deliver his handmaid out of the hand of the man that would destroy me and my son together out of the inheritance of God. \nThen thine handmaid said, The word of my lord the king shall now be comfortable: for as an angel of God, so is my lord the king to discern good and bad: therefore the LORD thy God will be with thee. \nThen the king answered and said unto the woman, Hide not from me, I pray thee, the thing that I shall ask thee. And the woman said, Let my lord the king now speak. \nAnd the king said, Is not the hand of Joab with thee in all this? And the woman answered and said, As thy soul liveth, my lord the king, none can turn to the right hand or to the left from ought that my lord the king hath spoken: for thy servant Joab, he bade me, and he put all these words in the mouth of thine handmaid: \nTo fetch about this form of speech hath thy servant Joab done this thing: and my lord is wise, according to the wisdom of an angel of God, to know all things that are in the earth. \nAnd the king said unto Joab, Behold now, I have done this thing: go therefore, bring the young man Absalom again. \nAnd Joab fell to the ground on his face, and bowed himself, and thanked the king: and Joab said, To day thy servant knoweth that I have found grace in thy sight, my lord, O king, in that the king hath fulfilled the request of his servant. \nSo Joab arose and went to Geshur, and brought Absalom to Jerusalem. \nAnd the king said, Let him turn to his own house, and let him not see my face. So Absalom returned to his own house, and saw not the king's face. \nBut in all Israel there was none to be so much praised as Absalom for his beauty: from the sole of his foot even to the crown of his head there was no blemish in him. \nAnd when he polled his head, (for it was at every year's end that he polled it: because the hair was heavy on him, therefore he polled it:) he weighed the hair of his head at two hundred shekels after the king's weight. \nAnd unto Absalom there were born three sons, and one daughter, whose name was Tamar: she was a woman of a fair countenance. \nSo Absalom dwelt two full years in Jerusalem, and saw not the king's face. \nTherefore Absalom sent for Joab, to have sent him to the king; but he would not come to him: and when he sent again the second time, he would not come. \nTherefore he said unto his servants, See, Joab's field is near mine, and he hath barley there; go and set it on fire. And Absalom's servants set the field on fire. \nThen Joab arose, and came to Absalom unto his house, and said unto him, Wherefore have thy servants set my field on fire? \nAnd Absalom answered Joab, Behold, I sent unto thee, saying, Come hither, that I may send thee to the king, to say, Wherefore am I come from Geshur? it had been good for me to have been there still: now therefore let me see the king's face; and if there be any iniquity in me, let him kill me. \nSo Joab came to the king, and told him: and when he had called for Absalom, he came to the king, and bowed himself on his face to the ground before the king: and the king kissed Absalom. \nAnd it came to pass after this, that Absalom prepared him chariots and horses, and fifty men to run before him. \nAnd Absalom rose up early, and stood beside the way of the gate: and it was so, that when any man that had a controversy came to the king for judgment, then Absalom called unto him, and said, Of what city art thou? And he said, Thy servant is of one of the tribes of Israel. \nAnd Absalom said unto him, See, thy matters are good and right; but there is no man deputed of the king to hear thee. \nAbsalom said moreover, Oh that I were made judge in the land, that every man which hath any suit or cause might come unto me, and I would do him justice! \nAnd it was so, that when any man came nigh to him to do him obeisance, he put forth his hand, and took him, and kissed him. \nAnd on this manner did Absalom to all Israel that came to the king for judgment: so Absalom stole the hearts of the men of Israel. \nAnd it came to pass after forty years, that Absalom said unto the king, I pray thee, let me go and pay my vow, which I have vowed unto the LORD, in Hebron. \nFor thy servant vowed a vow while I abode at Geshur in Syria, saying, If the LORD shall bring me again indeed to Jerusalem, then I will serve the LORD. \nAnd the king said unto him, Go in peace. So he arose, and went to Hebron. \nBut Absalom sent spies throughout all the tribes of Israel, saying, As soon as ye hear the sound of the trumpet, then ye shall say, Absalom reigneth in Hebron. \nAnd with Absalom went two hundred men out of Jerusalem, that were called; and they went in their simplicity, and they knew not any thing. \nAnd Absalom sent for Ahithophel the Gilonite, David's counsellor, from his city, even from Giloh, while he offered sacrifices. And the conspiracy was strong; for the people increased continually with Absalom. \nAnd there came a messenger to David, saying, The hearts of the men of Israel are after Absalom. \nAnd David said unto all his servants that were with him at Jerusalem, Arise, and let us flee; for we shall not else escape from Absalom: make speed to depart, lest he overtake us suddenly, and bring evil upon us, and smite the city with the edge of the sword. \nAnd the king's servants said unto the king, Behold, thy servants are ready to do whatsoever my lord the king shall appoint. \nAnd the king went forth, and all his household after him. And the king left ten women, which were concubines, to keep the house. \nAnd the king went forth, and all the people after him, and tarried in a place that was far off. \nAnd all his servants passed on beside him; and all the Cherethites, and all the Pelethites, and all the Gittites, six hundred men which came after him from Gath, passed on before the king. \nThen said the king to Ittai the Gittite, Wherefore goest thou also with us? return to thy place, and abide with the king: for thou art a stranger, and also an exile. \nWhereas thou camest but yesterday, should I this day make thee go up and down with us? seeing I go whither I may, return thou, and take back thy brethren: mercy and truth be with thee. \nAnd Ittai answered the king, and said, As the LORD liveth, and as my lord the king liveth, surely in what place my lord the king shall be, whether in death or life, even there also will thy servant be. \nAnd David said to Ittai, Go and pass over. And Ittai the Gittite passed over, and all his men, and all the little ones that were with him. \nAnd all the country wept with a loud voice, and all the people passed over: the king also himself passed over the brook Kidron, and all the people passed over, toward the way of the wilderness. \nAnd lo Zadok also, and all the Levites were with him, bearing the ark of the covenant of God: and they set down the ark of God; and Abiathar went up, until all the people had done passing out of the city. \nAnd the king said unto Zadok, Carry back the ark of God into the city: if I shall find favour in the eyes of the LORD, he will bring me again, and shew me both it, and his habitation: \nBut if he thus say, I have no delight in thee; behold, here am I, let him do to me as seemeth good unto him. \nThe king said also unto Zadok the priest, Art not thou a seer? return into the city in peace, and your two sons with you, Ahimaaz thy son, and Jonathan the son of Abiathar. \nSee, I will tarry in the plain of the wilderness, until there come word from you to certify me. \nZadok therefore and Abiathar carried the ark of God again to Jerusalem: and they tarried there. \nAnd David went up by the ascent of mount Olivet, and wept as he went up, and had his head covered, and he went barefoot: and all the people that was with him covered every man his head, and they went up, weeping as they went up. \nAnd one told David, saying, Ahithophel is among the conspirators with Absalom. And David said, O LORD, I pray thee, turn the counsel of Ahithophel into foolishness. \nAnd it came to pass, that when David was come to the top of the mount, where he worshipped God, behold, Hushai the Archite came to meet him with his coat rent, and earth upon his head: \nUnto whom David said, If thou passest on with me, then thou shalt be a burden unto me: \nBut if thou return to the city, and say unto Absalom, I will be thy servant, O king; as I have been thy father's servant hitherto, so will I now also be thy servant: then mayest thou for me defeat the counsel of Ahithophel. \nAnd hast thou not there with thee Zadok and Abiathar the priests? therefore it shall be, that what thing soever thou shalt hear out of the king's house, thou shalt tell it to Zadok and Abiathar the priests. \nBehold, they have there with them their two sons, Ahimaaz Zadok's son, and Jonathan Abiathar's son; and by them ye shall send unto me every thing that ye can hear. \nSo Hushai David's friend came into the city, and Absalom came into Jerusalem. \nAnd when David was a little past the top of the hill, behold, Ziba the servant of Mephibosheth met him, with a couple of asses saddled, and upon them two hundred loaves of bread, and an hundred bunches of raisins, and an hundred of summer fruits, and a bottle of wine. \nAnd the king said unto Ziba, What meanest thou by these? And Ziba said, The asses be for the king's household to ride on; and the bread and summer fruit for the young men to eat; and the wine, that such as be faint in the wilderness may drink. \nAnd the king said, And where is thy master's son? And Ziba said unto the king, Behold, he abideth at Jerusalem: for he said, To day shall the house of Israel restore me the kingdom of my father. \nThen said the king to Ziba, Behold, thine are all that pertained unto Mephibosheth. And Ziba said, I humbly beseech thee that I may find grace in thy sight, my lord, O king. \nAnd when king David came to Bahurim, behold, thence came out a man of the family of the house of Saul, whose name was Shimei, the son of Gera: he came forth, and cursed still as he came. \nAnd he cast stones at David, and at all the servants of king David: and all the people and all the mighty men were on his right hand and on his left. \nAnd thus said Shimei when he cursed, Come out, come out, thou bloody man, and thou man of Belial: \nThe LORD hath returned upon thee all the blood of the house of Saul, in whose stead thou hast reigned; and the LORD hath delivered the kingdom into the hand of Absalom thy son: and, behold, thou art taken in thy mischief, because thou art a bloody man. \nThen said Abishai the son of Zeruiah unto the king, Why should this dead dog curse my lord the king? let me go over, I pray thee, and take off his head. \nAnd the king said, What have I to do with you, ye sons of Zeruiah? so let him curse, because the LORD hath said unto him, Curse David. Who shall then say, Wherefore hast thou done so? \nAnd David said to Abishai, and to all his servants, Behold, my son, which came forth of my bowels, seeketh my life: how much more now may this Benjamite do it? let him alone, and let him curse; for the LORD hath bidden him. \nIt may be that the LORD will look on mine affliction, and that the LORD will requite me good for his cursing this day. \nAnd as David and his men went by the way, Shimei went along on the hill's side over against him, and cursed as he went, and threw stones at him, and cast dust. \nAnd the king, and all the people that were with him, came weary, and refreshed themselves there. \nAnd Absalom, and all the people the men of Israel, came to Jerusalem, and Ahithophel with him. \nAnd it came to pass, when Hushai the Archite, David's friend, was come unto Absalom, that Hushai said unto Absalom, God save the king, God save the king. \nAnd Absalom said to Hushai, Is this thy kindness to thy friend? why wentest thou not with thy friend? \nAnd Hushai said unto Absalom, Nay; but whom the LORD, and this people, and all the men of Israel, choose, his will I be, and with him will I abide. \nAnd again, whom should I serve? should I not serve in the presence of his son? as I have served in thy father's presence, so will I be in thy presence. \nThen said Absalom to Ahithophel, Give counsel among you what we shall do. \nAnd Ahithophel said unto Absalom, Go in unto thy father's concubines, which he hath left to keep the house; and all Israel shall hear that thou art abhorred of thy father: then shall the hands of all that are with thee be strong. \nSo they spread Absalom a tent upon the top of the house; and Absalom went in unto his father's concubines in the sight of all Israel. \nAnd the counsel of Ahithophel, which he counselled in those days, was as if a man had enquired at the oracle of God: so was all the counsel of Ahithophel both with David and with Absalom. \nMoreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue after David this night: \nAnd I will come upon him while he is weary and weak handed, and will make him afraid: and all the people that are with him shall flee; and I will smite the king only: \nAnd I will bring back all the people unto thee: the man whom thou seekest is as if all returned: so all the people shall be in peace. \nAnd the saying pleased Absalom well, and all the elders of Israel. \nThen said Absalom, Call now Hushai the Archite also, and let us hear likewise what he saith. \nAnd when Hushai was come to Absalom, Absalom spake unto him, saying, Ahithophel hath spoken after this manner: shall we do after his saying? if not; speak thou. \nAnd Hushai said unto Absalom, The counsel that Ahithophel hath given is not good at this time. \nFor, said Hushai, thou knowest thy father and his men, that they be mighty men, and they be chafed in their minds, as a bear robbed of her whelps in the field: and thy father is a man of war, and will not lodge with the people. \nBehold, he is hid now in some pit, or in some other place: and it will come to pass, when some of them be overthrown at the first, that whosoever heareth it will say, There is a slaughter among the people that follow Absalom. \nAnd he also that is valiant, whose heart is as the heart of a lion, shall utterly melt: for all Israel knoweth that thy father is a mighty man, and they which be with him are valiant men. \nTherefore I counsel that all Israel be generally gathered unto thee, from Dan even to Beersheba, as the sand that is by the sea for multitude; and that thou go to battle in thine own person. \nSo shall we come upon him in some place where he shall be found, and we will light upon him as the dew falleth on the ground: and of him and of all the men that are with him there shall not be left so much as one. \nMoreover, if he be gotten into a city, then shall all Israel bring ropes to that city, and we will draw it into the river, until there be not one small stone found there. \nAnd Absalom and all the men of Israel said, The counsel of Hushai the Archite is better than the counsel of Ahithophel. For the LORD had appointed to defeat the good counsel of Ahithophel, to the intent that the LORD might bring evil upon Absalom. \nThen said Hushai unto Zadok and to Abiathar the priests, Thus and thus did Ahithophel counsel Absalom and the elders of Israel; and thus and thus have I counselled. \nNow therefore send quickly, and tell David, saying, Lodge not this night in the plains of the wilderness, but speedily pass over; lest the king be swallowed up, and all the people that are with him. \nNow Jonathan and Ahimaaz stayed by Enrogel; for they might not be seen to come into the city: and a wench went and told them; and they went and told king David. \nNevertheless a lad saw them, and told Absalom: but they went both of them away quickly, and came to a man's house in Bahurim, which had a well in his court; whither they went down. \nAnd the woman took and spread a covering over the well's mouth, and spread ground corn thereon; and the thing was not known. \nAnd when Absalom's servants came to the woman to the house, they said, Where is Ahimaaz and Jonathan? And the woman said unto them, They be gone over the brook of water. And when they had sought and could not find them, they returned to Jerusalem. \nAnd it came to pass, after they were departed, that they came up out of the well, and went and told king David, and said unto David, Arise, and pass quickly over the water: for thus hath Ahithophel counselled against you. \nThen David arose, and all the people that were with him, and they passed over Jordan: by the morning light there lacked not one of them that was not gone over Jordan. \nAnd when Ahithophel saw that his counsel was not followed, he saddled his ass, and arose, and gat him home to his house, to his city, and put his household in order, and hanged himself, and died, and was buried in the sepulchre of his father. \nThen David came to Mahanaim. And Absalom passed over Jordan, he and all the men of Israel with him. \nAnd Absalom made Amasa captain of the host instead of Joab: which Amasa was a man's son, whose name was Ithra an Israelite, that went in to Abigail the daughter of Nahash, sister to Zeruiah Joab's mother. \nSo Israel and Absalom pitched in the land of Gilead. \nAnd it came to pass, when David was come to Mahanaim, that Shobi the son of Nahash of Rabbah of the children of Ammon, and Machir the son of Ammiel of Lodebar, and Barzillai the Gileadite of Rogelim, \nBrought beds, and basons, and earthen vessels, and wheat, and barley, and flour, and parched corn, and beans, and lentiles, and parched pulse, \nAnd honey, and butter, and sheep, and cheese of kine, for David, and for the people that were with him, to eat: for they said, The people is hungry, and weary, and thirsty, in the wilderness. \nAnd David numbered the people that were with him, and set captains of thousands, and captains of hundreds over them. \nAnd David sent forth a third part of the people under the hand of Joab, and a third part under the hand of Abishai the son of Zeruiah, Joab's brother, and a third part under the hand of Ittai the Gittite. And the king said unto the people, I will surely go forth with you myself also. \nBut the people answered, Thou shalt not go forth: for if we flee away, they will not care for us; neither if half of us die, will they care for us: but now thou art worth ten thousand of us: therefore now it is better that thou succour us out of the city. \nAnd the king said unto them, What seemeth you best I will do. And the king stood by the gate side, and all the people came out by hundreds and by thousands. \nAnd the king commanded Joab and Abishai and Ittai, saying, Deal gently for my sake with the young man, even with Absalom. And all the people heard when the king gave all the captains charge concerning Absalom. \nSo the people went out into the field against Israel: and the battle was in the wood of Ephraim; \nWhere the people of Israel were slain before the servants of David, and there was there a great slaughter that day of twenty thousand men. \nFor the battle was there scattered over the face of all the country: and the wood devoured more people that day than the sword devoured. \nAnd Absalom met the servants of David. And Absalom rode upon a mule, and the mule went under the thick boughs of a great oak, and his head caught hold of the oak, and he was taken up between the heaven and the earth; and the mule that was under him went away. \nAnd a certain man saw it, and told Joab, and said, Behold, I saw Absalom hanged in an oak. \nAnd Joab said unto the man that told him, And, behold, thou sawest him, and why didst thou not smite him there to the ground? and I would have given thee ten shekels of silver, and a girdle. \nAnd the man said unto Joab, Though I should receive a thousand shekels of silver in mine hand, yet would I not put forth mine hand against the king's son: for in our hearing the king charged thee and Abishai and Ittai, saying, Beware that none touch the young man Absalom. \nOtherwise I should have wrought falsehood against mine own life: for there is no matter hid from the king, and thou thyself wouldest have set thyself against me. \nThen said Joab, I may not tarry thus with thee. And he took three darts in his hand, and thrust them through the heart of Absalom, while he was yet alive in the midst of the oak. \nAnd ten young men that bare Joab's armour compassed about and smote Absalom, and slew him. \nAnd Joab blew the trumpet, and the people returned from pursuing after Israel: for Joab held back the people. \nAnd they took Absalom, and cast him into a great pit in the wood, and laid a very great heap of stones upon him: and all Israel fled every one to his tent. \nNow Absalom in his lifetime had taken and reared up for himself a pillar, which is in the king's dale: for he said, I have no son to keep my name in remembrance: and he called the pillar after his own name: and it is called unto this day, Absalom's place. \nThen said Ahimaaz the son of Zadok, Let me now run, and bear the king tidings, how that the LORD hath avenged him of his enemies. \nAnd Joab said unto him, Thou shalt not bear tidings this day, but thou shalt bear tidings another day: but this day thou shalt bear no tidings, because the king's son is dead. \nThen said Joab to Cushi, Go tell the king what thou hast seen. And Cushi bowed himself unto Joab, and ran. \nThen said Ahimaaz the son of Zadok yet again to Joab, But howsoever, let me, I pray thee, also run after Cushi. And Joab said, Wherefore wilt thou run, my son, seeing that thou hast no tidings ready? \nBut howsoever, said he, let me run. And he said unto him, Run. Then Ahimaaz ran by the way of the plain, and overran Cushi. \nAnd David sat between the two gates: and the watchman went up to the roof over the gate unto the wall, and lifted up his eyes, and looked, and behold a man running alone. \nAnd the watchman cried, and told the king. And the king said, If he be alone, there is tidings in his mouth. And he came apace, and drew near. \nAnd the watchman saw another man running: and the watchman called unto the porter, and said, Behold another man running alone. And the king said, He also bringeth tidings. \nAnd the watchman said, Me thinketh the running of the foremost is like the running of Ahimaaz the son of Zadok. And the king said, He is a good man, and cometh with good tidings. \nAnd Ahimaaz called, and said unto the king, All is well. And he fell down to the earth upon his face before the king, and said, Blessed be the LORD thy God, which hath delivered up the men that lifted up their hand against my lord the king. \nAnd the king said, Is the young man Absalom safe? And Ahimaaz answered, When Joab sent the king's servant, and me thy servant, I saw a great tumult, but I knew not what it was. \nAnd the king said unto him, Turn aside, and stand here. And he turned aside, and stood still. \nAnd, behold, Cushi came; and Cushi said, Tidings, my lord the king: for the LORD hath avenged thee this day of all them that rose up against thee. \nAnd the king said unto Cushi, Is the young man Absalom safe? And Cushi answered, The enemies of my lord the king, and all that rise against thee to do thee hurt, be as that young man is. \nAnd the king was much moved, and went up to the chamber over the gate, and wept: and as he went, thus he said, O my son Absalom, my son, my son Absalom! would God I had died for thee, O Absalom, my son, my son! \nAnd it was told Joab, Behold, the king weepeth and mourneth for Absalom. \nAnd the victory that day was turned into mourning unto all the people: for the people heard say that day how the king was grieved for his son. \nAnd the people gat them by stealth that day into the city, as people being ashamed steal away when they flee in battle. \nBut the king covered his face, and the king cried with a loud voice, O my son Absalom, O Absalom, my son, my son! \nAnd Joab came into the house to the king, and said, Thou hast shamed this day the faces of all thy servants, which this day have saved thy life, and the lives of thy sons and of thy daughters, and the lives of thy wives, and the lives of thy concubines; \nIn that thou lovest thine enemies, and hatest thy friends. For thou hast declared this day, that thou regardest neither princes nor servants: for this day I perceive, that if Absalom had lived, and all we had died this day, then it had pleased thee well. \nNow therefore arise, go forth, and speak comfortably unto thy servants: for I swear by the LORD, if thou go not forth, there will not tarry one with thee this night: and that will be worse unto thee than all the evil that befell thee from thy youth until now. \nThen the king arose, and sat in the gate. And they told unto all the people, saying, Behold, the king doth sit in the gate. And all the people came before the king: for Israel had fled every man to his tent. \nAnd all the people were at strife throughout all the tribes of Israel, saying, The king saved us out of the hand of our enemies, and he delivered us out of the hand of the Philistines; and now he is fled out of the land for Absalom. \nAnd Absalom, whom we anointed over us, is dead in battle. Now therefore why speak ye not a word of bringing the king back? \nAnd king David sent to Zadok and to Abiathar the priests, saying, Speak unto the elders of Judah, saying, Why are ye the last to bring the king back to his house? seeing the speech of all Israel is come to the king, even to his house. \nYe are my brethren, ye are my bones and my flesh: wherefore then are ye the last to bring back the king? \nAnd say ye to Amasa, Art thou not of my bone, and of my flesh? God do so to me, and more also, if thou be not captain of the host before me continually in the room of Joab. \nAnd he bowed the heart of all the men of Judah, even as the heart of one man; so that they sent this word unto the king, Return thou, and all thy servants. \nSo the king returned, and came to Jordan. And Judah came to Gilgal, to go to meet the king, to conduct the king over Jordan. \nAnd Shimei the son of Gera, a Benjamite, which was of Bahurim, hasted and came down with the men of Judah to meet king David. \nAnd there were a thousand men of Benjamin with him, and Ziba the servant of the house of Saul, and his fifteen sons and his twenty servants with him; and they went over Jordan before the king. \nAnd there went over a ferry boat to carry over the king's household, and to do what he thought good. And Shimei the son of Gera fell down before the king, as he was come over Jordan; \nAnd said unto the king, Let not my lord impute iniquity unto me, neither do thou remember that which thy servant did perversely the day that my lord the king went out of Jerusalem, that the king should take it to his heart. \nFor thy servant doth know that I have sinned: therefore, behold, I am come the first this day of all the house of Joseph to go down to meet my lord the king. \nBut Abishai the son of Zeruiah answered and said, Shall not Shimei be put to death for this, because he cursed the LORD's anointed? \nAnd David said, What have I to do with you, ye sons of Zeruiah, that ye should this day be adversaries unto me? shall there any man be put to death this day in Israel? for do not I know that I am this day king over Israel? \nTherefore the king said unto Shimei, Thou shalt not die. And the king sware unto him. \nAnd Mephibosheth the son of Saul came down to meet the king, and had neither dressed his feet, nor trimmed his beard, nor washed his clothes, from the day the king departed until the day he came again in peace. \nAnd it came to pass, when he was come to Jerusalem to meet the king, that the king said unto him, Wherefore wentest not thou with me, Mephibosheth? \nAnd he answered, My lord, O king, my servant deceived me: for thy servant said, I will saddle me an ass, that I may ride thereon, and go to the king; because thy servant is lame. \nAnd he hath slandered thy servant unto my lord the king; but my lord the king is as an angel of God: do therefore what is good in thine eyes. \nFor all of my father's house were but dead men before my lord the king: yet didst thou set thy servant among them that did eat at thine own table. What right therefore have I yet to cry any more unto the king? \nAnd the king said unto him, Why speakest thou any more of thy matters? I have said, Thou and Ziba divide the land. \nAnd Mephibosheth said unto the king, Yea, let him take all, forasmuch as my lord the king is come again in peace unto his own house. \nAnd Barzillai the Gileadite came down from Rogelim, and went over Jordan with the king, to conduct him over Jordan. \nNow Barzillai was a very aged man, even fourscore years old: and he had provided the king of sustenance while he lay at Mahanaim; for he was a very great man. \nAnd the king said unto Barzillai, Come thou over with me, and I will feed thee with me in Jerusalem. \nAnd Barzillai said unto the king, How long have I to live, that I should go up with the king unto Jerusalem? \nI am this day fourscore years old: and can I discern between good and evil? can thy servant taste what I eat or what I drink? can I hear any more the voice of singing men and singing women? wherefore then should thy servant be yet a burden unto my lord the king? \nThy servant will go a little way over Jordan with the king: and why should the king recompense it me with such a reward? \nLet thy servant, I pray thee, turn back again, that I may die in mine own city, and be buried by the grave of my father and of my mother. But behold thy servant Chimham; let him go over with my lord the king; and do to him what shall seem good unto thee. \nAnd the king answered, Chimham shall go over with me, and I will do to him that which shall seem good unto thee: and whatsoever thou shalt require of me, that will I do for thee. \nAnd all the people went over Jordan. And when the king was come over, the king kissed Barzillai, and blessed him; and he returned unto his own place. \nThen the king went on to Gilgal, and Chimham went on with him: and all the people of Judah conducted the king, and also half the people of Israel. \nAnd, behold, all the men of Israel came to the king, and said unto the king, Why have our brethren the men of Judah stolen thee away, and have brought the king, and his household, and all David's men with him, over Jordan? \nAnd all the men of Judah answered the men of Israel, Because the king is near of kin to us: wherefore then be ye angry for this matter? have we eaten at all of the king's cost? or hath he given us any gift? \nAnd the men of Israel answered the men of Judah, and said, We have ten parts in the king, and we have also more right in David than ye: why then did ye despise us, that our advice should not be first had in bringing back our king? And the words of the men of Judah were fiercer than the words of the men of Israel. \nAnd there happened to be there a man of Belial, whose name was Sheba, the son of Bichri, a Benjamite: and he blew a trumpet, and said, We have no part in David, neither have we inheritance in the son of Jesse: every man to his tents, O Israel. \nSo every man of Israel went up from after David, and followed Sheba the son of Bichri: but the men of Judah clave unto their king, from Jordan even to Jerusalem. \nAnd David came to his house at Jerusalem; and the king took the ten women his concubines, whom he had left to keep the house, and put them in ward, and fed them, but went not in unto them. So they were shut up unto the day of their death, living in widowhood. \nThen said the king to Amasa, Assemble me the men of Judah within three days, and be thou here present. \nSo Amasa went to assemble the men of Judah: but he tarried longer than the set time which he had appointed him. \nAnd David said to Abishai, Now shall Sheba the son of Bichri do us more harm than did Absalom: take thou thy lord's servants, and pursue after him, lest he get him fenced cities, and escape us. \nAnd there went out after him Joab's men, and the Cherethites, and the Pelethites, and all the mighty men: and they went out of Jerusalem, to pursue after Sheba the son of Bichri. \nWhen they were at the great stone which is in Gibeon, Amasa went before them. And Joab's garment that he had put on was girded unto him, and upon it a girdle with a sword fastened upon his loins in the sheath thereof; and as he went forth it fell out. \nAnd Joab said to Amasa, Art thou in health, my brother? And Joab took Amasa by the beard with the right hand to kiss him. \nBut Amasa took no heed to the sword that was in Joab's hand: so he smote him therewith in the fifth rib, and shed out his bowels to the ground, and struck him not again; and he died. So Joab and Abishai his brother pursued after Sheba the son of Bichri. \nAnd one of Joab's men stood by him, and said, He that favoureth Joab, and he that is for David, let him go after Joab. \nAnd Amasa wallowed in blood in the midst of the highway. And when the man saw that all the people stood still, he removed Amasa out of the highway into the field, and cast a cloth upon him, when he saw that every one that came by him stood still. \nWhen he was removed out of the highway, all the people went on after Joab, to pursue after Sheba the son of Bichri. \nAnd he went through all the tribes of Israel unto Abel, and to Bethmaachah, and all the Berites: and they were gathered together, and went also after him. \nAnd they came and besieged him in Abel of Bethmaachah, and they cast up a bank against the city, and it stood in the trench: and all the people that were with Joab battered the wall, to throw it down. \nThen cried a wise woman out of the city, Hear, hear; say, I pray you, unto Joab, Come near hither, that I may speak with thee. \nAnd when he was come near unto her, the woman said, Art thou Joab? And he answered, I am he. Then she said unto him, Hear the words of thine handmaid. And he answered, I do hear. \nThen she spake, saying, They were wont to speak in old time, saying, They shall surely ask counsel at Abel: and so they ended the matter. \nI am one of them that are peaceable and faithful in Israel: thou seekest to destroy a city and a mother in Israel: why wilt thou swallow up the inheritance of the LORD? \nAnd Joab answered and said, Far be it, far be it from me, that I should swallow up or destroy. \nThe matter is not so: but a man of mount Ephraim, Sheba the son of Bichri by name, hath lifted up his hand against the king, even against David: deliver him only, and I will depart from the city. And the woman said unto Joab, Behold, his head shall be thrown to thee over the wall. \nThen the woman went unto all the people in her wisdom. And they cut off the head of Sheba the son of Bichri, and cast it out to Joab. And he blew a trumpet, and they retired from the city, every man to his tent. And Joab returned to Jerusalem unto the king. \nNow Joab was over all the host of Israel: and Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites: \nAnd Adoram was over the tribute: and Jehoshaphat the son of Ahilud was recorder: \nAnd Sheva was scribe: and Zadok and Abiathar were the priests: \nAnd Ira also the Jairite was a chief ruler about David. \nThen there was a famine in the days of David three years, year after year; and David enquired of the LORD. And the LORD answered, It is for Saul, and for his bloody house, because he slew the Gibeonites. \nAnd the king called the Gibeonites, and said unto them; (now the Gibeonites were not of the children of Israel, but of the remnant of the Amorites; and the children of Israel had sworn unto them: and Saul sought to slay them in his zeal to the children of Israel and Judah.) \nWherefore David said unto the Gibeonites, What shall I do for you? and wherewith shall I make the atonement, that ye may bless the inheritance of the LORD? \nAnd the Gibeonites said unto him, We will have no silver nor gold of Saul, nor of his house; neither for us shalt thou kill any man in Israel. And he said, What ye shall say, that will I do for you. \nAnd they answered the king, The man that consumed us, and that devised against us that we should be destroyed from remaining in any of the coasts of Israel, \nLet seven men of his sons be delivered unto us, and we will hang them up unto the LORD in Gibeah of Saul, whom the LORD did choose. And the king said, I will give them. \nBut the king spared Mephibosheth, the son of Jonathan the son of Saul, because of the LORD's oath that was between them, between David and Jonathan the son of Saul. \nBut the king took the two sons of Rizpah the daughter of Aiah, whom she bare unto Saul, Armoni and Mephibosheth; and the five sons of Michal the daughter of Saul, whom she brought up for Adriel the son of Barzillai the Meholathite: \nAnd he delivered them into the hands of the Gibeonites, and they hanged them in the hill before the LORD: and they fell all seven together, and were put to death in the days of harvest, in the first days, in the beginning of barley harvest. \nAnd Rizpah the daughter of Aiah took sackcloth, and spread it for her upon the rock, from the beginning of harvest until water dropped upon them out of heaven, and suffered neither the birds of the air to rest on them by day, nor the beasts of the field by night. \nAnd it was told David what Rizpah the daughter of Aiah, the concubine of Saul, had done. \nAnd David went and took the bones of Saul and the bones of Jonathan his son from the men of Jabeshgilead, which had stolen them from the street of Bethshan, where the Philistines had hanged them, when the Philistines had slain Saul in Gilboa: \nAnd he brought up from thence the bones of Saul and the bones of Jonathan his son; and they gathered the bones of them that were hanged. \nAnd the bones of Saul and Jonathan his son buried they in the country of Benjamin in Zelah, in the sepulchre of Kish his father: and they performed all that the king commanded. And after that God was intreated for the land. \nMoreover the Philistines had yet war again with Israel; and David went down, and his servants with him, and fought against the Philistines: and David waxed faint. \nAnd Ishbibenob, which was of the sons of the giant, the weight of whose spear weighed three hundred shekels of brass in weight, he being girded with a new sword, thought to have slain David. \nBut Abishai the son of Zeruiah succoured him, and smote the Philistine, and killed him. Then the men of David sware unto him, saying, Thou shalt go no more out with us to battle, that thou quench not the light of Israel. \nAnd it came to pass after this, that there was again a battle with the Philistines at Gob: then Sibbechai the Hushathite slew Saph, which was of the sons of the giant. \nAnd there was again a battle in Gob with the Philistines, where Elhanan the son of Jaareoregim, a Bethlehemite, slew the brother of Goliath the Gittite, the staff of whose spear was like a weaver's beam. \nAnd there was yet a battle in Gath, where was a man of great stature, that had on every hand six fingers, and on every foot six toes, four and twenty in number; and he also was born to the giant. \nAnd when he defied Israel, Jonathan the son of Shimeah the brother of David slew him. \nThese four were born to the giant in Gath, and fell by the hand of David, and by the hand of his servants. \nAnd David spake unto the LORD the words of this song in the day that the LORD had delivered him out of the hand of all his enemies, and out of the hand of Saul: \nAnd he said, The LORD is my rock, and my fortress, and my deliverer; \nThe God of my rock; in him will I trust: he is my shield, and the horn of my salvation, my high tower, and my refuge, my saviour; thou savest me from violence. \nI will call on the LORD, who is worthy to be praised: so shall I be saved from mine enemies. \nWhen the waves of death compassed me, the floods of ungodly men made me afraid; \nThe sorrows of hell compassed me about; the snares of death prevented me; \nIn my distress I called upon the LORD, and cried to my God: and he did hear my voice out of his temple, and my cry did enter into his ears. \nThen the earth shook and trembled; the foundations of heaven moved and shook, because he was wroth. \nThere went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it. \nHe bowed the heavens also, and came down; and darkness was under his feet. \nAnd he rode upon a cherub, and did fly: and he was seen upon the wings of the wind. \nAnd he made darkness pavilions round about him, dark waters, and thick clouds of the skies. \nThrough the brightness before him were coals of fire kindled. \nThe LORD thundered from heaven, and the most High uttered his voice. \nAnd he sent out arrows, and scattered them; lightning, and discomfited them. \nAnd the channels of the sea appeared, the foundations of the world were discovered, at the rebuking of the LORD, at the blast of the breath of his nostrils. \nHe sent from above, he took me; he drew me out of many waters; \nHe delivered me from my strong enemy, and from them that hated me: for they were too strong for me. \nThey prevented me in the day of my calamity: but the LORD was my stay. \nHe brought me forth also into a large place: he delivered me, because he delighted in me. \nThe LORD rewarded me according to my righteousness: according to the cleanness of my hands hath he recompensed me. \nFor I have kept the ways of the LORD, and have not wickedly departed from my God. \nFor all his judgments were before me: and as for his statutes, I did not depart from them. \nI was also upright before him, and have kept myself from mine iniquity. \nTherefore the LORD hath recompensed me according to my righteousness; according to my cleanness in his eye sight. \nWith the merciful thou wilt shew thyself merciful, and with the upright man thou wilt shew thyself upright. \nWith the pure thou wilt shew thyself pure; and with the froward thou wilt shew thyself unsavoury. \nAnd the afflicted people thou wilt save: but thine eyes are upon the haughty, that thou mayest bring them down. \nFor thou art my lamp, O LORD: and the LORD will lighten my darkness. \nFor by thee I have run through a troop: by my God have I leaped over a wall. \nAs for God, his way is perfect; the word of the LORD is tried: he is a buckler to all them that trust in him. \nFor who is God, save the LORD? and who is a rock, save our God? \nGod is my strength and power: and he maketh my way perfect. \nHe maketh my feet like hinds' feet: and setteth me upon my high places. \nHe teacheth my hands to war; so that a bow of steel is broken by mine arms. \nThou hast also given me the shield of thy salvation: and thy gentleness hath made me great. \nThou hast enlarged my steps under me; so that my feet did not slip. \nI have pursued mine enemies, and destroyed them; and turned not again until I had consumed them. \nAnd I have consumed them, and wounded them, that they could not arise: yea, they are fallen under my feet. \nFor thou hast girded me with strength to battle: them that rose up against me hast thou subdued under me. \nThou hast also given me the necks of mine enemies, that I might destroy them that hate me. \nThey looked, but there was none to save; even unto the LORD, but he answered them not. \nThen did I beat them as small as the dust of the earth, I did stamp them as the mire of the street, and did spread them abroad. \nThou also hast delivered me from the strivings of my people, thou hast kept me to be head of the heathen: a people which I knew not shall serve me. \nStrangers shall submit themselves unto me: as soon as they hear, they shall be obedient unto me. \nStrangers shall fade away, and they shall be afraid out of their close places. \nThe LORD liveth; and blessed be my rock; and exalted be the God of the rock of my salvation. \nIt is God that avengeth me, and that bringeth down the people under me. \nAnd that bringeth me forth from mine enemies: thou also hast lifted me up on high above them that rose up against me: thou hast delivered me from the violent man. \nTherefore I will give thanks unto thee, O LORD, among the heathen, and I will sing praises unto thy name. \nHe is the tower of salvation for his king: and sheweth mercy to his anointed, unto David, and to his seed for evermore. \nNow these be the last words of David. David the son of Jesse said, and the man who was raised up on high, the anointed of the God of Jacob, and the sweet psalmist of Israel, said, \nThe Spirit of the LORD spake by me, and his word was in my tongue. \nThe God of Israel said, the Rock of Israel spake to me, He that ruleth over men must be just, ruling in the fear of God. \nAnd he shall be as the light of the morning, when the sun riseth, even a morning without clouds; as the tender grass springing out of the earth by clear shining after rain. \nAlthough my house be not so with God; yet he hath made with me an everlasting covenant, ordered in all things, and sure: for this is all my salvation, and all my desire, although he make it not to grow. \nBut the sons of Belial shall be all of them as thorns thrust away, because they cannot be taken with hands: \nBut the man that shall touch them must be fenced with iron and the staff of a spear; and they shall be utterly burned with fire in the same place. \nThese be the names of the mighty men whom David had: The Tachmonite that sat in the seat, chief among the captains; the same was Adino the Eznite: he lift up his spear against eight hundred, whom he slew at one time. \nAnd after him was Eleazar the son of Dodo the Ahohite, one of the three mighty men with David, when they defied the Philistines that were there gathered together to battle, and the men of Israel were gone away: \nHe arose, and smote the Philistines until his hand was weary, and his hand clave unto the sword: and the LORD wrought a great victory that day; and the people returned after him only to spoil. \nAnd after him was Shammah the son of Agee the Hararite. And the Philistines were gathered together into a troop, where was a piece of ground full of lentiles: and the people fled from the Philistines. \nBut he stood in the midst of the ground, and defended it, and slew the Philistines: and the LORD wrought a great victory. \nAnd three of the thirty chief went down, and came to David in the harvest time unto the cave of Adullam: and the troop of the Philistines pitched in the valley of Rephaim. \nAnd David was then in an hold, and the garrison of the Philistines was then in Bethlehem. \nAnd David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, which is by the gate! \nAnd the three mighty men brake through the host of the Philistines, and drew water out of the well of Bethlehem, that was by the gate, and took it, and brought it to David: nevertheless he would not drink thereof, but poured it out unto the LORD. \nAnd he said, Be it far from me, O LORD, that I should do this: is not this the blood of the men that went in jeopardy of their lives? therefore he would not drink it. These things did these three mighty men. \nAnd Abishai, the brother of Joab, the son of Zeruiah, was chief among three. And he lifted up his spear against three hundred, and slew them, and had the name among three. \nWas he not most honourable of three? therefore he was their captain: howbeit he attained not unto the first three. \nAnd Benaiah the son of Jehoiada, the son of a valiant man, of Kabzeel, who had done many acts, he slew two lionlike men of Moab: he went down also and slew a lion in the midst of a pit in time of snow: \nAnd he slew an Egyptian, a goodly man: and the Egyptian had a spear in his hand; but he went down to him with a staff, and plucked the spear out of the Egyptian's hand, and slew him with his own spear. \nThese things did Benaiah the son of Jehoiada, and had the name among three mighty men. \nHe was more honourable than the thirty, but he attained not to the first three. And David set him over his guard. \nAsahel the brother of Joab was one of the thirty; Elhanan the son of Dodo of Bethlehem, \nShammah the Harodite, Elika the Harodite, \nHelez the Paltite, Ira the son of Ikkesh the Tekoite, \nAbiezer the Anethothite, Mebunnai the Hushathite, \nZalmon the Ahohite, Maharai the Netophathite, \nHeleb the son of Baanah, a Netophathite, Ittai the son of Ribai out of Gibeah of the children of Benjamin, \nBenaiah the Pirathonite, Hiddai of the brooks of Gaash, \nAbialbon the Arbathite, Azmaveth the Barhumite, \nEliahba the Shaalbonite, of the sons of Jashen, Jonathan, \nShammah the Hararite, Ahiam the son of Sharar the Hararite, \nEliphelet the son of Ahasbai, the son of the Maachathite, Eliam the son of Ahithophel the Gilonite, \nHezrai the Carmelite, Paarai the Arbite, \nIgal the son of Nathan of Zobah, Bani the Gadite, \nZelek the Ammonite, Nahari the Beerothite, armourbearer to Joab the son of Zeruiah, \nIra an Ithrite, Gareb an Ithrite, \nUriah the Hittite: thirty and seven in all. \nAnd again the anger of the LORD was kindled against Israel, and he moved David against them to say, Go, number Israel and Judah. \nFor the king said to Joab the captain of the host, which was with him, Go now through all the tribes of Israel, from Dan even to Beersheba, and number ye the people, that I may know the number of the people. \nAnd Joab said unto the king, Now the LORD thy God add unto the people, how many soever they be, an hundredfold, and that the eyes of my lord the king may see it: but why doth my lord the king delight in this thing? \nNotwithstanding the king's word prevailed against Joab, and against the captains of the host. And Joab and the captains of the host went out from the presence of the king, to number the people of Israel. \nAnd they passed over Jordan, and pitched in Aroer, on the right side of the city that lieth in the midst of the river of Gad, and toward Jazer: \nThen they came to Gilead, and to the land of Tahtimhodshi; and they came to Danjaan, and about to Zidon, \nAnd came to the strong hold of Tyre, and to all the cities of the Hivites, and of the Canaanites: and they went out to the south of Judah, even to Beersheba. \nSo when they had gone through all the land, they came to Jerusalem at the end of nine months and twenty days. \nAnd Joab gave up the sum of the number of the people unto the king: and there were in Israel eight hundred thousand valiant men that drew the sword; and the men of Judah were five hundred thousand men. \nAnd David's heart smote him after that he had numbered the people. And David said unto the LORD, I have sinned greatly in that I have done: and now, I beseech thee, O LORD, take away the iniquity of thy servant; for I have done very foolishly. \nFor when David was up in the morning, the word of the LORD came unto the prophet Gad, David's seer, saying, \nGo and say unto David, Thus saith the LORD, I offer thee three things; choose thee one of them, that I may do it unto thee. \nSo Gad came to David, and told him, and said unto him, Shall seven years of famine come unto thee in thy land? or wilt thou flee three months before thine enemies, while they pursue thee? or that there be three days' pestilence in thy land? now advise, and see what answer I shall return to him that sent me. \nAnd David said unto Gad, I am in a great strait: let us fall now into the hand of the LORD; for his mercies are great: and let me not fall into the hand of man. \nSo the LORD sent a pestilence upon Israel from the morning even to the time appointed: and there died of the people from Dan even to Beersheba seventy thousand men. \nAnd when the angel stretched out his hand upon Jerusalem to destroy it, the LORD repented him of the evil, and said to the angel that destroyed the people, It is enough: stay now thine hand. And the angel of the LORD was by the threshingplace of Araunah the Jebusite. \nAnd David spake unto the LORD when he saw the angel that smote the people, and said, Lo, I have sinned, and I have done wickedly: but these sheep, what have they done? let thine hand, I pray thee, be against me, and against my father's house. \nAnd Gad came that day to David, and said unto him, Go up, rear an altar unto the LORD in the threshingfloor of Araunah the Jebusite. \nAnd David, according to the saying of Gad, went up as the LORD commanded. \nAnd Araunah looked, and saw the king and his servants coming on toward him: and Araunah went out, and bowed himself before the king on his face upon the ground. \nAnd Araunah said, Wherefore is my lord the king come to his servant? And David said, To buy the threshingfloor of thee, to build an altar unto the LORD, that the plague may be stayed from the people. \nAnd Araunah said unto David, Let my lord the king take and offer up what seemeth good unto him: behold, here be oxen for burnt sacrifice, and threshing instruments and other instruments of the oxen for wood. \nAll these things did Araunah, as a king, give unto the king. And Araunah said unto the king, The LORD thy God accept thee. \nAnd the king said unto Araunah, Nay; but I will surely buy it of thee at a price: neither will I offer burnt offerings unto the LORD my God of that which doth cost me nothing. So David bought the threshingfloor and the oxen for fifty shekels of silver. \nAnd David built there an altar unto the LORD, and offered burnt offerings and peace offerings. So the LORD was intreated for the land, and the plague was stayed from Israel. \nNow king David was old and stricken in years; and they covered him with clothes, but he gat no heat. \nWherefore his servants said unto him, Let there be sought for my lord the king a young virgin: and let her stand before the king, and let her cherish him, and let her lie in thy bosom, that my lord the king may get heat. \nSo they sought for a fair damsel throughout all the coasts of Israel, and found Abishag a Shunammite, and brought her to the king. \nAnd the damsel was very fair, and cherished the king, and ministered to him: but the king knew her not. \nThen Adonijah the son of Haggith exalted himself, saying, I will be king: and he prepared him chariots and horsemen, and fifty men to run before him. \nAnd his father had not displeased him at any time in saying, Why hast thou done so? and he also was a very goodly man; and his mother bare him after Absalom. \nAnd he conferred with Joab the son of Zeruiah, and with Abiathar the priest: and they following Adonijah helped him. \nBut Zadok the priest, and Benaiah the son of Jehoiada, and Nathan the prophet, and Shimei, and Rei, and the mighty men which belonged to David, were not with Adonijah. \nAnd Adonijah slew sheep and oxen and fat cattle by the stone of Zoheleth, which is by Enrogel, and called all his brethren the king's sons, and all the men of Judah the king's servants: \nBut Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother, he called not. \nWherefore Nathan spake unto Bathsheba the mother of Solomon, saying, Hast thou not heard that Adonijah the son of Haggith doth reign, and David our lord knoweth it not? \nNow therefore come, let me, I pray thee, give thee counsel, that thou mayest save thine own life, and the life of thy son Solomon. \nGo and get thee in unto king David, and say unto him, Didst not thou, my lord, O king, swear unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne? why then doth Adonijah reign? \nBehold, while thou yet talkest there with the king, I also will come in after thee, and confirm thy words. \nAnd Bathsheba went in unto the king into the chamber: and the king was very old; and Abishag the Shunammite ministered unto the king. \nAnd Bathsheba bowed, and did obeisance unto the king. And the king said, What wouldest thou? \nAnd she said unto him, My lord, thou swarest by the LORD thy God unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne. \nAnd now, behold, Adonijah reigneth; and now, my lord the king, thou knowest it not: \nAnd he hath slain oxen and fat cattle and sheep in abundance, and hath called all the sons of the king, and Abiathar the priest, and Joab the captain of the host: but Solomon thy servant hath he not called. \nAnd thou, my lord, O king, the eyes of all Israel are upon thee, that thou shouldest tell them who shall sit on the throne of my lord the king after him. \nOtherwise it shall come to pass, when my lord the king shall sleep with his fathers, that I and my son Solomon shall be counted offenders. \nAnd, lo, while she yet talked with the king, Nathan the prophet also came in. \nAnd they told the king, saying, Behold Nathan the prophet. And when he was come in before the king, he bowed himself before the king with his face to the ground. \nAnd Nathan said, My lord, O king, hast thou said, Adonijah shall reign after me, and he shall sit upon my throne? \nFor he is gone down this day, and hath slain oxen and fat cattle and sheep in abundance, and hath called all the king's sons, and the captains of the host, and Abiathar the priest; and, behold, they eat and drink before him, and say, God save king Adonijah. \nBut me, even me thy servant, and Zadok the priest, and Benaiah the son of Jehoiada, and thy servant Solomon, hath he not called. \nIs this thing done by my lord the king, and thou hast not shewed it unto thy servant, who should sit on the throne of my lord the king after him? \nThen king David answered and said, Call me Bathsheba. And she came into the king's presence, and stood before the king. \nAnd the king sware, and said, As the LORD liveth, that hath redeemed my soul out of all distress, \nEven as I sware unto thee by the LORD God of Israel, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne in my stead; even so will I certainly do this day. \nThen Bathsheba bowed with her face to the earth, and did reverence to the king, and said, Let my lord king David live for ever. \nAnd king David said, Call me Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada. And they came before the king. \nThe king also said unto them, Take with you the servants of your lord, and cause Solomon my son to ride upon mine own mule, and bring him down to Gihon: \nAnd let Zadok the priest and Nathan the prophet anoint him there king over Israel: and blow ye with the trumpet, and say, God save king Solomon. \nThen ye shall come up after him, that he may come and sit upon my throne; for he shall be king in my stead: and I have appointed him to be ruler over Israel and over Judah. \nAnd Benaiah the son of Jehoiada answered the king, and said, Amen: the LORD God of my lord the king say so too. \nAs the LORD hath been with my lord the king, even so be he with Solomon, and make his throne greater than the throne of my lord king David. \nSo Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, went down, and caused Solomon to ride upon king David's mule, and brought him to Gihon. \nAnd Zadok the priest took an horn of oil out of the tabernacle, and anointed Solomon. And they blew the trumpet; and all the people said, God save king Solomon. \nAnd all the people came up after him, and the people piped with pipes, and rejoiced with great joy, so that the earth rent with the sound of them. \nAnd Adonijah and all the guests that were with him heard it as they had made an end of eating. And when Joab heard the sound of the trumpet, he said, Wherefore is this noise of the city being in an uproar? \nAnd while he yet spake, behold, Jonathan the son of Abiathar the priest came; and Adonijah said unto him, Come in; for thou art a valiant man, and bringest good tidings. \nAnd Jonathan answered and said to Adonijah, Verily our lord king David hath made Solomon king. \nAnd the king hath sent with him Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, and they have caused him to ride upon the king's mule: \nAnd Zadok the priest and Nathan the prophet have anointed him king in Gihon: and they are come up from thence rejoicing, so that the city rang again. This is the noise that ye have heard. \nAnd also Solomon sitteth on the throne of the kingdom. \nAnd moreover the king's servants came to bless our lord king David, saying, God make the name of Solomon better than thy name, and make his throne greater than thy throne. And the king bowed himself upon the bed. \nAnd also thus said the king, Blessed be the LORD God of Israel, which hath given one to sit on my throne this day, mine eyes even seeing it. \nAnd all the guests that were with Adonijah were afraid, and rose up, and went every man his way. \nAnd Adonijah feared because of Solomon, and arose, and went, and caught hold on the horns of the altar. \nAnd it was told Solomon, saying, Behold, Adonijah feareth king Solomon: for, lo, he hath caught hold on the horns of the altar, saying, Let king Solomon swear unto me today that he will not slay his servant with the sword. \nAnd Solomon said, If he will shew himself a worthy man, there shall not an hair of him fall to the earth: but if wickedness shall be found in him, he shall die. \nSo king Solomon sent, and they brought him down from the altar. And he came and bowed himself to king Solomon: and Solomon said unto him, Go to thine house. \nNow the days of David drew nigh that he should die; and he charged Solomon his son, saying, \nI go the way of all the earth: be thou strong therefore, and shew thyself a man; \nAnd keep the charge of the LORD thy God, to walk in his ways, to keep his statutes, and his commandments, and his judgments, and his testimonies, as it is written in the law of Moses, that thou mayest prosper in all that thou doest, and whithersoever thou turnest thyself: \nThat the LORD may continue his word which he spake concerning me, saying, If thy children take heed to their way, to walk before me in truth with all their heart and with all their soul, there shall not fail thee (said he) a man on the throne of Israel. \nMoreover thou knowest also what Joab the son of Zeruiah did to me, and what he did to the two captains of the hosts of Israel, unto Abner the son of Ner, and unto Amasa the son of Jether, whom he slew, and shed the blood of war in peace, and put the blood of war upon his girdle that was about his loins, and in his shoes that were on his feet. \nDo therefore according to thy wisdom, and let not his hoar head go down to the grave in peace. \nBut shew kindness unto the sons of Barzillai the Gileadite, and let them be of those that eat at thy table: for so they came to me when I fled because of Absalom thy brother. \nAnd, behold, thou hast with thee Shimei the son of Gera, a Benjamite of Bahurim, which cursed me with a grievous curse in the day when I went to Mahanaim: but he came down to meet me at Jordan, and I sware to him by the LORD, saying, I will not put thee to death with the sword. \nNow therefore hold him not guiltless: for thou art a wise man, and knowest what thou oughtest to do unto him; but his hoar head bring thou down to the grave with blood. \nSo David slept with his fathers, and was buried in the city of David. \nAnd the days that David reigned over Israel were forty years: seven years reigned he in Hebron, and thirty and three years reigned he in Jerusalem. \nThen sat Solomon upon the throne of David his father; and his kingdom was established greatly. \nAnd Adonijah the son of Haggith came to Bathsheba the mother of Solomon. And she said, Comest thou peaceably? And he said, Peaceably. \nHe said moreover, I have somewhat to say unto thee. And she said, Say on. \nAnd he said, Thou knowest that the kingdom was mine, and that all Israel set their faces on me, that I should reign: howbeit the kingdom is turned about, and is become my brother's: for it was his from the LORD. \nAnd now I ask one petition of thee, deny me not. And she said unto him, Say on. \nAnd he said, Speak, I pray thee, unto Solomon the king, (for he will not say thee nay,) that he give me Abishag the Shunammite to wife. \nAnd Bathsheba said, Well; I will speak for thee unto the king. \nBathsheba therefore went unto king Solomon, to speak unto him for Adonijah. And the king rose up to meet her, and bowed himself unto her, and sat down on his throne, and caused a seat to be set for the king's mother; and she sat on his right hand. \nThen she said, I desire one small petition of thee; I pray thee, say me not nay. And the king said unto her, Ask on, my mother: for I will not say thee nay. \nAnd she said, Let Abishag the Shunammite be given to Adonijah thy brother to wife. \nAnd king Solomon answered and said unto his mother, And why dost thou ask Abishag the Shunammite for Adonijah? ask for him the kingdom also; for he is mine elder brother; even for him, and for Abiathar the priest, and for Joab the son of Zeruiah. \nThen king Solomon sware by the LORD, saying, God do so to me, and more also, if Adonijah have not spoken this word against his own life. \nNow therefore, as the LORD liveth, which hath established me, and set me on the throne of David my father, and who hath made me an house, as he promised, Adonijah shall be put to death this day. \nAnd king Solomon sent by the hand of Benaiah the son of Jehoiada; and he fell upon him that he died. \nAnd unto Abiathar the priest said the king, Get thee to Anathoth, unto thine own fields; for thou art worthy of death: but I will not at this time put thee to death, because thou barest the ark of the LORD God before David my father, and because thou hast been afflicted in all wherein my father was afflicted. \nSo Solomon thrust out Abiathar from being priest unto the LORD; that he might fulfil the word of the LORD, which he spake concerning the house of Eli in Shiloh. \nThen tidings came to Joab: for Joab had turned after Adonijah, though he turned not after Absalom. And Joab fled unto the tabernacle of the LORD, and caught hold on the horns of the altar. \nAnd it was told king Solomon that Joab was fled unto the tabernacle of the LORD; and, behold, he is by the altar. Then Solomon sent Benaiah the son of Jehoiada, saying, Go, fall upon him. \nAnd Benaiah came to the tabernacle of the LORD, and said unto him, Thus saith the king, Come forth. And he said, Nay; but I will die here. And Benaiah brought the king word again, saying, Thus said Joab, and thus he answered me. \nAnd the king said unto him, Do as he hath said, and fall upon him, and bury him; that thou mayest take away the innocent blood, which Joab shed, from me, and from the house of my father. \nAnd the LORD shall return his blood upon his own head, who fell upon two men more righteous and better than he, and slew them with the sword, my father David not knowing thereof, to wit, Abner the son of Ner, captain of the host of Israel, and Amasa the son of Jether, captain of the host of Judah. \nTheir blood shall therefore return upon the head of Joab, and upon the head of his seed for ever: but upon David, and upon his seed, and upon his house, and upon his throne, shall there be peace for ever from the LORD. \nSo Benaiah the son of Jehoiada went up, and fell upon him, and slew him: and he was buried in his own house in the wilderness. \nAnd the king put Benaiah the son of Jehoiada in his room over the host: and Zadok the priest did the king put in the room of Abiathar. \nAnd the king sent and called for Shimei, and said unto him, Build thee an house in Jerusalem, and dwell there, and go not forth thence any whither. \nFor it shall be, that on the day thou goest out, and passest over the brook Kidron, thou shalt know for certain that thou shalt surely die: thy blood shall be upon thine own head. \nAnd Shimei said unto the king, The saying is good: as my lord the king hath said, so will thy servant do. And Shimei dwelt in Jerusalem many days. \nAnd it came to pass at the end of three years, that two of the servants of Shimei ran away unto Achish son of Maachah king of Gath. And they told Shimei, saying, Behold, thy servants be in Gath. \nAnd Shimei arose, and saddled his ass, and went to Gath to Achish to seek his servants: and Shimei went, and brought his servants from Gath. \nAnd it was told Solomon that Shimei had gone from Jerusalem to Gath, and was come again. \nAnd the king sent and called for Shimei, and said unto him, Did I not make thee to swear by the LORD, and protested unto thee, saying, Know for a certain, on the day thou goest out, and walkest abroad any whither, that thou shalt surely die? and thou saidst unto me, The word that I have heard is good. \nWhy then hast thou not kept the oath of the LORD, and the commandment that I have charged thee with? \nThe king said moreover to Shimei, Thou knowest all the wickedness which thine heart is privy to, that thou didst to David my father: therefore the LORD shall return thy wickedness upon thine own head; \nAnd king Solomon shall be blessed, and the throne of David shall be established before the LORD for ever. \nSo the king commanded Benaiah the son of Jehoiada; which went out, and fell upon him, that he died. And the kingdom was established in the hand of Solomon. \nAnd Solomon made affinity with Pharaoh king of Egypt, and took Pharaoh's daughter, and brought her into the city of David, until he had made an end of building his own house, and the house of the LORD, and the wall of Jerusalem round about. \nOnly the people sacrificed in high places, because there was no house built unto the name of the LORD, until those days. \nAnd Solomon loved the LORD, walking in the statutes of David his father: only he sacrificed and burnt incense in high places. \nAnd the king went to Gibeon to sacrifice there; for that was the great high place: a thousand burnt offerings did Solomon offer upon that altar. \nIn Gibeon the LORD appeared to Solomon in a dream by night: and God said, Ask what I shall give thee. \nAnd Solomon said, Thou hast shewed unto thy servant David my father great mercy, according as he walked before thee in truth, and in righteousness, and in uprightness of heart with thee; and thou hast kept for him this great kindness, that thou hast given him a son to sit on his throne, as it is this day. \nAnd now, O LORD my God, thou hast made thy servant king instead of David my father: and I am but a little child: I know not how to go out or come in. \nAnd thy servant is in the midst of thy people which thou hast chosen, a great people, that cannot be numbered nor counted for multitude. \nGive therefore thy servant an understanding heart to judge thy people, that I may discern between good and bad: for who is able to judge this thy so great a people? \nAnd the speech pleased the LORD, that Solomon had asked this thing. \nAnd God said unto him, Because thou hast asked this thing, and hast not asked for thyself long life; neither hast asked riches for thyself, nor hast asked the life of thine enemies; but hast asked for thyself understanding to discern judgment; \nBehold, I have done according to thy words: lo, I have given thee a wise and an understanding heart; so that there was none like thee before thee, neither after thee shall any arise like unto thee. \nAnd I have also given thee that which thou hast not asked, both riches, and honour: so that there shall not be any among the kings like unto thee all thy days. \nAnd if thou wilt walk in my ways, to keep my statutes and my commandments, as thy father David did walk, then I will lengthen thy days. \nAnd Solomon awoke; and, behold, it was a dream. And he came to Jerusalem, and stood before the ark of the covenant of the LORD, and offered up burnt offerings, and offered peace offerings, and made a feast to all his servants. \nThen came there two women, that were harlots, unto the king, and stood before him. \nAnd the one woman said, O my lord, I and this woman dwell in one house; and I was delivered of a child with her in the house. \nAnd it came to pass the third day after that I was delivered, that this woman was delivered also: and we were together; there was no stranger with us in the house, save we two in the house. \nAnd this woman's child died in the night; because she overlaid it. \nAnd she arose at midnight, and took my son from beside me, while thine handmaid slept, and laid it in her bosom, and laid her dead child in my bosom. \nAnd when I rose in the morning to give my child suck, behold, it was dead: but when I had considered it in the morning, behold, it was not my son, which I did bear. \nAnd the other woman said, Nay; but the living is my son, and the dead is thy son. And this said, No; but the dead is thy son, and the living is my son. Thus they spake before the king. \nThen said the king, The one saith, This is my son that liveth, and thy son is the dead: and the other saith, Nay; but thy son is the dead, and my son is the living. \nAnd the king said, Bring me a sword. And they brought a sword before the king. \nAnd the king said, Divide the living child in two, and give half to the one, and half to the other. \nThen spake the woman whose the living child was unto the king, for her bowels yearned upon her son, and she said, O my lord, give her the living child, and in no wise slay it. But the other said, Let it be neither mine nor thine, but divide it. \nThen the king answered and said, Give her the living child, and in no wise slay it: she is the mother thereof. \nAnd all Israel heard of the judgment which the king had judged; and they feared the king: for they saw that the wisdom of God was in him, to do judgment. \nSo king Solomon was king over all Israel. \nAnd these were the princes which he had; Azariah the son of Zadok the priest, \nElihoreph and Ahiah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder. \nAnd Benaiah the son of Jehoiada was over the host: and Zadok and Abiathar were the priests: \nAnd Azariah the son of Nathan was over the officers: and Zabud the son of Nathan was principal officer, and the king's friend: \nAnd Ahishar was over the household: and Adoniram the son of Abda was over the tribute. \nAnd Solomon had twelve officers over all Israel, which provided victuals for the king and his household: each man his month in a year made provision. \nAnd these are their names: The son of Hur, in mount Ephraim: \nThe son of Dekar, in Makaz, and in Shaalbim, and Bethshemesh, and Elonbethhanan: \nThe son of Hesed, in Aruboth; to him pertained Sochoh, and all the land of Hepher: \nThe son of Abinadab, in all the region of Dor; which had Taphath the daughter of Solomon to wife: \nBaana the son of Ahilud; to him pertained Taanach and Megiddo, and all Bethshean, which is by Zartanah beneath Jezreel, from Bethshean to Abelmeholah, even unto the place that is beyond Jokneam: \nThe son of Geber, in Ramothgilead; to him pertained the towns of Jair the son of Manasseh, which are in Gilead; to him also pertained the region of Argob, which is in Bashan, threescore great cities with walls and brasen bars: \nAhinadab the son of Iddo had Mahanaim: \nAhimaaz was in Naphtali; he also took Basmath the daughter of Solomon to wife: \nBaanah the son of Hushai was in Asher and in Aloth: \nJehoshaphat the son of Paruah, in Issachar: \nShimei the son of Elah, in Benjamin: \nGeber the son of Uri was in the country of Gilead, in the country of Sihon king of the Amorites, and of Og king of Bashan; and he was the only officer which was in the land. \nJudah and Israel were many, as the sand which is by the sea in multitude, eating and drinking, and making merry. \nAnd Solomon reigned over all kingdoms from the river unto the land of the Philistines, and unto the border of Egypt: they brought presents, and served Solomon all the days of his life. \nAnd Solomon's provision for one day was thirty measures of fine flour, and threescore measures of meal, \nTen fat oxen, and twenty oxen out of the pastures, and an hundred sheep, beside harts, and roebucks, and fallowdeer, and fatted fowl. \nFor he had dominion over all the region on this side the river, from Tiphsah even to Azzah, over all the kings on this side the river: and he had peace on all sides round about him. \nAnd Judah and Israel dwelt safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon. \nAnd Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen. \nAnd those officers provided victual for king Solomon, and for all that came unto king Solomon's table, every man in his month: they lacked nothing. \nBarley also and straw for the horses and dromedaries brought they unto the place where the officers were, every man according to his charge. \nAnd God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore. \nAnd Solomon's wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt. \nFor he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about. \nAnd he spake three thousand proverbs: and his songs were a thousand and five. \nAnd he spake of trees, from the cedar tree that is in Lebanon even unto the hyssop that springeth out of the wall: he spake also of beasts, and of fowl, and of creeping things, and of fishes. \nAnd there came of all people to hear the wisdom of Solomon, from all kings of the earth, which had heard of his wisdom. \nAnd Hiram king of Tyre sent his servants unto Solomon; for he had heard that they had anointed him king in the room of his father: for Hiram was ever a lover of David. \nAnd Solomon sent to Hiram, saying, \nThou knowest how that David my father could not build an house unto the name of the LORD his God for the wars which were about him on every side, until the LORD put them under the soles of his feet. \nBut now the LORD my God hath given me rest on every side, so that there is neither adversary nor evil occurrent. \nAnd, behold, I purpose to build an house unto the name of the LORD my God, as the LORD spake unto David my father, saying, Thy son, whom I will set upon thy throne in thy room, he shall build an house unto my name. \nNow therefore command thou that they hew me cedar trees out of Lebanon; and my servants shall be with thy servants: and unto thee will I give hire for thy servants according to all that thou shalt appoint: for thou knowest that there is not among us any that can skill to hew timber like unto the Sidonians. \nAnd it came to pass, when Hiram heard the words of Solomon, that he rejoiced greatly, and said, Blessed be the LORD this day, which hath given unto David a wise son over this great people. \nAnd Hiram sent to Solomon, saying, I have considered the things which thou sentest to me for: and I will do all thy desire concerning timber of cedar, and concerning timber of fir. \nMy servants shall bring them down from Lebanon unto the sea: and I will convey them by sea in floats unto the place that thou shalt appoint me, and will cause them to be discharged there, and thou shalt receive them: and thou shalt accomplish my desire, in giving food for my household. \nSo Hiram gave Solomon cedar trees and fir trees according to all his desire. \nAnd Solomon gave Hiram twenty thousand measures of wheat for food to his household, and twenty measures of pure oil: thus gave Solomon to Hiram year by year. \nAnd the LORD gave Solomon wisdom, as he promised him: and there was peace between Hiram and Solomon; and they two made a league together. \nAnd king Solomon raised a levy out of all Israel; and the levy was thirty thousand men. \nAnd he sent them to Lebanon, ten thousand a month by courses: a month they were in Lebanon, and two months at home: and Adoniram was over the levy. \nAnd Solomon had threescore and ten thousand that bare burdens, and fourscore thousand hewers in the mountains; \nBeside the chief of Solomon's officers which were over the work, three thousand and three hundred, which ruled over the people that wrought in the work. \nAnd the king commanded, and they brought great stones, costly stones, and hewed stones, to lay the foundation of the house. \nAnd Solomon's builders and Hiram's builders did hew them, and the stonesquarers: so they prepared timber and stones to build the house. \nAnd it came to pass in the four hundred and eightieth year after the children of Israel were come out of the land of Egypt, in the fourth year of Solomon's reign over Israel, in the month Zif, which is the second month, that he began to build the house of the LORD. \nAnd the house which king Solomon built for the LORD, the length thereof was threescore cubits, and the breadth thereof twenty cubits, and the height thereof thirty cubits. \nAnd the porch before the temple of the house, twenty cubits was the length thereof, according to the breadth of the house; and ten cubits was the breadth thereof before the house. \nAnd for the house he made windows of narrow lights. \nAnd against the wall of the house he built chambers round about, against the walls of the house round about, both of the temple and of the oracle: and he made chambers round about: \nThe nethermost chamber was five cubits broad, and the middle was six cubits broad, and the third was seven cubits broad: for without in the wall of the house he made narrowed rests round about, that the beams should not be fastened in the walls of the house. \nAnd the house, when it was in building, was built of stone made ready before it was brought thither: so that there was neither hammer nor axe nor any tool of iron heard in the house, while it was in building. \nThe door for the middle chamber was in the right side of the house: and they went up with winding stairs into the middle chamber, and out of the middle into the third. \nSo he built the house, and finished it; and covered the house with beams and boards of cedar. \nAnd then he built chambers against all the house, five cubits high: and they rested on the house with timber of cedar. \nAnd the word of the LORD came to Solomon, saying, \nConcerning this house which thou art in building, if thou wilt walk in my statutes, and execute my judgments, and keep all my commandments to walk in them; then will I perform my word with thee, which I spake unto David thy father: \nAnd I will dwell among the children of Israel, and will not forsake my people Israel. \nSo Solomon built the house, and finished it. \nAnd he built the walls of the house within with boards of cedar, both the floor of the house, and the walls of the ceiling: and he covered them on the inside with wood, and covered the floor of the house with planks of fir. \nAnd he built twenty cubits on the sides of the house, both the floor and the walls with boards of cedar: he even built them for it within, even for the oracle, even for the most holy place. \nAnd the house, that is, the temple before it, was forty cubits long. \nAnd the cedar of the house within was carved with knops and open flowers: all was cedar; there was no stone seen. \nAnd the oracle he prepared in the house within, to set there the ark of the covenant of the LORD. \nAnd the oracle in the forepart was twenty cubits in length, and twenty cubits in breadth, and twenty cubits in the height thereof: and he overlaid it with pure gold; and so covered the altar which was of cedar. \nSo Solomon overlaid the house within with pure gold: and he made a partition by the chains of gold before the oracle; and he overlaid it with gold. \nAnd the whole house he overlaid with gold, until he had finished all the house: also the whole altar that was by the oracle he overlaid with gold. \nAnd within the oracle he made two cherubims of olive tree, each ten cubits high. \nAnd five cubits was the one wing of the cherub, and five cubits the other wing of the cherub: from the uttermost part of the one wing unto the uttermost part of the other were ten cubits. \nAnd the other cherub was ten cubits: both the cherubims were of one measure and one size. \nThe height of the one cherub was ten cubits, and so was it of the other cherub. \nAnd he set the cherubims within the inner house: and they stretched forth the wings of the cherubims, so that the wing of the one touched the one wall, and the wing of the other cherub touched the other wall; and their wings touched one another in the midst of the house. \nAnd he overlaid the cherubims with gold. \nAnd he carved all the walls of the house round about with carved figures of cherubims and palm trees and open flowers, within and without. \nAnd the floors of the house he overlaid with gold, within and without. \nAnd for the entering of the oracle he made doors of olive tree: the lintel and side posts were a fifth part of the wall. \nThe two doors also were of olive tree; and he carved upon them carvings of cherubims and palm trees and open flowers, and overlaid them with gold, and spread gold upon the cherubims, and upon the palm trees. \nSo also made he for the door of the temple posts of olive tree, a fourth part of the wall. \nAnd the two doors were of fir tree: the two leaves of the one door were folding, and the two leaves of the other door were folding. \nAnd he carved thereon cherubims and palm trees and open flowers: and covered them with gold fitted upon the carved work. \nAnd he built the inner court with three rows of hewed stone, and a row of cedar beams. \nIn the fourth year was the foundation of the house of the LORD laid, in the month Zif: \nAnd in the eleventh year, in the month Bul, which is the eighth month, was the house finished throughout all the parts thereof, and according to all the fashion of it. So was he seven years in building it. \nBut Solomon was building his own house thirteen years, and he finished all his house. \nHe built also the house of the forest of Lebanon; the length thereof was an hundred cubits, and the breadth thereof fifty cubits, and the height thereof thirty cubits, upon four rows of cedar pillars, with cedar beams upon the pillars. \nAnd it was covered with cedar above upon the beams, that lay on forty five pillars, fifteen in a row. \nAnd there were windows in three rows, and light was against light in three ranks. \nAnd all the doors and posts were square, with the windows: and light was against light in three ranks. \nAnd he made a porch of pillars; the length thereof was fifty cubits, and the breadth thereof thirty cubits: and the porch was before them: and the other pillars and the thick beam were before them. \nThen he made a porch for the throne where he might judge, even the porch of judgment: and it was covered with cedar from one side of the floor to the other. \nAnd his house where he dwelt had another court within the porch, which was of the like work. Solomon made also an house for Pharaoh's daughter, whom he had taken to wife, like unto this porch. \nAll these were of costly stones, according to the measures of hewed stones, sawed with saws, within and without, even from the foundation unto the coping, and so on the outside toward the great court. \nAnd the foundation was of costly stones, even great stones, stones of ten cubits, and stones of eight cubits. \nAnd above were costly stones, after the measures of hewed stones, and cedars. \nAnd the great court round about was with three rows of hewed stones, and a row of cedar beams, both for the inner court of the house of the LORD, and for the porch of the house. \nAnd king Solomon sent and fetched Hiram out of Tyre. \nHe was a widow's son of the tribe of Naphtali, and his father was a man of Tyre, a worker in brass: and he was filled with wisdom, and understanding, and cunning to work all works in brass. And he came to king Solomon, and wrought all his work. \nFor he cast two pillars of brass, of eighteen cubits high apiece: and a line of twelve cubits did compass either of them about. \nAnd he made two chapiters of molten brass, to set upon the tops of the pillars: the height of the one chapiter was five cubits, and the height of the other chapiter was five cubits: \nAnd nets of checker work, and wreaths of chain work, for the chapiters which were upon the top of the pillars; seven for the one chapiter, and seven for the other chapiter. \nAnd he made the pillars, and two rows round about upon the one network, to cover the chapiters that were upon the top, with pomegranates: and so did he for the other chapiter. \nAnd the chapiters that were upon the top of the pillars were of lily work in the porch, four cubits. \nAnd the chapiters upon the two pillars had pomegranates also above, over against the belly which was by the network: and the pomegranates were two hundred in rows round about upon the other chapiter. \nAnd he set up the pillars in the porch of the temple: and he set up the right pillar, and called the name thereof Jachin: and he set up the left pillar, and called the name thereof Boaz. \nAnd upon the top of the pillars was lily work: so was the work of the pillars finished. \nAnd he made a molten sea, ten cubits from the one brim to the other: it was round all about, and his height was five cubits: and a line of thirty cubits did compass it round about. \nAnd under the brim of it round about there were knops compassing it, ten in a cubit, compassing the sea round about: the knops were cast in two rows, when it was cast. \nIt stood upon twelve oxen, three looking toward the north, and three looking toward the west, and three looking toward the south, and three looking toward the east: and the sea was set above upon them, and all their hinder parts were inward. \nAnd it was an hand breadth thick, and the brim thereof was wrought like the brim of a cup, with flowers of lilies: it contained two thousand baths. \nAnd he made ten bases of brass; four cubits was the length of one base, and four cubits the breadth thereof, and three cubits the height of it. \nAnd the work of the bases was on this manner: they had borders, and the borders were between the ledges: \nAnd on the borders that were between the ledges were lions, oxen, and cherubims: and upon the ledges there was a base above: and beneath the lions and oxen were certain additions made of thin work. \nAnd every base had four brasen wheels, and plates of brass: and the four corners thereof had undersetters: under the laver were undersetters molten, at the side of every addition. \nAnd the mouth of it within the chapiter and above was a cubit: but the mouth thereof was round after the work of the base, a cubit and an half: and also upon the mouth of it were gravings with their borders, foursquare, not round. \nAnd under the borders were four wheels; and the axletrees of the wheels were joined to the base: and the height of a wheel was a cubit and half a cubit. \nAnd the work of the wheels was like the work of a chariot wheel: their axletrees, and their naves, and their felloes, and their spokes, were all molten. \nAnd there were four undersetters to the four corners of one base: and the undersetters were of the very base itself. \nAnd in the top of the base was there a round compass of half a cubit high: and on the top of the base the ledges thereof and the borders thereof were of the same. \nFor on the plates of the ledges thereof, and on the borders thereof, he graved cherubims, lions, and palm trees, according to the proportion of every one, and additions round about. \nAfter this manner he made the ten bases: all of them had one casting, one measure, and one size. \nThen made he ten lavers of brass: one laver contained forty baths: and every laver was four cubits: and upon every one of the ten bases one laver. \nAnd he put five bases on the right side of the house, and five on the left side of the house: and he set the sea on the right side of the house eastward over against the south. \nAnd Hiram made the lavers, and the shovels, and the basons. So Hiram made an end of doing all the work that he made king Solomon for the house of the LORD: \nThe two pillars, and the two bowls of the chapiters that were on the top of the two pillars; and the two networks, to cover the two bowls of the chapiters which were upon the top of the pillars; \nAnd four hundred pomegranates for the two networks, even two rows of pomegranates for one network, to cover the two bowls of the chapiters that were upon the pillars; \nAnd the ten bases, and ten lavers on the bases; \nAnd one sea, and twelve oxen under the sea; \nAnd the pots, and the shovels, and the basons: and all these vessels, which Hiram made to king Solomon for the house of the LORD, were of bright brass. \nIn the plain of Jordan did the king cast them, in the clay ground between Succoth and Zarthan. \nAnd Solomon left all the vessels unweighed, because they were exceeding many: neither was the weight of the brass found out. \nAnd Solomon made all the vessels that pertained unto the house of the LORD: the altar of gold, and the table of gold, whereupon the shewbread was, \nAnd the candlesticks of pure gold, five on the right side, and five on the left, before the oracle, with the flowers, and the lamps, and the tongs of gold, \nAnd the bowls, and the snuffers, and the basons, and the spoons, and the censers of pure gold; and the hinges of gold, both for the doors of the inner house, the most holy place, and for the doors of the house, to wit, of the temple. \nSo was ended all the work that king Solomon made for the house of the LORD. And Solomon brought in the things which David his father had dedicated; even the silver, and the gold, and the vessels, did he put among the treasures of the house of the LORD. \nThen Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers of the children of Israel, unto king Solomon in Jerusalem, that they might bring up the ark of the covenant of the LORD out of the city of David, which is Zion. \nAnd all the men of Israel assembled themselves unto king Solomon at the feast in the month Ethanim, which is the seventh month. \nAnd all the elders of Israel came, and the priests took up the ark. \nAnd they brought up the ark of the LORD, and the tabernacle of the congregation, and all the holy vessels that were in the tabernacle, even those did the priests and the Levites bring up. \nAnd king Solomon, and all the congregation of Israel, that were assembled unto him, were with him before the ark, sacrificing sheep and oxen, that could not be told nor numbered for multitude. \nAnd the priests brought in the ark of the covenant of the LORD unto his place, into the oracle of the house, to the most holy place, even under the wings of the cherubims. \nFor the cherubims spread forth their two wings over the place of the ark, and the cherubims covered the ark and the staves thereof above. \nAnd they drew out the staves, that the ends of the staves were seen out in the holy place before the oracle, and they were not seen without: and there they are unto this day. \nThere was nothing in the ark save the two tables of stone, which Moses put there at Horeb, when the LORD made a covenant with the children of Israel, when they came out of the land of Egypt. \nAnd it came to pass, when the priests were come out of the holy place, that the cloud filled the house of the LORD, \nSo that the priests could not stand to minister because of the cloud: for the glory of the LORD had filled the house of the LORD. \nThen spake Solomon, The LORD said that he would dwell in the thick darkness. \nI have surely built thee an house to dwell in, a settled place for thee to abide in for ever. \nAnd the king turned his face about, and blessed all the congregation of Israel: (and all the congregation of Israel stood;) \nAnd he said, Blessed be the LORD God of Israel, which spake with his mouth unto David my father, and hath with his hand fulfilled it, saying, \nSince the day that I brought forth my people Israel out of Egypt, I chose no city out of all the tribes of Israel to build an house, that my name might be therein; but I chose David to be over my people Israel. \nAnd it was in the heart of David my father to build an house for the name of the LORD God of Israel. \nAnd the LORD said unto David my father, Whereas it was in thine heart to build an house unto my name, thou didst well that it was in thine heart. \nNevertheless thou shalt not build the house; but thy son that shall come forth out of thy loins, he shall build the house unto my name. \nAnd the LORD hath performed his word that he spake, and I am risen up in the room of David my father, and sit on the throne of Israel, as the LORD promised, and have built an house for the name of the LORD God of Israel. \nAnd I have set there a place for the ark, wherein is the covenant of the LORD, which he made with our fathers, when he brought them out of the land of Egypt. \nAnd Solomon stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands toward heaven: \nAnd he said, LORD God of Israel, there is no God like thee, in heaven above, or on earth beneath, who keepest covenant and mercy with thy servants that walk before thee with all their heart: \nWho hast kept with thy servant David my father that thou promisedst him: thou spakest also with thy mouth, and hast fulfilled it with thine hand, as it is this day. \nTherefore now, LORD God of Israel, keep with thy servant David my father that thou promisedst him, saying, There shall not fail thee a man in my sight to sit on the throne of Israel; so that thy children take heed to their way, that they walk before me as thou hast walked before me. \nAnd now, O God of Israel, let thy word, I pray thee, be verified, which thou spakest unto thy servant David my father. \nBut will God indeed dwell on the earth? behold, the heaven and heaven of heavens cannot contain thee; how much less this house that I have builded? \nYet have thou respect unto the prayer of thy servant, and to his supplication, O LORD my God, to hearken unto the cry and to the prayer, which thy servant prayeth before thee to day: \nThat thine eyes may be open toward this house night and day, even toward the place of which thou hast said, My name shall be there: that thou mayest hearken unto the prayer which thy servant shall make toward this place. \nAnd hearken thou to the supplication of thy servant, and of thy people Israel, when they shall pray toward this place: and hear thou in heaven thy dwelling place: and when thou hearest, forgive. \nIf any man trespass against his neighbour, and an oath be laid upon him to cause him to swear, and the oath come before thine altar in this house: \nThen hear thou in heaven, and do, and judge thy servants, condemning the wicked, to bring his way upon his head; and justifying the righteous, to give him according to his righteousness. \nWhen thy people Israel be smitten down before the enemy, because they have sinned against thee, and shall turn again to thee, and confess thy name, and pray, and make supplication unto thee in this house: \nThen hear thou in heaven, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest unto their fathers. \nWhen heaven is shut up, and there is no rain, because they have sinned against thee; if they pray toward this place, and confess thy name, and turn from their sin, when thou afflictest them: \nThen hear thou in heaven, and forgive the sin of thy servants, and of thy people Israel, that thou teach them the good way wherein they should walk, and give rain upon thy land, which thou hast given to thy people for an inheritance. \nIf there be in the land famine, if there be pestilence, blasting, mildew, locust, or if there be caterpiller; if their enemy besiege them in the land of their cities; whatsoever plague, whatsoever sickness there be; \nWhat prayer and supplication soever be made by any man, or by all thy people Israel, which shall know every man the plague of his own heart, and spread forth his hands toward this house: \nThen hear thou in heaven thy dwelling place, and forgive, and do, and give to every man according to his ways, whose heart thou knowest; (for thou, even thou only, knowest the hearts of all the children of men;) \nThat they may fear thee all the days that they live in the land which thou gavest unto our fathers. \nMoreover concerning a stranger, that is not of thy people Israel, but cometh out of a far country for thy name's sake; \n(For they shall hear of thy great name, and of thy strong hand, and of thy stretched out arm;) when he shall come and pray toward this house; \nHear thou in heaven thy dwelling place, and do according to all that the stranger calleth to thee for: that all people of the earth may know thy name, to fear thee, as do thy people Israel; and that they may know that this house, which I have builded, is called by thy name. \nIf thy people go out to battle against their enemy, whithersoever thou shalt send them, and shall pray unto the LORD toward the city which thou hast chosen, and toward the house that I have built for thy name: \nThen hear thou in heaven their prayer and their supplication, and maintain their cause. \nIf they sin against thee, (for there is no man that sinneth not,) and thou be angry with them, and deliver them to the enemy, so that they carry them away captives unto the land of the enemy, far or near; \nYet if they shall bethink themselves in the land whither they were carried captives, and repent, and make supplication unto thee in the land of them that carried them captives, saying, We have sinned, and have done perversely, we have committed wickedness; \nAnd so return unto thee with all their heart, and with all their soul, in the land of their enemies, which led them away captive, and pray unto thee toward their land, which thou gavest unto their fathers, the city which thou hast chosen, and the house which I have built for thy name: \nThen hear thou their prayer and their supplication in heaven thy dwelling place, and maintain their cause, \nAnd forgive thy people that have sinned against thee, and all their transgressions wherein they have transgressed against thee, and give them compassion before them who carried them captive, that they may have compassion on them: \nFor they be thy people, and thine inheritance, which thou broughtest forth out of Egypt, from the midst of the furnace of iron: \nThat thine eyes may be open unto the supplication of thy servant, and unto the supplication of thy people Israel, to hearken unto them in all that they call for unto thee. \nFor thou didst separate them from among all the people of the earth, to be thine inheritance, as thou spakest by the hand of Moses thy servant, when thou broughtest our fathers out of Egypt, O LORD God. \nAnd it was so, that when Solomon had made an end of praying all this prayer and supplication unto the LORD, he arose from before the altar of the LORD, from kneeling on his knees with his hands spread up to heaven. \nAnd he stood, and blessed all the congregation of Israel with a loud voice, saying, \nBlessed be the LORD, that hath given rest unto his people Israel, according to all that he promised: there hath not failed one word of all his good promise, which he promised by the hand of Moses his servant. \nThe LORD our God be with us, as he was with our fathers: let him not leave us, nor forsake us: \nThat he may incline our hearts unto him, to walk in all his ways, and to keep his commandments, and his statutes, and his judgments, which he commanded our fathers. \nAnd let these my words, wherewith I have made supplication before the LORD, be nigh unto the LORD our God day and night, that he maintain the cause of his servant, and the cause of his people Israel at all times, as the matter shall require: \nThat all the people of the earth may know that the LORD is God, and that there is none else. \nLet your heart therefore be perfect with the LORD our God, to walk in his statutes, and to keep his commandments, as at this day. \nAnd the king, and all Israel with him, offered sacrifice before the LORD. \nAnd Solomon offered a sacrifice of peace offerings, which he offered unto the LORD, two and twenty thousand oxen, and an hundred and twenty thousand sheep. So the king and all the children of Israel dedicated the house of the LORD. \nThe same day did the king hallow the middle of the court that was before the house of the LORD: for there he offered burnt offerings, and meat offerings, and the fat of the peace offerings: because the brasen altar that was before the LORD was too little to receive the burnt offerings, and meat offerings, and the fat of the peace offerings. \nAnd at that time Solomon held a feast, and all Israel with him, a great congregation, from the entering in of Hamath unto the river of Egypt, before the LORD our God, seven days and seven days, even fourteen days. \nOn the eighth day he sent the people away: and they blessed the king, and went unto their tents joyful and glad of heart for all the goodness that the LORD had done for David his servant, and for Israel his people. \nAnd it came to pass, when Solomon had finished the building of the house of the LORD, and the king's house, and all Solomon's desire which he was pleased to do, \nThat the LORD appeared to Solomon the second time, as he had appeared unto him at Gibeon. \nAnd the LORD said unto him, I have heard thy prayer and thy supplication, that thou hast made before me: I have hallowed this house, which thou hast built, to put my name there for ever; and mine eyes and mine heart shall be there perpetually. \nAnd if thou wilt walk before me, as David thy father walked, in integrity of heart, and in uprightness, to do according to all that I have commanded thee, and wilt keep my statutes and my judgments: \nThen I will establish the throne of thy kingdom upon Israel for ever, as I promised to David thy father, saying, There shall not fail thee a man upon the throne of Israel. \nBut if ye shall at all turn from following me, ye or your children, and will not keep my commandments and my statutes which I have set before you, but go and serve other gods, and worship them: \nThen will I cut off Israel out of the land which I have given them; and this house, which I have hallowed for my name, will I cast out of my sight; and Israel shall be a proverb and a byword among all people: \nAnd at this house, which is high, every one that passeth by it shall be astonished, and shall hiss; and they shall say, Why hath the LORD done thus unto this land, and to this house? \nAnd they shall answer, Because they forsook the LORD their God, who brought forth their fathers out of the land of Egypt, and have taken hold upon other gods, and have worshipped them, and served them: therefore hath the LORD brought upon them all this evil. \nAnd it came to pass at the end of twenty years, when Solomon had built the two houses, the house of the LORD, and the king's house, \n(Now Hiram the king of Tyre had furnished Solomon with cedar trees and fir trees, and with gold, according to all his desire,) that then king Solomon gave Hiram twenty cities in the land of Galilee. \nAnd Hiram came out from Tyre to see the cities which Solomon had given him; and they pleased him not. \nAnd he said, What cities are these which thou hast given me, my brother? And he called them the land of Cabul unto this day. \nAnd Hiram sent to the king sixscore talents of gold. \nAnd this is the reason of the levy which king Solomon raised; for to build the house of the LORD, and his own house, and Millo, and the wall of Jerusalem, and Hazor, and Megiddo, and Gezer. \nFor Pharaoh king of Egypt had gone up, and taken Gezer, and burnt it with fire, and slain the Canaanites that dwelt in the city, and given it for a present unto his daughter, Solomon's wife. \nAnd Solomon built Gezer, and Bethhoron the nether, \nAnd Baalath, and Tadmor in the wilderness, in the land, \nAnd all the cities of store that Solomon had, and cities for his chariots, and cities for his horsemen, and that which Solomon desired to build in Jerusalem, and in Lebanon, and in all the land of his dominion. \nAnd all the people that were left of the Amorites, Hittites, Perizzites, Hivites, and Jebusites, which were not of the children of Israel, \nTheir children that were left after them in the land, whom the children of Israel also were not able utterly to destroy, upon those did Solomon levy a tribute of bondservice unto this day. \nBut of the children of Israel did Solomon make no bondmen: but they were men of war, and his servants, and his princes, and his captains, and rulers of his chariots, and his horsemen. \nThese were the chief of the officers that were over Solomon's work, five hundred and fifty, which bare rule over the people that wrought in the work. \nBut Pharaoh's daughter came up out of the city of David unto her house which Solomon had built for her: then did he build Millo. \nAnd three times in a year did Solomon offer burnt offerings and peace offerings upon the altar which he built unto the LORD, and he burnt incense upon the altar that was before the LORD. So he finished the house. \nAnd king Solomon made a navy of ships in Eziongeber, which is beside Eloth, on the shore of the Red sea, in the land of Edom. \nAnd Hiram sent in the navy his servants, shipmen that had knowledge of the sea, with the servants of Solomon. \nAnd they came to Ophir, and fetched from thence gold, four hundred and twenty talents, and brought it to king Solomon. \nAnd when the queen of Sheba heard of the fame of Solomon concerning the name of the LORD, she came to prove him with hard questions. \nAnd she came to Jerusalem with a very great train, with camels that bare spices, and very much gold, and precious stones: and when she was come to Solomon, she communed with him of all that was in her heart. \nAnd Solomon told her all her questions: there was not any thing hid from the king, which he told her not. \nAnd when the queen of Sheba had seen all Solomon's wisdom, and the house that he had built, \nAnd the meat of his table, and the sitting of his servants, and the attendance of his ministers, and their apparel, and his cupbearers, and his ascent by which he went up unto the house of the LORD; there was no more spirit in her. \nAnd she said to the king, It was a true report that I heard in mine own land of thy acts and of thy wisdom. \nHowbeit I believed not the words, until I came, and mine eyes had seen it: and, behold, the half was not told me: thy wisdom and prosperity exceedeth the fame which I heard. \nHappy are thy men, happy are these thy servants, which stand continually before thee, and that hear thy wisdom. \nBlessed be the LORD thy God, which delighted in thee, to set thee on the throne of Israel: because the LORD loved Israel for ever, therefore made he thee king, to do judgment and justice. \nAnd she gave the king an hundred and twenty talents of gold, and of spices very great store, and precious stones: there came no more such abundance of spices as these which the queen of Sheba gave to king Solomon. \nAnd the navy also of Hiram, that brought gold from Ophir, brought in from Ophir great plenty of almug trees, and precious stones. \nAnd the king made of the almug trees pillars for the house of the LORD, and for the king's house, harps also and psalteries for singers: there came no such almug trees, nor were seen unto this day. \nAnd king Solomon gave unto the queen of Sheba all her desire, whatsoever she asked, beside that which Solomon gave her of his royal bounty. So she turned and went to her own country, she and her servants. \nNow the weight of gold that came to Solomon in one year was six hundred threescore and six talents of gold, \nBeside that he had of the merchantmen, and of the traffick of the spice merchants, and of all the kings of Arabia, and of the governors of the country. \nAnd king Solomon made two hundred targets of beaten gold: six hundred shekels of gold went to one target. \nAnd he made three hundred shields of beaten gold; three pound of gold went to one shield: and the king put them in the house of the forest of Lebanon. \nMoreover the king made a great throne of ivory, and overlaid it with the best gold. \nThe throne had six steps, and the top of the throne was round behind: and there were stays on either side on the place of the seat, and two lions stood beside the stays. \nAnd twelve lions stood there on the one side and on the other upon the six steps: there was not the like made in any kingdom. \nAnd all king Solomon's drinking vessels were of gold, and all the vessels of the house of the forest of Lebanon were of pure gold; none were of silver: it was nothing accounted of in the days of Solomon. \nFor the king had at sea a navy of Tharshish with the navy of Hiram: once in three years came the navy of Tharshish, bringing gold, and silver, ivory, and apes, and peacocks. \nSo king Solomon exceeded all the kings of the earth for riches and for wisdom. \nAnd all the earth sought to Solomon, to hear his wisdom, which God had put in his heart. \nAnd they brought every man his present, vessels of silver, and vessels of gold, and garments, and armour, and spices, horses, and mules, a rate year by year. \nAnd Solomon gathered together chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, whom he bestowed in the cities for chariots, and with the king at Jerusalem. \nAnd the king made silver to be in Jerusalem as stones, and cedars made he to be as the sycomore trees that are in the vale, for abundance. \nAnd Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price. \nAnd a chariot came up and went out of Egypt for six hundred shekels of silver, and an horse for an hundred and fifty: and so for all the kings of the Hittites, and for the kings of Syria, did they bring them out by their means. \nBut king Solomon loved many strange women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites, Zidonians, and Hittites: \nOf the nations concerning which the LORD said unto the children of Israel, Ye shall not go in to them, neither shall they come in unto you: for surely they will turn away your heart after their gods: Solomon clave unto these in love. \nAnd he had seven hundred wives, princesses, and three hundred concubines: and his wives turned away his heart. \nFor it came to pass, when Solomon was old, that his wives turned away his heart after other gods: and his heart was not perfect with the LORD his God, as was the heart of David his father. \nFor Solomon went after Ashtoreth the goddess of the Zidonians, and after Milcom the abomination of the Ammonites. \nAnd Solomon did evil in the sight of the LORD, and went not fully after the LORD, as did David his father. \nThen did Solomon build an high place for Chemosh, the abomination of Moab, in the hill that is before Jerusalem, and for Molech, the abomination of the children of Ammon. \nAnd likewise did he for all his strange wives, which burnt incense and sacrificed unto their gods. \nAnd the LORD was angry with Solomon, because his heart was turned from the LORD God of Israel, which had appeared unto him twice, \nAnd had commanded him concerning this thing, that he should not go after other gods: but he kept not that which the LORD commanded. \nWherefore the LORD said unto Solomon, Forasmuch as this is done of thee, and thou hast not kept my covenant and my statutes, which I have commanded thee, I will surely rend the kingdom from thee, and will give it to thy servant. \nNotwithstanding in thy days I will not do it for David thy father's sake: but I will rend it out of the hand of thy son. \nHowbeit I will not rend away all the kingdom; but will give one tribe to thy son for David my servant's sake, and for Jerusalem's sake which I have chosen. \nAnd the LORD stirred up an adversary unto Solomon, Hadad the Edomite: he was of the king's seed in Edom. \nFor it came to pass, when David was in Edom, and Joab the captain of the host was gone up to bury the slain, after he had smitten every male in Edom; \n(For six months did Joab remain there with all Israel, until he had cut off every male in Edom:) \nThat Hadad fled, he and certain Edomites of his father's servants with him, to go into Egypt; Hadad being yet a little child. \nAnd they arose out of Midian, and came to Paran: and they took men with them out of Paran, and they came to Egypt, unto Pharaoh king of Egypt; which gave him an house, and appointed him victuals, and gave him land. \nAnd Hadad found great favour in the sight of Pharaoh, so that he gave him to wife the sister of his own wife, the sister of Tahpenes the queen. \nAnd the sister of Tahpenes bare him Genubath his son, whom Tahpenes weaned in Pharaoh's house: and Genubath was in Pharaoh's household among the sons of Pharaoh. \nAnd when Hadad heard in Egypt that David slept with his fathers, and that Joab the captain of the host was dead, Hadad said to Pharaoh, Let me depart, that I may go to mine own country. \nThen Pharaoh said unto him, But what hast thou lacked with me, that, behold, thou seekest to go to thine own country? And he answered, Nothing: howbeit let me go in any wise. \nAnd God stirred him up another adversary, Rezon the son of Eliadah, which fled from his lord Hadadezer king of Zobah: \nAnd he gathered men unto him, and became captain over a band, when David slew them of Zobah: and they went to Damascus, and dwelt therein, and reigned in Damascus. \nAnd he was an adversary to Israel all the days of Solomon, beside the mischief that Hadad did: and he abhorred Israel, and reigned over Syria. \nAnd Jeroboam the son of Nebat, an Ephrathite of Zereda, Solomon's servant, whose mother's name was Zeruah, a widow woman, even he lifted up his hand against the king. \nAnd this was the cause that he lifted up his hand against the king: Solomon built Millo, and repaired the breaches of the city of David his father. \nAnd the man Jeroboam was a mighty man of valour: and Solomon seeing the young man that he was industrious, he made him ruler over all the charge of the house of Joseph. \nAnd it came to pass at that time when Jeroboam went out of Jerusalem, that the prophet Ahijah the Shilonite found him in the way; and he had clad himself with a new garment; and they two were alone in the field: \nAnd Ahijah caught the new garment that was on him, and rent it in twelve pieces: \nAnd he said to Jeroboam, Take thee ten pieces: for thus saith the LORD, the God of Israel, Behold, I will rend the kingdom out of the hand of Solomon, and will give ten tribes to thee: \n(But he shall have one tribe for my servant David's sake, and for Jerusalem's sake, the city which I have chosen out of all the tribes of Israel:) \nBecause that they have forsaken me, and have worshipped Ashtoreth the goddess of the Zidonians, Chemosh the god of the Moabites, and Milcom the god of the children of Ammon, and have not walked in my ways, to do that which is right in mine eyes, and to keep my statutes and my judgments, as did David his father. \nHowbeit I will not take the whole kingdom out of his hand: but I will make him prince all the days of his life for David my servant's sake, whom I chose, because he kept my commandments and my statutes: \nBut I will take the kingdom out of his son's hand, and will give it unto thee, even ten tribes. \nAnd unto his son will I give one tribe, that David my servant may have a light alway before me in Jerusalem, the city which I have chosen me to put my name there. \nAnd I will take thee, and thou shalt reign according to all that thy soul desireth, and shalt be king over Israel. \nAnd it shall be, if thou wilt hearken unto all that I command thee, and wilt walk in my ways, and do that is right in my sight, to keep my statutes and my commandments, as David my servant did; that I will be with thee, and build thee a sure house, as I built for David, and will give Israel unto thee. \nAnd I will for this afflict the seed of David, but not for ever. \nSolomon sought therefore to kill Jeroboam. And Jeroboam arose, and fled into Egypt, unto Shishak king of Egypt, and was in Egypt until the death of Solomon. \nAnd the rest of the acts of Solomon, and all that he did, and his wisdom, are they not written in the book of the acts of Solomon? \nAnd the time that Solomon reigned in Jerusalem over all Israel was forty years. \nAnd Solomon slept with his fathers, and was buried in the city of David his father: and Rehoboam his son reigned in his stead. \nAnd Rehoboam went to Shechem: for all Israel were come to Shechem to make him king. \nAnd it came to pass, when Jeroboam the son of Nebat, who was yet in Egypt, heard of it, (for he was fled from the presence of king Solomon, and Jeroboam dwelt in Egypt;) \nThat they sent and called him. And Jeroboam and all the congregation of Israel came, and spake unto Rehoboam, saying, \nThy father made our yoke grievous: now therefore make thou the grievous service of thy father, and his heavy yoke which he put upon us, lighter, and we will serve thee. \nAnd he said unto them, Depart yet for three days, then come again to me. And the people departed. \nAnd king Rehoboam consulted with the old men, that stood before Solomon his father while he yet lived, and said, How do ye advise that I may answer this people? \nAnd they spake unto him, saying, If thou wilt be a servant unto this people this day, and wilt serve them, and answer them, and speak good words to them, then they will be thy servants for ever. \nBut he forsook the counsel of the old men, which they had given him, and consulted with the young men that were grown up with him, and which stood before him: \nAnd he said unto them, What counsel give ye that we may answer this people, who have spoken to me, saying, Make the yoke which thy father did put upon us lighter? \nAnd the young men that were grown up with him spake unto him, saying, Thus shalt thou speak unto this people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it lighter unto us; thus shalt thou say unto them, My little finger shall be thicker than my father's loins. \nAnd now whereas my father did lade you with a heavy yoke, I will add to your yoke: my father hath chastised you with whips, but I will chastise you with scorpions. \nSo Jeroboam and all the people came to Rehoboam the third day, as the king had appointed, saying, Come to me again the third day. \nAnd the king answered the people roughly, and forsook the old men's counsel that they gave him; \nAnd spake to them after the counsel of the young men, saying, My father made your yoke heavy, and I will add to your yoke: my father also chastised you with whips, but I will chastise you with scorpions. \nWherefore the king hearkened not unto the people; for the cause was from the LORD, that he might perform his saying, which the LORD spake by Ahijah the Shilonite unto Jeroboam the son of Nebat. \nSo when all Israel saw that the king hearkened not unto them, the people answered the king, saying, What portion have we in David? neither have we inheritance in the son of Jesse: to your tents, O Israel: now see to thine own house, David. So Israel departed unto their tents. \nBut as for the children of Israel which dwelt in the cities of Judah, Rehoboam reigned over them. \nThen king Rehoboam sent Adoram, who was over the tribute; and all Israel stoned him with stones, that he died. Therefore king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem. \nSo Israel rebelled against the house of David unto this day. \nAnd it came to pass, when all Israel heard that Jeroboam was come again, that they sent and called him unto the congregation, and made him king over all Israel: there was none that followed the house of David, but the tribe of Judah only. \nAnd when Rehoboam was come to Jerusalem, he assembled all the house of Judah, with the tribe of Benjamin, an hundred and fourscore thousand chosen men, which were warriors, to fight against the house of Israel, to bring the kingdom again to Rehoboam the son of Solomon. \nBut the word of God came unto Shemaiah the man of God, saying, \nSpeak unto Rehoboam, the son of Solomon, king of Judah, and unto all the house of Judah and Benjamin, and to the remnant of the people, saying, \nThus saith the LORD, Ye shall not go up, nor fight against your brethren the children of Israel: return every man to his house; for this thing is from me. They hearkened therefore to the word of the LORD, and returned to depart, according to the word of the LORD. \nThen Jeroboam built Shechem in mount Ephraim, and dwelt therein; and went out from thence, and built Penuel. \nAnd Jeroboam said in his heart, Now shall the kingdom return to the house of David: \nIf this people go up to do sacrifice in the house of the LORD at Jerusalem, then shall the heart of this people turn again unto their lord, even unto Rehoboam king of Judah, and they shall kill me, and go again to Rehoboam king of Judah. \nWhereupon the king took counsel, and made two calves of gold, and said unto them, It is too much for you to go up to Jerusalem: behold thy gods, O Israel, which brought thee up out of the land of Egypt. \nAnd he set the one in Bethel, and the other put he in Dan. \nAnd this thing became a sin: for the people went to worship before the one, even unto Dan. \nAnd he made an house of high places, and made priests of the lowest of the people, which were not of the sons of Levi. \nAnd Jeroboam ordained a feast in the eighth month, on the fifteenth day of the month, like unto the feast that is in Judah, and he offered upon the altar. So did he in Bethel, sacrificing unto the calves that he had made: and he placed in Bethel the priests of the high places which he had made. \nSo he offered upon the altar which he had made in Bethel the fifteenth day of the eighth month, even in the month which he had devised of his own heart; and ordained a feast unto the children of Israel: and he offered upon the altar, and burnt incense. \nAnd, behold, there came a man of God out of Judah by the word of the LORD unto Bethel: and Jeroboam stood by the altar to burn incense. \nAnd he cried against the altar in the word of the LORD, and said, O altar, altar, thus saith the LORD; Behold, a child shall be born unto the house of David, Josiah by name; and upon thee shall he offer the priests of the high places that burn incense upon thee, and men's bones shall be burnt upon thee. \nAnd he gave a sign the same day, saying, This is the sign which the LORD hath spoken; Behold, the altar shall be rent, and the ashes that are upon it shall be poured out. \nAnd it came to pass, when king Jeroboam heard the saying of the man of God, which had cried against the altar in Bethel, that he put forth his hand from the altar, saying, Lay hold on him. And his hand, which he put forth against him, dried up, so that he could not pull it in again to him. \nThe altar also was rent, and the ashes poured out from the altar, according to the sign which the man of God had given by the word of the LORD. \nAnd the king answered and said unto the man of God, Intreat now the face of the LORD thy God, and pray for me, that my hand may be restored me again. And the man of God besought the LORD, and the king's hand was restored him again, and became as it was before. \nAnd the king said unto the man of God, Come home with me, and refresh thyself, and I will give thee a reward. \nAnd the man of God said unto the king, If thou wilt give me half thine house, I will not go in with thee, neither will I eat bread nor drink water in this place: \nFor so was it charged me by the word of the LORD, saying, Eat no bread, nor drink water, nor turn again by the same way that thou camest. \nSo he went another way, and returned not by the way that he came to Bethel. \nNow there dwelt an old prophet in Bethel; and his sons came and told him all the works that the man of God had done that day in Bethel: the words which he had spoken unto the king, them they told also to their father. \nAnd their father said unto them, What way went he? For his sons had seen what way the man of God went, which came from Judah. \nAnd he said unto his sons, Saddle me the ass. So they saddled him the ass: and he rode thereon, \nAnd went after the man of God, and found him sitting under an oak: and he said unto him, Art thou the man of God that camest from Judah? And he said, I am. \nThen he said unto him, Come home with me, and eat bread. \nAnd he said, I may not return with thee, nor go in with thee: neither will I eat bread nor drink water with thee in this place: \nFor it was said to me by the word of the LORD, Thou shalt eat no bread nor drink water there, nor turn again to go by the way that thou camest. \nHe said unto him, I am a prophet also as thou art; and an angel spake unto me by the word of the LORD, saying, Bring him back with thee into thine house, that he may eat bread and drink water. But he lied unto him. \nSo he went back with him, and did eat bread in his house, and drank water. \nAnd it came to pass, as they sat at the table, that the word of the LORD came unto the prophet that brought him back: \nAnd he cried unto the man of God that came from Judah, saying, Thus saith the LORD, Forasmuch as thou hast disobeyed the mouth of the LORD, and hast not kept the commandment which the LORD thy God commanded thee, \nBut camest back, and hast eaten bread and drunk water in the place, of the which the Lord did say to thee, Eat no bread, and drink no water; thy carcase shall not come unto the sepulchre of thy fathers. \nAnd it came to pass, after he had eaten bread, and after he had drunk, that he saddled for him the ass, to wit, for the prophet whom he had brought back. \nAnd when he was gone, a lion met him by the way, and slew him: and his carcase was cast in the way, and the ass stood by it, the lion also stood by the carcase. \nAnd, behold, men passed by, and saw the carcase cast in the way, and the lion standing by the carcase: and they came and told it in the city where the old prophet dwelt. \nAnd when the prophet that brought him back from the way heard thereof, he said, It is the man of God, who was disobedient unto the word of the LORD: therefore the LORD hath delivered him unto the lion, which hath torn him, and slain him, according to the word of the LORD, which he spake unto him. \nAnd he spake to his sons, saying, Saddle me the ass. And they saddled him. \nAnd he went and found his carcase cast in the way, and the ass and the lion standing by the carcase: the lion had not eaten the carcase, nor torn the ass. \nAnd the prophet took up the carcase of the man of God, and laid it upon the ass, and brought it back: and the old prophet came to the city, to mourn and to bury him. \nAnd he laid his carcase in his own grave; and they mourned over him, saying, Alas, my brother! \nAnd it came to pass, after he had buried him, that he spake to his sons, saying, When I am dead, then bury me in the sepulchre wherein the man of God is buried; lay my bones beside his bones: \nFor the saying which he cried by the word of the LORD against the altar in Bethel, and against all the houses of the high places which are in the cities of Samaria, shall surely come to pass. \nAfter this thing Jeroboam returned not from his evil way, but made again of the lowest of the people priests of the high places: whosoever would, he consecrated him, and he became one of the priests of the high places. \nAnd this thing became sin unto the house of Jeroboam, even to cut it off, and to destroy it from off the face of the earth. \nAt that time Abijah the son of Jeroboam fell sick. \nAnd Jeroboam said to his wife, Arise, I pray thee, and disguise thyself, that thou be not known to be the wife of Jeroboam; and get thee to Shiloh: behold, there is Ahijah the prophet, which told me that I should be king over this people. \nAnd take with thee ten loaves, and cracknels, and a cruse of honey, and go to him: he shall tell thee what shall become of the child. \nAnd Jeroboam's wife did so, and arose, and went to Shiloh, and came to the house of Ahijah. But Ahijah could not see; for his eyes were set by reason of his age. \nAnd the LORD said unto Ahijah, Behold, the wife of Jeroboam cometh to ask a thing of thee for her son; for he is sick: thus and thus shalt thou say unto her: for it shall be, when she cometh in, that she shall feign herself to be another woman. \nAnd it was so, when Ahijah heard the sound of her feet, as she came in at the door, that he said, Come in, thou wife of Jeroboam; why feignest thou thyself to be another? for I am sent to thee with heavy tidings. \nGo, tell Jeroboam, Thus saith the LORD God of Israel, Forasmuch as I exalted thee from among the people, and made thee prince over my people Israel, \nAnd rent the kingdom away from the house of David, and gave it thee: and yet thou hast not been as my servant David, who kept my commandments, and who followed me with all his heart, to do that only which was right in mine eyes; \nBut hast done evil above all that were before thee: for thou hast gone and made thee other gods, and molten images, to provoke me to anger, and hast cast me behind thy back: \nTherefore, behold, I will bring evil upon the house of Jeroboam, and will cut off from Jeroboam him that pisseth against the wall, and him that is shut up and left in Israel, and will take away the remnant of the house of Jeroboam, as a man taketh away dung, till it be all gone. \nHim that dieth of Jeroboam in the city shall the dogs eat; and him that dieth in the field shall the fowls of the air eat: for the LORD hath spoken it. \nArise thou therefore, get thee to thine own house: and when thy feet enter into the city, the child shall die. \nAnd all Israel shall mourn for him, and bury him: for he only of Jeroboam shall come to the grave, because in him there is found some good thing toward the LORD God of Israel in the house of Jeroboam. \nMoreover the LORD shall raise him up a king over Israel, who shall cut off the house of Jeroboam that day: but what? even now. \nFor the LORD shall smite Israel, as a reed is shaken in the water, and he shall root up Israel out of this good land, which he gave to their fathers, and shall scatter them beyond the river, because they have made their groves, provoking the LORD to anger. \nAnd he shall give Israel up because of the sins of Jeroboam, who did sin, and who made Israel to sin. \nAnd Jeroboam's wife arose, and departed, and came to Tirzah: and when she came to the threshold of the door, the child died; \nAnd they buried him; and all Israel mourned for him, according to the word of the LORD, which he spake by the hand of his servant Ahijah the prophet. \nAnd the rest of the acts of Jeroboam, how he warred, and how he reigned, behold, they are written in the book of the chronicles of the kings of Israel. \nAnd the days which Jeroboam reigned were two and twenty years: and he slept with his fathers, and Nadab his son reigned in his stead. \nAnd Rehoboam the son of Solomon reigned in Judah. Rehoboam was forty and one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which the LORD did choose out of all the tribes of Israel, to put his name there. And his mother's name was Naamah an Ammonitess. \nAnd Judah did evil in the sight of the LORD, and they provoked him to jealousy with their sins which they had committed, above all that their fathers had done. \nFor they also built them high places, and images, and groves, on every high hill, and under every green tree. \nAnd there were also sodomites in the land: and they did according to all the abominations of the nations which the LORD cast out before the children of Israel. \nAnd it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem: \nAnd he took away the treasures of the house of the LORD, and the treasures of the king's house; he even took away all: and he took away all the shields of gold which Solomon had made. \nAnd king Rehoboam made in their stead brasen shields, and committed them unto the hands of the chief of the guard, which kept the door of the king's house. \nAnd it was so, when the king went into the house of the LORD, that the guard bare them, and brought them back into the guard chamber. \nNow the rest of the acts of Rehoboam, and all that he did, are they not written in the book of the chronicles of the kings of Judah? \nAnd there was war between Rehoboam and Jeroboam all their days. \nAnd Rehoboam slept with his fathers, and was buried with his fathers in the city of David. And his mother's name was Naamah an Ammonitess. And Abijam his son reigned in his stead. \nNow in the eighteenth year of king Jeroboam the son of Nebat reigned Abijam over Judah. \nThree years reigned he in Jerusalem. and his mother's name was Maachah, the daughter of Abishalom. \nAnd he walked in all the sins of his father, which he had done before him: and his heart was not perfect with the LORD his God, as the heart of David his father. \nNevertheless for David's sake did the LORD his God give him a lamp in Jerusalem, to set up his son after him, and to establish Jerusalem: \nBecause David did that which was right in the eyes of the LORD, and turned not aside from any thing that he commanded him all the days of his life, save only in the matter of Uriah the Hittite. \nAnd there was war between Rehoboam and Jeroboam all the days of his life. \nNow the rest of the acts of Abijam, and all that he did, are they not written in the book of the chronicles of the kings of Judah? And there was war between Abijam and Jeroboam. \nAnd Abijam slept with his fathers; and they buried him in the city of David: and Asa his son reigned in his stead. \nAnd in the twentieth year of Jeroboam king of Israel reigned Asa over Judah. \nAnd forty and one years reigned he in Jerusalem. And his mother's name was Maachah, the daughter of Abishalom. \nAnd Asa did that which was right in the eyes of the LORD, as did David his father. \nAnd he took away the sodomites out of the land, and removed all the idols that his fathers had made. \nAnd also Maachah his mother, even her he removed from being queen, because she had made an idol in a grove; and Asa destroyed her idol, and burnt it by the brook Kidron. \nBut the high places were not removed: nevertheless Asa's heart was perfect with the LORD all his days. \nAnd he brought in the things which his father had dedicated, and the things which himself had dedicated, into the house of the LORD, silver, and gold, and vessels. \nAnd there was war between Asa and Baasha king of Israel all their days. \nAnd Baasha king of Israel went up against Judah, and built Ramah, that he might not suffer any to go out or come in to Asa king of Judah. \nThen Asa took all the silver and the gold that were left in the treasures of the house of the LORD, and the treasures of the king's house, and delivered them into the hand of his servants: and king Asa sent them to Benhadad, the son of Tabrimon, the son of Hezion, king of Syria, that dwelt at Damascus, saying, \nThere is a league between me and thee, and between my father and thy father: behold, I have sent unto thee a present of silver and gold; come and break thy league with Baasha king of Israel, that he may depart from me. \nSo Benhadad hearkened unto king Asa, and sent the captains of the hosts which he had against the cities of Israel, and smote Ijon, and Dan, and Abelbethmaachah, and all Cinneroth, with all the land of Naphtali. \nAnd it came to pass, when Baasha heard thereof, that he left off building of Ramah, and dwelt in Tirzah. \nThen king Asa made a proclamation throughout all Judah; none was exempted: and they took away the stones of Ramah, and the timber thereof, wherewith Baasha had builded; and king Asa built with them Geba of Benjamin, and Mizpah. \nThe rest of all the acts of Asa, and all his might, and all that he did, and the cities which he built, are they not written in the book of the chronicles of the kings of Judah? Nevertheless in the time of his old age he was diseased in his feet. \nAnd Asa slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoshaphat his son reigned in his stead. \nAnd Nadab the son of Jeroboam began to reign over Israel in the second year of Asa king of Judah, and reigned over Israel two years. \nAnd he did evil in the sight of the LORD, and walked in the way of his father, and in his sin wherewith he made Israel to sin. \nAnd Baasha the son of Ahijah, of the house of Issachar, conspired against him; and Baasha smote him at Gibbethon, which belonged to the Philistines; for Nadab and all Israel laid siege to Gibbethon. \nEven in the third year of Asa king of Judah did Baasha slay him, and reigned in his stead. \nAnd it came to pass, when he reigned, that he smote all the house of Jeroboam; he left not to Jeroboam any that breathed, until he had destroyed him, according unto the saying of the LORD, which he spake by his servant Ahijah the Shilonite: \nBecause of the sins of Jeroboam which he sinned, and which he made Israel sin, by his provocation wherewith he provoked the LORD God of Israel to anger. \nNow the rest of the acts of Nadab, and all that he did, are they not written in the book of the chronicles of the kings of Israel? \nAnd there was war between Asa and Baasha king of Israel all their days. \nIn the third year of Asa king of Judah began Baasha the son of Ahijah to reign over all Israel in Tirzah, twenty and four years. \nAnd he did evil in the sight of the LORD, and walked in the way of Jeroboam, and in his sin wherewith he made Israel to sin. \nThen the word of the LORD came to Jehu the son of Hanani against Baasha, saying, \nForasmuch as I exalted thee out of the dust, and made thee prince over my people Israel; and thou hast walked in the way of Jeroboam, and hast made my people Israel to sin, to provoke me to anger with their sins; \nBehold, I will take away the posterity of Baasha, and the posterity of his house; and will make thy house like the house of Jeroboam the son of Nebat. \nHim that dieth of Baasha in the city shall the dogs eat; and him that dieth of his in the fields shall the fowls of the air eat. \nNow the rest of the acts of Baasha, and what he did, and his might, are they not written in the book of the chronicles of the kings of Israel? \nSo Baasha slept with his fathers, and was buried in Tirzah: and Elah his son reigned in his stead. \nAnd also by the hand of the prophet Jehu the son of Hanani came the word of the LORD against Baasha, and against his house, even for all the evil that he did in the sight of the LORD, in provoking him to anger with the work of his hands, in being like the house of Jeroboam; and because he killed him. \nIn the twenty and sixth year of Asa king of Judah began Elah the son of Baasha to reign over Israel in Tirzah, two years. \nAnd his servant Zimri, captain of half his chariots, conspired against him, as he was in Tirzah, drinking himself drunk in the house of Arza steward of his house in Tirzah. \nAnd Zimri went in and smote him, and killed him, in the twenty and seventh year of Asa king of Judah, and reigned in his stead. \nAnd it came to pass, when he began to reign, as soon as he sat on his throne, that he slew all the house of Baasha: he left him not one that pisseth against a wall, neither of his kinsfolks, nor of his friends. \nThus did Zimri destroy all the house of Baasha, according to the word of the LORD, which he spake against Baasha by Jehu the prophet. \nFor all the sins of Baasha, and the sins of Elah his son, by which they sinned, and by which they made Israel to sin, in provoking the LORD God of Israel to anger with their vanities. \nNow the rest of the acts of Elah, and all that he did, are they not written in the book of the chronicles of the kings of Israel? \nIn the twenty and seventh year of Asa king of Judah did Zimri reign seven days in Tirzah. And the people were encamped against Gibbethon, which belonged to the Philistines. \nAnd the people that were encamped heard say, Zimri hath conspired, and hath also slain the king: wherefore all Israel made Omri, the captain of the host, king over Israel that day in the camp. \nAnd Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah. \nAnd it came to pass, when Zimri saw that the city was taken, that he went into the palace of the king's house, and burnt the king's house over him with fire, and died. \nFor his sins which he sinned in doing evil in the sight of the LORD, in walking in the way of Jeroboam, and in his sin which he did, to make Israel to sin. \nNow the rest of the acts of Zimri, and his treason that he wrought, are they not written in the book of the chronicles of the kings of Israel? \nThen were the people of Israel divided into two parts: half of the people followed Tibni the son of Ginath, to make him king; and half followed Omri. \nBut the people that followed Omri prevailed against the people that followed Tibni the son of Ginath: so Tibni died, and Omri reigned. \nIn the thirty and first year of Asa king of Judah began Omri to reign over Israel, twelve years: six years reigned he in Tirzah. \nAnd he bought the hill Samaria of Shemer for two talents of silver, and built on the hill, and called the name of the city which he built, after the name of Shemer, owner of the hill, Samaria. \nBut Omri wrought evil in the eyes of the LORD, and did worse than all that were before him. \nFor he walked in all the way of Jeroboam the son of Nebat, and in his sin wherewith he made Israel to sin, to provoke the LORD God of Israel to anger with their vanities. \nNow the rest of the acts of Omri which he did, and his might that he shewed, are they not written in the book of the chronicles of the kings of Israel? \nSo Omri slept with his fathers, and was buried in Samaria: and Ahab his son reigned in his stead. \nAnd in the thirty and eighth year of Asa king of Judah began Ahab the son of Omri to reign over Israel: and Ahab the son of Omri reigned over Israel in Samaria twenty and two years. \nAnd Ahab the son of Omri did evil in the sight of the LORD above all that were before him. \nAnd it came to pass, as if it had been a light thing for him to walk in the sins of Jeroboam the son of Nebat, that he took to wife Jezebel the daughter of Ethbaal king of the Zidonians, and went and served Baal, and worshipped him. \nAnd he reared up an altar for Baal in the house of Baal, which he had built in Samaria. \nAnd Ahab made a grove; and Ahab did more to provoke the LORD God of Israel to anger than all the kings of Israel that were before him. \nIn his days did Hiel the Bethelite build Jericho: he laid the foundation thereof in Abiram his firstborn, and set up the gates thereof in his youngest son Segub, according to the word of the LORD, which he spake by Joshua the son of Nun. \nAnd Elijah the Tishbite, who was of the inhabitants of Gilead, said unto Ahab, As the LORD God of Israel liveth, before whom I stand, there shall not be dew nor rain these years, but according to my word. \nAnd the word of the LORD came unto him, saying, \nGet thee hence, and turn thee eastward, and hide thyself by the brook Cherith, that is before Jordan. \nAnd it shall be, that thou shalt drink of the brook; and I have commanded the ravens to feed thee there. \nSo he went and did according unto the word of the LORD: for he went and dwelt by the brook Cherith, that is before Jordan. \nAnd the ravens brought him bread and flesh in the morning, and bread and flesh in the evening; and he drank of the brook. \nAnd it came to pass after a while, that the brook dried up, because there had been no rain in the land. \nAnd the word of the LORD came unto him, saying, \nArise, get thee to Zarephath, which belongeth to Zidon, and dwell there: behold, I have commanded a widow woman there to sustain thee. \nSo he arose and went to Zarephath. And when he came to the gate of the city, behold, the widow woman was there gathering of sticks: and he called to her, and said, Fetch me, I pray thee, a little water in a vessel, that I may drink. \nAnd as she was going to fetch it, he called to her, and said, Bring me, I pray thee, a morsel of bread in thine hand. \nAnd she said, As the LORD thy God liveth, I have not a cake, but an handful of meal in a barrel, and a little oil in a cruse: and, behold, I am gathering two sticks, that I may go in and dress it for me and my son, that we may eat it, and die. \nAnd Elijah said unto her, Fear not; go and do as thou hast said: but make me thereof a little cake first, and bring it unto me, and after make for thee and for thy son. \nFor thus saith the LORD God of Israel, The barrel of meal shall not waste, neither shall the cruse of oil fail, until the day that the LORD sendeth rain upon the earth. \nAnd she went and did according to the saying of Elijah: and she, and he, and her house, did eat many days. \nAnd the barrel of meal wasted not, neither did the cruse of oil fail, according to the word of the LORD, which he spake by Elijah. \nAnd it came to pass after these things, that the son of the woman, the mistress of the house, fell sick; and his sickness was so sore, that there was no breath left in him. \nAnd she said unto Elijah, What have I to do with thee, O thou man of God? art thou come unto me to call my sin to remembrance, and to slay my son? \nAnd he said unto her, Give me thy son. And he took him out of her bosom, and carried him up into a loft, where he abode, and laid him upon his own bed. \nAnd he cried unto the LORD, and said, O LORD my God, hast thou also brought evil upon the widow with whom I sojourn, by slaying her son? \nAnd he stretched himself upon the child three times, and cried unto the LORD, and said, O LORD my God, I pray thee, let this child's soul come into him again. \nAnd the LORD heard the voice of Elijah; and the soul of the child came into him again, and he revived. \nAnd Elijah took the child, and brought him down out of the chamber into the house, and delivered him unto his mother: and Elijah said, See, thy son liveth. \nAnd the woman said to Elijah, Now by this I know that thou art a man of God, and that the word of the LORD in thy mouth is truth. \nAnd it came to pass after many days, that the word of the LORD came to Elijah in the third year, saying, Go, shew thyself unto Ahab; and I will send rain upon the earth. \nAnd Elijah went to shew himself unto Ahab. And there was a sore famine in Samaria. \nAnd Ahab called Obadiah, which was the governor of his house. (Now Obadiah feared the LORD greatly: \nFor it was so, when Jezebel cut off the prophets of the LORD, that Obadiah took an hundred prophets, and hid them by fifty in a cave, and fed them with bread and water.) \nAnd Ahab said unto Obadiah, Go into the land, unto all fountains of water, and unto all brooks: peradventure we may find grass to save the horses and mules alive, that we lose not all the beasts. \nSo they divided the land between them to pass throughout it: Ahab went one way by himself, and Obadiah went another way by himself. \nAnd as Obadiah was in the way, behold, Elijah met him: and he knew him, and fell on his face, and said, Art thou that my lord Elijah? \nAnd he answered him, I am: go, tell thy lord, Behold, Elijah is here. \nAnd he said, What have I sinned, that thou wouldest deliver thy servant into the hand of Ahab, to slay me? \nAs the LORD thy God liveth, there is no nation or kingdom, whither my lord hath not sent to seek thee: and when they said, He is not there; he took an oath of the kingdom and nation, that they found thee not. \nAnd now thou sayest, Go, tell thy lord, Behold, Elijah is here. \nAnd it shall come to pass, as soon as I am gone from thee, that the Spirit of the LORD shall carry thee whither I know not; and so when I come and tell Ahab, and he cannot find thee, he shall slay me: but I thy servant fear the LORD from my youth. \nWas it not told my lord what I did when Jezebel slew the prophets of the LORD, how I hid an hundred men of the LORD's prophets by fifty in a cave, and fed them with bread and water? \nAnd now thou sayest, Go, tell thy lord, Behold, Elijah is here: and he shall slay me. \nAnd Elijah said, As the LORD of hosts liveth, before whom I stand, I will surely shew myself unto him to day. \nSo Obadiah went to meet Ahab, and told him: and Ahab went to meet Elijah. \nAnd it came to pass, when Ahab saw Elijah, that Ahab said unto him, Art thou he that troubleth Israel? \nAnd he answered, I have not troubled Israel; but thou, and thy father's house, in that ye have forsaken the commandments of the LORD, and thou hast followed Baalim. \nNow therefore send, and gather to me all Israel unto mount Carmel, and the prophets of Baal four hundred and fifty, and the prophets of the groves four hundred, which eat at Jezebel's table. \nSo Ahab sent unto all the children of Israel, and gathered the prophets together unto mount Carmel. \nAnd Elijah came unto all the people, and said, How long halt ye between two opinions? if the LORD be God, follow him: but if Baal, then follow him. And the people answered him not a word. \nThen said Elijah unto the people, I, even I only, remain a prophet of the LORD; but Baal's prophets are four hundred and fifty men. \nLet them therefore give us two bullocks; and let them choose one bullock for themselves, and cut it in pieces, and lay it on wood, and put no fire under: and I will dress the other bullock, and lay it on wood, and put no fire under: \nAnd call ye on the name of your gods, and I will call on the name of the LORD: and the God that answereth by fire, let him be God. And all the people answered and said, It is well spoken. \nAnd Elijah said unto the prophets of Baal, Choose you one bullock for yourselves, and dress it first; for ye are many; and call on the name of your gods, but put no fire under. \nAnd they took the bullock which was given them, and they dressed it, and called on the name of Baal from morning even until noon, saying, O Baal, hear us. But there was no voice, nor any that answered. And they leaped upon the altar which was made. \nAnd it came to pass at noon, that Elijah mocked them, and said, Cry aloud: for he is a god; either he is talking, or he is pursuing, or he is in a journey, or peradventure he sleepeth, and must be awaked. \nAnd they cried aloud, and cut themselves after their manner with knives and lancets, till the blood gushed out upon them. \nAnd it came to pass, when midday was past, and they prophesied until the time of the offering of the evening sacrifice, that there was neither voice, nor any to answer, nor any that regarded. \nAnd Elijah said unto all the people, Come near unto me. And all the people came near unto him. And he repaired the altar of the LORD that was broken down. \nAnd Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, unto whom the word of the LORD came, saying, Israel shall be thy name: \nAnd with the stones he built an altar in the name of the LORD: and he made a trench about the altar, as great as would contain two measures of seed. \nAnd he put the wood in order, and cut the bullock in pieces, and laid him on the wood, and said, Fill four barrels with water, and pour it on the burnt sacrifice, and on the wood. \nAnd he said, Do it the second time. And they did it the second time. And he said, Do it the third time. And they did it the third time. \nAnd the water ran round about the altar; and he filled the trench also with water. \nAnd it came to pass at the time of the offering of the evening sacrifice, that Elijah the prophet came near, and said, LORD God of Abraham, Isaac, and of Israel, let it be known this day that thou art God in Israel, and that I am thy servant, and that I have done all these things at thy word. \nHear me, O LORD, hear me, that this people may know that thou art the LORD God, and that thou hast turned their heart back again. \nThen the fire of the LORD fell, and consumed the burnt sacrifice, and the wood, and the stones, and the dust, and licked up the water that was in the trench. \nAnd when all the people saw it, they fell on their faces: and they said, The LORD, he is the God; the LORD, he is the God. \nAnd Elijah said unto them, Take the prophets of Baal; let not one of them escape. And they took them: and Elijah brought them down to the brook Kishon, and slew them there. \nAnd Elijah said unto Ahab, Get thee up, eat and drink; for there is a sound of abundance of rain. \nSo Ahab went up to eat and to drink. And Elijah went up to the top of Carmel; and he cast himself down upon the earth, and put his face between his knees, \nAnd said to his servant, Go up now, look toward the sea. And he went up, and looked, and said, There is nothing. And he said, Go again seven times. \nAnd it came to pass at the seventh time, that he said, Behold, there ariseth a little cloud out of the sea, like a man's hand. And he said, Go up, say unto Ahab, Prepare thy chariot, and get thee down that the rain stop thee not. \nAnd it came to pass in the mean while, that the heaven was black with clouds and wind, and there was a great rain. And Ahab rode, and went to Jezreel. \nAnd the hand of the LORD was on Elijah; and he girded up his loins, and ran before Ahab to the entrance of Jezreel. \nAnd Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with the sword. \nThen Jezebel sent a messenger unto Elijah, saying, So let the gods do to me, and more also, if I make not thy life as the life of one of them by to morrow about this time. \nAnd when he saw that, he arose, and went for his life, and came to Beersheba, which belongeth to Judah, and left his servant there. \nBut he himself went a day's journey into the wilderness, and came and sat down under a juniper tree: and he requested for himself that he might die; and said, It is enough; now, O LORD, take away my life; for I am not better than my fathers. \nAnd as he lay and slept under a juniper tree, behold, then an angel touched him, and said unto him, Arise and eat. \nAnd he looked, and, behold, there was a cake baken on the coals, and a cruse of water at his head. And he did eat and drink, and laid him down again. \nAnd the angel of the LORD came again the second time, and touched him, and said, Arise and eat; because the journey is too great for thee. \nAnd he arose, and did eat and drink, and went in the strength of that meat forty days and forty nights unto Horeb the mount of God. \nAnd he came thither unto a cave, and lodged there; and, behold, the word of the LORD came to him, and he said unto him, What doest thou here, Elijah? \nAnd he said, I have been very jealous for the LORD God of hosts: for the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away. \nAnd he said, Go forth, and stand upon the mount before the LORD. And, behold, the LORD passed by, and a great and strong wind rent the mountains, and brake in pieces the rocks before the LORD; but the LORD was not in the wind: and after the wind an earthquake; but the LORD was not in the earthquake: \nAnd after the earthquake a fire; but the LORD was not in the fire: and after the fire a still small voice. \nAnd it was so, when Elijah heard it, that he wrapped his face in his mantle, and went out, and stood in the entering in of the cave. And, behold, there came a voice unto him, and said, What doest thou here, Elijah? \nAnd he said, I have been very jealous for the LORD God of hosts: because the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away. \nAnd the LORD said unto him, Go, return on thy way to the wilderness of Damascus: and when thou comest, anoint Hazael to be king over Syria: \nAnd Jehu the son of Nimshi shalt thou anoint to be king over Israel: and Elisha the son of Shaphat of Abelmeholah shalt thou anoint to be prophet in thy room. \nAnd it shall come to pass, that him that escapeth the sword of Hazael shall Jehu slay: and him that escapeth from the sword of Jehu shall Elisha slay. \nYet I have left me seven thousand in Israel, all the knees which have not bowed unto Baal, and every mouth which hath not kissed him. \nSo he departed thence, and found Elisha the son of Shaphat, who was plowing with twelve yoke of oxen before him, and he with the twelfth: and Elijah passed by him, and cast his mantle upon him. \nAnd he left the oxen, and ran after Elijah, and said, Let me, I pray thee, kiss my father and my mother, and then I will follow thee. And he said unto him, Go back again: for what have I done to thee? \nAnd he returned back from him, and took a yoke of oxen, and slew them, and boiled their flesh with the instruments of the oxen, and gave unto the people, and they did eat. Then he arose, and went after Elijah, and ministered unto him. \nAnd Benhadad the king of Syria gathered all his host together: and there were thirty and two kings with him, and horses, and chariots; and he went up and besieged Samaria, and warred against it. \nAnd he sent messengers to Ahab king of Israel into the city, and said unto him, Thus saith Benhadad, \nThy silver and thy gold is mine; thy wives also and thy children, even the goodliest, are mine. \nAnd the king of Israel answered and said, My lord, O king, according to thy saying, I am thine, and all that I have. \nAnd the messengers came again, and said, Thus speaketh Benhadad, saying, Although I have sent unto thee, saying, Thou shalt deliver me thy silver, and thy gold, and thy wives, and thy children; \nYet I will send my servants unto thee to morrow about this time, and they shall search thine house, and the houses of thy servants; and it shall be, that whatsoever is pleasant in thine eyes, they shall put it in their hand, and take it away. \nThen the king of Israel called all the elders of the land, and said, Mark, I pray you, and see how this man seeketh mischief: for he sent unto me for my wives, and for my children, and for my silver, and for my gold; and I denied him not. \nAnd all the elders and all the people said unto him, Hearken not unto him, nor consent. \nWherefore he said unto the messengers of Benhadad, Tell my lord the king, All that thou didst send for to thy servant at the first I will do: but this thing I may not do. And the messengers departed, and brought him word again. \nAnd Benhadad sent unto him, and said, The gods do so unto me, and more also, if the dust of Samaria shall suffice for handfuls for all the people that follow me. \nAnd the king of Israel answered and said, Tell him, Let not him that girdeth on his harness boast himself as he that putteth it off. \nAnd it came to pass, when Ben-hadad heard this message, as he was drinking, he and the kings in the pavilions, that he said unto his servants, Set yourselves in array. And they set themselves in array against the city. \nAnd, behold, there came a prophet unto Ahab king of Israel, saying, Thus saith the LORD, Hast thou seen all this great multitude? behold, I will deliver it into thine hand this day; and thou shalt know that I am the LORD. \nAnd Ahab said, By whom? And he said, Thus saith the LORD, Even by the young men of the princes of the provinces. Then he said, Who shall order the battle? And he answered, Thou. \nThen he numbered the young men of the princes of the provinces, and they were two hundred and thirty two: and after them he numbered all the people, even all the children of Israel, being seven thousand. \nAnd they went out at noon. But Benhadad was drinking himself drunk in the pavilions, he and the kings, the thirty and two kings that helped him. \nAnd the young men of the princes of the provinces went out first; and Benhadad sent out, and they told him, saying, There are men come out of Samaria. \nAnd he said, Whether they be come out for peace, take them alive; or whether they be come out for war, take them alive. \nSo these young men of the princes of the provinces came out of the city, and the army which followed them. \nAnd they slew every one his man: and the Syrians fled; and Israel pursued them: and Benhadad the king of Syria escaped on an horse with the horsemen. \nAnd the king of Israel went out, and smote the horses and chariots, and slew the Syrians with a great slaughter. \nAnd the prophet came to the king of Israel, and said unto him, Go, strengthen thyself, and mark, and see what thou doest: for at the return of the year the king of Syria will come up against thee. \nAnd the servants of the king of Syria said unto him, Their gods are gods of the hills; therefore they were stronger than we; but let us fight against them in the plain, and surely we shall be stronger than they. \nAnd do this thing, Take the kings away, every man out of his place, and put captains in their rooms: \nAnd number thee an army, like the army that thou hast lost, horse for horse, and chariot for chariot: and we will fight against them in the plain, and surely we shall be stronger than they. And he hearkened unto their voice, and did so. \nAnd it came to pass at the return of the year, that Benhadad numbered the Syrians, and went up to Aphek, to fight against Israel. \nAnd the children of Israel were numbered, and were all present, and went against them: and the children of Israel pitched before them like two little flocks of kids; but the Syrians filled the country. \nAnd there came a man of God, and spake unto the king of Israel, and said, Thus saith the LORD, Because the Syrians have said, The LORD is God of the hills, but he is not God of the valleys, therefore will I deliver all this great multitude into thine hand, and ye shall know that I am the LORD. \nAnd they pitched one over against the other seven days. And so it was, that in the seventh day the battle was joined: and the children of Israel slew of the Syrians an hundred thousand footmen in one day. \nBut the rest fled to Aphek, into the city; and there a wall fell upon twenty and seven thousand of the men that were left. And Benhadad fled, and came into the city, into an inner chamber. \nAnd his servants said unto him, Behold now, we have heard that the kings of the house of Israel are merciful kings: let us, I pray thee, put sackcloth on our loins, and ropes upon our heads, and go out to the king of Israel: peradventure he will save thy life. \nSo they girded sackcloth on their loins, and put ropes on their heads, and came to the king of Israel, and said, Thy servant Benhadad saith, I pray thee, let me live. And he said, Is he yet alive? he is my brother. \nNow the men did diligently observe whether any thing would come from him, and did hastily catch it: and they said, Thy brother Benhadad. Then he said, Go ye, bring him. Then Benhadad came forth to him; and he caused him to come up into the chariot. \nAnd Ben-hadad said unto him, The cities, which my father took from thy father, I will restore; and thou shalt make streets for thee in Damascus, as my father made in Samaria. Then said Ahab, I will send thee away with this covenant. So he made a covenant with him, and sent him away. \nAnd a certain man of the sons of the prophets said unto his neighbour in the word of the LORD, Smite me, I pray thee. And the man refused to smite him. \nThen said he unto him, Because thou hast not obeyed the voice of the LORD, behold, as soon as thou art departed from me, a lion shall slay thee. And as soon as he was departed from him, a lion found him, and slew him. \nThen he found another man, and said, Smite me, I pray thee. And the man smote him, so that in smiting he wounded him. \nSo the prophet departed, and waited for the king by the way, and disguised himself with ashes upon his face. \nAnd as the king passed by, he cried unto the king: and he said, Thy servant went out into the midst of the battle; and, behold, a man turned aside, and brought a man unto me, and said, Keep this man: if by any means he be missing, then shall thy life be for his life, or else thou shalt pay a talent of silver. \nAnd as thy servant was busy here and there, he was gone. And the king of Israel said unto him, So shall thy judgment be; thyself hast decided it. \nAnd he hasted, and took the ashes away from his face; and the king of Israel discerned him that he was of the prophets. \nAnd he said unto him, Thus saith the LORD, Because thou hast let go out of thy hand a man whom I appointed to utter destruction, therefore thy life shall go for his life, and thy people for his people. \nAnd the king of Israel went to his house heavy and displeased, and came to Samaria. \nAnd it came to pass after these things, that Naboth the Jezreelite had a vineyard, which was in Jezreel, hard by the palace of Ahab king of Samaria. \nAnd Ahab spake unto Naboth, saying, Give me thy vineyard, that I may have it for a garden of herbs, because it is near unto my house: and I will give thee for it a better vineyard than it; or, if it seem good to thee, I will give thee the worth of it in money. \nAnd Naboth said to Ahab, The LORD forbid it me, that I should give the inheritance of my fathers unto thee. \nAnd Ahab came into his house heavy and displeased because of the word which Naboth the Jezreelite had spoken to him: for he had said, I will not give thee the inheritance of my fathers. And he laid him down upon his bed, and turned away his face, and would eat no bread. \nBut Jezebel his wife came to him, and said unto him, Why is thy spirit so sad, that thou eatest no bread? \nAnd he said unto her, Because I spake unto Naboth the Jezreelite, and said unto him, Give me thy vineyard for money; or else, if it please thee, I will give thee another vineyard for it: and he answered, I will not give thee my vineyard. \nAnd Jezebel his wife said unto him, Dost thou now govern the kingdom of Israel? arise, and eat bread, and let thine heart be merry: I will give thee the vineyard of Naboth the Jezreelite. \nSo she wrote letters in Ahab's name, and sealed them with his seal, and sent the letters unto the elders and to the nobles that were in his city, dwelling with Naboth. \nAnd she wrote in the letters, saying, Proclaim a fast, and set Naboth on high among the people: \nAnd set two men, sons of Belial, before him, to bear witness against him, saying, Thou didst blaspheme God and the king. And then carry him out, and stone him, that he may die. \nAnd the men of his city, even the elders and the nobles who were the inhabitants in his city, did as Jezebel had sent unto them, and as it was written in the letters which she had sent unto them. \nThey proclaimed a fast, and set Naboth on high among the people. \nAnd there came in two men, children of Belial, and sat before him: and the men of Belial witnessed against him, even against Naboth, in the presence of the people, saying, Naboth did blaspheme God and the king. Then they carried him forth out of the city, and stoned him with stones, that he died. \nThen they sent to Jezebel, saying, Naboth is stoned, and is dead. \nAnd it came to pass, when Jezebel heard that Naboth was stoned, and was dead, that Jezebel said to Ahab, Arise, take possession of the vineyard of Naboth the Jezreelite, which he refused to give thee for money: for Naboth is not alive, but dead. \nAnd it came to pass, when Ahab heard that Naboth was dead, that Ahab rose up to go down to the vineyard of Naboth the Jezreelite, to take possession of it. \nAnd the word of the LORD came to Elijah the Tishbite, saying, \nArise, go down to meet Ahab king of Israel, which is in Samaria: behold, he is in the vineyard of Naboth, whither he is gone down to possess it. \nAnd thou shalt speak unto him, saying, Thus saith the LORD, Hast thou killed, and also taken possession? And thou shalt speak unto him, saying, Thus saith the LORD, In the place where dogs licked the blood of Naboth shall dogs lick thy blood, even thine. \nAnd Ahab said to Elijah, Hast thou found me, O mine enemy? And he answered, I have found thee: because thou hast sold thyself to work evil in the sight of the LORD. \nBehold, I will bring evil upon thee, and will take away thy posterity, and will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel, \nAnd will make thine house like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah, for the provocation wherewith thou hast provoked me to anger, and made Israel to sin. \nAnd of Jezebel also spake the LORD, saying, The dogs shall eat Jezebel by the wall of Jezreel. \nHim that dieth of Ahab in the city the dogs shall eat; and him that dieth in the field shall the fowls of the air eat. \nBut there was none like unto Ahab, which did sell himself to work wickedness in the sight of the LORD, whom Jezebel his wife stirred up. \nAnd he did very abominably in following idols, according to all things as did the Amorites, whom the LORD cast out before the children of Israel. \nAnd it came to pass, when Ahab heard those words, that he rent his clothes, and put sackcloth upon his flesh, and fasted, and lay in sackcloth, and went softly. \nAnd the word of the LORD came to Elijah the Tishbite, saying, \nSeest thou how Ahab humbleth himself before me? because he humbleth himself before me, I will not bring the evil in his days: but in his son's days will I bring the evil upon his house. \nAnd they continued three years without war between Syria and Israel. \nAnd it came to pass in the third year, that Jehoshaphat the king of Judah came down to the king of Israel. \nAnd the king of Israel said unto his servants, Know ye that Ramoth in Gilead is ours, and we be still, and take it not out of the hand of the king of Syria? \nAnd he said unto Jehoshaphat, Wilt thou go with me to battle to Ramothgilead? And Jehoshaphat said to the king of Israel, I am as thou art, my people as thy people, my horses as thy horses. \nAnd Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day. \nThen the king of Israel gathered the prophets together, about four hundred men, and said unto them, Shall I go against Ramothgilead to battle, or shall I forbear? And they said, Go up; for the LORD shall deliver it into the hand of the king. \nAnd Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him? \nAnd the king of Israel said unto Jehoshaphat, There is yet one man, Micaiah the son of Imlah, by whom we may enquire of the LORD: but I hate him; for he doth not prophesy good concerning me, but evil. And Jehoshaphat said, Let not the king say so. \nThen the king of Israel called an officer, and said, Hasten hither Micaiah the son of Imlah. \nAnd the king of Israel and Jehoshaphat the king of Judah sat each on his throne, having put on their robes, in a void place in the entrance of the gate of Samaria; and all the prophets prophesied before them. \nAnd Zedekiah the son of Chenaanah made him horns of iron: and he said, Thus saith the LORD, With these shalt thou push the Syrians, until thou have consumed them. \nAnd all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the king's hand. \nAnd the messenger that was gone to call Micaiah spake unto him, saying, Behold now, the words of the prophets declare good unto the king with one mouth: let thy word, I pray thee, be like the word of one of them, and speak that which is good. \nAnd Micaiah said, As the LORD liveth, what the LORD saith unto me, that will I speak. \nSo he came to the king. And the king said unto him, Micaiah, shall we go against Ramothgilead to battle, or shall we forbear? And he answered him, Go, and prosper: for the LORD shall deliver it into the hand of the king. \nAnd the king said unto him, How many times shall I adjure thee that thou tell me nothing but that which is true in the name of the LORD? \nAnd he said, I saw all Israel scattered upon the hills, as sheep that have not a shepherd: and the LORD said, These have no master: let them return every man to his house in peace. \nAnd the king of Israel said unto Jehoshaphat, Did I not tell thee that he would prophesy no good concerning me, but evil? \nAnd he said, Hear thou therefore the word of the LORD: I saw the LORD sitting on his throne, and all the host of heaven standing by him on his right hand and on his left. \nAnd the LORD said, Who shall persuade Ahab, that he may go up and fall at Ramothgilead? And one said on this manner, and another said on that manner. \nAnd there came forth a spirit, and stood before the LORD, and said, I will persuade him. \nAnd the LORD said unto him, Wherewith? And he said, I will go forth, and I will be a lying spirit in the mouth of all his prophets. And he said, Thou shalt persude him, and prevail also: go forth, and do so. \nNow therefore, behold, the LORD hath put a lying spirit in the mouth of all these thy prophets, and the LORD hath spoken evil concerning thee. \nBut Zedekiah the son of Chenaanah went near, and smote Micaiah on the cheek, and said, Which way went the Spirit of the LORD from me to speak unto thee? \nAnd Micaiah said, Behold, thou shalt see in that day, when thou shalt go into an inner chamber to hide thyself. \nAnd the king of Israel said, Take Micaiah, and carry him back unto Amon the governor of the city, and to Joash the king's son; \nAnd say, Thus saith the king, Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I come in peace. \nAnd Micaiah said, If thou return at all in peace, the LORD hath not spoken by me. And he said, Hearken, O people, every one of you. \nSo the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead. \nAnd the king of Israel said unto Jehoshaphat, I will disguise myself, and enter into the battle; but put thou on thy robes. And the king of Israel disguised himself, and went into the battle. \nBut the king of Syria commanded his thirty and two captains that had rule over his chariots, saying, Fight neither with small nor great, save only with the king of Israel. \nAnd it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, Surely it is the king of Israel. And they turned aside to fight against him: and Jehoshaphat cried out. \nAnd it came to pass, when the captains of the chariots perceived that it was not the king of Israel, that they turned back from pursuing him. \nAnd a certain man drew a bow at a venture, and smote the king of Israel between the joints of the harness: wherefore he said unto the driver of his chariot, Turn thine hand, and carry me out of the host; for I am wounded. \nAnd the battle increased that day: and the king was stayed up in his chariot against the Syrians, and died at even: and the blood ran out of the wound into the midst of the chariot. \nAnd there went a proclamation throughout the host about the going down of the sun, saying, Every man to his city, and every man to his own country. \nSo the king died, and was brought to Samaria; and they buried the king in Samaria. \nAnd one washed the chariot in the pool of Samaria; and the dogs licked up his blood; and they washed his armour; according unto the word of the LORD which he spake. \nNow the rest of the acts of Ahab, and all that he did, and the ivory house which he made, and all the cities that he built, are they not written in the book of the chronicles of the kings of Israel? \nSo Ahab slept with his fathers; and Ahaziah his son reigned in his stead. \nAnd Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel. \nJehoshaphat was thirty and five years old when he began to reign; and he reigned twenty and five years in Jerusalem. And his mother's name was Azubah the daughter of Shilhi. \nAnd he walked in all the ways of Asa his father; he turned not aside from it, doing that which was right in the eyes of the LORD: nevertheless the high places were not taken away; for the people offered and burnt incense yet in the high places. \nAnd Jehoshaphat made peace with the king of Israel. \nNow the rest of the acts of Jehoshaphat, and his might that he shewed, and how he warred, are they not written in the book of the chronicles of the kings of Judah? \nAnd the remnant of the sodomites, which remained in the days of his father Asa, he took out of the land. \nThere was then no king in Edom: a deputy was king. \nJehoshaphat made ships of Tharshish to go to Ophir for gold: but they went not; for the ships were broken at Eziongeber. \nThen said Ahaziah the son of Ahab unto Jehoshaphat, Let my servants go with thy servants in the ships. But Jehoshaphat would not. \nAnd Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoram his son reigned in his stead. \nAhaziah the son of Ahab began to reign over Israel in Samaria the seventeenth year of Jehoshaphat king of Judah, and reigned two years over Israel. \nAnd he did evil in the sight of the LORD, and walked in the way of his father, and in the way of his mother, and in the way of Jeroboam the son of Nebat, who made Israel to sin: \nFor he served Baal, and worshipped him, and provoked to anger the LORD God of Israel, according to all that his father had done. \nAdam, Sheth, Enosh, \nKenan, Mahalaleel, Jered, \nHenoch, Methuselah, Lamech, \nNoah, Shem, Ham, and Japheth. \nThe sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras. \nAnd the sons of Gomer; Ashchenaz, and Riphath, and Togarmah. \nAnd the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim. \nThe sons of Ham; Cush, and Mizraim, Put, and Canaan. \nAnd the sons of Cush; Seba, and Havilah, and Sabta, and Raamah, and Sabtecha. And the sons of Raamah; Sheba, and Dedan. \nAnd Cush begat Nimrod: he began to be mighty upon the earth. \nAnd Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim, \nAnd Pathrusim, and Casluhim, (of whom came the Philistines,) and Caphthorim. \nAnd Canaan begat Zidon his firstborn, and Heth, \nThe Jebusite also, and the Amorite, and the Girgashite, \nAnd the Hivite, and the Arkite, and the Sinite, \nAnd the Arvadite, and the Zemarite, and the Hamathite. \nThe sons of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram, and Uz, and Hul, and Gether, and Meshech. \nAnd Arphaxad begat Shelah, and Shelah begat Eber. \nAnd unto Eber were born two sons: the name of the one was Peleg; because in his days the earth was divided: and his brother's name was Joktan. \nAnd Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah, \nHadoram also, and Uzal, and Diklah, \nAnd Ebal, and Abimael, and Sheba, \nAnd Ophir, and Havilah, and Jobab. All these were the sons of Joktan. \nShem, Arphaxad, Shelah, \nEber, Peleg, Reu, \nSerug, Nahor, Terah, \nAbram; the same is Abraham. \nThe sons of Abraham; Isaac, and Ishmael. \nThese are their generations: The firstborn of Ishmael, Nebaioth; then Kedar, and Adbeel, and Mibsam, \nMishma, and Dumah, Massa, Hadad, and Tema, \nJetur, Naphish, and Kedemah. These are the sons of Ishmael. \nNow the sons of Keturah, Abraham's concubine: she bare Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. And the sons of Jokshan; Sheba, and Dedan. \nAnd the sons of Midian; Ephah, and Epher, and Henoch, and Abida, and Eldaah. All these are the sons of Keturah. \nAnd Abraham begat Isaac. The sons of Isaac; Esau and Israel. \nThe sons of Esau; Eliphaz, Reuel, and Jeush, and Jaalam, and Korah. \nThe sons of Eliphaz; Teman, and Omar, Zephi, and Gatam, Kenaz, and Timna, and Amalek. \nThe sons of Reuel; Nahath, Zerah, Shammah, and Mizzah. \nAnd the sons of Seir; Lotan, and Shobal, and Zibeon, and Anah, and Dishon, and Ezar, and Dishan. \nAnd the sons of Lotan; Hori, and Homam: and Timna was Lotan's sister. \nThe sons of Shobal; Alian, and Manahath, and Ebal, Shephi, and Onam. and the sons of Zibeon; Aiah, and Anah. \nThe sons of Anah; Dishon. And the sons of Dishon; Amram, and Eshban, and Ithran, and Cheran. \nThe sons of Ezer; Bilhan, and Zavan, and Jakan. The sons of Dishan; Uz, and Aran. \nNow these are the kings that reigned in the land of Edom before any king reigned over the children of Israel; Bela the son of Beor: and the name of his city was Dinhabah. \nAnd when Bela was dead, Jobab the son of Zerah of Bozrah reigned in his stead. \nAnd when Jobab was dead, Husham of the land of the Temanites reigned in his stead. \nAnd when Husham was dead, Hadad the son of Bedad, which smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith. \nAnd when Hadad was dead, Samlah of Masrekah reigned in his stead. \nAnd when Samlah was dead, Shaul of Rehoboth by the river reigned in his stead. \nAnd when Shaul was dead, Baalhanan the son of Achbor reigned in his stead. \nAnd when Baalhanan was dead, Hadad reigned in his stead: and the name of his city was Pai; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab. \nHadad died also. And the dukes of Edom were; duke Timnah, duke Aliah, duke Jetheth, \nDuke Aholibamah, duke Elah, duke Pinon, \nDuke Kenaz, duke Teman, duke Mibzar, \nDuke Magdiel, duke Iram. These are the dukes of Edom. \nThese are the sons of Israel; Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun, \nDan, Joseph, and Benjamin, Naphtali, Gad, and Asher. \nThe sons of Judah; Er, and Onan, and Shelah: which three were born unto him of the daughter of Shua the Canaanitess. And Er, the firstborn of Judah, was evil in the sight of the LORD; and he slew him. \nAnd Tamar his daughter in law bore him Pharez and Zerah. All the sons of Judah were five. \nThe sons of Pharez; Hezron, and Hamul. \nAnd the sons of Zerah; Zimri, and Ethan, and Heman, and Calcol, and Dara: five of them in all. \nAnd the sons of Carmi; Achar, the troubler of Israel, who transgressed in the thing accursed. \nAnd the sons of Ethan; Azariah. \nThe sons also of Hezron, that were born unto him; Jerahmeel, and Ram, and Chelubai. \nAnd Ram begat Amminadab; and Amminadab begat Nahshon, prince of the children of Judah; \nAnd Nahshon begat Salma, and Salma begat Boaz, \nAnd Boaz begat Obed, and Obed begat Jesse, \nAnd Jesse begat his firstborn Eliab, and Abinadab the second, and Shimma the third, \nNethaneel the fourth, Raddai the fifth, \nOzem the sixth, David the seventh: \nWhose sisters were Zeruiah, and Abigail. And the sons of Zeruiah; Abishai, and Joab, and Asahel, three. \nAnd Abigail bare Amasa: and the father of Amasa was Jether the Ishmeelite. \nAnd Caleb the son of Hezron begat children of Azubah his wife, and of Jerioth: her sons are these; Jesher, and Shobab, and Ardon. \nAnd when Azubah was dead, Caleb took unto him Ephrath, which bare him Hur. \nAnd Hur begat Uri, and Uri begat Bezaleel. \nAnd afterward Hezron went in to the daughter of Machir the father of Gilead, whom he married when he was threescore years old; and she bare him Segub. \nAnd Segub begat Jair, who had three and twenty cities in the land of Gilead. \nAnd he took Geshur, and Aram, with the towns of Jair, from them, with Kenath, and the towns thereof, even threescore cities. All these belonged to the sons of Machir the father of Gilead. \nAnd after that Hezron was dead in Calebephratah, then Abiah Hezron's wife bare him Ashur the father of Tekoa. \nAnd the sons of Jerahmeel the firstborn of Hezron were, Ram the firstborn, and Bunah, and Oren, and Ozem, and Ahijah. \nJerahmeel had also another wife, whose name was Atarah; she was the mother of Onam. \nAnd the sons of Ram the firstborn of Jerahmeel were, Maaz, and Jamin, and Eker. \nAnd the sons of Onam were, Shammai, and Jada. And the sons of Shammai; Nadab and Abishur. \nAnd the name of the wife of Abishur was Abihail, and she bare him Ahban, and Molid. \nAnd the sons of Nadab; Seled, and Appaim: but Seled died without children. \nAnd the sons of Appaim; Ishi. And the sons of Ishi; Sheshan. And the children of Sheshan; Ahlai. \nAnd the sons of Jada the brother of Shammai; Jether, and Jonathan: and Jether died without children. \nAnd the sons of Jonathan; Peleth, and Zaza. These were the sons of Jerahmeel. \nNow Sheshan had no sons, but daughters. And Sheshan had a servant, an Egyptian, whose name was Jarha. \nAnd Sheshan gave his daughter to Jarha his servant to wife; and she bare him Attai. \nAnd Attai begat Nathan, and Nathan begat Zabad, \nAnd Zabad begat Ephlal, and Ephlal begat Obed, \nAnd Obed begat Jehu, and Jehu begat Azariah, \nAnd Azariah begat Helez, and Helez begat Eleasah, \nAnd Eleasah begat Sisamai, and Sisamai begat Shallum, \nAnd Shallum begat Jekamiah, and Jekamiah begat Elishama. \nNow the sons of Caleb the brother of Jerahmeel were, Mesha his firstborn, which was the father of Ziph; and the sons of Mareshah the father of Hebron. \nAnd the sons of Hebron; Korah, and Tappuah, and Rekem, and Shema. \nAnd Shema begat Raham, the father of Jorkoam: and Rekem begat Shammai. \nAnd the son of Shammai was Maon: and Maon was the father of Bethzur. \nAnd Ephah, Caleb's concubine, bare Haran, and Moza, and Gazez: and Haran begat Gazez. \nAnd the sons of Jahdai; Regem, and Jotham, and Gesham, and Pelet, and Ephah, and Shaaph. \nMaachah, Caleb's concubine, bare Sheber, and Tirhanah. \nShe bare also Shaaph the father of Madmannah, Sheva the father of Machbenah, and the father of Gibea: and the daughter of Caleb was Achsa. \nThese were the sons of Caleb the son of Hur, the firstborn of Ephratah; Shobal the father of Kirjathjearim. \nSalma the father of Bethlehem, Hareph the father of Bethgader. \nAnd Shobal the father of Kirjathjearim had sons; Haroeh, and half of the Manahethites. \nAnd the families of Kirjathjearim; the Ithrites, and the Puhites, and the Shumathites, and the Mishraites; of them came the Zareathites, and the Eshtaulites, \nThe sons of Salma; Bethlehem, and the Netophathites, Ataroth, the house of Joab, and half of the Manahethites, the Zorites. \nAnd the families of the scribes which dwelt at Jabez; the Tirathites, the Shimeathites, and Suchathites. These are the Kenites that came of Hemath, the father of the house of Rechab. \nNow these were the sons of David, which were born unto him in Hebron; the firstborn Amnon, of Ahinoam the Jezreelitess; the second Daniel, of Abigail the Carmelitess: \nThe third, Absalom the son of Maachah the daughter of Talmai king of Geshur: the fourth, Adonijah the son of Haggith: \nThe fifth, Shephatiah of Abital: the sixth, Ithream by Eglah his wife. \nThese six were born unto him in Hebron; and there he reigned seven years and six months: and in Jerusalem he reigned thirty and three years. \nAnd these were born unto him in Jerusalem; Shimea, and Shobab, and Nathan, and Solomon, four, of Bathshua the daughter of Ammiel: \nIbhar also, and Elishama, and Eliphelet, \nAnd Nogah, and Nepheg, and Japhia, \nAnd Elishama, and Eliada, and Eliphelet, nine. \nThese were all the sons of David, beside the sons of the concubines, and Tamar their sister. \nAnd Solomon's son was Rehoboam, Abia his son, Asa his son, Jehoshaphat his son, \nJoram his son, Ahaziah his son, Joash his son, \nAmaziah his son, Azariah his son, Jotham his son, \nAhaz his son, Hezekiah his son, Manasseh his son, \nAmon his son, Josiah his son. \nAnd the sons of Josiah were, the firstborn Johanan, the second Jehoiakim, the third Zedekiah, the fourth Shallum. \nAnd the sons of Jehoiakim: Jeconiah his son, Zedekiah his son. \nAnd the sons of Jeconiah; Assir, Salathiel his son, \nMalchiram also, and Pedaiah, and Shenazar, Jecamiah, Hoshama, and Nedabiah. \nAnd the sons of Pedaiah were, Zerubbabel, and Shimei: and the sons of Zerubbabel; Meshullam, and Hananiah, and Shelomith their sister: \nAnd Hashubah, and Ohel, and Berechiah, and Hasadiah, Jushabhesed, five. \nAnd the sons of Hananiah; Pelatiah, and Jesaiah: the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shechaniah. \nAnd the sons of Shechaniah; Shemaiah: and the sons of Shemaiah; Hattush, and Igeal, and Bariah, and Neariah, and Shaphat, six. \nAnd the sons of Neariah; Elioenai, and Hezekiah, and Azrikam, three. \nAnd the sons of Elioenai were, Hodaiah, and Eliashib, and Pelaiah, and Akkub, and Johanan, and Dalaiah, and Anani, seven. \nThe sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal. \nAnd Reaiah the son of Shobal begat Jahath; and Jahath begat Ahumai, and Lahad. These are the families of the Zorathites. \nAnd these were of the father of Etam; Jezreel, and Ishma, and Idbash: and the name of their sister was Hazelelponi: \nAnd Penuel the father of Gedor, and Ezer the father of Hushah. These are the sons of Hur, the firstborn of Ephratah, the father of Bethlehem. \nAnd Ashur the father of Tekoa had two wives, Helah and Naarah. \nAnd Naarah bare him Ahuzam, and Hepher, and Temeni, and Haahashtari. These were the sons of Naarah. \nAnd the sons of Helah were, Zereth, and Jezoar, and Ethnan. \nAnd Coz begat Anub, and Zobebah, and the families of Aharhel the son of Harum. \nAnd Jabez was more honourable than his brethren: and his mother called his name Jabez, saying, Because I bare him with sorrow. \nAnd Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested. \nAnd Chelub the brother of Shuah begat Mehir, which was the father of Eshton. \nAnd Eshton begat Bethrapha, and Paseah, and Tehinnah the father of Irnahash. These are the men of Rechah. \nAnd the sons of Kenaz; Othniel, and Seraiah: and the sons of Othniel; Hathath. \nAnd Meonothai begat Ophrah: and Seraiah begat Joab, the father of the valley of Charashim; for they were craftsmen. \nAnd the sons of Caleb the son of Jephunneh; Iru, Elah, and Naam: and the sons of Elah, even Kenaz. \nAnd the sons of Jehaleleel; Ziph, and Ziphah, Tiria, and Asareel. \nAnd the sons of Ezra were, Jether, and Mered, and Epher, and Jalon: and she bare Miriam, and Shammai, and Ishbah the father of Eshtemoa. \nAnd his wife Jehudijah bare Jered the father of Gedor, and Heber the father of Socho, and Jekuthiel the father of Zanoah. And these are the sons of Bithiah the daughter of Pharaoh, which Mered took. \nAnd the sons of his wife Hodiah the sister of Naham, the father of Keilah the Garmite, and Eshtemoa the Maachathite. \nAnd the sons of Shimon were, Amnon, and Rinnah, Benhanan, and Tilon. And the sons of Ishi were, Zoheth, and Benzoheth. \nThe sons of Shelah the son of Judah were, Er the father of Lecah, and Laadah the father of Mareshah, and the families of the house of them that wrought fine linen, of the house of Ashbea, \nAnd Jokim, and the men of Chozeba, and Joash, and Saraph, who had the dominion in Moab, and Jashubilehem. And these are ancient things. \nThese were the potters, and those that dwelt among plants and hedges: there they dwelt with the king for his work. \nThe sons of Simeon were, Nemuel, and Jamin, Jarib, Zerah, and Shaul: \nShallum his son, Mibsam his son, Mishma his son. \nAnd the sons of Mishma; Hamuel his son, Zacchur his son, Shimei his son. \nAnd Shimei had sixteen sons and six daughters: but his brethren had not many children, neither did all their family multiply, like to the children of Judah. \nAnd they dwelt at Beersheba, and Moladah, and Hazarshual, \nAnd at Bilhah, and at Ezem, and at Tolad, \nAnd at Bethuel, and at Hormah, and at Ziklag, \nAnd at Bethmarcaboth, and Hazarsusim, and at Bethbirei, and at Shaaraim. These were their cities unto the reign of David. \nAnd their villages were, Etam, and Ain, Rimmon, and Tochen, and Ashan, five cities: \nAnd all their villages that were round about the same cities, unto Baal. These were their habitations, and their genealogy. \nAnd Meshobab, and Jamlech, and Joshah, the son of Amaziah, \nAnd Joel, and Jehu the son of Josibiah, the son of Seraiah, the son of Asiel, \nAnd Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah, and Adiel, and Jesimiel, and Benaiah, \nAnd Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah; \nThese mentioned by their names were princes in their families: and the house of their fathers increased greatly. \nAnd they went to the entrance of Gedor, even unto the east side of the valley, to seek pasture for their flocks. \nAnd they found fat pasture and good, and the land was wide, and quiet, and peaceable; for they of Ham had dwelt there of old. \nAnd these written by name came in the days of Hezekiah king of Judah, and smote their tents, and the habitations that were found there, and destroyed them utterly unto this day, and dwelt in their rooms: because there was pasture there for their flocks. \nAnd some of them, even of the sons of Simeon, five hundred men, went to mount Seir, having for their captains Pelatiah, and Neariah, and Rephaiah, and Uzziel, the sons of Ishi. \nAnd they smote the rest of the Amalekites that were escaped, and dwelt there unto this day. \nNow the sons of Reuben the firstborn of Israel, (for he was the firstborn; but forasmuch as he defiled his father's bed, his birthright was given unto the sons of Joseph the son of Israel: and the genealogy is not to be reckoned after the birthright. \nFor Judah prevailed above his brethren, and of him came the chief ruler; but the birthright was Joseph's:) \nThe sons, I say, of Reuben the firstborn of Israel were, Hanoch, and Pallu, Hezron, and Carmi. \nThe sons of Joel; Shemaiah his son, Gog his son, Shimei his son, \nMicah his son, Reaia his son, Baal his son, \nBeerah his son, whom Tilgathpilneser king of Assyria carried away captive: he was prince of the Reubenites. \nAnd his brethren by their families, when the genealogy of their generations was reckoned, were the chief, Jeiel, and Zechariah, \nAnd Bela the son of Azaz, the son of Shema, the son of Joel, who dwelt in Aroer, even unto Nebo and Baalmeon: \nAnd eastward he inhabited unto the entering in of the wilderness from the river Euphrates: because their cattle were multiplied in the land of Gilead. \nAnd in the days of Saul they made war with the Hagarites, who fell by their hand: and they dwelt in their tents throughout all the east land of Gilead. \nAnd the children of Gad dwelt over against them, in the land of Bashan unto Salcah: \nJoel the chief, and Shapham the next, and Jaanai, and Shaphat in Bashan. \nAnd their brethren of the house of their fathers were, Michael, and Meshullam, and Sheba, and Jorai, and Jachan, and Zia, and Heber, seven. \nThese are the children of Abihail the son of Huri, the son of Jaroah, the son of Gilead, the son of Michael, the son of Jeshishai, the son of Jahdo, the son of Buz; \nAhi the son of Abdiel, the son of Guni, chief of the house of their fathers. \nAnd they dwelt in Gilead in Bashan, and in her towns, and in all the suburbs of Sharon, upon their borders. \nAll these were reckoned by genealogies in the days of Jotham king of Judah, and in the days of Jeroboam king of Israel. \nThe sons of Reuben, and the Gadites, and half the tribe of Manasseh, of valiant men, men able to bear buckler and sword, and to shoot with bow, and skilful in war, were four and forty thousand seven hundred and threescore, that went out to the war. \nAnd they made war with the Hagarites, with Jetur, and Nephish, and Nodab. \nAnd they were helped against them, and the Hagarites were delivered into their hand, and all that were with them: for they cried to God in the battle, and he was intreated of them; because they put their trust in him. \nAnd they took away their cattle; of their camels fifty thousand, and of sheep two hundred and fifty thousand, and of asses two thousand, and of men an hundred thousand. \nFor there fell down many slain, because the war was of God. And they dwelt in their steads until the captivity. \nAnd the children of the half tribe of Manasseh dwelt in the land: they increased from Bashan unto Baalhermon and Senir, and unto mount Hermon. \nAnd these were the heads of the house of their fathers, even Epher, and Ishi, and Eliel, and Azriel, and Jeremiah, and Hodaviah, and Jahdiel, mighty men of valour, famous men, and heads of the house of their fathers. \nAnd they transgressed against the God of their fathers, and went a whoring after the gods of the people of the land, whom God destroyed before them. \nAnd the God of Israel stirred up the spirit of Pul king of Assyria, and the spirit of Tilgathpilneser king of Assyria, and he carried them away, even the Reubenites, and the Gadites, and the half tribe of Manasseh, and brought them unto Halah, and Habor, and Hara, and to the river Gozan, unto this day. \nThe sons of Levi; Gershon, Kohath, and Merari. \nAnd the sons of Kohath; Amram, Izhar, and Hebron, and Uzziel. \nAnd the children of Amram; Aaron, and Moses, and Miriam. The sons also of Aaron; Nadab, and Abihu, Eleazar, and Ithamar. \nEleazar begat Phinehas, Phinehas begat Abishua, \nAnd Abishua begat Bukki, and Bukki begat Uzzi, \nAnd Uzzi begat Zerahiah, and Zerahiah begat Meraioth, \nMeraioth begat Amariah, and Amariah begat Ahitub, \nAnd Ahitub begat Zadok, and Zadok begat Ahimaaz, \nAnd Ahimaaz begat Azariah, and Azariah begat Johanan, \nAnd Johanan begat Azariah, (he it is that executed the priest's office in the temple that Solomon built in Jerusalem:) \nAnd Azariah begat Amariah, and Amariah begat Ahitub, \nAnd Ahitub begat Zadok, and Zadok begat Shallum, \nAnd Shallum begat Hilkiah, and Hilkiah begat Azariah, \nAnd Azariah begat Seraiah, and Seraiah begat Jehozadak, \nAnd Jehozadak went into captivity, when the LORD carried away Judah and Jerusalem by the hand of Nebuchadnezzar. \nThe sons of Levi; Gershom, Kohath, and Merari. \nAnd these be the names of the sons of Gershom; Libni, and Shimei. \nAnd the sons of Kohath were, Amram, and Izhar, and Hebron, and Uzziel. \nThe sons of Merari; Mahli, and Mushi. And these are the families of the Levites according to their fathers. \nOf Gershom; Libni his son, Jahath his son, Zimmah his son, \nJoah his son, Iddo his son, Zerah his son, Jeaterai his son. \nThe sons of Kohath; Amminadab his son, Korah his son, Assir his son, \nElkanah his son, and Ebiasaph his son, and Assir his son, \nTahath his son, Uriel his son, Uzziah his son, and Shaul his son. \nAnd the sons of Elkanah; Amasai, and Ahimoth. \nAs for Elkanah: the sons of Elkanah; Zophai his son, and Nahath his son, \nEliab his son, Jeroham his son, Elkanah his son. \nAnd the sons of Samuel; the firstborn Vashni, and Abiah. \nThe sons of Merari; Mahli, Libni his son, Shimei his son, Uzza his son, \nShimea his son, Haggiah his son, Asaiah his son. \nAnd these are they whom David set over the service of song in the house of the LORD, after that the ark had rest. \nAnd they ministered before the dwelling place of the tabernacle of the congregation with singing, until Solomon had built the house of the LORD in Jerusalem: and then they waited on their office according to their order. \nAnd these are they that waited with their children. Of the sons of the Kohathites: Heman a singer, the son of Joel, the son of Shemuel, \nThe son of Elkanah, the son of Jeroham, the son of Eliel, the son of Toah, \nThe son of Zuph, the son of Elkanah, the son of Mahath, the son of Amasai, \nThe son of Elkanah, the son of Joel, the son of Azariah, the son of Zephaniah, \nThe son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah, \nThe son of Izhar, the son of Kohath, the son of Levi, the son of Israel. \nAnd his brother Asaph, who stood on his right hand, even Asaph the son of Berachiah, the son of Shimea, \nThe son of Michael, the son of Baaseiah, the son of Malchiah, \nThe son of Ethni, the son of Zerah, the son of Adaiah, \nThe son of Ethan, the son of Zimmah, the son of Shimei, \nThe son of Jahath, the son of Gershom, the son of Levi. \nAnd their brethren the sons of Merari stood on the left hand: Ethan the son of Kishi, the son of Abdi, the son of Malluch, \nThe son of Hashabiah, the son of Amaziah, the son of Hilkiah, \nThe son of Amzi, the son of Bani, the son of Shamer, \nThe son of Mahli, the son of Mushi, the son of Merari, the son of Levi. \nTheir brethren also the Levites were appointed unto all manner of service of the tabernacle of the house of God. \nBut Aaron and his sons offered upon the altar of the burnt offering, and on the altar of incense, and were appointed for all the work of the place most holy, and to make an atonement for Israel, according to all that Moses the servant of God had commanded. \nAnd these are the sons of Aaron; Eleazar his son, Phinehas his son, Abishua his son, \nBukki his son, Uzzi his son, Zerahiah his son, \nMeraioth his son, Amariah his son, Ahitub his son, \nZadok his son, Ahimaaz his son. \nNow these are their dwelling places throughout their castles in their coasts, of the sons of Aaron, of the families of the Kohathites: for theirs was the lot. \nAnd they gave them Hebron in the land of Judah, and the suburbs thereof round about it. \nBut the fields of the city, and the villages thereof, they gave to Caleb the son of Jephunneh. \nAnd to the sons of Aaron they gave the cities of Judah, namely, Hebron, the city of refuge, and Libnah with her suburbs, and Jattir, and Eshtemoa, with their suburbs, \nAnd Hilen with her suburbs, Debir with her suburbs, \nAnd Ashan with her suburbs, and Bethshemesh with her suburbs: \nAnd out of the tribe of Benjamin; Geba with her suburbs, and Alemeth with her suburbs, and Anathoth with her suburbs. All their cities throughout their families were thirteen cities. \nAnd unto the sons of Kohath, which were left of the family of that tribe, were cities given out of the half tribe, namely, out of the half tribe of Manasseh, by lot, ten cities. \nAnd to the sons of Gershom throughout their families out of the tribe of Issachar, and out of the tribe of Asher, and out of the tribe of Naphtali, and out of the tribe of Manasseh in Bashan, thirteen cities. \nUnto the sons of Merari were given by lot, throughout their families, out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities. \nAnd the children of Israel gave to the Levites these cities with their suburbs. \nAnd they gave by lot out of the tribe of the children of Judah, and out of the tribe of the children of Simeon, and out of the tribe of the children of Benjamin, these cities, which are called by their names. \nAnd the residue of the families of the sons of Kohath had cities of their coasts out of the tribe of Ephraim. \nAnd they gave unto them, of the cities of refuge, Shechem in mount Ephraim with her suburbs; they gave also Gezer with her suburbs, \nAnd Jokmeam with her suburbs, and Bethhoron with her suburbs, \nAnd Aijalon with her suburbs, and Gathrimmon with her suburbs: \nAnd out of the half tribe of Manasseh; Aner with her suburbs, and Bileam with her suburbs, for the family of the remnant of the sons of Kohath. \nUnto the sons of Gershom were given out of the family of the half tribe of Manasseh, Golan in Bashan with her suburbs, and Ashtaroth with her suburbs: \nAnd out of the tribe of Issachar; Kedesh with her suburbs, Daberath with her suburbs, \nAnd Ramoth with her suburbs, and Anem with her suburbs: \nAnd out of the tribe of Asher; Mashal with her suburbs, and Abdon with her suburbs, \nAnd Hukok with her suburbs, and Rehob with her suburbs: \nAnd out of the tribe of Naphtali; Kedesh in Galilee with her suburbs, and Hammon with her suburbs, and Kirjathaim with her suburbs. \nUnto the rest of the children of Merari were given out of the tribe of Zebulun, Rimmon with her suburbs, Tabor with her suburbs: \nAnd on the other side Jordan by Jericho, on the east side of Jordan, were given them out of the tribe of Reuben, Bezer in the wilderness with her suburbs, and Jahzah with her suburbs, \nKedemoth also with her suburbs, and Mephaath with her suburbs: \nAnd out of the tribe of Gad; Ramoth in Gilead with her suburbs, and Mahanaim with her suburbs, \nAnd Heshbon with her suburbs, and Jazer with her suburbs. \nNow the sons of Issachar were, Tola, and Puah, Jashub, and Shimrom, four. \nAnd the sons of Tola; Uzzi, and Rephaiah, and Jeriel, and Jahmai, and Jibsam, and Shemuel, heads of their father's house, to wit, of Tola: they were valiant men of might in their generations; whose number was in the days of David two and twenty thousand and six hundred. \nAnd the sons of Uzzi; Izrahiah: and the sons of Izrahiah; Michael, and Obadiah, and Joel, Ishiah, five: all of them chief men. \nAnd with them, by their generations, after the house of their fathers, were bands of soldiers for war, six and thirty thousand men: for they had many wives and sons. \nAnd their brethren among all the families of Issachar were valiant men of might, reckoned in all by their genealogies fourscore and seven thousand. \nThe sons of Benjamin; Bela, and Becher, and Jediael, three. \nAnd the sons of Bela; Ezbon, and Uzzi, and Uzziel, and Jerimoth, and Iri, five; heads of the house of their fathers, mighty men of valour; and were reckoned by their genealogies twenty and two thousand and thirty and four. \nAnd the sons of Becher; Zemira, and Joash, and Eliezer, and Elioenai, and Omri, and Jerimoth, and Abiah, and Anathoth, and Alameth. All these are the sons of Becher. \nAnd the number of them, after their genealogy by their generations, heads of the house of their fathers, mighty men of valour, was twenty thousand and two hundred. \nThe sons also of Jediael; Bilhan: and the sons of Bilhan; Jeush, and Benjamin, and Ehud, and Chenaanah, and Zethan, and Tharshish, and Ahishahar. \nAll these the sons of Jediael, by the heads of their fathers, mighty men of valour, were seventeen thousand and two hundred soldiers, fit to go out for war and battle. \nShuppim also, and Huppim, the children of Ir, and Hushim, the sons of Aher. \nThe sons of Naphtali; Jahziel, and Guni, and Jezer, and Shallum, the sons of Bilhah. \nThe sons of Manasseh; Ashriel, whom she bare: (but his concubine the Aramitess bare Machir the father of Gilead: \nAnd Machir took to wife the sister of Huppim and Shuppim, whose sister's name was Maachah;) and the name of the second was Zelophehad: and Zelophehad had daughters. \nAnd Maachah the wife of Machir bare a son, and she called his name Peresh; and the name of his brother was Sheresh; and his sons were Ulam and Rakem. \nAnd the sons of Ulam; Bedan. These were the sons of Gilead, the son of Machir, the son of Manasseh. \nAnd his sister Hammoleketh bare Ishod, and Abiezer, and Mahalah. \nAnd the sons of Shemidah were, Ahian, and Shechem, and Likhi, and Aniam. \nAnd the sons of Ephraim; Shuthelah, and Bered his son, and Tahath his son, and Eladah his son, and Tahath his son, \nAnd Zabad his son, and Shuthelah his son, and Ezer, and Elead, whom the men of Gath that were born in that land slew, because they came down to take away their cattle. \nAnd Ephraim their father mourned many days, and his brethren came to comfort him. \nAnd when he went in to his wife, she conceived, and bare a son, and he called his name Beriah, because it went evil with his house. \n(And his daughter was Sherah, who built Bethhoron the nether, and the upper, and Uzzensherah.) \nAnd Rephah was his son, also Resheph, and Telah his son, and Tahan his son. \nLaadan his son, Ammihud his son, Elishama his son. \nNon his son, Jehoshuah his son. \nAnd their possessions and habitations were, Bethel and the towns thereof, and eastward Naaran, and westward Gezer, with the towns thereof; Shechem also and the towns thereof, unto Gaza and the towns thereof: \nAnd by the borders of the children of Manasseh, Bethshean and her towns, Taanach and her towns, Megiddo and her towns, Dor and her towns. In these dwelt the children of Joseph the son of Israel. \nThe sons of Asher; Imnah, and Isuah, and Ishuai, and Beriah, and Serah their sister. \nAnd the sons of Beriah; Heber, and Malchiel, who is the father of Birzavith. \nAnd Heber begat Japhlet, and Shomer, and Hotham, and Shua their sister. \nAnd the sons of Japhlet; Pasach, and Bimhal, and Ashvath. These are the children of Japhlet. \nAnd the sons of Shamer; Ahi, and Rohgah, Jehubbah, and Aram. \nAnd the sons of his brother Helem; Zophah, and Imna, and Shelesh, and Amal. \nThe sons of Zophah; Suah, and Harnepher, and Shual, and Beri, and Imrah, \nBezer, and Hod, and Shamma, and Shilshah, and Ithran, and Beera. \nAnd the sons of Jether; Jephunneh, and Pispah, and Ara. \nAnd the sons of Ulla; Arah, and Haniel, and Rezia. \nAll these were the children of Asher, heads of their father's house, choice and mighty men of valour, chief of the princes. And the number throughout the genealogy of them that were apt to the war and to battle was twenty and six thousand men. \nNow Benjamin begat Bela his firstborn, Ashbel the second, and Aharah the third, \nNohah the fourth, and Rapha the fifth. \nAnd the sons of Bela were, Addar, and Gera, and Abihud, \nAnd Abishua, and Naaman, and Ahoah, \nAnd Gera, and Shephuphan, and Huram. \nAnd these are the sons of Ehud: these are the heads of the fathers of the inhabitants of Geba, and they removed them to Manahath: \nAnd Naaman, and Ahiah, and Gera, he removed them, and begat Uzza, and Ahihud. \nAnd Shaharaim begat children in the country of Moab, after he had sent them away; Hushim and Baara were his wives. \nAnd he begat of Hodesh his wife, Jobab, and Zibia, and Mesha, and Malcham, \nAnd Jeuz, and Shachia, and Mirma. These were his sons, heads of the fathers. \nAnd of Hushim he begat Abitub, and Elpaal. \nThe sons of Elpaal; Eber, and Misham, and Shamed, who built Ono, and Lod, with the towns thereof: \nBeriah also, and Shema, who were heads of the fathers of the inhabitants of Aijalon, who drove away the inhabitants of Gath: \nAnd Ahio, Shashak, and Jeremoth, \nAnd Zebadiah, and Arad, and Ader, \nAnd Michael, and Ispah, and Joha, the sons of Beriah; \nAnd Zebadiah, and Meshullam, and Hezeki, and Heber, \nIshmerai also, and Jezliah, and Jobab, the sons of Elpaal; \nAnd Jakim, and Zichri, and Zabdi, \nAnd Elienai, and Zilthai, and Eliel, \nAnd Adaiah, and Beraiah, and Shimrath, the sons of Shimhi; \nAnd Ishpan, and Heber, and Eliel, \nAnd Abdon, and Zichri, and Hanan, \nAnd Hananiah, and Elam, and Antothijah, \nAnd Iphedeiah, and Penuel, the sons of Shashak; \nAnd Shamsherai, and Shehariah, and Athaliah, \nAnd Jaresiah, and Eliah, and Zichri, the sons of Jeroham. \nThese were heads of the fathers, by their generations, chief men. These dwelt in Jerusalem. \nAnd at Gibeon dwelt the father of Gibeon; whose wife's name was Maachah: \nAnd his firstborn son Abdon, and Zur, and Kish, and Baal, and Nadab, \nAnd Gedor, and Ahio, and Zacher. \nAnd Mikloth begat Shimeah. And these also dwelt with their brethren in Jerusalem, over against them. \nAnd Ner begat Kish, and Kish begat Saul, and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal. \nAnd the son of Jonathan was Meribbaal; and Meribbaal begat Micah. \nAnd the sons of Micah were, Pithon, and Melech, and Tarea, and Ahaz. \nAnd Ahaz begat Jehoadah; and Jehoadah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza, \nAnd Moza begat Binea: Rapha was his son, Eleasah his son, Azel his son: \nAnd Azel had six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan. All these were the sons of Azel. \nAnd the sons of Eshek his brother were, Ulam his firstborn, Jehush the second, and Eliphelet the third. \nAnd the sons of Ulam were mighty men of valour, archers, and had many sons, and sons' sons, an hundred and fifty. All these are of the sons of Benjamin. \nSo all Israel were reckoned by genealogies; and, behold, they were written in the book of the kings of Israel and Judah, who were carried away to Babylon for their transgression. \nNow the first inhabitants that dwelt in their possessions in their cities were, the Israelites, the priests, Levites, and the Nethinims. \nAnd in Jerusalem dwelt of the children of Judah, and of the children of Benjamin, and of the children of Ephraim, and Manasseh; \nUthai the son of Ammihud, the son of Omri, the son of Imri, the son of Bani, of the children of Pharez the son of Judah. \nAnd of the Shilonites; Asaiah the firstborn, and his sons. \nAnd of the sons of Zerah; Jeuel, and their brethren, six hundred and ninety. \nAnd of the sons of Benjamin; Sallu the son of Meshullam, the son of Hodaviah, the son of Hasenuah, \nAnd Ibneiah the son of Jeroham, and Elah the son of Uzzi, the son of Michri, and Meshullam the son of Shephathiah, the son of Reuel, the son of Ibnijah; \nAnd their brethren, according to their generations, nine hundred and fifty and six. All these men were chief of the fathers in the house of their fathers. \nAnd of the priests; Jedaiah, and Jehoiarib, and Jachin, \nAnd Azariah the son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, the ruler of the house of God; \nAnd Adaiah the son of Jeroham, the son of Pashur, the son of Malchijah, and Maasiai the son of Adiel, the son of Jahzerah, the son of Meshullam, the son of Meshillemith, the son of Immer; \nAnd their brethren, heads of the house of their fathers, a thousand and seven hundred and threescore; very able men for the work of the service of the house of God. \nAnd of the Levites; Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, of the sons of Merari; \nAnd Bakbakkar, Heresh, and Galal, and Mattaniah the son of Micah, the son of Zichri, the son of Asaph; \nAnd Obadiah the son of Shemaiah, the son of Galal, the son of Jeduthun, and Berechiah the son of Asa, the son of Elkanah, that dwelt in the villages of the Netophathites. \nAnd the porters were, Shallum, and Akkub, and Talmon, and Ahiman, and their brethren: Shallum was the chief; \nWho hitherto waited in the king's gate eastward: they were porters in the companies of the children of Levi. \nAnd Shallum the son of Kore, the son of Ebiasaph, the son of Korah, and his brethren, of the house of his father, the Korahites, were over the work of the service, keepers of the gates of the tabernacle: and their fathers, being over the host of the LORD, were keepers of the entry. \nAnd Phinehas the son of Eleazar was the ruler over them in time past, and the LORD was with him. \nAnd Zechariah the son of Meshelemiah was porter of the door of the tabernacle of the congregation. \nAll these which were chosen to be porters in the gates were two hundred and twelve. These were reckoned by their genealogy in their villages, whom David and Samuel the seer did ordain in their set office. \nSo they and their children had the oversight of the gates of the house of the LORD, namely, the house of the tabernacle, by wards. \nIn four quarters were the porters, toward the east, west, north, and south. \nAnd their brethren, which were in their villages, were to come after seven days from time to time with them. \nFor these Levites, the four chief porters, were in their set office, and were over the chambers and treasuries of the house of God. \nAnd they lodged round about the house of God, because the charge was upon them, and the opening thereof every morning pertained to them. \nAnd certain of them had the charge of the ministering vessels, that they should bring them in and out by tale. \nSome of them also were appointed to oversee the vessels, and all the instruments of the sanctuary, and the fine flour, and the wine, and the oil, and the frankincense, and the spices. \nAnd some of the sons of the priests made the ointment of the spices. \nAnd Mattithiah, one of the Levites, who was the firstborn of Shallum the Korahite, had the set office over the things that were made in the pans. \nAnd other of their brethren, of the sons of the Kohathites, were over the shewbread, to prepare it every sabbath. \nAnd these are the singers, chief of the fathers of the Levites, who remaining in the chambers were free: for they were employed in that work day and night. \nThese chief fathers of the Levites were chief throughout their generations; these dwelt at Jerusalem. \nAnd in Gibeon dwelt the father of Gibeon, Jehiel, whose wife's name was Maachah: \nAnd his firstborn son Abdon, then Zur, and Kish, and Baal, and Ner, and Nadab. \nAnd Gedor, and Ahio, and Zechariah, and Mikloth. \nAnd Mikloth begat Shimeam. And they also dwelt with their brethren at Jerusalem, over against their brethren. \nAnd Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal. \nAnd the son of Jonathan was Meribbaal: and Meribbaal begat Micah. \nAnd the sons of Micah were, Pithon, and Melech, and Tahrea, and Ahaz. \nAnd Ahaz begat Jarah; and Jarah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza; \nAnd Moza begat Binea; and Rephaiah his son, Eleasah his son, Azel his son. \nAnd Azel had six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan: these were the sons of Azel. \nNow the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa. \nAnd the Philistines followed hard after Saul, and after his sons; and the Philistines slew Jonathan, and Abinadab, and Malchishua, the sons of Saul. \nAnd the battle went sore against Saul, and the archers hit him, and he was wounded of the archers. \nThen said Saul to his armourbearer, Draw thy sword, and thrust me through therewith; lest these uncircumcised come and abuse me. But his armourbearer would not; for he was sore afraid. So Saul took a sword, and fell upon it. \nAnd when his armourbearer saw that Saul was dead, he fell likewise on the sword, and died. \nSo Saul died, and his three sons, and all his house died together. \nAnd when all the men of Israel that were in the valley saw that they fled, and that Saul and his sons were dead, then they forsook their cities, and fled: and the Philistines came and dwelt in them. \nAnd it came to pass on the morrow, when the Philistines came to strip the slain, that they found Saul and his sons fallen in mount Gilboa. \nAnd when they had stripped him, they took his head, and his armour, and sent into the land of the Philistines round about, to carry tidings unto their idols, and to the people. \nAnd they put his armour in the house of their gods, and fastened his head in the temple of Dagon. \nAnd when all Jabeshgilead heard all that the Philistines had done to Saul, \nThey arose, all the valiant men, and took away the body of Saul, and the bodies of his sons, and brought them to Jabesh, and buried their bones under the oak in Jabesh, and fasted seven days. \nSo Saul died for his transgression which he committed against the LORD, even against the word of the LORD, which he kept not, and also for asking counsel of one that had a familiar spirit, to enquire of it; \nAnd enquired not of the LORD: therefore he slew him, and turned the kingdom unto David the son of Jesse. \nThen all Israel gathered themselves to David unto Hebron, saying, Behold, we are thy bone and thy flesh. \nAnd moreover in time past, even when Saul was king, thou wast he that leddest out and broughtest in Israel: and the LORD thy God said unto thee, Thou shalt feed my people Israel, and thou shalt be ruler over my people Israel. \nTherefore came all the elders of Israel to the king to Hebron; and David made a covenant with them in Hebron before the LORD; and they anointed David king over Israel, according to the word of the LORD by Samuel. \nAnd David and all Israel went to Jerusalem, which is Jebus; where the Jebusites were, the inhabitants of the land. \nAnd the inhabitants of Jebus said to David, Thou shalt not come hither. Nevertheless David took the castle of Zion, which is the city of David. \nAnd David said, Whosoever smiteth the Jebusites first shall be chief and captain. So Joab the son of Zeruiah went first up, and was chief. \nAnd David dwelt in the castle; therefore they called it the city of David. \nAnd he built the city round about, even from Millo round about: and Joab repaired the rest of the city. \nSo David waxed greater and greater: for the LORD of hosts was with him. \nThese also are the chief of the mighty men whom David had, who strengthened themselves with him in his kingdom, and with all Israel, to make him king, according to the word of the LORD concerning Israel. \nAnd this is the number of the mighty men whom David had; Jashobeam, an Hachmonite, the chief of the captains: he lifted up his spear against three hundred slain by him at one time. \nAnd after him was Eleazar the son of Dodo, the Ahohite, who was one of the three mighties. \nHe was with David at Pasdammim, and there the Philistines were gathered together to battle, where was a parcel of ground full of barley; and the people fled from before the Philistines. \nAnd they set themselves in the midst of that parcel, and delivered it, and slew the Philistines; and the LORD saved them by a great deliverance. \nNow three of the thirty captains went down to the rock to David, into the cave of Adullam; and the host of the Philistines encamped in the valley of Rephaim. \nAnd David was then in the hold, and the Philistines' garrison was then at Bethlehem. \nAnd David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, that is at the gate! \nAnd the three brake through the host of the Philistines, and drew water out of the well of Bethlehem, that was by the gate, and took it, and brought it to David: but David would not drink of it, but poured it out to the LORD. \nAnd said, My God forbid it me, that I should do this thing: shall I drink the blood of these men that have put their lives in jeopardy? for with the jeopardy of their lives they brought it. Therefore he would not drink it. These things did these three mightiest. \nAnd Abishai the brother of Joab, he was chief of the three: for lifting up his spear against three hundred, he slew them, and had a name among the three. \nOf the three, he was more honourable than the two; for he was their captain: howbeit he attained not to the first three. \nBenaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done many acts; he slew two lionlike men of Moab: also he went down and slew a lion in a pit in a snowy day. \nAnd he slew an Egyptian, a man of great stature, five cubits high; and in the Egyptian's hand was a spear like a weaver's beam; and he went down to him with a staff, and plucked the spear out of the Egyptian's hand, and slew him with his own spear. \nThese things did Benaiah the son of Jehoiada, and had the name among the three mighties. \nBehold, he was honourable among the thirty, but attained not to the first three: and David set him over his guard. \nAlso the valiant men of the armies were, Asahel the brother of Joab, Elhanan the son of Dodo of Bethlehem, \nShammoth the Harorite, Helez the Pelonite, \nIra the son of Ikkesh the Tekoite, Abiezer the Antothite, \nSibbecai the Hushathite, Ilai the Ahohite, \nMaharai the Netophathite, Heled the son of Baanah the Netophathite, \nIthai the son of Ribai of Gibeah, that pertained to the children of Benjamin, Benaiah the Pirathonite, \nHurai of the brooks of Gaash, Abiel the Arbathite, \nAzmaveth the Baharumite, Eliahba the Shaalbonite, \nThe sons of Hashem the Gizonite, Jonathan the son of Shage the Hararite, \nAhiam the son of Sacar the Hararite, Eliphal the son of Ur, \nHepher the Mecherathite, Ahijah the Pelonite, \nHezro the Carmelite, Naarai the son of Ezbai, \nJoel the brother of Nathan, Mibhar the son of Haggeri, \nZelek the Ammonite, Naharai the Berothite, the armourbearer of Joab the son of Zeruiah, \nIra the Ithrite, Gareb the Ithrite, \nUriah the Hittite, Zabad the son of Ahlai, \nAdina the son of Shiza the Reubenite, a captain of the Reubenites, and thirty with him, \nHanan the son of Maachah, and Joshaphat the Mithnite, \nUzzia the Ashterathite, Shama and Jehiel the sons of Hothan the Aroerite, \nJediael the son of Shimri, and Joha his brother, the Tizite, \nEliel the Mahavite, and Jeribai, and Joshaviah, the sons of Elnaam, and Ithmah the Moabite, \nEliel, and Obed, and Jasiel the Mesobaite. \nNow these are they that came to David to Ziklag, while he yet kept himself close because of Saul the son of Kish: and they were among the mighty men, helpers of the war. \nThey were armed with bows, and could use both the right hand and the left in hurling stones and shooting arrows out of a bow, even of Saul's brethren of Benjamin. \nThe chief was Ahiezer, then Joash, the sons of Shemaah the Gibeathite; and Jeziel, and Pelet, the sons of Azmaveth; and Berachah, and Jehu the Antothite. \nAnd Ismaiah the Gibeonite, a mighty man among the thirty, and over the thirty; and Jeremiah, and Jahaziel, and Johanan, and Josabad the Gederathite, \nEluzai, and Jerimoth, and Bealiah, and Shemariah, and Shephatiah the Haruphite, \nElkanah, and Jesiah, and Azareel, and Joezer, and Jashobeam, the Korhites, \nAnd Joelah, and Zebadiah, the sons of Jeroham of Gedor. \nAnd of the Gadites there separated themselves unto David into the hold to the wilderness men of might, and men of war fit for the battle, that could handle shield and buckler, whose faces were like the faces of lions, and were as swift as the roes upon the mountains; \nEzer the first, Obadiah the second, Eliab the third, \nMishmannah the fourth, Jeremiah the fifth, \nAttai the sixth, Eliel the seventh, \nJohanan the eighth, Elzabad the ninth, \nJeremiah the tenth, Machbanai the eleventh. \nThese were of the sons of Gad, captains of the host: one of the least was over an hundred, and the greatest over a thousand. \nThese are they that went over Jordan in the first month, when it had overflown all his banks; and they put to flight all them of the valleys, both toward the east, and toward the west. \nAnd there came of the children of Benjamin and Judah to the hold unto David. \nAnd David went out to meet them, and answered and said unto them, If ye be come peaceably unto me to help me, mine heart shall be knit unto you: but if ye be come to betray me to mine enemies, seeing there is no wrong in mine hands, the God of our fathers look thereon, and rebuke it. \nThen the spirit came upon Amasai, who was chief of the captains, and he said, Thine are we, David, and on thy side, thou son of Jesse: peace, peace be unto thee, and peace be to thine helpers; for thy God helpeth thee. Then David received them, and made them captains of the band. \nAnd there fell some of Manasseh to David, when he came with the Philistines against Saul to battle: but they helped them not: for the lords of the Philistines upon advisement sent him away, saying, He will fall to his master Saul to the jeopardy of our heads. \nAs he went to Ziklag, there fell to him of Manasseh, Adnah, and Jozabad, and Jediael, and Michael, and Jozabad, and Elihu, and Zilthai, captains of the thousands that were of Manasseh. \nAnd they helped David against the band of the rovers: for they were all mighty men of valour, and were captains in the host. \nFor at that time day by day there came to David to help him, until it was a great host, like the host of God. \nAnd these are the numbers of the bands that were ready armed to the war, and came to David to Hebron, to turn the kingdom of Saul to him, according to the word of the LORD. \nThe children of Judah that bare shield and spear were six thousand and eight hundred, ready armed to the war. \nOf the children of Simeon, mighty men of valour for the war, seven thousand and one hundred. \nOf the children of Levi four thousand and six hundred. \nAnd Jehoiada was the leader of the Aaronites, and with him were three thousand and seven hundred; \nAnd Zadok, a young man mighty of valour, and of his father's house twenty and two captains. \nAnd of the children of Benjamin, the kindred of Saul, three thousand: for hitherto the greatest part of them had kept the ward of the house of Saul. \nAnd of the children of Ephraim twenty thousand and eight hundred, mighty men of valour, famous throughout the house of their fathers. \nAnd of the half tribe of Manasseh eighteen thousand, which were expressed by name, to come and make David king. \nAnd of the children of Issachar, which were men that had understanding of the times, to know what Israel ought to do; the heads of them were two hundred; and all their brethren were at their commandment. \nOf Zebulun, such as went forth to battle, expert in war, with all instruments of war, fifty thousand, which could keep rank: they were not of double heart. \nAnd of Naphtali a thousand captains, and with them with shield and spear thirty and seven thousand. \nAnd of the Danites expert in war twenty and eight thousand and six hundred. \nAnd of Asher, such as went forth to battle, expert in war, forty thousand. \nAnd on the other side of Jordan, of the Reubenites, and the Gadites, and of the half tribe of Manasseh, with all manner of instruments of war for the battle, an hundred and twenty thousand. \nAll these men of war, that could keep rank, came with a perfect heart to Hebron, to make David king over all Israel: and all the rest also of Israel were of one heart to make David king. \nAnd there they were with David three days, eating and drinking: for their brethren had prepared for them. \nMoreover they that were nigh them, even unto Issachar and Zebulun and Naphtali, brought bread on asses, and on camels, and on mules, and on oxen, and meat, meal, cakes of figs, and bunches of raisins, and wine, and oil, and oxen, and sheep abundantly: for there was joy in Israel. \nAnd David consulted with the captains of thousands and hundreds, and with every leader. \nAnd David said unto all the congregation of Israel, If it seem good unto you, and that it be of the LORD our God, let us send abroad unto our brethren every where, that are left in all the land of Israel, and with them also to the priests and Levites which are in their cities and suburbs, that they may gather themselves unto us: \nAnd let us bring again the ark of our God to us: for we enquired not at it in the days of Saul. \nAnd all the congregation said that they would do so: for the thing was right in the eyes of all the people. \nSo David gathered all Israel together, from Shihor of Egypt even unto the entering of Hemath, to bring the ark of God from Kirjathjearim. \nAnd David went up, and all Israel, to Baalah, that is, to Kirjathjearim, which belonged to Judah, to bring up thence the ark of God the LORD, that dwelleth between the cherubims, whose name is called on it. \nAnd they carried the ark of God in a new cart out of the house of Abinadab: and Uzza and Ahio drave the cart. \nAnd David and all Israel played before God with all their might, and with singing, and with harps, and with psalteries, and with timbrels, and with cymbals, and with trumpets. \nAnd when they came unto the threshingfloor of Chidon, Uzza put forth his hand to hold the ark; for the oxen stumbled. \nAnd the anger of the LORD was kindled against Uzza, and he smote him, because he put his hand to the ark: and there he died before God. \nAnd David was displeased, because the LORD had made a breach upon Uzza: wherefore that place is called Perezuzza to this day. \nAnd David was afraid of God that day, saying, How shall I bring the ark of God home to me? \nSo David brought not the ark home to himself to the city of David, but carried it aside into the house of Obededom the Gittite. \nAnd the ark of God remained with the family of Obededom in his house three months. And the LORD blessed the house of Obededom, and all that he had. \nNow Hiram king of Tyre sent messengers to David, and timber of cedars, with masons and carpenters, to build him an house. \nAnd David perceived that the LORD had confirmed him king over Israel, for his kingdom was lifted up on high, because of his people Israel. \nAnd David took more wives at Jerusalem: and David begat more sons and daughters. \nNow these are the names of his children which he had in Jerusalem; Shammua, and Shobab, Nathan, and Solomon, \nAnd Ibhar, and Elishua, and Elpalet, \nAnd Nogah, and Nepheg, and Japhia, \nAnd Elishama, and Beeliada, and Eliphalet. \nAnd when the Philistines heard that David was anointed king over all Israel, all the Philistines went up to seek David. And David heard of it, and went out against them. \nAnd the Philistines came and spread themselves in the valley of Rephaim. \nAnd David enquired of God, saying, Shall I go up against the Philistines? And wilt thou deliver them into mine hand? And the LORD said unto him, Go up; for I will deliver them into thine hand. \nSo they came up to Baalperazim; and David smote them there. Then David said, God hath broken in upon mine enemies by mine hand like the breaking forth of waters: therefore they called the name of that place Baalperazim. \nAnd when they had left their gods there, David gave a commandment, and they were burned with fire. \nAnd the Philistines yet again spread themselves abroad in the valley. \nTherefore David enquired again of God; and God said unto him, Go not up after them; turn away from them, and come upon them over against the mulberry trees. \nAnd it shall be, when thou shalt hear a sound of going in the tops of the mulberry trees, that then thou shalt go out to battle: for God is gone forth before thee to smite the host of the Philistines. \nDavid therefore did as God commanded him: and they smote the host of the Philistines from Gibeon even to Gazer. \nAnd the fame of David went out into all lands; and the LORD brought the fear of him upon all nations. \nAnd David made him houses in the city of David, and prepared a place for the ark of God, and pitched for it a tent. \nThen David said, None ought to carry the ark of God but the Levites: for them hath the LORD chosen to carry the ark of God, and to minister unto him for ever. \nAnd David gathered all Israel together to Jerusalem, to bring up the ark of the LORD unto his place, which he had prepared for it. \nAnd David assembled the children of Aaron, and the Levites: \nOf the sons of Kohath; Uriel the chief, and his brethren an hundred and twenty: \nOf the sons of Merari; Asaiah the chief, and his brethren two hundred and twenty: \nOf the sons of Gershom; Joel the chief and his brethren an hundred and thirty: \nOf the sons of Elizaphan; Shemaiah the chief, and his brethren two hundred: \nOf the sons of Hebron; Eliel the chief, and his brethren fourscore: \nOf the sons of Uzziel; Amminadab the chief, and his brethren an hundred and twelve. \nAnd David called for Zadok and Abiathar the priests, and for the Levites, for Uriel, Asaiah, and Joel, Shemaiah, and Eliel, and Amminadab, \nAnd said unto them, Ye are the chief of the fathers of the Levites: sanctify yourselves, both ye and your brethren, that ye may bring up the ark of the LORD God of Israel unto the place that I have prepared for it. \nFor because ye did it not at the first, the LORD our God made a breach upon us, for that we sought him not after the due order. \nSo the priests and the Levites sanctified themselves to bring up the ark of the LORD God of Israel. \nAnd the children of the Levites bare the ark of God upon their shoulders with the staves thereon, as Moses commanded according to the word of the LORD. \nAnd David spake to the chief of the Levites to appoint their brethren to be the singers with instruments of musick, psalteries and harps and cymbals, sounding, by lifting up the voice with joy. \nSo the Levites appointed Heman the son of Joel; and of his brethren, Asaph the son of Berechiah; and of the sons of Merari their brethren, Ethan the son of Kushaiah; \nAnd with them their brethren of the second degree, Zechariah, Ben, and Jaaziel, and Shemiramoth, and Jehiel, and Unni, Eliab, and Benaiah, and Maaseiah, and Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel, the porters. \nSo the singers, Heman, Asaph, and Ethan, were appointed to sound with cymbals of brass; \nAnd Zechariah, and Aziel, and Shemiramoth, and Jehiel, and Unni, and Eliab, and Maaseiah, and Benaiah, with psalteries on Alamoth; \nAnd Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel, and Azaziah, with harps on the Sheminith to excel. \nAnd Chenaniah, chief of the Levites, was for song: he instructed about the song, because he was skilful. \nAnd Berechiah and Elkanah were doorkeepers for the ark. \nAnd Shebaniah, and Jehoshaphat, and Nethaneel, and Amasai, and Zechariah, and Benaiah, and Eliezer, the priests, did blow with the trumpets before the ark of God: and Obededom and Jehiah were doorkeepers for the ark. \nSo David, and the elders of Israel, and the captains over thousands, went to bring up the ark of the covenant of the LORD out of the house of Obededom with joy. \nAnd it came to pass, when God helped the Levites that bare the ark of the covenant of the LORD, that they offered seven bullocks and seven rams. \nAnd David was clothed with a robe of fine linen, and all the Levites that bare the ark, and the singers, and Chenaniah the master of the song with the singers: David also had upon him an ephod of linen. \nThus all Israel brought up the ark of the covenant of the LORD with shouting, and with sound of the cornet, and with trumpets, and with cymbals, making a noise with psalteries and harps. \nAnd it came to pass, as the ark of the covenant of the LORD came to the city of David, that Michal, the daughter of Saul looking out at a window saw king David dancing and playing: and she despised him in her heart. \nSo they brought the ark of God, and set it in the midst of the tent that David had pitched for it: and they offered burnt sacrifices and peace offerings before God. \nAnd when David had made an end of offering the burnt offerings and the peace offerings, he blessed the people in the name of the LORD. \nAnd he dealt to every one of Israel, both man and woman, to every one a loaf of bread, and a good piece of flesh, and a flagon of wine. \nAnd he appointed certain of the Levites to minister before the ark of the LORD, and to record, and to thank and praise the LORD God of Israel: \nAsaph the chief, and next to him Zechariah, Jeiel, and Shemiramoth, and Jehiel, and Mattithiah, and Eliab, and Benaiah, and Obededom: and Jeiel with psalteries and with harps; but Asaph made a sound with cymbals; \nBenaiah also and Jahaziel the priests with trumpets continually before the ark of the covenant of God. \nThen on that day David delivered first this psalm to thank the LORD into the hand of Asaph and his brethren. \nGive thanks unto the LORD, call upon his name, make known his deeds among the people. \nSing unto him, sing psalms unto him, talk ye of all his wondrous works. \nGlory ye in his holy name: let the heart of them rejoice that seek the LORD. \nSeek the LORD and his strength, seek his face continually. \nRemember his marvellous works that he hath done, his wonders, and the judgments of his mouth; \nO ye seed of Israel his servant, ye children of Jacob, his chosen ones. \nHe is the LORD our God; his judgments are in all the earth. \nBe ye mindful always of his covenant; the word which he commanded to a thousand generations; \nEven of the covenant which he made with Abraham, and of his oath unto Isaac; \nAnd hath confirmed the same to Jacob for a law, and to Israel for an everlasting covenant, \nSaying, Unto thee will I give the land of Canaan, the lot of your inheritance; \nWhen ye were but few, even a few, and strangers in it. \nAnd when they went from nation to nation, and from one kingdom to another people; \nHe suffered no man to do them wrong: yea, he reproved kings for their sakes, \nSaying, Touch not mine anointed, and do my prophets no harm. \nSing unto the LORD, all the earth; shew forth from day to day his salvation. \nDeclare his glory among the heathen; his marvellous works among all nations. \nFor great is the LORD, and greatly to be praised: he also is to be feared above all gods. \nFor all the gods of the people are idols: but the LORD made the heavens. \nGlory and honour are in his presence; strength and gladness are in his place. \nGive unto the LORD, ye kindreds of the people, give unto the LORD glory and strength. \nGive unto the LORD the glory due unto his name: bring an offering, and come before him: worship the LORD in the beauty of holiness. \nFear before him, all the earth: the world also shall be stable, that it be not moved. \nLet the heavens be glad, and let the earth rejoice: and let men say among the nations, The LORD reigneth. \nLet the sea roar, and the fulness thereof: let the fields rejoice, and all that is therein. \nThen shall the trees of the wood sing out at the presence of the LORD, because he cometh to judge the earth. \nO give thanks unto the LORD; for he is good; for his mercy endureth for ever. \nAnd say ye, Save us, O God of our salvation, and gather us together, and deliver us from the heathen, that we may give thanks to thy holy name, and glory in thy praise. \nBlessed be the LORD God of Israel for ever and ever. And all the people said, Amen, and praised the LORD. \nSo he left there before the ark of the covenant of the LORD Asaph and his brethren, to minister before the ark continually, as every day's work required: \nAnd Obededom with their brethren, threescore and eight; Obededom also the son of Jeduthun and Hosah to be porters: \nAnd Zadok the priest, and his brethren the priests, before the tabernacle of the LORD in the high place that was at Gibeon, \nTo offer burnt offerings unto the LORD upon the altar of the burnt offering continually morning and evening, and to do according to all that is written in the law of the LORD, which he commanded Israel; \nAnd with them Heman and Jeduthun, and the rest that were chosen, who were expressed by name, to give thanks to the LORD, because his mercy endureth for ever; \nAnd with them Heman and Jeduthun with trumpets and cymbals for those that should make a sound, and with musical instruments of God. And the sons of Jeduthun were porters. \nAnd all the people departed every man to his house: and David returned to bless his house. \nNow it came to pass, as David sat in his house, that David said to Nathan the prophet, Lo, I dwell in an house of cedars, but the ark of the covenant of the LORD remaineth under curtains. \nThen Nathan said unto David, Do all that is in thine heart; for God is with thee. \nAnd it came to pass the same night, that the word of God came to Nathan, saying, \nGo and tell David my servant, Thus saith the LORD, Thou shalt not build me an house to dwell in: \nFor I have not dwelt in an house since the day that I brought up Israel unto this day; but have gone from tent to tent, and from one tabernacle to another. \nWheresoever I have walked with all Israel, spake I a word to any of the judges of Israel, whom I commanded to feed my people, saying, Why have ye not built me an house of cedars? \nNow therefore thus shalt thou say unto my servant David, Thus saith the LORD of hosts, I took thee from the sheepcote, even from following the sheep, that thou shouldest be ruler over my people Israel: \nAnd I have been with thee whithersoever thou hast walked, and have cut off all thine enemies from before thee, and have made thee a name like the name of the great men that are in the earth. \nAlso I will ordain a place for my people Israel, and will plant them, and they shall dwell in their place, and shall be moved no more; neither shall the children of wickedness waste them any more, as at the beginning, \nAnd since the time that I commanded judges to be over my people Israel. Moreover I will subdue all thine enemies. Furthermore I tell thee that the LORD will build thee an house. \nAnd it shall come to pass, when thy days be expired that thou must go to be with thy fathers, that I will raise up thy seed after thee, which shall be of thy sons; and I will establish his kingdom. \nHe shall build me an house, and I will stablish his throne for ever. \nI will be his father, and he shall be my son: and I will not take my mercy away from him, as I took it from him that was before thee: \nBut I will settle him in mine house and in my kingdom for ever: and his throne shall be established for evermore. \nAccording to all these words, and according to all this vision, so did Nathan speak unto David. \nAnd David the king came and sat before the LORD, and said, Who am I, O LORD God, and what is mine house, that thou hast brought me hitherto? \nAnd yet this was a small thing in thine eyes, O God; for thou hast also spoken of thy servant's house for a great while to come, and hast regarded me according to the estate of a man of high degree, O LORD God. \nWhat can David speak more to thee for the honour of thy servant? for thou knowest thy servant. \nO LORD, for thy servant's sake, and according to thine own heart, hast thou done all this greatness, in making known all these great things. \nO LORD, there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears. \nAnd what one nation in the earth is like thy people Israel, whom God went to redeem to be his own people, to make thee a name of greatness and terribleness, by driving out nations from before thy people whom thou hast redeemed out of Egypt? \nFor thy people Israel didst thou make thine own people for ever; and thou, LORD, becamest their God. \nTherefore now, LORD, let the thing that thou hast spoken concerning thy servant and concerning his house be established for ever, and do as thou hast said. \nLet it even be established, that thy name may be magnified for ever, saying, The LORD of hosts is the God of Israel, even a God to Israel: and let the house of David thy servant be established before thee. \nFor thou, O my God, hast told thy servant that thou wilt build him an house: therefore thy servant hath found in his heart to pray before thee. \nAnd now, LORD, thou art God, and hast promised this goodness unto thy servant: \nNow therefore let it please thee to bless the house of thy servant, that it may be before thee for ever: for thou blessest, O LORD, and it shall be blessed for ever. \nNow after this it came to pass, that David smote the Philistines, and subdued them, and took Gath and her towns out of the hand of the Philistines. \nAnd he smote Moab; and the Moabites became David's servants, and brought gifts. \nAnd David smote Hadarezer king of Zobah unto Hamath, as he went to stablish his dominion by the river Euphrates. \nAnd David took from him a thousand chariots, and seven thousand horsemen, and twenty thousand footmen: David also houghed all the chariot horses, but reserved of them an hundred chariots. \nAnd when the Syrians of Damascus came to help Hadarezer king of Zobah, David slew of the Syrians two and twenty thousand men. \nThen David put garrisons in Syriadamascus; and the Syrians became David's servants, and brought gifts. Thus the LORD preserved David whithersoever he went. \nAnd David took the shields of gold that were on the servants of Hadarezer, and brought them to Jerusalem. \nLikewise from Tibhath, and from Chun, cities of Hadarezer, brought David very much brass, wherewith Solomon made the brasen sea, and the pillars, and the vessels of brass. \nNow when Tou king of Hamath heard how David had smitten all the host of Hadarezer king of Zobah; \nHe sent Hadoram his son to king David, to enquire of his welfare, and to congratulate him, because he had fought against Hadarezer, and smitten him; (for Hadarezer had war with Tou;) and with him all manner of vessels of gold and silver and brass. \nThem also king David dedicated unto the LORD, with the silver and the gold that he brought from all these nations; from Edom, and from Moab, and from the children of Ammon, and from the Philistines, and from Amalek. \nMoreover Abishai the son of Zeruiah slew of the Edomites in the valley of salt eighteen thousand. \nAnd he put garrisons in Edom; and all the Edomites became David's servants. Thus the LORD preserved David whithersoever he went. \nSo David reigned over all Israel, and executed judgment and justice among all his people. \nAnd Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud, recorder. \nAnd Zadok the son of Ahitub, and Abimelech the son of Abiathar, were the priests; and Shavsha was scribe; \nAnd Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and the sons of David were chief about the king. \nNow it came to pass after this, that Nahash the king of the children of Ammon died, and his son reigned in his stead. \nAnd David said, I will shew kindness unto Hanun the son of Nahash, because his father shewed kindness to me. And David sent messengers to comfort him concerning his father. So the servants of David came into the land of the children of Ammon to Hanun, to comfort him. \nBut the princes of the children of Ammon said to Hanun, Thinkest thou that David doth honour thy father, that he hath sent comforters unto thee? are not his servants come unto thee for to search, and to overthrow, and to spy out the land? \nWherefore Hanun took David's servants, and shaved them, and cut off their garments in the midst hard by their buttocks, and sent them away. \nThen there went certain, and told David how the men were served. And he sent to meet them: for the men were greatly ashamed. And the king said, Tarry at Jericho until your beards be grown, and then return. \nAnd when the children of Ammon saw that they had made themselves odious to David, Hanun and the children of Ammon sent a thousand talents of silver to hire them chariots and horsemen out of Mesopotamia, and out of Syriamaachah, and out of Zobah. \nSo they hired thirty and two thousand chariots, and the king of Maachah and his people; who came and pitched before Medeba. And the children of Ammon gathered themselves together from their cities, and came to battle. \nAnd when David heard of it, he sent Joab, and all the host of the mighty men. \nAnd the children of Ammon came out, and put the battle in array before the gate of the city: and the kings that were come were by themselves in the field. \nNow when Joab saw that the battle was set against him before and behind, he chose out of all the choice of Israel, and put them in array against the Syrians. \nAnd the rest of the people he delivered unto the hand of Abishai his brother, and they set themselves in array against the children of Ammon. \nAnd he said, If the Syrians be too strong for me, then thou shalt help me: but if the children of Ammon be too strong for thee, then I will help thee. \nBe of good courage, and let us behave ourselves valiantly for our people, and for the cities of our God: and let the LORD do that which is good in his sight. \nSo Joab and the people that were with him drew nigh before the Syrians unto the battle; and they fled before him. \nAnd when the children of Ammon saw that the Syrians were fled, they likewise fled before Abishai his brother, and entered into the city. Then Joab came to Jerusalem. \nAnd when the Syrians saw that they were put to the worse before Israel, they sent messengers, and drew forth the Syrians that were beyond the river: and Shophach the captain of the host of Hadarezer went before them. \nAnd it was told David; and he gathered all Israel, and passed over Jordan, and came upon them, and set the battle in array against them. So when David had put the battle in array against the Syrians, they fought with him. \nBut the Syrians fled before Israel; and David slew of the Syrians seven thousand men which fought in chariots, and forty thousand footmen, and killed Shophach the captain of the host. \nAnd when the servants of Hadarezer saw that they were put to the worse before Israel, they made peace with David, and became his servants: neither would the Syrians help the children of Ammon any more. \nAnd it came to pass, that after the year was expired, at the time that kings go out to battle, Joab led forth the power of the army, and wasted the country of the children of Ammon, and came and besieged Rabbah. But David tarried at Jerusalem. And Joab smote Rabbah, and destroyed it. \nAnd David took the crown of their king from off his head, and found it to weigh a talent of gold, and there were precious stones in it; and it was set upon David's head: and he brought also exceeding much spoil out of the city. \nAnd he brought out the people that were in it, and cut them with saws, and with harrows of iron, and with axes. Even so dealt David with all the cities of the children of Ammon. And David and all the people returned to Jerusalem. \nAnd it came to pass after this, that there arose war at Gezer with the Philistines; at which time Sibbechai the Hushathite slew Sippai, that was of the children of the giant: and they were subdued. \nAnd there was war again with the Philistines; and Elhanan the son of Jair slew Lahmi the brother of Goliath the Gittite, whose spear staff was like a weaver's beam. \nAnd yet again there was war at Gath, where was a man of great stature, whose fingers and toes were four and twenty, six on each hand, and six on each foot and he also was the son of the giant. \nBut when he defied Israel, Jonathan the son of Shimea David's brother slew him. \nThese were born unto the giant in Gath; and they fell by the hand of David, and by the hand of his servants. \nAnd Satan stood up against Israel, and provoked David to number Israel. \nAnd David said to Joab and to the rulers of the people, Go, number Israel from Beersheba even to Dan; and bring the number of them to me, that I may know it. \nAnd Joab answered, The LORD make his people an hundred times so many more as they be: but, my lord the king, are they not all my lord's servants? why then doth my lord require this thing? why will he be a cause of trespass to Israel? \nNevertheless the king's word prevailed against Joab. Wherefore Joab departed, and went throughout all Israel, and came to Jerusalem. \nAnd Joab gave the sum of the number of the people unto David. And all they of Israel were a thousand thousand and an hundred thousand men that drew sword: and Judah was four hundred threescore and ten thousand men that drew sword. \nBut Levi and Benjamin counted he not among them: for the king's word was abominable to Joab. \nAnd God was displeased with this thing; therefore he smote Israel. \nAnd David said unto God, I have sinned greatly, because I have done this thing: but now, I beseech thee, do away the iniquity of thy servant; for I have done very foolishly. \nAnd the LORD spake unto Gad, David's seer, saying, \nGo and tell David, saying, Thus saith the LORD, I offer thee three things: choose thee one of them, that I may do it unto thee. \nSo Gad came to David, and said unto him, Thus saith the LORD, Choose thee \nEither three years' famine; or three months to be destroyed before thy foes, while that the sword of thine enemies overtaketh thee; or else three days the sword of the LORD, even the pestilence, in the land, and the angel of the LORD destroying throughout all the coasts of Israel. Now therefore advise thyself what word I shall bring again to him that sent me. \nAnd David said unto Gad, I am in a great strait: let me fall now into the hand of the LORD; for very great are his mercies: but let me not fall into the hand of man. \nSo the LORD sent pestilence upon Israel: and there fell of Israel seventy thousand men. \nAnd God sent an angel unto Jerusalem to destroy it: and as he was destroying, the LORD beheld, and he repented him of the evil, and said to the angel that destroyed, It is enough, stay now thine hand. And the angel of the LORD stood by the threshingfloor of Ornan the Jebusite. \nAnd David lifted up his eyes, and saw the angel of the LORD stand between the earth and the heaven, having a drawn sword in his hand stretched out over Jerusalem. Then David and the elders of Israel, who were clothed in sackcloth, fell upon their faces. \nAnd David said unto God, Is it not I that commanded the people to be numbered? even I it is that have sinned and done evil indeed; but as for these sheep, what have they done? let thine hand, I pray thee, O LORD my God, be on me, and on my father's house; but not on thy people, that they should be plagued. \nThen the angel of the LORD commanded Gad to say to David, that David should go up, and set up an altar unto the LORD in the threshingfloor of Ornan the Jebusite. \nAnd David went up at the saying of Gad, which he spake in the name of the LORD. \nAnd Ornan turned back, and saw the angel; and his four sons with him hid themselves. Now Ornan was threshing wheat. \nAnd as David came to Ornan, Ornan looked and saw David, and went out of the threshingfloor, and bowed himself to David with his face to the ground. \nThen David said to Ornan, Grant me the place of this threshingfloor, that I may build an altar therein unto the LORD: thou shalt grant it me for the full price: that the plague may be stayed from the people. \nAnd Ornan said unto David, Take it to thee, and let my lord the king do that which is good in his eyes: lo, I give thee the oxen also for burnt offerings, and the threshing instruments for wood, and the wheat for the meat offering; I give it all. \nAnd king David said to Ornan, Nay; but I will verily buy it for the full price: for I will not take that which is thine for the LORD, nor offer burnt offerings without cost. \nSo David gave to Ornan for the place six hundred shekels of gold by weight. \nAnd David built there an altar unto the LORD, and offered burnt offerings and peace offerings, and called upon the LORD; and he answered him from heaven by fire upon the altar of burnt offering. \nAnd the LORD commanded the angel; and he put up his sword again into the sheath thereof. \nAt that time when David saw that the LORD had answered him in the threshingfloor of Ornan the Jebusite, then he sacrificed there. \nFor the tabernacle of the LORD, which Moses made in the wilderness, and the altar of the burnt offering, were at that season in the high place at Gibeon. \nBut David could not go before it to enquire of God: for he was afraid because of the sword of the angel of the LORD. \nThen David said, This is the house of the LORD God, and this is the altar of the burnt offering for Israel. \nAnd David commanded to gather together the strangers that were in the land of Israel; and he set masons to hew wrought stones to build the house of God. \nAnd David prepared iron in abundance for the nails for the doors of the gates, and for the joinings; and brass in abundance without weight; \nAlso cedar trees in abundance: for the Zidonians and they of Tyre brought much cedar wood to David. \nAnd David said, Solomon my son is young and tender, and the house that is to be builded for the LORD must be exceeding magnifical, of fame and of glory throughout all countries: I will therefore now make preparation for it. So David prepared abundantly before his death. \nThen he called for Solomon his son, and charged him to build an house for the LORD God of Israel. \nAnd David said to Solomon, My son, as for me, it was in my mind to build an house unto the name of the LORD my God: \nBut the word of the LORD came to me, saying, Thou hast shed blood abundantly, and hast made great wars: thou shalt not build an house unto my name, because thou hast shed much blood upon the earth in my sight. \nBehold, a son shall be born to thee, who shall be a man of rest; and I will give him rest from all his enemies round about: for his name shall be Solomon, and I will give peace and quietness unto Israel in his days. \nHe shall build an house for my name; and he shall be my son, and I will be his father; and I will establish the throne of his kingdom over Israel for ever. \nNow, my son, the LORD be with thee; and prosper thou, and build the house of the LORD thy God, as he hath said of thee. \nOnly the LORD give thee wisdom and understanding, and give thee charge concerning Israel, that thou mayest keep the law of the LORD thy God. \nThen shalt thou prosper, if thou takest heed to fulfil the statutes and judgments which the LORD charged Moses with concerning Israel: be strong, and of good courage; dread not, nor be dismayed. \nNow, behold, in my trouble I have prepared for the house of the LORD an hundred thousand talents of gold, and a thousand thousand talents of silver; and of brass and iron without weight; for it is in abundance: timber also and stone have I prepared; and thou mayest add thereto. \nMoreover there are workmen with thee in abundance, hewers and workers of stone and timber, and all manner of cunning men for every manner of work. \nOf the gold, the silver, and the brass, and the iron, there is no number. Arise therefore, and be doing, and the LORD be with thee. \nDavid also commanded all the princes of Israel to help Solomon his son, saying, \nIs not the LORD your God with you? and hath he not given you rest on every side? for he hath given the inhabitants of the land into mine hand; and the land is subdued before the LORD, and before his people. \nNow set your heart and your soul to seek the LORD your God; arise therefore, and build ye the sanctuary of the LORD God, to bring the ark of the covenant of the LORD, and the holy vessels of God, into the house that is to be built to the name of the LORD. \nSo when David was old and full of days, he made Solomon his son king over Israel. \nAnd he gathered together all the princes of Israel, with the priests and the Levites. \nNow the Levites were numbered from the age of thirty years and upward: and their number by their polls, man by man, was thirty and eight thousand. \nOf which, twenty and four thousand were to set forward the work of the house of the LORD; and six thousand were officers and judges: \nMoreover four thousand were porters; and four thousand praised the LORD with the instruments which I made, said David, to praise therewith. \nAnd David divided them into courses among the sons of Levi, namely, Gershon, Kohath, and Merari. \nOf the Gershonites were, Laadan, and Shimei. \nThe sons of Laadan; the chief was Jehiel, and Zetham, and Joel, three. \nThe sons of Shimei; Shelomith, and Haziel, and Haran, three. These were the chief of the fathers of Laadan. \nAnd the sons of Shimei were, Jahath, Zina, and Jeush, and Beriah. These four were the sons of Shimei. \nAnd Jahath was the chief, and Zizah the second: but Jeush and Beriah had not many sons; therefore they were in one reckoning, according to their father's house. \nThe sons of Kohath; Amram, Izhar, Hebron, and Uzziel, four. \nThe sons of Amram; Aaron and Moses: and Aaron was separated, that he should sanctify the most holy things, he and his sons for ever, to burn incense before the LORD, to minister unto him, and to bless in his name for ever. \nNow concerning Moses the man of God, his sons were named of the tribe of Levi. \nThe sons of Moses were, Gershom, and Eliezer. \nOf the sons of Gershom, Shebuel was the chief. \nAnd the sons of Eliezer were, Rehabiah the chief. And Eliezer had none other sons; but the sons of Rehabiah were very many. \nOf the sons of Izhar; Shelomith the chief. \nOf the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, and Jekameam the fourth. \nOf the sons of Uzziel; Micah the first and Jesiah the second. \nThe sons of Merari; Mahli, and Mushi. The sons of Mahli; Eleazar, and Kish. \nAnd Eleazar died, and had no sons, but daughters: and their brethren the sons of Kish took them. \nThe sons of Mushi; Mahli, and Eder, and Jeremoth, three. \nThese were the sons of Levi after the house of their fathers; even the chief of the fathers, as they were counted by number of names by their polls, that did the work for the service of the house of the LORD, from the age of twenty years and upward. \nFor David said, The LORD God of Israel hath given rest unto his people, that they may dwell in Jerusalem for ever: \nAnd also unto the Levites; they shall no more carry the tabernacle, nor any vessels of it for the service thereof. \nFor by the last words of David the Levites were numbered from twenty years old and above: \nBecause their office was to wait on the sons of Aaron for the service of the house of the LORD, in the courts, and in the chambers, and in the purifying of all holy things, and the work of the service of the house of God; \nBoth for the shewbread, and for the fine flour for meat offering, and for the unleavened cakes, and for that which is baked in the pan, and for that which is fried, and for all manner of measure and size; \nAnd to stand every morning to thank and praise the LORD, and likewise at even: \nAnd to offer all burnt sacrifices unto the LORD in the sabbaths, in the new moons, and on the set feasts, by number, according to the order commanded unto them, continually before the LORD: \nAnd that they should keep the charge of the tabernacle of the congregation, and the charge of the holy place, and the charge of the sons of Aaron their brethren, in the service of the house of the LORD. \nNow these are the divisions of the sons of Aaron. The sons of Aaron; Nadab, and Abihu, Eleazar, and Ithamar. \nBut Nadab and Abihu died before their father, and had no children: therefore Eleazar and Ithamar executed the priest's office. \nAnd David distributed them, both Zadok of the sons of Eleazar, and Ahimelech of the sons of Ithamar, according to their offices in their service. \nAnd there were more chief men found of the sons of Eleazar than of the sons of Ithamar, and thus were they divided. Among the sons of Eleazar there were sixteen chief men of the house of their fathers, and eight among the sons of Ithamar according to the house of their fathers. \nThus were they divided by lot, one sort with another; for the governors of the sanctuary, and governors of the house of God, were of the sons of Eleazar, and of the sons of Ithamar. \nAnd Shemaiah the son of Nethaneel the scribe, one of the Levites, wrote them before the king, and the princes, and Zadok the priest, and Ahimelech the son of Abiathar, and before the chief of the fathers of the priests and Levites: one principal household being taken for Eleazar, and one taken for Ithamar. \nNow the first lot came forth to Jehoiarib, the second to Jedaiah, \nThe third to Harim, the fourth to Seorim, \nThe fifth to Malchijah, the sixth to Mijamin, \nThe seventh to Hakkoz, the eighth to Abijah, \nThe ninth to Jeshuah, the tenth to Shecaniah, \nThe eleventh to Eliashib, the twelfth to Jakim, \nThe thirteenth to Huppah, the fourteenth to Jeshebeab, \nThe fifteenth to Bilgah, the sixteenth to Immer, \nThe seventeenth to Hezir, the eighteenth to Aphses, \nThe nineteenth to Pethahiah, the twentieth to Jehezekel, \nThe one and twentieth to Jachin, the two and twentieth to Gamul, \nThe three and twentieth to Delaiah, the four and twentieth to Maaziah. \nThese were the orderings of them in their service to come into the house of the LORD, according to their manner, under Aaron their father, as the LORD God of Israel had commanded him. \nAnd the rest of the sons of Levi were these: Of the sons of Amram; Shubael: of the sons of Shubael; Jehdeiah. \nConcerning Rehabiah: of the sons of Rehabiah, the first was Isshiah. \nOf the Izharites; Shelomoth: of the sons of Shelomoth; Jahath. \nAnd the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, Jekameam the fourth. \nOf the sons of Uzziel; Michah: of the sons of Michah; Shamir. \nThe brother of Michah was Isshiah: of the sons of Isshiah; Zechariah. \nThe sons of Merari were Mahli and Mushi: the sons of Jaaziah; Beno. \nThe sons of Merari by Jaaziah; Beno, and Shoham, and Zaccur, and Ibri. \nOf Mahli came Eleazar, who had no sons. \nConcerning Kish: the son of Kish was Jerahmeel. \nThe sons also of Mushi; Mahli, and Eder, and Jerimoth. These were the sons of the Levites after the house of their fathers. \nThese likewise cast lots over against their brethren the sons of Aaron in the presence of David the king, and Zadok, and Ahimelech, and the chief of the fathers of the priests and Levites, even the principal fathers over against their younger brethren. \nMoreover David and the captains of the host separated to the service of the sons of Asaph, and of Heman, and of Jeduthun, who should prophesy with harps, with psalteries, and with cymbals: and the number of the workmen according to their service was: \nOf the sons of Asaph; Zaccur, and Joseph, and Nethaniah, and Asarelah, the sons of Asaph under the hands of Asaph, which prophesied according to the order of the king. \nOf Jeduthun: the sons of Jeduthun; Gedaliah, and Zeri, and Jeshaiah, Hashabiah, and Mattithiah, six, under the hands of their father Jeduthun, who prophesied with a harp, to give thanks and to praise the LORD. \nOf Heman: the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamtiezer, Joshbekashah, Mallothi, Hothir, and Mahazioth: \nAll these were the sons of Heman the king's seer in the words of God, to lift up the horn. And God gave to Heman fourteen sons and three daughters. \nAll these were under the hands of their father for song in the house of the LORD, with cymbals, psalteries, and harps, for the service of the house of God, according to the king's order to Asaph, Jeduthun, and Heman. \nSo the number of them, with their brethren that were instructed in the songs of the LORD, even all that were cunning, was two hundred fourscore and eight. \nAnd they cast lots, ward against ward, as well the small as the great, the teacher as the scholar. \nNow the first lot came forth for Asaph to Joseph: the second to Gedaliah, who with his brethren and sons were twelve: \nThe third to Zaccur, he, his sons, and his brethren, were twelve: \nThe fourth to Izri, he, his sons, and his brethren, were twelve: \nThe fifth to Nethaniah, he, his sons, and his brethren, were twelve: \nThe sixth to Bukkiah, he, his sons, and his brethren, were twelve: \nThe seventh to Jesharelah, he, his sons, and his brethren, were twelve: \nThe eighth to Jeshaiah, he, his sons, and his brethren, were twelve: \nThe ninth to Mattaniah, he, his sons, and his brethren, were twelve: \nThe tenth to Shimei, he, his sons, and his brethren, were twelve: \nThe eleventh to Azareel, he, his sons, and his brethren, were twelve: \nThe twelfth to Hashabiah, he, his sons, and his brethren, were twelve: \nThe thirteenth to Shubael, he, his sons, and his brethren, were twelve: \nThe fourteenth to Mattithiah, he, his sons, and his brethren, were twelve: \nThe fifteenth to Jeremoth, he, his sons, and his brethren, were twelve: \nThe sixteenth to Hananiah, he, his sons, and his brethren, were twelve: \nThe seventeenth to Joshbekashah, he, his sons, and his brethren, were twelve: \nThe eighteenth to Hanani, he, his sons, and his brethren, were twelve: \nThe nineteenth to Mallothi, he, his sons, and his brethren, were twelve: \nThe twentieth to Eliathah, he, his sons, and his brethren, were twelve: \nThe one and twentieth to Hothir, he, his sons, and his brethren, were twelve: \nThe two and twentieth to Giddalti, he, his sons, and his brethren, were twelve: \nThe three and twentieth to Mahazioth, he, his sons, and his brethren, were twelve: \nThe four and twentieth to Romamtiezer, he, his sons, and his brethren, were twelve. \nConcerning the divisions of the porters: Of the Korhites was Meshelemiah the son of Kore, of the sons of Asaph. \nAnd the sons of Meshelemiah were, Zechariah the firstborn, Jediael the second, Zebadiah the third, Jathniel the fourth, \nElam the fifth, Jehohanan the sixth, Elioenai the seventh. \nMoreover the sons of Obededom were, Shemaiah the firstborn, Jehozabad the second, Joah the third, and Sacar the fourth, and Nethaneel the fifth. \nAmmiel the sixth, Issachar the seventh, Peulthai the eighth: for God blessed him. \nAlso unto Shemaiah his son were sons born, that ruled throughout the house of their father: for they were mighty men of valour. \nThe sons of Shemaiah; Othni, and Rephael, and Obed, Elzabad, whose brethren were strong men, Elihu, and Semachiah. \nAll these of the sons of Obededom: they and their sons and their brethren, able men for strength for the service, were threescore and two of Obededom. \nAnd Meshelemiah had sons and brethren, strong men, eighteen. \nAlso Hosah, of the children of Merari, had sons; Simri the chief, (for though he was not the firstborn, yet his father made him the chief;) \nHilkiah the second, Tebaliah the third, Zechariah the fourth: all the sons and brethren of Hosah were thirteen. \nAmong these were the divisions of the porters, even among the chief men, having wards one against another, to minister in the house of the LORD. \nAnd they cast lots, as well the small as the great, according to the house of their fathers, for every gate. \nAnd the lot eastward fell to Shelemiah. Then for Zechariah his son, a wise counsellor, they cast lots; and his lot came out northward. \nTo Obededom southward; and to his sons the house of Asuppim. \nTo Shuppim and Hosah the lot came forth westward, with the gate Shallecheth, by the causeway of the going up, ward against ward. \nEastward were six Levites, northward four a day, southward four a day, and toward Asuppim two and two. \nAt Parbar westward, four at the causeway, and two at Parbar. \nThese are the divisions of the porters among the sons of Kore, and among the sons of Merari. \nAnd of the Levites, Ahijah was over the treasures of the house of God, and over the treasures of the dedicated things. \nAs concerning the sons of Laadan; the sons of the Gershonite Laadan, chief fathers, even of Laadan the Gershonite, were Jehieli. \nThe sons of Jehieli; Zetham, and Joel his brother, which were over the treasures of the house of the LORD. \nOf the Amramites, and the Izharites, the Hebronites, and the Uzzielites: \nAnd Shebuel the son of Gershom, the son of Moses, was ruler of the treasures. \nAnd his brethren by Eliezer; Rehabiah his son, and Jeshaiah his son, and Joram his son, and Zichri his son, and Shelomith his son. \nWhich Shelomith and his brethren were over all the treasures of the dedicated things, which David the king, and the chief fathers, the captains over thousands and hundreds, and the captains of the host, had dedicated. \nOut of the spoils won in battles did they dedicate to maintain the house of the LORD. \nAnd all that Samuel the seer, and Saul the son of Kish, and Abner the son of Ner, and Joab the son of Zeruiah, had dedicated; and whosoever had dedicated any thing, it was under the hand of Shelomith, and of his brethren. \nOf the Izharites, Chenaniah and his sons were for the outward business over Israel, for officers and judges. \nAnd of the Hebronites, Hashabiah and his brethren, men of valour, a thousand and seven hundred, were officers among them of Israel on this side Jordan westward in all the business of the LORD, and in the service of the king. \nAmong the Hebronites was Jerijah the chief, even among the Hebronites, according to the generations of his fathers. In the fortieth year of the reign of David they were sought for, and there were found among them mighty men of valour at Jazer of Gilead. \nAnd his brethren, men of valour, were two thousand and seven hundred chief fathers, whom king David made rulers over the Reubenites, the Gadites, and the half tribe of Manasseh, for every matter pertaining to God, and affairs of the king. \nNow the children of Israel after their number, to wit, the chief fathers and captains of thousands and hundreds, and their officers that served the king in any matter of the courses, which came in and went out month by month throughout all the months of the year, of every course were twenty and four thousand. \nOver the first course for the first month was Jashobeam the son of Zabdiel: and in his course were twenty and four thousand. \nOf the children of Perez was the chief of all the captains of the host for the first month. \nAnd over the course of the second month was Dodai an Ahohite, and of his course was Mikloth also the ruler: in his course likewise were twenty and four thousand. \nThe third captain of the host for the third month was Benaiah the son of Jehoiada, a chief priest: and in his course were twenty and four thousand. \nThis is that Benaiah, who was mighty among the thirty, and above the thirty: and in his course was Ammizabad his son. \nThe fourth captain for the fourth month was Asahel the brother of Joab, and Zebadiah his son after him: and in his course were twenty and four thousand. \nThe fifth captain for the fifth month was Shamhuth the Izrahite: and in his course were twenty and four thousand. \nThe sixth captain for the sixth month was Ira the son of Ikkesh the Tekoite: and in his course were twenty and four thousand. \nThe seventh captain for the seventh month was Helez the Pelonite, of the children of Ephraim: and in his course were twenty and four thousand. \nThe eighth captain for the eighth month was Sibbecai the Hushathite, of the Zarhites: and in his course were twenty and four thousand. \nThe ninth captain for the ninth month was Abiezer the Anetothite, of the Benjamites: and in his course were twenty and four thousand. \nThe tenth captain for the tenth month was Maharai the Netophathite, of the Zarhites: and in his course were twenty and four thousand. \nThe eleventh captain for the eleventh month was Benaiah the Pirathonite, of the children of Ephraim: and in his course were twenty and four thousand. \nThe twelfth captain for the twelfth month was Heldai the Netophathite, of Othniel: and in his course were twenty and four thousand. \nFurthermore over the tribes of Israel: the ruler of the Reubenites was Eliezer the son of Zichri: of the Simeonites, Shephatiah the son of Maachah: \nOf the Levites, Hashabiah the son of Kemuel: of the Aaronites, Zadok: \nOf Judah, Elihu, one of the brethren of David: of Issachar, Omri the son of Michael: \nOf Zebulun, Ishmaiah the son of Obadiah: of Naphtali, Jerimoth the son of Azriel: \nOf the children of Ephraim, Hoshea the son of Azaziah: of the half tribe of Manasseh, Joel the son of Pedaiah: \nOf the half tribe of Manasseh in Gilead, Iddo the son of Zechariah: of Benjamin, Jaasiel the son of Abner: \nOf Dan, Azareel the son of Jeroham. These were the princes of the tribes of Israel. \nBut David took not the number of them from twenty years old and under: because the LORD had said he would increase Israel like to the stars of the heavens. \nJoab the son of Zeruiah began to number, but he finished not, because there fell wrath for it against Israel; neither was the number put in the account of the chronicles of king David. \nAnd over the king's treasures was Azmaveth the son of Adiel: and over the storehouses in the fields, in the cities, and in the villages, and in the castles, was Jehonathan the son of Uzziah: \nAnd over them that did the work of the field for tillage of the ground was Ezri the son of Chelub: \nAnd over the vineyards was Shimei the Ramathite: over the increase of the vineyards for the wine cellars was Zabdi the Shiphmite: \nAnd over the olive trees and the sycomore trees that were in the low plains was Baalhanan the Gederite: and over the cellars of oil was Joash: \nAnd over the herds that fed in Sharon was Shitrai the Sharonite: and over the herds that were in the valleys was Shaphat the son of Adlai: \nOver the camels also was Obil the Ishmaelite: and over the asses was Jehdeiah the Meronothite: \nAnd over the flocks was Jaziz the Hagerite. All these were the rulers of the substance which was king David's. \nAlso Jonathan David's uncle was a counsellor, a wise man, and a scribe: and Jehiel the son of Hachmoni was with the king's sons: \nAnd Ahithophel was the king's counsellor: and Hushai the Archite was the king's companion: \nAnd after Ahithophel was Jehoiada the son of Benaiah, and Abiathar: and the general of the king's army was Joab. \nAnd David assembled all the princes of Israel, the princes of the tribes, and the captains of the companies that ministered to the king by course, and the captains over the thousands, and captains over the hundreds, and the stewards over all the substance and possession of the king, and of his sons, with the officers, and with the mighty men, and with all the valiant men, unto Jerusalem. \nThen David the king stood up upon his feet, and said, Hear me, my brethren, and my people: As for me, I had in mine heart to build an house of rest for the ark of the covenant of the LORD, and for the footstool of our God, and had made ready for the building: \nBut God said unto me, Thou shalt not build an house for my name, because thou hast been a man of war, and hast shed blood. \nHowbeit the LORD God of Israel chose me before all the house of my father to be king over Israel for ever: for he hath chosen Judah to be the ruler; and of the house of Judah, the house of my father; and among the sons of my father he liked me to make me king over all Israel: \nAnd of all my sons, (for the LORD hath given me many sons,) he hath chosen Solomon my son to sit upon the throne of the kingdom of the LORD over Israel. \nAnd he said unto me, Solomon thy son, he shall build my house and my courts: for I have chosen him to be my son, and I will be his father. \nMoreover I will establish his kingdom for ever, if he be constant to do my commandments and my judgments, as at this day. \nNow therefore in the sight of all Israel the congregation of the LORD, and in the audience of our God, keep and seek for all the commandments of the LORD your God: that ye may possess this good land, and leave it for an inheritance for your children after you for ever. \nAnd thou, Solomon my son, know thou the God of thy father, and serve him with a perfect heart and with a willing mind: for the LORD searcheth all hearts, and understandeth all the imaginations of the thoughts: if thou seek him, he will be found of thee; but if thou forsake him, he will cast thee off for ever. \nTake heed now; for the LORD hath chosen thee to build an house for the sanctuary: be strong, and do it. \nThen David gave to Solomon his son the pattern of the porch, and of the houses thereof, and of the treasuries thereof, and of the upper chambers thereof, and of the inner parlours thereof, and of the place of the mercy seat, \nAnd the pattern of all that he had by the spirit, of the courts of the house of the LORD, and of all the chambers round about, of the treasuries of the house of God, and of the treasuries of the dedicated things: \nAlso for the courses of the priests and the Levites, and for all the work of the service of the house of the LORD, and for all the vessels of service in the house of the LORD. \nHe gave of gold by weight for things of gold, for all instruments of all manner of service; silver also for all instruments of silver by weight, for all instruments of every kind of service: \nEven the weight for the candlesticks of gold, and for their lamps of gold, by weight for every candlestick, and for the lamps thereof: and for the candlesticks of silver by weight, both for the candlestick, and also for the lamps thereof, according to the use of every candlestick. \nAnd by weight he gave gold for the tables of shewbread, for every table; and likewise silver for the tables of silver: \nAlso pure gold for the fleshhooks, and the bowls, and the cups: and for the golden basons he gave gold by weight for every bason; and likewise silver by weight for every bason of silver: \nAnd for the altar of incense refined gold by weight; and gold for the pattern of the chariot of the cherubims, that spread out their wings, and covered the ark of the covenant of the LORD. \nAll this, said David, the LORD made me understand in writing by his hand upon me, even all the works of this pattern. \nAnd David said to Solomon his son, Be strong and of good courage, and do it: fear not, nor be dismayed: for the LORD God, even my God, will be with thee; he will not fail thee, nor forsake thee, until thou hast finished all the work for the service of the house of the LORD. \nAnd, behold, the courses of the priests and the Levites, even they shall be with thee for all the service of the house of God: and there shall be with thee for all manner of workmanship every willing skilful man, for any manner of service: also the princes and all the people will be wholly at thy commandment. \nFurthermore David the king said unto all the congregation, Solomon my son, whom alone God hath chosen, is yet young and tender, and the work is great: for the palace is not for man, but for the LORD God. \nNow I have prepared with all my might for the house of my God the gold for things to be made of gold, and the silver for things of silver, and the brass for things of brass, the iron for things of iron, and wood for things of wood; onyx stones, and stones to be set, glistering stones, and of divers colours, and all manner of precious stones, and marble stones in abundance. \nMoreover, because I have set my affection to the house of my God, I have of mine own proper good, of gold and silver, which I have given to the house of my God, over and above all that I have prepared for the holy house. \nEven three thousand talents of gold, of the gold of Ophir, and seven thousand talents of refined silver, to overlay the walls of the houses withal: \nThe gold for things of gold, and the silver for things of silver, and for all manner of work to be made by the hands of artificers. And who then is willing to consecrate his service this day unto the LORD? \nThen the chief of the fathers and princes of the tribes of Israel and the captains of thousands and of hundreds, with the rulers of the king's work, offered willingly, \nAnd gave for the service of the house of God of gold five thousand talents and ten thousand drams, and of silver ten thousand talents, and of brass eighteen thousand talents, and one hundred thousand talents of iron. \nAnd they with whom precious stones were found gave them to the treasure of the house of the LORD, by the hand of Jehiel the Gershonite. \nThen the people rejoiced, for that they offered willingly, because with perfect heart they offered willingly to the LORD: and David the king also rejoiced with great joy. \nWherefore David blessed the LORD before all the congregation: and David said, Blessed be thou, LORD God of Israel our father, for ever and ever. \nThine, O LORD is the greatness, and the power, and the glory, and the victory, and the majesty: for all that is in the heaven and in the earth is thine; thine is the kingdom, O LORD, and thou art exalted as head above all. \nBoth riches and honour come of thee, and thou reignest over all; and in thine hand is power and might; and in thine hand it is to make great, and to give strength unto all. \nNow therefore, our God, we thank thee, and praise thy glorious name. \nBut who am I, and what is my people, that we should be able to offer so willingly after this sort? for all things come of thee, and of thine own have we given thee. \nFor we are strangers before thee, and sojourners, as were all our fathers: our days on the earth are as a shadow, and there is none abiding. \nO LORD our God, all this store that we have prepared to build thee an house for thine holy name cometh of thine hand, and is all thine own. \nI know also, my God, that thou triest the heart, and hast pleasure in uprightness. As for me, in the uprightness of mine heart I have willingly offered all these things: and now have I seen with joy thy people, which are present here, to offer willingly unto thee. \nO LORD God of Abraham, Isaac, and of Israel, our fathers, keep this for ever in the imagination of the thoughts of the heart of thy people, and prepare their heart unto thee: \nAnd give unto Solomon my son a perfect heart, to keep thy commandments, thy testimonies, and thy statutes, and to do all these things, and to build the palace, for the which I have made provision. \nAnd David said to all the congregation, Now bless the LORD your God. And all the congregation blessed the LORD God of their fathers, and bowed down their heads, and worshipped the LORD, and the king. \nAnd they sacrificed sacrifices unto the LORD, and offered burnt offerings unto the LORD, on the morrow after that day, even a thousand bullocks, a thousand rams, and a thousand lambs, with their drink offerings, and sacrifices in abundance for all Israel: \nAnd did eat and drink before the LORD on that day with great gladness. And they made Solomon the son of David king the second time, and anointed him unto the LORD to be the chief governor, and Zadok to be priest. \nThen Solomon sat on the throne of the LORD as king instead of David his father, and prospered; and all Israel obeyed him. \nAnd all the princes, and the mighty men, and all the sons likewise of king David, submitted themselves unto Solomon the king. \nAnd the LORD magnified Solomon exceedingly in the sight of all Israel, and bestowed upon him such royal majesty as had not been on any king before him in Israel. \nThus David the son of Jesse reigned over all Israel. \nAnd the time that he reigned over Israel was forty years; seven years reigned he in Hebron, and thirty and three years reigned he in Jerusalem. \nAnd he died in a good old age, full of days, riches, and honour: and Solomon his son reigned in his stead. \nNow the acts of David the king, first and last, behold, they are written in the book of Samuel the seer, and in the book of Nathan the prophet, and in the book of Gad the seer, \nWith all his reign and his might, and the times that went over him, and over Israel, and over all the kingdoms of the countries. \nAnd Solomon the son of David was strengthened in his kingdom, and the LORD his God was with him, and magnified him exceedingly. \nThen Solomon spake unto all Israel, to the captains of thousands and of hundreds, and to the judges, and to every governor in all Israel, the chief of the fathers. \nSo Solomon, and all the congregation with him, went to the high place that was at Gibeon; for there was the tabernacle of the congregation of God, which Moses the servant of the LORD had made in the wilderness. \nBut the ark of God had David brought up from Kirjathjearim to the place which David had prepared for it: for he had pitched a tent for it at Jerusalem. \nMoreover the brasen altar, that Bezaleel the son of Uri, the son of Hur, had made, he put before the tabernacle of the LORD: and Solomon and the congregation sought unto it. \nAnd Solomon went up thither to the brasen altar before the LORD, which was at the tabernacle of the congregation, and offered a thousand burnt offerings upon it. \nIn that night did God appear unto Solomon, and said unto him, Ask what I shall give thee. \nAnd Solomon said unto God, Thou hast shewed great mercy unto David my father, and hast made me to reign in his stead. \nNow, O LORD God, let thy promise unto David my father be established: for thou hast made me king over a people like the dust of the earth in multitude. \nGive me now wisdom and knowledge, that I may go out and come in before this people: for who can judge this thy people, that is so great? \nAnd God said to Solomon, Because this was in thine heart, and thou hast not asked riches, wealth, or honour, nor the life of thine enemies, neither yet hast asked long life; but hast asked wisdom and knowledge for thyself, that thou mayest judge my people, over whom I have made thee king: \nWisdom and knowledge is granted unto thee; and I will give thee riches, and wealth, and honour, such as none of the kings have had that have been before thee, neither shall there any after thee have the like. \nThen Solomon came from his journey to the high place that was at Gibeon to Jerusalem, from before the tabernacle of the congregation, and reigned over Israel. \nAnd Solomon gathered chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, which he placed in the chariot cities, and with the king at Jerusalem. \nAnd the king made silver and gold at Jerusalem as plenteous as stones, and cedar trees made he as the sycomore trees that are in the vale for abundance. \nAnd Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price. \nAnd they fetched up, and brought forth out of Egypt a chariot for six hundred shekels of silver, and an horse for an hundred and fifty: and so brought they out horses for all the kings of the Hittites, and for the kings of Syria, by their means. \nAnd Solomon determined to build an house for the name of the LORD, and an house for his kingdom. \nAnd Solomon told out threescore and ten thousand men to bear burdens, and fourscore thousand to hew in the mountain, and three thousand and six hundred to oversee them. \nAnd Solomon sent to Huram the king of Tyre, saying, As thou didst deal with David my father, and didst send him cedars to build him an house to dwell therein, even so deal with me. \nBehold, I build an house to the name of the LORD my God, to dedicate it to him, and to burn before him sweet incense, and for the continual shewbread, and for the burnt offerings morning and evening, on the sabbaths, and on the new moons, and on the solemn feasts of the LORD our God. This is an ordinance for ever to Israel. \nAnd the house which I build is great: for great is our God above all gods. \nBut who is able to build him an house, seeing the heaven and heaven of heavens cannot contain him? who am I then, that I should build him an house, save only to burn sacrifice before him? \nSend me now therefore a man cunning to work in gold, and in silver, and in brass, and in iron, and in purple, and crimson, and blue, and that can skill to grave with the cunning men that are with me in Judah and in Jerusalem, whom David my father did provide. \nSend me also cedar trees, fir trees, and algum trees, out of Lebanon: for I know that thy servants can skill to cut timber in Lebanon; and, behold, my servants shall be with thy servants, \nEven to prepare me timber in abundance: for the house which I am about to build shall be wonderful great. \nAnd, behold, I will give to thy servants, the hewers that cut timber, twenty thousand measures of beaten wheat, and twenty thousand measures of barley, and twenty thousand baths of wine, and twenty thousand baths of oil. \nThen Huram the king of Tyre answered in writing, which he sent to Solomon, Because the LORD hath loved his people, he hath made thee king over them. \nHuram said moreover, Blessed be the LORD God of Israel, that made heaven and earth, who hath given to David the king a wise son, endued with prudence and understanding, that might build an house for the LORD, and an house for his kingdom. \nAnd now I have sent a cunning man, endued with understanding, of Huram my father's, \nThe son of a woman of the daughters of Dan, and his father was a man of Tyre, skilful to work in gold, and in silver, in brass, in iron, in stone, and in timber, in purple, in blue, and in fine linen, and in crimson; also to grave any manner of graving, and to find out every device which shall be put to him, with thy cunning men, and with the cunning men of my lord David thy father. \nNow therefore the wheat, and the barley, the oil, and the wine, which my lord hath spoken of, let him send unto his servants: \nAnd we will cut wood out of Lebanon, as much as thou shalt need: and we will bring it to thee in floats by sea to Joppa; and thou shalt carry it up to Jerusalem. \nAnd Solomon numbered all the strangers that were in the land of Israel, after the numbering wherewith David his father had numbered them; and they were found an hundred and fifty thousand and three thousand and six hundred. \nAnd he set threescore and ten thousand of them to be bearers of burdens, and fourscore thousand to be hewers in the mountain, and three thousand and six hundred overseers to set the people a work. \nThen Solomon began to build the house of the LORD at Jerusalem in mount Moriah, where the Lord appeared unto David his father, in the place that David had prepared in the threshingfloor of Ornan the Jebusite. \nAnd he began to build in the second day of the second month, in the fourth year of his reign. \nNow these are the things wherein Solomon was instructed for the building of the house of God. The length by cubits after the first measure was threescore cubits, and the breadth twenty cubits. \nAnd the porch that was in the front of the house, the length of it was according to the breadth of the house, twenty cubits, and the height was an hundred and twenty: and he overlaid it within with pure gold. \nAnd the greater house he cieled with fir tree, which he overlaid with fine gold, and set thereon palm trees and chains. \nAnd he garnished the house with precious stones for beauty: and the gold was gold of Parvaim. \nHe overlaid also the house, the beams, the posts, and the walls thereof, and the doors thereof, with gold; and graved cherubims on the walls. \nAnd he made the most holy house, the length whereof was according to the breadth of the house, twenty cubits, and the breadth thereof twenty cubits: and he overlaid it with fine gold, amounting to six hundred talents. \nAnd the weight of the nails was fifty shekels of gold. And he overlaid the upper chambers with gold. \nAnd in the most holy house he made two cherubims of image work, and overlaid them with gold. \nAnd the wings of the cherubims were twenty cubits long: one wing of the one cherub was five cubits, reaching to the wall of the house: and the other wing was likewise five cubits, reaching to the wing of the other cherub. \nAnd one wing of the other cherub was five cubits, reaching to the wall of the house: and the other wing was five cubits also, joining to the wing of the other cherub. \nThe wings of these cherubims spread themselves forth twenty cubits: and they stood on their feet, and their faces were inward. \nAnd he made the vail of blue, and purple, and crimson, and fine linen, and wrought cherubims thereon. \nAlso he made before the house two pillars of thirty and five cubits high, and the chapiter that was on the top of each of them was five cubits. \nAnd he made chains, as in the oracle, and put them on the heads of the pillars; and made an hundred pomegranates, and put them on the chains. \nAnd he reared up the pillars before the temple, one on the right hand, and the other on the left; and called the name of that on the right hand Jachin, and the name of that on the left Boaz. \nMoreover he made an altar of brass, twenty cubits the length thereof, and twenty cubits the breadth thereof, and ten cubits the height thereof. \nAlso he made a molten sea of ten cubits from brim to brim, round in compass, and five cubits the height thereof; and a line of thirty cubits did compass it round about. \nAnd under it was the similitude of oxen, which did compass it round about: ten in a cubit, compassing the sea round about. Two rows of oxen were cast, when it was cast. \nIt stood upon twelve oxen, three looking toward the north, and three looking toward the west, and three looking toward the south, and three looking toward the east: and the sea was set above upon them, and all their hinder parts were inward. \nAnd the thickness of it was an handbreadth, and the brim of it like the work of the brim of a cup, with flowers of lilies; and it received and held three thousand baths. \nHe made also ten lavers, and put five on the right hand, and five on the left, to wash in them: such things as they offered for the burnt offering they washed in them; but the sea was for the priests to wash in. \nAnd he made ten candlesticks of gold according to their form, and set them in the temple, five on the right hand, and five on the left. \nHe made also ten tables, and placed them in the temple, five on the right side, and five on the left. And he made an hundred basons of gold. \nFurthermore he made the court of the priests, and the great court, and doors for the court, and overlaid the doors of them with brass. \nAnd he set the sea on the right side of the east end, over against the south. \nAnd Huram made the pots, and the shovels, and the basons. And Huram finished the work that he was to make for king Solomon for the house of God; \nTo wit, the two pillars, and the pommels, and the chapiters which were on the top of the two pillars, and the two wreaths to cover the two pommels of the chapiters which were on the top of the pillars; \nAnd four hundred pomegranates on the two wreaths; two rows of pomegranates on each wreath, to cover the two pommels of the chapiters which were upon the pillars. \nHe made also bases, and lavers made he upon the bases; \nOne sea, and twelve oxen under it. \nThe pots also, and the shovels, and the fleshhooks, and all their instruments, did Huram his father make to king Solomon for the house of the LORD of bright brass. \nIn the plain of Jordan did the king cast them, in the clay ground between Succoth and Zeredathah. \nThus Solomon made all these vessels in great abundance: for the weight of the brass could not be found out. \nAnd Solomon made all the vessels that were for the house of God, the golden altar also, and the tables whereon the shewbread was set; \nMoreover the candlesticks with their lamps, that they should burn after the manner before the oracle, of pure gold; \nAnd the flowers, and the lamps, and the tongs, made he of gold, and that perfect gold; \nAnd the snuffers, and the basons, and the spoons, and the censers, of pure gold: and the entry of the house, the inner doors thereof for the most holy place, and the doors of the house of the temple, were of gold. \nThus all the work that Solomon made for the house of the LORD was finished: and Solomon brought in all the things that David his father had dedicated; and the silver, and the gold, and all the instruments, put he among the treasures of the house of God. \nThen Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers of the children of Israel, unto Jerusalem, to bring up the ark of the covenant of the LORD out of the city of David, which is Zion. \nWherefore all the men of Israel assembled themselves unto the king in the feast which was in the seventh month. \nAnd all the elders of Israel came; and the Levites took up the ark. \nAnd they brought up the ark, and the tabernacle of the congregation, and all the holy vessels that were in the tabernacle, these did the priests and the Levites bring up. \nAlso king Solomon, and all the congregation of Israel that were assembled unto him before the ark, sacrificed sheep and oxen, which could not be told nor numbered for multitude. \nAnd the priests brought in the ark of the covenant of the LORD unto his place, to the oracle of the house, into the most holy place, even under the wings of the cherubims: \nFor the cherubims spread forth their wings over the place of the ark, and the cherubims covered the ark and the staves thereof above. \nAnd they drew out the staves of the ark, that the ends of the staves were seen from the ark before the oracle; but they were not seen without. And there it is unto this day. \nThere was nothing in the ark save the two tables which Moses put therein at Horeb, when the LORD made a covenant with the children of Israel, when they came out of Egypt. \nAnd it came to pass, when the priests were come out of the holy place: (for all the priests that were present were sanctified, and did not then wait by course: \nAlso the Levites which were the singers, all of them of Asaph, of Heman, of Jeduthun, with their sons and their brethren, being arrayed in white linen, having cymbals and psalteries and harps, stood at the east end of the altar, and with them an hundred and twenty priests sounding with trumpets:) \nIt came even to pass, as the trumpeters and singers were as one, to make one sound to be heard in praising and thanking the LORD; and when they lifted up their voice with the trumpets and cymbals and instruments of musick, and praised the LORD, saying, For he is good; for his mercy endureth for ever: that then the house was filled with a cloud, even the house of the LORD; \nSo that the priests could not stand to minister by reason of the cloud: for the glory of the LORD had filled the house of God. \nThen said Solomon, The LORD hath said that he would dwell in the thick darkness. \nBut I have built an house of habitation for thee, and a place for thy dwelling for ever. \nAnd the king turned his face, and blessed the whole congregation of Israel: and all the congregation of Israel stood. \nAnd he said, Blessed be the LORD God of Israel, who hath with his hands fulfilled that which he spake with his mouth to my father David, saying, \nSince the day that I brought forth my people out of the land of Egypt I chose no city among all the tribes of Israel to build an house in, that my name might be there; neither chose I any man to be a ruler over my people Israel: \nBut I have chosen Jerusalem, that my name might be there; and have chosen David to be over my people Israel. \nNow it was in the heart of David my father to build an house for the name of the LORD God of Israel. \nBut the LORD said to David my father, Forasmuch as it was in thine heart to build an house for my name, thou didst well in that it was in thine heart: \nNotwithstanding thou shalt not build the house; but thy son which shall come forth out of thy loins, he shall build the house for my name. \nThe LORD therefore hath performed his word that he hath spoken: for I am risen up in the room of David my father, and am set on the throne of Israel, as the LORD promised, and have built the house for the name of the LORD God of Israel. \nAnd in it have I put the ark, wherein is the covenant of the LORD, that he made with the children of Israel. \nAnd he stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands: \nFor Solomon had made a brasen scaffold of five cubits long, and five cubits broad, and three cubits high, and had set it in the midst of the court: and upon it he stood, and kneeled down upon his knees before all the congregation of Israel, and spread forth his hands toward heaven. \nAnd said, O LORD God of Israel, there is no God like thee in the heaven, nor in the earth; which keepest covenant, and shewest mercy unto thy servants, that walk before thee with all their hearts: \nThou which hast kept with thy servant David my father that which thou hast promised him; and spakest with thy mouth, and hast fulfilled it with thine hand, as it is this day. \nNow therefore, O LORD God of Israel, keep with thy servant David my father that which thou hast promised him, saying, There shall not fail thee a man in my sight to sit upon the throne of Israel; yet so that thy children take heed to their way to walk in my law, as thou hast walked before me. \nNow then, O LORD God of Israel, let thy word be verified, which thou hast spoken unto thy servant David. \nBut will God in very deed dwell with men on the earth? behold, heaven and the heaven of heavens cannot contain thee; how much less this house which I have built! \nHave respect therefore to the prayer of thy servant, and to his supplication, O LORD my God, to hearken unto the cry and the prayer which thy servant prayeth before thee: \nThat thine eyes may be open upon this house day and night, upon the place whereof thou hast said that thou wouldest put thy name there; to hearken unto the prayer which thy servant prayeth toward this place. \nHearken therefore unto the supplications of thy servant, and of thy people Israel, which they shall make toward this place: hear thou from thy dwelling place, even from heaven; and when thou hearest, forgive. \nIf a man sin against his neighbour, and an oath be laid upon him to make him swear, and the oath come before thine altar in this house; \nThen hear thou from heaven, and do, and judge thy servants, by requiting the wicked, by recompensing his way upon his own head; and by justifying the righteous, by giving him according to his righteousness. \nAnd if thy people Israel be put to the worse before the enemy, because they have sinned against thee; and shall return and confess thy name, and pray and make supplication before thee in this house; \nThen hear thou from the heavens, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest to them and to their fathers. \nWhen the heaven is shut up, and there is no rain, because they have sinned against thee; yet if they pray toward this place, and confess thy name, and turn from their sin, when thou dost afflict them; \nThen hear thou from heaven, and forgive the sin of thy servants, and of thy people Israel, when thou hast taught them the good way, wherein they should walk; and send rain upon thy land, which thou hast given unto thy people for an inheritance. \nIf there be dearth in the land, if there be pestilence, if there be blasting, or mildew, locusts, or caterpillers; if their enemies besiege them in the cities of their land; whatsoever sore or whatsoever sickness there be: \nThen what prayer or what supplication soever shall be made of any man, or of all thy people Israel, when every one shall know his own sore and his own grief, and shall spread forth his hands in this house: \nThen hear thou from heaven thy dwelling place, and forgive, and render unto every man according unto all his ways, whose heart thou knowest; (for thou only knowest the hearts of the children of men:) \nThat they may fear thee, to walk in thy ways, so long as they live in the land which thou gavest unto our fathers. \nMoreover concerning the stranger, which is not of thy people Israel, but is come from a far country for thy great name's sake, and thy mighty hand, and thy stretched out arm; if they come and pray in this house; \nThen hear thou from the heavens, even from thy dwelling place, and do according to all that the stranger calleth to thee for; that all people of the earth may know thy name, and fear thee, as doth thy people Israel, and may know that this house which I have built is called by thy name. \nIf thy people go out to war against their enemies by the way that thou shalt send them, and they pray unto thee toward this city which thou hast chosen, and the house which I have built for thy name; \nThen hear thou from the heavens their prayer and their supplication, and maintain their cause. \nIf they sin against thee, (for there is no man which sinneth not,) and thou be angry with them, and deliver them over before their enemies, and they carry them away captives unto a land far off or near; \nYet if they bethink themselves in the land whither they are carried captive, and turn and pray unto thee in the land of their captivity, saying, We have sinned, we have done amiss, and have dealt wickedly; \nIf they return to thee with all their heart and with all their soul in the land of their captivity, whither they have carried them captives, and pray toward their land, which thou gavest unto their fathers, and toward the city which thou hast chosen, and toward the house which I have built for thy name: \nThen hear thou from the heavens, even from thy dwelling place, their prayer and their supplications, and maintain their cause, and forgive thy people which have sinned against thee. \nNow, my God, let, I beseech thee, thine eyes be open, and let thine ears be attent unto the prayer that is made in this place. \nNow therefore arise, O LORD God, into thy resting place, thou, and the ark of thy strength: let thy priests, O LORD God, be clothed with salvation, and let thy saints rejoice in goodness. \nO LORD God, turn not away the face of thine anointed: remember the mercies of David thy servant. \nNow when Solomon had made an end of praying, the fire came down from heaven, and consumed the burnt offering and the sacrifices; and the glory of the LORD filled the house. \nAnd the priests could not enter into the house of the LORD, because the glory of the LORD had filled the LORD's house. \nAnd when all the children of Israel saw how the fire came down, and the glory of the LORD upon the house, they bowed themselves with their faces to the ground upon the pavement, and worshipped, and praised the LORD, saying, For he is good; for his mercy endureth for ever. \nThen the king and all the people offered sacrifices before the LORD. \nAnd king Solomon offered a sacrifice of twenty and two thousand oxen, and an hundred and twenty thousand sheep: so the king and all the people dedicated the house of God. \nAnd the priests waited on their offices: the Levites also with instruments of musick of the LORD, which David the king had made to praise the LORD, because his mercy endureth for ever, when David praised by their ministry; and the priests sounded trumpets before them, and all Israel stood. \nMoreover Solomon hallowed the middle of the court that was before the house of the LORD: for there he offered burnt offerings, and the fat of the peace offerings, because the brasen altar which Solomon had made was not able to receive the burnt offerings, and the meat offerings, and the fat. \nAlso at the same time Solomon kept the feast seven days, and all Israel with him, a very great congregation, from the entering in of Hamath unto the river of Egypt. \nAnd in the eighth day they made a solemn assembly: for they kept the dedication of the altar seven days, and the feast seven days. \nAnd on the three and twentieth day of the seventh month he sent the people away into their tents, glad and merry in heart for the goodness that the LORD had shewed unto David, and to Solomon, and to Israel his people. \nThus Solomon finished the house of the LORD, and the king's house: and all that came into Solomon's heart to make in the house of the LORD, and in his own house, he prosperously effected. \nAnd the LORD appeared to Solomon by night, and said unto him, I have heard thy prayer, and have chosen this place to myself for an house of sacrifice. \nIf I shut up heaven that there be no rain, or if I command the locusts to devour the land, or if I send pestilence among my people; \nIf my people, which are called by my name, shall humble themselves, and pray, and seek my face, and turn from their wicked ways; then will I hear from heaven, and will forgive their sin, and will heal their land. \nNow mine eyes shall be open, and mine ears attent unto the prayer that is made in this place. \nFor now have I chosen and sanctified this house, that my name may be there for ever: and mine eyes and mine heart shall be there perpetually. \nAnd as for thee, if thou wilt walk before me, as David thy father walked, and do according to all that I have commanded thee, and shalt observe my statutes and my judgments; \nThen will I stablish the throne of thy kingdom, according as I have covenanted with David thy father, saying, There shall not fail thee a man to be ruler in Israel. \nBut if ye turn away, and forsake my statutes and my commandments, which I have set before you, and shall go and serve other gods, and worship them; \nThen will I pluck them up by the roots out of my land which I have given them; and this house, which I have sanctified for my name, will I cast out of my sight, and will make it to be a proverb and a byword among all nations. \nAnd this house, which is high, shall be an astonishment to every one that passeth by it; so that he shall say, Why hath the LORD done thus unto this land, and unto this house? \nAnd it shall be answered, Because they forsook the LORD God of their fathers, which brought them forth out of the land of Egypt, and laid hold on other gods, and worshipped them, and served them: therefore hath he brought all this evil upon them. \nAnd it came to pass at the end of twenty years, wherein Solomon had built the house of the LORD, and his own house, \nThat the cities which Huram had restored to Solomon, Solomon built them, and caused the children of Israel to dwell there. \nAnd Solomon went to Hamathzobah, and prevailed against it. \nAnd he built Tadmor in the wilderness, and all the store cities, which he built in Hamath. \nAlso he built Bethhoron the upper, and Bethhoron the nether, fenced cities, with walls, gates, and bars; \nAnd Baalath, and all the store cities that Solomon had, and all the chariot cities, and the cities of the horsemen, and all that Solomon desired to build in Jerusalem, and in Lebanon, and throughout all the land of his dominion. \nAs for all the people that were left of the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, which were not of Israel, \nBut of their children, who were left after them in the land, whom the children of Israel consumed not, them did Solomon make to pay tribute until this day. \nBut of the children of Israel did Solomon make no servants for his work; but they were men of war, and chief of his captains, and captains of his chariots and horsemen. \nAnd these were the chief of king Solomon's officers, even two hundred and fifty, that bare rule over the people. \nAnd Solomon brought up the daughter of Pharaoh out of the city of David unto the house that he had built for her: for he said, My wife shall not dwell in the house of David king of Israel, because the places are holy, whereunto the ark of the LORD hath come. \nThen Solomon offered burnt offerings unto the LORD on the altar of the LORD, which he had built before the porch, \nEven after a certain rate every day, offering according to the commandment of Moses, on the sabbaths, and on the new moons, and on the solemn feasts, three times in the year, even in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles. \nAnd he appointed, according to the order of David his father, the courses of the priests to their service, and the Levites to their charges, to praise and minister before the priests, as the duty of every day required: the porters also by their courses at every gate: for so had David the man of God commanded. \nAnd they departed not from the commandment of the king unto the priests and Levites concerning any matter, or concerning the treasures. \nNow all the work of Solomon was prepared unto the day of the foundation of the house of the LORD, and until it was finished. So the house of the LORD was perfected. \nThen went Solomon to Eziongeber, and to Eloth, at the sea side in the land of Edom. \nAnd Huram sent him by the hands of his servants ships, and servants that had knowledge of the sea; and they went with the servants of Solomon to Ophir, and took thence four hundred and fifty talents of gold, and brought them to king Solomon. \nAnd when the queen of Sheba heard of the fame of Solomon, she came to prove Solomon with hard questions at Jerusalem, with a very great company, and camels that bare spices, and gold in abundance, and precious stones: and when she was come to Solomon, she communed with him of all that was in her heart. \nAnd Solomon told her all her questions: and there was nothing hid from Solomon which he told her not. \nAnd when the queen of Sheba had seen the wisdom of Solomon, and the house that he had built, \nAnd the meat of his table, and the sitting of his servants, and the attendance of his ministers, and their apparel; his cupbearers also, and their apparel; and his ascent by which he went up into the house of the LORD; there was no more spirit in her. \nAnd she said to the king, It was a true report which I heard in mine own land of thine acts, and of thy wisdom: \nHowbeit I believed not their words, until I came, and mine eyes had seen it: and, behold, the one half of the greatness of thy wisdom was not told me: for thou exceedest the fame that I heard. \nHappy are thy men, and happy are these thy servants, which stand continually before thee, and hear thy wisdom. \nBlessed be the LORD thy God, which delighted in thee to set thee on his throne, to be king for the LORD thy God: because thy God loved Israel, to establish them for ever, therefore made he thee king over them, to do judgment and justice. \nAnd she gave the king an hundred and twenty talents of gold, and of spices great abundance, and precious stones: neither was there any such spice as the queen of Sheba gave king Solomon. \nAnd the servants also of Huram, and the servants of Solomon, which brought gold from Ophir, brought algum trees and precious stones. \nAnd the king made of the algum trees terraces to the house of the LORD, and to the king's palace, and harps and psalteries for singers: and there were none such seen before in the land of Judah. \nAnd king Solomon gave to the queen of Sheba all her desire, whatsoever she asked, beside that which she had brought unto the king. So she turned, and went away to her own land, she and her servants. \nNow the weight of gold that came to Solomon in one year was six hundred and threescore and six talents of gold; \nBeside that which chapmen and merchants brought. And all the kings of Arabia and governors of the country brought gold and silver to Solomon. \nAnd king Solomon made two hundred targets of beaten gold: six hundred shekels of beaten gold went to one target. \nAnd three hundred shields made he of beaten gold: three hundred shekels of gold went to one shield. And the king put them in the house of the forest of Lebanon. \nMoreover the king made a great throne of ivory, and overlaid it with pure gold. \nAnd there were six steps to the throne, with a footstool of gold, which were fastened to the throne, and stays on each side of the sitting place, and two lions standing by the stays: \nAnd twelve lions stood there on the one side and on the other upon the six steps. There was not the like made in any kingdom. \nAnd all the drinking vessels of king Solomon were of gold, and all the vessels of the house of the forest of Lebanon were of pure gold: none were of silver; it was not any thing accounted of in the days of Solomon. \nFor the king's ships went to Tarshish with the servants of Huram: every three years once came the ships of Tarshish bringing gold, and silver, ivory, and apes, and peacocks. \nAnd king Solomon passed all the kings of the earth in riches and wisdom. \nAnd all the kings of the earth sought the presence of Solomon, to hear his wisdom, that God had put in his heart. \nAnd they brought every man his present, vessels of silver, and vessels of gold, and raiment, harness, and spices, horses, and mules, a rate year by year. \nAnd Solomon had four thousand stalls for horses and chariots, and twelve thousand horsemen; whom he bestowed in the chariot cities, and with the king at Jerusalem. \nAnd he reigned over all the kings from the river even unto the land of the Philistines, and to the border of Egypt. \nAnd the king made silver in Jerusalem as stones, and cedar trees made he as the sycomore trees that are in the low plains in abundance. \nAnd they brought unto Solomon horses out of Egypt, and out of all lands. \nNow the rest of the acts of Solomon, first and last, are they not written in the book of Nathan the prophet, and in the prophecy of Ahijah the Shilonite, and in the visions of Iddo the seer against Jeroboam the son of Nebat? \nAnd Solomon reigned in Jerusalem over all Israel forty years. \nAnd Solomon slept with his fathers, and he was buried in the city of David his father: and Rehoboam his son reigned in his stead. \nAnd Rehoboam went to Shechem: for to Shechem were all Israel come to make him king. \nAnd it came to pass, when Jeroboam the son of Nebat, who was in Egypt, whither he fled from the presence of Solomon the king, heard it, that Jeroboam returned out of Egypt. \nAnd they sent and called him. So Jeroboam and all Israel came and spake to Rehoboam, saying, \nThy father made our yoke grievous: now therefore ease thou somewhat the grievous servitude of thy father, and his heavy yoke that he put upon us, and we will serve thee. \nAnd he said unto them, Come again unto me after three days. And the people departed. \nAnd king Rehoboam took counsel with the old men that had stood before Solomon his father while he yet lived, saying, What counsel give ye me to return answer to this people? \nAnd they spake unto him, saying, If thou be kind to this people, and please them, and speak good words to them, they will be thy servants for ever. \nBut he forsook the counsel which the old men gave him, and took counsel with the young men that were brought up with him, that stood before him. \nAnd he said unto them, What advice give ye that we may return answer to this people, which have spoken to me, saying, Ease somewhat the yoke that thy father did put upon us? \nAnd the young men that were brought up with him spake unto him, saying, Thus shalt thou answer the people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it somewhat lighter for us; thus shalt thou say unto them, My little finger shall be thicker than my father's loins. \nFor whereas my father put a heavy yoke upon you, I will put more to your yoke: my father chastised you with whips, but I will chastise you with scorpions. \nSo Jeroboam and all the people came to Rehoboam on the third day, as the king bade, saying, Come again to me on the third day. \nAnd the king answered them roughly; and king Rehoboam forsook the counsel of the old men, \nAnd answered them after the advice of the young men, saying, My father made your yoke heavy, but I will add thereto: my father chastised you with whips, but I will chastise you with scorpions. \nSo the king hearkened not unto the people: for the cause was of God, that the LORD might perform his word, which he spake by the hand of Ahijah the Shilonite to Jeroboam the son of Nebat. \nAnd when all Israel saw that the king would not hearken unto them, the people answered the king, saying, What portion have we in David? and we have none inheritance in the son of Jesse: every man to your tents, O Israel: and now, David, see to thine own house. So all Israel went to their tents. \nBut as for the children of Israel that dwelt in the cities of Judah, Rehoboam reigned over them. \nThen king Rehoboam sent Hadoram that was over the tribute; and the children of Israel stoned him with stones, that he died. But king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem. \nAnd Israel rebelled against the house of David unto this day. \nAnd when Rehoboam was come to Jerusalem, he gathered of the house of Judah and Benjamin an hundred and fourscore thousand chosen men, which were warriors, to fight against Israel, that he might bring the kingdom again to Rehoboam. \nBut the word of the LORD came to Shemaiah the man of God, saying, \nSpeak unto Rehoboam the son of Solomon, king of Judah, and to all Israel in Judah and Benjamin, saying, \nThus saith the LORD, Ye shall not go up, nor fight against your brethren: return every man to his house: for this thing is done of me. And they obeyed the words of the LORD, and returned from going against Jeroboam. \nAnd Rehoboam dwelt in Jerusalem, and built cities for defence in Judah. \nHe built even Bethlehem, and Etam, and Tekoa, \nAnd Bethzur, and Shoco, and Adullam, \nAnd Gath, and Mareshah, and Ziph, \nAnd Adoraim, and Lachish, and Azekah, \nAnd Zorah, and Aijalon, and Hebron, which are in Judah and in Benjamin fenced cities. \nAnd he fortified the strong holds, and put captains in them, and store of victual, and of oil and wine. \nAnd in every several city he put shields and spears, and made them exceeding strong, having Judah and Benjamin on his side. \nAnd the priests and the Levites that were in all Israel resorted to him out of all their coasts. \nFor the Levites left their suburbs and their possession, and came to Judah and Jerusalem: for Jeroboam and his sons had cast them off from executing the priest's office unto the LORD: \nAnd he ordained him priests for the high places, and for the devils, and for the calves which he had made. \nAnd after them out of all the tribes of Israel such as set their hearts to seek the LORD God of Israel came to Jerusalem, to sacrifice unto the LORD God of their fathers. \nSo they strengthened the kingdom of Judah, and made Rehoboam the son of Solomon strong, three years: for three years they walked in the way of David and Solomon. \nAnd Rehoboam took him Mahalath the daughter of Jerimoth the son of David to wife, and Abihail the daughter of Eliab the son of Jesse; \nWhich bare him children; Jeush, and Shamariah, and Zaham. \nAnd after her he took Maachah the daughter of Absalom; which bare him Abijah, and Attai, and Ziza, and Shelomith. \nAnd Rehoboam loved Maachah the daughter of Absalom above all his wives and his concubines: (for he took eighteen wives, and threescore concubines; and begat twenty and eight sons, and threescore daughters.) \nAnd Rehoboam made Abijah the son of Maachah the chief, to be ruler among his brethren: for he thought to make him king. \nAnd he dealt wisely, and dispersed of all his children throughout all the countries of Judah and Benjamin, unto every fenced city: and he gave them victual in abundance. And he desired many wives. \nAnd it came to pass, when Rehoboam had established the kingdom, and had strengthened himself, he forsook the law of the LORD, and all Israel with him. \nAnd it came to pass, that in the fifth year of king Rehoboam Shishak king of Egypt came up against Jerusalem, because they had transgressed against the LORD, \nWith twelve hundred chariots, and threescore thousand horsemen: and the people were without number that came with him out of Egypt; the Lubims, the Sukkiims, and the Ethiopians. \nAnd he took the fenced cities which pertained to Judah, and came to Jerusalem. \nThen came Shemaiah the prophet to Rehoboam, and to the princes of Judah, that were gathered together to Jerusalem because of Shishak, and said unto them, Thus saith the LORD, Ye have forsaken me, and therefore have I also left you in the hand of Shishak. \nWhereupon the princes of Israel and the king humbled themselves; and they said, The LORD is righteous. \nAnd when the LORD saw that they humbled themselves, the word of the LORD came to Shemaiah, saying, They have humbled themselves; therefore I will not destroy them, but I will grant them some deliverance; and my wrath shall not be poured out upon Jerusalem by the hand of Shishak. \nNevertheless they shall be his servants; that they may know my service, and the service of the kingdoms of the countries. \nSo Shishak king of Egypt came up against Jerusalem, and took away the treasures of the house of the LORD, and the treasures of the king's house; he took all: he carried away also the shields of gold which Solomon had made. \nInstead of which king Rehoboam made shields of brass, and committed them to the hands of the chief of the guard, that kept the entrance of the king's house. \nAnd when the king entered into the house of the LORD, the guard came and fetched them, and brought them again into the guard chamber. \nAnd when he humbled himself, the wrath of the LORD turned from him, that he would not destroy him altogether: and also in Judah things went well. \nSo king Rehoboam strengthened himself in Jerusalem, and reigned: for Rehoboam was one and forty years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which the LORD had chosen out of all the tribes of Israel, to put his name there. And his mother's name was Naamah an Ammonitess. \nAnd he did evil, because he prepared not his heart to seek the LORD. \nNow the acts of Rehoboam, first and last, are they not written in the book of Shemaiah the prophet, and of Iddo the seer concerning genealogies? And there were wars between Rehoboam and Jeroboam continually. \nAnd Rehoboam slept with his fathers, and was buried in the city of David: and Abijah his son reigned in his stead. \nNow in the eighteenth year of king Jeroboam began Abijah to reign over Judah. \nHe reigned three years in Jerusalem. His mother's name also was Michaiah the daughter of Uriel of Gibeah. And there was war between Abijah and Jeroboam. \nAnd Abijah set the battle in array with an army of valiant men of war, even four hundred thousand chosen men: Jeroboam also set the battle in array against him with eight hundred thousand chosen men, being mighty men of valour. \nAnd Abijah stood up upon mount Zemaraim, which is in mount Ephraim, and said, Hear me, thou Jeroboam, and all Israel; \nOught ye not to know that the LORD God of Israel gave the kingdom over Israel to David for ever, even to him and to his sons by a covenant of salt? \nYet Jeroboam the son of Nebat, the servant of Solomon the son of David, is risen up, and hath rebelled against his lord. \nAnd there are gathered unto him vain men, the children of Belial, and have strengthened themselves against Rehoboam the son of Solomon, when Rehoboam was young and tenderhearted, and could not withstand them. \nAnd now ye think to withstand the kingdom of the LORD in the hand of the sons of David; and ye be a great multitude, and there are with your golden calves, which Jeroboam made you for gods. \nHave ye not cast out the priests of the LORD, the sons of Aaron, and the Levites, and have made you priests after the manner of the nations of other lands? so that whosoever cometh to consecrate himself with a young bullock and seven rams, the same may be a priest of them that are no gods. \nBut as for us, the LORD is our God, and we have not forsaken him; and the priests, which minister unto the LORD, are the sons of Aaron, and the Levites wait upon their business: \nAnd they burn unto the LORD every morning and every evening burnt sacrifices and sweet incense: the shewbread also set they in order upon the pure table; and the candlestick of gold with the lamps thereof, to burn every evening: for we keep the charge of the LORD our God; but ye have forsaken him. \nAnd, behold, God himself is with us for our captain, and his priests with sounding trumpets to cry alarm against you. O children of Israel, fight ye not against the LORD God of your fathers; for ye shall not prosper. \nBut Jeroboam caused an ambushment to come about behind them: so they were before Judah, and the ambushment was behind them. \nAnd when Judah looked back, behold, the battle was before and behind: and they cried unto the LORD, and the priests sounded with the trumpets. \nThen the men of Judah gave a shout: and as the men of Judah shouted, it came to pass, that God smote Jeroboam and all Israel before Abijah and Judah. \nAnd the children of Israel fled before Judah: and God delivered them into their hand. \nAnd Abijah and his people slew them with a great slaughter: so there fell down slain of Israel five hundred thousand chosen men. \nThus the children of Israel were brought under at that time, and the children of Judah prevailed, because they relied upon the LORD God of their fathers. \nAnd Abijah pursued after Jeroboam, and took cities from him, Bethel with the towns thereof, and Jeshanah with the towns thereof, and Ephraim with the towns thereof. \nNeither did Jeroboam recover strength again in the days of Abijah: and the LORD struck him, and he died. \nBut Abijah waxed mighty, and married fourteen wives, and begat twenty and two sons, and sixteen daughters. \nAnd the rest of the acts of Abijah, and his ways, and his sayings, are written in the story of the prophet Iddo. \nSo Abijah slept with his fathers, and they buried him in the city of David: and Asa his son reigned in his stead. In his days the land was quiet ten years. \nAnd Asa did that which was good and right in the eyes of the LORD his God: \nFor he took away the altars of the strange gods, and the high places, and brake down the images, and cut down the groves: \nAnd commanded Judah to seek the LORD God of their fathers, and to do the law and the commandment. \nAlso he took away out of all the cities of Judah the high places and the images: and the kingdom was quiet before him. \nAnd he built fenced cities in Judah: for the land had rest, and he had no war in those years; because the LORD had given him rest. \nTherefore he said unto Judah, Let us build these cities, and make about them walls, and towers, gates, and bars, while the land is yet before us; because we have sought the LORD our God, we have sought him, and he hath given us rest on every side. So they built and prospered. \nAnd Asa had an army of men that bare targets and spears, out of Judah three hundred thousand; and out of Benjamin, that bare shields and drew bows, two hundred and fourscore thousand: all these were mighty men of valour. \nAnd there came out against them Zerah the Ethiopian with an host of a thousand thousand, and three hundred chariots; and came unto Mareshah. \nThen Asa went out against him, and they set the battle in array in the valley of Zephathah at Mareshah. \nAnd Asa cried unto the LORD his God, and said, LORD, it is nothing with thee to help, whether with many, or with them that have no power: help us, O LORD our God; for we rest on thee, and in thy name we go against this multitude. O LORD, thou art our God; let no man prevail against thee. \nSo the LORD smote the Ethiopians before Asa, and before Judah; and the Ethiopians fled. \nAnd Asa and the people that were with him pursued them unto Gerar: and the Ethiopians were overthrown, that they could not recover themselves; for they were destroyed before the LORD, and before his host; and they carried away very much spoil. \nAnd they smote all the cities round about Gerar; for the fear of the LORD came upon them: and they spoiled all the cities; for there was exceeding much spoil in them. \nThey smote also the tents of cattle, and carried away sheep and camels in abundance, and returned to Jerusalem. \nAnd the Spirit of God came upon Azariah the son of Oded: \nAnd he went out to meet Asa, and said unto him, Hear ye me, Asa, and all Judah and Benjamin; The LORD is with you, while ye be with him; and if ye seek him, he will be found of you; but if ye forsake him, he will forsake you. \nNow for a long season Israel hath been without the true God, and without a teaching priest, and without law. \nBut when they in their trouble did turn unto the LORD God of Israel, and sought him, he was found of them. \nAnd in those times there was no peace to him that went out, nor to him that came in, but great vexations were upon all the inhabitants of the countries. \nAnd nation was destroyed of nation, and city of city: for God did vex them with all adversity. \nBe ye strong therefore, and let not your hands be weak: for your work shall be rewarded. \nAnd when Asa heard these words, and the prophecy of Oded the prophet, he took courage, and put away the abominable idols out of all the land of Judah and Benjamin, and out of the cities which he had taken from mount Ephraim, and renewed the altar of the LORD, that was before the porch of the LORD. \nAnd he gathered all Judah and Benjamin, and the strangers with them out of Ephraim and Manasseh, and out of Simeon: for they fell to him out of Israel in abundance, when they saw that the LORD his God was with him. \nSo they gathered themselves together at Jerusalem in the third month, in the fifteenth year of the reign of Asa. \nAnd they offered unto the LORD the same time, of the spoil which they had brought, seven hundred oxen and seven thousand sheep. \nAnd they entered into a covenant to seek the LORD God of their fathers with all their heart and with all their soul; \nThat whosoever would not seek the LORD God of Israel should be put to death, whether small or great, whether man or woman. \nAnd they sware unto the LORD with a loud voice, and with shouting, and with trumpets, and with cornets. \nAnd all Judah rejoiced at the oath: for they had sworn with all their heart, and sought him with their whole desire; and he was found of them: and the LORD gave them rest round about. \nAnd also concerning Maachah the mother of Asa the king, he removed her from being queen, because she had made an idol in a grove: and Asa cut down her idol, and stamped it, and burnt it at the brook Kidron. \nBut the high places were not taken away out of Israel: nevertheless the heart of Asa was perfect all his days. \nAnd he brought into the house of God the things that his father had dedicated, and that he himself had dedicated, silver, and gold, and vessels. \nAnd there was no more war unto the five and thirtieth year of the reign of Asa. \nIn the six and thirtieth year of the reign of Asa Baasha king of Israel came up against Judah, and built Ramah, to the intent that he might let none go out or come in to Asa king of Judah. \nThen Asa brought out silver and gold out of the treasures of the house of the LORD and of the king's house, and sent to Benhadad king of Syria, that dwelt at Damascus, saying, \nThere is a league between me and thee, as there was between my father and thy father: behold, I have sent thee silver and gold; go, break thy league with Baasha king of Israel, that he may depart from me. \nAnd Benhadad hearkened unto king Asa, and sent the captains of his armies against the cities of Israel; and they smote Ijon, and Dan, and Abelmaim, and all the store cities of Naphtali. \nAnd it came to pass, when Baasha heard it, that he left off building of Ramah, and let his work cease. \nThen Asa the king took all Judah; and they carried away the stones of Ramah, and the timber thereof, wherewith Baasha was building; and he built therewith Geba and Mizpah. \nAnd at that time Hanani the seer came to Asa king of Judah, and said unto him, Because thou hast relied on the king of Syria, and not relied on the LORD thy God, therefore is the host of the king of Syria escaped out of thine hand. \nWere not the Ethiopians and the Lubims a huge host, with very many chariots and horsemen? yet, because thou didst rely on the LORD, he delivered them into thine hand. \nFor the eyes of the LORD run to and fro throughout the whole earth, to shew himself strong in the behalf of them whose heart is perfect toward him. Herein thou hast done foolishly: therefore from henceforth thou shalt have wars. \nThen Asa was wroth with the seer, and put him in a prison house; for he was in a rage with him because of this thing. And Asa oppressed some of the people the same time. \nAnd, behold, the acts of Asa, first and last, lo, they are written in the book of the kings of Judah and Israel. \nAnd Asa in the thirty and ninth year of his reign was diseased in his feet, until his disease was exceeding great: yet in his disease he sought not to the LORD, but to the physicians. \nAnd Asa slept with his fathers, and died in the one and fortieth year of his reign. \nAnd they buried him in his own sepulchres, which he had made for himself in the city of David, and laid him in the bed which was filled with sweet odours and divers kinds of spices prepared by the apothecaries' art: and they made a very great burning for him. \nAnd Jehoshaphat his son reigned in his stead, and strengthened himself against Israel. \nAnd he placed forces in all the fenced cities of Judah, and set garrisons in the land of Judah, and in the cities of Ephraim, which Asa his father had taken. \nAnd the LORD was with Jehoshaphat, because he walked in the first ways of his father David, and sought not unto Baalim; \nBut sought to the Lord God of his father, and walked in his commandments, and not after the doings of Israel. \nTherefore the LORD stablished the kingdom in his hand; and all Judah brought to Jehoshaphat presents; and he had riches and honour in abundance. \nAnd his heart was lifted up in the ways of the LORD: moreover he took away the high places and groves out of Judah. \nAlso in the third year of his reign he sent to his princes, even to Benhail, and to Obadiah, and to Zechariah, and to Nethaneel, and to Michaiah, to teach in the cities of Judah. \nAnd with them he sent Levites, even Shemaiah, and Nethaniah, and Zebadiah, and Asahel, and Shemiramoth, and Jehonathan, and Adonijah, and Tobijah, and Tobadonijah, Levites; and with them Elishama and Jehoram, priests. \nAnd they taught in Judah, and had the book of the law of the LORD with them, and went about throughout all the cities of Judah, and taught the people. \nAnd the fear of the LORD fell upon all the kingdoms of the lands that were round about Judah, so that they made no war against Jehoshaphat. \nAlso some of the Philistines brought Jehoshaphat presents, and tribute silver; and the Arabians brought him flocks, seven thousand and seven hundred rams, and seven thousand and seven hundred he goats. \nAnd Jehoshaphat waxed great exceedingly; and he built in Judah castles, and cities of store. \nAnd he had much business in the cities of Judah: and the men of war, mighty men of valour, were in Jerusalem. \nAnd these are the numbers of them according to the house of their fathers: Of Judah, the captains of thousands; Adnah the chief, and with him mighty men of valour three hundred thousand. \nAnd next to him was Jehohanan the captain, and with him two hundred and fourscore thousand. \nAnd next him was Amasiah the son of Zichri, who willingly offered himself unto the LORD; and with him two hundred thousand mighty men of valour. \nAnd of Benjamin; Eliada a mighty man of valour, and with him armed men with bow and shield two hundred thousand. \nAnd next him was Jehozabad, and with him an hundred and fourscore thousand ready prepared for the war. \nThese waited on the king, beside those whom the king put in the fenced cities throughout all Judah. \nNow Jehoshaphat had riches and honour in abundance, and joined affinity with Ahab. \nAnd after certain years he went down to Ahab to Samaria. And Ahab killed sheep and oxen for him in abundance, and for the people that he had with him, and persuaded him to go up with him to Ramothgilead. \nAnd Ahab king of Israel said unto Jehoshaphat king of Judah, Wilt thou go with me to Ramothgilead? And he answered him, I am as thou art, and my people as thy people; and we will be with thee in the war. \nAnd Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day. \nTherefore the king of Israel gathered together of prophets four hundred men, and said unto them, Shall we go to Ramothgilead to battle, or shall I forbear? And they said, Go up; for God will deliver it into the king's hand. \nBut Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him? \nAnd the king of Israel said unto Jehoshaphat, There is yet one man, by whom we may enquire of the LORD: but I hate him; for he never prophesied good unto me, but always evil: the same is Micaiah the son of Imla. And Jehoshaphat said, Let not the king say so. \nAnd the king of Israel called for one of his officers, and said, Fetch quickly Micaiah the son of Imla. \nAnd the king of Israel and Jehoshaphat king of Judah sat either of them on his throne, clothed in their robes, and they sat in a void place at the entering in of the gate of Samaria; and all the prophets prophesied before them. \nAnd Zedekiah the son of Chenaanah had made him horns of iron, and said, Thus saith the LORD, With these thou shalt push Syria until they be consumed. \nAnd all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the hand of the king. \nAnd the messenger that went to call Micaiah spake to him, saying, Behold, the words of the prophets declare good to the king with one assent; let thy word therefore, I pray thee, be like one of their's, and speak thou good. \nAnd Micaiah said, As the LORD liveth, even what my God saith, that will I speak. \nAnd when he was come to the king, the king said unto him, Micaiah, shall we go to Ramothgilead to battle, or shall I forbear? And he said, Go ye up, and prosper, and they shall be delivered into your hand. \nAnd the king said to him, How many times shall I adjure thee that thou say nothing but the truth to me in the name of the LORD? \nThen he said, I did see all Israel scattered upon the mountains, as sheep that have no shepherd: and the LORD said, These have no master; let them return therefore every man to his house in peace. \nAnd the king of Israel said to Jehoshaphat, Did I not tell thee that he would not prophesy good unto me, but evil? \nAgain he said, Therefore hear the word of the LORD; I saw the LORD sitting upon his throne, and all the host of heaven standing on his right hand and on his left. \nAnd the LORD said, Who shall entice Ahab king of Israel, that he may go up and fall at Ramothgilead? And one spake saying after this manner, and another saying after that manner. \nThen there came out a spirit, and stood before the LORD, and said, I will entice him. And the LORD said unto him, Wherewith? \nAnd he said, I will go out, and be a lying spirit in the mouth of all his prophets. And the Lord said, Thou shalt entice him, and thou shalt also prevail: go out, and do even so. \nNow therefore, behold, the LORD hath put a lying spirit in the mouth of these thy prophets, and the LORD hath spoken evil against thee. \nThen Zedekiah the son of Chenaanah came near, and smote Micaiah upon the cheek, and said, Which way went the Spirit of the LORD from me to speak unto thee? \nAnd Micaiah said, Behold, thou shalt see on that day when thou shalt go into an inner chamber to hide thyself. \nThen the king of Israel said, Take ye Micaiah, and carry him back to Amon the governor of the city, and to Joash the king's son; \nAnd say, Thus saith the king, Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I return in peace. \nAnd Micaiah said, If thou certainly return in peace, then hath not the LORD spoken by me. And he said, Hearken, all ye people. \nSo the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead. \nAnd the king of Israel said unto Jehoshaphat, I will disguise myself, and I will go to the battle; but put thou on thy robes. So the king of Israel disguised himself; and they went to the battle. \nNow the king of Syria had commanded the captains of the chariots that were with him, saying, Fight ye not with small or great, save only with the king of Israel. \nAnd it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, It is the king of Israel. Therefore they compassed about him to fight: but Jehoshaphat cried out, and the LORD helped him; and God moved them to depart from him. \nFor it came to pass, that, when the captains of the chariots perceived that it was not the king of Israel, they turned back again from pursuing him. \nAnd a certain man drew a bow at a venture, and smote the king of Israel between the joints of the harness: therefore he said to his chariot man, Turn thine hand, that thou mayest carry me out of the host; for I am wounded. \nAnd the battle increased that day: howbeit the king of Israel stayed himself up in his chariot against the Syrians until the even: and about the time of the sun going down he died. \nAnd Jehoshaphat the king of Judah returned to his house in peace to Jerusalem. \nAnd Jehu the son of Hanani the seer went out to meet him, and said to king Jehoshaphat, Shouldest thou help the ungodly, and love them that hate the LORD? therefore is wrath upon thee from before the LORD. \nNevertheless there are good things found in thee, in that thou hast taken away the groves out of the land, and hast prepared thine heart to seek God. \nAnd Jehoshaphat dwelt at Jerusalem: and he went out again through the people from Beersheba to mount Ephraim, and brought them back unto the LORD God of their fathers. \nAnd he set judges in the land throughout all the fenced cities of Judah, city by city, \nAnd said to the judges, Take heed what ye do: for ye judge not for man, but for the LORD, who is with you in the judgment. \nWherefore now let the fear of the LORD be upon you; take heed and do it: for there is no iniquity with the LORD our God, nor respect of persons, nor taking of gifts. \nMoreover in Jerusalem did Jehoshaphat set of the Levites, and of the priests, and of the chief of the fathers of Israel, for the judgment of the LORD, and for controversies, when they returned to Jerusalem. \nAnd he charged them, saying, Thus shall ye do in the fear of the LORD, faithfully, and with a perfect heart. \nAnd what cause soever shall come to you of your brethren that dwell in your cities, between blood and blood, between law and commandment, statutes and judgments, ye shall even warn them that they trespass not against the LORD, and so wrath come upon you, and upon your brethren: this do, and ye shall not trespass. \nAnd, behold, Amariah the chief priest is over you in all matters of the LORD; and Zebadiah the son of Ishmael, the ruler of the house of Judah, for all the king's matters: also the Levites shall be officers before you. Deal courageously, and the LORD shall be with the good. \nIt came to pass after this also, that the children of Moab, and the children of Ammon, and with them other beside the Ammonites, came against Jehoshaphat to battle. \nThen there came some that told Jehoshaphat, saying, There cometh a great multitude against thee from beyond the sea on this side Syria; and, behold, they be in Hazazontamar, which is Engedi. \nAnd Jehoshaphat feared, and set himself to seek the LORD, and proclaimed a fast throughout all Judah. \nAnd Judah gathered themselves together, to ask help of the LORD: even out of all the cities of Judah they came to seek the LORD. \nAnd Jehoshaphat stood in the congregation of Judah and Jerusalem, in the house of the LORD, before the new court, \nAnd said, O LORD God of our fathers, art not thou God in heaven? and rulest not thou over all the kingdoms of the heathen? and in thine hand is there not power and might, so that none is able to withstand thee? \nArt not thou our God, who didst drive out the inhabitants of this land before thy people Israel, and gavest it to the seed of Abraham thy friend for ever? \nAnd they dwelt therein, and have built thee a sanctuary therein for thy name, saying, \nIf, when evil cometh upon us, as the sword, judgment, or pestilence, or famine, we stand before this house, and in thy presence, (for thy name is in this house,) and cry unto thee in our affliction, then thou wilt hear and help. \nAnd now, behold, the children of Ammon and Moab and mount Seir, whom thou wouldest not let Israel invade, when they came out of the land of Egypt, but they turned from them, and destroyed them not; \nBehold, I say, how they reward us, to come to cast us out of thy possession, which thou hast given us to inherit. \nO our God, wilt thou not judge them? for we have no might against this great company that cometh against us; neither know we what to do: but our eyes are upon thee. \nAnd all Judah stood before the LORD, with their little ones, their wives, and their children. \nThen upon Jahaziel the son of Zechariah, the son of Benaiah, the son of Jeiel, the son of Mattaniah, a Levite of the sons of Asaph, came the Spirit of the LORD in the midst of the congregation; \nAnd he said, Hearken ye, all Judah, and ye inhabitants of Jerusalem, and thou king Jehoshaphat, Thus saith the LORD unto you, Be not afraid nor dismayed by reason of this great multitude; for the battle is not yours, but God's. \nTo morrow go ye down against them: behold, they come up by the cliff of Ziz; and ye shall find them at the end of the brook, before the wilderness of Jeruel. \nYe shall not need to fight in this battle: set yourselves, stand ye still, and see the salvation of the LORD with you, O Judah and Jerusalem: fear not, nor be dismayed; to morrow go out against them: for the LORD will be with you. \nAnd Jehoshaphat bowed his head with his face to the ground: and all Judah and the inhabitants of Jerusalem fell before the LORD, worshipping the LORD. \nAnd the Levites, of the children of the Kohathites, and of the children of the Korhites, stood up to praise the LORD God of Israel with a loud voice on high. \nAnd they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the LORD your God, so shall ye be established; believe his prophets, so shall ye prosper. \nAnd when he had consulted with the people, he appointed singers unto the LORD, and that should praise the beauty of holiness, as they went out before the army, and to say, Praise the LORD; for his mercy endureth for ever. \nAnd when they began to sing and to praise, the LORD set ambushments against the children of Ammon, Moab, and mount Seir, which were come against Judah; and they were smitten. \nFor the children of Ammon and Moab stood up against the inhabitants of mount Seir, utterly to slay and destroy them: and when they had made an end of the inhabitants of Seir, every one helped to destroy another. \nAnd when Judah came toward the watch tower in the wilderness, they looked unto the multitude, and, behold, they were dead bodies fallen to the earth, and none escaped. \nAnd when Jehoshaphat and his people came to take away the spoil of them, they found among them in abundance both riches with the dead bodies, and precious jewels, which they stripped off for themselves, more than they could carry away: and they were three days in gathering of the spoil, it was so much. \nAnd on the fourth day they assembled themselves in the valley of Berachah; for there they blessed the LORD: therefore the name of the same place was called, The valley of Berachah, unto this day. \nThen they returned, every man of Judah and Jerusalem, and Jehoshaphat in the forefront of them, to go again to Jerusalem with joy; for the LORD had made them to rejoice over their enemies. \nAnd they came to Jerusalem with psalteries and harps and trumpets unto the house of the LORD. \nAnd the fear of God was on all the kingdoms of those countries, when they had heard that the LORD fought against the enemies of Israel. \nSo the realm of Jehoshaphat was quiet: for his God gave him rest round about. \nAnd Jehoshaphat reigned over Judah: he was thirty and five years old when he began to reign, and he reigned twenty and five years in Jerusalem. And his mother's name was Azubah the daughter of Shilhi. \nAnd he walked in the way of Asa his father, and departed not from it, doing that which was right in the sight of the LORD. \nHowbeit the high places were not taken away: for as yet the people had not prepared their hearts unto the God of their fathers. \nNow the rest of the acts of Jehoshaphat, first and last, behold, they are written in the book of Jehu the son of Hanani, who is mentioned in the book of the kings of Israel. \nAnd after this did Jehoshaphat king of Judah join himself with Ahaziah king of Israel, who did very wickedly: \nAnd he joined himself with him to make ships to go to Tarshish: and they made the ships in Eziongaber. \nThen Eliezer the son of Dodavah of Mareshah prophesied against Jehoshaphat, saying, Because thou hast joined thyself with Ahaziah, the LORD hath broken thy works. And the ships were broken, that they were not able to go to Tarshish. \nNow Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David. And Jehoram his son reigned in his stead. \nAnd he had brethren the sons of Jehoshaphat, Azariah, and Jehiel, and Zechariah, and Azariah, and Michael, and Shephatiah: all these were the sons of Jehoshaphat king of Israel. \nAnd their father gave them great gifts of silver, and of gold, and of precious things, with fenced cities in Judah: but the kingdom gave he to Jehoram; because he was the firstborn. \nNow when Jehoram was risen up to the kingdom of his father, he strengthened himself, and slew all his brethren with the sword, and divers also of the princes of Israel. \nJehoram was thirty and two years old when he began to reign, and he reigned eight years in Jerusalem. \nAnd he walked in the way of the kings of Israel, like as did the house of Ahab: for he had the daughter of Ahab to wife: and he wrought that which was evil in the eyes of the LORD. \nHowbeit the LORD would not destroy the house of David, because of the covenant that he had made with David, and as he promised to give a light to him and to his sons for ever. \nIn his days the Edomites revolted from under the dominion of Judah, and made themselves a king. \nThen Jehoram went forth with his princes, and all his chariots with him: and he rose up by night, and smote the Edomites which compassed him in, and the captains of the chariots. \nSo the Edomites revolted from under the hand of Judah unto this day. The same time also did Libnah revolt from under his hand; because he had forsaken the LORD God of his fathers. \nMoreover he made high places in the mountains of Judah and caused the inhabitants of Jerusalem to commit fornication, and compelled Judah thereto. \nAnd there came a writing to him from Elijah the prophet, saying, Thus saith the LORD God of David thy father, Because thou hast not walked in the ways of Jehoshaphat thy father, nor in the ways of Asa king of Judah, \nBut hast walked in the way of the kings of Israel, and hast made Judah and the inhabitants of Jerusalem to go a whoring, like to the whoredoms of the house of Ahab, and also hast slain thy brethren of thy father's house, which were better than thyself: \nBehold, with a great plague will the LORD smite thy people, and thy children, and thy wives, and all thy goods: \nAnd thou shalt have great sickness by disease of thy bowels, until thy bowels fall out by reason of the sickness day by day. \nMoreover the LORD stirred up against Jehoram the spirit of the Philistines, and of the Arabians, that were near the Ethiopians: \nAnd they came up into Judah, and brake into it, and carried away all the substance that was found in the king's house, and his sons also, and his wives; so that there was never a son left him, save Jehoahaz, the youngest of his sons. \nAnd after all this the LORD smote him in his bowels with an incurable disease. \nAnd it came to pass, that in process of time, after the end of two years, his bowels fell out by reason of his sickness: so he died of sore diseases. And his people made no burning for him, like the burning of his fathers. \nThirty and two years old was he when he began to reign, and he reigned in Jerusalem eight years, and departed without being desired. Howbeit they buried him in the city of David, but not in the sepulchres of the kings. \nAnd the inhabitants of Jerusalem made Ahaziah his youngest son king in his stead: for the band of men that came with the Arabians to the camp had slain all the eldest. So Ahaziah the son of Jehoram king of Judah reigned. \nForty and two years old was Ahaziah when he began to reign, and he reigned one year in Jerusalem. His mother's name also was Athaliah the daughter of Omri. \nHe also walked in the ways of the house of Ahab: for his mother was his counsellor to do wickedly. \nWherefore he did evil in the sight of the LORD like the house of Ahab: for they were his counsellors after the death of his father to his destruction. \nHe walked also after their counsel, and went with Jehoram the son of Ahab king of Israel to war against Hazael king of Syria at Ramothgilead: and the Syrians smote Joram. \nAnd he returned to be healed in Jezreel because of the wounds which were given him at Ramah, when he fought with Hazael king of Syria. And Azariah the son of Jehoram king of Judah went down to see Jehoram the son of Ahab at Jezreel, because he was sick. \nAnd the destruction of Ahaziah was of God by coming to Joram: for when he was come, he went out with Jehoram against Jehu the son of Nimshi, whom the LORD had anointed to cut off the house of Ahab. \nAnd it came to pass, that, when Jehu was executing judgment upon the house of Ahab, and found the princes of Judah, and the sons of the brethren of Ahaziah, that ministered to Ahaziah, he slew them. \nAnd he sought Ahaziah: and they caught him, (for he was hid in Samaria,) and brought him to Jehu: and when they had slain him, they buried him: Because, said they, he is the son of Jehoshaphat, who sought the LORD with all his heart. So the house of Ahaziah had no power to keep still the kingdom. \nBut when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal of the house of Judah. \nBut Jehoshabeath, the daughter of the king, took Joash the son of Ahaziah, and stole him from among the king's sons that were slain, and put him and his nurse in a bedchamber. So Jehoshabeath, the daughter of king Jehoram, the wife of Jehoiada the priest, (for she was the sister of Ahaziah,) hid him from Athaliah, so that she slew him not. \nAnd he was with them hid in the house of God six years: and Athaliah reigned over the land. \nAnd in the seventh year Jehoiada strengthened himself, and took the captains of hundreds, Azariah the son of Jeroham, and Ishmael the son of Jehohanan, and Azariah the son of Obed, and Maaseiah the son of Adaiah, and Elishaphat the son of Zichri, into covenant with him. \nAnd they went about in Judah, and gathered the Levites out of all the cities of Judah, and the chief of the fathers of Israel, and they came to Jerusalem. \nAnd all the congregation made a covenant with the king in the house of God. And he said unto them, Behold, the king's son shall reign, as the LORD hath said of the sons of David. \nThis is the thing that ye shall do; A third part of you entering on the sabbath, of the priests and of the Levites, shall be porters of the doors; \nAnd a third part shall be at the king's house; and a third part at the gate of the foundation: and all the people shall be in the courts of the house of the LORD. \nBut let none come into the house of the LORD, save the priests, and they that minister of the Levites; they shall go in, for they are holy: but all the people shall keep the watch of the LORD. \nAnd the Levites shall compass the king round about, every man with his weapons in his hand; and whosoever else cometh into the house, he shall be put to death: but be ye with the king when he cometh in, and when he goeth out. \nSo the Levites and all Judah did according to all things that Jehoiada the priest had commanded, and took every man his men that were to come in on the sabbath, with them that were to go out on the sabbath: for Jehoiada the priest dismissed not the courses. \nMoreover Jehoiada the priest delivered to the captains of hundreds spears, and bucklers, and shields, that had been king David's, which were in the house of God. \nAnd he set all the people, every man having his weapon in his hand, from the right side of the temple to the left side of the temple, along by the altar and the temple, by the king round about. \nThen they brought out the king's son, and put upon him the crown, and gave him the testimony, and made him king. And Jehoiada and his sons anointed him, and said, God save the king. \nNow when Athaliah heard the noise of the people running and praising the king, she came to the people into the house of the LORD: \nAnd she looked, and, behold, the king stood at his pillar at the entering in, and the princes and the trumpets by the king: and all the people of the land rejoiced, and sounded with trumpets, also the singers with instruments of musick, and such as taught to sing praise. Then Athaliah rent her clothes, and said, Treason, Treason. \nThen Jehoiada the priest brought out the captains of hundreds that were set over the host, and said unto them, Have her forth of the ranges: and whoso followeth her, let him be slain with the sword. For the priest said, Slay her not in the house of the LORD. \nSo they laid hands on her; and when she was come to the entering of the horse gate by the king's house, they slew her there. \nAnd Jehoiada made a covenant between him, and between all the people, and between the king, that they should be the LORD's people. \nThen all the people went to the house of Baal, and brake it down, and brake his altars and his images in pieces, and slew Mattan the priest of Baal before the altars. \nAlso Jehoiada appointed the offices of the house of the LORD by the hand of the priests the Levites, whom David had distributed in the house of the LORD, to offer the burnt offerings of the LORD, as it is written in the law of Moses, with rejoicing and with singing, as it was ordained by David. \nAnd he set the porters at the gates of the house of the LORD, that none which was unclean in any thing should enter in. \nAnd he took the captains of hundreds, and the nobles, and the governors of the people, and all the people of the land, and brought down the king from the house of the LORD: and they came through the high gate into the king's house, and set the king upon the throne of the kingdom. \nAnd all the people of the land rejoiced: and the city was quiet, after that they had slain Athaliah with the sword. \nJoash was seven years old when he began to reign, and he reigned forty years in Jerusalem. His mother's name also was Zibiah of Beersheba. \nAnd Joash did that which was right in the sight of the LORD all the days of Jehoiada the priest. \nAnd Jehoiada took for him two wives; and he begat sons and daughters. \nAnd it came to pass after this, that Joash was minded to repair the house of the LORD. \nAnd he gathered together the priests and the Levites, and said to them, Go out unto the cities of Judah, and gather of all Israel money to repair the house of your God from year to year, and see that ye hasten the matter. Howbeit the Levites hastened it not. \nAnd the king called for Jehoiada the chief, and said unto him, Why hast thou not required of the Levites to bring in out of Judah and out of Jerusalem the collection, according to the commandment of Moses the servant of the LORD, and of the congregation of Israel, for the tabernacle of witness? \nFor the sons of Athaliah, that wicked woman, had broken up the house of God; and also all the dedicated things of the house of the LORD did they bestow upon Baalim. \nAnd at the king's commandment they made a chest, and set it without at the gate of the house of the LORD. \nAnd they made a proclamation through Judah and Jerusalem, to bring in to the LORD the collection that Moses the servant of God laid upon Israel in the wilderness. \nAnd all the princes and all the people rejoiced, and brought in, and cast into the chest, until they had made an end. \nNow it came to pass, that at what time the chest was brought unto the king's office by the hand of the Levites, and when they saw that there was much money, the king's scribe and the high priest's officer came and emptied the chest, and took it, and carried it to his place again. Thus they did day by day, and gathered money in abundance. \nAnd the king and Jehoiada gave it to such as did the work of the service of the house of the LORD, and hired masons and carpenters to repair the house of the LORD, and also such as wrought iron and brass to mend the house of the LORD. \nSo the workmen wrought, and the work was perfected by them, and they set the house of God in his state, and strengthened it. \nAnd when they had finished it, they brought the rest of the money before the king and Jehoiada, whereof were made vessels for the house of the LORD, even vessels to minister, and to offer withal, and spoons, and vessels of gold and silver. And they offered burnt offerings in the house of the LORD continually all the days of Jehoiada. \nBut Jehoiada waxed old, and was full of days when he died; an hundred and thirty years old was he when he died. \nAnd they buried him in the city of David among the kings, because he had done good in Israel, both toward God, and toward his house. \nNow after the death of Jehoiada came the princes of Judah, and made obeisance to the king. Then the king hearkened unto them. \nAnd they left the house of the LORD God of their fathers, and served groves and idols: and wrath came upon Judah and Jerusalem for this their trespass. \nYet he sent prophets to them, to bring them again unto the LORD; and they testified against them: but they would not give ear. \nAnd the Spirit of God came upon Zechariah the son of Jehoiada the priest, which stood above the people, and said unto them, Thus saith God, Why transgress ye the commandments of the LORD, that ye cannot prosper? because ye have forsaken the LORD, he hath also forsaken you. \nAnd they conspired against him, and stoned him with stones at the commandment of the king in the court of the house of the LORD. \nThus Joash the king remembered not the kindness which Jehoiada his father had done to him, but slew his son. And when he died, he said, The LORD look upon it, and require it. \nAnd it came to pass at the end of the year, that the host of Syria came up against him: and they came to Judah and Jerusalem, and destroyed all the princes of the people from among the people, and sent all the spoil of them unto the king of Damascus. \nFor the army of the Syrians came with a small company of men, and the LORD delivered a very great host into their hand, because they had forsaken the LORD God of their fathers. So they executed judgment against Joash. \nAnd when they were departed from him, (for they left him in great diseases,) his own servants conspired against him for the blood of the sons of Jehoiada the priest, and slew him on his bed, and he died: and they buried him in the city of David, but they buried him not in the sepulchres of the kings. \nAnd these are they that conspired against him; Zabad the son of Shimeath an Ammonitess, and Jehozabad the son of Shimrith a Moabitess. \nNow concerning his sons, and the greatness of the burdens laid upon him, and the repairing of the house of God, behold, they are written in the story of the book of the kings. And Amaziah his son reigned in his stead. \nAmaziah was twenty and five years old when he began to reign, and he reigned twenty and nine years in Jerusalem. And his mother's name was Jehoaddan of Jerusalem. \nAnd he did that which was right in the sight of the LORD, but not with a perfect heart. \nNow it came to pass, when the kingdom was established to him, that he slew his servants that had killed the king his father. \nBut he slew not their children, but did as it is written in the law in the book of Moses, where the LORD commanded, saying, The fathers shall not die for the children, neither shall the children die for the fathers, but every man shall die for his own sin. \nMoreover Amaziah gathered Judah together, and made them captains over thousands, and captains over hundreds, according to the houses of their fathers, throughout all Judah and Benjamin: and he numbered them from twenty years old and above, and found them three hundred thousand choice men, able to go forth to war, that could handle spear and shield. \nHe hired also an hundred thousand mighty men of valour out of Israel for an hundred talents of silver. \nBut there came a man of God to him, saying, O king, let not the army of Israel go with thee; for the LORD is not with Israel, to wit, with all the children of Ephraim. \nBut if thou wilt go, do it; be strong for the battle: God shall make thee fall before the enemy: for God hath power to help, and to cast down. \nAnd Amaziah said to the man of God, But what shall we do for the hundred talents which I have given to the army of Israel? And the man of God answered, The LORD is able to give thee much more than this. \nThen Amaziah separated them, to wit, the army that was come to him out of Ephraim, to go home again: wherefore their anger was greatly kindled against Judah, and they returned home in great anger. \nAnd Amaziah strengthened himself, and led forth his people, and went to the valley of salt, and smote of the children of Seir ten thousand. \nAnd other ten thousand left alive did the children of Judah carry away captive, and brought them unto the top of the rock, and cast them down from the top of the rock, that they all were broken in pieces. \nBut the soldiers of the army which Amaziah sent back, that they should not go with him to battle, fell upon the cities of Judah, from Samaria even unto Bethhoron, and smote three thousand of them, and took much spoil. \nNow it came to pass, after that Amaziah was come from the slaughter of the Edomites, that he brought the gods of the children of Seir, and set them up to be his gods, and bowed down himself before them, and burned incense unto them. \nWherefore the anger of the LORD was kindled against Amaziah, and he sent unto him a prophet, which said unto him, Why hast thou sought after the gods of the people, which could not deliver their own people out of thine hand? \nAnd it came to pass, as he talked with him, that the king said unto him, Art thou made of the king's counsel? forbear; why shouldest thou be smitten? Then the prophet forbare, and said, I know that God hath determined to destroy thee, because thou hast done this, and hast not hearkened unto my counsel. \nThen Amaziah king of Judah took advice, and sent to Joash, the son of Jehoahaz, the son of Jehu, king of Israel, saying, Come, let us see one another in the face. \nAnd Joash king of Israel sent to Amaziah king of Judah, saying, The thistle that was in Lebanon sent to the cedar that was in Lebanon, saying, Give thy daughter to my son to wife: and there passed by a wild beast that was in Lebanon, and trode down the thistle. \nThou sayest, Lo, thou hast smitten the Edomites; and thine heart lifteth thee up to boast: abide now at home; why shouldest thou meddle to thine hurt, that thou shouldest fall, even thou, and Judah with thee? \nBut Amaziah would not hear; for it came of God, that he might deliver them into the hand of their enemies, because they sought after the gods of Edom. \nSo Joash the king of Israel went up; and they saw one another in the face, both he and Amaziah king of Judah, at Bethshemesh, which belongeth to Judah. \nAnd Judah was put to the worse before Israel, and they fled every man to his tent. \nAnd Joash the king of Israel took Amaziah king of Judah, the son of Joash, the son of Jehoahaz, at Bethshemesh, and brought him to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim to the corner gate, four hundred cubits. \nAnd he took all the gold and the silver, and all the vessels that were found in the house of God with Obededom, and the treasures of the king's house, the hostages also, and returned to Samaria. \nAnd Amaziah the son of Joash king of Judah lived after the death of Joash son of Jehoahaz king of Israel fifteen years. \nNow the rest of the acts of Amaziah, first and last, behold, are they not written in the book of the kings of Judah and Israel? \nNow after the time that Amaziah did turn away from following the LORD they made a conspiracy against him in Jerusalem; and he fled to Lachish: but they sent to Lachish after him, and slew him there. \nAnd they brought him upon horses, and buried him with his fathers in the city of Judah. \nThen all the people of Judah took Uzziah, who was sixteen years old, and made him king in the room of his father Amaziah. \nHe built Eloth, and restored it to Judah, after that the king slept with his fathers. \nSixteen years old was Uzziah when he began to reign, and he reigned fifty and two years in Jerusalem. His mother's name also was Jecoliah of Jerusalem. \nAnd he did that which was right in the sight of the LORD, according to all that his father Amaziah did. \nAnd he sought God in the days of Zechariah, who had understanding in the visions of God: and as long as he sought the LORD, God made him to prosper. \nAnd he went forth and warred against the Philistines, and brake down the wall of Gath, and the wall of Jabneh, and the wall of Ashdod, and built cities about Ashdod, and among the Philistines. \nAnd God helped him against the Philistines, and against the Arabians that dwelt in Gurbaal, and the Mehunims. \nAnd the Ammonites gave gifts to Uzziah: and his name spread abroad even to the entering in of Egypt; for he strengthened himself exceedingly. \nMoreover Uzziah built towers in Jerusalem at the corner gate, and at the valley gate, and at the turning of the wall, and fortified them. \nAlso he built towers in the desert, and digged many wells: for he had much cattle, both in the low country, and in the plains: husbandmen also, and vine dressers in the mountains, and in Carmel: for he loved husbandry. \nMoreover Uzziah had an host of fighting men, that went out to war by bands, according to the number of their account by the hand of Jeiel the scribe and Maaseiah the ruler, under the hand of Hananiah, one of the king's captains. \nThe whole number of the chief of the fathers of the mighty men of valour were two thousand and six hundred. \nAnd under their hand was an army, three hundred thousand and seven thousand and five hundred, that made war with mighty power, to help the king against the enemy. \nAnd Uzziah prepared for them throughout all the host shields, and spears, and helmets, and habergeons, and bows, and slings to cast stones. \nAnd he made in Jerusalem engines, invented by cunning men, to be on the towers and upon the bulwarks, to shoot arrows and great stones withal. And his name spread far abroad; for he was marvellously helped, till he was strong. \nBut when he was strong, his heart was lifted up to his destruction: for he transgressed against the LORD his God, and went into the temple of the LORD to burn incense upon the altar of incense. \nAnd Azariah the priest went in after him, and with him fourscore priests of the LORD, that were valiant men: \nAnd they withstood Uzziah the king, and said unto him, It appertaineth not unto thee, Uzziah, to burn incense unto the LORD, but to the priests the sons of Aaron, that are consecrated to burn incense: go out of the sanctuary; for thou hast trespassed; neither shall it be for thine honour from the LORD God. \nThen Uzziah was wroth, and had a censer in his hand to burn incense: and while he was wroth with the priests, the leprosy even rose up in his forehead before the priests in the house of the LORD, from beside the incense altar. \nAnd Azariah the chief priest, and all the priests, looked upon him, and, behold, he was leprous in his forehead, and they thrust him out from thence; yea, himself hasted also to go out, because the LORD had smitten him. \nAnd Uzziah the king was a leper unto the day of his death, and dwelt in a several house, being a leper; for he was cut off from the house of the LORD: and Jotham his son was over the king's house, judging the people of the land. \nNow the rest of the acts of Uzziah, first and last, did Isaiah the prophet, the son of Amoz, write. \nSo Uzziah slept with his fathers, and they buried him with his fathers in the field of the burial which belonged to the kings; for they said, He is a leper: and Jotham his son reigned in his stead. \nJotham was twenty and five years old when he began to reign, and he reigned sixteen years in Jerusalem. His mother's name also was Jerushah, the daughter of Zadok. \nAnd he did that which was right in the sight of the LORD, according to all that his father Uzziah did: howbeit he entered not into the temple of the LORD. And the people did yet corruptly. \nHe built the high gate of the house of the LORD, and on the wall of Ophel he built much. \nMoreover he built cities in the mountains of Judah, and in the forests he built castles and towers. \nHe fought also with the king of the Ammonites, and prevailed against them. And the children of Ammon gave him the same year an hundred talents of silver, and ten thousand measures of wheat, and ten thousand of barley. So much did the children of Ammon pay unto him, both the second year, and the third. \nSo Jotham became mighty, because he prepared his ways before the LORD his God. \nNow the rest of the acts of Jotham, and all his wars, and his ways, lo, they are written in the book of the kings of Israel and Judah. \nHe was five and twenty years old when he began to reign, and reigned sixteen years in Jerusalem. \nAnd Jotham slept with his fathers, and they buried him in the city of David: and Ahaz his son reigned in his stead. \nAhaz was twenty years old when he began to reign, and he reigned sixteen years in Jerusalem: but he did not that which was right in the sight of the LORD, like David his father: \nFor he walked in the ways of the kings of Israel, and made also molten images for Baalim. \nMoreover he burnt incense in the valley of the son of Hinnom, and burnt his children in the fire, after the abominations of the heathen whom the LORD had cast out before the children of Israel. \nHe sacrificed also and burnt incense in the high places, and on the hills, and under every green tree. \nWherefore the LORD his God delivered him into the hand of the king of Syria; and they smote him, and carried away a great multitude of them captives, and brought them to Damascus. And he was also delivered into the hand of the king of Israel, who smote him with a great slaughter. \nFor Pekah the son of Remaliah slew in Judah an hundred and twenty thousand in one day, which were all valiant men; because they had forsaken the LORD God of their fathers. \nAnd Zichri, a mighty man of Ephraim, slew Maaseiah the king's son, and Azrikam the governor of the house, and Elkanah that was next to the king. \nAnd the children of Israel carried away captive of their brethren two hundred thousand, women, sons, and daughters, and took also away much spoil from them, and brought the spoil to Samaria. \nBut a prophet of the LORD was there, whose name was Oded: and he went out before the host that came to Samaria, and said unto them, Behold, because the LORD God of your fathers was wroth with Judah, he hath delivered them into your hand, and ye have slain them in a rage that reacheth up unto heaven. \nAnd now ye purpose to keep under the children of Judah and Jerusalem for bondmen and bondwomen unto you: but are there not with you, even with you, sins against the LORD your God? \nNow hear me therefore, and deliver the captives again, which ye have taken captive of your brethren: for the fierce wrath of the LORD is upon you. \nThen certain of the heads of the children of Ephraim, Azariah the son of Johanan, Berechiah the son of Meshillemoth, and Jehizkiah the son of Shallum, and Amasa the son of Hadlai, stood up against them that came from the war, \nAnd said unto them, Ye shall not bring in the captives hither: for whereas we have offended against the LORD already, ye intend to add more to our sins and to our trespass: for our trespass is great, and there is fierce wrath against Israel. \nSo the armed men left the captives and the spoil before the princes and all the congregation. \nAnd the men which were expressed by name rose up, and took the captives, and with the spoil clothed all that were naked among them, and arrayed them, and shod them, and gave them to eat and to drink, and anointed them, and carried all the feeble of them upon asses, and brought them to Jericho, the city of palm trees, to their brethren: then they returned to Samaria. \nAt that time did king Ahaz send unto the kings of Assyria to help him. \nFor again the Edomites had come and smitten Judah, and carried away captives. \nThe Philistines also had invaded the cities of the low country, and of the south of Judah, and had taken Bethshemesh, and Ajalon, and Gederoth, and Shocho with the villages thereof, and Timnah with the villages thereof, Gimzo also and the villages thereof: and they dwelt there. \nFor the LORD brought Judah low because of Ahaz king of Israel; for he made Judah naked, and transgressed sore against the LORD. \nAnd Tilgathpilneser king of Assyria came unto him, and distressed him, but strengthened him not. \nFor Ahaz took away a portion out of the house of the LORD, and out of the house of the king, and of the princes, and gave it unto the king of Assyria: but he helped him not. \nAnd in the time of his distress did he trespass yet more against the LORD: this is that king Ahaz. \nFor he sacrificed unto the gods of Damascus, which smote him: and he said, Because the gods of the kings of Syria help them, therefore will I sacrifice to them, that they may help me. But they were the ruin of him, and of all Israel. \nAnd Ahaz gathered together the vessels of the house of God, and cut in pieces the vessels of the house of God, and shut up the doors of the house of the LORD, and he made him altars in every corner of Jerusalem. \nAnd in every several city of Judah he made high places to burn incense unto other gods, and provoked to anger the LORD God of his fathers. \nNow the rest of his acts and of all his ways, first and last, behold, they are written in the book of the kings of Judah and Israel. \nAnd Ahaz slept with his fathers, and they buried him in the city, even in Jerusalem: but they brought him not into the sepulchres of the kings of Israel: and Hezekiah his son reigned in his stead. \nHezekiah began to reign when he was five and twenty years old, and he reigned nine and twenty years in Jerusalem. And his mother's name was Abijah, the daughter of Zechariah. \nAnd he did that which was right in the sight of the LORD, according to all that David his father had done. \nHe in the first year of his reign, in the first month, opened the doors of the house of the LORD, and repaired them. \nAnd he brought in the priests and the Levites, and gathered them together into the east street, \nAnd said unto them, Hear me, ye Levites, sanctify now yourselves, and sanctify the house of the LORD God of your fathers, and carry forth the filthiness out of the holy place. \nFor our fathers have trespassed, and done that which was evil in the eyes of the LORD our God, and have forsaken him, and have turned away their faces from the habitation of the LORD, and turned their backs. \nAlso they have shut up the doors of the porch, and put out the lamps, and have not burned incense nor offered burnt offerings in the holy place unto the God of Israel. \nWherefore the wrath of the LORD was upon Judah and Jerusalem, and he hath delivered them to trouble, to astonishment, and to hissing, as ye see with your eyes. \nFor, lo, our fathers have fallen by the sword, and our sons and our daughters and our wives are in captivity for this. \nNow it is in mine heart to make a covenant with the LORD God of Israel, that his fierce wrath may turn away from us. \nMy sons, be not now negligent: for the LORD hath chosen you to stand before him, to serve him, and that ye should minister unto him, and burn incense. \nThen the Levites arose, Mahath the son of Amasai, and Joel the son of Azariah, of the sons of the Kohathites: and of the sons of Merari, Kish the son of Abdi, and Azariah the son of Jehalelel: and of the Gershonites; Joah the son of Zimmah, and Eden the son of Joah: \nAnd of the sons of Elizaphan; Shimri, and Jeiel: and of the sons of Asaph; Zechariah, and Mattaniah: \nAnd of the sons of Heman; Jehiel, and Shimei: and of the sons of Jeduthun; Shemaiah, and Uzziel. \nAnd they gathered their brethren, and sanctified themselves, and came, according to the commandment of the king, by the words of the LORD, to cleanse the house of the LORD. \nAnd the priests went into the inner part of the house of the LORD, to cleanse it, and brought out all the uncleanness that they found in the temple of the LORD into the court of the house of the LORD. And the Levites took it, to carry it out abroad into the brook Kidron. \nNow they began on the first day of the first month to sanctify, and on the eighth day of the month came they to the porch of the LORD: so they sanctified the house of the LORD in eight days; and in the sixteenth day of the first month they made an end. \nThen they went in to Hezekiah the king, and said, We have cleansed all the house of the LORD, and the altar of burnt offering, with all the vessels thereof, and the shewbread table, with all the vessels thereof. \nMoreover all the vessels, which king Ahaz in his reign did cast away in his transgression, have we prepared and sanctified, and, behold, they are before the altar of the LORD. \nThen Hezekiah the king rose early, and gathered the rulers of the city, and went up to the house of the LORD. \nAnd they brought seven bullocks, and seven rams, and seven lambs, and seven he goats, for a sin offering for the kingdom, and for the sanctuary, and for Judah. And he commanded the priests the sons of Aaron to offer them on the altar of the LORD. \nSo they killed the bullocks, and the priests received the blood, and sprinkled it on the altar: likewise, when they had killed the rams, they sprinkled the blood upon the altar: they killed also the lambs, and they sprinkled the blood upon the altar. \nAnd they brought forth the he goats for the sin offering before the king and the congregation; and they laid their hands upon them: \nAnd the priests killed them, and they made reconciliation with their blood upon the altar, to make an atonement for all Israel: for the king commanded that the burnt offering and the sin offering should be made for all Israel. \nAnd he set the Levites in the house of the LORD with cymbals, with psalteries, and with harps, according to the commandment of David, and of Gad the king's seer, and Nathan the prophet: for so was the commandment of the LORD by his prophets. \nAnd the Levites stood with the instruments of David, and the priests with the trumpets. \nAnd Hezekiah commanded to offer the burnt offering upon the altar. And when the burnt offering began, the song of the LORD began also with the trumpets, and with the instruments ordained by David king of Israel. \nAnd all the congregation worshipped, and the singers sang, and the trumpeters sounded: and all this continued until the burnt offering was finished. \nAnd when they had made an end of offering, the king and all that were present with him bowed themselves, and worshipped. \nMoreover Hezekiah the king and the princes commanded the Levites to sing praise unto the LORD with the words of David, and of Asaph the seer. And they sang praises with gladness, and they bowed their heads and worshipped. \nThen Hezekiah answered and said, Now ye have consecrated yourselves unto the LORD, come near and bring sacrifices and thank offerings into the house of the LORD. And the congregation brought in sacrifices and thank offerings; and as many as were of a free heart burnt offerings. \nAnd the number of the burnt offerings, which the congregation brought, was threescore and ten bullocks, an hundred rams, and two hundred lambs: all these were for a burnt offering to the LORD. \nAnd the consecrated things were six hundred oxen and three thousand sheep. \nBut the priests were too few, so that they could not flay all the burnt offerings: wherefore their brethren the Levites did help them, till the work was ended, and until the other priests had sanctified themselves: for the Levites were more upright in heart to sanctify themselves than the priests. \nAnd also the burnt offerings were in abundance, with the fat of the peace offerings, and the drink offerings for every burnt offering. So the service of the house of the LORD was set in order. \nAnd Hezekiah rejoiced, and all the people, that God had prepared the people: for the thing was done suddenly. \nAnd Hezekiah sent to all Israel and Judah, and wrote letters also to Ephraim and Manasseh, that they should come to the house of the LORD at Jerusalem, to keep the passover unto the LORD God of Israel. \nFor the king had taken counsel, and his princes, and all the congregation in Jerusalem, to keep the passover in the second month. \nFor they could not keep it at that time, because the priests had not sanctified themselves sufficiently, neither had the people gathered themselves together to Jerusalem. \nAnd the thing pleased the king and all the congregation. \nSo they established a decree to make proclamation throughout all Israel, from Beersheba even to Dan, that they should come to keep the passover unto the LORD God of Israel at Jerusalem: for they had not done it of a long time in such sort as it was written. \nSo the posts went with the letters from the king and his princes throughout all Israel and Judah, and according to the commandment of the king, saying, Ye children of Israel, turn again unto the LORD God of Abraham, Isaac, and Israel, and he will return to the remnant of you, that are escaped out of the hand of the kings of Assyria. \nAnd be not ye like your fathers, and like your brethren, which trespassed against the LORD God of their fathers, who therefore gave them up to desolation, as ye see. \nNow be ye not stiffnecked, as your fathers were, but yield yourselves unto the LORD, and enter into his sanctuary, which he hath sanctified for ever: and serve the LORD your God, that the fierceness of his wrath may turn away from you. \nFor if ye turn again unto the LORD, your brethren and your children shall find compassion before them that lead them captive, so that they shall come again into this land: for the LORD your God is gracious and merciful, and will not turn away his face from you, if ye return unto him. \nSo the posts passed from city to city through the country of Ephraim and Manasseh even unto Zebulun: but they laughed them to scorn, and mocked them. \nNevertheless divers of Asher and Manasseh and of Zebulun humbled themselves, and came to Jerusalem. \nAlso in Judah the hand of God was to give them one heart to do the commandment of the king and of the princes, by the word of the LORD. \nAnd there assembled at Jerusalem much people to keep the feast of unleavened bread in the second month, a very great congregation. \nAnd they arose and took away the altars that were in Jerusalem, and all the altars for incense took they away, and cast them into the brook Kidron. \nThen they killed the passover on the fourteenth day of the second month: and the priests and the Levites were ashamed, and sanctified themselves, and brought in the burnt offerings into the house of the LORD. \nAnd they stood in their place after their manner, according to the law of Moses the man of God: the priests sprinkled the blood, which they received of the hand of the Levites. \nFor there were many in the congregation that were not sanctified: therefore the Levites had the charge of the killing of the passovers for every one that was not clean, to sanctify them unto the LORD. \nFor a multitude of the people, even many of Ephraim, and Manasseh, Issachar, and Zebulun, had not cleansed themselves, yet did they eat the passover otherwise than it was written. But Hezekiah prayed for them, saying, The good LORD pardon every one \nThat prepareth his heart to seek God, the LORD God of his fathers, though he be not cleansed according to the purification of the sanctuary. \nAnd the LORD hearkened to Hezekiah, and healed the people. \nAnd the children of Israel that were present at Jerusalem kept the feast of unleavened bread seven days with great gladness: and the Levites and the priests praised the LORD day by day, singing with loud instruments unto the LORD. \nAnd Hezekiah spake comfortably unto all the Levites that taught the good knowledge of the LORD: and they did eat throughout the feast seven days, offering peace offerings, and making confession to the LORD God of their fathers. \nAnd the whole assembly took counsel to keep other seven days: and they kept other seven days with gladness. \nFor Hezekiah king of Judah did give to the congregation a thousand bullocks and seven thousand sheep; and the princes gave to the congregation a thousand bullocks and ten thousand sheep: and a great number of priests sanctified themselves. \nAnd all the congregation of Judah, with the priests and the Levites, and all the congregation that came out of Israel, and the strangers that came out of the land of Israel, and that dwelt in Judah, rejoiced. \nSo there was great joy in Jerusalem: for since the time of Solomon the son of David king of Israel there was not the like in Jerusalem. \nThen the priests the Levites arose and blessed the people: and their voice was heard, and their prayer came up to his holy dwelling place, even unto heaven. \nNow when all this was finished, all Israel that were present went out to the cities of Judah, and brake the images in pieces, and cut down the groves, and threw down the high places and the altars out of all Judah and Benjamin, in Ephraim also and Manasseh, until they had utterly destroyed them all. Then all the children of Israel returned, every man to his possession, into their own cities. \nAnd Hezekiah appointed the courses of the priests and the Levites after their courses, every man according to his service, the priests and Levites for burnt offerings and for peace offerings, to minister, and to give thanks, and to praise in the gates of the tents of the LORD. \nHe appointed also the king's portion of his substance for the burnt offerings, to wit, for the morning and evening burnt offerings, and the burnt offerings for the sabbaths, and for the new moons, and for the set feasts, as it is written in the law of the LORD. \nMoreover he commanded the people that dwelt in Jerusalem to give the portion of the priests and the Levites, that they might be encouraged in the law of the LORD. \nAnd as soon as the commandment came abroad, the children of Israel brought in abundance the firstfruits of corn, wine, and oil, and honey, and of all the increase of the field; and the tithe of all things brought they in abundantly. \nAnd concerning the children of Israel and Judah, that dwelt in the cities of Judah, they also brought in the tithe of oxen and sheep, and the tithe of holy things which were consecrated unto the LORD their God, and laid them by heaps. \nIn the third month they began to lay the foundation of the heaps, and finished them in the seventh month. \nAnd when Hezekiah and the princes came and saw the heaps, they blessed the LORD, and his people Israel. \nThen Hezekiah questioned with the priests and the Levites concerning the heaps. \nAnd Azariah the chief priest of the house of Zadok answered him, and said, Since the people began to bring the offerings into the house of the LORD, we have had enough to eat, and have left plenty: for the LORD hath blessed his people; and that which is left is this great store. \nThen Hezekiah commanded to prepare chambers in the house of the LORD; and they prepared them, \nAnd brought in the offerings and the tithes and the dedicated things faithfully: over which Cononiah the Levite was ruler, and Shimei his brother was the next. \nAnd Jehiel, and Azaziah, and Nahath, and Asahel, and Jerimoth, and Jozabad, and Eliel, and Ismachiah, and Mahath, and Benaiah, were overseers under the hand of Cononiah and Shimei his brother, at the commandment of Hezekiah the king, and Azariah the ruler of the house of God. \nAnd Kore the son of Imnah the Levite, the porter toward the east, was over the freewill offerings of God, to distribute the oblations of the LORD, and the most holy things. \nAnd next him were Eden, and Miniamin, and Jeshua, and Shemaiah, Amariah, and Shecaniah, in the cities of the priests, in their set office, to give to their brethren by courses, as well to the great as to the small: \nBeside their genealogy of males, from three years old and upward, even unto every one that entereth into the house of the LORD, his daily portion for their service in their charges according to their courses; \nBoth to the genealogy of the priests by the house of their fathers, and the Levites from twenty years old and upward, in their charges by their courses; \nAnd to the genealogy of all their little ones, their wives, and their sons, and their daughters, through all the congregation: for in their set office they sanctified themselves in holiness: \nAlso of the sons of Aaron the priests, which were in the fields of the suburbs of their cities, in every several city, the men that were expressed by name, to give portions to all the males among the priests, and to all that were reckoned by genealogies among the Levites. \nAnd thus did Hezekiah throughout all Judah, and wrought that which was good and right and truth before the LORD his God. \nAnd in every work that he began in the service of the house of God, and in the law, and in the commandments, to seek his God, he did it with all his heart, and prospered. \nAfter these things, and the establishment thereof, Sennacherib king of Assyria came, and entered into Judah, and encamped against the fenced cities, and thought to win them for himself. \nAnd when Hezekiah saw that Sennacherib was come, and that he was purposed to fight against Jerusalem, \nHe took counsel with his princes and his mighty men to stop the waters of the fountains which were without the city: and they did help him. \nSo there was gathered much people together, who stopped all the fountains, and the brook that ran through the midst of the land, saying, Why should the kings of Assyria come, and find much water? \nAlso he strengthened himself, and built up all the wall that was broken, and raised it up to the towers, and another wall without, and repaired Millo in the city of David, and made darts and shields in abundance. \nAnd he set captains of war over the people, and gathered them together to him in the street of the gate of the city, and spake comfortably to them, saying, \nBe strong and courageous, be not afraid nor dismayed for the king of Assyria, nor for all the multitude that is with him: for there be more with us than with him: \nWith him is an arm of flesh; but with us is the LORD our God to help us, and to fight our battles. And the people rested themselves upon the words of Hezekiah king of Judah. \nAfter this did Sennacherib king of Assyria send his servants to Jerusalem, (but he himself laid siege against Lachish, and all his power with him,) unto Hezekiah king of Judah, and unto all Judah that were at Jerusalem, saying, \nThus saith Sennacherib king of Assyria, Whereon do ye trust, that ye abide in the siege in Jerusalem? \nDoth not Hezekiah persuade you to give over yourselves to die by famine and by thirst, saying, The LORD our God shall deliver us out of the hand of the king of Assyria? \nHath not the same Hezekiah taken away his high places and his altars, and commanded Judah and Jerusalem, saying, Ye shall worship before one altar, and burn incense upon it? \nKnow ye not what I and my fathers have done unto all the people of other lands? were the gods of the nations of those lands any ways able to deliver their lands out of mine hand? \nWho was there among all the gods of those nations that my fathers utterly destroyed, that could deliver his people out of mine hand, that your God should be able to deliver you out of mine hand? \nNow therefore let not Hezekiah deceive you, nor persuade you on this manner, neither yet believe him: for no god of any nation or kingdom was able to deliver his people out of mine hand, and out of the hand of my fathers: how much less shall your God deliver you out of mine hand? \nAnd his servants spake yet more against the LORD God, and against his servant Hezekiah. \nHe wrote also letters to rail on the LORD God of Israel, and to speak against him, saying, As the gods of the nations of other lands have not delivered their people out of mine hand, so shall not the God of Hezekiah deliver his people out of mine hand. \nThen they cried with a loud voice in the Jews' speech unto the people of Jerusalem that were on the wall, to affright them, and to trouble them; that they might take the city. \nAnd they spake against the God of Jerusalem, as against the gods of the people of the earth, which were the work of the hands of man. \nAnd for this cause Hezekiah the king, and the prophet Isaiah the son of Amoz, prayed and cried to heaven. \nAnd the LORD sent an angel, which cut off all the mighty men of valour, and the leaders and captains in the camp of the king of Assyria. So he returned with shame of face to his own land. And when he was come into the house of his god, they that came forth of his own bowels slew him there with the sword. \nThus the LORD saved Hezekiah and the inhabitants of Jerusalem from the hand of Sennacherib the king of Assyria, and from the hand of all other, and guided them on every side. \nAnd many brought gifts unto the LORD to Jerusalem, and presents to Hezekiah king of Judah: so that he was magnified in the sight of all nations from thenceforth. \nIn those days Hezekiah was sick to the death, and prayed unto the LORD: and he spake unto him, and he gave him a sign. \nBut Hezekiah rendered not again according to the benefit done unto him; for his heart was lifted up: therefore there was wrath upon him, and upon Judah and Jerusalem. \nNotwithstanding Hezekiah humbled himself for the pride of his heart, both he and the inhabitants of Jerusalem, so that the wrath of the LORD came not upon them in the days of Hezekiah. \nAnd Hezekiah had exceeding much riches and honour: and he made himself treasuries for silver, and for gold, and for precious stones, and for spices, and for shields, and for all manner of pleasant jewels; \nStorehouses also for the increase of corn, and wine, and oil; and stalls for all manner of beasts, and cotes for flocks. \nMoreover he provided him cities, and possessions of flocks and herds in abundance: for God had given him substance very much. \nThis same Hezekiah also stopped the upper watercourse of Gihon, and brought it straight down to the west side of the city of David. And Hezekiah prospered in all his works. \nHowbeit in the business of the ambassadors of the princes of Babylon, who sent unto him to enquire of the wonder that was done in the land, God left him, to try him, that he might know all that was in his heart. \nNow the rest of the acts of Hezekiah, and his goodness, behold, they are written in the vision of Isaiah the prophet, the son of Amoz, and in the book of the kings of Judah and Israel. \nAnd Hezekiah slept with his fathers, and they buried him in the chiefest of the sepulchres of the sons of David: and all Judah and the inhabitants of Jerusalem did him honour at his death. And Manasseh his son reigned in his stead. \nManasseh was twelve years old when he began to reign, and he reigned fifty and five years in Jerusalem: \nBut did that which was evil in the sight of the LORD, like unto the abominations of the heathen, whom the LORD had cast out before the children of Israel. \nFor he built again the high places which Hezekiah his father had broken down, and he reared up altars for Baalim, and made groves, and worshipped all the host of heaven, and served them. \nAlso he built altars in the house of the LORD, whereof the LORD had said, In Jerusalem shall my name be for ever. \nAnd he built altars for all the host of heaven in the two courts of the house of the LORD. \nAnd he caused his children to pass through the fire in the valley of the son of Hinnom: also he observed times, and used enchantments, and used witchcraft, and dealt with a familiar spirit, and with wizards: he wrought much evil in the sight of the LORD, to provoke him to anger. \nAnd he set a carved image, the idol which he had made, in the house of God, of which God had said to David and to Solomon his son, In this house, and in Jerusalem, which I have chosen before all the tribes of Israel, will I put my name for ever: \nNeither will I any more remove the foot of Israel from out of the land which I have appointed for your fathers; so that they will take heed to do all that I have commanded them, according to the whole law and the statutes and the ordinances by the hand of Moses. \nSo Manasseh made Judah and the inhabitants of Jerusalem to err, and to do worse than the heathen, whom the LORD had destroyed before the children of Israel. \nAnd the LORD spake to Manasseh, and to his people: but they would not hearken. \nWherefore the LORD brought upon them the captains of the host of the king of Assyria, which took Manasseh among the thorns, and bound him with fetters, and carried him to Babylon. \nAnd when he was in affliction, he besought the LORD his God, and humbled himself greatly before the God of his fathers, \nAnd prayed unto him: and he was intreated of him, and heard his supplication, and brought him again to Jerusalem into his kingdom. Then Manasseh knew that the LORD he was God. \nNow after this he built a wall without the city of David, on the west side of Gihon, in the valley, even to the entering in at the fish gate, and compassed about Ophel, and raised it up a very great height, and put captains of war in all the fenced cities of Judah. \nAnd he took away the strange gods, and the idol out of the house of the LORD, and all the altars that he had built in the mount of the house of the LORD, and in Jerusalem, and cast them out of the city. \nAnd he repaired the altar of the LORD, and sacrificed thereon peace offerings and thank offerings, and commanded Judah to serve the LORD God of Israel. \nNevertheless the people did sacrifice still in the high places, yet unto the LORD their God only. \nNow the rest of the acts of Manasseh, and his prayer unto his God, and the words of the seers that spake to him in the name of the LORD God of Israel, behold, they are written in the book of the kings of Israel. \nHis prayer also, and how God was intreated of him, and all his sins, and his trespass, and the places wherein he built high places, and set up groves and graven images, before he was humbled: behold, they are written among the sayings of the seers. \nSo Manasseh slept with his fathers, and they buried him in his own house: and Amon his son reigned in his stead. \nAmon was two and twenty years old when he began to reign, and reigned two years in Jerusalem. \nBut he did that which was evil in the sight of the LORD, as did Manasseh his father: for Amon sacrificed unto all the carved images which Manasseh his father had made, and served them; \nAnd humbled not himself before the LORD, as Manasseh his father had humbled himself; but Amon trespassed more and more. \nAnd his servants conspired against him, and slew him in his own house. \nBut the people of the land slew all them that had conspired against king Amon; and the people of the land made Josiah his son king in his stead. \nJosiah was eight years old when he began to reign, and he reigned in Jerusalem one and thirty years. \nAnd he did that which was right in the sight of the LORD, and walked in the ways of David his father, and declined neither to the right hand, nor to the left. \nFor in the eighth year of his reign, while he was yet young, he began to seek after the God of David his father: and in the twelfth year he began to purge Judah and Jerusalem from the high places, and the groves, and the carved images, and the molten images. \nAnd they brake down the altars of Baalim in his presence; and the images, that were on high above them, he cut down; and the groves, and the carved images, and the molten images, he brake in pieces, and made dust of them, and strowed it upon the graves of them that had sacrificed unto them. \nAnd he burnt the bones of the priests upon their altars, and cleansed Judah and Jerusalem. \nAnd so did he in the cities of Manasseh, and Ephraim, and Simeon, even unto Naphtali, with their mattocks round about. \nAnd when he had broken down the altars and the groves, and had beaten the graven images into powder, and cut down all the idols throughout all the land of Israel, he returned to Jerusalem. \nNow in the eighteenth year of his reign, when he had purged the land, and the house, he sent Shaphan the son of Azaliah, and Maaseiah the governor of the city, and Joah the son of Joahaz the recorder, to repair the house of the LORD his God. \nAnd when they came to Hilkiah the high priest, they delivered the money that was brought into the house of God, which the Levites that kept the doors had gathered of the hand of Manasseh and Ephraim, and of all the remnant of Israel, and of all Judah and Benjamin; and they returned to Jerusalem. \nAnd they put it in the hand of the workmen that had the oversight of the house of the LORD, and they gave it to the workmen that wrought in the house of the LORD, to repair and amend the house: \nEven to the artificers and builders gave they it, to buy hewn stone, and timber for couplings, and to floor the houses which the kings of Judah had destroyed. \nAnd the men did the work faithfully: and the overseers of them were Jahath and Obadiah, the Levites, of the sons of Merari; and Zechariah and Meshullam, of the sons of the Kohathites, to set it forward; and other of the Levites, all that could skill of instruments of musick. \nAlso they were over the bearers of burdens, and were overseers of all that wrought the work in any manner of service: and of the Levites there were scribes, and officers, and porters. \nAnd when they brought out the money that was brought into the house of the LORD, Hilkiah the priest found a book of the law of the LORD given by Moses. \nAnd Hilkiah answered and said to Shaphan the scribe, I have found the book of the law in the house of the LORD. And Hilkiah delivered the book to Shaphan. \nAnd Shaphan carried the book to the king, and brought the king word back again, saying, All that was committed to thy servants, they do it. \nAnd they have gathered together the money that was found in the house of the LORD, and have delivered it into the hand of the overseers, and to the hand of the workmen. \nThen Shaphan the scribe told the king, saying, Hilkiah the priest hath given me a book. And Shaphan read it before the king. \nAnd it came to pass, when the king had heard the words of the law, that he rent his clothes. \nAnd the king commanded Hilkiah, and Ahikam the son of Shaphan, and Abdon the son of Micah, and Shaphan the scribe, and Asaiah a servant of the king's, saying, \nGo, enquire of the LORD for me, and for them that are left in Israel and in Judah, concerning the words of the book that is found: for great is the wrath of the LORD that is poured out upon us, because our fathers have not kept the word of the LORD, to do after all that is written in this book. \nAnd Hilkiah, and they that the king had appointed, went to Huldah the prophetess, the wife of Shallum the son of Tikvath, the son of Hasrah, keeper of the wardrobe; (now she dwelt in Jerusalem in the college:) and they spake to her to that effect. \nAnd she answered them, Thus saith the LORD God of Israel, Tell ye the man that sent you to me, \nThus saith the LORD, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the curses that are written in the book which they have read before the king of Judah: \nBecause they have forsaken me, and have burned incense unto other gods, that they might provoke me to anger with all the works of their hands; therefore my wrath shall be poured out upon this place, and shall not be quenched. \nAnd as for the king of Judah, who sent you to enquire of the LORD, so shall ye say unto him, Thus saith the LORD God of Israel concerning the words which thou hast heard; \nBecause thine heart was tender, and thou didst humble thyself before God, when thou heardest his words against this place, and against the inhabitants thereof, and humbledst thyself before me, and didst rend thy clothes, and weep before me; I have even heard thee also, saith the LORD. \nBehold, I will gather thee to thy fathers, and thou shalt be gathered to thy grave in peace, neither shall thine eyes see all the evil that I will bring upon this place, and upon the inhabitants of the same. So they brought the king word again. \nThen the king sent and gathered together all the elders of Judah and Jerusalem. \nAnd the king went up into the house of the LORD, and all the men of Judah, and the inhabitants of Jerusalem, and the priests, and the Levites, and all the people, great and small: and he read in their ears all the words of the book of the covenant that was found in the house of the LORD. \nAnd the king stood in his place, and made a covenant before the LORD, to walk after the LORD, and to keep his commandments, and his testimonies, and his statutes, with all his heart, and with all his soul, to perform the words of the covenant which are written in this book. \nAnd he caused all that were present in Jerusalem and Benjamin to stand to it. And the inhabitants of Jerusalem did according to the covenant of God, the God of their fathers. \nAnd Josiah took away all the abominations out of all the countries that pertained to the children of Israel, and made all that were present in Israel to serve, even to serve the LORD their God. And all his days they departed not from following the LORD, the God of their fathers. \nMoreover Josiah kept a passover unto the LORD in Jerusalem: and they killed the passover on the fourteenth day of the first month. \nAnd he set the priests in their charges, and encouraged them to the service of the house of the LORD, \nAnd said unto the Levites that taught all Israel, which were holy unto the LORD, Put the holy ark in the house which Solomon the son of David king of Israel did build; it shall not be a burden upon your shoulders: serve now the LORD your God, and his people Israel, \nAnd prepare yourselves by the houses of your fathers, after your courses, according to the writing of David king of Israel, and according to the writing of Solomon his son. \nAnd stand in the holy place according to the divisions of the families of the fathers of your brethren the people, and after the division of the families of the Levites. \nSo kill the passover, and sanctify yourselves, and prepare your brethren, that they may do according to the word of the LORD by the hand of Moses. \nAnd Josiah gave to the people, of the flock, lambs and kids, all for the passover offerings, for all that were present, to the number of thirty thousand, and three thousand bullocks: these were of the king's substance. \nAnd his princes gave willingly unto the people, to the priests, and to the Levites: Hilkiah and Zechariah and Jehiel, rulers of the house of God, gave unto the priests for the passover offerings two thousand and six hundred small cattle and three hundred oxen. \nConaniah also, and Shemaiah and Nethaneel, his brethren, and Hashabiah and Jeiel and Jozabad, chief of the Levites, gave unto the Levites for passover offerings five thousand small cattle, and five hundred oxen. \nSo the service was prepared, and the priests stood in their place, and the Levites in their courses, according to the king's commandment. \nAnd they killed the passover, and the priests sprinkled the blood from their hands, and the Levites flayed them. \nAnd they removed the burnt offerings, that they might give according to the divisions of the families of the people, to offer unto the LORD, as it is written in the book of Moses. And so did they with the oxen. \nAnd they roasted the passover with fire according to the ordinance: but the other holy offerings sod they in pots, and in caldrons, and in pans, and divided them speedily among all the people. \nAnd afterward they made ready for themselves, and for the priests: because the priests the sons of Aaron were busied in offering of burnt offerings and the fat until night; therefore the Levites prepared for themselves, and for the priests the sons of Aaron. \nAnd the singers the sons of Asaph were in their place, according to the commandment of David, and Asaph, and Heman, and Jeduthun the king's seer; and the porters waited at every gate; they might not depart from their service; for their brethren the Levites prepared for them. \nSo all the service of the LORD was prepared the same day, to keep the passover, and to offer burnt offerings upon the altar of the LORD, according to the commandment of king Josiah. \nAnd the children of Israel that were present kept the passover at that time, and the feast of unleavened bread seven days. \nAnd there was no passover like to that kept in Israel from the days of Samuel the prophet; neither did all the kings of Israel keep such a passover as Josiah kept, and the priests, and the Levites, and all Judah and Israel that were present, and the inhabitants of Jerusalem. \nIn the eighteenth year of the reign of Josiah was this passover kept. \nAfter all this, when Josiah had prepared the temple, Necho king of Egypt came up to fight against Charchemish by Euphrates: and Josiah went out against him. \nBut he sent ambassadors to him, saying, What have I to do with thee, thou king of Judah? I come not against thee this day, but against the house wherewith I have war: for God commanded me to make haste: forbear thee from meddling with God, who is with me, that he destroy thee not. \nNevertheless Josiah would not turn his face from him, but disguised himself, that he might fight with him, and hearkened not unto the words of Necho from the mouth of God, and came to fight in the valley of Megiddo. \nAnd the archers shot at king Josiah; and the king said to his servants, Have me away; for I am sore wounded. \nHis servants therefore took him out of that chariot, and put him in the second chariot that he had; and they brought him to Jerusalem, and he died, and was buried in one of the sepulchres of his fathers. And all Judah and Jerusalem mourned for Josiah. \nAnd Jeremiah lamented for Josiah: and all the singing men and the singing women spake of Josiah in their lamentations to this day, and made them an ordinance in Israel: and, behold, they are written in the lamentations. \nNow the rest of the acts of Josiah, and his goodness, according to that which was written in the law of the LORD, \nAnd his deeds, first and last, behold, they are written in the book of the kings of Israel and Judah. \nThen the people of the land took Jehoahaz the son of Josiah, and made him king in his father's stead in Jerusalem. \nJehoahaz was twenty and three years old when he began to reign, and he reigned three months in Jerusalem. \nAnd the king of Egypt put him down at Jerusalem, and condemned the land in an hundred talents of silver and a talent of gold. \nAnd the king of Egypt made Eliakim his brother king over Judah and Jerusalem, and turned his name to Jehoiakim. And Necho took Jehoahaz his brother, and carried him to Egypt. \nJehoiakim was twenty and five years old when he began to reign, and he reigned eleven years in Jerusalem: and he did that which was evil in the sight of the LORD his God. \nAgainst him came up Nebuchadnezzar king of Babylon, and bound him in fetters, to carry him to Babylon. \nNebuchadnezzar also carried of the vessels of the house of the LORD to Babylon, and put them in his temple at Babylon. \nNow the rest of the acts of Jehoiakim, and his abominations which he did, and that which was found in him, behold, they are written in the book of the kings of Israel and Judah: and Jehoiachin his son reigned in his stead. \nJehoiachin was eight years old when he began to reign, and he reigned three months and ten days in Jerusalem: and he did that which was evil in the sight of the LORD. \nAnd when the year was expired, king Nebuchadnezzar sent, and brought him to Babylon, with the goodly vessels of the house of the LORD, and made Zedekiah his brother king over Judah and Jerusalem. \nZedekiah was one and twenty years old when he began to reign, and reigned eleven years in Jerusalem. \nAnd he did that which was evil in the sight of the LORD his God, and humbled not himself before Jeremiah the prophet speaking from the mouth of the LORD. \nAnd he also rebelled against king Nebuchadnezzar, who had made him swear by God: but he stiffened his neck, and hardened his heart from turning unto the LORD God of Israel. \nMoreover all the chief of the priests, and the people, transgressed very much after all the abominations of the heathen; and polluted the house of the LORD which he had hallowed in Jerusalem. \nAnd the LORD God of their fathers sent to them by his messengers, rising up betimes, and sending; because he had compassion on his people, and on his dwelling place: \nBut they mocked the messengers of God, and despised his words, and misused his prophets, until the wrath of the LORD arose against his people, till there was no remedy. \nTherefore he brought upon them the king of the Chaldees, who slew their young men with the sword in the house of their sanctuary, and had no compassion upon young man or maiden, old man, or him that stooped for age: he gave them all into his hand. \nAnd all the vessels of the house of God, great and small, and the treasures of the house of the LORD, and the treasures of the king, and of his princes; all these he brought to Babylon. \nAnd they burnt the house of God, and brake down the wall of Jerusalem, and burnt all the palaces thereof with fire, and destroyed all the goodly vessels thereof. \nAnd them that had escaped from the sword carried he away to Babylon; where they were servants to him and his sons until the reign of the kingdom of Persia: \nTo fulfil the word of the LORD by the mouth of Jeremiah, until the land had enjoyed her sabbaths: for as long as she lay desolate she kept sabbath, to fulfil threescore and ten years. \nNow in the first year of Cyrus king of Persia, that the word of the LORD spoken by the mouth of Jeremiah might be accomplished, the LORD stirred up the spirit of Cyrus king of Persia, that he made a proclamation throughout all his kingdom, and put it also in writing, saying, \nThus saith Cyrus king of Persia, All the kingdoms of the earth hath the LORD God of heaven given me; and he hath charged me to build him an house in Jerusalem, which is in Judah. Who is there among you of all his people? The LORD his God be with him, and let him go up. \nNow in the first year of Cyrus king of Persia, that the word of the LORD by the mouth of Jeremiah might be fulfilled, the LORD stirred up the spirit of Cyrus king of Persia, that he made a proclamation throughout all his kingdom, and put it also in writing, saying, \nThus saith Cyrus king of Persia, The LORD God of heaven hath given me all the kingdoms of the earth; and he hath charged me to build him an house at Jerusalem, which is in Judah. \nWho is there among you of all his people? his God be with him, and let him go up to Jerusalem, which is in Judah, and build the house of the LORD God of Israel, (he is the God,) which is in Jerusalem. \nAnd whosoever remaineth in any place where he sojourneth, let the men of his place help him with silver, and with gold, and with goods, and with beasts, beside the freewill offering for the house of God that is in Jerusalem. \nThen rose up the chief of the fathers of Judah and Benjamin, and the priests, and the Levites, with all them whose spirit God had raised, to go up to build the house of the LORD which is in Jerusalem. \nAnd all they that were about them strengthened their hands with vessels of silver, with gold, with goods, and with beasts, and with precious things, beside all that was willingly offered. \nAlso Cyrus the king brought forth the vessels of the house of the LORD, which Nebuchadnezzar had brought forth out of Jerusalem, and had put them in the house of his gods; \nEven those did Cyrus king of Persia bring forth by the hand of Mithredath the treasurer, and numbered them unto Sheshbazzar, the prince of Judah. \nAnd this is the number of them: thirty chargers of gold, a thousand chargers of silver, nine and twenty knives, \nThirty basons of gold, silver basons of a second sort four hundred and ten, and other vessels a thousand. \nAll the vessels of gold and of silver were five thousand and four hundred. All these did Sheshbazzar bring up with them of the captivity that were brought up from Babylon unto Jerusalem. \nNow these are the children of the province that went up out of the captivity, of those which had been carried away, whom Nebuchadnezzar the king of Babylon had carried away unto Babylon, and came again unto Jerusalem and Judah, every one unto his city; \nWhich came with Zerubbabel: Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mizpar, Bigvai, Rehum, Baanah. The number of the men of the people of Israel: \nThe children of Parosh, two thousand an hundred seventy and two. \nThe children of Shephatiah, three hundred seventy and two. \nThe children of Arah, seven hundred seventy and five. \nThe children of Pahathmoab, of the children of Jeshua and Joab, two thousand eight hundred and twelve. \nThe children of Elam, a thousand two hundred fifty and four. \nThe children of Zattu, nine hundred forty and five. \nThe children of Zaccai, seven hundred and threescore. \nThe children of Bani, six hundred forty and two. \nThe children of Bebai, six hundred twenty and three. \nThe children of Azgad, a thousand two hundred twenty and two. \nThe children of Adonikam, six hundred sixty and six. \nThe children of Bigvai, two thousand fifty and six. \nThe children of Adin, four hundred fifty and four. \nThe children of Ater of Hezekiah, ninety and eight. \nThe children of Bezai, three hundred twenty and three. \nThe children of Jorah, an hundred and twelve. \nThe children of Hashum, two hundred twenty and three. \nThe children of Gibbar, ninety and five. \nThe children of Bethlehem, an hundred twenty and three. \nThe men of Netophah, fifty and six. \nThe men of Anathoth, an hundred twenty and eight. \nThe children of Azmaveth, forty and two. \nThe children of Kirjatharim, Chephirah, and Beeroth, seven hundred and forty and three. \nThe children of Ramah and Gaba, six hundred twenty and one. \nThe men of Michmas, an hundred twenty and two. \nThe men of Bethel and Ai, two hundred twenty and three. \nThe children of Nebo, fifty and two. \nThe children of Magbish, an hundred fifty and six. \nThe children of the other Elam, a thousand two hundred fifty and four. \nThe children of Harim, three hundred and twenty. \nThe children of Lod, Hadid, and Ono, seven hundred twenty and five. \nThe children of Jericho, three hundred forty and five. \nThe children of Senaah, three thousand and six hundred and thirty. \nThe priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three. \nThe children of Immer, a thousand fifty and two. \nThe children of Pashur, a thousand two hundred forty and seven. \nThe children of Harim, a thousand and seventeen. \nThe Levites: the children of Jeshua and Kadmiel, of the children of Hodaviah, seventy and four. \nThe singers: the children of Asaph, an hundred twenty and eight. \nThe children of the porters: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai, in all an hundred thirty and nine. \nThe Nethinims: the children of Ziha, the children of Hasupha, the children of Tabbaoth, \nThe children of Keros, the children of Siaha, the children of Padon, \nThe children of Lebanah, the children of Hagabah, the children of Akkub, \nThe children of Hagab, the children of Shalmai, the children of Hanan, \nThe children of Giddel, the children of Gahar, the children of Reaiah, \nThe children of Rezin, the children of Nekoda, the children of Gazzam, \nThe children of Uzza, the children of Paseah, the children of Besai, \nThe children of Asnah, the children of Mehunim, the children of Nephusim, \nThe children of Bakbuk, the children of Hakupha, the children of Harhur, \nThe children of Bazluth, the children of Mehida, the children of Harsha, \nThe children of Barkos, the children of Sisera, the children of Thamah, \nThe children of Neziah, the children of Hatipha. \nThe children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Peruda, \nThe children of Jaalah, the children of Darkon, the children of Giddel, \nThe children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Ami. \nAll the Nethinims, and the children of Solomon's servants, were three hundred ninety and two. \nAnd these were they which went up from Telmelah, Telharsa, Cherub, Addan, and Immer: but they could not shew their father's house, and their seed, whether they were of Israel: \nThe children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred fifty and two. \nAnd of the children of the priests: the children of Habaiah, the children of Koz, the children of Barzillai; which took a wife of the daughters of Barzillai the Gileadite, and was called after their name: \nThese sought their register among those that were reckoned by genealogy, but they were not found: therefore were they, as polluted, put from the priesthood. \nAnd the Tirshatha said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and with Thummim. \nThe whole congregation together was forty and two thousand three hundred and threescore, \nBeside their servants and their maids, of whom there were seven thousand three hundred thirty and seven: and there were among them two hundred singing men and singing women. \nTheir horses were seven hundred thirty and six; their mules, two hundred forty and five; \nTheir camels, four hundred thirty and five; their asses, six thousand seven hundred and twenty. \nAnd some of the chief of the fathers, when they came to the house of the LORD which is at Jerusalem, offered freely for the house of God to set it up in his place: \nThey gave after their ability unto the treasure of the work threescore and one thousand drams of gold, and five thousand pound of silver, and one hundred priests' garments. \nSo the priests, and the Levites, and some of the people, and the singers, and the porters, and the Nethinims, dwelt in their cities, and all Israel in their cities. \nAnd when the seventh month was come, and the children of Israel were in the cities, the people gathered themselves together as one man to Jerusalem. \nThen stood up Jeshua the son of Jozadak, and his brethren the priests, and Zerubbabel the son of Shealtiel, and his brethren, and builded the altar of the God of Israel, to offer burnt offerings thereon, as it is written in the law of Moses the man of God. \nAnd they set the altar upon his bases; for fear was upon them because of the people of those countries: and they offered burnt offerings thereon unto the LORD, even burnt offerings morning and evening. \nThey kept also the feast of tabernacles, as it is written, and offered the daily burnt offerings by number, according to the custom, as the duty of every day required; \nAnd afterward offered the continual burnt offering, both of the new moons, and of all the set feasts of the LORD that were consecrated, and of every one that willingly offered a freewill offering unto the LORD. \nFrom the first day of the seventh month began they to offer burnt offerings unto the LORD. But the foundation of the temple of the LORD was not yet laid. \nThey gave money also unto the masons, and to the carpenters; and meat, and drink, and oil, unto them of Zidon, and to them of Tyre, to bring cedar trees from Lebanon to the sea of Joppa, according to the grant that they had of Cyrus king of Persia. \nNow in the second year of their coming unto the house of God at Jerusalem, in the second month, began Zerubbabel the son of Shealtiel, and Jeshua the son of Jozadak, and the remnant of their brethren the priests and the Levites, and all they that were come out of the captivity unto Jerusalem; and appointed the Levites, from twenty years old and upward, to set forward the work of the house of the LORD. \nThen stood Jeshua with his sons and his brethren, Kadmiel and his sons, the sons of Judah, together, to set forward the workmen in the house of God: the sons of Henadad, with their sons and their brethren the Levites. \nAnd when the builders laid the foundation of the temple of the LORD, they set the priests in their apparel with trumpets, and the Levites the sons of Asaph with cymbals, to praise the LORD, after the ordinance of David king of Israel. \nAnd they sang together by course in praising and giving thanks unto the LORD; because he is good, for his mercy endureth for ever toward Israel. And all the people shouted with a great shout, when they praised the LORD, because the foundation of the house of the LORD was laid. \nBut many of the priests and Levites and chief of the fathers, who were ancient men, that had seen the first house, when the foundation of this house was laid before their eyes, wept with a loud voice; and many shouted aloud for joy: \nSo that the people could not discern the noise of the shout of joy from the noise of the weeping of the people: for the people shouted with a loud shout, and the noise was heard afar off. \nNow when the adversaries of Judah and Benjamin heard that the children of the captivity builded the temple unto the LORD God of Israel; \nThen they came to Zerubbabel, and to the chief of the fathers, and said unto them, Let us build with you: for we seek your God, as ye do; and we do sacrifice unto him since the days of Esarhaddon king of Assur, which brought us up hither. \nBut Zerubbabel, and Jeshua, and the rest of the chief of the fathers of Israel, said unto them, Ye have nothing to do with us to build an house unto our God; but we ourselves together will build unto the LORD God of Israel, as king Cyrus the king of Persia hath commanded us. \nThen the people of the land weakened the hands of the people of Judah, and troubled them in building, \nAnd hired counsellors against them, to frustrate their purpose, all the days of Cyrus king of Persia, even until the reign of Darius king of Persia. \nAnd in the reign of Ahasuerus, in the beginning of his reign, wrote they unto him an accusation against the inhabitants of Judah and Jerusalem. \nAnd in the days of Artaxerxes wrote Bishlam, Mithredath, Tabeel, and the rest of their companions, unto Artaxerxes king of Persia; and the writing of the letter was written in the Syrian tongue, and interpreted in the Syrian tongue. \nRehum the chancellor and Shimshai the scribe wrote a letter against Jerusalem to Artaxerxes the king in this sort: \nThen wrote Rehum the chancellor, and Shimshai the scribe, and the rest of their companions; the Dinaites, the Apharsathchites, the Tarpelites, the Apharsites, the Archevites, the Babylonians, the Susanchites, the Dehavites, and the Elamites, \nAnd the rest of the nations whom the great and noble Asnapper brought over, and set in the cities of Samaria, and the rest that are on this side the river, and at such a time. \nThis is the copy of the letter that they sent unto him, even unto Artaxerxes the king; Thy servants the men on this side the river, and at such a time. \nBe it known unto the king, that the Jews which came up from thee to us are come unto Jerusalem, building the rebellious and the bad city, and have set up the walls thereof, and joined the foundations. \nBe it known now unto the king, that, if this city be builded, and the walls set up again, then will they not pay toll, tribute, and custom, and so thou shalt endamage the revenue of the kings. \nNow because we have maintenance from the king's palace, and it was not meet for us to see the king's dishonour, therefore have we sent and certified the king; \nThat search may be made in the book of the records of thy fathers: so shalt thou find in the book of the records, and know that this city is a rebellious city, and hurtful unto kings and provinces, and that they have moved sedition within the same of old time: for which cause was this city destroyed. \nWe certify the king that, if this city be builded again, and the walls thereof set up, by this means thou shalt have no portion on this side the river. \nThen sent the king an answer unto Rehum the chancellor, and to Shimshai the scribe, and to the rest of their companions that dwell in Samaria, and unto the rest beyond the river, Peace, and at such a time. \nThe letter which ye sent unto us hath been plainly read before me. \nAnd I commanded, and search hath been made, and it is found that this city of old time hath made insurrection against kings, and that rebellion and sedition have been made therein. \nThere have been mighty kings also over Jerusalem, which have ruled over all countries beyond the river; and toll, tribute, and custom, was paid unto them. \nGive ye now commandment to cause these men to cease, and that this city be not builded, until another commandment shall be given from me. \nTake heed now that ye fail not to do this: why should damage grow to the hurt of the kings? \nNow when the copy of king Artaxerxes' letter was read before Rehum, and Shimshai the scribe, and their companions, they went up in haste to Jerusalem unto the Jews, and made them to cease by force and power. \nThen ceased the work of the house of God which is at Jerusalem. So it ceased unto the second year of the reign of Darius king of Persia. \nThen the prophets, Haggai the prophet, and Zechariah the son of Iddo, prophesied unto the Jews that were in Judah and Jerusalem in the name of the God of Israel, even unto them. \nThen rose up Zerubbabel the son of Shealtiel, and Jeshua the son of Jozadak, and began to build the house of God which is at Jerusalem: and with them were the prophets of God helping them. \nAt the same time came to them Tatnai, governor on this side the river, and Shetharboznai and their companions, and said thus unto them, Who hath commanded you to build this house, and to make up this wall? \nThen said we unto them after this manner, What are the names of the men that make this building? \nBut the eye of their God was upon the elders of the Jews, that they could not cause them to cease, till the matter came to Darius: and then they returned answer by letter concerning this matter. \nThe copy of the letter that Tatnai, governor on this side the river, and Shetharboznai and his companions the Apharsachites, which were on this side the river, sent unto Darius the king: \nThey sent a letter unto him, wherein was written thus; Unto Darius the king, all peace. \nBe it known unto the king, that we went into the province of Judea, to the house of the great God, which is builded with great stones, and timber is laid in the walls, and this work goeth fast on, and prospereth in their hands. \nThen asked we those elders, and said unto them thus, Who commanded you to build this house, and to make up these walls? \nWe asked their names also, to certify thee, that we might write the names of the men that were the chief of them. \nAnd thus they returned us answer, saying, We are the servants of the God of heaven and earth, and build the house that was builded these many years ago, which a great king of Israel builded and set up. \nBut after that our fathers had provoked the God of heaven unto wrath, he gave them into the hand of Nebuchadnezzar the king of Babylon, the Chaldean, who destroyed this house, and carried the people away into Babylon. \nBut in the first year of Cyrus the king of Babylon the same king Cyrus made a decree to build this house of God. \nAnd the vessels also of gold and silver of the house of God, which Nebuchadnezzar took out of the temple that was in Jerusalem, and brought them into the temple of Babylon, those did Cyrus the king take out of the temple of Babylon, and they were delivered unto one, whose name was Sheshbazzar, whom he had made governor; \nAnd said unto him, Take these vessels, go, carry them into the temple that is in Jerusalem, and let the house of God be builded in his place. \nThen came the same Sheshbazzar, and laid the foundation of the house of God which is in Jerusalem: and since that time even until now hath it been in building, and yet it is not finished. \nNow therefore, if it seem good to the king, let there be search made in the king's treasure house, which is there at Babylon, whether it be so, that a decree was made of Cyrus the king to build this house of God at Jerusalem, and let the king send his pleasure to us concerning this matter. \nThen Darius the king made a decree, and search was made in the house of the rolls, where the treasures were laid up in Babylon. \nAnd there was found at Achmetha, in the palace that is in the province of the Medes, a roll, and therein was a record thus written: \nIn the first year of Cyrus the king the same Cyrus the king made a decree concerning the house of God at Jerusalem, Let the house be builded, the place where they offered sacrifices, and let the foundations thereof be strongly laid; the height thereof threescore cubits, and the breadth thereof threescore cubits; \nWith three rows of great stones, and a row of new timber: and let the expenses be given out of the king's house: \nAnd also let the golden and silver vessels of the house of God, which Nebuchadnezzar took forth out of the temple which is at Jerusalem, and brought unto Babylon, be restored, and brought again unto the temple which is at Jerusalem, every one to his place, and place them in the house of God. \nNow therefore, Tatnai, governor beyond the river, Shetharboznai, and your companions the Apharsachites, which are beyond the river, be ye far from thence: \nLet the work of this house of God alone; let the governor of the Jews and the elders of the Jews build this house of God in his place. \nMoreover I make a decree what ye shall do to the elders of these Jews for the building of this house of God: that of the king's goods, even of the tribute beyond the river, forthwith expenses be given unto these men, that they be not hindered. \nAnd that which they have need of, both young bullocks, and rams, and lambs, for the burnt offerings of the God of heaven, wheat, salt, wine, and oil, according to the appointment of the priests which are at Jerusalem, let it be given them day by day without fail: \nThat they may offer sacrifices of sweet savours unto the God of heaven, and pray for the life of the king, and of his sons. \nAlso I have made a decree, that whosoever shall alter this word, let timber be pulled down from his house, and being set up, let him be hanged thereon; and let his house be made a dunghill for this. \nAnd the God that hath caused his name to dwell there destroy all kings and people, that shall put to their hand to alter and to destroy this house of God which is at Jerusalem. I Darius have made a decree; let it be done with speed. \nThen Tatnai, governor on this side the river, Shetharboznai, and their companions, according to that which Darius the king had sent, so they did speedily. \nAnd the elders of the Jews builded, and they prospered through the prophesying of Haggai the prophet and Zechariah the son of Iddo. And they builded, and finished it, according to the commandment of the God of Israel, and according to the commandment of Cyrus, and Darius, and Artaxerxes king of Persia. \nAnd this house was finished on the third day of the month Adar, which was in the sixth year of the reign of Darius the king. \nAnd the children of Israel, the priests, and the Levites, and the rest of the children of the captivity, kept the dedication of this house of God with joy. \nAnd offered at the dedication of this house of God an hundred bullocks, two hundred rams, four hundred lambs; and for a sin offering for all Israel, twelve he goats, according to the number of the tribes of Israel. \nAnd they set the priests in their divisions, and the Levites in their courses, for the service of God, which is at Jerusalem; as it is written in the book of Moses. \nAnd the children of the captivity kept the passover upon the fourteenth day of the first month. \nFor the priests and the Levites were purified together, all of them were pure, and killed the passover for all the children of the captivity, and for their brethren the priests, and for themselves. \nAnd the children of Israel, which were come again out of captivity, and all such as had separated themselves unto them from the filthiness of the heathen of the land, to seek the LORD God of Israel, did eat, \nAnd kept the feast of unleavened bread seven days with joy: for the LORD had made them joyful, and turned the heart of the king of Assyria unto them, to strengthen their hands in the work of the house of God, the God of Israel. \nNow after these things, in the reign of Artaxerxes king of Persia, Ezra the son of Seraiah, the son of Azariah, the son of Hilkiah, \nThe son of Shallum, the son of Zadok, the son of Ahitub, \nThe son of Amariah, the son of Azariah, the son of Meraioth, \nThe son of Zerahiah, the son of Uzzi, the son of Bukki, \nThe son of Abishua, the son of Phinehas, the son of Eleazar, the son of Aaron the chief priest: \nThis Ezra went up from Babylon; and he was a ready scribe in the law of Moses, which the LORD God of Israel had given: and the king granted him all his request, according to the hand of the LORD his God upon him. \nAnd there went up some of the children of Israel, and of the priests, and the Levites, and the singers, and the porters, and the Nethinims, unto Jerusalem, in the seventh year of Artaxerxes the king. \nAnd he came to Jerusalem in the fifth month, which was in the seventh year of the king. \nFor upon the first day of the first month began he to go up from Babylon, and on the first day of the fifth month came he to Jerusalem, according to the good hand of his God upon him. \nFor Ezra had prepared his heart to seek the law of the LORD, and to do it, and to teach in Israel statutes and judgments. \nNow this is the copy of the letter that the king Artaxerxes gave unto Ezra the priest, the scribe, even a scribe of the words of the commandments of the LORD, and of his statutes to Israel. \nArtaxerxes, king of kings, unto Ezra the priest, a scribe of the law of the God of heaven, perfect peace, and at such a time. \nI make a decree, that all they of the people of Israel, and of his priests and Levites, in my realm, which are minded of their own freewill to go up to Jerusalem, go with thee. \nForasmuch as thou art sent of the king, and of his seven counsellors, to enquire concerning Judah and Jerusalem, according to the law of thy God which is in thine hand; \nAnd to carry the silver and gold, which the king and his counsellors have freely offered unto the God of Israel, whose habitation is in Jerusalem, \nAnd all the silver and gold that thou canst find in all the province of Babylon, with the freewill offering of the people, and of the priests, offering willingly for the house of their God which is in Jerusalem: \nThat thou mayest buy speedily with this money bullocks, rams, lambs, with their meat offerings and their drink offerings, and offer them upon the altar of the house of your God which is in Jerusalem. \nAnd whatsoever shall seem good to thee, and to thy brethren, to do with the rest of the silver and the gold, that do after the will of your God. \nThe vessels also that are given thee for the service of the house of thy God, those deliver thou before the God of Jerusalem. \nAnd whatsoever more shall be needful for the house of thy God, which thou shalt have occasion to bestow, bestow it out of the king's treasure house. \nAnd I, even I Artaxerxes the king, do make a decree to all the treasurers which are beyond the river, that whatsoever Ezra the priest, the scribe of the law of the God of heaven, shall require of you, it be done speedily, \nUnto an hundred talents of silver, and to an hundred measures of wheat, and to an hundred baths of wine, and to an hundred baths of oil, and salt without prescribing how much. \nWhatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons? \nAlso we certify you, that touching any of the priests and Levites, singers, porters, Nethinims, or ministers of this house of God, it shall not be lawful to impose toll, tribute, or custom, upon them. \nAnd thou, Ezra, after the wisdom of thy God, that is in thine hand, set magistrates and judges, which may judge all the people that are beyond the river, all such as know the laws of thy God; and teach ye them that know them not. \nAnd whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment. \nBlessed be the LORD God of our fathers, which hath put such a thing as this in the king's heart, to beautify the house of the LORD which is in Jerusalem: \nAnd hath extended mercy unto me before the king, and his counsellors, and before all the king's mighty princes. And I was strengthened as the hand of the LORD my God was upon me, and I gathered together out of Israel chief men to go up with me. \nThese are now the chief of their fathers, and this is the genealogy of them that went up with me from Babylon, in the reign of Artaxerxes the king. \nOf the sons of Phinehas; Gershom: of the sons of Ithamar; Daniel: of the sons of David; Hattush. \nOf the sons of Shechaniah, of the sons of Pharosh; Zechariah: and with him were reckoned by genealogy of the males an hundred and fifty. \nOf the sons of Pahathmoab; Elihoenai the son of Zerahiah, and with him two hundred males. \nOf the sons of Shechaniah; the son of Jahaziel, and with him three hundred males. \nOf the sons also of Adin; Ebed the son of Jonathan, and with him fifty males. \nAnd of the sons of Elam; Jeshaiah the son of Athaliah, and with him seventy males. \nAnd of the sons of Shephatiah; Zebadiah the son of Michael, and with him fourscore males. \nOf the sons of Joab; Obadiah the son of Jehiel, and with him two hundred and eighteen males. \nAnd of the sons of Shelomith; the son of Josiphiah, and with him an hundred and threescore males. \nAnd of the sons of Bebai; Zechariah the son of Bebai, and with him twenty and eight males. \nAnd of the sons of Azgad; Johanan the son of Hakkatan, and with him an hundred and ten males. \nAnd of the last sons of Adonikam, whose names are these, Eliphelet, Jeiel, and Shemaiah, and with them threescore males. \nOf the sons also of Bigvai; Uthai, and Zabbud, and with them seventy males. \nAnd I gathered them together to the river that runneth to Ahava; and there abode we in tents three days: and I viewed the people, and the priests, and found there none of the sons of Levi. \nThen sent I for Eliezer, for Ariel, for Shemaiah, and for Elnathan, and for Jarib, and for Elnathan, and for Nathan, and for Zechariah, and for Meshullam, chief men; also for Joiarib, and for Elnathan, men of understanding. \nAnd I sent them with commandment unto Iddo the chief at the place Casiphia, and I told them what they should say unto Iddo, and to his brethren the Nethinims, at the place Casiphia, that they should bring unto us ministers for the house of our God. \nAnd by the good hand of our God upon us they brought us a man of understanding, of the sons of Mahli, the son of Levi, the son of Israel; and Sherebiah, with his sons and his brethren, eighteen; \nAnd Hashabiah, and with him Jeshaiah of the sons of Merari, his brethren and their sons, twenty; \nAlso of the Nethinims, whom David and the princes had appointed for the service of the Levites, two hundred and twenty Nethinims: all of them were expressed by name. \nThen I proclaimed a fast there, at the river of Ahava, that we might afflict ourselves before our God, to seek of him a right way for us, and for our little ones, and for all our substance. \nFor I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him. \nSo we fasted and besought our God for this: and he was intreated of us. \nThen I separated twelve of the chief of the priests, Sherebiah, Hashabiah, and ten of their brethren with them, \nAnd weighed unto them the silver, and the gold, and the vessels, even the offering of the house of our God, which the king, and his counsellors, and his lords, and all Israel there present, had offered: \nI even weighed unto their hand six hundred and fifty talents of silver, and silver vessels an hundred talents, and of gold an hundred talents; \nAlso twenty basons of gold, of a thousand drams; and two vessels of fine copper, precious as gold. \nAnd I said unto them, Ye are holy unto the LORD; the vessels are holy also; and the silver and the gold are a freewill offering unto the LORD God of your fathers. \nWatch ye, and keep them, until ye weigh them before the chief of the priests and the Levites, and chief of the fathers of Israel, at Jerusalem, in the chambers of the house of the LORD. \nSo took the priests and the Levites the weight of the silver, and the gold, and the vessels, to bring them to Jerusalem unto the house of our God. \nThen we departed from the river of Ahava on the twelfth day of the first month, to go unto Jerusalem: and the hand of our God was upon us, and he delivered us from the hand of the enemy, and of such as lay in wait by the way. \nAnd we came to Jerusalem, and abode there three days. \nNow on the fourth day was the silver and the gold and the vessels weighed in the house of our God by the hand of Meremoth the son of Uriah the priest; and with him was Eleazar the son of Phinehas; and with them was Jozabad the son of Jeshua, and Noadiah the son of Binnui, Levites; \nBy number and by weight of every one: and all the weight was written at that time. \nAlso the children of those that had been carried away, which were come out of the captivity, offered burnt offerings unto the God of Israel, twelve bullocks for all Israel, ninety and six rams, seventy and seven lambs, twelve he goats for a sin offering: all this was a burnt offering unto the LORD. \nAnd they delivered the king's commissions unto the king's lieutenants, and to the governors on this side the river: and they furthered the people, and the house of God. \nNow when these things were done, the princes came to me, saying, The people of Israel, and the priests, and the Levites, have not separated themselves from the people of the lands, doing according to their abominations, even of the Canaanites, the Hittites, the Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians, and the Amorites. \nFor they have taken of their daughters for themselves, and for their sons: so that the holy seed have mingled themselves with the people of those lands: yea, the hand of the princes and rulers hath been chief in this trespass. \nAnd when I heard this thing, I rent my garment and my mantle, and plucked off the hair of my head and of my beard, and sat down astonied. \nThen were assembled unto me every one that trembled at the words of the God of Israel, because of the transgression of those that had been carried away; and I sat astonied until the evening sacrifice. \nAnd at the evening sacrifice I arose up from my heaviness; and having rent my garment and my mantle, I fell upon my knees, and spread out my hands unto the LORD my God, \nAnd said, O my God, I am ashamed and blush to lift up my face to thee, my God: for our iniquities are increased over our head, and our trespass is grown up unto the heavens. \nSince the days of our fathers have we been in a great trespass unto this day; and for our iniquities have we, our kings, and our priests, been delivered into the hand of the kings of the lands, to the sword, to captivity, and to a spoil, and to confusion of face, as it is this day. \nAnd now for a little space grace hath been shewed from the LORD our God, to leave us a remnant to escape, and to give us a nail in his holy place, that our God may lighten our eyes, and give us a little reviving in our bondage. \nFor we were bondmen; yet our God hath not forsaken us in our bondage, but hath extended mercy unto us in the sight of the kings of Persia, to give us a reviving, to set up the house of our God, and to repair the desolations thereof, and to give us a wall in Judah and in Jerusalem. \nAnd now, O our God, what shall we say after this? for we have forsaken thy commandments, \nWhich thou hast commanded by thy servants the prophets, saying, The land, unto which ye go to possess it, is an unclean land with the filthiness of the people of the lands, with their abominations, which have filled it from one end to another with their uncleanness. \nNow therefore give not your daughters unto their sons, neither take their daughters unto your sons, nor seek their peace or their wealth for ever: that ye may be strong, and eat the good of the land, and leave it for an inheritance to your children for ever. \nAnd after all that is come upon us for our evil deeds, and for our great trespass, seeing that thou our God hast punished us less than our iniquities deserve, and hast given us such deliverance as this; \nShould we again break thy commandments, and join in affinity with the people of these abominations? wouldest not thou be angry with us till thou hadst consumed us, so that there should be no remnant nor escaping? \nO LORD God of Israel, thou art righteous: for we remain yet escaped, as it is this day: behold, we are before thee in our trespasses: for we cannot stand before thee because of this. \nNow when Ezra had prayed, and when he had confessed, weeping and casting himself down before the house of God, there assembled unto him out of Israel a very great congregation of men and women and children: for the people wept very sore. \nAnd Shechaniah the son of Jehiel, one of the sons of Elam, answered and said unto Ezra, We have trespassed against our God, and have taken strange wives of the people of the land: yet now there is hope in Israel concerning this thing. \nNow therefore let us make a covenant with our God to put away all the wives, and such as are born of them, according to the counsel of my lord, and of those that tremble at the commandment of our God; and let it be done according to the law. \nArise; for this matter belongeth unto thee: we also will be with thee: be of good courage, and do it. \nThen arose Ezra, and made the chief priests, the Levites, and all Israel, to swear that they should do according to this word. And they sware. \nThen Ezra rose up from before the house of God, and went into the chamber of Johanan the son of Eliashib: and when he came thither, he did eat no bread, nor drink water: for he mourned because of the transgression of them that had been carried away. \nAnd they made proclamation throughout Judah and Jerusalem unto all the children of the captivity, that they should gather themselves together unto Jerusalem; \nAnd that whosoever would not come within three days, according to the counsel of the princes and the elders, all his substance should be forfeited, and himself separated from the congregation of those that had been carried away. \nThen all the men of Judah and Benjamin gathered themselves together unto Jerusalem within three days. It was the ninth month, on the twentieth day of the month; and all the people sat in the street of the house of God, trembling because of this matter, and for the great rain. \nAnd Ezra the priest stood up, and said unto them, Ye have transgressed, and have taken strange wives, to increase the trespass of Israel. \nNow therefore make confession unto the LORD God of your fathers, and do his pleasure: and separate yourselves from the people of the land, and from the strange wives. \nThen all the congregation answered and said with a loud voice, As thou hast said, so must we do. \nBut the people are many, and it is a time of much rain, and we are not able to stand without, neither is this a work of one day or two: for we are many that have transgressed in this thing. \nLet now our rulers of all the congregation stand, and let all them which have taken strange wives in our cities come at appointed times, and with them the elders of every city, and the judges thereof, until the fierce wrath of our God for this matter be turned from us. \nOnly Jonathan the son of Asahel and Jahaziah the son of Tikvah were employed about this matter: and Meshullam and Shabbethai the Levite helped them. \nAnd the children of the captivity did so. And Ezra the priest, with certain chief of the fathers, after the house of their fathers, and all of them by their names, were separated, and sat down in the first day of the tenth month to examine the matter. \nAnd they made an end with all the men that had taken strange wives by the first day of the first month. \nAnd among the sons of the priests there were found that had taken strange wives: namely, of the sons of Jeshua the son of Jozadak, and his brethren; Maaseiah, and Eliezer, and Jarib, and Gedaliah. \nAnd they gave their hands that they would put away their wives; and being guilty, they offered a ram of the flock for their trespass. \nAnd of the sons of Immer; Hanani, and Zebadiah. \nAnd of the sons of Harim; Maaseiah, and Elijah, and Shemaiah, and Jehiel, and Uzziah. \nAnd of the sons of Pashur; Elioenai, Maaseiah, Ishmael, Nethaneel, Jozabad, and Elasah. \nAlso of the Levites; Jozabad, and Shimei, and Kelaiah, (the same is Kelita,) Pethahiah, Judah, and Eliezer. \nOf the singers also; Eliashib: and of the porters; Shallum, and Telem, and Uri. \nMoreover of Israel: of the sons of Parosh; Ramiah, and Jeziah, and Malchiah, and Miamin, and Eleazar, and Malchijah, and Benaiah. \nAnd of the sons of Elam; Mattaniah, Zechariah, and Jehiel, and Abdi, and Jeremoth, and Eliah. \nAnd of the sons of Zattu; Elioenai, Eliashib, Mattaniah, and Jeremoth, and Zabad, and Aziza. \nOf the sons also of Bebai; Jehohanan, Hananiah, Zabbai, and Athlai. \nAnd of the sons of Bani; Meshullam, Malluch, and Adaiah, Jashub, and Sheal, and Ramoth. \nAnd of the sons of Pahathmoab; Adna, and Chelal, Benaiah, Maaseiah, Mattaniah, Bezaleel, and Binnui, and Manasseh. \nAnd of the sons of Harim; Eliezer, Ishijah, Malchiah, Shemaiah, Shimeon, \nBenjamin, Malluch, and Shemariah. \nOf the sons of Hashum; Mattenai, Mattathah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei. \nOf the sons of Bani; Maadai, Amram, and Uel, \nBenaiah, Bedeiah, Chelluh, \nVaniah, Meremoth, Eliashib, \nMattaniah, Mattenai, and Jaasau, \nAnd Bani, and Binnui, Shimei, \nAnd Shelemiah, and Nathan, and Adaiah, \nMachnadebai, Shashai, Sharai, \nAzareel, and Shelemiah, Shemariah, \nShallum, Amariah, and Joseph. \nOf the sons of Nebo; Jeiel, Mattithiah, Zabad, Zebina, Jadau, and Joel, Benaiah. \nAll these had taken strange wives: and some of them had wives by whom they had children. \nThe words of Nehemiah the son of Hachaliah. And it came to pass in the month Chisleu, in the twentieth year, as I was in Shushan the palace, \nThat Hanani, one of my brethren, came, he and certain men of Judah; and I asked them concerning the Jews that had escaped, which were left of the captivity, and concerning Jerusalem. \nAnd they said unto me, The remnant that are left of the captivity there in the province are in great affliction and reproach: the wall of Jerusalem also is broken down, and the gates thereof are burned with fire. \nAnd it came to pass, when I heard these words, that I sat down and wept, and mourned certain days, and fasted, and prayed before the God of heaven, \nAnd said, I beseech thee, O LORD God of heaven, the great and terrible God, that keepeth covenant and mercy for them that love him and observe his commandments: \nLet thine ear now be attentive, and thine eyes open, that thou mayest hear the prayer of thy servant, which I pray before thee now, day and night, for the children of Israel thy servants, and confess the sins of the children of Israel, which we have sinned against thee: both I and my father's house have sinned. \nWe have dealt very corruptly against thee, and have not kept the commandments, nor the statutes, nor the judgments, which thou commandedst thy servant Moses. \nRemember, I beseech thee, the word that thou commandedst thy servant Moses, saying, If ye transgress, I will scatter you abroad among the nations: \nBut if ye turn unto me, and keep my commandments, and do them; though there were of you cast out unto the uttermost part of the heaven, yet will I gather them from thence, and will bring them unto the place that I have chosen to set my name there. \nNow these are thy servants and thy people, whom thou hast redeemed by thy great power, and by thy strong hand. \nO LORD, I beseech thee, let now thine ear be attentive to the prayer of thy servant, and to the prayer of thy servants, who desire to fear thy name: and prosper, I pray thee, thy servant this day, and grant him mercy in the sight of this man. For I was the king's cupbearer. \nAnd it came to pass in the month Nisan, in the twentieth year of Artaxerxes the king, that wine was before him: and I took up the wine, and gave it unto the king. Now I had not been beforetime sad in his presence. \nWherefore the king said unto me, Why is thy countenance sad, seeing thou art not sick? this is nothing else but sorrow of heart. Then I was very sore afraid, \nAnd said unto the king, Let the king live for ever: why should not my countenance be sad, when the city, the place of my fathers' sepulchres, lieth waste, and the gates thereof are consumed with fire? \nThen the king said unto me, For what dost thou make request? So I prayed to the God of heaven. \nAnd I said unto the king, If it please the king, and if thy servant have found favour in thy sight, that thou wouldest send me unto Judah, unto the city of my fathers' sepulchres, that I may build it. \nAnd the king said unto me, (the queen also sitting by him,) For how long shall thy journey be? and when wilt thou return? So it pleased the king to send me; and I set him a time. \nMoreover I said unto the king, If it please the king, let letters be given me to the governors beyond the river, that they may convey me over till I come into Judah; \nAnd a letter unto Asaph the keeper of the king's forest, that he may give me timber to make beams for the gates of the palace which appertained to the house, and for the wall of the city, and for the house that I shall enter into. And the king granted me, according to the good hand of my God upon me. \nThen I came to the governors beyond the river, and gave them the king's letters. Now the king had sent captains of the army and horsemen with me. \nWhen Sanballat the Horonite, and Tobiah the servant, the Ammonite, heard of it, it grieved them exceedingly that there was come a man to seek the welfare of the children of Israel. \nSo I came to Jerusalem, and was there three days. \nAnd I arose in the night, I and some few men with me; neither told I any man what my God had put in my heart to do at Jerusalem: neither was there any beast with me, save the beast that I rode upon. \nAnd I went out by night by the gate of the valley, even before the dragon well, and to the dung port, and viewed the walls of Jerusalem, which were broken down, and the gates thereof were consumed with fire. \nThen I went on to the gate of the fountain, and to the king's pool: but there was no place for the beast that was under me to pass. \nThen went I up in the night by the brook, and viewed the wall, and turned back, and entered by the gate of the valley, and so returned. \nAnd the rulers knew not whither I went, or what I did; neither had I as yet told it to the Jews, nor to the priests, nor to the nobles, nor to the rulers, nor to the rest that did the work. \nThen said I unto them, Ye see the distress that we are in, how Jerusalem lieth waste, and the gates thereof are burned with fire: come, and let us build up the wall of Jerusalem, that we be no more a reproach. \nThen I told them of the hand of my God which was good upon me; as also the king's words that he had spoken unto me. And they said, Let us rise up and build. So they strengthened their hands for this good work. \nBut when Sanballat the Horonite, and Tobiah the servant, the Ammonite, and Geshem the Arabian, heard it, they laughed us to scorn, and despised us, and said, What is this thing that ye do? will ye rebel against the king? \nThen answered I them, and said unto them, The God of heaven, he will prosper us; therefore we his servants will arise and build: but ye have no portion, nor right, nor memorial, in Jerusalem. \nThen Eliashib the high priest rose up with his brethren the priests, and they builded the sheep gate; they sanctified it, and set up the doors of it; even unto the tower of Meah they sanctified it, unto the tower of Hananeel. \nAnd next unto him builded the men of Jericho. And next to them builded Zaccur the son of Imri. \nBut the fish gate did the sons of Hassenaah build, who also laid the beams thereof, and set up the doors thereof, the locks thereof, and the bars thereof. \nAnd next unto them repaired Meremoth the son of Urijah, the son of Koz. And next unto them repaired Meshullam the son of Berechiah, the son of Meshezabeel. And next unto them repaired Zadok the son of Baana. \nAnd next unto them the Tekoites repaired; but their nobles put not their necks to the work of their LORD. \nMoreover the old gate repaired Jehoiada the son of Paseah, and Meshullam the son of Besodeiah; they laid the beams thereof, and set up the doors thereof, and the locks thereof, and the bars thereof. \nAnd next unto them repaired Melatiah the Gibeonite, and Jadon the Meronothite, the men of Gibeon, and of Mizpah, unto the throne of the governor on this side the river. \nNext unto him repaired Uzziel the son of Harhaiah, of the goldsmiths. Next unto him also repaired Hananiah the son of one of the apothecaries, and they fortified Jerusalem unto the broad wall. \nAnd next unto them repaired Rephaiah the son of Hur, the ruler of the half part of Jerusalem. \nAnd next unto them repaired Jedaiah the son of Harumaph, even over against his house. And next unto him repaired Hattush the son of Hashabniah. \nMalchijah the son of Harim, and Hashub the son of Pahathmoab, repaired the other piece, and the tower of the furnaces. \nAnd next unto him repaired Shallum the son of Halohesh, the ruler of the half part of Jerusalem, he and his daughters. \nThe valley gate repaired Hanun, and the inhabitants of Zanoah; they built it, and set up the doors thereof, the locks thereof, and the bars thereof, and a thousand cubits on the wall unto the dung gate. \nBut the dung gate repaired Malchiah the son of Rechab, the ruler of part of Bethhaccerem; he built it, and set up the doors thereof, the locks thereof, and the bars thereof. \nBut the gate of the fountain repaired Shallun the son of Colhozeh, the ruler of part of Mizpah; he built it, and covered it, and set up the doors thereof, the locks thereof, and the bars thereof, and the wall of the pool of Siloah by the king's garden, and unto the stairs that go down from the city of David. \nAfter him repaired Nehemiah the son of Azbuk, the ruler of the half part of Bethzur, unto the place over against the sepulchres of David, and to the pool that was made, and unto the house of the mighty. \nAfter him repaired the Levites, Rehum the son of Bani. Next unto him repaired Hashabiah, the ruler of the half part of Keilah, in his part. \nAfter him repaired their brethren, Bavai the son of Henadad, the ruler of the half part of Keilah. \nAnd next to him repaired Ezer the son of Jeshua, the ruler of Mizpah, another piece over against the going up to the armoury at the turning of the wall. \nAfter him Baruch the son of Zabbai earnestly repaired the other piece, from the turning of the wall unto the door of the house of Eliashib the high priest. \nAfter him repaired Meremoth the son of Urijah the son of Koz another piece, from the door of the house of Eliashib even to the end of the house of Eliashib. \nAnd after him repaired the priests, the men of the plain. \nAfter him repaired Benjamin and Hashub over against their house. After him repaired Azariah the son of Maaseiah the son of Ananiah by his house. \nAfter him repaired Binnui the son of Henadad another piece, from the house of Azariah unto the turning of the wall, even unto the corner. \nPalal the son of Uzai, over against the turning of the wall, and the tower which lieth out from the king's high house, that was by the court of the prison. After him Pedaiah the son of Parosh. \nMoreover the Nethinims dwelt in Ophel, unto the place over against the water gate toward the east, and the tower that lieth out. \nAfter them the Tekoites repaired another piece, over against the great tower that lieth out, even unto the wall of Ophel. \nFrom above the horse gate repaired the priests, every one over against his house. \nAfter them repaired Zadok the son of Immer over against his house. After him repaired also Shemaiah the son of Shechaniah, the keeper of the east gate. \nAfter him repaired Hananiah the son of Shelemiah, and Hanun the sixth son of Zalaph, another piece. After him repaired Meshullam the son of Berechiah over against his chamber. \nAfter him repaired Malchiah the goldsmith's son unto the place of the Nethinims, and of the merchants, over against the gate Miphkad, and to the going up of the corner. \nAnd between the going up of the corner unto the sheep gate repaired the goldsmiths and the merchants. \nBut it came to pass, that when Sanballat heard that we builded the wall, he was wroth, and took great indignation, and mocked the Jews. \nAnd he spake before his brethren and the army of Samaria, and said, What do these feeble Jews? will they fortify themselves? will they sacrifice? will they make an end in a day? will they revive the stones out of the heaps of the rubbish which are burned? \nNow Tobiah the Ammonite was by him, and he said, Even that which they build, if a fox go up, he shall even break down their stone wall. \nHear, O our God; for we are despised: and turn their reproach upon their own head, and give them for a prey in the land of captivity: \nAnd cover not their iniquity, and let not their sin be blotted out from before thee: for they have provoked thee to anger before the builders. \nSo built we the wall; and all the wall was joined together unto the half thereof: for the people had a mind to work. \nBut it came to pass, that when Sanballat, and Tobiah, and the Arabians, and the Ammonites, and the Ashdodites, heard that the walls of Jerusalem were made up, and that the breaches began to be stopped, then they were very wroth, \nAnd conspired all of them together to come and to fight against Jerusalem, and to hinder it. \nNevertheless we made our prayer unto our God, and set a watch against them day and night, because of them. \nAnd Judah said, The strength of the bearers of burdens is decayed, and there is much rubbish; so that we are not able to build the wall. \nAnd our adversaries said, They shall not know, neither see, till we come in the midst among them, and slay them, and cause the work to cease. \nAnd it came to pass, that when the Jews which dwelt by them came, they said unto us ten times, From all places whence ye shall return unto us they will be upon you. \nTherefore set I in the lower places behind the wall, and on the higher places, I even set the people after their families with their swords, their spears, and their bows. \nAnd I looked, and rose up, and said unto the nobles, and to the rulers, and to the rest of the people, Be not ye afraid of them: remember the LORD, which is great and terrible, and fight for your brethren, your sons, and your daughters, your wives, and your houses. \nAnd it came to pass, when our enemies heard that it was known unto us, and God had brought their counsel to nought, that we returned all of us to the wall, every one unto his work. \nAnd it came to pass from that time forth, that the half of my servants wrought in the work, and the other half of them held both the spears, the shields, and the bows, and the habergeons; and the rulers were behind all the house of Judah. \nThey which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon. \nFor the builders, every one had his sword girded by his side, and so builded. And he that sounded the trumpet was by me. \nAnd I said unto the nobles, and to the rulers, and to the rest of the people, The work is great and large, and we are separated upon the wall, one far from another. \nIn what place therefore ye hear the sound of the trumpet, resort ye thither unto us: our God shall fight for us. \nSo we laboured in the work: and half of them held the spears from the rising of the morning till the stars appeared. \nLikewise at the same time said I unto the people, Let every one with his servant lodge within Jerusalem, that in the night they may be a guard to us, and labour on the day. \nSo neither I, nor my brethren, nor my servants, nor the men of the guard which followed me, none of us put off our clothes, saving that every one put them off for washing. \nAnd there was a great cry of the people and of their wives against their brethren the Jews. \nFor there were that said, We, our sons, and our daughters, are many: therefore we take up corn for them, that we may eat, and live. \nSome also there were that said, We have mortgaged our lands, vineyards, and houses, that we might buy corn, because of the dearth. \nThere were also that said, We have borrowed money for the king's tribute, and that upon our lands and vineyards. \nYet now our flesh is as the flesh of our brethren, our children as their children: and, lo, we bring into bondage our sons and our daughters to be servants, and some of our daughters are brought unto bondage already: neither is it in our power to redeem them; for other men have our lands and vineyards. \nAnd I was very angry when I heard their cry and these words. \nThen I consulted with myself, and I rebuked the nobles, and the rulers, and said unto them, Ye exact usury, every one of his brother. And I set a great assembly against them. \nAnd I said unto them, We after our ability have redeemed our brethren the Jews, which were sold unto the heathen; and will ye even sell your brethren? or shall they be sold unto us? Then held they their peace, and found nothing to answer. \nAlso I said, It is not good that ye do: ought ye not to walk in the fear of our God because of the reproach of the heathen our enemies? \nI likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury. \nRestore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them. \nThen said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise. \nAlso I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the LORD. And the people did according to this promise. \nMoreover from the time that I was appointed to be their governor in the land of Judah, from the twentieth year even unto the two and thirtieth year of Artaxerxes the king, that is, twelve years, I and my brethren have not eaten the bread of the governor. \nBut the former governors that had been before me were chargeable unto the people, and had taken of them bread and wine, beside forty shekels of silver; yea, even their servants bare rule over the people: but so did not I, because of the fear of God. \nYea, also I continued in the work of this wall, neither bought we any land: and all my servants were gathered thither unto the work. \nMoreover there were at my table an hundred and fifty of the Jews and rulers, beside those that came unto us from among the heathen that are about us. \nNow that which was prepared for me daily was one ox and six choice sheep; also fowls were prepared for me, and once in ten days store of all sorts of wine: yet for all this required not I the bread of the governor, because the bondage was heavy upon this people. \nThink upon me, my God, for good, according to all that I have done for this people. \nNow it came to pass when Sanballat, and Tobiah, and Geshem the Arabian, and the rest of our enemies, heard that I had builded the wall, and that there was no breach left therein; (though at that time I had not set up the doors upon the gates;) \nThat Sanballat and Geshem sent unto me, saying, Come, let us meet together in some one of the villages in the plain of Ono. But they thought to do me mischief. \nAnd I sent messengers unto them, saying, I am doing a great work, so that I cannot come down: why should the work cease, whilst I leave it, and come down to you? \nYet they sent unto me four times after this sort; and I answered them after the same manner. \nThen sent Sanballat his servant unto me in like manner the fifth time with an open letter in his hand; \nWherein was written, It is reported among the heathen, and Gashmu saith it, that thou and the Jews think to rebel: for which cause thou buildest the wall, that thou mayest be their king, according to these words. \nAnd thou hast also appointed prophets to preach of thee at Jerusalem, saying, There is a king in Judah: and now shall it be reported to the king according to these words. Come now therefore, and let us take counsel together. \nThen I sent unto him, saying, There are no such things done as thou sayest, but thou feignest them out of thine own heart. \nFor they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands. \nAfterward I came unto the house of Shemaiah the son of Delaiah the son of Mehetabeel, who was shut up; and he said, Let us meet together in the house of God, within the temple, and let us shut the doors of the temple: for they will come to slay thee; yea, in the night will they come to slay thee. \nAnd I said, Should such a man as I flee? and who is there, that, being as I am, would go into the temple to save his life? I will not go in. \nAnd, lo, I perceived that God had not sent him; but that he pronounced this prophecy against me: for Tobiah and Sanballat had hired him. \nTherefore was he hired, that I should be afraid, and do so, and sin, and that they might have matter for an evil report, that they might reproach me. \nMy God, think thou upon Tobiah and Sanballat according to these their works, and on the prophetess Noadiah, and the rest of the prophets, that would have put me in fear. \nSo the wall was finished in the twenty and fifth day of the month Elul, in fifty and two days. \nAnd it came to pass, that when all our enemies heard thereof, and all the heathen that were about us saw these things, they were much cast down in their own eyes: for they perceived that this work was wrought of our God. \nMoreover in those days the nobles of Judah sent many letters unto Tobiah, and the letters of Tobiah came unto them. \nFor there were many in Judah sworn unto him, because he was the son in law of Shechaniah the son of Arah; and his son Johanan had taken the daughter of Meshullam the son of Berechiah. \nAlso they reported his good deeds before me, and uttered my words to him. And Tobiah sent letters to put me in fear. \nNow it came to pass, when the wall was built, and I had set up the doors, and the porters and the singers and the Levites were appointed, \nThat I gave my brother Hanani, and Hananiah the ruler of the palace, charge over Jerusalem: for he was a faithful man, and feared God above many. \nAnd I said unto them, Let not the gates of Jerusalem be opened until the sun be hot; and while they stand by, let them shut the doors, and bar them: and appoint watches of the inhabitants of Jerusalem, every one in his watch, and every one to be over against his house. \nNow the city was large and great: but the people were few therein, and the houses were not builded. \nAnd my God put into mine heart to gather together the nobles, and the rulers, and the people, that they might be reckoned by genealogy. And I found a register of the genealogy of them which came up at the first, and found written therein, \nThese are the children of the province, that went up out of the captivity, of those that had been carried away, whom Nebuchadnezzar the king of Babylon had carried away, and came again to Jerusalem and to Judah, every one unto his city; \nWho came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, Baanah. The number, I say, of the men of the people of Israel was this; \nThe children of Parosh, two thousand an hundred seventy and two. \nThe children of Shephatiah, three hundred seventy and two. \nThe children of Arah, six hundred fifty and two. \nThe children of Pahathmoab, of the children of Jeshua and Joab, two thousand and eight hundred and eighteen. \nThe children of Elam, a thousand two hundred fifty and four. \nThe children of Zattu, eight hundred forty and five. \nThe children of Zaccai, seven hundred and threescore. \nThe children of Binnui, six hundred forty and eight. \nThe children of Bebai, six hundred twenty and eight. \nThe children of Azgad, two thousand three hundred twenty and two. \nThe children of Adonikam, six hundred threescore and seven. \nThe children of Bigvai, two thousand threescore and seven. \nThe children of Adin, six hundred fifty and five. \nThe children of Ater of Hezekiah, ninety and eight. \nThe children of Hashum, three hundred twenty and eight. \nThe children of Bezai, three hundred twenty and four. \nThe children of Hariph, an hundred and twelve. \nThe children of Gibeon, ninety and five. \nThe men of Bethlehem and Netophah, an hundred fourscore and eight. \nThe men of Anathoth, an hundred twenty and eight. \nThe men of Bethazmaveth, forty and two. \nThe men of Kirjathjearim, Chephirah, and Beeroth, seven hundred forty and three. \nThe men of Ramah and Gaba, six hundred twenty and one. \nThe men of Michmas, an hundred and twenty and two. \nThe men of Bethel and Ai, an hundred twenty and three. \nThe men of the other Nebo, fifty and two. \nThe children of the other Elam, a thousand two hundred fifty and four. \nThe children of Harim, three hundred and twenty. \nThe children of Jericho, three hundred forty and five. \nThe children of Lod, Hadid, and Ono, seven hundred twenty and one. \nThe children of Senaah, three thousand nine hundred and thirty. \nThe priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three. \nThe children of Immer, a thousand fifty and two. \nThe children of Pashur, a thousand two hundred forty and seven. \nThe children of Harim, a thousand and seventeen. \nThe Levites: the children of Jeshua, of Kadmiel, and of the children of Hodevah, seventy and four. \nThe singers: the children of Asaph, an hundred forty and eight. \nThe porters: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai, an hundred thirty and eight. \nThe Nethinims: the children of Ziha, the children of Hashupha, the children of Tabbaoth, \nThe children of Keros, the children of Sia, the children of Padon, \nThe children of Lebana, the children of Hagaba, the children of Shalmai, \nThe children of Hanan, the children of Giddel, the children of Gahar, \nThe children of Reaiah, the children of Rezin, the children of Nekoda, \nThe children of Gazzam, the children of Uzza, the children of Phaseah, \nThe children of Besai, the children of Meunim, the children of Nephishesim, \nThe children of Bakbuk, the children of Hakupha, the children of Harhur, \nThe children of Bazlith, the children of Mehida, the children of Harsha, \nThe children of Barkos, the children of Sisera, the children of Tamah, \nThe children of Neziah, the children of Hatipha. \nThe children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Perida, \nThe children of Jaala, the children of Darkon, the children of Giddel, \nThe children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Amon. \nAll the Nethinims, and the children of Solomon's servants, were three hundred ninety and two. \nAnd these were they which went up also from Telmelah, Telharesha, Cherub, Addon, and Immer: but they could not shew their father's house, nor their seed, whether they were of Israel. \nThe children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred forty and two. \nAnd of the priests: the children of Habaiah, the children of Koz, the children of Barzillai, which took one of the daughters of Barzillai the Gileadite to wife, and was called after their name. \nThese sought their register among those that were reckoned by genealogy, but it was not found: therefore were they, as polluted, put from the priesthood. \nAnd the Tirshatha said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and Thummim. \nThe whole congregation together was forty and two thousand three hundred and threescore, \nBeside their manservants and their maidservants, of whom there were seven thousand three hundred thirty and seven: and they had two hundred forty and five singing men and singing women. \nTheir horses, seven hundred thirty and six: their mules, two hundred forty and five: \nTheir camels, four hundred thirty and five: six thousand seven hundred and twenty asses. \nAnd some of the chief of the fathers gave unto the work. The Tirshatha gave to the treasure a thousand drams of gold, fifty basons, five hundred and thirty priests' garments. \nAnd some of the chief of the fathers gave to the treasure of the work twenty thousand drams of gold, and two thousand and two hundred pound of silver. \nAnd that which the rest of the people gave was twenty thousand drams of gold, and two thousand pound of silver, and threescore and seven priests' garments. \nSo the priests, and the Levites, and the porters, and the singers, and some of the people, and the Nethinims, and all Israel, dwelt in their cities; and when the seventh month came, the children of Israel were in their cities. \nAnd all the people gathered themselves together as one man into the street that was before the water gate; and they spake unto Ezra the scribe to bring the book of the law of Moses, which the LORD had commanded to Israel. \nAnd Ezra the priest brought the law before the congregation both of men and women, and all that could hear with understanding, upon the first day of the seventh month. \nAnd he read therein before the street that was before the water gate from the morning until midday, before the men and the women, and those that could understand; and the ears of all the people were attentive unto the book of the law. \nAnd Ezra the scribe stood upon a pulpit of wood, which they had made for the purpose; and beside him stood Mattithiah, and Shema, and Anaiah, and Urijah, and Hilkiah, and Maaseiah, on his right hand; and on his left hand, Pedaiah, and Mishael, and Malchiah, and Hashum, and Hashbadana, Zechariah, and Meshullam. \nAnd Ezra opened the book in the sight of all the people; (for he was above all the people;) and when he opened it, all the people stood up: \nAnd Ezra blessed the LORD, the great God. And all the people answered, Amen, Amen, with lifting up their hands: and they bowed their heads, and worshipped the LORD with their faces to the ground. \nAlso Jeshua, and Bani, and Sherebiah, Jamin, Akkub, Shabbethai, Hodijah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, and the Levites, caused the people to understand the law: and the people stood in their place. \nSo they read in the book in the law of God distinctly, and gave the sense, and caused them to understand the reading. \nAnd Nehemiah, which is the Tirshatha, and Ezra the priest the scribe, and the Levites that taught the people, said unto all the people, This day is holy unto the LORD your God; mourn not, nor weep. For all the people wept, when they heard the words of the law. \nThen he said unto them, Go your way, eat the fat, and drink the sweet, and send portions unto them for whom nothing is prepared: for this day is holy unto our LORD: neither be ye sorry; for the joy of the LORD is your strength. \nSo the Levites stilled all the people, saying, Hold your peace, for the day is holy; neither be ye grieved. \nAnd all the people went their way to eat, and to drink, and to send portions, and to make great mirth, because they had understood the words that were declared unto them. \nAnd on the second day were gathered together the chief of the fathers of all the people, the priests, and the Levites, unto Ezra the scribe, even to understand the words of the law. \nAnd they found written in the law which the LORD had commanded by Moses, that the children of Israel should dwell in booths in the feast of the seventh month: \nAnd that they should publish and proclaim in all their cities, and in Jerusalem, saying, Go forth unto the mount, and fetch olive branches, and pine branches, and myrtle branches, and palm branches, and branches of thick trees, to make booths, as it is written. \nSo the people went forth, and brought them, and made themselves booths, every one upon the roof of his house, and in their courts, and in the courts of the house of God, and in the street of the water gate, and in the street of the gate of Ephraim. \nAnd all the congregation of them that were come again out of the captivity made booths, and sat under the booths: for since the days of Jeshua the son of Nun unto that day had not the children of Israel done so. And there was very great gladness. \nAlso day by day, from the first day unto the last day, he read in the book of the law of God. And they kept the feast seven days; and on the eighth day was a solemn assembly, according unto the manner. \nNow in the twenty and fourth day of this month the children of Israel were assembled with fasting, and with sackclothes, and earth upon them. \nAnd the seed of Israel separated themselves from all strangers, and stood and confessed their sins, and the iniquities of their fathers. \nAnd they stood up in their place, and read in the book of the law of the LORD their God one fourth part of the day; and another fourth part they confessed, and worshipped the LORD their God. \nThen stood up upon the stairs, of the Levites, Jeshua, and Bani, Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Chenani, and cried with a loud voice unto the LORD their God. \nThen the Levites, Jeshua, and Kadmiel, Bani, Hashabniah, Sherebiah, Hodijah, Shebaniah, and Pethahiah, said, Stand up and bless the LORD your God for ever and ever: and blessed be thy glorious name, which is exalted above all blessing and praise. \nThou, even thou, art LORD alone; thou hast made heaven, the heaven of heavens, with all their host, the earth, and all things that are therein, the seas, and all that is therein, and thou preservest them all; and the host of heaven worshippeth thee. \nThou art the LORD the God, who didst choose Abram, and broughtest him forth out of Ur of the Chaldees, and gavest him the name of Abraham; \nAnd foundest his heart faithful before thee, and madest a covenant with him to give the land of the Canaanites, the Hittites, the Amorites, and the Perizzites, and the Jebusites, and the Girgashites, to give it, I say, to his seed, and hast performed thy words; for thou art righteous: \nAnd didst see the affliction of our fathers in Egypt, and heardest their cry by the Red sea; \nAnd shewedst signs and wonders upon Pharaoh, and on all his servants, and on all the people of his land: for thou knewest that they dealt proudly against them. So didst thou get thee a name, as it is this day. \nAnd thou didst divide the sea before them, so that they went through the midst of the sea on the dry land; and their persecutors thou threwest into the deeps, as a stone into the mighty waters. \nMoreover thou leddest them in the day by a cloudy pillar; and in the night by a pillar of fire, to give them light in the way wherein they should go. \nThou camest down also upon mount Sinai, and spakest with them from heaven, and gavest them right judgments, and true laws, good statutes and commandments: \nAnd madest known unto them thy holy sabbath, and commandedst them precepts, statutes, and laws, by the hand of Moses thy servant: \nAnd gavest them bread from heaven for their hunger, and broughtest forth water for them out of the rock for their thirst, and promisedst them that they should go in to possess the land which thou hadst sworn to give them. \nBut they and our fathers dealt proudly, and hardened their necks, and hearkened not to thy commandments, \nAnd refused to obey, neither were mindful of thy wonders that thou didst among them; but hardened their necks, and in their rebellion appointed a captain to return to their bondage: but thou art a God ready to pardon, gracious and merciful, slow to anger, and of great kindness, and forsookest them not. \nYea, when they had made them a molten calf, and said, This is thy God that brought thee up out of Egypt, and had wrought great provocations; \nYet thou in thy manifold mercies forsookest them not in the wilderness: the pillar of the cloud departed not from them by day, to lead them in the way; neither the pillar of fire by night, to shew them light, and the way wherein they should go. \nThou gavest also thy good spirit to instruct them, and withheldest not thy manna from their mouth, and gavest them water for their thirst. \nYea, forty years didst thou sustain them in the wilderness, so that they lacked nothing; their clothes waxed not old, and their feet swelled not. \nMoreover thou gavest them kingdoms and nations, and didst divide them into corners: so they possessed the land of Sihon, and the land of the king of Heshbon, and the land of Og king of Bashan. \nTheir children also multipliedst thou as the stars of heaven, and broughtest them into the land, concerning which thou hadst promised to their fathers, that they should go in to possess it. \nSo the children went in and possessed the land, and thou subduedst before them the inhabitants of the land, the Canaanites, and gavest them into their hands, with their kings, and the people of the land, that they might do with them as they would. \nAnd they took strong cities, and a fat land, and possessed houses full of all goods, wells digged, vineyards, and oliveyards, and fruit trees in abundance: so they did eat, and were filled, and became fat, and delighted themselves in thy great goodness. \nNevertheless they were disobedient, and rebelled against thee, and cast thy law behind their backs, and slew thy prophets which testified against them to turn them to thee, and they wrought great provocations. \nTherefore thou deliveredst them into the hand of their enemies, who vexed them: and in the time of their trouble, when they cried unto thee, thou heardest them from heaven; and according to thy manifold mercies thou gavest them saviours, who saved them out of the hand of their enemies. \nBut after they had rest, they did evil again before thee: therefore leftest thou them in the land of their enemies, so that they had the dominion over them: yet when they returned, and cried unto thee, thou heardest them from heaven; and many times didst thou deliver them according to thy mercies; \nAnd testifiedst against them, that thou mightest bring them again unto thy law: yet they dealt proudly, and hearkened not unto thy commandments, but sinned against thy judgments, (which if a man do, he shall live in them;) and withdrew the shoulder, and hardened their neck, and would not hear. \nYet many years didst thou forbear them, and testifiedst against them by thy spirit in thy prophets: yet would they not give ear: therefore gavest thou them into the hand of the people of the lands. \nNevertheless for thy great mercies' sake thou didst not utterly consume them, nor forsake them; for thou art a gracious and merciful God. \nNow therefore, our God, the great, the mighty, and the terrible God, who keepest covenant and mercy, let not all the trouble seem little before thee, that hath come upon us, on our kings, on our princes, and on our priests, and on our prophets, and on our fathers, and on all thy people, since the time of the kings of Assyria unto this day. \nHowbeit thou art just in all that is brought upon us; for thou hast done right, but we have done wickedly: \nNeither have our kings, our princes, our priests, nor our fathers, kept thy law, nor hearkened unto thy commandments and thy testimonies, wherewith thou didst testify against them. \nFor they have not served thee in their kingdom, and in thy great goodness that thou gavest them, and in the large and fat land which thou gavest before them, neither turned they from their wicked works. \nBehold, we are servants this day, and for the land that thou gavest unto our fathers to eat the fruit thereof and the good thereof, behold, we are servants in it: \nAnd it yieldeth much increase unto the kings whom thou hast set over us because of our sins: also they have dominion over our bodies, and over our cattle, at their pleasure, and we are in great distress. \nAnd because of all this we make a sure covenant, and write it; and our princes, Levites, and priests, seal unto it. \nNow those that sealed were, Nehemiah, the Tirshatha, the son of Hachaliah, and Zidkijah, \nSeraiah, Azariah, Jeremiah, \nPashur, Amariah, Malchijah, \nHattush, Shebaniah, Malluch, \nHarim, Meremoth, Obadiah, \nDaniel, Ginnethon, Baruch, \nMeshullam, Abijah, Mijamin, \nMaaziah, Bilgai, Shemaiah: these were the priests. \nAnd the Levites: both Jeshua the son of Azaniah, Binnui of the sons of Henadad, Kadmiel; \nAnd their brethren, Shebaniah, Hodijah, Kelita, Pelaiah, Hanan, \nMicha, Rehob, Hashabiah, \nZaccur, Sherebiah, Shebaniah, \nHodijah, Bani, Beninu. \nThe chief of the people; Parosh, Pahathmoab, Elam, Zatthu, Bani, \nBunni, Azgad, Bebai, \nAdonijah, Bigvai, Adin, \nAter, Hizkijah, Azzur, \nHodijah, Hashum, Bezai, \nHariph, Anathoth, Nebai, \nMagpiash, Meshullam, Hezir, \nMeshezabeel, Zadok, Jaddua, \nPelatiah, Hanan, Anaiah, \nHoshea, Hananiah, Hashub, \nHallohesh, Pileha, Shobek, \nRehum, Hashabnah, Maaseiah, \nAnd Ahijah, Hanan, Anan, \nMalluch, Harim, Baanah. \nAnd the rest of the people, the priests, the Levites, the porters, the singers, the Nethinims, and all they that had separated themselves from the people of the lands unto the law of God, their wives, their sons, and their daughters, every one having knowledge, and having understanding; \nThey clave to their brethren, their nobles, and entered into a curse, and into an oath, to walk in God's law, which was given by Moses the servant of God, and to observe and do all the commandments of the LORD our Lord, and his judgments and his statutes; \nAnd that we would not give our daughters unto the people of the land, not take their daughters for our sons: \nAnd if the people of the land bring ware or any victuals on the sabbath day to sell, that we would not buy it of them on the sabbath, or on the holy day: and that we would leave the seventh year, and the exaction of every debt. \nAlso we made ordinances for us, to charge ourselves yearly with the third part of a shekel for the service of the house of our God; \nFor the shewbread, and for the continual meat offering, and for the continual burnt offering, of the sabbaths, of the new moons, for the set feasts, and for the holy things, and for the sin offerings to make an atonement for Israel, and for all the work of the house of our God. \nAnd we cast the lots among the priests, the Levites, and the people, for the wood offering, to bring it into the house of our God, after the houses of our fathers, at times appointed year by year, to burn upon the altar of the LORD our God, as it is written in the law: \nAnd to bring the firstfruits of our ground, and the firstfruits of all fruit of all trees, year by year, unto the house of the LORD: \nAlso the firstborn of our sons, and of our cattle, as it is written in the law, and the firstlings of our herds and of our flocks, to bring to the house of our God, unto the priests that minister in the house of our God: \nAnd that we should bring the firstfruits of our dough, and our offerings, and the fruit of all manner of trees, of wine and of oil, unto the priests, to the chambers of the house of our God; and the tithes of our ground unto the Levites, that the same Levites might have the tithes in all the cities of our tillage. \nAnd the priest the son of Aaron shall be with the Levites, when the Levites take tithes: and the Levites shall bring up the tithe of the tithes unto the house of our God, to the chambers, into the treasure house. \nFor the children of Israel and the children of Levi shall bring the offering of the corn, of the new wine, and the oil, unto the chambers, where are the vessels of the sanctuary, and the priests that minister, and the porters, and the singers: and we will not forsake the house of our God. \nAnd the rulers of the people dwelt at Jerusalem: the rest of the people also cast lots, to bring one of ten to dwell in Jerusalem the holy city, and nine parts to dwell in other cities. \nAnd the people blessed all the men, that willingly offered themselves to dwell at Jerusalem. \nNow these are the chief of the province that dwelt in Jerusalem: but in the cities of Judah dwelt every one in his possession in their cities, to wit, Israel, the priests, and the Levites, and the Nethinims, and the children of Solomon's servants. \nAnd at Jerusalem dwelt certain of the children of Judah, and of the children of Benjamin. Of the children of Judah; Athaiah the son of Uzziah, the son of Zechariah, the son of Amariah, the son of Shephatiah, the son of Mahalaleel, of the children of Perez; \nAnd Maaseiah the son of Baruch, the son of Colhozeh, the son of Hazaiah, the son of Adaiah, the son of Joiarib, the son of Zechariah, the son of Shiloni. \nAll the sons of Perez that dwelt at Jerusalem were four hundred threescore and eight valiant men. \nAnd these are the sons of Benjamin; Sallu the son of Meshullam, the son of Joed, the son of Pedaiah, the son of Kolaiah, the son of Maaseiah, the son of Ithiel, the son of Jesaiah. \nAnd after him Gabbai, Sallai, nine hundred twenty and eight. \nAnd Joel the son of Zichri was their overseer: and Judah the son of Senuah was second over the city. \nOf the priests: Jedaiah the son of Joiarib, Jachin. \nSeraiah the son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, was the ruler of the house of God. \nAnd their brethren that did the work of the house were eight hundred twenty and two: and Adaiah the son of Jeroham, the son of Pelaliah, the son of Amzi, the son of Zechariah, the son of Pashur, the son of Malchiah. \nAnd his brethren, chief of the fathers, two hundred forty and two: and Amashai the son of Azareel, the son of Ahasai, the son of Meshillemoth, the son of Immer, \nAnd their brethren, mighty men of valour, an hundred twenty and eight: and their overseer was Zabdiel, the son of one of the great men. \nAlso of the Levites: Shemaiah the son of Hashub, the son of Azrikam, the son of Hashabiah, the son of Bunni; \nAnd Shabbethai and Jozabad, of the chief of the Levites, had the oversight of the outward business of the house of God. \nAnd Mattaniah the son of Micha, the son of Zabdi, the son of Asaph, was the principal to begin the thanksgiving in prayer: and Bakbukiah the second among his brethren, and Abda the son of Shammua, the son of Galal, the son of Jeduthun. \nAll the Levites in the holy city were two hundred fourscore and four. \nMoreover the porters, Akkub, Talmon, and their brethren that kept the gates, were an hundred seventy and two. \nAnd the residue of Israel, of the priests, and the Levites, were in all the cities of Judah, every one in his inheritance. \nBut the Nethinims dwelt in Ophel: and Ziha and Gispa were over the Nethinims. \nThe overseer also of the Levites at Jerusalem was Uzzi the son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Micha. Of the sons of Asaph, the singers were over the business of the house of God. \nFor it was the king's commandment concerning them, that a certain portion should be for the singers, due for every day. \nAnd Pethahiah the son of Meshezabeel, of the children of Zerah the son of Judah, was at the king's hand in all matters concerning the people. \nAnd for the villages, with their fields, some of the children of Judah dwelt at Kirjatharba, and in the villages thereof, and at Dibon, and in the villages thereof, and at Jekabzeel, and in the villages thereof, \nAnd at Jeshua, and at Moladah, and at Bethphelet, \nAnd at Hazarshual, and at Beersheba, and in the villages thereof, \nAnd at Ziklag, and at Mekonah, and in the villages thereof, \nAnd at Enrimmon, and at Zareah, and at Jarmuth, \nZanoah, Adullam, and in their villages, at Lachish, and the fields thereof, at Azekah, and in the villages thereof. And they dwelt from Beersheba unto the valley of Hinnom. \nThe children also of Benjamin from Geba dwelt at Michmash, and Aija, and Bethel, and in their villages. \nAnd at Anathoth, Nob, Ananiah, \nHazor, Ramah, Gittaim, \nHadid, Zeboim, Neballat, \nLod, and Ono, the valley of craftsmen. \nAnd of the Levites were divisions in Judah, and in Benjamin. \nNow these are the priests and the Levites that went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra, \nAmariah, Malluch, Hattush, \nShechaniah, Rehum, Meremoth, \nIddo, Ginnetho, Abijah, \nMiamin, Maadiah, Bilgah, \nShemaiah, and Joiarib, Jedaiah, \nSallu, Amok, Hilkiah, Jedaiah. These were the chief of the priests and of their brethren in the days of Jeshua. \nMoreover the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, which was over the thanksgiving, he and his brethren. \nAlso Bakbukiah and Unni, their brethren, were over against them in the watches. \nAnd Jeshua begat Joiakim, Joiakim also begat Eliashib, and Eliashib begat Joiada, \nAnd Joiada begat Jonathan, and Jonathan begat Jaddua. \nAnd in the days of Joiakim were priests, the chief of the fathers: of Seraiah, Meraiah; of Jeremiah, Hananiah; \nOf Ezra, Meshullam; of Amariah, Jehohanan; \nOf Melicu, Jonathan; of Shebaniah, Joseph; \nOf Harim, Adna; of Meraioth, Helkai; \nOf Iddo, Zechariah; of Ginnethon, Meshullam; \nOf Abijah, Zichri; of Miniamin, of Moadiah, Piltai: \nOf Bilgah, Shammua; of Shemaiah, Jehonathan; \nAnd of Joiarib, Mattenai; of Jedaiah, Uzzi; \nOf Sallai, Kallai; of Amok, Eber; \nOf Hilkiah, Hashabiah; of Jedaiah, Nethaneel. \nThe Levites in the days of Eliashib, Joiada, and Johanan, and Jaddua, were recorded chief of the fathers: also the priests, to the reign of Darius the Persian. \nThe sons of Levi, the chief of the fathers, were written in the book of the chronicles, even until the days of Johanan the son of Eliashib. \nAnd the chief of the Levites: Hashabiah, Sherebiah, and Jeshua the son of Kadmiel, with their brethren over against them, to praise and to give thanks, according to the commandment of David the man of God, ward over against ward. \nMattaniah, and Bakbukiah, Obadiah, Meshullam, Talmon, Akkub, were porters keeping the ward at the thresholds of the gates. \nThese were in the days of Joiakim the son of Jeshua, the son of Jozadak, and in the days of Nehemiah the governor, and of Ezra the priest, the scribe. \nAnd at the dedication of the wall of Jerusalem they sought the Levites out of all their places, to bring them to Jerusalem, to keep the dedication with gladness, both with thanksgivings, and with singing, with cymbals, psalteries, and with harps. \nAnd the sons of the singers gathered themselves together, both out of the plain country round about Jerusalem, and from the villages of Netophathi; \nAlso from the house of Gilgal, and out of the fields of Geba and Azmaveth: for the singers had builded them villages round about Jerusalem. \nAnd the priests and the Levites purified themselves, and purified the people, and the gates, and the wall. \nThen I brought up the princes of Judah upon the wall, and appointed two great companies of them that gave thanks, whereof one went on the right hand upon the wall toward the dung gate: \nAnd after them went Hoshaiah, and half of the princes of Judah, \nAnd Azariah, Ezra, and Meshullam, \nJudah, and Benjamin, and Shemaiah, and Jeremiah, \nAnd certain of the priests' sons with trumpets; namely, Zechariah the son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Michaiah, the son of Zaccur, the son of Asaph: \nAnd his brethren, Shemaiah, and Azarael, Milalai, Gilalai, Maai, Nethaneel, and Judah, Hanani, with the musical instruments of David the man of God, and Ezra the scribe before them. \nAnd at the fountain gate, which was over against them, they went up by the stairs of the city of David, at the going up of the wall, above the house of David, even unto the water gate eastward. \nAnd the other company of them that gave thanks went over against them, and I after them, and the half of the people upon the wall, from beyond the tower of the furnaces even unto the broad wall; \nAnd from above the gate of Ephraim, and above the old gate, and above the fish gate, and the tower of Hananeel, and the tower of Meah, even unto the sheep gate: and they stood still in the prison gate. \nSo stood the two companies of them that gave thanks in the house of God, and I, and the half of the rulers with me: \nAnd the priests; Eliakim, Maaseiah, Miniamin, Michaiah, Elioenai, Zechariah, and Hananiah, with trumpets; \nAnd Maaseiah, and Shemaiah, and Eleazar, and Uzzi, and Jehohanan, and Malchijah, and Elam, and Ezer. And the singers sang loud, with Jezrahiah their overseer. \nAlso that day they offered great sacrifices, and rejoiced: for God had made them rejoice with great joy: the wives also and the children rejoiced: so that the joy of Jerusalem was heard even afar off. \nAnd at that time were some appointed over the chambers for the treasures, for the offerings, for the firstfruits, and for the tithes, to gather into them out of the fields of the cities the portions of the law for the priests and Levites: for Judah rejoiced for the priests and for the Levites that waited. \nAnd both the singers and the porters kept the ward of their God, and the ward of the purification, according to the commandment of David, and of Solomon his son. \nFor in the days of David and Asaph of old there were chief of the singers, and songs of praise and thanksgiving unto God. \nAnd all Israel in the days of Zerubbabel, and in the days of Nehemiah, gave the portions of the singers and the porters, every day his portion: and they sanctified holy things unto the Levites; and the Levites sanctified them unto the children of Aaron. \nOn that day they read in the book of Moses in the audience of the people; and therein was found written, that the Ammonite and the Moabite should not come into the congregation of God for ever; \nBecause they met not the children of Israel with bread and with water, but hired Balaam against them, that he should curse them: howbeit our God turned the curse into a blessing. \nNow it came to pass, when they had heard the law, that they separated from Israel all the mixed multitude. \nAnd before this, Eliashib the priest, having the oversight of the chamber of the house of our God, was allied unto Tobiah: \nAnd he had prepared for him a great chamber, where aforetime they laid the meat offerings, the frankincense, and the vessels, and the tithes of the corn, the new wine, and the oil, which was commanded to be given to the Levites, and the singers, and the porters; and the offerings of the priests. \nBut in all this time was not I at Jerusalem: for in the two and thirtieth year of Artaxerxes king of Babylon came I unto the king, and after certain days obtained I leave of the king: \nAnd I came to Jerusalem, and understood of the evil that Eliashib did for Tobiah, in preparing him a chamber in the courts of the house of God. \nAnd it grieved me sore: therefore I cast forth all the household stuff to Tobiah out of the chamber. \nThen I commanded, and they cleansed the chambers: and thither brought I again the vessels of the house of God, with the meat offering and the frankincense. \nAnd I perceived that the portions of the Levites had not been given them: for the Levites and the singers, that did the work, were fled every one to his field. \nThen contended I with the rulers, and said, Why is the house of God forsaken? And I gathered them together, and set them in their place. \nThen brought all Judah the tithe of the corn and the new wine and the oil unto the treasuries. \nAnd I made treasurers over the treasuries, Shelemiah the priest, and Zadok the scribe, and of the Levites, Pedaiah: and next to them was Hanan the son of Zaccur, the son of Mattaniah: for they were counted faithful, and their office was to distribute unto their brethren. \nRemember me, O my God, concerning this, and wipe not out my good deeds that I have done for the house of my God, and for the offices thereof. \nIn those days saw I in Judah some treading wine presses on the sabbath, and bringing in sheaves, and lading asses; as also wine, grapes, and figs, and all manner of burdens, which they brought into Jerusalem on the sabbath day: and I testified against them in the day wherein they sold victuals. \nThere dwelt men of Tyre also therein, which brought fish, and all manner of ware, and sold on the sabbath unto the children of Judah, and in Jerusalem. \nThen I contended with the nobles of Judah, and said unto them, What evil thing is this that ye do, and profane the sabbath day? \nDid not your fathers thus, and did not our God bring all this evil upon us, and upon this city? yet ye bring more wrath upon Israel by profaning the sabbath. \nAnd it came to pass, that when the gates of Jerusalem began to be dark before the sabbath, I commanded that the gates should be shut, and charged that they should not be opened till after the sabbath: and some of my servants set I at the gates, that there should no burden be brought in on the sabbath day. \nSo the merchants and sellers of all kind of ware lodged without Jerusalem once or twice. \nThen I testified against them, and said unto them, Why lodge ye about the wall? if ye do so again, I will lay hands on you. From that time forth came they no more on the sabbath. \nAnd I commanded the Levites that they should cleanse themselves, and that they should come and keep the gates, to sanctify the sabbath day. Remember me, O my God, concerning this also, and spare me according to the greatness of thy mercy. \nIn those days also saw I Jews that had married wives of Ashdod, of Ammon, and of Moab: \nAnd their children spake half in the speech of Ashdod, and could not speak in the Jews' language, but according to the language of each people. \nAnd I contended with them, and cursed them, and smote certain of them, and plucked off their hair, and made them swear by God, saying, Ye shall not give your daughters unto their sons, nor take their daughters unto your sons, or for yourselves. \nDid not Solomon king of Israel sin by these things? yet among many nations was there no king like him, who was beloved of his God, and God made him king over all Israel: nevertheless even him did outlandish women cause to sin. \nShall we then hearken unto you to do all this great evil, to transgress against our God in marrying strange wives? \nAnd one of the sons of Joiada, the son of Eliashib the high priest, was son in law to Sanballat the Horonite: therefore I chased him from me. \nRemember them, O my God, because they have defiled the priesthood, and the covenant of the priesthood, and of the Levites. \nThus cleansed I them from all strangers, and appointed the wards of the priests and the Levites, every one in his business; \nAnd for the wood offering, at times appointed, and for the firstfruits. Remember me, O my God, for good. \nNow it came to pass in the days of Ahasuerus, (this is Ahasuerus which reigned, from India even unto Ethiopia, over an hundred and seven and twenty provinces:) \nThat in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the palace, \nIn the third year of his reign, he made a feast unto all his princes and his servants; the power of Persia and Media, the nobles and princes of the provinces, being before him: \nWhen he shewed the riches of his glorious kingdom and the honour of his excellent majesty many days, even an hundred and fourscore days. \nAnd when these days were expired, the king made a feast unto all the people that were present in Shushan the palace, both unto great and small, seven days, in the court of the garden of the king's palace; \nWhere were white, green, and blue, hangings, fastened with cords of fine linen and purple to silver rings and pillars of marble: the beds were of gold and silver, upon a pavement of red, and blue, and white, and black, marble. \nAnd they gave them drink in vessels of gold, (the vessels being diverse one from another,) and royal wine in abundance, according to the state of the king. \nAnd the drinking was according to the law; none did compel: for so the king had appointed to all the officers of his house, that they should do according to every man's pleasure. \nAlso Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus. \nOn the seventh day, when the heart of the king was merry with wine, he commanded Mehuman, Biztha, Harbona, Bigtha, and Abagtha, Zethar, and Carcas, the seven chamberlains that served in the presence of Ahasuerus the king, \nTo bring Vashti the queen before the king with the crown royal, to shew the people and the princes her beauty: for she was fair to look on. \nBut the queen Vashti refused to come at the king's commandment by his chamberlains: therefore was the king very wroth, and his anger burned in him. \nThen the king said to the wise men, which knew the times, (for so was the king's manner toward all that knew law and judgment: \nAnd the next unto him was Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, which saw the king's face, and which sat the first in the kingdom;) \nWhat shall we do unto the queen Vashti according to law, because she hath not performed the commandment of the king Ahasuerus by the chamberlains? \nAnd Memucan answered before the king and the princes, Vashti the queen hath not done wrong to the king only, but also to all the princes, and to all the people that are in all the provinces of the king Ahasuerus. \nFor this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not. \nLikewise shall the ladies of Persia and Media say this day unto all the king's princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath. \nIf it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she. \nAnd when the king's decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small. \nAnd the saying pleased the king and the princes; and the king did according to the word of Memucan: \nFor he sent letters into all the king's provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people. \nAfter these things, when the wrath of king Ahasuerus was appeased, he remembered Vashti, and what she had done, and what was decreed against her. \nThen said the king's servants that ministered unto him, Let there be fair young virgins sought for the king: \nAnd let the king appoint officers in all the provinces of his kingdom, that they may gather together all the fair young virgins unto Shushan the palace, to the house of the women, unto the custody of Hege the king's chamberlain, keeper of the women; and let their things for purification be given them: \nAnd let the maiden which pleaseth the king be queen instead of Vashti. And the thing pleased the king; and he did so. \nNow in Shushan the palace there was a certain Jew, whose name was Mordecai, the son of Jair, the son of Shimei, the son of Kish, a Benjamite; \nWho had been carried away from Jerusalem with the captivity which had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away. \nAnd he brought up Hadassah, that is, Esther, his uncle's daughter: for she had neither father nor mother, and the maid was fair and beautiful; whom Mordecai, when her father and mother were dead, took for his own daughter. \nSo it came to pass, when the king's commandment and his decree was heard, and when many maidens were gathered together unto Shushan the palace, to the custody of Hegai, that Esther was brought also unto the king's house, to the custody of Hegai, keeper of the women. \nAnd the maiden pleased him, and she obtained kindness of him; and he speedily gave her her things for purification, with such things as belonged to her, and seven maidens, which were meet to be given her, out of the king's house: and he preferred her and her maids unto the best place of the house of the women. \nEsther had not shewed her people nor her kindred: for Mordecai had charged her that she should not shew it. \nAnd Mordecai walked every day before the court of the women's house, to know how Esther did, and what should become of her. \nNow when every maid's turn was come to go in to king Ahasuerus, after that she had been twelve months, according to the manner of the women, (for so were the days of their purifications accomplished, to wit, six months with oil of myrrh, and six months with sweet odours, and with other things for the purifying of the women;) \nThen thus came every maiden unto the king; whatsoever she desired was given her to go with her out of the house of the women unto the king's house. \nIn the evening she went, and on the morrow she returned into the second house of the women, to the custody of Shaashgaz, the king's chamberlain, which kept the concubines: she came in unto the king no more, except the king delighted in her, and that she were called by name. \nNow when the turn of Esther, the daughter of Abihail the uncle of Mordecai, who had taken her for his daughter, was come to go in unto the king, she required nothing but what Hegai the king's chamberlain, the keeper of the women, appointed. And Esther obtained favour in the sight of all them that looked upon her. \nSo Esther was taken unto king Ahasuerus into his house royal in the tenth month, which is the month Tebeth, in the seventh year of his reign. \nAnd the king loved Esther above all the women, and she obtained grace and favour in his sight more than all the virgins; so that he set the royal crown upon her head, and made her queen instead of Vashti. \nThen the king made a great feast unto all his princes and his servants, even Esther's feast; and he made a release to the provinces, and gave gifts, according to the state of the king. \nAnd when the virgins were gathered together the second time, then Mordecai sat in the king's gate. \nEsther had not yet shewed her kindred nor her people; as Mordecai had charged her: for Esther did the commandment of Mordecai, like as when she was brought up with him. \nIn those days, while Mordecai sat in the king's gate, two of the king's chamberlains, Bigthan and Teresh, of those which kept the door, were wroth, and sought to lay hands on the king Ahasuerus. \nAnd the thing was known to Mordecai, who told it unto Esther the queen; and Esther certified the king thereof in Mordecai's name. \nAnd when inquisition was made of the matter, it was found out; therefore they were both hanged on a tree: and it was written in the book of the chronicles before the king. \nAfter these things did king Ahasuerus promote Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above all the princes that were with him. \nAnd all the king's servants, that were in the king's gate, bowed, and reverenced Haman: for the king had so commanded concerning him. But Mordecai bowed not, nor did him reverence. \nThen the king's servants, which were in the king's gate, said unto Mordecai, Why transgressest thou the king's commandment? \nNow it came to pass, when they spake daily unto him, and he hearkened not unto them, that they told Haman, to see whether Mordecai's matters would stand: for he had told them that he was a Jew. \nAnd when Haman saw that Mordecai bowed not, nor did him reverence, then was Haman full of wrath. \nAnd he thought scorn to lay hands on Mordecai alone; for they had shewed him the people of Mordecai: wherefore Haman sought to destroy all the Jews that were throughout the whole kingdom of Ahasuerus, even the people of Mordecai. \nIn the first month, that is, the month Nisan, in the twelfth year of king Ahasuerus, they cast Pur, that is, the lot, before Haman from day to day, and from month to month, to the twelfth month, that is, the month Adar. \nAnd Haman said unto king Ahasuerus, There is a certain people scattered abroad and dispersed among the people in all the provinces of thy kingdom; and their laws are diverse from all people; neither keep they the king's laws: therefore it is not for the king's profit to suffer them. \nIf it please the king, let it be written that they may be destroyed: and I will pay ten thousand talents of silver to the hands of those that have the charge of the business, to bring it into the king's treasuries. \nAnd the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews' enemy. \nAnd the king said unto Haman, The silver is given to thee, the people also, to do with them as it seemeth good to thee. \nThen were the king's scribes called on the thirteenth day of the first month, and there was written according to all that Haman had commanded unto the king's lieutenants, and to the governors that were over every province, and to the rulers of every people of every province according to the writing thereof, and to every people after their language; in the name of king Ahasuerus was it written, and sealed with the king's ring. \nAnd the letters were sent by posts into all the king's provinces, to destroy, to kill, and to cause to perish, all Jews, both young and old, little children and women, in one day, even upon the thirteenth day of the twelfth month, which is the month Adar, and to take the spoil of them for a prey. \nThe copy of the writing for a commandment to be given in every province was published unto all people, that they should be ready against that day. \nThe posts went out, being hastened by the king's commandment, and the decree was given in Shushan the palace. And the king and Haman sat down to drink; but the city Shushan was perplexed. \nWhen Mordecai perceived all that was done, Mordecai rent his clothes, and put on sackcloth with ashes, and went out into the midst of the city, and cried with a loud and a bitter cry; \nAnd came even before the king's gate: for none might enter into the king's gate clothed with sackcloth. \nAnd in every province, whithersoever the king's commandment and his decree came, there was great mourning among the Jews, and fasting, and weeping, and wailing; and many lay in sackcloth and ashes. \nSo Esther's maids and her chamberlains came and told it her. Then was the queen exceedingly grieved; and she sent raiment to clothe Mordecai, and to take away his sackcloth from him: but he received it not. \nThen called Esther for Hatach, one of the king's chamberlains, whom he had appointed to attend upon her, and gave him a commandment to Mordecai, to know what it was, and why it was. \nSo Hatach went forth to Mordecai unto the street of the city, which was before the king's gate. \nAnd Mordecai told him of all that had happened unto him, and of the sum of the money that Haman had promised to pay to the king's treasuries for the Jews, to destroy them. \nAlso he gave him the copy of the writing of the decree that was given at Shushan to destroy them, to shew it unto Esther, and to declare it unto her, and to charge her that she should go in unto the king, to make supplication unto him, and to make request before him for her people. \nAnd Hatach came and told Esther the words of Mordecai. \nAgain Esther spake unto Hatach, and gave him commandment unto Mordecai; \nAll the king's servants, and the people of the king's provinces, do know, that whosoever, whether man or women, shall come unto the king into the inner court, who is not called, there is one law of his to put him to death, except such to whom the king shall hold out the golden sceptre, that he may live: but I have not been called to come in unto the king these thirty days. \nAnd they told to Mordecai Esther's words. \nThen Mordecai commanded to answer Esther, Think not with thyself that thou shalt escape in the king's house, more than all the Jews. \nFor if thou altogether holdest thy peace at this time, then shall there enlargement and deliverance arise to the Jews from another place; but thou and thy father's house shall be destroyed: and who knoweth whether thou art come to the kingdom for such a time as this? \nThen Esther bade them return Mordecai this answer, \nGo, gather together all the Jews that are present in Shushan, and fast ye for me, and neither eat nor drink three days, night or day: I also and my maidens will fast likewise; and so will I go in unto the king, which is not according to the law: and if I perish, I perish. \nSo Mordecai went his way, and did according to all that Esther had commanded him. \nNow it came to pass on the third day, that Esther put on her royal apparel, and stood in the inner court of the king's house, over against the king's house: and the king sat upon his royal throne in the royal house, over against the gate of the house. \nAnd it was so, when the king saw Esther the queen standing in the court, that she obtained favour in his sight: and the king held out to Esther the golden sceptre that was in his hand. So Esther drew near, and touched the top of the sceptre. \nThen said the king unto her, What wilt thou, queen Esther? and what is thy request? it shall be even given thee to the half of the kingdom. \nAnd Esther answered, If it seem good unto the king, let the king and Haman come this day unto the banquet that I have prepared for him. \nThen the king said, Cause Haman to make haste, that he may do as Esther hath said. So the king and Haman came to the banquet that Esther had prepared. \nAnd the king said unto Esther at the banquet of wine, What is thy petition? and it shall be granted thee: and what is thy request? even to the half of the kingdom it shall be performed. \nThen answered Esther, and said, My petition and my request is; \nIf I have found favour in the sight of the king, and if it please the king to grant my petition, and to perform my request, let the king and Haman come to the banquet that I shall prepare for them, and I will do to morrow as the king hath said. \nThen went Haman forth that day joyful and with a glad heart: but when Haman saw Mordecai in the king's gate, that he stood not up, nor moved for him, he was full of indignation against Mordecai. \nNevertheless Haman refrained himself: and when he came home, he sent and called for his friends, and Zeresh his wife. \nAnd Haman told them of the glory of his riches, and the multitude of his children, and all the things wherein the king had promoted him, and how he had advanced him above the princes and servants of the king. \nHaman said moreover, Yea, Esther the queen did let no man come in with the king unto the banquet that she had prepared but myself; and to morrow am I invited unto her also with the king. \nYet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king's gate. \nThen said Zeresh his wife and all his friends unto him, Let a gallows be made of fifty cubits high, and to morrow speak thou unto the king that Mordecai may be hanged thereon: then go thou in merrily with the king unto the banquet. And the thing pleased Haman; and he caused the gallows to be made. \nOn that night could not the king sleep, and he commanded to bring the book of records of the chronicles; and they were read before the king. \nAnd it was found written, that Mordecai had told of Bigthana and Teresh, two of the king's chamberlains, the keepers of the door, who sought to lay hand on the king Ahasuerus. \nAnd the king said, What honour and dignity hath been done to Mordecai for this? Then said the king's servants that ministered unto him, There is nothing done for him. \nAnd the king said, Who is in the court? Now Haman was come into the outward court of the king's house, to speak unto the king to hang Mordecai on the gallows that he had prepared for him. \nAnd the king's servants said unto him, Behold, Haman standeth in the court. And the king said, Let him come in. \nSo Haman came in. And the king said unto him, What shall be done unto the man whom the king delighteth to honour? Now Haman thought in his heart, To whom would the king delight to do honour more than to myself? \nAnd Haman answered the king, For the man whom the king delighteth to honour, \nLet the royal apparel be brought which the king useth to wear, and the horse that the king rideth upon, and the crown royal which is set upon his head: \nAnd let this apparel and horse be delivered to the hand of one of the king's most noble princes, that they may array the man withal whom the king delighteth to honour, and bring him on horseback through the street of the city, and proclaim before him, Thus shall it be done to the man whom the king delighteth to honour. \nThen the king said to Haman, Make haste, and take the apparel and the horse, as thou hast said, and do even so to Mordecai the Jew, that sitteth at the king's gate: let nothing fail of all that thou hast spoken. \nThen took Haman the apparel and the horse, and arrayed Mordecai, and brought him on horseback through the street of the city, and proclaimed before him, Thus shall it be done unto the man whom the king delighteth to honour. \nAnd Mordecai came again to the king's gate. But Haman hasted to his house mourning, and having his head covered. \nAnd Haman told Zeresh his wife and all his friends every thing that had befallen him. Then said his wise men and Zeresh his wife unto him, If Mordecai be of the seed of the Jews, before whom thou hast begun to fall, thou shalt not prevail against him, but shalt surely fall before him. \nAnd while they were yet talking with him, came the king's chamberlains, and hasted to bring Haman unto the banquet that Esther had prepared. \nSo the king and Haman came to banquet with Esther the queen. \nAnd the king said again unto Esther on the second day at the banquet of wine, What is thy petition, queen Esther? and it shall be granted thee: and what is thy request? and it shall be performed, even to the half of the kingdom. \nThen Esther the queen answered and said, If I have found favour in thy sight, O king, and if it please the king, let my life be given me at my petition, and my people at my request: \nFor we are sold, I and my people, to be destroyed, to be slain, and to perish. But if we had been sold for bondmen and bondwomen, I had held my tongue, although the enemy could not countervail the king's damage. \nThen the king Ahasuerus answered and said unto Esther the queen, Who is he, and where is he, that durst presume in his heart to do so? \nAnd Esther said, The adversary and enemy is this wicked Haman. Then Haman was afraid before the king and the queen. \nAnd the king arising from the banquet of wine in his wrath went into the palace garden: and Haman stood up to make request for his life to Esther the queen; for he saw that there was evil determined against him by the king. \nThen the king returned out of the palace garden into the place of the banquet of wine; and Haman was fallen upon the bed whereon Esther was. Then said the king, Will he force the queen also before me in the house? As the word went out of king's mouth, they covered Haman's face. \nAnd Harbonah, one of the chamberlains, said before the king, Behold also, the gallows fifty cubits high, which Haman had made for Mordecai, who spoken good for the king, standeth in the house of Haman. Then the king said, Hang him thereon. \nSo they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king's wrath pacified. \nOn that day did the king Ahasuerus give the house of Haman the Jews' enemy unto Esther the queen. And Mordecai came before the king; for Esther had told what he was unto her. \nAnd the king took off his ring, which he had taken from Haman, and gave it unto Mordecai. And Esther set Mordecai over the house of Haman. \nAnd Esther spake yet again before the king, and fell down at his feet, and besought him with tears to put away the mischief of Haman the Agagite, and his device that he had devised against the Jews. \nThen the king held out the golden sceptre toward Esther. So Esther arose, and stood before the king, \nAnd said, If it please the king, and if I have favour in his sight, and the thing seem right before the king, and I be pleasing in his eyes, let it be written to reverse the letters devised by Haman the son of Hammedatha the Agagite, which he wrote to destroy the Jews which are in all the king's provinces: \nFor how can I endure to see the evil that shall come unto my people? or how can I endure to see the destruction of my kindred? \nThen the king Ahasuerus said unto Esther the queen and to Mordecai the Jew, Behold, I have given Esther the house of Haman, and him they have hanged upon the gallows, because he laid his hand upon the Jews. \nWrite ye also for the Jews, as it liketh you, in the king's name, and seal it with the king's ring: for the writing which is written in the king's name, and sealed with the king's ring, may no man reverse. \nThen were the king's scribes called at that time in the third month, that is, the month Sivan, on the three and twentieth day thereof; and it was written according to all that Mordecai commanded unto the Jews, and to the lieutenants, and the deputies and rulers of the provinces which are from India unto Ethiopia, an hundred twenty and seven provinces, unto every province according to the writing thereof, and unto every people after their language, and to the Jews according to their writing, and according to their language. \nAnd he wrote in the king Ahasuerus' name, and sealed it with the king's ring, and sent letters by posts on horseback, and riders on mules, camels, and young dromedaries: \nWherein the king granted the Jews which were in every city to gather themselves together, and to stand for their life, to destroy, to slay and to cause to perish, all the power of the people and province that would assault them, both little ones and women, and to take the spoil of them for a prey, \nUpon one day in all the provinces of king Ahasuerus, namely, upon the thirteenth day of the twelfth month, which is the month Adar. \nThe copy of the writing for a commandment to be given in every province was published unto all people, and that the Jews should be ready against that day to avenge themselves on their enemies. \nSo the posts that rode upon mules and camels went out, being hastened and pressed on by the king's commandment. And the decree was given at Shushan the palace. \nAnd Mordecai went out from the presence of the king in royal apparel of blue and white, and with a great crown of gold, and with a garment of fine linen and purple: and the city of Shushan rejoiced and was glad. \nThe Jews had light, and gladness, and joy, and honour. \nAnd in every province, and in every city, whithersoever the king's commandment and his decree came, the Jews had joy and gladness, a feast and a good day. And many of the people of the land became Jews; for the fear of the Jews fell upon them. \nNow in the twelfth month, that is, the month Adar, on the thirteenth day of the same, when the king's commandment and his decree drew near to be put in execution, in the day that the enemies of the Jews hoped to have power over them, (though it was turned to the contrary, that the Jews had rule over them that hated them;) \nThe Jews gathered themselves together in their cities throughout all the provinces of the king Ahasuerus, to lay hand on such as sought their hurt: and no man could withstand them; for the fear of them fell upon all people. \nAnd all the rulers of the provinces, and the lieutenants, and the deputies, and officers of the king, helped the Jews; because the fear of Mordecai fell upon them. \nFor Mordecai was great in the king's house, and his fame went out throughout all the provinces: for this man Mordecai waxed greater and greater. \nThus the Jews smote all their enemies with the stroke of the sword, and slaughter, and destruction, and did what they would unto those that hated them. \nAnd in Shushan the palace the Jews slew and destroyed five hundred men. \nAnd Parshandatha, and Dalphon, and Aspatha, \nAnd Poratha, and Adalia, and Aridatha, \nAnd Parmashta, and Arisai, and Aridai, and Vajezatha, \nThe ten sons of Haman the son of Hammedatha, the enemy of the Jews, slew they; but on the spoil laid they not their hand. \nOn that day the number of those that were slain in Shushan the palace was brought before the king. \nAnd the king said unto Esther the queen, The Jews have slain and destroyed five hundred men in Shushan the palace, and the ten sons of Haman; what have they done in the rest of the king's provinces? now what is thy petition? and it shall be granted thee: or what is thy request further? and it shall be done. \nThen said Esther, If it please the king, let it be granted to the Jews which are in Shushan to do to morrow also according unto this day's decree, and let Haman's ten sons be hanged upon the gallows. \nAnd the king commanded it so to be done: and the decree was given at Shushan; and they hanged Haman's ten sons. \nFor the Jews that were in Shushan gathered themselves together on the fourteenth day also of the month Adar, and slew three hundred men at Shushan; but on the prey they laid not their hand. \nBut the other Jews that were in the king's provinces gathered themselves together, and stood for their lives, and had rest from their enemies, and slew of their foes seventy and five thousand, but they laid not their hands on the prey, \nOn the thirteenth day of the month Adar; and on the fourteenth day of the same rested they, and made it a day of feasting and gladness. \nBut the Jews that were at Shushan assembled together on the thirteenth day thereof, and on the fourteenth thereof; and on the fifteenth day of the same they rested, and made it a day of feasting and gladness. \nTherefore the Jews of the villages, that dwelt in the unwalled towns, made the fourteenth day of the month Adar a day of gladness and feasting, and a good day, and of sending portions one to another. \nAnd Mordecai wrote these things, and sent letters unto all the Jews that were in all the provinces of the king Ahasuerus, both nigh and far, \nTo stablish this among them, that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly, \nAs the days wherein the Jews rested from their enemies, and the month which was turned unto them from sorrow to joy, and from mourning into a good day: that they should make them days of feasting and joy, and of sending portions one to another, and gifts to the poor. \nAnd the Jews undertook to do as they had begun, and as Mordecai had written unto them; \nBecause Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had devised against the Jews to destroy them, and had cast Pur, that is, the lot, to consume them, and to destroy them; \nBut when Esther came before the king, he commanded by letters that his wicked device, which he devised against the Jews, should return upon his own head, and that he and his sons should be hanged on the gallows. \nWherefore they called these days Purim after the name of Pur. Therefore for all the words of this letter, and of that which they had seen concerning this matter, and which had come unto them, \nThe Jews ordained, and took upon them, and upon their seed, and upon all such as joined themselves unto them, so as it should not fail, that they would keep these two days according to their writing, and according to their appointed time every year; \nAnd that these days should be remembered and kept throughout every generation, every family, every province, and every city; and that these days of Purim should not fail from among the Jews, nor the memorial of them perish from their seed. \nThen Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote with all authority, to confirm this second letter of Purim. \nAnd he sent the letters unto all the Jews, to the hundred twenty and seven provinces of the kingdom of Ahasuerus, with words of peace and truth, \nTo confirm these days of Purim in their times appointed, according as Mordecai the Jew and Esther the queen had enjoined them, and as they had decreed for themselves and for their seed, the matters of the fastings and their cry. \nAnd the decree of Esther confirmed these matters of Purim; and it was written in the book. \nAnd the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea. \nAnd all the acts of his power and of his might, and the declaration of the greatness of Mordecai, whereunto the king advanced him, are they not written in the book of the chronicles of the kings of Media and Persia? \nFor Mordecai the Jew was next unto king Ahasuerus, and great among the Jews, and accepted of the multitude of his brethren, seeking the wealth of his people, and speaking peace to all his seed. \nThere was a man in the land of Uz, whose name was Job; and that man was perfect and upright, and one that feared God, and eschewed evil. \nAnd there were born unto him seven sons and three daughters. \nHis substance also was seven thousand sheep, and three thousand camels, and five hundred yoke of oxen, and five hundred she asses, and a very great household; so that this man was the greatest of all the men of the east. \nAnd his sons went and feasted in their houses, every one his day; and sent and called for their three sisters to eat and to drink with them. \nAnd it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually. \nNow there was a day when the sons of God came to present themselves before the LORD, and Satan came also among them. \nAnd the LORD said unto Satan, Whence comest thou? Then Satan answered the LORD, and said, From going to and fro in the earth, and from walking up and down in it. \nAnd the LORD said unto Satan, Hast thou considered my servant Job, that there is none like him in the earth, a perfect and an upright man, one that feareth God, and escheweth evil? \nThen Satan answered the LORD, and said, Doth Job fear God for nought? \nHast not thou made an hedge about him, and about his house, and about all that he hath on every side? thou hast blessed the work of his hands, and his substance is increased in the land. \nBut put forth thine hand now, and touch all that he hath, and he will curse thee to thy face. \nAnd the LORD said unto Satan, Behold, all that he hath is in thy power; only upon himself put not forth thine hand. So Satan went forth from the presence of the LORD. \nAnd there was a day when his sons and his daughters were eating and drinking wine in their eldest brother's house: \nAnd there came a messenger unto Job, and said, The oxen were plowing, and the asses feeding beside them: \nAnd the Sabeans fell upon them, and took them away; yea, they have slain the servants with the edge of the sword; and I only am escaped alone to tell thee. \nWhile he was yet speaking, there came also another, and said, The fire of God is fallen from heaven, and hath burned up the sheep, and the servants, and consumed them; and I only am escaped alone to tell thee. \nWhile he was yet speaking, there came also another, and said, The Chaldeans made out three bands, and fell upon the camels, and have carried them away, yea, and slain the servants with the edge of the sword; and I only am escaped alone to tell thee. \nWhile he was yet speaking, there came also another, and said, Thy sons and thy daughters were eating and drinking wine in their eldest brother's house: \nAnd, behold, there came a great wind from the wilderness, and smote the four corners of the house, and it fell upon the young men, and they are dead; and I only am escaped alone to tell thee. \nThen Job arose, and rent his mantle, and shaved his head, and fell down upon the ground, and worshipped, \nAnd said, Naked came I out of my mother's womb, and naked shall I return thither: the LORD gave, and the LORD hath taken away; blessed be the name of the LORD. \nIn all this Job sinned not, nor charged God foolishly. \nAgain there was a day when the sons of God came to present themselves before the LORD, and Satan came also among them to present himself before the LORD. \nAnd the LORD said unto Satan, From whence comest thou? And Satan answered the LORD, and said, From going to and fro in the earth, and from walking up and down in it. \nAnd the LORD said unto Satan, Hast thou considered my servant Job, that there is none like him in the earth, a perfect and an upright man, one that feareth God, and escheweth evil? and still he holdeth fast his integrity, although thou movedst me against him, to destroy him without cause. \nAnd Satan answered the LORD, and said, Skin for skin, yea, all that a man hath will he give for his life. \nBut put forth thine hand now, and touch his bone and his flesh, and he will curse thee to thy face. \nAnd the LORD said unto Satan, Behold, he is in thine hand; but save his life. \nSo went Satan forth from the presence of the LORD, and smote Job with sore boils from the sole of his foot unto his crown. \nAnd he took him a potsherd to scrape himself withal; and he sat down among the ashes. \nThen said his wife unto him, Dost thou still retain thine integrity? curse God, and die. \nBut he said unto her, Thou speakest as one of the foolish women speaketh. What? shall we receive good at the hand of God, and shall we not receive evil? In all this did not Job sin with his lips. \nNow when Job's three friends heard of all this evil that was come upon him, they came every one from his own place; Eliphaz the Temanite, and Bildad the Shuhite, and Zophar the Naamathite: for they had made an appointment together to come to mourn with him and to comfort him. \nAnd when they lifted up their eyes afar off, and knew him not, they lifted up their voice, and wept; and they rent every one his mantle, and sprinkled dust upon their heads toward heaven. \nSo they sat down with him upon the ground seven days and seven nights, and none spake a word unto him: for they saw that his grief was very great. \nAfter this opened Job his mouth, and cursed his day. \nAnd Job spake, and said, \nLet the day perish wherein I was born, and the night in which it was said, There is a man child conceived. \nLet that day be darkness; let not God regard it from above, neither let the light shine upon it. \nLet darkness and the shadow of death stain it; let a cloud dwell upon it; let the blackness of the day terrify it. \nAs for that night, let darkness seize upon it; let it not be joined unto the days of the year, let it not come into the number of the months. \nLo, let that night be solitary, let no joyful voice come therein. \nLet them curse it that curse the day, who are ready to raise up their mourning. \nLet the stars of the twilight thereof be dark; let it look for light, but have none; neither let it see the dawning of the day: \nBecause it shut not up the doors of my mother's womb, nor hid sorrow from mine eyes. \nWhy died I not from the womb? why did I not give up the ghost when I came out of the belly? \nWhy did the knees prevent me? or why the breasts that I should suck? \nFor now should I have lain still and been quiet, I should have slept: then had I been at rest, \nWith kings and counsellors of the earth, which build desolate places for themselves; \nOr with princes that had gold, who filled their houses with silver: \nOr as an hidden untimely birth I had not been; as infants which never saw light. \nThere the wicked cease from troubling; and there the weary be at rest. \nThere the prisoners rest together; they hear not the voice of the oppressor. \nThe small and great are there; and the servant is free from his master. \nWherefore is light given to him that is in misery, and life unto the bitter in soul; \nWhich long for death, but it cometh not; and dig for it more than for hid treasures; \nWhich rejoice exceedingly, and are glad, when they can find the grave? \nWhy is light given to a man whose way is hid, and whom God hath hedged in? \nFor my sighing cometh before I eat, and my roarings are poured out like the waters. \nFor the thing which I greatly feared is come upon me, and that which I was afraid of is come unto me. \nI was not in safety, neither had I rest, neither was I quiet; yet trouble came. \nThen Eliphaz the Temanite answered and said, \nIf we assay to commune with thee, wilt thou be grieved? but who can withhold himself from speaking? \nBehold, thou hast instructed many, and thou hast strengthened the weak hands. \nThy words have upholden him that was falling, and thou hast strengthened the feeble knees. \nBut now it is come upon thee, and thou faintest; it toucheth thee, and thou art troubled. \nIs not this thy fear, thy confidence, thy hope, and the uprightness of thy ways? \nRemember, I pray thee, who ever perished, being innocent? or where were the righteous cut off? \nEven as I have seen, they that plow iniquity, and sow wickedness, reap the same. \nBy the blast of God they perish, and by the breath of his nostrils are they consumed. \nThe roaring of the lion, and the voice of the fierce lion, and the teeth of the young lions, are broken. \nThe old lion perisheth for lack of prey, and the stout lion's whelps are scattered abroad. \nNow a thing was secretly brought to me, and mine ear received a little thereof. \nIn thoughts from the visions of the night, when deep sleep falleth on men, \nFear came upon me, and trembling, which made all my bones to shake. \nThen a spirit passed before my face; the hair of my flesh stood up: \nIt stood still, but I could not discern the form thereof: an image was before mine eyes, there was silence, and I heard a voice, saying, \nShall mortal man be more just than God? shall a man be more pure than his maker? \nBehold, he put no trust in his servants; and his angels he charged with folly: \nHow much less in them that dwell in houses of clay, whose foundation is in the dust, which are crushed before the moth? \nThey are destroyed from morning to evening: they perish for ever without any regarding it. \nDoth not their excellency which is in them go away? they die, even without wisdom. \nCall now, if there be any that will answer thee; and to which of the saints wilt thou turn? \nFor wrath killeth the foolish man, and envy slayeth the silly one. \nI have seen the foolish taking root: but suddenly I cursed his habitation. \nHis children are far from safety, and they are crushed in the gate, neither is there any to deliver them. \nWhose harvest the hungry eateth up, and taketh it even out of the thorns, and the robber swalloweth up their substance. \nAlthough affliction cometh not forth of the dust, neither doth trouble spring out of the ground; \nYet man is born unto trouble, as the sparks fly upward. \nI would seek unto God, and unto God would I commit my cause: \nWhich doeth great things and unsearchable; marvellous things without number: \nWho giveth rain upon the earth, and sendeth waters upon the fields: \nTo set up on high those that be low; that those which mourn may be exalted to safety. \nHe disappointeth the devices of the crafty, so that their hands cannot perform their enterprise. \nHe taketh the wise in their own craftiness: and the counsel of the froward is carried headlong. \nThey meet with darkness in the day time, and grope in the noonday as in the night. \nBut he saveth the poor from the sword, from their mouth, and from the hand of the mighty. \nSo the poor hath hope, and iniquity stoppeth her mouth. \nBehold, happy is the man whom God correcteth: therefore despise not thou the chastening of the Almighty: \nFor he maketh sore, and bindeth up: he woundeth, and his hands make whole. \nHe shall deliver thee in six troubles: yea, in seven there shall no evil touch thee. \nIn famine he shall redeem thee from death: and in war from the power of the sword. \nThou shalt be hid from the scourge of the tongue: neither shalt thou be afraid of destruction when it cometh. \nAt destruction and famine thou shalt laugh: neither shalt thou be afraid of the beasts of the earth. \nFor thou shalt be in league with the stones of the field: and the beasts of the field shall be at peace with thee. \nAnd thou shalt know that thy tabernacle shall be in peace; and thou shalt visit thy habitation, and shalt not sin. \nThou shalt know also that thy seed shall be great, and thine offspring as the grass of the earth. \nThou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season. \nLo this, we have searched it, so it is; hear it, and know thou it for thy good. \nBut Job answered and said, \nOh that my grief were throughly weighed, and my calamity laid in the balances together! \nFor now it would be heavier than the sand of the sea: therefore my words are swallowed up. \nFor the arrows of the Almighty are within me, the poison whereof drinketh up my spirit: the terrors of God do set themselves in array against me. \nDoth the wild ass bray when he hath grass? or loweth the ox over his fodder? \nCan that which is unsavoury be eaten without salt? or is there any taste in the white of an egg? \nThe things that my soul refused to touch are as my sorrowful meat. \nOh that I might have my request; and that God would grant me the thing that I long for! \nEven that it would please God to destroy me; that he would let loose his hand, and cut me off! \nThen should I yet have comfort; yea, I would harden myself in sorrow: let him not spare; for I have not concealed the words of the Holy One. \nWhat is my strength, that I should hope? and what is mine end, that I should prolong my life? \nIs my strength the strength of stones? or is my flesh of brass? \nIs not my help in me? and is wisdom driven quite from me? \nTo him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty. \nMy brethren have dealt deceitfully as a brook, and as the stream of brooks they pass away; \nWhich are blackish by reason of the ice, and wherein the snow is hid: \nWhat time they wax warm, they vanish: when it is hot, they are consumed out of their place. \nThe paths of their way are turned aside; they go to nothing, and perish. \nThe troops of Tema looked, the companies of Sheba waited for them. \nThey were confounded because they had hoped; they came thither, and were ashamed. \nFor now ye are nothing; ye see my casting down, and are afraid. \nDid I say, Bring unto me? or, Give a reward for me of your substance? \nOr, Deliver me from the enemy's hand? or, Redeem me from the hand of the mighty? \nTeach me, and I will hold my tongue: and cause me to understand wherein I have erred. \nHow forcible are right words! but what doth your arguing reprove? \nDo ye imagine to reprove words, and the speeches of one that is desperate, which are as wind? \nYea, ye overwhelm the fatherless, and ye dig a pit for your friend. \nNow therefore be content, look upon me; for it is evident unto you if I lie. \nReturn, I pray you, let it not be iniquity; yea, return again, my righteousness is in it. \nIs there iniquity in my tongue? cannot my taste discern perverse things? \nIs there not an appointed time to man upon earth? are not his days also like the days of an hireling? \nAs a servant earnestly desireth the shadow, and as an hireling looketh for the reward of his work: \nSo am I made to possess months of vanity, and wearisome nights are appointed to me. \nWhen I lie down, I say, When shall I arise, and the night be gone? and I am full of tossings to and fro unto the dawning of the day. \nMy flesh is clothed with worms and clods of dust; my skin is broken, and become loathsome. \nMy days are swifter than a weaver's shuttle, and are spent without hope. \nO remember that my life is wind: mine eye shall no more see good. \nThe eye of him that hath seen me shall see me no more: thine eyes are upon me, and I am not. \nAs the cloud is consumed and vanisheth away: so he that goeth down to the grave shall come up no more. \nHe shall return no more to his house, neither shall his place know him any more. \nTherefore I will not refrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul. \nAm I a sea, or a whale, that thou settest a watch over me? \nWhen I say, My bed shall comfort me, my couch shall ease my complaints; \nThen thou scarest me with dreams, and terrifiest me through visions: \nSo that my soul chooseth strangling, and death rather than my life. \nI loathe it; I would not live alway: let me alone; for my days are vanity. \nWhat is man, that thou shouldest magnify him? and that thou shouldest set thine heart upon him? \nAnd that thou shouldest visit him every morning, and try him every moment? \nHow long wilt thou not depart from me, nor let me alone till I swallow down my spittle? \nI have sinned; what shall I do unto thee, O thou preserver of men? why hast thou set me as a mark against thee, so that I am a burden to myself? \nAnd why dost thou not pardon my transgression, and take away my iniquity? for now shall I sleep in the dust; and thou shalt seek me in the morning, but I shall not be. \nThen answered Bildad the Shuhite, and said, \nHow long wilt thou speak these things? and how long shall the words of thy mouth be like a strong wind? \nDoth God pervert judgment? or doth the Almighty pervert justice? \nIf thy children have sinned against him, and he have cast them away for their transgression; \nIf thou wouldest seek unto God betimes, and make thy supplication to the Almighty; \nIf thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous. \nThough thy beginning was small, yet thy latter end should greatly increase. \nFor enquire, I pray thee, of the former age, and prepare thyself to the search of their fathers: \n(For we are but of yesterday, and know nothing, because our days upon earth are a shadow:) \nShall not they teach thee, and tell thee, and utter words out of their heart? \nCan the rush grow up without mire? can the flag grow without water? \nWhilst it is yet in his greenness, and not cut down, it withereth before any other herb. \nSo are the paths of all that forget God; and the hypocrite's hope shall perish: \nWhose hope shall be cut off, and whose trust shall be a spider's web. \nHe shall lean upon his house, but it shall not stand: he shall hold it fast, but it shall not endure. \nHe is green before the sun, and his branch shooteth forth in his garden. \nHis roots are wrapped about the heap, and seeth the place of stones. \nIf he destroy him from his place, then it shall deny him, saying, I have not seen thee. \nBehold, this is the joy of his way, and out of the earth shall others grow. \nBehold, God will not cast away a perfect man, neither will he help the evil doers: \nTill he fill thy mouth with laughing, and thy lips with rejoicing. \nThey that hate thee shall be clothed with shame; and the dwelling place of the wicked shall come to nought. \nThen Job answered and said, \nI know it is so of a truth: but how should man be just with God? \nIf he will contend with him, he cannot answer him one of a thousand. \nHe is wise in heart, and mighty in strength: who hath hardened himself against him, and hath prospered? \nWhich removeth the mountains, and they know not: which overturneth them in his anger. \nWhich shaketh the earth out of her place, and the pillars thereof tremble. \nWhich commandeth the sun, and it riseth not; and sealeth up the stars. \nWhich alone spreadeth out the heavens, and treadeth upon the waves of the sea. \nWhich maketh Arcturus, Orion, and Pleiades, and the chambers of the south. \nWhich doeth great things past finding out; yea, and wonders without number. \nLo, he goeth by me, and I see him not: he passeth on also, but I perceive him not. \nBehold, he taketh away, who can hinder him? who will say unto him, What doest thou? \nIf God will not withdraw his anger, the proud helpers do stoop under him. \nHow much less shall I answer him, and choose out my words to reason with him? \nWhom, though I were righteous, yet would I not answer, but I would make supplication to my judge. \nIf I had called, and he had answered me; yet would I not believe that he had hearkened unto my voice. \nFor he breaketh me with a tempest, and multiplieth my wounds without cause. \nHe will not suffer me to take my breath, but filleth me with bitterness. \nIf I speak of strength, lo, he is strong: and if of judgment, who shall set me a time to plead? \nIf I justify myself, mine own mouth shall condemn me: if I say, I am perfect, it shall also prove me perverse. \nThough I were perfect, yet would I not know my soul: I would despise my life. \nThis is one thing, therefore I said it, He destroyeth the perfect and the wicked. \nIf the scourge slay suddenly, he will laugh at the trial of the innocent. \nThe earth is given into the hand of the wicked: he covereth the faces of the judges thereof; if not, where, and who is he? \nNow my days are swifter than a post: they flee away, they see no good. \nThey are passed away as the swift ships: as the eagle that hasteth to the prey. \nIf I say, I will forget my complaint, I will leave off my heaviness, and comfort myself: \nI am afraid of all my sorrows, I know that thou wilt not hold me innocent. \nIf I be wicked, why then labour I in vain? \nIf I wash myself with snow water, and make my hands never so clean; \nYet shalt thou plunge me in the ditch, and mine own clothes shall abhor me. \nFor he is not a man, as I am, that I should answer him, and we should come together in judgment. \nNeither is there any daysman betwixt us, that might lay his hand upon us both. \nLet him take his rod away from me, and let not his fear terrify me: \nThen would I speak, and not fear him; but it is not so with me. \nMy soul is weary of my life; I will leave my complaint upon myself; I will speak in the bitterness of my soul. \nI will say unto God, Do not condemn me; shew me wherefore thou contendest with me. \nIs it good unto thee that thou shouldest oppress, that thou shouldest despise the work of thine hands, and shine upon the counsel of the wicked? \nHast thou eyes of flesh? or seest thou as man seeth? \nAre thy days as the days of man? are thy years as man's days, \nThat thou enquirest after mine iniquity, and searchest after my sin? \nThou knowest that I am not wicked; and there is none that can deliver out of thine hand. \nThine hands have made me and fashioned me together round about; yet thou dost destroy me. \nRemember, I beseech thee, that thou hast made me as the clay; and wilt thou bring me into dust again? \nHast thou not poured me out as milk, and curdled me like cheese? \nThou hast clothed me with skin and flesh, and hast fenced me with bones and sinews. \nThou hast granted me life and favour, and thy visitation hath preserved my spirit. \nAnd these things hast thou hid in thine heart: I know that this is with thee. \nIf I sin, then thou markest me, and thou wilt not acquit me from mine iniquity. \nIf I be wicked, woe unto me; and if I be righteous, yet will I not lift up my head. I am full of confusion; therefore see thou mine affliction; \nFor it increaseth. Thou huntest me as a fierce lion: and again thou shewest thyself marvellous upon me. \nThou renewest thy witnesses against me, and increasest thine indignation upon me; changes and war are against me. \nWherefore then hast thou brought me forth out of the womb? Oh that I had given up the ghost, and no eye had seen me! \nI should have been as though I had not been; I should have been carried from the womb to the grave. \nAre not my days few? cease then, and let me alone, that I may take comfort a little, \nBefore I go whence I shall not return, even to the land of darkness and the shadow of death; \nA land of darkness, as darkness itself; and of the shadow of death, without any order, and where the light is as darkness. \nThen answered Zophar the Naamathite, and said, \nShould not the multitude of words be answered? and should a man full of talk be justified? \nShould thy lies make men hold their peace? and when thou mockest, shall no man make thee ashamed? \nFor thou hast said, My doctrine is pure, and I am clean in thine eyes. \nBut oh that God would speak, and open his lips against thee; \nAnd that he would shew thee the secrets of wisdom, that they are double to that which is! Know therefore that God exacteth of thee less than thine iniquity deserveth. \nCanst thou by searching find out God? canst thou find out the Almighty unto perfection? \nIt is as high as heaven; what canst thou do? deeper than hell; what canst thou know? \nThe measure thereof is longer than the earth, and broader than the sea. \nIf he cut off, and shut up, or gather together, then who can hinder him? \nFor he knoweth vain men: he seeth wickedness also; will he not then consider it? \nFor vain men would be wise, though man be born like a wild ass's colt. \nIf thou prepare thine heart, and stretch out thine hands toward him; \nIf iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles. \nFor then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear: \nBecause thou shalt forget thy misery, and remember it as waters that pass away: \nAnd thine age shall be clearer than the noonday: thou shalt shine forth, thou shalt be as the morning. \nAnd thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety. \nAlso thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee. \nBut the eyes of the wicked shall fail, and they shall not escape, and their hope shall be as the giving up of the ghost. \nAnd Job answered and said, \nNo doubt but ye are the people, and wisdom shall die with you. \nBut I have understanding as well as you; I am not inferior to you: yea, who knoweth not such things as these? \nI am as one mocked of his neighbour, who calleth upon God, and he answereth him: the just upright man is laughed to scorn. \nHe that is ready to slip with his feet is as a lamp despised in the thought of him that is at ease. \nThe tabernacles of robbers prosper, and they that provoke God are secure; into whose hand God bringeth abundantly. \nBut ask now the beasts, and they shall teach thee; and the fowls of the air, and they shall tell thee: \nOr speak to the earth, and it shall teach thee: and the fishes of the sea shall declare unto thee. \nWho knoweth not in all these that the hand of the LORD hath wrought this? \nIn whose hand is the soul of every living thing, and the breath of all mankind. \nDoth not the ear try words? and the mouth taste his meat? \nWith the ancient is wisdom; and in length of days understanding. \nWith him is wisdom and strength, he hath counsel and understanding. \nBehold, he breaketh down, and it cannot be built again: he shutteth up a man, and there can be no opening. \nBehold, he withholdeth the waters, and they dry up: also he sendeth them out, and they overturn the earth. \nWith him is strength and wisdom: the deceived and the deceiver are his. \nHe leadeth counsellors away spoiled, and maketh the judges fools. \nHe looseth the bond of kings, and girdeth their loins with a girdle. \nHe leadeth princes away spoiled, and overthroweth the mighty. \nHe removeth away the speech of the trusty, and taketh away the understanding of the aged. \nHe poureth contempt upon princes, and weakeneth the strength of the mighty. \nHe discovereth deep things out of darkness, and bringeth out to light the shadow of death. \nHe increaseth the nations, and destroyeth them: he enlargeth the nations, and straiteneth them again. \nHe taketh away the heart of the chief of the people of the earth, and causeth them to wander in a wilderness where there is no way. \nThey grope in the dark without light, and he maketh them to stagger like a drunken man. \nLo, mine eye hath seen all this, mine ear hath heard and understood it. \nWhat ye know, the same do I know also: I am not inferior unto you. \nSurely I would speak to the Almighty, and I desire to reason with God. \nBut ye are forgers of lies, ye are all physicians of no value. \nO that ye would altogether hold your peace! and it should be your wisdom. \nHear now my reasoning, and hearken to the pleadings of my lips. \nWill ye speak wickedly for God? and talk deceitfully for him? \nWill ye accept his person? will ye contend for God? \nIs it good that he should search you out? or as one man mocketh another, do ye so mock him? \nHe will surely reprove you, if ye do secretly accept persons. \nShall not his excellency make you afraid? and his dread fall upon you? \nYour remembrances are like unto ashes, your bodies to bodies of clay. \nHold your peace, let me alone, that I may speak, and let come on me what will. \nWherefore do I take my flesh in my teeth, and put my life in mine hand? \nThough he slay me, yet will I trust in him: but I will maintain mine own ways before him. \nHe also shall be my salvation: for an hypocrite shall not come before him. \nHear diligently my speech, and my declaration with your ears. \nBehold now, I have ordered my cause; I know that I shall be justified. \nWho is he that will plead with me? for now, if I hold my tongue, I shall give up the ghost. \nOnly do not two things unto me: then will I not hide myself from thee. \nWithdraw thine hand far from me: and let not thy dread make me afraid. \nThen call thou, and I will answer: or let me speak, and answer thou me. \nHow many are mine iniquities and sins? make me to know my transgression and my sin. \nWherefore hidest thou thy face, and holdest me for thine enemy? \nWilt thou break a leaf driven to and fro? and wilt thou pursue the dry stubble? \nFor thou writest bitter things against me, and makest me to possess the iniquities of my youth. \nThou puttest my feet also in the stocks, and lookest narrowly unto all my paths; thou settest a print upon the heels of my feet. \nAnd he, as a rotten thing, consumeth, as a garment that is moth eaten. \nMan that is born of a woman is of few days and full of trouble. \nHe cometh forth like a flower, and is cut down: he fleeth also as a shadow, and continueth not. \nAnd doth thou open thine eyes upon such an one, and bringest me into judgment with thee? \nWho can bring a clean thing out of an unclean? not one. \nSeeing his days are determined, the number of his months are with thee, thou hast appointed his bounds that he cannot pass; \nTurn from him, that he may rest, till he shall accomplish, as an hireling, his day. \nFor there is hope of a tree, if it be cut down, that it will sprout again, and that the tender branch thereof will not cease. \nThough the root thereof wax old in the earth, and the stock thereof die in the ground; \nYet through the scent of water it will bud, and bring forth boughs like a plant. \nBut man dieth, and wasteth away: yea, man giveth up the ghost, and where is he? \nAs the waters fail from the sea, and the flood decayeth and drieth up: \nSo man lieth down, and riseth not: till the heavens be no more, they shall not awake, nor be raised out of their sleep. \nO that thou wouldest hide me in the grave, that thou wouldest keep me secret, until thy wrath be past, that thou wouldest appoint me a set time, and remember me! \nIf a man die, shall he live again? all the days of my appointed time will I wait, till my change come. \nThou shalt call, and I will answer thee: thou wilt have a desire to the work of thine hands. \nFor now thou numberest my steps: dost thou not watch over my sin? \nMy transgression is sealed up in a bag, and thou sewest up mine iniquity. \nAnd surely the mountains falling cometh to nought, and the rock is removed out of his place. \nThe waters wear the stones: thou washest away the things which grow out of the dust of the earth; and thou destroyest the hope of man. \nThou prevailest for ever against him, and he passeth: thou changest his countenance, and sendest him away. \nHis sons come to honour, and he knoweth it not; and they are brought low, but he perceiveth it not of them. \nBut his flesh upon him shall have pain, and his soul within him shall mourn. \nThen answered Eliphaz the Temanite, and said, \nShould a wise man utter vain knowledge, and fill his belly with the east wind? \nShould he reason with unprofitable talk? or with speeches wherewith he can do no good? \nYea, thou castest off fear, and restrainest prayer before God. \nFor thy mouth uttereth thine iniquity, and thou choosest the tongue of the crafty. \nThine own mouth condemneth thee, and not I: yea, thine own lips testify against thee. \nArt thou the first man that was born? or wast thou made before the hills? \nHast thou heard the secret of God? and dost thou restrain wisdom to thyself? \nWhat knowest thou, that we know not? what understandest thou, which is not in us? \nWith us are both the grayheaded and very aged men, much elder than thy father. \nAre the consolations of God small with thee? is there any secret thing with thee? \nWhy doth thine heart carry thee away? and what do thy eyes wink at, \nThat thou turnest thy spirit against God, and lettest such words go out of thy mouth? \nWhat is man, that he should be clean? and he which is born of a woman, that he should be righteous? \nBehold, he putteth no trust in his saints; yea, the heavens are not clean in his sight. \nHow much more abominable and filthy is man, which drinketh iniquity like water? \nI will shew thee, hear me; and that which I have seen I will declare; \nWhich wise men have told from their fathers, and have not hid it: \nUnto whom alone the earth was given, and no stranger passed among them. \nThe wicked man travaileth with pain all his days, and the number of years is hidden to the oppressor. \nA dreadful sound is in his ears: in prosperity the destroyer shall come upon him. \nHe believeth not that he shall return out of darkness, and he is waited for of the sword. \nHe wandereth abroad for bread, saying, Where is it? he knoweth that the day of darkness is ready at his hand. \nTrouble and anguish shall make him afraid; they shall prevail against him, as a king ready to the battle. \nFor he stretcheth out his hand against God, and strengtheneth himself against the Almighty. \nHe runneth upon him, even on his neck, upon the thick bosses of his bucklers: \nBecause he covereth his face with his fatness, and maketh collops of fat on his flanks. \nAnd he dwelleth in desolate cities, and in houses which no man inhabiteth, which are ready to become heaps. \nHe shall not be rich, neither shall his substance continue, neither shall he prolong the perfection thereof upon the earth. \nHe shall not depart out of darkness; the flame shall dry up his branches, and by the breath of his mouth shall he go away. \nLet not him that is deceived trust in vanity: for vanity shall be his recompence. \nIt shall be accomplished before his time, and his branch shall not be green. \nHe shall shake off his unripe grape as the vine, and shall cast off his flower as the olive. \nFor the congregation of hypocrites shall be desolate, and fire shall consume the tabernacles of bribery. \nThey conceive mischief, and bring forth vanity, and their belly prepareth deceit. \nThen Job answered and said, \nI have heard many such things: miserable comforters are ye all. \nShall vain words have an end? or what emboldeneth thee that thou answerest? \nI also could speak as ye do: if your soul were in my soul's stead, I could heap up words against you, and shake mine head at you. \nBut I would strengthen you with my mouth, and the moving of my lips should asswage your grief. \nThough I speak, my grief is not asswaged: and though I forbear, what am I eased? \nBut now he hath made me weary: thou hast made desolate all my company. \nAnd thou hast filled me with wrinkles, which is a witness against me: and my leanness rising up in me beareth witness to my face. \nHe teareth me in his wrath, who hateth me: he gnasheth upon me with his teeth; mine enemy sharpeneth his eyes upon me. \nThey have gaped upon me with their mouth; they have smitten me upon the cheek reproachfully; they have gathered themselves together against me. \nGod hath delivered me to the ungodly, and turned me over into the hands of the wicked. \nI was at ease, but he hath broken me asunder: he hath also taken me by my neck, and shaken me to pieces, and set me up for his mark. \nHis archers compass me round about, he cleaveth my reins asunder, and doth not spare; he poureth out my gall upon the ground. \nHe breaketh me with breach upon breach, he runneth upon me like a giant. \nI have sewed sackcloth upon my skin, and defiled my horn in the dust. \nMy face is foul with weeping, and on my eyelids is the shadow of death; \nNot for any injustice in mine hands: also my prayer is pure. \nO earth, cover not thou my blood, and let my cry have no place. \nAlso now, behold, my witness is in heaven, and my record is on high. \nMy friends scorn me: but mine eye poureth out tears unto God. \nO that one might plead for a man with God, as a man pleadeth for his neighbour! \nWhen a few years are come, then I shall go the way whence I shall not return. \nMy breath is corrupt, my days are extinct, the graves are ready for me. \nAre there not mockers with me? and doth not mine eye continue in their provocation? \nLay down now, put me in a surety with thee; who is he that will strike hands with me? \nFor thou hast hid their heart from understanding: therefore shalt thou not exalt them. \nHe that speaketh flattery to his friends, even the eyes of his children shall fail. \nHe hath made me also a byword of the people; and aforetime I was as a tabret. \nMine eye also is dim by reason of sorrow, and all my members are as a shadow. \nUpright men shall be astonied at this, and the innocent shall stir up himself against the hypocrite. \nThe righteous also shall hold on his way, and he that hath clean hands shall be stronger and stronger. \nBut as for you all, do ye return, and come now: for I cannot find one wise man among you. \nMy days are past, my purposes are broken off, even the thoughts of my heart. \nThey change the night into day: the light is short because of darkness. \nIf I wait, the grave is mine house: I have made my bed in the darkness. \nI have said to corruption, Thou art my father: to the worm, Thou art my mother, and my sister. \nAnd where is now my hope? as for my hope, who shall see it? \nThey shall go down to the bars of the pit, when our rest together is in the dust. \nThen answered Bildad the Shuhite, and said, \nHow long will it be ere ye make an end of words? mark, and afterwards we will speak. \nWherefore are we counted as beasts, and reputed vile in your sight? \nHe teareth himself in his anger: shall the earth be forsaken for thee? and shall the rock be removed out of his place? \nYea, the light of the wicked shall be put out, and the spark of his fire shall not shine. \nThe light shall be dark in his tabernacle, and his candle shall be put out with him. \nThe steps of his strength shall be straitened, and his own counsel shall cast him down. \nFor he is cast into a net by his own feet, and he walketh upon a snare. \nThe gin shall take him by the heel, and the robber shall prevail against him. \nThe snare is laid for him in the ground, and a trap for him in the way. \nTerrors shall make him afraid on every side, and shall drive him to his feet. \nHis strength shall be hungerbitten, and destruction shall be ready at his side. \nIt shall devour the strength of his skin: even the firstborn of death shall devour his strength. \nHis confidence shall be rooted out of his tabernacle, and it shall bring him to the king of terrors. \nIt shall dwell in his tabernacle, because it is none of his: brimstone shall be scattered upon his habitation. \nHis roots shall be dried up beneath, and above shall his branch be cut off. \nHis remembrance shall perish from the earth, and he shall have no name in the street. \nHe shall be driven from light into darkness, and chased out of the world. \nHe shall neither have son nor nephew among his people, nor any remaining in his dwellings. \nThey that come after him shall be astonied at his day, as they that went before were affrighted. \nSurely such are the dwellings of the wicked, and this is the place of him that knoweth not God. \nThen Job answered and said, \nHow long will ye vex my soul, and break me in pieces with words? \nThese ten times have ye reproached me: ye are not ashamed that ye make yourselves strange to me. \nAnd be it indeed that I have erred, mine error remaineth with myself. \nIf indeed ye will magnify yourselves against me, and plead against me my reproach: \nKnow now that God hath overthrown me, and hath compassed me with his net. \nBehold, I cry out of wrong, but I am not heard: I cry aloud, but there is no judgment. \nHe hath fenced up my way that I cannot pass, and he hath set darkness in my paths. \nHe hath stripped me of my glory, and taken the crown from my head. \nHe hath destroyed me on every side, and I am gone: and mine hope hath he removed like a tree. \nHe hath also kindled his wrath against me, and he counteth me unto him as one of his enemies. \nHis troops come together, and raise up their way against me, and encamp round about my tabernacle. \nHe hath put my brethren far from me, and mine acquaintance are verily estranged from me. \nMy kinsfolk have failed, and my familiar friends have forgotten me. \nThey that dwell in mine house, and my maids, count me for a stranger: I am an alien in their sight. \nI called my servant, and he gave me no answer; I intreated him with my mouth. \nMy breath is strange to my wife, though I intreated for the children's sake of mine own body. \nYea, young children despised me; I arose, and they spake against me. \nAll my inward friends abhorred me: and they whom I loved are turned against me. \nMy bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth. \nHave pity upon me, have pity upon me, O ye my friends; for the hand of God hath touched me. \nWhy do ye persecute me as God, and are not satisfied with my flesh? \nOh that my words were now written! oh that they were printed in a book! \nThat they were graven with an iron pen and lead in the rock for ever! \nFor I know that my redeemer liveth, and that he shall stand at the latter day upon the earth: \nAnd though after my skin worms destroy this body, yet in my flesh shall I see God: \nWhom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me. \nBut ye should say, Why persecute we him, seeing the root of the matter is found in me? \nBe ye afraid of the sword: for wrath bringeth the punishments of the sword, that ye may know there is a judgment. \nThen answered Zophar the Naamathite, and said, \nTherefore do my thoughts cause me to answer, and for this I make haste. \nI have heard the check of my reproach, and the spirit of my understanding causeth me to answer. \nKnowest thou not this of old, since man was placed upon earth, \nThat the triumphing of the wicked is short, and the joy of the hypocrite but for a moment? \nThough his excellency mount up to the heavens, and his head reach unto the clouds; \nYet he shall perish for ever like his own dung: they which have seen him shall say, Where is he? \nHe shall fly away as a dream, and shall not be found: yea, he shall be chased away as a vision of the night. \nThe eye also which saw him shall see him no more; neither shall his place any more behold him. \nHis children shall seek to please the poor, and his hands shall restore their goods. \nHis bones are full of the sin of his youth, which shall lie down with him in the dust. \nThough wickedness be sweet in his mouth, though he hide it under his tongue; \nThough he spare it, and forsake it not; but keep it still within his mouth: \nYet his meat in his bowels is turned, it is the gall of asps within him. \nHe hath swallowed down riches, and he shall vomit them up again: God shall cast them out of his belly. \nHe shall suck the poison of asps: the viper's tongue shall slay him. \nHe shall not see the rivers, the floods, the brooks of honey and butter. \nThat which he laboured for shall he restore, and shall not swallow it down: according to his substance shall the restitution be, and he shall not rejoice therein. \nBecause he hath oppressed and hath forsaken the poor; because he hath violently taken away an house which he builded not; \nSurely he shall not feel quietness in his belly, he shall not save of that which he desired. \nThere shall none of his meat be left; therefore shall no man look for his goods. \nIn the fulness of his sufficiency he shall be in straits: every hand of the wicked shall come upon him. \nWhen he is about to fill his belly, God shall cast the fury of his wrath upon him, and shall rain it upon him while he is eating. \nHe shall flee from the iron weapon, and the bow of steel shall strike him through. \nIt is drawn, and cometh out of the body; yea, the glittering sword cometh out of his gall: terrors are upon him. \nAll darkness shall be hid in his secret places: a fire not blown shall consume him; it shall go ill with him that is left in his tabernacle. \nThe heaven shall reveal his iniquity; and the earth shall rise up against him. \nThe increase of his house shall depart, and his goods shall flow away in the day of his wrath. \nThis is the portion of a wicked man from God, and the heritage appointed unto him by God. \nBut Job answered and said, \nHear diligently my speech, and let this be your consolations. \nSuffer me that I may speak; and after that I have spoken, mock on. \nAs for me, is my complaint to man? and if it were so, why should not my spirit be troubled? \nMark me, and be astonished, and lay your hand upon your mouth. \nEven when I remember I am afraid, and trembling taketh hold on my flesh. \nWherefore do the wicked live, become old, yea, are mighty in power? \nTheir seed is established in their sight with them, and their offspring before their eyes. \nTheir houses are safe from fear, neither is the rod of God upon them. \nTheir bull gendereth, and faileth not; their cow calveth, and casteth not her calf. \nThey send forth their little ones like a flock, and their children dance. \nThey take the timbrel and harp, and rejoice at the sound of the organ. \nThey spend their days in wealth, and in a moment go down to the grave. \nTherefore they say unto God, Depart from us; for we desire not the knowledge of thy ways. \nWhat is the Almighty, that we should serve him? and what profit should we have, if we pray unto him? \nLo, their good is not in their hand: the counsel of the wicked is far from me. \nHow oft is the candle of the wicked put out! and how oft cometh their destruction upon them! God distributeth sorrows in his anger. \nThey are as stubble before the wind, and as chaff that the storm carrieth away. \nGod layeth up his iniquity for his children: he rewardeth him, and he shall know it. \nHis eyes shall see his destruction, and he shall drink of the wrath of the Almighty. \nFor what pleasure hath he in his house after him, when the number of his months is cut off in the midst? \nShall any teach God knowledge? seeing he judgeth those that are high. \nOne dieth in his full strength, being wholly at ease and quiet. \nHis breasts are full of milk, and his bones are moistened with marrow. \nAnd another dieth in the bitterness of his soul, and never eateth with pleasure. \nThey shall lie down alike in the dust, and the worms shall cover them. \nBehold, I know your thoughts, and the devices which ye wrongfully imagine against me. \nFor ye say, Where is the house of the prince? and where are the dwelling places of the wicked? \nHave ye not asked them that go by the way? and do ye not know their tokens, \nThat the wicked is reserved to the day of destruction? they shall be brought forth to the day of wrath. \nWho shall declare his way to his face? and who shall repay him what he hath done? \nYet shall he be brought to the grave, and shall remain in the tomb. \nThe clods of the valley shall be sweet unto him, and every man shall draw after him, as there are innumerable before him. \nHow then comfort ye me in vain, seeing in your answers there remaineth falsehood? \nThen Eliphaz the Temanite answered and said, \nCan a man be profitable unto God, as he that is wise may be profitable unto himself? \nIs it any pleasure to the Almighty, that thou art righteous? or is it gain to him, that thou makest thy ways perfect? \nWill he reprove thee for fear of thee? will he enter with thee into judgment? \nIs not thy wickedness great? and thine iniquities infinite? \nFor thou hast taken a pledge from thy brother for nought, and stripped the naked of their clothing. \nThou hast not given water to the weary to drink, and thou hast withholden bread from the hungry. \nBut as for the mighty man, he had the earth; and the honourable man dwelt in it. \nThou hast sent widows away empty, and the arms of the fatherless have been broken. \nTherefore snares are round about thee, and sudden fear troubleth thee; \nOr darkness, that thou canst not see; and abundance of waters cover thee. \nIs not God in the height of heaven? and behold the height of the stars, how high they are! \nAnd thou sayest, How doth God know? can he judge through the dark cloud? \nThick clouds are a covering to him, that he seeth not; and he walketh in the circuit of heaven. \nHast thou marked the old way which wicked men have trodden? \nWhich were cut down out of time, whose foundation was overflown with a flood: \nWhich said unto God, Depart from us: and what can the Almighty do for them? \nYet he filled their houses with good things: but the counsel of the wicked is far from me. \nThe righteous see it, and are glad: and the innocent laugh them to scorn. \nWhereas our substance is not cut down, but the remnant of them the fire consumeth. \nAcquaint now thyself with him, and be at peace: thereby good shall come unto thee. \nReceive, I pray thee, the law from his mouth, and lay up his words in thine heart. \nIf thou return to the Almighty, thou shalt be built up, thou shalt put away iniquity far from thy tabernacles. \nThen shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks. \nYea, the Almighty shall be thy defence, and thou shalt have plenty of silver. \nFor then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God. \nThou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows. \nThou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways. \nWhen men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person. \nHe shall deliver the island of the innocent: and it is delivered by the pureness of thine hands. \nThen Job answered and said, \nEven to day is my complaint bitter: my stroke is heavier than my groaning. \nOh that I knew where I might find him! that I might come even to his seat! \nI would order my cause before him, and fill my mouth with arguments. \nI would know the words which he would answer me, and understand what he would say unto me. \nWill he plead against me with his great power? No; but he would put strength in me. \nThere the righteous might dispute with him; so should I be delivered for ever from my judge. \nBehold, I go forward, but he is not there; and backward, but I cannot perceive him: \nOn the left hand, where he doth work, but I cannot behold him: he hideth himself on the right hand, that I cannot see him: \nBut he knoweth the way that I take: when he hath tried me, I shall come forth as gold. \nMy foot hath held his steps, his way have I kept, and not declined. \nNeither have I gone back from the commandment of his lips; I have esteemed the words of his mouth more than my necessary food. \nBut he is in one mind, and who can turn him? and what his soul desireth, even that he doeth. \nFor he performeth the thing that is appointed for me: and many such things are with him. \nTherefore am I troubled at his presence: when I consider, I am afraid of him. \nFor God maketh my heart soft, and the Almighty troubleth me: \nBecause I was not cut off before the darkness, neither hath he covered the darkness from my face. \nWhy, seeing times are not hidden from the Almighty, do they that know him not see his days? \nSome remove the landmarks; they violently take away flocks, and feed thereof. \nThey drive away the ass of the fatherless, they take the widow's ox for a pledge. \nThey turn the needy out of the way: the poor of the earth hide themselves together. \nBehold, as wild asses in the desert, go they forth to their work; rising betimes for a prey: the wilderness yieldeth food for them and for their children. \nThey reap every one his corn in the field: and they gather the vintage of the wicked. \nThey cause the naked to lodge without clothing, that they have no covering in the cold. \nThey are wet with the showers of the mountains, and embrace the rock for want of a shelter. \nThey pluck the fatherless from the breast, and take a pledge of the poor. \nThey cause him to go naked without clothing, and they take away the sheaf from the hungry; \nWhich make oil within their walls, and tread their winepresses, and suffer thirst. \nMen groan from out of the city, and the soul of the wounded crieth out: yet God layeth not folly to them. \nThey are of those that rebel against the light; they know not the ways thereof, nor abide in the paths thereof. \nThe murderer rising with the light killeth the poor and needy, and in the night is as a thief. \nThe eye also of the adulterer waiteth for the twilight, saying, No eye shall see me: and disguiseth his face. \nIn the dark they dig through houses, which they had marked for themselves in the daytime: they know not the light. \nFor the morning is to them even as the shadow of death: if one know them, they are in the terrors of the shadow of death. \nHe is swift as the waters; their portion is cursed in the earth: he beholdeth not the way of the vineyards. \nDrought and heat consume the snow waters: so doth the grave those which have sinned. \nThe womb shall forget him; the worm shall feed sweetly on him; he shall be no more remembered; and wickedness shall be broken as a tree. \nHe evil entreateth the barren that beareth not: and doeth not good to the widow. \nHe draweth also the mighty with his power: he riseth up, and no man is sure of life. \nThough it be given him to be in safety, whereon he resteth; yet his eyes are upon their ways. \nThey are exalted for a little while, but are gone and brought low; they are taken out of the way as all other, and cut off as the tops of the ears of corn. \nAnd if it be not so now, who will make me a liar, and make my speech nothing worth? \nThen answered Bildad the Shuhite, and said, \nDominion and fear are with him, he maketh peace in his high places. \nIs there any number of his armies? and upon whom doth not his light arise? \nHow then can man be justified with God? or how can he be clean that is born of a woman? \nBehold even to the moon, and it shineth not; yea, the stars are not pure in his sight. \nHow much less man, that is a worm? and the son of man, which is a worm? \nBut Job answered and said, \nHow hast thou helped him that is without power? how savest thou the arm that hath no strength? \nHow hast thou counselled him that hath no wisdom? and how hast thou plentifully declared the thing as it is? \nTo whom hast thou uttered words? and whose spirit came from thee? \nDead things are formed from under the waters, and the inhabitants thereof. \nHell is naked before him, and destruction hath no covering. \nHe stretcheth out the north over the empty place, and hangeth the earth upon nothing. \nHe bindeth up the waters in his thick clouds; and the cloud is not rent under them. \nHe holdeth back the face of his throne, and spreadeth his cloud upon it. \nHe hath compassed the waters with bounds, until the day and night come to an end. \nThe pillars of heaven tremble and are astonished at his reproof. \nHe divideth the sea with his power, and by his understanding he smiteth through the proud. \nBy his spirit he hath garnished the heavens; his hand hath formed the crooked serpent. \nLo, these are parts of his ways: but how little a portion is heard of him? but the thunder of his power who can understand? \nMoreover Job continued his parable, and said, \nAs God liveth, who hath taken away my judgment; and the Almighty, who hath vexed my soul; \nAll the while my breath is in me, and the spirit of God is in my nostrils; \nMy lips shall not speak wickedness, nor my tongue utter deceit. \nGod forbid that I should justify you: till I die I will not remove mine integrity from me. \nMy righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live. \nLet mine enemy be as the wicked, and he that riseth up against me as the unrighteous. \nFor what is the hope of the hypocrite, though he hath gained, when God taketh away his soul? \nWill God hear his cry when trouble cometh upon him? \nWill he delight himself in the Almighty? will he always call upon God? \nI will teach you by the hand of God: that which is with the Almighty will I not conceal. \nBehold, all ye yourselves have seen it; why then are ye thus altogether vain? \nThis is the portion of a wicked man with God, and the heritage of oppressors, which they shall receive of the Almighty. \nIf his children be multiplied, it is for the sword: and his offspring shall not be satisfied with bread. \nThose that remain of him shall be buried in death: and his widows shall not weep. \nThough he heap up silver as the dust, and prepare raiment as the clay; \nHe may prepare it, but the just shall put it on, and the innocent shall divide the silver. \nHe buildeth his house as a moth, and as a booth that the keeper maketh. \nThe rich man shall lie down, but he shall not be gathered: he openeth his eyes, and he is not. \nTerrors take hold on him as waters, a tempest stealeth him away in the night. \nThe east wind carrieth him away, and he departeth: and as a storm hurleth him out of his place. \nFor God shall cast upon him, and not spare: he would fain flee out of his hand. \nMen shall clap their hands at him, and shall hiss him out of his place. \nSurely there is a vein for the silver, and a place for gold where they fine it. \nIron is taken out of the earth, and brass is molten out of the stone. \nHe setteth an end to darkness, and searcheth out all perfection: the stones of darkness, and the shadow of death. \nThe flood breaketh out from the inhabitant; even the waters forgotten of the foot: they are dried up, they are gone away from men. \nAs for the earth, out of it cometh bread: and under it is turned up as it were fire. \nThe stones of it are the place of sapphires: and it hath dust of gold. \nThere is a path which no fowl knoweth, and which the vulture's eye hath not seen: \nThe lion's whelps have not trodden it, nor the fierce lion passed by it. \nHe putteth forth his hand upon the rock; he overturneth the mountains by the roots. \nHe cutteth out rivers among the rocks; and his eye seeth every precious thing. \nHe bindeth the floods from overflowing; and the thing that is hid bringeth he forth to light. \nBut where shall wisdom be found? and where is the place of understanding? \nMan knoweth not the price thereof; neither is it found in the land of the living. \nThe depth saith, It is not in me: and the sea saith, It is not with me. \nIt cannot be gotten for gold, neither shall silver be weighed for the price thereof. \nIt cannot be valued with the gold of Ophir, with the precious onyx, or the sapphire. \nThe gold and the crystal cannot equal it: and the exchange of it shall not be for jewels of fine gold. \nNo mention shall be made of coral, or of pearls: for the price of wisdom is above rubies. \nThe topaz of Ethiopia shall not equal it, neither shall it be valued with pure gold. \nWhence then cometh wisdom? and where is the place of understanding? \nSeeing it is hid from the eyes of all living, and kept close from the fowls of the air. \nDestruction and death say, We have heard the fame thereof with our ears. \nGod understandeth the way thereof, and he knoweth the place thereof. \nFor he looketh to the ends of the earth, and seeth under the whole heaven; \nTo make the weight for the winds; and he weigheth the waters by measure. \nWhen he made a decree for the rain, and a way for the lightning of the thunder: \nThen did he see it, and declare it; he prepared it, yea, and searched it out. \nAnd unto man he said, Behold, the fear of the LORD, that is wisdom; and to depart from evil is understanding. \nMoreover Job continued his parable, and said, \nOh that I were as in months past, as in the days when God preserved me; \nWhen his candle shined upon my head, and when by his light I walked through darkness; \nAs I was in the days of my youth, when the secret of God was upon my tabernacle; \nWhen the Almighty was yet with me, when my children were about me; \nWhen I washed my steps with butter, and the rock poured me out rivers of oil; \nWhen I went out to the gate through the city, when I prepared my seat in the street! \nThe young men saw me, and hid themselves: and the aged arose, and stood up. \nThe princes refrained talking, and laid their hand on their mouth. \nThe nobles held their peace, and their tongue cleaved to the roof of their mouth. \nWhen the ear heard me, then it blessed me; and when the eye saw me, it gave witness to me: \nBecause I delivered the poor that cried, and the fatherless, and him that had none to help him. \nThe blessing of him that was ready to perish came upon me: and I caused the widow's heart to sing for joy. \nI put on righteousness, and it clothed me: my judgment was as a robe and a diadem. \nI was eyes to the blind, and feet was I to the lame. \nI was a father to the poor: and the cause which I knew not I searched out. \nAnd I brake the jaws of the wicked, and plucked the spoil out of his teeth. \nThen I said, I shall die in my nest, and I shall multiply my days as the sand. \nMy root was spread out by the waters, and the dew lay all night upon my branch. \nMy glory was fresh in me, and my bow was renewed in my hand. \nUnto me men gave ear, and waited, and kept silence at my counsel. \nAfter my words they spake not again; and my speech dropped upon them. \nAnd they waited for me as for the rain; and they opened their mouth wide as for the latter rain. \nIf I laughed on them, they believed it not; and the light of my countenance they cast not down. \nI chose out their way, and sat chief, and dwelt as a king in the army, as one that comforteth the mourners. \nBut now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock. \nYea, whereto might the strength of their hands profit me, in whom old age was perished? \nFor want and famine they were solitary; fleeing into the wilderness in former time desolate and waste. \nWho cut up mallows by the bushes, and juniper roots for their meat. \nThey were driven forth from among men, (they cried after them as after a thief;) \nTo dwell in the cliffs of the valleys, in caves of the earth, and in the rocks. \nAmong the bushes they brayed; under the nettles they were gathered together. \nThey were children of fools, yea, children of base men: they were viler than the earth. \nAnd now am I their song, yea, I am their byword. \nThey abhor me, they flee far from me, and spare not to spit in my face. \nBecause he hath loosed my cord, and afflicted me, they have also let loose the bridle before me. \nUpon my right hand rise the youth; they push away my feet, and they raise up against me the ways of their destruction. \nThey mar my path, they set forward my calamity, they have no helper. \nThey came upon me as a wide breaking in of waters: in the desolation they rolled themselves upon me. \nTerrors are turned upon me: they pursue my soul as the wind: and my welfare passeth away as a cloud. \nAnd now my soul is poured out upon me; the days of affliction have taken hold upon me. \nMy bones are pierced in me in the night season: and my sinews take no rest. \nBy the great force of my disease is my garment changed: it bindeth me about as the collar of my coat. \nHe hath cast me into the mire, and I am become like dust and ashes. \nI cry unto thee, and thou dost not hear me: I stand up, and thou regardest me not. \nThou art become cruel to me: with thy strong hand thou opposest thyself against me. \nThou liftest me up to the wind; thou causest me to ride upon it, and dissolvest my substance. \nFor I know that thou wilt bring me to death, and to the house appointed for all living. \nHowbeit he will not stretch out his hand to the grave, though they cry in his destruction. \nDid not I weep for him that was in trouble? was not my soul grieved for the poor? \nWhen I looked for good, then evil came unto me: and when I waited for light, there came darkness. \nMy bowels boiled, and rested not: the days of affliction prevented me. \nI went mourning without the sun: I stood up, and I cried in the congregation. \nI am a brother to dragons, and a companion to owls. \nMy skin is black upon me, and my bones are burned with heat. \nMy harp also is turned to mourning, and my organ into the voice of them that weep. \nI made a covenant with mine eyes; why then should I think upon a maid? \nFor what portion of God is there from above? and what inheritance of the Almighty from on high? \nIs not destruction to the wicked? and a strange punishment to the workers of iniquity? \nDoth not he see my ways, and count all my steps? \nIf I have walked with vanity, or if my foot hath hasted to deceit; \nLet me be weighed in an even balance that God may know mine integrity. \nIf my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands; \nThen let me sow, and let another eat; yea, let my offspring be rooted out. \nIf mine heart have been deceived by a woman, or if I have laid wait at my neighbour's door; \nThen let my wife grind unto another, and let others bow down upon her. \nFor this is an heinous crime; yea, it is an iniquity to be punished by the judges. \nFor it is a fire that consumeth to destruction, and would root out all mine increase. \nIf I did despise the cause of my manservant or of my maidservant, when they contended with me; \nWhat then shall I do when God riseth up? and when he visiteth, what shall I answer him? \nDid not he that made me in the womb make him? and did not one fashion us in the womb? \nIf I have withheld the poor from their desire, or have caused the eyes of the widow to fail; \nOr have eaten my morsel myself alone, and the fatherless hath not eaten thereof; \n(For from my youth he was brought up with me, as with a father, and I have guided her from my mother's womb;) \nIf I have seen any perish for want of clothing, or any poor without covering; \nIf his loins have not blessed me, and if he were not warmed with the fleece of my sheep; \nIf I have lifted up my hand against the fatherless, when I saw my help in the gate: \nThen let mine arm fall from my shoulder blade, and mine arm be broken from the bone. \nFor destruction from God was a terror to me, and by reason of his highness I could not endure. \nIf I have made gold my hope, or have said to the fine gold, Thou art my confidence; \nIf I rejoice because my wealth was great, and because mine hand had gotten much; \nIf I beheld the sun when it shined, or the moon walking in brightness; \nAnd my heart hath been secretly enticed, or my mouth hath kissed my hand: \nThis also were an iniquity to be punished by the judge: for I should have denied the God that is above. \nIf I rejoice at the destruction of him that hated me, or lifted up myself when evil found him: \nNeither have I suffered my mouth to sin by wishing a curse to his soul. \nIf the men of my tabernacle said not, Oh that we had of his flesh! we cannot be satisfied. \nThe stranger did not lodge in the street: but I opened my doors to the traveller. \nIf I covered my transgressions as Adam, by hiding mine iniquity in my bosom: \nDid I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door? \nOh that one would hear me! behold, my desire is, that the Almighty would answer me, and that mine adversary had written a book. \nSurely I would take it upon my shoulder, and bind it as a crown to me. \nI would declare unto him the number of my steps; as a prince would I go near unto him. \nIf my land cry against me, or that the furrows likewise thereof complain; \nIf I have eaten the fruits thereof without money, or have caused the owners thereof to lose their life: \nLet thistles grow instead of wheat, and cockle instead of barley. The words of Job are ended. \nSo these three men ceased to answer Job, because he was righteous in his own eyes. \nThen was kindled the wrath of Elihu the son of Barachel the Buzite, of the kindred of Ram: against Job was his wrath kindled, because he justified himself rather than God. \nAlso against his three friends was his wrath kindled, because they had found no answer, and yet had condemned Job. \nNow Elihu had waited till Job had spoken, because they were elder than he. \nWhen Elihu saw that there was no answer in the mouth of these three men, then his wrath was kindled. \nAnd Elihu the son of Barachel the Buzite answered and said, I am young, and ye are very old; wherefore I was afraid, and durst not shew you mine opinion. \nI said, Days should speak, and multitude of years should teach wisdom. \nBut there is a spirit in man: and the inspiration of the Almighty giveth them understanding. \nGreat men are not always wise: neither do the aged understand judgment. \nTherefore I said, Hearken to me; I also will shew mine opinion. \nBehold, I waited for your words; I gave ear to your reasons, whilst ye searched out what to say. \nYea, I attended unto you, and, behold, there was none of you that convinced Job, or that answered his words: \nLest ye should say, We have found out wisdom: God thrusteth him down, not man. \nNow he hath not directed his words against me: neither will I answer him with your speeches. \nThey were amazed, they answered no more: they left off speaking. \nWhen I had waited, (for they spake not, but stood still, and answered no more;) \nI said, I will answer also my part, I also will shew mine opinion. \nFor I am full of matter, the spirit within me constraineth me. \nBehold, my belly is as wine which hath no vent; it is ready to burst like new bottles. \nI will speak, that I may be refreshed: I will open my lips and answer. \nLet me not, I pray you, accept any man's person, neither let me give flattering titles unto man. \nFor I know not to give flattering titles; in so doing my maker would soon take me away. \nWherefore, Job, I pray thee, hear my speeches, and hearken to all my words. \nBehold, now I have opened my mouth, my tongue hath spoken in my mouth. \nMy words shall be of the uprightness of my heart: and my lips shall utter knowledge clearly. \nThe spirit of God hath made me, and the breath of the Almighty hath given me life. \nIf thou canst answer me, set thy words in order before me, stand up. \nBehold, I am according to thy wish in God's stead: I also am formed out of the clay. \nBehold, my terror shall not make thee afraid, neither shall my hand be heavy upon thee. \nSurely thou hast spoken in mine hearing, and I have heard the voice of thy words, saying, \nI am clean without transgression, I am innocent; neither is there iniquity in me. \nBehold, he findeth occasions against me, he counteth me for his enemy, \nHe putteth my feet in the stocks, he marketh all my paths. \nBehold, in this thou art not just: I will answer thee, that God is greater than man. \nWhy dost thou strive against him? for he giveth not account of any of his matters. \nFor God speaketh once, yea twice, yet man perceiveth it not. \nIn a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed; \nThen he openeth the ears of men, and sealeth their instruction, \nThat he may withdraw man from his purpose, and hide pride from man. \nHe keepeth back his soul from the pit, and his life from perishing by the sword. \nHe is chastened also with pain upon his bed, and the multitude of his bones with strong pain: \nSo that his life abhorreth bread, and his soul dainty meat. \nHis flesh is consumed away, that it cannot be seen; and his bones that were not seen stick out. \nYea, his soul draweth near unto the grave, and his life to the destroyers. \nIf there be a messenger with him, an interpreter, one among a thousand, to shew unto man his uprightness: \nThen he is gracious unto him, and saith, Deliver him from going down to the pit: I have found a ransom. \nHis flesh shall be fresher than a child's: he shall return to the days of his youth: \nHe shall pray unto God, and he will be favourable unto him: and he shall see his face with joy: for he will render unto man his righteousness. \nHe looketh upon men, and if any say, I have sinned, and perverted that which was right, and it profited me not; \nHe will deliver his soul from going into the pit, and his life shall see the light. \nLo, all these things worketh God oftentimes with man, \nTo bring back his soul from the pit, to be enlightened with the light of the living. \nMark well, O Job, hearken unto me: hold thy peace, and I will speak. \nIf thou hast anything to say, answer me: speak, for I desire to justify thee. \nIf not, hearken unto me: hold thy peace, and I shall teach thee wisdom. \nFurthermore Elihu answered and said, \nHear my words, O ye wise men; and give ear unto me, ye that have knowledge. \nFor the ear trieth words, as the mouth tasteth meat. \nLet us choose to us judgment: let us know among ourselves what is good. \nFor Job hath said, I am righteous: and God hath taken away my judgment. \nShould I lie against my right? my wound is incurable without transgression. \nWhat man is like Job, who drinketh up scorning like water? \nWhich goeth in company with the workers of iniquity, and walketh with wicked men. \nFor he hath said, It profiteth a man nothing that he should delight himself with God. \nTherefore hearken unto me ye men of understanding: far be it from God, that he should do wickedness; and from the Almighty, that he should commit iniquity. \nFor the work of a man shall he render unto him, and cause every man to find according to his ways. \nYea, surely God will not do wickedly, neither will the Almighty pervert judgment. \nWho hath given him a charge over the earth? or who hath disposed the whole world? \nIf he set his heart upon man, if he gather unto himself his spirit and his breath; \nAll flesh shall perish together, and man shall turn again unto dust. \nIf now thou hast understanding, hear this: hearken to the voice of my words. \nShall even he that hateth right govern? and wilt thou condemn him that is most just? \nIs it fit to say to a king, Thou art wicked? and to princes, Ye are ungodly? \nHow much less to him that accepteth not the persons of princes, nor regardeth the rich more than the poor? for they all are the work of his hands. \nIn a moment shall they die, and the people shall be troubled at midnight, and pass away: and the mighty shall be taken away without hand. \nFor his eyes are upon the ways of man, and he seeth all his goings. \nThere is no darkness, nor shadow of death, where the workers of iniquity may hide themselves. \nFor he will not lay upon man more than right; that he should enter into judgment with God. \nHe shall break in pieces mighty men without number, and set others in their stead. \nTherefore he knoweth their works, and he overturneth them in the night, so that they are destroyed. \nHe striketh them as wicked men in the open sight of others; \nBecause they turned back from him, and would not consider any of his ways: \nSo that they cause the cry of the poor to come unto him, and he heareth the cry of the afflicted. \nWhen he giveth quietness, who then can make trouble? and when he hideth his face, who then can behold him? whether it be done against a nation, or against a man only: \nThat the hypocrite reign not, lest the people be ensnared. \nSurely it is meet to be said unto God, I have borne chastisement, I will not offend any more: \nThat which I see not teach thou me: if I have done iniquity, I will do no more. \nShould it be according to thy mind? he will recompense it, whether thou refuse, or whether thou choose; and not I: therefore speak what thou knowest. \nLet men of understanding tell me, and let a wise man hearken unto me. \nJob hath spoken without knowledge, and his words were without wisdom. \nMy desire is that Job may be tried unto the end because of his answers for wicked men. \nFor he addeth rebellion unto his sin, he clappeth his hands among us, and multiplieth his words against God. \nElihu spake moreover, and said, \nThinkest thou this to be right, that thou saidst, My righteousness is more than God's? \nFor thou saidst, What advantage will it be unto thee? and, What profit shall I have, if I be cleansed from my sin? \nI will answer thee, and thy companions with thee. \nLook unto the heavens, and see; and behold the clouds which are higher than thou. \nIf thou sinnest, what doest thou against him? or if thy transgressions be multiplied, what doest thou unto him? \nIf thou be righteous, what givest thou him? or what receiveth he of thine hand? \nThy wickedness may hurt a man as thou art; and thy righteousness may profit the son of man. \nBy reason of the multitude of oppressions they make the oppressed to cry: they cry out by reason of the arm of the mighty. \nBut none saith, Where is God my maker, who giveth songs in the night; \nWho teacheth us more than the beasts of the earth, and maketh us wiser than the fowls of heaven? \nThere they cry, but none giveth answer, because of the pride of evil men. \nSurely God will not hear vanity, neither will the Almighty regard it. \nAlthough thou sayest thou shalt not see him, yet judgment is before him; therefore trust thou in him. \nBut now, because it is not so, he hath visited in his anger; yet he knoweth it not in great extremity: \nTherefore doth Job open his mouth in vain; he multiplieth words without knowledge. \nElihu also proceeded, and said, \nSuffer me a little, and I will shew thee that I have yet to speak on God's behalf. \nI will fetch my knowledge from afar, and will ascribe righteousness to my Maker. \nFor truly my words shall not be false: he that is perfect in knowledge is with thee. \nBehold, God is mighty, and despiseth not any: he is mighty in strength and wisdom. \nHe preserveth not the life of the wicked: but giveth right to the poor. \nHe withdraweth not his eyes from the righteous: but with kings are they on the throne; yea, he doth establish them for ever, and they are exalted. \nAnd if they be bound in fetters, and be holden in cords of affliction; \nThen he sheweth them their work, and their transgressions that they have exceeded. \nHe openeth also their ear to discipline, and commandeth that they return from iniquity. \nIf they obey and serve him, they shall spend their days in prosperity, and their years in pleasures. \nBut if they obey not, they shall perish by the sword, and they shall die without knowledge. \nBut the hypocrites in heart heap up wrath: they cry not when he bindeth them. \nThey die in youth, and their life is among the unclean. \nHe delivereth the poor in his affliction, and openeth their ears in oppression. \nEven so would he have removed thee out of the strait into a broad place, where there is no straitness; and that which should be set on thy table should be full of fatness. \nBut thou hast fulfilled the judgment of the wicked: judgment and justice take hold on thee. \nBecause there is wrath, beware lest he take thee away with his stroke: then a great ransom cannot deliver thee. \nWill he esteem thy riches? no, not gold, nor all the forces of strength. \nDesire not the night, when people are cut off in their place. \nTake heed, regard not iniquity: for this hast thou chosen rather than affliction. \nBehold, God exalteth by his power: who teacheth like him? \nWho hath enjoined him his way? or who can say, Thou hast wrought iniquity? \nRemember that thou magnify his work, which men behold. \nEvery man may see it; man may behold it afar off. \nBehold, God is great, and we know him not, neither can the number of his years be searched out. \nFor he maketh small the drops of water: they pour down rain according to the vapour thereof: \nWhich the clouds do drop and distil upon man abundantly. \nAlso can any understand the spreadings of the clouds, or the noise of his tabernacle? \nBehold, he spreadeth his light upon it, and covereth the bottom of the sea. \nFor by them judgeth he the people; he giveth meat in abundance. \nWith clouds he covereth the light; and commandeth it not to shine by the cloud that cometh betwixt. \nThe noise thereof sheweth concerning it, the cattle also concerning the vapour. \nAt this also my heart trembleth, and is moved out of his place. \nHear attentively the noise of his voice, and the sound that goeth out of his mouth. \nHe directeth it under the whole heaven, and his lightning unto the ends of the earth. \nAfter it a voice roareth: he thundereth with the voice of his excellency; and he will not stay them when his voice is heard. \nGod thundereth marvellously with his voice; great things doeth he, which we cannot comprehend. \nFor he saith to the snow, Be thou on the earth; likewise to the small rain, and to the great rain of his strength. \nHe sealeth up the hand of every man; that all men may know his work. \nThen the beasts go into dens, and remain in their places. \nOut of the south cometh the whirlwind: and cold out of the north. \nBy the breath of God frost is given: and the breadth of the waters is straitened. \nAlso by watering he wearieth the thick cloud: he scattereth his bright cloud: \nAnd it is turned round about by his counsels: that they may do whatsoever he commandeth them upon the face of the world in the earth. \nHe causeth it to come, whether for correction, or for his land, or for mercy. \nHearken unto this, O Job: stand still, and consider the wondrous works of God. \nDost thou know when God disposed them, and caused the light of his cloud to shine? \nDost thou know the balancings of the clouds, the wondrous works of him which is perfect in knowledge? \nHow thy garments are warm, when he quieteth the earth by the south wind? \nHast thou with him spread out the sky, which is strong, and as a molten looking glass? \nTeach us what we shall say unto him; for we cannot order our speech by reason of darkness. \nShall it be told him that I speak? if a man speak, surely he shall be swallowed up. \nAnd now men see not the bright light which is in the clouds: but the wind passeth, and cleanseth them. \nFair weather cometh out of the north: with God is terrible majesty. \nTouching the Almighty, we cannot find him out: he is excellent in power, and in judgment, and in plenty of justice: he will not afflict. \nMen do therefore fear him: he respecteth not any that are wise of heart. \nThen the LORD answered Job out of the whirlwind, and said, \nWho is this that darkeneth counsel by words without knowledge? \nGird up now thy loins like a man; for I will demand of thee, and answer thou me. \nWhere wast thou when I laid the foundations of the earth? declare, if thou hast understanding. \nWho hath laid the measures thereof, if thou knowest? or who hath stretched the line upon it? \nWhereupon are the foundations thereof fastened? or who laid the corner stone thereof; \nWhen the morning stars sang together, and all the sons of God shouted for joy? \nOr who shut up the sea with doors, when it brake forth, as if it had issued out of the womb? \nWhen I made the cloud the garment thereof, and thick darkness a swaddlingband for it, \nAnd brake up for it my decreed place, and set bars and doors, \nAnd said, Hitherto shalt thou come, but no further: and here shall thy proud waves be stayed? \nHast thou commanded the morning since thy days; and caused the dayspring to know his place; \nThat it might take hold of the ends of the earth, that the wicked might be shaken out of it? \nIt is turned as clay to the seal; and they stand as a garment. \nAnd from the wicked their light is withholden, and the high arm shall be broken. \nHast thou entered into the springs of the sea? or hast thou walked in the search of the depth? \nHave the gates of death been opened unto thee? or hast thou seen the doors of the shadow of death? \nHast thou perceived the breadth of the earth? declare if thou knowest it all. \nWhere is the way where light dwelleth? and as for darkness, where is the place thereof, \nThat thou shouldest take it to the bound thereof, and that thou shouldest know the paths to the house thereof? \nKnowest thou it, because thou wast then born? or because the number of thy days is great? \nHast thou entered into the treasures of the snow? or hast thou seen the treasures of the hail, \nWhich I have reserved against the time of trouble, against the day of battle and war? \nBy what way is the light parted, which scattereth the east wind upon the earth? \nWho hath divided a watercourse for the overflowing of waters, or a way for the lightning of thunder; \nTo cause it to rain on the earth, where no man is; on the wilderness, wherein there is no man; \nTo satisfy the desolate and waste ground; and to cause the bud of the tender herb to spring forth? \nHath the rain a father? or who hath begotten the drops of dew? \nOut of whose womb came the ice? and the hoary frost of heaven, who hath gendered it? \nThe waters are hid as with a stone, and the face of the deep is frozen. \nCanst thou bind the sweet influences of Pleiades, or loose the bands of Orion? \nCanst thou bring forth Mazzaroth in his season? or canst thou guide Arcturus with his sons? \nKnowest thou the ordinances of heaven? canst thou set the dominion thereof in the earth? \nCanst thou lift up thy voice to the clouds, that abundance of waters may cover thee? \nCanst thou send lightnings, that they may go and say unto thee, Here we are? \nWho hath put wisdom in the inward parts? or who hath given understanding to the heart? \nWho can number the clouds in wisdom? or who can stay the bottles of heaven, \nWhen the dust groweth into hardness, and the clods cleave fast together? \nWilt thou hunt the prey for the lion? or fill the appetite of the young lions, \nWhen they couch in their dens, and abide in the covert to lie in wait? \nWho provideth for the raven his food? when his young ones cry unto God, they wander for lack of meat. \nKnowest thou the time when the wild goats of the rock bring forth? or canst thou mark when the hinds do calve? \nCanst thou number the months that they fulfil? or knowest thou the time when they bring forth? \nThey bow themselves, they bring forth their young ones, they cast out their sorrows. \nTheir young ones are in good liking, they grow up with corn; they go forth, and return not unto them. \nWho hath sent out the wild ass free? or who hath loosed the bands of the wild ass? \nWhose house I have made the wilderness, and the barren land his dwellings. \nHe scorneth the multitude of the city, neither regardeth he the crying of the driver. \nThe range of the mountains is his pasture, and he searcheth after every green thing. \nWill the unicorn be willing to serve thee, or abide by thy crib? \nCanst thou bind the unicorn with his band in the furrow? or will he harrow the valleys after thee? \nWilt thou trust him, because his strength is great? or wilt thou leave thy labour to him? \nWilt thou believe him, that he will bring home thy seed, and gather it into thy barn? \nGavest thou the goodly wings unto the peacocks? or wings and feathers unto the ostrich? \nWhich leaveth her eggs in the earth, and warmeth them in dust, \nAnd forgetteth that the foot may crush them, or that the wild beast may break them. \nShe is hardened against her young ones, as though they were not her's: her labour is in vain without fear; \nBecause God hath deprived her of wisdom, neither hath he imparted to her understanding. \nWhat time she lifteth up herself on high, she scorneth the horse and his rider. \nHast thou given the horse strength? hast thou clothed his neck with thunder? \nCanst thou make him afraid as a grasshopper? the glory of his nostrils is terrible. \nHe paweth in the valley, and rejoiceth in his strength: he goeth on to meet the armed men. \nHe mocketh at fear, and is not affrighted; neither turneth he back from the sword. \nThe quiver rattleth against him, the glittering spear and the shield. \nHe swalloweth the ground with fierceness and rage: neither believeth he that it is the sound of the trumpet. \nHe saith among the trumpets, Ha, ha; and he smelleth the battle afar off, the thunder of the captains, and the shouting. \nDoth the hawk fly by thy wisdom, and stretch her wings toward the south? \nDoth the eagle mount up at thy command, and make her nest on high? \nShe dwelleth and abideth on the rock, upon the crag of the rock, and the strong place. \nFrom thence she seeketh the prey, and her eyes behold afar off. \nHer young ones also suck up blood: and where the slain are, there is she. \nMoreover the LORD answered Job, and said, \nShall he that contendeth with the Almighty instruct him? he that reproveth God, let him answer it. \nThen Job answered the LORD, and said, \nBehold, I am vile; what shall I answer thee? I will lay mine hand upon my mouth. \nOnce have I spoken; but I will not answer: yea, twice; but I will proceed no further. \nThen answered the LORD unto Job out of the whirlwind, and said, \nGird up thy loins now like a man: I will demand of thee, and declare thou unto me. \nWilt thou also disannul my judgment? wilt thou condemn me, that thou mayest be righteous? \nHast thou an arm like God? or canst thou thunder with a voice like him? \nDeck thyself now with majesty and excellency; and array thyself with glory and beauty. \nCast abroad the rage of thy wrath: and behold every one that is proud, and abase him. \nLook on every one that is proud, and bring him low; and tread down the wicked in their place. \nHide them in the dust together; and bind their faces in secret. \nThen will I also confess unto thee that thine own right hand can save thee. \nBehold now behemoth, which I made with thee; he eateth grass as an ox. \nLo now, his strength is in his loins, and his force is in the navel of his belly. \nHe moveth his tail like a cedar: the sinews of his stones are wrapped together. \nHis bones are as strong pieces of brass; his bones are like bars of iron. \nHe is the chief of the ways of God: he that made him can make his sword to approach unto him. \nSurely the mountains bring him forth food, where all the beasts of the field play. \nHe lieth under the shady trees, in the covert of the reed, and fens. \nThe shady trees cover him with their shadow; the willows of the brook compass him about. \nBehold, he drinketh up a river, and hasteth not: he trusteth that he can draw up Jordan into his mouth. \nHe taketh it with his eyes: his nose pierceth through snares. \nCanst thou draw out leviathan with an hook? or his tongue with a cord which thou lettest down? \nCanst thou put an hook into his nose? or bore his jaw through with a thorn? \nWill he make many supplications unto thee? will he speak soft words unto thee? \nWill he make a covenant with thee? wilt thou take him for a servant for ever? \nWilt thou play with him as with a bird? or wilt thou bind him for thy maidens? \nShall the companions make a banquet of him? shall they part him among the merchants? \nCanst thou fill his skin with barbed irons? or his head with fish spears? \nLay thine hand upon him, remember the battle, do no more. \nBehold, the hope of him is in vain: shall not one be cast down even at the sight of him? \nNone is so fierce that dare stir him up: who then is able to stand before me? \nWho hath prevented me, that I should repay him? whatsoever is under the whole heaven is mine. \nI will not conceal his parts, nor his power, nor his comely proportion. \nWho can discover the face of his garment? or who can come to him with his double bridle? \nWho can open the doors of his face? his teeth are terrible round about. \nHis scales are his pride, shut up together as with a close seal. \nOne is so near to another, that no air can come between them. \nThey are joined one to another, they stick together, that they cannot be sundered. \nBy his neesings a light doth shine, and his eyes are like the eyelids of the morning. \nOut of his mouth go burning lamps, and sparks of fire leap out. \nOut of his nostrils goeth smoke, as out of a seething pot or caldron. \nHis breath kindleth coals, and a flame goeth out of his mouth. \nIn his neck remaineth strength, and sorrow is turned into joy before him. \nThe flakes of his flesh are joined together: they are firm in themselves; they cannot be moved. \nHis heart is as firm as a stone; yea, as hard as a piece of the nether millstone. \nWhen he raiseth up himself, the mighty are afraid: by reason of breakings they purify themselves. \nThe sword of him that layeth at him cannot hold: the spear, the dart, nor the habergeon. \nHe esteemeth iron as straw, and brass as rotten wood. \nThe arrow cannot make him flee: slingstones are turned with him into stubble. \nDarts are counted as stubble: he laugheth at the shaking of a spear. \nSharp stones are under him: he spreadeth sharp pointed things upon the mire. \nHe maketh the deep to boil like a pot: he maketh the sea like a pot of ointment. \nHe maketh a path to shine after him; one would think the deep to be hoary. \nUpon earth there is not his like, who is made without fear. \nHe beholdeth all high things: he is a king over all the children of pride. \nThen Job answered the LORD, and said, \nI know that thou canst do every thing, and that no thought can be withholden from thee. \nWho is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not. \nHear, I beseech thee, and I will speak: I will demand of thee, and declare thou unto me. \nI have heard of thee by the hearing of the ear: but now mine eye seeth thee. \nWherefore I abhor myself, and repent in dust and ashes. \nAnd it was so, that after the LORD had spoken these words unto Job, the LORD said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath. \nTherefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job. \nSo Eliphaz the Temanite and Bildad the Shuhite and Zophar the Naamathite went, and did according as the LORD commanded them: the LORD also accepted Job. \nAnd the LORD turned the captivity of Job, when he prayed for his friends: also the LORD gave Job twice as much as he had before. \nThen came there unto him all his brethren, and all his sisters, and all they that had been of his acquaintance before, and did eat bread with him in his house: and they bemoaned him, and comforted him over all the evil that the LORD had brought upon him: every man also gave him a piece of money, and every one an earring of gold. \nSo the LORD blessed the latter end of Job more than his beginning: for he had fourteen thousand sheep, and six thousand camels, and a thousand yoke of oxen, and a thousand she asses. \nHe had also seven sons and three daughters. \nAnd he called the name of the first, Jemima; and the name of the second, Kezia; and the name of the third, Kerenhappuch. \nAnd in all the land were no women found so fair as the daughters of Job: and their father gave them inheritance among their brethren. \nAfter this lived Job an hundred and forty years, and saw his sons, and his sons' sons, even four generations. \nSo Job died, being old and full of days. \nBlessed is the man that walketh not in the counsel of the ungodly, nor standeth in the way of sinners, nor sitteth in the seat of the scornful. \nBut his delight is in the law of the LORD; and in his law doth he meditate day and night. \nAnd he shall be like a tree planted by the rivers of water, that bringeth forth his fruit in his season; his leaf also shall not wither; and whatsoever he doeth shall prosper. \nThe ungodly are not so: but are like the chaff which the wind driveth away. \nTherefore the ungodly shall not stand in the judgment, nor sinners in the congregation of the righteous. \nFor the LORD knoweth the way of the righteous: but the way of the ungodly shall perish. \nWhy do the heathen rage, and the people imagine a vain thing? \nThe kings of the earth set themselves, and the rulers take counsel together, against the LORD, and against his anointed, saying, \nLet us break their bands asunder, and cast away their cords from us. \nHe that sitteth in the heavens shall laugh: the LORD shall have them in derision. \nThen shall he speak unto them in his wrath, and vex them in his sore displeasure. \nYet have I set my king upon my holy hill of Zion. \nI will declare the decree: the LORD hath said unto me, Thou art my Son; this day have I begotten thee. \nAsk of me, and I shall give thee the heathen for thine inheritance, and the uttermost parts of the earth for thy possession. \nThou shalt break them with a rod of iron; thou shalt dash them in pieces like a potter's vessel. \nBe wise now therefore, O ye kings: be instructed, ye judges of the earth. \nServe the LORD with fear, and rejoice with trembling. \nKiss the Son, lest he be angry, and ye perish from the way, when his wrath is kindled but a little. Blessed are all they that put their trust in him. \nLord, how are they increased that trouble me! many are they that rise up against me. \nMany there be which say of my soul, There is no help for him in God. Selah. \nBut thou, O LORD, art a shield for me; my glory, and the lifter up of mine head. \nI cried unto the LORD with my voice, and he heard me out of his holy hill. Selah. \nI laid me down and slept; I awaked; for the LORD sustained me. \nI will not be afraid of ten thousands of people, that have set themselves against me round about. \nArise, O LORD; save me, O my God: for thou hast smitten all mine enemies upon the cheek bone; thou hast broken the teeth of the ungodly. \nSalvation belongeth unto the LORD: thy blessing is upon thy people. Selah. \nHear me when I call, O God of my righteousness: thou hast enlarged me when I was in distress; have mercy upon me, and hear my prayer. \nO ye sons of men, how long will ye turn my glory into shame? how long will ye love vanity, and seek after leasing? Selah. \nBut know that the LORD hath set apart him that is godly for himself: the LORD will hear when I call unto him. \nStand in awe, and sin not: commune with your own heart upon your bed, and be still. Selah. \nOffer the sacrifices of righteousness, and put your trust in the LORD. \nThere be many that say, Who will shew us any good? LORD, lift thou up the light of thy countenance upon us. \nThou hast put gladness in my heart, more than in the time that their corn and their wine increased. \nI will both lay me down in peace, and sleep: for thou, LORD, only makest me dwell in safety. \nGive ear to my words, O LORD, consider my meditation. \nHearken unto the voice of my cry, my King, and my God: for unto thee will I pray. \nMy voice shalt thou hear in the morning, O LORD; in the morning will I direct my prayer unto thee, and will look up. \nFor thou art not a God that hath pleasure in wickedness: neither shall evil dwell with thee. \nThe foolish shall not stand in thy sight: thou hatest all workers of iniquity. \nThou shalt destroy them that speak leasing: the LORD will abhor the bloody and deceitful man. \nBut as for me, I will come into thy house in the multitude of thy mercy: and in thy fear will I worship toward thy holy temple. \nLead me, O LORD, in thy righteousness because of mine enemies; make thy way straight before my face. \nFor there is no faithfulness in their mouth; their inward part is very wickedness; their throat is an open sepulchre; they flatter with their tongue. \nDestroy thou them, O God; let them fall by their own counsels; cast them out in the multitude of their transgressions; for they have rebelled against thee. \nBut let all those that put their trust in thee rejoice: let them ever shout for joy, because thou defendest them: let them also that love thy name be joyful in thee. \nFor thou, LORD, wilt bless the righteous; with favour wilt thou compass him as with a shield. \nO LORD, rebuke me not in thine anger, neither chasten me in thy hot displeasure. \nHave mercy upon me, O LORD; for I am weak: O LORD, heal me; for my bones are vexed. \nMy soul is also sore vexed: but thou, O LORD, how long? \nReturn, O LORD, deliver my soul: oh save me for thy mercies' sake. \nFor in death there is no remembrance of thee: in the grave who shall give thee thanks? \nI am weary with my groaning; all the night make I my bed to swim; I water my couch with my tears. \nMine eye is consumed because of grief; it waxeth old because of all mine enemies. \nDepart from me, all ye workers of iniquity; for the LORD hath heard the voice of my weeping. \nThe LORD hath heard my supplication; the LORD will receive my prayer. \nLet all mine enemies be ashamed and sore vexed: let them return and be ashamed suddenly. \nO LORD my God, in thee do I put my trust: save me from all them that persecute me, and deliver me: \nLest he tear my soul like a lion, rending it in pieces, while there is none to deliver. \nO LORD my God, If I have done this; if there be iniquity in my hands; \nIf I have rewarded evil unto him that was at peace with me; (yea, I have delivered him that without cause is mine enemy:) \nLet the enemy persecute my soul, and take it; yea, let him tread down my life upon the earth, and lay mine honour in the dust. Selah. \nArise, O LORD, in thine anger, lift up thyself because of the rage of mine enemies: and awake for me to the judgment that thou hast commanded. \nSo shall the congregation of the people compass thee about: for their sakes therefore return thou on high. \nThe LORD shall judge the people: judge me, O LORD, according to my righteousness, and according to mine integrity that is in me. \nOh let the wickedness of the wicked come to an end; but establish the just: for the righteous God trieth the hearts and reins. \nMy defence is of God, which saveth the upright in heart. \nGod judgeth the righteous, and God is angry with the wicked every day. \nIf he turn not, he will whet his sword; he hath bent his bow, and made it ready. \nHe hath also prepared for him the instruments of death; he ordaineth his arrows against the persecutors. \nBehold, he travaileth with iniquity, and hath conceived mischief, and brought forth falsehood. \nHe made a pit, and digged it, and is fallen into the ditch which he made. \nHis mischief shall return upon his own head, and his violent dealing shall come down upon his own pate. \nI will praise the LORD according to his righteousness: and will sing praise to the name of the LORD most high. \nO LORD, our Lord, how excellent is thy name in all the earth! who hast set thy glory above the heavens. \nOut of the mouth of babes and sucklings hast thou ordained strength because of thine enemies, that thou mightest still the enemy and the avenger. \nWhen I consider thy heavens, the work of thy fingers, the moon and the stars, which thou hast ordained; \nWhat is man, that thou art mindful of him? and the son of man, that thou visitest him? \nFor thou hast made him a little lower than the angels, and hast crowned him with glory and honour. \nThou madest him to have dominion over the works of thy hands; thou hast put all things under his feet: \nAll sheep and oxen, yea, and the beasts of the field; \nThe fowl of the air, and the fish of the sea, and whatsoever passeth through the paths of the seas. \nO LORD our Lord, how excellent is thy name in all the earth! \nI will praise thee, O LORD, with my whole heart; I will shew forth all thy marvellous works. \nI will be glad and rejoice in thee: I will sing praise to thy name, O thou most High. \nWhen mine enemies are turned back, they shall fall and perish at thy presence. \nFor thou hast maintained my right and my cause; thou satest in the throne judging right. \nThou hast rebuked the heathen, thou hast destroyed the wicked, thou hast put out their name for ever and ever. \nO thou enemy, destructions are come to a perpetual end: and thou hast destroyed cities; their memorial is perished with them. \nBut the LORD shall endure for ever: he hath prepared his throne for judgment. \nAnd he shall judge the world in righteousness, he shall minister judgment to the people in uprightness. \nThe LORD also will be a refuge for the oppressed, a refuge in times of trouble. \nAnd they that know thy name will put their trust in thee: for thou, LORD, hast not forsaken them that seek thee. \nSing praises to the LORD, which dwelleth in Zion: declare among the people his doings. \nWhen he maketh inquisition for blood, he remembereth them: he forgetteth not the cry of the humble. \nHave mercy upon me, O LORD; consider my trouble which I suffer of them that hate me, thou that liftest me up from the gates of death: \nThat I may shew forth all thy praise in the gates of the daughter of Zion: I will rejoice in thy salvation. \nThe heathen are sunk down in the pit that they made: in the net which they hid is their own foot taken. \nThe LORD is known by the judgment which he executeth: the wicked is snared in the work of his own hands. Higgaion. Selah. \nThe wicked shall be turned into hell, and all the nations that forget God. \nFor the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever. \nArise, O LORD; let not man prevail: let the heathen be judged in thy sight. \nPut them in fear, O LORD: that the nations may know themselves to be but men. Selah. \nWhy standest thou afar off, O LORD? why hidest thou thyself in times of trouble? \nThe wicked in his pride doth persecute the poor: let them be taken in the devices that they have imagined. \nFor the wicked boasteth of his heart's desire, and blesseth the covetous, whom the LORD abhorreth. \nThe wicked, through the pride of his countenance, will not seek after God: God is not in all his thoughts. \nHis ways are always grievous; thy judgments are far above out of his sight: as for all his enemies, he puffeth at them. \nHe hath said in his heart, I shall not be moved: for I shall never be in adversity. \nHis mouth is full of cursing and deceit and fraud: under his tongue is mischief and vanity. \nHe sitteth in the lurking places of the villages: in the secret places doth he murder the innocent: his eyes are privily set against the poor. \nHe lieth in wait secretly as a lion in his den: he lieth in wait to catch the poor: he doth catch the poor, when he draweth him into his net. \nHe croucheth, and humbleth himself, that the poor may fall by his strong ones. \nHe hath said in his heart, God hath forgotten: he hideth his face; he will never see it. \nArise, O LORD; O God, lift up thine hand: forget not the humble. \nWherefore doth the wicked contemn God? he hath said in his heart, Thou wilt not require it. \nThou hast seen it; for thou beholdest mischief and spite, to requite it with thy hand: the poor committeth himself unto thee; thou art the helper of the fatherless. \nBreak thou the arm of the wicked and the evil man: seek out his wickedness till thou find none. \nThe LORD is King for ever and ever: the heathen are perished out of his land. \nLORD, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear: \nTo judge the fatherless and the oppressed, that the man of the earth may no more oppress. \nIn the LORD put I my trust: how say ye to my soul, Flee as a bird to your mountain? \nFor, lo, the wicked bend their bow, they make ready their arrow upon the string, that they may privily shoot at the upright in heart. \nIf the foundations be destroyed, what can the righteous do? \nThe LORD is in his holy temple, the LORD's throne is in heaven: his eyes behold, his eyelids try, the children of men. \nThe LORD trieth the righteous: but the wicked and him that loveth violence his soul hateth. \nUpon the wicked he shall rain snares, fire and brimstone, and an horrible tempest: this shall be the portion of their cup. \nFor the righteous LORD loveth righteousness; his countenance doth behold the upright. \nHelp, LORD; for the godly man ceaseth; for the faithful fail from among the children of men. \nThey speak vanity every one with his neighbour: with flattering lips and with a double heart do they speak. \nThe LORD shall cut off all flattering lips, and the tongue that speaketh proud things: \nWho have said, With our tongue will we prevail; our lips are our own: who is lord over us? \nFor the oppression of the poor, for the sighing of the needy, now will I arise, saith the LORD; I will set him in safety from him that puffeth at him. \nThe words of the LORD are pure words: as silver tried in a furnace of earth, purified seven times. \nThou shalt keep them, O LORD, thou shalt preserve them from this generation for ever. \nThe wicked walk on every side, when the vilest men are exalted. \nHow long wilt thou forget me, O LORD? for ever? how long wilt thou hide thy face from me? \nHow long shall I take counsel in my soul, having sorrow in my heart daily? how long shall mine enemy be exalted over me? \nConsider and hear me, O LORD my God: lighten mine eyes, lest I sleep the sleep of death; \nLest mine enemy say, I have prevailed against him; and those that trouble me rejoice when I am moved. \nBut I have trusted in thy mercy; my heart shall rejoice in thy salvation. \nI will sing unto the LORD, because he hath dealt bountifully with me. \nThe fool hath said in his heart, There is no God. They are corrupt, they have done abominable works, there is none that doeth good. \nThe LORD looked down from heaven upon the children of men, to see if there were any that did understand, and seek God. \nThey are all gone aside, they are all together become filthy: there is none that doeth good, no, not one. \nHave all the workers of iniquity no knowledge? who eat up my people as they eat bread, and call not upon the LORD. \nThere were they in great fear: for God is in the generation of the righteous. \nYe have shamed the counsel of the poor, because the LORD is his refuge. \nOh that the salvation of Israel were come out of Zion! when the LORD bringeth back the captivity of his people, Jacob shall rejoice, and Israel shall be glad. \nLord, who shall abide in thy tabernacle? who shall dwell in thy holy hill? \nHe that walketh uprightly, and worketh righteousness, and speaketh the truth in his heart. \nHe that backbiteth not with his tongue, nor doeth evil to his neighbour, nor taketh up a reproach against his neighbour. \nIn whose eyes a vile person is contemned; but he honoureth them that fear the LORD. He that sweareth to his own hurt, and changeth not. \nHe that putteth not out his money to usury, nor taketh reward against the innocent. He that doeth these things shall never be moved. \nPreserve me, O God: for in thee do I put my trust. \nO my soul, thou hast said unto the LORD, Thou art my Lord: my goodness extendeth not to thee; \nBut to the saints that are in the earth, and to the excellent, in whom is all my delight. \nTheir sorrows shall be multiplied that hasten after another god: their drink offerings of blood will I not offer, nor take up their names into my lips. \nThe LORD is the portion of mine inheritance and of my cup: thou maintainest my lot. \nThe lines are fallen unto me in pleasant places; yea, I have a goodly heritage. \nI will bless the LORD, who hath given me counsel: my reins also instruct me in the night seasons. \nI have set the LORD always before me: because he is at my right hand, I shall not be moved. \nTherefore my heart is glad, and my glory rejoiceth: my flesh also shall rest in hope. \nFor thou wilt not leave my soul in hell; neither wilt thou suffer thine Holy One to see corruption. \nThou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore. \nHear the right, O LORD, attend unto my cry, give ear unto my prayer, that goeth not out of feigned lips. \nLet my sentence come forth from thy presence; let thine eyes behold the things that are equal. \nThou hast proved mine heart; thou hast visited me in the night; thou hast tried me, and shalt find nothing; I am purposed that my mouth shall not transgress. \nConcerning the works of men, by the word of thy lips I have kept me from the paths of the destroyer. \nHold up my goings in thy paths, that my footsteps slip not. \nI have called upon thee, for thou wilt hear me, O God: incline thine ear unto me, and hear my speech. \nShew thy marvellous lovingkindness, O thou that savest by thy right hand them which put their trust in thee from those that rise up against them. \nKeep me as the apple of the eye, hide me under the shadow of thy wings, \nFrom the wicked that oppress me, from my deadly enemies, who compass me about. \nThey are inclosed in their own fat: with their mouth they speak proudly. \nThey have now compassed us in our steps: they have set their eyes bowing down to the earth; \nLike as a lion that is greedy of his prey, and as it were a young lion lurking in secret places. \nArise, O LORD, disappoint him, cast him down: deliver my soul from the wicked, which is thy sword: \nFrom men which are thy hand, O LORD, from men of the world, which have their portion in this life, and whose belly thou fillest with thy hid treasure: they are full of children, and leave the rest of their substance to their babes. \nAs for me, I will behold thy face in righteousness: I shall be satisfied, when I awake, with thy likeness. \nI will love thee, O LORD, my strength. \nThe LORD is my rock, and my fortress, and my deliverer; my God, my strength, in whom I will trust; my buckler, and the horn of my salvation, and my high tower. \nI will call upon the LORD, who is worthy to be praised: so shall I be saved from mine enemies. \nThe sorrows of death compassed me, and the floods of ungodly men made me afraid. \nThe sorrows of hell compassed me about: the snares of death prevented me. \nIn my distress I called upon the LORD, and cried unto my God: he heard my voice out of his temple, and my cry came before him, even into his ears. \nThen the earth shook and trembled; the foundations also of the hills moved and were shaken, because he was wroth. \nThere went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it. \nHe bowed the heavens also, and came down: and darkness was under his feet. \nAnd he rode upon a cherub, and did fly: yea, he did fly upon the wings of the wind. \nHe made darkness his secret place; his pavilion round about him were dark waters and thick clouds of the skies. \nAt the brightness that was before him his thick clouds passed, hail stones and coals of fire. \nThe LORD also thundered in the heavens, and the Highest gave his voice; hail stones and coals of fire. \nYea, he sent out his arrows, and scattered them; and he shot out lightnings, and discomfited them. \nThen the channels of waters were seen, and the foundations of the world were discovered at thy rebuke, O LORD, at the blast of the breath of thy nostrils. \nHe sent from above, he took me, he drew me out of many waters. \nHe delivered me from my strong enemy, and from them which hated me: for they were too strong for me. \nThey prevented me in the day of my calamity: but the LORD was my stay. \nHe brought me forth also into a large place; he delivered me, because he delighted in me. \nThe LORD rewarded me according to my righteousness; according to the cleanness of my hands hath he recompensed me. \nFor I have kept the ways of the LORD, and have not wickedly departed from my God. \nFor all his judgments were before me, and I did not put away his statutes from me. \nI was also upright before him, and I kept myself from mine iniquity. \nTherefore hath the LORD recompensed me according to my righteousness, according to the cleanness of my hands in his eyesight. \nWith the merciful thou wilt shew thyself merciful; with an upright man thou wilt shew thyself upright; \nWith the pure thou wilt shew thyself pure; and with the froward thou wilt shew thyself froward. \nFor thou wilt save the afflicted people; but wilt bring down high looks. \nFor thou wilt light my candle: the LORD my God will enlighten my darkness. \nFor by thee I have run through a troop; and by my God have I leaped over a wall. \nAs for God, his way is perfect: the word of the LORD is tried: he is a buckler to all those that trust in him. \nFor who is God save the LORD? or who is a rock save our God? \nIt is God that girdeth me with strength, and maketh my way perfect. \nHe maketh my feet like hinds' feet, and setteth me upon my high places. \nHe teacheth my hands to war, so that a bow of steel is broken by mine arms. \nThou hast also given me the shield of thy salvation: and thy right hand hath holden me up, and thy gentleness hath made me great. \nThou hast enlarged my steps under me, that my feet did not slip. \nI have pursued mine enemies, and overtaken them: neither did I turn again till they were consumed. \nI have wounded them that they were not able to rise: they are fallen under my feet. \nFor thou hast girded me with strength unto the battle: thou hast subdued under me those that rose up against me. \nThou hast also given me the necks of mine enemies; that I might destroy them that hate me. \nThey cried, but there was none to save them: even unto the LORD, but he answered them not. \nThen did I beat them small as the dust before the wind: I did cast them out as the dirt in the streets. \nThou hast delivered me from the strivings of the people; and thou hast made me the head of the heathen: a people whom I have not known shall serve me. \nAs soon as they hear of me, they shall obey me: the strangers shall submit themselves unto me. \nThe strangers shall fade away, and be afraid out of their close places. \nThe LORD liveth; and blessed be my rock; and let the God of my salvation be exalted. \nIt is God that avengeth me, and subdueth the people under me. \nHe delivereth me from mine enemies: yea, thou liftest me up above those that rise up against me: thou hast delivered me from the violent man. \nTherefore will I give thanks unto thee, O LORD, among the heathen, and sing praises unto thy name. \nGreat deliverance giveth he to his king; and sheweth mercy to his anointed, to David, and to his seed for evermore. \nThe heavens declare the glory of God; and the firmament sheweth his handywork. \nDay unto day uttereth speech, and night unto night sheweth knowledge. \nThere is no speech nor language, where their voice is not heard. \nTheir line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun, \nWhich is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race. \nHis going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof. \nThe law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple. \nThe statutes of the LORD are right, rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes. \nThe fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether. \nMore to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb. \nMoreover by them is thy servant warned: and in keeping of them there is great reward. \nWho can understand his errors? cleanse thou me from secret faults. \nKeep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression. \nLet the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer. \nThe LORD hear thee in the day of trouble; the name of the God of Jacob defend thee; \nSend thee help from the sanctuary, and strengthen thee out of Zion; \nRemember all thy offerings, and accept thy burnt sacrifice; Selah. \nGrant thee according to thine own heart, and fulfil all thy counsel. \nWe will rejoice in thy salvation, and in the name of our God we will set up our banners: the LORD fulfil all thy petitions. \nNow know I that the LORD saveth his anointed; he will hear him from his holy heaven with the saving strength of his right hand. \nSome trust in chariots, and some in horses: but we will remember the name of the LORD our God. \nThey are brought down and fallen: but we are risen, and stand upright. \nSave, LORD: let the king hear us when we call. \nThe king shall joy in thy strength, O LORD; and in thy salvation how greatly shall he rejoice! \nThou hast given him his heart's desire, and hast not withholden the request of his lips. Selah. \nFor thou preventest him with the blessings of goodness: thou settest a crown of pure gold on his head. \nHe asked life of thee, and thou gavest it him, even length of days for ever and ever. \nHis glory is great in thy salvation: honour and majesty hast thou laid upon him. \nFor thou hast made him most blessed for ever: thou hast made him exceeding glad with thy countenance. \nFor the king trusteth in the LORD, and through the mercy of the most High he shall not be moved. \nThine hand shall find out all thine enemies: thy right hand shall find out those that hate thee. \nThou shalt make them as a fiery oven in the time of thine anger: the LORD shall swallow them up in his wrath, and the fire shall devour them. \nTheir fruit shalt thou destroy from the earth, and their seed from among the children of men. \nFor they intended evil against thee: they imagined a mischievous device, which they are not able to perform. \nTherefore shalt thou make them turn their back, when thou shalt make ready thine arrows upon thy strings against the face of them. \nBe thou exalted, LORD, in thine own strength: so will we sing and praise thy power. \nMy God, my God, why hast thou forsaken me? why art thou so far from helping me, and from the words of my roaring? \nO my God, I cry in the day time, but thou hearest not; and in the night season, and am not silent. \nBut thou art holy, O thou that inhabitest the praises of Israel. \nOur fathers trusted in thee: they trusted, and thou didst deliver them. \nThey cried unto thee, and were delivered: they trusted in thee, and were not confounded. \nBut I am a worm, and no man; a reproach of men, and despised of the people. \nAll they that see me laugh me to scorn: they shoot out the lip, they shake the head, saying, \nHe trusted on the LORD that he would deliver him: let him deliver him, seeing he delighted in him. \nBut thou art he that took me out of the womb: thou didst make me hope when I was upon my mother's breasts. \nI was cast upon thee from the womb: thou art my God from my mother's belly. \nBe not far from me; for trouble is near; for there is none to help. \nMany bulls have compassed me: strong bulls of Bashan have beset me round. \nThey gaped upon me with their mouths, as a ravening and a roaring lion. \nI am poured out like water, and all my bones are out of joint: my heart is like wax; it is melted in the midst of my bowels. \nMy strength is dried up like a potsherd; and my tongue cleaveth to my jaws; and thou hast brought me into the dust of death. \nFor dogs have compassed me: the assembly of the wicked have inclosed me: they pierced my hands and my feet. \nI may tell all my bones: they look and stare upon me. \nThey part my garments among them, and cast lots upon my vesture. \nBut be not thou far from me, O LORD: O my strength, haste thee to help me. \nDeliver my soul from the sword; my darling from the power of the dog. \nSave me from the lion's mouth: for thou hast heard me from the horns of the unicorns. \nI will declare thy name unto my brethren: in the midst of the congregation will I praise thee. \nYe that fear the LORD, praise him; all ye the seed of Jacob, glorify him; and fear him, all ye the seed of Israel. \nFor he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard. \nMy praise shall be of thee in the great congregation: I will pay my vows before them that fear him. \nThe meek shall eat and be satisfied: they shall praise the LORD that seek him: your heart shall live for ever. \nAll the ends of the world shall remember and turn unto the LORD: and all the kindreds of the nations shall worship before thee. \nFor the kingdom is the LORD's: and he is the governor among the nations. \nAll they that be fat upon earth shall eat and worship: all they that go down to the dust shall bow before him: and none can keep alive his own soul. \nA seed shall serve him; it shall be accounted to the Lord for a generation. \nThey shall come, and shall declare his righteousness unto a people that shall be born, that he hath done this. \nThe LORD is my shepherd; I shall not want. \nHe maketh me to lie down in green pastures: he leadeth me beside the still waters. \nHe restoreth my soul: he leadeth me in the paths of righteousness for his name's sake. \nYea, though I walk through the valley of the shadow of death, I will fear no evil: for thou art with me; thy rod and thy staff they comfort me. \nThou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over. \nSurely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the LORD for ever. \nThe earth is the LORD's, and the fulness thereof; the world, and they that dwell therein. \nFor he hath founded it upon the seas, and established it upon the floods. \nWho shall ascend into the hill of the LORD? or who shall stand in his holy place? \nHe that hath clean hands, and a pure heart; who hath not lifted up his soul unto vanity, nor sworn deceitfully. \nHe shall receive the blessing from the LORD, and righteousness from the God of his salvation. \nThis is the generation of them that seek him, that seek thy face, O Jacob. Selah. \nLift up your heads, O ye gates; and be ye lift up, ye everlasting doors; and the King of glory shall come in. \nWho is this King of glory? The LORD strong and mighty, the LORD mighty in battle. \nLift up your heads, O ye gates; even lift them up, ye everlasting doors; and the King of glory shall come in. \nWho is this King of glory? The LORD of hosts, he is the King of glory. Selah. \nUnto thee, O LORD, do I lift up my soul. \nO my God, I trust in thee: let me not be ashamed, let not mine enemies triumph over me. \nYea, let none that wait on thee be ashamed: let them be ashamed which transgress without cause. \nShew me thy ways, O LORD; teach me thy paths. \nLead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day. \nRemember, O LORD, thy tender mercies and thy lovingkindnesses; for they have been ever of old. \nRemember not the sins of my youth, nor my transgressions: according to thy mercy remember thou me for thy goodness' sake, O LORD. \nGood and upright is the LORD: therefore will he teach sinners in the way. \nThe meek will he guide in judgment: and the meek will he teach his way. \nAll the paths of the LORD are mercy and truth unto such as keep his covenant and his testimonies. \nFor thy name's sake, O LORD, pardon mine iniquity; for it is great. \nWhat man is he that feareth the LORD? him shall he teach in the way that he shall choose. \nHis soul shall dwell at ease; and his seed shall inherit the earth. \nThe secret of the LORD is with them that fear him; and he will shew them his covenant. \nMine eyes are ever toward the LORD; for he shall pluck my feet out of the net. \nTurn thee unto me, and have mercy upon me; for I am desolate and afflicted. \nThe troubles of my heart are enlarged: O bring thou me out of my distresses. \nLook upon mine affliction and my pain; and forgive all my sins. \nConsider mine enemies; for they are many; and they hate me with cruel hatred. \nO keep my soul, and deliver me: let me not be ashamed; for I put my trust in thee. \nLet integrity and uprightness preserve me; for I wait on thee. \nRedeem Israel, O God, out of all his troubles. \nJudge me, O LORD; for I have walked in mine integrity: I have trusted also in the LORD; therefore I shall not slide. \nExamine me, O LORD, and prove me; try my reins and my heart. \nFor thy lovingkindness is before mine eyes: and I have walked in thy truth. \nI have not sat with vain persons, neither will I go in with dissemblers. \nI have hated the congregation of evil doers; and will not sit with the wicked. \nI will wash mine hands in innocency: so will I compass thine altar, O LORD: \nThat I may publish with the voice of thanksgiving, and tell of all thy wondrous works. \nLORD, I have loved the habitation of thy house, and the place where thine honour dwelleth. \nGather not my soul with sinners, nor my life with bloody men: \nIn whose hands is mischief, and their right hand is full of bribes. \nBut as for me, I will walk in mine integrity: redeem me, and be merciful unto me. \nMy foot standeth in an even place: in the congregations will I bless the LORD. \nThe LORD is my light and my salvation; whom shall I fear? the LORD is the strength of my life; of whom shall I be afraid? \nWhen the wicked, even mine enemies and my foes, came upon me to eat up my flesh, they stumbled and fell. \nThough an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident. \nOne thing have I desired of the LORD, that will I seek after; that I may dwell in the house of the LORD all the days of my life, to behold the beauty of the LORD, and to enquire in his temple. \nFor in the time of trouble he shall hide me in his pavilion: in the secret of his tabernacle shall he hide me; he shall set me up upon a rock. \nAnd now shall mine head be lifted up above mine enemies round about me: therefore will I offer in his tabernacle sacrifices of joy; I will sing, yea, I will sing praises unto the LORD. \nHear, O LORD, when I cry with my voice: have mercy also upon me, and answer me. \nWhen thou saidst, Seek ye my face; my heart said unto thee, Thy face, LORD, will I seek. \nHide not thy face far from me; put not thy servant away in anger: thou hast been my help; leave me not, neither forsake me, O God of my salvation. \nWhen my father and my mother forsake me, then the LORD will take me up. \nTeach me thy way, O LORD, and lead me in a plain path, because of mine enemies. \nDeliver me not over unto the will of mine enemies: for false witnesses are risen up against me, and such as breathe out cruelty. \nI had fainted, unless I had believed to see the goodness of the LORD in the land of the living. \nWait on the LORD: be of good courage, and he shall strengthen thine heart: wait, I say, on the LORD. \nUnto thee will I cry, O LORD my rock; be not silent to me: lest, if thou be silent to me, I become like them that go down into the pit. \nHear the voice of my supplications, when I cry unto thee, when I lift up my hands toward thy holy oracle. \nDraw me not away with the wicked, and with the workers of iniquity, which speak peace to their neighbours, but mischief is in their hearts. \nGive them according to their deeds, and according to the wickedness of their endeavours: give them after the work of their hands; render to them their desert. \nBecause they regard not the works of the LORD, nor the operation of his hands, he shall destroy them, and not build them up. \nBlessed be the LORD, because he hath heard the voice of my supplications. \nThe LORD is my strength and my shield; my heart trusted in him, and I am helped: therefore my heart greatly rejoiceth; and with my song will I praise him. \nThe LORD is their strength, and he is the saving strength of his anointed. \nSave thy people, and bless thine inheritance: feed them also, and lift them up for ever. \nGive unto the LORD, O ye mighty, give unto the LORD glory and strength. \nGive unto the LORD the glory due unto his name; worship the LORD in the beauty of holiness. \nThe voice of the LORD is upon the waters: the God of glory thundereth: the LORD is upon many waters. \nThe voice of the LORD is powerful; the voice of the LORD is full of majesty. \nThe voice of the LORD breaketh the cedars; yea, the LORD breaketh the cedars of Lebanon. \nHe maketh them also to skip like a calf; Lebanon and Sirion like a young unicorn. \nThe voice of the LORD divideth the flames of fire. \nThe voice of the LORD shaketh the wilderness; the LORD shaketh the wilderness of Kadesh. \nThe voice of the LORD maketh the hinds to calve, and discovereth the forests: and in his temple doth every one speak of his glory. \nThe LORD sitteth upon the flood; yea, the LORD sitteth King for ever. \nThe LORD will give strength unto his people; the LORD will bless his people with peace. \nI will extol thee, O LORD; for thou hast lifted me up, and hast not made my foes to rejoice over me. \nO LORD my God, I cried unto thee, and thou hast healed me. \nO LORD, thou hast brought up my soul from the grave: thou hast kept me alive, that I should not go down to the pit. \nSing unto the LORD, O ye saints of his, and give thanks at the remembrance of his holiness. \nFor his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning. \nAnd in my prosperity I said, I shall never be moved. \nLORD, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled. \nI cried to thee, O LORD; and unto the LORD I made supplication. \nWhat profit is there in my blood, when I go down to the pit? Shall the dust praise thee? shall it declare thy truth? \nHear, O LORD, and have mercy upon me: LORD, be thou my helper. \nThou hast turned for me my mourning into dancing: thou hast put off my sackcloth, and girded me with gladness; \nTo the end that my glory may sing praise to thee, and not be silent. O LORD my God, I will give thanks unto thee for ever. \nIn thee, O LORD, do I put my trust; let me never be ashamed: deliver me in thy righteousness. \nBow down thine ear to me; deliver me speedily: be thou my strong rock, for an house of defence to save me. \nFor thou art my rock and my fortress; therefore for thy name's sake lead me, and guide me. \nPull me out of the net that they have laid privily for me: for thou art my strength. \nInto thine hand I commit my spirit: thou hast redeemed me, O LORD God of truth. \nI have hated them that regard lying vanities: but I trust in the LORD. \nI will be glad and rejoice in thy mercy: for thou hast considered my trouble; thou hast known my soul in adversities; \nAnd hast not shut me up into the hand of the enemy: thou hast set my feet in a large room. \nHave mercy upon me, O LORD, for I am in trouble: mine eye is consumed with grief, yea, my soul and my belly. \nFor my life is spent with grief, and my years with sighing: my strength faileth because of mine iniquity, and my bones are consumed. \nI was a reproach among all mine enemies, but especially among my neighbours, and a fear to mine acquaintance: they that did see me without fled from me. \nI am forgotten as a dead man out of mind: I am like a broken vessel. \nFor I have heard the slander of many: fear was on every side: while they took counsel together against me, they devised to take away my life. \nBut I trusted in thee, O LORD: I said, Thou art my God. \nMy times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me. \nMake thy face to shine upon thy servant: save me for thy mercies' sake. \nLet me not be ashamed, O LORD; for I have called upon thee: let the wicked be ashamed, and let them be silent in the grave. \nLet the lying lips be put to silence; which speak grievous things proudly and contemptuously against the righteous. \nOh how great is thy goodness, which thou hast laid up for them that fear thee; which thou hast wrought for them that trust in thee before the sons of men! \nThou shalt hide them in the secret of thy presence from the pride of man: thou shalt keep them secretly in a pavilion from the strife of tongues. \nBlessed be the LORD: for he hath shewed me his marvellous kindness in a strong city. \nFor I said in my haste, I am cut off from before thine eyes: nevertheless thou heardest the voice of my supplications when I cried unto thee. \nO love the LORD, all ye his saints: for the LORD preserveth the faithful, and plentifully rewardeth the proud doer. \nBe of good courage, and he shall strengthen your heart, all ye that hope in the LORD. \nBlessed is he whose transgression is forgiven, whose sin is covered. \nBlessed is the man unto whom the LORD imputeth not iniquity, and in whose spirit there is no guile. \nWhen I kept silence, my bones waxed old through my roaring all the day long. \nFor day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah. \nI acknowledge my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the LORD; and thou forgavest the iniquity of my sin. Selah. \nFor this shall every one that is godly pray unto thee in a time when thou mayest be found: surely in the floods of great waters they shall not come nigh unto him. \nThou art my hiding place; thou shalt preserve me from trouble; thou shalt compass me about with songs of deliverance. Selah. \nI will instruct thee and teach thee in the way which thou shalt go: I will guide thee with mine eye. \nBe ye not as the horse, or as the mule, which have no understanding: whose mouth must be held in with bit and bridle, lest they come near unto thee. \nMany sorrows shall be to the wicked: but he that trusteth in the LORD, mercy shall compass him about. \nBe glad in the LORD, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart. \nRejoice in the LORD, O ye righteous: for praise is comely for the upright. \nPraise the LORD with harp: sing unto him with the psaltery and an instrument of ten strings. \nSing unto him a new song; play skilfully with a loud noise. \nFor the word of the LORD is right; and all his works are done in truth. \nHe loveth righteousness and judgment: the earth is full of the goodness of the LORD. \nBy the word of the LORD were the heavens made; and all the host of them by the breath of his mouth. \nHe gathereth the waters of the sea together as an heap: he layeth up the depth in storehouses. \nLet all the earth fear the LORD: let all the inhabitants of the world stand in awe of him. \nFor he spake, and it was done; he commanded, and it stood fast. \nThe LORD bringeth the counsel of the heathen to nought: he maketh the devices of the people of none effect. \nThe counsel of the LORD standeth for ever, the thoughts of his heart to all generations. \nBlessed is the nation whose God is the LORD; and the people whom he hath chosen for his own inheritance. \nThe LORD looketh from heaven; he beholdeth all the sons of men. \nFrom the place of his habitation he looketh upon all the inhabitants of the earth. \nHe fashioneth their hearts alike; he considereth all their works. \nThere is no king saved by the multitude of an host: a mighty man is not delivered by much strength. \nAn horse is a vain thing for safety: neither shall he deliver any by his great strength. \nBehold, the eye of the LORD is upon them that fear him, upon them that hope in his mercy; \nTo deliver their soul from death, and to keep them alive in famine. \nOur soul waiteth for the LORD: he is our help and our shield. \nFor our heart shall rejoice in him, because we have trusted in his holy name. \nLet thy mercy, O LORD, be upon us, according as we hope in thee. \nI will bless the LORD at all times: his praise shall continually be in my mouth. \nMy soul shall make her boast in the LORD: the humble shall hear thereof, and be glad. \nO magnify the LORD with me, and let us exalt his name together. \nI sought the LORD, and he heard me, and delivered me from all my fears. \nThey looked unto him, and were lightened: and their faces were not ashamed. \nThis poor man cried, and the LORD heard him, and saved him out of all his troubles. \nThe angel of the LORD encampeth round about them that fear him, and delivereth them. \nO taste and see that the LORD is good: blessed is the man that trusteth in him. \nO fear the LORD, ye his saints: for there is no want to them that fear him. \nThe young lions do lack, and suffer hunger: but they that seek the LORD shall not want any good thing. \nCome, ye children, hearken unto me: I will teach you the fear of the LORD. \nWhat man is he that desireth life, and loveth many days, that he may see good? \nKeep thy tongue from evil, and thy lips from speaking guile. \nDepart from evil, and do good; seek peace, and pursue it. \nThe eyes of the LORD are upon the righteous, and his ears are open unto their cry. \nThe face of the LORD is against them that do evil, to cut off the remembrance of them from the earth. \nThe righteous cry, and the LORD heareth, and delivereth them out of all their troubles. \nThe LORD is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit. \nMany are the afflictions of the righteous: but the LORD delivereth him out of them all. \nHe keepeth all his bones: not one of them is broken. \nEvil shall slay the wicked: and they that hate the righteous shall be desolate. \nThe LORD redeemeth the soul of his servants: and none of them that trust in him shall be desolate. \nPlead my cause, O LORD, with them that strive with me: fight against them that fight against me. \nTake hold of shield and buckler, and stand up for mine help. \nDraw out also the spear, and stop the way against them that persecute me: say unto my soul, I am thy salvation. \nLet them be confounded and put to shame that seek after my soul: let them be turned back and brought to confusion that devise my hurt. \nLet them be as chaff before the wind: and let the angel of the LORD chase them. \nLet their way be dark and slippery: and let the angel of the LORD persecute them. \nFor without cause have they hid for me their net in a pit, which without cause they have digged for my soul. \nLet destruction come upon him at unawares; and let his net that he hath hid catch himself: into that very destruction let him fall. \nAnd my soul shall be joyful in the LORD: it shall rejoice in his salvation. \nAll my bones shall say, LORD, who is like unto thee, which deliverest the poor from him that is too strong for him, yea, the poor and the needy from him that spoileth him? \nFalse witnesses did rise up; they laid to my charge things that I knew not. \nThey rewarded me evil for good to the spoiling of my soul. \nBut as for me, when they were sick, my clothing was sackcloth: I humbled my soul with fasting; and my prayer returned into mine own bosom. \nI behaved myself as though he had been my friend or brother: I bowed down heavily, as one that mourneth for his mother. \nBut in mine adversity they rejoiced, and gathered themselves together: yea, the abjects gathered themselves together against me, and I knew it not; they did tear me, and ceased not: \nWith hypocritical mockers in feasts, they gnashed upon me with their teeth. \nLord, how long wilt thou look on? rescue my soul from their destructions, my darling from the lions. \nI will give thee thanks in the great congregation: I will praise thee among much people. \nLet not them that are mine enemies wrongfully rejoice over me: neither let them wink with the eye that hate me without a cause. \nFor they speak not peace: but they devise deceitful matters against them that are quiet in the land. \nYea, they opened their mouth wide against me, and said, Aha, aha, our eye hath seen it. \nThis thou hast seen, O LORD: keep not silence: O Lord, be not far from me. \nStir up thyself, and awake to my judgment, even unto my cause, my God and my Lord. \nJudge me, O LORD my God, according to thy righteousness; and let them not rejoice over me. \nLet them not say in their hearts, Ah, so would we have it: let them not say, We have swallowed him up. \nLet them be ashamed and brought to confusion together that rejoice at mine hurt: let them be clothed with shame and dishonour that magnify themselves against me. \nLet them shout for joy, and be glad, that favour my righteous cause: yea, let them say continually, Let the LORD be magnified, which hath pleasure in the prosperity of his servant. \nAnd my tongue shall speak of thy righteousness and of thy praise all the day long. \nThe transgression of the wicked saith within my heart, that there is no fear of God before his eyes. \nFor he flattereth himself in his own eyes, until his iniquity be found to be hateful. \nThe words of his mouth are iniquity and deceit: he hath left off to be wise, and to do good. \nHe deviseth mischief upon his bed; he setteth himself in a way that is not good; he abhorreth not evil. \nThy mercy, O LORD, is in the heavens; and thy faithfulness reacheth unto the clouds. \nThy righteousness is like the great mountains; thy judgments are a great deep: O LORD, thou preservest man and beast. \nHow excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings. \nThey shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures. \nFor with thee is the fountain of life: in thy light shall we see light. \nO continue thy lovingkindness unto them that know thee; and thy righteousness to the upright in heart. \nLet not the foot of pride come against me, and let not the hand of the wicked remove me. \nThere are the workers of iniquity fallen: they are cast down, and shall not be able to rise. \nFret not thyself because of evildoers, neither be thou envious against the workers of iniquity. \nFor they shall soon be cut down like the grass, and wither as the green herb. \nTrust in the LORD, and do good; so shalt thou dwell in the land, and verily thou shalt be fed. \nDelight thyself also in the LORD: and he shall give thee the desires of thine heart. \nCommit thy way unto the LORD; trust also in him; and he shall bring it to pass. \nAnd he shall bring forth thy righteousness as the light, and thy judgment as the noonday. \nRest in the LORD, and wait patiently for him: fret not thyself because of him who prospereth in his way, because of the man who bringeth wicked devices to pass. \nCease from anger, and forsake wrath: fret not thyself in any wise to do evil. \nFor evildoers shall be cut off: but those that wait upon the LORD, they shall inherit the earth. \nFor yet a little while, and the wicked shall not be: yea, thou shalt diligently consider his place, and it shall not be. \nBut the meek shall inherit the earth; and shall delight themselves in the abundance of peace. \nThe wicked plotteth against the just, and gnasheth upon him with his teeth. \nThe LORD shall laugh at him: for he seeth that his day is coming. \nThe wicked have drawn out the sword, and have bent their bow, to cast down the poor and needy, and to slay such as be of upright conversation. \nTheir sword shall enter into their own heart, and their bows shall be broken. \nA little that a righteous man hath is better than the riches of many wicked. \nFor the arms of the wicked shall be broken: but the LORD upholdeth the righteous. \nThe LORD knoweth the days of the upright: and their inheritance shall be for ever. \nThey shall not be ashamed in the evil time: and in the days of famine they shall be satisfied. \nBut the wicked shall perish, and the enemies of the LORD shall be as the fat of lambs: they shall consume; into smoke shall they consume away. \nThe wicked borroweth, and payeth not again: but the righteous sheweth mercy, and giveth. \nFor such as be blessed of him shall inherit the earth; and they that be cursed of him shall be cut off. \nThe steps of a good man are ordered by the LORD: and he delighteth in his way. \nThough he fall, he shall not be utterly cast down: for the LORD upholdeth him with his hand. \nI have been young, and now am old; yet have I not seen the righteous forsaken, nor his seed begging bread. \nHe is ever merciful, and lendeth; and his seed is blessed. \nDepart from evil, and do good; and dwell for evermore. \nFor the LORD loveth judgment, and forsaketh not his saints; they are preserved for ever: but the seed of the wicked shall be cut off. \nThe righteous shall inherit the land, and dwell therein for ever. \nThe mouth of the righteous speaketh wisdom, and his tongue talketh of judgment. \nThe law of his God is in his heart; none of his steps shall slide. \nThe wicked watcheth the righteous, and seeketh to slay him. \nThe LORD will not leave him in his hand, nor condemn him when he is judged. \nWait on the LORD, and keep his way, and he shall exalt thee to inherit the land: when the wicked are cut off, thou shalt see it. \nI have seen the wicked in great power, and spreading himself like a green bay tree. \nYet he passed away, and, lo, he was not: yea, I sought him, but he could not be found. \nMark the perfect man, and behold the upright: for the end of that man is peace. \nBut the transgressors shall be destroyed together: the end of the wicked shall be cut off. \nBut the salvation of the righteous is of the LORD: he is their strength in the time of trouble. \nAnd the LORD shall help them, and deliver them: he shall deliver them from the wicked, and save them, because they trust in him. \nO lord, rebuke me not in thy wrath: neither chasten me in thy hot displeasure. \nFor thine arrows stick fast in me, and thy hand presseth me sore. \nThere is no soundness in my flesh because of thine anger; neither is there any rest in my bones because of my sin. \nFor mine iniquities are gone over mine head: as an heavy burden they are too heavy for me. \nMy wounds stink and are corrupt because of my foolishness. \nI am troubled; I am bowed down greatly; I go mourning all the day long. \nFor my loins are filled with a loathsome disease: and there is no soundness in my flesh. \nI am feeble and sore broken: I have roared by reason of the disquietness of my heart. \nLord, all my desire is before thee; and my groaning is not hid from thee. \nMy heart panteth, my strength faileth me: as for the light of mine eyes, it also is gone from me. \nMy lovers and my friends stand aloof from my sore; and my kinsmen stand afar off. \nThey also that seek after my life lay snares for me: and they that seek my hurt speak mischievous things, and imagine deceits all the day long. \nBut I, as a deaf man, heard not; and I was as a dumb man that openeth not his mouth. \nThus I was as a man that heareth not, and in whose mouth are no reproofs. \nFor in thee, O LORD, do I hope: thou wilt hear, O Lord my God. \nFor I said, Hear me, lest otherwise they should rejoice over me: when my foot slippeth, they magnify themselves against me. \nFor I am ready to halt, and my sorrow is continually before me. \nFor I will declare mine iniquity; I will be sorry for my sin. \nBut mine enemies are lively, and they are strong: and they that hate me wrongfully are multiplied. \nThey also that render evil for good are mine adversaries; because I follow the thing that good is. \nForsake me not, O LORD: O my God, be not far from me. \nMake haste to help me, O Lord my salvation. \nI said, I will take heed to my ways, that I sin not with my tongue: I will keep my mouth with a bridle, while the wicked is before me. \nI was dumb with silence, I held my peace, even from good; and my sorrow was stirred. \nMy heart was hot within me, while I was musing the fire burned: then spake I with my tongue, \nLORD, make me to know mine end, and the measure of my days, what it is: that I may know how frail I am. \nBehold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah. \nSurely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them. \nAnd now, Lord, what wait I for? my hope is in thee. \nDeliver me from all my transgressions: make me not the reproach of the foolish. \nI was dumb, I opened not my mouth; because thou didst it. \nRemove thy stroke away from me: I am consumed by the blow of thine hand. \nWhen thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah. \nHear my prayer, O LORD, and give ear unto my cry; hold not thy peace at my tears: for I am a stranger with thee, and a sojourner, as all my fathers were. \nO spare me, that I may recover strength, before I go hence, and be no more. \nI waited patiently for the LORD; and he inclined unto me, and heard my cry. \nHe brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings. \nAnd he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the LORD. \nBlessed is that man that maketh the LORD his trust, and respecteth not the proud, nor such as turn aside to lies. \nMany, O LORD my God, are thy wonderful works which thou hast done, and thy thoughts which are to us-ward: they cannot be reckoned up in order unto thee: if I would declare and speak of them, they are more than can be numbered. \nSacrifice and offering thou didst not desire; mine ears hast thou opened: burnt offering and sin offering hast thou not required. \nThen said I, Lo, I come: in the volume of the book it is written of me, \nI delight to do thy will, O my God: yea, thy law is within my heart. \nI have preached righteousness in the great congregation: lo, I have not refrained my lips, O LORD, thou knowest. \nI have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation. \nWithhold not thou thy tender mercies from me, O LORD: let thy lovingkindness and thy truth continually preserve me. \nFor innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me. \nBe pleased, O LORD, to deliver me: O LORD, make haste to help me. \nLet them be ashamed and confounded together that seek after my soul to destroy it; let them be driven backward and put to shame that wish me evil. \nLet them be desolate for a reward of their shame that say unto me, Aha, aha. \nLet all those that seek thee rejoice and be glad in thee: let such as love thy salvation say continually, The LORD be magnified. \nBut I am poor and needy; yet the Lord thinketh upon me: thou art my help and my deliverer; make no tarrying, O my God. \nBlessed is he that considereth the poor: the LORD will deliver him in time of trouble. \nThe LORD will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies. \nThe LORD will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness. \nI said, LORD, be merciful unto me: heal my soul; for I have sinned against thee. \nMine enemies speak evil of me, When shall he die, and his name perish? \nAnd if he come to see me, he speaketh vanity: his heart gathereth iniquity to itself; when he goeth abroad, he telleth it. \nAll that hate me whisper together against me: against me do they devise my hurt. \nAn evil disease, say they, cleaveth fast unto him: and now that he lieth he shall rise up no more. \nYea, mine own familiar friend, in whom I trusted, which did eat of my bread, hath lifted up his heel against me. \nBut thou, O LORD, be merciful unto me, and raise me up, that I may requite them. \nBy this I know that thou favourest me, because mine enemy doth not triumph over me. \nAnd as for me, thou upholdest me in mine integrity, and settest me before thy face for ever. \nBlessed be the LORD God of Israel from everlasting, and to everlasting. Amen, and Amen. \nAs the hart panteth after the water brooks, so panteth my soul after thee, O God. \nMy soul thirsteth for God, for the living God: when shall I come and appear before God? \nMy tears have been my meat day and night, while they continually say unto me, Where is thy God? \nWhen I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday. \nWhy art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance. \nO my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar. \nDeep calleth unto deep at the noise of thy waterspouts: all thy waves and thy billows are gone over me. \nYet the LORD will command his lovingkindness in the day time, and in the night his song shall be with me, and my prayer unto the God of my life. \nI will say unto God my rock, Why hast thou forgotten me? why go I mourning because of the oppression of the enemy? \nAs with a sword in my bones, mine enemies reproach me; while they say daily unto me, Where is thy God? \nWhy art thou cast down, O my soul? and why art thou disquieted within me? hope thou in God: for I shall yet praise him, who is the health of my countenance, and my God. \nJudge me, O God, and plead my cause against an ungodly nation: O deliver me from the deceitful and unjust man. \nFor thou art the God of my strength: why dost thou cast me off? why go I mourning because of the oppression of the enemy? \nO send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles. \nThen will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God. \nWhy art thou cast down, O my soul? and why art thou disquieted within me? hope in God: for I shall yet praise him, who is the health of my countenance, and my God. \nWe have heard with our ears, O God, our fathers have told us, what work thou didst in their days, in the times of old. \nHow thou didst drive out the heathen with thy hand, and plantedst them; how thou didst afflict the people, and cast them out. \nFor they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them. \nThou art my King, O God: command deliverances for Jacob. \nThrough thee will we push down our enemies: through thy name will we tread them under that rise up against us. \nFor I will not trust in my bow, neither shall my sword save me. \nBut thou hast saved us from our enemies, and hast put them to shame that hated us. \nIn God we boast all the day long, and praise thy name for ever. Selah. \nBut thou hast cast off, and put us to shame; and goest not forth with our armies. \nThou makest us to turn back from the enemy: and they which hate us spoil for themselves. \nThou hast given us like sheep appointed for meat; and hast scattered us among the heathen. \nThou sellest thy people for nought, and dost not increase thy wealth by their price. \nThou makest us a reproach to our neighbours, a scorn and a derision to them that are round about us. \nThou makest us a byword among the heathen, a shaking of the head among the people. \nMy confusion is continually before me, and the shame of my face hath covered me, \nFor the voice of him that reproacheth and blasphemeth; by reason of the enemy and avenger. \nAll this is come upon us; yet have we not forgotten thee, neither have we dealt falsely in thy covenant. \nOur heart is not turned back, neither have our steps declined from thy way; \nThough thou hast sore broken us in the place of dragons, and covered us with the shadow of death. \nIf we have forgotten the name of our God, or stretched out our hands to a strange god; \nShall not God search this out? for he knoweth the secrets of the heart. \nYea, for thy sake are we killed all the day long; we are counted as sheep for the slaughter. \nAwake, why sleepest thou, O Lord? arise, cast us not off for ever. \nWherefore hidest thou thy face, and forgettest our affliction and our oppression? \nFor our soul is bowed down to the dust: our belly cleaveth unto the earth. \nArise for our help, and redeem us for thy mercies' sake. \nMy heart is inditing a good matter: I speak of the things which I have made touching the king: my tongue is the pen of a ready writer. \nThou art fairer than the children of men: grace is poured into thy lips: therefore God hath blessed thee for ever. \nGird thy sword upon thy thigh, O most mighty, with thy glory and thy majesty. \nAnd in thy majesty ride prosperously because of truth and meekness and righteousness; and thy right hand shall teach thee terrible things. \nThine arrows are sharp in the heart of the king's enemies; whereby the people fall under thee. \nThy throne, O God, is for ever and ever: the sceptre of thy kingdom is a right sceptre. \nThou lovest righteousness, and hatest wickedness: therefore God, thy God, hath anointed thee with the oil of gladness above thy fellows. \nAll thy garments smell of myrrh, and aloes, and cassia, out of the ivory palaces, whereby they have made thee glad. \nKings' daughters were among thy honourable women: upon thy right hand did stand the queen in gold of Ophir. \nHearken, O daughter, and consider, and incline thine ear; forget also thine own people, and thy father's house; \nSo shall the king greatly desire thy beauty: for he is thy Lord; and worship thou him. \nAnd the daughter of Tyre shall be there with a gift; even the rich among the people shall intreat thy favour. \nThe king's daughter is all glorious within: her clothing is of wrought gold. \nShe shall be brought unto the king in raiment of needlework: the virgins her companions that follow her shall be brought unto thee. \nWith gladness and rejoicing shall they be brought: they shall enter into the king's palace. \nInstead of thy fathers shall be thy children, whom thou mayest make princes in all the earth. \nI will make thy name to be remembered in all generations: therefore shall the people praise thee for ever and ever. \nGod is our refuge and strength, a very present help in trouble. \nTherefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea; \nThough the waters thereof roar and be troubled, though the mountains shake with the swelling thereof. Selah. \nThere is a river, the streams whereof shall make glad the city of God, the holy place of the tabernacles of the most High. \nGod is in the midst of her; she shall not be moved: God shall help her, and that right early. \nThe heathen raged, the kingdoms were moved: he uttered his voice, the earth melted. \nThe LORD of hosts is with us; the God of Jacob is our refuge. Selah. \nCome, behold the works of the LORD, what desolations he hath made in the earth. \nHe maketh wars to cease unto the end of the earth; he breaketh the bow, and cutteth the spear in sunder; he burneth the chariot in the fire. \nBe still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth. \nThe LORD of hosts is with us; the God of Jacob is our refuge. Selah. \nO clap your hands, all ye people; shout unto God with the voice of triumph. \nFor the LORD most high is terrible; he is a great King over all the earth. \nHe shall subdue the people under us, and the nations under our feet. \nHe shall choose our inheritance for us, the excellency of Jacob whom he loved. Selah. \nGod is gone up with a shout, the LORD with the sound of a trumpet. \nSing praises to God, sing praises: sing praises unto our King, sing praises. \nFor God is the King of all the earth: sing ye praises with understanding. \nGod reigneth over the heathen: God sitteth upon the throne of his holiness. \nThe princes of the people are gathered together, even the people of the God of Abraham: for the shields of the earth belong unto God: he is greatly exalted. \nGreat is the LORD, and greatly to be praised in the city of our God, in the mountain of his holiness. \nBeautiful for situation, the joy of the whole earth, is mount Zion, on the sides of the north, the city of the great King. \nGod is known in her palaces for a refuge. \nFor, lo, the kings were assembled, they passed by together. \nThey saw it, and so they marvelled; they were troubled, and hasted away. \nFear took hold upon them there, and pain, as of a woman in travail. \nThou breakest the ships of Tarshish with an east wind. \nAs we have heard, so have we seen in the city of the LORD of hosts, in the city of our God: God will establish it for ever. Selah. \nWe have thought of thy lovingkindness, O God, in the midst of thy temple. \nAccording to thy name, O God, so is thy praise unto the ends of the earth: thy right hand is full of righteousness. \nLet mount Zion rejoice, let the daughters of Judah be glad, because of thy judgments. \nWalk about Zion, and go round about her: tell the towers thereof. \nMark ye well her bulwarks, consider her palaces; that ye may tell it to the generation following. \nFor this God is our God for ever and ever: he will be our guide even unto death. \nHear this, all ye people; give ear, all ye inhabitants of the world: \nBoth low and high, rich and poor, together. \nMy mouth shall speak of wisdom; and the meditation of my heart shall be of understanding. \nI will incline mine ear to a parable: I will open my dark saying upon the harp. \nWherefore should I fear in the days of evil, when the iniquity of my heels shall compass me about? \nThey that trust in their wealth, and boast themselves in the multitude of their riches; \nNone of them can by any means redeem his brother, nor give to God a ransom for him: \n(For the redemption of their soul is precious, and it ceaseth for ever:) \nThat he should still live for ever, and not see corruption. \nFor he seeth that wise men die, likewise the fool and the brutish person perish, and leave their wealth to others. \nTheir inward thought is, that their houses shall continue for ever, and their dwelling places to all generations; they call their lands after their own names. \nNevertheless man being in honour abideth not: he is like the beasts that perish. \nThis their way is their folly: yet their posterity approve their sayings. Selah. \nLike sheep they are laid in the grave; death shall feed on them; and the upright shall have dominion over them in the morning; and their beauty shall consume in the grave from their dwelling. \nBut God will redeem my soul from the power of the grave: for he shall receive me. Selah. \nBe not thou afraid when one is made rich, when the glory of his house is increased; \nFor when he dieth he shall carry nothing away: his glory shall not descend after him. \nThough while he lived he blessed his soul: and men will praise thee, when thou doest well to thyself. \nHe shall go to the generation of his fathers; they shall never see light. \nMan that is in honour, and understandeth not, is like the beasts that perish. \nThe mighty God, even the LORD, hath spoken, and called the earth from the rising of the sun unto the going down thereof. \nOut of Zion, the perfection of beauty, God hath shined. \nOur God shall come, and shall not keep silence: a fire shall devour before him, and it shall be very tempestuous round about him. \nHe shall call to the heavens from above, and to the earth, that he may judge his people. \nGather my saints together unto me; those that have made a covenant with me by sacrifice. \nAnd the heavens shall declare his righteousness: for God is judge himself. Selah. \nHear, O my people, and I will speak; O Israel, and I will testify against thee: I am God, even thy God. \nI will not reprove thee for thy sacrifices or thy burnt offerings, to have been continually before me. \nI will take no bullock out of thy house, nor he goats out of thy folds. \nFor every beast of the forest is mine, and the cattle upon a thousand hills. \nI know all the fowls of the mountains: and the wild beasts of the field are mine. \nIf I were hungry, I would not tell thee: for the world is mine, and the fulness thereof. \nWill I eat the flesh of bulls, or drink the blood of goats? \nOffer unto God thanksgiving; and pay thy vows unto the most High: \nAnd call upon me in the day of trouble: I will deliver thee, and thou shalt glorify me. \nBut unto the wicked God saith, What hast thou to do to declare my statutes, or that thou shouldest take my covenant in thy mouth? \nSeeing thou hatest instruction, and casteth my words behind thee. \nWhen thou sawest a thief, then thou consentedst with him, and hast been partaker with adulterers. \nThou givest thy mouth to evil, and thy tongue frameth deceit. \nThou sittest and speakest against thy brother; thou slanderest thine own mother's son. \nThese things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes. \nNow consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver. \nWhoso offereth praise glorifieth me: and to him that ordereth his conversation aright will I shew the salvation of God. \nHave mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions. \nWash me throughly from mine iniquity, and cleanse me from my sin. \nFor I acknowledge my transgressions: and my sin is ever before me. \nAgainst thee, thee only, have I sinned, and done this evil in thy sight: that thou mightest be justified when thou speakest, and be clear when thou judgest. \nBehold, I was shapen in iniquity; and in sin did my mother conceive me. \nBehold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom. \nPurge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow. \nMake me to hear joy and gladness; that the bones which thou hast broken may rejoice. \nHide thy face from my sins, and blot out all mine iniquities. \nCreate in me a clean heart, O God; and renew a right spirit within me. \nCast me not away from thy presence; and take not thy holy spirit from me. \nRestore unto me the joy of thy salvation; and uphold me with thy free spirit. \nThen will I teach transgressors thy ways; and sinners shall be converted unto thee. \nDeliver me from bloodguiltiness, O God, thou God of my salvation: and my tongue shall sing aloud of thy righteousness. \nO Lord, open thou my lips; and my mouth shall shew forth thy praise. \nFor thou desirest not sacrifice; else would I give it: thou delightest not in burnt offering. \nThe sacrifices of God are a broken spirit: a broken and a contrite heart, O God, thou wilt not despise. \nDo good in thy good pleasure unto Zion: build thou the walls of Jerusalem. \nThen shalt thou be pleased with the sacrifices of righteousness, with burnt offering and whole burnt offering: then shall they offer bullocks upon thine altar. \nWhy boastest thou thyself in mischief, O mighty man? the goodness of God endureth continually. \nThe tongue deviseth mischiefs; like a sharp razor, working deceitfully. \nThou lovest evil more than good; and lying rather than to speak righteousness. Selah. \nThou lovest all devouring words, O thou deceitful tongue. \nGod shall likewise destroy thee for ever, he shall take thee away, and pluck thee out of thy dwelling place, and root thee out of the land of the living. Selah. \nThe righteous also shall see, and fear, and shall laugh at him: \nLo, this is the man that made not God his strength; but trusted in the abundance of his riches, and strengthened himself in his wickedness. \nBut I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever. \nI will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints. \nThe fool hath said in his heart, There is no God. Corrupt are they, and have done abominable iniquity: there is none that doeth good. \nGod looked down from heaven upon the children of men, to see if there were any that did understand, that did seek God. \nEvery one of them is gone back: they are altogether become filthy; there is none that doeth good, no, not one. \nHave the workers of iniquity no knowledge? who eat up my people as they eat bread: they have not called upon God. \nThere were they in great fear, where no fear was: for God hath scattered the bones of him that encampeth against thee: thou hast put them to shame, because God hath despised them. \nOh that the salvation of Israel were come out of Zion! When God bringeth back the captivity of his people, Jacob shall rejoice, and Israel shall be glad. \nSave me, O God, by thy name, and judge me by thy strength. \nHear my prayer, O God; give ear to the words of my mouth. \nFor strangers are risen up against me, and oppressors seek after my soul: they have not set God before them. Selah. \nBehold, God is mine helper: the Lord is with them that uphold my soul. \nHe shall reward evil unto mine enemies: cut them off in thy truth. \nI will freely sacrifice unto thee: I will praise thy name, O LORD; for it is good. \nFor he hath delivered me out of all trouble: and mine eye hath seen his desire upon mine enemies. \nGive ear to my prayer, O God; and hide not thyself from my supplication. \nAttend unto me, and hear me: I mourn in my complaint, and make a noise; \nBecause of the voice of the enemy, because of the oppression of the wicked: for they cast iniquity upon me, and in wrath they hate me. \nMy heart is sore pained within me: and the terrors of death are fallen upon me. \nFearfulness and trembling are come upon me, and horror hath overwhelmed me. \nAnd I said, Oh that I had wings like a dove! for then would I fly away, and be at rest. \nLo, then would I wander far off, and remain in the wilderness. Selah. \nI would hasten my escape from the windy storm and tempest. \nDestroy, O Lord, and divide their tongues: for I have seen violence and strife in the city. \nDay and night they go about it upon the walls thereof: mischief also and sorrow are in the midst of it. \nWickedness is in the midst thereof: deceit and guile depart not from her streets. \nFor it was not an enemy that reproached me; then I could have borne it: neither was it he that hated me that did magnify himself against me; then I would have hid myself from him: \nBut it was thou, a man mine equal, my guide, and mine acquaintance. \nWe took sweet counsel together, and walked unto the house of God in company. \nLet death seize upon them, and let them go down quick into hell: for wickedness is in their dwellings, and among them. \nAs for me, I will call upon God; and the LORD shall save me. \nEvening, and morning, and at noon, will I pray, and cry aloud: and he shall hear my voice. \nHe hath delivered my soul in peace from the battle that was against me: for there were many with me. \nGod shall hear, and afflict them, even he that abideth of old. Selah. Because they have no changes, therefore they fear not God. \nHe hath put forth his hands against such as be at peace with him: he hath broken his covenant. \nThe words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords. \nCast thy burden upon the LORD, and he shall sustain thee: he shall never suffer the righteous to be moved. \nBut thou, O God, shalt bring them down into the pit of destruction: bloody and deceitful men shall not live out half their days; but I will trust in thee. \nBe merciful unto me, O God: for man would swallow me up; he fighting daily oppresseth me. \nMine enemies would daily swallow me up: for they be many that fight against me, O thou most High. \nWhat time I am afraid, I will trust in thee. \nIn God I will praise his word, in God I have put my trust; I will not fear what flesh can do unto me. \nEvery day they wrest my words: all their thoughts are against me for evil. \nThey gather themselves together, they hide themselves, they mark my steps, when they wait for my soul. \nShall they escape by iniquity? in thine anger cast down the people, O God. \nThou tellest my wanderings: put thou my tears into thy bottle: are they not in thy book? \nWhen I cry unto thee, then shall mine enemies turn back: this I know; for God is for me. \nIn God will I praise his word: in the LORD will I praise his word. \nIn God have I put my trust: I will not be afraid what man can do unto me. \nThy vows are upon me, O God: I will render praises unto thee. \nFor thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living? \nBe merciful unto me, O God, be merciful unto me: for my soul trusteth in thee: yea, in the shadow of thy wings will I make my refuge, until these calamities be overpast. \nI will cry unto God most high; unto God that performeth all things for me. \nHe shall send from heaven, and save me from the reproach of him that would swallow me up. Selah. God shall send forth his mercy and his truth. \nMy soul is among lions: and I lie even among them that are set on fire, even the sons of men, whose teeth are spears and arrows, and their tongue a sharp sword. \nBe thou exalted, O God, above the heavens; let thy glory be above all the earth. \nThey have prepared a net for my steps; my soul is bowed down: they have digged a pit before me, into the midst whereof they are fallen themselves. Selah. \nMy heart is fixed, O God, my heart is fixed: I will sing and give praise. \nAwake up, my glory; awake, psaltery and harp: I myself will awake early. \nI will praise thee, O Lord, among the people: I will sing unto thee among the nations. \nFor thy mercy is great unto the heavens, and thy truth unto the clouds. \nBe thou exalted, O God, above the heavens: let thy glory be above all the earth. \nDo ye indeed speak righteousness, O congregation? do ye judge uprightly, O ye sons of men? \nYea, in heart ye work wickedness; ye weigh the violence of your hands in the earth. \nThe wicked are estranged from the womb: they go astray as soon as they be born, speaking lies. \nTheir poison is like the poison of a serpent: they are like the deaf adder that stoppeth her ear; \nWhich will not hearken to the voice of charmers, charming never so wisely. \nBreak their teeth, O God, in their mouth: break out the great teeth of the young lions, O LORD. \nLet them melt away as waters which run continually: when he bendeth his bow to shoot his arrows, let them be as cut in pieces. \nAs a snail which melteth, let every one of them pass away: like the untimely birth of a woman, that they may not see the sun. \nBefore your pots can feel the thorns, he shall take them away as with a whirlwind, both living, and in his wrath. \nThe righteous shall rejoice when he seeth the vengeance: he shall wash his feet in the blood of the wicked. \nSo that a man shall say, Verily there is a reward for the righteous: verily he is a God that judgeth in the earth. \nDeliver me from mine enemies, O my God: defend me from them that rise up against me. \nDeliver me from the workers of iniquity, and save me from bloody men. \nFor, lo, they lie in wait for my soul: the mighty are gathered against me; not for my transgression, nor for my sin, O LORD. \nThey run and prepare themselves without my fault: awake to help me, and behold. \nThou therefore, O LORD God of hosts, the God of Israel, awake to visit all the heathen: be not merciful to any wicked transgressors. Selah. \nThey return at evening: they make a noise like a dog, and go round about the city. \nBehold, they belch out with their mouth: swords are in their lips: for who, say they, doth hear? \nBut thou, O LORD, shalt laugh at them; thou shalt have all the heathen in derision. \nBecause of his strength will I wait upon thee: for God is my defence. \nThe God of my mercy shall prevent me: God shall let me see my desire upon mine enemies. \nSlay them not, lest my people forget: scatter them by thy power; and bring them down, O Lord our shield. \nFor the sin of their mouth and the words of their lips let them even be taken in their pride: and for cursing and lying which they speak. \nConsume them in wrath, consume them, that they may not be: and let them know that God ruleth in Jacob unto the ends of the earth. Selah. \nAnd at evening let them return; and let them make a noise like a dog, and go round about the city. \nLet them wander up and down for meat, and grudge if they be not satisfied. \nBut I will sing of thy power; yea, I will sing aloud of thy mercy in the morning: for thou hast been my defence and refuge in the day of my trouble. \nUnto thee, O my strength, will I sing: for God is my defence, and the God of my mercy. \nO God, thou hast cast us off, thou hast scattered us, thou hast been displeased; O turn thyself to us again. \nThou hast made the earth to tremble; thou hast broken it: heal the breaches thereof; for it shaketh. \nThou hast shewed thy people hard things: thou hast made us to drink the wine of astonishment. \nThou hast given a banner to them that fear thee, that it may be displayed because of the truth. Selah. \nThat thy beloved may be delivered; save with thy right hand, and hear me. \nGod hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth. \nGilead is mine, and Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver; \nMoab is my washpot; over Edom will I cast out my shoe: Philistia, triumph thou because of me. \nWho will bring me into the strong city? who will lead me into Edom? \nWilt not thou, O God, which hadst cast us off? and thou, O God, which didst not go out with our armies? \nGive us help from trouble: for vain is the help of man. \nThrough God we shall do valiantly: for he it is that shall tread down our enemies. \nHear my cry, O God; attend unto my prayer. \nFrom the end of the earth will I cry unto thee, when my heart is overwhelmed: lead me to the rock that is higher than I. \nFor thou hast been a shelter for me, and a strong tower from the enemy. \nI will abide in thy tabernacle for ever: I will trust in the covert of thy wings. Selah. \nFor thou, O God, hast heard my vows: thou hast given me the heritage of those that fear thy name. \nThou wilt prolong the king's life: and his years as many generations. \nHe shall abide before God for ever: O prepare mercy and truth, which may preserve him. \nSo will I sing praise unto thy name for ever, that I may daily perform my vows. \nTruly my soul waiteth upon God: from him cometh my salvation. \nHe only is my rock and my salvation; he is my defence; I shall not be greatly moved. \nHow long will ye imagine mischief against a man? ye shall be slain all of you: as a bowing wall shall ye be, and as a tottering fence. \nThey only consult to cast him down from his excellency: they delight in lies: they bless with their mouth, but they curse inwardly. Selah. \nMy soul, wait thou only upon God; for my expectation is from him. \nHe only is my rock and my salvation: he is my defence; I shall not be moved. \nIn God is my salvation and my glory: the rock of my strength, and my refuge, is in God. \nTrust in him at all times; ye people, pour out your heart before him: God is a refuge for us. Selah. \nSurely men of low degree are vanity, and men of high degree are a lie: to be laid in the balance, they are altogether lighter than vanity. \nTrust not in oppression, and become not vain in robbery: if riches increase, set not your heart upon them. \nGod hath spoken once; twice have I heard this; that power belongeth unto God. \nAlso unto thee, O Lord, belongeth mercy: for thou renderest to every man according to his work. \nO God, thou art my God; early will I seek thee: my soul thirsteth for thee, my flesh longeth for thee in a dry and thirsty land, where no water is; \nTo see thy power and thy glory, so as I have seen thee in the sanctuary. \nBecause thy lovingkindness is better than life, my lips shall praise thee. \nThus will I bless thee while I live: I will lift up my hands in thy name. \nMy soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips: \nWhen I remember thee upon my bed, and meditate on thee in the night watches. \nBecause thou hast been my help, therefore in the shadow of thy wings will I rejoice. \nMy soul followeth hard after thee: thy right hand upholdeth me. \nBut those that seek my soul, to destroy it, shall go into the lower parts of the earth. \nThey shall fall by the sword: they shall be a portion for foxes. \nBut the king shall rejoice in God; every one that sweareth by him shall glory: but the mouth of them that speak lies shall be stopped. \nHear my voice, O God, in my prayer: preserve my life from fear of the enemy. \nHide me from the secret counsel of the wicked; from the insurrection of the workers of iniquity: \nWho whet their tongue like a sword, and bend their bows to shoot their arrows, even bitter words: \nThat they may shoot in secret at the perfect: suddenly do they shoot at him, and fear not. \nThey encourage themselves in an evil matter: they commune of laying snares privily; they say, Who shall see them? \nThey search out iniquities; they accomplish a diligent search: both the inward thought of every one of them, and the heart, is deep. \nBut God shall shoot at them with an arrow; suddenly shall they be wounded. \nSo they shall make their own tongue to fall upon themselves: all that see them shall flee away. \nAnd all men shall fear, and shall declare the work of God; for they shall wisely consider of his doing. \nThe righteous shall be glad in the LORD, and shall trust in him; and all the upright in heart shall glory. \nPraise waiteth for thee, O God, in Sion: and unto thee shall the vow be performed. \nO thou that hearest prayer, unto thee shall all flesh come. \nIniquities prevail against me: as for our transgressions, thou shalt purge them away. \nBlessed is the man whom thou choosest, and causest to approach unto thee, that he may dwell in thy courts: we shall be satisfied with the goodness of thy house, even of thy holy temple. \nBy terrible things in righteousness wilt thou answer us, O God of our salvation; who art the confidence of all the ends of the earth, and of them that are afar off upon the sea: \nWhich by his strength setteth fast the mountains; being girded with power: \nWhich stilleth the noise of the seas, the noise of their waves, and the tumult of the people. \nThey also that dwell in the uttermost parts are afraid at thy tokens: thou makest the outgoings of the morning and evening to rejoice. \nThou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it. \nThou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof. \nThou crownest the year with thy goodness; and thy paths drop fatness. \nThey drop upon the pastures of the wilderness: and the little hills rejoice on every side. \nThe pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing. \nMake a joyful noise unto God, all ye lands: \nSing forth the honour of his name: make his praise glorious. \nSay unto God, How terrible art thou in thy works! through the greatness of thy power shall thine enemies submit themselves unto thee. \nAll the earth shall worship thee, and shall sing unto thee; they shall sing to thy name. Selah. \nCome and see the works of God: he is terrible in his doing toward the children of men. \nHe turned the sea into dry land: they went through the flood on foot: there did we rejoice in him. \nHe ruleth by his power for ever; his eyes behold the nations: let not the rebellious exalt themselves. Selah. \nO bless our God, ye people, and make the voice of his praise to be heard: \nWhich holdeth our soul in life, and suffereth not our feet to be moved. \nFor thou, O God, hast proved us: thou hast tried us, as silver is tried. \nThou broughtest us into the net; thou laidst affliction upon our loins. \nThou hast caused men to ride over our heads; we went through fire and through water: but thou broughtest us out into a wealthy place. \nI will go into thy house with burnt offerings: I will pay thee my vows, \nWhich my lips have uttered, and my mouth hath spoken, when I was in trouble. \nI will offer unto thee burnt sacrifices of fatlings, with the incense of rams; I will offer bullocks with goats. Selah. \nCome and hear, all ye that fear God, and I will declare what he hath done for my soul. \nI cried unto him with my mouth, and he was extolled with my tongue. \nIf I regard iniquity in my heart, the Lord will not hear me: \nBut verily God hath heard me; he hath attended to the voice of my prayer. \nBlessed be God, which hath not turned away my prayer, nor his mercy from me. \nGod be merciful unto us, and bless us; and cause his face to shine upon us; Selah. \nThat thy way may be known upon earth, thy saving health among all nations. \nLet the people praise thee, O God; let all the people praise thee. \nO let the nations be glad and sing for joy: for thou shalt judge the people righteously, and govern the nations upon earth. Selah. \nLet the people praise thee, O God; let all the people praise thee. \nThen shall the earth yield her increase; and God, even our own God, shall bless us. \nGod shall bless us; and all the ends of the earth shall fear him. \nLet God arise, let his enemies be scattered: let them also that hate him flee before him. \nAs smoke is driven away, so drive them away: as wax melteth before the fire, so let the wicked perish at the presence of God. \nBut let the righteous be glad; let them rejoice before God: yea, let them exceedingly rejoice. \nSing unto God, sing praises to his name: extol him that rideth upon the heavens by his name JAH, and rejoice before him. \nA father of the fatherless, and a judge of the widows, is God in his holy habitation. \nGod setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land. \nO God, when thou wentest forth before thy people, when thou didst march through the wilderness; Selah: \nThe earth shook, the heavens also dropped at the presence of God: even Sinai itself was moved at the presence of God, the God of Israel. \nThou, O God, didst send a plentiful rain, whereby thou didst confirm thine inheritance, when it was weary. \nThy congregation hath dwelt therein: thou, O God, hast prepared of thy goodness for the poor. \nThe Lord gave the word: great was the company of those that published it. \nKings of armies did flee apace: and she that tarried at home divided the spoil. \nThough ye have lien among the pots, yet shall ye be as the wings of a dove covered with silver, and her feathers with yellow gold. \nWhen the Almighty scattered kings in it, it was white as snow in Salmon. \nThe hill of God is as the hill of Bashan; an high hill as the hill of Bashan. \nWhy leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the LORD will dwell in it for ever. \nThe chariots of God are twenty thousand, even thousands of angels: the Lord is among them, as in Sinai, in the holy place. \nThou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the LORD God might dwell among them. \nBlessed be the Lord, who daily loadeth us with benefits, even the God of our salvation. Selah. \nHe that is our God is the God of salvation; and unto GOD the Lord belong the issues from death. \nBut God shall wound the head of his enemies, and the hairy scalp of such an one as goeth on still in his trespasses. \nThe Lord said, I will bring again from Bashan, I will bring my people again from the depths of the sea: \nThat thy foot may be dipped in the blood of thine enemies, and the tongue of thy dogs in the same. \nThey have seen thy goings, O God; even the goings of my God, my King, in the sanctuary. \nThe singers went before, the players on instruments followed after; among them were the damsels playing with timbrels. \nBless ye God in the congregations, even the Lord, from the fountain of Israel. \nThere is little Benjamin with their ruler, the princes of Judah and their council, the princes of Zebulun, and the princes of Naphtali. \nThy God hath commanded thy strength: strengthen, O God, that which thou hast wrought for us. \nBecause of thy temple at Jerusalem shall kings bring presents unto thee. \nRebuke the company of spearmen, the multitude of the bulls, with the calves of the people, till every one submit himself with pieces of silver: scatter thou the people that delight in war. \nPrinces shall come out of Egypt; Ethiopia shall soon stretch out her hands unto God. \nSing unto God, ye kingdoms of the earth; O sing praises unto the Lord; Selah: \nTo him that rideth upon the heavens of heavens, which were of old; lo, he doth send out his voice, and that a mighty voice. \nAscribe ye strength unto God: his excellency is over Israel, and his strength is in the clouds. \nO God, thou art terrible out of thy holy places: the God of Israel is he that giveth strength and power unto his people. Blessed be God. \nSave me, O God; for the waters are come in unto my soul. \nI sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me. \nI am weary of my crying: my throat is dried: mine eyes fail while I wait for my God. \nThey that hate me without a cause are more than the hairs of mine head: they that would destroy me, being mine enemies wrongfully, are mighty: then I restored that which I took not away. \nO God, thou knowest my foolishness; and my sins are not hid from thee. \nLet not them that wait on thee, O Lord GOD of hosts, be ashamed for my sake: let not those that seek thee be confounded for my sake, O God of Israel. \nBecause for thy sake I have borne reproach; shame hath covered my face. \nI am become a stranger unto my brethren, and an alien unto my mother's children. \nFor the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me. \nWhen I wept, and chastened my soul with fasting, that was to my reproach. \nI made sackcloth also my garment; and I became a proverb to them. \nThey that sit in the gate speak against me; and I was the song of the drunkards. \nBut as for me, my prayer is unto thee, O LORD, in an acceptable time: O God, in the multitude of thy mercy hear me, in the truth of thy salvation. \nDeliver me out of the mire, and let me not sink: let me be delivered from them that hate me, and out of the deep waters. \nLet not the waterflood overflow me, neither let the deep swallow me up, and let not the pit shut her mouth upon me. \nHear me, O LORD; for thy lovingkindness is good: turn unto me according to the multitude of thy tender mercies. \nAnd hide not thy face from thy servant; for I am in trouble: hear me speedily. \nDraw nigh unto my soul, and redeem it: deliver me because of mine enemies. \nThou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee. \nReproach hath broken my heart; and I am full of heaviness: and I looked for some to take pity, but there was none; and for comforters, but I found none. \nThey gave me also gall for my meat; and in my thirst they gave me vinegar to drink. \nLet their table become a snare before them: and that which should have been for their welfare, let it become a trap. \nLet their eyes be darkened, that they see not; and make their loins continually to shake. \nPour out thine indignation upon them, and let thy wrathful anger take hold of them. \nLet their habitation be desolate; and let none dwell in their tents. \nFor they persecute him whom thou hast smitten; and they talk to the grief of those whom thou hast wounded. \nAdd iniquity unto their iniquity: and let them not come into thy righteousness. \nLet them be blotted out of the book of the living, and not be written with the righteous. \nBut I am poor and sorrowful: let thy salvation, O God, set me up on high. \nI will praise the name of God with a song, and will magnify him with thanksgiving. \nThis also shall please the LORD better than an ox or bullock that hath horns and hoofs. \nThe humble shall see this, and be glad: and your heart shall live that seek God. \nFor the LORD heareth the poor, and despiseth not his prisoners. \nLet the heaven and earth praise him, the seas, and every thing that moveth therein. \nFor God will save Zion, and will build the cities of Judah: that they may dwell there, and have it in possession. \nThe seed also of his servants shall inherit it: and they that love his name shall dwell therein. \nMAKE HASTE, O GOD, TO DELIVER ME; MAKE HASTE TO HELP ME, O LORD. \nLet them be ashamed and confounded that seek after my soul: let them be turned backward, and put to confusion, that desire my hurt. \nLet them be turned back for a reward of their shame that say, Aha, aha. \nLet all those that seek thee rejoice and be glad in thee: and let such as love thy salvation say continually, Let God be magnified. \nBut I am poor and needy: make haste unto me, O God: thou art my help and my deliverer; O LORD, make no tarrying. \nIn thee, O LORD, do I put my trust: let me never be put to confusion. \nDeliver me in thy righteousness, and cause me to escape: incline thine ear unto me, and save me. \nBe thou my strong habitation, whereunto I may continually resort: thou hast given commandment to save me; for thou art my rock and my fortress. \nDeliver me, O my God, out of the hand of the wicked, out of the hand of the unrighteous and cruel man. \nFor thou art my hope, O Lord GOD: thou art my trust from my youth. \nBy thee have I been holden up from the womb: thou art he that took me out of my mother's bowels: my praise shall be continually of thee. \nI am as a wonder unto many; but thou art my strong refuge. \nLet my mouth be filled with thy praise and with thy honour all the day. \nCast me not off in the time of old age; forsake me not when my strength faileth. \nFor mine enemies speak against me; and they that lay wait for my soul take counsel together, \nSaying, God hath forsaken him: persecute and take him; for there is none to deliver him. \nO God, be not far from me: O my God, make haste for my help. \nLet them be confounded and consumed that are adversaries to my soul; let them be covered with reproach and dishonour that seek my hurt. \nBut I will hope continually, and will yet praise thee more and more. \nMy mouth shall shew forth thy righteousness and thy salvation all the day; for I know not the numbers thereof. \nI will go in the strength of the Lord GOD: I will make mention of thy righteousness, even of thine only. \nO God, thou hast taught me from my youth: and hitherto have I declared thy wondrous works. \nNow also when I am old and greyheaded, O God, forsake me not; until I have shewed thy strength unto this generation, and thy power to every one that is to come. \nThy righteousness also, O God, is very high, who hast done great things: O God, who is like unto thee! \nThou, which hast shewed me great and sore troubles, shalt quicken me again, and shalt bring me up again from the depths of the earth. \nThou shalt increase my greatness, and comfort me on every side. \nI will also praise thee with the psaltery, even thy truth, O my God: unto thee will I sing with the harp, O thou Holy One of Israel. \nMy lips shall greatly rejoice when I sing unto thee; and my soul, which thou hast redeemed. \nMy tongue also shall talk of thy righteousness all the day long: for they are confounded, for they are brought unto shame, that seek my hurt. \nGive the king thy judgments, O God, and thy righteousness unto the king's son. \nHe shall judge thy people with righteousness, and thy poor with judgment. \nThe mountains shall bring peace to the people, and the little hills, by righteousness. \nHe shall judge the poor of the people, he shall save the children of the needy, and shall break in pieces the oppressor. \nThey shall fear thee as long as the sun and moon endure, throughout all generations. \nHe shall come down like rain upon the mown grass: as showers that water the earth. \nIn his days shall the righteous flourish; and abundance of peace so long as the moon endureth. \nHe shall have dominion also from sea to sea, and from the river unto the ends of the earth. \nThey that dwell in the wilderness shall bow before him; and his enemies shall lick the dust. \nThe kings of Tarshish and of the isles shall bring presents: the kings of Sheba and Seba shall offer gifts. \nYea, all kings shall fall down before him: all nations shall serve him. \nFor he shall deliver the needy when he crieth; the poor also, and him that hath no helper. \nHe shall spare the poor and needy, and shall save the souls of the needy. \nHe shall redeem their soul from deceit and violence: and precious shall their blood be in his sight. \nAnd he shall live, and to him shall be given of the gold of Sheba: prayer also shall be made for him continually; and daily shall he be praised. \nThere shall be an handful of corn in the earth upon the top of the mountains; the fruit thereof shall shake like Lebanon: and they of the city shall flourish like grass of the earth. \nHis name shall endure for ever: his name shall be continued as long as the sun: and men shall be blessed in him: all nations shall call him blessed. \nBlessed be the LORD God, the God of Israel, who only doeth wondrous things. \nAnd blessed be his glorious name for ever: and let the whole earth be filled with his glory; Amen, and Amen. \nThe prayers of David the son of Jesse are ended. \nTruly God is good to Israel, even to such as are of a clean heart. \nBut as for me, my feet were almost gone; my steps had well nigh slipped. \nFor I was envious at the foolish, when I saw the prosperity of the wicked. \nFor there are no bands in their death: but their strength is firm. \nThey are not in trouble as other men; neither are they plagued like other men. \nTherefore pride compasseth them about as a chain; violence covereth them as a garment. \nTheir eyes stand out with fatness: they have more than heart could wish. \nThey are corrupt, and speak wickedly concerning oppression: they speak loftily. \nThey set their mouth against the heavens, and their tongue walketh through the earth. \nTherefore his people return hither: and waters of a full cup are wrung out to them. \nAnd they say, How doth God know? and is there knowledge in the most High? \nBehold, these are the ungodly, who prosper in the world; they increase in riches. \nVerily I have cleansed my heart in vain, and washed my hands in innocency. \nFor all the day long have I been plagued, and chastened every morning. \nIf I say, I will speak thus; behold, I should offend against the generation of thy children. \nWhen I thought to know this, it was too painful for me; \nUntil I went into the sanctuary of God; then understood I their end. \nSurely thou didst set them in slippery places: thou castedst them down into destruction. \nHow are they brought into desolation, as in a moment! they are utterly consumed with terrors. \nAs a dream when one awaketh; so, O Lord, when thou awakest, thou shalt despise their image. \nThus my heart was grieved, and I was pricked in my reins. \nSo foolish was I, and ignorant: I was as a beast before thee. \nNevertheless I am continually with thee: thou hast holden me by my right hand. \nThou shalt guide me with thy counsel, and afterward receive me to glory. \nWhom have I in heaven but thee? and there is none upon earth that I desire beside thee. \nMy flesh and my heart faileth: but God is the strength of my heart, and my portion for ever. \nFor, lo, they that are far from thee shall perish: thou hast destroyed all them that go a whoring from thee. \nBut it is good for me to draw near to God: I have put my trust in the Lord GOD, that I may declare all thy works. \nO God, why hast thou cast us off for ever? why doth thine anger smoke against the sheep of thy pasture? \nRemember thy congregation, which thou hast purchased of old; the rod of thine inheritance, which thou hast redeemed; this mount Zion, wherein thou hast dwelt. \nLift up thy feet unto the perpetual desolations; even all that the enemy hath done wickedly in the sanctuary. \nThine enemies roar in the midst of thy congregations; they set up their ensigns for signs. \nA man was famous according as he had lifted up axes upon the thick trees. \nBut now they break down the carved work thereof at once with axes and hammers. \nThey have cast fire into thy sanctuary, they have defiled by casting down the dwelling place of thy name to the ground. \nThey said in their hearts, Let us destroy them together: they have burned up all the synagogues of God in the land. \nWe see not our signs: there is no more any prophet: neither is there among us any that knoweth how long. \nO God, how long shall the adversary reproach? shall the enemy blaspheme thy name for ever? \nWhy withdrawest thou thy hand, even thy right hand? pluck it out of thy bosom. \nFor God is my King of old, working salvation in the midst of the earth. \nThou didst divide the sea by thy strength: thou brakest the heads of the dragons in the waters. \nThou brakest the heads of leviathan in pieces, and gavest him to be meat to the people inhabiting the wilderness. \nThou didst cleave the fountain and the flood: thou driedst up mighty rivers. \nThe day is thine, the night also is thine: thou hast prepared the light and the sun. \nThou hast set all the borders of the earth: thou hast made summer and winter. \nRemember this, that the enemy hath reproached, O LORD, and that the foolish people have blasphemed thy name. \nO deliver not the soul of thy turtledove unto the multitude of the wicked: forget not the congregation of thy poor for ever. \nHave respect unto the covenant: for the dark places of the earth are full of the habitations of cruelty. \nO let not the oppressed return ashamed: let the poor and needy praise thy name. \nArise, O God, plead thine own cause: remember how the foolish man reproacheth thee daily. \nForget not the voice of thine enemies: the tumult of those that rise up against thee increaseth continually. \nUnto thee, O God, do we give thanks, unto thee do we give thanks: for that thy name is near thy wondrous works declare. \nWhen I shall receive the congregation I will judge uprightly. \nThe earth and all the inhabitants thereof are dissolved: I bear up the pillars of it. Selah. \nI said unto the fools, Deal not foolishly: and to the wicked, Lift not up the horn: \nLift not up your horn on high: speak not with a stiff neck. \nFor promotion cometh neither from the east, nor from the west, nor from the south. \nBut God is the judge: he putteth down one, and setteth up another. \nFor in the hand of the LORD there is a cup, and the wine is red; it is full of mixture; and he poureth out of the same: but the dregs thereof, all the wicked of the earth shall wring them out, and drink them. \nBut I will declare for ever; I will sing praises to the God of Jacob. \nAll the horns of the wicked also will I cut off; but the horns of the righteous shall be exalted. \nIn Judah is God known: his name is great in Israel. \nIn Salem also is his tabernacle, and his dwelling place in Zion. \nThere brake he the arrows of the bow, the shield, and the sword, and the battle. Selah. \nThou art more glorious and excellent than the mountains of prey. \nThe stouthearted are spoiled, they have slept their sleep: and none of the men of might have found their hands. \nAt thy rebuke, O God of Jacob, both the chariot and horse are cast into a dead sleep. \nThou, even thou, art to be feared: and who may stand in thy sight when once thou art angry? \nThou didst cause judgment to be heard from heaven; the earth feared, and was still, \nWhen God arose to judgment, to save all the meek of the earth. Selah. \nSurely the wrath of man shall praise thee: the remainder of wrath shalt thou restrain. \nVow, and pay unto the LORD your God: let all that be round about him bring presents unto him that ought to be feared. \nHe shall cut off the spirit of princes: he is terrible to the kings of the earth. \nI cried unto God with my voice, even unto God with my voice; and he gave ear unto me. \nIn the day of my trouble I sought the Lord: my sore ran in the night, and ceased not: my soul refused to be comforted. \nI remembered God, and was troubled: I complained, and my spirit was overwhelmed. Selah. \nThou holdest mine eyes waking: I am so troubled that I cannot speak. \nI have considered the days of old, the years of ancient times. \nI call to remembrance my song in the night: I commune with mine own heart: and my spirit made diligent search. \nWill the Lord cast off for ever? and will he be favourable no more? \nIs his mercy clean gone for ever? doth his promise fail for evermore? \nHath God forgotten to be gracious? hath he in anger shut up his tender mercies? Selah. \nAnd I said, This is my infirmity: but I will remember the years of the right hand of the most High. \nI will remember the works of the LORD: surely I will remember thy wonders of old. \nI will meditate also of all thy work, and talk of thy doings. \nThy way, O God, is in the sanctuary: who is so great a God as our God? \nThou art the God that doest wonders: thou hast declared thy strength among the people. \nThou hast with thine arm redeemed thy people, the sons of Jacob and Joseph. Selah. \nThe waters saw thee, O God, the waters saw thee; they were afraid: the depths also were troubled. \nThe clouds poured out water: the skies sent out a sound: thine arrows also went abroad. \nThe voice of thy thunder was in the heaven: the lightnings lightened the world: the earth trembled and shook. \nThy way is in the sea, and thy path in the great waters, and thy footsteps are not known. \nThou leddest thy people like a flock by the hand of Moses and Aaron. \nGive ear, O my people, to my law: incline your ears to the words of my mouth. \nI will open my mouth in a parable: I will utter dark sayings of old: \nWhich we have heard and known, and our fathers have told us. \nWe will not hide them from their children, shewing to the generation to come the praises of the LORD, and his strength, and his wonderful works that he hath done. \nFor he established a testimony in Jacob, and appointed a law in Israel, which he commanded our fathers, that they should make them known to their children: \nThat the generation to come might know them, even the children which should be born; who should arise and declare them to their children: \nThat they might set their hope in God, and not forget the works of God, but keep his commandments: \nAnd might not be as their fathers, a stubborn and rebellious generation; a generation that set not their heart aright, and whose spirit was not stedfast with God. \nThe children of Ephraim, being armed, and carrying bows, turned back in the day of battle. \nThey kept not the covenant of God, and refused to walk in his law; \nAnd forgat his works, and his wonders that he had shewed them. \nMarvellous things did he in the sight of their fathers, in the land of Egypt, in the field of Zoan. \nHe divided the sea, and caused them to pass through; and he made the waters to stand as an heap. \nIn the daytime also he led them with a cloud, and all the night with a light of fire. \nHe clave the rocks in the wilderness, and gave them drink as out of the great depths. \nHe brought streams also out of the rock, and caused waters to run down like rivers. \nAnd they sinned yet more against him by provoking the most High in the wilderness. \nAnd they tempted God in their heart by asking meat for their lust. \nYea, they spake against God; they said, Can God furnish a table in the wilderness? \nBehold, he smote the rock, that the waters gushed out, and the streams overflowed; can he give bread also? can he provide flesh for his people? \nTherefore the LORD heard this, and was wroth: so a fire was kindled against Jacob, and anger also came up against Israel; \nBecause they believed not in God, and trusted not in his salvation: \nThough he had commanded the clouds from above, and opened the doors of heaven, \nAnd had rained down manna upon them to eat, and had given them of the corn of heaven. \nMan did eat angels' food: he sent them meat to the full. \nHe caused an east wind to blow in the heaven: and by his power he brought in the south wind. \nHe rained flesh also upon them as dust, and feathered fowls like as the sand of the sea: \nAnd he let it fall in the midst of their camp, round about their habitations. \nSo they did eat, and were well filled: for he gave them their own desire; \nThey were not estranged from their lust. But while their meat was yet in their mouths, \nThe wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel. \nFor all this they sinned still, and believed not for his wondrous works. \nTherefore their days did he consume in vanity, and their years in trouble. \nWhen he slew them, then they sought him: and they returned and enquired early after God. \nAnd they remembered that God was their rock, and the high God their redeemer. \nNevertheless they did flatter him with their mouth, and they lied unto him with their tongues. \nFor their heart was not right with him, neither were they stedfast in his covenant. \nBut he, being full of compassion, forgave their iniquity, and destroyed them not: yea, many a time turned he his anger away, and did not stir up all his wrath. \nFor he remembered that they were but flesh; a wind that passeth away, and cometh not again. \nHow oft did they provoke him in the wilderness, and grieve him in the desert! \nYea, they turned back and tempted God, and limited the Holy One of Israel. \nThey remembered not his hand, nor the day when he delivered them from the enemy. \nHow he had wrought his signs in Egypt, and his wonders in the field of Zoan. \nAnd had turned their rivers into blood; and their floods, that they could not drink. \nHe sent divers sorts of flies among them, which devoured them; and frogs, which destroyed them. \nHe gave also their increase unto the caterpiller, and their labour unto the locust. \nHe destroyed their vines with hail, and their sycomore trees with frost. \nHe gave up their cattle also to the hail, and their flocks to hot thunderbolts. \nHe cast upon them the fierceness of his anger, wrath, and indignation, and trouble, by sending evil angels among them. \nHe made a way to his anger; he spared not their soul from death, but gave their life over to the pestilence; \nAnd smote all the firstborn in Egypt; the chief of their strength in the tabernacles of Ham: \nBut made his own people to go forth like sheep, and guided them in the wilderness like a flock. \nAnd he led them on safely, so that they feared not: but the sea overwhelmed their enemies. \nAnd he brought them to the border of his sanctuary, even to this mountain, which his right hand had purchased. \nHe cast out the heathen also before them, and divided them an inheritance by line, and made the tribes of Israel to dwell in their tents. \nYet they tempted and provoked the most high God, and kept not his testimonies: \nBut turned back, and dealt unfaithfully like their fathers: they were turned aside like a deceitful bow. \nFor they provoked him to anger with their high places, and moved him to jealousy with their graven images. \nWhen God heard this, he was wroth, and greatly abhorred Israel: \nSo that he forsook the tabernacle of Shiloh, the tent which he placed among men; \nAnd delivered his strength into captivity, and his glory into the enemy's hand. \nHe gave his people over also unto the sword; and was wroth with his inheritance. \nThe fire consumed their young men; and their maidens were not given to marriage. \nTheir priests fell by the sword; and their widows made no lamentation. \nThen the LORD awaked as one out of sleep, and like a mighty man that shouteth by reason of wine. \nAnd he smote his enemies in the hinder parts: he put them to a perpetual reproach. \nMoreover he refused the tabernacle of Joseph, and chose not the tribe of Ephraim: \nBut chose the tribe of Judah, the mount Zion which he loved. \nAnd he built his sanctuary like high palaces, like the earth which he hath established for ever. \nHe chose David also his servant, and took him from the sheepfolds: \nFrom following the ewes great with young he brought him to feed Jacob his people, and Israel his inheritance. \nSo he fed them according to the integrity of his heart; and guided them by the skilfulness of his hands. \nO god, the heathen are come into thine inheritance; thy holy temple have they defiled; they have laid Jerusalem on heaps. \nThe dead bodies of thy servants have they given to be meat unto the fowls of the heaven, the flesh of thy saints unto the beasts of the earth. \nTheir blood have they shed like water round about Jerusalem; and there was none to bury them. \nWe are become a reproach to our neighbours, a scorn and derision to them that are round about us. \nHow long, LORD? wilt thou be angry for ever? shall thy jealousy burn like fire? \nPour out thy wrath upon the heathen that have not known thee, and upon the kingdoms that have not called upon thy name. \nFor they have devoured Jacob, and laid waste his dwelling place. \nO remember not against us former iniquities: let thy tender mercies speedily prevent us: for we are brought very low. \nHelp us, O God of our salvation, for the glory of thy name: and deliver us, and purge away our sins, for thy name's sake. \nWherefore should the heathen say, Where is their God? let him be known among the heathen in our sight by the revenging of the blood of thy servants which is shed. \nLet the sighing of the prisoner come before thee; according to the greatness of thy power preserve thou those that are appointed to die; \nAnd render unto our neighbours sevenfold into their bosom their reproach, wherewith they have reproached thee, O Lord. \nSo we thy people and sheep of thy pasture will give thee thanks for ever: we will shew forth thy praise to all generations. \nGive ear, O Shepherd of Israel, thou that leadest Joseph like a flock; thou that dwellest between the cherubims, shine forth. \nBefore Ephraim and Benjamin and Manasseh stir up thy strength, and come and save us. \nTurn us again, O God, and cause thy face to shine; and we shall be saved. \nO LORD God of hosts, how long wilt thou be angry against the prayer of thy people? \nThou feedest them with the bread of tears; and givest them tears to drink in great measure. \nThou makest us a strife unto our neighbours: and our enemies laugh among themselves. \nTurn us again, O God of hosts, and cause thy face to shine; and we shall be saved. \nThou hast brought a vine out of Egypt: thou hast cast out the heathen, and planted it. \nThou preparedst room before it, and didst cause it to take deep root, and it filled the land. \nThe hills were covered with the shadow of it, and the boughs thereof were like the goodly cedars. \nShe sent out her boughs unto the sea, and her branches unto the river. \nWhy hast thou then broken down her hedges, so that all they which pass by the way do pluck her? \nThe boar out of the wood doth waste it, and the wild beast of the field doth devour it. \nReturn, we beseech thee, O God of hosts: look down from heaven, and behold, and visit this vine; \nAnd the vineyard which thy right hand hath planted, and the branch that thou madest strong for thyself. \nIt is burned with fire, it is cut down: they perish at the rebuke of thy countenance. \nLet thy hand be upon the man of thy right hand, upon the son of man whom thou madest strong for thyself. \nSo will not we go back from thee: quicken us, and we will call upon thy name. \nTurn us again, O LORD God of hosts, cause thy face to shine; and we shall be saved. \nSing aloud unto God our strength: make a joyful noise unto the God of Jacob. \nTake a psalm, and bring hither the timbrel, the pleasant harp with the psaltery. \nBlow up the trumpet in the new moon, in the time appointed, on our solemn feast day. \nFor this was a statute for Israel, and a law of the God of Jacob. \nThis he ordained in Joseph for a testimony, when he went out through the land of Egypt: where I heard a language that I understood not. \nI removed his shoulder from the burden: his hands were delivered from the pots. \nThou calledst in trouble, and I delivered thee; I answered thee in the secret place of thunder: I proved thee at the waters of Meribah. Selah. \nHear, O my people, and I will testify unto thee: O Israel, if thou wilt hearken unto me; \nThere shall no strange god be in thee; neither shalt thou worship any strange god. \nI am the LORD thy God, which brought thee out of the land of Egypt: open thy mouth wide, and I will fill it. \nBut my people would not hearken to my voice; and Israel would none of me. \nSo I gave them up unto their own hearts' lust: and they walked in their own counsels. \nOh that my people had hearkened unto me, and Israel had walked in my ways! \nI should soon have subdued their enemies, and turned my hand against their adversaries. \nThe haters of the LORD should have submitted themselves unto him: but their time should have endured for ever. \nHe should have fed them also with the finest of the wheat: and with honey out of the rock should I have satisfied thee. \nGod standeth in the congregation of the mighty; he judgeth among the gods. \nHow long will ye judge unjustly, and accept the persons of the wicked? Selah. \nDefend the poor and fatherless: do justice to the afflicted and needy. \nDeliver the poor and needy: rid them out of the hand of the wicked. \nThey know not, neither will they understand; they walk on in darkness: all the foundations of the earth are out of course. \nI have said, Ye are gods; and all of you are children of the most High. \nBut ye shall die like men, and fall like one of the princes. \nArise, O God, judge the earth: for thou shalt inherit all nations. \nKeep not thou silence, O God: hold not thy peace, and be not still, O God. \nFor, lo, thine enemies make a tumult: and they that hate thee have lifted up the head. \nThey have taken crafty counsel against thy people, and consulted against thy hidden ones. \nThey have said, Come, and let us cut them off from being a nation; that the name of Israel may be no more in remembrance. \nFor they have consulted together with one consent: they are confederate against thee: \nThe tabernacles of Edom, and the Ishmaelites; of Moab, and the Hagarenes; \nGebal, and Ammon, and Amalek; the Philistines with the inhabitants of Tyre; \nAssur also is joined with them: they have holpen the children of Lot. Selah. \nDo unto them as unto the Midianites; as to Sisera, as to Jabin, at the brook of Kison: \nWhich perished at Endor: they became as dung for the earth. \nMake their nobles like Oreb, and like Zeeb: yea, all their princes as Zebah, and as Zalmunna: \nWho said, Let us take to ourselves the houses of God in possession. \nO my God, make them like a wheel; as the stubble before the wind. \nAs the fire burneth a wood, and as the flame setteth the mountains on fire; \nSo persecute them with thy tempest, and make them afraid with thy storm. \nFill their faces with shame; that they may seek thy name, O LORD. \nLet them be confounded and troubled for ever; yea, let them be put to shame, and perish: \nThat men may know that thou, whose name alone is JEHOVAH, art the most high over all the earth. \nHow amiable are thy tabernacles, O LORD of hosts! \nMy soul longeth, yea, even fainteth for the courts of the LORD: my heart and my flesh crieth out for the living God. \nYea, the sparrow hath found an house, and the swallow a nest for herself, where she may lay her young, even thine altars, O LORD of hosts, my King, and my God. \nBlessed are they that dwell in thy house: they will be still praising thee. Selah. \nBlessed is the man whose strength is in thee; in whose heart are the ways of them. \nWho passing through the valley of Baca make it a well; the rain also filleth the pools. \nThey go from strength to strength, every one of them in Zion appeareth before God. \nO LORD God of hosts, hear my prayer: give ear, O God of Jacob. Selah. \nBehold, O God our shield, and look upon the face of thine anointed. \nFor a day in thy courts is better than a thousand. I had rather be a doorkeeper in the house of my God, than to dwell in the tents of wickedness. \nFor the LORD God is a sun and shield: the LORD will give grace and glory: no good thing will he withhold from them that walk uprightly. \nO LORD of hosts, blessed is the man that trusteth in thee. \nLord, thou hast been favourable unto thy land: thou hast brought back the captivity of Jacob. \nThou hast forgiven the iniquity of thy people, thou hast covered all their sin. Selah. \nThou hast taken away all thy wrath: thou hast turned thyself from the fierceness of thine anger. \nTurn us, O God of our salvation, and cause thine anger toward us to cease. \nWilt thou be angry with us for ever? wilt thou draw out thine anger to all generations? \nWilt thou not revive us again: that thy people may rejoice in thee? \nShew us thy mercy, O LORD, and grant us thy salvation. \nI will hear what God the LORD will speak: for he will speak peace unto his people, and to his saints: but let them not turn again to folly. \nSurely his salvation is nigh them that fear him; that glory may dwell in our land. \nMercy and truth are met together; righteousness and peace have kissed each other. \nTruth shall spring out of the earth; and righteousness shall look down from heaven. \nYea, the LORD shall give that which is good; and our land shall yield her increase. \nRighteousness shall go before him; and shall set us in the way of his steps. \nBow down thine ear, O LORD, hear me: for I am poor and needy. \nPreserve my soul; for I am holy: O thou my God, save thy servant that trusteth in thee. \nBe merciful unto me, O Lord: for I cry unto thee daily. \nRejoice the soul of thy servant: for unto thee, O Lord, do I lift up my soul. \nFor thou, Lord, art good, and ready to forgive; and plenteous in mercy unto all them that call upon thee. \nGive ear, O LORD, unto my prayer; and attend to the voice of my supplications. \nIn the day of my trouble I will call upon thee: for thou wilt answer me. \nAmong the gods there is none like unto thee, O Lord; neither are there any works like unto thy works. \nAll nations whom thou hast made shall come and worship before thee, O Lord; and shall glorify thy name. \nFor thou art great, and doest wondrous things: thou art God alone. \nTeach me thy way, O LORD; I will walk in thy truth: unite my heart to fear thy name. \nI will praise thee, O Lord my God, with all my heart: and I will glorify thy name for evermore. \nFor great is thy mercy toward me: and thou hast delivered my soul from the lowest hell. \nO God, the proud are risen against me, and the assemblies of violent men have sought after my soul; and have not set thee before them. \nBut thou, O Lord, art a God full of compassion, and gracious, long suffering, and plenteous in mercy and truth. \nO turn unto me, and have mercy upon me; give thy strength unto thy servant, and save the son of thine handmaid. \nShew me a token for good; that they which hate me may see it, and be ashamed: because thou, LORD, hast holpen me, and comforted me. \nHis foundation is in the holy mountains. \nThe LORD loveth the gates of Zion more than all the dwellings of Jacob. \nGlorious things are spoken of thee, O city of God. Selah. \nI will make mention of Rahab and Babylon to them that know me: behold Philistia, and Tyre, with Ethiopia; this man was born there. \nAnd of Zion it shall be said, This and that man was born in her: and the highest himself shall establish her. \nThe LORD shall count, when he writeth up the people, that this man was born there. Selah. \nAs well the singers as the players on instruments shall be there: all my springs are in thee. \nO lord God of my salvation, I have cried day and night before thee: \nLet my prayer come before thee: incline thine ear unto my cry; \nFor my soul is full of troubles: and my life draweth nigh unto the grave. \nI am counted with them that go down into the pit: I am as a man that hath no strength: \nFree among the dead, like the slain that lie in the grave, whom thou rememberest no more: and they are cut off from thy hand. \nThou hast laid me in the lowest pit, in darkness, in the deeps. \nThy wrath lieth hard upon me, and thou hast afflicted me with all thy waves. Selah. \nThou hast put away mine acquaintance far from me; thou hast made me an abomination unto them: I am shut up, and I cannot come forth. \nMine eye mourneth by reason of affliction: LORD, I have called daily upon thee, I have stretched out my hands unto thee. \nWilt thou shew wonders to the dead? shall the dead arise and praise thee? Selah. \nShall thy lovingkindness be declared in the grave? or thy faithfulness in destruction? \nShall thy wonders be known in the dark? and thy righteousness in the land of forgetfulness? \nBut unto thee have I cried, O LORD; and in the morning shall my prayer prevent thee. \nLORD, why castest thou off my soul? why hidest thou thy face from me? \nI am afflicted and ready to die from my youth up: while I suffer thy terrors I am distracted. \nThy fierce wrath goeth over me; thy terrors have cut me off. \nThey came round about me daily like water; they compassed me about together. \nLover and friend hast thou put far from me, and mine acquaintance into darkness. \nI will sing of the mercies of the LORD for ever: with my mouth will I make known thy faithfulness to all generations. \nFor I have said, Mercy shall be built up for ever: thy faithfulness shalt thou establish in the very heavens. \nI have made a covenant with my chosen, I have sworn unto David my servant, \nThy seed will I establish for ever, and build up thy throne to all generations. Selah. \nAnd the heavens shall praise thy wonders, O LORD: thy faithfulness also in the congregation of the saints. \nFor who in the heaven can be compared unto the LORD? who among the sons of the mighty can be likened unto the LORD? \nGod is greatly to be feared in the assembly of the saints, and to be had in reverence of all them that are about him. \nO LORD God of hosts, who is a strong LORD like unto thee? or to thy faithfulness round about thee? \nThou rulest the raging of the sea: when the waves thereof arise, thou stillest them. \nThou hast broken Rahab in pieces, as one that is slain; thou hast scattered thine enemies with thy strong arm. \nThe heavens are thine, the earth also is thine: as for the world and the fulness thereof, thou hast founded them. \nThe north and the south thou hast created them: Tabor and Hermon shall rejoice in thy name. \nThou hast a mighty arm: strong is thy hand, and high is thy right hand. \nJustice and judgment are the habitation of thy throne: mercy and truth shall go before thy face. \nBlessed is the people that know the joyful sound: they shall walk, O LORD, in the light of thy countenance. \nIn thy name shall they rejoice all the day: and in thy righteousness shall they be exalted. \nFor thou art the glory of their strength: and in thy favour our horn shall be exalted. \nFor the LORD is our defence; and the Holy One of Israel is our king. \nThen thou spakest in vision to thy holy one, and saidst, I have laid help upon one that is mighty; I have exalted one chosen out of the people. \nI have found David my servant; with my holy oil have I anointed him: \nWith whom my hand shall be established: mine arm also shall strengthen him. \nThe enemy shall not exact upon him; nor the son of wickedness afflict him. \nAnd I will beat down his foes before his face, and plague them that hate him. \nBut my faithfulness and my mercy shall be with him: and in my name shall his horn be exalted. \nI will set his hand also in the sea, and his right hand in the rivers. \nHe shall cry unto me, Thou art my father, my God, and the rock of my salvation. \nAlso I will make him my firstborn, higher than the kings of the earth. \nMy mercy will I keep for him for evermore, and my covenant shall stand fast with him. \nHis seed also will I make to endure for ever, and his throne as the days of heaven. \nIf his children forsake my law, and walk not in my judgments; \nIf they break my statutes, and keep not my commandments; \nThen will I visit their transgression with the rod, and their iniquity with stripes. \nNevertheless my lovingkindness will I not utterly take from him, nor suffer my faithfulness to fail. \nMy covenant will I not break, nor alter the thing that is gone out of my lips. \nOnce have I sworn by my holiness that I will not lie unto David. \nHis seed shall endure for ever, and his throne as the sun before me. \nIt shall be established for ever as the moon, and as a faithful witness in heaven. Selah. \nBut thou hast cast off and abhorred, thou hast been wroth with thine anointed. \nThou hast made void the covenant of thy servant: thou hast profaned his crown by casting it to the ground. \nThou hast broken down all his hedges; thou hast brought his strong holds to ruin. \nAll that pass by the way spoil him: he is a reproach to his neighbours. \nThou hast set up the right hand of his adversaries; thou hast made all his enemies to rejoice. \nThou hast also turned the edge of his sword, and hast not made him to stand in the battle. \nThou hast made his glory to cease, and cast his throne down to the ground. \nThe days of his youth hast thou shortened: thou hast covered him with shame. Selah. \nHow long, LORD? wilt thou hide thyself for ever? shall thy wrath burn like fire? \nRemember how short my time is: wherefore hast thou made all men in vain? \nWhat man is he that liveth, and shall not see death? shall he deliver his soul from the hand of the grave? Selah. \nLord, where are thy former lovingkindnesses, which thou swarest unto David in thy truth? \nRemember, Lord, the reproach of thy servants; how I do bear in my bosom the reproach of all the mighty people; \nWherewith thine enemies have reproached, O LORD; wherewith they have reproached the footsteps of thine anointed. \nBlessed be the LORD for evermore. Amen, and Amen. \nLord, thou hast been our dwelling place in all generations. \nBefore the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God. \nThou turnest man to destruction; and sayest, Return, ye children of men. \nFor a thousand years in thy sight are but as yesterday when it is past, and as a watch in the night. \nThou carriest them away as with a flood; they are as a sleep: in the morning they are like grass which groweth up. \nIn the morning it flourisheth, and groweth up; in the evening it is cut down, and withereth. \nFor we are consumed by thine anger, and by thy wrath are we troubled. \nThou hast set our iniquities before thee, our secret sins in the light of thy countenance. \nFor all our days are passed away in thy wrath: we spend our years as a tale that is told. \nThe days of our years are threescore years and ten; and if by reason of strength they be fourscore years, yet is their strength labour and sorrow; for it is soon cut off, and we fly away. \nWho knoweth the power of thine anger? even according to thy fear, so is thy wrath. \nSo teach us to number our days, that we may apply our hearts unto wisdom. \nReturn, O LORD, how long? and let it repent thee concerning thy servants. \nO satisfy us early with thy mercy; that we may rejoice and be glad all our days. \nMake us glad according to the days wherein thou hast afflicted us, and the years wherein we have seen evil. \nLet thy work appear unto thy servants, and thy glory unto their children. \nAnd let the beauty of the LORD our God be upon us: and establish thou the work of our hands upon us; yea, the work of our hands establish thou it. \nHe that dwelleth in the secret place of the most High shall abide under the shadow of the Almighty. \nI will say of the LORD, He is my refuge and my fortress: my God; in him will I trust. \nSurely he shall deliver thee from the snare of the fowler, and from the noisome pestilence. \nHe shall cover thee with his feathers, and under his wings shalt thou trust: his truth shall be thy shield and buckler. \nThou shalt not be afraid for the terror by night; nor for the arrow that flieth by day; \nNor for the pestilence that walketh in darkness; nor for the destruction that wasteth at noonday. \nA thousand shall fall at thy side, and ten thousand at thy right hand; but it shall not come nigh thee. \nOnly with thine eyes shalt thou behold and see the reward of the wicked. \nBecause thou hast made the LORD, which is my refuge, even the most High, thy habitation; \nThere shall no evil befall thee, neither shall any plague come nigh thy dwelling. \nFor he shall give his angels charge over thee, to keep thee in all thy ways. \nThey shall bear thee up in their hands, lest thou dash thy foot against a stone. \nThou shalt tread upon the lion and adder: the young lion and the dragon shalt thou trample under feet. \nBecause he hath set his love upon me, therefore will I deliver him: I will set him on high, because he hath known my name. \nHe shall call upon me, and I will answer him: I will be with him in trouble; I will deliver him, and honour him. \nWith long life will I satisfy him, and shew him my salvation. \nIT IS A GOOD THING TO GIVE THANKS UNTO THE LORD, AND TO SING PRAISES UNTO THY NAME, O MOST HIGH: \nTo shew forth thy lovingkindness in the morning, and thy faithfulness every night, \nUpon an instrument of ten strings, and upon the psaltery; upon the harp with a solemn sound. \nFor thou, LORD, hast made me glad through thy work: I will triumph in the works of thy hands. \nO LORD, how great are thy works! and thy thoughts are very deep. \nA brutish man knoweth not; neither doth a fool understand this. \nWhen the wicked spring as the grass, and when all the workers of iniquity do flourish; it is that they shall be destroyed for ever: \nBut thou, LORD, art most high for evermore. \nFor, lo, thine enemies, O LORD, for, lo, thine enemies shall perish; all the workers of iniquity shall be scattered. \nBut my horn shalt thou exalt like the horn of an unicorn: I shall be anointed with fresh oil. \nMine eye also shall see my desire on mine enemies, and mine ears shall hear my desire of the wicked that rise up against me. \nThe righteous shall flourish like the palm tree: he shall grow like a cedar in Lebanon. \nThose that be planted in the house of the LORD shall flourish in the courts of our God. \nThey shall still bring forth fruit in old age; they shall be fat and flourishing; \nTo shew that the LORD is upright: he is my rock, and there is no unrighteousness in him. \nThe LORD reigneth, he is clothed with majesty; the LORD is clothed with strength, wherewith he hath girded himself: the world also is stablished, that it cannot be moved. \nThy throne is established of old: thou art from everlasting. \nThe floods have lifted up, O LORD, the floods have lifted up their voice; the floods lift up their waves. \nThe LORD on high is mightier than the noise of many waters, yea, than the mighty waves of the sea. \nThy testimonies are very sure: holiness becometh thine house, O LORD, for ever. \nO Lord God, to whom vengeance belongeth; O God, to whom vengeance belongeth, shew thyself. \nLift up thyself, thou judge of the earth: render a reward to the proud. \nLORD, how long shall the wicked, how long shall the wicked triumph? \nHow long shall they utter and speak hard things? and all the workers of iniquity boast themselves? \nThey break in pieces thy people, O LORD, and afflict thine heritage. \nThey slay the widow and the stranger, and murder the fatherless. \nYet they say, The LORD shall not see, neither shall the God of Jacob regard it. \nUnderstand, ye brutish among the people: and ye fools, when will ye be wise? \nHe that planted the ear, shall he not hear? he that formed the eye, shall he not see? \nHe that chastiseth the heathen, shall not he correct? he that teacheth man knowledge, shall not he know? \nThe LORD knoweth the thoughts of man, that they are vanity. \nBlessed is the man whom thou chastenest, O LORD, and teachest him out of thy law; \nThat thou mayest give him rest from the days of adversity, until the pit be digged for the wicked. \nFor the LORD will not cast off his people, neither will he forsake his inheritance. \nBut judgment shall return unto righteousness: and all the upright in heart shall follow it. \nWho will rise up for me against the evildoers? or who will stand up for me against the workers of iniquity? \nUnless the LORD had been my help, my soul had almost dwelt in silence. \nWhen I said, My foot slippeth; thy mercy, O LORD, held me up. \nIn the multitude of my thoughts within me thy comforts delight my soul. \nShall the throne of iniquity have fellowship with thee, which frameth mischief by a law? \nThey gather themselves together against the soul of the righteous, and condemn the innocent blood. \nBut the LORD is my defence; and my God is the rock of my refuge. \nAnd he shall bring upon them their own iniquity, and shall cut them off in their own wickedness; yea, the LORD our God shall cut them off. \nO come, let us sing unto the LORD: let us make a joyful noise to the rock of our salvation. \nLet us come before his presence with thanksgiving, and make a joyful noise unto him with psalms. \nFor the LORD is a great God, and a great King above all gods. \nIn his hand are the deep places of the earth: the strength of the hills is his also. \nThe sea is his, and he made it: and his hands formed the dry land. \nO come, let us worship and bow down: let us kneel before the LORD our maker. \nFor he is our God; and we are the people of his pasture, and the sheep of his hand. To day if ye will hear his voice, \nHarden not your heart, as in the provocation, and as in the day of temptation in the wilderness: \nWhen your fathers tempted me, proved me, and saw my work. \nForty years long was I grieved with this generation, and said, It is a people that do err in their heart, and they have not known my ways: \nUnto whom I sware in my wrath that they should not enter into my rest. \nO sing unto the LORD a new song: sing unto the LORD, all the earth. \nSing unto the LORD, bless his name; shew forth his salvation from day to day. \nDeclare his glory among the heathen, his wonders among all people. \nFor the LORD is great, and greatly to be praised: he is to be feared above all gods. \nFor all the gods of the nations are idols: but the LORD made the heavens. \nHonour and majesty are before him: strength and beauty are in his sanctuary. \nGive unto the LORD, O ye kindreds of the people, give unto the LORD glory and strength. \nGive unto the LORD the glory due unto his name: bring an offering, and come into his courts. \nO worship the LORD in the beauty of holiness: fear before him, all the earth. \nSay among the heathen that the LORD reigneth: the world also shall be established that it shall not be moved: he shall judge the people righteously. \nLet the heavens rejoice, and let the earth be glad; let the sea roar, and the fulness thereof. \nLet the field be joyful, and all that is therein: then shall all the trees of the wood rejoice \nBefore the LORD: for he cometh, for he cometh to judge the earth: he shall judge the world with righteousness, and the people with his truth. \nThe LORD reigneth; let the earth rejoice; let the multitude of isles be glad thereof. \nClouds and darkness are round about him: righteousness and judgment are the habitation of his throne. \nA fire goeth before him, and burneth up his enemies round about. \nHis lightnings enlightened the world: the earth saw, and trembled. \nThe hills melted like wax at the presence of the LORD, at the presence of the Lord of the whole earth. \nThe heavens declare his righteousness, and all the people see his glory. \nConfounded be all they that serve graven images, that boast themselves of idols: worship him, all ye gods. \nZion heard, and was glad; and the daughters of Judah rejoiced because of thy judgments, O LORD. \nFor thou, LORD, art high above all the earth: thou art exalted far above all gods. \nYe that love the LORD, hate evil: he preserveth the souls of his saints; he delivereth them out of the hand of the wicked. \nLight is sown for the righteous, and gladness for the upright in heart. \nRejoice in the LORD, ye righteous; and give thanks at the remembrance of his holiness. \nO sing unto the LORD a new song; for he hath done marvellous things: his right hand, and his holy arm, hath gotten him the victory. \nThe LORD hath made known his salvation: his righteousness hath he openly shewed in the sight of the heathen. \nHe hath remembered his mercy and his truth toward the house of Israel: all the ends of the earth have seen the salvation of our God. \nMake a joyful noise unto the LORD, all the earth: make a loud noise, and rejoice, and sing praise. \nSing unto the LORD with the harp; with the harp, and the voice of a psalm. \nWith trumpets and sound of cornet make a joyful noise before the LORD, the King. \nLet the sea roar, and the fulness thereof; the world, and they that dwell therein. \nLet the floods clap their hands: let the hills be joyful together \nBefore the LORD; for he cometh to judge the earth: with righteousness shall he judge the world, and the people with equity. \nThe LORD reigneth; let the people tremble: he sitteth between the cherubims; let the earth be moved. \nThe LORD is great in Zion; and he is high above all the people. \nLet them praise thy great and terrible name; for it is holy. \nThe king's strength also loveth judgment; thou dost establish equity, thou executest judgment and righteousness in Jacob. \nExalt ye the LORD our God, and worship at his footstool; for he is holy. \nMoses and Aaron among his priests, and Samuel among them that call upon his name; they called upon the LORD, and he answered them. \nHe spake unto them in the cloudy pillar: they kept his testimonies, and the ordinance that he gave them. \nThou answeredst them, O LORD our God: thou wast a God that forgavest them, though thou tookest vengeance of their inventions. \nExalt the LORD our God, and worship at his holy hill; for the LORD our God is holy. \nMake a joyful noise unto the LORD, all ye lands. \nServe the LORD with gladness: come before his presence with singing. \nKnow ye that the LORD he is God: it is he that hath made us, and not we ourselves; we are his people, and the sheep of his pasture. \nEnter into his gates with thanksgiving, and into his courts with praise: be thankful unto him, and bless his name. \nFor the LORD is good; his mercy is everlasting; and his truth endureth to all generations. \nI will sing of mercy and judgment: unto thee, O LORD, will I sing. \nI will behave myself wisely in a perfect way. O when wilt thou come unto me? I will walk within my house with a perfect heart. \nI will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me. \nA froward heart shall depart from me: I will not know a wicked person. \nWhoso privily slandereth his neighbour, him will I cut off: him that hath an high look and a proud heart will not I suffer. \nMine eyes shall be upon the faithful of the land, that they may dwell with me: he that walketh in a perfect way, he shall serve me. \nHe that worketh deceit shall not dwell within my house: he that telleth lies shall not tarry in my sight. \nI will early destroy all the wicked of the land; that I may cut off all wicked doers from the city of the LORD. \nHear my prayer, O LORD, and let my cry come unto thee. \nHide not thy face from me in the day when I am in trouble; incline thine ear unto me: in the day when I call answer me speedily. \nFor my days are consumed like smoke, and my bones are burned as an hearth. \nMy heart is smitten, and withered like grass; so that I forget to eat my bread. \nBy reason of the voice of my groaning my bones cleave to my skin. \nI am like a pelican of the wilderness: I am like an owl of the desert. \nI watch, and am as a sparrow alone upon the house top. \nMine enemies reproach me all the day; and they that are mad against me are sworn against me. \nFor I have eaten ashes like bread, and mingled my drink with weeping. \nBecause of thine indignation and thy wrath: for thou hast lifted me up, and cast me down. \nMy days are like a shadow that declineth; and I am withered like grass. \nBut thou, O LORD, shall endure for ever; and thy remembrance unto all generations. \nThou shalt arise, and have mercy upon Zion: for the time to favour her, yea, the set time, is come. \nFor thy servants take pleasure in her stones, and favour the dust thereof. \nSo the heathen shall fear the name of the LORD, and all the kings of the earth thy glory. \nWhen the LORD shall build up Zion, he shall appear in his glory. \nHe will regard the prayer of the destitute, and not despise their prayer. \nThis shall be written for the generation to come: and the people which shall be created shall praise the LORD. \nFor he hath looked down from the height of his sanctuary; from heaven did the LORD behold the earth; \nTo hear the groaning of the prisoner; to loose those that are appointed to death; \nTo declare the name of the LORD in Zion, and his praise in Jerusalem; \nWhen the people are gathered together, and the kingdoms, to serve the LORD. \nHe weakened my strength in the way; he shortened my days. \nI said, O my God, take me not away in the midst of my days: thy years are throughout all generations. \nOf old hast thou laid the foundation of the earth: and the heavens are the work of thy hands. \nThey shall perish, but thou shalt endure: yea, all of them shall wax old like a garment; as a vesture shalt thou change them, and they shall be changed: \nBut thou art the same, and thy years shall have no end. \nThe children of thy servants shall continue, and their seed shall be established before thee. \nBless the LORD, O my soul: and all that is within me, bless his holy name. \nBless the LORD, O my soul, and forget not all his benefits: \nWho forgiveth all thine iniquities; who healeth all thy diseases; \nWho redeemeth thy life from destruction; who crowneth thee with lovingkindness and tender mercies; \nWho satisfieth thy mouth with good things; so that thy youth is renewed like the eagle's. \nThe LORD executeth righteousness and judgment for all that are oppressed. \nHe made known his ways unto Moses, his acts unto the children of Israel. \nThe LORD is merciful and gracious, slow to anger, and plenteous in mercy. \nHe will not always chide: neither will he keep his anger for ever. \nHe hath not dealt with us after our sins; nor rewarded us according to our iniquities. \nFor as the heaven is high above the earth, so great is his mercy toward them that fear him. \nAs far as the east is from the west, so far hath he removed our transgressions from us. \nLike as a father pitieth his children, so the LORD pitieth them that fear him. \nFor he knoweth our frame; he remembereth that we are dust. \nAs for man, his days are as grass: as a flower of the field, so he flourisheth. \nFor the wind passeth over it, and it is gone; and the place thereof shall know it no more. \nBut the mercy of the LORD is from everlasting to everlasting upon them that fear him, and his righteousness unto children's children; \nTo such as keep his covenant, and to those that remember his commandments to do them. \nThe LORD hath prepared his throne in the heavens; and his kingdom ruleth over all. \nBless the LORD, ye his angels, that excel in strength, that do his commandments, hearkening unto the voice of his word. \nBless ye the LORD, all ye his hosts; ye ministers of his, that do his pleasure. \nBless the LORD, all his works in all places of his dominion: bless the LORD, O my soul. \nBless the LORD, O my soul. O LORD my God, thou art very great; thou art clothed with honour and majesty. \nWho coverest thyself with light as with a garment: who stretchest out the heavens like a curtain: \nWho layeth the beams of his chambers in the waters: who maketh the clouds his chariot: who walketh upon the wings of the wind: \nWho maketh his angels spirits; his ministers a flaming fire: \nWho laid the foundations of the earth, that it should not be removed for ever. \nThou coveredst it with the deep as with a garment: the waters stood above the mountains. \nAt thy rebuke they fled; at the voice of thy thunder they hasted away. \nThey go up by the mountains; they go down by the valleys unto the place which thou hast founded for them. \nThou hast set a bound that they may not pass over; that they turn not again to cover the earth. \nHe sendeth the springs into the valleys, which run among the hills. \nThey give drink to every beast of the field: the wild asses quench their thirst. \nBy them shall the fowls of the heaven have their habitation, which sing among the branches. \nHe watereth the hills from his chambers: the earth is satisfied with the fruit of thy works. \nHe causeth the grass to grow for the cattle, and herb for the service of man: that he may bring forth food out of the earth; \nAnd wine that maketh glad the heart of man, and oil to make his face to shine, and bread which strengtheneth man's heart. \nThe trees of the LORD are full of sap; the cedars of Lebanon, which he hath planted; \nWhere the birds make their nests: as for the stork, the fir trees are her house. \nThe high hills are a refuge for the wild goats; and the rocks for the conies. \nHe appointed the moon for seasons: the sun knoweth his going down. \nThou makest darkness, and it is night: wherein all the beasts of the forest do creep forth. \nThe young lions roar after their prey, and seek their meat from God. \nThe sun ariseth, they gather themselves together, and lay them down in their dens. \nMan goeth forth unto his work and to his labour until the evening. \nO LORD, how manifold are thy works! in wisdom hast thou made them all: the earth is full of thy riches. \nSo is this great and wide sea, wherein are things creeping innumerable, both small and great beasts. \nThere go the ships: there is that leviathan, whom thou hast made to play therein. \nThese wait all upon thee; that thou mayest give them their meat in due season. \nThat thou givest them they gather: thou openest thine hand, they are filled with good. \nThou hidest thy face, they are troubled: thou takest away their breath, they die, and return to their dust. \nThou sendest forth thy spirit, they are created: and thou renewest the face of the earth. \nThe glory of the LORD shall endure for ever: the LORD shall rejoice in his works. \nHe looketh on the earth, and it trembleth: he toucheth the hills, and they smoke. \nI will sing unto the LORD as long as I live: I will sing praise to my God while I have my being. \nMy meditation of him shall be sweet: I will be glad in the LORD. \nLet the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the LORD, O my soul. Praise ye the LORD. \nO give thanks unto the LORD; call upon his name: make known his deeds among the people. \nSing unto him, sing psalms unto him: talk ye of all his wondrous works. \nGlory ye in his holy name: let the heart of them rejoice that seek the LORD. \nSeek the LORD, and his strength: seek his face evermore. \nRemember his marvellous works that he hath done; his wonders, and the judgments of his mouth; \nO ye seed of Abraham his servant, ye children of Jacob his chosen. \nHe is the LORD our God: his judgments are in all the earth. \nHe hath remembered his covenant for ever, the word which he commanded to a thousand generations. \nWhich covenant he made with Abraham, and his oath unto Isaac; \nAnd confirmed the same unto Jacob for a law, and to Israel for an everlasting covenant: \nSaying, Unto thee will I give the land of Canaan, the lot of your inheritance: \nWhen they were but a few men in number; yea, very few, and strangers in it. \nWhen they went from one nation to another, from one kingdom to another people; \nHe suffered no man to do them wrong: yea, he reproved kings for their sakes; \nSaying, Touch not mine anointed, and do my prophets no harm. \nMoreover he called for a famine upon the land: he brake the whole staff of bread. \nHe sent a man before them, even Joseph, who was sold for a servant: \nWhose feet they hurt with fetters: he was laid in iron: \nUntil the time that his word came: the word of the LORD tried him. \nThe king sent and loosed him; even the ruler of the people, and let him go free. \nHe made him lord of his house, and ruler of all his substance: \nTo bind his princes at his pleasure; and teach his senators wisdom. \nIsrael also came into Egypt; and Jacob sojourned in the land of Ham. \nAnd he increased his people greatly; and made them stronger than their enemies. \nHe turned their heart to hate his people, to deal subtilly with his servants. \nHe sent Moses his servant; and Aaron whom he had chosen. \nThey shewed his signs among them, and wonders in the land of Ham. \nHe sent darkness, and made it dark; and they rebelled not against his word. \nHe turned their waters into blood, and slew their fish. \nTheir land brought forth frogs in abundance, in the chambers of their kings. \nHe spake, and there came divers sorts of flies, and lice in all their coasts. \nHe gave them hail for rain, and flaming fire in their land. \nHe smote their vines also and their fig trees; and brake the trees of their coasts. \nHe spake, and the locusts came, and caterpillers, and that without number, \nAnd did eat up all the herbs in their land, and devoured the fruit of their ground. \nHe smote also all the firstborn in their land, the chief of all their strength. \nHe brought them forth also with silver and gold: and there was not one feeble person among their tribes. \nEgypt was glad when they departed: for the fear of them fell upon them. \nHe spread a cloud for a covering; and fire to give light in the night. \nThe people asked, and he brought quails, and satisfied them with the bread of heaven. \nHe opened the rock, and the waters gushed out; they ran in the dry places like a river. \nFor he remembered his holy promise, and Abraham his servant. \nAnd he brought forth his people with joy, and his chosen with gladness: \nAnd gave them the lands of the heathen: and they inherited the labour of the people; \nThat they might observe his statutes, and keep his laws. Praise ye the LORD. \nPraise ye the LORD. O give thanks unto the LORD; for he is good: for his mercy endureth for ever. \nWho can utter the mighty acts of the LORD? who can shew forth all his praise? \nBlessed are they that keep judgment, and he that doeth righteousness at all times. \nRemember me, O LORD, with the favour that thou bearest unto thy people: O visit me with thy salvation; \nThat I may see the good of thy chosen, that I may rejoice in the gladness of thy nation, that I may glory with thine inheritance. \nWe have sinned with our fathers, we have committed iniquity, we have done wickedly. \nOur fathers understood not thy wonders in Egypt; they remembered not the multitude of thy mercies; but provoked him at the sea, even at the Red sea. \nNevertheless he saved them for his name's sake, that he might make his mighty power to be known. \nHe rebuked the Red sea also, and it was dried up: so he led them through the depths, as through the wilderness. \nAnd he saved them from the hand of him that hated them, and redeemed them from the hand of the enemy. \nAnd the waters covered their enemies: there was not one of them left. \nThen believed they his words; they sang his praise. \nThey soon forgat his works; they waited not for his counsel: \nBut lusted exceedingly in the wilderness, and tempted God in the desert. \nAnd he gave them their request; but sent leanness into their soul. \nThey envied Moses also in the camp, and Aaron the saint of the LORD. \nThe earth opened and swallowed up Dathan and covered the company of Abiram. \nAnd a fire was kindled in their company; the flame burned up the wicked. \nThey made a calf in Horeb, and worshipped the molten image. \nThus they changed their glory into the similitude of an ox that eateth grass. \nThey forgat God their saviour, which had done great things in Egypt; \nWondrous works in the land of Ham, and terrible things by the Red sea. \nTherefore he said that he would destroy them, had not Moses his chosen stood before him in the breach, to turn away his wrath, lest he should destroy them. \nYea, they despised the pleasant land, they believed not his word: \nBut murmured in their tents, and hearkened not unto the voice of the LORD. \nTherefore he lifted up his hand against them, to overthrow them in the wilderness: \nTo overthrow their seed also among the nations, and to scatter them in the lands. \nThey joined themselves also unto Baalpeor, and ate the sacrifices of the dead. \nThus they provoked him to anger with their inventions: and the plague brake in upon them. \nThen stood up Phinehas, and executed judgment: and so the plague was stayed. \nAnd that was counted unto him for righteousness unto all generations for evermore. \nThey angered him also at the waters of strife, so that it went ill with Moses for their sakes: \nBecause they provoked his spirit, so that he spake unadvisedly with his lips. \nThey did not destroy the nations, concerning whom the LORD commanded them: \nBut were mingled among the heathen, and learned their works. \nAnd they served their idols: which were a snare unto them. \nYea, they sacrificed their sons and their daughters unto devils, \nAnd shed innocent blood, even the blood of their sons and of their daughters, whom they sacrificed unto the idols of Canaan: and the land was polluted with blood. \nThus were they defiled with their own works, and went a whoring with their own inventions. \nTherefore was the wrath of the LORD kindled against his people, insomuch that he abhorred his own inheritance. \nAnd he gave them into the hand of the heathen; and they that hated them ruled over them. \nTheir enemies also oppressed them, and they were brought into subjection under their hand. \nMany times did he deliver them; but they provoked him with their counsel, and were brought low for their iniquity. \nNevertheless he regarded their affliction, when he heard their cry: \nAnd he remembered for them his covenant, and repented according to the multitude of his mercies. \nHe made them also to be pitied of all those that carried them captives. \nSave us, O LORD our God, and gather us from among the heathen, to give thanks unto thy holy name, and to triumph in thy praise. \nBlessed be the LORD God of Israel from everlasting to everlasting: and let all the people say, Amen. Praise ye the LORD. \nO give thanks unto the LORD, for he is good: for his mercy endureth for ever. \nLet the redeemed of the LORD say so, whom he hath redeemed from the hand of the enemy; \nAnd gathered them out of the lands, from the east, and from the west, from the north, and from the south. \nThey wandered in the wilderness in a solitary way; they found no city to dwell in. \nHungry and thirsty, their soul fainted in them. \nThen they cried unto the LORD in their trouble, and he delivered them out of their distresses. \nAnd he led them forth by the right way, that they might go to a city of habitation. \nOh that men would praise the LORD for his goodness, and for his wonderful works to the children of men! \nFor he satisfieth the longing soul, and filleth the hungry soul with goodness. \nSuch as sit in darkness and in the shadow of death, being bound in affliction and iron; \nBecause they rebelled against the words of God, and contemned the counsel of the most High: \nTherefore he brought down their heart with labour; they fell down, and there was none to help. \nThen they cried unto the LORD in their trouble, and he saved them out of their distresses. \nHe brought them out of darkness and the shadow of death, and brake their bands in sunder. \nOh that men would praise the LORD for his goodness, and for his wonderful works to the children of men! \nFor he hath broken the gates of brass, and cut the bars of iron in sunder. \nFools because of their transgression, and because of their iniquities, are afflicted. \nTheir soul abhorreth all manner of meat; and they draw near unto the gates of death. \nThen they cry unto the LORD in their trouble, and he saveth them out of their distresses. \nHe sent his word, and healed them, and delivered them from their destructions. \nOh that men would praise the LORD for his goodness, and for his wonderful works to the children of men! \nAnd let them sacrifice the sacrifices of thanksgiving, and declare his works with rejoicing. \nThey that go down to the sea in ships, that do business in great waters; \nThese see the works of the LORD, and his wonders in the deep. \nFor he commandeth, and raiseth the stormy wind, which lifteth up the waves thereof. \nThey mount up to the heaven, they go down again to the depths: their soul is melted because of trouble. \nThey reel to and fro, and stagger like a drunken man, and are at their wit's end. \nThen they cry unto the LORD in their trouble, and he bringeth them out of their distresses. \nHe maketh the storm a calm, so that the waves thereof are still. \nThen are they glad because they be quiet; so he bringeth them unto their desired haven. \nOh that men would praise the LORD for his goodness, and for his wonderful works to the children of men! \nLet them exalt him also in the congregation of the people, and praise him in the assembly of the elders. \nHe turneth rivers into a wilderness, and the watersprings into dry ground; \nA fruitful land into barrenness, for the wickedness of them that dwell therein. \nHe turneth the wilderness into a standing water, and dry ground into watersprings. \nAnd there he maketh the hungry to dwell, that they may prepare a city for habitation; \nAnd sow the fields, and plant vineyards, which may yield fruits of increase. \nHe blesseth them also, so that they are multiplied greatly; and suffereth not their cattle to decrease. \nAgain, they are minished and brought low through oppression, affliction, and sorrow. \nHe poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way. \nYet setteth he the poor on high from affliction, and maketh him families like a flock. \nThe righteous shall see it, and rejoice: and all iniquity shall stop her mouth. \nWhoso is wise, and will observe these things, even they shall understand the lovingkindness of the LORD. \nO god, my heart is fixed; I will sing and give praise, even with my glory. \nAwake, psaltery and harp: I myself will awake early. \nI will praise thee, O LORD, among the people: and I will sing praises unto thee among the nations. \nFor thy mercy is great above the heavens: and thy truth reacheth unto the clouds. \nBe thou exalted, O God, above the heavens: and thy glory above all the earth; \nThat thy beloved may be delivered: save with thy right hand, and answer me. \nGod hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth. \nGilead is mine; Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver; \nMoab is my washpot; over Edom will I cast out my shoe; over Philistia will I triumph. \nWho will bring me into the strong city? who will lead me into Edom? \nWilt not thou, O God, who hast cast us off? and wilt not thou, O God, go forth with our hosts? \nGive us help from trouble: for vain is the help of man. \nThrough God we shall do valiantly: for he it is that shall tread down our enemies. \nHold not thy peace, O God of my praise; \nFor the mouth of the wicked and the mouth of the deceitful are opened against me: they have spoken against me with a lying tongue. \nThey compassed me about also with words of hatred; and fought against me without a cause. \nFor my love they are my adversaries: but I give myself unto prayer. \nAnd they have rewarded me evil for good, and hatred for my love. \nSet thou a wicked man over him: and let Satan stand at his right hand. \nWhen he shall be judged, let him be condemned: and let his prayer become sin. \nLet his days be few; and let another take his office. \nLet his children be fatherless, and his wife a widow. \nLet his children be continually vagabonds, and beg: let them seek their bread also out of their desolate places. \nLet the extortioner catch all that he hath; and let the strangers spoil his labour. \nLet there be none to extend mercy unto him: neither let there be any to favour his fatherless children. \nLet his posterity be cut off; and in the generation following let their name be blotted out. \nLet the iniquity of his fathers be remembered with the LORD; and let not the sin of his mother be blotted out. \nLet them be before the LORD continually, that he may cut off the memory of them from the earth. \nBecause that he remembered not to shew mercy, but persecuted the poor and needy man, that he might even slay the broken in heart. \nAs he loved cursing, so let it come unto him: as he delighted not in blessing, so let it be far from him. \nAs he clothed himself with cursing like as with his garment, so let it come into his bowels like water, and like oil into his bones. \nLet it be unto him as the garment which covereth him, and for a girdle wherewith he is girded continually. \nLet this be the reward of mine adversaries from the LORD, and of them that speak evil against my soul. \nBut do thou for me, O GOD the Lord, for thy name's sake: because thy mercy is good, deliver thou me. \nFor I am poor and needy, and my heart is wounded within me. \nI am gone like the shadow when it declineth: I am tossed up and down as the locust. \nMy knees are weak through fasting; and my flesh faileth of fatness. \nI became also a reproach unto them: when they looked upon me they shaked their heads. \nHelp me, O LORD my God: O save me according to thy mercy: \nThat they may know that this is thy hand; that thou, LORD, hast done it. \nLet them curse, but bless thou: when they arise, let them be ashamed; but let thy servant rejoice. \nLet mine adversaries be clothed with shame, and let them cover themselves with their own confusion, as with a mantle. \nI will greatly praise the LORD with my mouth; yea, I will praise him among the multitude. \nFor he shall stand at the right hand of the poor, to save him from those that condemn his soul. \nThe LORD said unto my Lord, Sit thou at my right hand, until I make thine enemies thy footstool. \nThe LORD shall send the rod of thy strength out of Zion: rule thou in the midst of thine enemies. \nThy people shall be willing in the day of thy power, in the beauties of holiness from the womb of the morning: thou hast the dew of thy youth. \nThe LORD hath sworn, and will not repent, Thou art a priest for ever after the order of Melchizedek. \nThe Lord at thy right hand shall strike through kings in the day of his wrath. \nHe shall judge among the heathen, he shall fill the places with the dead bodies; he shall wound the heads over many countries. \nHe shall drink of the brook in the way: therefore shall he lift up the head. \nPraise ye the LORD. I will praise the LORD with my whole heart, in the assembly of the upright, and in the congregation. \nThe works of the LORD are great, sought out of all them that have pleasure therein. \nHis work is honourable and glorious: and his righteousness endureth for ever. \nHe hath made his wonderful works to be remembered: the LORD is gracious and full of compassion. \nHe hath given meat unto them that fear him: he will ever be mindful of his covenant. \nHe hath shewed his people the power of his works, that he may give them the heritage of the heathen. \nThe works of his hands are verity and judgment; all his commandments are sure. \nThey stand fast for ever and ever, and are done in truth and uprightness. \nHe sent redemption unto his people: he hath commanded his covenant for ever: holy and reverend is his name. \nThe fear of the LORD is the beginning of wisdom: a good understanding have all they that do his commandments: his praise endureth for ever. \nPraise ye the LORD. Blessed is the man that feareth the LORD, that delighteth greatly in his commandments. \nHis seed shall be mighty upon earth: the generation of the upright shall be blessed. \nWealth and riches shall be in his house: and his righteousness endureth for ever. \nUnto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous. \nA good man sheweth favour, and lendeth: he will guide his affairs with discretion. \nSurely he shall not be moved for ever: the righteous shall be in everlasting remembrance. \nHe shall not be afraid of evil tidings: his heart is fixed, trusting in the LORD. \nHis heart is established, he shall not be afraid, until he see his desire upon his enemies. \nHe hath dispersed, he hath given to the poor; his righteousness endureth for ever; his horn shall be exalted with honour. \nThe wicked shall see it, and be grieved; he shall gnash with his teeth, and melt away: the desire of the wicked shall perish. \nPraise ye the LORD. Praise, O ye servants of the LORD, praise the name of the LORD. \nBlessed be the name of the LORD from this time forth and for evermore. \nFrom the rising of the sun unto the going down of the same the LORD's name is to be praised. \nThe LORD is high above all nations, and his glory above the heavens. \nWho is like unto the LORD our God, who dwelleth on high, \nWho humbleth himself to behold the things that are in heaven, and in the earth! \nHe raiseth up the poor out of the dust, and lifteth the needy out of the dunghill; \nThat he may set him with princes, even with the princes of his people. \nHe maketh the barren woman to keep house, and to be a joyful mother of children. Praise ye the LORD. \nWhen Israel went out of Egypt, the house of Jacob from a people of strange language; \nJudah was his sanctuary, and Israel his dominion. \nThe sea saw it, and fled: Jordan was driven back. \nThe mountains skipped like rams, and the little hills like lambs. \nWhat ailed thee, O thou sea, that thou fleddest? thou Jordan, that thou wast driven back? \nYe mountains, that ye skipped like rams; and ye little hills, like lambs? \nTremble, thou earth, at the presence of the Lord, at the presence of the God of Jacob; \nWhich turned the rock into a standing water, the flint into a fountain of waters. \nNot unto us, O LORD, not unto us, but unto thy name give glory, for thy mercy, and for thy truth's sake. \nWherefore should the heathen say, Where is now their God? \nBut our God is in the heavens: he hath done whatsoever he hath pleased. \nTheir idols are silver and gold, the work of men's hands. \nThey have mouths, but they speak not: eyes have they, but they see not: \nThey have ears, but they hear not: noses have they, but they smell not: \nThey have hands, but they handle not: feet have they, but they walk not: neither speak they through their throat. \nThey that make them are like unto them; so is every one that trusteth in them. \nO Israel, trust thou in the LORD: he is their help and their shield. \nO house of Aaron, trust in the LORD: he is their help and their shield. \nYe that fear the LORD, trust in the LORD: he is their help and their shield. \nThe LORD hath been mindful of us: he will bless us; he will bless the house of Israel; he will bless the house of Aaron. \nHe will bless them that fear the LORD, both small and great. \nThe LORD shall increase you more and more, you and your children. \nYe are blessed of the LORD which made heaven and earth. \nThe heaven, even the heavens, are the LORD's: but the earth hath he given to the children of men. \nThe dead praise not the LORD, neither any that go down into silence. \nBut we will bless the LORD from this time forth and for evermore. Praise the LORD. \nI love the LORD, because he hath heard my voice and my supplications. \nBecause he hath inclined his ear unto me, therefore will I call upon him as long as I live. \nThe sorrows of death compassed me, and the pains of hell gat hold upon me: I found trouble and sorrow. \nThen called I upon the name of the LORD; O LORD, I beseech thee, deliver my soul. \nGracious is the LORD, and righteous; yea, our God is merciful. \nThe LORD preserveth the simple: I was brought low, and he helped me. \nReturn unto thy rest, O my soul; for the LORD hath dealt bountifully with thee. \nFor thou hast delivered my soul from death, mine eyes from tears, and my feet from falling. \nI will walk before the LORD in the land of the living. \nI believed, therefore have I spoken: I was greatly afflicted: \nI said in my haste, All men are liars. \nWhat shall I render unto the LORD for all his benefits toward me? \nI will take the cup of salvation, and call upon the name of the LORD. \nI will pay my vows unto the LORD now in the presence of all his people. \nPrecious in the sight of the LORD is the death of his saints. \nO LORD, truly I am thy servant; I am thy servant, and the son of thine handmaid: thou hast loosed my bonds. \nI will offer to thee the sacrifice of thanksgiving, and will call upon the name of the LORD. \nI will pay my vows unto the LORD now in the presence of all his people. \nIn the courts of the LORD's house, in the midst of thee, O Jerusalem. Praise ye the LORD. \nO praise the LORD, all ye nations: praise him, all ye people. \nFor his merciful kindness is great toward us: and the truth of the LORD endureth for ever. Praise ye the LORD. \nO give thanks unto the LORD; for he is good: because his mercy endureth for ever. \nLet Israel now say, that his mercy endureth for ever. \nLet the house of Aaron now say, that his mercy endureth for ever. \nLet them now that fear the LORD say, that his mercy endureth for ever. \nI called upon the LORD in distress: the LORD answered me, and set me in a large place. \nThe LORD is on my side; I will not fear: what can man do unto me? \nThe LORD taketh my part with them that help me: therefore shall I see my desire upon them that hate me. \nIt is better to trust in the LORD than to put confidence in man. \nIt is better to trust in the LORD than to put confidence in princes. \nAll nations compassed me about: but in the name of the LORD will I destroy them. \nThey compassed me about; yea, they compassed me about: but in the name of the LORD I will destroy them. \nThey compassed me about like bees: they are quenched as the fire of thorns: for in the name of the LORD I will destroy them. \nThou hast thrust sore at me that I might fall: but the LORD helped me. \nThe LORD is my strength and song, and is become my salvation. \nThe voice of rejoicing and salvation is in the tabernacles of the righteous: the right hand of the LORD doeth valiantly. \nThe right hand of the LORD is exalted: the right hand of the LORD doeth valiantly. \nI shall not die, but live, and declare the works of the LORD. \nThe LORD hath chastened me sore: but he hath not given me over unto death. \nOpen to me the gates of righteousness: I will go into them, and I will praise the LORD: \nThis gate of the LORD, into which the righteous shall enter. \nI will praise thee: for thou hast heard me, and art become my salvation. \nThe stone which the builders refused is become the head stone of the corner. \nThis is the LORD's doing; it is marvellous in our eyes. \nThis is the day which the LORD hath made; we will rejoice and be glad in it. \nSave now, I beseech thee, O LORD: O LORD, I beseech thee, send now prosperity. \nBlessed be he that cometh in the name of the LORD: we have blessed you out of the house of the LORD. \nGod is the LORD, which hath shewed us light: bind the sacrifice with cords, even unto the horns of the altar. \nThou art my God, and I will praise thee: thou art my God, I will exalt thee. \nO give thanks unto the LORD; for he is good: for his mercy endureth for ever. \nBlessed are the undefiled in the way, who walk in the law of the LORD. \nBlessed are they that keep his testimonies, and that seek him with the whole heart. \nThey also do no iniquity: they walk in his ways. \nThou hast commanded us to keep thy precepts diligently. \nO that my ways were directed to keep thy statutes! \nThen shall I not be ashamed, when I have respect unto all thy commandments. \nI will praise thee with uprightness of heart, when I shall have learned thy righteous judgments. \nI will keep thy statutes: O forsake me not utterly. \nWherewithal shall a young man cleanse his way? by taking heed thereto according to thy word. \nWith my whole heart have I sought thee: O let me not wander from thy commandments. \nThy word have I hid in mine heart, that I might not sin against thee. \nBlessed art thou, O LORD: teach me thy statutes. \nWith my lips have I declared all the judgments of thy mouth. \nI have rejoiced in the way of thy testimonies, as much as in all riches. \nI will meditate in thy precepts, and have respect unto thy ways. \nI will delight myself in thy statutes: I will not forget thy word. \nDeal bountifully with thy servant, that I may live, and keep thy word. \nOpen thou mine eyes, that I may behold wondrous things out of thy law. \nI am a stranger in the earth: hide not thy commandments from me. \nMy soul breaketh for the longing that it hath unto thy judgments at all times. \nThou hast rebuked the proud that are cursed, which do err from thy commandments. \nRemove from me reproach and contempt; for I have kept thy testimonies. \nPrinces also did sit and speak against me: but thy servant did meditate in thy statutes. \nThy testimonies also are my delight and my counsellors.leth. \nMy soul cleaveth unto the dust: quicken thou me according to thy word. \nI have declared my ways, and thou heardest me: teach me thy statutes. \nMake me to understand the way of thy precepts: so shall I talk of thy wondrous works. \nMy soul melteth for heaviness: strengthen thou me according unto thy word. \nRemove from me the way of lying: and grant me thy law graciously. \nI have chosen the way of truth: thy judgments have I laid before me. \nI have stuck unto thy testimonies: O LORD, put me not to shame. \nI will run the way of thy commandments, when thou shalt enlarge my heart. \nTeach me, O LORD, the way of thy statutes; and I shall keep it unto the end. \nGive me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart. \nMake me to go in the path of thy commandments; for therein do I delight. \nIncline my heart unto thy testimonies, and not to covetousness. \nTurn away mine eyes from beholding vanity; and quicken thou me in thy way. \nStablish thy word unto thy servant, who is devoted to thy fear. \nTurn away my reproach which I fear: for thy judgments are good. \nBehold, I have longed after thy precepts: quicken me in thy righteousness. \nLet thy mercies come also unto me, O LORD, even thy salvation, according to thy word. \nSo shall I have wherewith to answer him that reproacheth me: for I trust in thy word. \nAnd take not the word of truth utterly out of my mouth; for I have hoped in thy judgments. \nSo shall I keep thy law continually for ever and ever. \nAnd I will walk at liberty: for I seek thy precepts. \nI will speak of thy testimonies also before kings, and will not be ashamed. \nAnd I will delight myself in thy commandments, which I have loved. \nMy hands also will I lift up unto thy commandments, which I have loved; and I will meditate in thy statutes. \nRemember the word unto thy servant, upon which thou hast caused me to hope. \nThis is my comfort in my affliction: for thy word hath quickened me. \nThe proud have had me greatly in derision: yet have I not declined from thy law. \nI remembered thy judgments of old, O LORD; and have comforted myself. \nHorror hath taken hold upon me because of the wicked that forsake thy law. \nThy statutes have been my songs in the house of my pilgrimage. \nI have remembered thy name, O LORD, in the night, and have kept thy law. \nThis I had, because I kept thy precepts. \nThou art my portion, O LORD: I have said that I would keep thy words. \nI intreated thy favour with my whole heart: be merciful unto me according to thy word. \nI thought on my ways, and turned my feet unto thy testimonies. \nI made haste, and delayed not to keep thy commandments. \nThe bands of the wicked have robbed me: but I have not forgotten thy law. \nAt midnight I will rise to give thanks unto thee because of thy righteous judgments. \nI am a companion of all them that fear thee, and of them that keep thy precepts. \nThe earth, O LORD, is full of thy mercy: teach me thy statutes. \nThou hast dealt well with thy servant, O LORD, according unto thy word. \nTeach me good judgment and knowledge: for I have believed thy commandments. \nBefore I was afflicted I went astray: but now have I kept thy word. \nThou art good, and doest good; teach me thy statutes. \nThe proud have forged a lie against me: but I will keep thy precepts with my whole heart. \nTheir heart is as fat as grease; but I delight in thy law. \nIt is good for me that I have been afflicted; that I might learn thy statutes. \nThe law of thy mouth is better unto me than thousands of gold and silver. \nThy hands have made me and fashioned me: give me understanding, that I may learn thy commandments. \nThey that fear thee will be glad when they see me; because I have hoped in thy word. \nI know, O LORD, that thy judgments are right, and that thou in faithfulness hast afflicted me. \nLet, I pray thee, thy merciful kindness be for my comfort, according to thy word unto thy servant. \nLet thy tender mercies come unto me, that I may live: for thy law is my delight. \nLet the proud be ashamed; for they dealt perversely with me without a cause: but I will meditate in thy precepts. \nLet those that fear thee turn unto me, and those that have known thy testimonies. \nLet my heart be sound in thy statutes; that I be not ashamed. \nMy soul fainteth for thy salvation: but I hope in thy word. \nMine eyes fail for thy word, saying, When wilt thou comfort me? \nFor I am become like a bottle in the smoke; yet do I not forget thy statutes. \nHow many are the days of thy servant? when wilt thou execute judgment on them that persecute me? \nThe proud have digged pits for me, which are not after thy law. \nAll thy commandments are faithful: they persecute me wrongfully; help thou me. \nThey had almost consumed me upon earth; but I forsook not thy precepts. \nQuicken me after thy lovingkindness; so shall I keep the testimony of thy mouth. \nFor ever, O LORD, thy word is settled in heaven. \nThy faithfulness is unto all generations: thou hast established the earth, and it abideth. \nThey continue this day according to thine ordinances: for all are thy servants. \nUnless thy law had been my delights, I should then have perished in mine affliction. \nI will never forget thy precepts: for with them thou hast quickened me. \nI am thine, save me: for I have sought thy precepts. \nThe wicked have waited for me to destroy me: but I will consider thy testimonies. \nI have seen an end of all perfection: but thy commandment is exceeding broad. \nO how I love thy law! it is my meditation all the day. \nThou through thy commandments hast made me wiser than mine enemies: for they are ever with me. \nI have more understanding than all my teachers: for thy testimonies are my meditation. \nI understand more than the ancients, because I keep thy precepts. \nI have refrained my feet from every evil way, that I might keep thy word. \nI have not departed from thy judgments: for thou hast taught me. \nHow sweet are thy words unto my taste! yea, sweeter than honey to my mouth! \nThrough thy precepts I get understanding: therefore I hate every false way. \nThy word is a lamp unto my feet, and a light unto my path. \nI have sworn, and I will perform it, that I will keep thy righteous judgments. \nI am afflicted very much: quicken me, O LORD, according unto thy word. \nAccept, I beseech thee, the freewill offerings of my mouth, O LORD, and teach me thy judgments. \nMy soul is continually in my hand: yet do I not forget thy law. \nThe wicked have laid a snare for me: yet I erred not from thy precepts. \nThy testimonies have I taken as an heritage for ever: for they are the rejoicing of my heart. \nI have inclined mine heart to perform thy statutes alway, even unto the end. \nI hate vain thoughts: but thy law do I love. \nThou art my hiding place and my shield: I hope in thy word. \nDepart from me, ye evildoers: for I will keep the commandments of my God. \nUphold me according unto thy word, that I may live: and let me not be ashamed of my hope. \nHold thou me up, and I shall be safe: and I will have respect unto thy statutes continually. \nThou hast trodden down all them that err from thy statutes: for their deceit is falsehood. \nThou puttest away all the wicked of the earth like dross: therefore I love thy testimonies. \nMy flesh trembleth for fear of thee; and I am afraid of thy judgments. \nI have done judgment and justice: leave me not to mine oppressors. \nBe surety for thy servant for good: let not the proud oppress me. \nMine eyes fail for thy salvation, and for the word of thy righteousness. \nDeal with thy servant according unto thy mercy, and teach me thy statutes. \nI am thy servant; give me understanding, that I may know thy testimonies. \nIt is time for thee, LORD, to work: for they have made void thy law. \nTherefore I love thy commandments above gold; yea, above fine gold. \nTherefore I esteem all thy precepts concerning all things to be right; and I hate every false way. \nThy testimonies are wonderful: therefore doth my soul keep them. \nThe entrance of thy words giveth light; it giveth understanding unto the simple. \nI opened my mouth, and panted: for I longed for thy commandments. \nLook thou upon me, and be merciful unto me, as thou usest to do unto those that love thy name. \nOrder my steps in thy word: and let not any iniquity have dominion over me. \nDeliver me from the oppression of man: so will I keep thy precepts. \nMake thy face to shine upon thy servant; and teach me thy statutes. \nRivers of waters run down mine eyes, because they keep not thy law. \nRighteous art thou, O LORD, and upright are thy judgments. \nThy testimonies that thou hast commanded are righteous and very faithful. \nMy zeal hath consumed me, because mine enemies have forgotten thy words. \nThy word is very pure: therefore thy servant loveth it. \nI am small and despised: yet do not I forget thy precepts. \nThy righteousness is an everlasting righteousness, and thy law is the truth. \nTrouble and anguish have taken hold on me: yet thy commandments are my delights. \nThe righteousness of thy testimonies is everlasting: give me understanding, and I shall live. \nI cried with my whole heart; hear me, O LORD: I will keep thy statutes. \nI cried unto thee; save me, and I shall keep thy testimonies. \nI prevented the dawning of the morning, and cried: I hoped in thy word. \nMine eyes prevent the night watches, that I might meditate in thy word. \nHear my voice according unto thy lovingkindness: O LORD, quicken me according to thy judgment. \nThey draw nigh that follow after mischief: they are far from thy law. \nThou art near, O LORD; and all thy commandments are truth. \nConcerning thy testimonies, I have known of old that thou hast founded them for ever. \nConsider mine affliction, and deliver me: for I do not forget thy law. \nPlead my cause, and deliver me: quicken me according to thy word. \nSalvation is far from the wicked: for they seek not thy statutes. \nGreat are thy tender mercies, O LORD: quicken me according to thy judgments. \nMany are my persecutors and mine enemies; yet do I not decline from thy testimonies. \nI beheld the transgressors, and was grieved; because they kept not thy word. \nConsider how I love thy precepts: quicken me, O LORD, according to thy lovingkindness. \nThy word is true from the beginning: and every one of thy righteous judgments endureth for ever. \nPrinces have persecuted me without a cause: but my heart standeth in awe of thy word. \nI rejoice at thy word, as one that findeth great spoil. \nI hate and abhor lying: but thy law do I love. \nSeven times a day do I praise thee because of thy righteous judgments. \nGreat peace have they which love thy law: and nothing shall offend them. \nLORD, I have hoped for thy salvation, and done thy commandments. \nMy soul hath kept thy testimonies; and I love them exceedingly. \nI have kept thy precepts and thy testimonies: for all my ways are before thee. \nLet my cry come near before thee, O LORD: give me understanding according to thy word. \nLet my supplication come before thee: deliver me according to thy word. \nMy lips shall utter praise, when thou hast taught me thy statutes. \nMy tongue shall speak of thy word: for all thy commandments are righteousness. \nLet thine hand help me; for I have chosen thy precepts. \nI have longed for thy salvation, O LORD; and thy law is my delight. \nLet my soul live, and it shall praise thee; and let thy judgments help me. \nI have gone astray like a lost sheep; seek thy servant; for I do not forget thy commandments. \nIn my distress I cried unto the LORD, and he heard me. \nDeliver my soul, O LORD, from lying lips, and from a deceitful tongue. \nWhat shall be given unto thee? or what shall be done unto thee, thou false tongue? \nSharp arrows of the mighty, with coals of juniper. \nWoe is me, that I sojourn in Mesech, that I dwell in the tents of Kedar! \nMy soul hath long dwelt with him that hateth peace. \nI am for peace: but when I speak, they are for war. \nI will lift up mine eyes unto the hills, from whence cometh my help. \nMy help cometh from the LORD, which made heaven and earth. \nHe will not suffer thy foot to be moved: he that keepeth thee will not slumber. \nBehold, he that keepeth Israel shall neither slumber nor sleep. \nThe LORD is thy keeper: the LORD is thy shade upon thy right hand. \nThe sun shall not smite thee by day, nor the moon by night. \nThe LORD shall preserve thee from all evil: he shall preserve thy soul. \nThe LORD shall preserve thy going out and thy coming in from this time forth, and even for evermore. \nI was glad when they said unto me, Let us go into the house of the LORD. \nOur feet shall stand within thy gates, O Jerusalem. \nJerusalem is builded as a city that is compact together: \nWhither the tribes go up, the tribes of the LORD, unto the testimony of Israel, to give thanks unto the name of the LORD. \nFor there are set thrones of judgment, the thrones of the house of David. \nPray for the peace of Jerusalem: they shall prosper that love thee. \nPeace be within thy walls, and prosperity within thy palaces. \nFor my brethren and companions' sakes, I will now say, Peace be within thee. \nBecause of the house of the LORD our God I will seek thy good. \nUnto thee lift I up mine eyes, O thou that dwellest in the heavens. \nBehold, as the eyes of servants look unto the hand of their masters, and as the eyes of a maiden unto the hand of her mistress; so our eyes wait upon the LORD our God, until that he have mercy upon us. \nHave mercy upon us, O LORD, have mercy upon us: for we are exceedingly filled with contempt. \nOur soul is exceedingly filled with the scorning of those that are at ease, and with the contempt of the proud. \nIf it had not been the LORD who was on our side, now may Israel say; \nIf it had not been the LORD who was on our side, when men rose up against us: \nThen they had swallowed us up quick, when their wrath was kindled against us: \nThen the waters had overwhelmed us, the stream had gone over our soul: \nThen the proud waters had gone over our soul. \nBlessed be the LORD, who hath not given us as a prey to their teeth. \nOur soul is escaped as a bird out of the snare of the fowlers: the snare is broken, and we are escaped. \nOur help is in the name of the LORD, who made heaven and earth. \nThey that trust in the LORD shall be as mount Zion, which cannot be removed, but abideth for ever. \nAs the mountains are round about Jerusalem, so the LORD is round about his people from henceforth even for ever. \nFor the rod of the wicked shall not rest upon the lot of the righteous; lest the righteous put forth their hands unto iniquity. \nDo good, O LORD, unto those that be good, and to them that are upright in their hearts. \nAs for such as turn aside unto their crooked ways, the LORD shall lead them forth with the workers of iniquity: but peace shall be upon Israel. \nWhen the LORD turned again the captivity of Zion, we were like them that dream. \nThen was our mouth filled with laughter, and our tongue with singing: then said they among the heathen, The LORD hath done great things for them. \nThe LORD hath done great things for us; whereof we are glad. \nTurn again our captivity, O LORD, as the streams in the south. \nThey that sow in tears shall reap in joy. \nHe that goeth forth and weepeth, bearing precious seed, shall doubtless come again with rejoicing, bringing his sheaves with him. \nExcept the LORD build the house, they labour in vain that build it: except the LORD keep the city, the watchman waketh but in vain. \nIt is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep. \nLo, children are an heritage of the LORD: and the fruit of the womb is his reward. \nAs arrows are in the hand of a mighty man; so are children of the youth. \nHappy is the man that hath his quiver full of them: they shall not be ashamed, but they shall speak with the enemies in the gate. \nBlessed is every one that feareth the LORD; that walketh in his ways. \nFor thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee. \nThy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table. \nBehold, that thus shall the man be blessed that feareth the LORD. \nThe LORD shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life. \nYea, thou shalt see thy children's children, and peace upon Israel. \nMany a time have they afflicted me from my youth, may Israel now say: \nMany a time have they afflicted me from my youth: yet they have not prevailed against me. \nThe plowers plowed upon my back: they made long their furrows. \nThe LORD is righteous: he hath cut asunder the cords of the wicked. \nLet them all be confounded and turned back that hate Zion. \nLet them be as the grass upon the housetops, which withereth afore it groweth up: \nWherewith the mower filleth not his hand; nor he that bindeth sheaves his bosom. \nNeither do they which go by say, The blessing of the LORD be upon you: we bless you in the name of the LORD. \nOut of the depths have I cried unto thee, O LORD. \nLord, hear my voice: let thine ears be attentive to the voice of my supplications. \nIf thou, LORD, shouldest mark iniquities, O Lord, who shall stand? \nBut there is forgiveness with thee, that thou mayest be feared. \nI wait for the LORD, my soul doth wait, and in his word do I hope. \nMy soul waiteth for the Lord more than they that watch for the morning: I say, more than they that watch for the morning. \nLet Israel hope in the LORD: for with the LORD there is mercy, and with him is plenteous redemption. \nAnd he shall redeem Israel from all his iniquities. \nLord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me. \nSurely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child. \nLet Israel hope in the LORD from henceforth and for ever. \nLord, remember David, and all his afflictions: \nHow he sware unto the LORD, and vowed unto the mighty God of Jacob; \nSurely I will not come into the tabernacle of my house, nor go up into my bed; \nI will not give sleep to mine eyes, or slumber to mine eyelids, \nUntil I find out a place for the LORD, an habitation for the mighty God of Jacob. \nLo, we heard of it at Ephratah: we found it in the fields of the wood. \nWe will go into his tabernacles: we will worship at his footstool. \nArise, O LORD, into thy rest; thou, and the ark of thy strength. \nLet thy priests be clothed with righteousness; and let thy saints shout for joy. \nFor thy servant David's sake turn not away the face of thine anointed. \nThe LORD hath sworn in truth unto David; he will not turn from it; Of the fruit of thy body will I set upon thy throne. \nIf thy children will keep my covenant and my testimony that I shall teach them, their children shall also sit upon thy throne for evermore. \nFor the LORD hath chosen Zion; he hath desired it for his habitation. \nThis is my rest for ever: here will I dwell; for I have desired it. \nI will abundantly bless her provision: I will satisfy her poor with bread. \nI will also clothe her priests with salvation: and her saints shall shout aloud for joy. \nThere will I make the horn of David to bud: I have ordained a lamp for mine anointed. \nHis enemies will I clothe with shame: but upon himself shall his crown flourish. \nBehold, how good and how pleasant it is for brethren to dwell together in unity! \nIt is like the precious ointment upon the head, that ran down upon the beard, even Aaron's beard: that went down to the skirts of his garments; \nAs the dew of Hermon, and as the dew that descended upon the mountains of Zion: for there the LORD commanded the blessing, even life for evermore. \nBehold, bless ye the LORD, all ye servants of the LORD, which by night stand in the house of the LORD. \nLift up your hands in the sanctuary, and bless the LORD. \nThe LORD that made heaven and earth bless thee out of Zion. \nPraise ye the LORD. Praise ye the name of the LORD; praise him, O ye servants of the LORD. \nYe that stand in the house of the LORD, in the courts of the house of our God. \nPraise the LORD; for the LORD is good: sing praises unto his name; for it is pleasant. \nFor the LORD hath chosen Jacob unto himself, and Israel for his peculiar treasure. \nFor I know that the LORD is great, and that our Lord is above all gods. \nWhatsoever the LORD pleased, that did he in heaven, and in earth, in the seas, and all deep places. \nHe causeth the vapours to ascend from the ends of the earth; he maketh lightnings for the rain; he bringeth the wind out of his treasuries. \nWho smote the firstborn of Egypt, both of man and beast. \nWho sent tokens and wonders into the midst of thee, O Egypt, upon Pharaoh, and upon all his servants. \nWho smote great nations, and slew mighty kings; \nSihon king of the Amorites, and Og king of Bashan, and all the kingdoms of Canaan: \nAnd gave their land for an heritage, an heritage unto Israel his people. \nThy name, O LORD, endureth for ever; and thy memorial, O LORD, throughout all generations. \nFor the LORD will judge his people, and he will repent himself concerning his servants. \nThe idols of the heathen are silver and gold, the work of men's hands. \nThey have mouths, but they speak not; eyes have they, but they see not; \nThey have ears, but they hear not; neither is there any breath in their mouths. \nThey that make them are like unto them: so is every one that trusteth in them. \nBless the LORD, O house of Israel: bless the LORD, O house of Aaron: \nBless the LORD, O house of Levi: ye that fear the LORD, bless the LORD. \nBlessed be the LORD out of Zion, which dwelleth at Jerusalem. Praise ye the LORD. \nO give thanks unto the LORD; for he is good: for his mercy endureth for ever. \nO give thanks unto the God of gods: for his mercy endureth for ever. \nO give thanks to the Lord of lords: for his mercy endureth for ever. \nTo him who alone doeth great wonders: for his mercy endureth for ever. \nTo him that by wisdom made the heavens: for his mercy endureth for ever. \nTo him that stretched out the earth above the waters: for his mercy endureth for ever. \nTo him that made great lights: for his mercy endureth for ever: \nThe sun to rule by day: for his mercy endureth for ever: \nThe moon and stars to rule by night: for his mercy endureth for ever. \nTo him that smote Egypt in their firstborn: for his mercy endureth for ever: \nAnd brought out Israel from among them: for his mercy endureth for ever: \nWith a strong hand, and with a stretched out arm: for his mercy endureth for ever. \nTo him which divided the Red sea into parts: for his mercy endureth for ever: \nAnd made Israel to pass through the midst of it: for his mercy endureth for ever: \nBut overthrew Pharaoh and his host in the Red sea: for his mercy endureth for ever. \nTo him which led his people through the wilderness: for his mercy endureth for ever. \nTo him which smote great kings: for his mercy endureth for ever: \nAnd slew famous kings: for his mercy endureth for ever: \nSihon king of the Amorites: for his mercy endureth for ever: \nAnd Og the king of Bashan: for his mercy endureth for ever: \nAnd gave their land for an heritage: for his mercy endureth for ever: \nEven an heritage unto Israel his servant: for his mercy endureth for ever. \nWho remembered us in our low estate: for his mercy endureth for ever: \nAnd hath redeemed us from our enemies: for his mercy endureth for ever. \nWho giveth food to all flesh: for his mercy endureth for ever. \nO give thanks unto the God of heaven: for his mercy endureth for ever. \nBy the rivers of Babylon, there we sat down, yea, we wept, when we remembered Zion. \nWe hanged our harps upon the willows in the midst thereof. \nFor there they that carried us away captive required of us a song; and they that wasted us required of us mirth, saying, Sing us one of the songs of Zion. \nHow shall we sing the LORD's song in a strange land? \nIf I forget thee, O Jerusalem, let my right hand forget her cunning. \nIf I do not remember thee, let my tongue cleave to the roof of my mouth; if I prefer not Jerusalem above my chief joy. \nRemember, O LORD, the children of Edom in the day of Jerusalem; who said, Rase it, rase it, even to the foundation thereof. \nO daughter of Babylon, who art to be destroyed; happy shall he be, that rewardeth thee as thou hast served us. \nHappy shall he be, that taketh and dasheth thy little ones against the stones. \nI will praise thee with my whole heart: before the gods will I sing praise unto thee. \nI will worship toward thy holy temple, and praise thy name for thy lovingkindness and for thy truth: for thou hast magnified thy word above all thy name. \nIn the day when I cried thou answeredst me, and strengthenedst me with strength in my soul. \nAll the kings of the earth shall praise thee, O LORD, when they hear the words of thy mouth. \nYea, they shall sing in the ways of the LORD: for great is the glory of the LORD. \nThough the LORD be high, yet hath he respect unto the lowly: but the proud he knoweth afar off. \nThough I walk in the midst of trouble, thou wilt revive me: thou shalt stretch forth thine hand against the wrath of mine enemies, and thy right hand shall save me. \nThe LORD will perfect that which concerneth me: thy mercy, O LORD, endureth for ever: forsake not the works of thine own hands. \nO lord, thou hast searched me, and known me. \nThou knowest my downsitting and mine uprising, thou understandest my thought afar off. \nThou compassest my path and my lying down, and art acquainted with all my ways. \nFor there is not a word in my tongue, but, lo, O LORD, thou knowest it altogether. \nThou hast beset me behind and before, and laid thine hand upon me. \nSuch knowledge is too wonderful for me; it is high, I cannot attain unto it. \nWhither shall I go from thy spirit? or whither shall I flee from thy presence? \nIf I ascend up into heaven, thou art there: if I make my bed in hell, behold, thou art there. \nIf I take the wings of the morning, and dwell in the uttermost parts of the sea; \nEven there shall thy hand lead me, and thy right hand shall hold me. \nIf I say, Surely the darkness shall cover me; even the night shall be light about me. \nYea, the darkness hideth not from thee; but the night shineth as the day: the darkness and the light are both alike to thee. \nFor thou hast possessed my reins: thou hast covered me in my mother's womb. \nI will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well. \nMy substance was not hid from thee, when I was made in secret, and curiously wrought in the lowest parts of the earth. \nThine eyes did see my substance, yet being unperfect; and in thy book all my members were written, which in continuance were fashioned, when as yet there was none of them. \nHow precious also are thy thoughts unto me, O God! how great is the sum of them! \nIf I should count them, they are more in number than the sand: when I awake, I am still with thee. \nSurely thou wilt slay the wicked, O God: depart from me therefore, ye bloody men. \nFor they speak against thee wickedly, and thine enemies take thy name in vain. \nDo not I hate them, O LORD, that hate thee? and am not I grieved with those that rise up against thee? \nI hate them with perfect hatred: I count them mine enemies. \nSearch me, O God, and know my heart: try me, and know my thoughts: \nAnd see if there be any wicked way in me, and lead me in the way everlasting. \nDeliver me, O LORD, from the evil man: preserve me from the violent man; \nWhich imagine mischiefs in their heart; continually are they gathered together for war. \nThey have sharpened their tongues like a serpent; adders' poison is under their lips. Selah. \nKeep me, O LORD, from the hands of the wicked; preserve me from the violent man; who have purposed to overthrow my goings. \nThe proud have hid a snare for me, and cords; they have spread a net by the wayside; they have set gins for me. Selah. \nI said unto the LORD, Thou art my God: hear the voice of my supplications, O LORD. \nO GOD the Lord, the strength of my salvation, thou hast covered my head in the day of battle. \nGrant not, O LORD, the desires of the wicked: further not his wicked device; lest they exalt themselves. Selah. \nAs for the head of those that compass me about, let the mischief of their own lips cover them. \nLet burning coals fall upon them: let them be cast into the fire; into deep pits, that they rise not up again. \nLet not an evil speaker be established in the earth: evil shall hunt the violent man to overthrow him. \nI know that the LORD will maintain the cause of the afflicted, and the right of the poor. \nSurely the righteous shall give thanks unto thy name: the upright shall dwell in thy presence. \nLord, I cry unto thee: make haste unto me; give ear unto my voice, when I cry unto thee. \nLet my prayer be set forth before thee as incense; and the lifting up of my hands as the evening sacrifice. \nSet a watch, O LORD, before my mouth; keep the door of my lips. \nIncline not my heart to any evil thing, to practise wicked works with men that work iniquity: and let me not eat of their dainties. \nLet the righteous smite me; it shall be a kindness: and let him reprove me; it shall be an excellent oil, which shall not break my head: for yet my prayer also shall be in their calamities. \nWhen their judges are overthrown in stony places, they shall hear my words; for they are sweet. \nOur bones are scattered at the grave's mouth, as when one cutteth and cleaveth wood upon the earth. \nBut mine eyes are unto thee, O GOD the Lord: in thee is my trust; leave not my soul destitute. \nKeep me from the snares which they have laid for me, and the gins of the workers of iniquity. \nLet the wicked fall into their own nets, whilst that I withal escape. \nI cried unto the LORD with my voice; with my voice unto the LORD did I make my supplication. \nI poured out my complaint before him; I shewed before him my trouble. \nWhen my spirit was overwhelmed within me, then thou knewest my path. In the way wherein I walked have they privily laid a snare for me. \nI looked on my right hand, and beheld, but there was no man that would know me: refuge failed me; no man cared for my soul. \nI cried unto thee, O LORD: I said, Thou art my refuge and my portion in the land of the living. \nAttend unto my cry; for I am brought very low: deliver me from my persecutors; for they are stronger than I. \nBring my soul out of prison, that I may praise thy name: the righteous shall compass me about; for thou shalt deal bountifully with me. \nHear my prayer, O LORD, give ear to my supplications: in thy faithfulness answer me, and in thy righteousness. \nAnd enter not into judgment with thy servant: for in thy sight shall no man living be justified. \nFor the enemy hath persecuted my soul; he hath smitten my life down to the ground; he hath made me to dwell in darkness, as those that have been long dead. \nTherefore is my spirit overwhelmed within me; my heart within me is desolate. \nI remember the days of old; I meditate on all thy works; I muse on the work of thy hands. \nI stretch forth my hands unto thee: my soul thirsteth after thee, as a thirsty land. Selah. \nHear me speedily, O LORD: my spirit faileth: hide not thy face from me, lest I be like unto them that go down into the pit. \nCause me to hear thy lovingkindness in the morning; for in thee do I trust: cause me to know the way wherein I should walk; for I lift up my soul unto thee. \nDeliver me, O LORD, from mine enemies: I flee unto thee to hide me. \nTeach me to do thy will; for thou art my God: thy spirit is good; lead me into the land of uprightness. \nQuicken me, O LORD, for thy name's sake: for thy righteousness' sake bring my soul out of trouble. \nAnd of thy mercy cut off mine enemies, and destroy all them that afflict my soul: for I am thy servant. \nBlessed be the LORD my strength which teacheth my hands to war, and my fingers to fight: \nMy goodness, and my fortress; my high tower, and my deliverer; my shield, and he in whom I trust; who subdueth my people under me. \nLORD, what is man, that thou takest knowledge of him! or the son of man, that thou makest account of him! \nMan is like to vanity: his days are as a shadow that passeth away. \nBow thy heavens, O LORD, and come down: touch the mountains, and they shall smoke. \nCast forth lightning, and scatter them: shoot out thine arrows, and destroy them. \nSend thine hand from above; rid me, and deliver me out of great waters, from the hand of strange children; \nWhose mouth speaketh vanity, and their right hand is a right hand of falsehood. \nI will sing a new song unto thee, O God: upon a psaltery and an instrument of ten strings will I sing praises unto thee. \nIt is he that giveth salvation unto kings: who delivereth David his servant from the hurtful sword. \nRid me, and deliver me from the hand of strange children, whose mouth speaketh vanity, and their right hand is a right hand of falsehood: \nThat our sons may be as plants grown up in their youth; that our daughters may be as corner stones, polished after the similitude of a palace: \nThat our garners may be full, affording all manner of store: that our sheep may bring forth thousands and ten thousands in our streets: \nThat our oxen may be strong to labour; that there be no breaking in, nor going out; that there be no complaining in our streets. \nHappy is that people, that is in such a case: yea, happy is that people, whose God is the LORD. \nI will extol thee, my God, O king; and I will bless thy name for ever and ever. \nEvery day will I bless thee; and I will praise thy name for ever and ever. \nGreat is the LORD, and greatly to be praised; and his greatness is unsearchable. \nOne generation shall praise thy works to another, and shall declare thy mighty acts. \nI will speak of the glorious honour of thy majesty, and of thy wondrous works. \nAnd men shall speak of the might of thy terrible acts: and I will declare thy greatness. \nThey shall abundantly utter the memory of thy great goodness, and shall sing of thy righteousness. \nThe LORD is gracious, and full of compassion; slow to anger, and of great mercy. \nThe LORD is good to all: and his tender mercies are over all his works. \nAll thy works shall praise thee, O LORD; and thy saints shall bless thee. \nThey shall speak of the glory of thy kingdom, and talk of thy power; \nTo make known to the sons of men his mighty acts, and the glorious majesty of his kingdom. \nThy kingdom is an everlasting kingdom, and thy dominion endureth throughout all generations. \nThe LORD upholdeth all that fall, and raiseth up all those that be bowed down. \nThe eyes of all wait upon thee; and thou givest them their meat in due season. \nThou openest thine hand, and satisfiest the desire of every living thing. \nThe LORD is righteous in all his ways, and holy in all his works. \nThe LORD is nigh unto all them that call upon him, to all that call upon him in truth. \nHe will fulfil the desire of them that fear him: he also will hear their cry, and will save them. \nThe LORD preserveth all them that love him: but all the wicked will he destroy. \nMy mouth shall speak the praise of the LORD: and let all flesh bless his holy name for ever and ever. \nPraise ye the LORD. Praise the LORD, O my soul. \nWhile I live will I praise the LORD: I will sing praises unto my God while I have any being. \nPut not your trust in princes, nor in the son of man, in whom there is no help. \nHis breath goeth forth, he returneth to his earth; in that very day his thoughts perish. \nHappy is he that hath the God of Jacob for his help, whose hope is in the LORD his God: \nWhich made heaven, and earth, the sea, and all that therein is: which keepeth truth for ever: \nWhich executeth judgment for the oppressed: which giveth food to the hungry. The LORD looseth the prisoners: \nThe LORD openeth the eyes of the blind: the LORD raiseth them that are bowed down: the LORD loveth the righteous: \nThe LORD preserveth the strangers; he relieveth the fatherless and widow: but the way of the wicked he turneth upside down. \nThe LORD shall reign for ever, even thy God, O Zion, unto all generations. Praise ye the LORD. \nPraise ye the LORD: for it is good to sing praises unto our God; for it is pleasant; and praise is comely. \nThe LORD doth build up Jerusalem: he gathereth together the outcasts of Israel. \nHe healeth the broken in heart, and bindeth up their wounds. \nHe telleth the number of the stars; he calleth them all by their names. \nGreat is our Lord, and of great power: his understanding is infinite. \nThe LORD lifteth up the meek: he casteth the wicked down to the ground. \nSing unto the LORD with thanksgiving; sing praise upon the harp unto our God: \nWho covereth the heaven with clouds, who prepareth rain for the earth, who maketh grass to grow upon the mountains. \nHe giveth to the beast his food, and to the young ravens which cry. \nHe delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man. \nThe LORD taketh pleasure in them that fear him, in those that hope in his mercy. \nPraise the LORD, O Jerusalem; praise thy God, O Zion. \nFor he hath strengthened the bars of thy gates; he hath blessed thy children within thee. \nHe maketh peace in thy borders, and filleth thee with the finest of the wheat. \nHe sendeth forth his commandment upon earth: his word runneth very swiftly. \nHe giveth snow like wool: he scattereth the hoarfrost like ashes. \nHe casteth forth his ice like morsels: who can stand before his cold? \nHe sendeth out his word, and melteth them: he causeth his wind to blow, and the waters flow. \nHe sheweth his word unto Jacob, his statutes and his judgments unto Israel. \nHe hath not dealt so with any nation: and as for his judgments, they have not known them. Praise ye the LORD. \nPraise ye the LORD. Praise ye the LORD from the heavens: praise him in the heights. \nPraise ye him, all his angels: praise ye him, all his hosts. \nPraise ye him, sun and moon: praise him, all ye stars of light. \nPraise him, ye heavens of heavens, and ye waters that be above the heavens. \nLet them praise the name of the LORD: for he commanded, and they were created. \nHe hath also stablished them for ever and ever: he hath made a decree which shall not pass. \nPraise the LORD from the earth, ye dragons, and all deeps: \nFire, and hail; snow, and vapours; stormy wind fulfilling his word: \nMountains, and all hills; fruitful trees, and all cedars: \nBeasts, and all cattle; creeping things, and flying fowl: \nKings of the earth, and all people; princes, and all judges of the earth: \nBoth young men, and maidens; old men, and children: \nLet them praise the name of the LORD: for his name alone is excellent; his glory is above the earth and heaven. \nHe also exalteth the horn of his people, the praise of all his saints; even of the children of Israel, a people near unto him. Praise ye the LORD. \nPraise ye the LORD. Sing unto the LORD a new song, and his praise in the congregation of saints. \nLet Israel rejoice in him that made him: let the children of Zion be joyful in their King. \nLet them praise his name in the dance: let them sing praises unto him with the timbrel and harp. \nFor the LORD taketh pleasure in his people: he will beautify the meek with salvation. \nLet the saints be joyful in glory: let them sing aloud upon their beds. \nLet the high praises of God be in their mouth, and a two-edged sword in their hand; \nTo execute vengeance upon the heathen, and punishments upon the people; \nTo bind their kings with chains, and their nobles with fetters of iron; \nTo execute upon them the judgment written: this honour have all his saints. Praise ye the LORD. \nPraise ye the LORD. Praise God in his sanctuary: praise him in the firmament of his power. \nPraise him for his mighty acts: praise him according to his excellent greatness. \nPraise him with the sound of the trumpet: praise him with the psaltery and harp. \nPraise him with the timbrel and dance: praise him with stringed instruments and organs. \nPraise him upon the loud cymbals: praise him upon the high sounding cymbals. \nLet every thing that hath breath praise the LORD. Praise ye the LORD. \nThe proverbs of Solomon the son of David, king of Israel; \nTo know wisdom and instruction; to perceive the words of understanding; \nTo receive the instruction of wisdom, justice, and judgment, and equity; \nTo give subtilty to the simple, to the young man knowledge and discretion. \nA wise man will hear, and will increase learning; and a man of understanding shall attain unto wise counsels: \nTo understand a proverb, and the interpretation; the words of the wise, and their dark sayings. \nThe fear of the LORD is the beginning of knowledge: but fools despise wisdom and instruction. \nMy son, hear the instruction of thy father, and forsake not the law of thy mother: \nFor they shall be an ornament of grace unto thy head, and chains about thy neck. \nMy son, if sinners entice thee, consent thou not. \nIf they say, Come with us, let us lay wait for blood, let us lurk privily for the innocent without cause: \nLet us swallow them up alive as the grave; and whole, as those that go down into the pit: \nWe shall find all precious substance, we shall fill our houses with spoil: \nCast in thy lot among us; let us all have one purse: \nMy son, walk not thou in the way with them; refrain thy foot from their path: \nFor their feet run to evil, and make haste to shed blood. \nSurely in vain the net is spread in the sight of any bird. \nAnd they lay wait for their own blood; they lurk privily for their own lives. \nSo are the ways of every one that is greedy of gain; which taketh away the life of the owners thereof. \nWisdom crieth without; she uttereth her voice in the streets: \nShe crieth in the chief place of concourse, in the openings of the gates: in the city she uttereth her words, saying, \nHow long, ye simple ones, will ye love simplicity? and the scorners delight in their scorning, and fools hate knowledge? \nTurn you at my reproof: behold, I will pour out my spirit unto you, I will make known my words unto you. \nBecause I have called, and ye refused; I have stretched out my hand, and no man regarded; \nBut ye have set at nought all my counsel, and would none of my reproof: \nI also will laugh at your calamity; I will mock when your fear cometh; \nWhen your fear cometh as desolation, and your destruction cometh as a whirlwind; when distress and anguish cometh upon you. \nThen shall they call upon me, but I will not answer; they shall seek me early, but they shall not find me: \nFor that they hated knowledge, and did not choose the fear of the LORD: \nThey would none of my counsel: they despised all my reproof. \nTherefore shall they eat of the fruit of their own way, and be filled with their own devices. \nFor the turning away of the simple shall slay them, and the prosperity of fools shall destroy them. \nBut whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil. \nMy son, if thou wilt receive my words, and hide my commandments with thee; \nSo that thou incline thine ear unto wisdom, and apply thine heart to understanding; \nYea, if thou criest after knowledge, and liftest up thy voice for understanding; \nIf thou seekest her as silver, and searchest for her as for hid treasures; \nThen shalt thou understand the fear of the LORD, and find the knowledge of God. \nFor the LORD giveth wisdom: out of his mouth cometh knowledge and understanding. \nHe layeth up sound wisdom for the righteous: he is a buckler to them that walk uprightly. \nHe keepeth the paths of judgment, and preserveth the way of his saints. \nThen shalt thou understand righteousness, and judgment, and equity; yea, every good path. \nWhen wisdom entereth into thine heart, and knowledge is pleasant unto thy soul; \nDiscretion shall preserve thee, understanding shall keep thee: \nTo deliver thee from the way of the evil man, from the man that speaketh froward things; \nWho leave the paths of uprightness, to walk in the ways of darkness; \nWho rejoice to do evil, and delight in the frowardness of the wicked; \nWhose ways are crooked, and they froward in their paths: \nTo deliver thee from the strange woman, even from the stranger which flattereth with her words; \nWhich forsaketh the guide of her youth, and forgetteth the covenant of her God. \nFor her house inclineth unto death, and her paths unto the dead. \nNone that go unto her return again, neither take they hold of the paths of life. \nThat thou mayest walk in the way of good men, and keep the paths of the righteous. \nFor the upright shall dwell in the land, and the perfect shall remain in it. \nBut the wicked shall be cut off from the earth, and the transgressors shall be rooted out of it. \nMy son, forget not my law; but let thine heart keep my commandments: \nFor length of days, and long life, and peace, shall they add to thee. \nLet not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart: \nSo shalt thou find favour and good understanding in the sight of God and man. \nTrust in the LORD with all thine heart; and lean not unto thine own understanding. \nIn all thy ways acknowledge him, and he shall direct thy paths. \nBe not wise in thine own eyes: fear the LORD, and depart from evil. \nIt shall be health to thy navel, and marrow to thy bones. \nHonour the LORD with thy substance, and with the firstfruits of all thine increase: \nSo shall thy barns be filled with plenty, and thy presses shall burst out with new wine. \nMy son, despise not the chastening of the LORD; neither be weary of his correction: \nFor whom the LORD loveth he correcteth; even as a father the son in whom he delighteth. \nHappy is the man that findeth wisdom, and the man that getteth understanding. \nFor the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold. \nShe is more precious than rubies: and all the things thou canst desire are not to be compared unto her. \nLength of days is in her right hand; and in her left hand riches and honour. \nHer ways are ways of pleasantness, and all her paths are peace. \nShe is a tree of life to them that lay hold upon her: and happy is every one that retaineth her. \nThe LORD by wisdom hath founded the earth; by understanding hath he established the heavens. \nBy his knowledge the depths are broken up, and the clouds drop down the dew. \nMy son, let not them depart from thine eyes: keep sound wisdom and discretion: \nSo shall they be life unto thy soul, and grace to thy neck. \nThen shalt thou walk in thy way safely, and thy foot shall not stumble. \nWhen thou liest down, thou shalt not be afraid: yea, thou shalt lie down, and thy sleep shall be sweet. \nBe not afraid of sudden fear, neither of the desolation of the wicked, when it cometh. \nFor the LORD shall be thy confidence, and shall keep thy foot from being taken. \nWithhold not good from them to whom it is due, when it is in the power of thine hand to do it. \nSay not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee. \nDevise not evil against thy neighbour, seeing he dwelleth securely by thee. \nStrive not with a man without cause, if he have done thee no harm. \nEnvy thou not the oppressor, and choose none of his ways. \nFor the froward is abomination to the LORD: but his secret is with the righteous. \nThe curse of the LORD is in the house of the wicked: but he blesseth the habitation of the just. \nSurely he scorneth the scorners: but he giveth grace unto the lowly. \nThe wise shall inherit glory: but shame shall be the promotion of fools. \nHear, ye children, the instruction of a father, and attend to know understanding. \nFor I give you good doctrine, forsake ye not my law. \nFor I was my father's son, tender and only beloved in the sight of my mother. \nHe taught me also, and said unto me, Let thine heart retain my words: keep my commandments, and live. \nGet wisdom, get understanding: forget it not; neither decline from the words of my mouth. \nForsake her not, and she shall preserve thee: love her, and she shall keep thee. \nWisdom is the principal thing; therefore get wisdom: and with all thy getting get understanding. \nExalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her. \nShe shall give to thine head an ornament of grace: a crown of glory shall she deliver to thee. \nHear, O my son, and receive my sayings; and the years of thy life shall be many. \nI have taught thee in the way of wisdom; I have led thee in right paths. \nWhen thou goest, thy steps shall not be straitened; and when thou runnest, thou shalt not stumble. \nTake fast hold of instruction; let her not go: keep her; for she is thy life. \nEnter not into the path of the wicked, and go not in the way of evil men. \nAvoid it, pass not by it, turn from it, and pass away. \nFor they sleep not, except they have done mischief; and their sleep is taken away, unless they cause some to fall. \nFor they eat the bread of wickedness, and drink the wine of violence. \nBut the path of the just is as the shining light, that shineth more and more unto the perfect day. \nThe way of the wicked is as darkness: they know not at what they stumble. \nMy son, attend to my words; incline thine ear unto my sayings. \nLet them not depart from thine eyes; keep them in the midst of thine heart. \nFor they are life unto those that find them, and health to all their flesh. \nKeep thy heart with all diligence; for out of it are the issues of life. \nPut away from thee a froward mouth, and perverse lips put far from thee. \nLet thine eyes look right on, and let thine eyelids look straight before thee. \nPonder the path of thy feet, and let all thy ways be established. \nTurn not to the right hand nor to the left: remove thy foot from evil. \nMy son, attend unto my wisdom, and bow thine ear to my understanding: \nThat thou mayest regard discretion, and that thy lips may keep knowledge. \nFor the lips of a strange woman drop as an honeycomb, and her mouth is smoother than oil: \nBut her end is bitter as wormwood, sharp as a two-edged sword. \nHer feet go down to death; her steps take hold on hell. \nLest thou shouldest ponder the path of life, her ways are moveable, that thou canst not know them. \nHear me now therefore, O ye children, and depart not from the words of my mouth. \nRemove thy way far from her, and come not nigh the door of her house: \nLest thou give thine honour unto others, and thy years unto the cruel: \nLest strangers be filled with thy wealth; and thy labours be in the house of a stranger; \nAnd thou mourn at the last, when thy flesh and thy body are consumed, \nAnd say, How have I hated instruction, and my heart despised reproof; \nAnd have not obeyed the voice of my teachers, nor inclined mine ear to them that instructed me! \nI was almost in all evil in the midst of the congregation and assembly. \nDrink waters out of thine own cistern, and running waters out of thine own well. \nLet thy fountains be dispersed abroad, and rivers of waters in the streets. \nLet them be only thine own, and not strangers' with thee. \nLet thy fountain be blessed: and rejoice with the wife of thy youth. \nLet her be as the loving hind and pleasant roe; let her breasts satisfy thee at all times; and be thou ravished always with her love. \nAnd why wilt thou, my son, be ravished with a strange woman, and embrace the bosom of a stranger? \nFor the ways of man are before the eyes of the LORD, and he pondereth all his goings. \nHis own iniquities shall take the wicked himself, and he shall be holden with the cords of his sins. \nHe shall die without instruction; and in the greatness of his folly he shall go astray. \nMy son, if thou be surety for thy friend, if thou hast stricken thy hand with a stranger, \nThou art snared with the words of thy mouth, thou art taken with the words of thy mouth. \nDo this now, my son, and deliver thyself, when thou art come into the hand of thy friend; go, humble thyself, and make sure thy friend. \nGive not sleep to thine eyes, nor slumber to thine eyelids. \nDeliver thyself as a roe from the hand of the hunter, and as a bird from the hand of the fowler. \nGo to the ant, thou sluggard; consider her ways, and be wise: \nWhich having no guide, overseer, or ruler, \nProvideth her meat in the summer, and gathereth her food in the harvest. \nHow long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep? \nYet a little sleep, a little slumber, a little folding of the hands to sleep: \nSo shall thy poverty come as one that travelleth, and thy want as an armed man. \nA naughty person, a wicked man, walketh with a froward mouth. \nHe winketh with his eyes, he speaketh with his feet, he teacheth with his fingers; \nFrowardness is in his heart, he deviseth mischief continually; he soweth discord. \nTherefore shall his calamity come suddenly; suddenly shall he be broken without remedy. \nThese six things doth the LORD hate: yea, seven are an abomination unto him: \nA proud look, a lying tongue, and hands that shed innocent blood, \nAn heart that deviseth wicked imaginations, feet that be swift in running to mischief, \nA false witness that speaketh lies, and he that soweth discord among brethren. \nMy son, keep thy father's commandment, and forsake not the law of thy mother: \nBind them continually upon thine heart, and tie them about thy neck. \nWhen thou goest, it shall lead thee; when thou sleepest, it shall keep thee; and when thou awakest, it shall talk with thee. \nFor the commandment is a lamp; and the law is light; and reproofs of instruction are the way of life: \nTo keep thee from the evil woman, from the flattery of the tongue of a strange woman. \nLust not after her beauty in thine heart; neither let her take thee with her eyelids. \nFor by means of a whorish woman a man is brought to a piece of bread: and the adultress will hunt for the precious life. \nCan a man take fire in his bosom, and his clothes not be burned? \nCan one go upon hot coals, and his feet not be burned? \nSo he that goeth in to his neighbour's wife; whosoever toucheth her shall not be innocent. \nMen do not despise a thief, if he steal to satisfy his soul when he is hungry; \nBut if he be found, he shall restore sevenfold; he shall give all the substance of his house. \nBut whoso committeth adultery with a woman lacketh understanding: he that doeth it destroyeth his own soul. \nA wound and dishonour shall he get; and his reproach shall not be wiped away. \nFor jealousy is the rage of a man: therefore he will not spare in the day of vengeance. \nHe will not regard any ransom; neither will he rest content, though thou givest many gifts. \nMy son, keep my words, and lay up my commandments with thee. \nKeep my commandments, and live; and my law as the apple of thine eye. \nBind them upon thy fingers, write them upon the table of thine heart. \nSay unto wisdom, Thou art my sister; and call understanding thy kinswoman: \nThat they may keep thee from the strange woman, from the stranger which flattereth with her words. \nFor at the window of my house I looked through my casement, \nAnd beheld among the simple ones, I discerned among the youths, a young man void of understanding, \nPassing through the street near her corner; and he went the way to her house, \nIn the twilight, in the evening, in the black and dark night: \nAnd, behold, there met him a woman with the attire of an harlot, and subtil of heart. \n(She is loud and stubborn; her feet abide not in her house: \nNow is she without, now in the streets, and lieth in wait at every corner.) \nSo she caught him, and kissed him, and with an impudent face said unto him, \nI have peace offerings with me; this day have I payed my vows. \nTherefore came I forth to meet thee, diligently to seek thy face, and I have found thee. \nI have decked my bed with coverings of tapestry, with carved works, with fine linen of Egypt. \nI have perfumed my bed with myrrh, aloes, and cinnamon. \nCome, let us take our fill of love until the morning: let us solace ourselves with loves. \nFor the goodman is not at home, he is gone a long journey: \nHe hath taken a bag of money with him, and will come home at the day appointed. \nWith her much fair speech she caused him to yield, with the flattering of her lips she forced him. \nHe goeth after her straightway, as an ox goeth to the slaughter, or as a fool to the correction of the stocks; \nTill a dart strike through his liver; as a bird hasteth to the snare, and knoweth not that it is for his life. \nHearken unto me now therefore, O ye children, and attend to the words of my mouth. \nLet not thine heart decline to her ways, go not astray in her paths. \nFor she hath cast down many wounded: yea, many strong men have been slain by her. \nHer house is the way to hell, going down to the chambers of death. \nDoth not wisdom cry? and understanding put forth her voice? \nShe standeth in the top of high places, by the way in the places of the paths. \nShe crieth at the gates, at the entry of the city, at the coming in at the doors. \nUnto you, O men, I call; and my voice is to the sons of man. \nO ye simple, understand wisdom: and, ye fools, be ye of an understanding heart. \nHear; for I will speak of excellent things; and the opening of my lips shall be right things. \nFor my mouth shall speak truth; and wickedness is an abomination to my lips. \nAll the words of my mouth are in righteousness; there is nothing froward or perverse in them. \nThey are all plain to him that understandeth, and right to them that find knowledge. \nReceive my instruction, and not silver; and knowledge rather than choice gold. \nFor wisdom is better than rubies; and all the things that may be desired are not to be compared to it. \nI wisdom dwell with prudence, and find out knowledge of witty inventions. \nThe fear of the LORD is to hate evil: pride, and arrogancy, and the evil way, and the froward mouth, do I hate. \nCounsel is mine, and sound wisdom: I am understanding; I have strength. \nBy me kings reign, and princes decree justice. \nBy me princes rule, and nobles, even all the judges of the earth. \nI love them that love me; and those that seek me early shall find me. \nRiches and honour are with me; yea, durable riches and righteousness. \nMy fruit is better than gold, yea, than fine gold; and my revenue than choice silver. \nI lead in the way of righteousness, in the midst of the paths of judgment: \nThat I may cause those that love me to inherit substance; and I will fill their treasures. \nThe LORD possessed me in the beginning of his way, before his works of old. \nI was set up from everlasting, from the beginning, or ever the earth was. \nWhen there were no depths, I was brought forth; when there were no fountains abounding with water. \nBefore the mountains were settled, before the hills was I brought forth: \nWhile as yet he had not made the earth, nor the fields, nor the highest part of the dust of the world. \nWhen he prepared the heavens, I was there: when he set a compass upon the face of the depth: \nWhen he established the clouds above: when he strengthened the fountains of the deep: \nWhen he gave to the sea his decree, that the waters should not pass his commandment: when he appointed the foundations of the earth: \nThen I was by him, as one brought up with him: and I was daily his delight, rejoicing always before him; \nRejoicing in the habitable part of his earth; and my delights were with the sons of men. \nNow therefore hearken unto me, O ye children: for blessed are they that keep my ways. \nHear instruction, and be wise, and refuse it not. \nBlessed is the man that heareth me, watching daily at my gates, waiting at the posts of my doors. \nFor whoso findeth me findeth life, and shall obtain favour of the LORD. \nBut he that sinneth against me wrongeth his own soul: all they that hate me love death. \nWisdom hath builded her house, she hath hewn out her seven pillars: \nShe hath killed her beasts; she hath mingled her wine; she hath also furnished her table. \nShe hath sent forth her maidens: she crieth upon the highest places of the city, \nWhoso is simple, let him turn in hither: as for him that wanteth understanding, she saith to him, \nCome, eat of my bread, and drink of the wine which I have mingled. \nForsake the foolish, and live; and go in the way of understanding. \nHe that reproveth a scorner getteth to himself shame: and he that rebuketh a wicked man getteth himself a blot. \nReprove not a scorner, lest he hate thee: rebuke a wise man, and he will love thee. \nGive instruction to a wise man, and he will be yet wiser: teach a just man, and he will increase in learning. \nThe fear of the LORD is the beginning of wisdom: and the knowledge of the holy is understanding. \nFor by me thy days shall be multiplied, and the years of thy life shall be increased. \nIf thou be wise, thou shalt be wise for thyself: but if thou scornest, thou alone shalt bear it. \nA foolish woman is clamorous: she is simple, and knoweth nothing. \nFor she sitteth at the door of her house, on a seat in the high places of the city, \nTo call passengers who go right on their ways: \nWhoso is simple, let him turn in hither: and as for him that wanteth understanding, she saith to him, \nStolen waters are sweet, and bread eaten in secret is pleasant. \nBut he knoweth not that the dead are there; and that her guests are in the depths of hell. \nThe proverbs of Solomon. A wise son maketh a glad father: but a foolish son is the heaviness of his mother. \nTreasures of wickedness profit nothing: but righteousness delivereth from death. \nThe LORD will not suffer the soul of the righteous to famish: but he casteth away the substance of the wicked. \nHe becometh poor that dealeth with a slack hand: but the hand of the diligent maketh rich. \nHe that gathereth in summer is a wise son: but he that sleepeth in harvest is a son that causeth shame. \nBlessings are upon the head of the just: but violence covereth the mouth of the wicked. \nThe memory of the just is blessed: but the name of the wicked shall rot. \nThe wise in heart will receive commandments: but a prating fool shall fall. \nHe that walketh uprightly walketh surely: but he that perverteth his ways shall be known. \nHe that winketh with the eye causeth sorrow: but a prating fool shall fall. \nThe mouth of a righteous man is a well of life: but violence covereth the mouth of the wicked. \nHatred stirreth up strifes: but love covereth all sins. \nIn the lips of him that hath understanding wisdom is found: but a rod is for the back of him that is void of understanding. \nWise men lay up knowledge: but the mouth of the foolish is near destruction. \nThe rich man's wealth is his strong city: the destruction of the poor is their poverty. \nThe labour of the righteous tendeth to life: the fruit of the wicked to sin. \nHe is in the way of life that keepeth instruction: but he that refuseth reproof erreth. \nHe that hideth hatred with lying lips, and he that uttereth a slander, is a fool. \nIn the multitude of words there wanteth not sin: but he that refraineth his lips is wise. \nThe tongue of the just is as choice silver: the heart of the wicked is little worth. \nThe lips of the righteous feed many: but fools die for want of wisdom. \nThe blessing of the LORD, it maketh rich, and he addeth no sorrow with it. \nIt is as sport to a fool to do mischief: but a man of understanding hath wisdom. \nThe fear of the wicked, it shall come upon him: but the desire of the righteous shall be granted. \nAs the whirlwind passeth, so is the wicked no more: but the righteous is an everlasting foundation. \nAs vinegar to the teeth, and as smoke to the eyes, so is the sluggard to them that send him. \nThe fear of the LORD prolongeth days: but the years of the wicked shall be shortened. \nThe hope of the righteous shall be gladness: but the expectation of the wicked shall perish. \nThe way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity. \nThe righteous shall never be removed: but the wicked shall not inhabit the earth. \nThe mouth of the just bringeth forth wisdom: but the froward tongue shall be cut out. \nThe lips of the righteous know what is acceptable: but the mouth of the wicked speaketh frowardness. \nA false balance is abomination to the LORD: but a just weight is his delight. \nWhen pride cometh, then cometh shame: but with the lowly is wisdom. \nThe integrity of the upright shall guide them: but the perverseness of transgressors shall destroy them. \nRiches profit not in the day of wrath: but righteousness delivereth from death. \nThe righteousness of the perfect shall direct his way: but the wicked shall fall by his own wickedness. \nThe righteousness of the upright shall deliver them: but transgressors shall be taken in their own naughtiness. \nWhen a wicked man dieth, his expectation shall perish: and the hope of unjust men perisheth. \nThe righteous is delivered out of trouble, and the wicked cometh in his stead. \nAn hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered. \nWhen it goeth well with the righteous, the city rejoiceth: and when the wicked perish, there is shouting. \nBy the blessing of the upright the city is exalted: but it is overthrown by the mouth of the wicked. \nHe that is void of wisdom despiseth his neighbour: but a man of understanding holdeth his peace. \nA talebearer revealeth secrets: but he that is of a faithful spirit concealeth the matter. \nWhere no counsel is, the people fall: but in the multitude of counsellors there is safety. \nHe that is surety for a stranger shall smart for it: and he that hateth suretiship is sure. \nA gracious woman retaineth honour: and strong men retain riches. \nThe merciful man doeth good to his own soul: but he that is cruel troubleth his own flesh. \nThe wicked worketh a deceitful work: but to him that soweth righteousness shall be a sure reward. \nAs righteousness tendeth to life: so he that pursueth evil pursueth it to his own death. \nThey that are of a froward heart are abomination to the LORD: but such as are upright in their way are his delight. \nThough hand join in hand, the wicked shall not be unpunished: but the seed of the righteous shall be delivered. \nAs a jewel of gold in a swine's snout, so is a fair woman which is without discretion. \nThe desire of the righteous is only good: but the expectation of the wicked is wrath. \nThere is that scattereth, and yet increaseth; and there is that withholdeth more than is meet, but it tendeth to poverty. \nThe liberal soul shall be made fat: and he that watereth shall be watered also himself. \nHe that withholdeth corn, the people shall curse him: but blessing shall be upon the head of him that selleth it. \nHe that diligently seeketh good procureth favour: but he that seeketh mischief, it shall come unto him. \nHe that trusteth in his riches shall fall; but the righteous shall flourish as a branch. \nHe that troubleth his own house shall inherit the wind: and the fool shall be servant to the wise of heart. \nThe fruit of the righteous is a tree of life; and he that winneth souls is wise. \nBehold, the righteous shall be recompensed in the earth: much more the wicked and the sinner. \nWhoso loveth instruction loveth knowledge: but he that hateth reproof is brutish. \nA good man obtaineth favour of the LORD: but a man of wicked devices will he condemn. \nA man shall not be established by wickedness: but the root of the righteous shall not be moved. \nA virtuous woman is a crown to her husband: but she that maketh ashamed is as rottenness in his bones. \nThe thoughts of the righteous are right: but the counsels of the wicked are deceit. \nThe words of the wicked are to lie in wait for blood: but the mouth of the upright shall deliver them. \nThe wicked are overthrown, and are not: but the house of the righteous shall stand. \nA man shall be commended according to his wisdom: but he that is of a perverse heart shall be despised. \nHe that is despised, and hath a servant, is better than he that honoureth himself, and lacketh bread. \nA righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel. \nHe that tilleth his land shall be satisfied with bread: but he that followeth vain persons is void of understanding. \nThe wicked desireth the net of evil men: but the root of the righteous yieldeth fruit. \nThe wicked is snared by the transgression of his lips: but the just shall come out of trouble. \nA man shall be satisfied with good by the fruit of his mouth: and the recompence of a man's hands shall be rendered unto him. \nThe way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise. \nA fool's wrath is presently known: but a prudent man covereth shame. \nHe that speaketh truth sheweth forth righteousness: but a false witness deceit. \nThere is that speaketh like the piercings of a sword: but the tongue of the wise is health. \nThe lip of truth shall be established for ever: but a lying tongue is but for a moment. \nDeceit is in the heart of them that imagine evil: but to the counsellors of peace is joy. \nThere shall no evil happen to the just: but the wicked shall be filled with mischief. \nLying lips are abomination to the LORD: but they that deal truly are his delight. \nA prudent man concealeth knowledge: but the heart of fools proclaimeth foolishness. \nThe hand of the diligent shall bear rule: but the slothful shall be under tribute. \nHeaviness in the heart of man maketh it stoop: but a good word maketh it glad. \nThe righteous is more excellent than his neighbour: but the way of the wicked seduceth them. \nThe slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious. \nIn the way of righteousness is life: and in the pathway thereof there is no death. \nA wise son heareth his father's instruction: but a scorner heareth not rebuke. \nA man shall eat good by the fruit of his mouth: but the soul of the transgressors shall eat violence. \nHe that keepeth his mouth keepeth his life: but he that openeth wide his lips shall have destruction. \nThe soul of the sluggard desireth, and hath nothing: but the soul of the diligent shall be made fat. \nA righteous man hateth lying: but a wicked man is loathsome, and cometh to shame. \nRighteousness keepeth him that is upright in the way: but wickedness overthroweth the sinner. \nThere is that maketh himself rich, yet hath nothing: there is that maketh himself poor, yet hath great riches. \nThe ransom of a man's life are his riches: but the poor heareth not rebuke. \nThe light of the righteous rejoiceth: but the lamp of the wicked shall be put out. \nOnly by pride cometh contention: but with the well advised is wisdom. \nWealth gotten by vanity shall be diminished: but he that gathereth by labour shall increase. \nHope deferred maketh the heart sick: but when the desire cometh, it is a tree of life. \nWhoso despiseth the word shall be destroyed: but he that feareth the commandment shall be rewarded. \nThe law of the wise is a fountain of life, to depart from the snares of death. \nGood understanding giveth favour: but the way of transgressors is hard. \nEvery prudent man dealeth with knowledge: but a fool layeth open his folly. \nA wicked messenger falleth into mischief: but a faithful ambassador is health. \nPoverty and shame shall be to him that refuseth instruction: but he that regardeth reproof shall be honoured. \nThe desire accomplished is sweet to the soul: but it is abomination to fools to depart from evil. \nHe that walketh with wise men shall be wise: but a companion of fools shall be destroyed. \nEvil pursueth sinners: but to the righteous good shall be repayed. \nA good man leaveth an inheritance to his children's children: and the wealth of the sinner is laid up for the just. \nMuch food is in the tillage of the poor: but there is that is destroyed for want of judgment. \nHe that spareth his rod hateth his son: but he that loveth him chasteneth him betimes. \nThe righteous eateth to the satisfying of his soul: but the belly of the wicked shall want. \nEvery wise woman buildeth her house: but the foolish plucketh it down with her hands. \nHe that walketh in his uprightness feareth the LORD: but he that is perverse in his ways despiseth him. \nIn the mouth of the foolish is a rod of pride: but the lips of the wise shall preserve them. \nWhere no oxen are, the crib is clean: but much increase is by the strength of the ox. \nA faithful witness will not lie: but a false witness will utter lies. \nA scorner seeketh wisdom, and findeth it not: but knowledge is easy unto him that understandeth. \nGo from the presence of a foolish man, when thou perceivest not in him the lips of knowledge. \nThe wisdom of the prudent is to understand his way: but the folly of fools is deceit. \nFools make a mock at sin: but among the righteous there is favour. \nThe heart knoweth his own bitterness; and a stranger doth not intermeddle with his joy. \nThe house of the wicked shall be overthrown: but the tabernacle of the upright shall flourish. \nThere is a way which seemeth right unto a man, but the end thereof are the ways of death. \nEven in laughter the heart is sorrowful; and the end of that mirth is heaviness. \nThe backslider in heart shall be filled with his own ways: and a good man shall be satisfied from himself. \nThe simple believeth every word: but the prudent man looketh well to his going. \nA wise man feareth, and departeth from evil: but the fool rageth, and is confident. \nHe that is soon angry dealeth foolishly: and a man of wicked devices is hated. \nThe simple inherit folly: but the prudent are crowned with knowledge. \nThe evil bow before the good; and the wicked at the gates of the righteous. \nThe poor is hated even of his own neighbour: but the rich hath many friends. \nHe that despiseth his neighbour sinneth: but he that hath mercy on the poor, happy is he. \nDo they not err that devise evil? but mercy and truth shall be to them that devise good. \nIn all labour there is profit: but the talk of the lips tendeth only to penury. \nThe crown of the wise is their riches: but the foolishness of fools is folly. \nA true witness delivereth souls: but a deceitful witness speaketh lies. \nIn the fear of the LORD is strong confidence: and his children shall have a place of refuge. \nThe fear of the LORD is a fountain of life, to depart from the snares of death. \nIn the multitude of people is the king's honour: but in the want of people is the destruction of the prince. \nHe that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly. \nA sound heart is the life of the flesh: but envy the rottenness of the bones. \nHe that oppresseth the poor reproacheth his Maker: but he that honoureth him hath mercy on the poor. \nThe wicked is driven away in his wickedness: but the righteous hath hope in his death. \nWisdom resteth in the heart of him that hath understanding: but that which is in the midst of fools is made known. \nRighteousness exalteth a nation: but sin is a reproach to any people. \nThe king's favour is toward a wise servant: but his wrath is against him that causeth shame. \nA soft answer turneth away wrath: but grievous words stir up anger. \nThe tongue of the wise useth knowledge aright: but the mouth of fools poureth out foolishness. \nThe eyes of the LORD are in every place, beholding the evil and the good. \nA wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit. \nA fool despiseth his father's instruction: but he that regardeth reproof is prudent. \nIn the house of the righteous is much treasure: but in the revenues of the wicked is trouble. \nThe lips of the wise disperse knowledge: but the heart of the foolish doeth not so. \nThe sacrifice of the wicked is an abomination to the LORD: but the prayer of the upright is his delight. \nThe way of the wicked is an abomination unto the LORD: but he loveth him that followeth after righteousness. \nCorrection is grievous unto him that forsaketh the way: and he that hateth reproof shall die. \nHell and destruction are before the LORD: how much more then the hearts of the children of men? \nA scorner loveth not one that reproveth him: neither will he go unto the wise. \nA merry heart maketh a cheerful countenance: but by sorrow of the heart the spirit is broken. \nThe heart of him that hath understanding seeketh knowledge: but the mouth of fools feedeth on foolishness. \nAll the days of the afflicted are evil: but he that is of a merry heart hath a continual feast. \nBetter is little with the fear of the LORD than great treasure and trouble therewith. \nBetter is a dinner of herbs where love is, than a stalled ox and hatred therewith. \nA wrathful man stirreth up strife: but he that is slow to anger appeaseth strife. \nThe way of the slothful man is as an hedge of thorns: but the way of the righteous is made plain. \nA wise son maketh a glad father: but a foolish man despiseth his mother. \nFolly is joy to him that is destitute of wisdom: but a man of understanding walketh uprightly. \nWithout counsel purposes are disappointed: but in the multitude of counsellors they are established. \nA man hath joy by the answer of his mouth: and a word spoken in due season, how good is it! \nThe way of life is above to the wise, that he may depart from hell beneath. \nThe LORD will destroy the house of the proud: but he will establish the border of the widow. \nThe thoughts of the wicked are an abomination to the LORD: but the words of the pure are pleasant words. \nHe that is greedy of gain troubleth his own house; but he that hateth gifts shall live. \nThe heart of the righteous studieth to answer: but the mouth of the wicked poureth out evil things. \nThe LORD is far from the wicked: but he heareth the prayer of the righteous. \nThe light of the eyes rejoiceth the heart: and a good report maketh the bones fat. \nThe ear that heareth the reproof of life abideth among the wise. \nHe that refuseth instruction despiseth his own soul: but he that heareth reproof getteth understanding. \nThe fear of the LORD is the instruction of wisdom; and before honour is humility. \nThe preparations of the heart in man, and the answer of the tongue, is from the LORD. \nAll the ways of a man are clean in his own eyes; but the LORD weigheth the spirits. \nCommit thy works unto the LORD, and thy thoughts shall be established. \nThe LORD hath made all things for himself: yea, even the wicked for the day of evil. \nEvery one that is proud in heart is an abomination to the LORD: though hand join in hand, he shall not be unpunished. \nBy mercy and truth iniquity is purged: and by the fear of the LORD men depart from evil. \nWhen a man's ways please the LORD, he maketh even his enemies to be at peace with him. \nBetter is a little with righteousness than great revenues without right. \nA man's heart deviseth his way: but the LORD directeth his steps. \nA divine sentence is in the lips of the king: his mouth transgresseth not in judgment. \nA just weight and balance are the LORD's: all the weights of the bag are his work. \nIt is an abomination to kings to commit wickedness: for the throne is established by righteousness. \nRighteous lips are the delight of kings; and they love him that speaketh right. \nThe wrath of a king is as messengers of death: but a wise man will pacify it. \nIn the light of the king's countenance is life; and his favour is as a cloud of the latter rain. \nHow much better is it to get wisdom than gold! and to get understanding rather to be chosen than silver! \nThe highway of the upright is to depart from evil: he that keepeth his way preserveth his soul. \nPride goeth before destruction, and an haughty spirit before a fall. \nBetter it is to be of an humble spirit with the lowly, than to divide the spoil with the proud. \nHe that handleth a matter wisely shall find good: and whoso trusteth in the LORD, happy is he. \nThe wise in heart shall be called prudent: and the sweetness of the lips increaseth learning. \nUnderstanding is a wellspring of life unto him that hath it: but the instruction of fools is folly. \nThe heart of the wise teacheth his mouth, and addeth learning to his lips. \nPleasant words are as an honeycomb, sweet to the soul, and health to the bones. \nThere is a way that seemeth right unto a man, but the end thereof are the ways of death. \nHe that laboureth laboureth for himself; for his mouth craveth it of him. \nAn ungodly man diggeth up evil: and in his lips there is as a burning fire. \nA froward man soweth strife: and a whisperer separateth chief friends. \nA violent man enticeth his neighbour, and leadeth him into the way that is not good. \nHe shutteth his eyes to devise froward things: moving his lips he bringeth evil to pass. \nThe hoary head is a crown of glory, if it be found in the way of righteousness. \nHe that is slow to anger is better than the mighty; and he that ruleth his spirit than he that taketh a city. \nThe lot is cast into the lap; but the whole disposing thereof is of the LORD. \nBetter is a dry morsel, and quietness therewith, than an house full of sacrifices with strife. \nA wise servant shall have rule over a son that causeth shame, and shall have part of the inheritance among the brethren. \nThe fining pot is for silver, and the furnace for gold: but the LORD trieth the hearts. \nA wicked doer giveth heed to false lips; and a liar giveth ear to a naughty tongue. \nWhoso mocketh the poor reproacheth his Maker: and he that is glad at calamities shall not be unpunished. \nChildren's children are the crown of old men; and the glory of children are their fathers. \nExcellent speech becometh not a fool: much less do lying lips a prince. \nA gift is as a precious stone in the eyes of him that hath it: whithersoever it turneth, it prospereth. \nHe that covereth a transgression seeketh love; but he that repeateth a matter separateth very friends. \nA reproof entereth more into a wise man than an hundred stripes into a fool. \nAn evil man seeketh only rebellion: therefore a cruel messenger shall be sent against him. \nLet a bear robbed of her whelps meet a man, rather than a fool in his folly. \nWhoso rewardeth evil for good, evil shall not depart from his house. \nThe beginning of strife is as when one letteth out water: therefore leave off contention, before it be meddled with. \nHe that justifieth the wicked, and he that condemneth the just, even they both are abomination to the LORD. \nWherefore is there a price in the hand of a fool to get wisdom, seeing he hath no heart to it? \nA friend loveth at all times, and a brother is born for adversity. \nA man void of understanding striketh hands, and becometh surety in the presence of his friend. \nHe loveth transgression that loveth strife: and he that exalteth his gate seeketh destruction. \nHe that hath a froward heart findeth no good: and he that hath a perverse tongue falleth into mischief. \nHe that begetteth a fool doeth it to his sorrow: and the father of a fool hath no joy. \nA merry heart doeth good like a medicine: but a broken spirit drieth the bones. \nA wicked man taketh a gift out of the bosom to pervert the ways of judgment. \nWisdom is before him that hath understanding; but the eyes of a fool are in the ends of the earth. \nA foolish son is a grief to his father, and bitterness to her that bare him. \nAlso to punish the just is not good, nor to strike princes for equity. \nHe that hath knowledge spareth his words: and a man of understanding is of an excellent spirit. \nEven a fool, when he holdeth his peace, is counted wise: and he that shutteth his lips is esteemed a man of understanding. \nThrough desire a man, having separated himself, seeketh and intermeddleth with all wisdom. \nA fool hath no delight in understanding, but that his heart may discover itself. \nWhen the wicked cometh, then cometh also contempt, and with ignominy reproach. \nThe words of a man's mouth are as deep waters, and the wellspring of wisdom as a flowing brook. \nIt is not good to accept the person of the wicked, to overthrow the righteous in judgment. \nA fool's lips enter into contention, and his mouth calleth for strokes. \nA fool's mouth is his destruction, and his lips are the snare of his soul. \nThe words of a talebearer are as wounds, and they go down into the innermost parts of the belly. \nHe also that is slothful in his work is brother to him that is a great waster. \nThe name of the LORD is a strong tower: the righteous runneth into it, and is safe. \nThe rich man's wealth is his strong city, and as an high wall in his own conceit. \nBefore destruction the heart of man is haughty, and before honour is humility. \nHe that answereth a matter before he heareth it, it is folly and shame unto him. \nThe spirit of a man will sustain his infirmity; but a wounded spirit who can bear? \nThe heart of the prudent getteth knowledge; and the ear of the wise seeketh knowledge. \nA man's gift maketh room for him, and bringeth him before great men. \nHe that is first in his own cause seemeth just; but his neighbour cometh and searcheth him. \nThe lot causeth contentions to cease, and parteth between the mighty. \nA brother offended is harder to be won than a strong city: and their contentions are like the bars of a castle. \nA man's belly shall be satisfied with the fruit of his mouth; and with the increase of his lips shall he be filled. \nDeath and life are in the power of the tongue: and they that love it shall eat the fruit thereof. \nWhoso findeth a wife findeth a good thing, and obtaineth favour of the LORD. \nThe poor useth intreaties; but the rich answereth roughly. \nA man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother. \nBetter is the poor that walketh in his integrity, than he that is perverse in his lips, and is a fool. \nAlso, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth. \nThe foolishness of man perverteth his way: and his heart fretteth against the LORD. \nWealth maketh many friends; but the poor is separated from his neighbour. \nA false witness shall not be unpunished, and he that speaketh lies shall not escape. \nMany will intreat the favour of the prince: and every man is a friend to him that giveth gifts. \nAll the brethren of the poor do hate him: how much more do his friends go far from him? he pursueth them with words, yet they are wanting to him. \nHe that getteth wisdom loveth his own soul: he that keepeth understanding shall find good. \nA false witness shall not be unpunished, and he that speaketh lies shall perish. \nDelight is not seemly for a fool; much less for a servant to have rule over princes. \nThe discretion of a man deferreth his anger; and it is his glory to pass over a transgression. \nThe king's wrath is as the roaring of a lion; but his favour is as dew upon the grass. \nA foolish son is the calamity of his father: and the contentions of a wife are a continual dropping. \nHouse and riches are the inheritance of fathers: and a prudent wife is from the LORD. \nSlothfulness casteth into a deep sleep; and an idle soul shall suffer hunger. \nHe that keepeth the commandment keepeth his own soul; but he that despiseth his ways shall die. \nHe that hath pity upon the poor lendeth unto the LORD; and that which he hath given will he pay him again. \nChasten thy son while there is hope, and let not thy soul spare for his crying. \nA man of great wrath shall suffer punishment: for if thou deliver him, yet thou must do it again. \nHear counsel, and receive instruction, that thou mayest be wise in thy latter end. \nThere are many devices in a man's heart; nevertheless the counsel of the LORD, that shall stand. \nThe desire of a man is his kindness: and a poor man is better than a liar. \nThe fear of the LORD tendeth to life: and he that hath it shall abide satisfied; he shall not be visited with evil. \nA slothful man hideth his hand in his bosom, and will not so much as bring it to his mouth again. \nSmite a scorner, and the simple will beware: and reprove one that hath understanding, and he will understand knowledge. \nHe that wasteth his father, and chaseth away his mother, is a son that causeth shame, and bringeth reproach. \nCease, my son, to hear the instruction that causeth to err from the words of knowledge. \nAn ungodly witness scorneth judgment: and the mouth of the wicked devoureth iniquity. \nJudgments are prepared for scorners, and stripes for the back of fools. \nWine is a mocker, strong drink is raging: and whosoever is deceived thereby is not wise. \nThe fear of a king is as the roaring of a lion: whoso provoketh him to anger sinneth against his own soul. \nIt is an honour for a man to cease from strife: but every fool will be meddling. \nThe sluggard will not plow by reason of the cold; therefore shall he beg in harvest, and have nothing. \nCounsel in the heart of man is like deep water; but a man of understanding will draw it out. \nMost men will proclaim every one his own goodness: but a faithful man who can find? \nThe just man walketh in his integrity: his children are blessed after him. \nA king that sitteth in the throne of judgment scattereth away all evil with his eyes. \nWho can say, I have made my heart clean, I am pure from my sin? \nDivers weights, and divers measures, both of them are alike abomination to the LORD. \nEven a child is known by his doings, whether his work be pure, and whether it be right. \nThe hearing ear, and the seeing eye, the LORD hath made even both of them. \nLove not sleep, lest thou come to poverty; open thine eyes, and thou shalt be satisfied with bread. \nIt is naught, it is naught, saith the buyer: but when he is gone his way, then he boasteth. \nThere is gold, and a multitude of rubies: but the lips of knowledge are a precious jewel. \nTake his garment that is surety for a stranger: and take a pledge of him for a strange woman. \nBread of deceit is sweet to a man; but afterwards his mouth shall be filled with gravel. \nEvery purpose is established by counsel: and with good advice make war. \nHe that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips. \nWhoso curseth his father or his mother, his lamp shall be put out in obscure darkness. \nAn inheritance may be gotten hastily at the beginning; but the end thereof shall not be blessed. \nSay not thou, I will recompense evil; but wait on the LORD, and he shall save thee. \nDivers weights are an abomination unto the LORD; and a false balance is not good. \nMan's goings are of the LORD; how can a man then understand his own way? \nIt is a snare to the man who devoureth that which is holy, and after vows to make enquiry. \nA wise king scattereth the wicked, and bringeth the wheel over them. \nThe spirit of man is the candle of the LORD, searching all the inward parts of the belly. \nMercy and truth preserve the king: and his throne is upholden by mercy. \nThe glory of young men is their strength: and the beauty of old men is the grey head. \nThe blueness of a wound cleanseth away evil: so do stripes the inward parts of the belly. \nThe king's heart is in the hand of the LORD, as the rivers of water: he turneth it whithersoever he will. \nEvery way of a man is right in his own eyes: but the LORD pondereth the hearts. \nTo do justice and judgment is more acceptable to the LORD than sacrifice. \nAn high look, and a proud heart, and the plowing of the wicked, is sin. \nThe thoughts of the diligent tend only to plenteousness; but of every one that is hasty only to want. \nThe getting of treasures by a lying tongue is a vanity tossed to and fro of them that seek death. \nThe robbery of the wicked shall destroy them; because they refuse to do judgment. \nThe way of man is froward and strange: but as for the pure, his work is right. \nIt is better to dwell in a corner of the housetop, than with a brawling woman in a wide house. \nThe soul of the wicked desireth evil: his neighbour findeth no favour in his eyes. \nWhen the scorner is punished, the simple is made wise: and when the wise is instructed, he receiveth knowledge. \nThe righteous man wisely considereth the house of the wicked: but God overthroweth the wicked for their wickedness. \nWhoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard. \nA gift in secret pacifieth anger: and a reward in the bosom strong wrath. \nIt is joy to the just to do judgment: but destruction shall be to the workers of iniquity. \nThe man that wandereth out of the way of understanding shall remain in the congregation of the dead. \nHe that loveth pleasure shall be a poor man: he that loveth wine and oil shall not be rich. \nThe wicked shall be a ransom for the righteous, and the transgressor for the upright. \nIt is better to dwell in the wilderness, than with a contentious and an angry woman. \nThere is treasure to be desired and oil in the dwelling of the wise; but a foolish man spendeth it up. \nHe that followeth after righteousness and mercy findeth life, righteousness, and honour. \nA wise man scaleth the city of the mighty, and casteth down the strength of the confidence thereof. \nWhoso keepeth his mouth and his tongue keepeth his soul from troubles. \nProud and haughty scorner is his name, who dealeth in proud wrath. \nThe desire of the slothful killeth him; for his hands refuse to labour. \nHe coveteth greedily all the day long: but the righteous giveth and spareth not. \nThe sacrifice of the wicked is abomination: how much more, when he bringeth it with a wicked mind? \nA false witness shall perish: but the man that heareth speaketh constantly. \nA wicked man hardeneth his face: but as for the upright, he directeth his way. \nThere is no wisdom nor understanding nor counsel against the LORD. \nThe horse is prepared against the day of battle: but safety is of the LORD. \nA GOOD name is rather to be chosen than great riches, and loving favour rather than silver and gold. \nThe rich and poor meet together: the LORD is the maker of them all. \nA prudent man foreseeth the evil, and hideth himself: but the simple pass on, and are punished. \nBy humility and the fear of the LORD are riches, and honour, and life. \nThorns and snares are in the way of the froward: he that doth keep his soul shall be far from them. \nTrain up a child in the way he should go: and when he is old, he will not depart from it. \nThe rich ruleth over the poor, and the borrower is servant to the lender. \nHe that soweth iniquity shall reap vanity: and the rod of his anger shall fail. \nHe that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor. \nCast out the scorner, and contention shall go out; yea, strife and reproach shall cease. \nHe that loveth pureness of heart, for the grace of his lips the king shall be his friend. \nThe eyes of the LORD preserve knowledge, and he overthroweth the words of the transgressor. \nThe slothful man saith, There is a lion without, I shall be slain in the streets. \nThe mouth of strange women is a deep pit: he that is abhorred of the LORD shall fall therein. \nFoolishness is bound in the heart of a child; but the rod of correction shall drive it far from him. \nHe that oppresseth the poor to increase his riches, and he that giveth to the rich, shall surely come to want. \nBow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge. \nFor it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips. \nThat thy trust may be in the LORD, I have made known to thee this day, even to thee. \nHave not I written to thee excellent things in counsels and knowledge, \nThat I might make thee know the certainty of the words of truth; that thou mightest answer the words of truth to them that send unto thee? \nRob not the poor, because he is poor: neither oppress the afflicted in the gate: \nFor the LORD will plead their cause, and spoil the soul of those that spoiled them. \nMake no friendship with an angry man; and with a furious man thou shalt not go: \nLest thou learn his ways, and get a snare to thy soul. \nBe not thou one of them that strike hands, or of them that are sureties for debts. \nIf thou hast nothing to pay, why should he take away thy bed from under thee? \nRemove not the ancient landmark, which thy fathers have set. \nSeest thou a man diligent in his business? he shall stand before kings; he shall not stand before mean men. \nWhen thou sittest to eat with a ruler, consider diligently what is before thee: \nAnd put a knife to thy throat, if thou be a man given to appetite. \nBe not desirous of his dainties: for they are deceitful meat. \nLabour not to be rich: cease from thine own wisdom. \nWilt thou set thine eyes upon that which is not? for riches certainly make themselves wings; they fly away as an eagle toward heaven. \nEat thou not the bread of him that hath an evil eye, neither desire thou his dainty meats: \nFor as he thinketh in his heart, so is he: Eat and drink, saith he to thee; but his heart is not with thee. \nThe morsel which thou hast eaten shalt thou vomit up, and lose thy sweet words. \nSpeak not in the ears of a fool: for he will despise the wisdom of thy words. \nRemove not the old landmark; and enter not into the fields of the fatherless: \nFor their redeemer is mighty; he shall plead their cause with thee. \nApply thine heart unto instruction, and thine ears to the words of knowledge. \nWithhold not correction from the child: for if thou beatest him with the rod, he shall not die. \nThou shalt beat him with the rod, and shalt deliver his soul from hell. \nMy son, if thine heart be wise, my heart shall rejoice, even mine. \nYea, my reins shall rejoice, when thy lips speak right things. \nLet not thine heart envy sinners: but be thou in the fear of the LORD all the day long. \nFor surely there is an end; and thine expectation shall not be cut off. \nHear thou, my son, and be wise, and guide thine heart in the way. \nBe not among winebibbers; among riotous eaters of flesh: \nFor the drunkard and the glutton shall come to poverty: and drowsiness shall clothe a man with rags. \nHearken unto thy father that begat thee, and despise not thy mother when she is old. \nBuy the truth, and sell it not; also wisdom, and instruction, and understanding. \nThe father of the righteous shall greatly rejoice: and he that begetteth a wise child shall have joy of him. \nThy father and thy mother shall be glad, and she that bare thee shall rejoice. \nMy son, give me thine heart, and let thine eyes observe my ways. \nFor a whore is a deep ditch; and a strange woman is a narrow pit. \nShe also lieth in wait as for a prey, and increaseth the transgressors among men. \nWho hath woe? who hath sorrow? who hath contentions? who hath babbling? who hath wounds without cause? who hath redness of eyes? \nThey that tarry long at the wine; they that go to seek mixed wine. \nLook not thou upon the wine when it is red, when it giveth his colour in the cup, when it moveth itself aright. \nAt the last it biteth like a serpent, and stingeth like an adder. \nThine eyes shall behold strange women, and thine heart shall utter perverse things. \nYea, thou shalt be as he that lieth down in the midst of the sea, or as he that lieth upon the top of a mast. \nThey have stricken me, shalt thou say, and I was not sick; they have beaten me, and I felt it not: when shall I awake? I will seek it yet again. \nBe not thou envious against evil men, neither desire to be with them. \nFor their heart studieth destruction, and their lips talk of mischief. \nThrough wisdom is an house builded; and by understanding it is established: \nAnd by knowledge shall the chambers be filled with all precious and pleasant riches. \nA wise man is strong; yea, a man of knowledge increaseth strength. \nFor by wise counsel thou shalt make thy war: and in multitude of counsellors there is safety. \nWisdom is too high for a fool: he openeth not his mouth in the gate. \nHe that deviseth to do evil shall be called a mischievous person. \nThe thought of foolishness is sin: and the scorner is an abomination to men. \nIf thou faint in the day of adversity, thy strength is small. \nIf thou forbear to deliver them that are drawn unto death, and those that are ready to be slain; \nIf thou sayest, Behold, we knew it not; doth not he that pondereth the heart consider it? and he that keepeth thy soul, doth not he know it? and shall not he render to every man according to his works? \nMy son, eat thou honey, because it is good; and the honeycomb, which is sweet to thy taste: \nSo shall the knowledge of wisdom be unto thy soul: when thou hast found it, then there shall be a reward, and thy expectation shall not be cut off. \nLay not wait, O wicked man, against the dwelling of the righteous; spoil not his resting place: \nFor a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief. \nRejoice not when thine enemy falleth, and let not thine heart be glad when he stumbleth: \nLest the LORD see it, and it displease him, and he turn away his wrath from him. \nFret not thyself because of evil men, neither be thou envious at the wicked: \nFor there shall be no reward to the evil man; the candle of the wicked shall be put out. \nMy son, fear thou the LORD and the king: and meddle not with them that are given to change: \nFor their calamity shall rise suddenly; and who knoweth the ruin of them both? \nThese things also belong to the wise. It is not good to have respect of persons in judgment. \nHe that saith unto the wicked, Thou are righteous; him shall the people curse, nations shall abhor him: \nBut to them that rebuke him shall be delight, and a good blessing shall come upon them. \nEvery man shall kiss his lips that giveth a right answer. \nPrepare thy work without, and make it fit for thyself in the field; and afterwards build thine house. \nBe not a witness against thy neighbour without cause; and deceive not with thy lips. \nSay not, I will do so to him as he hath done to me: I will render to the man according to his work. \nI went by the field of the slothful, and by the vineyard of the man void of understanding; \nAnd, lo, it was all grown over with thorns, and nettles had covered the face thereof, and the stone wall thereof was broken down. \nThen I saw, and considered it well: I looked upon it, and received instruction. \nYet a little sleep, a little slumber, a little folding of the hands to sleep: \nSo shall thy poverty come as one that travelleth; and thy want as an armed man. \nThese are also proverbs of Solomon, which the men of Hezekiah king of Judah copied out. \nIt is the glory of God to conceal a thing: but the honour of kings is to search out a matter. \nThe heaven for height, and the earth for depth, and the heart of kings is unsearchable. \nTake away the dross from the silver, and there shall come forth a vessel for the finer. \nTake away the wicked from before the king, and his throne shall be established in righteousness. \nPut not forth thyself in the presence of the king, and stand not in the place of great men: \nFor better it is that it be said unto thee, Come up hither; than that thou shouldest be put lower in the presence of the prince whom thine eyes have seen. \nGo not forth hastily to strive, lest thou know not what to do in the end thereof, when thy neighbour hath put thee to shame. \nDebate thy cause with thy neighbour himself; and discover not a secret to another: \nLest he that heareth it put thee to shame, and thine infamy turn not away. \nA word fitly spoken is like apples of gold in pictures of silver. \nAs an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear. \nAs the cold of snow in the time of harvest, so is a faithful messenger to them that send him: for he refresheth the soul of his masters. \nWhoso boasteth himself of a false gift is like clouds and wind without rain. \nBy long forbearing is a prince persuaded, and a soft tongue breaketh the bone. \nHast thou found honey? eat so much as is sufficient for thee, lest thou be filled therewith, and vomit it. \nWithdraw thy foot from thy neighbour's house; lest he be weary of thee, and so hate thee. \nA man that beareth false witness against his neighbour is a maul, and a sword, and a sharp arrow. \nConfidence in an unfaithful man in time of trouble is like a broken tooth, and a foot out of joint. \nAs he that taketh away a garment in cold weather, and as vinegar upon nitre, so is he that singeth songs to an heavy heart. \nIf thine enemy be hungry, give him bread to eat; and if he be thirsty, give him water to drink: \nFor thou shalt heap coals of fire upon his head, and the LORD shall reward thee. \nThe north wind driveth away rain: so doth an angry countenance a backbiting tongue. \nIt is better to dwell in the corner of the housetop, than with a brawling woman and in a wide house. \nAs cold waters to a thirsty soul, so is good news from a far country. \nA righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring. \nIt is not good to eat much honey: so for men to search their own glory is not glory. \nHe that hath no rule over his own spirit is like a city that is broken down, and without walls. \nAs snow in summer, and as rain in harvest, so honour is not seemly for a fool. \nAs the bird by wandering, as the swallow by flying, so the curse causeless shall not come. \nA whip for the horse, a bridle for the ass, and a rod for the fool's back. \nAnswer not a fool according to his folly, lest thou also be like unto him. \nAnswer a fool according to his folly, lest he be wise in his own conceit. \nHe that sendeth a message by the hand of a fool cutteth off the feet, and drinketh damage. \nThe legs of the lame are not equal: so is a parable in the mouth of fools. \nAs he that bindeth a stone in a sling, so is he that giveth honour to a fool. \nAs a thorn goeth up into the hand of a drunkard, so is a parable in the mouths of fools. \nThe great God that formed all things both rewardeth the fool, and rewardeth transgressors. \nAs a dog returneth to his vomit, so a fool returneth to his folly. \nSeest thou a man wise in his own conceit? there is more hope of a fool than of him. \nThe slothful man saith, There is a lion in the way; a lion is in the streets. \nAs the door turneth upon his hinges, so doth the slothful upon his bed. \nThe slothful hideth his hand in his bosom; it grieveth him to bring it again to his mouth. \nThe sluggard is wiser in his own conceit than seven men that can render a reason. \nHe that passeth by, and meddleth with strife belonging not to him, is like one that taketh a dog by the ears. \nAs a mad man who casteth firebrands, arrows, and death, \nSo is the man that deceiveth his neighbour, and saith, Am not I in sport? \nWhere no wood is, there the fire goeth out: so where there is no talebearer, the strife ceaseth. \nAs coals are to burning coals, and wood to fire; so is a contentious man to kindle strife. \nThe words of a talebearer are as wounds, and they go down into the innermost parts of the belly. \nBurning lips and a wicked heart are like a potsherd covered with silver dross. \nHe that hateth dissembleth with his lips, and layeth up deceit within him; \nWhen he speaketh fair, believe him not: for there are seven abominations in his heart. \nWhose hatred is covered by deceit, his wickedness shall be shewed before the whole congregation. \nWhoso diggeth a pit shall fall therein: and he that rolleth a stone, it will return upon him. \nA lying tongue hateth those that are afflicted by it; and a flattering mouth worketh ruin. \nBoast not thyself of to morrow; for thou knowest not what a day may bring forth. \nLet another man praise thee, and not thine own mouth; a stranger, and not thine own lips. \nA stone is heavy, and the sand weighty; but a fool's wrath is heavier than them both. \nWrath is cruel, and anger is outrageous; but who is able to stand before envy? \nOpen rebuke is better than secret love. \nFaithful are the wounds of a friend; but the kisses of an enemy are deceitful. \nThe full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet. \nAs a bird that wandereth from her nest, so is a man that wandereth from his place. \nOintment and perfume rejoice the heart: so doth the sweetness of a man's friend by hearty counsel. \nThine own friend, and thy father's friend, forsake not; neither go into thy brother's house in the day of thy calamity: for better is a neighbour that is near than a brother far off. \nMy son, be wise, and make my heart glad, that I may answer him that reproacheth me. \nA prudent man foreseeth the evil, and hideth himself; but the simple pass on, and are punished. \nTake his garment that is surety for a stranger, and take a pledge of him for a strange woman. \nHe that blesseth his friend with a loud voice, rising early in the morning, it shall be counted a curse to him. \nA continual dropping in a very rainy day and a contentious woman are alike. \nWhosoever hideth her hideth the wind, and the ointment of his right hand, which bewrayeth itself. \nIron sharpeneth iron; so a man sharpeneth the countenance of his friend. \nWhoso keepeth the fig tree shall eat the fruit thereof: so he that waiteth on his master shall be honoured. \nAs in water face answereth to face, so the heart of man to man. \nHell and destruction are never full; so the eyes of man are never satisfied. \nAs the fining pot for silver, and the furnace for gold; so is a man to his praise. \nThough thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him. \nBe thou diligent to know the state of thy flocks, and look well to thy herds. \nFor riches are not for ever: and doth the crown endure to every generation? \nThe hay appeareth, and the tender grass sheweth itself, and herbs of the mountains are gathered. \nThe lambs are for thy clothing, and the goats are the price of the field. \nAnd thou shalt have goats' milk enough for thy food, for the food of thy household, and for the maintenance for thy maidens. \nThe wicked flee when no man pursueth: but the righteous are bold as a lion. \nFor the transgression of a land many are the princes thereof: but by a man of understanding and knowledge the state thereof shall be prolonged. \nA poor man that oppresseth the poor is like a sweeping rain which leaveth no food. \nThey that forsake the law praise the wicked: but such as keep the law contend with them. \nEvil men understand not judgment: but they that seek the LORD understand all things. \nBetter is the poor that walketh in his uprightness, than he that is perverse in his ways, though he be rich. \nWhoso keepeth the law is a wise son: but he that is a companion of riotous men shameth his father. \nHe that by usury and unjust gain increaseth his substance, he shall gather it for him that will pity the poor. \nHe that turneth away his ear from hearing the law, even his prayer shall be abomination. \nWhoso causeth the righteous to go astray in an evil way, he shall fall himself into his own pit: but the upright shall have good things in possession. \nThe rich man is wise in his own conceit; but the poor that hath understanding searcheth him out. \nWhen righteous men do rejoice, there is great glory: but when the wicked rise, a man is hidden. \nHe that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy. \nHappy is the man that feareth alway: but he that hardeneth his heart shall fall into mischief. \nAs a roaring lion, and a ranging bear; so is a wicked ruler over the poor people. \nThe prince that wanteth understanding is also a great oppressor: but he that hateth covetousness shall prolong his days. \nA man that doeth violence to the blood of any person shall flee to the pit; let no man stay him. \nWhoso walketh uprightly shall be saved: but he that is perverse in his ways shall fall at once. \nHe that tilleth his land shall have plenty of bread: but he that followeth after vain persons shall have poverty enough. \nA faithful man shall abound with blessings: but he that maketh haste to be rich shall not be innocent. \nTo have respect of persons is not good: for for a piece of bread that man will transgress. \nHe that hasteth to be rich hath an evil eye, and considereth not that poverty shall come upon him. \nHe that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue. \nWhoso robbeth his father or his mother, and saith, It is no transgression; the same is the companion of a destroyer. \nHe that is of a proud heart stirreth up strife: but he that putteth his trust in the LORD shall be made fat. \nHe that trusteth in his own heart is a fool: but whoso walketh wisely, he shall be delivered. \nHe that giveth unto the poor shall not lack: but he that hideth his eyes shall have many a curse. \nWhen the wicked rise, men hide themselves: but when they perish, the righteous increase. \nHe, that being often reproved hardeneth his neck, shall suddenly be destroyed, and that without remedy. \nWhen the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn. \nWhoso loveth wisdom rejoiceth his father: but he that keepeth company with harlots spendeth his substance. \nThe king by judgment establisheth the land: but he that receiveth gifts overthroweth it. \nA man that flattereth his neighbour spreadeth a net for his feet. \nIn the transgression of an evil man there is a snare: but the righteous doth sing and rejoice. \nThe righteous considereth the cause of the poor: but the wicked regardeth not to know it. \nScornful men bring a city into a snare: but wise men turn away wrath. \nIf a wise man contendeth with a foolish man, whether he rage or laugh, there is no rest. \nThe bloodthirsty hate the upright: but the just seek his soul. \nA fool uttereth all his mind: but a wise man keepeth it in till afterwards. \nIf a ruler hearken to lies, all his servants are wicked. \nThe poor and the deceitful man meet together: the LORD lighteneth both their eyes. \nThe king that faithfully judgeth the poor, his throne shall be established for ever. \nThe rod and reproof give wisdom: but a child left to himself bringeth his mother to shame. \nWhen the wicked are multiplied, transgression increaseth: but the righteous shall see their fall. \nCorrect thy son, and he shall give thee rest; yea, he shall give delight unto thy soul. \nWhere there is no vision, the people perish: but he that keepeth the law, happy is he. \nA servant will not be corrected by words: for though he understand he will not answer. \nSeest thou a man that is hasty in his words? there is more hope of a fool than of him. \nHe that delicately bringeth up his servant from a child shall have him become his son at the length. \nAn angry man stirreth up strife, and a furious man aboundeth in transgression. \nA man's pride shall bring him low: but honour shall uphold the humble in spirit. \nWhoso is partner with a thief hateth his own soul: he heareth cursing, and bewrayeth it not. \nThe fear of man bringeth a snare: but whoso putteth his trust in the LORD shall be safe. \nMany seek the ruler's favour; but every man's judgment cometh from the LORD. \nAn unjust man is an abomination to the just: and he that is upright in the way is abomination to the wicked. \nThe words of Agur the son of Jakeh, even the prophecy: the man spake unto Ithiel, even unto Ithiel and Ucal, \nSurely I am more brutish than any man, and have not the understanding of a man. \nI neither learned wisdom, nor have the knowledge of the holy. \nWho hath ascended up into heaven, or descended? who hath gathered the wind in his fists? who hath bound the waters in a garment? who hath established all the ends of the earth? what is his name, and what is his son's name, if thou canst tell? \nEvery word of God is pure: he is a shield unto them that put their trust in him. \nAdd thou not unto his words, lest he reprove thee, and thou be found a liar. \nTwo things have I required of thee; deny me them not before I die: \nRemove far from me vanity and lies: give me neither poverty nor riches; feed me with food convenient for me: \nLest I be full, and deny thee, and say, Who is the LORD? or lest I be poor, and steal, and take the name of my God in vain. \nAccuse not a servant unto his master, lest he curse thee, and thou be found guilty. \nThere is a generation that curseth their father, and doth not bless their mother. \nThere is a generation that are pure in their own eyes, and yet is not washed from their filthiness. \nThere is a generation, O how lofty are their eyes! and their eyelids are lifted up. \nThere is a generation, whose teeth are as swords, and their jaw teeth as knives, to devour the poor from off the earth, and the needy from among men. \nThe horseleach hath two daughters, crying, Give, give. There are three things that are never satisfied, yea, four things say not, It is enough: \nThe grave; and the barren womb; the earth that is not filled with water; and the fire that saith not, It is enough. \nThe eye that mocketh at his father, and despiseth to obey his mother, the ravens of the valley shall pick it out, and the young eagles shall eat it. \nThere be three things which are too wonderful for me, yea, four which I know not: \nThe way of an eagle in the air; the way of a serpent upon a rock; the way of a ship in the midst of the sea; and the way of a man with a maid. \nSuch is the way of an adulterous woman; she eateth, and wipeth her mouth, and saith, I have done no wickedness. \nFor three things the earth is disquieted, and for four which it cannot bear: \nFor a servant when he reigneth; and a fool when he is filled with meat; \nFor an odious woman when she is married; and an handmaid that is heir to her mistress. \nThere be four things which are little upon the earth, but they are exceeding wise: \nThe ants are a people not strong, yet they prepare their meat in the summer; \nThe conies are but a feeble folk, yet make they their houses in the rocks; \nThe locusts have no king, yet go they forth all of them by bands; \nThe spider taketh hold with her hands, and is in kings' palaces. \nThere be three things which go well, yea, four are comely in going: \nA lion which is strongest among beasts, and turneth not away for any; \nA greyhound; an he goat also; and a king, against whom there is no rising up. \nIf thou hast done foolishly in lifting up thyself, or if thou hast thought evil, lay thine hand upon thy mouth. \nSurely the churning of milk bringeth forth butter, and the wringing of the nose bringeth forth blood: so the forcing of wrath bringeth forth strife. \nThe words of king Lemuel, the prophecy that his mother taught him. \nWhat, my son? and what, the son of my womb? and what, the son of my vows? \nGive not thy strength unto women, nor thy ways to that which destroyeth kings. \nIt is not for kings, O Lemuel, it is not for kings to drink wine; nor for princes strong drink: \nLest they drink, and forget the law, and pervert the judgment of any of the afflicted. \nGive strong drink unto him that is ready to perish, and wine unto those that be of heavy hearts. \nLet him drink, and forget his poverty, and remember his misery no more. \nOpen thy mouth for the dumb in the cause of all such as are appointed to destruction. \nOpen thy mouth, judge righteously, and plead the cause of the poor and needy. \nWho can find a virtuous woman? for her price is far above rubies. \nThe heart of her husband doth safely trust in her, so that he shall have no need of spoil. \nShe will do him good and not evil all the days of her life. \nShe seeketh wool, and flax, and worketh willingly with her hands. \nShe is like the merchants' ships; she bringeth her food from afar. \nShe riseth also while it is yet night, and giveth meat to her household, and a portion to her maidens. \nShe considereth a field, and buyeth it: with the fruit of her hands she planteth a vineyard. \nShe girdeth her loins with strength, and strengtheneth her arms. \nShe perceiveth that her merchandise is good: her candle goeth not out by night. \nShe layeth her hands to the spindle, and her hands hold the distaff. \nShe stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy. \nShe is not afraid of the snow for her household: for all her household are clothed with scarlet. \nShe maketh herself coverings of tapestry; her clothing is silk and purple. \nHer husband is known in the gates, when he sitteth among the elders of the land. \nShe maketh fine linen, and selleth it; and delivereth girdles unto the merchant. \nStrength and honour are her clothing; and she shall rejoice in time to come. \nShe openeth her mouth with wisdom; and in her tongue is the law of kindness. \nShe looketh well to the ways of her household, and eateth not the bread of idleness. \nHer children arise up, and call her blessed; her husband also, and he praiseth her. \nMany daughters have done virtuously, but thou excellest them all. \nFavour is deceitful, and beauty is vain: but a woman that feareth the LORD, she shall be praised. \nGive her of the fruit of her hands; and let her own works praise her in the gates. \nThe words of the Preacher, the son of David, king in Jerusalem. \nVanity of vanities, saith the Preacher, vanity of vanities; all is vanity. \nWhat profit hath a man of all his labour which he taketh under the sun? \nOne generation passeth away, and another generation cometh: but the earth abideth for ever. \nThe sun also ariseth, and the sun goeth down, and hasteth to his place where he arose. \nThe wind goeth toward the south, and turneth about unto the north; it whirleth about continually, and the wind returneth again according to his circuits. \nAll the rivers run into the sea; yet the sea is not full; unto the place from whence the rivers come, thither they return again. \nAll things are full of labour; man cannot utter it: the eye is not satisfied with seeing, nor the ear filled with hearing. \nThe thing that hath been, it is that which shall be; and that which is done is that which shall be done: and there is no new thing under the sun. \nIs there any thing whereof it may be said, See, this is new? it hath been already of old time, which was before us. \nThere is no remembrance of former things; neither shall there be any remembrance of things that are to come with those that shall come after. \nI the Preacher was king over Israel in Jerusalem. \nAnd I gave my heart to seek and search out by wisdom concerning all things that are done under heaven: this sore travail hath God given to the sons of man to be exercised therewith. \nI have seen all the works that are done under the sun; and, behold, all is vanity and vexation of spirit. \nThat which is crooked cannot be made straight: and that which is wanting cannot be numbered. \nI communed with mine own heart, saying, Lo, I am come to great estate, and have gotten more wisdom than all they that have been before me in Jerusalem: yea, my heart had great experience of wisdom and knowledge. \nAnd I gave my heart to know wisdom, and to know madness and folly: I perceived that this also is vexation of spirit. \nFor in much wisdom is much grief: and he that increaseth knowledge increaseth sorrow. \nI said in mine heart, Go to now, I will prove thee with mirth, therefore enjoy pleasure: and, behold, this also is vanity. \nI said of laughter, It is mad: and of mirth, What doeth it? \nI sought in mine heart to give myself unto wine, yet acquainting mine heart with wisdom; and to lay hold on folly, till I might see what was that good for the sons of men, which they should do under the heaven all the days of their life. \nI made me great works; I builded me houses; I planted me vineyards: \nI made me gardens and orchards, and I planted trees in them of all kind of fruits: \nI made me pools of water, to water therewith the wood that bringeth forth trees: \nI got me servants and maidens, and had servants born in my house; also I had great possessions of great and small cattle above all that were in Jerusalem before me: \nI gathered me also silver and gold, and the peculiar treasure of kings and of the provinces: I gat me men singers and women singers, and the delights of the sons of men, as musical instruments, and that of all sorts. \nSo I was great, and increased more than all that were before me in Jerusalem: also my wisdom remained with me. \nAnd whatsoever mine eyes desired I kept not from them, I withheld not my heart from any joy; for my heart rejoiced in all my labour: and this was my portion of all my labour. \nThen I looked on all the works that my hands had wrought, and on the labour that I had laboured to do: and, behold, all was vanity and vexation of spirit, and there was no profit under the sun. \nAnd I turned myself to behold wisdom, and madness, and folly: for what can the man do that cometh after the king? even that which hath been already done. \nThen I saw that wisdom excelleth folly, as far as light excelleth darkness. \nThe wise man's eyes are in his head; but the fool walketh in darkness: and I myself perceived also that one event happeneth to them all. \nThen said I in my heart, As it happeneth to the fool, so it happeneth even to me; and why was I then more wise? Then I said in my heart, that this also is vanity. \nFor there is no remembrance of the wise more than of the fool for ever; seeing that which now is in the days to come shall all be forgotten. And how dieth the wise man? as the fool. \nTherefore I hated life; because the work that is wrought under the sun is grievous unto me: for all is vanity and vexation of spirit. \nYea, I hated all my labour which I had taken under the sun: because I should leave it unto the man that shall be after me. \nAnd who knoweth whether he shall be a wise man or a fool? yet shall he have rule over all my labour wherein I have laboured, and wherein I have shewed myself wise under the sun. This is also vanity. \nTherefore I went about to cause my heart to despair of all the labour which I took under the sun. \nFor there is a man whose labour is in wisdom, and in knowledge, and in equity; yet to a man that hath not laboured therein shall he leave it for his portion. This also is vanity and a great evil. \nFor what hath man of all his labour, and of the vexation of his heart, wherein he hath laboured under the sun? \nFor all his days are sorrows, and his travail grief; yea, his heart taketh not rest in the night. This is also vanity. \nThere is nothing better for a man, than that he should eat and drink, and that he should make his soul enjoy good in his labour. This also I saw, that it was from the hand of God. \nFor who can eat, or who else can hasten hereunto, more than I? \nFor God giveth to a man that is good in his sight wisdom, and knowledge, and joy: but to the sinner he giveth travail, to gather and to heap up, that he may give to him that is good before God. This also is vanity and vexation of spirit. \nTo every thing there is a season, and a time to every purpose under the heaven: \nA time to be born, and a time to die; a time to plant, and a time to pluck up that which is planted; \nA time to kill, and a time to heal; a time to break down, and a time to build up; \nA time to weep, and a time to laugh; a time to mourn, and a time to dance; \nA time to cast away stones, and a time to gather stones together; a time to embrace, and a time to refrain from embracing; \nA time to get, and a time to lose; a time to keep, and a time to cast away; \nA time to rend, and a time to sew; a time to keep silence, and a time to speak; \nA time to love, and a time to hate; a time of war, and a time of peace. \nWhat profit hath he that worketh in that wherein he laboureth? \nI have seen the travail, which God hath given to the sons of men to be exercised in it. \nHe hath made every thing beautiful in his time: also he hath set the world in their heart, so that no man can find out the work that God maketh from the beginning to the end. \nI know that there is no good in them, but for a man to rejoice, and to do good in his life. \nAnd also that every man should eat and drink, and enjoy the good of all his labour, it is the gift of God. \nI know that, whatsoever God doeth, it shall be for ever: nothing can be put to it, nor any thing taken from it: and God doeth it, that men should fear before him. \nThat which hath been is now; and that which is to be hath already been; and God requireth that which is past. \nAnd moreover I saw under the sun the place of judgment, that wickedness was there; and the place of righteousness, that iniquity was there. \nI said in mine heart, God shall judge the righteous and the wicked: for there is a time there for every purpose and for every work. \nI said in mine heart concerning the estate of the sons of men, that God might manifest them, and that they might see that they themselves are beasts. \nFor that which befalleth the sons of men befalleth beasts; even one thing befalleth them: as the one dieth, so dieth the other; yea, they have all one breath; so that a man hath no preeminence above a beast: for all is vanity. \nAll go unto one place; all are of the dust, and all turn to dust again. \nWho knoweth the spirit of man that goeth upward, and the spirit of the beast that goeth downward to the earth? \nWherefore I perceive that there is nothing better, than that a man should rejoice in his own works; for that is his portion: for who shall bring him to see what shall be after him? \nSo I returned, and considered all the oppressions that are done under the sun: and behold the tears of such as were oppressed, and they had no comforter; and on the side of their oppressors there was power; but they had no comforter. \nWherefore I praised the dead which are already dead more than the living which are yet alive. \nYea, better is he than both they, which hath not yet been, who hath not seen the evil work that is done under the sun. \nAgain, I considered all travail, and every right work, that for this a man is envied of his neighbour. This is also vanity and vexation of spirit. \nThe fool foldeth his hands together, and eateth his own flesh. \nBetter is an handful with quietness, than both the hands full with travail and vexation of spirit. \nThen I returned, and I saw vanity under the sun. \nThere is one alone, and there is not a second; yea, he hath neither child nor brother: yet is there no end of all his labour; neither is his eye satisfied with riches; neither saith he, For whom do I labour, and bereave my soul of good? This is also vanity, yea, it is a sore travail. \nTwo are better than one; because they have a good reward for their labour. \nFor if they fall, the one will lift up his fellow: but woe to him that is alone when he falleth; for he hath not another to help him up. \nAgain, if two lie together, then they have heat: but how can one be warm alone? \nAnd if one prevail against him, two shall withstand him; and a threefold cord is not quickly broken. \nBetter is a poor and a wise child than an old and foolish king, who will no more be admonished. \nFor out of prison he cometh to reign; whereas also he that is born in his kingdom becometh poor. \nI considered all the living which walk under the sun, with the second child that shall stand up in his stead. \nThere is no end of all the people, even of all that have been before them: they also that come after shall not rejoice in him. Surely this also is vanity and vexation of spirit. \nKeep thy foot when thou goest to the house of God, and be more ready to hear, than to give the sacrifice of fools: for they consider not that they do evil. \nBe not rash with thy mouth, and let not thine heart be hasty to utter any thing before God: for God is in heaven, and thou upon earth: therefore let thy words be few. \nFor a dream cometh through the multitude of business; and a fool's voice is known by multitude of words. \nWhen thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed. \nBetter is it that thou shouldest not vow, than that thou shouldest vow and not pay. \nSuffer not thy mouth to cause thy flesh to sin; neither say thou before the angel, that it was an error: wherefore should God be angry at thy voice, and destroy the work of thine hands? \nFor in the multitude of dreams and many words there are also divers vanities: but fear thou God. \nIf thou seest the oppression of the poor, and violent perverting of judgment and justice in a province, marvel not at the matter: for he that is higher than the highest regardeth; and there be higher than they. \nMoreover the profit of the earth is for all: the king himself is served by the field. \nHe that loveth silver shall not be satisfied with silver; nor he that loveth abundance with increase: this is also vanity. \nWhen goods increase, they are increased that eat them: and what good is there to the owners thereof, saving the beholding of them with their eyes? \nThe sleep of a labouring man is sweet, whether he eat little or much: but the abundance of the rich will not suffer him to sleep. \nThere is a sore evil which I have seen under the sun, namely, riches kept for the owners thereof to their hurt. \nBut those riches perish by evil travail: and he begetteth a son, and there is nothing in his hand. \nAs he came forth of his mother's womb, naked shall he return to go as he came, and shall take nothing of his labour, which he may carry away in his hand. \nAnd this also is a sore evil, that in all points as he came, so shall he go: and what profit hath he that hath laboured for the wind? \nAll his days also he eateth in darkness, and he hath much sorrow and wrath with his sickness. \nBehold that which I have seen: it is good and comely for one to eat and to drink, and to enjoy the good of all his labour that he taketh under the sun all the days of his life, which God giveth him: for it is his portion. \nEvery man also to whom God hath given riches and wealth, and hath given him power to eat thereof, and to take his portion, and to rejoice in his labour; this is the gift of God. \nFor he shall not much remember the days of his life; because God answereth him in the joy of his heart. \nThere is an evil which I have seen under the sun, and it is common among men: \nA man to whom God hath given riches, wealth, and honour, so that he wanteth nothing for his soul of all that he desireth, yet God giveth him not power to eat thereof, but a stranger eateth it: this is vanity, and it is an evil disease. \nIf a man beget an hundred children, and live many years, so that the days of his years be many, and his soul be not filled with good, and also that he have no burial; I say, that an untimely birth is better than he. \nFor he cometh in with vanity, and departeth in darkness, and his name shall be covered with darkness. \nMoreover he hath not seen the sun, nor known any thing: this hath more rest than the other. \nYea, though he live a thousand years twice told, yet hath he seen no good: do not all go to one place? \nAll the labour of man is for his mouth, and yet the appetite is not filled. \nFor what hath the wise more than the fool? what hath the poor, that knoweth to walk before the living? \nBetter is the sight of the eyes than the wandering of the desire: this is also vanity and vexation of spirit. \nThat which hath been is named already, and it is known that it is man: neither may he contend with him that is mightier than he. \nSeeing there be many things that increase vanity, what is man the better? \nFor who knoweth what is good for man in this life, all the days of his vain life which he spendeth as a shadow? for who can tell a man what shall be after him under the sun? \nA good name is better than precious ointment; and the day of death than the day of one's birth. \nIt is better to go to the house of mourning, than to go to the house of feasting: for that is the end of all men; and the living will lay it to his heart. \nSorrow is better than laughter: for by the sadness of the countenance the heart is made better. \nThe heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth. \nIt is better to hear the rebuke of the wise, than for a man to hear the song of fools. \nFor as the crackling of thorns under a pot, so is the laughter of the fool: this also is vanity. \nSurely oppression maketh a wise man mad; and a gift destroyeth the heart. \nBetter is the end of a thing than the beginning thereof: and the patient in spirit is better than the proud in spirit. \nBe not hasty in thy spirit to be angry: for anger resteth in the bosom of fools. \nSay not thou, What is the cause that the former days were better than these? for thou dost not enquire wisely concerning this. \nWisdom is good with an inheritance: and by it there is profit to them that see the sun. \nFor wisdom is a defence, and money is a defence: but the excellency of knowledge is, that wisdom giveth life to them that have it. \nConsider the work of God: for who can make that straight, which he hath made crooked? \nIn the day of prosperity be joyful, but in the day of adversity consider: God also hath set the one over against the other, to the end that man should find nothing after him. \nAll things have I seen in the days of my vanity: there is a just man that perisheth in his righteousness, and there is a wicked man that prolongeth his life in his wickedness. \nBe not righteous over much; neither make thyself over wise: why shouldest thou destroy thyself ? \nBe not over much wicked, neither be thou foolish: why shouldest thou die before thy time? \nIt is good that thou shouldest take hold of this; yea, also from this withdraw not thine hand: for he that feareth God shall come forth of them all. \nWisdom strengtheneth the wise more than ten mighty men which are in the city. \nFor there is not a just man upon earth, that doeth good, and sinneth not. \nAlso take no heed unto all words that are spoken; lest thou hear thy servant curse thee: \nFor oftentimes also thine own heart knoweth that thou thyself likewise hast cursed others. \nAll this have I proved by wisdom: I said, I will be wise; but it was far from me. \nThat which is far off, and exceeding deep, who can find it out? \nI applied mine heart to know, and to search, and to seek out wisdom, and the reason of things, and to know the wickedness of folly, even of foolishness and madness: \nAnd I find more bitter than death the woman, whose heart is snares and nets, and her hands as bands: whoso pleaseth God shall escape from her; but the sinner shall be taken by her. \nBehold, this have I found, saith the preacher, counting one by one, to find out the account: \nWhich yet my soul seeketh, but I find not: one man among a thousand have I found; but a woman among all those have I not found. \nLo, this only have I found, that God hath made man upright; but they have sought out many inventions. \nWho is as the wise man? and who knoweth the interpretation of a thing? a man's wisdom maketh his face to shine, and the boldness of his face shall be changed. \nI counsel thee to keep the king's commandment, and that in regard of the oath of God. \nBe not hasty to go out of his sight: stand not in an evil thing; for he doeth whatsoever pleaseth him. \nWhere the word of a king is, there is power: and who may say unto him, What doest thou? \nWhoso keepeth the commandment shall feel no evil thing: and a wise man's heart discerneth both time and judgment. \nBecause to every purpose there is time and judgment, therefore the misery of man is great upon him. \nFor he knoweth not that which shall be: for who can tell him when it shall be? \nThere is no man that hath power over the spirit to retain the spirit; neither hath he power in the day of death: and there is no discharge in that war; neither shall wickedness deliver those that are given to it. \nAll this have I seen, and applied my heart unto every work that is done under the sun: there is a time wherein one man ruleth over another to his own hurt. \nAnd so I saw the wicked buried, who had come and gone from the place of the holy, and they were forgotten in the city where they had so done: this is also vanity. \nBecause sentence against an evil work is not executed speedily, therefore the heart of the sons of men is fully set in them to do evil. \nThough a sinner do evil an hundred times, and his days be prolonged, yet surely I know that it shall be well with them that fear God, which fear before him: \nBut it shall not be well with the wicked, neither shall he prolong his days, which are as a shadow; because he feareth not before God. \nThere is a vanity which is done upon the earth; that there be just men, unto whom it happeneth according to the work of the wicked; again, there be wicked men, to whom it happeneth according to the work of the righteous: I said that this also is vanity. \nThen I commended mirth, because a man hath no better thing under the sun, than to eat, and to drink, and to be merry: for that shall abide with him of his labour the days of his life, which God giveth him under the sun. \nWhen I applied mine heart to know wisdom, and to see the business that is done upon the earth: (for also there is that neither day nor night seeth sleep with his eyes:) \nThen I beheld all the work of God, that a man cannot find out the work that is done under the sun: because though a man labour to seek it out, yet he shall not find it; yea farther; though a wise man think to know it, yet shall he not be able to find it. \nFor all this I considered in my heart even to declare all this, that the righteous, and the wise, and their works, are in the hand of God: no man knoweth either love or hatred by all that is before them. \nAll things come alike to all: there is one event to the righteous, and to the wicked; to the good and to the clean, and to the unclean; to him that sacrificeth, and to him that sacrificeth not: as is the good, so is the sinner; and he that sweareth, as he that feareth an oath. \nThis is an evil among all things that are done under the sun, that there is one event unto all: yea, also the heart of the sons of men is full of evil, and madness is in their heart while they live, and after that they go to the dead. \nFor to him that is joined to all the living there is hope: for a living dog is better than a dead lion. \nFor the living know that they shall die: but the dead know not any thing, neither have they any more a reward; for the memory of them is forgotten. \nAlso their love, and their hatred, and their envy, is now perished; neither have they any more a portion for ever in any thing that is done under the sun. \nGo thy way, eat thy bread with joy, and drink thy wine with a merry heart; for God now accepteth thy works. \nLet thy garments be always white; and let thy head lack no ointment. \nLive joyfully with the wife whom thou lovest all the days of the life of thy vanity, which he hath given thee under the sun, all the days of thy vanity: for that is thy portion in this life, and in thy labour which thou takest under the sun. \nWhatsoever thy hand findeth to do, do it with thy might; for there is no work, nor device, nor knowledge, nor wisdom, in the grave, whither thou goest. \nI returned, and saw under the sun, that the race is not to the swift, nor the battle to the strong, neither yet bread to the wise, nor yet riches to men of understanding, nor yet favour to men of skill; but time and chance happeneth to them all. \nFor man also knoweth not his time: as the fishes that are taken in an evil net, and as the birds that are caught in the snare; so are the sons of men snared in an evil time, when it falleth suddenly upon them. \nThis wisdom have I seen also under the sun, and it seemed great unto me: \nThere was a little city, and few men within it; and there came a great king against it, and besieged it, and built great bulwarks against it: \nNow there was found in it a poor wise man, and he by his wisdom delivered the city; yet no man remembered that same poor man. \nThen said I, Wisdom is better than strength: nevertheless the poor man's wisdom is despised, and his words are not heard. \nThe words of wise men are heard in quiet more than the cry of him that ruleth among fools. \nWisdom is better than weapons of war: but one sinner destroyeth much good. \nDead flies cause the ointment of the apothecary to send forth a stinking savour: so doth a little folly him that is in reputation for wisdom and honour. \nA wise man's heart is at his right hand; but a fool's heart at his left. \nYea also, when he that is a fool walketh by the way, his wisdom faileth him, and he saith to every one that he is a fool. \nIf the spirit of the ruler rise up against thee, leave not thy place; for yielding pacifieth great offences. \nThere is an evil which I have seen under the sun, as an error which proceedeth from the ruler: \nFolly is set in great dignity, and the rich sit in low place. \nI have seen servants upon horses, and princes walking as servants upon the earth. \nHe that diggeth a pit shall fall into it; and whoso breaketh an hedge, a serpent shall bite him. \nWhoso removeth stones shall be hurt therewith; and he that cleaveth wood shall be endangered thereby. \nIf the iron be blunt, and he do not whet the edge, then must he put to more strength: but wisdom is profitable to direct. \nSurely the serpent will bite without enchantment; and a babbler is no better. \nThe words of a wise man's mouth are gracious; but the lips of a fool will swallow up himself. \nThe beginning of the words of his mouth is foolishness: and the end of his talk is mischievous madness. \nA fool also is full of words: a man cannot tell what shall be; and what shall be after him, who can tell him? \nThe labour of the foolish wearieth every one of them, because he knoweth not how to go to the city. \nWoe to thee, O land, when thy king is a child, and thy princes eat in the morning! \nBlessed art thou, O land, when thy king is the son of nobles, and thy princes eat in due season, for strength, and not for drunkenness! \nBy much slothfulness the building decayeth; and through idleness of the hands the house droppeth through. \nA feast is made for laughter, and wine maketh merry: but money answereth all things. \nCurse not the king, no not in thy thought; and curse not the rich in thy bedchamber: for a bird of the air shall carry the voice, and that which hath wings shall tell the matter. \nCast thy bread upon the waters: for thou shalt find it after many days. \nGive a portion to seven, and also to eight; for thou knowest not what evil shall be upon the earth. \nIf the clouds be full of rain, they empty themselves upon the earth: and if the tree fall toward the south, or toward the north, in the place where the tree falleth, there it shall be. \nHe that observeth the wind shall not sow; and he that regardeth the clouds shall not reap. \nAs thou knowest not what is the way of the spirit, nor how the bones do grow in the womb of her that is with child: even so thou knowest not the works of God who maketh all. \nIn the morning sow thy seed, and in the evening withhold not thine hand: for thou knowest not whether shall prosper, either this or that, or whether they both shall be alike good. \nTruly the light is sweet, and a pleasant thing it is for the eyes to behold the sun: \nBut if a man live many years, and rejoice in them all; yet let him remember the days of darkness; for they shall be many. All that cometh is vanity. \nRejoice, O young man, in thy youth; and let thy heart cheer thee in the days of thy youth, and walk in the ways of thine heart, and in the sight of thine eyes: but know thou, that for all these things God will bring thee into judgment. \nTherefore remove sorrow from thy heart, and put away evil from thy flesh: for childhood and youth are vanity. \nRemember now thy Creator in the days of thy youth, while the evil days come not, nor the years draw nigh, when thou shalt say, I have no pleasure in them; \nWhile the sun, or the light, or the moon, or the stars, be not darkened, nor the clouds return after the rain: \nIn the day when the keepers of the house shall tremble, and the strong men shall bow themselves, and the grinders cease because they are few, and those that look out of the windows be darkened, \nAnd the doors shall be shut in the streets, when the sound of the grinding is low, and he shall rise up at the voice of the bird, and all the daughters of musick shall be brought low; \nAlso when they shall be afraid of that which is high, and fears shall be in the way, and the almond tree shall flourish, and the grasshopper shall be a burden, and desire shall fail: because man goeth to his long home, and the mourners go about the streets: \nOr ever the silver cord be loosed, or the golden bowl be broken, or the pitcher be broken at the fountain, or the wheel broken at the cistern. \nThen shall the dust return to the earth as it was: and the spirit shall return unto God who gave it. \nVanity of vanities, saith the preacher; all is vanity. \nAnd moreover, because the preacher was wise, he still taught the people knowledge; yea, he gave good heed, and sought out, and set in order many proverbs. \nThe preacher sought to find out acceptable words: and that which was written was upright, even words of truth. \nThe words of the wise are as goads, and as nails fastened by the masters of assemblies, which are given from one shepherd. \nAnd further, by these, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh. \nLet us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man. \nFor God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil. \nThe song of songs, which is Solomon's. \nLet him kiss me with the kisses of his mouth: for thy love is better than wine. \nBecause of the savour of thy good ointments thy name is as ointment poured forth, therefore do the virgins love thee. \nDraw me, we will run after thee: the king hath brought me into his chambers: we will be glad and rejoice in thee, we will remember thy love more than wine: the upright love thee. \nI am black, but comely, O ye daughters of Jerusalem, as the tents of Kedar, as the curtains of Solomon. \nLook not upon me, because I am black, because the sun hath looked upon me: my mother's children were angry with me; they made me the keeper of the vineyards; but mine own vineyard have I not kept. \nTell me, O thou whom my soul loveth, where thou feedest, where thou makest thy flock to rest at noon: for why should I be as one that turneth aside by the flocks of thy companions? \nIf thou know not, O thou fairest among women, go thy way forth by the footsteps of the flock, and feed thy kids beside the shepherds' tents. \nI have compared thee, O my love, to a company of horses in Pharaoh's chariots. \nThy cheeks are comely with rows of jewels, thy neck with chains of gold. \nWe will make thee borders of gold with studs of silver. \nWhile the king sitteth at his table, my spikenard sendeth forth the smell thereof. \nA bundle of myrrh is my well-beloved unto me; he shall lie all night betwixt my breasts. \nMy beloved is unto me as a cluster of camphire in the vineyards of Engedi. \nBehold, thou art fair, my love; behold, thou art fair; thou hast doves' eyes. \nBehold, thou art fair, my beloved, yea, pleasant: also our bed is green. \nThe beams of our house are cedar, and our rafters of fir. \nI am the rose of Sharon, and the lily of the valleys. \nAs the lily among thorns, so is my love among the daughters. \nAs the apple tree among the trees of the wood, so is my beloved among the sons. I sat down under his shadow with great delight, and his fruit was sweet to my taste. \nHe brought me to the banqueting house, and his banner over me was love. \nStay me with flagons, comfort me with apples: for I am sick of love. \nHis left hand is under my head, and his right hand doth embrace me. \nI charge you, O ye daughters of Jerusalem, by the roes, and by the hinds of the field, that ye stir not up, nor awake my love, till he please. \nThe voice of my beloved! behold, he cometh leaping upon the mountains, skipping upon the hills. \nMy beloved is like a roe or a young hart: behold, he standeth behind our wall, he looketh forth at the windows, shewing himself through the lattice. \nMy beloved spake, and said unto me, Rise up, my love, my fair one, and come away. \nFor, lo, the winter is past, the rain is over and gone; \nThe flowers appear on the earth; the time of the singing of birds is come, and the voice of the turtle is heard in our land; \nThe fig tree putteth forth her green figs, and the vines with the tender grape give a good smell. Arise, my love, my fair one, and come away. \nO my dove, that art in the clefts of the rock, in the secret places of the stairs, let me see thy countenance, let me hear thy voice; for sweet is thy voice, and thy countenance is comely. \nTake us the foxes, the little foxes, that spoil the vines: for our vines have tender grapes. \nMy beloved is mine, and I am his: he feedeth among the lilies. \nUntil the day break, and the shadows flee away, turn, my beloved, and be thou like a roe or a young hart upon the mountains of Bether. \nBy night on my bed I sought him whom my soul loveth: I sought him, but I found him not. \nI will rise now, and go about the city in the streets, and in the broad ways I will seek him whom my soul loveth: I sought him, but I found him not. \nThe watchmen that go about the city found me: to whom I said, Saw ye him whom my soul loveth? \nIt was but a little that I passed from them, but I found him whom my soul loveth: I held him, and would not let him go, until I had brought him into my mother's house, and into the chamber of her that conceived me. \nI charge you, O ye daughters of Jerusalem, by the roes, and by the hinds of the field, that ye stir not up, nor awake my love, till he please. \nWho is this that cometh out of the wilderness like pillars of smoke, perfumed with myrrh and frankincense, with all powders of the merchant? \nBehold his bed, which is Solomon's; threescore valiant men are about it, of the valiant of Israel. \nThey all hold swords, being expert in war: every man hath his sword upon his thigh because of fear in the night. \nKing Solomon made himself a chariot of the wood of Lebanon. \nHe made the pillars thereof of silver, the bottom thereof of gold, the covering of it of purple, the midst thereof being paved with love, for the daughters of Jerusalem. \nGo forth, O ye daughters of Zion, and behold king Solomon with the crown wherewith his mother crowned him in the day of his espousals, and in the day of the gladness of his heart. \nBehold, thou art fair, my love; behold, thou art fair; thou hast doves' eyes within thy locks: thy hair is as a flock of goats, that appear from mount Gilead. \nThy teeth are like a flock of sheep that are even shorn, which came up from the washing; whereof every one bear twins, and none is barren among them. \nThy lips are like a thread of scarlet, and thy speech is comely: thy temples are like a piece of a pomegranate within thy locks. \nThy neck is like the tower of David builded for an armoury, whereon there hang a thousand bucklers, all shields of mighty men. \nThy two breasts are like two young roes that are twins, which feed among the lilies. \nUntil the day break, and the shadows flee away, I will get me to the mountain of myrrh, and to the hill of frankincense. \nThou art all fair, my love; there is no spot in thee. \nCome with me from Lebanon, my spouse, with me from Lebanon: look from the top of Amana, from the top of Shenir and Hermon, from the lions' dens, from the mountains of the leopards. \nThou hast ravished my heart, my sister, my spouse; thou hast ravished my heart with one of thine eyes, with one chain of thy neck. \nHow fair is thy love, my sister, my spouse! how much better is thy love than wine! and the smell of thine ointments than all spices! \nThy lips, O my spouse, drop as the honeycomb: honey and milk are under thy tongue; and the smell of thy garments is like the smell of Lebanon. \nA garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed. \nThy plants are an orchard of pomegranates, with pleasant fruits; camphire, with spikenard, \nSpikenard and saffron; calamus and cinnamon, with all trees of frankincense; myrrh and aloes, with all the chief spices: \nA fountain of gardens, a well of living waters, and streams from Lebanon. \nAwake, O north wind; and come, thou south; blow upon my garden, that the spices thereof may flow out. Let my beloved come into his garden, and eat his pleasant fruits. \nI am come into my garden, my sister, my spouse: I have gathered my myrrh with my spice; I have eaten my honeycomb with my honey; I have drunk my wine with my milk: eat, O friends; drink, yea, drink abundantly, O beloved. \nI sleep, but my heart waketh: it is the voice of my beloved that knocketh, saying, Open to me, my sister, my love, my dove, my undefiled: for my head is filled with dew, and my locks with the drops of the night. \nI have put off my coat; how shall I put it on? I have washed my feet; how shall I defile them? \nMy beloved put in his hand by the hole of the door, and my bowels were moved for him. \nI rose up to open to my beloved; and my hands dropped with myrrh, and my fingers with sweet smelling myrrh, upon the handles of the lock. \nI opened to my beloved; but my beloved had withdrawn himself, and was gone: my soul failed when he spake: I sought him, but I could not find him; I called him, but he gave me no answer. \nThe watchmen that went about the city found me, they smote me, they wounded me; the keepers of the walls took away my veil from me. \nI charge you, O daughters of Jerusalem, if ye find my beloved, that ye tell him, that I am sick of love. \nWhat is thy beloved more than another beloved, O thou fairest among women? what is thy beloved more than another beloved, that thou dost so charge us? \nMy beloved is white and ruddy, the chiefest among ten thousand. \nHis head is as the most fine gold, his locks are bushy, and black as a raven. \nHis eyes are as the eyes of doves by the rivers of waters, washed with milk, and fitly set. \nHis cheeks are as a bed of spices, as sweet flowers: his lips like lilies, dropping sweet smelling myrrh. \nHis hands are as gold rings set with the beryl: his belly is as bright ivory overlaid with sapphires. \nHis legs are as pillars of marble, set upon sockets of fine gold: his countenance is as Lebanon, excellent as the cedars. \nHis mouth is most sweet: yea, he is altogether lovely. This is my beloved, and this is my friend, O daughters of Jerusalem. \nWhither is thy beloved gone, O thou fairest among women? whither is thy beloved turned aside? that we may seek him with thee. \nMy beloved is gone down into his garden, to the beds of spices, to feed in the gardens, and to gather lilies. \nI am my beloved's, and my beloved is mine: he feedeth among the lilies. \nThou art beautiful, O my love, as Tirzah, comely as Jerusalem, terrible as an army with banners. \nTurn away thine eyes from me, for they have overcome me: thy hair is as a flock of goats that appear from Gilead. \nThy teeth are as a flock of sheep which go up from the washing, whereof every one beareth twins, and there is not one barren among them. \nAs a piece of a pomegranate are thy temples within thy locks. \nThere are threescore queens, and fourscore concubines, and virgins without number. \nMy dove, my undefiled is but one; she is the only one of her mother, she is the choice one of her that bare her. The daughters saw her, and blessed her; yea, the queens and the concubines, and they praised her. \nWho is she that looketh forth as the morning, fair as the moon, clear as the sun, and terrible as an army with banners? \nI went down into the garden of nuts to see the fruits of the valley, and to see whether the vine flourished and the pomegranates budded. \nOr ever I was aware, my soul made me like the chariots of Amminadib. \nReturn, return, O Shulamite; return, return, that we may look upon thee. What will ye see in the Shulamite? As it were the company of two armies. \nHow beautiful are thy feet with shoes, O prince's daughter! the joints of thy thighs are like jewels, the work of the hands of a cunning workman. \nThy navel is like a round goblet, which wanteth not liquor: thy belly is like an heap of wheat set about with lilies. \nThy two breasts are like two young roes that are twins. \nThy neck is as a tower of ivory; thine eyes like the fishpools in Heshbon, by the gate of Bathrabbim: thy nose is as the tower of Lebanon which looketh toward Damascus. \nThine head upon thee is like Carmel, and the hair of thine head like purple; the king is held in the galleries. \nHow fair and how pleasant art thou, O love, for delights! \nThis thy stature is like to a palm tree, and thy breasts to clusters of grapes. \nI said, I will go up to the palm tree, I will take hold of the boughs thereof: now also thy breasts shall be as clusters of the vine, and the smell of thy nose like apples; \nAnd the roof of thy mouth like the best wine for my beloved, that goeth down sweetly, causing the lips of those that are asleep to speak. \nI am my beloved's, and his desire is toward me. \nCome, my beloved, let us go forth into the field; let us lodge in the villages. \nLet us get up early to the vineyards; let us see if the vine flourish, whether the tender grape appear, and the pomegranates bud forth: there will I give thee my loves. \nThe mandrakes give a smell, and at our gates are all manner of pleasant fruits, new and old, which I have laid up for thee, O my beloved. \nO that thou wert as my brother, that sucked the breasts of my mother! when I should find thee without, I would kiss thee; yea, I should not be despised. \nI would lead thee, and bring thee into my mother's house, who would instruct me: I would cause thee to drink of spiced wine of the juice of my pomegranate. \nHis left hand should be under my head, and his right hand should embrace me. \nI charge you, O daughters of Jerusalem, that ye stir not up, nor awake my love, until he please. \nWho is this that cometh up from the wilderness, leaning upon her beloved? I raised thee up under the apple tree: there thy mother brought thee forth: there she brought thee forth that bare thee. \nSet me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame. \nMany waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned. \nWe have a little sister, and she hath no breasts: what shall we do for our sister in the day when she shall be spoken for? \nIf she be a wall, we will build upon her a palace of silver: and if she be a door, we will inclose her with boards of cedar. \nI am a wall, and my breasts like towers: then was I in his eyes as one that found favour. \nSolomon had a vineyard at Baalhamon; he let out the vineyard unto keepers; every one for the fruit thereof was to bring a thousand pieces of silver. \nMy vineyard, which is mine, is before me: thou, O Solomon, must have a thousand, and those that keep the fruit thereof two hundred. \nThou that dwellest in the gardens, the companions hearken to thy voice: cause me to hear it. \nMake haste, my beloved, and be thou like to a roe or to a young hart upon the mountains of spices. \nThe vision of Isaiah the son of Amoz, which he saw concerning Judah and Jerusalem in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah. \nHear, O heavens, and give ear, O earth: for the LORD hath spoken, I have nourished and brought up children, and they have rebelled against me. \nThe ox knoweth his owner, and the ass his master's crib: but Israel doth not know, my people doth not consider. \nAh sinful nation, a people laden with iniquity, a seed of evildoers, children that are corrupters: they have forsaken the LORD, they have provoked the Holy One of Israel unto anger, they are gone away backward. \nWhy should ye be stricken any more? ye will revolt more and more: the whole head is sick, and the whole heart faint. \nFrom the sole of the foot even unto the head there is no soundness in it; but wounds, and bruises, and putrifying sores: they have not been closed, neither bound up, neither mollified with ointment. \nYour country is desolate, your cities are burned with fire: your land, strangers devour it in your presence, and it is desolate, as overthrown by strangers. \nAnd the daughter of Zion is left as a cottage in a vineyard, as a lodge in a garden of cucumbers, as a besieged city. \nExcept the LORD of hosts had left unto us a very small remnant, we should have been as Sodom, and we should have been like unto Gomorrah. \nHear the word of the LORD, ye rulers of Sodom; give ear unto the law of our God, ye people of Gomorrah. \nTo what purpose is the multitude of your sacrifices unto me? saith the LORD: I am full of the burnt offerings of rams, and the fat of fed beasts; and I delight not in the blood of bullocks, or of lambs, or of he goats. \nWhen ye come to appear before me, who hath required this at your hand, to tread my courts? \nBring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting. \nYour new moons and your appointed feasts my soul hateth: they are a trouble unto me; I am weary to bear them. \nAnd when ye spread forth your hands, I will hide mine eyes from you: yea, when ye make many prayers, I will not hear: your hands are full of blood. \nWash you, make you clean; put away the evil of your doings from before mine eyes; cease to do evil; \nLearn to do well; seek judgment, relieve the oppressed, judge the fatherless, plead for the widow. \nCome now, and let us reason together, saith the LORD: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool. \nIf ye be willing and obedient, ye shall eat the good of the land: \nBut if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the LORD hath spoken it. \nHow is the faithful city become an harlot! it was full of judgment; righteousness lodged in it; but now murderers. \nThy silver is become dross, thy wine mixed with water: \nThy princes are rebellious, and companions of thieves: every one loveth gifts, and followeth after rewards: they judge not the fatherless, neither doth the cause of the widow come unto them. \nTherefore saith the LORD, the LORD of hosts, the mighty One of Israel, Ah, I will ease me of mine adversaries, and avenge me of mine enemies: \nAnd I will turn my hand upon thee, and purely purge away thy dross, and take away all thy tin: \nAnd I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city. \nZion shall be redeemed with judgment, and her converts with righteousness. \nAnd the destruction of the transgressors and of the sinners shall be together, and they that forsake the LORD shall be consumed. \nFor they shall be ashamed of the oaks which ye have desired, and ye shall be confounded for the gardens that ye have chosen. \nFor ye shall be as an oak whose leaf fadeth, and as a garden that hath no water. \nAnd the strong shall be as tow, and the maker of it as a spark, and they shall both burn together, and none shall quench them. \nThe word that Isaiah the son of Amoz saw concerning Judah and Jerusalem. \nAnd it shall come to pass in the last days, that the mountain of the LORD's house shall be established in the top of the mountains, and shall be exalted above the hills; and all nations shall flow unto it. \nAnd many people shall go and say, Come ye, and let us go up to the mountain of the LORD, to the house of the God of Jacob; and he will teach us of his ways, and we will walk in his paths: for out of Zion shall go forth the law, and the word of the LORD from Jerusalem. \nAnd he shall judge among the nations, and shall rebuke many people: and they shall beat their swords into plowshares, and their spears into pruninghooks: nation shall not lift up sword against nation, neither shall they learn war any more. \nO house of Jacob, come ye, and let us walk in the light of the LORD. \nTherefore thou hast forsaken thy people the house of Jacob, because they be replenished from the east, and are soothsayers like the Philistines, and they please themselves in the children of strangers. \nTheir land also is full of silver and gold, neither is there any end of their treasures; their land is also full of horses, neither is there any end of their chariots: \nTheir land also is full of idols; they worship the work of their own hands, that which their own fingers have made: \nAnd the mean man boweth down, and the great man humbleth himself: therefore forgive them not. \nEnter into the rock, and hide thee in the dust, for fear of the LORD, and for the glory of his majesty. \nThe lofty looks of man shall be humbled, and the haughtiness of men shall be bowed down, and the LORD alone shall be exalted in that day. \nFor the day of the LORD of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low: \nAnd upon all the cedars of Lebanon, that are high and lifted up, and upon all the oaks of Bashan, \nAnd upon all the high mountains, and upon all the hills that are lifted up, \nAnd upon every high tower, and upon every fenced wall, \nAnd upon all the ships of Tarshish, and upon all pleasant pictures. \nAnd the loftiness of man shall be bowed down, and the haughtiness of men shall be made low: and the LORD alone shall be exalted in that day. \nAnd the idols he shall utterly abolish. \nAnd they shall go into the holes of the rocks, and into the caves of the earth, for fear of the LORD, and for the glory of his majesty, when he ariseth to shake terribly the earth. \nIn that day a man shall cast his idols of silver, and his idols of gold, which they made each one for himself to worship, to the moles and to the bats; \nTo go into the clefts of the rocks, and into the tops of the ragged rocks, for fear of the LORD, and for the glory of his majesty, when he ariseth to shake terribly the earth. \nCease ye from man, whose breath is in his nostrils: for wherein is he to be accounted of ? \nFor, behold, the Lord, the LORD of hosts, doth take away from Jerusalem and from Judah the stay and the staff, the whole stay of bread, and the whole stay of water. \nThe mighty man, and the man of war, the judge, and the prophet, and the prudent, and the ancient, \nThe captain of fifty, and the honourable man, and the counsellor, and the cunning artificer, and the eloquent orator. \nAnd I will give children to be their princes, and babes shall rule over them. \nAnd the people shall be oppressed, every one by another, and every one by his neighbour: the child shall behave himself proudly against the ancient, and the base against the honourable. \nWhen a man shall take hold of his brother of the house of his father, saying, Thou hast clothing, be thou our ruler, and let this ruin be under thy hand: \nIn that day shall he swear, saying, I will not be an healer; for in my house is neither bread nor clothing: make me not a ruler of the people. \nFor Jerusalem is ruined, and Judah is fallen: because their tongue and their doings are against the LORD, to provoke the eyes of his glory. \nThe shew of their countenance doth witness against them; and they declare their sin as Sodom, they hide it not. Woe unto their soul! for they have rewarded evil unto themselves. \nSay ye to the righteous, that it shall be well with him: for they shall eat the fruit of their doings. \nWoe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him. \nAs for my people, children are their oppressors, and women rule over them. O my people, they which lead thee cause thee to err, and destroy the way of thy paths. \nThe LORD standeth up to plead, and standeth to judge the people. \nThe LORD will enter into judgment with the ancients of his people, and the princes thereof: for ye have eaten up the vineyard; the spoil of the poor is in your houses. \nWhat mean ye that ye beat my people to pieces, and grind the faces of the poor? saith the Lord GOD of hosts. \nMoreover the LORD saith, Because the daughters of Zion are haughty, and walk with stretched forth necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet: \nTherefore the LORD will smite with a scab the crown of the head of the daughters of Zion, and the LORD will discover their secret parts. \nIn that day the Lord will take away the bravery of their tinkling ornaments about their feet, and their cauls, and their round tires like the moon, \nThe chains, and the bracelets, and the mufflers, \nThe bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings, \nThe rings, and nose jewels, \nThe changeable suits of apparel, and the mantles, and the wimples, and the crisping pins, \nThe glasses, and the fine linen, and the hoods, and the vails. \nAnd it shall come to pass, that instead of sweet smell there shall be stink; and instead of a girdle a rent; and instead of well set hair baldness; and instead of a stomacher a girding of sackcloth; and burning instead of beauty. \nThy men shall fall by the sword, and thy mighty in the war. \nAnd her gates shall lament and mourn; and she being desolate shall sit upon the ground. \nAnd in that day seven women shall take hold of one man, saying, We will eat our own bread, and wear our own apparel: only let us be called by thy name, to take away our reproach. \nIn that day shall the branch of the LORD be beautiful and glorious, and the fruit of the earth shall be excellent and comely for them that are escaped of Israel. \nAnd it shall come to pass, that he that is left in Zion, and he that remaineth in Jerusalem, shall be called holy, even every one that is written among the living in Jerusalem: \nWhen the Lord shall have washed away the filth of the daughters of Zion, and shall have purged the blood of Jerusalem from the midst thereof by the spirit of judgment, and by the spirit of burning. \nAnd the LORD will create upon every dwelling place of mount Zion, and upon her assemblies, a cloud and smoke by day, and the shining of a flaming fire by night: for upon all the glory shall be a defence. \nAnd there shall be a tabernacle for a shadow in the day time from the heat, and for a place of refuge, and for a covert from storm and from rain. \nNow will I sing to my wellbeloved a song of my beloved touching his vineyard. My wellbeloved hath a vineyard in a very fruitful hill: \nAnd he fenced it, and gathered out the stones thereof, and planted it with the choicest vine, and built a tower in the midst of it, and also made a winepress therein: and he looked that it should bring forth grapes, and it brought forth wild grapes. \nAnd now, O inhabitants of Jerusalem, and men of Judah, judge, I pray you, betwixt me and my vineyard. \nWhat could have been done more to my vineyard, that I have not done in it? wherefore, when I looked that it should bring forth grapes, brought it forth wild grapes? \nAnd now go to; I will tell you what I will do to my vineyard: I will take away the hedge thereof, and it shall be eaten up; and break down the wall thereof, and it shall be trodden down: \nAnd I will lay it waste: it shall not be pruned, nor digged; but there shall come up briers and thorns: I will also command the clouds that they rain no rain upon it. \nFor the vineyard of the LORD of hosts is the house of Israel, and the men of Judah his pleasant plant: and he looked for judgment, but behold oppression; for righteousness, but behold a cry. \nWoe unto them that join house to house, that lay field to field, till there be no place, that they may be placed alone in the midst of the earth! \nIn mine ears said the LORD of hosts, Of a truth many houses shall be desolate, even great and fair, without inhabitant. \nYea, ten acres of vineyard shall yield one bath, and the seed of an homer shall yield an ephah. \nWoe unto them that rise up early in the morning, that they may follow strong drink; that continue until night, till wine inflame them! \nAnd the harp, and the viol, the tabret, and pipe, and wine, are in their feasts: but they regard not the work of the LORD, neither consider the operation of his hands. \nTherefore my people are gone into captivity, because they have no knowledge: and their honourable men are famished, and their multitude dried up with thirst. \nTherefore hell hath enlarged herself, and opened her mouth without measure: and their glory, and their multitude, and their pomp, and he that rejoiceth, shall descend into it. \nAnd the mean man shall be brought down, and the mighty man shall be humbled, and the eyes of the lofty shall be humbled: \nBut the LORD of hosts shall be exalted in judgment, and God that is holy shall be sanctified in righteousness. \nThen shall the lambs feed after their manner, and the waste places of the fat ones shall strangers eat. \nWoe unto them that draw iniquity with cords of vanity, and sin as it were with a cart rope: \nThat say, Let him make speed, and hasten his work, that we may see it: and let the counsel of the Holy One of Israel draw nigh and come, that we may know it! \nWoe unto them that call evil good, and good evil; that put darkness for light, and light for darkness; that put bitter for sweet, and sweet for bitter! \nWoe unto them that are wise in their own eyes, and prudent in their own sight! \nWoe unto them that are mighty to drink wine, and men of strength to mingle strong drink: \nWhich justify the wicked for reward, and take away the righteousness of the righteous from him! \nTherefore as the fire devoureth the stubble, and the flame consumeth the chaff, so their root shall be as rottenness, and their blossom shall go up as dust: because they have cast away the law of the LORD of hosts, and despised the word of the Holy One of Israel. \nTherefore is the anger of the LORD kindled against his people, and he hath stretched forth his hand against them, and hath smitten them: and the hills did tremble, and their carcases were torn in the midst of the streets. For all this his anger is not turned away, but his hand is stretched out still. \nAnd he will lift up an ensign to the nations from far, and will hiss unto them from the end of the earth: and, behold, they shall come with speed swiftly: \nNone shall be weary nor stumble among them; none shall slumber nor sleep; neither shall the girdle of their loins be loosed, nor the latchet of their shoes be broken: \nWhose arrows are sharp, and all their bows bent, their horses' hoofs shall be counted like flint, and their wheels like a whirlwind: \nTheir roaring shall be like a lion, they shall roar like young lions: yea, they shall roar, and lay hold of the prey, and shall carry it away safe, and none shall deliver it. \nAnd in that day they shall roar against them like the roaring of the sea: and if one look unto the land, behold darkness and sorrow, and the light is darkened in the heavens thereof. \nIn the year that king Uzziah died I saw also the LORD sitting upon a throne, high and lifted up, and his train filled the temple. \nAbove it stood the seraphims: each one had six wings; with twain he covered his face, and with twain he covered his feet, and with twain he did fly. \nAnd one cried unto another, and said, Holy, holy, holy, is the LORD of hosts: the whole earth is full of his glory. \nAnd the posts of the door moved at the voice of him that cried, and the house was filled with smoke. \nThen said I, Woe is me! for I am undone; because I am a man of unclean lips, and I dwell in the midst of a people of unclean lips: for mine eyes have seen the King, the LORD of hosts. \nThen flew one of the seraphims unto me, having a live coal in his hand, which he had taken with the tongs from off the altar: \nAnd he laid it upon my mouth, and said, Lo, this hath touched thy lips; and thine iniquity is taken away, and thy sin purged. \nAlso I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then said I, Here am I; send me. \nAnd he said, Go, and tell this people, Hear ye indeed, but understand not; and see ye indeed, but perceive not. \nMake the heart of this people fat, and make their ears heavy, and shut their eyes; lest they see with their eyes, and hear with their ears, and understand with their heart, and convert, and be healed. \nThen said I, Lord, how long? And he answered, Until the cities be wasted without inhabitant, and the houses without man, and the land be utterly desolate, \nAnd the LORD have removed men far away, and there be a great forsaking in the midst of the land. \nBut yet in it shall be a tenth, and it shall return, and shall be eaten: as a teil tree, and as an oak, whose substance is in them, when they cast their leaves: so the holy seed shall be the substance thereof. \nAnd it came to pass in the days of Ahaz the son of Jotham, the son of Uzziah, king of Judah, that Rezin the king of Syria, and Pekah the son of Remaliah, king of Israel, went up toward Jerusalem to war against it, but could not prevail against it. \nAnd it was told the house of David, saying, Syria is confederate with Ephraim. And his heart was moved, and the heart of his people, as the trees of the wood are moved with the wind. \nThen said the LORD unto Isaiah, Go forth now to meet Ahaz, thou, and Shearjashub thy son, at the end of the conduit of the upper pool in the highway of the fuller's field; \nAnd say unto him, Take heed, and be quiet; fear not, neither be fainthearted for the two tails of these smoking firebrands, for the fierce anger of Rezin with Syria, and of the son of Remaliah. \nBecause Syria, Ephraim, and the son of Remaliah, have taken evil counsel against thee, saying, \nLet us go up against Judah, and vex it, and let us make a breach therein for us, and set a king in the midst of it, even the son of Tabeal: \nThus saith the Lord GOD, It shall not stand, neither shall it come to pass. \nFor the head of Syria is Damascus, and the head of Damascus is Rezin; and within threescore and five years shall Ephraim be broken, that it be not a people. \nAnd the head of Ephraim is Samaria, and the head of Samaria is Remaliah's son. If ye will not believe, surely ye shall not be established. \nMoreover the LORD spake again unto Ahaz, saying, \nAsk thee a sign of the LORD thy God; ask it either in the depth, or in the height above. \nBut Ahaz said, I will not ask, neither will I tempt the LORD. \nAnd he said, Hear ye now, O house of David; Is it a small thing for you to weary men, but will ye weary my God also? \nTherefore the Lord himself shall give you a sign; Behold, a virgin shall conceive, and bear a son, and shall call his name Immanuel. \nButter and honey shall he eat, that he may know to refuse the evil, and choose the good. \nFor before the child shall know to refuse the evil, and choose the good, the land that thou abhorrest shall be forsaken of both her kings. \nThe LORD shall bring upon thee, and upon thy people, and upon thy father's house, days that have not come, from the day that Ephraim departed from Judah; even the king of Assyria. \nAnd it shall come to pass in that day, that the LORD shall hiss for the fly that is in the uttermost part of the rivers of Egypt, and for the bee that is in the land of Assyria. \nAnd they shall come, and shall rest all of them in the desolate valleys, and in the holes of the rocks, and upon all thorns, and upon all bushes. \nIn the same day shall the Lord shave with a razor that is hired, namely, by them beyond the river, by the king of Assyria, the head, and the hair of the feet: and it shall also consume the beard. \nAnd it shall come to pass in that day, that a man shall nourish a young cow, and two sheep; \nAnd it shall come to pass, for the abundance of milk that they shall give he shall eat butter: for butter and honey shall every one eat that is left in the land. \nAnd it shall come to pass in that day, that every place shall be, where there were a thousand vines at a thousand silverlings, it shall even be for briers and thorns. \nWith arrows and with bows shall men come thither; because all the land shall become briers and thorns. \nAnd on all hills that shall be digged with the mattock, there shall not come thither the fear of briers and thorns: but it shall be for the sending forth of oxen, and for the treading of lesser cattle. \nMoreover the LORD said unto me, Take thee a great roll, and write in it with a man's pen concerning Mahershalalhashbaz. \nAnd I took unto me faithful witnesses to record, Uriah the priest, and Zechariah the son of Jeberechiah. \nAnd I went unto the prophetess; and she conceived, and bare a son. Then said the LORD to me, Call his name Mahershalalhashbaz. \nFor before the child shall have knowledge to cry, My father, and my mother, the riches of Damascus and the spoil of Samaria shall be taken away before the king of Assyria. \nThe LORD spake also unto me again, saying, \nForasmuch as this people refuseth the waters of Shiloah that go softly, and rejoice in Rezin and Remaliah's son; \nNow therefore, behold, the Lord bringeth up upon them the waters of the river, strong and many, even the king of Assyria, and all his glory: and he shall come up over all his channels, and go over all his banks: \nAnd he shall pass through Judah; he shall overflow and go over, he shall reach even to the neck; and the stretching out of his wings shall fill the breadth of thy land, O Immanuel. \nAssociate yourselves, O ye people, and ye shall be broken in pieces; and give ear, all ye of far countries: gird yourselves, and ye shall be broken in pieces; gird yourselves, and ye shall be broken in pieces. \nTake counsel together, and it shall come to nought; speak the word, and it shall not stand: for God is with us. \nFor the LORD spake thus to me with a strong hand, and instructed me that I should not walk in the way of this people, saying, \nSay ye not, A confederacy, to all them to whom this people shall say, A confederacy; neither fear ye their fear, nor be afraid. \nSanctify the LORD of hosts himself; and let him be your fear, and let him be your dread. \nAnd he shall be for a sanctuary; but for a stone of stumbling and for a rock of offence to both the houses of Israel, for a gin and for a snare to the inhabitants of Jerusalem. \nAnd many among them shall stumble, and fall, and be broken, and be snared, and be taken. \nBind up the testimony, seal the law among my disciples. \nAnd I will wait upon the LORD, that hideth his face from the house of Jacob, and I will look for him. \nBehold, I and the children whom the LORD hath given me are for signs and for wonders in Israel from the LORD of hosts, which dwelleth in mount Zion. \nAnd when they shall say unto you, Seek unto them that have familiar spirits, and unto wizards that peep, and that mutter: should not a people seek unto their God? for the living to the dead? \nTo the law and to the testimony: if they speak not according to this word, it is because there is no light in them. \nAnd they shall pass through it, hardly bestead and hungry: and it shall come to pass, that when they shall be hungry, they shall fret themselves, and curse their king and their God, and look upward. \nAnd they shall look unto the earth; and behold trouble and darkness, dimness of anguish; and they shall be driven to darkness. \nNevertheless the dimness shall not be such as was in her vexation, when at the first he lightly afflicted the land of Zebulun and the land of Naphtali, and afterward did more grievously afflict her by the way of the sea, beyond Jordan, in Galilee of the nations. \nThe people that walked in darkness have seen a great light: they that dwell in the land of the shadow of death, upon them hath the light shined. \nThou hast multiplied the nation, and not increased the joy: they joy before thee according to the joy in harvest, and as men rejoice when they divide the spoil. \nFor thou hast broken the yoke of his burden, and the staff of his shoulder, the rod of his oppressor, as in the day of Midian. \nFor every battle of the warrior is with confused noise, and garments rolled in blood; but this shall be with burning and fuel of fire. \nFor unto us a child is born, unto us a son is given: and the government shall be upon his shoulder: and his name shall be called Wonderful, Counsellor, The mighty God, The everlasting Father, The Prince of Peace. \nOf the increase of his government and peace there shall be no end, upon the throne of David, and upon his kingdom, to order it, and to establish it with judgment and with justice from henceforth even for ever. The zeal of the LORD of hosts will perform this. \nThe Lord sent a word into Jacob, and it hath lighted upon Israel. \nAnd all the people shall know, even Ephraim and the inhabitant of Samaria, that say in the pride and stoutness of heart, \nThe bricks are fallen down, but we will build with hewn stones: the sycomores are cut down, but we will change them into cedars. \nTherefore the LORD shall set up the adversaries of Rezin against him, and join his enemies together; \nThe Syrians before, and the Philistines behind; and they shall devour Israel with open mouth. For all this his anger is not turned away, but his hand is stretched out still. \nFor the people turneth not unto him that smiteth them, neither do they seek the LORD of hosts. \nTherefore the LORD will cut off from Israel head and tail, branch and rush, in one day. \nThe ancient and honourable, he is the head; and the prophet that teacheth lies, he is the tail. \nFor the leaders of this people cause them to err; and they that are led of them are destroyed. \nTherefore the LORD shall have no joy in their young men, neither shall have mercy on their fatherless and widows: for every one is an hypocrite and an evildoer, and every mouth speaketh folly. For all this his anger is not turned away, but his hand is stretched out still. \nFor wickedness burneth as the fire: it shall devour the briers and thorns, and shall kindle in the thickets of the forest, and they shall mount up like the lifting up of smoke. \nThrough the wrath of the LORD of hosts is the land darkened, and the people shall be as the fuel of the fire: no man shall spare his brother. \nAnd he shall snatch on the right hand, and be hungry; and he shall eat on the left hand, and they shall not be satisfied: they shall eat every man the flesh of his own arm: \nManasseh, Ephraim; and Ephraim, Manasseh: and they together shall be against Judah. For all this his anger is not turned away, but his hand is stretched out still. \nWoe unto them that decree unrighteous decrees, and that write grievousness which they have prescribed; \nTo turn aside the needy from judgment, and to take away the right from the poor of my people, that widows may be their prey, and that they may rob the fatherless! \nAnd what will ye do in the day of visitation, and in the desolation which shall come from far? to whom will ye flee for help? and where will ye leave your glory? \nWithout me they shall bow down under the prisoners, and they shall fall under the slain. For all this his anger is not turned away, but his hand is stretched out still. \nO Assyrian, the rod of mine anger, and the staff in their hand is mine indignation. \nI will send him against an hypocritical nation, and against the people of my wrath will I give him a charge, to take the spoil, and to take the prey, and to tread them down like the mire of the streets. \nHowbeit he meaneth not so, neither doth his heart think so; but it is in his heart to destroy and cut off nations not a few. \nFor he saith, Are not my princes altogether kings? \nIs not Calno as Carchemish? is not Hamath as Arpad? is not Samaria as Damascus? \nAs my hand hath found the kingdoms of the idols, and whose graven images did excel them of Jerusalem and of Samaria; \nShall I not, as I have done unto Samaria and her idols, so do to Jerusalem and her idols? \nWherefore it shall come to pass, that when the Lord hath performed his whole work upon mount Zion and on Jerusalem, I will punish the fruit of the stout heart of the king of Assyria, and the glory of his high looks. \nFor he saith, By the strength of my hand I have done it, and by my wisdom; for I am prudent: and I have removed the bounds of the people, and have robbed their treasures, and I have put down the inhabitants like a valiant man: \nAnd my hand hath found as a nest the riches of the people: and as one gathereth eggs that are left, have I gathered all the earth; and there was none that moved the wing, or opened the mouth, or peeped. \nShall the axe boast itself against him that heweth therewith? or shall the saw magnify itself against him that shaketh it? as if the rod should shake itself against them that lift it up, or as if the staff should lift up itself, as if it were no wood. \nTherefore shall the Lord, the Lord of hosts, send among his fat ones leanness; and under his glory he shall kindle a burning like the burning of a fire. \nAnd the light of Israel shall be for a fire, and his Holy One for a flame: and it shall burn and devour his thorns and his briers in one day; \nAnd shall consume the glory of his forest, and of his fruitful field, both soul and body: and they shall be as when a standard-bearer fainteth. \nAnd the rest of the trees of his forest shall be few, that a child may write them. \nAnd it shall come to pass in that day, that the remnant of Israel, and such as are escaped of the house of Jacob, shall no more again stay upon him that smote them; but shall stay upon the LORD, the Holy One of Israel, in truth. \nThe remnant shall return, even the remnant of Jacob, unto the mighty God. \nFor though thy people Israel be as the sand of the sea, yet a remnant of them shall return: the consumption decreed shall overflow with righteousness. \nFor the Lord GOD of hosts shall make a consumption, even determined, in the midst of all the land. \nTherefore thus saith the Lord GOD of hosts, O my people that dwellest in Zion, be not afraid of the Assyrian: he shall smite thee with a rod, and shall lift up his staff against thee, after the manner of Egypt. \nFor yet a very little while, and the indignation shall cease, and mine anger in their destruction. \nAnd the LORD of hosts shall stir up a scourge for him according to the slaughter of Midian at the rock of Oreb: and as his rod was upon the sea, so shall he lift it up after the manner of Egypt. \nAnd it shall come to pass in that day, that his burden shall be taken away from off thy shoulder, and his yoke from off thy neck, and the yoke shall be destroyed because of the anointing. \nHe is come to Aiath, he is passed to Migron; at Michmash he hath laid up his carriages: \nThey are gone over the passage: they have taken up their lodging at Geba; Ramah is afraid; Gibeah of Saul is fled. \nLift up thy voice, O daughter of Gallim: cause it to be heard unto Laish, O poor Anathoth. \nMadmenah is removed; the inhabitants of Gebim gather themselves to flee. \nAs yet shall he remain at Nob that day: he shall shake his hand against the mount of the daughter of Zion, the hill of Jerusalem. \nBehold, the Lord, the LORD of hosts, shall lop the bough with terror: and the high ones of stature shall be hewn down, and the haughty shall be humbled. \nAnd he shall cut down the thickets of the forest with iron, and Lebanon shall fall by a mighty one. \nAnd there shall come forth a rod out of the stem of Jesse, and a Branch shall grow out of his roots: \nAnd the spirit of the LORD shall rest upon him, the spirit of wisdom and understanding, the spirit of counsel and might, the spirit of knowledge and of the fear of the LORD; \nAnd shall make him of quick understanding in the fear of the LORD: and he shall not judge after the sight of his eyes, neither reprove after the hearing of his ears: \nBut with righteousness shall he judge the poor, and reprove with equity for the meek of the earth: and he shall smite the earth: with the rod of his mouth, and with the breath of his lips shall he slay the wicked. \nAnd righteousness shall be the girdle of his loins, and faithfulness the girdle of his reins. \nThe wolf also shall dwell with the lamb, and the leopard shall lie down with the kid; and the calf and the young lion and the fatling together; and a little child shall lead them. \nAnd the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox. \nAnd the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice' den. \nThey shall not hurt nor destroy in all my holy mountain: for the earth shall be full of the knowledge of the LORD, as the waters cover the sea. \nAnd in that day there shall be a root of Jesse, which shall stand for an ensign of the people; to it shall the Gentiles seek: and his rest shall be glorious. \nAnd it shall come to pass in that day, that the Lord shall set his hand again the second time to recover the remnant of his people, which shall be left, from Assyria, and from Egypt, and from Pathros, and from Cush, and from Elam, and from Shinar, and from Hamath, and from the islands of the sea. \nAnd he shall set up an ensign for the nations, and shall assemble the outcasts of Israel, and gather together the dispersed of Judah from the four corners of the earth. \nThe envy also of Ephraim shall depart, and the adversaries of Judah shall be cut off: Ephraim shall not envy Judah, and Judah shall not vex Ephraim. \nBut they shall fly upon the shoulders of the Philistines toward the west; they shall spoil them of the east together: they shall lay their hand upon Edom and Moab; and the children of Ammon shall obey them. \nAnd the LORD shall utterly destroy the tongue of the Egyptian sea; and with his mighty wind shall he shake his hand over the river, and shall smite it in the seven streams, and make men go over dryshod. \nAnd there shall be an highway for the remnant of his people, which shall be left, from Assyria; like as it was to Israel in the day that he came up out of the land of Egypt. \nAnd in that day thou shalt say, O LORD, I will praise thee: though thou wast angry with me, thine anger is turned away, and thou comfortedst me. \nBehold, God is my salvation; I will trust, and not be afraid: for the LORD JEHOVAH is my strength and my song; he also is become my salvation. \nTherefore with joy shall ye draw water out of the wells of salvation. \nAnd in that day shall ye say, Praise the LORD, call upon his name, declare his doings among the people, make mention that his name is exalted. \nSing unto the LORD; for he hath done excellent things: this is known in all the earth. \nCry out and shout, thou inhabitant of Zion: for great is the Holy One of Israel in the midst of thee. \nThe burden of Babylon, which Isaiah the son of Amoz did see. \nLift ye up a banner upon the high mountain, exalt the voice unto them, shake the hand, that they may go into the gates of the nobles. \nI have commanded my sanctified ones, I have also called my mighty ones for mine anger, even them that rejoice in my highness. \nThe noise of a multitude in the mountains, like as of a great people; a tumultuous noise of the kingdoms of nations gathered together: the LORD of hosts mustereth the host of the battle. \nThey come from a far country, from the end of heaven, even the LORD, and the weapons of his indignation, to destroy the whole land. \nHowl ye; for the day of the LORD is at hand; it shall come as a destruction from the Almighty. \nTherefore shall all hands be faint, and every man's heart shall melt: \nAnd they shall be afraid: pangs and sorrows shall take hold of them; they shall be in pain as a woman that travaileth: they shall be amazed one at another; their faces shall be as flames. \nBehold, the day of the LORD cometh, cruel both with wrath and fierce anger, to lay the land desolate: and he shall destroy the sinners thereof out of it. \nFor the stars of heaven and the constellations thereof shall not give their light: the sun shall be darkened in his going forth, and the moon shall not cause her light to shine. \nAnd I will punish the world for their evil, and the wicked for their iniquity; and I will cause the arrogancy of the proud to cease, and will lay low the haughtiness of the terrible. \nI will make a man more precious than fine gold; even a man than the golden wedge of Ophir. \nTherefore I will shake the heavens, and the earth shall remove out of her place, in the wrath of the LORD of hosts, and in the day of his fierce anger. \nAnd it shall be as the chased roe, and as a sheep that no man taketh up: they shall every man turn to his own people, and flee every one into his own land. \nEvery one that is found shall be thrust through; and every one that is joined unto them shall fall by the sword. \nTheir children also shall be dashed to pieces before their eyes; their houses shall be spoiled, and their wives ravished. \nBehold, I will stir up the Medes against them, which shall not regard silver; and as for gold, they shall not delight in it. \nTheir bows also shall dash the young men to pieces; and they shall have no pity on the fruit of the womb; their eyes shall not spare children. \nAnd Babylon, the glory of kingdoms, the beauty of the Chaldees' excellency, shall be as when God overthrew Sodom and Gomorrah. \nIt shall never be inhabited, neither shall it be dwelt in from generation to generation: neither shall the Arabian pitch tent there; neither shall the shepherds make their fold there. \nBut wild beasts of the desert shall lie there; and their houses shall be full of doleful creatures; and owls shall dwell there, and satyrs shall dance there. \nAnd the wild beasts of the islands shall cry in their desolate houses, and dragons in their pleasant palaces: and her time is near to come, and her days shall not be prolonged. \nFor the LORD will have mercy on Jacob, and will yet choose Israel, and set them in their own land: and the strangers shall be joined with them, and they shall cleave to the house of Jacob. \nAnd the people shall take them, and bring them to their place: and the house of Israel shall possess them in the land of the LORD for servants and handmaids: and they shall take them captives, whose captives they were; and they shall rule over their oppressors. \nAnd it shall come to pass in the day that the LORD shall give thee rest from thy sorrow, and from thy fear, and from the hard bondage wherein thou wast made to serve, \nThat thou shalt take up this proverb against the king of Babylon, and say, How hath the oppressor ceased! the golden city ceased! \nThe LORD hath broken the staff of the wicked, and the sceptre of the rulers. \nHe who smote the people in wrath with a continual stroke, he that ruled the nations in anger, is persecuted, and none hindereth. \nThe whole earth is at rest, and is quiet: they break forth into singing. \nYea, the fir trees rejoice at thee, and the cedars of Lebanon, saying, Since thou art laid down, no feller is come up against us. \nHell from beneath is moved for thee to meet thee at thy coming: it stirreth up the dead for thee, even all the chief ones of the earth; it hath raised up from their thrones all the kings of the nations. \nAll they shall speak and say unto thee, Art thou also become weak as we? art thou become like unto us? \nThy pomp is brought down to the grave, and the noise of thy viols: the worm is spread under thee, and the worms cover thee. \nHow art thou fallen from heaven, O Lucifer, son of the morning! how art thou cut down to the ground, which didst weaken the nations! \nFor thou hast said in thine heart, I will ascend into heaven, I will exalt my throne above the stars of God: I will sit also upon the mount of the congregation, in the sides of the north: \nI will ascend above the heights of the clouds; I will be like the most High. \nYet thou shalt be brought down to hell, to the sides of the pit. \nThey that see thee shall narrowly look upon thee, and consider thee, saying, Is this the man that made the earth to tremble, that did shake kingdoms; \nThat made the world as a wilderness, and destroyed the cities thereof; that opened not the house of his prisoners? \nAll the kings of the nations, even all of them, lie in glory, every one in his own house. \nBut thou art cast out of thy grave like an abominable branch, and as the raiment of those that are slain, thrust through with a sword, that go down to the stones of the pit; as a carcase trodden under feet. \nThou shalt not be joined with them in burial, because thou hast destroyed thy land, and slain thy people: the seed of evildoers shall never be renowned. \nPrepare slaughter for his children for the iniquity of their fathers; that they do not rise, nor possess the land, nor fill the face of the world with cities. \nFor I will rise up against them, saith the LORD of hosts, and cut off from Babylon the name, and remnant, and son, and nephew, saith the LORD. \nI will also make it a possession for the bittern, and pools of water: and I will sweep it with the besom of destruction, saith the LORD of hosts. \nThe LORD of hosts hath sworn, saying, Surely as I have thought, so shall it come to pass; and as I have purposed, so shall it stand: \nThat I will break the Assyrian in my land, and upon my mountains tread him under foot: then shall his yoke depart from off them, and his burden depart from off their shoulders. \nThis is the purpose that is purposed upon the whole earth: and this is the hand that is stretched out upon all the nations. \nFor the LORD of hosts hath purposed, and who shall disannul it? and his hand is stretched out, and who shall turn it back? \nIn the year that king Ahaz died was this burden. \nRejoice not thou, whole Palestina, because the rod of him that smote thee is broken: for out of the serpent's root shall come forth a cockatrice, and his fruit shall be a fiery flying serpent. \nAnd the firstborn of the poor shall feed, and the needy shall lie down in safety: and I will kill thy root with famine, and he shall slay thy remnant. \nHowl, O gate; cry, O city; thou, whole Palestina, art dissolved: for there shall come from the north a smoke, and none shall be alone in his appointed times. \nWhat shall one then answer the messengers of the nation? That the LORD hath founded Zion, and the poor of his people shall trust in it. \nThe burden of Moab. Because in the night Ar of Moab is laid waste, and brought to silence; because in the night Kir of Moab is laid waste, and brought to silence; \nHe is gone up to Bajith, and to Dibon, the high places, to weep: Moab shall howl over Nebo, and over Medeba: on all their heads shall be baldness, and every beard cut off. \nIn their streets they shall gird themselves with sackcloth: on the tops of their houses, and in their streets, every one shall howl, weeping abundantly. \nAnd Heshbon shall cry, and Elealeh: their voice shall be heard even unto Jahaz: therefore the armed soldiers of Moab shall cry out; his life shall be grievous unto him. \nMy heart shall cry out for Moab; his fugitives shall flee unto Zoar, an heifer of three years old: for by the mounting up of Luhith with weeping shall they go it up; for in the way of Horonaim they shall raise up a cry of destruction. \nFor the waters of Nimrim shall be desolate: for the hay is withered away, the grass faileth, there is no green thing. \nTherefore the abundance they have gotten, and that which they have laid up, shall they carry away to the brook of the willows. \nFor the cry is gone round about the borders of Moab; the howling thereof unto Eglaim, and the howling thereof unto Beerelim. \nFor the waters of Dimon shall be full of blood: for I will bring more upon Dimon, lions upon him that escapeth of Moab, and upon the remnant of the land. \nSend ye the lamb to the ruler of the land from Sela to the wilderness, unto the mount of the daughter of Zion. \nFor it shall be, that, as a wandering bird cast out of the nest, so the daughters of Moab shall be at the fords of Arnon. \nTake counsel, execute judgment; make thy shadow as the night in the midst of the noonday; hide the outcasts; bewray not him that wandereth. \nLet mine outcasts dwell with thee, Moab; be thou a covert to them from the face of the spoiler: for the extortioner is at an end, the spoiler ceaseth, the oppressors are consumed out of the land. \nAnd in mercy shall the throne be established: and he shall sit upon it in truth in the tabernacle of David, judging, and seeking judgment, and hasting righteousness. \nWe have heard of the pride of Moab; he is very proud: even of his haughtiness, and his pride, and his wrath: but his lies shall not be so. \nTherefore shall Moab howl for Moab, every one shall howl: for the foundations of Kirhareseth shall ye mourn; surely they are stricken. \nFor the fields of Heshbon languish, and the vine of Sibmah: the lords of the heathen have broken down the principal plants thereof, they are come even unto Jazer, they wandered through the wilderness: her branches are stretched out, they are gone over the sea. \nTherefore I will bewail with the weeping of Jazer the vine of Sibmah: I will water thee with my tears, O Heshbon, and Elealeh: for the shouting for thy summer fruits and for thy harvest is fallen. \nAnd gladness is taken away, and joy out of the plentiful field; and in the vineyards there shall be no singing, neither shall there be shouting: the treaders shall tread out no wine in their presses; I have made their vintage shouting to cease. \nWherefore my bowels shall sound like an harp for Moab, and mine inward parts for Kirharesh. \nAnd it shall come to pass, when it is seen that Moab is weary on the high place, that he shall come to his sanctuary to pray; but he shall not prevail. \nThis is the word that the LORD hath spoken concerning Moab since that time. \nBut now the LORD hath spoken, saying, Within three years, as the years of an hireling, and the glory of Moab shall be contemned, with all that great multitude; and the remnant shall be very small and feeble. \nThe burden of Damascus. Behold, Damascus is taken away from being a city, and it shall be a ruinous heap. \nThe cities of Aroer are forsaken: they shall be for flocks, which shall lie down, and none shall make them afraid. \nThe fortress also shall cease from Ephraim, and the kingdom from Damascus, and the remnant of Syria: they shall be as the glory of the children of Israel, saith the LORD of hosts. \nAnd in that day it shall come to pass, that the glory of Jacob shall be made thin, and the fatness of his flesh shall wax lean. \nAnd it shall be as when the harvestman gathereth the corn, and reapeth the ears with his arm; and it shall be as he that gathereth ears in the valley of Rephaim. \nYet gleaning grapes shall be left in it, as the shaking of an olive tree, two or three berries in the top of the uppermost bough, four or five in the outmost fruitful branches thereof, saith the LORD God of Israel. \nAt that day shall a man look to his Maker, and his eyes shall have respect to the Holy One of Israel. \nAnd he shall not look to the altars, the work of his hands, neither shall respect that which his fingers have made, either the groves, or the images. \nIn that day shall his strong cities be as a forsaken bough, and an uppermost branch, which they left because of the children of Israel: and there shall be desolation. \nBecause thou hast forgotten the God of thy salvation, and hast not been mindful of the rock of thy strength, therefore shalt thou plant pleasant plants, and shalt set it with strange slips: \nIn the day shalt thou make thy plant to grow, and in the morning shalt thou make thy seed to flourish: but the harvest shall be a heap in the day of grief and of desperate sorrow. \nWoe to the multitude of many people, which make a noise like the noise of the seas; and to the rushing of nations, that make a rushing like the rushing of mighty waters! \nThe nations shall rush like the rushing of many waters: but God shall rebuke them, and they shall flee far off, and shall be chased as the chaff of the mountains before the wind, and like a rolling thing before the whirlwind. \nAnd behold at eveningtide trouble; and before the morning he is not. This is the portion of them that spoil us, and the lot of them that rob us. \nWoe to the land shadowing with wings, which is beyond the rivers of Ethiopia: \nThat sendeth ambassadors by the sea, even in vessels of bulrushes upon the waters, saying, Go, ye swift messengers, to a nation scattered and peeled, to a people terrible from their beginning hitherto; a nation meted out and trodden down, whose land the rivers have spoiled! \nAll ye inhabitants of the world, and dwellers on the earth, see ye, when he lifteth up an ensign on the mountains; and when he bloweth a trumpet, hear ye. \nFor so the LORD said unto me, I will take my rest, and I will consider in my dwelling place like a clear heat upon herbs, and like a cloud of dew in the heat of harvest. \nFor afore the harvest, when the bud is perfect, and the sour grape is ripening in the flower, he shall both cut off the sprigs with pruning hooks, and take away and cut down the branches. \nThey shall be left together unto the fowls of the mountains, and to the beasts of the earth: and the fowls shall summer upon them, and all the beasts of the earth shall winter upon them. \nIn that time shall the present be brought unto the LORD of hosts of a people scattered and peeled, and from a people terrible from their beginning hitherto; a nation meted out and trodden under foot, whose land the rivers have spoiled, to the place of the name of the LORD of hosts, the mount Zion. \nThe burden of Egypt. Behold, the LORD rideth upon a swift cloud, and shall come into Egypt: and the idols of Egypt shall be moved at his presence, and the heart of Egypt shall melt in the midst of it. \nAnd I will set the Egyptians against the Egyptians: and they shall fight every one against his brother, and every one against his neighbour; city against city, and kingdom against kingdom. \nAnd the spirit of Egypt shall fail in the midst thereof; and I will destroy the counsel thereof: and they shall seek to the idols, and to the charmers, and to them that have familiar spirits, and to the wizards. \nAnd the Egyptians will I give over into the hand of a cruel lord; and a fierce king shall rule over them, saith the Lord, the LORD of hosts. \nAnd the waters shall fail from the sea, and the river shall be wasted and dried up. \nAnd they shall turn the rivers far away; and the brooks of defence shall be emptied and dried up: the reeds and flags shall wither. \nThe paper reeds by the brooks, by the mouth of the brooks, and every thing sown by the brooks, shall wither, be driven away, and be no more. \nThe fishers also shall mourn, and all they that cast angle into the brooks shall lament, and they that spread nets upon the waters shall languish. \nMoreover they that work in fine flax, and they that weave networks, shall be confounded. \nAnd they shall be broken in the purposes thereof, all that make sluices and ponds for fish. \nSurely the princes of Zoan are fools, the counsel of the wise counsellors of Pharaoh is become brutish: how say ye unto Pharaoh, I am the son of the wise, the son of ancient kings? \nWhere are they? where are thy wise men? and let them tell thee now, and let them know what the LORD of hosts hath purposed upon Egypt. \nThe princes of Zoan are become fools, the princes of Noph are deceived; they have also seduced Egypt, even they that are the stay of the tribes thereof. \nThe LORD hath mingled a perverse spirit in the midst thereof: and they have caused Egypt to err in every work thereof, as a drunken man staggereth in his vomit. \nNeither shall there be any work for Egypt, which the head or tail, branch or rush, may do. \nIn that day shall Egypt be like unto women: and it shall be afraid and fear because of the shaking of the hand of the LORD of hosts, which he shaketh over it. \nAnd the land of Judah shall be a terror unto Egypt, every one that maketh mention thereof shall be afraid in himself, because of the counsel of the LORD of hosts, which he hath determined against it. \nIn that day shall five cities in the land of Egypt speak the language of Canaan, and swear to the LORD of hosts; one shall be called, The city of destruction. \nIn that day shall there be an altar to the LORD in the midst of the land of Egypt, and a pillar at the border thereof to the LORD. \nAnd it shall be for a sign and for a witness unto the LORD of hosts in the land of Egypt: for they shall cry unto the LORD because of the oppressors, and he shall send them a saviour, and a great one, and he shall deliver them. \nAnd the LORD shall be known to Egypt, and the Egyptians shall know the LORD in that day, and shall do sacrifice and oblation; yea, they shall vow a vow unto the LORD, and perform it. \nAnd the LORD shall smite Egypt: he shall smite and heal it: and they shall return even to the LORD, and he shall be intreated of them, and shall heal them. \nIn that day shall there be a highway out of Egypt to Assyria, and the Assyrian shall come into Egypt, and the Egyptian into Assyria, and the Egyptians shall serve with the Assyrians. \nIn that day shall Israel be the third with Egypt and with Assyria, even a blessing in the midst of the land: \nWhom the LORD of hosts shall bless, saying, Blessed be Egypt my people, and Assyria the work of my hands, and Israel mine inheritance. \nIn the year that Tartan came unto Ashdod, (when Sargon the king of Assyria sent him,) and fought against Ashdod, and took it; \nAt the same time spake the LORD by Isaiah the son of Amoz, saying, Go and loose the sackcloth from off thy loins, and put off thy shoe from thy foot. And he did so, walking naked and barefoot. \nAnd the LORD said, Like as my servant Isaiah hath walked naked and barefoot three years for a sign and wonder upon Egypt and upon Ethiopia; \nSo shall the king of Assyria lead away the Egyptians prisoners, and the Ethiopians captives, young and old, naked and barefoot, even with their buttocks uncovered, to the shame of Egypt. \nAnd they shall be afraid and ashamed of Ethiopia their expectation, and of Egypt their glory. \nAnd the inhabitant of this isle shall say in that day, Behold, such is our expectation, whither we flee for help to be delivered from the king of Assyria: and how shall we escape? \nThe burden of the desert of the sea. As whirlwinds in the south pass through; so it cometh from the desert, from a terrible land. \nA grievous vision is declared unto me; the treacherous dealer dealeth treacherously, and the spoiler spoileth. Go up, O Elam: besiege, O Media; all the sighing thereof have I made to cease. \nTherefore are my loins filled with pain: pangs have taken hold upon me, as the pangs of a woman that travaileth: I was bowed down at the hearing of it; I was dismayed at the seeing of it. \nMy heart panted, fearfulness affrighted me: the night of my pleasure hath he turned into fear unto me. \nPrepare the table, watch in the watchtower, eat, drink: arise, ye princes, and anoint the shield. \nFor thus hath the LORD said unto me, Go, set a watchman, let him declare what he seeth. \nAnd he saw a chariot with a couple of horsemen, a chariot of asses, and a chariot of camels; and he hearkened diligently with much heed: \nAnd he cried, A lion: My lord, I stand continually upon the watchtower in the daytime, and I am set in my ward whole nights: \nAnd, behold, here cometh a chariot of men, with a couple of horsemen. And he answered and said, Babylon is fallen, is fallen; and all the graven images of her gods he hath broken unto the ground. \nO my threshing, and the corn of my floor: that which I have heard of the LORD of hosts, the God of Israel, have I declared unto you. \nThe burden of Dumah. He calleth to me out of Seir, Watchman, what of the night? Watchman, what of the night? \nThe watchman said, The morning cometh, and also the night: if ye will enquire, enquire ye: return, come. \nThe burden upon Arabia. In the forest in Arabia shall ye lodge, O ye travelling companies of Dedanim. \nThe inhabitants of the land of Tema brought water to him that was thirsty, they prevented with their bread him that fled. \nFor they fled from the swords, from the drawn sword, and from the bent bow, and from the grievousness of war. \nFor thus hath the LORD said unto me, Within a year, according to the years of an hireling, and all the glory of Kedar shall fail: \nAnd the residue of the number of archers, the mighty men of the children of Kedar, shall be diminished: for the LORD God of Israel hath spoken it. \nThe burden of the valley of vision. What aileth thee now, that thou art wholly gone up to the housetops? \nThou that art full of stirs, a tumultuous city, joyous city: thy slain men are not slain with the sword, nor dead in battle. \nAll thy rulers are fled together, they are bound by the archers: all that are found in thee are bound together, which have fled from far. \nTherefore said I, Look away from me; I will weep bitterly, labour not to comfort me, because of the spoiling of the daughter of my people. \nFor it is a day of trouble, and of treading down, and of perplexity by the Lord GOD of hosts in the valley of vision, breaking down the walls, and of crying to the mountains. \nAnd Elam bare the quiver with chariots of men and horsemen, and Kir uncovered the shield. \nAnd it shall come to pass, that thy choicest valleys shall be full of chariots, and the horsemen shall set themselves in array at the gate. \nAnd he discovered the covering of Judah, and thou didst look in that day to the armour of the house of the forest. \nYe have seen also the breaches of the city of David, that they are many: and ye gathered together the waters of the lower pool. \nAnd ye have numbered the houses of Jerusalem, and the houses have ye broken down to fortify the wall. \nYe made also a ditch between the two walls for the water of the old pool: but ye have not looked unto the maker thereof, neither had respect unto him that fashioned it long ago. \nAnd in that day did the Lord GOD of hosts call to weeping, and to mourning, and to baldness, and to girding with sackcloth: \nAnd behold joy and gladness, slaying oxen, and killing sheep, eating flesh, and drinking wine: let us eat and drink; for to morrow we shall die. \nAnd it was revealed in mine ears by the LORD of hosts, Surely this iniquity shall not be purged from you till ye die, saith the Lord GOD of hosts. \nThus saith the Lord GOD of hosts, Go, get thee unto this treasurer, even unto Shebna, which is over the house, and say, \nWhat hast thou here? and whom hast thou here, that thou hast hewed thee out a sepulchre here, as he that heweth him out a sepulchre on high, and that graveth an habitation for himself in a rock? \nBehold, the LORD will carry thee away with a mighty captivity, and will surely cover thee. \nHe will surely violently turn and toss thee like a ball into a large country: there shalt thou die, and there the chariots of thy glory shall be the shame of thy lord's house. \nAnd I will drive thee from thy station, and from thy state shall he pull thee down. \nAnd it shall come to pass in that day, that I will call my servant Eliakim the son of Hilkiah: \nAnd I will clothe him with thy robe, and strengthen him with thy girdle, and I will commit thy government into his hand: and he shall be a father to the inhabitants of Jerusalem, and to the house of Judah. \nAnd the key of the house of David will I lay upon his shoulder; so he shall open, and none shall shut; and he shall shut, and none shall open. \nAnd I will fasten him as a nail in a sure place; and he shall be for a glorious throne to his father's house. \nAnd they shall hang upon him all the glory of his father's house, the offspring and the issue, all vessels of small quantity, from the vessels of cups, even to all the vessels of flagons. \nIn that day, saith the LORD of hosts, shall the nail that is fastened in the sure place be removed, and be cut down, and fall; and the burden that was upon it shall be cut off: for the LORD hath spoken it. \nThe burden of Tyre. Howl, ye ships of Tarshish; for it is laid waste, so that there is no house, no entering in: from the land of Chittim it is revealed to them. \nBe still, ye inhabitants of the isle; thou whom the merchants of Zidon, that pass over the sea, have replenished. \nAnd by great waters the seed of Sihor, the harvest of the river, is her revenue; and she is a mart of nations. \nBe thou ashamed, O Zidon: for the sea hath spoken, even the strength of the sea, saying, I travail not, nor bring forth children, neither do I nourish up young men, nor bring up virgins. \nAs at the report concerning Egypt, so shall they be sorely pained at the report of Tyre. \nPass ye over to Tarshish; howl, ye inhabitants of the isle. \nIs this your joyous city, whose antiquity is of ancient days? her own feet shall carry her afar off to sojourn. \nWho hath taken this counsel against Tyre, the crowning city, whose merchants are princes, whose traffickers are the honourable of the earth? \nThe LORD of hosts hath purposed it, to stain the pride of all glory, and to bring into contempt all the honourable of the earth. \nPass through thy land as a river, O daughter of Tarshish: there is no more strength. \nHe stretched out his hand over the sea, he shook the kingdoms: the LORD hath given a commandment against the merchant city, to destroy the strong holds thereof. \nAnd he said, Thou shalt no more rejoice, O thou oppressed virgin, daughter of Zidon: arise, pass over to Chittim; there also shalt thou have no rest. \nBehold the land of the Chaldeans; this people was not, till the Assyrian founded it for them that dwell in the wilderness: they set up the towers thereof, they raised up the palaces thereof; and he brought it to ruin. \nHowl, ye ships of Tarshish: for your strength is laid waste. \nAnd it shall come to pass in that day, that Tyre shall be forgotten seventy years, according to the days of one king: after the end of seventy years shall Tyre sing as an harlot. \nTake an harp, go about the city, thou harlot that hast been forgotten; make sweet melody, sing many songs, that thou mayest be remembered. \nAnd it shall come to pass after the end of seventy years, that the LORD will visit Tyre, and she shall turn to her hire, and shall commit fornication with all the kingdoms of the world upon the face of the earth. \nAnd her merchandise and her hire shall be holiness to the LORD: it shall not be treasured nor laid up; for her merchandise shall be for them that dwell before the LORD, to eat sufficiently, and for durable clothing. \nBehold, the LORD maketh the earth empty, and maketh it waste, and turneth it upside down, and scattereth abroad the inhabitants thereof. \nAnd it shall be, as with the people, so with the priest; as with the servant, so with his master; as with the maid, so with her mistress; as with the buyer, so with the seller; as with the lender, so with the borrower; as with the taker of usury, so with the giver of usury to him. \nThe land shall be utterly emptied, and utterly spoiled: for the LORD hath spoken this word. \nThe earth mourneth and fadeth away, the world languisheth and fadeth away, the haughty people of the earth do languish. \nThe earth also is defiled under the inhabitants thereof; because they have transgressed the laws, changed the ordinance, broken the everlasting covenant. \nTherefore hath the curse devoured the earth, and they that dwell therein are desolate: therefore the inhabitants of the earth are burned, and few men left. \nThe new wine mourneth, the vine languisheth, all the merryhearted do sigh. \nThe mirth of tabrets ceaseth, the noise of them that rejoice endeth, the joy of the harp ceaseth. \nThey shall not drink wine with a song; strong drink shall be bitter to them that drink it. \nThe city of confusion is broken down: every house is shut up, that no man may come in. \nThere is a crying for wine in the streets; all joy is darkened, the mirth of the land is gone. \nIn the city is left desolation, and the gate is smitten with destruction. \nWhen thus it shall be in the midst of the land among the people, there shall be as the shaking of an olive tree, and as the gleaning grapes when the vintage is done. \nThey shall lift up their voice, they shall sing for the majesty of the LORD, they shall cry aloud from the sea. \nWherefore glorify ye the LORD in the fires, even the name of the LORD God of Israel in the isles of the sea. \nFrom the uttermost part of the earth have we heard songs, even glory to the righteous. But I said, My leanness, my leanness, woe unto me! the treacherous dealers have dealt treacherously; yea, the treacherous dealers have dealt very treacherously. \nFear, and the pit, and the snare, are upon thee, O inhabitant of the earth. \nAnd it shall come to pass, that he who fleeth from the noise of the fear shall fall into the pit; and he that cometh up out of the midst of the pit shall be taken in the snare: for the windows from on high are open, and the foundations of the earth do shake. \nThe earth is utterly broken down, the earth is clean dissolved, the earth is moved exceedingly. \nThe earth shall reel to and fro like a drunkard, and shall be removed like a cottage; and the transgression thereof shall be heavy upon it; and it shall fall, and not rise again. \nAnd it shall come to pass in that day, that the LORD shall punish the host of the high ones that are on high, and the kings of the earth upon the earth. \nAnd they shall be gathered together, as prisoners are gathered in the pit, and shall be shut up in the prison, and after many days shall they be visited. \nThen the moon shall be confounded, and the sun ashamed, when the LORD of hosts shall reign in mount Zion, and in Jerusalem, and before his ancients gloriously. \nO Lord, thou art my God; I will exalt thee, I will praise thy name; for thou hast done wonderful things; thy counsels of old are faithfulness and truth. \nFor thou hast made of a city an heap; of a defenced city a ruin: a palace of strangers to be no city; it shall never be built. \nTherefore shall the strong people glorify thee, the city of the terrible nations shall fear thee. \nFor thou hast been a strength to the poor, a strength to the needy in his distress, a refuge from the storm, a shadow from the heat, when the blast of the terrible ones is as a storm against the wall. \nThou shalt bring down the noise of strangers, as the heat in a dry place; even the heat with the shadow of a cloud: the branch of the terrible ones shall be brought low. \nAnd in this mountain shall the LORD of hosts make unto all people a feast of fat things, a feast of wines on the lees, of fat things full of marrow, of wines on the lees well refined. \nAnd he will destroy in this mountain the face of the covering cast over all people, and the vail that is spread over all nations. \nHe will swallow up death in victory; and the Lord GOD will wipe away tears from off all faces; and the rebuke of his people shall he take away from off all the earth: for the LORD hath spoken it. \nAnd it shall be said in that day, Lo, this is our God; we have waited for him, and he will save us: this is the LORD; we have waited for him, we will be glad and rejoice in his salvation. \nFor in this mountain shall the hand of the LORD rest, and Moab shall be trodden down under him, even as straw is trodden down for the dunghill. \nAnd he shall spread forth his hands in the midst of them, as he that swimmeth spreadeth forth his hands to swim: and he shall bring down their pride together with the spoils of their hands. \nAnd the fortress of the high fort of thy walls shall he bring down, lay low, and bring to the ground, even to the dust. \nIn that day shall this song be sung in the land of Judah; We have a strong city; salvation will God appoint for walls and bulwarks. \nOpen ye the gates, that the righteous nation which keepeth the truth may enter in. \nThou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee. \nTrust ye in the LORD for ever: for in the LORD JEHOVAH is everlasting strength: \nFor he bringeth down them that dwell on high; the lofty city, he layeth it low; he layeth it low, even to the ground; he bringeth it even to the dust. \nThe foot shall tread it down, even the feet of the poor, and the steps of the needy. \nThe way of the just is uprightness: thou, most upright, dost weigh the path of the just. \nYea, in the way of thy judgments, O LORD, have we waited for thee; the desire of our soul is to thy name, and to the remembrance of thee. \nWith my soul have I desired thee in the night; yea, with my spirit within me will I seek thee early: for when thy judgments are in the earth, the inhabitants of the world will learn righteousness. \nLet favour be shewed to the wicked, yet will he not learn righteousness: in the land of uprightness will he deal unjustly, and will not behold the majesty of the LORD. \nLORD, when thy hand is lifted up, they will not see: but they shall see, and be ashamed for their envy at the people; yea, the fire of thine enemies shall devour them. \nLORD, thou wilt ordain peace for us: for thou also hast wrought all our works in us. \nO LORD our God, other lords beside thee have had dominion over us: but by thee only will we make mention of thy name. \nThey are dead, they shall not live; they are deceased, they shall not rise: therefore hast thou visited and destroyed them, and made all their memory to perish. \nThou hast increased the nation, O LORD, thou hast increased the nation: thou art glorified: thou hadst removed it far unto all the ends of the earth. \nLORD, in trouble have they visited thee, they poured out a prayer when thy chastening was upon them. \nLike as a woman with child, that draweth near the time of her delivery, is in pain, and crieth out in her pangs; so have we been in thy sight, O LORD. \nWe have been with child, we have been in pain, we have as it were brought forth wind; we have not wrought any deliverance in the earth; neither have the inhabitants of the world fallen. \nThy dead men shall live, together with my dead body shall they arise. Awake and sing, ye that dwell in dust: for thy dew is as the dew of herbs, and the earth shall cast out the dead. \nCome, my people, enter thou into thy chambers, and shut thy doors about thee: hide thyself as it were for a little moment, until the indignation be overpast. \nFor, behold, the LORD cometh out of his place to punish the inhabitants of the earth for their iniquity: the earth also shall disclose her blood, and shall no more cover her slain. \nIn that day the LORD with his sore and great and strong sword shall punish leviathan the piercing serpent, even leviathan that crooked serpent; and he shall slay the dragon that is in the sea. \nIn that day sing ye unto her, A vineyard of red wine. \nI the LORD do keep it; I will water it every moment: lest any hurt it, I will keep it night and day. \nFury is not in me: who would set the briers and thorns against me in battle? I would go through them, I would burn them together. \nOr let him take hold of my strength, that he may make peace with me; and he shall make peace with me. \nHe shall cause them that come of Jacob to take root: Israel shall blossom and bud, and fill the face of the world with fruit. \nHath he smitten him, as he smote those that smote him? or is he slain according to the slaughter of them that are slain by him? \nIn measure, when it shooteth forth, thou wilt debate with it: he stayeth his rough wind in the day of the east wind. \nBy this therefore shall the iniquity of Jacob be purged; and this is all the fruit to take away his sin; when he maketh all the stones of the altar as chalkstones that are beaten in sunder, the groves and images shall not stand up. \nYet the defenced city shall be desolate, and the habitation forsaken, and left like a wilderness: there shall the calf feed, and there shall he lie down, and consume the branches thereof. \nWhen the boughs thereof are withered, they shall be broken off: the women come, and set them on fire: for it is a people of no understanding: therefore he that made them will not have mercy on them, and he that formed them will shew them no favour. \nAnd it shall come to pass in that day, that the LORD shall beat off from the channel of the river unto the stream of Egypt, and ye shall be gathered one by one, O ye children of Israel. \nAnd it shall come to pass in that day, that the great trumpet shall be blown, and they shall come which were ready to perish in the land of Assyria, and the outcasts in the land of Egypt, and shall worship the LORD in the holy mount at Jerusalem. \nWoe to the crown of pride, to the drunkards of Ephraim, whose glorious beauty is a fading flower, which are on the head of the fat valleys of them that are overcome with wine! \nBehold, the Lord hath a mighty and strong one, which as a tempest of hail and a destroying storm, as a flood of mighty waters overflowing, shall cast down to the earth with the hand. \nThe crown of pride, the drunkards of Ephraim, shall be trodden under feet: \nAnd the glorious beauty, which is on the head of the fat valley, shall be a fading flower, and as the hasty fruit before the summer; which when he that looketh upon it seeth, while it is yet in his hand he eateth it up. \nIn that day shall the LORD of hosts be for a crown of glory, and for a diadem of beauty, unto the residue of his people, \nAnd for a spirit of judgment to him that sitteth in judgment, and for strength to them that turn the battle to the gate. \nBut they also have erred through wine, and through strong drink are out of the way; the priest and the prophet have erred through strong drink, they are swallowed up of wine, they are out of the way through strong drink; they err in vision, they stumble in judgment. \nFor all tables are full of vomit and filthiness, so that there is no place clean. \nWhom shall he teach knowledge? and whom shall he make to understand doctrine? them that are weaned from the milk, and drawn from the breasts. \nFor precept must be upon precept, precept upon precept; line upon line, line upon line; here a little, and there a little: \nFor with stammering lips and another tongue will he speak to this people. \nTo whom he said, This is the rest wherewith ye may cause the weary to rest; and this is the refreshing: yet they would not hear. \nBut the word of the LORD was unto them precept upon precept, precept upon precept; line upon line, line upon line; here a little, and there a little; that they might go, and fall backward, and be broken, and snared, and taken. \nWherefore hear the word of the LORD, ye scornful men, that rule this people which is in Jerusalem. \nBecause ye have said, We have made a covenant with death, and with hell are we at agreement; when the overflowing scourge shall pass through, it shall not come unto us: for we have made lies our refuge, and under falsehood have we hid ourselves: \nTherefore thus saith the Lord GOD, Behold, I lay in Zion for a foundation a stone, a tried stone, a precious corner stone, a sure foundation: he that believeth shall not make haste. \nJudgment also will I lay to the line, and righteousness to the plummet: and the hail shall sweep away the refuge of lies, and the waters shall overflow the hiding place. \nAnd your covenant with death shall be disannulled, and your agreement with hell shall not stand; when the overflowing scourge shall pass through, then ye shall be trodden down by it. \nFrom the time that it goeth forth it shall take you: for morning by morning shall it pass over, by day and by night: and it shall be a vexation only to understand the report. \nFor the bed is shorter than that a man can stretch himself on it: and the covering narrower than that he can wrap himself in it. \nFor the LORD shall rise up as in mount Perazim, he shall be wroth as in the valley of Gibeon, that he may do his work, his strange work; and bring to pass his act, his strange act. \nNow therefore be ye not mockers, lest your bands be made strong: for I have heard from the Lord GOD of hosts a consumption, even determined upon the whole earth. \nGive ye ear, and hear my voice; hearken, and hear my speech. \nDoth the plowman plow all day to sow? doth he open and break the clods of his ground? \nWhen he hath made plain the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and cast in the principal wheat and the appointed barley and the rie in their place? \nFor his God doth instruct him to discretion, and doth teach him. \nFor the fitches are not threshed with a threshing instrument, neither is a cart wheel turned about upon the cummin; but the fitches are beaten out with a staff, and the cummin with a rod. \nBread corn is bruised; because he will not ever be threshing it, nor break it with the wheel of his cart, nor bruise it with his horsemen. \nThis also cometh forth from the LORD of hosts, which is wonderful in counsel, and excellent in working. \nWoe to Ariel, to Ariel, the city where David dwelt! add ye year to year; let them kill sacrifices. \nYet I will distress Ariel, and there shall be heaviness and sorrow: and it shall be unto me as Ariel. \nAnd I will camp against thee round about, and will lay siege against thee with a mount, and I will raise forts against thee. \nAnd thou shalt be brought down, and shalt speak out of the ground, and thy speech shall be low out of the dust, and thy voice shall be, as of one that hath a familiar spirit, out of the ground, and thy speech shall whisper out of the dust. \nMoreover the multitude of thy strangers shall be like small dust, and the multitude of the terrible ones shall be as chaff that passeth away: yea, it shall be at an instant suddenly. \nThou shalt be visited of the LORD of hosts with thunder, and with earthquake, and great noise, with storm and tempest, and the flame of devouring fire. \nAnd the multitude of all the nations that fight against Ariel, even all that fight against her and her munition, and that distress her, shall be as a dream of a night vision. \nIt shall even be as when an hungry man dreameth, and, behold, he eateth; but he awaketh, and his soul is empty: or as when a thirsty man dreameth, and, behold, he drinketh; but he awaketh, and, behold, he is faint, and his soul hath appetite: so shall the multitude of all the nations be, that fight against mount Zion. \nStay yourselves, and wonder; cry ye out, and cry: they are drunken, but not with wine; they stagger, but not with strong drink. \nFor the LORD hath poured out upon you the spirit of deep sleep, and hath closed your eyes: the prophets and your rulers, the seers hath he covered. \nAnd the vision of all is become unto you as the words of a book that is sealed, which men deliver to one that is learned, saying, Read this, I pray thee: and he saith, I cannot; for it is sealed: \nAnd the book is delivered to him that is not learned, saying, Read this, I pray thee: and he saith, I am not learned. \nWherefore the Lord said, Forasmuch as this people draw near me with their mouth, and with their lips do honour me, but have removed their heart far from me, and their fear toward me is taught by the precept of men: \nTherefore, behold, I will proceed to do a marvellous work among this people, even a marvellous work and a wonder: for the wisdom of their wise men shall perish, and the understanding of their prudent men shall be hid. \nWoe unto them that seek deep to hide their counsel from the LORD, and their works are in the dark, and they say, Who seeth us? and who knoweth us? \nSurely your turning of things upside down shall be esteemed as the potter's clay: for shall the work say of him that made it, He made me not? or shall the thing framed say of him that framed it, He had no understanding? \nIs it not yet a very little while, and Lebanon shall be turned into a fruitful field, and the fruitful field shall be esteemed as a forest? \nAnd in that day shall the deaf hear the words of the book, and the eyes of the blind shall see out of obscurity, and out of darkness. \nThe meek also shall increase their joy in the LORD, and the poor among men shall rejoice in the Holy One of Israel. \nFor the terrible one is brought to nought, and the scorner is consumed, and all that watch for iniquity are cut off: \nThat make a man an offender for a word, and lay a snare for him that reproveth in the gate, and turn aside the just for a thing of nought. \nTherefore thus saith the LORD, who redeemed Abraham, concerning the house of Jacob, Jacob shall not now be ashamed, neither shall his face now wax pale. \nBut when he seeth his children, the work of mine hands, in the midst of him, they shall sanctify my name, and sanctify the Holy One of Jacob, and shall fear the God of Israel. \nThey also that erred in spirit shall come to understanding, and they that murmured shall learn doctrine. \nWoe to the rebellious children, saith the LORD, that take counsel, but not of me; and that cover with a covering, but not of my spirit, that they may add sin to sin: \nThat walk to go down into Egypt, and have not asked at my mouth; to strengthen themselves in the strength of Pharaoh, and to trust in the shadow of Egypt! \nTherefore shall the strength of Pharaoh be your shame, and the trust in the shadow of Egypt your confusion. \nFor his princes were at Zoan, and his ambassadors came to Hanes. \nThey were all ashamed of a people that could not profit them, nor be an help nor profit, but a shame, and also a reproach. \nThe burden of the beasts of the south: into the land of trouble and anguish, from whence come the young and old lion, the viper and fiery flying serpent, they will carry their riches upon the shoulders of young asses, and their treasures upon the bunches of camels, to a people that shall not profit them. \nFor the Egyptians shall help in vain, and to no purpose: therefore have I cried concerning this, Their strength is to sit still. \nNow go, write it before them in a table, and note it in a book, that it may be for the time to come for ever and ever: \nThat this is a rebellious people, lying children, children that will not hear the law of the LORD: \nWhich say to the seers, See not; and to the prophets, Prophesy not unto us right things, speak unto us smooth things, prophesy deceits: \nGet you out of the way, turn aside out of the path, cause the Holy One of Israel to cease from before us. \nWherefore thus saith the Holy One of Israel, Because ye despise this word, and trust in oppression and perverseness, and stay thereon: \nTherefore this iniquity shall be to you as a breach ready to fall, swelling out in a high wall, whose breaking cometh suddenly at an instant. \nAnd he shall break it as the breaking of the potters' vessel that is broken in pieces; he shall not spare: so that there shall not be found in the bursting of it a sherd to take fire from the hearth, or to take water withal out of the pit. \nFor thus saith the Lord GOD, the Holy One of Israel; In returning and rest shall ye be saved; in quietness and in confidence shall be your strength: and ye would not. \nBut ye said, No; for we will flee upon horses; therefore shall ye flee: and, We will ride upon the swift; therefore shall they that pursue you be swift. \nOne thousand shall flee at the rebuke of one; at the rebuke of five shall ye flee: till ye be left as a beacon upon the top of a mountain, and as an ensign on an hill. \nAnd therefore will the LORD wait, that he may be gracious unto you, and therefore will he be exalted, that he may have mercy upon you: for the LORD is a God of judgment: blessed are all they that wait for him. \nFor the people shall dwell in Zion at Jerusalem: thou shalt weep no more: he will be very gracious unto thee at the voice of thy cry; when he shall hear it, he will answer thee. \nAnd though the Lord give you the bread of adversity, and the water of affliction, yet shall not thy teachers be removed into a corner any more, but thine eyes shall see thy teachers: \nAnd thine ears shall hear a word behind thee, saying, This is the way, walk ye in it, when ye turn to the right hand, and when ye turn to the left. \nYe shall defile also the covering of thy graven images of silver, and the ornament of thy molten images of gold: thou shalt cast them away as a menstruous cloth; thou shalt say unto it, Get thee hence. \nThen shall he give the rain of thy seed, that thou shalt sow the ground withal; and bread of the increase of the earth, and it shall be fat and plenteous: in that day shall thy cattle feed in large pastures. \nThe oxen likewise and the young asses that ear the ground shall eat clean provender, which hath been winnowed with the shovel and with the fan. \nAnd there shall be upon every high mountain, and upon every high hill, rivers and streams of waters in the day of the great slaughter, when the towers fall. \nMoreover the light of the moon shall be as the light of the sun, and the light of the sun shall be sevenfold, as the light of seven days, in the day that the LORD bindeth up the breach of his people, and healeth the stroke of their wound. \nBehold, the name of the LORD cometh from far, burning with his anger, and the burden thereof is heavy: his lips are full of indignation, and his tongue as a devouring fire: \nAnd his breath, as an overflowing stream, shall reach to the midst of the neck, to sift the nations with the sieve of vanity: and there shall be a bridle in the jaws of the people, causing them to err. \nYe shall have a song, as in the night when a holy solemnity is kept; and gladness of heart, as when one goeth with a pipe to come into the mountain of the LORD, to the mighty One of Israel. \nAnd the LORD shall cause his glorious voice to be heard, and shall shew the lighting down of his arm, with the indignation of his anger, and with the flame of a devouring fire, with scattering, and tempest, and hailstones. \nFor through the voice of the LORD shall the Assyrian be beaten down, which smote with a rod. \nAnd in every place where the grounded staff shall pass, which the LORD shall lay upon him, it shall be with tabrets and harps: and in battles of shaking will he fight with it. \nFor Tophet is ordained of old; yea, for the king it is prepared; he hath made it deep and large: the pile thereof is fire and much wood; the breath of the LORD, like a stream of brimstone, doth kindle it. \nWoe to them that go down to Egypt for help; and stay on horses, and trust in chariots, because they are many; and in horsemen, because they are very strong; but they look not unto the Holy One of Israel, neither seek the LORD! \nYet he also is wise, and will bring evil, and will not call back his words: but will arise against the house of the evildoers, and against the help of them that work iniquity. \nNow the Egyptians are men, and not God; and their horses flesh, and not spirit. When the LORD shall stretch out his hand, both he that helpeth shall fall, and he that is holpen shall fall down, and they all shall fail together. \nFor thus hath the LORD spoken unto me, Like as the lion and the young lion roaring on his prey, when a multitude of shepherds is called forth against him, he will not be afraid of their voice, nor abase himself for the noise of them: so shall the LORD of hosts come down to fight for mount Zion, and for the hill thereof. \nAs birds flying, so will the LORD of hosts defend Jerusalem; defending also he will deliver it; and passing over he will preserve it. \nTurn ye unto him from whom the children of Israel have deeply revolted. \nFor in that day every man shall cast away his idols of silver, and his idols of gold, which your own hands have made unto you for a sin. \nThen shall the Assyrian fall with the sword, not of a mighty man; and the sword, not of a mean man, shall devour him: but he shall flee from the sword, and his young men shall be discomfited. \nAnd he shall pass over to his strong hold for fear, and his princes shall be afraid of the ensign, saith the LORD, whose fire is in Zion, and his furnace in Jerusalem. \nBehold, a king shall reign in righteousness, and princes shall rule in judgment. \nAnd a man shall be as an hiding place from the wind, and a covert from the tempest; as rivers of water in a dry place, as the shadow of a great rock in a weary land. \nAnd the eyes of them that see shall not be dim, and the ears of them that hear shall hearken. \nThe heart also of the rash shall understand knowledge, and the tongue of the stammerers shall be ready to speak plainly. \nThe vile person shall be no more called liberal, nor the churl said to be bountiful. \nFor the vile person will speak villany, and his heart will work iniquity, to practise hypocrisy, and to utter error against the LORD, to make empty the soul of the hungry, and he will cause the drink of the thirsty to fail. \nThe instruments also of the churl are evil: he deviseth wicked devices to destroy the poor with lying words, even when the needy speaketh right. \nBut the liberal deviseth liberal things; and by liberal things shall he stand. \nRise up, ye women that are at ease; hear my voice, ye careless daughters; give ear unto my speech. \nMany days and years shall ye be troubled, ye careless women: for the vintage shall fail, the gathering shall not come. \nTremble, ye women that are at ease; be troubled, ye careless ones: strip you, and make you bare, and gird sackcloth upon your loins. \nThey shall lament for the teats, for the pleasant fields, for the fruitful vine. \nUpon the land of my people shall come up thorns and briers; yea, upon all the houses of joy in the joyous city: \nBecause the palaces shall be forsaken; the multitude of the city shall be left; the forts and towers shall be for dens for ever, a joy of wild asses, a pasture of flocks; \nUntil the spirit be poured upon us from on high, and the wilderness be a fruitful field, and the fruitful field be counted for a forest. \nThen judgment shall dwell in the wilderness, and righteousness remain in the fruitful field. \nAnd the work of righteousness shall be peace; and the effect of righteousness quietness and assurance for ever. \nAnd my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places; \nWhen it shall hail, coming down on the forest; and the city shall be low in a low place. \nBlessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass. \nWoe to thee that spoilest, and thou wast not spoiled; and dealest treacherously, and they dealt not treacherously with thee! when thou shalt cease to spoil, thou shalt be spoiled; and when thou shalt make an end to deal treacherously, they shall deal treacherously with thee. \nO LORD, be gracious unto us; we have waited for thee: be thou their arm every morning, our salvation also in the time of trouble. \nAt the noise of the tumult the people fled; at the lifting up of thyself the nations were scattered. \nAnd your spoil shall be gathered like the gathering of the caterpiller: as the running to and fro of locusts shall he run upon them. \nThe LORD is exalted; for he dwelleth on high: he hath filled Zion with judgment and righteousness. \nAnd wisdom and knowledge shall be the stability of thy times, and strength of salvation: the fear of the LORD is his treasure. \nBehold, their valiant ones shall cry without: the ambassadors of peace shall weep bitterly. \nThe highways lie waste, the wayfaring man ceaseth: he hath broken the covenant, he hath despised the cities, he regardeth no man. \nThe earth mourneth and languisheth: Lebanon is ashamed and hewn down: Sharon is like a wilderness; and Bashan and Carmel shake off their fruits. \nNow will I rise, saith the LORD; now will I be exalted; now will I lift up myself. \nYe shall conceive chaff, ye shall bring forth stubble: your breath, as fire, shall devour you. \nAnd the people shall be as the burnings of lime: as thorns cut up shall they be burned in the fire. \nHear, ye that are far off, what I have done; and, ye that are near, acknowledge my might. \nThe sinners in Zion are afraid; fearfulness hath surprised the hypocrites. Who among us shall dwell with the devouring fire? who among us shall dwell with everlasting burnings? \nHe that walketh righteously, and speaketh uprightly; he that despiseth the gain of oppressions, that shaketh his hands from holding of bribes, that stoppeth his ears from hearing of blood, and shutteth his eyes from seeing evil; \nHe shall dwell on high: his place of defence shall be the munitions of rocks: bread shall be given him; his waters shall be sure. \nThine eyes shall see the king in his beauty: they shall behold the land that is very far off. \nThine heart shall meditate terror. Where is the scribe? where is the receiver? where is he that counted the towers? \nThou shalt not see a fierce people, a people of a deeper speech than thou canst perceive; of a stammering tongue, that thou canst not understand. \nLook upon Zion, the city of our solemnities: thine eyes shall see Jerusalem a quiet habitation, a tabernacle that shall not be taken down; not one of the stakes thereof shall ever be removed, neither shall any of the cords thereof be broken. \nBut there the glorious LORD will be unto us a place of broad rivers and streams; wherein shall go no galley with oars, neither shall gallant ship pass thereby. \nFor the LORD is our judge, the LORD is our lawgiver, the LORD is our king; he will save us. \nThy tacklings are loosed; they could not well strengthen their mast, they could not spread the sail: then is the prey of a great spoil divided; the lame take the prey. \nAnd the inhabitant shall not say, I am sick: the people that dwell therein shall be forgiven their iniquity. \nCome near, ye nations, to hear; and hearken, ye people: let the earth hear, and all that is therein; the world, and all things that come forth of it. \nFor the indignation of the LORD is upon all nations, and his fury upon all their armies: he hath utterly destroyed them, he hath delivered them to the slaughter. \nTheir slain also shall be cast out, and their stink shall come up out of their carcases, and the mountains shall be melted with their blood. \nAnd all the host of heaven shall be dissolved, and the heavens shall be rolled together as a scroll: and all their host shall fall down, as the leaf falleth off from the vine, and as a falling fig from the fig tree. \nFor my sword shall be bathed in heaven: behold, it shall come down upon Idumea, and upon the people of my curse, to judgment. \nThe sword of the LORD is filled with blood, it is made fat with fatness, and with the blood of lambs and goats, with the fat of the kidneys of rams: for the LORD hath a sacrifice in Bozrah, and a great slaughter in the land of Idumea. \nAnd the unicorns shall come down with them, and the bullocks with the bulls; and their land shall be soaked with blood, and their dust made fat with fatness. \nFor it is the day of the LORD's vengeance, and the year of recompences for the controversy of Zion. \nAnd the streams thereof shall be turned into pitch, and the dust thereof into brimstone, and the land thereof shall become burning pitch. \nIt shall not be quenched night nor day; the smoke thereof shall go up for ever: from generation to generation it shall lie waste; none shall pass through it for ever and ever. \nBut the cormorant and the bittern shall possess it; the owl also and the raven shall dwell in it: and he shall stretch out upon it the line of confusion, and the stones of emptiness. \nThey shall call the nobles thereof to the kingdom, but none shall be there, and all her princes shall be nothing. \nAnd thorns shall come up in her palaces, nettles and brambles in the fortresses thereof: and it shall be an habitation of dragons, and a court for owls. \nThe wild beasts of the desert shall also meet with the wild beasts of the island, and the satyr shall cry to his fellow; the screech owl also shall rest there, and find for herself a place of rest. \nThere shall the great owl make her nest, and lay, and hatch, and gather under her shadow: there shall the vultures also be gathered, every one with her mate. \nSeek ye out of the book of the LORD, and read: no one of these shall fail, none shall want her mate: for my mouth it hath commanded, and his spirit it hath gathered them. \nAnd he hath cast the lot for them, and his hand hath divided it unto them by line: they shall possess it for ever, from generation to generation shall they dwell therein. \nThe wilderness and the solitary place shall be glad for them; and the desert shall rejoice, and blossom as the rose. \nIt shall blossom abundantly, and rejoice even with joy and singing: the glory of Lebanon shall be given unto it, the excellency of Carmel and Sharon, they shall see the glory of the LORD, and the excellency of our God. \nStrengthen ye the weak hands, and confirm the feeble knees. \nSay to them that are of a fearful heart, Be strong, fear not: behold, your God will come with vengeance, even God with a recompence; he will come and save you. \nThen the eyes of the blind shall be opened, and the ears of the deaf shall be unstopped. \nThen shall the lame man leap as an hart, and the tongue of the dumb sing: for in the wilderness shall waters break out, and streams in the desert. \nAnd the parched ground shall become a pool, and the thirsty land springs of water: in the habitation of dragons, where each lay, shall be grass with reeds and rushes. \nAnd an highway shall be there, and a way, and it shall be called The way of holiness; the unclean shall not pass over it; but it shall be for those: the wayfaring men, though fools, shall not err therein. \nNo lion shall be there, nor any ravenous beast shall go up thereon, it shall not be found there; but the redeemed shall walk there: \nAnd the ransomed of the LORD shall return, and come to Zion with songs and everlasting joy upon their heads: they shall obtain joy and gladness, and sorrow and sighing shall flee away. \nNow it came to pass in the fourteenth year of king Hezekiah, that Sennacherib king of Assyria came up against all the defenced cities of Judah, and took them. \nAnd the king of Assyria sent Rabshakeh from Lachish to Jerusalem unto king Hezekiah with a great army. And he stood by the conduit of the upper pool in the highway of the fuller's field. \nThen came forth unto him Eliakim, Hilkiah's son, which was over the house, and Shebna the scribe, and Joah, Asaph's son, the recorder. \nAnd Rabshakeh said unto them, Say ye now to Hezekiah, Thus saith the great king, the king of Assyria, What confidence is this wherein thou trustest? \nI say, sayest thou, (but they are but vain words) I have counsel and strength for war: now on whom dost thou trust, that thou rebellest against me? \nLo, thou trustest in the staff of this broken reed, on Egypt; whereon if a man lean, it will go into his hand, and pierce it: so is Pharaoh king of Egypt to all that trust in him. \nBut if thou say to me, We trust in the LORD our God: is it not he, whose high places and whose altars Hezekiah hath taken away, and said to Judah and to Jerusalem, Ye shall worship before this altar? \nNow therefore give pledges, I pray thee, to my master the king of Assyria, and I will give thee two thousand horses, if thou be able on thy part to set riders upon them. \nHow then wilt thou turn away the face of one captain of the least of my master's servants, and put thy trust on Egypt for chariots and for horsemen? \nAnd am I now come up without the LORD against this land to destroy it? the LORD said unto me, Go up against this land, and destroy it. \nThen said Eliakim and Shebna and Joah unto Rabshakeh, Speak, I pray thee, unto thy servants in the Syrian language; for we understand it: and speak not to us in the Jews' language, in the ears of the people that are on the wall. \nBut Rabshakeh said, Hath my master sent me to thy master and to thee to speak these words? hath he not sent me to the men that sit upon the wall, that they may eat their own dung, and drink their own piss with you? \nThen Rabshakeh stood, and cried with a loud voice in the Jews' language, and said, Hear ye the words of the great king, the king of Assyria. \nThus saith the king, Let not Hezekiah deceive you: for he shall not be able to deliver you. \nNeither let Hezekiah make you trust in the LORD, saying, The LORD will surely deliver us: this city shall not be delivered into the hand of the king of Assyria. \nHearken not to Hezekiah: for thus saith the king of Assyria, Make an agreement with me by a present, and come out to me: and eat ye every one of his vine, and every one of his fig tree, and drink ye every one the waters of his own cistern; \nUntil I come and take you away to a land like your own land, a land of corn and wine, a land of bread and vineyards. \nBeware lest Hezekiah persuade you, saying, the LORD will deliver us. Hath any of the gods of the nations delivered his land out of the hand of the king of Assyria? \nWhere are the gods of Hamath and Arphad? where are the gods of Sepharvaim? and have they delivered Samaria out of my hand? \nWho are they among all the gods of these lands, that have delivered their land out of my hand, that the LORD should deliver Jerusalem out of my hand? \nBut they held their peace, and answered him not a word: for the king's commandment was, saying, Answer him not. \nThen came Eliakim, the son of Hilkiah, that was over the household, and Shebna the scribe, and Joah, the son of Asaph, the recorder, to Hezekiah with their clothes rent, and told him the words of Rabshakeh. \nAnd it came to pass, when king Hezekiah heard it, that he rent his clothes, and covered himself with sackcloth, and went into the house of the LORD. \nAnd he sent Eliakim, who was over the household, and Shebna the scribe, and the elders of the priests covered with sackcloth, unto Isaiah the prophet the son of Amoz. \nAnd they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and of blasphemy: for the children are come to the birth, and there is not strength to bring forth. \nIt may be the LORD thy God will hear the words of Rabshakeh, whom the king of Assyria his master hath sent to reproach the living God, and will reprove the words which the LORD thy God hath heard: wherefore lift up thy prayer for the remnant that is left. \nSo the servants of king Hezekiah came to Isaiah. \nAnd Isaiah said unto them, Thus shall ye say unto your master, Thus saith the LORD, Be not afraid of the words that thou hast heard, wherewith the servants of the king of Assyria have blasphemed me. \nBehold, I will send a blast upon him, and he shall hear a rumour, and return to his own land; and I will cause him to fall by the sword in his own land. \nSo Rabshakeh returned, and found the king of Assyria warring against Libnah: for he had heard that he was departed from Lachish. \nAnd he heard say concerning Tirhakah king of Ethiopia, He is come forth to make war with thee. And when he heard it, he sent messengers to Hezekiah, saying, \nThus shall ye speak to Hezekiah king of Judah, saying, Let not thy God, in whom thou trustest, deceive thee, saying, Jerusalem shall not be given into the hand of the king of Assyria. \nBehold, thou hast heard what the kings of Assyria have done to all lands by destroying them utterly; and shalt thou be delivered? \nHave the gods of the nations delivered them which my fathers have destroyed, as Gozan, and Haran, and Rezeph, and the children of Eden which were in Telassar? \nWhere is the king of Hamath, and the king of Arphad, and the king of the city of Sepharvaim, Hena, and Ivah? \nAnd Hezekiah received the letter from the hand of the messengers, and read it: and Hezekiah went up unto the house of the LORD, and spread it before the LORD. \nAnd Hezekiah prayed unto the LORD, saying, \nO LORD of hosts, God of Israel, that dwellest between the cherubims, thou art the God, even thou alone, of all the kingdoms of the earth: thou hast made heaven and earth. \nIncline thine ear, O LORD, and hear; open thine eyes, O LORD, and see: and hear all the words of Sennacherib, which hath sent to reproach the living God. \nOf a truth, LORD, the kings of Assyria have laid waste all the nations, and their countries, \nAnd have cast their gods into the fire: for they were no gods, but the work of men's hands, wood and stone: therefore they have destroyed them. \nNow therefore, O LORD our God, save us from his hand, that all the kingdoms of the earth may know that thou art the LORD, even thou only. \nThen Isaiah the son of Amoz sent unto Hezekiah, saying, Thus saith the LORD God of Israel, Whereas thou hast prayed to me against Sennacherib king of Assyria: \nThis is the word which the LORD hath spoken concerning him; The virgin, the daughter of Zion, hath despised thee, and laughed thee to scorn; the daughter of Jerusalem hath shaken her head at thee. \nWhom hast thou reproached and blasphemed? and against whom hast thou exalted thy voice, and lifted up thine eyes on high? even against the Holy One of Israel. \nBy thy servants hast thou reproached the Lord, and hast said, By the multitude of my chariots am I come up to the height of the mountains, to the sides of Lebanon; and I will cut down the tall cedars thereof, and the choice fir trees thereof: and I will enter into the height of his border, and the forest of his Carmel. \nI have digged, and drunk water; and with the sole of my feet have I dried up all the rivers of the besieged places. \nHast thou not heard long ago, how I have done it; and of ancient times, that I have formed it? now have I brought it to pass, that thou shouldest be to lay waste defenced cities into ruinous heaps. \nTherefore their inhabitants were of small power, they were dismayed and confounded: they were as the grass of the field, and as the green herb, as the grass on the housetops, and as corn blasted before it be grown up. \nBut I know thy abode, and thy going out, and thy coming in, and thy rage against me. \nBecause thy rage against me, and thy tumult, is come up into mine ears, therefore will I put my hook in thy nose, and my bridle in thy lips, and I will turn thee back by the way by which thou camest. \nAnd this shall be a sign unto thee, Ye shall eat this year such as groweth of itself; and the second year that which springeth of the same: and in the third year sow ye, and reap, and plant vineyards, and eat the fruit thereof. \nAnd the remnant that is escaped of the house of Judah shall again take root downward, and bear fruit upward: \nFor out of Jerusalem shall go forth a remnant, and they that escape out of mount Zion: the zeal of the LORD of hosts shall do this. \nTherefore thus saith the LORD concerning the king of Assyria, He shall not come into this city, nor shoot an arrow there, nor come before it with shields, nor cast a bank against it. \nBy the way that he came, by the same shall he return, and shall not come into this city, saith the LORD. \nFor I will defend this city to save it for mine own sake, and for my servant David's sake. \nThen the angel of the LORD went forth, and smote in the camp of the Assyrians a hundred and fourscore and five thousand: and when they arose early in the morning, behold, they were all dead corpses. \nSo Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh. \nAnd it came to pass, as he was worshipping in the house of Nisroch his god, that Adrammelech and Sharezer his sons smote him with the sword; and they escaped into the land of Armenia: and Esarhaddon his son reigned in his stead. \nIn those days was Hezekiah sick unto death. And Isaiah the prophet the son of Amoz came unto him, and said unto him, Thus saith the LORD, Set thine house in order: for thou shalt die, and not live. \nThen Hezekiah turned his face toward the wall, and prayed unto the LORD, \nAnd said, Remember now, O LORD, I beseech thee, how I have walked before thee in truth and with a perfect heart, and have done that which is good in thy sight. And Hezekiah wept sore. \nThen came the word of the LORD to Isaiah, saying, \nGo, and say to Hezekiah, Thus saith the LORD, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will add unto thy days fifteen years. \nAnd I will deliver thee and this city out of the hand of the king of Assyria: and I will defend this city. \nAnd this shall be a sign unto thee from the LORD, that the LORD will do this thing that he hath spoken; \nBehold, I will bring again the shadow of the degrees, which is gone down in the sun dial of Ahaz, ten degrees backward. So the sun returned ten degrees, by which degrees it was gone down. \nThe writing of Hezekiah king of Judah, when he had been sick, and was recovered of his sickness: \nI said in the cutting off of my days, I shall go to the gates of the grave: I am deprived of the residue of my years. \nI said, I shall not see the LORD, even the LORD, in the land of the living: I shall behold man no more with the inhabitants of the world. \nMine age is departed, and is removed from me as a shepherd's tent: I have cut off like a weaver my life: he will cut me off with pining sickness: from day even to night wilt thou make an end of me. \nI reckoned till morning, that, as a lion, so will he break all my bones: from day even to night wilt thou make an end of me. \nLike a crane or a swallow, so did I chatter: I did mourn as a dove: mine eyes fail with looking upward: O LORD, I am oppressed; undertake for me. \nWhat shall I say? he hath both spoken unto me, and himself hath done it: I shall go softly all my years in the bitterness of my soul. \nO LORD, by these things men live, and in all these things is the life of my spirit: so wilt thou recover me, and make me to live. \nBehold, for peace I had great bitterness: but thou hast in love to my soul delivered it from the pit of corruption: for thou hast cast all my sins behind thy back. \nFor the grave cannot praise thee, death can not celebrate thee: they that go down into the pit cannot hope for thy truth. \nThe living, the living, he shall praise thee, as I do this day: the father to the children shall make known thy truth. \nThe LORD was ready to save me: therefore we will sing my songs to the stringed instruments all the days of our life in the house of the LORD. \nFor Isaiah had said, Let them take a lump of figs, and lay it for a plaister upon the boil, and he shall recover. \nHezekiah also had said, What is the sign that I shall go up to the house of the LORD? \nAt that time Merodachbaladan, the son of Baladan, king of Babylon, sent letters and a present to Hezekiah: for he had heard that he had been sick, and was recovered. \nAnd Hezekiah was glad of them, and shewed them the house of his precious things, the silver, and the gold, and the spices, and the precious ointment, and all the house of his armour, and all that was found in his treasures: there was nothing in his house, nor in all his dominion, that Hezekiah shewed them not. \nThen came Isaiah the prophet unto king Hezekiah, and said unto him, What said these men? and from whence came they unto thee? And Hezekiah said, They are come from a far country unto me, even from Babylon. \nThen said he, What have they seen in thine house? And Hezekiah answered, All that is in mine house have they seen: there is nothing among my treasures that I have not shewed them. \nThen said Isaiah to Hezekiah, Hear the word of the LORD of hosts: \nBehold, the days come, that all that is in thine house, and that which thy fathers have laid up in store until this day, shall be carried to Babylon: nothing shall be left, saith the LORD. \nAnd of thy sons that shall issue from thee, which thou shalt beget, shall they take away; and they shall be eunuchs in the palace of the king of Babylon. \nThen said Hezekiah to Isaiah, Good is the word of the LORD which thou hast spoken. He said moreover, For there shall be peace and truth in my days. \nComfort ye, comfort ye my people, saith your God. \nSpeak ye comfortably to Jerusalem, and cry unto her, that her warfare is accomplished, that her iniquity is pardoned: for she hath received of the LORD's hand double for all her sins. \nThe voice of him that crieth in the wilderness, Prepare ye the way of the LORD, make straight in the desert a highway for our God. \nEvery valley shall be exalted, and every mountain and hill shall be made low: and the crooked shall be made straight, and the rough places plain: \nAnd the glory of the LORD shall be revealed, and all flesh shall see it together: for the mouth of the LORD hath spoken it. \nThe voice said, Cry. And he said, What shall I cry? All flesh is grass, and all the goodliness thereof is as the flower of the field: \nThe grass withereth, the flower fadeth: because the spirit of the LORD bloweth upon it: surely the people is grass. \nThe grass withereth, the flower fadeth: but the word of our God shall stand for ever. \nO Zion, that bringest good tidings, get thee up into the high mountain; O Jerusalem, that bringest good tidings, lift up thy voice with strength; lift it up, be not afraid; say unto the cities of Judah, Behold your God! \nBehold, the Lord GOD will come with strong hand, and his arm shall rule for him: behold, his reward is with him, and his work before him. \nHe shall feed his flock like a shepherd: he shall gather the lambs with his arm, and carry them in his bosom, and shall gently lead those that are with young. \nWho hath measured the waters in the hollow of his hand, and meted out heaven with the span, and comprehended the dust of the earth in a measure, and weighed the mountains in scales, and the hills in a balance? \nWho hath directed the Spirit of the LORD, or being his counsellor hath taught him? \nWith whom took he counsel, and who instructed him, and taught him in the path of judgment, and taught him knowledge, and shewed to him the way of understanding? \nBehold, the nations are as a drop of a bucket, and are counted as the small dust of the balance: behold, he taketh up the isles as a very little thing. \nAnd Lebanon is not sufficient to burn, nor the beasts thereof sufficient for a burnt offering. \nAll nations before him are as nothing; and they are counted to him less than nothing, and vanity. \nTo whom then will ye liken God? or what likeness will ye compare unto him? \nThe workman melteth a graven image, and the goldsmith spreadeth it over with gold, and casteth silver chains. \nHe that is so impoverished that he hath no oblation chooseth a tree that will not rot; he seeketh unto him a cunning workman to prepare a graven image, that shall not be moved. \nHave ye not known? have ye not heard? hath it not been told you from the beginning? have ye not understood from the foundations of the earth? \nIt is he that sitteth upon the circle of the earth, and the inhabitants thereof are as grasshoppers; that stretcheth out the heavens as a curtain, and spreadeth them out as a tent to dwell in: \nThat bringeth the princes to nothing; he maketh the judges of the earth as vanity. \nYea, they shall not be planted; yea, they shall not be sown: yea, their stock shall not take root in the earth: and he shall also blow upon them, and they shall wither, and the whirlwind shall take them away as stubble. \nTo whom then will ye liken me, or shall I be equal? saith the Holy One. \nLift up your eyes on high, and behold who hath created these things, that bringeth out their host by number: he calleth them all by names by the greatness of his might, for that he is strong in power; not one faileth. \nWhy sayest thou, O Jacob, and speakest, O Israel, My way is hid from the LORD, and my judgment is passed over from my God? \nHast thou not known? hast thou not heard, that the everlasting God, the LORD, the Creator of the ends of the earth, fainteth not, neither is weary? there is no searching of his understanding. \nHe giveth power to the faint; and to them that have no might he increaseth strength. \nEven the youths shall faint and be weary, and the young men shall utterly fall: \nBut they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint. \nKeep silence before me, O islands; and let the people renew their strength: let them come near; then let them speak: let us come near together to judgment. \nWho raised up the righteous man from the east, called him to his foot, gave the nations before him, and made him rule over kings? he gave them as the dust to his sword, and as driven stubble to his bow. \nHe pursued them, and passed safely; even by the way that he had not gone with his feet. \nWho hath wrought and done it, calling the generations from the beginning? I the LORD, the first, and with the last; I am he. \nThe isles saw it, and feared; the ends of the earth were afraid, drew near, and came. \nThey helped every one his neighbour; and every one said to his brother, Be of good courage. \nSo the carpenter encouraged the goldsmith, and he that smootheth with the hammer him that smote the anvil, saying, It is ready for the sodering: and he fastened it with nails, that it should not be moved. \nBut thou, Israel, art my servant, Jacob whom I have chosen, the seed of Abraham my friend. \nThou whom I have taken from the ends of the earth, and called thee from the chief men thereof, and said unto thee, Thou art my servant; I have chosen thee, and not cast thee away. \nFear thou not; for I am with thee: be not dismayed; for I am thy God: I will strengthen thee; yea, I will help thee; yea, I will uphold thee with the right hand of my righteousness. \nBehold, all they that were incensed against thee shall be ashamed and confounded: they shall be as nothing; and they that strive with thee shall perish. \nThou shalt seek them, and shalt not find them, even them that contended with thee: they that war against thee shall be as nothing, and as a thing of nought. \nFor I the LORD thy God will hold thy right hand, saying unto thee, Fear not; I will help thee. \nFear not, thou worm Jacob, and ye men of Israel; I will help thee, saith the LORD, and thy redeemer, the Holy One of Israel. \nBehold, I will make thee a new sharp threshing instrument having teeth: thou shalt thresh the mountains, and beat them small, and shalt make the hills as chaff. \nThou shalt fan them, and the wind shall carry them away, and the whirlwind shall scatter them: and thou shalt rejoice in the LORD, and shalt glory in the Holy One of Israel. \nWhen the poor and needy seek water, and there is none, and their tongue faileth for thirst, I the LORD will hear them, I the God of Israel will not forsake them. \nI will open rivers in high places, and fountains in the midst of the valleys: I will make the wilderness a pool of water, and the dry land springs of water. \nI will plant in the wilderness the cedar, the shittah tree, and the myrtle, and the oil tree; I will set in the desert the fir tree, and the pine, and the box tree together: \nThat they may see, and know, and consider, and understand together, that the hand of the LORD hath done this, and the Holy One of Israel hath created it. \nProduce your cause, saith the LORD; bring forth your strong reasons, saith the King of Jacob. \nLet them bring them forth, and shew us what shall happen: let them shew the former things, what they be, that we may consider them, and know the latter end of them; or declare us things for to come. \nShew the things that are to come hereafter, that we may know that ye are gods: yea, do good, or do evil, that we may be dismayed, and behold it together. \nBehold, ye are of nothing, and your work of nought: an abomination is he that chooseth you. \nI have raised up one from the north, and he shall come: from the rising of the sun shall he call upon my name: and he shall come upon princes as upon morter, and as the potter treadeth clay. \nWho hath declared from the beginning, that we may know? and beforetime, that we may say, He is righteous? yea, there is none that sheweth, yea, there is none that declareth, yea, there is none that heareth your words. \nThe first shall say to Zion, Behold, behold them: and I will give to Jerusalem one that bringeth good tidings. \nFor I beheld, and there was no man; even among them, and there was no counsellor, that, when I asked of them, could answer a word. \nBehold, they are all vanity; their works are nothing: their molten images are wind and confusion. \nBehold my servant, whom I uphold; mine elect, in whom my soul delighteth; I have put my spirit upon him: he shall bring forth judgment to the Gentiles. \nHe shall not cry, nor lift up, nor cause his voice to be heard in the street. \nA bruised reed shall he not break, and the smoking flax shall he not quench: he shall bring forth judgment unto truth. \nHe shall not fail nor be discouraged, till he have set judgment in the earth: and the isles shall wait for his law. \nThus saith God the LORD, he that created the heavens, and stretched them out; he that spread forth the earth, and that which cometh out of it; he that giveth breath unto the people upon it, and spirit to them that walk therein: \nI the LORD have called thee in righteousness, and will hold thine hand, and will keep thee, and give thee for a covenant of the people, for a light of the Gentiles; \nTo open the blind eyes, to bring out the prisoners from the prison, and them that sit in darkness out of the prison house. \nI am the LORD: that is my name: and my glory will I not give to another, neither my praise to graven images. \nBehold, the former things are come to pass, and new things do I declare: before they spring forth I tell you of them. \nSing unto the LORD a new song, and his praise from the end of the earth, ye that go down to the sea, and all that is therein; the isles, and the inhabitants thereof. \nLet the wilderness and the cities thereof lift up their voice, the villages that Kedar doth inhabit: let the inhabitants of the rock sing, let them shout from the top of the mountains. \nLet them give glory unto the LORD, and declare his praise in the islands. \nThe LORD shall go forth as a mighty man, he shall stir up jealousy like a man of war: he shall cry, yea, roar; he shall prevail against his enemies. \nI have long time holden my peace; I have been still, and refrained myself: now will I cry like a travailing woman; I will destroy and devour at once. \nI will make waste mountains and hills, and dry up all their herbs; and I will make the rivers islands, and I will dry up the pools. \nAnd I will bring the blind by a way that they knew not; I will lead them in paths that they have not known: I will make darkness light before them, and crooked things straight. These things will I do unto them, and not forsake them. \nThey shall be turned back, they shall be greatly ashamed, that trust in graven images, that say to the molten images, Ye are our gods. \nHear, ye deaf; and look, ye blind, that ye may see. \nWho is blind, but my servant? or deaf, as my messenger that I sent? who is blind as he that is perfect, and blind as the LORD's servant? \nSeeing many things, but thou observest not; opening the ears, but he heareth not. \nThe LORD is well pleased for his righteousness' sake; he will magnify the law, and make it honourable. \nBut this is a people robbed and spoiled; they are all of them snared in holes, and they are hid in prison houses: they are for a prey, and none delivereth; for a spoil, and none saith, Restore. \nWho among you will give ear to this? who will hearken and hear for the time to come? \nWho gave Jacob for a spoil, and Israel to the robbers? did not the LORD, he against whom we have sinned? for they would not walk in his ways, neither were they obedient unto his law. \nTherefore he hath poured upon him the fury of his anger, and the strength of battle: and it hath set him on fire round about, yet he knew not; and it burned him, yet he laid it not to heart. \nBut now thus saith the LORD that created thee, O Jacob, and he that formed thee, O Israel, Fear not: for I have redeemed thee, I have called thee by thy name; thou art mine. \nWhen thou passest through the waters, I will be with thee; and through the rivers, they shall not overflow thee: when thou walkest through the fire, thou shalt not be burned; neither shall the flame kindle upon thee. \nFor I am the LORD thy God, the Holy One of Israel, thy Saviour: I gave Egypt for thy ransom, Ethiopia and Seba for thee. \nSince thou wast precious in my sight, thou hast been honourable, and I have loved thee: therefore will I give men for thee, and people for thy life. \nFear not: for I am with thee: I will bring thy seed from the east, and gather thee from the west; \nI will say to the north, Give up; and to the south, Keep not back: bring my sons from far, and my daughters from the ends of the earth; \nEven every one that is called by my name: for I have created him for my glory, I have formed him; yea, I have made him. \nBring forth the blind people that have eyes, and the deaf that have ears. \nLet all the nations be gathered together, and let the people be assembled: who among them can declare this, and shew us former things? let them bring forth their witnesses, that they may be justified: or let them hear, and say, It is truth. \nYe are my witnesses, saith the LORD, and my servant whom I have chosen: that ye may know and believe me, and understand that I am he: before me there was no God formed, neither shall there be after me. \nI, even I, am the LORD; and beside me there is no saviour. \nI have declared, and have saved, and I have shewed, when there was no strange god among you: therefore ye are my witnesses, saith the LORD, that I am God. \nYea, before the day was I am he; and there is none that can deliver out of my hand: I will work, and who shall let it? \nThus saith the LORD, your redeemer, the Holy One of Israel; For your sake I have sent to Babylon, and have brought down all their nobles, and the Chaldeans, whose cry is in the ships. \nI am the LORD, your Holy One, the creator of Israel, your King. \nThus saith the LORD, which maketh a way in the sea, and a path in the mighty waters; \nWhich bringeth forth the chariot and horse, the army and the power; they shall lie down together, they shall not rise: they are extinct, they are quenched as tow. \nRemember ye not the former things, neither consider the things of old. \nBehold, I will do a new thing; now it shall spring forth; shall ye not know it? I will even make a way in the wilderness, and rivers in the desert. \nThe beast of the field shall honour me, the dragons and the owls: because I give waters in the wilderness, and rivers in the desert, to give drink to my people, my chosen. \nThis people have I formed for myself; they shall shew forth my praise. \nBut thou hast not called upon me, O Jacob; but thou hast been weary of me, O Israel. \nThou hast not brought me the small cattle of thy burnt offerings; neither hast thou honoured me with thy sacrifices. I have not caused thee to serve with an offering, nor wearied thee with incense. \nThou hast bought me no sweet cane with money, neither hast thou filled me with the fat of thy sacrifices: but thou hast made me to serve with thy sins, thou hast wearied me with thine iniquities. \nI, even I, am he that blotteth out thy transgressions for mine own sake, and will not remember thy sins. \nPut me in remembrance: let us plead together: declare thou, that thou mayest be justified. \nThy first father hath sinned, and thy teachers have transgressed against me. \nTherefore I have profaned the princes of the sanctuary, and have given Jacob to the curse, and Israel to reproaches. \nYet now hear, O Jacob my servant; and Israel, whom I have chosen: \nThus saith the LORD that made thee, and formed thee from the womb, which will help thee; Fear not, O Jacob, my servant; and thou, Jesurun, whom I have chosen. \nFor I will pour water upon him that is thirsty, and floods upon the dry ground: I will pour my spirit upon thy seed, and my blessing upon thine offspring: \nAnd they shall spring up as among the grass, as willows by the water courses. \nOne shall say, I am the LORD's; and another shall call himself by the name of Jacob; and another shall subscribe with his hand unto the LORD, and surname himself by the name of Israel. \nThus saith the LORD the King of Israel, and his redeemer the LORD of hosts; I am the first, and I am the last; and beside me there is no God. \nAnd who, as I, shall call, and shall declare it, and set it in order for me, since I appointed the ancient people? and the things that are coming, and shall come, let them shew unto them. \nFear ye not, neither be afraid: have not I told thee from that time, and have declared it? ye are even my witnesses. Is there a God beside me? yea, there is no God; I know not any. \nThey that make a graven image are all of them vanity; and their delectable things shall not profit; and they are their own witnesses; they see not, nor know; that they may be ashamed. \nWho hath formed a god, or molten a graven image that is profitable for nothing? \nBehold, all his fellows shall be ashamed: and the workmen, they are of men: let them all be gathered together, let them stand up; yet they shall fear, and they shall be ashamed together. \nThe smith with the tongs both worketh in the coals, and fashioneth it with hammers, and worketh it with the strength of his arms: yea, he is hungry, and his strength faileth: he drinketh no water, and is faint. \nThe carpenter stretcheth out his rule; he marketh it out with a line; he fitteth it with planes, and he marketh it out with the compass, and maketh it after the figure of a man, according to the beauty of a man; that it may remain in the house. \nHe heweth him down cedars, and taketh the cypress and the oak, which he strengtheneth for himself among the trees of the forest: he planteth an ash, and the rain doth nourish it. \nThen shall it be for a man to burn: for he will take thereof, and warm himself; yea, he kindleth it, and baketh bread; yea, he maketh a god, and worshippeth it; he maketh it a graven image, and falleth down thereto. \nHe burneth part thereof in the fire; with part thereof he eateth flesh; he roasteth roast, and is satisfied: yea, he warmeth himself, and saith, Aha, I am warm, I have seen the fire: \nAnd the residue thereof he maketh a god, even his graven image: he falleth down unto it, and worshippeth it, and prayeth unto it, and saith, Deliver me; for thou art my god. \nThey have not known nor understood: for he hath shut their eyes, that they cannot see; and their hearts, that they cannot understand. \nAnd none considereth in his heart, neither is there knowledge nor understanding to say, I have burned part of it in the fire; yea, also I have baked bread upon the coals thereof; I have roasted flesh, and eaten it: and shall I make the residue thereof an abomination? shall I fall down to the stock of a tree? \nHe feedeth on ashes: a deceived heart hath turned him aside, that he cannot deliver his soul, nor say, Is there not a lie in my right hand? \nRemember these, O Jacob and Israel; for thou art my servant: I have formed thee; thou art my servant: O Israel, thou shalt not be forgotten of me. \nI have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee. \nSing, O ye heavens; for the LORD hath done it: shout, ye lower parts of the earth: break forth into singing, ye mountains, O forest, and every tree therein: for the LORD hath redeemed Jacob, and glorified himself in Israel. \nThus saith the LORD, thy redeemer, and he that formed thee from the womb, I am the LORD that maketh all things; that stretcheth forth the heavens alone; that spreadeth abroad the earth by myself; \nThat frustrateth the tokens of the liars, and maketh diviners mad; that turneth wise men backward, and maketh their knowledge foolish; \nThat confirmeth the word of his servant, and performeth the counsel of his messengers; that saith to Jerusalem, Thou shalt be inhabited; and to the cities of Judah, Ye shall be built, and I will raise up the decayed places thereof: \nThat saith to the deep, Be dry, and I will dry up thy rivers: \nThat saith of Cyrus, He is my shepherd, and shall perform all my pleasure: even saying to Jerusalem, Thou shalt be built; and to the temple, Thy foundation shall be laid. \nThus saith the LORD to his anointed, to Cyrus, whose right hand I have holden, to subdue nations before him; and I will loose the loins of kings, to open before him the two leaved gates; and the gates shall not be shut; \nI will go before thee, and make the crooked places straight: I will break in pieces the gates of brass, and cut in sunder the bars of iron: \nAnd I will give thee the treasures of darkness, and hidden riches of secret places, that thou mayest know that I, the LORD, which call thee by thy name, am the God of Israel. \nFor Jacob my servant's sake, and Israel mine elect, I have even called thee by thy name: I have surnamed thee, though thou hast not known me. \nI am the LORD, and there is none else, there is no God beside me: I girded thee, though thou hast not known me: \nThat they may know from the rising of the sun, and from the west, that there is none beside me. I am the LORD, and there is none else. \nI form the light, and create darkness: I make peace, and create evil: I the LORD do all these things. \nDrop down, ye heavens, from above, and let the skies pour down righteousness: let the earth open, and let them bring forth salvation, and let righteousness spring up together; I the LORD have created it. \nWoe unto him that striveth with his Maker! Let the potsherd strive with the potsherds of the earth. Shall the clay say to him that fashioneth it, What makest thou? or thy work, He hath no hands? \nWoe unto him that saith unto his father, What begettest thou? or to the woman, What hast thou brought forth? \nThus saith the LORD, the Holy One of Israel, and his Maker, Ask me of things to come concerning my sons, and concerning the work of my hands command ye me. \nI have made the earth, and created man upon it: I, even my hands, have stretched out the heavens, and all their host have I commanded. \nI have raised him up in righteousness, and I will direct all his ways: he shall build my city, and he shall let go my captives, not for price nor reward, saith the LORD of hosts. \nThus saith the LORD, The labour of Egypt, and merchandise of Ethiopia and of the Sabeans, men of stature, shall come over unto thee, and they shall be thine: they shall come after thee; in chains they shall come over, and they shall fall down unto thee, they shall make supplication unto thee, saying, Surely God is in thee; and there is none else, there is no God. \nVerily thou art a God that hidest thyself, O God of Israel, the Saviour. \nThey shall be ashamed, and also confounded, all of them: they shall go to confusion together that are makers of idols. \nBut Israel shall be saved in the LORD with an everlasting salvation: ye shall not be ashamed nor confounded world without end. \nFor thus saith the LORD that created the heavens; God himself that formed the earth and made it; he hath established it, he created it not in vain, he formed it to be inhabited: I am the LORD; and there is none else. \nI have not spoken in secret, in a dark place of the earth: I said not unto the seed of Jacob, Seek ye me in vain: I the LORD speak righteousness, I declare things that are right. \nAssemble yourselves and come; draw near together, ye that are escaped of the nations: they have no knowledge that set up the wood of their graven image, and pray unto a god that cannot save. \nTell ye, and bring them near; yea, let them take counsel together: who hath declared this from ancient time? who hath told it from that time? have not I the LORD? and there is no God else beside me; a just God and a Saviour; there is none beside me. \nLook unto me, and be ye saved, all the ends of the earth: for I am God, and there is none else. \nI have sworn by myself, the word is gone out of my mouth in righteousness, and shall not return, That unto me every knee shall bow, every tongue shall swear. \nSurely, shall one say, in the LORD have I righteousness and strength: even to him shall men come; and all that are incensed against him shall be ashamed. \nIn the LORD shall all the seed of Israel be justified, and shall glory. \nBel boweth down, Nebo stoopeth, their idols were upon the beasts, and upon the cattle: your carriages were heavy loaden; they are a burden to the weary beast. \nThey stoop, they bow down together; they could not deliver the burden, but themselves are gone into captivity. \nHearken unto me, O house of Jacob, and all the remnant of the house of Israel, which are borne by me from the belly, which are carried from the womb: \nAnd even to your old age I am he; and even to hoar hairs will I carry you: I have made, and I will bear; even I will carry, and will deliver you. \nTo whom will ye liken me, and make me equal, and compare me, that we may be like? \nThey lavish gold out of the bag, and weigh silver in the balance, and hire a goldsmith; and he maketh it a god: they fall down, yea, they worship. \nThey bear him upon the shoulder, they carry him, and set him in his place, and he standeth; from his place shall he not remove: yea, one shall cry unto him, yet can he not answer, nor save him out of his trouble. \nRemember this, and shew yourselves men: bring it again to mind, O ye transgressors. \nRemember the former things of old: for I am God, and there is none else; I am God, and there is none like me, \nDeclaring the end from the beginning, and from ancient times the things that are not yet done, saying, My counsel shall stand, and I will do all my pleasure: \nCalling a ravenous bird from the east, the man that executeth my counsel from a far country: yea, I have spoken it, I will also bring it to pass; I have purposed it, I will also do it. \nHearken unto me, ye stouthearted, that are far from righteousness: \nI bring near my righteousness; it shall not be far off, and my salvation shall not tarry: and I will place salvation in Zion for Israel my glory. \nCome down, and sit in the dust, O virgin daughter of Babylon, sit on the ground: there is no throne, O daughter of the Chaldeans: for thou shalt no more be called tender and delicate. \nTake the millstones, and grind meal: uncover thy locks, make bare the leg, uncover the thigh, pass over the rivers. \nThy nakedness shall be uncovered, yea, thy shame shall be seen: I will take vengeance, and I will not meet thee as a man. \nAs for our redeemer, the LORD of hosts is his name, the Holy One of Israel. \nSit thou silent, and get thee into darkness, O daughter of the Chaldeans: for thou shalt no more be called, The lady of kingdoms. \nI was wroth with my people, I have polluted mine inheritance, and given them into thine hand: thou didst shew them no mercy; upon the ancient hast thou very heavily laid thy yoke. \nAnd thou saidst, I shall be a lady for ever: so that thou didst not lay these things to thy heart, neither didst remember the latter end of it. \nTherefore hear now this, thou that art given to pleasures, that dwellest carelessly, that sayest in thine heart, I am, and none else beside me; I shall not sit as a widow, neither shall I know the loss of children: \nBut these two things shall come to thee in a moment in one day, the loss of children, and widowhood: they shall come upon thee in their perfection for the multitude of thy sorceries, and for the great abundance of thine enchantments. \nFor thou hast trusted in thy wickedness: thou hast said, None seeth me. Thy wisdom and thy knowledge, it hath perverted thee; and thou hast said in thine heart, I am, and none else beside me. \nTherefore shall evil come upon thee; thou shalt not know from whence it riseth: and mischief shall fall upon thee; thou shalt not be able to put it off: and desolation shall come upon thee suddenly, which thou shalt not know. \nStand now with thine enchantments, and with the multitude of thy sorceries, wherein thou hast laboured from thy youth; if so be thou shalt be able to profit, if so be thou mayest prevail. \nThou art wearied in the multitude of thy counsels. Let now the astrologers, the stargazers, the monthly prognosticators, stand up, and save thee from these things that shall come upon thee. \nBehold, they shall be as stubble; the fire shall burn them; they shall not deliver themselves from the power of the flame: there shall not be a coal to warm at, nor fire to sit before it. \nThus shall they be unto thee with whom thou hast laboured, even thy merchants, from thy youth: they shall wander every one to his quarter; none shall save thee. \nHear ye this, O house of Jacob, which are called by the name of Israel, and are come forth out of the waters of Judah, which swear by the name of the LORD, and make mention of the God of Israel, but not in truth, nor in righteousness. \nFor they call themselves of the holy city, and stay themselves upon the God of Israel; The LORD of hosts is his name. \nI have declared the former things from the beginning; and they went forth out of my mouth, and I shewed them; I did them suddenly, and they came to pass. \nBecause I knew that thou art obstinate, and thy neck is an iron sinew, and thy brow brass; \nI have even from the beginning declared it to thee; before it came to pass I shewed it thee: lest thou shouldest say, Mine idol hath done them, and my graven image, and my molten image, hath commanded them. \nThou hast heard, see all this; and will not ye declare it? I have shewed thee new things from this time, even hidden things, and thou didst not know them. \nThey are created now, and not from the beginning; even before the day when thou heardest them not; lest thou shouldest say, Behold, I knew them. \nYea, thou heardest not; yea, thou knewest not; yea, from that time that thine ear was not opened: for I knew that thou wouldest deal very treacherously, and wast called a transgressor from the womb. \nFor my name's sake will I defer mine anger, and for my praise will I refrain for thee, that I cut thee not off. \nBehold, I have refined thee, but not with silver; I have chosen thee in the furnace of affliction. \nFor mine own sake, even for mine own sake, will I do it: for how should my name be polluted? and I will not give my glory unto another. \nHearken unto me, O Jacob and Israel, my called; I am he; I am the first, I also am the last. \nMine hand also hath laid the foundation of the earth, and my right hand hath spanned the heavens: when I call unto them, they stand up together. \nAll ye, assemble yourselves, and hear; which among them hath declared these things? The LORD hath loved him: he will do his pleasure on Babylon, and his arm shall be on the Chaldeans. \nI, even I, have spoken; yea, I have called him: I have brought him, and he shall make his way prosperous. \nCome ye near unto me, hear ye this; I have not spoken in secret from the beginning; from the time that it was, there am I: and now the Lord GOD, and his Spirit, hath sent me. \nThus saith the LORD, thy Redeemer, the Holy One of Israel; I am the LORD thy God which teacheth thee to profit, which leadeth thee by the way that thou shouldest go. \nO that thou hadst hearkened to my commandments! then had thy peace been as a river, and thy righteousness as the waves of the sea: \nThy seed also had been as the sand, and the offspring of thy bowels like the gravel thereof; his name should not have been cut off nor destroyed from before me. \nGo ye forth of Babylon, flee ye from the Chaldeans, with a voice of singing declare ye, tell this, utter it even to the end of the earth; say ye, The LORD hath redeemed his servant Jacob. \nAnd they thirsted not when he led them through the deserts: he caused the waters to flow out of the rock for them: he clave the rock also, and the waters gushed out. \nThere is no peace, saith the LORD, unto the wicked. \nListen, O isles, unto me; and hearken, ye people, from far; The LORD hath called me from the womb; from the bowels of my mother hath he made mention of my name. \nAnd he hath made my mouth like a sharp sword; in the shadow of his hand hath he hid me, and made me a polished shaft; in his quiver hath he hid me; \nAnd said unto me, Thou art my servant, O Israel, in whom I will be glorified. \nThen I said, I have laboured in vain, I have spent my strength for nought, and in vain: yet surely my judgment is with the LORD, and my work with my God. \nAnd now, saith the LORD that formed me from the womb to be his servant, to bring Jacob again to him, Though Israel be not gathered, yet shall I be glorious in the eyes of the LORD, and my God shall be my strength. \nAnd he said, It is a light thing that thou shouldest be my servant to raise up the tribes of Jacob, and to restore the preserved of Israel: I will also give thee for a light to the Gentiles, that thou mayest be my salvation unto the end of the earth. \nThus saith the LORD, the Redeemer of Israel, and his Holy One, to him whom man despiseth, to him whom the nation abhorreth, to a servant of rulers, Kings shall see and arise, princes also shall worship, because of the LORD that is faithful, and the Holy One of Israel, and he shall choose thee. \nThus saith the LORD, In an acceptable time have I heard thee, and in a day of salvation have I helped thee: and I will preserve thee, and give thee for a covenant of the people, to establish the earth, to cause to inherit the desolate heritages; \nThat thou mayest say to the prisoners, Go forth; to them that are in darkness, Shew yourselves. They shall feed in the ways, and their pastures shall be in all high places. \nThey shall not hunger nor thirst; neither shall the heat nor sun smite them: for he that hath mercy on them shall lead them, even by the springs of water shall he guide them. \nAnd I will make all my mountains a way, and my highways shall be exalted. \nBehold, these shall come from far: and, lo, these from the north and from the west; and these from the land of Sinim. \nSing, O heavens; and be joyful, O earth; and break forth into singing, O mountains: for the LORD hath comforted his people, and will have mercy upon his afflicted. \nBut Zion said, The LORD hath forsaken me, and my Lord hath forgotten me. \nCan a woman forget her sucking child, that she should not have compassion on the son of her womb? yea, they may forget, yet will I not forget thee. \nBehold, I have graven thee upon the palms of my hands; thy walls are continually before me. \nThy children shall make haste; thy destroyers and they that made thee waste shall go forth of thee. \nLift up thine eyes round about, and behold: all these gather themselves together, and come to thee. As I live, saith the LORD, thou shalt surely clothe thee with them all, as with an ornament, and bind them on thee, as a bride doeth. \nFor thy waste and thy desolate places, and the land of thy destruction, shall even now be too narrow by reason of the inhabitants, and they that swallowed thee up shall be far away. \nThe children which thou shalt have, after thou hast lost the other, shall say again in thine ears, The place is too strait for me: give place to me that I may dwell. \nThen shalt thou say in thine heart, Who hath begotten me these, seeing I have lost my children, and am desolate, a captive, and removing to and fro? and who hath brought up these? Behold, I was left alone; these, where had they been? \nThus saith the Lord GOD, Behold, I will lift up mine hand to the Gentiles, and set up my standard to the people: and they shall bring thy sons in their arms, and thy daughters shall be carried upon their shoulders. \nAnd kings shall be thy nursing fathers, and their queens thy nursing mothers: they shall bow down to thee with their face toward the earth, and lick up the dust of thy feet; and thou shalt know that I am the LORD: for they shall not be ashamed that wait for me. \nShall the prey be taken from the mighty, or the lawful captive delivered? \nBut thus saith the LORD, Even the captives of the mighty shall be taken away, and the prey of the terrible shall be delivered: for I will contend with him that contendeth with thee, and I will save thy children. \nAnd I will feed them that oppress thee with their own flesh; and they shall be drunken with their own blood, as with sweet wine: and all flesh shall know that I the LORD am thy Saviour and thy Redeemer, the mighty One of Jacob. \nThus saith the LORD, Where is the bill of your mother's divorcement, whom I have put away? or which of my creditors is it to whom I have sold you? Behold, for your iniquities have ye sold yourselves, and for your transgressions is your mother put away. \nWherefore, when I came, was there no man? when I called, was there none to answer? Is my hand shortened at all, that it cannot redeem? or have I no power to deliver? behold, at my rebuke I dry up the sea, I make the rivers a wilderness: their fish stinketh, because there is no water, and dieth for thirst. \nI clothe the heavens with blackness, and I make sackcloth their covering. \nThe Lord GOD hath given me the tongue of the learned, that I should know how to speak a word in season to him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as the learned. \nThe Lord GOD hath opened mine ear, and I was not rebellious, neither turned away back. \nI gave my back to the smiters, and my cheeks to them that plucked off the hair: I hid not my face from shame and spitting. \nFor the Lord GOD will help me; therefore shall I not be confounded: therefore have I set my face like a flint, and I know that I shall not be ashamed. \nHe is near that justifieth me; who will contend with me? let us stand together: who is mine adversary? let him come near to me. \nBehold, the Lord GOD will help me; who is he that shall condemn me? lo, they all shall wax old as a garment; the moth shall eat them up. \nWho is among you that feareth the LORD, that obeyeth the voice of his servant, that walketh in darkness, and hath no light? let him trust in the name of the LORD, and stay upon his God. \nBehold, all ye that kindle a fire, that compass yourselves about with sparks: walk in the light of your fire, and in the sparks that ye have kindled. This shall ye have of mine hand; ye shall lie down in sorrow. \nHearken to me, ye that follow after righteousness, ye that seek the LORD: look unto the rock whence ye are hewn, and to the hole of the pit whence ye are digged. \nLook unto Abraham your father, and unto Sarah that bare you: for I called him alone, and blessed him, and increased him. \nFor the LORD shall comfort Zion: he will comfort all her waste places; and he will make her wilderness like Eden, and her desert like the garden of the LORD; joy and gladness shall be found therein, thanksgiving, and the voice of melody. \nHearken unto me, my people; and give ear unto me, O my nation: for a law shall proceed from me, and I will make my judgment to rest for a light of the people. \nMy righteousness is near; my salvation is gone forth, and mine arms shall judge the people; the isles shall wait upon me, and on mine arm shall they trust. \nLift up your eyes to the heavens, and look upon the earth beneath: for the heavens shall vanish away like smoke, and the earth shall wax old like a garment, and they that dwell therein shall die in like manner: but my salvation shall be for ever, and my righteousness shall not be abolished. \nHearken unto me, ye that know righteousness, the people in whose heart is my law; fear ye not the reproach of men, neither be ye afraid of their revilings. \nFor the moth shall eat them up like a garment, and the worm shall eat them like wool: but my righteousness shall be for ever, and my salvation from generation to generation. \nAwake, awake, put on strength, O arm of the LORD; awake, as in the ancient days, in the generations of old. Art thou not it that hath cut Rahab, and wounded the dragon? \nArt thou not it which hath dried the sea, the waters of the great deep; that hath made the depths of the sea a way for the ransomed to pass over? \nTherefore the redeemed of the LORD shall return, and come with singing unto Zion; and everlasting joy shall be upon their head: they shall obtain gladness and joy; and sorrow and mourning shall flee away. \nI, even I, am he that comforteth you: who art thou, that thou shouldest be afraid of a man that shall die, and of the son of man which shall be made as grass; \nAnd forgettest the LORD thy maker, that hath stretched forth the heavens, and laid the foundations of the earth; and hast feared continually every day because of the fury of the oppressor, as if he were ready to destroy? and where is the fury of the oppressor? \nThe captive exile hasteneth that he may be loosed, and that he should not die in the pit, nor that his bread should fail. \nBut I am the LORD thy God, that divided the sea, whose waves roared: The LORD of hosts is his name. \nAnd I have put my words in thy mouth, and I have covered thee in the shadow of mine hand, that I may plant the heavens, and lay the foundations of the earth, and say unto Zion, Thou art my people. \nAwake, awake, stand up, O Jerusalem, which hast drunk at the hand of the LORD the cup of his fury; thou hast drunken the dregs of the cup of trembling, and wrung them out. \nThere is none to guide her among all the sons whom she hath brought forth; neither is there any that taketh her by the hand of all the sons that she hath brought up. \nThese two things are come unto thee; who shall be sorry for thee? desolation, and destruction, and the famine, and the sword: by whom shall I comfort thee? \nThy sons have fainted, they lie at the head of all the streets, as a wild bull in a net: they are full of the fury of the LORD, the rebuke of thy God. \nTherefore hear now this, thou afflicted, and drunken, but not with wine: \nThus saith thy Lord the LORD, and thy God that pleadeth the cause of his people, Behold, I have taken out of thine hand the cup of trembling, even the dregs of the cup of my fury; thou shalt no more drink it again: \nBut I will put it into the hand of them that afflict thee; which have said to thy soul, Bow down, that we may go over: and thou hast laid thy body as the ground, and as the street, to them that went over. \nAwake, awake; put on thy strength, O Zion; put on thy beautiful garments, O Jerusalem, the holy city: for henceforth there shall no more come into thee the uncircumcised and the unclean. \nShake thyself from the dust; arise, and sit down, O Jerusalem: loose thyself from the bands of thy neck, O captive daughter of Zion. \nFor thus saith the LORD, Ye have sold yourselves for nought; and ye shall be redeemed without money. \nFor thus saith the Lord GOD, My people went down aforetime into Egypt to sojourn there; and the Assyrian oppressed them without cause. \nNow therefore, what have I here, saith the LORD, that my people is taken away for nought? they that rule over them make them to howl, saith the LORD; and my name continually every day is blasphemed. \nTherefore my people shall know my name: therefore they shall know in that day that I am he that doth speak: behold, it is I. \nHow beautiful upon the mountains are the feet of him that bringeth good tidings, that publisheth peace; that bringeth good tidings of good, that publisheth salvation; that saith unto Zion, Thy God reigneth! \nThy watchmen shall lift up the voice; with the voice together shall they sing: for they shall see eye to eye, when the LORD shall bring again Zion. \nBreak forth into joy, sing together, ye waste places of Jerusalem: for the LORD hath comforted his people, he hath redeemed Jerusalem. \nThe LORD hath made bare his holy arm in the eyes of all the nations; and all the ends of the earth shall see the salvation of our God. \nDepart ye, depart ye, go ye out from thence, touch no unclean thing; go ye out of the midst of her; be ye clean, that bear the vessels of the LORD. \nFor ye shall not go out with haste, nor go by flight: for the LORD will go before you; and the God of Israel will be your rereward. \nBehold, my servant shall deal prudently, he shall be exalted and extolled, and be very high. \nAs many were astonied at thee; his visage was so marred more than any man, and his form more than the sons of men: \nSo shall he sprinkle many nations; the kings shall shut their mouths at him: for that which had not been told them shall they see; and that which they had not heard shall they consider. \nWho hath believed our report? and to whom is the arm of the LORD revealed? \nFor he shall grow up before him as a tender plant, and as a root out of a dry ground: he hath no form nor comeliness; and when we shall see him, there is no beauty that we should desire him. \nHe is despised and rejected of men; a man of sorrows, and acquainted with grief: and we hid as it were our faces from him; he was despised, and we esteemed him not. \nSurely he hath borne our griefs, and carried our sorrows: yet we did esteem him stricken, smitten of God, and afflicted. \nBut he was wounded for our transgressions, he was bruised for our iniquities: the chastisement of our peace was upon him; and with his stripes we are healed. \nAll we like sheep have gone astray; we have turned every one to his own way; and the LORD hath laid on him the iniquity of us all. \nHe was oppressed, and he was afflicted, yet he opened not his mouth: he is brought as a lamb to the slaughter, and as a sheep before her shearers is dumb, so he openeth not his mouth. \nHe was taken from prison and from judgment: and who shall declare his generation? for he was cut off out of the land of the living: for the transgression of my people was he stricken. \nAnd he made his grave with the wicked, and with the rich in his death; because he had done no violence, neither was any deceit in his mouth. \nYet it pleased the LORD to bruise him; he hath put him to grief: when thou shalt make his soul an offering for sin, he shall see his seed, he shall prolong his days, and the pleasure of the LORD shall prosper in his hand. \nHe shall see of the travail of his soul, and shall be satisfied: by his knowledge shall my righteous servant justify many; for he shall bear their iniquities. \nTherefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he hath poured out his soul unto death: and he was numbered with the transgressors; and he bare the sin of many, and made intercession for the transgressors. \nSing, O barren, thou that didst not bear; break forth into singing, and cry aloud, thou that didst not travail with child: for more are the children of the desolate than the children of the married wife, saith the LORD. \nEnlarge the place of thy tent, and let them stretch forth the curtains of thine habitations: spare not, lengthen thy cords, and strengthen thy stakes; \nFor thou shalt break forth on the right hand and on the left; and thy seed shall inherit the Gentiles, and make the desolate cities to be inhabited. \nFear not; for thou shalt not be ashamed: neither be thou confounded; for thou shalt not be put to shame: for thou shalt forget the shame of thy youth, and shalt not remember the reproach of thy widowhood any more. \nFor thy Maker is thine husband; the LORD of hosts is his name; and thy Redeemer the Holy One of Israel; The God of the whole earth shall he be called. \nFor the LORD hath called thee as a woman forsaken and grieved in spirit, and a wife of youth, when thou wast refused, saith thy God. \nFor a small moment have I forsaken thee; but with great mercies will I gather thee. \nIn a little wrath I hid my face from thee for a moment; but with everlasting kindness will I have mercy on thee, saith the LORD thy Redeemer. \nFor this is as the waters of Noah unto me: for as I have sworn that the waters of Noah should no more go over the earth; so have I sworn that I would not be wroth with thee, nor rebuke thee. \nFor the mountains shall depart, and the hills be removed; but my kindness shall not depart from thee, neither shall the covenant of my peace be removed, saith the LORD that hath mercy on thee. \nO thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires. \nAnd I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones. \nAnd all thy children shall be taught of the LORD; and great shall be the peace of thy children. \nIn righteousness shalt thou be established: thou shalt be far from oppression; for thou shalt not fear: and from terror; for it shall not come near thee. \nBehold, they shall surely gather together, but not by me: whosoever shall gather together against thee shall fall for thy sake. \nBehold, I have created the smith that bloweth the coals in the fire, and that bringeth forth an instrument for his work; and I have created the waster to destroy. \nNo weapon that is formed against thee shall prosper; and every tongue that shall rise against thee in judgment thou shalt condemn. This is the heritage of the servants of the LORD, and their righteousness is of me, saith the LORD. \nHo, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea, come, buy wine and milk without money and without price. \nWherefore do ye spend money for that which is not bread? and your labour for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness. \nIncline your ear, and come unto me: hear, and your soul shall live; and I will make an everlasting covenant with you, even the sure mercies of David. \nBehold, I have given him for a witness to the people, a leader and commander to the people. \nBehold, thou shalt call a nation that thou knowest not, and nations that knew not thee shall run unto thee because of the LORD thy God, and for the Holy One of Israel; for he hath glorified thee. \nSeek ye the LORD while he may be found, call ye upon him while he is near: \nLet the wicked forsake his way, and the unrighteous man his thoughts: and let him return unto the LORD, and he will have mercy upon him; and to our God, for he will abundantly pardon. \nFor my thoughts are not your thoughts, neither are your ways my ways, saith the LORD. \nFor as the heavens are higher than the earth, so are my ways higher than your ways, and my thoughts than your thoughts. \nFor as the rain cometh down, and the snow from heaven, and returneth not thither, but watereth the earth, and maketh it bring forth and bud, that it may give seed to the sower, and bread to the eater: \nSo shall my word be that goeth forth out of my mouth: it shall not return unto me void, but it shall accomplish that which I please, and it shall prosper in the thing whereto I sent it. \nFor ye shall go out with joy, and be led forth with peace: the mountains and the hills shall break forth before you into singing, and all the trees of the field shall clap their hands. \nInstead of the thorn shall come up the fir tree, and instead of the brier shall come up the myrtle tree: and it shall be to the LORD for a name, for an everlasting sign that shall not be cut off. \nThus saith the LORD, Keep ye judgment, and do justice: for my salvation is near to come, and my righteousness to be revealed. \nBlessed is the man that doeth this, and the son of man that layeth hold on it; that keepeth the sabbath from polluting it, and keepeth his hand from doing any evil. \nNeither let the son of the stranger, that hath joined himself to the LORD, speak, saying, The LORD hath utterly separated me from his people: neither let the eunuch say, Behold, I am a dry tree. \nFor thus saith the LORD unto the eunuchs that keep my sabbaths, and choose the things that please me, and take hold of my covenant; \nEven unto them will I give in mine house and within my walls a place and a name better than of sons and of daughters: I will give them an everlasting name, that shall not be cut off. \nAlso the sons of the stranger, that join themselves to the LORD, to serve him, and to love the name of the LORD, to be his servants, every one that keepeth the sabbath from polluting it, and taketh hold of my covenant; \nEven them will I bring to my holy mountain, and make them joyful in my house of prayer: their burnt offerings and their sacrifices shall be accepted upon mine altar; for mine house shall be called an house of prayer for all people. \nThe Lord GOD, which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him. \nAll ye beasts of the field, come to devour, yea, all ye beasts in the forest. \nHis watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber. \nYea, they are greedy dogs which can never have enough, and they are shepherds that cannot understand: they all look to their own way, every one for his gain, from his quarter. \nCome ye, say they, I will fetch wine, and we will fill ourselves with strong drink; and to morrow shall be as this day, and much more abundant. \nThe righteous perisheth, and no man layeth it to heart: and merciful men are taken away, none considering that the righteous is taken away from the evil to come. \nHe shall enter into peace: they shall rest in their beds, each one walking in his uprightness. \nBut draw near hither, ye sons of the sorceress, the seed of the adulterer and the whore. \nAgainst whom do ye sport yourselves? against whom make ye a wide mouth, and draw out the tongue? are ye not children of transgression, a seed of falsehood. \nEnflaming yourselves with idols under every green tree, slaying the children in the valleys under the clifts of the rocks? \nAmong the smooth stones of the stream is thy portion; they, they are thy lot: even to them hast thou poured a drink offering, thou hast offered a meat offering. Should I receive comfort in these? \nUpon a lofty and high mountain hast thou set thy bed: even thither wentest thou up to offer sacrifice. \nBehind the doors also and the posts hast thou set up thy remembrance: for thou hast discovered thyself to another than me, and art gone up; thou hast enlarged thy bed, and made thee a covenant with them; thou lovedst their bed where thou sawest it. \nAnd thou wentest to the king with ointment, and didst increase thy perfumes, and didst send thy messengers far off, and didst debase thyself even unto hell. \nThou art wearied in the greatness of thy way; yet saidst thou not, There is no hope: thou hast found the life of thine hand; therefore thou wast not grieved. \nAnd of whom hast thou been afraid or feared, that thou hast lied, and hast not remembered me, nor laid it to thy heart? have not I held my peace even of old, and thou fearest me not? \nI will declare thy righteousness, and thy works; for they shall not profit thee. \nWhen thou criest, let thy companies deliver thee; but the wind shall carry them all away; vanity shall take them: but he that putteth his trust in me shall possess the land, and shall inherit my holy mountain; \nAnd shall say, Cast ye up, cast ye up, prepare the way, take up the stumblingblock out of the way of my people. \nFor thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones. \nFor I will not contend for ever, neither will I be always wroth: for the spirit should fail before me, and the souls which I have made. \nFor the iniquity of his covetousness was I wroth, and smote him: I hid me, and was wroth, and he went on frowardly in the way of his heart. \nI have seen his ways, and will heal him: I will lead him also, and restore comforts unto him and to his mourners. \nI create the fruit of the lips; Peace, peace to him that is far off, and to him that is near, saith the LORD; and I will heal him. \nBut the wicked are like the troubled sea, when it cannot rest, whose waters cast up mire and dirt. \nThere is no peace, saith my God, to the wicked. \nCry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins. \nYet they seek me daily, and delight to know my ways, as a nation that did righteousness, and forsook not the ordinance of their God: they ask of me the ordinances of justice; they take delight in approaching to God. \nWherefore have we fasted, say they, and thou seest not? wherefore have we afflicted our soul, and thou takest no knowledge? Behold, in the day of your fast ye find pleasure, and exact all your labours. \nBehold, ye fast for strife and debate, and to smite with the fist of wickedness: ye shall not fast as ye do this day, to make your voice to be heard on high. \nIs it such a fast that I have chosen? a day for a man to afflict his soul? is it to bow down his head as a bulrush, and to spread sackcloth and ashes under him? wilt thou call this a fast, and an acceptable day to the LORD? \nIs not this the fast that I have chosen? to loose the bands of wickedness, to undo the heavy burdens, and to let the oppressed go free, and that ye break every yoke? \nIs it not to deal thy bread to the hungry, and that thou bring the poor that are cast out to thy house? when thou seest the naked, that thou cover him; and that thou hide not thyself from thine own flesh? \nThen shall thy light break forth as the morning, and thine health shall spring forth speedily: and thy righteousness shall go before thee; the glory of the LORD shall be thy rereward. \nThen shalt thou call, and the LORD shall answer; thou shalt cry, and he shall say, Here I am. If thou take away from the midst of thee the yoke, the putting forth of the finger, and speaking vanity; \nAnd if thou draw out thy soul to the hungry, and satisfy the afflicted soul; then shall thy light rise in obscurity, and thy darkness be as the noon day: \nAnd the LORD shall guide thee continually, and satisfy thy soul in drought, and make fat thy bones: and thou shalt be like a watered garden, and like a spring of water, whose waters fail not. \nAnd they that shall be of thee shall build the old waste places: thou shalt raise up the foundations of many generations; and thou shalt be called, The repairer of the breach, The restorer of paths to dwell in. \nIf thou turn away thy foot from the sabbath, from doing thy pleasure on my holy day; and call the sabbath a delight, the holy of the LORD, honourable; and shalt honour him, not doing thine own ways, nor finding thine own pleasure, nor speaking thine own words: \nThen shalt thou delight thyself in the LORD; and I will cause thee to ride upon the high places of the earth, and feed thee with the heritage of Jacob thy father: for the mouth of the LORD hath spoken it. \nBehold, the LORD's hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear: \nBut your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear. \nFor your hands are defiled with blood, and your fingers with iniquity; your lips have spoken lies, your tongue hath muttered perverseness. \nNone calleth for justice, nor any pleadeth for truth: they trust in vanity, and speak lies; they conceive mischief, and bring forth iniquity. \nThey hatch cockatrice' eggs, and weave the spider's web: he that eateth of their eggs dieth, and that which is crushed breaketh out into a viper. \nTheir webs shall not become garments, neither shall they cover themselves with their works: their works are works of iniquity, and the act of violence is in their hands. \nTheir feet run to evil, and they make haste to shed innocent blood: their thoughts are thoughts of iniquity; wasting and destruction are in their paths. \nThe way of peace they know not; and there is no judgment in their goings: they have made them crooked paths: whosoever goeth therein shall not know peace. \nTherefore is judgment far from us, neither doth justice overtake us: we wait for light, but behold obscurity; for brightness, but we walk in darkness. \nWe grope for the wall like the blind, and we grope as if we had no eyes: we stumble at noon day as in the night; we are in desolate places as dead men. \nWe roar all like bears, and mourn sore like doves: we look for judgment, but there is none; for salvation, but it is far off from us. \nFor our transgressions are multiplied before thee, and our sins testify against us: for our transgressions are with us; and as for our iniquities, we know them; \nIn transgressing and lying against the LORD, and departing away from our God, speaking oppression and revolt, conceiving and uttering from the heart words of falsehood. \nAnd judgment is turned away backward, and justice standeth afar off: for truth is fallen in the street, and equity cannot enter. \nYea, truth faileth; and he that departeth from evil maketh himself a prey: and the LORD saw it, and it displeased him that there was no judgment. \nAnd he saw that there was no man, and wondered that there was no intercessor: therefore his arm brought salvation unto him; and his righteousness, it sustained him. \nFor he put on righteousness as a breastplate, and an helmet of salvation upon his head; and he put on the garments of vengeance for clothing, and was clad with zeal as a cloak. \nAccording to their deeds, accordingly he will repay, fury to his adversaries, recompence to his enemies; to the islands he will repay recompence. \nSo shall they fear the name of the LORD from the west, and his glory from the rising of the sun. When the enemy shall come in like a flood, the Spirit of the LORD shall lift up a standard against him. \nAnd the Redeemer shall come to Zion, and unto them that turn from transgression in Jacob, saith the LORD. \nAs for me, this is my covenant with them, saith the LORD; My spirit that is upon thee, and my words which I have put in thy mouth, shall not depart out of thy mouth, nor out of the mouth of thy seed, nor out of the mouth of thy seed's seed, saith the LORD, from henceforth and for ever. \nArise, shine; for thy light is come, and the glory of the LORD is risen upon thee. \nFor, behold, the darkness shall cover the earth, and gross darkness the people: but the LORD shall arise upon thee, and his glory shall be seen upon thee. \nAnd the Gentiles shall come to thy light, and kings to the brightness of thy rising. \nLift up thine eyes round about, and see: all they gather themselves together, they come to thee: thy sons shall come from far, and thy daughters shall be nursed at thy side. \nThen thou shalt see, and flow together, and thine heart shall fear, and be enlarged; because the abundance of the sea shall be converted unto thee, the forces of the Gentiles shall come unto thee. \nThe multitude of camels shall cover thee, the dromedaries of Midian and Ephah; all they from Sheba shall come: they shall bring gold and incense; and they shall shew forth the praises of the LORD. \nAll the flocks of Kedar shall be gathered together unto thee, the rams of Nebaioth shall minister unto thee: they shall come up with acceptance on mine altar, and I will glorify the house of my glory. \nWho are these that fly as a cloud, and as the doves to their windows? \nSurely the isles shall wait for me, and the ships of Tarshish first, to bring thy sons from far, their silver and their gold with them, unto the name of the LORD thy God, and to the Holy One of Israel, because he hath glorified thee. \nAnd the sons of strangers shall build up thy walls, and their kings shall minister unto thee: for in my wrath I smote thee, but in my favour have I had mercy on thee. \nTherefore thy gates shall be open continually; they shall not be shut day nor night; that men may bring unto thee the forces of the Gentiles, and that their kings may be brought. \nFor the nation and kingdom that will not serve thee shall perish; yea, those nations shall be utterly wasted. \nThe glory of Lebanon shall come unto thee, the fir tree, the pine tree, and the box together, to beautify the place of my sanctuary; and I will make the place of my feet glorious. \nThe sons also of them that afflicted thee shall come bending unto thee; and all they that despised thee shall bow themselves down at the soles of thy feet; and they shall call thee; The city of the LORD, The Zion of the Holy One of Israel. \nWhereas thou has been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations. \nThou shalt also suck the milk of the Gentiles, and shalt suck the breast of kings: and thou shalt know that I the LORD am thy Saviour and thy Redeemer, the mighty One of Jacob. \nFor brass I will bring gold, and for iron I will bring silver, and for wood brass, and for stones iron: I will also make thy officers peace, and thine exactors righteousness. \nViolence shall no more be heard in thy land, wasting nor destruction within thy borders; but thou shalt call thy walls Salvation, and thy gates Praise. \nThe sun shall be no more thy light by day; neither for brightness shall the moon give light unto thee: but the LORD shall be unto thee an everlasting light, and thy God thy glory. \nThy sun shall no more go down; neither shall thy moon withdraw itself: for the LORD shall be thine everlasting light, and the days of thy mourning shall be ended. \nThy people also shall be all righteous: they shall inherit the land for ever, the branch of my planting, the work of my hands, that I may be glorified. \nA little one shall become a thousand, and a small one a strong nation: I the LORD will hasten it in his time. \nThe Spirit of the Lord GOD is upon me; because the LORD hath anointed me to preach good tidings unto the meek; he hath sent me to bind up the brokenhearted, to proclaim liberty to the captives, and the opening of the prison to them that are bound; \nTo proclaim the acceptable year of the LORD, and the day of vengeance of our God; to comfort all that mourn; \nTo appoint unto them that mourn in Zion, to give unto them beauty for ashes, the oil of joy for mourning, the garment of praise for the spirit of heaviness; that they might be called trees of righteousness, the planting of the LORD, that he might be glorified. \nAnd they shall build the old wastes, they shall raise up the former desolations, and they shall repair the waste cities, the desolations of many generations. \nAnd strangers shall stand and feed your flocks, and the sons of the alien shall be your plowmen and your vinedressers. \nBut ye shall be named the Priests of the LORD: men shall call you the Ministers of our God: ye shall eat the riches of the Gentiles, and in their glory shall ye boast yourselves. \nFor your shame ye shall have double; and for confusion they shall rejoice in their portion: therefore in their land they shall possess the double: everlasting joy shall be unto them. \nFor I the LORD love judgment, I hate robbery for burnt offering; and I will direct their work in truth, and I will make an everlasting covenant with them. \nAnd their seed shall be known among the Gentiles, and their offspring among the people: all that see them shall acknowledge them, that they are the seed which the LORD hath blessed. \nI will greatly rejoice in the LORD, my soul shall be joyful in my God; for he hath clothed me with the garments of salvation, he hath covered me with the robe of righteousness, as a bridegroom decketh himself with ornaments, and as a bride adorneth herself with her jewels. \nFor as the earth bringeth forth her bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord GOD will cause righteousness and praise to spring forth before all the nations. \nFor Zion's sake will I not hold my peace, and for Jerusalem's sake I will not rest, until the righteousness thereof go forth as brightness, and the salvation thereof as a lamp that burneth. \nAnd the Gentiles shall see thy righteousness, and all kings thy glory: and thou shalt be called by a new name, which the mouth of the LORD shall name. \nThou shalt also be a crown of glory in the hand of the LORD, and a royal diadem in the hand of thy God. \nThou shalt no more be termed Forsaken; neither shall thy land any more be termed Desolate: but thou shalt be called Hephzibah, and thy land Beulah: for the LORD delighteth in thee, and thy land shall be married. \nFor as a young man marrieth a virgin, so shall thy sons marry thee: and as the bridegroom rejoiceth over the bride, so shall thy God rejoice over thee. \nI have set watchmen upon thy walls, O Jerusalem, which shall never hold their peace day nor night: ye that make mention of the LORD, keep not silence, \nAnd give him no rest, till he establish, and till he make Jerusalem a praise in the earth. \nThe LORD hath sworn by his right hand, and by the arm of his strength, Surely I will no more give thy corn to be meat for thine enemies; and the sons of the stranger shall not drink thy wine, for the which thou hast laboured: \nBut they that have gathered it shall eat it, and praise the LORD; and they that have brought it together shall drink it in the courts of my holiness. \nGo through, go through the gates; prepare ye the way of the people; cast up, cast up the highway; gather out the stones; lift up a standard for the people. \nBehold, the LORD hath proclaimed unto the end of the world, Say ye to the daughter of Zion, Behold, thy salvation cometh; behold, his reward is with him, and his work before him. \nAnd they shall call them, The holy people, The redeemed of the LORD: and thou shalt be called, Sought out, A city not forsaken. \nWho is this that cometh from Edom, with dyed garments from Bozrah? this that is glorious in his apparel, travelling in the greatness of his strength? I that speak in righteousness, mighty to save. \nWherefore art thou red in thine apparel, and thy garments like him that treadeth in the winefat? \nI have trodden the winepress alone; and of the people there was none with me: for I will tread them in mine anger, and trample them in my fury; and their blood shall be sprinkled upon my garments, and I will stain all my raiment. \nFor the day of vengeance is in mine heart, and the year of my redeemed is come. \nAnd I looked, and there was none to help; and I wondered that there was none to uphold: therefore mine own arm brought salvation unto me; and my fury, it upheld me. \nAnd I will tread down the people in mine anger, and make them drunk in my fury, and I will bring down their strength to the earth. \nI will mention the lovingkindnesses of the LORD, and the praises of the LORD, according to all that the LORD hath bestowed on us, and the great goodness toward the house of Israel, which he hath bestowed on them according to his mercies, and according to the multitude of his lovingkindnesses. \nFor he said, Surely they are my people, children that will not lie: so he was their Saviour. \nIn all their affliction he was afflicted, and the angel of his presence saved them: in his love and in his pity he redeemed them; and he bare them, and carried them all the days of old. \nBut they rebelled, and vexed his holy Spirit: therefore he was turned to be their enemy, and he fought against them. \nThen he remembered the days of old, Moses, and his people, saying, Where is he that brought them up out of the sea with the shepherd of his flock? where is he that put his holy Spirit within him? \nThat led them by the right hand of Moses with his glorious arm, dividing the water before them, to make himself an everlasting name? \nThat led them through the deep, as an horse in the wilderness, that they should not stumble? \nAs a beast goeth down into the valley, the Spirit of the LORD caused him to rest: so didst thou lead thy people, to make thyself a glorious name. \nLook down from heaven, and behold from the habitation of thy holiness and of thy glory: where is thy zeal and thy strength, the sounding of thy bowels and of thy mercies toward me? are they restrained? \nDoubtless thou art our father, though Abraham be ignorant of us, and Israel acknowledge us not: thou, O LORD, art our father, our redeemer; thy name is from everlasting. \nO LORD, why hast thou made us to err from thy ways, and hardened our heart from thy fear? Return for thy servants' sake, the tribes of thine inheritance. \nThe people of thy holiness have possessed it but a little while: our adversaries have trodden down thy sanctuary. \nWe are thine: thou never barest rule over them; they were not called by thy name. \nOh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, \nAs when the melting fire burneth, the fire causeth the waters to boil, to make thy name known to thine adversaries, that the nations may tremble at thy presence! \nWhen thou didst terrible things which we looked not for, thou camest down, the mountains flowed down at thy presence. \nFor since the beginning of the world men have not heard, nor perceived by the ear, neither hath the eye seen, O God, beside thee, what he hath prepared for him that waiteth for him. \nThou meetest him that rejoiceth and worketh righteousness, those that remember thee in thy ways: behold, thou art wroth; for we have sinned: in those is continuance, and we shall be saved. \nBut we are all as an unclean thing, and all our righteousnesses are as filthy rags; and we all do fade as a leaf; and our iniquities, like the wind, have taken us away. \nAnd there is none that calleth upon thy name, that stirreth up himself to take hold of thee: for thou hast hid thy face from us, and hast consumed us, because of our iniquities. \nBut now, O LORD, thou art our father; we are the clay, and thou our potter; and we all are the work of thy hand. \nBe not wroth very sore, O LORD, neither remember iniquity for ever: behold, see, we beseech thee, we are all thy people. \nThy holy cities are a wilderness, Zion is a wilderness, Jerusalem a desolation. \nOur holy and our beautiful house, where our fathers praised thee, is burned up with fire: and all our pleasant things are laid waste. \nWilt thou refrain thyself for these things, O LORD? wilt thou hold thy peace, and afflict us very sore? \nI am sought of them that asked not for me; I am found of them that sought me not: I said, Behold me, behold me, unto a nation that was not called by my name. \nI have spread out my hands all the day unto a rebellious people, which walketh in a way that was not good, after their own thoughts; \nA people that provoketh me to anger continually to my face; that sacrificeth in gardens, and burneth incense upon altars of brick; \nWhich remain among the graves, and lodge in the monuments, which eat swine's flesh, and broth of abominable things is in their vessels; \nWhich say, Stand by thyself, come not near to me; for I am holier than thou. These are a smoke in my nose, a fire that burneth all the day. \nBehold, it is written before me: I will not keep silence, but will recompense, even recompense into their bosom, \nYour iniquities, and the iniquities of your fathers together, saith the LORD, which have burned incense upon the mountains, and blasphemed me upon the hills: therefore will I measure their former work into their bosom. \nThus saith the LORD, As the new wine is found in the cluster, and one saith, Destroy it not; for a blessing is in it: so will I do for my servants' sakes, that I may not destroy them all. \nAnd I will bring forth a seed out of Jacob, and out of Judah an inheritor of my mountains: and mine elect shall inherit it, and my servants shall dwell there. \nAnd Sharon shall be a fold of flocks, and the valley of Achor a place for the herds to lie down in, for my people that have sought me. \nBut ye are they that forsake the LORD, that forget my holy mountain, that prepare a table for that troop, and that furnish the drink offering unto that number. \nTherefore will I number you to the sword, and ye shall all bow down to the slaughter: because when I called, ye did not answer; when I spake, ye did not hear; but did evil before mine eyes, and did choose that wherein I delighted not. \nTherefore thus saith the Lord GOD, Behold, my servants shall eat, but ye shall be hungry: behold, my servants shall drink, but ye shall be thirsty: behold, my servants shall rejoice, but ye shall be ashamed: \nBehold, my servants shall sing for joy of heart, but ye shall cry for sorrow of heart, and shall howl for vexation of spirit. \nAnd ye shall leave your name for a curse unto my chosen: for the Lord GOD shall slay thee, and call his servants by another name: \nThat he who blesseth himself in the earth shall bless himself in the God of truth; and he that sweareth in the earth shall swear by the God of truth; because the former troubles are forgotten, and because they are hid from mine eyes. \nFor, behold, I create new heavens and a new earth: and the former shall not be remembered, nor come into mind. \nBut be ye glad and rejoice for ever in that which I create: for, behold, I create Jerusalem a rejoicing, and her people a joy. \nAnd I will rejoice in Jerusalem, and joy in my people: and the voice of weeping shall be no more heard in her, nor the voice of crying. \nThere shall be no more thence an infant of days, nor an old man that hath not filled his days: for the child shall die an hundred years old; but the sinner being an hundred years old shall be accursed. \nAnd they shall build houses, and inhabit them; and they shall plant vineyards, and eat the fruit of them. \nThey shall not build, and another inhabit; they shall not plant, and another eat: for as the days of a tree are the days of my people, and mine elect shall long enjoy the work of their hands. \nThey shall not labour in vain, nor bring forth for trouble; for they are the seed of the blessed of the LORD, and their offspring with them. \nAnd it shall come to pass, that before they call, I will answer; and while they are yet speaking, I will hear. \nThe wolf and the lamb shall feed together, and the lion shall eat straw like the bullock: and dust shall be the serpent's meat. They shall not hurt nor destroy in all my holy mountain, saith the LORD. \nThus saith the LORD, The heaven is my throne, and the earth is my footstool: where is the house that ye build unto me? and where is the place of my rest? \nFor all those things hath mine hand made, and all those things have been, saith the LORD: but to this man will I look, even to him that is poor and of a contrite spirit, and trembleth at my word. \nHe that killeth an ox is as if he slew a man; he that sacrificeth a lamb, as if he cut off a dog's neck; he that offereth an oblation, as if he offered swine's blood; he that burneth incense, as if he blessed an idol. Yea, they have chosen their own ways, and their soul delighteth in their abominations. \nI also will choose their delusions, and will bring their fears upon them; because when I called, none did answer; when I spake, they did not hear: but they did evil before mine eyes, and chose that in which I delighted not. \nHear the word of the LORD, ye that tremble at his word; Your brethren that hated you, that cast you out for my name's sake, said, Let the LORD be glorified: but he shall appear to your joy, and they shall be ashamed. \nA voice of noise from the city, a voice from the temple, a voice of the LORD that rendereth recompence to his enemies. \nBefore she travailed, she brought forth; before her pain came, she was delivered of a man child. \nWho hath heard such a thing? who hath seen such things? Shall the earth be made to bring forth in one day? or shall a nation be born at once? for as soon as Zion travailed, she brought forth her children. \nShall I bring to the birth, and not cause to bring forth? saith the LORD: shall I cause to bring forth, and shut the womb? saith thy God. \nRejoice ye with Jerusalem, and be glad with her, all ye that love her: rejoice for joy with her, all ye that mourn for her: \nThat ye may suck, and be satisfied with the breasts of her consolations; that ye may milk out, and be delighted with the abundance of her glory. \nFor thus saith the LORD, Behold, I will extend peace to her like a river, and the glory of the Gentiles like a flowing stream: then shall ye suck, ye shall be borne upon her sides, and be dandled upon her knees. \nAs one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem. \nAnd when ye see this, your heart shall rejoice, and your bones shall flourish like an herb: and the hand of the LORD shall be known toward his servants, and his indignation toward his enemies. \nFor, behold, the LORD will come with fire, and with his chariots like a whirlwind, to render his anger with fury, and his rebuke with flames of fire. \nFor by fire and by his sword will the LORD plead with all flesh: and the slain of the LORD shall be many. \nThey that sanctify themselves, and purify themselves in the gardens behind one tree in the midst, eating swine's flesh, and the abomination, and the mouse, shall be consumed together, saith the LORD. \nFor I know their works and their thoughts: it shall come, that I will gather all nations and tongues; and they shall come, and see my glory. \nAnd I will set a sign among them, and I will send those that escape of them unto the nations, to Tarshish, Pul, and Lud, that draw the bow, to Tubal, and Javan, to the isles afar off, that have not heard my fame, neither have seen my glory; and they shall declare my glory among the Gentiles. \nAnd they shall bring all your brethren for an offering unto the LORD out of all nations upon horses, and in chariots, and in litters, and upon mules, and upon swift beasts, to my holy mountain Jerusalem, saith the LORD, as the children of Israel bring an offering in a clean vessel into the house of the LORD. \nAnd I will also take of them for priests and for Levites, saith the LORD. \nFor as the new heavens and the new earth, which I will make, shall remain before me, saith the LORD, so shall your seed and your name remain. \nAnd it shall come to pass, that from one new moon to another, and from one sabbath to another, shall all flesh come to worship before me, saith the LORD. \nAnd they shall go forth, and look upon the carcases of the men that have transgressed against me: for their worm shall not die, neither shall their fire be quenched; and they shall be an abhorring unto all flesh. \nThe words of Jeremiah the son of Hilkiah, of the priests that were in Anathoth in the land of Benjamin: \nTo whom the word of the LORD came in the days of Josiah the son of Amon king of Judah, in the thirteenth year of his reign. \nIt came also in the days of Jehoiakim the son of Josiah king of Judah, unto the end of the eleventh year of Zedekiah the son of Josiah king of Judah, unto the carrying away of Jerusalem captive in the fifth month. \nThen the word of the LORD came unto me, saying, \nBefore I formed thee in the belly I knew thee; and before thou camest forth out of the womb I sanctified thee, and I ordained thee a prophet unto the nations. \nThen said I, Ah, Lord GOD! behold, I cannot speak: for I am a child. \nBut the LORD said unto me, Say not, I am a child: for thou shalt go to all that I shall send thee, and whatsoever I command thee thou shalt speak. \nBe not afraid of their faces: for I am with thee to deliver thee, saith the LORD. \nThen the LORD put forth his hand, and touched my mouth. And the LORD said unto me, Behold, I have put my words in thy mouth. \nSee, I have this day set thee over the nations and over the kingdoms, to root out, and to pull down, and to destroy, and to throw down, to build, and to plant. \nMoreover the word of the LORD came unto me, saying, Jeremiah, what seest thou? And I said, I see a rod of an almond tree. \nThen said the LORD unto me, Thou hast well seen: for I will hasten my word to perform it. \nAnd the word of the LORD came unto me the second time, saying, What seest thou? And I said, I see a seething pot; and the face thereof is toward the north. \nThen the LORD said unto me, Out of the north an evil shall break forth upon all the inhabitants of the land. \nFor, lo, I will call all the families of the kingdoms of the north, saith the LORD; and they shall come, and they shall set every one his throne at the entering of the gates of Jerusalem, and against all the walls thereof round about, and against all the cities of Judah. \nAnd I will utter my judgments against them touching all their wickedness, who have forsaken me, and have burned incense unto other gods, and worshipped the works of their own hands. \nThou therefore gird up thy loins, and arise, and speak unto them all that I command thee: be not dismayed at their faces, lest I confound thee before them. \nFor, behold, I have made thee this day a defenced city, and an iron pillar, and brasen walls against the whole land, against the kings of Judah, against the princes thereof, against the priests thereof, and against the people of the land. \nAnd they shall fight against thee; but they shall not prevail against thee; for I am with thee, saith the LORD, to deliver thee. \nMoreover the word of the LORD came to me, saying, \nGo and cry in the ears of Jerusalem, saying, Thus saith the LORD; I remember thee, the kindness of thy youth, the love of thine espousals, when thou wentest after me in the wilderness, in a land that was not sown. \nIsrael was holiness unto the LORD, and the firstfruits of his increase: all that devour him shall offend; evil shall come upon them, saith the LORD. \nHear ye the word of the LORD, O house of Jacob, and all the families of the house of Israel: \nThus saith the LORD, What iniquity have your fathers found in me, that they are gone far from me, and have walked after vanity, and are become vain? \nNeither said they, Where is the LORD that brought us up out of the land of Egypt, that led us through the wilderness, through a land of deserts and of pits, through a land of drought, and of the shadow of death, through a land that no man passed through, and where no man dwelt? \nAnd I brought you into a plentiful country, to eat the fruit thereof and the goodness thereof; but when ye entered, ye defiled my land, and made mine heritage an abomination. \nThe priests said not, Where is the LORD? and they that handle the law knew me not: the pastors also transgressed against me, and the prophets prophesied by Baal, and walked after things that do not profit. \nWherefore I will yet plead with you, saith the LORD, and with your children's children will I plead. \nFor pass over the isles of Chittim, and see; and send unto Kedar, and consider diligently, and see if there be such a thing. \nHath a nation changed their gods, which are yet no gods? but my people have changed their glory for that which doth not profit. \nBe astonished, O ye heavens, at this, and be horribly afraid, be ye very desolate, saith the LORD. \nFor my people have committed two evils; they have forsaken me the fountain of living waters, and hewed them out cisterns, broken cisterns, that can hold no water. \nIs Israel a servant? is he a homeborn slave? why is he spoiled? \nThe young lions roared upon him, and yelled, and they made his land waste: his cities are burned without inhabitant. \nAlso the children of Noph and Tahapanes have broken the crown of thy head. \nHast thou not procured this unto thyself, in that thou hast forsaken the LORD thy God, when he led thee by the way? \nAnd now what hast thou to do in the way of Egypt, to drink the waters of Sihor? or what hast thou to do in the way of Assyria, to drink the waters of the river? \nThine own wickedness shall correct thee, and thy backslidings shall reprove thee: know therefore and see that it is an evil thing and bitter, that thou hast forsaken the LORD thy God, and that my fear is not in thee, saith the Lord GOD of hosts. \nFor of old time I have broken thy yoke, and burst thy bands; and thou saidst, I will not transgress; when upon every high hill and under every green tree thou wanderest, playing the harlot. \nYet I had planted thee a noble vine, wholly a right seed: how then art thou turned into the degenerate plant of a strange vine unto me? \nFor though thou wash thee with nitre, and take thee much soap, yet thine iniquity is marked before me, saith the Lord GOD. \nHow canst thou say, I am not polluted, I have not gone after Baalim? see thy way in the valley, know what thou hast done: thou art a swift dromedary traversing her ways; \nA wild ass used to the wilderness, that snuffeth up the wind at her pleasure; in her occasion who can turn her away? all they that seek her will not weary themselves; in her month they shall find her. \nWithhold thy foot from being unshod, and thy throat from thirst: but thou saidst, There is no hope: no; for I have loved strangers, and after them will I go. \nAs the thief is ashamed when he is found, so is the house of Israel ashamed; they, their kings, their princes, and their priests, and their prophets. \nSaying to a stock, Thou art my father; and to a stone, Thou hast brought me forth: for they have turned their back unto me, and not their face: but in the time of their trouble they will say, Arise, and save us. \nBut where are thy gods that thou hast made thee? let them arise, if they can save thee in the time of thy trouble: for according to the number of thy cities are thy gods, O Judah. \nWherefore will ye plead with me? ye all have transgressed against me, saith the LORD. \nIn vain have I smitten your children; they received no correction: your own sword hath devoured your prophets, like a destroying lion. \nO generation, see ye the word of the LORD. Have I been a wilderness unto Israel? a land of darkness? wherefore say my people, We are lords; we will come no more unto thee? \nCan a maid forget her ornaments, or a bride her attire? yet my people have forgotten me days without number. \nWhy trimmest thou thy way to seek love? therefore hast thou also taught the wicked ones thy ways. \nAlso in thy skirts is found the blood of the souls of the poor innocents: I have not found it by secret search, but upon all these. \nYet thou sayest, Because I am innocent, surely his anger shall turn from me. Behold, I will plead with thee, because thou sayest, I have not sinned. \nWhy gaddest thou about so much to change thy way? thou also shalt be ashamed of Egypt, as thou wast ashamed of Assyria. \nYea, thou shalt go forth from him, and thine hands upon thine head: for the LORD hath rejected thy confidences, and thou shalt not prosper in them. \nThey say, If a man put away his wife, and she go from him, and become another man's, shall he return unto her again? shall not that land be greatly polluted? but thou hast played the harlot with many lovers; yet return again to me, saith the LORD. \nLift up thine eyes unto the high places, and see where thou hast not been lien with. In the ways hast thou sat for them, as the Arabian in the wilderness; and thou hast polluted the land with thy whoredoms and with thy wickedness. \nTherefore the showers have been withholden, and there hath been no latter rain; and thou hadst a whore's forehead, thou refusedst to be ashamed. \nWilt thou not from this time cry unto me, My father, thou art the guide of my youth? \nWill he reserve his anger for ever? will he keep it to the end? Behold, thou hast spoken and done evil things as thou couldest. \nThe LORD said also unto me in the days of Josiah the king, Hast thou seen that which backsliding Israel hath done? she is gone up upon every high mountain and under every green tree, and there hath played the harlot. \nAnd I said after she had done all these things, Turn thou unto me. But she returned not. And her treacherous sister Judah saw it. \nAnd I saw, when for all the causes whereby backsliding Israel committed adultery I had put her away, and given her a bill of divorce; yet her treacherous sister Judah feared not, but went and played the harlot also. \nAnd it came to pass through the lightness of her whoredom, that she defiled the land, and committed adultery with stones and with stocks. \nAnd yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the LORD. \nAnd the LORD said unto me, The backsliding Israel hath justified herself more than treacherous Judah. \nGo and proclaim these words toward the north, and say, Return, thou backsliding Israel, saith the LORD; and I will not cause mine anger to fall upon you: for I am merciful, saith the LORD, and I will not keep anger for ever. \nOnly acknowledge thine iniquity, that thou hast transgressed against the LORD thy God, and hast scattered thy ways to the strangers under every green tree, and ye have not obeyed my voice, saith the LORD. \nTurn, O backsliding children, saith the LORD; for I am married unto you: and I will take you one of a city, and two of a family, and I will bring you to Zion: \nAnd I will give you pastors according to mine heart, which shall feed you with knowledge and understanding. \nAnd it shall come to pass, when ye be multiplied and increased in the land, in those days, saith the LORD, they shall say no more, The ark of the covenant of the LORD: neither shall it come to mind: neither shall they remember it; neither shall they visit it; neither shall that be done any more. \nAt that time they shall call Jerusalem the throne of the LORD; and all the nations shall be gathered unto it, to the name of the LORD, to Jerusalem: neither shall they walk any more after the imagination of their evil heart. \nIn those days the house of Judah shall walk with the house of Israel, and they shall come together out of the land of the north to the land that I have given for an inheritance unto your fathers. \nBut I said, How shall I put thee among the children, and give thee a pleasant land, a goodly heritage of the hosts of nations? and I said, Thou shalt call me, My father; and shalt not turn away from me. \nSurely as a wife treacherously departeth from her husband, so have ye dealt treacherously with me, O house of Israel, saith the LORD. \nA voice was heard upon the high places, weeping and supplications of the children of Israel: for they have perverted their way, and they have forgotten the LORD their God. \nReturn, ye backsliding children, and I will heal your backslidings. Behold, we come unto thee; for thou art the LORD our God. \nTruly in vain is salvation hoped for from the hills, and from the multitude of mountains: truly in the LORD our God is the salvation of Israel. \nFor shame hath devoured the labour of our fathers from our youth; their flocks and their herds, their sons and their daughters. \nWe lie down in our shame, and our confusion covereth us: for we have sinned against the LORD our God, we and our fathers, from our youth even unto this day, and have not obeyed the voice of the LORD our God. \nIf thou wilt return, O Israel, saith the LORD, return unto me: and if thou wilt put away thine abominations out of my sight, then shalt thou not remove. \nAnd thou shalt swear, The LORD liveth, in truth, in judgment, and in righteousness; and the nations shall bless themselves in him, and in him shall they glory. \nFor thus saith the LORD to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns. \nCircumcise yourselves to the LORD, and take away the foreskins of your heart, ye men of Judah and inhabitants of Jerusalem: lest my fury come forth like fire, and burn that none can quench it, because of the evil of your doings. \nDeclare ye in Judah, and publish in Jerusalem; and say, Blow ye the trumpet in the land: cry, gather together, and say, Assemble yourselves, and let us go into the defenced cities. \nSet up the standard toward Zion: retire, stay not: for I will bring evil from the north, and a great destruction. \nThe lion is come up from his thicket, and the destroyer of the Gentiles is on his way; he is gone forth from his place to make thy land desolate; and thy cities shall be laid waste, without an inhabitant. \nFor this gird you with sackcloth, lament and howl: for the fierce anger of the LORD is not turned back from us. \nAnd it shall come to pass at that day, saith the LORD, that the heart of the king shall perish, and the heart of the princes; and the priests shall be astonished, and the prophets shall wonder. \nThen said I, Ah, Lord GOD! surely thou hast greatly deceived this people and Jerusalem, saying, Ye shall have peace; whereas the sword reacheth unto the soul. \nAt that time shall it be said to this people and to Jerusalem, A dry wind of the high places in the wilderness toward the daughter of my people, not to fan, nor to cleanse, \nEven a full wind from those places shall come unto me: now also will I give sentence against them. \nBehold, he shall come up as clouds, and his chariots shall be as a whirlwind: his horses are swifter than eagles. Woe unto us! for we are spoiled. \nO Jerusalem, wash thine heart from wickedness, that thou mayest be saved. How long shall thy vain thoughts lodge within thee? \nFor a voice declareth from Dan, and publisheth affliction from mount Ephraim. \nMake ye mention to the nations; behold, publish against Jerusalem, that watchers come from a far country, and give out their voice against the cities of Judah. \nAs keepers of a field, are they against her round about; because she hath been rebellious against me, saith the LORD. \nThy way and thy doings have procured these things unto thee; this is thy wickedness, because it is bitter, because it reacheth unto thine heart. \nMy bowels, my bowels! I am pained at my very heart; my heart maketh a noise in me; I cannot hold my peace, because thou hast heard, O my soul, the sound of the trumpet, the alarm of war. \nDestruction upon destruction is cried; for the whole land is spoiled: suddenly are my tents spoiled, and my curtains in a moment. \nHow long shall I see the standard, and hear the sound of the trumpet? \nFor my people is foolish, they have not known me; they are sottish children, and they have none understanding: they are wise to do evil, but to do good they have no knowledge. \nI beheld the earth, and, lo, it was without form, and void; and the heavens, and they had no light. \nI beheld the mountains, and, lo, they trembled, and all the hills moved lightly. \nI beheld, and, lo, there was no man, and all the birds of the heavens were fled. \nI beheld, and, lo, the fruitful place was a wilderness, and all the cities thereof were broken down at the presence of the LORD, and by his fierce anger. \nFor thus hath the LORD said, The whole land shall be desolate; yet will I not make a full end. \nFor this shall the earth mourn, and the heavens above be black; because I have spoken it, I have purposed it, and will not repent, neither will I turn back from it. \nThe whole city shall flee for the noise of the horsemen and bowmen; they shall go into thickets, and climb up upon the rocks: every city shall be forsaken, and not a man dwell therein. \nAnd when thou art spoiled, what wilt thou do? Though thou clothest thyself with crimson, though thou deckest thee with ornaments of gold, though thou rentest thy face with painting, in vain shalt thou make thyself fair; thy lovers will despise thee, they will seek thy life. \nFor I have heard a voice as of a woman in travail, and the anguish as of her that bringeth forth her first child, the voice of the daughter of Zion, that bewaileth herself, that spreadeth her hands, saying, Woe is me now! for my soul is wearied because of murderers. \nRun ye to and fro through the streets of Jerusalem, and see now, and know, and seek in the broad places thereof, if ye can find a man, if there be any that executeth judgment, that seeketh the truth; and I will pardon it. \nAnd though they say, The LORD liveth; surely they swear falsely. \nO LORD, are not thine eyes upon the truth? thou hast stricken them, but they have not grieved; thou hast consumed them, but they have refused to receive correction: they have made their faces harder than a rock; they have refused to return. \nTherefore I said, Surely these are poor; they are foolish: for they know not the way of the LORD, nor the judgment of their God. \nI will get me unto the great men, and will speak unto them; for they have known the way of the LORD, and the judgment of their God: but these have altogether broken the yoke, and burst the bonds. \nWherefore a lion out of the forest shall slay them, and a wolf of the evenings shall spoil them, a leopard shall watch over their cities: every one that goeth out thence shall be torn in pieces: because their transgressions are many, and their backslidings are increased. \nHow shall I pardon thee for this? thy children have forsaken me, and sworn by them that are no gods: when I had fed them to the full, they then committed adultery, and assembled themselves by troops in the harlots' houses. \nThey were as fed horses in the morning: every one neighed after his neighbour's wife. \nShall I not visit for these things? saith the LORD: and shall not my soul be avenged on such a nation as this? \nGo ye up upon her walls, and destroy; but make not a full end: take away her battlements; for they are not the LORD's. \nFor the house of Israel and the house of Judah have dealt very treacherously against me, saith the LORD. \nThey have belied the LORD, and said, It is not he; neither shall evil come upon us; neither shall we see sword nor famine: \nAnd the prophets shall become wind, and the word is not in them: thus shall it be done unto them. \nWherefore thus saith the LORD God of hosts, Because ye speak this word, behold, I will make my words in thy mouth fire, and this people wood, and it shall devour them. \nLo, I will bring a nation upon you from far, O house of Israel, saith the LORD: it is a mighty nation, it is an ancient nation, a nation whose language thou knowest not, neither understandest what they say. \nTheir quiver is as an open sepulchre, they are all mighty men. \nAnd they shall eat up thine harvest, and thy bread, which thy sons and thy daughters should eat: they shall eat up thy flocks and thine herds: they shall eat up thy vines and thy fig trees: they shall impoverish thy fenced cities, wherein thou trustedst, with the sword. \nNevertheless in those days, saith the LORD, I will not make a full end with you. \nAnd it shall come to pass, when ye shall say, Wherefore doeth the LORD our God all these things unto us? then shalt thou answer them, Like as ye have forsaken me, and served strange gods in your land, so shall ye serve strangers in a land that is not your's. \nDeclare this in the house of Jacob, and publish it in Judah, saying, \nHear now this, O foolish people, and without understanding; which have eyes, and see not; which have ears, and hear not: \nFear ye not me? saith the LORD: will ye not tremble at my presence, which have placed the sand for the bound of the sea by a perpetual decree, that it cannot pass it: and though the waves thereof toss themselves, yet can they not prevail; though they roar, yet can they not pass over it? \nBut this people hath a revolting and a rebellious heart; they are revolted and gone. \nNeither say they in their heart, Let us now fear the LORD our God, that giveth rain, both the former and the latter, in his season: he reserveth unto us the appointed weeks of the harvest. \nYour iniquities have turned away these things, and your sins have withholden good things from you. \nFor among my people are found wicked men: they lay wait, as he that setteth snares; they set a trap, they catch men. \nAs a cage is full of birds, so are their houses full of deceit: therefore they are become great, and waxen rich. \nThey are waxen fat, they shine: yea, they overpass the deeds of the wicked: they judge not the cause, the cause of the fatherless, yet they prosper; and the right of the needy do they not judge. \nShall I not visit for these things? saith the LORD: shall not my soul be avenged on such a nation as this? \nA wonderful and horrible thing is committed in the land; \nThe prophets prophesy falsely, and the priests bear rule by their means; and my people love to have it so: and what will ye do in the end thereof? \nO ye children of Benjamin, gather yourselves to flee out of the midst of Jerusalem, and blow the trumpet in Tekoa, and set up a sign of fire in Bethhaccerem: for evil appeareth out of the north, and great destruction. \nI have likened the daughter of Zion to a comely and delicate woman. \nThe shepherds with their flocks shall come unto her; they shall pitch their tents against her round about; they shall feed every one in his place. \nPrepare ye war against her; arise, and let us go up at noon. Woe unto us! for the day goeth away, for the shadows of the evening are stretched out. \nArise, and let us go by night, and let us destroy her palaces. \nFor thus hath the LORD of hosts said, Hew ye down trees, and cast a mount against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her. \nAs a fountain casteth out her waters, so she casteth out her wickedness: violence and spoil is heard in her; before me continually is grief and wounds. \nBe thou instructed, O Jerusalem, lest my soul depart from thee; lest I make thee desolate, a land not inhabited. \nThus saith the LORD of hosts, They shall throughly glean the remnant of Israel as a vine: turn back thine hand as a grapegatherer into the baskets. \nTo whom shall I speak, and give warning, that they may hear? behold, their ear is uncircumcised, and they cannot hearken: behold, the word of the LORD is unto them a reproach; they have no delight in it. \nTherefore I am full of the fury of the LORD; I am weary with holding in: I will pour it out upon the children abroad, and upon the assembly of young men together: for even the husband with the wife shall be taken, the aged with him that is full of days. \nAnd their houses shall be turned unto others, with their fields and wives together: for I will stretch out my hand upon the inhabitants of the land, saith the LORD. \nFor from the least of them even unto the greatest of them every one is given to covetousness; and from the prophet even unto the priest every one dealeth falsely. \nThey have healed also the hurt of the daughter of my people slightly, saying, Peace, peace; when there is no peace. \nWere they ashamed when they had committed abomination? nay, they were not at all ashamed, neither could they blush: therefore they shall fall among them that fall: at the time that I visit them they shall be cast down, saith the LORD. \nThus saith the LORD, Stand ye in the ways, and see, and ask for the old paths, where is the good way, and walk therein, and ye shall find rest for your souls. But they said, We will not walk therein. \nAlso I set watchmen over you, saying, Hearken to the sound of the trumpet. But they said, We will not hearken. \nTherefore hear, ye nations, and know, O congregation, what is among them. \nHear, O earth: behold, I will bring evil upon this people, even the fruit of their thoughts, because they have not hearkened unto my words, nor to my law, but rejected it. \nTo what purpose cometh there to me incense from Sheba, and the sweet cane from a far country? your burnt offerings are not acceptable, nor your sacrifices sweet unto me. \nTherefore thus saith the LORD, Behold, I will lay stumblingblocks before this people, and the fathers and the sons together shall fall upon them; the neighbour and his friend shall perish. \nThus saith the LORD, Behold, a people cometh from the north country, and a great nation shall be raised from the sides of the earth. \nThey shall lay hold on bow and spear; they are cruel, and have no mercy; their voice roareth like the sea; and they ride upon horses, set in array as men for war against thee, O daughter of Zion. \nWe have heard the fame thereof: our hands wax feeble: anguish hath taken hold of us, and pain, as of a woman in travail. \nGo not forth into the field, nor walk by the way; for the sword of the enemy and fear is on every side. \nO daughter of my people, gird thee with sackcloth, and wallow thyself in ashes: make thee mourning, as for an only son, most bitter lamentation: for the spoiler shall suddenly come upon us. \nI have set thee for a tower and a fortress among my people, that thou mayest know and try their way. \nThey are all grievous revolters, walking with slanders: they are brass and iron; they are all corrupters. \nThe bellows are burned, the lead is consumed of the fire; the founder melteth in vain: for the wicked are not plucked away. \nReprobate silver shall men call them, because the LORD hath rejected them. \nThe word that came to Jeremiah from the LORD, saying, \nStand in the gate of the LORD's house, and proclaim there this word, and say, Hear the word of the LORD, all ye of Judah, that enter in at these gates to worship the LORD. \nThus saith the LORD of hosts, the God of Israel, Amend your ways and your doings, and I will cause you to dwell in this place. \nTrust ye not in lying words, saying, The temple of the LORD, The temple of the LORD, The temple of the LORD, are these. \nFor if ye throughly amend your ways and your doings; if ye throughly execute judgment between a man and his neighbour; \nIf ye oppress not the stranger, the fatherless, and the widow, and shed not innocent blood in this place, neither walk after other gods to your hurt: \nThen will I cause you to dwell in this place, in the land that I gave to your fathers, for ever and ever. \nBehold, ye trust in lying words, that cannot profit. \nWill ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not; \nAnd come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations? \nIs this house, which is called by my name, become a den of robbers in your eyes? Behold, even I have seen it, saith the LORD. \nBut go ye now unto my place which was in Shiloh, where I set my name at the first, and see what I did to it for the wickedness of my people Israel. \nAnd now, because ye have done all these works, saith the LORD, and I spake unto you, rising up early and speaking, but ye heard not; and I called you, but ye answered not; \nTherefore will I do unto this house, which is called by my name, wherein ye trust, and unto the place which I gave to you and to your fathers, as I have done to Shiloh. \nAnd I will cast you out of my sight, as I have cast out all your brethren, even the whole seed of Ephraim. \nTherefore pray not thou for this people, neither lift up cry nor prayer for them, neither make intercession to me: for I will not hear thee. \nSeest thou not what they do in the cities of Judah and in the streets of Jerusalem? \nThe children gather wood, and the fathers kindle the fire, and the women knead their dough, to make cakes to the queen of heaven, and to pour out drink offerings unto other gods, that they may provoke me to anger. \nDo they provoke me to anger? saith the LORD: do they not provoke themselves to the confusion of their own faces? \nTherefore thus saith the Lord GOD; Behold, mine anger and my fury shall be poured out upon this place, upon man, and upon beast, and upon the trees of the field, and upon the fruit of the ground; and it shall burn, and shall not be quenched. \nThus saith the LORD of hosts, the God of Israel; Put your burnt offerings unto your sacrifices, and eat flesh. \nFor I spake not unto your fathers, nor commanded them in the day that I brought them out of the land of Egypt, concerning burnt offerings or sacrifices: \nBut this thing commanded I them, saying, Obey my voice, and I will be your God, and ye shall be my people: and walk ye in all the ways that I have commanded you, that it may be well unto you. \nBut they hearkened not, nor inclined their ear, but walked in the counsels and in the imagination of their evil heart, and went backward, and not forward. \nSince the day that your fathers came forth out of the land of Egypt unto this day I have even sent unto you all my servants the prophets, daily rising up early and sending them: \nYet they hearkened not unto me, nor inclined their ear, but hardened their neck: they did worse than their fathers. \nTherefore thou shalt speak all these words unto them; but they will not hearken to thee: thou shalt also call unto them; but they will not answer thee. \nBut thou shalt say unto them, This is a nation that obeyeth not the voice of the LORD their God, nor receiveth correction: truth is perished, and is cut off from their mouth. \nCut off thine hair, O Jerusalem, and cast it away, and take up a lamentation on high places; for the LORD hath rejected and forsaken the generation of his wrath. \nFor the children of Judah have done evil in my sight, saith the LORD: they have set their abominations in the house which is called by my name, to pollute it. \nAnd they have built the high places of Tophet, which is in the valley of the son of Hinnom, to burn their sons and their daughters in the fire; which I commanded them not, neither came it into my heart. \nTherefore, behold, the days come, saith the LORD, that it shall no more be called Tophet, nor the valley of the son of Hinnom, but the valley of slaughter: for they shall bury in Tophet, till there be no place. \nAnd the carcases of this people shall be meat for the fowls of the heaven, and for the beasts of the earth; and none shall fray them away. \nThen will I cause to cease from the cities of Judah, and from the streets of Jerusalem, the voice of mirth, and the voice of gladness, the voice of the bridegroom, and the voice of the bride: for the land shall be desolate. \nAt that time, saith the LORD, they shall bring out the bones of the kings of Judah, and the bones of his princes, and the bones of the priests, and the bones of the prophets, and the bones of the inhabitants of Jerusalem, out of their graves: \nAnd they shall spread them before the sun, and the moon, and all the host of heaven, whom they have loved, and whom they have served, and after whom they have walked, and whom they have sought, and whom they have worshipped: they shall not be gathered, nor be buried; they shall be for dung upon the face of the earth. \nAnd death shall be chosen rather than life by all the residue of them that remain of this evil family, which remain in all the places whither I have driven them, saith the LORD of hosts. \nMoreover thou shalt say unto them, Thus saith the LORD; Shall they fall, and not arise? shall he turn away, and not return? \nWhy then is this people of Jerusalem slidden back by a perpetual backsliding? they hold fast deceit, they refuse to return. \nI hearkened and heard, but they spake not aright: no man repented him of his wickedness, saying, What have I done? every one turned to his course, as the horse rusheth into the battle. \nYea, the stork in the heaven knoweth her appointed times; and the turtle and the crane and the swallow observe the time of their coming; but my people know not the judgment of the LORD. \nHow do ye say, We are wise, and the law of the LORD is with us? Lo, certainly in vain made he it; the pen of the scribes is in vain. \nThe wise men are ashamed, they are dismayed and taken: lo, they have rejected the word of the LORD; and what wisdom is in them? \nTherefore will I give their wives unto others, and their fields to them that shall inherit them: for every one from the least even unto the greatest is given to covetousness, from the prophet even unto the priest every one dealeth falsely. \nFor they have healed the hurt of the daughter of my people slightly, saying, Peace, peace; when there is no peace. \nWere they ashamed when they had committed abomination? nay, they were not at all ashamed, neither could they blush: therefore shall they fall among them that fall: in the time of their visitation they shall be cast down, saith the LORD. \nI will surely consume them, saith the LORD: there shall be no grapes on the vine, nor figs on the fig tree, and the leaf shall fade; and the things that I have given them shall pass away from them. \nWhy do we sit still? assemble yourselves, and let us enter into the defenced cities, and let us be silent there: for the LORD our God hath put us to silence, and given us water of gall to drink, because we have sinned against the LORD. \nWe looked for peace, but no good came; and for a time of health, and behold trouble! \nThe snorting of his horses was heard from Dan: the whole land trembled at the sound of the neighing of his strong ones; for they are come, and have devoured the land, and all that is in it; the city, and those that dwell therein. \nFor, behold, I will send serpents, cockatrices, among you, which will not be charmed, and they shall bite you, saith the LORD. \nWhen I would comfort myself against sorrow, my heart is faint in me. \nBehold the voice of the cry of the daughter of my people because of them that dwell in a far country: Is not the LORD in Zion? is not her king in her? Why have they provoked me to anger with their graven images, and with strange vanities? \nThe harvest is past, the summer is ended, and we are not saved. \nFor the hurt of the daughter of my people am I hurt; I am black; astonishment hath taken hold on me. \nIs there no balm in Gilead; is there no physician there? why then is not the health of the daughter of my people recovered? \nOh that my head were waters, and mine eyes a fountain of tears, that I might weep day and night for the slain of the daughter of my people! \nOh that I had in the wilderness a lodging place of wayfaring men; that I might leave my people, and go from them! for they be all adulterers, an assembly of treacherous men. \nAnd they bend their tongues like their bow for lies: but they are not valiant for the truth upon the earth; for they proceed from evil to evil, and they know not me, saith the LORD. \nTake ye heed every one of his neighbour, and trust ye not in any brother: for every brother will utterly supplant, and every neighbour will walk with slanders. \nAnd they will deceive every one his neighbour, and will not speak the truth: they have taught their tongue to speak lies, and weary themselves to commit iniquity. \nThine habitation is in the midst of deceit; through deceit they refuse to know me, saith the LORD. \nTherefore thus saith the LORD of hosts, Behold, I will melt them, and try them; for how shall I do for the daughter of my people? \nTheir tongue is as an arrow shot out; it speaketh deceit: one speaketh peaceably to his neighbour with his mouth, but in heart he layeth his wait. \nShall I not visit them for these things? saith the LORD: shall not my soul be avenged on such a nation as this? \nFor the mountains will I take up a weeping and wailing, and for the habitations of the wilderness a lamentation, because they are burned up, so that none can pass through them; neither can men hear the voice of the cattle; both the fowl of the heavens and the beast are fled; they are gone. \nAnd I will make Jerusalem heaps, and a den of dragons; and I will make the cities of Judah desolate, without an inhabitant. \nWho is the wise man, that may understand this? and who is he to whom the mouth of the LORD hath spoken, that he may declare it, for what the land perisheth and is burned up like a wilderness, that none passeth through? \nAnd the LORD saith, Because they have forsaken my law which I set before them, and have not obeyed my voice, neither walked therein; \nBut have walked after the imagination of their own heart, and after Baalim, which their fathers taught them: \nTherefore thus saith the LORD of hosts, the God of Israel; Behold, I will feed them, even this people, with wormwood, and give them water of gall to drink. \nI will scatter them also among the heathen, whom neither they nor their fathers have known: and I will send a sword after them, till I have consumed them. \nThus saith the LORD of hosts, Consider ye, and call for the mourning women, that they may come; and send for cunning women, that they may come: \nAnd let them make haste, and take up a wailing for us, that our eyes may run down with tears, and our eyelids gush out with waters. \nFor a voice of wailing is heard out of Zion, How are we spoiled! we are greatly confounded, because we have forsaken the land, because our dwellings have cast us out. \nYet hear the word of the LORD, O ye women, and let your ear receive the word of his mouth, and teach your daughters wailing, and every one her neighbour lamentation. \nFor death is come up into our windows, and is entered into our palaces, to cut off the children from without, and the young men from the streets. \nSpeak, Thus saith the LORD, Even the carcases of men shall fall as dung upon the open field, and as the handful after the harvestman, and none shall gather them. \nThus saith the LORD, Let not the wise man glory in his wisdom, neither let the mighty man glory in his might, let not the rich man glory in his riches: \nBut let him that glorieth glory in this, that he understandeth and knoweth me, that I am the LORD which exercise lovingkindness, judgment, and righteousness, in the earth: for in these things I delight, saith the LORD. \nBehold, the days come, saith the LORD, that I will punish all them which are circumcised with the uncircumcised; \nEgypt, and Judah, and Edom, and the children of Ammon, and Moab, and all that are in the utmost corners, that dwell in the wilderness: for all these nations are uncircumcised, and all the house of Israel are uncircumcised in the heart. \nHear ye the word which the LORD speaketh unto you, O house of Israel: \nThus saith the LORD, Learn not the way of the heathen, and be not dismayed at the signs of heaven; for the heathen are dismayed at them. \nFor the customs of the people are vain: for one cutteth a tree out of the forest, the work of the hands of the workman, with the axe. \nThey deck it with silver and with gold; they fasten it with nails and with hammers, that it move not. \nThey are upright as the palm tree, but speak not: they must needs be borne, because they cannot go. Be not afraid of them; for they cannot do evil, neither also is it in them to do good. \nForasmuch as there is none like unto thee, O LORD; thou art great, and thy name is great in might. \nWho would not fear thee, O King of nations? for to thee doth it appertain: forasmuch as among all the wise men of the nations, and in all their kingdoms, there is none like unto thee. \nBut they are altogether brutish and foolish: the stock is a doctrine of vanities. \nSilver spread into plates is brought from Tarshish, and gold from Uphaz, the work of the workman, and of the hands of the founder: blue and purple is their clothing: they are all the work of cunning men. \nBut the LORD is the true God, he is the living God, and an everlasting king: at his wrath the earth shall tremble, and the nations shall not be able to abide his indignation. \nThus shall ye say unto them, The gods that have not made the heavens and the earth, even they shall perish from the earth, and from under these heavens. \nHe hath made the earth by his power, he hath established the world by his wisdom, and hath stretched out the heavens by his discretion. \nWhen he uttereth his voice, there is a multitude of waters in the heavens, and he causeth the vapours to ascend from the ends of the earth; he maketh lightnings with rain, and bringeth forth the wind out of his treasures. \nEvery man is brutish in his knowledge: every founder is confounded by the graven image: for his molten image is falsehood, and there is no breath in them. \nThey are vanity, and the work of errors: in the time of their visitation they shall perish. \nThe portion of Jacob is not like them: for he is the former of all things; and Israel is the rod of his inheritance: The LORD of hosts is his name. \nGather up thy wares out of the land, O inhabitant of the fortress. \nFor thus saith the LORD, Behold, I will sling out the inhabitants of the land at this once, and will distress them, that they may find it so. \nWoe is me for my hurt! my wound is grievous; but I said, Truly this is a grief, and I must bear it. \nMy tabernacle is spoiled, and all my cords are broken: my children are gone forth of me, and they are not: there is none to stretch forth my tent any more, and to set up my curtains. \nFor the pastors are become brutish, and have not sought the LORD: therefore they shall not prosper, and all their flocks shall be scattered. \nBehold, the noise of the bruit is come, and a great commotion out of the north country, to make the cities of Judah desolate, and a den of dragons. \nO LORD, I know that the way of man is not in himself: it is not in man that walketh to direct his steps. \nO LORD, correct me, but with judgment; not in thine anger, lest thou bring me to nothing. \nPour out thy fury upon the heathen that know thee not, and upon the families that call not on thy name: for they have eaten up Jacob, and devoured him, and consumed him, and have made his habitation desolate. \nThe word that came to Jeremiah from the LORD saying, \nHear ye the words of this covenant, and speak unto the men of Judah, and to the inhabitants of Jerusalem; \nAnd say thou unto them, Thus saith the LORD God of Israel; Cursed be the man that obeyeth not the words of this covenant, \nWhich I commanded your fathers in the day that I brought them forth out of the land of Egypt, from the iron furnace, saying, Obey my voice, and do them, according to all which I command you: so shall ye be my people, and I will be your God: \nThat I may perform the oath which I have sworn unto your fathers, to give them a land flowing with milk and honey, as it is this day. Then answered I, and said, So be it, O LORD. \nThen the LORD said unto me, Proclaim all these words in the cities of Judah, and in the streets of Jerusalem, saying, Hear ye the words of this covenant, and do them. \nFor I earnestly protested unto your fathers in the day that I brought them up out of the land of Egypt, even unto this day, rising early and protesting, saying, Obey my voice. \nYet they obeyed not, nor inclined their ear, but walked every one in the imagination of their evil heart: therefore I will bring upon them all the words of this covenant, which I commanded them to do: but they did them not. \nAnd the LORD said unto me, A conspiracy is found among the men of Judah, and among the inhabitants of Jerusalem. \nThey are turned back to the iniquities of their forefathers, which refused to hear my words; and they went after other gods to serve them: the house of Israel and the house of Judah have broken my covenant which I made with their fathers. \nTherefore thus saith the LORD, Behold, I will bring evil upon them, which they shall not be able to escape; and though they shall cry unto me, I will not hearken unto them. \nThen shall the cities of Judah and inhabitants of Jerusalem go, and cry unto the gods unto whom they offer incense: but they shall not save them at all in the time of their trouble. \nFor according to the number of thy cities were thy gods, O Judah; and according to the number of the streets of Jerusalem have ye set up altars to that shameful thing, even altars to burn incense unto Baal. \nTherefore pray not thou for this people, neither lift up a cry or prayer for them: for I will not hear them in the time that they cry unto me for their trouble. \nWhat hath my beloved to do in mine house, seeing she hath wrought lewdness with many, and the holy flesh is passed from thee? when thou doest evil, then thou rejoicest. \nThe LORD called thy name, A green olive tree, fair, and of goodly fruit: with the noise of a great tumult he hath kindled fire upon it, and the branches of it are broken. \nFor the LORD of hosts, that planted thee, hath pronounced evil against thee, for the evil of the house of Israel and of the house of Judah, which they have done against themselves to provoke me to anger in offering incense unto Baal. \nAnd the LORD hath given me knowledge of it, and I know it: then thou shewedst me their doings. \nBut I was like a lamb or an ox that is brought to the slaughter; and I knew not that they had devised devices against me, saying, Let us destroy the tree with the fruit thereof, and let us cut him off from the land of the living, that his name may be no more remembered. \nBut, O LORD of hosts, that judgest righteously, that triest the reins and the heart, let me see thy vengeance on them: for unto thee have I revealed my cause. \nTherefore thus saith the LORD of the men of Anathoth, that seek thy life, saying, Prophesy not in the name of the LORD, that thou die not by our hand: \nTherefore thus saith the LORD of hosts, Behold, I will punish them: the young men shall die by the sword; their sons and their daughters shall die by famine: \nAnd there shall be no remnant of them: for I will bring evil upon the men of Anathoth, even the year of their visitation. \nRighteous art thou, O LORD, when I plead with thee: yet let me talk with thee of thy judgments: Wherefore doth the way of the wicked prosper? wherefore are all they happy that deal very treacherously? \nThou hast planted them, yea, they have taken root: they grow, yea, they bring forth fruit: thou art near in their mouth, and far from their reins. \nBut thou, O LORD, knowest me: thou hast seen me, and tried mine heart toward thee: pull them out like sheep for the slaughter, and prepare them for the day of slaughter. \nHow long shall the land mourn, and the herbs of every field wither, for the wickedness of them that dwell therein? the beasts are consumed, and the birds; because they said, He shall not see our last end. \nIf thou hast run with the footmen, and they have wearied thee, then how canst thou contend with horses? and if in the land of peace, wherein thou trustedst, they wearied thee, then how wilt thou do in the swelling of Jordan? \nFor even thy brethren, and the house of thy father, even they have dealt treacherously with thee; yea, they have called a multitude after thee: believe them not, though they speak fair words unto thee. \nI have forsaken mine house, I have left mine heritage; I have given the dearly beloved of my soul into the hand of her enemies. \nMine heritage is unto me as a lion in the forest; it crieth out against me: therefore have I hated it. \nMine heritage is unto me as a speckled bird, the birds round about are against her; come ye, assemble all the beasts of the field, come to devour. \nMany pastors have destroyed my vineyard, they have trodden my portion under foot, they have made my pleasant portion a desolate wilderness. \nThey have made it desolate, and being desolate it mourneth unto me; the whole land is made desolate, because no man layeth it to heart. \nThe spoilers are come upon all high places through the wilderness: for the sword of the LORD shall devour from the one end of the land even to the other end of the land: no flesh shall have peace. \nThey have sown wheat, but shall reap thorns: they have put themselves to pain, but shall not profit: and they shall be ashamed of your revenues because of the fierce anger of the LORD. \nThus saith the LORD against all mine evil neighbours, that touch the inheritance which I have caused my people Israel to inherit; Behold, I will pluck them out of their land, and pluck out the house of Judah from among them. \nAnd it shall come to pass, after that I have plucked them out I will return, and have compassion on them, and will bring them again, every man to his heritage, and every man to his land. \nAnd it shall come to pass, if they will diligently learn the ways of my people, to swear by my name, The LORD liveth; as they taught my people to swear by Baal; then shall they be built in the midst of my people. \nBut if they will not obey, I will utterly pluck up and destroy that nation, saith the LORD. \nThus saith the LORD unto me, Go and get thee a linen girdle, and put it upon thy loins, and put it not in water. \nSo I got a girdle according to the word of the LORD, and put it on my loins. \nAnd the word of the LORD came unto me the second time, saying, \nTake the girdle that thou hast got, which is upon thy loins, and arise, go to Euphrates, and hide it there in a hole of the rock. \nSo I went, and hid it by Euphrates, as the LORD commanded me. \nAnd it came to pass after many days, that the LORD said unto me, Arise, go to Euphrates, and take the girdle from thence, which I commanded thee to hide there. \nThen I went to Euphrates, and digged, and took the girdle from the place where I had hid it: and, behold, the girdle was marred, it was profitable for nothing. \nThen the word of the LORD came unto me, saying, \nThus saith the LORD, After this manner will I mar the pride of Judah, and the great pride of Jerusalem. \nThis evil people, which refuse to hear my words, which walk in the imagination of their heart, and walk after other gods, to serve them, and to worship them, shall even be as this girdle, which is good for nothing. \nFor as the girdle cleaveth to the loins of a man, so have I caused to cleave unto me the whole house of Israel and the whole house of Judah, saith the LORD; that they might be unto me for a people, and for a name, and for a praise, and for a glory: but they would not hear. \nTherefore thou shalt speak unto them this word; Thus saith the LORD God of Israel, Every bottle shall be filled with wine: and they shall say unto thee, Do we not certainly know that every bottle shall be filled with wine? \nThen shalt thou say unto them, Thus saith the LORD, Behold, I will fill all the inhabitants of this land, even the kings that sit upon David's throne, and the priests, and the prophets, and all the inhabitants of Jerusalem, with drunkenness. \nAnd I will dash them one against another, even the fathers and the sons together, saith the LORD: I will not pity, nor spare, nor have mercy, but destroy them. \nHear ye, and give ear; be not proud: for the LORD hath spoken. \nGive glory to the LORD your God, before he cause darkness, and before your feet stumble upon the dark mountains, and, while ye look for light, he turn it into the shadow of death, and make it gross darkness. \nBut if ye will not hear it, my soul shall weep in secret places for your pride; and mine eye shall weep sore, and run down with tears, because the LORD's flock is carried away captive. \nSay unto the king and to the queen, Humble yourselves, sit down: for your principalities shall come down, even the crown of your glory. \nThe cities of the south shall be shut up, and none shall open them: Judah shall be carried away captive all of it, it shall be wholly carried away captive. \nLift up your eyes, and behold them that come from the north: where is the flock that was given thee, thy beautiful flock? \nWhat wilt thou say when he shall punish thee? for thou hast taught them to be captains, and as chief over thee: shall not sorrows take thee, as a woman in travail? \nAnd if thou say in thine heart, Wherefore come these things upon me? For the greatness of thine iniquity are thy skirts discovered, and thy heels made bare. \nCan the Ethiopian change his skin, or the leopard his spots? then may ye also do good, that are accustomed to do evil. \nTherefore will I scatter them as the stubble that passeth away by the wind of the wilderness. \nThis is thy lot, the portion of thy measures from me, saith the LORD; because thou hast forgotten me, and trusted in falsehood. \nTherefore will I discover thy skirts upon thy face, that thy shame may appear. \nI have seen thine adulteries, and thy neighings, the lewdness of thy whoredom, and thine abominations on the hills in the fields. Woe unto thee, O Jerusalem! wilt thou not be made clean? when shall it once be? \nThe word of the LORD that came to Jeremiah concerning the dearth. \nJudah mourneth, and the gates thereof languish; they are black unto the ground; and the cry of Jerusalem is gone up. \nAnd their nobles have sent their little ones to the waters: they came to the pits, and found no water; they returned with their vessels empty; they were ashamed and confounded, and covered their heads. \nBecause the ground is chapt, for there was no rain in the earth, the plowmen were ashamed, they covered their heads. \nYea, the hind also calved in the field, and forsook it, because there was no grass. \nAnd the wild asses did stand in the high places, they snuffed up the wind like dragons; their eyes did fail, because there was no grass. \nO LORD, though our iniquities testify against us, do thou it for thy name's sake: for our backslidings are many; we have sinned against thee. \nO the hope of Israel, the saviour thereof in time of trouble, why shouldest thou be as a stranger in the land, and as a wayfaring man that turneth aside to tarry for a night? \nWhy shouldest thou be as a man astonied, as a mighty man that cannot save? yet thou, O LORD, art in the midst of us, and we are called by thy name; leave us not. \nThus saith the LORD unto this people, Thus have they loved to wander, they have not refrained their feet, therefore the LORD doth not accept them; he will now remember their iniquity, and visit their sins. \nThen said the LORD unto me, Pray not for this people for their good. \nWhen they fast, I will not hear their cry; and when they offer burnt offering and an oblation, I will not accept them: but I will consume them by the sword, and by the famine, and by the pestilence. \nThen said I, Ah, Lord GOD! behold, the prophets say unto them, Ye shall not see the sword, neither shall ye have famine; but I will give you assured peace in this place. \nThen the LORD said unto me, The prophets prophesy lies in my name: I sent them not, neither have I commanded them, neither spake unto them: they prophesy unto you a false vision and divination, and a thing of nought, and the deceit of their heart. \nTherefore thus saith the LORD concerning the prophets that prophesy in my name, and I sent them not, yet they say, Sword and famine shall not be in this land; By sword and famine shall those prophets be consumed. \nAnd the people to whom they prophesy shall be cast out in the streets of Jerusalem because of the famine and the sword; and they shall have none to bury them, them, their wives, nor their sons, nor their daughters: for I will pour their wickedness upon them. \nTherefore thou shalt say this word unto them; Let mine eyes run down with tears night and day, and let them not cease: for the virgin daughter of my people is broken with a great breach, with a very grievous blow. \nIf I go forth into the field, then behold the slain with the sword! and if I enter into the city, then behold them that are sick with famine! yea, both the prophet and the priest go about into a land that they know not. \nHast thou utterly rejected Judah? hath thy soul lothed Zion? why hast thou smitten us, and there is no healing for us? we looked for peace, and there is no good; and for the time of healing, and behold trouble! \nWe acknowledge, O LORD, our wickedness, and the iniquity of our fathers: for we have sinned against thee. \nDo not abhor us, for thy name's sake, do not disgrace the throne of thy glory: remember, break not thy covenant with us. \nAre there any among the vanities of the Gentiles that can cause rain? or can the heavens give showers? art not thou he, O LORD our God? therefore we will wait upon thee: for thou hast made all these things. \nThen said the LORD unto me, Though Moses and Samuel stood before me, yet my mind could not be toward this people: cast them out of my sight, and let them go forth. \nAnd it shall come to pass, if they say unto thee, Whither shall we go forth? then thou shalt tell them, Thus saith the LORD; Such as are for death, to death; and such as are for the sword, to the sword; and such as are for the famine, to the famine; and such as are for the captivity, to the captivity. \nAnd I will appoint over them four kinds, saith the LORD: the sword to slay, and the dogs to tear, and the fowls of the heaven, and the beasts of the earth, to devour and destroy. \nAnd I will cause them to be removed into all kingdoms of the earth, because of Manasseh the son of Hezekiah king of Judah, for that which he did in Jerusalem. \nFor who shall have pity upon thee, O Jerusalem? or who shall bemoan thee? or who shall go aside to ask how thou doest? \nThou hast forsaken me, saith the LORD, thou art gone backward: therefore will I stretch out my hand against thee, and destroy thee; I am weary with repenting. \nAnd I will fan them with a fan in the gates of the land; I will bereave them of children, I will destroy my people since they return not from their ways. \nTheir widows are increased to me above the sand of the seas: I have brought upon them against the mother of the young men a spoiler at noonday: I have caused him to fall upon it suddenly, and terrors upon the city. \nShe that hath borne seven languisheth: she hath given up the ghost; her sun is gone down while it was yet day: she hath been ashamed and confounded: and the residue of them will I deliver to the sword before their enemies, saith the LORD. \nWoe is me, my mother, that thou hast borne me a man of strife and a man of contention to the whole earth! I have neither lent on usury, nor men have lent to me on usury; yet every one of them doth curse me. \nThe LORD said, Verily it shall be well with thy remnant; verily I will cause the enemy to entreat thee well in the time of evil and in the time of affliction. \nShall iron break the northern iron and the steel? \nThy substance and thy treasures will I give to the spoil without price, and that for all thy sins, even in all thy borders. \nAnd I will make thee to pass with thine enemies into a land which thou knowest not: for a fire is kindled in mine anger, which shall burn upon you. \nO LORD, thou knowest: remember me, and visit me, and revenge me of my persecutors; take me not away in thy longsuffering: know that for thy sake I have suffered rebuke. \nThy words were found, and I did eat them; and thy word was unto me the joy and rejoicing of mine heart: for I am called by thy name, O LORD God of hosts. \nI sat not in the assembly of the mockers, nor rejoiced; I sat alone because of thy hand: for thou hast filled me with indignation. \nWhy is my pain perpetual, and my wound incurable, which refuseth to be healed? wilt thou be altogether unto me as a liar, and as waters that fail? \nTherefore thus saith the LORD, If thou return, then will I bring thee again, and thou shalt stand before me: and if thou take forth the precious from the vile, thou shalt be as my mouth: let them return unto thee; but return not thou unto them. \nAnd I will make thee unto this people a fenced brasen wall: and they shall fight against thee, but they shall not prevail against thee: for I am with thee to save thee and to deliver thee, saith the LORD. \nAnd I will deliver thee out of the hand of the wicked, and I will redeem thee out of the hand of the terrible. \nThe word of the LORD came also unto me, saying, \nThou shalt not take thee a wife, neither shalt thou have sons or daughters in this place. \nFor thus saith the LORD concerning the sons and concerning the daughters that are born in this place, and concerning their mothers that bare them, and concerning their fathers that begat them in this land; \nThey shall die of grievous deaths; they shall not be lamented; neither shall they be buried; but they shall be as dung upon the face of the earth: and they shall be consumed by the sword, and by famine; and their carcases shall be meat for the fowls of heaven, and for the beasts of the earth. \nFor thus saith the LORD, Enter not into the house of mourning, neither go to lament nor bemoan them: for I have taken away my peace from this people, saith the LORD, even lovingkindness and mercies. \nBoth the great and the small shall die in this land: they shall not be buried, neither shall men lament for them, nor cut themselves, nor make themselves bald for them: \nNeither shall men tear themselves for them in mourning, to comfort them for the dead; neither shall men give them the cup of consolation to drink for their father or for their mother. \nThou shalt not also go into the house of feasting, to sit with them to eat and to drink. \nFor thus saith the LORD of hosts, the God of Israel; Behold, I will cause to cease out of this place in your eyes, and in your days, the voice of mirth, and the voice of gladness, the voice of the bridegroom, and the voice of the bride. \nAnd it shall come to pass, when thou shalt shew this people all these words, and they shall say unto thee, Wherefore hath the LORD pronounced all this great evil against us? or what is our iniquity? or what is our sin that we have committed against the LORD our God? \nThen shalt thou say unto them, Because your fathers have forsaken me, saith the LORD, and have walked after other gods, and have served them, and have worshipped them, and have forsaken me, and have not kept my law; \nAnd ye have done worse than your fathers; for, behold, ye walk every one after the imagination of his evil heart, that they may not hearken unto me: \nTherefore will I cast you out of this land into a land that ye know not, neither ye nor your fathers; and there shall ye serve other gods day and night; where I will not shew you favour. \nTherefore, behold, the days come, saith the LORD, that it shall no more be said, The LORD liveth, that brought up the children of Israel out of the land of Egypt; \nBut, The LORD liveth, that brought up the children of Israel from the land of the north, and from all the lands whither he had driven them: and I will bring them again into their land that I gave unto their fathers. \nBehold, I will send for many fishers, saith the LORD, and they shall fish them; and after will I send for many hunters, and they shall hunt them from every mountain, and from every hill, and out of the holes of the rocks. \nFor mine eyes are upon all their ways: they are not hid from my face, neither is their iniquity hid from mine eyes. \nAnd first I will recompense their iniquity and their sin double; because they have defiled my land, they have filled mine inheritance with the carcases of their detestable and abominable things. \nO LORD, my strength, and my fortress, and my refuge in the day of affliction, the Gentiles shall come unto thee from the ends of the earth, and shall say, Surely our fathers have inherited lies, vanity, and things wherein there is no profit. \nShall a man make gods unto himself, and they are no gods? \nTherefore, behold, I will this once cause them to know, I will cause them to know mine hand and my might; and they shall know that my name is The LORD. \nThe sin of Judah is written with a pen of iron, and with the point of a diamond: it is graven upon the table of their heart, and upon the horns of your altars; \nWhilst their children remember their altars and their groves by the green trees upon the high hills. \nO my mountain in the field, I will give thy substance and all thy treasures to the spoil, and thy high places for sin, throughout all thy borders. \nAnd thou, even thyself, shalt discontinue from thine heritage that I gave thee; and I will cause thee to serve thine enemies in the land which thou knowest not: for ye have kindled a fire in mine anger, which shall burn for ever. \nThus saith the LORD; Cursed be the man that trusteth in man, and maketh flesh his arm, and whose heart departeth from the LORD. \nFor he shall be like the heath in the desert, and shall not see when good cometh; but shall inhabit the parched places in the wilderness, in a salt land and not inhabited. \nBlessed is the man that trusteth in the LORD, and whose hope the LORD is. \nFor he shall be as a tree planted by the waters, and that spreadeth out her roots by the river, and shall not see when heat cometh, but her leaf shall be green; and shall not be careful in the year of drought, neither shall cease from yielding fruit. \nThe heart is deceitful above all things, and desperately wicked: who can know it? \nI the LORD search the heart, I try the reins, even to give every man according to his ways, and according to the fruit of his doings. \nAs the partridge sitteth on eggs, and hatcheth them not; so he that getteth riches, and not by right, shall leave them in the midst of his days, and at his end shall be a fool. \nA glorious high throne from the beginning is the place of our sanctuary. \nO LORD, the hope of Israel, all that forsake thee shall be ashamed, and they that depart from me shall be written in the earth, because they have forsaken the LORD, the fountain of living waters. \nHeal me, O LORD, and I shall be healed; save me, and I shall be saved: for thou art my praise. \nBehold, they say unto me, Where is the word of the LORD? let it come now. \nAs for me, I have not hastened from being a pastor to follow thee: neither have I desired the woeful day; thou knowest: that which came out of my lips was right before thee. \nBe not a terror unto me: thou art my hope in the day of evil. \nLet them be confounded that persecute me, but let not me be confounded: let them be dismayed, but let not me be dismayed: bring upon them the day of evil, and destroy them with double destruction. \nThus said the LORD unto me; Go and stand in the gate of the children of the people, whereby the kings of Judah come in, and by the which they go out, and in all the gates of Jerusalem; \nAnd say unto them, Hear ye the word of the LORD, ye kings of Judah, and all Judah, and all the inhabitants of Jerusalem, that enter in by these gates: \nThus saith the LORD; Take heed to yourselves, and bear no burden on the sabbath day, nor bring it in by the gates of Jerusalem; \nNeither carry forth a burden out of your houses on the sabbath day, neither do ye any work, but hallow ye the sabbath day, as I commanded your fathers. \nBut they obeyed not, neither inclined their ear, but made their neck stiff, that they might not hear, nor receive instruction. \nAnd it shall come to pass, if ye diligently hearken unto me, saith the LORD, to bring in no burden through the gates of this city on the sabbath day, but hallow the sabbath day, to do no work therein; \nThen shall there enter into the gates of this city kings and princes sitting upon the throne of David, riding in chariots and on horses, they, and their princes, the men of Judah, and the inhabitants of Jerusalem: and this city shall remain for ever. \nAnd they shall come from the cities of Judah, and from the places about Jerusalem, and from the land of Benjamin, and from the plain, and from the mountains, and from the south, bringing burnt offerings, and sacrifices, and meat offerings, and incense, and bringing sacrifices of praise, unto the house of the LORD. \nBut if ye will not hearken unto me to hallow the sabbath day, and not to bear a burden, even entering in at the gates of Jerusalem on the sabbath day; then will I kindle a fire in the gates thereof, and it shall devour the palaces of Jerusalem, and it shall not be quenched. \nThe word which came to Jeremiah from the LORD, saying, \nArise, and go down to the potter's house, and there I will cause thee to hear my words. \nThen I went down to the potter's house, and, behold, he wrought a work on the wheels. \nAnd the vessel that he made of clay was marred in the hand of the potter: so he made it again another vessel, as seemed good to the potter to make it. \nThen the word of the LORD came to me, saying, \nO house of Israel, cannot I do with you as this potter? saith the LORD. Behold, as the clay is in the potter's hand, so are ye in mine hand, O house of Israel. \nAt what instant I shall speak concerning a nation, and concerning a kingdom, to pluck up, and to pull down, and to destroy it; \nIf that nation, against whom I have pronounced, turn from their evil, I will repent of the evil that I thought to do unto them. \nAnd at what instant I shall speak concerning a nation, and concerning a kingdom, to build and to plant it; \nIf it do evil in my sight, that it obey not my voice, then I will repent of the good, wherewith I said I would benefit them. \nNow therefore go to, speak to the men of Judah, and to the inhabitants of Jerusalem, saying, Thus saith the LORD; Behold, I frame evil against you, and devise a device against you: return ye now every one from his evil way, and make your ways and your doings good. \nAnd they said, There is no hope: but we will walk after our own devices, and we will every one do the imagination of his evil heart. \nTherefore thus saith the LORD; Ask ye now among the heathen, who hath heard such things: the virgin of Israel hath done a very horrible thing. \nWill a man leave the snow of Lebanon which cometh from the rock of the field? or shall the cold flowing waters that come from another place be forsaken? \nBecause my people hath forgotten me, they have burned incense to vanity, and they have caused them to stumble in their ways from the ancient paths, to walk in paths, in a way not cast up; \nTo make their land desolate, and a perpetual hissing; every one that passeth thereby shall be astonished, and wag his head. \nI will scatter them as with an east wind before the enemy; I will shew them the back, and not the face, in the day of their calamity. \nThen said they, Come and let us devise devices against Jeremiah; for the law shall not perish from the priest, nor counsel from the wise, nor the word from the prophet. Come, and let us smite him with the tongue, and let us not give heed to any of his words. \nGive heed to me, O LORD, and hearken to the voice of them that contend with me. \nShall evil be recompensed for good? for they have digged a pit for my soul. Remember that I stood before thee to speak good for them, and to turn away thy wrath from them. \nTherefore deliver up their children to the famine, and pour out their blood by the force of the sword; and let their wives be bereaved of their children, and be widows; and let their men be put to death; let their young men be slain by the sword in battle. \nLet a cry be heard from their houses, when thou shalt bring a troop suddenly upon them: for they have digged a pit to take me, and hid snares for my feet. \nYet, LORD, thou knowest all their counsel against me to slay me: forgive not their iniquity, neither blot out their sin from thy sight, but let them be overthrown before thee; deal thus with them in the time of thine anger. \nThus saith the LORD, Go and get a potter's earthen bottle, and take of the ancients of the people, and of the ancients of the priests; \nAnd go forth unto the valley of the son of Hinnom, which is by the entry of the east gate, and proclaim there the words that I shall tell thee, \nAnd say, Hear ye the word of the LORD, O kings of Judah, and inhabitants of Jerusalem; Thus saith the LORD of hosts, the God of Israel; Behold, I will bring evil upon this place, the which whosoever heareth, his ears shall tingle. \nBecause they have forsaken me, and have estranged this place, and have burned incense in it unto other gods, whom neither they nor their fathers have known, nor the kings of Judah, and have filled this place with the blood of innocents; \nThey have built also the high places of Baal, to burn their sons with fire for burnt offerings unto Baal, which I commanded not, nor spake it, neither came it into my mind: \nTherefore, behold, the days come, saith the LORD, that this place shall no more be called Tophet, nor The valley of the son of Hinnom, but The valley of slaughter. \nAnd I will make void the counsel of Judah and Jerusalem in this place; and I will cause them to fall by the sword before their enemies, and by the hands of them that seek their lives: and their carcases will I give to be meat for the fowls of the heaven, and for the beasts of the earth. \nAnd I will make this city desolate, and an hissing; every one that passeth thereby shall be astonished and hiss because of all the plagues thereof. \nAnd I will cause them to eat the flesh of their sons and the flesh of their daughters, and they shall eat every one the flesh of his friend in the siege and straitness, wherewith their enemies, and they that seek their lives, shall straiten them. \nThen shalt thou break the bottle in the sight of the men that go with thee, \nAnd shalt say unto them, Thus saith the LORD of hosts; Even so will I break this people and this city, as one breaketh a potter's vessel, that cannot be made whole again: and they shall bury them in Tophet, till there be no place to bury. \nThus will I do unto this place, saith the LORD, and to the inhabitants thereof, and even make this city as Tophet: \nAnd the houses of Jerusalem, and the houses of the kings of Judah, shall be defiled as the place of Tophet, because of all the houses upon whose roofs they have burned incense unto all the host of heaven, and have poured out drink offerings unto other gods. \nThen came Jeremiah from Tophet, whither the LORD had sent him to prophesy; and he stood in the court of the LORD's house; and said to all the people, \nThus saith the LORD of hosts, the God of Israel; Behold, I will bring upon this city and upon all her towns all the evil that I have pronounced against it, because they have hardened their necks, that they might not hear my words. \nNow Pashur the son of Immer the priest, who was also chief governor in the house of the LORD, heard that Jeremiah prophesied these things. \nThen Pashur smote Jeremiah the prophet, and put him in the stocks that were in the high gate of Benjamin, which was by the house of the LORD. \nAnd it came to pass on the morrow, that Pashur brought forth Jeremiah out of the stocks. Then said Jeremiah unto him, The LORD hath not called thy name Pashur, but Magormissabib. \nFor thus saith the LORD, Behold, I will make thee a terror to thyself, and to all thy friends: and they shall fall by the sword of their enemies, and thine eyes shall behold it: and I will give all Judah into the hand of the king of Babylon, and he shall carry them captive into Babylon, and shall slay them with the sword. \nMoreover I will deliver all the strength of this city, and all the labours thereof, and all the precious things thereof, and all the treasures of the kings of Judah will I give into the hand of their enemies, which shall spoil them, and take them, and carry them to Babylon. \nAnd thou, Pashur, and all that dwell in thine house shall go into captivity: and thou shalt come to Babylon, and there thou shalt die, and shalt be buried there, thou, and all thy friends, to whom thou hast prophesied lies. \nO LORD, thou hast deceived me, and I was deceived; thou art stronger than I, and hast prevailed: I am in derision daily, every one mocketh me. \nFor since I spake, I cried out, I cried violence and spoil; because the word of the LORD was made a reproach unto me, and a derision, daily. \nThen I said, I will not make mention of him, nor speak any more in his name. But his word was in mine heart as a burning fire shut up in my bones, and I was weary with forbearing, and I could not stay. \nFor I heard the defaming of many, fear on every side. Report, say they, and we will report it. All my familiars watched for my halting, saying, Peradventure he will be enticed, and we shall prevail against him, and we shall take our revenge on him. \nBut the LORD is with me as a mighty terrible one: therefore my persecutors shall stumble, and they shall not prevail: they shall be greatly ashamed; for they shall not prosper: their everlasting confusion shall never be forgotten. \nBut, O LORD of hosts, that triest the righteous, and seest the reins and the heart, let me see thy vengeance on them: for unto thee have I opened my cause. \nSing unto the LORD, praise ye the LORD: for he hath delivered the soul of the poor from the hand of evildoers. \nCursed be the day wherein I was born: let not the day wherein my mother bare me be blessed. \nCursed be the man who brought tidings to my father, saying, A man child is born unto thee; making him very glad. \nAnd let that man be as the cities which the LORD overthrew, and repented not: and let him hear the cry in the morning, and the shouting at noontide; \nBecause he slew me not from the womb; or that my mother might have been my grave, and her womb to be always great with me. \nWherefore came I forth out of the womb to see labour and sorrow, that my days should be consumed with shame? \nThe word which came unto Jeremiah from the LORD, when king Zedekiah sent unto him Pashur the son of Melchiah, and Zephaniah the son of Maaseiah the priest, saying, \nEnquire, I pray thee, of the LORD for us; for Nebuchadrezzar king of Babylon maketh war against us; if so be that the LORD will deal with us according to all his wondrous works, that he may go up from us. \nThen said Jeremiah unto them, Thus shall ye say to Zedekiah: \nThus saith the LORD God of Israel; Behold, I will turn back the weapons of war that are in your hands, wherewith ye fight against the king of Babylon, and against the Chaldeans, which besiege you without the walls, and I will assemble them into the midst of this city. \nAnd I myself will fight against you with an outstretched hand and with a strong arm, even in anger, and in fury, and in great wrath. \nAnd I will smite the inhabitants of this city, both man and beast: they shall die of a great pestilence. \nAnd afterward, saith the LORD, I will deliver Zedekiah king of Judah, and his servants, and the people, and such as are left in this city from the pestilence, from the sword, and from the famine, into the hand of Nebuchadrezzar king of Babylon, and into the hand of their enemies, and into the hand of those that seek their life: and he shall smite them with the edge of the sword; he shall not spare them, neither have pity, nor have mercy. \nAnd unto this people thou shalt say, Thus saith the LORD; Behold, I set before you the way of life, and the way of death. \nHe that abideth in this city shall die by the sword, and by the famine, and by the pestilence: but he that goeth out, and falleth to the Chaldeans that besiege you, he shall live, and his life shall be unto him for a prey. \nFor I have set my face against this city for evil, and not for good, saith the LORD: it shall be given into the hand of the king of Babylon, and he shall burn it with fire. \nAnd touching the house of the king of Judah, say, Hear ye the word of the LORD; \nO house of David, thus saith the LORD; Execute judgment in the morning, and deliver him that is spoiled out of the hand of the oppressor, lest my fury go out like fire, and burn that none can quench it, because of the evil of your doings. \nBehold, I am against thee, O inhabitant of the valley, and rock of the plain, saith the LORD; which say, Who shall come down against us? or who shall enter into our habitations? \nBut I will punish you according to the fruit of your doings, saith the LORD: and I will kindle a fire in the forest thereof, and it shall devour all things round about it. \nThus saith the LORD; Go down to the house of the king of Judah, and speak there this word, \nAnd say, Hear the word of the LORD, O king of Judah, that sittest upon the throne of David, thou, and thy servants, and thy people that enter in by these gates: \nThus saith the LORD; Execute ye judgment and righteousness, and deliver the spoiled out of the hand of the oppressor: and do no wrong, do no violence to the stranger, the fatherless, nor the widow, neither shed innocent blood in this place. \nFor if ye do this thing indeed, then shall there enter in by the gates of this house kings sitting upon the throne of David, riding in chariots and on horses, he, and his servants, and his people. \nBut if ye will not hear these words, I swear by myself, saith the LORD, that this house shall become a desolation. \nFor thus saith the LORD unto the king's house of Judah; Thou art Gilead unto me, and the head of Lebanon: yet surely I will make thee a wilderness, and cities which are not inhabited. \nAnd I will prepare destroyers against thee, every one with his weapons: and they shall cut down thy choice cedars, and cast them into the fire. \nAnd many nations shall pass by this city, and they shall say every man to his neighbour, Wherefore hath the LORD done thus unto this great city? \nThen they shall answer, Because they have forsaken the covenant of the LORD their God, and worshipped other gods, and served them. \nWeep ye not for the dead, neither bemoan him: but weep sore for him that goeth away: for he shall return no more, nor see his native country. \nFor thus saith the LORD touching Shallum the son of Josiah king of Judah, which reigned instead of Josiah his father, which went forth out of this place; He shall not return thither any more: \nBut he shall die in the place whither they have led him captive, and shall see this land no more. \nWoe unto him that buildeth his house by unrighteousness, and his chambers by wrong; that useth his neighbour's service without wages, and giveth him not for his work; \nThat saith, I will build me a wide house and large chambers, and cutteth him out windows; and it is cieled with cedar, and painted with vermilion. \nShalt thou reign, because thou closest thyself in cedar? did not thy father eat and drink, and do judgment and justice, and then it was well with him? \nHe judged the cause of the poor and needy; then it was well with him: was not this to know me? saith the LORD. \nBut thine eyes and thine heart are not but for thy covetousness, and for to shed innocent blood, and for oppression, and for violence, to do it. \nTherefore thus saith the LORD concerning Jehoiakim the son of Josiah king of Judah; They shall not lament for him, saying, Ah my brother! or, Ah sister! they shall not lament for him, saying, Ah lord! or, Ah his glory! \nHe shall be buried with the burial of an ass, drawn and cast forth beyond the gates of Jerusalem. \nGo up to Lebanon, and cry; and lift up thy voice in Bashan, and cry from the passages: for all thy lovers are destroyed. \nI spake unto thee in thy prosperity; but thou saidst, I will not hear. This hath been thy manner from thy youth, that thou obeyedst not my voice. \nThe wind shall eat up all thy pastors, and thy lovers shall go into captivity: surely then shalt thou be ashamed and confounded for all thy wickedness. \nO inhabitant of Lebanon, that makest thy nest in the cedars, how gracious shalt thou be when pangs come upon thee, the pain as of a woman in travail! \nAs I live, saith the LORD, though Coniah the son of Jehoiakim king of Judah were the signet upon my right hand, yet would I pluck thee thence; \nAnd I will give thee into the hand of them that seek thy life, and into the hand of them whose face thou fearest, even into the hand of Nebuchadrezzar king of Babylon, and into the hand of the Chaldeans. \nAnd I will cast thee out, and thy mother that bare thee, into another country, where ye were not born; and there shall ye die. \nBut to the land whereunto they desire to return, thither shall they not return. \nIs this man Coniah a despised broken idol? is he a vessel wherein is no pleasure? wherefore are they cast out, he and his seed, and are cast into a land which they know not? \nO earth, earth, earth, hear the word of the LORD. \nThus saith the LORD, Write ye this man childless, a man that shall not prosper in his days: for no man of his seed shall prosper, sitting upon the throne of David, and ruling any more in Judah. \nWoe be unto the pastors that destroy and scatter the sheep of my pasture! saith the LORD. \nTherefore thus saith the LORD God of Israel against the pastors that feed my people; Ye have scattered my flock, and driven them away, and have not visited them: behold, I will visit upon you the evil of your doings, saith the LORD. \nAnd I will gather the remnant of my flock out of all countries whither I have driven them, and will bring them again to their folds; and they shall be fruitful and increase. \nAnd I will set up shepherds over them which shall feed them: and they shall fear no more, nor be dismayed, neither shall they be lacking, saith the LORD. \nBehold, the days come, saith the LORD, that I will raise unto David a righteous Branch, and a King shall reign and prosper, and shall execute judgment and justice in the earth. \nIn his days Judah shall be saved, and Israel shall dwell safely: and this is his name whereby he shall be called, THE LORD OUR RIGHTEOUSNESS. \nTherefore, behold, the days come, saith the LORD, that they shall no more say, The LORD liveth, which brought up the children of Israel out of the land of Egypt; \nBut, The LORD liveth, which brought up and which led the seed of the house of Israel out of the north country, and from all countries whither I had driven them; and they shall dwell in their own land. \nMine heart within me is broken because of the prophets; all my bones shake; I am like a drunken man, and like a man whom wine hath overcome, because of the LORD, and because of the words of his holiness. \nFor the land is full of adulterers; for because of swearing the land mourneth; the pleasant places of the wilderness are dried up, and their course is evil, and their force is not right. \nFor both prophet and priest are profane; yea, in my house have I found their wickedness, saith the LORD. \nWherefore their way shall be unto them as slippery ways in the darkness: they shall be driven on, and fall therein: for I will bring evil upon them, even the year of their visitation, saith the LORD. \nAnd I have seen folly in the prophets of Samaria; they prophesied in Baal, and caused my people Israel to err. \nI have seen also in the prophets of Jerusalem an horrible thing: they commit adultery, and walk in lies: they strengthen also the hands of evildoers, that none doth return from his wickedness; they are all of them unto me as Sodom, and the inhabitants thereof as Gomorrah. \nTherefore thus saith the LORD of hosts concerning the prophets; Behold, I will feed them with wormwood, and make them drink the water of gall: for from the prophets of Jerusalem is profaneness gone forth into all the land. \nThus saith the LORD of hosts, Hearken not unto the words of the prophets that prophesy unto you: they make you vain: they speak a vision of their own heart, and not out of the mouth of the LORD. \nThey say still unto them that despise me, The LORD hath said, Ye shall have peace; and they say unto every one that walketh after the imagination of his own heart, No evil shall come upon you. \nFor who hath stood in the counsel of the LORD, and hath perceived and heard his word? who hath marked his word, and heard it? \nBehold, a whirlwind of the LORD is gone forth in fury, even a grievous whirlwind: it shall fall grievously upon the head of the wicked. \nThe anger of the LORD shall not return, until he have executed, and till he have performed the thoughts of his heart: in the latter days ye shall consider it perfectly. \nI have not sent these prophets, yet they ran: I have not spoken to them, yet they prophesied. \nBut if they had stood in my counsel, and had caused my people to hear my words, then they should have turned them from their evil way, and from the evil of their doings. \nAm I a God at hand, saith the LORD, and not a God afar off? \nCan any hide himself in secret places that I shall not see him? saith the LORD. Do not I fill heaven and earth? saith the LORD. \nI have heard what the prophets said, that prophesy lies in my name, saying, I have dreamed, I have dreamed. \nHow long shall this be in the heart of the prophets that prophesy lies? yea, they are prophets of the deceit of their own heart; \nWhich think to cause my people to forget my name by their dreams which they tell every man to his neighbour, as their fathers have forgotten my name for Baal. \nThe prophet that hath a dream, let him tell a dream; and he that hath my word, let him speak my word faithfully. What is the chaff to the wheat? saith the LORD. \nIs not my word like as a fire? saith the LORD; and like a hammer that breaketh the rock in pieces? \nTherefore, behold, I am against the prophets, saith the LORD, that steal my words every one from his neighbour. \nBehold, I am against the prophets, saith the LORD, that use their tongues, and say, He saith. \nBehold, I am against them that prophesy false dreams, saith the LORD, and do tell them, and cause my people to err by their lies, and by their lightness; yet I sent them not, nor commanded them: therefore they shall not profit this people at all, saith the LORD. \nAnd when this people, or the prophet, or a priest, shall ask thee, saying, What is the burden of the LORD? thou shalt then say unto them, What burden? I will even forsake you, saith the LORD. \nAnd as for the prophet, and the priest, and the people, that shall say, The burden of the LORD, I will even punish that man and his house. \nThus shall ye say every one to his neighbour, and every one to his brother, What hath the LORD answered? and, What hath the LORD spoken? \nAnd the burden of the LORD shall ye mention no more: for every man's word shall be his burden; for ye have perverted the words of the living God, of the LORD of hosts our God. \nThus shalt thou say to the prophet, What hath the LORD answered thee? and, What hath the LORD spoken? \nBut since ye say, The burden of the LORD; therefore thus saith the LORD; Because ye say this word, The burden of the LORD, and I have sent unto you, saying, Ye shall not say, The burden of the LORD; \nTherefore, behold, I, even I, will utterly forget you, and I will forsake you, and the city that I gave you and your fathers, and cast you out of my presence: \nAnd I will bring an everlasting reproach upon you, and a perpetual shame, which shall not be forgotten. \nThe LORD shewed me, and, behold, two baskets of figs were set before the temple of the LORD, after that Nebuchadrezzar king of Babylon had carried away captive Jeconiah the son of Jehoiakim king of Judah, and the princes of Judah, with the carpenters and smiths, from Jerusalem, and had brought them to Babylon. \nOne basket had very good figs, even like the figs that are first ripe: and the other basket had very naughty figs, which could not be eaten, they were so bad. \nThen said the LORD unto me, What seest thou, Jeremiah? And I said, Figs; the good figs, very good; and the evil, very evil, that cannot be eaten, they are so evil. \nAgain the word of the LORD came unto me, saying, \nThus saith the LORD, the God of Israel; Like these good figs, so will I acknowledge them that are carried away captive of Judah, whom I have sent out of this place into the land of the Chaldeans for their good. \nFor I will set mine eyes upon them for good, and I will bring them again to this land: and I will build them, and not pull them down; and I will plant them, and not pluck them up. \nAnd I will give them an heart to know me, that I am the LORD: and they shall be my people, and I will be their God: for they shall return unto me with their whole heart. \nAnd as the evil figs, which cannot be eaten, they are so evil; surely thus saith the LORD, So will I give Zedekiah the king of Judah, and his princes, and the residue of Jerusalem, that remain in this land, and them that dwell in the land of Egypt: \nAnd I will deliver them to be removed into all the kingdoms of the earth for their hurt, to be a reproach and a proverb, a taunt and a curse, in all places whither I shall drive them. \nAnd I will send the sword, the famine, and the pestilence, among them, till they be consumed from off the land that I gave unto them and to their fathers. \nThe word that came to Jeremiah concerning all the people of Judah in the fourth year of Jehoiakim the son of Josiah king of Judah, that was the first year of Nebuchadrezzar king of Babylon; \nThe which Jeremiah the prophet spake unto all the people of Judah, and to all the inhabitants of Jerusalem, saying, \nFrom the thirteenth year of Josiah the son of Amon king of Judah, even unto this day, that is the three and twentieth year, the word of the LORD hath come unto me, and I have spoken unto you, rising early and speaking; but ye have not hearkened. \nAnd the LORD hath sent unto you all his servants the prophets, rising early and sending them; but ye have not hearkened, nor inclined your ear to hear. \nThey said, Turn ye again now every one from his evil way, and from the evil of your doings, and dwell in the land that the LORD hath given unto you and to your fathers for ever and ever: \nAnd go not after other gods to serve them, and to worship them, and provoke me not to anger with the works of your hands; and I will do you no hurt. \nYet ye have not hearkened unto me, saith the LORD; that ye might provoke me to anger with the works of your hands to your own hurt. \nTherefore thus saith the LORD of hosts; Because ye have not heard my words, \nBehold, I will send and take all the families of the north, saith the LORD, and Nebuchadrezzar the king of Babylon, my servant, and will bring them against this land, and against the inhabitants thereof, and against all these nations round about, and will utterly destroy them, and make them an astonishment, and an hissing, and perpetual desolations. \nMoreover I will take from them the voice of mirth, and the voice of gladness, the voice of the bridegroom, and the voice of the bride, the sound of the millstones, and the light of the candle. \nAnd this whole land shall be a desolation, and an astonishment; and these nations shall serve the king of Babylon seventy years. \nAnd it shall come to pass, when seventy years are accomplished, that I will punish the king of Babylon, and that nation, saith the LORD, for their iniquity, and the land of the Chaldeans, and will make it perpetual desolations. \nAnd I will bring upon that land all my words which I have pronounced against it, even all that is written in this book, which Jeremiah hath prophesied against all the nations. \nFor many nations and great kings shall serve themselves of them also: and I will recompense them according to their deeds, and according to the works of their own hands. \nFor thus saith the LORD God of Israel unto me; Take the wine cup of this fury at my hand, and cause all the nations, to whom I send thee, to drink it. \nAnd they shall drink, and be moved, and be mad, because of the sword that I will send among them. \nThen took I the cup at the LORD's hand, and made all the nations to drink, unto whom the LORD had sent me: \nTo wit, Jerusalem, and the cities of Judah, and the kings thereof, and the princes thereof, to make them a desolation, an astonishment, an hissing, and a curse; as it is this day; \nPharaoh king of Egypt, and his servants, and his princes, and all his people; \nAnd all the mingled people, and all the kings of the land of Uz, and all the kings of the land of the Philistines, and Ashkelon, and Azzah, and Ekron, and the remnant of Ashdod, \nEdom, and Moab, and the children of Ammon, \nAnd all the kings of Tyrus, and all the kings of Zidon, and the kings of the isles which are beyond the sea, \nDedan, and Tema, and Buz, and all that are in the utmost corners, \nAnd all the kings of Arabia, and all the kings of the mingled people that dwell in the desert, \nAnd all the kings of Zimri, and all the kings of Elam, and all the kings of the Medes, \nAnd all the kings of the north, far and near, one with another, and all the kingdoms of the world, which are upon the face of the earth: and the king of Sheshach shall drink after them. \nTherefore thou shalt say unto them, Thus saith the LORD of hosts, the God of Israel; Drink ye, and be drunken, and spue, and fall, and rise no more, because of the sword which I will send among you. \nAnd it shall be, if they refuse to take the cup at thine hand to drink, then shalt thou say unto them, Thus saith the LORD of hosts; Ye shall certainly drink. \nFor, lo, I begin to bring evil on the city which is called by my name, and should ye be utterly unpunished? Ye shall not be unpunished: for I will call for a sword upon all the inhabitants of the earth, saith the LORD of hosts. \nTherefore prophesy thou against them all these words, and say unto them, The LORD shall roar from on high, and utter his voice from his holy habitation; he shall mightily roar upon his habitation; he shall give a shout, as they that tread the grapes, against all the inhabitants of the earth. \nA noise shall come even to the ends of the earth; for the LORD hath a controversy with the nations, he will plead with all flesh; he will give them that are wicked to the sword, saith the LORD. \nThus saith the LORD of hosts, Behold, evil shall go forth from nation to nation, and a great whirlwind shall be raised up from the coasts of the earth. \nAnd the slain of the LORD shall be at that day from one end of the earth even unto the other end of the earth: they shall not be lamented, neither gathered, nor buried; they shall be dung upon the ground. \nHowl, ye shepherds, and cry; and wallow yourselves in the ashes, ye principal of the flock: for the days of your slaughter and of your dispersions are accomplished; and ye shall fall like a pleasant vessel. \nAnd the shepherds shall have no way to flee, nor the principal of the flock to escape. \nA voice of the cry of the shepherds, and an howling of the principal of the flock, shall be heard: for the LORD hath spoiled their pasture. \nAnd the peaceable habitations are cut down because of the fierce anger of the LORD. \nHe hath forsaken his covert, as the lion: for their land is desolate because of the fierceness of the oppressor, and because of his fierce anger. \nIn the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word from the LORD, saying, \nThus saith the LORD; Stand in the court of the LORD's house, and speak unto all the cities of Judah, which come to worship in the LORD's house, all the words that I command thee to speak unto them; diminish not a word: \nIf so be they will hearken, and turn every man from his evil way, that I may repent me of the evil, which I purpose to do unto them because of the evil of their doings. \nAnd thou shalt say unto them, Thus saith the LORD; If ye will not hearken to me, to walk in my law, which I have set before you, \nTo hearken to the words of my servants the prophets, whom I sent unto you, both rising up early, and sending them, but ye have not hearkened; \nThen will I make this house like Shiloh, and will make this city a curse to all the nations of the earth. \nSo the priests and the prophets and all the people heard Jeremiah speaking these words in the house of the LORD. \nNow it came to pass, when Jeremiah had made an end of speaking all that the LORD had commanded him to speak unto all the people, that the priests and the prophets and all the people took him, saying, Thou shalt surely die. \nWhy hast thou prophesied in the name of the LORD, saying, This house shall be like Shiloh, and this city shall be desolate without an inhabitant? And all the people were gathered against Jeremiah in the house of the LORD. \nWhen the princes of Judah heard these things, then they came up from the king's house unto the house of the LORD, and sat down in the entry of the new gate of the LORD's house. \nThen spake the priests and the prophets unto the princes and to all the people, saying, This man is worthy to die; for he hath prophesied against this city, as ye have heard with your ears. \nThen spake Jeremiah unto all the princes and to all the people, saying, The LORD sent me to prophesy against this house and against this city all the words that ye have heard. \nTherefore now amend your ways and your doings, and obey the voice of the LORD your God; and the LORD will repent him of the evil that he hath pronounced against you. \nAs for me, behold, I am in your hand: do with me as seemeth good and meet unto you. \nBut know ye for certain, that if ye put me to death, ye shall surely bring innocent blood upon yourselves, and upon this city, and upon the inhabitants thereof: for of a truth the LORD hath sent me unto you to speak all these words in your ears. \nThen said the princes and all the people unto the priests and to the prophets; This man is not worthy to die: for he hath spoken to us in the name of the LORD our God. \nThen rose up certain of the elders of the land, and spake to all the assembly of the people, saying, \nMicah the Morasthite prophesied in the days of Hezekiah king of Judah, and spake to all the people of Judah, saying, Thus saith the LORD of hosts; Zion shall be plowed like a field, and Jerusalem shall become heaps, and the mountain of the house as the high places of a forest. \nDid Hezekiah king of Judah and all Judah put him at all to death? did he not fear the LORD, and besought the LORD, and the LORD repented him of the evil which he had pronounced against them? Thus might we procure great evil against our souls. \nAnd there was also a man that prophesied in the name of the LORD, Urijah the son of Shemaiah of Kirjathjearim, who prophesied against this city and against this land according to all the words of Jeremiah. \nAnd when Jehoiakim the king, with all his mighty men, and all the princes, heard his words, the king sought to put him to death: but when Urijah heard it, he was afraid, and fled, and went into Egypt; \nAnd Jehoiakim the king sent men into Egypt, namely, Elnathan the son of Achbor, and certain men with him into Egypt. \nAnd they fetched forth Urijah out of Egypt, and brought him unto Jehoiakim the king; who slew him with the sword, and cast his dead body into the graves of the common people. \nNevertheless the hand of Ahikam the son of Shaphan was with Jeremiah, that they should not give him into the hand of the people to put him to death. \nIn the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word unto Jeremiah from the LORD, saying, \nThus saith the LORD to me; Make thee bonds and yokes, and put them upon thy neck, \nAnd send them to the king of Edom, and to the king of Moab, and to the king of the Ammonites, and to the king of Tyrus, and to the king of Zidon, by the hand of the messengers which come to Jerusalem unto Zedekiah king of Judah; \nAnd command them to say unto their masters, Thus saith the LORD of hosts, the God of Israel; Thus shall ye say unto your masters; \nI have made the earth, the man and the beast that are upon the ground, by my great power and by my outstretched arm, and have given it unto whom it seemed meet unto me. \nAnd now have I given all these lands into the hand of Nebuchadnezzar the king of Babylon, my servant; and the beasts of the field have I given him also to serve him. \nAnd all nations shall serve him, and his son, and his son's son, until the very time of his land come: and then many nations and great kings shall serve themselves of him. \nAnd it shall come to pass, that the nation and kingdom which will not serve the same Nebuchadnezzar the king of Babylon, and that will not put their neck under the yoke of the king of Babylon, that nation will I punish, saith the LORD, with the sword, and with the famine, and with the pestilence, until I have consumed them by his hand. \nTherefore hearken not ye to your prophets, nor to your diviners, nor to your dreamers, nor to your enchanters, nor to your sorcerers, which speak unto you, saying, Ye shall not serve the king of Babylon: \nFor they prophesy a lie unto you, to remove you far from your land; and that I should drive you out, and ye should perish. \nBut the nations that bring their neck under the yoke of the king of Babylon, and serve him, those will I let remain still in their own land, saith the LORD; and they shall till it, and dwell therein. \nI spake also to Zedekiah king of Judah according to all these words, saying, Bring your necks under the yoke of the king of Babylon, and serve him and his people, and live. \nWhy will ye die, thou and thy people, by the sword, by the famine, and by the pestilence, as the LORD hath spoken against the nation that will not serve the king of Babylon? \nTherefore hearken not unto the words of the prophets that speak unto you, saying, Ye shall not serve the king of Babylon: for they prophesy a lie unto you. \nFor I have not sent them, saith the LORD, yet they prophesy a lie in my name; that I might drive you out, and that ye might perish, ye, and the prophets that prophesy unto you. \nAlso I spake to the priests and to all this people, saying, Thus saith the LORD; Hearken not to the words of your prophets that prophesy unto you, saying, Behold, the vessels of the LORD's house shall now shortly be brought again from Babylon: for they prophesy a lie unto you. \nHearken not unto them; serve the king of Babylon, and live: wherefore should this city be laid waste? \nBut if they be prophets, and if the word of the LORD be with them, let them now make intercession to the LORD of hosts, that the vessels which are left in the house of the LORD, and in the house of the king of Judah, and at Jerusalem, go not to Babylon. \nFor thus saith the LORD of hosts concerning the pillars, and concerning the sea, and concerning the bases, and concerning the residue of the vessels that remain in this city. \nWhich Nebuchadnezzar king of Babylon took not, when he carried away captive Jeconiah the son of Jehoiakim king of Judah from Jerusalem to Babylon, and all the nobles of Judah and Jerusalem; \nYea, thus saith the LORD of hosts, the God of Israel, concerning the vessels that remain in the house of the LORD, and in the house of the king of Judah and of Jerusalem; \nThey shall be carried to Babylon, and there shall they be until the day that I visit them, saith the LORD; then will I bring them up, and restore them to this place. \nAnd it came to pass the same year, in the beginning of the reign of Zedekiah king of Judah, in the fourth year, and in the fifth month, that Hananiah the son of Azur the prophet, which was of Gibeon, spake unto me in the house of the LORD, in the presence of the priests and of all the people, saying, \nThus speaketh the LORD of hosts, the God of Israel, saying, I have broken the yoke of the king of Babylon. \nWithin two full years will I bring again into this place all the vessels of the LORD's house, that Nebuchadnezzar king of Babylon took away from this place, and carried them to Babylon: \nAnd I will bring again to this place Jeconiah the son of Jehoiakim king of Judah, with all the captives of Judah, that went into Babylon, saith the LORD: for I will break the yoke of the king of Babylon. \nThen the prophet Jeremiah said unto the prophet Hananiah in the presence of the priests, and in the presence of all the people that stood in the house of the LORD, \nEven the prophet Jeremiah said, Amen: the LORD do so: the LORD perform thy words which thou hast prophesied, to bring again the vessels of the LORD's house, and all that is carried away captive, from Babylon into this place. \nNevertheless hear thou now this word that I speak in thine ears, and in the ears of all the people; \nThe prophets that have been before me and before thee of old prophesied both against many countries, and against great kingdoms, of war, and of evil, and of pestilence. \nThe prophet which prophesieth of peace, when the word of the prophet shall come to pass, then shall the prophet be known, that the LORD hath truly sent him. \nThen Hananiah the prophet took the yoke from off the prophet Jeremiah's neck, and brake it. \nAnd Hananiah spake in the presence of all the people, saying, Thus saith the LORD; Even so will I break the yoke of Nebuchadnezzar king of Babylon from the neck of all nations within the space of two full years. And the prophet Jeremiah went his way. \nThen the word of the LORD came unto Jeremiah the prophet, after that Hananiah the prophet had broken the yoke from off the neck of the prophet Jeremiah, saying, \nGo and tell Hananiah, saying, Thus saith the LORD; Thou hast broken the yokes of wood; but thou shalt make for them yokes of iron. \nFor thus saith the LORD of hosts, the God of Israel; I have put a yoke of iron upon the neck of all these nations, that they may serve Nebuchadnezzar king of Babylon; and they shall serve him: and I have given him the beasts of the field also. \nThen said the prophet Jeremiah unto Hananiah the prophet, Hear now, Hananiah; The LORD hath not sent thee; but thou makest this people to trust in a lie. \nTherefore thus saith the LORD; Behold, I will cast thee from off the face of the earth: this year thou shalt die, because thou hast taught rebellion against the LORD. \nSo Hananiah the prophet died the same year in the seventh month. \nNow these are the words of the letter that Jeremiah the prophet sent from Jerusalem unto the residue of the elders which were carried away captives, and to the priests, and to the prophets, and to all the people whom Nebuchadnezzar had carried away captive from Jerusalem to Babylon; \n(After that Jeconiah the king, and the queen, and the eunuchs, the princes of Judah and Jerusalem, and the carpenters, and the smiths, were departed from Jerusalem;) \nBy the hand of Elasah the son of Shaphan, and Gemariah the son of Hilkiah, (whom Zedekiah king of Judah sent unto Babylon to Nebuchadnezzar king of Babylon) saying, \nThus saith the LORD of hosts, the God of Israel, unto all that are carried away captives, whom I have caused to be carried away from Jerusalem unto Babylon; \nBuild ye houses, and dwell in them; and plant gardens, and eat the fruit of them; \nTake ye wives, and beget sons and daughters; and take wives for your sons, and give your daughters to husbands, that they may bear sons and daughters; that ye may be increased there, and not diminished. \nAnd seek the peace of the city whither I have caused you to be carried away captives, and pray unto the LORD for it: for in the peace thereof shall ye have peace. \nFor thus saith the LORD of hosts, the God of Israel; Let not your prophets and your diviners, that be in the midst of you, deceive you, neither hearken to your dreams which ye cause to be dreamed. \nFor they prophesy falsely unto you in my name: I have not sent them, saith the LORD. \nFor thus saith the LORD, That after seventy years be accomplished at Babylon I will visit you, and perform my good word toward you, in causing you to return to this place. \nFor I know the thoughts that I think toward you, saith the LORD, thoughts of peace, and not of evil, to give you an expected end. \nThen shall ye call upon me, and ye shall go and pray unto me, and I will hearken unto you. \nAnd ye shall seek me, and find me, when ye shall search for me with all your heart. \nAnd I will be found of you, saith the LORD: and I will turn away your captivity, and I will gather you from all the nations, and from all the places whither I have driven you, saith the LORD; and I will bring you again into the place whence I caused you to be carried away captive. \nBecause ye have said, The LORD hath raised us up prophets in Babylon; \nKnow that thus saith the LORD of the king that sitteth upon the throne of David, and of all the people that dwelleth in this city, and of your brethren that are not gone forth with you into captivity; \nThus saith the LORD of hosts; Behold, I will send upon them the sword, the famine, and the pestilence, and will make them like vile figs, that cannot be eaten, they are so evil. \nAnd I will persecute them with the sword, with the famine, and with the pestilence, and will deliver them to be removed to all the kingdoms of the earth, to be a curse, and an astonishment, and an hissing, and a reproach, among all the nations whither I have driven them: \nBecause they have not hearkened to my words, saith the LORD, which I sent unto them by my servants the prophets, rising up early and sending them; but ye would not hear, saith the LORD. \nHear ye therefore the word of the LORD, all ye of the captivity, whom I have sent from Jerusalem to Babylon: \nThus saith the LORD of hosts, the God of Israel, of Ahab the son of Kolaiah, and of Zedekiah the son of Maaseiah, which prophesy a lie unto you in my name; Behold, I will deliver them into the hand of Nebuchadrezzar king of Babylon; and he shall slay them before your eyes; \nAnd of them shall be taken up a curse by all the captivity of Judah which are in Babylon, saying, The LORD make thee like Zedekiah and like Ahab, whom the king of Babylon roasted in the fire; \nBecause they have committed villany in Israel, and have committed adultery with their neighbours' wives, and have spoken lying words in my name, which I have not commanded them; even I know, and am a witness, saith the LORD. \nThus shalt thou also speak to Shemaiah the Nehelamite, saying, \nThus speaketh the LORD of hosts, the God of Israel, saying, Because thou hast sent letters in thy name unto all the people that are at Jerusalem, and to Zephaniah the son of Maaseiah the priest, and to all the priests, saying, \nThe LORD hath made thee priest in the stead of Jehoiada the priest, that ye should be officers in the house of the LORD, for every man that is mad, and maketh himself a prophet, that thou shouldest put him in prison, and in the stocks. \nNow therefore why hast thou not reproved Jeremiah of Anathoth, which maketh himself a prophet to you? \nFor therefore he sent unto us in Babylon, saying, This captivity is long: build ye houses, and dwell in them; and plant gardens, and eat the fruit of them. \nAnd Zephaniah the priest read this letter in the ears of Jeremiah the prophet. \nThen came the word of the LORD unto Jeremiah, saying, \nSend to all them of the captivity, saying, Thus saith the LORD concerning Shemaiah the Nehelamite; Because that Shemaiah hath prophesied unto you, and I sent him not, and he caused you to trust in a lie: \nTherefore thus saith the LORD; Behold, I will punish Shemaiah the Nehelamite, and his seed: he shall not have a man to dwell among this people; neither shall he behold the good that I will do for my people, saith the LORD; because he hath taught rebellion against the LORD. \nThe word that came to Jeremiah from the LORD, saying, \nThus speaketh the LORD God of Israel, saying, Write thee all the words that I have spoken unto thee in a book. \nFor, lo, the days come, saith the LORD, that I will bring again the captivity of my people Israel and Judah, saith the LORD: and I will cause them to return to the land that I gave to their fathers, and they shall possess it. \nAnd these are the words that the LORD spake concerning Israel and concerning Judah. \nFor thus saith the LORD; We have heard a voice of trembling, of fear, and not of peace. \nAsk ye now, and see whether a man doth travail with child? wherefore do I see every man with his hands on his loins, as a woman in travail, and all faces are turned into paleness? \nAlas! for that day is great, so that none is like it: it is even the time of Jacob's trouble, but he shall be saved out of it. \nFor it shall come to pass in that day, saith the LORD of hosts, that I will break his yoke from off thy neck, and will burst thy bonds, and strangers shall no more serve themselves of him: \nBut they shall serve the LORD their God, and David their king, whom I will raise up unto them. \nTherefore fear thou not, O my servant Jacob, saith the LORD; neither be dismayed, O Israel: for, lo, I will save thee from afar, and thy seed from the land of their captivity; and Jacob shall return, and shall be in rest, and be quiet, and none shall make him afraid. \nFor I am with thee, saith the LORD, to save thee: though I make a full end of all nations whither I have scattered thee, yet I will not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished. \nFor thus saith the LORD, Thy bruise is incurable, and thy wound is grievous. \nThere is none to plead thy cause, that thou mayest be bound up: thou hast no healing medicines. \nAll thy lovers have forgotten thee; they seek thee not; for I have wounded thee with the wound of an enemy, with the chastisement of a cruel one, for the multitude of thine iniquity; because thy sins were increased. \nWhy criest thou for thine affliction? thy sorrow is incurable for the multitude of thine iniquity: because thy sins were increased, I have done these things unto thee. \nTherefore all they that devour thee shall be devoured; and all thine adversaries, every one of them, shall go into captivity; and they that spoil thee shall be a spoil, and all that prey upon thee will I give for a prey. \nFor I will restore health unto thee, and I will heal thee of thy wounds, saith the LORD; because they called thee an Outcast, saying, This is Zion, whom no man seeketh after. \nThus saith the LORD; Behold, I will bring again the captivity of Jacob's tents, and have mercy on his dwellingplaces; and the city shall be builded upon her own heap, and the palace shall remain after the manner thereof. \nAnd out of them shall proceed thanksgiving and the voice of them that make merry: and I will multiply them, and they shall not be few; I will also glorify them, and they shall not be small. \nTheir children also shall be as aforetime, and their congregation shall be established before me, and I will punish all that oppress them. \nAnd their nobles shall be of themselves, and their governor shall proceed from the midst of them; and I will cause him to draw near, and he shall approach unto me: for who is this that engaged his heart to approach unto me? saith the LORD. \nAnd ye shall be my people, and I will be your God. \nBehold, the whirlwind of the LORD goeth forth with fury, a continuing whirlwind: it shall fall with pain upon the head of the wicked. \nThe fierce anger of the LORD shall not return, until he hath done it, and until he have performed the intents of his heart: in the latter days ye shall consider it. \nAt the same time, saith the LORD, will I be the God of all the families of Israel, and they shall be my people. \nThus saith the LORD, The people which were left of the sword found grace in the wilderness; even Israel, when I went to cause him to rest. \nThe LORD hath appeared of old unto me, saying, Yea, I have loved thee with an everlasting love: therefore with lovingkindness have I drawn thee. \nAgain I will build thee, and thou shalt be built, O virgin of Israel: thou shalt again be adorned with thy tabrets, and shalt go forth in the dances of them that make merry. \nThou shalt yet plant vines upon the mountains of Samaria: the planters shall plant, and shall eat them as common things. \nFor there shall be a day, that the watchmen upon the mount Ephraim shall cry, Arise ye, and let us go up to Zion unto the LORD our God. \nFor thus saith the LORD; Sing with gladness for Jacob, and shout among the chief of the nations: publish ye, praise ye, and say, O LORD, save thy people, the remnant of Israel. \nBehold, I will bring them from the north country, and gather them from the coasts of the earth, and with them the blind and the lame, the woman with child and her that travaileth with child together: a great company shall return thither. \nThey shall come with weeping, and with supplications will I lead them: I will cause them to walk by the rivers of waters in a straight way, wherein they shall not stumble: for I am a father to Israel, and Ephraim is my firstborn. \nHear the word of the LORD, O ye nations, and declare it in the isles afar off, and say, He that scattered Israel will gather him, and keep him, as a shepherd doth his flock. \nFor the LORD hath redeemed Jacob, and ransomed him from the hand of him that was stronger than he. \nTherefore they shall come and sing in the height of Zion, and shall flow together to the goodness of the LORD, for wheat, and for wine, and for oil, and for the young of the flock and of the herd: and their soul shall be as a watered garden; and they shall not sorrow any more at all. \nThen shall the virgin rejoice in the dance, both young men and old together: for I will turn their mourning into joy, and will comfort them, and make them rejoice from their sorrow. \nAnd I will satiate the soul of the priests with fatness, and my people shall be satisfied with my goodness, saith the LORD. \nThus saith the LORD; A voice was heard in Ramah, lamentation, and bitter weeping; Rahel weeping for her children refused to be comforted for her children, because they were not. \nThus saith the LORD; Refrain thy voice from weeping, and thine eyes from tears: for thy work shall be rewarded, saith the LORD; and they shall come again from the land of the enemy. \nAnd there is hope in thine end, saith the LORD, that thy children shall come again to their own border. \nI have surely heard Ephraim bemoaning himself thus; Thou hast chastised me, and I was chastised, as a bullock unaccustomed to the yoke: turn thou me, and I shall be turned; for thou art the LORD my God. \nSurely after that I was turned, I repented; and after that I was instructed, I smote upon my thigh: I was ashamed, yea, even confounded, because I did bear the reproach of my youth. \nIs Ephraim my dear son? is he a pleasant child? for since I spake against him, I do earnestly remember him still: therefore my bowels are troubled for him; I will surely have mercy upon him, saith the LORD. \nSet thee up waymarks, make thee high heaps: set thine heart toward the highway, even the way which thou wentest: turn again, O virgin of Israel, turn again to these thy cities. \nHow long wilt thou go about, O thou backsliding daughter? for the LORD hath created a new thing in the earth, A woman shall compass a man. \nThus saith the LORD of hosts, the God of Israel; As yet they shall use this speech in the land of Judah and in the cities thereof, when I shall bring again their captivity; The LORD bless thee, O habitation of justice, and mountain of holiness. \nAnd there shall dwell in Judah itself, and in all the cities thereof together, husbandmen, and they that go forth with flocks. \nFor I have satiated the weary soul, and I have replenished every sorrowful soul. \nUpon this I awaked, and beheld; and my sleep was sweet unto me. \nBehold, the days come, saith the LORD, that I will sow the house of Israel and the house of Judah with the seed of man, and with the seed of beast. \nAnd it shall come to pass, that like as I have watched over them, to pluck up, and to break down, and to throw down, and to destroy, and to afflict; so will I watch over them, to build, and to plant, saith the LORD. \nIn those days they shall say no more, The fathers have eaten a sour grape, and the children's teeth are set on edge. \nBut every one shall die for his own iniquity: every man that eateth the sour grape, his teeth shall be set on edge. \nBehold, the days come, saith the LORD, that I will make a new covenant with the house of Israel, and with the house of Judah: \nNot according to the covenant that I made with their fathers in the day that I took them by the hand to bring them out of the land of Egypt; which my covenant they brake, although I was an husband unto them, saith the LORD: \nBut this shall be the covenant that I will make with the house of Israel; After those days, saith the LORD, I will put my law in their inward parts, and write it in their hearts; and will be their God, and they shall be my people. \nAnd they shall teach no more every man his neighbour, and every man his brother, saying, Know the LORD: for they shall all know me, from the least of them unto the greatest of them, saith the LORD: for I will forgive their iniquity, and I will remember their sin no more. \nThus saith the LORD, which giveth the sun for a light by day, and the ordinances of the moon and of the stars for a light by night, which divideth the sea when the waves thereof roar; The LORD of hosts is his name: \nIf those ordinances depart from before me, saith the LORD, then the seed of Israel also shall cease from being a nation before me for ever. \nThus saith the LORD; If heaven above can be measured, and the foundations of the earth searched out beneath, I will also cast off all the seed of Israel for all that they have done, saith the LORD. \nBehold, the days come, saith the LORD, that the city shall be built to the LORD from the tower of Hananeel unto the gate of the corner. \nAnd the measuring line shall yet go forth over against it upon the hill Gareb, and shall compass about to Goath. \nAnd the whole valley of the dead bodies, and of the ashes, and all the fields unto the brook of Kidron, unto the corner of the horse gate toward the east, shall be holy unto the LORD; it shall not be plucked up, nor thrown down any more for ever. \nThe word that came to Jeremiah from the LORD in the tenth year of Zedekiah king of Judah, which was the eighteenth year of Nebuchadrezzar. \nFor then the king of Babylon's army besieged Jerusalem: and Jeremiah the prophet was shut up in the court of the prison, which was in the king of Judah's house. \nFor Zedekiah king of Judah had shut him up, saying, Wherefore dost thou prophesy, and say, Thus saith the LORD, Behold, I will give this city into the hand of the king of Babylon, and he shall take it; \nAnd Zedekiah king of Judah shall not escape out of the hand of the Chaldeans, but shall surely be delivered into the hand of the king of Babylon, and shall speak with him mouth to mouth, and his eyes shall behold his eyes; \nAnd he shall lead Zedekiah to Babylon, and there shall he be until I visit him, saith the LORD: though ye fight with the Chaldeans, ye shall not prosper. \nAnd Jeremiah said, The word of the LORD came unto me, saying, \nBehold, Hanameel the son of Shallum thine uncle shall come unto thee saying, Buy thee my field that is in Anathoth: for the right of redemption is thine to buy it. \nSo Hanameel mine uncle's son came to me in the court of the prison according to the word of the LORD, and said unto me, Buy my field, I pray thee, that is in Anathoth, which is in the country of Benjamin: for the right of inheritance is thine, and the redemption is thine; buy it for thyself. Then I knew that this was the word of the LORD. \nAnd I bought the field of Hanameel my uncle's son, that was in Anathoth, and weighed him the money, even seventeen shekels of silver. \nAnd I subscribed the evidence, and sealed it, and took witnesses, and weighed him the money in the balances. \nSo I took the evidence of the purchase, both that which was sealed according to the law and custom, and that which was open: \nAnd I gave the evidence of the purchase unto Baruch the son of Neriah, the son of Maaseiah, in the sight of Hanameel mine uncle's son, and in the presence of the witnesses that subscribed the book of the purchase, before all the Jews that sat in the court of the prison. \nAnd I charged Baruch before them, saying, \nThus saith the LORD of hosts, the God of Israel; Take these evidences, this evidence of the purchase, both which is sealed, and this evidence which is open; and put them in an earthen vessel, that they may continue many days. \nFor thus saith the LORD of hosts, the God of Israel; Houses and fields and vineyards shall be possessed again in this land. \nNow when I had delivered the evidence of the purchase unto Baruch the son of Neriah, I prayed unto the LORD, saying, \nAh Lord GOD! behold, thou hast made the heaven and the earth by thy great power and stretched out arm, and there is nothing too hard for thee: \nThou shewest lovingkindness unto thousands, and recompensest the iniquity of the fathers into the bosom of their children after them: the Great, the Mighty God, the LORD of hosts, is his name, \nGreat in counsel, and mighty in work: for thine eyes are open upon all the ways of the sons of men: to give every one according to his ways, and according to the fruit of his doings: \nWhich hast set signs and wonders in the land of Egypt, even unto this day, and in Israel, and among other men; and hast made thee a name, as at this day; \nAnd hast brought forth thy people Israel out of the land of Egypt with signs, and with wonders, and with a strong hand, and with a stretched out arm, and with great terror; \nAnd hast given them this land, which thou didst swear to their fathers to give them, a land flowing with milk and honey; \nAnd they came in, and possessed it; but they obeyed not thy voice, neither walked in thy law; they have done nothing of all that thou commandedst them to do: therefore thou hast caused all this evil to come upon them: \nBehold the mounts, they are come unto the city to take it; and the city is given into the hand of the Chaldeans, that fight against it, because of the sword, and of the famine, and of the pestilence: and what thou hast spoken is come to pass; and, behold, thou seest it. \nAnd thou hast said unto me, O Lord GOD, Buy thee the field for money, and take witnesses; for the city is given into the hand of the Chaldeans. \nThen came the word of the LORD unto Jeremiah, saying, \nBehold, I am the LORD, the God of all flesh: is there any thing too hard for me? \nTherefore thus saith the LORD; Behold, I will give this city into the hand of the Chaldeans, and into the hand of Nebuchadrezzar king of Babylon, and he shall take it: \nAnd the Chaldeans, that fight against this city, shall come and set fire on this city, and burn it with the houses, upon whose roofs they have offered incense unto Baal, and poured out drink offerings unto other gods, to provoke me to anger. \nFor the children of Israel and the children of Judah have only done evil before me from their youth: for the children of Israel have only provoked me to anger with the work of their hands, saith the LORD. \nFor this city hath been to me as a provocation of mine anger and of my fury from the day that they built it even unto this day; that I should remove it from before my face, \nBecause of all the evil of the children of Israel and of the children of Judah, which they have done to provoke me to anger, they, their kings, their princes, their priests, and their prophets, and the men of Judah, and the inhabitants of Jerusalem. \nAnd they have turned unto me the back, and not the face: though I taught them, rising up early and teaching them, yet they have not hearkened to receive instruction. \nBut they set their abominations in the house, which is called by my name, to defile it. \nAnd they built the high places of Baal, which are in the valley of the son of Hinnom, to cause their sons and their daughters to pass through the fire unto Molech; which I commanded them not, neither came it into my mind, that they should do this abomination, to cause Judah to sin. \nAnd now therefore thus saith the LORD, the God of Israel, concerning this city, whereof ye say, It shall be delivered into the hand of the king of Babylon by the sword, and by the famine, and by the pestilence; \nBehold, I will gather them out of all countries, whither I have driven them in mine anger, and in my fury, and in great wrath; and I will bring them again unto this place, and I will cause them to dwell safely: \nAnd they shall be my people, and I will be their God: \nAnd I will give them one heart, and one way, that they may fear me for ever, for the good of them, and of their children after them: \nAnd I will make an everlasting covenant with them, that I will not turn away from them, to do them good; but I will put my fear in their hearts, that they shall not depart from me. \nYea, I will rejoice over them to do them good, and I will plant them in this land assuredly with my whole heart and with my whole soul. \nFor thus saith the LORD; Like as I have brought all this great evil upon this people, so will I bring upon them all the good that I have promised them. \nAnd fields shall be bought in this land, whereof ye say, It is desolate without man or beast; it is given into the hand of the Chaldeans. \nMen shall buy fields for money, and subscribe evidences, and seal them, and take witnesses in the land of Benjamin, and in the places about Jerusalem, and in the cities of Judah, and in the cities of the mountains, and in the cities of the valley, and in the cities of the south: for I will cause their captivity to return, saith the LORD. \nMoreover the word of the LORD came unto Jeremiah the second time, while he was yet shut up in the court of the prison, saying, \nThus saith the LORD the maker thereof, the LORD that formed it, to establish it; the LORD is his name; \nCall unto me, and I will answer thee, and shew thee great and mighty things, which thou knowest not. \nFor thus saith the LORD, the God of Israel, concerning the houses of this city, and concerning the houses of the kings of Judah, which are thrown down by the mounts, and by the sword; \nThey come to fight with the Chaldeans, but it is to fill them with the dead bodies of men, whom I have slain in mine anger and in my fury, and for all whose wickedness I have hid my face from this city. \nBehold, I will bring it health and cure, and I will cure them, and will reveal unto them the abundance of peace and truth. \nAnd I will cause the captivity of Judah and the captivity of Israel to return, and will build them, as at the first. \nAnd I will cleanse them from all their iniquity, whereby they have sinned against me; and I will pardon all their iniquities, whereby they have sinned, and whereby they have transgressed against me. \nAnd it shall be to me a name of joy, a praise and an honour before all the nations of the earth, which shall hear all the good that I do unto them: and they shall fear and tremble for all the goodness and for all the prosperity that I procure unto it. \nThus saith the LORD; Again there shall be heard in this place, which ye say shall be desolate without man and without beast, even in the cities of Judah, and in the streets of Jerusalem, that are desolate, without man, and without inhabitant, and without beast, \nThe voice of joy, and the voice of gladness, the voice of the bridegroom, and the voice of the bride, the voice of them that shall say, Praise the LORD of hosts: for the LORD is good; for his mercy endureth for ever: and of them that shall bring the sacrifice of praise into the house of the LORD. For I will cause to return the captivity of the land, as at the first, saith the LORD. \nThus saith the LORD of hosts; Again in this place, which is desolate without man and without beast, and in all the cities thereof, shall be an habitation of shepherds causing their flocks to lie down. \nIn the cities of the mountains, in the cities of the vale, and in the cities of the south, and in the land of Benjamin, and in the places about Jerusalem, and in the cities of Judah, shall the flocks pass again under the hands of him that telleth them, saith the LORD. \nBehold, the days come, saith the LORD, that I will perform that good thing which I have promised unto the house of Israel and to the house of Judah. \nIn those days, and at that time, will I cause the Branch of righteousness to grow up unto David; and he shall execute judgment and righteousness in the land. \nIn those days shall Judah be saved, and Jerusalem shall dwell safely: and this is the name wherewith she shall be called, The LORD our righteousness. \nFor thus saith the LORD; David shall never want a man to sit upon the throne of the house of Israel; \nNeither shall the priests the Levites want a man before me to offer burnt offerings, and to kindle meat offerings, and to do sacrifice continually. \nAnd the word of the LORD came unto Jeremiah, saying, \nThus saith the LORD; If ye can break my covenant of the day, and my covenant of the night, and that there should not be day and night in their season; \nThen may also my covenant be broken with David my servant, that he should not have a son to reign upon his throne; and with the Levites the priests, my ministers. \nAs the host of heaven cannot be numbered, neither the sand of the sea measured: so will I multiply the seed of David my servant, and the Levites that minister unto me. \nMoreover the word of the LORD came to Jeremiah, saying, \nConsiderest thou not what this people have spoken, saying, The two families which the LORD hath chosen, he hath even cast them off? thus they have despised my people, that they should be no more a nation before them. \nThus saith the LORD; If my covenant be not with day and night, and if I have not appointed the ordinances of heaven and earth; \nThen will I cast away the seed of Jacob and David my servant, so that I will not take any of his seed to be rulers over the seed of Abraham, Isaac, and Jacob: for I will cause their captivity to return, and have mercy on them. \nThe word which came unto Jeremiah from the LORD, when Nebuchadnezzar king of Babylon, and all his army, and all the kingdoms of the earth of his dominion, and all the people, fought against Jerusalem, and against all the cities thereof, saying, \nThus saith the LORD, the God of Israel; Go and speak to Zedekiah king of Judah, and tell him, Thus saith the LORD; Behold, I will give this city into the hand of the king of Babylon, and he shall burn it with fire: \nAnd thou shalt not escape out of his hand, but shalt surely be taken, and delivered into his hand; and thine eyes shall behold the eyes of the king of Babylon, and he shall speak with thee mouth to mouth, and thou shalt go to Babylon. \nYet hear the word of the LORD, O Zedekiah king of Judah; Thus saith the LORD of thee, Thou shalt not die by the sword: \nBut thou shalt die in peace: and with the burnings of thy fathers, the former kings which were before thee, so shall they burn odours for thee; and they will lament thee, saying, Ah lord! for I have pronounced the word, saith the LORD. \nThen Jeremiah the prophet spake all these words unto Zedekiah king of Judah in Jerusalem, \nWhen the king of Babylon's army fought against Jerusalem, and against all the cities of Judah that were left, against Lachish, and against Azekah: for these defenced cities remained of the cities of Judah. \nThis is the word that came unto Jeremiah from the LORD, after that the king Zedekiah had made a covenant with all the people which were at Jerusalem, to proclaim liberty unto them; \nThat every man should let his manservant, and every man his maidservant, being an Hebrew or an Hebrewess, go free; that none should serve himself of them, to wit, of a Jew his brother. \nNow when all the princes, and all the people, which had entered into the covenant, heard that every one should let his manservant, and every one his maidservant, go free, that none should serve themselves of them any more, then they obeyed, and let them go. \nBut afterward they turned, and caused the servants and the handmaids, whom they had let go free, to return, and brought them into subjection for servants and for handmaids. \nTherefore the word of the LORD came to Jeremiah from the LORD, saying, \nThus saith the LORD, the God of Israel; I made a covenant with your fathers in the day that I brought them forth out of the land of Egypt, out of the house of bondmen, saying, \nAt the end of seven years let ye go every man his brother an Hebrew, which hath been sold unto thee; and when he hath served thee six years, thou shalt let him go free from thee: but your fathers hearkened not unto me, neither inclined their ear. \nAnd ye were now turned, and had done right in my sight, in proclaiming liberty every man to his neighbour; and ye had made a covenant before me in the house which is called by my name: \nBut ye turned and polluted my name, and caused every man his servant, and every man his handmaid, whom he had set at liberty at their pleasure, to return, and brought them into subjection, to be unto you for servants and for handmaids. \nTherefore thus saith the LORD; Ye have not hearkened unto me, in proclaiming liberty, every one to his brother, and every man to his neighbour: behold, I proclaim a liberty for you, saith the LORD, to the sword, to the pestilence, and to the famine; and I will make you to be removed into all the kingdoms of the earth. \nAnd I will give the men that have transgressed my covenant, which have not performed the words of the covenant which they had made before me, when they cut the calf in twain, and passed between the parts thereof, \nThe princes of Judah, and the princes of Jerusalem, the eunuchs, and the priests, and all the people of the land, which passed between the parts of the calf; \nI will even give them into the hand of their enemies, and into the hand of them that seek their life: and their dead bodies shall be for meat unto the fowls of the heaven, and to the beasts of the earth. \nAnd Zedekiah king of Judah and his princes will I give into the hand of their enemies, and into the hand of them that seek their life, and into the hand of the king of Babylon's army, which are gone up from you. \nBehold, I will command, saith the LORD, and cause them to return to this city; and they shall fight against it, and take it, and burn it with fire: and I will make the cities of Judah a desolation without an inhabitant. \nThe word which came unto Jeremiah from the LORD in the days of Jehoiakim the son of Josiah king of Judah, saying, \nGo unto the house of the Rechabites, and speak unto them, and bring them into the house of the LORD, into one of the chambers, and give them wine to drink. \nThen I took Jaazaniah the son of Jeremiah, the son of Habaziniah, and his brethren, and all his sons, and the whole house of the Rechabites; \nAnd I brought them into the house of the LORD, into the chamber of the sons of Hanan, the son of Igdaliah, a man of God, which was by the chamber of the princes, which was above the chamber of Maaseiah the son of Shallum, the keeper of the door: \nAnd I set before the sons of the house of the Rechabites pots full of wine, and cups, and I said unto them, Drink ye wine. \nBut they said, We will drink no wine: for Jonadab the son of Rechab our father commanded us, saying, Ye shall drink no wine, neither ye, nor your sons for ever: \nNeither shall ye build house, nor sow seed, nor plant vineyard, nor have any: but all your days ye shall dwell in tents; that ye may live many days in the land where ye be strangers. \nThus have we obeyed the voice of Jonadab the son of Rechab our father in all that he hath charged us, to drink no wine all our days, we, our wives, our sons, nor our daughters; \nNor to build houses for us to dwell in: neither have we vineyard, nor field, nor seed: \nBut we have dwelt in tents, and have obeyed, and done according to all that Jonadab our father commanded us. \nBut it came to pass, when Nebuchadrezzar king of Babylon came up into the land, that we said, Come, and let us go to Jerusalem for fear of the army of the Chaldeans, and for fear of the army of the Syrians: so we dwell at Jerusalem. \nThen came the word of the LORD unto Jeremiah, saying, \nThus saith the LORD of hosts, the God of Israel; Go and tell the men of Judah and the inhabitants of Jerusalem, Will ye not receive instruction to hearken to my words? saith the LORD. \nThe words of Jonadab the son of Rechab, that he commanded his sons not to drink wine, are performed; for unto this day they drink none, but obey their father's commandment: notwithstanding I have spoken unto you, rising early and speaking; but ye hearkened not unto me. \nI have sent also unto you all my servants the prophets, rising up early and sending them, saying, Return ye now every man from his evil way, and amend your doings, and go not after other gods to serve them, and ye shall dwell in the land which I have given to you and to your fathers: but ye have not inclined your ear, nor hearkened unto me. \nBecause the sons of Jonadab the son of Rechab have performed the commandment of their father, which he commanded them; but this people hath not hearkened unto me: \nTherefore thus saith the LORD God of hosts, the God of Israel; Behold, I will bring upon Judah and upon all the inhabitants of Jerusalem all the evil that I have pronounced against them: because I have spoken unto them, but they have not heard; and I have called unto them, but they have not answered. \nAnd Jeremiah said unto the house of the Rechabites, Thus saith the LORD of hosts, the God of Israel; Because ye have obeyed the commandment of Jonadab your father, and kept all his precepts, and done according unto all that he hath commanded you: \nTherefore thus saith the LORD of hosts, the God of Israel; Jonadab the son of Rechab shall not want a man to stand before me for ever. \nAnd it came to pass in the fourth year of Jehoiakim the son of Josiah king of Judah, that this word came unto Jeremiah from the LORD, saying, \nTake thee a roll of a book, and write therein all the words that I have spoken unto thee against Israel, and against Judah, and against all the nations, from the day I spake unto thee, from the days of Josiah, even unto this day. \nIt may be that the house of Judah will hear all the evil which I purpose to do unto them; that they may return every man from his evil way; that I may forgive their iniquity and their sin. \nThen Jeremiah called Baruch the son of Neriah: and Baruch wrote from the mouth of Jeremiah all the words of the LORD, which he had spoken unto him, upon a roll of a book. \nAnd Jeremiah commanded Baruch, saying, I am shut up; I cannot go into the house of the LORD: \nTherefore go thou, and read in the roll, which thou hast written from my mouth, the words of the LORD in the ears of the people in the LORD's house upon the fasting day: and also thou shalt read them in the ears of all Judah that come out of their cities. \nIt may be they will present their supplication before the LORD, and will return every one from his evil way: for great is the anger and the fury that the LORD hath pronounced against this people. \nAnd Baruch the son of Neriah did according to all that Jeremiah the prophet commanded him, reading in the book the words of the LORD in the LORD's house. \nAnd it came to pass in the fifth year of Jehoiakim the son of Josiah king of Judah, in the ninth month, that they proclaimed a fast before the LORD to all the people in Jerusalem, and to all the people that came from the cities of Judah unto Jerusalem. \nThen read Baruch in the book the words of Jeremiah in the house of the LORD, in the chamber of Gemariah the son of Shaphan the scribe, in the higher court, at the entry of the new gate of the LORD's house, in the ears of all the people. \nWhen Michaiah the son of Gemariah, the son of Shaphan, had heard out of the book all the words of the LORD, \nThen he went down into the king's house, into the scribe's chamber: and, lo, all the princes sat there, even Elishama the scribe, and Delaiah the son of Shemaiah, and Elnathan the son of Achbor, and Gemariah the son of Shaphan, and Zedekiah the son of Hananiah, and all the princes. \nThen Michaiah declared unto them all the words that he had heard, when Baruch read the book in the ears of the people. \nTherefore all the princes sent Jehudi the son of Nethaniah, the son of Shelemiah, the son of Cushi, unto Baruch, saying, Take in thine hand the roll wherein thou hast read in the ears of the people, and come. So Baruch the son of Neriah took the roll in his hand, and came unto them. \nAnd they said unto him, Sit down now, and read it in our ears. So Baruch read it in their ears. \nNow it came to pass, when they had heard all the words, they were afraid both one and other, and said unto Baruch, We will surely tell the king of all these words. \nAnd they asked Baruch, saying, Tell us now, How didst thou write all these words at his mouth? \nThen Baruch answered them, He pronounced all these words unto me with his mouth, and I wrote them with ink in the book. \nThen said the princes unto Baruch, Go, hide thee, thou and Jeremiah; and let no man know where ye be. \nAnd they went in to the king into the court, but they laid up the roll in the chamber of Elishama the scribe, and told all the words in the ears of the king. \nSo the king sent Jehudi to fetch the roll: and he took it out of Elishama the scribe's chamber. And Jehudi read it in the ears of the king, and in the ears of all the princes which stood beside the king. \nNow the king sat in the winterhouse in the ninth month: and there was a fire on the hearth burning before him. \nAnd it came to pass, that when Jehudi had read three or four leaves, he cut it with the penknife, and cast it into the fire that was on the hearth, until all the roll was consumed in the fire that was on the hearth. \nYet they were not afraid, nor rent their garments, neither the king, nor any of his servants that heard all these words. \nNevertheless Elnathan and Delaiah and Gemariah had made intercession to the king that he would not burn the roll: but he would not hear them. \nBut the king commanded Jerahmeel the son of Hammelech, and Seraiah the son of Azriel, and Shelemiah the son of Abdeel, to take Baruch the scribe and Jeremiah the prophet: but the LORD hid them. \nThen the word of the LORD came to Jeremiah, after that the king had burned the roll, and the words which Baruch wrote at the mouth of Jeremiah, saying, \nTake thee again another roll, and write in it all the former words that were in the first roll, which Jehoiakim the king of Judah hath burned. \nAnd thou shalt say to Jehoiakim king of Judah, Thus saith the LORD; Thou hast burned this roll, saying, Why hast thou written therein, saying, The king of Babylon shall certainly come and destroy this land, and shall cause to cease from thence man and beast? \nTherefore thus saith the LORD of Jehoiakim king of Judah; He shall have none to sit upon the throne of David: and his dead body shall be cast out in the day to the heat, and in the night to the frost. \nAnd I will punish him and his seed and his servants for their iniquity; and I will bring upon them, and upon the inhabitants of Jerusalem, and upon the men of Judah, all the evil that I have pronounced against them; but they hearkened not. \nThen took Jeremiah another roll, and gave it to Baruch the scribe, the son of Neriah; who wrote therein from the mouth of Jeremiah all the words of the book which Jehoiakim king of Judah had burned in the fire: and there were added besides unto them many like words. \nAnd king Zedekiah the son of Josiah reigned instead of Coniah the son of Jehoiakim, whom Nebuchadrezzar king of Babylon made king in the land of Judah. \nBut neither he, nor his servants, nor the people of the land, did hearken unto the words of the LORD, which he spake by the prophet Jeremiah. \nAnd Zedekiah the king sent Jehucal the son of Shelemiah and Zephaniah the son of Maaseiah the priest to the prophet Jeremiah, saying, Pray now unto the LORD our God for us. \nNow Jeremiah came in and went out among the people: for they had not put him into prison. \nThen Pharaoh's army was come forth out of Egypt: and when the Chaldeans that besieged Jerusalem heard tidings of them, they departed from Jerusalem. \nThen came the word of the LORD unto the prophet Jeremiah saying, \nThus saith the LORD, the God of Israel; Thus shall ye say to the king of Judah, that sent you unto me to enquire of me; Behold, Pharaoh's army, which is come forth to help you, shall return to Egypt into their own land. \nAnd the Chaldeans shall come again, and fight against this city, and take it, and burn it with fire. \nThus saith the LORD; Deceive not yourselves, saying, The Chaldeans shall surely depart from us: for they shall not depart. \nFor though ye had smitten the whole army of the Chaldeans that fight against you, and there remained but wounded men among them, yet should they rise up every man in his tent, and burn this city with fire. \nAnd it came to pass, that when the army of the Chaldeans was broken up from Jerusalem for fear of Pharaoh's army, \nThen Jeremiah went forth out of Jerusalem to go into the land of Benjamin, to separate himself thence in the midst of the people. \nAnd when he was in the gate of Benjamin, a captain of the ward was there, whose name was Irijah, the son of Shelemiah, the son of Hananiah; and he took Jeremiah the prophet, saying, Thou fallest away to the Chaldeans. \nThen said Jeremiah, It is false; I fall not away to the Chaldeans. But he hearkened not to him: so Irijah took Jeremiah, and brought him to the princes. \nWherefore the princes were wroth with Jeremiah, and smote him, and put him in prison in the house of Jonathan the scribe: for they had made that the prison. \nWhen Jeremiah was entered into the dungeon, and into the cabins, and Jeremiah had remained there many days; \nThen Zedekiah the king sent, and took him out: and the king asked him secretly in his house, and said, Is there any word from the LORD? And Jeremiah said, There is: for, said he, thou shalt be delivered into the hand of the king of Babylon. \nMoreover Jeremiah said unto king Zedekiah, What have I offended against thee, or against thy servants, or against this people, that ye have put me in prison? \nWhere are now your prophets which prophesied unto you, saying, The king of Babylon shall not come against you, nor against this land? \nTherefore hear now, I pray thee, O my lord the king: let my supplication, I pray thee, be accepted before thee; that thou cause me not to return to the house of Jonathan the scribe, lest I die there. \nThen Zedekiah the king commanded that they should commit Jeremiah into the court of the prison, and that they should give him daily a piece of bread out of the bakers' street, until all the bread in the city were spent. Thus Jeremiah remained in the court of the prison. \nThen Shephatiah the son of Mattan, and Gedaliah the son of Pashur, and Jucal the son of Shelemiah, and Pashur the son of Malchiah, heard the words that Jeremiah had spoken unto all the people, saying, \nThus saith the LORD, He that remaineth in this city shall die by the sword, by the famine, and by the pestilence: but he that goeth forth to the Chaldeans shall live; for he shall have his life for a prey, and shall live. \nThus saith the LORD, This city shall surely be given into the hand of the king of Babylon's army, which shall take it. \nTherefore the princes said unto the king, We beseech thee, let this man be put to death: for thus he weakeneth the hands of the men of war that remain in this city, and the hands of all the people, in speaking such words unto them: for this man seeketh not the welfare of this people, but the hurt. \nThen Zedekiah the king said, Behold, he is in your hand: for the king is not he that can do any thing against you. \nThen took they Jeremiah, and cast him into the dungeon of Malchiah the son of Hammelech, that was in the court of the prison: and they let down Jeremiah with cords. And in the dungeon there was no water, but mire: so Jeremiah sunk in the mire. \nNow when Ebedmelech the Ethiopian, one of the eunuchs which was in the king's house, heard that they had put Jeremiah in the dungeon; the king then sitting in the gate of Benjamin; \nEbedmelech went forth out of the king's house, and spake to the king saying, \nMy lord the king, these men have done evil in all that they have done to Jeremiah the prophet, whom they have cast into the dungeon; and he is like to die for hunger in the place where he is: for there is no more bread in the city. \nThen the king commanded Ebedmelech the Ethiopian, saying, Take from hence thirty men with thee, and take up Jeremiah the prophet out of the dungeon, before he die. \nSo Ebedmelech took the men with him, and went into the house of the king under the treasury, and took thence old cast clouts and old rotten rags, and let them down by cords into the dungeon to Jeremiah. \nAnd Ebedmelech the Ethiopian said unto Jeremiah, Put now these old cast clouts and rotten rags under thine armholes under the cords. And Jeremiah did so. \nSo they drew up Jeremiah with cords, and took him up out of the dungeon: and Jeremiah remained in the court of the prison. \nThen Zedekiah the king sent, and took Jeremiah the prophet unto him into the third entry that is in the house of the LORD: and the king said unto Jeremiah, I will ask thee a thing; hide nothing from me. \nThen Jeremiah said unto Zedekiah, If I declare it unto thee, wilt thou not surely put me to death? and if I give thee counsel, wilt thou not hearken unto me? \nSo Zedekiah the king sware secretly unto Jeremiah, saying, As the LORD liveth, that made us this soul, I will not put thee to death, neither will I give thee into the hand of these men that seek thy life. \nThen said Jeremiah unto Zedekiah, Thus saith the LORD, the God of hosts, the God of Israel; If thou wilt assuredly go forth unto the king of Babylon's princes, then thy soul shall live, and this city shall not be burned with fire; and thou shalt live, and thine house: \nBut if thou wilt not go forth to the king of Babylon's princes, then shall this city be given into the hand of the Chaldeans, and they shall burn it with fire, and thou shalt not escape out of their hand. \nAnd Zedekiah the king said unto Jeremiah, I am afraid of the Jews that are fallen to the Chaldeans, lest they deliver me into their hand, and they mock me. \nBut Jeremiah said, They shall not deliver thee. Obey, I beseech thee, the voice of the LORD, which I speak unto thee: so it shall be well unto thee, and thy soul shall live. \nBut if thou refuse to go forth, this is the word that the LORD hath shewed me: \nAnd, behold, all the women that are left in the king of Judah's house shall be brought forth to the king of Babylon's princes, and those women shall say, Thy friends have set thee on, and have prevailed against thee: thy feet are sunk in the mire, and they are turned away back. \nSo they shall bring out all thy wives and thy children to the Chaldeans: and thou shalt not escape out of their hand, but shalt be taken by the hand of the king of Babylon: and thou shalt cause this city to be burned with fire. \nThen said Zedekiah unto Jeremiah, Let no man know of these words, and thou shalt not die. \nBut if the princes hear that I have talked with thee, and they come unto thee, and say unto thee, Declare unto us now what thou hast said unto the king, hide it not from us, and we will not put thee to death; also what the king said unto thee: \nThen thou shalt say unto them, I presented my supplication before the king, that he would not cause me to return to Jonathan's house, to die there. \nThen came all the princes unto Jeremiah, and asked him: and he told them according to all these words that the king had commanded. So they left off speaking with him; for the matter was not perceived. \nSo Jeremiah abode in the court of the prison until the day that Jerusalem was taken: and he was there when Jerusalem was taken. \nIn the ninth year of Zedekiah king of Judah, in the tenth month, came Nebuchadrezzar king of Babylon and all his army against Jerusalem, and they besieged it. \nAnd in the eleventh year of Zedekiah, in the fourth month, the ninth day of the month, the city was broken up. \nAnd all the princes of the king of Babylon came in, and sat in the middle gate, even Nergalsharezer, Samgarnebo, Sarsechim, Rabsaris, Nergalsharezer, Rabmag, with all the residue of the princes of the king of Babylon. \nAnd it came to pass, that when Zedekiah the king of Judah saw them, and all the men of war, then they fled, and went forth out of the city by night, by the way of the king's garden, by the gate betwixt the two walls: and he went out the way of the plain. \nBut the Chaldeans' army pursued after them, and overtook Zedekiah in the plains of Jericho: and when they had taken him, they brought him up to Nebuchadnezzar king of Babylon to Riblah in the land of Hamath, where he gave judgment upon him. \nThen the king of Babylon slew the sons of Zedekiah in Riblah before his eyes: also the king of Babylon slew all the nobles of Judah. \nMoreover he put out Zedekiah's eyes, and bound him with chains, to carry him to Babylon. \nAnd the Chaldeans burned the king's house, and the houses of the people, with fire, and brake down the walls of Jerusalem. \nThen Nebuzaradan the captain of the guard carried away captive into Babylon the remnant of the people that remained in the city, and those that fell away, that fell to him, with the rest of the people that remained. \nBut Nebuzaradan the captain of the guard left of the poor of the people, which had nothing, in the land of Judah, and gave them vineyards and fields at the same time. \nNow Nebuchadrezzar king of Babylon gave charge concerning Jeremiah to Nebuzaradan the captain of the guard, saying, \nTake him, and look well to him, and do him no harm; but do unto him even as he shall say unto thee. \nSo Nebuzaradan the captain of the guard sent, and Nebushasban, Rabsaris, and Nergalsharezer, Rabmag, and all the king of Babylon's princes; \nEven they sent, and took Jeremiah out of the court of the prison, and committed him unto Gedaliah the son of Ahikam the son of Shaphan, that he should carry him home: so he dwelt among the people. \nNow the word of the LORD came unto Jeremiah, while he was shut up in the court of the prison, saying, \nGo and speak to Ebedmelech the Ethiopian, saying, Thus saith the LORD of hosts, the God of Israel; Behold, I will bring my words upon this city for evil, and not for good; and they shall be accomplished in that day before thee. \nBut I will deliver thee in that day, saith the LORD: and thou shalt not be given into the hand of the men of whom thou art afraid. \nFor I will surely deliver thee, and thou shalt not fall by the sword, but thy life shall be for a prey unto thee: because thou hast put thy trust in me, saith the LORD. \nThe word that came to Jeremiah from the LORD, after that Nebuzaradan the captain of the guard had let him go from Ramah, when he had taken him being bound in chains among all that were carried away captive of Jerusalem and Judah, which were carried away captive unto Babylon. \nAnd the captain of the guard took Jeremiah, and said unto him, The LORD thy God hath pronounced this evil upon this place. \nNow the LORD hath brought it, and done according as he hath said: because ye have sinned against the LORD, and have not obeyed his voice, therefore this thing is come upon you. \nAnd now, behold, I loose thee this day from the chains which were upon thine hand. If it seem good unto thee to come with me into Babylon, come; and I will look well unto thee: but if it seem ill unto thee to come with me into Babylon, forbear: behold, all the land is before thee: whither it seemeth good and convenient for thee to go, thither go. \nNow while he was not yet gone back, he said, Go back also to Gedaliah the son of Ahikam the son of Shaphan, whom the king of Babylon hath made governor over the cities of Judah, and dwell with him among the people: or go wheresoever it seemeth convenient unto thee to go. So the captain of the guard gave him victuals and a reward, and let him go. \nThen went Jeremiah unto Gedaliah the son of Ahikam to Mizpah; and dwelt with him among the people that were left in the land. \nNow when all the captains of the forces which were in the fields, even they and their men, heard that the king of Babylon had made Gedaliah the son of Ahikam governor in the land, and had committed unto him men, and women, and children, and of the poor of the land, of them that were not carried away captive to Babylon; \nThen they came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan and Jonathan the sons of Kareah, and Seraiah the son of Tanhumeth, and the sons of Ephai the Netophathite, and Jezaniah the son of a Maachathite, they and their men. \nAnd Gedaliah the son of Ahikam the son of Shaphan sware unto them and to their men, saying, Fear not to serve the Chaldeans: dwell in the land, and serve the king of Babylon, and it shall be well with you. \nAs for me, behold, I will dwell at Mizpah, to serve the Chaldeans, which will come unto us: but ye, gather ye wine, and summer fruits, and oil, and put them in your vessels, and dwell in your cities that ye have taken. \nLikewise when all the Jews that were in Moab, and among the Ammonites, and in Edom, and that were in all the countries, heard that the king of Babylon had left a remnant of Judah, and that he had set over them Gedaliah the son of Ahikam the son of Shaphan; \nEven all the Jews returned out of all places whither they were driven, and came to the land of Judah, to Gedaliah, unto Mizpah, and gathered wine and summer fruits very much. \nMoreover Johanan the son of Kareah, and all the captains of the forces that were in the fields, came to Gedaliah to Mizpah, \nAnd said unto him, Dost thou certainly know that Baalis the king of the Ammonites hath sent Ishmael the son of Nethaniah to slay thee? But Gedaliah the son of Ahikam believed them not. \nThen Johanan the son of Kareah spake to Gedaliah in Mizpah secretly saying, Let me go, I pray thee, and I will slay Ishmael the son of Nethaniah, and no man shall know it: wherefore should he slay thee, that all the Jews which are gathered unto thee should be scattered, and the remnant in Judah perish? \nBut Gedaliah the son of Ahikam said unto Johanan the son of Kareah, Thou shalt not do this thing: for thou speakest falsely of Ishmael. \nNow it came to pass in the seventh month, that Ishmael the son of Nethaniah the son of Elishama, of the seed royal, and the princes of the king, even ten men with him, came unto Gedaliah the son of Ahikam to Mizpah; and there they did eat bread together in Mizpah. \nThen arose Ishmael the son of Nethaniah, and the ten men that were with him, and smote Gedaliah the son of Ahikam the son of Shaphan with the sword, and slew him, whom the king of Babylon had made governor over the land. \nIshmael also slew all the Jews that were with him, even with Gedaliah, at Mizpah, and the Chaldeans that were found there, and the men of war. \nAnd it came to pass the second day after he had slain Gedaliah, and no man knew it, \nThat there came certain from Shechem, from Shiloh, and from Samaria, even fourscore men, having their beards shaven, and their clothes rent, and having cut themselves, with offerings and incense in their hand, to bring them to the house of the LORD. \nAnd Ishmael the son of Nethaniah went forth from Mizpah to meet them, weeping all along as he went: and it came to pass, as he met them, he said unto them, Come to Gedaliah the son of Ahikam. \nAnd it was so, when they came into the midst of the city, that Ishmael the son of Nethaniah slew them, and cast them into the midst of the pit, he, and the men that were with him. \nBut ten men were found among them that said unto Ishmael, Slay us not: for we have treasures in the field, of wheat, and of barley, and of oil, and of honey. So he forbare, and slew them not among their brethren. \nNow the pit wherein Ishmael had cast all the dead bodies of the men, whom he had slain because of Gedaliah, was it which Asa the king had made for fear of Baasha king of Israel: and Ishmael the son of Nethaniah filled it with them that were slain. \nThen Ishmael carried away captive all the residue of the people that were in Mizpah, even the king's daughters, and all the people that remained in Mizpah, whom Nebuzaradan the captain of the guard had committed to Gedaliah the son of Ahikam: and Ishmael the son of Nethaniah carried them away captive, and departed to go over to the Ammonites. \nBut when Johanan the son of Kareah, and all the captains of the forces that were with him, heard of all the evil that Ishmael the son of Nethaniah had done, \nThen they took all the men, and went to fight with Ishmael the son of Nethaniah, and found him by the great waters that are in Gibeon. \nNow it came to pass, that when all the people which were with Ishmael saw Johanan the son of Kareah, and all the captains of the forces that were with him, then they were glad. \nSo all the people that Ishmael had carried away captive from Mizpah cast about and returned, and went unto Johanan the son of Kareah. \nBut Ishmael the son of Nethaniah escaped from Johanan with eight men, and went to the Ammonites. \nThen took Johanan the son of Kareah, and all the captains of the forces that were with him, all the remnant of the people whom he had recovered from Ishmael the son of Nethaniah, from Mizpah, after that he had slain Gedaliah the son of Ahikam, even mighty men of war, and the women, and the children, and the eunuchs, whom he had brought again from Gibeon: \nAnd they departed, and dwelt in the habitation of Chimham, which is by Bethlehem, to go to enter into Egypt, \nBecause of the Chaldeans: for they were afraid of them, because Ishmael the son of Nethaniah had slain Gedaliah the son of Ahikam, whom the king of Babylon made governor in the land. \nThen all the captains of the forces, and Johanan the son of Kareah, and Jezaniah the son of Hoshaiah, and all the people from the least even unto the greatest, came near, \nAnd said unto Jeremiah the prophet, Let, we beseech thee, our supplication be accepted before thee, and pray for us unto the LORD thy God, even for all this remnant; (for we are left but a few of many, as thine eyes do behold us:) \nThat the LORD thy God may shew us the way wherein we may walk, and the thing that we may do. \nThen Jeremiah the prophet said unto them, I have heard you; behold, I will pray unto the LORD your God according to your words; and it shall come to pass, that whatsoever thing the LORD shall answer you, I will declare it unto you; I will keep nothing back from you. \nThen they said to Jeremiah, The LORD be a true and faithful witness between us, if we do not even according to all things for the which the LORD thy God shall send thee to us. \nWhether it be good, or whether it be evil, we will obey the voice of the LORD our God, to whom we send thee; that it may be well with us, when we obey the voice of the LORD our God. \nAnd it came to pass after ten days, that the word of the LORD came unto Jeremiah. \nThen called he Johanan the son of Kareah, and all the captains of the forces which were with him, and all the people from the least even to the greatest, \nAnd said unto them, Thus saith the LORD, the God of Israel, unto whom ye sent me to present your supplication before him; \nIf ye will still abide in this land, then will I build you, and not pull you down, and I will plant you, and not pluck you up: for I repent me of the evil that I have done unto you. \nBe not afraid of the king of Babylon, of whom ye are afraid; be not afraid of him, saith the LORD: for I am with you to save you, and to deliver you from his hand. \nAnd I will shew mercies unto you, that he may have mercy upon you, and cause you to return to your own land. \nBut if ye say, We will not dwell in this land, neither obey the voice of the LORD your God, \nSaying, No; but we will go into the land of Egypt, where we shall see no war, nor hear the sound of the trumpet, nor have hunger of bread; and there will we dwell: \nAnd now therefore hear the word of the LORD, ye remnant of Judah; Thus saith the LORD of hosts, the God of Israel; If ye wholly set your faces to enter into Egypt, and go to sojourn there; \nThen it shall come to pass, that the sword, which ye feared, shall overtake you there in the land of Egypt, and the famine, whereof ye were afraid, shall follow close after you there in Egypt; and there ye shall die. \nSo shall it be with all the men that set their faces to go into Egypt to sojourn there; they shall die by the sword, by the famine, and by the pestilence: and none of them shall remain or escape from the evil that I will bring upon them. \nFor thus saith the LORD of hosts, the God of Israel; As mine anger and my fury hath been poured forth upon the inhabitants of Jerusalem; so shall my fury be poured forth upon you, when ye shall enter into Egypt: and ye shall be an execration, and an astonishment, and a curse, and a reproach; and ye shall see this place no more. \nThe LORD hath said concerning you, O ye remnant of Judah; Go ye not into Egypt: know certainly that I have admonished you this day. \nFor ye dissembled in your hearts, when ye sent me unto the LORD your God, saying, Pray for us unto the LORD our God; and according unto all that the LORD our God shall say, so declare unto us, and we will do it. \nAnd now I have this day declared it to you; but ye have not obeyed the voice of the LORD your God, nor any thing for the which he hath sent me unto you. \nNow therefore know certainly that ye shall die by the sword, by the famine, and by the pestilence, in the place whither ye desire to go and to sojourn. \nAnd it came to pass, that when Jeremiah had made an end of speaking unto all the people all the words of the LORD their God, for which the LORD their God had sent him to them, even all these words, \nThen spake Azariah the son of Hoshaiah, and Johanan the son of Kareah, and all the proud men, saying unto Jeremiah, Thou speakest falsely: the LORD our God hath not sent thee to say, Go not into Egypt to sojourn there: \nBut Baruch the son of Neriah setteth thee on against us, for to deliver us into the hand of the Chaldeans, that they might put us to death, and carry us away captives into Babylon. \nSo Johanan the son of Kareah, and all the captains of the forces, and all the people, obeyed not the voice of the LORD, to dwell in the land of Judah. \nBut Johanan the son of Kareah, and all the captains of the forces, took all the remnant of Judah, that were returned from all nations, whither they had been driven, to dwell in the land of Judah; \nEven men, and women, and children, and the king's daughters, and every person that Nebuzaradan the captain of the guard had left with Gedaliah the son of Ahikam the son of Shaphan, and Jeremiah the prophet, and Baruch the son of Neriah. \nSo they came into the land of Egypt: for they obeyed not the voice of the LORD: thus came they even to Tahpanhes. \nThen came the word of the LORD unto Jeremiah in Tahpanhes, saying, \nTake great stones in thine hand, and hide them in the clay in the brickkiln, which is at the entry of Pharaoh's house in Tahpanhes, in the sight of the men of Judah; \nAnd say unto them, Thus saith the LORD of hosts, the God of Israel; Behold, I will send and take Nebuchadrezzar the king of Babylon, my servant, and will set his throne upon these stones that I have hid; and he shall spread his royal pavilion over them. \nAnd when he cometh, he shall smite the land of Egypt, and deliver such as are for death to death; and such as are for captivity to captivity; and such as are for the sword to the sword. \nAnd I will kindle a fire in the houses of the gods of Egypt; and he shall burn them, and carry them away captives: and he shall array himself with the land of Egypt, as a shepherd putteth on his garment; and he shall go forth from thence in peace. \nHe shall break also the images of Bethshemesh, that is in the land of Egypt; and the houses of the gods of the Egyptians shall he burn with fire. \nThe word that came to Jeremiah concerning all the Jews which dwell in the land of Egypt, which dwell at Migdol, and at Tahpanhes, and at Noph, and in the country of Pathros, saying, \nThus saith the LORD of hosts, the God of Israel; Ye have seen all the evil that I have brought upon Jerusalem, and upon all the cities of Judah; and, behold, this day they are a desolation, and no man dwelleth therein, \nBecause of their wickedness which they have committed to provoke me to anger, in that they went to burn incense, and to serve other gods, whom they knew not, neither they, ye, nor your fathers. \nHowbeit I sent unto you all my servants the prophets, rising early and sending them, saying, Oh, do not this abominable thing that I hate. \nBut they hearkened not, nor inclined their ear to turn from their wickedness, to burn no incense unto other gods. \nWherefore my fury and mine anger was poured forth, and was kindled in the cities of Judah and in the streets of Jerusalem; and they are wasted and desolate, as at this day. \nTherefore now thus saith the LORD, the God of hosts, the God of Israel; Wherefore commit ye this great evil against your souls, to cut off from you man and woman, child and suckling, out of Judah, to leave you none to remain; \nIn that ye provoke me unto wrath with the works of your hands, burning incense unto other gods in the land of Egypt, whither ye be gone to dwell, that ye might cut yourselves off, and that ye might be a curse and a reproach among all the nations of the earth? \nHave ye forgotten the wickedness of your fathers, and the wickedness of the kings of Judah, and the wickedness of their wives, and your own wickedness, and the wickedness of your wives, which they have committed in the land of Judah, and in the streets of Jerusalem? \nThey are not humbled even unto this day, neither have they feared, nor walked in my law, nor in my statutes, that I set before you and before your fathers. \nTherefore thus saith the LORD of hosts, the God of Israel; Behold, I will set my face against you for evil, and to cut off all Judah. \nAnd I will take the remnant of Judah, that have set their faces to go into the land of Egypt to sojourn there, and they shall all be consumed, and fall in the land of Egypt; they shall even be consumed by the sword and by the famine: they shall die, from the least even unto the greatest, by the sword and by the famine: and they shall be an execration, and an astonishment, and a curse, and a reproach. \nFor I will punish them that dwell in the land of Egypt, as I have punished Jerusalem, by the sword, by the famine, and by the pestilence: \nSo that none of the remnant of Judah, which are gone into the land of Egypt to sojourn there, shall escape or remain, that they should return into the land of Judah, to the which they have a desire to return to dwell there: for none shall return but such as shall escape. \nThen all the men which knew that their wives had burned incense unto other gods, and all the women that stood by, a great multitude, even all the people that dwelt in the land of Egypt, in Pathros, answered Jeremiah, saying, \nAs for the word that thou hast spoken unto us in the name of the LORD, we will not hearken unto thee. \nBut we will certainly do whatsoever thing goeth forth out of our own mouth, to burn incense unto the queen of heaven, and to pour out drink offerings unto her, as we have done, we, and our fathers, our kings, and our princes, in the cities of Judah, and in the streets of Jerusalem: for then had we plenty of victuals, and were well, and saw no evil. \nBut since we left off to burn incense to the queen of heaven, and to pour out drink offerings unto her, we have wanted all things, and have been consumed by the sword and by the famine. \nAnd when we burned incense to the queen of heaven, and poured out drink offerings unto her, did we make her cakes to worship her, and pour out drink offerings unto her, without our men? \nThen Jeremiah said unto all the people, to the men, and to the women, and to all the people which had given him that answer, saying, \nThe incense that ye burned in the cities of Judah, and in the streets of Jerusalem, ye, and your fathers, your kings, and your princes, and the people of the land, did not the LORD remember them, and came it not into his mind? \nSo that the LORD could no longer bear, because of the evil of your doings, and because of the abominations which ye have committed; therefore is your land a desolation, and an astonishment, and a curse, without an inhabitant, as at this day. \nBecause ye have burned incense, and because ye have sinned against the LORD, and have not obeyed the voice of the LORD, nor walked in his law, nor in his statutes, nor in his testimonies; therefore this evil is happened unto you, as at this day. \nMoreover Jeremiah said unto all the people, and to all the women, Hear the word of the LORD, all Judah that are in the land of Egypt: \nThus saith the LORD of hosts, the God of Israel, saying; Ye and your wives have both spoken with your mouths, and fulfilled with your hand, saying, We will surely perform our vows that we have vowed, to burn incense to the queen of heaven, and to pour out drink offerings unto her: ye will surely accomplish your vows, and surely perform your vows. \nTherefore hear ye the word of the LORD, all Judah that dwell in the land of Egypt; Behold, I have sworn by my great name, saith the LORD, that my name shall no more be named in the mouth of any man of Judah in all the land of Egypt, saying, The Lord GOD liveth. \nBehold, I will watch over them for evil, and not for good: and all the men of Judah that are in the land of Egypt shall be consumed by the sword and by the famine, until there be an end of them. \nYet a small number that escape the sword shall return out of the land of Egypt into the land of Judah, and all the remnant of Judah, that are gone into the land of Egypt to sojourn there, shall know whose words shall stand, mine, or their's. \nAnd this shall be a sign unto you, saith the LORD, that I will punish you in this place, that ye may know that my words shall surely stand against you for evil: \nThus saith the LORD; Behold, I will give Pharaohhophra king of Egypt into the hand of his enemies, and into the hand of them that seek his life; as I gave Zedekiah king of Judah into the hand of Nebuchadrezzar king of Babylon, his enemy, and that sought his life. \nThe word that Jeremiah the prophet spake unto Baruch the son of Neriah, when he had written these words in a book at the mouth of Jeremiah, in the fourth year of Jehoiakim the son of Josiah king of Judah, saying, \nThus saith the LORD, the God of Israel, unto thee, O Baruch: \nThou didst say, Woe is me now! for the LORD hath added grief to my sorrow; I fainted in my sighing, and I find no rest. \nThus shalt thou say unto him, The LORD saith thus; Behold, that which I have built will I break down, and that which I have planted I will pluck up, even this whole land. \nAnd seekest thou great things for thyself? seek them not: for, behold, I will bring evil upon all flesh, saith the LORD: but thy life will I give unto thee for a prey in all places whither thou goest. \nThe word of the LORD which came to Jeremiah the prophet against the Gentiles; \nAgainst Egypt, against the army of Pharaohnecho king of Egypt, which was by the river Euphrates in Carchemish, which Nebuchadrezzar king of Babylon smote in the fourth year of Jehoiakim the son of Josiah king of Judah. \nOrder ye the buckler and shield, and draw near to battle. \nHarness the horses; and get up, ye horsemen, and stand forth with your helmets; furbish the spears, and put on the brigandines. \nWherefore have I seen them dismayed and turned away back? and their mighty ones are beaten down, and are fled apace, and look not back: for fear was round about, saith the LORD. \nLet not the swift flee away, nor the mighty man escape; they shall stumble, and fall toward the north by the river Euphrates. \nWho is this that cometh up as a flood, whose waters are moved as the rivers? \nEgypt riseth up like a flood, and his waters are moved like the rivers; and he saith, I will go up, and will cover the earth; I will destroy the city and the inhabitants thereof. \nCome up, ye horses; and rage, ye chariots; and let the mighty men come forth; the Ethiopians and the Libyans, that handle the shield; and the Lydians, that handle and bend the bow. \nFor this is the day of the Lord GOD of hosts, a day of vengeance, that he may avenge him of his adversaries: and the sword shall devour, and it shall be satiate and made drunk with their blood: for the Lord GOD of hosts hath a sacrifice in the north country by the river Euphrates. \nGo up into Gilead, and take balm, O virgin, the daughter of Egypt: in vain shalt thou use many medicines; for thou shalt not be cured. \nThe nations have heard of thy shame, and thy cry hath filled the land: for the mighty man hath stumbled against the mighty, and they are fallen both together. \nThe word that the LORD spake to Jeremiah the prophet, how Nebuchadrezzar king of Babylon should come and smite the land of Egypt. \nDeclare ye in Egypt, and publish in Migdol, and publish in Noph and in Tahpanhes: say ye, Stand fast, and prepare thee; for the sword shall devour round about thee. \nWhy are thy valiant men swept away? they stood not, because the LORD did drive them. \nHe made many to fall, yea, one fell upon another: and they said, Arise, and let us go again to our own people, and to the land of our nativity, from the oppressing sword. \nThey did cry there, Pharaoh king of Egypt is but a noise; he hath passed the time appointed. \nAs I live, saith the King, whose name is the LORD of hosts, Surely as Tabor is among the mountains, and as Carmel by the sea, so shall he come. \nO thou daughter dwelling in Egypt, furnish thyself to go into captivity: for Noph shall be waste and desolate without an inhabitant. \nEgypt is like a very fair heifer, but destruction cometh; it cometh out of the north. \nAlso her hired men are in the midst of her like fatted bullocks; for they also are turned back, and are fled away together: they did not stand, because the day of their calamity was come upon them, and the time of their visitation. \nThe voice thereof shall go like a serpent; for they shall march with an army, and come against her with axes, as hewers of wood. \nThey shall cut down her forest, saith the LORD, though it cannot be searched; because they are more than the grasshoppers, and are innumerable. \nThe daughter of Egypt shall be confounded; she shall be delivered into the hand of the people of the north. \nThe LORD of hosts, the God of Israel, saith; Behold, I will punish the multitude of No, and Pharaoh, and Egypt, with their gods, and their kings; even Pharaoh, and all them that trust in him: \nAnd I will deliver them into the hand of those that seek their lives, and into the hand of Nebuchadrezzar king of Babylon, and into the hand of his servants: and afterward it shall be inhabited, as in the days of old, saith the LORD. \nBut fear not thou, O my servant Jacob, and be not dismayed, O Israel: for, behold, I will save thee from afar off, and thy seed from the land of their captivity; and Jacob shall return, and be in rest and at ease, and none shall make him afraid. \nFear thou not, O Jacob my servant, saith the LORD: for I am with thee; for I will make a full end of all the nations whither I have driven thee: but I will not make a full end of thee, but correct thee in measure; yet will I not leave thee wholly unpunished. \nThe word of the LORD that came to Jeremiah the prophet against the Philistines, before that Pharaoh smote Gaza. \nThus saith the LORD; Behold, waters rise up out of the north, and shall be an overflowing flood, and shall overflow the land, and all that is therein; the city, and them that dwell therein: then the men shall cry, and all the inhabitants of the land shall howl. \nAt the noise of the stamping of the hoofs of his strong horses, at the rushing of his chariots, and at the rumbling of his wheels, the fathers shall not look back to their children for feebleness of hands; \nBecause of the day that cometh to spoil all the Philistines, and to cut off from Tyrus and Zidon every helper that remaineth: for the LORD will spoil the Philistines, the remnant of the country of Caphtor. \nBaldness is come upon Gaza; Ashkelon is cut off with the remnant of their valley: how long wilt thou cut thyself? \nO thou sword of the LORD, how long will it be ere thou be quiet? put up thyself into thy scabbard, rest, and be still. \nHow can it be quiet, seeing the LORD hath given it a charge against Ashkelon, and against the sea shore? there hath he appointed it. \nAgainst Moab thus saith the LORD of hosts, the God of Israel; Woe unto Nebo! for it is spoiled: Kiriathaim is confounded and taken: Misgab is confounded and dismayed. \nThere shall be no more praise of Moab: in Heshbon they have devised evil against it; come, and let us cut it off from being a nation. Also thou shalt be cut down, O Madmen; the sword shall pursue thee. \nA voice of crying shall be from Horonaim, spoiling and great destruction. \nMoab is destroyed; her little ones have caused a cry to be heard. \nFor in the going up of Luhith continual weeping shall go up; for in the going down of Horonaim the enemies have heard a cry of destruction. \nFlee, save your lives, and be like the heath in the wilderness. \nFor because thou hast trusted in thy works and in thy treasures, thou shalt also be taken: and Chemosh shall go forth into captivity with his priests and his princes together. \nAnd the spoiler shall come upon every city, and no city shall escape: the valley also shall perish, and the plain shall be destroyed, as the LORD hath spoken. \nGive wings unto Moab, that it may flee and get away: for the cities thereof shall be desolate, without any to dwell therein. \nCursed be he that doeth the work of the LORD deceitfully, and cursed be he that keepeth back his sword from blood. \nMoab hath been at ease from his youth, and he hath settled on his lees, and hath not been emptied from vessel to vessel, neither hath he gone into captivity: therefore his taste remained in him, and his scent is not changed. \nTherefore, behold, the days come, saith the LORD, that I will send unto him wanderers, that shall cause him to wander, and shall empty his vessels, and break their bottles. \nAnd Moab shall be ashamed of Chemosh, as the house of Israel was ashamed of Bethel their confidence. \nHow say ye, We are mighty and strong men for the war? \nMoab is spoiled, and gone up out of her cities, and his chosen young men are gone down to the slaughter, saith the King, whose name is the LORD of hosts. \nThe calamity of Moab is near to come, and his affliction hasteth fast. \nAll ye that are about him, bemoan him; and all ye that know his name, say, How is the strong staff broken, and the beautiful rod! \nThou daughter that dost inhabit Dibon, come down from thy glory, and sit in thirst; for the spoiler of Moab shall come upon thee, and he shall destroy thy strong holds. \nO inhabitant of Aroer, stand by the way, and espy; ask him that fleeth, and her that escapeth, and say, What is done? \nMoab is confounded; for it is broken down: howl and cry; tell ye it in Arnon, that Moab is spoiled, \nAnd judgment is come upon the plain country; upon Holon, and upon Jahazah, and upon Mephaath, \nAnd upon Dibon, and upon Nebo, and upon Bethdiblathaim, \nAnd upon Kiriathaim, and upon Bethgamul, and upon Bethmeon, \nAnd upon Kerioth, and upon Bozrah, and upon all the cities of the land of Moab, far or near. \nThe horn of Moab is cut off, and his arm is broken, saith the LORD. \nMake ye him drunken: for he magnified himself against the LORD: Moab also shall wallow in his vomit, and he also shall be in derision. \nFor was not Israel a derision unto thee? was he found among thieves? for since thou spakest of him, thou skippedst for joy. \nO ye that dwell in Moab, leave the cities, and dwell in the rock, and be like the dove that maketh her nest in the sides of the hole's mouth. \nWe have heard the pride of Moab, (he is exceeding proud) his loftiness, and his arrogancy, and his pride, and the haughtiness of his heart. \nI know his wrath, saith the LORD; but it shall not be so; his lies shall not so effect it. \nTherefore will I howl for Moab, and I will cry out for all Moab; mine heart shall mourn for the men of Kirheres. \nO vine of Sibmah, I will weep for thee with the weeping of Jazer: thy plants are gone over the sea, they reach even to the sea of Jazer: the spoiler is fallen upon thy summer fruits and upon thy vintage. \nAnd joy and gladness is taken from the plentiful field, and from the land of Moab, and I have caused wine to fail from the winepresses: none shall tread with shouting; their shouting shall be no shouting. \nFrom the cry of Heshbon even unto Elealeh, and even unto Jahaz, have they uttered their voice, from Zoar even unto Horonaim, as an heifer of three years old: for the waters also of Nimrim shall be desolate. \nMoreover I will cause to cease in Moab, saith the LORD, him that offereth in the high places, and him that burneth incense to his gods. \nTherefore mine heart shall sound for Moab like pipes, and mine heart shall sound like pipes for the men of Kirheres: because the riches that he hath gotten are perished. \nFor every head shall be bald, and every beard clipped: upon all the hands shall be cuttings, and upon the loins sackcloth. \nThere shall be lamentation generally upon all the housetops of Moab, and in the streets thereof: for I have broken Moab like a vessel wherein is no pleasure, saith the LORD. \nThey shall howl, saying, How is it broken down! how hath Moab turned the back with shame! so shall Moab be a derision and a dismaying to all them about him. \nFor thus saith the LORD; Behold, he shall fly as an eagle, and shall spread his wings over Moab. \nKerioth is taken, and the strong holds are surprised, and the mighty men's hearts in Moab at that day shall be as the heart of a woman in her pangs. \nAnd Moab shall be destroyed from being a people, because he hath magnified himself against the LORD. \nFear, and the pit, and the snare, shall be upon thee, O inhabitant of Moab, saith the LORD. \nHe that fleeth from the fear shall fall into the pit; and he that getteth up out of the pit shall be taken in the snare: for I will bring upon it, even upon Moab, the year of their visitation, saith the LORD. \nThey that fled stood under the shadow of Heshbon because of the force: but a fire shall come forth out of Heshbon, and a flame from the midst of Sihon, and shall devour the corner of Moab, and the crown of the head of the tumultuous ones. \nWoe be unto thee, O Moab! the people of Chemosh perisheth: for thy sons are taken captives, and thy daughters captives. \nYet will I bring again the captivity of Moab in the latter days, saith the LORD. Thus far is the judgment of Moab. \nConcerning the Ammonites, thus saith the LORD; Hath Israel no sons? hath he no heir? why then doth their king inherit Gad, and his people dwell in his cities? \nTherefore, behold, the days come, saith the LORD, that I will cause an alarm of war to be heard in Rabbah of the Ammonites; and it shall be a desolate heap, and her daughters shall be burned with fire: then shall Israel be heir unto them that were his heirs, saith the LORD. \nHowl, O Heshbon, for Ai is spoiled: cry, ye daughters of Rabbah, gird you with sackcloth; lament, and run to and fro by the hedges; for their king shall go into captivity, and his priests and his princes together. \nWherefore gloriest thou in the valleys, thy flowing valley, O backsliding daughter? that trusted in her treasures, saying, Who shall come unto me? \nBehold, I will bring a fear upon thee, saith the Lord GOD of hosts, from all those that be about thee; and ye shall be driven out every man right forth; and none shall gather up him that wandereth. \nAnd afterward I will bring again the captivity of the children of Ammon, saith the LORD. \nConcerning Edom, thus saith the LORD of hosts; Is wisdom no more in Teman? is counsel perished from the prudent? is their wisdom vanished? \nFlee ye, turn back, dwell deep, O inhabitants of Dedan; for I will bring the calamity of Esau upon him, the time that I will visit him. \nIf grapegatherers come to thee, would they not leave some gleaning grapes? if thieves by night, they will destroy till they have enough. \nBut I have made Esau bare, I have uncovered his secret places, and he shall not be able to hide himself: his seed is spoiled, and his brethren, and his neighbours, and he is not. \nLeave thy fatherless children, I will preserve them alive; and let thy widows trust in me. \nFor thus saith the LORD; Behold, they whose judgment was not to drink of the cup have assuredly drunken; and art thou he that shall altogether go unpunished? thou shalt not go unpunished, but thou shalt surely drink of it. \nFor I have sworn by myself, saith the LORD, that Bozrah shall become a desolation, a reproach, a waste, and a curse; and all the cities thereof shall be perpetual wastes. \nI have heard a rumour from the LORD, and an ambassador is sent unto the heathen, saying, Gather ye together, and come against her, and rise up to the battle. \nFor, lo, I will make thee small among the heathen, and despised among men. \nThy terribleness hath deceived thee, and the pride of thine heart, O thou that dwellest in the clefts of the rock, that holdest the height of the hill: though thou shouldest make thy nest as high as the eagle, I will bring thee down from thence, saith the LORD. \nAlso Edom shall be a desolation: every one that goeth by it shall be astonished, and shall hiss at all the plagues thereof. \nAs in the overthrow of Sodom and Gomorrah and the neighbour cities thereof, saith the LORD, no man shall abide there, neither shall a son of man dwell in it. \nBehold, he shall come up like a lion from the swelling of Jordan against the habitation of the strong: but I will suddenly make him run away from her: and who is a chosen man, that I may appoint over her? for who is like me? and who will appoint me the time? and who is that shepherd that will stand before me? \nTherefore hear the counsel of the LORD, that he hath taken against Edom; and his purposes, that he hath purposed against the inhabitants of Teman: Surely the least of the flock shall draw them out: surely he shall make their habitations desolate with them. \nThe earth is moved at the noise of their fall, at the cry the noise thereof was heard in the Red sea. \nBehold, he shall come up and fly as the eagle, and spread his wings over Bozrah: and at that day shall the heart of the mighty men of Edom be as the heart of a woman in her pangs. \nConcerning Damascus. Hamath is confounded, and Arpad: for they have heard evil tidings: they are fainthearted; there is sorrow on the sea; it cannot be quiet. \nDamascus is waxed feeble, and turneth herself to flee, and fear hath seized on her: anguish and sorrows have taken her, as a woman in travail. \nHow is the city of praise not left, the city of my joy! \nTherefore her young men shall fall in her streets, and all the men of war shall be cut off in that day, saith the LORD of hosts. \nAnd I will kindle a fire in the wall of Damascus, and it shall consume the palaces of Benhadad. \nConcerning Kedar, and concerning the kingdoms of Hazor, which Nebuchadrezzar king of Babylon shall smite, thus saith the LORD; Arise ye, go up to Kedar, and spoil the men of the east. \nTheir tents and their flocks shall they take away: they shall take to themselves their curtains, and all their vessels, and their camels; and they shall cry unto them, Fear is on every side. \nFlee, get you far off, dwell deep, O ye inhabitants of Hazor, saith the LORD; for Nebuchadrezzar king of Babylon hath taken counsel against you, and hath conceived a purpose against you. \nArise, get you up unto the wealthy nation, that dwelleth without care, saith the LORD, which have neither gates nor bars, which dwell alone. \nAnd their camels shall be a booty, and the multitude of their cattle a spoil: and I will scatter into all winds them that are in the utmost corners; and I will bring their calamity from all sides thereof, saith the LORD. \nAnd Hazor shall be a dwelling for dragons, and a desolation for ever: there shall no man abide there, nor any son of man dwell in it. \nThe word of the LORD that came to Jeremiah the prophet against Elam in the beginning of the reign of Zedekiah king of Judah, saying, \nThus saith the LORD of hosts; Behold, I will break the bow of Elam, the chief of their might. \nAnd upon Elam will I bring the four winds from the four quarters of heaven, and will scatter them toward all those winds; and there shall be no nation whither the outcasts of Elam shall not come. \nFor I will cause Elam to be dismayed before their enemies, and before them that seek their life: and I will bring evil upon them, even my fierce anger, saith the LORD; and I will send the sword after them, till I have consumed them: \nAnd I will set my throne in Elam, and will destroy from thence the king and the princes, saith the LORD. \nBut it shall come to pass in the latter days, that I will bring again the captivity of Elam, saith the LORD. \nThe word that the LORD spake against Babylon and against the land of the Chaldeans by Jeremiah the prophet. \nDeclare ye among the nations, and publish, and set up a standard; publish, and conceal not: say, Babylon is taken, Bel is confounded, Merodach is broken in pieces; her idols are confounded, her images are broken in pieces. \nFor out of the north there cometh up a nation against her, which shall make her land desolate, and none shall dwell therein: they shall remove, they shall depart, both man and beast. \nIn those days, and in that time, saith the LORD, the children of Israel shall come, they and the children of Judah together, going and weeping: they shall go, and seek the LORD their God. \nThey shall ask the way to Zion with their faces thitherward, saying, Come, and let us join ourselves to the LORD in a perpetual covenant that shall not be forgotten. \nMy people hath been lost sheep: their shepherds have caused them to go astray, they have turned them away on the mountains: they have gone from mountain to hill, they have forgotten their restingplace. \nAll that found them have devoured them: and their adversaries said, We offend not, because they have sinned against the LORD, the habitation of justice, even the LORD, the hope of their fathers. \nRemove out of the midst of Babylon, and go forth out of the land of the Chaldeans, and be as the he goats before the flocks. \nFor, lo, I will raise and cause to come up against Babylon an assembly of great nations from the north country: and they shall set themselves in array against her; from thence she shall be taken: their arrows shall be as of a mighty expert man; none shall return in vain. \nAnd Chaldea shall be a spoil: all that spoil her shall be satisfied, saith the LORD. \nBecause ye were glad, because ye rejoiced, O ye destroyers of mine heritage, because ye are grown fat as the heifer at grass, and bellow as bulls; \nYour mother shall be sore confounded; she that bare you shall be ashamed: behold, the hindermost of the nations shall be a wilderness, a dry land, and a desert. \nBecause of the wrath of the LORD it shall not be inhabited, but it shall be wholly desolate: every one that goeth by Babylon shall be astonished, and hiss at all her plagues. \nPut yourselves in array against Babylon round about: all ye that bend the bow, shoot at her, spare no arrows: for she hath sinned against the LORD. \nShout against her round about: she hath given her hand: her foundations are fallen, her walls are thrown down: for it is the vengeance of the LORD: take vengeance upon her; as she hath done, do unto her. \nCut off the sower from Babylon, and him that handleth the sickle in the time of harvest: for fear of the oppressing sword they shall turn every one to his people, and they shall flee every one to his own land. \nIsrael is a scattered sheep; the lions have driven him away: first the king of Assyria hath devoured him; and last this Nebuchadrezzar king of Babylon hath broken his bones. \nTherefore thus saith the LORD of hosts, the God of Israel; Behold, I will punish the king of Babylon and his land, as I have punished the king of Assyria. \nAnd I will bring Israel again to his habitation, and he shall feed on Carmel and Bashan, and his soul shall be satisfied upon mount Ephraim and Gilead. \nIn those days, and in that time, saith the LORD, the iniquity of Israel shall be sought for, and there shall be none; and the sins of Judah, and they shall not be found: for I will pardon them whom I reserve. \nGo up against the land of Merathaim, even against it, and against the inhabitants of Pekod: waste and utterly destroy after them, saith the LORD, and do according to all that I have commanded thee. \nA sound of battle is in the land, and of great destruction. \nHow is the hammer of the whole earth cut asunder and broken! how is Babylon become a desolation among the nations! \nI have laid a snare for thee, and thou art also taken, O Babylon, and thou wast not aware: thou art found, and also caught, because thou hast striven against the LORD. \nThe LORD hath opened his armoury, and hath brought forth the weapons of his indignation: for this is the work of the Lord GOD of hosts in the land of the Chaldeans. \nCome against her from the utmost border, open her storehouses: cast her up as heaps, and destroy her utterly: let nothing of her be left. \nSlay all her bullocks; let them go down to the slaughter: woe unto them! for their day is come, the time of their visitation. \nThe voice of them that flee and escape out of the land of Babylon, to declare in Zion the vengeance of the LORD our God, the vengeance of his temple. \nCall together the archers against Babylon: all ye that bend the bow, camp against it round about; let none thereof escape: recompense her according to her work; according to all that she hath done, do unto her: for she hath been proud against the LORD, against the Holy One of Israel. \nTherefore shall her young men fall in the streets, and all her men of war shall be cut off in that day, saith the LORD. \nBehold, I am against thee, O thou most proud, saith the Lord GOD of hosts: for thy day is come, the time that I will visit thee. \nAnd the most proud shall stumble and fall, and none shall raise him up: and I will kindle a fire in his cities, and it shall devour all round about him. \nThus saith the LORD of hosts; The children of Israel and the children of Judah were oppressed together: and all that took them captives held them fast; they refused to let them go. \nTheir Redeemer is strong; the LORD of hosts is his name: he shall throughly plead their cause, that he may give rest to the land, and disquiet the inhabitants of Babylon. \nA sword is upon the Chaldeans, saith the LORD, and upon the inhabitants of Babylon, and upon her princes, and upon her wise men. \nA sword is upon the liars; and they shall dote: a sword is upon her mighty men; and they shall be dismayed. \nA sword is upon their horses, and upon their chariots, and upon all the mingled people that are in the midst of her; and they shall become as women: a sword is upon her treasures; and they shall be robbed. \nA drought is upon her waters; and they shall be dried up: for it is the land of graven images, and they are mad upon their idols. \nTherefore the wild beasts of the desert with the wild beasts of the islands shall dwell there, and the owls shall dwell therein: and it shall be no more inhabited for ever; neither shall it be dwelt in from generation to generation. \nAs God overthrew Sodom and Gomorrah and the neighbour cities thereof, saith the LORD; so shall no man abide there, neither shall any son of man dwell therein. \nBehold, a people shall come from the north, and a great nation, and many kings shall be raised up from the coasts of the earth. \nThey shall hold the bow and the lance: they are cruel, and will not shew mercy: their voice shall roar like the sea, and they shall ride upon horses, every one put in array, like a man to the battle, against thee, O daughter of Babylon. \nThe king of Babylon hath heard the report of them, and his hands waxed feeble: anguish took hold of him, and pangs as of a woman in travail. \nBehold, he shall come up like a lion from the swelling of Jordan unto the habitation of the strong: but I will make them suddenly run away from her: and who is a chosen man, that I may appoint over her? for who is like me? and who will appoint me the time? and who is that shepherd that will stand before me? \nTherefore hear ye the counsel of the LORD, that he hath taken against Babylon; and his purposes, that he hath purposed against the land of the Chaldeans: Surely the least of the flock shall draw them out: surely he shall make their habitation desolate with them. \nAt the noise of the taking of Babylon the earth is moved, and the cry is heard among the nations. \nThus saith the LORD; Behold, I will raise up against Babylon, and against them that dwell in the midst of them that rise up against me, a destroying wind; \nAnd will send unto Babylon fanners, that shall fan her, and shall empty her land: for in the day of trouble they shall be against her round about. \nAgainst him that bendeth let the archer bend his bow, and against him that lifteth himself up in his brigandine: and spare ye not her young men; destroy ye utterly all her host. \nThus the slain shall fall in the land of the Chaldeans, and they that are thrust through in her streets. \nFor Israel hath not been forsaken, nor Judah of his God, of the LORD of hosts; though their land was filled with sin against the Holy One of Israel. \nFlee out of the midst of Babylon, and deliver every man his soul: be not cut off in her iniquity; for this is the time of the LORD's vengeance; he will render unto her a recompence. \nBabylon hath been a golden cup in the LORD's hand, that made all the earth drunken: the nations have drunken of her wine; therefore the nations are mad. \nBabylon is suddenly fallen and destroyed: howl for her; take balm for her pain, if so be she may be healed. \nWe would have healed Babylon, but she is not healed: forsake her, and let us go every one into his own country: for her judgment reacheth unto heaven, and is lifted up even to the skies. \nThe LORD hath brought forth our righteousness: come, and let us declare in Zion the work of the LORD our God. \nMake bright the arrows; gather the shields: the LORD hath raised up the spirit of the kings of the Medes: for his device is against Babylon, to destroy it; because it is the vengeance of the LORD, the vengeance of his temple. \nSet up the standard upon the walls of Babylon, make the watch strong, set up the watchmen, prepare the ambushes: for the LORD hath both devised and done that which he spake against the inhabitants of Babylon. \nO thou that dwellest upon many waters, abundant in treasures, thine end is come, and the measure of thy covetousness. \nThe LORD of hosts hath sworn by himself, saying, Surely I will fill thee with men, as with caterpillers; and they shall lift up a shout against thee. \nHe hath made the earth by his power, he hath established the world by his wisdom, and hath stretched out the heaven by his understanding. \nWhen he uttereth his voice, there is a multitude of waters in the heavens; and he causeth the vapours to ascend from the ends of the earth: he maketh lightnings with rain, and bringeth forth the wind out of his treasures. \nEvery man is brutish by his knowledge; every founder is confounded by the graven image: for his molten image is falsehood, and there is no breath in them. \nThey are vanity, the work of errors: in the time of their visitation they shall perish. \nThe portion of Jacob is not like them; for he is the former of all things: and Israel is the rod of his inheritance: the LORD of hosts is his name. \nThou art my battle axe and weapons of war: for with thee will I break in pieces the nations, and with thee will I destroy kingdoms; \nAnd with thee will I break in pieces the horse and his rider; and with thee will I break in pieces the chariot and his rider; \nWith thee also will I break in pieces man and woman; and with thee will I break in pieces old and young; and with thee will I break in pieces the young man and the maid; \nI will also break in pieces with thee the shepherd and his flock; and with thee will I break in pieces the husbandman and his yoke of oxen; and with thee will I break in pieces captains and rulers. \nAnd I will render unto Babylon and to all the inhabitants of Chaldea all their evil that they have done in Zion in your sight, saith the LORD. \nBehold, I am against thee, O destroying mountain, saith the LORD, which destroyest all the earth: and I will stretch out mine hand upon thee, and roll thee down from the rocks, and will make thee a burnt mountain. \nAnd they shall not take of thee a stone for a corner, nor a stone for foundations; but thou shalt be desolate for ever, saith the LORD. \nSet ye up a standard in the land, blow the trumpet among the nations, prepare the nations against her, call together against her the kingdoms of Ararat, Minni, and Ashchenaz; appoint a captain against her; cause the horses to come up as the rough caterpillers. \nPrepare against her the nations with the kings of the Medes, the captains thereof, and all the rulers thereof, and all the land of his dominion. \nAnd the land shall tremble and sorrow: for every purpose of the LORD shall be performed against Babylon, to make the land of Babylon a desolation without an inhabitant. \nThe mighty men of Babylon have forborn to fight, they have remained in their holds: their might hath failed; they became as women: they have burned her dwellingplaces; her bars are broken. \nOne post shall run to meet another, and one messenger to meet another, to shew the king of Babylon that his city is taken at one end, \nAnd that the passages are stopped, and the reeds they have burned with fire, and the men of war are affrighted. \nFor thus saith the LORD of hosts, the God of Israel; The daughter of Babylon is like a threshingfloor, it is time to thresh her: yet a little while, and the time of her harvest shall come. \nNebuchadrezzar the king of Babylon hath devoured me, he hath crushed me, he hath made me an empty vessel, he hath swallowed me up like a dragon, he hath filled his belly with my delicates, he hath cast me out. \nThe violence done to me and to my flesh be upon Babylon, shall the inhabitant of Zion say; and my blood upon the inhabitants of Chaldea, shall Jerusalem say. \nTherefore thus saith the LORD; Behold, I will plead thy cause, and take vengeance for thee; and I will dry up her sea, and make her springs dry. \nAnd Babylon shall become heaps, a dwellingplace for dragons, an astonishment, and an hissing, without an inhabitant. \nThey shall roar together like lions: they shall yell as lions' whelps. \nIn their heat I will make their feasts, and I will make them drunken, that they may rejoice, and sleep a perpetual sleep, and not wake, saith the LORD. \nI will bring them down like lambs to the slaughter, like rams with he goats. \nHow is Sheshach taken! and how is the praise of the whole earth surprised! how is Babylon become an astonishment among the nations! \nThe sea is come up upon Babylon: she is covered with the multitude of the waves thereof. \nHer cities are a desolation, a dry land, and a wilderness, a land wherein no man dwelleth, neither doth any son of man pass thereby. \nAnd I will punish Bel in Babylon, and I will bring forth out of his mouth that which he hath swallowed up: and the nations shall not flow together any more unto him: yea, the wall of Babylon shall fall. \nMy people, go ye out of the midst of her, and deliver ye every man his soul from the fierce anger of the LORD. \nAnd lest your heart faint, and ye fear for the rumour that shall be heard in the land; a rumour shall both come one year, and after that in another year shall come a rumour, and violence in the land, ruler against ruler. \nTherefore, behold, the days come, that I will do judgment upon the graven images of Babylon: and her whole land shall be confounded, and all her slain shall fall in the midst of her. \nThen the heaven and the earth, and all that is therein, shall sing for Babylon: for the spoilers shall come unto her from the north, saith the LORD. \nAs Babylon hath caused the slain of Israel to fall, so at Babylon shall fall the slain of all the earth. \nYe that have escaped the sword, go away, stand not still: remember the LORD afar off, and let Jerusalem come into your mind. \nWe are confounded, because we have heard reproach: shame hath covered our faces: for strangers are come into the sanctuaries of the LORD's house. \nWherefore, behold, the days come, saith the LORD, that I will do judgment upon her graven images: and through all her land the wounded shall groan. \nThough Babylon should mount up to heaven, and though she should fortify the height of her strength, yet from me shall spoilers come unto her, saith the LORD. \nA sound of a cry cometh from Babylon, and great destruction from the land of the Chaldeans: \nBecause the LORD hath spoiled Babylon, and destroyed out of her the great voice; when her waves do roar like great waters, a noise of their voice is uttered: \nBecause the spoiler is come upon her, even upon Babylon, and her mighty men are taken, every one of their bows is broken: for the LORD God of recompences shall surely requite. \nAnd I will make drunk her princes, and her wise men, her captains, and her rulers, and her mighty men: and they shall sleep a perpetual sleep, and not wake, saith the King, whose name is the LORD of hosts. \nThus saith the LORD of hosts; The broad walls of Babylon shall be utterly broken, and her high gates shall be burned with fire; and the people shall labour in vain, and the folk in the fire, and they shall be weary. \nThe word which Jeremiah the prophet commanded Seraiah the son of Neriah, the son of Maaseiah, when he went with Zedekiah the king of Judah into Babylon in the fourth year of his reign. And this Seraiah was a quiet prince. \nSo Jeremiah wrote in a book all the evil that should come upon Babylon, even all these words that are written against Babylon. \nAnd Jeremiah said to Seraiah, When thou comest to Babylon, and shalt see, and shalt read all these words; \nThen shalt thou say, O LORD, thou hast spoken against this place, to cut it off, that none shall remain in it, neither man nor beast, but that it shall be desolate for ever. \nAnd it shall be, when thou hast made an end of reading this book, that thou shalt bind a stone to it, and cast it into the midst of Euphrates: \nAnd thou shalt say, Thus shall Babylon sink, and shall not rise from the evil that I will bring upon her: and they shall be weary. Thus far are the words of Jeremiah. \nZedekiah was one and twenty years old when he began to reign, and he reigned eleven years in Jerusalem. And his mother's name was Hamutal the daughter of Jeremiah of Libnah. \nAnd he did that which was evil in the eyes of the LORD, according to all that Jehoiakim had done. \nFor through the anger of the LORD it came to pass in Jerusalem and Judah, till he had cast them out from his presence, that Zedekiah rebelled against the king of Babylon. \nAnd it came to pass in the ninth year of his reign, in the tenth month, in the tenth day of the month, that Nebuchadrezzar king of Babylon came, he and all his army, against Jerusalem, and pitched against it, and built forts against it round about. \nSo the city was besieged unto the eleventh year of king Zedekiah. \nAnd in the fourth month, in the ninth day of the month, the famine was sore in the city, so that there was no bread for the people of the land. \nThen the city was broken up, and all the men of war fled, and went forth out of the city by night by the way of the gate between the two walls, which was by the king's garden; (now the Chaldeans were by the city round about:) and they went by the way of the plain. \nBut the army of the Chaldeans pursued after the king, and overtook Zedekiah in the plains of Jericho; and all his army was scattered from him. \nThen they took the king, and carried him up unto the king of Babylon to Riblah in the land of Hamath; where he gave judgment upon him. \nAnd the king of Babylon slew the sons of Zedekiah before his eyes: he slew also all the princes of Judah in Riblah. \nThen he put out the eyes of Zedekiah; and the king of Babylon bound him in chains, and carried him to Babylon, and put him in prison till the day of his death. \nNow in the fifth month, in the tenth day of the month, which was the nineteenth year of Nebuchadrezzar king of Babylon, came Nebuzaradan, captain of the guard, which served the king of Babylon, into Jerusalem, \nAnd burned the house of the LORD, and the king's house; and all the houses of Jerusalem, and all the houses of the great men, burned he with fire: \nAnd all the army of the Chaldeans, that were with the captain of the guard, brake down all the walls of Jerusalem round about. \nThen Nebuzaradan the captain of the guard carried away captive certain of the poor of the people, and the residue of the people that remained in the city, and those that fell away, that fell to the king of Babylon, and the rest of the multitude. \nBut Nebuzaradan the captain of the guard left certain of the poor of the land for vinedressers and for husbandmen. \nAlso the pillars of brass that were in the house of the LORD, and the bases, and the brasen sea that was in the house of the LORD, the Chaldeans brake, and carried all the brass of them to Babylon. \nThe caldrons also, and the shovels, and the snuffers, and the bowls, and the spoons, and all the vessels of brass wherewith they ministered, took they away. \nAnd the basons, and the firepans, and the bowls, and the caldrons, and the candlesticks, and the spoons, and the cups; that which was of gold in gold, and that which was of silver in silver, took the captain of the guard away. \nThe two pillars, one sea, and twelve brasen bulls that were under the bases, which king Solomon had made in the house of the LORD: the brass of all these vessels was without weight. \nAnd concerning the pillars, the height of one pillar was eighteen cubits; and a fillet of twelve cubits did compass it; and the thickness thereof was four fingers: it was hollow. \nAnd a chapiter of brass was upon it; and the height of one chapiter was five cubits, with network and pomegranates upon the chapiters round about, all of brass. The second pillar also and the pomegranates were like unto these. \nAnd there were ninety and six pomegranates on a side; and all the pomegranates upon the network were an hundred round about. \nAnd the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the door: \nHe took also out of the city an eunuch, which had the charge of the men of war; and seven men of them that were near the king's person, which were found in the city; and the principal scribe of the host, who mustered the people of the land; and threescore men of the people of the land, that were found in the midst of the city. \nSo Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah. \nAnd the king of Babylon smote them, and put them to death in Riblah in the land of Hamath. Thus Judah was carried away captive out of his own land. \nThis is the people whom Nebuchadrezzar carried away captive: in the seventh year three thousand Jews and three and twenty: \nIn the eighteenth year of Nebuchadrezzar he carried away captive from Jerusalem eight hundred thirty and two persons: \nIn the three and twentieth year of Nebuchadrezzar Nebuzaradan the captain of the guard carried away captive of the Jews seven hundred forty and five persons: all the persons were four thousand and six hundred. \nAnd it came to pass in the seven and thirtieth year of the captivity of Jehoiachin king of Judah, in the twelfth month, in the five and twentieth day of the month, that Evilmerodach king of Babylon in the first year of his reign lifted up the head of Jehoiachin king of Judah, and brought him forth out of prison. \nAnd spake kindly unto him, and set his throne above the throne of the kings that were with him in Babylon, \nAnd changed his prison garments: and he did continually eat bread before him all the days of his life. \nAnd for his diet, there was a continual diet given him of the king of Babylon, every day a portion until the day of his death, all the days of his life. \nHow doth the city sit solitary, that was full of people! how is she become as a widow! she that was great among the nations, and princess among the provinces, how is she become tributary! \nShe weepeth sore in the night, and her tears are on her cheeks: among all her lovers she hath none to comfort her: all her friends have dealt treacherously with her, they are become her enemies. \nJudah is gone into captivity because of affliction, and because of great servitude: she dwelleth among the heathen, she findeth no rest: all her persecutors overtook her between the straits. \nThe ways of Zion do mourn, because none come to the solemn feasts: all her gates are desolate: her priests sigh, her virgins are afflicted, and she is in bitterness. \nHer adversaries are the chief, her enemies prosper; for the LORD hath afflicted her for the multitude of her transgressions: her children are gone into captivity before the enemy. \nAnd from the daughter of Zion all her beauty is departed: her princes are become like harts that find no pasture, and they are gone without strength before the pursuer. \nJerusalem remembered in the days of her affliction and of her miseries all her pleasant things that she had in the days of old, when her people fell into the hand of the enemy, and none did help her: the adversaries saw her, and did mock at her sabbaths. \nJerusalem hath grievously sinned; therefore she is removed: all that honoured her despise her, because they have seen her nakedness: yea, she sigheth, and turneth backward. \nHer filthiness is in her skirts; she remembereth not her last end; therefore she came down wonderfully: she had no comforter. O LORD, behold my affliction: for the enemy hath magnified himself. \nThe adversary hath spread out his hand upon all her pleasant things: for she hath seen that the heathen entered into her sanctuary, whom thou didst command that they should not enter into thy congregation. \nAll her people sigh, they seek bread; they have given their pleasant things for meat to relieve the soul: see, O LORD, and consider; for I am become vile. \nIs it nothing to you, all ye that pass by? behold, and see if there be any sorrow like unto my sorrow, which is done unto me, wherewith the LORD hath afflicted me in the day of his fierce anger. \nFrom above hath he sent fire into my bones, and it prevaileth against them: he hath spread a net for my feet, he hath turned me back: he hath made me desolate and faint all the day. \nThe yoke of my transgressions is bound by his hand: they are wreathed, and come up upon my neck: he hath made my strength to fall, the LORD hath delivered me into their hands, from whom I am not able to rise up. \nThe LORD hath trodden under foot all my mighty men in the midst of me: he hath called an assembly against me to crush my young men: the LORD hath trodden the virgin, the daughter of Judah, as in a winepress. \nFor these things I weep; mine eye, mine eye runneth down with water, because the comforter that should relieve my soul is far from me: my children are desolate, because the enemy prevailed. \nZion spreadeth forth her hands, and there is none to comfort her: the LORD hath commanded concerning Jacob, that his adversaries should be round about him: Jerusalem is as a menstruous woman among them. \nThe LORD is righteous; for I have rebelled against his commandment: hear, I pray you, all people, and behold my sorrow: my virgins and my young men are gone into captivity. \nI called for my lovers, but they deceived me: my priests and mine elders gave up the ghost in the city, while they sought their meat to relieve their souls. \nBehold, O LORD; for I am in distress: my bowels are troubled; mine heart is turned within me; for I have grievously rebelled: abroad the sword bereaveth, at home there is as death. \nThey have heard that I sigh: there is none to comfort me: all mine enemies have heard of my trouble; they are glad that thou hast done it: thou wilt bring the day that thou hast called, and they shall be like unto me. \nLet all their wickedness come before thee; and do unto them, as thou hast done unto me for all my transgressions: for my sighs are many, and my heart is faint. \nHow hath the LORD covered the daughter of Zion with a cloud in his anger, and cast down from heaven unto the earth the beauty of Israel, and remembered not his footstool in the day of his anger! \nThe LORD hath swallowed up all the habitations of Jacob, and hath not pitied: he hath thrown down in his wrath the strong holds of the daughter of Judah; he hath brought them down to the ground: he hath polluted the kingdom and the princes thereof. \nHe hath cut off in his fierce anger all the horn of Israel: he hath drawn back his right hand from before the enemy, and he burned against Jacob like a flaming fire, which devoureth round about. \nHe hath bent his bow like an enemy: he stood with his right hand as an adversary, and slew all that were pleasant to the eye in the tabernacle of the daughter of Zion: he poured out his fury like fire. \nThe LORD was as an enemy: he hath swallowed up Israel, he hath swallowed up all her palaces: he hath destroyed his strong holds, and hath increased in the daughter of Judah mourning and lamentation. \nAnd he hath violently taken away his tabernacle, as if it were of a garden: he hath destroyed his places of the assembly: the LORD hath caused the solemn feasts and sabbaths to be forgotten in Zion, and hath despised in the indignation of his anger the king and the priest. \nThe LORD hath cast off his altar, he hath abhorred his sanctuary, he hath given up into the hand of the enemy the walls of her palaces; they have made a noise in the house of the LORD, as in the day of a solemn feast. \nThe LORD hath purposed to destroy the wall of the daughter of Zion: he hath stretched out a line, he hath not withdrawn his hand from destroying: therefore he made the rampart and the wall to lament; they languished together. \nHer gates are sunk into the ground; he hath destroyed and broken her bars: her king and her princes are among the Gentiles: the law is no more; her prophets also find no vision from the LORD. \nThe elders of the daughter of Zion sit upon the ground, and keep silence: they have cast up dust upon their heads; they have girded themselves with sackcloth: the virgins of Jerusalem hang down their heads to the ground. \nMine eyes do fail with tears, my bowels are troubled, my liver is poured upon the earth, for the destruction of the daughter of my people; because the children and the sucklings swoon in the streets of the city. \nThey say to their mothers, Where is corn and wine? when they swooned as the wounded in the streets of the city, when their soul was poured out into their mothers' bosom. \nWhat thing shall I take to witness for thee? what thing shall I liken to thee, O daughter of Jerusalem? what shall I equal to thee, that I may comfort thee, O virgin daughter of Zion? for thy breach is great like the sea: who can heal thee? \nThy prophets have seen vain and foolish things for thee: and they have not discovered thine iniquity, to turn away thy captivity; but have seen for thee false burdens and causes of banishment. \nAll that pass by clap their hands at thee; they hiss and wag their head at the daughter of Jerusalem, saying, Is this the city that men call The perfection of beauty, The joy of the whole earth? \nAll thine enemies have opened their mouth against thee: they hiss and gnash the teeth: they say, We have swallowed her up: certainly this is the day that we looked for; we have found, we have seen it. \nThe LORD hath done that which he had devised; he hath fulfilled his word that he had commanded in the days of old: he hath thrown down, and hath not pitied: and he hath caused thine enemy to rejoice over thee, he hath set up the horn of thine adversaries. \nTheir heart cried unto the LORD, O wall of the daughter of Zion, let tears run down like a river day and night: give thyself no rest; let not the apple of thine eye cease. \nArise, cry out in the night: in the beginning of the watches pour out thine heart like water before the face of the LORD: lift up thy hands toward him for the life of thy young children, that faint for hunger in the top of every street. \nBehold, O LORD, and consider to whom thou hast done this. Shall the women eat their fruit, and children of a span long? shall the priest and the prophet be slain in the sanctuary of the Lord? \nThe young and the old lie on the ground in the streets: my virgins and my young men are fallen by the sword; thou hast slain them in the day of thine anger; thou hast killed, and not pitied. \nThou hast called as in a solemn day my terrors round about, so that in the day of the LORD's anger none escaped nor remained: those that I have swaddled and brought up hath mine enemy consumed. \nI AM the man that hath seen affliction by the rod of his wrath. \nHe hath led me, and brought me into darkness, but not into light. \nSurely against me is he turned; he turneth his hand against me all the day. \nMy flesh and my skin hath he made old; he hath broken my bones. \nHe hath builded against me, and compassed me with gall and travail. \nHe hath set me in dark places, as they that be dead of old. \nHe hath hedged me about, that I cannot get out: he hath made my chain heavy. \nAlso when I cry and shout, he shutteth out my prayer. \nHe hath inclosed my ways with hewn stone, he hath made my paths crooked. \nHe was unto me as a bear lying in wait, and as a lion in secret places. \nHe hath turned aside my ways, and pulled me in pieces: he hath made me desolate. \nHe hath bent his bow, and set me as a mark for the arrow. \nHe hath caused the arrows of his quiver to enter into my reins. \nI was a derision to all my people; and their song all the day. \nHe hath filled me with bitterness, he hath made me drunken with wormwood. \nHe hath also broken my teeth with gravel stones, he hath covered me with ashes. \nAnd thou hast removed my soul far off from peace: I forgat prosperity. \nAnd I said, My strength and my hope is perished from the LORD: \nRemembering mine affliction and my misery, the wormwood and the gall. \nMy soul hath them still in remembrance, and is humbled in me. \nThis I recall to my mind, therefore have I hope. \nIt is of the LORD's mercies that we are not consumed, because his compassions fail not. \nThey are new every morning: great is thy faithfulness. \nThe LORD is my portion, saith my soul; therefore will I hope in him. \nThe LORD is good unto them that wait for him, to the soul that seeketh him. \nIt is good that a man should both hope and quietly wait for the salvation of the LORD. \nIt is good for a man that he bear the yoke of his youth. \nHe sitteth alone and keepeth silence, because he hath borne it upon him. \nHe putteth his mouth in the dust; if so be there may be hope. \nHe giveth his cheek to him that smiteth him: he is filled full with reproach. \nFor the LORD will not cast off for ever: \nBut though he cause grief, yet will he have compassion according to the multitude of his mercies. \nFor he doth not afflict willingly nor grieve the children of men. \nTo crush under his feet all the prisoners of the earth. \nTo turn aside the right of a man before the face of the most High, \nTo subvert a man in his cause, the LORD approveth not. \nWho is he that saith, and it cometh to pass, when the Lord commandeth it not? \nOut of the mouth of the most High proceedeth not evil and good? \nWherefore doth a living man complain, a man for the punishment of his sins? \nLet us search and try our ways, and turn again to the LORD. \nLet us lift up our heart with our hands unto God in the heavens. \nWe have transgressed and have rebelled: thou hast not pardoned. \nThou hast covered with anger, and persecuted us: thou hast slain, thou hast not pitied. \nThou hast covered thyself with a cloud, that our prayer should not pass through. \nThou hast made us as the offscouring and refuse in the midst of the people. \nAll our enemies have opened their mouths against us. \nFear and a snare is come upon us, desolation and destruction. \nMine eye runneth down with rivers of water for the destruction of the daughter of my people. \nMine eye trickleth down, and ceaseth not, without any intermission. \nTill the LORD look down, and behold from heaven. \nMine eye affecteth mine heart because of all the daughters of my city. \nMine enemies chased me sore, like a bird, without cause. \nThey have cut off my life in the dungeon, and cast a stone upon me. \nWaters flowed over mine head; then I said, I am cut off. \nI called upon thy name, O LORD, out of the low dungeon. \nThou hast heard my voice: hide not thine ear at my breathing, at my cry. \nThou drewest near in the day that I called upon thee: thou saidst, Fear not. \nO LORD, thou hast pleaded the causes of my soul; thou hast redeemed my life. \nO LORD, thou hast seen my wrong: judge thou my cause. \nThou hast seen all their vengeance and all their imaginations against me. \nThou hast heard their reproach, O LORD, and all their imaginations against me; \nThe lips of those that rose up against me, and their device against me all the day. \nBehold their sitting down, and their rising up; I am their musick. \nRender unto them a recompence, O LORD, according to the work of their hands. \nGive them sorrow of heart, thy curse unto them. \nPersecute and destroy them in anger from under the heavens of the LORD. \nHow is the gold become dim! how is the most fine gold changed! the stones of the sanctuary are poured out in the top of every street. \nThe precious sons of Zion, comparable to fine gold, how are they esteemed as earthen pitchers, the work of the hands of the potter! \nEven the sea monsters draw out the breast, they give suck to their young ones: the daughter of my people is become cruel, like the ostriches in the wilderness. \nThe tongue of the sucking child cleaveth to the roof of his mouth for thirst: the young children ask bread, and no man breaketh it unto them. \nThey that did feed delicately are desolate in the streets: they that were brought up in scarlet embrace dunghills. \nFor the punishment of the iniquity of the daughter of my people is greater than the punishment of the sin of Sodom, that was overthrown as in a moment, and no hands stayed on her. \nHer Nazarites were purer than snow, they were whiter than milk, they were more ruddy in body than rubies, their polishing was of sapphire: \nTheir visage is blacker than a coal; they are not known in the streets: their skin cleaveth to their bones; it is withered, it is become like a stick. \nThey that be slain with the sword are better than they that be slain with hunger: for these pine away, stricken through for want of the fruits of the field. \nThe hands of the pitiful women have sodden their own children: they were their meat in the destruction of the daughter of my people. \nThe LORD hath accomplished his fury; he hath poured out his fierce anger, and hath kindled a fire in Zion, and it hath devoured the foundations thereof. \nThe kings of the earth, and all the inhabitants of the world, would not have believed that the adversary and the enemy should have entered into the gates of Jerusalem. \nFor the sins of her prophets, and the iniquities of her priests, that have shed the blood of the just in the midst of her, \nThey have wandered as blind men in the streets, they have polluted themselves with blood, so that men could not touch their garments. \nThey cried unto them, Depart ye; it is unclean; depart, depart, touch not: when they fled away and wandered, they said among the heathen, They shall no more sojourn there. \nThe anger of the LORD hath divided them; he will no more regard them: they respected not the persons of the priests, they favoured not the elders. \nAs for us, our eyes as yet failed for our vain help: in our watching we have watched for a nation that could not save us. \nThey hunt our steps, that we cannot go in our streets: our end is near, our days are fulfilled; for our end is come. \nOur persecutors are swifter than the eagles of the heaven: they pursued us upon the mountains, they laid wait for us in the wilderness. \nThe breath of our nostrils, the anointed of the LORD, was taken in their pits, of whom we said, Under his shadow we shall live among the heathen. \nRejoice and be glad, O daughter of Edom, that dwellest in the land of Uz; the cup also shall pass through unto thee: thou shalt be drunken, and shalt make thyself naked. \nThe punishment of thine iniquity is accomplished, O daughter of Zion; he will no more carry thee away into captivity: he will visit thine iniquity, O daughter of Edom; he will discover thy sins. \nRemember, O LORD, what is come upon us: consider, and behold our reproach. \nOur inheritance is turned to strangers, our houses to aliens. \nWe are orphans and fatherless, our mothers are as widows. \nWe have drunken our water for money; our wood is sold unto us. \nOur necks are under persecution: we labour, and have no rest. \nWe have given the hand to the Egyptians, and to the Assyrians, to be satisfied with bread. \nOur fathers have sinned, and are not; and we have borne their iniquities. \nServants have ruled over us: there is none that doth deliver us out of their hand. \nWe gat our bread with the peril of our lives because of the sword of the wilderness. \nOur skin was black like an oven because of the terrible famine. \nThey ravished the women in Zion, and the maids in the cities of Judah. \nPrinces are hanged up by their hand: the faces of elders were not honoured. \nThey took the young men to grind, and the children fell under the wood. \nThe elders have ceased from the gate, the young men from their musick. \nThe joy of our heart is ceased; our dance is turned into mourning. \nThe crown is fallen from our head: woe unto us, that we have sinned! \nFor this our heart is faint; for these things our eyes are dim. \nBecause of the mountain of Zion, which is desolate, the foxes walk upon it. \nThou, O LORD, remainest for ever; thy throne from generation to generation. \nWherefore dost thou forget us for ever, and forsake us so long time? \nTurn thou us unto thee, O LORD, and we shall be turned; renew our days as of old. \nBut thou hast utterly rejected us; thou art very wroth against us. \nNow it came to pass in the thirtieth year, in the fourth month, in the fifth day of the month, as I was among the captives by the river of Chebar, that the heavens were opened, and I saw visions of God. \nIn the fifth day of the month, which was the fifth year of king Jehoiachin's captivity, \nThe word of the LORD came expressly unto Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by the river Chebar; and the hand of the LORD was there upon him. \nAnd I looked, and, behold, a whirlwind came out of the north, a great cloud, and a fire infolding itself, and a brightness was about it, and out of the midst thereof as the colour of amber, out of the midst of the fire. \nAlso out of the midst thereof came the likeness of four living creatures. And this was their appearance; they had the likeness of a man. \nAnd every one had four faces, and every one had four wings. \nAnd their feet were straight feet; and the sole of their feet was like the sole of a calf's foot: and they sparkled like the colour of burnished brass. \nAnd they had the hands of a man under their wings on their four sides; and they four had their faces and their wings. \nTheir wings were joined one to another; they turned not when they went; they went every one straight forward. \nAs for the likeness of their faces, they four had the face of a man, and the face of a lion, on the right side: and they four had the face of an ox on the left side; they four also had the face of an eagle. \nThus were their faces: and their wings were stretched upward; two wings of every one were joined one to another, and two covered their bodies. \nAnd they went every one straight forward: whither the spirit was to go, they went; and they turned not when they went. \nAs for the likeness of the living creatures, their appearance was like burning coals of fire, and like the appearance of lamps: it went up and down among the living creatures; and the fire was bright, and out of the fire went forth lightning. \nAnd the living creatures ran and returned as the appearance of a flash of lightning. \nNow as I beheld the living creatures, behold one wheel upon the earth by the living creatures, with his four faces. \nThe appearance of the wheels and their work was like unto the colour of a beryl: and they four had one likeness: and their appearance and their work was as it were a wheel in the middle of a wheel. \nWhen they went, they went upon their four sides: and they turned not when they went. \nAs for their rings, they were so high that they were dreadful; and their rings were full of eyes round about them four. \nAnd when the living creatures went, the wheels went by them: and when the living creatures were lifted up from the earth, the wheels were lifted up. \nWhithersoever the spirit was to go, they went, thither was their spirit to go; and the wheels were lifted up over against them: for the spirit of the living creature was in the wheels. \nWhen those went, these went; and when those stood, these stood; and when those were lifted up from the earth, the wheels were lifted up over against them: for the spirit of the living creature was in the wheels. \nAnd the likeness of the firmament upon the heads of the living creature was as the colour of the terrible crystal, stretched forth over their heads above. \nAnd under the firmament were their wings straight, the one toward the other: every one had two, which covered on this side, and every one had two, which covered on that side, their bodies. \nAnd when they went, I heard the noise of their wings, like the noise of great waters, as the voice of the Almighty, the voice of speech, as the noise of an host: when they stood, they let down their wings. \nAnd there was a voice from the firmament that was over their heads, when they stood, and had let down their wings. \nAnd above the firmament that was over their heads was the likeness of a throne, as the appearance of a sapphire stone: and upon the likeness of the throne was the likeness as the appearance of a man above upon it. \nAnd I saw as the colour of amber, as the appearance of fire round about within it, from the appearance of his loins even upward, and from the appearance of his loins even downward, I saw as it were the appearance of fire, and it had brightness round about. \nAs the appearance of the bow that is in the cloud in the day of rain, so was the appearance of the brightness round about. This was the appearance of the likeness of the glory of the LORD. And when I saw it, I fell upon my face, and I heard a voice of one that spake. \nAnd he said unto me, Son of man, stand upon thy feet, and I will speak unto thee. \nAnd the spirit entered into me when he spake unto me, and set me upon my feet, that I heard him that spake unto me. \nAnd he said unto me, Son of man, I send thee to the children of Israel, to a rebellious nation that hath rebelled against me: they and their fathers have transgressed against me, even unto this very day. \nFor they are impudent children and stiffhearted. I do send thee unto them; and thou shalt say unto them, Thus saith the Lord GOD. \nAnd they, whether they will hear, or whether they will forbear, (for they are a rebellious house,) yet shall know that there hath been a prophet among them. \nAnd thou, son of man, be not afraid of them, neither be afraid of their words, though briers and thorns be with thee, and thou dost dwell among scorpions: be not afraid of their words, nor be dismayed at their looks, though they be a rebellious house. \nAnd thou shalt speak my words unto them, whether they will hear, or whether they will forbear: for they are most rebellious. \nBut thou, son of man, hear what I say unto thee; Be not thou rebellious like that rebellious house: open thy mouth, and eat that I give thee. \nAnd when I looked, behold, an hand was sent unto me; and, lo, a roll of a book was therein; \nAnd he spread it before me; and it was written within and without: and there was written therein lamentations, and mourning, and woe. \nMoreover he said unto me, Son of man, eat that thou findest; eat this roll, and go speak unto the house of Israel. \nSo I opened my mouth, and he caused me to eat that roll. \nAnd he said unto me, Son of man, cause thy belly to eat, and fill thy bowels with this roll that I give thee. Then did I eat it; and it was in my mouth as honey for sweetness. \nAnd he said unto me, Son of man, go, get thee unto the house of Israel, and speak with my words unto them. \nFor thou art not sent to a people of a strange speech and of an hard language, but to the house of Israel; \nNot to many people of a strange speech and of an hard language, whose words thou canst not understand. Surely, had I sent thee to them, they would have hearkened unto thee. \nBut the house of Israel will not hearken unto thee; for they will not hearken unto me: for all the house of Israel are impudent and hardhearted. \nBehold, I have made thy face strong against their faces, and thy forehead strong against their foreheads. \nAs an adamant harder than flint have I made thy forehead: fear them not, neither be dismayed at their looks, though they be a rebellious house. \nMoreover he said unto me, Son of man, all my words that I shall speak unto thee receive in thine heart, and hear with thine ears. \nAnd go, get thee to them of the captivity, unto the children of thy people, and speak unto them, and tell them, Thus saith the Lord GOD; whether they will hear, or whether they will forbear. \nThen the spirit took me up, and I heard behind me a voice of a great rushing, saying, Blessed be the glory of the LORD from his place. \nI heard also the noise of the wings of the living creatures that touched one another, and the noise of the wheels over against them, and a noise of a great rushing. \nSo the spirit lifted me up, and took me away, and I went in bitterness, in the heat of my spirit; but the hand of the LORD was strong upon me. \nThen I came to them of the captivity at Telabib, that dwelt by the river of Chebar, and I sat where they sat, and remained there astonished among them seven days. \nAnd it came to pass at the end of seven days, that the word of the LORD came unto me, saying, \nSon of man, I have made thee a watchman unto the house of Israel: therefore hear the word at my mouth, and give them warning from me. \nWhen I say unto the wicked, Thou shalt surely die; and thou givest him not warning, nor speakest to warn the wicked from his wicked way, to save his life; the same wicked man shall die in his iniquity; but his blood will I require at thine hand. \nYet if thou warn the wicked, and he turn not from his wickedness, nor from his wicked way, he shall die in his iniquity; but thou hast delivered thy soul. \nAgain, When a righteous man doth turn from his righteousness, and commit iniquity, and I lay a stumbling-block before him, he shall die: because thou hast not given him warning, he shall die in his sin, and his righteousness which he hath done shall not be remembered; but his blood will I require at thine hand. \nNevertheless if thou warn the righteous man, that the righteous sin not, and he doth not sin, he shall surely live, because he is warned; also thou hast delivered thy soul. \nAnd the hand of the LORD was there upon me; and he said unto me, Arise, go forth into the plain, and I will there talk with thee. \nThen I arose, and went forth into the plain: and, behold, the glory of the LORD stood there, as the glory which I saw by the river of Chebar: and I fell on my face. \nThen the spirit entered into me, and set me upon my feet, and spake with me, and said unto me, Go, shut thyself within thine house. \nBut thou, O son of man, behold, they shall put bands upon thee, and shall bind thee with them, and thou shalt not go out among them: \nAnd I will make thy tongue cleave to the roof of thy mouth, that thou shalt be dumb, and shalt not be to them a reprover: for they are a rebellious house. \nBut when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord GOD; He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house. \nThou also, son of man, take thee a tile, and lay it before thee, and pourtray upon it the city, even Jerusalem: \nAnd lay siege against it, and build a fort against it, and cast a mount against it; set the camp also against it, and set battering rams against it round about. \nMoreover take thou unto thee an iron pan, and set it for a wall of iron between thee and the city: and set thy face against it, and it shall be besieged, and thou shalt lay siege against it. This shall be a sign to the house of Israel. \nLie thou also upon thy left side, and lay the iniquity of the house of Israel upon it: according to the number of the days that thou shalt lie upon it thou shalt bear their iniquity. \nFor I have laid upon thee the years of their iniquity, according to the number of the days, three hundred and ninety days: so shalt thou bear the iniquity of the house of Israel. \nAnd when thou hast accomplished them, lie again on thy right side, and thou shalt bear the iniquity of the house of Judah forty days: I have appointed thee each day for a year. \nTherefore thou shalt set thy face toward the siege of Jerusalem, and thine arm shall be uncovered, and thou shalt prophesy against it. \nAnd, behold, I will lay bands upon thee, and thou shalt not turn thee from one side to another, till thou hast ended the days of thy siege. \nTake thou also unto thee wheat, and barley, and beans, and lentiles, and millet, and fitches, and put them in one vessel, and make thee bread thereof, according to the number of the days that thou shalt lie upon thy side, three hundred and ninety days shalt thou eat thereof. \nAnd thy meat which thou shalt eat shall be by weight, twenty shekels a day: from time to time shalt thou eat it. \nThou shalt drink also water by measure, the sixth part of an hin: from time to time shalt thou drink. \nAnd thou shalt eat it as barley cakes, and thou shalt bake it with dung that cometh out of man, in their sight. \nAnd the LORD said, Even thus shall the children of Israel eat their defiled bread among the Gentiles, whither I will drive them. \nThen said I, Ah Lord GOD! behold, my soul hath not been polluted: for from my youth up even till now have I not eaten of that which dieth of itself, or is torn in pieces; neither came there abominable flesh into my mouth. \nThen he said unto me, Lo, I have given thee cow's dung for man's dung, and thou shalt prepare thy bread therewith. \nMoreover he said unto me, Son of man, behold, I will break the staff of bread in Jerusalem: and they shall eat bread by weight, and with care; and they shall drink water by measure, and with astonishment: \nThat they may want bread and water, and be astonied one with another, and consume away for their iniquity. \nAnd thou, son of man, take thee a sharp knife, take thee a barber's razor, and cause it to pass upon thine head and upon thy beard: then take thee balances to weigh, and divide the hair. \nThou shalt burn with fire a third part in the midst of the city, when the days of the siege are fulfilled: and thou shalt take a third part, and smite about it with a knife: and a third part thou shalt scatter in the wind; and I will draw out a sword after them. \nThou shalt also take thereof a few in number, and bind them in thy skirts. \nThen take of them again, and cast them into the midst of the fire, and burn them in the fire; for thereof shall a fire come forth into all the house of Israel. \nThus saith the Lord GOD; This is Jerusalem: I have set it in the midst of the nations and countries that are round about her. \nAnd she hath changed my judgments into wickedness more than the nations, and my statutes more than the countries that are round about her: for they have refused my judgments and my statutes, they have not walked in them. \nTherefore thus saith the Lord GOD; Because ye multiplied more than the nations that are round about you, and have not walked in my statutes, neither have kept my judgments, neither have done according to the judgments of the nations that are round about you; \nTherefore thus saith the Lord GOD; Behold, I, even I, am against thee, and will execute judgments in the midst of thee in the sight of the nations. \nAnd I will do in thee that which I have not done, and whereunto I will not do any more the like, because of all thine abominations. \nTherefore the fathers shall eat the sons in the midst of thee, and the sons shall eat their fathers; and I will execute judgments in thee, and the whole remnant of thee will I scatter into all the winds. \nWherefore, as I live, saith the Lord GOD; Surely, because thou hast defiled my sanctuary with all thy detestable things, and with all thine abominations, therefore will I also diminish thee; neither shall mine eye spare, neither will I have any pity. \nA third part of thee shall die with the pestilence, and with famine shall they be consumed in the midst of thee: and a third part shall fall by the sword round about thee; and I will scatter a third part into all the winds, and I will draw out a sword after them. \nThus shall mine anger be accomplished, and I will cause my fury to rest upon them, and I will be comforted: and they shall know that I the LORD have spoken it in my zeal, when I have accomplished my fury in them. \nMoreover I will make thee waste, and a reproach among the nations that are round about thee, in the sight of all that pass by. \nSo it shall be a reproach and a taunt, an instruction and an astonishment unto the nations that are round about thee, when I shall execute judgments in thee in anger and in fury and in furious rebukes. I the LORD have spoken it. \nWhen I shall send upon them the evil arrows of famine, which shall be for their destruction, and which I will send to destroy you: and I will increase the famine upon you, and will break your staff of bread: \nSo will I send upon you famine and evil beasts, and they shall bereave thee: and pestilence and blood shall pass through thee; and I will bring the sword upon thee. I the LORD have spoken it. \nAnd the word of the LORD came unto me, saying, \nSon of man, set thy face toward the mountains of Israel, and prophesy against them, \nAnd say, Ye mountains of Israel, hear the word of the Lord GOD; Thus saith the Lord GOD to the mountains, and to the hills, to the rivers, and to the valleys; Behold, I, even I, will bring a sword upon you, and I will destroy your high places. \nAnd your altars shall be desolate, and your images shall be broken: and I will cast down your slain men before your idols. \nAnd I will lay the dead carcases of the children of Israel before their idols; and I will scatter your bones round about your altars. \nIn all your dwellingplaces the cities shall be laid waste, and the high places shall be desolate; that your altars may be laid waste and made desolate, and your idols may be broken and cease, and your images may be cut down, and your works may be abolished. \nAnd the slain shall fall in the midst of you, and ye shall know that I am the LORD. \nYet will I leave a remnant, that ye may have some that shall escape the sword among the nations, when ye shall be scattered through the countries. \nAnd they that escape of you shall remember me among the nations whither they shall be carried captives, because I am broken with their whorish heart, which hath departed from me, and with their eyes, which go a whoring after their idols: and they shall lothe themselves for the evils which they have committed in all their abominations. \nAnd they shall know that I am the LORD, and that I have not said in vain that I would do this evil unto them. \nThus saith the Lord GOD; Smite with thine hand, and stamp with thy foot, and say, Alas for all the evil abominations of the house of Israel! for they shall fall by the sword, by the famine, and by the pestilence. \nHe that is far off shall die of the pestilence; and he that is near shall fall by the sword; and he that remaineth and is besieged shall die by the famine: thus will I accomplish my fury upon them. \nThen shall ye know that I am the LORD, when their slain men shall be among their idols round about their altars, upon every high hill, in all the tops of the mountains, and under every green tree, and under every thick oak, the place where they did offer sweet savour to all their idols. \nSo will I stretch out my hand upon them, and make the land desolate, yea, more desolate than the wilderness toward Diblath, in all their habitations: and they shall know that I am the LORD. \nMoreover the word of the LORD came unto me, saying, \nAlso, thou son of man, thus saith the Lord GOD unto the land of Israel; An end, the end is come upon the four corners of the land. \nNow is the end come upon thee, and I will send mine anger upon thee, and will judge thee according to thy ways, and will recompense upon thee all thine abominations. \nAnd mine eye shall not spare thee, neither will I have pity: but I will recompense thy ways upon thee, and thine abominations shall be in the midst of thee: and ye shall know that I am the LORD. \nThus saith the Lord GOD; An evil, an only evil, behold, is come. \nAn end is come, the end is come: it watcheth for thee; behold, it is come. \nThe morning is come unto thee, O thou that dwellest in the land: the time is come, the day of trouble is near, and not the sounding again of the mountains. \nNow will I shortly pour out my fury upon thee, and accomplish mine anger upon thee: and I will judge thee according to thy ways, and will recompense thee for all thine abominations. \nAnd mine eye shall not spare, neither will I have pity: I will recompense thee according to thy ways and thine abominations that are in the midst of thee; and ye shall know that I am the LORD that smiteth. \nBehold the day, behold, it is come: the morning is gone forth; the rod hath blossomed, pride hath budded. \nViolence is risen up into a rod of wickedness: none of them shall remain, nor of their multitude, nor of any of their's: neither shall there be wailing for them. \nThe time is come, the day draweth near: let not the buyer rejoice, nor the seller mourn: for wrath is upon all the multitude thereof. \nFor the seller shall not return to that which is sold, although they were yet alive: for the vision is touching the whole multitude thereof, which shall not return; neither shall any strengthen himself in the iniquity of his life. \nThey have blown the trumpet, even to make all ready; but none goeth to the battle: for my wrath is upon all the multitude thereof. \nThe sword is without, and the pestilence and the famine within: he that is in the field shall die with the sword; and he that is in the city, famine and pestilence shall devour him. \nBut they that escape of them shall escape, and shall be on the mountains like doves of the valleys, all of them mourning, every one for his iniquity. \nAll hands shall be feeble, and all knees shall be weak as water. \nThey shall also gird themselves with sackcloth, and horror shall cover them; and shame shall be upon all faces, and baldness upon all their heads. \nThey shall cast their silver in the streets, and their gold shall be removed: their silver and their gold shall not be able to deliver them in the day of the wrath of the LORD: they shall not satisfy their souls, neither fill their bowels: because it is the stumblingblock of their iniquity. \nAs for the beauty of his ornament, he set it in majesty: but they made the images of their abominations and of their detestable things therein: therefore have I set it far from them. \nAnd I will give it into the hands of the strangers for a prey, and to the wicked of the earth for a spoil; and they shall pollute it. \nMy face will I turn also from them, and they shall pollute my secret place: for the robbers shall enter into it, and defile it. \nMake a chain: for the land is full of bloody crimes, and the city is full of violence. \nWherefore I will bring the worst of the heathen, and they shall possess their houses: I will also make the pomp of the strong to cease; and their holy places shall be defiled. \nDestruction cometh; and they shall seek peace, and there shall be none. \nMischief shall come upon mischief, and rumour shall be upon rumour; then shall they seek a vision of the prophet; but the law shall perish from the priest, and counsel from the ancients. \nThe king shall mourn, and the prince shall be clothed with desolation, and the hands of the people of the land shall be troubled: I will do unto them after their way, and according to their deserts will I judge them; and they shall know that I am the LORD. \nAnd it came to pass in the sixth year, in the sixth month, in the fifth day of the month, as I sat in mine house, and the elders of Judah sat before me, that the hand of the Lord GOD fell there upon me. \nThen I beheld, and lo a likeness as the appearance of fire: from the appearance of his loins even downward, fire; and from his loins even upward, as the appearance of brightness, as the colour of amber. \nAnd he put forth the form of an hand, and took me by a lock of mine head; and the spirit lifted me up between the earth and the heaven, and brought me in the visions of God to Jerusalem, to the door of the inner gate that looketh toward the north; where was the seat of the image of jealousy, which provoketh to jealousy. \nAnd, behold, the glory of the God of Israel was there, according to the vision that I saw in the plain. \nThen said he unto me, Son of man, lift up thine eyes now the way toward the north. So I lifted up mine eyes the way toward the north, and behold northward at the gate of the altar this image of jealousy in the entry. \nHe said furthermore unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel committeth here, that I should go far off from my sanctuary? but turn thee yet again, and thou shalt see greater abominations. \nAnd he brought me to the door of the court; and when I looked, behold a hole in the wall. \nThen said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door. \nAnd he said unto me, Go in, and behold the wicked abominations that they do here. \nSo I went in and saw; and behold every form of creeping things, and abominable beasts, and all the idols of the house of Israel, pourtrayed upon the wall round about. \nAnd there stood before them seventy men of the ancients of the house of Israel, and in the midst of them stood Jaazaniah the son of Shaphan, with every man his censer in his hand; and a thick cloud of incense went up. \nThen said he unto me, Son of man, hast thou seen what the ancients of the house of Israel do in the dark, every man in the chambers of his imagery? for they say, the LORD seeth us not; the LORD hath forsaken the earth. \nHe said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do. \nThen he brought me to the door of the gate of the LORD's house which was toward the north; and, behold, there sat women weeping for Tammuz. \nThen said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these. \nAnd he brought me into the inner court of the LORD's house, and, behold, at the door of the temple of the LORD, between the porch and the altar, were about five and twenty men, with their backs toward the temple of the LORD, and their faces toward the east; and they worshipped the sun toward the east. \nThen he said unto me, Hast thou seen this, O son of man? Is it a light thing to the house of Judah that they commit the abominations which they commit here? for they have filled the land with violence, and have returned to provoke me to anger: and, lo, they put the branch to their nose. \nTherefore will I also deal in fury: mine eye shall not spare, neither will I have pity: and though they cry in mine ears with a loud voice, yet will I not hear them. \nHe cried also in mine ears with a loud voice, saying, Cause them that have charge over the city to draw near, even every man with his destroying weapon in his hand. \nAnd, behold, six men came from the way of the higher gate, which lieth toward the north, and every man a slaughter weapon in his hand; and one man among them was clothed with linen, with a writer's inkhorn by his side: and they went in, and stood beside the brasen altar. \nAnd the glory of the God of Israel was gone up from the cherub, whereupon he was, to the threshold of the house. And he called to the man clothed with linen, which had the writer's inkhorn by his side; \nAnd the LORD said unto him, Go through the midst of the city, through the midst of Jerusalem, and set a mark upon the foreheads of the men that sigh and that cry for all the abominations that be done in the midst thereof. \nAnd to the others he said in mine hearing, Go ye after him through the city, and smite: let not your eye spare, neither have ye pity: \nSlay utterly old and young, both maids, and little children, and women: but come not near any man upon whom is the mark; and begin at my sanctuary. Then they began at the ancient men which were before the house. \nAnd he said unto them, Defile the house, and fill the courts with the slain: go ye forth. And they went forth, and slew in the city. \nAnd it came to pass, while they were slaying them, and I was left, that I fell upon my face, and cried, and said, Ah Lord GOD! wilt thou destroy all the residue of Israel in thy pouring out of thy fury upon Jerusalem? \nThen said he unto me, The iniquity of the house of Israel and Judah is exceeding great, and the land is full of blood, and the city full of perverseness: for they say, The LORD hath forsaken the earth, and the LORD seeth not. \nAnd as for me also, mine eye shall not spare, neither will I have pity, but I will recompense their way upon their head. \nAnd, behold, the man clothed with linen, which had the inkhorn by his side, reported the matter, saying, I have done as thou hast commanded me. \nThen I looked, and, behold, in the firmament that was above the head of the cherubims there appeared over them as it were a sapphire stone, as the appearance of the likeness of a throne. \nAnd he spake unto the man clothed with linen, and said, Go in between the wheels, even under the cherub, and fill thine hand with coals of fire from between the cherubims, and scatter them over the city. And he went in in my sight. \nNow the cherubims stood on the right side of the house, when the man went in; and the cloud filled the inner court. \nThen the glory of the LORD went up from the cherub, and stood over the threshold of the house; and the house was filled with the cloud, and the court was full of the brightness of the LORD's glory. \nAnd the sound of the cherubims' wings was heard even to the outer court, as the voice of the Almighty God when he speaketh. \nAnd it came to pass, that when he had commanded the man clothed with linen, saying, Take fire from between the wheels, from between the cherubims; then he went in, and stood beside the wheels. \nAnd one cherub stretched forth his hand from between the cherubims unto the fire that was between the cherubims, and took thereof, and put it into the hands of him that was clothed with linen: who took it, and went out. \nAnd there appeared in the cherubims the form of a man's hand under their wings. \nAnd when I looked, behold the four wheels by the cherubims, one wheel by one cherub, and another wheel by another cherub: and the appearance of the wheels was as the colour of a beryl stone. \nAnd as for their appearances, they four had one likeness, as if a wheel had been in the midst of a wheel. \nWhen they went, they went upon their four sides; they turned not as they went, but to the place whither the head looked they followed it; they turned not as they went. \nAnd their whole body, and their backs, and their hands, and their wings, and the wheels, were full of eyes round about, even the wheels that they four had. \nAs for the wheels, it was cried unto them in my hearing, O wheel. \nAnd every one had four faces: the first face was the face of a cherub, and the second face was the face of a man, and the third the face of a lion, and the fourth the face of an eagle. \nAnd the cherubims were lifted up. This is the living creature that I saw by the river of Chebar. \nAnd when the cherubims went, the wheels went by them: and when the cherubims lifted up their wings to mount up from the earth, the same wheels also turned not from beside them. \nWhen they stood, these stood; and when they were lifted up, these lifted up themselves also: for the spirit of the living creature was in them. \nThen the glory of the LORD departed from off the threshold of the house, and stood over the cherubims. \nAnd the cherubims lifted up their wings, and mounted up from the earth in my sight: when they went out, the wheels also were beside them, and every one stood at the door of the east gate of the LORD's house; and the glory of the God of Israel was over them above. \nThis is the living creature that I saw under the God of Israel by the river of Chebar; and I knew that they were the cherubims. \nEvery one had four faces apiece, and every one four wings; and the likeness of the hands of a man was under their wings. \nAnd the likeness of their faces was the same faces which I saw by the river of Chebar, their appearances and themselves: they went every one straight forward. \nMoreover the spirit lifted me up, and brought me unto the east gate of the LORD's house, which looketh eastward: and behold at the door of the gate five and twenty men; among whom I saw Jaazaniah the son of Azur, and Pelatiah the son of Benaiah, princes of the people. \nThen said he unto me, Son of man, these are the men that devise mischief, and give wicked counsel in this city: \nWhich say, It is not near; let us build houses: this city is the caldron, and we be the flesh. \nTherefore prophesy against them, prophesy, O son of man. \nAnd the Spirit of the LORD fell upon me, and said unto me, Speak; Thus saith the LORD; Thus have ye said, O house of Israel: for I know the things that come into your mind, every one of them. \nYe have multiplied your slain in this city, and ye have filled the streets thereof with the slain. \nTherefore thus saith the Lord GOD; Your slain whom ye have laid in the midst of it, they are the flesh, and this city is the caldron: but I will bring you forth out of the midst of it. \nYe have feared the sword; and I will bring a sword upon you, saith the Lord GOD. \nAnd I will bring you out of the midst thereof, and deliver you into the hands of strangers, and will execute judgments among you. \nYe shall fall by the sword; I will judge you in the border of Israel; and ye shall know that I am the LORD. \nThis city shall not be your caldron, neither shall ye be the flesh in the midst thereof; but I will judge you in the border of Israel: \nAnd ye shall know that I am the LORD: for ye have not walked in my statutes, neither executed my judgments, but have done after the manners of the heathen that are round about you. \nAnd it came to pass, when I prophesied, that Pelatiah the son of Benaiah died. Then fell I down upon my face, and cried with a loud voice, and said, Ah Lord GOD! wilt thou make a full end of the remnant of Israel? \nAgain the word of the LORD came unto me, saying, \nSon of man, thy brethren, even thy brethren, the men of thy kindred, and all the house of Israel wholly, are they unto whom the inhabitants of Jerusalem have said, Get you far from the LORD: unto us is this land given in possession. \nTherefore say, Thus saith the Lord GOD; Although I have cast them far off among the heathen, and although I have scattered them among the countries, yet will I be to them as a little sanctuary in the countries where they shall come. \nTherefore say, Thus saith the Lord GOD; I will even gather you from the people, and assemble you out of the countries where ye have been scattered, and I will give you the land of Israel. \nAnd they shall come thither, and they shall take away all the detestable things thereof and all the abominations thereof from thence. \nAnd I will give them one heart, and I will put a new spirit within you; and I will take the stony heart out of their flesh, and will give them an heart of flesh: \nThat they may walk in my statutes, and keep mine ordinances, and do them: and they shall be my people, and I will be their God. \nBut as for them whose heart walketh after the heart of their detestable things and their abominations, I will recompense their way upon their own heads, saith the Lord GOD. \nThen did the cherubims lift up their wings, and the wheels beside them; and the glory of the God of Israel was over them above. \nAnd the glory of the LORD went up from the midst of the city, and stood upon the mountain which is on the east side of the city. \nAfterwards the spirit took me up, and brought me in a vision by the Spirit of God into Chaldea, to them of the captivity. So the vision that I had seen went up from me. \nThen I spake unto them of the captivity all the things that the LORD had shewed me. \nThe word of the LORD also came unto me, saying, \nSon of man, thou dwellest in the midst of a rebellious house, which have eyes to see, and see not; they have ears to hear, and hear not: for they are a rebellious house. \nTherefore, thou son of man, prepare thee stuff for removing, and remove by day in their sight; and thou shalt remove from thy place to another place in their sight: it may be they will consider, though they be a rebellious house. \nThen shalt thou bring forth thy stuff by day in their sight, as stuff for removing: and thou shalt go forth at even in their sight, as they that go forth into captivity. \nDig thou through the wall in their sight, and carry out thereby. \nIn their sight shalt thou bear it upon thy shoulders, and carry it forth in the twilight: thou shalt cover thy face, that thou see not the ground: for I have set thee for a sign unto the house of Israel. \nAnd I did so as I was commanded: I brought forth my stuff by day, as stuff for captivity, and in the even I digged through the wall with mine hand; I brought it forth in the twilight, and I bare it upon my shoulder in their sight. \nAnd in the morning came the word of the LORD unto me, saying, \nSon of man, hath not the house of Israel, the rebellious house, said unto thee, What doest thou? \nSay thou unto them, Thus saith the Lord GOD; This burden concerneth the prince in Jerusalem, and all the house of Israel that are among them. \nSay, I am your sign: like as I have done, so shall it be done unto them: they shall remove and go into captivity. \nAnd the prince that is among them shall bear upon his shoulder in the twilight, and shall go forth: they shall dig through the wall to carry out thereby: he shall cover his face, that he see not the ground with his eyes. \nMy net also will I spread upon him, and he shall be taken in my snare: and I will bring him to Babylon to the land of the Chaldeans; yet shall he not see it, though he shall die there. \nAnd I will scatter toward every wind all that are about him to help him, and all his bands; and I will draw out the sword after them. \nAnd they shall know that I am the LORD, when I shall scatter them among the nations, and disperse them in the countries. \nBut I will leave a few men of them from the sword, from the famine, and from the pestilence; that they may declare all their abominations among the heathen whither they come; and they shall know that I am the LORD. \nMoreover the word of the LORD came to me, saying, \nSon of man, eat thy bread with quaking, and drink thy water with trembling and with carefulness; \nAnd say unto the people of the land, Thus saith the Lord GOD of the inhabitants of Jerusalem, and of the land of Israel; They shall eat their bread with carefulness, and drink their water with astonishment, that her land may be desolate from all that is therein, because of the violence of all them that dwell therein. \nAnd the cities that are inhabited shall be laid waste, and the land shall be desolate; and ye shall know that I am the LORD. \nAnd the word of the LORD came unto me, saying, \nSon of man, what is that proverb that ye have in the land of Israel, saying, The days are prolonged, and every vision faileth? \nTell them therefore, Thus saith the Lord GOD; I will make this proverb to cease, and they shall no more use it as a proverb in Israel; but say unto them, The days are at hand, and the effect of every vision. \nFor there shall be no more any vain vision nor flattering divination within the house of Israel. \nFor I am the LORD: I will speak, and the word that I shall speak shall come to pass; it shall be no more prolonged: for in your days, O rebellious house, will I say the word, and will perform it, saith the Lord GOD. \nAgain the word of the LORD came to me, saying. \nSon of man, behold, they of the house of Israel say, The vision that he seeth is for many days to come, and he prophesieth of the times that are far off. \nTherefore say unto them, Thus saith the Lord GOD; There shall none of my words be prolonged any more, but the word which I have spoken shall be done, saith the Lord GOD. \nAnd the word of the LORD came unto me, saying, \nSon of man, prophesy against the prophets of Israel that prophesy, and say thou unto them that prophesy out of their own hearts, Hear ye the word of the LORD; \nThus saith the Lord GOD; Woe unto the foolish prophets, that follow their own spirit, and have seen nothing! \nO Israel, thy prophets are like the foxes in the deserts. \nYe have not gone up into the gaps, neither made up the hedge for the house of Israel to stand in the battle in the day of the LORD. \nThey have seen vanity and lying divination, saying, The LORD saith: and the LORD hath not sent them: and they have made others to hope that they would confirm the word. \nHave ye not seen a vain vision, and have ye not spoken a lying divination, whereas ye say, The LORD saith it; albeit I have not spoken? \nTherefore thus saith the Lord GOD; Because ye have spoken vanity, and seen lies, therefore, behold, I am against you, saith the Lord GOD. \nAnd mine hand shall be upon the prophets that see vanity, and that divine lies: they shall not be in the assembly of my people, neither shall they be written in the writing of the house of Israel, neither shall they enter into the land of Israel; and ye shall know that I am the Lord GOD. \nBecause, even because they have seduced my people, saying, Peace; and there was no peace; and one built up a wall, and, lo, others daubed it with untempered morter: \nSay unto them which daub it with untempered morter, that it shall fall: there shall be an overflowing shower; and ye, O great hailstones, shall fall; and a stormy wind shall rend it. \nLo, when the wall is fallen, shall it not be said unto you, Where is the daubing wherewith ye have daubed it? \nTherefore thus saith the Lord GOD; I will even rend it with a stormy wind in my fury; and there shall be an overflowing shower in mine anger, and great hailstones in my fury to consume it. \nSo will I break down the wall that ye have daubed with untempered morter, and bring it down to the ground, so that the foundation thereof shall be discovered, and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am the LORD. \nThus will I accomplish my wrath upon the wall, and upon them that have daubed it with untempered morter, and will say unto you, The wall is no more, neither they that daubed it; \nTo wit, the prophets of Israel which prophesy concerning Jerusalem, and which see visions of peace for her, and there is no peace, saith the Lord GOD. \nLikewise, thou son of man, set thy face against the daughters of thy people, which prophesy out of their own heart; and prophesy thou against them, \nAnd say, Thus saith the Lord GOD; Woe to the women that sew pillows to all armholes, and make kerchiefs upon the head of every stature to hunt souls! Will ye hunt the souls of my people, and will ye save the souls alive that come unto you? \nAnd will ye pollute me among my people for handfuls of barley and for pieces of bread, to slay the souls that should not die, and to save the souls alive that should not live, by your lying to my people that hear your lies? \nWherefore thus saith the Lord GOD; Behold, I am against your pillows, wherewith ye there hunt the souls to make them fly, and I will tear them from your arms, and will let the souls go, even the souls that ye hunt to make them fly. \nYour kerchiefs also will I tear, and deliver my people out of your hand, and they shall be no more in your hand to be hunted; and ye shall know that I am the LORD. \nBecause with lies ye have made the heart of the righteous sad, whom I have not made sad; and strengthened the hands of the wicked, that he should not return from his wicked way, by promising him life: \nTherefore ye shall see no more vanity, nor divine divinations: for I will deliver my people out of your hand: and ye shall know that I am the LORD. \nThen came certain of the elders of Israel unto me, and sat before me. \nAnd the word of the LORD came unto me, saying, \nSon of man, these men have set up their idols in their heart, and put the stumblingblock of their iniquity before their face: should I be enquired of at all by them? \nTherefore speak unto them, and say unto them, Thus saith the Lord GOD; Every man of the house of Israel that setteth up his idols in his heart, and putteth the stumblingblock of his iniquity before his face, and cometh to the prophet; I the LORD will answer him that cometh according to the multitude of his idols; \nThat I may take the house of Israel in their own heart, because they are all estranged from me through their idols. \nTherefore say unto the house of Israel, Thus saith the Lord GOD; Repent, and turn yourselves from your idols; and turn away your faces from all your abominations. \nFor every one of the house of Israel, or of the stranger that sojourneth in Israel, which separateth himself from me, and setteth up his idols in his heart, and putteth the stumblingblock of his iniquity before his face, and cometh to a prophet to enquire of him concerning me; I the LORD will answer him by myself: \nAnd I will set my face against that man, and will make him a sign and a proverb, and I will cut him off from the midst of my people; and ye shall know that I am the LORD. \nAnd if the prophet be deceived when he hath spoken a thing, I the LORD have deceived that prophet, and I will stretch out my hand upon him, and will destroy him from the midst of my people Israel. \nAnd they shall bear the punishment of their iniquity: the punishment of the prophet shall be even as the punishment of him that seeketh unto him; \nThat the house of Israel may go no more astray from me, neither be polluted any more with all their transgressions; but that they may be my people, and I may be their God, saith the Lord GOD. \nThe word of the LORD came again to me, saying, \nSon of man, when the land sinneth against me by trespassing grievously, then will I stretch out mine hand upon it, and will break the staff of the bread thereof, and will send famine upon it, and will cut off man and beast from it: \nThough these three men, Noah, Daniel, and Job, were in it, they should deliver but their own souls by their righteousness, saith the Lord GOD. \nIf I cause noisome beasts to pass through the land, and they spoil it, so that it be desolate, that no man may pass through because of the beasts: \nThough these three men were in it, as I live, saith the Lord GOD, they shall deliver neither sons nor daughters; they only shall be delivered, but the land shall be desolate. \nOr if I bring a sword upon that land, and say, Sword, go through the land; so that I cut off man and beast from it: \nThough these three men were in it, as I live, saith the Lord GOD, they shall deliver neither sons nor daughters, but they only shall be delivered themselves. \nOr if I send a pestilence into that land, and pour out my fury upon it in blood, to cut off from it man and beast: \nThough Noah, Daniel, and Job were in it, as I live, saith the Lord GOD, they shall deliver neither son nor daughter; they shall but deliver their own souls by their righteousness. \nFor thus saith the Lord GOD; How much more when I send my four sore judgments upon Jerusalem, the sword, and the famine, and the noisome beast, and the pestilence, to cut off from it man and beast? \nYet, behold, therein shall be left a remnant that shall be brought forth, both sons and daughters: behold, they shall come forth unto you, and ye shall see their way and their doings: and ye shall be comforted concerning the evil that I have brought upon Jerusalem, even concerning all that I have brought upon it. \nAnd they shall comfort you, when ye see their ways and their doings: and ye shall know that I have not done without cause all that I have done in it, saith the Lord GOD. \nAnd the word of the LORD came unto me, saying, \nSon of man, what is the vine tree more than any tree, or than a branch which is among the trees of the forest? \nShall wood be taken thereof to do any work? or will men take a pin of it to hang any vessel thereon? \nBehold, it is cast into the fire for fuel; the fire devoureth both the ends of it, and the midst of it is burned. Is it meet for any work? \nBehold, when it was whole, it was meet for no work: how much less shall it be meet yet for any work, when the fire hath devoured it, and it is burned? \nTherefore thus saith the Lord GOD; As the vine tree among the trees of the forest, which I have given to the fire for fuel, so will I give the inhabitants of Jerusalem. \nAnd I will set my face against them; they shall go out from one fire, and another fire shall devour them; and ye shall know that I am the LORD, when I set my face against them. \nAnd I will make the land desolate, because they have committed a trespass, saith the Lord GOD. \nAgain the word of the LORD came unto me, saying, \nSon of man, cause Jerusalem to know her abominations, \nAnd say, Thus saith the Lord GOD unto Jerusalem; Thy birth and thy nativity is of the land of Canaan; thy father was an Amorite, and thy mother an Hittite. \nAnd as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to supple thee; thou wast not salted at all, nor swaddled at all. \nNone eye pitied thee, to do any of these unto thee, to have compassion upon thee; but thou wast cast out in the open field, to the lothing of thy person, in the day that thou wast born. \nAnd when I passed by thee, and saw thee polluted in thine own blood, I said unto thee when thou wast in thy blood, Live; yea, I said unto thee when thou wast in thy blood, Live. \nI have caused thee to multiply as the bud of the field, and thou hast increased and waxen great, and thou art come to excellent ornaments: thy breasts are fashioned, and thine hair is grown, whereas thou wast naked and bare. \nNow when I passed by thee, and looked upon thee, behold, thy time was the time of love; and I spread my skirt over thee, and covered thy nakedness: yea, I sware unto thee, and entered into a covenant with thee, saith the Lord GOD, and thou becamest mine. \nThen washed I thee with water; yea, I throughly washed away thy blood from thee, and I anointed thee with oil. \nI clothed thee also with broidered work, and shod thee with badgers' skin, and I girded thee about with fine linen, and I covered thee with silk. \nI decked thee also with ornaments, and I put bracelets upon thy hands, and a chain on thy neck. \nAnd I put a jewel on thy forehead, and earrings in thine ears, and a beautiful crown upon thine head. \nThus wast thou decked with gold and silver; and thy raiment was of fine linen, and silk, and broidered work; thou didst eat fine flour, and honey, and oil: and thou wast exceeding beautiful, and thou didst prosper into a kingdom. \nAnd thy renown went forth among the heathen for thy beauty: for it was perfect through my comeliness, which I had put upon thee, saith the Lord GOD. \nBut thou didst trust in thine own beauty, and playedst the harlot because of thy renown, and pouredst out thy fornications on every one that passed by; his it was. \nAnd of thy garments thou didst take, and deckedst thy high places with divers colours, and playedst the harlot thereupon: the like things shall not come, neither shall it be so. \nThou hast also taken thy fair jewels of my gold and of my silver, which I had given thee, and madest to thyself images of men, and didst commit whoredom with them, \nAnd tookest thy broidered garments, and coveredst them: and thou hast set mine oil and mine incense before them. \nMy meat also which I gave thee, fine flour, and oil, and honey, wherewith I fed thee, thou hast even set it before them for a sweet savour: and thus it was, saith the Lord GOD. \nMoreover thou hast taken thy sons and thy daughters, whom thou hast borne unto me, and these hast thou sacrificed unto them to be devoured. Is this of thy whoredoms a small matter, \nThat thou hast slain my children, and delivered them to cause them to pass through the fire for them? \nAnd in all thine abominations and thy whoredoms thou hast not remembered the days of thy youth, when thou wast naked and bare, and wast polluted in thy blood. \nAnd it came to pass after all thy wickedness, (woe, woe unto thee! saith the LORD GOD;) \nThat thou hast also built unto thee an eminent place, and hast made thee an high place in every street. \nThou hast built thy high place at every head of the way, and hast made thy beauty to be abhorred, and hast opened thy feet to every one that passed by, and multiplied thy whoredoms. \nThou hast also committed fornication with the Egyptians thy neighbours, great of flesh; and hast increased thy whoredoms, to provoke me to anger. \nBehold, therefore I have stretched out my hand over thee, and have diminished thine ordinary food, and delivered thee unto the will of them that hate thee, the daughters of the Philistines, which are ashamed of thy lewd way. \nThou hast played the whore also with the Assyrians, because thou wast unsatiable; yea, thou hast played the harlot with them, and yet couldest not be satisfied. \nThou hast moreover multiplied thy fornication in the land of Canaan unto Chaldea; and yet thou wast not satisfied therewith. \nHow weak is thine heart, saith the LORD GOD, seeing thou doest all these things, the work of an imperious whorish woman; \nIn that thou buildest thine eminent place in the head of every way, and makest thine high place in every street; and hast not been as an harlot, in that thou scornest hire; \nBut as a wife that committeth adultery, which taketh strangers instead of her husband! \nThey give gifts to all whores: but thou givest thy gifts to all thy lovers, and hirest them, that they may come unto thee on every side for thy whoredom. \nAnd the contrary is in thee from other women in thy whoredoms, whereas none followeth thee to commit whoredoms: and in that thou givest a reward, and no reward is given unto thee, therefore thou art contrary. \nWherefore, O harlot, hear the word of the LORD: \nThus saith the Lord GOD; Because thy filthiness was poured out, and thy nakedness discovered through thy whoredoms with thy lovers, and with all the idols of thy abominations, and by the blood of thy children, which thou didst give unto them; \nBehold, therefore I will gather all thy lovers, with whom thou hast taken pleasure, and all them that thou hast loved, with all them that thou hast hated; I will even gather them round about against thee, and will discover thy nakedness unto them, that they may see all thy nakedness. \nAnd I will judge thee, as women that break wedlock and shed blood are judged; and I will give thee blood in fury and jealousy. \nAnd I will also give thee into their hand, and they shall throw down thine eminent place, and shall break down thy high places: they shall strip thee also of thy clothes, and shall take thy fair jewels, and leave thee naked and bare. \nThey shall also bring up a company against thee, and they shall stone thee with stones, and thrust thee through with their swords. \nAnd they shall burn thine houses with fire, and execute judgments upon thee in the sight of many women: and I will cause thee to cease from playing the harlot, and thou also shalt give no hire any more. \nSo will I make my fury toward thee to rest, and my jealousy shall depart from thee, and I will be quiet, and will be no more angry. \nBecause thou hast not remembered the days of thy youth, but hast fretted me in all these things; behold, therefore I also will recompense thy way upon thine head, saith the Lord GOD: and thou shalt not commit this lewdness above all thine abominations. \nBehold, every one that useth proverbs shall use this proverb against thee, saying, As is the mother, so is her daughter. \nThou art thy mother's daughter, that lotheth her husband and her children; and thou art the sister of thy sisters, which lothed their husbands and their children: your mother was an Hittite, and your father an Amorite. \nAnd thine elder sister is Samaria, she and her daughters that dwell at thy left hand: and thy younger sister, that dwelleth at thy right hand, is Sodom and her daughters. \nYet hast thou not walked after their ways, nor done after their abominations: but, as if that were a very little thing, thou wast corrupted more than they in all thy ways. \nAs I live, saith the Lord GOD, Sodom thy sister hath not done, she nor her daughters, as thou hast done, thou and thy daughters. \nBehold, this was the iniquity of thy sister Sodom, pride, fulness of bread, and abundance of idleness was in her and in her daughters, neither did she strengthen the hand of the poor and needy. \nAnd they were haughty, and committed abomination before me: therefore I took them away as I saw good. \nNeither hath Samaria committed half of thy sins; but thou hast multiplied thine abominations more than they, and hast justified thy sisters in all thine abominations which thou hast done. \nThou also, which hast judged thy sisters, bear thine own shame for thy sins that thou hast committed more abominable than they: they are more righteous than thou: yea, be thou confounded also, and bear thy shame, in that thou hast justified thy sisters. \nWhen I shall bring again their captivity, the captivity of Sodom and her daughters, and the captivity of Samaria and her daughters, then will I bring again the captivity of thy captives in the midst of them: \nThat thou mayest bear thine own shame, and mayest be confounded in all that thou hast done, in that thou art a comfort unto them. \nWhen thy sisters, Sodom and her daughters, shall return to their former estate, and Samaria and her daughters shall return to their former estate, then thou and thy daughters shall return to your former estate. \nFor thy sister Sodom was not mentioned by thy mouth in the day of thy pride, \nBefore thy wickedness was discovered, as at the time of thy reproach of the daughters of Syria, and all that are round about her, the daughters of the Philistines, which despise thee round about. \nThou hast borne thy lewdness and thine abominations, saith the LORD. \nFor thus saith the Lord GOD; I will even deal with thee as thou hast done, which hast despised the oath in breaking the covenant. \nNevertheless I will remember my covenant with thee in the days of thy youth, and I will establish unto thee an everlasting covenant. \nThen thou shalt remember thy ways, and be ashamed, when thou shalt receive thy sisters, thine elder and thy younger: and I will give them unto thee for daughters, but not by thy covenant. \nAnd I will establish my covenant with thee; and thou shalt know that I am the LORD: \nThat thou mayest remember, and be confounded, and never open thy mouth any more because of thy shame, when I am pacified toward thee for all that thou hast done, saith the Lord GOD. \nAnd the word of the LORD came unto me, saying, \nSon of man, put forth a riddle, and speak a parable unto the house of Israel; \nAnd say, Thus saith the Lord GOD; A great eagle with great wings, longwinged, full of feathers, which had divers colours, came unto Lebanon, and took the highest branch of the cedar: \nHe cropped off the top of his young twigs, and carried it into a land of traffick; he set it in a city of merchants. \nHe took also of the seed of the land, and planted it in a fruitful field; he placed it by great waters, and set it as a willow tree. \nAnd it grew, and became a spreading vine of low stature, whose branches turned toward him, and the roots thereof were under him: so it became a vine, and brought forth branches, and shot forth sprigs. \nThere was also another great eagle with great wings and many feathers: and, behold, this vine did bend her roots toward him, and shot forth her branches toward him, that he might water it by the furrows of her plantation. \nIt was planted in a good soil by great waters, that it might bring forth branches, and that it might bear fruit, that it might be a goodly vine. \nSay thou, Thus saith the Lord GOD; Shall it prosper? shall he not pull up the roots thereof, and cut off the fruit thereof, that it wither? it shall wither in all the leaves of her spring, even without great power or many people to pluck it up by the roots thereof. \nYea, behold, being planted, shall it prosper? shall it not utterly wither, when the east wind toucheth it? it shall wither in the furrows where it grew. \nMoreover the word of the LORD came unto me, saying, \nSay now to the rebellious house, Know ye not what these things mean? tell them, Behold, the king of Babylon is come to Jerusalem, and hath taken the king thereof, and the princes thereof, and led them with him to Babylon; \nAnd hath taken of the king's seed, and made a covenant with him, and hath taken an oath of him: he hath also taken the mighty of the land: \nThat the kingdom might be base, that it might not lift itself up, but that by keeping of his covenant it might stand. \nBut he rebelled against him in sending his ambassadors into Egypt, that they might give him horses and much people. Shall he prosper? shall he escape that doeth such things? or shall he break the covenant, and be delivered? \nAs I live, saith the Lord GOD, surely in the place where the king dwelleth that made him king, whose oath he despised, and whose covenant he brake, even with him in the midst of Babylon he shall die. \nNeither shall Pharaoh with his mighty army and great company make for him in the war, by casting up mounts, and building forts, to cut off many persons: \nSeeing he despised the oath by breaking the covenant, when, lo, he had given his hand, and hath done all these things, he shall not escape. \nTherefore thus saith the Lord GOD; As I live, surely mine oath that he hath despised, and my covenant that he hath broken, even it will I recompense upon his own head. \nAnd I will spread my net upon him, and he shall be taken in my snare, and I will bring him to Babylon, and will plead with him there for his trespass that he hath trespassed against me. \nAnd all his fugitives with all his bands shall fall by the sword, and they that remain shall be scattered toward all winds: and ye shall know that I the LORD have spoken it. \nThus saith the Lord GOD; I will also take of the highest branch of the high cedar, and will set it; I will crop off from the top of his young twigs a tender one, and will plant it upon an high mountain and eminent: \nIn the mountain of the height of Israel will I plant it: and it shall bring forth boughs, and bear fruit, and be a goodly cedar: and under it shall dwell all fowl of every wing; in the shadow of the branches thereof shall they dwell. \nAnd all the trees of the field shall know that I the LORD have brought down the high tree, have exalted the low tree, have dried up the green tree, and have made the dry tree to flourish: I the LORD have spoken and have done it. \nThe word of the LORD came unto me again, saying, \nWhat mean ye, that ye use this proverb concerning the land of Israel, saying, The fathers have eaten sour grapes, and the children's teeth are set on edge? \nAs I live, saith the Lord GOD, ye shall not have occasion any more to use this proverb in Israel. \nBehold, all souls are mine; as the soul of the father, so also the soul of the son is mine: the soul that sinneth, it shall die. \nBut if a man be just, and do that which is lawful and right, \nAnd hath not eaten upon the mountains, neither hath lifted up his eyes to the idols of the house of Israel, neither hath defiled his neighbour's wife, neither hath come near to a menstruous woman, \nAnd hath not oppressed any, but hath restored to the debtor his pledge, hath spoiled none by violence, hath given his bread to the hungry, and hath covered the naked with a garment; \nHe that hath not given forth upon usury, neither hath taken any increase, that hath withdrawn his hand from iniquity, hath executed true judgment between man and man, \nHath walked in my statutes, and hath kept my judgments, to deal truly; he is just, he shall surely live, saith the Lord GOD. \nIf he beget a son that is a robber, a shedder of blood, and that doeth the like to any one of these things, \nAnd that doeth not any of those duties, but even hath eaten upon the mountains, and defiled his neighbour's wife, \nHath oppressed the poor and needy, hath spoiled by violence, hath not restored the pledge, and hath lifted up his eyes to the idols, hath committed abomination, \nHath given forth upon usury, and hath taken increase: shall he then live? he shall not live: he hath done all these abominations; he shall surely die; his blood shall be upon him. \nNow, lo, if he beget a son, that seeth all his father's sins which he hath done, and considereth, and doeth not such like, \nThat hath not eaten upon the mountains, neither hath lifted up his eyes to the idols of the house of Israel, hath not defiled his neighbour's wife, \nNeither hath oppressed any, hath not withholden the pledge, neither hath spoiled by violence, but hath given his bread to the hungry, and hath covered the naked with a garment, \nThat hath taken off his hand from the poor, that hath not received usury nor increase, hath executed my judgments, hath walked in my statutes; he shall not die for the iniquity of his father, he shall surely live. \nAs for his father, because he cruelly oppressed, spoiled his brother by violence, and did that which is not good among his people, lo, even he shall die in his iniquity. \nYet say ye, Why? doth not the son bear the iniquity of the father? When the son hath done that which is lawful and right, and hath kept all my statutes, and hath done them, he shall surely live. \nThe soul that sinneth, it shall die. The son shall not bear the iniquity of the father, neither shall the father bear the iniquity of the son: the righteousness of the righteous shall be upon him, and the wickedness of the wicked shall be upon him. \nBut if the wicked will turn from all his sins that he hath committed, and keep all my statutes, and do that which is lawful and right, he shall surely live, he shall not die. \nAll his transgressions that he hath committed, they shall not be mentioned unto him: in his righteousness that he hath done he shall live. \nHave I any pleasure at all that the wicked should die? saith the Lord GOD: and not that he should return from his ways, and live? \nBut when the righteous turneth away from his righteousness, and committeth iniquity, and doeth according to all the abominations that the wicked man doeth, shall he live? All his righteousness that he hath done shall not be mentioned: in his trespass that he hath trespassed, and in his sin that he hath sinned, in them shall he die. \nYet ye say, The way of the LORD is not equal. Hear now, O house of Israel; Is not my way equal? are not your ways unequal? \nWhen a righteous man turneth away from his righteousness, and committeth iniquity, and dieth in them; for his iniquity that he hath done shall he die. \nAgain, when the wicked man turneth away from his wickedness that he hath committed, and doeth that which is lawful and right, he shall save his soul alive. \nBecause he considereth, and turneth away from all his transgressions that he hath committed, he shall surely live, he shall not die. \nYet saith the house of Israel, The way of the LORD is not equal. O house of Israel, are not my ways equal? are not your ways unequal? \nTherefore I will judge you, O house of Israel, every one according to his ways, saith the Lord GOD. Repent, and turn yourselves from all your transgressions; so iniquity shall not be your ruin. \nCast away from you all your transgressions, whereby ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel? \nFor I have no pleasure in the death of him that dieth, saith the Lord GOD: wherefore turn yourselves, and live ye. \nMoreover take thou up a lamentation for the princes of Israel, \nAnd say, What is thy mother? A lioness: she lay down among lions, she nourished her whelps among young lions. \nAnd she brought up one of her whelps: it became a young lion, and it learned to catch the prey; it devoured men. \nThe nations also heard of him; he was taken in their pit, and they brought him with chains unto the land of Egypt. \nNow when she saw that she had waited, and her hope was lost, then she took another of her whelps, and made him a young lion. \nAnd he went up and down among the lions, he became a young lion, and learned to catch the prey, and devoured men. \nAnd he knew their desolate palaces, and he laid waste their cities; and the land was desolate, and the fulness thereof, by the noise of his roaring. \nThen the nations set against him on every side from the provinces, and spread their net over him: he was taken in their pit. \nAnd they put him in ward in chains, and brought him to the king of Babylon: they brought him into holds, that his voice should no more be heard upon the mountains of Israel. \nThy mother is like a vine in thy blood, planted by the waters: she was fruitful and full of branches by reason of many waters. \nAnd she had strong rods for the sceptres of them that bare rule, and her stature was exalted among the thick branches, and she appeared in her height with the multitude of her branches. \nBut she was plucked up in fury, she was cast down to the ground, and the east wind dried up her fruit: her strong rods were broken and withered; the fire consumed them. \nAnd now she is planted in the wilderness, in a dry and thirsty ground. \nAnd fire is gone out of a rod of her branches, which hath devoured her fruit, so that she hath no strong rod to be a sceptre to rule. This is a lamentation, and shall be for a lamentation. \nAnd it came to pass in the seventh year, in the fifth month, the tenth day of the month, that certain of the elders of Israel came to enquire of the LORD, and sat before me. \nThen came the word of the LORD unto me, saying, \nSon of man, speak unto the elders of Israel, and say unto them, Thus saith the Lord GOD; Are ye come to enquire of me? As I live, saith the Lord GOD, I will not be enquired of by you. \nWilt thou judge them, son of man, wilt thou judge them? cause them to know the abominations of their fathers: \nAnd say unto them, Thus saith the Lord GOD; In the day when I chose Israel, and lifted up mine hand unto the seed of the house of Jacob, and made myself known unto them in the land of Egypt, when I lifted up mine hand unto them, saying, I am the LORD your God; \nIn the day that I lifted up mine hand unto them, to bring them forth of the land of Egypt into a land that I had espied for them, flowing with milk and honey, which is the glory of all lands: \nThen said I unto them, Cast ye away every man the abominations of his eyes, and defile not yourselves with the idols of Egypt: I am the LORD your God. \nBut they rebelled against me, and would not hearken unto me: they did not every man cast away the abominations of their eyes, neither did they forsake the idols of Egypt: then I said, I will pour out my fury upon them, to accomplish my anger against them in the midst of the land of Egypt. \nBut I wrought for my name's sake, that it should not be polluted before the heathen, among whom they were, in whose sight I made myself known unto them, in bringing them forth out of the land of Egypt. \nWherefore I caused them to go forth out of the land of Egypt, and brought them into the wilderness. \nAnd I gave them my statutes, and shewed them my judgments, which if a man do, he shall even live in them. \nMoreover also I gave them my sabbaths, to be a sign between me and them, that they might know that I am the LORD that sanctify them. \nBut the house of Israel rebelled against me in the wilderness: they walked not in my statutes, and they despised my judgments, which if a man do, he shall even live in them; and my sabbaths they greatly polluted: then I said, I would pour out my fury upon them in the wilderness, to consume them. \nBut I wrought for my name's sake, that it should not be polluted before the heathen, in whose sight I brought them out. \nYet also I lifted up my hand unto them in the wilderness, that I would not bring them into the land which I had given them, flowing with milk and honey, which is the glory of all lands; \nBecause they despised my judgments, and walked not in my statutes, but polluted my sabbaths: for their heart went after their idols. \nNevertheless mine eye spared them from destroying them, neither did I make an end of them in the wilderness. \nBut I said unto their children in the wilderness, Walk ye not in the statutes of your fathers, neither observe their judgments, nor defile yourselves with their idols: \nI am the LORD your God; walk in my statutes, and keep my judgments, and do them; \nAnd hallow my sabbaths; and they shall be a sign between me and you, that ye may know that I am the LORD your God. \nNotwithstanding the children rebelled against me: they walked not in my statutes, neither kept my judgments to do them, which if a man do, he shall even live in them; they polluted my sabbaths: then I said, I would pour out my fury upon them, to accomplish my anger against them in the wilderness. \nNevertheless I withdrew mine hand, and wrought for my name's sake, that it should not be polluted in the sight of the heathen, in whose sight I brought them forth. \nI lifted up mine hand unto them also in the wilderness, that I would scatter them among the heathen, and disperse them through the countries; \nBecause they had not executed my judgments, but had despised my statutes, and had polluted my sabbaths, and their eyes were after their fathers' idols. \nWherefore I gave them also statutes that were not good, and judgments whereby they should not live; \nAnd I polluted them in their own gifts, in that they caused to pass through the fire all that openeth the womb, that I might make them desolate, to the end that they might know that I am the LORD. \nTherefore, son of man, speak unto the house of Israel, and say unto them, Thus saith the Lord GOD; Yet in this your fathers have blasphemed me, in that they have committed a trespass against me. \nFor when I had brought them into the land, for the which I lifted up mine hand to give it to them, then they saw every high hill, and all the thick trees, and they offered there their sacrifices, and there they presented the provocation of their offering: there also they made their sweet savour, and poured out there their drink offerings. \nThen I said unto them, What is the high place whereunto ye go? And the name whereof is called Bamah unto this day. \nWherefore say unto the house of Israel, Thus saith the Lord GOD; Are ye polluted after the manner of your fathers? and commit ye whoredom after their abominations? \nFor when ye offer your gifts, when ye make your sons to pass through the fire, ye pollute yourselves with all your idols, even unto this day: and shall I be enquired of by you, O house of Israel? As I live, saith the Lord GOD, I will not be enquired of by you. \nAnd that which cometh into your mind shall not be at all, that ye say, We will be as the heathen, as the families of the countries, to serve wood and stone. \nAs I live, saith the Lord GOD, surely with a mighty hand, and with a stretched out arm, and with fury poured out, will I rule over you: \nAnd I will bring you out from the people, and will gather you out of the countries wherein ye are scattered, with a mighty hand, and with a stretched out arm, and with fury poured out. \nAnd I will bring you into the wilderness of the people, and there will I plead with you face to face. \nLike as I pleaded with your fathers in the wilderness of the land of Egypt, so will I plead with you, saith the Lord GOD. \nAnd I will cause you to pass under the rod, and I will bring you into the bond of the covenant: \nAnd I will purge out from among you the rebels, and them that transgress against me: I will bring them forth out of the country where they sojourn, and they shall not enter into the land of Israel: and ye shall know that I am the LORD. \nAs for you, O house of Israel, thus saith the Lord GOD; Go ye, serve ye every one his idols, and hereafter also, if ye will not hearken unto me: but pollute ye my holy name no more with your gifts, and with your idols. \nFor in mine holy mountain, in the mountain of the height of Israel, saith the Lord GOD, there shall all the house of Israel, all of them in the land, serve me: there will I accept them, and there will I require your offerings, and the firstfruits of your oblations, with all your holy things. \nI will accept you with your sweet savour, when I bring you out from the people, and gather you out of the countries wherein ye have been scattered; and I will be sanctified in you before the heathen. \nAnd ye shall know that I am the LORD, when I shall bring you into the land of Israel, into the country for the which I lifted up mine hand to give it to your fathers. \nAnd there shall ye remember your ways, and all your doings, wherein ye have been defiled; and ye shall lothe yourselves in your own sight for all your evils that ye have committed. \nAnd ye shall know that I am the LORD when I have wrought with you for my name's sake, not according to your wicked ways, nor according to your corrupt doings, O ye house of Israel, saith the Lord GOD. \nMoreover the word of the LORD came unto me, saying, \nSon of man, set thy face toward the south, and drop thy word toward the south, and prophesy against the forest of the south field; \nAnd say to the forest of the south, Hear the word of the LORD; Thus saith the Lord GOD; Behold, I will kindle a fire in thee, and it shall devour every green tree in thee, and every dry tree: the flaming flame shall not be quenched, and all faces from the south to the north shall be burned therein. \nAnd all flesh shall see that I the LORD have kindled it: it shall not be quenched. \nThen said I, Ah Lord GOD! they say of me, Doth he not speak parables? \nAnd the word of the LORD came unto me, saying, \nSon of man, set thy face toward Jerusalem, and drop thy word toward the holy places, and prophesy against the land of Israel, \nAnd say to the land of Israel, Thus saith the LORD; Behold, I am against thee, and will draw forth my sword out of his sheath, and will cut off from thee the righteous and the wicked. \nSeeing then that I will cut off from thee the righteous and the wicked, therefore shall my sword go forth out of his sheath against all flesh from the south to the north: \nThat all flesh may know that I the LORD have drawn forth my sword out of his sheath: it shall not return any more. \nSigh therefore, thou son of man, with the breaking of thy loins; and with bitterness sigh before their eyes. \nAnd it shall be, when they say unto thee, Wherefore sighest thou? that thou shalt answer, For the tidings; because it cometh: and every heart shall melt, and all hands shall be feeble, and every spirit shall faint, and all knees shall be weak as water: behold, it cometh, and shall be brought to pass, saith the Lord GOD. \nAgain the word of the LORD came unto me, saying, \nSon of man, prophesy, and say, Thus saith the LORD; Say, A sword, a sword is sharpened, and also furbished: \nIt is sharpened to make a sore slaughter; it is furbished that it may glitter: should we then make mirth? it contemneth the rod of my son, as every tree. \nAnd he hath given it to be furbished, that it may be handled: this sword is sharpened, and it is furbished, to give it into the hand of the slayer. \nCry and howl, son of man: for it shall be upon my people, it shall be upon all the princes of Israel: terrors by reason of the sword shall be upon my people: smite therefore upon thy thigh. \nBecause it is a trial, and what if the sword contemn even the rod? it shall be no more, saith the Lord GOD. \nThou therefore, son of man, prophesy, and smite thine hands together. and let the sword be doubled the third time, the sword of the slain: it is the sword of the great men that are slain, which entereth into their privy chambers. \nI have set the point of the sword against all their gates, that their heart may faint, and their ruins be multiplied: ah! it is made bright, it is wrapped up for the slaughter. \nGo thee one way or other, either on the right hand, or on the left, whithersoever thy face is set. \nI will also smite mine hands together, and I will cause my fury to rest: I the LORD have said it. \nThe word of the LORD came unto me again, saying, \nAlso, thou son of man, appoint thee two ways, that the sword of the king of Babylon may come: both twain shall come forth out of one land: and choose thou a place, choose it at the head of the way to the city. \nAppoint a way, that the sword may come to Rabbath of the Ammonites, and to Judah in Jerusalem the defenced. \nFor the king of Babylon stood at the parting of the way, at the head of the two ways, to use divination: he made his arrows bright, he consulted with images, he looked in the liver. \nAt his right hand was the divination for Jerusalem, to appoint captains, to open the mouth in the slaughter, to lift up the voice with shouting, to appoint battering rams against the gates, to cast a mount, and to build a fort. \nAnd it shall be unto them as a false divination in their sight, to them that have sworn oaths: but he will call to remembrance the iniquity, that they may be taken. \nTherefore thus saith the Lord GOD; Because ye have made your iniquity to be remembered, in that your transgressions are discovered, so that in all your doings your sins do appear; because, I say, that ye are come to remembrance, ye shall be taken with the hand. \nAnd thou, profane wicked prince of Israel, whose day is come, when iniquity shall have an end, \nThus saith the Lord GOD; Remove the diadem, and take off the crown: this shall not be the same: exalt him that is low, and abase him that is high. \nI will overturn, overturn, overturn, it: and it shall be no more, until he come whose right it is; and I will give it him. \nAnd thou, son of man, prophesy and say, Thus saith the Lord GOD concerning the Ammonites, and concerning their reproach; even say thou, The sword, the sword is drawn: for the slaughter it is furbished, to consume because of the glittering: \nWhiles they see vanity unto thee, whiles they divine a lie unto thee, to bring thee upon the necks of them that are slain, of the wicked, whose day is come, when their iniquity shall have an end. \nShall I cause it to return into his sheath? I will judge thee in the place where thou wast created, in the land of thy nativity. \nAnd I will pour out mine indignation upon thee, I will blow against thee in the fire of my wrath, and deliver thee into the hand of brutish men, and skilful to destroy. \nThou shalt be for fuel to the fire; thy blood shall be in the midst of the land; thou shalt be no more remembered: for I the LORD have spoken it. \nMoreover the word of the LORD came unto me, saying, \nNow, thou son of man, wilt thou judge, wilt thou judge the bloody city? yea, thou shalt shew her all her abominations. \nThen say thou, Thus saith the Lord GOD, The city sheddeth blood in the midst of it, that her time may come, and maketh idols against herself to defile herself. \nThou art become guilty in thy blood that thou hast shed; and hast defiled thyself in thine idols which thou hast made; and thou hast caused thy days to draw near, and art come even unto thy years: therefore have I made thee a reproach unto the heathen, and a mocking to all countries. \nThose that be near, and those that be far from thee, shall mock thee, which art infamous and much vexed. \nBehold, the princes of Israel, every one were in thee to their power to shed blood. \nIn thee have they set light by father and mother: in the midst of thee have they dealt by oppression with the stranger: in thee have they vexed the fatherless and the widow. \nThou hast despised mine holy things, and hast profaned my sabbaths. \nIn thee are men that carry tales to shed blood: and in thee they eat upon the mountains: in the midst of thee they commit lewdness. \nIn thee have they discovered their fathers' nakedness: in thee have they humbled her that was set apart for pollution. \nAnd one hath committed abomination with his neighbour's wife; and another hath lewdly defiled his daughter in law; and another in thee hath humbled his sister, his father's daughter. \nIn thee have they taken gifts to shed blood; thou hast taken usury and increase, and thou hast greedily gained of thy neighbours by extortion, and hast forgotten me, saith the Lord GOD. \nBehold, therefore I have smitten mine hand at thy dishonest gain which thou hast made, and at thy blood which hath been in the midst of thee. \nCan thine heart endure, or can thine hands be strong, in the days that I shall deal with thee? I the LORD have spoken it, and will do it. \nAnd I will scatter thee among the heathen, and disperse thee in the countries, and will consume thy filthiness out of thee. \nAnd thou shalt take thine inheritance in thyself in the sight of the heathen, and thou shalt know that I am the LORD. \nAnd the word of the LORD came unto me, saying, \nSon of man, the house of Israel is to me become dross: all they are brass, and tin, and iron, and lead, in the midst of the furnace; they are even the dross of silver. \nTherefore thus saith the Lord GOD; Because ye are all become dross, behold, therefore I will gather you into the midst of Jerusalem. \nAs they gather silver, and brass, and iron, and lead, and tin, into the midst of the furnace, to blow the fire upon it, to melt it; so will I gather you in mine anger and in my fury, and I will leave you there, and melt you. \nYea, I will gather you, and blow upon you in the fire of my wrath, and ye shall be melted in the midst therof. \nAs silver is melted in the midst of the furnace, so shall ye be melted in the midst thereof; and ye shall know that I the LORD have poured out my fury upon you. \nAnd the word of the LORD came unto me, saying, \nSon of man, say unto her, Thou art the land that is not cleansed, nor rained upon in the day of indignation. \nThere is a conspiracy of her prophets in the midst thereof, like a roaring lion ravening the prey; they have devoured souls; they have taken the treasure and precious things; they have made her many widows in the midst thereof. \nHer priests have violated my law, and have profaned mine holy things: they have put no difference between the holy and profane, neither have they shewed difference between the unclean and the clean, and have hid their eyes from my sabbaths, and I am profaned among them. \nHer princes in the midst thereof are like wolves ravening the prey, to shed blood, and to destroy souls, to get dishonest gain. \nAnd her prophets have daubed them with untempered morter, seeing vanity, and divining lies unto them, saying, Thus saith the Lord GOD, when the LORD hath not spoken. \nThe people of the land have used oppression, and exercised robbery, and have vexed the poor and needy: yea, they have oppressed the stranger wrongfully. \nAnd I sought for a man among them, that should make up the hedge, and stand in the gap before me for the land, that I should not destroy it: but I found none. \nTherefore have I poured out mine indignation upon them; I have consumed them with the fire of my wrath: their own way have I recompensed upon their heads, saith the Lord GOD. \nThe word of the LORD came again unto me, saying, \nSon of man, there were two women, the daughters of one mother: \nAnd they committed whoredoms in Egypt; they committed whoredoms in their youth: there were their breasts pressed, and there they bruised the teats of their virginity. \nAnd the names of them were Aholah the elder, and Aholibah her sister: and they were mine, and they bare sons and daughters. Thus were their names; Samaria is Aholah, and Jerusalem Aholibah. \nAnd Aholah played the harlot when she was mine; and she doted on her lovers, on the Assyrians her neighbours, \nWhich were clothed with blue, captains and rulers, all of them desirable young men, horsemen riding upon horses. \nThus she committed her whoredoms with them, with all them that were the chosen men of Assyria, and with all on whom she doted: with all their idols she defiled herself. \nNeither left she her whoredoms brought from Egypt: for in her youth they lay with her, and they bruised the breasts of her virginity, and poured their whoredom upon her. \nWherefore I have delivered her into the hand of her lovers, into the hand of the Assyrians, upon whom she doted. \nThese discovered her nakedness: they took her sons and her daughters, and slew her with the sword: and she became famous among women; for they had executed judgment upon her. \nAnd when her sister Aholibah saw this, she was more corrupt in her inordinate love than she, and in her whoredoms more than her sister in her whoredoms. \nShe doted upon the Assyrians her neighbours, captains and rulers clothed most gorgeously, horsemen riding upon horses, all of them desirable young men. \nThen I saw that she was defiled, that they took both one way, \nAnd that she increased her whoredoms: for when she saw men pourtrayed upon the wall, the images of the Chaldeans pourtrayed with vermilion, \nGirded with girdles upon their loins, exceeding in dyed attire upon their heads, all of them princes to look to, after the manner of the Babylonians of Chaldea, the land of their nativity: \nAnd as soon as she saw them with her eyes, she doted upon them, and sent messengers unto them into Chaldea. \nAnd the Babylonians came to her into the bed of love, and they defiled her with their whoredom, and she was polluted with them, and her mind was alienated from them. \nSo she discovered her whoredoms, and discovered her nakedness: then my mind was alienated from her, like as my mind was alienated from her sister. \nYet she multiplied her whoredoms, in calling to remembrance the days of her youth, wherein she had played the harlot in the land of Egypt. \nFor she doted upon their paramours, whose flesh is as the flesh of asses, and whose issue is like the issue of horses. \nThus thou calledst to remembrance the lewdness of thy youth, in bruising thy teats by the Egyptians for the paps of thy youth. \nTherefore, O Aholibah, thus saith the Lord GOD; Behold, I will raise up thy lovers against thee, from whom thy mind is alienated, and I will bring them against thee on every side; \nThe Babylonians, and all the Chaldeans, Pekod, and Shoa, and Koa, and all the Assyrians with them: all of them desirable young men, captains and rulers, great lords and renowned, all of them riding upon horses. \nAnd they shall come against thee with chariots, wagons, and wheels, and with an assembly of people, which shall set against thee buckler and shield and helmet round about: and I will set judgment before them, and they shall judge thee according to their judgments. \nAnd I will set my jealousy against thee, and they shall deal furiously with thee: they shall take away thy nose and thine ears; and thy remnant shall fall by the sword: they shall take thy sons and thy daughters; and thy residue shall be devoured by the fire. \nThey shall also strip thee out of thy clothes, and take away thy fair jewels. \nThus will I make thy lewdness to cease from thee, and thy whoredom brought from the land of Egypt: so that thou shalt not lift up thine eyes unto them, nor remember Egypt any more. \nFor thus saith the Lord GOD; Behold, I will deliver thee into the hand of them whom thou hatest, into the hand of them from whom thy mind is alienated: \nAnd they shall deal with thee hatefully, and shall take away all thy labour, and shall leave thee naked and bare: and the nakedness of thy whoredoms shall be discovered, both thy lewdness and thy whoredoms. \nI will do these things unto thee, because thou hast gone a whoring after the heathen, and because thou art polluted with their idols. \nThou hast walked in the way of thy sister; therefore will I give her cup into thine hand. \nThus saith the Lord GOD; Thou shalt drink of thy sister's cup deep and large: thou shalt be laughed to scorn and had in derision; it containeth much. \nThou shalt be filled with drunkenness and sorrow, with the cup of astonishment and desolation, with the cup of thy sister Samaria. \nThou shalt even drink it and suck it out, and thou shalt break the sherds thereof, and pluck off thine own breasts: for I have spoken it, saith the Lord GOD. \nTherefore thus saith the Lord GOD; Because thou hast forgotten me, and cast me behind thy back, therefore bear thou also thy lewdness and thy whoredoms. \nThe LORD said moreover unto me; Son of man, wilt thou judge Aholah and Aholibah? yea, declare unto them their abominations; \nThat they have committed adultery, and blood is in their hands, and with their idols have they committed adultery, and have also caused their sons, whom they bare unto me, to pass for them through the fire, to devour them. \nMoreover this they have done unto me: they have defiled my sanctuary in the same day, and have profaned my sabbaths. \nFor when they had slain their children to their idols, then they came the same day into my sanctuary to profane it; and, lo, thus have they done in the midst of mine house. \nAnd furthermore, that ye have sent for men to come from far, unto whom a messenger was sent; and, lo, they came: for whom thou didst wash thyself, paintedst thy eyes, and deckedst thyself with ornaments, \nAnd satest upon a stately bed, and a table prepared before it, whereupon thou hast set mine incense and mine oil. \nAnd a voice of a multitude being at ease was with her: and with the men of the common sort were brought Sabeans from the wilderness, which put bracelets upon their hands, and beautiful crowns upon their heads. \nThen said I unto her that was old in adulteries, Will they now commit whoredoms with her, and she with them? \nYet they went in unto her, as they go in unto a woman that playeth the harlot: so went they in unto Aholah and unto Aholibah, the lewd women. \nAnd the righteous men, they shall judge them after the manner of adulteresses, and after the manner of women that shed blood; because they are adulteresses, and blood is in their hands. \nFor thus saith the Lord GOD; I will bring up a company upon them, and will give them to be removed and spoiled. \nAnd the company shall stone them with stones, and dispatch them with their swords; they shall slay their sons and their daughters, and burn up their houses with fire. \nThus will I cause lewdness to cease out of the land, that all women may be taught not to do after your lewdness. \nAnd they shall recompense your lewdness upon you, and ye shall bear the sins of your idols: and ye shall know that I am the Lord GOD. \nAgain in the ninth year, in the tenth month, in the tenth day of the month, the word of the LORD came unto me, saying, \nSon of man, write thee the name of the day, even of this same day: the king of Babylon set himself against Jerusalem this same day. \nAnd utter a parable unto the rebellious house, and say unto them, Thus saith the Lord GOD; Set on a pot, set it on, and also pour water into it: \nGather the pieces thereof into it, even every good piece, the thigh, and the shoulder; fill it with the choice bones. \nTake the choice of the flock, and burn also the bones under it, and make it boil well, and let them seethe the bones of it therein. \nWherefore thus saith the Lord GOD; Woe to the bloody city, to the pot whose scum is therein, and whose scum is not gone out of it! bring it out piece by piece; let no lot fall upon it. \nFor her blood is in the midst of her; she set it upon the top of a rock; she poured it not upon the ground, to cover it with dust; \nThat it might cause fury to come up to take vengeance; I have set her blood upon the top of a rock, that it should not be covered. \nTherefore thus saith the Lord GOD; Woe to the bloody city! I will even make the pile for fire great. \nHeap on wood, kindle the fire, consume the flesh, and spice it well, and let the bones be burned. \nThen set it empty upon the coals thereof, that the brass of it may be hot, and may burn, and that the filthiness of it may be molten in it, that the scum of it may be consumed. \nShe hath wearied herself with lies, and her great scum went not forth out of her: her scum shall be in the fire. \nIn thy filthiness is lewdness: because I have purged thee, and thou wast not purged, thou shalt not be purged from thy filthiness any more, till I have caused my fury to rest upon thee. \nI the LORD have spoken it: it shall come to pass, and I will do it; I will not go back, neither will I spare, neither will I repent; according to thy ways, and according to thy doings, shall they judge thee, saith the Lord GOD. \nAlso the word of the LORD came unto me, saying, \nSon of man, behold, I take away from thee the desire of thine eyes with a stroke: yet neither shalt thou mourn nor weep, neither shall thy tears run down. \nForbear to cry, make no mourning for the dead, bind the tire of thine head upon thee, and put on thy shoes upon thy feet, and cover not thy lips, and eat not the bread of men. \nSo I spake unto the people in the morning: and at even my wife died; and I did in the morning as I was commanded. \nAnd the people said unto me, Wilt thou not tell us what these things are to us, that thou doest so? \nThen I answered them, The word of the LORD came unto me, saying, \nSpeak unto the house of Israel, Thus saith the Lord GOD; Behold, I will profane my sanctuary, the excellency of your strength, the desire of your eyes, and that which your soul pitieth; and your sons and your daughters whom ye have left shall fall by the sword. \nAnd ye shall do as I have done: ye shall not cover your lips, nor eat the bread of men. \nAnd your tires shall be upon your heads, and your shoes upon your feet: ye shall not mourn nor weep; but ye shall pine away for your iniquities, and mourn one toward another. \nThus Ezekiel is unto you a sign: according to all that he hath done shall ye do: and when this cometh, ye shall know that I am the Lord GOD. \nAlso, thou son of man, shall it not be in the day when I take from them their strength, the joy of their glory, the desire of their eyes, and that whereupon they set their minds, their sons and their daughters, \nThat he that escapeth in that day shall come unto thee, to cause thee to hear it with thine ears? \nIn that day shall thy mouth be opened to him which is escaped, and thou shalt speak, and be no more dumb: and thou shalt be a sign unto them; and they shall know that I am the LORD. \nThe word of the LORD came again unto me, saying, \nSon of man, set thy face against the Ammonites, and prophesy against them; \nAnd say unto the Ammonites, Hear the word of the Lord GOD; Thus saith the Lord GOD; Because thou saidst, Aha, against my sanctuary, when it was profaned; and against the land of Israel, when it was desolate; and against the house of Judah, when they went into captivity; \nBehold, therefore I will deliver thee to the men of the east for a possession, and they shall set their palaces in thee, and make their dwellings in thee: they shall eat thy fruit, and they shall drink thy milk. \nAnd I will make Rabbah a stable for camels, and the Ammonites a couching place for flocks: and ye shall know that I am the LORD. \nFor thus saith the Lord GOD; Because thou hast clapped thine hands, and stamped with the feet, and rejoiced in heart with all thy despite against the land of Israel; \nBehold, therefore I will stretch out mine hand upon thee, and will deliver thee for a spoil to the heathen; and I will cut thee off from the people, and I will cause thee to perish out of the countries: I will destroy thee; and thou shalt know that I am the LORD. \nThus saith the Lord GOD; Because that Moab and Seir do say, Behold, the house of Judah is like unto all the heathen; \nTherefore, behold, I will open the side of Moab from the cities, from his cities which are on his frontiers, the glory of the country, Bethjeshimoth, Baalmeon, and Kiriathaim, \nUnto the men of the east with the Ammonites, and will give them in possession, that the Ammonites may not be remembered among the nations. \nAnd I will execute judgments upon Moab; and they shall know that I am the LORD. \nThus saith the Lord GOD; Because that Edom hath dealt against the house of Judah by taking vengeance, and hath greatly offended, and revenged himself upon them; \nTherefore thus saith the Lord GOD; I will also stretch out mine hand upon Edom, and will cut off man and beast from it; and I will make it desolate from Teman; and they of Dedan shall fall by the sword. \nAnd I will lay my vengeance upon Edom by the hand of my people Israel: and they shall do in Edom according to mine anger and according to my fury; and they shall know my vengeance, saith the Lord GOD. \nThus saith the Lord GOD; Because the Philistines have dealt by revenge, and have taken vengeance with a despiteful heart, to destroy it for the old hatred; \nTherefore thus saith the Lord GOD; Behold, I will stretch out mine hand upon the Philistines, and I will cut off the Cherethims, and destroy the remnant of the sea coast. \nAnd I will execute great vengeance upon them with furious rebukes; and they shall know that I am the LORD, when I shall lay my vengeance upon them. \nAnd it came to pass in the eleventh year, in the first day of the month, that the word of the LORD came unto me, saying, \nSon of man, because that Tyrus hath said against Jerusalem, Aha, she is broken that was the gates of the people: she is turned unto me: I shall be replenished, now she is laid waste: \nTherefore thus saith the Lord GOD; Behold, I am against thee, O Tyrus, and will cause many nations to come up against thee, as the sea causeth his waves to come up. \nAnd they shall destroy the walls of Tyrus, and break down her towers: I will also scrape her dust from her, and make her like the top of a rock. \nIt shall be a place for the spreading of nets in the midst of the sea: for I have spoken it, saith the Lord GOD: and it shall become a spoil to the nations. \nAnd her daughters which are in the field shall be slain by the sword; and they shall know that I am the LORD. \nFor thus saith the Lord GOD; Behold, I will bring upon Tyrus Nebuchadrezzar king of Babylon, a king of kings, from the north, with horses, and with chariots, and with horsemen, and companies, and much people. \nHe shall slay with the sword thy daughters in the field: and he shall make a fort against thee, and cast a mount against thee, and lift up the buckler against thee. \nAnd he shall set engines of war against thy walls, and with his axes he shall break down thy towers. \nBy reason of the abundance of his horses their dust shall cover thee: thy walls shall shake at the noise of the horsemen, and of the wheels, and of the chariots, when he shall enter into thy gates, as men enter into a city wherein is made a breach. \nWith the hoofs of his horses shall he tread down all thy streets: he shall slay thy people by the sword, and thy strong garrisons shall go down to the ground. \nAnd they shall make a spoil of thy riches, and make a prey of thy merchandise: and they shall break down thy walls, and destroy thy pleasant houses: and they shall lay thy stones and thy timber and thy dust in the midst of the water. \nAnd I will cause the noise of thy songs to cease; and the sound of thy harps shall be no more heard. \nAnd I will make thee like the top of a rock: thou shalt be a place to spread nets upon; thou shalt be built no more: for I the LORD have spoken it, saith the Lord GOD. \nThus saith the Lord GOD to Tyrus; Shall not the isles shake at the sound of thy fall, when the wounded cry, when the slaughter is made in the midst of thee? \nThen all the princes of the sea shall come down from their thrones, and lay away their robes, and put off their broidered garments: they shall clothe themselves with trembling; they shall sit upon the ground, and shall tremble at every moment, and be astonished at thee. \nAnd they shall take up a lamentation for thee, and say to thee, How art thou destroyed, that wast inhabited of seafaring men, the renowned city, which wast strong in the sea, she and her inhabitants, which cause their terror to be on all that haunt it! \nNow shall the isles tremble in the day of thy fall; yea, the isles that are in the sea shall be troubled at thy departure. \nFor thus saith the Lord GOD; When I shall make thee a desolate city, like the cities that are not inhabited; when I shall bring up the deep upon thee, and great waters shall cover thee; \nWhen I shall bring thee down with them that descend into the pit, with the people of old time, and shall set thee in the low parts of the earth, in places desolate of old, with them that go down to the pit, that thou be not inhabited; and I shall set glory in the land of the living; \nI will make thee a terror, and thou shalt be no more: though thou be sought for, yet shalt thou never be found again, saith the Lord GOD. \nThe word of the LORD came again unto me, saying, \nNow, thou son of man, take up a lamentation for Tyrus; \nAnd say unto Tyrus, O thou that art situate at the entry of the sea, which art a merchant of the people for many isles, Thus saith the Lord GOD; O Tyrus, thou hast said, I am of perfect beauty. \nThy borders are in the midst of the seas, thy builders have perfected thy beauty. \nThey have made all thy ship boards of fir trees of Senir: they have taken cedars from Lebanon to make masts for thee. \nOf the oaks of Bashan have they made thine oars; the company of the Ashurites have made thy benches of ivory, brought out of the isles of Chittim. \nFine linen with broidered work from Egypt was that which thou spreadest forth to be thy sail; blue and purple from the isles of Elishah was that which covered thee. \nThe inhabitants of Zidon and Arvad were thy mariners: thy wise men, O Tyrus, that were in thee, were thy pilots. \nThe ancients of Gebal and the wise men thereof were in thee thy calkers: all the ships of the sea with their mariners were in thee to occupy thy merchandise. \nThey of Persia and of Lud and of Phut were in thine army, thy men of war: they hanged the shield and helmet in thee; they set forth thy comeliness. \nThe men of Arvad with thine army were upon thy walls round about, and the Gammadims were in thy towers: they hanged their shields upon thy walls round about; they have made thy beauty perfect. \nTarshish was thy merchant by reason of the multitude of all kind of riches; with silver, iron, tin, and lead, they traded in thy fairs. \nJavan, Tubal, and Meshech, they were thy merchants: they traded the persons of men and vessels of brass in thy market. \nThey of the house of Togarmah traded in thy fairs with horses and horsemen and mules. \nThe men of Dedan were thy merchants; many isles were the merchandise of thine hand: they brought thee for a present horns of ivory and ebony. \nSyria was thy merchant by reason of the multitude of the wares of thy making: they occupied in thy fairs with emeralds, purple, and broidered work, and fine linen, and coral, and agate. \nJudah, and the land of Israel, they were thy merchants: they traded in thy market wheat of Minnith, and Pannag, and honey, and oil, and balm. \nDamascus was thy merchant in the multitude of the wares of thy making, for the multitude of all riches; in the wine of Helbon, and white wool. \nDan also and Javan going to and fro occupied in thy fairs: bright iron, cassia, and calamus, were in thy market. \nDedan was thy merchant in precious clothes for chariots. \nArabia, and all the princes of Kedar, they occupied with thee in lambs, and rams, and goats: in these were they thy merchants. \nThe merchants of Sheba and Raamah, they were thy merchants: they occupied in thy fairs with chief of all spices, and with all precious stones, and gold. \nHaran, and Canneh, and Eden, the merchants of Sheba, Asshur, and Chilmad, were thy merchants. \nThese were thy merchants in all sorts of things, in blue clothes, and broidered work, and in chests of rich apparel, bound with cords, and made of cedar, among thy merchandise. \nThe ships of Tarshish did sing of thee in thy market: and thou wast replenished, and made very glorious in the midst of the seas. \nThy rowers have brought thee into great waters: the east wind hath broken thee in the midst of the seas. \nThy riches, and thy fairs, thy merchandise, thy mariners, and thy pilots, thy calkers, and the occupiers of thy merchandise, and all thy men of war, that are in thee, and in all thy company which is in the midst of thee, shall fall into the midst of the seas in the day of thy ruin. \nThe suburbs shall shake at the sound of the cry of thy pilots. \nAnd all that handle the oar, the mariners, and all the pilots of the sea, shall come down from their ships, they shall stand upon the land; \nAnd shall cause their voice to be heard against thee, and shall cry bitterly, and shall cast up dust upon their heads, they shall wallow themselves in the ashes: \nAnd they shall make themselves utterly bald for thee, and gird them with sackcloth, and they shall weep for thee with bitterness of heart and bitter wailing. \nAnd in their wailing they shall take up a lamentation for thee, and lament over thee, saying, What city is like Tyrus, like the destroyed in the midst of the sea? \nWhen thy wares went forth out of the seas, thou filledst many people; thou didst enrich the kings of the earth with the multitude of thy riches and of thy merchandise. \nIn the time when thou shalt be broken by the seas in the depths of the waters thy merchandise and all thy company in the midst of thee shall fall. \nAll the inhabitants of the isles shall be astonished at thee, and their kings shall be sore afraid, they shall be troubled in their countenance. \nThe merchants among the people shall hiss at thee; thou shalt be a terror, and never shalt be any more. \nThe word of the LORD came again unto me, saying, \nSon of man, say unto the prince of Tyrus, Thus saith the Lord GOD; Because thine heart is lifted up, and thou hast said, I am a God, I sit in the seat of God, in the midst of the seas; yet thou art a man, and not God, though thou set thine heart as the heart of God: \nBehold, thou art wiser than Daniel; there is no secret that they can hide from thee: \nWith thy wisdom and with thine understanding thou hast gotten thee riches, and hast gotten gold and silver into thy treasures: \nBy thy great wisdom and by thy traffick hast thou increased thy riches, and thine heart is lifted up because of thy riches: \nTherefore thus saith the Lord GOD; Because thou hast set thine heart as the heart of God; \nBehold, therefore I will bring strangers upon thee, the terrible of the nations: and they shall draw their swords against the beauty of thy wisdom, and they shall defile thy brightness. \nThey shall bring thee down to the pit, and thou shalt die the deaths of them that are slain in the midst of the seas. \nWilt thou yet say before him that slayeth thee, I am God? but thou shalt be a man, and no God, in the hand of him that slayeth thee. \nThou shalt die the deaths of the uncircumcised by the hand of strangers: for I have spoken it, saith the Lord GOD. \nMoreover the word of the LORD came unto me, saying, \nSon of man, take up a lamentation upon the king of Tyrus, and say unto him, Thus saith the Lord GOD; Thou sealest up the sum, full of wisdom, and perfect in beauty. \nThou hast been in Eden the garden of God; every precious stone was thy covering, the sardius, topaz, and the diamond, the beryl, the onyx, and the jasper, the sapphire, the emerald, and the carbuncle, and gold: the workmanship of thy tabrets and of thy pipes was prepared in thee in the day that thou wast created. \nThou art the anointed cherub that covereth; and I have set thee so: thou wast upon the holy mountain of God; thou hast walked up and down in the midst of the stones of fire. \nThou wast perfect in thy ways from the day that thou wast created, till iniquity was found in thee. \nBy the multitude of thy merchandise they have filled the midst of thee with violence, and thou hast sinned: therefore I will cast thee as profane out of the mountain of God: and I will destroy thee, O covering cherub, from the midst of the stones of fire. \nThine heart was lifted up because of thy beauty, thou hast corrupted thy wisdom by reason of thy brightness: I will cast thee to the ground, I will lay thee before kings, that they may behold thee. \nThou hast defiled thy sanctuaries by the multitude of thine iniquities, by the iniquity of thy traffick; therefore will I bring forth a fire from the midst of thee, it shall devour thee, and I will bring thee to ashes upon the earth in the sight of all them that behold thee. \nAll they that know thee among the people shall be astonished at thee: thou shalt be a terror, and never shalt thou be any more. \nAgain the word of the LORD came unto me, saying, \nSon of man, set thy face against Zidon, and prophesy against it, \nAnd say, Thus saith the Lord GOD; Behold, I am against thee, O Zidon; and I will be glorified in the midst of thee: and they shall know that I am the LORD, when I shall have executed judgments in her, and shall be sanctified in her. \nFor I will send into her pestilence, and blood into her streets; and the wounded shall be judged in the midst of her by the sword upon her on every side; and they shall know that I am the LORD. \nAnd there shall be no more a pricking brier unto the house of Israel, nor any grieving thorn of all that are round about them, that despised them; and they shall know that I am the Lord GOD. \nThus saith the Lord GOD; When I shall have gathered the house of Israel from the people among whom they are scattered, and shall be sanctified in them in the sight of the heathen, then shall they dwell in their land that I have given to my servant Jacob. \nAnd they shall dwell safely therein, and shall build houses, and plant vineyards; yea, they shall dwell with confidence, when I have executed judgments upon all those that despise them round about them; and they shall know that I am the LORD their God. \nIn the tenth year, in the tenth month, in the twelfth day of the month, the word of the LORD came unto me, saying, \nSon of man, set thy face against Pharaoh king of Egypt, and prophesy against him, and against all Egypt: \nSpeak, and say, Thus saith the Lord GOD; Behold, I am against thee, Pharaoh king of Egypt, the great dragon that lieth in the midst of his rivers, which hath said, My river is mine own, and I have made it for myself. \nBut I will put hooks in thy jaws, and I will cause the fish of thy rivers to stick unto thy scales, and I will bring thee up out of the midst of thy rivers, and all the fish of thy rivers shall stick unto thy scales. \nAnd I will leave thee thrown into the wilderness, thee and all the fish of thy rivers: thou shalt fall upon the open fields; thou shalt not be brought together, nor gathered: I have given thee for meat to the beasts of the field and to the fowls of the heaven. \nAnd all the inhabitants of Egypt shall know that I am the LORD, because they have been a staff of reed to the house of Israel. \nWhen they took hold of thee by thy hand, thou didst break, and rend all their shoulder: and when they leaned upon thee, thou brakest, and madest all their loins to be at a stand. \nTherefore thus saith the Lord GOD; Behold, I will bring a sword upon thee, and cut off man and beast out of thee. \nAnd the land of Egypt shall be desolate and waste; and they shall know that I am the LORD: because he hath said, The river is mine, and I have made it. \nBehold, therefore I am against thee, and against thy rivers, and I will make the land of Egypt utterly waste and desolate, from the tower of Syene even unto the border of Ethiopia. \nNo foot of man shall pass through it, nor foot of beast shall pass through it, neither shall it be inhabited forty years. \nAnd I will make the land of Egypt desolate in the midst of the countries that are desolate, and her cities among the cities that are laid waste shall be desolate forty years: and I will scatter the Egyptians among the nations, and will disperse them through the countries. \nYet thus saith the Lord GOD; At the end of forty years will I gather the Egyptians from the people whither they were scattered: \nAnd I will bring again the captivity of Egypt, and will cause them to return into the land of Pathros, into the land of their habitation; and they shall be there a base kingdom. \nIt shall be the basest of the kingdoms; neither shall it exalt itself any more above the nations: for I will diminish them, that they shall no more rule over the nations. \nAnd it shall be no more the confidence of the house of Israel, which bringeth their iniquity to remembrance, when they shall look after them: but they shall know that I am the Lord GOD. \nAnd it came to pass in the seven and twentieth year, in the first month, in the first day of the month, the word of the LORD came unto me, saying, \nSon of man, Nebuchadrezzar king of Babylon caused his army to serve a great service against Tyrus: every head was made bald, and every shoulder was peeled: yet had he no wages, nor his army, for Tyrus, for the service that he had served against it: \nTherefore thus saith the Lord GOD; Behold, I will give the land of Egypt unto Nebuchadrezzar king of Babylon; and he shall take her multitude, and take her spoil, and take her prey; and it shall be the wages for his army. \nI have given him the land of Egypt for his labour wherewith he served against it, because they wrought for me, saith the Lord GOD. \nIn that day will I cause the horn of the house of Israel to bud forth, and I will give thee the opening of the mouth in the midst of them; and they shall know that I am the LORD. \nThe word of the LORD came again unto me, saying, \nSon of man, prophesy and say, Thus saith the Lord GOD; Howl ye, Woe worth the day! \nFor the day is near, even the day of the LORD is near, a cloudy day; it shall be the time of the heathen. \nAnd the sword shall come upon Egypt, and great pain shall be in Ethiopia, when the slain shall fall in Egypt, and they shall take away her multitude, and her foundations shall be broken down. \nEthiopia, and Libya, and Lydia, and all the mingled people, and Chub, and the men of the land that is in league, shall fall with them by the sword. \nThus saith the LORD; They also that uphold Egypt shall fall; and the pride of her power shall come down: from the tower of Syene shall they fall in it by the sword, saith the Lord GOD. \nAnd they shall be desolate in the midst of the countries that are desolate, and her cities shall be in the midst of the cities that are wasted. \nAnd they shall know that I am the LORD, when I have set a fire in Egypt, and when all her helpers shall be destroyed. \nIn that day shall messengers go forth from me in ships to make the careless Ethiopians afraid, and great pain shall come upon them, as in the day of Egypt: for, lo, it cometh. \nThus saith the Lord GOD; I will also make the multitude of Egypt to cease by the hand of Nebuchadrezzar king of Babylon. \nHe and his people with him, the terrible of the nations, shall be brought to destroy the land: and they shall draw their swords against Egypt, and fill the land with the slain. \nAnd I will make the rivers dry, and sell the land into the hand of the wicked: and I will make the land waste, and all that is therein, by the hand of strangers: I the LORD have spoken it. \nThus saith the Lord GOD; I will also destroy the idols, and I will cause their images to cease out of Noph; and there shall be no more a prince of the land of Egypt: and I will put a fear in the land of Egypt. \nAnd I will make Pathros desolate, and will set fire in Zoan, and will execute judgments in No. \nAnd I will pour my fury upon Sin, the strength of Egypt; and I will cut off the multitude of No. \nAnd I will set fire in Egypt: Sin shall have great pain, and No shall be rent asunder, and Noph shall have distresses daily. \nThe young men of Aven and of Pibeseth shall fall by the sword: and these cities shall go into captivity. \nAt Tehaphnehes also the day shall be darkened, when I shall break there the yokes of Egypt: and the pomp of her strength shall cease in her: as for her, a cloud shall cover her, and her daughters shall go into captivity. \nThus will I execute judgments in Egypt: and they shall know that I am the LORD. \nAnd it came to pass in the eleventh year, in the first month, in the seventh day of the month, that the word of the LORD came unto me, saying, \nSon of man, I have broken the arm of Pharaoh king of Egypt; and, lo, it shall not be bound up to be healed, to put a roller to bind it, to make it strong to hold the sword. \nTherefore thus saith the Lord GOD; Behold, I am against Pharaoh king of Egypt, and will break his arms, the strong, and that which was broken; and I will cause the sword to fall out of his hand. \nAnd I will scatter the Egyptians among the nations, and will disperse them through the countries. \nAnd I will strengthen the arms of the king of Babylon, and put my sword in his hand: but I will break Pharaoh's arms, and he shall groan before him with the groanings of a deadly wounded man. \nBut I will strengthen the arms of the king of Babylon, and the arms of Pharaoh shall fall down; and they shall know that I am the LORD, when I shall put my sword into the hand of the king of Babylon, and he shall stretch it out upon the land of Egypt. \nAnd I will scatter the Egyptians among the nations, and disperse them among the countries; and they shall know that I am the LORD. \nAnd it came to pass in the eleventh year, in the third month, in the first day of the month, that the word of the LORD came unto me, saying, \nSon of man, speak unto Pharaoh king of Egypt, and to his multitude; Whom art thou like in thy greatness? \nBehold, the Assyrian was a cedar in Lebanon with fair branches, and with a shadowing shroud, and of an high stature; and his top was among the thick boughs. \nThe waters made him great, the deep set him up on high with her rivers running round about his plants, and sent her little rivers unto all the trees of the field. \nTherefore his height was exalted above all the trees of the field, and his boughs were multiplied, and his branches became long because of the multitude of waters, when he shot forth. \nAll the fowls of heaven made their nests in his boughs, and under his branches did all the beasts of the field bring forth their young, and under his shadow dwelt all great nations. \nThus was he fair in his greatness, in the length of his branches: for his root was by great waters. \nThe cedars in the garden of God could not hide him: the fir trees were not like his boughs, and the chestnut trees were not like his branches; nor any tree in the garden of God was like unto him in his beauty. \nI have made him fair by the multitude of his branches: so that all the trees of Eden, that were in the garden of God, envied him. \nTherefore thus saith the Lord GOD; Because thou hast lifted up thyself in height, and he hath shot up his top among the thick boughs, and his heart is lifted up in his height; \nI have therefore delivered him into the hand of the mighty one of the heathen; he shall surely deal with him: I have driven him out for his wickedness. \nAnd strangers, the terrible of the nations, have cut him off, and have left him: upon the mountains and in all the valleys his branches are fallen, and his boughs are broken by all the rivers of the land; and all the people of the earth are gone down from his shadow, and have left him. \nUpon his ruin shall all the fowls of the heaven remain, and all the beasts of the field shall be upon his branches: \nTo the end that none of all the trees by the waters exalt themselves for their height, neither shoot up their top among the thick boughs, neither their trees stand up in their height, all that drink water: for they are all delivered unto death, to the nether parts of the earth, in the midst of the children of men, with them that go down to the pit. \nThus saith the Lord GOD; In the day when he went down to the grave I caused a mourning: I covered the deep for him, and I restrained the floods thereof, and the great waters were stayed: and I caused Lebanon to mourn for him, and all the trees of the field fainted for him. \nI made the nations to shake at the sound of his fall, when I cast him down to hell with them that descend into the pit: and all the trees of Eden, the choice and best of Lebanon, all that drink water, shall be comforted in the nether parts of the earth. \nThey also went down into hell with him unto them that be slain with the sword; and they that were his arm, that dwelt under his shadow in the midst of the heathen. \nTo whom art thou thus like in glory and in greatness among the trees of Eden? yet shalt thou be brought down with the trees of Eden unto the nether parts of the earth: thou shalt lie in the midst of the uncircumcised with them that be slain by the sword. This is Pharaoh and all his multitude, saith the Lord GOD. \nAnd it came to pass in the twelfth year, in the twelfth month, in the first day of the month, that the word of the LORD came unto me, saying, \nSon of man, take up a lamentation for Pharaoh king of Egypt, and say unto him, Thou art like a young lion of the nations, and thou art as a whale in the seas: and thou camest forth with thy rivers, and troubledst the waters with thy feet, and fouledst their rivers. \nThus saith the Lord GOD; I will therefore spread out my net over thee with a company of many people; and they shall bring thee up in my net. \nThen will I leave thee upon the land, I will cast thee forth upon the open field, and will cause all the fowls of the heaven to remain upon thee, and I will fill the beasts of the whole earth with thee. \nAnd I will lay thy flesh upon the mountains, and fill the valleys with thy height. \nI will also water with thy blood the land wherein thou swimmest, even to the mountains; and the rivers shall be full of thee. \nAnd when I shall put thee out, I will cover the heaven, and make the stars thereof dark; I will cover the sun with a cloud, and the moon shall not give her light. \nAll the bright lights of heaven will I make dark over thee, and set darkness upon thy land, saith the Lord GOD. \nI will also vex the hearts of many people, when I shall bring thy destruction among the nations, into the countries which thou hast not known. \nYea, I will make many people amazed at thee, and their kings shall be horribly afraid for thee, when I shall brandish my sword before them; and they shall tremble at every moment, every man for his own life, in the day of thy fall. \nFor thus saith the Lord GOD; The sword of the king of Babylon shall come upon thee. \nBy the swords of the mighty will I cause thy multitude to fall, the terrible of the nations, all of them: and they shall spoil the pomp of Egypt, and all the multitude thereof shall be destroyed. \nI will destroy also all the beasts thereof from beside the great waters; neither shall the foot of man trouble them any more, nor the hoofs of beasts trouble them. \nThen will I make their waters deep, and cause their rivers to run like oil, saith the Lord GOD. \nWhen I shall make the land of Egypt desolate, and the country shall be destitute of that whereof it was full, when I shall smite all them that dwell therein, then shall they know that I am the LORD. \nThis is the lamentation wherewith they shall lament her: the daughters of the nations shall lament her: they shall lament for her, even for Egypt, and for all her multitude, saith the Lord GOD. \nIt came to pass also in the twelfth year, in the fifteenth day of the month, that the word of the LORD came unto me, saying, \nSon of man, wail for the multitude of Egypt, and cast them down, even her, and the daughters of the famous nations, unto the nether parts of the earth, with them that go down into the pit. \nWhom dost thou pass in beauty? go down, and be thou laid with the uncircumcised. \nThey shall fall in the midst of them that are slain by the sword: she is delivered to the sword: draw her and all her multitudes. \nThe strong among the mighty shall speak to him out of the midst of hell with them that help him: they are gone down, they lie uncircumcised, slain by the sword. \nAsshur is there and all her company: his graves are about him: all of them slain, fallen by the sword: \nWhose graves are set in the sides of the pit, and her company is round about her grave: all of them slain, fallen by the sword, which caused terror in the land of the living. \nThere is Elam and all her multitude round about her grave, all of them slain, fallen by the sword, which are gone down uncircumcised into the nether parts of the earth, which caused their terror in the land of the living; yet have they borne their shame with them that go down to the pit. \nThey have set her a bed in the midst of the slain with all her multitude: her graves are round about him: all of them uncircumcised, slain by the sword: though their terror was caused in the land of the living, yet have they borne their shame with them that go down to the pit: he is put in the midst of them that be slain. \nThere is Meshech, Tubal, and all her multitude: her graves are round about him: all of them uncircumcised, slain by the sword, though they caused their terror in the land of the living. \nAnd they shall not lie with the mighty that are fallen of the uncircumcised, which are gone down to hell with their weapons of war: and they have laid their swords under their heads, but their iniquities shall be upon their bones, though they were the terror of the mighty in the land of the living. \nYea, thou shalt be broken in the midst of the uncircumcised, and shalt lie with them that are slain with the sword. \nThere is Edom, her kings, and all her princes, which with their might are laid by them that were slain by the sword: they shall lie with the uncircumcised, and with them that go down to the pit. \nThere be the princes of the north, all of them, and all the Zidonians, which are gone down with the slain; with their terror they are ashamed of their might; and they lie uncircumcised with them that be slain by the sword, and bear their shame with them that go down to the pit. \nPharaoh shall see them, and shall be comforted over all his multitude, even Pharaoh and all his army slain by the sword, saith the Lord GOD. \nFor I have caused my terror in the land of the living: and he shall be laid in the midst of the uncircumcised with them that are slain with the sword, even Pharaoh and all his multitude, saith the Lord GOD. \nAgain the word of the LORD came unto me, saying, \nSon of man, speak to the children of thy people, and say unto them, When I bring the sword upon a land, if the people of the land take a man of their coasts, and set him for their watchman: \nIf when he seeth the sword come upon the land, he blow the trumpet, and warn the people; \nThen whosoever heareth the sound of the trumpet, and taketh not warning; if the sword come, and take him away, his blood shall be upon his own head. \nHe heard the sound of the trumpet, and took not warning; his blood shall be upon him. But he that taketh warning shall deliver his soul. \nBut if the watchman see the sword come, and blow not the trumpet, and the people be not warned; if the sword come, and take any person from among them, he is taken away in his iniquity; but his blood will I require at the watchman's hand. \nSo thou, O son of man, I have set thee a watchman unto the house of Israel; therefore thou shalt hear the word at my mouth, and warn them from me. \nWhen I say unto the wicked, O wicked man, thou shalt surely die; if thou dost not speak to warn the wicked from his way, that wicked man shall die in his iniquity; but his blood will I require at thine hand. \nNevertheless, if thou warn the wicked of his way to turn from it; if he do not turn from his way, he shall die in his iniquity; but thou hast delivered thy soul. \nTherefore, O thou son of man, speak unto the house of Israel; Thus ye speak, saying, If our transgressions and our sins be upon us, and we pine away in them, how should we then live? \nSay unto them, As I live, saith the Lord GOD, I have no pleasure in the death of the wicked; but that the wicked turn from his way and live: turn ye, turn ye from your evil ways; for why will ye die, O house of Israel? \nTherefore, thou son of man, say unto the children of thy people, The righteousness of the righteous shall not deliver him in the day of his transgression: as for the wickedness of the wicked, he shall not fall thereby in the day that he turneth from his wickedness; neither shall the righteous be able to live for his righteousness in the day that he sinneth. \nWhen I shall say to the righteous, that he shall surely live; if he trust to his own righteousness, and commit iniquity, all his righteousnesses shall not be remembered; but for his iniquity that he hath committed, he shall die for it. \nAgain, when I say unto the wicked, Thou shalt surely die; if he turn from his sin, and do that which is lawful and right; \nIf the wicked restore the pledge, give again that he had robbed, walk in the statutes of life, without committing iniquity; he shall surely live, he shall not die. \nNone of his sins that he hath committed shall be mentioned unto him: he hath done that which is lawful and right; he shall surely live. \nYet the children of thy people say, The way of the Lord is not equal: but as for them, their way is not equal. \nWhen the righteous turneth from his righteousness, and committeth iniquity, he shall even die thereby. \nBut if the wicked turn from his wickedness, and do that which is lawful and right, he shall live thereby. \nYet ye say, The way of the Lord is not equal. O ye house of Israel, I will judge you every one after his ways. \nAnd it came to pass in the twelfth year of our captivity, in the tenth month, in the fifth day of the month, that one that had escaped out of Jerusalem came unto me, saying, The city is smitten. \nNow the hand of the LORD was upon me in the evening, afore he that was escaped came; and had opened my mouth, until he came to me in the morning; and my mouth was opened, and I was no more dumb. \nThen the word of the LORD came unto me, saying, \nSon of man, they that inhabit those wastes of the land of Israel speak, saying, Abraham was one, and he inherited the land: but we are many; the land is given us for inheritance. \nWherefore say unto them, Thus saith the Lord GOD; Ye eat with the blood, and lift up your eyes toward your idols, and shed blood: and shall ye possess the land? \nYe stand upon your sword, ye work abomination, and ye defile every one his neighbour's wife: and shall ye possess the land? \nSay thou thus unto them, Thus saith the Lord GOD; As I live, surely they that are in the wastes shall fall by the sword, and him that is in the open field will I give to the beasts to be devoured, and they that be in the forts and in the caves shall die of the pestilence. \nFor I will lay the land most desolate, and the pomp of her strength shall cease; and the mountains of Israel shall be desolate, that none shall pass through. \nThen shall they know that I am the LORD, when I have laid the land most desolate because of all their abominations which they have committed. \nAlso, thou son of man, the children of thy people still are talking against thee by the walls and in the doors of the houses, and speak one to another, every one to his brother, saying, Come, I pray you, and hear what is the word that cometh forth from the LORD. \nAnd they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but they will not do them: for with their mouth they shew much love, but their heart goeth after their covetousness. \nAnd, lo, thou art unto them as a very lovely song of one that hath a pleasant voice, and can play well on an instrument: for they hear thy words, but they do them not. \nAnd when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them. \nAnd the word of the LORD came unto me, saying, \nSon of man, prophesy against the shepherds of Israel, prophesy, and say unto them, Thus saith the Lord GOD unto the shepherds; Woe be to the shepherds of Israel that do feed themselves! should not the shepherds feed the flocks? \nYe eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock. \nThe diseased have ye not strengthened, neither have ye healed that which was sick, neither have ye bound up that which was broken, neither have ye brought again that which was driven away, neither have ye sought that which was lost; but with force and with cruelty have ye ruled them. \nAnd they were scattered, because there is no shepherd: and they became meat to all the beasts of the field, when they were scattered. \nMy sheep wandered through all the mountains, and upon every high hill: yea, my flock was scattered upon all the face of the earth, and none did search or seek after them. \nTherefore, ye shepherds, hear the word of the LORD; \nAs I live, saith the Lord GOD, surely because my flock became a prey, and my flock became meat to every beast of the field, because there was no shepherd, neither did my shepherds search for my flock, but the shepherds fed themselves, and fed not my flock; \nTherefore, O ye shepherds, hear the word of the LORD; \nThus saith the Lord GOD; Behold, I am against the shepherds; and I will require my flock at their hand, and cause them to cease from feeding the flock; neither shall the shepherds feed themselves any more; for I will deliver my flock from their mouth, that they may not be meat for them. \nFor thus saith the Lord GOD; Behold, I, even I, will both search my sheep, and seek them out. \nAs a shepherd seeketh out his flock in the day that he is among his sheep that are scattered; so will I seek out my sheep, and will deliver them out of all places where they have been scattered in the cloudy and dark day. \nAnd I will bring them out from the people, and gather them from the countries, and will bring them to their own land, and feed them upon the mountains of Israel by the rivers, and in all the inhabited places of the country. \nI will feed them in a good pasture, and upon the high mountains of Israel shall their fold be: there shall they lie in a good fold, and in a fat pasture shall they feed upon the mountains of Israel. \nI will feed my flock, and I will cause them to lie down, saith the Lord GOD. \nI will seek that which was lost, and bring again that which was driven away, and will bind up that which was broken, and will strengthen that which was sick: but I will destroy the fat and the strong; I will feed them with judgment. \nAnd as for you, O my flock, thus saith the Lord GOD; Behold, I judge between cattle and cattle, between the rams and the he goats. \nSeemeth it a small thing unto you to have eaten up the good pasture, but ye must tread down with your feet the residue of your pastures? and to have drunk of the deep waters, but ye must foul the residue with your feet? \nAnd as for my flock, they eat that which ye have trodden with your feet; and they drink that which ye have fouled with your feet. \nTherefore thus saith the Lord GOD unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle. \nBecause ye have thrust with side and with shoulder, and pushed all the diseased with your horns, till ye have scattered them abroad; \nTherefore will I save my flock, and they shall no more be a prey; and I will judge between cattle and cattle. \nAnd I will set up one shepherd over them, and he shall feed them, even my servant David; he shall feed them, and he shall be their shepherd. \nAnd I the LORD will be their God, and my servant David a prince among them; I the LORD have spoken it. \nAnd I will make with them a covenant of peace, and will cause the evil beasts to cease out of the land: and they shall dwell safely in the wilderness, and sleep in the woods. \nAnd I will make them and the places round about my hill a blessing; and I will cause the shower to come down in his season; there shall be showers of blessing. \nAnd the tree of the field shall yield her fruit, and the earth shall yield her increase, and they shall be safe in their land, and shall know that I am the LORD, when I have broken the bands of their yoke, and delivered them out of the hand of those that served themselves of them. \nAnd they shall no more be a prey to the heathen, neither shall the beast of the land devour them; but they shall dwell safely, and none shall make them afraid. \nAnd I will raise up for them a plant of renown, and they shall be no more consumed with hunger in the land, neither bear the shame of the heathen any more. \nThus shall they know that I the LORD their God am with them, and that they, even the house of Israel, are my people, saith the Lord GOD. \nAnd ye my flock, the flock of my pasture, are men, and I am your God, saith the Lord GOD. \nMoreover the word of the LORD came unto me, saying, \nSon of man, set thy face against mount Seir, and prophesy against it, \nAnd say unto it, Thus saith the Lord GOD; Behold, O mount Seir, I am against thee, and I will stretch out mine hand against thee, and I will make thee most desolate. \nI will lay thy cities waste, and thou shalt be desolate, and thou shalt know that I am the LORD. \nBecause thou hast had a perpetual hatred, and hast shed the blood of the children of Israel by the force of the sword in the time of their calamity, in the time that their iniquity had an end: \nTherefore, as I live, saith the Lord GOD, I will prepare thee unto blood, and blood shall pursue thee: sith thou hast not hated blood, even blood shall pursue thee. \nThus will I make mount Seir most desolate, and cut off from it him that passeth out and him that returneth. \nAnd I will fill his mountains with his slain men: in thy hills, and in thy valleys, and in all thy rivers, shall they fall that are slain with the sword. \nI will make thee perpetual desolations, and thy cities shall not return: and ye shall know that I am the LORD. \nBecause thou hast said, These two nations and these two countries shall be mine, and we will possess it; whereas the LORD was there: \nTherefore, as I live, saith the Lord GOD, I will even do according to thine anger, and according to thine envy which thou hast used out of thy hatred against them; and I will make myself known among them, when I have judged thee. \nAnd thou shalt know that I am the LORD, and that I have heard all thy blasphemies which thou hast spoken against the mountains of Israel, saying, They are laid desolate, they are given us to consume. \nThus with your mouth ye have boasted against me, and have multiplied your words against me: I have heard them. \nThus saith the Lord GOD; When the whole earth rejoiceth, I will make thee desolate. \nAs thou didst rejoice at the inheritance of the house of Israel, because it was desolate, so will I do unto thee: thou shalt be desolate, O mount Seir, and all Idumea, even all of it: and they shall know that I am the LORD. \nAlso, thou son of man, prophesy unto the mountains of Israel, and say, Ye mountains of Israel, hear the word of the LORD: \nThus saith the Lord GOD; Because the enemy hath said against you, Aha, even the ancient high places are ours in possession: \nTherefore prophesy and say, Thus saith the Lord GOD; Because they have made you desolate, and swallowed you up on every side, that ye might be a possession unto the residue of the heathen, and ye are taken up in the lips of talkers, and are an infamy of the people: \nTherefore, ye mountains of Israel, hear the word of the Lord GOD; Thus saith the Lord GOD to the mountains, and to the hills, to the rivers, and to the valleys, to the desolate wastes, and to the cities that are forsaken, which became a prey and derision to the residue of the heathen that are round about; \nTherefore thus saith the Lord GOD; Surely in the fire of my jealousy have I spoken against the residue of the heathen, and against all Idumea, which have appointed my land into their possession with the joy of all their heart, with despiteful minds, to cast it out for a prey. \nProphesy therefore concerning the land of Israel, and say unto the mountains, and to the hills, to the rivers, and to the valleys, Thus saith the Lord GOD; Behold, I have spoken in my jealousy and in my fury, because ye have borne the shame of the heathen: \nTherefore thus saith the Lord GOD; I have lifted up mine hand, Surely the heathen that are about you, they shall bear their shame. \nBut ye, O mountains of Israel, ye shall shoot forth your branches, and yield your fruit to my people of Israel; for they are at hand to come. \nFor, behold, I am for you, and I will turn unto you, and ye shall be tilled and sown: \nAnd I will multiply men upon you, all the house of Israel, even all of it: and the cities shall be inhabited, and the wastes shall be builded: \nAnd I will multiply upon you man and beast; and they shall increase and bring fruit: and I will settle you after your old estates, and will do better unto you than at your beginnings: and ye shall know that I am the LORD. \nYea, I will cause men to walk upon you, even my people Israel; and they shall possess thee, and thou shalt be their inheritance, and thou shalt no more henceforth bereave them of men. \nThus saith the Lord GOD; Because they say unto you, Thou land devourest up men, and hast bereaved thy nations: \nTherefore thou shalt devour men no more, neither bereave thy nations any more, saith the Lord GOD. \nNeither will I cause men to hear in thee the shame of the heathen any more, neither shalt thou bear the reproach of the people any more, neither shalt thou cause thy nations to fall any more, saith the Lord GOD. \nMoreover the word of the LORD came unto me, saying, \nSon of man, when the house of Israel dwelt in their own land, they defiled it by their own way and by their doings: their way was before me as the uncleanness of a removed woman. \nWherefore I poured my fury upon them for the blood that they had shed upon the land, and for their idols wherewith they had polluted it: \nAnd I scattered them among the heathen, and they were dispersed through the countries: according to their way and according to their doings I judged them. \nAnd when they entered unto the heathen, whither they went, they profaned my holy name, when they said to them, These are the people of the LORD, and are gone forth out of his land. \nBut I had pity for mine holy name, which the house of Israel had profaned among the heathen, whither they went. \nTherefore say unto the house of Israel, thus saith the Lord GOD; I do not this for your sakes, O house of Israel, but for mine holy name's sake, which ye have profaned among the heathen, whither ye went. \nAnd I will sanctify my great name, which was profaned among the heathen, which ye have profaned in the midst of them; and the heathen shall know that I am the LORD, saith the Lord GOD, when I shall be sanctified in you before their eyes. \nFor I will take you from among the heathen, and gather you out of all countries, and will bring you into your own land. \nThen will I sprinkle clean water upon you, and ye shall be clean: from all your filthiness, and from all your idols, will I cleanse you. \nA new heart also will I give you, and a new spirit will I put within you: and I will take away the stony heart out of your flesh, and I will give you an heart of flesh. \nAnd I will put my spirit within you, and cause you to walk in my statutes, and ye shall keep my judgments, and do them. \nAnd ye shall dwell in the land that I gave to your fathers; and ye shall be my people, and I will be your God. \nI will also save you from all your uncleannesses: and I will call for the corn, and will increase it, and lay no famine upon you. \nAnd I will multiply the fruit of the tree, and the increase of the field, that ye shall receive no more reproach of famine among the heathen. \nThen shall ye remember your own evil ways, and your doings that were not good, and shall lothe yourselves in your own sight for your iniquities and for your abominations. \nNot for your sakes do I this, saith the Lord GOD, be it known unto you: be ashamed and confounded for your own ways, O house of Israel. \nThus saith the Lord GOD; In the day that I shall have cleansed you from all your iniquities I will also cause you to dwell in the cities, and the wastes shall be builded. \nAnd the desolate land shall be tilled, whereas it lay desolate in the sight of all that passed by. \nAnd they shall say, This land that was desolate is become like the garden of Eden; and the waste and desolate and ruined cities are become fenced, and are inhabited. \nThen the heathen that are left round about you shall know that I the LORD build the ruined places, and plant that that was desolate: I the LORD have spoken it, and I will do it. \nThus saith the Lord GOD; I will yet for this be enquired of by the house of Israel, to do it for them; I will increase them with men like a flock. \nAs the holy flock, as the flock of Jerusalem in her solemn feasts; so shall the waste cities be filled with flocks of men: and they shall know that I am the LORD. \nThe hand of the LORD was upon me, and carried me out in the spirit of the LORD, and set me down in the midst of the valley which was full of bones, \nAnd caused me to pass by them round about: and, behold, there were very many in the open valley; and, lo, they were very dry. \nAnd he said unto me, Son of man, can these bones live? And I answered, O Lord GOD, thou knowest. \nAgain he said unto me, Prophesy upon these bones, and say unto them, O ye dry bones, hear the word of the LORD. \nThus saith the Lord GOD unto these bones; Behold, I will cause breath to enter into you, and ye shall live: \nAnd I will lay sinews upon you, and will bring up flesh upon you, and cover you with skin, and put breath in you, and ye shall live; and ye shall know that I am the LORD. \nSo I prophesied as I was commanded: and as I prophesied, there was a noise, and behold a shaking, and the bones came together, bone to his bone. \nAnd when I beheld, lo, the sinews and the flesh came up upon them, and the skin covered them above: but there was no breath in them. \nThen said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord GOD; Come from the four winds, O breath, and breathe upon these slain, that they may live. \nSo I prophesied as he commanded me, and the breath came into them, and they lived, and stood up upon their feet, an exceeding great army. \nThen he said unto me, Son of man, these bones are the whole house of Israel: behold, they say, Our bones are dried, and our hope is lost: we are cut off for our parts. \nTherefore prophesy and say unto them, Thus saith the Lord GOD; Behold, O my people, I will open your graves, and cause you to come up out of your graves, and bring you into the land of Israel. \nAnd ye shall know that I am the LORD, when I have opened your graves, O my people, and brought you up out of your graves, \nAnd shall put my spirit in you, and ye shall live, and I shall place you in your own land: then shall ye know that I the LORD have spoken it, and performed it, saith the LORD. \nThe word of the LORD came again unto me, saying, \nMoreover, thou son of man, take thee one stick, and write upon it, For Judah, and for the children of Israel his companions: then take another stick, and write upon it, For Joseph, the stick of Ephraim and for all the house of Israel his companions: \nAnd join them one to another into one stick; and they shall become one in thine hand. \nAnd when the children of thy people shall speak unto thee, saying, Wilt thou not shew us what thou meanest by these? \nSay unto them, Thus saith the Lord GOD; Behold, I will take the stick of Joseph, which is in the hand of Ephraim, and the tribes of Israel his fellows, and will put them with him, even with the stick of Judah, and make them one stick, and they shall be one in mine hand. \nAnd the sticks whereon thou writest shall be in thine hand before their eyes. \nAnd say unto them, Thus saith the Lord GOD; Behold, I will take the children of Israel from among the heathen, whither they be gone, and will gather them on every side, and bring them into their own land: \nAnd I will make them one nation in the land upon the mountains of Israel; and one king shall be king to them all: and they shall be no more two nations, neither shall they be divided into two kingdoms any more at all. \nNeither shall they defile themselves any more with their idols, nor with their detestable things, nor with any of their transgressions: but I will save them out of all their dwellingplaces, wherein they have sinned, and will cleanse them: so shall they be my people, and I will be their God. \nAnd David my servant shall be king over them; and they all shall have one shepherd: they shall also walk in my judgments, and observe my statutes, and do them. \nAnd they shall dwell in the land that I have given unto Jacob my servant, wherein your fathers have dwelt; and they shall dwell therein, even they, and their children, and their children's children for ever: and my servant David shall be their prince for ever. \nMoreover I will make a covenant of peace with them; it shall be an everlasting covenant with them: and I will place them, and multiply them, and will set my sanctuary in the midst of them for evermore. \nMy tabernacle also shall be with them: yea, I will be their God, and they shall be my people. \nAnd the heathen shall know that I the LORD do sanctify Israel, when my sanctuary shall be in the midst of them for evermore. \nAnd the word of the LORD came unto me, saying, \nSon of man, set thy face against Gog, the land of Magog, the chief prince of Meshech and Tubal, and prophesy against him, \nAnd say, Thus saith the Lord GOD; Behold, I am against thee, O Gog, the chief prince of Meshech and Tubal: \nAnd I will turn thee back, and put hooks into thy jaws, and I will bring thee forth, and all thine army, horses and horsemen, all of them clothed with all sorts of armour, even a great company with bucklers and shields, all of them handling swords: \nPersia, Ethiopia, and Libya with them; all of them with shield and helmet: \nGomer, and all his bands; the house of Togarmah of the north quarters, and all his bands: and many people with thee. \nBe thou prepared, and prepare for thyself, thou, and all thy company that are assembled unto thee, and be thou a guard unto them. \nAfter many days thou shalt be visited: in the latter years thou shalt come into the land that is brought back from the sword, and is gathered out of many people, against the mountains of Israel, which have been always waste: but it is brought forth out of the nations, and they shall dwell safely all of them. \nThou shalt ascend and come like a storm, thou shalt be like a cloud to cover the land, thou, and all thy bands, and many people with thee. \nThus saith the Lord GOD; It shall also come to pass, that at the same time shall things come into thy mind, and thou shalt think an evil thought: \nAnd thou shalt say, I will go up to the land of unwalled villages; I will go to them that are at rest, that dwell safely, all of them dwelling without walls, and having neither bars nor gates, \nTo take a spoil, and to take a prey; to turn thine hand upon the desolate places that are now inhabited, and upon the people that are gathered out of the nations, which have gotten cattle and goods, that dwell in the midst of the land. \nSheba, and Dedan, and the merchants of Tarshish, with all the young lions thereof, shall say unto thee, Art thou come to take a spoil? hast thou gathered thy company to take a prey? to carry away silver and gold, to take away cattle and goods, to take a great spoil? \nTherefore, son of man, prophesy and say unto Gog, Thus saith the Lord GOD; In that day when my people of Israel dwelleth safely, shalt thou not know it? \nAnd thou shalt come from thy place out of the north parts, thou, and many people with thee, all of them riding upon horses, a great company, and a mighty army: \nAnd thou shalt come up against my people of Israel, as a cloud to cover the land; it shall be in the latter days, and I will bring thee against my land, that the heathen may know me, when I shall be sanctified in thee, O Gog, before their eyes. \nThus saith the Lord GOD; Art thou he of whom I have spoken in old time by my servants the prophets of Israel, which prophesied in those days many years that I would bring thee against them? \nAnd it shall come to pass at the same time when Gog shall come against the land of Israel, saith the Lord GOD, that my fury shall come up in my face. \nFor in my jealousy and in the fire of my wrath have I spoken, Surely in that day there shall be a great shaking in the land of Israel; \nSo that the fishes of the sea, and the fowls of the heaven, and the beasts of the field, and all creeping things that creep upon the earth, and all the men that are upon the face of the earth, shall shake at my presence, and the mountains shall be thrown down, and the steep places shall fall, and every wall shall fall to the ground. \nAnd I will call for a sword against him throughout all my mountains, saith the Lord GOD: every man's sword shall be against his brother. \nAnd I will plead against him with pestilence and with blood; and I will rain upon him, and upon his bands, and upon the many people that are with him, an overflowing rain, and great hailstones, fire, and brimstone. \nThus will I magnify myself, and sanctify myself; and I will be known in the eyes of many nations, and they shall know that I am the LORD. \nTherefore, thou son of man, prophesy against Gog, and say, Thus saith the Lord GOD; Behold, I am against thee, O Gog, the chief prince of Meshech and Tubal: \nAnd I will turn thee back, and leave but the sixth part of thee, and will cause thee to come up from the north parts, and will bring thee upon the mountains of Israel: \nAnd I will smite thy bow out of thy left hand, and will cause thine arrows to fall out of thy right hand. \nThou shalt fall upon the mountains of Israel, thou, and all thy bands, and the people that is with thee: I will give thee unto the ravenous birds of every sort, and to the beasts of the field to be devoured. \nThou shalt fall upon the open field: for I have spoken it, saith the Lord GOD. \nAnd I will send a fire on Magog, and among them that dwell carelessly in the isles: and they shall know that I am the LORD. \nSo will I make my holy name known in the midst of my people Israel; and I will not let them pollute my holy name any more: and the heathen shall know that I am the LORD, the Holy One in Israel. \nBehold, it is come, and it is done, saith the Lord GOD; this is the day whereof I have spoken. \nAnd they that dwell in the cities of Israel shall go forth, and shall set on fire and burn the weapons, both the shields and the bucklers, the bows and the arrows, and the handstaves, and the spears, and they shall burn them with fire seven years: \nSo that they shall take no wood out of the field, neither cut down any out of the forests; for they shall burn the weapons with fire: and they shall spoil those that spoiled them, and rob those that robbed them, saith the Lord GOD. \nAnd it shall come to pass in that day, that I will give unto Gog a place there of graves in Israel, the valley of the passengers on the east of the sea: and it shall stop the noses of the passengers: and there shall they bury Gog and all his multitude: and they shall call it The valley of Hamongog. \nAnd seven months shall the house of Israel be burying of them, that they may cleanse the land. \nYea, all the people of the land shall bury them; and it shall be to them a renown the day that I shall be glorified, saith the Lord GOD. \nAnd they shall sever out men of continual employment, passing through the land to bury with the passengers those that remain upon the face of the earth, to cleanse it: after the end of seven months shall they search. \nAnd the passengers that pass through the land, when any seeth a man's bone, then shall he set up a sign by it, till the buriers have buried it in the valley of Hamongog. \nAnd also the name of the city shall be Hamonah. Thus shall they cleanse the land. \nAnd, thou son of man, thus saith the Lord GOD; Speak unto every feathered fowl, and to every beast of the field, Assemble yourselves, and come; gather yourselves on every side to my sacrifice that I do sacrifice for you, even a great sacrifice upon the mountains of Israel, that ye may eat flesh, and drink blood. \nYe shall eat the flesh of the mighty, and drink the blood of the princes of the earth, of rams, of lambs, and of goats, of bullocks, all of them fatlings of Bashan. \nAnd ye shall eat fat till ye be full, and drink blood till ye be drunken, of my sacrifice which I have sacrificed for you. \nThus ye shall be filled at my table with horses and chariots, with mighty men, and with all men of war, saith the Lord GOD. \nAnd I will set my glory among the heathen, and all the heathen shall see my judgment that I have executed, and my hand that I have laid upon them. \nSo the house of Israel shall know that I am the LORD their God from that day and forward. \nAnd the heathen shall know that the house of Israel went into captivity for their iniquity: because they trespassed against me, therefore hid I my face from them, and gave them into the hand of their enemies: so fell they all by the sword. \nAccording to their uncleanness and according to their transgressions have I done unto them, and hid my face from them. \nTherefore thus saith the Lord GOD; Now will I bring again the captivity of Jacob, and have mercy upon the whole house of Israel, and will be jealous for my holy name; \nAfter that they have borne their shame, and all their trespasses whereby they have trespassed against me, when they dwelt safely in their land, and none made them afraid. \nWhen I have brought them again from the people, and gathered them out of their enemies' lands, and am sanctified in them in the sight of many nations; \nThen shall they know that I am the LORD their God, which caused them to be led into captivity among the heathen: but I have gathered them unto their own land, and have left none of them any more there. \nNeither will I hide my face any more from them: for I have poured out my spirit upon the house of Israel, saith the Lord GOD. \nIn the five and twentieth year of our captivity, in the beginning of the year, in the tenth day of the month, in the fourteenth year after that the city was smitten, in the selfsame day the hand of the LORD was upon me, and brought me thither. \nIn the visions of God brought he me into the land of Israel, and set me upon a very high mountain, by which was as the frame of a city on the south. \nAnd he brought me thither, and, behold, there was a man, whose appearance was like the appearance of brass, with a line of flax in his hand, and a measuring reed; and he stood in the gate. \nAnd the man said unto me, Son of man, behold with thine eyes, and hear with thine ears, and set thine heart upon all that I shall shew thee; for to the intent that I might shew them unto thee art thou brought hither: declare all that thou seest to the house of Israel. \nAnd behold a wall on the outside of the house round about, and in the man's hand a measuring reed of six cubits long by the cubit and an hand breadth: so he measured the breadth of the building, one reed; and the height, one reed. \nThen came he unto the gate which looketh toward the east, and went up the stairs thereof, and measured the threshold of the gate, which was one reed broad; and the other threshold of the gate, which was one reed broad. \nAnd every little chamber was one reed long, and one reed broad; and between the little chambers were five cubits; and the threshold of the gate by the porch of the gate within was one reed. \nHe measured also the porch of the gate within, one reed. \nThen measured he the porch of the gate, eight cubits; and the posts thereof, two cubits; and the porch of the gate was inward. \nAnd the little chambers of the gate eastward were three on this side, and three on that side; they three were of one measure: and the posts had one measure on this side and on that side. \nAnd he measured the breadth of the entry of the gate, ten cubits; and the length of the gate, thirteen cubits. \nThe space also before the little chambers was one cubit on this side, and the space was one cubit on that side: and the little chambers were six cubits on this side, and six cubits on that side. \nHe measured then the gate from the roof of one little chamber to the roof of another: the breadth was five and twenty cubits, door against door. \nHe made also posts of threescore cubits, even unto the post of the court round about the gate. \nAnd from the face of the gate of the entrance unto the face of the porch of the inner gate were fifty cubits. \nAnd there were narrow windows to the little chambers, and to their posts within the gate round about, and likewise to the arches: and windows were round about inward: and upon each post were palm trees. \nThen brought he me into the outward court, and, lo, there were chambers, and a pavement made for the court round about: thirty chambers were upon the pavement. \nAnd the pavement by the side of the gates over against the length of the gates was the lower pavement. \nThen he measured the breadth from the forefront of the lower gate unto the forefront of the inner court without, an hundred cubits eastward and northward. \nAnd the gate of the outward court that looked toward the north, he measured the length thereof, and the breadth thereof. \nAnd the little chambers thereof were three on this side and three on that side; and the posts thereof and the arches thereof were after the measure of the first gate: the length thereof was fifty cubits, and the breadth five and twenty cubits. \nAnd their windows, and their arches, and their palm trees, were after the measure of the gate that looketh toward the east; and they went up unto it by seven steps; and the arches thereof were before them. \nAnd the gate of the inner court was over against the gate toward the north, and toward the east; and he measured from gate to gate an hundred cubits. \nAfter that he brought me toward the south, and behold a gate toward the south: and he measured the posts thereof and the arches thereof according to these measures. \nAnd there were windows in it and in the arches thereof round about, like those windows: the length was fifty cubits, and the breadth five and twenty cubits. \nAnd there were seven steps to go up to it, and the arches thereof were before them: and it had palm trees, one on this side, and another on that side, upon the posts thereof. \nAnd there was a gate in the inner court toward the south: and he measured from gate to gate toward the south an hundred cubits. \nAnd he brought me to the inner court by the south gate: and he measured the south gate according to these measures; \nAnd the little chambers thereof, and the posts thereof, and the arches thereof, according to these measures: and there were windows in it and in the arches thereof round about: it was fifty cubits long, and five and twenty cubits broad. \nAnd the arches round about were five and twenty cubits long, and five cubits broad. \nAnd the arches thereof were toward the utter court; and palm trees were upon the posts thereof: and the going up to it had eight steps. \nAnd he brought me into the inner court toward the east: and he measured the gate according to these measures. \nAnd the little chambers thereof, and the posts thereof, and the arches thereof, were according to these measures: and there were windows therein and in the arches thereof round about: it was fifty cubits long, and five and twenty cubits broad. \nAnd the arches thereof were toward the outward court; and palm trees were upon the posts thereof, on this side, and on that side: and the going up to it had eight steps. \nAnd he brought me to the north gate, and measured it according to these measures; \nThe little chambers thereof, the posts thereof, and the arches thereof, and the windows to it round about: the length was fifty cubits, and the breadth five and twenty cubits. \nAnd the posts thereof were toward the utter court; and palm trees were upon the posts thereof, on this side, and on that side: and the going up to it had eight steps. \nAnd the chambers and the entries thereof were by the posts of the gates, where they washed the burnt offering. \nAnd in the porch of the gate were two tables on this side, and two tables on that side, to slay thereon the burnt offering and the sin offering and the trespass offering. \nAnd at the side without, as one goeth up to the entry of the north gate, were two tables; and on the other side, which was at the porch of the gate, were two tables. \nFour tables were on this side, and four tables on that side, by the side of the gate; eight tables, whereupon they slew their sacrifices. \nAnd the four tables were of hewn stone for the burnt offering, of a cubit and an half long, and a cubit and an half broad, and one cubit high: whereupon also they laid the instruments wherewith they slew the burnt offering and the sacrifice. \nAnd within were hooks, an hand broad, fastened round about: and upon the tables was the flesh of the offering. \nAnd without the inner gate were the chambers of the singers in the inner court, which was at the side of the north gate; and their prospect was toward the south: one at the side of the east gate having the prospect toward the north. \nAnd he said unto me, This chamber, whose prospect is toward the south, is for the priests, the keepers of the charge of the house. \nAnd the chamber whose prospect is toward the north is for the priests, the keepers of the charge of the altar: these are the sons of Zadok among the sons of Levi, which come near to the LORD to minister unto him. \nSo he measured the court, an hundred cubits long, and an hundred cubits broad, foursquare; and the altar that was before the house. \nAnd he brought me to the porch of the house, and measured each post of the porch, five cubits on this side, and five cubits on that side: and the breadth of the gate was three cubits on this side, and three cubits on that side. \nThe length of the porch was twenty cubits, and the breadth eleven cubits, and he brought me by the steps whereby they went up to it: and there were pillars by the posts, one on this side, and another on that side. \nAfterward he brought me to the temple, and measured the posts, six cubits broad on the one side, and six cubits broad on the other side, which was the breadth of the tabernacle. \nAnd the breadth of the door was ten cubits; and the sides of the door were five cubits on the one side, and five cubits on the other side: and he measured the length thereof, forty cubits: and the breadth, twenty cubits. \nThen went he inward, and measured the post of the door, two cubits; and the door, six cubits; and the breadth of the door, seven cubits. \nSo he measured the length thereof, twenty cubits; and the breadth, twenty cubits, before the temple: and he said unto me, This is the most holy place. \nAfter he measured the wall of the house, six cubits; and the breadth of every side chamber, four cubits, round about the house on every side. \nAnd the side chambers were three, one over another, and thirty in order; and they entered into the wall which was of the house for the side chambers round about, that they might have hold, but they had not hold in the wall of the house. \nAnd there was an enlarging, and a winding about still upward to the side chambers: for the winding about of the house went still upward round about the house: therefore the breadth of the house was still upward, and so increased from the lowest chamber to the highest by the midst. \nI saw also the height of the house round about: the foundations of the side chambers were a full reed of six great cubits. \nThe thickness of the wall, which was for the side chamber without, was five cubits: and that which was left was the place of the side chambers that were within. \nAnd between the chambers was the wideness of twenty cubits round about the house on every side. \nAnd the doors of the side chambers were toward the place that was left, one door toward the north, and another door toward the south: and the breadth of the place that was left was five cubits round about. \nNow the building that was before the separate place at the end toward the west was seventy cubits broad; and the wall of the building was five cubits thick round about, and the length thereof ninety cubits. \nSo he measured the house, an hundred cubits long; and the separate place, and the building, with the walls thereof, an hundred cubits long; \nAlso the breadth of the face of the house, and of the separate place toward the east, an hundred cubits. \nAnd he measured the length of the building over against the separate place which was behind it, and the galleries thereof on the one side and on the other side, an hundred cubits, with the inner temple, and the porches of the court; \nThe door posts, and the narrow windows, and the galleries round about on their three stories, over against the door, cieled with wood round about, and from the ground up to the windows, and the windows were covered; \nTo that above the door, even unto the inner house, and without, and by all the wall round about within and without, by measure. \nAnd it was made with cherubims and palm trees, so that a palm tree was between a cherub and a cherub; and every cherub had two faces; \nSo that the face of a man was toward the palm tree on the one side, and the face of a young lion toward the palm tree on the other side: it was made through all the house round about. \nFrom the ground unto above the door were cherubims and palm trees made, and on the wall of the temple. \nThe posts of the temple were squared, and the face of the sanctuary; the appearance of the one as the appearance of the other. \nThe altar of wood was three cubits high, and the length thereof two cubits; and the corners thereof, and the length thereof, and the walls thereof, were of wood: and he said unto me, This is the table that is before the LORD. \nAnd the temple and the sanctuary had two doors. \nAnd the doors had two leaves apiece, two turning leaves; two leaves for the one door, and two leaves for the other door. \nAnd there were made on them, on the doors of the temple, cherubims and palm trees, like as were made upon the walls; and there were thick planks upon the face of the porch without. \nAnd there were narrow windows and palm trees on the one side and on the other side, on the sides of the porch, and upon the side chambers of the house, and thick planks. \nThen he brought me forth into the utter court, the way toward the north: and he brought me into the chamber that was over against the separate place, and which was before the building toward the north. \nBefore the length of an hundred cubits was the north door, and the breadth was fifty cubits. \nOver against the twenty cubits which were for the inner court, and over against the pavement which was for the utter court, was gallery against gallery in three stories. \nAnd before the chambers was a walk to ten cubits breadth inward, a way of one cubit; and their doors toward the north. \nNow the upper chambers were shorter: for the galleries were higher than these, than the lower, and than the middlemost of the building. \nFor they were in three stories, but had not pillars as the pillars of the courts: therefore the building was straitened more than the lowest and the middlemost from the ground. \nAnd the wall that was without over against the chambers, toward the utter court on the forepart of the chambers, the length thereof was fifty cubits. \nFor the length of the chambers that were in the utter court was fifty cubits: and, lo, before the temple were an hundred cubits. \nAnd from under these chambers was the entry on the east side, as one goeth into them from the utter court. \nThe chambers were in the thickness of the wall of the court toward the east, over against the separate place, and over against the building. \nAnd the way before them was like the appearance of the chambers which were toward the north, as long as they, and as broad as they: and all their goings out were both according to their fashions, and according to their doors. \nAnd according to the doors of the chambers that were toward the south was a door in the head of the way, even the way directly before the wall toward the east, as one entereth into them. \nThen said he unto me, The north chambers and the south chambers, which are before the separate place, they be holy chambers, where the priests that approach unto the LORD shall eat the most holy things: there shall they lay the most holy things, and the meat offering, and the sin offering, and the trespass offering; for the place is holy. \nWhen the priests enter therein, then shall they not go out of the holy place into the utter court, but there they shall lay their garments wherein they minister; for they are holy; and shall put on other garments, and shall approach to those things which are for the people. \nNow when he had made an end of measuring the inner house, he brought me forth toward the gate whose prospect is toward the east, and measured it round about. \nHe measured the east side with the measuring reed, five hundred reeds, with the measuring reed round about. \nHe measured the north side, five hundred reeds, with the measuring reed round about. \nHe measured the south side, five hundred reeds, with the measuring reed. \nHe turned about to the west side, and measured five hundred reeds with the measuring reed. \nHe measured it by the four sides: it had a wall round about, five hundred reeds long, and five hundred broad, to make a separation between the sanctuary and the profane place. \nAfterward he brought me to the gate, even the gate that looketh toward the east: \nAnd, behold, the glory of the God of Israel came from the way of the east: and his voice was like a noise of many waters: and the earth shined with his glory. \nAnd it was according to the appearance of the vision which I saw, even according to the vision that I saw when I came to destroy the city: and the visions were like the vision that I saw by the river Chebar; and I fell upon my face. \nAnd the glory of the LORD came into the house by the way of the gate whose prospect is toward the east. \nSo the spirit took me up, and brought me into the inner court; and, behold, the glory of the LORD filled the house. \nAnd I heard him speaking unto me out of the house; and the man stood by me. \nAnd he said unto me, Son of man, the place of my throne, and the place of the soles of my feet, where I will dwell in the midst of the children of Israel for ever, and my holy name, shall the house of Israel no more defile, neither they, nor their kings, by their whoredom, nor by the carcases of their kings in their high places. \nIn their setting of their threshold by my thresholds, and their post by my posts, and the wall between me and them, they have even defiled my holy name by their abominations that they have committed: wherefore I have consumed them in mine anger. \nNow let them put away their whoredom, and the carcases of their kings, far from me, and I will dwell in the midst of them for ever. \nThou son of man, shew the house to the house of Israel, that they may be ashamed of their iniquities: and let them measure the pattern. \nAnd if they be ashamed of all that they have done, shew them the form of the house, and the fashion thereof, and the goings out thereof, and the comings in thereof, and all the forms thereof, and all the ordinances thereof, and all the forms thereof, and all the laws thereof: and write it in their sight, that they may keep the whole form thereof, and all the ordinances thereof, and do them. \nThis is the law of the house; Upon the top of the mountain the whole limit thereof round about shall be most holy. Behold, this is the law of the house. \nAnd these are the measures of the altar after the cubits: The cubit is a cubit and an hand breadth; even the bottom shall be a cubit, and the breadth a cubit, and the border thereof by the edge thereof round about shall be a span: and this shall be the higher place of the altar. \nAnd from the bottom upon the ground even to the lower settle shall be two cubits, and the breadth one cubit; and from the lesser settle even to the greater settle shall be four cubits, and the breadth one cubit. \nSo the altar shall be four cubits; and from the altar and upward shall be four horns. \nAnd the altar shall be twelve cubits long, twelve broad, square in the four squares thereof. \nAnd the settle shall be fourteen cubits long and fourteen broad in the four squares thereof; and the border about it shall be half a cubit; and the bottom thereof shall be a cubit about; and his stairs shall look toward the east. \nAnd he said unto me, Son of man, thus saith the Lord GOD; These are the ordinances of the altar in the day when they shall make it, to offer burnt offerings thereon, and to sprinkle blood thereon. \nAnd thou shalt give to the priests the Levites that be of the seed of Zadok, which approach unto me, to minister unto me, saith the Lord GOD, a young bullock for a sin offering. \nAnd thou shalt take of the blood thereof, and put it on the four horns of it, and on the four corners of the settle, and upon the border round about: thus shalt thou cleanse and purge it. \nThou shalt take the bullock also of the sin offering, and he shall burn it in the appointed place of the house, without the sanctuary. \nAnd on the second day thou shalt offer a kid of the goats without blemish for a sin offering; and they shall cleanse the altar, as they did cleanse it with the bullock. \nWhen thou hast made an end of cleansing it, thou shalt offer a young bullock without blemish, and a ram out of the flock without blemish. \nAnd thou shalt offer them before the LORD, and the priests shall cast salt upon them, and they shall offer them up for a burnt offering unto the LORD. \nSeven days shalt thou prepare every day a goat for a sin offering: they shall also prepare a young bullock, and a ram out of the flock, without blemish. \nSeven days shall they purge the altar and purify it; and they shall consecrate themselves. \nAnd when these days are expired, it shall be, that upon the eighth day, and so forward, the priests shall make your burnt offerings upon the altar, and your peace offerings; and I will accept you, saith the Lord GOD. \nThen he brought me back the way of the gate of the outward sanctuary which looketh toward the east; and it was shut. \nThen said the LORD unto me; This gate shall be shut, it shall not be opened, and no man shall enter in by it; because the LORD, the God of Israel, hath entered in by it, therefore it shall be shut. \nIt is for the prince; the prince, he shall sit in it to eat bread before the LORD; he shall enter by the way of the porch of that gate, and shall go out by the way of the same. \nThen brought he me the way of the north gate before the house: and I looked, and, behold, the glory of the LORD filled the house of the LORD: and I fell upon my face. \nAnd the LORD said unto me, Son of man, mark well, and behold with thine eyes, and hear with thine ears all that I say unto thee concerning all the ordinances of the house of the LORD, and all the laws thereof; and mark well the entering in of the house, with every going forth of the sanctuary. \nAnd thou shalt say to the rebellious, even to the house of Israel, Thus saith the Lord GOD; O ye house of Israel, let it suffice you of all your abominations, \nIn that ye have brought into my sanctuary strangers, uncircumcised in heart, and uncircumcised in flesh, to be in my sanctuary, to pollute it, even my house, when ye offer my bread, the fat and the blood, and they have broken my covenant because of all your abominations. \nAnd ye have not kept the charge of mine holy things: but ye have set keepers of my charge in my sanctuary for yourselves. \nThus saith the Lord GOD; No stranger, uncircumcised in heart, nor uncircumcised in flesh, shall enter into my sanctuary, of any stranger that is among the children of Israel. \nAnd the Levites that are gone away far from me, when Israel went astray, which went astray away from me after their idols; they shall even bear their iniquity. \nYet they shall be ministers in my sanctuary, having charge at the gates of the house, and ministering to the house: they shall slay the burnt offering and the sacrifice for the people, and they shall stand before them to minister unto them. \nBecause they ministered unto them before their idols, and caused the house of Israel to fall into iniquity; therefore have I lifted up mine hand against them, saith the Lord GOD, and they shall bear their iniquity. \nAnd they shall not come near unto me, to do the office of a priest unto me, nor to come near to any of my holy things, in the most holy place: but they shall bear their shame, and their abominations which they have committed. \nBut I will make them keepers of the charge of the house, for all the service thereof, and for all that shall be done therein. \nBut the priests the Levites, the sons of Zadok, that kept the charge of my sanctuary when the children of Israel went astray from me, they shall come near to me to minister unto me, and they shall stand before me to offer unto me the fat and the blood, saith the Lord GOD: \nThey shall enter into my sanctuary, and they shall come near to my table, to minister unto me, and they shall keep my charge. \nAnd it shall come to pass, that when they enter in at the gates of the inner court, they shall be clothed with linen garments; and no wool shall come upon them, whiles they minister in the gates of the inner court, and within. \nThey shall have linen bonnets upon their heads, and shall have linen breeches upon their loins; they shall not gird themselves with any thing that causeth sweat. \nAnd when they go forth into the utter court, even into the utter court to the people, they shall put off their garments wherein they ministered, and lay them in the holy chambers, and they shall put on other garments; and they shall not sanctify the people with their garments. \nNeither shall they shave their heads, nor suffer their locks to grow long; they shall only poll their heads. \nNeither shall any priest drink wine, when they enter into the inner court. \nNeither shall they take for their wives a widow, nor her that is put away: but they shall take maidens of the seed of the house of Israel, or a widow that had a priest before. \nAnd they shall teach my people the difference between the holy and profane, and cause them to discern between the unclean and the clean. \nAnd in controversy they shall stand in judgment; and they shall judge it according to my judgments: and they shall keep my laws and my statutes in all mine assemblies; and they shall hallow my sabbaths. \nAnd they shall come at no dead person to defile themselves: but for father, or for mother, or for son, or for daughter, for brother, or for sister that hath had no husband, they may defile themselves. \nAnd after he is cleansed, they shall reckon unto him seven days. \nAnd in the day that he goeth into the sanctuary, unto the inner court, to minister in the sanctuary, he shall offer his sin offering, saith the Lord GOD. \nAnd it shall be unto them for an inheritance: I am their inheritance: and ye shall give them no possession in Israel: I am their possession. \nThey shall eat the meat offering, and the sin offering, and the trespass offering: and every dedicated thing in Israel shall be theirs. \nAnd the first of all the firstfruits of all things, and every oblation of all, of every sort of your oblations, shall be the priest's: ye shall also give unto the priest the first of your dough, that he may cause the blessing to rest in thine house. \nThe priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast. \nMoreover, when ye shall divide by lot the land for inheritance, ye shall offer an oblation unto the LORD, an holy portion of the land: the length shall be the length of five and twenty thousand reeds, and the breadth shall be ten thousand. This shall be holy in all the borders thereof round about. \nOf this there shall be for the sanctuary five hundred in length, with five hundred in breadth, square round about; and fifty cubits round about for the suburbs thereof. \nAnd of this measure shalt thou measure the length of five and twenty thousand, and the breadth of ten thousand: and in it shall be the sanctuary and the most holy place. \nThe holy portion of the land shall be for the priests the ministers of the sanctuary, which shall come near to minister unto the LORD: and it shall be a place for their houses, and an holy place for the sanctuary. \nAnd the five and twenty thousand of length, and the ten thousand of breadth shall also the Levites, the ministers of the house, have for themselves, for a possession for twenty chambers. \nAnd ye shall appoint the possession of the city five thousand broad, and five and twenty thousand long, over against the oblation of the holy portion: it shall be for the whole house of Israel. \nAnd a portion shall be for the prince on the one side and on the other side of the oblation of the holy portion, and of the possession of the city, before the oblation of the holy portion, and before the possession of the city, from the west side westward, and from the east side eastward: and the length shall be over against one of the portions, from the west border unto the east border. \nIn the land shall be his possession in Israel: and my princes shall no more oppress my people; and the rest of the land shall they give to the house of Israel according to their tribes. \nThus saith the Lord GOD; Let it suffice you, O princes of Israel: remove violence and spoil, and execute judgment and justice, take away your exactions from my people, saith the Lord GOD. \nYe shall have just balances, and a just ephah, and a just bath. \nThe ephah and the bath shall be of one measure, that the bath may contain the tenth part of an homer, and the ephah the tenth part of an homer: the measure thereof shall be after the homer. \nAnd the shekel shall be twenty gerahs: twenty shekels, five and twenty shekels, fifteen shekels, shall be your maneh. \nThis is the oblation that ye shall offer; the sixth part of an ephah of an homer of wheat, and ye shall give the sixth part of an ephah of an homer of barley: \nConcerning the ordinance of oil, the bath of oil, ye shall offer the tenth part of a bath out of the cor, which is an homer of ten baths; for ten baths are an homer: \nAnd one lamb out of the flock, out of two hundred, out of the fat pastures of Israel; for a meat offering, and for a burnt offering, and for peace offerings, to make reconciliation for them, saith the Lord GOD. \nAll the people of the land shall give this oblation for the prince in Israel. \nAnd it shall be the prince's part to give burnt offerings, and meat offerings, and drink offerings, in the feasts, and in the new moons, and in the sabbaths, in all solemnities of the house of Israel: he shall prepare the sin offering, and the meat offering, and the burnt offering, and the peace offerings, to make reconciliation for the house of Israel. \nThus saith the Lord GOD; In the first month, in the first day of the month, thou shalt take a young bullock without blemish, and cleanse the sanctuary: \nAnd the priest shall take of the blood of the sin offering, and put it upon the posts of the house, and upon the four corners of the settle of the altar, and upon the posts of the gate of the inner court. \nAnd so thou shalt do the seventh day of the month for every one that erreth, and for him that is simple: so shall ye reconcile the house. \nIn the first month, in the fourteenth day of the month, ye shall have the passover, a feast of seven days; unleavened bread shall be eaten. \nAnd upon that day shall the prince prepare for himself and for all the people of the land a bullock for a sin offering. \nAnd seven days of the feast he shall prepare a burnt offering to the LORD, seven bullocks and seven rams without blemish daily the seven days; and a kid of the goats daily for a sin offering. \nAnd he shall prepare a meat offering of an ephah for a bullock, and an ephah for a ram, and an hin of oil for an ephah. \nIn the seventh month, in the fifteenth day of the month, shall he do the like in the feast of the seven days, according to the sin offering, according to the burnt offering, and according to the meat offering, and according to the oil. \nThus saith the Lord GOD; The gate of the inner court that looketh toward the east shall be shut the six working days; but on the sabbath it shall be opened, and in the day of the new moon it shall be opened. \nAnd the prince shall enter by the way of the porch of that gate without, and shall stand by the post of the gate, and the priests shall prepare his burnt offering and his peace offerings, and he shall worship at the threshold of the gate: then he shall go forth; but the gate shall not be shut until the evening. \nLikewise the people of the land shall worship at the door of this gate before the LORD in the sabbaths and in the new moons. \nAnd the burnt offering that the prince shall offer unto the LORD in the sabbath day shall be six lambs without blemish, and a ram without blemish. \nAnd the meat offering shall be an ephah for a ram, and the meat offering for the lambs as he shall be able to give, and an hin of oil to an ephah. \nAnd in the day of the new moon it shall be a young bullock without blemish, and six lambs, and a ram: they shall be without blemish. \nAnd he shall prepare a meat offering, an ephah for a bullock, and an ephah for a ram, and for the lambs according as his hand shall attain unto, and an hin of oil to an ephah. \nAnd when the prince shall enter, he shall go in by the way of the porch of that gate, and he shall go forth by the way thereof. \nBut when the people of the land shall come before the LORD in the solemn feasts, he that entereth in by the way of the north gate to worship shall go out by the way of the south gate; and he that entereth by the way of the south gate shall go forth by the way of the north gate: he shall not return by the way of the gate whereby he came in, but shall go forth over against it. \nAnd the prince in the midst of them, when they go in, shall go in; and when they go forth, shall go forth. \nAnd in the feasts and in the solemnities the meat offering shall be an ephah to a bullock, and an ephah to a ram, and to the lambs as he is able to give, and an hin of oil to an ephah. \nNow when the prince shall prepare a voluntary burnt offering or peace offerings voluntarily unto the LORD, one shall then open him the gate that looketh toward the east, and he shall prepare his burnt offering and his peace offerings, as he did on the sabbath day: then he shall go forth; and after his going forth one shall shut the gate. \nThou shalt daily prepare a burnt offering unto the LORD of a lamb of the first year without blemish: thou shalt prepare it every morning. \nAnd thou shalt prepare a meat offering for it every morning, the sixth part of an ephah, and the third part of an hin of oil, to temper with the fine flour; a meat offering continually by a perpetual ordinance unto the LORD. \nThus shall they prepare the lamb, and the meat offering, and the oil, every morning for a continual burnt offering. \nThus saith the Lord GOD; If the prince give a gift unto any of his sons, the inheritance thereof shall be his sons'; it shall be their possession by inheritance. \nBut if he give a gift of his inheritance to one of his servants, then it shall be his to the year of liberty; after it shall return to the prince: but his inheritance shall be his sons' for them. \nMoreover the prince shall not take of the people's inheritance by oppression, to thrust them out of their possession; but he shall give his sons inheritance out of his own possession: that my people be not scattered every man from his possession. \nAfter he brought me through the entry, which was at the side of the gate, into the holy chambers of the priests, which looked toward the north: and, behold, there was a place on the two sides westward. \nThen said he unto me, This is the place where the priests shall boil the trespass offering and the sin offering, where they shall bake the meat offering; that they bear them not out into the utter court, to sanctify the people. \nThen he brought me forth into the utter court, and caused me to pass by the four corners of the court; and, behold, in every corner of the court there was a court. \nIn the four corners of the court there were courts joined of forty cubits long and thirty broad: these four corners were of one measure. \nAnd there was a row of building round about in them, round about them four, and it was made with boiling places under the rows round about. \nThen said he unto me, These are the places of them that boil, where the ministers of the house shall boil the sacrifice of the people. \nAfterward he brought me again unto the door of the house; and, behold, waters issued out from under the threshold of the house eastward: for the forefront of the house stood toward the east, and the waters came down from under from the right side of the house, at the south side of the altar. \nThen brought he me out of the way of the gate northward, and led me about the way without unto the utter gate by the way that looketh eastward; and, behold, there ran out waters on the right side. \nAnd when the man that had the line in his hand went forth eastward, he measured a thousand cubits, and he brought me through the waters; the waters were to the ankles. \nAgain he measured a thousand, and brought me through the waters; the waters were to the knees. Again he measured a thousand, and brought me through; the waters were to the loins. \nAfterward he measured a thousand; and it was a river that I could not pass over: for the waters were risen, waters to swim in, a river that could not be passed over. \nAnd he said unto me, Son of man, hast thou seen this? Then he brought me, and caused me to return to the brink of the river. \nNow when I had returned, behold, at the bank of the river were very many trees on the one side and on the other. \nThen said he unto me, These waters issue out toward the east country, and go down into the desert, and go into the sea: which being brought forth into the sea, the waters shall be healed. \nAnd it shall come to pass, that every thing that liveth, which moveth, whithersoever the rivers shall come, shall live: and there shall be a very great multitude of fish, because these waters shall come thither: for they shall be healed; and every thing shall live whither the river cometh. \nAnd it shall come to pass, that the fishers shall stand upon it from Engedi even unto Eneglaim; they shall be a place to spread forth nets; their fish shall be according to their kinds, as the fish of the great sea, exceeding many. \nBut the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt. \nAnd by the river upon the bank thereof, on this side and on that side, shall grow all trees for meat, whose leaf shall not fade, neither shall the fruit thereof be consumed: it shall bring forth new fruit according to his months, because their waters they issued out of the sanctuary: and the fruit thereof shall be for meat, and the leaf thereof for medicine. \nThus saith the Lord GOD; This shall be the border, whereby ye shall inherit the land according to the twelve tribes of Israel: Joseph shall have two portions. \nAnd ye shall inherit it, one as well as another: concerning the which I lifted up mine hand to give it unto your fathers: and this land shall fall unto you for inheritance. \nAnd this shall be the border of the land toward the north side, from the great sea, the way of Hethlon, as men go to Zedad; \nHamath, Berothah, Sibraim, which is between the border of Damascus and the border of Hamath; Hazarhatticon, which is by the coast of Hauran. \nAnd the border from the sea shall be Hazarenan, the border of Damascus, and the north northward, and the border of Hamath. And this is the north side. \nAnd the east side ye shall measure from Hauran, and from Damascus, and from Gilead, and from the land of Israel by Jordan, from the border unto the east sea. And this is the east side. \nAnd the south side southward, from Tamar even to the waters of strife in Kadesh, the river to the great sea. And this is the south side southward. \nThe west side also shall be the great sea from the border, till a man come over against Hamath. This is the west side. \nSo shall ye divide this land unto you according to the tribes of Israel. \nAnd it shall come to pass, that ye shall divide it by lot for an inheritance unto you, and to the strangers that sojourn among you, which shall beget children among you: and they shall be unto you as born in the country among the children of Israel; they shall have inheritance with you among the tribes of Israel. \nAnd it shall come to pass, that in what tribe the stranger sojourneth, there shall ye give him his inheritance, saith the Lord GOD. \nNow these are the names of the tribes. From the north end to the coast of the way of Hethlon, as one goeth to Hamath, Hazarenan, the border of Damascus northward, to the coast of Hamath; for these are his sides east and west; a portion for Dan. \nAnd by the border of Dan, from the east side unto the west side, a portion for Asher. \nAnd by the border of Asher, from the east side even unto the west side, a portion for Naphtali. \nAnd by the border of Naphtali, from the east side unto the west side, a portion for Manasseh. \nAnd by the border of Manasseh, from the east side unto the west side, a portion for Ephraim. \nAnd by the border of Ephraim, from the east side even unto the west side, a portion for Reuben. \nAnd by the border of Reuben, from the east side unto the west side, a portion for Judah. \nAnd by the border of Judah, from the east side unto the west side, shall be the offering which ye shall offer of five and twenty thousand reeds in breadth, and in length as one of the other parts, from the east side unto the west side: and the sanctuary shall be in the midst of it. \nThe oblation that ye shall offer unto the LORD shall be of five and twenty thousand in length, and of ten thousand in breadth. \nAnd for them, even for the priests, shall be this holy oblation; toward the north five and twenty thousand in length, and toward the west ten thousand in breadth, and toward the east ten thousand in breadth, and toward the south five and twenty thousand in length: and the sanctuary of the LORD shall be in the midst thereof. \nIt shall be for the priests that are sanctified of the sons of Zadok; which have kept my charge, which went not astray when the children of Israel went astray, as the Levites went astray. \nAnd this oblation of the land that is offered shall be unto them a thing most holy by the border of the Levites. \nAnd over against the border of the priests the Levites shall have five and twenty thousand in length, and ten thousand in breadth: all the length shall be five and twenty thousand, and the breadth ten thousand. \nAnd they shall not sell of it, neither exchange, nor alienate the firstfruits of the land: for it is holy unto the LORD. \nAnd the five thousand, that are left in the breadth over against the five and twenty thousand, shall be a profane place for the city, for dwelling, and for suburbs: and the city shall be in the midst thereof. \nAnd these shall be the measures thereof; the north side four thousand and five hundred, and the south side four thousand and five hundred, and on the east side four thousand and five hundred, and the west side four thousand and five hundred. \nAnd the suburbs of the city shall be toward the north two hundred and fifty, and toward the south two hundred and fifty, and toward the east two hundred and fifty, and toward the west two hundred and fifty. \nAnd the residue in length over against the oblation of the holy portion shall be ten thousand eastward, and ten thousand westward: and it shall be over against the oblation of the holy portion; and the increase thereof shall be for food unto them that serve the city. \nAnd they that serve the city shall serve it out of all the tribes of Israel. \nAll the oblation shall be five and twenty thousand by five and twenty thousand: ye shall offer the holy oblation foursquare, with the possession of the city. \nAnd the residue shall be for the prince, on the one side and on the other of the holy oblation, and of the possession of the city, over against the five and twenty thousand of the oblation toward the east border, and westward over against the five and twenty thousand toward the west border, over against the portions for the prince: and it shall be the holy oblation; and the sanctuary of the house shall be in the midst thereof. \nMoreover from the possession of the Levites, and from the possession of the city, being in the midst of that which is the prince's, between the border of Judah and the border of Benjamin, shall be for the prince. \nAs for the rest of the tribes, from the east side unto the west side, Benjamin shall have a portion. \nAnd by the border of Benjamin, from the east side unto the west side, Simeon shall have a portion. \nAnd by the border of Simeon, from the east side unto the west side, Issachar a portion. \nAnd by the border of Issachar, from the east side unto the west side, Zebulun a portion. \nAnd by the border of Zebulun, from the east side unto the west side, Gad a portion. \nAnd by the border of Gad, at the south side southward, the border shall be even from Tamar unto the waters of strife in Kadesh, and to the river toward the great sea. \nThis is the land which ye shall divide by lot unto the tribes of Israel for inheritance, and these are their portions, saith the Lord GOD. \nAnd these are the goings out of the city on the north side, four thousand and five hundred measures. \nAnd the gates of the city shall be after the names of the tribes of Israel: three gates northward; one gate of Reuben, one gate of Judah, one gate of Levi. \nAnd at the east side four thousand and five hundred: and three gates; and one gate of Joseph, one gate of Benjamin, one gate of Dan. \nAnd at the south side four thousand and five hundred measures: and three gates; one gate of Simeon, one gate of Issachar, one gate of Zebulun. \nAt the west side four thousand and five hundred, with their three gates; one gate of Gad, one gate of Asher, one gate of Naphtali. \nIt was round about eighteen thousand measures: and the name of the city from that day shall be, The LORD is there. \nIn the third year of the reign of Jehoiakim king of Judah came Nebuchadnezzar king of Babylon unto Jerusalem, and besieged it. \nAnd the Lord gave Jehoiakim king of Judah into his hand, with part of the vessels of the house of God: which he carried into the land of Shinar to the house of his god; and he brought the vessels into the treasure house of his god. \nAnd the king spake unto Ashpenaz the master of his eunuchs, that he should bring certain of the children of Israel, and of the king's seed, and of the princes; \nChildren in whom was no blemish, but well favoured, and skilful in all wisdom, and cunning in knowledge, and understanding science, and such as had ability in them to stand in the king's palace, and whom they might teach the learning and the tongue of the Chaldeans. \nAnd the king appointed them a daily provision of the king's meat, and of the wine which he drank: so nourishing them three years, that at the end thereof they might stand before the king. \nNow among these were of the children of Judah, Daniel, Hananiah, Mishael, and Azariah: \nUnto whom the prince of the eunuchs gave names: for he gave unto Daniel the name of Belteshazzar; and to Hananiah, of Shadrach; and to Mishael, of Meshach; and to Azariah, of Abednego. \nBut Daniel purposed in his heart that he would not defile himself with the portion of the king's meat, nor with the wine which he drank: therefore he requested of the prince of the eunuchs that he might not defile himself. \nNow God had brought Daniel into favour and tender love with the prince of the eunuchs. \nAnd the prince of the eunuchs said unto Daniel, I fear my lord the king, who hath appointed your meat and your drink: for why should he see your faces worse liking than the children which are of your sort? then shall ye make me endanger my head to the king. \nThen said Daniel to Melzar, whom the prince of the eunuchs had set over Daniel, Hananiah, Mishael, and Azariah, \nProve thy servants, I beseech thee, ten days; and let them give us pulse to eat, and water to drink. \nThen let our countenances be looked upon before thee, and the countenance of the children that eat of the portion of the king's meat: and as thou seest, deal with thy servants. \nSo he consented to them in this matter, and proved them ten days. \nAnd at the end of ten days their countenances appeared fairer and fatter in flesh than all the children which did eat the portion of the king's meat. \nThus Melzar took away the portion of their meat, and the wine that they should drink; and gave them pulse. \nAs for these four children, God gave them knowledge and skill in all learning and wisdom: and Daniel had understanding in all visions and dreams. \nNow at the end of the days that the king had said he should bring them in, then the prince of the eunuchs brought them in before Nebuchadnezzar. \nAnd the king communed with them; and among them all was found none like Daniel, Hananiah, Mishael, and Azariah: therefore stood they before the king. \nAnd in all matters of wisdom and understanding, that the king enquired of them, he found them ten times better than all the magicians and astrologers that were in all his realm. \nAnd Daniel continued even unto the first year of king Cyrus. \nAnd in the second year of the reign of Nebuchadnezzar Nebuchadnezzar dreamed dreams, wherewith his spirit was troubled, and his sleep brake from him. \nThen the king commanded to call the magicians, and the astrologers, and the sorcerers, and the Chaldeans, for to shew the king his dreams. So they came and stood before the king. \nAnd the king said unto them, I have dreamed a dream, and my spirit was troubled to know the dream. \nThen spake the Chaldeans to the king in Syriack, O king, live for ever: tell thy servants the dream, and we will shew the interpretation. \nThe king answered and said to the Chaldeans, The thing is gone from me: if ye will not make known unto me the dream, with the interpretation thereof, ye shall be cut in pieces, and your houses shall be made a dunghill. \nBut if ye shew the dream, and the interpretation thereof, ye shall receive of me gifts and rewards and great honour: therefore shew me the dream, and the interpretation thereof. \nThey answered again and said, Let the king tell his servants the dream, and we will shew the interpretation of it. \nThe king answered and said, I know of certainty that ye would gain the time, because ye see the thing is gone from me. \nBut if ye will not make known unto me the dream, there is but one decree for you: for ye have prepared lying and corrupt words to speak before me, till the time be changed: therefore tell me the dream, and I shall know that ye can shew me the interpretation thereof. \nThe Chaldeans answered before the king, and said, There is not a man upon the earth that can shew the king's matter: therefore there is no king, lord, nor ruler, that asked such things at any magician, or astrologer, or Chaldean. \nAnd it is a rare thing that the king requireth, and there is none other that can shew it before the king, except the gods, whose dwelling is not with flesh. \nFor this cause the king was angry and very furious, and commanded to destroy all the wise men of Babylon. \nAnd the decree went forth that the wise men should be slain; and they sought Daniel and his fellows to be slain. \nThen Daniel answered with counsel and wisdom to Arioch the captain of the king's guard, which was gone forth to slay the wise men of Babylon: \nHe answered and said to Arioch the king's captain, Why is the decree so hasty from the king? Then Arioch made the thing known to Daniel. \nThen Daniel went in, and desired of the king that he would give him time, and that he would shew the king the interpretation. \nThen Daniel went to his house, and made the thing known to Hananiah, Mishael, and Azariah, his companions: \nThat they would desire mercies of the God of heaven concerning this secret; that Daniel and his fellows should not perish with the rest of the wise men of Babylon. \nThen was the secret revealed unto Daniel in a night vision. Then Daniel blessed the God of heaven. \nDaniel answered and said, Blessed be the name of God for ever and ever: for wisdom and might are his: \nAnd he changeth the times and the seasons: he removeth kings, and setteth up kings: he giveth wisdom unto the wise, and knowledge to them that know understanding: \nHe revealeth the deep and secret things: he knoweth what is in the darkness, and the light dwelleth with him. \nI thank thee, and praise thee, O thou God of my fathers, who hast given me wisdom and might, and hast made known unto me now what we desired of thee: for thou hast now made known unto us the king's matter. \nTherefore Daniel went in unto Arioch, whom the king had ordained to destroy the wise men of Babylon: he went and said thus unto him; Destroy not the wise men of Babylon: bring me in before the king, and I will shew unto the king the interpretation. \nThen Arioch brought in Daniel before the king in haste, and said thus unto him, I have found a man of the captives of Judah, that will make known unto the king the interpretation. \nThe king answered and said to Daniel, whose name was Belteshazzar, Art thou able to make known unto me the dream which I have seen, and the interpretation thereof? \nDaniel answered in the presence of the king, and said, The secret which the king hath demanded cannot the wise men, the astrologers, the magicians, the soothsayers, shew unto the king; \nBut there is a God in heaven that revealeth secrets, and maketh known to the king Nebuchadnezzar what shall be in the latter days. Thy dream, and the visions of thy head upon thy bed, are these; \nAs for thee, O king, thy thoughts came into thy mind upon thy bed, what should come to pass hereafter: and he that revealeth secrets maketh known to thee what shall come to pass. \nBut as for me, this secret is not revealed to me for any wisdom that I have more than any living, but for their sakes that shall make known the interpretation to the king, and that thou mightest know the thoughts of thy heart. \nThou, O king, sawest, and behold a great image. This great image, whose brightness was excellent, stood before thee; and the form thereof was terrible. \nThis image's head was of fine gold, his breast and his arms of silver, his belly and his thighs of brass, \nHis legs of iron, his feet part of iron and part of clay. \nThou sawest till that a stone was cut out without hands, which smote the image upon his feet that were of iron and clay, and brake them to pieces. \nThen was the iron, the clay, the brass, the silver, and the gold, broken to pieces together, and became like the chaff of the summer threshingfloors; and the wind carried them away, that no place was found for them: and the stone that smote the image became a great mountain, and filled the whole earth. \nThis is the dream; and we will tell the interpretation thereof before the king. \nThou, O king, art a king of kings: for the God of heaven hath given thee a kingdom, power, and strength, and glory. \nAnd wheresoever the children of men dwell, the beasts of the field and the fowls of the heaven hath he given into thine hand, and hath made thee ruler over them all. Thou art this head of gold. \nAnd after thee shall arise another kingdom inferior to thee, and another third kingdom of brass, which shall bear rule over all the earth. \nAnd the fourth kingdom shall be strong as iron: forasmuch as iron breaketh in pieces and subdueth all things: and as iron that breaketh all these, shall it break in pieces and bruise. \nAnd whereas thou sawest the feet and toes, part of potters' clay, and part of iron, the kingdom shall be divided; but there shall be in it of the strength of the iron, forasmuch as thou sawest the iron mixed with miry clay. \nAnd as the toes of the feet were part of iron, and part of clay, so the kingdom shall be partly strong, and partly broken. \nAnd whereas thou sawest iron mixed with miry clay, they shall mingle themselves with the seed of men: but they shall not cleave one to another, even as iron is not mixed with clay. \nAnd in the days of these kings shall the God of heaven set up a kingdom, which shall never be destroyed: and the kingdom shall not be left to other people, but it shall break in pieces and consume all these kingdoms, and it shall stand for ever. \nForasmuch as thou sawest that the stone was cut out of the mountain without hands, and that it brake in pieces the iron, the brass, the clay, the silver, and the gold; the great God hath made known to the king what shall come to pass hereafter: and the dream is certain, and the interpretation thereof sure. \nThen the king Nebuchadnezzar fell upon his face, and worshipped Daniel, and commanded that they should offer an oblation and sweet odours unto him. \nThe king answered unto Daniel, and said, Of a truth it is, that your God is a God of gods, and a Lord of kings, and a revealer of secrets, seeing thou couldest reveal this secret. \nThen the king made Daniel a great man, and gave him many great gifts, and made him ruler over the whole province of Babylon, and chief of the governors over all the wise men of Babylon. \nThen Daniel requested of the king, and he set Shadrach, Meshach, and Abednego, over the affairs of the province of Babylon: but Daniel sat in the gate of the king. \nNebuchadnezzar the king made an image of gold, whose height was threescore cubits, and the breadth thereof six cubits: he set it up in the plain of Dura, in the province of Babylon. \nThen Nebuchadnezzar the king sent to gather together the princes, the governors, and the captains, the judges, the treasurers, the counsellors, the sheriffs, and all the rulers of the provinces, to come to the dedication of the image which Nebuchadnezzar the king had set up. \nThen the princes, the governors, and captains, the judges, the treasurers, the counsellors, the sheriffs, and all the rulers of the provinces, were gathered together unto the dedication of the image that Nebuchadnezzar the king had set up; and they stood before the image that Nebuchadnezzar had set up. \nThen an herald cried aloud, To you it is commanded, O people, nations, and languages, \nThat at what time ye hear the sound of the cornet, flute, harp, sackbut, psaltery, dulcimer, and all kinds of musick, ye fall down and worship the golden image that Nebuchadnezzar the king hath set up: \nAnd whoso falleth not down and worshippeth shall the same hour be cast into the midst of a burning fiery furnace. \nTherefore at that time, when all the people heard the sound of the cornet, flute, harp, sackbut, psaltery, and all kinds of musick, all the people, the nations, and the languages, fell down and worshipped the golden image that Nebuchadnezzar the king had set up. \nWherefore at that time certain Chaldeans came near, and accused the Jews. \nThey spake and said to the king Nebuchadnezzar, O king, live for ever. \nThou, O king, hast made a decree, that every man that shall hear the sound of the cornet, flute, harp, sackbut, psaltery, and dulcimer, and all kinds of musick, shall fall down and worship the golden image: \nAnd whoso falleth not down and worshippeth, that he should be cast into the midst of a burning fiery furnace. \nThere are certain Jews whom thou hast set over the affairs of the province of Babylon, Shadrach, Meshach, and Abednego; these men, O king, have not regarded thee: they serve not thy gods, nor worship the golden image which thou hast set up. \nThen Nebuchadnezzar in his rage and fury commanded to bring Shadrach, Meshach, and Abednego. Then they brought these men before the king. \nNebuchadnezzar spake and said unto them, Is it true, O Shadrach, Meshach, and Abednego, do not ye serve my gods, nor worship the golden image which I have set up? \nNow if ye be ready that at what time ye hear the sound of the cornet, flute, harp, sackbut, psaltery, and dulcimer, and all kinds of musick, ye fall down and worship the image which I have made; well: but if ye worship not, ye shall be cast the same hour into the midst of a burning fiery furnace; and who is that God that shall deliver you out of my hands? \nShadrach, Meshach, and Abednego, answered and said to the king, O Nebuchadnezzar, we are not careful to answer thee in this matter. \nIf it be so, our God whom we serve is able to deliver us from the burning fiery furnace, and he will deliver us out of thine hand, O king. \nBut if not, be it known unto thee, O king, that we will not serve thy gods, nor worship the golden image which thou hast set up. \nThen was Nebuchadnezzar full of fury, and the form of his visage was changed against Shadrach, Meshach, and Abednego: therefore he spake, and commanded that they should heat the furnace one seven times more than it was wont to be heated. \nAnd he commanded the most mighty men that were in his army to bind Shadrach, Meshach, and Abednego, and to cast them into the burning fiery furnace. \nThen these men were bound in their coats, their hosen, and their hats, and their other garments, and were cast into the midst of the burning fiery furnace. \nTherefore because the king's commandment was urgent, and the furnace exceeding hot, the flames of the fire slew those men that took up Shadrach, Meshach, and Abednego. \nAnd these three men, Shadrach, Meshach, and Abednego, fell down bound into the midst of the burning fiery furnace. \nThen Nebuchadnezzar the king was astonied, and rose up in haste, and spake, and said unto his counsellors, Did not we cast three men bound into the midst of the fire? They answered and said unto the king, True, O king. \nHe answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the form of the fourth is like the Son of God. \nThen Nebuchadnezzar came near to the mouth of the burning fiery furnace, and spake, and said, Shadrach, Meshach, and Abednego, ye servants of the most high God, come forth, and come hither. Then Shadrach, Meshach, and Abednego, came forth of the midst of the fire. \nAnd the princes, governors, and captains, and the king's counsellors, being gathered together, saw these men, upon whose bodies the fire had no power, nor was an hair of their head singed, neither were their coats changed, nor the smell of fire had passed on them. \nThen Nebuchadnezzar spake, and said, Blessed be the God of Shadrach, Meshach, and Abednego, who hath sent his angel, and delivered his servants that trusted in him, and have changed the king's word, and yielded their bodies, that they might not serve nor worship any god, except their own God. \nTherefore I make a decree, That every people, nation, and language, which speak any thing amiss against the God of Shadrach, Meshach, and Abednego, shall be cut in pieces, and their houses shall be made a dunghill: because there is no other God that can deliver after this sort. \nThen the king promoted Shadrach, Meshach, and Abednego, in the province of Babylon. \nNebuchadnezzar the king, unto all people, nations, and languages, that dwell in all the earth; Peace be multiplied unto you. \nI thought it good to shew the signs and wonders that the high God hath wrought toward me. \nHow great are his signs! and how mighty are his wonders! his kingdom is an everlasting kingdom, and his dominion is from generation to generation. \nI Nebuchadnezzar was at rest in mine house, and flourishing in my palace: \nI saw a dream which made me afraid, and the thoughts upon my bed and the visions of my head troubled me. \nTherefore made I a decree to bring in all the wise men of Babylon before me, that they might make known unto me the interpretation of the dream. \nThen came in the magicians, the astrologers, the Chaldeans, and the soothsayers: and I told the dream before them; but they did not make known unto me the interpretation thereof. \nBut at the last Daniel came in before me, whose name was Belteshazzar, according to the name of my God, and in whom is the spirit of the holy gods: and before him I told the dream, saying, \nO Belteshazzar, master of the magicians, because I know that the spirit of the holy gods is in thee, and no secret troubleth thee, tell me the visions of my dream that I have seen, and the interpretation thereof. \nThus were the visions of mine head in my bed; I saw, and behold a tree in the midst of the earth, and the height thereof was great. \nThe tree grew, and was strong, and the height thereof reached unto heaven, and the sight thereof to the end of all the earth: \nThe leaves thereof were fair, and the fruit thereof much, and in it was meat for all: the beasts of the field had shadow under it, and the fowls of the heaven dwelt in the boughs thereof, and all flesh was fed of it. \nI saw in the visions of my head upon my bed, and, behold, a watcher and an holy one came down from heaven; \nHe cried aloud, and said thus, Hew down the tree, and cut off his branches, shake off his leaves, and scatter his fruit: let the beasts get away from under it, and the fowls from his branches: \nNevertheless leave the stump of his roots in the earth, even with a band of iron and brass, in the tender grass of the field; and let it be wet with the dew of heaven, and let his portion be with the beasts in the grass of the earth: \nLet his heart be changed from man's, and let a beast's heart be given unto him; and let seven times pass over him. \nThis matter is by the decree of the watchers, and the demand by the word of the holy ones: to the intent that the living may know that the most High ruleth in the kingdom of men, and giveth it to whomsoever he will, and setteth up over it the basest of men. \nThis dream I king Nebuchadnezzar have seen. Now thou, O Belteshazzar, declare the interpretation thereof, forasmuch as all the wise men of my kingdom are not able to make known unto me the interpretation: but thou art able; for the spirit of the holy gods is in thee. \nThen Daniel, whose name was Belteshazzar, was astonied for one hour, and his thoughts troubled him. The king spake, and said, Belteshazzar, let not the dream, or the interpretation thereof, trouble thee. Belteshazzar answered and said, My lord, the dream be to them that hate thee, and the interpretation thereof to thine enemies. \nThe tree that thou sawest, which grew, and was strong, whose height reached unto the heaven, and the sight thereof to all the earth; \nWhose leaves were fair, and the fruit thereof much, and in it was meat for all; under which the beasts of the field dwelt, and upon whose branches the fowls of the heaven had their habitation: \nIt is thou, O king, that art grown and become strong: for thy greatness is grown, and reacheth unto heaven, and thy dominion to the end of the earth. \nAnd whereas the king saw a watcher and an holy one coming down from heaven, and saying, Hew the tree down, and destroy it; yet leave the stump of the roots thereof in the earth, even with a band of iron and brass, in the tender grass of the field; and let it be wet with the dew of heaven, and let his portion be with the beasts of the field, till seven times pass over him; \nThis is the interpretation, O king, and this is the decree of the most High, which is come upon my lord the king: \nThat they shall drive thee from men, and thy dwelling shall be with the beasts of the field, and they shall make thee to eat grass as oxen, and they shall wet thee with the dew of heaven, and seven times shall pass over thee, till thou know that the most High ruleth in the kingdom of men, and giveth it to whomsoever he will. \nAnd whereas they commanded to leave the stump of the tree roots; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule. \nWherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by shewing mercy to the poor; if it may be a lengthening of thy tranquillity. \nAll this came upon the king Nebuchadnezzar. \nAt the end of twelve months he walked in the palace of the kingdom of Babylon. \nThe king spake, and said, Is not this great Babylon, that I have built for the house of the kingdom by the might of my power, and for the honour of my majesty? \nWhile the word was in the king's mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar, to thee it is spoken; The kingdom is departed from thee. \nAnd they shall drive thee from men, and thy dwelling shall be with the beasts of the field: they shall make thee to eat grass as oxen, and seven times shall pass over thee, until thou know that the most High ruleth in the kingdom of men, and giveth it to whomsoever he will. \nThe same hour was the thing fulfilled upon Nebuchadnezzar: and he was driven from men, and did eat grass as oxen, and his body was wet with the dew of heaven, till his hairs were grown like eagles' feathers, and his nails like birds' claws. \nAnd at the end of the days I Nebuchadnezzar lifted up mine eyes unto heaven, and mine understanding returned unto me, and I blessed the most High, and I praised and honoured him that liveth for ever, whose dominion is an everlasting dominion, and his kingdom is from generation to generation: \nAnd all the inhabitants of the earth are reputed as nothing: and he doeth according to his will in the army of heaven, and among the inhabitants of the earth: and none can stay his hand, or say unto him, What doest thou? \nAt the same time my reason returned unto me; and for the glory of my kingdom, mine honour and brightness returned unto me; and my counsellors and my lords sought unto me; and I was established in my kingdom, and excellent majesty was added unto me. \nNow I Nebuchadnezzar praise and extol and honour the King of heaven, all whose works are truth, and his ways judgment: and those that walk in pride he is able to abase. \nBelshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand. \nBelshazzar, whiles he tasted the wine, commanded to bring the golden and silver vessels which his father Nebuchadnezzar had taken out of the temple which was in Jerusalem; that the king, and his princes, his wives, and his concubines, might drink therein. \nThen they brought the golden vessels that were taken out of the temple of the house of God which was at Jerusalem; and the king, and his princes, his wives, and his concubines, drank in them. \nThey drank wine, and praised the gods of gold, and of silver, of brass, of iron, of wood, and of stone. \nIn the same hour came forth fingers of a man's hand, and wrote over against the candlestick upon the plaister of the wall of the king's palace: and the king saw the part of the hand that wrote. \nThen the king's countenance was changed, and his thoughts troubled him, so that the joints of his loins were loosed, and his knees smote one against another. \nThe king cried aloud to bring in the astrologers, the Chaldeans, and the soothsayers. And the king spake, and said to the wise men of Babylon, Whosoever shall read this writing, and shew me the interpretation thereof, shall be clothed with scarlet, and have a chain of gold about his neck, and shall be the third ruler in the kingdom. \nThen came in all the king's wise men: but they could not read the writing, nor make known to the king the interpretation thereof. \nThen was king Belshazzar greatly troubled, and his countenance was changed in him, and his lords were astonied. \nNow the queen by reason of the words of the king and his lords came into the banquet house: and the queen spake and said, O king, live for ever: let not thy thoughts trouble thee, nor let thy countenance be changed: \nThere is a man in thy kingdom, in whom is the spirit of the holy gods; and in the days of thy father light and understanding and wisdom, like the wisdom of the gods, was found in him; whom the king Nebuchadnezzar thy father, the king, I say, thy father, made master of the magicians, astrologers, Chaldeans, and soothsayers; \nForasmuch as an excellent spirit, and knowledge, and understanding, interpreting of dreams, and shewing of hard sentences, and dissolving of doubts, were found in the same Daniel, whom the king named Belteshazzar: now let Daniel be called, and he will shew the interpretation. \nThen was Daniel brought in before the king. And the king spake and said unto Daniel, Art thou that Daniel, which art of the children of the captivity of Judah, whom the king my father brought out of Jewry? \nI have even heard of thee, that the spirit of the gods is in thee, and that light and understanding and excellent wisdom is found in thee. \nAnd now the wise men, the astrologers, have been brought in before me, that they should read this writing, and make known unto me the interpretation thereof: but they could not shew the interpretation of the thing: \nAnd I have heard of thee, that thou canst make interpretations, and dissolve doubts: now if thou canst read the writing, and make known to me the interpretation thereof, thou shalt be clothed with scarlet, and have a chain of gold about thy neck, and shalt be the third ruler in the kingdom. \nThen Daniel answered and said before the king, Let thy gifts be to thyself, and give thy rewards to another; yet I will read the writing unto the king, and make known to him the interpretation. \nO thou king, the most high God gave Nebuchadnezzar thy father a kingdom, and majesty, and glory, and honour: \nAnd for the majesty that he gave him, all people, nations, and languages, trembled and feared before him: whom he would he slew; and whom he would he kept alive; and whom he would he set up; and whom he would he put down. \nBut when his heart was lifted up, and his mind hardened in pride, he was deposed from his kingly throne, and they took his glory from him: \nAnd he was driven from the sons of men; and his heart was made like the beasts, and his dwelling was with the wild asses: they fed him with grass like oxen, and his body was wet with the dew of heaven; till he knew that the most high God ruled in the kingdom of men, and that he appointeth over it whomsoever he will. \nAnd thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this; \nBut hast lifted up thyself against the Lord of heaven; and they have brought the vessels of his house before thee, and thou, and thy lords, thy wives, and thy concubines, have drunk wine in them; and thou hast praised the gods of silver, and gold, of brass, iron, wood, and stone, which see not, nor hear, nor know: and the God in whose hand thy breath is, and whose are all thy ways, hast thou not glorified: \nThen was the part of the hand sent from him; and this writing was written. \nAnd this is the writing that was written, MENE, MENE, TEKEL, UPHARSIN. \nThis is the interpretation of the thing: MENE; God hath numbered thy kingdom, and finished it. \nTEKEL; Thou art weighed in the balances, and art found wanting. \nPERES; Thy kingdom is divided, and given to the Medes and Persians. \nThen commanded Belshazzar, and they clothed Daniel with scarlet, and put a chain of gold about his neck, and made a proclamation concerning him, that he should be the third ruler in the kingdom. \nIn that night was Belshazzar the king of the Chaldeans slain. \nAnd Darius the Median took the kingdom, being about threescore and two years old. \nIt pleased Darius to set over the kingdom an hundred and twenty princes, which should be over the whole kingdom; \nAnd over these three presidents; of whom Daniel was first: that the princes might give accounts unto them, and the king should have no damage. \nThen this Daniel was preferred above the presidents and princes, because an excellent spirit was in him; and the king thought to set him over the whole realm. \nThen the presidents and princes sought to find occasion against Daniel concerning the kingdom; but they could find none occasion nor fault; forasmuch as he was faithful, neither was there any error or fault found in him. \nThen said these men, We shall not find any occasion against this Daniel, except we find it against him concerning the law of his God. \nThen these presidents and princes assembled together to the king, and said thus unto him, King Darius, live for ever. \nAll the presidents of the kingdom, the governors, and the princes, the counsellors, and the captains, have consulted together to establish a royal statute, and to make a firm decree, that whosoever shall ask a petition of any God or man for thirty days, save of thee, O king, he shall be cast into the den of lions. \nNow, O king, establish the decree, and sign the writing, that it be not changed, according to the law of the Medes and Persians, which altereth not. \nWherefore king Darius signed the writing and the decree. \nNow when Daniel knew that the writing was signed, he went into his house; and his windows being open in his chamber toward Jerusalem, he kneeled upon his knees three times a day, and prayed, and gave thanks before his God, as he did aforetime. \nThen these men assembled, and found Daniel praying and making supplication before his God. \nThen they came near, and spake before the king concerning the king's decree; Hast thou not signed a decree, that every man that shall ask a petition of any God or man within thirty days, save of thee, O king, shall be cast into the den of lions? The king answered and said, The thing is true, according to the law of the Medes and Persians, which altereth not. \nThen answered they and said before the king, That Daniel, which is of the children of the captivity of Judah, regardeth not thee, O king, nor the decree that thou hast signed, but maketh his petition three times a day. \nThen the king, when he heard these words, was sore displeased with himself, and set his heart on Daniel to deliver him: and he laboured till the going down of the sun to deliver him. \nThen these men assembled unto the king, and said unto the king, Know, O king, that the law of the Medes and Persians is, That no decree nor statute which the king establisheth may be changed. \nThen the king commanded, and they brought Daniel, and cast him into the den of lions. Now the king spake and said unto Daniel, Thy God whom thou servest continually, he will deliver thee. \nAnd a stone was brought, and laid upon the mouth of the den; and the king sealed it with his own signet, and with the signet of his lords; that the purpose might not be changed concerning Daniel. \nThen the king went to his palace, and passed the night fasting: neither were instruments of musick brought before him: and his sleep went from him. \nThen the king arose very early in the morning, and went in haste unto the den of lions. \nAnd when he came to the den, he cried with a lamentable voice unto Daniel: and the king spake and said to Daniel, O Daniel, servant of the living God, is thy God, whom thou servest continually, able to deliver thee from the lions? \nThen said Daniel unto the king, O king, live for ever. \nMy God hath sent his angel, and hath shut the lions' mouths, that they have not hurt me: forasmuch as before him innocency was found in me; and also before thee, O king, have I done no hurt. \nThen was the king exceedingly glad for him, and commanded that they should take Daniel up out of the den. So Daniel was taken up out of the den, and no manner of hurt was found upon him, because he believed in his God. \nAnd the king commanded, and they brought those men which had accused Daniel, and they cast them into the den of lions, them, their children, and their wives; and the lions had the mastery of them, and brake all their bones in pieces or ever they came at the bottom of the den. \nThen king Darius wrote unto all people, nations, and languages, that dwell in all the earth; Peace be multiplied unto you. \nI make a decree, That in every dominion of my kingdom men tremble and fear before the God of Daniel: for he is the living God, and stedfast for ever, and his kingdom that which shall not be destroyed, and his dominion shall be even unto the end. \nHe delivereth and rescueth, and he worketh signs and wonders in heaven and in earth, who hath delivered Daniel from the power of the lions. \nSo this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian. \nIn the first year of Belshazzar king of Babylon Daniel had a dream and visions of his head upon his bed: then he wrote the dream, and told the sum of the matters. \nDaniel spake and said, I saw in my vision by night, and, behold, the four winds of the heaven strove upon the great sea. \nAnd four great beasts came up from the sea, diverse one from another. \nThe first was like a lion, and had eagle's wings: I beheld till the wings thereof were plucked, and it was lifted up from the earth, and made stand upon the feet as a man, and a man's heart was given to it. \nAnd behold another beast, a second, like to a bear, and it raised up itself on one side, and it had three ribs in the mouth of it between the teeth of it: and they said thus unto it, Arise, devour much flesh. \nAfter this I beheld, and lo another, like a leopard, which had upon the back of it four wings of a fowl; the beast had also four heads; and dominion was given to it. \nAfter this I saw in the night visions, and behold a fourth beast, dreadful and terrible, and strong exceedingly; and it had great iron teeth: it devoured and brake in pieces, and stamped the residue with the feet of it: and it was diverse from all the beasts that were before it; and it had ten horns. \nI considered the horns, and, behold, there came up among them another little horn, before whom there were three of the first horns plucked up by the roots: and, behold, in this horn were eyes like the eyes of man, and a mouth speaking great things. \nI beheld till the thrones were cast down, and the Ancient of days did sit, whose garment was white as snow, and the hair of his head like the pure wool: his throne was like the fiery flame, and his wheels as burning fire. \nA fiery stream issued and came forth from before him: thousand thousands ministered unto him, and ten thousand times ten thousand stood before him: the judgment was set, and the books were opened. \nI beheld then because of the voice of the great words which the horn spake: I beheld even till the beast was slain, and his body destroyed, and given to the burning flame. \nAs concerning the rest of the beasts, they had their dominion taken away: yet their lives were prolonged for a season and time. \nI saw in the night visions, and, behold, one like the Son of man came with the clouds of heaven, and came to the Ancient of days, and they brought him near before him. \nAnd there was given him dominion, and glory, and a kingdom, that all people, nations, and languages, should serve him: his dominion is an everlasting dominion, which shall not pass away, and his kingdom that which shall not be destroyed. \nI Daniel was grieved in my spirit in the midst of my body, and the visions of my head troubled me. \nI came near unto one of them that stood by, and asked him the truth of all this. So he told me, and made me know the interpretation of the things. \nThese great beasts, which are four, are four kings, which shall arise out of the earth. \nBut the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever. \nThen I would know the truth of the fourth beast, which was diverse from all the others, exceeding dreadful, whose teeth were of iron, and his nails of brass; which devoured, brake in pieces, and stamped the residue with his feet; \nAnd of the ten horns that were in his head, and of the other which came up, and before whom three fell; even of that horn that had eyes, and a mouth that spake very great things, whose look was more stout than his fellows. \nI beheld, and the same horn made war with the saints, and prevailed against them; \nUntil the Ancient of days came, and judgment was given to the saints of the most High; and the time came that the saints possessed the kingdom. \nThus he said, The fourth beast shall be the fourth kingdom upon earth, which shall be diverse from all kingdoms, and shall devour the whole earth, and shall tread it down, and break it in pieces. \nAnd the ten horns out of this kingdom are ten kings that shall arise: and another shall rise after them; and he shall be diverse from the first, and he shall subdue three kings. \nAnd he shall speak great words against the most High, and shall wear out the saints of the most High, and think to change times and laws: and they shall be given into his hand until a time and times and the dividing of time. \nBut the judgment shall sit, and they shall take away his dominion, to consume and to destroy it unto the end. \nAnd the kingdom and dominion, and the greatness of the kingdom under the whole heaven, shall be given to the people of the saints of the most High, whose kingdom is an everlasting kingdom, and all dominions shall serve and obey him. \nHitherto is the end of the matter. As for me Daniel, my cogitations much troubled me, and my countenance changed in me: but I kept the matter in my heart. \nIn the third year of the reign of king Belshazzar a vision appeared unto me, even unto me Daniel, after that which appeared unto me at the first. \nAnd I saw in a vision; and it came to pass, when I saw, that I was at Shushan in the palace, which is in the province of Elam; and I saw in a vision, and I was by the river of Ulai. \nThen I lifted up mine eyes, and saw, and, behold, there stood before the river a ram which had two horns: and the two horns were high; but one was higher than the other, and the higher came up last. \nI saw the ram pushing westward, and northward, and southward; so that no beasts might stand before him, neither was there any that could deliver out of his hand; but he did according to his will, and became great. \nAnd as I was considering, behold, an he goat came from the west on the face of the whole earth, and touched not the ground: and the goat had a notable horn between his eyes. \nAnd he came to the ram that had two horns, which I had seen standing before the river, and ran unto him in the fury of his power. \nAnd I saw him come close unto the ram, and he was moved with choler against him, and smote the ram, and brake his two horns: and there was no power in the ram to stand before him, but he cast him down to the ground, and stamped upon him: and there was none that could deliver the ram out of his hand. \nTherefore the he goat waxed very great: and when he was strong, the great horn was broken; and for it came up four notable ones toward the four winds of heaven. \nAnd out of one of them came forth a little horn, which waxed exceeding great, toward the south, and toward the east, and toward the pleasant land. \nAnd it waxed great, even to the host of heaven; and it cast down some of the host and of the stars to the ground, and stamped upon them. \nYea, he magnified himself even to the prince of the host, and by him the daily sacrifice was taken away, and the place of the sanctuary was cast down. \nAnd an host was given him against the daily sacrifice by reason of transgression, and it cast down the truth to the ground; and it practised, and prospered. \nThen I heard one saint speaking, and another saint said unto that certain saint which spake, How long shall be the vision concerning the daily sacrifice, and the transgression of desolation, to give both the sanctuary and the host to be trodden under foot? \nAnd he said unto me, Unto two thousand and three hundred days; then shall the sanctuary be cleansed. \nAnd it came to pass, when I, even I Daniel, had seen the vision, and sought for the meaning, then, behold, there stood before me as the appearance of a man. \nAnd I heard a man's voice between the banks of Ulai, which called, and said, Gabriel, make this man to understand the vision. \nSo he came near where I stood: and when he came, I was afraid, and fell upon my face: but he said unto me, Understand, O son of man: for at the time of the end shall be the vision. \nNow as he was speaking with me, I was in a deep sleep on my face toward the ground: but he touched me, and set me upright. \nAnd he said, Behold, I will make thee know what shall be in the last end of the indignation: for at the time appointed the end shall be. \nThe ram which thou sawest having two horns are the kings of Media and Persia. \nAnd the rough goat is the king of Grecia: and the great horn that is between his eyes is the first king. \nNow that being broken, whereas four stood up for it, four kingdoms shall stand up out of the nation, but not in his power. \nAnd in the latter time of their kingdom, when the transgressors are come to the full, a king of fierce countenance, and understanding dark sentences, shall stand up. \nAnd his power shall be mighty, but not by his own power: and he shall destroy wonderfully, and shall prosper, and practise, and shall destroy the mighty and the holy people. \nAnd through his policy also he shall cause craft to prosper in his hand; and he shall magnify himself in his heart, and by peace shall destroy many: he shall also stand up against the Prince of princes; but he shall be broken without hand. \nAnd the vision of the evening and the morning which was told is true: wherefore shut thou up the vision; for it shall be for many days. \nAnd I Daniel fainted, and was sick certain days; afterward I rose up, and did the king's business; and I was astonished at the vision, but none understood it. \nIn the first year of Darius the son of Ahasuerus, of the seed of the Medes, which was made king over the realm of the Chaldeans; \nIn the first year of his reign I Daniel understood by books the number of the years, whereof the word of the LORD came to Jeremiah the prophet, that he would accomplish seventy years in the desolations of Jerusalem. \nAnd I set my face unto the Lord God, to seek by prayer and supplications, with fasting, and sackcloth, and ashes: \nAnd I prayed unto the LORD my God, and made my confession, and said, O Lord, the great and dreadful God, keeping the covenant and mercy to them that love him, and to them that keep his commandments; \nWe have sinned, and have committed iniquity, and have done wickedly, and have rebelled, even by departing from thy precepts and from thy judgments: \nNeither have we hearkened unto thy servants the prophets, which spake in thy name to our kings, our princes, and our fathers, and to all the people of the land. \nO LORD, righteousness belongeth unto thee, but unto us confusion of faces, as at this day; to the men of Judah, and to the inhabitants of Jerusalem, and unto all Israel, that are near, and that are far off, through all the countries whither thou hast driven them, because of their trespass that they have trespassed against thee. \nO Lord, to us belongeth confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against thee. \nTo the Lord our God belong mercies and forgivenesses, though we have rebelled against him; \nNeither have we obeyed the voice of the LORD our God, to walk in his laws, which he set before us by his servants the prophets. \nYea, all Israel have transgressed thy law, even by departing, that they might not obey thy voice; therefore the curse is poured upon us, and the oath that is written in the law of Moses the servant of God, because we have sinned against him. \nAnd he hath confirmed his words, which he spake against us, and against our judges that judged us, by bringing upon us a great evil: for under the whole heaven hath not been done as hath been done upon Jerusalem. \nAs it is written in the law of Moses, all this evil is come upon us: yet made we not our prayer before the LORD our God, that we might turn from our iniquities, and understand thy truth. \nTherefore hath the LORD watched upon the evil, and brought it upon us: for the LORD our God is righteous in all his works which he doeth: for we obeyed not his voice. \nAnd now, O Lord our God, that hast brought thy people forth out of the land of Egypt with a mighty hand, and hast gotten thee renown, as at this day; we have sinned, we have done wickedly. \nO LORD, according to all thy righteousness, I beseech thee, let thine anger and thy fury be turned away from thy city Jerusalem, thy holy mountain: because for our sins, and for the iniquities of our fathers, Jerusalem and thy people are become a reproach to all that are about us. \nNow therefore, O our God, hear the prayer of thy servant, and his supplications, and cause thy face to shine upon thy sanctuary that is desolate, for the Lord's sake. \nO my God, incline thine ear, and hear; open thine eyes, and behold our desolations, and the city which is called by thy name: for we do not present our supplications before thee for our righteousnesses, but for thy great mercies. \nO Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God: for thy city and thy people are called by thy name. \nAnd whiles I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before the LORD my God for the holy mountain of my God; \nYea, whiles I was speaking in prayer, even the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening oblation. \nAnd he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding. \nAt the beginning of thy supplications the commandment came forth, and I am come to shew thee; for thou art greatly beloved: therefore understand the matter, and consider the vision. \nSeventy weeks are determined upon thy people and upon thy holy city, to finish the transgression, and to make an end of sins, and to make reconciliation for iniquity, and to bring in everlasting righteousness, and to seal up the vision and prophecy, and to anoint the most Holy. \nKnow therefore and understand, that from the going forth of the commandment to restore and to build Jerusalem unto the Messiah the Prince shall be seven weeks, and threescore and two weeks: the street shall be built again, and the wall, even in troublous times. \nAnd after threescore and two weeks shall Messiah be cut off, but not for himself: and the people of the prince that shall come shall destroy the city and the sanctuary; and the end thereof shall be with a flood, and unto the end of the war desolations are determined. \nAnd he shall confirm the covenant with many for one week: and in the midst of the week he shall cause the sacrifice and the oblation to cease, and for the overspreading of abominations he shall make it desolate, even until the consummation, and that determined shall be poured upon the desolate. \nIn the third year of Cyrus king of Persia a thing was revealed unto Daniel, whose name was called Belteshazzar; and the thing was true, but the time appointed was long: and he understood the thing, and had understanding of the vision. \nIn those days I Daniel was mourning three full weeks. \nI ate no pleasant bread, neither came flesh nor wine in my mouth, neither did I anoint myself at all, till three whole weeks were fulfilled. \nAnd in the four and twentieth day of the first month, as I was by the side of the great river, which is Hiddekel; \nThen I lifted up mine eyes, and looked, and behold a certain man clothed in linen, whose loins were girded with fine gold of Uphaz: \nHis body also was like the beryl, and his face as the appearance of lightning, and his eyes as lamps of fire, and his arms and his feet like in colour to polished brass, and the voice of his words like the voice of a multitude. \nAnd I Daniel alone saw the vision: for the men that were with me saw not the vision; but a great quaking fell upon them, so that they fled to hide themselves. \nTherefore I was left alone, and saw this great vision, and there remained no strength in me: for my comeliness was turned in me into corruption, and I retained no strength. \nYet heard I the voice of his words: and when I heard the voice of his words, then was I in a deep sleep on my face, and my face toward the ground. \nAnd, behold, an hand touched me, which set me upon my knees and upon the palms of my hands. \nAnd he said unto me, O Daniel, a man greatly beloved, understand the words that I speak unto thee, and stand upright: for unto thee am I now sent. And when he had spoken this word unto me, I stood trembling. \nThen said he unto me, Fear not, Daniel: for from the first day that thou didst set thine heart to understand, and to chasten thyself before thy God, thy words were heard, and I am come for thy words. \nBut the prince of the kingdom of Persia withstood me one and twenty days: but, lo, Michael, one of the chief princes, came to help me; and I remained there with the kings of Persia. \nNow I am come to make thee understand what shall befall thy people in the latter days: for yet the vision is for many days. \nAnd when he had spoken such words unto me, I set my face toward the ground, and I became dumb. \nAnd, behold, one like the similitude of the sons of men touched my lips: then I opened my mouth, and spake, and said unto him that stood before me, O my lord, by the vision my sorrows are turned upon me, and I have retained no strength. \nFor how can the servant of this my lord talk with this my lord? for as for me, straightway there remained no strength in me, neither is there breath left in me. \nThen there came again and touched me one like the appearance of a man, and he strengthened me, \nAnd said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he had spoken unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me. \nThen said he, Knowest thou wherefore I come unto thee? and now will I return to fight with the prince of Persia: and when I am gone forth, lo, the prince of Grecia shall come. \nBut I will shew thee that which is noted in the scripture of truth: and there is none that holdeth with me in these things, but Michael your prince. \nAlso I in the first year of Darius the Mede, even I, stood to confirm and to strengthen him. \nAnd now will I shew thee the truth. Behold, there shall stand up yet three kings in Persia; and the fourth shall be far richer than they all: and by his strength through his riches he shall stir up all against the realm of Grecia. \nAnd a mighty king shall stand up, that shall rule with great dominion, and do according to his will. \nAnd when he shall stand up, his kingdom shall be broken, and shall be divided toward the four winds of heaven; and not to his posterity, nor according to his dominion which he ruled: for his kingdom shall be plucked up, even for others beside those. \nAnd the king of the south shall be strong, and one of his princes; and he shall be strong above him, and have dominion; his dominion shall be a great dominion. \nAnd in the end of years they shall join themselves together; for the king's daughter of the south shall come to the king of the north to make an agreement: but she shall not retain the power of the arm; neither shall he stand, nor his arm: but she shall be given up, and they that brought her, and he that begat her, and he that strengthened her in these times. \nBut out of a branch of her roots shall one stand up in his estate, which shall come with an army, and shall enter into the fortress of the king of the north, and shall deal against them, and shall prevail: \nAnd shall also carry captives into Egypt their gods, with their princes, and with their precious vessels of silver and of gold; and he shall continue more years than the king of the north. \nSo the king of the south shall come into his kingdom, and shall return into his own land. \nBut his sons shall be stirred up, and shall assemble a multitude of great forces: and one shall certainly come, and overflow, and pass through: then shall he return, and be stirred up, even to his fortress. \nAnd the king of the south shall be moved with choler, and shall come forth and fight with him, even with the king of the north: and he shall set forth a great multitude; but the multitude shall be given into his hand. \nAnd when he hath taken away the multitude, his heart shall be lifted up; and he shall cast down many ten thousands: but he shall not be strengthened by it. \nFor the king of the north shall return, and shall set forth a multitude greater than the former, and shall certainly come after certain years with a great army and with much riches. \nAnd in those times there shall many stand up against the king of the south: also the robbers of thy people shall exalt themselves to establish the vision; but they shall fall. \nSo the king of the north shall come, and cast up a mount, and take the most fenced cities: and the arms of the south shall not withstand, neither his chosen people, neither shall there be any strength to withstand. \nBut he that cometh against him shall do according to his own will, and none shall stand before him: and he shall stand in the glorious land, which by his hand shall be consumed. \nHe shall also set his face to enter with the strength of his whole kingdom, and upright ones with him; thus shall he do: and he shall give him the daughter of women, corrupting her: but she shall not stand on his side, neither be for him. \nAfter this shall he turn his face unto the isles, and shall take many: but a prince for his own behalf shall cause the reproach offered by him to cease; without his own reproach he shall cause it to turn upon him. \nThen he shall turn his face toward the fort of his own land: but he shall stumble and fall, and not be found. \nThen shall stand up in his estate a raiser of taxes in the glory of the kingdom: but within few days he shall be destroyed, neither in anger, nor in battle. \nAnd in his estate shall stand up a vile person, to whom they shall not give the honour of the kingdom: but he shall come in peaceably, and obtain the kingdom by flatteries. \nAnd with the arms of a flood shall they be overflown from before him, and shall be broken; yea, also the prince of the covenant. \nAnd after the league made with him he shall work deceitfully: for he shall come up, and shall become strong with a small people. \nHe shall enter peaceably even upon the fattest places of the province; and he shall do that which his fathers have not done, nor his fathers' fathers; he shall scatter among them the prey, and spoil, and riches: yea, and he shall forecast his devices against the strong holds, even for a time. \nAnd he shall stir up his power and his courage against the king of the south with a great army; and the king of the south shall be stirred up to battle with a very great and mighty army; but he shall not stand: for they shall forecast devices against him. \nYea, they that feed of the portion of his meat shall destroy him, and his army shall overflow: and many shall fall down slain. \nAnd both of these kings' hearts shall be to do mischief, and they shall speak lies at one table; but it shall not prosper: for yet the end shall be at the time appointed. \nThen shall he return into his land with great riches; and his heart shall be against the holy covenant; and he shall do exploits, and return to his own land. \nAt the time appointed he shall return, and come toward the south; but it shall not be as the former, or as the latter. \nFor the ships of Chittim shall come against him: therefore he shall be grieved, and return, and have indignation against the holy covenant: so shall he do; he shall even return, and have intelligence with them that forsake the holy covenant. \nAnd arms shall stand on his part, and they shall pollute the sanctuary of strength, and shall take away the daily sacrifice, and they shall place the abomination that maketh desolate. \nAnd such as do wickedly against the covenant shall he corrupt by flatteries: but the people that do know their God shall be strong, and do exploits. \nAnd they that understand among the people shall instruct many: yet they shall fall by the sword, and by flame, by captivity, and by spoil, many days. \nNow when they shall fall, they shall be holpen with a little help: but many shall cleave to them with flatteries. \nAnd some of them of understanding shall fall, to try them, and to purge, and to make them white, even to the time of the end: because it is yet for a time appointed. \nAnd the king shall do according to his will; and he shall exalt himself, and magnify himself above every god, and shall speak marvellous things against the God of gods, and shall prosper till the indignation be accomplished: for that that is determined shall be done. \nNeither shall he regard the God of his fathers, nor the desire of women, nor regard any god: for he shall magnify himself above all. \nBut in his estate shall he honour the God of forces: and a god whom his fathers knew not shall he honour with gold, and silver, and with precious stones, and pleasant things. \nThus shall he do in the most strong holds with a strange god, whom he shall acknowledge and increase with glory: and he shall cause them to rule over many, and shall divide the land for gain. \nAnd at the time of the end shall the king of the south push at him: and the king of the north shall come against him like a whirlwind, with chariots, and with horsemen, and with many ships; and he shall enter into the countries, and shall overflow and pass over. \nHe shall enter also into the glorious land, and many countries shall be overthrown: but these shall escape out of his hand, even Edom, and Moab, and the chief of the children of Ammon. \nHe shall stretch forth his hand also upon the countries: and the land of Egypt shall not escape. \nBut he shall have power over the treasures of gold and of silver, and over all the precious things of Egypt: and the Libyans and the Ethiopians shall be at his steps. \nBut tidings out of the east and out of the north shall trouble him: therefore he shall go forth with great fury to destroy, and utterly to make away many. \nAnd he shall plant the tabernacles of his palace between the seas in the glorious holy mountain; yet he shall come to his end, and none shall help him. \nAnd at that time shall Michael stand up, the great prince which standeth for the children of thy people: and there shall be a time of trouble, such as never was since there was a nation even to that same time: and at that time thy people shall be delivered, every one that shall be found written in the book. \nAnd many of them that sleep in the dust of the earth shall awake, some to everlasting life, and some to shame and everlasting contempt. \nAnd they that be wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever. \nBut thou, O Daniel, shut up the words, and seal the book, even to the time of the end: many shall run to and fro, and knowledge shall be increased. \nThen I Daniel looked, and, behold, there stood other two, the one on this side of the bank of the river, and the other on that side of the bank of the river. \nAnd one said to the man clothed in linen, which was upon the waters of the river, How long shall it be to the end of these wonders? \nAnd I heard the man clothed in linen, which was upon the waters of the river, when he held up his right hand and his left hand unto heaven, and sware by him that liveth for ever that it shall be for a time, times, and an half; and when he shall have accomplished to scatter the power of the holy people, all these things shall be finished. \nAnd I heard, but I understood not: then said I, O my Lord, what shall be the end of these things? \nAnd he said, Go thy way, Daniel: for the words are closed up and sealed till the time of the end. \nMany shall be purified, and made white, and tried; but the wicked shall do wickedly: and none of the wicked shall understand; but the wise shall understand. \nAnd from the time that the daily sacrifice shall be taken away, and the abomination that maketh desolate set up, there shall be a thousand two hundred and ninety days. \nBlessed is he that waiteth, and cometh to the thousand three hundred and five and thirty days. \nBut go thou thy way till the end be: for thou shalt rest, and stand in thy lot at the end of the days. \nThe word of the LORD that came unto Hosea, the son of Beeri, in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah, and in the days of Jeroboam the son of Joash, king of Israel. \nThe beginning of the word of the LORD by Hosea. And the LORD said to Hosea, Go, take unto thee a wife of whoredoms and children of whoredoms: for the land hath committed great whoredom, departing from the LORD. \nSo he went and took Gomer the daughter of Diblaim; which conceived, and bare him a son. \nAnd the LORD said unto him, Call his name Jezreel; for yet a little while, and I will avenge the blood of Jezreel upon the house of Jehu, and will cause to cease the kingdom of the house of Israel. \nAnd it shall come to pass at that day, that I will break the bow of Israel, in the valley of Jezreel. \nAnd she conceived again, and bare a daughter. And God said unto him, Call her name Loruhamah: for I will no more have mercy upon the house of Israel; but I will utterly take them away. \nBut I will have mercy upon the house of Judah, and will save them by the LORD their God, and will not save them by bow, nor by sword, nor by battle, by horses, nor by horsemen. \nNow when she had weaned Loruhamah, she conceived, and bare a son. \nThen said God, Call his name Loammi: for ye are not my people, and I will not be your God. \nYet the number of the children of Israel shall be as the sand of the sea, which cannot be measured nor numbered; and it shall come to pass, that in the place where it was said unto them, Ye are not my people, there it shall be said unto them, Ye are the sons of the living God. \nThen shall the children of Judah and the children of Israel be gathered together, and appoint themselves one head, and they shall come up out of the land: for great shall be the day of Jezreel. \nSay ye unto your brethren, Ammi; and to your sisters, Ruhamah. \nPlead with your mother, plead: for she is not my wife, neither am I her husband: let her therefore put away her whoredoms out of her sight, and her adulteries from between her breasts; \nLest I strip her naked, and set her as in the day that she was born, and make her as a wilderness, and set her like a dry land, and slay her with thirst. \nAnd I will not have mercy upon her children; for they be the children of whoredoms. \nFor their mother hath played the harlot: she that conceived them hath done shamefully: for she said, I will go after my lovers, that give me my bread and my water, my wool and my flax, mine oil and my drink. \nTherefore, behold, I will hedge up thy way with thorns, and make a wall, that she shall not find her paths. \nAnd she shall follow after her lovers, but she shall not overtake them; and she shall seek them, but shall not find them: then shall she say, I will go and return to my first husband; for then was it better with me than now. \nFor she did not know that I gave her corn, and wine, and oil, and multiplied her silver and gold, which they prepared for Baal. \nTherefore will I return, and take away my corn in the time thereof, and my wine in the season thereof, and will recover my wool and my flax given to cover her nakedness. \nAnd now will I discover her lewdness in the sight of her lovers, and none shall deliver her out of mine hand. \nI will also cause all her mirth to cease, her feast days, her new moons, and her sabbaths, and all her solemn feasts. \nAnd I will destroy her vines and her fig trees, whereof she hath said, These are my rewards that my lovers have given me: and I will make them a forest, and the beasts of the field shall eat them. \nAnd I will visit upon her the days of Baalim, wherein she burned incense to them, and she decked herself with her earrings and her jewels, and she went after her lovers, and forgat me, saith the LORD. \nTherefore, behold, I will allure her, and bring her into the wilderness, and speak comfortably unto her. \nAnd I will give her her vineyards from thence, and the valley of Achor for a door of hope: and she shall sing there, as in the days of her youth, and as in the day when she came up out of the land of Egypt. \nAnd it shall be at that day, saith the LORD, that thou shalt call me Ishi; and shalt call me no more Baali. \nFor I will take away the names of Baalim out of her mouth, and they shall no more be remembered by their name. \nAnd in that day will I make a covenant for them with the beasts of the field and with the fowls of heaven, and with the creeping things of the ground: and I will break the bow and the sword and the battle out of the earth, and will make them to lie down safely. \nAnd I will betroth thee unto me for ever; yea, I will betroth thee unto me in righteousness, and in judgment, and in lovingkindness, and in mercies. \nI will even betroth thee unto me in faithfulness: and thou shalt know the LORD. \nAnd it shall come to pass in that day, I will hear, saith the LORD, I will hear the heavens, and they shall hear the earth; \nAnd the earth shall hear the corn, and the wine, and the oil; and they shall hear Jezreel. \nAnd I will sow her unto me in the earth; and I will have mercy upon her that had not obtained mercy; and I will say to them which were not my people, Thou art my people; and they shall say, Thou art my God. \nThen said the LORD unto me, Go yet, love a woman beloved of her friend, yet an adulteress, according to the love of the LORD toward the children of Israel, who look to other gods, and love flagons of wine. \nSo I bought her to me for fifteen pieces of silver, and for an homer of barley, and an half homer of barley: \nAnd I said unto her, Thou shalt abide for me many days; thou shalt not play the harlot, and thou shalt not be for another man: so will I also be for thee. \nFor the children of Israel shall abide many days without a king, and without a prince, and without a sacrifice, and without an image, and without an ephod, and without teraphim: \nAfterward shall the children of Israel return, and seek the LORD their God, and David their king; and shall fear the LORD and his goodness in the latter days. \nHear the word of the LORD, ye children of Israel: for the LORD hath a controversy with the inhabitants of the land, because there is no truth, nor mercy, nor knowledge of God in the land. \nBy swearing, and lying, and killing, and stealing, and committing adultery, they break out, and blood toucheth blood. \nTherefore shall the land mourn, and every one that dwelleth therein shall languish, with the beasts of the field, and with the fowls of heaven; yea, the fishes of the sea also shall be taken away. \nYet let no man strive, nor reprove another: for thy people are as they that strive with the priest. \nTherefore shalt thou fall in the day, and the prophet also shall fall with thee in the night, and I will destroy thy mother. \nMy people are destroyed for lack of knowledge: because thou hast rejected knowledge, I will also reject thee, that thou shalt be no priest to me: seeing thou hast forgotten the law of thy God, I will also forget thy children. \nAs they were increased, so they sinned against me: therefore will I change their glory into shame. \nThey eat up the sin of my people, and they set their heart on their iniquity. \nAnd there shall be, like people, like priest: and I will punish them for their ways, and reward them their doings. \nFor they shall eat, and not have enough: they shall commit whoredom, and shall not increase: because they have left off to take heed to the LORD. \nWhoredom and wine and new wine take away the heart. \nMy people ask counsel at their stocks, and their staff declareth unto them: for the spirit of whoredoms hath caused them to err, and they have gone a whoring from under their God. \nThey sacrifice upon the tops of the mountains, and burn incense upon the hills, under oaks and poplars and elms, because the shadow thereof is good: therefore your daughters shall commit whoredom, and your spouses shall commit adultery. \nI will not punish your daughters when they commit whoredom, nor your spouses when they commit adultery: for themselves are separated with whores, and they sacrifice with harlots: therefore the people that doth not understand shall fall. \nThough thou, Israel, play the harlot, yet let not Judah offend; and come not ye unto Gilgal, neither go ye up to Bethaven, nor swear, The LORD liveth. \nFor Israel slideth back as a backsliding heifer: now the LORD will feed them as a lamb in a large place. \nEphraim is joined to idols: let him alone. \nTheir drink is sour: they have committed whoredom continually: her rulers with shame do love, Give ye. \nThe wind hath bound her up in her wings, and they shall be ashamed because of their sacrifices. \nHear ye this, O priests; and hearken, ye house of Israel; and give ye ear, O house of the king; for judgment is toward you, because ye have been a snare on Mizpah, and a net spread upon Tabor. \nAnd the revolters are profound to make slaughter, though I have been a rebuker of them all. \nI know Ephraim, and Israel is not hid from me: for now, O Ephraim, thou committest whoredom, and Israel is defiled. \nThey will not frame their doings to turn unto their God: for the spirit of whoredoms is in the midst of them, and they have not known the LORD. \nAnd the pride of Israel doth testify to his face: therefore shall Israel and Ephraim fall in their iniquity: Judah also shall fall with them. \nThey shall go with their flocks and with their herds to seek the LORD; but they shall not find him; he hath withdrawn himself from them. \nThey have dealt treacherously against the LORD: for they have begotten strange children: now shall a month devour them with their portions. \nBlow ye the cornet in Gibeah, and the trumpet in Ramah: cry aloud at Bethaven, after thee, O Benjamin. \nEphraim shall be desolate in the day of rebuke: among the tribes of Israel have I made known that which shall surely be. \nThe princes of Judah were like them that remove the bound: therefore I will pour out my wrath upon them like water. \nEphraim is oppressed and broken in judgment, because he willingly walked after the commandment. \nTherefore will I be unto Ephraim as a moth, and to the house of Judah as rottenness. \nWhen Ephraim saw his sickness, and Judah saw his wound, then went Ephraim to the Assyrian, and sent to king Jareb: yet could he not heal you, nor cure you of your wound. \nFor I will be unto Ephraim as a lion, and as a young lion to the house of Judah: I, even I, will tear and go away; I will take away, and none shall rescue him. \nI will go and return to my place, till they acknowledge their offence, and seek my face: in their affliction they will seek me early. \nCome, and let us return unto the LORD: for he hath torn, and he will heal us; he hath smitten, and he will bind us up. \nAfter two days will he revive us: in the third day he will raise us up, and we shall live in his sight. \nThen shall we know, if we follow on to know the LORD: his going forth is prepared as the morning; and he shall come unto us as the rain, as the latter and former rain unto the earth. \nO Ephraim, what shall I do unto thee? O Judah, what shall I do unto thee? for your goodness is as a morning cloud, and as the early dew it goeth away. \nTherefore have I hewed them by the prophets; I have slain them by the words of my mouth: and thy judgments are as the light that goeth forth. \nFor I desired mercy, and not sacrifice; and the knowledge of God more than burnt offerings. \nBut they like men have transgressed the covenant: there have they dealt treacherously against me. \nGilead is a city of them that work iniquity, and is polluted with blood. \nAnd as troops of robbers wait for a man, so the company of priests murder in the way by consent: for they commit lewdness. \nI have seen an horrible thing in the house of Israel: there is the whoredom of Ephraim, Israel is defiled. \nAlso, O Judah, he hath set an harvest for thee, when I returned the captivity of my people. \nWhen I would have healed Israel, then the iniquity of Ephraim was discovered, and the wickedness of Samaria: for they commit falsehood; and the thief cometh in, and the troop of robbers spoileth without. \nAnd they consider not in their hearts that I remember all their wickedness: now their own doings have beset them about; they are before my face. \nThey make the king glad with their wickedness, and the princes with their lies. \nThey are all adulterers, as an oven heated by the baker, who ceaseth from raising after he hath kneaded the dough, until it be leavened. \nIn the day of our king the princes have made him sick with bottles of wine; he stretched out his hand with scorners. \nFor they have made ready their heart like an oven, whiles they lie in wait: their baker sleepeth all the night; in the morning it burneth as a flaming fire. \nThey are all hot as an oven, and have devoured their judges; all their kings are fallen: there is none among them that calleth unto me. \nEphraim, he hath mixed himself among the people; Ephraim is a cake not turned. \nStrangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not. \nAnd the pride of Israel testifieth to his face: and they do not return to the LORD their God, nor seek him for all this. \nEphraim also is like a silly dove without heart: they call to Egypt, they go to Assyria. \nWhen they shall go, I will spread my net upon them; I will bring them down as the fowls of the heaven; I will chastise them, as their congregation hath heard. \nWoe unto them! for they have fled from me: destruction unto them! because they have transgressed against me: though I have redeemed them, yet they have spoken lies against me. \nAnd they have not cried unto me with their heart, when they howled upon their beds: they assemble themselves for corn and wine, and they rebel against me. \nThough I have bound and strengthened their arms, yet do they imagine mischief against me. \nThey return, but not to the most High: they are like a deceitful bow: their princes shall fall by the sword for the rage of their tongue: this shall be their derision in the land of Egypt. \nSet the trumpet to thy mouth. He shall come as an eagle against the house of the LORD, because they have transgressed my covenant, and trespassed against my law. \nIsrael shall cry unto me, My God, we know thee. \nIsrael hath cast off the thing that is good: the enemy shall pursue him. \nThey have set up kings, but not by me: they have made princes, and I knew it not: of their silver and their gold have they made them idols, that they may be cut off. \nThy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency? \nFor from Israel was it also: the workman made it; therefore it is not God: but the calf of Samaria shall be broken in pieces. \nFor they have sown the wind, and they shall reap the whirlwind: it hath no stalk; the bud shall yield no meal: if so be it yield, the strangers shall swallow it up. \nIsrael is swallowed up: now shall they be among the Gentiles as a vessel wherein is no pleasure. \nFor they are gone up to Assyria, a wild ass alone by himself: Ephraim hath hired lovers. \nYea, though they have hired among the nations, now will I gather them, and they shall sorrow a little for the burden of the king of princes. \nBecause Ephraim hath made many altars to sin, altars shall be unto him to sin. \nI have written to him the great things of my law, but they were counted as a strange thing. \nThey sacrifice flesh for the sacrifices of mine offerings, and eat it; but the LORD accepteth them not; now will he remember their iniquity, and visit their sins: they shall return to Egypt. \nFor Israel hath forgotten his Maker, and buildeth temples; and Judah hath multiplied fenced cities: but I will send a fire upon his cities, and it shall devour the palaces thereof. \nRejoice not, O Israel, for joy, as other people: for thou hast gone a whoring from thy God, thou hast loved a reward upon every cornfloor. \nThe floor and the winepress shall not feed them, and the new wine shall fail in her. \nThey shall not dwell in the LORD's land; but Ephraim shall return to Egypt, and they shall eat unclean things in Assyria. \nThey shall not offer wine offerings to the LORD, neither shall they be pleasing unto him: their sacrifices shall be unto them as the bread of mourners; all that eat thereof shall be polluted: for their bread for their soul shall not come into the house of the LORD. \nWhat will ye do in the solemn day, and in the day of the feast of the LORD? \nFor, lo, they are gone because of destruction: Egypt shall gather them up, Memphis shall bury them: the pleasant places for their silver, nettles shall possess them: thorns shall be in their tabernacles. \nThe days of visitation are come, the days of recompence are come; Israel shall know it: the prophet is a fool, the spiritual man is mad, for the multitude of thine iniquity, and the great hatred. \nThe watchman of Ephraim was with my God: but the prophet is a snare of a fowler in all his ways, and hatred in the house of his God. \nThey have deeply corrupted themselves, as in the days of Gibeah: therefore he will remember their iniquity, he will visit their sins. \nI found Israel like grapes in the wilderness; I saw your fathers as the firstripe in the fig tree at her first time: but they went to Baalpeor, and separated themselves unto that shame; and their abominations were according as they loved. \nAs for Ephraim, their glory shall fly away like a bird, from the birth, and from the womb, and from the conception. \nThough they bring up their children, yet will I bereave them, that there shall not be a man left: yea, woe also to them when I depart from them! \nEphraim, as I saw Tyrus, is planted in a pleasant place: but Ephraim shall bring forth his children to the murderer. \nGive them, O LORD: what wilt thou give? give them a miscarrying womb and dry breasts. \nAll their wickedness is in Gilgal: for there I hated them: for the wickedness of their doings I will drive them out of mine house, I will love them no more: all their princes are revolters. \nEphraim is smitten, their root is dried up, they shall bear no fruit: yea, though they bring forth, yet will I slay even the beloved fruit of their womb. \nMy God will cast them away, because they did not hearken unto him: and they shall be wanderers among the nations. \nIsrael is an empty vine, he bringeth forth fruit unto himself: according to the multitude of his fruit he hath increased the altars; according to the goodness of his land they have made goodly images. \nTheir heart is divided; now shall they be found faulty: he shall break down their altars, he shall spoil their images. \nFor now they shall say, We have no king, because we feared not the LORD; what then should a king do to us? \nThey have spoken words, swearing falsely in making a covenant: thus judgment springeth up as hemlock in the furrows of the field. \nThe inhabitants of Samaria shall fear because of the calves of Bethaven: for the people thereof shall mourn over it, and the priests thereof that rejoiced on it, for the glory thereof, because it is departed from it. \nIt shall be also carried unto Assyria for a present to king Jareb: Ephraim shall receive shame, and Israel shall be ashamed of his own counsel. \nAs for Samaria, her king is cut off as the foam upon the water. \nThe high places also of Aven, the sin of Israel, shall be destroyed: the thorn and the thistle shall come up on their altars; and they shall say to the mountains, Cover us; and to the hills, Fall on us. \nO Israel, thou hast sinned from the days of Gibeah: there they stood: the battle in Gibeah against the children of iniquity did not overtake them. \nIt is in my desire that I should chastise them; and the people shall be gathered against them, when they shall bind themselves in their two furrows. \nAnd Ephraim is as an heifer that is taught, and loveth to tread out the corn; but I passed over upon her fair neck: I will make Ephraim to ride; Judah shall plow, and Jacob shall break his clods. \nSow to yourselves in righteousness, reap in mercy; break up your fallow ground: for it is time to seek the LORD, till he come and rain righteousness upon you. \nYe have plowed wickedness, ye have reaped iniquity; ye have eaten the fruit of lies: because thou didst trust in thy way, in the multitude of thy mighty men. \nTherefore shall a tumult arise among thy people, and all thy fortresses shall be spoiled, as Shalman spoiled Betharbel in the day of battle: the mother was dashed in pieces upon her children. \nSo shall Bethel do unto you because of your great wickedness: in a morning shall the king of Israel utterly be cut off. \nWhen Israel was a child, then I loved him, and called my son out of Egypt. \nAs they called them, so they went from them: they sacrificed unto Baalim, and burned incense to graven images. \nI taught Ephraim also to go, taking them by their arms; but they knew not that I healed them. \nI drew them with cords of a man, with bands of love: and I was to them as they that take off the yoke on their jaws, and I laid meat unto them. \nHe shall not return into the land of Egypt, and the Assyrian shall be his king, because they refused to return. \nAnd the sword shall abide on his cities, and shall consume his branches, and devour them, because of their own counsels. \nAnd my people are bent to backsliding from me: though they called them to the most High, none at all would exalt him. \nHow shall I give thee up, Ephraim? how shall I deliver thee, Israel? how shall I make thee as Admah? how shall I set thee as Zeboim? mine heart is turned within me, my repentings are kindled together. \nI will not execute the fierceness of mine anger, I will not return to destroy Ephraim: for I am God, and not man; the Holy One in the midst of thee: and I will not enter into the city. \nThey shall walk after the LORD: he shall roar like a lion: when he shall roar, then the children shall tremble from the west. \nThey shall tremble as a bird out of Egypt, and as a dove out of the land of Assyria: and I will place them in their houses, saith the LORD. \nEphraim compasseth me about with lies, and the house of Israel with deceit: but Judah yet ruleth with God, and is faithful with the saints. \nEphraim feedeth on wind, and followeth after the east wind: he daily increaseth lies and desolation; and they do make a covenant with the Assyrians, and oil is carried into Egypt. \nThe LORD hath also a controversy with Judah, and will punish Jacob according to his ways; according to his doings will he recompense him. \nHe took his brother by the heel in the womb, and by his strength he had power with God: \nYea, he had power over the angel, and prevailed: he wept, and made supplication unto him: he found him in Bethel, and there he spake with us; \nEven the LORD God of hosts; the LORD is his memorial. \nTherefore turn thou to thy God: keep mercy and judgment and wait on thy God continually. \nHe is a merchant, the balances of deceit are in his hand: he loveth to oppress. \nAnd Ephraim said, Yet I am become rich, I have found me out substance: in all my labours they shall find none iniquity in me that were sin. \nAnd I that am the LORD thy God from the land of Egypt will yet make thee to dwell in tabernacles, as in the days of the solemn feast. \nI have also spoken by the prophets, and I have multiplied visions, and used similitudes, by the ministry of the prophets. \nIs there iniquity in Gilead? surely they are vanity: they sacrifice bullocks in Gilgal; yea, their altars are as heaps in the furrows of the fields. \nAnd Jacob fled into the country of Syria, and Israel served for a wife, and for a wife he kept sheep. \nAnd by a prophet the LORD brought Israel out of Egypt, and by a prophet was he preserved. \nEphraim provoked him to anger most bitterly: therefore shall he leave his blood upon him, and his reproach shall his LORD return unto him. \nWhen Ephraim spake trembling, he exalted himself in Israel; but when he offended in Baal, he died. \nAnd now they sin more and more, and have made them molten images of their silver, and idols according to their own understanding, all of it the work of the craftsmen: they say of them, Let the men that sacrifice kiss the calves. \nTherefore they shall be as the morning cloud and as the early dew that passeth away, as the chaff that is driven with the whirlwind out of the floor, and as the smoke out of the chimney. \nYet I am the LORD thy God from the land of Egypt, and thou shalt know no god but me: for there is no saviour beside me. \nI did know thee in the wilderness, in the land of great drought. \nAccording to their pasture, so were they filled; they were filled, and their heart was exalted; therefore have they forgotten me. \nTherefore I will be unto them as a lion: as a leopard by the way will I observe them: \nI will meet them as a bear that is bereaved of her whelps, and will rend the caul of their heart, and there will I devour them like a lion: the wild beast shall tear them. \nO Israel, thou hast destroyed thyself; but in me is thine help. \nI will be thy king: where is any other that may save thee in all thy cities? and thy judges of whom thou saidst, Give me a king and princes? \nI gave thee a king in mine anger, and took him away in my wrath. \nThe iniquity of Ephraim is bound up; his sin is hid. \nThe sorrows of a travailing woman shall come upon him: he is an unwise son; for he should not stay long in the place of the breaking forth of children. \nI will ransom them from the power of the grave; I will redeem them from death: O death, I will be thy plagues; O grave, I will be thy destruction: repentance shall be hid from mine eyes. \nThough he be fruitful among his brethren, an east wind shall come, the wind of the LORD shall come up from the wilderness, and his spring shall become dry, and his fountain shall be dried up: he shall spoil the treasure of all pleasant vessels. \nSamaria shall become desolate; for she hath rebelled against her God: they shall fall by the sword: their infants shall be dashed in pieces, and their women with child shall be ripped up. \nO israel, return unto the LORD thy God; for thou hast fallen by thine iniquity. \nTake with you words, and turn to the LORD: say unto him, Take away all iniquity, and receive us graciously: so will we render the calves of our lips. \nAsshur shall not save us; we will not ride upon horses: neither will we say any more to the work of our hands, Ye are our gods: for in thee the fatherless findeth mercy. \nI will heal their backsliding, I will love them freely: for mine anger is turned away from him. \nI will be as the dew unto Israel: he shall grow as the lily, and cast forth his roots as Lebanon. \nHis branches shall spread, and his beauty shall be as the olive tree, and his smell as Lebanon. \nThey that dwell under his shadow shall return; they shall revive as the corn, and grow as the vine: the scent thereof shall be as the wine of Lebanon. \nEphraim shall say, What have I to do any more with idols? I have heard him, and observed him: I am like a green fir tree. From me is thy fruit found. \nWho is wise, and he shall understand these things? prudent, and he shall know them? for the ways of the LORD are right, and the just shall walk in them: but the transgressors shall fall therein. \nThe word of the LORD that came to Joel the son of Pethuel. \nHear this, ye old men, and give ear, all ye inhabitants of the land. Hath this been in your days, or even in the days of your fathers? \nTell ye your children of it, and let your children tell their children, and their children another generation. \nThat which the palmerworm hath left hath the locust eaten; and that which the locust hath left hath the cankerworm eaten; and that which the cankerworm hath left hath the caterpiller eaten. \nAwake, ye drunkards, and weep; and howl, all ye drinkers of wine, because of the new wine; for it is cut off from your mouth. \nFor a nation is come up upon my land, strong, and without number, whose teeth are the teeth of a lion, and he hath the cheek teeth of a great lion. \nHe hath laid my vine waste, and barked my fig tree: he hath made it clean bare, and cast it away; the branches thereof are made white. \nLament like a virgin girded with sackcloth for the husband of her youth. \nThe meat offering and the drink offering is cut off from the house of the LORD; the priests, the LORD's ministers, mourn. \nThe field is wasted, the land mourneth; for the corn is wasted: the new wine is dried up, the oil languisheth. \nBe ye ashamed, O ye husbandmen; howl, O ye vinedressers, for the wheat and for the barley; because the harvest of the field is perished. \nThe vine is dried up, and the fig tree languisheth; the pomegranate tree, the palm tree also, and the apple tree, even all the trees of the field, are withered: because joy is withered away from the sons of men. \nGird yourselves, and lament, ye priests: howl, ye ministers of the altar: come, lie all night in sackcloth, ye ministers of my God: for the meat offering and the drink offering is withholden from the house of your God. \nSanctify ye a fast, call a solemn assembly, gather the elders and all the inhabitants of the land into the house of the LORD your God, and cry unto the LORD, \nAlas for the day! for the day of the LORD is at hand, and as a destruction from the Almighty shall it come. \nIs not the meat cut off before our eyes, yea, joy and gladness from the house of our God? \nThe seed is rotten under their clods, the garners are laid desolate, the barns are broken down; for the corn is withered. \nHow do the beasts groan! the herds of cattle are perplexed, because they have no pasture; yea, the flocks of sheep are made desolate. \nO LORD, to thee will I cry: for the fire hath devoured the pastures of the wilderness, and the flame hath burned all the trees of the field. \nThe beasts of the field cry also unto thee: for the rivers of waters are dried up, and the fire hath devoured the pastures of the wilderness. \nBlow ye the trumpet in Zion, and sound an alarm in my holy mountain: let all the inhabitants of the land tremble: for the day of the LORD cometh, for it is nigh at hand; \nA day of darkness and of gloominess, a day of clouds and of thick darkness, as the morning spread upon the mountains: a great people and a strong; there hath not been ever the like, neither shall be any more after it, even to the years of many generations. \nA fire devoureth before them; and behind them a flame burneth: the land is as the garden of Eden before them, and behind them a desolate wilderness; yea, and nothing shall escape them. \nThe appearance of them is as the appearance of horses; and as horsemen, so shall they run. \nLike the noise of chariots on the tops of mountains shall they leap, like the noise of a flame of fire that devoureth the stubble, as a strong people set in battle array. \nBefore their face the people shall be much pained: all faces shall gather blackness. \nThey shall run like mighty men; they shall climb the wall like men of war; and they shall march every one on his ways, and they shall not break their ranks: \nNeither shall one thrust another; they shall walk every one in his path: and when they fall upon the sword, they shall not be wounded. \nThey shall run to and fro in the city; they shall run upon the wall, they shall climb up upon the houses; they shall enter in at the windows like a thief. \nThe earth shall quake before them; the heavens shall tremble: the sun and the moon shall be dark, and the stars shall withdraw their shining: \nAnd the LORD shall utter his voice before his army: for his camp is very great: for he is strong that executeth his word: for the day of the LORD is great and very terrible; and who can abide it? \nTherefore also now, saith the LORD, turn ye even to me with all your heart, and with fasting, and with weeping, and with mourning: \nAnd rend your heart, and not your garments, and turn unto the LORD your God: for he is gracious and merciful, slow to anger, and of great kindness, and repenteth him of the evil. \nWho knoweth if he will return and repent, and leave a blessing behind him; even a meat offering and a drink offering unto the LORD your God? \nBlow the trumpet in Zion, sanctify a fast, call a solemn assembly: \nGather the people, sanctify the congregation, assemble the elders, gather the children, and those that suck the breasts: let the bridegroom go forth of his chamber, and the bride out of her closet. \nLet the priests, the ministers of the LORD, weep between the porch and the altar, and let them say, Spare thy people, O LORD, and give not thine heritage to reproach, that the heathen should rule over them: wherefore should they say among the people, Where is their God? \nThen will the LORD be jealous for his land, and pity his people. \nYea, the LORD will answer and say unto his people, Behold, I will send you corn, and wine, and oil, and ye shall be satisfied therewith: and I will no more make you a reproach among the heathen: \nBut I will remove far off from you the northern army, and will drive him into a land barren and desolate, with his face toward the east sea, and his hinder part toward the utmost sea, and his stink shall come up, and his ill savour shall come up, because he hath done great things. \nFear not, O land; be glad and rejoice: for the LORD will do great things. \nBe not afraid, ye beasts of the field: for the pastures of the wilderness do spring, for the tree beareth her fruit, the fig tree and the vine do yield their strength. \nBe glad then, ye children of Zion, and rejoice in the LORD your God: for he hath given you the former rain moderately, and he will cause to come down for you the rain, the former rain, and the latter rain in the first month. \nAnd the floors shall be full of wheat, and the vats shall overflow with wine and oil. \nAnd I will restore to you the years that the locust hath eaten, the cankerworm, and the caterpiller, and the palmerworm, my great army which I sent among you. \nAnd ye shall eat in plenty, and be satisfied, and praise the name of the LORD your God, that hath dealt wondrously with you: and my people shall never be ashamed. \nAnd ye shall know that I am in the midst of Israel, and that I am the LORD your God, and none else: and my people shall never be ashamed. \nAnd it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions: \nAnd also upon the servants and upon the handmaids in those days will I pour out my spirit. \nAnd I will shew wonders in the heavens and in the earth, blood, and fire, and pillars of smoke. \nThe sun shall be turned into darkness, and the moon into blood, before the great and terrible day of the LORD come. \nAnd it shall come to pass, that whosoever shall call on the name of the LORD shall be delivered: for in mount Zion and in Jerusalem shall be deliverance, as the LORD hath said, and in the remnant whom the LORD shall call. \nFor, behold, in those days, and in that time, when I shall bring again the captivity of Judah and Jerusalem, \nI will also gather all nations, and will bring them down into the valley of Jehoshaphat, and will plead with them there for my people and for my heritage Israel, whom they have scattered among the nations, and parted my land. \nAnd they have cast lots for my people; and have given a boy for an harlot, and sold a girl for wine, that they might drink. \nYea, and what have ye to do with me, O Tyre, and Zidon, and all the coasts of Palestine? will ye render me a recompence? and if ye recompense me, swiftly and speedily will I return your recompence upon your own head; \nBecause ye have taken my silver and my gold, and have carried into your temples my goodly pleasant things: \nThe children also of Judah and the children of Jerusalem have ye sold unto the Grecians, that ye might remove them far from their border. \nBehold, I will raise them out of the place whither ye have sold them, and will return your recompence upon your own head: \nAnd I will sell your sons and your daughters into the hand of the children of Judah, and they shall sell them to the Sabeans, to a people far off: for the LORD hath spoken it. \nProclaim ye this among the Gentiles; Prepare war, wake up the mighty men, let all the men of war draw near; let them come up: \nBeat your plowshares into swords and your pruninghooks into spears: let the weak say, I am strong. \nAssemble yourselves, and come, all ye heathen, and gather yourselves together round about: thither cause thy mighty ones to come down, O LORD. \nLet the heathen be wakened, and come up to the valley of Jehoshaphat: for there will I sit to judge all the heathen round about. \nPut ye in the sickle, for the harvest is ripe: come, get you down; for the press is full, the fats overflow; for their wickedness is great. \nMultitudes, multitudes in the valley of decision: for the day of the LORD is near in the valley of decision. \nThe sun and the moon shall be darkened, and the stars shall withdraw their shining. \nThe LORD also shall roar out of Zion, and utter his voice from Jerusalem; and the heavens and the earth shall shake: but the LORD will be the hope of his people, and the strength of the children of Israel. \nSo shall ye know that I am the LORD your God dwelling in Zion, my holy mountain: then shall Jerusalem be holy, and there shall no strangers pass through her any more. \nAnd it shall come to pass in that day, that the mountains shall drop down new wine, and the hills shall flow with milk, and all the rivers of Judah shall flow with waters, and a fountain shall come forth out of the house of the LORD, and shall water the valley of Shittim. \nEgypt shall be a desolation, and Edom shall be a desolate wilderness, for the violence against the children of Judah, because they have shed innocent blood in their land. \nBut Judah shall dwell for ever, and Jerusalem from generation to generation. \nFor I will cleanse their blood that I have not cleansed: for the LORD dwelleth in Zion. \nThe words of Amos, who was among the herdmen of Tekoa, which he saw concerning Israel in the days of Uzziah king of Judah, and in the days of Jeroboam the son of Joash king of Israel, two years before the earthquake. \nAnd he said, The LORD will roar from Zion, and utter his voice from Jerusalem; and the habitations of the shepherds shall mourn, and the top of Carmel shall wither. \nThus saith the LORD; For three transgressions of Damascus, and for four, I will not turn away the punishment thereof; because they have threshed Gilead with threshing instruments of iron: \nBut I will send a fire into the house of Hazael, which shall devour the palaces of Benhadad. \nI will break also the bar of Damascus, and cut off the inhabitant from the plain of Aven, and him that holdeth the sceptre from the house of Eden: and the people of Syria shall go into captivity unto Kir, saith the LORD. \nThus saith the LORD; For three transgressions of Gaza, and for four, I will not turn away the punishment thereof; because they carried away captive the whole captivity, to deliver them up to Edom: \nBut I will send a fire on the wall of Gaza, which shall devour the palaces thereof: \nAnd I will cut off the inhabitant from Ashdod, and him that holdeth the sceptre from Ashkelon, and I will turn mine hand against Ekron: and the remnant of the Philistines shall perish, saith the Lord GOD. \nThus saith the LORD; For three transgressions of Tyrus, and for four, I will not turn away the punishment thereof; because they delivered up the whole captivity to Edom, and remembered not the brotherly covenant: \nBut I will send a fire on the wall of Tyrus, which shall devour the palaces thereof. \nThus saith the LORD; For three transgressions of Edom, and for four, I will not turn away the punishment thereof; because he did pursue his brother with the sword, and did cast off all pity, and his anger did tear perpetually, and he kept his wrath for ever: \nBut I will send a fire upon Teman, which shall devour the palaces of Bozrah. \nThus saith the LORD; For three transgressions of the children of Ammon, and for four, I will not turn away the punishment thereof; because they have ripped up the women with child of Gilead, that they might enlarge their border: \nBut I will kindle a fire in the wall of Rabbah, and it shall devour the palaces thereof, with shouting in the day of battle, with a tempest in the day of the whirlwind: \nAnd their king shall go into captivity, he and his princes together, saith the LORD. \nThus saith the LORD; For three transgressions of Moab, and for four, I will not turn away the punishment thereof; because he burned the bones of the king of Edom into lime: \nBut I will send a fire upon Moab, and it shall devour the palaces of Kirioth: and Moab shall die with tumult, with shouting, and with the sound of the trumpet: \nAnd I will cut off the judge from the midst thereof, and will slay all the princes thereof with him, saith the LORD. \nThus saith the LORD; For three transgressions of Judah, and for four, I will not turn away the punishment thereof; because they have despised the law of the LORD, and have not kept his commandments, and their lies caused them to err, after the which their fathers have walked: \nBut I will send a fire upon Judah, and it shall devour the palaces of Jerusalem. \nThus saith the LORD; For three transgressions of Israel, and for four, I will not turn away the punishment thereof; because they sold the righteous for silver, and the poor for a pair of shoes; \nThat pant after the dust of the earth on the head of the poor, and turn aside the way of the meek: and a man and his father will go in unto the same maid, to profane my holy name: \nAnd they lay themselves down upon clothes laid to pledge by every altar, and they drink the wine of the condemned in the house of their god. \nYet destroyed I the Amorite before them, whose height was like the height of the cedars, and he was strong as the oaks; yet I destroyed his fruit from above, and his roots from beneath. \nAlso I brought you up from the land of Egypt, and led you forty years through the wilderness, to possess the land of the Amorite. \nAnd I raised up of your sons for prophets, and of your young men for Nazarites. Is it not even thus, O ye children of Israel? saith the LORD. \nBut ye gave the Nazarites wine to drink; and commanded the prophets, saying, Prophesy not. \nBehold, I am pressed under you, as a cart is pressed that is full of sheaves. \nTherefore the flight shall perish from the swift, and the strong shall not strengthen his force, neither shall the mighty deliver himself: \nNeither shall he stand that handleth the bow; and he that is swift of foot shall not deliver himself: neither shall he that rideth the horse deliver himself. \nAnd he that is courageous among the mighty shall flee away naked in that day, saith the LORD. \nHear this word that the LORD hath spoken against you, O children of Israel, against the whole family which I brought up from the land of Egypt, saying, \nYou only have I known of all the families of the earth: therefore I will punish you for all your iniquities. \nCan two walk together, except they be agreed? \nWill a lion roar in the forest, when he hath no prey? will a young lion cry out of his den, if he have taken nothing? \nCan a bird fall in a snare upon the earth, where no gin is for him? shall one take up a snare from the earth, and have taken nothing at all? \nShall a trumpet be blown in the city, and the people not be afraid? shall there be evil in a city, and the LORD hath not done it? \nSurely the Lord GOD will do nothing, but he revealeth his secret unto his servants the prophets. \nThe lion hath roared, who will not fear? the Lord GOD hath spoken, who can but prophesy? \nPublish in the palaces at Ashdod, and in the palaces in the land of Egypt, and say, Assemble yourselves upon the mountains of Samaria, and behold the great tumults in the midst thereof, and the oppressed in the midst thereof. \nFor they know not to do right, saith the LORD, who store up violence and robbery in their palaces. \nTherefore thus saith the Lord GOD; An adversary there shall be even round about the land; and he shall bring down thy strength from thee, and thy palaces shall be spoiled. \nThus saith the LORD; As the shepherd taketh out of the mouth of the lion two legs, or a piece of an ear; so shall the children of Israel be taken out that dwell in Samaria in the corner of a bed, and in Damascus in a couch. \nHear ye, and testify in the house of Jacob, saith the Lord GOD, the God of hosts, \nThat in the day that I shall visit the transgressions of Israel upon him I will also visit the altars of Bethel: and the horns of the altar shall be cut off, and fall to the ground. \nAnd I will smite the winter house with the summer house; and the houses of ivory shall perish, and the great houses shall have an end, saith the LORD. \nHear this word, ye kine of Bashan, that are in the mountain of Samaria, which oppress the poor, which crush the needy, which say to their masters, Bring, and let us drink. \nThe Lord GOD hath sworn by his holiness, that, lo, the days shall come upon you, that he will take you away with hooks, and your posterity with fishhooks. \nAnd ye shall go out at the breaches, every cow at that which is before her; and ye shall cast them into the palace, saith the LORD. \nCome to Bethel, and transgress; at Gilgal multiply transgression; and bring your sacrifices every morning, and your tithes after three years: \nAnd offer a sacrifice of thanksgiving with leaven, and proclaim and publish the free offerings: for this liketh you, O ye children of Israel, saith the Lord GOD. \nAnd I also have given you cleanness of teeth in all your cities, and want of bread in all your places: yet have ye not returned unto me, saith the LORD. \nAnd also I have withholden the rain from you, when there were yet three months to the harvest: and I caused it to rain upon one city, and caused it not to rain upon another city: one piece was rained upon, and the piece whereupon it rained not withered. \nSo two or three cities wandered unto one city, to drink water; but they were not satisfied: yet have ye not returned unto me, saith the LORD. \nI have smitten you with blasting and mildew: when your gardens and your vineyards and your fig trees and your olive trees increased, the palmerworm devoured them: yet have ye not returned unto me, saith the LORD. \nI have sent among you the pestilence after the manner of Egypt: your young men have I slain with the sword, and have taken away your horses; and I have made the stink of your camps to come up unto your nostrils: yet have ye not returned unto me, saith the LORD. \nI have overthrown some of you, as God overthrew Sodom and Gomorrah, and ye were as a firebrand plucked out of the burning: yet have ye not returned unto me, saith the LORD. \nTherefore thus will I do unto thee, O Israel: and because I will do this unto thee, prepare to meet thy God, O Israel. \nFor, lo, he that formeth the mountains, and createth the wind, and declareth unto man what is his thought, that maketh the morning darkness, and treadeth upon the high places of the earth, The LORD, The God of hosts, is his name. \nHear ye this word which I take up against you, even a lamentation, O house of Israel. \nThe virgin of Israel is fallen; she shall no more rise: she is forsaken upon her land; there is none to raise her up. \nFor thus saith the Lord GOD; The city that went out by a thousand shall leave an hundred, and that which went forth by an hundred shall leave ten, to the house of Israel. \nFor thus saith the LORD unto the house of Israel, Seek ye me, and ye shall live: \nBut seek not Bethel, nor enter into Gilgal, and pass not to Beersheba: for Gilgal shall surely go into captivity, and Bethel shall come to nought. \nSeek the LORD, and ye shall live; lest he break out like fire in the house of Joseph, and devour it, and there be none to quench it in Bethel. \nYe who turn judgment to wormwood, and leave off righteousness in the earth, \nSeek him that maketh the seven stars and Orion, and turneth the shadow of death into the morning, and maketh the day dark with night: that calleth for the waters of the sea, and poureth them out upon the face of the earth: The LORD is his name: \nThat strengtheneth the spoiled against the strong, so that the spoiled shall come against the fortress. \nThey hate him that rebuketh in the gate, and they abhor him that speaketh uprightly. \nForasmuch therefore as your treading is upon the poor, and ye take from him burdens of wheat: ye have built houses of hewn stone, but ye shall not dwell in them; ye have planted pleasant vineyards, but ye shall not drink wine of them. \nFor I know your manifold transgressions and your mighty sins: they afflict the just, they take a bribe, and they turn aside the poor in the gate from their right. \nTherefore the prudent shall keep silence in that time; for it is an evil time. \nSeek good, and not evil, that ye may live: and so the LORD, the God of hosts, shall be with you, as ye have spoken. \nHate the evil, and love the good, and establish judgment in the gate: it may be that the LORD God of hosts will be gracious unto the remnant of Joseph. \nTherefore the LORD, the God of hosts, the LORD, saith thus; Wailing shall be in all streets; and they shall say in all the highways, Alas! alas! and they shall call the husbandman to mourning, and such as are skilful of lamentation to wailing. \nAnd in all vineyards shall be wailing: for I will pass through thee, saith the LORD. \nWoe unto you that desire the day of the LORD! to what end is it for you? the day of the LORD is darkness, and not light. \nAs if a man did flee from a lion, and a bear met him; or went into the house, and leaned his hand on the wall, and a serpent bit him. \nShall not the day of the LORD be darkness, and not light? even very dark, and no brightness in it? \nI hate, I despise your feast days, and I will not smell in your solemn assemblies. \nThough ye offer me burnt offerings and your meat offerings, I will not accept them: neither will I regard the peace offerings of your fat beasts. \nTake thou away from me the noise of thy songs; for I will not hear the melody of thy viols. \nBut let judgment run down as waters, and righteousness as a mighty stream. \nHave ye offered unto me sacrifices and offerings in the wilderness forty years, O house of Israel? \nBut ye have borne the tabernacle of your Moloch and Chiun your images, the star of your god, which ye made to yourselves. \nTherefore will I cause you to go into captivity beyond Damascus, saith the LORD, whose name is The God of hosts. \nWoe to them that are at ease in Zion, and trust in the mountain of Samaria, which are named chief of the nations, to whom the house of Israel came! \nPass ye unto Calneh, and see; and from thence go ye to Hamath the great: then go down to Gath of the Philistines: be they better than these kingdoms? or their border greater than your border? \nYe that put far away the evil day, and cause the seat of violence to come near; \nThat lie upon beds of ivory, and stretch themselves upon their couches, and eat the lambs out of the flock, and the calves out of the midst of the stall; \nThat chant to the sound of the viol, and invent to themselves instruments of musick, like David; \nThat drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph. \nTherefore now shall they go captive with the first that go captive, and the banquet of them that stretched themselves shall be removed. \nThe Lord GOD hath sworn by himself, saith the LORD the God of hosts, I abhor the excellency of Jacob, and hate his palaces: therefore will I deliver up the city with all that is therein. \nAnd it shall come to pass, if there remain ten men in one house, that they shall die. \nAnd a man's uncle shall take him up, and he that burneth him, to bring out the bones out of the house, and shall say unto him that is by the sides of the house, Is there yet any with thee? and he shall say, No. Then shall he say, Hold thy tongue: for we may not make mention of the name of the LORD. \nFor, behold, the LORD commandeth, and he will smite the great house with breaches, and the little house with clefts. \nShall horses run upon the rock? will one plow there with oxen? for ye have turned judgment into gall, and the fruit of righteousness into hemlock: \nYe which rejoice in a thing of nought, which say, Have we not taken to us horns by our own strength? \nBut, behold, I will raise up against you a nation, O house of Israel, saith the LORD the God of hosts; and they shall afflict you from the entering in of Hemath unto the river of the wilderness. \nThus hath the Lord GOD shewed unto me; and, behold, he formed grasshoppers in the beginning of the shooting up of the latter growth; and, lo, it was the latter growth after the king's mowings. \nAnd it came to pass, that when they had made an end of eating the grass of the land, then I said, O Lord GOD, forgive, I beseech thee: by whom shall Jacob arise? for he is small. \nThe LORD repented for this: It shall not be, saith the LORD. \nThus hath the Lord GOD shewed unto me: and, behold, the Lord GOD called to contend by fire, and it devoured the great deep, and did eat up a part. \nThen said I, O Lord GOD, cease, I beseech thee: by whom shall Jacob arise? for he is small. \nThe LORD repented for this: This also shall not be, saith the Lord GOD. \nThus he shewed me: and, behold, the LORD stood upon a wall made by a plumbline, with a plumbline in his hand. \nAnd the LORD said unto me, Amos, what seest thou? And I said, A plumbline. Then said the LORD, Behold, I will set a plumbline in the midst of my people Israel: I will not again pass by them any more: \nAnd the high places of Isaac shall be desolate, and the sanctuaries of Israel shall be laid waste; and I will rise against the house of Jeroboam with the sword. \nThen Amaziah the priest of Bethel sent to Jeroboam king of Israel, saying, Amos hath conspired against thee in the midst of the house of Israel: the land is not able to bear all his words. \nFor thus Amos saith, Jeroboam shall die by the sword, and Israel shall surely be led away captive out of their own land. \nAlso Amaziah said unto Amos, O thou seer, go, flee thee away into the land of Judah, and there eat bread, and prophesy there: \nBut prophesy not again any more at Bethel: for it is the king's chapel, and it is the king's court. \nThen answered Amos, and said to Amaziah, I was no prophet, neither was I a prophet's son; but I was an herdman, and a gatherer of sycomore fruit: \nAnd the LORD took me as I followed the flock, and the LORD said unto me, Go, prophesy unto my people Israel. \nNow therefore hear thou the word of the LORD: Thou sayest, Prophesy not against Israel, and drop not thy word against the house of Isaac. \nTherefore thus saith the LORD; Thy wife shall be an harlot in the city, and thy sons and thy daughters shall fall by the sword, and thy land shall be divided by line; and thou shalt die in a polluted land: and Israel shall surely go into captivity forth of his land. \nThus hath the Lord GOD shewed unto me: and behold a basket of summer fruit. \nAnd he said, Amos, what seest thou? And I said, A basket of summer fruit. Then said the LORD unto me, The end is come upon my people of Israel; I will not again pass by them any more. \nAnd the songs of the temple shall be howlings in that day, saith the Lord GOD: there shall be many dead bodies in every place; they shall cast them forth with silence. \nHear this, O ye that swallow up the needy, even to make the poor of the land to fail, \nSaying, When will the new moon be gone, that we may sell corn? and the sabbath, that we may set forth wheat, making the ephah small, and the shekel great, and falsifying the balances by deceit? \nThat we may buy the poor for silver, and the needy for a pair of shoes; yea, and sell the refuse of the wheat? \nThe LORD hath sworn by the excellency of Jacob, Surely I will never forget any of their works. \nShall not the land tremble for this, and every one mourn that dwelleth therein? and it shall rise up wholly as a flood; and it shall be cast out and drowned, as by the flood of Egypt. \nAnd it shall come to pass in that day, saith the Lord GOD, that I will cause the sun to go down at noon, and I will darken the earth in the clear day: \nAnd I will turn your feasts into mourning, and all your songs into lamentation; and I will bring up sackcloth upon all loins, and baldness upon every head; and I will make it as the mourning of an only son, and the end thereof as a bitter day. \nBehold, the days come, saith the Lord GOD, that I will send a famine in the land, not a famine of bread, nor a thirst for water, but of hearing the words of the LORD: \nAnd they shall wander from sea to sea, and from the north even to the east, they shall run to and fro to seek the word of the LORD, and shall not find it. \nIn that day shall the fair virgins and young men faint for thirst. \nThey that swear by the sin of Samaria, and say, Thy god, O Dan, liveth; and, The manner of Beersheba liveth; even they shall fall, and never rise up again. \nI saw the LORD standing upon the altar: and he said, Smite the lintel of the door, that the posts may shake: and cut them in the head, all of them; and I will slay the last of them with the sword: he that fleeth of them shall not flee away, and he that escapeth of them shall not be delivered. \nThough they dig into hell, thence shall mine hand take them; though they climb up to heaven, thence will I bring them down: \nAnd though they hide themselves in the top of Carmel, I will search and take them out thence; and though they be hid from my sight in the bottom of the sea, thence will I command the serpent, and he shall bite them: \nAnd though they go into captivity before their enemies, thence will I command the sword, and it shall slay them: and I will set mine eyes upon them for evil, and not for good. \nAnd the Lord GOD of hosts is he that toucheth the land, and it shall melt, and all that dwell therein shall mourn: and it shall rise up wholly like a flood; and shall be drowned, as by the flood of Egypt. \nIt is he that buildeth his stories in the heaven, and hath founded his troop in the earth; he that calleth for the waters of the sea, and poureth them out upon the face of the earth: The LORD is his name. \nAre ye not as children of the Ethiopians unto me, O children of Israel? saith the LORD. Have not I brought up Israel out of the land of Egypt? and the Philistines from Caphtor, and the Syrians from Kir? \nBehold, the eyes of the Lord GOD are upon the sinful kingdom, and I will destroy it from off the face of the earth; saving that I will not utterly destroy the house of Jacob, saith the LORD. \nFor, lo, I will command, and I will sift the house of Israel among all nations, like as corn is sifted in a sieve, yet shall not the least grain fall upon the earth. \nAll the sinners of my people shall die by the sword, which say, The evil shall not overtake nor prevent us. \nIn that day will I raise up the tabernacle of David that is fallen, and close up the breaches thereof; and I will raise up his ruins, and I will build it as in the days of old: \nThat they may possess the remnant of Edom, and of all the heathen, which are called by my name, saith the LORD that doeth this. \nBehold, the days come, saith the LORD, that the plowman shall overtake the reaper, and the treader of grapes him that soweth seed; and the mountains shall drop sweet wine, and all the hills shall melt. \nAnd I will bring again the captivity of my people of Israel, and they shall build the waste cities, and inhabit them; and they shall plant vineyards, and drink the wine thereof; they shall also make gardens, and eat the fruit of them. \nAnd I will plant them upon their land, and they shall no more be pulled up out of their land which I have given them, saith the LORD thy God. \nThe vision of Obadiah. Thus saith the Lord GOD concerning Edom; We have heard a rumour from the LORD, and an ambassador is sent among the heathen, Arise ye, and let us rise up against her in battle. \nBehold, I have made thee small among the heathen: thou art greatly despised. \nThe pride of thine heart hath deceived thee, thou that dwellest in the clefts of the rock, whose habitation is high; that saith in his heart, Who shall bring me down to the ground? \nThough thou exalt thyself as the eagle, and though thou set thy nest among the stars, thence will I bring thee down, saith the LORD. \nIf thieves came to thee, if robbers by night, (how art thou cut off!) would they not have stolen till they had enough? if the grapegatherers came to thee, would they not leave some grapes? \nHow are the things of Esau searched out! how are his hidden things sought up! \nAll the men of thy confederacy have brought thee even to the border: the men that were at peace with thee have deceived thee, and prevailed against thee; that they eat thy bread have laid a wound under thee: there is none understanding in him. \nShall I not in that day, saith the LORD, even destroy the wise men out of Edom, and understanding out of the mount of Esau? \nAnd thy mighty men, O Teman, shall be dismayed, to the end that every one of the mount of Esau may be cut off by slaughter. \nFor thy violence against thy brother Jacob shame shall cover thee, and thou shalt be cut off for ever. \nIn the day that thou stoodest on the other side, in the day that the strangers carried away captive his forces, and foreigners entered into his gates, and cast lots upon Jerusalem, even thou wast as one of them. \nBut thou shouldest not have looked on the day of thy brother in the day that he became a stranger; neither shouldest thou have rejoiced over the children of Judah in the day of their destruction; neither shouldest thou have spoken proudly in the day of distress. \nThou shouldest not have entered into the gate of my people in the day of their calamity; yea, thou shouldest not have looked on their affliction in the day of their calamity, nor have laid hands on their substance in the day of their calamity; \nNeither shouldest thou have stood in the crossway, to cut off those of his that did escape; neither shouldest thou have delivered up those of his that did remain in the day of distress. \nFor the day of the LORD is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head. \nFor as ye have drunk upon my holy mountain, so shall all the heathen drink continually, yea, they shall drink, and they shall swallow down, and they shall be as though they had not been. \nBut upon mount Zion shall be deliverance, and there shall be holiness; and the house of Jacob shall possess their possessions. \nAnd the house of Jacob shall be a fire, and the house of Joseph a flame, and the house of Esau for stubble, and they shall kindle in them, and devour them; and there shall not be any remaining of the house of Esau; for the LORD hath spoken it. \nAnd they of the south shall possess the mount of Esau; and they of the plain the Philistines: and they shall possess the fields of Ephraim, and the fields of Samaria: and Benjamin shall possess Gilead. \nAnd the captivity of this host of the children of Israel shall possess that of the Canaanites, even unto Zarephath; and the captivity of Jerusalem, which is in Sepharad, shall possess the cities of the south. \nAnd saviours shall come up on mount Zion to judge the mount of Esau; and the kingdom shall be the LORD's. \nNow the word of the LORD came unto Jonah the son of Amittai, saying, \nArise, go to Nineveh, that great city, and cry against it; for their wickedness is come up before me. \nBut Jonah rose up to flee unto Tarshish from the presence of the LORD, and went down to Joppa; and he found a ship going to Tarshish: so he paid the fare thereof, and went down into it, to go with them unto Tarshish from the presence of the LORD. \nBut the LORD sent out a great wind into the sea, and there was a mighty tempest in the sea, so that the ship was like to be broken. \nThen the mariners were afraid, and cried every man unto his god, and cast forth the wares that were in the ship into the sea, to lighten it of them. But Jonah was gone down into the sides of the ship; and he lay, and was fast asleep. \nSo the shipmaster came to him, and said unto him, What meanest thou, O sleeper? arise, call upon thy God, if so be that God will think upon us, that we perish not. \nAnd they said every one to his fellow, Come, and let us cast lots, that we may know for whose cause this evil is upon us. So they cast lots, and the lot fell upon Jonah. \nThen said they unto him, Tell us, we pray thee, for whose cause this evil is upon us; What is thine occupation? and whence comest thou? what is thy country? and of what people art thou? \nAnd he said unto them, I am an Hebrew; and I fear the LORD, the God of heaven, which hath made the sea and the dry land. \nThen were the men exceedingly afraid, and said unto him. Why hast thou done this? For the men knew that he fled from the presence of the LORD, because he had told them. \nThen said they unto him, What shall we do unto thee, that the sea may be calm unto us? for the sea wrought, and was tempestuous. \nAnd he said unto them, Take me up, and cast me forth into the sea; so shall the sea be calm unto you: for I know that for my sake this great tempest is upon you. \nNevertheless the men rowed hard to bring it to the land; but they could not: for the sea wrought, and was tempestuous against them. \nWherefore they cried unto the LORD, and said, We beseech thee, O LORD, we beseech thee, let us not perish for this man's life, and lay not upon us innocent blood: for thou, O LORD, hast done as it pleased thee. \nSo they look up Jonah, and cast him forth into the sea: and the sea ceased from her raging. \nThen the men feared the LORD exceedingly, and offered a sacrifice unto the LORD, and made vows. \nNow the LORD had prepared a great fish to swallow up Jonah. And Jonah was in the belly of the fish three days and three nights. \nThen Jonah prayed unto the LORD his God out of the fish's belly, \nAnd said, I cried by reason of mine affliction unto the LORD, and he heard me; out of the belly of hell cried I, and thou heardest my voice. \nFor thou hadst cast me into the deep, in the midst of the seas; and the floods compassed me about: all thy billows and thy waves passed over me. \nThen I said, I am cast out of thy sight; yet I will look again toward thy holy temple. \nThe waters compassed me about, even to the soul: the depth closed me round about, the weeds were wrapped about my head. \nI went down to the bottoms of the mountains; the earth with her bars was about me for ever: yet hast thou brought up my life from corruption, O LORD my God. \nWhen my soul fainted within me I remembered the LORD: and my prayer came in unto thee, into thine holy temple. \nThey that observe lying vanities forsake their own mercy. \nBut I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the LORD. \nAnd the LORD spake unto the fish, and it vomited out Jonah upon the dry land. \nAnd the word of the LORD came unto Jonah the second time, saying, \nArise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee. \nSo Jonah arose, and went unto Nineveh, according to the word of the LORD. Now Nineveh was an exceeding great city of three days' journey. \nAnd Jonah began to enter into the city a day's journey, and he cried, and said, Yet forty days, and Nineveh shall be overthrown. \nSo the people of Nineveh believed God, and proclaimed a fast, and put on sackcloth, from the greatest of them even to the least of them. \nFor word came unto the king of Nineveh, and he arose from his throne, and he laid his robe from him, and covered him with sackcloth, and sat in ashes. \nAnd he caused it to be proclaimed and published through Nineveh by the decree of the king and his nobles, saying, Let neither man nor beast, herd nor flock, taste any thing: let them not feed, nor drink water: \nBut let man and beast be covered with sackcloth, and cry mightily unto God: yea, let them turn every one from his evil way, and from the violence that is in their hands. \nWho can tell if God will turn and repent, and turn away from his fierce anger, that we perish not? \nAnd God saw their works, that they turned from their evil way; and God repented of the evil, that he had said that he would do unto them; and he did it not. \nBut it displeased Jonah exceedingly, and he was very angry. \nAnd he prayed unto the LORD, and said, I pray thee, O LORD, was not this my saying, when I was yet in my country? Therefore I fled before unto Tarshish: for I knew that thou art a gracious God, and merciful, slow to anger, and of great kindness, and repentest thee of the evil. \nTherefore now, O LORD, take, I beseech thee, my life from me; for it is better for me to die than to live. \nThen said the LORD, Doest thou well to be angry? \nSo Jonah went out of the city, and sat on the east side of the city, and there made him a booth, and sat under it in the shadow, till he might see what would become of the city. \nAnd the LORD God prepared a gourd, and made it to come up over Jonah, that it might be a shadow over his head, to deliver him from his grief. So Jonah was exceeding glad of the gourd. \nBut God prepared a worm when the morning rose the next day, and it smote the gourd that it withered. \nAnd it came to pass, when the sun did arise, that God prepared a vehement east wind; and the sun beat upon the head of Jonah, that he fainted, and wished in himself to die, and said, It is better for me to die than to live. \nAnd God said to Jonah, Doest thou well to be angry for the gourd? And he said, I do well to be angry, even unto death. \nThen said the LORD, Thou hast had pity on the gourd, for the which thou hast not laboured, neither madest it grow; which came up in a night, and perished in a night: \nAnd should not I spare Nineveh, that great city, wherein are more then sixscore thousand persons that cannot discern between their right hand and their left hand; and also much cattle? \nThe word of the LORD that came to Micah the Morasthite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw concerning Samaria and Jerusalem. \nHear, all ye people; hearken, O earth, and all that therein is: and let the Lord GOD be witness against you, the LORD from his holy temple. \nFor, behold, the LORD cometh forth out of his place, and will come down, and tread upon the high places of the earth. \nAnd the mountains shall be molten under him, and the valleys shall be cleft, as wax before the fire, and as the waters that are poured down a steep place. \nFor the transgression of Jacob is all this, and for the sins of the house of Israel. What is the transgression of Jacob? is it not Samaria? and what are the high places of Judah? are they not Jerusalem? \nTherefore I will make Samaria as an heap of the field, and as plantings of a vineyard: and I will pour down the stones thereof into the valley, and I will discover the foundations thereof. \nAnd all the graven images thereof shall be beaten to pieces, and all the hires thereof shall be burned with the fire, and all the idols thereof will I lay desolate: for she gathered it of the hire of an harlot, and they shall return to the hire of an harlot. \nTherefore I will wail and howl, I will go stripped and naked: I will make a wailing like the dragons, and mourning as the owls. \nFor her wound is incurable; for it is come unto Judah; he is come unto the gate of my people, even to Jerusalem. \nDeclare ye it not at Gath, weep ye not at all: in the house of Aphrah roll thyself in the dust. \nPass ye away, thou inhabitant of Saphir, having thy shame naked: the inhabitant of Zaanan came not forth in the mourning of Bethezel; he shall receive of you his standing. \nFor the inhabitant of Maroth waited carefully for good: but evil came down from the LORD unto the gate of Jerusalem. \nO thou inhabitant of Lachish, bind the chariot to the swift beast: she is the beginning of the sin to the daughter of Zion: for the transgressions of Israel were found in thee. \nTherefore shalt thou give presents to Moreshethgath: the houses of Achzib shall be a lie to the kings of Israel. \nYet will I bring an heir unto thee, O inhabitant of Mareshah: he shall come unto Adullam the glory of Israel. \nMake thee bald, and poll thee for thy delicate children; enlarge thy baldness as the eagle; for they are gone into captivity from thee. \nWoe to them that devise iniquity, and work evil upon their beds! when the morning is light, they practise it, because it is in the power of their hand. \nAnd they covet fields, and take them by violence; and houses, and take them away: so they oppress a man and his house, even a man and his heritage. \nTherefore thus saith the LORD; Behold, against this family do I devise an evil, from which ye shall not remove your necks; neither shall ye go haughtily: for this time is evil. \nIn that day shall one take up a parable against you, and lament with a doleful lamentation, and say, We be utterly spoiled: he hath changed the portion of my people: how hath he removed it from me! turning away he hath divided our fields. \nTherefore thou shalt have none that shall cast a cord by lot in the congregation of the LORD. \nProphesy ye not, say they to them that prophesy: they shall not prophesy to them, that they shall not take shame. \nO thou that art named the house of Jacob, is the spirit of the LORD straitened? are these his doings? do not my words do good to him that walketh uprightly? \nEven of late my people is risen up as an enemy: ye pull off the robe with the garment from them that pass by securely as men averse from war. \nThe women of my people have ye cast out from their pleasant houses; from their children have ye taken away my glory for ever. \nArise ye, and depart; for this is not your rest: because it is polluted, it shall destroy you, even with a sore destruction. \nIf a man walking in the spirit and falsehood do lie, saying, I will prophesy unto thee of wine and of strong drink; he shall even be the prophet of this people. \nI will surely assemble, O Jacob, all of thee; I will surely gather the remnant of Israel; I will put them together as the sheep of Bozrah, as the flock in the midst of their fold: they shall make great noise by reason of the multitude of men. \nThe breaker is come up before them: they have broken up, and have passed through the gate, and are gone out by it: and their king shall pass before them, and the LORD on the head of them. \nAnd I said, Hear, I pray you, O heads of Jacob, and ye princes of the house of Israel; Is it not for you to know judgment? \nWho hate the good, and love the evil; who pluck off their skin from off them, and their flesh from off their bones; \nWho also eat the flesh of my people, and flay their skin from off them; and they break their bones, and chop them in pieces, as for the pot, and as flesh within the caldron. \nThen shall they cry unto the LORD, but he will not hear them: he will even hide his face from them at that time, as they have behaved themselves ill in their doings. \nThus saith the LORD concerning the prophets that make my people err, that bite with their teeth, and cry, Peace; and he that putteth not into their mouths, they even prepare war against him. \nTherefore night shall be unto you, that ye shall not have a vision; and it shall be dark unto you, that ye shall not divine; and the sun shall go down over the prophets, and the day shall be dark over them. \nThen shall the seers be ashamed, and the diviners confounded: yea, they shall all cover their lips; for there is no answer of God. \nBut truly I am full of power by the spirit of the LORD, and of judgment, and of might, to declare unto Jacob his transgression, and to Israel his sin. \nHear this, I pray you, ye heads of the house of Jacob, and princes of the house of Israel, that abhor judgment, and pervert all equity. \nThey build up Zion with blood, and Jerusalem with iniquity. \nThe heads thereof judge for reward, and the priests thereof teach for hire, and the prophets thereof divine for money: yet will they lean upon the LORD, and say, Is not the LORD among us? none evil can come upon us. \nTherefore shall Zion for your sake be plowed as a field, and Jerusalem shall become heaps, and the mountain of the house as the high places of the forest. \nBut in the last days it shall come to pass, that the mountain of the house of the LORD shall be established in the top of the mountains, and it shall be exalted above the hills; and people shall flow unto it. \nAnd many nations shall come, and say, Come, and let us go up to the mountain of the LORD, and to the house of the God of Jacob; and he will teach us of his ways, and we will walk in his paths: for the law shall go forth of Zion, and the word of the LORD from Jerusalem. \nAnd he shall judge among many people, and rebuke strong nations afar off; and they shall beat their swords into plowshares, and their spears into pruninghooks: nation shall not lift up a sword against nation, neither shall they learn war any more. \nBut they shall sit every man under his vine and under his fig tree; and none shall make them afraid: for the mouth of the LORD of hosts hath spoken it. \nFor all people will walk every one in the name of his god, and we will walk in the name of the LORD our God for ever and ever. \nIn that day, saith the LORD, will I assemble her that halteth, and I will gather her that is driven out, and her that I have afflicted; \nAnd I will make her that halted a remnant, and her that was cast far off a strong nation: and the LORD shall reign over them in mount Zion from henceforth, even for ever. \nAnd thou, O tower of the flock, the strong hold of the daughter of Zion, unto thee shall it come, even the first dominion; the kingdom shall come to the daughter of Jerusalem. \nNow why dost thou cry out aloud? is there no king in thee? is thy counsellor perished? for pangs have taken thee as a woman in travail. \nBe in pain, and labour to bring forth, O daughter of Zion, like a woman in travail: for now shalt thou go forth out of the city, and thou shalt dwell in the field, and thou shalt go even to Babylon; there shalt thou be delivered; there the LORD shall redeem thee from the hand of thine enemies. \nNow also many nations are gathered against thee, that say, Let her be defiled, and let our eye look upon Zion. \nBut they know not the thoughts of the LORD, neither understand they his counsel: for he shall gather them as the sheaves into the floor. \nArise and thresh, O daughter of Zion: for I will make thine horn iron, and I will make thy hoofs brass: and thou shalt beat in pieces many people: and I will consecrate their gain unto the LORD, and their substance unto the Lord of the whole earth. \nNow gather thyself in troops, O daughter of troops: he hath laid siege against us: they shall smite the judge of Israel with a rod upon the cheek. \nBut thou, Bethlehem Ephratah, though thou be little among the thousands of Judah, yet out of thee shall he come forth unto me that is to be ruler in Israel; whose goings forth have been from of old, from everlasting. \nTherefore will he give them up, until the time that she which travaileth hath brought forth: then the remnant of his brethren shall return unto the children of Israel. \nAnd he shall stand and feed in the strength of the LORD, in the majesty of the name of the LORD his God; and they shall abide: for now shall he be great unto the ends of the earth. \nAnd this man shall be the peace, when the Assyrian shall come into our land: and when he shall tread in our palaces, then shall we raise against him seven shepherds, and eight principal men. \nAnd they shall waste the land of Assyria with the sword, and the land of Nimrod in the entrances thereof: thus shall he deliver us from the Assyrian, when he cometh into our land, and when he treadeth within our borders. \nAnd the remnant of Jacob shall be in the midst of many people as a dew from the LORD, as the showers upon the grass, that tarrieth not for man, nor waiteth for the sons of men. \nAnd the remnant of Jacob shall be among the Gentiles in the midst of many people as a lion among the beasts of the forest, as a young lion among the flocks of sheep: who, if he go through, both treadeth down, and teareth in pieces, and none can deliver. \nThine hand shall be lifted up upon thine adversaries, and all thine enemies shall be cut off. \nAnd it shall come to pass in that day, saith the LORD, that I will cut off thy horses out of the midst of thee, and I will destroy thy chariots: \nAnd I will cut off the cities of thy land, and throw down all thy strong holds: \nAnd I will cut off witchcrafts out of thine hand; and thou shalt have no more soothsayers: \nThy graven images also will I cut off, and thy standing images out of the midst of thee; and thou shalt no more worship the work of thine hands. \nAnd I will pluck up thy groves out of the midst of thee: so will I destroy thy cities. \nAnd I will execute vengeance in anger and fury upon the heathen, such as they have not heard. \nHear ye now what the LORD saith; Arise, contend thou before the mountains, and let the hills hear thy voice. \nHear ye, O mountains, the LORD's controversy, and ye strong foundations of the earth: for the LORD hath a controversy with his people, and he will plead with Israel. \nO my people, what have I done unto thee? and wherein have I wearied thee? testify against me. \nFor I brought thee up out of the land of Egypt, and redeemed thee out of the house of servants; and I sent before thee Moses, Aaron, and Miriam. \nO my people, remember now what Balak king of Moab consulted, and what Balaam the son of Beor answered him from Shittim unto Gilgal; that ye may know the righteousness of the LORD. \nWherewith shall I come before the LORD, and bow myself before the high God? shall I come before him with burnt offerings, with calves of a year old? \nWill the LORD be pleased with thousands of rams, or with ten thousands of rivers of oil? shall I give my firstborn for my transgression, the fruit of my body for the sin of my soul? \nHe hath shewed thee, O man, what is good; and what doth the LORD require of thee, but to do justly, and to love mercy, and to walk humbly with thy God? \nThe LORD's voice crieth unto the city, and the man of wisdom shall see thy name: hear ye the rod, and who hath appointed it. \nAre there yet the treasures of wickedness in the house of the wicked, and the scant measure that is abominable? \nShall I count them pure with the wicked balances, and with the bag of deceitful weights? \nFor the rich men thereof are full of violence, and the inhabitants thereof have spoken lies, and their tongue is deceitful in their mouth. \nTherefore also will I make thee sick in smiting thee, in making thee desolate because of thy sins. \nThou shalt eat, but not be satisfied; and thy casting down shall be in the midst of thee; and thou shalt take hold, but shalt not deliver; and that which thou deliverest will I give up to the sword. \nThou shalt sow, but thou shalt not reap; thou shalt tread the olives, but thou shalt not anoint thee with oil; and sweet wine, but shalt not drink wine. \nFor the statutes of Omri are kept, and all the works of the house of Ahab, and ye walk in their counsels; that I should make thee a desolation, and the inhabitants thereof an hissing: therefore ye shall bear the reproach of my people. \nWoe is me! for I am as when they have gathered the summer fruits, as the grapegleanings of the vintage: there is no cluster to eat: my soul desired the firstripe fruit. \nThe good man is perished out of the earth: and there is none upright among men: they all lie in wait for blood; they hunt every man his brother with a net. \nThat they may do evil with both hands earnestly, the prince asketh, and the judge asketh for a reward; and the great man, he uttereth his mischievous desire: so they wrap it up. \nThe best of them is as a brier: the most upright is sharper than a thorn hedge: the day of thy watchmen and thy visitation cometh; now shall be their perplexity. \nTrust ye not in a friend, put ye not confidence in a guide: keep the doors of thy mouth from her that lieth in thy bosom. \nFor the son dishonoureth the father, the daughter riseth up against her mother, the daughter in law against her mother in law; a man's enemies are the men of his own house. \nTherefore I will look unto the LORD; I will wait for the God of my salvation: my God will hear me. \nRejoice not against me, O mine enemy: when I fall, I shall arise; when I sit in darkness, the LORD shall be a light unto me. \nI will bear the indignation of the LORD, because I have sinned against him, until he plead my cause, and execute judgment for me: he will bring me forth to the light, and I shall behold his righteousness. \nThen she that is mine enemy shall see it, and shame shall cover her which said unto me, Where is the LORD thy God? mine eyes shall behold her: now shall she be trodden down as the mire of the streets. \nIn the day that thy walls are to be built, in that day shall the decree be far removed. \nIn that day also he shall come even to thee from Assyria, and from the fortified cities, and from the fortress even to the river, and from sea to sea, and from mountain to mountain. \nNotwithstanding the land shall be desolate because of them that dwell therein, for the fruit of their doings. \nFeed thy people with thy rod, the flock of thine heritage, which dwell solitarily in the wood, in the midst of Carmel: let them feed in Bashan and Gilead, as in the days of old. \nAccording to the days of thy coming out of the land of Egypt will I shew unto him marvellous things. \nThe nations shall see and be confounded at all their might: they shall lay their hand upon their mouth, their ears shall be deaf. \nThey shall lick the dust like a serpent, they shall move out of their holes like worms of the earth: they shall be afraid of the LORD our God, and shall fear because of thee. \nWho is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy. \nHe will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea. \nThou wilt perform the truth to Jacob, and the mercy to Abraham, which thou hast sworn unto our fathers from the days of old. \nThe burden of Nineveh. The book of the vision of Nahum the Elkoshite. \nGod is jealous, and the LORD revengeth; the LORD revengeth, and is furious; the LORD will take vengeance on his adversaries, and he reserveth wrath for his enemies. \nThe LORD is slow to anger, and great in power, and will not at all acquit the wicked: the LORD hath his way in the whirlwind and in the storm, and the clouds are the dust of his feet. \nHe rebuketh the sea, and maketh it dry, and drieth up all the rivers: Bashan languisheth, and Carmel, and the flower of Lebanon languisheth. \nThe mountains quake at him, and the hills melt, and the earth is burned at his presence, yea, the world, and all that dwell therein. \nWho can stand before his indignation? and who can abide in the fierceness of his anger? his fury is poured out like fire, and the rocks are thrown down by him. \nThe LORD is good, a strong hold in the day of trouble; and he knoweth them that trust in him. \nBut with an overrunning flood he will make an utter end of the place thereof, and darkness shall pursue his enemies. \nWhat do ye imagine against the LORD? he will make an utter end: affliction shall not rise up the second time. \nFor while they be folden together as thorns, and while they are drunken as drunkards, they shall be devoured as stubble fully dry. \nThere is one come out of thee, that imagineth evil against the LORD, a wicked counsellor. \nThus saith the LORD; Though they be quiet, and likewise many, yet thus shall they be cut down, when he shall pass through. Though I have afflicted thee, I will afflict thee no more. \nFor now will I break his yoke from off thee, and will burst thy bonds in sunder. \nAnd the LORD hath given a commandment concerning thee, that no more of thy name be sown: out of the house of thy gods will I cut off the graven image and the molten image: I will make thy grave; for thou art vile. \nBehold upon the mountains the feet of him that bringeth good tidings, that publisheth peace! O Judah, keep thy solemn feasts, perform thy vows: for the wicked shall no more pass through thee; he is utterly cut off. \nHe that dasheth in pieces is come up before thy face: keep the munition, watch the way, make thy loins strong, fortify thy power mightily. \nFor the LORD hath turned away the excellency of Jacob, as the excellency of Israel: for the emptiers have emptied them out, and marred their vine branches. \nThe shield of his mighty men is made red, the valiant men are in scarlet: the chariots shall be with flaming torches in the day of his preparation, and the fir trees shall be terribly shaken. \nThe chariots shall rage in the streets, they shall justle one against another in the broad ways: they shall seem like torches, they shall run like the lightnings. \nHe shall recount his worthies: they shall stumble in their walk; they shall make haste to the wall thereof, and the defence shall be prepared. \nThe gates of the rivers shall be opened, and the palace shall be dissolved. \nAnd Huzzab shall be led away captive, she shall be brought up, and her maids shall lead her as with the voice of doves, tabering upon their breasts. \nBut Nineveh is of old like a pool of water: yet they shall flee away. Stand, stand, shall they cry; but none shall look back. \nTake ye the spoil of silver, take the spoil of gold: for there is none end of the store and glory out of all the pleasant furniture. \nShe is empty, and void, and waste: and the heart melteth, and the knees smite together, and much pain is in all loins, and the faces of them all gather blackness. \nWhere is the dwelling of the lions, and the feedingplace of the young lions, where the lion, even the old lion, walked, and the lion's whelp, and none made them afraid? \nThe lion did tear in pieces enough for his whelps, and strangled for his lionesses, and filled his holes with prey, and his dens with ravin. \nBehold, I am against thee, saith the LORD of hosts, and I will burn her chariots in the smoke, and the sword shall devour thy young lions: and I will cut off thy prey from the earth, and the voice of thy messengers shall no more be heard. \nWoe to the bloody city! it is all full of lies and robbery; the prey departeth not; \nThe noise of a whip, and the noise of the rattling of the wheels, and of the pransing horses, and of the jumping chariots. \nThe horseman lifteth up both the bright sword and the glittering spear: and there is a multitude of slain, and a great number of carcases; and there is none end of their corpses; they stumble upon their corpses: \nBecause of the multitude of the whoredoms of the wellfavoured harlot, the mistress of witchcrafts, that selleth nations through her whoredoms, and families through her witchcrafts. \nBehold, I am against thee, saith the LORD of hosts; and I will discover thy skirts upon thy face, and I will shew the nations thy nakedness, and the kingdoms thy shame. \nAnd I will cast abominable filth upon thee, and make thee vile, and will set thee as a gazingstock. \nAnd it shall come to pass, that all they that look upon thee shall flee from thee, and say, Nineveh is laid waste: who will bemoan her? whence shall I seek comforters for thee? \nArt thou better than populous No, that was situate among the rivers, that had the waters round about it, whose rampart was the sea, and her wall was from the sea? \nEthiopia and Egypt were her strength, and it was infinite; Put and Lubim were thy helpers. \nYet was she carried away, she went into captivity: her young children also were dashed in pieces at the top of all the streets: and they cast lots for her honourable men, and all her great men were bound in chains. \nThou also shalt be drunken: thou shalt be hid, thou also shalt seek strength because of the enemy. \nAll thy strong holds shall be like fig trees with the firstripe figs: if they be shaken, they shall even fall into the mouth of the eater. \nBehold, thy people in the midst of thee are women: the gates of thy land shall be set wide open unto thine enemies: the fire shall devour thy bars. \nDraw thee waters for the siege, fortify thy strong holds: go into clay, and tread the morter, make strong the brickkiln. \nThere shall the fire devour thee; the sword shall cut thee off, it shall eat thee up like the cankerworm: make thyself many as the cankerworm, make thyself many as the locusts. \nThou hast multiplied thy merchants above the stars of heaven: the cankerworm spoileth, and fleeth away. \nThy crowned are as the locusts, and thy captains as the great grasshoppers, which camp in the hedges in the cold day, but when the sun ariseth they flee away, and their place is not known where they are. \nThy shepherds slumber, O king of Assyria: thy nobles shall dwell in the dust: thy people is scattered upon the mountains, and no man gathereth them. \nThere is no healing of thy bruise; thy wound is grievous: all that hear the bruit of thee shall clap the hands over thee: for upon whom hath not thy wickedness passed continually? \nThe burden which Habakkuk the prophet did see. \nO LORD, how long shall I cry, and thou wilt not hear! even cry out unto thee of violence, and thou wilt not save! \nWhy dost thou shew me iniquity, and cause me to behold grievance? for spoiling and violence are before me: and there are that raise up strife and contention. \nTherefore the law is slacked, and judgment doth never go forth: for the wicked doth compass about the righteous; therefore wrong judgment proceedeth. \nBehold ye among the heathen, and regard, and wonder marvelously: for I will work a work in your days which ye will not believe, though it be told you. \nFor, lo, I raise up the Chaldeans, that bitter and hasty nation, which shall march through the breadth of the land, to possess the dwellingplaces that are not their's. \nThey are terrible and dreadful: their judgment and their dignity shall proceed of themselves. \nTheir horses also are swifter than the leopards, and are more fierce than the evening wolves: and their horsemen shall spread themselves, and their horsemen shall come from far; they shall fly as the eagle that hasteth to eat. \nThey shall come all for violence: their faces shall sup up as the east wind, and they shall gather the captivity as the sand. \nAnd they shall scoff at the kings, and the princes shall be a scorn unto them: they shall deride every strong hold; for they shall heap dust, and take it. \nThen shall his mind change, and he shall pass over, and offend, imputing this his power unto his god. \nArt thou not from everlasting, O LORD my God, mine Holy One? we shall not die. O LORD, thou hast ordained them for judgment; and, O mighty God, thou hast established them for correction. \nThou art of purer eyes than to behold evil, and canst not look on iniquity: wherefore lookest thou upon them that deal treacherously, and holdest thy tongue when the wicked devoureth the man that is more righteous than he? \nAnd makest men as the fishes of the sea, as the creeping things, that have no ruler over them? \nThey take up all of them with the angle, they catch them in their net, and gather them in their drag: therefore they rejoice and are glad. \nTherefore they sacrifice unto their net, and burn incense unto their drag; because by them their portion is fat, and their meat plenteous. \nShall they therefore empty their net, and not spare continually to slay the nations? \nI will stand upon my watch, and set me upon the tower, and will watch to see what he will say unto me, and what I shall answer when I am reproved. \nAnd the LORD answered me, and said, Write the vision, and make it plain upon tables, that he may run that readeth it. \nFor the vision is yet for an appointed time, but at the end it shall speak, and not lie: though it tarry, wait for it; because it will surely come, it will not tarry. \nBehold, his soul which is lifted up is not upright in him: but the just shall live by his faith. \nYea also, because he transgresseth by wine, he is a proud man, neither keepeth at home, who enlargeth his desire as hell, and is as death, and cannot be satisfied, but gathereth unto him all nations, and heapeth unto him all people: \nShall not all these take up a parable against him, and a taunting proverb against him, and say, Woe to him that increaseth that which is not his! how long? and to him that ladeth himself with thick clay! \nShall they not rise up suddenly that shall bite thee, and awake that shall vex thee, and thou shalt be for booties unto them? \nBecause thou hast spoiled many nations, all the remnant of the people shall spoil thee; because of men's blood, and for the violence of the land, of the city, and of all that dwell therein. \nWoe to him that coveteth an evil covetousness to his house, that he may set his nest on high, that he may be delivered from the power of evil! \nThou hast consulted shame to thy house by cutting off many people, and hast sinned against thy soul. \nFor the stone shall cry out of the wall, and the beam out of the timber shall answer it. \nWoe to him that buildeth a town with blood, and stablisheth a city by iniquity! \nBehold, is it not of the LORD of hosts that the people shall labour in the very fire, and the people shall weary themselves for very vanity? \nFor the earth shall be filled with the knowledge of the glory of the LORD, as the waters cover the sea. \nWoe unto him that giveth his neighbour drink, that puttest thy bottle to him, and makest him drunken also, that thou mayest look on their nakedness! \nThou art filled with shame for glory: drink thou also, and let thy foreskin be uncovered: the cup of the LORD's right hand shall be turned unto thee, and shameful spewing shall be on thy glory. \nFor the violence of Lebanon shall cover thee, and the spoil of beasts, which made them afraid, because of men's blood, and for the violence of the land, of the city, and of all that dwell therein. \nWhat profiteth the graven image that the maker thereof hath graven it; the molten image, and a teacher of lies, that the maker of his work trusteth therein, to make dumb idols? \nWoe unto him that saith to the wood, Awake; to the dumb stone, Arise, it shall teach! Behold, it is laid over with gold and silver, and there is no breath at all in the midst of it. \nBut the LORD is in his holy temple: let all the earth keep silence before him. \nA prayer of Habakkuk the prophet upon Shigionoth. \nO LORD, I have heard thy speech, and was afraid: O LORD, revive thy work in the midst of the years, in the midst of the years make known; in wrath remember mercy. \nGod came from Teman, and the Holy One from mount Paran. Selah. His glory covered the heavens, and the earth was full of his praise. \nAnd his brightness was as the light; he had horns coming out of his hand: and there was the hiding of his power. \nBefore him went the pestilence, and burning coals went forth at his feet. \nHe stood, and measured the earth: he beheld, and drove asunder the nations; and the everlasting mountains were scattered, the perpetual hills did bow: his ways are everlasting. \nI saw the tents of Cushan in affliction: and the curtains of the land of Midian did tremble. \nWas the LORD displeased against the rivers? was thine anger against the rivers? was thy wrath against the sea, that thou didst ride upon thine horses and thy chariots of salvation? \nThy bow was made quite naked, according to the oaths of the tribes, even thy word. Selah. Thou didst cleave the earth with rivers. \nThe mountains saw thee, and they trembled: the overflowing of the water passed by: the deep uttered his voice, and lifted up his hands on high. \nThe sun and moon stood still in their habitation: at the light of thine arrows they went, and at the shining of thy glittering spear. \nThou didst march through the land in indignation, thou didst thresh the heathen in anger. \nThou wentest forth for the salvation of thy people, even for salvation with thine anointed; thou woundedst the head out of the house of the wicked, by discovering the foundation unto the neck. Selah. \nThou didst strike through with his staves the head of his villages: they came out as a whirlwind to scatter me: their rejoicing was as to devour the poor secretly. \nThou didst walk through the sea with thine horses, through the heap of great waters. \nWhen I heard, my belly trembled; my lips quivered at the voice: rottenness entered into my bones, and I trembled in myself, that I might rest in the day of trouble: when he cometh up unto the people, he will invade them with his troops. \nAlthough the fig tree shall not blossom, neither shall fruit be in the vines; the labour of the olive shall fail, and the fields shall yield no meat; the flock shall be cut off from the fold, and there shall be no herd in the stalls: \nYet I will rejoice in the LORD, I will joy in the God of my salvation. \nThe LORD God is my strength, and he will make my feet like hinds' feet, and he will make me to walk upon mine high places. To the chief singer on my stringed instruments. \nThe word of the LORD which came unto Zephaniah the son of Cushi, the son of Gedaliah, the son of Amariah, the son of Hizkiah, in the days of Josiah the son of Amon, king of Judah. \nI will utterly consume all things from off the land, saith the LORD. \nI will consume man and beast; I will consume the fowls of the heaven, and the fishes of the sea, and the stumbling blocks with the wicked: and I will cut off man from off the land, saith the LORD. \nI will also stretch out mine hand upon Judah, and upon all the inhabitants of Jerusalem; and I will cut off the remnant of Baal from this place, and the name of the Chemarims with the priests; \nAnd them that worship the host of heaven upon the housetops; and them that worship and that swear by the LORD, and that swear by Malcham; \nAnd them that are turned back from the LORD; and those that have not sought the LORD, nor enquired for him. \nHold thy peace at the presence of the Lord GOD: for the day of the LORD is at hand: for the LORD hath prepared a sacrifice, he hath bid his guests. \nAnd it shall come to pass in the day of the LORD's sacrifice, that I will punish the princes, and the king's children, and all such as are clothed with strange apparel. \nIn the same day also will I punish all those that leap on the threshold, which fill their masters' houses with violence and deceit. \nAnd it shall come to pass in that day, saith the LORD, that there shall be the noise of a cry from the fish gate, and an howling from the second, and a great crashing from the hills. \nHowl, ye inhabitants of Maktesh, for all the merchant people are cut down; all they that bear silver are cut off. \nAnd it shall come to pass at that time, that I will search Jerusalem with candles, and punish the men that are settled on their lees: that say in their heart, The LORD will not do good, neither will he do evil. \nTherefore their goods shall become a booty, and their houses a desolation: they shall also build houses, but not inhabit them; and they shall plant vineyards, but not drink the wine thereof. \nThe great day of the LORD is near, it is near, and hasteth greatly, even the voice of the day of the LORD: the mighty man shall cry there bitterly. \nThat day is a day of wrath, a day of trouble and distress, a day of wasteness and desolation, a day of darkness and gloominess, a day of clouds and thick darkness, \nA day of the trumpet and alarm against the fenced cities, and against the high towers. \nAnd I will bring distress upon men, that they shall walk like blind men, because they have sinned against the LORD: and their blood shall be poured out as dust, and their flesh as the dung. \nNeither their silver nor their gold shall be able to deliver them in the day of the LORD's wrath; but the whole land shall be devoured by the fire of his jealousy: for he shall make even a speedy riddance of all them that dwell in the land. \nGather yourselves together, yea, gather together, O nation not desired; \nBefore the decree bring forth, before the day pass as the chaff, before the fierce anger of the LORD come upon you, before the day of the LORD's anger come upon you. \nSeek ye the LORD, all ye meek of the earth, which have wrought his judgment; seek righteousness, seek meekness: it may be ye shall be hid in the day of the LORD's anger. \nFor Gaza shall be forsaken, and Ashkelon a desolation: they shall drive out Ashdod at the noon day, and Ekron shall be rooted up. \nWoe unto the inhabitants of the sea coast, the nation of the Cherethites! the word of the LORD is against you; O Canaan, the land of the Philistines, I will even destroy thee, that there shall be no inhabitant. \nAnd the sea coast shall be dwellings and cottages for shepherds, and folds for flocks. \nAnd the coast shall be for the remnant of the house of Judah; they shall feed thereupon: in the houses of Ashkelon shall they lie down in the evening: for the LORD their God shall visit them, and turn away their captivity. \nI have heard the reproach of Moab, and the revilings of the children of Ammon, whereby they have reproached my people, and magnified themselves against their border. \nTherefore as I live, saith the LORD of hosts, the God of Israel, Surely Moab shall be as Sodom, and the children of Ammon as Gomorrah, even the breeding of nettles, and saltpits, and a perpetual desolation: the residue of my people shall spoil them, and the remnant of my people shall possess them. \nThis shall they have for their pride, because they have reproached and magnified themselves against the people of the LORD of hosts. \nThe LORD will be terrible unto them: for he will famish all the gods of the earth; and men shall worship him, every one from his place, even all the isles of the heathen. \nYe Ethiopians also, ye shall be slain by my sword. \nAnd he will stretch out his hand against the north, and destroy Assyria; and will make Nineveh a desolation, and dry like a wilderness. \nAnd flocks shall lie down in the midst of her, all the beasts of the nations: both the cormorant and the bittern shall lodge in the upper lintels of it; their voice shall sing in the windows; desolation shall be in the thresholds; for he shall uncover the cedar work. \nThis is the rejoicing city that dwelt carelessly, that said in her heart, I am, and there is none beside me: how is she become a desolation, a place for beasts to lie down in! every one that passeth by her shall hiss, and wag his hand. \nWoe to her that is filthy and polluted, to the oppressing city! \nShe obeyed not the voice; she received not correction; she trusted not in the LORD; she drew not near to her God. \nHer princes within her are roaring lions; her judges are evening wolves; they gnaw not the bones till the morrow. \nHer prophets are light and treacherous persons: her priests have polluted the sanctuary, they have done violence to the law. \nThe just LORD is in the midst thereof; he will not do iniquity: every morning doth he bring his judgment to light, he faileth not; but the unjust knoweth no shame. \nI have cut off the nations: their towers are desolate; I made their streets waste, that none passeth by: their cities are destroyed, so that there is no man, that there is none inhabitant. \nI said, Surely thou wilt fear me, thou wilt receive instruction; so their dwelling should not be cut off, howsoever I punished them: but they rose early, and corrupted all their doings. \nTherefore wait ye upon me, saith the LORD, until the day that I rise up to the prey: for my determination is to gather the nations, that I may assemble the kingdoms, to pour upon them mine indignation, even all my fierce anger: for all the earth shall be devoured with the fire of my jealousy. \nFor then will I turn to the people a pure language, that they may all call upon the name of the LORD, to serve him with one consent. \nFrom beyond the rivers of Ethiopia my suppliants, even the daughter of my dispersed, shall bring mine offering. \nIn that day shalt thou not be ashamed for all thy doings, wherein thou hast transgressed against me: for then I will take away out of the midst of thee them that rejoice in thy pride, and thou shalt no more be haughty because of my holy mountain. \nI will also leave in the midst of thee an afflicted and poor people, and they shall trust in the name of the LORD. \nThe remnant of Israel shall not do iniquity, nor speak lies; neither shall a deceitful tongue be found in their mouth: for they shall feed and lie down, and none shall make them afraid. \nSing, O daughter of Zion; shout, O Israel; be glad and rejoice with all the heart, O daughter of Jerusalem. \nThe LORD hath taken away thy judgments, he hath cast out thine enemy: the king of Israel, even the LORD, is in the midst of thee: thou shalt not see evil any more. \nIn that day it shall be said to Jerusalem, Fear thou not: and to Zion, Let not thine hands be slack. \nThe LORD thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing. \nI will gather them that are sorrowful for the solemn assembly, who are of thee, to whom the reproach of it was a burden. \nBehold, at that time I will undo all that afflict thee: and I will save her that halteth, and gather her that was driven out; and I will get them praise and fame in every land where they have been put to shame. \nAt that time will I bring you again, even in the time that I gather you: for I will make you a name and a praise among all people of the earth, when I turn back your captivity before your eyes, saith the LORD. \nIn the second year of Darius the king, in the sixth month, in the first day of the month, came the word of the LORD by Haggai the prophet unto Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Josedech, the high priest, saying, \nThus speaketh the LORD of hosts, saying, This people say, The time is not come, the time that the LORD's house should be built. \nThen came the word of the LORD by Haggai the prophet, saying, \nIs it time for you, O ye, to dwell in your cieled houses, and this house lie waste? \nNow therefore thus saith the LORD of hosts; Consider your ways. \nYe have sown much, and bring in little; ye eat, but ye have not enough; ye drink, but ye are not filled with drink; ye clothe you, but there is none warm; and he that earneth wages earneth wages to put it into a bag with holes. \nThus saith the LORD of hosts; Consider your ways. \nGo up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the LORD. \nYe looked for much, and, lo it came to little; and when ye brought it home, I did blow upon it. Why? saith the LORD of hosts. Because of mine house that is waste, and ye run every man unto his own house. \nTherefore the heaven over you is stayed from dew, and the earth is stayed from her fruit. \nAnd I called for a drought upon the land, and upon the mountains, and upon the corn, and upon the new wine, and upon the oil, and upon that which the ground bringeth forth, and upon men, and upon cattle, and upon all the labour of the hands. \nThen Zerubbabel the son of Shealtiel, and Joshua the son of Josedech, the high priest, with all the remnant of the people, obeyed the voice of the LORD their God, and the words of Haggai the prophet, as the LORD their God had sent him, and the people did fear before the LORD. \nThen spake Haggai the LORD's messenger in the LORD's message unto the people, saying, I am with you, saith the LORD. \nAnd the LORD stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Josedech, the high priest, and the spirit of all the remnant of the people; and they came and did work in the house of the LORD of hosts, their God, \nIn the four and twentieth day of the sixth month, in the second year of Darius the king. \nIn the seventh month, in the one and twentieth day of the month, came the word of the LORD by the prophet Haggai, saying, \nSpeak now to Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Josedech, the high priest, and to the residue of the people, saying, \nWho is left among you that saw this house in her first glory? and how do ye see it now? is it not in your eyes in comparison of it as nothing? \nYet now be strong, O Zerubbabel, saith the LORD; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the LORD, and work: for I am with you, saith the LORD of hosts: \nAccording to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not. \nFor thus saith the LORD of hosts; Yet once, it is a little while, and I will shake the heavens, and the earth, and the sea, and the dry land; \nAnd I will shake all nations, and the desire of all nations shall come: and I will fill this house with glory, saith the LORD of hosts. \nThe silver is mine, and the gold is mine, saith the LORD of hosts. \nThe glory of this latter house shall be greater than of the former, saith the LORD of hosts: and in this place will I give peace, saith the LORD of hosts. \nIn the four and twentieth day of the ninth month, in the second year of Darius, came the word of the LORD by Haggai the prophet, saying, \nThus saith the LORD of hosts; Ask now the priests concerning the law, saying, \nIf one bear holy flesh in the skirt of his garment, and with his skirt do touch bread, or pottage, or wine, or oil, or any meat, shall it be holy? And the priests answered and said, No. \nThen said Haggai, If one that is unclean by a dead body touch any of these, shall it be unclean? And the priests answered and said, It shall be unclean. \nThen answered Haggai, and said, So is this people, and so is this nation before me, saith the LORD; and so is every work of their hands; and that which they offer there is unclean. \nAnd now, I pray you, consider from this day and upward, from before a stone was laid upon a stone in the temple of the LORD: \nSince those days were, when one came to an heap of twenty measures, there were but ten: when one came to the pressfat for to draw out fifty vessels out of the press, there were but twenty. \nI smote you with blasting and with mildew and with hail in all the labours of your hands; yet ye turned not to me, saith the LORD. \nConsider now from this day and upward, from the four and twentieth day of the ninth month, even from the day that the foundation of the LORD's temple was laid, consider it. \nIs the seed yet in the barn? yea, as yet the vine, and the fig tree, and the pomegranate, and the olive tree, hath not brought forth: from this day will I bless you. \nAnd again the word of the LORD came unto Haggai in the four and twentieth day of the month, saying, \nSpeak to Zerubbabel, governor of Judah, saying, I will shake the heavens and the earth; \nAnd I will overthrow the throne of kingdoms, and I will destroy the strength of the kingdoms of the heathen; and I will overthrow the chariots, and those that ride in them; and the horses and their riders shall come down, every one by the sword of his brother. \nIn that day, saith the LORD of hosts, will I take thee, O Zerubbabel, my servant, the son of Shealtiel, saith the LORD, and will make thee as a signet: for I have chosen thee, saith the LORD of hosts. \nIn the eighth month, in the second year of Darius, came the word of the LORD unto Zechariah, the son of Berechiah, the son of Iddo the prophet, saying, \nThe LORD hath been sore displeased with your fathers. \nTherefore say thou unto them, Thus saith the LORD of hosts; Turn ye unto me, saith the LORD of hosts, and I will turn unto you, saith the LORD of hosts. \nBe ye not as your fathers, unto whom the former prophets have cried, saying, Thus saith the LORD of hosts; Turn ye now from your evil ways, and from your evil doings: but they did not hear, nor hearken unto me, saith the LORD. \nYour fathers, where are they? and the prophets, do they live for ever? \nBut my words and my statutes, which I commanded my servants the prophets, did they not take hold of your fathers? and they returned and said, Like as the LORD of hosts thought to do unto us, according to our ways, and according to our doings, so hath he dealt with us. \nUpon the four and twentieth day of the eleventh month, which is the month Sebat, in the second year of Darius, came the word of the LORD unto Zechariah, the son of Berechiah, the son of Iddo the prophet, saying, \nI saw by night, and behold a man riding upon a red horse, and he stood among the myrtle trees that were in the bottom; and behind him were there red horses, speckled, and white. \nThen said I, O my lord, what are these? And the angel that talked with me said unto me, I will shew thee what these be. \nAnd the man that stood among the myrtle trees answered and said, These are they whom the LORD hath sent to walk to and fro through the earth. \nAnd they answered the angel of the LORD that stood among the myrtle trees, and said, We have walked to and fro through the earth, and, behold, all the earth sitteth still, and is at rest. \nThen the angel of the LORD answered and said, O LORD of hosts, how long wilt thou not have mercy on Jerusalem and on the cities of Judah, against which thou hast had indignation these threescore and ten years? \nAnd the LORD answered the angel that talked with me with good words and comfortable words. \nSo the angel that communed with me said unto me, Cry thou, saying, Thus saith the LORD of hosts; I am jealous for Jerusalem and for Zion with a great jealousy. \nAnd I am very sore displeased with the heathen that are at ease: for I was but a little displeased, and they helped forward the affliction. \nTherefore thus saith the LORD; I am returned to Jerusalem with mercies: my house shall be built in it, saith the LORD of hosts, and a line shall be stretched forth upon Jerusalem. \nCry yet, saying, Thus saith the LORD of hosts; My cities through prosperity shall yet be spread abroad; and the LORD shall yet comfort Zion, and shall yet choose Jerusalem. \nThen lifted I up mine eyes, and saw, and behold four horns. \nAnd I said unto the angel that talked with me, What be these? And he answered me, These are the horns which have scattered Judah, Israel, and Jerusalem. \nAnd the LORD shewed me four carpenters. \nThen said I, What come these to do? And he spake, saying, These are the horns which have scattered Judah, so that no man did lift up his head: but these are come to fray them, to cast out the horns of the Gentiles, which lifted up their horn over the land of Judah to scatter it. \nI lifted up mine eyes again, and looked, and behold a man with a measuring line in his hand. \nThen said I, Whither goest thou? And he said unto me, To measure Jerusalem, to see what is the breadth thereof, and what is the length thereof. \nAnd, behold, the angel that talked with me went forth, and another angel went out to meet him, \nAnd said unto him, Run, speak to this young man, saying, Jerusalem shall be inhabited as towns without walls for the multitude of men and cattle therein: \nFor I, saith the LORD, will be unto her a wall of fire round about, and will be the glory in the midst of her. \nHo, ho, come forth, and flee from the land of the north, saith the LORD: for I have spread you abroad as the four winds of the heaven, saith the LORD. \nDeliver thyself, O Zion, that dwellest with the daughter of Babylon. \nFor thus saith the LORD of hosts; After the glory hath he sent me unto the nations which spoiled you: for he that toucheth you toucheth the apple of his eye. \nFor, behold, I will shake mine hand upon them, and they shall be a spoil to their servants: and ye shall know that the LORD of hosts hath sent me. \nSing and rejoice, O daughter of Zion: for, lo, I come, and I will dwell in the midst of thee, saith the LORD. \nAnd many nations shall be joined to the LORD in that day, and shall be my people: and I will dwell in the midst of thee, and thou shalt know that the LORD of hosts hath sent me unto thee. \nAnd the LORD shall inherit Judah his portion in the holy land, and shall choose Jerusalem again. \nBe silent, O all flesh, before the LORD: for he is raised up out of his holy habitation. \nAnd he shewed me Joshua the high priest standing before the angel of the LORD, and Satan standing at his right hand to resist him. \nAnd the LORD said unto Satan, The LORD rebuke thee, O Satan; even the LORD that hath chosen Jerusalem rebuke thee: is not this a brand plucked out of the fire? \nNow Joshua was clothed with filthy garments, and stood before the angel. \nAnd he answered and spake unto those that stood before him, saying, Take away the filthy garments from him. And unto him he said, Behold, I have caused thine iniquity to pass from thee, and I will clothe thee with change of raiment. \nAnd I said, Let them set a fair mitre upon his head. So they set a fair mitre upon his head, and clothed him with garments. And the angel of the LORD stood by. \nAnd the angel of the LORD protested unto Joshua, saying, \nThus saith the LORD of hosts; If thou wilt walk in my ways, and if thou wilt keep my charge, then thou shalt also judge my house, and shalt also keep my courts, and I will give thee places to walk among these that stand by. \nHear now, O Joshua the high priest, thou, and thy fellows that sit before thee: for they are men wondered at: for, behold, I will bring forth my servant the BRANCH. \nFor behold the stone that I have laid before Joshua; upon one stone shall be seven eyes: behold, I will engrave the graving thereof, saith the LORD of hosts, and I will remove the iniquity of that land in one day. \nIn that day, saith the LORD of hosts, shall ye call every man his neighbour under the vine and under the fig tree. \nAnd the angel that talked with me came again, and waked me, as a man that is wakened out of his sleep. \nAnd said unto me, What seest thou? And I said, I have looked, and behold a candlestick all of gold, with a bowl upon the top of it, and his seven lamps thereon, and seven pipes to the seven lamps, which are upon the top thereof: \nAnd two olive trees by it, one upon the right side of the bowl, and the other upon the left side thereof. \nSo I answered and spake to the angel that talked with me, saying, What are these, my lord? \nThen the angel that talked with me answered and said unto me, Knowest thou not what these be? And I said, No, my lord. \nThen he answered and spake unto me, saying, This is the word of the LORD unto Zerubbabel, saying, Not by might, nor by power, but by my spirit, saith the LORD of hosts. \nWho art thou, O great mountain? before Zerubbabel thou shalt become a plain: and he shall bring forth the headstone thereof with shoutings, crying, Grace, grace unto it. \nMoreover the word of the LORD came unto me, saying, \nThe hands of Zerubbabel have laid the foundation of this house; his hands shall also finish it; and thou shalt know that the LORD of hosts hath sent me unto you. \nFor who hath despised the day of small things? for they shall rejoice, and shall see the plummet in the hand of Zerubbabel with those seven; they are the eyes of the LORD, which run to and fro through the whole earth. \nThen answered I, and said unto him, What are these two olive trees upon the right side of the candlestick and upon the left side thereof? \nAnd I answered again, and said unto him, What be these two olive branches which through the two golden pipes empty the golden oil out of themselves? \nAnd he answered me and said, Knowest thou not what these be? And I said, No, my lord. \nThen said he, These are the two anointed ones, that stand by the LORD of the whole earth. \nThen I turned, and lifted up mine eyes, and looked, and behold a flying roll. \nAnd he said unto me, What seest thou? And I answered, I see a flying roll; the length thereof is twenty cubits, and the breadth thereof ten cubits. \nThen said he unto me, This is the curse that goeth forth over the face of the whole earth: for every one that stealeth shall be cut off as on this side according to it; and every one that sweareth shall be cut off as on that side according to it. \nI will bring it forth, saith the LORD of hosts, and it shall enter into the house of the thief, and into the house of him that sweareth falsely by my name: and it shall remain in the midst of his house, and shall consume it with the timber thereof and the stones thereof. \nThen the angel that talked with me went forth, and said unto me, Lift up now thine eyes, and see what is this that goeth forth. \nAnd I said, What is it? And he said, This is an ephah that goeth forth. He said moreover, This is their resemblance through all the earth. \nAnd, behold, there was lifted up a talent of lead: and this is a woman that sitteth in the midst of the ephah. \nAnd he said, This is wickedness. And he cast it into the midst of the ephah; and he cast the weight of lead upon the mouth thereof. \nThen lifted I up mine eyes, and looked, and, behold, there came out two women, and the wind was in their wings; for they had wings like the wings of a stork: and they lifted up the ephah between the earth and the heaven. \nThen said I to the angel that talked with me, Whither do these bear the ephah? \nAnd he said unto me, To build it an house in the land of Shinar: and it shall be established, and set there upon her own base. \nAnd I turned, and lifted up mine eyes, and looked, and, behold, there came four chariots out from between two mountains; and the mountains were mountains of brass. \nIn the first chariot were red horses; and in the second chariot black horses; \nAnd in the third chariot white horses; and in the fourth chariot grisled and bay horses. \nThen I answered and said unto the angel that talked with me, What are these, my lord? \nAnd the angel answered and said unto me, These are the four spirits of the heavens, which go forth from standing before the LORD of all the earth. \nThe black horses which are therein go forth into the north country; and the white go forth after them; and the grisled go forth toward the south country. \nAnd the bay went forth, and sought to go that they might walk to and fro through the earth: and he said, Get you hence, walk to and fro through the earth. So they walked to and fro through the earth. \nThen cried he upon me, and spake unto me, saying, Behold, these that go toward the north country have quieted my spirit in the north country. \nAnd the word of the LORD came unto me, saying, \nTake of them of the captivity, even of Heldai, of Tobijah, and of Jedaiah, which are come from Babylon, and come thou the same day, and go into the house of Josiah the son of Zephaniah; \nThen take silver and gold, and make crowns, and set them upon the head of Joshua the son of Josedech, the high priest; \nAnd speak unto him, saying, Thus speaketh the LORD of hosts, saying, Behold the man whose name is The BRANCH; and he shall grow up out of his place, and he shall build the temple of the LORD: \nEven he shall build the temple of the LORD; and he shall bear the glory, and shall sit and rule upon his throne; and he shall be a priest upon his throne: and the counsel of peace shall be between them both. \nAnd the crowns shall be to Helem, and to Tobijah, and to Jedaiah, and to Hen the son of Zephaniah, for a memorial in the temple of the LORD. \nAnd they that are far off shall come and build in the temple of the LORD, and ye shall know that the LORD of hosts hath sent me unto you. And this shall come to pass, if ye will diligently obey the voice of the LORD your God. \nAnd it came to pass in the fourth year of king Darius, that the word of the LORD came unto Zechariah in the fourth day of the ninth month, even in Chisleu; \nWhen they had sent unto the house of God Sherezer and Regemmelech, and their men, to pray before the LORD, \nAnd to speak unto the priests which were in the house of the LORD of hosts, and to the prophets, saying, Should I weep in the fifth month, separating myself, as I have done these so many years? \nThen came the word of the LORD of hosts unto me, saying, \nSpeak unto all the people of the land, and to the priests, saying, When ye fasted and mourned in the fifth and seventh month, even those seventy years, did ye at all fast unto me, even to me? \nAnd when ye did eat, and when ye did drink, did not ye eat for yourselves, and drink for yourselves? \nShould ye not hear the words which the LORD hath cried by the former prophets, when Jerusalem was inhabited and in prosperity, and the cities thereof round about her, when men inhabited the south and the plain? \nAnd the word of the LORD came unto Zechariah, saying, \nThus speaketh the LORD of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother: \nAnd oppress not the widow, nor the fatherless, the stranger, nor the poor; and let none of you imagine evil against his brother in your heart. \nBut they refused to hearken, and pulled away the shoulder, and stopped their ears, that they should not hear. \nYea, they made their hearts as an adamant stone, lest they should hear the law, and the words which the LORD of hosts hath sent in his spirit by the former prophets: therefore came a great wrath from the LORD of hosts. \nTherefore it is come to pass, that as he cried, and they would not hear; so they cried, and I would not hear, saith the LORD of hosts: \nBut I scattered them with a whirlwind among all the nations whom they knew not. Thus the land was desolate after them, that no man passed through nor returned: for they laid the pleasant land desolate. \nAgain the word of the LORD of hosts came to me, saying, \nThus saith the LORD of hosts; I was jealous for Zion with great jealousy, and I was jealous for her with great fury. \nThus saith the LORD; I am returned unto Zion, and will dwell in the midst of Jerusalem: and Jerusalem shall be called a city of truth; and the mountain of the LORD of hosts the holy mountain. \nThus saith the LORD of hosts; There shall yet old men and old women dwell in the streets of Jerusalem, and every man with his staff in his hand for very age. \nAnd the streets of the city shall be full of boys and girls playing in the streets thereof. \nThus saith the LORD of hosts; If it be marvellous in the eyes of the remnant of this people in these days, should it also be marvellous in mine eyes? saith the LORD of hosts. \nThus saith the LORD of hosts; Behold, I will save my people from the east country, and from the west country; \nAnd I will bring them, and they shall dwell in the midst of Jerusalem: and they shall be my people, and I will be their God, in truth and in righteousness. \nThus saith the LORD of hosts; Let your hands be strong, ye that hear in these days these words by the mouth of the prophets, which were in the day that the foundation of the house of the LORD of hosts was laid, that the temple might be built. \nFor before these days there was no hire for man, nor any hire for beast; neither was there any peace to him that went out or came in because of the affliction: for I set all men every one against his neighbour. \nBut now I will not be unto the residue of this people as in the former days, saith the LORD of hosts. \nFor the seed shall be prosperous; the vine shall give her fruit, and the ground shall give her increase, and the heavens shall give their dew; and I will cause the remnant of this people to possess all these things. \nAnd it shall come to pass, that as ye were a curse among the heathen, O house of Judah, and house of Israel; so will I save you, and ye shall be a blessing: fear not, but let your hands be strong. \nFor thus saith the LORD of hosts; As I thought to punish you, when your fathers provoked me to wrath, saith the LORD of hosts, and I repented not: \nSo again have I thought in these days to do well unto Jerusalem and to the house of Judah: fear ye not. \nThese are the things that ye shall do; Speak ye every man the truth to his neighbour; execute the judgment of truth and peace in your gates: \nAnd let none of you imagine evil in your hearts against his neighbour; and love no false oath: for all these are things that I hate, saith the LORD. \nAnd the word of the LORD of hosts came unto me, saying, \nThus saith the LORD of hosts; The fast of the fourth month, and the fast of the fifth, and the fast of the seventh, and the fast of the tenth, shall be to the house of Judah joy and gladness, and cheerful feasts; therefore love the truth and peace. \nThus saith the LORD of hosts; It shall yet come to pass, that there shall come people, and the inhabitants of many cities: \nAnd the inhabitants of one city shall go to another, saying, Let us go speedily to pray before the LORD, and to seek the LORD of hosts: I will go also. \nYea, many people and strong nations shall come to seek the LORD of hosts in Jerusalem, and to pray before the LORD. \nThus saith the LORD of hosts; In those days it shall come to pass, that ten men shall take hold out of all languages of the nations, even shall take hold of the skirt of him that is a Jew, saying, We will go with you: for we have heard that God is with you. \nThe burden of the word of the LORD in the land of Hadrach, and Damascus shall be the rest thereof: when the eyes of man, as of all the tribes of Israel, shall be toward the LORD. \nAnd Hamath also shall border thereby; Tyrus, and Zidon, though it be very wise. \nAnd Tyrus did build herself a strong hold, and heaped up silver as the dust, and fine gold as the mire of the streets. \nBehold, the LORD will cast her out, and he will smite her power in the sea; and she shall be devoured with fire. \nAshkelon shall see it, and fear; Gaza also shall see it, and be very sorrowful, and Ekron; for her expectation shall be ashamed; and the king shall perish from Gaza, and Ashkelon shall not be inhabited. \nAnd a bastard shall dwell in Ashdod, and I will cut off the pride of the Philistines. \nAnd I will take away his blood out of his mouth, and his abominations from between his teeth: but he that remaineth, even he, shall be for our God, and he shall be as a governor in Judah, and Ekron as a Jebusite. \nAnd I will encamp about mine house because of the army, because of him that passeth by, and because of him that returneth: and no oppressor shall pass through them any more: for now have I seen with mine eyes. \nRejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass. \nAnd I will cut off the chariot from Ephraim, and the horse from Jerusalem, and the battle bow shall be cut off: and he shall speak peace unto the heathen: and his dominion shall be from sea even to sea, and from the river even to the ends of the earth. \nAs for thee also, by the blood of thy covenant I have sent forth thy prisoners out of the pit wherein is no water. \nTurn you to the strong hold, ye prisoners of hope: even to day do I declare that I will render double unto thee; \nWhen I have bent Judah for me, filled the bow with Ephraim, and raised up thy sons, O Zion, against thy sons, O Greece, and made thee as the sword of a mighty man. \nAnd the LORD shall be seen over them, and his arrow shall go forth as the lightning: and the LORD God shall blow the trumpet, and shall go with whirlwinds of the south. \nThe LORD of hosts shall defend them; and they shall devour, and subdue with sling stones; and they shall drink, and make a noise as through wine; and they shall be filled like bowls, and as the corners of the altar. \nAnd the LORD their God shall save them in that day as the flock of his people: for they shall be as the stones of a crown, lifted up as an ensign upon his land. \nFor how great is his goodness, and how great is his beauty! corn shall make the young men cheerful, and new wine the maids. \nAsk ye of the LORD rain in the time of the latter rain; so the LORD shall make bright clouds, and give them showers of rain, to every one grass in the field. \nFor the idols have spoken vanity, and the diviners have seen a lie, and have told false dreams; they comfort in vain: therefore they went their way as a flock, they were troubled, because there was no shepherd. \nMine anger was kindled against the shepherds, and I punished the goats: for the LORD of hosts hath visited his flock the house of Judah, and hath made them as his goodly horse in the battle. \nOut of him came forth the corner, out of him the nail, out of him the battle bow, out of him every oppressor together. \nAnd they shall be as mighty men, which tread down their enemies in the mire of the streets in the battle: and they shall fight, because the LORD is with them, and the riders on horses shall be confounded. \nAnd I will strengthen the house of Judah, and I will save the house of Joseph, and I will bring them again to place them; for I have mercy upon them: and they shall be as though I had not cast them off: for I am the LORD their God, and will hear them. \nAnd they of Ephraim shall be like a mighty man, and their heart shall rejoice as through wine: yea, their children shall see it, and be glad; their heart shall rejoice in the LORD. \nI will hiss for them, and gather them; for I have redeemed them: and they shall increase as they have increased. \nAnd I will sow them among the people: and they shall remember me in far countries; and they shall live with their children, and turn again. \nI will bring them again also out of the land of Egypt, and gather them out of Assyria; and I will bring them into the land of Gilead and Lebanon; and place shall not be found for them. \nAnd he shall pass through the sea with affliction, and shall smite the waves in the sea, and all the deeps of the river shall dry up: and the pride of Assyria shall be brought down, and the sceptre of Egypt shall depart away. \nAnd I will strengthen them in the LORD; and they shall walk up and down in his name, saith the LORD. \nOpen thy doors, O Lebanon, that the fire may devour thy cedars. \nHowl, fir tree; for the cedar is fallen; because the mighty are spoiled: howl, O ye oaks of Bashan; for the forest of the vintage is come down. \nThere is a voice of the howling of the shepherds; for their glory is spoiled: a voice of the roaring of young lions; for the pride of Jordan is spoiled. \nThus saith the LORD my God; Feed the flock of the slaughter; \nWhose possessors slay them, and hold themselves not guilty: and they that sell them say, Blessed be the LORD; for I am rich: and their own shepherds pity them not. \nFor I will no more pity the inhabitants of the land, saith the LORD: but, lo, I will deliver the men every one into his neighbour's hand, and into the hand of his king: and they shall smite the land, and out of their hand I will not deliver them. \nAnd I will feed the flock of slaughter, even you, O poor of the flock. And I took unto me two staves; the one I called Beauty, and the other I called Bands; and I fed the flock. \nThree shepherds also I cut off in one month; and my soul lothed them, and their soul also abhorred me. \nThen said I, I will not feed you: that that dieth, let it die; and that that is to be cut off, let it be cut off; and let the rest eat every one the flesh of another. \nAnd I took my staff, even Beauty, and cut it asunder, that I might break my covenant which I had made with all the people. \nAnd it was broken in that day: and so the poor of the flock that waited upon me knew that it was the word of the LORD. \nAnd I said unto them, If ye think good, give me my price; and if not, forbear. So they weighed for my price thirty pieces of silver. \nAnd the LORD said unto me, Cast it unto the potter: a goodly price that I was prised at of them. And I took the thirty pieces of silver, and cast them to the potter in the house of the LORD. \nThen I cut asunder mine other staff, even Bands, that I might break the brotherhood between Judah and Israel. \nAnd the LORD said unto me, Take unto thee yet the instruments of a foolish shepherd. \nFor, lo, I will raise up a shepherd in the land, which shall not visit those that be cut off, neither shall seek the young one, nor heal that that is broken, nor feed that that standeth still: but he shall eat the flesh of the fat, and tear their claws in pieces. \nWoe to the idol shepherd that leaveth the flock! the sword shall be upon his arm, and upon his right eye: his arm shall be clean dried up, and his right eye shall be utterly darkened. \nThe burden of the word of the LORD for Israel, saith the LORD, which stretcheth forth the heavens, and layeth the foundation of the earth, and formeth the spirit of man within him. \nBehold, I will make Jerusalem a cup of trembling unto all the people round about, when they shall be in the siege both against Judah and against Jerusalem. \nAnd in that day will I make Jerusalem a burdensome stone for all people: all that burden themselves with it shall be cut in pieces, though all the people of the earth be gathered together against it. \nIn that day, saith the LORD, I will smite every horse with astonishment, and his rider with madness: and I will open mine eyes upon the house of Judah, and will smite every horse of the people with blindness. \nAnd the governors of Judah shall say in their heart, The inhabitants of Jerusalem shall be my strength in the LORD of hosts their God. \nIn that day will I make the governors of Judah like an hearth of fire among the wood, and like a torch of fire in a sheaf; and they shall devour all the people round about, on the right hand and on the left: and Jerusalem shall be inhabited again in her own place, even in Jerusalem. \nThe LORD also shall save the tents of Judah first, that the glory of the house of David and the glory of the inhabitants of Jerusalem do not magnify themselves against Judah. \nIn that day shall the LORD defend the inhabitants of Jerusalem; and he that is feeble among them at that day shall be as David; and the house of David shall be as God, as the angel of the LORD before them. \nAnd it shall come to pass in that day, that I will seek to destroy all the nations that come against Jerusalem. \nAnd I will pour upon the house of David, and upon the inhabitants of Jerusalem, the spirit of grace and of supplications: and they shall look upon me whom they have pierced, and they shall mourn for him, as one mourneth for his only son, and shall be in bitterness for him, as one that is in bitterness for his firstborn. \nIn that day shall there be a great mourning in Jerusalem, as the mourning of Hadadrimmon in the valley of Megiddon. \nAnd the land shall mourn, every family apart; the family of the house of David apart, and their wives apart; the family of the house of Nathan apart, and their wives apart; \nThe family of the house of Levi apart, and their wives apart; the family of Shimei apart, and their wives apart; \nAll the families that remain, every family apart, and their wives apart. \nIn that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness. \nAnd it shall come to pass in that day, saith the LORD of hosts, that I will cut off the names of the idols out of the land, and they shall no more be remembered: and also I will cause the prophets and the unclean spirit to pass out of the land. \nAnd it shall come to pass, that when any shall yet prophesy, then his father and his mother that begat him shall say unto him, Thou shalt not live; for thou speakest lies in the name of the LORD: and his father and his mother that begat him shall thrust him through when he prophesieth. \nAnd it shall come to pass in that day, that the prophets shall be ashamed every one of his vision, when he hath prophesied; neither shall they wear a rough garment to deceive: \nBut he shall say, I am no prophet, I am an husbandman; for man taught me to keep cattle from my youth. \nAnd one shall say unto him, What are these wounds in thine hands? Then he shall answer, Those with which I was wounded in the house of my friends. \nAwake, O sword, against my shepherd, and against the man that is my fellow, saith the LORD of hosts: smite the shepherd, and the sheep shall be scattered: and I will turn mine hand upon the little ones. \nAnd it shall come to pass, that in all the land, saith the LORD, two parts therein shall be cut off and die; but the third shall be left therein. \nAnd I will bring the third part through the fire, and will refine them as silver is refined, and will try them as gold is tried: they shall call on my name, and I will hear them: I will say, It is my people: and they shall say, The LORD is my God. \nBehold, the day of the LORD cometh, and thy spoil shall be divided in the midst of thee. \nFor I will gather all nations against Jerusalem to battle; and the city shall be taken, and the houses rifled, and the women ravished; and half of the city shall go forth into captivity, and the residue of the people shall not be cut off from the city. \nThen shall the LORD go forth, and fight against those nations, as when he fought in the day of battle. \nAnd his feet shall stand in that day upon the mount of Olives, which is before Jerusalem on the east, and the mount of Olives shall cleave in the midst thereof toward the east and toward the west, and there shall be a very great valley; and half of the mountain shall remove toward the north, and half of it toward the south. \nAnd ye shall flee to the valley of the mountains; for the valley of the mountains shall reach unto Azal: yea, ye shall flee, like as ye fled from before the earthquake in the days of Uzziah king of Judah: and the LORD my God shall come, and all the saints with thee. \nAnd it shall come to pass in that day, that the light shall not be clear, nor dark: \nBut it shall be one day which shall be known to the LORD, not day, nor night: but it shall come to pass, that at evening time it shall be light. \nAnd it shall be in that day, that living waters shall go out from Jerusalem; half of them toward the former sea, and half of them toward the hinder sea: in summer and in winter shall it be. \nAnd the LORD shall be king over all the earth: in that day shall there be one LORD, and his name one. \nAll the land shall be turned as a plain from Geba to Rimmon south of Jerusalem: and it shall be lifted up, and inhabited in her place, from Benjamin's gate unto the place of the first gate, unto the corner gate, and from the tower of Hananeel unto the king's winepresses. \nAnd men shall dwell in it, and there shall be no more utter destruction; but Jerusalem shall be safely inhabited. \nAnd this shall be the plague wherewith the LORD will smite all the people that have fought against Jerusalem; Their flesh shall consume away while they stand upon their feet, and their eyes shall consume away in their holes, and their tongue shall consume away in their mouth. \nAnd it shall come to pass in that day, that a great tumult from the LORD shall be among them; and they shall lay hold every one on the hand of his neighbour, and his hand shall rise up against the hand of his neighbour. \nAnd Judah also shall fight at Jerusalem; and the wealth of all the heathen round about shall be gathered together, gold, and silver, and apparel, in great abundance. \nAnd so shall be the plague of the horse, of the mule, of the camel, and of the ass, and of all the beasts that shall be in these tents, as this plague. \nAnd it shall come to pass, that every one that is left of all the nations which came against Jerusalem shall even go up from year to year to worship the King, the LORD of hosts, and to keep the feast of tabernacles. \nAnd it shall be, that whoso will not come up of all the families of the earth unto Jerusalem to worship the King, the LORD of hosts, even upon them shall be no rain. \nAnd if the family of Egypt go not up, and come not, that have no rain; there shall be the plague, wherewith the LORD will smite the heathen that come not up to keep the feast of tabernacles. \nThis shall be the punishment of Egypt, and the punishment of all nations that come not up to keep the feast of tabernacles. \nIn that day shall there be upon the bells of the horses, HOLINESS UNTO THE LORD; and the pots in the LORD's house shall be like the bowls before the altar. \nYea, every pot in Jerusalem and in Judah shall be holiness unto the LORD of hosts: and all they that sacrifice shall come and take of them, and seethe therein: and in that day there shall be no more the Canaanite in the house of the LORD of hosts. \nThe burden of the word of the LORD to Israel by Malachi. \nI have loved you, saith the LORD. Yet ye say, Wherein hast thou loved us? Was not Esau Jacob's brother? saith the LORD: yet I loved Jacob, \nAnd I hated Esau, and laid his mountains and his heritage waste for the dragons of the wilderness. \nWhereas Edom saith, We are impoverished, but we will return and build the desolate places; thus saith the LORD of hosts, They shall build, but I will throw down; and they shall call them, The border of wickedness, and, The people against whom the LORD hath indignation for ever. \nAnd your eyes shall see, and ye shall say, The LORD will be magnified from the border of Israel. \nA son honoureth his father, and a servant his master: if then I be a father, where is mine honour? and if I be a master, where is my fear? saith the LORD of hosts unto you, O priests, that despise my name. And ye say, Wherein have we despised thy name? \nYe offer polluted bread upon mine altar; and ye say, Wherein have we polluted thee? In that ye say, The table of the LORD is contemptible. \nAnd if ye offer the blind for sacrifice, is it not evil? and if ye offer the lame and sick, is it not evil? offer it now unto thy governor; will he be pleased with thee, or accept thy person? saith the LORD of hosts. \nAnd now, I pray you, beseech God that he will be gracious unto us: this hath been by your means: will he regard your persons? saith the LORD of hosts. \nWho is there even among you that would shut the doors for nought? neither do ye kindle fire on mine altar for nought. I have no pleasure in you, saith the LORD of hosts, neither will I accept an offering at your hand. \nFor from the rising of the sun even unto the going down of the same my name shall be great among the Gentiles; and in every place incense shall be offered unto my name, and a pure offering: for my name shall be great among the heathen, saith the LORD of hosts. \nBut ye have profaned it, in that ye say, The table of the LORD is polluted; and the fruit thereof, even his meat, is contemptible. \nYe said also, Behold, what a weariness is it! and ye have snuffed at it, saith the LORD of hosts; and ye brought that which was torn, and the lame, and the sick; thus ye brought an offering: should I accept this of your hand? saith the LORD. \nBut cursed be the deceiver, which hath in his flock a male, and voweth, and sacrificeth unto the LORD a corrupt thing: for I am a great King, saith the LORD of hosts, and my name is dreadful among the heathen. \nAnd now, O ye priests, this commandment is for you. \nIf ye will not hear, and if ye will not lay it to heart, to give glory unto my name, saith the LORD of hosts, I will even send a curse upon you, and I will curse your blessings: yea, I have cursed them already, because ye do not lay it to heart. \nBehold, I will corrupt your seed, and spread dung upon your faces, even the dung of your solemn feasts; and one shall take you away with it. \nAnd ye shall know that I have sent this commandment unto you, that my covenant might be with Levi, saith the LORD of hosts. \nMy covenant was with him of life and peace; and I gave them to him for the fear wherewith he feared me, and was afraid before my name. \nThe law of truth was in his mouth, and iniquity was not found in his lips: he walked with me in peace and equity, and did turn many away from iniquity. \nFor the priest's lips should keep knowledge, and they should seek the law at his mouth: for he is the messenger of the LORD of hosts. \nBut ye are departed out of the way; ye have caused many to stumble at the law; ye have corrupted the covenant of Levi, saith the LORD of hosts. \nTherefore have I also made you contemptible and base before all the people, according as ye have not kept my ways, but have been partial in the law. \nHave we not all one father? hath not one God created us? why do we deal treacherously every man against his brother, by profaning the covenant of our fathers? \nJudah hath dealt treacherously, and an abomination is committed in Israel and in Jerusalem; for Judah hath profaned the holiness of the LORD which he loved, and hath married the daughter of a strange god. \nThe LORD will cut off the man that doeth this, the master and the scholar, out of the tabernacles of Jacob, and him that offereth an offering unto the LORD of hosts. \nAnd this have ye done again, covering the altar of the LORD with tears, with weeping, and with crying out, insomuch that he regardeth not the offering any more, or receiveth it with good will at your hand. \nYet ye say, Wherefore? Because the LORD hath been witness between thee and the wife of thy youth, against whom thou hast dealt treacherously: yet is she thy companion, and the wife of thy covenant. \nAnd did not he make one? Yet had he the residue of the spirit. And wherefore one? That he might seek a godly seed. Therefore take heed to your spirit, and let none deal treacherously against the wife of his youth. \nFor the LORD, the God of Israel, saith that he hateth putting away: for one covereth violence with his garment, saith the LORD of hosts: therefore take heed to your spirit, that ye deal not treacherously. \nYe have wearied the LORD with your words. Yet ye say, Wherein have we wearied him? When ye say, Every one that doeth evil is good in the sight of the LORD, and he delighteth in them; or, Where is the God of judgment? \nBehold, I will send my messenger, and he shall prepare the way before me: and the LORD, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the LORD of hosts. \nBut who may abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner's fire, and like fullers' soap: \nAnd he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and purge them as gold and silver, that they may offer unto the LORD an offering in righteousness. \nThen shall the offering of Judah and Jerusalem be pleasant unto the LORD, as in the days of old, and as in former years. \nAnd I will come near to you to judgment; and I will be a swift witness against the sorcerers, and against the adulterers, and against false swearers, and against those that oppress the hireling in his wages, the widow, and the fatherless, and that turn aside the stranger from his right, and fear not me, saith the LORD of hosts. \nFor I am the LORD, I change not; therefore ye sons of Jacob are not consumed. \nEven from the days of your fathers ye are gone away from mine ordinances, and have not kept them. Return unto me, and I will return unto you, saith the LORD of hosts. But ye said, Wherein shall we return? \nWill a man rob God? Yet ye have robbed me. But ye say, Wherein have we robbed thee? In tithes and offerings. \nYe are cursed with a curse: for ye have robbed me, even this whole nation. \nBring ye all the tithes into the storehouse, that there may be meat in mine house, and prove me now herewith, saith the LORD of hosts, if I will not open you the windows of heaven, and pour you out a blessing, that there shall not be room enough to receive it. \nAnd I will rebuke the devourer for your sakes, and he shall not destroy the fruits of your ground; neither shall your vine cast her fruit before the time in the field, saith the LORD of hosts. \nAnd all nations shall call you blessed: for ye shall be a delightsome land, saith the LORD of hosts. \nYour words have been stout against me, saith the LORD. Yet ye say, What have we spoken so much against thee? \nYe have said, It is vain to serve God: and what profit is it that we have kept his ordinance, and that we have walked mournfully before the LORD of hosts? \nAnd now we call the proud happy; yea, they that work wickedness are set up; yea, they that tempt God are even delivered. \nThen they that feared the LORD spake often one to another: and the LORD hearkened, and heard it, and a book of remembrance was written before him for them that feared the LORD, and that thought upon his name. \nAnd they shall be mine, saith the LORD of hosts, in that day when I make up my jewels; and I will spare them, as a man spareth his own son that serveth him. \nThen shall ye return, and discern between the righteous and the wicked, between him that serveth God and him that serveth him not. \nFor, behold, the day cometh, that shall burn as an oven; and all the proud, yea, and all that do wickedly, shall be stubble: and the day that cometh shall burn them up, saith the LORD of hosts, that it shall leave them neither root nor branch. \nBut unto you that fear my name shall the Sun of righteousness arise with healing in his wings; and ye shall go forth, and grow up as calves of the stall. \nAnd ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I shall do this, saith the LORD of hosts. \nRemember ye the law of Moses my servant, which I commanded unto him in Horeb for all Israel, with the statutes and judgments. \nBehold, I will send you Elijah the prophet before the coming of the great and dreadful day of the LORD: \nAnd he shall turn the heart of the fathers to the children, and the heart of the children to their fathers, lest I come and smite the earth with a curse. \nThe book of the generation of Jesus Christ, the son of David, the son of Abraham. \nAbraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judas and his brethren; \nAnd Judas begat Phares and Zara of Thamar; and Phares begat Esrom; and Esrom begat Aram; \nAnd Aram begat Aminadab; and Aminadab begat Naasson; and Naasson begat Salmon; \nAnd Salmon begat Booz of Rachab; and Booz begat Obed of Ruth; and Obed begat Jesse; \nAnd Jesse begat David the king; and David the king begat Solomon of her that had been the wife of Urias; \nAnd Solomon begat Roboam; and Roboam begat Abia; and Abia begat Asa; \nAnd Asa begat Josaphat; and Josaphat begat Joram; and Joram begat Ozias; \nAnd Ozias begat Joatham; and Joatham begat Achaz; and Achaz begat Ezekias; \nAnd Ezekias begat Manasses; and Manasses begat Amon; and Amon begat Josias; \nAnd Josias begat Jechonias and his brethren, about the time they were carried away to Babylon: \nAnd after they were brought to Babylon, Jechonias begat Salathiel; and Salathiel begat Zorobabel; \nAnd Zorobabel begat Abiud; and Abiud begat Eliakim; and Eliakim begat Azor; \nAnd Azor begat Sadoc; and Sadoc begat Achim; and Achim begat Eliud; \nAnd Eliud begat Eleazar; and Eleazar begat Matthan; and Matthan begat Jacob; \nAnd Jacob begat Joseph the husband of Mary, of whom was born Jesus, who is called Christ. \nSo all the generations from Abraham to David are fourteen generations; and from David until the carrying away into Babylon are fourteen generations; and from the carrying away into Babylon unto Christ are fourteen generations. \nNow the birth of Jesus Christ was on this wise: When as his mother Mary was espoused to Joseph, before they came together, she was found with child of the Holy Ghost. \nThen Joseph her husband, being a just man, and not willing to make her a publick example, was minded to put her away privily. \nBut while he thought on these things, behold, the angel of the LORD appeared unto him in a dream, saying, Joseph, thou son of David, fear not to take unto thee Mary thy wife: for that which is conceived in her is of the Holy Ghost. \nAnd she shall bring forth a son, and thou shalt call his name JESUS: for he shall save his people from their sins. \nNow all this was done, that it might be fulfilled which was spoken of the Lord by the prophet, saying, \nBehold, a virgin shall be with child, and shall bring forth a son, and they shall call his name Emmanuel, which being interpreted is, God with us. \nThen Joseph being raised from sleep did as the angel of the Lord had bidden him, and took unto him his wife: \nAnd knew her not till she had brought forth her firstborn son: and he called his name JESUS. \nNow when Jesus was born in Bethlehem of Judaea in the days of Herod the king, behold, there came wise men from the east to Jerusalem, \nSaying, Where is he that is born King of the Jews? for we have seen his star in the east, and are come to worship him. \nWhen Herod the king had heard these things, he was troubled, and all Jerusalem with him. \nAnd when he had gathered all the chief priests and scribes of the people together, he demanded of them where Christ should be born. \nAnd they said unto him, In Bethlehem of Judaea: for thus it is written by the prophet, \nAnd thou Bethlehem, in the land of Juda, art not the least among the princes of Juda: for out of thee shall come a Governor, that shall rule my people Israel. \nThen Herod, when he had privily called the wise men, enquired of them diligently what time the star appeared. \nAnd he sent them to Bethlehem, and said, Go and search diligently for the young child; and when ye have found him, bring me word again, that I may come and worship him also. \nWhen they had heard the king, they departed; and, lo, the star, which they saw in the east, went before them, till it came and stood over where the young child was. \nWhen they saw the star, they rejoiced with exceeding great joy. \nAnd when they were come into the house, they saw the young child with Mary his mother, and fell down, and worshipped him: and when they had opened their treasures, they presented unto him gifts; gold, and frankincense and myrrh. \nAnd being warned of God in a dream that they should not return to Herod, they departed into their own country another way. \nAnd when they were departed, behold, the angel of the Lord appeareth to Joseph in a dream, saying, Arise, and take the young child and his mother, and flee into Egypt, and be thou there until I bring thee word: for Herod will seek the young child to destroy him. \nWhen he arose, he took the young child and his mother by night, and departed into Egypt: \nAnd was there until the death of Herod: that it might be fulfilled which was spoken of the Lord by the prophet, saying, Out of Egypt have I called my son. \nThen Herod, when he saw that he was mocked of the wise men, was exceeding wroth, and sent forth, and slew all the children that were in Bethlehem, and in all the coasts thereof, from two years old and under, according to the time which he had diligently enquired of the wise men. \nThen was fulfilled that which was spoken by Jeremy the prophet, saying, \nIn Rama was there a voice heard, lamentation, and weeping, and great mourning, Rachel weeping for her children, and would not be comforted, because they are not. \nBut when Herod was dead, behold, an angel of the Lord appeareth in a dream to Joseph in Egypt, \nSaying, Arise, and take the young child and his mother, and go into the land of Israel: for they are dead which sought the young child's life. \nAnd he arose, and took the young child and his mother, and came into the land of Israel. \nBut when he heard that Archelaus did reign in Judaea in the room of his father Herod, he was afraid to go thither: notwithstanding, being warned of God in a dream, he turned aside into the parts of Galilee: \nAnd he came and dwelt in a city called Nazareth: that it might be fulfilled which was spoken by the prophets, He shall be called a Nazarene. \nIn those days came John the Baptist, preaching in the wilderness of Judaea, \nAnd saying, Repent ye: for the kingdom of heaven is at hand. \nFor this is he that was spoken of by the prophet Esaias, saying, The voice of one crying in the wilderness, Prepare ye the way of the Lord, make his paths straight. \nAnd the same John had his raiment of camel's hair, and a leathern girdle about his loins; and his meat was locusts and wild honey. \nThen went out to him Jerusalem, and all Judaea, and all the region round about Jordan, \nAnd were baptized of him in Jordan, confessing their sins. \nBut when he saw many of the Pharisees and Sadducees come to his baptism, he said unto them, O generation of vipers, who hath warned you to flee from the wrath to come? \nBring forth therefore fruits meet for repentance: \nAnd think not to say within yourselves, We have Abraham to our father: for I say unto you, that God is able of these stones to raise up children unto Abraham. \nAnd now also the axe is laid unto the root of the trees: therefore every tree which bringeth not forth good fruit is hewn down, and cast into the fire. \nI indeed baptize you with water unto repentance. but he that cometh after me is mightier than I, whose shoes I am not worthy to bear: he shall baptize you with the Holy Ghost, and with fire: \nWhose fan is in his hand, and he will throughly purge his floor, and gather his wheat into the garner; but he will burn up the chaff with unquenchable fire. \nThen cometh Jesus from Galilee to Jordan unto John, to be baptized of him. \nBut John forbad him, saying, I have need to be baptized of thee, and comest thou to me? \nAnd Jesus answering said unto him, Suffer it to be so now: for thus it becometh us to fulfil all righteousness. Then he suffered him. \nAnd Jesus, when he was baptized, went up straightway out of the water: and, lo, the heavens were opened unto him, and he saw the Spirit of God descending like a dove, and lighting upon him: \nAnd lo a voice from heaven, saying, This is my beloved Son, in whom I am well pleased. \nThen was Jesus led up of the spirit into the wilderness to be tempted of the devil. \nAnd when he had fasted forty days and forty nights, he was afterward an hungred. \nAnd when the tempter came to him, he said, If thou be the Son of God, command that these stones be made bread. \nBut he answered and said, It is written, Man shall not live by bread alone, but by every word that proceedeth out of the mouth of God. \nThen the devil taketh him up into the holy city, and setteth him on a pinnacle of the temple, \nAnd saith unto him, If thou be the Son of God, cast thyself down: for it is written, He shall give his angels charge concerning thee: and in their hands they shall bear thee up, lest at any time thou dash thy foot against a stone. \nJesus said unto him, It is written again, Thou shalt not tempt the Lord thy God. \nAgain, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them; \nAnd saith unto him, All these things will I give thee, if thou wilt fall down and worship me. \nThen saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. \nThen the devil leaveth him, and, behold, angels came and ministered unto him. \nNow when Jesus had heard that John was cast into prison, he departed into Galilee; \nAnd leaving Nazareth, he came and dwelt in Capernaum, which is upon the sea coast, in the borders of Zabulon and Nephthalim: \nThat it might be fulfilled which was spoken by Esaias the prophet, saying, \nThe land of Zabulon, and the land of Nephthalim, by the way of the sea, beyond Jordan, Galilee of the Gentiles; \nThe people which sat in darkness saw great light; and to them which sat in the region and shadow of death light is sprung up. \nFrom that time Jesus began to preach, and to say, Repent: for the kingdom of heaven is at hand. \nAnd Jesus, walking by the sea of Galilee, saw two brethren, Simon called Peter, and Andrew his brother, casting a net into the sea: for they were fishers. \nAnd he saith unto them, Follow me, and I will make you fishers of men. \nAnd they straightway left their nets, and followed him. \nAnd going on from thence, he saw other two brethren, James the son of Zebedee, and John his brother, in a ship with Zebedee their father, mending their nets; and he called them. \nAnd they immediately left the ship and their father, and followed him. \nAnd Jesus went about all Galilee, teaching in their synagogues, and preaching the gospel of the kingdom, and healing all manner of sickness and all manner of disease among the people. \nAnd his fame went throughout all Syria: and they brought unto him all sick people that were taken with divers diseases and torments, and those which were possessed with devils, and those which were lunatick, and those that had the palsy; and he healed them. \nAnd there followed him great multitudes of people from Galilee, and from Decapolis, and from Jerusalem, and from Judaea, and from beyond Jordan. \nAnd seeing the multitudes, he went up into a mountain: and when he was set, his disciples came unto him: \nAnd he opened his mouth, and taught them, saying, \nBlessed are the poor in spirit: for theirs is the kingdom of heaven. \nBlessed are they that mourn: for they shall be comforted. \nBlessed are the meek: for they shall inherit the earth. \nBlessed are they which do hunger and thirst after righteousness: for they shall be filled. \nBlessed are the merciful: for they shall obtain mercy. \nBlessed are the pure in heart: for they shall see God. \nBlessed are the peacemakers: for they shall be called the children of God. \nBlessed are they which are persecuted for righteousness' sake: for theirs is the kingdom of heaven. \nBlessed are ye, when men shall revile you, and persecute you, and shall say all manner of evil against you falsely, for my sake. \nRejoice, and be exceeding glad: for great is your reward in heaven: for so persecuted they the prophets which were before you. \nYe are the salt of the earth: but if the salt have lost his savour, wherewith shall it be salted? it is thenceforth good for nothing, but to be cast out, and to be trodden under foot of men. \nYe are the light of the world. A city that is set on an hill cannot be hid. \nNeither do men light a candle, and put it under a bushel, but on a candlestick; and it giveth light unto all that are in the house. \nLet your light so shine before men, that they may see your good works, and glorify your Father which is in heaven. \nThink not that I am come to destroy the law, or the prophets: I am not come to destroy, but to fulfil. \nFor verily I say unto you, Till heaven and earth pass, one jot or one tittle shall in no wise pass from the law, till all be fulfilled. \nWhosoever therefore shall break one of these least commandments, and shall teach men so, he shall be called the least in the kingdom of heaven: but whosoever shall do and teach them, the same shall be called great in the kingdom of heaven. \nFor I say unto you, That except your righteousness shall exceed the righteousness of the scribes and Pharisees, ye shall in no case enter into the kingdom of heaven. \nYe have heard that it was said of them of old time, Thou shalt not kill; and whosoever shall kill shall be in danger of the judgment: \nBut I say unto you, That whosoever is angry with his brother without a cause shall be in danger of the judgment: and whosoever shall say to his brother, Raca, shall be in danger of the council: but whosoever shall say, Thou fool, shall be in danger of hell fire. \nTherefore if thou bring thy gift to the altar, and there rememberest that thy brother hath ought against thee; \nLeave there thy gift before the altar, and go thy way; first be reconciled to thy brother, and then come and offer thy gift. \nAgree with thine adversary quickly, whiles thou art in the way with him; lest at any time the adversary deliver thee to the judge, and the judge deliver thee to the officer, and thou be cast into prison. \nVerily I say unto thee, Thou shalt by no means come out thence, till thou hast paid the uttermost farthing. \nYe have heard that it was said by them of old time, Thou shalt not commit adultery: \nBut I say unto you, That whosoever looketh on a woman to lust after her hath committed adultery with her already in his heart. \nAnd if thy right eye offend thee, pluck it out, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not that thy whole body should be cast into hell. \nAnd if thy right hand offend thee, cut it off, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not that thy whole body should be cast into hell. \nIt hath been said, Whosoever shall put away his wife, let him give her a writing of divorcement: \nBut I say unto you, That whosoever shall put away his wife, saving for the cause of fornication, causeth her to commit adultery: and whosoever shall marry her that is divorced committeth adultery. \nAgain, ye have heard that it hath been said by them of old time, Thou shalt not forswear thyself, but shalt perform unto the Lord thine oaths: \nBut I say unto you, Swear not at all; neither by heaven; for it is God's throne: \nNor by the earth; for it is his footstool: neither by Jerusalem; for it is the city of the great King. \nNeither shalt thou swear by thy head, because thou canst not make one hair white or black. \nBut let your communication be, Yea, yea; Nay, nay: for whatsoever is more than these cometh of evil. \nYe have heard that it hath been said, An eye for an eye, and a tooth for a tooth: \nBut I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also. \nAnd if any man will sue thee at the law, and take away thy coat, let him have thy cloak also. \nAnd whosoever shall compel thee to go a mile, go with him twain. \nGive to him that asketh thee, and from him that would borrow of thee turn not thou away. \nYe have heard that it hath been said, Thou shalt love thy neighbour, and hate thine enemy. \nBut I say unto you, Love your enemies, bless them that curse you, do good to them that hate you, and pray for them which despitefully use you, and persecute you; \nThat ye may be the children of your Father which is in heaven: for he maketh his sun to rise on the evil and on the good, and sendeth rain on the just and on the unjust. \nFor if ye love them which love you, what reward have ye? do not even the publicans the same? \nAnd if ye salute your brethren only, what do ye more than others? do not even the publicans so? \nBe ye therefore perfect, even as your Father which is in heaven is perfect. \nTake heed that ye do not your alms before men, to be seen of them: otherwise ye have no reward of your Father which is in heaven. \nTherefore when thou doest thine alms, do not sound a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have their reward. \nBut when thou doest alms, let not thy left hand know what thy right hand doeth: \nThat thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly. \nAnd when thou prayest, thou shalt not be as the hypocrites are: for they love to pray standing in the synagogues and in the corners of the streets, that they may be seen of men. Verily I say unto you, They have their reward. \nBut thou, when thou prayest, enter into thy closet, and when thou hast shut thy door, pray to thy Father which is in secret; and thy Father which seeth in secret shall reward thee openly. \nBut when ye pray, use not vain repetitions, as the heathen do: for they think that they shall be heard for their much speaking. \nBe not ye therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him. \nAfter this manner therefore pray ye: Our Father which art in heaven, Hallowed be thy name. \nThy kingdom come, Thy will be done in earth, as it is in heaven. \nGive us this day our daily bread. \nAnd forgive us our debts, as we forgive our debtors. \nAnd lead us not into temptation, but deliver us from evil: For thine is the kingdom, and the power, and the glory, for ever. Amen. \nFor if ye forgive men their trespasses, your heavenly Father will also forgive you: \nBut if ye forgive not men their trespasses, neither will your Father forgive your trespasses. \nMoreover when ye fast, be not, as the hypocrites, of a sad countenance: for they disfigure their faces, that they may appear unto men to fast. Verily I say unto you, They have their reward. \nBut thou, when thou fastest, anoint thine head, and wash thy face; \nThat thou appear not unto men to fast, but unto thy Father which is in secret: and thy Father, which seeth in secret, shall reward thee openly. \nLay not up for yourselves treasures upon earth, where moth and rust doth corrupt, and where thieves break through and steal: \nBut lay up for yourselves treasures in heaven, where neither moth nor rust doth corrupt, and where thieves do not break through nor steal: \nFor where your treasure is, there will your heart be also. \nThe light of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light. \nBut if thine eye be evil, thy whole body shall be full of darkness. If therefore the light that is in thee be darkness, how great is that darkness! \nNo man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. \nTherefore I say unto you, Take no thought for your life, what ye shall eat, or what ye shall drink; nor yet for your body, what ye shall put on. Is not the life more than meat, and the body than raiment? \nBehold the fowls of the air: for they sow not, neither do they reap, nor gather into barns; yet your heavenly Father feedeth them. Are ye not much better than they? \nWhich of you by taking thought can add one cubit unto his stature? \nAnd why take ye thought for raiment? Consider the lilies of the field, how they grow; they toil not, neither do they spin: \nAnd yet I say unto you, That even Solomon in all his glory was not arrayed like one of these. \nWherefore, if God so clothe the grass of the field, which to day is, and to morrow is cast into the oven, shall he not much more clothe you, O ye of little faith? \nTherefore take no thought, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed? \n(For after all these things do the Gentiles seek:) for your heavenly Father knoweth that ye have need of all these things. \nBut seek ye first the kingdom of God, and his righteousness; and all these things shall be added unto you. \nTake therefore no thought for the morrow: for the morrow shall take thought for the things of itself. Sufficient unto the day is the evil thereof. \nJudge not, that ye be not judged. \nFor with what judgment ye judge, ye shall be judged: and with what measure ye mete, it shall be measured to you again. \nAnd why beholdest thou the mote that is in thy brother's eye, but considerest not the beam that is in thine own eye? \nOr how wilt thou say to thy brother, Let me pull out the mote out of thine eye; and, behold, a beam is in thine own eye? \nThou hypocrite, first cast out the beam out of thine own eye; and then shalt thou see clearly to cast out the mote out of thy brother's eye. \nGive not that which is holy unto the dogs, neither cast ye your pearls before swine, lest they trample them under their feet, and turn again and rend you. \nAsk, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you: \nFor every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. \nOr what man is there of you, whom if his son ask bread, will he give him a stone? \nOr if he ask a fish, will he give him a serpent? \nIf ye then, being evil, know how to give good gifts unto your children, how much more shall your Father which is in heaven give good things to them that ask him? \nTherefore all things whatsoever ye would that men should do to you, do ye even so to them: for this is the law and the prophets. \nEnter ye in at the strait gate: for wide is the gate, and broad is the way, that leadeth to destruction, and many there be which go in thereat: \nBecause strait is the gate, and narrow is the way, which leadeth unto life, and few there be that find it. \nBeware of false prophets, which come to you in sheep's clothing, but inwardly they are ravening wolves. \nYe shall know them by their fruits. Do men gather grapes of thorns, or figs of thistles? \nEven so every good tree bringeth forth good fruit; but a corrupt tree bringeth forth evil fruit. \nA good tree cannot bring forth evil fruit, neither can a corrupt tree bring forth good fruit. \nEvery tree that bringeth not forth good fruit is hewn down, and cast into the fire. \nWherefore by their fruits ye shall know them. \nNot every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven. \nMany will say to me in that day, Lord, Lord, have we not prophesied in thy name? and in thy name have cast out devils? and in thy name done many wonderful works? \nAnd then will I profess unto them, I never knew you: depart from me, ye that work iniquity. \nTherefore whosoever heareth these sayings of mine, and doeth them, I will liken him unto a wise man, which built his house upon a rock: \nAnd the rain descended, and the floods came, and the winds blew, and beat upon that house; and it fell not: for it was founded upon a rock. \nAnd every one that heareth these sayings of mine, and doeth them not, shall be likened unto a foolish man, which built his house upon the sand: \nAnd the rain descended, and the floods came, and the winds blew, and beat upon that house; and it fell: and great was the fall of it. \nAnd it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine: \nFor he taught them as one having authority, and not as the scribes. \nWhen he was come down from the mountain, great multitudes followed him. \nAnd, behold, there came a leper and worshipped him, saying, Lord, if thou wilt, thou canst make me clean. \nAnd Jesus put forth his hand, and touched him, saying, I will; be thou clean. And immediately his leprosy was cleansed. \nAnd Jesus saith unto him, See thou tell no man; but go thy way, shew thyself to the priest, and offer the gift that Moses commanded, for a testimony unto them. \nAnd when Jesus was entered into Capernaum, there came unto him a centurion, beseeching him, \nAnd saying, Lord, my servant lieth at home sick of the palsy, grievously tormented. \nAnd Jesus saith unto him, I will come and heal him. \nThe centurion answered and said, Lord, I am not worthy that thou shouldest come under my roof: but speak the word only, and my servant shall be healed. \nFor I am a man under authority, having soldiers under me: and I say to this man, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it. \nWhen Jesus heard it, he marvelled, and said to them that followed, Verily I say unto you, I have not found so great faith, no, not in Israel. \nAnd I say unto you, That many shall come from the east and west, and shall sit down with Abraham, and Isaac, and Jacob, in the kingdom of heaven. \nBut the children of the kingdom shall be cast out into outer darkness: there shall be weeping and gnashing of teeth. \nAnd Jesus said unto the centurion, Go thy way; and as thou hast believed, so be it done unto thee. And his servant was healed in the selfsame hour. \nAnd when Jesus was come into Peter's house, he saw his wife's mother laid, and sick of a fever. \nAnd he touched her hand, and the fever left her: and she arose, and ministered unto them. \nWhen the even was come, they brought unto him many that were possessed with devils: and he cast out the spirits with his word, and healed all that were sick: \nThat it might be fulfilled which was spoken by Esaias the prophet, saying, Himself took our infirmities, and bare our sicknesses. \nNow when Jesus saw great multitudes about him, he gave commandment to depart unto the other side. \nAnd a certain scribe came, and said unto him, Master, I will follow thee whithersoever thou goest. \nAnd Jesus saith unto him, The foxes have holes, and the birds of the air have nests; but the Son of man hath not where to lay his head. \nAnd another of his disciples said unto him, Lord, suffer me first to go and bury my father. \nBut Jesus said unto him, Follow me; and let the dead bury their dead. \nAnd when he was entered into a ship, his disciples followed him. \nAnd, behold, there arose a great tempest in the sea, insomuch that the ship was covered with the waves: but he was asleep. \nAnd his disciples came to him, and awoke him, saying, Lord, save us: we perish. \nAnd he saith unto them, Why are ye fearful, O ye of little faith? Then he arose, and rebuked the winds and the sea; and there was a great calm. \nBut the men marvelled, saying, What manner of man is this, that even the winds and the sea obey him! \nAnd when he was come to the other side into the country of the Gergesenes, there met him two possessed with devils, coming out of the tombs, exceeding fierce, so that no man might pass by that way. \nAnd, behold, they cried out, saying, What have we to do with thee, Jesus, thou Son of God? art thou come hither to torment us before the time? \nAnd there was a good way off from them an herd of many swine feeding. \nSo the devils besought him, saying, If thou cast us out, suffer us to go away into the herd of swine. \nAnd he said unto them, Go. And when they were come out, they went into the herd of swine: and, behold, the whole herd of swine ran violently down a steep place into the sea, and perished in the waters. \nAnd they that kept them fled, and went their ways into the city, and told every thing, and what was befallen to the possessed of the devils. \nAnd, behold, the whole city came out to meet Jesus: and when they saw him, they besought him that he would depart out of their coasts. \nAnd he entered into a ship, and passed over, and came into his own city. \nAnd, behold, they brought to him a man sick of the palsy, lying on a bed: and Jesus seeing their faith said unto the sick of the palsy; Son, be of good cheer; thy sins be forgiven thee. \nAnd, behold, certain of the scribes said within themselves, This man blasphemeth. \nAnd Jesus knowing their thoughts said, Wherefore think ye evil in your hearts? \nFor whether is easier, to say, Thy sins be forgiven thee; or to say, Arise, and walk? \nBut that ye may know that the Son of man hath power on earth to forgive sins, (then saith he to the sick of the palsy,) Arise, take up thy bed, and go unto thine house. \nAnd he arose, and departed to his house. \nBut when the multitudes saw it, they marvelled, and glorified God, which had given such power unto men. \nAnd as Jesus passed forth from thence, he saw a man, named Matthew, sitting at the receipt of custom: and he saith unto him, Follow me. And he arose, and followed him. \nAnd it came to pass, as Jesus sat at meat in the house, behold, many publicans and sinners came and sat down with him and his disciples. \nAnd when the Pharisees saw it, they said unto his disciples, Why eateth your Master with publicans and sinners? \nBut when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick. \nBut go ye and learn what that meaneth, I will have mercy, and not sacrifice: for I am not come to call the righteous, but sinners to repentance. \nThen came to him the disciples of John, saying, Why do we and the Pharisees fast oft, but thy disciples fast not? \nAnd Jesus said unto them, Can the children of the bridechamber mourn, as long as the bridegroom is with them? but the days will come, when the bridegroom shall be taken from them, and then shall they fast. \nNo man putteth a piece of new cloth unto an old garment, for that which is put in to fill it up taketh from the garment, and the rent is made worse. \nNeither do men put new wine into old bottles: else the bottles break, and the wine runneth out, and the bottles perish: but they put new wine into new bottles, and both are preserved. \nWhile he spake these things unto them, behold, there came a certain ruler, and worshipped him, saying, My daughter is even now dead: but come and lay thy hand upon her, and she shall live. \nAnd Jesus arose, and followed him, and so did his disciples. \nAnd, behold, a woman, which was diseased with an issue of blood twelve years, came behind him, and touched the hem of his garment: \nFor she said within herself, If I may but touch his garment, I shall be whole. \nBut Jesus turned him about, and when he saw her, he said, Daughter, be of good comfort; thy faith hath made thee whole. And the woman was made whole from that hour. \nAnd when Jesus came into the ruler's house, and saw the minstrels and the people making a noise, \nHe said unto them, Give place: for the maid is not dead, but sleepeth. And they laughed him to scorn. \nBut when the people were put forth, he went in, and took her by the hand, and the maid arose. \nAnd the fame hereof went abroad into all that land. \nAnd when Jesus departed thence, two blind men followed him, crying, and saying, Thou son of David, have mercy on us. \nAnd when he was come into the house, the blind men came to him: and Jesus saith unto them, Believe ye that I am able to do this? They said unto him, Yea, Lord. \nThen touched he their eyes, saying, According to your faith be it unto you. \nAnd their eyes were opened; and Jesus straitly charged them, saying, See that no man know it. \nBut they, when they were departed, spread abroad his fame in all that country. \nAs they went out, behold, they brought to him a dumb man possessed with a devil. \nAnd when the devil was cast out, the dumb spake: and the multitudes marvelled, saying, It was never so seen in Israel. \nBut the Pharisees said, He casteth out devils through the prince of the devils. \nAnd Jesus went about all the cities and villages, teaching in their synagogues, and preaching the gospel of the kingdom, and healing every sickness and every disease among the people. \nBut when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd. \nThen saith he unto his disciples, The harvest truly is plenteous, but the labourers are few; \nPray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest. \nAnd when he had called unto him his twelve disciples, he gave them power against unclean spirits, to cast them out, and to heal all manner of sickness and all manner of disease. \nNow the names of the twelve apostles are these; The first, Simon, who is called Peter, and Andrew his brother; James the son of Zebedee, and John his brother; \nPhilip, and Bartholomew; Thomas, and Matthew the publican; James the son of Alphaeus, and Lebbaeus, whose surname was Thaddaeus; \nSimon the Canaanite, and Judas Iscariot, who also betrayed him. \nThese twelve Jesus sent forth, and commanded them, saying, Go not into the way of the Gentiles, and into any city of the Samaritans enter ye not: \nBut go rather to the lost sheep of the house of Israel. \nAnd as ye go, preach, saying, The kingdom of heaven is at hand. \nHeal the sick, cleanse the lepers, raise the dead, cast out devils: freely ye have received, freely give. \nProvide neither gold, nor silver, nor brass in your purses, \nNor scrip for your journey, neither two coats, neither shoes, nor yet staves: for the workman is worthy of his meat. \nAnd into whatsoever city or town ye shall enter, enquire who in it is worthy; and there abide till ye go thence. \nAnd when ye come into an house, salute it. \nAnd if the house be worthy, let your peace come upon it: but if it be not worthy, let your peace return to you. \nAnd whosoever shall not receive you, nor hear your words, when ye depart out of that house or city, shake off the dust of your feet. \nVerily I say unto you, It shall be more tolerable for the land of Sodom and Gomorrha in the day of judgment, than for that city. \nBehold, I send you forth as sheep in the midst of wolves: be ye therefore wise as serpents, and harmless as doves. \nBut beware of men: for they will deliver you up to the councils, and they will scourge you in their synagogues; \nAnd ye shall be brought before governors and kings for my sake, for a testimony against them and the Gentiles. \nBut when they deliver you up, take no thought how or what ye shall speak: for it shall be given you in that same hour what ye shall speak. \nFor it is not ye that speak, but the Spirit of your Father which speaketh in you. \nAnd the brother shall deliver up the brother to death, and the father the child: and the children shall rise up against their parents, and cause them to be put to death. \nAnd ye shall be hated of all men for my name's sake: but he that endureth to the end shall be saved. \nBut when they persecute you in this city, flee ye into another: for verily I say unto you, Ye shall not have gone over the cities of Israel, till the Son of man be come. \nThe disciple is not above his master, nor the servant above his lord. \nIt is enough for the disciple that he be as his master, and the servant as his lord. If they have called the master of the house Beelzebub, how much more shall they call them of his household? \nFear them not therefore: for there is nothing covered, that shall not be revealed; and hid, that shall not be known. \nWhat I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops. \nAnd fear not them which kill the body, but are not able to kill the soul: but rather fear him which is able to destroy both soul and body in hell. \nAre not two sparrows sold for a farthing? and one of them shall not fall on the ground without your Father. \nBut the very hairs of your head are all numbered. \nFear ye not therefore, ye are of more value than many sparrows. \nWhosoever therefore shall confess me before men, him will I confess also before my Father which is in heaven. \nBut whosoever shall deny me before men, him will I also deny before my Father which is in heaven. \nThink not that I am come to send peace on earth: I came not to send peace, but a sword. \nFor I am come to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law. \nAnd a man's foes shall be they of his own household. \nHe that loveth father or mother more than me is not worthy of me: and he that loveth son or daughter more than me is not worthy of me. \nAnd he that taketh not his cross, and followeth after me, is not worthy of me. \nHe that findeth his life shall lose it: and he that loseth his life for my sake shall find it. \nHe that receiveth you receiveth me, and he that receiveth me receiveth him that sent me. \nHe that receiveth a prophet in the name of a prophet shall receive a prophet's reward; and he that receiveth a righteous man in the name of a righteous man shall receive a righteous man's reward. \nAnd whosoever shall give to drink unto one of these little ones a cup of cold water only in the name of a disciple, verily I say unto you, he shall in no wise lose his reward. \nAnd it came to pass, when Jesus had made an end of commanding his twelve disciples, he departed thence to teach and to preach in their cities. \nNow when John had heard in the prison the works of Christ, he sent two of his disciples, \nAnd said unto him, Art thou he that should come, or do we look for another? \nJesus answered and said unto them, Go and shew John again those things which ye do hear and see: \nThe blind receive their sight, and the lame walk, the lepers are cleansed, and the deaf hear, the dead are raised up, and the poor have the gospel preached to them. \nAnd blessed is he, whosoever shall not be offended in me. \nAnd as they departed, Jesus began to say unto the multitudes concerning John, What went ye out into the wilderness to see? A reed shaken with the wind? \nBut what went ye out for to see? A man clothed in soft raiment? behold, they that wear soft clothing are in kings' houses. \nBut what went ye out for to see? A prophet? yea, I say unto you, and more than a prophet. \nFor this is he, of whom it is written, Behold, I send my messenger before thy face, which shall prepare thy way before thee. \nVerily I say unto you, Among them that are born of women there hath not risen a greater than John the Baptist: notwithstanding he that is least in the kingdom of heaven is greater than he. \nAnd from the days of John the Baptist until now the kingdom of heaven suffereth violence, and the violent take it by force. \nFor all the prophets and the law prophesied until John. \nAnd if ye will receive it, this is Elias, which was for to come. \nHe that hath ears to hear, let him hear. \nBut whereunto shall I liken this generation? It is like unto children sitting in the markets, and calling unto their fellows, \nAnd saying, We have piped unto you, and ye have not danced; we have mourned unto you, and ye have not lamented. \nFor John came neither eating nor drinking, and they say, He hath a devil. \nThe Son of man came eating and drinking, and they say, Behold a man gluttonous, and a winebibber, a friend of publicans and sinners. But wisdom is justified of her children. \nThen began he to upbraid the cities wherein most of his mighty works were done, because they repented not: \nWoe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works, which were done in you, had been done in Tyre and Sidon, they would have repented long ago in sackcloth and ashes. \nBut I say unto you, It shall be more tolerable for Tyre and Sidon at the day of judgment, than for you. \nAnd thou, Capernaum, which art exalted unto heaven, shalt be brought down to hell: for if the mighty works, which have been done in thee, had been done in Sodom, it would have remained until this day. \nBut I say unto you, That it shall be more tolerable for the land of Sodom in the day of judgment, than for thee. \nAt that time Jesus answered and said, I thank thee, O Father, Lord of heaven and earth, because thou hast hid these things from the wise and prudent, and hast revealed them unto babes. \nEven so, Father: for so it seemed good in thy sight. \nAll things are delivered unto me of my Father: and no man knoweth the Son, but the Father; neither knoweth any man the Father, save the Son, and he to whomsoever the Son will reveal him. \nCome unto me, all ye that labour and are heavy laden, and I will give you rest. \nTake my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls. \nFor my yoke is easy, and my burden is light. \nAt that time Jesus went on the sabbath day through the corn; and his disciples were an hungred, and began to pluck the ears of corn and to eat. \nBut when the Pharisees saw it, they said unto him, Behold, thy disciples do that which is not lawful to do upon the sabbath day. \nBut he said unto them, Have ye not read what David did, when he was an hungred, and they that were with him; \nHow he entered into the house of God, and did eat the shewbread, which was not lawful for him to eat, neither for them which were with him, but only for the priests? \nOr have ye not read in the law, how that on the sabbath days the priests in the temple profane the sabbath, and are blameless? \nBut I say unto you, That in this place is one greater than the temple. \nBut if ye had known what this meaneth, I will have mercy, and not sacrifice, ye would not have condemned the guiltless. \nFor the Son of man is Lord even of the sabbath day. \nAnd when he was departed thence, he went into their synagogue: \nAnd, behold, there was a man which had his hand withered. And they asked him, saying, Is it lawful to heal on the sabbath days? that they might accuse him. \nAnd he said unto them, What man shall there be among you, that shall have one sheep, and if it fall into a pit on the sabbath day, will he not lay hold on it, and lift it out? \nHow much then is a man better than a sheep? Wherefore it is lawful to do well on the sabbath days. \nThen saith he to the man, Stretch forth thine hand. And he stretched it forth; and it was restored whole, like as the other. \nThen the Pharisees went out, and held a council against him, how they might destroy him. \nBut when Jesus knew it, he withdrew himself from thence: and great multitudes followed him, and he healed them all; \nAnd charged them that they should not make him known: \nThat it might be fulfilled which was spoken by Esaias the prophet, saying, \nBehold my servant, whom I have chosen; my beloved, in whom my soul is well pleased: I will put my spirit upon him, and he shall shew judgment to the Gentiles. \nHe shall not strive, nor cry; neither shall any man hear his voice in the streets. \nA bruised reed shall he not break, and smoking flax shall he not quench, till he send forth judgment unto victory. \nAnd in his name shall the Gentiles trust. \nThen was brought unto him one possessed with a devil, blind, and dumb: and he healed him, insomuch that the blind and dumb both spake and saw. \nAnd all the people were amazed, and said, Is not this the son of David? \nBut when the Pharisees heard it, they said, This fellow doth not cast out devils, but by Beelzebub the prince of the devils. \nAnd Jesus knew their thoughts, and said unto them, Every kingdom divided against itself is brought to desolation; and every city or house divided against itself shall not stand: \nAnd if Satan cast out Satan, he is divided against himself; how shall then his kingdom stand? \nAnd if I by Beelzebub cast out devils, by whom do your children cast them out? therefore they shall be your judges. \nBut if I cast out devils by the Spirit of God, then the kingdom of God is come unto you. \nOr else how can one enter into a strong man's house, and spoil his goods, except he first bind the strong man? and then he will spoil his house. \nHe that is not with me is against me; and he that gathereth not with me scattereth abroad. \nWherefore I say unto you, All manner of sin and blasphemy shall be forgiven unto men: but the blasphemy against the Holy Ghost shall not be forgiven unto men. \nAnd whosoever speaketh a word against the Son of man, it shall be forgiven him: but whosoever speaketh against the Holy Ghost, it shall not be forgiven him, neither in this world, neither in the world to come. \nEither make the tree good, and his fruit good; or else make the tree corrupt, and his fruit corrupt: for the tree is known by his fruit. \nO generation of vipers, how can ye, being evil, speak good things? for out of the abundance of the heart the mouth speaketh. \nA good man out of the good treasure of the heart bringeth forth good things: and an evil man out of the evil treasure bringeth forth evil things. \nBut I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment. \nFor by thy words thou shalt be justified, and by thy words thou shalt be condemned. \nThen certain of the scribes and of the Pharisees answered, saying, Master, we would see a sign from thee. \nBut he answered and said unto them, An evil and adulterous generation seeketh after a sign; and there shall no sign be given to it, but the sign of the prophet Jonas: \nFor as Jonas was three days and three nights in the whale's belly; so shall the Son of man be three days and three nights in the heart of the earth. \nThe men of Nineveh shall rise in judgment with this generation, and shall condemn it: because they repented at the preaching of Jonas; and, behold, a greater than Jonas is here. \nThe queen of the south shall rise up in the judgment with this generation, and shall condemn it: for she came from the uttermost parts of the earth to hear the wisdom of Solomon; and, behold, a greater than Solomon is here. \nWhen the unclean spirit is gone out of a man, he walketh through dry places, seeking rest, and findeth none. \nThen he saith, I will return into my house from whence I came out; and when he is come, he findeth it empty, swept, and garnished. \nThen goeth he, and taketh with himself seven other spirits more wicked than himself, and they enter in and dwell there: and the last state of that man is worse than the first. Even so shall it be also unto this wicked generation. \nWhile he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him. \nThen one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee. \nBut he answered and said unto him that told him, Who is my mother? and who are my brethren? \nAnd he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren! \nFor whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother. \nThe same day went Jesus out of the house, and sat by the sea side. \nAnd great multitudes were gathered together unto him, so that he went into a ship, and sat; and the whole multitude stood on the shore. \nAnd he spake many things unto them in parables, saying, Behold, a sower went forth to sow; \nAnd when he sowed, some seeds fell by the way side, and the fowls came and devoured them up: \nSome fell upon stony places, where they had not much earth: and forthwith they sprung up, because they had no deepness of earth: \nAnd when the sun was up, they were scorched; and because they had no root, they withered away. \nAnd some fell among thorns; and the thorns sprung up, and choked them: \nBut other fell into good ground, and brought forth fruit, some an hundredfold, some sixtyfold, some thirtyfold. \nWho hath ears to hear, let him hear. \nAnd the disciples came, and said unto him, Why speakest thou unto them in parables? \nHe answered and said unto them, Because it is given unto you to know the mysteries of the kingdom of heaven, but to them it is not given. \nFor whosoever hath, to him shall be given, and he shall have more abundance: but whosoever hath not, from him shall be taken away even that he hath. \nTherefore speak I to them in parables: because they seeing see not; and hearing they hear not, neither do they understand. \nAnd in them is fulfilled the prophecy of Esaias, which saith, By hearing ye shall hear, and shall not understand; and seeing ye shall see, and shall not perceive: \nFor this people's heart is waxed gross, and their ears are dull of hearing, and their eyes they have closed; lest at any time they should see with their eyes and hear with their ears, and should understand with their heart, and should be converted, and I should heal them. \nBut blessed are your eyes, for they see: and your ears, for they hear. \nFor verily I say unto you, That many prophets and righteous men have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. \nHear ye therefore the parable of the sower. \nWhen any one heareth the word of the kingdom, and understandeth it not, then cometh the wicked one, and catcheth away that which was sown in his heart. This is he which received seed by the way side. \nBut he that received the seed into stony places, the same is he that heareth the word, and anon with joy receiveth it; \nYet hath he not root in himself, but dureth for a while: for when tribulation or persecution ariseth because of the word, by and by he is offended. \nHe also that received seed among the thorns is he that heareth the word; and the care of this world, and the deceitfulness of riches, choke the word, and he becometh unfruitful. \nBut he that received seed into the good ground is he that heareth the word, and understandeth it; which also beareth fruit, and bringeth forth, some an hundredfold, some sixty, some thirty. \nAnother parable put he forth unto them, saying, The kingdom of heaven is likened unto a man which sowed good seed in his field: \nBut while men slept, his enemy came and sowed tares among the wheat, and went his way. \nBut when the blade was sprung up, and brought forth fruit, then appeared the tares also. \nSo the servants of the householder came and said unto him, Sir, didst not thou sow good seed in thy field? from whence then hath it tares? \nHe said unto them, An enemy hath done this. The servants said unto him, Wilt thou then that we go and gather them up? \nBut he said, Nay; lest while ye gather up the tares, ye root up also the wheat with them. \nLet both grow together until the harvest: and in the time of harvest I will say to the reapers, Gather ye together first the tares, and bind them in bundles to burn them: but gather the wheat into my barn. \nAnother parable put he forth unto them, saying, The kingdom of heaven is like to a grain of mustard seed, which a man took, and sowed in his field: \nWhich indeed is the least of all seeds: but when it is grown, it is the greatest among herbs, and becometh a tree, so that the birds of the air come and lodge in the branches thereof. \nAnother parable spake he unto them; The kingdom of heaven is like unto leaven, which a woman took, and hid in three measures of meal, till the whole was leavened. \nAll these things spake Jesus unto the multitude in parables; and without a parable spake he not unto them: \nThat it might be fulfilled which was spoken by the prophet, saying, I will open my mouth in parables; I will utter things which have been kept secret from the foundation of the world. \nThen Jesus sent the multitude away, and went into the house: and his disciples came unto him, saying, Declare unto us the parable of the tares of the field. \nHe answered and said unto them, He that soweth the good seed is the Son of man; \nThe field is the world; the good seed are the children of the kingdom; but the tares are the children of the wicked one; \nThe enemy that sowed them is the devil; the harvest is the end of the world; and the reapers are the angels. \nAs therefore the tares are gathered and burned in the fire; so shall it be in the end of this world. \nThe Son of man shall send forth his angels, and they shall gather out of his kingdom all things that offend, and them which do iniquity; \nAnd shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth. \nThen shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear. \nAgain, the kingdom of heaven is like unto treasure hid in a field; the which when a man hath found, he hideth, and for joy thereof goeth and selleth all that he hath, and buyeth that field. \nAgain, the kingdom of heaven is like unto a merchant man, seeking goodly pearls: \nWho, when he had found one pearl of great price, went and sold all that he had, and bought it. \nAgain, the kingdom of heaven is like unto a net, that was cast into the sea, and gathered of every kind: \nWhich, when it was full, they drew to shore, and sat down, and gathered the good into vessels, but cast the bad away. \nSo shall it be at the end of the world: the angels shall come forth, and sever the wicked from among the just, \nAnd shall cast them into the furnace of fire: there shall be wailing and gnashing of teeth. \nJesus saith unto them, Have ye understood all these things? They say unto him, Yea, Lord. \nThen said he unto them, Therefore every scribe which is instructed unto the kingdom of heaven is like unto a man that is an householder, which bringeth forth out of his treasure things new and old. \nAnd it came to pass, that when Jesus had finished these parables, he departed thence. \nAnd when he was come into his own country, he taught them in their synagogue, insomuch that they were astonished, and said, Whence hath this man this wisdom, and these mighty works? \nIs not this the carpenter's son? is not his mother called Mary? and his brethren, James, and Joses, and Simon, and Judas? \nAnd his sisters, are they not all with us? Whence then hath this man all these things? \nAnd they were offended in him. But Jesus said unto them, A prophet is not without honour, save in his own country, and in his own house. \nAnd he did not many mighty works there because of their unbelief. \nAt that time Herod the tetrarch heard of the fame of Jesus, \nAnd said unto his servants, This is John the Baptist; he is risen from the dead; and therefore mighty works do shew forth themselves in him. \nFor Herod had laid hold on John, and bound him, and put him in prison for Herodias' sake, his brother Philip's wife. \nFor John said unto him, It is not lawful for thee to have her. \nAnd when he would have put him to death, he feared the multitude, because they counted him as a prophet. \nBut when Herod's birthday was kept, the daughter of Herodias danced before them, and pleased Herod. \nWhereupon he promised with an oath to give her whatsoever she would ask. \nAnd she, being before instructed of her mother, said, Give me here John Baptist's head in a charger. \nAnd the king was sorry: nevertheless for the oath's sake, and them which sat with him at meat, he commanded it to be given her. \nAnd he sent, and beheaded John in the prison. \nAnd his head was brought in a charger, and given to the damsel: and she brought it to her mother. \nAnd his disciples came, and took up the body, and buried it, and went and told Jesus. \nWhen Jesus heard of it, he departed thence by ship into a desert place apart: and when the people had heard thereof, they followed him on foot out of the cities. \nAnd Jesus went forth, and saw a great multitude, and was moved with compassion toward them, and he healed their sick. \nAnd when it was evening, his disciples came to him, saying, This is a desert place, and the time is now past; send the multitude away, that they may go into the villages, and buy themselves victuals. \nBut Jesus said unto them, They need not depart; give ye them to eat. \nAnd they say unto him, We have here but five loaves, and two fishes. \nHe said, Bring them hither to me. \nAnd he commanded the multitude to sit down on the grass, and took the five loaves, and the two fishes, and looking up to heaven, he blessed, and brake, and gave the loaves to his disciples, and the disciples to the multitude. \nAnd they did all eat, and were filled: and they took up of the fragments that remained twelve baskets full. \nAnd they that had eaten were about five thousand men, beside women and children. \nAnd straightway Jesus constrained his disciples to get into a ship, and to go before him unto the other side, while he sent the multitudes away. \nAnd when he had sent the multitudes away, he went up into a mountain apart to pray: and when the evening was come, he was there alone. \nBut the ship was now in the midst of the sea, tossed with waves: for the wind was contrary. \nAnd in the fourth watch of the night Jesus went unto them, walking on the sea. \nAnd when the disciples saw him walking on the sea, they were troubled, saying, It is a spirit; and they cried out for fear. \nBut straightway Jesus spake unto them, saying, Be of good cheer; it is I; be not afraid. \nAnd Peter answered him and said, Lord, if it be thou, bid me come unto thee on the water. \nAnd he said, Come. And when Peter was come down out of the ship, he walked on the water, to go to Jesus. \nBut when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me. \nAnd immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt? \nAnd when they were come into the ship, the wind ceased. \nThen they that were in the ship came and worshipped him, saying, Of a truth thou art the Son of God. \nAnd when they were gone over, they came into the land of Gennesaret. \nAnd when the men of that place had knowledge of him, they sent out into all that country round about, and brought unto him all that were diseased; \nAnd besought him that they might only touch the hem of his garment: and as many as touched were made perfectly whole. \nThen came to Jesus scribes and Pharisees, which were of Jerusalem, saying, \nWhy do thy disciples transgress the tradition of the elders? for they wash not their hands when they eat bread. \nBut he answered and said unto them, Why do ye also transgress the commandment of God by your tradition? \nFor God commanded, saying, Honour thy father and mother: and, He that curseth father or mother, let him die the death. \nBut ye say, Whosoever shall say to his father or his mother, It is a gift, by whatsoever thou mightest be profited by me; \nAnd honour not his father or his mother, he shall be free. Thus have ye made the commandment of God of none effect by your tradition. \nYe hypocrites, well did Esaias prophesy of you, saying, \nThis people draweth nigh unto me with their mouth, and honoureth me with their lips; but their heart is far from me. \nBut in vain they do worship me, teaching for doctrines the commandments of men. \nAnd he called the multitude, and said unto them, Hear, and understand: \nNot that which goeth into the mouth defileth a man; but that which cometh out of the mouth, this defileth a man. \nThen came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying? \nBut he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up. \nLet them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch. \nThen answered Peter and said unto him, Declare unto us this parable. \nAnd Jesus said, Are ye also yet without understanding? \nDo not ye yet understand, that whatsoever entereth in at the mouth goeth into the belly, and is cast out into the draught? \nBut those things which proceed out of the mouth come forth from the heart; and they defile the man. \nFor out of the heart proceed evil thoughts, murders, adulteries, fornications, thefts, false witness, blasphemies: \nThese are the things which defile a man: but to eat with unwashen hands defileth not a man. \nThen Jesus went thence, and departed into the coasts of Tyre and Sidon. \nAnd, behold, a woman of Canaan came out of the same coasts, and cried unto him, saying, Have mercy on me, O Lord, thou son of David; my daughter is grievously vexed with a devil. \nBut he answered her not a word. And his disciples came and besought him, saying, Send her away; for she crieth after us. \nBut he answered and said, I am not sent but unto the lost sheep of the house of Israel. \nThen came she and worshipped him, saying, Lord, help me. \nBut he answered and said, It is not meet to take the children's bread, and to cast it to dogs. \nAnd she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters' table. \nThen Jesus answered and said unto her, O woman, great is thy faith: be it unto thee even as thou wilt. And her daughter was made whole from that very hour. \nAnd Jesus departed from thence, and came nigh unto the sea of Galilee; and went up into a mountain, and sat down there. \nAnd great multitudes came unto him, having with them those that were lame, blind, dumb, maimed, and many others, and cast them down at Jesus' feet; and he healed them: \nInsomuch that the multitude wondered, when they saw the dumb to speak, the maimed to be whole, the lame to walk, and the blind to see: and they glorified the God of Israel. \nThen Jesus called his disciples unto him, and said, I have compassion on the multitude, because they continue with me now three days, and have nothing to eat: and I will not send them away fasting, lest they faint in the way. \nAnd his disciples say unto him, Whence should we have so much bread in the wilderness, as to fill so great a multitude? \nAnd Jesus saith unto them, How many loaves have ye? And they said, Seven, and a few little fishes. \nAnd he commanded the multitude to sit down on the ground. \nAnd he took the seven loaves and the fishes, and gave thanks, and brake them, and gave to his disciples, and the disciples to the multitude. \nAnd they did all eat, and were filled: and they took up of the broken meat that was left seven baskets full. \nAnd they that did eat were four thousand men, beside women and children. \nAnd he sent away the multitude, and took ship, and came into the coasts of Magdala. \nThe Pharisees also with the Sadducees came, and tempting desired him that he would shew them a sign from heaven. \nHe answered and said unto them, When it is evening, ye say, It will be fair weather: for the sky is red. \nAnd in the morning, It will be foul weather to day: for the sky is red and lowering. O ye hypocrites, ye can discern the face of the sky; but can ye not discern the signs of the times? \nA wicked and adulterous generation seeketh after a sign; and there shall no sign be given unto it, but the sign of the prophet Jonas. And he left them, and departed. \nAnd when his disciples were come to the other side, they had forgotten to take bread. \nThen Jesus said unto them, Take heed and beware of the leaven of the Pharisees and of the Sadducees. \nAnd they reasoned among themselves, saying, It is because we have taken no bread. \nWhich when Jesus perceived, he said unto them, O ye of little faith, why reason ye among yourselves, because ye have brought no bread? \nDo ye not yet understand, neither remember the five loaves of the five thousand, and how many baskets ye took up? \nNeither the seven loaves of the four thousand, and how many baskets ye took up? \nHow is it that ye do not understand that I spake it not to you concerning bread, that ye should beware of the leaven of the Pharisees and of the Sadducees? \nThen understood they how that he bade them not beware of the leaven of bread, but of the doctrine of the Pharisees and of the Sadducees. \nWhen Jesus came into the coasts of Caesarea Philippi, he asked his disciples, saying, Whom do men say that I the Son of man am? \nAnd they said, Some say that thou art John the Baptist: some, Elias; and others, Jeremias, or one of the prophets. \nHe saith unto them, But whom say ye that I am? \nAnd Simon Peter answered and said, Thou art the Christ, the Son of the living God. \nAnd Jesus answered and said unto him, Blessed art thou, Simon Barjona: for flesh and blood hath not revealed it unto thee, but my Father which is in heaven. \nAnd I say also unto thee, That thou art Peter, and upon this rock I will build my church; and the gates of hell shall not prevail against it. \nAnd I will give unto thee the keys of the kingdom of heaven: and whatsoever thou shalt bind on earth shall be bound in heaven: and whatsoever thou shalt loose on earth shall be loosed in heaven. \nThen charged he his disciples that they should tell no man that he was Jesus the Christ. \nFrom that time forth began Jesus to shew unto his disciples, how that he must go unto Jerusalem, and suffer many things of the elders and chief priests and scribes, and be killed, and be raised again the third day. \nThen Peter took him, and began to rebuke him, saying, Be it far from thee, Lord: this shall not be unto thee. \nBut he turned, and said unto Peter, Get thee behind me, Satan: thou art an offence unto me: for thou savourest not the things that be of God, but those that be of men. \nThen said Jesus unto his disciples, If any man will come after me, let him deny himself, and take up his cross, and follow me. \nFor whosoever will save his life shall lose it: and whosoever will lose his life for my sake shall find it. \nFor what is a man profited, if he shall gain the whole world, and lose his own soul? or what shall a man give in exchange for his soul? \nFor the Son of man shall come in the glory of his Father with his angels; and then he shall reward every man according to his works. \nVerily I say unto you, There be some standing here, which shall not taste of death, till they see the Son of man coming in his kingdom. \nAnd after six days Jesus taketh Peter, James, and John his brother, and bringeth them up into an high mountain apart, \nAnd was transfigured before them: and his face did shine as the sun, and his raiment was white as the light. \nAnd, behold, there appeared unto them Moses and Elias talking with him. \nThen answered Peter, and said unto Jesus, Lord, it is good for us to be here: if thou wilt, let us make here three tabernacles; one for thee, and one for Moses, and one for Elias. \nWhile he yet spake, behold, a bright cloud overshadowed them: and behold a voice out of the cloud, which said, This is my beloved Son, in whom I am well pleased; hear ye him. \nAnd when the disciples heard it, they fell on their face, and were sore afraid. \nAnd Jesus came and touched them, and said, Arise, and be not afraid. \nAnd when they had lifted up their eyes, they saw no man, save Jesus only. \nAnd as they came down from the mountain, Jesus charged them, saying, Tell the vision to no man, until the Son of man be risen again from the dead. \nAnd his disciples asked him, saying, Why then say the scribes that Elias must first come? \nAnd Jesus answered and said unto them, Elias truly shall first come, and restore all things. \nBut I say unto you, That Elias is come already, and they knew him not, but have done unto him whatsoever they listed. Likewise shall also the Son of man suffer of them. \nThen the disciples understood that he spake unto them of John the Baptist. \nAnd when they were come to the multitude, there came to him a certain man, kneeling down to him, and saying, \nLord, have mercy on my son: for he is lunatick, and sore vexed: for ofttimes he falleth into the fire, and oft into the water. \nAnd I brought him to thy disciples, and they could not cure him. \nThen Jesus answered and said, O faithless and perverse generation, how long shall I be with you? how long shall I suffer you? bring him hither to me. \nAnd Jesus rebuked the devil; and he departed out of him: and the child was cured from that very hour. \nThen came the disciples to Jesus apart, and said, Why could not we cast him out? \nAnd Jesus said unto them, Because of your unbelief: for verily I say unto you, If ye have faith as a grain of mustard seed, ye shall say unto this mountain, Remove hence to yonder place; and it shall remove; and nothing shall be impossible unto you. \nHowbeit this kind goeth not out but by prayer and fasting. \nAnd while they abode in Galilee, Jesus said unto them, The Son of man shall be betrayed into the hands of men: \nAnd they shall kill him, and the third day he shall be raised again. And they were exceeding sorry. \nAnd when they were come to Capernaum, they that received tribute money came to Peter, and said, Doth not your master pay tribute? \nHe saith, Yes. And when he was come into the house, Jesus prevented him, saying, What thinkest thou, Simon? of whom do the kings of the earth take custom or tribute? of their own children, or of strangers? \nPeter saith unto him, Of strangers. Jesus saith unto him, Then are the children free. \nNotwithstanding, lest we should offend them, go thou to the sea, and cast an hook, and take up the fish that first cometh up; and when thou hast opened his mouth, thou shalt find a piece of money: that take, and give unto them for me and thee. \nAt the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven? \nAnd Jesus called a little child unto him, and set him in the midst of them, \nAnd said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven. \nWhosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven. \nAnd whoso shall receive one such little child in my name receiveth me. \nBut whoso shall offend one of these little ones which believe in me, it were better for him that a millstone were hanged about his neck, and that he were drowned in the depth of the sea. \nWoe unto the world because of offences! for it must needs be that offences come; but woe to that man by whom the offence cometh! \nWherefore if thy hand or thy foot offend thee, cut them off, and cast them from thee: it is better for thee to enter into life halt or maimed, rather than having two hands or two feet to be cast into everlasting fire. \nAnd if thine eye offend thee, pluck it out, and cast it from thee: it is better for thee to enter into life with one eye, rather than having two eyes to be cast into hell fire. \nTake heed that ye despise not one of these little ones; for I say unto you, That in heaven their angels do always behold the face of my Father which is in heaven. \nFor the Son of man is come to save that which was lost. \nHow think ye? if a man have an hundred sheep, and one of them be gone astray, doth he not leave the ninety and nine, and goeth into the mountains, and seeketh that which is gone astray? \nAnd if so be that he find it, verily I say unto you, he rejoiceth more of that sheep, than of the ninety and nine which went not astray. \nEven so it is not the will of your Father which is in heaven, that one of these little ones should perish. \nMoreover if thy brother shall trespass against thee, go and tell him his fault between thee and him alone: if he shall hear thee, thou hast gained thy brother. \nBut if he will not hear thee, then take with thee one or two more, that in the mouth of two or three witnesses every word may be established. \nAnd if he shall neglect to hear them, tell it unto the church: but if he neglect to hear the church, let him be unto thee as an heathen man and a publican. \nVerily I say unto you, Whatsoever ye shall bind on earth shall be bound in heaven: and whatsoever ye shall loose on earth shall be loosed in heaven. \nAgain I say unto you, That if two of you shall agree on earth as touching any thing that they shall ask, it shall be done for them of my Father which is in heaven. \nFor where two or three are gathered together in my name, there am I in the midst of them. \nThen came Peter to him, and said, Lord, how oft shall my brother sin against me, and I forgive him? till seven times? \nJesus saith unto him, I say not unto thee, Until seven times: but, Until seventy times seven. \nTherefore is the kingdom of heaven likened unto a certain king, which would take account of his servants. \nAnd when he had begun to reckon, one was brought unto him, which owed him ten thousand talents. \nBut forasmuch as he had not to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made. \nThe servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all. \nThen the lord of that servant was moved with compassion, and loosed him, and forgave him the debt. \nBut the same servant went out, and found one of his fellowservants, which owed him an hundred pence: and he laid hands on him, and took him by the throat, saying, Pay me that thou owest. \nAnd his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all. \nAnd he would not: but went and cast him into prison, till he should pay the debt. \nSo when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done. \nThen his lord, after that he had called him, said unto him, O thou wicked servant, I forgave thee all that debt, because thou desiredst me: \nShouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee? \nAnd his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him. \nSo likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses. \nAnd it came to pass, that when Jesus had finished these sayings, he departed from Galilee, and came into the coasts of Judaea beyond Jordan; \nAnd great multitudes followed him; and he healed them there. \nThe Pharisees also came unto him, tempting him, and saying unto him, Is it lawful for a man to put away his wife for every cause? \nAnd he answered and said unto them, Have ye not read, that he which made them at the beginning made them male and female, \nAnd said, For this cause shall a man leave father and mother, and shall cleave to his wife: and they twain shall be one flesh? \nWherefore they are no more twain, but one flesh. What therefore God hath joined together, let not man put asunder. \nThey say unto him, Why did Moses then command to give a writing of divorcement, and to put her away? \nHe saith unto them, Moses because of the hardness of your hearts suffered you to put away your wives: but from the beginning it was not so. \nAnd I say unto you, Whosoever shall put away his wife, except it be for fornication, and shall marry another, committeth adultery: and whoso marrieth her which is put away doth commit adultery. \nHis disciples say unto him, If the case of the man be so with his wife, it is not good to marry. \nBut he said unto them, All men cannot receive this saying, save they to whom it is given. \nFor there are some eunuchs, which were so born from their mother's womb: and there are some eunuchs, which were made eunuchs of men: and there be eunuchs, which have made themselves eunuchs for the kingdom of heaven's sake. He that is able to receive it, let him receive it. \nThen were there brought unto him little children, that he should put his hands on them, and pray: and the disciples rebuked them. \nBut Jesus said, Suffer little children, and forbid them not, to come unto me: for of such is the kingdom of heaven. \nAnd he laid his hands on them, and departed thence. \nAnd, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life? \nAnd he said unto him, Why callest thou me good? there is none good but one, that is, God: but if thou wilt enter into life, keep the commandments. \nHe saith unto him, Which? Jesus said, Thou shalt do no murder, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness, \nHonour thy father and thy mother: and, Thou shalt love thy neighbour as thyself. \nThe young man saith unto him, All these things have I kept from my youth up: what lack I yet? \nJesus said unto him, If thou wilt be perfect, go and sell that thou hast, and give to the poor, and thou shalt have treasure in heaven: and come and follow me. \nBut when the young man heard that saying, he went away sorrowful: for he had great possessions. \nThen said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven. \nAnd again I say unto you, It is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God. \nWhen his disciples heard it, they were exceedingly amazed, saying, Who then can be saved? \nBut Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible. \nThen answered Peter and said unto him, Behold, we have forsaken all, and followed thee; what shall we have therefore? \nAnd Jesus said unto them, Verily I say unto you, That ye which have followed me, in the regeneration when the Son of man shall sit in the throne of his glory, ye also shall sit upon twelve thrones, judging the twelve tribes of Israel. \nAnd every one that hath forsaken houses, or brethren, or sisters, or father, or mother, or wife, or children, or lands, for my name's sake, shall receive an hundredfold, and shall inherit everlasting life. \nBut many that are first shall be last; and the last shall be first. \nFor the kingdom of heaven is like unto a man that is an householder, which went out early in the morning to hire labourers into his vineyard. \nAnd when he had agreed with the labourers for a penny a day, he sent them into his vineyard. \nAnd he went out about the third hour, and saw others standing idle in the marketplace, \nAnd said unto them; Go ye also into the vineyard, and whatsoever is right I will give you. And they went their way. \nAgain he went out about the sixth and ninth hour, and did likewise. \nAnd about the eleventh hour he went out, and found others standing idle, and saith unto them, Why stand ye here all the day idle? \nThey say unto him, Because no man hath hired us. He saith unto them, Go ye also into the vineyard; and whatsoever is right, that shall ye receive. \nSo when even was come, the lord of the vineyard saith unto his steward, Call the labourers, and give them their hire, beginning from the last unto the first. \nAnd when they came that were hired about the eleventh hour, they received every man a penny. \nBut when the first came, they supposed that they should have received more; and they likewise received every man a penny. \nAnd when they had received it, they murmured against the goodman of the house, \nSaying, These last have wrought but one hour, and thou hast made them equal unto us, which have borne the burden and heat of the day. \nBut he answered one of them, and said, Friend, I do thee no wrong: didst not thou agree with me for a penny? \nTake that thine is, and go thy way: I will give unto this last, even as unto thee. \nIs it not lawful for me to do what I will with mine own? Is thine eye evil, because I am good? \nSo the last shall be first, and the first last: for many be called, but few chosen. \nAnd Jesus going up to Jerusalem took the twelve disciples apart in the way, and said unto them, \nBehold, we go up to Jerusalem; and the Son of man shall be betrayed unto the chief priests and unto the scribes, and they shall condemn him to death, \nAnd shall deliver him to the Gentiles to mock, and to scourge, and to crucify him: and the third day he shall rise again. \nThen came to him the mother of Zebedees children with her sons, worshipping him, and desiring a certain thing of him. \nAnd he said unto her, What wilt thou? She saith unto him, Grant that these my two sons may sit, the one on thy right hand, and the other on the left, in thy kingdom. \nBut Jesus answered and said, Ye know not what ye ask. Are ye able to drink of the cup that I shall drink of, and to be baptized with the baptism that I am baptized with? They say unto him, We are able. \nAnd he saith unto them, Ye shall drink indeed of my cup, and be baptized with the baptism that I am baptized with: but to sit on my right hand, and on my left, is not mine to give, but it shall be given to them for whom it is prepared of my Father. \nAnd when the ten heard it, they were moved with indignation against the two brethren. \nBut Jesus called them unto him, and said, Ye know that the princes of the Gentiles exercise dominion over them, and they that are great exercise authority upon them. \nBut it shall not be so among you: but whosoever will be great among you, let him be your minister; \nAnd whosoever will be chief among you, let him be your servant: \nEven as the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many. \nAnd as they departed from Jericho, a great multitude followed him. \nAnd, behold, two blind men sitting by the way side, when they heard that Jesus passed by, cried out, saying, Have mercy on us, O Lord, thou son of David. \nAnd the multitude rebuked them, because they should hold their peace: but they cried the more, saying, Have mercy on us, O Lord, thou son of David. \nAnd Jesus stood still, and called them, and said, What will ye that I shall do unto you? \nThey say unto him, Lord, that our eyes may be opened. \nSo Jesus had compassion on them, and touched their eyes: and immediately their eyes received sight, and they followed him. \nAnd when they drew nigh unto Jerusalem, and were come to Bethphage, unto the mount of Olives, then sent Jesus two disciples, \nSaying unto them, Go into the village over against you, and straightway ye shall find an ass tied, and a colt with her: loose them, and bring them unto me. \nAnd if any man say ought unto you, ye shall say, The Lord hath need of them; and straightway he will send them. \nAll this was done, that it might be fulfilled which was spoken by the prophet, saying, \nTell ye the daughter of Sion, Behold, thy King cometh unto thee, meek, and sitting upon an ass, and a colt the foal of an ass. \nAnd the disciples went, and did as Jesus commanded them, \nAnd brought the ass, and the colt, and put on them their clothes, and they set him thereon. \nAnd a very great multitude spread their garments in the way; others cut down branches from the trees, and strawed them in the way. \nAnd the multitudes that went before, and that followed, cried, saying, Hosanna to the son of David: Blessed is he that cometh in the name of the Lord; Hosanna in the highest. \nAnd when he was come into Jerusalem, all the city was moved, saying, Who is this? \nAnd the multitude said, This is Jesus the prophet of Nazareth of Galilee. \nAnd Jesus went into the temple of God, and cast out all them that sold and bought in the temple, and overthrew the tables of the moneychangers, and the seats of them that sold doves, \nAnd said unto them, It is written, My house shall be called the house of prayer; but ye have made it a den of thieves. \nAnd the blind and the lame came to him in the temple; and he healed them. \nAnd when the chief priests and scribes saw the wonderful things that he did, and the children crying in the temple, and saying, Hosanna to the son of David; they were sore displeased, \nAnd said unto him, Hearest thou what these say? And Jesus saith unto them, Yea; have ye never read, Out of the mouth of babes and sucklings thou hast perfected praise? \nAnd he left them, and went out of the city into Bethany; and he lodged there. \nNow in the morning as he returned into the city, he hungered. \nAnd when he saw a fig tree in the way, he came to it, and found nothing thereon, but leaves only, and said unto it, Let no fruit grow on thee henceforward for ever. And presently the fig tree withered away. \nAnd when the disciples saw it, they marvelled, saying, How soon is the fig tree withered away! \nJesus answered and said unto them, Verily I say unto you, If ye have faith, and doubt not, ye shall not only do this which is done to the fig tree, but also if ye shall say unto this mountain, Be thou removed, and be thou cast into the sea; it shall be done. \nAnd all things, whatsoever ye shall ask in prayer, believing, ye shall receive. \nAnd when he was come into the temple, the chief priests and the elders of the people came unto him as he was teaching, and said, By what authority doest thou these things? and who gave thee this authority? \nAnd Jesus answered and said unto them, I also will ask you one thing, which if ye tell me, I in like wise will tell you by what authority I do these things. \nThe baptism of John, whence was it? from heaven, or of men? And they reasoned with themselves, saying, If we shall say, From heaven; he will say unto us, Why did ye not then believe him? \nBut if we shall say, Of men; we fear the people; for all hold John as a prophet. \nAnd they answered Jesus, and said, We cannot tell. And he said unto them, Neither tell I you by what authority I do these things. \nBut what think ye? A certain man had two sons; and he came to the first, and said, Son, go work to day in my vineyard. \nHe answered and said, I will not: but afterward he repented, and went. \nAnd he came to the second, and said likewise. And he answered and said, I go, sir: and went not. \nWhether of them twain did the will of his father? They say unto him, The first. Jesus saith unto them, Verily I say unto you, That the publicans and the harlots go into the kingdom of God before you. \nFor John came unto you in the way of righteousness, and ye believed him not: but the publicans and the harlots believed him: and ye, when ye had seen it, repented not afterward, that ye might believe him. \nHear another parable: There was a certain householder, which planted a vineyard, and hedged it round about, and digged a winepress in it, and built a tower, and let it out to husbandmen, and went into a far country: \nAnd when the time of the fruit drew near, he sent his servants to the husbandmen, that they might receive the fruits of it. \nAnd the husbandmen took his servants, and beat one, and killed another, and stoned another. \nAgain, he sent other servants more than the first: and they did unto them likewise. \nBut last of all he sent unto them his son, saying, They will reverence my son. \nBut when the husbandmen saw the son, they said among themselves, This is the heir; come, let us kill him, and let us seize on his inheritance. \nAnd they caught him, and cast him out of the vineyard, and slew him. \nWhen the lord therefore of the vineyard cometh, what will he do unto those husbandmen? \nThey say unto him, He will miserably destroy those wicked men, and will let out his vineyard unto other husbandmen, which shall render him the fruits in their seasons. \nJesus saith unto them, Did ye never read in the scriptures, The stone which the builders rejected, the same is become the head of the corner: this is the Lord's doing, and it is marvellous in our eyes? \nTherefore say I unto you, The kingdom of God shall be taken from you, and given to a nation bringing forth the fruits thereof. \nAnd whosoever shall fall on this stone shall be broken: but on whomsoever it shall fall, it will grind him to powder. \nAnd when the chief priests and Pharisees had heard his parables, they perceived that he spake of them. \nBut when they sought to lay hands on him, they feared the multitude, because they took him for a prophet. \nAnd Jesus answered and spake unto them again by parables, and said, \nThe kingdom of heaven is like unto a certain king, which made a marriage for his son, \nAnd sent forth his servants to call them that were bidden to the wedding: and they would not come. \nAgain, he sent forth other servants, saying, Tell them which are bidden, Behold, I have prepared my dinner: my oxen and my fatlings are killed, and all things are ready: come unto the marriage. \nBut they made light of it, and went their ways, one to his farm, another to his merchandise: \nAnd the remnant took his servants, and entreated them spitefully, and slew them. \nBut when the king heard thereof, he was wroth: and he sent forth his armies, and destroyed those murderers, and burned up their city. \nThen saith he to his servants, The wedding is ready, but they which were bidden were not worthy. \nGo ye therefore into the highways, and as many as ye shall find, bid to the marriage. \nSo those servants went out into the highways, and gathered together all as many as they found, both bad and good: and the wedding was furnished with guests. \nAnd when the king came in to see the guests, he saw there a man which had not on a wedding garment: \nAnd he saith unto him, Friend, how camest thou in hither not having a wedding garment? And he was speechless. \nThen said the king to the servants, Bind him hand and foot, and take him away, and cast him into outer darkness, there shall be weeping and gnashing of teeth. \nFor many are called, but few are chosen. \nThen went the Pharisees, and took counsel how they might entangle him in his talk. \nAnd they sent out unto him their disciples with the Herodians, saying, Master, we know that thou art true, and teachest the way of God in truth, neither carest thou for any man: for thou regardest not the person of men. \nTell us therefore, What thinkest thou? Is it lawful to give tribute unto Caesar, or not? \nBut Jesus perceived their wickedness, and said, Why tempt ye me, ye hypocrites? \nShew me the tribute money. And they brought unto him a penny. \nAnd he saith unto them, Whose is this image and superscription? \nThey say unto him, Caesar's. Then saith he unto them, Render therefore unto Caesar the things which are Caesar's; and unto God the things that are God's. \nWhen they had heard these words, they marvelled, and left him, and went their way. \nThe same day came to him the Sadducees, which say that there is no resurrection, and asked him, \nSaying, Master, Moses said, If a man die, having no children, his brother shall marry his wife, and raise up seed unto his brother. \nNow there were with us seven brethren: and the first, when he had married a wife, deceased, and, having no issue, left his wife unto his brother: \nLikewise the second also, and the third, unto the seventh. \nAnd last of all the woman died also. \nTherefore in the resurrection whose wife shall she be of the seven? for they all had her. \nJesus answered and said unto them, Ye do err, not knowing the scriptures, nor the power of God. \nFor in the resurrection they neither marry, nor are given in marriage, but are as the angels of God in heaven. \nBut as touching the resurrection of the dead, have ye not read that which was spoken unto you by God, saying, \nI am the God of Abraham, and the God of Isaac, and the God of Jacob? God is not the God of the dead, but of the living. \nAnd when the multitude heard this, they were astonished at his doctrine. \nBut when the Pharisees had heard that he had put the Sadducees to silence, they were gathered together. \nThen one of them, which was a lawyer, asked him a question, tempting him, and saying, \nMaster, which is the great commandment in the law? \nJesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind. \nThis is the first and great commandment. \nAnd the second is like unto it, Thou shalt love thy neighbour as thyself. \nOn these two commandments hang all the law and the prophets. \nWhile the Pharisees were gathered together, Jesus asked them, \nSaying, What think ye of Christ? whose son is he? They say unto him, The son of David. \nHe saith unto them, How then doth David in spirit call him Lord, saying, \nThe LORD said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool? \nIf David then call him Lord, how is he his son? \nAnd no man was able to answer him a word, neither durst any man from that day forth ask him any more questions. \nThen spake Jesus to the multitude, and to his disciples, \nSaying The scribes and the Pharisees sit in Moses' seat: \nAll therefore whatsoever they bid you observe, that observe and do; but do not ye after their works: for they say, and do not. \nFor they bind heavy burdens and grievous to be borne, and lay them on men's shoulders; but they themselves will not move them with one of their fingers. \nBut all their works they do for to be seen of men: they make broad their phylacteries, and enlarge the borders of their garments, \nAnd love the uppermost rooms at feasts, and the chief seats in the synagogues, \nAnd greetings in the markets, and to be called of men, Rabbi, Rabbi. \nBut be not ye called Rabbi: for one is your Master, even Christ; and all ye are brethren. \nAnd call no man your father upon the earth: for one is your Father, which is in heaven. \nNeither be ye called masters: for one is your Master, even Christ. \nBut he that is greatest among you shall be your servant. \nAnd whosoever shall exalt himself shall be abased; and he that shall humble himself shall be exalted. \nBut woe unto you, scribes and Pharisees, hypocrites! for ye shut up the kingdom of heaven against men: for ye neither go in yourselves, neither suffer ye them that are entering to go in. \nWoe unto you, scribes and Pharisees, hypocrites! for ye devour widows' houses, and for a pretence make long prayer: therefore ye shall receive the greater damnation. \nWoe unto you, scribes and Pharisees, hypocrites! for ye compass sea and land to make one proselyte, and when he is made, ye make him twofold more the child of hell than yourselves. \nWoe unto you, ye blind guides, which say, Whosoever shall swear by the temple, it is nothing; but whosoever shall swear by the gold of the temple, he is a debtor! \nYe fools and blind: for whether is greater, the gold, or the temple that sanctifieth the gold? \nAnd, Whosoever shall swear by the altar, it is nothing; but whosoever sweareth by the gift that is upon it, he is guilty. \nYe fools and blind: for whether is greater, the gift, or the altar that sanctifieth the gift? \nWhoso therefore shall swear by the altar, sweareth by it, and by all things thereon. \nAnd whoso shall swear by the temple, sweareth by it, and by him that dwelleth therein. \nAnd he that shall swear by heaven, sweareth by the throne of God, and by him that sitteth thereon. \nWoe unto you, scribes and Pharisees, hypocrites! for ye pay tithe of mint and anise and cummin, and have omitted the weightier matters of the law, judgment, mercy, and faith: these ought ye to have done, and not to leave the other undone. \nYe blind guides, which strain at a gnat, and swallow a camel. \nWoe unto you, scribes and Pharisees, hypocrites! for ye make clean the outside of the cup and of the platter, but within they are full of extortion and excess. \nThou blind Pharisee, cleanse first that which is within the cup and platter, that the outside of them may be clean also. \nWoe unto you, scribes and Pharisees, hypocrites! for ye are like unto whited sepulchres, which indeed appear beautiful outward, but are within full of dead men's bones, and of all uncleanness. \nEven so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity. \nWoe unto you, scribes and Pharisees, hypocrites! because ye build the tombs of the prophets, and garnish the sepulchres of the righteous, \nAnd say, If we had been in the days of our fathers, we would not have been partakers with them in the blood of the prophets. \nWherefore ye be witnesses unto yourselves, that ye are the children of them which killed the prophets. \nFill ye up then the measure of your fathers. \nYe serpents, ye generation of vipers, how can ye escape the damnation of hell? \nWherefore, behold, I send unto you prophets, and wise men, and scribes: and some of them ye shall kill and crucify; and some of them shall ye scourge in your synagogues, and persecute them from city to city: \nThat upon you may come all the righteous blood shed upon the earth, from the blood of righteous Abel unto the blood of Zacharias son of Barachias, whom ye slew between the temple and the altar. \nVerily I say unto you, All these things shall come upon this generation. \nO Jerusalem, Jerusalem, thou that killest the prophets, and stonest them which are sent unto thee, how often would I have gathered thy children together, even as a hen gathereth her chickens under her wings, and ye would not! \nBehold, your house is left unto you desolate. \nFor I say unto you, Ye shall not see me henceforth, till ye shall say, Blessed is he that cometh in the name of the Lord. \nAnd Jesus went out, and departed from the temple: and his disciples came to him for to shew him the buildings of the temple. \nAnd Jesus said unto them, See ye not all these things? verily I say unto you, There shall not be left here one stone upon another, that shall not be thrown down. \nAnd as he sat upon the mount of Olives, the disciples came unto him privately, saying, Tell us, when shall these things be? and what shall be the sign of thy coming, and of the end of the world? \nAnd Jesus answered and said unto them, Take heed that no man deceive you. \nFor many shall come in my name, saying, I am Christ; and shall deceive many. \nAnd ye shall hear of wars and rumours of wars: see that ye be not troubled: for all these things must come to pass, but the end is not yet. \nFor nation shall rise against nation, and kingdom against kingdom: and there shall be famines, and pestilences, and earthquakes, in divers places. \nAll these are the beginning of sorrows. \nThen shall they deliver you up to be afflicted, and shall kill you: and ye shall be hated of all nations for my name's sake. \nAnd then shall many be offended, and shall betray one another, and shall hate one another. \nAnd many false prophets shall rise, and shall deceive many. \nAnd because iniquity shall abound, the love of many shall wax cold. \nBut he that shall endure unto the end, the same shall be saved. \nAnd this gospel of the kingdom shall be preached in all the world for a witness unto all nations; and then shall the end come. \nWhen ye therefore shall see the abomination of desolation, spoken of by Daniel the prophet, stand in the holy place, (whoso readeth, let him understand:) \nThen let them which be in Judaea flee into the mountains: \nLet him which is on the housetop not come down to take any thing out of his house: \nNeither let him which is in the field return back to take his clothes. \nAnd woe unto them that are with child, and to them that give suck in those days! \nBut pray ye that your flight be not in the winter, neither on the sabbath day: \nFor then shall be great tribulation, such as was not since the beginning of the world to this time, no, nor ever shall be. \nAnd except those days should be shortened, there should no flesh be saved: but for the elect's sake those days shall be shortened. \nThen if any man shall say unto you, Lo, here is Christ, or there; believe it not. \nFor there shall arise false Christs, and false prophets, and shall shew great signs and wonders; insomuch that, if it were possible, they shall deceive the very elect. \nBehold, I have told you before. \nWherefore if they shall say unto you, Behold, he is in the desert; go not forth: behold, he is in the secret chambers; believe it not. \nFor as the lightning cometh out of the east, and shineth even unto the west; so shall also the coming of the Son of man be. \nFor wheresoever the carcase is, there will the eagles be gathered together. \nImmediately after the tribulation of those days shall the sun be darkened, and the moon shall not give her light, and the stars shall fall from heaven, and the powers of the heavens shall be shaken: \nAnd then shall appear the sign of the Son of man in heaven: and then shall all the tribes of the earth mourn, and they shall see the Son of man coming in the clouds of heaven with power and great glory. \nAnd he shall send his angels with a great sound of a trumpet, and they shall gather together his elect from the four winds, from one end of heaven to the other. \nNow learn a parable of the fig tree; When his branch is yet tender, and putteth forth leaves, ye know that summer is nigh: \nSo likewise ye, when ye shall see all these things, know that it is near, even at the doors. \nVerily I say unto you, This generation shall not pass, till all these things be fulfilled. \nHeaven and earth shall pass away, but my words shall not pass away. \nBut of that day and hour knoweth no man, no, not the angels of heaven, but my Father only. \nBut as the days of Noe were, so shall also the coming of the Son of man be. \nFor as in the days that were before the flood they were eating and drinking, marrying and giving in marriage, until the day that Noe entered into the ark, \nAnd knew not until the flood came, and took them all away; so shall also the coming of the Son of man be. \nThen shall two be in the field; the one shall be taken, and the other left. \nTwo women shall be grinding at the mill; the one shall be taken, and the other left. \nWatch therefore: for ye know not what hour your Lord doth come. \nBut know this, that if the goodman of the house had known in what watch the thief would come, he would have watched, and would not have suffered his house to be broken up. \nTherefore be ye also ready: for in such an hour as ye think not the Son of man cometh. \nWho then is a faithful and wise servant, whom his lord hath made ruler over his household, to give them meat in due season? \nBlessed is that servant, whom his lord when he cometh shall find so doing. \nVerily I say unto you, That he shall make him ruler over all his goods. \nBut and if that evil servant shall say in his heart, My lord delayeth his coming; \nAnd shall begin to smite his fellowservants, and to eat and drink with the drunken; \nThe lord of that servant shall come in a day when he looketh not for him, and in an hour that he is not aware of, \nAnd shall cut him asunder, and appoint him his portion with the hypocrites: there shall be weeping and gnashing of teeth. \nThen shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. \nAnd five of them were wise, and five were foolish. \nThey that were foolish took their lamps, and took no oil with them: \nBut the wise took oil in their vessels with their lamps. \nWhile the bridegroom tarried, they all slumbered and slept. \nAnd at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him. \nThen all those virgins arose, and trimmed their lamps. \nAnd the foolish said unto the wise, Give us of your oil; for our lamps are gone out. \nBut the wise answered, saying, Not so; lest there be not enough for us and you: but go ye rather to them that sell, and buy for yourselves. \nAnd while they went to buy, the bridegroom came; and they that were ready went in with him to the marriage: and the door was shut. \nAfterward came also the other virgins, saying, Lord, Lord, open to us. \nBut he answered and said, Verily I say unto you, I know you not. \nWatch therefore, for ye know neither the day nor the hour wherein the Son of man cometh. \nFor the kingdom of heaven is as a man travelling into a far country, who called his own servants, and delivered unto them his goods. \nAnd unto one he gave five talents, to another two, and to another one; to every man according to his several ability; and straightway took his journey. \nThen he that had received the five talents went and traded with the same, and made them other five talents. \nAnd likewise he that had received two, he also gained other two. \nBut he that had received one went and digged in the earth, and hid his lord's money. \nAfter a long time the lord of those servants cometh, and reckoneth with them. \nAnd so he that had received five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: behold, I have gained beside them five talents more. \nHis lord said unto him, Well done, thou good and faithful servant: thou hast been faithful over a few things, I will make thee ruler over many things: enter thou into the joy of thy lord. \nHe also that had received two talents came and said, Lord, thou deliveredst unto me two talents: behold, I have gained two other talents beside them. \nHis lord said unto him, Well done, good and faithful servant; thou hast been faithful over a few things, I will make thee ruler over many things: enter thou into the joy of thy lord. \nThen he which had received the one talent came and said, Lord, I knew thee that thou art an hard man, reaping where thou hast not sown, and gathering where thou hast not strawed: \nAnd I was afraid, and went and hid thy talent in the earth: lo, there thou hast that is thine. \nHis lord answered and said unto him, Thou wicked and slothful servant, thou knewest that I reap where I sowed not, and gather where I have not strawed: \nThou oughtest therefore to have put my money to the exchangers, and then at my coming I should have received mine own with usury. \nTake therefore the talent from him, and give it unto him which hath ten talents. \nFor unto every one that hath shall be given, and he shall have abundance: but from him that hath not shall be taken away even that which he hath. \nAnd cast ye the unprofitable servant into outer darkness: there shall be weeping and gnashing of teeth. \nWhen the Son of man shall come in his glory, and all the holy angels with him, then shall he sit upon the throne of his glory: \nAnd before him shall be gathered all nations: and he shall separate them one from another, as a shepherd divideth his sheep from the goats: \nAnd he shall set the sheep on his right hand, but the goats on the left. \nThen shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world: \nFor I was an hungred, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in: \nNaked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me. \nThen shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink? \nWhen saw we thee a stranger, and took thee in? or naked, and clothed thee? \nOr when saw we thee sick, or in prison, and came unto thee? \nAnd the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me. \nThen shall he say also unto them on the left hand, Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels: \nFor I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink: \nI was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not. \nThen shall they also answer him, saying, Lord, when saw we thee an hungred, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee? \nThen shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not to one of the least of these, ye did it not to me. \nAnd these shall go away into everlasting punishment: but the righteous into life eternal. \nAnd it came to pass, when Jesus had finished all these sayings, he said unto his disciples, \nYe know that after two days is the feast of the passover, and the Son of man is betrayed to be crucified. \nThen assembled together the chief priests, and the scribes, and the elders of the people, unto the palace of the high priest, who was called Caiaphas, \nAnd consulted that they might take Jesus by subtilty, and kill him. \nBut they said, Not on the feast day, lest there be an uproar among the people. \nNow when Jesus was in Bethany, in the house of Simon the leper, \nThere came unto him a woman having an alabaster box of very precious ointment, and poured it on his head, as he sat at meat. \nBut when his disciples saw it, they had indignation, saying, To what purpose is this waste? \nFor this ointment might have been sold for much, and given to the poor. \nWhen Jesus understood it, he said unto them, Why trouble ye the woman? for she hath wrought a good work upon me. \nFor ye have the poor always with you; but me ye have not always. \nFor in that she hath poured this ointment on my body, she did it for my burial. \nVerily I say unto you, Wheresoever this gospel shall be preached in the whole world, there shall also this, that this woman hath done, be told for a memorial of her. \nThen one of the twelve, called Judas Iscariot, went unto the chief priests, \nAnd said unto them, What will ye give me, and I will deliver him unto you? And they covenanted with him for thirty pieces of silver. \nAnd from that time he sought opportunity to betray him. \nNow the first day of the feast of unleavened bread the disciples came to Jesus, saying unto him, Where wilt thou that we prepare for thee to eat the passover? \nAnd he said, Go into the city to such a man, and say unto him, The Master saith, My time is at hand; I will keep the passover at thy house with my disciples. \nAnd the disciples did as Jesus had appointed them; and they made ready the passover. \nNow when the even was come, he sat down with the twelve. \nAnd as they did eat, he said, Verily I say unto you, that one of you shall betray me. \nAnd they were exceeding sorrowful, and began every one of them to say unto him, Lord, is it I? \nAnd he answered and said, He that dippeth his hand with me in the dish, the same shall betray me. \nThe Son of man goeth as it is written of him: but woe unto that man by whom the Son of man is betrayed! it had been good for that man if he had not been born. \nThen Judas, which betrayed him, answered and said, Master, is it I? He said unto him, Thou hast said. \nAnd as they were eating, Jesus took bread, and blessed it, and brake it, and gave it to the disciples, and said, Take, eat; this is my body. \nAnd he took the cup, and gave thanks, and gave it to them, saying, Drink ye all of it; \nFor this is my blood of the new testament, which is shed for many for the remission of sins. \nBut I say unto you, I will not drink henceforth of this fruit of the vine, until that day when I drink it new with you in my Father's kingdom. \nAnd when they had sung an hymn, they went out into the mount of Olives. \nThen saith Jesus unto them, All ye shall be offended because of me this night: for it is written, I will smite the shepherd, and the sheep of the flock shall be scattered abroad. \nBut after I am risen again, I will go before you into Galilee. \nPeter answered and said unto him, Though all men shall be offended because of thee, yet will I never be offended. \nJesus said unto him, Verily I say unto thee, That this night, before the cock crow, thou shalt deny me thrice. \nPeter said unto him, Though I should die with thee, yet will I not deny thee. Likewise also said all the disciples. \nThen cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder. \nAnd he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy. \nThen saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me. \nAnd he went a little farther, and fell on his face, and prayed, saying, O my Father, if it be possible, let this cup pass from me: nevertheless not as I will, but as thou wilt. \nAnd he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour? \nWatch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak. \nHe went away again the second time, and prayed, saying, O my Father, if this cup may not pass away from me, except I drink it, thy will be done. \nAnd he came and found them asleep again: for their eyes were heavy. \nAnd he left them, and went away again, and prayed the third time, saying the same words. \nThen cometh he to his disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners. \nRise, let us be going: behold, he is at hand that doth betray me. \nAnd while he yet spake, lo, Judas, one of the twelve, came, and with him a great multitude with swords and staves, from the chief priests and elders of the people. \nNow he that betrayed him gave them a sign, saying, Whomsoever I shall kiss, that same is he: hold him fast. \nAnd forthwith he came to Jesus, and said, Hail, master; and kissed him. \nAnd Jesus said unto him, Friend, wherefore art thou come? Then came they, and laid hands on Jesus and took him. \nAnd, behold, one of them which were with Jesus stretched out his hand, and drew his sword, and struck a servant of the high priest's, and smote off his ear. \nThen said Jesus unto him, Put up again thy sword into his place: for all they that take the sword shall perish with the sword. \nThinkest thou that I cannot now pray to my Father, and he shall presently give me more than twelve legions of angels? \nBut how then shall the scriptures be fulfilled, that thus it must be? \nIn that same hour said Jesus to the multitudes, Are ye come out as against a thief with swords and staves for to take me? I sat daily with you teaching in the temple, and ye laid no hold on me. \nBut all this was done, that the scriptures of the prophets might be fulfilled. Then all the disciples forsook him, and fled. \nAnd they that had laid hold on Jesus led him away to Caiaphas the high priest, where the scribes and the elders were assembled. \nBut Peter followed him afar off unto the high priest's palace, and went in, and sat with the servants, to see the end. \nNow the chief priests, and elders, and all the council, sought false witness against Jesus, to put him to death; \nBut found none: yea, though many false witnesses came, yet found they none. At the last came two false witnesses, \nAnd said, This fellow said, I am able to destroy the temple of God, and to build it in three days. \nAnd the high priest arose, and said unto him, Answerest thou nothing? what is it which these witness against thee? \nBut Jesus held his peace, And the high priest answered and said unto him, I adjure thee by the living God, that thou tell us whether thou be the Christ, the Son of God. \nJesus saith unto him, Thou hast said: nevertheless I say unto you, Hereafter shall ye see the Son of man sitting on the right hand of power, and coming in the clouds of heaven. \nThen the high priest rent his clothes, saying, He hath spoken blasphemy; what further need have we of witnesses? behold, now ye have heard his blasphemy. \nWhat think ye? They answered and said, He is guilty of death. \nThen did they spit in his face, and buffeted him; and others smote him with the palms of their hands, \nSaying, Prophesy unto us, thou Christ, Who is he that smote thee? \nNow Peter sat without in the palace: and a damsel came unto him, saying, Thou also wast with Jesus of Galilee. \nBut he denied before them all, saying, I know not what thou sayest. \nAnd when he was gone out into the porch, another maid saw him, and said unto them that were there, This fellow was also with Jesus of Nazareth. \nAnd again he denied with an oath, I do not know the man. \nAnd after a while came unto him they that stood by, and said to Peter, Surely thou also art one of them; for thy speech bewrayeth thee. \nThen began he to curse and to swear, saying, I know not the man. And immediately the cock crew. \nAnd Peter remembered the word of Jesus, which said unto him, Before the cock crow, thou shalt deny me thrice. And he went out, and wept bitterly. \nWhen the morning was come, all the chief priests and elders of the people took counsel against Jesus to put him to death: \nAnd when they had bound him, they led him away, and delivered him to Pontius Pilate the governor. \nThen Judas, which had betrayed him, when he saw that he was condemned, repented himself, and brought again the thirty pieces of silver to the chief priests and elders, \nSaying, I have sinned in that I have betrayed the innocent blood. And they said, What is that to us? see thou to that. \nAnd he cast down the pieces of silver in the temple, and departed, and went and hanged himself. \nAnd the chief priests took the silver pieces, and said, It is not lawful for to put them into the treasury, because it is the price of blood. \nAnd they took counsel, and bought with them the potter's field, to bury strangers in. \nWherefore that field was called, The field of blood, unto this day. \nThen was fulfilled that which was spoken by Jeremy the prophet, saying, And they took the thirty pieces of silver, the price of him that was valued, whom they of the children of Israel did value; \nAnd gave them for the potter's field, as the Lord appointed me. \nAnd Jesus stood before the governor: and the governor asked him, saying, Art thou the King of the Jews? And Jesus said unto him, Thou sayest. \nAnd when he was accused of the chief priests and elders, he answered nothing. \nThen said Pilate unto him, Hearest thou not how many things they witness against thee? \nAnd he answered him to never a word; insomuch that the governor marvelled greatly. \nNow at that feast the governor was wont to release unto the people a prisoner, whom they would. \nAnd they had then a notable prisoner, called Barabbas. \nTherefore when they were gathered together, Pilate said unto them, Whom will ye that I release unto you? Barabbas, or Jesus which is called Christ? \nFor he knew that for envy they had delivered him. \nWhen he was set down on the judgment seat, his wife sent unto him, saying, Have thou nothing to do with that just man: for I have suffered many things this day in a dream because of him. \nBut the chief priests and elders persuaded the multitude that they should ask Barabbas, and destroy Jesus. \nThe governor answered and said unto them, Whether of the twain will ye that I release unto you? They said, Barabbas. \nPilate saith unto them, What shall I do then with Jesus which is called Christ? They all say unto him, Let him be crucified. \nAnd the governor said, Why, what evil hath he done? But they cried out the more, saying, Let him be crucified. \nWhen Pilate saw that he could prevail nothing, but that rather a tumult was made, he took water, and washed his hands before the multitude, saying, I am innocent of the blood of this just person: see ye to it. \nThen answered all the people, and said, His blood be on us, and on our children. \nThen released he Barabbas unto them: and when he had scourged Jesus, he delivered him to be crucified. \nThen the soldiers of the governor took Jesus into the common hall, and gathered unto him the whole band of soldiers. \nAnd they stripped him, and put on him a scarlet robe. \nAnd when they had platted a crown of thorns, they put it upon his head, and a reed in his right hand: and they bowed the knee before him, and mocked him, saying, Hail, King of the Jews! \nAnd they spit upon him, and took the reed, and smote him on the head. \nAnd after that they had mocked him, they took the robe off from him, and put his own raiment on him, and led him away to crucify him. \nAnd as they came out, they found a man of Cyrene, Simon by name: him they compelled to bear his cross. \nAnd when they were come unto a place called Golgotha, that is to say, a place of a skull, \nThey gave him vinegar to drink mingled with gall: and when he had tasted thereof, he would not drink. \nAnd they crucified him, and parted his garments, casting lots: that it might be fulfilled which was spoken by the prophet, They parted my garments among them, and upon my vesture did they cast lots. \nAnd sitting down they watched him there; \nAnd set up over his head his accusation written, THIS IS JESUS THE KING OF THE JEWS. \nThen were there two thieves crucified with him, one on the right hand, and another on the left. \nAnd they that passed by reviled him, wagging their heads, \nAnd saying, Thou that destroyest the temple, and buildest it in three days, save thyself. If thou be the Son of God, come down from the cross. \nLikewise also the chief priests mocking him, with the scribes and elders, said, \nHe saved others; himself he cannot save. If he be the King of Israel, let him now come down from the cross, and we will believe him. \nHe trusted in God; let him deliver him now, if he will have him: for he said, I am the Son of God. \nThe thieves also, which were crucified with him, cast the same in his teeth. \nNow from the sixth hour there was darkness over all the land unto the ninth hour. \nAnd about the ninth hour Jesus cried with a loud voice, saying, Eli, Eli, lama sabachthani? that is to say, My God, my God, why hast thou forsaken me? \nSome of them that stood there, when they heard that, said, This man calleth for Elias. \nAnd straightway one of them ran, and took a spunge, and filled it with vinegar, and put it on a reed, and gave him to drink. \nThe rest said, Let be, let us see whether Elias will come to save him. \nJesus, when he had cried again with a loud voice, yielded up the ghost. \nAnd, behold, the veil of the temple was rent in twain from the top to the bottom; and the earth did quake, and the rocks rent; \nAnd the graves were opened; and many bodies of the saints which slept arose, \nAnd came out of the graves after his resurrection, and went into the holy city, and appeared unto many. \nNow when the centurion, and they that were with him, watching Jesus, saw the earthquake, and those things that were done, they feared greatly, saying, Truly this was the Son of God. \nAnd many women were there beholding afar off, which followed Jesus from Galilee, ministering unto him: \nAmong which was Mary Magdalene, and Mary the mother of James and Joses, and the mother of Zebedees children. \nWhen the even was come, there came a rich man of Arimathaea, named Joseph, who also himself was Jesus' disciple: \nHe went to Pilate, and begged the body of Jesus. Then Pilate commanded the body to be delivered. \nAnd when Joseph had taken the body, he wrapped it in a clean linen cloth, \nAnd laid it in his own new tomb, which he had hewn out in the rock: and he rolled a great stone to the door of the sepulchre, and departed. \nAnd there was Mary Magdalene, and the other Mary, sitting over against the sepulchre. \nNow the next day, that followed the day of the preparation, the chief priests and Pharisees came together unto Pilate, \nSaying, Sir, we remember that that deceiver said, while he was yet alive, After three days I will rise again. \nCommand therefore that the sepulchre be made sure until the third day, lest his disciples come by night, and steal him away, and say unto the people, He is risen from the dead: so the last error shall be worse than the first. \nPilate said unto them, Ye have a watch: go your way, make it as sure as ye can. \nSo they went, and made the sepulchre sure, sealing the stone, and setting a watch. \nIn the end of the sabbath, as it began to dawn toward the first day of the week, came Mary Magdalene and the other Mary to see the sepulchre. \nAnd, behold, there was a great earthquake: for the angel of the Lord descended from heaven, and came and rolled back the stone from the door, and sat upon it. \nHis countenance was like lightning, and his raiment white as snow: \nAnd for fear of him the keepers did shake, and became as dead men. \nAnd the angel answered and said unto the women, Fear not ye: for I know that ye seek Jesus, which was crucified. \nHe is not here: for he is risen, as he said. Come, see the place where the Lord lay. \nAnd go quickly, and tell his disciples that he is risen from the dead; and, behold, he goeth before you into Galilee; there shall ye see him: lo, I have told you. \nAnd they departed quickly from the sepulchre with fear and great joy; and did run to bring his disciples word. \nAnd as they went to tell his disciples, behold, Jesus met them, saying, All hail. And they came and held him by the feet, and worshipped him. \nThen said Jesus unto them, Be not afraid: go tell my brethren that they go into Galilee, and there shall they see me. \nNow when they were going, behold, some of the watch came into the city, and shewed unto the chief priests all the things that were done. \nAnd when they were assembled with the elders, and had taken counsel, they gave large money unto the soldiers, \nSaying, Say ye, His disciples came by night, and stole him away while we slept. \nAnd if this come to the governor's ears, we will persuade him, and secure you. \nSo they took the money, and did as they were taught: and this saying is commonly reported among the Jews until this day. \nThen the eleven disciples went away into Galilee, into a mountain where Jesus had appointed them. \nAnd when they saw him, they worshipped him: but some doubted. \nAnd Jesus came and spake unto them, saying, All power is given unto me in heaven and in earth. \nGo ye therefore, and teach all nations, baptizing them in the name of the Father, and of the Son, and of the Holy Ghost: \nTeaching them to observe all things whatsoever I have commanded you: and, lo, I am with you alway, even unto the end of the world. Amen. \nThe beginning of the gospel of Jesus Christ, the Son of God; \nAs it is written in the prophets, Behold, I send my messenger before thy face, which shall prepare thy way before thee. \nThe voice of one crying in the wilderness, Prepare ye the way of the Lord, make his paths straight. \nJohn did baptize in the wilderness, and preach the baptism of repentance for the remission of sins. \nAnd there went out unto him all the land of Judaea, and they of Jerusalem, and were all baptized of him in the river of Jordan, confessing their sins. \nAnd John was clothed with camel's hair, and with a girdle of a skin about his loins; and he did eat locusts and wild honey; \nAnd preached, saying, There cometh one mightier than I after me, the latchet of whose shoes I am not worthy to stoop down and unloose. \nI indeed have baptized you with water: but he shall baptize you with the Holy Ghost. \nAnd it came to pass in those days, that Jesus came from Nazareth of Galilee, and was baptized of John in Jordan. \nAnd straightway coming up out of the water, he saw the heavens opened, and the Spirit like a dove descending upon him: \nAnd there came a voice from heaven, saying, Thou art my beloved Son, in whom I am well pleased. \nAnd immediately the spirit driveth him into the wilderness. \nAnd he was there in the wilderness forty days, tempted of Satan; and was with the wild beasts; and the angels ministered unto him. \nNow after that John was put in prison, Jesus came into Galilee, preaching the gospel of the kingdom of God, \nAnd saying, The time is fulfilled, and the kingdom of God is at hand: repent ye, and believe the gospel. \nNow as he walked by the sea of Galilee, he saw Simon and Andrew his brother casting a net into the sea: for they were fishers. \nAnd Jesus said unto them, Come ye after me, and I will make you to become fishers of men. \nAnd straightway they forsook their nets, and followed him. \nAnd when he had gone a little farther thence, he saw James the son of Zebedee, and John his brother, who also were in the ship mending their nets. \nAnd straightway he called them: and they left their father Zebedee in the ship with the hired servants, and went after him. \nAnd they went into Capernaum; and straightway on the sabbath day he entered into the synagogue, and taught. \nAnd they were astonished at his doctrine: for he taught them as one that had authority, and not as the scribes. \nAnd there was in their synagogue a man with an unclean spirit; and he cried out, \nSaying, Let us alone; what have we to do with thee, thou Jesus of Nazareth? art thou come to destroy us? I know thee who thou art, the Holy One of God. \nAnd Jesus rebuked him, saying, Hold thy peace, and come out of him. \nAnd when the unclean spirit had torn him, and cried with a loud voice, he came out of him. \nAnd they were all amazed, insomuch that they questioned among themselves, saying, What thing is this? what new doctrine is this? for with authority commandeth he even the unclean spirits, and they do obey him. \nAnd immediately his fame spread abroad throughout all the region round about Galilee. \nAnd forthwith, when they were come out of the synagogue, they entered into the house of Simon and Andrew, with James and John. \nBut Simon's wife's mother lay sick of a fever, and anon they tell him of her. \nAnd he came and took her by the hand, and lifted her up; and immediately the fever left her, and she ministered unto them. \nAnd at even, when the sun did set, they brought unto him all that were diseased, and them that were possessed with devils. \nAnd all the city was gathered together at the door. \nAnd he healed many that were sick of divers diseases, and cast out many devils; and suffered not the devils to speak, because they knew him. \nAnd in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed. \nAnd Simon and they that were with him followed after him. \nAnd when they had found him, they said unto him, All men seek for thee. \nAnd he said unto them, Let us go into the next towns, that I may preach there also: for therefore came I forth. \nAnd he preached in their synagogues throughout all Galilee, and cast out devils. \nAnd there came a leper to him, beseeching him, and kneeling down to him, and saying unto him, If thou wilt, thou canst make me clean. \nAnd Jesus, moved with compassion, put forth his hand, and touched him, and saith unto him, I will; be thou clean. \nAnd as soon as he had spoken, immediately the leprosy departed from him, and he was cleansed. \nAnd he straitly charged him, and forthwith sent him away; \nAnd saith unto him, See thou say nothing to any man: but go thy way, shew thyself to the priest, and offer for thy cleansing those things which Moses commanded, for a testimony unto them. \nBut he went out, and began to publish it much, and to blaze abroad the matter, insomuch that Jesus could no more openly enter into the city, but was without in desert places: and they came to him from every quarter. \nAnd again he entered into Capernaum after some days; and it was noised that he was in the house. \nAnd straightway many were gathered together, insomuch that there was no room to receive them, no, not so much as about the door: and he preached the word unto them. \nAnd they come unto him, bringing one sick of the palsy, which was borne of four. \nAnd when they could not come nigh unto him for the press, they uncovered the roof where he was: and when they had broken it up, they let down the bed wherein the sick of the palsy lay. \nWhen Jesus saw their faith, he said unto the sick of the palsy, Son, thy sins be forgiven thee. \nBut there was certain of the scribes sitting there, and reasoning in their hearts, \nWhy doth this man thus speak blasphemies? who can forgive sins but God only? \nAnd immediately when Jesus perceived in his spirit that they so reasoned within themselves, he said unto them, Why reason ye these things in your hearts? \nWhether is it easier to say to the sick of the palsy, Thy sins be forgiven thee; or to say, Arise, and take up thy bed, and walk? \nBut that ye may know that the Son of man hath power on earth to forgive sins, (he saith to the sick of the palsy,) \nI say unto thee, Arise, and take up thy bed, and go thy way into thine house. \nAnd immediately he arose, took up the bed, and went forth before them all; insomuch that they were all amazed, and glorified God, saying, We never saw it on this fashion. \nAnd he went forth again by the sea side; and all the multitude resorted unto him, and he taught them. \nAnd as he passed by, he saw Levi the son of Alphaeus sitting at the receipt of custom, and said unto him, Follow me. And he arose and followed him. \nAnd it came to pass, that, as Jesus sat at meat in his house, many publicans and sinners sat also together with Jesus and his disciples: for there were many, and they followed him. \nAnd when the scribes and Pharisees saw him eat with publicans and sinners, they said unto his disciples, How is it that he eateth and drinketh with publicans and sinners? \nWhen Jesus heard it, he saith unto them, They that are whole have no need of the physician, but they that are sick: I came not to call the righteous, but sinners to repentance. \nAnd the disciples of John and of the Pharisees used to fast: and they come and say unto him, Why do the disciples of John and of the Pharisees fast, but thy disciples fast not? \nAnd Jesus said unto them, Can the children of the bridechamber fast, while the bridegroom is with them? as long as they have the bridegroom with them, they cannot fast. \nBut the days will come, when the bridegroom shall be taken away from them, and then shall they fast in those days. \nNo man also seweth a piece of new cloth on an old garment: else the new piece that filled it up taketh away from the old, and the rent is made worse. \nAnd no man putteth new wine into old bottles: else the new wine doth burst the bottles, and the wine is spilled, and the bottles will be marred: but new wine must be put into new bottles. \nAnd it came to pass, that he went through the corn fields on the sabbath day; and his disciples began, as they went, to pluck the ears of corn. \nAnd the Pharisees said unto him, Behold, why do they on the sabbath day that which is not lawful? \nAnd he said unto them, Have ye never read what David did, when he had need, and was an hungred, he, and they that were with him? \nHow he went into the house of God in the days of Abiathar the high priest, and did eat the shewbread, which is not lawful to eat but for the priests, and gave also to them which were with him? \nAnd he said unto them, The sabbath was made for man, and not man for the sabbath: \nTherefore the Son of man is Lord also of the sabbath. \nAnd he entered again into the synagogue; and there was a man there which had a withered hand. \nAnd they watched him, whether he would heal him on the sabbath day; that they might accuse him. \nAnd he saith unto the man which had the withered hand, Stand forth. \nAnd he saith unto them, Is it lawful to do good on the sabbath days, or to do evil? to save life, or to kill? But they held their peace. \nAnd when he had looked round about on them with anger, being grieved for the hardness of their hearts, he saith unto the man, Stretch forth thine hand. And he stretched it out: and his hand was restored whole as the other. \nAnd the Pharisees went forth, and straightway took counsel with the Herodians against him, how they might destroy him. \nBut Jesus withdrew himself with his disciples to the sea: and a great multitude from Galilee followed him, and from Judaea, \nAnd from Jerusalem, and from Idumaea, and from beyond Jordan; and they about Tyre and Sidon, a great multitude, when they had heard what great things he did, came unto him. \nAnd he spake to his disciples, that a small ship should wait on him because of the multitude, lest they should throng him. \nFor he had healed many; insomuch that they pressed upon him for to touch him, as many as had plagues. \nAnd unclean spirits, when they saw him, fell down before him, and cried, saying, Thou art the Son of God. \nAnd he straitly charged them that they should not make him known. \nAnd he goeth up into a mountain, and calleth unto him whom he would: and they came unto him. \nAnd he ordained twelve, that they should be with him, and that he might send them forth to preach, \nAnd to have power to heal sicknesses, and to cast out devils: \nAnd Simon he surnamed Peter; \nAnd James the son of Zebedee, and John the brother of James; and he surnamed them Boanerges, which is, The sons of thunder: \nAnd Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James the son of Alphaeus, and Thaddaeus, and Simon the Canaanite, \nAnd Judas Iscariot, which also betrayed him: and they went into an house. \nAnd the multitude cometh together again, so that they could not so much as eat bread. \nAnd when his friends heard of it, they went out to lay hold on him: for they said, He is beside himself. \nAnd the scribes which came down from Jerusalem said, He hath Beelzebub, and by the prince of the devils casteth he out devils. \nAnd he called them unto him, and said unto them in parables, How can Satan cast out Satan? \nAnd if a kingdom be divided against itself, that kingdom cannot stand. \nAnd if a house be divided against itself, that house cannot stand. \nAnd if Satan rise up against himself, and be divided, he cannot stand, but hath an end. \nNo man can enter into a strong man's house, and spoil his goods, except he will first bind the strong man; and then he will spoil his house. \nVerily I say unto you, All sins shall be forgiven unto the sons of men, and blasphemies wherewith soever they shall blaspheme: \nBut he that shall blaspheme against the Holy Ghost hath never forgiveness, but is in danger of eternal damnation. \nBecause they said, He hath an unclean spirit. \nThere came then his brethren and his mother, and, standing without, sent unto him, calling him. \nAnd the multitude sat about him, and they said unto him, Behold, thy mother and thy brethren without seek for thee. \nAnd he answered them, saying, Who is my mother, or my brethren? \nAnd he looked round about on them which sat about him, and said, Behold my mother and my brethren! \nFor whosoever shall do the will of God, the same is my brother, and my sister, and mother. \nAnd he began again to teach by the sea side: and there was gathered unto him a great multitude, so that he entered into a ship, and sat in the sea; and the whole multitude was by the sea on the land. \nAnd he taught them many things by parables, and said unto them in his doctrine, \nHearken; Behold, there went out a sower to sow: \nAnd it came to pass, as he sowed, some fell by the way side, and the fowls of the air came and devoured it up. \nAnd some fell on stony ground, where it had not much earth; and immediately it sprang up, because it had no depth of earth: \nBut when the sun was up, it was scorched; and because it had no root, it withered away. \nAnd some fell among thorns, and the thorns grew up, and choked it, and it yielded no fruit. \nAnd other fell on good ground, and did yield fruit that sprang up and increased; and brought forth, some thirty, and some sixty, and some an hundred. \nAnd he said unto them, He that hath ears to hear, let him hear. \nAnd when he was alone, they that were about him with the twelve asked of him the parable. \nAnd he said unto them, Unto you it is given to know the mystery of the kingdom of God: but unto them that are without, all these things are done in parables: \nThat seeing they may see, and not perceive; and hearing they may hear, and not understand; lest at any time they should be converted, and their sins should be forgiven them. \nAnd he said unto them, Know ye not this parable? and how then will ye know all parables? \nThe sower soweth the word. \nAnd these are they by the way side, where the word is sown; but when they have heard, Satan cometh immediately, and taketh away the word that was sown in their hearts. \nAnd these are they likewise which are sown on stony ground; who, when they have heard the word, immediately receive it with gladness; \nAnd have no root in themselves, and so endure but for a time: afterward, when affliction or persecution ariseth for the word's sake, immediately they are offended. \nAnd these are they which are sown among thorns; such as hear the word, \nAnd the cares of this world, and the deceitfulness of riches, and the lusts of other things entering in, choke the word, and it becometh unfruitful. \nAnd these are they which are sown on good ground; such as hear the word, and receive it, and bring forth fruit, some thirtyfold, some sixty, and some an hundred. \nAnd he said unto them, Is a candle brought to be put under a bushel, or under a bed? and not to be set on a candlestick? \nFor there is nothing hid, which shall not be manifested; neither was any thing kept secret, but that it should come abroad. \nIf any man have ears to hear, let him hear. \nAnd he said unto them, Take heed what ye hear: with what measure ye mete, it shall be measured to you: and unto you that hear shall more be given. \nFor he that hath, to him shall be given: and he that hath not, from him shall be taken even that which he hath. \nAnd he said, So is the kingdom of God, as if a man should cast seed into the ground; \nAnd should sleep, and rise night and day, and the seed should spring and grow up, he knoweth not how. \nFor the earth bringeth forth fruit of herself; first the blade, then the ear, after that the full corn in the ear. \nBut when the fruit is brought forth, immediately he putteth in the sickle, because the harvest is come. \nAnd he said, Whereunto shall we liken the kingdom of God? or with what comparison shall we compare it? \nIt is like a grain of mustard seed, which, when it is sown in the earth, is less than all the seeds that be in the earth: \nBut when it is sown, it groweth up, and becometh greater than all herbs, and shooteth out great branches; so that the fowls of the air may lodge under the shadow of it. \nAnd with many such parables spake he the word unto them, as they were able to hear it. \nBut without a parable spake he not unto them: and when they were alone, he expounded all things to his disciples. \nAnd the same day, when the even was come, he saith unto them, Let us pass over unto the other side. \nAnd when they had sent away the multitude, they took him even as he was in the ship. And there were also with him other little ships. \nAnd there arose a great storm of wind, and the waves beat into the ship, so that it was now full. \nAnd he was in the hinder part of the ship, asleep on a pillow: and they awake him, and say unto him, Master, carest thou not that we perish? \nAnd he arose, and rebuked the wind, and said unto the sea, Peace, be still. And the wind ceased, and there was a great calm. \nAnd he said unto them, Why are ye so fearful? how is it that ye have no faith? \nAnd they feared exceedingly, and said one to another, What manner of man is this, that even the wind and the sea obey him? \nAnd they came over unto the other side of the sea, into the country of the Gadarenes. \nAnd when he was come out of the ship, immediately there met him out of the tombs a man with an unclean spirit, \nWho had his dwelling among the tombs; and no man could bind him, no, not with chains: \nBecause that he had been often bound with fetters and chains, and the chains had been plucked asunder by him, and the fetters broken in pieces: neither could any man tame him. \nAnd always, night and day, he was in the mountains, and in the tombs, crying, and cutting himself with stones. \nBut when he saw Jesus afar off, he ran and worshipped him, \nAnd cried with a loud voice, and said, What have I to do with thee, Jesus, thou Son of the most high God? I adjure thee by God, that thou torment me not. \nFor he said unto him, Come out of the man, thou unclean spirit. \nAnd he asked him, What is thy name? And he answered, saying, My name is Legion: for we are many. \nAnd he besought him much that he would not send them away out of the country. \nNow there was there nigh unto the mountains a great herd of swine feeding. \nAnd all the devils besought him, saying, Send us into the swine, that we may enter into them. \nAnd forthwith Jesus gave them leave. And the unclean spirits went out, and entered into the swine: and the herd ran violently down a steep place into the sea, (they were about two thousand;) and were choked in the sea. \nAnd they that fed the swine fled, and told it in the city, and in the country. And they went out to see what it was that was done. \nAnd they come to Jesus, and see him that was possessed with the devil, and had the legion, sitting, and clothed, and in his right mind: and they were afraid. \nAnd they that saw it told them how it befell to him that was possessed with the devil, and also concerning the swine. \nAnd they began to pray him to depart out of their coasts. \nAnd when he was come into the ship, he that had been possessed with the devil prayed him that he might be with him. \nHowbeit Jesus suffered him not, but saith unto him, Go home to thy friends, and tell them how great things the Lord hath done for thee, and hath had compassion on thee. \nAnd he departed, and began to publish in Decapolis how great things Jesus had done for him: and all men did marvel. \nAnd when Jesus was passed over again by ship unto the other side, much people gathered unto him: and he was nigh unto the sea. \nAnd, behold, there cometh one of the rulers of the synagogue, Jairus by name; and when he saw him, he fell at his feet, \nAnd besought him greatly, saying, My little daughter lieth at the point of death: I pray thee, come and lay thy hands on her, that she may be healed; and she shall live. \nAnd Jesus went with him; and much people followed him, and thronged him. \nAnd a certain woman, which had an issue of blood twelve years, \nAnd had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse, \nWhen she had heard of Jesus, came in the press behind, and touched his garment. \nFor she said, If I may touch but his clothes, I shall be whole. \nAnd straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague. \nAnd Jesus, immediately knowing in himself that virtue had gone out of him, turned him about in the press, and said, Who touched my clothes? \nAnd his disciples said unto him, Thou seest the multitude thronging thee, and sayest thou, Who touched me? \nAnd he looked round about to see her that had done this thing. \nBut the woman fearing and trembling, knowing what was done in her, came and fell down before him, and told him all the truth. \nAnd he said unto her, Daughter, thy faith hath made thee whole; go in peace, and be whole of thy plague. \nWhile he yet spake, there came from the ruler of the synagogue's house certain which said, Thy daughter is dead: why troublest thou the Master any further? \nAs soon as Jesus heard the word that was spoken, he saith unto the ruler of the synagogue, Be not afraid, only believe. \nAnd he suffered no man to follow him, save Peter, and James, and John the brother of James. \nAnd he cometh to the house of the ruler of the synagogue, and seeth the tumult, and them that wept and wailed greatly. \nAnd when he was come in, he saith unto them, Why make ye this ado, and weep? the damsel is not dead, but sleepeth. \nAnd they laughed him to scorn. But when he had put them all out, he taketh the father and the mother of the damsel, and them that were with him, and entereth in where the damsel was lying. \nAnd he took the damsel by the hand, and said unto her, Talitha cumi; which is, being interpreted, Damsel, I say unto thee, arise. \nAnd straightway the damsel arose, and walked; for she was of the age of twelve years. And they were astonished with a great astonishment. \nAnd he charged them straitly that no man should know it; and commanded that something should be given her to eat. \nAnd he went out from thence, and came into his own country; and his disciples follow him. \nAnd when the sabbath day was come, he began to teach in the synagogue: and many hearing him were astonished, saying, From whence hath this man these things? and what wisdom is this which is given unto him, that even such mighty works are wrought by his hands? \nIs not this the carpenter, the son of Mary, the brother of James, and Joses, and of Juda, and Simon? and are not his sisters here with us? And they were offended at him. \nBut Jesus, said unto them, A prophet is not without honour, but in his own country, and among his own kin, and in his own house. \nAnd he could there do no mighty work, save that he laid his hands upon a few sick folk, and healed them. \nAnd he marvelled because of their unbelief. And he went round about the villages, teaching. \nAnd he called unto him the twelve, and began to send them forth by two and two; and gave them power over unclean spirits; \nAnd commanded them that they should take nothing for their journey, save a staff only; no scrip, no bread, no money in their purse: \nBut be shod with sandals; and not put on two coats. \nAnd he said unto them, In what place soever ye enter into an house, there abide till ye depart from that place. \nAnd whosoever shall not receive you, nor hear you, when ye depart thence, shake off the dust under your feet for a testimony against them. Verily I say unto you, It shall be more tolerable for Sodom and Gomorrha in the day of judgment, than for that city. \nAnd they went out, and preached that men should repent. \nAnd they cast out many devils, and anointed with oil many that were sick, and healed them. \nAnd king Herod heard of him; (for his name was spread abroad:) and he said, That John the Baptist was risen from the dead, and therefore mighty works do shew forth themselves in him. \nOthers said, That it is Elias. And others said, That it is a prophet, or as one of the prophets. \nBut when Herod heard thereof, he said, It is John, whom I beheaded: he is risen from the dead. \nFor Herod himself had sent forth and laid hold upon John, and bound him in prison for Herodias' sake, his brother Philip's wife: for he had married her. \nFor John had said unto Herod, It is not lawful for thee to have thy brother's wife. \nTherefore Herodias had a quarrel against him, and would have killed him; but she could not: \nFor Herod feared John, knowing that he was a just man and an holy, and observed him; and when he heard him, he did many things, and heard him gladly. \nAnd when a convenient day was come, that Herod on his birthday made a supper to his lords, high captains, and chief estates of Galilee; \nAnd when the daughter of the said Herodias came in, and danced, and pleased Herod and them that sat with him, the king said unto the damsel, Ask of me whatsoever thou wilt, and I will give it thee. \nAnd he sware unto her, Whatsoever thou shalt ask of me, I will give it thee, unto the half of my kingdom. \nAnd she went forth, and said unto her mother, What shall I ask? And she said, The head of John the Baptist. \nAnd she came in straightway with haste unto the king, and asked, saying, I will that thou give me by and by in a charger the head of John the Baptist. \nAnd the king was exceeding sorry; yet for his oath's sake, and for their sakes which sat with him, he would not reject her. \nAnd immediately the king sent an executioner, and commanded his head to be brought: and he went and beheaded him in the prison, \nAnd brought his head in a charger, and gave it to the damsel: and the damsel gave it to her mother. \nAnd when his disciples heard of it, they came and took up his corpse, and laid it in a tomb. \nAnd the apostles gathered themselves together unto Jesus, and told him all things, both what they had done, and what they had taught. \nAnd he said unto them, Come ye yourselves apart into a desert place, and rest a while: for there were many coming and going, and they had no leisure so much as to eat. \nAnd they departed into a desert place by ship privately. \nAnd the people saw them departing, and many knew him, and ran afoot thither out of all cities, and outwent them, and came together unto him. \nAnd Jesus, when he came out, saw much people, and was moved with compassion toward them, because they were as sheep not having a shepherd: and he began to teach them many things. \nAnd when the day was now far spent, his disciples came unto him, and said, This is a desert place, and now the time is far passed: \nSend them away, that they may go into the country round about, and into the villages, and buy themselves bread: for they have nothing to eat. \nHe answered and said unto them, Give ye them to eat. And they say unto him, Shall we go and buy two hundred pennyworth of bread, and give them to eat? \nHe saith unto them, How many loaves have ye? go and see. And when they knew, they say, Five, and two fishes. \nAnd he commanded them to make all sit down by companies upon the green grass. \nAnd they sat down in ranks, by hundreds, and by fifties. \nAnd when he had taken the five loaves and the two fishes, he looked up to heaven, and blessed, and brake the loaves, and gave them to his disciples to set before them; and the two fishes divided he among them all. \nAnd they did all eat, and were filled. \nAnd they took up twelve baskets full of the fragments, and of the fishes. \nAnd they that did eat of the loaves were about five thousand men. \nAnd straightway he constrained his disciples to get into the ship, and to go to the other side before unto Bethsaida, while he sent away the people. \nAnd when he had sent them away, he departed into a mountain to pray. \nAnd when even was come, the ship was in the midst of the sea, and he alone on the land. \nAnd he saw them toiling in rowing; for the wind was contrary unto them: and about the fourth watch of the night he cometh unto them, walking upon the sea, and would have passed by them. \nBut when they saw him walking upon the sea, they supposed it had been a spirit, and cried out: \nFor they all saw him, and were troubled. And immediately he talked with them, and saith unto them, Be of good cheer: it is I; be not afraid. \nAnd he went up unto them into the ship; and the wind ceased: and they were sore amazed in themselves beyond measure, and wondered. \nFor they considered not the miracle of the loaves: for their heart was hardened. \nAnd when they had passed over, they came into the land of Gennesaret, and drew to the shore. \nAnd when they were come out of the ship, straightway they knew him, \nAnd ran through that whole region round about, and began to carry about in beds those that were sick, where they heard he was. \nAnd whithersoever he entered, into villages, or cities, or country, they laid the sick in the streets, and besought him that they might touch if it were but the border of his garment: and as many as touched him were made whole. \nThen came together unto him the Pharisees, and certain of the scribes, which came from Jerusalem. \nAnd when they saw some of his disciples eat bread with defiled, that is to say, with unwashen, hands, they found fault. \nFor the Pharisees, and all the Jews, except they wash their hands oft, eat not, holding the tradition of the elders. \nAnd when they come from the market, except they wash, they eat not. And many other things there be, which they have received to hold, as the washing of cups, and pots, brasen vessels, and of tables. \nThen the Pharisees and scribes asked him, Why walk not thy disciples according to the tradition of the elders, but eat bread with unwashen hands? \nHe answered and said unto them, Well hath Esaias prophesied of you hypocrites, as it is written, This people honoureth me with their lips, but their heart is far from me. \nHowbeit in vain do they worship me, teaching for doctrines the commandments of men. \nFor laying aside the commandment of God, ye hold the tradition of men, as the washing of pots and cups: and many other such like things ye do. \nAnd he said unto them, Full well ye reject the commandment of God, that ye may keep your own tradition. \nFor Moses said, Honour thy father and thy mother; and, Whoso curseth father or mother, let him die the death: \nBut ye say, If a man shall say to his father or mother, It is Corban, that is to say, a gift, by whatsoever thou mightest be profited by me; he shall be free. \nAnd ye suffer him no more to do ought for his father or his mother; \nMaking the word of God of none effect through your tradition, which ye have delivered: and many such like things do ye. \nAnd when he had called all the people unto him, he said unto them, Hearken unto me every one of you, and understand: \nThere is nothing from without a man, that entering into him can defile him: but the things which come out of him, those are they that defile the man. \nIf any man have ears to hear, let him hear. \nAnd when he was entered into the house from the people, his disciples asked him concerning the parable. \nAnd he saith unto them, Are ye so without understanding also? Do ye not perceive, that whatsoever thing from without entereth into the man, it cannot defile him; \nBecause it entereth not into his heart, but into the belly, and goeth out into the draught, purging all meats? \nAnd he said, That which cometh out of the man, that defileth the man. \nFor from within, out of the heart of men, proceed evil thoughts, adulteries, fornications, murders, \nThefts, covetousness, wickedness, deceit, lasciviousness, an evil eye, blasphemy, pride, foolishness: \nAll these evil things come from within, and defile the man. \nAnd from thence he arose, and went into the borders of Tyre and Sidon, and entered into an house, and would have no man know it: but he could not be hid. \nFor a certain woman, whose young daughter had an unclean spirit, heard of him, and came and fell at his feet: \nThe woman was a Greek, a Syrophenician by nation; and she besought him that he would cast forth the devil out of her daughter. \nBut Jesus said unto her, Let the children first be filled: for it is not meet to take the children's bread, and to cast it unto the dogs. \nAnd she answered and said unto him, Yes, Lord: yet the dogs under the table eat of the children's crumbs. \nAnd he said unto her, For this saying go thy way; the devil is gone out of thy daughter. \nAnd when she was come to her house, she found the devil gone out, and her daughter laid upon the bed. \nAnd again, departing from the coasts of Tyre and Sidon, he came unto the sea of Galilee, through the midst of the coasts of Decapolis. \nAnd they bring unto him one that was deaf, and had an impediment in his speech; and they beseech him to put his hand upon him. \nAnd he took him aside from the multitude, and put his fingers into his ears, and he spit, and touched his tongue; \nAnd looking up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be opened. \nAnd straightway his ears were opened, and the string of his tongue was loosed, and he spake plain. \nAnd he charged them that they should tell no man: but the more he charged them, so much the more a great deal they published it; \nAnd were beyond measure astonished, saying, He hath done all things well: he maketh both the deaf to hear, and the dumb to speak. \nIn those days the multitude being very great, and having nothing to eat, Jesus called his disciples unto him, and saith unto them, \nI have compassion on the multitude, because they have now been with me three days, and have nothing to eat: \nAnd if I send them away fasting to their own houses, they will faint by the way: for divers of them came from far. \nAnd his disciples answered him, From whence can a man satisfy these men with bread here in the wilderness? \nAnd he asked them, How many loaves have ye? And they said, Seven. \nAnd he commanded the people to sit down on the ground: and he took the seven loaves, and gave thanks, and brake, and gave to his disciples to set before them; and they did set them before the people. \nAnd they had a few small fishes: and he blessed, and commanded to set them also before them. \nSo they did eat, and were filled: and they took up of the broken meat that was left seven baskets. \nAnd they that had eaten were about four thousand: and he sent them away. \nAnd straightway he entered into a ship with his disciples, and came into the parts of Dalmanutha. \nAnd the Pharisees came forth, and began to question with him, seeking of him a sign from heaven, tempting him. \nAnd he sighed deeply in his spirit, and saith, Why doth this generation seek after a sign? verily I say unto you, There shall no sign be given unto this generation. \nAnd he left them, and entering into the ship again departed to the other side. \nNow the disciples had forgotten to take bread, neither had they in the ship with them more than one loaf. \nAnd he charged them, saying, Take heed, beware of the leaven of the Pharisees, and of the leaven of Herod. \nAnd they reasoned among themselves, saying, It is because we have no bread. \nAnd when Jesus knew it, he saith unto them, Why reason ye, because ye have no bread? perceive ye not yet, neither understand? have ye your heart yet hardened? \nHaving eyes, see ye not? and having ears, hear ye not? and do ye not remember? \nWhen I brake the five loaves among five thousand, how many baskets full of fragments took ye up? They say unto him, Twelve. \nAnd when the seven among four thousand, how many baskets full of fragments took ye up? And they said, Seven. \nAnd he said unto them, How is it that ye do not understand? \nAnd he cometh to Bethsaida; and they bring a blind man unto him, and besought him to touch him. \nAnd he took the blind man by the hand, and led him out of the town; and when he had spit on his eyes, and put his hands upon him, he asked him if he saw ought. \nAnd he looked up, and said, I see men as trees, walking. \nAfter that he put his hands again upon his eyes, and made him look up: and he was restored, and saw every man clearly. \nAnd he sent him away to his house, saying, Neither go into the town, nor tell it to any in the town. \nAnd Jesus went out, and his disciples, into the towns of Caesarea Philippi: and by the way he asked his disciples, saying unto them, Whom do men say that I am? \nAnd they answered, John the Baptist; but some say, Elias; and others, One of the prophets. \nAnd he saith unto them, But whom say ye that I am? And Peter answereth and saith unto him, Thou art the Christ. \nAnd he charged them that they should tell no man of him. \nAnd he began to teach them, that the Son of man must suffer many things, and be rejected of the elders, and of the chief priests, and scribes, and be killed, and after three days rise again. \nAnd he spake that saying openly. And Peter took him, and began to rebuke him. \nBut when he had turned about and looked on his disciples, he rebuked Peter, saying, Get thee behind me, Satan: for thou savourest not the things that be of God, but the things that be of men. \nAnd when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me. \nFor whosoever will save his life shall lose it; but whosoever shall lose his life for my sake and the gospel's, the same shall save it. \nFor what shall it profit a man, if he shall gain the whole world, and lose his own soul? \nOr what shall a man give in exchange for his soul? \nWhosoever therefore shall be ashamed of me and of my words in this adulterous and sinful generation; of him also shall the Son of man be ashamed, when he cometh in the glory of his Father with the holy angels. \nAnd he said unto them, Verily I say unto you, That there be some of them that stand here, which shall not taste of death, till they have seen the kingdom of God come with power. \nAnd after six days Jesus taketh with him Peter, and James, and John, and leadeth them up into an high mountain apart by themselves: and he was transfigured before them. \nAnd his raiment became shining, exceeding white as snow; so as no fuller on earth can white them. \nAnd there appeared unto them Elias with Moses: and they were talking with Jesus. \nAnd Peter answered and said to Jesus, Master, it is good for us to be here: and let us make three tabernacles; one for thee, and one for Moses, and one for Elias. \nFor he wist not what to say; for they were sore afraid. \nAnd there was a cloud that overshadowed them: and a voice came out of the cloud, saying, This is my beloved Son: hear him. \nAnd suddenly, when they had looked round about, they saw no man any more, save Jesus only with themselves. \nAnd as they came down from the mountain, he charged them that they should tell no man what things they had seen, till the Son of man were risen from the dead. \nAnd they kept that saying with themselves, questioning one with another what the rising from the dead should mean. \nAnd they asked him, saying, Why say the scribes that Elias must first come? \nAnd he answered and told them, Elias verily cometh first, and restoreth all things; and how it is written of the Son of man, that he must suffer many things, and be set at nought. \nBut I say unto you, That Elias is indeed come, and they have done unto him whatsoever they listed, as it is written of him. \nAnd when he came to his disciples, he saw a great multitude about them, and the scribes questioning with them. \nAnd straightway all the people, when they beheld him, were greatly amazed, and running to him saluted him. \nAnd he asked the scribes, What question ye with them? \nAnd one of the multitude answered and said, Master, I have brought unto thee my son, which hath a dumb spirit; \nAnd wheresoever he taketh him, he teareth him: and he foameth, and gnasheth with his teeth, and pineth away: and I spake to thy disciples that they should cast him out; and they could not. \nHe answereth him, and saith, O faithless generation, how long shall I be with you? how long shall I suffer you? bring him unto me. \nAnd they brought him unto him: and when he saw him, straightway the spirit tare him; and he fell on the ground, and wallowed foaming. \nAnd he asked his father, How long is it ago since this came unto him? And he said, Of a child. \nAnd ofttimes it hath cast him into the fire, and into the waters, to destroy him: but if thou canst do any thing, have compassion on us, and help us. \nJesus said unto him, If thou canst believe, all things are possible to him that believeth. \nAnd straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief. \nWhen Jesus saw that the people came running together, he rebuked the foul spirit, saying unto him, Thou dumb and deaf spirit, I charge thee, come out of him, and enter no more into him. \nAnd the spirit cried, and rent him sore, and came out of him: and he was as one dead; insomuch that many said, He is dead. \nBut Jesus took him by the hand, and lifted him up; and he arose. \nAnd when he was come into the house, his disciples asked him privately, Why could not we cast him out? \nAnd he said unto them, This kind can come forth by nothing, but by prayer and fasting. \nAnd they departed thence, and passed through Galilee; and he would not that any man should know it. \nFor he taught his disciples, and said unto them, The Son of man is delivered into the hands of men, and they shall kill him; and after that he is killed, he shall rise the third day. \nBut they understood not that saying, and were afraid to ask him. \nAnd he came to Capernaum: and being in the house he asked them, What was it that ye disputed among yourselves by the way? \nBut they held their peace: for by the way they had disputed among themselves, who should be the greatest. \nAnd he sat down, and called the twelve, and saith unto them, If any man desire to be first, the same shall be last of all, and servant of all. \nAnd he took a child, and set him in the midst of them: and when he had taken him in his arms, he said unto them, \nWhosoever shall receive one of such children in my name, receiveth me: and whosoever shall receive me, receiveth not me, but him that sent me. \nAnd John answered him, saying, Master, we saw one casting out devils in thy name, and he followeth not us: and we forbad him, because he followeth not us. \nBut Jesus said, Forbid him not: for there is no man which shall do a miracle in my name, that can lightly speak evil of me. \nFor he that is not against us is on our part. \nFor whosoever shall give you a cup of water to drink in my name, because ye belong to Christ, verily I say unto you, he shall not lose his reward. \nAnd whosoever shall offend one of these little ones that believe in me, it is better for him that a millstone were hanged about his neck, and he were cast into the sea. \nAnd if thy hand offend thee, cut it off: it is better for thee to enter into life maimed, than having two hands to go into hell, into the fire that never shall be quenched: \nWhere their worm dieth not, and the fire is not quenched. \nAnd if thy foot offend thee, cut it off: it is better for thee to enter halt into life, than having two feet to be cast into hell, into the fire that never shall be quenched: \nWhere their worm dieth not, and the fire is not quenched. \nAnd if thine eye offend thee, pluck it out: it is better for thee to enter into the kingdom of God with one eye, than having two eyes to be cast into hell fire: \nWhere their worm dieth not, and the fire is not quenched. \nFor every one shall be salted with fire, and every sacrifice shall be salted with salt. \nSalt is good: but if the salt have lost his saltness, wherewith will ye season it? Have salt in yourselves, and have peace one with another. \nAnd he arose from thence, and cometh into the coasts of Judaea by the farther side of Jordan: and the people resort unto him again; and, as he was wont, he taught them again. \nAnd the Pharisees came to him, and asked him, Is it lawful for a man to put away his wife? tempting him. \nAnd he answered and said unto them, What did Moses command you? \nAnd they said, Moses suffered to write a bill of divorcement, and to put her away. \nAnd Jesus answered and said unto them, For the hardness of your heart he wrote you this precept. \nBut from the beginning of the creation God made them male and female. \nFor this cause shall a man leave his father and mother, and cleave to his wife; \nAnd they twain shall be one flesh: so then they are no more twain, but one flesh. \nWhat therefore God hath joined together, let not man put asunder. \nAnd in the house his disciples asked him again of the same matter. \nAnd he saith unto them, Whosoever shall put away his wife, and marry another, committeth adultery against her. \nAnd if a woman shall put away her husband, and be married to another, she committeth adultery. \nAnd they brought young children to him, that he should touch them: and his disciples rebuked those that brought them. \nBut when Jesus saw it, he was much displeased, and said unto them, Suffer the little children to come unto me, and forbid them not: for of such is the kingdom of God. \nVerily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall not enter therein. \nAnd he took them up in his arms, put his hands upon them, and blessed them. \nAnd when he was gone forth into the way, there came one running, and kneeled to him, and asked him, Good Master, what shall I do that I may inherit eternal life? \nAnd Jesus said unto him, Why callest thou me good? there is none good but one, that is, God. \nThou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Defraud not, Honour thy father and mother. \nAnd he answered and said unto him, Master, all these have I observed from my youth. \nThen Jesus beholding him loved him, and said unto him, One thing thou lackest: go thy way, sell whatsoever thou hast, and give to the poor, and thou shalt have treasure in heaven: and come, take up the cross, and follow me. \nAnd he was sad at that saying, and went away grieved: for he had great possessions. \nAnd Jesus looked round about, and saith unto his disciples, How hardly shall they that have riches enter into the kingdom of God! \nAnd the disciples were astonished at his words. But Jesus answereth again, and saith unto them, Children, how hard is it for them that trust in riches to enter into the kingdom of God! \nIt is easier for a camel to go through the eye of a needle, than for a rich man to enter into the kingdom of God. \nAnd they were astonished out of measure, saying among themselves, Who then can be saved? \nAnd Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible. \nThen Peter began to say unto him, Lo, we have left all, and have followed thee. \nAnd Jesus answered and said, Verily I say unto you, There is no man that hath left house, or brethren, or sisters, or father, or mother, or wife, or children, or lands, for my sake, and the gospel's, \nBut he shall receive an hundredfold now in this time, houses, and brethren, and sisters, and mothers, and children, and lands, with persecutions; and in the world to come eternal life. \nBut many that are first shall be last; and the last first. \nAnd they were in the way going up to Jerusalem; and Jesus went before them: and they were amazed; and as they followed, they were afraid. And he took again the twelve, and began to tell them what things should happen unto him, \nSaying, Behold, we go up to Jerusalem; and the Son of man shall be delivered unto the chief priests, and unto the scribes; and they shall condemn him to death, and shall deliver him to the Gentiles: \nAnd they shall mock him, and shall scourge him, and shall spit upon him, and shall kill him: and the third day he shall rise again. \nAnd James and John, the sons of Zebedee, come unto him, saying, Master, we would that thou shouldest do for us whatsoever we shall desire. \nAnd he said unto them, What would ye that I should do for you? \nThey said unto him, Grant unto us that we may sit, one on thy right hand, and the other on thy left hand, in thy glory. \nBut Jesus said unto them, Ye know not what ye ask: can ye drink of the cup that I drink of? and be baptized with the baptism that I am baptized with? \nAnd they said unto him, We can. And Jesus said unto them, Ye shall indeed drink of the cup that I drink of; and with the baptism that I am baptized withal shall ye be baptized: \nBut to sit on my right hand and on my left hand is not mine to give; but it shall be given to them for whom it is prepared. \nAnd when the ten heard it, they began to be much displeased with James and John. \nBut Jesus called them to him, and saith unto them, Ye know that they which are accounted to rule over the Gentiles exercise lordship over them; and their great ones exercise authority upon them. \nBut so shall it not be among you: but whosoever will be great among you, shall be your minister: \nAnd whosoever of you will be the chiefest, shall be servant of all. \nFor even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many. \nAnd they came to Jericho: and as he went out of Jericho with his disciples and a great number of people, blind Bartimaeus, the son of Timaeus, sat by the highway side begging. \nAnd when he heard that it was Jesus of Nazareth, he began to cry out, and say, Jesus, thou son of David, have mercy on me. \nAnd many charged him that he should hold his peace: but he cried the more a great deal, Thou son of David, have mercy on me. \nAnd Jesus stood still, and commanded him to be called. And they call the blind man, saying unto him, Be of good comfort, rise; he calleth thee. \nAnd he, casting away his garment, rose, and came to Jesus. \nAnd Jesus answered and said unto him, What wilt thou that I should do unto thee? The blind man said unto him, Lord, that I might receive my sight. \nAnd Jesus said unto him, Go thy way; thy faith hath made thee whole. And immediately he received his sight, and followed Jesus in the way. \nAnd when they came nigh to Jerusalem, unto Bethphage and Bethany, at the mount of Olives, he sendeth forth two of his disciples, \nAnd saith unto them, Go your way into the village over against you: and as soon as ye be entered into it, ye shall find a colt tied, whereon never man sat; loose him, and bring him. \nAnd if any man say unto you, Why do ye this? say ye that the Lord hath need of him; and straightway he will send him hither. \nAnd they went their way, and found the colt tied by the door without in a place where two ways met; and they loose him. \nAnd certain of them that stood there said unto them, What do ye, loosing the colt? \nAnd they said unto them even as Jesus had commanded: and they let them go. \nAnd they brought the colt to Jesus, and cast their garments on him; and he sat upon him. \nAnd many spread their garments in the way: and others cut down branches off the trees, and strawed them in the way. \nAnd they that went before, and they that followed, cried, saying, Hosanna; Blessed is he that cometh in the name of the Lord: \nBlessed be the kingdom of our father David, that cometh in the name of the Lord: Hosanna in the highest. \nAnd Jesus entered into Jerusalem, and into the temple: and when he had looked round about upon all things, and now the eventide was come, he went out unto Bethany with the twelve. \nAnd on the morrow, when they were come from Bethany, he was hungry: \nAnd seeing a fig tree afar off having leaves, he came, if haply he might find any thing thereon: and when he came to it, he found nothing but leaves; for the time of figs was not yet. \nAnd Jesus answered and said unto it, No man eat fruit of thee hereafter for ever. And his disciples heard it. \nAnd they come to Jerusalem: and Jesus went into the temple, and began to cast out them that sold and bought in the temple, and overthrew the tables of the moneychangers, and the seats of them that sold doves; \nAnd would not suffer that any man should carry any vessel through the temple. \nAnd he taught, saying unto them, Is it not written, My house shall be called of all nations the house of prayer? but ye have made it a den of thieves. \nAnd the scribes and chief priests heard it, and sought how they might destroy him: for they feared him, because all the people was astonished at his doctrine. \nAnd when even was come, he went out of the city. \nAnd in the morning, as they passed by, they saw the fig tree dried up from the roots. \nAnd Peter calling to remembrance saith unto him, Master, behold, the fig tree which thou cursedst is withered away. \nAnd Jesus answering saith unto them, Have faith in God. \nFor verily I say unto you, That whosoever shall say unto this mountain, Be thou removed, and be thou cast into the sea; and shall not doubt in his heart, but shall believe that those things which he saith shall come to pass; he shall have whatsoever he saith. \nTherefore I say unto you, What things soever ye desire, when ye pray, believe that ye receive them, and ye shall have them. \nAnd when ye stand praying, forgive, if ye have ought against any: that your Father also which is in heaven may forgive you your trespasses. \nBut if ye do not forgive, neither will your Father which is in heaven forgive your trespasses. \nAnd they come again to Jerusalem: and as he was walking in the temple, there come to him the chief priests, and the scribes, and the elders, \nAnd say unto him, By what authority doest thou these things? and who gave thee this authority to do these things? \nAnd Jesus answered and said unto them, I will also ask of you one question, and answer me, and I will tell you by what authority I do these things. \nThe baptism of John, was it from heaven, or of men? answer me. \nAnd they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then did ye not believe him? \nBut if we shall say, Of men; they feared the people: for all men counted John, that he was a prophet indeed. \nAnd they answered and said unto Jesus, We cannot tell. And Jesus answering saith unto them, Neither do I tell you by what authority I do these things. \nAnd he began to speak unto them by parables. A certain man planted a vineyard, and set an hedge about it, and digged a place for the winefat, and built a tower, and let it out to husbandmen, and went into a far country. \nAnd at the season he sent to the husbandmen a servant, that he might receive from the husbandmen of the fruit of the vineyard. \nAnd they caught him, and beat him, and sent him away empty. \nAnd again he sent unto them another servant; and at him they cast stones, and wounded him in the head, and sent him away shamefully handled. \nAnd again he sent another; and him they killed, and many others; beating some, and killing some. \nHaving yet therefore one son, his wellbeloved, he sent him also last unto them, saying, They will reverence my son. \nBut those husbandmen said among themselves, This is the heir; come, let us kill him, and the inheritance shall be our's. \nAnd they took him, and killed him, and cast him out of the vineyard. \nWhat shall therefore the lord of the vineyard do? he will come and destroy the husbandmen, and will give the vineyard unto others. \nAnd have ye not read this scripture; The stone which the builders rejected is become the head of the corner: \nThis was the Lord's doing, and it is marvellous in our eyes? \nAnd they sought to lay hold on him, but feared the people: for they knew that he had spoken the parable against them: and they left him, and went their way. \nAnd they send unto him certain of the Pharisees and of the Herodians, to catch him in his words. \nAnd when they were come, they say unto him, Master, we know that thou art true, and carest for no man: for thou regardest not the person of men, but teachest the way of God in truth: Is it lawful to give tribute to Caesar, or not? \nShall we give, or shall we not give? But he, knowing their hypocrisy, said unto them, Why tempt ye me? bring me a penny, that I may see it. \nAnd they brought it. And he saith unto them, Whose is this image and superscription? And they said unto him, Caesar's. \nAnd Jesus answering said unto them, Render to Caesar the things that are Caesar's, and to God the things that are God's. And they marvelled at him. \nThen come unto him the Sadducees, which say there is no resurrection; and they asked him, saying, \nMaster, Moses wrote unto us, If a man's brother die, and leave his wife behind him, and leave no children, that his brother should take his wife, and raise up seed unto his brother. \nNow there were seven brethren: and the first took a wife, and dying left no seed. \nAnd the second took her, and died, neither left he any seed: and the third likewise. \nAnd the seven had her, and left no seed: last of all the woman died also. \nIn the resurrection therefore, when they shall rise, whose wife shall she be of them? for the seven had her to wife. \nAnd Jesus answering said unto them, Do ye not therefore err, because ye know not the scriptures, neither the power of God? \nFor when they shall rise from the dead, they neither marry, nor are given in marriage; but are as the angels which are in heaven. \nAnd as touching the dead, that they rise: have ye not read in the book of Moses, how in the bush God spake unto him, saying, I am the God of Abraham, and the God of Isaac, and the God of Jacob? \nHe is not the God of the dead, but the God of the living: ye therefore do greatly err. \nAnd one of the scribes came, and having heard them reasoning together, and perceiving that he had answered them well, asked him, Which is the first commandment of all? \nAnd Jesus answered him, The first of all the commandments is, Hear, O Israel; The Lord our God is one Lord: \nAnd thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind, and with all thy strength: this is the first commandment. \nAnd the second is like, namely this, Thou shalt love thy neighbour as thyself. There is none other commandment greater than these. \nAnd the scribe said unto him, Well, Master, thou hast said the truth: for there is one God; and there is none other but he: \nAnd to love him with all the heart, and with all the understanding, and with all the soul, and with all the strength, and to love his neighbour as himself, is more than all whole burnt offerings and sacrifices. \nAnd when Jesus saw that he answered discreetly, he said unto him, Thou art not far from the kingdom of God. And no man after that durst ask him any question. \nAnd Jesus answered and said, while he taught in the temple, How say the scribes that Christ is the son of David? \nFor David himself said by the Holy Ghost, The LORD said to my Lord, Sit thou on my right hand, till I make thine enemies thy footstool. \nDavid therefore himself calleth him Lord; and whence is he then his son? And the common people heard him gladly. \nAnd he said unto them in his doctrine, Beware of the scribes, which love to go in long clothing, and love salutations in the marketplaces, \nAnd the chief seats in the synagogues, and the uppermost rooms at feasts: \nWhich devour widows' houses, and for a pretence make long prayers: these shall receive greater damnation. \nAnd Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. \nAnd there came a certain poor widow, and she threw in two mites, which make a farthing. \nAnd he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: \nFor all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living. \nAnd as he went out of the temple, one of his disciples saith unto him, Master, see what manner of stones and what buildings are here! \nAnd Jesus answering said unto him, Seest thou these great buildings? there shall not be left one stone upon another, that shall not be thrown down. \nAnd as he sat upon the mount of Olives over against the temple, Peter and James and John and Andrew asked him privately, \nTell us, when shall these things be? and what shall be the sign when all these things shall be fulfilled? \nAnd Jesus answering them began to say, Take heed lest any man deceive you: \nFor many shall come in my name, saying, I am Christ; and shall deceive many. \nAnd when ye shall hear of wars and rumours of wars, be ye not troubled: for such things must needs be; but the end shall not be yet. \nFor nation shall rise against nation, and kingdom against kingdom: and there shall be earthquakes in divers places, and there shall be famines and troubles: these are the beginnings of sorrows. \nBut take heed to yourselves: for they shall deliver you up to councils; and in the synagogues ye shall be beaten: and ye shall be brought before rulers and kings for my sake, for a testimony against them. \nAnd the gospel must first be published among all nations. \nBut when they shall lead you, and deliver you up, take no thought beforehand what ye shall speak, neither do ye premeditate: but whatsoever shall be given you in that hour, that speak ye: for it is not ye that speak, but the Holy Ghost. \nNow the brother shall betray the brother to death, and the father the son; and children shall rise up against their parents, and shall cause them to be put to death. \nAnd ye shall be hated of all men for my name's sake: but he that shall endure unto the end, the same shall be saved. \nBut when ye shall see the abomination of desolation, spoken of by Daniel the prophet, standing where it ought not, (let him that readeth understand,) then let them that be in Judaea flee to the mountains: \nAnd let him that is on the housetop not go down into the house, neither enter therein, to take any thing out of his house: \nAnd let him that is in the field not turn back again for to take up his garment. \nBut woe to them that are with child, and to them that give suck in those days! \nAnd pray ye that your flight be not in the winter. \nFor in those days shall be affliction, such as was not from the beginning of the creation which God created unto this time, neither shall be. \nAnd except that the Lord had shortened those days, no flesh should be saved: but for the elect's sake, whom he hath chosen, he hath shortened the days. \nAnd then if any man shall say to you, Lo, here is Christ; or, lo, he is there; believe him not: \nFor false Christs and false prophets shall rise, and shall shew signs and wonders, to seduce, if it were possible, even the elect. \nBut take ye heed: behold, I have foretold you all things. \nBut in those days, after that tribulation, the sun shall be darkened, and the moon shall not give her light, \nAnd the stars of heaven shall fall, and the powers that are in heaven shall be shaken. \nAnd then shall they see the Son of man coming in the clouds with great power and glory. \nAnd then shall he send his angels, and shall gather together his elect from the four winds, from the uttermost part of the earth to the uttermost part of heaven. \nNow learn a parable of the fig tree; When her branch is yet tender, and putteth forth leaves, ye know that summer is near: \nSo ye in like manner, when ye shall see these things come to pass, know that it is nigh, even at the doors. \nVerily I say unto you, that this generation shall not pass, till all these things be done. \nHeaven and earth shall pass away: but my words shall not pass away. \nBut of that day and that hour knoweth no man, no, not the angels which are in heaven, neither the Son, but the Father. \nTake ye heed, watch and pray: for ye know not when the time is. \nFor the Son of Man is as a man taking a far journey, who left his house, and gave authority to his servants, and to every man his work, and commanded the porter to watch. \nWatch ye therefore: for ye know not when the master of the house cometh, at even, or at midnight, or at the cockcrowing, or in the morning: \nLest coming suddenly he find you sleeping. \nAnd what I say unto you I say unto all, Watch. \nAfter two days was the feast of the passover, and of unleavened bread: and the chief priests and the scribes sought how they might take him by craft, and put him to death. \nBut they said, Not on the feast day, lest there be an uproar of the people. \nAnd being in Bethany in the house of Simon the leper, as he sat at meat, there came a woman having an alabaster box of ointment of spikenard very precious; and she brake the box, and poured it on his head. \nAnd there were some that had indignation within themselves, and said, Why was this waste of the ointment made? \nFor it might have been sold for more than three hundred pence, and have been given to the poor. And they murmured against her. \nAnd Jesus said, Let her alone; why trouble ye her? she hath wrought a good work on me. \nFor ye have the poor with you always, and whensoever ye will ye may do them good: but me ye have not always. \nShe hath done what she could: she is come aforehand to anoint my body to the burying. \nVerily I say unto you, Wheresoever this gospel shall be preached throughout the whole world, this also that she hath done shall be spoken of for a memorial of her. \nAnd Judas Iscariot, one of the twelve, went unto the chief priests, to betray him unto them. \nAnd when they heard it, they were glad, and promised to give him money. And he sought how he might conveniently betray him. \nAnd the first day of unleavened bread, when they killed the passover, his disciples said unto him, Where wilt thou that we go and prepare that thou mayest eat the passover? \nAnd he sendeth forth two of his disciples, and saith unto them, Go ye into the city, and there shall meet you a man bearing a pitcher of water: follow him. \nAnd wheresoever he shall go in, say ye to the goodman of the house, The Master saith, Where is the guestchamber, where I shall eat the passover with my disciples? \nAnd he will shew you a large upper room furnished and prepared: there make ready for us. \nAnd his disciples went forth, and came into the city, and found as he had said unto them: and they made ready the passover. \nAnd in the evening he cometh with the twelve. \nAnd as they sat and did eat, Jesus said, Verily I say unto you, One of you which eateth with me shall betray me. \nAnd they began to be sorrowful, and to say unto him one by one, Is it I? and another said, Is it I? \nAnd he answered and said unto them, It is one of the twelve, that dippeth with me in the dish. \nThe Son of man indeed goeth, as it is written of him: but woe to that man by whom the Son of man is betrayed! good were it for that man if he had never been born. \nAnd as they did eat, Jesus took bread, and blessed, and brake it, and gave to them, and said, Take, eat: this is my body. \nAnd he took the cup, and when he had given thanks, he gave it to them: and they all drank of it. \nAnd he said unto them, This is my blood of the new testament, which is shed for many. \nVerily I say unto you, I will drink no more of the fruit of the vine, until that day that I drink it new in the kingdom of God. \nAnd when they had sung an hymn, they went out into the mount of Olives. \nAnd Jesus saith unto them, All ye shall be offended because of me this night: for it is written, I will smite the shepherd, and the sheep shall be scattered. \nBut after that I am risen, I will go before you into Galilee. \nBut Peter said unto him, Although all shall be offended, yet will not I. \nAnd Jesus saith unto him, Verily I say unto thee, That this day, even in this night, before the cock crow twice, thou shalt deny me thrice. \nBut he spake the more vehemently, If I should die with thee, I will not deny thee in any wise. Likewise also said they all. \nAnd they came to a place which was named Gethsemane: and he saith to his disciples, Sit ye here, while I shall pray. \nAnd he taketh with him Peter and James and John, and began to be sore amazed, and to be very heavy; \nAnd saith unto them, My soul is exceeding sorrowful unto death: tarry ye here, and watch. \nAnd he went forward a little, and fell on the ground, and prayed that, if it were possible, the hour might pass from him. \nAnd he said, Abba, Father, all things are possible unto thee; take away this cup from me: nevertheless not what I will, but what thou wilt. \nAnd he cometh, and findeth them sleeping, and saith unto Peter, Simon, sleepest thou? couldest not thou watch one hour? \nWatch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak. \nAnd again he went away, and prayed, and spake the same words. \nAnd when he returned, he found them asleep again, (for their eyes were heavy,) neither wist they what to answer him. \nAnd he cometh the third time, and saith unto them, Sleep on now, and take your rest: it is enough, the hour is come; behold, the Son of man is betrayed into the hands of sinners. \nRise up, let us go; lo, he that betrayeth me is at hand. \nAnd immediately, while he yet spake, cometh Judas, one of the twelve, and with him a great multitude with swords and staves, from the chief priests and the scribes and the elders. \nAnd he that betrayed him had given them a token, saying, Whomsoever I shall kiss, that same is he; take him, and lead him away safely. \nAnd as soon as he was come, he goeth straightway to him, and saith, Master, master; and kissed him. \nAnd they laid their hands on him, and took him. \nAnd one of them that stood by drew a sword, and smote a servant of the high priest, and cut off his ear. \nAnd Jesus answered and said unto them, Are ye come out, as against a thief, with swords and with staves to take me? \nI was daily with you in the temple teaching, and ye took me not: but the scriptures must be fulfilled. \nAnd they all forsook him, and fled. \nAnd there followed him a certain young man, having a linen cloth cast about his naked body; and the young men laid hold on him: \nAnd he left the linen cloth, and fled from them naked. \nAnd they led Jesus away to the high priest: and with him were assembled all the chief priests and the elders and the scribes. \nAnd Peter followed him afar off, even into the palace of the high priest: and he sat with the servants, and warmed himself at the fire. \nAnd the chief priests and all the council sought for witness against Jesus to put him to death; and found none. \nFor many bare false witness against him, but their witness agreed not together. \nAnd there arose certain, and bare false witness against him, saying, \nWe heard him say, I will destroy this temple that is made with hands, and within three days I will build another made without hands. \nBut neither so did their witness agree together. \nAnd the high priest stood up in the midst, and asked Jesus, saying, Answerest thou nothing? what is it which these witness against thee? \nBut he held his peace, and answered nothing. Again the high priest asked him, and said unto him, Art thou the Christ, the Son of the Blessed? \nAnd Jesus said, I am: and ye shall see the Son of man sitting on the right hand of power, and coming in the clouds of heaven. \nThen the high priest rent his clothes, and saith, What need we any further witnesses? \nYe have heard the blasphemy: what think ye? And they all condemned him to be guilty of death. \nAnd some began to spit on him, and to cover his face, and to buffet him, and to say unto him, Prophesy: and the servants did strike him with the palms of their hands. \nAnd as Peter was beneath in the palace, there cometh one of the maids of the high priest: \nAnd when she saw Peter warming himself, she looked upon him, and said, And thou also wast with Jesus of Nazareth. \nBut he denied, saying, I know not, neither understand I what thou sayest. And he went out into the porch; and the cock crew. \nAnd a maid saw him again, and began to say to them that stood by, This is one of them. \nAnd he denied it again. And a little after, they that stood by said again to Peter, Surely thou art one of them: for thou art a Galilaean, and thy speech agreeth thereto. \nBut he began to curse and to swear, saying, I know not this man of whom ye speak. \nAnd the second time the cock crew. And Peter called to mind the word that Jesus said unto him, Before the cock crow twice, thou shalt deny me thrice. And when he thought thereon, he wept. \nAnd straightway in the morning the chief priests held a consultation with the elders and scribes and the whole council, and bound Jesus, and carried him away, and delivered him to Pilate. \nAnd Pilate asked him, Art thou the King of the Jews? And he answering said unto them, Thou sayest it. \nAnd the chief priests accused him of many things: but he answered nothing. \nAnd Pilate asked him again, saying, Answerest thou nothing? behold how many things they witness against thee. \nBut Jesus yet answered nothing; so that Pilate marvelled. \nNow at that feast he released unto them one prisoner, whomsoever they desired. \nAnd there was one named Barabbas, which lay bound with them that had made insurrection with him, who had committed murder in the insurrection. \nAnd the multitude crying aloud began to desire him to do as he had ever done unto them. \nBut Pilate answered them, saying, Will ye that I release unto you the King of the Jews? \nFor he knew that the chief priests had delivered him for envy. \nBut the chief priests moved the people, that he should rather release Barabbas unto them. \nAnd Pilate answered and said again unto them, What will ye then that I shall do unto him whom ye call the King of the Jews? \nAnd they cried out again, Crucify him. \nThen Pilate said unto them, Why, what evil hath he done? And they cried out the more exceedingly, Crucify him. \nAnd so Pilate, willing to content the people, released Barabbas unto them, and delivered Jesus, when he had scourged him, to be crucified. \nAnd the soldiers led him away into the hall, called Praetorium; and they call together the whole band. \nAnd they clothed him with purple, and platted a crown of thorns, and put it about his head, \nAnd began to salute him, Hail, King of the Jews! \nAnd they smote him on the head with a reed, and did spit upon him, and bowing their knees worshipped him. \nAnd when they had mocked him, they took off the purple from him, and put his own clothes on him, and led him out to crucify him. \nAnd they compel one Simon a Cyrenian, who passed by, coming out of the country, the father of Alexander and Rufus, to bear his cross. \nAnd they bring him unto the place Golgotha, which is, being interpreted, The place of a skull. \nAnd they gave him to drink wine mingled with myrrh: but he received it not. \nAnd when they had crucified him, they parted his garments, casting lots upon them, what every man should take. \nAnd it was the third hour, and they crucified him. \nAnd the superscription of his accusation was written over, THE KING OF THE JEWS. \nAnd with him they crucify two thieves; the one on his right hand, and the other on his left. \nAnd the scripture was fulfilled, which saith, And he was numbered with the transgressors. \nAnd they that passed by railed on him, wagging their heads, and saying, Ah, thou that destroyest the temple, and buildest it in three days, \nSave thyself, and come down from the cross. \nLikewise also the chief priests mocking said among themselves with the scribes, He saved others; himself he cannot save. \nLet Christ the King of Israel descend now from the cross, that we may see and believe. And they that were crucified with him reviled him. \nAnd when the sixth hour was come, there was darkness over the whole land until the ninth hour. \nAnd at the ninth hour Jesus cried with a loud voice, saying, Eloi, Eloi, lama sabachthani? which is, being interpreted, My God, my God, why hast thou forsaken me? \nAnd some of them that stood by, when they heard it, said, Behold, he calleth Elias. \nAnd one ran and filled a spunge full of vinegar, and put it on a reed, and gave him to drink, saying, Let alone; let us see whether Elias will come to take him down. \nAnd Jesus cried with a loud voice, and gave up the ghost. \nAnd the veil of the temple was rent in twain from the top to the bottom. \nAnd when the centurion, which stood over against him, saw that he so cried out, and gave up the ghost, he said, Truly this man was the Son of God. \nThere were also women looking on afar off: among whom was Mary Magdalene, and Mary the mother of James the less and of Joses, and Salome; \n(Who also, when he was in Galilee, followed him, and ministered unto him;) and many other women which came up with him unto Jerusalem. \nAnd now when the even was come, because it was the preparation, that is, the day before the sabbath, \nJoseph of Arimathaea, an honourable counsellor, which also waited for the kingdom of God, came, and went in boldly unto Pilate, and craved the body of Jesus. \nAnd Pilate marvelled if he were already dead: and calling unto him the centurion, he asked him whether he had been any while dead. \nAnd when he knew it of the centurion, he gave the body to Joseph. \nAnd he bought fine linen, and took him down, and wrapped him in the linen, and laid him in a sepulchre which was hewn out of a rock, and rolled a stone unto the door of the sepulchre. \nAnd Mary Magdalene and Mary the mother of Joses beheld where he was laid. \nAnd when the sabbath was past, Mary Magdalene, and Mary the mother of James, and Salome, had bought sweet spices, that they might come and anoint him. \nAnd very early in the morning the first day of the week, they came unto the sepulchre at the rising of the sun. \nAnd they said among themselves, Who shall roll us away the stone from the door of the sepulchre? \nAnd when they looked, they saw that the stone was rolled away: for it was very great. \nAnd entering into the sepulchre, they saw a young man sitting on the right side, clothed in a long white garment; and they were affrighted. \nAnd he saith unto them, Be not affrighted: Ye seek Jesus of Nazareth, which was crucified: he is risen; he is not here: behold the place where they laid him. \nBut go your way, tell his disciples and Peter that he goeth before you into Galilee: there shall ye see him, as he said unto you. \nAnd they went out quickly, and fled from the sepulchre; for they trembled and were amazed: neither said they any thing to any man; for they were afraid. \nNow when Jesus was risen early the first day of the week, he appeared first to Mary Magdalene, out of whom he had cast seven devils. \nAnd she went and told them that had been with him, as they mourned and wept. \nAnd they, when they had heard that he was alive, and had been seen of her, believed not. \nAfter that he appeared in another form unto two of them, as they walked, and went into the country. \nAnd they went and told it unto the residue: neither believed they them. \nAfterward he appeared unto the eleven as they sat at meat, and upbraided them with their unbelief and hardness of heart, because they believed not them which had seen him after he was risen. \nAnd he said unto them, Go ye into all the world, and preach the gospel to every creature. \nHe that believeth and is baptized shall be saved; but he that believeth not shall be damned. \nAnd these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues; \nThey shall take up serpents; and if they drink any deadly thing, it shall not hurt them; they shall lay hands on the sick, and they shall recover. \nSo then after the Lord had spoken unto them, he was received up into heaven, and sat on the right hand of God. \nAnd they went forth, and preached every where, the Lord working with them, and confirming the word with signs following. Amen. \nForasmuch as many have taken in hand to set forth in order a declaration of those things which are most surely believed among us, \nEven as they delivered them unto us, which from the beginning were eyewitnesses, and ministers of the word; \nIt seemed good to me also, having had perfect understanding of all things from the very first, to write unto thee in order, most excellent Theophilus, \nThat thou mightest know the certainty of those things, wherein thou hast been instructed. \nTHERE was in the days of Herod, the king of Judaea, a certain priest named Zacharias, of the course of Abia: and his wife was of the daughters of Aaron, and her name was Elisabeth. \nAnd they were both righteous before God, walking in all the commandments and ordinances of the Lord blameless. \nAnd they had no child, because that Elisabeth was barren, and they both were now well stricken in years. \nAnd it came to pass, that while he executed the priest's office before God in the order of his course, \nAccording to the custom of the priest's office, his lot was to burn incense when he went into the temple of the Lord. \nAnd the whole multitude of the people were praying without at the time of incense. \nAnd there appeared unto him an angel of the Lord standing on the right side of the altar of incense. \nAnd when Zacharias saw him, he was troubled, and fear fell upon him. \nBut the angel said unto him, Fear not, Zacharias: for thy prayer is heard; and thy wife Elisabeth shall bear thee a son, and thou shalt call his name John. \nAnd thou shalt have joy and gladness; and many shall rejoice at his birth. \nFor he shall be great in the sight of the Lord, and shall drink neither wine nor strong drink; and he shall be filled with the Holy Ghost, even from his mother's womb. \nAnd many of the children of Israel shall he turn to the Lord their God. \nAnd he shall go before him in the spirit and power of Elias, to turn the hearts of the fathers to the children, and the disobedient to the wisdom of the just; to make ready a people prepared for the Lord. \nAnd Zacharias said unto the angel, Whereby shall I know this? for I am an old man, and my wife well stricken in years. \nAnd the angel answering said unto him, I am Gabriel, that stand in the presence of God; and am sent to speak unto thee, and to shew thee these glad tidings. \nAnd, behold, thou shalt be dumb, and not able to speak, until the day that these things shall be performed, because thou believest not my words, which shall be fulfilled in their season. \nAnd the people waited for Zacharias, and marvelled that he tarried so long in the temple. \nAnd when he came out, he could not speak unto them: and they perceived that he had seen a vision in the temple: for he beckoned unto them, and remained speechless. \nAnd it came to pass, that, as soon as the days of his ministration were accomplished, he departed to his own house. \nAnd after those days his wife Elisabeth conceived, and hid herself five months, saying, \nThus hath the Lord dealt with me in the days wherein he looked on me, to take away my reproach among men. \nAnd in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth, \nTo a virgin espoused to a man whose name was Joseph, of the house of David; and the virgin's name was Mary. \nAnd the angel came in unto her, and said, Hail, thou that art highly favoured, the Lord is with thee: blessed art thou among women. \nAnd when she saw him, she was troubled at his saying, and cast in her mind what manner of salutation this should be. \nAnd the angel said unto her, Fear not, Mary: for thou hast found favour with God. \nAnd, behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS. \nHe shall be great, and shall be called the Son of the Highest: and the Lord God shall give unto him the throne of his father David: \nAnd he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end. \nThen said Mary unto the angel, How shall this be, seeing I know not a man? \nAnd the angel answered and said unto her, The Holy Ghost shall come upon thee, and the power of the Highest shall overshadow thee: therefore also that holy thing which shall be born of thee shall be called the Son of God. \nAnd, behold, thy cousin Elisabeth, she hath also conceived a son in her old age: and this is the sixth month with her, who was called barren. \nFor with God nothing shall be impossible. \nAnd Mary said, Behold the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her. \nAnd Mary arose in those days, and went into the hill country with haste, into a city of Juda; \nAnd entered into the house of Zacharias, and saluted Elisabeth. \nAnd it came to pass, that, when Elisabeth heard the salutation of Mary, the babe leaped in her womb; and Elisabeth was filled with the Holy Ghost: \nAnd she spake out with a loud voice, and said, Blessed art thou among women, and blessed is the fruit of thy womb. \nAnd whence is this to me, that the mother of my Lord should come to me? \nFor, lo, as soon as the voice of thy salutation sounded in mine ears, the babe leaped in my womb for joy. \nAnd blessed is she that believed: for there shall be a performance of those things which were told her from the Lord. \nAnd Mary said, My soul doth magnify the Lord, \nAnd my spirit hath rejoiced in God my Saviour. \nFor he hath regarded the low estate of his handmaiden: for, behold, from henceforth all generations shall call me blessed. \nFor he that is mighty hath done to me great things; and holy is his name. \nAnd his mercy is on them that fear him from generation to generation. \nHe hath shewed strength with his arm; he hath scattered the proud in the imagination of their hearts. \nHe hath put down the mighty from their seats, and exalted them of low degree. \nHe hath filled the hungry with good things; and the rich he hath sent empty away. \nHe hath holpen his servant Israel, in remembrance of his mercy; \nAs he spake to our fathers, to Abraham, and to his seed for ever. \nAnd Mary abode with her about three months, and returned to her own house. \nNow Elisabeth's full time came that she should be delivered; and she brought forth a son. \nAnd her neighbours and her cousins heard how the Lord had shewed great mercy upon her; and they rejoiced with her. \nAnd it came to pass, that on the eighth day they came to circumcise the child; and they called him Zacharias, after the name of his father. \nAnd his mother answered and said, Not so; but he shall be called John. \nAnd they said unto her, There is none of thy kindred that is called by this name. \nAnd they made signs to his father, how he would have him called. \nAnd he asked for a writing table, and wrote, saying, His name is John. And they marvelled all. \nAnd his mouth was opened immediately, and his tongue loosed, and he spake, and praised God. \nAnd fear came on all that dwelt round about them: and all these sayings were noised abroad throughout all the hill country of Judaea. \nAnd all they that heard them laid them up in their hearts, saying, What manner of child shall this be! And the hand of the Lord was with him. \nAnd his father Zacharias was filled with the Holy Ghost, and prophesied, saying, \nBlessed be the Lord God of Israel; for he hath visited and redeemed his people, \nAnd hath raised up an horn of salvation for us in the house of his servant David; \nAs he spake by the mouth of his holy prophets, which have been since the world began: \nThat we should be saved from our enemies, and from the hand of all that hate us; \nTo perform the mercy promised to our fathers, and to remember his holy covenant; \nThe oath which he sware to our father Abraham, \nThat he would grant unto us, that we being delivered out of the hand of our enemies might serve him without fear, \nIn holiness and righteousness before him, all the days of our life. \nAnd thou, child, shalt be called the prophet of the Highest: for thou shalt go before the face of the Lord to prepare his ways; \nTo give knowledge of salvation unto his people by the remission of their sins, \nThrough the tender mercy of our God; whereby the dayspring from on high hath visited us, \nTo give light to them that sit in darkness and in the shadow of death, to guide our feet into the way of peace. \nAnd the child grew, and waxed strong in spirit, and was in the deserts till the day of his shewing unto Israel. \nAnd it came to pass in those days, that there went out a decree from Caesar Augustus that all the world should be taxed. \n(And this taxing was first made when Cyrenius was governor of Syria.) \nAnd all went to be taxed, every one into his own city. \nAnd Joseph also went up from Galilee, out of the city of Nazareth, into Judaea, unto the city of David, which is called Bethlehem; (because he was of the house and lineage of David:) \nTo be taxed with Mary his espoused wife, being great with child. \nAnd so it was, that, while they were there, the days were accomplished that she should be delivered. \nAnd she brought forth her firstborn son, and wrapped him in swaddling clothes, and laid him in a manger; because there was no room for them in the inn. \nAnd there were in the same country shepherds abiding in the field, keeping watch over their flock by night. \nAnd, lo, the angel of the Lord came upon them, and the glory of the Lord shone round about them: and they were sore afraid. \nAnd the angel said unto them, Fear not: for, behold, I bring you good tidings of great joy, which shall be to all people. \nFor unto you is born this day in the city of David a Saviour, which is Christ the Lord. \nAnd this shall be a sign unto you; Ye shall find the babe wrapped in swaddling clothes, lying in a manger. \nAnd suddenly there was with the angel a multitude of the heavenly host praising God, and saying, \nGlory to God in the highest, and on earth peace, good will toward men. \nAnd it came to pass, as the angels were gone away from them into heaven, the shepherds said one to another, Let us now go even unto Bethlehem, and see this thing which is come to pass, which the Lord hath made known unto us. \nAnd they came with haste, and found Mary, and Joseph, and the babe lying in a manger. \nAnd when they had seen it, they made known abroad the saying which was told them concerning this child. \nAnd all they that heard it wondered at those things which were told them by the shepherds. \nBut Mary kept all these things, and pondered them in her heart. \nAnd the shepherds returned, glorifying and praising God for all the things that they had heard and seen, as it was told unto them. \nAnd when eight days were accomplished for the circumcising of the child, his name was called JESUS, which was so named of the angel before he was conceived in the womb. \nAnd when the days of her purification according to the law of Moses were accomplished, they brought him to Jerusalem, to present him to the Lord; \n(As it is written in the law of the LORD, Every male that openeth the womb shall be called holy to the Lord;) \nAnd to offer a sacrifice according to that which is said in the law of the Lord, A pair of turtledoves, or two young pigeons. \nAnd, behold, there was a man in Jerusalem, whose name was Simeon; and the same man was just and devout, waiting for the consolation of Israel: and the Holy Ghost was upon him. \nAnd it was revealed unto him by the Holy Ghost, that he should not see death, before he had seen the Lord's Christ. \nAnd he came by the Spirit into the temple: and when the parents brought in the child Jesus, to do for him after the custom of the law, \nThen took he him up in his arms, and blessed God, and said, \nLord, now lettest thou thy servant depart in peace, according to thy word: \nFor mine eyes have seen thy salvation, \nWhich thou hast prepared before the face of all people; \nA light to lighten the Gentiles, and the glory of thy people Israel. \nAnd Joseph and his mother marvelled at those things which were spoken of him. \nAnd Simeon blessed them, and said unto Mary his mother, Behold, this child is set for the fall and rising again of many in Israel; and for a sign which shall be spoken against; \n(Yea, a sword shall pierce through thy own soul also,) that the thoughts of many hearts may be revealed. \nAnd there was one Anna, a prophetess, the daughter of Phanuel, of the tribe of Aser: she was of a great age, and had lived with an husband seven years from her virginity; \nAnd she was a widow of about fourscore and four years, which departed not from the temple, but served God with fastings and prayers night and day. \nAnd she coming in that instant gave thanks likewise unto the Lord, and spake of him to all them that looked for redemption in Jerusalem. \nAnd when they had performed all things according to the law of the Lord, they returned into Galilee, to their own city Nazareth. \nAnd the child grew, and waxed strong in spirit, filled with wisdom: and the grace of God was upon him. \nNow his parents went to Jerusalem every year at the feast of the passover. \nAnd when he was twelve years old, they went up to Jerusalem after the custom of the feast. \nAnd when they had fulfilled the days, as they returned, the child Jesus tarried behind in Jerusalem; and Joseph and his mother knew not of it. \nBut they, supposing him to have been in the company, went a day's journey; and they sought him among their kinsfolk and acquaintance. \nAnd when they found him not, they turned back again to Jerusalem, seeking him. \nAnd it came to pass, that after three days they found him in the temple, sitting in the midst of the doctors, both hearing them, and asking them questions. \nAnd all that heard him were astonished at his understanding and answers. \nAnd when they saw him, they were amazed: and his mother said unto him, Son, why hast thou thus dealt with us? behold, thy father and I have sought thee sorrowing. \nAnd he said unto them, How is it that ye sought me? wist ye not that I must be about my Father's business? \nAnd they understood not the saying which he spake unto them. \nAnd he went down with them, and came to Nazareth, and was subject unto them: but his mother kept all these sayings in her heart. \nAnd Jesus increased in wisdom and stature, and in favour with God and man. \nNow in the fifteenth year of the reign of Tiberius Caesar, Pontius Pilate being governor of Judaea, and Herod being tetrarch of Galilee, and his brother Philip tetrarch of Ituraea and of the region of Trachonitis, and Lysanias the tetrarch of Abilene, \nAnnas and Caiaphas being the high priests, the word of God came unto John the son of Zacharias in the wilderness. \nAnd he came into all the country about Jordan, preaching the baptism of repentance for the remission of sins; \nAs it is written in the book of the words of Esaias the prophet, saying, The voice of one crying in the wilderness, Prepare ye the way of the Lord, make his paths straight. \nEvery valley shall be filled, and every mountain and hill shall be brought low; and the crooked shall be made straight, and the rough ways shall be made smooth; \nAnd all flesh shall see the salvation of God. \nThen said he to the multitude that came forth to be baptized of him, O generation of vipers, who hath warned you to flee from the wrath to come? \nBring forth therefore fruits worthy of repentance, and begin not to say within yourselves, We have Abraham to our father: for I say unto you, That God is able of these stones to raise up children unto Abraham. \nAnd now also the axe is laid unto the root of the trees: every tree therefore which bringeth not forth good fruit is hewn down, and cast into the fire. \nAnd the people asked him, saying, What shall we do then? \nHe answereth and saith unto them, He that hath two coats, let him impart to him that hath none; and he that hath meat, let him do likewise. \nThen came also publicans to be baptized, and said unto him, Master, what shall we do? \nAnd he said unto them, Exact no more than that which is appointed you. \nAnd the soldiers likewise demanded of him, saying, And what shall we do? And he said unto them, Do violence to no man, neither accuse any falsely; and be content with your wages. \nAnd as the people were in expectation, and all men mused in their hearts of John, whether he were the Christ, or not; \nJohn answered, saying unto them all, I indeed baptize you with water; but one mightier than I cometh, the latchet of whose shoes I am not worthy to unloose: he shall baptize you with the Holy Ghost and with fire: \nWhose fan is in his hand, and he will throughly purge his floor, and will gather the wheat into his garner; but the chaff he will burn with fire unquenchable. \nAnd many other things in his exhortation preached he unto the people. \nBut Herod the tetrarch, being reproved by him for Herodias his brother Philip's wife, and for all the evils which Herod had done, \nAdded yet this above all, that he shut up John in prison. \nNow when all the people were baptized, it came to pass, that Jesus also being baptized, and praying, the heaven was opened, \nAnd the Holy Ghost descended in a bodily shape like a dove upon him, and a voice came from heaven, which said, Thou art my beloved Son; in thee I am well pleased. \nAnd Jesus himself began to be about thirty years of age, being (as was supposed) the son of Joseph, which was the son of Heli, \nWhich was the son of Matthat, which was the son of Levi, which was the son of Melchi, which was the son of Janna, which was the son of Joseph, \nWhich was the son of Mattathias, which was the son of Amos, which was the son of Naum, which was the son of Esli, which was the son of Nagge, \nWhich was the son of Maath, which was the son of Mattathias, which was the son of Semei, which was the son of Joseph, which was the son of Juda, \nWhich was the son of Joanna, which was the son of Rhesa, which was the son of Zorobabel, which was the son of Salathiel, which was the son of Neri, \nWhich was the son of Melchi, which was the son of Addi, which was the son of Cosam, which was the son of Elmodam, which was the son of Er, \nWhich was the son of Jose, which was the son of Eliezer, which was the son of Jorim, which was the son of Matthat, which was the son of Levi, \nWhich was the son of Simeon, which was the son of Juda, which was the son of Joseph, which was the son of Jonan, which was the son of Eliakim, \nWhich was the son of Melea, which was the son of Menan, which was the son of Mattatha, which was the son of Nathan, which was the son of David, \nWhich was the son of Jesse, which was the son of Obed, which was the son of Booz, which was the son of Salmon, which was the son of Naasson, \nWhich was the son of Aminadab, which was the son of Aram, which was the son of Esrom, which was the son of Phares, which was the son of Juda, \nWhich was the son of Jacob, which was the son of Isaac, which was the son of Abraham, which was the son of Thara, which was the son of Nachor, \nWhich was the son of Saruch, which was the son of Ragau, which was the son of Phalec, which was the son of Heber, which was the son of Sala, \nWhich was the son of Cainan, which was the son of Arphaxad, which was the son of Sem, which was the son of Noe, which was the son of Lamech, \nWhich was the son of Mathusala, which was the son of Enoch, which was the son of Jared, which was the son of Maleleel, which was the son of Cainan, \nWhich was the son of Enos, which was the son of Seth, which was the son of Adam, which was the son of God. \nAnd Jesus being full of the Holy Ghost returned from Jordan, and was led by the Spirit into the wilderness, \nBeing forty days tempted of the devil. And in those days he did eat nothing: and when they were ended, he afterward hungered. \nAnd the devil said unto him, If thou be the Son of God, command this stone that it be made bread. \nAnd Jesus answered him, saying, It is written, That man shall not live by bread alone, but by every word of God. \nAnd the devil, taking him up into an high mountain, shewed unto him all the kingdoms of the world in a moment of time. \nAnd the devil said unto him, All this power will I give thee, and the glory of them: for that is delivered unto me; and to whomsoever I will I give it. \nIf thou therefore wilt worship me, all shall be thine. \nAnd Jesus answered and said unto him, Get thee behind me, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve. \nAnd he brought him to Jerusalem, and set him on a pinnacle of the temple, and said unto him, If thou be the Son of God, cast thyself down from hence: \nFor it is written, He shall give his angels charge over thee, to keep thee: \nAnd in their hands they shall bear thee up, lest at any time thou dash thy foot against a stone. \nAnd Jesus answering said unto him, It is said, Thou shalt not tempt the Lord thy God. \nAnd when the devil had ended all the temptation, he departed from him for a season. \nAnd Jesus returned in the power of the Spirit into Galilee: and there went out a fame of him through all the region round about. \nAnd he taught in their synagogues, being glorified of all. \nAnd he came to Nazareth, where he had been brought up: and, as his custom was, he went into the synagogue on the sabbath day, and stood up for to read. \nAnd there was delivered unto him the book of the prophet Esaias. And when he had opened the book, he found the place where it was written, \nThe Spirit of the Lord is upon me, because he hath anointed me to preach the gospel to the poor; he hath sent me to heal the brokenhearted, to preach deliverance to the captives, and recovering of sight to the blind, to set at liberty them that are bruised, \nTo preach the acceptable year of the Lord. \nAnd he closed the book, and he gave it again to the minister, and sat down. And the eyes of all them that were in the synagogue were fastened on him. \nAnd he began to say unto them, This day is this scripture fulfilled in your ears. \nAnd all bare him witness, and wondered at the gracious words which proceeded out of his mouth. And they said, Is not this Joseph's son? \nAnd he said unto them, Ye will surely say unto me this proverb, Physician, heal thyself: whatsoever we have heard done in Capernaum, do also here in thy country. \nAnd he said, Verily I say unto you, No prophet is accepted in his own country. \nBut I tell you of a truth, many widows were in Israel in the days of Elias, when the heaven was shut up three years and six months, when great famine was throughout all the land; \nBut unto none of them was Elias sent, save unto Sarepta, a city of Sidon, unto a woman that was a widow. \nAnd many lepers were in Israel in the time of Eliseus the prophet; and none of them was cleansed, saving Naaman the Syrian. \nAnd all they in the synagogue, when they heard these things, were filled with wrath, \nAnd rose up, and thrust him out of the city, and led him unto the brow of the hill whereon their city was built, that they might cast him down headlong. \nBut he passing through the midst of them went his way, \nAnd came down to Capernaum, a city of Galilee, and taught them on the sabbath days. \nAnd they were astonished at his doctrine: for his word was with power. \nAnd in the synagogue there was a man, which had a spirit of an unclean devil, and cried out with a loud voice, \nSaying, Let us alone; what have we to do with thee, thou Jesus of Nazareth? art thou come to destroy us? I know thee who thou art; the Holy One of God. \nAnd Jesus rebuked him, saying, Hold thy peace, and come out of him. And when the devil had thrown him in the midst, he came out of him, and hurt him not. \nAnd they were all amazed, and spake among themselves, saying, What a word is this! for with authority and power he commandeth the unclean spirits, and they come out. \nAnd the fame of him went out into every place of the country round about. \nAnd he arose out of the synagogue, and entered into Simon's house. And Simon's wife's mother was taken with a great fever; and they besought him for her. \nAnd he stood over her, and rebuked the fever; and it left her: and immediately she arose and ministered unto them. \nNow when the sun was setting, all they that had any sick with divers diseases brought them unto him; and he laid his hands on every one of them, and healed them. \nAnd devils also came out of many, crying out, and saying, Thou art Christ the Son of God. And he rebuking them suffered them not to speak: for they knew that he was Christ. \nAnd when it was day, he departed and went into a desert place: and the people sought him, and came unto him, and stayed him, that he should not depart from them. \nAnd he said unto them, I must preach the kingdom of God to other cities also: for therefore am I sent. \nAnd he preached in the synagogues of Galilee. \nAnd it came to pass, that, as the people pressed upon him to hear the word of God, he stood by the lake of Gennesaret, \nAnd saw two ships standing by the lake: but the fishermen were gone out of them, and were washing their nets. \nAnd he entered into one of the ships, which was Simon's, and prayed him that he would thrust out a little from the land. And he sat down, and taught the people out of the ship. \nNow when he had left speaking, he said unto Simon, Launch out into the deep, and let down your nets for a draught. \nAnd Simon answering said unto him, Master, we have toiled all the night, and have taken nothing: nevertheless at thy word I will let down the net. \nAnd when they had this done, they inclosed a great multitude of fishes: and their net brake. \nAnd they beckoned unto their partners, which were in the other ship, that they should come and help them. And they came, and filled both the ships, so that they began to sink. \nWhen Simon Peter saw it, he fell down at Jesus' knees, saying, Depart from me; for I am a sinful man, O Lord. \nFor he was astonished, and all that were with him, at the draught of the fishes which they had taken: \nAnd so was also James, and John, the sons of Zebedee, which were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men. \nAnd when they had brought their ships to land, they forsook all, and followed him. \nAnd it came to pass, when he was in a certain city, behold a man full of leprosy: who seeing Jesus fell on his face, and besought him, saying, Lord, if thou wilt, thou canst make me clean. \nAnd he put forth his hand, and touched him, saying, I will: be thou clean. And immediately the leprosy departed from him. \nAnd he charged him to tell no man: but go, and shew thyself to the priest, and offer for thy cleansing, according as Moses commanded, for a testimony unto them. \nBut so much the more went there a fame abroad of him: and great multitudes came together to hear, and to be healed by him of their infirmities. \nAnd he withdrew himself into the wilderness, and prayed. \nAnd it came to pass on a certain day, as he was teaching, that there were Pharisees and doctors of the law sitting by, which were come out of every town of Galilee, and Judaea, and Jerusalem: and the power of the Lord was present to heal them. \nAnd, behold, men brought in a bed a man which was taken with a palsy: and they sought means to bring him in, and to lay him before him. \nAnd when they could not find by what way they might bring him in because of the multitude, they went upon the housetop, and let him down through the tiling with his couch into the midst before Jesus. \nAnd when he saw their faith, he said unto him, Man, thy sins are forgiven thee. \nAnd the scribes and the Pharisees began to reason, saying, Who is this which speaketh blasphemies? Who can forgive sins, but God alone? \nBut when Jesus perceived their thoughts, he answering said unto them, What reason ye in your hearts? \nWhether is easier, to say, Thy sins be forgiven thee; or to say, Rise up and walk? \nBut that ye may know that the Son of man hath power upon earth to forgive sins, (he said unto the sick of the palsy,) I say unto thee, Arise, and take up thy couch, and go into thine house. \nAnd immediately he rose up before them, and took up that whereon he lay, and departed to his own house, glorifying God. \nAnd they were all amazed, and they glorified God, and were filled with fear, saying, We have seen strange things to day. \nAnd after these things he went forth, and saw a publican, named Levi, sitting at the receipt of custom: and he said unto him, Follow me. \nAnd he left all, rose up, and followed him. \nAnd Levi made him a great feast in his own house: and there was a great company of publicans and of others that sat down with them. \nBut their scribes and Pharisees murmured against his disciples, saying, Why do ye eat and drink with publicans and sinners? \nAnd Jesus answering said unto them, They that are whole need not a physician; but they that are sick. \nI came not to call the righteous, but sinners to repentance. \nAnd they said unto him, Why do the disciples of John fast often, and make prayers, and likewise the disciples of the Pharisees; but thine eat and drink? \nAnd he said unto them, Can ye make the children of the bridechamber fast, while the bridegroom is with them? \nBut the days will come, when the bridegroom shall be taken away from them, and then shall they fast in those days. \nAnd he spake also a parable unto them; No man putteth a piece of a new garment upon an old; if otherwise, then both the new maketh a rent, and the piece that was taken out of the new agreeth not with the old. \nAnd no man putteth new wine into old bottles; else the new wine will burst the bottles, and be spilled, and the bottles shall perish. \nBut new wine must be put into new bottles; and both are preserved. \nNo man also having drunk old wine straightway desireth new: for he saith, The old is better. \nAnd it came to pass on the second sabbath after the first, that he went through the corn fields; and his disciples plucked the ears of corn, and did eat, rubbing them in their hands. \nAnd certain of the Pharisees said unto them, Why do ye that which is not lawful to do on the sabbath days? \nAnd Jesus answering them said, Have ye not read so much as this, what David did, when himself was an hungred, and they which were with him; \nHow he went into the house of God, and did take and eat the shewbread, and gave also to them that were with him; which it is not lawful to eat but for the priests alone? \nAnd he said unto them, That the Son of man is Lord also of the sabbath. \nAnd it came to pass also on another sabbath, that he entered into the synagogue and taught: and there was a man whose right hand was withered. \nAnd the scribes and Pharisees watched him, whether he would heal on the sabbath day; that they might find an accusation against him. \nBut he knew their thoughts, and said to the man which had the withered hand, Rise up, and stand forth in the midst. And he arose and stood forth. \nThen said Jesus unto them, I will ask you one thing; Is it lawful on the sabbath days to do good, or to do evil? to save life, or to destroy it? \nAnd looking round about upon them all, he said unto the man, Stretch forth thy hand. And he did so: and his hand was restored whole as the other. \nAnd they were filled with madness; and communed one with another what they might do to Jesus. \nAnd it came to pass in those days, that he went out into a mountain to pray, and continued all night in prayer to God. \nAnd when it was day, he called unto him his disciples: and of them he chose twelve, whom also he named apostles; \nSimon, (whom he also named Peter,) and Andrew his brother, James and John, Philip and Bartholomew, \nMatthew and Thomas, James the son of Alphaeus, and Simon called Zelotes, \nAnd Judas the brother of James, and Judas Iscariot, which also was the traitor. \nAnd he came down with them, and stood in the plain, and the company of his disciples, and a great multitude of people out of all Judaea and Jerusalem, and from the sea coast of Tyre and Sidon, which came to hear him, and to be healed of their diseases; \nAnd they that were vexed with unclean spirits: and they were healed. \nAnd the whole multitude sought to touch him: for there went virtue out of him, and healed them all. \nAnd he lifted up his eyes on his disciples, and said, Blessed be ye poor: for yours is the kingdom of God. \nBlessed are ye that hunger now: for ye shall be filled. Blessed are ye that weep now: for ye shall laugh. \nBlessed are ye, when men shall hate you, and when they shall separate you from their company, and shall reproach you, and cast out your name as evil, for the Son of man's sake. \nRejoice ye in that day, and leap for joy: for, behold, your reward is great in heaven: for in the like manner did their fathers unto the prophets. \nBut woe unto you that are rich! for ye have received your consolation. \nWoe unto you that are full! for ye shall hunger. Woe unto you that laugh now! for ye shall mourn and weep. \nWoe unto you, when all men shall speak well of you! for so did their fathers to the false prophets. \nBut I say unto you which hear, Love your enemies, do good to them which hate you, \nBless them that curse you, and pray for them which despitefully use you. \nAnd unto him that smiteth thee on the one cheek offer also the other; and him that taketh away thy cloak forbid not to take thy coat also. \nGive to every man that asketh of thee; and of him that taketh away thy goods ask them not again. \nAnd as ye would that men should do to you, do ye also to them likewise. \nFor if ye love them which love you, what thank have ye? for sinners also love those that love them. \nAnd if ye do good to them which do good to you, what thank have ye? for sinners also do even the same. \nAnd if ye lend to them of whom ye hope to receive, what thank have ye? for sinners also lend to sinners, to receive as much again. \nBut love ye your enemies, and do good, and lend, hoping for nothing again; and your reward shall be great, and ye shall be the children of the Highest: for he is kind unto the unthankful and to the evil. \nBe ye therefore merciful, as your Father also is merciful. \nJudge not, and ye shall not be judged: condemn not, and ye shall not be condemned: forgive, and ye shall be forgiven: \nGive, and it shall be given unto you; good measure, pressed down, and shaken together, and running over, shall men give into your bosom. For with the same measure that ye mete withal it shall be measured to you again. \nAnd he spake a parable unto them, Can the blind lead the blind? shall they not both fall into the ditch? \nThe disciple is not above his master: but every one that is perfect shall be as his master. \nAnd why beholdest thou the mote that is in thy brother's eye, but perceivest not the beam that is in thine own eye? \nEither how canst thou say to thy brother, Brother, let me pull out the mote that is in thine eye, when thou thyself beholdest not the beam that is in thine own eye? Thou hypocrite, cast out first the beam out of thine own eye, and then shalt thou see clearly to pull out the mote that is in thy brother's eye. \nFor a good tree bringeth not forth corrupt fruit; neither doth a corrupt tree bring forth good fruit. \nFor every tree is known by his own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes. \nA good man out of the good treasure of his heart bringeth forth that which is good; and an evil man out of the evil treasure of his heart bringeth forth that which is evil: for of the abundance of the heart his mouth speaketh. \nAnd why call ye me, Lord, Lord, and do not the things which I say? \nWhosoever cometh to me, and heareth my sayings, and doeth them, I will shew you to whom he is like: \nHe is like a man which built an house, and digged deep, and laid the foundation on a rock: and when the flood arose, the stream beat vehemently upon that house, and could not shake it: for it was founded upon a rock. \nBut he that heareth, and doeth not, is like a man that without a foundation built an house upon the earth; against which the stream did beat vehemently, and immediately it fell; and the ruin of that house was great. \nNow when he had ended all his sayings in the audience of the people, he entered into Capernaum. \nAnd a certain centurion's servant, who was dear unto him, was sick, and ready to die. \nAnd when he heard of Jesus, he sent unto him the elders of the Jews, beseeching him that he would come and heal his servant. \nAnd when they came to Jesus, they besought him instantly, saying, That he was worthy for whom he should do this: \nFor he loveth our nation, and he hath built us a synagogue. \nThen Jesus went with them. And when he was now not far from the house, the centurion sent friends to him, saying unto him, Lord, trouble not thyself: for I am not worthy that thou shouldest enter under my roof: \nWherefore neither thought I myself worthy to come unto thee: but say in a word, and my servant shall be healed. \nFor I also am a man set under authority, having under me soldiers, and I say unto one, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it. \nWhen Jesus heard these things, he marvelled at him, and turned him about, and said unto the people that followed him, I say unto you, I have not found so great faith, no, not in Israel. \nAnd they that were sent, returning to the house, found the servant whole that had been sick. \nAnd it came to pass the day after, that he went into a city called Nain; and many of his disciples went with him, and much people. \nNow when he came nigh to the gate of the city, behold, there was a dead man carried out, the only son of his mother, and she was a widow: and much people of the city was with her. \nAnd when the Lord saw her, he had compassion on her, and said unto her, Weep not. \nAnd he came and touched the bier: and they that bare him stood still. And he said, Young man, I say unto thee, Arise. \nAnd he that was dead sat up, and began to speak. And he delivered him to his mother. \nAnd there came a fear on all: and they glorified God, saying, That a great prophet is risen up among us; and, That God hath visited his people. \nAnd this rumour of him went forth throughout all Judaea, and throughout all the region round about. \nAnd the disciples of John shewed him of all these things. \nAnd John calling unto him two of his disciples sent them to Jesus, saying, Art thou he that should come? or look we for another? \nWhen the men were come unto him, they said, John Baptist hath sent us unto thee, saying, Art thou he that should come? or look we for another? \nAnd in that same hour he cured many of their infirmities and plagues, and of evil spirits; and unto many that were blind he gave sight. \nThen Jesus answering said unto them, Go your way, and tell John what things ye have seen and heard; how that the blind see, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised, to the poor the gospel is preached. \nAnd blessed is he, whosoever shall not be offended in me. \nAnd when the messengers of John were departed, he began to speak unto the people concerning John, What went ye out into the wilderness for to see? A reed shaken with the wind? \nBut what went ye out for to see? A man clothed in soft raiment? Behold, they which are gorgeously apparelled, and live delicately, are in kings' courts. \nBut what went ye out for to see? A prophet? Yea, I say unto you, and much more than a prophet. \nThis is he, of whom it is written, Behold, I send my messenger before thy face, which shall prepare thy way before thee. \nFor I say unto you, Among those that are born of women there is not a greater prophet than John the Baptist: but he that is least in the kingdom of God is greater than he. \nAnd all the people that heard him, and the publicans, justified God, being baptized with the baptism of John. \nBut the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him. \nAnd the Lord said, Whereunto then shall I liken the men of this generation? and to what are they like? \nThey are like unto children sitting in the marketplace, and calling one to another, and saying, We have piped unto you, and ye have not danced; we have mourned to you, and ye have not wept. \nFor John the Baptist came neither eating bread nor drinking wine; and ye say, He hath a devil. \nThe Son of man is come eating and drinking; and ye say, Behold a gluttonous man, and a winebibber, a friend of publicans and sinners! \nBut wisdom is justified of all her children. \nAnd one of the Pharisees desired him that he would eat with him. And he went into the Pharisee's house, and sat down to meat. \nAnd, behold, a woman in the city, which was a sinner, when she knew that Jesus sat at meat in the Pharisee's house, brought an alabaster box of ointment, \nAnd stood at his feet behind him weeping, and began to wash his feet with tears, and did wipe them with the hairs of her head, and kissed his feet, and anointed them with the ointment. \nNow when the Pharisee which had bidden him saw it, he spake within himself, saying, This man, if he were a prophet, would have known who and what manner of woman this is that toucheth him: for she is a sinner. \nAnd Jesus answering said unto him, Simon, I have somewhat to say unto thee. And he saith, Master, say on. \nThere was a certain creditor which had two debtors: the one owed five hundred pence, and the other fifty. \nAnd when they had nothing to pay, he frankly forgave them both. Tell me therefore, which of them will love him most? \nSimon answered and said, I suppose that he, to whom he forgave most. And he said unto him, Thou hast rightly judged. \nAnd he turned to the woman, and said unto Simon, Seest thou this woman? I entered into thine house, thou gavest me no water for my feet: but she hath washed my feet with tears, and wiped them with the hairs of her head. \nThou gavest me no kiss: but this woman since the time I came in hath not ceased to kiss my feet. \nMy head with oil thou didst not anoint: but this woman hath anointed my feet with ointment. \nWherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little. \nAnd he said unto her, Thy sins are forgiven. \nAnd they that sat at meat with him began to say within themselves, Who is this that forgiveth sins also? \nAnd he said to the woman, Thy faith hath saved thee; go in peace. \nAnd it came to pass afterward, that he went throughout every city and village, preaching and shewing the glad tidings of the kingdom of God: and the twelve were with him, \nAnd certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils, \nAnd Joanna the wife of Chuza Herod's steward, and Susanna, and many others, which ministered unto him of their substance. \nAnd when much people were gathered together, and were come to him out of every city, he spake by a parable: \nA sower went out to sow his seed: and as he sowed, some fell by the way side; and it was trodden down, and the fowls of the air devoured it. \nAnd some fell upon a rock; and as soon as it was sprung up, it withered away, because it lacked moisture. \nAnd some fell among thorns; and the thorns sprang up with it, and choked it. \nAnd other fell on good ground, and sprang up, and bare fruit an hundredfold. And when he had said these things, he cried, He that hath ears to hear, let him hear. \nAnd his disciples asked him, saying, What might this parable be? \nAnd he said, Unto you it is given to know the mysteries of the kingdom of God: but to others in parables; that seeing they might not see, and hearing they might not understand. \nNow the parable is this: The seed is the word of God. \nThose by the way side are they that hear; then cometh the devil, and taketh away the word out of their hearts, lest they should believe and be saved. \nThey on the rock are they, which, when they hear, receive the word with joy; and these have no root, which for a while believe, and in time of temptation fall away. \nAnd that which fell among thorns are they, which, when they have heard, go forth, and are choked with cares and riches and pleasures of this life, and bring no fruit to perfection. \nBut that on the good ground are they, which in an honest and good heart, having heard the word, keep it, and bring forth fruit with patience. \nNo man, when he hath lighted a candle, covereth it with a vessel, or putteth it under a bed; but setteth it on a candlestick, that they which enter in may see the light. \nFor nothing is secret, that shall not be made manifest; neither any thing hid, that shall not be known and come abroad. \nTake heed therefore how ye hear: for whosoever hath, to him shall be given; and whosoever hath not, from him shall be taken even that which he seemeth to have. \nThen came to him his mother and his brethren, and could not come at him for the press. \nAnd it was told him by certain which said, Thy mother and thy brethren stand without, desiring to see thee. \nAnd he answered and said unto them, My mother and my brethren are these which hear the word of God, and do it. \nNow it came to pass on a certain day, that he went into a ship with his disciples: and he said unto them, Let us go over unto the other side of the lake. And they launched forth. \nBut as they sailed he fell asleep: and there came down a storm of wind on the lake; and they were filled with water, and were in jeopardy. \nAnd they came to him, and awoke him, saying, Master, master, we perish. Then he arose, and rebuked the wind and the raging of the water: and they ceased, and there was a calm. \nAnd he said unto them, Where is your faith? And they being afraid wondered, saying one to another, What manner of man is this! for he commandeth even the winds and water, and they obey him. \nAnd they arrived at the country of the Gadarenes, which is over against Galilee. \nAnd when he went forth to land, there met him out of the city a certain man, which had devils long time, and ware no clothes, neither abode in any house, but in the tombs. \nWhen he saw Jesus, he cried out, and fell down before him, and with a loud voice said, What have I to do with thee, Jesus, thou Son of God most high? I beseech thee, torment me not. \n(For he had commanded the unclean spirit to come out of the man. For oftentimes it had caught him: and he was kept bound with chains and in fetters; and he brake the bands, and was driven of the devil into the wilderness.) \nAnd Jesus asked him, saying, What is thy name? And he said, Legion: because many devils were entered into him. \nAnd they besought him that he would not command them to go out into the deep. \nAnd there was there an herd of many swine feeding on the mountain: and they besought him that he would suffer them to enter into them. And he suffered them. \nThen went the devils out of the man, and entered into the swine: and the herd ran violently down a steep place into the lake, and were choked. \nWhen they that fed them saw what was done, they fled, and went and told it in the city and in the country. \nThen they went out to see what was done; and came to Jesus, and found the man, out of whom the devils were departed, sitting at the feet of Jesus, clothed, and in his right mind: and they were afraid. \nThey also which saw it told them by what means he that was possessed of the devils was healed. \nThen the whole multitude of the country of the Gadarenes round about besought him to depart from them; for they were taken with great fear: and he went up into the ship, and returned back again. \nNow the man out of whom the devils were departed besought him that he might be with him: but Jesus sent him away, saying, \nReturn to thine own house, and shew how great things God hath done unto thee. And he went his way, and published throughout the whole city how great things Jesus had done unto him. \nAnd it came to pass, that, when Jesus was returned, the people gladly received him: for they were all waiting for him. \nAnd, behold, there came a man named Jairus, and he was a ruler of the synagogue: and he fell down at Jesus' feet, and besought him that he would come into his house: \nFor he had one only daughter, about twelve years of age, and she lay a dying. But as he went the people thronged him. \nAnd a woman having an issue of blood twelve years, which had spent all her living upon physicians, neither could be healed of any, \nCame behind him, and touched the border of his garment: and immediately her issue of blood stanched. \nAnd Jesus said, Who touched me? When all denied, Peter and they that were with him said, Master, the multitude throng thee and press thee, and sayest thou, Who touched me? \nAnd Jesus said, Somebody hath touched me: for I perceive that virtue is gone out of me. \nAnd when the woman saw that she was not hid, she came trembling, and falling down before him, she declared unto him before all the people for what cause she had touched him, and how she was healed immediately. \nAnd he said unto her, Daughter, be of good comfort: thy faith hath made thee whole; go in peace. \nWhile he yet spake, there cometh one from the ruler of the synagogue's house, saying to him, Thy daughter is dead; trouble not the Master. \nBut when Jesus heard it, he answered him, saying, Fear not: believe only, and she shall be made whole. \nAnd when he came into the house, he suffered no man to go in, save Peter, and James, and John, and the father and the mother of the maiden. \nAnd all wept, and bewailed her: but he said, Weep not; she is not dead, but sleepeth. \nAnd they laughed him to scorn, knowing that she was dead. \nAnd he put them all out, and took her by the hand, and called, saying, Maid, arise. \nAnd her spirit came again, and she arose straightway: and he commanded to give her meat. \nAnd her parents were astonished: but he charged them that they should tell no man what was done. \nThen he called his twelve disciples together, and gave them power and authority over all devils, and to cure diseases. \nAnd he sent them to preach the kingdom of God, and to heal the sick. \nAnd he said unto them, Take nothing for your journey, neither staves, nor scrip, neither bread, neither money; neither have two coats apiece. \nAnd whatsoever house ye enter into, there abide, and thence depart. \nAnd whosoever will not receive you, when ye go out of that city, shake off the very dust from your feet for a testimony against them. \nAnd they departed, and went through the towns, preaching the gospel, and healing every where. \nNow Herod the tetrarch heard of all that was done by him: and he was perplexed, because that it was said of some, that John was risen from the dead; \nAnd of some, that Elias had appeared; and of others, that one of the old prophets was risen again. \nAnd Herod said, John have I beheaded: but who is this, of whom I hear such things? And he desired to see him. \nAnd the apostles, when they were returned, told him all that they had done. And he took them, and went aside privately into a desert place belonging to the city called Bethsaida. \nAnd the people, when they knew it, followed him: and he received them, and spake unto them of the kingdom of God, and healed them that had need of healing. \nAnd when the day began to wear away, then came the twelve, and said unto him, Send the multitude away, that they may go into the towns and country round about, and lodge, and get victuals: for we are here in a desert place. \nBut he said unto them, Give ye them to eat. And they said, We have no more but five loaves and two fishes; except we should go and buy meat for all this people. \nFor they were about five thousand men. And he said to his disciples, Make them sit down by fifties in a company. \nAnd they did so, and made them all sit down. \nThen he took the five loaves and the two fishes, and looking up to heaven, he blessed them, and brake, and gave to the disciples to set before the multitude. \nAnd they did eat, and were all filled: and there was taken up of fragments that remained to them twelve baskets. \nAnd it came to pass, as he was alone praying, his disciples were with him: and he asked them, saying, Whom say the people that I am? \nThey answering said, John the Baptist; but some say, Elias; and others say, that one of the old prophets is risen again. \nHe said unto them, But whom say ye that I am? Peter answering said, The Christ of God. \nAnd he straitly charged them, and commanded them to tell no man that thing; \nSaying, The Son of man must suffer many things, and be rejected of the elders and chief priests and scribes, and be slain, and be raised the third day. \nAnd he said to them all, If any man will come after me, let him deny himself, and take up his cross daily, and follow me. \nFor whosoever will save his life shall lose it: but whosoever will lose his life for my sake, the same shall save it. \nFor what is a man advantaged, if he gain the whole world, and lose himself, or be cast away? \nFor whosoever shall be ashamed of me and of my words, of him shall the Son of man be ashamed, when he shall come in his own glory, and in his Father's, and of the holy angels. \nBut I tell you of a truth, there be some standing here, which shall not taste of death, till they see the kingdom of God. \nAnd it came to pass about an eight days after these sayings, he took Peter and John and James, and went up into a mountain to pray. \nAnd as he prayed, the fashion of his countenance was altered, and his raiment was white and glistering. \nAnd, behold, there talked with him two men, which were Moses and Elias: \nWho appeared in glory, and spake of his decease which he should accomplish at Jerusalem. \nBut Peter and they that were with him were heavy with sleep: and when they were awake, they saw his glory, and the two men that stood with him. \nAnd it came to pass, as they departed from him, Peter said unto Jesus, Master, it is good for us to be here: and let us make three tabernacles; one for thee, and one for Moses, and one for Elias: not knowing what he said. \nWhile he thus spake, there came a cloud, and overshadowed them: and they feared as they entered into the cloud. \nAnd there came a voice out of the cloud, saying, This is my beloved Son: hear him. \nAnd when the voice was past, Jesus was found alone. And they kept it close, and told no man in those days any of those things which they had seen. \nAnd it came to pass, that on the next day, when they were come down from the hill, much people met him. \nAnd, behold, a man of the company cried out, saying, Master, I beseech thee, look upon my son: for he is mine only child. \nAnd, lo, a spirit taketh him, and he suddenly crieth out; and it teareth him that he foameth again, and bruising him hardly departeth from him. \nAnd I besought thy disciples to cast him out; and they could not. \nAnd Jesus answering said, O faithless and perverse generation, how long shall I be with you, and suffer you? Bring thy son hither. \nAnd as he was yet a coming, the devil threw him down, and tare him. And Jesus rebuked the unclean spirit, and healed the child, and delivered him again to his father. \nAnd they were all amazed at the mighty power of God. But while they wondered every one at all things which Jesus did, he said unto his disciples, \nLet these sayings sink down into your ears: for the Son of man shall be delivered into the hands of men. \nBut they understood not this saying, and it was hid from them, that they perceived it not: and they feared to ask him of that saying. \nThen there arose a reasoning among them, which of them should be greatest. \nAnd Jesus, perceiving the thought of their heart, took a child, and set him by him, \nAnd said unto them, Whosoever shall receive this child in my name receiveth me: and whosoever shall receive me receiveth him that sent me: for he that is least among you all, the same shall be great. \nAnd John answered and said, Master, we saw one casting out devils in thy name; and we forbad him, because he followeth not with us. \nAnd Jesus said unto him, Forbid him not: for he that is not against us is for us. \nAnd it came to pass, when the time was come that he should be received up, he stedfastly set his face to go to Jerusalem, \nAnd sent messengers before his face: and they went, and entered into a village of the Samaritans, to make ready for him. \nAnd they did not receive him, because his face was as though he would go to Jerusalem. \nAnd when his disciples James and John saw this, they said, Lord, wilt thou that we command fire to come down from heaven, and consume them, even as Elias did? \nBut he turned, and rebuked them, and said, Ye know not what manner of spirit ye are of. \nFor the Son of man is not come to destroy men's lives, but to save them. And they went to another village. \nAnd it came to pass, that, as they went in the way, a certain man said unto him, Lord, I will follow thee whithersoever thou goest. \nAnd Jesus said unto him, Foxes have holes, and birds of the air have nests; but the Son of man hath not where to lay his head. \nAnd he said unto another, Follow me. But he said, Lord, suffer me first to go and bury my father. \nJesus said unto him, Let the dead bury their dead: but go thou and preach the kingdom of God. \nAnd another also said, Lord, I will follow thee; but let me first go bid them farewell, which are at home at my house. \nAnd Jesus said unto him, No man, having put his hand to the plough, and looking back, is fit for the kingdom of God. \nAfter these things the LORD appointed other seventy also, and sent them two and two before his face into every city and place, whither he himself would come. \nTherefore said he unto them, The harvest truly is great, but the labourers are few: pray ye therefore the Lord of the harvest, that he would send forth labourers into his harvest. \nGo your ways: behold, I send you forth as lambs among wolves. \nCarry neither purse, nor scrip, nor shoes: and salute no man by the way. \nAnd into whatsoever house ye enter, first say, Peace be to this house. \nAnd if the son of peace be there, your peace shall rest upon it: if not, it shall turn to you again. \nAnd in the same house remain, eating and drinking such things as they give: for the labourer is worthy of his hire. Go not from house to house. \nAnd into whatsoever city ye enter, and they receive you, eat such things as are set before you: \nAnd heal the sick that are therein, and say unto them, The kingdom of God is come nigh unto you. \nBut into whatsoever city ye enter, and they receive you not, go your ways out into the streets of the same, and say, \nEven the very dust of your city, which cleaveth on us, we do wipe off against you: notwithstanding be ye sure of this, that the kingdom of God is come nigh unto you. \nBut I say unto you, that it shall be more tolerable in that day for Sodom, than for that city. \nWoe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works had been done in Tyre and Sidon, which have been done in you, they had a great while ago repented, sitting in sackcloth and ashes. \nBut it shall be more tolerable for Tyre and Sidon at the judgment, than for you. \nAnd thou, Capernaum, which art exalted to heaven, shalt be thrust down to hell. \nHe that heareth you heareth me; and he that despiseth you despiseth me; and he that despiseth me despiseth him that sent me. \nAnd the seventy returned again with joy, saying, Lord, even the devils are subject unto us through thy name. \nAnd he said unto them, I beheld Satan as lightning fall from heaven. \nBehold, I give unto you power to tread on serpents and scorpions, and over all the power of the enemy: and nothing shall by any means hurt you. \nNotwithstanding in this rejoice not, that the spirits are subject unto you; but rather rejoice, because your names are written in heaven. \nIn that hour Jesus rejoiced in spirit, and said, I thank thee, O Father, Lord of heaven and earth, that thou hast hid these things from the wise and prudent, and hast revealed them unto babes: even so, Father; for so it seemed good in thy sight. \nAll things are delivered to me of my Father: and no man knoweth who the Son is, but the Father; and who the Father is, but the Son, and he to whom the Son will reveal him. \nAnd he turned him unto his disciples, and said privately, Blessed are the eyes which see the things that ye see: \nFor I tell you, that many prophets and kings have desired to see those things which ye see, and have not seen them; and to hear those things which ye hear, and have not heard them. \nAnd, behold, a certain lawyer stood up, and tempted him, saying, Master, what shall I do to inherit eternal life? \nHe said unto him, What is written in the law? how readest thou? \nAnd he answering said, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy strength, and with all thy mind; and thy neighbour as thyself. \nAnd he said unto him, Thou hast answered right: this do, and thou shalt live. \nBut he, willing to justify himself, said unto Jesus, And who is my neighbour? \nAnd Jesus answering said, A certain man went down from Jerusalem to Jericho, and fell among thieves, which stripped him of his raiment, and wounded him, and departed, leaving him half dead. \nAnd by chance there came down a certain priest that way: and when he saw him, he passed by on the other side. \nAnd likewise a Levite, when he was at the place, came and looked on him, and passed by on the other side. \nBut a certain Samaritan, as he journeyed, came where he was: and when he saw him, he had compassion on him, \nAnd went to him, and bound up his wounds, pouring in oil and wine, and set him on his own beast, and brought him to an inn, and took care of him. \nAnd on the morrow when he departed, he took out two pence, and gave them to the host, and said unto him, Take care of him; and whatsoever thou spendest more, when I come again, I will repay thee. \nWhich now of these three, thinkest thou, was neighbour unto him that fell among the thieves? \nAnd he said, He that shewed mercy on him. Then said Jesus unto him, Go, and do thou likewise. \nNow it came to pass, as they went, that he entered into a certain village: and a certain woman named Martha received him into her house. \nAnd she had a sister called Mary, which also sat at Jesus' feet, and heard his word. \nBut Martha was cumbered about much serving, and came to him, and said, Lord, dost thou not care that my sister hath left me to serve alone? bid her therefore that she help me. \nAnd Jesus answered and said unto her, Martha, Martha, thou art careful and troubled about many things: \nBut one thing is needful: and Mary hath chosen that good part, which shall not be taken away from her. \nAnd it came to pass, that, as he was praying in a certain place, when he ceased, one of his disciples said unto him, Lord, teach us to pray, as John also taught his disciples. \nAnd he said unto them, When ye pray, say, Our Father which art in heaven, Hallowed be thy name. Thy kingdom come. Thy will be done, as in heaven, so in earth. \nGive us day by day our daily bread. \nAnd forgive us our sins; for we also forgive every one that is indebted to us. And lead us not into temptation; but deliver us from evil. \nAnd he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say unto him, Friend, lend me three loaves; \nFor a friend of mine in his journey is come to me, and I have nothing to set before him? \nAnd he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee. \nI say unto you, Though he will not rise and give him, because he is his friend, yet because of his importunity he will rise and give him as many as he needeth. \nAnd I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you. \nFor every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened. \nIf a son shall ask bread of any of you that is a father, will he give him a stone? or if he ask a fish, will he for a fish give him a serpent? \nOr if he shall ask an egg, will he offer him a scorpion? \nIf ye then, being evil, know how to give good gifts unto your children: how much more shall your heavenly Father give the Holy Spirit to them that ask him? \nAnd he was casting out a devil, and it was dumb. And it came to pass, when the devil was gone out, the dumb spake; and the people wondered. \nBut some of them said, He casteth out devils through Beelzebub the chief of the devils. \nAnd others, tempting him, sought of him a sign from heaven. \nBut he, knowing their thoughts, said unto them, Every kingdom divided against itself is brought to desolation; and a house divided against a house falleth. \nIf Satan also be divided against himself, how shall his kingdom stand? because ye say that I cast out devils through Beelzebub. \nAnd if I by Beelzebub cast out devils, by whom do your sons cast them out? therefore shall they be your judges. \nBut if I with the finger of God cast out devils, no doubt the kingdom of God is come upon you. \nWhen a strong man armed keepeth his palace, his goods are in peace: \nBut when a stronger than he shall come upon him, and overcome him, he taketh from him all his armour wherein he trusted, and divideth his spoils. \nHe that is not with me is against me: and he that gathereth not with me scattereth. \nWhen the unclean spirit is gone out of a man, he walketh through dry places, seeking rest; and finding none, he saith, I will return unto my house whence I came out. \nAnd when he cometh, he findeth it swept and garnished. \nThen goeth he, and taketh to him seven other spirits more wicked than himself; and they enter in, and dwell there: and the last state of that man is worse than the first. \nAnd it came to pass, as he spake these things, a certain woman of the company lifted up her voice, and said unto him, Blessed is the womb that bare thee, and the paps which thou hast sucked. \nBut he said, Yea rather, blessed are they that hear the word of God, and keep it. \nAnd when the people were gathered thick together, he began to say, This is an evil generation: they seek a sign; and there shall no sign be given it, but the sign of Jonas the prophet. \nFor as Jonas was a sign unto the Ninevites, so shall also the Son of man be to this generation. \nThe queen of the south shall rise up in the judgment with the men of this generation, and condemn them: for she came from the utmost parts of the earth to hear the wisdom of Solomon; and, behold, a greater than Solomon is here. \nThe men of Nineve shall rise up in the judgment with this generation, and shall condemn it: for they repented at the preaching of Jonas; and, behold, a greater than Jonas is here. \nNo man, when he hath lighted a candle, putteth it in a secret place, neither under a bushel, but on a candlestick, that they which come in may see the light. \nThe light of the body is the eye: therefore when thine eye is single, thy whole body also is full of light; but when thine eye is evil, thy body also is full of darkness. \nTake heed therefore that the light which is in thee be not darkness. \nIf thy whole body therefore be full of light, having no part dark, the whole shall be full of light, as when the bright shining of a candle doth give thee light. \nAnd as he spake, a certain Pharisee besought him to dine with him: and he went in, and sat down to meat. \nAnd when the Pharisee saw it, he marvelled that he had not first washed before dinner. \nAnd the Lord said unto him, Now do ye Pharisees make clean the outside of the cup and the platter; but your inward part is full of ravening and wickedness. \nYe fools, did not he that made that which is without make that which is within also? \nBut rather give alms of such things as ye have; and, behold, all things are clean unto you. \nBut woe unto you, Pharisees! for ye tithe mint and rue and all manner of herbs, and pass over judgment and the love of God: these ought ye to have done, and not to leave the other undone. \nWoe unto you, Pharisees! for ye love the uppermost seats in the synagogues, and greetings in the markets. \nWoe unto you, scribes and Pharisees, hypocrites! for ye are as graves which appear not, and the men that walk over them are not aware of them. \nThen answered one of the lawyers, and said unto him, Master, thus saying thou reproachest us also. \nAnd he said, Woe unto you also, ye lawyers! for ye lade men with burdens grievous to be borne, and ye yourselves touch not the burdens with one of your fingers. \nWoe unto you! for ye build the sepulchres of the prophets, and your fathers killed them. \nTruly ye bear witness that ye allow the deeds of your fathers: for they indeed killed them, and ye build their sepulchres. \nTherefore also said the wisdom of God, I will send them prophets and apostles, and some of them they shall slay and persecute: \nThat the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation; \nFrom the blood of Abel unto the blood of Zacharias which perished between the altar and the temple: verily I say unto you, It shall be required of this generation. \nWoe unto you, lawyers! for ye have taken away the key of knowledge: ye entered not in yourselves, and them that were entering in ye hindered. \nAnd as he said these things unto them, the scribes and the Pharisees began to urge him vehemently, and to provoke him to speak of many things: \nLaying wait for him, and seeking to catch something out of his mouth, that they might accuse him. \nIn the mean time, when there were gathered together an innumerable multitude of people, insomuch that they trode one upon another, he began to say unto his disciples first of all, Beware ye of the leaven of the Pharisees, which is hypocrisy. \nFor there is nothing covered, that shall not be revealed; neither hid, that shall not be known. \nTherefore whatsoever ye have spoken in darkness shall be heard in the light; and that which ye have spoken in the ear in closets shall be proclaimed upon the housetops. \nAnd I say unto you my friends, Be not afraid of them that kill the body, and after that have no more that they can do. \nBut I will forewarn you whom ye shall fear: Fear him, which after he hath killed hath power to cast into hell; yea, I say unto you, Fear him. \nAre not five sparrows sold for two farthings, and not one of them is forgotten before God? \nBut even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows. \nAlso I say unto you, Whosoever shall confess me before men, him shall the Son of man also confess before the angels of God: \nBut he that denieth me before men shall be denied before the angels of God. \nAnd whosoever shall speak a word against the Son of man, it shall be forgiven him: but unto him that blasphemeth against the Holy Ghost it shall not be forgiven. \nAnd when they bring you unto the synagogues, and unto magistrates, and powers, take ye no thought how or what thing ye shall answer, or what ye shall say: \nFor the Holy Ghost shall teach you in the same hour what ye ought to say. \nAnd one of the company said unto him, Master, speak to my brother, that he divide the inheritance with me. \nAnd he said unto him, Man, who made me a judge or a divider over you? \nAnd he said unto them, Take heed, and beware of covetousness: for a man's life consisteth not in the abundance of the things which he possesseth. \nAnd he spake a parable unto them, saying, The ground of a certain rich man brought forth plentifully: \nAnd he thought within himself, saying, What shall I do, because I have no room where to bestow my fruits? \nAnd he said, This will I do: I will pull down my barns, and build greater; and there will I bestow all my fruits and my goods. \nAnd I will say to my soul, Soul, thou hast much goods laid up for many years; take thine ease, eat, drink, and be merry. \nBut God said unto him, Thou fool, this night thy soul shall be required of thee: then whose shall those things be, which thou hast provided? \nSo is he that layeth up treasure for himself, and is not rich toward God. \nAnd he said unto his disciples, Therefore I say unto you, Take no thought for your life, what ye shall eat; neither for the body, what ye shall put on. \nThe life is more than meat, and the body is more than raiment. \nConsider the ravens: for they neither sow nor reap; which neither have storehouse nor barn; and God feedeth them: how much more are ye better than the fowls? \nAnd which of you with taking thought can add to his stature one cubit? \nIf ye then be not able to do that thing which is least, why take ye thought for the rest? \nConsider the lilies how they grow: they toil not, they spin not; and yet I say unto you, that Solomon in all his glory was not arrayed like one of these. \nIf then God so clothe the grass, which is to day in the field, and to morrow is cast into the oven; how much more will he clothe you, O ye of little faith? \nAnd seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind. \nFor all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things. \nBut rather seek ye the kingdom of God; and all these things shall be added unto you. \nFear not, little flock; for it is your Father's good pleasure to give you the kingdom. \nSell that ye have, and give alms; provide yourselves bags which wax not old, a treasure in the heavens that faileth not, where no thief approacheth, neither moth corrupteth. \nFor where your treasure is, there will your heart be also. \nLet your loins be girded about, and your lights burning; \nAnd ye yourselves like unto men that wait for their lord, when he will return from the wedding; that when he cometh and knocketh, they may open unto him immediately. \nBlessed are those servants, whom the lord when he cometh shall find watching: verily I say unto you, that he shall gird himself, and make them to sit down to meat, and will come forth and serve them. \nAnd if he shall come in the second watch, or come in the third watch, and find them so, blessed are those servants. \nAnd this know, that if the goodman of the house had known what hour the thief would come, he would have watched, and not have suffered his house to be broken through. \nBe ye therefore ready also: for the Son of man cometh at an hour when ye think not. \nThen Peter said unto him, Lord, speakest thou this parable unto us, or even to all? \nAnd the Lord said, Who then is that faithful and wise steward, whom his lord shall make ruler over his household, to give them their portion of meat in due season? \nBlessed is that servant, whom his lord when he cometh shall find so doing. \nOf a truth I say unto you, that he will make him ruler over all that he hath. \nBut and if that servant say in his heart, My lord delayeth his coming; and shall begin to beat the menservants and maidens, and to eat and drink, and to be drunken; \nThe lord of that servant will come in a day when he looketh not for him, and at an hour when he is not aware, and will cut him in sunder, and will appoint him his portion with the unbelievers. \nAnd that servant, which knew his lord's will, and prepared not himself, neither did according to his will, shall be beaten with many stripes. \nBut he that knew not, and did commit things worthy of stripes, shall be beaten with few stripes. For unto whomsoever much is given, of him shall be much required: and to whom men have committed much, of him they will ask the more. \nI am come to send fire on the earth; and what will I, if it be already kindled? \nBut I have a baptism to be baptized with; and how am I straitened till it be accomplished! \nSuppose ye that I am come to give peace on earth? I tell you, Nay; but rather division: \nFor from henceforth there shall be five in one house divided, three against two, and two against three. \nThe father shall be divided against the son, and the son against the father; the mother against the daughter, and the daughter against the mother; the mother in law against her daughter in law, and the daughter in law against her mother in law. \nAnd he said also to the people, When ye see a cloud rise out of the west, straightway ye say, There cometh a shower; and so it is. \nAnd when ye see the south wind blow, ye say, There will be heat; and it cometh to pass. \nYe hypocrites, ye can discern the face of the sky and of the earth; but how is it that ye do not discern this time? \nYea, and why even of yourselves judge ye not what is right? \nWhen thou goest with thine adversary to the magistrate, as thou art in the way, give diligence that thou mayest be delivered from him; lest he hale thee to the judge, and the judge deliver thee to the officer, and the officer cast thee into prison. \nI tell thee, thou shalt not depart thence, till thou hast paid the very last mite. \nThere were present at that season some that told him of the Galilaeans, whose blood Pilate had mingled with their sacrifices. \nAnd Jesus answering said unto them, Suppose ye that these Galilaeans were sinners above all the Galilaeans, because they suffered such things? \nI tell you, Nay: but, except ye repent, ye shall all likewise perish. \nOr those eighteen, upon whom the tower in Siloam fell, and slew them, think ye that they were sinners above all men that dwelt in Jerusalem? \nI tell you, Nay: but, except ye repent, ye shall all likewise perish. \nHe spake also this parable; A certain man had a fig tree planted in his vineyard; and he came and sought fruit thereon, and found none. \nThen said he unto the dresser of his vineyard, Behold, these three years I come seeking fruit on this fig tree, and find none: cut it down; why cumbereth it the ground? \nAnd he answering said unto him, Lord, let it alone this year also, till I shall dig about it, and dung it: \nAnd if it bear fruit, well: and if not, then after that thou shalt cut it down. \nAnd he was teaching in one of the synagogues on the sabbath. \nAnd, behold, there was a woman which had a spirit of infirmity eighteen years, and was bowed together, and could in no wise lift up herself. \nAnd when Jesus saw her, he called her to him, and said unto her, Woman, thou art loosed from thine infirmity. \nAnd he laid his hands on her: and immediately she was made straight, and glorified God. \nAnd the ruler of the synagogue answered with indignation, because that Jesus had healed on the sabbath day, and said unto the people, There are six days in which men ought to work: in them therefore come and be healed, and not on the sabbath day. \nThe Lord then answered him, and said, Thou hypocrite, doth not each one of you on the sabbath loose his ox or his ass from the stall, and lead him away to watering? \nAnd ought not this woman, being a daughter of Abraham, whom Satan hath bound, lo, these eighteen years, be loosed from this bond on the sabbath day? \nAnd when he had said these things, all his adversaries were ashamed: and all the people rejoiced for all the glorious things that were done by him. \nThen said he, Unto what is the kingdom of God like? and whereunto shall I resemble it? \nIt is like a grain of mustard seed, which a man took, and cast into his garden; and it grew, and waxed a great tree; and the fowls of the air lodged in the branches of it. \nAnd again he said, Whereunto shall I liken the kingdom of God? \nIt is like leaven, which a woman took and hid in three measures of meal, till the whole was leavened. \nAnd he went through the cities and villages, teaching, and journeying toward Jerusalem. \nThen said one unto him, Lord, are there few that be saved? And he said unto them, \nStrive to enter in at the strait gate: for many, I say unto you, will seek to enter in, and shall not be able. \nWhen once the master of the house is risen up, and hath shut to the door, and ye begin to stand without, and to knock at the door, saying, Lord, Lord, open unto us; and he shall answer and say unto you, I know you not whence ye are: \nThen shall ye begin to say, We have eaten and drunk in thy presence, and thou hast taught in our streets. \nBut he shall say, I tell you, I know you not whence ye are; depart from me, all ye workers of iniquity. \nThere shall be weeping and gnashing of teeth, when ye shall see Abraham, and Isaac, and Jacob, and all the prophets, in the kingdom of God, and you yourselves thrust out. \nAnd they shall come from the east, and from the west, and from the north, and from the south, and shall sit down in the kingdom of God. \nAnd, behold, there are last which shall be first, and there are first which shall be last. \nThe same day there came certain of the Pharisees, saying unto him, Get thee out, and depart hence: for Herod will kill thee. \nAnd he said unto them, Go ye, and tell that fox, Behold, I cast out devils, and I do cures to day and to morrow, and the third day I shall be perfected. \nNevertheless I must walk to day, and to morrow, and the day following: for it cannot be that a prophet perish out of Jerusalem. \nO Jerusalem, Jerusalem, which killest the prophets, and stonest them that are sent unto thee; how often would I have gathered thy children together, as a hen doth gather her brood under her wings, and ye would not! \nBehold, your house is left unto you desolate: and verily I say unto you, Ye shall not see me, until the time come when ye shall say, Blessed is he that cometh in the name of the Lord. \nAnd it came to pass, as he went into the house of one of the chief Pharisees to eat bread on the sabbath day, that they watched him. \nAnd, behold, there was a certain man before him which had the dropsy. \nAnd Jesus answering spake unto the lawyers and Pharisees, saying, Is it lawful to heal on the sabbath day? \nAnd they held their peace. And he took him, and healed him, and let him go; \nAnd answered them, saying, Which of you shall have an ass or an ox fallen into a pit, and will not straightway pull him out on the sabbath day? \nAnd they could not answer him again to these things. \nAnd he put forth a parable to those which were bidden, when he marked how they chose out the chief rooms; saying unto them. \nWhen thou art bidden of any man to a wedding, sit not down in the highest room; lest a more honourable man than thou be bidden of him; \nAnd he that bade thee and him come and say to thee, Give this man place; and thou begin with shame to take the lowest room. \nBut when thou art bidden, go and sit down in the lowest room; that when he that bade thee cometh, he may say unto thee, Friend, go up higher: then shalt thou have worship in the presence of them that sit at meat with thee. \nFor whosoever exalteth himself shall be abased; and he that humbleth himself shall be exalted. \nThen said he also to him that bade him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, neither thy kinsmen, nor thy rich neighbours; lest they also bid thee again, and a recompence be made thee. \nBut when thou makest a feast, call the poor, the maimed, the lame, the blind: \nAnd thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just. \nAnd when one of them that sat at meat with him heard these things, he said unto him, Blessed is he that shall eat bread in the kingdom of God. \nThen said he unto him, A certain man made a great supper, and bade many: \nAnd sent his servant at supper time to say to them that were bidden, Come; for all things are now ready. \nAnd they all with one consent began to make excuse. The first said unto him, I have bought a piece of ground, and I must needs go and see it: I pray thee have me excused. \nAnd another said, I have bought five yoke of oxen, and I go to prove them: I pray thee have me excused. \nAnd another said, I have married a wife, and therefore I cannot come. \nSo that servant came, and shewed his lord these things. Then the master of the house being angry said to his servant, Go out quickly into the streets and lanes of the city, and bring in hither the poor, and the maimed, and the halt, and the blind. \nAnd the servant said, Lord, it is done as thou hast commanded, and yet there is room. \nAnd the lord said unto the servant, Go out into the highways and hedges, and compel them to come in, that my house may be filled. \nFor I say unto you, That none of those men which were bidden shall taste of my supper. \nAnd there went great multitudes with him: and he turned, and said unto them, \nIf any man come to me, and hate not his father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple. \nAnd whosoever doth not bear his cross, and come after me, cannot be my disciple. \nFor which of you, intending to build a tower, sitteth not down first, and counteth the cost, whether he have sufficient to finish it? \nLest haply, after he hath laid the foundation, and is not able to finish it, all that behold it begin to mock him, \nSaying, This man began to build, and was not able to finish. \nOr what king, going to make war against another king, sitteth not down first, and consulteth whether he be able with ten thousand to meet him that cometh against him with twenty thousand? \nOr else, while the other is yet a great way off, he sendeth an ambassage, and desireth conditions of peace. \nSo likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple. \nSalt is good: but if the salt have lost his savour, wherewith shall it be seasoned? \nIt is neither fit for the land, nor yet for the dunghill; but men cast it out. He that hath ears to hear, let him hear. \nThen drew near unto him all the publicans and sinners for to hear him. \nAnd the Pharisees and scribes murmured, saying, This man receiveth sinners, and eateth with them. \nAnd he spake this parable unto them, saying, \nWhat man of you, having an hundred sheep, if he lose one of them, doth not leave the ninety and nine in the wilderness, and go after that which is lost, until he find it? \nAnd when he hath found it, he layeth it on his shoulders, rejoicing. \nAnd when he cometh home, he calleth together his friends and neighbours, saying unto them, Rejoice with me; for I have found my sheep which was lost. \nI say unto you, that likewise joy shall be in heaven over one sinner that repenteth, more than over ninety and nine just persons, which need no repentance. \nEither what woman having ten pieces of silver, if she lose one piece, doth not light a candle, and sweep the house, and seek diligently till she find it? \nAnd when she hath found it, she calleth her friends and her neighbours together, saying, Rejoice with me; for I have found the piece which I had lost. \nLikewise, I say unto you, there is joy in the presence of the angels of God over one sinner that repenteth. \nAnd he said, A certain man had two sons: \nAnd the younger of them said to his father, Father, give me the portion of goods that falleth to me. And he divided unto them his living. \nAnd not many days after the younger son gathered all together, and took his journey into a far country, and there wasted his substance with riotous living. \nAnd when he had spent all, there arose a mighty famine in that land; and he began to be in want. \nAnd he went and joined himself to a citizen of that country; and he sent him into his fields to feed swine. \nAnd he would fain have filled his belly with the husks that the swine did eat: and no man gave unto him. \nAnd when he came to himself, he said, How many hired servants of my father's have bread enough and to spare, and I perish with hunger! \nI will arise and go to my father, and will say unto him, Father, I have sinned against heaven, and before thee, \nAnd am no more worthy to be called thy son: make me as one of thy hired servants. \nAnd he arose, and came to his father. But when he was yet a great way off, his father saw him, and had compassion, and ran, and fell on his neck, and kissed him. \nAnd the son said unto him, Father, I have sinned against heaven, and in thy sight, and am no more worthy to be called thy son. \nBut the father said to his servants, Bring forth the best robe, and put it on him; and put a ring on his hand, and shoes on his feet: \nAnd bring hither the fatted calf, and kill it; and let us eat, and be merry: \nFor this my son was dead, and is alive again; he was lost, and is found. And they began to be merry. \nNow his elder son was in the field: and as he came and drew nigh to the house, he heard musick and dancing. \nAnd he called one of the servants, and asked what these things meant. \nAnd he said unto him, Thy brother is come; and thy father hath killed the fatted calf, because he hath received him safe and sound. \nAnd he was angry, and would not go in: therefore came his father out, and intreated him. \nAnd he answering said to his father, Lo, these many years do I serve thee, neither transgressed I at any time thy commandment: and yet thou never gavest me a kid, that I might make merry with my friends: \nBut as soon as this thy son was come, which hath devoured thy living with harlots, thou hast killed for him the fatted calf. \nAnd he said unto him, Son, thou art ever with me, and all that I have is thine. \nIt was meet that we should make merry, and be glad: for this thy brother was dead, and is alive again; and was lost, and is found. \nAnd he said also unto his disciples, There was a certain rich man, which had a steward; and the same was accused unto him that he had wasted his goods. \nAnd he called him, and said unto him, How is it that I hear this of thee? give an account of thy stewardship; for thou mayest be no longer steward. \nThen the steward said within himself, What shall I do? for my lord taketh away from me the stewardship: I cannot dig; to beg I am ashamed. \nI am resolved what to do, that, when I am put out of the stewardship, they may receive me into their houses. \nSo he called every one of his lord's debtors unto him, and said unto the first, How much owest thou unto my lord? \nAnd he said, An hundred measures of oil. And he said unto him, Take thy bill, and sit down quickly, and write fifty. \nThen said he to another, And how much owest thou? And he said, An hundred measures of wheat. And he said unto him, Take thy bill, and write fourscore. \nAnd the lord commended the unjust steward, because he had done wisely: for the children of this world are in their generation wiser than the children of light. \nAnd I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations. \nHe that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much. \nIf therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true riches? \nAnd if ye have not been faithful in that which is another man's, who shall give you that which is your own? \nNo servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon. \nAnd the Pharisees also, who were covetous, heard all these things: and they derided him. \nAnd he said unto them, Ye are they which justify yourselves before men; but God knoweth your hearts: for that which is highly esteemed among men is abomination in the sight of God. \nThe law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it. \nAnd it is easier for heaven and earth to pass, than one tittle of the law to fail. \nWhosoever putteth away his wife, and marrieth another, committeth adultery: and whosoever marrieth her that is put away from her husband committeth adultery. \nThere was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day: \nAnd there was a certain beggar named Lazarus, which was laid at his gate, full of sores, \nAnd desiring to be fed with the crumbs which fell from the rich man's table: moreover the dogs came and licked his sores. \nAnd it came to pass, that the beggar died, and was carried by the angels into Abraham's bosom: the rich man also died, and was buried; \nAnd in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom. \nAnd he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am tormented in this flame. \nBut Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and likewise Lazarus evil things: but now he is comforted, and thou art tormented. \nAnd beside all this, between us and you there is a great gulf fixed: so that they which would pass from hence to you cannot; neither can they pass to us, that would come from thence. \nThen he said, I pray thee therefore, father, that thou wouldest send him to my father's house: \nFor I have five brethren; that he may testify unto them, lest they also come into this place of torment. \nAbraham saith unto him, They have Moses and the prophets; let them hear them. \nAnd he said, Nay, father Abraham: but if one went unto them from the dead, they will repent. \nAnd he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead. \nThen said he unto the disciples, It is impossible but that offences will come: but woe unto him, through whom they come! \nIt were better for him that a millstone were hanged about his neck, and he cast into the sea, than that he should offend one of these little ones. \nTake heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him. \nAnd if he trespass against thee seven times in a day, and seven times in a day turn again to thee, saying, I repent; thou shalt forgive him. \nAnd the apostles said unto the Lord, Increase our faith. \nAnd the Lord said, If ye had faith as a grain of mustard seed, ye might say unto this sycamine tree, Be thou plucked up by the root, and be thou planted in the sea; and it should obey you. \nBut which of you, having a servant plowing or feeding cattle, will say unto him by and by, when he is come from the field, Go and sit down to meat? \nAnd will not rather say unto him, Make ready wherewith I may sup, and gird thyself, and serve me, till I have eaten and drunken; and afterward thou shalt eat and drink? \nDoth he thank that servant because he did the things that were commanded him? I trow not. \nSo likewise ye, when ye shall have done all those things which are commanded you, say, We are unprofitable servants: we have done that which was our duty to do. \nAnd it came to pass, as he went to Jerusalem, that he passed through the midst of Samaria and Galilee. \nAnd as he entered into a certain village, there met him ten men that were lepers, which stood afar off: \nAnd they lifted up their voices, and said, Jesus, Master, have mercy on us. \nAnd when he saw them, he said unto them, Go shew yourselves unto the priests. And it came to pass, that, as they went, they were cleansed. \nAnd one of them, when he saw that he was healed, turned back, and with a loud voice glorified God, \nAnd fell down on his face at his feet, giving him thanks: and he was a Samaritan. \nAnd Jesus answering said, Were there not ten cleansed? but where are the nine? \nThere are not found that returned to give glory to God, save this stranger. \nAnd he said unto him, Arise, go thy way: thy faith hath made thee whole. \nAnd when he was demanded of the Pharisees, when the kingdom of God should come, he answered them and said, The kingdom of God cometh not with observation: \nNeither shall they say, Lo here! or, lo there! for, behold, the kingdom of God is within you. \nAnd he said unto the disciples, The days will come, when ye shall desire to see one of the days of the Son of man, and ye shall not see it. \nAnd they shall say to you, See here; or, see there: go not after them, nor follow them. \nFor as the lightning, that lighteneth out of the one part under heaven, shineth unto the other part under heaven; so shall also the Son of man be in his day. \nBut first must he suffer many things, and be rejected of this generation. \nAnd as it was in the days of Noe, so shall it be also in the days of the Son of man. \nThey did eat, they drank, they married wives, they were given in marriage, until the day that Noe entered into the ark, and the flood came, and destroyed them all. \nLikewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded; \nBut the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all. \nEven thus shall it be in the day when the Son of man is revealed. \nIn that day, he which shall be upon the housetop, and his stuff in the house, let him not come down to take it away: and he that is in the field, let him likewise not return back. \nRemember Lot's wife. \nWhosoever shall seek to save his life shall lose it; and whosoever shall lose his life shall preserve it. \nI tell you, in that night there shall be two men in one bed; the one shall be taken, and the other shall be left. \nTwo women shall be grinding together; the one shall be taken, and the other left. \nTwo men shall be in the field; the one shall be taken, and the other left. \nAnd they answered and said unto him, Where, Lord? And he said unto them, Wheresoever the body is, thither will the eagles be gathered together. \nAnd he spake a parable unto them to this end, that men ought always to pray, and not to faint; \nSaying, There was in a city a judge, which feared not God, neither regarded man: \nAnd there was a widow in that city; and she came unto him, saying, Avenge me of mine adversary. \nAnd he would not for a while: but afterward he said within himself, Though I fear not God, nor regard man; \nYet because this widow troubleth me, I will avenge her, lest by her continual coming she weary me. \nAnd the Lord said, Hear what the unjust judge saith. \nAnd shall not God avenge his own elect, which cry day and night unto him, though he bear long with them? \nI tell you that he will avenge them speedily. Nevertheless when the Son of man cometh, shall he find faith on the earth? \nAnd he spake this parable unto certain which trusted in themselves that they were righteous, and despised others: \nTwo men went up into the temple to pray; the one a Pharisee, and the other a publican. \nThe Pharisee stood and prayed thus with himself, God, I thank thee, that I am not as other men are, extortioners, unjust, adulterers, or even as this publican. \nI fast twice in the week, I give tithes of all that I possess. \nAnd the publican, standing afar off, would not lift up so much as his eyes unto heaven, but smote upon his breast, saying, God be merciful to me a sinner. \nI tell you, this man went down to his house justified rather than the other: for every one that exalteth himself shall be abased; and he that humbleth himself shall be exalted. \nAnd they brought unto him also infants, that he would touch them: but when his disciples saw it, they rebuked them. \nBut Jesus called them unto him, and said, Suffer little children to come unto me, and forbid them not: for of such is the kingdom of God. \nVerily I say unto you, Whosoever shall not receive the kingdom of God as a little child shall in no wise enter therein. \nAnd a certain ruler asked him, saying, Good Master, what shall I do to inherit eternal life? \nAnd Jesus said unto him, Why callest thou me good? none is good, save one, that is, God. \nThou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Honour thy father and thy mother. \nAnd he said, All these have I kept from my youth up. \nNow when Jesus heard these things, he said unto him, Yet lackest thou one thing: sell all that thou hast, and distribute unto the poor, and thou shalt have treasure in heaven: and come, follow me. \nAnd when he heard this, he was very sorrowful: for he was very rich. \nAnd when Jesus saw that he was very sorrowful, he said, How hardly shall they that have riches enter into the kingdom of God! \nFor it is easier for a camel to go through a needle's eye, than for a rich man to enter into the kingdom of God. \nAnd they that heard it said, Who then can be saved? \nAnd he said, The things which are impossible with men are possible with God. \nThen Peter said, Lo, we have left all, and followed thee. \nAnd he said unto them, Verily I say unto you, There is no man that hath left house, or parents, or brethren, or wife, or children, for the kingdom of God's sake, \nWho shall not receive manifold more in this present time, and in the world to come life everlasting. \nThen he took unto him the twelve, and said unto them, Behold, we go up to Jerusalem, and all things that are written by the prophets concerning the Son of man shall be accomplished. \nFor he shall be delivered unto the Gentiles, and shall be mocked, and spitefully entreated, and spitted on: \nAnd they shall scourge him, and put him to death: and the third day he shall rise again. \nAnd they understood none of these things: and this saying was hid from them, neither knew they the things which were spoken. \nAnd it came to pass, that as he was come nigh unto Jericho, a certain blind man sat by the way side begging: \nAnd hearing the multitude pass by, he asked what it meant. \nAnd they told him, that Jesus of Nazareth passeth by. \nAnd he cried, saying, Jesus, thou son of David, have mercy on me. \nAnd they which went before rebuked him, that he should hold his peace: but he cried so much the more, Thou son of David, have mercy on me. \nAnd Jesus stood, and commanded him to be brought unto him: and when he was come near, he asked him, \nSaying, What wilt thou that I shall do unto thee? And he said, Lord, that I may receive my sight. \nAnd Jesus said unto him, Receive thy sight: thy faith hath saved thee. \nAnd immediately he received his sight, and followed him, glorifying God: and all the people, when they saw it, gave praise unto God. \nAnd Jesus entered and passed through Jericho. \nAnd, behold, there was a man named Zacchaeus, which was the chief among the publicans, and he was rich. \nAnd he sought to see Jesus who he was; and could not for the press, because he was little of stature. \nAnd he ran before, and climbed up into a sycomore tree to see him: for he was to pass that way. \nAnd when Jesus came to the place, he looked up, and saw him, and said unto him, Zacchaeus, make haste, and come down; for to day I must abide at thy house. \nAnd he made haste, and came down, and received him joyfully. \nAnd when they saw it, they all murmured, saying, That he was gone to be guest with a man that is a sinner. \nAnd Zacchaeus stood, and said unto the Lord: Behold, Lord, the half of my goods I give to the poor; and if I have taken any thing from any man by false accusation, I restore him fourfold. \nAnd Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham. \nFor the Son of man is come to seek and to save that which was lost. \nAnd as they heard these things, he added and spake a parable, because he was nigh to Jerusalem, and because they thought that the kingdom of God should immediately appear. \nHe said therefore, A certain nobleman went into a far country to receive for himself a kingdom, and to return. \nAnd he called his ten servants, and delivered them ten pounds, and said unto them, Occupy till I come. \nBut his citizens hated him, and sent a message after him, saying, We will not have this man to reign over us. \nAnd it came to pass, that when he was returned, having received the kingdom, then he commanded these servants to be called unto him, to whom he had given the money, that he might know how much every man had gained by trading. \nThen came the first, saying, Lord, thy pound hath gained ten pounds. \nAnd he said unto him, Well, thou good servant: because thou hast been faithful in a very little, have thou authority over ten cities. \nAnd the second came, saying, Lord, thy pound hath gained five pounds. \nAnd he said likewise to him, Be thou also over five cities. \nAnd another came, saying, Lord, behold, here is thy pound, which I have kept laid up in a napkin: \nFor I feared thee, because thou art an austere man: thou takest up that thou layedst not down, and reapest that thou didst not sow. \nAnd he saith unto him, Out of thine own mouth will I judge thee, thou wicked servant. Thou knewest that I was an austere man, taking up that I laid not down, and reaping that I did not sow: \nWherefore then gavest not thou my money into the bank, that at my coming I might have required mine own with usury? \nAnd he said unto them that stood by, Take from him the pound, and give it to him that hath ten pounds. \n(And they said unto him, Lord, he hath ten pounds.) \nFor I say unto you, That unto every one which hath shall be given; and from him that hath not, even that he hath shall be taken away from him. \nBut those mine enemies, which would not that I should reign over them, bring hither, and slay them before me. \nAnd when he had thus spoken, he went before, ascending up to Jerusalem. \nAnd it came to pass, when he was come nigh to Bethphage and Bethany, at the mount called the mount of Olives, he sent two of his disciples, \nSaying, Go ye into the village over against you; in the which at your entering ye shall find a colt tied, whereon yet never man sat: loose him, and bring him hither. \nAnd if any man ask you, Why do ye loose him? thus shall ye say unto him, Because the Lord hath need of him. \nAnd they that were sent went their way, and found even as he had said unto them. \nAnd as they were loosing the colt, the owners thereof said unto them, Why loose ye the colt? \nAnd they said, The Lord hath need of him. \nAnd they brought him to Jesus: and they cast their garments upon the colt, and they set Jesus thereon. \nAnd as he went, they spread their clothes in the way. \nAnd when he was come nigh, even now at the descent of the mount of Olives, the whole multitude of the disciples began to rejoice and praise God with a loud voice for all the mighty works that they had seen; \nSaying, Blessed be the King that cometh in the name of the Lord: peace in heaven, and glory in the highest. \nAnd some of the Pharisees from among the multitude said unto him, Master, rebuke thy disciples. \nAnd he answered and said unto them, I tell you that, if these should hold their peace, the stones would immediately cry out. \nAnd when he was come near, he beheld the city, and wept over it, \nSaying, If thou hadst known, even thou, at least in this thy day, the things which belong unto thy peace! but now they are hid from thine eyes. \nFor the days shall come upon thee, that thine enemies shall cast a trench about thee, and compass thee round, and keep thee in on every side, \nAnd shall lay thee even with the ground, and thy children within thee; and they shall not leave in thee one stone upon another; because thou knewest not the time of thy visitation. \nAnd he went into the temple, and began to cast out them that sold therein, and them that bought; \nSaying unto them, It is written, My house is the house of prayer: but ye have made it a den of thieves. \nAnd he taught daily in the temple. But the chief priests and the scribes and the chief of the people sought to destroy him, \nAnd could not find what they might do: for all the people were very attentive to hear him. \nAnd it came to pass, that on one of those days, as he taught the people in the temple, and preached the gospel, the chief priests and the scribes came upon him with the elders, \nAnd spake unto him, saying, Tell us, by what authority doest thou these things? or who is he that gave thee this authority? \nAnd he answered and said unto them, I will also ask you one thing; and answer me: \nThe baptism of John, was it from heaven, or of men? \nAnd they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then believed ye him not? \nBut and if we say, Of men; all the people will stone us: for they be persuaded that John was a prophet. \nAnd they answered, that they could not tell whence it was. \nAnd Jesus said unto them, Neither tell I you by what authority I do these things. \nThen began he to speak to the people this parable; A certain man planted a vineyard, and let it forth to husbandmen, and went into a far country for a long time. \nAnd at the season he sent a servant to the husbandmen, that they should give him of the fruit of the vineyard: but the husbandmen beat him, and sent him away empty. \nAnd again he sent another servant: and they beat him also, and entreated him shamefully, and sent him away empty. \nAnd again he sent a third: and they wounded him also, and cast him out. \nThen said the lord of the vineyard, What shall I do? I will send my beloved son: it may be they will reverence him when they see him. \nBut when the husbandmen saw him, they reasoned among themselves, saying, This is the heir: come, let us kill him, that the inheritance may be ours. \nSo they cast him out of the vineyard, and killed him. What therefore shall the lord of the vineyard do unto them? \nHe shall come and destroy these husbandmen, and shall give the vineyard to others. And when they heard it, they said, God forbid. \nAnd he beheld them, and said, What is this then that is written, The stone which the builders rejected, the same is become the head of the corner? \nWhosoever shall fall upon that stone shall be broken; but on whomsoever it shall fall, it will grind him to powder. \nAnd the chief priests and the scribes the same hour sought to lay hands on him; and they feared the people: for they perceived that he had spoken this parable against them. \nAnd they watched him, and sent forth spies, which should feign themselves just men, that they might take hold of his words, that so they might deliver him unto the power and authority of the governor. \nAnd they asked him, saying, Master, we know that thou sayest and teachest rightly, neither acceptest thou the person of any, but teachest the way of God truly: \nIs it lawful for us to give tribute unto Caesar, or no? \nBut he perceived their craftiness, and said unto them, Why tempt ye me? \nShew me a penny. Whose image and superscription hath it? They answered and said, Caesar's. \nAnd he said unto them, Render therefore unto Caesar the things which be Caesar's, and unto God the things which be God's. \nAnd they could not take hold of his words before the people: and they marvelled at his answer, and held their peace. \nThen came to him certain of the Sadducees, which deny that there is any resurrection; and they asked him, \nSaying, Master, Moses wrote unto us, If any man's brother die, having a wife, and he die without children, that his brother should take his wife, and raise up seed unto his brother. \nThere were therefore seven brethren: and the first took a wife, and died without children. \nAnd the second took her to wife, and he died childless. \nAnd the third took her; and in like manner the seven also: and they left no children, and died. \nLast of all the woman died also. \nTherefore in the resurrection whose wife of them is she? for seven had her to wife. \nAnd Jesus answering said unto them, The children of this world marry, and are given in marriage: \nBut they which shall be accounted worthy to obtain that world, and the resurrection from the dead, neither marry, nor are given in marriage: \nNeither can they die any more: for they are equal unto the angels; and are the children of God, being the children of the resurrection. \nNow that the dead are raised, even Moses shewed at the bush, when he calleth the Lord the God of Abraham, and the God of Isaac, and the God of Jacob. \nFor he is not a God of the dead, but of the living: for all live unto him. \nThen certain of the scribes answering said, Master, thou hast well said. \nAnd after that they durst not ask him any question at all. \nAnd he said unto them, How say they that Christ is David's son? \nAnd David himself saith in the book of Psalms, The LORD said unto my Lord, Sit thou on my right hand, \nTill I make thine enemies thy footstool. \nDavid therefore calleth him Lord, how is he then his son? \nThen in the audience of all the people he said unto his disciples, \nBeware of the scribes, which desire to walk in long robes, and love greetings in the markets, and the highest seats in the synagogues, and the chief rooms at feasts; \nWhich devour widows' houses, and for a shew make long prayers: the same shall receive greater damnation. \nAnd he looked up, and saw the rich men casting their gifts into the treasury. \nAnd he saw also a certain poor widow casting in thither two mites. \nAnd he said, Of a truth I say unto you, that this poor widow hath cast in more than they all: \nFor all these have of their abundance cast in unto the offerings of God: but she of her penury hath cast in all the living that she had. \nAnd as some spake of the temple, how it was adorned with goodly stones and gifts, he said, \nAs for these things which ye behold, the days will come, in the which there shall not be left one stone upon another, that shall not be thrown down. \nAnd they asked him, saying, Master, but when shall these things be? and what sign will there be when these things shall come to pass? \nAnd he said, Take heed that ye be not deceived: for many shall come in my name, saying, I am Christ; and the time draweth near: go ye not therefore after them. \nBut when ye shall hear of wars and commotions, be not terrified: for these things must first come to pass; but the end is not by and by. \nThen said he unto them, Nation shall rise against nation, and kingdom against kingdom: \nAnd great earthquakes shall be in divers places, and famines, and pestilences; and fearful sights and great signs shall there be from heaven. \nBut before all these, they shall lay their hands on you, and persecute you, delivering you up to the synagogues, and into prisons, being brought before kings and rulers for my name's sake. \nAnd it shall turn to you for a testimony. \nSettle it therefore in your hearts, not to meditate before what ye shall answer: \nFor I will give you a mouth and wisdom, which all your adversaries shall not be able to gainsay nor resist. \nAnd ye shall be betrayed both by parents, and brethren, and kinsfolks, and friends; and some of you shall they cause to be put to death. \nAnd ye shall be hated of all men for my name's sake. \nBut there shall not an hair of your head perish. \nIn your patience possess ye your souls. \nAnd when ye shall see Jerusalem compassed with armies, then know that the desolation thereof is nigh. \nThen let them which are in Judaea flee to the mountains; and let them which are in the midst of it depart out; and let not them that are in the countries enter thereinto. \nFor these be the days of vengeance, that all things which are written may be fulfilled. \nBut woe unto them that are with child, and to them that give suck, in those days! for there shall be great distress in the land, and wrath upon this people. \nAnd they shall fall by the edge of the sword, and shall be led away captive into all nations: and Jerusalem shall be trodden down of the Gentiles, until the times of the Gentiles be fulfilled. \nAnd there shall be signs in the sun, and in the moon, and in the stars; and upon the earth distress of nations, with perplexity; the sea and the waves roaring; \nMen's hearts failing them for fear, and for looking after those things which are coming on the earth: for the powers of heaven shall be shaken. \nAnd then shall they see the Son of man coming in a cloud with power and great glory. \nAnd when these things begin to come to pass, then look up, and lift up your heads; for your redemption draweth nigh. \nAnd he spake to them a parable; Behold the fig tree, and all the trees; \nWhen they now shoot forth, ye see and know of your own selves that summer is now nigh at hand. \nSo likewise ye, when ye see these things come to pass, know ye that the kingdom of God is nigh at hand. \nVerily I say unto you, This generation shall not pass away, till all be fulfilled. \nHeaven and earth shall pass away: but my words shall not pass away. \nAnd take heed to yourselves, lest at any time your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and so that day come upon you unawares. \nFor as a snare shall it come on all them that dwell on the face of the whole earth. \nWatch ye therefore, and pray always, that ye may be accounted worthy to escape all these things that shall come to pass, and to stand before the Son of man. \nAnd in the day time he was teaching in the temple; and at night he went out, and abode in the mount that is called the mount of Olives. \nAnd all the people came early in the morning to him in the temple, for to hear him. \nNow the feast of unleavened bread drew nigh, which is called the Passover. \nAnd the chief priests and scribes sought how they might kill him; for they feared the people. \nThen entered Satan into Judas surnamed Iscariot, being of the number of the twelve. \nAnd he went his way, and communed with the chief priests and captains, how he might betray him unto them. \nAnd they were glad, and covenanted to give him money. \nAnd he promised, and sought opportunity to betray him unto them in the absence of the multitude. \nThen came the day of unleavened bread, when the passover must be killed. \nAnd he sent Peter and John, saying, Go and prepare us the passover, that we may eat. \nAnd they said unto him, Where wilt thou that we prepare? \nAnd he said unto them, Behold, when ye are entered into the city, there shall a man meet you, bearing a pitcher of water; follow him into the house where he entereth in. \nAnd ye shall say unto the goodman of the house, The Master saith unto thee, Where is the guestchamber, where I shall eat the passover with my disciples? \nAnd he shall shew you a large upper room furnished: there make ready. \nAnd they went, and found as he had said unto them: and they made ready the passover. \nAnd when the hour was come, he sat down, and the twelve apostles with him. \nAnd he said unto them, With desire I have desired to eat this passover with you before I suffer: \nFor I say unto you, I will not any more eat thereof, until it be fulfilled in the kingdom of God. \nAnd he took the cup, and gave thanks, and said, Take this, and divide it among yourselves: \nFor I say unto you, I will not drink of the fruit of the vine, until the kingdom of God shall come. \nAnd he took bread, and gave thanks, and brake it, and gave unto them, saying, This is my body which is given for you: this do in remembrance of me. \nLikewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you. \nBut, behold, the hand of him that betrayeth me is with me on the table. \nAnd truly the Son of man goeth, as it was determined: but woe unto that man by whom he is betrayed! \nAnd they began to enquire among themselves, which of them it was that should do this thing. \nAnd there was also a strife among them, which of them should be accounted the greatest. \nAnd he said unto them, The kings of the Gentiles exercise lordship over them; and they that exercise authority upon them are called benefactors. \nBut ye shall not be so: but he that is greatest among you, let him be as the younger; and he that is chief, as he that doth serve. \nFor whether is greater, he that sitteth at meat, or he that serveth? is not he that sitteth at meat? but I am among you as he that serveth. \nYe are they which have continued with me in my temptations. \nAnd I appoint unto you a kingdom, as my Father hath appointed unto me; \nThat ye may eat and drink at my table in my kingdom, and sit on thrones judging the twelve tribes of Israel. \nAnd the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat: \nBut I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren. \nAnd he said unto him, Lord, I am ready to go with thee, both into prison, and to death. \nAnd he said, I tell thee, Peter, the cock shall not crow this day, before that thou shalt thrice deny that thou knowest me. \nAnd he said unto them, When I sent you without purse, and scrip, and shoes, lacked ye any thing? And they said, Nothing. \nThen said he unto them, But now, he that hath a purse, let him take it, and likewise his scrip: and he that hath no sword, let him sell his garment, and buy one. \nFor I say unto you, that this that is written must yet be accomplished in me, And he was reckoned among the transgressors: for the things concerning me have an end. \nAnd they said, Lord, behold, here are two swords. And he said unto them, It is enough. \nAnd he came out, and went, as he was wont, to the mount of Olives; and his disciples also followed him. \nAnd when he was at the place, he said unto them, Pray that ye enter not into temptation. \nAnd he was withdrawn from them about a stone's cast, and kneeled down, and prayed, \nSaying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done. \nAnd there appeared an angel unto him from heaven, strengthening him. \nAnd being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground. \nAnd when he rose up from prayer, and was come to his disciples, he found them sleeping for sorrow, \nAnd said unto them, Why sleep ye? rise and pray, lest ye enter into temptation. \nAnd while he yet spake, behold a multitude, and he that was called Judas, one of the twelve, went before them, and drew near unto Jesus to kiss him. \nBut Jesus said unto him, Judas, betrayest thou the Son of man with a kiss? \nWhen they which were about him saw what would follow, they said unto him, Lord, shall we smite with the sword? \nAnd one of them smote the servant of the high priest, and cut off his right ear. \nAnd Jesus answered and said, Suffer ye thus far. And he touched his ear, and healed him. \nThen Jesus said unto the chief priests, and captains of the temple, and the elders, which were come to him, Be ye come out, as against a thief, with swords and staves? \nWhen I was daily with you in the temple, ye stretched forth no hands against me: but this is your hour, and the power of darkness. \nThen took they him, and led him, and brought him into the high priest's house. And Peter followed afar off. \nAnd when they had kindled a fire in the midst of the hall, and were set down together, Peter sat down among them. \nBut a certain maid beheld him as he sat by the fire, and earnestly looked upon him, and said, This man was also with him. \nAnd he denied him, saying, Woman, I know him not. \nAnd after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not. \nAnd about the space of one hour after another confidently affirmed, saying, Of a truth this fellow also was with him: for he is a Galilaean. \nAnd Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew. \nAnd the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how he had said unto him, Before the cock crow, thou shalt deny me thrice. \nAnd Peter went out, and wept bitterly. \nAnd the men that held Jesus mocked him, and smote him. \nAnd when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee? \nAnd many other things blasphemously spake they against him. \nAnd as soon as it was day, the elders of the people and the chief priests and the scribes came together, and led him into their council, saying, \nArt thou the Christ? tell us. And he said unto them, If I tell you, ye will not believe: \nAnd if I also ask you, ye will not answer me, nor let me go. \nHereafter shall the Son of man sit on the right hand of the power of God. \nThen said they all, Art thou then the Son of God? And he said unto them, Ye say that I am. \nAnd they said, What need we any further witness? for we ourselves have heard of his own mouth. \nAnd the whole multitude of them arose, and led him unto Pilate. \nAnd they began to accuse him, saying, We found this fellow perverting the nation, and forbidding to give tribute to Caesar, saying that he himself is Christ a King. \nAnd Pilate asked him, saying, Art thou the King of the Jews? And he answered him and said, Thou sayest it. \nThen said Pilate to the chief priests and to the people, I find no fault in this man. \nAnd they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place. \nWhen Pilate heard of Galilee, he asked whether the man were a Galilaean. \nAnd as soon as he knew that he belonged unto Herod's jurisdiction, he sent him to Herod, who himself also was at Jerusalem at that time. \nAnd when Herod saw Jesus, he was exceeding glad: for he was desirous to see him of a long season, because he had heard many things of him; and he hoped to have seen some miracle done by him. \nThen he questioned with him in many words; but he answered him nothing. \nAnd the chief priests and scribes stood and vehemently accused him. \nAnd Herod with his men of war set him at nought, and mocked him, and arrayed him in a gorgeous robe, and sent him again to Pilate. \nAnd the same day Pilate and Herod were made friends together: for before they were at enmity between themselves. \nAnd Pilate, when he had called together the chief priests and the rulers and the people, \nSaid unto them, Ye have brought this man unto me, as one that perverteth the people: and, behold, I, having examined him before you, have found no fault in this man touching those things whereof ye accuse him: \nNo, nor yet Herod: for I sent you to him; and, lo, nothing worthy of death is done unto him. \nI will therefore chastise him, and release him. \n(For of necessity he must release one unto them at the feast.) \nAnd they cried out all at once, saying, Away with this man, and release unto us Barabbas: \n(Who for a certain sedition made in the city, and for murder, was cast into prison.) \nPilate therefore, willing to release Jesus, spake again to them. \nBut they cried, saying, Crucify him, crucify him. \nAnd he said unto them the third time, Why, what evil hath he done? I have found no cause of death in him: I will therefore chastise him, and let him go. \nAnd they were instant with loud voices, requiring that he might be crucified. And the voices of them and of the chief priests prevailed. \nAnd Pilate gave sentence that it should be as they required. \nAnd he released unto them him that for sedition and murder was cast into prison, whom they had desired; but he delivered Jesus to their will. \nAnd as they led him away, they laid hold upon one Simon, a Cyrenian, coming out of the country, and on him they laid the cross, that he might bear it after Jesus. \nAnd there followed him a great company of people, and of women, which also bewailed and lamented him. \nBut Jesus turning unto them said, Daughters of Jerusalem, weep not for me, but weep for yourselves, and for your children. \nFor, behold, the days are coming, in the which they shall say, Blessed are the barren, and the wombs that never bare, and the paps which never gave suck. \nThen shall they begin to say to the mountains, Fall on us; and to the hills, Cover us. \nFor if they do these things in a green tree, what shall be done in the dry? \nAnd there were also two other, malefactors, led with him to be put to death. \nAnd when they were come to the place, which is called Calvary, there they crucified him, and the malefactors, one on the right hand, and the other on the left. \nThen said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots. \nAnd the people stood beholding. And the rulers also with them derided him, saying, He saved others; let him save himself, if he be Christ, the chosen of God. \nAnd the soldiers also mocked him, coming to him, and offering him vinegar, \nAnd saying, If thou be the king of the Jews, save thyself. \nAnd a superscription also was written over him in letters of Greek, and Latin, and Hebrew, THIS IS THE KING OF THE JEWS. \nAnd one of the malefactors which were hanged railed on him, saying, If thou be Christ, save thyself and us. \nBut the other answering rebuked him, saying, Dost not thou fear God, seeing thou art in the same condemnation? \nAnd we indeed justly; for we receive the due reward of our deeds: but this man hath done nothing amiss. \nAnd he said unto Jesus, Lord, remember me when thou comest into thy kingdom. \nAnd Jesus said unto him, Verily I say unto thee, To day shalt thou be with me in paradise. \nAnd it was about the sixth hour, and there was a darkness over all the earth until the ninth hour. \nAnd the sun was darkened, and the veil of the temple was rent in the midst. \nAnd when Jesus had cried with a loud voice, he said, Father, into thy hands I commend my spirit: and having said thus, he gave up the ghost. \nNow when the centurion saw what was done, he glorified God, saying, Certainly this was a righteous man. \nAnd all the people that came together to that sight, beholding the things which were done, smote their breasts, and returned. \nAnd all his acquaintance, and the women that followed him from Galilee, stood afar off, beholding these things. \nAnd, behold, there was a man named Joseph, a counsellor; and he was a good man, and a just: \n(The same had not consented to the counsel and deed of them;) he was of Arimathaea, a city of the Jews: who also himself waited for the kingdom of God. \nThis man went unto Pilate, and begged the body of Jesus. \nAnd he took it down, and wrapped it in linen, and laid it in a sepulchre that was hewn in stone, wherein never man before was laid. \nAnd that day was the preparation, and the sabbath drew on. \nAnd the women also, which came with him from Galilee, followed after, and beheld the sepulchre, and how his body was laid. \nAnd they returned, and prepared spices and ointments; and rested the sabbath day according to the commandment. \nNow upon the first day of the week, very early in the morning, they came unto the sepulchre, bringing the spices which they had prepared, and certain others with them. \nAnd they found the stone rolled away from the sepulchre. \nAnd they entered in, and found not the body of the Lord Jesus. \nAnd it came to pass, as they were much perplexed thereabout, behold, two men stood by them in shining garments: \nAnd as they were afraid, and bowed down their faces to the earth, they said unto them, Why seek ye the living among the dead? \nHe is not here, but is risen: remember how he spake unto you when he was yet in Galilee, \nSaying, The Son of man must be delivered into the hands of sinful men, and be crucified, and the third day rise again. \nAnd they remembered his words, \nAnd returned from the sepulchre, and told all these things unto the eleven, and to all the rest. \nIt was Mary Magdalene and Joanna, and Mary the mother of James, and other women that were with them, which told these things unto the apostles. \nAnd their words seemed to them as idle tales, and they believed them not. \nThen arose Peter, and ran unto the sepulchre; and stooping down, he beheld the linen clothes laid by themselves, and departed, wondering in himself at that which was come to pass. \nAnd, behold, two of them went that same day to a village called Emmaus, which was from Jerusalem about threescore furlongs. \nAnd they talked together of all these things which had happened. \nAnd it came to pass, that, while they communed together and reasoned, Jesus himself drew near, and went with them. \nBut their eyes were holden that they should not know him. \nAnd he said unto them, What manner of communications are these that ye have one to another, as ye walk, and are sad? \nAnd the one of them, whose name was Cleopas, answering said unto him, Art thou only a stranger in Jerusalem, and hast not known the things which are come to pass there in these days? \nAnd he said unto them, What things? And they said unto him, Concerning Jesus of Nazareth, which was a prophet mighty in deed and word before God and all the people: \nAnd how the chief priests and our rulers delivered him to be condemned to death, and have crucified him. \nBut we trusted that it had been he which should have redeemed Israel: and beside all this, to day is the third day since these things were done. \nYea, and certain women also of our company made us astonished, which were early at the sepulchre; \nAnd when they found not his body, they came, saying, that they had also seen a vision of angels, which said that he was alive. \nAnd certain of them which were with us went to the sepulchre, and found it even so as the women had said: but him they saw not. \nThen he said unto them, O fools, and slow of heart to believe all that the prophets have spoken: \nOught not Christ to have suffered these things, and to enter into his glory? \nAnd beginning at Moses and all the prophets, he expounded unto them in all the scriptures the things concerning himself. \nAnd they drew nigh unto the village, whither they went: and he made as though he would have gone further. \nBut they constrained him, saying, Abide with us: for it is toward evening, and the day is far spent. And he went in to tarry with them. \nAnd it came to pass, as he sat at meat with them, he took bread, and blessed it, and brake, and gave to them. \nAnd their eyes were opened, and they knew him; and he vanished out of their sight. \nAnd they said one to another, Did not our heart burn within us, while he talked with us by the way, and while he opened to us the scriptures? \nAnd they rose up the same hour, and returned to Jerusalem, and found the eleven gathered together, and them that were with them, \nSaying, The Lord is risen indeed, and hath appeared to Simon. \nAnd they told what things were done in the way, and how he was known of them in breaking of bread. \nAnd as they thus spake, Jesus himself stood in the midst of them, and saith unto them, Peace be unto you. \nBut they were terrified and affrighted, and supposed that they had seen a spirit. \nAnd he said unto them, Why are ye troubled? and why do thoughts arise in your hearts? \nBehold my hands and my feet, that it is I myself: handle me, and see; for a spirit hath not flesh and bones, as ye see me have. \nAnd when he had thus spoken, he shewed them his hands and his feet. \nAnd while they yet believed not for joy, and wondered, he said unto them, Have ye here any meat? \nAnd they gave him a piece of a broiled fish, and of an honeycomb. \nAnd he took it, and did eat before them. \nAnd he said unto them, These are the words which I spake unto you, while I was yet with you, that all things must be fulfilled, which were written in the law of Moses, and in the prophets, and in the psalms, concerning me. \nThen opened he their understanding, that they might understand the scriptures, \nAnd said unto them, Thus it is written, and thus it behoved Christ to suffer, and to rise from the dead the third day: \nAnd that repentance and remission of sins should be preached in his name among all nations, beginning at Jerusalem. \nAnd ye are witnesses of these things. \nAnd, behold, I send the promise of my Father upon you: but tarry ye in the city of Jerusalem, until ye be endued with power from on high. \nAnd he led them out as far as to Bethany, and he lifted up his hands, and blessed them. \nAnd it came to pass, while he blessed them, he was parted from them, and carried up into heaven. \nAnd they worshipped him, and returned to Jerusalem with great joy: \nAnd were continually in the temple, praising and blessing God. Amen. \nIn the beginning was the Word, and the Word was with God, and the Word was God. \nThe same was in the beginning with God. \nAll things were made by him; and without him was not any thing made that was made. \nIn him was life; and the life was the light of men. \nAnd the light shineth in darkness; and the darkness comprehended it not. \nThere was a man sent from God, whose name was John. \nThe same came for a witness, to bear witness of the Light, that all men through him might believe. \nHe was not that Light, but was sent to bear witness of that Light. \nThat was the true Light, which lighteth every man that cometh into the world. \nHe was in the world, and the world was made by him, and the world knew him not. \nHe came unto his own, and his own received him not. \nBut as many as received him, to them gave he power to become the sons of God, even to them that believe on his name: \nWhich were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God. \nAnd the Word was made flesh, and dwelt among us, (and we beheld his glory, the glory as of the only begotten of the Father,) full of grace and truth. \nJohn bare witness of him, and cried, saying, This was he of whom I spake, He that cometh after me is preferred before me: for he was before me. \nAnd of his fulness have all we received, and grace for grace. \nFor the law was given by Moses, but grace and truth came by Jesus Christ. \nNo man hath seen God at any time, the only begotten Son, which is in the bosom of the Father, he hath declared him. \nAnd this is the record of John, when the Jews sent priests and Levites from Jerusalem to ask him, Who art thou? \nAnd he confessed, and denied not; but confessed, I am not the Christ. \nAnd they asked him, What then? Art thou Elias? And he saith, I am not. Art thou that prophet? And he answered, No. \nThen said they unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself? \nHe said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said the prophet Esaias. \nAnd they which were sent were of the Pharisees. \nAnd they asked him, and said unto him, Why baptizest thou then, if thou be not that Christ, nor Elias, neither that prophet? \nJohn answered them, saying, I baptize with water: but there standeth one among you, whom ye know not; \nHe it is, who coming after me is preferred before me, whose shoe's latchet I am not worthy to unloose. \nThese things were done in Bethabara beyond Jordan, where John was baptizing. \nThe next day John seeth Jesus coming unto him, and saith, Behold the Lamb of God, which taketh away the sin of the world. \nThis is he of whom I said, After me cometh a man which is preferred before me: for he was before me. \nAnd I knew him not: but that he should be made manifest to Israel, therefore am I come baptizing with water. \nAnd John bare record, saying, I saw the Spirit descending from heaven like a dove, and it abode upon him. \nAnd I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost. \nAnd I saw, and bare record that this is the Son of God. \nAgain the next day after John stood, and two of his disciples; \nAnd looking upon Jesus as he walked, he saith, Behold the Lamb of God! \nAnd the two disciples heard him speak, and they followed Jesus. \nThen Jesus turned, and saw them following, and saith unto them, What seek ye? They said unto him, Rabbi, (which is to say, being interpreted, Master,) where dwellest thou? \nHe saith unto them, Come and see. They came and saw where he dwelt, and abode with him that day: for it was about the tenth hour. \nOne of the two which heard John speak, and followed him, was Andrew, Simon Peter's brother. \nHe first findeth his own brother Simon, and saith unto him, We have found the Messias, which is, being interpreted, the Christ. \nAnd he brought him to Jesus. And when Jesus beheld him, he said, Thou art Simon the son of Jona: thou shalt be called Cephas, which is by interpretation, A stone. \nThe day following Jesus would go forth into Galilee, and findeth Philip, and saith unto him, Follow me. \nNow Philip was of Bethsaida, the city of Andrew and Peter. \nPhilip findeth Nathanael, and saith unto him, We have found him, of whom Moses in the law, and the prophets, did write, Jesus of Nazareth, the son of Joseph. \nAnd Nathanael said unto him, Can there any good thing come out of Nazareth? Philip saith unto him, Come and see. \nJesus saw Nathanael coming to him, and saith of him, Behold an Israelite indeed, in whom is no guile! \nNathanael saith unto him, Whence knowest thou me? Jesus answered and said unto him, Before that Philip called thee, when thou wast under the fig tree, I saw thee. \nNathanael answered and saith unto him, Rabbi, thou art the Son of God; thou art the King of Israel. \nJesus answered and said unto him, Because I said unto thee, I saw thee under the fig tree, believest thou? thou shalt see greater things than these. \nAnd he saith unto him, Verily, verily, I say unto you, Hereafter ye shall see heaven open, and the angels of God ascending and descending upon the Son of man. \nAnd the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there: \nAnd both Jesus was called, and his disciples, to the marriage. \nAnd when they wanted wine, the mother of Jesus saith unto him, They have no wine. \nJesus saith unto her, Woman, what have I to do with thee? mine hour is not yet come. \nHis mother saith unto the servants, Whatsoever he saith unto you, do it. \nAnd there were set there six waterpots of stone, after the manner of the purifying of the Jews, containing two or three firkins apiece. \nJesus saith unto them, Fill the waterpots with water. And they filled them up to the brim. \nAnd he saith unto them, Draw out now, and bear unto the governor of the feast. And they bare it. \nWhen the ruler of the feast had tasted the water that was made wine, and knew not whence it was: (but the servants which drew the water knew;) the governor of the feast called the bridegroom, \nAnd saith unto him, Every man at the beginning doth set forth good wine; and when men have well drunk, then that which is worse: but thou hast kept the good wine until now. \nThis beginning of miracles did Jesus in Cana of Galilee, and manifested forth his glory; and his disciples believed on him. \nAfter this he went down to Capernaum, he, and his mother, and his brethren, and his disciples: and they continued there not many days. \nAnd the Jews' passover was at hand, and Jesus went up to Jerusalem. \nAnd found in the temple those that sold oxen and sheep and doves, and the changers of money sitting: \nAnd when he had made a scourge of small cords, he drove them all out of the temple, and the sheep, and the oxen; and poured out the changers' money, and overthrew the tables; \nAnd said unto them that sold doves, Take these things hence; make not my Father's house an house of merchandise. \nAnd his disciples remembered that it was written, The zeal of thine house hath eaten me up. \nThen answered the Jews and said unto him, What sign shewest thou unto us, seeing that thou doest these things? \nJesus answered and said unto them, Destroy this temple, and in three days I will raise it up. \nThen said the Jews, Forty and six years was this temple in building, and wilt thou rear it up in three days? \nBut he spake of the temple of his body. \nWhen therefore he was risen from the dead, his disciples remembered that he had said this unto them; and they believed the scripture, and the word which Jesus had said. \nNow when he was in Jerusalem at the passover, in the feast day, many believed in his name, when they saw the miracles which he did. \nBut Jesus did not commit himself unto them, because he knew all men, \nAnd needed not that any should testify of man: for he knew what was in man. \nThere was a man of the Pharisees, named Nicodemus, a ruler of the Jews: \nThe same came to Jesus by night, and said unto him, Rabbi, we know that thou art a teacher come from God: for no man can do these miracles that thou doest, except God be with him. \nJesus answered and said unto him, Verily, verily, I say unto thee, Except a man be born again, he cannot see the kingdom of God. \nNicodemus saith unto him, How can a man be born when he is old? can he enter the second time into his mother's womb, and be born? \nJesus answered, Verily, verily, I say unto thee, Except a man be born of water and of the Spirit, he cannot enter into the kingdom of God. \nThat which is born of the flesh is flesh; and that which is born of the Spirit is spirit. \nMarvel not that I said unto thee, Ye must be born again. \nThe wind bloweth where it listeth, and thou hearest the sound thereof, but canst not tell whence it cometh, and whither it goeth: so is every one that is born of the Spirit. \nNicodemus answered and said unto him, How can these things be? \nJesus answered and said unto him, Art thou a master of Israel, and knowest not these things? \nVerily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness. \nIf I have told you earthly things, and ye believe not, how shall ye believe, if I tell you of heavenly things? \nAnd no man hath ascended up to heaven, but he that came down from heaven, even the Son of man which is in heaven. \nAnd as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up: \nThat whosoever believeth in him should not perish, but have eternal life. \nFor God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. \nFor God sent not his Son into the world to condemn the world; but that the world through him might be saved. \nHe that believeth on him is not condemned: but he that believeth not is condemned already, because he hath not believed in the name of the only begotten Son of God. \nAnd this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil. \nFor every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. \nBut he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God. \nAfter these things came Jesus and his disciples into the land of Judaea; and there he tarried with them, and baptized. \nAnd John also was baptizing in Aenon near to Salim, because there was much water there: and they came, and were baptized. \nFor John was not yet cast into prison. \nThen there arose a question between some of John's disciples and the Jews about purifying. \nAnd they came unto John, and said unto him, Rabbi, he that was with thee beyond Jordan, to whom thou barest witness, behold, the same baptizeth, and all men come to him. \nJohn answered and said, A man can receive nothing, except it be given him from heaven. \nYe yourselves bear me witness, that I said, I am not the Christ, but that I am sent before him. \nHe that hath the bride is the bridegroom: but the friend of the bridegroom, which standeth and heareth him, rejoiceth greatly because of the bridegroom's voice: this my joy therefore is fulfilled. \nHe must increase, but I must decrease. \nHe that cometh from above is above all: he that is of the earth is earthly, and speaketh of the earth: he that cometh from heaven is above all. \nAnd what he hath seen and heard, that he testifieth; and no man receiveth his testimony. \nHe that hath received his testimony hath set to his seal that God is true. \nFor he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him. \nThe Father loveth the Son, and hath given all things into his hand. \nHe that believeth on the Son hath everlasting life: and he that believeth not the Son shall not see life; but the wrath of God abideth on him. \nWhen therefore the LORD knew how the Pharisees had heard that Jesus made and baptized more disciples than John, \n(Though Jesus himself baptized not, but his disciples,) \nHe left Judaea, and departed again into Galilee. \nAnd he must needs go through Samaria. \nThen cometh he to a city of Samaria, which is called Sychar, near to the parcel of ground that Jacob gave to his son Joseph. \nNow Jacob's well was there. Jesus therefore, being wearied with his journey, sat thus on the well: and it was about the sixth hour. \nThere cometh a woman of Samaria to draw water: Jesus saith unto her, Give me to drink. \n(For his disciples were gone away unto the city to buy meat.) \nThen saith the woman of Samaria unto him, How is it that thou, being a Jew, askest drink of me, which am a woman of Samaria? for the Jews have no dealings with the Samaritans. \nJesus answered and said unto her, If thou knewest the gift of God, and who it is that saith to thee, Give me to drink; thou wouldest have asked of him, and he would have given thee living water. \nThe woman saith unto him, Sir, thou hast nothing to draw with, and the well is deep: from whence then hast thou that living water? \nArt thou greater than our father Jacob, which gave us the well, and drank thereof himself, and his children, and his cattle? \nJesus answered and said unto her, Whosoever drinketh of this water shall thirst again: \nBut whosoever drinketh of the water that I shall give him shall never thirst; but the water that I shall give him shall be in him a well of water springing up into everlasting life. \nThe woman saith unto him, Sir, give me this water, that I thirst not, neither come hither to draw. \nJesus saith unto her, Go, call thy husband, and come hither. \nThe woman answered and said, I have no husband. Jesus said unto her, Thou hast well said, I have no husband: \nFor thou hast had five husbands; and he whom thou now hast is not thy husband: in that saidst thou truly. \nThe woman saith unto him, Sir, I perceive that thou art a prophet. \nOur fathers worshipped in this mountain; and ye say, that in Jerusalem is the place where men ought to worship. \nJesus saith unto her, Woman, believe me, the hour cometh, when ye shall neither in this mountain, nor yet at Jerusalem, worship the Father. \nYe worship ye know not what: we know what we worship: for salvation is of the Jews. \nBut the hour cometh, and now is, when the true worshippers shall worship the Father in spirit and in truth: for the Father seeketh such to worship him. \nGod is a Spirit: and they that worship him must worship him in spirit and in truth. \nThe woman saith unto him, I know that Messias cometh, which is called Christ: when he is come, he will tell us all things. \nJesus saith unto her, I that speak unto thee am he. \nAnd upon this came his disciples, and marvelled that he talked with the woman: yet no man said, What seekest thou? or, Why talkest thou with her? \nThe woman then left her waterpot, and went her way into the city, and saith to the men, \nCome, see a man, which told me all things that ever I did: is not this the Christ? \nThen they went out of the city, and came unto him. \nIn the mean while his disciples prayed him, saying, Master, eat. \nBut he said unto them, I have meat to eat that ye know not of. \nTherefore said the disciples one to another, Hath any man brought him ought to eat? \nJesus saith unto them, My meat is to do the will of him that sent me, and to finish his work. \nSay not ye, There are yet four months, and then cometh harvest? behold, I say unto you, Lift up your eyes, and look on the fields; for they are white already to harvest. \nAnd he that reapeth receiveth wages, and gathereth fruit unto life eternal: that both he that soweth and he that reapeth may rejoice together. \nAnd herein is that saying true, One soweth, and another reapeth. \nI sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours. \nAnd many of the Samaritans of that city believed on him for the saying of the woman, which testified, He told me all that ever I did. \nSo when the Samaritans were come unto him, they besought him that he would tarry with them: and he abode there two days. \nAnd many more believed because of his own word; \nAnd said unto the woman, Now we believe, not because of thy saying: for we have heard him ourselves, and know that this is indeed the Christ, the Saviour of the world. \nNow after two days he departed thence, and went into Galilee. \nFor Jesus himself testified, that a prophet hath no honour in his own country. \nThen when he was come into Galilee, the Galilaeans received him, having seen all the things that he did at Jerusalem at the feast: for they also went unto the feast. \nSo Jesus came again into Cana of Galilee, where he made the water wine. And there was a certain nobleman, whose son was sick at Capernaum. \nWhen he heard that Jesus was come out of Judaea into Galilee, he went unto him, and besought him that he would come down, and heal his son: for he was at the point of death. \nThen said Jesus unto him, Except ye see signs and wonders, ye will not believe. \nThe nobleman saith unto him, Sir, come down ere my child die. \nJesus saith unto him, Go thy way; thy son liveth. And the man believed the word that Jesus had spoken unto him, and he went his way. \nAnd as he was now going down, his servants met him, and told him, saying, Thy son liveth. \nThen enquired he of them the hour when he began to amend. And they said unto him, Yesterday at the seventh hour the fever left him. \nSo the father knew that it was at the same hour, in the which Jesus said unto him, Thy son liveth: and himself believed, and his whole house. \nThis is again the second miracle that Jesus did, when he was come out of Judaea into Galilee. \nAfter this there was a feast of the Jews; and Jesus went up to Jerusalem. \nNow there is at Jerusalem by the sheep market a pool, which is called in the Hebrew tongue Bethesda, having five porches. \nIn these lay a great multitude of impotent folk, of blind, halt, withered, waiting for the moving of the water. \nFor an angel went down at a certain season into the pool, and troubled the water: whosoever then first after the troubling of the water stepped in was made whole of whatsoever disease he had. \nAnd a certain man was there, which had an infirmity thirty and eight years. \nWhen Jesus saw him lie, and knew that he had been now a long time in that case, he saith unto him, Wilt thou be made whole? \nThe impotent man answered him, Sir, I have no man, when the water is troubled, to put me into the pool: but while I am coming, another steppeth down before me. \nJesus saith unto him, Rise, take up thy bed, and walk. \nAnd immediately the man was made whole, and took up his bed, and walked: and on the same day was the sabbath. \nThe Jews therefore said unto him that was cured, It is the sabbath day: it is not lawful for thee to carry thy bed. \nHe answered them, He that made me whole, the same said unto me, Take up thy bed, and walk. \nThen asked they him, What man is that which said unto thee, Take up thy bed, and walk? \nAnd he that was healed wist not who it was: for Jesus had conveyed himself away, a multitude being in that place. \nAfterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing come unto thee. \nThe man departed, and told the Jews that it was Jesus, which had made him whole. \nAnd therefore did the Jews persecute Jesus, and sought to slay him, because he had done these things on the sabbath day. \nBut Jesus answered them, My Father worketh hitherto, and I work. \nTherefore the Jews sought the more to kill him, because he not only had broken the sabbath, but said also that God was his Father, making himself equal with God. \nThen answered Jesus and said unto them, Verily, verily, I say unto you, The Son can do nothing of himself, but what he seeth the Father do: for what things soever he doeth, these also doeth the Son likewise. \nFor the Father loveth the Son, and sheweth him all things that himself doeth: and he will shew him greater works than these, that ye may marvel. \nFor as the Father raiseth up the dead, and quickeneth them; even so the Son quickeneth whom he will. \nFor the Father judgeth no man, but hath committed all judgment unto the Son: \nThat all men should honour the Son, even as they honour the Father. He that honoureth not the Son honoureth not the Father which hath sent him. \nVerily, verily, I say unto you, He that heareth my word, and believeth on him that sent me, hath everlasting life, and shall not come into condemnation; but is passed from death unto life. \nVerily, verily, I say unto you, The hour is coming, and now is, when the dead shall hear the voice of the Son of God: and they that hear shall live. \nFor as the Father hath life in himself; so hath he given to the Son to have life in himself; \nAnd hath given him authority to execute judgment also, because he is the Son of man. \nMarvel not at this: for the hour is coming, in the which all that are in the graves shall hear his voice, \nAnd shall come forth; they that have done good, unto the resurrection of life; and they that have done evil, unto the resurrection of damnation. \nI can of mine own self do nothing: as I hear, I judge: and my judgment is just; because I seek not mine own will, but the will of the Father which hath sent me. \nIf I bear witness of myself, my witness is not true. \nThere is another that beareth witness of me; and I know that the witness which he witnesseth of me is true. \nYe sent unto John, and he bare witness unto the truth. \nBut I receive not testimony from man: but these things I say, that ye might be saved. \nHe was a burning and a shining light: and ye were willing for a season to rejoice in his light. \nBut I have greater witness than that of John: for the works which the Father hath given me to finish, the same works that I do, bear witness of me, that the Father hath sent me. \nAnd the Father himself, which hath sent me, hath borne witness of me. Ye have neither heard his voice at any time, nor seen his shape. \nAnd ye have not his word abiding in you: for whom he hath sent, him ye believe not. \nSearch the scriptures; for in them ye think ye have eternal life: and they are they which testify of me. \nAnd ye will not come to me, that ye might have life. \nI receive not honour from men. \nBut I know you, that ye have not the love of God in you. \nI am come in my Father's name, and ye receive me not: if another shall come in his own name, him ye will receive. \nHow can ye believe, which receive honour one of another, and seek not the honour that cometh from God only? \nDo not think that I will accuse you to the Father: there is one that accuseth you, even Moses, in whom ye trust. \nFor had ye believed Moses, ye would have believed me; for he wrote of me. \nBut if ye believe not his writings, how shall ye believe my words? \nAfter these things Jesus went over the sea of Galilee, which is the sea of Tiberias. \nAnd a great multitude followed him, because they saw his miracles which he did on them that were diseased. \nAnd Jesus went up into a mountain, and there he sat with his disciples. \nAnd the passover, a feast of the Jews, was nigh. \nWhen Jesus then lifted up his eyes, and saw a great company come unto him, he saith unto Philip, Whence shall we buy bread, that these may eat? \nAnd this he said to prove him: for he himself knew what he would do. \nPhilip answered him, Two hundred pennyworth of bread is not sufficient for them, that every one of them may take a little. \nOne of his disciples, Andrew, Simon Peter's brother, saith unto him, \nThere is a lad here, which hath five barley loaves, and two small fishes: but what are they among so many? \nAnd Jesus said, Make the men sit down. Now there was much grass in the place. So the men sat down, in number about five thousand. \nAnd Jesus took the loaves; and when he had given thanks, he distributed to the disciples, and the disciples to them that were set down; and likewise of the fishes as much as they would. \nWhen they were filled, he said unto his disciples, Gather up the fragments that remain, that nothing be lost. \nTherefore they gathered them together, and filled twelve baskets with the fragments of the five barley loaves, which remained over and above unto them that had eaten. \nThen those men, when they had seen the miracle that Jesus did, said, This is of a truth that prophet that should come into the world. \nWhen Jesus therefore perceived that they would come and take him by force, to make him a king, he departed again into a mountain himself alone. \nAnd when even was now come, his disciples went down unto the sea, \nAnd entered into a ship, and went over the sea toward Capernaum. And it was now dark, and Jesus was not come to them. \nAnd the sea arose by reason of a great wind that blew. \nSo when they had rowed about five and twenty or thirty furlongs, they see Jesus walking on the sea, and drawing nigh unto the ship: and they were afraid. \nBut he saith unto them, It is I; be not afraid. \nThen they willingly received him into the ship: and immediately the ship was at the land whither they went. \nThe day following, when the people which stood on the other side of the sea saw that there was none other boat there, save that one whereinto his disciples were entered, and that Jesus went not with his disciples into the boat, but that his disciples were gone away alone; \n(Howbeit there came other boats from Tiberias nigh unto the place where they did eat bread, after that the Lord had given thanks:) \nWhen the people therefore saw that Jesus was not there, neither his disciples, they also took shipping, and came to Capernaum, seeking for Jesus. \nAnd when they had found him on the other side of the sea, they said unto him, Rabbi, when camest thou hither? \nJesus answered them and said, Verily, verily, I say unto you, Ye seek me, not because ye saw the miracles, but because ye did eat of the loaves, and were filled. \nLabour not for the meat which perisheth, but for that meat which endureth unto everlasting life, which the Son of man shall give unto you: for him hath God the Father sealed. \nThen said they unto him, What shall we do, that we might work the works of God? \nJesus answered and said unto them, This is the work of God, that ye believe on him whom he hath sent. \nThey said therefore unto him, What sign shewest thou then, that we may see, and believe thee? what dost thou work? \nOur fathers did eat manna in the desert; as it is written, He gave them bread from heaven to eat. \nThen Jesus said unto them, Verily, verily, I say unto you, Moses gave you not that bread from heaven; but my Father giveth you the true bread from heaven. \nFor the bread of God is he which cometh down from heaven, and giveth life unto the world. \nThen said they unto him, Lord, evermore give us this bread. \nAnd Jesus said unto them, I am the bread of life: he that cometh to me shall never hunger; and he that believeth on me shall never thirst. \nBut I said unto you, That ye also have seen me, and believe not. \nAll that the Father giveth me shall come to me; and him that cometh to me I will in no wise cast out. \nFor I came down from heaven, not to do mine own will, but the will of him that sent me. \nAnd this is the Father's will which hath sent me, that of all which he hath given me I should lose nothing, but should raise it up again at the last day. \nAnd this is the will of him that sent me, that every one which seeth the Son, and believeth on him, may have everlasting life: and I will raise him up at the last day. \nThe Jews then murmured at him, because he said, I am the bread which came down from heaven. \nAnd they said, Is not this Jesus, the son of Joseph, whose father and mother we know? how is it then that he saith, I came down from heaven? \nJesus therefore answered and said unto them, Murmur not among yourselves. \nNo man can come to me, except the Father which hath sent me draw him: and I will raise him up at the last day. \nIt is written in the prophets, And they shall be all taught of God. Every man therefore that hath heard, and hath learned of the Father, cometh unto me. \nNot that any man hath seen the Father, save he which is of God, he hath seen the Father. \nVerily, verily, I say unto you, He that believeth on me hath everlasting life. \nI am that bread of life. \nYour fathers did eat manna in the wilderness, and are dead. \nThis is the bread which cometh down from heaven, that a man may eat thereof, and not die. \nI am the living bread which came down from heaven: if any man eat of this bread, he shall live for ever: and the bread that I will give is my flesh, which I will give for the life of the world. \nThe Jews therefore strove among themselves, saying, How can this man give us his flesh to eat? \nThen Jesus said unto them, Verily, verily, I say unto you, Except ye eat the flesh of the Son of man, and drink his blood, ye have no life in you. \nWhoso eateth my flesh, and drinketh my blood, hath eternal life; and I will raise him up at the last day. \nFor my flesh is meat indeed, and my blood is drink indeed. \nHe that eateth my flesh, and drinketh my blood, dwelleth in me, and I in him. \nAs the living Father hath sent me, and I live by the Father: so he that eateth me, even he shall live by me. \nThis is that bread which came down from heaven: not as your fathers did eat manna, and are dead: he that eateth of this bread shall live for ever. \nThese things said he in the synagogue, as he taught in Capernaum. \nMany therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it? \nWhen Jesus knew in himself that his disciples murmured at it, he said unto them, Doth this offend you? \nWhat and if ye shall see the Son of man ascend up where he was before? \nIt is the spirit that quickeneth; the flesh profiteth nothing: the words that I speak unto you, they are spirit, and they are life. \nBut there are some of you that believe not. For Jesus knew from the beginning who they were that believed not, and who should betray him. \nAnd he said, Therefore said I unto you, that no man can come unto me, except it were given unto him of my Father. \nFrom that time many of his disciples went back, and walked no more with him. \nThen said Jesus unto the twelve, Will ye also go away? \nThen Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life. \nAnd we believe and are sure that thou art that Christ, the Son of the living God. \nJesus answered them, Have not I chosen you twelve, and one of you is a devil? \nHe spake of Judas Iscariot the son of Simon: for he it was that should betray him, being one of the twelve. \nAfter these things Jesus walked in Galilee: for he would not walk in Jewry, because the Jews sought to kill him. \nNow the Jew's feast of tabernacles was at hand. \nHis brethren therefore said unto him, Depart hence, and go into Judaea, that thy disciples also may see the works that thou doest. \nFor there is no man that doeth any thing in secret, and he himself seeketh to be known openly. If thou do these things, shew thyself to the world. \nFor neither did his brethren believe in him. \nThen Jesus said unto them, My time is not yet come: but your time is alway ready. \nThe world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil. \nGo ye up unto this feast: I go not up yet unto this feast: for my time is not yet full come. \nWhen he had said these words unto them, he abode still in Galilee. \nBut when his brethren were gone up, then went he also up unto the feast, not openly, but as it were in secret. \nThen the Jews sought him at the feast, and said, Where is he? \nAnd there was much murmuring among the people concerning him: for some said, He is a good man: others said, Nay; but he deceiveth the people. \nHowbeit no man spake openly of him for fear of the Jews. \nNow about the midst of the feast Jesus went up into the temple, and taught. \nAnd the Jews marvelled, saying, How knoweth this man letters, having never learned? \nJesus answered them, and said, My doctrine is not mine, but his that sent me. \nIf any man will do his will, he shall know of the doctrine, whether it be of God, or whether I speak of myself. \nHe that speaketh of himself seeketh his own glory: but he that seeketh his glory that sent him, the same is true, and no unrighteousness is in him. \nDid not Moses give you the law, and yet none of you keepeth the law? Why go ye about to kill me? \nThe people answered and said, Thou hast a devil: who goeth about to kill thee? \nJesus answered and said unto them, I have done one work, and ye all marvel. \nMoses therefore gave unto you circumcision; (not because it is of Moses, but of the fathers;) and ye on the sabbath day circumcise a man. \nIf a man on the sabbath day receive circumcision, that the law of Moses should not be broken; are ye angry at me, because I have made a man every whit whole on the sabbath day? \nJudge not according to the appearance, but judge righteous judgment. \nThen said some of them of Jerusalem, Is not this he, whom they seek to kill? \nBut, lo, he speaketh boldly, and they say nothing unto him. Do the rulers know indeed that this is the very Christ? \nHowbeit we know this man whence he is: but when Christ cometh, no man knoweth whence he is. \nThen cried Jesus in the temple as he taught, saying, Ye both know me, and ye know whence I am: and I am not come of myself, but he that sent me is true, whom ye know not. \nBut I know him: for I am from him, and he hath sent me. \nThen they sought to take him: but no man laid hands on him, because his hour was not yet come. \nAnd many of the people believed on him, and said, When Christ cometh, will he do more miracles than these which this man hath done? \nThe Pharisees heard that the people murmured such things concerning him; and the Pharisees and the chief priests sent officers to take him. \nThen said Jesus unto them, Yet a little while am I with you, and then I go unto him that sent me. \nYe shall seek me, and shall not find me: and where I am, thither ye cannot come. \nThen said the Jews among themselves, Whither will he go, that we shall not find him? will he go unto the dispersed among the Gentiles, and teach the Gentiles? \nWhat manner of saying is this that he said, Ye shall seek me, and shall not find me: and where I am, thither ye cannot come? \nIn the last day, that great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me, and drink. \nHe that believeth on me, as the scripture hath said, out of his belly shall flow rivers of living water. \n(But this spake he of the Spirit, which they that believe on him should receive: for the Holy Ghost was not yet given; because that Jesus was not yet glorified.) \nMany of the people therefore, when they heard this saying, said, Of a truth this is the Prophet. \nOthers said, This is the Christ. But some said, Shall Christ come out of Galilee? \nHath not the scripture said, That Christ cometh of the seed of David, and out of the town of Bethlehem, where David was? \nSo there was a division among the people because of him. \nAnd some of them would have taken him; but no man laid hands on him. \nThen came the officers to the chief priests and Pharisees; and they said unto them, Why have ye not brought him? \nThe officers answered, Never man spake like this man. \nThen answered them the Pharisees, Are ye also deceived? \nHave any of the rulers or of the Pharisees believed on him? \nBut this people who knoweth not the law are cursed. \nNicodemus saith unto them, (he that came to Jesus by night, being one of them,) \nDoth our law judge any man, before it hear him, and know what he doeth? \nThey answered and said unto him, Art thou also of Galilee? Search, and look: for out of Galilee ariseth no prophet. \nAnd every man went unto his own house. \nJesus went unto the mount of Olives. \nAnd early in the morning he came again into the temple, and all the people came unto him; and he sat down, and taught them. \nAnd the scribes and Pharisees brought unto him a woman taken in adultery; and when they had set her in the midst, \nThey say unto him, Master, this woman was taken in adultery, in the very act. \nNow Moses in the law commanded us, that such should be stoned: but what sayest thou? \nThis they said, tempting him, that they might have to accuse him. But Jesus stooped down, and with his finger wrote on the ground, as though he heard them not. \nSo when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her. \nAnd again he stooped down, and wrote on the ground. \nAnd they which heard it, being convicted by their own conscience, went out one by one, beginning at the eldest, even unto the last: and Jesus was left alone, and the woman standing in the midst. \nWhen Jesus had lifted up himself, and saw none but the woman, he said unto her, Woman, where are those thine accusers? hath no man condemned thee? \nShe said, No man, Lord. And Jesus said unto her, Neither do I condemn thee: go, and sin no more. \nThen spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life. \nThe Pharisees therefore said unto him, Thou bearest record of thyself; thy record is not true. \nJesus answered and said unto them, Though I bear record of myself, yet my record is true: for I know whence I came, and whither I go; but ye cannot tell whence I come, and whither I go. \nYe judge after the flesh; I judge no man. \nAnd yet if I judge, my judgment is true: for I am not alone, but I and the Father that sent me. \nIt is also written in your law, that the testimony of two men is true. \nI am one that bear witness of myself, and the Father that sent me beareth witness of me. \nThen said they unto him, Where is thy Father? Jesus answered, Ye neither know me, nor my Father: if ye had known me, ye should have known my Father also. \nThese words spake Jesus in the treasury, as he taught in the temple: and no man laid hands on him; for his hour was not yet come. \nThen said Jesus again unto them, I go my way, and ye shall seek me, and shall die in your sins: whither I go, ye cannot come. \nThen said the Jews, Will he kill himself? because he saith, Whither I go, ye cannot come. \nAnd he said unto them, Ye are from beneath; I am from above: ye are of this world; I am not of this world. \nI said therefore unto you, that ye shall die in your sins: for if ye believe not that I am he, ye shall die in your sins. \nThen said they unto him, Who art thou? And Jesus saith unto them, Even the same that I said unto you from the beginning. \nI have many things to say and to judge of you: but he that sent me is true; and I speak to the world those things which I have heard of him. \nThey understood not that he spake to them of the Father. \nThen said Jesus unto them, When ye have lifted up the Son of man, then shall ye know that I am he, and that I do nothing of myself; but as my Father hath taught me, I speak these things. \nAnd he that sent me is with me: the Father hath not left me alone; for I do always those things that please him. \nAs he spake these words, many believed on him. \nThen said Jesus to those Jews which believed on him, If ye continue in my word, then are ye my disciples indeed; \nAnd ye shall know the truth, and the truth shall make you free. \nThey answered him, We be Abraham's seed, and were never in bondage to any man: how sayest thou, Ye shall be made free? \nJesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin. \nAnd the servant abideth not in the house for ever: but the Son abideth ever. \nIf the Son therefore shall make you free, ye shall be free indeed. \nI know that ye are Abraham's seed; but ye seek to kill me, because my word hath no place in you. \nI speak that which I have seen with my Father: and ye do that which ye have seen with your father. \nThey answered and said unto him, Abraham is our father. Jesus saith unto them, If ye were Abraham's children, ye would do the works of Abraham. \nBut now ye seek to kill me, a man that hath told you the truth, which I have heard of God: this did not Abraham. \nYe do the deeds of your father. Then said they to him, We be not born of fornication; we have one Father, even God. \nJesus said unto them, If God were your Father, ye would love me: for I proceeded forth and came from God; neither came I of myself, but he sent me. \nWhy do ye not understand my speech? even because ye cannot hear my word. \nYe are of your father the devil, and the lusts of your father ye will do. He was a murderer from the beginning, and abode not in the truth, because there is no truth in him. When he speaketh a lie, he speaketh of his own: for he is a liar, and the father of it. \nAnd because I tell you the truth, ye believe me not. \nWhich of you convinceth me of sin? And if I say the truth, why do ye not believe me? \nHe that is of God heareth God's words: ye therefore hear them not, because ye are not of God. \nThen answered the Jews, and said unto him, Say we not well that thou art a Samaritan, and hast a devil? \nJesus answered, I have not a devil; but I honour my Father, and ye do dishonour me. \nAnd I seek not mine own glory: there is one that seeketh and judgeth. \nVerily, verily, I say unto you, If a man keep my saying, he shall never see death. \nThen said the Jews unto him, Now we know that thou hast a devil. Abraham is dead, and the prophets; and thou sayest, If a man keep my saying, he shall never taste of death. \nArt thou greater than our father Abraham, which is dead? and the prophets are dead: whom makest thou thyself? \nJesus answered, If I honour myself, my honour is nothing: it is my Father that honoureth me; of whom ye say, that he is your God: \nYet ye have not known him; but I know him: and if I should say, I know him not, I shall be a liar like unto you: but I know him, and keep his saying. \nYour father Abraham rejoiced to see my day: and he saw it, and was glad. \nThen said the Jews unto him, Thou art not yet fifty years old, and hast thou seen Abraham? \nJesus said unto them, Verily, verily, I say unto you, Before Abraham was, I am. \nThen took they up stones to cast at him: but Jesus hid himself, and went out of the temple, going through the midst of them, and so passed by. \nAnd as Jesus passed by, he saw a man which was blind from his birth. \nAnd his disciples asked him, saying, Master, who did sin, this man, or his parents, that he was born blind? \nJesus answered, Neither hath this man sinned, nor his parents: but that the works of God should be made manifest in him. \nI must work the works of him that sent me, while it is day: the night cometh, when no man can work. \nAs long as I am in the world, I am the light of the world. \nWhen he had thus spoken, he spat on the ground, and made clay of the spittle, and he anointed the eyes of the blind man with the clay, \nAnd said unto him, Go, wash in the pool of Siloam, (which is by interpretation, Sent.) He went his way therefore, and washed, and came seeing. \nThe neighbours therefore, and they which before had seen him that he was blind, said, Is not this he that sat and begged? \nSome said, This is he: others said, He is like him: but he said, I am he. \nTherefore said they unto him, How were thine eyes opened? \nHe answered and said, A man that is called Jesus made clay, and anointed mine eyes, and said unto me, Go to the pool of Siloam, and wash: and I went and washed, and I received sight. \nThen said they unto him, Where is he? He said, I know not. \nThey brought to the Pharisees him that aforetime was blind. \nAnd it was the sabbath day when Jesus made the clay, and opened his eyes. \nThen again the Pharisees also asked him how he had received his sight. He said unto them, He put clay upon mine eyes, and I washed, and do see. \nTherefore said some of the Pharisees, This man is not of God, because he keepeth not the sabbath day. Others said, How can a man that is a sinner do such miracles? And there was a division among them. \nThey say unto the blind man again, What sayest thou of him, that he hath opened thine eyes? He said, He is a prophet. \nBut the Jews did not believe concerning him, that he had been blind, and received his sight, until they called the parents of him that had received his sight. \nAnd they asked them, saying, Is this your son, who ye say was born blind? how then doth he now see? \nHis parents answered them and said, We know that this is our son, and that he was born blind: \nBut by what means he now seeth, we know not; or who hath opened his eyes, we know not: he is of age; ask him: he shall speak for himself. \nThese words spake his parents, because they feared the Jews: for the Jews had agreed already, that if any man did confess that he was Christ, he should be put out of the synagogue. \nTherefore said his parents, He is of age; ask him. \nThen again called they the man that was blind, and said unto him, Give God the praise: we know that this man is a sinner. \nHe answered and said, Whether he be a sinner or no, I know not: one thing I know, that, whereas I was blind, now I see. \nThen said they to him again, What did he to thee? how opened he thine eyes? \nHe answered them, I have told you already, and ye did not hear: wherefore would ye hear it again? will ye also be his disciples? \nThen they reviled him, and said, Thou art his disciple; but we are Moses' disciples. \nWe know that God spake unto Moses: as for this fellow, we know not from whence he is. \nThe man answered and said unto them, Why herein is a marvellous thing, that ye know not from whence he is, and yet he hath opened mine eyes. \nNow we know that God heareth not sinners: but if any man be a worshipper of God, and doeth his will, him he heareth. \nSince the world began was it not heard that any man opened the eyes of one that was born blind. \nIf this man were not of God, he could do nothing. \nThey answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out. \nJesus heard that they had cast him out; and when he had found him, he said unto him, Dost thou believe on the Son of God? \nHe answered and said, Who is he, Lord, that I might believe on him? \nAnd Jesus said unto him, Thou hast both seen him, and it is he that talketh with thee. \nAnd he said, Lord, I believe. And he worshipped him. \nAnd Jesus said, For judgment I am come into this world, that they which see not might see; and that they which see might be made blind. \nAnd some of the Pharisees which were with him heard these words, and said unto him, Are we blind also? \nJesus said unto them, If ye were blind, ye should have no sin: but now ye say, We see; therefore your sin remaineth. \nVerily, verily, I say unto you, He that entereth not by the door into the sheepfold, but climbeth up some other way, the same is a thief and a robber. \nBut he that entereth in by the door is the shepherd of the sheep. \nTo him the porter openeth; and the sheep hear his voice: and he calleth his own sheep by name, and leadeth them out. \nAnd when he putteth forth his own sheep, he goeth before them, and the sheep follow him: for they know his voice. \nAnd a stranger will they not follow, but will flee from him: for they know not the voice of strangers. \nThis parable spake Jesus unto them: but they understood not what things they were which he spake unto them. \nThen said Jesus unto them again, Verily, verily, I say unto you, I am the door of the sheep. \nAll that ever came before me are thieves and robbers: but the sheep did not hear them. \nI am the door: by me if any man enter in, he shall be saved, and shall go in and out, and find pasture. \nThe thief cometh not, but for to steal, and to kill, and to destroy: I am come that they might have life, and that they might have it more abundantly. \nI am the good shepherd: the good shepherd giveth his life for the sheep. \nBut he that is an hireling, and not the shepherd, whose own the sheep are not, seeth the wolf coming, and leaveth the sheep, and fleeth: and the wolf catcheth them, and scattereth the sheep. \nThe hireling fleeth, because he is an hireling, and careth not for the sheep. \nI am the good shepherd, and know my sheep, and am known of mine. \nAs the Father knoweth me, even so know I the Father: and I lay down my life for the sheep. \nAnd other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and there shall be one fold, and one shepherd. \nTherefore doth my Father love me, because I lay down my life, that I might take it again. \nNo man taketh it from me, but I lay it down of myself. I have power to lay it down, and I have power to take it again. This commandment have I received of my Father. \nThere was a division therefore again among the Jews for these sayings. \nAnd many of them said, He hath a devil, and is mad; why hear ye him? \nOthers said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind? \nAnd it was at Jerusalem the feast of the dedication, and it was winter. \nAnd Jesus walked in the temple in Solomon's porch. \nThen came the Jews round about him, and said unto him, How long dost thou make us to doubt? If thou be the Christ, tell us plainly. \nJesus answered them, I told you, and ye believed not: the works that I do in my Father's name, they bear witness of me. \nBut ye believe not, because ye are not of my sheep, as I said unto you. \nMy sheep hear my voice, and I know them, and they follow me: \nAnd I give unto them eternal life; and they shall never perish, neither shall any man pluck them out of my hand. \nMy Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father's hand. \nI and my Father are one. \nThen the Jews took up stones again to stone him. \nJesus answered them, Many good works have I shewed you from my Father; for which of those works do ye stone me? \nThe Jews answered him, saying, For a good work we stone thee not; but for blasphemy; and because that thou, being a man, makest thyself God. \nJesus answered them, Is it not written in your law, I said, Ye are gods? \nIf he called them gods, unto whom the word of God came, and the scripture cannot be broken; \nSay ye of him, whom the Father hath sanctified, and sent into the world, Thou blasphemest; because I said, I am the Son of God? \nIf I do not the works of my Father, believe me not. \nBut if I do, though ye believe not me, believe the works: that ye may know, and believe, that the Father is in me, and I in him. \nTherefore they sought again to take him: but he escaped out of their hand, \nAnd went away again beyond Jordan into the place where John at first baptized; and there he abode. \nAnd many resorted unto him, and said, John did no miracle: but all things that John spake of this man were true. \nAnd many believed on him there. \nNow a certain man was sick, named Lazarus, of Bethany, the town of Mary and her sister Martha. \n(It was that Mary which anointed the Lord with ointment, and wiped his feet with her hair, whose brother Lazarus was sick.) \nTherefore his sisters sent unto him, saying, Lord, behold, he whom thou lovest is sick. \nWhen Jesus heard that, he said, This sickness is not unto death, but for the glory of God, that the Son of God might be glorified thereby. \nNow Jesus loved Martha, and her sister, and Lazarus. \nWhen he had heard therefore that he was sick, he abode two days still in the same place where he was. \nThen after that saith he to his disciples, Let us go into Judaea again. \nHis disciples say unto him, Master, the Jews of late sought to stone thee; and goest thou thither again? \nJesus answered, Are there not twelve hours in the day? If any man walk in the day, he stumbleth not, because he seeth the light of this world. \nBut if a man walk in the night, he stumbleth, because there is no light in him. \nThese things said he: and after that he saith unto them, Our friend Lazarus sleepeth; but I go, that I may awake him out of sleep. \nThen said his disciples, Lord, if he sleep, he shall do well. \nHowbeit Jesus spake of his death: but they thought that he had spoken of taking of rest in sleep. \nThen said Jesus unto them plainly, Lazarus is dead. \nAnd I am glad for your sakes that I was not there, to the intent ye may believe; nevertheless let us go unto him. \nThen said Thomas, which is called Didymus, unto his fellowdisciples, Let us also go, that we may die with him. \nThen when Jesus came, he found that he had lain in the grave four days already. \nNow Bethany was nigh unto Jerusalem, about fifteen furlongs off: \nAnd many of the Jews came to Martha and Mary, to comfort them concerning their brother. \nThen Martha, as soon as she heard that Jesus was coming, went and met him: but Mary sat still in the house. \nThen said Martha unto Jesus, Lord, if thou hadst been here, my brother had not died. \nBut I know, that even now, whatsoever thou wilt ask of God, God will give it thee. \nJesus saith unto her, Thy brother shall rise again. \nMartha saith unto him, I know that he shall rise again in the resurrection at the last day. \nJesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live: \nAnd whosoever liveth and believeth in me shall never die. Believest thou this? \nShe saith unto him, Yea, Lord: I believe that thou art the Christ, the Son of God, which should come into the world. \nAnd when she had so said, she went her way, and called Mary her sister secretly, saying, The Master is come, and calleth for thee. \nAs soon as she heard that, she arose quickly, and came unto him. \nNow Jesus was not yet come into the town, but was in that place where Martha met him. \nThe Jews then which were with her in the house, and comforted her, when they saw Mary, that she rose up hastily and went out, followed her, saying, She goeth unto the grave to weep there. \nThen when Mary was come where Jesus was, and saw him, she fell down at his feet, saying unto him, Lord, if thou hadst been here, my brother had not died. \nWhen Jesus therefore saw her weeping, and the Jews also weeping which came with her, he groaned in the spirit, and was troubled. \nAnd said, Where have ye laid him? They said unto him, Lord, come and see. \nJesus wept. \nThen said the Jews, Behold how he loved him! \nAnd some of them said, Could not this man, which opened the eyes of the blind, have caused that even this man should not have died? \nJesus therefore again groaning in himself cometh to the grave. It was a cave, and a stone lay upon it. \nJesus said, Take ye away the stone. Martha, the sister of him that was dead, saith unto him, Lord, by this time he stinketh: for he hath been dead four days. \nJesus saith unto her, Said I not unto thee, that, if thou wouldest believe, thou shouldest see the glory of God? \nThen they took away the stone from the place where the dead was laid. And Jesus lifted up his eyes, and said, Father, I thank thee that thou hast heard me. \nAnd I knew that thou hearest me always: but because of the people which stand by I said it, that they may believe that thou hast sent me. \nAnd when he thus had spoken, he cried with a loud voice, Lazarus, come forth. \nAnd he that was dead came forth, bound hand and foot with graveclothes: and his face was bound about with a napkin. Jesus saith unto them, Loose him, and let him go. \nThen many of the Jews which came to Mary, and had seen the things which Jesus did, believed on him. \nBut some of them went their ways to the Pharisees, and told them what things Jesus had done. \nThen gathered the chief priests and the Pharisees a council, and said, What do we? for this man doeth many miracles. \nIf we let him thus alone, all men will believe on him: and the Romans shall come and take away both our place and nation. \nAnd one of them, named Caiaphas, being the high priest that same year, said unto them, Ye know nothing at all, \nNor consider that it is expedient for us, that one man should die for the people, and that the whole nation perish not. \nAnd this spake he not of himself: but being high priest that year, he prophesied that Jesus should die for that nation; \nAnd not for that nation only, but that also he should gather together in one the children of God that were scattered abroad. \nThen from that day forth they took counsel together for to put him to death. \nJesus therefore walked no more openly among the Jews; but went thence unto a country near to the wilderness, into a city called Ephraim, and there continued with his disciples. \nAnd the Jews' passover was nigh at hand: and many went out of the country up to Jerusalem before the passover, to purify themselves. \nThen sought they for Jesus, and spake among themselves, as they stood in the temple, What think ye, that he will not come to the feast? \nNow both the chief priests and the Pharisees had given a commandment, that, if any man knew where he were, he should shew it, that they might take him. \nThen Jesus six days before the passover came to Bethany, where Lazarus was, which had been dead, whom he raised from the dead. \nThere they made him a supper; and Martha served: but Lazarus was one of them that sat at the table with him. \nThen took Mary a pound of ointment of spikenard, very costly, and anointed the feet of Jesus, and wiped his feet with her hair: and the house was filled with the odour of the ointment. \nThen saith one of his disciples, Judas Iscariot, Simon's son, which should betray him, \nWhy was not this ointment sold for three hundred pence, and given to the poor? \nThis he said, not that he cared for the poor; but because he was a thief, and had the bag, and bare what was put therein. \nThen said Jesus, Let her alone: against the day of my burying hath she kept this. \nFor the poor always ye have with you; but me ye have not always. \nMuch people of the Jews therefore knew that he was there: and they came not for Jesus' sake only, but that they might see Lazarus also, whom he had raised from the dead. \nBut the chief priests consulted that they might put Lazarus also to death; \nBecause that by reason of him many of the Jews went away, and believed on Jesus. \nOn the next day much people that were come to the feast, when they heard that Jesus was coming to Jerusalem, \nTook branches of palm trees, and went forth to meet him, and cried, Hosanna: Blessed is the King of Israel that cometh in the name of the Lord. \nAnd Jesus, when he had found a young ass, sat thereon; as it is written, \nFear not, daughter of Sion: behold, thy King cometh, sitting on an ass's colt. \nThese things understood not his disciples at the first: but when Jesus was glorified, then remembered they that these things were written of him, and that they had done these things unto him. \nThe people therefore that was with him when he called Lazarus out of his grave, and raised him from the dead, bare record. \nFor this cause the people also met him, for that they heard that he had done this miracle. \nThe Pharisees therefore said among themselves, Perceive ye how ye prevail nothing? behold, the world is gone after him. \nAnd there were certain Greeks among them that came up to worship at the feast: \nThe same came therefore to Philip, which was of Bethsaida of Galilee, and desired him, saying, Sir, we would see Jesus. \nPhilip cometh and telleth Andrew: and again Andrew and Philip tell Jesus. \nAnd Jesus answered them, saying, The hour is come, that the Son of man should be glorified. \nVerily, verily, I say unto you, Except a corn of wheat fall into the ground and die, it abideth alone: but if it die, it bringeth forth much fruit. \nHe that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal. \nIf any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will my Father honour. \nNow is my soul troubled; and what shall I say? Father, save me from this hour: but for this cause came I unto this hour. \nFather, glorify thy name. Then came there a voice from heaven, saying, I have both glorified it, and will glorify it again. \nThe people therefore, that stood by, and heard it, said that it thundered: others said, An angel spake to him. \nJesus answered and said, This voice came not because of me, but for your sakes. \nNow is the judgment of this world: now shall the prince of this world be cast out. \nAnd I, if I be lifted up from the earth, will draw all men unto me. \nThis he said, signifying what death he should die. \nThe people answered him, We have heard out of the law that Christ abideth for ever: and how sayest thou, The Son of man must be lifted up? who is this Son of man? \nThen Jesus said unto them, Yet a little while is the light with you. Walk while ye have the light, lest darkness come upon you: for he that walketh in darkness knoweth not whither he goeth. \nWhile ye have light, believe in the light, that ye may be the children of light. These things spake Jesus, and departed, and did hide himself from them. \nBut though he had done so many miracles before them, yet they believed not on him: \nThat the saying of Esaias the prophet might be fulfilled, which he spake, Lord, who hath believed our report? and to whom hath the arm of the Lord been revealed? \nTherefore they could not believe, because that Esaias said again, \nHe hath blinded their eyes, and hardened their heart; that they should not see with their eyes, nor understand with their heart, and be converted, and I should heal them. \nThese things said Esaias, when he saw his glory, and spake of him. \nNevertheless among the chief rulers also many believed on him; but because of the Pharisees they did not confess him, lest they should be put out of the synagogue: \nFor they loved the praise of men more than the praise of God. \nJesus cried and said, He that believeth on me, believeth not on me, but on him that sent me. \nAnd he that seeth me seeth him that sent me. \nI am come a light into the world, that whosoever believeth on me should not abide in darkness. \nAnd if any man hear my words, and believe not, I judge him not: for I came not to judge the world, but to save the world. \nHe that rejecteth me, and receiveth not my words, hath one that judgeth him: the word that I have spoken, the same shall judge him in the last day. \nFor I have not spoken of myself; but the Father which sent me, he gave me a commandment, what I should say, and what I should speak. \nAnd I know that his commandment is life everlasting: whatsoever I speak therefore, even as the Father said unto me, so I speak. \nNow before the feast of the passover, when Jesus knew that his hour was come that he should depart out of this world unto the Father, having loved his own which were in the world, he loved them unto the end. \nAnd supper being ended, the devil having now put into the heart of Judas Iscariot, Simon's son, to betray him; \nJesus knowing that the Father had given all things into his hands, and that he was come from God, and went to God; \nHe riseth from supper, and laid aside his garments; and took a towel, and girded himself. \nAfter that he poureth water into a bason, and began to wash the disciples' feet, and to wipe them with the towel wherewith he was girded. \nThen cometh he to Simon Peter: and Peter saith unto him, Lord, dost thou wash my feet? \nJesus answered and said unto him, What I do thou knowest not now; but thou shalt know hereafter. \nPeter saith unto him, Thou shalt never wash my feet. Jesus answered him, If I wash thee not, thou hast no part with me. \nSimon Peter saith unto him, Lord, not my feet only, but also my hands and my head. \nJesus saith to him, He that is washed needeth not save to wash his feet, but is clean every whit: and ye are clean, but not all. \nFor he knew who should betray him; therefore said he, Ye are not all clean. \nSo after he had washed their feet, and had taken his garments, and was set down again, he said unto them, Know ye what I have done to you? \nYe call me Master and Lord: and ye say well; for so I am. \nIf I then, your Lord and Master, have washed your feet; ye also ought to wash one another's feet. \nFor I have given you an example, that ye should do as I have done to you. \nVerily, verily, I say unto you, The servant is not greater than his lord; neither he that is sent greater than he that sent him. \nIf ye know these things, happy are ye if ye do them. \nI speak not of you all: I know whom I have chosen: but that the scripture may be fulfilled, He that eateth bread with me hath lifted up his heel against me. \nNow I tell you before it come, that, when it is come to pass, ye may believe that I am he. \nVerily, verily, I say unto you, He that receiveth whomsoever I send receiveth me; and he that receiveth me receiveth him that sent me. \nWhen Jesus had thus said, he was troubled in spirit, and testified, and said, Verily, verily, I say unto you, that one of you shall betray me. \nThen the disciples looked one on another, doubting of whom he spake. \nNow there was leaning on Jesus' bosom one of his disciples, whom Jesus loved. \nSimon Peter therefore beckoned to him, that he should ask who it should be of whom he spake. \nHe then lying on Jesus' breast saith unto him, Lord, who is it? \nJesus answered, He it is, to whom I shall give a sop, when I have dipped it. And when he had dipped the sop, he gave it to Judas Iscariot, the son of Simon. \nAnd after the sop Satan entered into him. Then said Jesus unto him, That thou doest, do quickly. \nNow no man at the table knew for what intent he spake this unto him. \nFor some of them thought, because Judas had the bag, that Jesus had said unto him, Buy those things that we have need of against the feast; or, that he should give something to the poor. \nHe then having received the sop went immediately out: and it was night. \nTherefore, when he was gone out, Jesus said, Now is the Son of man glorified, and God is glorified in him. \nIf God be glorified in him, God shall also glorify him in himself, and shall straightway glorify him. \nLittle children, yet a little while I am with you. Ye shall seek me: and as I said unto the Jews, Whither I go, ye cannot come; so now I say to you. \nA new commandment I give unto you, That ye love one another; as I have loved you, that ye also love one another. \nBy this shall all men know that ye are my disciples, if ye have love one to another. \nSimon Peter said unto him, Lord, whither goest thou? Jesus answered him, Whither I go, thou canst not follow me now; but thou shalt follow me afterwards. \nPeter said unto him, Lord, why cannot I follow thee now? I will lay down my life for thy sake. \nJesus answered him, Wilt thou lay down thy life for my sake? Verily, verily, I say unto thee, The cock shall not crow, till thou hast denied me thrice. \nLet not your heart be troubled: ye believe in God, believe also in me. \nIn my Father's house are many mansions: if it were not so, I would have told you. I go to prepare a place for you. \nAnd if I go and prepare a place for you, I will come again, and receive you unto myself; that where I am, there ye may be also. \nAnd whither I go ye know, and the way ye know. \nThomas saith unto him, Lord, we know not whither thou goest; and how can we know the way? \nJesus saith unto him, I am the way, the truth, and the life: no man cometh unto the Father, but by me. \nIf ye had known me, ye should have known my Father also: and from henceforth ye know him, and have seen him. \nPhilip saith unto him, Lord, shew us the Father, and it sufficeth us. \nJesus saith unto him, Have I been so long time with you, and yet hast thou not known me, Philip? he that hath seen me hath seen the Father; and how sayest thou then, Shew us the Father? \nBelievest thou not that I am in the Father, and the Father in me? the words that I speak unto you I speak not of myself: but the Father that dwelleth in me, he doeth the works. \nBelieve me that I am in the Father, and the Father in me: or else believe me for the very works' sake. \nVerily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto my Father. \nAnd whatsoever ye shall ask in my name, that will I do, that the Father may be glorified in the Son. \nIf ye shall ask any thing in my name, I will do it. \nIf ye love me, keep my commandments. \nAnd I will pray the Father, and he shall give you another Comforter, that he may abide with you for ever; \nEven the Spirit of truth; whom the world cannot receive, because it seeth him not, neither knoweth him: but ye know him; for he dwelleth with you, and shall be in you. \nI will not leave you comfortless: I will come to you. \nYet a little while, and the world seeth me no more; but ye see me: because I live, ye shall live also. \nAt that day ye shall know that I am in my Father, and ye in me, and I in you. \nHe that hath my commandments, and keepeth them, he it is that loveth me: and he that loveth me shall be loved of my Father, and I will love him, and will manifest myself to him. \nJudas saith unto him, not Iscariot, Lord, how is it that thou wilt manifest thyself unto us, and not unto the world? \nJesus answered and said unto him, If a man love me, he will keep my words: and my Father will love him, and we will come unto him, and make our abode with him. \nHe that loveth me not keepeth not my sayings: and the word which ye hear is not mine, but the Father's which sent me. \nThese things have I spoken unto you, being yet present with you. \nBut the Comforter, which is the Holy Ghost, whom the Father will send in my name, he shall teach you all things, and bring all things to your remembrance, whatsoever I have said unto you. \nPeace I leave with you, my peace I give unto you: not as the world giveth, give I unto you. Let not your heart be troubled, neither let it be afraid. \nYe have heard how I said unto you, I go away, and come again unto you. If ye loved me, ye would rejoice, because I said, I go unto the Father: for my Father is greater than I. \nAnd now I have told you before it come to pass, that, when it is come to pass, ye might believe. \nHereafter I will not talk much with you: for the prince of this world cometh, and hath nothing in me. \nBut that the world may know that I love the Father; and as the Father gave me commandment, even so I do. Arise, let us go hence. \nI am the true vine, and my Father is the husbandman. \nEvery branch in me that beareth not fruit he taketh away: and every branch that beareth fruit, he purgeth it, that it may bring forth more fruit. \nNow ye are clean through the word which I have spoken unto you. \nAbide in me, and I in you. As the branch cannot bear fruit of itself, except it abide in the vine; no more can ye, except ye abide in me. \nI am the vine, ye are the branches: He that abideth in me, and I in him, the same bringeth forth much fruit: for without me ye can do nothing. \nIf a man abide not in me, he is cast forth as a branch, and is withered; and men gather them, and cast them into the fire, and they are burned. \nIf ye abide in me, and my words abide in you, ye shall ask what ye will, and it shall be done unto you. \nHerein is my Father glorified, that ye bear much fruit; so shall ye be my disciples. \nAs the Father hath loved me, so have I loved you: continue ye in my love. \nIf ye keep my commandments, ye shall abide in my love; even as I have kept my Father's commandments, and abide in his love. \nThese things have I spoken unto you, that my joy might remain in you, and that your joy might be full. \nThis is my commandment, That ye love one another, as I have loved you. \nGreater love hath no man than this, that a man lay down his life for his friends. \nYe are my friends, if ye do whatsoever I command you. \nHenceforth I call you not servants; for the servant knoweth not what his lord doeth: but I have called you friends; for all things that I have heard of my Father I have made known unto you. \nYe have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you. \nThese things I command you, that ye love one another. \nIf the world hate you, ye know that it hated me before it hated you. \nIf ye were of the world, the world would love his own: but because ye are not of the world, but I have chosen you out of the world, therefore the world hateth you. \nRemember the word that I said unto you, The servant is not greater than his lord. If they have persecuted me, they will also persecute you; if they have kept my saying, they will keep yours also. \nBut all these things will they do unto you for my name's sake, because they know not him that sent me. \nIf I had not come and spoken unto them, they had not had sin: but now they have no cloak for their sin. \nHe that hateth me hateth my Father also. \nIf I had not done among them the works which none other man did, they had not had sin: but now have they both seen and hated both me and my Father. \nBut this cometh to pass, that the word might be fulfilled that is written in their law, They hated me without a cause. \nBut when the Comforter is come, whom I will send unto you from the Father, even the Spirit of truth, which proceedeth from the Father, he shall testify of me: \nAnd ye also shall bear witness, because ye have been with me from the beginning. \nThese things have I spoken unto you, that ye should not be offended. \nThey shall put you out of the synagogues: yea, the time cometh, that whosoever killeth you will think that he doeth God service. \nAnd these things will they do unto you, because they have not known the Father, nor me. \nBut these things have I told you, that when the time shall come, ye may remember that I told you of them. And these things I said not unto you at the beginning, because I was with you. \nBut now I go my way to him that sent me; and none of you asketh me, Whither goest thou? \nBut because I have said these things unto you, sorrow hath filled your heart. \nNevertheless I tell you the truth; It is expedient for you that I go away: for if I go not away, the Comforter will not come unto you; but if I depart, I will send him unto you. \nAnd when he is come, he will reprove the world of sin, and of righteousness, and of judgment: \nOf sin, because they believe not on me; \nOf righteousness, because I go to my Father, and ye see me no more; \nOf judgment, because the prince of this world is judged. \nI have yet many things to say unto you, but ye cannot bear them now. \nHowbeit when he, the Spirit of truth, is come, he will guide you into all truth: for he shall not speak of himself; but whatsoever he shall hear, that shall he speak: and he will shew you things to come. \nHe shall glorify me: for he shall receive of mine, and shall shew it unto you. \nAll things that the Father hath are mine: therefore said I, that he shall take of mine, and shall shew it unto you. \nA little while, and ye shall not see me: and again, a little while, and ye shall see me, because I go to the Father. \nThen said some of his disciples among themselves, What is this that he saith unto us, A little while, and ye shall not see me: and again, a little while, and ye shall see me: and, Because I go to the Father? \nThey said therefore, What is this that he saith, A little while? we cannot tell what he saith. \nNow Jesus knew that they were desirous to ask him, and said unto them, Do ye enquire among yourselves of that I said, A little while, and ye shall not see me: and again, a little while, and ye shall see me? \nVerily, verily, I say unto you, That ye shall weep and lament, but the world shall rejoice: and ye shall be sorrowful, but your sorrow shall be turned into joy. \nA woman when she is in travail hath sorrow, because her hour is come: but as soon as she is delivered of the child, she remembereth no more the anguish, for joy that a man is born into the world. \nAnd ye now therefore have sorrow: but I will see you again, and your heart shall rejoice, and your joy no man taketh from you. \nAnd in that day ye shall ask me nothing. Verily, verily, I say unto you, Whatsoever ye shall ask the Father in my name, he will give it you. \nHitherto have ye asked nothing in my name: ask, and ye shall receive, that your joy may be full. \nThese things have I spoken unto you in proverbs: but the time cometh, when I shall no more speak unto you in proverbs, but I shall shew you plainly of the Father. \nAt that day ye shall ask in my name: and I say not unto you, that I will pray the Father for you: \nFor the Father himself loveth you, because ye have loved me, and have believed that I came out from God. \nI came forth from the Father, and am come into the world: again, I leave the world, and go to the Father. \nHis disciples said unto him, Lo, now speakest thou plainly, and speakest no proverb. \nNow are we sure that thou knowest all things, and needest not that any man should ask thee: by this we believe that thou camest forth from God. \nJesus answered them, Do ye now believe? \nBehold, the hour cometh, yea, is now come, that ye shall be scattered, every man to his own, and shall leave me alone: and yet I am not alone, because the Father is with me. \nThese things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world. \nThese words spake Jesus, and lifted up his eyes to heaven, and said, Father, the hour is come; glorify thy Son, that thy Son also may glorify thee: \nAs thou hast given him power over all flesh, that he should give eternal life to as many as thou hast given him. \nAnd this is life eternal, that they might know thee the only true God, and Jesus Christ, whom thou hast sent. \nI have glorified thee on the earth: I have finished the work which thou gavest me to do. \nAnd now, O Father, glorify thou me with thine own self with the glory which I had with thee before the world was. \nI have manifested thy name unto the men which thou gavest me out of the world: thine they were, and thou gavest them me; and they have kept thy word. \nNow they have known that all things whatsoever thou hast given me are of thee. \nFor I have given unto them the words which thou gavest me; and they have received them, and have known surely that I came out from thee, and they have believed that thou didst send me. \nI pray for them: I pray not for the world, but for them which thou hast given me; for they are thine. \nAnd all mine are thine, and thine are mine; and I am glorified in them. \nAnd now I am no more in the world, but these are in the world, and I come to thee. Holy Father, keep through thine own name those whom thou hast given me, that they may be one, as we are. \nWhile I was with them in the world, I kept them in thy name: those that thou gavest me I have kept, and none of them is lost, but the son of perdition; that the scripture might be fulfilled. \nAnd now come I to thee; and these things I speak in the world, that they might have my joy fulfilled in themselves. \nI have given them thy word; and the world hath hated them, because they are not of the world, even as I am not of the world. \nI pray not that thou shouldest take them out of the world, but that thou shouldest keep them from the evil. \nThey are not of the world, even as I am not of the world. \nSanctify them through thy truth: thy word is truth. \nAs thou hast sent me into the world, even so have I also sent them into the world. \nAnd for their sakes I sanctify myself, that they also might be sanctified through the truth. \nNeither pray I for these alone, but for them also which shall believe on me through their word; \nThat they all may be one; as thou, Father, art in me, and I in thee, that they also may be one in us: that the world may believe that thou hast sent me. \nAnd the glory which thou gavest me I have given them; that they may be one, even as we are one: \nI in them, and thou in me, that they may be made perfect in one; and that the world may know that thou hast sent me, and hast loved them, as thou hast loved me. \nFather, I will that they also, whom thou hast given me, be with me where I am; that they may behold my glory, which thou hast given me: for thou lovedst me before the foundation of the world. \nO righteous Father, the world hath not known thee: but I have known thee, and these have known that thou hast sent me. \nAnd I have declared unto them thy name, and will declare it: that the love wherewith thou hast loved me may be in them, and I in them. \nWhen Jesus had spoken these words, he went forth with his disciples over the brook Cedron, where was a garden, into the which he entered, and his disciples. \nAnd Judas also, which betrayed him, knew the place: for Jesus ofttimes resorted thither with his disciples. \nJudas then, having received a band of men and officers from the chief priests and Pharisees, cometh thither with lanterns and torches and weapons. \nJesus therefore, knowing all things that should come upon him, went forth, and said unto them, Whom seek ye? \nThey answered him, Jesus of Nazareth. Jesus saith unto them, I am he. And Judas also, which betrayed him, stood with them. \nAs soon then as he had said unto them, I am he, they went backward, and fell to the ground. \nThen asked he them again, Whom seek ye? And they said, Jesus of Nazareth. \nJesus answered, I have told you that I am he: if therefore ye seek me, let these go their way: \nThat the saying might be fulfilled, which he spake, Of them which thou gavest me have I lost none. \nThen Simon Peter having a sword drew it, and smote the high priest's servant, and cut off his right ear. The servant's name was Malchus. \nThen said Jesus unto Peter, Put up thy sword into the sheath: the cup which my Father hath given me, shall I not drink it? \nThen the band and the captain and officers of the Jews took Jesus, and bound him, \nAnd led him away to Annas first; for he was father in law to Caiaphas, which was the high priest that same year. \nNow Caiaphas was he, which gave counsel to the Jews, that it was expedient that one man should die for the people. \nAnd Simon Peter followed Jesus, and so did another disciple: that disciple was known unto the high priest, and went in with Jesus into the palace of the high priest. \nBut Peter stood at the door without. Then went out that other disciple, which was known unto the high priest, and spake unto her that kept the door, and brought in Peter. \nThen saith the damsel that kept the door unto Peter, Art not thou also one of this man's disciples? He saith, I am not. \nAnd the servants and officers stood there, who had made a fire of coals; for it was cold: and they warmed themselves: and Peter stood with them, and warmed himself. \nThe high priest then asked Jesus of his disciples, and of his doctrine. \nJesus answered him, I spake openly to the world; I ever taught in the synagogue, and in the temple, whither the Jews always resort; and in secret have I said nothing. \nWhy askest thou me? ask them which heard me, what I have said unto them: behold, they know what I said. \nAnd when he had thus spoken, one of the officers which stood by struck Jesus with the palm of his hand, saying, Answerest thou the high priest so? \nJesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me? \nNow Annas had sent him bound unto Caiaphas the high priest. \nAnd Simon Peter stood and warmed himself. They said therefore unto him, Art not thou also one of his disciples? He denied it, and said, I am not. \nOne of the servants of the high priest, being his kinsman whose ear Peter cut off, saith, Did not I see thee in the garden with him? \nPeter then denied again: and immediately the cock crew. \nThen led they Jesus from Caiaphas unto the hall of judgment: and it was early; and they themselves went not into the judgment hall, lest they should be defiled; but that they might eat the passover. \nPilate then went out unto them, and said, What accusation bring ye against this man? \nThey answered and said unto him, If he were not a malefactor, we would not have delivered him up unto thee. \nThen said Pilate unto them, Take ye him, and judge him according to your law. The Jews therefore said unto him, It is not lawful for us to put any man to death: \nThat the saying of Jesus might be fulfilled, which he spake, signifying what death he should die. \nThen Pilate entered into the judgment hall again, and called Jesus, and said unto him, Art thou the King of the Jews? \nJesus answered him, Sayest thou this thing of thyself, or did others tell it thee of me? \nPilate answered, Am I a Jew? Thine own nation and the chief priests have delivered thee unto me: what hast thou done? \nJesus answered, My kingdom is not of this world: if my kingdom were of this world, then would my servants fight, that I should not be delivered to the Jews: but now is my kingdom not from hence. \nPilate therefore said unto him, Art thou a king then? Jesus answered, Thou sayest that I am a king. To this end was I born, and for this cause came I into the world, that I should bear witness unto the truth. Every one that is of the truth heareth my voice. \nPilate saith unto him, What is truth? And when he had said this, he went out again unto the Jews, and saith unto them, I find in him no fault at all. \nBut ye have a custom, that I should release unto you one at the passover: will ye therefore that I release unto you the King of the Jews? \nThen cried they all again, saying, Not this man, but Barabbas. Now Barabbas was a robber. \nThen Pilate therefore took Jesus, and scourged him. \nAnd the soldiers platted a crown of thorns, and put it on his head, and they put on him a purple robe, \nAnd said, Hail, King of the Jews! and they smote him with their hands. \nPilate therefore went forth again, and saith unto them, Behold, I bring him forth to you, that ye may know that I find no fault in him. \nThen came Jesus forth, wearing the crown of thorns, and the purple robe. And Pilate saith unto them, Behold the man! \nWhen the chief priests therefore and officers saw him, they cried out, saying, Crucify him, crucify him. Pilate saith unto them, Take ye him, and crucify him: for I find no fault in him. \nThe Jews answered him, We have a law, and by our law he ought to die, because he made himself the Son of God. \nWhen Pilate therefore heard that saying, he was the more afraid; \nAnd went again into the judgment hall, and saith unto Jesus, Whence art thou? But Jesus gave him no answer. \nThen saith Pilate unto him, Speakest thou not unto me? knowest thou not that I have power to crucify thee, and have power to release thee? \nJesus answered, Thou couldest have no power at all against me, except it were given thee from above: therefore he that delivered me unto thee hath the greater sin. \nAnd from thenceforth Pilate sought to release him: but the Jews cried out, saying, If thou let this man go, thou art not Caesar's friend: whosoever maketh himself a king speaketh against Caesar. \nWhen Pilate therefore heard that saying, he brought Jesus forth, and sat down in the judgment seat in a place that is called the Pavement, but in the Hebrew, Gabbatha. \nAnd it was the preparation of the passover, and about the sixth hour: and he saith unto the Jews, Behold your King! \nBut they cried out, Away with him, away with him, crucify him. Pilate saith unto them, Shall I crucify your King? The chief priests answered, We have no king but Caesar. \nThen delivered he him therefore unto them to be crucified. And they took Jesus, and led him away. \nAnd he bearing his cross went forth into a place called the place of a skull, which is called in the Hebrew Golgotha: \nWhere they crucified him, and two other with him, on either side one, and Jesus in the midst. \nAnd Pilate wrote a title, and put it on the cross. And the writing was JESUS OF NAZARETH THE KING OF THE JEWS. \nThis title then read many of the Jews: for the place where Jesus was crucified was nigh to the city: and it was written in Hebrew, and Greek, and Latin. \nThen said the chief priests of the Jews to Pilate, Write not, The King of the Jews; but that he said, I am King of the Jews. \nPilate answered, What I have written I have written. \nThen the soldiers, when they had crucified Jesus, took his garments, and made four parts, to every soldier a part; and also his coat: now the coat was without seam, woven from the top throughout. \nThey said therefore among themselves, Let us not rend it, but cast lots for it, whose it shall be: that the scripture might be fulfilled, which saith, They parted my raiment among them, and for my vesture they did cast lots. These things therefore the soldiers did. \nNow there stood by the cross of Jesus his mother, and his mother's sister, Mary the wife of Cleophas, and Mary Magdalene. \nWhen Jesus therefore saw his mother, and the disciple standing by, whom he loved, he saith unto his mother, Woman, behold thy son! \nThen saith he to the disciple, Behold thy mother! And from that hour that disciple took her unto his own home. \nAfter this, Jesus knowing that all things were now accomplished, that the scripture might be fulfilled, saith, I thirst. \nNow there was set a vessel full of vinegar: and they filled a spunge with vinegar, and put it upon hyssop, and put it to his mouth. \nWhen Jesus therefore had received the vinegar, he said, It is finished: and he bowed his head, and gave up the ghost. \nThe Jews therefore, because it was the preparation, that the bodies should not remain upon the cross on the sabbath day, (for that sabbath day was an high day,) besought Pilate that their legs might be broken, and that they might be taken away. \nThen came the soldiers, and brake the legs of the first, and of the other which was crucified with him. \nBut when they came to Jesus, and saw that he was dead already, they brake not his legs: \nBut one of the soldiers with a spear pierced his side, and forthwith came there out blood and water. \nAnd he that saw it bare record, and his record is true: and he knoweth that he saith true, that ye might believe. \nFor these things were done, that the scripture should be fulfilled, A bone of him shall not be broken. \nAnd again another scripture saith, They shall look on him whom they pierced. \nAnd after this Joseph of Arimathaea, being a disciple of Jesus, but secretly for fear of the Jews, besought Pilate that he might take away the body of Jesus: and Pilate gave him leave. He came therefore, and took the body of Jesus. \nAnd there came also Nicodemus, which at the first came to Jesus by night, and brought a mixture of myrrh and aloes, about an hundred pound weight. \nThen took they the body of Jesus, and wound it in linen clothes with the spices, as the manner of the Jews is to bury. \nNow in the place where he was crucified there was a garden; and in the garden a new sepulchre, wherein was never man yet laid. \nThere laid they Jesus therefore because of the Jews' preparation day; for the sepulchre was nigh at hand. \nThe first day of the week cometh Mary Magdalene early, when it was yet dark, unto the sepulchre, and seeth the stone taken away from the sepulchre. \nThen she runneth, and cometh to Simon Peter, and to the other disciple, whom Jesus loved, and saith unto them, They have taken away the LORD out of the sepulchre, and we know not where they have laid him. \nPeter therefore went forth, and that other disciple, and came to the sepulchre. \nSo they ran both together: and the other disciple did outrun Peter, and came first to the sepulchre. \nAnd he stooping down, and looking in, saw the linen clothes lying; yet went he not in. \nThen cometh Simon Peter following him, and went into the sepulchre, and seeth the linen clothes lie, \nAnd the napkin, that was about his head, not lying with the linen clothes, but wrapped together in a place by itself. \nThen went in also that other disciple, which came first to the sepulchre, and he saw, and believed. \nFor as yet they knew not the scripture, that he must rise again from the dead. \nThen the disciples went away again unto their own home. \nBut Mary stood without at the sepulchre weeping: and as she wept, she stooped down, and looked into the sepulchre, \nAnd seeth two angels in white sitting, the one at the head, and the other at the feet, where the body of Jesus had lain. \nAnd they say unto her, Woman, why weepest thou? She saith unto them, Because they have taken away my LORD, and I know not where they have laid him. \nAnd when she had thus said, she turned herself back, and saw Jesus standing, and knew not that it was Jesus. \nJesus saith unto her, Woman, why weepest thou? whom seekest thou? She, supposing him to be the gardener, saith unto him, Sir, if thou have borne him hence, tell me where thou hast laid him, and I will take him away. \nJesus saith unto her, Mary. She turned herself, and saith unto him, Rabboni; which is to say, Master. \nJesus saith unto her, Touch me not; for I am not yet ascended to my Father: but go to my brethren, and say unto them, I ascend unto my Father, and your Father; and to my God, and your God. \nMary Magdalene came and told the disciples that she had seen the LORD, and that he had spoken these things unto her. \nThen the same day at evening, being the first day of the week, when the doors were shut where the disciples were assembled for fear of the Jews, came Jesus and stood in the midst, and saith unto them, Peace be unto you. \nAnd when he had so said, he shewed unto them his hands and his side. Then were the disciples glad, when they saw the LORD. \nThen said Jesus to them again, Peace be unto you: as my Father hath sent me, even so send I you. \nAnd when he had said this, he breathed on them, and saith unto them, Receive ye the Holy Ghost: \nWhose soever sins ye remit, they are remitted unto them; and whose soever sins ye retain, they are retained. \nBut Thomas, one of the twelve, called Didymus, was not with them when Jesus came. \nThe other disciples therefore said unto him, We have seen the LORD. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and thrust my hand into his side, I will not believe. \nAnd after eight days again his disciples were within, and Thomas with them: then came Jesus, the doors being shut, and stood in the midst, and said, Peace be unto you. \nThen saith he to Thomas, Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing. \nAnd Thomas answered and said unto him, My LORD and my God. \nJesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed. \nAnd many other signs truly did Jesus in the presence of his disciples, which are not written in this book: \nBut these are written, that ye might believe that Jesus is the Christ, the Son of God; and that believing ye might have life through his name. \nAfter these things Jesus shewed himself again to the disciples at the sea of Tiberias; and on this wise shewed he himself. \nThere were together Simon Peter, and Thomas called Didymus, and Nathanael of Cana in Galilee, and the sons of Zebedee, and two other of his disciples. \nSimon Peter saith unto them, I go a fishing. They say unto him, We also go with thee. They went forth, and entered into a ship immediately; and that night they caught nothing. \nBut when the morning was now come, Jesus stood on the shore: but the disciples knew not that it was Jesus. \nThen Jesus saith unto them, Children, have ye any meat? They answered him, No. \nAnd he said unto them, Cast the net on the right side of the ship, and ye shall find. They cast therefore, and now they were not able to draw it for the multitude of fishes. \nTherefore that disciple whom Jesus loved saith unto Peter, It is the Lord. Now when Simon Peter heard that it was the Lord, he girt his fisher's coat unto him, (for he was naked,) and did cast himself into the sea. \nAnd the other disciples came in a little ship; (for they were not far from land, but as it were two hundred cubits,) dragging the net with fishes. \nAs soon then as they were come to land, they saw a fire of coals there, and fish laid thereon, and bread. \nJesus saith unto them, Bring of the fish which ye have now caught. \nSimon Peter went up, and drew the net to land full of great fishes, an hundred and fifty and three: and for all there were so many, yet was not the net broken. \nJesus saith unto them, Come and dine. And none of the disciples durst ask him, Who art thou? knowing that it was the Lord. \nJesus then cometh, and taketh bread, and giveth them, and fish likewise. \nThis is now the third time that Jesus shewed himself to his disciples, after that he was risen from the dead. \nSo when they had dined, Jesus saith to Simon Peter, Simon, son of Jonas, lovest thou me more than these? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my lambs. \nHe saith to him again the second time, Simon, son of Jonas, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my sheep. \nHe saith unto him the third time, Simon, son of Jonas, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep. \nVerily, verily, I say unto thee, When thou wast young, thou girdest thyself, and walkedst whither thou wouldest: but when thou shalt be old, thou shalt stretch forth thy hands, and another shall gird thee, and carry thee whither thou wouldest not. \nThis spake he, signifying by what death he should glorify God. And when he had spoken this, he saith unto him, Follow me. \nThen Peter, turning about, seeth the disciple whom Jesus loved following; which also leaned on his breast at supper, and said, Lord, which is he that betrayeth thee? \nPeter seeing him saith to Jesus, Lord, and what shall this man do? \nJesus saith unto him, If I will that he tarry till I come, what is that to thee? follow thou me. \nThen went this saying abroad among the brethren, that that disciple should not die: yet Jesus said not unto him, He shall not die; but, If I will that he tarry till I come, what is that to thee? \nThis is the disciple which testifieth of these things, and wrote these things: and we know that his testimony is true. \nAnd there are also many other things which Jesus did, the which, if they should be written every one, I suppose that even the world itself could not contain the books that should be written. Amen. \nThe former treatise have I made, O Theophilus, of all that Jesus began both to do and teach, \nUntil the day in which he was taken up, after that he through the Holy Ghost had given commandments unto the apostles whom he had chosen: \nTo whom also he shewed himself alive after his passion by many infallible proofs, being seen of them forty days, and speaking of the things pertaining to the kingdom of God: \nAnd, being assembled together with them, commanded them that they should not depart from Jerusalem, but wait for the promise of the Father, which, saith he, ye have heard of me. \nFor John truly baptized with water; but ye shall be baptized with the Holy Ghost not many days hence. \nWhen they therefore were come together, they asked of him, saying, Lord, wilt thou at this time restore again the kingdom to Israel? \nAnd he said unto them, It is not for you to know the times or the seasons, which the Father hath put in his own power. \nBut ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judaea, and in Samaria, and unto the uttermost part of the earth. \nAnd when he had spoken these things, while they beheld, he was taken up; and a cloud received him out of their sight. \nAnd while they looked stedfastly toward heaven as he went up, behold, two men stood by them in white apparel; \nWhich also said, Ye men of Galilee, why stand ye gazing up into heaven? this same Jesus, which is taken up from you into heaven, shall so come in like manner as ye have seen him go into heaven. \nThen returned they unto Jerusalem from the mount called Olivet, which is from Jerusalem a sabbath day's journey. \nAnd when they were come in, they went up into an upper room, where abode both Peter, and James, and John, and Andrew, Philip, and Thomas, Bartholomew, and Matthew, James the son of Alphaeus, and Simon Zelotes, and Judas the brother of James. \nThese all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren. \nAnd in those days Peter stood up in the midst of the disciples, and said, (the number of names together were about an hundred and twenty,) \nMen and brethren, this scripture must needs have been fulfilled, which the Holy Ghost by the mouth of David spake before concerning Judas, which was guide to them that took Jesus. \nFor he was numbered with us, and had obtained part of this ministry. \nNow this man purchased a field with the reward of iniquity; and falling headlong, he burst asunder in the midst, and all his bowels gushed out. \nAnd it was known unto all the dwellers at Jerusalem; insomuch as that field is called in their proper tongue, Aceldama, that is to say, The field of blood. \nFor it is written in the book of Psalms, Let his habitation be desolate, and let no man dwell therein: and his bishoprick let another take. \nWherefore of these men which have companied with us all the time that the Lord Jesus went in and out among us, \nBeginning from the baptism of John, unto that same day that he was taken up from us, must one be ordained to be a witness with us of his resurrection. \nAnd they appointed two, Joseph called Barsabas, who was surnamed Justus, and Matthias. \nAnd they prayed, and said, Thou, Lord, which knowest the hearts of all men, shew whether of these two thou hast chosen, \nThat he may take part of this ministry and apostleship, from which Judas by transgression fell, that he might go to his own place. \nAnd they gave forth their lots; and the lot fell upon Matthias; and he was numbered with the eleven apostles. \nAnd when the day of Pentecost was fully come, they were all with one accord in one place. \nAnd suddenly there came a sound from heaven as of a rushing mighty wind, and it filled all the house where they were sitting. \nAnd there appeared unto them cloven tongues like as of fire, and it sat upon each of them. \nAnd they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance. \nAnd there were dwelling at Jerusalem Jews, devout men, out of every nation under heaven. \nNow when this was noised abroad, the multitude came together, and were confounded, because that every man heard them speak in his own language. \nAnd they were all amazed and marvelled, saying one to another, Behold, are not all these which speak Galilaeans? \nAnd how hear we every man in our own tongue, wherein we were born? \nParthians, and Medes, and Elamites, and the dwellers in Mesopotamia, and in Judaea, and Cappadocia, in Pontus, and Asia, \nPhrygia, and Pamphylia, in Egypt, and in the parts of Libya about Cyrene, and strangers of Rome, Jews and proselytes, \nCretes and Arabians, we do hear them speak in our tongues the wonderful works of God. \nAnd they were all amazed, and were in doubt, saying one to another, What meaneth this? \nOthers mocking said, These men are full of new wine. \nBut Peter, standing up with the eleven, lifted up his voice, and said unto them, Ye men of Judaea, and all ye that dwell at Jerusalem, be this known unto you, and hearken to my words: \nFor these are not drunken, as ye suppose, seeing it is but the third hour of the day. \nBut this is that which was spoken by the prophet Joel; \nAnd it shall come to pass in the last days, saith God, I will pour out of my Spirit upon all flesh: and your sons and your daughters shall prophesy, and your young men shall see visions, and your old men shall dream dreams: \nAnd on my servants and on my handmaidens I will pour out in those days of my Spirit; and they shall prophesy: \nAnd I will shew wonders in heaven above, and signs in the earth beneath; blood, and fire, and vapour of smoke: \nThe sun shall be turned into darkness, and the moon into blood, before the great and notable day of the Lord come: \nAnd it shall come to pass, that whosoever shall call on the name of the Lord shall be saved. \nYe men of Israel, hear these words; Jesus of Nazareth, a man approved of God among you by miracles and wonders and signs, which God did by him in the midst of you, as ye yourselves also know: \nHim, being delivered by the determinate counsel and foreknowledge of God, ye have taken, and by wicked hands have crucified and slain: \nWhom God hath raised up, having loosed the pains of death: because it was not possible that he should be holden of it. \nFor David speaketh concerning him, I foresaw the Lord always before my face, for he is on my right hand, that I should not be moved: \nTherefore did my heart rejoice, and my tongue was glad; moreover also my flesh shall rest in hope: \nBecause thou wilt not leave my soul in hell, neither wilt thou suffer thine Holy One to see corruption. \nThou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance. \nMen and brethren, let me freely speak unto you of the patriarch David, that he is both dead and buried, and his sepulchre is with us unto this day. \nTherefore being a prophet, and knowing that God had sworn with an oath to him, that of the fruit of his loins, according to the flesh, he would raise up Christ to sit on his throne; \nHe seeing this before spake of the resurrection of Christ, that his soul was not left in hell, neither his flesh did see corruption. \nThis Jesus hath God raised up, whereof we all are witnesses. \nTherefore being by the right hand of God exalted, and having received of the Father the promise of the Holy Ghost, he hath shed forth this, which ye now see and hear. \nFor David is not ascended into the heavens: but he saith himself, The Lord said unto my Lord, Sit thou on my right hand, \nUntil I make thy foes thy footstool. \nTherefore let all the house of Israel know assuredly, that God hath made the same Jesus, whom ye have crucified, both Lord and Christ. \nNow when they heard this, they were pricked in their heart, and said unto Peter and to the rest of the apostles, Men and brethren, what shall we do? \nThen Peter said unto them, Repent, and be baptized every one of you in the name of Jesus Christ for the remission of sins, and ye shall receive the gift of the Holy Ghost. \nFor the promise is unto you, and to your children, and to all that are afar off, even as many as the LORD our God shall call. \nAnd with many other words did he testify and exhort, saying, Save yourselves from this untoward generation. \nThen they that gladly received his word were baptized: and the same day there were added unto them about three thousand souls. \nAnd they continued stedfastly in the apostles' doctrine and fellowship, and in breaking of bread, and in prayers. \nAnd fear came upon every soul: and many wonders and signs were done by the apostles. \nAnd all that believed were together, and had all things common; \nAnd sold their possessions and goods, and parted them to all men, as every man had need. \nAnd they, continuing daily with one accord in the temple, and breaking bread from house to house, did eat their meat with gladness and singleness of heart, \nPraising God, and having favour with all the people. And the Lord added to the church daily such as should be saved. \nNow Peter and John went up together into the temple at the hour of prayer, being the ninth hour. \nAnd a certain man lame from his mother's womb was carried, whom they laid daily at the gate of the temple which is called Beautiful, to ask alms of them that entered into the temple; \nWho seeing Peter and John about to go into the temple asked an alms. \nAnd Peter, fastening his eyes upon him with John, said, Look on us. \nAnd he gave heed unto them, expecting to receive something of them. \nThen Peter said, Silver and gold have I none; but such as I have give I thee: In the name of Jesus Christ of Nazareth rise up and walk. \nAnd he took him by the right hand, and lifted him up: and immediately his feet and ankle bones received strength. \nAnd he leaping up stood, and walked, and entered with them into the temple, walking, and leaping, and praising God. \nAnd all the people saw him walking and praising God: \nAnd they knew that it was he which sat for alms at the Beautiful gate of the temple: and they were filled with wonder and amazement at that which had happened unto him. \nAnd as the lame man which was healed held Peter and John, all the people ran together unto them in the porch that is called Solomon's, greatly wondering. \nAnd when Peter saw it, he answered unto the people, Ye men of Israel, why marvel ye at this? or why look ye so earnestly on us, as though by our own power or holiness we had made this man to walk? \nThe God of Abraham, and of Isaac, and of Jacob, the God of our fathers, hath glorified his Son Jesus; whom ye delivered up, and denied him in the presence of Pilate, when he was determined to let him go. \nBut ye denied the Holy One and the Just, and desired a murderer to be granted unto you; \nAnd killed the Prince of life, whom God hath raised from the dead; whereof we are witnesses. \nAnd his name through faith in his name hath made this man strong, whom ye see and know: yea, the faith which is by him hath given him this perfect soundness in the presence of you all. \nAnd now, brethren, I wot that through ignorance ye did it, as did also your rulers. \nBut those things, which God before had shewed by the mouth of all his prophets, that Christ should suffer, he hath so fulfilled. \nRepent ye therefore, and be converted, that your sins may be blotted out, when the times of refreshing shall come from the presence of the Lord. \nAnd he shall send Jesus Christ, which before was preached unto you: \nWhom the heaven must receive until the times of restitution of all things, which God hath spoken by the mouth of all his holy prophets since the world began. \nFor Moses truly said unto the fathers, A prophet shall the Lord your God raise up unto you of your brethren, like unto me; him shall ye hear in all things whatsoever he shall say unto you. \nAnd it shall come to pass, that every soul, which will not hear that prophet, shall be destroyed from among the people. \nYea, and all the prophets from Samuel and those that follow after, as many as have spoken, have likewise foretold of these days. \nYe are the children of the prophets, and of the covenant which God made with our fathers, saying unto Abraham, And in thy seed shall all the kindreds of the earth be blessed. \nUnto you first God, having raised up his Son Jesus, sent him to bless you, in turning away every one of you from his iniquities. \nAnd as they spake unto the people, the priests, and the captain of the temple, and the Sadducees, came upon them, \nBeing grieved that they taught the people, and preached through Jesus the resurrection from the dead. \nAnd they laid hands on them, and put them in hold unto the next day: for it was now eventide. \nHowbeit many of them which heard the word believed; and the number of the men was about five thousand. \nAnd it came to pass on the morrow, that their rulers, and elders, and scribes, \nAnd Annas the high priest, and Caiaphas, and John, and Alexander, and as many as were of the kindred of the high priest, were gathered together at Jerusalem. \nAnd when they had set them in the midst, they asked, By what power, or by what name, have ye done this? \nThen Peter, filled with the Holy Ghost, said unto them, Ye rulers of the people, and elders of Israel, \nIf we this day be examined of the good deed done to the impotent man, by what means he is made whole; \nBe it known unto you all, and to all the people of Israel, that by the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even by him doth this man stand here before you whole. \nThis is the stone which was set at nought of you builders, which is become the head of the corner. \nNeither is there salvation in any other: for there is none other name under heaven given among men, whereby we must be saved. \nNow when they saw the boldness of Peter and John, and perceived that they were unlearned and ignorant men, they marvelled; and they took knowledge of them, that they had been with Jesus. \nAnd beholding the man which was healed standing with them, they could say nothing against it. \nBut when they had commanded them to go aside out of the council, they conferred among themselves, \nSaying, What shall we do to these men? for that indeed a notable miracle hath been done by them is manifest to all them that dwell in Jerusalem; and we cannot deny it. \nBut that it spread no further among the people, let us straitly threaten them, that they speak henceforth to no man in this name. \nAnd they called them, and commanded them not to speak at all nor teach in the name of Jesus. \nBut Peter and John answered and said unto them, Whether it be right in the sight of God to hearken unto you more than unto God, judge ye. \nFor we cannot but speak the things which we have seen and heard. \nSo when they had further threatened them, they let them go, finding nothing how they might punish them, because of the people: for all men glorified God for that which was done. \nFor the man was above forty years old, on whom this miracle of healing was shewed. \nAnd being let go, they went to their own company, and reported all that the chief priests and elders had said unto them. \nAnd when they heard that, they lifted up their voice to God with one accord, and said, Lord, thou art God, which hast made heaven, and earth, and the sea, and all that in them is: \nWho by the mouth of thy servant David hast said, Why did the heathen rage, and the people imagine vain things? \nThe kings of the earth stood up, and the rulers were gathered together against the Lord, and against his Christ. \nFor of a truth against thy holy child Jesus, whom thou hast anointed, both Herod, and Pontius Pilate, with the Gentiles, and the people of Israel, were gathered together, \nFor to do whatsoever thy hand and thy counsel determined before to be done. \nAnd now, Lord, behold their threatenings: and grant unto thy servants, that with all boldness they may speak thy word, \nBy stretching forth thine hand to heal; and that signs and wonders may be done by the name of thy holy child Jesus. \nAnd when they had prayed, the place was shaken where they were assembled together; and they were all filled with the Holy Ghost, and they spake the word of God with boldness. \nAnd the multitude of them that believed were of one heart and of one soul: neither said any of them that ought of the things which he possessed was his own; but they had all things common. \nAnd with great power gave the apostles witness of the resurrection of the Lord Jesus: and great grace was upon them all. \nNeither was there any among them that lacked: for as many as were possessors of lands or houses sold them, and brought the prices of the things that were sold, \nAnd laid them down at the apostles' feet: and distribution was made unto every man according as he had need. \nAnd Joses, who by the apostles was surnamed Barnabas, (which is, being interpreted, The son of consolation,) a Levite, and of the country of Cyprus, \nHaving land, sold it, and brought the money, and laid it at the apostles' feet. \nBut a certain man named Ananias, with Sapphira his wife, sold a possession, \nAnd kept back part of the price, his wife also being privy to it, and brought a certain part, and laid it at the apostles' feet. \nBut Peter said, Ananias, why hath Satan filled thine heart to lie to the Holy Ghost, and to keep back part of the price of the land? \nWhiles it remained, was it not thine own? and after it was sold, was it not in thine own power? why hast thou conceived this thing in thine heart? thou hast not lied unto men, but unto God. \nAnd Ananias hearing these words fell down, and gave up the ghost: and great fear came on all them that heard these things. \nAnd the young men arose, wound him up, and carried him out, and buried him. \nAnd it was about the space of three hours after, when his wife, not knowing what was done, came in. \nAnd Peter answered unto her, Tell me whether ye sold the land for so much? And she said, Yea, for so much. \nThen Peter said unto her, How is it that ye have agreed together to tempt the Spirit of the Lord? behold, the feet of them which have buried thy husband are at the door, and shall carry thee out. \nThen fell she down straightway at his feet, and yielded up the ghost: and the young men came in, and found her dead, and, carrying her forth, buried her by her husband. \nAnd great fear came upon all the church, and upon as many as heard these things. \nAnd by the hands of the apostles were many signs and wonders wrought among the people; (and they were all with one accord in Solomon's porch. \nAnd of the rest durst no man join himself to them: but the people magnified them. \nAnd believers were the more added to the Lord, multitudes both of men and women.) \nInsomuch that they brought forth the sick into the streets, and laid them on beds and couches, that at the least the shadow of Peter passing by might overshadow some of them. \nThere came also a multitude out of the cities round about unto Jerusalem, bringing sick folks, and them which were vexed with unclean spirits: and they were healed every one. \nThen the high priest rose up, and all they that were with him, (which is the sect of the Sadducees,) and were filled with indignation, \nAnd laid their hands on the apostles, and put them in the common prison. \nBut the angel of the Lord by night opened the prison doors, and brought them forth, and said, \nGo, stand and speak in the temple to the people all the words of this life. \nAnd when they heard that, they entered into the temple early in the morning, and taught. But the high priest came, and they that were with him, and called the council together, and all the senate of the children of Israel, and sent to the prison to have them brought. \nBut when the officers came, and found them not in the prison, they returned and told, \nSaying, The prison truly found we shut with all safety, and the keepers standing without before the doors: but when we had opened, we found no man within. \nNow when the high priest and the captain of the temple and the chief priests heard these things, they doubted of them whereunto this would grow. \nThen came one and told them, saying, Behold, the men whom ye put in prison are standing in the temple, and teaching the people. \nThen went the captain with the officers, and brought them without violence: for they feared the people, lest they should have been stoned. \nAnd when they had brought them, they set them before the council: and the high priest asked them, \nSaying, Did not we straitly command you that ye should not teach in this name? and, behold, ye have filled Jerusalem with your doctrine, and intend to bring this man's blood upon us. \nThen Peter and the other apostles answered and said, We ought to obey God rather than men. \nThe God of our fathers raised up Jesus, whom ye slew and hanged on a tree. \nHim hath God exalted with his right hand to be a Prince and a Saviour, for to give repentance to Israel, and forgiveness of sins. \nAnd we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him. \nWhen they heard that, they were cut to the heart, and took counsel to slay them. \nThen stood there up one in the council, a Pharisee, named Gamaliel, a doctor of the law, had in reputation among all the people, and commanded to put the apostles forth a little space; \nAnd said unto them, Ye men of Israel, take heed to yourselves what ye intend to do as touching these men. \nFor before these days rose up Theudas, boasting himself to be somebody; to whom a number of men, about four hundred, joined themselves: who was slain; and all, as many as obeyed him, were scattered, and brought to nought. \nAfter this man rose up Judas of Galilee in the days of the taxing, and drew away much people after him: he also perished; and all, even as many as obeyed him, were dispersed. \nAnd now I say unto you, Refrain from these men, and let them alone: for if this counsel or this work be of men, it will come to nought: \nBut if it be of God, ye cannot overthrow it; lest haply ye be found even to fight against God. \nAnd to him they agreed: and when they had called the apostles, and beaten them, they commanded that they should not speak in the name of Jesus, and let them go. \nAnd they departed from the presence of the council, rejoicing that they were counted worthy to suffer shame for his name. \nAnd daily in the temple, and in every house, they ceased not to teach and preach Jesus Christ. \nAnd in those days, when the number of the disciples was multiplied, there arose a murmuring of the Grecians against the Hebrews, because their widows were neglected in the daily ministration. \nThen the twelve called the multitude of the disciples unto them, and said, It is not reason that we should leave the word of God, and serve tables. \nWherefore, brethren, look ye out among you seven men of honest report, full of the Holy Ghost and wisdom, whom we may appoint over this business. \nBut we will give ourselves continually to prayer, and to the ministry of the word. \nAnd the saying pleased the whole multitude: and they chose Stephen, a man full of faith and of the Holy Ghost, and Philip, and Prochorus, and Nicanor, and Timon, and Parmenas, and Nicolas a proselyte of Antioch: \nWhom they set before the apostles: and when they had prayed, they laid their hands on them. \nAnd the word of God increased; and the number of the disciples multiplied in Jerusalem greatly; and a great company of the priests were obedient to the faith. \nAnd Stephen, full of faith and power, did great wonders and miracles among the people. \nThen there arose certain of the synagogue, which is called the synagogue of the Libertines, and Cyrenians, and Alexandrians, and of them of Cilicia and of Asia, disputing with Stephen. \nAnd they were not able to resist the wisdom and the spirit by which he spake. \nThen they suborned men, which said, We have heard him speak blasphemous words against Moses, and against God. \nAnd they stirred up the people, and the elders, and the scribes, and came upon him, and caught him, and brought him to the council, \nAnd set up false witnesses, which said, This man ceaseth not to speak blasphemous words against this holy place, and the law: \nFor we have heard him say, that this Jesus of Nazareth shall destroy this place, and shall change the customs which Moses delivered us. \nAnd all that sat in the council, looking stedfastly on him, saw his face as it had been the face of an angel. \nThen said the high priest, Are these things so? \nAnd he said, Men, brethren, and fathers, hearken; The God of glory appeared unto our father Abraham, when he was in Mesopotamia, before he dwelt in Charran, \nAnd said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee. \nThen came he out of the land of the Chaldaeans, and dwelt in Charran: and from thence, when his father was dead, he removed him into this land, wherein ye now dwell. \nAnd he gave him none inheritance in it, no, not so much as to set his foot on: yet he promised that he would give it to him for a possession, and to his seed after him, when as yet he had no child. \nAnd God spake on this wise, That his seed should sojourn in a strange land; and that they should bring them into bondage, and entreat them evil four hundred years. \nAnd the nation to whom they shall be in bondage will I judge, said God: and after that shall they come forth, and serve me in this place. \nAnd he gave him the covenant of circumcision: and so Abraham begat Isaac, and circumcised him the eighth day; and Isaac begat Jacob; and Jacob begat the twelve patriarchs. \nAnd the patriarchs, moved with envy, sold Joseph into Egypt: but God was with him, \nAnd delivered him out of all his afflictions, and gave him favour and wisdom in the sight of Pharaoh king of Egypt; and he made him governor over Egypt and all his house. \nNow there came a dearth over all the land of Egypt and Chanaan, and great affliction: and our fathers found no sustenance. \nBut when Jacob heard that there was corn in Egypt, he sent out our fathers first. \nAnd at the second time Joseph was made known to his brethren; and Joseph's kindred was made known unto Pharaoh. \nThen sent Joseph, and called his father Jacob to him, and all his kindred, threescore and fifteen souls. \nSo Jacob went down into Egypt, and died, he, and our fathers, \nAnd were carried over into Sychem, and laid in the sepulchre that Abraham bought for a sum of money of the sons of Emmor the father of Sychem. \nBut when the time of the promise drew nigh, which God had sworn to Abraham, the people grew and multiplied in Egypt, \nTill another king arose, which knew not Joseph. \nThe same dealt subtilly with our kindred, and evil entreated our fathers, so that they cast out their young children, to the end they might not live. \nIn which time Moses was born, and was exceeding fair, and nourished up in his father's house three months: \nAnd when he was cast out, Pharaoh's daughter took him up, and nourished him for her own son. \nAnd Moses was learned in all the wisdom of the Egyptians, and was mighty in words and in deeds. \nAnd when he was full forty years old, it came into his heart to visit his brethren the children of Israel. \nAnd seeing one of them suffer wrong, he defended him, and avenged him that was oppressed, and smote the Egyptian: \nFor he supposed his brethren would have understood how that God by his hand would deliver them: but they understood not. \nAnd the next day he shewed himself unto them as they strove, and would have set them at one again, saying, Sirs, ye are brethren; why do ye wrong one to another? \nBut he that did his neighbour wrong thrust him away, saying, Who made thee a ruler and a judge over us? \nWilt thou kill me, as thou diddest the Egyptian yesterday? \nThen fled Moses at this saying, and was a stranger in the land of Madian, where he begat two sons. \nAnd when forty years were expired, there appeared to him in the wilderness of mount Sina an angel of the Lord in a flame of fire in a bush. \nWhen Moses saw it, he wondered at the sight: and as he drew near to behold it, the voice of the LORD came unto him, \nSaying, I am the God of thy fathers, the God of Abraham, and the God of Isaac, and the God of Jacob. Then Moses trembled, and durst not behold. \nThen said the Lord to him, Put off thy shoes from thy feet: for the place where thou standest is holy ground. \nI have seen, I have seen the affliction of my people which is in Egypt, and I have heard their groaning, and am come down to deliver them. And now come, I will send thee into Egypt. \nThis Moses whom they refused, saying, Who made thee a ruler and a judge? the same did God send to be a ruler and a deliverer by the hand of the angel which appeared to him in the bush. \nHe brought them out, after that he had shewed wonders and signs in the land of Egypt, and in the Red sea, and in the wilderness forty years. \nThis is that Moses, which said unto the children of Israel, A prophet shall the Lord your God raise up unto you of your brethren, like unto me; him shall ye hear. \nThis is he, that was in the church in the wilderness with the angel which spake to him in the mount Sina, and with our fathers: who received the lively oracles to give unto us: \nTo whom our fathers would not obey, but thrust him from them, and in their hearts turned back again into Egypt, \nSaying unto Aaron, Make us gods to go before us: for as for this Moses, which brought us out of the land of Egypt, we wot not what is become of him. \nAnd they made a calf in those days, and offered sacrifice unto the idol, and rejoiced in the works of their own hands. \nThen God turned, and gave them up to worship the host of heaven; as it is written in the book of the prophets, O ye house of Israel, have ye offered to me slain beasts and sacrifices by the space of forty years in the wilderness? \nYea, ye took up the tabernacle of Moloch, and the star of your god Remphan, figures which ye made to worship them: and I will carry you away beyond Babylon. \nOur fathers had the tabernacle of witness in the wilderness, as he had appointed, speaking unto Moses, that he should make it according to the fashion that he had seen. \nWhich also our fathers that came after brought in with Jesus into the possession of the Gentiles, whom God drave out before the face of our fathers, unto the days of David; \nWho found favour before God, and desired to find a tabernacle for the God of Jacob. \nBut Solomon built him an house. \nHowbeit the most High dwelleth not in temples made with hands; as saith the prophet, \nHeaven is my throne, and earth is my footstool: what house will ye build me? saith the Lord: or what is the place of my rest? \nHath not my hand made all these things? \nYe stiffnecked and uncircumcised in heart and ears, ye do always resist the Holy Ghost: as your fathers did, so do ye. \nWhich of the prophets have not your fathers persecuted? and they have slain them which shewed before of the coming of the Just One; of whom ye have been now the betrayers and murderers: \nWho have received the law by the disposition of angels, and have not kept it. \nWhen they heard these things, they were cut to the heart, and they gnashed on him with their teeth. \nBut he, being full of the Holy Ghost, looked up stedfastly into heaven, and saw the glory of God, and Jesus standing on the right hand of God, \nAnd said, Behold, I see the heavens opened, and the Son of man standing on the right hand of God. \nThen they cried out with a loud voice, and stopped their ears, and ran upon him with one accord, \nAnd cast him out of the city, and stoned him: and the witnesses laid down their clothes at a young man's feet, whose name was Saul. \nAnd they stoned Stephen, calling upon God, and saying, Lord Jesus, receive my spirit. \nAnd he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep. \nAnd Saul was consenting unto his death. And at that time there was a great persecution against the church which was at Jerusalem; and they were all scattered abroad throughout the regions of Judaea and Samaria, except the apostles. \nAnd devout men carried Stephen to his burial, and made great lamentation over him. \nAs for Saul, he made havock of the church, entering into every house, and haling men and women committed them to prison. \nTherefore they that were scattered abroad went every where preaching the word. \nThen Philip went down to the city of Samaria, and preached Christ unto them. \nAnd the people with one accord gave heed unto those things which Philip spake, hearing and seeing the miracles which he did. \nFor unclean spirits, crying with loud voice, came out of many that were possessed with them: and many taken with palsies, and that were lame, were healed. \nAnd there was great joy in that city. \nBut there was a certain man, called Simon, which beforetime in the same city used sorcery, and bewitched the people of Samaria, giving out that himself was some great one: \nTo whom they all gave heed, from the least to the greatest, saying, This man is the great power of God. \nAnd to him they had regard, because that of long time he had bewitched them with sorceries. \nBut when they believed Philip preaching the things concerning the kingdom of God, and the name of Jesus Christ, they were baptized, both men and women. \nThen Simon himself believed also: and when he was baptized, he continued with Philip, and wondered, beholding the miracles and signs which were done. \nNow when the apostles which were at Jerusalem heard that Samaria had received the word of God, they sent unto them Peter and John: \nWho, when they were come down, prayed for them, that they might receive the Holy Ghost: \n(For as yet he was fallen upon none of them: only they were baptized in the name of the Lord Jesus.) \nThen laid they their hands on them, and they received the Holy Ghost. \nAnd when Simon saw that through laying on of the apostles' hands the Holy Ghost was given, he offered them money, \nSaying, Give me also this power, that on whomsoever I lay hands, he may receive the Holy Ghost. \nBut Peter said unto him, Thy money perish with thee, because thou hast thought that the gift of God may be purchased with money. \nThou hast neither part nor lot in this matter: for thy heart is not right in the sight of God. \nRepent therefore of this thy wickedness, and pray God, if perhaps the thought of thine heart may be forgiven thee. \nFor I perceive that thou art in the gall of bitterness, and in the bond of iniquity. \nThen answered Simon, and said, Pray ye to the LORD for me, that none of these things which ye have spoken come upon me. \nAnd they, when they had testified and preached the word of the Lord, returned to Jerusalem, and preached the gospel in many villages of the Samaritans. \nAnd the angel of the Lord spake unto Philip, saying, Arise, and go toward the south unto the way that goeth down from Jerusalem unto Gaza, which is desert. \nAnd he arose and went: and, behold, a man of Ethiopia, an eunuch of great authority under Candace queen of the Ethiopians, who had the charge of all her treasure, and had come to Jerusalem for to worship, \nWas returning, and sitting in his chariot read Esaias the prophet. \nThen the Spirit said unto Philip, Go near, and join thyself to this chariot. \nAnd Philip ran thither to him, and heard him read the prophet Esaias, and said, Understandest thou what thou readest? \nAnd he said, How can I, except some man should guide me? And he desired Philip that he would come up and sit with him. \nThe place of the scripture which he read was this, He was led as a sheep to the slaughter; and like a lamb dumb before his shearer, so opened he not his mouth: \nIn his humiliation his judgment was taken away: and who shall declare his generation? for his life is taken from the earth. \nAnd the eunuch answered Philip, and said, I pray thee, of whom speaketh the prophet this? of himself, or of some other man? \nThen Philip opened his mouth, and began at the same scripture, and preached unto him Jesus. \nAnd as they went on their way, they came unto a certain water: and the eunuch said, See, here is water; what doth hinder me to be baptized? \nAnd Philip said, If thou believest with all thine heart, thou mayest. And he answered and said, I believe that Jesus Christ is the Son of God. \nAnd he commanded the chariot to stand still: and they went down both into the water, both Philip and the eunuch; and he baptized him. \nAnd when they were come up out of the water, the Spirit of the Lord caught away Philip, that the eunuch saw him no more: and he went on his way rejoicing. \nBut Philip was found at Azotus: and passing through he preached in all the cities, till he came to Caesarea. \nAnd Saul, yet breathing out threatenings and slaughter against the disciples of the Lord, went unto the high priest, \nAnd desired of him letters to Damascus to the synagogues, that if he found any of this way, whether they were men or women, he might bring them bound unto Jerusalem. \nAnd as he journeyed, he came near Damascus: and suddenly there shined round about him a light from heaven: \nAnd he fell to the earth, and heard a voice saying unto him, Saul, Saul, why persecutest thou me? \nAnd he said, Who art thou, Lord? And the Lord said, I am Jesus whom thou persecutest: it is hard for thee to kick against the pricks. \nAnd he trembling and astonished said, Lord, what wilt thou have me to do? And the Lord said unto him, Arise, and go into the city, and it shall be told thee what thou must do. \nAnd the men which journeyed with him stood speechless, hearing a voice, but seeing no man. \nAnd Saul arose from the earth; and when his eyes were opened, he saw no man: but they led him by the hand, and brought him into Damascus. \nAnd he was three days without sight, and neither did eat nor drink. \nAnd there was a certain disciple at Damascus, named Ananias; and to him said the Lord in a vision, Ananias. And he said, Behold, I am here, Lord. \nAnd the Lord said unto him, Arise, and go into the street which is called Straight, and enquire in the house of Judas for one called Saul, of Tarsus: for, behold, he prayeth, \nAnd hath seen in a vision a man named Ananias coming in, and putting his hand on him, that he might receive his sight. \nThen Ananias answered, Lord, I have heard by many of this man, how much evil he hath done to thy saints at Jerusalem: \nAnd here he hath authority from the chief priests to bind all that call on thy name. \nBut the Lord said unto him, Go thy way: for he is a chosen vessel unto me, to bear my name before the Gentiles, and kings, and the children of Israel: \nFor I will shew him how great things he must suffer for my name's sake. \nAnd Ananias went his way, and entered into the house; and putting his hands on him said, Brother Saul, the Lord, even Jesus, that appeared unto thee in the way as thou camest, hath sent me, that thou mightest receive thy sight, and be filled with the Holy Ghost. \nAnd immediately there fell from his eyes as it had been scales: and he received sight forthwith, and arose, and was baptized. \nAnd when he had received meat, he was strengthened. Then was Saul certain days with the disciples which were at Damascus. \nAnd straightway he preached Christ in the synagogues, that he is the Son of God. \nBut all that heard him were amazed, and said; Is not this he that destroyed them which called on this name in Jerusalem, and came hither for that intent, that he might bring them bound unto the chief priests? \nBut Saul increased the more in strength, and confounded the Jews which dwelt at Damascus, proving that this is very Christ. \nAnd after that many days were fulfilled, the Jews took counsel to kill him: \nBut their laying await was known of Saul. And they watched the gates day and night to kill him. \nThen the disciples took him by night, and let him down by the wall in a basket. \nAnd when Saul was come to Jerusalem, he assayed to join himself to the disciples: but they were all afraid of him, and believed not that he was a disciple. \nBut Barnabas took him, and brought him to the apostles, and declared unto them how he had seen the Lord in the way, and that he had spoken to him, and how he had preached boldly at Damascus in the name of Jesus. \nAnd he was with them coming in and going out at Jerusalem. \nAnd he spake boldly in the name of the Lord Jesus, and disputed against the Grecians: but they went about to slay him. \nWhich when the brethren knew, they brought him down to Caesarea, and sent him forth to Tarsus. \nThen had the churches rest throughout all Judaea and Galilee and Samaria, and were edified; and walking in the fear of the Lord, and in the comfort of the Holy Ghost, were multiplied. \nAnd it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda. \nAnd there he found a certain man named Aeneas, which had kept his bed eight years, and was sick of the palsy. \nAnd Peter said unto him, Aeneas, Jesus Christ maketh thee whole: arise, and make thy bed. And he arose immediately. \nAnd all that dwelt at Lydda and Saron saw him, and turned to the Lord. \nNow there was at Joppa a certain disciple named Tabitha, which by interpretation is called Dorcas: this woman was full of good works and almsdeeds which she did. \nAnd it came to pass in those days, that she was sick, and died: whom when they had washed, they laid her in an upper chamber. \nAnd forasmuch as Lydda was nigh to Joppa, and the disciples had heard that Peter was there, they sent unto him two men, desiring him that he would not delay to come to them. \nThen Peter arose and went with them. When he was come, they brought him into the upper chamber: and all the widows stood by him weeping, and shewing the coats and garments which Dorcas made, while she was with them. \nBut Peter put them all forth, and kneeled down, and prayed; and turning him to the body said, Tabitha, arise. And she opened her eyes: and when she saw Peter, she sat up. \nAnd he gave her his hand, and lifted her up, and when he had called the saints and widows, presented her alive. \nAnd it was known throughout all Joppa; and many believed in the Lord. \nAnd it came to pass, that he tarried many days in Joppa with one Simon a tanner. \nThere was a certain man in Caesarea called Cornelius, a centurion of the band called the Italian band, \nA devout man, and one that feared God with all his house, which gave much alms to the people, and prayed to God alway. \nHe saw in a vision evidently about the ninth hour of the day an angel of God coming in to him, and saying unto him, Cornelius. \nAnd when he looked on him, he was afraid, and said, What is it, Lord? And he said unto him, Thy prayers and thine alms are come up for a memorial before God. \nAnd now send men to Joppa, and call for one Simon, whose surname is Peter: \nHe lodgeth with one Simon a tanner, whose house is by the sea side: he shall tell thee what thou oughtest to do. \nAnd when the angel which spake unto Cornelius was departed, he called two of his household servants, and a devout soldier of them that waited on him continually; \nAnd when he had declared all these things unto them, he sent them to Joppa. \nOn the morrow, as they went on their journey, and drew nigh unto the city, Peter went up upon the housetop to pray about the sixth hour: \nAnd he became very hungry, and would have eaten: but while they made ready, he fell into a trance, \nAnd saw heaven opened, and a certain vessel descending upon him, as it had been a great sheet knit at the four corners, and let down to the earth: \nWherein were all manner of fourfooted beasts of the earth, and wild beasts, and creeping things, and fowls of the air. \nAnd there came a voice to him, Rise, Peter; kill, and eat. \nBut Peter said, Not so, Lord; for I have never eaten any thing that is common or unclean. \nAnd the voice spake unto him again the second time, What God hath cleansed, that call not thou common. \nThis was done thrice: and the vessel was received up again into heaven. \nNow while Peter doubted in himself what this vision which he had seen should mean, behold, the men which were sent from Cornelius had made enquiry for Simon's house, and stood before the gate, \nAnd called, and asked whether Simon, which was surnamed Peter, were lodged there. \nWhile Peter thought on the vision, the Spirit said unto him, Behold, three men seek thee. \nArise therefore, and get thee down, and go with them, doubting nothing: for I have sent them. \nThen Peter went down to the men which were sent unto him from Cornelius; and said, Behold, I am he whom ye seek: what is the cause wherefore ye are come? \nAnd they said, Cornelius the centurion, a just man, and one that feareth God, and of good report among all the nation of the Jews, was warned from God by an holy angel to send for thee into his house, and to hear words of thee. \nThen called he them in, and lodged them. And on the morrow Peter went away with them, and certain brethren from Joppa accompanied him. \nAnd the morrow after they entered into Caesarea. And Cornelius waited for them, and he had called together his kinsmen and near friends. \nAnd as Peter was coming in, Cornelius met him, and fell down at his feet, and worshipped him. \nBut Peter took him up, saying, Stand up; I myself also am a man. \nAnd as he talked with him, he went in, and found many that were come together. \nAnd he said unto them, Ye know how that it is an unlawful thing for a man that is a Jew to keep company, or come unto one of another nation; but God hath shewed me that I should not call any man common or unclean. \nTherefore came I unto you without gainsaying, as soon as I was sent for: I ask therefore for what intent ye have sent for me? \nAnd Cornelius said, Four days ago I was fasting until this hour; and at the ninth hour I prayed in my house, and, behold, a man stood before me in bright clothing, \nAnd said, Cornelius, thy prayer is heard, and thine alms are had in remembrance in the sight of God. \nSend therefore to Joppa, and call hither Simon, whose surname is Peter; he is lodged in the house of one Simon a tanner by the sea side: who, when he cometh, shall speak unto thee. \nImmediately therefore I sent to thee; and thou hast well done that thou art come. Now therefore are we all here present before God, to hear all things that are commanded thee of God. \nThen Peter opened his mouth, and said, Of a truth I perceive that God is no respecter of persons: \nBut in every nation he that feareth him, and worketh righteousness, is accepted with him. \nThe word which God sent unto the children of Israel, preaching peace by Jesus Christ: (he is Lord of all:) \nThat word, I say, ye know, which was published throughout all Judaea, and began from Galilee, after the baptism which John preached; \nHow God anointed Jesus of Nazareth with the Holy Ghost and with power: who went about doing good, and healing all that were oppressed of the devil; for God was with him. \nAnd we are witnesses of all things which he did both in the land of the Jews, and in Jerusalem; whom they slew and hanged on a tree: \nHim God raised up the third day, and shewed him openly; \nNot to all the people, but unto witnesses chosen before God, even to us, who did eat and drink with him after he rose from the dead. \nAnd he commanded us to preach unto the people, and to testify that it is he which was ordained of God to be the Judge of quick and dead. \nTo him give all the prophets witness, that through his name whosoever believeth in him shall receive remission of sins. \nWhile Peter yet spake these words, the Holy Ghost fell on all them which heard the word. \nAnd they of the circumcision which believed were astonished, as many as came with Peter, because that on the Gentiles also was poured out the gift of the Holy Ghost. \nFor they heard them speak with tongues, and magnify God. Then answered Peter, \nCan any man forbid water, that these should not be baptized, which have received the Holy Ghost as well as we? \nAnd he commanded them to be baptized in the name of the Lord. Then prayed they him to tarry certain days. \nAnd the apostles and brethren that were in Judaea heard that the Gentiles had also received the word of God. \nAnd when Peter was come up to Jerusalem, they that were of the circumcision contended with him, \nSaying, Thou wentest in to men uncircumcised, and didst eat with them. \nBut Peter rehearsed the matter from the beginning, and expounded it by order unto them, saying, \nI was in the city of Joppa praying: and in a trance I saw a vision, A certain vessel descend, as it had been a great sheet, let down from heaven by four corners; and it came even to me: \nUpon the which when I had fastened mine eyes, I considered, and saw fourfooted beasts of the earth, and wild beasts, and creeping things, and fowls of the air. \nAnd I heard a voice saying unto me, Arise, Peter; slay and eat. \nBut I said, Not so, Lord: for nothing common or unclean hath at any time entered into my mouth. \nBut the voice answered me again from heaven, What God hath cleansed, that call not thou common. \nAnd this was done three times: and all were drawn up again into heaven. \nAnd, behold, immediately there were three men already come unto the house where I was, sent from Caesarea unto me. \nAnd the Spirit bade me go with them, nothing doubting. Moreover these six brethren accompanied me, and we entered into the man's house: \nAnd he shewed us how he had seen an angel in his house, which stood and said unto him, Send men to Joppa, and call for Simon, whose surname is Peter; \nWho shall tell thee words, whereby thou and all thy house shall be saved. \nAnd as I began to speak, the Holy Ghost fell on them, as on us at the beginning. \nThen remembered I the word of the Lord, how that he said, John indeed baptized with water; but ye shall be baptized with the Holy Ghost. \nForasmuch then as God gave them the like gift as he did unto us, who believed on the Lord Jesus Christ; what was I, that I could withstand God? \nWhen they heard these things, they held their peace, and glorified God, saying, Then hath God also to the Gentiles granted repentance unto life. \nNow they which were scattered abroad upon the persecution that arose about Stephen travelled as far as Phenice, and Cyprus, and Antioch, preaching the word to none but unto the Jews only. \nAnd some of them were men of Cyprus and Cyrene, which, when they were come to Antioch, spake unto the Grecians, preaching the LORD Jesus. \nAnd the hand of the Lord was with them: and a great number believed, and turned unto the Lord. \nThen tidings of these things came unto the ears of the church which was in Jerusalem: and they sent forth Barnabas, that he should go as far as Antioch. \nWho, when he came, and had seen the grace of God, was glad, and exhorted them all, that with purpose of heart they would cleave unto the Lord. \nFor he was a good man, and full of the Holy Ghost and of faith: and much people was added unto the Lord. \nThen departed Barnabas to Tarsus, for to seek Saul: \nAnd when he had found him, he brought him unto Antioch. And it came to pass, that a whole year they assembled themselves with the church, and taught much people. And the disciples were called Christians first in Antioch. \nAnd in these days came prophets from Jerusalem unto Antioch. \nAnd there stood up one of them named Agabus, and signified by the Spirit that there should be great dearth throughout all the world: which came to pass in the days of Claudius Caesar. \nThen the disciples, every man according to his ability, determined to send relief unto the brethren which dwelt in Judaea: \nWhich also they did, and sent it to the elders by the hands of Barnabas and Saul. \nNow about that time Herod the king stretched forth his hands to vex certain of the church. \nAnd he killed James the brother of John with the sword. \nAnd because he saw it pleased the Jews, he proceeded further to take Peter also. (Then were the days of unleavened bread.) \nAnd when he had apprehended him, he put him in prison, and delivered him to four quaternions of soldiers to keep him; intending after Easter to bring him forth to the people. \nPeter therefore was kept in prison: but prayer was made without ceasing of the church unto God for him. \nAnd when Herod would have brought him forth, the same night Peter was sleeping between two soldiers, bound with two chains: and the keepers before the door kept the prison. \nAnd, behold, the angel of the Lord came upon him, and a light shined in the prison: and he smote Peter on the side, and raised him up, saying, Arise up quickly. And his chains fell off from his hands. \nAnd the angel said unto him, Gird thyself, and bind on thy sandals. And so he did. And he saith unto him, Cast thy garment about thee, and follow me. \nAnd he went out, and followed him; and wist not that it was true which was done by the angel; but thought he saw a vision. \nWhen they were past the first and the second ward, they came unto the iron gate that leadeth unto the city; which opened to them of his own accord: and they went out, and passed on through one street; and forthwith the angel departed from him. \nAnd when Peter was come to himself, he said, Now I know of a surety, that the LORD hath sent his angel, and hath delivered me out of the hand of Herod, and from all the expectation of the people of the Jews. \nAnd when he had considered the thing, he came to the house of Mary the mother of John, whose surname was Mark; where many were gathered together praying. \nAnd as Peter knocked at the door of the gate, a damsel came to hearken, named Rhoda. \nAnd when she knew Peter's voice, she opened not the gate for gladness, but ran in, and told how Peter stood before the gate. \nAnd they said unto her, Thou art mad. But she constantly affirmed that it was even so. Then said they, It is his angel. \nBut Peter continued knocking: and when they had opened the door, and saw him, they were astonished. \nBut he, beckoning unto them with the hand to hold their peace, declared unto them how the Lord had brought him out of the prison. And he said, Go shew these things unto James, and to the brethren. And he departed, and went into another place. \nNow as soon as it was day, there was no small stir among the soldiers, what was become of Peter. \nAnd when Herod had sought for him, and found him not, he examined the keepers, and commanded that they should be put to death. And he went down from Judaea to Caesarea, and there abode. \nAnd Herod was highly displeased with them of Tyre and Sidon: but they came with one accord to him, and, having made Blastus the king's chamberlain their friend, desired peace; because their country was nourished by the king's country. \nAnd upon a set day Herod, arrayed in royal apparel, sat upon his throne, and made an oration unto them. \nAnd the people gave a shout, saying, It is the voice of a god, and not of a man. \nAnd immediately the angel of the Lord smote him, because he gave not God the glory: and he was eaten of worms, and gave up the ghost. \nBut the word of God grew and multiplied. \nAnd Barnabas and Saul returned from Jerusalem, when they had fulfilled their ministry, and took with them John, whose surname was Mark. \nNow there were in the church that was at Antioch certain prophets and teachers; as Barnabas, and Simeon that was called Niger, and Lucius of Cyrene, and Manaen, which had been brought up with Herod the tetrarch, and Saul. \nAs they ministered to the Lord, and fasted, the Holy Ghost said, Separate me Barnabas and Saul for the work whereunto I have called them. \nAnd when they had fasted and prayed, and laid their hands on them, they sent them away. \nSo they, being sent forth by the Holy Ghost, departed unto Seleucia; and from thence they sailed to Cyprus. \nAnd when they were at Salamis, they preached the word of God in the synagogues of the Jews: and they had also John to their minister. \nAnd when they had gone through the isle unto Paphos, they found a certain sorcerer, a false prophet, a Jew, whose name was Barjesus: \nWhich was with the deputy of the country, Sergius Paulus, a prudent man; who called for Barnabas and Saul, and desired to hear the word of God. \nBut Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn away the deputy from the faith. \nThen Saul, (who also is called Paul,) filled with the Holy Ghost, set his eyes on him. \nAnd said, O full of all subtilty and all mischief, thou child of the devil, thou enemy of all righteousness, wilt thou not cease to pervert the right ways of the Lord? \nAnd now, behold, the hand of the Lord is upon thee, and thou shalt be blind, not seeing the sun for a season. And immediately there fell on him a mist and a darkness; and he went about seeking some to lead him by the hand. \nThen the deputy, when he saw what was done, believed, being astonished at the doctrine of the Lord. \nNow when Paul and his company loosed from Paphos, they came to Perga in Pamphylia: and John departing from them returned to Jerusalem. \nBut when they departed from Perga, they came to Antioch in Pisidia, and went into the synagogue on the sabbath day, and sat down. \nAnd after the reading of the law and the prophets the rulers of the synagogue sent unto them, saying, Ye men and brethren, if ye have any word of exhortation for the people, say on. \nThen Paul stood up, and beckoning with his hand said, Men of Israel, and ye that fear God, give audience. \nThe God of this people of Israel chose our fathers, and exalted the people when they dwelt as strangers in the land of Egypt, and with an high arm brought he them out of it. \nAnd about the time of forty years suffered he their manners in the wilderness. \nAnd when he had destroyed seven nations in the land of Chanaan, he divided their land to them by lot. \nAnd after that he gave unto them judges about the space of four hundred and fifty years, until Samuel the prophet. \nAnd afterward they desired a king: and God gave unto them Saul the son of Cis, a man of the tribe of Benjamin, by the space of forty years. \nAnd when he had removed him, he raised up unto them David to be their king; to whom also he gave their testimony, and said, I have found David the son of Jesse, a man after mine own heart, which shall fulfil all my will. \nOf this man's seed hath God according to his promise raised unto Israel a Saviour, Jesus: \nWhen John had first preached before his coming the baptism of repentance to all the people of Israel. \nAnd as John fulfilled his course, he said, Whom think ye that I am? I am not he. But, behold, there cometh one after me, whose shoes of his feet I am not worthy to loose. \nMen and brethren, children of the stock of Abraham, and whosoever among you feareth God, to you is the word of this salvation sent. \nFor they that dwell at Jerusalem, and their rulers, because they knew him not, nor yet the voices of the prophets which are read every sabbath day, they have fulfilled them in condemning him. \nAnd though they found no cause of death in him, yet desired they Pilate that he should be slain. \nAnd when they had fulfilled all that was written of him, they took him down from the tree, and laid him in a sepulchre. \nBut God raised him from the dead: \nAnd he was seen many days of them which came up with him from Galilee to Jerusalem, who are his witnesses unto the people. \nAnd we declare unto you glad tidings, how that the promise which was made unto the fathers, \nGod hath fulfilled the same unto us their children, in that he hath raised up Jesus again; as it is also written in the second psalm, Thou art my Son, this day have I begotten thee. \nAnd as concerning that he raised him up from the dead, now no more to return to corruption, he said on this wise, I will give you the sure mercies of David. \nWherefore he saith also in another psalm, Thou shalt not suffer thine Holy One to see corruption. \nFor David, after he had served his own generation by the will of God, fell on sleep, and was laid unto his fathers, and saw corruption: \nBut he, whom God raised again, saw no corruption. \nBe it known unto you therefore, men and brethren, that through this man is preached unto you the forgiveness of sins: \nAnd by him all that believe are justified from all things, from which ye could not be justified by the law of Moses. \nBeware therefore, lest that come upon you, which is spoken of in the prophets; \nBehold, ye despisers, and wonder, and perish: for I work a work in your days, a work which ye shall in no wise believe, though a man declare it unto you. \nAnd when the Jews were gone out of the synagogue, the Gentiles besought that these words might be preached to them the next sabbath. \nNow when the congregation was broken up, many of the Jews and religious proselytes followed Paul and Barnabas: who, speaking to them, persuaded them to continue in the grace of God. \nAnd the next sabbath day came almost the whole city together to hear the word of God. \nBut when the Jews saw the multitudes, they were filled with envy, and spake against those things which were spoken by Paul, contradicting and blaspheming. \nThen Paul and Barnabas waxed bold, and said, It was necessary that the word of God should first have been spoken to you: but seeing ye put it from you, and judge yourselves unworthy of everlasting life, lo, we turn to the Gentiles. \nFor so hath the Lord commanded us, saying, I have set thee to be a light of the Gentiles, that thou shouldest be for salvation unto the ends of the earth. \nAnd when the Gentiles heard this, they were glad, and glorified the word of the Lord: and as many as were ordained to eternal life believed. \nAnd the word of the Lord was published throughout all the region. \nBut the Jews stirred up the devout and honourable women, and the chief men of the city, and raised persecution against Paul and Barnabas, and expelled them out of their coasts. \nBut they shook off the dust of their feet against them, and came unto Iconium. \nAnd the disciples were filled with joy, and with the Holy Ghost. \nAnd it came to pass in Iconium, that they went both together into the synagogue of the Jews, and so spake, that a great multitude both of the Jews and also of the Greeks believed. \nBut the unbelieving Jews stirred up the Gentiles, and made their minds evil affected against the brethren. \nLong time therefore abode they speaking boldly in the Lord, which gave testimony unto the word of his grace, and granted signs and wonders to be done by their hands. \nBut the multitude of the city was divided: and part held with the Jews, and part with the apostles. \nAnd when there was an assault made both of the Gentiles, and also of the Jews with their rulers, to use them despitefully, and to stone them, \nThey were ware of it, and fled unto Lystra and Derbe, cities of Lycaonia, and unto the region that lieth round about: \nAnd there they preached the gospel. \nAnd there sat a certain man at Lystra, impotent in his feet, being a cripple from his mother's womb, who never had walked: \nThe same heard Paul speak: who stedfastly beholding him, and perceiving that he had faith to be healed, \nSaid with a loud voice, Stand upright on thy feet. And he leaped and walked. \nAnd when the people saw what Paul had done, they lifted up their voices, saying in the speech of Lycaonia, The gods are come down to us in the likeness of men. \nAnd they called Barnabas, Jupiter; and Paul, Mercurius, because he was the chief speaker. \nThen the priest of Jupiter, which was before their city, brought oxen and garlands unto the gates, and would have done sacrifice with the people. \nWhich when the apostles, Barnabas and Paul, heard of, they rent their clothes, and ran in among the people, crying out, \nAnd saying, Sirs, why do ye these things? We also are men of like passions with you, and preach unto you that ye should turn from these vanities unto the living God, which made heaven, and earth, and the sea, and all things that are therein: \nWho in times past suffered all nations to walk in their own ways. \nNevertheless he left not himself without witness, in that he did good, and gave us rain from heaven, and fruitful seasons, filling our hearts with food and gladness. \nAnd with these sayings scarce restrained they the people, that they had not done sacrifice unto them. \nAnd there came thither certain Jews from Antioch and Iconium, who persuaded the people, and having stoned Paul, drew him out of the city, supposing he had been dead. \nHowbeit, as the disciples stood round about him, he rose up, and came into the city: and the next day he departed with Barnabas to Derbe. \nAnd when they had preached the gospel to that city, and had taught many, they returned again to Lystra, and to Iconium, and Antioch, \nConfirming the souls of the disciples, and exhorting them to continue in the faith, and that we must through much tribulation enter into the kingdom of God. \nAnd when they had ordained them elders in every church, and had prayed with fasting, they commended them to the Lord, on whom they believed. \nAnd after they had passed throughout Pisidia, they came to Pamphylia. \nAnd when they had preached the word in Perga, they went down into Attalia: \nAnd thence sailed to Antioch, from whence they had been recommended to the grace of God for the work which they fulfilled. \nAnd when they were come, and had gathered the church together, they rehearsed all that God had done with them, and how he had opened the door of faith unto the Gentiles. \nAnd there they abode long time with the disciples. \nAnd certain men which came down from Judaea taught the brethren, and said, Except ye be circumcised after the manner of Moses, ye cannot be saved. \nWhen therefore Paul and Barnabas had no small dissension and disputation with them, they determined that Paul and Barnabas, and certain other of them, should go up to Jerusalem unto the apostles and elders about this question. \nAnd being brought on their way by the church, they passed through Phenice and Samaria, declaring the conversion of the Gentiles: and they caused great joy unto all the brethren. \nAnd when they were come to Jerusalem, they were received of the church, and of the apostles and elders, and they declared all things that God had done with them. \nBut there rose up certain of the sect of the Pharisees which believed, saying, That it was needful to circumcise them, and to command them to keep the law of Moses. \nAnd the apostles and elders came together for to consider of this matter. \nAnd when there had been much disputing, Peter rose up, and said unto them, Men and brethren, ye know how that a good while ago God made choice among us, that the Gentiles by my mouth should hear the word of the gospel, and believe. \nAnd God, which knoweth the hearts, bare them witness, giving them the Holy Ghost, even as he did unto us; \nAnd put no difference between us and them, purifying their hearts by faith. \nNow therefore why tempt ye God, to put a yoke upon the neck of the disciples, which neither our fathers nor we were able to bear? \nBut we believe that through the grace of the LORD Jesus Christ we shall be saved, even as they. \nThen all the multitude kept silence, and gave audience to Barnabas and Paul, declaring what miracles and wonders God had wrought among the Gentiles by them. \nAnd after they had held their peace, James answered, saying, Men and brethren, hearken unto me: \nSimeon hath declared how God at the first did visit the Gentiles, to take out of them a people for his name. \nAnd to this agree the words of the prophets; as it is written, \nAfter this I will return, and will build again the tabernacle of David, which is fallen down; and I will build again the ruins thereof, and I will set it up: \nThat the residue of men might seek after the Lord, and all the Gentiles, upon whom my name is called, saith the Lord, who doeth all these things. \nKnown unto God are all his works from the beginning of the world. \nWherefore my sentence is, that we trouble not them, which from among the Gentiles are turned to God: \nBut that we write unto them, that they abstain from pollutions of idols, and from fornication, and from things strangled, and from blood. \nFor Moses of old time hath in every city them that preach him, being read in the synagogues every sabbath day. \nThen pleased it the apostles and elders with the whole church, to send chosen men of their own company to Antioch with Paul and Barnabas; namely, Judas surnamed Barsabas and Silas, chief men among the brethren: \nAnd they wrote letters by them after this manner; The apostles and elders and brethren send greeting unto the brethren which are of the Gentiles in Antioch and Syria and Cilicia. \nForasmuch as we have heard, that certain which went out from us have troubled you with words, subverting your souls, saying, Ye must be circumcised, and keep the law: to whom we gave no such commandment: \nIt seemed good unto us, being assembled with one accord, to send chosen men unto you with our beloved Barnabas and Paul, \nMen that have hazarded their lives for the name of our Lord Jesus Christ. \nWe have sent therefore Judas and Silas, who shall also tell you the same things by mouth. \nFor it seemed good to the Holy Ghost, and to us, to lay upon you no greater burden than these necessary things; \nThat ye abstain from meats offered to idols, and from blood, and from things strangled, and from fornication: from which if ye keep yourselves, ye shall do well. Fare ye well. \nSo when they were dismissed, they came to Antioch: and when they had gathered the multitude together, they delivered the epistle: \nWhich when they had read, they rejoiced for the consolation. \nAnd Judas and Silas, being prophets also themselves, exhorted the brethren with many words, and confirmed them. \nAnd after they had tarried there a space, they were let go in peace from the brethren unto the apostles. \nNotwithstanding it pleased Silas to abide there still. \nPaul also and Barnabas continued in Antioch, teaching and preaching the word of the Lord, with many others also. \nAnd some days after Paul said unto Barnabas, Let us go again and visit our brethren in every city where we have preached the word of the LORD, and see how they do. \nAnd Barnabas determined to take with them John, whose surname was Mark. \nBut Paul thought not good to take him with them, who departed from them from Pamphylia, and went not with them to the work. \nAnd the contention was so sharp between them, that they departed asunder one from the other: and so Barnabas took Mark, and sailed unto Cyprus; \nAnd Paul chose Silas, and departed, being recommended by the brethren unto the grace of God. \nAnd he went through Syria and Cilicia, confirming the churches. \nThen came he to Derbe and Lystra: and, behold, a certain disciple was there, named Timotheus, the son of a certain woman, which was a Jewess, and believed; but his father was a Greek: \nWhich was well reported of by the brethren that were at Lystra and Iconium. \nHim would Paul have to go forth with him; and took and circumcised him because of the Jews which were in those quarters: for they knew all that his father was a Greek. \nAnd as they went through the cities, they delivered them the decrees for to keep, that were ordained of the apostles and elders which were at Jerusalem. \nAnd so were the churches established in the faith, and increased in number daily. \nNow when they had gone throughout Phrygia and the region of Galatia, and were forbidden of the Holy Ghost to preach the word in Asia, \nAfter they were come to Mysia, they assayed to go into Bithynia: but the Spirit suffered them not. \nAnd they passing by Mysia came down to Troas. \nAnd a vision appeared to Paul in the night; There stood a man of Macedonia, and prayed him, saying, Come over into Macedonia, and help us. \nAnd after he had seen the vision, immediately we endeavoured to go into Macedonia, assuredly gathering that the Lord had called us for to preach the gospel unto them. \nTherefore loosing from Troas, we came with a straight course to Samothracia, and the next day to Neapolis; \nAnd from thence to Philippi, which is the chief city of that part of Macedonia, and a colony: and we were in that city abiding certain days. \nAnd on the sabbath we went out of the city by a river side, where prayer was wont to be made; and we sat down, and spake unto the women which resorted thither. \nAnd a certain woman named Lydia, a seller of purple, of the city of Thyatira, which worshipped God, heard us: whose heart the Lord opened, that she attended unto the things which were spoken of Paul. \nAnd when she was baptized, and her household, she besought us, saying, If ye have judged me to be faithful to the Lord, come into my house, and abide there. And she constrained us. \nAnd it came to pass, as we went to prayer, a certain damsel possessed with a spirit of divination met us, which brought her masters much gain by soothsaying: \nThe same followed Paul and us, and cried, saying, These men are the servants of the most high God, which shew unto us the way of salvation. \nAnd this did she many days. But Paul, being grieved, turned and said to the spirit, I command thee in the name of Jesus Christ to come out of her. And he came out the same hour. \nAnd when her masters saw that the hope of their gains was gone, they caught Paul and Silas, and drew them into the marketplace unto the rulers, \nAnd brought them to the magistrates, saying, These men, being Jews, do exceedingly trouble our city, \nAnd teach customs, which are not lawful for us to receive, neither to observe, being Romans. \nAnd the multitude rose up together against them: and the magistrates rent off their clothes, and commanded to beat them. \nAnd when they had laid many stripes upon them, they cast them into prison, charging the jailor to keep them safely: \nWho, having received such a charge, thrust them into the inner prison, and made their feet fast in the stocks. \nAnd at midnight Paul and Silas prayed, and sang praises unto God: and the prisoners heard them. \nAnd suddenly there was a great earthquake, so that the foundations of the prison were shaken: and immediately all the doors were opened, and every one's bands were loosed. \nAnd the keeper of the prison awaking out of his sleep, and seeing the prison doors open, he drew out his sword, and would have killed himself, supposing that the prisoners had been fled. \nBut Paul cried with a loud voice, saying, Do thyself no harm: for we are all here. \nThen he called for a light, and sprang in, and came trembling, and fell down before Paul and Silas, \nAnd brought them out, and said, Sirs, what must I do to be saved? \nAnd they said, Believe on the Lord Jesus Christ, and thou shalt be saved, and thy house. \nAnd they spake unto him the word of the Lord, and to all that were in his house. \nAnd he took them the same hour of the night, and washed their stripes; and was baptized, he and all his, straightway. \nAnd when he had brought them into his house, he set meat before them, and rejoiced, believing in God with all his house. \nAnd when it was day, the magistrates sent the serjeants, saying, Let those men go. \nAnd the keeper of the prison told this saying to Paul, The magistrates have sent to let you go: now therefore depart, and go in peace. \nBut Paul said unto them, They have beaten us openly uncondemned, being Romans, and have cast us into prison; and now do they thrust us out privily? nay verily; but let them come themselves and fetch us out. \nAnd the serjeants told these words unto the magistrates: and they feared, when they heard that they were Romans. \nAnd they came and besought them, and brought them out, and desired them to depart out of the city. \nAnd they went out of the prison, and entered into the house of Lydia: and when they had seen the brethren, they comforted them, and departed. \nNow when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where was a synagogue of the Jews: \nAnd Paul, as his manner was, went in unto them, and three sabbath days reasoned with them out of the scriptures, \nOpening and alleging, that Christ must needs have suffered, and risen again from the dead; and that this Jesus, whom I preach unto you, is Christ. \nAnd some of them believed, and consorted with Paul and Silas; and of the devout Greeks a great multitude, and of the chief women not a few. \nBut the Jews which believed not, moved with envy, took unto them certain lewd fellows of the baser sort, and gathered a company, and set all the city on an uproar, and assaulted the house of Jason, and sought to bring them out to the people. \nAnd when they found them not, they drew Jason and certain brethren unto the rulers of the city, crying, These that have turned the world upside down are come hither also; \nWhom Jason hath received: and these all do contrary to the decrees of Caesar, saying that there is another king, one Jesus. \nAnd they troubled the people and the rulers of the city, when they heard these things. \nAnd when they had taken security of Jason, and of the other, they let them go. \nAnd the brethren immediately sent away Paul and Silas by night unto Berea: who coming thither went into the synagogue of the Jews. \nThese were more noble than those in Thessalonica, in that they received the word with all readiness of mind, and searched the scriptures daily, whether those things were so. \nTherefore many of them believed; also of honourable women which were Greeks, and of men, not a few. \nBut when the Jews of Thessalonica had knowledge that the word of God was preached of Paul at Berea, they came thither also, and stirred up the people. \nAnd then immediately the brethren sent away Paul to go as it were to the sea: but Silas and Timotheus abode there still. \nAnd they that conducted Paul brought him unto Athens: and receiving a commandment unto Silas and Timotheus for to come to him with all speed, they departed. \nNow while Paul waited for them at Athens, his spirit was stirred in him, when he saw the city wholly given to idolatry. \nTherefore disputed he in the synagogue with the Jews, and with the devout persons, and in the market daily with them that met with him. \nThen certain philosophers of the Epicureans, and of the Stoicks, encountered him. And some said, What will this babbler say? other some, He seemeth to be a setter forth of strange gods: because he preached unto them Jesus, and the resurrection. \nAnd they took him, and brought him unto Areopagus, saying, May we know what this new doctrine, whereof thou speakest, is? \nFor thou bringest certain strange things to our ears: we would know therefore what these things mean. \n(For all the Athenians and strangers which were there spent their time in nothing else, but either to tell, or to hear some new thing.) \nThen Paul stood in the midst of Mars' hill, and said, Ye men of Athens, I perceive that in all things ye are too superstitious. \nFor as I passed by, and beheld your devotions, I found an altar with this inscription, TO THE UNKNOWN GOD. Whom therefore ye ignorantly worship, him declare I unto you. \nGod that made the world and all things therein, seeing that he is Lord of heaven and earth, dwelleth not in temples made with hands; \nNeither is worshipped with men's hands, as though he needed any thing, seeing he giveth to all life, and breath, and all things; \nAnd hath made of one blood all nations of men for to dwell on all the face of the earth, and hath determined the times before appointed, and the bounds of their habitation; \nThat they should seek the Lord, if haply they might feel after him, and find him, though he be not far from every one of us: \nFor in him we live, and move, and have our being; as certain also of your own poets have said, For we are also his offspring. \nForasmuch then as we are the offspring of God, we ought not to think that the Godhead is like unto gold, or silver, or stone, graven by art and man's device. \nAnd the times of this ignorance God winked at; but now commandeth all men every where to repent: \nBecause he hath appointed a day, in the which he will judge the world in righteousness by that man whom he hath ordained; whereof he hath given assurance unto all men, in that he hath raised him from the dead. \nAnd when they heard of the resurrection of the dead, some mocked: and others said, We will hear thee again of this matter. \nSo Paul departed from among them. \nHowbeit certain men clave unto him, and believed: among the which was Dionysius the Areopagite, and a woman named Damaris, and others with them. \nAfter these things Paul departed from Athens, and came to Corinth; \nAnd found a certain Jew named Aquila, born in Pontus, lately come from Italy, with his wife Priscilla; (because that Claudius had commanded all Jews to depart from Rome:) and came unto them. \nAnd because he was of the same craft, he abode with them, and wrought: for by their occupation they were tentmakers. \nAnd he reasoned in the synagogue every sabbath, and persuaded the Jews and the Greeks. \nAnd when Silas and Timotheus were come from Macedonia, Paul was pressed in the spirit, and testified to the Jews that Jesus was Christ. \nAnd when they opposed themselves, and blasphemed, he shook his raiment, and said unto them, Your blood be upon your own heads; I am clean; from henceforth I will go unto the Gentiles. \nAnd he departed thence, and entered into a certain man's house, named Justus, one that worshipped God, whose house joined hard to the synagogue. \nAnd Crispus, the chief ruler of the synagogue, believed on the Lord with all his house; and many of the Corinthians hearing believed, and were baptized. \nThen spake the Lord to Paul in the night by a vision, Be not afraid, but speak, and hold not thy peace: \nFor I am with thee, and no man shall set on thee to hurt thee: for I have much people in this city. \nAnd he continued there a year and six months, teaching the word of God among them. \nAnd when Gallio was the deputy of Achaia, the Jews made insurrection with one accord against Paul, and brought him to the judgment seat, \nSaying, This fellow persuadeth men to worship God contrary to the law. \nAnd when Paul was now about to open his mouth, Gallio said unto the Jews, If it were a matter of wrong or wicked lewdness, O ye Jews, reason would that I should bear with you: \nBut if it be a question of words and names, and of your law, look ye to it; for I will be no judge of such matters. \nAnd he drave them from the judgment seat. \nThen all the Greeks took Sosthenes, the chief ruler of the synagogue, and beat him before the judgment seat. And Gallio cared for none of those things. \nAnd Paul after this tarried there yet a good while, and then took his leave of the brethren, and sailed thence into Syria, and with him Priscilla and Aquila; having shorn his head in Cenchrea: for he had a vow. \nAnd he came to Ephesus, and left them there: but he himself entered into the synagogue, and reasoned with the Jews. \nWhen they desired him to tarry longer time with them, he consented not; \nBut bade them farewell, saying, I must by all means keep this feast that cometh in Jerusalem: but I will return again unto you, if God will. And he sailed from Ephesus. \nAnd when he had landed at Caesarea, and gone up, and saluted the church, he went down to Antioch. \nAnd after he had spent some time there, he departed, and went over all the country of Galatia and Phrygia in order, strengthening all the disciples. \nAnd a certain Jew named Apollos, born at Alexandria, an eloquent man, and mighty in the scriptures, came to Ephesus. \nThis man was instructed in the way of the Lord; and being fervent in the spirit, he spake and taught diligently the things of the Lord, knowing only the baptism of John. \nAnd he began to speak boldly in the synagogue: whom when Aquila and Priscilla had heard, they took him unto them, and expounded unto him the way of God more perfectly. \nAnd when he was disposed to pass into Achaia, the brethren wrote, exhorting the disciples to receive him: who, when he was come, helped them much which had believed through grace: \nFor he mightily convinced the Jews, and that publickly, shewing by the scriptures that Jesus was Christ. \nAnd it came to pass, that, while Apollos was at Corinth, Paul having passed through the upper coasts came to Ephesus: and finding certain disciples, \nHe said unto them, Have ye received the Holy Ghost since ye believed? And they said unto him, We have not so much as heard whether there be any Holy Ghost. \nAnd he said unto them, Unto what then were ye baptized? And they said, Unto John's baptism. \nThen said Paul, John verily baptized with the baptism of repentance, saying unto the people, that they should believe on him which should come after him, that is, on Christ Jesus. \nWhen they heard this, they were baptized in the name of the Lord Jesus. \nAnd when Paul had laid his hands upon them, the Holy Ghost came on them; and they spake with tongues, and prophesied. \nAnd all the men were about twelve. \nAnd he went into the synagogue, and spake boldly for the space of three months, disputing and persuading the things concerning the kingdom of God. \nBut when divers were hardened, and believed not, but spake evil of that way before the multitude, he departed from them, and separated the disciples, disputing daily in the school of one Tyrannus. \nAnd this continued by the space of two years; so that all they which dwelt in Asia heard the word of the Lord Jesus, both Jews and Greeks. \nAnd God wrought special miracles by the hands of Paul: \nSo that from his body were brought unto the sick handkerchiefs or aprons, and the diseases departed from them, and the evil spirits went out of them. \nThen certain of the vagabond Jews, exorcists, took upon them to call over them which had evil spirits the name of the LORD Jesus, saying, We adjure you by Jesus whom Paul preacheth. \nAnd there were seven sons of one Sceva, a Jew, and chief of the priests, which did so. \nAnd the evil spirit answered and said, Jesus I know, and Paul I know; but who are ye? \nAnd the man in whom the evil spirit was leaped on them, and overcame them, and prevailed against them, so that they fled out of that house naked and wounded. \nAnd this was known to all the Jews and Greeks also dwelling at Ephesus; and fear fell on them all, and the name of the Lord Jesus was magnified. \nAnd many that believed came, and confessed, and shewed their deeds. \nMany of them also which used curious arts brought their books together, and burned them before all men: and they counted the price of them, and found it fifty thousand pieces of silver. \nSo mightily grew the word of God and prevailed. \nAfter these things were ended, Paul purposed in the spirit, when he had passed through Macedonia and Achaia, to go to Jerusalem, saying, After I have been there, I must also see Rome. \nSo he sent into Macedonia two of them that ministered unto him, Timotheus and Erastus; but he himself stayed in Asia for a season. \nAnd the same time there arose no small stir about that way. \nFor a certain man named Demetrius, a silversmith, which made silver shrines for Diana, brought no small gain unto the craftsmen; \nWhom he called together with the workmen of like occupation, and said, Sirs, ye know that by this craft we have our wealth. \nMoreover ye see and hear, that not alone at Ephesus, but almost throughout all Asia, this Paul hath persuaded and turned away much people, saying that they be no gods, which are made with hands: \nSo that not only this our craft is in danger to be set at nought; but also that the temple of the great goddess Diana should be despised, and her magnificence should be destroyed, whom all Asia and the world worshippeth. \nAnd when they heard these sayings, they were full of wrath, and cried out, saying, Great is Diana of the Ephesians. \nAnd the whole city was filled with confusion: and having caught Gaius and Aristarchus, men of Macedonia, Paul's companions in travel, they rushed with one accord into the theatre. \nAnd when Paul would have entered in unto the people, the disciples suffered him not. \nAnd certain of the chief of Asia, which were his friends, sent unto him, desiring him that he would not adventure himself into the theatre. \nSome therefore cried one thing, and some another: for the assembly was confused: and the more part knew not wherefore they were come together. \nAnd they drew Alexander out of the multitude, the Jews putting him forward. And Alexander beckoned with the hand, and would have made his defence unto the people. \nBut when they knew that he was a Jew, all with one voice about the space of two hours cried out, Great is Diana of the Ephesians. \nAnd when the townclerk had appeased the people, he said, Ye men of Ephesus, what man is there that knoweth not how that the city of the Ephesians is a worshipper of the great goddess Diana, and of the image which fell down from Jupiter? \nSeeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly. \nFor ye have brought hither these men, which are neither robbers of churches, nor yet blasphemers of your goddess. \nWherefore if Demetrius, and the craftsmen which are with him, have a matter against any man, the law is open, and there are deputies: let them implead one another. \nBut if ye enquire any thing concerning other matters, it shall be determined in a lawful assembly. \nFor we are in danger to be called in question for this day's uproar, there being no cause whereby we may give an account of this concourse. \nAnd when he had thus spoken, he dismissed the assembly. \nAnd after the uproar was ceased, Paul called unto him the disciples, and embraced them, and departed for to go into Macedonia. \nAnd when he had gone over those parts, and had given them much exhortation, he came into Greece, \nAnd there abode three months. And when the Jews laid wait for him, as he was about to sail into Syria, he purposed to return through Macedonia. \nAnd there accompanied him into Asia Sopater of Berea; and of the Thessalonians, Aristarchus and Secundus; and Gaius of Derbe, and Timotheus; and of Asia, Tychicus and Trophimus. \nThese going before tarried for us at Troas. \nAnd we sailed away from Philippi after the days of unleavened bread, and came unto them to Troas in five days; where we abode seven days. \nAnd upon the first day of the week, when the disciples came together to break bread, Paul preached unto them, ready to depart on the morrow; and continued his speech until midnight. \nAnd there were many lights in the upper chamber, where they were gathered together. \nAnd there sat in a window a certain young man named Eutychus, being fallen into a deep sleep: and as Paul was long preaching, he sunk down with sleep, and fell down from the third loft, and was taken up dead. \nAnd Paul went down, and fell on him, and embracing him said, Trouble not yourselves; for his life is in him. \nWhen he therefore was come up again, and had broken bread, and eaten, and talked a long while, even till break of day, so he departed. \nAnd they brought the young man alive, and were not a little comforted. \nAnd we went before to ship, and sailed unto Assos, there intending to take in Paul: for so had he appointed, minding himself to go afoot. \nAnd when he met with us at Assos, we took him in, and came to Mitylene. \nAnd we sailed thence, and came the next day over against Chios; and the next day we arrived at Samos, and tarried at Trogyllium; and the next day we came to Miletus. \nFor Paul had determined to sail by Ephesus, because he would not spend the time in Asia: for he hasted, if it were possible for him, to be at Jerusalem the day of Pentecost. \nAnd from Miletus he sent to Ephesus, and called the elders of the church. \nAnd when they were come to him, he said unto them, Ye know, from the first day that I came into Asia, after what manner I have been with you at all seasons, \nServing the LORD with all humility of mind, and with many tears, and temptations, which befell me by the lying in wait of the Jews: \nAnd how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house, \nTestifying both to the Jews, and also to the Greeks, repentance toward God, and faith toward our Lord Jesus Christ. \nAnd now, behold, I go bound in the spirit unto Jerusalem, not knowing the things that shall befall me there: \nSave that the Holy Ghost witnesseth in every city, saying that bonds and afflictions abide me. \nBut none of these things move me, neither count I my life dear unto myself, so that I might finish my course with joy, and the ministry, which I have received of the Lord Jesus, to testify the gospel of the grace of God. \nAnd now, behold, I know that ye all, among whom I have gone preaching the kingdom of God, shall see my face no more. \nWherefore I take you to record this day, that I am pure from the blood of all men. \nFor I have not shunned to declare unto you all the counsel of God. \nTake heed therefore unto yourselves, and to all the flock, over the which the Holy Ghost hath made you overseers, to feed the church of God, which he hath purchased with his own blood. \nFor I know this, that after my departing shall grievous wolves enter in among you, not sparing the flock. \nAlso of your own selves shall men arise, speaking perverse things, to draw away disciples after them. \nTherefore watch, and remember, that by the space of three years I ceased not to warn every one night and day with tears. \nAnd now, brethren, I commend you to God, and to the word of his grace, which is able to build you up, and to give you an inheritance among all them which are sanctified. \nI have coveted no man's silver, or gold, or apparel. \nYea, ye yourselves know, that these hands have ministered unto my necessities, and to them that were with me. \nI have shewed you all things, how that so labouring ye ought to support the weak, and to remember the words of the Lord Jesus, how he said, It is more blessed to give than to receive. \nAnd when he had thus spoken, he kneeled down, and prayed with them all. \nAnd they all wept sore, and fell on Paul's neck, and kissed him, \nSorrowing most of all for the words which he spake, that they should see his face no more. And they accompanied him unto the ship. \nAnd it came to pass, that after we were gotten from them, and had launched, we came with a straight course unto Coos, and the day following unto Rhodes, and from thence unto Patara: \nAnd finding a ship sailing over unto Phenicia, we went aboard, and set forth. \nNow when we had discovered Cyprus, we left it on the left hand, and sailed into Syria, and landed at Tyre: for there the ship was to unlade her burden. \nAnd finding disciples, we tarried there seven days: who said to Paul through the Spirit, that he should not go up to Jerusalem. \nAnd when we had accomplished those days, we departed and went our way; and they all brought us on our way, with wives and children, till we were out of the city: and we kneeled down on the shore, and prayed. \nAnd when we had taken our leave one of another, we took ship; and they returned home again. \nAnd when we had finished our course from Tyre, we came to Ptolemais, and saluted the brethren, and abode with them one day. \nAnd the next day we that were of Paul's company departed, and came unto Caesarea: and we entered into the house of Philip the evangelist, which was one of the seven; and abode with him. \nAnd the same man had four daughters, virgins, which did prophesy. \nAnd as we tarried there many days, there came down from Judaea a certain prophet, named Agabus. \nAnd when he was come unto us, he took Paul's girdle, and bound his own hands and feet, and said, Thus saith the Holy Ghost, So shall the Jews at Jerusalem bind the man that owneth this girdle, and shall deliver him into the hands of the Gentiles. \nAnd when we heard these things, both we, and they of that place, besought him not to go up to Jerusalem. \nThen Paul answered, What mean ye to weep and to break mine heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus. \nAnd when he would not be persuaded, we ceased, saying, The will of the Lord be done. \nAnd after those days we took up our carriages, and went up to Jerusalem. \nThere went with us also certain of the disciples of Caesarea, and brought with them one Mnason of Cyprus, an old disciple, with whom we should lodge. \nAnd when we were come to Jerusalem, the brethren received us gladly. \nAnd the day following Paul went in with us unto James; and all the elders were present. \nAnd when he had saluted them, he declared particularly what things God had wrought among the Gentiles by his ministry. \nAnd when they heard it, they glorified the Lord, and said unto him, Thou seest, brother, how many thousands of Jews there are which believe; and they are all zealous of the law: \nAnd they are informed of thee, that thou teachest all the Jews which are among the Gentiles to forsake Moses, saying that they ought not to circumcise their children, neither to walk after the customs. \nWhat is it therefore? the multitude must needs come together: for they will hear that thou art come. \nDo therefore this that we say to thee: We have four men which have a vow on them; \nThem take, and purify thyself with them, and be at charges with them, that they may shave their heads: and all may know that those things, whereof they were informed concerning thee, are nothing; but that thou thyself also walkest orderly, and keepest the law. \nAs touching the Gentiles which believe, we have written and concluded that they observe no such thing, save only that they keep themselves from things offered to idols, and from blood, and from strangled, and from fornication. \nThen Paul took the men, and the next day purifying himself with them entered into the temple, to signify the accomplishment of the days of purification, until that an offering should be offered for every one of them. \nAnd when the seven days were almost ended, the Jews which were of Asia, when they saw him in the temple, stirred up all the people, and laid hands on him, \nCrying out, Men of Israel, help: This is the man, that teacheth all men every where against the people, and the law, and this place: and further brought Greeks also into the temple, and hath polluted this holy place. \n(For they had seen before with him in the city Trophimus an Ephesian, whom they supposed that Paul had brought into the temple.) \nAnd all the city was moved, and the people ran together: and they took Paul, and drew him out of the temple: and forthwith the doors were shut. \nAnd as they went about to kill him, tidings came unto the chief captain of the band, that all Jerusalem was in an uproar. \nWho immediately took soldiers and centurions, and ran down unto them: and when they saw the chief captain and the soldiers, they left beating of Paul. \nThen the chief captain came near, and took him, and commanded him to be bound with two chains; and demanded who he was, and what he had done. \nAnd some cried one thing, some another, among the multitude: and when he could not know the certainty for the tumult, he commanded him to be carried into the castle. \nAnd when he came upon the stairs, so it was, that he was borne of the soldiers for the violence of the people. \nFor the multitude of the people followed after, crying, Away with him. \nAnd as Paul was to be led into the castle, he said unto the chief captain, May I speak unto thee? Who said, Canst thou speak Greek? \nArt not thou that Egyptian, which before these days madest an uproar, and leddest out into the wilderness four thousand men that were murderers? \nBut Paul said, I am a man which am a Jew of Tarsus, a city in Cilicia, a citizen of no mean city: and, I beseech thee, suffer me to speak unto the people. \nAnd when he had given him licence, Paul stood on the stairs, and beckoned with the hand unto the people. And when there was made a great silence, he spake unto them in the Hebrew tongue, saying, \nMen, brethren, and fathers, hear ye my defence which I make now unto you. \n(And when they heard that he spake in the Hebrew tongue to them, they kept the more silence: and he saith,) \nI am verily a man which am a Jew, born in Tarsus, a city in Cilicia, yet brought up in this city at the feet of Gamaliel, and taught according to the perfect manner of the law of the fathers, and was zealous toward God, as ye all are this day. \nAnd I persecuted this way unto the death, binding and delivering into prisons both men and women. \nAs also the high priest doth bear me witness, and all the estate of the elders: from whom also I received letters unto the brethren, and went to Damascus, to bring them which were there bound unto Jerusalem, for to be punished. \nAnd it came to pass, that, as I made my journey, and was come nigh unto Damascus about noon, suddenly there shone from heaven a great light round about me. \nAnd I fell unto the ground, and heard a voice saying unto me, Saul, Saul, why persecutest thou me? \nAnd I answered, Who art thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou persecutest. \nAnd they that were with me saw indeed the light, and were afraid; but they heard not the voice of him that spake to me. \nAnd I said, What shall I do, LORD? And the Lord said unto me, Arise, and go into Damascus; and there it shall be told thee of all things which are appointed for thee to do. \nAnd when I could not see for the glory of that light, being led by the hand of them that were with me, I came into Damascus. \nAnd one Ananias, a devout man according to the law, having a good report of all the Jews which dwelt there, \nCame unto me, and stood, and said unto me, Brother Saul, receive thy sight. And the same hour I looked up upon him. \nAnd he said, The God of our fathers hath chosen thee, that thou shouldest know his will, and see that Just One, and shouldest hear the voice of his mouth. \nFor thou shalt be his witness unto all men of what thou hast seen and heard. \nAnd now why tarriest thou? arise, and be baptized, and wash away thy sins, calling on the name of the Lord. \nAnd it came to pass, that, when I was come again to Jerusalem, even while I prayed in the temple, I was in a trance; \nAnd saw him saying unto me, Make haste, and get thee quickly out of Jerusalem: for they will not receive thy testimony concerning me. \nAnd I said, Lord, they know that I imprisoned and beat in every synagogue them that believed on thee: \nAnd when the blood of thy martyr Stephen was shed, I also was standing by, and consenting unto his death, and kept the raiment of them that slew him. \nAnd he said unto me, Depart: for I will send thee far hence unto the Gentiles. \nAnd they gave him audience unto this word, and then lifted up their voices, and said, Away with such a fellow from the earth: for it is not fit that he should live. \nAnd as they cried out, and cast off their clothes, and threw dust into the air, \nThe chief captain commanded him to be brought into the castle, and bade that he should be examined by scourging; that he might know wherefore they cried so against him. \nAnd as they bound him with thongs, Paul said unto the centurion that stood by, Is it lawful for you to scourge a man that is a Roman, and uncondemned? \nWhen the centurion heard that, he went and told the chief captain, saying, Take heed what thou doest: for this man is a Roman. \nThen the chief captain came, and said unto him, Tell me, art thou a Roman? He said, Yea. \nAnd the chief captain answered, With a great sum obtained I this freedom. And Paul said, But I was free born. \nThen straightway they departed from him which should have examined him: and the chief captain also was afraid, after he knew that he was a Roman, and because he had bound him. \nOn the morrow, because he would have known the certainty wherefore he was accused of the Jews, he loosed him from his bands, and commanded the chief priests and all their council to appear, and brought Paul down, and set him before them. \nAnd Paul, earnestly beholding the council, said, Men and brethren, I have lived in all good conscience before God until this day. \nAnd the high priest Ananias commanded them that stood by him to smite him on the mouth. \nThen said Paul unto him, God shall smite thee, thou whited wall: for sittest thou to judge me after the law, and commandest me to be smitten contrary to the law? \nAnd they that stood by said, Revilest thou God's high priest? \nThen said Paul, I wist not, brethren, that he was the high priest: for it is written, Thou shalt not speak evil of the ruler of thy people. \nBut when Paul perceived that the one part were Sadducees, and the other Pharisees, he cried out in the council, Men and brethren, I am a Pharisee, the son of a Pharisee: of the hope and resurrection of the dead I am called in question. \nAnd when he had so said, there arose a dissension between the Pharisees and the Sadducees: and the multitude was divided. \nFor the Sadducees say that there is no resurrection, neither angel, nor spirit: but the Pharisees confess both. \nAnd there arose a great cry: and the scribes that were of the Pharisees' part arose, and strove, saying, We find no evil in this man: but if a spirit or an angel hath spoken to him, let us not fight against God. \nAnd when there arose a great dissension, the chief captain, fearing lest Paul should have been pulled in pieces of them, commanded the soldiers to go down, and to take him by force from among them, and to bring him into the castle. \nAnd the night following the Lord stood by him, and said, Be of good cheer, Paul: for as thou hast testified of me in Jerusalem, so must thou bear witness also at Rome. \nAnd when it was day, certain of the Jews banded together, and bound themselves under a curse, saying that they would neither eat nor drink till they had killed Paul. \nAnd they were more than forty which had made this conspiracy. \nAnd they came to the chief priests and elders, and said, We have bound ourselves under a great curse, that we will eat nothing until we have slain Paul. \nNow therefore ye with the council signify to the chief captain that he bring him down unto you to morrow, as though ye would enquire something more perfectly concerning him: and we, or ever he come near, are ready to kill him. \nAnd when Paul's sister's son heard of their lying in wait, he went and entered into the castle, and told Paul. \nThen Paul called one of the centurions unto him, and said, Bring this young man unto the chief captain: for he hath a certain thing to tell him. \nSo he took him, and brought him to the chief captain, and said, Paul the prisoner called me unto him, and prayed me to bring this young man unto thee, who hath something to say unto thee. \nThen the chief captain took him by the hand, and went with him aside privately, and asked him, What is that thou hast to tell me? \nAnd he said, The Jews have agreed to desire thee that thou wouldest bring down Paul to morrow into the council, as though they would enquire somewhat of him more perfectly. \nBut do not thou yield unto them: for there lie in wait for him of them more than forty men, which have bound themselves with an oath, that they will neither eat nor drink till they have killed him: and now are they ready, looking for a promise from thee. \nSo the chief captain then let the young man depart, and charged him, See thou tell no man that thou hast shewed these things to me. \nAnd he called unto him two centurions, saying, Make ready two hundred soldiers to go to Caesarea, and horsemen threescore and ten, and spearmen two hundred, at the third hour of the night; \nAnd provide them beasts, that they may set Paul on, and bring him safe unto Felix the governor. \nAnd he wrote a letter after this manner: \nClaudius Lysias unto the most excellent governor Felix sendeth greeting. \nThis man was taken of the Jews, and should have been killed of them: then came I with an army, and rescued him, having understood that he was a Roman. \nAnd when I would have known the cause wherefore they accused him, I brought him forth into their council: \nWhom I perceived to be accused of questions of their law, but to have nothing laid to his charge worthy of death or of bonds. \nAnd when it was told me how that the Jews laid wait for the man, I sent straightway to thee, and gave commandment to his accusers also to say before thee what they had against him. Farewell. \nThen the soldiers, as it was commanded them, took Paul, and brought him by night to Antipatris. \nOn the morrow they left the horsemen to go with him, and returned to the castle: \nWho, when they came to Caesarea and delivered the epistle to the governor, presented Paul also before him. \nAnd when the governor had read the letter, he asked of what province he was. And when he understood that he was of Cilicia; \nI will hear thee, said he, when thine accusers are also come. And he commanded him to be kept in Herod's judgment hall. \nAnd after five days Ananias the high priest descended with the elders, and with a certain orator named Tertullus, who informed the governor against Paul. \nAnd when he was called forth, Tertullus began to accuse him, saying, Seeing that by thee we enjoy great quietness, and that very worthy deeds are done unto this nation by thy providence, \nWe accept it always, and in all places, most noble Felix, with all thankfulness. \nNotwithstanding, that I be not further tedious unto thee, I pray thee that thou wouldest hear us of thy clemency a few words. \nFor we have found this man a pestilent fellow, and a mover of sedition among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes: \nWho also hath gone about to profane the temple: whom we took, and would have judged according to our law. \nBut the chief captain Lysias came upon us, and with great violence took him away out of our hands, \nCommanding his accusers to come unto thee: by examining of whom thyself mayest take knowledge of all these things, whereof we accuse him. \nAnd the Jews also assented, saying that these things were so. \nThen Paul, after that the governor had beckoned unto him to speak, answered, Forasmuch as I know that thou hast been of many years a judge unto this nation, I do the more cheerfully answer for myself: \nBecause that thou mayest understand, that there are yet but twelve days since I went up to Jerusalem for to worship. \nAnd they neither found me in the temple disputing with any man, neither raising up the people, neither in the synagogues, nor in the city: \nNeither can they prove the things whereof they now accuse me. \nBut this I confess unto thee, that after the way which they call heresy, so worship I the God of my fathers, believing all things which are written in the law and in the prophets: \nAnd have hope toward God, which they themselves also allow, that there shall be a resurrection of the dead, both of the just and unjust. \nAnd herein do I exercise myself, to have always a conscience void to offence toward God, and toward men. \nNow after many years I came to bring alms to my nation, and offerings. \nWhereupon certain Jews from Asia found me purified in the temple, neither with multitude, nor with tumult. \nWho ought to have been here before thee, and object, if they had ought against me. \nOr else let these same here say, if they have found any evil doing in me, while I stood before the council, \nExcept it be for this one voice, that I cried standing among them, Touching the resurrection of the dead I am called in question by you this day. \nAnd when Felix heard these things, having more perfect knowledge of that way, he deferred them, and said, When Lysias the chief captain shall come down, I will know the uttermost of your matter. \nAnd he commanded a centurion to keep Paul, and to let him have liberty, and that he should forbid none of his acquaintance to minister or come unto him. \nAnd after certain days, when Felix came with his wife Drusilla, which was a Jewess, he sent for Paul, and heard him concerning the faith in Christ. \nAnd as he reasoned of righteousness, temperance, and judgment to come, Felix trembled, and answered, Go thy way for this time; when I have a convenient season, I will call for thee. \nHe hoped also that money should have been given him of Paul, that he might loose him: wherefore he sent for him the oftener, and communed with him. \nBut after two years Porcius Festus came into Felix' room: and Felix, willing to shew the Jews a pleasure, left Paul bound. \nNow when Festus was come into the province, after three days he ascended from Caesarea to Jerusalem. \nThen the high priest and the chief of the Jews informed him against Paul, and besought him, \nAnd desired favour against him, that he would send for him to Jerusalem, laying wait in the way to kill him. \nBut Festus answered, that Paul should be kept at Caesarea, and that he himself would depart shortly thither. \nLet them therefore, said he, which among you are able, go down with me, and accuse this man, if there be any wickedness in him. \nAnd when he had tarried among them more than ten days, he went down unto Caesarea; and the next day sitting on the judgment seat commanded Paul to be brought. \nAnd when he was come, the Jews which came down from Jerusalem stood round about, and laid many and grievous complaints against Paul, which they could not prove. \nWhile he answered for himself, Neither against the law of the Jews, neither against the temple, nor yet against Caesar, have I offended any thing at all. \nBut Festus, willing to do the Jews a pleasure, answered Paul, and said, Wilt thou go up to Jerusalem, and there be judged of these things before me? \nThen said Paul, I stand at Caesar's judgment seat, where I ought to be judged: to the Jews have I done no wrong, as thou very well knowest. \nFor if I be an offender, or have committed any thing worthy of death, I refuse not to die: but if there be none of these things whereof these accuse me, no man may deliver me unto them. I appeal unto Caesar. \nThen Festus, when he had conferred with the council, answered, Hast thou appealed unto Caesar? unto Caesar shalt thou go. \nAnd after certain days king Agrippa and Bernice came unto Caesarea to salute Festus. \nAnd when they had been there many days, Festus declared Paul's cause unto the king, saying, There is a certain man left in bonds by Felix: \nAbout whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed me, desiring to have judgment against him. \nTo whom I answered, It is not the manner of the Romans to deliver any man to die, before that he which is accused have the accusers face to face, and have licence to answer for himself concerning the crime laid against him. \nTherefore, when they were come hither, without any delay on the morrow I sat on the judgment seat, and commanded the man to be brought forth. \nAgainst whom when the accusers stood up, they brought none accusation of such things as I supposed: \nBut had certain questions against him of their own superstition, and of one Jesus, which was dead, whom Paul affirmed to be alive. \nAnd because I doubted of such manner of questions, I asked him whether he would go to Jerusalem, and there be judged of these matters. \nBut when Paul had appealed to be reserved unto the hearing of Augustus, I commanded him to be kept till I might send him to Caesar. \nThen Agrippa said unto Festus, I would also hear the man myself. To morrow, said he, thou shalt hear him. \nAnd on the morrow, when Agrippa was come, and Bernice, with great pomp, and was entered into the place of hearing, with the chief captains, and principal men of the city, at Festus' commandment Paul was brought forth. \nAnd Festus said, King Agrippa, and all men which are here present with us, ye see this man, about whom all the multitude of the Jews have dealt with me, both at Jerusalem, and also here, crying that he ought not to live any longer. \nBut when I found that he had committed nothing worthy of death, and that he himself hath appealed to Augustus, I have determined to send him. \nOf whom I have no certain thing to write unto my lord. Wherefore I have brought him forth before you, and specially before thee, O king Agrippa, that, after examination had, I might have somewhat to write. \nFor it seemeth to me unreasonable to send a prisoner, and not withal to signify the crimes laid against him. \nThen Agrippa said unto Paul, Thou art permitted to speak for thyself. Then Paul stretched forth the hand, and answered for himself: \nI think myself happy, king Agrippa, because I shall answer for myself this day before thee touching all the things whereof I am accused of the Jews: \nEspecially because I know thee to be expert in all customs and questions which are among the Jews: wherefore I beseech thee to hear me patiently. \nMy manner of life from my youth, which was at the first among mine own nation at Jerusalem, know all the Jews; \nWhich knew me from the beginning, if they would testify, that after the most straitest sect of our religion I lived a Pharisee. \nAnd now I stand and am judged for the hope of the promise made of God, unto our fathers: \nUnto which promise our twelve tribes, instantly serving God day and night, hope to come. For which hope's sake, king Agrippa, I am accused of the Jews. \nWhy should it be thought a thing incredible with you, that God should raise the dead? \nI verily thought with myself, that I ought to do many things contrary to the name of Jesus of Nazareth. \nWhich thing I also did in Jerusalem: and many of the saints did I shut up in prison, having received authority from the chief priests; and when they were put to death, I gave my voice against them. \nAnd I punished them oft in every synagogue, and compelled them to blaspheme; and being exceedingly mad against them, I persecuted them even unto strange cities. \nWhereupon as I went to Damascus with authority and commission from the chief priests, \nAt midday, O king, I saw in the way a light from heaven, above the brightness of the sun, shining round about me and them which journeyed with me. \nAnd when we were all fallen to the earth, I heard a voice speaking unto me, and saying in the Hebrew tongue, Saul, Saul, why persecutest thou me? it is hard for thee to kick against the pricks. \nAnd I said, Who art thou, Lord? And he said, I am Jesus whom thou persecutest. \nBut rise, and stand upon thy feet: for I have appeared unto thee for this purpose, to make thee a minister and a witness both of these things which thou hast seen, and of those things in the which I will appear unto thee; \nDelivering thee from the people, and from the Gentiles, unto whom now I send thee, \nTo open their eyes, and to turn them from darkness to light, and from the power of Satan unto God, that they may receive forgiveness of sins, and inheritance among them which are sanctified by faith that is in me. \nWhereupon, O king Agrippa, I was not disobedient unto the heavenly vision: \nBut shewed first unto them of Damascus, and at Jerusalem, and throughout all the coasts of Judaea, and then to the Gentiles, that they should repent and turn to God, and do works meet for repentance. \nFor these causes the Jews caught me in the temple, and went about to kill me. \nHaving therefore obtained help of God, I continue unto this day, witnessing both to small and great, saying none other things than those which the prophets and Moses did say should come: \nThat Christ should suffer, and that he should be the first that should rise from the dead, and should shew light unto the people, and to the Gentiles. \nAnd as he thus spake for himself, Festus said with a loud voice, Paul, thou art beside thyself; much learning doth make thee mad. \nBut he said, I am not mad, most noble Festus; but speak forth the words of truth and soberness. \nFor the king knoweth of these things, before whom also I speak freely: for I am persuaded that none of these things are hidden from him; for this thing was not done in a corner. \nKing Agrippa, believest thou the prophets? I know that thou believest. \nThen Agrippa said unto Paul, Almost thou persuadest me to be a Christian. \nAnd Paul said, I would to God, that not only thou, but also all that hear me this day, were both almost, and altogether such as I am, except these bonds. \nAnd when he had thus spoken, the king rose up, and the governor, and Bernice, and they that sat with them: \nAnd when they were gone aside, they talked between themselves, saying, This man doeth nothing worthy of death or of bonds. \nThen said Agrippa unto Festus, This man might have been set at liberty, if he had not appealed unto Caesar. \nAnd when it was determined that we should sail into Italy, they delivered Paul and certain other prisoners unto one named Julius, a centurion of Augustus' band. \nAnd entering into a ship of Adramyttium, we launched, meaning to sail by the coasts of Asia; one Aristarchus, a Macedonian of Thessalonica, being with us. \nAnd the next day we touched at Sidon. And Julius courteously entreated Paul, and gave him liberty to go unto his friends to refresh himself. \nAnd when we had launched from thence, we sailed under Cyprus, because the winds were contrary. \nAnd when we had sailed over the sea of Cilicia and Pamphylia, we came to Myra, a city of Lycia. \nAnd there the centurion found a ship of Alexandria sailing into Italy; and he put us therein. \nAnd when we had sailed slowly many days, and scarce were come over against Cnidus, the wind not suffering us, we sailed under Crete, over against Salmone; \nAnd, hardly passing it, came unto a place which is called The fair havens; nigh whereunto was the city of Lasea. \nNow when much time was spent, and when sailing was now dangerous, because the fast was now already past, Paul admonished them, \nAnd said unto them, Sirs, I perceive that this voyage will be with hurt and much damage, not only of the lading and ship, but also of our lives. \nNevertheless the centurion believed the master and the owner of the ship, more than those things which were spoken by Paul. \nAnd because the haven was not commodious to winter in, the more part advised to depart thence also, if by any means they might attain to Phenice, and there to winter; which is an haven of Crete, and lieth toward the south west and north west. \nAnd when the south wind blew softly, supposing that they had obtained their purpose, loosing thence, they sailed close by Crete. \nBut not long after there arose against it a tempestuous wind, called Euroclydon. \nAnd when the ship was caught, and could not bear up into the wind, we let her drive. \nAnd running under a certain island which is called Clauda, we had much work to come by the boat: \nWhich when they had taken up, they used helps, undergirding the ship; and, fearing lest they should fall into the quicksands, strake sail, and so were driven. \nAnd we being exceedingly tossed with a tempest, the next day they lightened the ship; \nAnd the third day we cast out with our own hands the tackling of the ship. \nAnd when neither sun nor stars in many days appeared, and no small tempest lay on us, all hope that we should be saved was then taken away. \nBut after long abstinence Paul stood forth in the midst of them, and said, Sirs, ye should have hearkened unto me, and not have loosed from Crete, and to have gained this harm and loss. \nAnd now I exhort you to be of good cheer: for there shall be no loss of any man's life among you, but of the ship. \nFor there stood by me this night the angel of God, whose I am, and whom I serve, \nSaying, Fear not, Paul; thou must be brought before Caesar: and, lo, God hath given thee all them that sail with thee. \nWherefore, sirs, be of good cheer: for I believe God, that it shall be even as it was told me. \nHowbeit we must be cast upon a certain island. \nBut when the fourteenth night was come, as we were driven up and down in Adria, about midnight the shipmen deemed that they drew near to some country; \nAnd sounded, and found it twenty fathoms: and when they had gone a little further, they sounded again, and found it fifteen fathoms. \nThen fearing lest we should have fallen upon rocks, they cast four anchors out of the stern, and wished for the day. \nAnd as the shipmen were about to flee out of the ship, when they had let down the boat into the sea, under colour as though they would have cast anchors out of the foreship, \nPaul said to the centurion and to the soldiers, Except these abide in the ship, ye cannot be saved. \nThen the soldiers cut off the ropes of the boat, and let her fall off. \nAnd while the day was coming on, Paul besought them all to take meat, saying, This day is the fourteenth day that ye have tarried and continued fasting, having taken nothing. \nWherefore I pray you to take some meat: for this is for your health: for there shall not an hair fall from the head of any of you. \nAnd when he had thus spoken, he took bread, and gave thanks to God in presence of them all: and when he had broken it, he began to eat. \nThen were they all of good cheer, and they also took some meat. \nAnd we were in all in the ship two hundred threescore and sixteen souls. \nAnd when they had eaten enough, they lightened the ship, and cast out the wheat into the sea. \nAnd when it was day, they knew not the land: but they discovered a certain creek with a shore, into the which they were minded, if it were possible, to thrust in the ship. \nAnd when they had taken up the anchors, they committed themselves unto the sea, and loosed the rudder bands, and hoised up the mainsail to the wind, and made toward shore. \nAnd falling into a place where two seas met, they ran the ship aground; and the forepart stuck fast, and remained unmoveable, but the hinder part was broken with the violence of the waves. \nAnd the soldiers' counsel was to kill the prisoners, lest any of them should swim out, and escape. \nBut the centurion, willing to save Paul, kept them from their purpose; and commanded that they which could swim should cast themselves first into the sea, and get to land: \nAnd the rest, some on boards, and some on broken pieces of the ship. And so it came to pass, that they escaped all safe to land. \nAnd when they were escaped, then they knew that the island was called Melita. \nAnd the barbarous people shewed us no little kindness: for they kindled a fire, and received us every one, because of the present rain, and because of the cold. \nAnd when Paul had gathered a bundle of sticks, and laid them on the fire, there came a viper out of the heat, and fastened on his hand. \nAnd when the barbarians saw the venomous beast hang on his hand, they said among themselves, No doubt this man is a murderer, whom, though he hath escaped the sea, yet vengeance suffereth not to live. \nAnd he shook off the beast into the fire, and felt no harm. \nHowbeit they looked when he should have swollen, or fallen down dead suddenly: but after they had looked a great while, and saw no harm come to him, they changed their minds, and said that he was a god. \nIn the same quarters were possessions of the chief man of the island, whose name was Publius; who received us, and lodged us three days courteously. \nAnd it came to pass, that the father of Publius lay sick of a fever and of a bloody flux: to whom Paul entered in, and prayed, and laid his hands on him, and healed him. \nSo when this was done, others also, which had diseases in the island, came, and were healed: \nWho also honoured us with many honours; and when we departed, they laded us with such things as were necessary. \nAnd after three months we departed in a ship of Alexandria, which had wintered in the isle, whose sign was Castor and Pollux. \nAnd landing at Syracuse, we tarried there three days. \nAnd from thence we fetched a compass, and came to Rhegium: and after one day the south wind blew, and we came the next day to Puteoli: \nWhere we found brethren, and were desired to tarry with them seven days: and so we went toward Rome. \nAnd from thence, when the brethren heard of us, they came to meet us as far as Appii forum, and The three taverns: whom when Paul saw, he thanked God, and took courage. \nAnd when we came to Rome, the centurion delivered the prisoners to the captain of the guard: but Paul was suffered to dwell by himself with a soldier that kept him. \nAnd it came to pass, that after three days Paul called the chief of the Jews together: and when they were come together, he said unto them, Men and brethren, though I have committed nothing against the people, or customs of our fathers, yet was I delivered prisoner from Jerusalem into the hands of the Romans. \nWho, when they had examined me, would have let me go, because there was no cause of death in me. \nBut when the Jews spake against it, I was constrained to appeal unto Caesar; not that I had ought to accuse my nation of. \nFor this cause therefore have I called for you, to see you, and to speak with you: because that for the hope of Israel I am bound with this chain. \nAnd they said unto him, We neither received letters out of Judaea concerning thee, neither any of the brethren that came shewed or spake any harm of thee. \nBut we desire to hear of thee what thou thinkest: for as concerning this sect, we know that every where it is spoken against. \nAnd when they had appointed him a day, there came many to him into his lodging; to whom he expounded and testified the kingdom of God, persuading them concerning Jesus, both out of the law of Moses, and out of the prophets, from morning till evening. \nAnd some believed the things which were spoken, and some believed not. \nAnd when they agreed not among themselves, they departed, after that Paul had spoken one word, Well spake the Holy Ghost by Esaias the prophet unto our fathers, \nSaying, Go unto this people, and say, Hearing ye shall hear, and shall not understand; and seeing ye shall see, and not perceive: \nFor the heart of this people is waxed gross, and their ears are dull of hearing, and their eyes have they closed; lest they should see with their eyes, and hear with their ears, and understand with their heart, and should be converted, and I should heal them. \nBe it known therefore unto you, that the salvation of God is sent unto the Gentiles, and that they will hear it. \nAnd when he had said these words, the Jews departed, and had great reasoning among themselves. \nAnd Paul dwelt two whole years in his own hired house, and received all that came in unto him, \nPreaching the kingdom of God, and teaching those things which concern the Lord Jesus Christ, with all confidence, no man forbidding him. \nPaul, a servant of Jesus Christ, called to be an apostle, separated unto the gospel of God, \n(Which he had promised afore by his prophets in the holy scriptures,) \nConcerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh; \nAnd declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead: \nBy whom we have received grace and apostleship, for obedience to the faith among all nations, for his name: \nAmong whom are ye also the called of Jesus Christ: \nTo all that be in Rome, beloved of God, called to be saints: Grace to you and peace from God our Father, and the Lord Jesus Christ. \nFirst, I thank my God through Jesus Christ for you all, that your faith is spoken of throughout the whole world. \nFor God is my witness, whom I serve with my spirit in the gospel of his Son, that without ceasing I make mention of you always in my prayers; \nMaking request, if by any means now at length I might have a prosperous journey by the will of God to come unto you. \nFor I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established; \nThat is, that I may be comforted together with you by the mutual faith both of you and me. \nNow I would not have you ignorant, brethren, that oftentimes I purposed to come unto you, (but was let hitherto,) that I might have some fruit among you also, even as among other Gentiles. \nI am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise. \nSo, as much as in me is, I am ready to preach the gospel to you that are at Rome also. \nFor I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek. \nFor therein is the righteousness of God revealed from faith to faith: as it is written, The just shall live by faith. \nFor the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men, who hold the truth in unrighteousness; \nBecause that which may be known of God is manifest in them; for God hath shewed it unto them. \nFor the invisible things of him from the creation of the world are clearly seen, being understood by the things that are made, even his eternal power and Godhead; so that they are without excuse: \nBecause that, when they knew God, they glorified him not as God, neither were thankful; but became vain in their imaginations, and their foolish heart was darkened. \nProfessing themselves to be wise, they became fools, \nAnd changed the glory of the uncorruptible God into an image made like to corruptible man, and to birds, and fourfooted beasts, and creeping things. \nWherefore God also gave them up to uncleanness through the lusts of their own hearts, to dishonour their own bodies between themselves: \nWho changed the truth of God into a lie, and worshipped and served the creature more than the Creator, who is blessed for ever. Amen. \nFor this cause God gave them up unto vile affections: for even their women did change the natural use into that which is against nature: \nAnd likewise also the men, leaving the natural use of the woman, burned in their lust one toward another; men with men working that which is unseemly, and receiving in themselves that recompence of their error which was meet. \nAnd even as they did not like to retain God in their knowledge, God gave them over to a reprobate mind, to do those things which are not convenient; \nBeing filled with all unrighteousness, fornication, wickedness, covetousness, maliciousness; full of envy, murder, debate, deceit, malignity; whisperers, \nBackbiters, haters of God, despiteful, proud, boasters, inventors of evil things, disobedient to parents, \nWithout understanding, covenantbreakers, without natural affection, implacable, unmerciful: \nWho knowing the judgment of God, that they which commit such things are worthy of death, not only do the same, but have pleasure in them that do them. \nTherefore thou art inexcusable, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest doest the same things. \nBut we are sure that the judgment of God is according to truth against them which commit such things. \nAnd thinkest thou this, O man, that judgest them which do such things, and doest the same, that thou shalt escape the judgment of God? \nOr despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance? \nBut after thy hardness and impenitent heart treasurest up unto thyself wrath against the day of wrath and revelation of the righteous judgment of God; \nWho will render to every man according to his deeds: \nTo them who by patient continuance in well doing seek for glory and honour and immortality, eternal life: \nBut unto them that are contentious, and do not obey the truth, but obey unrighteousness, indignation and wrath, \nTribulation and anguish, upon every soul of man that doeth evil, of the Jew first, and also of the Gentile; \nBut glory, honour, and peace, to every man that worketh good, to the Jew first, and also to the Gentile: \nFor there is no respect of persons with God. \nFor as many as have sinned without law shall also perish without law: and as many as have sinned in the law shall be judged by the law; \n(For not the hearers of the law are just before God, but the doers of the law shall be justified. \nFor when the Gentiles, which have not the law, do by nature the things contained in the law, these, having not the law, are a law unto themselves: \nWhich shew the work of the law written in their hearts, their conscience also bearing witness, and their thoughts the mean while accusing or else excusing one another;) \nIn the day when God shall judge the secrets of men by Jesus Christ according to my gospel. \nBehold, thou art called a Jew, and restest in the law, and makest thy boast of God, \nAnd knowest his will, and approvest the things that are more excellent, being instructed out of the law; \nAnd art confident that thou thyself art a guide of the blind, a light of them which are in darkness, \nAn instructor of the foolish, a teacher of babes, which hast the form of knowledge and of the truth in the law. \nThou therefore which teachest another, teachest thou not thyself? thou that preachest a man should not steal, dost thou steal? \nThou that sayest a man should not commit adultery, dost thou commit adultery? thou that abhorrest idols, dost thou commit sacrilege? \nThou that makest thy boast of the law, through breaking the law dishonourest thou God? \nFor the name of God is blasphemed among the Gentiles through you, as it is written. \nFor circumcision verily profiteth, if thou keep the law: but if thou be a breaker of the law, thy circumcision is made uncircumcision. \nTherefore if the uncircumcision keep the righteousness of the law, shall not his uncircumcision be counted for circumcision? \nAnd shall not uncircumcision which is by nature, if it fulfil the law, judge thee, who by the letter and circumcision dost transgress the law? \nFor he is not a Jew, which is one outwardly; neither is that circumcision, which is outward in the flesh: \nBut he is a Jew, which is one inwardly; and circumcision is that of the heart, in the spirit, and not in the letter; whose praise is not of men, but of God. \nWhat advantage then hath the Jew? or what profit is there of circumcision? \nMuch every way: chiefly, because that unto them were committed the oracles of God. \nFor what if some did not believe? shall their unbelief make the faith of God without effect? \nGod forbid: yea, let God be true, but every man a liar; as it is written, That thou mightest be justified in thy sayings, and mightest overcome when thou art judged. \nBut if our unrighteousness commend the righteousness of God, what shall we say? Is God unrighteous who taketh vengeance? (I speak as a man) \nGod forbid: for then how shall God judge the world? \nFor if the truth of God hath more abounded through my lie unto his glory; why yet am I also judged as a sinner? \nAnd not rather, (as we be slanderously reported, and as some affirm that we say,) Let us do evil, that good may come? whose damnation is just. \nWhat then? are we better than they? No, in no wise: for we have before proved both Jews and Gentiles, that they are all under sin; \nAs it is written, There is none righteous, no, not one: \nThere is none that understandeth, there is none that seeketh after God. \nThey are all gone out of the way, they are together become unprofitable; there is none that doeth good, no, not one. \nTheir throat is an open sepulchre; with their tongues they have used deceit; the poison of asps is under their lips: \nWhose mouth is full of cursing and bitterness: \nTheir feet are swift to shed blood: \nDestruction and misery are in their ways: \nAnd the way of peace have they not known: \nThere is no fear of God before their eyes. \nNow we know that what things soever the law saith, it saith to them who are under the law: that every mouth may be stopped, and all the world may become guilty before God. \nTherefore by the deeds of the law there shall no flesh be justified in his sight: for by the law is the knowledge of sin. \nBut now the righteousness of God without the law is manifested, being witnessed by the law and the prophets; \nEven the righteousness of God which is by faith of Jesus Christ unto all and upon all them that believe: for there is no difference: \nFor all have sinned, and come short of the glory of God; \nBeing justified freely by his grace through the redemption that is in Christ Jesus: \nWhom God hath set forth to be a propitiation through faith in his blood, to declare his righteousness for the remission of sins that are past, through the forbearance of God; \nTo declare, I say, at this time his righteousness: that he might be just, and the justifier of him which believeth in Jesus. \nWhere is boasting then? It is excluded. By what law? of works? Nay: but by the law of faith. \nTherefore we conclude that a man is justified by faith without the deeds of the law. \nIs he the God of the Jews only? is he not also of the Gentiles? Yes, of the Gentiles also: \nSeeing it is one God, which shall justify the circumcision by faith, and uncircumcision through faith. \nDo we then make void the law through faith? God forbid: yea, we establish the law. \nWhat shall we say then that Abraham our father, as pertaining to the flesh, hath found? \nFor if Abraham were justified by works, he hath whereof to glory; but not before God. \nFor what saith the scripture? Abraham believed God, and it was counted unto him for righteousness. \nNow to him that worketh is the reward not reckoned of grace, but of debt. \nBut to him that worketh not, but believeth on him that justifieth the ungodly, his faith is counted for righteousness. \nEven as David also describeth the blessedness of the man, unto whom God imputeth righteousness without works, \nSaying, Blessed are they whose iniquities are forgiven, and whose sins are covered. \nBlessed is the man to whom the Lord will not impute sin. \nCometh this blessedness then upon the circumcision only, or upon the uncircumcision also? for we say that faith was reckoned to Abraham for righteousness. \nHow was it then reckoned? when he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision. \nAnd he received the sign of circumcision, a seal of the righteousness of the faith which he had yet being uncircumcised: that he might be the father of all them that believe, though they be not circumcised; that righteousness might be imputed unto them also: \nAnd the father of circumcision to them who are not of the circumcision only, but who also walk in the steps of that faith of our father Abraham, which he had being yet uncircumcised. \nFor the promise, that he should be the heir of the world, was not to Abraham, or to his seed, through the law, but through the righteousness of faith. \nFor if they which are of the law be heirs, faith is made void, and the promise made of none effect: \nBecause the law worketh wrath: for where no law is, there is no transgression. \nTherefore it is of faith, that it might be by grace; to the end the promise might be sure to all the seed; not to that only which is of the law, but to that also which is of the faith of Abraham; who is the father of us all, \n(As it is written, I have made thee a father of many nations,) before him whom he believed, even God, who quickeneth the dead, and calleth those things which be not as though they were. \nWho against hope believed in hope, that he might become the father of many nations, according to that which was spoken, So shall thy seed be. \nAnd being not weak in faith, he considered not his own body now dead, when he was about an hundred years old, neither yet the deadness of Sarah's womb: \nHe staggered not at the promise of God through unbelief; but was strong in faith, giving glory to God; \nAnd being fully persuaded that, what he had promised, he was able also to perform. \nAnd therefore it was imputed to him for righteousness. \nNow it was not written for his sake alone, that it was imputed to him; \nBut for us also, to whom it shall be imputed, if we believe on him that raised up Jesus our Lord from the dead; \nWho was delivered for our offences, and was raised again for our justification. \nTherefore being justified by faith, we have peace with God through our Lord Jesus Christ: \nBy whom also we have access by faith into this grace wherein we stand, and rejoice in hope of the glory of God. \nAnd not only so, but we glory in tribulations also: knowing that tribulation worketh patience; \nAnd patience, experience; and experience, hope: \nAnd hope maketh not ashamed; because the love of God is shed abroad in our hearts by the Holy Ghost which is given unto us. \nFor when we were yet without strength, in due time Christ died for the ungodly. \nFor scarcely for a righteous man will one die: yet peradventure for a good man some would even dare to die. \nBut God commendeth his love toward us, in that, while we were yet sinners, Christ died for us. \nMuch more then, being now justified by his blood, we shall be saved from wrath through him. \nFor if, when we were enemies, we were reconciled to God by the death of his Son, much more, being reconciled, we shall be saved by his life. \nAnd not only so, but we also joy in God through our Lord Jesus Christ, by whom we have now received the atonement. \nWherefore, as by one man sin entered into the world, and death by sin; and so death passed upon all men, for that all have sinned: \n(For until the law sin was in the world: but sin is not imputed when there is no law. \nNevertheless death reigned from Adam to Moses, even over them that had not sinned after the similitude of Adam's transgression, who is the figure of him that was to come. \nBut not as the offence, so also is the free gift. For if through the offence of one many be dead, much more the grace of God, and the gift by grace, which is by one man, Jesus Christ, hath abounded unto many. \nAnd not as it was by one that sinned, so is the gift: for the judgment was by one to condemnation, but the free gift is of many offences unto justification. \nFor if by one man's offence death reigned by one; much more they which receive abundance of grace and of the gift of righteousness shall reign in life by one, Jesus Christ.) \nTherefore as by the offence of one judgment came upon all men to condemnation; even so by the righteousness of one the free gift came upon all men unto justification of life. \nFor as by one man's disobedience many were made sinners, so by the obedience of one shall many be made righteous. \nMoreover the law entered, that the offence might abound. But where sin abounded, grace did much more abound: \nThat as sin hath reigned unto death, even so might grace reign through righteousness unto eternal life by Jesus Christ our Lord. \nWhat shall we say then? Shall we continue in sin, that grace may abound? \nGod forbid. How shall we, that are dead to sin, live any longer therein? \nKnow ye not, that so many of us as were baptized into Jesus Christ were baptized into his death? \nTherefore we are buried with him by baptism into death: that like as Christ was raised up from the dead by the glory of the Father, even so we also should walk in newness of life. \nFor if we have been planted together in the likeness of his death, we shall be also in the likeness of his resurrection: \nKnowing this, that our old man is crucified with him, that the body of sin might be destroyed, that henceforth we should not serve sin. \nFor he that is dead is freed from sin. \nNow if we be dead with Christ, we believe that we shall also live with him: \nKnowing that Christ being raised from the dead dieth no more; death hath no more dominion over him. \nFor in that he died, he died unto sin once: but in that he liveth, he liveth unto God. \nLikewise reckon ye also yourselves to be dead indeed unto sin, but alive unto God through Jesus Christ our Lord. \nLet not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof. \nNeither yield ye your members as instruments of unrighteousness unto sin: but yield yourselves unto God, as those that are alive from the dead, and your members as instruments of righteousness unto God. \nFor sin shall not have dominion over you: for ye are not under the law, but under grace. \nWhat then? shall we sin, because we are not under the law, but under grace? God forbid. \nKnow ye not, that to whom ye yield yourselves servants to obey, his servants ye are to whom ye obey; whether of sin unto death, or of obedience unto righteousness? \nBut God be thanked, that ye were the servants of sin, but ye have obeyed from the heart that form of doctrine which was delivered you. \nBeing then made free from sin, ye became the servants of righteousness. \nI speak after the manner of men because of the infirmity of your flesh: for as ye have yielded your members servants to uncleanness and to iniquity unto iniquity; even so now yield your members servants to righteousness unto holiness. \nFor when ye were the servants of sin, ye were free from righteousness. \nWhat fruit had ye then in those things whereof ye are now ashamed? for the end of those things is death. \nBut now being made free from sin, and become servants to God, ye have your fruit unto holiness, and the end everlasting life. \nFor the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord. \nKnow ye not, brethren, (for I speak to them that know the law,) how that the law hath dominion over a man as long as he liveth? \nFor the woman which hath an husband is bound by the law to her husband so long as he liveth; but if the husband be dead, she is loosed from the law of her husband. \nSo then if, while her husband liveth, she be married to another man, she shall be called an adulteress: but if her husband be dead, she is free from that law; so that she is no adulteress, though she be married to another man. \nWherefore, my brethren, ye also are become dead to the law by the body of Christ; that ye should be married to another, even to him who is raised from the dead, that we should bring forth fruit unto God. \nFor when we were in the flesh, the motions of sins, which were by the law, did work in our members to bring forth fruit unto death. \nBut now we are delivered from the law, that being dead wherein we were held; that we should serve in newness of spirit, and not in the oldness of the letter. \nWhat shall we say then? Is the law sin? God forbid. Nay, I had not known sin, but by the law: for I had not known lust, except the law had said, Thou shalt not covet. \nBut sin, taking occasion by the commandment, wrought in me all manner of concupiscence. For without the law sin was dead. \nFor I was alive without the law once: but when the commandment came, sin revived, and I died. \nAnd the commandment, which was ordained to life, I found to be unto death. \nFor sin, taking occasion by the commandment, deceived me, and by it slew me. \nWherefore the law is holy, and the commandment holy, and just, and good. \nWas then that which is good made death unto me? God forbid. But sin, that it might appear sin, working death in me by that which is good; that sin by the commandment might become exceeding sinful. \nFor we know that the law is spiritual: but I am carnal, sold under sin. \nFor that which I do I allow not: for what I would, that do I not; but what I hate, that do I. \nIf then I do that which I would not, I consent unto the law that it is good. \nNow then it is no more I that do it, but sin that dwelleth in me. \nFor I know that in me (that is, in my flesh,) dwelleth no good thing: for to will is present with me; but how to perform that which is good I find not. \nFor the good that I would I do not: but the evil which I would not, that I do. \nNow if I do that I would not, it is no more I that do it, but sin that dwelleth in me. \nI find then a law, that, when I would do good, evil is present with me. \nFor I delight in the law of God after the inward man: \nBut I see another law in my members, warring against the law of my mind, and bringing me into captivity to the law of sin which is in my members. \nO wretched man that I am! who shall deliver me from the body of this death? \nI thank God through Jesus Christ our Lord. So then with the mind I myself serve the law of God; but with the flesh the law of sin. \nThere is therefore now no condemnation to them which are in Christ Jesus, who walk not after the flesh, but after the Spirit. \nFor the law of the Spirit of life in Christ Jesus hath made me free from the law of sin and death. \nFor what the law could not do, in that it was weak through the flesh, God sending his own Son in the likeness of sinful flesh, and for sin, condemned sin in the flesh: \nThat the righteousness of the law might be fulfilled in us, who walk not after the flesh, but after the Spirit. \nFor they that are after the flesh do mind the things of the flesh; but they that are after the Spirit the things of the Spirit. \nFor to be carnally minded is death; but to be spiritually minded is life and peace. \nBecause the carnal mind is enmity against God: for it is not subject to the law of God, neither indeed can be. \nSo then they that are in the flesh cannot please God. \nBut ye are not in the flesh, but in the Spirit, if so be that the Spirit of God dwell in you. Now if any man have not the Spirit of Christ, he is none of his. \nAnd if Christ be in you, the body is dead because of sin; but the Spirit is life because of righteousness. \nBut if the Spirit of him that raised up Jesus from the dead dwell in you, he that raised up Christ from the dead shall also quicken your mortal bodies by his Spirit that dwelleth in you. \nTherefore, brethren, we are debtors, not to the flesh, to live after the flesh. \nFor if ye live after the flesh, ye shall die: but if ye through the Spirit do mortify the deeds of the body, ye shall live. \nFor as many as are led by the Spirit of God, they are the sons of God. \nFor ye have not received the spirit of bondage again to fear; but ye have received the Spirit of adoption, whereby we cry, Abba, Father. \nThe Spirit itself beareth witness with our spirit, that we are the children of God: \nAnd if children, then heirs; heirs of God, and joint-heirs with Christ; if so be that we suffer with him, that we may be also glorified together. \nFor I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. \nFor the earnest expectation of the creature waiteth for the manifestation of the sons of God. \nFor the creature was made subject to vanity, not willingly, but by reason of him who hath subjected the same in hope, \nBecause the creature itself also shall be delivered from the bondage of corruption into the glorious liberty of the children of God. \nFor we know that the whole creation groaneth and travaileth in pain together until now. \nAnd not only they, but ourselves also, which have the firstfruits of the Spirit, even we ourselves groan within ourselves, waiting for the adoption, to wit, the redemption of our body. \nFor we are saved by hope: but hope that is seen is not hope: for what a man seeth, why doth he yet hope for? \nBut if we hope for that we see not, then do we with patience wait for it. \nLikewise the Spirit also helpeth our infirmities: for we know not what we should pray for as we ought: but the Spirit itself maketh intercession for us with groanings which cannot be uttered. \nAnd he that searcheth the hearts knoweth what is the mind of the Spirit, because he maketh intercession for the saints according to the will of God. \nAnd we know that all things work together for good to them that love God, to them who are the called according to his purpose. \nFor whom he did foreknow, he also did predestinate to be conformed to the image of his Son, that he might be the firstborn among many brethren. \nMoreover whom he did predestinate, them he also called: and whom he called, them he also justified: and whom he justified, them he also glorified. \nWhat shall we then say to these things? If God be for us, who can be against us? \nHe that spared not his own Son, but delivered him up for us all, how shall he not with him also freely give us all things? \nWho shall lay any thing to the charge of God's elect? It is God that justifieth. \nWho is he that condemneth? It is Christ that died, yea rather, that is risen again, who is even at the right hand of God, who also maketh intercession for us. \nWho shall separate us from the love of Christ? shall tribulation, or distress, or persecution, or famine, or nakedness, or peril, or sword? \nAs it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter. \nNay, in all these things we are more than conquerors through him that loved us. \nFor I am persuaded, that neither death, nor life, nor angels, nor principalities, nor powers, nor things present, nor things to come, \nNor height, nor depth, nor any other creature, shall be able to separate us from the love of God, which is in Christ Jesus our Lord. \nI say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost, \nThat I have great heaviness and continual sorrow in my heart. \nFor I could wish that myself were accursed from Christ for my brethren, my kinsmen according to the flesh: \nWho are Israelites; to whom pertaineth the adoption, and the glory, and the covenants, and the giving of the law, and the service of God, and the promises; \nWhose are the fathers, and of whom as concerning the flesh Christ came, who is over all, God blessed for ever. Amen. \nNot as though the word of God hath taken none effect. For they are not all Israel, which are of Israel: \nNeither, because they are the seed of Abraham, are they all children: but, In Isaac shall thy seed be called. \nThat is, They which are the children of the flesh, these are not the children of God: but the children of the promise are counted for the seed. \nFor this is the word of promise, At this time will I come, and Sarah shall have a son. \nAnd not only this; but when Rebecca also had conceived by one, even by our father Isaac; \n(For the children being not yet born, neither having done any good or evil, that the purpose of God according to election might stand, not of works, but of him that calleth;) \nIt was said unto her, The elder shall serve the younger. \nAs it is written, Jacob have I loved, but Esau have I hated. \nWhat shall we say then? Is there unrighteousness with God? God forbid. \nFor he saith to Moses, I will have mercy on whom I will have mercy, and I will have compassion on whom I will have compassion. \nSo then it is not of him that willeth, nor of him that runneth, but of God that sheweth mercy. \nFor the scripture saith unto Pharaoh, Even for this same purpose have I raised thee up, that I might shew my power in thee, and that my name might be declared throughout all the earth. \nTherefore hath he mercy on whom he will have mercy, and whom he will he hardeneth. \nThou wilt say then unto me, Why doth he yet find fault? For who hath resisted his will? \nNay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why hast thou made me thus? \nHath not the potter power over the clay, of the same lump to make one vessel unto honour, and another unto dishonour? \nWhat if God, willing to shew his wrath, and to make his power known, endured with much longsuffering the vessels of wrath fitted to destruction: \nAnd that he might make known the riches of his glory on the vessels of mercy, which he had afore prepared unto glory, \nEven us, whom he hath called, not of the Jews only, but also of the Gentiles? \nAs he saith also in Osee, I will call them my people, which were not my people; and her beloved, which was not beloved. \nAnd it shall come to pass, that in the place where it was said unto them, Ye are not my people; there shall they be called the children of the living God. \nEsaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved: \nFor he will finish the work, and cut it short in righteousness: because a short work will the Lord make upon the earth. \nAnd as Esaias said before, Except the Lord of Sabaoth had left us a seed, we had been as Sodoma, and been made like unto Gomorrha. \nWhat shall we say then? That the Gentiles, which followed not after righteousness, have attained to righteousness, even the righteousness which is of faith. \nBut Israel, which followed after the law of righteousness, hath not attained to the law of righteousness. \nWherefore? Because they sought it not by faith, but as it were by the works of the law. For they stumbled at that stumblingstone; \nAs it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed. \nBrethren, my heart's desire and prayer to God for Israel is, that they might be saved. \nFor I bear them record that they have a zeal of God, but not according to knowledge. \nFor they being ignorant of God's righteousness, and going about to establish their own righteousness, have not submitted themselves unto the righteousness of God. \nFor Christ is the end of the law for righteousness to every one that believeth. \nFor Moses describeth the righteousness which is of the law, That the man which doeth those things shall live by them. \nBut the righteousness which is of faith speaketh on this wise, Say not in thine heart, Who shall ascend into heaven? (that is, to bring Christ down from above:) \nOr, Who shall descend into the deep? (that is, to bring up Christ again from the dead.) \nBut what saith it? The word is nigh thee, even in thy mouth, and in thy heart: that is, the word of faith, which we preach; \nThat if thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved. \nFor with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation. \nFor the scripture saith, Whosoever believeth on him shall not be ashamed. \nFor there is no difference between the Jew and the Greek: for the same Lord over all is rich unto all that call upon him. \nFor whosoever shall call upon the name of the Lord shall be saved. \nHow then shall they call on him in whom they have not believed? and how shall they believe in him of whom they have not heard? and how shall they hear without a preacher? \nAnd how shall they preach, except they be sent? as it is written, How beautiful are the feet of them that preach the gospel of peace, and bring glad tidings of good things! \nBut they have not all obeyed the gospel. For Esaias saith, Lord, who hath believed our report? \nSo then faith cometh by hearing, and hearing by the word of God. \nBut I say, Have they not heard? Yes verily, their sound went into all the earth, and their words unto the ends of the world. \nBut I say, Did not Israel know? First Moses saith, I will provoke you to jealousy by them that are no people, and by a foolish nation I will anger you. \nBut Esaias is very bold, and saith, I was found of them that sought me not; I was made manifest unto them that asked not after me. \nBut to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people. \nI say then, Hath God cast away his people? God forbid. For I also am an Israelite, of the seed of Abraham, of the tribe of Benjamin. \nGod hath not cast away his people which he foreknew. Wot ye not what the scripture saith of Elias? how he maketh intercession to God against Israel saying, \nLord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life. \nBut what saith the answer of God unto him? I have reserved to myself seven thousand men, who have not bowed the knee to the image of Baal. \nEven so then at this present time also there is a remnant according to the election of grace. \nAnd if by grace, then is it no more of works: otherwise grace is no more grace. But if it be of works, then it is no more grace: otherwise work is no more work. \nWhat then? Israel hath not obtained that which he seeketh for; but the election hath obtained it, and the rest were blinded. \n(According as it is written, God hath given them the spirit of slumber, eyes that they should not see, and ears that they should not hear;) unto this day. \nAnd David saith, Let their table be made a snare, and a trap, and a stumblingblock, and a recompence unto them: \nLet their eyes be darkened, that they may not see, and bow down their back alway. \nI say then, Have they stumbled that they should fall? God forbid: but rather through their fall salvation is come unto the Gentiles, for to provoke them to jealousy. \nNow if the fall of them be the riches of the world, and the diminishing of them the riches of the Gentiles; how much more their fulness? \nFor I speak to you Gentiles, inasmuch as I am the apostle of the Gentiles, I magnify mine office: \nIf by any means I may provoke to emulation them which are my flesh, and might save some of them. \nFor if the casting away of them be the reconciling of the world, what shall the receiving of them be, but life from the dead? \nFor if the firstfruit be holy, the lump is also holy: and if the root be holy, so are the branches. \nAnd if some of the branches be broken off, and thou, being a wild olive tree, wert graffed in among them, and with them partakest of the root and fatness of the olive tree; \nBoast not against the branches. But if thou boast, thou bearest not the root, but the root thee. \nThou wilt say then, The branches were broken off, that I might be graffed in. \nWell; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear: \nFor if God spared not the natural branches, take heed lest he also spare not thee. \nBehold therefore the goodness and severity of God: on them which fell, severity; but toward thee, goodness, if thou continue in his goodness: otherwise thou also shalt be cut off. \nAnd they also, if they abide not still in unbelief, shall be graffed in: for God is able to graff them in again. \nFor if thou wert cut out of the olive tree which is wild by nature, and wert graffed contrary to nature into a good olive tree: how much more shall these, which be the natural branches, be graffed into their own olive tree? \nFor I would not, brethren, that ye should be ignorant of this mystery, lest ye should be wise in your own conceits; that blindness in part is happened to Israel, until the fulness of the Gentiles be come in. \nAnd so all Israel shall be saved: as it is written, There shall come out of Sion the Deliverer, and shall turn away ungodliness from Jacob: \nFor this is my covenant unto them, when I shall take away their sins. \nAs concerning the gospel, they are enemies for your sakes: but as touching the election, they are beloved for the father's sakes. \nFor the gifts and calling of God are without repentance. \nFor as ye in times past have not believed God, yet have now obtained mercy through their unbelief: \nEven so have these also now not believed, that through your mercy they also may obtain mercy. \nFor God hath concluded them all in unbelief, that he might have mercy upon all. \nO the depth of the riches both of the wisdom and knowledge of God! how unsearchable are his judgments, and his ways past finding out! \nFor who hath known the mind of the Lord? or who hath been his counsellor? \nOr who hath first given to him, and it shall be recompensed unto him again? \nFor of him, and through him, and to him, are all things: to whom be glory for ever. Amen. \nI beseech you therefore, brethren, by the mercies of God, that ye present your bodies a living sacrifice, holy, acceptable unto God, which is your reasonable service. \nAnd be not conformed to this world: but be ye transformed by the renewing of your mind, that ye may prove what is that good, and acceptable, and perfect, will of God. \nFor I say, through the grace given unto me, to every man that is among you, not to think of himself more highly than he ought to think; but to think soberly, according as God hath dealt to every man the measure of faith. \nFor as we have many members in one body, and all members have not the same office: \nSo we, being many, are one body in Christ, and every one members one of another. \nHaving then gifts differing according to the grace that is given to us, whether prophecy, let us prophesy according to the proportion of faith; \nOr ministry, let us wait on our ministering: or he that teacheth, on teaching; \nOr he that exhorteth, on exhortation: he that giveth, let him do it with simplicity; he that ruleth, with diligence; he that sheweth mercy, with cheerfulness. \nLet love be without dissimulation. Abhor that which is evil; cleave to that which is good. \nBe kindly affectioned one to another with brotherly love; in honour preferring one another; \nNot slothful in business; fervent in spirit; serving the Lord; \nRejoicing in hope; patient in tribulation; continuing instant in prayer; \nDistributing to the necessity of saints; given to hospitality. \nBless them which persecute you: bless, and curse not. \nRejoice with them that do rejoice, and weep with them that weep. \nBe of the same mind one toward another. Mind not high things, but condescend to men of low estate. Be not wise in your own conceits. \nRecompense to no man evil for evil. Provide things honest in the sight of all men. \nIf it be possible, as much as lieth in you, live peaceably with all men. \nDearly beloved, avenge not yourselves, but rather give place unto wrath: for it is written, Vengeance is mine; I will repay, saith the Lord. \nTherefore if thine enemy hunger, feed him; if he thirst, give him drink: for in so doing thou shalt heap coals of fire on his head. \nBe not overcome of evil, but overcome evil with good. \nLet every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God. \nWhosoever therefore resisteth the power, resisteth the ordinance of God: and they that resist shall receive to themselves damnation. \nFor rulers are not a terror to good works, but to the evil. Wilt thou then not be afraid of the power? do that which is good, and thou shalt have praise of the same: \nFor he is the minister of God to thee for good. But if thou do that which is evil, be afraid; for he beareth not the sword in vain: for he is the minister of God, a revenger to execute wrath upon him that doeth evil. \nWherefore ye must needs be subject, not only for wrath, but also for conscience sake. \nFor for this cause pay ye tribute also: for they are God's ministers, attending continually upon this very thing. \nRender therefore to all their dues: tribute to whom tribute is due; custom to whom custom; fear to whom fear; honour to whom honour. \nOwe no man any thing, but to love one another: for he that loveth another hath fulfilled the law. \nFor this, Thou shalt not commit adultery, Thou shalt not kill, Thou shalt not steal, Thou shalt not bear false witness, Thou shalt not covet; and if there be any other commandment, it is briefly comprehended in this saying, namely, Thou shalt love thy neighbour as thyself. \nLove worketh no ill to his neighbour: therefore love is the fulfilling of the law. \nAnd that, knowing the time, that now it is high time to awake out of sleep: for now is our salvation nearer than when we believed. \nThe night is far spent, the day is at hand: let us therefore cast off the works of darkness, and let us put on the armour of light. \nLet us walk honestly, as in the day; not in rioting and drunkenness, not in chambering and wantonness, not in strife and envying. \nBut put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. \nHim that is weak in the faith receive ye, but not to doubtful disputations. \nFor one believeth that he may eat all things: another, who is weak, eateth herbs. \nLet not him that eateth despise him that eateth not; and let not him which eateth not judge him that eateth: for God hath received him. \nWho art thou that judgest another man's servant? to his own master he standeth or falleth. Yea, he shall be holden up: for God is able to make him stand. \nOne man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind. \nHe that regardeth the day, regardeth it unto the Lord; and he that regardeth not the day, to the Lord he doth not regard it. He that eateth, eateth to the Lord, for he giveth God thanks; and he that eateth not, to the Lord he eateth not, and giveth God thanks. \nFor none of us liveth to himself, and no man dieth to himself. \nFor whether we live, we live unto the Lord; and whether we die, we die unto the Lord: whether we live therefore, or die, we are the Lord's. \nFor to this end Christ both died, and rose, and revived, that he might be Lord both of the dead and living. \nBut why dost thou judge thy brother? or why dost thou set at nought thy brother? for we shall all stand before the judgment seat of Christ. \nFor it is written, As I live, saith the Lord, every knee shall bow to me, and every tongue shall confess to God. \nSo then every one of us shall give account of himself to God. \nLet us not therefore judge one another any more: but judge this rather, that no man put a stumblingblock or an occasion to fall in his brother's way. \nI know, and am persuaded by the Lord Jesus, that there is nothing unclean of itself: but to him that esteemeth any thing to be unclean, to him it is unclean. \nBut if thy brother be grieved with thy meat, now walkest thou not charitably. Destroy not him with thy meat, for whom Christ died. \nLet not then your good be evil spoken of: \nFor the kingdom of God is not meat and drink; but righteousness, and peace, and joy in the Holy Ghost. \nFor he that in these things serveth Christ is acceptable to God, and approved of men. \nLet us therefore follow after the things which make for peace, and things wherewith one may edify another. \nFor meat destroy not the work of God. All things indeed are pure; but it is evil for that man who eateth with offence. \nIt is good neither to eat flesh, nor to drink wine, nor any thing whereby thy brother stumbleth, or is offended, or is made weak. \nHast thou faith? have it to thyself before God. Happy is he that condemneth not himself in that thing which he alloweth. \nAnd he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin. \nWe then that are strong ought to bear the infirmities of the weak, and not to please ourselves. \nLet every one of us please his neighbour for his good to edification. \nFor even Christ pleased not himself; but, as it is written, The reproaches of them that reproached thee fell on me. \nFor whatsoever things were written aforetime were written for our learning, that we through patience and comfort of the scriptures might have hope. \nNow the God of patience and consolation grant you to be likeminded one toward another according to Christ Jesus: \nThat ye may with one mind and one mouth glorify God, even the Father of our Lord Jesus Christ. \nWherefore receive ye one another, as Christ also received us to the glory of God. \nNow I say that Jesus Christ was a minister of the circumcision for the truth of God, to confirm the promises made unto the fathers: \nAnd that the Gentiles might glorify God for his mercy; as it is written, For this cause I will confess to thee among the Gentiles, and sing unto thy name. \nAnd again he saith, Rejoice, ye Gentiles, with his people. \nAnd again, Praise the Lord, all ye Gentiles; and laud him, all ye people. \nAnd again, Esaias saith, There shall be a root of Jesse, and he that shall rise to reign over the Gentiles; in him shall the Gentiles trust. \nNow the God of hope fill you with all joy and peace in believing, that ye may abound in hope, through the power of the Holy Ghost. \nAnd I myself also am persuaded of you, my brethren, that ye also are full of goodness, filled with all knowledge, able also to admonish one another. \nNevertheless, brethren, I have written the more boldly unto you in some sort, as putting you in mind, because of the grace that is given to me of God, \nThat I should be the minister of Jesus Christ to the Gentiles, ministering the gospel of God, that the offering up of the Gentiles might be acceptable, being sanctified by the Holy Ghost. \nI have therefore whereof I may glory through Jesus Christ in those things which pertain to God. \nFor I will not dare to speak of any of those things which Christ hath not wrought by me, to make the Gentiles obedient, by word and deed, \nThrough mighty signs and wonders, by the power of the Spirit of God; so that from Jerusalem, and round about unto Illyricum, I have fully preached the gospel of Christ. \nYea, so have I strived to preach the gospel, not where Christ was named, lest I should build upon another man's foundation: \nBut as it is written, To whom he was not spoken of, they shall see: and they that have not heard shall understand. \nFor which cause also I have been much hindered from coming to you. \nBut now having no more place in these parts, and having a great desire these many years to come unto you; \nWhensoever I take my journey into Spain, I will come to you: for I trust to see you in my journey, and to be brought on my way thitherward by you, if first I be somewhat filled with your company. \nBut now I go unto Jerusalem to minister unto the saints. \nFor it hath pleased them of Macedonia and Achaia to make a certain contribution for the poor saints which are at Jerusalem. \nIt hath pleased them verily; and their debtors they are. For if the Gentiles have been made partakers of their spiritual things, their duty is also to minister unto them in carnal things. \nWhen therefore I have performed this, and have sealed to them this fruit, I will come by you into Spain. \nAnd I am sure that, when I come unto you, I shall come in the fulness of the blessing of the gospel of Christ. \nNow I beseech you, brethren, for the Lord Jesus Christ's sake, and for the love of the Spirit, that ye strive together with me in your prayers to God for me; \nThat I may be delivered from them that do not believe in Judaea; and that my service which I have for Jerusalem may be accepted of the saints; \nThat I may come unto you with joy by the will of God, and may with you be refreshed. \nNow the God of peace be with you all. Amen. \nI commend unto you Phebe our sister, which is a servant of the church which is at Cenchrea: \nThat ye receive her in the Lord, as becometh saints, and that ye assist her in whatsoever business she hath need of you: for she hath been a succourer of many, and of myself also. \nGreet Priscilla and Aquila my helpers in Christ Jesus: \nWho have for my life laid down their own necks: unto whom not only I give thanks, but also all the churches of the Gentiles. \nLikewise greet the church that is in their house. Salute my well-beloved Epaenetus, who is the firstfruits of Achaia unto Christ. \nGreet Mary, who bestowed much labour on us. \nSalute Andronicus and Junia, my kinsmen, and my fellow-prisoners, who are of note among the apostles, who also were in Christ before me. \nGreet Amplias my beloved in the Lord. \nSalute Urbane, our helper in Christ, and Stachys my beloved. \nSalute Apelles approved in Christ. Salute them which are of Aristobulus' household. \nSalute Herodion my kinsman. Greet them that be of the household of Narcissus, which are in the Lord. \nSalute Tryphena and Tryphosa, who labour in the Lord. Salute the beloved Persis, which laboured much in the Lord. \nSalute Rufus chosen in the Lord, and his mother and mine. \nSalute Asyncritus, Phlegon, Hermas, Patrobas, Hermes, and the brethren which are with them. \nSalute Philologus, and Julia, Nereus, and his sister, and Olympas, and all the saints which are with them. \nSalute one another with an holy kiss. The churches of Christ salute you. \nNow I beseech you, brethren, mark them which cause divisions and offences contrary to the doctrine which ye have learned; and avoid them. \nFor they that are such serve not our Lord Jesus Christ, but their own belly; and by good words and fair speeches deceive the hearts of the simple. \nFor your obedience is come abroad unto all men. I am glad therefore on your behalf: but yet I would have you wise unto that which is good, and simple concerning evil. \nAnd the God of peace shall bruise Satan under your feet shortly. The grace of our Lord Jesus Christ be with you. Amen. \nTimotheus my workfellow, and Lucius, and Jason, and Sosipater, my kinsmen, salute you. \nI Tertius, who wrote this epistle, salute you in the Lord. \nGaius mine host, and of the whole church, saluteth you. Erastus the chamberlain of the city saluteth you, and Quartus a brother. \nThe grace of our Lord Jesus Christ be with you all. Amen. \nNow to him that is of power to stablish you according to my gospel, and the preaching of Jesus Christ, according to the revelation of the mystery, which was kept secret since the world began, \nBut now is made manifest, and by the scriptures of the prophets, according to the commandment of the everlasting God, made known to all nations for the obedience of faith: \nTo God only wise, be glory through Jesus Christ for ever. Amen. \nPaul called to be an apostle of Jesus Christ through the will of God, and Sosthenes our brother, \nUnto the church of God which is at Corinth, to them that are sanctified in Christ Jesus, called to be saints, with all that in every place call upon the name of Jesus Christ our Lord, both their's and our's: \nGrace be unto you, and peace, from God our Father, and from the Lord Jesus Christ. \nI thank my God always on your behalf, for the grace of God which is given you by Jesus Christ; \nThat in every thing ye are enriched by him, in all utterance, and in all knowledge; \nEven as the testimony of Christ was confirmed in you: \nSo that ye come behind in no gift; waiting for the coming of our Lord Jesus Christ: \nWho shall also confirm you unto the end, that ye may be blameless in the day of our Lord Jesus Christ. \nGod is faithful, by whom ye were called unto the fellowship of his Son Jesus Christ our Lord. \nNow I beseech you, brethren, by the name of our Lord Jesus Christ, that ye all speak the same thing, and that there be no divisions among you; but that ye be perfectly joined together in the same mind and in the same judgment. \nFor it hath been declared unto me of you, my brethren, by them which are of the house of Chloe, that there are contentions among you. \nNow this I say, that every one of you saith, I am of Paul; and I of Apollos; and I of Cephas; and I of Christ. \nIs Christ divided? was Paul crucified for you? or were ye baptized in the name of Paul? \nI thank God that I baptized none of you, but Crispus and Gaius; \nLest any should say that I had baptized in mine own name. \nAnd I baptized also the household of Stephanas: besides, I know not whether I baptized any other. \nFor Christ sent me not to baptize, but to preach the gospel: not with wisdom of words, lest the cross of Christ should be made of none effect. \nFor the preaching of the cross is to them that perish foolishness; but unto us which are saved it is the power of God. \nFor it is written, I will destroy the wisdom of the wise, and will bring to nothing the understanding of the prudent. \nWhere is the wise? where is the scribe? where is the disputer of this world? hath not God made foolish the wisdom of this world? \nFor after that in the wisdom of God the world by wisdom knew not God, it pleased God by the foolishness of preaching to save them that believe. \nFor the Jews require a sign, and the Greeks seek after wisdom: \nBut we preach Christ crucified, unto the Jews a stumblingblock, and unto the Greeks foolishness; \nBut unto them which are called, both Jews and Greeks, Christ the power of God, and the wisdom of God. \nBecause the foolishness of God is wiser than men; and the weakness of God is stronger than men. \nFor ye see your calling, brethren, how that not many wise men after the flesh, not many mighty, not many noble, are called: \nBut God hath chosen the foolish things of the world to confound the wise; and God hath chosen the weak things of the world to confound the things which are mighty; \nAnd base things of the world, and things which are despised, hath God chosen, yea, and things which are not, to bring to nought things that are: \nThat no flesh should glory in his presence. \nBut of him are ye in Christ Jesus, who of God is made unto us wisdom, and righteousness, and sanctification, and redemption: \nThat, according as it is written, He that glorieth, let him glory in the Lord. \nAnd I, brethren, when I came to you, came not with excellency of speech or of wisdom, declaring unto you the testimony of God. \nFor I determined not to know any thing among you, save Jesus Christ, and him crucified. \nAnd I was with you in weakness, and in fear, and in much trembling. \nAnd my speech and my preaching was not with enticing words of man's wisdom, but in demonstration of the Spirit and of power: \nThat your faith should not stand in the wisdom of men, but in the power of God. \nHowbeit we speak wisdom among them that are perfect: yet not the wisdom of this world, nor of the princes of this world, that come to nought: \nBut we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory: \nWhich none of the princes of this world knew: for had they known it, they would not have crucified the Lord of glory. \nBut as it is written, Eye hath not seen, nor ear heard, neither have entered into the heart of man, the things which God hath prepared for them that love him. \nBut God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God. \nFor what man knoweth the things of a man, save the spirit of man which is in him? even so the things of God knoweth no man, but the Spirit of God. \nNow we have received, not the spirit of the world, but the spirit which is of God; that we might know the things that are freely given to us of God. \nWhich things also we speak, not in the words which man's wisdom teacheth, but which the Holy Ghost teacheth; comparing spiritual things with spiritual. \nBut the natural man receiveth not the things of the Spirit of God: for they are foolishness unto him: neither can he know them, because they are spiritually discerned. \nBut he that is spiritual judgeth all things, yet he himself is judged of no man. \nFor who hath known the mind of the Lord, that he may instruct him? but we have the mind of Christ. \nAnd I, brethren, could not speak unto you as unto spiritual, but as unto carnal, even as unto babes in Christ. \nI have fed you with milk, and not with meat: for hitherto ye were not able to bear it, neither yet now are ye able. \nFor ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men? \nFor while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal? \nWho then is Paul, and who is Apollos, but ministers by whom ye believed, even as the Lord gave to every man? \nI have planted, Apollos watered; but God gave the increase. \nSo then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase. \nNow he that planteth and he that watereth are one: and every man shall receive his own reward according to his own labour. \nFor we are labourers together with God: ye are God's husbandry, ye are God's building. \nAccording to the grace of God which is given unto me, as a wise masterbuilder, I have laid the foundation, and another buildeth thereon. But let every man take heed how he buildeth thereupon. \nFor other foundation can no man lay than that is laid, which is Jesus Christ. \nNow if any man build upon this foundation gold, silver, precious stones, wood, hay, stubble; \nEvery man's work shall be made manifest: for the day shall declare it, because it shall be revealed by fire; and the fire shall try every man's work of what sort it is. \nIf any man's work abide which he hath built thereupon, he shall receive a reward. \nIf any man's work shall be burned, he shall suffer loss: but he himself shall be saved; yet so as by fire. \nKnow ye not that ye are the temple of God, and that the Spirit of God dwelleth in you? \nIf any man defile the temple of God, him shall God destroy; for the temple of God is holy, which temple ye are. \nLet no man deceive himself. If any man among you seemeth to be wise in this world, let him become a fool, that he may be wise. \nFor the wisdom of this world is foolishness with God. For it is written, He taketh the wise in their own craftiness. \nAnd again, The Lord knoweth the thoughts of the wise, that they are vain. \nTherefore let no man glory in men. For all things are your's; \nWhether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come; all are your's; \nAnd ye are Christ's; and Christ is God's. \nLet a man so account of us, as of the ministers of Christ, and stewards of the mysteries of God. \nMoreover it is required in stewards, that a man be found faithful. \nBut with me it is a very small thing that I should be judged of you, or of man's judgment: yea, I judge not mine own self. \nFor I know nothing by myself; yet am I not hereby justified: but he that judgeth me is the Lord. \nTherefore judge nothing before the time, until the Lord come, who both will bring to light the hidden things of darkness, and will make manifest the counsels of the hearts: and then shall every man have praise of God. \nAnd these things, brethren, I have in a figure transferred to myself and to Apollos for your sakes; that ye might learn in us not to think of men above that which is written, that no one of you be puffed up for one against another. \nFor who maketh thee to differ from another? and what hast thou that thou didst not receive? now if thou didst receive it, why dost thou glory, as if thou hadst not received it? \nNow ye are full, now ye are rich, ye have reigned as kings without us: and I would to God ye did reign, that we also might reign with you. \nFor I think that God hath set forth us the apostles last, as it were appointed to death: for we are made a spectacle unto the world, and to angels, and to men. \nWe are fools for Christ's sake, but ye are wise in Christ; we are weak, but ye are strong; ye are honourable, but we are despised. \nEven unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace; \nAnd labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it: \nBeing defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day. \nI write not these things to shame you, but as my beloved sons I warn you. \nFor though ye have ten thousand instructers in Christ, yet have ye not many fathers: for in Christ Jesus I have begotten you through the gospel. \nWherefore I beseech you, be ye followers of me. \nFor this cause have I sent unto you Timotheus, who is my beloved son, and faithful in the Lord, who shall bring you into remembrance of my ways which be in Christ, as I teach every where in every church. \nNow some are puffed up, as though I would not come to you. \nBut I will come to you shortly, if the Lord will, and will know, not the speech of them which are puffed up, but the power. \nFor the kingdom of God is not in word, but in power. \nWhat will ye? shall I come unto you with a rod, or in love, and in the spirit of meekness? \nIt is reported commonly that there is fornication among you, and such fornication as is not so much as named among the Gentiles, that one should have his father's wife. \nAnd ye are puffed up, and have not rather mourned, that he that hath done this deed might be taken away from among you. \nFor I verily, as absent in body, but present in spirit, have judged already, as though I were present, concerning him that hath so done this deed, \nIn the name of our Lord Jesus Christ, when ye are gathered together, and my spirit, with the power of our Lord Jesus Christ, \nTo deliver such an one unto Satan for the destruction of the flesh, that the spirit may be saved in the day of the Lord Jesus. \nYour glorying is not good. Know ye not that a little leaven leaveneth the whole lump? \nPurge out therefore the old leaven, that ye may be a new lump, as ye are unleavened. For even Christ our passover is sacrificed for us: \nTherefore let us keep the feast, not with old leaven, neither with the leaven of malice and wickedness; but with the unleavened bread of sincerity and truth. \nI wrote unto you in an epistle not to company with fornicators: \nYet not altogether with the fornicators of this world, or with the covetous, or extortioners, or with idolaters; for then must ye needs go out of the world. \nBut now I have written unto you not to keep company, if any man that is called a brother be a fornicator, or covetous, or an idolator, or a railer, or a drunkard, or an extortioner; with such an one no not to eat. \nFor what have I to do to judge them also that are without? do not ye judge them that are within? \nBut them that are without God judgeth. Therefore put away from among yourselves that wicked person. \nDare any of you, having a matter against another, go to law before the unjust, and not before the saints? \nDo ye not know that the saints shall judge the world? and if the world shall be judged by you, are ye unworthy to judge the smallest matters? \nKnow ye not that we shall judge angels? how much more things that pertain to this life? \nIf then ye have judgments of things pertaining to this life, set them to judge who are least esteemed in the church. \nI speak to your shame. Is it so, that there is not a wise man among you? no, not one that shall be able to judge between his brethren? \nBut brother goeth to law with brother, and that before the unbelievers. \nNow therefore there is utterly a fault among you, because ye go to law one with another. Why do ye not rather take wrong? why do ye not rather suffer yourselves to be defrauded? \nNay, ye do wrong, and defraud, and that your brethren. \nKnow ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with mankind, \nNor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God. \nAnd such were some of you: but ye are washed, but ye are sanctified, but ye are justified in the name of the Lord Jesus, and by the Spirit of our God. \nAll things are lawful unto me, but all things are not expedient: all things are lawful for me, but I will not be brought under the power of any. \nMeats for the belly, and the belly for meats: but God shall destroy both it and them. Now the body is not for fornication, but for the Lord; and the Lord for the body. \nAnd God hath both raised up the Lord, and will also raise up us by his own power. \nKnow ye not that your bodies are the members of Christ? shall I then take the members of Christ, and make them the members of an harlot? God forbid. \nWhat? know ye not that he which is joined to an harlot is one body? for two, saith he, shall be one flesh. \nBut he that is joined unto the Lord is one spirit. \nFlee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body. \nWhat? know ye not that your body is the temple of the Holy Ghost which is in you, which ye have of God, and ye are not your own? \nFor ye are bought with a price: therefore glorify God in your body, and in your spirit, which are God's. \nNow concerning the things whereof ye wrote unto me: It is good for a man not to touch a woman. \nNevertheless, to avoid fornication, let every man have his own wife, and let every woman have her own husband. \nLet the husband render unto the wife due benevolence: and likewise also the wife unto the husband. \nThe wife hath not power of her own body, but the husband: and likewise also the husband hath not power of his own body, but the wife. \nDefraud ye not one the other, except it be with consent for a time, that ye may give yourselves to fasting and prayer; and come together again, that Satan tempt you not for your incontinency. \nBut I speak this by permission, and not of commandment. \nFor I would that all men were even as I myself. But every man hath his proper gift of God, one after this manner, and another after that. \nI say therefore to the unmarried and widows, it is good for them if they abide even as I. \nBut if they cannot contain, let them marry: for it is better to marry than to burn. \nAnd unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband: \nBut and if she depart, let her remain unmarried or be reconciled to her husband: and let not the husband put away his wife. \nBut to the rest speak I, not the Lord: If any brother hath a wife that believeth not, and she be pleased to dwell with him, let him not put her away. \nAnd the woman which hath an husband that believeth not, and if he be pleased to dwell with her, let her not leave him. \nFor the unbelieving husband is sanctified by the wife, and the unbelieving wife is sanctified by the husband: else were your children unclean; but now are they holy. \nBut if the unbelieving depart, let him depart. A brother or a sister is not under bondage in such cases: but God hath called us to peace. \nFor what knowest thou, O wife, whether thou shalt save thy husband? or how knowest thou, O man, whether thou shalt save thy wife? \nBut as God hath distributed to every man, as the Lord hath called every one, so let him walk. And so ordain I in all churches. \nIs any man called being circumcised? let him not become uncircumcised. Is any called in uncircumcision? let him not be circumcised. \nCircumcision is nothing, and uncircumcision is nothing, but the keeping of the commandments of God. \nLet every man abide in the same calling wherein he was called. \nArt thou called being a servant? care not for it: but if thou mayest be made free, use it rather. \nFor he that is called in the Lord, being a servant, is the Lord's freeman: likewise also he that is called, being free, is Christ's servant. \nYe are bought with a price; be not ye the servants of men. \nBrethren, let every man, wherein he is called, therein abide with God. \nNow concerning virgins I have no commandment of the Lord: yet I give my judgment, as one that hath obtained mercy of the Lord to be faithful. \nI suppose therefore that this is good for the present distress, I say, that it is good for a man so to be. \nArt thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife. \nBut and if thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Nevertheless such shall have trouble in the flesh: but I spare you. \nBut this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none; \nAnd they that weep, as though they wept not; and they that rejoice, as though they rejoiced not; and they that buy, as though they possessed not; \nAnd they that use this world, as not abusing it: for the fashion of this world passeth away. \nBut I would have you without carefulness. He that is unmarried careth for the things that belong to the Lord, how he may please the Lord: \nBut he that is married careth for the things that are of the world, how he may please his wife. \nThere is difference also between a wife and a virgin. The unmarried woman careth for the things of the Lord, that she may be holy both in body and in spirit: but she that is married careth for the things of the world, how she may please her husband. \nAnd this I speak for your own profit; not that I may cast a snare upon you, but for that which is comely, and that ye may attend upon the Lord without distraction. \nBut if any man think that he behaveth himself uncomely toward his virgin, if she pass the flower of her age, and need so require, let him do what he will, he sinneth not: let them marry. \nNevertheless he that standeth stedfast in his heart, having no necessity, but hath power over his own will, and hath so decreed in his heart that he will keep his virgin, doeth well. \nSo then he that giveth her in marriage doeth well; but he that giveth her not in marriage doeth better. \nThe wife is bound by the law as long as her husband liveth; but if her husband be dead, she is at liberty to be married to whom she will; only in the Lord. \nBut she is happier if she so abide, after my judgment: and I think also that I have the Spirit of God. \nNow as touching things offered unto idols, we know that we all have knowledge. Knowledge puffeth up, but charity edifieth. \nAnd if any man think that he knoweth any thing, he knoweth nothing yet as he ought to know. \nBut if any man love God, the same is known of him. \nAs concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is none other God but one. \nFor though there be that are called gods, whether in heaven or in earth, (as there be gods many, and lords many,) \nBut to us there is but one God, the Father, of whom are all things, and we in him; and one Lord Jesus Christ, by whom are all things, and we by him. \nHowbeit there is not in every man that knowledge: for some with conscience of the idol unto this hour eat it as a thing offered unto an idol; and their conscience being weak is defiled. \nBut meat commendeth us not to God: for neither, if we eat, are we the better; neither, if we eat not, are we the worse. \nBut take heed lest by any means this liberty of your's become a stumbling block to them that are weak. \nFor if any man see thee which hast knowledge sit at meat in the idol's temple, shall not the conscience of him which is weak be emboldened to eat those things which are offered to idols; \nAnd through thy knowledge shall the weak brother perish, for whom Christ died? \nBut when ye sin so against the brethren, and wound their weak conscience, ye sin against Christ. \nWherefore, if meat make my brother to offend, I will eat no flesh while the world standeth, lest I make my brother to offend. \nAm I am not an apostle? am I not free? have I not seen Jesus Christ our Lord? are not ye my work in the Lord? \nIf I be not an apostle unto others, yet doubtless I am to you: for the seal of mine apostleship are ye in the Lord. \nMine answer to them that do examine me is this, \nHave we not power to eat and to drink? \nHave we not power to lead about a sister, a wife, as well as other apostles, and as the brethren of the Lord, and Cephas? \nOr I only and Barnabas, have not we power to forbear working? \nWho goeth a warfare any time at his own charges? who planteth a vineyard, and eateth not of the fruit thereof? or who feedeth a flock, and eateth not of the milk of the flock? \nSay I these things as a man? or saith not the law the same also? \nFor it is written in the law of Moses, thou shalt not muzzle the mouth of the ox that treadeth out the corn. Doth God take care for oxen? \nOr saith he it altogether for our sakes? For our sakes, no doubt, this is written: that he that ploweth should plow in hope; and that he that thresheth in hope should be partaker of his hope. \nIf we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things? \nIf others be partakers of this power over you, are not we rather? Nevertheless we have not used this power; but suffer all things, lest we should hinder the gospel of Christ. \nDo ye not know that they which minister about holy things live of the things of the temple? and they which wait at the altar are partakers with the altar? \nEven so hath the Lord ordained that they which preach the gospel should live of the gospel. \nBut I have used none of these things: neither have I written these things, that it should be so done unto me: for it were better for me to die, than that any man should make my glorying void. \nFor though I preach the gospel, I have nothing to glory of: for necessity is laid upon me; yea, woe is unto me, if I preach not the gospel! \nFor if I do this thing willingly, I have a reward: but if against my will, a dispensation of the gospel is committed unto me. \nWhat is my reward then? Verily that, when I preach the gospel, I may make the gospel of Christ without charge, that I abuse not my power in the gospel. \nFor though I be free from all men, yet have I made myself servant unto all, that I might gain the more. \nAnd unto the Jews I became as a Jew, that I might gain the Jews; to them that are under the law, as under the law, that I might gain them that are under the law; \nTo them that are without law, as without law, (being not without law to God, but under the law to Christ,) that I might gain them that are without law. \nTo the weak became I as weak, that I might gain the weak: I am made all things to all men, that I might by all means save some. \nAnd this I do for the gospel's sake, that I might be partaker thereof with you. \nKnow ye not that they which run in a race run all, but one receiveth the prize? So run, that ye may obtain. \nAnd every man that striveth for the mastery is temperate in all things. Now they do it to obtain a corruptible crown; but we an incorruptible. \nI therefore so run, not as uncertainly; so fight I, not as one that beateth the air: \nBut I keep under my body, and bring it into subjection: lest that by any means, when I have preached to others, I myself should be a castaway. \nMoreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea; \nAnd were all baptized unto Moses in the cloud and in the sea; \nAnd did all eat the same spiritual meat; \nAnd did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ. \nBut with many of them God was not well pleased: for they were overthrown in the wilderness. \nNow these things were our examples, to the intent we should not lust after evil things, as they also lusted. \nNeither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play. \nNeither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand. \nNeither let us tempt Christ, as some of them also tempted, and were destroyed of serpents. \nNeither murmur ye, as some of them also murmured, and were destroyed of the destroyer. \nNow all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come. \nWherefore let him that thinketh he standeth take heed lest he fall. \nThere hath no temptation taken you but such as is common to man: but God is faithful, who will not suffer you to be tempted above that ye are able; but will with the temptation also make a way to escape, that ye may be able to bear it. \nWherefore, my dearly beloved, flee from idolatry. \nI speak as to wise men; judge ye what I say. \nThe cup of blessing which we bless, is it not the communion of the blood of Christ? The bread which we break, is it not the communion of the body of Christ? \nFor we being many are one bread, and one body: for we are all partakers of that one bread. \nBehold Israel after the flesh: are not they which eat of the sacrifices partakers of the altar? \nWhat say I then? that the idol is any thing, or that which is offered in sacrifice to idols is any thing? \nBut I say, that the things which the Gentiles sacrifice, they sacrifice to devils, and not to God: and I would not that ye should have fellowship with devils. \nYe cannot drink the cup of the Lord, and the cup of devils: ye cannot be partakers of the Lord's table, and of the table of devils. \nDo we provoke the Lord to jealousy? are we stronger than he? \nAll things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not. \nLet no man seek his own, but every man another's wealth. \nWhatsoever is sold in the shambles, that eat, asking no question for conscience sake: \nFor the earth is the Lord's, and the fulness thereof. \nIf any of them that believe not bid you to a feast, and ye be disposed to go; whatsoever is set before you, eat, asking no question for conscience sake. \nBut if any man say unto you, this is offered in sacrifice unto idols, eat not for his sake that shewed it, and for conscience sake: for the earth is the Lord's, and the fulness thereof: \nConscience, I say, not thine own, but of the other: for why is my liberty judged of another man's conscience? \nFor if I by grace be a partaker, why am I evil spoken of for that for which I give thanks? \nWhether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God. \nGive none offence, neither to the Jews, nor to the Gentiles, nor to the church of God: \nEven as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved. \nBe ye followers of me, even as I also am of Christ. \nNow I praise you, brethren, that ye remember me in all things, and keep the ordinances, as I delivered them to you. \nBut I would have you know, that the head of every man is Christ; and the head of the woman is the man; and the head of Christ is God. \nEvery man praying or prophesying, having his head covered, dishonoureth his head. \nBut every woman that prayeth or prophesieth with her head uncovered dishonoureth her head: for that is even all one as if she were shaven. \nFor if the woman be not covered, let her also be shorn: but if it be a shame for a woman to be shorn or shaven, let her be covered. \nFor a man indeed ought not to cover his head, forasmuch as he is the image and glory of God: but the woman is the glory of the man. \nFor the man is not of the woman: but the woman of the man. \nNeither was the man created for the woman; but the woman for the man. \nFor this cause ought the woman to have power on her head because of the angels. \nNevertheless neither is the man without the woman, neither the woman without the man, in the Lord. \nFor as the woman is of the man, even so is the man also by the woman; but all things of God. \nJudge in yourselves: is it comely that a woman pray unto God uncovered? \nDoth not even nature itself teach you, that, if a man have long hair, it is a shame unto him? \nBut if a woman have long hair, it is a glory to her: for her hair is given her for a covering. \nBut if any man seem to be contentious, we have no such custom, neither the churches of God. \nNow in this that I declare unto you I praise you not, that ye come together not for the better, but for the worse. \nFor first of all, when ye come together in the church, I hear that there be divisions among you; and I partly believe it. \nFor there must be also heresies among you, that they which are approved may be made manifest among you. \nWhen ye come together therefore into one place, this is not to eat the Lord's supper. \nFor in eating every one taketh before other his own supper: and one is hungry, and another is drunken. \nWhat? have ye not houses to eat and to drink in? or despise ye the church of God, and shame them that have not? what shall I say to you? shall I praise you in this? I praise you not. \nFor I have received of the Lord that which also I delivered unto you, that the Lord Jesus the same night in which he was betrayed took bread: \nAnd when he had given thanks, he brake it, and said, Take, eat: this is my body, which is broken for you: this do in remembrance of me. \nAfter the same manner also he took the cup, when he had supped, saying, this cup is the new testament in my blood: this do ye, as oft as ye drink it, in remembrance of me. \nFor as often as ye eat this bread, and drink this cup, ye do shew the Lord's death till he come. \nWherefore whosoever shall eat this bread, and drink this cup of the Lord, unworthily, shall be guilty of the body and blood of the Lord. \nBut let a man examine himself, and so let him eat of that bread, and drink of that cup. \nFor he that eateth and drinketh unworthily, eateth and drinketh damnation to himself, not discerning the Lord's body. \nFor this cause many are weak and sickly among you, and many sleep. \nFor if we would judge ourselves, we should not be judged. \nBut when we are judged, we are chastened of the Lord, that we should not be condemned with the world. \nWherefore, my brethren, when ye come together to eat, tarry one for another. \nAnd if any man hunger, let him eat at home; that ye come not together unto condemnation. And the rest will I set in order when I come. \nNow concerning spiritual gifts, brethren, I would not have you ignorant. \nYe know that ye were Gentiles, carried away unto these dumb idols, even as ye were led. \nWherefore I give you to understand, that no man speaking by the Spirit of God calleth Jesus accursed: and that no man can say that Jesus is the Lord, but by the Holy Ghost. \nNow there are diversities of gifts, but the same Spirit. \nAnd there are differences of administrations, but the same Lord. \nAnd there are diversities of operations, but it is the same God which worketh all in all. \nBut the manifestation of the Spirit is given to every man to profit withal. \nFor to one is given by the Spirit the word of wisdom; to another the word of knowledge by the same Spirit; \nTo another faith by the same Spirit; to another the gifts of healing by the same Spirit; \nTo another the working of miracles; to another prophecy; to another discerning of spirits; to another divers kinds of tongues; to another the interpretation of tongues: \nBut all these worketh that one and the selfsame Spirit, dividing to every man severally as he will. \nFor as the body is one, and hath many members, and all the members of that one body, being many, are one body: so also is Christ. \nFor by one Spirit are we all baptized into one body, whether we be Jews or Gentiles, whether we be bond or free; and have been all made to drink into one Spirit. \nFor the body is not one member, but many. \nIf the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body? \nAnd if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body? \nIf the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling? \nBut now hath God set the members every one of them in the body, as it hath pleased him. \nAnd if they were all one member, where were the body? \nBut now are they many members, yet but one body. \nAnd the eye cannot say unto the hand, I have no need of thee: nor again the head to the feet, I have no need of you. \nNay, much more those members of the body, which seem to be more feeble, are necessary: \nAnd those members of the body, which we think to be less honourable, upon these we bestow more abundant honour; and our uncomely parts have more abundant comeliness. \nFor our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked. \nThat there should be no schism in the body; but that the members should have the same care one for another. \nAnd whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it. \nNow ye are the body of Christ, and members in particular. \nAnd God hath set some in the church, first apostles, secondarily prophets, thirdly teachers, after that miracles, then gifts of healings, helps, governments, diversities of tongues. \nAre all apostles? are all prophets? are all teachers? are all workers of miracles? \nHave all the gifts of healing? do all speak with tongues? do all interpret? \nBut covet earnestly the best gifts: and yet shew I unto you a more excellent way. \nThough I speak with the tongues of men and of angels, and have not charity, I am become as sounding brass, or a tinkling cymbal. \nAnd though I have the gift of prophecy, and understand all mysteries, and all knowledge; and though I have all faith, so that I could remove mountains, and have not charity, I am nothing. \nAnd though I bestow all my goods to feed the poor, and though I give my body to be burned, and have not charity, it profiteth me nothing. \nCharity suffereth long, and is kind; charity envieth not; charity vaunteth not itself, is not puffed up, \nDoth not behave itself unseemly, seeketh not her own, is not easily provoked, thinketh no evil; \nRejoiceth not in iniquity, but rejoiceth in the truth; \nBeareth all things, believeth all things, hopeth all things, endureth all things. \nCharity never faileth: but whether there be prophecies, they shall fail; whether there be tongues, they shall cease; whether there be knowledge, it shall vanish away. \nFor we know in part, and we prophesy in part. \nBut when that which is perfect is come, then that which is in part shall be done away. \nWhen I was a child, I spake as a child, I understood as a child, I thought as a child: but when I became a man, I put away childish things. \nFor now we see through a glass, darkly; but then face to face: now I know in part; but then shall I know even as also I am known. \nAnd now abideth faith, hope, charity, these three; but the greatest of these is charity. \nFollow after charity, and desire spiritual gifts, but rather that ye may prophesy. \nFor he that speaketh in an unknown tongue speaketh not unto men, but unto God: for no man understandeth him; howbeit in the spirit he speaketh mysteries. \nBut he that prophesieth speaketh unto men to edification, and exhortation, and comfort. \nHe that speaketh in an unknown tongue edifieth himself; but he that prophesieth edifieth the church. \nI would that ye all spake with tongues but rather that ye prophesied: for greater is he that prophesieth than he that speaketh with tongues, except he interpret, that the church may receive edifying. \nNow, brethren, if I come unto you speaking with tongues, what shall I profit you, except I shall speak to you either by revelation, or by knowledge, or by prophesying, or by doctrine? \nAnd even things without life giving sound, whether pipe or harp, except they give a distinction in the sounds, how shall it be known what is piped or harped? \nFor if the trumpet give an uncertain sound, who shall prepare himself to the battle? \nSo likewise ye, except ye utter by the tongue words easy to be understood, how shall it be known what is spoken? for ye shall speak into the air. \nThere are, it may be, so many kinds of voices in the world, and none of them is without signification. \nTherefore if I know not the meaning of the voice, I shall be unto him that speaketh a barbarian, and he that speaketh shall be a barbarian unto me. \nEven so ye, forasmuch as ye are zealous of spiritual gifts, seek that ye may excel to the edifying of the church. \nWherefore let him that speaketh in an unknown tongue pray that he may interpret. \nFor if I pray in an unknown tongue, my spirit prayeth, but my understanding is unfruitful. \nWhat is it then? I will pray with the spirit, and I will pray with the understanding also: I will sing with the spirit, and I will sing with the understanding also. \nElse when thou shalt bless with the spirit, how shall he that occupieth the room of the unlearned say Amen at thy giving of thanks, seeing he understandeth not what thou sayest? \nFor thou verily givest thanks well, but the other is not edified. \nI thank my God, I speak with tongues more than ye all: \nYet in the church I had rather speak five words with my understanding, that by my voice I might teach others also, than ten thousand words in an unknown tongue. \nBrethren, be not children in understanding: howbeit in malice be ye children, but in understanding be men. \nIn the law it is written, With men of other tongues and other lips will I speak unto this people; and yet for all that will they not hear me, saith the Lord. \nWherefore tongues are for a sign, not to them that believe, but to them that believe not: but prophesying serveth not for them that believe not, but for them which believe. \nIf therefore the whole church be come together into one place, and all speak with tongues, and there come in those that are unlearned, or unbelievers, will they not say that ye are mad? \nBut if all prophesy, and there come in one that believeth not, or one unlearned, he is convinced of all, he is judged of all: \nAnd thus are the secrets of his heart made manifest; and so falling down on his face he will worship God, and report that God is in you of a truth. \nHow is it then, brethren? when ye come together, every one of you hath a psalm, hath a doctrine, hath a tongue, hath a revelation, hath an interpretation. Let all things be done unto edifying. \nIf any man speak in an unknown tongue, let it be by two, or at the most by three, and that by course; and let one interpret. \nBut if there be no interpreter, let him keep silence in the church; and let him speak to himself, and to God. \nLet the prophets speak two or three, and let the other judge. \nIf any thing be revealed to another that sitteth by, let the first hold his peace. \nFor ye may all prophesy one by one, that all may learn, and all may be comforted. \nAnd the spirits of the prophets are subject to the prophets. \nFor God is not the author of confusion, but of peace, as in all churches of the saints. \nLet your women keep silence in the churches: for it is not permitted unto them to speak; but they are commanded to be under obedience as also saith the law. \nAnd if they will learn any thing, let them ask their husbands at home: for it is a shame for women to speak in the church. \nWhat? came the word of God out from you? or came it unto you only? \nIf any man think himself to be a prophet, or spiritual, let him acknowledge that the things that I write unto you are the commandments of the Lord. \nBut if any man be ignorant, let him be ignorant. \nWherefore, brethren, covet to prophesy, and forbid not to speak with tongues. \nLet all things be done decently and in order. \nMoreover, brethren, I declare unto you the gospel which I preached unto you, which also ye have received, and wherein ye stand; \nBy which also ye are saved, if ye keep in memory what I preached unto you, unless ye have believed in vain. \nFor I delivered unto you first of all that which I also received, how that Christ died for our sins according to the scriptures; \nAnd that he was buried, and that he rose again the third day according to the scriptures: \nAnd that he was seen of Cephas, then of the twelve: \nAfter that, he was seen of above five hundred brethren at once; of whom the greater part remain unto this present, but some are fallen asleep. \nAfter that, he was seen of James; then of all the apostles. \nAnd last of all he was seen of me also, as of one born out of due time. \nFor I am the least of the apostles, that am not meet to be called an apostle, because I persecuted the church of God. \nBut by the grace of God I am what I am: and his grace which was bestowed upon me was not in vain; but I laboured more abundantly than they all: yet not I, but the grace of God which was with me. \nTherefore whether it were I or they, so we preach, and so ye believed. \nNow if Christ be preached that he rose from the dead, how say some among you that there is no resurrection of the dead? \nBut if there be no resurrection of the dead, then is Christ not risen: \nAnd if Christ be not risen, then is our preaching vain, and your faith is also vain. \nYea, and we are found false witnesses of God; because we have testified of God that he raised up Christ: whom he raised not up, if so be that the dead rise not. \nFor if the dead rise not, then is not Christ raised: \nAnd if Christ be not raised, your faith is vain; ye are yet in your sins. \nThen they also which are fallen asleep in Christ are perished. \nIf in this life only we have hope in Christ, we are of all men most miserable. \nBut now is Christ risen from the dead, and become the firstfruits of them that slept. \nFor since by man came death, by man came also the resurrection of the dead. \nFor as in Adam all die, even so in Christ shall all be made alive. \nBut every man in his own order: Christ the firstfruits; afterward they that are Christ's at his coming. \nThen cometh the end, when he shall have delivered up the kingdom to God, even the Father; when he shall have put down all rule and all authority and power. \nFor he must reign, till he hath put all enemies under his feet. \nThe last enemy that shall be destroyed is death. \nFor he hath put all things under his feet. But when he saith all things are put under him, it is manifest that he is excepted, which did put all things under him. \nAnd when all things shall be subdued unto him, then shall the Son also himself be subject unto him that put all things under him, that God may be all in all. \nElse what shall they do which are baptized for the dead, if the dead rise not at all? why are they then baptized for the dead? \nAnd why stand we in jeopardy every hour? \nI protest by your rejoicing which I have in Christ Jesus our Lord, I die daily. \nIf after the manner of men I have fought with beasts at Ephesus, what advantageth it me, if the dead rise not? let us eat and drink; for to morrow we die. \nBe not deceived: evil communications corrupt good manners. \nAwake to righteousness, and sin not; for some have not the knowledge of God: I speak this to your shame. \nBut some man will say, How are the dead raised up? and with what body do they come? \nThou fool, that which thou sowest is not quickened, except it die: \nAnd that which thou sowest, thou sowest not that body that shall be, but bare grain, it may chance of wheat, or of some other grain: \nBut God giveth it a body as it hath pleased him, and to every seed his own body. \nAll flesh is not the same flesh: but there is one kind of flesh of men, another flesh of beasts, another of fishes, and another of birds. \nThere are also celestial bodies, and bodies terrestrial: but the glory of the celestial is one, and the glory of the terrestrial is another. \nThere is one glory of the sun, and another glory of the moon, and another glory of the stars: for one star differeth from another star in glory. \nSo also is the resurrection of the dead. It is sown in corruption; it is raised in incorruption: \nIt is sown in dishonour; it is raised in glory: it is sown in weakness; it is raised in power: \nIt is sown a natural body; it is raised a spiritual body. There is a natural body, and there is a spiritual body. \nAnd so it is written, The first man Adam was made a living soul; the last Adam was made a quickening spirit. \nHowbeit that was not first which is spiritual, but that which is natural; and afterward that which is spiritual. \nThe first man is of the earth, earthy; the second man is the Lord from heaven. \nAs is the earthy, such are they also that are earthy: and as is the heavenly, such are they also that are heavenly. \nAnd as we have borne the image of the earthy, we shall also bear the image of the heavenly. \nNow this I say, brethren, that flesh and blood cannot inherit the kingdom of God; neither doth corruption inherit incorruption. \nBehold, I shew you a mystery; We shall not all sleep, but we shall all be changed, \nIn a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed. \nFor this corruptible must put on incorruption, and this mortal must put on immortality. \nSo when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written, Death is swallowed up in victory. \nO death, where is thy sting? O grave, where is thy victory? \nThe sting of death is sin; and the strength of sin is the law. \nBut thanks be to God, which giveth us the victory through our Lord Jesus Christ. \nTherefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord. \nNow concerning the collection for the saints, as I have given order to the churches of Galatia, even so do ye. \nUpon the first day of the week let every one of you lay by him in store, as God hath prospered him, that there be no gatherings when I come. \nAnd when I come, whomsoever ye shall approve by your letters, them will I send to bring your liberality unto Jerusalem. \nAnd if it be meet that I go also, they shall go with me. \nNow I will come unto you, when I shall pass through Macedonia: for I do pass through Macedonia. \nAnd it may be that I will abide, yea, and winter with you, that ye may bring me on my journey whithersoever I go. \nFor I will not see you now by the way; but I trust to tarry a while with you, if the Lord permit. \nBut I will tarry at Ephesus until Pentecost. \nFor a great door and effectual is opened unto me, and there are many adversaries. \nNow if Timotheus come, see that he may be with you without fear: for he worketh the work of the Lord, as I also do. \nLet no man therefore despise him: but conduct him forth in peace, that he may come unto me: for I look for him with the brethren. \nAs touching our brother Apollos, I greatly desired him to come unto you with the brethren: but his will was not at all to come at this time; but he will come when he shall have convenient time. \nWatch ye, stand fast in the faith, quit you like men, be strong. \nLet all your things be done with charity. \nI beseech you, brethren, (ye know the house of Stephanas, that it is the firstfruits of Achaia, and that they have addicted themselves to the ministry of the saints,) \nThat ye submit yourselves unto such, and to every one that helpeth with us, and laboureth. \nI am glad of the coming of Stephanas and Fortunatus and Achaicus: for that which was lacking on your part they have supplied. \nFor they have refreshed my spirit and your's: therefore acknowledge ye them that are such. \nThe churches of Asia salute you. Aquila and Priscilla salute you much in the Lord, with the church that is in their house. \nAll the brethren greet you. Greet ye one another with an holy kiss. \nThe salutation of me Paul with mine own hand. \nIf any man love not the Lord Jesus Christ, let him be Anathema Maranatha. \nThe grace of our Lord Jesus Christ be with you. \nMy love be with you all in Christ Jesus. Amen. \nPaul, an apostle of Jesus Christ by the will of God, and Timothy our brother, unto the church of God which is at Corinth, with all the saints which are in all Achaia: \nGrace be to you and peace from God our Father, and from the Lord Jesus Christ. \nBlessed be God, even the Father of our Lord Jesus Christ, the Father of mercies, and the God of all comfort; \nWho comforteth us in all our tribulation, that we may be able to comfort them which are in any trouble, by the comfort wherewith we ourselves are comforted of God. \nFor as the sufferings of Christ abound in us, so our consolation also aboundeth by Christ. \nAnd whether we be afflicted, it is for your consolation and salvation, which is effectual in the enduring of the same sufferings which we also suffer: or whether we be comforted, it is for your consolation and salvation. \nAnd our hope of you is stedfast, knowing, that as ye are partakers of the sufferings, so shall ye be also of the consolation. \nFor we would not, brethren, have you ignorant of our trouble which came to us in Asia, that we were pressed out of measure, above strength, insomuch that we despaired even of life: \nBut we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead: \nWho delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us; \nYe also helping together by prayer for us, that for the gift bestowed upon us by the means of many persons thanks may be given by many on our behalf. \nFor our rejoicing is this, the testimony of our conscience, that in simplicity and godly sincerity, not with fleshly wisdom, but by the grace of God, we have had our conversation in the world, and more abundantly to you-ward. \nFor we write none other things unto you, that what ye read or acknowledge; and I trust ye shall acknowledge even to the end; \nAs also ye have acknowledged us in part, that we are your rejoicing, even as ye also are our's in the day of the Lord Jesus. \nAnd in this confidence I was minded to come unto you before, that ye might have a second benefit; \nAnd to pass by you into Macedonia, and to come again out of Macedonia unto you, and of you to be brought on my way toward Judaea. \nWhen I therefore was thus minded, did I use lightness? or the things that I purpose, do I purpose according to the flesh, that with me there should be yea yea, and nay nay? \nBut as God is true, our word toward you was not yea and nay. \nFor the Son of God, Jesus Christ, who was preached among you by us, even by me and Silvanus and Timotheus, was not yea and nay, but in him was yea. \nFor all the promises of God in him are yea, and in him Amen, unto the glory of God by us. \nNow he which stablisheth us with you in Christ, and hath anointed us, is God; \nWho hath also sealed us, and given the earnest of the Spirit in our hearts. \nMoreover I call God for a record upon my soul, that to spare you I came not as yet unto Corinth. \nNot for that we have dominion over your faith, but are helpers of your joy: for by faith ye stand. \nBut I determined this with myself, that I would not come again to you in heaviness. \nFor if I make you sorry, who is he then that maketh me glad, but the same which is made sorry by me? \nAnd I wrote this same unto you, lest, when I came, I should have sorrow from them of whom I ought to rejoice; having confidence in you all, that my joy is the joy of you all. \nFor out of much affliction and anguish of heart I wrote unto you with many tears; not that ye should be grieved, but that ye might know the love which I have more abundantly unto you. \nBut if any have caused grief, he hath not grieved me, but in part: that I may not overcharge you all. \nSufficient to such a man is this punishment, which was inflicted of many. \nSo that contrariwise ye ought rather to forgive him, and comfort him, lest perhaps such a one should be swallowed up with overmuch sorrow. \nWherefore I beseech you that ye would confirm your love toward him. \nFor to this end also did I write, that I might know the proof of you, whether ye be obedient in all things. \nTo whom ye forgive any thing, I forgive also: for if I forgave any thing, to whom I forgave it, for your sakes forgave I it in the person of Christ; \nLest Satan should get an advantage of us: for we are not ignorant of his devices. \nFurthermore, when I came to Troas to preach Christ's gospel, and a door was opened unto me of the Lord, \nI had no rest in my spirit, because I found not Titus my brother: but taking my leave of them, I went from thence into Macedonia. \nNow thanks be unto God, which always causeth us to triumph in Christ, and maketh manifest the savour of his knowledge by us in every place. \nFor we are unto God a sweet savour of Christ, in them that are saved, and in them that perish: \nTo the one we are the savour of death unto death; and to the other the savour of life unto life. And who is sufficient for these things? \nFor we are not as many, which corrupt the word of God: but as of sincerity, but as of God, in the sight of God speak we in Christ. \nDo we begin again to commend ourselves? or need we, as some others, epistles of commendation to you, or letters of commendation from you? \nYe are our epistle written in our hearts, known and read of all men: \nForasmuch as ye are manifestly declared to be the epistle of Christ ministered by us, written not with ink, but with the Spirit of the living God; not in tables of stone, but in fleshy tables of the heart. \nAnd such trust have we through Christ to God-ward: \nNot that we are sufficient of ourselves to think any thing as of ourselves; but our sufficiency is of God; \nWho also hath made us able ministers of the new testament; not of the letter, but of the spirit: for the letter killeth, but the spirit giveth life. \nBut if the ministration of death, written and engraven in stones, was glorious, so that the children of Israel could not stedfastly behold the face of Moses for the glory of his countenance; which glory was to be done away: \nHow shall not the ministration of the spirit be rather glorious? \nFor if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory. \nFor even that which was made glorious had no glory in this respect, by reason of the glory that excelleth. \nFor if that which is done away was glorious, much more that which remaineth is glorious. \nSeeing then that we have such hope, we use great plainness of speech: \nAnd not as Moses, which put a vail over his face, that the children of Israel could not stedfastly look to the end of that which is abolished: \nBut their minds were blinded: for until this day remaineth the same vail untaken away in the reading of the old testament; which vail is done away in Christ. \nBut even unto this day, when Moses is read, the vail is upon their heart. \nNevertheless when it shall turn to the Lord, the vail shall be taken away. \nNow the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty. \nBut we all, with open face beholding as in a glass the glory of the Lord, are changed into the same image from glory to glory, even as by the Spirit of the Lord. \nTherefore seeing we have this ministry, as we have received mercy, we faint not; \nBut have renounced the hidden things of dishonesty, not walking in craftiness, nor handling the word of God deceitfully; but by manifestation of the truth commending ourselves to every man's conscience in the sight of God. \nBut if our gospel be hid, it is hid to them that are lost: \nIn whom the god of this world hath blinded the minds of them which believe not, lest the light of the glorious gospel of Christ, who is the image of God, should shine unto them. \nFor we preach not ourselves, but Christ Jesus the Lord; and ourselves your servants for Jesus' sake. \nFor God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ. \nBut we have this treasure in earthen vessels, that the excellency of the power may be of God, and not of us. \nWe are troubled on every side, yet not distressed; we are perplexed, but not in despair; \nPersecuted, but not forsaken; cast down, but not destroyed; \nAlways bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. \nFor we which live are alway delivered unto death for Jesus' sake, that the life also of Jesus might be made manifest in our mortal flesh. \nSo then death worketh in us, but life in you. \nWe having the same spirit of faith, according as it is written, I believed, and therefore have I spoken; we also believe, and therefore speak; \nKnowing that he which raised up the Lord Jesus shall raise up us also by Jesus, and shall present us with you. \nFor all things are for your sakes, that the abundant grace might through the thanksgiving of many redound to the glory of God. \nFor which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day. \nFor our light affliction, which is but for a moment, worketh for us a far more exceeding and eternal weight of glory; \nWhile we look not at the things which are seen, but at the things which are not seen: for the things which are seen are temporal; but the things which are not seen are eternal. \nFor we know that if our earthly house of this tabernacle were dissolved, we have a building of God, an house not made with hands, eternal in the heavens. \nFor in this we groan, earnestly desiring to be clothed upon with our house which is from heaven: \nIf so be that being clothed we shall not be found naked. \nFor we that are in this tabernacle do groan, being burdened: not for that we would be unclothed, but clothed upon, that mortality might be swallowed up of life. \nNow he that hath wrought us for the selfsame thing is God, who also hath given unto us the earnest of the Spirit. \nTherefore we are always confident, knowing that, whilst we are at home in the body, we are absent from the Lord: \n(For we walk by faith, not by sight:) \nWe are confident, I say, and willing rather to be absent from the body, and to be present with the Lord. \nWherefore we labour, that, whether present or absent, we may be accepted of him. \nFor we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad. \nKnowing therefore the terror of the Lord, we persuade men; but we are made manifest unto God; and I trust also are made manifest in your consciences. \nFor we commend not ourselves again unto you, but give you occasion to glory on our behalf, that ye may have somewhat to answer them which glory in appearance, and not in heart. \nFor whether we be beside ourselves, it is to God: or whether we be sober, it is for your cause. \nFor the love of Christ constraineth us; because we thus judge, that if one died for all, then were all dead: \nAnd that he died for all, that they which live should not henceforth live unto themselves, but unto him which died for them, and rose again. \nWherefore henceforth know we no man after the flesh: yea, though we have known Christ after the flesh, yet now henceforth know we him no more. \nTherefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new. \nAnd all things are of God, who hath reconciled us to himself by Jesus Christ, and hath given to us the ministry of reconciliation; \nTo wit, that God was in Christ, reconciling the world unto himself, not imputing their trespasses unto them; and hath committed unto us the word of reconciliation. \nNow then we are ambassadors for Christ, as though God did beseech you by us: we pray you in Christ's stead, be ye reconciled to God. \nFor he hath made him to be sin for us, who knew no sin; that we might be made the righteousness of God in him. \nWe then, as workers together with him, beseech you also that ye receive not the grace of God in vain. \n(For he saith, I have heard thee in a time accepted, and in the day of salvation have I succoured thee: behold, now is the accepted time; behold, now is the day of salvation.) \nGiving no offence in any thing, that the ministry be not blamed: \nBut in all things approving ourselves as the ministers of God, in much patience, in afflictions, in necessities, in distresses, \nIn stripes, in imprisonments, in tumults, in labours, in watchings, in fastings; \nBy pureness, by knowledge, by long suffering, by kindness, by the Holy Ghost, by love unfeigned, \nBy the word of truth, by the power of God, by the armour of righteousness on the right hand and on the left, \nBy honour and dishonour, by evil report and good report: as deceivers, and yet true; \nAs unknown, and yet well known; as dying, and, behold, we live; as chastened, and not killed; \nAs sorrowful, yet alway rejoicing; as poor, yet making many rich; as having nothing, and yet possessing all things. \nO ye Corinthians, our mouth is open unto you, our heart is enlarged. \nYe are not straitened in us, but ye are straitened in your own bowels. \nNow for a recompence in the same, (I speak as unto my children,) be ye also enlarged. \nBe ye not unequally yoked together with unbelievers: for what fellowship hath righteousness with unrighteousness? and what communion hath light with darkness? \nAnd what concord hath Christ with Belial? or what part hath he that believeth with an infidel? \nAnd what agreement hath the temple of God with idols? for ye are the temple of the living God; as God hath said, I will dwell in them, and walk in them; and I will be their God, and they shall be my people. \nWherefore come out from among them, and be ye separate, saith the Lord, and touch not the unclean thing; and I will receive you. \nAnd will be a Father unto you, and ye shall be my sons and daughters, saith the Lord Almighty. \nHaving therefore these promises, dearly beloved, let us cleanse ourselves from all filthiness of the flesh and spirit, perfecting holiness in the fear of God. \nReceive us; we have wronged no man, we have corrupted no man, we have defrauded no man. \nI speak not this to condemn you: for I have said before, that ye are in our hearts to die and live with you. \nGreat is my boldness of speech toward you, great is my glorying of you: I am filled with comfort, I am exceeding joyful in all our tribulation. \nFor, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears. \nNevertheless God, that comforteth those that are cast down, comforted us by the coming of Titus; \nAnd not by his coming only, but by the consolation wherewith he was comforted in you, when he told us your earnest desire, your mourning, your fervent mind toward me; so that I rejoiced the more. \nFor though I made you sorry with a letter, I do not repent, though I did repent: for I perceive that the same epistle hath made you sorry, though it were but for a season. \nNow I rejoice, not that ye were made sorry, but that ye sorrowed to repentance: for ye were made sorry after a godly manner, that ye might receive damage by us in nothing. \nFor godly sorrow worketh repentance to salvation not to be repented of: but the sorrow of the world worketh death. \nFor behold this selfsame thing, that ye sorrowed after a godly sort, what carefulness it wrought in you, yea, what clearing of yourselves, yea, what indignation, yea, what fear, yea, what vehement desire, yea, what zeal, yea, what revenge! In all things ye have approved yourselves to be clear in this matter. \nWherefore, though I wrote unto you, I did it not for his cause that had done the wrong, nor for his cause that suffered wrong, but that our care for you in the sight of God might appear unto you. \nTherefore we were comforted in your comfort: yea, and exceedingly the more joyed we for the joy of Titus, because his spirit was refreshed by you all. \nFor if I have boasted any thing to him of you, I am not ashamed; but as we spake all things to you in truth, even so our boasting, which I made before Titus, is found a truth. \nAnd his inward affection is more abundant toward you, whilst he remembereth the obedience of you all, how with fear and trembling ye received him. \nI rejoice therefore that I have confidence in you in all things. \nMoreover, brethren, we do you to wit of the grace of God bestowed on the churches of Macedonia; \nHow that in a great trial of affliction the abundance of their joy and their deep poverty abounded unto the riches of their liberality. \nFor to their power, I bear record, yea, and beyond their power they were willing of themselves; \nPraying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints. \nAnd this they did, not as we hoped, but first gave their own selves to the Lord, and unto us by the will of God. \nInsomuch that we desired Titus, that as he had begun, so he would also finish in you the same grace also. \nTherefore, as ye abound in every thing, in faith, and utterance, and knowledge, and in all diligence, and in your love to us, see that ye abound in this grace also. \nI speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love. \nFor ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich. \nAnd herein I give my advice: for this is expedient for you, who have begun before, not only to do, but also to be forward a year ago. \nNow therefore perform the doing of it; that as there was a readiness to will, so there may be a performance also out of that which ye have. \nFor it there be first a willing mind, it is accepted according to that a man hath, and not according to that he hath not. \nFor I mean not that other men be eased, and ye burdened: \nBut by an equality, that now at this time your abundance may be a supply for their want, that their abundance also may be a supply for your want: that there may be equality: \nAs it is written, He that had gathered much had nothing over; and he that had gathered little had no lack. \nBut thanks be to God, which put the same earnest care into the heart of Titus for you. \nFor indeed he accepted the exhortation; but being more forward, of his own accord he went unto you. \nAnd we have sent with him the brother, whose praise is in the gospel throughout all the churches; \nAnd not that only, but who was also chosen of the churches to travel with us with this grace, which is administered by us to the glory of the same Lord, and declaration of your ready mind: \nAvoiding this, that no man should blame us in this abundance which is administered by us: \nProviding for honest things, not only in the sight of the Lord, but also in the sight of men. \nAnd we have sent with them our brother, whom we have oftentimes proved diligent in many things, but now much more diligent, upon the great confidence which I have in you. \nWhether any do enquire of Titus, he is my partner and fellowhelper concerning you: or our brethren be enquired of, they are the messengers of the churches, and the glory of Christ. \nWherefore shew ye to them, and before the churches, the proof of your love, and of our boasting on your behalf. \nFor as touching the ministering to the saints, it is superfluous for me to write to you: \nFor I know the forwardness of your mind, for which I boast of you to them of Macedonia, that Achaia was ready a year ago; and your zeal hath provoked very many. \nYet have I sent the brethren, lest our boasting of you should be in vain in this behalf; that, as I said, ye may be ready: \nLest haply if they of Macedonia come with me, and find you unprepared, we (that we say not, ye) should be ashamed in this same confident boasting. \nTherefore I thought it necessary to exhort the brethren, that they would go before unto you, and make up beforehand your bounty, whereof ye had notice before, that the same might be ready, as a matter of bounty, and not as of covetousness. \nBut this I say, He which soweth sparingly shall reap also sparingly; and he which soweth bountifully shall reap also bountifully. \nEvery man according as he purposeth in his heart, so let him give; not grudgingly, or of necessity: for God loveth a cheerful giver. \nAnd God is able to make all grace abound toward you; that ye, always having all sufficiency in all things, may abound to every good work: \n(As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever. \nNow he that ministereth seed to the sower both minister bread for your food, and multiply your seed sown, and increase the fruits of your righteousness;) \nBeing enriched in every thing to all bountifulness, which causeth through us thanksgiving to God. \nFor the administration of this service not only supplieth the want of the saints, but is abundant also by many thanksgivings unto God; \nWhiles by the experiment of this ministration they glorify God for your professed subjection unto the gospel of Christ, and for your liberal distribution unto them, and unto all men; \nAnd by their prayer for you, which long after you for the exceeding grace of God in you. \nThanks be unto God for his unspeakable gift. \nNow I Paul myself beseech you by the meekness and gentleness of Christ, who in presence am base among you, but being absent am bold toward you: \nBut I beseech you, that I may not be bold when I am present with that confidence, wherewith I think to be bold against some, which think of us as if we walked according to the flesh. \nFor though we walk in the flesh, we do not war after the flesh: \n(For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;) \nCasting down imaginations, and every high thing that exalteth itself against the knowledge of God, and bringing into captivity every thought to the obedience of Christ; \nAnd having in a readiness to revenge all disobedience, when your obedience is fulfilled. \nDo ye look on things after the outward appearance? if any man trust to himself that he is Christ's, let him of himself think this again, that, as he is Christ's, even so are we Christ's. \nFor though I should boast somewhat more of our authority, which the Lord hath given us for edification, and not for your destruction, I should not be ashamed: \nThat I may not seem as if I would terrify you by letters. \nFor his letters, say they, are weighty and powerful; but his bodily presence is weak, and his speech contemptible. \nLet such an one think this, that, such as we are in word by letters when we are absent, such will we be also in deed when we are present. \nFor we dare not make ourselves of the number, or compare ourselves with some that commend themselves: but they measuring themselves by themselves, and comparing themselves among themselves, are not wise. \nBut we will not boast of things without our measure, but according to the measure of the rule which God hath distributed to us, a measure to reach even unto you. \nFor we stretch not ourselves beyond our measure, as though we reached not unto you: for we are come as far as to you also in preaching the gospel of Christ: \nNot boasting of things without our measure, that is, of other men's labours; but having hope, when your faith is increased, that we shall be enlarged by you according to our rule abundantly, \nTo preach the gospel in the regions beyond you, and not to boast in another man's line of things made ready to our hand. \nBut he that glorieth, let him glory in the Lord. \nFor not he that commendeth himself is approved, but whom the Lord commendeth. \nWould to God ye could bear with me a little in my folly: and indeed bear with me. \nFor I am jealous over you with godly jealousy: for I have espoused you to one husband, that I may present you as a chaste virgin to Christ. \nBut I fear, lest by any means, as the serpent beguiled Eve through his subtilty, so your minds should be corrupted from the simplicity that is in Christ. \nFor if he that cometh preacheth another Jesus, whom we have not preached, or if ye receive another spirit, which ye have not received, or another gospel, which ye have not accepted, ye might well bear with him. \nFor I suppose I was not a whit behind the very chiefest apostles. \nBut though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things. \nHave I committed an offence in abasing myself that ye might be exalted, because I have preached to you the gospel of God freely? \nI robbed other churches, taking wages of them, to do you service. \nAnd when I was present with you, and wanted, I was chargeable to no man: for that which was lacking to me the brethren which came from Macedonia supplied: and in all things I have kept myself from being burdensome unto you, and so will I keep myself. \nAs the truth of Christ is in me, no man shall stop me of this boasting in the regions of Achaia. \nWherefore? because I love you not? God knoweth. \nBut what I do, that I will do, that I may cut off occasion from them which desire occasion; that wherein they glory, they may be found even as we. \nFor such are false apostles, deceitful workers, transforming themselves into the apostles of Christ. \nAnd no marvel; for Satan himself is transformed into an angel of light. \nTherefore it is no great thing if his ministers also be transformed as the ministers of righteousness; whose end shall be according to their works. \nI say again, let no man think me a fool; if otherwise, yet as a fool receive me, that I may boast myself a little. \nThat which I speak, I speak it not after the Lord, but as it were foolishly, in this confidence of boasting. \nSeeing that many glory after the flesh, I will glory also. \nFor ye suffer fools gladly, seeing ye yourselves are wise. \nFor ye suffer, if a man bring you into bondage, if a man devour you, if a man take of you, if a man exalt himself, if a man smite you on the face. \nI speak as concerning reproach, as though we had been weak. Howbeit whereinsoever any is bold, (I speak foolishly,) I am bold also. \nAre they Hebrews? so am I. Are they Israelites? so am I. Are they the seed of Abraham? so am I. \nAre they ministers of Christ? (I speak as a fool) I am more; in labours more abundant, in stripes above measure, in prisons more frequent, in deaths oft. \nOf the Jews five times received I forty stripes save one. \nThrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep; \nIn journeyings often, in perils of waters, in perils of robbers, in perils by mine own countrymen, in perils by the heathen, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren; \nIn weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness. \nBeside those things that are without, that which cometh upon me daily, the care of all the churches. \nWho is weak, and I am not weak? who is offended, and I burn not? \nIf I must needs glory, I will glory of the things which concern mine infirmities. \nThe God and Father of our Lord Jesus Christ, which is blessed for evermore, knoweth that I lie not. \nIn Damascus the governor under Aretas the king kept the city of the damascenes with a garrison, desirous to apprehend me: \nAnd through a window in a basket was I let down by the wall, and escaped his hands. \nIt is not expedient for me doubtless to glory. I will come to visions and revelations of the Lord. \nI knew a man in Christ above fourteen years ago, (whether in the body, I cannot tell; or whether out of the body, I cannot tell: God knoweth;) such an one caught up to the third heaven. \nAnd I knew such a man, (whether in the body, or out of the body, I cannot tell: God knoweth;) \nHow that he was caught up into paradise, and heard unspeakable words, which it is not lawful for a man to utter. \nOf such an one will I glory: yet of myself I will not glory, but in mine infirmities. \nFor though I would desire to glory, I shall not be a fool; for I will say the truth: but now I forbear, lest any man should think of me above that which he seeth me to be, or that he heareth of me. \nAnd lest I should be exalted above measure through the abundance of the revelations, there was given to me a thorn in the flesh, the messenger of Satan to buffet me, lest I should be exalted above measure. \nFor this thing I besought the Lord thrice, that it might depart from me. \nAnd he said unto me, My grace is sufficient for thee: for my strength is made perfect in weakness. Most gladly therefore will I rather glory in my infirmities, that the power of Christ may rest upon me. \nTherefore I take pleasure in infirmities, in reproaches, in necessities, in persecutions, in distresses for Christ's sake: for when I am weak, then am I strong. \nI am become a fool in glorying; ye have compelled me: for I ought to have been commended of you: for in nothing am I behind the very chiefest apostles, though I be nothing. \nTruly the signs of an apostle were wrought among you in all patience, in signs, and wonders, and mighty deeds. \nFor what is it wherein ye were inferior to other churches, except it be that I myself was not burdensome to you? forgive me this wrong. \nBehold, the third time I am ready to come to you; and I will not be burdensome to you: for I seek not your's but you: for the children ought not to lay up for the parents, but the parents for the children. \nAnd I will very gladly spend and be spent for you; though the more abundantly I love you, the less I be loved. \nBut be it so, I did not burden you: nevertheless, being crafty, I caught you with guile. \nDid I make a gain of you by any of them whom I sent unto you? \nI desired Titus, and with him I sent a brother. Did Titus make a gain of you? walked we not in the same spirit? walked we not in the same steps? \nAgain, think ye that we excuse ourselves unto you? we speak before God in Christ: but we do all things, dearly beloved, for your edifying. \nFor I fear, lest, when I come, I shall not find you such as I would, and that I shall be found unto you such as ye would not: lest there be debates, envyings, wraths, strifes, backbitings, whisperings, swellings, tumults: \nAnd lest, when I come again, my God will humble me among you, and that I shall bewail many which have sinned already, and have not repented of the uncleanness and fornication and lasciviousness which they have committed. \nThis is the third time I am coming to you. In the mouth of two or three witnesses shall every word be established. \nI told you before, and foretell you, as if I were present, the second time; and being absent now I write to them which heretofore have sinned, and to all other, that, if I come again, I will not spare: \nSince ye seek a proof of Christ speaking in me, which to you-ward is not weak, but is mighty in you. \nFor though he was crucified through weakness, yet he liveth by the power of God. For we also are weak in him, but we shall live with him by the power of God toward you. \nExamine yourselves, whether ye be in the faith; prove your own selves. Know ye not your own selves, how that Jesus Christ is in you, except ye be reprobates? \nBut I trust that ye shall know that we are not reprobates. \nNow I pray to God that ye do no evil; not that we should appear approved, but that ye should do that which is honest, though we be as reprobates. \nFor we can do nothing against the truth, but for the truth. \nFor we are glad, when we are weak, and ye are strong: and this also we wish, even your perfection. \nTherefore I write these things being absent, lest being present I should use sharpness, according to the power which the Lord hath given me to edification, and not to destruction. \nFinally, brethren, farewell. Be perfect, be of good comfort, be of one mind, live in peace; and the God of love and peace shall be with you. \nGreet one another with an holy kiss. \nAll the saints salute you. \nThe grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Ghost, be with you all. Amen. \nPaul, an apostle, (not of men, neither by man, but by Jesus Christ, and God the Father, who raised him from the dead;) \nAnd all the brethren which are with me, unto the churches of Galatia: \nGrace be to you and peace from God the Father, and from our Lord Jesus Christ, \nWho gave himself for our sins, that he might deliver us from this present evil world, according to the will of God and our Father: \nTo whom be glory for ever and ever. Amen. \nI marvel that ye are so soon removed from him that called you into the grace of Christ unto another gospel: \nWhich is not another; but there be some that trouble you, and would pervert the gospel of Christ. \nBut though we, or an angel from heaven, preach any other gospel unto you than that which we have preached unto you, let him be accursed. \nAs we said before, so say I now again, if any man preach any other gospel unto you than that ye have received, let him be accursed. \nFor do I now persuade men, or God? or do I seek to please men? for if I yet pleased men, I should not be the servant of Christ. \nBut I certify you, brethren, that the gospel which was preached of me is not after man. \nFor I neither received it of man, neither was I taught it, but by the revelation of Jesus Christ. \nFor ye have heard of my conversation in time past in the Jews' religion, how that beyond measure I persecuted the church of God, and wasted it: \nAnd profited in the Jews' religion above many my equals in mine own nation, being more exceedingly zealous of the traditions of my fathers. \nBut when it pleased God, who separated me from my mother's womb, and called me by his grace, \nTo reveal his Son in me, that I might preach him among the heathen; immediately I conferred not with flesh and blood: \nNeither went I up to Jerusalem to them which were apostles before me; but I went into Arabia, and returned again unto Damascus. \nThen after three years I went up to Jerusalem to see Peter, and abode with him fifteen days. \nBut other of the apostles saw I none, save James the Lord's brother. \nNow the things which I write unto you, behold, before God, I lie not. \nAfterwards I came into the regions of Syria and Cilicia; \nAnd was unknown by face unto the churches of Judaea which were in Christ: \nBut they had heard only, That he which persecuted us in times past now preacheth the faith which once he destroyed. \nAnd they glorified God in me. \nThen fourteen years after I went up again to Jerusalem with Barnabas, and took Titus with me also. \nAnd I went up by revelation, and communicated unto them that gospel which I preach among the Gentiles, but privately to them which were of reputation, lest by any means I should run, or had run, in vain. \nBut neither Titus, who was with me, being a Greek, was compelled to be circumcised: \nAnd that because of false brethren unawares brought in, who came in privily to spy out our liberty which we have in Christ Jesus, that they might bring us into bondage: \nTo whom we gave place by subjection, no, not for an hour; that the truth of the gospel might continue with you. \nBut of these who seemed to be somewhat, (whatsoever they were, it maketh no matter to me: God accepteth no man's person:) for they who seemed to be somewhat in conference added nothing to me: \nBut contrariwise, when they saw that the gospel of the uncircumcision was committed unto me, as the gospel of the circumcision was unto Peter; \n(For he that wrought effectually in Peter to the apostleship of the circumcision, the same was mighty in me toward the Gentiles:) \nAnd when James, Cephas, and John, who seemed to be pillars, perceived the grace that was given unto me, they gave to me and Barnabas the right hands of fellowship; that we should go unto the heathen, and they unto the circumcision. \nOnly they would that we should remember the poor; the same which I also was forward to do. \nBut when Peter was come to Antioch, I withstood him to the face, because he was to be blamed. \nFor before that certain came from James, he did eat with the Gentiles: but when they were come, he withdrew and separated himself, fearing them which were of the circumcision. \nAnd the other Jews dissembled likewise with him; insomuch that Barnabas also was carried away with their dissimulation. \nBut when I saw that they walked not uprightly according to the truth of the gospel, I said unto Peter before them all, If thou, being a Jew, livest after the manner of Gentiles, and not as do the Jews, why compellest thou the Gentiles to live as do the Jews? \nWe who are Jews by nature, and not sinners of the Gentiles, \nKnowing that a man is not justified by the works of the law, but by the faith of Jesus Christ, even we have believed in Jesus Christ, that we might be justified by the faith of Christ, and not by the works of the law: for by the works of the law shall no flesh be justified. \nBut if, while we seek to be justified by Christ, we ourselves also are found sinners, is therefore Christ the minister of sin? God forbid. \nFor if I build again the things which I destroyed, I make myself a transgressor. \nFor I through the law am dead to the law, that I might live unto God. \nI am crucified with Christ: neverthless I live; yet not I, but Christ liveth in me: and the life which I now live in the flesh I live by the faith of the Son of God, who loved me, and gave himself for me. \nI do not frustrate the grace of God: for if righteousness come by the law, then Christ is dead in vain. \nO foolish Galatians, who hath bewitched you, that ye should not obey the truth, before whose eyes Jesus Christ hath been evidently set forth, crucified among you? \nThis only would I learn of you, Received ye the Spirit by the works of the law, or by the hearing of faith? \nAre ye so foolish? having begun in the Spirit, are ye now made perfect by the flesh? \nHave ye suffered so many things in vain? if it be yet in vain. \nHe therefore that ministereth to you the Spirit, and worketh miracles among you, doeth he it by the works of the law, or by the hearing of faith? \nEven as Abraham believed God, and it was accounted to him for righteousness. \nKnow ye therefore that they which are of faith, the same are the children of Abraham. \nAnd the scripture, foreseeing that God would justify the heathen through faith, preached before the gospel unto Abraham, saying, In thee shall all nations be blessed. \nSo then they which be of faith are blessed with faithful Abraham. \nFor as many as are of the works of the law are under the curse: for it is written, Cursed is every one that continueth not in all things which are written in the book of the law to do them. \nBut that no man is justified by the law in the sight of God, it is evident: for, The just shall live by faith. \nAnd the law is not of faith: but, The man that doeth them shall live in them. \nChrist hath redeemed us from the curse of the law, being made a curse for us: for it is written, Cursed is every one that hangeth on a tree: \nThat the blessing of Abraham might come on the Gentiles through Jesus Christ; that we might receive the promise of the Spirit through faith. \nBrethren, I speak after the manner of men; Though it be but a man's covenant, yet if it be confirmed, no man disannulleth, or addeth thereto. \nNow to Abraham and his seed were the promises made. He saith not, And to seeds, as of many; but as of one, And to thy seed, which is Christ. \nAnd this I say, that the covenant, that was confirmed before of God in Christ, the law, which was four hundred and thirty years after, cannot disannul, that it should make the promise of none effect. \nFor if the inheritance be of the law, it is no more of promise: but God gave it to Abraham by promise. \nWherefore then serveth the law? It was added because of transgressions, till the seed should come to whom the promise was made; and it was ordained by angels in the hand of a mediator. \nNow a mediator is not a mediator of one, but God is one. \nIs the law then against the promises of God? God forbid: for if there had been a law given which could have given life, verily righteousness should have been by the law. \nBut the scripture hath concluded all under sin, that the promise by faith of Jesus Christ might be given to them that believe. \nBut before faith came, we were kept under the law, shut up unto the faith which should afterwards be revealed. \nWherefore the law was our schoolmaster to bring us unto Christ, that we might be justified by faith. \nBut after that faith is come, we are no longer under a schoolmaster. \nFor ye are all the children of God by faith in Christ Jesus. \nFor as many of you as have been baptized into Christ have put on Christ. \nThere is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus. \nAnd if ye be Christ's, then are ye Abraham's seed, and heirs according to the promise. \nNow I say, That the heir, as long as he is a child, differeth nothing from a servant, though he be lord of all; \nBut is under tutors and governors until the time appointed of the father. \nEven so we, when we were children, were in bondage under the elements of the world: \nBut when the fulness of the time was come, God sent forth his Son, made of a woman, made under the law, \nTo redeem them that were under the law, that we might receive the adoption of sons. \nAnd because ye are sons, God hath sent forth the Spirit of his Son into your hearts, crying, Abba, Father. \nWherefore thou art no more a servant, but a son; and if a son, then an heir of God through Christ. \nHowbeit then, when ye knew not God, ye did service unto them which by nature are no gods. \nBut now, after that ye have known God, or rather are known of God, how turn ye again to the weak and beggarly elements, whereunto ye desire again to be in bondage? \nYe observe days, and months, and times, and years. \nI am afraid of you, lest I have bestowed upon you labour in vain. \nBrethren, I beseech you, be as I am; for I am as ye are: ye have not injured me at all. \nYe know how through infirmity of the flesh I preached the gospel unto you at the first. \nAnd my temptation which was in my flesh ye despised not, nor rejected; but received me as an angel of God, even as Christ Jesus. \nWhere is then the blessedness ye spake of? for I bear you record, that, if it had been possible, ye would have plucked out your own eyes, and have given them to me. \nAm I therefore become your enemy, because I tell you the truth? \nThey zealously affect you, but not well; yea, they would exclude you, that ye might affect them. \nBut it is good to be zealously affected always in a good thing, and not only when I am present with you. \nMy little children, of whom I travail in birth again until Christ be formed in you, \nI desire to be present with you now, and to change my voice; for I stand in doubt of you. \nTell me, ye that desire to be under the law, do ye not hear the law? \nFor it is written, that Abraham had two sons, the one by a bondmaid, the other by a freewoman. \nBut he who was of the bondwoman was born after the flesh; but he of the freewoman was by promise. \nWhich things are an allegory: for these are the two covenants; the one from the mount Sinai, which gendereth to bondage, which is Agar. \nFor this Agar is mount Sinai in Arabia, and answereth to Jerusalem which now is, and is in bondage with her children. \nBut Jerusalem which is above is free, which is the mother of us all. \nFor it is written, Rejoice, thou barren that bearest not; break forth and cry, thou that travailest not: for the desolate hath many more children than she which hath an husband. \nNow we, brethren, as Isaac was, are the children of promise. \nBut as then he that was born after the flesh persecuted him that was born after the Spirit, even so it is now. \nNevertheless what saith the scripture? Cast out the bondwoman and her son: for the son of the bondwoman shall not be heir with the son of the freewoman. \nSo then, brethren, we are not children of the bondwoman, but of the free. \nStand fast therefore in the liberty wherewith Christ hath made us free, and be not entangled again with the yoke of bondage. \nBehold, I Paul say unto you, that if ye be circumcised, Christ shall profit you nothing. \nFor I testify again to every man that is circumcised, that he is a debtor to do the whole law. \nChrist is become of no effect unto you, whosoever of you are justified by the law; ye are fallen from grace. \nFor we through the Spirit wait for the hope of righteousness by faith. \nFor in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love. \nYe did run well; who did hinder you that ye should not obey the truth? \nThis persuasion cometh not of him that calleth you. \nA little leaven leaveneth the whole lump. \nI have confidence in you through the Lord, that ye will be none otherwise minded: but he that troubleth you shall bear his judgment, whosoever he be. \nAnd I, brethren, if I yet preach circumcision, why do I yet suffer persecution? then is the offence of the cross ceased. \nI would they were even cut off which trouble you. \nFor, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another. \nFor all the law is fulfilled in one word, even in this; Thou shalt love thy neighbour as thyself. \nBut if ye bite and devour one another, take heed that ye be not consumed one of another. \nThis I say then, Walk in the Spirit, and ye shall not fulfil the lust of the flesh. \nFor the flesh lusteth against the Spirit, and the Spirit against the flesh: and these are contrary the one to the other: so that ye cannot do the things that ye would. \nBut if ye be led of the Spirit, ye are not under the law. \nNow the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness, \nIdolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies, \nEnvyings, murders, drunkenness, revellings, and such like: of the which I tell you before, as I have also told you in time past, that they which do such things shall not inherit the kingdom of God. \nBut the fruit of the Spirit is love, joy, peace, longsuffering, gentleness, goodness, faith, \nMeekness, temperance: against such there is no law. \nAnd they that are Christ's have crucified the flesh with the affections and lusts. \nIf we live in the Spirit, let us also walk in the Spirit. \nLet us not be desirous of vain glory, provoking one another, envying one another. \nBrethren, if a man be overtaken in a fault, ye which are spiritual, restore such an one in the spirit of meekness; considering thyself, lest thou also be tempted. \nBear ye one another's burdens, and so fulfil the law of Christ. \nFor if a man think himself to be something, when he is nothing, he deceiveth himself. \nBut let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another. \nFor every man shall bear his own burden. \nLet him that is taught in the word communicate unto him that teacheth in all good things. \nBe not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap. \nFor he that soweth to his flesh shall of the flesh reap corruption; but he that soweth to the Spirit shall of the Spirit reap life everlasting. \nAnd let us not be weary in well doing: for in due season we shall reap, if we faint not. \nAs we have therefore opportunity, let us do good unto all men, especially unto them who are of the household of faith. \nYe see how large a letter I have written unto you with mine own hand. \nAs many as desire to make a fair shew in the flesh, they constrain you to be circumcised; only lest they should suffer persecution for the cross of Christ. \nFor neither they themselves who are circumcised keep the law; but desire to have you circumcised, that they may glory in your flesh. \nBut God forbid that I should glory, save in the cross of our Lord Jesus Christ, by whom the world is crucified unto me, and I unto the world. \nFor in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature. \nAnd as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God. \nFrom henceforth let no man trouble me: for I bear in my body the marks of the Lord Jesus. \nBrethren, the grace of our Lord Jesus Christ be with your spirit. Amen. \nPaul, an apostle of Jesus Christ by the will of God, to the saints which are at Ephesus, and to the faithful in Christ Jesus: \nGrace be to you, and peace, from God our Father, and from the Lord Jesus Christ. \nBlessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ: \nAccording as he hath chosen us in him before the foundation of the world, that we should be holy and without blame before him in love: \nHaving predestinated us unto the adoption of children by Jesus Christ to himself, according to the good pleasure of his will, \nTo the praise of the glory of his grace, wherein he hath made us accepted in the beloved. \nIn whom we have redemption through his blood, the forgiveness of sins, according to the riches of his grace; \nWherein he hath abounded toward us in all wisdom and prudence; \nHaving made known unto us the mystery of his will, according to his good pleasure which he hath purposed in himself: \nThat in the dispensation of the fulness of times he might gather together in one all things in Christ, both which are in heaven, and which are on earth; even in him: \nIn whom also we have obtained an inheritance, being predestinated according to the purpose of him who worketh all things after the counsel of his own will: \nThat we should be to the praise of his glory, who first trusted in Christ. \nIn whom ye also trusted, after that ye heard the word of truth, the gospel of your salvation: in whom also after that ye believed, ye were sealed with that holy Spirit of promise, \nWhich is the earnest of our inheritance until the redemption of the purchased possession, unto the praise of his glory. \nWherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints, \nCease not to give thanks for you, making mention of you in my prayers; \nThat the God of our Lord Jesus Christ, the Father of glory, may give unto you the spirit of wisdom and revelation in the knowledge of him: \nThe eyes of your understanding being enlightened; that ye may know what is the hope of his calling, and what the riches of the glory of his inheritance in the saints, \nAnd what is the exceeding greatness of his power to us-ward who believe, according to the working of his mighty power, \nWhich he wrought in Christ, when he raised him from the dead, and set him at his own right hand in the heavenly places, \nFar above all principality, and power, and might, and dominion, and every name that is named, not only in this world, but also in that which is to come: \nAnd hath put all things under his feet, and gave him to be the head over all things to the church, \nWhich is his body, the fulness of him that filleth all in all. \nAnd you hath he quickened, who were dead in trespasses and sins; \nWherein in time past ye walked according to the course of this world, according to the prince of the power of the air, the spirit that now worketh in the children of disobedience: \nAmong whom also we all had our conversation in times past in the lusts of our flesh, fulfilling the desires of the flesh and of the mind; and were by nature the children of wrath, even as others. \nBut God, who is rich in mercy, for his great love wherewith he loved us, \nEven when we were dead in sins, hath quickened us together with Christ, (by grace ye are saved;) \nAnd hath raised us up together, and made us sit together in heavenly places in Christ Jesus: \nThat in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus. \nFor by grace are ye saved through faith; and that not of yourselves: it is the gift of God: \nNot of works, lest any man should boast. \nFor we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them. \nWherefore remember, that ye being in time past Gentiles in the flesh, who are called Uncircumcision by that which is called the Circumcision in the flesh made by hands; \nThat at that time ye were without Christ, being aliens from the commonwealth of Israel, and strangers from the covenants of promise, having no hope, and without God in the world: \nBut now in Christ Jesus ye who sometimes were far off are made nigh by the blood of Christ. \nFor he is our peace, who hath made both one, and hath broken down the middle wall of partition between us; \nHaving abolished in his flesh the enmity, even the law of commandments contained in ordinances; for to make in himself of twain one new man, so making peace; \nAnd that he might reconcile both unto God in one body by the cross, having slain the enmity thereby: \nAnd came and preached peace to you which were afar off, and to them that were nigh. \nFor through him we both have access by one Spirit unto the Father. \nNow therefore ye are no more strangers and foreigners, but fellowcitizens with the saints, and of the household of God; \nAnd are built upon the foundation of the apostles and prophets, Jesus Christ himself being the chief corner stone; \nIn whom all the building fitly framed together groweth unto an holy temple in the Lord: \nIn whom ye also are builded together for an habitation of God through the Spirit. \nFor this cause I Paul, the prisoner of Jesus Christ for you Gentiles, \nIf ye have heard of the dispensation of the grace of God which is given me to you-ward: \nHow that by revelation he made known unto me the mystery; (as I wrote afore in few words, \nWhereby, when ye read, ye may understand my knowledge in the mystery of Christ) \nWhich in other ages was not made known unto the sons of men, as it is now revealed unto his holy apostles and prophets by the Spirit; \nThat the Gentiles should be fellowheirs, and of the same body, and partakers of his promise in Christ by the gospel: \nWhereof I was made a minister, according to the gift of the grace of God given unto me by the effectual working of his power. \nUnto me, who am less than the least of all saints, is this grace given, that I should preach among the Gentiles the unsearchable riches of Christ; \nAnd to make all men see what is the fellowship of the mystery, which from the beginning of the world hath been hid in God, who created all things by Jesus Christ: \nTo the intent that now unto the principalities and powers in heavenly places might be known by the church the manifold wisdom of God, \nAccording to the eternal purpose which he purposed in Christ Jesus our Lord: \nIn whom we have boldness and access with confidence by the faith of him. \nWherefore I desire that ye faint not at my tribulations for you, which is your glory. \nFor this cause I bow my knees unto the Father of our Lord Jesus Christ, \nOf whom the whole family in heaven and earth is named, \nThat he would grant you, according to the riches of his glory, to be strengthened with might by his Spirit in the inner man; \nThat Christ may dwell in your hearts by faith; that ye, being rooted and grounded in love, \nMay be able to comprehend with all saints what is the breadth, and length, and depth, and height; \nAnd to know the love of Christ, which passeth knowledge, that ye might be filled with all the fulness of God. \nNow unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us, \nUnto him be glory in the church by Christ Jesus throughout all ages, world without end. Amen. \nI therefore, the prisoner of the Lord, beseech you that ye walk worthy of the vocation wherewith ye are called, \nWith all lowliness and meekness, with longsuffering, forbearing one another in love; \nEndeavouring to keep the unity of the Spirit in the bond of peace. \nThere is one body, and one Spirit, even as ye are called in one hope of your calling; \nOne Lord, one faith, one baptism, \nOne God and Father of all, who is above all, and through all, and in you all. \nBut unto every one of us is given grace according to the measure of the gift of Christ. \nWherefore he saith, When he ascended up on high, he led captivity captive, and gave gifts unto men. \n(Now that he ascended, what is it but that he also descended first into the lower parts of the earth? \nHe that descended is the same also that ascended up far above all heavens, that he might fill all things.) \nAnd he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers; \nFor the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ: \nTill we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fulness of Christ: \nThat we henceforth be no more children, tossed to and fro, and carried about with every wind of doctrine, by the sleight of men, and cunning craftiness, whereby they lie in wait to deceive; \nBut speaking the truth in love, may grow up into him in all things, which is the head, even Christ: \nFrom whom the whole body fitly joined together and compacted by that which every joint supplieth, according to the effectual working in the measure of every part, maketh increase of the body unto the edifying of itself in love. \nThis I say therefore, and testify in the Lord, that ye henceforth walk not as other Gentiles walk, in the vanity of their mind, \nHaving the understanding darkened, being alienated from the life of God through the ignorance that is in them, because of the blindness of their heart: \nWho being past feeling have given themselves over unto lasciviousness, to work all uncleanness with greediness. \nBut ye have not so learned Christ; \nIf so be that ye have heard him, and have been taught by him, as the truth is in Jesus: \nThat ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts; \nAnd be renewed in the spirit of your mind; \nAnd that ye put on the new man, which after God is created in righteousness and true holiness. \nWherefore putting away lying, speak every man truth with his neighbour: for we are members one of another. \nBe ye angry, and sin not: let not the sun go down upon your wrath: \nNeither give place to the devil. \nLet him that stole steal no more: but rather let him labour, working with his hands the thing which is good, that he may have to give to him that needeth. \nLet no corrupt communication proceed out of your mouth, but that which is good to the use of edifying, that it may minister grace unto the hearers. \nAnd grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption. \nLet all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice: \nAnd be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ's sake hath forgiven you. \nBe ye therefore followers of God, as dear children; \nAnd walk in love, as Christ also hath loved us, and hath given himself for us an offering and a sacrifice to God for a sweetsmelling savour. \nBut fornication, and all uncleanness, or covetousness, let it not be once named among you, as becometh saints; \nNeither filthiness, nor foolish talking, nor jesting, which are not convenient: but rather giving of thanks. \nFor this ye know, that no whoremonger, nor unclean person, nor covetous man, who is an idolater, hath any inheritance in the kingdom of Christ and of God. \nLet no man deceive you with vain words: for because of these things cometh the wrath of God upon the children of disobedience. \nBe not ye therefore partakers with them. \nFor ye were sometimes darkness, but now are ye light in the Lord: walk as children of light: \n(For the fruit of the Spirit is in all goodness and righteousness and truth;) \nProving what is acceptable unto the Lord. \nAnd have no fellowship with the unfruitful works of darkness, but rather reprove them. \nFor it is a shame even to speak of those things which are done of them in secret. \nBut all things that are reproved are made manifest by the light: for whatsoever doth make manifest is light. \nWherefore he saith, Awake thou that sleepest, and arise from the dead, and Christ shall give thee light. \nSee then that ye walk circumspectly, not as fools, but as wise, \nRedeeming the time, because the days are evil. \nWherefore be ye not unwise, but understanding what the will of the Lord is. \nAnd be not drunk with wine, wherein is excess; but be filled with the Spirit; \nSpeaking to yourselves in psalms and hymns and spiritual songs, singing and making melody in your heart to the Lord; \nGiving thanks always for all things unto God and the Father in the name of our Lord Jesus Christ; \nSubmitting yourselves one to another in the fear of God. \nWives, submit yourselves unto your own husbands, as unto the Lord. \nFor the husband is the head of the wife, even as Christ is the head of the church: and he is the saviour of the body. \nTherefore as the church is subject unto Christ, so let the wives be to their own husbands in every thing. \nHusbands, love your wives, even as Christ also loved the church, and gave himself for it; \nThat he might sanctify and cleanse it with the washing of water by the word, \nThat he might present it to himself a glorious church, not having spot, or wrinkle, or any such thing; but that it should be holy and without blemish. \nSo ought men to love their wives as their own bodies. He that loveth his wife loveth himself. \nFor no man ever yet hated his own flesh; but nourisheth and cherisheth it, even as the Lord the church: \nFor we are members of his body, of his flesh, and of his bones. \nFor this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. \nThis is a great mystery: but I speak concerning Christ and the church. \nNevertheless let every one of you in particular so love his wife even as himself; and the wife see that she reverence her husband. \nChildren, obey your parents in the Lord: for this is right. \nHonour thy father and mother; which is the first commandment with promise; \nThat it may be well with thee, and thou mayest live long on the earth. \nAnd, ye fathers, provoke not your children to wrath: but bring them up in the nurture and admonition of the Lord. \nServants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ; \nNot with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart; \nWith good will doing service, as to the Lord, and not to men: \nKnowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free. \nAnd, ye masters, do the same things unto them, forbearing threatening: knowing that your Master also is in heaven; neither is there respect of persons with him. \nFinally, my brethren, be strong in the Lord, and in the power of his might. \nPut on the whole armour of God, that ye may be able to stand against the wiles of the devil. \nFor we wrestle not against flesh and blood, but against principalities, against powers, against the rulers of the darkness of this world, against spiritual wickedness in high places. \nWherefore take unto you the whole armour of God, that ye may be able to withstand in the evil day, and having done all, to stand. \nStand therefore, having your loins girt about with truth, and having on the breastplate of righteousness; \nAnd your feet shod with the preparation of the gospel of peace; \nAbove all, taking the shield of faith, wherewith ye shall be able to quench all the fiery darts of the wicked. \nAnd take the helmet of salvation, and the sword of the Spirit, which is the word of God: \nPraying always with all prayer and supplication in the Spirit, and watching thereunto with all perseverance and supplication for all saints; \nAnd for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel, \nFor which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak. \nBut that ye also may know my affairs, and how I do, Tychicus, a beloved brother and faithful minister in the Lord, shall make known to you all things: \nWhom I have sent unto you for the same purpose, that ye might know our affairs, and that he might comfort your hearts. \nPeace be to the brethren, and love with faith, from God the Father and the Lord Jesus Christ. \nGrace be with all them that love our Lord Jesus Christ in sincerity. Amen. \nPaul and Timotheus, the servants of Jesus Christ, to all the saints in Christ Jesus which are at Philippi, with the bishops and deacons: \nGrace be unto you, and peace, from God our Father, and from the Lord Jesus Christ. \nI thank my God upon every remembrance of you, \nAlways in every prayer of mine for you all making request with joy, \nFor your fellowship in the gospel from the first day until now; \nBeing confident of this very thing, that he which hath begun a good work in you will perform it until the day of Jesus Christ: \nEven as it is meet for me to think this of you all, because I have you in my heart; inasmuch as both in my bonds, and in the defence and confirmation of the gospel, ye all are partakers of my grace. \nFor God is my record, how greatly I long after you all in the bowels of Jesus Christ. \nAnd this I pray, that your love may abound yet more and more in knowledge and in all judgment; \nThat ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ. \nBeing filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God. \nBut I would ye should understand, brethren, that the things which happened unto me have fallen out rather unto the furtherance of the gospel; \nSo that my bonds in Christ are manifest in all the palace, and in all other places; \nAnd many of the brethren in the Lord, waxing confident by my bonds, are much more bold to speak the word without fear. \nSome indeed preach Christ even of envy and strife; and some also of good will: \nThe one preach Christ of contention, not sincerely, supposing to add affliction to my bonds: \nBut the other of love, knowing that I am set for the defence of the gospel. \nWhat then? notwithstanding, every way, whether in pretence, or in truth, Christ is preached; and I therein do rejoice, yea, and will rejoice. \nFor I know that this shall turn to my salvation through your prayer, and the supply of the Spirit of Jesus Christ, \nAccording to my earnest expectation and my hope, that in nothing I shall be ashamed, but that with all boldness, as always, so now also Christ shall be magnified in my body, whether it be by life, or by death. \nFor to me to live is Christ, and to die is gain. \nBut if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not. \nFor I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better: \nNevertheless to abide in the flesh is more needful for you. \nAnd having this confidence, I know that I shall abide and continue with you all for your furtherance and joy of faith; \nThat your rejoicing may be more abundant in Jesus Christ for me by my coming to you again. \nOnly let your conversation be as it becometh the gospel of Christ: that whether I come and see you, or else be absent, I may hear of your affairs, that ye stand fast in one spirit, with one mind striving together for the faith of the gospel; \nAnd in nothing terrified by your adversaries: which is to them an evident token of perdition, but to you of salvation, and that of God. \nFor unto you it is given in the behalf of Christ, not only to believe on him, but also to suffer for his sake; \nHaving the same conflict which ye saw in me, and now hear to be in me. \nIf there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies, \nFulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind. \nLet nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves. \nLook not every man on his own things, but every man also on the things of others. \nLet this mind be in you, which was also in Christ Jesus: \nWho, being in the form of God, thought it not robbery to be equal with God: \nBut made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men: \nAnd being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross. \nWherefore God also hath highly exalted him, and given him a name which is above every name: \nThat at the name of Jesus every knee should bow, of things in heaven, and things in earth, and things under the earth; \nAnd that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father. \nWherefore, my beloved, as ye have always obeyed, not as in my presence only, but now much more in my absence, work out your own salvation with fear and trembling. \nFor it is God which worketh in you both to will and to do of his good pleasure. \nDo all things without murmurings and disputings: \nThat ye may be blameless and harmless, the sons of God, without rebuke, in the midst of a crooked and perverse nation, among whom ye shine as lights in the world; \nHolding forth the word of life; that I may rejoice in the day of Christ, that I have not run in vain, neither laboured in vain. \nYea, and if I be offered upon the sacrifice and service of your faith, I joy, and rejoice with you all. \nFor the same cause also do ye joy, and rejoice with me. \nBut I trust in the Lord Jesus to send Timotheus shortly unto you, that I also may be of good comfort, when I know your state. \nFor I have no man likeminded, who will naturally care for your state. \nFor all seek their own, not the things which are Jesus Christ's. \nBut ye know the proof of him, that, as a son with the father, he hath served with me in the gospel. \nHim therefore I hope to send presently, so soon as I shall see how it will go with me. \nBut I trust in the Lord that I also myself shall come shortly. \nYet I supposed it necessary to send to you Epaphroditus, my brother, and companion in labour, and fellowsoldier, but your messenger, and he that ministered to my wants. \nFor he longed after you all, and was full of heaviness, because that ye had heard that he had been sick. \nFor indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, lest I should have sorrow upon sorrow. \nI sent him therefore the more carefully, that, when ye see him again, ye may rejoice, and that I may be the less sorrowful. \nReceive him therefore in the Lord with all gladness; and hold such in reputation: \nBecause for the work of Christ he was nigh unto death, not regarding his life, to supply your lack of service toward me. \nFinally, my brethren, rejoice in the Lord. To write the same things to you, to me indeed is not grievous, but for you it is safe. \nBeware of dogs, beware of evil workers, beware of the concision. \nFor we are the circumcision, which worship God in the spirit, and rejoice in Christ Jesus, and have no confidence in the flesh. \nThough I might also have confidence in the flesh. If any other man thinketh that he hath whereof he might trust in the flesh, I more: \nCircumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, an Hebrew of the Hebrews; as touching the law, a Pharisee; \nConcerning zeal, persecuting the church; touching the righteousness which is in the law, blameless. \nBut what things were gain to me, those I counted loss for Christ. \nYea doubtless, and I count all things but loss for the excellency of the knowledge of Christ Jesus my Lord: for whom I have suffered the loss of all things, and do count them but dung, that I may win Christ, \nAnd be found in him, not having mine own righteousness, which is of the law, but that which is through the faith of Christ, the righteousness which is of God by faith: \nThat I may know him, and the power of his resurrection, and the fellowship of his sufferings, being made conformable unto his death; \nIf by any means I might attain unto the resurrection of the dead. \nNot as though I had already attained, either were already perfect: but I follow after, if that I may apprehend that for which also I am apprehended of Christ Jesus. \nBrethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before, \nI press toward the mark for the prize of the high calling of God in Christ Jesus. \nLet us therefore, as many as be perfect, be thus minded: and if in any thing ye be otherwise minded, God shall reveal even this unto you. \nNevertheless, whereto we have already attained, let us walk by the same rule, let us mind the same thing. \nBrethren, be followers together of me, and mark them which walk so as ye have us for an ensample. \n(For many walk, of whom I have told you often, and now tell you even weeping, that they are the enemies of the cross of Christ: \nWhose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.) \nFor our conversation is in heaven; from whence also we look for the Saviour, the Lord Jesus Christ: \nWho shall change our vile body, that it may be fashioned like unto his glorious body, according to the working whereby he is able even to subdue all things unto himself. \nTherefore, my brethren dearly beloved and longed for, my joy and crown, so stand fast in the Lord, my dearly beloved. \nI beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord. \nAnd I intreat thee also, true yokefellow, help those women which laboured with me in the gospel, with Clement also, and with other my fellowlabourers, whose names are in the book of life. \nRejoice in the Lord alway: and again I say, Rejoice. \nLet your moderation be known unto all men. The Lord is at hand. \nBe careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God. \nAnd the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus. \nFinally, brethren, whatsoever things are true, whatsoever things are honest, whatsoever things are just, whatsoever things are pure, whatsoever things are lovely, whatsoever things are of good report; if there be any virtue, and if there be any praise, think on these things. \nThose things, which ye have both learned, and received, and heard, and seen in me, do: and the God of peace shall be with you. \nBut I rejoiced in the Lord greatly, that now at the last your care of me hath flourished again; wherein ye were also careful, but ye lacked opportunity. \nNot that I speak in respect of want: for I have learned, in whatsoever state I am, therewith to be content. \nI know both how to be abased, and I know how to abound: every where and in all things I am instructed both to be full and to be hungry, both to abound and to suffer need. \nI can do all things through Christ which strengtheneth me. \nNotwithstanding ye have well done, that ye did communicate with my affliction. \nNow ye Philippians know also, that in the beginning of the gospel, when I departed from Macedonia, no church communicated with me as concerning giving and receiving, but ye only. \nFor even in Thessalonica ye sent once and again unto my necessity. \nNot because I desire a gift: but I desire fruit that may abound to your account. \nBut I have all, and abound: I am full, having received of Epaphroditus the things which were sent from you, an odour of a sweet smell, a sacrifice acceptable, wellpleasing to God. \nBut my God shall supply all your need according to his riches in glory by Christ Jesus. \nNow unto God and our Father be glory for ever and ever. Amen. \nSalute every saint in Christ Jesus. The brethren which are with me greet you. \nAll the saints salute you, chiefly they that are of Caesar's household. \nThe grace of our Lord Jesus Christ be with you all. Amen. \nPaul, an apostle of Jesus Christ by the will of God, and Timotheus our brother, \nTo the saints and faithful brethren in Christ which are at Colosse: Grace be unto you, and peace, from God our Father and the Lord Jesus Christ. \nWe give thanks to God and the Father of our Lord Jesus Christ, praying always for you, \nSince we heard of your faith in Christ Jesus, and of the love which ye have to all the saints, \nFor the hope which is laid up for you in heaven, whereof ye heard before in the word of the truth of the gospel; \nWhich is come unto you, as it is in all the world; and bringeth forth fruit, as it doth also in you, since the day ye heard of it, and knew the grace of God in truth: \nAs ye also learned of Epaphras our dear fellowservant, who is for you a faithful minister of Christ; \nWho also declared unto us your love in the Spirit. \nFor this cause we also, since the day we heard it, do not cease to pray for you, and to desire that ye might be filled with the knowledge of his will in all wisdom and spiritual understanding; \nThat ye might walk worthy of the Lord unto all pleasing, being fruitful in every good work, and increasing in the knowledge of God; \nStrengthened with all might, according to his glorious power, unto all patience and longsuffering with joyfulness; \nGiving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light: \nWho hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son: \nIn whom we have redemption through his blood, even the forgiveness of sins: \nWho is the image of the invisible God, the firstborn of every creature: \nFor by him were all things created, that are in heaven, and that are in earth, visible and invisible, whether they be thrones, or dominions, or principalities, or powers: all things were created by him, and for him: \nAnd he is before all things, and by him all things consist. \nAnd he is the head of the body, the church: who is the beginning, the firstborn from the dead; that in all things he might have the preeminence. \nFor it pleased the Father that in him should all fulness dwell; \nAnd, having made peace through the blood of his cross, by him to reconcile all things unto himself; by him, I say, whether they be things in earth, or things in heaven. \nAnd you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled \nIn the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight: \nIf ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel, which ye have heard, and which was preached to every creature which is under heaven; whereof I Paul am made a minister; \nWho now rejoice in my sufferings for you, and fill up that which is behind of the afflictions of Christ in my flesh for his body's sake, which is the church: \nWhereof I am made a minister, according to the dispensation of God which is given to me for you, to fulfil the word of God; \nEven the mystery which hath been hid from ages and from generations, but now is made manifest to his saints: \nTo whom God would make known what is the riches of the glory of this mystery among the Gentiles; which is Christ in you, the hope of glory: \nWhom we preach, warning every man, and teaching every man in all wisdom; that we may present every man perfect in Christ Jesus: \nWhereunto I also labour, striving according to his working, which worketh in me mightily. \nFor I would that ye knew what great conflict I have for you, and for them at Laodicea, and for as many as have not seen my face in the flesh; \nThat their hearts might be comforted, being knit together in love, and unto all riches of the full assurance of understanding, to the acknowledgement of the mystery of God, and of the Father, and of Christ; \nIn whom are hid all the treasures of wisdom and knowledge. \nAnd this I say, lest any man should beguile you with enticing words. \nFor though I be absent in the flesh, yet am I with you in the spirit, joying and beholding your order, and the stedfastness of your faith in Christ. \nAs ye have therefore received Christ Jesus the Lord, so walk ye in him: \nRooted and built up in him, and stablished in the faith, as ye have been taught, abounding therein with thanksgiving. \nBeware lest any man spoil you through philosophy and vain deceit, after the tradition of men, after the rudiments of the world, and not after Christ. \nFor in him dwelleth all the fulness of the Godhead bodily. \nAnd ye are complete in him, which is the head of all principality and power: \nIn whom also ye are circumcised with the circumcision made without hands, in putting off the body of the sins of the flesh by the circumcision of Christ: \nBuried with him in baptism, wherein also ye are risen with him through the faith of the operation of God, who hath raised him from the dead. \nAnd you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses; \nBlotting out the handwriting of ordinances that was against us, which was contrary to us, and took it out of the way, nailing it to his cross; \nAnd having spoiled principalities and powers, he made a shew of them openly, triumphing over them in it. \nLet no man therefore judge you in meat, or in drink, or in respect of an holyday, or of the new moon, or of the sabbath days: \nWhich are a shadow of things to come; but the body is of Christ. \nLet no man beguile you of your reward in a voluntary humility and worshipping of angels, intruding into those things which he hath not seen, vainly puffed up by his fleshly mind, \nAnd not holding the Head, from which all the body by joints and bands having nourishment ministered, and knit together, increaseth with the increase of God. \nWherefore if ye be dead with Christ from the rudiments of the world, why, as though living in the world, are ye subject to ordinances, \n(Touch not; taste not; handle not; \nWhich all are to perish with the using;) after the commandments and doctrines of men? \nWhich things have indeed a shew of wisdom in will worship, and humility, and neglecting of the body: not in any honour to the satisfying of the flesh. \nIf ye then be risen with Christ, seek those things which are above, where Christ sitteth on the right hand of God. \nSet your affection on things above, not on things on the earth. \nFor ye are dead, and your life is hid with Christ in God. \nWhen Christ, who is our life, shall appear, then shall ye also appear with him in glory. \nMortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry: \nFor which things' sake the wrath of God cometh on the children of disobedience: \nIn the which ye also walked some time, when ye lived in them. \nBut now ye also put off all these; anger, wrath, malice, blasphemy, filthy communication out of your mouth. \nLie not one to another, seeing that ye have put off the old man with his deeds; \nAnd have put on the new man, which is renewed in knowledge after the image of him that created him: \nWhere there is neither Greek nor Jew, circumcision nor uncircumcision, Barbarian, Scythian, bond nor free: but Christ is all, and in all. \nPut on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering; \nForbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye. \nAnd above all these things put on charity, which is the bond of perfectness. \nAnd let the peace of God rule in your hearts, to the which also ye are called in one body; and be ye thankful. \nLet the word of Christ dwell in you richly in all wisdom; teaching and admonishing one another in psalms and hymns and spiritual songs, singing with grace in your hearts to the Lord. \nAnd whatsoever ye do in word or deed, do all in the name of the Lord Jesus, giving thanks to God and the Father by him. \nWives, submit yourselves unto your own husbands, as it is fit in the Lord. \nHusbands, love your wives, and be not bitter against them. \nChildren, obey your parents in all things: for this is well pleasing unto the Lord. \nFathers, provoke not your children to anger, lest they be discouraged. \nServants, obey in all things your masters according to the flesh; not with eyeservice, as menpleasers; but in singleness of heart, fearing God; \nAnd whatsoever ye do, do it heartily, as to the Lord, and not unto men; \nKnowing that of the Lord ye shall receive the reward of the inheritance: for ye serve the Lord Christ. \nBut he that doeth wrong shall receive for the wrong which he hath done: and there is no respect of persons. \nMasters, give unto your servants that which is just and equal; knowing that ye also have a Master in heaven. \nContinue in prayer, and watch in the same with thanksgiving; \nWithal praying also for us, that God would open unto us a door of utterance, to speak the mystery of Christ, for which I am also in bonds: \nThat I may make it manifest, as I ought to speak. \nWalk in wisdom toward them that are without, redeeming the time. \nLet your speech be alway with grace, seasoned with salt, that ye may know how ye ought to answer every man. \nAll my state shall Tychicus declare unto you, who is a beloved brother, and a faithful minister and fellowservant in the Lord: \nWhom I have sent unto you for the same purpose, that he might know your estate, and comfort your hearts; \nWith Onesimus, a faithful and beloved brother, who is one of you. They shall make known unto you all things which are done here. \nAristarchus my fellowprisoner saluteth you, and Marcus, sister's son to Barnabas, (touching whom ye received commandments: if he come unto you, receive him;) \nAnd Jesus, which is called Justus, who are of the circumcision. These only are my fellowworkers unto the kingdom of God, which have been a comfort unto me. \nEpaphras, who is one of you, a servant of Christ, saluteth you, always labouring fervently for you in prayers, that ye may stand perfect and complete in all the will of God. \nFor I bear him record, that he hath a great zeal for you, and them that are in Laodicea, and them in Hierapolis. \nLuke, the beloved physician, and Demas, greet you. \nSalute the brethren which are in Laodicea, and Nymphas, and the church which is in his house. \nAnd when this epistle is read among you, cause that it be read also in the church of the Laodiceans; and that ye likewise read the epistle from Laodicea. \nAnd say to Archippus, Take heed to the ministry which thou hast received in the Lord, that thou fulfil it. \nThe salutation by the hand of me Paul. Remember my bonds. Grace be with you. Amen. \nPaul, and Silvanus, and Timotheus, unto the church of the Thessalonians which is in God the Father and in the Lord Jesus Christ: Grace be unto you, and peace, from God our Father, and the Lord Jesus Christ. \nWe give thanks to God always for you all, making mention of you in our prayers; \nRemembering without ceasing your work of faith, and labour of love, and patience of hope in our Lord Jesus Christ, in the sight of God and our Father; \nKnowing, brethren beloved, your election of God. \nFor our gospel came not unto you in word only, but also in power, and in the Holy Ghost, and in much assurance; as ye know what manner of men we were among you for your sake. \nAnd ye became followers of us, and of the Lord, having received the word in much affliction, with joy of the Holy Ghost. \nSo that ye were ensamples to all that believe in Macedonia and Achaia. \nFor from you sounded out the word of the Lord not only in Macedonia and Achaia, but also in every place your faith to God-ward is spread abroad; so that we need not to speak any thing. \nFor they themselves shew of us what manner of entering in we had unto you, and how ye turned to God from idols to serve the living and true God; \nAnd to wait for his Son from heaven, whom he raised from the dead, even Jesus, which delivered us from the wrath to come. \nFor yourselves, brethren, know our entrance in unto you, that it was not in vain: \nBut even after that we had suffered before, and were shamefully entreated, as ye know, at Philippi, we were bold in our God to speak unto you the gospel of God with much contention. \nFor our exhortation was not of deceit, nor of uncleanness, nor in guile: \nBut as we were allowed of God to be put in trust with the gospel, even so we speak; not as pleasing men, but God, which trieth our hearts. \nFor neither at any time used we flattering words, as ye know, nor a cloke of covetousness; God is witness: \nNor of men sought we glory, neither of you, nor yet of others, when we might have been burdensome, as the apostles of Christ. \nBut we were gentle among you, even as a nurse cherisheth her children: \nSo being affectionately desirous of you, we were willing to have imparted unto you, not the gospel of God only, but also our own souls, because ye were dear unto us. \nFor ye remember, brethren, our labour and travail: for labouring night and day, because we would not be chargeable unto any of you, we preached unto you the gospel of God. \nYe are witnesses, and God also, how holily and justly and unblameably we behaved ourselves among you that believe: \nAs ye know how we exhorted and comforted and charged every one of you, as a father doth his children, \nThat ye would walk worthy of God, who hath called you unto his kingdom and glory. \nFor this cause also thank we God without ceasing, because, when ye received the word of God which ye heard of us, ye received it not as the word of men, but as it is in truth, the word of God, which effectually worketh also in you that believe. \nFor ye, brethren, became followers of the churches of God which in Judaea are in Christ Jesus: for ye also have suffered like things of your own countrymen, even as they have of the Jews: \nWho both killed the Lord Jesus, and their own prophets, and have persecuted us; and they please not God, and are contrary to all men: \nForbidding us to speak to the Gentiles that they might be saved, to fill up their sins alway: for the wrath is come upon them to the uttermost. \nBut we, brethren, being taken from you for a short time in presence, not in heart, endeavoured the more abundantly to see your face with great desire. \nWherefore we would have come unto you, even I Paul, once and again; but Satan hindered us. \nFor what is our hope, or joy, or crown of rejoicing? Are not even ye in the presence of our Lord Jesus Christ at his coming? \nFor ye are our glory and joy. \nWherefore when we could no longer forbear, we thought it good to be left at Athens alone; \nAnd sent Timotheus, our brother, and minister of God, and our fellowlabourer in the gospel of Christ, to establish you, and to comfort you concerning your faith: \nThat no man should be moved by these afflictions: for yourselves know that we are appointed thereunto. \nFor verily, when we were with you, we told you before that we should suffer tribulation; even as it came to pass, and ye know. \nFor this cause, when I could no longer forbear, I sent to know your faith, lest by some means the tempter have tempted you, and our labour be in vain. \nBut now when Timotheus came from you unto us, and brought us good tidings of your faith and charity, and that ye have good remembrance of us always, desiring greatly to see us, as we also to see you: \nTherefore, brethren, we were comforted over you in all our affliction and distress by your faith: \nFor now we live, if ye stand fast in the Lord. \nFor what thanks can we render to God again for you, for all the joy wherewith we joy for your sakes before our God; \nNight and day praying exceedingly that we might see your face, and might perfect that which is lacking in your faith? \nNow God himself and our Father, and our Lord Jesus Christ, direct our way unto you. \nAnd the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you: \nTo the end he may stablish your hearts unblameable in holiness before God, even our Father, at the coming of our Lord Jesus Christ with all his saints. \nFurthermore then we beseech you, brethren, and exhort you by the Lord Jesus, that as ye have received of us how ye ought to walk and to please God, so ye would abound more and more. \nFor ye know what commandments we gave you by the Lord Jesus. \nFor this is the will of God, even your sanctification, that ye should abstain from fornication: \nThat every one of you should know how to possess his vessel in sanctification and honour; \nNot in the lust of concupiscence, even as the Gentiles which know not God: \nThat no man go beyond and defraud his brother in any matter: because that the Lord is the avenger of all such, as we also have forewarned you and testified. \nFor God hath not called us unto uncleanness, but unto holiness. \nHe therefore that despiseth, despiseth not man, but God, who hath also given unto us his holy Spirit. \nBut as touching brotherly love ye need not that I write unto you: for ye yourselves are taught of God to love one another. \nAnd indeed ye do it toward all the brethren which are in all Macedonia: but we beseech you, brethren, that ye increase more and more; \nAnd that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you; \nThat ye may walk honestly toward them that are without, and that ye may have lack of nothing. \nBut I would not have you to be ignorant, brethren, concerning them which are asleep, that ye sorrow not, even as others which have no hope. \nFor if we believe that Jesus died and rose again, even so them also which sleep in Jesus will God bring with him. \nFor this we say unto you by the word of the Lord, that we which are alive and remain unto the coming of the Lord shall not prevent them which are asleep. \nFor the Lord himself shall descend from heaven with a shout, with the voice of the archangel, and with the trump of God: and the dead in Christ shall rise first: \nThen we which are alive and remain shall be caught up together with them in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord. \nWherefore comfort one another with these words. \nBut of the times and the seasons, brethren, ye have no need that I write unto you. \nFor yourselves know perfectly that the day of the Lord so cometh as a thief in the night. \nFor when they shall say, Peace and safety; then sudden destruction cometh upon them, as travail upon a woman with child; and they shall not escape. \nBut ye, brethren, are not in darkness, that that day should overtake you as a thief. \nYe are all the children of light, and the children of the day: we are not of the night, nor of darkness. \nTherefore let us not sleep, as do others; but let us watch and be sober. \nFor they that sleep sleep in the night; and they that be drunken are drunken in the night. \nBut let us, who are of the day, be sober, putting on the breastplate of faith and love; and for an helmet, the hope of salvation. \nFor God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ, \nWho died for us, that, whether we wake or sleep, we should live together with him. \nWherefore comfort yourselves together, and edify one another, even as also ye do. \nAnd we beseech you, brethren, to know them which labour among you, and are over you in the Lord, and admonish you; \nAnd to esteem them very highly in love for their work's sake. And be at peace among yourselves. \nNow we exhort you, brethren, warn them that are unruly, comfort the feebleminded, support the weak, be patient toward all men. \nSee that none render evil for evil unto any man; but ever follow that which is good, both among yourselves, and to all men. \nRejoice evermore. \nPray without ceasing. \nIn every thing give thanks: for this is the will of God in Christ Jesus concerning you. \nQuench not the Spirit. \nDespise not prophesyings. \nProve all things; hold fast that which is good. \nAbstain from all appearance of evil. \nAnd the very God of peace sanctify you wholly; and I pray God your whole spirit and soul and body be preserved blameless unto the coming of our Lord Jesus Christ. \nFaithful is he that calleth you, who also will do it. \nBrethren, pray for us. \nGreet all the brethren with an holy kiss. \nI charge you by the Lord that this epistle be read unto all the holy brethren. \nThe grace of our Lord Jesus Christ be with you. Amen. \nPaul, and Silvanus, and Timotheus, unto the church of the Thessalonians in God our Father and the Lord Jesus Christ: \nGrace unto you, and peace, from God our Father and the Lord Jesus Christ. \nWe are bound to thank God always for you, brethren, as it is meet, because that your faith groweth exceedingly, and the charity of every one of you all toward each other aboundeth; \nSo that we ourselves glory in you in the churches of God for your patience and faith in all your persecutions and tribulations that ye endure: \nWhich is a manifest token of the righteous judgment of God, that ye may be counted worthy of the kingdom of God, for which ye also suffer: \nSeeing it is a righteous thing with God to recompense tribulation to them that trouble you; \nAnd to you who are troubled rest with us, when the Lord Jesus shall be revealed from heaven with his mighty angels, \nIn flaming fire taking vengeance on them that know not God, and that obey not the gospel of our Lord Jesus Christ: \nWho shall be punished with everlasting destruction from the presence of the Lord, and from the glory of his power; \nWhen he shall come to be glorified in his saints, and to be admired in all them that believe (because our testimony among you was believed) in that day. \nWherefore also we pray always for you, that our God would count you worthy of this calling, and fulfil all the good pleasure of his goodness, and the work of faith with power: \nThat the name of our Lord Jesus Christ may be glorified in you, and ye in him, according to the grace of our God and the Lord Jesus Christ. \nNow we beseech you, brethren, by the coming of our Lord Jesus Christ, and by our gathering together unto him, \nThat ye be not soon shaken in mind, or be troubled, neither by spirit, nor by word, nor by letter as from us, as that the day of Christ is at hand. \nLet no man deceive you by any means: for that day shall not come, except there come a falling away first, and that man of sin be revealed, the son of perdition; \nWho opposeth and exalteth himself above all that is called God, or that is worshipped; so that he as God sitteth in the temple of God, shewing himself that he is God. \nRemember ye not, that, when I was yet with you, I told you these things? \nAnd now ye know what withholdeth that he might be revealed in his time. \nFor the mystery of iniquity doth already work: only he who now letteth will let, until he be taken out of the way. \nAnd then shall that Wicked be revealed, whom the Lord shall consume with the spirit of his mouth, and shall destroy with the brightness of his coming: \nEven him, whose coming is after the working of Satan with all power and signs and lying wonders, \nAnd with all deceivableness of unrighteousness in them that perish; because they received not the love of the truth, that they might be saved. \nAnd for this cause God shall send them strong delusion, that they should believe a lie: \nThat they all might be damned who believed not the truth, but had pleasure in unrighteousness. \nBut we are bound to give thanks alway to God for you, brethren beloved of the Lord, because God hath from the beginning chosen you to salvation through sanctification of the Spirit and belief of the truth: \nWhereunto he called you by our gospel, to the obtaining of the glory of our Lord Jesus Christ. \nTherefore, brethren, stand fast, and hold the traditions which ye have been taught, whether by word, or our epistle. \nNow our Lord Jesus Christ himself, and God, even our Father, which hath loved us, and hath given us everlasting consolation and good hope through grace, \nComfort your hearts, and stablish you in every good word and work. \nFinally, brethren, pray for us, that the word of the Lord may have free course, and be glorified, even as it is with you: \nAnd that we may be delivered from unreasonable and wicked men: for all men have not faith. \nBut the Lord is faithful, who shall stablish you, and keep you from evil. \nAnd we have confidence in the Lord touching you, that ye both do and will do the things which we command you. \nAnd the Lord direct your hearts into the love of God, and into the patient waiting for Christ. \nNow we command you, brethren, in the name of our Lord Jesus Christ, that ye withdraw yourselves from every brother that walketh disorderly, and not after the tradition which he received of us. \nFor yourselves know how ye ought to follow us: for we behaved not ourselves disorderly among you; \nNeither did we eat any man's bread for nought; but wrought with labour and travail night and day, that we might not be chargeable to any of you: \nNot because we have not power, but to make ourselves an ensample unto you to follow us. \nFor even when we were with you, this we commanded you, that if any would not work, neither should he eat. \nFor we hear that there are some which walk among you disorderly, working not at all, but are busybodies. \nNow them that are such we command and exhort by our Lord Jesus Christ, that with quietness they work, and eat their own bread. \nBut ye, brethren, be not weary in well doing. \nAnd if any man obey not our word by this epistle, note that man, and have no company with him, that he may be ashamed. \nYet count him not as an enemy, but admonish him as a brother. \nNow the Lord of peace himself give you peace always by all means. The Lord be with you all. \nThe salutation of Paul with mine own hand, which is the token in every epistle: so I write. \nThe grace of our Lord Jesus Christ be with you all. Amen. \nPaul, an apostle of Jesus Christ by the commandment of God our Saviour, and Lord Jesus Christ, which is our hope; \nUnto Timothy, my own son in the faith: Grace, mercy, and peace, from God our Father and Jesus Christ our Lord. \nAs I besought thee to abide still at Ephesus, when I went into Macedonia, that thou mightest charge some that they teach no other doctrine, \nNeither give heed to fables and endless genealogies, which minister questions, rather than godly edifying which is in faith: so do. \nNow the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned: \nFrom which some having swerved have turned aside unto vain jangling; \nDesiring to be teachers of the law; understanding neither what they say, nor whereof they affirm. \nBut we know that the law is good, if a man use it lawfully; \nKnowing this, that the law is not made for a righteous man, but for the lawless and disobedient, for the ungodly and for sinners, for unholy and profane, for murderers of fathers and murderers of mothers, for manslayers, \nFor whoremongers, for them that defile themselves with mankind, for menstealers, for liars, for perjured persons, and if there be any other thing that is contrary to sound doctrine; \nAccording to the glorious gospel of the blessed God, which was committed to my trust. \nAnd I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry; \nWho was before a blasphemer, and a persecutor, and injurious: but I obtained mercy, because I did it ignorantly in unbelief. \nAnd the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus. \nThis is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief. \nHowbeit for this cause I obtained mercy, that in me first Jesus Christ might shew forth all longsuffering, for a pattern to them which should hereafter believe on him to life everlasting. \nNow unto the King eternal, immortal, invisible, the only wise God, be honour and glory for ever and ever. Amen. \nThis charge I commit unto thee, son Timothy, according to the prophecies which went before on thee, that thou by them mightest war a good warfare; \nHolding faith, and a good conscience; which some having put away concerning faith have made shipwreck: \nOf whom is Hymenaeus and Alexander; whom I have delivered unto Satan, that they may learn not to blaspheme. \nI exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men; \nFor kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty. \nFor this is good and acceptable in the sight of God our Saviour; \nWho will have all men to be saved, and to come unto the knowledge of the truth. \nFor there is one God, and one mediator between God and men, the man Christ Jesus; \nWho gave himself a ransom for all, to be testified in due time. \nWhereunto I am ordained a preacher, and an apostle, (I speak the truth in Christ, and lie not;) a teacher of the Gentiles in faith and verity. \nI will therefore that men pray every where, lifting up holy hands, without wrath and doubting. \nIn like manner also, that women adorn themselves in modest apparel, with shamefacedness and sobriety; not with broided hair, or gold, or pearls, or costly array; \nBut (which becometh women professing godliness) with good works. \nLet the woman learn in silence with all subjection. \nBut I suffer not a woman to teach, nor to usurp authority over the man, but to be in silence. \nFor Adam was first formed, then Eve. \nAnd Adam was not deceived, but the woman being deceived was in the transgression. \nNotwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety. \nThis is a true saying, if a man desire the office of a bishop, he desireth a good work. \nA bishop then must be blameless, the husband of one wife, vigilant, sober, of good behaviour, given to hospitality, apt to teach; \nNot given to wine, no striker, not greedy of filthy lucre; but patient, not a brawler, not covetous; \nOne that ruleth well his own house, having his children in subjection with all gravity; \n(For if a man know not how to rule his own house, how shall he take care of the church of God?) \nNot a novice, lest being lifted up with pride he fall into the condemnation of the devil. \nMoreover he must have a good report of them which are without; lest he fall into reproach and the snare of the devil. \nLikewise must the deacons be grave, not doubletongued, not given to much wine, not greedy of filthy lucre; \nHolding the mystery of the faith in a pure conscience. \nAnd let these also first be proved; then let them use the office of a deacon, being found blameless. \nEven so must their wives be grave, not slanderers, sober, faithful in all things. \nLet the deacons be the husbands of one wife, ruling their children and their own houses well. \nFor they that have used the office of a deacon well purchase to themselves a good degree, and great boldness in the faith which is in Christ Jesus. \nThese things write I unto thee, hoping to come unto thee shortly: \nBut if I tarry long, that thou mayest know how thou oughtest to behave thyself in the house of God, which is the church of the living God, the pillar and ground of the truth. \nAnd without controversy great is the mystery of godliness: God was manifest in the flesh, justified in the Spirit, seen of angels, preached unto the Gentiles, believed on in the world, received up into glory. \nNow the Spirit speaketh expressly, that in the latter times some shall depart from the faith, giving heed to seducing spirits, and doctrines of devils; \nSpeaking lies in hypocrisy; having their conscience seared with a hot iron; \nForbidding to marry, and commanding to abstain from meats, which God hath created to be received with thanksgiving of them which believe and know the truth. \nFor every creature of God is good, and nothing to be refused, if it be received with thanksgiving: \nFor it is sanctified by the word of God and prayer. \nIf thou put the brethren in remembrance of these things, thou shalt be a good minister of Jesus Christ, nourished up in the words of faith and of good doctrine, whereunto thou hast attained. \nBut refuse profane and old wives' fables, and exercise thyself rather unto godliness. \nFor bodily exercise profiteth little: but godliness is profitable unto all things, having promise of the life that now is, and of that which is to come. \nThis is a faithful saying and worthy of all acceptation. \nFor therefore we both labour and suffer reproach, because we trust in the living God, who is the Saviour of all men, specially of those that believe. \nThese things command and teach. \nLet no man despise thy youth; but be thou an example of the believers, in word, in conversation, in charity, in spirit, in faith, in purity. \nTill I come, give attendance to reading, to exhortation, to doctrine. \nNeglect not the gift that is in thee, which was given thee by prophecy, with the laying on of the hands of the presbytery. \nMeditate upon these things; give thyself wholly to them; that thy profiting may appear to all. \nTake heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee. \nRebuke not an elder, but intreat him as a father; and the younger men as brethren; \nThe elder women as mothers; the younger as sisters, with all purity. \nHonour widows that are widows indeed. \nBut if any widow have children or nephews, let them learn first to shew piety at home, and to requite their parents: for that is good and acceptable before God. \nNow she that is a widow indeed, and desolate, trusteth in God, and continueth in supplications and prayers night and day. \nBut she that liveth in pleasure is dead while she liveth. \nAnd these things give in charge, that they may be blameless. \nBut if any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel. \nLet not a widow be taken into the number under threescore years old, having been the wife of one man. \nWell reported of for good works; if she have brought up children, if she have lodged strangers, if she have washed the saints' feet, if she have relieved the afflicted, if she have diligently followed every good work. \nBut the younger widows refuse: for when they have begun to wax wanton against Christ, they will marry; \nHaving damnation, because they have cast off their first faith. \nAnd withal they learn to be idle, wandering about from house to house; and not only idle, but tattlers also and busybodies, speaking things which they ought not. \nI will therefore that the younger women marry, bear children, guide the house, give none occasion to the adversary to speak reproachfully. \nFor some are already turned aside after Satan. \nIf any man or woman that believeth have widows, let them relieve them, and let not the church be charged; that it may relieve them that are widows indeed. \nLet the elders that rule well be counted worthy of double honour, especially they who labour in the word and doctrine. \nFor the scripture saith, thou shalt not muzzle the ox that treadeth out the corn. And, The labourer is worthy of his reward. \nAgainst an elder receive not an accusation, but before two or three witnesses. \nThem that sin rebuke before all, that others also may fear. \nI charge thee before God, and the Lord Jesus Christ, and the elect angels, that thou observe these things without preferring one before another, doing nothing by partiality. \nLay hands suddenly on no man, neither be partaker of other men's sins: keep thyself pure. \nDrink no longer water, but use a little wine for thy stomach's sake and thine often infirmities. \nSome men's sins are open beforehand, going before to judgment; and some men they follow after. \nLikewise also the good works of some are manifest beforehand; and they that are otherwise cannot be hid. \nLet as many servants as are under the yoke count their own masters worthy of all honour, that the name of God and his doctrine be not blasphemed. \nAnd they that have believing masters, let them not despise them, because they are brethren; but rather do them service, because they are faithful and beloved, partakers of the benefit. These things teach and exhort. \nIf any man teach otherwise, and consent not to wholesome words, even the words of our Lord Jesus Christ, and to the doctrine which is according to godliness; \nHe is proud, knowing nothing, but doting about questions and strifes of words, whereof cometh envy, strife, railings, evil surmisings, \nPerverse disputings of men of corrupt minds, and destitute of the truth, supposing that gain is godliness: from such withdraw thyself. \nBut godliness with contentment is great gain. \nFor we brought nothing into this world, and it is certain we can carry nothing out. \nAnd having food and raiment let us be therewith content. \nBut they that will be rich fall into temptation and a snare, and into many foolish and hurtful lusts, which drown men in destruction and perdition. \nFor the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows. \nBut thou, O man of God, flee these things; and follow after righteousness, godliness, faith, love, patience, meekness. \nFight the good fight of faith, lay hold on eternal life, whereunto thou art also called, and hast professed a good profession before many witnesses. \nI give thee charge in the sight of God, who quickeneth all things, and before Christ Jesus, who before Pontius Pilate witnessed a good confession; \nThat thou keep this commandment without spot, unrebukable, until the appearing of our Lord Jesus Christ: \nWhich in his times he shall shew, who is the blessed and only Potentate, the King of kings, and Lord of lords; \nWho only hath immortality, dwelling in the light which no man can approach unto; whom no man hath seen, nor can see: to whom be honour and power everlasting. Amen. \nCharge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy; \nThat they do good, that they be rich in good works, ready to distribute, willing to communicate; \nLaying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life. \nO Timothy, keep that which is committed to thy trust, avoiding profane and vain babblings, and oppositions of science falsely so called: \nWhich some professing have erred concerning the faith. Grace be with thee. Amen. \nPaul, an apostle of Jesus Christ by the will of God, according to the promise of life which is in Christ Jesus, \nTo Timothy, my dearly beloved son: Grace, mercy, and peace, from God the Father and Christ Jesus our Lord. \nI thank God, whom I serve from my forefathers with pure conscience, that without ceasing I have remembrance of thee in my prayers night and day; \nGreatly desiring to see thee, being mindful of thy tears, that I may be filled with joy; \nWhen I call to remembrance the unfeigned faith that is in thee, which dwelt first in thy grandmother Lois, and thy mother Eunice; and I am persuaded that in thee also. \nWherefore I put thee in remembrance that thou stir up the gift of God, which is in thee by the putting on of my hands. \nFor God hath not given us the spirit of fear; but of power, and of love, and of a sound mind. \nBe not thou therefore ashamed of the testimony of our Lord, nor of me his prisoner: but be thou partaker of the afflictions of the gospel according to the power of God; \nWho hath saved us, and called us with an holy calling, not according to our works, but according to his own purpose and grace, which was given us in Christ Jesus before the world began, \nBut is now made manifest by the appearing of our Saviour Jesus Christ, who hath abolished death, and hath brought life and immortality to light through the gospel: \nWhereunto I am appointed a preacher, and an apostle, and a teacher of the Gentiles. \nFor the which cause I also suffer these things: nevertheless I am not ashamed: for I know whom I have believed, and am persuaded that he is able to keep that which I have committed unto him against that day. \nHold fast the form of sound words, which thou hast heard of me, in faith and love which is in Christ Jesus. \nThat good thing which was committed unto thee keep by the Holy Ghost which dwelleth in us. \nThis thou knowest, that all they which are in Asia be turned away from me; of whom are Phygellus and Hermogenes. \nThe Lord give mercy unto the house of Onesiphorus; for he oft refreshed me, and was not ashamed of my chain: \nBut, when he was in Rome, he sought me out very diligently, and found me. \nThe Lord grant unto him that he may find mercy of the Lord in that day: and in how many things he ministered unto me at Ephesus, thou knowest very well. \nThou therefore, my son, be strong in the grace that is in Christ Jesus. \nAnd the things that thou hast heard of me among many witnesses, the same commit thou to faithful men, who shall be able to teach others also. \nThou therefore endure hardness, as a good soldier of Jesus Christ. \nNo man that warreth entangleth himself with the affairs of this life; that he may please him who hath chosen him to be a soldier. \nAnd if a man also strive for masteries, yet is he not crowned, except he strive lawfully. \nThe husbandman that laboureth must be first partaker of the fruits. \nConsider what I say; and the Lord give thee understanding in all things. \nRemember that Jesus Christ of the seed of David was raised from the dead according to my gospel: \nWherein I suffer trouble, as an evil doer, even unto bonds; but the word of God is not bound. \nTherefore I endure all things for the elect's sakes, that they may also obtain the salvation which is in Christ Jesus with eternal glory. \nIt is a faithful saying: For if we be dead with him, we shall also live with him: \nIf we suffer, we shall also reign with him: if we deny him, he also will deny us: \nIf we believe not, yet he abideth faithful: he cannot deny himself. \nOf these things put them in remembrance, charging them before the Lord that they strive not about words to no profit, but to the subverting of the hearers. \nStudy to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly dividing the word of truth. \nBut shun profane and vain babblings: for they will increase unto more ungodliness. \nAnd their word will eat as doth a canker: of whom is Hymenaeus and Philetus; \nWho concerning the truth have erred, saying that the resurrection is past already; and overthrow the faith of some. \nNevertheless the foundation of God standeth sure, having this seal, The Lord knoweth them that are his. And, let every one that nameth the name of Christ depart from iniquity. \nBut in a great house there are not only vessels of gold and of silver, but also of wood and of earth; and some to honour, and some to dishonour. \nIf a man therefore purge himself from these, he shall be a vessel unto honour, sanctified, and meet for the master's use, and prepared unto every good work. \nFlee also youthful lusts: but follow righteousness, faith, charity, peace, with them that call on the Lord out of a pure heart. \nBut foolish and unlearned questions avoid, knowing that they do gender strifes. \nAnd the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient, \nIn meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth; \nAnd that they may recover themselves out of the snare of the devil, who are taken captive by him at his will. \nThis know also, that in the last days perilous times shall come. \nFor men shall be lovers of their own selves, covetous, boasters, proud, blasphemers, disobedient to parents, unthankful, unholy, \nWithout natural affection, trucebreakers, false accusers, incontinent, fierce, despisers of those that are good, \nTraitors, heady, highminded, lovers of pleasures more than lovers of God; \nHaving a form of godliness, but denying the power thereof: from such turn away. \nFor of this sort are they which creep into houses, and lead captive silly women laden with sins, led away with divers lusts, \nEver learning, and never able to come to the knowledge of the truth. \nNow as Jannes and Jambres withstood Moses, so do these also resist the truth: men of corrupt minds, reprobate concerning the faith. \nBut they shall proceed no further: for their folly shall be manifest unto all men, as their's also was. \nBut thou hast fully known my doctrine, manner of life, purpose, faith, longsuffering, charity, patience, \nPersecutions, afflictions, which came unto me at Antioch, at Iconium, at Lystra; what persecutions I endured: but out of them all the Lord delivered me. \nYea, and all that will live godly in Christ Jesus shall suffer persecution. \nBut evil men and seducers shall wax worse and worse, deceiving, and being deceived. \nBut continue thou in the things which thou hast learned and hast been assured of, knowing of whom thou hast learned them; \nAnd that from a child thou hast known the holy scriptures, which are able to make thee wise unto salvation through faith which is in Christ Jesus. \nAll scripture is given by inspiration of God, and is profitable for doctrine, for reproof, for correction, for instruction in righteousness: \nThat the man of God may be perfect, throughly furnished unto all good works. \nI charge thee therefore before God, and the Lord Jesus Christ, who shall judge the quick and the dead at his appearing and his kingdom; \nPreach the word; be instant in season, out of season; reprove, rebuke, exhort with all long suffering and doctrine. \nFor the time will come when they will not endure sound doctrine; but after their own lusts shall they heap to themselves teachers, having itching ears; \nAnd they shall turn away their ears from the truth, and shall be turned unto fables. \nBut watch thou in all things, endure afflictions, do the work of an evangelist, make full proof of thy ministry. \nFor I am now ready to be offered, and the time of my departure is at hand. \nI have fought a good fight, I have finished my course, I have kept the faith: \nHenceforth there is laid up for me a crown of righteousness, which the Lord, the righteous judge, shall give me at that day: and not to me only, but unto all them also that love his appearing. \nDo thy diligence to come shortly unto me: \nFor Demas hath forsaken me, having loved this present world, and is departed unto Thessalonica; Crescens to Galatia, Titus unto Dalmatia. \nOnly Luke is with me. Take Mark, and bring him with thee: for he is profitable to me for the ministry. \nAnd Tychicus have I sent to Ephesus. \nThe cloke that I left at Troas with Carpus, when thou comest, bring with thee, and the books, but especially the parchments. \nAlexander the coppersmith did me much evil: the Lord reward him according to his works: \nOf whom be thou ware also; for he hath greatly withstood our words. \nAt my first answer no man stood with me, but all men forsook me: I pray God that it may not be laid to their charge. \nNotwithstanding the Lord stood with me, and strengthened me; that by me the preaching might be fully known, and that all the Gentiles might hear: and I was delivered out of the mouth of the lion. \nAnd the Lord shall deliver me from every evil work, and will preserve me unto his heavenly kingdom: to whom be glory for ever and ever. Amen. \nSalute Prisca and Aquila, and the household of Onesiphorus. \nErastus abode at Corinth: but Trophimus have I left at Miletum sick. \nDo thy diligence to come before winter. Eubulus greeteth thee, and Pudens, and Linus, and Claudia, and all the brethren. \nThe Lord Jesus Christ be with thy spirit. Grace be with you. Amen. \nPaul, a servant of God, and an apostle of Jesus Christ, according to the faith of God's elect, and the acknowledging of the truth which is after godliness; \nIn hope of eternal life, which God, that cannot lie, promised before the world began; \nBut hath in due times manifested his word through preaching, which is committed unto me according to the commandment of God our Saviour; \nTo Titus, mine own son after the common faith: Grace, mercy, and peace, from God the Father and the Lord Jesus Christ our Saviour. \nFor this cause left I thee in Crete, that thou shouldest set in order the things that are wanting, and ordain elders in every city, as I had appointed thee: \nIf any be blameless, the husband of one wife, having faithful children not accused of riot or unruly. \nFor a bishop must be blameless, as the steward of God; not selfwilled, not soon angry, not given to wine, no striker, not given to filthy lucre; \nBut a lover of hospitality, a lover of good men, sober, just, holy, temperate; \nHolding fast the faithful word as he hath been taught, that he may be able by sound doctrine both to exhort and to convince the gainsayers. \nFor there are many unruly and vain talkers and deceivers, specially they of the circumcision: \nWhose mouths must be stopped, who subvert whole houses, teaching things which they ought not, for filthy lucre's sake. \nOne of themselves, even a prophet of their own, said, the Cretians are alway liars, evil beasts, slow bellies. \nThis witness is true. Wherefore rebuke them sharply, that they may be sound in the faith; \nNot giving heed to Jewish fables, and commandments of men, that turn from the truth. \nUnto the pure all things are pure: but unto them that are defiled and unbelieving is nothing pure; but even their mind and conscience is defiled. \nThey profess that they know God; but in works they deny him, being abominable, and disobedient, and unto every good work reprobate. \nBut speak thou the things which become sound doctrine: \nThat the aged men be sober, grave, temperate, sound in faith, in charity, in patience. \nThe aged women likewise, that they be in behaviour as becometh holiness, not false accusers, not given to much wine, teachers of good things; \nThat they may teach the young women to be sober, to love their husbands, to love their children, \nTo be discreet, chaste, keepers at home, good, obedient to their own husbands, that the word of God be not blasphemed. \nYoung men likewise exhort to be sober minded. \nIn all things shewing thyself a pattern of good works: in doctrine shewing uncorruptness, gravity, sincerity, \nSound speech, that cannot be condemned; that he that is of the contrary part may be ashamed, having no evil thing to say of you. \nExhort servants to be obedient unto their own masters, and to please them well in all things; not answering again; \nNot purloining, but shewing all good fidelity; that they may adorn the doctrine of God our Saviour in all things. \nFor the grace of God that bringeth salvation hath appeared to all men, \nTeaching us that, denying ungodliness and worldly lusts, we should live soberly, righteously, and godly, in this present world; \nLooking for that blessed hope, and the glorious appearing of the great God and our Saviour Jesus Christ; \nWho gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. \nThese things speak, and exhort, and rebuke with all authority. Let no man despise thee. \nPut them in mind to be subject to principalities and powers, to obey magistrates, to be ready to every good work, \nTo speak evil of no man, to be no brawlers, but gentle, shewing all meekness unto all men. \nFor we ourselves also were sometimes foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, and hating one another. \nBut after that the kindness and love of God our Saviour toward man appeared, \nNot by works of righteousness which we have done, but according to his mercy he saved us, by the washing of regeneration, and renewing of the Holy Ghost; \nWhich he shed on us abundantly through Jesus Christ our Saviour; \nThat being justified by his grace, we should be made heirs according to the hope of eternal life. \nThis is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works. These things are good and profitable unto men. \nBut avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain. \nA man that is an heretick after the first and second admonition reject; \nKnowing that he that is such is subverted, and sinneth, being condemned of himself. \nWhen I shall send Artemas unto thee, or Tychicus, be diligent to come unto me to Nicopolis: for I have determined there to winter. \nBring Zenas the lawyer and Apollos on their journey diligently, that nothing be wanting unto them. \nAnd let our's also learn to maintain good works for necessary uses, that they be not unfruitful. \nAll that are with me salute thee. Greet them that love us in the faith. Grace be with you all. Amen. \nPaul, a prisoner of Jesus Christ, and Timothy our brother, unto Philemon our dearly beloved, and fellowlabourer, \nAnd to our beloved Apphia, and Archippus our fellowsoldier, and to the church in thy house: \nGrace to you, and peace, from God our Father and the Lord Jesus Christ. \nI thank my God, making mention of thee always in my prayers, \nHearing of thy love and faith, which thou hast toward the Lord Jesus, and toward all saints; \nThat the communication of thy faith may become effectual by the acknowledging of every good thing which is in you in Christ Jesus. \nFor we have great joy and consolation in thy love, because the bowels of the saints are refreshed by thee, brother. \nWherefore, though I might be much bold in Christ to enjoin thee that which is convenient, \nYet for love's sake I rather beseech thee, being such an one as Paul the aged, and now also a prisoner of Jesus Christ. \nI beseech thee for my son Onesimus, whom I have begotten in my bonds: \nWhich in time past was to thee unprofitable, but now profitable to thee and to me: \nWhom I have sent again: thou therefore receive him, that is, mine own bowels: \nWhom I would have retained with me, that in thy stead he might have ministered unto me in the bonds of the gospel: \nBut without thy mind would I do nothing; that thy benefit should not be as it were of necessity, but willingly. \nFor perhaps he therefore departed for a season, that thou shouldest receive him for ever; \nNot now as a servant, but above a servant, a brother beloved, specially to me, but how much more unto thee, both in the flesh, and in the Lord? \nIf thou count me therefore a partner, receive him as myself. \nIf he hath wronged thee, or oweth thee ought, put that on mine account; \nI Paul have written it with mine own hand, I will repay it: albeit I do not say to thee how thou owest unto me even thine own self besides. \nYea, brother, let me have joy of thee in the Lord: refresh my bowels in the Lord. \nHaving confidence in thy obedience I wrote unto thee, knowing that thou wilt also do more than I say. \nBut withal prepare me also a lodging: for I trust that through your prayers I shall be given unto you. \nThere salute thee Epaphras, my fellowprisoner in Christ Jesus; \nMarcus, Aristarchus, Demas, Lucas, my fellowlabourers. \nThe grace of our Lord Jesus Christ be with your spirit. Amen. \nGod, who at sundry times and in divers manners spake in time past unto the fathers by the prophets, \nHath in these last days spoken unto us by his Son, whom he hath appointed heir of all things, by whom also he made the worlds; \nWho being the brightness of his glory, and the express image of his person, and upholding all things by the word of his power, when he had by himself purged our sins, sat down on the right hand of the Majesty on high: \nBeing made so much better than the angels, as he hath by inheritance obtained a more excellent name than they. \nFor unto which of the angels said he at any time, Thou art my Son, this day have I begotten thee? And again, I will be to him a Father, and he shall be to me a Son? \nAnd again, when he bringeth in the firstbegotten into the world, he saith, And let all the angels of God worship him. \nAnd of the angels he saith, Who maketh his angels spirits, and his ministers a flame of fire. \nBut unto the Son he saith, Thy throne, O God, is for ever and ever: a sceptre of righteousness is the sceptre of thy kingdom. \nThou hast loved righteousness, and hated iniquity; therefore God, even thy God, hath anointed thee with the oil of gladness above thy fellows. \nAnd, Thou, Lord, in the beginning hast laid the foundation of the earth; and the heavens are the works of thine hands: \nThey shall perish; but thou remainest; and they all shall wax old as doth a garment; \nAnd as a vesture shalt thou fold them up, and they shall be changed: but thou art the same, and thy years shall not fail. \nBut to which of the angels said he at any time, Sit on my right hand, until I make thine enemies thy footstool? \nAre they not all ministering spirits, sent forth to minister for them who shall be heirs of salvation? \nTherefore we ought to give the more earnest heed to the things which we have heard, lest at any time we should let them slip. \nFor if the word spoken by angels was stedfast, and every transgression and disobedience received a just recompence of reward; \nHow shall we escape, if we neglect so great salvation; which at the first began to be spoken by the Lord, and was confirmed unto us by them that heard him; \nGod also bearing them witness, both with signs and wonders, and with divers miracles, and gifts of the Holy Ghost, according to his own will? \nFor unto the angels hath he not put in subjection the world to come, whereof we speak. \nBut one in a certain place testified, saying, What is man, that thou art mindful of him? or the son of man that thou visitest him? \nThou madest him a little lower than the angels; thou crownedst him with glory and honour, and didst set him over the works of thy hands: \nThou hast put all things in subjection under his feet. For in that he put all in subjection under him, he left nothing that is not put under him. But now we see not yet all things put under him. \nBut we see Jesus, who was made a little lower than the angels for the suffering of death, crowned with glory and honour; that he by the grace of God should taste death for every man. \nFor it became him, for whom are all things, and by whom are all things, in bringing many sons unto glory, to make the captain of their salvation perfect through sufferings. \nFor both he that sanctifieth and they who are sanctified are all of one: for which cause he is not ashamed to call them brethren, \nSaying, I will declare thy name unto my brethren, in the midst of the church will I sing praise unto thee. \nAnd again, I will put my trust in him. And again, Behold I and the children which God hath given me. \nForasmuch then as the children are partakers of flesh and blood, he also himself likewise took part of the same; that through death he might destroy him that had the power of death, that is, the devil; \nAnd deliver them who through fear of death were all their lifetime subject to bondage. \nFor verily he took not on him the nature of angels; but he took on him the seed of Abraham. \nWherefore in all things it behoved him to be made like unto his brethren, that he might be a merciful and faithful high priest in things pertaining to God, to make reconciliation for the sins of the people. \nFor in that he himself hath suffered being tempted, he is able to succour them that are tempted. \nWherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus; \nWho was faithful to him that appointed him, as also Moses was faithful in all his house. \nFor this man was counted worthy of more glory than Moses, inasmuch as he who hath builded the house hath more honour than the house. \nFor every house is builded by some man; but he that built all things is God. \nAnd Moses verily was faithful in all his house, as a servant, for a testimony of those things which were to be spoken after; \nBut Christ as a son over his own house; whose house are we, if we hold fast the confidence and the rejoicing of the hope firm unto the end. \nWherefore (as the Holy Ghost saith, To day if ye will hear his voice, \nHarden not your hearts, as in the provocation, in the day of temptation in the wilderness: \nWhen your fathers tempted me, proved me, and saw my works forty years. \nWherefore I was grieved with that generation, and said, They do alway err in their heart; and they have not known my ways. \nSo I sware in my wrath, They shall not enter into my rest.) \nTake heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God. \nBut exhort one another daily, while it is called To day; lest any of you be hardened through the deceitfulness of sin. \nFor we are made partakers of Christ, if we hold the beginning of our confidence stedfast unto the end; \nWhile it is said, To day if ye will hear his voice, harden not your hearts, as in the provocation. \nFor some, when they had heard, did provoke: howbeit not all that came out of Egypt by Moses. \nBut with whom was he grieved forty years? was it not with them that had sinned, whose carcases fell in the wilderness? \nAnd to whom sware he that they should not enter into his rest, but to them that believed not? \nSo we see that they could not enter in because of unbelief. \nLet us therefore fear, lest, a promise being left us of entering into his rest, any of you should seem to come short of it. \nFor unto us was the gospel preached, as well as unto them: but the word preached did not profit them, not being mixed with faith in them that heard it. \nFor we which have believed do enter into rest, as he said, As I have sworn in my wrath, if they shall enter into my rest: although the works were finished from the foundation of the world. \nFor he spake in a certain place of the seventh day on this wise, And God did rest the seventh day from all his works. \nAnd in this place again, If they shall enter into my rest. \nSeeing therefore it remaineth that some must enter therein, and they to whom it was first preached entered not in because of unbelief: \nAgain, he limiteth a certain day, saying in David, To day, after so long a time; as it is said, To day if ye will hear his voice, harden not your hearts. \nFor if Jesus had given them rest, then would he not afterward have spoken of another day. \nThere remaineth therefore a rest to the people of God. \nFor he that is entered into his rest, he also hath ceased from his own works, as God did from his. \nLet us labour therefore to enter into that rest, lest any man fall after the same example of unbelief. \nFor the word of God is quick, and powerful, and sharper than any twoedged sword, piercing even to the dividing asunder of soul and spirit, and of the joints and marrow, and is a discerner of the thoughts and intents of the heart. \nNeither is there any creature that is not manifest in his sight: but all things are naked and opened unto the eyes of him with whom we have to do. \nSeeing then that we have a great high priest, that is passed into the heavens, Jesus the Son of God, let us hold fast our profession. \nFor we have not an high priest which cannot be touched with the feeling of our infirmities; but was in all points tempted like as we are, yet without sin. \nLet us therefore come boldly unto the throne of grace, that we may obtain mercy, and find grace to help in time of need. \nFor every high priest taken from among men is ordained for men in things pertaining to God, that he may offer both gifts and sacrifices for sins: \nWho can have compassion on the ignorant, and on them that are out of the way; for that he himself also is compassed with infirmity. \nAnd by reason hereof he ought, as for the people, so also for himself, to offer for sins. \nAnd no man taketh this honour unto himself, but he that is called of God, as was Aaron. \nSo also Christ glorified not himself to be made an high priest; but he that said unto him, Thou art my Son, to day have I begotten thee. \nAs he saith also in another place, Thou art a priest for ever after the order of Melchisedec. \nWho in the days of his flesh, when he had offered up prayers and supplications with strong crying and tears unto him that was able to save him from death, and was heard in that he feared; \nThough he were a Son, yet learned he obedience by the things which he suffered; \nAnd being made perfect, he became the author of eternal salvation unto all them that obey him; \nCalled of God an high priest after the order of Melchisedec. \nOf whom we have many things to say, and hard to be uttered, seeing ye are dull of hearing. \nFor when for the time ye ought to be teachers, ye have need that one teach you again which be the first principles of the oracles of God; and are become such as have need of milk, and not of strong meat. \nFor every one that useth milk is unskilful in the word of righteousness: for he is a babe. \nBut strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil. \nTherefore leaving the principles of the doctrine of Christ, let us go on unto perfection; not laying again the foundation of repentance from dead works, and of faith toward God, \nOf the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment. \nAnd this will we do, if God permit. \nFor it is impossible for those who were once enlightened, and have tasted of the heavenly gift, and were made partakers of the Holy Ghost, \nAnd have tasted the good word of God, and the powers of the world to come, \nIf they shall fall away, to renew them again unto repentance; seeing they crucify to themselves the Son of God afresh, and put him to an open shame. \nFor the earth which drinketh in the rain that cometh oft upon it, and bringeth forth herbs meet for them by whom it is dressed, receiveth blessing from God: \nBut that which beareth thorns and briers is rejected, and is nigh unto cursing; whose end is to be burned. \nBut, beloved, we are persuaded better things of you, and things that accompany salvation, though we thus speak. \nFor God is not unrighteous to forget your work and labour of love, which ye have shewed toward his name, in that ye have ministered to the saints, and do minister. \nAnd we desire that every one of you do shew the same diligence to the full assurance of hope unto the end: \nThat ye be not slothful, but followers of them who through faith and patience inherit the promises. \nFor when God made promise to Abraham, because he could swear by no greater, he sware by himself, \nSaying, Surely blessing I will bless thee, and multiplying I will multiply thee. \nAnd so, after he had patiently endured, he obtained the promise. \nFor men verily swear by the greater: and an oath for confirmation is to them an end of all strife. \nWherein God, willing more abundantly to shew unto the heirs of promise the immutability of his counsel, confirmed it by an oath: \nThat by two immutable things, in which it was impossible for God to lie, we might have a strong consolation, who have fled for refuge to lay hold upon the hope set before us: \nWhich hope we have as an anchor of the soul, both sure and stedfast, and which entereth into that within the veil; \nWhither the forerunner is for us entered, even Jesus, made an high priest for ever after the order of Melchisedec. \nFor this Melchisedec, king of Salem, priest of the most high God, who met Abraham returning from the slaughter of the kings, and blessed him; \nTo whom also Abraham gave a tenth part of all; first being by interpretation King of righteousness, and after that also King of Salem, which is, King of peace; \nWithout father, without mother, without descent, having neither beginning of days, nor end of life; but made like unto the Son of God; abideth a priest continually. \nNow consider how great this man was, unto whom even the patriarch Abraham gave the tenth of the spoils. \nAnd verily they that are of the sons of Levi, who receive the office of the priesthood, have a commandment to take tithes of the people according to the law, that is, of their brethren, though they come out of the loins of Abraham: \nBut he whose descent is not counted from them received tithes of Abraham, and blessed him that had the promises. \nAnd without all contradiction the less is blessed of the better. \nAnd here men that die receive tithes; but there he receiveth them, of whom it is witnessed that he liveth. \nAnd as I may so say, Levi also, who receiveth tithes, payed tithes in Abraham. \nFor he was yet in the loins of his father, when Melchisedec met him. \nIf therefore perfection were by the Levitical priesthood, (for under it the people received the law,) what further need was there that another priest should rise after the order of Melchisedec, and not be called after the order of Aaron? \nFor the priesthood being changed, there is made of necessity a change also of the law. \nFor he of whom these things are spoken pertaineth to another tribe, of which no man gave attendance at the altar. \nFor it is evident that our Lord sprang out of Juda; of which tribe Moses spake nothing concerning priesthood. \nAnd it is yet far more evident: for that after the similitude of Melchisedec there ariseth another priest, \nWho is made, not after the law of a carnal commandment, but after the power of an endless life. \nFor he testifieth, Thou art a priest for ever after the order of Melchisedec. \nFor there is verily a disannulling of the commandment going before for the weakness and unprofitableness thereof. \nFor the law made nothing perfect, but the bringing in of a better hope did; by the which we draw nigh unto God. \nAnd inasmuch as not without an oath he was made priest: \n(For those priests were made without an oath; but this with an oath by him that said unto him, The Lord sware and will not repent, Thou art a priest for ever after the order of Melchisedec:) \nBy so much was Jesus made a surety of a better testament. \nAnd they truly were many priests, because they were not suffered to continue by reason of death: \nBut this man, because he continueth ever, hath an unchangeable priesthood. \nWherefore he is able also to save them to the uttermost that come unto God by him, seeing he ever liveth to make intercession for them. \nFor such an high priest became us, who is holy, harmless, undefiled, separate from sinners, and made higher than the heavens; \nWho needeth not daily, as those high priests, to offer up sacrifice, first for his own sins, and then for the people's: for this he did once, when he offered up himself. \nFor the law maketh men high priests which have infirmity; but the word of the oath, which was since the law, maketh the Son, who is consecrated for evermore. \nNow of the things which we have spoken this is the sum: We have such an high priest, who is set on the right hand of the throne of the Majesty in the heavens; \nA minister of the sanctuary, and of the true tabernacle, which the Lord pitched, and not man. \nFor every high priest is ordained to offer gifts and sacrifices: wherefore it is of necessity that this man have somewhat also to offer. \nFor if he were on earth, he should not be a priest, seeing that there are priests that offer gifts according to the law: \nWho serve unto the example and shadow of heavenly things, as Moses was admonished of God when he was about to make the tabernacle: for, See, saith he, that thou make all things according to the pattern shewed to thee in the mount. \nBut now hath he obtained a more excellent ministry, by how much also he is the mediator of a better covenant, which was established upon better promises. \nFor if that first covenant had been faultless, then should no place have been sought for the second. \nFor finding fault with them, he saith, Behold, the days come, saith the Lord, when I will make a new covenant with the house of Israel and with the house of Judah: \nNot according to the covenant that I made with their fathers in the day when I took them by the hand to lead them out of the land of Egypt; because they continued not in my covenant, and I regarded them not, saith the Lord. \nFor this is the covenant that I will make with the house of Israel after those days, saith the Lord; I will put my laws into their mind, and write them in their hearts: and I will be to them a God, and they shall be to me a people: \nAnd they shall not teach every man his neighbour, and every man his brother, saying, Know the Lord: for all shall know me, from the least to the greatest. \nFor I will be merciful to their unrighteousness, and their sins and their iniquities will I remember no more. \nIn that he saith, A new covenant, he hath made the first old. Now that which decayeth and waxeth old is ready to vanish away. \nThen verily the first covenant had also ordinances of divine service, and a worldly sanctuary. \nFor there was a tabernacle made; the first, wherein was the candlestick, and the table, and the shewbread; which is called the sanctuary. \nAnd after the second veil, the tabernacle which is called the Holiest of all; \nWhich had the golden censer, and the ark of the covenant overlaid round about with gold, wherein was the golden pot that had manna, and Aaron's rod that budded, and the tables of the covenant; \nAnd over it the cherubims of glory shadowing the mercyseat; of which we cannot now speak particularly. \nNow when these things were thus ordained, the priests went always into the first tabernacle, accomplishing the service of God. \nBut into the second went the high priest alone once every year, not without blood, which he offered for himself, and for the errors of the people: \nThe Holy Ghost this signifying, that the way into the holiest of all was not yet made manifest, while as the first tabernacle was yet standing: \nWhich was a figure for the time then present, in which were offered both gifts and sacrifices, that could not make him that did the service perfect, as pertaining to the conscience; \nWhich stood only in meats and drinks, and divers washings, and carnal ordinances, imposed on them until the time of reformation. \nBut Christ being come an high priest of good things to come, by a greater and more perfect tabernacle, not made with hands, that is to say, not of this building; \nNeither by the blood of goats and calves, but by his own blood he entered in once into the holy place, having obtained eternal redemption for us. \nFor if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh: \nHow much more shall the blood of Christ, who through the eternal Spirit offered himself without spot to God, purge your conscience from dead works to serve the living God? \nAnd for this cause he is the mediator of the new testament, that by means of death, for the redemption of the transgressions that were under the first testament, they which are called might receive the promise of eternal inheritance. \nFor where a testament is, there must also of necessity be the death of the testator. \nFor a testament is of force after men are dead: otherwise it is of no strength at all while the testator liveth. \nWhereupon neither the first testament was dedicated without blood. \nFor when Moses had spoken every precept to all the people according to the law, he took the blood of calves and of goats, with water, and scarlet wool, and hyssop, and sprinkled both the book, and all the people, \nSaying, This is the blood of the testament which God hath enjoined unto you. \nMoreover he sprinkled with blood both the tabernacle, and all the vessels of the ministry. \nAnd almost all things are by the law purged with blood; and without shedding of blood is no remission. \nIt was therefore necessary that the patterns of things in the heavens should be purified with these; but the heavenly things themselves with better sacrifices than these. \nFor Christ is not entered into the holy places made with hands, which are the figures of the true; but into heaven itself, now to appear in the presence of God for us: \nNor yet that he should offer himself often, as the high priest entereth into the holy place every year with blood of others; \nFor then must he often have suffered since the foundation of the world: but now once in the end of the world hath he appeared to put away sin by the sacrifice of himself. \nAnd as it is appointed unto men once to die, but after this the judgment: \nSo Christ was once offered to bear the sins of many; and unto them that look for him shall he appear the second time without sin unto salvation. \nFor the law having a shadow of good things to come, and not the very image of the things, can never with those sacrifices which they offered year by year continually make the comers thereunto perfect. \nFor then would they not have ceased to be offered? because that the worshippers once purged should have had no more conscience of sins. \nBut in those sacrifices there is a remembrance again made of sins every year. \nFor it is not possible that the blood of bulls and of goats should take away sins. \nWherefore when he cometh into the world, he saith, Sacrifice and offering thou wouldest not, but a body hast thou prepared me: \nIn burnt offerings and sacrifices for sin thou hast had no pleasure. \nThen said I, Lo, I come (in the volume of the book it is written of me,) to do thy will, O God. \nAbove when he said, Sacrifice and offering and burnt offerings and offering for sin thou wouldest not, neither hadst pleasure therein; which are offered by the law; \nThen said he, Lo, I come to do thy will, O God. He taketh away the first, that he may establish the second. \nBy the which will we are sanctified through the offering of the body of Jesus Christ once for all. \nAnd every priest standeth daily ministering and offering oftentimes the same sacrifices, which can never take away sins: \nBut this man, after he had offered one sacrifice for sins for ever, sat down on the right hand of God; \nFrom henceforth expecting till his enemies be made his footstool. \nFor by one offering he hath perfected for ever them that are sanctified. \nWhereof the Holy Ghost also is a witness to us: for after that he had said before, \nThis is the covenant that I will make with them after those days, saith the Lord, I will put my laws into their hearts, and in their minds will I write them; \nAnd their sins and iniquities will I remember no more. \nNow where remission of these is, there is no more offering for sin. \nHaving therefore, brethren, boldness to enter into the holiest by the blood of Jesus, \nBy a new and living way, which he hath consecrated for us, through the veil, that is to say, his flesh; \nAnd having an high priest over the house of God; \nLet us draw near with a true heart in full assurance of faith, having our hearts sprinkled from an evil conscience, and our bodies washed with pure water. \nLet us hold fast the profession of our faith without wavering; (for he is faithful that promised;) \nAnd let us consider one another to provoke unto love and to good works: \nNot forsaking the assembling of ourselves together, as the manner of some is; but exhorting one another: and so much the more, as ye see the day approaching. \nFor if we sin wilfully after that we have received the knowledge of the truth, there remaineth no more sacrifice for sins, \nBut a certain fearful looking for of judgment and fiery indignation, which shall devour the adversaries. \nHe that despised Moses' law died without mercy under two or three witnesses: \nOf how much sorer punishment, suppose ye, shall he be thought worthy, who hath trodden under foot the Son of God, and hath counted the blood of the covenant, wherewith he was sanctified, an unholy thing, and hath done despite unto the Spirit of grace? \nFor we know him that hath said, Vengeance belongeth unto me, I will recompense, saith the Lord. And again, The Lord shall judge his people. \nIt is a fearful thing to fall into the hands of the living God. \nBut call to remembrance the former days, in which, after ye were illuminated, ye endured a great fight of afflictions; \nPartly, whilst ye were made a gazingstock both by reproaches and afflictions; and partly, whilst ye became companions of them that were so used. \nFor ye had compassion of me in my bonds, and took joyfully the spoiling of your goods, knowing in yourselves that ye have in heaven a better and an enduring substance. \nCast not away therefore your confidence, which hath great recompence of reward. \nFor ye have need of patience, that, after ye have done the will of God, ye might receive the promise. \nFor yet a little while, and he that shall come will come, and will not tarry. \nNow the just shall live by faith: but if any man draw back, my soul shall have no pleasure in him. \nBut we are not of them who draw back unto perdition; but of them that believe to the saving of the soul. \nNow faith is the substance of things hoped for, the evidence of things not seen. \nFor by it the elders obtained a good report. \nThrough faith we understand that the worlds were framed by the word of God, so that things which are seen were not made of things which do appear. \nBy faith Abel offered unto God a more excellent sacrifice than Cain, by which he obtained witness that he was righteous, God testifying of his gifts: and by it he being dead yet speaketh. \nBy faith Enoch was translated that he should not see death; and was not found, because God had translated him: for before his translation he had this testimony, that he pleased God. \nBut without faith it is impossible to please him: for he that cometh to God must believe that he is, and that he is a rewarder of them that diligently seek him. \nBy faith Noah, being warned of God of things not seen as yet, moved with fear, prepared an ark to the saving of his house; by the which he condemned the world, and became heir of the righteousness which is by faith. \nBy faith Abraham, when he was called to go out into a place which he should after receive for an inheritance, obeyed; and he went out, not knowing whither he went. \nBy faith he sojourned in the land of promise, as in a strange country, dwelling in tabernacles with Isaac and Jacob, the heirs with him of the same promise: \nFor he looked for a city which hath foundations, whose builder and maker is God. \nThrough faith also Sara herself received strength to conceive seed, and was delivered of a child when she was past age, because she judged him faithful who had promised. \nTherefore sprang there even of one, and him as good as dead, so many as the stars of the sky in multitude, and as the sand which is by the sea shore innumerable. \nThese all died in faith, not having received the promises, but having seen them afar off, and were persuaded of them, and embraced them, and confessed that they were strangers and pilgrims on the earth. \nFor they that say such things declare plainly that they seek a country. \nAnd truly, if they had been mindful of that country from whence they came out, they might have had opportunity to have returned. \nBut now they desire a better country, that is, an heavenly: wherefore God is not ashamed to be called their God: for he hath prepared for them a city. \nBy faith Abraham, when he was tried, offered up Isaac: and he that had received the promises offered up his only begotten son, \nOf whom it was said, That in Isaac shall thy seed be called: \nAccounting that God was able to raise him up, even from the dead; from whence also he received him in a figure. \nBy faith Isaac blessed Jacob and Esau concerning things to come. \nBy faith Jacob, when he was a dying, blessed both the sons of Joseph; and worshipped, leaning upon the top of his staff. \nBy faith Joseph, when he died, made mention of the departing of the children of Israel; and gave commandment concerning his bones. \nBy faith Moses, when he was born, was hid three months of his parents, because they saw he was a proper child; and they were not afraid of the king's commandment. \nBy faith Moses, when he was come to years, refused to be called the son of Pharaoh's daughter; \nChoosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season; \nEsteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward. \nBy faith he forsook Egypt, not fearing the wrath of the king: for he endured, as seeing him who is invisible. \nThrough faith he kept the passover, and the sprinkling of blood, lest he that destroyed the firstborn should touch them. \nBy faith they passed through the Red sea as by dry land: which the Egyptians assaying to do were drowned. \nBy faith the walls of Jericho fell down, after they were compassed about seven days. \nBy faith the harlot Rahab perished not with them that believed not, when she had received the spies with peace. \nAnd what shall I more say? for the time would fail me to tell of Gedeon, and of Barak, and of Samson, and of Jephthae; of David also, and Samuel, and of the prophets: \nWho through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions. \nQuenched the violence of fire, escaped the edge of the sword, out of weakness were made strong, waxed valiant in fight, turned to flight the armies of the aliens. \nWomen received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection: \nAnd others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment: \nThey were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented; \n(Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth. \nAnd these all, having obtained a good report through faith, received not the promise: \nGod having provided some better thing for us, that they without us should not be made perfect. \nWherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, \nLooking unto Jesus the author and finisher of our faith; who for the joy that was set before him endured the cross, despising the shame, and is set down at the right hand of the throne of God. \nFor consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds. \nYe have not yet resisted unto blood, striving against sin. \nAnd ye have forgotten the exhortation which speaketh unto you as unto children, My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him: \nFor whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth. \nIf ye endure chastening, God dealeth with you as with sons; for what son is he whom the father chasteneth not? \nBut if ye be without chastisement, whereof all are partakers, then are ye bastards, and not sons. \nFurthermore we have had fathers of our flesh which corrected us, and we gave them reverence: shall we not much rather be in subjection unto the Father of spirits, and live? \nFor they verily for a few days chastened us after their own pleasure; but he for our profit, that we might be partakers of his holiness. \nNow no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby. \nWherefore lift up the hands which hang down, and the feeble knees; \nAnd make straight paths for your feet, lest that which is lame be turned out of the way; but let it rather be healed. \nFollow peace with all men, and holiness, without which no man shall see the Lord: \nLooking diligently lest any man fail of the grace of God; lest any root of bitterness springing up trouble you, and thereby many be defiled; \nLest there be any fornicator, or profane person, as Esau, who for one morsel of meat sold his birthright. \nFor ye know how that afterward, when he would have inherited the blessing, he was rejected: for he found no place of repentance, though he sought it carefully with tears. \nFor ye are not come unto the mount that might be touched, and that burned with fire, nor unto blackness, and darkness, and tempest, \nAnd the sound of a trumpet, and the voice of words; which voice they that heard intreated that the word should not be spoken to them any more: \n(For they could not endure that which was commanded, And if so much as a beast touch the mountain, it shall be stoned, or thrust through with a dart: \nAnd so terrible was the sight, that Moses said, I exceedingly fear and quake:) \nBut ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels, \nTo the general assembly and church of the firstborn, which are written in heaven, and to God the Judge of all, and to the spirits of just men made perfect, \nAnd to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things that that of Abel. \nSee that ye refuse not him that speaketh. For if they escaped not who refused him that spake on earth, much more shall not we escape, if we turn away from him that speaketh from heaven: \nWhose voice then shook the earth: but now he hath promised, saying, Yet once more I shake not the earth only, but also heaven. \nAnd this word, Yet once more, signifieth the removing of those things that are shaken, as of things that are made, that those things which cannot be shaken may remain. \nWherefore we receiving a kingdom which cannot be moved, let us have grace, whereby we may serve God acceptably with reverence and godly fear: \nFor our God is a consuming fire. \nLet brotherly love continue. \nBe not forgetful to entertain strangers: for thereby some have entertained angels unawares. \nRemember them that are in bonds, as bound with them; and them which suffer adversity, as being yourselves also in the body. \nMarriage is honourable in all, and the bed undefiled: but whoremongers and adulterers God will judge. \nLet your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee. \nSo that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me. \nRemember them which have the rule over you, who have spoken unto you the word of God: whose faith follow, considering the end of their conversation. \nJesus Christ the same yesterday, and to day, and for ever. \nBe not carried about with divers and strange doctrines. For it is a good thing that the heart be established with grace; not with meats, which have not profited them that have been occupied therein. \nWe have an altar, whereof they have no right to eat which serve the tabernacle. \nFor the bodies of those beasts, whose blood is brought into the sanctuary by the high priest for sin, are burned without the camp. \nWherefore Jesus also, that he might sanctify the people with his own blood, suffered without the gate. \nLet us go forth therefore unto him without the camp, bearing his reproach. \nFor here have we no continuing city, but we seek one to come. \nBy him therefore let us offer the sacrifice of praise to God continually, that is, the fruit of our lips giving thanks to his name. \nBut to do good and to communicate forget not: for with such sacrifices God is well pleased. \nObey them that have the rule over you, and submit yourselves: for they watch for your souls, as they that must give account, that they may do it with joy, and not with grief: for that is unprofitable for you. \nPray for us: for we trust we have a good conscience, in all things willing to live honestly. \nBut I beseech you the rather to do this, that I may be restored to you the sooner. \nNow the God of peace, that brought again from the dead our Lord Jesus, that great shepherd of the sheep, through the blood of the everlasting covenant, \nMake you perfect in every good work to do his will, working in you that which is wellpleasing in his sight, through Jesus Christ; to whom be glory for ever and ever. Amen. \nAnd I beseech you, brethren, suffer the word of exhortation: for I have written a letter unto you in few words. \nKnow ye that our brother Timothy is set at liberty; with whom, if he come shortly, I will see you. \nSalute all them that have the rule over you, and all the saints. They of Italy salute you. \nGrace be with you all. Amen. \nJames, a servant of God and of the Lord Jesus Christ, to the twelve tribes which are scattered abroad, greeting. \nMy brethren, count it all joy when ye fall into divers temptations; \nKnowing this, that the trying of your faith worketh patience. \nBut let patience have her perfect work, that ye may be perfect and entire, wanting nothing. \nIf any of you lack wisdom, let him ask of God, that giveth to all men liberally, and upbraideth not; and it shall be given him. \nBut let him ask in faith, nothing wavering. For he that wavereth is like a wave of the sea driven with the wind and tossed. \nFor let not that man think that he shall receive any thing of the Lord. \nA double minded man is unstable in all his ways. \nLet the brother of low degree rejoice in that he is exalted: \nBut the rich, in that he is made low: because as the flower of the grass he shall pass away. \nFor the sun is no sooner risen with a burning heat, but it withereth the grass, and the flower thereof falleth, and the grace of the fashion of it perisheth: so also shall the rich man fade away in his ways. \nBlessed is the man that endureth temptation: for when he is tried, he shall receive the crown of life, which the Lord hath promised to them that love him. \nLet no man say when he is tempted, I am tempted of God: for God cannot be tempted with evil, neither tempteth he any man: \nBut every man is tempted, when he is drawn away of his own lust, and enticed. \nThen when lust hath conceived, it bringeth forth sin: and sin, when it is finished, bringeth forth death. \nDo not err, my beloved brethren. \nEvery good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning. \nOf his own will begat he us with the word of truth, that we should be a kind of firstfruits of his creatures. \nWherefore, my beloved brethren, let every man be swift to hear, slow to speak, slow to wrath: \nFor the wrath of man worketh not the righteousness of God. \nWherefore lay apart all filthiness and superfluity of naughtiness, and receive with meekness the engrafted word, which is able to save your souls. \nBut be ye doers of the word, and not hearers only, deceiving your own selves. \nFor if any be a hearer of the word, and not a doer, he is like unto a man beholding his natural face in a glass: \nFor he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was. \nBut whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed. \nIf any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man's religion is vain. \nPure religion and undefiled before God and the Father is this, To visit the fatherless and widows in their affliction, and to keep himself unspotted from the world. \nMy brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons. \nFor if there come unto your assembly a man with a gold ring, in goodly apparel, and there come in also a poor man in vile raiment; \nAnd ye have respect to him that weareth the gay clothing, and say unto him, Sit thou here in a good place; and say to the poor, Stand thou there, or sit here under my footstool: \nAre ye not then partial in yourselves, and are become judges of evil thoughts? \nHearken, my beloved brethren, Hath not God chosen the poor of this world rich in faith, and heirs of the kingdom which he hath promised to them that love him? \nBut ye have despised the poor. Do not rich men oppress you, and draw you before the judgment seats? \nDo not they blaspheme that worthy name by the which ye are called? \nIf ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well: \nBut if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors. \nFor whosoever shall keep the whole law, and yet offend in one point, he is guilty of all. \nFor he that said, Do not commit adultery, said also, Do not kill. Now if thou commit no adultery, yet if thou kill, thou art become a transgressor of the law. \nSo speak ye, and so do, as they that shall be judged by the law of liberty. \nFor he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment. \nWhat doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him? \nIf a brother or sister be naked, and destitute of daily food, \nAnd one of you say unto them, Depart in peace, be ye warmed and filled; notwithstanding ye give them not those things which are needful to the body; what doth it profit? \nEven so faith, if it hath not works, is dead, being alone. \nYea, a man may say, Thou hast faith, and I have works: shew me thy faith without thy works, and I will shew thee my faith by my works. \nThou believest that there is one God; thou doest well: the devils also believe, and tremble. \nBut wilt thou know, O vain man, that faith without works is dead? \nWas not Abraham our father justified by works, when he had offered Isaac his son upon the altar? \nSeest thou how faith wrought with his works, and by works was faith made perfect? \nAnd the scripture was fulfilled which saith, Abraham believed God, and it was imputed unto him for righteousness: and he was called the Friend of God. \nYe see then how that by works a man is justified, and not by faith only. \nLikewise also was not Rahab the harlot justified by works, when she had received the messengers, and had sent them out another way? \nFor as the body without the spirit is dead, so faith without works is dead also. \nMy brethren, be not many masters, knowing that we shall receive the greater condemnation. \nFor in many things we offend all. If any man offend not in word, the same is a perfect man, and able also to bridle the whole body. \nBehold, we put bits in the horses' mouths, that they may obey us; and we turn about their whole body. \nBehold also the ships, which though they be so great, and are driven of fierce winds, yet are they turned about with a very small helm, whithersoever the governor listeth. \nEven so the tongue is a little member, and boasteth great things. Behold, how great a matter a little fire kindleth! \nAnd the tongue is a fire, a world of iniquity: so is the tongue among our members, that it defileth the whole body, and setteth on fire the course of nature; and it is set on fire of hell. \nFor every kind of beasts, and of birds, and of serpents, and of things in the sea, is tamed, and hath been tamed of mankind: \nBut the tongue can no man tame; it is an unruly evil, full of deadly poison. \nTherewith bless we God, even the Father; and therewith curse we men, which are made after the similitude of God. \nOut of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be. \nDoth a fountain send forth at the same place sweet water and bitter? \nCan the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh. \nWho is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom. \nBut if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth. \nThis wisdom descendeth not from above, but is earthly, sensual, devilish. \nFor where envying and strife is, there is confusion and every evil work. \nBut the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits, without partiality, and without hypocrisy. \nAnd the fruit of righteousness is sown in peace of them that make peace. \nFrom whence come wars and fightings among you? come they not hence, even of your lusts that war in your members? \nYe lust, and have not: ye kill, and desire to have, and cannot obtain: ye fight and war, yet ye have not, because ye ask not. \nYe ask, and receive not, because ye ask amiss, that ye may consume it upon your lusts. \nYe adulterers and adulteresses, know ye not that the friendship of the world is enmity with God? whosoever therefore will be a friend of the world is the enemy of God. \nDo ye think that the scripture saith in vain, The spirit that dwelleth in us lusteth to envy? \nBut he giveth more grace. Wherefore he saith, God resisteth the proud, but giveth grace unto the humble. \nSubmit yourselves therefore to God. Resist the devil, and he will flee from you. \nDraw nigh to God, and he will draw nigh to you. Cleanse your hands, ye sinners; and purify your hearts, ye double minded. \nBe afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness. \nHumble yourselves in the sight of the Lord, and he shall lift you up. \nSpeak not evil one of another, brethren. He that speaketh evil of his brother, and judgeth his brother, speaketh evil of the law, and judgeth the law: but if thou judge the law, thou art not a doer of the law, but a judge. \nThere is one lawgiver, who is able to save and to destroy: who art thou that judgest another? \nGo to now, ye that say, To day or to morrow we will go into such a city, and continue there a year, and buy and sell, and get gain: \nWhereas ye know not what shall be on the morrow. For what is your life? It is even a vapour, that appeareth for a little time, and then vanisheth away. \nFor that ye ought to say, If the Lord will, we shall live, and do this, or that. \nBut now ye rejoice in your boastings: all such rejoicing is evil. \nTherefore to him that knoweth to do good, and doeth it not, to him it is sin. \nGo to now, ye rich men, weep and howl for your miseries that shall come upon you. \nYour riches are corrupted, and your garments are motheaten. \nYour gold and silver is cankered; and the rust of them shall be a witness against you, and shall eat your flesh as it were fire. Ye have heaped treasure together for the last days. \nBehold, the hire of the labourers who have reaped down your fields, which is of you kept back by fraud, crieth: and the cries of them which have reaped are entered into the ears of the Lord of sabaoth. \nYe have lived in pleasure on the earth, and been wanton; ye have nourished your hearts, as in a day of slaughter. \nYe have condemned and killed the just; and he doth not resist you. \nBe patient therefore, brethren, unto the coming of the Lord. Behold, the husbandman waiteth for the precious fruit of the earth, and hath long patience for it, until he receive the early and latter rain. \nBe ye also patient; stablish your hearts: for the coming of the Lord draweth nigh. \nGrudge not one against another, brethren, lest ye be condemned: behold, the judge standeth before the door. \nTake, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience. \nBehold, we count them happy which endure. Ye have heard of the patience of Job, and have seen the end of the Lord; that the Lord is very pitiful, and of tender mercy. \nBut above all things, my brethren, swear not, neither by heaven, neither by the earth, neither by any other oath: but let your yea be yea; and your nay, nay; lest ye fall into condemnation. \nIs any among you afflicted? let him pray. Is any merry? let him sing psalms. \nIs any sick among you? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord: \nAnd the prayer of faith shall save the sick, and the Lord shall raise him up; and if he have committed sins, they shall be forgiven him. \nConfess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much. \nElias was a man subject to like passions as we are, and he prayed earnestly that it might not rain: and it rained not on the earth by the space of three years and six months. \nAnd he prayed again, and the heaven gave rain, and the earth brought forth her fruit. \nBrethren, if any of you do err from the truth, and one convert him; \nLet him know, that he which converteth the sinner from the error of his way shall save a soul from death, and shall hide a multitude of sins. \nPeter, an apostle of Jesus Christ, to the strangers scattered throughout Pontus, Galatia, Cappadocia, Asia, and Bithynia, \nElect according to the foreknowledge of God the Father, through sanctification of the Spirit, unto obedience and sprinkling of the blood of Jesus Christ: Grace unto you, and peace, be multiplied. \nBlessed be the God and Father of our Lord Jesus Christ, which according to his abundant mercy hath begotten us again unto a lively hope by the resurrection of Jesus Christ from the dead, \nTo an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you, \nWho are kept by the power of God through faith unto salvation ready to be revealed in the last time. \nWherein ye greatly rejoice, though now for a season, if need be, ye are in heaviness through manifold temptations: \nThat the trial of your faith, being much more precious than of gold that perisheth, though it be tried with fire, might be found unto praise and honour and glory at the appearing of Jesus Christ: \nWhom having not seen, ye love; in whom, though now ye see him not, yet believing, ye rejoice with joy unspeakable and full of glory: \nReceiving the end of your faith, even the salvation of your souls. \nOf which salvation the prophets have enquired and searched diligently, who prophesied of the grace that should come unto you: \nSearching what, or what manner of time the Spirit of Christ which was in them did signify, when it testified beforehand the sufferings of Christ, and the glory that should follow. \nUnto whom it was revealed, that not unto themselves, but unto us they did minister the things, which are now reported unto you by them that have preached the gospel unto you with the Holy Ghost sent down from heaven; which things the angels desire to look into. \nWherefore gird up the loins of your mind, be sober, and hope to the end for the grace that is to be brought unto you at the revelation of Jesus Christ; \nAs obedient children, not fashioning yourselves according to the former lusts in your ignorance: \nBut as he which hath called you is holy, so be ye holy in all manner of conversation; \nBecause it is written, Be ye holy; for I am holy. \nAnd if ye call on the Father, who without respect of persons judgeth according to every man's work, pass the time of your sojourning here in fear: \nForasmuch as ye know that ye were not redeemed with corruptible things, as silver and gold, from your vain conversation received by tradition from your fathers; \nBut with the precious blood of Christ, as of a lamb without blemish and without spot: \nWho verily was foreordained before the foundation of the world, but was manifest in these last times for you, \nWho by him do believe in God, that raised him up from the dead, and gave him glory; that your faith and hope might be in God. \nSeeing ye have purified your souls in obeying the truth through the Spirit unto unfeigned love of the brethren, see that ye love one another with a pure heart fervently: \nBeing born again, not of corruptible seed, but of incorruptible, by the word of God, which liveth and abideth for ever. \nFor all flesh is as grass, and all the glory of man as the flower of grass. The grass withereth, and the flower thereof falleth away: \nBut the word of the Lord endureth for ever. And this is the word which by the gospel is preached unto you. \nWherefore laying aside all malice, and all guile, and hypocrisies, and envies, all evil speakings, \nAs newborn babes, desire the sincere milk of the word, that ye may grow thereby: \nIf so be ye have tasted that the Lord is gracious. \nTo whom coming, as unto a living stone, disallowed indeed of men, but chosen of God, and precious, \nYe also, as lively stones, are built up a spiritual house, an holy priesthood, to offer up spiritual sacrifices, acceptable to God by Jesus Christ. \nWherefore also it is contained in the scripture, Behold, I lay in Sion a chief corner stone, elect, precious: and he that believeth on him shall not be confounded. \nUnto you therefore which believe he is precious: but unto them which be disobedient, the stone which the builders disallowed, the same is made the head of the corner, \nAnd a stone of stumbling, and a rock of offence, even to them which stumble at the word, being disobedient: whereunto also they were appointed. \nBut ye are a chosen generation, a royal priesthood, an holy nation, a peculiar people; that ye should shew forth the praises of him who hath called you out of darkness into his marvellous light; \nWhich in time past were not a people, but are now the people of God: which had not obtained mercy, but now have obtained mercy. \nDearly beloved, I beseech you as strangers and pilgrims, abstain from fleshly lusts, which war against the soul; \nHaving your conversation honest among the Gentiles: that, whereas they speak against you as evildoers, they may by your good works, which they shall behold, glorify God in the day of visitation. \nSubmit yourselves to every ordinance of man for the Lord's sake: whether it be to the king, as supreme; \nOr unto governors, as unto them that are sent by him for the punishment of evildoers, and for the praise of them that do well. \nFor so is the will of God, that with well doing ye may put to silence the ignorance of foolish men: \nAs free, and not using your liberty for a cloke of maliciousness, but as the servants of God. \nHonour all men. Love the brotherhood. Fear God. Honour the king. \nServants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward. \nFor this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully. \nFor what glory is it, if, when ye be buffeted for your faults, ye shall take it patiently? but if, when ye do well, and suffer for it, ye take it patiently, this is acceptable with God. \nFor even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps: \nWho did no sin, neither was guile found in his mouth: \nWho, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously: \nWho his own self bare our sins in his own body on the tree, that we, being dead to sins, should live unto righteousness: by whose stripes ye were healed. \nFor ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls. \nLikewise, ye wives, be in subjection to your own husbands; that, if any obey not the word, they also may without the word be won by the conversation of the wives; \nWhile they behold your chaste conversation coupled with fear. \nWhose adorning let it not be that outward adorning of plaiting the hair, and of wearing of gold, or of putting on of apparel; \nBut let it be the hidden man of the heart, in that which is not corruptible, even the ornament of a meek and quiet spirit, which is in the sight of God of great price. \nFor after this manner in the old time the holy women also, who trusted in God, adorned themselves, being in subjection unto their own husbands: \nEven as Sara obeyed Abraham, calling him lord: whose daughters ye are, as long as ye do well, and are not afraid with any amazement. \nLikewise, ye husbands, dwell with them according to knowledge, giving honour unto the wife, as unto the weaker vessel, and as being heirs together of the grace of life; that your prayers be not hindered. \nFinally, be ye all of one mind, having compassion one of another, love as brethren, be pitiful, be courteous: \nNot rendering evil for evil, or railing for railing: but contrariwise blessing; knowing that ye are thereunto called, that ye should inherit a blessing. \nFor he that will love life, and see good days, let him refrain his tongue from evil, and his lips that they speak no guile: \nLet him eschew evil, and do good; let him seek peace, and ensue it. \nFor the eyes of the Lord are over the righteous, and his ears are open unto their prayers: but the face of the Lord is against them that do evil. \nAnd who is he that will harm you, if ye be followers of that which is good? \nBut and if ye suffer for righteousness' sake, happy are ye: and be not afraid of their terror, neither be troubled; \nBut sanctify the Lord God in your hearts: and be ready always to give an answer to every man that asketh you a reason of the hope that is in you with meekness and fear: \nHaving a good conscience; that, whereas they speak evil of you, as of evildoers, they may be ashamed that falsely accuse your good conversation in Christ. \nFor it is better, if the will of God be so, that ye suffer for well doing, than for evil doing. \nFor Christ also hath once suffered for sins, the just for the unjust, that he might bring us to God, being put to death in the flesh, but quickened by the Spirit: \nBy which also he went and preached unto the spirits in prison; \nWhich sometime were disobedient, when once the longsuffering of God waited in the days of Noah, while the ark was a preparing, wherein few, that is, eight souls were saved by water. \nThe like figure whereunto even baptism doth also now save us (not the putting away of the filth of the flesh, but the answer of a good conscience toward God,) by the resurrection of Jesus Christ: \nWho is gone into heaven, and is on the right hand of God; angels and authorities and powers being made subject unto him. \nForasmuch then as Christ hath suffered for us in the flesh, arm yourselves likewise with the same mind: for he that hath suffered in the flesh hath ceased from sin; \nThat he no longer should live the rest of his time in the flesh to the lusts of men, but to the will of God. \nFor the time past of our life may suffice us to have wrought the will of the Gentiles, when we walked in lasciviousness, lusts, excess of wine, revellings, banquetings, and abominable idolatries: \nWherein they think it strange that ye run not with them to the same excess of riot, speaking evil of you: \nWho shall give account to him that is ready to judge the quick and the dead. \nFor for this cause was the gospel preached also to them that are dead, that they might be judged according to men in the flesh, but live according to God in the spirit. \nBut the end of all things is at hand: be ye therefore sober, and watch unto prayer. \nAnd above all things have fervent charity among yourselves: for charity shall cover the multitude of sins. \nUse hospitality one to another without grudging. \nAs every man hath received the gift, even so minister the same one to another, as good stewards of the manifold grace of God. \nIf any man speak, let him speak as the oracles of God; if any man minister, let him do it as of the ability which God giveth: that God in all things may be glorified through Jesus Christ, to whom be praise and dominion for ever and ever. Amen. \nBeloved, think it not strange concerning the fiery trial which is to try you, as though some strange thing happened unto you: \nBut rejoice, inasmuch as ye are partakers of Christ's sufferings; that, when his glory shall be revealed, ye may be glad also with exceeding joy. \nIf ye be reproached for the name of Christ, happy are ye; for the spirit of glory and of God resteth upon you: on their part he is evil spoken of, but on your part he is glorified. \nBut let none of you suffer as a murderer, or as a thief, or as an evildoer, or as a busybody in other men's matters. \nYet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf. \nFor the time is come that judgment must begin at the house of God: and if it first begin at us, what shall the end be of them that obey not the gospel of God? \nAnd if the righteous scarcely be saved, where shall the ungodly and the sinner appear? \nWherefore let them that suffer according to the will of God commit the keeping of their souls to him in well doing, as unto a faithful Creator. \nThe elders which are among you I exhort, who am also an elder, and a witness of the sufferings of Christ, and also a partaker of the glory that shall be revealed: \nFeed the flock of God which is among you, taking the oversight thereof, not by constraint, but willingly; not for filthy lucre, but of a ready mind; \nNeither as being lords over God's heritage, but being ensamples to the flock. \nAnd when the chief Shepherd shall appear, ye shall receive a crown of glory that fadeth not away. \nLikewise, ye younger, submit yourselves unto the elder. Yea, all of you be subject one to another, and be clothed with humility: for God resisteth the proud, and giveth grace to the humble. \nHumble yourselves therefore under the mighty hand of God, that he may exalt you in due time: \nCasting all your care upon him; for he careth for you. \nBe sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour: \nWhom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world. \nBut the God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you. \nTo him be glory and dominion for ever and ever. Amen. \nBy Silvanus, a faithful brother unto you, as I suppose, I have written briefly, exhorting, and testifying that this is the true grace of God wherein ye stand. \nThe church that is at Babylon, elected together with you, saluteth you; and so doth Marcus my son. \nGreet ye one another with a kiss of charity. Peace be with you all that are in Christ Jesus. Amen. \nSimon Peter, a servant and an apostle of Jesus Christ, to them that have obtained like precious faith with us through the righteousness of God and our Saviour Jesus Christ: \nGrace and peace be multiplied unto you through the knowledge of God, and of Jesus our Lord, \nAccording as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue: \nWhereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust. \nAnd beside this, giving all diligence, add to your faith virtue; and to virtue knowledge; \nAnd to knowledge temperance; and to temperance patience; and to patience godliness; \nAnd to godliness brotherly kindness; and to brotherly kindness charity. \nFor if these things be in you, and abound, they make you that ye shall neither be barren nor unfruitful in the knowledge of our Lord Jesus Christ. \nBut he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins. \nWherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall: \nFor so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ. \nWherefore I will not be negligent to put you always in remembrance of these things, though ye know them, and be established in the present truth. \nYea, I think it meet, as long as I am in this tabernacle, to stir you up by putting you in remembrance; \nKnowing that shortly I must put off this my tabernacle, even as our Lord Jesus Christ hath shewed me. \nMoreover I will endeavour that ye may be able after my decease to have these things always in remembrance. \nFor we have not followed cunningly devised fables, when we made known unto you the power and coming of our Lord Jesus Christ, but were eyewitnesses of his majesty. \nFor he received from God the Father honour and glory, when there came such a voice to him from the excellent glory, This is my beloved Son, in whom I am well pleased. \nAnd this voice which came from heaven we heard, when we were with him in the holy mount. \nWe have also a more sure word of prophecy; whereunto ye do well that ye take heed, as unto a light that shineth in a dark place, until the day dawn, and the day star arise in your hearts: \nKnowing this first, that no prophecy of the scripture is of any private interpretation. \nFor the prophecy came not in old time by the will of man: but holy men of God spake as they were moved by the Holy Ghost. \nBut there were false prophets also among the people, even as there shall be false teachers among you, who privily shall bring in damnable heresies, even denying the Lord that bought them, and bring upon themselves swift destruction. \nAnd many shall follow their pernicious ways; by reason of whom the way of truth shall be evil spoken of. \nAnd through covetousness shall they with feigned words make merchandise of you: whose judgment now of a long time lingereth not, and their damnation slumbereth not. \nFor if God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment; \nAnd spared not the old world, but saved Noah the eighth person, a preacher of righteousness, bringing in the flood upon the world of the ungodly; \nAnd turning the cities of Sodom and Gomorrha into ashes condemned them with an overthrow, making them an ensample unto those that after should live ungodly; \nAnd delivered just Lot, vexed with the filthy conversation of the wicked: \n(For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;) \nThe Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished: \nBut chiefly them that walk after the flesh in the lust of uncleanness, and despise government. Presumptuous are they, selfwilled, they are not afraid to speak evil of dignities. \nWhereas angels, which are greater in power and might, bring not railing accusation against them before the Lord. \nBut these, as natural brute beasts, made to be taken and destroyed, speak evil of the things that they understand not; and shall utterly perish in their own corruption; \nAnd shall receive the reward of unrighteousness, as they that count it pleasure to riot in the day time. Spots they are and blemishes, sporting themselves with their own deceivings while they feast with you; \nHaving eyes full of adultery, and that cannot cease from sin; beguiling unstable souls: an heart they have exercised with covetous practices; cursed children: \nWhich have forsaken the right way, and are gone astray, following the way of Balaam the son of Bosor, who loved the wages of unrighteousness; \nBut was rebuked for his iniquity: the dumb ass speaking with man's voice forbad the madness of the prophet. \nThese are wells without water, clouds that are carried with a tempest; to whom the mist of darkness is reserved for ever. \nFor when they speak great swelling words of vanity, they allure through the lusts of the flesh, through much wantonness, those that were clean escaped from them who live in error. \nWhile they promise them liberty, they themselves are the servants of corruption: for of whom a man is overcome, of the same is he brought in bondage. \nFor if after they have escaped the pollutions of the world through the knowledge of the Lord and Saviour Jesus Christ, they are again entangled therein, and overcome, the latter end is worse with them than the beginning. \nFor it had been better for them not to have known the way of righteousness, than, after they have known it, to turn from the holy commandment delivered unto them. \nBut it is happened unto them according to the true proverb, The dog is turned to his own vomit again; and the sow that was washed to her wallowing in the mire. \nThis second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance: \nThat ye may be mindful of the words which were spoken before by the holy prophets, and of the commandment of us the apostles of the Lord and Saviour: \nKnowing this first, that there shall come in the last days scoffers, walking after their own lusts, \nAnd saying, Where is the promise of his coming? for since the fathers fell asleep, all things continue as they were from the beginning of the creation. \nFor this they willingly are ignorant of, that by the word of God the heavens were of old, and the earth standing out of the water and in the water: \nWhereby the world that then was, being overflowed with water, perished: \nBut the heavens and the earth, which are now, by the same word are kept in store, reserved unto fire against the day of judgment and perdition of ungodly men. \nBut, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day. \nThe Lord is not slack concerning his promise, as some men count slackness; but is longsuffering to us-ward, not willing that any should perish, but that all should come to repentance. \nBut the day of the Lord will come as a thief in the night; in the which the heavens shall pass away with a great noise, and the elements shall melt with fervent heat, the earth also and the works that are therein shall be burned up. \nSeeing then that all these things shall be dissolved, what manner of persons ought ye to be in all holy conversation and godliness, \nLooking for and hasting unto the coming of the day of God, wherein the heavens being on fire shall be dissolved, and the elements shall melt with fervent heat? \nNevertheless we, according to his promise, look for new heavens and a new earth, wherein dwelleth righteousness. \nWherefore, beloved, seeing that ye look for such things, be diligent that ye may be found of him in peace, without spot, and blameless. \nAnd account that the longsuffering of our Lord is salvation; even as our beloved brother Paul also according to the wisdom given unto him hath written unto you; \nAs also in all his epistles, speaking in them of these things; in which are some things hard to be understood, which they that are unlearned and unstable wrest, as they do also the other scriptures, unto their own destruction. \nYe therefore, beloved, seeing ye know these things before, beware lest ye also, being led away with the error of the wicked, fall from your own stedfastness. \nBut grow in grace, and in the knowledge of our Lord and Saviour Jesus Christ. To him be glory both now and for ever. Amen. \nThat which was from the beginning, which we have heard, which we have seen with our eyes, which we have looked upon, and our hands have handled, of the Word of life; \n(For the life was manifested, and we have seen it, and bear witness, and shew unto you that eternal life, which was with the Father, and was manifested unto us;) \nThat which we have seen and heard declare we unto you, that ye also may have fellowship with us: and truly our fellowship is with the Father, and with his Son Jesus Christ. \nAnd these things write we unto you, that your joy may be full. \nThis then is the message which we have heard of him, and declare unto you, that God is light, and in him is no darkness at all. \nIf we say that we have fellowship with him, and walk in darkness, we lie, and do not the truth: \nBut if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin. \nIf we say that we have no sin, we deceive ourselves, and the truth is not in us. \nIf we confess our sins, he is faithful and just to forgive us our sins, and to cleanse us from all unrighteousness. \nIf we say that we have not sinned, we make him a liar, and his word is not in us. \nMy little children, these things write I unto you, that ye sin not. And if any man sin, we have an advocate with the Father, Jesus Christ the righteous: \nAnd he is the propitiation for our sins: and not for our's only, but also for the sins of the whole world. \nAnd hereby we do know that we know him, if we keep his commandments. \nHe that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him. \nBut whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him. \nHe that saith he abideth in him ought himself also so to walk, even as he walked. \nBrethren, I write no new commandment unto you, but an old commandment which ye had from the beginning. The old commandment is the word which ye have heard from the beginning. \nAgain, a new commandment I write unto you, which thing is true in him and in you: because the darkness is past, and the true light now shineth. \nHe that saith he is in the light, and hateth his brother, is in darkness even until now. \nHe that loveth his brother abideth in the light, and there is none occasion of stumbling in him. \nBut he that hateth his brother is in darkness, and walketh in darkness, and knoweth not whither he goeth, because that darkness hath blinded his eyes. \nI write unto you, little children, because your sins are forgiven you for his name's sake. \nI write unto you, fathers, because ye have known him that is from the beginning. I write unto you, young men, because ye have overcome the wicked one. I write unto you, little children, because ye have known the Father. \nI have written unto you, fathers, because ye have known him that is from the beginning. I have written unto you, young men, because ye are strong, and the word of God abideth in you, and ye have overcome the wicked one. \nLove not the world, neither the things that are in the world. If any man love the world, the love of the Father is not in him. \nFor all that is in the world, the lust of the flesh, and the lust of the eyes, and the pride of life, is not of the Father, but is of the world. \nAnd the world passeth away, and the lust thereof: but he that doeth the will of God abideth for ever. \nLittle children, it is the last time: and as ye have heard that antichrist shall come, even now are there many antichrists; whereby we know that it is the last time. \nThey went out from us, but they were not of us; for if they had been of us, they would no doubt have continued with us: but they went out, that they might be made manifest that they were not all of us. \nBut ye have an unction from the Holy One, and ye know all things. \nI have not written unto you because ye know not the truth, but because ye know it, and that no lie is of the truth. \nWho is a liar but he that denieth that Jesus is the Christ? He is antichrist, that denieth the Father and the Son. \nWhosoever denieth the Son, the same hath not the Father: he that acknowledgeth the Son hath the Father also. \nLet that therefore abide in you, which ye have heard from the beginning. If that which ye have heard from the beginning shall remain in you, ye also shall continue in the Son, and in the Father. \nAnd this is the promise that he hath promised us, even eternal life. \nThese things have I written unto you concerning them that seduce you. \nBut the anointing which ye have received of him abideth in you, and ye need not that any man teach you: but as the same anointing teacheth you of all things, and is truth, and is no lie, and even as it hath taught you, ye shall abide in him. \nAnd now, little children, abide in him; that, when he shall appear, we may have confidence, and not be ashamed before him at his coming. \nIf ye know that he is righteous, ye know that every one that doeth righteousness is born of him. \nBehold, what manner of love the Father hath bestowed upon us, that we should be called the sons of God: therefore the world knoweth us not, because it knew him not. \nBeloved, now are we the sons of God, and it doth not yet appear what we shall be: but we know that, when he shall appear, we shall be like him; for we shall see him as he is. \nAnd every man that hath this hope in him purifieth himself, even as he is pure. \nWhosoever committeth sin transgresseth also the law: for sin is the transgression of the law. \nAnd ye know that he was manifested to take away our sins; and in him is no sin. \nWhosoever abideth in him sinneth not: whosoever sinneth hath not seen him, neither known him. \nLittle children, let no man deceive you: he that doeth righteousness is righteous, even as he is righteous. \nHe that committeth sin is of the devil; for the devil sinneth from the beginning. For this purpose the Son of God was manifested, that he might destroy the works of the devil. \nWhosoever is born of God doth not commit sin; for his seed remaineth in him: and he cannot sin, because he is born of God. \nIn this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother. \nFor this is the message that ye heard from the beginning, that we should love one another. \nNot as Cain, who was of that wicked one, and slew his brother. And wherefore slew he him? Because his own works were evil, and his brother's righteous. \nMarvel not, my brethren, if the world hate you. \nWe know that we have passed from death unto life, because we love the brethren. He that loveth not his brother abideth in death. \nWhosoever hateth his brother is a murderer: and ye know that no murderer hath eternal life abiding in him. \nHereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren. \nBut whoso hath this world's good, and seeth his brother have need, and shutteth up his bowels of compassion from him, how dwelleth the love of God in him? \nMy little children, let us not love in word, neither in tongue; but in deed and in truth. \nAnd hereby we know that we are of the truth, and shall assure our hearts before him. \nFor if our heart condemn us, God is greater than our heart, and knoweth all things. \nBeloved, if our heart condemn us not, then have we confidence toward God. \nAnd whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight. \nAnd this is his commandment, That we should believe on the name of his Son Jesus Christ, and love one another, as he gave us commandment. \nAnd he that keepeth his commandments dwelleth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he hath given us. \nBeloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. \nHereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God: \nAnd every spirit that confesseth not that Jesus Christ is come in the flesh is not of God: and this is that spirit of antichrist, whereof ye have heard that it should come; and even now already is it in the world. \nYe are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. \nThey are of the world: therefore speak they of the world, and the world heareth them. \nWe are of God: he that knoweth God heareth us; he that is not of God heareth not us. Hereby know we the spirit of truth, and the spirit of error. \nBeloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God. \nHe that loveth not knoweth not God; for God is love. \nIn this was manifested the love of God toward us, because that God sent his only begotten Son into the world, that we might live through him. \nHerein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins. \nBeloved, if God so loved us, we ought also to love one another. \nNo man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us. \nHereby know we that we dwell in him, and he in us, because he hath given us of his Spirit. \nAnd we have seen and do testify that the Father sent the Son to be the Saviour of the world. \nWhosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God. \nAnd we have known and believed the love that God hath to us. God is love; and he that dwelleth in love dwelleth in God, and God in him. \nHerein is our love made perfect, that we may have boldness in the day of judgment: because as he is, so are we in this world. \nThere is no fear in love; but perfect love casteth out fear: because fear hath torment. He that feareth is not made perfect in love. \nWe love him, because he first loved us. \nIf a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, how can he love God whom he hath not seen? \nAnd this commandment have we from him, That he who loveth God love his brother also. \nWhosoever believeth that Jesus is the Christ is born of God: and every one that loveth him that begat loveth him also that is begotten of him. \nBy this we know that we love the children of God, when we love God, and keep his commandments. \nFor this is the love of God, that we keep his commandments: and his commandments are not grievous. \nFor whatsoever is born of God overcometh the world: and this is the victory that overcometh the world, even our faith. \nWho is he that overcometh the world, but he that believeth that Jesus is the Son of God? \nThis is he that came by water and blood, even Jesus Christ; not by water only, but by water and blood. And it is the Spirit that beareth witness, because the Spirit is truth. \nFor there are three that bear record in heaven, the Father, the Word, and the Holy Ghost: and these three are one. \nAnd there are three that bear witness in earth, the Spirit, and the water, and the blood: and these three agree in one. \nIf we receive the witness of men, the witness of God is greater: for this is the witness of God which he hath testified of his Son. \nHe that believeth on the Son of God hath the witness in himself: he that believeth not God hath made him a liar; because he believeth not the record that God gave of his Son. \nAnd this is the record, that God hath given to us eternal life, and this life is in his Son. \nHe that hath the Son hath life; and he that hath not the Son of God hath not life. \nThese things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God. \nAnd this is the confidence that we have in him, that, if we ask any thing according to his will, he heareth us: \nAnd if we know that he hear us, whatsoever we ask, we know that we have the petitions that we desired of him. \nIf any man see his brother sin a sin which is not unto death, he shall ask, and he shall give him life for them that sin not unto death. There is a sin unto death: I do not say that he shall pray for it. \nAll unrighteousness is sin: and there is a sin not unto death. \nWe know that whosoever is born of God sinneth not; but he that is begotten of God keepeth himself, and that wicked one toucheth him not. \nAnd we know that we are of God, and the whole world lieth in wickedness. \nAnd we know that the Son of God is come, and hath given us an understanding, that we may know him that is true, and we are in him that is true, even in his Son Jesus Christ. This is the true God, and eternal life. \nLittle children, keep yourselves from idols. Amen. \nThe elder unto the elect lady and her children, whom I love in the truth; and not I only, but also all they that have known the truth; \nFor the truth's sake, which dwelleth in us, and shall be with us for ever. \nGrace be with you, mercy, and peace, from God the Father, and from the Lord Jesus Christ, the Son of the Father, in truth and love. \nI rejoiced greatly that I found of thy children walking in truth, as we have received a commandment from the Father. \nAnd now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another. \nAnd this is love, that we walk after his commandments. This is the commandment, That, as ye have heard from the beginning, ye should walk in it. \nFor many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist. \nLook to yourselves, that we lose not those things which we have wrought, but that we receive a full reward. \nWhosoever transgresseth, and abideth not in the doctrine of Christ, hath not God. He that abideth in the doctrine of Christ, he hath both the Father and the Son. \nIf there come any unto you, and bring not this doctrine, receive him not into your house, neither bid him God speed: \nFor he that biddeth him God speed is partaker of his evil deeds. \nHaving many things to write unto you, I would not write with paper and ink: but I trust to come unto you, and speak face to face, that our joy may be full. \nThe children of thy elect sister greet thee. Amen. \nThe elder unto the wellbeloved Gaius, whom I love in the truth. \nBeloved, I wish above all things that thou mayest prosper and be in health, even as thy soul prospereth. \nFor I rejoiced greatly, when the brethren came and testified of the truth that is in thee, even as thou walkest in the truth. \nI have no greater joy than to hear that my children walk in truth. \nBeloved, thou doest faithfully whatsoever thou doest to the brethren, and to strangers; \nWhich have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well: \nBecause that for his name's sake they went forth, taking nothing of the Gentiles. \nWe therefore ought to receive such, that we might be fellowhelpers to the truth. \nI wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. \nWherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church. \nBeloved, follow not that which is evil, but that which is good. He that doeth good is of God: but he that doeth evil hath not seen God. \nDemetrius hath good report of all men, and of the truth itself: yea, and we also bear record; and ye know that our record is true. \nI had many things to write, but I will not with ink and pen write unto thee: \nBut I trust I shall shortly see thee, and we shall speak face to face. Peace be to thee. Our friends salute thee. Greet the friends by name. \nJude, the servant of Jesus Christ, and brother of James, to them that are sanctified by God the Father, and preserved in Jesus Christ, and called: \nMercy unto you, and peace, and love, be multiplied. \nBeloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints. \nFor there are certain men crept in unawares, who were before of old ordained to this condemnation, ungodly men, turning the grace of our God into lasciviousness, and denying the only Lord God, and our Lord Jesus Christ. \nI will therefore put you in remembrance, though ye once knew this, how that the Lord, having saved the people out of the land of Egypt, afterward destroyed them that believed not. \nAnd the angels which kept not their first estate, but left their own habitation, he hath reserved in everlasting chains under darkness unto the judgment of the great day. \nEven as Sodom and Gomorrha, and the cities about them in like manner, giving themselves over to fornication, and going after strange flesh, are set forth for an example, suffering the vengeance of eternal fire. \nLikewise also these filthy dreamers defile the flesh, despise dominion, and speak evil of dignities. \nYet Michael the archangel, when contending with the devil he disputed about the body of Moses, durst not bring against him a railing accusation, but said, The Lord rebuke thee. \nBut these speak evil of those things which they know not: but what they know naturally, as brute beasts, in those things they corrupt themselves. \nWoe unto them! for they have gone in the way of Cain, and ran greedily after the error of Balaam for reward, and perished in the gainsaying of Core. \nThese are spots in your feasts of charity, when they feast with you, feeding themselves without fear: clouds they are without water, carried about of winds; trees whose fruit withereth, without fruit, twice dead, plucked up by the roots; \nRaging waves of the sea, foaming out their own shame; wandering stars, to whom is reserved the blackness of darkness for ever. \nAnd Enoch also, the seventh from Adam, prophesied of these, saying, Behold, the Lord cometh with ten thousands of his saints, \nTo execute judgment upon all, and to convince all that are ungodly among them of all their ungodly deeds which they have ungodly committed, and of all their hard speeches which ungodly sinners have spoken against him. \nThese are murmurers, complainers, walking after their own lusts; and their mouth speaketh great swelling words, having men's persons in admiration because of advantage. \nBut, beloved, remember ye the words which were spoken before of the apostles of our Lord Jesus Christ; \nHow that they told you there should be mockers in the last time, who should walk after their own ungodly lusts. \nThese be they who separate themselves, sensual, having not the Spirit. \nBut ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost, \nKeep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life. \nAnd of some have compassion, making a difference: \nAnd others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh. \nNow unto him that is able to keep you from falling, and to present you faultless before the presence of his glory with exceeding joy, \nTo the only wise God our Saviour, be glory and majesty, dominion and power, both now and ever. Amen. \nThe Revelation of Jesus Christ, which God gave unto him, to shew unto his servants things which must shortly come to pass; and he sent and signified it by his angel unto his servant John: \nWho bare record of the word of God, and of the testimony of Jesus Christ, and of all things that he saw. \nBlessed is he that readeth, and they that hear the words of this prophecy, and keep those things which are written therein: for the time is at hand. \nJohn to the seven churches which are in Asia: Grace be unto you, and peace, from him which is, and which was, and which is to come; and from the seven Spirits which are before his throne; \nAnd from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood, \nAnd hath made us kings and priests unto God and his Father; to him be glory and dominion for ever and ever. Amen. \nBehold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen. \nI am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty. \nI John, who also am your brother, and companion in tribulation, and in the kingdom and patience of Jesus Christ, was in the isle that is called Patmos, for the word of God, and for the testimony of Jesus Christ. \nI was in the Spirit on the Lord's day, and heard behind me a great voice, as of a trumpet, \nSaying, I am Alpha and Omega, the first and the last: and, What thou seest, write in a book, and send it unto the seven churches which are in Asia; unto Ephesus, and unto Smyrna, and unto Pergamos, and unto Thyatira, and unto Sardis, and unto Philadelphia, and unto Laodicea. \nAnd I turned to see the voice that spake with me. And being turned, I saw seven golden candlesticks; \nAnd in the midst of the seven candlesticks one like unto the Son of man, clothed with a garment down to the foot, and girt about the paps with a golden girdle. \nHis head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire; \nAnd his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters. \nAnd he had in his right hand seven stars: and out of his mouth went a sharp twoedged sword: and his countenance was as the sun shineth in his strength. \nAnd when I saw him, I fell at his feet as dead. And he laid his right hand upon me, saying unto me, Fear not; I am the first and the last: \nI am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death. \nWrite the things which thou hast seen, and the things which are, and the things which shall be hereafter; \nThe mystery of the seven stars which thou sawest in my right hand, and the seven golden candlesticks. The seven stars are the angels of the seven churches: and the seven candlesticks which thou sawest are the seven churches. \nUnto the angel of the church of Ephesus write; These things saith he that holdeth the seven stars in his right hand, who walketh in the midst of the seven golden candlesticks; \nI know thy works, and thy labour, and thy patience, and how thou canst not bear them which are evil: and thou hast tried them which say they are apostles, and are not, and hast found them liars: \nAnd hast borne, and hast patience, and for my name's sake hast laboured, and hast not fainted. \nNevertheless I have somewhat against thee, because thou hast left thy first love. \nRemember therefore from whence thou art fallen, and repent, and do the first works; or else I will come unto thee quickly, and will remove thy candlestick out of his place, except thou repent. \nBut this thou hast, that thou hatest the deeds of the Nicolaitanes, which I also hate. \nHe that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the tree of life, which is in the midst of the paradise of God. \nAnd unto the angel of the church in Smyrna write; These things saith the first and the last, which was dead, and is alive; \nI know thy works, and tribulation, and poverty, (but thou art rich) and I know the blasphemy of them which say they are Jews, and are not, but are the synagogue of Satan. \nFear none of those things which thou shalt suffer: behold, the devil shall cast some of you into prison, that ye may be tried; and ye shall have tribulation ten days: be thou faithful unto death, and I will give thee a crown of life. \nHe that hath an ear, let him hear what the Spirit saith unto the churches; He that overcometh shall not be hurt of the second death. \nAnd to the angel of the church in Pergamos write; These things saith he which hath the sharp sword with two edges; \nI know thy works, and where thou dwellest, even where Satan's seat is: and thou holdest fast my name, and hast not denied my faith, even in those days wherein Antipas was my faithful martyr, who was slain among you, where Satan dwelleth. \nBut I have a few things against thee, because thou hast there them that hold the doctrine of Balaam, who taught Balac to cast a stumblingblock before the children of Israel, to eat things sacrificed unto idols, and to commit fornication. \nSo hast thou also them that hold the doctrine of the Nicolaitanes, which thing I hate. \nRepent; or else I will come unto thee quickly, and will fight against them with the sword of my mouth. \nHe that hath an ear, let him hear what the Spirit saith unto the churches; To him that overcometh will I give to eat of the hidden manna, and will give him a white stone, and in the stone a new name written, which no man knoweth saving he that receiveth it. \nAnd unto the angel of the church in Thyatira write; These things saith the Son of God, who hath his eyes like unto a flame of fire, and his feet are like fine brass; \nI know thy works, and charity, and service, and faith, and thy patience, and thy works; and the last to be more than the first. \nNotwithstanding I have a few things against thee, because thou sufferest that woman Jezebel, which calleth herself a prophetess, to teach and to seduce my servants to commit fornication, and to eat things sacrificed unto idols. \nAnd I gave her space to repent of her fornication; and she repented not. \nBehold, I will cast her into a bed, and them that commit adultery with her into great tribulation, except they repent of their deeds. \nAnd I will kill her children with death; and all the churches shall know that I am he which searcheth the reins and hearts: and I will give unto every one of you according to your works. \nBut unto you I say, and unto the rest in Thyatira, as many as have not this doctrine, and which have not known the depths of Satan, as they speak; I will put upon you none other burden. \nBut that which ye have already hold fast till I come. \nAnd he that overcometh, and keepeth my works unto the end, to him will I give power over the nations: \nAnd he shall rule them with a rod of iron; as the vessels of a potter shall they be broken to shivers: even as I received of my Father. \nAnd I will give him the morning star. \nHe that hath an ear, let him hear what the Spirit saith unto the churches. \nAnd unto the angel of the church in Sardis write; These things saith he that hath the seven Spirits of God, and the seven stars; I know thy works, that thou hast a name that thou livest, and art dead. \nBe watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God. \nRemember therefore how thou hast received and heard, and hold fast, and repent. If therefore thou shalt not watch, I will come on thee as a thief, and thou shalt not know what hour I will come upon thee. \nThou hast a few names even in Sardis which have not defiled their garments; and they shall walk with me in white: for they are worthy. \nHe that overcometh, the same shall be clothed in white raiment; and I will not blot out his name out of the book of life, but I will confess his name before my Father, and before his angels. \nHe that hath an ear, let him hear what the Spirit saith unto the churches. \nAnd to the angel of the church in Philadelphia write; These things saith he that is holy, he that is true, he that hath the key of David, he that openeth, and no man shutteth; and shutteth, and no man openeth; \nI know thy works: behold, I have set before thee an open door, and no man can shut it: for thou hast a little strength, and hast kept my word, and hast not denied my name. \nBehold, I will make them of the synagogue of Satan, which say they are Jews, and are not, but do lie; behold, I will make them to come and worship before thy feet, and to know that I have loved thee. \nBecause thou hast kept the word of my patience, I also will keep thee from the hour of temptation, which shall come upon all the world, to try them that dwell upon the earth. \nBehold, I come quickly: hold that fast which thou hast, that no man take thy crown. \nHim that overcometh will I make a pillar in the temple of my God, and he shall go no more out: and I will write upon him the name of my God, and the name of the city of my God, which is new Jerusalem, which cometh down out of heaven from my God: and I will write upon him my new name. \nHe that hath an ear, let him hear what the Spirit saith unto the churches. \nAnd unto the angel of the church of the Laodiceans write; These things saith the Amen, the faithful and true witness, the beginning of the creation of God; \nI know thy works, that thou art neither cold nor hot: I would thou wert cold or hot. \nSo then because thou art lukewarm, and neither cold nor hot, I will spue thee out of my mouth. \nBecause thou sayest, I am rich, and increased with goods, and have need of nothing; and knowest not that thou art wretched, and miserable, and poor, and blind, and naked: \nI counsel thee to buy of me gold tried in the fire, that thou mayest be rich; and white raiment, that thou mayest be clothed, and that the shame of thy nakedness do not appear; and anoint thine eyes with eyesalve, that thou mayest see. \nAs many as I love, I rebuke and chasten: be zealous therefore, and repent. \nBehold, I stand at the door, and knock: if any man hear my voice, and open the door, I will come in to him, and will sup with him, and he with me. \nTo him that overcometh will I grant to sit with me in my throne, even as I also overcame, and am set down with my Father in his throne. \nHe that hath an ear, let him hear what the Spirit saith unto the churches. \nAfter this I looked, and, behold, a door was opened in heaven: and the first voice which I heard was as it were of a trumpet talking with me; which said, Come up hither, and I will shew thee things which must be hereafter. \nAnd immediately I was in the spirit: and, behold, a throne was set in heaven, and one sat on the throne. \nAnd he that sat was to look upon like a jasper and a sardine stone: and there was a rainbow round about the throne, in sight like unto an emerald. \nAnd round about the throne were four and twenty seats: and upon the seats I saw four and twenty elders sitting, clothed in white raiment; and they had on their heads crowns of gold. \nAnd out of the throne proceeded lightnings and thunderings and voices: and there were seven lamps of fire burning before the throne, which are the seven Spirits of God. \nAnd before the throne there was a sea of glass like unto crystal: and in the midst of the throne, and round about the throne, were four beasts full of eyes before and behind. \nAnd the first beast was like a lion, and the second beast like a calf, and the third beast had a face as a man, and the fourth beast was like a flying eagle. \nAnd the four beasts had each of them six wings about him; and they were full of eyes within: and they rest not day and night, saying, Holy, holy, holy, LORD God Almighty, which was, and is, and is to come. \nAnd when those beasts give glory and honour and thanks to him that sat on the throne, who liveth for ever and ever, \nThe four and twenty elders fall down before him that sat on the throne, and worship him that liveth for ever and ever, and cast their crowns before the throne, saying, \nThou art worthy, O Lord, to receive glory and honour and power: for thou hast created all things, and for thy pleasure they are and were created. \nAnd I saw in the right hand of him that sat on the throne a book written within and on the backside, sealed with seven seals. \nAnd I saw a strong angel proclaiming with a loud voice, Who is worthy to open the book, and to loose the seals thereof? \nAnd no man in heaven, nor in earth, neither under the earth, was able to open the book, neither to look thereon. \nAnd I wept much, because no man was found worthy to open and to read the book, neither to look thereon. \nAnd one of the elders saith unto me, Weep not: behold, the Lion of the tribe of Juda, the Root of David, hath prevailed to open the book, and to loose the seven seals thereof. \nAnd I beheld, and, lo, in the midst of the throne and of the four beasts, and in the midst of the elders, stood a Lamb as it had been slain, having seven horns and seven eyes, which are the seven Spirits of God sent forth into all the earth. \nAnd he came and took the book out of the right hand of him that sat upon the throne. \nAnd when he had taken the book, the four beasts and four and twenty elders fell down before the Lamb, having every one of them harps, and golden vials full of odours, which are the prayers of saints. \nAnd they sung a new song, saying, Thou art worthy to take the book, and to open the seals thereof: for thou wast slain, and hast redeemed us to God by thy blood out of every kindred, and tongue, and people, and nation; \nAnd hast made us unto our God kings and priests: and we shall reign on the earth. \nAnd I beheld, and I heard the voice of many angels round about the throne and the beasts and the elders: and the number of them was ten thousand times ten thousand, and thousands of thousands; \nSaying with a loud voice, Worthy is the Lamb that was slain to receive power, and riches, and wisdom, and strength, and honour, and glory, and blessing. \nAnd every creature which is in heaven, and on the earth, and under the earth, and such as are in the sea, and all that are in them, heard I saying, Blessing, and honour, and glory, and power, be unto him that sitteth upon the throne, and unto the Lamb for ever and ever. \nAnd the four beasts said, Amen. And the four and twenty elders fell down and worshipped him that liveth for ever and ever. \nAnd I saw when the Lamb opened one of the seals, and I heard, as it were the noise of thunder, one of the four beasts saying, Come and see. \nAnd I saw, and behold a white horse: and he that sat on him had a bow; and a crown was given unto him: and he went forth conquering, and to conquer. \nAnd when he had opened the second seal, I heard the second beast say, Come and see. \nAnd there went out another horse that was red: and power was given to him that sat thereon to take peace from the earth, and that they should kill one another: and there was given unto him a great sword. \nAnd when he had opened the third seal, I heard the third beast say, Come and see. And I beheld, and lo a black horse; and he that sat on him had a pair of balances in his hand. \nAnd I heard a voice in the midst of the four beasts say, A measure of wheat for a penny, and three measures of barley for a penny; and see thou hurt not the oil and the wine. \nAnd when he had opened the fourth seal, I heard the voice of the fourth beast say, Come and see. \nAnd I looked, and behold a pale horse: and his name that sat on him was Death, and Hell followed with him. And power was given unto them over the fourth part of the earth, to kill with sword, and with hunger, and with death, and with the beasts of the earth. \nAnd when he had opened the fifth seal, I saw under the altar the souls of them that were slain for the word of God, and for the testimony which they held: \nAnd they cried with a loud voice, saying, How long, O Lord, holy and true, dost thou not judge and avenge our blood on them that dwell on the earth? \nAnd white robes were given unto every one of them; and it was said unto them, that they should rest yet for a little season, until their fellowservants also and their brethren, that should be killed as they were, should be fulfilled. \nAnd I beheld when he had opened the sixth seal, and, lo, there was a great earthquake; and the sun became black as sackcloth of hair, and the moon became as blood; \nAnd the stars of heaven fell unto the earth, even as a fig tree casteth her untimely figs, when she is shaken of a mighty wind. \nAnd the heaven departed as a scroll when it is rolled together; and every mountain and island were moved out of their places. \nAnd the kings of the earth, and the great men, and the rich men, and the chief captains, and the mighty men, and every bondman, and every free man, hid themselves in the dens and in the rocks of the mountains; \nAnd said to the mountains and rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb: \nFor the great day of his wrath is come; and who shall be able to stand? \nAnd after these things I saw four angels standing on the four corners of the earth, holding the four winds of the earth, that the wind should not blow on the earth, nor on the sea, nor on any tree. \nAnd I saw another angel ascending from the east, having the seal of the living God: and he cried with a loud voice to the four angels, to whom it was given to hurt the earth and the sea, \nSaying, Hurt not the earth, neither the sea, nor the trees, till we have sealed the servants of our God in their foreheads. \nAnd I heard the number of them which were sealed: and there were sealed an hundred and forty and four thousand of all the tribes of the children of Israel. \nOf the tribe of Juda were sealed twelve thousand. Of the tribe of Reuben were sealed twelve thousand. Of the tribe of Gad were sealed twelve thousand. \nOf the tribe of Aser were sealed twelve thousand. Of the tribe of Nephthalim were sealed twelve thousand. Of the tribe of Manasses were sealed twelve thousand. \nOf the tribe of Simeon were sealed twelve thousand. Of the tribe of Levi were sealed twelve thousand. Of the tribe of Issachar were sealed twelve thousand. \nOf the tribe of Zabulon were sealed twelve thousand. Of the tribe of Joseph were sealed twelve thousand. Of the tribe of Benjamin were sealed twelve thousand. \nAfter this I beheld, and, lo, a great multitude, which no man could number, of all nations, and kindreds, and people, and tongues, stood before the throne, and before the Lamb, clothed with white robes, and palms in their hands; \nAnd cried with a loud voice, saying, Salvation to our God which sitteth upon the throne, and unto the Lamb. \nAnd all the angels stood round about the throne, and about the elders and the four beasts, and fell before the throne on their faces, and worshipped God, \nSaying, Amen: Blessing, and glory, and wisdom, and thanksgiving, and honour, and power, and might, be unto our God for ever and ever. Amen. \nAnd one of the elders answered, saying unto me, What are these which are arrayed in white robes? and whence came they? \nAnd I said unto him, Sir, thou knowest. And he said to me, These are they which came out of great tribulation, and have washed their robes, and made them white in the blood of the Lamb. \nTherefore are they before the throne of God, and serve him day and night in his temple: and he that sitteth on the throne shall dwell among them. \nThey shall hunger no more, neither thirst any more; neither shall the sun light on them, nor any heat. \nFor the Lamb which is in the midst of the throne shall feed them, and shall lead them unto living fountains of waters: and God shall wipe away all tears from their eyes. \nAnd when he had opened the seventh seal, there was silence in heaven about the space of half an hour. \nAnd I saw the seven angels which stood before God; and to them were given seven trumpets. \nAnd another angel came and stood at the altar, having a golden censer; and there was given unto him much incense, that he should offer it with the prayers of all saints upon the golden altar which was before the throne. \nAnd the smoke of the incense, which came with the prayers of the saints, ascended up before God out of the angel's hand. \nAnd the angel took the censer, and filled it with fire of the altar, and cast it into the earth: and there were voices, and thunderings, and lightnings, and an earthquake. \nAnd the seven angels which had the seven trumpets prepared themselves to sound. \nThe first angel sounded, and there followed hail and fire mingled with blood, and they were cast upon the earth: and the third part of trees was burnt up, and all green grass was burnt up. \nAnd the second angel sounded, and as it were a great mountain burning with fire was cast into the sea: and the third part of the sea became blood; \nAnd the third part of the creatures which were in the sea, and had life, died; and the third part of the ships were destroyed. \nAnd the third angel sounded, and there fell a great star from heaven, burning as it were a lamp, and it fell upon the third part of the rivers, and upon the fountains of waters; \nAnd the name of the star is called Wormwood: and the third part of the waters became wormwood; and many men died of the waters, because they were made bitter. \nAnd the fourth angel sounded, and the third part of the sun was smitten, and the third part of the moon, and the third part of the stars; so as the third part of them was darkened, and the day shone not for a third part of it, and the night likewise. \nAnd I beheld, and heard an angel flying through the midst of heaven, saying with a loud voice, Woe, woe, woe, to the inhabiters of the earth by reason of the other voices of the trumpet of the three angels, which are yet to sound! \nAnd the fifth angel sounded, and I saw a star fall from heaven unto the earth: and to him was given the key of the bottomless pit. \nAnd he opened the bottomless pit; and there arose a smoke out of the pit, as the smoke of a great furnace; and the sun and the air were darkened by reason of the smoke of the pit. \nAnd there came out of the smoke locusts upon the earth: and unto them was given power, as the scorpions of the earth have power. \nAnd it was commanded them that they should not hurt the grass of the earth, neither any green thing, neither any tree; but only those men which have not the seal of God in their foreheads. \nAnd to them it was given that they should not kill them, but that they should be tormented five months: and their torment was as the torment of a scorpion, when he striketh a man. \nAnd in those days shall men seek death, and shall not find it; and shall desire to die, and death shall flee from them. \nAnd the shapes of the locusts were like unto horses prepared unto battle; and on their heads were as it were crowns like gold, and their faces were as the faces of men. \nAnd they had hair as the hair of women, and their teeth were as the teeth of lions. \nAnd they had breastplates, as it were breastplates of iron; and the sound of their wings was as the sound of chariots of many horses running to battle. \nAnd they had tails like unto scorpions, and there were stings in their tails: and their power was to hurt men five months. \nAnd they had a king over them, which is the angel of the bottomless pit, whose name in the Hebrew tongue is Abaddon, but in the Greek tongue hath his name Apollyon. \nOne woe is past; and, behold, there come two woes more hereafter. \nAnd the sixth angel sounded, and I heard a voice from the four horns of the golden altar which is before God, \nSaying to the sixth angel which had the trumpet, Loose the four angels which are bound in the great river Euphrates. \nAnd the four angels were loosed, which were prepared for an hour, and a day, and a month, and a year, for to slay the third part of men. \nAnd the number of the army of the horsemen were two hundred thousand thousand: and I heard the number of them. \nAnd thus I saw the horses in the vision, and them that sat on them, having breastplates of fire, and of jacinth, and brimstone: and the heads of the horses were as the heads of lions; and out of their mouths issued fire and smoke and brimstone. \nBy these three was the third part of men killed, by the fire, and by the smoke, and by the brimstone, which issued out of their mouths. \nFor their power is in their mouth, and in their tails: for their tails were like unto serpents, and had heads, and with them they do hurt. \nAnd the rest of the men which were not killed by these plagues yet repented not of the works of their hands, that they should not worship devils, and idols of gold, and silver, and brass, and stone, and of wood: which neither can see, nor hear, nor walk: \nNeither repented they of their murders, nor of their sorceries, nor of their fornication, nor of their thefts. \nAnd I saw another mighty angel come down from heaven, clothed with a cloud: and a rainbow was upon his head, and his face was as it were the sun, and his feet as pillars of fire: \nAnd he had in his hand a little book open: and he set his right foot upon the sea, and his left foot on the earth, \nAnd cried with a loud voice, as when a lion roareth: and when he had cried, seven thunders uttered their voices. \nAnd when the seven thunders had uttered their voices, I was about to write: and I heard a voice from heaven saying unto me, Seal up those things which the seven thunders uttered, and write them not. \nAnd the angel which I saw stand upon the sea and upon the earth lifted up his hand to heaven, \nAnd sware by him that liveth for ever and ever, who created heaven, and the things that therein are, and the earth, and the things that therein are, and the sea, and the things which are therein, that there should be time no longer: \nBut in the days of the voice of the seventh angel, when he shall begin to sound, the mystery of God should be finished, as he hath declared to his servants the prophets. \nAnd the voice which I heard from heaven spake unto me again, and said, Go and take the little book which is open in the hand of the angel which standeth upon the sea and upon the earth. \nAnd I went unto the angel, and said unto him, Give me the little book. And he said unto me, Take it, and eat it up; and it shall make thy belly bitter, but it shall be in thy mouth sweet as honey. \nAnd I took the little book out of the angel's hand, and ate it up; and it was in my mouth sweet as honey: and as soon as I had eaten it, my belly was bitter. \nAnd he said unto me, Thou must prophesy again before many peoples, and nations, and tongues, and kings. \nAnd there was given me a reed like unto a rod: and the angel stood, saying, Rise, and measure the temple of God, and the altar, and them that worship therein. \nBut the court which is without the temple leave out, and measure it not; for it is given unto the Gentiles: and the holy city shall they tread under foot forty and two months. \nAnd I will give power unto my two witnesses, and they shall prophesy a thousand two hundred and threescore days, clothed in sackcloth. \nThese are the two olive trees, and the two candlesticks standing before the God of the earth. \nAnd if any man will hurt them, fire proceedeth out of their mouth, and devoureth their enemies: and if any man will hurt them, he must in this manner be killed. \nThese have power to shut heaven, that it rain not in the days of their prophecy: and have power over waters to turn them to blood, and to smite the earth with all plagues, as often as they will. \nAnd when they shall have finished their testimony, the beast that ascendeth out of the bottomless pit shall make war against them, and shall overcome them, and kill them. \nAnd their dead bodies shall lie in the street of the great city, which spiritually is called Sodom and Egypt, where also our Lord was crucified. \nAnd they of the people and kindreds and tongues and nations shall see their dead bodies three days and an half, and shall not suffer their dead bodies to be put in graves. \nAnd they that dwell upon the earth shall rejoice over them, and make merry, and shall send gifts one to another; because these two prophets tormented them that dwelt on the earth. \nAnd after three days and an half the spirit of life from God entered into them, and they stood upon their feet; and great fear fell upon them which saw them. \nAnd they heard a great voice from heaven saying unto them, Come up hither. And they ascended up to heaven in a cloud; and their enemies beheld them. \nAnd the same hour was there a great earthquake, and the tenth part of the city fell, and in the earthquake were slain of men seven thousand: and the remnant were affrighted, and gave glory to the God of heaven. \nThe second woe is past; and, behold, the third woe cometh quickly. \nAnd the seventh angel sounded; and there were great voices in heaven, saying, The kingdoms of this world are become the kingdoms of our Lord, and of his Christ; and he shall reign for ever and ever. \nAnd the four and twenty elders, which sat before God on their seats, fell upon their faces, and worshipped God, \nSaying, We give thee thanks, O LORD God Almighty, which art, and wast, and art to come; because thou hast taken to thee thy great power, and hast reigned. \nAnd the nations were angry, and thy wrath is come, and the time of the dead, that they should be judged, and that thou shouldest give reward unto thy servants the prophets, and to the saints, and them that fear thy name, small and great; and shouldest destroy them which destroy the earth. \nAnd the temple of God was opened in heaven, and there was seen in his temple the ark of his testament: and there were lightnings, and voices, and thunderings, and an earthquake, and great hail. \nAnd there appeared a great wonder in heaven; a woman clothed with the sun, and the moon under her feet, and upon her head a crown of twelve stars: \nAnd she being with child cried, travailing in birth, and pained to be delivered. \nAnd there appeared another wonder in heaven; and behold a great red dragon, having seven heads and ten horns, and seven crowns upon his heads. \nAnd his tail drew the third part of the stars of heaven, and did cast them to the earth: and the dragon stood before the woman which was ready to be delivered, for to devour her child as soon as it was born. \nAnd she brought forth a man child, who was to rule all nations with a rod of iron: and her child was caught up unto God, and to his throne. \nAnd the woman fled into the wilderness, where she hath a place prepared of God, that they should feed her there a thousand two hundred and threescore days. \nAnd there was war in heaven: Michael and his angels fought against the dragon; and the dragon fought and his angels, \nAnd prevailed not; neither was their place found any more in heaven. \nAnd the great dragon was cast out, that old serpent, called the Devil, and Satan, which deceiveth the whole world: he was cast out into the earth, and his angels were cast out with him. \nAnd I heard a loud voice saying in heaven, Now is come salvation, and strength, and the kingdom of our God, and the power of his Christ: for the accuser of our brethren is cast down, which accused them before our God day and night. \nAnd they overcame him by the blood of the Lamb, and by the word of their testimony; and they loved not their lives unto the death. \nTherefore rejoice, ye heavens, and ye that dwell in them. Woe to the inhabiters of the earth and of the sea! for the devil is come down unto you, having great wrath, because he knoweth that he hath but a short time. \nAnd when the dragon saw that he was cast unto the earth, he persecuted the woman which brought forth the man child. \nAnd to the woman were given two wings of a great eagle, that she might fly into the wilderness, into her place, where she is nourished for a time, and times, and half a time, from the face of the serpent. \nAnd the serpent cast out of his mouth water as a flood after the woman, that he might cause her to be carried away of the flood. \nAnd the earth helped the woman, and the earth opened her mouth, and swallowed up the flood which the dragon cast out of his mouth. \nAnd the dragon was wroth with the woman, and went to make war with the remnant of her seed, which keep the commandments of God, and have the testimony of Jesus Christ. \nAnd I stood upon the sand of the sea, and saw a beast rise up out of the sea, having seven heads and ten horns, and upon his horns ten crowns, and upon his heads the name of blasphemy. \nAnd the beast which I saw was like unto a leopard, and his feet were as the feet of a bear, and his mouth as the mouth of a lion: and the dragon gave him his power, and his seat, and great authority. \nAnd I saw one of his heads as it were wounded to death; and his deadly wound was healed: and all the world wondered after the beast. \nAnd they worshipped the dragon which gave power unto the beast: and they worshipped the beast, saying, Who is like unto the beast? who is able to make war with him? \nAnd there was given unto him a mouth speaking great things and blasphemies; and power was given unto him to continue forty and two months. \nAnd he opened his mouth in blasphemy against God, to blaspheme his name, and his tabernacle, and them that dwell in heaven. \nAnd it was given unto him to make war with the saints, and to overcome them: and power was given him over all kindreds, and tongues, and nations. \nAnd all that dwell upon the earth shall worship him, whose names are not written in the book of life of the Lamb slain from the foundation of the world. \nIf any man have an ear, let him hear. \nHe that leadeth into captivity shall go into captivity: he that killeth with the sword must be killed with the sword. Here is the patience and the faith of the saints. \nAnd I beheld another beast coming up out of the earth; and he had two horns like a lamb, and he spake as a dragon. \nAnd he exerciseth all the power of the first beast before him, and causeth the earth and them which dwell therein to worship the first beast, whose deadly wound was healed. \nAnd he doeth great wonders, so that he maketh fire come down from heaven on the earth in the sight of men, \nAnd deceiveth them that dwell on the earth by the means of those miracles which he had power to do in the sight of the beast; saying to them that dwell on the earth, that they should make an image to the beast, which had the wound by a sword, and did live. \nAnd he had power to give life unto the image of the beast, that the image of the beast should both speak, and cause that as many as would not worship the image of the beast should be killed. \nAnd he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: \nAnd that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. \nHere is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six. \nAnd I looked, and, lo, a Lamb stood on the mount Sion, and with him an hundred forty and four thousand, having his Father's name written in their foreheads. \nAnd I heard a voice from heaven, as the voice of many waters, and as the voice of a great thunder: and I heard the voice of harpers harping with their harps: \nAnd they sung as it were a new song before the throne, and before the four beasts, and the elders: and no man could learn that song but the hundred and forty and four thousand, which were redeemed from the earth. \nThese are they which were not defiled with women; for they are virgins. These are they which follow the Lamb whithersoever he goeth. These were redeemed from among men, being the firstfruits unto God and to the Lamb. \nAnd in their mouth was found no guile: for they are without fault before the throne of God. \nAnd I saw another angel fly in the midst of heaven, having the everlasting gospel to preach unto them that dwell on the earth, and to every nation, and kindred, and tongue, and people, \nSaying with a loud voice, Fear God, and give glory to him; for the hour of his judgment is come: and worship him that made heaven, and earth, and the sea, and the fountains of waters. \nAnd there followed another angel, saying, Babylon is fallen, is fallen, that great city, because she made all nations drink of the wine of the wrath of her fornication. \nAnd the third angel followed them, saying with a loud voice, If any man worship the beast and his image, and receive his mark in his forehead, or in his hand, \nThe same shall drink of the wine of the wrath of God, which is poured out without mixture into the cup of his indignation; and he shall be tormented with fire and brimstone in the presence of the holy angels, and in the presence of the Lamb: \nAnd the smoke of their torment ascendeth up for ever and ever: and they have no rest day nor night, who worship the beast and his image, and whosoever receiveth the mark of his name. \nHere is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus. \nAnd I heard a voice from heaven saying unto me, Write, Blessed are the dead which die in the Lord from henceforth: Yea, saith the Spirit, that they may rest from their labours; and their works do follow them. \nAnd I looked, and behold a white cloud, and upon the cloud one sat like unto the Son of man, having on his head a golden crown, and in his hand a sharp sickle. \nAnd another angel came out of the temple, crying with a loud voice to him that sat on the cloud, Thrust in thy sickle, and reap: for the time is come for thee to reap; for the harvest of the earth is ripe. \nAnd he that sat on the cloud thrust in his sickle on the earth; and the earth was reaped. \nAnd another angel came out of the temple which is in heaven, he also having a sharp sickle. \nAnd another angel came out from the altar, which had power over fire; and cried with a loud cry to him that had the sharp sickle, saying, Thrust in thy sharp sickle, and gather the clusters of the vine of the earth; for her grapes are fully ripe. \nAnd the angel thrust in his sickle into the earth, and gathered the vine of the earth, and cast it into the great winepress of the wrath of God. \nAnd the winepress was trodden without the city, and blood came out of the winepress, even unto the horse bridles, by the space of a thousand and six hundred furlongs. \nAnd I saw another sign in heaven, great and marvellous, seven angels having the seven last plagues; for in them is filled up the wrath of God. \nAnd I saw as it were a sea of glass mingled with fire: and them that had gotten the victory over the beast, and over his image, and over his mark, and over the number of his name, stand on the sea of glass, having the harps of God. \nAnd they sing the song of Moses the servant of God, and the song of the Lamb, saying, Great and marvellous are thy works, Lord God Almighty; just and true are thy ways, thou King of saints. \nWho shall not fear thee, O Lord, and glorify thy name? for thou only art holy: for all nations shall come and worship before thee; for thy judgments are made manifest. \nAnd after that I looked, and, behold, the temple of the tabernacle of the testimony in heaven was opened: \nAnd the seven angels came out of the temple, having the seven plagues, clothed in pure and white linen, and having their breasts girded with golden girdles. \nAnd one of the four beasts gave unto the seven angels seven golden vials full of the wrath of God, who liveth for ever and ever. \nAnd the temple was filled with smoke from the glory of God, and from his power; and no man was able to enter into the temple, till the seven plagues of the seven angels were fulfilled. \nAnd I heard a great voice out of the temple saying to the seven angels, Go your ways, and pour out the vials of the wrath of God upon the earth. \nAnd the first went, and poured out his vial upon the earth; and there fell a noisome and grievous sore upon the men which had the mark of the beast, and upon them which worshipped his image. \nAnd the second angel poured out his vial upon the sea; and it became as the blood of a dead man: and every living soul died in the sea. \nAnd the third angel poured out his vial upon the rivers and fountains of waters; and they became blood. \nAnd I heard the angel of the waters say, Thou art righteous, O Lord, which art, and wast, and shalt be, because thou hast judged thus. \nFor they have shed the blood of saints and prophets, and thou hast given them blood to drink; for they are worthy. \nAnd I heard another out of the altar say, Even so, Lord God Almighty, true and righteous are thy judgments. \nAnd the fourth angel poured out his vial upon the sun; and power was given unto him to scorch men with fire. \nAnd men were scorched with great heat, and blasphemed the name of God, which hath power over these plagues: and they repented not to give him glory. \nAnd the fifth angel poured out his vial upon the seat of the beast; and his kingdom was full of darkness; and they gnawed their tongues for pain, \nAnd blasphemed the God of heaven because of their pains and their sores, and repented not of their deeds. \nAnd the sixth angel poured out his vial upon the great river Euphrates; and the water thereof was dried up, that the way of the kings of the east might be prepared. \nAnd I saw three unclean spirits like frogs come out of the mouth of the dragon, and out of the mouth of the beast, and out of the mouth of the false prophet. \nFor they are the spirits of devils, working miracles, which go forth unto the kings of the earth and of the whole world, to gather them to the battle of that great day of God Almighty. \nBehold, I come as a thief. Blessed is he that watcheth, and keepeth his garments, lest he walk naked, and they see his shame. \nAnd he gathered them together into a place called in the Hebrew tongue Armageddon. \nAnd the seventh angel poured out his vial into the air; and there came a great voice out of the temple of heaven, from the throne, saying, It is done. \nAnd there were voices, and thunders, and lightnings; and there was a great earthquake, such as was not since men were upon the earth, so mighty an earthquake, and so great. \nAnd the great city was divided into three parts, and the cities of the nations fell: and great Babylon came in remembrance before God, to give unto her the cup of the wine of the fierceness of his wrath. \nAnd every island fled away, and the mountains were not found. \nAnd there fell upon men a great hail out of heaven, every stone about the weight of a talent: and men blasphemed God because of the plague of the hail; for the plague thereof was exceeding great. \nAnd there came one of the seven angels which had the seven vials, and talked with me, saying unto me, Come hither; I will shew unto thee the judgment of the great whore that sitteth upon many waters: \nWith whom the kings of the earth have committed fornication, and the inhabitants of the earth have been made drunk with the wine of her fornication. \nSo he carried me away in the spirit into the wilderness: and I saw a woman sit upon a scarlet coloured beast, full of names of blasphemy, having seven heads and ten horns. \nAnd the woman was arrayed in purple and scarlet colour, and decked with gold and precious stones and pearls, having a golden cup in her hand full of abominations and filthiness of her fornication: \nAnd upon her forehead was a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH. \nAnd I saw the woman drunken with the blood of the saints, and with the blood of the martyrs of Jesus: and when I saw her, I wondered with great admiration. \nAnd the angel said unto me, Wherefore didst thou marvel? I will tell thee the mystery of the woman, and of the beast that carrieth her, which hath the seven heads and ten horns. \nThe beast that thou sawest was, and is not; and shall ascend out of the bottomless pit, and go into perdition: and they that dwell on the earth shall wonder, whose names were not written in the book of life from the foundation of the world, when they behold the beast that was, and is not, and yet is. \nAnd here is the mind which hath wisdom. The seven heads are seven mountains, on which the woman sitteth. \nAnd there are seven kings: five are fallen, and one is, and the other is not yet come; and when he cometh, he must continue a short space. \nAnd the beast that was, and is not, even he is the eighth, and is of the seven, and goeth into perdition. \nAnd the ten horns which thou sawest are ten kings, which have received no kingdom as yet; but receive power as kings one hour with the beast. \nThese have one mind, and shall give their power and strength unto the beast. \nThese shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful. \nAnd he saith unto me, The waters which thou sawest, where the whore sitteth, are peoples, and multitudes, and nations, and tongues. \nAnd the ten horns which thou sawest upon the beast, these shall hate the whore, and shall make her desolate and naked, and shall eat her flesh, and burn her with fire. \nFor God hath put in their hearts to fulfil his will, and to agree, and give their kingdom unto the beast, until the words of God shall be fulfilled. \nAnd the woman which thou sawest is that great city, which reigneth over the kings of the earth. \nAnd after these things I saw another angel come down from heaven, having great power; and the earth was lightened with his glory. \nAnd he cried mightily with a strong voice, saying, Babylon the great is fallen, is fallen, and is become the habitation of devils, and the hold of every foul spirit, and a cage of every unclean and hateful bird. \nFor all nations have drunk of the wine of the wrath of her fornication, and the kings of the earth have committed fornication with her, and the merchants of the earth are waxed rich through the abundance of her delicacies. \nAnd I heard another voice from heaven, saying, Come out of her, my people, that ye be not partakers of her sins, and that ye receive not of her plagues. \nFor her sins have reached unto heaven, and God hath remembered her iniquities. \nReward her even as she rewarded you, and double unto her double according to her works: in the cup which she hath filled fill to her double. \nHow much she hath glorified herself, and lived deliciously, so much torment and sorrow give her: for she saith in her heart, I sit a queen, and am no widow, and shall see no sorrow. \nTherefore shall her plagues come in one day, death, and mourning, and famine; and she shall be utterly burned with fire: for strong is the Lord God who judgeth her. \nAnd the kings of the earth, who have committed fornication and lived deliciously with her, shall bewail her, and lament for her, when they shall see the smoke of her burning, \nStanding afar off for the fear of her torment, saying, Alas, alas that great city Babylon, that mighty city! for in one hour is thy judgment come. \nAnd the merchants of the earth shall weep and mourn over her; for no man buyeth their merchandise any more: \nThe merchandise of gold, and silver, and precious stones, and of pearls, and fine linen, and purple, and silk, and scarlet, and all thyine wood, and all manner vessels of ivory, and all manner vessels of most precious wood, and of brass, and iron, and marble, \nAnd cinnamon, and odours, and ointments, and frankincense, and wine, and oil, and fine flour, and wheat, and beasts, and sheep, and horses, and chariots, and slaves, and souls of men. \nAnd the fruits that thy soul lusted after are departed from thee, and all things which were dainty and goodly are departed from thee, and thou shalt find them no more at all. \nThe merchants of these things, which were made rich by her, shall stand afar off for the fear of her torment, weeping and wailing, \nAnd saying, Alas, alas that great city, that was clothed in fine linen, and purple, and scarlet, and decked with gold, and precious stones, and pearls! \nFor in one hour so great riches is come to nought. And every shipmaster, and all the company in ships, and sailors, and as many as trade by sea, stood afar off, \nAnd cried when they saw the smoke of her burning, saying, What city is like unto this great city! \nAnd they cast dust on their heads, and cried, weeping and wailing, saying, Alas, alas that great city, wherein were made rich all that had ships in the sea by reason of her costliness! for in one hour is she made desolate. \nRejoice over her, thou heaven, and ye holy apostles and prophets; for God hath avenged you on her. \nAnd a mighty angel took up a stone like a great millstone, and cast it into the sea, saying, Thus with violence shall that great city Babylon be thrown down, and shall be found no more at all. \nAnd the voice of harpers, and musicians, and of pipers, and trumpeters, shall be heard no more at all in thee; and no craftsman, of whatsoever craft he be, shall be found any more in thee; and the sound of a millstone shall be heard no more at all in thee; \nAnd the light of a candle shall shine no more at all in thee; and the voice of the bridegroom and of the bride shall be heard no more at all in thee: for thy merchants were the great men of the earth; for by thy sorceries were all nations deceived. \nAnd in her was found the blood of prophets, and of saints, and of all that were slain upon the earth. \nAnd after these things I heard a great voice of much people in heaven, saying, Alleluia; Salvation, and glory, and honour, and power, unto the Lord our God: \nFor true and righteous are his judgments: for he hath judged the great whore, which did corrupt the earth with her fornication, and hath avenged the blood of his servants at her hand. \nAnd again they said, Alleluia And her smoke rose up for ever and ever. \nAnd the four and twenty elders and the four beasts fell down and worshipped God that sat on the throne, saying, Amen; Alleluia. \nAnd a voice came out of the throne, saying, Praise our God, all ye his servants, and ye that fear him, both small and great. \nAnd I heard as it were the voice of a great multitude, and as the voice of many waters, and as the voice of mighty thunderings, saying, Alleluia: for the Lord God omnipotent reigneth. \nLet us be glad and rejoice, and give honour to him: for the marriage of the Lamb is come, and his wife hath made herself ready. \nAnd to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints. \nAnd he saith unto me, Write, Blessed are they which are called unto the marriage supper of the Lamb. And he saith unto me, These are the true sayings of God. \nAnd I fell at his feet to worship him. And he said unto me, See thou do it not: I am thy fellowservant, and of thy brethren that have the testimony of Jesus: worship God: for the testimony of Jesus is the spirit of prophecy. \nAnd I saw heaven opened, and behold a white horse; and he that sat upon him was called Faithful and True, and in righteousness he doth judge and make war. \nHis eyes were as a flame of fire, and on his head were many crowns; and he had a name written, that no man knew, but he himself. \nAnd he was clothed with a vesture dipped in blood: and his name is called The Word of God. \nAnd the armies which were in heaven followed him upon white horses, clothed in fine linen, white and clean. \nAnd out of his mouth goeth a sharp sword, that with it he should smite the nations: and he shall rule them with a rod of iron: and he treadeth the winepress of the fierceness and wrath of Almighty God. \nAnd he hath on his vesture and on his thigh a name written, KING OF KINGS, AND LORD OF LORDS. \nAnd I saw an angel standing in the sun; and he cried with a loud voice, saying to all the fowls that fly in the midst of heaven, Come and gather yourselves together unto the supper of the great God; \nThat ye may eat the flesh of kings, and the flesh of captains, and the flesh of mighty men, and the flesh of horses, and of them that sit on them, and the flesh of all men, both free and bond, both small and great. \nAnd I saw the beast, and the kings of the earth, and their armies, gathered together to make war against him that sat on the horse, and against his army. \nAnd the beast was taken, and with him the false prophet that wrought miracles before him, with which he deceived them that had received the mark of the beast, and them that worshipped his image. These both were cast alive into a lake of fire burning with brimstone. \nAnd the remnant were slain with the sword of him that sat upon the horse, which sword proceeded out of his mouth: and all the fowls were filled with their flesh. \nAnd I saw an angel come down from heaven, having the key of the bottomless pit and a great chain in his hand. \nAnd he laid hold on the dragon, that old serpent, which is the Devil, and Satan, and bound him a thousand years, \nAnd cast him into the bottomless pit, and shut him up, and set a seal upon him, that he should deceive the nations no more, till the thousand years should be fulfilled: and after that he must be loosed a little season. \nAnd I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that were beheaded for the witness of Jesus, and for the word of God, and which had not worshipped the beast, neither his image, neither had received his mark upon their foreheads, or in their hands; and they lived and reigned with Christ a thousand years. \nBut the rest of the dead lived not again until the thousand years were finished. This is the first resurrection. \nBlessed and holy is he that hath part in the first resurrection: on such the second death hath no power, but they shall be priests of God and of Christ, and shall reign with him a thousand years. \nAnd when the thousand years are expired, Satan shall be loosed out of his prison, \nAnd shall go out to deceive the nations which are in the four quarters of the earth, Gog, and Magog, to gather them together to battle: the number of whom is as the sand of the sea. \nAnd they went up on the breadth of the earth, and compassed the camp of the saints about, and the beloved city: and fire came down from God out of heaven, and devoured them. \nAnd the devil that deceived them was cast into the lake of fire and brimstone, where the beast and the false prophet are, and shall be tormented day and night for ever and ever. \nAnd I saw a great white throne, and him that sat on it, from whose face the earth and the heaven fled away; and there was found no place for them. \nAnd I saw the dead, small and great, stand before God; and the books were opened: and another book was opened, which is the book of life: and the dead were judged out of those things which were written in the books, according to their works. \nAnd the sea gave up the dead which were in it; and death and hell delivered up the dead which were in them: and they were judged every man according to their works. \nAnd death and hell were cast into the lake of fire. This is the second death. \nAnd whosoever was not found written in the book of life was cast into the lake of fire. \nAnd I saw a new heaven and a new earth: for the first heaven and the first earth were passed away; and there was no more sea. \nAnd I John saw the holy city, new Jerusalem, coming down from God out of heaven, prepared as a bride adorned for her husband. \nAnd I heard a great voice out of heaven saying, Behold, the tabernacle of God is with men, and he will dwell with them, and they shall be his people, and God himself shall be with them, and be their God. \nAnd God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away. \nAnd he that sat upon the throne said, Behold, I make all things new. And he said unto me, Write: for these words are true and faithful. \nAnd he said unto me, It is done. I am Alpha and Omega, the beginning and the end. I will give unto him that is athirst of the fountain of the water of life freely. \nHe that overcometh shall inherit all things; and I will be his God, and he shall be my son. \nBut the fearful, and unbelieving, and the abominable, and murderers, and whoremongers, and sorcerers, and idolaters, and all liars, shall have their part in the lake which burneth with fire and brimstone: which is the second death. \nAnd there came unto me one of the seven angels which had the seven vials full of the seven last plagues, and talked with me, saying, Come hither, I will shew thee the bride, the Lamb's wife. \nAnd he carried me away in the spirit to a great and high mountain, and shewed me that great city, the holy Jerusalem, descending out of heaven from God, \nHaving the glory of God: and her light was like unto a stone most precious, even like a jasper stone, clear as crystal; \nAnd had a wall great and high, and had twelve gates, and at the gates twelve angels, and names written thereon, which are the names of the twelve tribes of the children of Israel: \nOn the east three gates; on the north three gates; on the south three gates; and on the west three gates. \nAnd the wall of the city had twelve foundations, and in them the names of the twelve apostles of the Lamb. \nAnd he that talked with me had a golden reed to measure the city, and the gates thereof, and the wall thereof. \nAnd the city lieth foursquare, and the length is as large as the breadth: and he measured the city with the reed, twelve thousand furlongs. The length and the breadth and the height of it are equal. \nAnd he measured the wall thereof, an hundred and forty and four cubits, according to the measure of a man, that is, of the angel. \nAnd the building of the wall of it was of jasper: and the city was pure gold, like unto clear glass. \nAnd the foundations of the wall of the city were garnished with all manner of precious stones. The first foundation was jasper; the second, sapphire; the third, a chalcedony; the fourth, an emerald; \nThe fifth, sardonyx; the sixth, sardius; the seventh, chrysolyte; the eighth, beryl; the ninth, a topaz; the tenth, a chrysoprasus; the eleventh, a jacinth; the twelfth, an amethyst. \nAnd the twelve gates were twelve pearls: every several gate was of one pearl: and the street of the city was pure gold, as it were transparent glass. \nAnd I saw no temple therein: for the Lord God Almighty and the Lamb are the temple of it. \nAnd the city had no need of the sun, neither of the moon, to shine in it: for the glory of God did lighten it, and the Lamb is the light thereof. \nAnd the nations of them which are saved shall walk in the light of it: and the kings of the earth do bring their glory and honour into it. \nAnd the gates of it shall not be shut at all by day: for there shall be no night there. \nAnd they shall bring the glory and honour of the nations into it. \nAnd there shall in no wise enter into it any thing that defileth, neither whatsoever worketh abomination, or maketh a lie: but they which are written in the Lamb's book of life. \nAnd he shewed me a pure river of water of life, clear as crystal, proceeding out of the throne of God and of the Lamb. \nIn the midst of the street of it, and on either side of the river, was there the tree of life, which bare twelve manner of fruits, and yielded her fruit every month: and the leaves of the tree were for the healing of the nations. \nAnd there shall be no more curse: but the throne of God and of the Lamb shall be in it; and his servants shall serve him: \nAnd they shall see his face; and his name shall be in their foreheads. \nAnd there shall be no night there; and they need no candle, neither light of the sun; for the Lord God giveth them light: and they shall reign for ever and ever. \nAnd he said unto me, These sayings are faithful and true: and the Lord God of the holy prophets sent his angel to shew unto his servants the things which must shortly be done. \nBehold, I come quickly: blessed is he that keepeth the sayings of the prophecy of this book. \nAnd I John saw these things, and heard them. And when I had heard and seen, I fell down to worship before the feet of the angel which shewed me these things. \nThen saith he unto me, See thou do it not: for I am thy fellowservant, and of thy brethren the prophets, and of them which keep the sayings of this book: worship God. \nAnd he saith unto me, Seal not the sayings of the prophecy of this book: for the time is at hand. \nHe that is unjust, let him be unjust still: and he which is filthy, let him be filthy still: and he that is righteous, let him be righteous still: and he that is holy, let him be holy still. \nAnd, behold, I come quickly; and my reward is with me, to give every man according as his work shall be. \nI am Alpha and Omega, the beginning and the end, the first and the last. \nBlessed are they that do his commandments, that they may have right to the tree of life, and may enter in through the gates into the city. \nFor without are dogs, and sorcerers, and whoremongers, and murderers, and idolaters, and whosoever loveth and maketh a lie. \nI Jesus have sent mine angel to testify unto you these things in the churches. I am the root and the offspring of David, and the bright and morning star. \nAnd the Spirit and the bride say, Come. And let him that heareth say, Come. And let him that is athirst come. And whosoever will, let him take the water of life freely. \nFor I testify unto every man that heareth the words of the prophecy of this book, If any man shall add unto these things, God shall add unto him the plagues that are written in this book: \nAnd if any man shall take away from the words of the book of this prophecy, God shall take away his part out of the book of life, and out of the holy city, and from the things which are written in this book. \nHe which testifieth these things saith, Surely I come quickly. Amen. Even so, come, Lord Jesus. \nThe grace of our Lord Jesus Christ be with you all. Amen. \n\n"
  },
  {
    "path": "testdata/large/world192.txt",
    "content": "****The Project Gutenberg Edition of THE WORLD FACTBOOK 1992****\n******This file should be named world92.zip or world92.txt******\n\nCorrected EDITIONS of our etexts get a new NUMBER, world921.txt.\nVERSIONS based on separate sources get new LETTER, world92a.txt.\n\nInformation about Project Gutenberg (one page)\n\nWe produce about one million dollars for each hour we work.  One\nhundred hours is a conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar, then we produce a\nmillion dollars per hour; next year we will have to do four text\nfiles per month, thus upping our productivity to two million/hr.\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers.\n\nWe need your donations more than ever!\n\nAll donations should be made to \"Project Gutenberg/IBC\", and are\ntax deductible to the extent allowable by law (\"IBC\" is Illinois\nBenedictine College).  (Subscriptions to our paper newsletter go\nto IBC, too)\n\nFor these and other matters, please mail to:\n\nDavid Turner, Project Gutenberg\nIllinois  Benedictine  College\n5700  College  Road\nLisle, IL 60532-0900\n\nEmail requests to:\nInternet:    chipmonk@eagle.ibc.edu (David Turner)\nCompuserve:  chipmonk@eagle.ibc.edu (David Turner)\nAttmail:     internet!chipmonk@eagle.ibc.edu (David Turner)\nMCImail:     (David Turner)\nADDRESS TYPE: MCI / EMS: INTERNET / MBX:chipmonk@eagle.ibc.edu\n\nWhen all other email fails try our Michael S. Hart, Executive Director:\nhart@vmd.cso.uiuc.edu (internet)   hart@uiucvmd   (bitnet)\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please:\n\nFTP directly to the Project Gutenberg archives:\nftp mrcnext.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext91\nor cd etext92 [for new books]  [now also cd etext/etext92]\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX and AAINDEX\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n****START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START****\n\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\n\nBy using or reading any part of this PROJECT GUTENBERG-tm etext,\nyou indicate that you understand, agree to and accept this\n\"Small Print!\" statement.  If you do not, you can receive a\nrefund of the money (if any) you paid for this etext by sending\na request within 30 days of receiving it to the person you got\nit from.  If you received this etext on a physical medium (such\nas a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\n\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-tm\netexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association (the\n\"Project\").  Among other things, this means that no one owns a\nUnited States copyright on or for this work, so the Project (and\nyou!) can copy and distribute it in the United States without\npermission and without paying copyright royalties.  Special\nrules, set forth below, apply if you wish to copy and distribute\nthis etext under the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable efforts\nto identify, transcribe and proofread public domain works.\nDespite these efforts, the Project's etexts and any medium they\nmay be on may contain \"Defects\".  Among other things, Defects\nmay take the form of incomplete, inaccurate or corrupt data,\ntranscription errors, a copyright or other intellectual property\ninfringement, a defective or damaged disk or other etext medium,\na computer virus, or computer codes that damage or cannot be\nread by your equipment.\n\nDISCLAIMER\n\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this etext\nfrom as a PROJECT GUTENBERG-tm etext) disclaims all liability to\nyou for damages, costs and expenses, including legal fees, and\n[2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR UNDER STRICT LIABILI-\nTY, OR FOR BREACH OF WARRANTY OR CONTRACT, INCLUDING BUT NOT\nLIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL\nDAMAGES, EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any) you\npaid for it by sending an explanatory note within that time to\nthe person you received it from.  If you received it on a\nphysical medium, you must return it with your note, and such\nperson may choose to alternatively give you a replacement copy.\nIf you received it electronically, such person may choose to\nalternatively give you a second opportunity to receive it elec-\ntronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\n\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise from any\ndistribution of this etext for which you are responsible, and\nfrom [1] any alteration, modification or addition to the etext\nfor which you are responsible, or [2] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\n\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this \"Small\nPrint!\" and all other references to Project Gutenberg, or:\n\n[1]  Only give exact copies of it.  Among other things, this re-\n     quires that you do not remove, alter or modify the etext or\n     this \"small print!\" statement.  You may however, if you\n     wish, distribute this etext in machine readable binary,\n     compressed, mark-up, or proprietary form, including any\n     form resulting from conversion by word processing or hyper-\n     text software, but only so long as *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable.  We\n          consider an etext *not* clearly readable if it\n          contains characters other than those intended by the\n          author of the work, although tilde (~), asterisk (*)\n          and underline (_) characters may be used to convey\n          punctuation intended by the author, and additional\n          characters may be used to indicate hypertext links.\n\n     [*]  The etext may be readily converted by the reader at no\n          expense into plain ASCII, EBCDIC or equivalent form\n          by the program that displays the etext (as is the\n          case, for instance, with most word processors).\n\n     [*]  You provide, or agree to also provide on request at no\n          additional cost, fee or expense, a copy of the etext\n          in its original plain ASCII form (or in EBCDIC or\n          other equivalent proprietary form).\n\n[2]   Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee of 20% (twenty percent) of the\n     net profits you derive from distributing this etext under\n     the trademark, determined in accordance with generally\n     accepted accounting practices.  The license fee:\n\n     [*]  Is required only if you derive such profits.  In\n          distributing under our trademark, you incur no\n          obligation to charge money or earn profits for your\n          distribution.\n\n     [*]  Shall be paid to \"Project Gutenberg Association /\n          Illinois Benedictine College\" (or to such other person\n          as the Project Gutenberg Association may direct)\n          within the 60 days following each date you prepare (or\n          were legally required to prepare) your year-end tax\n          return with respect to your income for that year.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\n\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Illinois Benedictine College\".\n\nWRITE TO US!  We can be reached at:\n\nProject Gutenberg Director of Communications (PGDIRCOM)\n\nInternet:     pgdircom@vmd.cso.uiuc.edu\nBitnet:       pgdircom@uiucvmd\nCompuServe:   >internet:pgdircom@.vmd.cso.uiuc.edu\nAttmail:      internet!vmd.cso.uiuc.edu!pgdircom\n\nDrafted by CHARLES B. KRAMER, Attorney\nCompuServe:  72600,2026\n  Internet:  72600.2026@compuserve.com\n       Tel:  (212) 254-5093\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.07.02.92*END*\n\n\n\nThe Project Gutenberg Edition of THE WORLD FACTBOOK 1992:    January 1, 1993\n\nThis edition, as are all Project Gutenberg Editions, is Plain Vanilla ASCII,\nmeaning there are no characters other than what you would see on paper, thus\nno page returns, no markup, nothing but the characters you would type if you\nwere to copy this from a book on a typewriter.  Repetitive paged headers and\ntrailing spaces are not present.  Leading spaces have been preserved in fact\nsections for readability.\n\nMail subject headers can be searched with leading :'s. . .such as:\n\n:Afghanistan Geography\n:Afghanistan People\n:Afghanistan Government\n:Afghanistan Government\n:Afghanistan Economy\n:Afghanistan Economy\n:Afghanistan Communications\n:Afghanistan Defense Forces\n\nTo find the beginning of any country, search for :country\nTo find internal information, search for :country section, as above.\n\n\nTHE WORLD FACTBOOK 1992\n\n\n:Afghanistan Geography\n\nTotal area:\n    647,500 km2\nLand area:\n    647,500 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    5,529 km total; China 76 km, Iran 936 km, Pakistan 2,430 km, Tajikistan\n    1,206 km, Turkmenistan 744 km, Uzbekistan 137 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Pashtunistan issue over the North-West Frontier Province with Pakistan;\n    periodic disputes with Iran over Helmand water rights; Pakistan, Saudi\n    Arabia, and Iran continue to support clients in country; power struggles\n    among various groups for control of Kabul, regional rivalries among emerging\n    warlords, and traditional tribal disputes continue\nClimate:\n    arid to semiarid; cold winters and hot summers\nTerrain:\n    mostly rugged mountains; plains in north and southwest\nNatural resources:\n    natural gas, crude oil, coal, copper, talc, barites, sulphur, lead, zinc,\n    iron ore, salt, precious and semiprecious stones\nLand use:\n    arable land 12%; permanent crops NEGL%; meadows and pastures 46%; forest and\n    woodland 3%; other 39%; includes irrigated NEGL%\nEnvironment:\n    damaging earthquakes occur in Hindu Kush mountains; soil degradation,\n    desertification, overgrazing, deforestation, pollution\nNote:\n    landlocked\n\n:Afghanistan People\n\nPopulation:\n    US Bureau of the Census - 16,095,664 (July 1992), growth rate 2.4% (1992)\n    and excludes 3,750,796 refugees in Pakistan and 1,607,281 refugees in Iran;\n    note - another report indicates a July 1990 population of 16,904,904,\n    including 3,271,580 refugees in Pakistan and 1,277,700 refugees in Iran\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    20 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992); note - there are flows across the border\n    in both directions, but data are fragmentary and unreliable\nInfant mortality rate:\n    162 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    45 years male, 43 years female (1992)\nTotal fertility rate:\n    6.4 children born/woman (1992)\nNationality:\n    noun - Afghan(s); adjective - Afghan\nEthnic divisions:\n    Pashtun 38%, Tajik 25%, Uzbek 6%, Hazara 19%; minor ethnic groups include\n    Chahar Aimaks, Turkmen, Baloch, and others\nReligions:\n    Sunni Muslim 84%, Shi`a Muslim 15%, other 1%\nLanguages:\n    Pashtu 35%, Afghan Persian (Dari) 50%, Turkic languages (primarily Uzbek and\n    Turkmen) 11%, 30 minor languages (primarily Balochi and Pashai) 4%; much\n    bilingualism\nLiteracy:\n    29% (male 44%, female 14%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,980,000; agriculture and animal husbandry 67.8%, industry 10.2%,\n    construction 6.3%, commerce 5.0%, services and other 10.7%, (1980 est.)\nOrganized labor:\n    some small government-controlled unions existed under the former regime but\n    probably now have disbanded\n\n:Afghanistan Government\n\nLong-form name:\n    Islamic State of Afghanistan\nType:\n    transitional\nCapital:\n    Kabul\nAdministrative divisions:\n    30 provinces (velayat, singular - velayat); Badakhshan, Badghis, Baghlan,\n    Balkh, Bamian, Farah, Faryab, Ghazni, Ghowr, Helmand, Herat, Jowzjan, Kabol,\n    Kandahar, Kapisa, Konar, Kondoz, Laghman, Lowgar, Nangarhar, Nimruz,\n    Oruzgan, Paktia, Paktika, Parvan, Samangan, Sar-e Pol, Takhar, Vardak,\n    Zabol; note - there may be a new province of Nurestan (Nuristan)\nIndependence:\n    19 August 1919 (from UK)\nConstitution:\n    the old Communist-era constitution probably will be replaced with an Islamic\n    constitution\nLegal system:\n    a new legal system has not been adopted but the transitional government has\n    declared it will follow Islamic law (Shari`a)\nNational holiday:\n    28 April, Victory of the Muslim Nation; 4 May, Remembrance Day for Martyrs\n    and Disabled; 19 August, Independence Day\nExecutive branch:\n    a 51-member transitional council headed by Sibghatullah MOJADDEDI rules\n    Kabul; this body is to turn over power to a leadership council, which will\n    function as the government and organize elections; Burhanuddin RABBANI will\n    serve as interim President\nLegislative branch:\n    previous bicameral legislature has been abolished\nJudicial branch:\n    an interim Chief Justice of the Supreme Court has been appointed, but a new\n    court system has not yet been organized\nLeaders:\n  Chief of State and Head of Government:\n    Interim President Burhanuddin RABBANI; First Vice President Abdul Wahed\n    SORABI (since 7 January 1991); Prime Minister Fazil Haq KHALIQYAR (since 21\n    May 1990)\nPolitical parties and leaders:\n    the former resistance parties represent the only current political\n    organizations and include Jamiat-i-Islami (Islamic Society), Burhanuddin\n    RABBANI; Hizbi Islami-Gulbuddin (Islamic Party), Gulbuddin Hikmatyar\n    Faction; Hizbi Islami-Khalis (Islamic Party) Yunis Khalis Faction;\n    Ittihad-i-Islami Barai Azadi Afghanistan (Islamic Union for the Liberation\n    of Afghanistan), Abdul Rasul SAYYAF; Harakat-Inqilab-i-Islami (Islamic\n    Revolutionary Movement), Mohammad Nabi MOHAMMADI; Jabha-i-Najat-i-Milli\n    Afghanistan (Afghanistan National Liberation Front), Sibghatullah MOJADDEDI;\n    Mahaz-i-Milli-Islami (National Islamic Front), Sayed Ahamad GAILANI;\n    Jonbesh-i-Milli Islami (National Islamic Movement), Ahmad Shah MASOOD and\n    Rashid DOSTAM; Hizbi Wahdat (Islamic Unity Party), and a number of minor\n    resistance parties; the former ruling Watan Party has been disbanded\nSuffrage:\n    undetermined; previously universal, male ages 15-50\nElections:\n    the transition government has promised elections in October 1992\nCommunists:\n    the former ruling Watan (Homeland) Party has been disbanded\n\n:Afghanistan Government\n\nOther political or pressure groups:\n    the former resistance commanders are the major power brokers in the\n    countryside; shuras (councils) of commanders are now administering most\n    cities outside Kabul; ulema (religious scholars); tribal elders\nMember of:\n    Has previously been a member of AsDB, CP, ESCAP, FAO, G-77, IAEA, IBRD,\n    ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, INTELSAT, IOC, ITU, LORCS, NAM, OIC,\n    UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO, WTO; note - the new\n    government has not yet announced whether it will continue to be a member of\n    these bodies; the former resistance government in exile (Afghan Interim\n    Government) was given membership in the OIC in 1989\nDiplomatic representation:\n    previous Minister-Counselor, Charge d'Affaires Abdul Ghafur JOUSHAN;\n    Chancery at 2341 Wyoming Avenue NW, Washington, DC 20008; telephone (202)\n    234-3770 or 3771; a new representative has not yet been named\n  US:\n    Charge d'Affaires (vacant); Embassy at Ansari Wat, Wazir Akbar Khan Mina,\n    Kabul; telephone 62230 through 62235 or 62436; note - US Embassy in Kabul\n    was closed in January 1989\nFlag:\n    a new flag of unknown description reportedly has been adopted; previous flag\n    consisted of three equal horizontal bands of black (top), red, and green,\n    with the national coat of arms superimposed on the hoist side of the black\n    and red bands; similar to the flag of Malawi, which is shorter and bears a\n    radiant, rising red sun centered in the black band\n\n:Afghanistan Economy\n\nOverview:\n    Fundamentally, Afghanistan is an extremely poor, landlocked country, highly\n    dependent on farming (wheat especially) and livestock raising (sheep and\n    goats). Economic considerations, however, have played second fiddle to\n    political and military upheavals during more than 13 years of war, including\n    the nearly 10-year Soviet military occupation (which ended 15 February\n    1989). Over the past decade, one-third of the population fled the country,\n    with Pakistan sheltering more than 3 million refugees and Iran about 1.3\n    million. Another 1 million probably moved into and around urban areas within\n    Afghanistan. Although reliable data are unavailable, gross domestic product\n    is lower than 12 years ago because of the loss of labor and capital and the\n    disruption of trade and transport.\nGDP:\n    exchange rate conversion - $3 billion, per capita $200; real growth rate 0%\n    (1989 est.)\nInflation rate (consumer prices):\n    over 90% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues NA; expenditures NA, including capital expenditures of NA\nExports:\n    $236 million (f.o.b., FY91 est.)\n  commodities:\n    natural gas 55%, fruits and nuts 24%, handwoven carpets, wool, cotton,\n    hides, and pelts\n  partners:\n    mostly former USSR\nImports:\n    $874 million (c.i.f., FY91 est.)\n  commodities:\n    food and petroleum products\n  partners:\n    mostly former USSR\nExternal debt:\n    $2.3 billion (March 1991 est.)\nIndustrial production:\n    growth rate 2.3% (FY91 est.); accounts for about 25% of GDP\nElectricity:\n    480,000 kW capacity; 1,450 million kWh produced, 90 kWh per capita (1991)\nIndustries:\n    small-scale production of textiles, soap, furniture, shoes, fertilizer, and\n    cement; handwoven carpets; natural gas, oil, coal, copper\nAgriculture:\n    largely subsistence farming and nomadic animal husbandry; cash products -\n    wheat, fruits, nuts, karakul pelts, wool, mutton\nIllicit drugs:\n    an illicit producer of opium poppy and cannabis for the international drug\n    trade; world's second-largest opium producer (after Burma) and a major\n    source of hashish\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $380 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $510 million; OPEC\n    bilateral aid (1979-89), $57 million; Communist countries (1970-89), $4.1\n    billion; net official Western disbursements (1985-89), $270 million\nCurrency:\n    afghani (plural - afghanis); 1 afghani (Af) = 100 puls\n\n:Afghanistan Economy\n\nExchange rates:\n    afghanis (Af) per US$1 - 550 (May 1992, free market exchange rate), 900\n    (free market exchange rate as of November 1991), 850 (1991), 700 (1989-90),\n    220 (1988-89); note - these rates reflect the bazaar rates rather than the\n    official exchange rates\nFiscal year:\n    21 March - 20 March\n\n:Afghanistan Communications\n\nRailroads:\n    9.6 km (single track) 1.524-meter gauge from Kushka (Turkmenistan) to\n    Towraghondi and 15.0 km from Termez (Uzbekistan) to Kheyrabad transshipment\n    point on south bank of Amu Darya\nHighways:\n    21,000 km total (1984); 2,800 km hard surface, 1,650 km bituminous-treated\n    gravel and improved earth, 16,550 km unimproved earth and tracks\nInland waterways:\n    total navigability 1,200 km; chiefly Amu Darya, which handles steamers up to\n    about 500 metric tons\nPipelines:\n    petroleum products - former USSR to Bagram and former USSR to Shindand;\n    natural gas 180 km\nPorts:\n    Shir Khan and Kheyrabad (river ports)\nCivil air:\n    2 Tu-154, 2 Boeing 727, 4 Yak-40, assorted smaller transports\nAirports:\n    41 total, 37 usable; 9 with permanent-surface runways; none with runways\n    over 3,659 m; 10 with runways 2,440-3,659 m; 18 with runways 1,220-2,439 m\nTelecommunications:\n    limited telephone, telegraph, and radiobroadcast services; television\n    introduced in 1980; 31,200 telephones; broadcast stations - 5 AM, no FM, 1\n    TV; 1 satellite earth station\n\n:Afghanistan Defense Forces\n\nBranches:\n    the military currently is being reorganized by the new government and does\n    not yet exist on a national scale; some elements of the former Army, Air and\n    Air Defense Forces, National Guard, Border Guard Forces, National Police\n    Force (Sarandoi), and Tribal Militias remain intact and are supporting the\n    new government; the government has asked all military personnel to return to\n    their stations; a large number of former resistance groups also field\n    irregular military forces; the Ministry of State Security (WAD) has been\n    disbanded\nManpower availability:\n    males 15-49, 3,989,232; 2,139,771 fit for military service; 150,572 reach\n    military age (22) annually\nDefense expenditures:\n    the new government has not yet adopted a defense budget\n\n:Albania Geography\n\nTotal area:\n    28,750 km2\nLand area:\n    27,400 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    720 km total; Greece 282 km, Macedonia 151 km, Serbia and Montenegro 287 km\n    (114 km with Serbia, 173 km with Montenegro)\nCoastline:\n    362 km\nMaritime claims:\n  Continental shelf:\n    not specified\n  Territorial sea:\n    12 nm\nDisputes:\n    Kosovo question with Serbia and Montenegro; Northern Epirus question with\n    Greece\nClimate:\n    mild temperate; cool, cloudy, wet winters; hot, clear, dry summers; interior\n    is cooler and wetter\nTerrain:\n    mostly mountains and hills; small plains along coast\nNatural resources:\n    crude oil, natural gas, coal, chromium, copper, timber, nickel\nLand use:\n    arable land 21%; permanent crops 4%; meadows and pastures 15%; forest and\n    woodland 38%; other 22%; includes irrigated 1%\nEnvironment:\n    subject to destructive earthquakes; tsunami occur along southwestern coast\nNote:\n    strategic location along Strait of Otranto (links Adriatic Sea to Ionian Sea\n    and Mediterranean Sea)\n\n:Albania People\n\nPopulation:\n    3,285,224 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    --6 migrants/1,000 population (1992)\nInfant mortality rate:\n    27 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 78 years female (1992)\nTotal fertility rate:\n    2.8 children born/woman (1992)\nNationality:\n    noun - Albanian(s); adjective - Albanian\nEthnic divisions:\n    Albanian 90%, Greeks 8%, other 2% (Vlachs, Gypsies, Serbs, and Bulgarians)\n    (1989 est.)\nReligions:\n    all mosques and churches were closed in 1967 and religious observances\n    prohibited; in November 1990, Albania began allowing private religious\n    practice; estimates of religious affiliation - Muslim 70%, Greek Orthodox\n    20%, Roman Catholic 10%\nLanguages:\n    Albanian (Tosk is official dialect), Greek\nLiteracy:\n    72% (male 80%, female 63%) age 9 and over can read and write (1955)\nLabor force:\n    1,500,000 (1987); agriculture about 60%, industry and commerce 40% (1986)\nOrganized labor:\n    Independent Trade Union Federation of Albania; Confederation of Trade Unions\n\n:Albania Government\n\nLong-form name:\n    Republic of Albania\nType:\n    nascent democracy\nCapital:\n    Tirane\nAdministrative divisions:\n    26 districts (rrethe, singular - rreth); Berat, Dibre, Durres, Elbasan,\n    Fier, Gjirokaster, Gramsh, Kolonje, Kore, Kruje, Kukes, Lezhe, Librazhd,\n    Lushnje, Mat, Mirdite, Permet, Pogradec, Puke, Sarande, Shkoder, Skrapar,\n    Tepelene, Tirane, Tropoje, Vlore\nIndependence:\n    28 November 1912 (from Ottoman Empire); People's Socialist Republic of\n    Albania declared 11 January 1946\nConstitution:\n    an interim basic law was approved by the People's Assembly on 29 April 1991;\n    a new constitution is to be drafted for adoption in 1992\nLegal system:\n    has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Liberation Day, 29 November (1944)\nExecutive branch:\n    president, prime minister of the Council of Ministers, two deputy prime\n    ministers of the Council of Ministers\nLegislative branch:\n    unicameral People's Assembly (Kuvendi Popullor)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President of the Republic Sali BERISHA (since 9 April 1992)\n  Head of Government:\n    Prime Minister of the Council of Ministers Aleksander MEKSI (since 10 April\n    1992)\nPolitical parties and leaders:\n    there are at least 18 political parties; most prominent are the Albanian\n    Socialist Party (ASP), Fatos NANO, first secretary; Democratic Party (DP),\n    Eduard SELAMI, chairman; Albanian Republican Party (RP), Sabri GODO; Omonia\n    (Greek minority party), leader NA (ran in 1992 election as Unity for Human\n    Rights Party (UHP)); Social Democratic Party (SDP), Skender GJINUSHI; note -\n    in December 1990 then President ALIA allowed new political parties to be\n    formed in addition to the then AWP for the first time since 1944\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  People's Assembly:\n    last held 22 March 1992; results - DP 62.29%, ASP 25.57%, SDP 4.33%, RP\n    3.15%, UHP 2.92%, other 1.74%; seats - (140 total) DP 92, ASP 38, SDP 7, RP\n    1, UHP 2\nMember of:\n    CSCE, EBRD, ECE, FAO, IAEA, IBRD, IMF, INTERPOL, IOC, ISO, ITU, LORCS, OIC,\n    UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO\nDiplomatic representation:\n    Minister-Counselor, Charge d'Affaires ad interim (30 April 1991) Sazan Hyda\n    BEJO; chancery (temporary) at 320 East 79th Street, New York, NY 10021;\n    telephone (212) 249-2059\n  US:\n    Ambassador (vacant); Embassy at Rruga Labinoti 103, room 2921, Tirane\n    (mailing address is APO AE 09624); telephone 355-42-32875; FAX 355-42-32222\n\n:Albania Government\n\nFlag:\n    red with a black two-headed eagle in the center\n\n:Albania Economy\n\nOverview:\n    The Albanian economy, already providing the lowest standard of living in\n    Europe, contracted sharply in 1991, with most industries producing at only a\n    fraction of past levels and an unemployment rate estimated at 40%. For over\n    40 years, the Stalinist-type economy has operated on the principle of\n    central planning and state ownership of the means of production. Albania\n    began fitful economic reforms during 1991, including the liberalization of\n    prices and trade, the privatization of shops and transport, and land reform.\n    These reform measures were crippled, however, by the widespread civil\n    disorder that accompanied the collapse of the Communist state. Following\n    their overwhelming victory in the 22 March 1991 elections, the new\n    Democratic government announced a program of shock therapy to stabilize the\n    economy and establish a market economy. In an effort to expand international\n    ties, Tirane has reestablished diplomatic relations with the former Soviet\n    Union and the US and has joined the IMF and World Bank. The Albanians have\n    also passed legislation allowing foreign investment. Albania possesses\n    considerable mineral resources and, until 1990, was largely self-sufficient\n    in food; however, the breakup of cooperative farms in 1991 and general\n    economic decline forced Albania to rely on foreign aid to maintain adequate\n    supplies. Available statistics on Albanian economic activity are rudimentary\n    and subject to an especially wide margin of error.\nGNP:\n    purchasing power equivalent - $2.7 billion, per capita $820; real growth\n    rate --35% (1991 est.)\nInflation rate (consumer prices):\n    100% (1991 est.)\nUnemployment rate:\n    40% (1992 est.)\nBudget:\n    revenues $1.1 billion; expenditures $1.4 billion, including capital\n    expenditures of $70 million (1991 est.)\nExports:\n    $80 million (f.o.b., 1991 est.)\n  commodities:\n    asphalt, petroleum products, metals and metallic ores, electricity, crude\n    oil, vegetables, fruits, tobacco\n  partners:\n    Italy, Yugoslavia, Germany, Greece, Czechoslovakia, Poland, Romania,\n    Bulgaria, Hungary\nImports:\n    $147 million (f.o.b., 1991 est.)\n  commodities:\n    machinery, machine tools, iron and steel products, textiles, chemicals,\n    pharmaceuticals\n  partners:\n    Italy, Yugoslavia, Germany, Czechoslovakia, Romania, Poland, Hungary,\n    Bulgaria\nExternal debt:\n    $500 million (1991 est.)\nIndustrial production:\n    growth rate --55% (1991 est.)\nElectricity:\n    1,690,000 kW capacity; 5,000 million kWh produced, 1,530 kWh per capita\n    (1990)\nIndustries:\n    food processing, textiles and clothing, lumber, oil, cement, chemicals,\n    basic metals, hydropower\n\n:Albania Economy\n\nAgriculture:\n    arable land per capita among lowest in Europe; over 60% of arable land now\n    in private hands; one-half of work force engaged in farming; wide range of\n    temperate-zone crops and livestock; severe dislocations suffered in 1991\nEconomic aid:\n    $190 million humanitarian aid, $94 million in loans/guarantees/credits\nCurrency:\n    lek (plural - leke); 1 lek (L) = 100 qintars\nExchange rates:\n    leke (L) per US$1 - 50 (January 1992), 25 (September 1991)\nFiscal year:\n    calendar year\n\n:Albania Communications\n\nRailroads:\n    543 km total; 509 1.435-meter standard gauge, single track and 34 km narrow\n    gauge, single track (1990); line connecting Titograd (Serbia and Montenegro)\n    and Shkoder (Albania) completed August 1986\nHighways:\n    16,700 km total; 6,700 km highways, 10,000 km forest and agricultural cart\n    roads (1990)\nInland waterways:\n    43 km plus Albanian sections of Lake Scutari, Lake Ohrid, and Lake Prespa\n    (1990)\nPipelines:\n    crude oil 145 km; petroleum products 55 km; natural gas 64 km (1988)\nPorts:\n    Durres, Sarande, Vlore\nMerchant marine:\n    11 cargo ships (1,000 GRT or over) totaling 52,886 GRT/76,449 DWT\nAirports:\n    12 total, 10 usable; more than 5 with permanent-surface runways; more than 5\n    with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    inadequate service; 15,000 telephones; broadcast stations - 13 AM, 1 TV;\n    514,000 radios, 255,000 TVs (1987 est.)\n\n:Albania Defense Forces\n\nBranches:\n    Army, Coastal Defense Command, Air and Air Defense Forces, Interior Ministry\n    Troops, Border Troops\nManpower availability:\n    males 15-49, 886,032; 731,072 fit for military service; 33,028 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - 1.0 billion leks, NA% of GNP (FY90); note -\n    conversion of defense expenditures into US dollars using the current\n    exchange rate could produce misleading results\n\n:Algeria Geography\n\nTotal area:\n    2,381,740 km2\nLand area:\n    2,381,740 km2\nComparative area:\n    slightly less than 3.5 times the size of Texas\nLand boundaries:\n    6,343 km total; Libya 982 km, Mali 1,376 km, Mauritania 463 km, Morocco\n    1,559 km, Niger 956 km, Tunisia 965 km, Western Sahara 42 km\nCoastline:\n    998 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    Libya claims about 19,400 km2 in southeastern Algeria; land boundary\n    disputes with Tunisia under discussion\nClimate:\n    arid to semiarid; mild, wet winters with hot, dry summers along coast; drier\n    with cold winters and hot summers on high plateau; sirocco is a hot,\n    dust/sand-laden wind especially common in summer\nTerrain:\n    mostly high plateau and desert; some mountains; narrow, discontinuous\n    coastal plain\nNatural resources:\n    crude oil, natural gas, iron ore, phosphates, uranium, lead, zinc\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 13%; forest and\n    woodland 2%; other 82%; includes irrigated NEGL%\nEnvironment:\n    mountainous areas subject to severe earthquakes; desertification\nNote:\n    second-largest country in Africa (after Sudan)\n\n:Algeria People\n\nPopulation:\n    26,666,921 (July 1992), growth rate 2.5% (1992)\nBirth rate:\n    31 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    56 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 68 years female (1992)\nTotal fertility rate:\n    4.1 children born/woman (1992)\nNationality:\n    noun - Algerian(s); adjective - Algerian\nEthnic divisions:\n    Arab-Berber 99%, European less than 1%\nReligions:\n    Sunni Muslim (state religion) 99%, Christian and Jewish 1%\nLanguages:\n    Arabic (official), French, Berber dialects\nLiteracy:\n    50% (male 63%, female 36%) age 15 and over can read and write (1987)\nLabor force:\n    3,700,000; industry and commerce 40%, agriculture 24%, government 17%,\n    services 10% (1984)\nOrganized labor:\n    16-19% of labor force claimed; General Union of Algerian Workers (UGTA) is\n    the only labor organization and is subordinate to the National Liberation\n    Front\n\n:Algeria Government\n\nLong-form name:\n    Democratic and Popular Republic of Algeria\nType:\n    republic\nCapital:\n    Algiers\nAdministrative divisions:\n    48 provinces (wilayast, singular - wilaya); Adrar, Ain Defla, Ain\n    Temouchent, Alger, Annaba, Batna, Bechar, Bejaia, Biskra, Blida, Bordj Bou\n    Arreridj, Bouira, Boumerdes, Chlef, Constantine, Djelfa, El Bayadh, El Oued,\n    El Tarf, Ghardaia, Guelma, Illizi, Jijel, Khenchela, Laghouat, Mascara,\n    Medea, Mila, Mostaganem, M'Sila, Naama, Oran, Ouargla, Oum el Bouaghi,\n    Relizane, Saida, Setif, Sidi Bel Abbes, Skikda, Souk Ahras, Tamanghasset,\n    Tebessa, Tiaret, Tindouf, Tipaza, Tissemsilt, Tizi Ouzou, Tlemcen\nIndependence:\n    5 July 1962 (from France)\nConstitution:\n    19 November 1976, effective 22 November 1976; revised February 1989\nLegal system:\n    socialist, based on French and Islamic law; judicial review of legislative\n    acts in ad hoc Constitutional Council composed of various public officials,\n    including several Supreme Court justices; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Anniversary of the Revolution, 1 November (1954)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National People's Assembly (Al-Majlis Ech-Chaabi Al-Watani)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Mohamed BOUDIAF; assassinated 29 June 1992\n  Head of Government:\n    Interim Prime Minister Sid Ahmed GHOZALI (since 6 June 1991)\nPolitical parties and leaders:\n    National Liberation Front (FLN); Socialist Forces Front (FFS), Hocine Ait\n    AHMED, Secretary General; the government established a multiparty system in\n    September 1989, and, as of 31 December 1990, over 30 legal parties existed\nSuffrage:\n    universal at age 18\nElections:\n  National People's Assembly:\n    first round held on 26 December 1991 (second round canceled by the military\n    after President BENJEDID resigned 11 January 1992); results - percent of\n    vote by party NA; seats - (281 total); the fundamentalist FIS won 188 of the\n    231 seats contested in the first round; note - elections (municipal and\n    wilaya) were held in June 1990, the first in Algerian history; results - FIS\n    55%, FLN 27.5%, other 17.5%, with 65% of the voters participating\n  President:\n    next election to be held December 1993\nCommunists:\n    400 (est.); Communist party banned 1962\nMember of:\n    ABEDA, AfDB, AFESD, AL, AMF, AMU, CCC, ECA, FAO, G-15, G-24, G-77, IAEA,\n    IBRD, ICAO, IDA, IDB, IFAD, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, ISO, ITU, LORCS, NAM, OAPEC, OAS (observer), OAU, OIC, OPEC, UN,\n    UNAVEM, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\n\n:Algeria Government\n\nDiplomatic representation:\n    Ambassador Abderrahmane BENSID; Chancery at 2118 Kalorama Road NW,\n    Washington, DC 20008; telephone (202) 265-2800\n  US:\n    Ambassador Mary Ann CASEY; Embassy at 4 Chemin Cheich Bachir El-Ibrahimi,\n    Algiers (mailing address is B. P. Box 549, Alger-Gare, 16000 Algiers);\n    telephone [213] (2) 601-425 or 255, 186; FAX [213] (2) 603979; there is a US\n    Consulate in Oran\nFlag:\n    two equal vertical bands of green (hoist side) and white with a red\n    five-pointed star within a red crescent; the crescent, star, and color green\n    are traditional symbols of Islam (the state religion)\n\n:Algeria Economy\n\nOverview:\n    The oil and natural gas sector forms the backbone of the economy. Algeria\n    depends on hydrocarbons for nearly all of its export receipts, about 30% of\n    government revenues, and nearly 25% of GDP. In 1973-74 the sharp increase in\n    oil prices led to a booming economy and helped to finance an ambitious\n    program of industrialization. Plunging oil and gas prices, combined with the\n    mismanagement of Algeria's highly centralized economy, has brought the\n    nation to its most serious social and economic crisis since independence in\n    1988. The government has promised far-reaching reforms, including\n    privatization of some public- sector companies, encouraging private-sector\n    activity, boosting gas and nonhydrocarbon exports, and proposing a major\n    overhaul of the banking and financial systems, but to date it has made only\n    limited progress.\nGDP:\n    exchange rate conversion - $54 billion, per capita $2,130; real growth rate\n    2.5% (1990 est.)\nInflation rate (consumer prices):\n    30% (1991 est.)\nUnemployment rate:\n    30% (1991 est.)\nBudget:\n    revenues $16.7 billion; expenditures $17.3 billion, including capital\n    expenditures of $6.6 billion (1990 est.)\nExports:\n    $11.7 billion (f.o.b., 1991 est.)\n  commodities:\n    petroleum and natural gas 97%\n  partners:\n    Netherlands, Czechoslovakia, Romania, Italy, France, US\nImports:\n    $9 billion (f.o.b., 1991 est.)\n  commodities:\n    capital goods 29%, consumer goods 30%\n  partners:\n    France 25%, Italy 8%, FRG 8%, US 6-7%\nExternal debt:\n    $26.4 billion\nIndustrial production:\n    growth rate --3% (1989 est.); accounts for 30% of GDP, including petroleum\nElectricity:\n    6,380,000 kW capacity; 16,700 million kWh produced, 640 kWh per capita\n    (1991)\nIndustries:\n    petroleum, light industries, natural gas, mining, electrical, petrochemical,\n    food processing\nAgriculture:\n    accounts for 11% of GDP and employs 24% of labor force; net importer of food\n    - grain, vegetable oil, and sugar; farm production includes wheat, barley,\n    oats, grapes, olives, citrus, fruits, sheep, and cattle\nEconomic aid:\n    US commitments, including Ex-Im (FY70-85), $1.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $925 million; OPEC\n    bilateral aid (1979-89), $1.8 billion; Communist countries (1970-89), $2.7\n    billion; net official disbursements (1985-89), --$375 million\nCurrency:\n    Algerian dinar (plural - dinars); 1 Algerian dinar (DA) = 100 centimes\nExchange rates:\n    Algerian dinars (DA) per US$1 - 21.862 (January 1992), 18.473 (1991), 8.958\n    (1990), 7.6086 (1989), 5.9148 (1988), 4.8497 (1987)\n\n:Algeria Economy\n\nFiscal year:\n    calendar year\n\n:Algeria Communications\n\nRailroads:\n    4,060 km total; 2,616 km standard gauge (1.435 m), 1,188 km 1.055-meter\n    gauge, 256 km 1.000-meter gauge; 300 km electrified; 215 km double track\nHighways:\n    80,000 km total; 60,000 km concrete or bituminous, 20,000 km gravel, crushed\n    stone, unimproved earth\nPipelines:\n    crude oil 6,612 km; petroleum products 298 km; natural gas 2,948 km\nPorts:\n    Algiers, Annaba, Arzew, Bejaia, Djendjene, Ghazaouet, Jijel, Mers el Kebir,\n    Mostaganem, Oran, Skikda\nMerchant marine:\n    75 ships (1,000 GRT or over) totaling 903,179 GRT/1,064,246 DWT; includes 5\n    short-sea passenger, 27 cargo, 12 roll-on/roll-off cargo, 5 petroleum\n    tanker, 9 liquefied gas, 7 chemical tanker, 9 bulk, 1 specialized tanker\nCivil air:\n    42 major transport aircraft\nAirports:\n    141 total, 124 usable; 53 with permanent-surface runways; 2 with runways\n    over 3,659 m; 32 with runways 2,440-3,659 m; 65 with runways 1,220-2,439 m\nTelecommunications:\n    excellent domestic and international service in the north, sparse in the\n    south; 822,000 telephones; broadcast stations - 26 AM, no FM, 18 TV;\n    1,600,000 TV sets; 5,200,000 radios; 5 submarine cables; radio relay to\n    Italy, France, Spain, Morocco, and Tunisia; coaxial cable to Morocco and\n    Tunisia; satellite earth stations - 1 Atlantic Ocean INTELSAT, 1 Indian\n    Ocean INTELSAT, 1 Intersputnik, l ARABSAT, and 15 domestic\n\n:Algeria Defense Forces\n\nBranches:\n    National Popular Army, Navy, Air Force, Territorial Air Defense, National\n    Gendarmerie\nManpower availability:\n    males 15-49, 6,386,157; 3,928,029 fit for military service; 283,068 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $867 million, approximately 1.8% of GDP (1992)\n\n:American Samoa Geography\n\nTotal area:\n    199 km2\nLand area:\n    199 km2; includes Rose Island and Swains Island\nComparative area:\n    slightly larger than Washington, DC\nLand boundaries:\n    none\nCoastline:\n    116 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine, moderated by southeast trade winds; annual rainfall\n    averages 124 inches; rainy season from November to April, dry season from\n    May to October; little seasonal temperature variation\nTerrain:\n    five volcanic islands with rugged peaks and limited coastal plains, two\n    coral atolls\nNatural resources:\n    pumice and pumicite\nLand use:\n    arable land 10%; permanent crops 5%; meadows and pastures 0%; forest and\n    woodland 75%; other 10%\nEnvironment:\n    typhoons common from December to March\nNote:\n    Pago Pago has one of the best natural deepwater harbors in the South Pacific\n    Ocean, sheltered by shape from rough seas and protected by peripheral\n    mountains from high winds; strategic location about 3,700 km south-southwest\n    of Honolulu in the South Pacific Ocean about halfway between Hawaii and New\n    Zealand\n\n:American Samoa People\n\nPopulation:\n    51,115 (July 1992), growth rate 3.9% (1992); about 65,000 American Samoans\n    live in the states of California and Washington and 20,000 in Hawaii\nBirth rate:\n    37 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    6 immigrants/1,000 population (1992)\nInfant mortality rate:\n    19 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 75 years female (1992)\nTotal fertility rate:\n    4.5 children born/woman (1992)\nNationality:\n    noun - American Samoan(s); adjective - American Samoan; US, noncitizen\n    nationals\nEthnic divisions:\n    Samoan (Polynesian) 90%, Caucasian 2%, Tongan 2%, other 6%\nReligions:\n    Christian Congregationalist 50%, Roman Catholic 20%, Protestant\n    denominations and other 30%\nLanguages:\n    Samoan (closely related to Hawaiian and other Polynesian languages) and\n    English; most people are bilingual\nLiteracy:\n    97% (male 97%, female 97%) age 15 and over can read and write (1980)\nLabor force:\n    14,400 (1990); government 48%, tuna canneries 33%, other 19% (1986 est.)\nOrganized labor:\n    NA\n\n:American Samoa Government\n\nLong-form name:\n    Territory of American Samoa\nType:\n    unincorporated and unorganized territory of the US;\n    administered by the US Department of Interior, Office of Territorial and\n    International Affairs; indigenous inhabitants are US nationals, not citizens\n    of the US\nCapital:\n    Pago Pago\nAdministrative divisions:\n    none (territory of the US)\nIndependence:\n    none (territory of the US)\nConstitution:\n    ratified 1966, in effect 1967; note - a comprehensive revision is awaiting\n    ratification by the US Congress (1992)\nNational holiday:\n    Territorial Flag Day, 17 April (1900)\nExecutive branch:\n    popularly elected governor and lieutenant governor\nLegislative branch:\n    bicameral Legislative Assembly (Fono) consists of an upper house or Senate\n    and a lower house or House of Representatives\nJudicial branch:\n    High Court, district courts, and village courts\nLeaders:\n  Chief of State:\n    President George BUSH (since 20 January 1989); Vice President Dan QUAYLE\n    (since 20 January 1989)\n  Head of Government:\n    Governor Peter Tali COLEMAN (since 20 January 1989); Lieutenant Governor\n    Galea'i POUMELE (since NA 1989)\nSuffrage:\n    universal at age 18; indigenous inhabitants are US nationals, not US\n    citizens\nElections:\n  Governor:\n    last held 7 November 1988 (next to be held November 1992); results - Peter\n    T. COLEMAN was elected (percent of vote NA)\n  House of Representatives:\n    last held November 1990 (next to be held November 1992); results -\n    representatives popularly elected from 17 house districts; seats - (21\n    total, 20 elected, and 1 nonvoting delegate from Swain's Island)\n  Senate:\n    last held 7 November 1988 (next to be held November 1992); results -\n    senators elected by county councils from 12 senate districts; seats - (18\n    total) number of seats by party NA\n  US House of Representatives:\n    last held 19 November 1990 (next to be held November 1992); results - Eni R.\n    F. H. FALEOMAVAEGA reelected as a nonvoting delegate\nMember of:\n    ESCAP, IOC, SPC\nDiplomatic representation:\n    none (territory of the US)\nFlag:\n    blue with a white triangle edged in red that is based on the fly side and\n    extends to the hoist side; a brown and white American bald eagle flying\n    toward the hoist side is carrying two traditional Samoan symbols of\n    authority, a staff and a war club\n\n:American Samoa Economy\n\nOverview:\n    Economic development is strongly linked to the US, with which American Samoa\n    does nearly 90% of its foreign trade. Tuna fishing and tuna processing\n    plants are the backbone of the private-sector economy, with canned tuna the\n    primary export. The tuna canneries and the government are by far the two\n    largest employers. Other economic activities include a slowly developing\n    tourist industry.\nGNP:\n    purchasing power equivalent - $128 million, per capita $2,500; real growth\n    rate NA% (1990)\nInflation rate (consumer prices):\n    4.3% (1989)\nUnemployment rate:\n    12% (1991)\nBudget:\n    revenues $126,394,000 (consisting of $46,441,000 local revenue and\n    $79,953,000 grant revenue); including capital expenditures of $NA million\n    (1990)\nExports:\n    $307 million (f.o.b., 1989)\n  commodities:\n    canned tuna 93%\n  partners:\n    US 99.6%\nImports:\n    $377.9 million (c.i.f., 1989)\n  commodities:\n    materials for canneries 56%, food 8%, petroleum 7%, machinery and parts 6%\n  partners:\n    US 72%, Japan 7%, NZ 7%, Australia 5%, other 9%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    42,000 kW capacity; 85 million kWh produced, 2,020 kWh per capita (1990)\nIndustries:\n    tuna canneries (largely dependent on foreign supplies of raw tuna), meat\n    canning, handicrafts\nAgriculture:\n    bananas, coconuts, vegetables, taro, breadfruit, yams, copra, pineapples,\n    papayas, dairy farming\nEconomic aid:\n    $21,042,650 in operational funds and $5,948,931 in construction funds for\n    capital improvement projects from the US Department of Interior (1991)\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:American Samoa Communications\n\nRailroads:\n    none\nHighways:\n    350 km total; 150 km paved, 200 km unpaved\nPorts:\n    Pago Pago, Ta'u\nAirports:\n    4 total, 4 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440 to 3,659 m (international airport at Tafuna,\n    near Pago Pago); small airstrips on Ta'u and Ofu\nTelecommunications:\n    6,500 telephones; broadcast stations - 1 AM, 2 FM, 1 TV; good telex,\n    telegraph, and facsimile services; 1 Pacific Ocean INTELSAT earth station, 1\n    COMSAT earth station\n\n:American Samoa Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Andorra Geography\n\nTotal area:\n    450 km2\nLand area:\n    450 km2\nComparative area:\n    slightly more than 2.5 times the size of Washington, DC\nLand boundaries:\n    125 km total; France 60 km, Spain 65 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; snowy, cold winters and cool, dry summers\nTerrain:\n    rugged mountains dissected by narrow valleys\nNatural resources:\n    hydropower, mineral water, timber, iron ore, lead\nLand use:\n    arable land 2%; permanent crops 0%; meadows and pastures 56%; forest and\n    woodland 22%; other 20%\nEnvironment:\n    deforestation, overgrazing\nNote:\n    landlocked\n\n:Andorra People\n\nPopulation:\n    54,428 (July 1992), growth rate 2.2% (1992)\nBirth rate:\n    11 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    15 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.3 children born/woman (1992)\nNationality:\n    noun - Andorran(s); adjective - Andorran\nEthnic divisions:\n    Catalan stock; Spanish 61%, Andorran 30%, French 6%, other 3%\nReligions:\n    virtually all Roman Catholic\nLanguages:\n    Catalan (official); many also speak some French and Castilian\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    none\n\n:Andorra Government\n\nLong-form name:\n    Principality of Andorra\nType:\n    unique coprincipality under formal sovereignty of president of France and\n    Spanish bishop of Seo de Urgel, who are represented locally by officials\n    called veguers\nCapital:\n    Andorra la Vella\nAdministrative divisions:\n    7 parishes (parroquies, singular - parroquia); Andorra, Canillo, Encamp, La\n    Massana, Les Escaldes, Ordino, Sant Julia de Loria\nIndependence:\n    1278\nConstitution:\n    none; some pareatges and decrees, mostly custom and usage\nLegal system:\n    based on French and Spanish civil codes; no judicial review of legislative\n    acts; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Mare de Deu de Meritxell, 8 September\nExecutive branch:\n    two co-princes (president of France, bishop of Seo de Urgel in Spain), two\n    designated representatives (French veguer, Episcopal veguer), two permanent\n    delegates (French prefect for the department of Pyrenees-Orientales, Spanish\n    vicar general for the Seo de Urgel diocese), president of government,\n    Executive Council\nLegislative branch:\n    unicameral General Council of the Valleys (Consell General de las Valls)\nJudicial branch:\n    civil cases - Supreme Court of Andorra at Perpignan (France) or the\n    Ecclesiastical Court of the bishop of Seo de Urgel (Spain); criminal cases -\n    Tribunal of the Courts (Tribunal des Cortes)\nLeaders:\n  Chiefs of State:\n    French Co-Prince Francois MITTERRAND (since 21 May 1981), represented by\n    Veguer de Franca Jean Pierre COURTOIS; Spanish Episcopal Co-Prince Mgr. Joan\n    MARTI y Alanis (since 31 January 1971), represented by Veguer Episcopal\n    Francesc BADIA Batalla\n  Head of Government:\n    Oscar RIBAS Reig (since January 1990)\nPolitical parties and leaders:\n    political parties not yet legally recognized; traditionally no political\n    parties but partisans for particular independent candidates for the General\n    Council on the basis of competence, personality, and orientation toward\n    Spain or France; various small pressure groups developed in 1972; first\n    formal political party, Andorran Democratic Association, was formed in 1976\n    and reorganized in 1979 as Andorran Democratic Party\nSuffrage:\n    universal at age 18\nElections:\n  General Council of the Valleys:\n    last held 11 December 1989 (next to be held December 1993); results -\n    percent of vote by party NA; seats - (28 total) number of seats by party NA\nMember of:\n    INTERPOL, IOC\nDiplomatic representation:\n    Andorra has no mission in the US\n\n:Andorra Government\n\n  US:\n    includes Andorra within the Barcelona (Spain) Consular District, and the US\n    Consul General visits Andorra periodically; Consul General Carolee HEILEMAN;\n    Consulate General at Via Layetana 33, 08003 Barcelona (mailing address APO\n    AE 09646); telephone [34] (3) 319-9550\nFlag:\n    three equal vertical bands of blue (hoist side), yellow, and red with the\n    national coat of arms centered in the yellow band; the coat of arms features\n    a quartered shield; similar to the flags of Chad and Romania that do not\n    have a national coat of arms in the center\n\n:Andorra Economy\n\nOverview:\n    The mainstay of Andorra's economy is tourism. An estimated 13 million\n    tourists visit annually, attracted by Andorra's duty-free status and by its\n    summer and winter resorts. Agricultural production is limited by a scarcity\n    of arable land, and most food has to be imported. The principal livestock\n    activity is sheep raising. Manufacturing consists mainly of cigarettes,\n    cigars, and furniture. The rapid pace of European economic integration is a\n    potential threat to Andorra's advantages from its duty-free status.\nGDP:\n    purchasing power equivalent - $727 million, per capita $14,000; real growth\n    rate NA% (1990 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    none\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $0.017 million (f.o.b., 1986)\n  commodities:\n    electricity\n  partners:\n    France, Spain\nImports:\n    $531 million (f.o.b., 1986)\n  commodities:\n    consumer goods, food\n  partners:\n    France, Spain\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    35,000 kW capacity; 140 million kWh produced, 2,800 kWh per capita (1991)\nIndustries:\n    tourism (particularly skiing), sheep, timber, tobacco, banking\nAgriculture:\n    sheep raising; small quantities of tobacco, rye, wheat, barley, oats, and\n    some vegetables\nEconomic aid:\n    none\nCurrency:\n    French franc (plural - francs) and Spanish peseta (plural - pesetas); 1\n    French franc (F) = 100 centimes and 1 Spanish peseta (Pta) = 100 centimos\nExchange rates:\n    French francs (F) per US$1 - 5.3801 January (1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987); Spanish pesetas (Ptas)\n    per US$1 - 100.02 (January 1992), 103.91 (1991), 101.93 (1990), 118.38\n    (1989), 116.49 (1988), 123.48 (1987)\nFiscal year:\n    calendar year\n\n:Andorra Communications\n\nHighways:\n    96 km\nTelecommunications:\n    international digital microwave network; international landline circuits to\n    France and Spain; broadcast stations - 1 AM, no FM, no TV; 17,700 telephones\n\n:Andorra Defense Forces\n\nNote:\n    defense is the responsibility of France and Spain\n\n:Angola Geography\n\nTotal area:\n    1,246,700 km2\nLand area:\n    1,246,700 km2\nComparative area:\n    slightly less than twice the size of Texas\nLand boundaries:\n    5,198 km total; Congo 201 km, Namibia 1,376 km, Zaire 2,511 km, Zambia 1,110\n    km\nCoastline:\n    1,600 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    20 nm\nDisputes:\n    civil war since independence on 11 November 1975; on 31 May 1991 Angolan\n    President Jose Eduardo dos SANTOS and Jonas SAVIMBI, leader of the National\n    Union for the Total Independence of Angola (UNITA), signed a peace treaty\n    that calls for multiparty elections in late September 1992, an\n    internationally monitored cease-fire, and termination of outside military\n    assistance\nClimate:\n    semiarid in south and along coast to Luanda; north has cool, dry season (May\n    to October) and hot, rainy season (November to April)\nTerrain:\n    narrow coastal plain rises abruptly to vast interior plateau\nNatural resources:\n    petroleum, diamonds, iron ore, phosphates, copper, feldspar, gold, bauxite,\n    uranium\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 23%; forest and\n    woodland 43%; other 32%\nEnvironment:\n    locally heavy rainfall causes periodic flooding on plateau; desertification\nNote:\n    Cabinda is separated from rest of country by Zaire\n\n:Angola People\n\nPopulation:\n    8,902,076 (July 1992), growth rate 2.7% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    19 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    152 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    43 years male, 47 years female (1992)\nTotal fertility rate:\n    6.6 children born/woman (1992)\nNationality:\n    noun - Angolan(s); adjective - Angolan\nEthnic divisions:\n    Ovimbundu 37%, Kimbundu 25%, Bakongo 13%, Mestico 2%,European 1%, other 22%\nReligions:\n    indigenous beliefs 47%, Roman Catholic 38%, Protestant 15% (est.)\nLanguages:\n    Portuguese (official); various Bantu dialects\nLiteracy:\n    42% (male 56%, female 28%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,783,000 economically active; agriculture 85%, industry 15% (1985 est.)\nOrganized labor:\n    about 450,695 (1980)\n\n:Angola Government\n\nLong-form name:\n    People's Republic of Angola\nType:\n    in transition from a one-party Marxist state to a multiparty democracy with\n    a strong presidential system\nCapital:\n    Luanda\nAdministrative divisions:\n    18 provinces (provincias, singular - provincia); Bengo, Benguela, Bie,\n    Cabinda, Cuando Cubango, Cuanza Norte, Cuanza Sul, Cunene, Huambo, Huila,\n    Luanda, Lunda Norte, Lunda Sul, Malanje, Moxico, Namibe, Uige, Zaire\nIndependence:\n    11 November 1975 (from Portugal)\nConstitution:\n    11 November 1975; revised 7 January 1978, 11 August 1980, and 6 March 1991\nLegal system:\n    based on Portuguese civil law system and customary law; recently modified to\n    accommodate multipartyism and increased use of free markets\nNational holiday:\n    Independence Day, 11 November (1975)\nExecutive branch:\n    president, prime minister, chairman of the Council of Ministers, Council of\n    Ministers (cabinet)\nLegislative branch:\n    unicameral People's Assembly (Assembleia do Povo)\nJudicial branch:\n    Supreme Court (Tribunal da Relacaao)\nLeaders:\n  Chief of State:\n    President Jose Eduardo dos SANTOS (since 21 September 1979)\n  Head of Government:\n    Prime Minister Fernando Jose Franca VAN DUNEM (since 21 July 1991)\nPolitical parties and leaders:\n    the Popular Movement for the Liberation of Angola - Labor Party (MPLA), led\n    by Jose Eduardo dos SANTOS, is the ruling party that has been in power in\n    Angola's one-party system since 1975. The National Union for the Total\n    Independence of Angola (UNITA), led by Jonas SAVIMBI, has been in insurgency\n    since 1975, but as a result of the peace accords is now a legally recognized\n    political party. Some 30 other political parties now exist in Angola, but\n    few of them are viable and only a couple have met the requirements to become\n    legally recognized.\nSuffrage:\n    universal at age 18\nElections:\n    first nationwide, multiparty elections to be held between September and\n    November 1992\nMember of:\n    ACP, AfDB, CCC, CEEAC (observer), ECA, FAO, FLS, G-77, IBRD, ICAO, IFAD,\n    ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, SADCC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    none; note - US Liaison Office (USLO) established after Peace Accords in May\n    1991 as a precursor to establishing an embassy after election in 1992;\n    address - Luanda (USLO), BPA Building, llth floor, telephone [244] (2)\n    39-02-42; FAX [244] (2) 39-05-15\nFlag:\n    two equal horizontal bands of red (top) and black with a centered yellow\n    emblem consisting of a five-pointed star within half a cogwheel crossed by a\n    machete (in the style of a hammer and sickle)\n\n:Angola Economy\n\nOverview:\n    Subsistence agriculture provides the main livelihood for 80-90% of the\n    population, but accounts for less than 15% of GDP. Oil production is vital\n    to the economy, contributing about 60% to GDP. In recent years, a bitter\n    internal war has severely affected the nonoil economy, and food has to be\n    imported. For the long run, Angola has the advantage of rich natural\n    resources in addition to oil, notably gold, diamonds, and arable land. To\n    realize its economic potential Angola not only must secure domestic peace\n    but also must reform government policies that have led to distortions and\n    imbalances throughout the economy.\nGDP:\n    exchange rate conversion - $8.3 billion, per capita $950; real growth rate\n    1.7% (1991 est.)\nInflation rate (consumer prices):\n    6.1% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $2.6 billion; expenditures $4.4 billion, including capital\n    expenditures of $963 million (1990 est.)\nExports:\n    $3.9 billion (f.o.b., 1990 est.)\n  commodities:\n    oil, liquefied petroleum gas, diamonds, coffee, sisal, fish and fish\n    products, timber, cotton\n  partners:\n    US, USSR, Cuba, Portugal, Brazil, France\nImports:\n    $1.5 billion (f.o.b., 1990 est.)\n  commodities:\n    capital equipment (machinery and electrical equipment), food, vehicles and\n    spare parts, textiles and clothing, medicines; substantial military\n    deliveries\n  partners:\n    US, USSR, Cuba, Portugal, Brazil\nExternal debt:\n    $7.0 billion (1990)\nIndustrial production:\n    growth rate NA%; accounts for about 60% of GDP, including petroleum output\nElectricity:\n    510,000 kW capacity; 770 million kWh produced, 90 kWh per capita (1991)\nIndustries:\n    petroleum, diamonds, mining, fish processing, food processing, brewing,\n    tobacco, sugar, textiles, cement, basic metal products\nAgriculture:\n    cash crops - coffee, sisal, corn, cotton, sugar, manioc, tobacco; food crops\n    - cassava, corn, vegetables, plantains, bananas; livestock production\n    accounts for 20%, fishing 4%, forestry 2% of total agricultural output;\n    disruptions caused by civil war and marketing deficiencies require food\n    imports\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $265 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,105 million;\n    Communist countries (1970-89), $1.3 billion; net official disbursements\n    (1985-89), $750 million\nCurrency:\n    kwanza (plural - kwanza); 1 kwanza (Kz) = 100 lwei\nExchange rates:\n    kwanza (Kz) per US$1 - 180.0\n\n:Angola Economy\n\nFiscal year:\n    calendar year\n\n:Angola Communications\n\nRailroads:\n    3,189 km total; 2,879 km 1.067-meter gauge, 310 km 0.600-meter gauge;\n    limited trackage in use because of landmines still in place from the civil\n    war; majority of the Benguela Railroad also closed because of civil war\nHighways:\n    73,828 km total; 8,577 km bituminous-surface treatment, 29,350 km crushed\n    stone, gravel, or improved earth, remainder unimproved earth\nInland waterways:\n    1,295 km navigable\nPipelines:\n    crude oil 179 km\nPorts:\n    Luanda, Lobito, Namibe, Cabinda\nMerchant marine:\n    12 ships (1,000 GRT or over) totaling 66,348 GRT/102,825 DWT; includes 11\n    cargo, 1 petroleum tanker\nCivil air:\n    28 major transport aircraft\nAirports:\n    309 total, 177 usable; 30 with permanent-surface runways; 2 with runways\n    over 3,659 m; 15 with runways 2,440-3,659 m; 54 with runways 1,220-2,439 m\nTelecommunications:\n    limited system of wire, radio relay, and troposcatter routes; high frequency\n    radio used extensively for military links; 40,300 telephones; broadcast\n    stations - 17 AM, 13 FM, 6 TV; 2 Atlantic Ocean INTELSAT earth stations\n\n:Angola Defense Forces\n\nBranches:\n    Army, Navy, Air Force/Air Defense, People's Defense Organization and\n    Territorial Troops, Frontier Guard\nManpower availability:\n    males 15-49, 2,129,877; 1,072,323 fit for military service; 89,585 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Anguilla Geography\n\nTotal area:\n    91 km2\nLand area:\n    91 km2\nComparative area:\n    about half the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    61 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by northeast trade winds\nTerrain:\n    flat and low-lying island of coral and limestone\nNatural resources:\n    negligible; salt, fish, lobster\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; mostly rock with sparse scrub oak, few trees, some\n    commercial salt ponds\nEnvironment:\n    frequent hurricanes, other tropical storms (July to October)\nNote:\n    located 270 km east of Puerto Rico\n\n:Anguilla People\n\nPopulation:\n    6,963 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    24 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    --10 migrants/1,000 population (1992)\nInfant mortality rate:\n    18 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 77 years female (1992)\nTotal fertility rate:\n    3.1 children born/woman (1992)\nNationality:\n    noun - Anguillan(s); adjective - Anguillan\nEthnic divisions:\n    mainly of black African descent\nReligions:\n    Anglican 40%, Methodist 33%, Seventh-Day Adventist 7%, Baptist 5%, Roman\n    Catholic 3%, other 12%\nLanguages:\n    English (official)\nLiteracy:\n    95% (male 95%, female 95%) age 12 and over can read and write (1984)\nLabor force:\n    2,780 (1984)\nOrganized labor:\n    NA\n\n:Anguilla Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    The Valley\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    1 April 1982\nLegal system:\n    based on English common law\nNational holiday:\n    Anguilla Day, 30 May\nExecutive branch:\n    British monarch, governor, chief minister, Executive Council (cabinet)\nLegislative branch:\n    unicameral House of Assembly\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor Brian G.\n    J. CANTY (since NA 1989)\n  Head of Government:\n    Chief Minister Emile GUMBS (since March 1984, served previously from\n    February 1977 to May 1980)\nPolitical parties and leaders:\n    Anguilla National Alliance (ANA), Emile GUMBS; Anguilla United Party (AUP),\n    Hubert HUGHES; Anguilla Democratic Party (ADP), Victor BANKS\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 27 February 1989 (next to be held February 1994); results -\n    percent of vote by party NA; seats - (11 total, 7 elected) ANA 3, AUP 2, ADP\n    1, independent 1\nMember of:\n    CARICOM (observer), CDB\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    two horizontal bands of white (top, almost triple width) and light blue with\n    three orange dolphins in an interlocking circular design centered in the\n    white band; a new flag may have been in use since 30 May 1990\n\n:Anguilla Economy\n\nOverview:\n    Anguilla has few natural resources, and the economy depends heavily on\n    lobster fishing, offshore banking, tourism, and remittances from emigrants.\n    In recent years the economy has benefited from a boom in tourism.\n    Development plans center around the improvement of the infrastructure,\n    particularly transport and tourist facilities, and also light industry.\nGDP:\n    exchange rate conversion - $23 million, per capita $3,300; real growth rate\n    8.2% (1988 est.)\nInflation rate (consumer prices):\n    4.5% (1988 est.)\nUnemployment rate:\n    5.0% (1988 est.)\nBudget:\n    revenues $13.8 million; expenditures $15.2 million, including capital\n    expenditures of $2.4 million (1992 est.)\nExports:\n    $NA\n  commodities:\n    lobster and salt\n  partners:\n    NA\nImports:\n    $NA\n  commodities:\n    NA\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    2,000 kW capacity; 6 million kWh produced, 867 kWh per capita (1991)\nIndustries:\n    tourism, boat building, salt, fishing (including lobster)\nAgriculture:\n    pigeon peas, corn, sweet potatoes, sheep, goats, pigs, cattle, poultry\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89), $38\n    million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    NA\n\n:Anguilla Communications\n\nHighways:\n    60 km surfaced\nPorts:\n    Road Bay, Blowing Point\nCivil air:\n    no major transport aircraft\nAirports:\n    3 total, 3 usable; 1 with permanent-surface runways of 1,100 m (Wallblake\n    Airport)\nTelecommunications:\n    modern internal telephone system; 890 telephones; broadcast stations - 3 AM,\n    1 FM, no TV; radio relay link to island of Saint Martin\n\n:Anguilla Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Antarctica Geography\n\nTotal area:\n    14,000,000 km2 (est.)\nLand area:\n    about 14,000,000 km2\nComparative area:\n    slightly less than 1.5 times the size of the US; second-smallest continent\n    (after Australia)\nLand boundaries:\n    none, but see entry on Disputes\nCoastline:\n    17,968 km\nMaritime claims:\n    none, but see entry on Disputes\nDisputes:\n    Antarctic Treaty defers claims (see Antarctic Treaty Summary below);\n    sections (some overlapping) claimed by Argentina, Australia, Chile, France\n    (Adelie Land), New Zealand (Ross Dependency), Norway (Queen Maud Land), and\n    UK; the US and Russia do not recognize the territorial claims of other\n    nations and have made no claims themselves (but reserve the right to do so);\n    no formal claims have been made in the sector between 90. west and 150.\n    west, where, because of floating ice, Antarctica is unapproachable from the\n    sea\nClimate:\n    severe low temperatures vary with latitude, elevation, and distance from the\n    ocean; East Antarctica is colder than West Antarctica because of its higher\n    elevation; Antarctic Peninsula has the most moderate climate; higher\n    temperatures occur in January along the coast and average slightly below\n    freezing\nTerrain:\n    about 98% thick continental ice sheet and 2% barren rock, with average\n    elevations between 2,000 and 4,000 meters; mountain ranges up to 4,897\n    meters high; ice-free coastal areas include parts of southern Victoria Land,\n    Wilkes Land, the Antarctic Peninsula area, and Ross Island on McMurdo Sound;\n    glaciers form ice shelves along about half of the coastline, and floating\n    ice shelves constitute 11% of the area of the continent\nNatural resources:\n    none presently exploited; iron, chromium, copper, gold, nickel, platinum,\n    and other minerals, and coal and hydrocarbons have been found in small,\n    uncommercial quantities\nLand use:\n    no arable land and no plant growth; ice 98%, barren rock 2%\nEnvironment:\n    mostly uninhabitable; katabatic (gravity-driven) winds blow coastward from\n    the high interior; frequent blizzards form near the foot of the plateau; a\n    circumpolar ocean current flows clockwise along the coast as do cyclonic\n    storms that form over the ocean; during summer more solar radiation reaches\n    the surface at the South Pole than is received at the Equator in an\n    equivalent period; in October 1991 it was reported that the ozone shield,\n    which protects the Earth's surface from harmful ultraviolet radiation, had\n    dwindled to its lowest level ever over Antarctica; active volcanism on\n    Deception Island and isolated areas of West Antarctica; other seismic\n    activity rare and weak\nNote:\n    the coldest, windiest, highest, and driest continent\n\n:Antarctica People\n\nPopulation:\n    no indigenous inhabitants; staffing of research stations varies seasonally\nPopulation:\n  Summer (January) population:\n    4,115; Argentina 207, Australia 268, Belgium 13, Brazil 80, Chile 256, China\n    NA, Ecuador NA, Finland 11, France 78, Germany 32, Greenpeace 12, India 60,\n    Italy 210, Japan 59, South Korea 14, Netherlands 10, New Zealand 264, Norway\n    23, Peru 39, Poland NA, South Africa 79, Spain 43, Sweden 10, UK 116,\n    Uruguay NA, US 1,666, Russia 565 (1989-90)\n  Summer only stations:\n    over 40; Argentina 7, Australia 3, Chile 5, Germany 3, India 1, Italy 1,\n    Japan 4, New Zealand 2, Norway 1, Peru 1, South Africa 1, Spain 1, Sweden 2,\n    UK 1, US numerous, Russia 5 (1989-90); note - the disintegration of the\n    former Soviet Union has placed the status and future of its Antarctic\n    facilities in doubt. Stations may be subject to closings at any time because\n    of ongoing economic difficulties.\n  Winter (July) population:\n    1,066 total; Argentina 150, Australia 71, Brazil 12, Chile 73, China NA,\n    France 33, Germany 19, Greenpeace 5, India 1, Japan 38, South Korea 14, NZ\n    11, Poland NA, South Africa 12, UK 69, Uruguay NA, US 225, Russia 313\n    (1989-90)\n  Year-round stations:\n    43 total; Argentina 6, Australia 3, Brazil 1, Chile 3, China 2, Finland 1,\n    France 1, Germany 1, India 1, Japan 2, South Korea 1, NZ 1, Poland 1, South\n    Africa 3, UK 5, Uruguay 1, US 3, Russia 6 (1990-91)\n\n:Antarctica Government\n\nLong-form name:\n    none\nType:\n  Antarctic Treaty Summary: Article 1:\n    area to be used for peaceful purposes only; military activity, such as\n    weapons testing, is prohibited, but military personnel and equipment may be\n    used for scientific research or any other peaceful purposes\n  Article 2:\n    freedom of scientific investigation and cooperation shall continue\n  Article 3:\n    free exchange of information and personnel in cooperation with the UN and\n    other international agencies\n  Article 4:\n    does not recognize, dispute, or establish territorial claims and no new\n    claims shall be asserted while the treaty is in force\n  Article 5:\n    prohibits nuclear explosions or disposal of radioactive wastes\n  Article 6:\n    includes under the treaty all land and ice shelves south of 60. 00' south\n  Article 7:\n    treaty-state observers have free access, including aerial observation, to\n    any area and may inspect all stations, installations, and equipment; advance\n    notice of all activities and of the introduction of military personnel must\n    be given\n  Article 8:\n    allows for jurisdiction over observers and scientists by their own states\n  Article 9:\n    frequent consultative meetings take place among member nations\n  Article 10:\n    treaty states will discourage activities by any country in Antarctica that\n    are contrary to the treaty\n  Article 11:\n    disputes to be settled peacefully by the parties concerned or, ultimately,\n    by the ICJ\n  Article 12, 13, 14:\n    deal with upholding, interpreting, and amending the treaty among involved\n    nations\n  Other agreements:\n    more than 170 recommendations adopted at treaty consultative meetings and\n    ratified by governments include - Agreed Measures for the Conservation of\n    Antarctic Fauna and Flora (1964); Convention for the Conservation of\n    Antarctic Seals (1972); Convention on the Conservation of Antarctic Marine\n    Living Resources (1980); a mineral resources agreement was signed in 1988\n    but was subsequently rejected; in 1991 the Protocol on Environmental\n    Protection to the Antarctic Treaty was signed and awaits ratification; this\n    agreement provides for the protection of the Antarctic environment through\n    five specific annexes on marine pollution, fauna, and flora, environmental\n    impact assessments, waste management, and protected areas; it also prohibits\n    all activities relating to mineral resources except scientific research\n\n:Antarctica Economy\n\nOverview:\n    No economic activity at present except for fishing off the coast and\n    small-scale tourism, both based abroad.\n\n:Antarctica Communications\n\nPorts:\n    none; offshore anchorage only at most coastal stations\nAirports:\n    41 airport facilities at different locations operated by 14 national\n    governments party to the Treaty; one additional air facility operated by\n    commercial (nongovernmental) tourist organization; helicopter pads at 28 of\n    these locations; runways at 9 locations are gravel, sea ice, glacier ice, or\n    compacted snow surface suitable for wheeled fixed-wing aircraft; no paved\n    runways; 16 locations have snow-surface skiways limited to use by\n    ski-equipped planes - 9 runways/skiways 1,000 to 3,000 m, 4 runways/skiways\n    less than 1,000 m, 5 runways/skiways greater than 3,000 m, and 7 of\n    unspecified or variable length; airports generally subject to severe\n    restrictions and limitations resulting from extreme seasonal and geographic\n    conditions\n\n:Antarctica Defense Forces\n\nNote:\n    none; Article 7 of the Antarctic Treaty states that advance notice of all\n    military activities and the introduction of military personnel must be given\n\n:Antigua and Barbuda Geography\n\nTotal area:\n    440 km2\nLand area:\n    440 km2; includes Redonda\nComparative area:\n    slightly less than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    153 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine; little seasonal temperature variation\nTerrain:\n    mostly low-lying limestone and coral islands with some higher volcanic areas\nNatural resources:\n    negligible; pleasant climate fosters tourism\nLand use:\n    arable land 18%; permanent crops 0%; meadows and pastures 7%; forest and\n    woodland 16%; other 59%\nEnvironment:\n    subject to hurricanes and tropical storms (July to October); insufficient\n    freshwater resources; deeply indented coastline provides many natural\n    harbors\nNote:\n    420 km east-southeast of Puerto Rico\n\n:Antigua and Barbuda People\n\nPopulation:\n    64,110 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    --8 migrants/1,000 population (1992)\nInfant mortality rate:\n    20 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 75 years female (1992)\nTotal fertility rate:\n    1.7 children born/woman (1992)\nNationality:\n    noun - Antiguan(s), Barbudan(s); adjective - Antiguan, Barbudan\nEthnic divisions:\n    almost entirely of black African origin; some of British, Portuguese,\n    Lebanese, and Syrian origin\nReligions:\n    Anglican (predominant), other Protestant sects, some Roman Catholic\nLanguages:\n    English (official), local dialects\nLiteracy:\n    89% (male 90%, female 88%) age 15 and over having completed 5 or more years\n    of schooling (1960)\nLabor force:\n    30,000; commerce and services 82%, agriculture 11%, industry 7% (1983)\nOrganized labor:\n    Antigua and Barbuda Public Service Association (ABPSA), membership 500;\n    Antigua Trades and Labor Union (ATLU), 10,000 members; Antigua Workers Union\n    (AWU), 10,000 members (1986 est.)\n\n:Antigua and Barbuda Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Saint John's\nAdministrative divisions:\n    6 parishes and 2 dependencies*; Barbuda*, Redonda*, Saint George, Saint\n    John, Saint Mary, Saint Paul, Saint Peter, Saint Philip\nIndependence:\n    1 November 1981 (from UK)\nConstitution:\n    1 November 1981\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 1 November (1981)\nExecutive branch:\n    British monarch, governor general, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Representatives\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Sir Wilfred Ebenezer JACOBS (since 1 November 1981, previously Governor\n    since 1976)\n  Head of Government:\n    Prime Minister Vere Cornwall BIRD, Sr. (since NA 1976); Deputy Prime\n    Minister (vacant)\nPolitical parties and leaders:\n    Antigua Labor Party (ALP), Vere C. BIRD, Sr., Lester BIRD; United\n    Progressive Party (UPP), Baldwin SPENCER\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held 9 March 1989 (next to be held NA 1994); results - percent of vote\n    by party NA; seats - (17 total) ALP 15, UPP 1, independent 1\nOther political or pressure groups:\n    United Progressive Party (UPP), a coalition of three opposition political\n    parties - the United National Democratic Party (UNDP), the Antigua Caribbean\n    Liberation Movement (ACLM), and the Progressive Labor Movement (PLM), the\n    UPP is led by Baldwin SPENCER; Antigua Trades and Labor Union (ATLU), headed\n    by Noel THOMAS\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, GATT, IBRD, ICAO, ICFTU, IFAD, IFC,\n    ILO, IMF, IMO, INTERPOL, IOC, ITU, NAM (observer), OAS, OECS, OPANAL, UN,\n    UNCTAD, UNESCO, WCL, WHO, WMO\nDiplomatic representation:\n    Ambassador Patrick Albert LEWIS; Chancery at Suite 2H, 3400 International\n    Drive NW, Washington, DC 20008; telephone (202) 362-5211 or 5166, 5122,\n    5225; there is an Antiguan Consulate in Miami\n\n:Antigua and Barbuda Government\n\n  US:\n    the US Ambassador to Barbados is accredited to Antigua and Barbuda, and, in\n    his absence, the Embassy is headed by Charge d'Affaires Bryant SALTER;\n    Embassy at Queen Elizabeth Highway, Saint John's (mailing address is FPO AA\n    34054); telephone (809) 462-3505 or 3506; FAX (809) 462-3516\nFlag:\n    red with an inverted isosceles triangle based on the top edge of the flag;\n    the triangle contains three horizontal bands of black (top), light blue, and\n    white with a yellow rising sun in the black band\n\n:Antigua and Barbuda Economy\n\nOverview:\n    The economy is primarily service oriented, with tourism the most important\n    determinant of economic performance. During the period 1987-90, real GDP\n    expanded at an annual average rate of about 6%. Tourism makes a direct\n    contribution to GDP of about 13% and also affects growth in other sectors -\n    particularly in construction, communications, and public utilities. Although\n    Antigua and Barbuda is one of the few areas in the Caribbean experiencing a\n    labor shortage in some sectors of the economy, it was hurt in 1991 by a\n    downturn in tourism caused by the Persian Gulf war and the US recession.\nGDP:\n    exchange rate conversion - $418 million, per capita $6,500 (1989); real\n    growth rate 4.2% (1990 est.)\nInflation rate (consumer prices):\n    7% (1990 est.)\nUnemployment rate:\n    5.0% (1988 est.)\nBudget:\n    revenues $92.8 million; expenditures $101 million, including capital\n    expenditures of $NA (1990 est.)\nExports:\n    $33.2 million (f.o.b., 1990)\n  commodities:\n    petroleum products 48%, manufactures 23%, food and live animals 4%,\n    machinery and transport equipment 17%\n  partners:\n    OECS 26%, Barbados 15%, Guyana 4%, Trinidad and Tobago 2%, US 0.3%\nImports:\n    $325.9 million (c.i.f., 1990)\n  commodities:\n    food and live animals, machinery and transport equipment, manufactures,\n    chemicals, oil\n  partners:\n    US 27%, UK 16%, Canada 4%, OECS 3%, other 50%\nExternal debt:\n    $250 million (1990 est.)\nIndustrial production:\n    growth rate 3% (1989 est.); accounts for 3% of GDP\nElectricity:\n    52,100 kW capacity; 95 million kWh produced, 1,482 kWh per capita (1991)\nIndustries:\n    tourism, construction, light manufacturing (clothing, alcohol, household\n    appliances)\nAgriculture:\n    accounts for 4% of GDP; expanding output of cotton, fruits, vegetables, and\n    livestock; other crops - bananas, coconuts, cucumbers, mangoes, sugarcane;\n    not self-sufficient in food\nEconomic aid:\n    US commitments, $10 million (1985-88); Western (non-US) countries, ODA and\n    OOF bilateral commitments (1970-89), $50 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    1 April - 31 March\n\n:Antigua and Barbuda Communications\n\nRailroads:\n    64 km 0.760-meter narrow gauge and 13 km 0.610-meter gauge used almost\n    exclusively for handling sugarcane\nHighways:\n    240 km\nPorts:\n    Saint John's\nMerchant marine:\n    105 ships (1,000 GRT or over) totaling 364,891 GRT/552,475 DWT; includes 71\n    cargo, 3 refrigerated cargo, 12 container, 3 roll-on/roll-off cargo, 1\n    multifunction large load carrier, 1 oil tanker, 12 chemical tanker, 2 bulk;\n    note - a flag of convenience registry\nCivil air:\n    11 major transport aircraft\nAirports:\n    3 total, 3 usable; 2 with permanent-surface runways; 1 with runways\n    2,440-3,659 m; 2 with runways less than 1,220 m\nTelecommunications:\n    good automatic telephone system; 6,700 telephones; tropospheric scatter\n    links with Saba and Guadeloupe; broadcast stations - 4 AM, 2 FM, 2 TV, 2\n    shortwave; 1 coaxial submarine cable; 1 Atlantic Ocean INTELSAT earth\n    station\n\n:Antigua and Barbuda Defense Forces\n\nBranches:\n    Royal Antigua and Barbuda Defense Force, Royal Antigua and Barbuda Police\n    Force (including the Coast Guard)\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $1.4 million, 1% of GDP (FY91)\n\n:Arctic Ocean Geography\n\nTotal area:\n    14,056,000 km2\nLand area:\n    14,056,000 km2; includes Baffin Bay, Barents Sea, Beaufort Sea, Chukchi Sea,\n    East Siberian Sea, Greenland Sea, Hudson Bay, Hudson Strait, Kara Sea,\n    Laptev Sea, and other tributary water bodies\nComparative area:\n    slightly more than 1.5 times the size of the US; smallest of the world's\n    four oceans (after Pacific Ocean, Atlantic Ocean, and Indian Ocean)\nCoastline:\n    45,389 km\nDisputes:\n    some maritime disputes (see littoral states)\nClimate:\n    persistent cold and relatively narrow annual temperature ranges; winters\n    characterized by continuous darkness, cold and stable weather conditions,\n    and clear skies; summers characterized by continuous daylight, damp and\n    foggy weather, and weak cyclones with rain or snow\nTerrain:\n    central surface covered by a perennial drifting polar icepack that averages\n    about 3 meters in thickness, although pressure ridges may be three times\n    that size; clockwise drift pattern in the Beaufort Gyral Stream, but nearly\n    straight line movement from the New Siberian Islands (Russia) to Denmark\n    Strait (between Greenland and Iceland); the ice pack is surrounded by open\n    seas during the summer, but more than doubles in size during the winter and\n    extends to the encircling land masses; the ocean floor is about 50%\n    continental shelf (highest percentage of any ocean) with the remainder a\n    central basin interrupted by three submarine ridges (Alpha Cordillera,\n    Nansen Cordillera, and Lomonsov Ridge); maximum depth is 4,665 meters in the\n    Fram Basin\nNatural resources:\n    sand and gravel aggregates, placer deposits, polymetallic nodules, oil and\n    gas fields, fish, marine mammals (seals, whales)\nEnvironment:\n    endangered marine species include walruses and whales; ice islands\n    occasionally break away from northern Ellesmere Island; icebergs calved from\n    glaciers in western Greenland and extreme northeastern Canada; maximum snow\n    cover in March or April about 20 to 50 centimeters over the frozen ocean and\n    lasts about 10 months; permafrost in islands; virtually icelocked from\n    October to June; fragile ecosystem slow to change and slow to recover from\n    disruptions or damage\nNote:\n    major chokepoint is the southern Chukchi Sea (northern access to the Pacific\n    Ocean via the Bering Strait); ships subject to superstructure icing from\n    October to May; strategic location between North America and Russia;\n    shortest marine link between the extremes of eastern and western Russia,\n    floating research stations operated by the US and Russia\n\n:Arctic Ocean Economy\n\nOverview:\n    Economic activity is limited to the exploitation of natural resources,\n    including crude oil, natural gas, fish, and seals.\n\n:Arctic Ocean Communications\n\nPorts:\n    Churchill (Canada), Murmansk (Russia), Prudhoe Bay (US)\nTelecommunications:\n    no submarine cables\nNote:\n    sparse network of air, ocean, river, and land routes; the Northwest Passage\n    (North America) and Northern Sea Route (Asia) are important seasonal\n    waterways\n\n:Argentina Geography\n\nTotal area:\n    2,766,890 km2\nLand area:\n    2,736,690 km2\nComparative area:\n    slightly more than four times the size of Texas\nLand boundaries:\n    9,665 km total; Bolivia 832 km, Brazil 1,224 km, Chile 5,150 km, Paraguay\n    1,880 km, Uruguay 579 km\nCoastline:\n    4,989 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    nm limits unknown\n  Territorial sea:\n    12 nm (overflight and navigation permitted beyond 12 nm)\nDisputes:\n    short section of the boundary with Uruguay is in dispute; short section of\n    the boundary with Chile is indefinite; claims British-administered Falkland\n    Islands (Islas Malvinas); claims British- administered South Georgia and the\n    South Sandwich Islands; territorial claim in Antarctica\nClimate:\n    mostly temperate; arid in southeast; subantarctic in southwest\nTerrain:\n    rich plains of the Pampas in northern half, flat to rolling plateau of\n    Patagonia in south, rugged Andes along western border\nNatural resources:\n    fertile plains of the pampas, lead, zinc, tin, copper, iron ore, manganese,\n    crude oil, uranium\nLand use:\n    arable land 9%; permanent crops 4%; meadows and pastures 52%; forest and\n    woodland 22%; other 13%; includes irrigated 1%\nEnvironment:\n    Tucuman and Mendoza areas in Andes subject to earthquakes; pamperos are\n    violent windstorms that can strike Pampas and northeast; irrigated soil\n    degradation; desertification; air and water pollution in Buenos Aires\nNote:\n    second-largest country in South America (after Brazil); strategic location\n    relative to sea lanes between South Atlantic and South Pacific Oceans\n    (Strait of Magellan, Beagle Channel, Drake Passage)\n\n:Argentina People\n\nPopulation:\n    32,901,234 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    20 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    34 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 74 years female (1992)\nTotal fertility rate:\n    2.8 children born/woman (1992)\nNationality:\n    noun - Argentine(s); adjective - Argentine\nEthnic divisions:\n    white 85%; mestizo, Indian, or other nonwhite groups 15%\nReligions:\n    nominally Roman Catholic 90% (less than 20% practicing), Protestant 2%,\n    Jewish 2%, other 6%\nLanguages:\n    Spanish (official), English, Italian, German, French\nLiteracy:\n    95% (male 96%, female 95%) age 15 and over can read and write (1990 est.)\nLabor force:\n    10,900,000; agriculture 12%, industry 31%, services 57% (1985 est.)\nOrganized labor:\n    3,000,000; 28% of labor force\n\n:Argentina Government\n\nLong-form name:\n    Argentine Republic\nType:\n    republic\nCapital:\n    Buenos Aires\nAdministrative divisions:\n    23 provinces (provincias, singular - provincia), and 1 district**\n    (distrito); Buenos Aires, Catamarca, Chaco, Chubut, Cordoba, Corrientes,\n    Distrito Federal**, Entre Rios, Formosa, Jujuy, La Pampa, La Rioja, Mendoza,\n    Misiones, Neuquen, Rio Negro, Salta, San Juan, San Luis, Santa Cruz, Santa\n    Fe, Santiago del Estero, Tierra del Fuego, Tucuman; note - the national\n    territory is in the process of becoming a province; the US does not\n    recognize claims to Antarctica\nIndependence:\n    9 July 1816 (from Spain)\nConstitution:\n    1 May 1853\nLegal system:\n    mixture of US and West European legal systems; has not accepted compulsory\n    ICJ jurisdiction\nNational holiday:\n    Revolution Day, 25 May (1810)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congreso Nacional) consists of an upper chamber\n    or Senate (Senado) and a lower chamber or Chamber of Deputies (Camara de\n    Diputados)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Carlos Saul MENEM (since 8 July 1989); Vice President (position\n    vacant)\nPolitical parties and leaders:\n    Justicialist Party (JP), Carlos Saul MENEM, Peronist umbrella political\n    organization; Radical Civic Union (UCR), Mario LOSADA, moderately left of\n    center; Union of the Democratic Center (UCD), Jorge AGUADO, conservative\n    party; Intransigent Party (PI), Dr. Oscar ALENDE, leftist party; several\n    provincial parties\nSuffrage:\n    universal at age 18\nElections:\n  Chamber of Deputies:\n    last held in three phases during late 1991 for half of 254 seats, total\n    current breakdown of seats - JP 122, UCR 85, UCD 10, other 37\n  President:\n    last held 14 May 1989 (next to be held NA May 1995); results - Carlos Saul\n    MENEM was elected\n  Senate:\n    last held May 1989, but provincial elections in late 1991 set the stage for\n    indirect elections by provincial senators for one-third of 46 seats in the\n    national senate in May 1992; total current breakdown of seats - JP 27, UCR\n    14, others 5\nCommunists:\n    some 70,000 members in various party organizations, including a small\n    nucleus of activists\n\n:Argentina Government\n\nOther political or pressure groups:\n    Peronist-dominated labor movement, General Confederation of Labor\n    (Peronist-leaning umbrella labor organization), Argentine Industrial Union\n    (manufacturers' association), Argentine Rural Society (large landowners'\n    association), business organizations, students, the Roman Catholic Church,\n    the Armed Forces\nMember of:\n    AfDB, AG (observer), CCC, ECLAC, FAO, G-6, G-11, G-15, G-19, G-24, G-77,\n    GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO,\n    INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LAES, LAIA, LORCS,\n    MERCOSUR, OAS, PCA, RG, UN, UNAVEM, UNCTAD, UNESCO, UNHCR, UNIDO, UNIIMOG,\n    UNTSO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Carlos ORTIZ DE ROZAS; Chancery at 1600 New Hampshire Avenue NW,\n    Washington, DC 20009; telephone (202) 939-6400 through 6403; there are\n    Argentine Consulates General in Houston, Miami, New Orleans, New York, San\n    Francisco, and San Juan (Puerto Rico), and Consulates in Baltimore, Chicago,\n    and Los Angeles\n  US:\n    Ambassador Terence A. TODMAN; Embassy at 4300 Colombia, 1425 Buenos Aires\n    (mailing address is APO AA 34034); telephone [54] (1) 774- 7611 or 8811,\n    9911; Telex 18156 AMEMBAR\nFlag:\n    three equal horizontal bands of light blue (top), white, and light blue;\n    centered in the white band is a radiant yellow sun with a human face known\n    as the Sun of May\n\n:Argentina Economy\n\nOverview:\n    Argentina is rich in natural resources and has a highly literate population,\n    an export-oriented agricultural sector, and a diversified industrial base.\n    Nevertheless, following decades of mismanagement and statist policies, the\n    economy has encountered major problems in recent years, leading to\n    escalating inflation and a recession during 1988-90. Since 1978, Argentina's\n    external debt has nearly doubled to $58 billion, creating severe debt\n    servicing difficulties and hurting the country's creditworthiness with\n    international lenders. Elected in 1989, President Menem has implemented a\n    comprehensive economic restructuring program that shows signs of reversing\n    Argentina's economic decline and putting it on a path of stable, sustainable\n    growth.\nGDP:\n    exchange rate conversion - $101.2 billion, per capita $3,100; real growth\n    rate 5.5% (1991 est.)\nInflation rate (consumer prices):\n    83.8% (1991)\nUnemployment rate:\n    6.4% (October 1991)\nBudget:\n    revenues $13.6 billion; expenditures $16.6 billion, including capital\n    expenditures of $2.5 billion (1991)\nExports:\n    $12 billion (f.o.b., 1991)\n  commodities:\n    meat, wheat, corn, oilseed, hides, wool\n  partners:\n    US 12%, USSR, Italy, Brazil, Japan, Netherlands\nImports:\n    $8 billion (c.i.f., 1991)\n  commodities:\n    machinery and equipment, chemicals, metals, fuels and lubricants,\n    agricultural products\n  partners:\n    US 22%, Brazil, FRG, Bolivia, Japan, Italy, Netherlands\nExternal debt:\n    $61 billion (January 1992)\nIndustrial production:\n    growth rate 20% (1991 est.); accounts for 30% of GDP\nElectricity:\n    17,059,000 kW capacity; 47,357 million kWh produced, 1,450 kWh per capita\n    (1991)\nIndustries:\n    food processing, motor vehicles, consumer durables, textiles, chemicals and\n    petrochemicals, printing, metallurgy, steel\nAgriculture:\n    accounts for 15% of GNP (including fishing); produces abundant food for both\n    domestic consumption and exports; among world's top five exporters of grain\n    and beef; principal crops - wheat, corn, sorghum, soybeans, sugar beets\nIllicit drugs:\n    increasing use as a transshipment country for cocaine headed for the US and\n    Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.0 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.4 billion;\n    Communist countries (1970-89), $718 million\nCurrency:\n    peso (plural - pesos); 1 pesos = 100 centavos\n\n:Argentina Economy\n\nExchange rates:\n    pesos per US$1 - 0.99076 (Feburary 1992), 0.95355 (1991), 0.48759 (1990),\n    0.04233 (1989), 0.00088 (1988), 0.00021 (1987)\nFiscal year:\n    calendar year\n\n:Argentina Communications\n\nRailroads:\n    34,172 km total (includes 209 km electrified); includes a mixture of\n    1.435-meter standard gauge, 1.676-meter broad gauge, 1.000-meter narrow\n    gauge, and 0.750-meter narrow gauge\nHighways:\n    208,350 km total; 47,550 km paved, 39,500 km gravel, 101,000 km improved\n    earth, 20,300 km unimproved earth\nInland waterways:\n    11,000 km navigable\nPipelines:\n    crude oil 4,090 km; petroleum products 2,900 km; natural gas 9,918 km\nPorts:\n    Bahia Blanca, Buenos Aires, Necochea, Rio Gallegos, Rosario, Santa Fe\nMerchant marine:\n    98 ships (1,000 GRT or over) totaling 1,235,385 GRT/1,952,307 DWT; includes\n    35 cargo, 6 refrigerated cargo, 6 container, 1 railcar carrier, 33 oil\n    tanker, 4 chemical tanker, 3 liquefied gas, 10 bulk; in addition, 2 naval\n    tankers and 1 military transport are sometimes used commercially\nCivil air:\n    56 major transport aircraft\nAirports:\n    1,702 total, 1,473 usable; 137 with permanent-surface runways; 1 with\n    runways over 3,659 m; 31 with runways 2,440-3,659 m; 326 with runways\n    1,220-2,439 m\nTelecommunications:\n    extensive modern system; 2,650,000 telephones (12,000 public telephones);\n    microwave widely used; broadcast stations - 171 AM, no FM, 231 TV, 13\n    shortwave; 2 Atlantic Ocean INTELSAT earth stations; domestic satellite\n    network has 40 earth stations\n\n:Argentina Defense Forces\n\nBranches:\n    Argentine Army, Navy of the Argentine Republic, Argentine Air Force,\n    National Gendarmerie, Argentine Naval Prefecture (Coast Guard only),\n    National Aeronautical Police Force\nManpower availability:\n    males 15-49, 8,101,856; 6,568,885 fit for military service; 276,457 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $700 million, 1.5% of GDP (1991)\n\n:Armenia Geography\n\nTotal area:\n    29,800 km2\nLand area:\n    28,400 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    1,254 km total; Azerbaijan (east) 566 km, Azerbaijan (south) 221 km, Georgia\n    164 km, Iran 35 km, Turkey 268 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    violent and longstanding dispute with Azerbaijan over ethnically Armenian\n    exclave of Nagorno-Karabakh; some irredentism by Armenians living in\n    southern Georgia; traditional demands on former Armenian lands in Turkey\n    have greatly subsided\nClimate:\n    continental, hot, and subject to drought\nTerrain:\n    high Armenian Plateau with mountain; little forest land; fast flowing\n    rivers; good soil in Aras River valley\nNatural resources:\n    small deposits of gold, copper, molybdenum, zinc, alumina\nLand use:\n    10% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; NA% irrigated\nEnvironment:\n    pollution of Razdan and Aras Rivers; air pollution in Yerevan\n\n:Armenia People\n\nPopulation:\n    3,415,566 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    22 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    --7 migrants/1,000 population (1992)\nInfant mortality rate:\n    35 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 74 years female (1992)\nTotal fertility rate:\n    2.7 children born/woman (1992)\nNationality:\n    noun - Armenian(s); adjective - Armenian\nEthnic divisions:\n    Armenian 93.3%, Russian 1.5%, Kurd 1.7%, other 3.5%\nReligions:\n    Armenian Orthodox 94%\nLanguages:\n    Armenian 93%, Russian 2%, other 5%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write (NA)\nLabor force:\n    1,630,000; industry and construction 42%, agriculture and forestry 18%,\n    other 40%(1990)\nOrganized labor:\n    NA\n\n:Armenia Government\n\nLong-form name:\n    Republic of Armenia\nType:\n    republic\nCapital:\n    Yerevan\nAdministrative divisions:\n    none - all rayons are under direct republic jurisdiction\nIndependence:\n    Armenian Republic formed 29 November 1920 and became part of the Soviet\n    Union on 30 December 1922; on 23 September 1991, Armenia renamed itself the\n    Republic of Armenia\nConstitution:\n    adopted NA April 1978, effective NA\nLegal system:\n    based on civil law system\nNational holiday:\n    NA\nExecutive branch:\n    President, Council of Ministers, prime minister\nLegislative branch:\n    unicameral body - Supreme Soviet\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Levon Akopovich TER-PETROSYAN (since 16 October 1991), Vice\n    President Gagik ARUTYUNYAN (since 16 October 1991)\n  Head of Government:\n    Prime Minister Gagik ARUTYUNYAN (since November 1991), First Deputy Prime\n    Minister Grant BAGRATYAN (since NA September 1990); Supreme Soviet Chairman\n    - Babken ARARKTSYAN\nPolitical parties and leaders:\n    Armenian National Movement, Husik LAZARYAN, chairman; National\n    Self-Determination Association, Pakvyr HAYRIKIAN, chairman; National\n    Democratic Union, Vazgen MANUKYAN, chairman; Democratic Liberal Party,\n    Ramkavar AZATAKAN, chairman; Dashnatktsutyan Party, Rouben MIRZAKHANIN;\n    Chairman of Parliamentary opposition - Mekhak GABRIYELYAN\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 16 October 1990 (next to be held NA); results - elected by the\n    Supreme Soviet, Levon Akopovich TER-PETROSYAN 86%; radical nationalists\n    about 7%\n  Supreme Soviet:\n    last held 20 May 1990 (next to be held NA); results - percent of vote by\n    party NA; seats - (259 total); number of seats by party NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE, NACC, UN, UNCTAD\nDiplomatic representation:\n    Charge d'Affaires ad interim, Aleksandr ARZOUMANIAN\n  US:\n    Ambassador (vacant); Steven R. MANN, Charge d'Affaires; Embassy at Hotel\n    Hrazdan (telephone 8-011-7-8852-53-53-32); (mailing address is APO AE\n    09862); telephone 8-011-7-885-215-1122 (voice and FAX); 8-011-7-885-215-1144\n    (voice)\n\n:Armenia Government\n\nFlag:\n    NA\n\n:Armenia Economy\n\nOverview:\n    Armenia under the old centrally planned Soviet system had built up textile,\n    machine-building, and other industries and had become a key supplier to\n    sister republics. In turn, Armenia had depended on supplies of raw materials\n    and energy from the other republics. Most of these supplies enter the\n    republic by rail through Azerbaijan (85%) and Georgia (15%). The economy has\n    been severely hurt by ethnic strife with Azerbaijan over control of the\n    Nagorno-Karabakh Autonomous Oblast, a mostly Armenian-populated enclave\n    within the national boundaries of Azerbaijan. In addition to outright\n    warfare, the strife has included interdiction of Armenian imports on the\n    Azerbaijani railroads and expensive airlifts of supplies to beleagured\n    Armenians in Nagorno-Karabakh. An earthquake in December 1988 destroyed\n    about one-tenth of industrial capacity and housing, the repair of which has\n    not been possible because the supply of funds and real resources has been\n    disrupted by the reorganization and subsequent dismantling of the central\n    USSR administrative apparatus. Among facilities made unserviceable by the\n    earthquake are the Yerevan nuclear power plant, which had supplied 40% of\n    Armenia's needs for electric power and a plant that produced one-quarter of\n    the output of elevators in the former USSR. Armenia has some deposits of\n    nonferrous metal ores (bauxite, copper, zinc, and molybdenum) that are\n    largely unexploited. For the mid-term, Armenia's economic prospects seem\n    particularly bleak because of ethnic strife and the unusually high\n    dependence on outside areas, themselves in a chaotic state of\n    transformation.\nGDP:\n    $NA, per capita $NA; real growth rate --10% (1991)\nInflation rate (consumer prices):\n    91%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $176 million (f.o.b., 1990)\n  commodities:\n    machinery and transport equipment, ferrous and nonferrous metals, and\n    chemicals (1991)\n  partners:\n    NA\nImports:\n    $1.5 billion (c.i.f., 1990)\n  commodities:\n    machinery, energy, consumer goods (1991)\n  partners:\n    NA\nExternal debt:\n    $650 million (December 1991 est.)\nIndustrial production:\n    growth rate --9.6% (1991)\nElectricity:\n    NA kW capacity; 10,433 million kWh produced, about 3,000 kWh per capita\n    (1990)\nIndustries:\n    diverse, including (in percent of output of former USSR) metalcutting\n    machine tools (6.7%), forging-pressing machines (4.7%), electric motors\n    (8.7%), tires (2.1%), knitted wear (5.6%), hosiery (2.3%), shoes (2.2%),\n    silk fabric (5.3%), washing machines (2.0%); also chemicals, trucks,\n    watches, instruments, and microelectronics\n\n:Armenia Economy\n\nAgriculture:\n    only 10% of land area is arable; employs 18% of labor force; citrus, cotton,\n    and dairy farming; vineyards near Yerevan are famous for brandy and other\n    liqueurs\nIllicit drugs:\n    illicit producer of cannabis mostly for domestic consumption; used as a\n    transshipment point for illicit drugs to Western Europe\nEconomic aid:\n    NA\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Armenia Communications\n\nRailroads:\n    840 km all 1.000-meter gauge (includes NA km electrified); does not include\n    industrial lines (1990)\nHighways:\n    11,300 km total (1990); 10,500 km hard surfaced, 800 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nPorts:\n    none - landlocked\nMerchant marine:\n  none:\n    landlocked\nCivil air:\n    none\nAirports:\n    NA total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    Armenia has about 260,000 telephones, of which about 110,000 are in Yerevan;\n    average telephone density is 8 per 100 persons; international connections to\n    other former republics of the USSR are by landline or microwave and to other\n    countries by satellite and by leased connection through the Moscow\n    international gateway switch; broadcast stations - 100% of population\n    receives Armenian and Russian TV programs; satellite earth station -\n    INTELSAT\n\n:Armenia Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground and Air Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Aruba Geography\n\nTotal area:\n    193 km2\nLand area:\n    193 km2\nComparative area:\n    slightly larger than Washington, DC\nLand boundaries:\n    none\nCoastline:\n    68.5 km\nMaritime claims:\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine; little seasonal temperature variation\nTerrain:\n    flat with a few hills; scant vegetation\nNatural resources:\n    negligible; white sandy beaches\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    lies outside the Caribbean hurricane belt\nNote:\n    28 km north of Venezuela\n\n:Aruba People\n\nPopulation:\n    64,692 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    --3 migrants/1,000 population (1992)\nInfant mortality rate:\n    9 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 80 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Aruban(s); adjective - Aruban\nEthnic divisions:\n    mixed European/Caribbean Indian 80%\nReligions:\n    Roman Catholic 82%, Protestant 8%, also small Hindu, Muslim, Confucian, and\n    Jewish minority\nLanguages:\n    Dutch (official), Papiamento (a Spanish, Portuguese, Dutch, English\n    dialect), English (widely spoken), Spanish\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA, but most employment is in the tourist industry (1986)\nOrganized labor:\n    Aruban Workers' Federation (FTA)\n\n:Aruba Government\n\nLong-form name:\n    none\nType:\n    part of the Dutch realm - full autonomy in internal affairs obtained in 1986\n    upon separation from the Netherlands Antilles\nCapital:\n    Oranjestad\nAdministrative divisions:\n    none (self-governing part of the Netherlands)\nIndependence:\n    none (part of the Dutch realm); note - in 1990, Aruba requested and received\n    from the Netherlands cancellation of the agreement to automatically give\n    independence to the island in 1996\nConstitution:\n    1 January 1986\nLegal system:\n    based on Dutch civil law system, with some English common law influence\nNational holiday:\n    Flag Day, 18 March\nExecutive branch:\n    Dutch monarch, governor, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral legislature (Staten)\nJudicial branch:\n    Joint High Court of Justice\nLeaders:\n  Chief of State:\n    Queen BEATRIX Wilhelmina Armgard (since 30 April 1980), represented by\n    Governor General Felipe B. TROMP (since 1 January 1986)\n  Head of Government:\n    Prime Minister Nelson ODUBER (since NA February 1989)\nPolitical parties and leaders:\n    Electoral Movement Party (MEP), Nelson ODUBER; Aruban People's Party (AVP),\n    Henny EMAN; National Democratic Action (ADN), Pedro Charro KELLY; New\n    Patriotic Party (PPN), Eddy WERLEMEN; Aruban Patriotic Party (PPA), Benny\n    NISBET; Aruban Democratic Party (PDA), Leo BERLINSKI; Democratic Action '86\n    (AD '86), Arturo ODUBER; Organization for Aruban Liberty (OHA), Glenbert\n    CROES; governing coalition includes the MEP, PPA, and ADN\nSuffrage:\n    universal at age 18\nElections:\n  Legislature:\n    last held 6 January 1989 (next to be held by NA January 1993); results -\n    percent of vote by party NA; seats - (21 total) MEP 10, AVP 8, ADN 1, PPN 1,\n    PPA 1\nMember of:\n    ECLAC (associate), INTERPOL, IOC, UNESCO (associate), WCL, WTO (associate)\nDiplomatic representation:\n    none (self-governing part of the Netherlands)\nFlag:\n    blue with two narrow horizontal yellow stripes across the lower portion and\n    a red, four-pointed star outlined in white in the upper hoist-side corner\n\n:Aruba Economy\n\nOverview:\n    Tourism is the mainstay of the economy, although offshore banking and oil\n    refining and storage are also important. Hotel capacity expanded rapidly\n    between 1985 and 1989 and nearly doubled in 1990 alone. Unemployment has\n    steadily declined from about 20% in 1986 to about 3% in 1991. The reopening\n    of the local oil refinery, once a major source of employment and foreign\n    exchange earnings, promises to give the economy an additional boost.\nGDP:\n    exchange rate conversion - $854 million, per capita $13,600; real growth\n    rate l0% (1990 est.)\nInflation rate (consumer prices):\n    8% (1990 est.)\nUnemployment rate:\n    3% (1991 est.)\nBudget:\n    revenues $145 million; expenditures $185 million, including capital\n    expenditures of $42 million (1988)\nExports:\n    $134.4 million (f.o.b., 1990)\n  commodities:\n    mostly petroleum products\n  partners:\n    US 64%, EC\nImports:\n    $488 million (f.o.b., 1990)\n  commodities:\n    food, consumer goods, manufactures\n  partners:\n    US 8%, EC\nExternal debt:\n    $81 million (1987)\nIndustrial production:\n    growth rate NA\nElectricity:\n    310,000 kW capacity; 945 million kWh produced, 15,000 kWh per capita (1990)\nIndustries:\n    tourism, transshipment facilities, oil refining\nAgriculture:\n    poor quality soils and low rainfall limit agricultural activity to the\n    cultivation of aloes, some livestock, and fishing\nEconomic aid:\n    Western (non-US) countries ODA and OOF bilateral commitments (1980-89), $220\n    million\nCurrency:\n    Aruban florin (plural - florins); 1 Aruban florin (Af.) = 100 cents\nExchange rates:\n    Aruban florins (Af.) per US$1 - 1.7900 (fixed rate since 1986)\nFiscal year:\n    calendar year\n\n:Aruba Communications\n\nHighways:\n    Aruba has a system of all-weather highways\nPorts:\n    Oranjestad, Sint Nicolaas\nCivil air:\n    Air Aruba has a fleet of 3 intermediate-range Boeing aircraft\nAirports:\n    government-owned airport east of Oranjestad accepts transatlantic flights\nTelecommunications:\n    generally adequate; extensive interisland radio relay links; 72,168\n    telephones; broadcast stations - 4 AM, 4 FM, 1 TV; 1 sea cable to Sint\n    Maarten\n\n:Aruba Defense Forces\n\nNote:\n    defense is the responsibility of the Netherlands\n\n:Ashmore and Cartier Islands Geography\n\nTotal area:\n    5 km2\nLand area:\n    5 km2; includes Ashmore Reef (West, Middle, and East Islets) and Cartier\n    Island\nComparative area:\n    about 8.5 times the size of The Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    74.1 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploration\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical\nTerrain:\n    low with sand and coral\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other - grass and sand 100%\nEnvironment:\n    surrounded by shoals and reefs; Ashmore Reef National Nature Reserve\n    established in August 1983\nNote:\n    located in extreme eastern Indian Ocean between Australia and Indonesia, 320\n    km off the northwest coast of Australia\n\n:Ashmore and Cartier Islands People\n\nPopulation:\n    no permanent inhabitants; seasonal caretakers\n\n:Ashmore and Cartier Islands Government\n\nLong-form name:\n    Territory of Ashmore and Cartier Islands\nType:\n    territory of Australia administered by the Australian Minister for Arts,\n    Sports, the Environment, Tourism, and Territories - Roslyn KELLY\nCapital:\n    none; administered from Canberra, Australia\nAdministrative divisions:\n    none (territory of Australia)\nLegal system:\n    relevant laws of the Northern Territory of Australia\nDiplomatic representation:\n    none (territory of Australia)\n\n:Ashmore and Cartier Islands Economy\n\nOverview:\n    no economic activity\n\n:Ashmore and Cartier Islands Communications\n\nPorts:\n    none; offshore anchorage only\n\n:Ashmore and Cartier Islands Defense Forces\n\nNote:\n    defense is the responsibility of Australia; periodic visits by the Royal\n    Australian Navy and Royal Australian Air Force\n\n:Atlantic Ocean Geography\n\nTotal area:\n    82,217,000 km2\nLand area:\n    82,217,000 km2; includes Baltic Sea, Black Sea, Caribbean Sea, Davis Strait,\n    Denmark Strait, Drake Passage, Gulf of Mexico, Mediterranean Sea, North Sea,\n    Norwegian Sea, Weddell Sea, and other tributary water bodies\nComparative area:\n    slightly less than nine times the size of the US; second-largest of the\n    world's four oceans (after the Pacific Ocean, but larger than Indian Ocean\n    or Arctic Ocean)\nCoastline:\n    111,866 km\nDisputes:\n    some maritime disputes (see littoral states)\nClimate:\n    tropical cyclones (hurricanes) develop off the coast of Africa near Cape\n    Verde and move westward into the Caribbean Sea; hurricanes can occur from\n    May to December, but are most frequent from August to November\nTerrain:\n    surface usually covered with sea ice in Labrador Sea, Denmark Strait, and\n    Baltic Sea from October to June; clockwise warm water gyre (broad, circular\n    system of currents) in the north Atlantic, counterclockwise warm water gyre\n    in the south Atlantic; the ocean floor is dominated by the Mid-Atlantic\n    Ridge, a rugged north-south centerline for the entire Atlantic basin;\n    maximum depth is 8,605 meters in the Puerto Rico Trench\nNatural resources:\n    oil and gas fields, fish, marine mammals (seals and whales), sand and gravel\n    aggregates, placer deposits, polymetallic nodules, precious stones\nEnvironment:\n    endangered marine species include the manatee, seals, sea lions, turtles,\n    and whales; municipal sludge pollution off eastern US, southern Brazil, and\n    eastern Argentina; oil pollution in Caribbean Sea, Gulf of Mexico, Lake\n    Maracaibo, Mediterranean Sea, and North Sea; industrial waste and municipal\n    sewage pollution in Baltic Sea, North Sea, and Mediterranean Sea; icebergs\n    common in Davis Strait, Denmark Strait, and the northwestern Atlantic from\n    February to August and have been spotted as far south as Bermuda and the\n    Madeira Islands; icebergs from Antarctica occur in the extreme southern\n    Atlantic\nNote:\n    ships subject to superstructure icing in extreme north Atlantic from October\n    to May and extreme south Atlantic from May to October; persistent fog can be\n    a hazard to shipping from May to September; major choke points include the\n    Dardanelles, Strait of Gibraltar, access to the Panama and Suez Canals;\n    strategic straits include the Dover Strait, Straits of Florida, Mona\n    Passage, The Sound (Oresund), and Windward Passage; north Atlantic shipping\n    lanes subject to icebergs from February to August; the Equator divides the\n    Atlantic Ocean into the North Atlantic Ocean and South Atlantic Ocean\n    Kiel Canal and Saint Lawrence Seaway are two important waterways\n\n:Atlantic Ocean Economy\n\nOverview:\n    Economic activity is limited to exploitation of natural resources,\n    especially fish, dredging aragonite sands (The Bahamas), and crude oil and\n    natural gas production (Caribbean Sea and North Sea).\n\n:Atlantic Ocean Communications\n\nPorts:\n    Alexandria (Egypt), Algiers (Algeria), Antwerp (Belgium), Barcelona (Spain),\n    Buenos Aires (Argentina), Casablanca (Morocco), Colon (Panama), Copenhagen\n    (Denmark), Dakar (Senegal), Gdansk (Poland), Hamburg (Germany), Helsinki\n    (Finland), Las Palmas (Canary Islands, Spain), Le Havre (France), Lisbon\n    (Portugal), London (UK), Marseille (France), Montevideo (Uruguay), Montreal\n    (Canada), Naples (Italy), New Orleans (US), New York (US), Oran (Algeria),\n    Oslo (Norway), Piraeus (Greece), Rio de Janeiro (Brazil), Rotterdam\n    (Netherlands), Saint Petersburg (formerly Leningrad; Russia), Stockholm\n    (Sweden)\nTelecommunications:\n    numerous submarine cables with most between continental Europe and the UK,\n    North America and the UK, and in the Mediterranean; numerous direct links\n    across Atlantic via INTELSAT satellite network\n\n:Australia Geography\n\nTotal area:\n    7,686,850 km2\nLand area:\n    7,617,930 km2; includes Macquarie Island\nComparative area:\n    slightly smaller than the US\nLand boundaries:\n    none\nCoastline:\n    25,760 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    territorial claim in Antarctica (Australian Antarctic Territory)\nClimate:\n    generally arid to semiarid; temperate in south and east; tropical in north\nTerrain:\n    mostly low plateau with deserts; fertile plain in southeast\nNatural resources:\n    bauxite, coal, iron ore, copper, tin, silver, uranium, nickel, tungsten,\n    mineral sands, lead, zinc, diamonds, natural gas, crude oil\nLand use:\n    arable land 6%; permanent crops NEGL%; meadows and pastures 58%; forest and\n    woodland 14%; other 22%; includes irrigated NEGL%\nEnvironment:\n    subject to severe droughts and floods; cyclones along coast; limited\n    freshwater availability; irrigated soil degradation; regular, tropical,\n    invigorating, sea breeze known as the doctor occurs along west coast in\n    summer; desertification\nNote:\n    world's smallest continent but sixth-largest country\n\n:Australia People\n\nPopulation:\n    17,576,354 (July 1992), growth rate 1.4% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    7 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 80 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Australian(s); adjective - Australian\nEthnic divisions:\n    Caucasian 95%, Asian 4%, Aboriginal and other 1%\nReligions:\n    Anglican 26.1%, Roman Catholic 26.0%, other Christian 24.3%\nLanguages:\n    English, native languages\nLiteracy:\n    100% (male 100%, female 100%) age 15 and over can read and write (1980 est.)\nLabor force:\n    8,630,000 (September 1991); finance and services 33.8%, public and community\n    services 22.3%, wholesale and retail trade 20.1%, manufacturing and industry\n    16.2%, agriculture 6.1% (1987)\nOrganized labor:\n    40% of labor force (November 1991)\n\n:Australia Government\n\nLong-form name:\n    Commonwealth of Australia\nType:\n    federal parliamentary state\nCapital:\n    Canberra\nAdministrative divisions:\n    6 states and 2 territories*; Australian Capital Territory*, New South Wales,\n    Northern Territory*, Queensland, South Australia, Tasmania, Victoria,\n    Western Australia\nIndependence:\n    1 January 1901 (federation of UK colonies)\nConstitution:\n    9 July 1900, effective 1 January 1901\nDependent areas:\n    Ashmore and Cartier Islands, Christmas Island, Cocos (Keeling) Islands,\n    Coral Sea Islands, Heard Island and McDonald Islands, Norfolk Island\nLegal system:\n    based on English common law; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Australia Day, 26 January\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    bicameral Federal Parliament consists of an upper house or Senate and a\n    lower house or House of Representatives\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since February 1952), represented by Governor General\n    William George HAYDEN (since 16 February 1989)\n  Head of Government:\n    Prime Minister Paul John KEATING (since 20 December 1991); Deputy Prime\n    Minister Brian HOWE (since 4 June 1991)\nPolitical parties and leaders:\n  government:\n    Australian Labor Party, Paul John KEATING\n  opposition:\n    Liberal Party, John HEWSON; National Party, Timothy FISCHER; Australian\n    Democratic Party, John COULTER\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  House of Representatives:\n    last held 24 March 1990 (next to be held by NA November 1993); results -\n    Labor 39.7%, Liberal-National 43%, Australian Democrats and independents\n    11.1%; seats - (148 total) Labor 78, Liberal-National 69, independent 1\n  Senate:\n    last held 11 July 1987 (next to be held by NA July 1993); results - Labor\n    43%, Liberal-National 42%, Australian Democrats 8%, independents 2%; seats -\n    (76 total) Labor 32, Liberal-National 34, Australian Democrats 7,\n    independents 3\nCommunists:\n    4,000 members (est.)\n\n:Australia Government\n\nOther political or pressure groups:\n    Australian Democratic Labor Party (anti-Communist Labor Party splinter\n    group); Peace and Nuclear Disarmament Action (Nuclear Disarmament Party\n    splinter group)\nMember of:\n    AfDB, AG (observer), ANZUS, APEC, AsDB, Australia Group, BIS, C, CCC, COCOM,\n    CP, EBRD, ESCAP, FAO, GATT, G-8, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA,\n    IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU,\n    LORCS, MTCR, NAM (guest), NEA, NSG, OECD, PCA, SPC, SPF, UN, UNCTAD, UNESCO,\n    UNFICYP, UNHCR, UNIIMOG, UNTAG, UNTSO, UPU, WFTU, WHO, WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Michael J. COOK; Chancery at 1601 Massachusetts Avenue NW,\n    Washington, DC 20036; telephone (202) 797-3000; there are Australian\n    Consulates General in Chicago, Honolulu, Houston, Los Angeles, New York,\n    Pago Pago (American Samoa), and San Francisco\n  US:\n    Ambassador Melvin F. SEMBLER; Moonah Place, Yarralumla, Canberra, Australian\n    Capital Territory 2600 (mailing address is APO AP 96549); telephone [61] (6)\n    270-5000; FAX [61] (6) 270-5970; there are US Consulates General in\n    Melbourne, Perth, and Sydney, and a Consulate in Brisbane\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and a large\n    seven-pointed star in the lower hoist-side quadrant; the remaining half is a\n    representation of the Southern Cross constellation in white with one small\n    five-pointed star and four, larger, seven-pointed stars\n\n:Australia Economy\n\nOverview:\n    Australia has a prosperous Western-style capitalist economy, with a per\n    capita GDP comparable to levels in industrialized West European countries.\n    Rich in natural resources, Australia is a major exporter of agricultural\n    products, minerals, metals, and fossil fuels. Of the top 25 exports, 21 are\n    primary products, so that, as happened during 1983-84, a downturn in world\n    commodity prices can have a big impact on the economy. The government is\n    pushing for increased exports of manufactured goods, but competition in\n    international markets continues to be severe.\nGDP:\n    purchasing power equivalent - $280.8 billion, per capita $16,200; real\n    growth rate --0.6% (1991 est.)\nInflation rate (consumer prices):\n    3.3% (September 1991)\nUnemployment rate:\n    10.5% (November 1991)\nBudget:\n    revenues $76.9 billion; expenditures $75.4 billion, including capital\n    expenditures of NA (FY91)\nExports:\n    $41.7 billion (f.o.b., FY91)\n  commodities:\n    metals, minerals, coal, wool, cereals, meat, manufacturers\n  partners:\n    Japan 26%, US 11%, NZ 6%, South Korea 4%, Singapore 4%, UK, Taiwan, Hong\n    Kong\nImports:\n    $37.8 billion (f.o.b., FY91)\n  commodities:\n    manufactured raw materials, capital equipment, consumer goods\n  partners:\n    US 24%, Japan 19%, UK 6%, FRG 7%, NZ 4% (1990)\nExternal debt:\n    $130.4 billion (June 1991)\nIndustrial production:\n    growth rate --0.9% (1991); accounts for 32% of GDP\nElectricity:\n    40,000,000 kW capacity; 155,000 million kWh produced, 8,960 kWh per capita\n    (1991)\nIndustries:\n    mining, industrial and transportation equipment, food processing, chemicals,\n    steel, motor vehicles\nAgriculture:\n    accounts for 5% of GNP and 37% of export revenues; world's largest exporter\n    of beef and wool, second-largest for mutton, and among top wheat exporters;\n    major crops - wheat, barley, sugarcane, fruit; livestock - cattle, sheep,\n    poultry\nIllicit drugs:\n    Tasmania is one of the world's major suppliers of licit opiate products;\n    government maintains strict controls over areas of opium poppy cultivation\n    and output of poppy straw concentrate\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $10.4 billion\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3360 (January 1992), 1.2836 (1991),\n    1.2618 (1989), 1.2752 (1988), 1.4267 (1987)\n\n:Australia Economy\n\nFiscal year:\n    1 July - 30 June\n\n:Australia Communications\n\nRailroads:\n    40,478 km total; 7,970 km 1.600-meter gauge, 16,201 km 1.435-meter standard\n    gauge, 16,307 km 1.067-meter gauge; 183 km dual gauge; 1,130 km electrified;\n    government owned (except for a few hundred kilometers of privately owned\n    track) (1985)\nHighways:\n    837,872 km total; 243,750 km paved, 228,396 km gravel, crushed stone, or\n    stabilized soil surface, 365,726 km unimproved earth\nInland waterways:\n    8,368 km; mainly by small, shallow-draft craft\nPipelines:\n    crude oil 2,500 km; petroleum products 500 km; natural gas 5,600 km\nPorts:\n    Adelaide, Brisbane, Cairns, Darwin, Devonport, Fremantle, Geelong, Hobart,\n    Launceston, Mackay, Melbourne, Sydney, Townsville\nMerchant marine:\n    85 ships (1,000 GRT or over) totaling 2,324,803 GRT/3,504,385 DWT; includes\n    2 short-sea passenger, 8 cargo, 8 container, 11 roll-on/roll-off, 1 vehicle\n    carrier, 17 petroleum tanker, 2 chemical tanker, 4 liquefied gas, 1\n    combination ore/oil, 30 bulk, 1 combination bulk\nCivil air:\n    about 150 major transport aircraft\nAirports:\n    481 total, 440 usable; 237 with permanent-surface runways, 1 with runway\n    over 3,659 m; 20 with runways 2,440-3,659 m; 268 with runways 1,220-2,439 m\nTelecommunications:\n    good international and domestic service; 8.7 million telephones; broadcast\n    stations - 258 AM, 67 FM, 134 TV; submarine cables to New Zealand, Papua New\n    Guinea, and Indonesia; domestic satellite service; satellite stations - 4\n    Indian Ocean INTELSAT, 6 Pacific Ocean INTELSAT earth stations\n\n:Australia Defense Forces\n\nBranches:\n    Australian Army, Royal Australian Navy, Royal Australian Air Force\nManpower availability:\n    males 15-49, 4,769,005; 4,153,060 fit for military service; 138,117 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $7.5 billion, 2.4% of GDP (FY92 budget)\n\n:Austria Geography\n\nTotal area:\n    83,850 km2\nLand area:\n    82,730 km2\nComparative area:\n    slightly smaller than Maine\nLand boundaries:\n    2,591 km total; Czechoslovakia 548 km, Germany 784 km, Hungary 366 km, Italy\n    430 km, Liechtenstein 37 km, Slovenia 262 km, Switzerland 164 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; continental, cloudy; cold winters with frequent rain in lowlands\n    and snow in mountains; cool summers with occasional showers\nTerrain:\n    mostly mountains with Alps in west and south; mostly flat, with gentle\n    slopes along eastern and northern margins\nNatural resources:\n    iron ore, crude oil, timber, magnesite, aluminum, lead, coal, lignite,\n    copper, hydropower\nLand use:\n    arable land 17%; permanent crops 1%; meadows and pastures 24%; forest and\n    woodland 39%; other 19%; includes irrigated NEGL%\nEnvironment:\n    because of steep slopes, poor soils, and cold temperatures, population is\n    concentrated on eastern lowlands\nNote:\n    landlocked; strategic location at the crossroads of central Europe with many\n    easily traversable Alpine passes and valleys; major river is the Danube\n\n:Austria People\n\nPopulation:\n    7,867,541 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    5 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 80 years female (1992)\nTotal fertility rate:\n    1.5 children born/woman (1992)\nNationality:\n    noun - Austrian(s); adjective - Austrian\nEthnic divisions:\n    German 99.4%, Croatian 0.3%, Slovene 0.2%, other 0.1%\nReligions:\n    Roman Catholic 85%, Protestant 6%, other 9%\nLanguages:\n    German\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1974 est.)\nLabor force:\n    3,470,000 (1989); services 56.4%, industry and crafts 35.4%, agriculture and\n    forestry 8.1%; an estimated 200,000 Austrians are employed in other European\n    countries; foreign laborers in Austria number 177,840, about 6% of labor\n    force (1988)\nOrganized labor:\n    60.1% of work force; the Austrian Trade Union Federation has 1,644,408\n    members (1989)\n\n:Austria Government\n\nLong-form name:\n    Republic of Austria\nType:\n    federal republic\nCapital:\n    Vienna\nAdministrative divisions:\n    9 states (bundeslander, singular - bundesland); Burgenland, Karnten,\n    Niederosterreich, Oberosterreich, Salzburg, Steiermark, Tirol, Vorarlberg,\n    Wien\nIndependence:\n    12 November 1918 (from Austro-Hungarian Empire)\nConstitution:\n    1920; revised 1929 (reinstated 1945)\nLegal system:\n    civil law system with Roman law origin; judicial review of legislative acts\n    by a Constitutional Court; separate administrative and civil/penal supreme\n    courts; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 26 October (1955)\nExecutive branch:\n    president, chancellor, vice chancellor, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral Federal Assembly (Bundesversammlung) consists of an upper council\n    or Federal Council (Bundesrat) and a lower council or National Council\n    (Nationalrat)\nJudicial branch:\n    Supreme Judicial Court (Oberster Gerichtshof) for civil and criminal cases,\n    Administrative Court (Verwaltungsgerichtshof) for bureaucratic cases,\n    Constitutional Court (Verfassungsgerichtshof) for constitutional cases\nLeaders:\n  Chief of State:\n    President Thomas KLESTIL (since 8 July 1992)\n  Head of Government:\n    Chancellor Franz VRANITZKY (since 16 June 1986); Vice Chancellor Erhard\n    BUSEK (since 2 July 1991)\nPolitical parties and leaders:\n    Social Democratic Party of Austria (SPO), Franz VRANITZKY, chairman;\n    Austrian People's Party (OVP), Erhard BUSEK, chairman; Freedom Party of\n    Austria (FPO), Jorg HAIDER, chairman; Communist Party (KPO), Walter\n    SILBERMAYER, chairman; Green Alternative List (GAL), Johannes VOGGENHUBER,\n    chairman\nSuffrage:\n    universal at age 19; compulsory for presidential elections\nElections:\n  National Council:\n    last held 7 October 1990 (next to be held October 1994); results - SPO 43%,\n    OVP 32.1%, FPO 16.6%, GAL 4.5%, KPO 0.7%, other 0.32%; seats - (183 total)\n    SPO 80, OVP 60, FPO 33, GAL 10\n  President:\n    last held 24 May 1992 (next to be held 1996); results of Second Ballot -\n    Thomas KLESTIL 57%, Rudolf STREICHER 43%\nCommunists:\n    membership 15,000 est.; activists 7,000-8,000\n\n:Austria Government\n\nOther political or pressure groups:\n    Federal Chamber of Commerce and Industry; Austrian Trade Union Federation\n    (primarily Socialist); three composite leagues of the Austrian People's\n    Party (OVP) representing business, labor, and farmers; OVP-oriented League\n    of Austrian Industrialists; Roman Catholic Church, including its chief lay\n    organization, Catholic Action\nMember of:\n    AfDB, AG (observer), AsDB, Australia Group, BIS, CCC, CE, CERN, COCOM, CSCE,\n    EBRD, ECE, EFTA, ESA, FAO, G-9, GATT, HG, IADB, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM,\n    ISO, ITU, LORCS, MTRC, NAM (guest), NEA, NSG, OAS (observer), OECD, PCA, UN,\n    UNCTAD, UNESCO, UNDOF, UNFICYP, UNHCR, UNIDO, UNIIMOG, UNTSO, UPU, WCL,\n    WFTU, WHO, WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Friedrich HOESS; Embassy at 3524 International Court NW,\n    Washington, DC 20008; telephone (202) 895-6700; there are Austrian\n    Consulates General in Chicago, Los Angeles, and New York\n  US:\n    Ambassador Roy Michael HUFFINGTON; Embassy at Boltzmanngasse 16, A-1091,\n    Vienna (mailing address is APO AE 09108-0001); telephone [43] (1) 31-55-11;\n    FAX [43] (1) 310-0682; there is a US Consulate General in Salzburg\nFlag:\n    three equal horizontal bands of red (top), white, and red\n\n:Austria Economy\n\nOverview:\n    Austria boasts a prosperous and stable capitalist economy with a sizable\n    proportion of nationalized industry and extensive welfare benefits. Thanks\n    to an excellent raw material endowment, a technically skilled labor force,\n    and strong links to German industrial firms, Austria occupies specialized\n    niches in European industry and services (tourism, banking) and produces\n    almost enough food to feed itself with only 8% of the labor force in\n    agriculture. Improved export prospects resulting from German unification and\n    the opening of Eastern Europe, boosted the economy during 1990 and to a\n    lesser extent in 1991. GDP growth slowed from 4.9% in 1990 to 3% in 1991 -\n    mainly due to the weaker world economy - and is expected to drop to around\n    2% in 1992. Inflation is forecasted at about 4%, while unemployment probably\n    will increase moderately through 1992 before declining in 1993. Living\n    standards are comparable with the large industrial countries of Western\n    Europe. Problems for the l990s include an aging population, the high level\n    of subsidies, and the struggle to keep welfare benefits within budget\n    capabilities. Austria, which has applied for EC membership, was involved in\n    EC and European Free Trade Association negotiations for a European Economic\n    Area and will have to adapt its economy to achieve freer interchange of\n    goods, services, capital, and labor within the EC.\nGDP:\n    purchasing power equivalent - $164.1 billion, per capita $20,985; real\n    growth rate 3% (1991)\nInflation rate (consumer prices):\n    3.3% (1991, annual rate)\nUnemployment rate:\n    5.8% (1991)\nBudget:\n    revenues $47.7 billion; expenditures $53.0 billion, including capital\n    expenditures of $NA (1990)\nExports:\n    $40 billion (1991)\n  commodities:\n    machinery and equipment, iron and steel, lumber, textiles, paper products,\n    chemicals\n  partners:\n    EC 65.8%, (Germany 39%), EFTA 9.1%, Eastern Europe/former USSR 9.0%, Japan\n    1.7%, US 2.8%\nImports:\n    $50.2 billion (1991)\n  commodities:\n    petroleum, foodstuffs, machinery and equipment, vehicles, chemicals,\n    textiles and clothing, pharmaceuticals\n  partners:\n    EC 67.8% (Germany is 43.0%), EFTA 6.9%, Eastern Europe/former USSR 6.0%,\n    Japan 4.8%, US 3.9%\nExternal debt:\n    $11.8 billion (1990 est.)\nIndustrial production:\n    2.0% (1991)\nElectricity:\n    17,600,000 kW capacity; 49,500 million kWh produced, 6,500 kWh per capita\n    (1991)\nIndustries:\n    foods, iron and steel, machines, textiles, chemicals, electrical, paper and\n    pulp, tourism, mining\n\n:Austria Economy\n\nAgriculture:\n    accounts for 3.2% of GDP (including forestry); principal crops and animals -\n    grains, fruit, potatoes, sugar beets, sawn wood, cattle, pigs, poultry;\n    80-90% self-sufficient in food\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $2.4 billion\nCurrency:\n    Austrian schilling (plural - schillings); 1 Austrian schilling (S) = 100\n    groschen\nExchange rates:\n    Austrian schillings (S) per US$1 - 11.068 (January 1992), 11.676 (1991),\n    11.370 (1990), 13.231 (1989), 12.348 (1988), 12.643 (1987)\nFiscal year:\n    calendar year\n\n:Austria Communications\n\nRailroads:\n    6,028 km total; 5,388 km government owned and 640 km privately owned (1.435-\n    and 1.000-meter gauge); 5,403 km 1.435-meter standard gauge of which 3,051\n    km is electrified and 1,520 km is double tracked; 363 km 0.760-meter narrow\n    gauge of which 91 km is electrified\nHighways:\n    95,412 km total; 34,612 km are the primary network (including 1,012 km of\n    autobahn, 10,400 km of federal, and 23,200 km of provincial roads); of this\n    number, 21,812 km are paved and 12,800 km are unpaved; in addition, there\n    are 60,800 km of communal roads (mostly gravel, crushed stone, earth)\nInland waterways:\n    446 km\nPipelines:\n    crude oil 554 km; natural gas 2,611 km; petroleum products 171 km\nPorts:\n    Vienna, Linz (river ports)\nMerchant marine:\n    31 ships (1,000 GRT or over) totaling 130,966 GRT/219,130 DWT; includes 26\n    cargo, 1 container, 4 bulk\nCivil air:\n    25 major transport aircraft\nAirports:\n    55 total, 55 usable; 20 with permanent-surface runways; none with runways\n    over 3,659 m; 6 with runways 2,440-3,659 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    highly developed and efficient; 4,014,000 telephones; broadcast stations - 6\n    AM, 21 (545 repeaters) FM, 47 (870 repeaters) TV; satellite ground stations\n    for Atlantic Ocean INTELSAT, Indian Ocean INTELSAT, and EUTELSAT systems\n\n:Austria Defense Forces\n\nBranches:\n    Army, Flying Division, Gendarmerie\nManpower availability:\n    males 15-49, 2,011,895; 1,693,244 fit for military service; 51,788 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $1.8 billion, 1% of GDP (1991)\n\n:Azerbaijan Geography\n\nTotal area:\n    86,600 km2\nLand area:\n    86,100 km2; includes the Nakhichevan' Autonomous Republic and the\n    Nagorno-Karabakh Autonomous Oblast; region's autonomy was abolished by\n    Azerbaijan Supreme Soviet on 26 November 1991\nComparative area:\n    slightly larger than Maine\nLand boundaries:\n    2,013 km total; Armenia (west) 566 km, Armenia (southwest) 221 km, Georgia\n    322 km, Iran (south) 432 km, Iran (southwest) 179 km, Russia 284 km, Turkey\n    9 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    NA\n  Exclusive fishing zone:\n    NA nm; Azerbaijani claims in Caspian Sea unknown; 10 nm fishing zone\n    provided for in 1940 treaty regarding trade and navigation between Soviet\n    Union and Iran\nDisputes:\n    violent and longstanding dispute with Armenia over status of\n    Nagorno-Karabakh, lesser dispute concerns Nakhichevan'; some Azeris desire\n    absorption of and/or unification with the ethnically Azeri portion of Iran;\n    minor irredentist disputes along Georgia border\nClimate:\n    dry, semiarid steppe; subject to drought\nTerrain:\n    large, flat Kura Lowland (much of it below sea level) with Great Caucasus\n    Mountains to the north, Karabakh Upland in west; Baku lies on Aspheson\n    Peninsula that juts into Caspian Sea\nNatural resources:\n    petroleum, natural gas, iron ore, nonferrous metals, alumina\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes 70% of cultivated land irrigated (1.2\n    million hectares)\nEnvironment:\n    local scientists consider Apsheron Peninsula, including Baku and Sumgait,\n    and the Caspian Sea to be \"most ecologically devastated area in the world\"\n    because of severe air and water pollution\nNote:\n    landlocked; major polluters are oil, gas, and chemical industries\n\n:Azerbaijan People\n\nPopulation:\n    7,450,787 (July 1992), growth rate 1.6% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    --3 migrants/1,000 population (1992)\nInfant mortality rate:\n    45 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 73 years female (1992)\nTotal fertility rate:\n    2.9 children born/woman (1992)\nNationality:\n    noun - Azerbaijani(s); adjective - Azerbaijani\nEthnic divisions:\n    Azeri 82.7%, Russian 5.6%, Armenian 5.6%, Daghestanis 3.2%, other 2.9%; note\n    - Armenian share may be less than 5.6% because many Armenians have fled the\n    ethnic violence since 1989 census\nReligions:\n    Moslem 87%, Russian Orthodox 5.6%, Armenian Orthodox 5.6%, other 1.8%\nLanguages:\n    Azeri 82%, Russian 7%, Armenian 5%, other 6%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write (1992 est.)\nLabor force:\n    2,789,000; agriculture and forestry 32%, industry and construction 26%,\n    other 42% (1990)\nOrganized labor:\n    NA (1992)\n\n:Azerbaijan Government\n\nLong-form name:\n    Azerbaijani Republic; short-form name: Azerbaijan\nType:\n    republic\nCapital:\n    Baku (Baky)\nAdministrative divisions:\n    1 autonomous republic (avtomnaya respublika), Nakhichevan' (administrative\n    center at Nakhichevan'); note - all rayons except for the exclave of\n    Nakhichevan' are under direct republic jurisdiction;1 autonomous oblast,\n    Nagorno-Karabakh (officially abolished by Azerbaijani Supreme Soviet on 26\n    November 1991) has declared itself Nagorno-Karabakh Republic\nIndependence:\n    28 May 1918; on 28 April 1920, Azerbaijan became the Soviet Socialist\n    Republic of Azerbaijan; on 30 April 1992 it became the Azerbaijani Republic;\n    independence declared 30 August 1991\nConstitution:\n    adopted NA April 1978\nLegal system:\n    based on civil law system\nNational holiday:\n    NA\nExecutive branch:\n    president, Council of Ministers\nLegislative branch:\n    National Parliament (Milli Majlis) was formed on the basis of the National\n    Council (Milli Shura)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President-elect Ebulfez ELCIBEY (since 7 June 1992)\n  Head of Government:\n    Prime Minister Rahim GUSEYNOV (since 14 May 1992)\nPolitical parties and leaders:\n    NA\nSuffrage:\n    universal at age 18\nElections:\n  National Parliament:\n    last held NA September 1990 (next expected to be held late 1992); results -\n    seats - (360 total) Communists 280, Democratic Bloc 45 (grouping of\n    opposition parties), other 15, vacant 20; note - these figures are\n    approximate\n  President:\n    held 8 September 1991 (next to be held 7 June 1992); results - Ebulfez\n    ELCIBEY (6,390 unofficial)\nOther political or pressure groups:\n    Self-proclaimed Armenian Nagorno-Karabakh Republic\nMember of:\n    CIS, CSCE, IMF, OIC, UN, UNCTAD\nDiplomatic representation:\n    NA\n  US:\n    Ambassador (vacant); Robert MILES, Charge d'Affaires; Embassy at Hotel\n    Intourist (telephone 8-011-7-8922-91-79-56) plus 8 hours; (mailing address\n    is APO New York is 09862); telephone NA\n\n:Azerbaijan Government\n\nFlag:\n    three equal horizontal bands of blue (top), red, and green; a crescent and\n    eight-pointed star in white are centered in red band\n\n:Azerbaijan Economy\n\nOverview:\n    Azerbaijan is less developed industrially than either Armenia or Georgia,\n    the other Transcaucasian states. It resembles the Central Asian states in\n    its majority Muslim population, high structural unemployment, and low\n    standard of living. The economy's most prominent products are cotton, oil,\n    and gas. Production from the Caspian oil and gas field has been in decline\n    for several years. With foreign assistance, the oil industry might generate\n    the funds needed to spur industrial development. However, civil unrest,\n    marked by armed conflict in the Nagorno-Karabakh region between Muslim\n    Azeris and Christian Armenians, makes foreign investors wary. Azerbaijan\n    accounts for 1.5% to 2% of the capital stock and output of the former Soviet\n    Union. Although immediate economic prospects are not favorable because of\n    civil strife, lack of economic reform, political disputes about new economic\n    arrangements, and the skittishness of foreign investors, Azerbaijan's\n    economic performance was the best of all former Soviet republics in 1991\n    largely because of its reliance on domestic resources for industrial output.\nGDP:\n    $NA, per capita $NA; real growth rate --0.7% (1991)\nInflation rate (consumer prices):\n    87% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA (1992)\nExports:\n    $780 million (f.o.b., 1991)\n  commodities:\n    oil and gas, chemicals, oilfield equipment, textiles, cotton (1991)\n  partners:\n    mostly CIS countries\nImports:\n    $2.2 billion (c.i.f., 1990)\n  commodities:\n    machinery and parts, consumer durables, foodstuffs, textiles (1991)\nExternal debt:\n    $1.3 billion (1991 est.)\nIndustrial production:\n    growth rate 3.8% (1991)\nElectricity:\n    6,025,000 kW capacity; 23,300 million kWh produced, 3,280 kWh per capita\n    (1991)\nIndustries:\n    petroleum and natural gas, petroleum products, oilfield equipment; steel,\n    iron ore, cement; chemicals and petrochemicals; textiles\nAgriculture:\n    cotton, grain, rice, grapes, fruit, vegetables, tea, tobacco; cattle, pigs,\n    sheep and goats\nIllicit drugs:\n    illicit producer of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    NA\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Azerbaijan Communications\n\nRailroads:\n    2,090 km (includes NA km electrified); does not include industrial lines\n    (1990)\nHighways:\n    36,700 km total (1990); 31,800 km hard surfaced; 4,900 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nPorts:\n    inland - Baku (Baky)\nMerchant marine:\n    none - landlocked\nCivil air:\n    none\nAirports:\n    NA\nTelecommunications:\n    quality of local telephone service is poor; connections to other former USSR\n    republics by landline or microwave and to countries beyond the former USSR\n    via the Moscow international gateway switch; Azeri and Russian TV broadcasts\n    are received; Turkish and Iranian TV broadcasts are received from INTELSAT\n    through a TV receive-only earth station\n\n:Azerbaijan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Navy, Air, Air Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA million, NA% of GDP\n\n:The Bahamas Geography\n\nTotal area:\n    13,940 km2\nLand area:\n    10,070 km2\nComparative area:\n    slightly larger than Connecticut\nLand boundaries:\n    none\nCoastline:\n    3,542 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical marine; moderated by warm waters of Gulf Stream\nTerrain:\n    long, flat coral formations with some low rounded hills\nNatural resources:\n    salt, aragonite, timber\nLand use:\n    arable land 1%; permanent crops NEGL%; meadows and pastures NEGL%; forest\n    and woodland 32%; other 67%\nEnvironment:\n    subject to hurricanes and other tropical storms that cause extensive flood\n    damage\nNote:\n    strategic location adjacent to US and Cuba; extensive island chain\n\n:The Bahamas People\n\nPopulation:\n    255,811 (July 1992), growth rate 1.4% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    19 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 76 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun--Bahamian(s); adjective--Bahamian\nEthnic divisions:\n    black 85%, white 15%\nReligions:\n    Baptist 32%, Anglican 20%, Roman Catholic 19%, Methodist 6%, Church of God\n    6%, other Protestant 12%, none or unknown 3%, other 2% (1980)\nLanguages:\n    English; some Creole among Haitian immigrants\nLiteracy:\n    90% (male 90%, female 89%) age 15 and over but definition of literacy not\n    available (1963 est.)\nLabor force:\n    127,400; government 30%, hotels and restaurants 25%, business services\n    10%, agriculture 5% (1989)\nOrganized labor:\n    25% of labor force\n\n:The Bahamas Government\n\nLong-form name:\n    The Commonwealth of The Bahamas\nType:\n    commonwealth\nCapital:\n    Nassau\nAdministrative divisions:\n    21 districts; Abaco, Acklins Island, Andros Island, Berry Islands,\n    Biminis, Cat Island, Cay Lobos, Crooked Island, Eleuthera, Exuma, Grand\n    Bahama, Harbour Island, Inagua, Long Cay, Long Island, Mayaguana,\n    New Providence, Ragged Island, Rum Cay, San Salvador,\n    Spanish Wells\nIndependence:\n    10 July 1973 (from UK)\nConstitution:\n    10 July 1973\nLegal system:\n    based on English common law\nNational holiday:\n    National Day, 10 July (1973)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime\n    minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower\n    house or House of Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by\n    Acting Governor General Sir Clifford DARLING (since 2 January 1992)\n  Head of Government:\n    Prime Minister Sir Lynden Oscar PINDLING (since 16 January 1967)\nPolitical parties and leaders:\n    Progressive Liberal Party (PLP), Sir Lynden O. PINDLING; Free National\n    Movement (FNM), Hubert Alexander INGRAHAM\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 19 June 1987 (next to be held by NA June 1992);\n    results--percent of vote by party NA; seats--(49 total) PLP 32, FNM 17\n    *** No entry for this item ***\nOther political or pressure groups:\n    Vanguard Nationalist and Socialist Party (VNSP), a small leftist party\n    headed\n    by Lionel CAREY; Trade Union Congress (TUC), headed by Arlington MILLER\nMember of:\n    ACP, C, CCC, CARICOM, CDB, ECLAC, FAO, G-77, IADB, IBRD, ICAO,\n    ICFTU, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM,\n    OAS, OPANAL, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Margaret E. McDONALD; Chancery at 2220 Massachusetts\n    Avenue NW, Washington, DC 20008; telephone (202) 319-2660; there are\n    Bahamian Consulates General in Miami and New York;\n\n:The Bahamas Government\n\n  US:\n    Ambassador Chic HECHT; Embassy at Mosmar Building, Queen Street, Nassau\n    (mailing address is P. O. Box N-8197, Nassau); telephone (809) 322-1181 or\n    328-2206; FAX (809) 328-7838\nDiplomatic representation:\n    *** No entry for this item ***\nFlag:\n    three equal horizontal bands of aquamarine (top), gold, and aquamarine with\n    a black equilateral triangle based on the hoist side\n\n:The Bahamas Economy\n\nOverview:\n    The Bahamas is a stable, middle-income developing nation whose economy is\n    based primarily on tourism and offshore banking. Tourism alone provides\n    about 50% of GDP and directly or indirectly employs about 50,000 people or\n    40% of the local work force. The economy has slackened in recent years, as\n    the annual increase in the number of tourists slowed. Nonetheless, the per\n    capita GDP of $9,900 is one of the highest in the region.\nGDP:\n    purchasing power equivalent--$2.5 billion, per capita $9,900; real growth\n    rate 1.0% (1990 est.)\n    *** No entry for this item ***\nInflation rate (consumer prices):\n    7.3% (1991 est.)\nUnemployment rate:\n    16.0% (1991)\nBudget:\n    revenues $627.5 million; expenditures $727.5 million, including capital\n    expenditures of $100 million (1992, projected)\n    *** No entry for this item ***\nExports:\n    $306 million (f.o.b., 1991 est.);\n  commodities:\n    pharmaceuticals, cement, rum, crawfish;\n  partners:\n    US 41%, Norway 30%, Denmark 4%\nImports:\n    $1.14 billion (c.i.f., 1991 est.);\n  commodities:\n    foodstuffs, manufactured goods, mineral fuels;\n  partners:\n    US 35%, Nigeria 21%, Japan 13%, Angola 11%\nExternal debt:\n    $1.2 billion (December 1990)\nIndustrial production:\n    growth rate 3% (1990); accounts for 15% of GDP\nElectricity:\n    368,000 kw capacity; 857 million kWh produced 3,339 kWh per capita\n    (1991)\nIndustries:\n    tourism, banking, cement, oil refining and transshipment, salt production,\n    rum, aragonite, pharmaceuticals, spiral welded steel pipe\n    *** No entry for this item ***\nAgriculture:\n    accounts for less than 5% of GDP; dominated by small-scale producers;\n    principal products--citrus fruit, vegetables, poultry; large net importer of\n    food\n    *** No entry for this item ***\nIllicit drugs:\n    transshipment point for cocaine\nEconomic aid:\n    US commitments, including Ex-Im (FY85-89), $1.0 million; Western\n    (non-US) countries, ODA and OOF bilateral commitments (1970-89), $345\n    million\nCurrency:\n    Bahamian dollar (plural--dollars); 1 Bahamian dollar (B$) = 100 cents\nExchange rates:\n    Bahamian dollar (B$) per US$1--1.00 (fixed rate)\nFiscal year:\n    calendar year\n\n:The Bahamas Communications\n\nHighways:\n    2,400 km total; 1,350 km paved, 1,050 km gravel\nPorts:\n    Freeport, Nassau\nMerchant marine:\n    778 ships (1,000 GRT or over) totaling 18,129,173 GRT/30,002,421 DWT;\n    includes 48 passenger, 19 short-sea passenger, 152 cargo, 37\n    roll-on/roll-off cargo, 42 container, 6 vehicle carrier, 1 railcar carrier,\n    172 petroleum tanker, 9 liquefied gas, 16 combination ore/oil, 47 chemical\n    tanker, 1 specialized tanker, 143 bulk, 7 combination bulk, 78 refrigerated\n    cargo;\n    note--a flag of convenience registry\n    *** No entry for this item ***\nCivil air:\n    11 major transport aircraft\nAirports:\n    59 total, 54 usable; 30 with permanent-surface runways; none with\n    runways over 3,659 m; 3 with runways 2,440-3, 659 m; 26 with runways\n    1,220-2,439 m\nTelecommunications:\n    highly developed; 99,000 telephones in totally automatic system;\n    tropospheric scatter and submarine cable links to Florida; broadcast\n    stations--3 AM, 2 FM, 1 TV; 3 coaxial submarine cables; 1 Atlantic Ocean\n    INTELSAT earth station\n    *** No entry for this item ***\n\n:The Bahamas Defense Forces\n\nBranches:\n    Royal Bahamas Defense Force (Coast Guard only), Royal Bahamas Police\nBranches:\n    Force\nManpower availability:\n    males 15-49, 68,020; NA fit for military service\nDefense expenditures:\n    exchange rate conversion--$65 million, 2.7% of GDP (1990)\n\n:Bahrain Geography\n\nTotal area:\n    620 km2\nLand area:\n    620 km2\nComparative area:\n    slightly less than 3.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    161 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Territorial sea:\n    3 nm\nDisputes:\n    territorial dispute with Qatar over the Hawar Islands; maritime boundary\n    with Qatar\nClimate:\n    arid; mild, pleasant winters; very hot, humid summers\nTerrain:\n    mostly low desert plain rising gently to low central escarpment\nNatural resources:\n    oil, associated and nonassociated natural gas, fish\nLand use:\n    arable land 2%; permanent crops 2%; meadows and pastures 6%; forest and\n    woodland 0%; other 90%, includes irrigated NEGL%\nEnvironment:\n    subsurface water sources being rapidly depleted (requires development of\n    desalination facilities); dust storms; desertification\nNote:\n    close to primary Middle Eastern crude oil sources; strategic location in\n    Persian Gulf through which much of Western world's crude oil must transit to\n    reach open ocean\n\n:Bahrain People\n\nPopulation:\n    551,513 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    7 migrants/1,000 population (1992)\nInfant mortality rate:\n    21 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 75 years female (1992)\nTotal fertility rate:\n    4.0 children born/woman (1992)\nNationality:\n    noun - Bahraini(s); adjective - Bahraini\nEthnic divisions:\n    Bahraini 63%, Asian 13%, other Arab 10%, Iranian 8%, other 6%\nReligions:\n    Muslim (Shi`a 70%, Sunni 30%)\nLanguages:\n    Arabic (official); English also widely spoken; Farsi, Urdu\nLiteracy:\n    77% (male 82%, female 69%) age 15 and over can read and write (1990 est.)\nLabor force:\n    140,000; 42% of labor force is Bahraini; industry and commerce 85%,\n    agriculture 5%, services 5%, government 3% (1982)\nOrganized labor:\n    General Committee for Bahrain Workers exists in only eight major designated\n    companies\n\n:Bahrain Government\n\nLong-form name:\n    State of Bahrain\nType:\n    traditional monarchy\nCapital:\n    Manama\nAdministrative divisions:\n    12 districts (manatiq, singular - mintaqah); Al Hadd, Al Manamah, Al\n    Mintaqah al Gharbiyah, Al Mintaqah al Wusta, Al Mintaqah ash Shamaliyah, Al\n    Muharraq, Ar Rifa`wa al Mintaqah al Janubiyah, Jidd Hafs, Madinat Hamad,\n    Madinat `Isa, Mintaqat Juzur Hawar, Sitrah\nIndependence:\n    15 August 1971 (from UK)\nConstitution:\n    26 May 1973, effective 6 December 1973\nLegal system:\n    based on Islamic law and English common law\nNational holiday:\n    Independence Day, 16 December\nExecutive branch:\n    amir, crown prince and heir apparent, prime minister, Cabinet\nLegislative branch:\n    unicameral National Assembly was dissolved 26 August 1975 and legislative\n    powers were assumed by the Cabinet\nJudicial branch:\n    High Civil Appeals Court\nLeaders:\n  Chief of State:\n    Amir `ISA bin Salman Al Khalifa (since 2 November 1961); Heir Apparent HAMAD\n    bin `Isa Al Khalifa (son of Amir; born 28 January 1950)\n  Head of Government:\n    Prime Minister KHALIFA bin Salman Al Khalifa (since 19 January 1970)\nPolitical parties and leaders:\n    political parties prohibited; several small, clandestine leftist and Islamic\n    fundamentalist groups are active\nSuffrage:\n    none\nElections:\n    none\nMember of:\n    ABEDA, AFESD, AL, AMF, ESCWA, FAO, G-77, GCC, IBRD, ICAO, IDB, ILO, IMF,\n    IMO, INMARSAT, INTERPOL, IOC, ISO (correspondent), ITU, LORCS, NAM, OAPEC,\n    OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO\nDiplomatic representation:\n    Ambassador `Abd al-Rahman Faris Al KHALIFA; Chancery at 3502 International\n    Drive NW, Washington, DC 20008; telephone (202) 342-0741 or 342-0742; there\n    is a Bahraini Consulate General in New York\n  US:\n    Ambassador Dr. Charles W. HOSTLER; Embassy at Road No. 3119 (next to Alahli\n    Sports Club), Zinj; (mailing address is P. O. 26431, Manama, or FPO AE\n    09834-6210); telephone [973] 273-300; FAX (973) 272-594\nFlag:\n    red with a white serrated band (eight white points) on the hoist side\n\n:Bahrain Economy\n\nOverview:\n    Petroleum production and processing account for about 80% of export\n    receipts, 60% of government revenues, and 31% of GDP. Economic conditions\n    have fluctuated with the changing fortunes of oil since 1985, for example,\n    the Gulf crisis of 1990-91. The liberation of Kuwait in early 1991 has\n    improved short- to medium-term prospects and has raised investors'\n    confidence. Bahrain with its highly developed communication and transport\n    facilities is home to numerous multinational firms with business in the\n    Gulf. A large share of exports is petroleum products made from imported\n    crude.\nGDP:\n    exchange rate conversion - $4.0 billion, per capita $7,500 (1990); real\n    growth rate 6.7% (1988)\nInflation rate (consumer prices):\n    1.5% (1989)\nUnemployment rate:\n    8-10% (1989)\nBudget:\n    revenues $1.2 billion; expenditures $1.32 billion, including capital\n    expenditures of $NA (1989)\nExports:\n    $3.7 billion (f.o.b., 1990 est.)\n  commodities:\n    petroleum and petroleum products 80%, aluminum 7%, other 13%\n  partners:\n    UAE 18%, Japan 12%, India 11%, US 6%\nImports:\n    $3.7 billion (f.o.b., 1989)\n  commodities:\n    nonoil 59%, crude oil 41%\n  partners:\n    Saudi Arabia 41%, US 23%, Japan 8%, UK 8%\nExternal debt:\n    $1.1 billion (December 1989 est.)\nIndustrial production:\n    growth rate 3.8% (1988); accounts for 44% of GDP\nElectricity:\n    3,600,000 kW capacity; 10,500 million kWh produced, 21,000 kWh per capita\n    (1991)\nIndustries:\n    petroleum processing and refining, aluminum smelting, offshore banking, ship\n    repairing\nAgriculture:\n    including fishing, accounts for less than 2% of GDP; not self-sufficient in\n    food production; heavily subsidized sector produces fruit, vegetables,\n    poultry, dairy products, shrimp, and fish; fish catch 9,000 metric tons in\n    1987\nEconomic aid:\n    US commitments, including Ex-Im (FY70-79), $24 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $45 million; OPEC\n    bilateral aid (1979-89), $9.8 billion\nCurrency:\n    Bahraini dinar (plural - dinars); 1 Bahraini dinar (BD) = 1,000 fils\nExchange rates:\n    Bahraini dinars (BD) per US$1 - 0.3760 (fixed rate)\nFiscal year:\n    calendar year\n\n:Bahrain Communications\n\nHighways:\n    200 km bituminous surfaced, including 25 km bridge-causeway to Saudi Arabia\n    opened in November 1986; NA km natural surface tracks\nPipelines:\n    crude oil 56 km; petroleum products 16 km; natural gas 32 km\nPorts:\n    Mina' Salman, Manama, Sitrah\nMerchant marine:\n    9 ships (1,000 GRT or over) totaling 186,367 GRT/249,441 DWT; includes 5\n    cargo, 2 container, 1 liquefied gas, 1 bulk\nCivil air:\n    27 major transport aircraft\nAirports:\n    3 total, 3 usable; 2 with permanent-surface runways; 2 with runways over\n    3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    excellent international telecommunications; good domestic services; 98,000\n    telephones; broadcast stations - 2 AM, 3 FM, 2 TV; satellite earth stations\n    - 1 Atlantic Ocean INTELSAT, 1 Indian Ocean INTELSAT, 1 ARABSAT;\n    tropospheric scatter to Qatar, UAE, and microwave to Saudi Arabia; submarine\n    cable to Qatar, UAE, and Saudi Arabia\n\n:Bahrain Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Air Defense, Police Force\nManpower availability:\n    males 15-49, 190,937; 105,857 fit for military service\nDefense expenditures:\n    exchange rate conversion - $194 million, 6% of GDP (1990)\n\n:Baker Island Geography\n\nTotal area:\n    1.4 km2\nLand area:\n    1.4 km2\nComparative area:\n    about 2.3 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    4.8 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    equatorial; scant rainfall, constant wind, burning sun\nTerrain:\n    low, nearly level coral island surrounded by a narrow fringing reef\nNatural resources:\n    guano (deposits worked until 1891)\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    treeless, sparse and scattered vegetation consisting of grasses, prostrate\n    vines, and low growing shrubs; lacks fresh water; primarily a nesting,\n    roosting, and foraging habitat for seabirds, shorebirds, and marine wildlife\nNote:\n    remote location 2,575 km southwest of Honolulu in the North Pacific Ocean,\n    just north of the Equator, about halfway between Hawaii and Australia\n\n:Baker Island People\n\nPopulation:\n    uninhabited; American civilians evacuated in 1942 after Japanese air and\n    naval attacks during World War II; occupied by US military during World War\n    II, but abandoned after the war; public entry is by special-use permit only\n    and generally restricted to scientists and educators\n\n:Baker Island Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US administered by the Fish and Wildlife\n    Service of the US Department of the Interior as part of the National\n    Wildlife Refuge system\nCapital:\n    none; administered from Washington, DC\n\n:Baker Island Economy\n\nOverview:\n    no economic activity\n\n:Baker Island Communications\n\nPorts:\n    none; offshore anchorage only, one boat landing area along the middle of the\n    west coast\nAirports:\n    1 abandoned World War II runway of 1,665 m\nTelecommunications:\n    there is a day beacon near the middle of the west coast\n\n:Baker Island Defense Forces\n\nNote:\n    defense is the responsibility of the US; visited annually by the US Coast\n    Guard\n\n:Bangladesh Geography\n\nTotal area:\n    144,000 km2\nLand area:\n    133,910 km2\nComparative area:\n    slightly smaller than Wisconsin\nLand boundaries:\n    4,246 km total; Burma 193 km, India 4,053 km\nCoastline:\n    580 km\nMaritime claims:\n  Contiguous zone:\n    18 nm\n  Continental shelf:\n    up to outer limits of continental margin\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    a portion of the boundary with India is in dispute; water sharing problems\n    with upstream riparian India over the Ganges\nClimate:\n    tropical; cool, dry winter (October to March); hot, humid summer (March to\n    June); cool, rainy monsoon (June to October)\nTerrain:\n    mostly flat alluvial plain; hilly in southeast\nNatural resources:\n    natural gas, uranium, arable land, timber\nLand use:\n    arable land 67%; permanent crops 2%; meadows and pastures 4%; forest and\n    woodland 16%; other 11%; includes irrigated 14%\nEnvironment:\n    vulnerable to droughts; much of country routinely flooded during summer\n    monsoon season; overpopulation; deforestation\nNote:\n    almost completely surrounded by India\n\n:Bangladesh People\n\nPopulation:\n    119,411,711 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    36 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    112 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 54 years female (1992)\nTotal fertility rate:\n    4.6 children born/woman (1992)\nNationality:\n    noun - Bangladeshi(s); adjective - Bangladesh\nEthnic divisions:\n    Bengali 98%, Biharis 250,000, and tribals less than 1 million\nReligions:\n    Muslim 83%, Hindu 16%, Buddhist, Christian, and other less than 1%\nLanguages:\n    Bangla (official), English widely used\nLiteracy:\n    35% (male 47%, female 22%) age 15 and over can read and write (1990 est.)\nLabor force:\n    35,100,000; agriculture 74%, services 15%, industry and commerce 11% (FY86);\n    extensive export of labor to Saudi Arabia, UAE, and Oman (1991)\nOrganized labor:\n    3% of labor force belongs to 2,614 registered unions (1986 est.)\n\n:Bangladesh Government\n\nLong-form name:\n    People's Republic of Bangladesh\nType:\n    republic\nCapital:\n    Dhaka\nAdministrative divisions:\n    64 districts (zillagulo, singular - zilla); Bagerhat, Bandarban, Barguna,\n    Barisal, Bhola, Bogra, Brahmanbaria, Chandpur, Chapai Nawabganj, Chattagram,\n    Chuadanga, Comilla, Cox's Bazar, Dhaka, Dinajpur, Faridpur, Feni, Gaibandha,\n    Gazipur, Gopalganj, Habiganj, Jaipurhat, Jamalpur, Jessore, Jhalakati,\n    Jhenaidah, Khagrachari, Khulna, Kishorganj, Kurigram, Kushtia, Laksmipur,\n    Lalmonirhat, Madaripur, Magura, Manikganj, Meherpur, Moulavibazar,\n    Munshiganj, Mymensingh, Naogaon, Narail, Narayanganj, Narsingdi, Nator,\n    Netrakona, Nilphamari, Noakhali, Pabna, Panchagar, Parbattya Chattagram,\n    Patuakhali, Pirojpur, Rajbari, Rajshahi, Rangpur, Satkhira, Shariyatpur,\n    Sherpur, Sirajganj, Sunamganj, Sylhet, Tangail, Thakurgaon\nIndependence:\n    16 December 1971 (from Pakistan; formerly East Pakistan)\nConstitution:\n    4 November 1972, effective 16 December 1972, suspended following coup of 24\n    March 1982, restored 10 November 1986, amended NA March 1991\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 26 March (1971)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral National Parliament (Jatiya Sangsad)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Abdur Rahman BISWAS (since 8 October 1991)\n  Head of Government:\n    Prime Minister Khaleda ZIAUR Rahman (since 20 March 1991)\nPolitical parties and leaders:\n    Bangladesh Nationalist Party (BNP), Khaleda ZIAUR Rahman; Awami League (AL),\n    Sheikh Hasina WAZED; Jatiyo Party (JP), Hussain Mohammad ERSHAD;\n    Jamaat-E-Islami (JI), Ali KHAN; Bangladesh Communist Party (BCP), Saifuddin\n    Ahmed MANIK; National Awami Party (Muzaffar); Workers Party, leader NA;\n    Jatiyo Samajtantik Dal (National Socialist Party - SIRAJ), M. A. JALIL;\n    Ganotantri Party, leader NA; Islami Oikya Jote, leader NA; National\n    Democratic Party (NDP), leader NA; Muslim League, Khan A. SABUR; Democratic\n    League, Khondakar MUSHTAQUE Ahmed; United People's Party, Kazi ZAFAR Ahmed\nSuffrage:\n    universal at age 18\nElections:\n  National Parliament:\n    last held 27 February 1991 (next to be held NA February 1996); results -\n    percent of vote by party NA; seats - (330 total, 300 elected and 30 seats\n    reserved for women) BNP 168, AL 93, JP 35, JI 20, CBP 5, National Awami\n    Party (Muzaffar) 1, Workers Party 1, SIRAJ 1, Ganotantri Party 1, Islami\n    Oikya Jote 1, NDP 1, independents 3\n  President:\n    last held 8 October 1991 (next to be held by NA October 1996); results -\n    Abdur Rahman BISWAS received 52.1% of parliamentary vote\n\n:Bangladesh Government\n\nCommunists:\n    5,000 members (1987 est.)\nMember of:\n    AsDB, C, CCC, CP, ESCAP, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICFTU, IDA, IDB,\n    IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS,\n    NAM, OIC, SAARC, UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UPU, WHO, WFTU, WIPO,\n    WCL, WMO, WTO\nDiplomatic representation:\n    Ambassador Abul AHSAN; Chancery at 2201 Wisconsin Avenue NW, Washington, DC\n    20007; telephone (202) 342-8372 through 8376; there is a Bangladesh\n    Consulate General in New York\n  US:\n    Ambassador William B. MILAM; Embassy at Diplomatic Enclave, Madani Avenue,\n    Baridhara, Dhaka (mailing address is G. P. O. Box 323, Dhaka 1212);\n    telephone [880] (2) 884700-22; FAX [880] (2) 883648\nFlag:\n    green with a large red disk slightly to the hoist side of center; green is\n    the traditional color of Islam\n\n:Bangladesh Economy\n\nOverview:\n    Bangladesh is one of the poorest nations in the world. The economy is based\n    on the output of a narrow range of agricultural products, such as jute,\n    which is the main cash crop and major source of export earnings, and rice.\n    Bangladesh is hampered by a relative lack of natural resources, population\n    growth of more than 2% a year, large-scale unemployment, and a limited\n    infrastructure; furthermore, it is highly vulnerable to natural disasters.\n    Despite these constraints, real GDP growth averaged about 3.5% annually\n    during 1985-89. A strong agricultural performance in FY90 pushed the growth\n    rate up to 6.2%, and FY91 saw further, though smaller, increases in output.\n    Alleviation of poverty remains the cornerstone of the government's\n    development strategy.\nGDP:\n    exchange rate conversion - $23.1 billion, per capita $200; real growth rate\n    3.2% (FY91)\nInflation rate (consumer prices):\n    8.9% (FY91 est.)\nUnemployment rate:\n    30%, including underemployment (FY90 est.)\nBudget:\n    revenues $2.24 billion; expenditures $3.7 billion (FY91)\nExports:\n    $1.7 billion (FY91 est.)\n  commodities:\n    garments, jute and jute goods, leather, shrimp\n  partners:\n    US 32%, Italy 8.1%, UK 6.2% (FY90)\nImports:\n    $3.5 billion (FY91 est.)\n  commodities:\n    capital goods, petroleum, food, textiles\n  partners:\n    Japan 9.2%, India 6.2%, Singapore 5.9%, US 5.7%\nExternal debt:\n    $11.1 billion (FY91 est.)\nIndustrial production:\n    growth rate 1% (FY91 est.); accounts for 10% of GDP\nElectricity:\n    1,990,000 kW capacity; 5,700 million kWh produced, 50 kWh per capita (1990)\nIndustries:\n    jute manufacturing, cotton textiles, food processing, steel, fertilizer\nAgriculture:\n    accounts for about 40% of GDP, 70% of employment, and one-third of exports;\n    imports 10% of food grain requirements; world's largest exporter of jute;\n    commercial products - jute, rice, wheat, tea, sugarcane, potatoes, beef,\n    milk, poultry; shortages include wheat, vegetable oils and cotton; fish\n    catch 778,000 metric tons in 1986\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $3.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1980-89), $11.65 million; OPEC\n    bilateral aid (1979-89), $6.52 million; Communist countries (1970-89), $1.5\n    billion\nCurrency:\n    taka (plural - taka); 1 taka (Tk) = 100 paise\nExchange rates:\n    taka (Tk) per US$1 - 38.800 (January 1992), 36.596 (1991), 34.569 (1990),\n    32.270 (1989), 31.733 (1988), 30.950 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Bangladesh Communications\n\nRailroads:\n    2,892 km total (1986); 1,914 km 1.000 meter gauge, 978 km 1.676 meter broad\n    gauge\nHighways:\n    7,240 km total (1985); 3,840 km paved, 3,400 km unpaved\nInland waterways:\n    5,150-8,046 km navigable waterways (includes 2,575-3,058 km main cargo\n    routes)\nPipelines:\n    natural gas 1,220 km\nPorts:\n    Chittagong, Chalna\nMerchant marine:\n    44 ships (1,000 GRT or over) totaling 328,382 GRT/479,985 DWT; includes 36\n    cargo, 2 petroleum tanker, 3 refrigerated cargo, 3 bulk\nCivil air:\n    15 major transport aircraft\nAirports:\n    16 total, 12 usable; 12 with permanent-surface runways; none with runways\n    over 3,659 m; 4 with runways 2,440-3,659 m; 6 with runways 1,220-2,439 m\nTelecommunications:\n    adequate international radio communications and landline service; fair\n    domestic wire and microwave service; fair broadcast service; 241,250\n    telephones; broadcast stations - 9 AM, 6 FM, 11 TV; 2 Indian Ocean INTELSAT\n    satellite earth stations\n\n:Bangladesh Defense Forces\n\nBranches:\n    Army, Navy, Air Force; paramilitary forces - Bangladesh Rifles, Bangladesh\n    Ansars, Armed Police Reserve, Coastal Police\nManpower availability:\n    males 15-49, 29,891,224; 17,745,343 fit for military service\nDefense expenditures:\n    exchange rate conversion - $339 million, 1.5% of GDP (FY92 budget)\n\n:Barbados Geography\n\nTotal area:\n    430 km2\nLand area:\n    430 km2\nComparative area:\n    slightly less than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    97 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; rainy season (June to October)\nTerrain:\n    relatively flat; rises gently to central highland region\nNatural resources:\n    crude oil, fishing, natural gas\nLand use:\n    arable land 77%; permanent crops 0%; meadows and pastures 9%; forest and\n    woodland 0%; other 14%\nEnvironment:\n    subject to hurricanes (especially June to October)\nNote:\n    easternmost Caribbean island\n\n:Barbados People\n\nPopulation:\n    254,934 (July 1992), growth rate 0.1% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    --6 migrants/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 76 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Barbadian(s); adjective - Barbadian\nEthnic divisions:\n    African 80%, mixed 16%, European 4%\nReligions:\n    Protestant 67% (Anglican 40%, Pentecostal 8%, Methodist 7%, other 12%),\n    Roman Catholic 4%; none 17%, unknown 3%, other 9% (1980)\nLanguages:\n    English\nLiteracy:\n    99% (male 99%, female 99%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    120,900 (1991); services and government 37%; commerce 22%; manufacturing and\n    construction 22%; transportation, storage, communications, and financial\n    institutions 9%; agriculture 8%; utilities 2% (1985 est.)\nOrganized labor:\n    32% of labor force\n\n:Barbados Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Bridgetown\nAdministrative divisions:\n    11 parishes; Christ Church, Saint Andrew, Saint George, Saint James, Saint\n    John, Saint Joseph, Saint Lucy, Saint Michael, Saint Peter, Saint Philip,\n    Saint Thomas; note - there may be a new city of Bridgetown\nIndependence:\n    30 November 1966 (from UK)\nConstitution:\n    30 November 1966\nLegal system:\n    English common law; no judicial review of legislative acts\nNational holiday:\n    Independence Day, 30 November (1966)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Assembly\nJudicial branch:\n    Supreme Court of Judicature\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Dame Nita BARROW (since 6 June 1990)\n  Head of Government:\n    Prime Minister Lloyd Erskine SANDIFORD (since 2 June 1987)\nPolitical parties and leaders:\n    Democratic Labor Party (DLP), Erskine SANDIFORD; Barbados Labor Party (BLP),\n    Henry FORDE; National Democratic Party (NDP), Richie HAYNES\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 22 January 1991 (next to be held by January 1996); results - DLP\n    49.8%; seats - (28 total) DLP 18, BLP 10\nOther political or pressure groups:\n    Industrial and General Workers Union, Sir Frank WALCOTT; People's\n    Progressive Movement, Eric SEALY; Workers' Party of Barbados, Dr. George\n    BELLE\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, GATT, IADB, IBRD, ICAO, ICFTU, IFAD,\n    IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO (correspondent), ITU, LAES,\n    LORCS, NAM, OAS, OPANAL, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Dr. Rudi WEBSTER; Chancery at 2144 Wyoming Avenue NW, Washington,\n    DC 20008; telephone (202) 939-9200 through 9202; there is a Barbadian\n    Consulate General in New York and a Consulate in Los Angeles\n  US:\n    Ambassador G. Philip HUGHES; Embassy at Canadian Imperial Bank of Commerce\n    Building, Broad Street, Bridgetown (mailing address is P. O. Box 302, Box B,\n    FPO AA 34054); telephone (809) 436-4950 through 4957; FAX (809) 429-5246\n\n:Barbados Government\n\nFlag:\n    three equal vertical bands of blue (hoist side), yellow, and blue with the\n    head of a black trident centered on the gold band; the trident head\n    represents independence and a break with the past (the colonial coat of arms\n    contained a complete trident)\n\n:Barbados Economy\n\nOverview:\n    A per capita income of $6,500 gives Barbados one of the highest standards of\n    living of all the small island states of the eastern Caribbean.\n    Historically, the economy was based on the cultivation of sugarcane and\n    related activities. In recent years, however, the economy has diversified\n    into manufacturing and tourism. The tourist industry is now a major employer\n    of the labor force and a primary source of foreign exchange. The economy\n    slowed in 1990-91, however, and Bridgetown's declining hard currency\n    reserves and inability to finance its deficits have caused it to adopt an\n    austere economic reform program.\nGDP:\n    purchasing power equivalent - $1.7 billion, per capita $6,500; real growth\n    rate--3.1% (1990)\nInflation rate (consumer prices):\n    3.4% (1990)\nUnemployment rate:\n    18% (1991)\nBudget:\n    revenues $514 million; expenditures $615 million (FY91-92)\nExports:\n    $210.6 million (f.o.b., 1990)\n  commodities:\n    sugar and molasses, chemicals, electrical components, clothing, rum,\n    machinery and transport equipment\n  partners:\n    CARICOM 30%, US 20%, UK 20%\nImports:\n    $704 million (c.i.f., 1990)\n  commodities:\n    foodstuffs, consumer durables, raw materials, machinery, crude oil,\n    construction materials, chemicals\n  partners:\n    US 35%, CARICOM 13%, UK 12%, Japan 6%, Canada 8%, Venezuela 4%\nExternal debt:\n    $539.9 million (1990)\nIndustrial production:\n    growth rate--2.7% (1990); accounts for 14% of GDP\nElectricity:\n    152,100 kW capacity; 539 million kWh produced, 2,117 kWh per capita (1991)\nIndustries:\n    tourism, sugar, light manufacturing, component assembly for export\nAgriculture:\n    accounts for 10% of GDP; major cash crop is sugarcane; other crops -\n    vegetables and cotton; not self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $15 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $171 million\nCurrency:\n    Barbadian dollars (plural - dollars); 1 Barbadian dollar (Bds$) = 100 cents\nExchange rates:\n    Barbadian dollars (Bds$) per US$1 - 2.0113 (fixed rate)\nFiscal year:\n    1 April - 31 March\n\n:Barbados Communications\n\nHighways:\n    1,570 km total; 1,475 km paved, 95 km gravel and earth\nPorts:\n    Bridgetown\nMerchant marine:\n    2 cargo ships (1,000 GRT or over) totaling 3,200 GRT/7,338 DWT\nCivil air:\n    no major transport aircraft\nAirports:\n    1 with permanent-surface runways 2,440-3,659 m\nTelecommunications:\n    islandwide automatic telephone system with 89,000 telephones; tropospheric\n    scatter link to Trinidad and Saint Lucia; broadcast stations - 3 AM, 2 FM, 2\n    (1 is pay) TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Barbados Defense Forces\n\nBranches:\n    Royal Barbados Defense Force, Coast Guard, Royal Barbados Police Force\nManpower availability:\n    males 15-49, 69,678; 48,803 fit for military service, no conscription\nDefense expenditures:\n    exchange rate conversion - $10 million, 0.7% of GDP (1989)\n\n:Bassas da India Geography\n\nTotal area:\n    NA\nLand area:\n    undetermined\nComparative area:\n    undetermined\nLand boundaries:\n    none\nCoastline:\n    35.2 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Madagascar\nClimate:\n    tropical\nTerrain:\n    a volcanic rock 2.4 m high\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other (rock) 100%\nEnvironment:\n    surrounded by reefs; subject to periodic cyclones\nNote:\n    navigational hazard since it is usually under water during high tide;\n    located in southern Mozambique Channel about halfway between Africa and\n    Madagascar\n\n:Bassas da India People\n\nPopulation:\n    uninhabited\n\n:Bassas da India Government\n\nLong-form name:\n    none\nType:\n    French possession administered by Commissioner of the Republic Jacques\n    DEWATRE (since July 1991), resident in Reunion\nCapital:\n    none; administered by France from Reunion\n\n:Bassas da India Economy\n\nOverview:\n    no economic activity\n\n:Bassas da India Communications\n\nPorts:\n    none; offshore anchorage only\n\n:Bassas da India Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Belarus Geography\n\nTotal area:\n    207,600 km2\nLand area:\n    207,600 km2\nComparative area:\n    slightly smaller than Kansas\nLand boundaries:\n    3,098 km total; Latvia 141 km, Lithuania 502 km, Poland 605 km, Russia 959\n    km, Ukraine 891 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    mild and moist; transitional between continental and maritime\nTerrain:\n    generally flat and contains much marshland\nNatural resources:\n    forest land and peat deposits\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; includes irrigated NA%\nEnvironment:\n    southern part of Belarus\n    highly contaminated with fallout from 1986 nuclear reactor accident at\n    Chernobyl'\nNote:\n    landlocked\n\n:Belarus People\n\nPopulation:\n    10,373,881 (July 1992), growth rate 0.5% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    20 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 76 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Belarusian(s); adjective - Belarusian\nEthnic divisions:\n    Byelorussian 77.9%, Russian 13.2%, Poles 4.1%, Ukrainian 2.9%, Jews 1.1%,\n    other 0.8%\nReligions:\n    Russian Orthodox NA%, unknown NA%, none NA%, other NA%\nLanguages:\n    Byelorussian NA%, Russian NA%, other NA%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    5,418,000; industry and construction 42%, agriculture and forestry 20%,\n    other 38% (1990)\nOrganized labor:\n    NA\n\n:Belarus Government\n\nLong-form name:\n    Republic of Belarus\nType:\n    republic\nCapital:\n    Mensk\nAdministrative divisions:\n    6 oblasts (oblastey, singular - oblast'); Brest, Gomel', Grodno, Minsk,\n    Mogilev, Vitebsk; note - all oblasts have the same name as their\n    administrative center\nIndependence:\n    1 January 1919 Belorussian Republic; 30 December 1922 joined with the USSR;\n    25 August 1991 redeclared independence\nConstitution:\n    adopted April 1978\nLegal system:\n    based on civil law system\nNational holiday:\n    24 August (1991)\nExecutive branch:\n    NA\nLegislative branch:\n    unicameral with 360 seats\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    Chairman of the Supreme Soviet Stanislav S. SHUSHKEVICH (since NA 1991)\n  Head of Government:\n    Prime Minister Vyacheslav F. KEBICH (since NA April 1990), First Deputy\n    Prime Minister Mikhail MYASNIKOVICH (since early 1991)\nPolitical parties and leaders:\n    Belarusian Popular Front, Zenon POZNYAK, chairman; United Democratic Party,\n    Stanislav GUSAK, co-chairman; Social Democratic Gramada, Mikhail TKACHEV,\n    chairman; Belarus Workers Union, Mikhail SOBOL, Chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    NA\n  Supreme Soviet:\n    last held 4 March 1990 (next to be held NA); results - percent of vote by\n    party NA; seats - (360 total) number of seats by party NA; note - 50 seats\n    are for public bodies\nCommunists:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CE, CIS, CSCE, ECE, IAEA, ILO, INMARSAT, IOC, ITU, NACC, PCA, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Martynov; Chancery at NA NW, Washington, DC 200__; telephone NA\n  US:\n    Ambassador (vacant); David SWARTZ, Charge d'Affaires; Embassy at Hotel\n    Belarus (telephone 8-011-7-0172-69-08-02) plus 7 hours; (mailing address is\n    APO New York is 09862); telephone NA\nFlag:\n    white, red, and white\n\n:Belarus Economy\n\nOverview:\n    In many ways Belarus resembles the three Baltic states, for example, in its\n    industrial competence, its higher-than-average standard of living, and its\n    critical dependence on the other former Soviet states for fuels and raw\n    materials. Belarus ranks fourth in gross output among the former Soviet\n    republics, producing 4% of the total GDP and employing 4% of the labor\n    force. Once a mainly agricultural area, it now supplies important producer\n    and consumer goods - sometimes as the sole producer - to the other states.\n    The soil in Belarus is not as fertile as the black earth of Ukraine, but by\n    emphasizing favorable crops and livestock (especially pigs and chickens),\n    Belarus has become a net exporter to the other republics of meat, milk,\n    eggs, flour, and potatoes. Belarus produces only small amounts of oil and\n    gas and receives most of its fuel from Russia through the Druzhba oil\n    pipeline and the Northern Lights gas pipeline. These pipelines transit\n    Belarus enroute to Eastern Europe. Belarus produces petrochemicals,\n    plastics, synthetic fibers (nearly 30% of former Soviet output), and\n    fertilizer (20% of former Soviet output). Raw material resources are limited\n    to potash and peat deposits. The peat (more than one-third of the total for\n    the former Soviet Union) is used in domestic heating as boiler fuel for\n    electric power stations and in the production of chemicals. The potash\n    supports fertilizer production.\nGDP:\n    NA - $NA, per capita $NA; real growth rate --2% (1991)\nInflation rate (consumer prices):\n    81% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $NA million\nExports:\n    $4.3 billion (f.o.b., 1990)\n  commodities:\n    machinery and transport equipment, chemicals, foodstuffs\n  partners:\n    NA\nImports:\n    $5.6 billion (c.i.f., 1990)\n  commodities:\n    machinery, chemicals, textiles\n  partners:\n    NA\nExternal debt:\n    $2.6 billion (end of 1991)\nIndustrial production:\n    growth rate --1.5% (1991)\nElectricity:\n    7,500,000 kW capacity; 38,700 million kWh produced, 3,770 kWh per capita\n    (1991)\n\n:Belarus Economy\n\nIndustries:\n    employ about 27% of labor force and produce a wide variety of products\n    essential to the other states; products include (in percent share of total\n    output of former Soviet Union): tractors(12%); metal-cutting machine tools\n    (11%); off-highway dump trucksup to 110-metric- ton load capacity (100%);\n    wheel-type earthmovers for construction and mining (100%); eight-\n    wheel-drive, high-flotation trucks with cargo capacity of 25 metric tons for\n    use in tundra and roadless areas (100%); equipment for animal husbandry and\n    livestock feeding (25%); motorcycles (21.3%); television sets (11%);\n    chemical fibers (28%); fertilizer (18%); linen fabric (11%); wool fabric\n    (7%); radios; refrigerators; and other consumer goods\nAgriculture:\n    accounts for 5.7% of total agricultural output of former Soviet Union;\n    employs 29% of the labor force; in 1988 produced the following (in percent\n    of total Soviet production): grain (3.6%), potatoes (12.2%), vegetables\n    (3.0%), meat (6.0%), milk (7.0%); net exporter of meat, milk, eggs, flour,\n    and potatoes\nIllicit drugs:\n    illicit producer of opium mostly for the domestic market; transshipment\n    point for illicit drugs to Western Europe\nEconomic aid:\n    NA\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Belarus Communications\n\nRailroads:\n    5,570 km (includes NA km electrified); does not include industrial lines\n    (1990)\nHighways:\n    98,200 km total (1990); 66,100 km hard surfaced, 32,100 km earth\nInland waterways:\n    NA km\nPipelines:\n    NA\nPorts:\n    none - landlocked\nMerchant marine:\n    none - landlocked\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA\nTelecommunications:\n    telephone network has 1.7 million lines, 15% of which are switched\n    automatically; Minsk has 450,000 lines; telephone density is approximately\n    17 per 100 persons; as of 31 January 1990, 721,000 applications from\n    households for telephones were still unsatisfied; international connections\n    to other former Soviet republics are by landline or microwave and to other\n    countries by leased connection through the Moscow international gateway\n    switch\n\n:Belarus Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops); CIS Forces (Ground,\n    Air, Air Defense, Strategic Rocket)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Belgium Geography\n\nTotal area:\n    30,510 km2\nLand area:\n    30,230 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    1,385 km total; France 620 km, Germany 167 km, Luxembourg 148 km,\n    Netherlands 450 km\nCoastline:\n    64 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Exclusive fishing zone:\n    equidistant line with neighbors (extends about 68 km from coast)\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate; mild winters, cool summers; rainy, humid, cloudy\nTerrain:\n    flat coastal plains in northwest, central rolling hills, rugged mountains of\n    Ardennes Forest in southeast\nNatural resources:\n    coal, natural gas\nLand use:\n    arable land 24%; permanent crops 1%; meadows and pastures 20%; forest and\n    woodland 21%; other 34%, includes irrigated NEGL%\nEnvironment:\n    air and water pollution\nNote:\n    majority of West European capitals within 1,000 km of Brussels; crossroads\n    of Western Europe; Brussels is the seat of the EC\n\n:Belgium People\n\nPopulation:\n    10,016,623 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 80 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Belgian(s); adjective - Belgian\nEthnic divisions:\n    Fleming 55%, Walloon 33%, mixed or other 12%\nReligions:\n    Roman Catholic 75%, remainder Protestant or other\nLanguages:\n    Flemish (Dutch) 56%, French 32%, German 1%; legally bilingual 11%; divided\n    along ethnic lines\nLiteracy:\n    99% (male 99%, female 99%) age 15 and over can read and write (1980 est.)\nLabor force:\n    4,126,000; services 63.6%, industry 28%, construction 6.1%, agriculture 2.3%\n    (1988)\nOrganized labor:\n    70% of labor force\n\n:Belgium Government\n\nLong-form name:\n    Kingdom of Belgium\nType:\n    constitutional monarchy\nCapital:\n    Brussels\nAdministrative divisions:\n    9 provinces (French - provinces, singular - province; Flemish - provincien,\n    singular - provincie); Antwerpen, Brabant, Hainaut, Liege, Limburg,\n    Luxembourg, Namur, Oost-Vlaanderen, West-Vlaanderen\nIndependence:\n    4 October 1830 (from the Netherlands)\nConstitution:\n    7 February 1831, last revised 8-9 August 1980; the government is in the\n    process of revising the Constitution with the aim of federalizing the\n    Belgian state\nLegal system:\n    civil law system influenced by English constitutional theory; judicial\n    review of legislative acts; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    National Day, 21 July (ascension of King Leopold to the throne in 1831)\nExecutive branch:\n    monarch, prime minister, three deputy prime ministers, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper chamber or Senate (Flemish -\n    Senaat, French - Senat) and a lower chamber or Chamber of Representatives\n    (Flemish - Kamer van Volksvertegenwoordigers, French - Chambre des\n    Representants)\nJudicial branch:\n    Supreme Court of Justice (Flemish - Hof van Cassatie, French - Cour de\n    Cassation)\nLeaders:\n  Chief of State:\n    King BAUDOUIN I (since 17 July 1951); Heir Apparent Prince ALBERT of Liege\n    (brother of the King; born 6 June 1934)\n  Head of Government:\n    Prime Minister Jean-Luc DEHAENE (since 6 March 1992)\nPolitical parties and leaders:\n    Flemish Social Christian (CVP), Herman van ROMPUY, president; Walloon Social\n    Christian (PSC) , Gerard DEPREZ, president; Flemish Socialist (SP), Frank\n    VANDENBROUCKE, president; Walloon Socialist (PS), NA; Flemish Liberal (PVV),\n    Guy VERHOF STADT, president; Walloon Liberal (PRL), Antoine DUQUESNE,\n    president; Francophone Democratic Front (FDF), Georges CLERFAYT, president;\n    Volksunie (VU), Jaak GABRIELS, president; Communist Party (PCB), Louis van\n    GEYT, president; Vlaams Blok (VB), Karel DILLEN, chairman; ROSSEM, Jean\n    Pierre VAN ROSSEM; National Front (FN), Werner van STEEN; Live Differently\n    (AGALEV), Leo COX; Ecologist (ECOLO), NA; other minor parties\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Chamber of Representatives:\n    last held 24 November 1991 (next to be held by November 1996); results -\n    percent of vote by party NA; seats - (212 total) number of seats by party NA\n  Senate:\n    last held 24 November 1991 (next to be held by November 1996); results -\n    percent of vote by party NA; seats - (106 total) number of seats by party NA\n\n:Belgium Government\n\nOther political or pressure groups:\n    Christian and Socialist Trade Unions; Federation of Belgian Industries;\n    numerous other associations representing bankers, manufacturers,\n    middle-class artisans, and the legal and medical professions; various\n    organizations represent the cultural interests of Flanders and Wallonia;\n    various peace groups such as the Flemish Action Committee Against Nuclear\n    Weapons and Pax Christi\nMember of:\n    ACCT, AfDB, AG, AsDB, Benelux, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, EC,\n    ECE, EIB, ESA, FAO, G-9, G-10, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU,\n    IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM,\n    ISO, ITU, LORCS, MTCR, NACC, NATO, NEA, OAS (observer), OECD, PCA, UN,\n    UNCTAD, UNESCO, UNHCR, UNIDO, UNMOGIP, UNRWA, UNTSO, UPU, WCL, WEU, WHO,\n    WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Juan CASSIERS; Chancery at 3330 Garfield Street NW, Washington,\n    DC 20008; telephone (202) 333-6900; there are Belgian Consulates General in\n    Atlanta, Chicago, Los Angeles, and New York\n  US:\n    Ambassador Bruce S. GELB; Embassy at 27 Boulevard du Regent, B-1000 Brussels\n    (mailing address is APO AE 09724); telephone [32] (2) 513-3830; FAX [32] (2)\n    511-2725; there is a US Consulate General in Antwerp\nFlag:\n    three equal vertical bands of black (hoist side), yellow, and red; the\n    design was based on the flag of France\n\n:Belgium Economy\n\nOverview:\n    This small private enterprise economy has capitalized on its central\n    geographic location, highly developed transport network, and diversified\n    industrial and commercial base. Industry is concentrated mainly in the\n    populous Flemish area in the north, although the government is encouraging\n    reinvestment in the southern region of Walloon. With few natural resources\n    Belgium must import essential raw materials, making its economy closely\n    dependent on the state of world markets. Over 70% of trade is with other EC\n    countries. During the period 1988-90, Belgium's economic performance was\n    marked by 4% average growth, moderate inflation, and a substantial external\n    surplus. Growth fell to 1.4% in 1991.\nGDP:\n    purchasing power equivalent - $171.8 billion, per capita $17,300; real\n    growth rate 1.4% (1991 est.)\nInflation rate (consumer prices):\n    3.2% (1991 est.)\nUnemployment rate:\n    9.4% est. (1991 est.)\nBudget:\n    revenues $45.0 billion; expenditures $55.3 billion, including capital\n    expenditures of NA (1989)\nExports:\n    $118 billion (f.o.b., 1990) Belgium-Luxembourg Economic Union\n  commodities:\n    iron and steel, transportation equipment, tractors, diamonds, petroleum\n    products\n  partners:\n    EC 74%, US 5%, former Communist countries 2% (1989)\nImports:\n    $120 billion (c.i.f., 1990) Belgium-Luxembourg Economic Union\n  commodities:\n    fuels, grains, chemicals, foodstuffs\n  partners:\n    EC 73%, US 4%, oil-exporting less developed countries 4%, former Communist\n    countries 3% (1989)\nExternal debt:\n    $28.8 billion (1990 est.)\nIndustrial production:\n    growth rate 1.2% (1991 est.); accounts for almost 30% of GDP\nElectricity:\n    17,400,000 kW capacity; 67,100 million kWh produced, 6,767 kWh per capita\n    (1991)\nIndustries:\n    engineering and metal products, processed food and beverages, chemicals,\n    basic metals, textiles, glass, petroleum, coal\nAgriculture:\n    accounts for 2.3% of GDP; emphasis on livestock production - beef, veal,\n    pork, milk; major crops are sugar beets, fresh vegetables, fruits, grain,\n    and tobacco; net importer of farm products\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $5.8 billion\nCurrency:\n    Belgian franc (plural - francs); 1 Belgian franc (BF) = 100 centimes\nExchange rates:\n    Belgian francs (BF) per US$1 - 32.462 (January 1992), 34.148 (1991), 33.418\n    (1990), 39.404 (1989), 36.768 (1988), 37.334 (1987)\nFiscal year:\n    calendar year\n\n:Belgium Communications\n\nRailroads:\n    Belgian National Railways (SNCB) operates 3,667 km 1.435-meter standard\n    gauge, government owned; 2,563 km double track; 1,978 km electrified; 191 km\n    1.000-meter gauge, government owned and operated\nHighways:\n    103,396 km total; 1,317 km limited access, divided autoroute; 11,717 km\n    national highway; 1,362 km provincial road; about 38,000 km paved and 51,000\n    km unpaved rural roads\nInland waterways:\n    2,043 km (1,528 km in regular commercial use)\nPipelines:\n    petroleum products 1,167 km; crude oil 161 km; natural gas 3,300 km\nPorts:\n    Antwerp, Brugge, Gent, Oostende, Zeebrugge\nMerchant marine:\n    23 ships (1,000 GRT or over) totaling 62,979 GRT/88,738 DWT; includes 10\n    cargo, 4 petroleum tanker, 1 liquefied gas, 5 chemical tanker, 1 bulk, 2\n    refrigerated cargo\nCivil air:\n    47 major transport aircraft\nAirports:\n    42 total, 42 usable; 24 with permanent-surface runways; none with runways\n    over 3,659 m; 14 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    highly developed, technologically advanced, and completely automated\n    domestic and international telephone and telegraph facilities; extensive\n    cable network; limited radio relay network; 4,720,000 telephones; broadcast\n    stations - 3 AM, 39 FM, 32 TV; 5 submarine cables; 2 satellite earth\n    stations - Atlantic Ocean INTELSAT and EUTELSAT systems; nationwide mobile\n    phone system\n\n:Belgium Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Gendarmerie\nManpower availability:\n    males 15-49, 2,550,088; 2,133,483 fit for military service; 66,249 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $4.2 billion, 2.7% of GDP (1991)\n\n:Belize Geography\n\nTotal area:\n    22,960 km2\nLand area:\n    22,800 km2\nComparative area:\n    slightly larger than Massachusetts\nLand boundaries:\n    516 km total; Guatemala 266 km, Mexico 250 km\nCoastline:\n    386 km\nMaritime claims:\n  Territorial sea:\n    12 nm in the north and 3 nm in the south; note - from the mouth of the\n    Sarstoon River to Ranguana Caye, Belize's territorial sea is 3 miles;\n    according to Belize's Maritime Areas Act, 1992, the purpose of this\n    limitation is to provide a framework for the negotiation of a definitive\n    agreement on territorial differences with the Republic of Guatemala''\nDisputes:\n    claimed by Guatemala, but boundary negotiations to resolve the dispute have\n    begun\nClimate:\n    tropical; very hot and humid; rainy season (May to February)\nTerrain:\n    flat, swampy coastal plain; low mountains in south\nNatural resources:\n    arable land potential, timber, fish\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 2%; forest and\n    woodland 44%; other 52%, includes irrigated NEGL%\nEnvironment:\n    frequent devastating hurricanes (September to December) and coastal flooding\n    (especially in south); deforestation\nNote:\n    national capital moved 80 km inland from Belize City to Belmopan because of\n    hurricanes; only country in Central America without a coastline on the North\n    Pacific Ocean\n\n:Belize People\n\nPopulation:\n    229,143 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    31 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    4 migrants/1,000 population (1992)\nInfant mortality rate:\n    30 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 73 years female (1992)\nTotal fertility rate:\n    3.8 children born/woman (1992)\nNationality:\n    noun - Belizean(s); adjective - Belizean\nEthnic divisions:\n    Creole 39.7%, Mestizo 33.1%, Maya 9.5%, Garifuna 7.6%, East Indian 2.1%,\n    other 8.0%\nReligions:\n    Roman Catholic 62%, Protestant 30% (Anglican 12%, Methodist 6%, Mennonite\n    4%, Seventh-Day Adventist 3%, Pentecostal 2%, Jehovah's Witnesses 1%, other\n    2%), none 2%, unknown 3%, other 3% (1980)\nLanguages:\n    English (official), Spanish, Maya, Garifuna (Carib)\nLiteracy:\n    91% (male 91%, female 91%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    51,500; agriculture 30.0%, services 16.0%, government 15.4%, commerce 11.2%,\n    manufacturing 10.3%; shortage of skilled labor and all types of technical\n    personnel (1985)\nOrganized labor:\n    12% of labor force; 7 unions currently active\n\n:Belize Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Belmopan\nAdministrative divisions:\n    6 districts; Belize, Cayo, Corozal, Orange Walk, Stann Creek, Toledo\nIndependence:\n    21 September 1981 (from UK; formerly British Honduras)\nConstitution:\n    21 September 1981\nLegal system:\n    English law\nNational holiday:\n    Independence Day, 21 September\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    bicameral National Assembly consists of an upper house or Senate and a lower\n    house or House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Dame Elmira Minita GORDON (since 21 September 1981)\n  Head of Government:\n    Prime Minister George Cadle PRICE (since 4 September 1989)\nPolitical parties and leaders:\n    People's United Party (PUP), George PRICE, Florencio MARIN, Said MUSA;\n    United Democratic Party (UDP), Manuel ESQUIVEL, Dean LINDO, Dean BARROW;\n    Belize Popular Party (BPP), Louis SYLVESTRE\nSuffrage:\n    universal at age 18\nElections:\n  National Assembly:\n    last held 4 September 1989 (next to be held September 1994); results -\n    percent of vote by party NA; seats - (28 total) PUP 15, UDP 13; note - in\n    January 1990 one member expelled from UDP joined PUP, making the seat count\n    PUP 16, UDP 12\nOther political or pressure groups:\n    Society for the Promotion of Education and Research (SPEAR) headed by former\n    PUP minister; United Workers Front\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, GATT, IBRD, ICO, IDA, IFAD, IFC,\n    ILO, IMF, IMO, INTERPOL, IOC, IOM (observer), ITU, LORCS, NAM, OAS, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WMO\nDiplomatic representation:\n    Ambassador James V. HYDE; Chancery at 2535 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 332-9636\n  US:\n    Ambassador Eugene L. SCASSA; Embassy at Gabourel Lane and Hutson Street,\n    Belize City (mailing address is P. O. Box 286, Belize City); telephone [501]\n    (2) 77161; FAX [501] (2) 30802\nFlag:\n    on a scroll at the bottom, all encircled by a green garland\n\n:Belize Government\n\n    blue with a narrow red stripe along the top and the bottom edges; centered\n    is a large white disk bearing the coat of arms; the coat of arms features a\n    shield flanked by two workers in front of a mahogany tree with the related\n    motto RA FLOREO (I Flourish in the Shade)\n\n:Belize Economy\n\nOverview:\n    The economy is based primarily on agriculture, agro-based industry, and\n    merchandising, with tourism and construction assuming increasing importance.\n    Agriculture accounts for about 30% of GDP and provides 75% of export\n    earnings, while sugar, the chief crop, accounts for almost 40% of hard\n    currency earnings. The US, Belize's main trading partner, is assisting in\n    efforts to reduce dependency on sugar with an agricultural diversification\n    program.\nGDP:\n    exchange rate conversion - $373 million, per capita $1,635; real growth rate\n    10% (1990 est.)\nInflation rate (consumer prices):\n    3.5% (1990 est.)\nUnemployment rate:\n    12% (1988)\nBudget:\n    revenues $126.8 million; expenditures $123.1 million, including capital\n    expenditures of $44.8 million (FY91 est.)\nExports:\n    $134 million (f.o.b., 1991 est.)\n  commodities:\n    sugar, clothing, seafood, molasses, citrus, wood and wood products\n  partners:\n    US 47%, UK, Trinidad and Tobago, Canada (1987)\nImports:\n    $194 million (c.i.f., 1991 est.)\n  commodities:\n    machinery and transportation equipment, food, manufactured goods, fuels,\n    chemicals, pharmaceuticals\n  partners:\n    US 56%, UK, Netherlands Antilles, Mexico (1991)\nExternal debt:\n    $142 million (December 1991)\nIndustrial production:\n    growth rate 9.7% (1989); accounts for 16% of GDP\nElectricity:\n    34,532 kW capacity; 90 million kWh produced, 395 kWh per capita (1991)\nIndustries:\n    garment production, citrus concentrates, sugar refining, rum, beverages,\n    tourism\nAgriculture:\n    accounts for 30% of GDP (including fish and forestry); commercial crops\n    include sugarcane, bananas, coca, citrus fruits; expanding output of lumber\n    and cultured shrimp; net importer of basic foods\nIllicit drugs:\n    an illicit producer of cannabis for the international drug trade;\n    eradication program cut marijuana production from 200 metric tons in 1987 to\n    about 50 metric tons in 1991; transshipment point for cocaine\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $104 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $215 million\nCurrency:\n    Belizean dollar (plural - dollars); 1 Belizean dollar (Bz$) = 100 cents\nExchange rates:\n    Belizean dollars (Bz$) per US$1 - 2.00 (fixed rate)\nFiscal year:\n    1 April - 31 March\n\n:Belize Communications\n\nHighways:\n    2,710 km total; 500 km paved, 1,600 km gravel, 300 km improved earth, and\n    310 km unimproved earth\nInland waterways:\n    825 km river network used by shallow-draft craft; seasonally navigable\nPorts:\n    Belize City; additional ports for shallow draught craft include Corozol,\n    Punta Gorda, Big Creek\nMerchant marine:\n    2 cargo ships (1,000 GRT or over) totaling 3,127 GRT/5,885 DWT\nCivil air:\n    2 major transport aircraft\nAirports:\n    44 total, 34 usable; 3 with permanent-surface runways; none with runways\n    over 2,439 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    8,650 telephones; above-average system based on radio relay; broadcast\n    stations - 6 AM, 5 FM, 1 TV, 1 shortwave; 1 Atlantic Ocean INTELSAT earth\n    station\n\n:Belize Defense Forces\n\nBranches:\n    British Forces Belize, Belize Defense Force (including Army, Navy, Air\n    Force, and Volunteer Guard)\nManpower availability:\n    males 15-49, 55,333; 33,040 fit for military service; 2,509 reach military\n    age (18) annually\nDefense expenditures:\n    exchange rate conversion - $4.8 million, 1.8% of GDP (FY91)\n\n:Benin Geography\n\nTotal area:\n    112,620 km2\nLand area:\n    110,620 km2\nComparative area:\n    slightly smaller than Pennsylvania\nLand boundaries:\n    1,989 km total; Burkina 306 km, Niger 266 km, Nigeria 773 km, Togo 644 km\nCoastline:\n    121 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid in south; semiarid in north\nTerrain:\n    mostly flat to undulating plain; some hills and low mountains\nNatural resources:\n    small offshore oil deposits, limestone, marble, timber\nLand use:\n    arable land 12%; permanent crops 4%; meadows and pastures 4%; forest and\n    woodland 35%; other 45%, includes irrigated NEGL%\nEnvironment:\n    hot, dry, dusty harmattan wind may affect north in winter; deforestation;\n    desertification\nNote:\n    recent droughts have severely affected marginal agriculture in north; no\n    natural harbors\n\n:Benin People\n\nPopulation:\n    4,997,599 (July 1992), growth rate 3.3% (1992)\nBirth rate:\n    49 births/1,000 population (1992)\nDeath rate:\n    15 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    115 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    49 years male, 53 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Beninese (singular and plural); adjective - Beninese\nEthnic divisions:\n    African 99% (42 ethnic groups, most important being Fon, Adja, Yoruba,\n    Bariba); Europeans 5,500\nReligions:\n    indigenous beliefs 70%, Muslim 15%, Christian 15%\nLanguages:\n    French (official); Fon and Yoruba most common vernaculars in south; at least\n    six major tribal languages in north\nLiteracy:\n    23% (male 32%, female 16%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,900,000 (1987); agriculture 60%, transport, commerce, and public services\n    38%, industry less than 2%; 49% of population of working age (1985)\nOrganized labor:\n    about 75% of wage earners\n\n:Benin Government\n\nLong-form name:\n    Republic of Benin\nType:\n    republic under multiparty democratic rule; dropped Marxism-Leninism December\n    1989; democratic reforms adopted February 1990; transition to multiparty\n    system completed 4 April 1991\nCapital:\n    Porto-Novo\nAdministrative divisions:\n    6 provinces; Atakora, Atlantique, Borgou, Mono, Oueme, Zou\nIndependence:\n    1 August 1960 (from France; formerly Dahomey)\nConstitution:\n    2 December 1990\nLegal system:\n    based on French civil law and customary law; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    National Day, 1 August (1990)\nExecutive branch:\n    president, cabinet\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State and Head of Government:\n    President Nicephore SOGLO (since 4 April 1991)\nPolitical parties and leaders:\n    Alliance of the Democratic Union for the Forces of Progress (UDFP), Timothee\n    ADANLIN; Movement for Democracy and Social Progress (MDPS), Jean-Roger\n    AHOYO; and the Union for Liberty and Development (ULD), Marcellin DEGBE;\n    Alliance of the National Party for Democracy and Development (PNDD) and the\n    Democratic Renewal Party (PRD), Pascal Chabi KAO; Alliance of the Social\n    Democratic Party (PSD) and the National Union for Solidarity and Progress\n    (UNSP), Bruno AMOUSSOU; Our Common Cause (NCC), Albert TEVOEDJRE; National\n    Rally for Democracy (RND), Joseph KEKE; Alliance of the National Movement\n    for Democracy and Development (MNDD), Bertin BORNA; Movement for Solidarity,\n    Union, and Progress (MSUP), Adebo ADENIYI; and Union for Democracy and\n    National Reconstruction (UDRN), Azaria FAKOREDE; Union for Democracy and\n    National Solidarity (UDS), Mama Amadou N'DIAYE; Assembly of Liberal\n    Democrats for National Reconstruction (RDL), Severin ADJOVI; Alliance of the\n    Alliance for Social Democracy (ASD), Robert DOSSOU, and Bloc for Social\n    Democracy (BSD), Michel MAGNIDE; Alliance of the Alliance for Democracy and\n    Progress (ADP), Akindes ADEKPEDJOU, and Democratic Union for Social Renewal\n    (UDRS), Bio Gado Seko N'GOYE; National Union for Democracy and Progress\n    (UNDP), Robert TAGNON; numerous other small parties\nSuffrage:\n    universal at age 18\nElections:\n  National Assembly:\n    last held 10 and 24 March 1991; results - percent of vote by party NA; seats\n    - (64 total) UDFP-MDPS-ULD 12, PNDD/PRD 9, PSD/UNSP 8, NCC 7, RND 7,\n    MNDD/MSUP/UDRN 6, UDS 5, RDL 4, ASD/BSD 3, ADP/UDRS 2, UNDP 1\n  President:\n    last held 10 and 24 March 1991; results - Nicephore SOGLO 68%, Mathieu\n    KEREKOU 32%\nCommunists:\n    Communist Party of Dahomey (PCD) remains active\n\n:Benin Government\n\nMember of:\n    ACCT, ACP, AfDB, CEAO, ECA, ECOWAS, Entente, FAO, FZ, G-77, GATT, IBRD,\n    ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU,\n    LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Candide AHOUANSOU; Chancery at 2737 Cathedral Avenue NW,\n    Washington, DC 20008; telephone (202) 232-6656\n  US:\n    Ambassador Harriet W. ISOM; Embassy at Rue Caporal Anani Bernard, Cotonou\n    (mailing address is B. P. 2012, Cotonou); telephone [229] 30-06-50,\n    30-05-13, 30-17-92; FAX [229] 30-14-39 and 30-19-74\nFlag:\n    two equal horizontal bands of yellow (top) and red with a vertical green\n    band on the hoist side\n\n:Benin Economy\n\nOverview:\n    Benin is one of the least developed countries in the world because of\n    limited natural resources and a poorly developed infrastructure. Agriculture\n    accounts for about 35% of GDP, employs about 60% of the labor force, and\n    generates a major share of foreign exchange earnings. The industrial sector\n    contributes only about 15% to GDP and employs 2% of the work force. Low\n    prices in recent years have kept down hard currency earnings from Benin's\n    major exports of agricultural products and crude oil.\nGDP:\n    exchange rate conversion - $2.0 billion, per capita $410; real growth rate\n    3% (1991)\nInflation rate (consumer prices):\n    3.0% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $194 million; expenditures $390 million, including capital\n    expenditures of $104 million (1990 est.)\nExports:\n    $263.3 million (f.o.b., 1990 est.)\n  commodities:\n    crude oil, cotton, palm products, cocoa\n  partners:\n    FRG 36%, France 16%, Spain 14%, Italy 8%, UK 4%\nImports:\n    $428 million (f.o.b., 1990 est.)\n  commodities:\n    foodstuffs, beverages, tobacco, petroleum products, intermediate goods,\n    capital goods, light consumer goods\n  partners:\n    France 34%, Netherlands 10%, Japan 7%, Italy 6%, US 4%\nExternal debt:\n    $1.0 billion (December 1990 est.)\nIndustrial production:\n    growth rate --0.7% (1988); accounts for 15% of GDP\nElectricity:\n    30,000 kW capacity; 25 million kWh produced, 5 kWh per capita (1991)\nIndustries:\n    textiles, cigarettes, construction materials, beverages, food production,\n    petroleum\nAgriculture:\n    small farms produce 90% of agricultural output; production is dominated by\n    food crops - corn, sorghum, cassava, beans, and rice; cash crops include\n    cotton, palm oil, and peanuts; poultry and livestock output has not kept up\n    with consumption\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $46 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,300 million; OPEC\n    bilateral aid (1979-89), $19 million; Communist countries (1970-89), $101\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Benin Communications\n\nRailroads:\n    578 km, all 1.000-meter gauge, single track\nHighways:\n    5,050 km total; 920 km paved, 2,600 laterite, 1,530 km improved earth\nInland waterways:\n    navigable along small sections, important only locally\nPorts:\n    Cotonou\nCivil air:\n    no major transport aircraft\nAirports:\n    6 total, 5 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of open wire, submarine cable, and radio relay; broadcast\n    stations - 2 AM, 2 FM, 2 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Benin Defense Forces\n\nBranches:\n    Armed Forces (including Army, Navy, Air Force), National Gendarmerie\nManpower availability:\n    eligible 15-49, 2,165,515; of the 1,031,738 males 15-49, 528,366 are fit for\n    military service; of the 1,133,777 females 15-49, 572,603 are fit for\n    military service; about 55,697 males and 53,786 females reach military age\n    (18) annually; both sexes are liable for military service\nDefense expenditures:\n    exchange rate conversion - $29 million, 1.7% of GDP (1988 est.)\n\n:Bermuda Geography\n\nTotal area:\n    50 km2\nLand area:\n    50 km2\nComparative area:\n    about 0.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    103 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nClimate:\n    subtropical; mild, humid; gales, strong winds common in winter\nTerrain:\n    low hills separated by fertile depressions\nNatural resources:\n    limestone, pleasant climate fostering tourism\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 20%; other 80%\nEnvironment:\n    ample rainfall, but no rivers or freshwater lakes; consists of about 360\n    small coral islands\nNote:\n    1,050 km east of North Carolina; some reclaimed land leased by US Government\n\n:Bermuda People\n\nPopulation:\n    60,213 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    13 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 77 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Bermudian(s); adjective - Bermudian\nEthnic divisions:\n    black 61%, white and other 39%\nReligions:\n    Anglican 37%, Roman Catholic 14%, African Methodist Episcopal (Zion) 10%,\n    Methodist 6%, Seventh-Day Adventist 5%, other 28%\nLanguages:\n    English\nLiteracy:\n    98% (male 98%, female 99%) age 15 and over can read and write (1970)\nLabor force:\n    32,000; clerical 25%, services 22%, laborers 21%, professional and technical\n    13%, administrative and managerial 10%, sales 7%, agriculture and fishing 2%\n    (1984)\nOrganized labor:\n    8,573 members (1985); largest union is Bermuda Industrial Union\n\n:Bermuda Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    Hamilton\nAdministrative divisions:\n    9 parishes and 2 municipalities*; Devonshire, Hamilton, Hamilton*, Paget,\n    Pembroke, Saint George*, Saint George's, Sandys, Smiths, Southampton,\n    Warwick\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    8 June 1968\nLegal system:\n    English law\nNational holiday:\n    Bermuda Day, 22 May\nExecutive branch:\n    British monarch, governor, deputy governor, premier, deputy premier,\n    Executive Council (cabinet)\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor Lord\n    David WADDINGTON\n  Head of Government:\n    Premier John William David SWAN (since January 1982)\nPolitical parties and leaders:\n    United Bermuda Party (UBP), John W. D. SWAN; Progressive Labor Party (PLP),\n    Frederick WADE; National Liberal Party (NLP), Gilbert DARRELL\nSuffrage:\n    universal at age 21\nElections:\n  House of Assembly:\n    last held 9 February 1989 (next to be held by February 1994); results -\n    percent of vote by party NA; seats - (40 total) UBP 23, PLP 15, NLP 1, other\n    1\nOther political or pressure groups:\n    Bermuda Industrial Union (BIU), headed by Ottiwell SIMMONS\nMember of:\n    CARICOM (observer), CCC, ICFTU, IOC\nDiplomatic representation:\n    as a dependent territory of the UK, Bermuda's interests in the US are\n    represented by the UK\n  US:\n    Consul General L. Ebersole GAINES; Consulate General at Crown Hill, 16\n    Middle Road, Devonshire, Hamilton (mailing address is P. O. Box HM325,\n    Hamilton HMBX; PSC 1002, FPO AE 09727-1002); telephone (809) 295-1342; FAX\n    (809) 295-1592\nFlag:\n    red with the flag of the UK in the upper hoist-side quadrant and the\n    Bermudian coat of arms (white and blue shield with a red lion holding a\n    scrolled shield showing the sinking of the ship Sea Venture off Bermuda in\n    1609) centered on the outer half of the flag\n\n:Bermuda Economy\n\nOverview:\n    Bermuda enjoys one of the highest per capita incomes in the world, having\n    successfully exploited its location by providing luxury tourist facilities\n    and financial services. The tourist industry attracts more than 90% of its\n    business from North America. The industrial sector is small, and agriculture\n    is severely limited by a lack of suitable land. About 80% of food needs are\n    imported.\nGDP:\n    purchasing power equivalent - $1.3 billion, per capita $22,400; real growth\n    rate 2.0% (1989 est.)\nInflation rate (consumer prices):\n    5.8% (June 1989, annual rate)\nUnemployment rate:\n    2.0% (1988)\nBudget:\n    revenues $361.6 million; expenditures $396.1 million, including capital\n    expenditures of $74.1 million (FY91 est.)\nExports:\n    $30 million (f.o.b., FY88)\n  commodities:\n    semitropical produce, light manufactures\n  partners:\n    US 25%, Italy 25%, UK 14%, Canada 5%, other 31%\nImports:\n    $420 million (c.i.f., FY88)\n  commodities:\n    fuel, foodstuffs, machinery\n  partners:\n    US 58%, Netherlands Antilles 9%, UK 8%, Canada 6%, Japan 5%, other 14%\nExternal debt:\n    NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    154,000 kW capacity; 504 million kWh produced, 8,625 kWh per capita (1991)\nIndustries:\n    tourism, finance, structural concrete products, paints, pharmaceuticals,\n    ship repairing\nAgriculture:\n    accounts for less than 1% of GDP; most basic foods must be imported;\n    produces bananas, vegetables, citrus fruits, flowers, dairy products\nEconomic aid:\n    US commitments, including Ex-Im (FY70-81), $34 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $277 million\nCurrency:\n    Bermudian dollar (plural - dollars); 1 Bermudian dollar (Bd$) = 100 cents\nExchange rates:\n    Bermudian dollar (Bd$) per US$1 - 1.0000 (fixed rate)\nFiscal year:\n    1 April - 31 March\n\n:Bermuda Communications\n\nHighways:\n    210 km public roads, all paved (about 400 km of private roads)\nPorts:\n    Freeport, Hamilton, Saint George\nMerchant marine:\n    73 ships (1,000 GRT or over) totaling 3,511,972 GRT/6,093,321 DWT; includes\n    4 cargo, 5 refrigerated cargo, 4 container, 7 roll-on/roll-off, 23 petroleum\n    tanker, 12 liquefied gas, 18 bulk; note - a flag of convenience registry\nCivil air:\n    16 major transport aircraft\nAirports:\n    1 with permanent-surface runways 2,440-3,659 m\nTelecommunications:\n    modern with fully automatic telephone system; 52,670 telephones; broadcast\n    stations - 5 AM, 3 FM, 2 TV; 3 submarine cables; 2 Atlantic Ocean INTELSAT\n    earth stations\n\n:Bermuda Defense Forces\n\nBranches:\n    Bermuda Regiment, Bermuda Police Force, Bermuda Reserve Constabulary\nNote:\n    defense is the responsibility of the UK\n\n:Bhutan Geography\n\nTotal area:\n    47,000 km2\nLand area:\n    47,000 km2\nComparative area:\n    slightly more than half the size of Indiana\nLand boundaries:\n    1,075 km; China 470 km, India 605 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    varies; tropical in southern plains; cool winters and hot summers in central\n    valleys; severe winters and cool summers in Himalayas\nTerrain:\n    mostly mountainous with some fertile valleys and savanna\nNatural resources:\n    timber, hydropower, gypsum, calcium carbide, tourism potential\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 5%; forest and\n    woodland 70%; other 23%\nEnvironment:\n    violent storms coming down from the Himalayas were the source of the country\n    name which translates as Land of the Thunder Dragon\nNote:\n    landlocked; strategic location between China and India; controls several key\n    Himalayan mountain passes\n\n:Bhutan People\n\nPopulation:\n    1,660,167 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    40 births/1,000 population (1992)\nDeath rate:\n    17 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    126 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    50 years male, 49 years female (1992)\nTotal fertility rate:\n    5.5 children born/woman (1992)\nNationality:\n    noun - Bhutanese (singular and plural); adjective - Bhutanese\nEthnic divisions:\n    Bhote 60%, ethnic Nepalese 25%, indigenous or migrant tribes 15%\nReligions:\n    Lamaistic Buddhism 75%, Indian- and Nepalese-influenced Hinduism 25%\nLanguages:\n    Bhotes speak various Tibetan dialects - most widely spoken dialect is\n    Dzongkha (official); Nepalese speak various Nepalese dialects\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA; agriculture 93%, services 5%, industry and commerce 2%; massive lack of\n    skilled labor\nOrganized labor:\n    not permitted\n\n:Bhutan Government\n\nLong-form name:\n    Kingdom of Bhutan\nType:\n    monarchy; special treaty relationship with India\nCapital:\n    Thimphu\nAdministrative divisions:\n    18 districts (dzongkhag, singular and plural); Bumthang, Chhukha, Chirang,\n    Daga, Geylegphug, Ha, Lhuntshi, Mongar, Paro, Pemagatsel, Punakha, Samchi,\n    Samdrup Jongkhar, Shemgang, Tashigang, Thimphu, Tongsa, Wangdi Phodrang\nIndependence:\n    8 August 1949 (from India)\nConstitution:\n    no written constitution or bill of rights\nLegal system:\n    based on Indian law and English common law; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    National Day (Ugyen Wangchuck became first hereditary king), 17 December\n    (1907)\nExecutive branch:\n    monarch, chairman of the Royal Advisory Council, Royal Advisory Council\n    (Lodoi Tsokde), chairman of the Council of Ministers, Council of Ministers\n    (Lhengye Shungtsog)\nLegislative branch:\n    unicameral National Assembly (Tshogdu)\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State and Head of Government:\n    King Jigme Singye WANGCHUCK (since 24 July 1972)\nPolitical parties and leaders:\n    no legal parties\nSuffrage:\n    each family has one vote in village-level elections\nElections:\n    no national elections\nCommunists:\n    no overt Communist presence\nOther political or pressure groups:\n    Buddhist clergy, Indian merchant community; ethnic Nepalese organizations\n    leading militant antigovernment campaign\nMember of:\n    AsDB, CP, ESCAP, FAO, G-77, IBRD, ICAO, IDA, IFAD, IMF, IOC, ITU, NAM,\n    SAARC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO\nDiplomatic representation:\n    no formal diplomatic relations, although informal contact is maintained\n    between the Bhutanese and US Embassies in New Delhi (India); the Bhutanese\n    mission to the UN in New York has consular jurisdiction in the US\nFlag:\n    divided diagonally from the lower hoist side corner; the upper triangle is\n    orange and the lower triangle is red; centered along the dividing line is a\n    large black and white dragon facing away from the hoist side\n\n:Bhutan Economy\n\nOverview:\n    The economy, one of the world's least developed, is based on agriculture and\n    forestry, which provide the main livelihood for 90% of the population and\n    account for about 50% of GDP. Rugged mountains dominate the terrain and make\n    the building of roads and other infrastructure difficult and expensive. The\n    economy is closely aligned with that of India through strong trade and\n    monetary links. Low wages in industry lead most Bhutanese to stay in\n    agriculture. Most development projects, such as road construction, rely on\n    Indian migrant labor. Bhutan's hydropower potential and its attraction for\n    tourists are its most important natural resources.\nGDP:\n    exchange rate conversion - $320 million, per capita $200; real growth rate\n    3.1% (1991 est.)\nInflation rate (consumer prices):\n    12% (FY90)\nUnemployment rate:\n    NA\nBudget:\n    revenues $112 million; expenditures $121 million, including capital\n    expenditures of $58 million (FY91 est.)\nExports:\n    $74 million (f.o.b., FY91)\n  commodities:\n    cardamon, gypsum, timber, handicrafts, cement, fruit\n  partners:\n    India 93%\nImports:\n    $106.4 million (c.i.f., FY91 est.)\n  commodities:\n    fuel and lubricants, grain, machinery and parts, vehicles, fabrics\n  partners:\n    India 67%\nExternal debt:\n    $80 million (FY91 est.)\nIndustrial production:\n    growth rate NA; accounts for 18% of GDP\nElectricity:\n    353,000 kW capacity; 2,000 million kWh produced, 1,280 kWh per capita (1990)\nIndustries:\n    cement, wood products, processed fruits, alcoholic beverages, calcium\n    carbide\nAgriculture:\n    accounts for 50% of GDP; based on subsistence farming and animal husbandry;\n    self-sufficient in food except for foodgrains; other production - rice,\n    corn, root crops, citrus fruit, dairy, and eggs\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $115 million; OPEC bilateral aid (1979-89), $11 million\nCurrency:\n    ngultrum (plural - ngultrum); 1 ngultrum (Nu) = 100 chetrum; note - Indian\n    currency is also legal tender\nExchange rates:\n    ngultrum (Nu) per US$1 - 25.927 (January 1992), 22.742 (1991), 17.504\n    (1990), 16.226 (1989), 13.917 (1988), 12.962 (1987); note - the Bhutanese\n    ngultrum is at par with the Indian rupee\nFiscal year:\n    1 July - 30 June\n\n:Bhutan Communications\n\nHighways:\n    1,304 km total; 418 km surfaced, 515 km improved, 371 km unimproved earth\nCivil air:\n    1 jet, 2 prop\nAirports:\n    2 total, 2 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    inadequate; 1,990 telephones (1988); 22,000 radios (1990 est.); 85 TVs\n    (1985); broadcast stations - 1 AM, 1 FM, no TV (1990)\n\n:Bhutan Defense Forces\n\nBranches:\n    Royal Bhutan Army, Palace Guard, Militia\nManpower availability:\n    males 15-49, 406,360; 217,348 fit for military service; 17,316 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Bolivia Geography\n\nTotal area:\n    1,098,580 km2\nLand area:\n    1,084,390 km2\nComparative area:\n    slightly less than three times the size of Montana\nLand boundaries:\n    6,743 km; Argentina 832 km, Brazil 3,400 km, Chile 861 km, Paraguay 750 km,\n    Peru 900 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    has wanted a sovereign corridor to the South Pacific Ocean since the Atacama\n    area was lost to Chile in 1884; dispute with Chile over Rio Lauca water\n    rights\nClimate:\n    varies with altitude; humid and tropical to cold and semiarid\nTerrain:\n    rugged Andes Mountains with a highland plateau (Altiplano), hills, lowland\n    plains of the Amazon basin\nNatural resources:\n    tin, natural gas, crude oil, zinc, tungsten, antimony, silver, iron ore,\n    lead, gold, timber\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 25%; forest and\n    woodland 52%; other 20%; includes irrigated NEGL%\nEnvironment:\n    cold, thin air of high plateau is obstacle to efficient fuel combustion;\n    overgrazing; soil erosion; desertification\nNote:\n    landlocked; shares control of Lago Titicaca, world's highest navigable lake,\n    with Peru\n\n:Bolivia People\n\nPopulation:\n    7,323,048 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    33 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    --1 migrant/1,000 population (1992)\nInfant mortality rate:\n    82 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    59 years male, 64 years female (1992)\nTotal fertility rate:\n    4.5 children born/woman (1992)\nNationality:\n    noun - Bolivian(s); adjective - Bolivian\nEthnic divisions:\n    Quechua 30%, Aymara 25%, mixed 25-30%, European 5-15%\nReligions:\n    Roman Catholic 95%; active Protestant minority, especially Evangelical\n    Methodist\nLanguages:\n    Spanish, Quechua, and Aymara (all official)\nLiteracy:\n    78% (male 85%, female 71%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,700,000; agriculture 50%, services and utilities 26%, manufacturing 10%,\n    mining 4%, other 10% (1983)\nOrganized labor:\n    150,000-200,000, concentrated in mining, industry, construction, and\n    transportation; mostly organized under Bolivian Workers' Central (COB) labor\n    federation\n\n:Bolivia Government\n\nLong-form name:\n    Republic of Bolivia\nType:\n    republic\nCapital:\n    La Paz (seat of government); Sucre (legal capital and seat of judiciary)\nAdministrative divisions:\n    9 departments (departamentos, singular - departamento); Chuquisaca,\n    Cochabamba, Beni, La Paz, Oruro, Pando, Potosi, Santa Cruz, Tarija\nIndependence:\n    6 August 1825 (from Spain)\nConstitution:\n    2 February 1967\nLegal system:\n    based on Spanish law and Code Napoleon; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Independence Day, 6 August (1825)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congreso Nacional) consists of an upper chamber\n    or Chamber of Senators (Camara de Senadores) and a lower chamber or Chamber\n    of Deputies (Camara de Diputados)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Jaime PAZ Zamora (since 6 August 1989); Vice President Luis OSSIO\n    Sanjines (since 6 August 1989)\nPolitical parties and leaders:\n    Movement of the Revolutionary Left (MIR), Jaime PAZ Zamora; Nationalist\n    Democratic Action (ADN), Hugo BANZER Suarez; Nationalist Revolutionary\n    Movement (MNR), Gonzalo SANCHEZ de Lozada; Civic Solidarity Union (UCS), Max\n    FERNANDEZ Rojas; Conscience of the Fatherland (CONDEPA), Carlos PALENQUE\n    Aviles; Christian Democratic Party (PDC), Jorge AGREDO; Free Bolivia\n    Movement (MBL), led by Antonio ARANIBAR; United Left (IU), a coalition of\n    leftist parties that includes Patriotic National Convergency Axis (EJE-P)\n    led by Walter DELGADILLO, and Bolivian Communist Party (PCB) led by Humberto\n    RAMIREZ; Revolutionary Vanguard - 9th of April (VR-9), Carlos SERRATE Reich\nSuffrage:\n    universal and compulsory at age 18 (married) or 21 (single)\nElections:\n  Chamber of Deputies:\n    last held 7 May 1989 (next to be held May 1993); results - percent of vote\n    by party NA; note - legislative and presidential candidates run on a unified\n    slate, so vote percentages are the same as in section on presidential\n    election results; seats - (130 total) MNR 40, ADN 35, MIR 33, IU 10, CONDEPA\n    9, PDC 3\n  Chamber of Senators:\n    last held 7 May 1989 (next to be held May 1993); results - percent of vote\n    by party NA; note - legislative and presidential candidates run on a unified\n    slate, so vote percentages are the same as in section on presidential\n    election results; seats - (27 total) MNR 9, ADN 7, MIR 8, CONDEPA 2, PDC 1\n\n:Bolivia Government\n\n  President:\n    last held 7 May 1989 (next to be held May 1993); results - Gonzalo SANCHEZ\n    de Lozada (MNR) 23%, Hugo BANZER Suarez (ADN) 22%, Jaime PAZ Zamora (MIR)\n    19%; no candidate received a majority of the popular vote; Jaime PAZ Zamora\n    (MIR) formed a coalition with Hugo BANZER (ADN); with ADN support PAZ Zamora\n    won the congressional runoff election on 4 August and was inaugurated on 6\n    August 1989\nMember of:\n    AG, ECLAC, FAO, G-11, G-77, IADB, IAEA, IBRD, ICO, IDA, IFAD, IFC, ILO, IMF,\n    IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES, LAIA, LORCS, NAM, OAS, OPANAL,\n    PCA, RG, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jorge CRESPO; Chancery at 3014 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 483-4410 through 4412; there are\n    Bolivian Consulates General in Los Angeles, Miami, New York, and San\n    Francisco\n  US:\n    Ambassador Charles R. BOWERS; Embassy at Banco Popular del Peru Building,\n    corner of Calles Mercado y Colon, La Paz (mailing address is P. O. Box 425,\n    La Paz, or APO AA 34032); telephone [591] (2) 350251 or 350120; FAX [591]\n    (2) 359875\nFlag:\n    three equal horizontal bands of red (top), yellow, and green with the coat\n    of arms centered on the yellow band; similar to the flag of Ghana, which has\n    a large black five-pointed star centered in the yellow band\n\n:Bolivia Economy\n\nOverview:\n    The Bolivian economy steadily deteriorated between 1980 and 1985 as La Paz\n    financed growing budget deficits by expanding the money supply, and\n    inflation spiraled - peaking at 11,700%. An austere orthodox economic\n    program adopted by then President Paz Estenssoro in 1985, however, succeeded\n    in reducing inflation to between 10% and 20% annually since 1987, eventually\n    restarting economic growth. Since August 1989, President Paz Zamora has\n    retained the economic policies of the previous government, keeping inflation\n    down and continuing moderate growth. Nevertheless, Bolivia continues to be\n    one of the poorest countries in Latin America, with widespread poverty and\n    unemployment, and it remains vulnerable to price fluctuations for its\n    limited exports - agricultural products, minerals, and natural gas.\n    Moreover, for many farmers, who constitute half of the country's work force,\n    the main cash crop is coca, which is sold for cocaine processing.\nGDP:\n    exchange rate conversion - $4.6 billion, per capita $630; real growth rate\n    4% (1991)\nInflation rate (consumer prices):\n    15% (1991)\nUnemployment rate:\n    7% (1991 est.)\nBudget:\n    revenues $900 million; expenditures $825 million, including capital\n    expenditures of $300 million (1991 est.)\nExports:\n    $970 million (f.o.b., 1991)\n  commodities:\n    metals 45%, natural gas 25%, other 30% (coffee, soybeans, sugar, cotton,\n    timber)\n  partners:\n    US 15%, Argentina\nImports:\n    $760 million (c.i.f., 1991)\n  commodities:\n    food, petroleum, consumer goods, capital goods\n  partners:\n    US 22%\nExternal debt:\n    $3.3 billion (December 1991)\nIndustrial production:\n    growth rate 6% (1991); accounts for almost 30% of GDP\nElectricity:\n    849,000 kW capacity; 1,798 million kWh produced, 251 kWh per capita (1991)\nIndustries:\n    mining, smelting, petroleum, food and beverage, tobacco, handicrafts,\n    clothing; illicit drug industry reportedly produces significant revenues\nAgriculture:\n    accounts for about 20% of GDP (including forestry and fisheries); principal\n    commodities - coffee, coca, cotton, corn, sugarcane, rice, potatoes, timber;\n    self-sufficient in food\nIllicit drugs:\n    world's second-largest producer of coca (after Peru) with an estimated\n    47,900 hectares under cultivation; voluntary and forced eradication program\n    unable to prevent production from rising to 78,400 metric tons in 1991 from\n    74,700 tons in 1989; government considers all but 12,000 hectares illicit;\n    intermediate coca products and cocaine exported to or through Colombia and\n    Brazil to the US and other international drug markets\n\n:Bolivia Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $990 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2,025 million;\n    Communist countries (1970-89), $340 million\nCurrency:\n    boliviano (plural - bolivianos); 1 boliviano ($B) = 100 centavos\nExchange rates:\n    bolivianos ($B) per US$1 - 3.7534 (January 1992), 3.5806 (1991), 3.1727\n    (1990), 2.6917 (1989), 2.3502 (1988), 2.0549 (1987)\nFiscal year:\n    calendar year\n\n:Bolivia Communications\n\nRailroads:\n    3,684 km total, all narrow gauge; 3,652 km 1.000-meter gauge and 32 km\n    0.760-meter gauge, all government owned, single track\nHighways:\n    38,836 km total; 1,300 km paved, 6,700 km gravel, 30,836 km improved and\n    unimproved earth\nInland waterways:\n    10,000 km of commercially navigable waterways\nPipelines:\n    crude oil 1,800 km; petroleum products 580 km; natural gas 1,495 km\nPorts:\n    none; maritime outlets are Arica and Antofagasta in Chile, Matarani and Ilo\n    in Peru\nMerchant marine:\n    2 cargo and 1 container ships (1,000 GRT or over) totaling 16,951 GRT/26,320\n    DWT\nCivil air:\n    56 major transport aircraft\nAirports:\n    1,105 total, 943 usable; 9 with permanent-surface runways; 2 with runways\n    over 3,659 m; 7 with runways 2,440-3,659 m; 146 with runways 1,220-2,439 m\nTelecommunications:\n    radio relay system being expanded; improved international services; 144,300\n    telephones; broadcast stations - 129 AM, no FM, 43 TV, 68 shortwave; 1\n    Atlantic Ocean INTELSAT earth station\n\n:Bolivia Defense Forces\n\nBranches:\n    Army, Navy (including Marines), Air Force, National Police Force\nManpower availability:\n    males 15-49, 1,727,101; 1,122,224 fit for military service; 72,977 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $80 million, 1.6% of GDP (1990 est).\n\n:Bosnia and Herzegovina Geography\n\nTotal area:\n    51,233 km2\nLand area:\n    51,233 km2\nComparative area:\n    slightly larger than Tennessee\nLand boundaries:\n    1,369 km; Croatia (northwest) 751 km, Croatia (south) 91 km, Serbia and\n    Montenegro 527 km\nCoastline:\n    20 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    20-meter depth\n  Exclusive economic zone:\n    12 nm\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Serbia and Croatia seek to cantonize Bosnia and Herzegovina; Muslim majority\n    being forced from many areas\nClimate:\n    hot summers and cold winters; areas of high elevation have short, cool\n    summers and long, severe winters; mild, rainy winters along coast\nTerrain:\n    mountains and valleys\nNatural resources:\n    coal, iron, bauxite, manganese, timber, wood products, copper, chromium,\n    lead, zinc\nLand use:\n    20% arable land; 2% permanent crops; 25% meadows and pastures; 36% forest\n    and woodland; 16% other; includes 1% irrigated\nEnvironment:\n    air pollution from metallurgical plants; water scarce; sites for disposing\n    of urban waste are limited; subject to frequent and destructive earthquakes\nNote:\n    Controls large percentage of important land routes from Western Europe to\n    Aegean Sea and Turkish Straits\n\n:Bosnia and Herzegovina People\n\nPopulation:\n    4,364,000 (July 1991), growth rate 0.5% (1991)\nBirth rate:\n    14.5 births/1,000 population (1991)\nDeath rate:\n    6.5 deaths/1,000 population (1991)\nNet migration rate:\n    NA migrants/1,000 population (1991)\nInfant mortality rate:\n    15.2 deaths/1,000 live births (1991)\nLife expectancy at birth:\n    68 years male, 73 years female (1980-82)\nTotal fertility rate:\n    NA children born/woman (1991)\nNationality:\n    noun - Muslim, Serb, Croat (s); adjective - Muslim, Serbian, Croatian\nEthnic divisions:\n    Muslim 44%, Serb 33%, Croat 17%\nReligions:\n    Slavic Muslim 40%, Orthodox 31%, Catholic 15%, Protestant 4%\nLanguages:\n    Serbo-Croatian 99%\nLiteracy:\n    85.5% (male 94.5%, female 76.7%) age 10 and over can read and write (1981\n    est.)\nLabor force:\n    1,026,254; 2% agriculture, industry, mining 45% (1991 est.)\nOrganized labor:\n    NA\n\n:Bosnia and Herzegovina Government\n\nLong-form name:\n    none\nType:\n    emerging democracy\nCapital:\n    Sarajevo\nAdministrative divisions:\n    NA\nIndependence:\n    December 1918; April 1992 from Yugoslavia\nConstitution:\n    NA\nLegal system:\n    based on civil law system\nNational holiday:\n    NA\nExecutive branch:\n    president, prime minister, deputy prime minister\nLegislative branch:\n    NA\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Alija IZETBEGOVIC (since December 1990), Vice President NA\n  Head of Government:\n    Prime Minister Jore PELIVAN (since January 1991), Deputy Prime Minister\n    Muhamed CENGIC and Rusmir MAHMUTCEHAJIC (since January 1991)\nPolitical parties and leaders:\n    Party of Democratic Action, Alija IZETBEGOVIC; Croatian Democratic Union,\n    Mate BOBAN; Serbian Democratic Party, Radovah KARADZIC; Muslim Bosnian\n    Organization, Muhamed Zulfikar PASIC; Socialist Democratic Party, Nijaz\n    DURAKOVIC\nSuffrage:\n    at age 16 if employed; universal at age 18\nElections:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE\nDiplomatic representation:\n    NA\nFlag:\n    NA\n\n:Bosnia and Herzegovina Economy\n\nOverview:\n    Bosnia and Herzegovina ranked next to Macedonia as the poorest component in\n    the old Yugoslav federation. Although agriculture has been almost all in\n    private hands, farms have been small and inefficient, and the republic\n    traditionally has been a net importer of food. Industry has been greatly\n    overstaffed, one reflection of the rigidities of Communist central planning\n    and management. Tito had pushed the development of military industries in\n    the republic with the result that Bosnia hosted a large share of\n    Yugoslavia's defense plants. As of April 1992, the newly independent\n    republic was being torn apart by bitter interethnic warfare that has caused\n    production to plummet, unemployment and inflation to soar, and human misery\n    to multiply. The survival of the republic as a political and economic unit\n    is in doubt. Both Serbia and Croatia have imposed various economic blockades\n    and may permanently take over large areas populated by fellow ethnic groups.\n    These areas contain most of the industry. If a much smaller core Muslim\n    state survives, it will share many Third World problems of poverty,\n    technological backwardness, and dependence on historically soft foreign\n    markets for its primary products. In these circumstances, other Muslim\n    countries might offer assistance.\nGDP:\n    $14 billion; real growth rate --37% (1991)\nInflation rate (consumer prices):\n    80% per month (1991)\nUnemployment rate:\n    28% (February 1992 est.)\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $NA million (19__)\nExports:\n    $2,054 million (1990)\n  commodities:\n    manufactured goods (31%), machinery and transport equipment (20.8%), raw\n    materials (18%), miscellaneous manufactured articles (17.3%), chemicals\n    (9.4%), fuel and lubricants (1.4%), food and live animals (1.2%)\n  partners:\n    principally the other former Yugoslav republics\nImports:\n    $1,891 million (1990)\n  commodities:\n    fuels and lubricants (32%), machinery and transport equipment (23.3%), other\n    manufactures (21.3%), chemicals (10%), raw materials (6.7%), food and live\n    animals (5.5%), beverages and tobacco (1.9%)\n  partners:\n    principally the other former Yugoslav republics\nExternal debt:\n    NA\nIndustrial production:\n    sharply down because of interethnic and interrepublic warfare (1991-92)\nElectricity:\n    14,400 million kW capacity; NA million kWh produced, 3,303 kWh per capita\n    (1991)\nIndustries:\n    steel production, mining (coal, iron ore, lead, zinc, manganese, and\n    bauxite), manufacturing (vehicle assembly, textiles, tobacco products,\n    wooden furniture, 40% of former Yugoslavia's armaments including tank and\n    aircraft assembly, domestic appliances), oil refining\n\n:Bosnia and Herzegovina Economy\n\nAgriculture:\n    accounted for 8.6% of national income in 1989; regularly produces less than\n    50% of food needs; the foothills of northern Bosnia support orchards,\n    vineyards, livestock, and some wheat and corn; long winters and heavy\n    precipitation leach soil fertility reducing agricultural output in the\n    mountains; farms are mostly privately held, small, and not very productive\nIllicit drugs:\n    NA\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    none; note - Croatian dinar used in ethnic Croat areas, Yugoslav dinar used\n    in all other areas\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Bosnia and Herzegovina Communications\n\nRailroads:\n    NA km all 1.000-meter gauge (includes NA km electrified)\nHighways:\n    21,168 km total (1991); 11,436 km paved, 8,146 km gravel, 1,586 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    crude oil 174 km, petroleum products NA km, natural gas NA km\nPorts:\n    maritime - none; inland - Bosanski Brod\nMerchant marine:\n    NA ships (1,000 GRT or over) totaling NA GRT/NA DWT; includes NA cargo, NA\n    container, NA liquefied gas, NA petroleum tanker\nCivil air:\n    NA major transport aircraft\nAirports:\n    2 main, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    Bosnia's telephone and telegraph network is in need of modernization and\n    expansion, many urban areas being below average compared with services in\n    other former Yugoslav republics; 727,000 telephones; broadcast stations - 9\n    AM, 2 FM, 6 (0 repeaters) TV; 840,000 radios; 1,012,094 TVs; NA submarine\n    coaxial cables; satellite ground stations - none\n\n:Bosnia and Herzegovina Defense Forces\n\nBranches:\n    Territorial Defense Force\nManpower availability:\n    males 15-49, NA; NA fit for military service; 39,000 reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Botswana Geography\n\nTotal area:\n    600,370 km2\nLand area:\n    585, 370 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    4,013 km; Namibia 1,360 km, South Africa 1,840 km, Zimbabwe 813 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    semiarid; warm winters and hot summers\nTerrain:\n    predominately flat to gently rolling tableland; Kalahari Desert in southwest\nNatural resources:\n    diamonds, copper, nickel, salt, soda, ash, potash, coal, iron ore, silver,\n    natural gas\nLand use:\n    urable land 2%; permanent crops 0%; meadows and pastures 75%; forest and\n    woodland 2%; other 21%; includes irrigated NEGL%\nEnvironment:\n    rains in early 1988 broke six years of drought that had severely affected\n    the important cattle industry; overgazing; desertification\nNote:\n    landlocked\n\n:Botswana People\n\nPopulation:\n    1,292,210 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    35 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    42 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    59 years male, 65 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun and ajective - Motswana (singular), Batswana (plural)\nEthnic divisions:\n    Batswana 95%; Kalanga, Basarwa, and Kgalagadi about 4%; white about 1%\nReligions:\n    indigenous beliefs 50%, Christian 50%\nLanguages:\n    English (official), Setswana\nLiteracy:\n    23% (male 32%, female 16%) age 15 and over can read and write (1990 est.)\nLabor force:\n    400,000; 198,500 formal sector employees, most others are engaged in cattle\n    raising and subsistence agriculture (1990 est.); 14,600 are employed in\n    various mines in South Africa (1990)\nOrganized labor:\n    19 trade unions\n\n:Botswana Government\n\nLong-form name:\n    Republic of Botswana\nType:\n    parliamentary republic\nCapital:\n    Gaborone\nAdministrative divisions:\n    10 districts: Central, Chobe, Ghanzi, Kgalagadi, Kgatleng, Kweneng,\n    Ngamiland, North-East, South-East, Southern; note - in addition, there may\n    now be 4 town councils named Francistown, Gaborone, Lobaste Selebi-Pikwe\nIndependence:\n    30 September 1966 (from UK; formerly Bechuanaland)\nConstitution:\n    March 1965, effective 30 September 1966\nLegal system:\n    based on Roman-Dutch law and local customary law; judicial review limited to\n    matters of interpretation; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 30 September (1966)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Assembly consists of an upper house or House of Chiefs\n    and a lower house or National Assembly\nJudicial branch:\n    High Court, Court of Appeal\nLeaders:\n  Chief of State and Head of Government:\n    President Quett K. J. MASIRE (since 13 July 1980); Vice President Peter S.\n    MMUSI (since 3 January 1983)\nPolitical parties and leaders:\n    Botswana Democratic Party (BDP), Quett MASIRE; Botswana National Front\n    (BNF), Kenneth KOMA; Boswana People's Party (BPP), Knight MARIPE; Botswana\n    Independence Party (BIP), Motsamai MPHO\nSuffrage:\n    universal at age 21\nElections:\n  National Assembly:\n    last held 7 October 1989 (next to be held October 1994); results - percent\n    of vote by party NA; seats - (38 total, 34 elected) BDP 35, BNF 3\n  President:\n    last held 7 October 1989 (next to be held October 1994); results - President\n    Quett K. J. MASIRE was reelected by the National Assembly\nCommunists:\n    no known Communist organization; Kenneth KOMA of BNF has long history of\n    Communist contacts\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, FLS, G-77, GATT, IBRD, ICAO, ICFTU, IDA, IFAD,\n    IFC, ILO, IMF, INTERPOL, IOC, ITU, LORCS, NAM, OAU, SACU, SADCC, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WCL, WHO, WMO\nDiplomatic representation:\n    Ambassador Botsweletse Kingsley SEBELE; Chancery at Suite 7M, 3400\n    International Drive NW, Washington, DC 20008; telephone (202) 244-4990 or\n    4991\n  US:\n    Ambassador Davie PASSAGE; Embassy at Gaborone (mailing address is P. O. Box\n    90, Gaborone); telephone [267] 353-982; FAX [267] 356-947\nFlag:\n    light blue with a horizontal white-edged black stripe in the center\n\n:Botswana Economy\n\nOverview:\n    The economy has historically been based on cattle raising and crops.\n    Agriculture today provides a livelihood for more than 80% of the population,\n    but produces only about 50% of food needs. The driving force behind the\n    rapid economic growth of the 1970s and 1980s has been the mining industry.\n    This sector, mostly on the strength of diamonds, has gone from generating\n    25% of GDP in 1980 to over 50% in 1989. No other sector has experienced such\n    growth, especially not agriculture, which is plagued by erratic rainfall and\n    poor soils. The unemployment rate remains a problem at 25%. Although diamond\n    production remained level in FY91, substantial gains in coal output and\n    manufacturing helped boost the economy\nGDP:\n    purchasing power equivalent - $3.6 billion, per capita $2,800; real growth\n    rate 6.3% (1991 est.)\nInflation rate (consumer prices):\n    12.6% (1991)\nUnemployment rate:\n    25% (1989)\nBudget:\n    revenues $1,935 million; expenditures $1,885 million, including capital\n    expenditures of $658 million (FY93)\nExports:\n    $1.8 billion (f.o.b. 1990)\n  commodities:\n    diamonds 80%, copper and nickel 9%, meat 4%, cattle, animal products\n  partners:\n    Switzerland, UK, SACU (Southern African Customs Union)\nImports:\n    $1.6 billion (c.i.f., 1990 est.)\n  commodities:\n    foodstuffs, vehicles and transport equipment, textiles, petroleum products\n  partners:\n    Switzerland, SACU (Southern African Customs Union), UK, US\nExternal debt:\n    $780 million (December 1990 est.)\nIndustrial production:\n    growth rate 16.8% (FY86); accounts for about 57% of GDP, including mining\nElectricity:\n    220,000 kW capacity; 630 million kWh produced 858 kWh per capita (1991)\nIndustries:\n    mining of diamonds, copper, nickel, coal, salt, soda ash, potash; livestock\n    processing\nAgriculture:\n    accounts for only 3% of DGP; subsistence farming predominates; cattle\n    raising supports 50% of the population; must import large share of food\n    needs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $257 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,875 million; OPEC\n    bilateral aid (1979-89), $43 million; Communist countries (1970-89), $29\n    million\nCurrency:\n    pula (plural - pula); 1 pula (P) = 100 thebe\nExchange rates:\n    pula (P) per US$1 - 2.1683 (March 1992), 2.0173 (1991), 1.8601 (1990),\n    2.0125 (1989), 1.8159 (1988), 1.6779 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Botswana Communications\n\nRailroads:\n    712 km 1.067-meter gauge\nHighways:\n    11,514 km total; 1,600 km paved; 1,700 km crushed stone or gravel, 5,177 km\n    improved earth, 3,037 km unimproved earth\nCivil air:\n    5 major transport aircraft\nAirports:\n    100 total, 87 unable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 27 with runways 1,220-2,439 m\nTelecommunications:\n    the small system is a combination of open-wire lines, radio relay links, and\n    a few radio-communications stations; 26,000 telephones; broadcast stations -\n    7 AM, 13 FM, no TV; 1 Indian Ocean INTELSAT earth station\n\n:Botswana Defense Forces\n\nBranches:\n    Botswana Defense Force (including Army and Air Wing); Botswana National\n    Police\nManpower availability:\n    males 15-49, 271,511; 142,947 fit for military service; 14,473 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $136.4 million, 4.4% of GDP (FY92)\n\n:Bouvet Island Geography\n\nTotal area:\n    58 km2\nLand area:\n    58 km2\nComparative area:\n    about 0.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    29.6 km\nMaritime claims:\n  Territorial sea:\n    4 nm\nDisputes:\n    none\nClimate:\n    antarctic\nTerrain:\n    volcanic; maximum elevation about 800 meters; coast is mostly inacessible\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100% (ice)\nEnvironment:\n    covered by glacial ice\nNote:\n    located in the South Atlantic Ocean 2,575 km south-southwest of the Cape of\n    Good Hope, South Africa\n\n:Bouvet Island People\n\nPopulation:\n    uninhabited\n\n:Bouvet Island Government\n\nLong-form name:\n    none\nType:\n    territory of Norway\nCapital:\n    none; administered from Oslo, Norway\n\n:Bouvet Island Economy\n\nOverview:\n    no economic activity\n\n:Bouvet Island Communications\n\nPorts:\n    none; offshore anchorage only\nTelecommunications:\n    automatic meteorological station\n\n:Bouvet Island Defense Forces\n\nNote:\n    defense is the responsibility of Norway\n\n:Brazil Geography\n\nTotal area:\n    8,511,965 km2\nLand area:\n    8,456,510 km2; includes Arquipelago de Fernando de Noronha, Atol das Rocas,\n    Ilha da Trindade, Ilhas Martin Vaz, and Penedos de Sao Pedro e Sao Paulo\nComparative area:\n    slightly smaller than the US\nLand boundaries:\n    14,691 km; Argentina 1,224 km, Bolivia 3,400 km, Colombia 1,643 km, French\n    Guiana 673 km, Guyana 1,119 km, Paraguay 1,290 km, Peru 1,560 km, Suriname\n    597 km, Uruguay 985 km, Venezuela 2,200 km\nCoastline:\n    7,491 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    200 nm\nDisputes:\n    short section of the boundary with Paraguay (just west of Guaira Falls on\n    the Rio Parana) is in dispute; two short sections of boundary with Uruguay\n    are in dispute (Arroyo de la Invernada area of the Rio Quarai and the\n    islands at the confluence of the Rio Quarai and the Uruguay)\nClimate:\n    mostly tropical, but temperate in south\nTerrain:\n    mostly flat to rolling lowlands in north; some plains, hills, mountains, and\n    narrow coastal belt\nNatural resources:\n    iron ore, manganese, bauxite, nickel, uranium, phosphates, tin, hydropower,\n    gold, platinum, crude oil, timber\nLand use:\n    arable land 7%; permanent crops 1%; meadows and pastures 19%; forest and\n    woodland 67%; other 6%; includes irrigated NEGL%\nEnvironment:\n    recurrent droughts in northeast; floods and frost in south; deforestation in\n    Amazon basin; air and water pollution in Rio de Janeiro and Sao Paulo\nNote:\n    largest country in South America; shares common boundaries with every South\n    American country except Chile and Ecuador\n\n:Brazil People\n\nPopulation:\n    158,202,019 (July 1992), growth rate 1.8% (1992)\nBirth rate:\n    25 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    67 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 69 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Brazilian(s); adjective - Brazilian\nEthnic divisions:\n    Portuguese, Italian, German, Japanese, black, Amerindian; white 55%, mixed\n    38%, black 6%, other 1%\nReligions:\n    Roman Catholic (nominal) 90%\nLanguages:\n    Portuguese (official), Spanish, English, French\nLiteracy:\n    81% (male 82%, female 80%) age 15 and over can read and write (1990 est.)\nLabor force:\n    57,000,000 (1989 est.); services 42%, agriculture 31%, industry 27%\nOrganized labor:\n    13,000,000 dues paying members (1989 est.)\n\n:Brazil Government\n\nLong-form name:\n    Federative Republic of Brazil\nType:\n    federal republic\nCapital:\n    Brasilia\nAdministrative divisions:\n    26 states (estados, singular - estado) and 1 federal district* (distrito\n    federal); Acre, Alagoas, Amapa, Amazonas, Bahia, Ceara, Distrito Federal*,\n    Espirito Santo, Goias, Maranhao, Mato Grosso, Mato Grosso do Sul, Minas\n    Gerais, Para, Paraiba, Parana, Pernambuco, Piaui, Rio de Janeiro, Rio Grande\n    do Norte, Rio Grande do Sul, Rondonia, Roraima, Santa Catarina, Sao Paulo,\n    Sergipe, Tocantins; note - the former territories of Amapa and Roraima\n    became states in January 1991\nIndependence:\n    7 September 1822 (from Portugal)\nConstitution:\n    5 October 1988\nLegal system:\n    based on Latin codes; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 7 September (1822)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congresso Nacional) consists of an upper\n    chamber or Federal Senate (Senado Federal) and a lower chamber or Chamber of\n    Deputies (Camara dos Deputados)\nJudicial branch:\n    Supreme Federal Tribunal\nLeaders:\n  Chief of State and Head of Government:\n    President Fernando Affonso COLLOR de Mello (since 15 March 1990); Vice\n    President Itamar FRANCO (since 15 March 1990)\nPolitical parties and leaders:\n    National Reconstruction Party (PRN), Daniel TOURINHO, president; Brazilian\n    Democratic Movement Party (PMDB), Orestes QUERCIA, president; Liberal Front\n    Party (PFL), Hugo NAPOLEAO, president; Workers' Party (PT), Luis Ignacio\n    (Lula) da SILVA, president; Brazilian Labor Party (PTB), Luiz GONZAGA de\n    Paiva Muniz, president; Democratic Labor Party (PDT), Leonel BRIZOLA,\n    president; Democratic Social Party (PPS), Paulo MALUF, president; Brazilian\n    Social Democracy Party (PSDB), Tasso JEREISSATI, president; Popular\n    Socialist Party (PPS), Roberto FREIRE, president; Communist Party of Brazil\n    (PCdoB), Joao AMAZONAS, secretary general; Christian Democratic Party (PDC),\n    Siqueira CAMPOS, president\nSuffrage:\n    voluntary at age 16; compulsory between ages 18 and 70; voluntary at age 70\nElections:\n  Chamber of Deputies:\n    last held 3 October 1990 (next to be held November 1994); results - PMDB\n    21%, PFL 17%, PDT 9%, PDS 8%, PRN 7.9%, PTB 7%, PT 7%, other 23.1%; seats -\n    (503 total as of 3 February 1991) PMDB 108, PFL 87, PDT 46, PDS 43, PRN 40,\n    PTB 35, PT 35, other 109\n  Federal Senate:\n    last held 3 October 1990 (next to be held November 1994); results - percent\n    of vote by party NA; seats - (81 total as of 3 February 1991) PMDB 27, PFL\n    15, PSDB 10, PTB 8, PDT 5, other 16\n\n:Brazil Government\n\n  President:\n    last held 15 November 1989, with runoff on 17 December 1989 (next to be held\n    November 1994); results - Fernando COLLOR de Mello 53%, Luis Inacio da SILVA\n    47%; note - first free, direct presidential election since 1960\nCommunists:\n    less than 30,000\nOther political or pressure groups:\n    left wing of the Catholic Church and labor unions allied to leftist Worker's\n    Party are critical of government's social and economic policies\nMember of:\n    AfDB, AG (observer), CCC, ECLAC, FAO, G-11, G-15, G-19, G-24, G-77, GATT,\n    IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU, LAES, LAIA, LORCS,\n    MERCOSUR, NAM (observer), OAS, OPANAL, PCA, RG, UN, UNAVEM, UNCTAD, UNESCO,\n    UNHCR, UNIDO, UPU, WCL, WHO, WFTU, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Rubens RICUPERO; Chancery at 3006 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 745-2700; there are Brazilian\n    Consulates General in Chicago, Los Angeles, Miami, New Orleans, and New\n    York, and Consulates in Dallas, Houston, and San Francisco\n  US:\n    Ambassador Richard MELTON; Embassy at Avenida das Nacoes, Lote 3, Brasilia,\n    Distrito Federal (mailing address is APO AA 34030); telephone [55] (61)\n    321-7272; FAX [55] (61) 225-9136; there are US Consulates General in Rio de\n    Janeiro and Sao Paulo, and Consulates in PortoAlegre and Recife\nFlag:\n    green with a large yellow diamond in the center bearing a blue celestial\n    globe with 23 white five-pointed stars (one for each state) arranged in the\n    same pattern as the night sky over Brazil; the globe has a white equatorial\n    band with the motto ORDEM E PROGRESSO (Order and Progress)\n\n:Brazil Economy\n\nOverview:\n    The economy, with large agrarian, mining, and manufacturing sectors, entered\n    the 1990s with declining real growth, runaway inflation, an unserviceable\n    foreign debt of $122 billion, and a lack of policy direction. In addition,\n    the economy remained highly regulated, inward-looking, and protected by\n    substantial trade and investment barriers. Ownership of major industrial and\n    mining facilities is divided among private interests - including several\n    multinationals - and the government. Most large agricultural holdings are\n    private, with the government channeling financing to this sector. Conflicts\n    between large landholders and landless peasants have produced intermittent\n    violence. The Collor government, which assumed office in March 1990, is\n    embarked on an ambitious reform program that seeks to modernize and\n    reinvigorate the economy by stabilizing prices, deregulating the economy,\n    and opening it to increased foreign competition. The government in December\n    1991 signed a letter of intent with the IMF for a 20-month standby loan.\n    Having reached an agreement on the repayment of interest arrears accumulated\n    during 1989 and 1990, Brazilian officials and commercial bankers are engaged\n    in talks on the reduction of medium- and long-term debt and debt service\n    payments and on the elimination of remaining interest arrears. A major\n    long-run strength is Brazil's vast natural resources.\nGDP:\n    exchange rate conversion - $358 billion, per capita $2,300; real growth rate\n    1.2% (1991)\nInflation rate (consumer prices):\n    478.5% (December 1991, annual rate)\nUnemployment rate:\n    4.3% (1991)\nBudget:\n    revenues $164.3 billion; expenditures $170.6 billion, including capital\n    expenditures of $32.9 billion (1990)\nExports:\n    $31.6 billion (1991)\n  commodities:\n    iron ore, soybean bran, orange juice, footwear, coffee\n  partners:\n    EC 31%, US 24%, Latin America 11%, Japan 8% (1990)\nImports:\n    $21.0 billion (1991)\n  commodities:\n    crude oil, capital goods, chemical products, foodstuffs, coal\n  partners:\n    Middle East and Africa 22%, US 21%, EC 21%, Latin America 18%, Japan 6%\n    (1990)\nExternal debt:\n    $118 billion (December 1991)\nIndustrial production:\n    growth rate--0.5% (1991); accounts for 39% of GDP\nElectricity:\n    58,500,000 kW capacity; 229,824 million kWh produced, 1,479 kWh per capita\n    (1991)\nIndustries:\n    textiles and other consumer goods, shoes, chemicals, cement, lumber, iron\n    ore, steel, motor vehicles and auto parts, metalworking, capital goods, tin\nAgriculture:\n    world's largest producer and exporter of coffee and orange juice concentrate\n    and second- largest exporter of soybeans; other products - rice, corn,\n    sugarcane, cocoa, beef; self-sufficient in food, except for wheat\n\n:Brazil Economy\n\nIllicit drugs:\n    illicit producer of cannabis and coca, mostly for domestic consumption;\n    government has a modest eradication program to control cannabis and coca\n    cultivation; important transshipment country for Bolivian and Colombian\n    cocaine headed for the US and Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $2.5 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $10.2 million; OPEC\n    bilateral aid (1979-89), $284 million; former Communist countries (1970-89),\n    $1.3 billion\nCurrency:\n    cruzeiro (plural - cruzeiros); 1 cruzeiro (Cr$) = 100 centavos\nExchange rates:\n    cruzeiros (Cr$) per US$1 - 1,197.38 (January 1992), 406.61 (1991), 68.300\n    (1990), 2.834 (1989), 0.26238 (1988), 0.03923 (1987)\nFiscal year:\n    calendar year\n\n:Brazil Communications\n\nRailroads:\n    28,828 km total; 24,864 km 1.000-meter gauge, 3,877 km 1.600-meter gauge, 74\n    km mixed 1.600-1.000-meter gauge, 13 km 0.760-meter gauge; 2,360 km\n    electrified\nHighways:\n    1,448,000 km total; 48,000 km paved, 1,400,000 km gravel or earth\nInland waterways:\n    50,000 km navigable\nPipelines:\n    crude oil 2,000 km; petroleum products 3,804 km; natural gas 1,095 km\nPorts:\n    Belem, Fortaleza, Ilheus, Manaus, Paranagua, Porto Alegre, Recife, Rio de\n    Janeiro, Rio Grande, Salvador, Santos\nMerchant marine:\n    245 ships (1,000 GRT or over) totaling 5,693,500 GRT/9,623,918 DWT; includes\n    3 passenger-cargo, 49 cargo, 1 refrigerated cargo, 13 container, 9\n    roll-on/roll-off, 57 petroleum tanker, 15 chemical tanker, 11 liquefied gas,\n    14 combination ore/oil, 71 bulk, 2 combination bulk; in addition, 2 naval\n    tankers and 4 military transport are sometimes used commercially\nCivil air:\n    198 major transport aircraft\nAirports:\n    3,563 total, 2,911 usable; 420 with permanent-surface runways; 2 with\n    runways over 3,659 m; 22 with runways 2,240-3,659 m; 550 with runways\n    1,220-2,439 m\nTelecommunications:\n    good system; extensive radio relay facilities; 9.86 million telephones;\n    broadcast stations - 1,223 AM, no FM, 112 TV, 151 shortwave; 3 coaxial\n    submarine cables, 3 Atlantic Ocean INTELSAT earth stations and 64 domestic\n    satellite earth stations\n\n:Brazil Defense Forces\n\nBranches:\n    Brazilian Army, Navy of Brazil (including Marines), Brazilian Air Force,\n    Military Police (paramilitary)\nManpower availability:\n    males 15-49, 41,515,103; 27,987,257 fit for military service; 1,644,571\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $1.1 billion, 0.3% of GDP (1990)\n\n:British Indian Ocean Territory Geography\n\nTotal area:\n    60 km2\nLand area:\n    60 km2; includes the island of Diego Garcia\nComparative area:\n    about 0.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    698 km\nMaritime claims:\n  Territorial sea:\n    UK announced establishment of 200-nm fishery zone in August 1991\nDisputes:\n    the entire Chagos Archipelago is claimed by Mauritius\nClimate:\n    tropical marine; hot, humid, moderated by trade winds\nTerrain:\n    flat and low (up to 4 meters in elevation)\nNatural resources:\n    coconuts, fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    archipelago of 2,300 islands\nNote:\n    Diego Garcia, largest and southernmost island, occupies strategic location\n    in central Indian Ocean; island is site of joint US-UK military facility\n\n:British Indian Ocean Territory People\n\nPopulation:\n    no permanent civilian population; formerly about 3,000 islanders\nEthnic divisions:\n    civilian inhabitants, known as the Ilois, evacuated to Mauritius before\n    construction of UK and US defense facilities\n\n:British Indian Ocean Territory Government\n\nLong-form name:\n    British Indian Ocean Territory (no short-form name); abbreviated BIOT\nType:\n    dependent territory of the UK\nCapital:\n    none\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Commissioner Mr. T. G. HARRIS; Administrator Mr. R. G. WELLS (since NA\n    1991); note - both reside in the UK\nDiplomatic representation:\n    none (dependent territory of UK)\nFlag:\n    white with the flag of the UK in the upper hoist-side quadrant and six blue\n    wavy horizontal stripes bearing a palm tree and yellow crown centered on the\n    outer half of the flag\n\n:British Indian Ocean Territory Economy\n\nOverview:\n    All economic activity is concentrated on the largest island of Diego Garcia,\n    where joint UK-US defense facilities are located. Construction projects and\n    various services needed to support the military installations are done by\n    military and contract employees from the UK and the US. There are no\n    industrial or agricultural activities on the islands.\nElectricity:\n    provided by the US military\n\n:British Indian Ocean Territory Communications\n\nHighways:\n    short stretch of paved road between port and airfield on Diego Garcia\nPorts:\n    Diego Garcia\nAirports:\n    1 with permanent-surface runways over 3,659 m on Diego Garcia\nTelecommunications:\n    minimal facilities; broadcast stations (operated by US Navy) - 1 AM, 1 FM, 1\n    TV; 1 Atlantic Ocean INTELSAT earth station\n\n:British Indian Ocean Territory Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:British Virgin Islands Geography\n\nTotal area:\n    150 km2\nLand area:\n    150 km2; includes the island of Anegada\nComparative area:\n    about 0.8 times the size of Washington, DC\nCoastline:\n    80 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    subtropical; humid; temperatures moderated by trade winds\nTerrain:\n    coral islands relatively flat; volcanic islands steep, hilly\nNatural resources:\n    negligible\nLand use:\n    arable land 20%; permanent crops 7%; meadows and pastures 33%; forest and\n    woodland 7%; other 33%\nEnvironment:\n    subject to hurricanes and tropical storms from July to October\nNote:\n    strong ties to nearby US Virgin Islands and Puerto Rico\n\n:British Virgin Islands People\n\nPopulation:\n    12,555 (July 1992), growth rate 1.2% (1992)\nBirth rate:\n    20 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    --2 migrants/1,000 population (1992)\nInfant mortality rate:\n    20 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 75 years female (1992)\nTotal fertility rate:\n    2.3 children born/woman (1992)\nNationality:\n    noun - British Virgin Islander(s); adjective - British Virgin Islander\nEthnic divisions:\n    over 90% black, remainder of white and Asian origin\nReligions:\n    Protestant 86% (Methodist 45%, Anglican 21%, Church of God 7%, Seventh-Day\n    Adventist 5%, Baptist 4%, Jehovah's Witnesses 2%, other 2%), Roman Catholic\n    6%, none 2%, other 6% (1981)\nLanguages:\n    English (official)\nLiteracy:\n    98% (male 98%, female 98%) age 15 and over can read and write (1970)\nLabor force:\n    4,911 (1980)\nOrganized labor:\n    NA% of labor force\n\n:British Virgin Islands Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    Road Town\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    1 June 1977\nLegal system:\n    English law\nNational holiday:\n    Territory Day, 1 July\nExecutive branch:\n    British monarch, governor, chief minister, Executive Council (cabinet)\nLegislative branch:\n    unicameral Legislative Council\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor P. A.\n    PENFOLD (since NA 1991)\n  Head of Government:\n    Chief Minister H. Lavity STOUTT (since NA 1986)\nPolitical parties and leaders:\n    United Party (UP), Conrad MADURO; Virgin Islands Party (VIP), H. Lavity\n    STOUTT; Independent Progressive Movement (IPM), Cyril B. ROMNEY\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Council:\n    last held 12 November 1990 (next to be held by November 1995); results -\n    percent of vote by party NA; seats - (9 total) VIP 6, IPM 1, independents 2\nMember of:\n    CARICOM (associate), CDB, ECLAC (associate), IOC, OECS, UNESCO (associate)\nDiplomatic representation:\n    none (dependent territory of UK)\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the Virgin\n    Islander coat of arms centered in the outer half of the flag; the coat of\n    arms depicts a woman flanked on either side by a vertical column of six oil\n    lamps above a scroll bearing the Latin word\n    VIGILATE (Be Watchful)\n\n:British Virgin Islands Economy\n\nOverview:\n    The economy, one of the most prosperous in the Caribbean area, is highly\n    dependent on the tourist industry, which generates about 21% of the national\n    income. In 1985 the government offered offshore registration to companies\n    wishing to incorporate in the islands, and, in consequence, incorporation\n    fees generated about $2 million in 1987. Livestock raising is the most\n    significant agricultural activity. The islands' crops, limited by poor\n    soils, are unable to meet food requirements.\nGDP:\n    purchasing power equivalent - $130 million, per capita $10,600; real growth\n    rate 6.3% (1990)\nInflation rate (consumer prices):\n    2.5% (1990 est.)\nUnemployment rate:\n    NEGL%\nBudget:\n    revenues $51 million; expenditures $88 million, including capital\n    expenditures of $38 million (1991)\nExports:\n    $2.7 million (f.o.b., 1988)\n  commodities:\n    rum, fresh fish, gravel, sand, fruits, animals\n  partners:\n    Virgin Islands (US), Puerto Rico, US\nImports:\n    $11.5 million (c.i.f., 1988)\n  commodities:\n    building materials, automobiles, foodstuffs, machinery\n  partners:\n    Virgin Islands (US), Puerto Rico, US\nExternal debt:\n    $4.5 million (1985)\nIndustrial production:\n    growth rate--4.0% (1985)\nElectricity:\n    10,500 kW capacity; 43 million kWh produced, 3,510 kWh per capita (1990)\nIndustries:\n    tourism, light industry, construction, rum, concrete block, offshore\n    financial center\nAgriculture:\n    livestock (including poultry), fish, fruit, vegetables\nEconomic aid:\n    NA\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 April - 31 March\n\n:British Virgin Islands Communications\n\nHighways:\n    106 km motorable roads (1983)\nPorts:\n    Road Town\nAirports:\n    3 total, 3 usable; 2 with permanent-surface runways less than 1,220 m\nTelecommunications:\n    3,000 telephones; worldwide external telephone service; submarine cable\n    communication links to Bermuda; broadcast stations - 1 AM, no FM, 1 TV\n\n:British Virgin Islands Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Brunei Geography\n\nTotal area:\n    5,770 km2\nLand area:\n    5,270 km2\nComparative area:\n    slightly larger than Delaware\nLand boundaries:\n    381 km; Malysia 381 km\nCoastline:\n    161 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    may wish to purchase the Malaysian salient that divides the country; all of\n    the Spratly Islands are claimed by China, Taiwan, and Vietnam; parts of them\n    are claimed by Malaysia and the Philippines; in 1984, Brunei established an\n    exclusive fishing zone that encompasses Louisa Reef, but has not publicly\n    claimed the island\nClimate:\n    tropical; hot, humid, rainy\nTerrain:\n    flat coastal plain rises to mountains in east; hilly lowland in west\nNatural resources:\n    crude oil, natural gas, timber\nLand use:\n    arable land 1%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 79%; other 18%; includes irrigated NEGL%\nEnvironment:\n    typhoons, earthquakes, and severe flooding are rare\nNote:\n    close to vital sea lanes through South China Sea linking Indian and Pacific\n    Oceans; two parts physically separated by Malaysia; almost an enclave of\n    Malaysia\n\n:Brunei People\n\nPopulation:\n    269,319 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    7 migrants/1,000 population (1992)\nInfant mortality rate:\n    26 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 73 years female (1992)\nTotal fertility rate:\n    3.5 children born/woman (1992)\nNationality:\n    noun - Bruneian(s); adjective - Bruneian\nEthnic divisions:\n    Malay 64%, Chinese 20%, other 16%\nReligions:\n    Muslim (official) 63%, Buddhism 14%, Christian 8%, indigenous beliefs and\n    other 15% (1981)\nLanguages:\n    Malay (official), English, and Chinese\nLiteracy:\n    77% (male 85%, female 69%) age 15 and over can read and write (1981)\nLabor force:\n    89,000 (includes members of the Army); 33% of labor force is foreign (1988);\n    government 47.5%; production of oil, natural gas, services, and construction\n    41.9%; agriculture, forestry, and fishing 3.8% (1986)\nOrganized labor:\n    2% of labor force\n\n:Brunei Government\n\nLong-form name:\n    Negara Brunei Darussalam\nType:\n    constitutional sultanate\nCapital:\n    Bandar Seri Begawan\nAdministrative divisions:\n    4 districts (daerah-daerah, singular - daerah); Belait, Brunei and Muara,\n    Temburong, Tutong\nIndependence:\n    1 January 1984 (from UK)\nConstitution:\n    29 September 1959 (some provisions suspended under a State of Emergency\n    since December 1962, others since independence on 1 January 1984)\nLegal system:\n    based on Islamic law\nNational holiday:\n    23 February (1984)\nExecutive branch:\n    sultan, prime minister, Council of Cabinet Ministers\nLegislative branch:\n    unicameral Legislative Council (Majlis Masyuarat Megeri)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    Sultan and Prime Minister His Majesty Paduka Seri Baginda Sultan Haji\n    HASSANAL Bolkiah Mu`izzaddin Waddaulah (since 5 October 1967)\nPolitical parties and leaders:\n    Brunei United National Party (inactive), Anak HASANUDDIN, chairman; Brunei\n    National Democratic Party (the first legal political party and now banned),\n    leader NA\nSuffrage:\n    none\nElections:\n  Legislative Council:\n    last held in March 1962; in 1970 the Council was changed to an appointive\n    body by decree of the sultan and no elections are planned\nMember of:\n    APEC, ASEAN, C, ESCAP, G-77, ICAO, IDB, IMO, INTERPOL, IOC, ISO\n    (correspondent), ITU, OIC, UN, UNCTAD, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador Mohamed KASSIM bin Haji Mohamed Daud; Chancery at 2600 Virginia\n    Avenue NW, Suite 3000, Washington, DC 20037; telephone (202) 342-0159\n  US:\n    Ambassador (vacant); Embassy at Third Floor, Teck Guan Plaza, Jalan Sultan,\n    American Embassy Box B, APO AP 96440; telephone [673] (2) 229-670; FAX [673]\n    (2) 225-293\nFlag:\n    yellow with two diagonal bands of white (top, almost double width) and black\n    starting from the upper hoist side; the national emblem in red is\n    superimposed at the center; the emblem includes a swallow-tailed flag on top\n    of a winged column within an upturned crescent above a scroll and flanked by\n    two upraised hands\n\n:Brunei Economy\n\nOverview:\n    The economy is a mixture of foreign and domestic entrepreneurship,\n    government regulation and welfare measures, and village tradition. It is\n    almost totally supported by exports of crude oil and natural gas, with\n    revenues from the petroleum sector accounting for more than 50% of GDP. Per\n    capita GDP of $8,800 is among the highest in the Third World, and\n    substantial income from overseas investment supplements domestic production.\n    The government provides for all medical services and subsidizes food and\n    housing.\nGDP:\n    exchange rate conversion - $3.5 billion, per capita $8,800; real growth rate\n    1% (1990 est.)\nInflation rate (consumer prices):\n    1.3% (1989)\nUnemployment rate:\n    3.7%, shortage of skilled labor (1989)\nBudget:\n    revenues $1.3 billion; expenditures $1.5 billion, including capital\n    expenditures of $255 million (1989 est.)\nExports:\n    $2.2 billion (f.o.b., 1990 est.)\n  commodities:\n    crude oil, liquefied natural gas, petroleum products\n  partners:\n    Japan 53%, UK 12%, South Korea 9%, Thailand 7%, Singapore 5% (1990)\nImports:\n    $1.7 billion (c.i.f., 1990 est.)\n  commodities:\n    machinery and transport equipment, manufactured goods, food, chemicals\n  partners:\n    Singapore 35%, UK 26%, Switzerland 9%, US 9%, Japan 5% (1990)\nExternal debt:\n    none\nIndustrial production:\n    growth rate 12.9% (1987); accounts for 52.4% of GDP\nElectricity:\n    310,000 kW capacity; 890 million kWh produced, 2,400 kWh per capita (1990)\nIndustries:\n    petroleum, petroleum refining, liquefied natural gas, construction\nAgriculture:\n    imports about 80% of its food needs; principal crops and livestock include\n    rice, cassava, bananas, buffaloes, and pigs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $20.6 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $153 million\nCurrency:\n    Bruneian dollar (plural - dollars); 1 Bruneian dollar (B$) = 100 cents\nExchange rates:\n    Bruneian dollars (B$) per US$1 - 1.7454 (January 1991), 1.8125 (1990),\n    1.9503 (1989), 2.0124 (1988), 2.1060 (1987), 2.1774 (1986); note - the\n    Bruneian dollar is at par with the Singapore dollar\nFiscal year:\n    calendar year\n\n:Brunei Communications\n\nRailroads:\n    13 km 0.610-meter narrow-gauge private line\nHighways:\n    1,090 km total; 370 km paved (bituminous treated) and another 52 km under\n    construction, 720 km gravel or unimproved\nInland waterways:\n    209 km; navigable by craft drawing less than 1.2 meters\nPipelines:\n    crude oil 135 km; petroleum products 418 km; natural gas 920 km\nPorts:\n    Kuala Belait, Muara\nMerchant marine:\n    7 liquefied gas carriers (1,000 GRT or over) totaling 348,476 GRT/340,635\n    DWT\nCivil air:\n    4 major transport aircraft (3 Boeing 757-200, 1 Boeing 737-200)\nAirports:\n    2 total, 2 usable; 1 with permanent-surface runways; 1 with runway over\n    3,659 m; 1 with runway 1,406 m\nTelecommunications:\n    service throughout country is adequate for present needs; international\n    service good to adjacent Malaysia; radiobroadcast coverage good; 33,000\n    telephones (1987); broadcast stations - 4 AM/FM, 1 TV; 74,000 radio\n    receivers (1987); satellite earth stations - 1 Indian Ocean INTELSAT and 1\n    Pacific Ocean INTELSAT\n\n:Brunei Defense Forces\n\nBranches:\n    Ground Forces, Navy, Air Force, and Royal Brunei Police\nManpower availability:\n    males 15-49, 75,330; 43,969 fit for military service; 2,595 reach military\n    age (18) annually\nDefense expenditures:\n    exchange rate conversion - $233.1 million, 7.1% of GDP (1988)\n\n:Bulgaria Geography\n\nTotal area:\n    110,910 km2\nLand area:\n    110,550 km2\nComparative area:\n    slightly larger than Tennessee\nLand boundaries:\n    1,881 km; Greece 494 km, Macedonia 148 km, Romania 608 km, Serbia and\n    Montenegro 318 km, Turkey 240 km\nCoastline:\n    354 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Macedonia question with Greece and Macedonia\nClimate:\n    temperate; cold, damp winters; hot, dry summers\nTerrain:\n    mostly mountains with lowlands in north and south\nNatural resources:\n    bauxite, copper, lead, zinc, coal, timber, arable land\nLand use:\n    arable land 34%; permanent crops 3%; meadows and pastures 18%; forest and\n    woodland 35%; other 10%; includes irrigated 11%\nEnvironment:\n    subject to earthquakes, landslides; deforestation; air pollution\nNote:\n    strategic location near Turkish Straits; controls key land routes from\n    Europe to Middle East and Asia\n\n:Bulgaria People\n\nPopulation:\n    8,869,161 (July 1992), growth rate --0.5% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    --5 migrants/1,000 population (1992)\nInfant mortality rate:\n    13 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 76 years female (1992)\nTotal fertility rate:\n    1.7 children born/woman (1992)\nNationality:\n    noun - Bulgarian(s); adjective - Bulgarian\nEthnic divisions:\n    Bulgarian 85.3%, Turk 8.5%, Gypsy 2.6%, Macedonian 2.5%, Armenian 0.3%,\n    Russian 0.2%, other 0.6%\nReligions:\n    Bulgarian Orthodox 85%; Muslim 13%; Jewish 0.8%; Roman Catholic 0.5%; Uniate\n    Catholic 0.2%; Protestant, Gregorian-Armenian, and other 0.5%\nLanguages:\n    Bulgarian; secondary languages closely correspond to ethnic breakdown\nLiteracy:\n    93% (male NA%, female NA%) age 15 and over can read and write (1970 est.)\nLabor force:\n    4,300,000; industry 33%, agriculture 20%, other 47% (1987)\nOrganized labor:\n    Confederation of Independent Trade Unions of Bulgaria (KNSB); Edinstvo\n    (Unity) People's Trade Union (splinter confederation from KNSB); Podkrepa\n    (Support) Labor Confederation, legally registered in January 1990\n\n:Bulgaria Government\n\nLong-form name:\n    Republic of Bulgaria\nType:\n    emerging democracy, diminishing Communist Party influence\nCapital:\n    Sofia\nAdministrative divisions:\n    9 provinces (oblasti, singular - oblast); Burgas, Grad Sofiya, Khaskovo,\n    Lovech, Mikhaylovgrad, Plovdiv, Razgrad, Sofiya, Varna\nIndependence:\n    22 September 1908 (from Ottoman Empire)\nConstitution:\n    adopted 12 July 1991\nLegal system:\n    based on civil law system, with Soviet law influence; has accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    3 March (1878)\nExecutive branch:\n    president, chairman of the Council of Ministers (premier), two deputy\n    chairmen of the Council of Ministers, Council of Ministers\nLegislative branch:\n    unicameral National Assembly (Narodno Sobranie)\nJudicial branch:\n    Supreme Court; Constitutional Court\nLeaders:\n  Chief of State:\n    President Zhelyu ZHELEV (since 1 August 1990)\n  Head of Government:\n    Chairman of the Council of Ministers (Premier) Filip DIMITROV (since 8\n    November 1991); Deputy Chairman of the Council of Ministers (Deputy Prime\n    Minister) Stoyan GANEV (since 8 November 1991); Deputy Chairman of the\n    Council of Ministers Nikolay VASILEV (since 8 November 1991)\nPolitical parties and leaders:\n  government:\n    Union of Democratic Forces (UDF), Filip DIMITROV, chairman, consisting of\n    United Democratic Center, Democratic Party, Radical Democratic Party,\n    Christian Democratic Union, Alternative Social Liberal Party, Republican\n    Party, Civic Initiative Movement, Union of the Repressed, and about a dozen\n    other groups; Movement for Rights and Freedoms (pro-Muslim party) (MRF),\n    Ahmed DOGAN, chairman, supports UDF but not officially in coalition with it\n  opposition:\n    Bulgarian Socialist Party (BSP), formerly Bulgarian Communist Party (BCP),\n    Zhan VIDENOV, chairman\nSuffrage:\n    universalandcompulsoryatage 18\nElections:\n  National Assembly:\n    last held 13 October 1991; results - BSP 33%, UDF 34%, MRF 7.5%; seats -\n    (240 total) BSP 106, UDF 110, Movement for Rights and Freedoms 24\n  President:\n    last held 12 January 1992; second round held 19 January 1992; results -\n    Zhelyu ZHELEV was elected by popular vote\nCommunists:\n    Bulgarian Socialist Party (BSP), formerly Bulgarian Communist Party (BCP),\n    501,793 members; several small Communist parties\n\n:Bulgaria Government\n\nOther political or pressure groups:\n    Ecoglasnost; Podkrepa (Support) Labor Confederation; Fatherland Union;\n    Bulgarian Democratic Youth (formerly Communist Youth Union); Confederation\n    of Independent Trade Unions of Bulgaria (KNSB); Nationwide Committee for\n    Defense of National Interests; Peasant Youth League; Bulgarian Agrarian\n    National Union - United (BZNS); Bulgarian Democratic Center; \"Nikola Petkov\"\n    Bulgarian Agrarian National Union; Internal Macedonian Revolutionary\n    Organization - Union of Macedonian Societies (IMRO-UMS); numerous regional,\n    ethnic, and national interest groups with various agendas\nMember of:\n    BIS, CCC, CE, CSCE, EBRD, ECE, FAO, G-9, IAEA, IBRD, ICAO, ICFTU, IIB, ILO,\n    IMF, IMO, INMARSAT, IOC, ISO, ITU, LORCS, NACC, NSG, PCA, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Ognyan PISHEV; Chancery at 1621 22nd Street NW, Washington, DC\n    20008; telephone (202) 387-7969\n  US:\n    Ambassador Hugh Kenneth HILL; Embassy at 1 Alexander Stamboliski Boulevard,\n    Sofia (mailing address is APO AE 09213-5740); telephone [359] (2) 88-48-01\n    through 05; Embassy has no FAX machine\nFlag:\n    three equal horizontal bands of white (top), green, and red; the national\n    emblem formerly on the hoist side of the white stripe has been removed - it\n    contained a rampant lion within a wreath of wheat ears below a red\n    five-pointed star and above a ribbon bearing the dates 681 (first Bulgarian\n    state established) and 1944 (liberation from Nazi control)\n\n:Bulgaria Economy\n\nOverview:\n    Growth in the lackluster Bulgarian economy fell to the 2% annual level in\n    the 1980s. By 1990, Sofia's foreign debt had skyrocketed to over $10 billion\n    - giving a debt-service ratio of more than 40% of hard currency earnings and\n    leading the regime to declare a moratorium on its hard currency payments.\n    The post-Communist government faces major problems of renovating an aging\n    industrial plant; coping with worsening energy, food, and consumer goods\n    shortages; keeping abreast of rapidly unfolding technological developments;\n    investing in additional energy capacity (the portion of electric power from\n    nuclear energy reached over one-third in 1990); and motivating workers, in\n    part by giving them a share in the earnings of their enterprises. Bulgaria's\n    new government, led by Prime Minister Filip Dimitrov, is strongly committed\n    to economic reform. The previous government, even though dominated by former\n    Communists, had taken the first steps toward dismantling the central\n    planning system, bringing the economy back into balance, and reducing\n    inflationary pressures. The program produced some encouraging early results,\n    including eased restrictions on foreign investment, increased support from\n    international financial institutions, and liberalized currency trading.\n    Small entrepreneurs have begun to emerge and some privatization of small\n    enterprises has taken place. The government has passed bills to privatize\n    large state-owned enterprises and reform the banking system. Negotiations on\n    an association agreement with the EC began in late 1991.\nGNP:\n    purchasing power equivalent - $36.4 billion, per capita $4,100; real growth\n    rate --22% (1991 est.)\nInflation rate (consumer prices):\n    420% (1991 est.)\nUnemployment rate:\n    10% (1991 est.)\nBudget:\n    revenues NA; expenditures NA, including capital expenditures of $NA billion\n    (1991)\nExports:\n    $8.4 billion (f.o.b., 1990)\n  commodities:\n    machinery and equipment 55.3%; agricultural products 15.0%; manufactured\n    consumer goods 10.0%; fuels, minerals, raw materials, and metals 18.4%;\n    other 1.3% (1990)\n  partners:\n    former CMEA countries 70.6% (USSR 56.2%, Czechoslovakia 3.9%, Poland 2.5%);\n    developed countries 13.6% (Germany 2.1%, Greece 1.2%); less developed\n    countries 13.1% (Libya 5.8%, Iran 0.5%) (1990)\nImports:\n    $9.6 billion (f.o.b., 1990)\n  commodities:\n    fuels, minerals, and raw materials 43.7%; machinery and equipment 45.2%;\n    manufactured consumer goods 6.7%; agricultural products 3.8%; other 0.6%\n  partners:\n    former CMEA countries 70.9% (former USSR 52.7%, Poland 4.1%); developed\n    countries 20.2% (Germany 5.0%, Austria 2.1%); less developed countries 7.2%\n    (Libya 2.0%, Iran 0.7%)\nExternal debt:\n    $11.2 billion (1991)\nIndustrial production:\n    growth rate --14.7% (1990); accounts for about 37% of GNP (1990)\nElectricity:\n    11,500,000 kW capacity; 45,000 million kWh produced, 5,040 kWh per capita\n    (1990)\n\n:Bulgaria Economy\n\nIndustries:\n    machine building and metal working, food processing, chemicals, textiles,\n    building materials, ferrous and nonferrous metals\nAgriculture:\n    accounts for 22% of GNP (1990); climate and soil conditions support\n    livestock raising and the growing of various grain crops, oilseeds,\n    vegetables, fruits, and tobacco; more than one-third of the arable land\n    devoted to grain; world's fourth-largest tobacco exporter; surplus food\n    producer\nIllicit drugs:\n    transshipment point for southwest Asian heroin transiting the Balkan route\nEconomic aid:\n    donor - $1.6 billion in bilateral aid to non-Communist less developed\n    countries (1956-89)\nCurrency:\n    lev (plural - leva); 1 lev (Lv) = 100 stotinki\nExchange rates:\n    leva (Lv) per US$1 - 17.18 (1 January 1992), 16.13 (March 1991), 0.7446\n    (November 1990), 0.84 (1989), 0.82 (1988), 0.90 (1987); note - floating\n    exchange rate since February 1991\nFiscal year:\n    calendar year\n\n:Bulgaria Communications\n\nRailroads:\n    4,300 km total, all government owned (1987); 4,055 km 1.435-meter standard\n    gauge, 245 km narrow gauge; 917 km double track; 2,510 km electrified\nHighways:\n    36,908 km total; 33,535 km hard surface (including 242 km superhighways);\n    3,373 km earth roads (1987)\nInland waterways:\n    470 km (1987)\nPipelines:\n    crude oil 193 km; petroleum products 418 km; natural gas 1,400 km (1986)\nPorts:\n    Burgas, Varna, Varna West; river ports are Ruse, Vidin, and Lom on the\n    Danube\nMerchant marine:\n    110 ships (1,000 GRT and over) totaling 1,234,657 GRT/1,847,759 DWT;\n    includes 2 short-sea passenger, 30 cargo, 2 container, 1 passenger-cargo\n    training, 6 roll-on/roll-off, 15 petroleum tanker, 4 chemical carrier, 2\n    railcar carrier, 48 bulk; Bulgaria owns 1 ship (1,000 GRT or over) totaling\n    8,717 DWT operating under Liberian registry\nCivil air:\n    86 major transport aircraft\nAirports:\n    380 total, 380 usable; about 120 with permanent-surface runways; 20 with\n    runways 2,440-3,659 m; 20 with runways 1,220-2,439 m\nTelecommunications:\n    extensive radio relay; 2.5 million telephones; direct dialing to 36\n    countries; phone density is 25 phones per 100 persons; 67% of Sofia\n    households now have a phone (November 1988); broadcast stations - 20 AM, 15\n    FM, and 29 TV, with 1 Soviet TV repeater in Sofia; 2.1 million TV sets\n    (1990); 92% of country receives No. 1 television program (May 1990); 1\n    satellite ground station using Intersputnik; INTELSAT is used through a\n    Greek earth station\n\n:Bulgaria Defense Forces\n\nBranches:\n    Army, Navy, Air and Air Defense Forces, Frontier Troops, Internal Troops\nManpower availability:\n    males 15-49, 2,181,421; 1,823,678 fit for military service; 65,942 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - 4.413 billion leva, 4.4% of GNP (1991); note -\n    conversion of defense expenditures into US dollars using the current\n    exchange rate could produce misleading results\n\n:Burkina Geography\n\nTotal area:\n    274,200 km2\nLand area:\n    273,800 km2\nComparative area:\n    slightly larger than Colorado\nLand boundaries:\n    3,192 km; Benin 306 km, Ghana 548 km, Ivory Coast 584 km, Mali 1,000 km,\n    Niger 628 km, Togo 126 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    the disputed international boundary between Burkina and Mali was submitted\n    to the International Court of Justice (ICJ) in October 1983 and the ICJ\n    issued its final ruling in December 1986, which both sides agreed to accept;\n    Burkina and Mali are proceeding with boundary demarcation, including the\n    tripoint with Niger\nClimate:\n    tropical; warm, dry winters; hot, wet summers\nTerrain:\n    mostly flat to dissected, undulating plains; hills in west and southeast\nNatural resources:\n    manganese, limestone, marble; small deposits of gold, antimony, copper,\n    nickel, bauxite, lead, phosphates, zinc, silver\nLand use:\n    arable land 10%; permanent crops NEGL%; meadows and pastures 37%; forest and\n    woodland 26%; other 27%, includes irrigated NEGL%\nEnvironment:\n    recent droughts and desertification severely affecting marginal agricultural\n    activities, population distribution, economy; overgrazing; deforestation\nNote:\n    landlocked\n\n:Burkina People\n\nPopulation:\n    9,653,672 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    49 births/1,000 population (1992)\nDeath rate:\n    16 deaths/1,000 population (1992)\nNet migration rate:\n    --2 migrants/1,000 population (1992)\nInfant mortality rate:\n    117 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    52 years male, 53 years female (1992)\nTotal fertility rate:\n    7.1 children born/woman (1992)\nNationality:\n    noun - Burkinabe (singular and plural); adjective - Burkinabe\nEthnic divisions:\n    more than 50 tribes; principal tribe is Mossi (about 2.5 million); other\n    important groups are Gurunsi, Senufo, Lobi, Bobo, Mande, and Fulani\nReligions:\n    indigenous beliefs about 65%, Muslim 25%, Christian (mainly Roman Catholic)\n    10%\nLanguages:\n    French (official); tribal languages belong to Sudanic family, spoken by 90%\n    of the population\nLiteracy:\n    18% (male 28%, female 9%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,300,000 residents; 30,000 are wage earners; agriculture 82%, industry 13%,\n    commerce, services, and government 5%; 20% of male labor force migrates\n    annually to neighboring countries for seasonal employment (1984); 44% of\n    population of working age (1985)\nOrganized labor:\n    four principal trade union groups represent less than 1% of population\n\n:Burkina Government\n\nLong-form name:\n    Burkina Faso\nType:\n    military; established by coup on 4 August 1983\nCapital:\n    Ouagadougou\nAdministrative divisions:\n    30 provinces; Bam, Bazega, Bougouriba, Boulgou, Boulkiemde, Ganzourgou,\n    Gnagna, Gourma, Houet, Kadiogo, Kenedougou, Komoe, Kossi, Kouritenga,\n    Mouhoun, Namentenga, Naouri, Oubritenga, Oudalan, Passore, Poni, Sanguie,\n    Sanmatenga, Seno, Sissili, Soum, Sourou, Tapoa, Yatenga, Zoundweogo\nIndependence:\n    5 August 1960 (from France; formerly Upper Volta)\nConstitution:\n    June 1991\nLegal system:\n    based on French civil law system and customary law\nNational holiday:\n    Anniversary of the Revolution, 4 August (1983)\nExecutive branch:\n    President, Council of Ministers\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale) was dissolved on 25\n    November 1980\nJudicial branch:\n    Appeals Court\nLeaders:\n  Chief of State and Head of Government:\n    President Captain Blaise COMPAORE (since 15 October 1987)\nPolitical parties and leaders:\n    Organization for Popular Democracy (ODP/MT), ruling party; Coordination of\n    Democratic Forces (CFD), composed of opposition parties\nSuffrage:\n    none\nElections:\n    the National Assembly was dissolved 25 November 1980; presidential election\n    held December 1991 and legislative election scheduled for 24 May 1992\nCommunists:\n    small Communist party front group; some sympathizers\nOther political or pressure groups:\n    committees for the defense of the revolution, watchdog/political action\n    groups throughout the country in both organizations and communities\nMember of:\n    ACCT, ACP, AfDB, CCC, CEAO, ECA, ECOWAS, Entente, FAO, FZ, G-77, GATT, IBRD,\n    ICAO, ICC, ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, INTELSAT, INTERPOL, IOC,\n    ITU, LORCS, NAM, OAU, OIC, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL,\n    WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Paul Desire KABORE; Chancery at 2340 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 332-5577 or 6895\n  US:\n    Ambassador Edward P. BYRNN; Embassy at Avenue Raoul Follerau, Ouagadougou\n    (mailing address is 01 B. P. 35, Ouagadougou); telephone [226] 30-67- 23\n    through 25 and [226] 33-34-22; FAX [226] 31-23-68\nFlag:\n    two equal horizontal bands of red (top) and green with a yellow five-pointed\n    star in the center; uses the popular pan-African colors of Ethiopia\n\n:Burkina Economy\n\nOverview:\n    One of the poorest countries in the world, Burkina has a high population\n    density, few natural resources, and relatively infertile soil. Economic\n    development is hindered by a poor communications network within a landlocked\n    country. Agriculture provides about 40% of GDP and is entirely of a\n    subsistence nature. Industry, dominated by unprofitable\n    government-controlled corporations, accounts for about 15% of GDP.\nGDP:\n    exchange rate conversion - $2.9 billion, per capita $320 (1988); real growth\n    rate 1.3% (1990 est.)\nInflation rate (consumer prices):\n    --0.5% (1989)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $275 million; expenditures $287 million, including capital\n    expenditures of $NA (1989)\nExports:\n    $262 million (f.o.b., 1989)\n  commodities:\n    oilseeds, cotton, live animals, gold\n  partners:\n    EC 42% (France 30%, other 12%), Taiwan 17%, Ivory Coast 15% (1985)\nImports:\n    $619 million (f.o.b., 1989)\n  commodities:\n    grain, dairy products, petroleum, machinery\n  partners:\n    EC 37% (France 23%, other 14%), Africa 31%, US 15% (1985)\nExternal debt:\n    $962 million (December 1990 est.)\nIndustrial production:\n    growth rate 5.7% (1990 est.), accounts for about 15% of GDP (1988)\nElectricity:\n    120,000 kW capacity; 320 million kWh produced, 40 kWh per capita (1991)\nIndustries:\n    cotton lint, beverages, agricultural processing, soap, cigarettes, textiles,\n    gold\nAgriculture:\n    accounts for about 40% of GDP; cash crops - peanuts, shea nuts, sesame,\n    cotton; food crops - sorghum, millet, corn, rice; livestock; not\n    self-sufficient in food grains\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $294 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.9 billion;\n    Communist countries (1970-89), $113 million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    CFA francs (CFAF) per US$1 - 269.01 (January 1992), 282.11 (1991), 272.26\n    (1990), 319.01 (1989), 297.85 (1988), 300.54 (1987)\nFiscal year:\n    calendar year\n\n:Burkina Communications\n\nRailroads:\n    620 km total; 520 km Ouagadougou to Ivory Coast border and 100 km\n    Ouagadougou to Kaya; all 1.00-meter gauge and single track\nHighways:\n    16,500 km total; 1,300 km paved, 7,400 km improved, 7,800 km unimproved\n    (1985)\nCivil air:\n    2 major transport aircraft\nAirports:\n    48 total, 38 usable; 2 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 8 with runways 1,220-2,439 m\nTelecommunications:\n    all services only fair; radio relay, wire, and radio communication stations\n    in use; broadcast stations - 2 AM, 1 FM, 2 TV; 1 Atlantic Ocean INTELSAT\n    earth station\n\n:Burkina Defense Forces\n\nBranches:\n    Army, Air Force, National Gendarmerie, National Police, Peoples' Militia\nManpower availability:\n    males 15-49, 1,904,647; 971,954 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $55 million, 2.7% of GDP (1988 est.)\n\n:Burma Geography\n\nTotal area:\n    678,500 km2\nLand area:\n    657,740 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    5,876 km; Bangladesh 193 km, China 2,185 km, India 1,463 km, Laos 235 km,\n    Thailand 1,800 km\nCoastline:\n    1,930 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical monsoon; cloudy, rainy, hot, humid summers (southwest monsoon, June\n    to September); less cloudy, scant rainfall, mild temperatures, lower\n    humidity during winter (northeast monsoon, December to April)\nTerrain:\n    central lowlands ringed by steep, rugged highlands\nNatural resources:\n    crude oil, timber, tin, antimony, zinc, copper, tungsten, lead, coal, some\n    marble, limestone, precious stones, natural gas\nLand use:\n    arable land 15%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 49%; other 34%; includes irrigated 2%\nEnvironment:\n    subject to destructive earthquakes and cyclones; flooding and landslides\n    common during rainy season (June to September); deforestation\nNote:\n    strategic location near major Indian Ocean shipping lanes\n\n:Burma People\n\nPopulation:\n    42,642,418 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    68 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    57 years male, 61 years female (1992)\nTotal fertility rate:\n    3.8 children born/woman (1992)\nNationality:\n    noun - Burmese (singular and plural); adjective - Burmese\nEthnic divisions:\n    Burman 68%, Shan 9%, Karen 7%, Rakhine 4%, Chinese 3%, Mon 2%, Indian 2%,\n    other 5%\nReligions:\n    Buddhist 89%, Christian 4% (Baptist 3%, Roman Catholic 1%), Muslim 4%,\n    animist beliefs 1%, other 2%\nLanguages:\n    Burmese; minority ethnic groups have their own languages\nLiteracy:\n    81% (male 89%, female 72%) age 15 and over can read and write (1990 est.)\nLabor force:\n    16,036,000; agriculture 65.2%, industry 14.3%, trade 10.1%, government 6.3%,\n    other 4.1% (FY89 est.)\nOrganized labor:\n    Workers' Asiayone (association), 1,800,000 members; Peasants' Asiayone,\n    7,600,000 members\n\n:Burma Government\n\nLong-form name:\n    Union of Burma; note - the local official name is Pyidaungzu Myanma\n    Naingngandaw, which has been translated by the US Government as Union of\n    Myanma and by the Burmese as Union of Myanmar\nType:\n    military regime\nCapital:\n    Rangoon (sometimes translated as Yangon)\nAdministrative divisions:\n    7 divisions* (yin-mya, singular - yin) and 7 states (pyine-mya, singular -\n    pyine); Chin State, Irrawaddy*, Kachin State, Karan State, Kayah State,\n    Magwe*, Mandalay*, Mon State, Pegu*, Rakhine State, Rangoon*, Sagaing*, Shan\n    State, Tenasserim*\nIndependence:\n    4 January 1948 (from UK)\nConstitution:\n    3 January 1974 (suspended since 18 September 1988)\nLegal system:\n    martial law in effect throughout most of the country; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 4 January (1948)\nExecutive branch:\n    chairman of the State Law and Order Restoration Council, State Law and Order\n    Restoration Council\nLegislative branch:\n    unicameral People's Assembly (Pyithu Hluttaw) was dissolved after the coup\n    of 18 September 1988\nJudicial branch:\n    Council of People's Justices was abolished after the coup of 18 September\n    1988\nLeaders:\n  Chief of State and Head of Government:\n    Chairman of the State Law and Order Restoration Council Gen. THAN SHWE\n    (since 23 April 1992)\nPolitical parties and leaders:\n    National Unity Party (NUP; proregime), THA KYAW; National League for\n    Democracy (NLD), U AUNG SHWE; National Coalition of Union of Burma (NCGUB),\n    SEIN WIN - consists of individuals legitimately elected but not recognized\n    by military regime; fled to border area and joined with insurgents in\n    December 1990 to form a parallel government\nSuffrage:\n    universal at age 18\nElections:\n  People's Assembly:\n    last held 27 May 1990, but Assembly never convened; results - NLD 80%; seats\n    - (485 total) NLD 396, the regime-favored NUP 10, other 79\nCommunists:\n    several hundred (est.) in Burma Communist Party (BCP)\nOther political or pressure groups:\n    Kachin Independence Army (KIA), United Wa State Army (UWSA), Karen National\n    Union (KNU) , several Shan factions, including the Shan United Army (SUA)\n    (all ethnically based insurgent groups)\nMember of:\n    AsDB, CP, ESCAP, FAO, G-77, GATT, IAEA, IBRD, ICAO, IDA, IFAD, IFC, ILO,\n    IMF, IMO, INTERPOL, IOC, ITU, LORCS, UN, UNCTAD, UNESCO, UPU, WHO, WMO\n\n:Burma Government\n\nDiplomatic representation:\n    Ambassador U THAUNG; Chancery at 2300 S Street NW, Washington, DC 20008;\n    telephone (202) 332-9044 through 9046; there is a Burmese Consulate General\n    in New York\n  US:\n    Ambassador (vacant); Deputy Chief of Mission, Charge d'Affaires Franklin P.\n    HUDDLE, Jr.; Embassy at 581 Merchant Street, Rangoon (mailing address is GPO\n    Box 521, AMEMB Box B, APO AP 96546); telephone [95] (1) 82055, 82181; FAX\n    [95] (1) 80409\nFlag:\n    red with a blue rectangle in the upper hoist-side corner bearing, all in\n    white, 14 five-pointed stars encircling a cogwheel containing a stalk of\n    rice; the 14 stars represent the 14 administrative divisions\n\n:Burma Economy\n\nOverview:\n    Burma is a poor Asian country, with a per capita GDP of about $500. The\n    nation has been unable to achieve any substantial improvement in export\n    earnings because of falling prices for many of its major commodity exports.\n    For rice, traditionally the most important export, the drop in world prices\n    has been accompanied by shrinking markets and a smaller volume of sales. In\n    1985 teak replaced rice as the largest export and continues to hold this\n    position. The economy is heavily dependent on the agricultural sector, which\n    generates about 40% of GDP and provides employment for 65% of the work\n    force. Burma has been largely isolated from international economic forces\n    and has been trying to encourage foreign investment, so far with little\n    success.\nGDP:\n    exchange rate conversion - $22.2 billion, per capita $530; real growth rate\n    5.6% (1991)\nInflation rate (consumer prices):\n    40% (1991)\nUnemployment rate:\n    9.6% in urban areas (FY89 est.)\nBudget:\n    revenues $7.2 billion; expenditures $9.3 billion, including capital\n    expenditures of $6 billion (1991)\nExports:\n    $568 million\n  commodities:\n    teak, rice, oilseed, metals, rubber, gems\n  partners:\n    Southeast Asia, India, Japan, China, EC, Africa\nImports:\n    $1.16 billion\n  commodities:\n    machinery, transport equipment, chemicals, food products\n  partners:\n    Japan, EC, China, Southeast Asia\nExternal debt:\n    $4.2 billion (1991)\nIndustrial production:\n    growth rate 2.6% (FY90 est.); accounts for 10% of GDP\nElectricity:\n    950,000 kW capacity; 2,900 million kWh produced, 70 kWh per capita (1990)\nIndustries:\n    agricultural processing; textiles and footwear; wood and wood products;\n    petroleum refining; mining of copper, tin, tungsten, iron; construction\n    materials; pharmaceuticals; fertilizer\nAgriculture:\n    accounts for 40% of GDP (including fish and forestry); self-sufficient in\n    food; principal crops - paddy rice, corn, oilseed, sugarcane, pulses;\n    world's largest stand of hardwood trees; rice and teak account for 55% of\n    export revenues; fish catch of 740,000 metric tons (FY90)\nIllicit drugs:\n    world's largest illicit producer of opium poppy and minor producer of\n    cannabis for the international drug trade; opium production is on the\n    increase as growers respond to the collapse of Rangoon's antinarcotic\n    programs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $158 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3.9 billion;\n    Communist countries (1970-89), $424 million\n\n:Burma Economy\n\nCurrency:\n    kyat (plural - kyats); 1 kyat (K) = 100 pyas\nExchange rates:\n    kyats (K) per US$1 - 6.0963 (January 1992), 6.2837 (1991), 6.3386 (1990),\n    6.7049 (1989), 6.46 (1988), 6.6535 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Burma Communications\n\nRailroads:\n    3,991 km total, all government owned; 3,878 km 1.000-meter gauge, 113 km\n    narrow-gauge industrial lines; 362 km double track\nHighways:\n    27,000 km total; 3,200 km bituminous, 17,700 km improved earth or gravel,\n    6,100 km unimproved earth\nInland waterways:\n    12,800 km; 3,200 km navigable by large commercial vessels\nPipelines:\n    crude oil 1,343 km; natural gas 330 km\nPorts:\n    Rangoon, Moulmein, Bassein\nMerchant marine:\n    71 ships (1,000 GRT or over) totaling 1,036,018 GRT/1,514,121 DWT; includes\n    3 passenger-cargo, 19 cargo, 5 refrigerated cargo, 3 vehicle carrier, 3\n    container, 2 petroleum tanker, 6 chemical, 1 combination ore/oil, 27 bulk, 1\n    combination bulk, 1 roll-on/roll-off\nCivil air:\n    17 major transport aircraft (including 3 helicopters)\nAirports:\n    85 total, 82 usable; 27 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 38 with runways 1,220-2,439 m\nTelecommunications:\n    meets minimum requirements for local and intercity service; international\n    service is good; 53,000 telephones (1986); radiobroadcast coverage is\n    limited to the most populous areas; broadcast stations - 2 AM, 1 FM, 1 TV\n    (1985); 1 Indian Ocean INTELSAT earth station\n\n:Burma Defense Forces\n\nBranches:\n    Army, Navy, Air Force\nManpower availability:\n    eligible 15-49, 21,447,878; of the 10,745,530 males 15-49, 5,759,840 are fit\n    for military service; of the 10,702,348 females 15-49, 5,721,868 are fit for\n    military service; 424,474 males and 410,579 females reach military age (18)\n    annually; both sexes are liable for military service\nDefense expenditures:\n    exchange rate conversion - $1.28 billion, FY(91-92)\n\n:Burundi Geography\n\nTotal area:\n    27,830 km2\nLand area:\n    25,650 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    974 km; Rwanda 290 km, Tanzania 451 km, Zaire 233 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; warm; occasional frost in uplands\nTerrain:\n    mostly rolling to hilly highland; some plains\nNatural resources:\n    nickel, uranium, rare earth oxide, peat, cobalt, copper, platinum (not yet\n    exploited), vanadium\nLand use:\n    arable land 43%; permanent crops 8%; meadows and pastures 35%; forest and\n    woodland 2%; other 12%; includes irrigated NEGL%\nEnvironment:\n    soil exhaustion; soil erosion; deforestation\nNote:\n    landlocked; straddles crest of the Nile-Congo watershed\n\n:Burundi People\n\nPopulation:\n    6,022,341 (July 1992), growth rate 3.2% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    106 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    51 years male, 55 years female (1992)\nTotal fertility rate:\n    6.8 children born/woman (1992)\nNationality:\n    noun - Burundian(s); adjective - Burundi\nEthnic divisions:\n    Africans - Hutu (Bantu) 85%, Tutsi (Hamitic) 14%, Twa (Pygmy) 1%; other\n    Africans include about 70,000 refugees, mostly Rwandans and Zairians;\n    non-Africans include about 3,000 Europeans and 2,000 South Asians\nReligions:\n    Christian about 67% (Roman Catholic 62%, Protestant 5%), indigenous beliefs\n    32%, Muslim 1%\nLanguages:\n    Kirundi and French (official); Swahili (along Lake Tanganyika and in the\n    Bujumbura area)\nLiteracy:\n    50% (male 61%, female 40%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,900,000 (1983 est.); agriculture 93.0%, government 4.0%, industry and\n    commerce 1.5%, services 1.5%; 52% of population of working age (1985)\nOrganized labor:\n    sole group is the Union of Burundi Workers (UTB); by charter, membership is\n    extended to all Burundi workers (informally); active membership figures NA\n\n:Burundi Government\n\nLong-form name:\n    Republic of Burundi\nType:\n    republic\nCapital:\n    Bujumbura\nAdministrative divisions:\n    15 provinces; Bubanza, Bujumbura, Bururi, Cankuzo, Cibitoke, Gitega, Karuzi,\n    Kayanza, Kirundo, Makamba, Muramvya, Muyinga, Ngozi, Rutana, Ruyigi\nIndependence:\n    1 July 1962 (from UN trusteeship under Belgian administration)\nConstitution:\n    20 November 1981; suspended following the coup of 3 September 1987; a\n    constitutional committee was charged with drafting a new constitution\n    created in February 1991; a referendum on the new constitution scheduled for\n    March 1992\nLegal system:\n    based on German and Belgian civil codes and customary law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 1 July (1962)\nExecutive branch:\n    president; chairman of the Central Committee of the National Party of Unity\n    and Progress (UPRONA), prime minister\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale) was dissolved following\n    the coup of 3 September 1987; at an extraordinary party congress held from\n    27 to 29 December 1990, the Central Committee of the National Party of Unity\n    and Progress (UPRONA) replaced the Military Committee for National\n    Salvation, and became the supreme governing body during the transition to\n    constitutional government\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    Major Pierre BUYOYA, President (since 9 September 1987)\n  Head of Government:\n    Prime Minister Adrien SIBOMANA (since 26 October 1988)\nPolitical parties and leaders:\n    only party - National Party of Unity and Progress (UPRONA), Nicolas MAYUGI,\n    secretary general; note - although Burundi is still officially a one-party\n    state, at least four political parties were formed in 1991 in anticipation\n    of proposed constitutional reform in 1992 - Burundi Democratic Front\n    (FRODEBU), Organization of the People of Burundi (RPB), Socialist Party of\n    Burundi (PSB), Movement for Peace and Democracy (MPD) - the Party for the\n    Liberation of the Hutu People (PALIPEHUTU), formed in exile in the early\n    1980s, is an ethnically based political party dedicated to majority rule;\n    the government has long accused PALIPEHUTU of practicing devisive ethnic\n    politics and fomenting violence against the state. PALIPEHUTU's exclusivist\n    charter makes it an unlikely candidate for legalization under the new\n    constitution that will require party membership open to all ethnic groups\nSuffrage:\n    universal adult at age NA\nElections:\n  National Assembly:\n    dissolved after the coup of 3 September 1987; note - The National Unity\n    Charter outlining the principles for constitutional government was adopted\n    by a national referendum on 5 February 1991\n\n:Burundi Government\n\nMember of:\n    ACCT, ACP, AfDB, CCC, CEEAC, CEPGL, ECA, FAO, G-77, GATT, IBRD, ICAO, IDA,\n    IFAD, IFC, ILO, IMF, INTERPOL, ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO,\n    UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Julien KAVAKURE; Chancery at Suite 212, 2233 Wisconsin Avenue NW,\n    Washington, DC 20007; telephone (202) 342-2574\n  US:\n    Ambassador Cynthia Shepherd PERRY; B. P. 1720, Avenue des Etats-Unis,\n    Bujumbura; telephone [257] (222) 454; FAX [257] (222) 926\nFlag:\n    divided by a white diagonal cross into red panels (top and bottom) and green\n    panels (hoist side and outer side) with a white disk superimposed at the\n    center bearing three red six-pointed stars outlined in green arranged in a\n    triangular design (one star above, two stars below)\n\n:Burundi Economy\n\nOverview:\n    A landlocked, resource-poor country in an early stage of economic\n    development, Burundi is predominately agricultural with only a few basic\n    industries. Its economic health depends on the coffee crop, which accounts\n    for an average 90% of foreign exchange earnings each year. The ability to\n    pay for imports therefore continues to rest largely on the vagaries of the\n    climate and the international coffee market. As part of its economic reform\n    agenda, launched in February 1991 with IMF and World Bank support, Burundi\n    is trying to diversify its export agriculture capability and attract foreign\n    investment in industry. Several state-owned coffee companies were privatized\n    via public auction in September 1991.\nGDP:\n    exchange rate conversion - $1.13 billion, per capita $200; real growth rate\n    3.4% (1990 est.)\nInflation rate (consumer prices):\n    7.1% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $158 million; expenditures $204 million, including capital\n    expenditures of $131 million (1989 est.)\nExports:\n    $74.7 million (f.o.b., 1990)\n  commodities:\n    coffee 88%, tea, hides, and skins\n  partners:\n    EC 83%, US 5%, Asia 2%\nImports:\n    $234.6 million (c.i.f., 1990)\n  commodities:\n    capital goods 31%, petroleum products 15%, foodstuffs, consumer goods\n  partners:\n    EC 57%, Asia 23%, US 3%\nExternal debt:\n    $1.0 billion (1990 est.)\nIndustrial production:\n    real growth rate 5.1% (1986); accounts for about 10% of GDP\nElectricity:\n    55,000 kW capacity; 105 million kWh produced, 20 kWh per capita (1991)\nIndustries:\n    light consumer goods such as blankets, shoes, soap; assembly of imports;\n    public works construction; food processing\nAgriculture:\n    accounts for 60% of GDP; 90% of population dependent on subsistence farming;\n    marginally self-sufficient in food production; cash crops - coffee, cotton,\n    tea; food crops - corn, sorghum, sweet potatoes, bananas, manioc; livestock\n    - meat, milk, hides, and skins\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $71 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $10.2 billion; OPEC\n    bilateral aid (1979-89), $32 million; Communist countries (1970-89), $175\n    million\nCurrency:\n    Burundi franc (plural - francs); 1 Burundi franc (FBu) = 100 centimes\nExchange rates:\n    Burundi francs (FBu) per US$1 - 193.72 (January 1992), 181.51 (1991), 171.26\n    (1990), 158.67 (1989), 140.40 (1988), 123. 56 (1987)\nFiscal year:\n    calendar year\n\n:Burundi Communications\n\nHighways:\n    5,900 km total; 400 km paved, 2,500 km gravel or laterite, 3,000 km improved\n    or unimproved earth\nInland waterways:\n    Lake Tanganyika\nPorts:\n    Bujumbura (lake port) connects to transportation systems of Tanzania and\n    Zaire\nCivil air:\n    no major transport aircraft\nAirports:\n    6 total, 6 usable; 1 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220 to 2,439 m\nTelecommunications:\n    sparse system of wire, radiocommunications, and low-capacity radio relay\n    links; 8,000 telephones; broadcast stations - 2 AM, 2 FM, 1 TV; 1 Indian\n    Ocean INTELSAT earth station\n\n:Burundi Defense Forces\n\nBranches:\n    Army (includes naval and air units); paramilitary Gendarmerie\nManpower availability:\n    males 15-49, 1,306,611; 681,050 fit for military service; 59,676 reach\n    military age (16) annually\nDefense expenditures:\n    exchange rate conversion - $28 million, 3.7% of GDP (1989)\n\n:Cambodia Geography\n\nTotal area:\n    181,040 km2\nLand area:\n    176,520 km2\nComparative area:\n    slightly smaller than Oklahoma\nLand boundaries:\n    2,572 km; Laos 541 km, Thailand 803 km, Vietnam 1,228 km\nCoastline:\n    443 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    offshore islands and three sections of the boundary with Vietnam are in\n    dispute; maritime boundary with Vietnam not defined\nClimate:\n    tropical; rainy, monsoon season (May to October); dry season (December to\n    March); little seasonal temperature variation\nTerrain:\n    mostly low, flat plains; mountains in southwest and north\nNatural resources:\n    timber, gemstones, some iron ore, manganese, phosphates, hydropower\n    potential\nLand use:\n    arable land 16%; permanent crops 1%; meadows and pastures 3%; forest and\n    woodland 76%; other 4%; includes irrigated 1%\nEnvironment:\n    a land of paddies and forests dominated by Mekong River and Tonle Sap\nNote:\n    buffer between Thailand and Vietnam\n\n:Cambodia People\n\nPopulation:\n    7,295,706 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    37 births/1,000 population (1992)\nDeath rate:\n    15 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    121 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    48 years male, 51 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - Cambodian(s); adjective - Cambodian\nEthnic divisions:\n    Khmer 90%, Chinese 5%, other 5%\nReligions:\n    Theravada Buddhism 95%, other 5%\nLanguages:\n    Khmer (official), French\nLiteracy:\n    35% (male 48%, female 22%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2.5-3.0 million; agriculture 80% (1988 est.)\nOrganized labor:\n    Kampuchea Federation of Trade Unions (FSC); under government control\n\n:Cambodia Government\n\nLong-form name:\n    none\nType:\n    currently administered by the Supreme National Council (SNC), a body set up\n    under United Nations' auspices, in preparation for an internationally\n    supervised election in 1993 and including representatives from each of the\n    country's four political factions\nCapital:\n    Phnom Penh\nAdministrative divisions:\n    19 provinces (khet, singular and plural) and 2 autonomous cities* Banteay\n    Meanchey, Batdambang, Kampong Cham, Kampong Chhnang, Kampong Saom City*,\n    Kampong Spoe, Kampong Thum, Kampot, Kandal, Kaoh Kong, Kracheh, Mondol Kiri,\n    Phnom Phen City*, Pouthisat, Preah Vihear, Prey Veng, Rotanokiri,\n    Siemreab-Otdar Meanchey, Stoeng Treng, Svay Rieng, Takev\nIndependence:\n    8 November 1949 (from France)\nConstitution:\n    a new constitution will be drafted after the national election in 1993\nNational holiday:\n    NGC - Independence Day, 17 April (1975); SOC - Liberation Day, 7 January\n    (1979)\nExecutive branch:\n    a twelve-member Supreme National Council (SNC), chaired by Prince NORODOM\n    SIHANOUK, composed of representatives from each of the four political\n    factions; faction names and delegation leaders are: State of Cambodia (SOC)\n    - HUN SEN; Democratic Kampuchea (DK or Khmer Rouge) - KHIEU SAMPHAN; Khmer\n    People's National Liberation Front (KPNLF) - SON SANN; National United Front\n    for an Independent, Peaceful, Neutral, and Cooperative Cambodia (FUNCINPEC)\n    - Prince NORODOM RANARIDDH\nLegislative branch:\n    pending a national election in 1993, the incumbent SOC faction's National\n    Assembly is the only functioning national legislative body\nJudicial branch:\n    pending a national election in 1993, the incumbent SOC faction's Supreme\n    People's Court is the only functioning national judicial body\nLeaders:\n  Chief of State:\n    SNC - Chairman Prince NORODOM SIHANOUK, under United Nations's supervision\n  Head of Government:\n    NGC - vacant, formerly held by SON SANN (since July 1982); will be\n    determined following the national election in 1993; SOC - Chairman of the\n    Council of Ministers HUN SEN (since 14 January 1985)\nPolitical parties and leaders:\n    Democratic Kampuchea (DK, also known as the Khmer Rouge) under KHIEU\n    SAMPHAN; Cambodian Pracheachon Party or Cambodian People's Party (CPP) (name\n    changed and HENG SAMRIN replaced in October 1991) under CHEA SIM; Khmer\n    People's National Liberation Front (KPNLF) under SON SANN; National United\n    Front for an Independent, Neutral, Peaceful, and Cooperative Cambodia\n    (FUNCINPEC) under Prince NORODOM RANNARIDH\nSuffrage:\n    universal at age 18\nElections:\n    UN-supervised election for a 120-member constituent assembly based on\n    proportional representation within each province will be held nine months\n    after UN-organized voter registration is complete; the election is not\n    anticipated before April 1993; the assembly will draft and approve a\n    constitution and then transform itself into a legislature that will create a\n    new Cambodian Government\n\n:Cambodia Government\n\nMember of:\n    AsDB, CP, ESCAP, FAO, G-77, IAEA, IBRD, ICAO, IDA, ILO, IMF, IMO, INTERPOL,\n    ITU, LORCS, NAM, PCA, UN, UNCTAD, UNESCO, UPU, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    the Supreme National Council (SNC) represents Cambodia in international\n    organizations - it filled UN seat in September 1991\n  US:\n    Charles TWINNING is the US representative to Cambodia\nFlag:\n    SNC - blue background with white map of Cambodia in middle; SOC - two equal\n    horizontal bands of red (top) and blue with a gold stylized five-towered\n    temple representing Angkor Wat in the center\n\n:Cambodia Economy\n\nOverview:\n    Cambodia is a desperately poor country whose economic development has been\n    stymied by deadly political infighting. The economy is based on agriculture\n    and related industries. Over the past decade Cambodia has been slowly\n    recovering from its near destruction by war and political upheaval. The food\n    situation remains precarious; during the 1980s famine was averted only\n    through international relief. In 1986 the production level of rice, the\n    staple food crop, was able to meet only 80% of domestic needs. The biggest\n    success of the nation's recovery program has been in new rubber plantings\n    and in fishing. Industry, other than rice processing, is almost nonexistent.\n    Foreign trade has been primarily with the former USSR and Vietnam, and both\n    trade and foreign aid are being adversely affected by the breakup of the\n    USSR. Statistical data on the economy continue to be sparse and unreliable.\n    Foreign aid from the former USSR and Eastern Europe has virtually stopped.\nGDP:\n    exchange rate conversion - $930 million, per capita $130; real growth rate\n    NA (1991 est.)\nInflation rate (consumer prices):\n    53% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $178 million expenditures $NA, including capital expenditures of\n    $NA (1991)\nExports:\n    $32 million (f.o.b., 1988)\n  commodities:\n    natural rubber, rice, pepper, wood\n  partners:\n    Vietnam, USSR, Eastern Europe, Japan, India\nImports:\n    $147 million (c.i.f., 1988)\n  commodities:\n    international food aid; fuels, consumer goods, machinery\n  partners:\n    Vietnam, USSR, Eastern Europe, Japan, India\nExternal debt:\n    $600 million (1989)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    140,000 kW capacity; 200 million kWh produced, 30 kWh per capita (1991)\nIndustries:\n    rice milling, fishing, wood and wood products, rubber, cement, gem mining\nAgriculture:\n    mainly subsistence farming except for rubber plantations; main crops - rice,\n    rubber, corn; food shortages - rice, meat, vegetables, dairy products,\n    sugar, flour\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $725 million; Western (non-US\n    countries) (1970-89), $300 million; Communist countries (1970-89), $1.8\n    billion\nCurrency:\n    riel (plural - riels); 1 riel (CR) = 100 sen\nExchange rates:\n    riels (CR) per US$1 - 714 (May 1992), 500 (December 1991), 560 (1990),\n    159.00 (1988), 100.00 (1987)\nFiscal year:\n    calendar year\n\n:Cambodia Communications\n\nRailroads:\n    612 km 1.000-meter gauge, government owned\nHighways:\n    13,351 km total; 2,622 km bituminous; 7,105 km crushed stone, gravel, or\n    improved earth; 3,624 km unimproved earth; some roads in disrepair\nInland waterways:\n    3,700 km navigable all year to craft drawing 0.6 meters; 282 km navigable to\n    craft drawing 1.8 meters\nPorts:\n    Kampong Saom, Phnom Penh\nAirports:\n    16 total, 8 usable; 5 with permanent-surface runways; none with runways over\n    3,659 m; 2 with runways 2,440-3,659 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    service barely adequate for government requirements and virtually\n    nonexistent for general public; international service limited to Vietnam and\n    other adjacent countries; broadcast stations - 1 AM, no FM, 1 TV\n\n:Cambodia Defense Forces\n\nBranches:\n    SOC - Cambodian People's Armed Forces (CPAF); Communist resistance forces -\n    National Army of Democratic Kampuchea (Khmer Rouge); non-Communist\n    resistance forces - Armee National Kampuchea Independent (ANKI), which is\n    sometimes anglicized as National Army of Independent Cambodia (NAIC), and\n    Khmer People's National Liberation Armed Forces (KPNLAF) - under the Paris\n    peace agreement of October 1991, all four factions are to observe a\n    cease-fire and prepare for UN-supervised cantonment, disarmament, and 70%\n    demobilization before the election, with the fate of the remaining 30% to be\n    determined by the newly elected government - the United Nations Transitional\n    Authority in Cambodia (UNTAC) will verify the cease-fire and disarm the\n    combatants\nManpower availability:\n    males 15-49, 1,877,339; 1,032,102 fit for military service; 61,807 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Cameroon Geography\n\nTotal area:\n    475,440 km2\nLand area:\n    469,440 km2\nComparative area:\n    slightly larger than California\nLand boundaries:\n    4,591 km; Central African Republic 797 km, Chad 1,094 km, Congo 523 km,\n    Equatorial Guinea 189 km, Gabon 298 km, Nigeria 1,690 km\nCoastline:\n    402 km\nMaritime claims:\n  Territorial sea:\n    50 nm\nDisputes:\n    demarcation of international boundaries in Lake Chad, the lack of which has\n    led to border incidents in the past, is completed and awaiting ratification\n    by Cameroon, Chad, Niger, and Nigeria; boundary commission created with\n    Nigeria to discuss unresolved land and maritime boundaries - has not yet\n    convened\nClimate:\n    varies with terrain from tropical along coast to semiarid and hot in north\nTerrain:\n    diverse, with coastal plain in southwest, dissected plateau in center,\n    mountains in west, plains in north\nNatural resources:\n    crude oil, bauxite, iron ore, timber, hydropower potential\nLand use:\n    arable land 13%; permanent crops 2%; meadows and pastures 18%; forest and\n    woodland 54%; other 13%; includes irrigated NEGL%\nEnvironment:\n    recent volcanic activity with release of poisonous gases; deforestation;\n    overgrazing; desertification\nNote:\n    sometimes referred to as the hinge of Africa\n\n:Cameroon People\n\nPopulation:\n    12,658,439 (July 1992), growth rate 3.3% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    81 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 60 years female (1992)\nTotal fertility rate:\n    6.4 children born/woman (1992)\nNationality:\n    noun - Cameroonian(s); adjective - Cameroonian\nEthnic divisions:\n    over 200 tribes of widely differing background; Cameroon Highlanders 31%,\n    Equatorial Bantu 19%, Kirdi 11%, Fulani 10%, Northwestern Bantu 8%, Eastern\n    Nigritic 7%, other African 13%, non-African less than 1%\nReligions:\n    indigenous beliefs 51%, Christian 33%, Muslim 16%\nLanguages:\n    English and French (official), 24 major African language groups\nLiteracy:\n    54% (male 66%, female 43%) age 15 and over can read and write (1990 est.)\nLabor force:\n    NA; agriculture 74.4%, industry and transport 11.4%, other services 14.2%\n    (1983); 50% of population of working age (15-64 years) (1985)\nOrganized labor:\n    under 45% of wage labor force\n\n:Cameroon Government\n\nLong-form name:\n    Republic of Cameroon\nType:\n    unitary republic; multiparty presidential regime (opposition parties\n    legalized 1990)\nCapital:\n    Yaounde\nAdministrative divisions:\n    10 provinces; Adamaoua, Centre, Est, Extreme-Nord, Littoral, Nord,\n    Nord-Ouest, Ouest, Sud, Sud-Ouest\nIndependence:\n    1 January 1960 (from UN trusteeship under French administration; formerly\n    French Cameroon)\nConstitution:\n    20 May 1972\nLegal system:\n    based on French civil law system, with common law influence; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 20 May (1972)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Paul BIYA (since 6 November 1982)\n  Head of Government:\n    interim Prime Minister Sadou HAYATOU (since 25 April 1991)\nPolitical parties and leaders:\n    Cameroon People's Democratic Movement (RDPC), Paul BIYA, president, is\n    government-controlled and was formerly the only party; numerous small\n    parties formed since opposition parties were legalized in 1990\nSuffrage:\n    universal at age 20\nElections:\n  National Assembly:\n    next to be held 1 March 1992\n  President:\n    last held 24 April 1988 (next to be held April 1993); results - President\n    Paul BIYA reelected without opposition\nOther political or pressure groups:\n    NA\nMember of:\n    ACCT (associate), ACP, AfDB, BDEAC, CCC, CEEAC, ECA, FAO, FZ, G-19, G-77,\n    GATT, IAEA, IBRD, ICAO, ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, OIC, PCA, UDEAC, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Paul PONDI; Chancery at 2349 Massachusetts Avenue NW, Washington,\n    DC 20008; telephone (202) 265-8790 through 8794\n  US:\n    Ambassador Frances D. COOK; Embassy at Rue Nachtigal, Yaounde (mailing\n    address is B. P. 817, Yaounde); telephone [237] 234014; FAX [237] 230753;\n    there is a US Consulate General in Douala\n\n:Cameroon Government\n\nFlag:\n    three equal vertical bands of green (hoist side), red, and yellow with a\n    yellow five-pointed star centered in the red band; uses the popular\n    pan-African colors of Ethiopia\n\n:Cameroon Economy\n\nOverview:\n    Because of its offshore oil resources, Cameroon has one of the highest\n    incomes per capita in tropical Africa. Still, it faces many of the serious\n    problems facing other underdeveloped countries, such as political\n    instability, a top-heavy civil service, and a generally unfavorable climate\n    for business enterprise. The development of the oil sector led rapid\n    economic growth between 1970 and 1985. Growth came to an abrupt halt in 1986\n    precipitated by steep declines in the prices of major exports: coffee,\n    cocoa, and petroleum. Export earnings were cut by almost one-third, and\n    inefficiencies in fiscal management were exposed. In 1990-92, with support\n    from the IMF and World Bank, the government has begun to introduce reforms\n    designed to spur business investment, increase efficiency in agriculture,\n    and recapitalize the nation's banks. Nationwide strikes organized by\n    opposition parties in 1991, however, undermined these efforts.\nGDP:\n    exchange rate conversion - $11.5 billion, per capita $1,040; real growth\n    rate 0.7% (1990 est.)\nInflation rate (consumer prices):\n    8.6% (FY88)\nUnemployment rate:\n    25% (1990 est.)\nBudget:\n    revenues $1.2 billion; expenditures $1.8 billion, including capital\n    expenditures of $NA million (FY89)\nExports:\n    $2.1 billion (f.o.b., 1990 est.)\n  commodities:\n    petroleum products 56%, coffee, cocoa, timber, manufactures\n  partners:\n    EC (particularly France) about 50%, US 10%\nImports:\n    $2.1 billion (c.i.f., 1990 est.)\n  commodities:\n    machines and electrical equipment, transport equipment, chemical products,\n    consumer goods\n  partners:\n    France 41%, Germany 9%, US 4%\nExternal debt:\n    $4.9 billion (December 1989 est.)\nIndustrial production:\n    growth rate - 6.4% (FY87); accounts for 30% of GDP\nElectricity:\n    755,000 kW capacity; 2,940 million kWh produced, 270 kWh per capita (1991)\nIndustries:\n    crude oil products, food processing, light consumer goods, textiles,\n    sawmills\nAgriculture:\n    the agriculture and forestry sectors provide employment for the majority of\n    the population, contributing nearly 25% to GDP and providing a high degree\n    of self-sufficiency in staple foods; commercial and food crops include\n    coffee, cocoa, timber, cotton, rubber, bananas, oilseed, grains, livestock,\n    root starches\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $440 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.5 billion; OPEC\n    bilateral aid (1979-89), $29 million; Communist countries (1970-89), $125\n    million\n\n:Cameroon Economy\n\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    1 July - 30 June\n\n:Cameroon Communications\n\nRailroads:\n    1,003 km total; 858 km 1.000-meter gauge, 145 km 0.600-meter gauge\nHighways:\n    about 65,000 km total; includes 2,682 km paved, 32,318 km gravel and\n    improved earth, and 30,000 km of unimproved earth\nInland waterways:\n    2,090 km; of decreasing importance\nPorts:\n    Douala\nMerchant marine:\n    2 cargo ships (1,000 GRT or over) totaling 24,122 GRT/33,509 DWT\nCivil air:\n    5 major transport aircraft\nAirports:\n    56 total, 50 usable; 10 with permanent-surface runways; 1 with runways over\n    3,659 m; 5 with runways 2,440-3,659 m; 21 with runways 1,220-2,439 m\nTelecommunications:\n    good system of open wire, cable, troposcatter, and radio relay; 26,000\n    telephones; broadcast stations - 11 AM, 11 FM, 1 TV; 2 Atlantic Ocean\n    INTELSAT earth stations\n\n:Cameroon Defense Forces\n\nBranches:\n    Army, Navy (including naval infantry), Air Force; National Gendarmerie,\n    Presidential Guards\nManpower availability:\n    males 15-49, 2,753,059; 1,385,706 fit for military service; 120,011 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $219 million, 1.7% of GDP (1990 est.)\n\n:Canada Geography\n\nTotal area:\n    9,976,140 km2\nLand area:\n    9,220,970 km2\nComparative area:\n    slightly larger than US\nLand boundaries:\n    8,893 km with US (includes 2,477 km with Alaska)\nCoastline:\n    243,791 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary disputes with the US\nClimate:\n    varies from temperate in south to subarctic and arctic in north\nTerrain:\n    mostly plains with mountains in west and lowlands in southeast\nNatural resources:\n    nickel, zinc, copper, gold, lead, molybdenum, potash, silver, fish, timber,\n    wildlife, coal, crude oil, natural gas\nLand use:\n    arable land 5%; permanent crops NEGL%; meadows and pastures 3%; forest and\n    woodland 35%; other 57%; includes NEGL% irrigated\nEnvironment:\n    80% of population concentrated within 160 km of US border; continuous\n    permafrost in north a serious obstacle to development\nNote:\n    second-largest country in world (after Russia); strategic location between\n    Russia and US via north polar route\n\n:Canada People\n\nPopulation:\n    27,351,509 (July 1992), growth rate 1.3% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    6 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Canadian(s); adjective - Canadian\nEthnic divisions:\n    British Isles origin 40%, French origin 27%, other European 20%, indigenous\n    Indian and Eskimo 1.5%\nReligions:\n    Roman Catholic 46%, United Church 16%, Anglican 10%\nLanguages:\n    English and French (both official)\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1981 est.)\nLabor force:\n    13,380,000; services 75%, manufacturing 14%, agriculture 4%, construction\n    3%, other 4% (1988)\nOrganized labor:\n    30.6% of labor force; 39.6% of nonagricultural paid workers\n\n:Canada Government\n\nLong-form name:\n    none\nType:\n    confederation with parliamentary democracy\nCapital:\n    Ottawa\nAdministrative divisions:\n    10 provinces and 2 territories*; Alberta, British Columbia, Manitoba, New\n    Brunswick, Newfoundland, Northwest Territories*, Nova Scotia, Ontario,\n    Prince Edward Island, Quebec, Saskatchewan, Yukon Territory*\nIndependence:\n    1 July 1867 (from UK)\nConstitution:\n    amended British North America Act 1867 patriated to Canada 17 April 1982;\n    charter of rights and unwritten customs\nLegal system:\n    based on English common law, except in Quebec, where civil law system based\n    on French law prevails; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Canada Day, 1 July (1867)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    bicameral Parliament (Parlement) consists of an upper house or Senate\n    (Senat) and a lower house or House of Commons (Chambre des Communes)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Raymond John HNATSHYN (since 29 January 1990)\n  Head of Government:\n    Prime Minister (Martin) Brian MULRONEY (since 4 September 1984); Deputy\n    Prime Minister Donald Frank MAZANKOWSKI (since June 1986)\nPolitical parties and leaders:\n    Progressive Conservative Party, Brian MULRONEY; Liberal Party, Jean\n    CHRETIEN; New Democratic Party, Audrey McLAUGHLIN\nSuffrage:\n    universal at age 18\nElections:\n  House of Commons:\n    last held 21 November 1988 (next to be held by November 1993); results -\n    Progressive Conservative Party 43.0%, Liberal Party 32%, New Democratic\n    Party 20%, other 5%; seats - (295 total) Progressive Conservative Party 159,\n    Liberal Party 80, New Democratic Party 44, independents 12\nCommunists:\n    3,000\nMember of:\n    ACCT, AfDB, AG (observer), APEC, AsDB, Australia Group, BIS, C, CCC, CDB,\n    COCOM, CP, CSCE, EBRD, ECE, ECLAC, FAO, G-7, G-8, G-10, GATT, IADB, IAEA,\n    IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS, MTCR, NACC, NATO, NEA, NSG,\n    OAS, OECD, PCA, UN, UNCTAD, UNDOF, UNESCO, UNFICYP, UNHCR, UNIDO, UNIIMOG,\n    UNTSO, UPU, WCL, WHO, WIPO, WMO, WTO, ZC\n\n:Canada Government\n\nDiplomatic representation:\n    Ambassador Derek BURNEY; Chancery at 501 Pennsylvania Avenue NW, Washington,\n    DC 20001; telephone (202) 682-1740; there are Canadian Consulates General in\n    Atlanta, Boston, Buffalo, Chicago, Cleveland, Dallas, Detroit, Los Angeles,\n    Minneapolis, New York, Philadelphia, San Francisco, and Seattle\n  US:\n    Ambassador Peter TEELEY; Embassy at 100 Wellington Street, K1P 5T1, Ottawa\n    (mailing address is P. O. Box 5000, Ogdensburg, NY 13669-0430); telephone\n    (613) 238-5335 or (613) 238-4470; FAX (613) 238-5720; there are US\n    Consulates General in Calgary, Halifax, Montreal, Quebec, Toronto, and\n    Vancouver\nFlag:\n    three vertical bands of red (hoist side), white (double width, square), and\n    red with a red maple leaf centered in the white band\n\n:Canada Economy\n\nOverview:\n    As an affluent, high-tech industrial society, Canada today closely resembles\n    the US in per capita output, market-oriented economic system, and pattern of\n    production. Since World War II the impressive growth of the manufacturing,\n    mining, and service sectors has transformed the nation from a largely rural\n    economy into one primarily industrial and urban. In the 1980s, Canada\n    registered one of the highest rates of real growth among the OECD nations,\n    averaging about 3.2%. With its great natural resources, skilled labor force,\n    and modern capital plant, Canada has excellent economic prospects. However,\n    the continuing constitutional impasse between English- and French-speaking\n    areas has observers discussing a possible split in the confederation;\n    foreign investors are becoming edgy.\nGDP:\n    purchasing power equivalent - $521.5 billion, per capita $19,400; real\n    growth rate -1.1% (1991 est.)\nInflation rate (consumer prices):\n    4.2% (November 1991, annual rate)\nUnemployment rate:\n    10.3% (November 1991)\nBudget:\n    revenues $111.8 billion; expenditures $138.3 billion, including capital\n    expenditures of $NA (FY90 est.)\nExports:\n    $124.0 billion (f.o.b., 1991)\n  commodities:\n    newsprint, wood pulp, timber, crude petroleum, machinery, natural gas,\n    aluminum, motor vehicles and parts; telecommunications equipment\n  partners:\n    US, Japan, UK, Germany, South Korea, Netherlands, China\nImports:\n    $118 billion (c.i.f., 1991)\n  commodities:\n    crude petroleum, chemicals, motor vehicles and parts, durable consumer\n    goods, electronic computers; telecommunications equipment and parts\n  partners:\n    US, Japan, UK, Germany, France, Mexico, Taiwan, South Korea\nExternal debt:\n    $247 billion (1987)\nIndustrial production:\n    growth rate -3.8% (August 1991); accounts for 34% of GDP\nElectricity:\n    106,464,000 kW capacity; 479,600 million kWh produced, 17,872 kWh per capita\n    (1991)\nIndustries:\n    processed and unprocessed minerals, food products, wood and paper products,\n    transportation equipment, chemicals, fish products, petroleum and natural\n    gas\nAgriculture:\n    accounts for about 3% of GDP; one of the world's major producers and\n    exporters of grain (wheat and barley); key source of US agricultural\n    imports; large forest resources cover 35% of total land area; commercial\n    fisheries provide annual catch of 1.5 million metric tons, of which 75% is\n    exported\nIllicit drugs:\n    illicit producer of cannabis for the domestic drug market; use of\n    hydroponics technology permits growers to plant large quantities of\n    high-quality marijuana indoors; growing role as a transit point for heroin\n    and cocaine entering the US market\n\n:Canada Economy\n\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $7.2 billion\nCurrency:\n    Canadian dollar (plural - dollars); 1 Canadian dollar (Can$) = 100 cents\nExchange rates:\n    Canadian dollars (Can$) per US$1 - 1.1565 (January 1992), 1.1457 (1991),\n    1.1668 (1990), 1.1840 (1989), 1.2307 (1988), 1.3260 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Canada Communications\n\nRailroads:\n    93,544 km total; two major transcontinental freight railway systems -\n    Canadian National (government owned) and Canadian Pacific Railway; passenger\n    service - VIA (government operated)\nHighways:\n    884,272 km total; 712,936 km surfaced (250,023 km paved), 171,336 km earth\nInland waterways:\n    3,000 km, including Saint Lawrence Seaway\nPipelines:\n    crude and refined oil 23,564 km; natural gas 74,980 km\nPorts:\n    Halifax, Montreal, Quebec, Saint John (New Brunswick), Saint John's\n    (Newfoundland), Toronto, Vancouver\nMerchant marine:\n    70 ships (1,000 GRT or over) totaling 500,904 GRT/727,118 DWT; includes 1\n    passenger, 3 short-sea passenger, 2 passenger-cargo, 10 cargo, 2 railcar\n    carrier, 1 refrigerated cargo, 8 roll-on/roll-off, 1 container, 28 petroleum\n    tanker, 5 chemical tanker, 1 specialized tanker, 8 bulk; note - does not\n    include ships used exclusively in the Great Lakes\nCivil air:\n    636 major transport aircraft; Air Canada is the major carrier\nAirports:\n    1,416 total, 1,168 usable; 455 with permanent-surface runways; 4 with\n    runways over 3,659 m; 30 with runways 2,440-3,659 m; 338 with runways\n    1,220-2,439 m\nTelecommunications:\n    excellent service provided by modern media; 18.0 million telephones;\n    broadcast stations - 900 AM, 29 FM, 53 (1,400 repeaters) TV; 5 coaxial\n    submarine cables; over 300 earth stations operating in INTELSAT (including 4\n    Atlantic Ocean and 1 Pacific Ocean) and domestic systems\n\n:Canada Defense Forces\n\nBranches:\n    Canadian Armed Forces (including Mobile Command, Maritime Command, Air\n    Command, Communications Command, Canadian Forces Europe, Training Commands),\n    Royal Canadian Mounted Police (RCMP)\nManpower availability:\n    males 15-49, 7,366,675; 6,387,459 fit for military service; 190,752 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $11.4 billion, 1.7% of GDP (FY91); $10.5 billion,\n    NA% of GDP (FY 92)\n\n:Cape Verde Geography\n\nTotal area:\n    4,030 km2\nLand area:\n    4,030 km2\nComparative area:\n    slightly larger than Rhode Island\nLand boundaries:\n    none\nCoastline:\n    965 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate; warm, dry, summer; precipitation very erratic\nTerrain:\n    steep, rugged, rocky, volcanic\nNatural resources:\n    salt, basalt rock, pozzolana, limestone, kaolin, fish\nLand use:\n    arable land 9%; permanent crops NEGL%; meadows and pastures 6%; forest and\n    woodland NEGL%; other 85%; includes irrigated 1%\nEnvironment:\n    subject to prolonged droughts; harmattan wind can obscure visibility;\n    volcanically and seismically active; deforestation; overgrazing\nNote:\n    strategic location 500 km from African coast near major north-south sea\n    routes; important communications station; important sea and air refueling\n    site\n\n:Cape Verde People\n\nPopulation:\n    398,276 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    48 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    - 8 migrants/1,000 population (1992)\nInfant mortality rate:\n    61 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    60 years male, 64 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Cape Verdean(s); adjective - Cape Verdean\nEthnic divisions:\n    Creole (mulatto) about 71%, African 28%, European 1%\nReligions:\n    Roman Catholicism fused with indigenous beliefs\nLanguages:\n    Portuguese and Crioulo, a blend of Portuguese and West African words\nLiteracy:\n    66% (male NA%, female NA%) age 15 and over can read and write (1989 est.)\nLabor force:\n    102,000 (1985 est.); agriculture (mostly subsistence) 57%, services 29%,\n    industry 14% (1981); 51% of population of working age (1985)\nOrganized labor:\n    Trade Unions of Cape Verde Unity Center (UNTC-CS)\n\n:Cape Verde Government\n\nLong-form name:\n    Republic of Cape Verde\nType:\n    republic\nCapital:\n    Praia\nAdministrative divisions:\n    14 districts (concelhos, singular - concelho); Boa Vista, Brava, Fogo, Maio,\n    Paul, Praia, Porto Novo, Ribeira Grande, Sal, Santa Catarina, Santa Cruz,\n    Sao Nicolau, Sao Vicente, Tarrafal\nIndependence:\n    5 July 1975 (from Portugal)\nConstitution:\n    7 September 1980; amended 12 February 1981, December 1988, and 28 September\n    1990 (legalized opposition parties)\nNational holiday:\n    Independence Day, 5 July (1975)\nExecutive branch:\n    president, prime minister, deputy minister, secretaries of state, Council of\n    Ministers (cabinet)\nLegislative branch:\n    unicameral People's National Assembly (Assembleia Nacional Popular)\nJudicial branch:\n    Supreme Tribunal of Justice (Supremo Tribunal de Justia)\nLeaders:\n  Chief of State:\n    President Antonio Monteiro MASCARENHAS (since 22 March 1991)\n  Head of Government:\n    Prime Minister Carlos VEIGA (since 13 January 1991)\nPolitical parties and leaders:\n    Movement for Democracy (MPD), Prime Minister Carlos VEIGA, founder and\n    chairman; African Party for Independence of Cape Verde (PAICV), Pedro Verona\n    Rodrigues PIRES, chairman\nSuffrage:\n    universal at age 18\nElections:\n  People's National Assembly:\n    last held 13 January 1991 (next to be held January 1996); results - percent\n    of vote by party NA; seats - (79 total) MPD 56, PAICV 23; note - this\n    multiparty Assembly election ended 15 years of single-party rule\n  President:\n    last held 17 February 1991 (next to be held February 1996); results -\n    Antonio Monteiro MASCARENHAS (MPD) received 72.6% of vote\nMember of:\n    ACP, AfDB, ECA, ECOWAS, FAO, G-77, IBRD, ICAO, IDA, IFAD, ILO, IMF, IMO,\n    INTERPOL, IOM (observer), ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO,\n    UPU, WCL, WHO, WMO\nDiplomatic representation:\n    Ambassador Carlos Alberto Santos SILVA; Chancery at 3415 Massachusetts\n    Avenue NW, Washington, DC 20007; telephone (202) 965-6820; there is a Cape\n    Verdean Consulate General in Boston\n  US:\n    Ambassador Francis T. (Terry) McNAMARA; Embassy at Rua Hoji Ya Henda Yenna\n    81, Praia (mailing address is C. P. 201, Praia); telephone [238] 61-43-63 or\n    61-42-53; FAX [238] 61-13-55\n\n:Cape Verde Government\n\nFlag:\n    two equal horizontal bands of yellow (top) and green with a vertical red\n    band on the hoist side; in the upper portion of the red band is a black\n    five-pointed star framed by two corn stalks and a yellow clam shell; uses\n    the popular pan-African colors of Ethiopia; similar to the flag of\n    Guinea-Bissau, which is longer and has an unadorned black star centered in\n    the red band\n\n:Cape Verde Economy\n\nOverview:\n    Cape Verde's low per capita GDP reflects a poor natural resource base, a\n    17-year drought, and a high birthrate. The economy is service oriented, with\n    commerce, transport, and public services accounting for 65% of GDP during\n    the period 1985-88. Although nearly 70% of the population lives in rural\n    areas, agriculture's share of GDP is only 16%; the fishing sector accounts\n    for 4%. About 90% of food must be imported. The fishing potential, mostly\n    lobster and tuna, is not fully exploited. In 1988 fishing represented only\n    3.5% of GDP. Cape Verde annually runs a high trade deficit, financed by\n    remittances from emigrants and foreign aid. Economic reforms launched by the\n    new democratic government in February 1991 are aimed at developing the\n    private sector and attracting foreign investment to diversify the economy.\nGDP:\n    exchange rate conversion - $310 million, per capita $800; real growth rate\n    4% (1990 est.)\nInflation rate (consumer prices):\n    10% (1990 est.)\nUnemployment rate:\n    25% (1988)\nBudget:\n    revenues $98.3 million; expenditures $138.4 million, including capital\n    expenditures of $NA (1988 est.)\nExports:\n    $10.9 million (f.o.b., 1989 est.)\n  commodities:\n    fish, bananas, salt\n  partners:\n    Portugal 40%, Algeria 31%, Angola, Netherlands (1990 est.)\nImports:\n    $107.8 million (c.i.f., 1989)\n  commodities:\n    petroleum, foodstuffs, consumer goods, industrial products\n  partners:\n    Sweden 33%, Spain 11%, Germany 5%, Portugal 3%, France 3%, Netherlands, US\n    (1990 est.)\nExternal debt:\n    $150 million (December 1990 est.)\nIndustrial production:\n    growth rate 18% (1988 est.); accounts for 7% of GDP\nElectricity:\n    15,000 kW capacity; 15 million kWh produced, 40 kWh per capita (1991)\nIndustries:\n    fish processing, salt mining, clothing factories, ship repair, construction\n    materials, food and beverage production\nAgriculture:\n    accounts for 16% of GDP; largely subsistence farming; bananas are the only\n    export crop; other crops - corn, beans, sweet potatoes, coffee; growth\n    potential of agricultural sector limited by poor soils and limited rainfall;\n    annual food imports required; fish catch provides for both domestic\n    consumption and small exports\nEconomic aid:\n    US commitments, including Ex-Im (FY75-89), $88 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $537 million; OPEC\n    bilateral aid (1979-89), $12 million; Communist countries (1970-89), $36\n    million\nCurrency:\n    Cape Verdean escudo (plural - escudos); 1 Cape Verdean escudo (CVEsc) = 100\n    centavos\n\n:Cape Verde Economy\n\nExchange rates:\n    Cape Verdean escudos (CVEsc) per US$1 - 71.28 (March 1992), 71.41 (1991),\n    64.10 (November 1990), 74.86 (December 1989), 72.01 (1988), 72.5 (1987)\nFiscal year:\n    calendar year\n\n:Cape Verde Communications\n\nPorts:\n    Mindelo, Praia\nMerchant marine:\n    7 cargo ships (1,000 GRT or over) totaling 11,717 GRT/19,000 DWT\nCivil air:\n    3 major transport aircraft\nAirports:\n    6 total, 6 usable; 6 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    interisland radio relay system, high-frequency radio to Senegal and\n    Guinea-Bissau; over 1,700 telephones; broadcast stations - 1 AM, 6 FM, 1 TV;\n    2 coaxial submarine cables; 1 Atlantic Ocean INTELSAT earth station\n\n:Cape Verde Defense Forces\n\nBranches:\n    People's Revolutionary Armed Forces (FARP) - Army and Navy are separate\n    components of FARP; Security Service\nManpower availability:\n    males 15-49, 72,916; 43,010 fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Cayman Islands Geography\n\nTotal area:\n    260 km2\nLand area:\n    260 km2\nComparative area:\n    slightly less than 1.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    160 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical marine; warm, rainy summers (May to October) and cool, relatively\n    dry winters (November to April)\nTerrain:\n    low-lying limestone base surrounded by coral reefs\nNatural resources:\n    fish, climate and beaches that foster tourism\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 8%; forest and\n    woodland 23%; other 69%\nEnvironment:\n    within the Caribbean hurricane belt\nNote:\n    important location between Cuba and Central America\n\n:Cayman Islands People\n\nPopulation:\n    29,139 (July 1992), growth rate 4.4% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    33 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 79 years female (1992)\nTotal fertility rate:\n    1.5 children born/woman (1992)\nNationality:\n    noun - Caymanian(s); adjective - Caymanian\nEthnic divisions:\n    40% mixed, 20% white, 20% black, 20% expatriates of various ethnic groups\nReligions:\n    United Church (Presbyterian and Congregational), Anglican, Baptist, Roman\n    Catholic, Church of God, other Protestant denominations\nLanguages:\n    English\nLiteracy:\n    98% (male 98%, female 98%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    8,061; service workers 18.7%, clerical 18.6%, construction 12.5%, finance\n    and investment 6.7%, directors and business managers 5.9% (1979)\nOrganized labor:\n    Global Seaman's Union; Cayman All Trade Union\n\n:Cayman Islands Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    George Town\nAdministrative divisions:\n    8 districts; Creek, Eastern, Midland, South Town, Spot Bay, Stake Bay, West\n    End, Western\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    1959, revised 1972\nLegal system:\n    British common law and local statutes\nNational holiday:\n    Constitution Day (first Monday in July)\nExecutive branch:\n    British monarch, governor, Executive Council (cabinet)\nLegislative branch:\n    unicameral Legislative Assembly\nJudicial branch:\n    Grand Court, Cayman Islands Court of Appeal\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor Michael\n    GORE (since May 1992)\n  Head of Government:\n    Governor and President of the Executive Council Alan James SCOTT (since NA\n    1987)\nPolitical parties and leaders:\n    no formal political parties\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Assembly:\n    last held November 1988 (next to be held November 1992); results - percent\n    of vote by party NA; seats - (15 total, 12 elected)\nMember of:\n    CARICOM (observer), CDB, IOC\nDiplomatic representation:\n    as a dependent territory of the UK, Caymanian interests in the US are\n    represented by the UK\n  US:\n    none\nFlag:\n    blue, with the flag of the UK in the upper hoist-side quadrant and the\n    Caymanian coat of arms on a white disk centered on the outer half of the\n    flag; the coat of arms includes a pineapple and turtle above a shield with\n    three stars (representing the three islands) and a scroll at the bottom\n    bearing the motto HE HATH FOUNDED IT UPON THE SEAS\n    HE HATH FOUNDED IT UPON THE SEAS\n\n:Cayman Islands Economy\n\nOverview:\n    The economy depends heavily on tourism (70% of GDP and 75% of export\n    earnings) and offshore financial services, with the tourist industry aimed\n    at the luxury market and catering mainly to visitors from North America.\n    About 90% of the islands' food and consumer goods needs must be imported.\n    The Caymanians enjoy one of the highest standards of living in the region.\nGDP:\n    exchange rate conversion - $384 million, per capita $14,500 (1989); real\n    growth rate 8% (1990)\nInflation rate (consumer prices):\n    8% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $83.6 million; expenditures $98.9 million, including capital\n    expenditures of $13.6 million (1990)\nExports:\n    $1.5 million (f.o.b., 1987 est.)\n  commodities:\n    turtle products, manufactured consumer goods\n  partners:\n    mostly US\nImports:\n    $136 million (c.i.f., 1987 est.)\n  commodities:\n    foodstuffs, manufactured goods\n  partners:\n    US, Trinidad and Tobago, UK, Netherlands Antilles, Japan\nExternal debt:\n    $15 million (1986)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    74,000 kW capacity; 256 million kWh produced, 9,313 kWh per capita (1991)\nIndustries:\n    tourism, banking, insurance and finance, construction, building materials,\n    furniture making\nAgriculture:\n    minor production of vegetables, fruit, livestock; turtle farming\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $26.7 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $35 million\nCurrency:\n    Caymanian dollar (plural - dollars); 1 Caymanian dollar (CI$) = 100 cents\nExchange rates:\n    Caymanian dollars (CI$) per US$1 - 1.20 (fixed rate)\nFiscal year:\n    1 April - 31 March\n\n:Cayman Islands Communications\n\nHighways:\n    160 km of main roads\nPorts:\n    George Town, Cayman Brac\nMerchant marine:\n    32 ships (1,000 GRT or over) totaling 364,174 GRT/560,241 DWT; includes 1\n    passenger-cargo, 7 cargo, 8 roll-on/roll-off cargo, 6 petroleum tanker, 1\n    chemical tanker, 1 specialized tanker, 1 liquefied gas carrier, 5 bulk, 2\n    combination bulk; note - a flag of convenience registry\nCivil air:\n    2 major transport aircraft\nAirports:\n    3 total; 3 usable; 2 with permanent-surface runways; none with runways over\n    2,439 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    35,000 telephones; telephone system uses 1 submarine coaxial cable and 1\n    Atlantic Ocean INTELSAT earth station to link islands and access\n    international services; broadcast stations - 2 AM, 1 FM, no TV\n\n:Cayman Islands Defense Forces\n\nBranches:\n    Royal Cayman Islands Police Force (RCIPF)\nNote:\n    defense is the responsibility of the UK\n\n:Central African Republic Geography\n\nTotal area:\n    622,980 km2\nLand area:\n    622,980 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    5,203 km; Cameroon 797 km, Chad 1,197 km, Congo 467 km, Sudan 1,165 km,\n    Zaire 1,577 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    tropical; hot, dry winters; mild to hot, wet summers\nTerrain:\n    vast, flat to rolling, monotonous plateau; scattered hills in northeast and\n    southwest\nNatural resources:\n    diamonds, uranium, timber, gold, oil\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 5%; forest and\n    woodland 64%; other 28%\nEnvironment:\n    hot, dry, dusty harmattan winds affect northern areas; poaching has\n    diminished reputation as one of last great wildlife refuges; desertification\nNote:\n    landlocked; almost the precise center of Africa\n\n:Central African Republic People\n\nPopulation:\n    3,029,080 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    43 births/1,000 population (1992)\nDeath rate:\n    18 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    135 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    46 years male, 49 years female (1992)\nTotal fertility rate:\n    5.5 children born/woman (1992)\nNationality:\n    noun - Central African(s); adjective - Central African\nEthnic divisions:\n    about 80 ethnic groups, the majority of which have related ethnic and\n    linguistic characteristics; Baya 34%, Banda 27%, Sara 10%, Mandjia 21%,\n    Mboum 4%, M'Baka 4%; 6,500 Europeans, of whom 3,600 are French\nReligions:\n    indigenous beliefs 24%, Protestant 25%, Roman Catholic 25%, Muslim 15%,\n    other 11%; animistic beliefs and practices strongly influence the Christian\n    majority\nLanguages:\n    French (official); Sangho (lingua franca and national language); Arabic,\n    Hunsa, Swahili\nLiteracy:\n    27% (male 33%, female 15%) age 15 and over can read and write (1990 est.)\nLabor force:\n    775,413 (1986 est.); agriculture 85%, commerce and services 9%, industry 3%,\n    government 3%; about 64,000 salaried workers; 55% of population of working\n    age (1985)\nOrganized labor:\n    1% of labor force\n\n:Central African Republic Government\n\nLong-form name:\n    Central African Republic (no short-form name); abbreviated CAR\nType:\n    republic, one-party presidential regime since 1986\nCapital:\n    Bangui\nAdministrative divisions:\n    14 prefectures (prefectures, singular - prefecture), 2 economic prefectures*\n    (prefectures economiques, singular - prefecture economique), and 1\n    commune**; Bamingui-Bangoran, Bangui** Basse-Kotto, Gribingui*, Haute-Kotto,\n    Haute-Sangha, Haut-Mbomou, Kemo-Gribingui, Lobaye, Mbomou, Nana-Mambere,\n    Ombella-Mpoko, Ouaka, Ouham, Ouham-Pende, Sangha*, Vakaga\nIndependence:\n    13 August 1960 (from France; formerly Central African Empire)\nConstitution:\n    21 November 1986\nLegal system:\n    based on French law\nNational holiday:\n    National Day (proclamation of the republic), 1 December (1958)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale) advised by the Economic\n    and Regional Council (Conseil Economique et Regional); when they sit\n    together this is known as the Congress (Congres)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State::\n    President Andre-Dieudonne KOLINGBA (since 1 September 1981)\n  Head of Government::\n    Prime Minister Edouard FRANCK (since 15 March 1991)\nPolitical parties and leaders:\n    Centrafrican Democratic Rally Party (RDC), Andre-Dieudonne KOLINGBA; note -\n    as part of political reforms leading to a democratic system announced in\n    April 1991, 18 opposition parties have been legalized\nSuffrage:\n    universal at age 21\nElections:\n  National Assembly:\n    last held 31 July 1987 (next to be held by end of 1992); results - RDC is\n    the only party; seats - (52 total) RDC 52\n  President:\n    last held 21 November 1986 (next to be held by end of 1992); results -\n    President KOLINGBA was reelected without opposition\nCommunists:\n    small number of Communist sympathizers\nMember of:\n    ACCT, ACP, AfDB, BDEAC, CCC, CEEAC, ECA, FAO, FZ, G-77, GATT, IBRD, ICAO,\n    ICFTU, IDA, IFAD, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU,\n    UDEAC, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Jean-Pierre SOHAHONG-KOMBET; Chancery at 1618 22nd Street NW,\n    Washington, DC 20008; telephone (202) 483-7800 or 7801\n  US:\n    Ambassador Daniel H. SIMPSON; Embassy at Avenue du President David Dacko,\n    Bangui (mailing address is B. P. 924, Bangui); telephone 61-02-00, 61-25-78,\n    or 61-43-33; FAX [190] (236) 61-44-94\n\n:Central African Republic Government\n\nFlag:\n    four equal horizontal bands of blue (top), white, green, and yellow with a\n    vertical red band in center; there is a yellow five-pointed star on the\n    hoist side of the blue band\n\n:Central African Republic Economy\n\nOverview:\n    Subsistence agriculture, including forestry, is the backbone of the CAR\n    economy, with more than 70% of the population living in the countryside. In\n    1988 the agricultural sector generated about 40% of GDP. Agricultural\n    products accounted for about 60% of export earnings and the diamond industry\n    for 30%. The country's 1991 budget deficit was US $70 million and in 1992 is\n    expected to be about the same. Important constraints to economic development\n    include the CAR's landlocked position, a poor transportation system, and a\n    weak human resource base. Multilateral and bilateral development assistance,\n    particularly from France, plays a major role in providing capital for new\n    investment.\nGDP:\n    exchange rate conversion - $1.3 billion, per capita $440; real growth rate -\n    3.0% (1990 est.)\nInflation rate (consumer prices):\n    -3.0% (1990 est.)\nUnemployment rate:\n    30% in Bangui (1988 est.)\nBudget:\n    revenues $121 million; expenditures $193 million, including capital\n    expenditures of $NA million (1991 est.)\nExports:\n    $151.3 million (1990 est.)\n  commodities:\n    diamonds, cotton, coffee, timber, tobacco\n  partners:\n    France, Belgium, Italy, Japan, US\nImports:\n    $214.5 million (1990 est.)\n  commodities:\n    food, textiles, petroleum products, machinery, electrical equipment, motor\n    vehicles, chemicals, pharmaceuticals, consumer goods, industrial products\n  partners:\n    France, other EC countries, Japan, Algeria, Yugoslavia\nExternal debt:\n    $700 million (1990 est.)\nIndustrial production:\n    0.8% (1988); accounts for 12% of GDP\nElectricity:\n    40,000 kW capacity; 95 million kWh produced, 30 kWh per capita (1991)\nIndustries:\n    diamond mining, sawmills, breweries, textiles, footwear, assembly of\n    bicycles and motorcycles\nAgriculture:\n    accounts for 40% of GDP; self-sufficient in food production except for\n    grain; commercial crops - cotton, coffee, tobacco, timber; food crops -\n    manioc, yams, millet, corn, bananas\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $49 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.5 billion; OPEC\n    bilateral aid (1979-89), $6 million; Communist countries (1970-89), $38\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\n\n:Central African Republic Economy\n\nFiscal year:\n    calendar year\n\n:Central African Republic Communications\n\nHighways:\n    22,000 km total; 458 km bituminous, 10,542 km improved earth, 11,000\n    unimproved earth\nInland waterways:\n    800 km; traditional trade carried on by means of shallow-draft dugouts;\n    Oubangui is the most important river\nCivil air:\n    2 major transport aircraft\nAirports:\n    66 total, 52 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 22 with runways 1,220-2,439 m\nTelecommunications:\n    fair system; network relies primarily on radio relay links, with\n    low-capacity, low-powered radiocommunication also used; broadcast stations -\n    1 AM, 1 FM, 1 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Central African Republic Defense Forces\n\nBranches:\n    Central African Army (including Republican Guard), Air Force, National\n    Gendarmerie, Police Force\nManpower availability:\n    males 15-49, 677,889; 354,489 fit for military service\nDefense expenditures:\n    exchange rate conversion - $23 million, 1.8% of GDP (1989 est.)\n\n:Chad Geography\n\nTotal area:\n    1,284,000 km2\nLand area:\n    1,259,200 km2\nComparative area:\n    slightly more than three times the size of California\nLand boundaries:\n    5,968 km; Cameroon 1,094 km, Central African Republic 1,197 km, Libya 1,055\n    km, Niger 1,175 km, Nigeria 87 km, Sudan 1,360 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Libya claims and occupies the 100,000 km2 Aozou Strip in the far north;\n    demarcation of international boundaries in Lake Chad, the lack of which has\n    led to border incidents in the past, is completed and awaiting ratification\n    by Cameroon, Chad, Niger, and Nigeria\nClimate:\n    tropical in south, desert in north\nTerrain:\n    broad, arid plains in center, desert in north, mountains in northwest,\n    lowlands in south\nNatural resources:\n    crude oil (unexploited but exploration under way), uranium, natron, kaolin,\n    fish (Lake Chad)\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 36%; forest and\n    woodland 11%; other 51%; includes irrigated NEGL%\nEnvironment:\n    hot, dry, dusty harmattan winds occur in north; drought and desertification\n    adversely affecting south; subject to plagues of locusts\nNote:\n    landlocked; Lake Chad is the most significant water body in the Sahel\n\n:Chad People\n\nPopulation:\n    5,238,908 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    42 births/1,000 population (1992)\nDeath rate:\n    21 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    136 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    39 years male, 41 years female (1992)\nTotal fertility rate:\n    5.3 children born/woman (1992)\nNationality:\n    noun - Chadian(s); adjective - Chadian\nEthnic divisions:\n    some 200 distinct ethnic groups, most of whom are Muslims (Arabs, Toubou,\n    Hadjerai, Fulbe, Kotoko, Kanembou, Baguirmi, Boulala, Zaghawa, and Maba) in\n    the north and center and non-Muslims (Sara, Ngambaye, Mbaye, Goulaye,\n    Moundang, Moussei, Massa) in the south; some 150,000 nonindigenous, of whom\n    1,000 are French\nReligions:\n    Muslim 44%, Christian 33%, indigenous beliefs, animism 23%\nLanguages:\n    French and Arabic (official); Sara and Sango in south; more than 100\n    different languages and dialects are spoken\nLiteracy:\n    30% (male 42%, female 18%) age 15 and over can read and write French or\n    Arabic (1990 est.)\nLabor force:\n    NA; agriculture (engaged in unpaid subsistence farming, herding, and\n    fishing) 85%\nOrganized labor:\n    about 20% of wage labor force\n\n:Chad Government\n\nLong-form name:\n    Republic of Chad\nType:\n    republic\nCapital:\n    N'Djamena\nAdministrative divisions:\n    14 prefectures (prefectures, singular - prefecture); Batha, Biltine,\n    Borkou-Ennedi-Tibesti, Chari-Baguirmi, Guera, Kanem, Lac, Logone Occidental,\n    Logone Oriental, Mayo-Kebbi, Moyen-Chari, Ouaddai, Salamat, Tandjile\nIndependence:\n    11 August 1960 (from France)\nConstitution:\n    22 December 1989, suspended 3 December 1990; Provisional National Charter 1\n    March 1991\nLegal system:\n    based on French civil law system and Chadian customary law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    11 August\nExecutive branch:\n    president, Council of State (cabinet)\nLegislative branch:\n    the National Consultative Council (Conseil National Consultatif) was\n    disbanded 3 December 1990 and replaced by the Provisional Council of the\n    Republic; 30 members appointed by President DEBY on 8 March 1991\nJudicial branch:\n    Court of Appeal\nLeaders:\n  Chief of State:\n    Col. Idriss DEBY (since 4 December 1990)\n  Head of Government:\n    Prime Minister Jean ALINGUE Bawoyeu (since 8 March 1991)\nPolitical parties and leaders:\n    Patriotic Salvation Movement (MPS; former dissident group), Idriss DEBY,\n    chairman; President DEBY has promised political pluralism, a new\n    constitution, and free elections by September 1993; numerous dissident\n    groups; national conference to be held in 1992\nSuffrage:\n    universal at age NA\nElections:\n  National Consultative Council:\n    last held 8 July 1990; disbanded 3 December 1990\n  President:\n    last held 10 December 1989 (next to be held NA); results - President Hissein\n    HABRE was elected without opposition; note - the government of then\n    President HABRE fell on 1 December 1990, and Idriss DEBY seized power on 3\n    December 1990; national conference scheduled for mid-1992 and election to\n    follow in 1993\nCommunists:\n    no front organizations or underground party; probably a few Communists and\n    some sympathizers\nOther political or pressure groups:\n    NA\nMember of:\n    ACCT, ACP, AfDB, BDEAC, CEEAC, ECA, FAO, FZ, G-77, GATT, IBRD, ICAO, ICFTU,\n    IDA, IDB, IFAD, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU,\n    OIC, UDEAC, UN, UNCTAD, UNESCO, UPU, WCL, WHO, WIPO, WMO, WTO\n\n:Chad Government\n\nDiplomatic representation:\n    Ambassador ACHEIKH ibn Oumar; Chancery at 2002 R Street NW, Washington, DC\n    20009; telephone (202) 462-4009\n  US:\n    Ambassador Richard W. BOGOSIAN; Embassy at Avenue Felix Eboue, N'Djamena\n    (mailing address is B. P. 413, N'Djamena); telephone [235] (51) 62-18,\n    40-09, or 51-62-11; FAX [235] 51-33-72\nFlag:\n    three equal vertical bands of blue (hoist side), yellow, and red; similar to\n    the flag of Romania; also similar to the flag of Andorra, which has a\n    national coat of arms featuring a quartered shield centered in the yellow\n    band; design was based on the flag of France\n\n:Chad Economy\n\nOverview:\n    The climate, geographic location, and lack of infrastructure and natural\n    resources potential make Chad one of the most underdeveloped countries in\n    the world. Its economy is burdened by the ravages of civil war, conflict\n    with Libya, drought, and food shortages. In 1986 real GDP returned to its\n    1977 level, with cotton, the major cash crop, accounting for 48% of exports.\n    Over 80% of the work force is employed in subsistence farming and fishing.\n    Industry is based almost entirely on the processing of agricultural\n    products, including cotton, sugarcane, and cattle. Chad is highly dependent\n    on foreign aid, with its economy in trouble and many regions suffering from\n    shortages. Oil companies are exploring areas north of Lake Chad and in the\n    Doba basin in the south. Since coming to power in December 1990, the Deby\n    government has experienced a year of economic chaos.\nGDP:\n    exchange rate conversion - $1.0 billion, per capita $205; real growth rate\n    0.9% (1989 est.)\nInflation rate (consumer prices):\n    --4.9% (1989)\nUnemployment rate:\n    NA\nBudget:\n    entirely funded by outside donors\nExports:\n    $174 million (f.o.b., 1990 est.)\n  commodities:\n    cotton 48%, cattle 35%, textiles 5%, fish\n  partners:\n    France, Nigeria, Cameroon\nImports:\n    $264 million (c.i.f., 1990 est.)\n  commodities:\n    machinery and transportation equipment 39%, industrial goods 20%, petroleum\n    products 13%, foodstuffs 9%; note - excludes military equipment\n  partners:\n    US, France, Nigeria, Cameroon\nExternal debt:\n    $530 million (December 1990 est.)\nIndustrial production:\n    growth rate 12.9% (1989 est.); accounts for nearly 15% of GDP\nElectricity:\n    40,000 kW capacity; 70 million kWh produced, 15 kWh per capita (1991)\nIndustries:\n    cotton textile mills, slaughterhouses, brewery, natron (sodium carbonate),\n    soap, cigarettes\nAgriculture:\n    accounts for about 45% of GDP; largely subsistence farming; cotton most\n    important cash crop; food crops include sorghum, millet, peanuts, rice,\n    potatoes, manioc; livestock - cattle, sheep, goats, camels; self-sufficient\n    in food in years of adequate rainfall\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $198 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.5 billion; OPEC\n    bilateral aid (1979-89), $28 million; Communist countries (1970-89), $80\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\n\n:Chad Economy\n\nExchange rates:\n    Communaute Financiere Africaine Francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Chad Communications\n\nHighways:\n    31,322 km total; 32 km bituminous; 7,300 km gravel and laterite; remainder\n    unimproved earth\nInland waterways:\n    2,000 km navigable\nCivil air:\n    3 major transport aircraft\nAirports:\n    71 total, 55 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 4 with runways 2,440-3,659 m; 25 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of radiocommunication stations for intercity links; broadcast\n    stations - 6 AM, 1 FM, limited TV service; many facilities are inoperative;\n    1 Atlantic Ocean INTELSAT earth station\n\n:Chad Defense Forces\n\nBranches:\n    Army (includes Ground Forces, Air Force, and Gendarmerie), National Police,\n    Republican Guard\nManpower availability:\n    males 15-49, 1,217,728; 632,833 fit for military service; 50,966 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $39 million, 4.3% of GDP (1988)\n\n:Chile Geography\n\nTotal area:\n    756,950 km2\nLand area:\n    748,800 km2; includes Isla de Pascua (Easter Island) and Isla Sala y Gomez\nComparative area:\n    slightly smaller than twice the size of Montana\nLand boundaries:\n    6,171 km; Argentina 5,150 km, Bolivia 861 km, Peru 160 km\nCoastline:\n    6,435 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    short section of the southern boundary with Argentina is indefinite; Bolivia\n    has wanted a sovereign corridor to the South Pacific Ocean since the Atacama\n    area was lost to Chile in 1884; dispute with Bolivia over Rio Lauca water\n    rights; territorial claim in Antarctica (Chilean Antarctic Territory)\n    partially overlaps Argentine claim\nClimate:\n    temperate; desert in north; cool and damp in south\nTerrain:\n    low coastal mountains; fertile central valley; rugged Andes in east\nNatural resources:\n    copper, timber, iron ore, nitrates, precious metals, molybdenum\nLand use:\n    arable land 7%; permanent crops NEGL%; meadows and pastures 16%; forest and\n    woodland 21%; other 56%; includes irrigated 2%\nEnvironment:\n    subject to severe earthquakes, active volcanism, tsunami; Atacama Desert one\n    of world's driest regions; desertification\nNote:\n    strategic location relative to sea lanes between Atlantic and Pacific Oceans\n    (Strait of Magellan, Beagle Channel, Drake Passage)\n\n:Chile People\n\nPopulation:\n    13,528,945 (July 1992), growth rate 1.6% (1992)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    17 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 77 years female (1992)\nTotal fertility rate:\n    2.5 children born/woman (1992)\nNationality:\n    noun - Chilean(s); adjective - Chilean\nEthnic divisions:\n    European and European-Indian 95%, Indian 3%, other 2%\nReligions:\n    Roman Catholic 89%, Protestant 11%, and small Jewish population\nLanguages:\n    Spanish\nLiteracy:\n    93% (male 94%, female 93%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,728,000; services 38.3% (includes government 12%); industry and commerce\n    33.8%; agriculture, forestry, and fishing 19.2%; mining 2.3%; construction\n    6.4% (1990)\nOrganized labor:\n    13% of labor force (1990)\n\n:Chile Government\n\nLong-form name:\n    Republic of Chile\nType:\n    republic\nCapital:\n    Santiago\nAdministrative divisions:\n    13 regions (regiones, singular - region); Aisen del General Carlos Ibanez\n    del Campo, Antofagasta, Araucania, Atacama, Bio-Bio, Coquimbo, Libertador\n    General Bernardo O'Higgins, Los Lagos, Magallanes y de la Antartica Chilena,\n    Maule, Region Metropolitana, Tarapaca, Valparaiso; note - the US does not\n    recognize claims to Antarctica\nIndependence:\n    18 September 1810 (from Spain)\nConstitution:\n    11 September 1980, effective 11 March 1981; amended 30 July 1989\nLegal system:\n    based on Code of 1857 derived from Spanish law and subsequent codes\n    influenced by French and Austrian law; judicial review of legislative acts\n    in the Supreme Court; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 18 September (1810)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congreso Nacional) consisting of an upper house\n    or Senate (Senado) and a lower house or Chamber of Deputies (Camara de\n    Diputados)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Patricio AYLWIN Azocar (since 11 March 1990)\nPolitical parties and leaders:\n    Concertation of Parties for Democracy now consists mainly of five parties -\n    Christian Democratic Party (PDC), Eduardo FREI Ruiz-Tagle; Party for\n    Democracy (PPD), Erich SCHNAKE; Radical Party (PR), Carlos GONZALEZ Marquez;\n    Social Democratic Party (PSP), Roberto MUNOZ Barros; Socialist Party (PS),\n    Ricardo NUNEZ; National Renovation (RN), Andres ALLAMAND; Independent\n    Democratic Union (UDI), Julio DITTBORN; Center-Center Union (UCC), Francisco\n    Juner ERRAZURIZA; Communist Party of Chile (PCCh), Volodia TEITELBOIM;\n    Movement of Revolutionary Left (MIR) is splintered, no single leader\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Chamber of Deputies:\n    last held 14 December 1989 (next to be held December 1993 or January 1994);\n    results - percent of vote by party NA; seats - (120 total) Concertation of\n    Parties for Democracy 72 (PDC 38, PPD 17, PR 5, other 12), RN 29, UDI 11,\n    right-wing independents 8\n  President:\n    last held 14 December 1989 (next to be held December 1993 or January 1994);\n    results - Patricio AYLWIN (PDC) 55.2%, Hernan BUCHI 29.4%, other 15.4%\n  Senate:\n    last held 14 December 1989 (next to be held December 1993 or January 1994);\n    results - percent of vote by party NA; seats - (46 total, 38 elected)\n    Concertation of Parties for Democracy 22 (PDC 13, PPD 5, PR 2, PSD 1, PRSD\n    1), RN 6, UDI 2, independents 8\n\n:Chile Government\n\nCommunists:\n    The PCCh has legal party status and has less than 60,000 members\nOther political or pressure groups:\n    revitalized university student federations at all major universities\n    dominated by opposition political groups; labor - United Labor Central (CUT)\n    includes trade unionists from the country's five largest labor\n    confederations; Roman Catholic Church\nMember of:\n    CCC, ECLAC, FAO, G-11, G-77, GATT, IADB, IAEA, IBRD, ICAO, ICFTU, IDA, IFAD,\n    IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LAES,\n    LAIA, LORCS, OAS, OPANAL, PCA, RG, UN, UNCTAD, UNESCO, UNIDO, UNMOGIP,\n    UNTSO, UPU, WCL, WFTV, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Patricio SILVA Echenique; Chancery at 1732 Massachusetts Avenue\n    NW, Washington, DC 20036; telephone (202) 785-1746; there are Chilean\n    Consulates General in Houston, Los Angeles, Miami, New York, Philadelphia,\n    and San Francisco\n  US:\n    Ambassador Curtis KAMMAN; Embassy at Codina Building, 1343 Agustinas,\n    Santiago (mailing address is APO AA 34033); telephone [56] (2) 671-0133; FAX\n    [56] (2) 699-1141\nFlag:\n    two equal horizontal bands of white (top) and red; there is a blue square\n    the same height as the white band at the hoist-side end of the white band;\n    the square bears a white five-pointed star in the center; design was based\n    on the US flag\n\n:Chile Economy\n\nOverview:\n    The government of President Aylwin, which took power in 1990, has opted to\n    retain the orthodox economic policies of Pinochet, although the share of\n    spending for social welfare has risen slightly. In 1991 growth in GDP\n    recovered to 5.5% (led by consumer spending) after only 2.1% growth in 1990.\n    The tight monetary policy of 1990 helped cut the rate of inflation from\n    27.3% in 1990 to 18.7% in 1991. Despite a 12% drop in copper prices, the\n    trade surplus rose in 1991, and international reserves increased.\n    Inflationary pressures are not expected to ease much in 1992, and economic\n    growth is likely to approach 7%.\nGDP:\n    exchange rate conversion - $30.5 billion, per capita $2,300; real growth\n    rate 5.5% (1991 est.)\nInflation rate (consumer prices):\n    18.7% (1991)\nUnemployment rate:\n    6.5% (1991)\nBudget:\n    revenues $7.6 billion; expenditures $8.3 billion, including capital\n    expenditures of $772 million (1991 est.)\nExports:\n    $8.9 billion (f.o.b., 1991)\n  commodities:\n    copper 50%, other metals and minerals 7%, wood products 6.5%, fish and\n    fishmeal 9%, fruits 5% (1989)\n  partners:\n    EC 36%, US 18%, Japan 14%, Brazil 6% (1989)\nImports:\n    $7.4 billion (f.o.b., 1991)\n  commodities:\n    petroleum, wheat, capital goods, spare parts, raw materials\n  partners:\n    EC 20%, US 20%, Japan 11%, Brazil 10% (1989)\nExternal debt:\n    $16.2 billion (October 1991)\nIndustrial production:\n    growth rate 5.9% (1991 est.); accounts for 36% of GDP\nElectricity:\n    5,502,800 kW capacity; 21,470 million kWh produced, 1,616 kWh per capita\n    (1991)\nIndustries:\n    copper, other minerals, foodstuffs, fish processing, iron and steel, wood\n    and wood products, transport equipment, cement, textiles\nAgriculture:\n    accounts for about 9% of GDP (including fishing and forestry); major\n    exporter of fruit, fish, and timber products; major crops - wheat, corn,\n    grapes, beans, sugar beets, potatoes, deciduous fruit; livestock products -\n    beef, poultry, wool; self-sufficient in most foods; 1989 fish catch of 6.1\n    million metric tons; net agricultural importer\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $521 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.6 billion;\n    Communist countries (1970-89), $386 million\nCurrency:\n    Chilean peso (plural - pesos); 1 Chilean peso (Ch$) = 100 centavos\nExchange rates:\n    Chilean pesos (Ch$) per US$1 - 368.66 (January 1992), 349.37 (1991), 305.06\n    (1990), 267.16 (1989), 245.05 (1988), 219.54 (1987)\n\n:Chile Economy\n\nFiscal year:\n    calendar year\n\n:Chile Communications\n\nRailroads:\n    7,766 km total; 3,974 km 1.676-meter gauge, 150 km 1.435-meter standard\n    gauge, 3,642 km 1.000-meter gauge; electrification, 1,865 km 1.676-meter\n    gauge, 80 km 1.000-meter gauge\nHighways:\n    79,025 km total; 9,913 km paved, 33,140 km gravel, 35,972 km improved and\n    unimproved earth (1984)\nInland waterways:\n    725 km\nPipelines:\n    crude oil 755 km; petroleum products 785 km; natural gas 320 km\nPorts:\n    Antofagasta, Iquique, Puerto Montt, Punta Arenas, Valparaiso, San Antonio,\n    Talcahuano, Arica\nMerchant marine:\n    33 ships (1,000 GRT or over) totaling 468,873 GRT/780,932 DWT; includes 11\n    cargo, 1 refrigerated cargo, 3 roll-on/roll-off cargo, 2 petroleum tanker, 1\n    chemical tanker, 3 liquefied gas, 3 combination ore/oil, 9 bulk; note - in\n    addition, 2 naval tanker and 2 military transport are sometimes used\n    commercially\nCivil air:\n    29 major transport aircraft\nAirports:\n    390 total, 349 usable; 48 with permanent-surface runways; none with runways\n    over 3,659 m; 12 with runways 2,440-3,659 m; 58 with runways 1,220-2,439 m\nTelecommunications:\n    modern telephone system based on extensive microwave relay facilities;\n    768,000 telephones; broadcast stations - 159 AM, no FM, 131 TV, 11\n    shortwave; satellite ground stations - 2 Atlantic Ocean INTELSAT and 3\n    domestic\n\n:Chile Defense Forces\n\nBranches:\n    Army of the Nation, National Navy (including Naval Air, Coast Guard, and\n    Marines), Air Force of the Nation, Carabineros of Chile (National Police),\n    Investigative Police\nManpower availability:\n    males 15-49, 3,600,654; 2,685,924 fit for military service; 118,480 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $1 billion, 3.4% of GDP (1991 est.)\n\n:China Geography\n\nTotal area:\n    9,596,960 km2\nLand area:\n    9,326,410 km2\nComparative area:\n    slightly larger than the US\nLand boundaries:\n    22,143.34 km; Afghanistan 76 km, Bhutan 470 km, Burma 2,185 km, Hong Kong 30\n    km, India 3,380 km, Kazakhstan 1,533 km, North Korea 1,416 km, Kyrgyzstan\n    858 km, Laos 423 km, Macau 0.34 km, Mongolia 4,673 km, Nepal 1,236 km,\n    Pakistan 523 km, Russia (northeast) 3,605 km, Russia (northwest) 40 km,\n    Tajikistan 414 km, Vietnam 1,281 km\nCoastline:\n    14,500 km\nMaritime claims:\n  Continental shelf:\n    claim to shallow areas of East China Sea and Yellow Sea\n  Territorial sea:\n    12 nm\nDisputes:\n    boundary with India; bilateral negotiations are under way to resolve\n    disputed sections of the boundary with Russia; boundary with Tajikistan\n    under dispute: a short section of the boundary with North Korea is\n    indefinite; involved in a complex dispute over the Spratly Islands with\n    Malaysia, Philippines, Taiwan, Vietnam, and possibly Brunei; maritime\n    boundary dispute with Vietnam in the Gulf of Tonkin; Paracel Islands\n    occupied by China, but claimed by Vietnam and Taiwan; claims\n    Japanese-administered Senkaku-shoto, as does Taiwan, (Senkaku Islands/Diaoyu\n    Tai)\nClimate:\n    extremely diverse; tropical in south to subarctic in north\nTerrain:\n    mostly mountains, high plateaus, deserts in west; plains, deltas, and hills\n    in east\nNatural resources:\n    coal, iron ore, crude oil, mercury, tin, tungsten, antimony, manganese,\n    molybdenum, vanadium, magnetite, aluminum, lead, zinc, uranium, world's\n    largest hydropower potential\nLand use:\n    arable land 10%; permanent crops NEGL%; meadows and pastures 31%; forest and\n    woodland 14%; other 45%; includes irrigated 5%\nEnvironment:\n    frequent typhoons (about five times per year along southern and eastern\n    coasts), damaging floods, tsunamis, earthquakes; deforestation; soil\n    erosion; industrial pollution; water pollution; air pollution;\n    desertification\nNote:\n    world's third-largest country (after Russia and Canada)\n\n:China People\n\nPopulation:\n    1,169,619,601 (July 1992), growth rate 1.6% (1992)\nBirth rate:\n    22 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    32 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 72 years female (1992)\nTotal fertility rate:\n    2.3 children born/woman (1992)\nNationality:\n    noun - Chinese (singular and plural); adjective - Chinese\nEthnic divisions:\n    Han Chinese 93.3%; Zhuang, Uygur, Hui, Yi, Tibetan, Miao, Manchu, Mongol,\n    Buyi, Korean, and other nationalities 6.7%\nReligions:\n    officially atheist, but traditionally pragmatic and eclectic; most important\n    elements of religion are Confucianism, Taoism, and Buddhism; Muslim 2-3%,\n    Christian 1% (est.)\nLanguages:\n    Standard Chinese (Putonghua) or Mandarin (based on the Beijing dialect);\n    also Yue (Cantonese), Wu (Shanghainese), Minbei (Fuzhou), Minnan\n    (Hokkien-Taiwanese), Xiang, Gan, Hakka dialects, and minority languages (see\n    ethnic divisions)\nLiteracy:\n    73% (male 84%, female 62%) age 15 and over can read and write (1990 est.)\nLabor force:\n    567,400,000; agriculture and forestry 60%, industry and commerce 25%,\n    construction and mining 5%, social services 5%, other 5% (1990 est.)\nOrganized labor:\n    All-China Federation of Trade Unions (ACFTU) follows the leadership of the\n    Chinese Communist Party; membership over 80 million or about 65% of the\n    urban work force (1985)\n\n:China Government\n\nLong-form name:\n    People's Republic of China; abbreviated PRC\nType:\n    Communist Party - led state\nCapital:\n    Beijing\nAdministrative divisions:\n    23 provinces (sheng, singular and plural), 5 autonomous regions* (zizhiqu,\n    singular and plural), and 3 municipalities** (shi, singular and plural);\n    Anhui, Beijing Shi**, Fujian, Gansu, Guangdong, Guangxi*, Guizhou, Hainan,\n    Hebei, Heilongjiang, Henan, Hubei, Hunan, Jiangsu, Jiangxi, Jilin, Liaoning,\n    Nei Mongol*, Ningxia*, Qinghai, Shaanxi, Shandong, Shanghai Shi**, Shanxi,\n    Sichuan, Tianjin Shi**, Xinjiang*, Xizang*, Yunnan, Zhejiang; note - China\n    considers Taiwan its 23rd province\nIndependence:\n    unification under the Qin (Ch'in) Dynasty 221 BC, Qing (Ch'ing) Dynasty\n    replaced by the Republic on 12 February 1912, People's Republic established\n    1 October 1949\nConstitution:\n    most recent promulgated 4 December 1982\nLegal system:\n    a complex amalgam of custom and statute, largely criminal law; rudimentary\n    civil code in effect since 1 January 1987; new legal codes in effect since 1\n    January 1980; continuing efforts are being made to improve civil,\n    administrative, criminal, and commercial law\nNational holiday:\n    National Day, 1 October (1949)\nExecutive branch:\n    president, vice president, premier, five vice premiers, State Council\nLegislative branch:\n    unicameral National People's Congress (Quanguo Renmin Daibiao Dahui)\nJudicial branch:\n    Supreme People's Court\nLeaders:\n  Chief of State:\n    President YANG Shangkun (since 8 April 1988); Vice President WANG Zhen\n    (since 8 April 1988)\n  Chief of State and Head of Government (de facto):\n    DENG Xiaoping (since mid-1977)\n  Head of Government:\n    Premier LI Peng (Acting Premier since 24 November 1987, Premier since 9\n    April 1988); Vice Premier YAO Yilin (since 2 July 1979); Vice Premier TIAN\n    Jiyun (since 20 June 1983); Vice Premier WU Xueqian (since 12 April 1988);\n    Vice Premier ZOU Jiahua (since 8 April 1991); Vice Premier ZHU Rongji (since\n    8 April 1991)\nPolitical parties and leaders:\n    - Chinese Communist Party (CCP), JIANG Zemin, general secretary of the\n    Central Committee (since 24 June 1989); also, eight registered small parties\n    controlled by CCP\nSuffrage:\n    universal at age 18\nElections:\n  National People's Congress:\n    last held March 1988 (next to be held March 1993); results - CCP is the only\n    party but there are also independents; seats - (2,976 total) CCP and\n    independents 2,976 (indirectly elected at county or xian level)\n  President:\n    last held 8 April 1988 (next to be held March 1993); results - YANG Shangkun\n    was nominally elected by the Seventh National People's Congress\n\n:China Government\n\nCommunists:\n    49,000,000 party members (1990 est.)\nOther political or pressure groups:\n    such meaningful opposition as exists consists of loose coalitions, usually\n    within the party and government organization, that vary by issue\nMember of:\n    AfDB, APEC, AsDB, CCC, ESCAP, FAO, IAEA, IBRD, ICAO, IDA, IFAD, IFC, ILO,\n    IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, PCA, UN,\n    UNCTAD, UNESCO, UNHCR, UNIDO, UN Security Council, UNTSO, UN Trusteeship\n    Council, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador ZHU Qizhen; Chancery at 2300 Connecticut Avenue NW, Washington,\n    DC 20008; telephone (202) 328-2500 through 2502; there are Chinese\n    Consulates General in Chicago, Houston, Los Angeles, New York, and San\n    Francisco\n  US:\n    Ambassador J. Stapleton ROY; Embassy at Xiu Shui Bei Jie 3, Beijing (mailing\n    address is 100600, PSC 461, Box 50, Beijing or FPO AP 96521-0002); telephone\n    [86] (1) 532-3831; FAX [86] (1) 532-3178; there are US Consulates General in\n    Chengdu, Guangzhou, Shanghai, and Shenyang\nFlag:\n    red with a large yellow five-pointed star and four smaller yellow\n    five-pointed stars (arranged in a vertical arc toward the middle of the\n    flag) in the upper hoist-side corner\n\n:China Economy\n\nOverview:\n    Beginning in late 1978 the Chinese leadership has been trying to move the\n    economy from the sluggish Soviet-style centrally planned economy to a more\n    productive and flexible economy with market elements, but still within the\n    framework of monolithic Communist control. To this end the authorities have\n    switched to a system of household responsibility in agriculture in place of\n    the old collectivization, increased the authority of local officials and\n    plant managers in industry, permitted a wide variety of small-scale\n    enterprise in services and light manufacturing, and opened the foreign\n    economic sector to increased trade and joint ventures. The most gratifying\n    result has been a strong spurt in production, particularly in agriculture in\n    the early 1980s. Industry also has posted major gains, especially in coastal\n    areas near Hong Kong and opposite Taiwan, where foreign investment and\n    modern production methods have helped spur production of both domestic and\n    export goods. Aggregate output has more than doubled since 1978. On the\n    darker side, the leadership has often experienced in its hybrid system the\n    worst results of socialism (bureaucracy, lassitude, corruption) and of\n    capitalism (windfall gains and stepped-up inflation). Beijing thus has\n    periodically backtracked, retightening central controls at intervals and\n    thereby lessening the credibility of the reform process. In 1991 output rose\n    substantially, particularly in the favored coastal areas. Popular\n    resistance, changes in central policy, and loss of authority by rural cadres\n    have weakened China's population control program, which is essential to the\n    nation's long-term economic viability.\nGNP:\n    $NA, per capita $NA; real growth rate 6% (1991)\nInflation rate (consumer prices):\n    2.1% (1991)\nUnemployment rate:\n    4.0% in urban areas (1991)\nBudget:\n    deficit $9.5 billion (1990)\nExports:\n    $71.9 billion (f.o.b., 1991)\n  commodities:\n    textiles, garments, telecommunications and recording equipment, petroleum,\n    minerals\n  partners:\n    Hong Kong, Japan, US, USSR, Singapore (1990)\nImports:\n    $63.8 billion (c.i.f., 1991)\n  commodities:\n    specialized industrial machinery, chemicals, manufactured goods, steel,\n    textile yarn, fertilizer\n  partners:\n    Hong Kong, Japan, US, Germany, Taiwan (1990)\nExternal debt:\n    $51 billion (1990 est.)\nIndustrial production:\n    growth rate 14.0% (1991); accounts for 45% of GNP\nElectricity:\n    138,000,000 kW capacity (1990); 670,000 million kWh produced (1991), 582 kWh\n    per capita (1991)\nIndustries:\n    iron, steel, coal, machine building, armaments, textiles, petroleum, cement,\n    chemical fertilizers, consumer durables, food processing\n\n:China Economy\n\nAgriculture:\n    accounts for 26% of GNP; among the world's largest producers of rice,\n    potatoes, sorghum, peanuts, tea, millet, barley, and pork; commercial crops\n    include cotton, other fibers, and oilseeds; produces variety of livestock\n    products; basically self-sufficient in food; fish catch of 8 million metric\n    tons in 1986\nIllicit drugs:\n    transshipment point for heroin produced in the Golden Triangle\nEconomic aid:\n    donor - to less developed countries (1970-89) $7.0 billion; US commitments,\n    including Ex-Im (FY70-87), $220.7 million; Western (non-US) countries, ODA\n    and OOF bilateral commitments (1970-87), $13.5 billion\nCurrency:\n    yuan (plural - yuan); 1 yuan (Y) = 10 jiao\nExchange rates:\n    yuan (Y) per US$1 - 5.4481 (January 1992), 5.3234 (1991), 4.7832 (1990),\n    3.7651 (1989), 3.7221 (1988), 3.7221 (1987)\nFiscal year:\n    calendar year\n\n:China Communications\n\nRailroads:\n    total about 54,000 km common carrier lines; 53,400 km 1.435-meter standard\n    gauge; 600 km 1.000-meter gauge; of these 11,200 km are double track\n    standard-gauge lines; 6,900 km electrified (1990); 10,000 km dedicated\n    industrial lines (gauges range from 0.762 to 1.067 meters)\nHighways:\n    about 1,029,000 km (1990) all types roads; 170,000 km (est.) paved roads,\n    648,000 km (est.) gravel/improved earth roads, 211,000 km (est.) unimproved\n    earth roads and tracks\nInland waterways:\n    138,600 km; about 109,800 km navigable\nPipelines:\n    crude oil 9,700 km (1990); petroleum products 1,100 km; natural gas 6,200 km\nPorts:\n    Dalian, Guangzhou, Huangpu, Qingdao, Qinhuangdao, Shanghai, Xingang,\n    Zhanjiang, Ningbo, Xiamen, Tanggu, Shantou\nMerchant marine:\n    1,454 ships (1,000 GRT or over) totaling 13,887,312 GRT/20,916,127 DWT;\n    includes 25 passenger, 42 short-sea passenger, 18 passenger-cargo, 6\n    cargo/training, 801 cargo, 10 refrigerated cargo, 77 container, 19\n    roll-on/roll-off cargo, 1 multifunction/barge carrier, 177 petroleum tanker,\n    10 chemical tanker, 254 bulk, 3 liquefied gas, 1 vehicle carrier, 9\n    combination bulk, 1 barge carrier; note - China beneficially owns an\n    additional 194 ships (1,000 GRT or over) totaling approximately 7,077,089\n    DWT that operate under Panamanian, British, Hong Kong, Maltese, Liberian,\n    Vanuatu, Cyprus, and Saint Vincent registry\nCivil air:\n    284 major transport aircraft (1988 est.)\nAirports:\n    330 total, 330 usable; 260 with permanent-surface runways; fewer than 10\n    with runways over 3,500 m; 90 with runways 2,440-3,659 m; 200 with runways\n    1,220-2,439 m\nTelecommunications:\n    domestic and international services are increasingly available for private\n    use; unevenly distributed internal system serves principal cities,\n    industrial centers, and most townships; 11,000,000 telephones (December\n    1989); broadcast stations - 274 AM, unknown FM, 202 (2,050 repeaters) TV;\n    more than 215 million radio receivers; 75 million TVs; satellite earth\n    stations - 4 Pacific Ocean INTELSAT, 1 Indian Ocean INTELSAT, 1 INMARSAT,\n    and 55 domestic\n\n:China Defense Forces\n\nBranches:\n    People's Liberation Army (PLA), PLA Navy (including Marines), PLA Air Force,\n    People's Armed Police\nManpower availability:\n    males 15-49, 339,554,712; 188,995,620 fit for military service; 11,691,967\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $12-15 billion, NA of GNP (1991 est.)\n\n:Christmas Island Geography\n\nTotal area:\n    135 km2\nLand area:\n    135 km2\nComparative area:\n    about 0.8 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    138.9 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical; heat and humidity moderated by trade winds\nTerrain:\n    steep cliffs along coast rise abruptly to central plateau\nNatural resources:\n    phosphate\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    almost completely surrounded by a reef\nNote:\n    located along major sea lanes of Indian Ocean\n\n:Christmas Island People\n\nPopulation:\n    929 (July 1992), growth rate NA% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Christmas Islander(s); adjective - Christmas Island\nEthnic divisions:\n    Chinese 61%, Malay 25%, European 11%, other 3%; no indigenous population\nReligions:\n    Buddhist 36.1%, Muslim 25.4%, Christian 17.7% (Roman Catholic 8.2%, Church\n    of England 3.2%, Presbyterian 0.9%, Uniting Church 0.4%, Methodist 0.2%,\n    Baptist 0.1%, and other 4.7%), none 12.7%, unknown 4.6%, other 3.5% (1981)\nLanguages:\n    English\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA; all workers are employees of the Phosphate Mining Company of Christmas\n    Island, Ltd.\nOrganized labor:\n    NA\n\n:Christmas Island Government\n\nLong-form name:\n    Territory of Christmas Island\nType:\n    territory of Australia\nCapital:\n    The Settlement\nAdministrative divisions:\n    none (territory of Australia)\nIndependence:\n    none (territory of Australia)\nConstitution:\n    Christmas Island Act of 1958\nLegal system:\n    under the authority of the governor general of Australia\nNational holiday:\n    NA\nExecutive branch:\n    British monarch, governor general of Australia, administrator, Advisory\n    Council (cabinet)\nLegislative branch:\n    none\nJudicial branch:\n    none\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Administrator W. A. MCKENZIE (since NA)\nMember of:\n    none\nDiplomatic representation:\n    none (territory of Australia)\nFlag:\n    the flag of Australia is used\n\n:Christmas Island Economy\n\nOverview:\n    Phosphate mining had been the only significant economic activity, but in\n    December 1987 the Australian Government closed the mine as no longer\n    economically viable. Plans have been under way to reopen the mine and also\n    to build a casino and hotel to develop tourism, with a possible opening date\n    during the first half of 1992.\nGDP:\n    NA - $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $NA\n  commodities:\n    phosphate\n  partners:\n    Australia, NZ\nImports:\n    $NA\n  commodities:\n    NA\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    11,000 kW capacity; 30 million kWh produced, 13,170 kWh per capita (1990)\nIndustries:\n    phosphate extraction (near depletion)\nAgriculture:\n    NA\nEconomic aid:\n    none\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3360 (January 1992), 1.2836 (1991),\n    1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Christmas Island Communications\n\nPorts:\n    Flying Fish Cove\nAirports:\n    1 usable with permanent-surface runway 1,220-2,439 m\nTelecommunications:\n    4,000 radios (1982)\n\n:Christmas Island Defense Forces\n\nNote:\n    defense is the responsibility of Australia\n\n:Clipperton Island Geography\n\nTotal area:\n    7 km2\nLand area:\n    7 km2\nComparative area:\n    about 12 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    11.1 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Mexico\nClimate:\n    tropical\nTerrain:\n    coral atoll\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other (coral) 100%\nEnvironment:\n    reef about 8 km in circumference\nNote:\n    located 1,120 km southwest of Mexico in the North Pacific Ocean; also called\n    Ile de la Passion\n\n:Clipperton Island People\n\nPopulation:\n    uninhabited\n\n:Clipperton Island Government\n\nLong-form name:\n    none\nType:\n    French possession administered by France from French Polynesia by High\n    Commissioner of the Republic Jean MONTPEZAT\nCapital:\n    none; administered by France from French Polynesia\n\n:Clipperton Island Economy\n\nOverview:\n    The only economic activity is a tuna fishing station.\n\n:Clipperton Island Communications\n\nPorts:\n    none; offshore anchorage only\n\n:Clipperton Island Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Cocos Islands Geography\n\nTotal area:\n    14 km2\nLand area:\n    14 km2; main islands are West Island and Home Island\nComparative area:\n    about 24 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    2.6 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    pleasant, modified by the southeasttrade wind for about nine months of the\n    year; moderate rain fall\nTerrain:\n    flat, low-lying coral atolls\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    two coral atolls thickly covered with coconut palms and other vegetation\nNote:\n    located 1,070 km southwest of Sumatra (Indonesia) in the Indian Ocean about\n    halfway between Australia and Sri Lanka\n\n:Cocos Islands People\n\nPopulation:\n    597 (July 1992), growth rate - 0.5% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Cocos Islander(s); adjective - Cocos Islander\nEthnic divisions:\n    mostly Europeans on West Island and Cocos Malays on Home Island\nReligions:\n    almost all Sunni Muslims\nLanguages:\n    English\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    none\n\n:Cocos Islands Government\n\nLong-form name:\n    Territory of Cocos (Keeling) Islands\nType:\n    territory of Australia\nCapital:\n    West Island\nAdministrative divisions:\n    none (territory of Australia)\nIndependence:\n    none (territory of Australia)\nConstitution:\n    Cocos (Keeling) Islands Act of 1955\nLegal system:\n    based upon the laws of Australia and local laws\nNational holiday:\n    NA\nExecutive branch:\n    British monarch, governor general of Australia, administrator, chairman of\n    the Islands Council\nLegislative branch:\n    unicameral Islands Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Administrator B. CUNNINGHAM (since NA); Chairman of the Islands Council Haji\n    Wahin bin BYNIE (since NA)\nSuffrage:\n    NA\nElections:\n    NA\nMember of:\n    none\nDiplomatic representation:\n    none (territory of Australia)\nFlag:\n    the flag of Australia is used\n\n:Cocos Islands Economy\n\nOverview:\n    Grown throughout the islands, coconuts are the sole cash crop. Copra and\n    fresh coconuts are the major export earners. Small local gardens and fishing\n    contribute to the food supply, but additional food and most other\n    necessities must be imported from Australia.\nGDP:\n    $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $NA\n  commodities:\n    copra\n  partners:\n    Australia\nImports:\n    $NA\n  commodities:\n    foodstuffs\n  partners:\n    Australia\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    1,000 kW capacity; 2 million kWh produced, 2,980 kWh per capita (1990)\nIndustries:\n    copra products\nAgriculture:\n    gardens provide vegetables, bananas, pawpaws, coconuts\nEconomic aid:\n    none\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3360 (January 1992), 1.2836 (1991),\n    1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Cocos Islands Communications\n\nPorts:\n    none; lagoon anchorage only\nAirports:\n    1 airfield with permanent-surface runway, 1,220-2,439 m; airport on West\n    Island is a link in service between Australia and South Africa\nTelecommunications:\n    250 radios (1985); linked by telephone, telex, and facsimile communications\n    via satellite with Australia; broadcast stations - 1 AM, no FM, no TV\n\n:Cocos Islands Defense Forces\n\nNote:\n    defense is the responsibility of Australia\n\n:Colombia Geography\n\nTotal area:\n    1,138,910 km2\nLand area:\n    1,038,700 km2; includes Isla de Malpelo, Roncador Cay, Serrana Bank, and\n    Serranilla Bank\nComparative area:\n    slightly less than three times the size of Montana\nLand boundaries:\n    7,408 km; Brazil 1,643 km, Ecuador 590 km, Panama 225 km, Peru 2,900,\n    Venezuela 2,050 km\nCoastline:\n    3,208 km; Caribbean Sea 1,760 km, North Pacific Ocean 1,448 km\nMaritime claims:\n  Continental shelf:\n    not specified\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary dispute with Venezuela in the Gulf of Venezuela;\n    territorial dispute with Nicaragua over Archipelago de San Andres y\n    Providencia and Quita Sueno Bank\nClimate:\n    tropical along coast and eastern plains; cooler in highlands\nTerrain:\n    flat coastal lowlands, central highlands, high Andes mountains, eastern\n    lowland plains\nNatural resources:\n    crude oil, natural gas, coal, iron ore, nickel, gold, copper, emeralds\nLand use:\n    arable land 4%; permanent crops 2%; meadows and pastures 29%; forest and\n    woodland 49%; other 16%; includes irrigated NEGL%\nEnvironment:\n    highlands subject to volcanic eruptions; deforestation; soil damage from\n    overuse of pesticides; periodic droughts\nNote:\n    only South American country with coastlines on both North Pacific Ocean and\n    Caribbean Sea\n\n:Colombia People\n\nPopulation:\n    34,296,941 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    24 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    31 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 74 years female (1992)\nTotal fertility rate:\n    2.6 children born/woman (1992)\nNationality:\n    noun - Colombian(s); adjective - Colombian\nEthnic divisions:\n    mestizo 58%, white 20%, mulatto 14%, black 4%, mixed black-Indian 3%, Indian\n    1%\nReligions:\n    Roman Catholic 95%\nLanguages:\n    Spanish\nLiteracy:\n    87% (male 88%, female 86%) age 15 and over can read and write (1990 est.)\nLabor force:\n    12,000,000 (1990); services 46%, agriculture 30%, industry 24% (1990)\nOrganized labor:\n    984,000 members (1989), about 8.2% of labor force; the Communist-backed\n    Unitary Workers Central or CUT is the largest labor organization, with about\n    725,000 members (including all affiliate unions)\n\n:Colombia Government\n\nLong-form name:\n    Republic of Colombia\nType:\n    republic; executive branch dominates government structure\nCapital:\n    Bogota\nAdministrative divisions:\n    23 departments (departamentos, singular - departamento), 5 commissariats*\n    (comisarias, singular - comisaria), and 4 intendancies** (intendencias,\n    singular - intendencia); Amazonas*, Antioquia, Arauca**, Atlantico, Bolivar,\n    Boyaca, Caldas, Caqueta, Casanare**, Cauca, Cesar, Choco, Cordoba,\n    Cundinamarca, Guainia*, Guaviare*, Huila, La Guajira, Magdalena, Meta,\n    Narino, Norte de Santander, Putumayo**, Quindio, Risaralda, San Andres y\n    Providencia**, Santander, Sucre, Tolima, Valle del Cauca, Vaupes*, Vichada*;\n    note - there may be a new special district (distrito especial) named Bogota;\n    the Constitution of 5 July 1991 states that the commissariats and\n    intendancies are to become full departments and a capital district (distrito\n    capital) of Santa Fe de Bogota is to be established by 1997\nIndependence:\n    20 July 1810 (from Spain)\nConstitution:\n    5 July 1991\nLegal system:\n    based on Spanish law; judicial review of legislative acts in the Supreme\n    Court; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 20 July (1810)\nExecutive branch:\n    president, presidential designate, Cabinet\nLegislative branch:\n    bicameral Congress (Congreso) consists of a nationally elected upper chamber\n    or Senate (Senado) and a nationally elected lower chamber or House of\n    Representatives (Camara de Representantes)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justica)\nLeaders:\n  Chief of State and Head of Government:\n    President Cesar GAVIRIA Trujillo (since 7 August 1990)\nPolitical parties and leaders:\n    Liberal Party (PL), Cesar GAVIRIA Trujillo, president; Social Conservative\n    Party (PCS), Misael PASTRANA Borrero; National Salvation Movement (MSN),\n    Alvaro GOMEZ Hurtado; Democratic Alliance M-19 (AD/M-19) is headed by 19th\n    of April Movement (M-19) leader Antonio NAVARRO Wolf, coalition of small\n    leftist parties and dissident liberals and conservatives; Patriotic Union\n    (UP) is a legal political party formed by Revolutionary Armed Forces of\n    Colombia (FARC) and Colombian Communist Party (PCC), Carlos ROMERO\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 27 May 1990 (next to be held May 1994); results - Cesar GAVIRIA\n    Trujillo (Liberal) 47%, Alvaro GOMEZ Hurtado (National Salvation Movement)\n    24%, Antonio NAVARRO Wolff (M-19) 13%, Rodrigo LLOREDA (Conservative) 12%\n  Senate:\n    last held 27 October 1991 (next to be held March 1994); results - percent of\n    vote by party NA; seats - (102 total) Liberal 58, Conservative 22, AD/M-19\n    9, MSN 5, UP 1, others 7\n\n:Colombia Government\n\n  House of Representatives:\n    last held 27 October 1991 (next to be held March 1994); results - percent of\n    vote by party NA; seats - (161 total) Liberal 87, Conservative 31, AD/M-19\n    13, MSN 10, UP 3, other 17\nCommunists:\n    18,000 members (est.), including Communist Party Youth Organization (JUCO)\nOther political or pressure groups:\n    three insurgent groups are active in Colombia - Revolutionary Armed Forces\n    of Colombia (FARC), led by Manuel MARULANDA and Alfonso CANO; National\n    Liberation Army (ELN), led by Manuel PEREZ; and dissidents of the recently\n    demobilized People's Liberation Army (EPL) led by Francisco CARABALLO\nMember of:\n    AG, CDB, CG, ECLAC, FAO, G-3, G-11, G-24, G-77, GATT, IADB, IAEA, IBRD,\n    ICAO, ICC, ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, IOM, ISO, ITU, LAES, LAIA, LORCS, NAM, OAS, OPANAL, PCA, RG,\n    UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jaime GARCIA Parra; Chancery at 2118 Leroy Place NW, Washington,\n    DC 20008; telephone (202) 387-8338; there are Colombian Consulates General\n    in Chicago, Houston, Miami, New Orleans, New York, San Francisco, and San\n    Juan (Puerto Rico), and Consulates in Atlanta, Boston, Detroit, Los Angeles,\n    and Tampa\n  US:\n    Ambassador Morris D. BUSBY; Embassy at Calle 38, No. 8-61, Bogota (mailing\n    address is P. O. Box A. A. 3831, Bogota or APO AA 34038); telephone [57] (1)\n    285-1300 or 1688; FAX [571] 288-5687; there is a US Consulate in\n    Barranquilla\nFlag:\n    three horizontal bands of yellow (top, double-width), blue, and red; similar\n    to the flag of Ecuador, which is longer and bears the Ecuadorian coat of\n    arms superimposed in the center\n\n:Colombia Economy\n\nOverview:\n    Economic development has slowed gradually since 1986, but growth rates\n    remain high by Latin American standards. Conservative economic policies have\n    kept inflation and unemployment near 30% and 10%, respectively. The rapid\n    development of oil, coal, and other nontraditional industries over the past\n    four years has helped to offset the decline in coffee prices - Colombia's\n    major export. The collapse of the International Coffee Agreement in the\n    summer of 1989, a troublesome rural insurgency, and drug-related violence\n    have dampened growth, but significant economic reforms are likely to\n    facilitate a resurgent economy in the medium term. These reforms center on\n    fiscal restraint, trade liberalization, and privatization of state utilities\n    and commercial banks.\nGDP:\n    exchange rate conversion - $45 billion, per capita $1,300; real growth rate\n    3.7% (1990 est.)\nInflation rate (consumer prices):\n    26.8% (1991)\nUnemployment rate:\n    10.5% (1991)\nBudget:\n    revenues $4.39 billion; current expenditures $3.93 billion, capital\n    expenditures $1.03 billion (1989 est.)\nExports:\n    $7.5 billion (f.o.b., 1991)\n  commodities:\n    petroleum (19%), coffee, coal, bananas, fresh cut flowers\n  partners:\n    US 40%, EC 21%, Japan 5%, Netherlands 4%, Sweden 3%\nImports:\n    $6.1 billion (c.i.f., 1991)\n  commodities:\n    industrial equipment, transportation equipment, foodstuffs, chemicals, paper\n    products\n  partners:\n    US 36%, EC 16%, Brazil 4%, Venezuela 3%, Japan 3%\nExternal debt:\n    $17.0 billion (1991)\nIndustrial production:\n    growth rate 1% (1991 est.); accounts for 21% of GDP\nElectricity:\n    9,624,000 kW capacity; 38,856 million kWh produced, 1,150 kWh per capita\n    (1991)\nIndustries:\n    textiles, food processing, oil, clothing and footwear, beverages, chemicals,\n    metal products, cement; mining - gold, coal, emeralds, iron, nickel, silver,\n    salt\nAgriculture:\n    growth rate 3% (1991 est.) accounts for 22% of GDP; crops make up two-thirds\n    and livestock one-third of agricultural output; climate and soils permit a\n    wide variety of crops, such as coffee, rice, tobacco, corn, sugarcane, cocoa\n    beans, oilseeds, vegetables; forest products and shrimp farming are becoming\n    more important\nIllicit drugs:\n    illicit producer of cannabis, coca, and opium; about 37,500 hectares of coca\n    under cultivation; major supplier of cocaine to the US and other\n    international drug markets\n\n:Colombia Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.6 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3.3 billion,\n    Communist countries (1970-89), $399 million\nCurrency:\n    Colombian peso (plural - pesos); 1 Colombian peso (Col$) = 100 centavos\nExchange rates:\n    Colombian pesos (Col$) per US$1 - 711.88 (January 1992), 633.08 (1991),\n    550.00 (1990), 435.00 (1989), 336.00 (1988), 242.61 (1987)\nFiscal year:\n    calendar year\n\n:Colombia Communications\n\nRailroads:\n    3,386 km; 3,236 km 0.914-meter gauge, single track (2,611 km in use), 150 km\n    1. 435-meter gauge\nHighways:\n    75,450 km total; 9,350 km paved, 66,100 km earth and gravel surfaces\nInland waterways:\n    14,300 km, navigable by river boats\nPipelines:\n    crude oil 3,585 km; petroleum products 1,350 km; natural gas 830 km; natural\n    gas liquids 125 km\nPorts:\n    Barranquilla, Buenaventura, Cartagena, Covenas, San Andres, Santa Marta,\n    Tumaco\nMerchant marine:\n    31 ships (1,000 GRT or over) totaling 289,794 GRT/443,369 DWT; includes 9\n    cargo, 1 chemical tanker, 3 petroleum tanker, 8 bulk, 10 container; note -\n    in addition, 2 naval tankers are sometimes used commercially\nCivil air:\n    83 major transport aircraft\nAirports:\n    1,167 total, 1,023 usable; 70 with permanent-surface runways; 1 with runways\n    over 3,659 m; 8 with runways 2,440-3,659 m; 191 with runways 1,220-2,439 m\nTelecommunications:\n    nationwide radio relay system; 1,890,000 telephones; broadcast stations -\n    413 AM, no FM, 33 TV, 28 shortwave; 2 Atlantic Ocean INTELSAT earth stations\n    and 11 domestic satellite earth stations\n\n:Colombia Defense Forces\n\nBranches:\n    Army (Ejercito Nacional), Navy (Armada Nacional, including Marines), Air\n    Force (Fuerza Aerea de Colombia), National Police (Policia Nacional)\nManpower availability:\n    males 15-49, 9,214,691; 6,240,601 fit for military service; 353,691 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $624 million, 1.4% of GDP (1991)\n\n:Comoros Geography\n\nTotal area:\n    2,170 km2\nLand area:\n    2,170 km2\nComparative area:\n    slightly more than 12 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    340 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims French-administered Mayotte\nClimate:\n    tropical marine; rainy season (November to May)\nTerrain:\n    volcanic islands, interiors vary from steep mountains to low hills\nNatural resources:\n    negligible\nLand use:\n    arable land 35%; permanent crops 8%; meadows and pastures 7%; forest and\n    woodland 16%; other 34%\nEnvironment:\n    soil degradation and erosion; deforestation; cyclones possible during rainy\n    season\nNote:\n    important location at northern end of Mozambique Channel\n\n:Comoros People\n\nPopulation:\n    493,853 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    47 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    84 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 59 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Comoran(s); adjective - Comoran\nEthnic divisions:\n    Antalote, Cafre, Makoa, Oimatsaha, Sakalava\nReligions:\n    Sunni Muslim 86%, Roman Catholic 14%\nLanguages:\n    official languages are Arabic and French but majority of population speak\n    Comoran, a blend of Swahili and Arabic\nLiteracy:\n    48% (male 56%, female 40%) age 15 and over can read and write (1980)\nLabor force:\n    140,000 (1982); agriculture 80%, government 3%; 51% of population of working\n    age (1985)\nOrganized labor:\n    NA\n\n:Comoros Government\n\nLong-form name:\n    Federal Islamic Republic of the Comoros\nType:\n    independent republic\nCapital:\n    Moroni\nAdministrative divisions:\n    three islands; Njazidja, Nzwani, and Mwali, formerly Grand Comore, Anjouan,\n    and Moheli respectively; note - there are also four municipalities named\n    Domoni, Fomboni, Moroni, and Mutsamudu\nIndependence:\n    31 December 1975 (from France)\nConstitution:\n    1 October 1978, amended October 1982 and January 1985\nLegal system:\n    French and Muslim law in a new consolidated code\nNational holiday:\n    Independence Day, 6 July (1975)\nExecutive branch:\n    president, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Federal Assembly (Assemblee Federale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State and Head of Government:\n    President Said Mohamed DJOHAR (since 11 March 1990); coordinator of National\n    Unity Government (de facto prime minister) - Mohamed Taki ABDULKARIM (1\n    January 1992)\nSuffrage:\n    universal at age 18\nElections:\n  Federal Assembly:\n    last held 22 March 1987 (next to be held March 1992); results - percent of\n    vote by party NA; seats - (42 total) Udzima 42\n  President:\n    last held 11 March 1990 (next to be held March 1996); results - Said Mohamed\n    DJOHAR (Udzima) 55%, Mohamed TAKI Abdulkarim (UNDC) 45%\nMember of:\n    ACCT, ACP, AfDB, ECA, FAO, FZ, G-77, IBRD, ICAO, IDA, IDB, IFAD, ILO, IMF,\n    ITU, NAM, OAU, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador Amini Ali MOUMIN; Chancery (temporary) at the Comoran Permanent\n    Mission to the UN, 336 East 45th Street, 2nd Floor, New York, NY 10017;\n    telephone (212) 972-8010\n  US:\n    Ambassador Kenneth N. PELTIER; Embassy at address NA, Moroni (mailing\n    address B. P. 1318, Moroni); telephone 73-22-03, 73-29-22\nFlag:\n    green with a white crescent placed diagonally (closed side of the crescent\n    points to the upper hoist-side corner of the flag); there are four white\n    five-pointed stars placed in a line between the points of the crescent; the\n    crescent, stars, and color green are traditional symbols of Islam; the four\n    stars represent the four main islands of the archipelago - Mwali, Njazidja,\n    Nzwani, and Mayotte (which is a territorial collectivity of France, but\n    claimed by the Comoros)\n\n:Comoros Economy\n\nOverview:\n    One of the world's poorest countries, Comoros is made up of several islands\n    that have poor transportation links, a young and rapidly increasing\n    population, and few natural resources. The low educational level of the\n    labor force contributes to a low level of economic activity, high\n    unemployment, and a heavy dependence on foreign grants and technical\n    assistance. Agriculture, including fishing, hunting, and forestry, is the\n    leading sector of the economy. It contributes about 34% to GDP, employs 80%\n    of the labor force, and provides most of the exports. The country is not\n    self-sufficient in food production, and rice, the main staple, accounts for\n    90% of imports. During the period 1982-86 the industrial sector grew at an\n    annual average rate of 5.3%, but its contribution to GDP was only 5% in\n    1988. Despite major investment in the tourist industry, which accounts for\n    about 25% of GDP, growth has stagnated since 1983. A sluggish growth rate of\n    1.5% during 1985-90 has led to large budget deficits, declining incomes, and\n    balance-of-payments difficulties. Preliminary estimates for 1991 show a\n    moderate increase in the growth rate based on increased exports, tourism,\n    and government investment outlays.\nGDP:\n    exchange rate conversion - $260 million, per capita $540; real growth rate\n    2.7% (1991 est.)\nInflation rate (consumer prices):\n    4.0% (1991 est.)\nUnemployment rate:\n    over 16% (1988 est.)\nBudget:\n    revenues $88 million; expenditures $92 million, including capital\n    expenditures of $13 million (1990 est.)\nExports:\n    $16 million (f.o.b., 1990 est.)\n  commodities:\n    vanilla, cloves, perfume oil, copra, ylang-ylang\n  partners:\n    US 53%, France 41%, Africa 4%, FRG 2% (1988)\nImports:\n    $41 million (f.o.b., 1990 est.)\n  commodities:\n    rice and other foodstuffs, cement, petroleum products, consumer goods\n  partners:\n    Europe 62% (France 22%), Africa 5%, Pakistan, China (1988)\nExternal debt:\n    $196 million (1991 est.)\nIndustrial production:\n    growth rate 3.4% (1988 est.); accounts for 5% of GDP\nElectricity:\n    16,000 kW capacity; 25 million kWh produced, 50 kWh per capita (1991)\nIndustries:\n    perfume distillation, textiles, furniture, jewelry, construction materials,\n    soft drinks\nAgriculture:\n    accounts for 34% of GDP; most of population works in subsistence agriculture\n    and fishing; plantations produce cash crops for export - vanilla, cloves,\n    perfume essences, and copra; principal food crops - coconuts, bananas,\n    cassava; world's leading producer of essence of ylang-ylang (for perfumes)\n    and second-largest producer of vanilla; large net food importer\n\n:Comoros Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY80-89), $10 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $435 million; OPEC\n    bilateral aid (1979-89), $22 million; Communist countries (1970-89), $18\n    million\nCurrency:\n    Comoran franc (plural - francs); 1 Comoran franc (CF) = 100 centimes\nExchange rates:\n    Comoran francs (CF) per US$1 - 269.01 (January 1992), 282.11 (1991), 272.26\n    (1990), 319.01 (1989), 297.85 (1988), 300.54 (1987); note - linked to the\n    French franc at 50 to 1 French franc\nFiscal year:\n    calendar year\n\n:Comoros Communications\n\nHighways:\n    750 km total; about 210 km bituminous, remainder crushed stone or gravel\nPorts:\n    Mutsamudu, Moroni\nCivil air:\n    1 major transport aircraft\nAirports:\n    4 total, 4 usable; 4 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    sparse system of radio relay and high-frequency radio communication stations\n    for interisland and external communications to Madagascar and Reunion; over\n    1,800 telephones; broadcast stations - 2 AM, 1 FM, no TV\n\n:Comoros Defense Forces\n\nBranches:\n    Comoran Security Forces (FCS), Federal Gendarmerie (GFC)\nManpower availability:\n    males 15-49, 105,022; 62,808 fit for military service\nDefense expenditures:\n    $NA, NA of GDP\n\n:Congo Geography\n\nTotal area:\n    342,000 km2\nLand area:\n    341,500 km2\nComparative area:\n    slightly smaller than Montana\nLand boundaries:\n    5,504 km; Angola 201 km, Cameroon 523 km, Central African Republic 467 km,\n    Gabon 1,903 km, Zaire 2,410 km\nCoastline:\n    169 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    long section with Zaire along the Congo River is indefinite (no division of\n    the river or its islands has been made)\nClimate:\n    tropical; rainy season (March to June); dry season (June to October);\n    constantly high temperatures and humidity; particularly enervating climate\n    astride the Equator\nTerrain:\n    coastal plain, southern basin, central plateau, northern basin\nNatural resources:\n    petroleum, timber, potash, lead, zinc, uranium, copper, phosphates, natural\n    gas\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 29%; forest and\n    woodland 62%; other 7%\nEnvironment:\n    deforestation; about 70% of the population lives in Brazzaville, Pointe\n    Noire, or along the railroad between them\n\n:Congo People\n\nPopulation:\n    2,376,687 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    42 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    109 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    53 years male, 56 years female (1992)\nTotal fertility rate:\n    5.7 children born/woman (1992)\nNationality:\n    noun - Congolese (singular and plural); adjective - Congolese or Congo\nEthnic divisions:\n    about 15 ethnic groups divided into some 75 tribes, almost all Bantu; most\n    important ethnic groups are Kongo (48%) in the south, Sangha (20%) and\n    M'Bochi (12%) in the north, Teke (17%) in the center; about 8,500 Europeans,\n    mostly French\nReligions:\n    Christian 50%, animist 48%, Muslim 2%\nLanguages:\n    French (official); many African languages with Lingala and Kikongo most\n    widely used\nLiteracy:\n    57% (male 70%, female 44%) age 15 and over can read and write (1990 est.)\nLabor force:\n    79,100 wage earners; agriculture 75%, commerce, industry, and government\n    25%; 51% of population of working age; 40% of population economically active\n    (1985)\nOrganized labor:\n    20% of labor force (1979 est.)\n\n:Congo Government\n\nLong-form name:\n    Republic of the Congo\nType:\n    republic\nCapital:\n    Brazzaville\nAdministrative divisions:\n    9 regions (regions, singular - region) and 1 commune*; Bouenza,\n    Brazzaville*, Cuvette, Kouilou, Lekoumou, Likouala, Niari, Plateaux, Pool,\n    Sangha\nIndependence:\n    15 August 1960 (from France; formerly Congo/Brazzaville)\nConstitution:\n    8 July 1979, currently being modified\nLegal system:\n    based on French civil law system and customary law\nNational holiday:\n    Congolese National Day, 15 August (1960)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    a transitional National Assembly\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Denis SASSOU-NGUESSO (since 8 February 1979); stripped of most\n    powers by National Conference in May 1991\n  Head of Government:\n    Prime Minister Andre MILONGO (since May 1991)\nPolitical parties and leaders:\n    Congolese Labor Party (PCT), President Denis SASSOU-NGUESSO, leader; note -\n    multiparty system legalized, with over 50 parties established\nSuffrage:\n    universal at age 18\nElections:\n  National Assembly:\n    transitional body selected by National Conference in May 1991; election for\n    new legislative body to be held spring 1992\n  President:\n    last held 26-31 July 1989 (next to be held June 1992); results - President\n    SASSOU-NGUESSO unanimously reelected leader of the PCT by the Party\n    Congress, which automatically made him president\nCommunists:\n    small number of Communists and sympathizers\nOther political or pressure groups:\n    Union of Congolese Socialist Youth (UJSC), Congolese Trade Union Congress\n    (CSC), Revolutionary Union of Congolese Women (URFC), General Union of\n    Congolese Pupils and Students (UGEEC)\nMember of:\n    ACCT, ACP, AfDB, BDEAC, CCC, CEEAC, ECA, FAO, FZ, G-77, GATT, IBRD, ICAO,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM,\n    OAU, UDEAC, UN, UNAVEM, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO,\n    WTO\nDiplomatic representation:\n    Ambassador Roger ISSOMBO; Chancery at 4891 Colorado Avenue NW, Washington,\n    DC 20011; telephone (202) 726-5500\n\n:Congo Government\n\n  US:\n    Ambassador James Daniel PHILLIPS; Embassy at Avenue Amilcar Cabral,\n    Brazzaville (mailing address is B. P. 1015, Brazzaville, or Box C, APO AE\n    09828); telephone (242) 83-20-70; FAX [242] 83-63-38\nFlag:\n    red, divided diagonally from the lower hoist side by a yellow band; the\n    upper triangle (hoist side) is green and the lower triangle is red; uses the\n    popular pan-African colors of Ethiopia\n\n:Congo Economy\n\nOverview:\n    Congo's economy is a mixture of village agriculture and handicrafts, a\n    beginning industrial sector based largely on oil, supporting services, and a\n    government characterized by budget problems and overstaffing. A reform\n    program, supported by the IMF and World Bank, ran into difficulties in\n    1990-91 because of problems in changing to a democratic political regime and\n    a heavy debt-servicing burden. Oil has supplanted forestry as the mainstay\n    of the economy, providing about two-thirds of government revenues and\n    exports. In the early 1980s rapidly rising oil revenues enabled Congo to\n    finance large-scale development projects with growth averaging 5% annually,\n    one of the highest rates in Africa. During the period 1987-91, however,\n    growth has slowed to an average of roughly 1.5% annually, only half the\n    population growth rate.\nGDP:\n    exchange rate conversion - $2.4 billion, per capita $1,070; real growth rate\n    0.5% (1990 est.)\nInflation rate (consumer prices):\n    4.6% (1989 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $522 million; expenditures $767 million, including capital\n    expenditures of $141 million (1989)\nExports:\n    $751 million (f.o.b., 1988)\n  commodities:\n    crude petroleum 72%, lumber, plywood, coffee, cocoa, sugar, diamonds\n  partners:\n    US, France, other EC\nImports:\n    $564 million (c.i.f., 1988)\n  commodities:\n    foodstuffs, consumer goods, intermediate manufactures, capital equipment\n  partners:\n    France, Italy, other EC, US, FRG, Spain, Japan, Brazil\nExternal debt:\n    $4.5 billion (December 1988)\nIndustrial production:\n    growth rate 1.2% (1989); accounts for 33% of GDP, including petroleum\nElectricity:\n    140,000 kW capacity; 315 million kWh produced, 135 kWh per capita (1991)\nIndustries:\n    crude oil, cement, sawmills, brewery, sugar mill, palm oil, soap, cigarettes\nAgriculture:\n    accounts for 10% of GDP (including fishing and forestry); cassava accounts\n    for 90% of food output; other crops - rice, corn, peanuts, vegetables; cash\n    crops include coffee and cocoa; forest products important export earner;\n    imports over 90% of food needs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $60 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.3 billion; OPEC\n    bilateral aid (1979-89), $15 million; Communist countries (1970-89), $338\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\n\n:Congo Economy\n\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Congo Communications\n\nRailroads:\n    797 km, 1.067-meter gauge, single track (includes 285 km that are privately\n    owned)\nHighways:\n    11,960 km total; 560 km paved; 850 km gravel and laterite; 5,350 km improved\n    earth; 5,200 km unimproved earth\nInland waterways:\n    the Congo and Ubangi (Oubangui) Rivers provide 1,120 km of commercially\n    navigable water transport; the rest are used for local traffic only\nPipelines:\n    crude oil 25 km\nPorts:\n    Pointe-Noire (ocean port), Brazzaville (river port)\nCivil air:\n    4 major transport aircraft\nAirports:\n    46 total, 42 usable; 6 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 17 with runways 1,220-2,439 m\nTelecommunications:\n    services adequate for government use; primary network is composed of radio\n    relay routes and coaxial cables; key centers are Brazzaville, Pointe-Noire,\n    and Loubomo; 18,100 telephones; broadcast stations - 4 AM, 1 FM, 4 TV; 1\n    Atlantic Ocean satellite earth station\n\n:Congo Defense Forces\n\nBranches:\n    Army, Navy (including Naval Infantry), Air Force, National Police\nManpower availability:\n    males 15-49, 526,058; 267,393 fit for military service; 23,884 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $100 million, 4.6% of GDP (1987 est.)\n\n:Cook Islands Geography\n\nTotal area:\n    240 km2\nLand area:\n    240 km2\nComparative area:\n    slightly less than 1.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    120 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or minimum of 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by trade winds\nTerrain:\n    low coral atolls in north; volcanic, hilly islands in south\nNatural resources:\n    negligible\nLand use:\n    arable land 4%; permanent crops 22%; meadows and pastures 0%; forest and\n    woodland 0%; other 74%\nEnvironment:\n    subject to typhoons from November to March\nNote:\n    located 4,500 km south of Hawaii in the South Pacific Ocean\n\n:Cook Islands People\n\nPopulation:\n    17,977 (July 1992), growth rate 0.5% (1992)\nBirth rate:\n    22 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -10 migrants/1,000 population (1992)\nInfant mortality rate:\n    25 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 73 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Cook Islander(s); adjective - Cook Islander\nEthnic divisions:\n    Polynesian (full blood) 81.3%, Polynesian and European 7.7%, Polynesian and\n    other 7.7%, European 2.4%, other 0.9%\nReligions:\n    Christian, majority of populace members of Cook Islands Christian Church\nLanguages:\n    English (official); Maori\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    5,810; agriculture 29%, government 27%, services 25%, industry 15%, and\n    other 4% (1981)\nOrganized labor:\n    NA\n\n:Cook Islands Government\n\nLong-form name:\n    none\nType:\n    self-governing in free association with New Zealand; Cook Islands fully\n    responsible for internal affairs; New Zealand retains responsibility for\n    external affairs, in consultation with the Cook Islands\nCapital:\n    Avarua\nAdministrative divisions:\n    none\nIndependence:\n    became self-governing in free association with New Zealand on 4 August 1965\n    and has the right at any time to move to full independence by unilateral\n    action\nConstitution:\n    4 August 1965\nNational holiday:\n    Constitution Day, 4 August\nExecutive branch:\n    British monarch, representative of the UK, representative of New Zealand,\n    prime minister, deputy prime minister, Cabinet\nLegislative branch:\n    unicameral Parliament; note - the House of Arikis (chiefs) advises on\n    traditional matters, but has no legislative powers\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952); Representative of the UK Sir\n    Tangaroa TANGAROA (since NA); Representative of New Zealand Adrian SINCOCK\n    (since NA)\n  Head of Government:\n    Prime Minister Geoffrey HENRY (since 1 February 1989); Deputy Prime Minister\n    Inatio AKARURU (since February 1989)\nPolitical parties and leaders:\n    Cook Islands Party, Geoffrey HENRY; Democratic Tumu Party, Vincent INGRAM;\n    Democratic Party, Terepai MAOATE; Cook Islands Labor Party, Rena JONASSEN;\n    Cook Islands People's Party, Sadaraka SADARAKA\nSuffrage:\n    universal adult at age NA\nElections:\n  Parliament:\n    last held 19 January 1989 (next to be held by January 1994); results -\n    percent of vote by party NA; seats - (24 total) Cook Islands Party 12,\n    Democratic Tumu Party 2, opposition coalition (including Democratic Party)\n    9, independent 1\nMember of:\n    AsDB, ESCAP (associate), FAO, ICAO, IOC, SPC, SPF, UNESCO, WHO\nDiplomatic representation:\n    none (self-governing in free association with New Zealand)\nFlag:\n    blue, with the flag of the UK in the upper hoist-side quadrant and a large\n    circle of 15 white five-pointed stars (one for every island) centered in the\n    outer half of the flag\n\n:Cook Islands Economy\n\nOverview:\n    Agriculture provides the economic base. The major export earners are fruit,\n    copra, and clothing. Manufacturing activities are limited to a\n    fruit-processing plant and several clothing factories. Economic development\n    is hindered by the isolation of the islands from foreign markets and a lack\n    of natural resources and good transportation links. A large trade deficit is\n    annually made up for by remittances from emigrants and from foreign aid.\n    Current economic development plans call for exploiting the tourism potential\n    and expanding the fishing industry.\nGDP:\n    exchange rate conversion - $40.0 million, per capita $2,200 (1988 est.);\n    real growth rate 5.3% (1986-88 est.)\nInflation rate (consumer prices):\n    8.0% (1988)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $33.8 million; expenditures $34.4 million, including capital\n    expenditures of $NA (1990 est.)\nExports:\n    $4.0 million (f.o.b., 1988)\n  commodities:\n    copra, fresh and canned fruit, clothing\n  partners:\n    NZ 80%, Japan\nImports:\n    $38.7 million (c.i.f., 1988)\n  commodities:\n    foodstuffs, textiles, fuels, timber\n  partners:\n    NZ 49%, Japan, Australia, US\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    14,000 kW capacity; 21 million kWh produced, 1,170 kWh per capita (1990)\nIndustries:\n    fruit processing, tourism\nAgriculture:\n    export crops - copra, citrus fruits, pineapples, tomatoes, bananas;\n    subsistence crops - yams, taro\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $128 million\nCurrency:\n    New Zealand dollar (plural - dollars); 1 New Zealand dollar (NZ$) = 100\n    cents\nExchange rates:\n    New Zealand dollars (NZ$) per US$1 - 1.8502 (January 1992), 1.7266 (1991),\n    1.6750 (1990), 1.6711 (1989), 1.5244 (1988), 1.6886 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Cook Islands Communications\n\nHighways:\n    187 km total (1980); 35 km paved, 35 km gravel, 84 km improved earth, 33 km\n    unimproved earth\nPorts:\n    Avatiu\nMerchant marine:\n    1 cargo ship (1,000 or over) totaling 1,464 GRT/2,181 DWT\nCivil air:\n    no major transport aircraft\nAirports:\n    6 total, 6 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 2 AM, no FM, no TV; 10,000 radio receivers; 2,052\n    telephones; 1 Pacific Ocean INTELSAT earth station\n\n:Cook Islands Defense Forces\n\nNote:\n    defense is the responsibility of New Zealand\n\n:Coral Sea Islands Geography\n\nTotal area:\n    less than 3 km2\nLand area:\n    less than 3 km2; includes numerous small islands and reefs scattered over a\n    sea area of about 1 million km2, with Willis Islets the most important\nComparative area:\n    undetermined\nLand boundaries:\n    none\nCoastline:\n    3,095 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical\nTerrain:\n    sand and coral reefs and islands (or cays)\nNatural resources:\n    negligible\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other, mostly grass or scrub cover 100%; Lihou Reef Reserve and\n    Coringa-Herald Reserve were declared National Nature Reserves on 3 August\n    1982\nEnvironment:\n    subject to occasional tropical cyclones; no permanent fresh water; important\n    nesting area for birds and turtles\nNote:\n    the islands are located just off the northeast coast of Australia in the\n    Coral Sea\n\n:Coral Sea Islands People\n\nPopulation:\n    3 meteorologists (1992)\n\n:Coral Sea Islands Government\n\nLong-form name:\n    Coral Sea Islands Territory\nType:\n    territory of Australia administered by the Minister for Arts, Sport, the\n    Environment, Tourism, and Territories Roslyn KELLY\nCapital:\n    none; administered from Canberra, Australia\nFlag:\n    the flag of Australia is used\n\n:Coral Sea Islands Economy\n\nOverview:\n    no economic activity\n\n:Coral Sea Islands Communications\n\nPorts:\n    none; offshore anchorages only\n\n:Coral Sea Islands Defense Forces\n\nNote:\n    defense is the responsibility of Australia; visited regularly by the Royal\n    Australian Navy; Australia has control over the activities of visitors\n\n:Costa Rica Geography\n\nTotal area:\n    51,100 km2\nLand area:\n    50,660 km2; includes Isla del Coco\nComparative area:\n    slightly smaller than West Virginia\nLand boundaries:\n    639 km; Nicaragua 309 km, Panama 330 km\nCoastline:\n    1,290 km\nMaritime claims:\n  Continental shelf:\n    200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; dry season (December to April); rainy season (May to November)\nTerrain:\n    coastal plains separated by rugged mountains\nNatural resources:\n    hydropower potential\nLand use:\n    arable land 6%; permanent crops 7%; meadows and pastures 45%; forest and\n    woodland 34%; other 8%; includes irrigated 1%\nEnvironment:\n    subject to occasional earthquakes, hurricanes along Atlantic coast; frequent\n    flooding of lowlands at onset of rainy season; active volcanoes;\n    deforestation; soil erosion\n\n:Costa Rica People\n\nPopulation:\n    3,187,085 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    12 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 79 years female (1992)\nTotal fertility rate:\n    3.2 children born/woman (1992)\nNationality:\n    noun - Costa Rican(s); adjective - Costa Rican\nEthnic divisions:\n    white (including mestizo) 96%, black 2%, Indian 1%, Chinese 1%\nReligions:\n    Roman Catholic 95%\nLanguages:\n    Spanish (official), English spoken around Puerto Limon\nLiteracy:\n    93% (male 93%, female 93%) age 15 and over can read and write (1990 est.)\nLabor force:\n    868,300; industry and commerce 35.1%, government and services 33%,\n    agriculture 27%, other 4.9% (1985 est.)\nOrganized labor:\n    15.1% of labor force\n\n:Costa Rica Government\n\nLong-form name:\n    Republic of Costa Rica\nType:\n    democratic republic\nCapital:\n    San Jose\nAdministrative divisions:\n    7 provinces (provincias, singular - provincia); Alajuela, Cartago,\n    Guanacaste, Heredia, Limon, Puntarenas, San Jose\nIndependence:\n    15 September 1821 (from Spain)\nConstitution:\n    9 November 1949\nLegal system:\n    based on Spanish civil law system; judicial review of legislative acts in\n    the Supreme Court; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 15 September (1821)\nExecutive branch:\n    president, two vice presidents, Cabinet\nLegislative branch:\n    unicameral Legislative Assembly (Asamblea Legislativa)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Rafael Angel CALDERON Fournier (since 8 May 1990); First Vice\n    President German SERRANO Pinto (since 8 May 1990); Second Vice President\n    Arnoldo LOPEZ Echandi (since 8 May 1990)\nPolitical parties and leaders:\n    National Liberation Party (PLN), Carlos Manuel CASTILLO Morales; Social\n    Christian Unity Party (PUSC), Rafael Angel CALDERON Fournier; Marxist\n    Popular Vanguard Party (PVP), Humberto VARGAS Carbonell; New Republic\n    Movement (MNR), Sergio Erick ARDON Ramirez; Progressive Party (PP), Isaac\n    Felipe AZOFEIFA Bolanos; People's Party of Costa Rica (PPC), Lenin CHACON\n    Vargas; Radical Democratic Party (PRD), Juan Jose ECHEVERRIA Brealey\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Legislative Assembly:\n    last held 4 February 1990 (next to be held February 1994); results - percent\n    of vote by party NA; seats - (57 total) PUSC 29, PLN 25, PVP/PPC 1, regional\n    parties 2\n  President:\n    last held 4 February 1990 (next to be held February 1994); results - Rafael\n    Angel CALDERON Fournier 51%, Carlos Manuel CASTILLO 47%\nCommunists:\n    7,500 members and sympathizers\nOther political or pressure groups:\n    Costa Rican Confederation of Democratic Workers (CCTD; Liberation Party\n    affiliate), Confederated Union of Workers (CUT; Communist Party affiliate),\n    Authentic Confederation of Democratic Workers (CATD; Communist Party\n    affiliate), Chamber of Coffee Growers, National Association for Economic\n    Development (ANFE), Free Costa Rica Movement (MCRL; rightwing militants),\n    National Association of Educators (ANDE)\n\n:Costa Rica Government\n\nMember of:\n    AG (observer), BCIE, CACM, ECLAC, FAO, G-77, IADB, IAEA, IBRD, ICAO, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES,\n    LORCS, NAM (observer), OAS, OPANAL, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL,\n    WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Gonzalo FACIO Segreda; Chancery at Suite 211, 1825 Connecticut\n    Avenue NW, Washington, DC 20009; telephone (202) 234-2945 through 2947;\n    there are Costa Rican Consulates General at Albuquerque, Houston, Los\n    Angeles, Miami, New Orleans, New York, San Diego, San Francisco, and San\n    Juan (Puerto Rico), and a Consulate in Buffalo\n  US:\n    Ambassador Luis GUINOT, Jr.; Embassy at Pavas Road, San Jose (mailing\n    address is APO AA 34020); telephone [506] 20-39-39 FAX (506) 20-2305\nFlag:\n    five horizontal bands of blue (top), white, red (double width), white, and\n    blue, with the coat of arms in a white disk on the hoist side of the red\n    band\n\n:Costa Rica Economy\n\nOverview:\n    In 1991 the economy grew at an estimated 2.5%, down somewhat from the 3.6%\n    gain of 1990 and below the strong 5.5% gain of 1989. Increases in\n    agricultural production (on the strength of good coffee and banana crops)\n    and in construction have been offset by lower rates of growth for industry.\n    In 1991 consumer prices rose by 27%, about the same as in 1990. The trade\n    deficit of $270 million was substantially below the 1990 deficit of $677\n    million. Unemployment is officially reported at 4.6%, but much\n    underemployment remains. External debt, on a per capita basis, is among the\n    world's highest.\nGDP:\n    exchange rate conversion - $5.9 billion, per capita $1,900; real growth rate\n    2.5% (1991 est.)\nInflation rate (consumer prices):\n    27% (1991 est.)\nUnemployment rate:\n    4.6% (1991)\nBudget:\n    revenues $831 million; expenditures $1.08 billion, including capital\n    expenditures of $NA (1990 est.)\nExports:\n    $1.5 billion (f.o.b., 1991 est.)\n  commodities:\n    coffee, bananas, textiles, sugar\n  partners:\n    US 75%, Germany, Guatemala, Netherlands, UK, Japan\nImports:\n    $1.8 billion (c.i.f., 1991 est.)\n  commodities:\n    petroleum, machinery, consumer durables, chemicals, fertilizer, foodstuffs\n  partners:\n    US 40%, Japan, Guatemala, Germany\nExternal debt:\n    $4.5 billion (1990)\nIndustrial production:\n    growth rate 2.3% (1990 est.); accounts for 23% of GDP\nElectricity:\n    927,000 kW capacity; 3,408 million kWh produced, 1,095 kWh per capita (1991)\nIndustries:\n    food processing, textiles and clothing, construction materials, fertilizer,\n    plastic products\nAgriculture:\n    accounts for 20-25% of GDP and 70% of exports; cash commodities - coffee,\n    beef, bananas, sugar; other food crops include corn, rice, beans, potatoes;\n    normally self-sufficient in food except for grain; depletion of forest\n    resources resulting in lower timber output\nIllicit drugs:\n    illicit production of cannabis on small scattered plots; transshipment\n    country for cocaine from South America\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $935 million;\n    Communist countries (1971-89), $27 million\nCurrency:\n    Costa Rican colon (plural - colones); 1 Costa Rican colon (C) = 100 centimos\nExchange rates:\n    Costa Rican colones (C) per US$1 - 136.35 (January 1992), 122.43 (1991),\n    91.58 (1990), 81.504 (1989), 75.805 (1988), 62.776 (1987)\n\n:Costa Rica Economy\n\nFiscal year:\n    calendar year\n\n:Costa Rica Communications\n\nRailroads:\n    950 km total, all 1.067-meter gauge; 260 km electrified\nHighways:\n    15,400 km total; 7,030 km paved, 7,010 km gravel, 1,360 km unimproved earth\nInland waterways:\n    about 730 km, seasonally navigable\nPipelines:\n    petroleum products 176 km\nPorts:\n    Puerto Limon, Caldera, Golfito, Moin, Puntarenas\nMerchant marine:\n    1 cargo ship (1,000 GRT or over) totaling 2,878 GRT/4,506 DWT\nCivil air:\n    11 major transport aircraft\nAirports:\n    164 total, 149 usable; 28 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 10 with runways 1,220-2,439 m\nTelecommunications:\n    very good domestic telephone service; 292,000 telephones; connection into\n    Central American Microwave System; broadcast stations - 71 AM, no FM, 18 TV,\n    13 shortwave; 1 Atlantic Ocean INTELSAT earth station\n\n:Costa Rica Defense Forces\n\nBranches:\n    Civil Guard, Rural Assistance Guard; note - Constitution prohibits armed\n    forces\nManpower availability:\n    males 15-49, 829,576; 559,575 fit for military service; 31,828 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $22 million, 0.5% of GDP (1989)\n\n:Croatia Geography\n\nTotal area:\n    56,538 km2\nLand area:\n    56,410 km2\nComparative area:\n    slightly smaller than West Virginia\nLand boundaries:\n    1,843 km; Bosnia and Hercegovina (east) 751 km, Bosnia and Hercegovina\n    (southeast) 91 km, Hungary 292 km, Serbia and Montenegro 254 km, Slovenia\n    455 km\nCoastline:\n    5,790 km; mainland 1,778 km, islands 4,012 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    200-meter depth or to depth of exploitation\n  Exclusive economic zone:\n    12 nm\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Serbian enclaves in eastern Slavonia and along the western Bosnia and\n    Hercegovinian border; dispute with Slovenia over fishing rights in Adriatic\nClimate:\n    Mediterranean and continental; continental climate predominant with hot\n    summers and cold winters; mild winters, dry summers along coast\nTerrain:\n    geographically diverse; flat plains along Hungarian border, low mountains\n    and highlands near Adriatic coast, coastline, and islands\nNatural resources:\n    oil, some coal, bauxite, low-grade iron ore, calcium, natural asphalt,\n    silica, mica, clays, salt, fruit, livestock\nLand use:\n    32% arable land; 20% permanent crops; 18% meadows and pastures; 15% forest\n    and woodland; 9% other; includes 5% irrigated\nEnvironment:\n    air pollution from metallurgical plants; damaged forest; coastal pollution\n    from industrial and domestic waste; subject to frequent and destructive\n    earthquakes\nNote:\n    controls most land routes from Western Europe to Aegean Sea and Turkish\n    Straits\n\n:Croatia People\n\nPopulation:\n    4,784,000 (July 1991), growth rate 0.39% (for the period 1981-91)\nBirth rate:\n    12.2 births/1,000 population (1991)\nDeath rate:\n    11.3 deaths/1,000 population (1991)\nNet migration rate:\n    NA migrants/1,000 population (1991)\nInfant mortality rate:\n    10 deaths/1,000 live births (1990)\nLife expectancy at birth:\n    67 years male, 74 years female (1980-82)\nTotal fertility rate:\n    NA children born/woman (1991)\nNationality:\n    noun - Croat(s); adjective - Croatian\nEthnic divisions:\n    Croat 78%, Serb 12%, Muslims 0.9%, Hungarian 0.5%, Slovenian 0.5%, others\n    7.8%\nReligions:\n    Catholic 76.5%, Orthodox 11.1%, Slavic Muslim 1.2%, Protestant 1.4%, others\n    and unknown 11%\nLanguages:\n    Serbo-Croatian 96%\nLiteracy:\n    96.5% (male 98.6%, female 94.5%) age 10 and over can read and write (1991\n    census)\nLabor force:\n    1,509,489; industry and mining 37%, agriculture 4%, government NA%, other\nOrganized labor:\n    NA\n\n:Croatia Government\n\nLong-form name:\n    None\nType:\n    parliamentary democracy\nCapital:\n    Zagreb\nAdministrative divisions:\n    102 districts (opcine, singular - opcina)\nIndependence:\n    June 1991 from Yugoslavia\nConstitution:\n    promulgated on 22 December 1990\nLegal system:\n    based on civil law system; judicial/no judicial review of legislative acts;\n    does/does not accept compulsory ICJ jurisdiction\nNational holiday:\n    30 May, Statehood Day (1990)\nExecutive branch:\n    president, prime minister\nLegislative branch:\n    bicameral\nJudicial branch:\n    Supreme Court, Constitutional Court\nLeaders:\n  Chief of State:\n    President Franjo TUDJMAN (since April 1990), Vice President NA (since NA)\n  Head of Government:\n    Prime Minister Franjo GREGURIC (since August 1991), Deputy Prime Minister\n    Mila RAMLJAK (since NA )\nPolitical parties and leaders:\n    Christian Democratic Union, TUDJMAN; Croatian Democratic Union (HDZ),\n    Stjepan Mesic; Croatian National Party, Savka DABCEVIC-KUCAR; Croatian\n    Christian Democratic Party (HKDS), Ivan CESAR; Croatian Party of Rights,\n    Dobroslav Paraga; Croatian Social Liberal Party (HSLS), Drazen BUDISA\nSuffrage:\n    at age 16 if employed, universal at age 18\nElections:\n  Parliament:\n    last held May 1990 (next to be held NA); results - HDZ won 205 seats; seats\n    - 349 (total)\n  President:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE\nDiplomatic representation:\n    Ambassador Dr. Franc Vinko GOLEM, Office of Republic of Croatia, 256\n    Massachusetts Avenue, NW, Washington, DC 20036; telephone (202) 543-5586\n  US:\n    Ambassador NA; Embassy at NA (mailing address is APO New York is 09862);\n    telephone NA\nFlag:\n    red, white, and blue with Croatian coat of arms (red and white checkered)\n\n:Croatia Economy\n\nOverview:\n    Before the political disintegration of Yugoslavia, the republic of Croatia\n    stood next to Slovenia as the most prosperous and industrialized area, with\n    a per capita output roughly comparable to that of Portugal and perhaps\n    one-third above the Yugoslav average. Serbia and the Serb-dominated army of\n    the old Yugoslavia, however, have seized Croatian territory, and the\n    overriding determinant of Croatia's long-term economic prospects will be the\n    final border settlement. Under the most favorable circumstances, Croatia\n    will retain the Dalmatian coast with its major tourist attractions and\n    Slavonia with its oilfields and rich agricultural land. Even so, Croatia\n    would face monumental problems stemming from: the legacy of longtime\n    Communist mismanagement of the economy; large foreign debt; damage during\n    the fighting to bridges, factories, powerlines, buildings, and houses; and\n    the disruption of economic ties to Serbia and the other former Yugoslav\n    republics. At the minimum, extensive Western aid and investment, especially\n    in the tourist and oil industries, would seem necessary to salvage a\n    desperate economic situation. However, peace and political stability must\n    come first.\nGDP:\n    NA - $26.3 billion, per capita $5,600; real growth rate -25% (1991 est.)\nInflation rate (consumer prices):\n    14.3% (March 1992)\nUnemployment rate:\n    20% (December 1991)\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $NA million\nExports:\n    $2.9 billion (1990)\n  commodities:\n    machinery and transport equipment (30%), other manufacturers (37%),\n    chemicals (11%), food and live animals (9%), raw materials (6.5%), fuels and\n    lubricants (5%)\n  partners:\n    principally the other former Yugoslav republics\nImports:\n    $4.4 billion (1990)\n  commodities:\n    machinery and transport equipment (21%), fuels and lubricants (19%), food\n    and live animals (16%), chemicals (14%), manufactured goods (13%),\n    miscellaneous manufactured articles (9%), raw materials (6.5%), beverages\n    and tobacco (1%)\n  partners:\n    principally other former Yugoslav republics\nExternal debt:\n    $2.6 billion (may assume some part of foreign debt of former Yugoslavia)\nIndustrial production:\n    declined as much as 11% in 1990 and probably another 29% in 1991\nElectricity:\n    3,570,000 kW capacity; 8,830 million kWh produced, 1,855 kWh per capita\n    1991)\nIndustries:\n    chemicals and plastics, machine tools, fabricated metal, electronics, pig\n    iron and rolled steel products, aluminum reduction, paper, wood products\n    (including furniture), building materials (including cement), textiles,\n    shipbuilding, petroleum and petroleum refining, food processing and\n    beverages\n\n:Croatia Economy\n\nAgriculture:\n    Croatia normally produces a food surplus; most agricultural land in private\n    hands and concentrated in Croat-majority districts in Slavonia and Istria;\n    much of Slavonia's land has been put out of production by fighting; wheat,\n    corn, sugar beets, sunflowers, alfalfa, and clover are main crops in\n    Slavonia; central Croatian highlands are less fertile but support cereal\n    production, orchards, vineyards, livestock breeding, and dairy farming;\n    coastal areas and offshore islands grow olives, citrus fruits, and\n    vegetables\nEconomic aid:\n    NA\nCurrency:\n    Croatian dinar(s)\nExchange rates:\n    Croatian dinar per US $1 - 60.00 (April 1992)\nFiscal year:\n    calendar year\n\n:Croatia Communications\n\nRailroads:\n    2,698 km (34.5% electrified)\nHighways:\n    32,071 km total (1990); 23,305 km paved, 8,439 km gravel, 327 km earth\nInland waterways:\n    785 km perennially navigable\nPipelines:\n    crude oil 670 km, petroleum products 20 km, natural gas 310 km\nPorts:\n    maritime - Rijeka, Split, Kardeljevo (Ploce); inland - Vukovar, Osijek,\n    Sisak, Vinkovci\nMerchant marine:\n    11 ships (1,000 GRT or over) totaling 60,802 GRT/65,560 DWT; includes 1\n    cargo, 3 roll-on/roll-off, 5 passenger ferries, 2 bulk carriers; note - also\n    controlled by Croatian shipowners are 196 ships (1,000 GRT or over) under\n    flags of convenience - primarily Malta and St. Vincent - totaling 2,593,429\n    GRT/4,101,119 DWT; includes 91 general cargo, 7 roll-on/ roll-off, 6\n    refrigerated cargo, 13 container ships, 3 multifunction large load carriers,\n    52 bulk carriers, 3 passenger ships, 11 petroleum tankers, 4 chemical\n    tankers, 6 service vessels\nCivil air:\n    NA major transport aircraft\nAirports:\n    8 total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; 7 with runways 2,440-3,659 m; NA with runways 1,220-2,439 m; 1 with\n    runways 900 m\nTelecommunications:\n    350,000 telephones; broadcast stations - 14 AM, 8 FM, 12 (2 repeaters) TV;\n    1,100,000 radios; 1,027,000 TVs; NA submarine coaxial cables; satellite\n    ground stations - none\n\n:Croatia Defense Forces\n\nBranches:\n    Ground Forces, Naval Forces, Air and Air Defense Forces, Frontier Guard,\n    Home Guard, Civil Defense\nManpower availability:\n    males 15-49, 1,188,576; NA fit for military service; 42,664 reach military\n    age (18) annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Cuba Geography\n\nTotal area:\n    110,860 km2\nLand area:\n    110,860 km2\nComparative area:\n    slightly smaller than Pennsylvania\nLand boundaries:\n    29.1 km; US Naval Base at Guantanamo 29.1 km\n  note:\n    Guantanamo is leased and as such remains part of Cuba\nCoastline:\n    3,735 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    US Naval Base at Guantanamo is leased to US and only mutual agreement or US\n    abandonment of the area can terminate the lease\nClimate:\n    tropical; moderated by trade winds; dry season (November to April); rainy\n    season (May to October)\nTerrain:\n    mostly flat to rolling plains with rugged hills and mountains in the\n    southeast\nNatural resources:\n    cobalt, nickel, iron ore, copper, manganese, salt, timber, silica\nLand use:\n    arable land 23%; permanent crops 6%; meadows and pastures 23%; forest and\n    woodland 17%; other 31%; includes irrigated 10%\nEnvironment:\n    averages one hurricane every other year\nNote:\n    largest country in Caribbean; 145 km south of Florida\n\n:Cuba People\n\nPopulation:\n    10,846,821 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 79 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Cuban(s); adjective - Cuban\nEthnic divisions:\n    mulatto 51%, white 37%, black 11%, Chinese 1%\nReligions:\n    85% nominally Roman Catholic before Castro assumed power\nLanguages:\n    Spanish\nLiteracy:\n    94% (male 95%, female 93%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,578,800 in state sector; services and government 30%, industry 22%,\n    agriculture 20%, commerce 11%, construction 10%, transportation and\n    communications 7% (June 1990); economically active population 4,620,800\n    (1988)\nOrganized labor:\n    Workers Central Union of Cuba (CTC), only labor federation approved by\n    government; 2,910,000 members; the CTC is an umbrella organization composed\n    of 17 member unions\n\n:Cuba Government\n\nLong-form name:\n    Republic of Cuba\nType:\n    Communist state\nCapital:\n    Havana\nAdministrative divisions:\n    14 provinces (provincias, singular - provincia) and 1 special municipality*\n    (municipio especial); Camaguey, Ciego de Avila, Cienfuegos, Ciudad de La\n    Habana, Granma, Guantanamo, Holguin, Isla de la Juventud*, La Habana, Las\n    Tunas, Matanzas, Pinar del Rio, Sancti Spiritus, Santiago de Cuba, Villa\n    Clara\nIndependence:\n    20 May 1902 (from Spain 10 December 1898); administered by the US from 1898\n    to 1902\nConstitution:\n    24 February 1976\nLegal system:\n    based on Spanish and American law, with large elements of Communist legal\n    theory; does not accept compulsory ICJ jurisdiction\nNational holiday:\n    Rebellion Day, 26 July (1953)\nExecutive branch:\n    president of the Council of State, first vice president of the Council of\n    State, Council of State, president of the Council of Ministers, first vice\n    president of the Council of Ministers, Council of Ministers\nLegislative branch:\n    unicameral National Assembly of the People's Power (Asamblea Nacional del\n    Poder Popular)\nJudicial branch:\n    People's Supreme Court (Tribunal Supremo Popular)\nLeaders:\n  Chief of State and Head of Government:\n    President of the Council of State and President of the Council of Ministers\n    Fidel CASTRO Ruz (became Prime Minister in February 1959 and President since\n    2 December 1976); First Vice President of the Council of State and First\n    Vice President of the Council of Ministers Gen. Raul CASTRO Ruz (since 2\n    December 1976)\nPolitical parties and leaders:\n    only party - Cuban Communist Party (PCC), Fidel CASTRO Ruz, first secretary\nSuffrage:\n    universal at age 16\nElections:\n  National Assembly of the People's Power:\n    last held December 1986 (next to be held before December 1992); results -\n    PCC is the only party; seats - (510 total) indirectly elected\nCommunists:\n    about 600,000 full and candidate members\nMember of:\n    CCC, ECLAC, FAO, G-77, GATT, IAEA, IBEC, ICAO, IFAD, ILO, IMO, INTERPOL,\n    IOC, ISO, ITU, LAES, LORCS, NAM, OAS (excluded from formal participation\n    since 1962), PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO,\n    WTO\nDiplomatic representation:\n    none; protecting power in the US is Switzerland - Cuban Interests Section;\n    position vacant since March 1992; 2630 and 2639 16th Street NW, Washington,\n    DC 20009; telephone (202) 797-8518 or 8519, 8520, 8609, 8610\n\n:Cuba Government\n\n  US:\n    protecting power in Cuba is Switzerland - US Interests Section, Swiss\n    Embassy; Principal Officer Alan H. FLANIGAN; Calzada entre L Y M, Vedado\n    Seccion, Havana (mailing address is USINT, Swiss Embassy, Havana, Calzada\n    Entre L Y M, Vedado); telephone 32-0051, 32-0543\nFlag:\n    five equal horizontal bands of blue (top and bottom) alternating with white;\n    a red equilateral triangle based on the hoist side bears a white\n    five-pointed star in the center\n\n:Cuba Economy\n\nOverview:\n    The economy, centrally planned and largely state owned, is highly dependent\n    on the agricultural sector and foreign trade. Sugar provided about\n    two-thirds of export revenues in 1991, and over half was exported to the\n    former Soviet republics. The economy has stagnated since 1985 under policies\n    that have deemphasized material incentives in the workplace, abolished\n    farmers' informal produce markets, and raised prices of government-supplied\n    goods and services. In 1990 the economy probably fell 5% largely as a result\n    of declining trade with the former Soviet Union and Eastern Europe. Recently\n    the government has been trying to increase trade with Latin America and\n    China. Cuba has had difficulty servicing its foreign debt since 1982. The\n    government currently is encouraging foreign investment in tourist facilities\n    and in industrial plants idled by falling imports from the former Soviet\n    Union. Other investment priorities include sugar, basic foods, and nickel.\n    The annual Soviet subsidy dropped from $4 billion in 1990 to about $1\n    billion in 1991 because of a lower price paid for Cuban sugar and a sharp\n    decline in Soviet exports to Cuba. The former Soviet republics have\n    indicated they will no longer extend aid to Cuba beginning in 1992. Instead\n    of highly subsidized trade, Cuba has been shifting to trade at market prices\n    in convertible currencies. Because of increasingly severe shortages of\n    fuels, industrial raw materials, and spare parts, aggregate output dropped\n    by one-fifth in 1991.\nGNP:\n    $17 billion, per capita $1,580; real growth rate -20% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nBudget:\n    revenues $12.46 billion; expenditures $14.45 billion, including capital\n    expenditures of $NA (1990 est.)\nExports:\n    $3.6 billion (f.o.b., 1991 est.)\n  commodities:\n    sugar, nickel, medical products, shellfish, citrus, tobacco, coffee\n  partners:\n    former USSR 63%, China 6%, Canada 4%, Japan 4% (1991 est.)\nImports:\n    $3.7 billion (c.i.f., 1991 est.)\n  commodities:\n    petroleum, capital goods, industrial raw materials, food\n  partners:\n    former USSR 47%, Spain 8%, China 6%, Argentina 5%, Italy 4%, Mexico 3% (1991\n    est.)\nExternal debt:\n    $6.8 billion (convertible currency, July 1989)\nIndustrial production:\n    growth rate 0%; accounts for 45% of GDP (1989)\nElectricity:\n    3,889,000 kW capacity; 16,272 million kWh produced, 1,516 kWh per capita\n    (1991)\nIndustries:\n    sugar milling, petroleum refining, food and tobacco processing, textiles,\n    chemicals, paper and wood products, metals (particularly nickel), cement,\n    fertilizers, consumer goods, agricultural machinery\nAgriculture:\n    accounts for 11% of GNP (including fishing and forestry); key commercial\n    crops - sugarcane, tobacco, and citrus fruits; other products - coffee,\n    rice, potatoes, meat, beans; world's largest sugar exporter; not\n    self-sufficient in food (excluding sugar)\n\n:Cuba Economy\n\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $710 million; Communist countries (1970-89), $18.5 billion\nCurrency:\n    Cuban peso (plural - pesos); 1 Cuban peso (Cu$) = 100 centavos\nExchange rates:\n    Cuban pesos (Cu$) per US$1 - 1.0000 (linked to the US dollar)\nFiscal year:\n    calendar year\n\n:Cuba Communications\n\nRailroads:\n    12,947 km total; Cuban National Railways operates 5,053 km of 1.435-meter\n    gauge track; 151.7 km electrified; 7,742 km of sugar plantation lines of\n    0.914-m and 1.435-m gauge\nHighways:\n    26,477 km total; 14,477 km paved, 12,000 km gravel and earth surfaced (1989\n    est.)\nInland waterways:\n    240 km\nPorts:\n    Cienfuegos, Havana, Mariel, Matanzas, Santiago de Cuba; 7 secondary, 35\n    minor\nMerchant marine:\n    77 ships (1,000 GRT or over) totaling 537,464 GRT/755,824 DWT; includes 46\n    cargo, 10 refrigerated cargo, 1 cargo/training, 11 petroleum tanker, 1\n    chemical tanker, 4 liquefied gas, 4 bulk; note - Cuba beneficially owns an\n    additional 45 ships (1,000 GRT and over) totaling 574,047 DWT under the\n    registry of Panama, Cyprus, and Malta\nCivil air:\n    88 major transport aircraft\nAirports:\n    189 total, 167 usable; 73 with permanent-surface runways; 3 with runways\n    over 3,659 m; 12 with runways 2,440-3,659 m; 18 with runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 150 AM, 5 FM, 58 TV; 1,530,000 TVs; 2,140,000 radios;\n    229,000 telephones; 1 Atlantic Ocean INTELSAT earth station\n\n:Cuba Defense Forces\n\nBranches:\n    Revolutionary Armed Forces (including Ground Forces, Revolutionary Navy\n    (MGR), Air and Air Defense Force[DAAFR]), Ministry of Interior and Ministry\n    of Defense Special Troops, Border Guard Troops, Territorial Militia Troops,\n    Youth Labor Army, Civil Defense, National Revolutionary Police\nManpower availability:\n    eligible 15-49, 6,130,641; of the 3,076,276 males 15-49, 1,925,648 are fit\n    for military service; of the 3,054,365 females 15-49, 1,907,281 are fit for\n    military service; 97,973 males and 94,514 females reach military age (17)\n    annually\nDefense expenditures:\n    exchange rate conversion - $1.2-1.4 billion, 6% of GNP (1989 est.)\n\n:Cyprus Geography\n\nTotal area:\n    9,250 km2\nLand area:\n    9,240 km2\nComparative area:\n    about 0.7 times the size of Connecticut\nLand boundaries:\n    none\nCoastline:\n    648 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    12 nm\nDisputes:\n    1974 hostilities divided the island into two de facto autonomous areas - a\n    Greek area controlled by the Cypriot Government (60% of the island's land\n    area) and a Turkish-Cypriot area (35% of the island) that are separated by a\n    narrow UN buffer zone; in addition, there are two UK sovereign base areas\n    (about 5% of the island's land area)\nClimate:\n    temperate, Mediterranean with hot, dry summers and cool, wet winters\nTerrain:\n    central plain with mountains to north and south\nNatural resources:\n    copper, pyrites, asbestos, gypsum, timber, salt, marble, clay earth pigment\nLand use:\n    arable land 40%; permanent crops 7%; meadows and pastures 10%; forest and\n    woodland 18%; other 25%; includes irrigated 10% (most irrigated lands are in\n    the Turkish-Cypriot area of the island)\nEnvironment:\n    moderate earthquake activity; water resource problems (no natural reservoir\n    catchments, seasonal disparity in rainfall, and most potable resources\n    concentrated in the Turkish-Cypriot area)\n\n:Cyprus People\n\nPopulation:\n    716,492 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 78 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Cypriot(s); adjective - Cypriot\nEthnic divisions:\n    Greek 78%; Turkish 18%; other 4%\nReligions:\n    Greek Orthodox 78%, Muslim 18%, Maronite, Armenian, Apostolic, and other 4%\nLanguages:\n    Greek, Turkish, English\nLiteracy:\n    90% (male 96%, female 85%) age 10 and over can read and write (1976)\nLabor force:\n    Greek area - 278,000; services 45%, industry 35%, agriculture 14%; Turkish\n    area - 71,500 (1990); services 21%, industry 30%, agriculture 27%\nOrganized labor:\n    156,000 (1985 est.)\n\n:Cyprus Government\n\nLong-form name:\n    Republic of Cyprus\nType:\n    republic; a disaggregation of the two ethnic communities inhabiting the\n    island began after the outbreak of communal strife in 1963; this separation\n    was further solidified following the Turkish invasion of the island in July\n    1974, which gave the Turkish Cypriots de facto control in the north; Greek\n    Cypriots control the only internationally recognized government; on 15\n    November 1983 Turkish Cypriot President Rauf DENKTASH declared independence\n    and the formation of a Turkish Republic of Northern Cyprus (TRNC), which has\n    been recognized only by Turkey; both sides publicly call for the resolution\n    of intercommunal differences and creation of a new federal system of\n    government\nCapital:\n    Nicosia\nAdministrative divisions:\n    6 districts; Famagusta, Kyrenia, Larnaca, Limassol, Nicosia, Paphos\nIndependence:\n    16 August 1960 (from UK)\nConstitution:\n    16 August 1960; negotiations to create the basis for a new or revised\n    constitution to govern the island and to better relations between Greek and\n    Turkish Cypriots have been held intermittently; in 1975 Turkish Cypriots\n    created their own Constitution and governing bodies within the Turkish\n    Federated State of Cyprus, which was renamed the Turkish Republic of\n    Northern Cyprus in 1983; a new Constitution for the Turkish area passed by\n    referendum in May 1985\nLegal system:\n    based on common law, with civil law modifications\nNational holiday:\n    Independence Day, 1 October (15 November is celebrated as Independence Day\n    in the Turkish area)\nExecutive branch:\n    president, Council of Ministers (cabinet); note - there is a president,\n    prime minister, and Council of Ministers (cabinet) in the Turkish area\nLegislative branch:\n    unicameral House of Representatives (Vouli Antiprosopon); note - there is a\n    unicameral Assembly of the Republic (Cumhuriyet Meclisi) in the Turkish area\nJudicial branch:\n    Supreme Court; note - there is also a Supreme Court in the Turkish area\nLeaders:\n  Chief of State and Head of Government:\n    President George VASSILIOU (since February 1988); note - Rauf R. DENKTASH\n    has been president of the Turkish area since 13 February 1975\nPolitical parties and leaders:\n  Greek Cypriot:\n    Progressive Party of the Working People (AKEL; Communist Party), Dimitrios\n    CHRISTOFIAS; Democratic Rally (DESY), Glafkos KLERIDES; Democratic Party\n    (DEKO), Spyros KYPRIANOU; United Democratic Union of the Center (EDEK),\n    Vassos LYSSARIDES; Socialist Democratic Renewal Movement (ADESOK), Mikhalis\n    PAPAPETROU; Liberal Party, Nikos ROLANDIS\n\n:Cyprus Government\n\n  Turkish area:\n    National Unity Party (UBP), Dervis EROGLU; Communal Liberation Party (TKP),\n    Mustafa AKINCI; Republican Turkish Party (CTP), Ozker OZGUR; New Cyprus\n    Party (YKP), Alpay DURDURAN; Social Democratic Party (SDP), Ergun VEHBI; New\n    Birth Party (YDP), Ali Ozkan ALTINISHIK; Free Democratic Party (HDP), Ismet\n    KOTAK; note - CTP, TKP, and YDP joined in the coalition Democratic Struggle\n    Party (DMP) for the 22 April 1990 legislative election; the CTP and TKP\n    boycotted the byelection of 13 October 1991, which was for 12 seats; the DMP\n    was dissolved after the 1990 election; National Justice Party (MAP), Zorlu\n    TORE; United Sovereignty Party, Arif Salih KIRDAG\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 14 February and 21 February 1988 (next to be held February 1993);\n    results - George VASSILIOU 52%, Glafkos KLERIDES 48%\n  House of Representatives:\n    last held 19 May 1991; results - DESY 35.8%, AKEL (Communist) 30.6, DEKO\n    19.5%, EDEK 10. 9%; others 3.2% seats - (56 total) DESY 20, AKEL (Communist)\n    18, DEKO 11, EDEK 7\n  Turkish Area: President:\n    last held 22 April 1990 (next to be held April 1995); results - Rauf R.\n    DENKTASH 66%, Ismail BOZKURT 32.05%\n  Turkish Area: Assembly of the Republic:\n    last held 6 May 1990 (next to be held May 1995); results - UBP\n    (conservative) 54.4%, DMP 44.4% YKP .9%; seats - (50 total) UBP\n    (conservative) 45, SDP 1, HDP 2, YDP 2; note - by-election of 13 October\n    1991 was for 12 seats\nCommunists:\n    about 12,000\nOther political or pressure groups:\n    United Democratic Youth Organization (EDON; Communist controlled); Union of\n    Cyprus Farmers (EKA; Communist controlled); Cyprus Farmers Union (PEK;\n    pro-West); Pan-Cyprian Labor Federation (PEO; Communist controlled) ;\n    Confederation of Cypriot Workers (SEK; pro-West); Federation of Turkish\n    Cypriot Labor Unions (Turk-Sen); Confederation of Revolutionary Labor Unions\n    (Dev-Is)\nMember of:\n    C, CCC, CE, CSCE, EBRD, ECE, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICC, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, NAM,\n    OAS (observer), UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO,\n    WTO; note - the Turkish-Cypriot administered area of Cyprus has observer\n    status in the OIC\nDiplomatic representation:\n    Ambassador Michael E. SHERIFIS; Chancery at 2211 R Street NW, Washington, DC\n    20008; telephone (202) 462-5772\n  US:\n    Ambassador Robert E. LAMB; Embassy at the corner of Therissos Street and\n    Dositheos Street, Nicosia (mailing address is APO AE 09836); telephone [357]\n    (2) 465151; FAX [357] (2) 459-571\nFlag:\n    white with a copper-colored silhouette of the island (the name Cyprus is\n    derived from the Greek word for copper) above two green crossed olive\n    branches in the center of the flag; the branches symbolize the hope for\n    peace and reconciliation between the Greek and Turkish communities; note -\n    the Turkish cypriot flag has a horizontal red stripe at the top and bottom\n    with a red crescent and red star on a white field\n\n:Cyprus Economy\n\nOverview:\n    The Greek Cypriot economy is small, diversified, and prosperous. Industry\n    contributes 24% to GDP and employs 35% of the labor force, while the service\n    sector contributes 44% to GDP and employs 45% of the labor force. Rapid\n    growth in exports of agricultural and manufactured products and in tourism\n    have played important roles in the average 6.4% rise in GDP between 1985 and\n    1990. In mid-1991, the World Bank \"graduated\" Cyprus off its list of\n    developing countries. In contrast to the bright picture in the south, the\n    Turkish Cypriot economy has less than half the per capita GDP and suffered a\n    series of reverses in 1991. Crippled by the effects of the Gulf war, the\n    collapse of the fruit-to-electronics conglomerate, Polly Peck, Ltd., and a\n    drought, the Turkish area in late 1991 asked for a multibillion-dollar grant\n    from Turkey to help ease the burden of the economic crisis. Turkey normally\n    underwrites a substantial portion of the TRNC economy.\nGDP:\n    purchasing power equivalent - Greek area: $5.5 billion, per capita $9,600;\n    real growth rate 6.0%; Turkish area: $600 million, per capita $4,000; real\n    growth rate 5.9% (1990)\nInflation rate (consumer prices):\n    Greek area: 4.5%; Turkish area: 69.4% (1990)\nUnemployment rate:\n    Greek area: 1.8%; Turkish area: 1.2% (1990)\nBudget:\n    revenues $1.2 billion; expenditures $2.0 billion, including capital\n    expenditures of $250 million (1991)\nExports:\n    $847 million (f.o.b., 1990)\n  commodities:\n    citrus, potatoes, grapes, wine, cement, clothing and shoes\n  partners:\n    UK 23%, Greece 10%, Lebanon 10%, Germany 5%\nImports:\n    $2.3 billion (f.o.b., 1990)\n  commodities:\n    consumer goods, petroleum and lubricants, food and feed grains, machinery\n  partners:\n    UK 13%, Japan 12%, Italy 10%, Germany 9.1%\nExternal debt:\n    $2.8 billion (1990)\nIndustrial production:\n    growth rate 5.6% (1990); accounts for 24% of GDP\nElectricity:\n    620,000 kW capacity; 1,770 million kWh produced, 2,530 kWh per capita (1991)\nIndustries:\n    food, beverages, textiles, chemicals, metal products, tourism, wood products\nAgriculture:\n    accounts for 7% of GDP and employs 14% of labor force in the south; major\n    crops - potatoes, vegetables, barley, grapes, olives, and citrus fruits;\n    vegetables and fruit provide 25% of export revenues\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $292 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $250 million; OPEC\n    bilateral aid (1979-89), $62 million; Communist countries (1970-89), $24\n    million\nCurrency:\n    Cypriot pound (plural - pounds) and in Turkish area, Turkish lira (plural -\n    liras); 1 Cypriot pound (#C) = 100 cents and 1 Turkish lira (TL) = 100 kurus\n\n:Cyprus Economy\n\nExchange rates:\n    Cypriot pounds (#C) per US$1 - 0.4683 (March 1992), 0.4615 (1991), 0.4572\n    (1990), 0.4933 (1989), 0.4663 (1988), 0.4807 (1987); in Turkish area,\n    Turkish liras (TL) per US$1 - 6,098.4 (March 1992), 4,173.9 (1991), 2,608.6\n    (1990), 2,121.7 (1989), 1,422.3 (1988), 857.2 (1987)\nFiscal year:\n    calendar year\n\n:Cyprus Communications\n\nHighways:\n    10,780 km total; 5,170 km paved; 5,610 km gravel, crushed stone, and earth\nPorts:\n    Famagusta, Kyrenia, Larnaca, Limassol, Paphos\nMerchant marine:\n    1,228 ships (1,000 GRT or over) totaling 20,053,213 GRT/35,647,964 DWT;\n    includes 8 short-sea passenger, 2 passenger-cargo, 440 cargo, 83\n    refrigerated cargo, 22 roll-on/roll-off, 52 container, 5 multifunction large\n    load carrier, 107 petroleum tanker, 3 specialized tanker, 3 liquefied gas,\n    20 chemical tanker, 32 combination ore/oil, 394 bulk, 3 vehicle carrier, 49\n    combination bulk, 2 railcar carrier, 2 passenger, 1 passenger cargo; note -\n    a flag of convenience registry; Cuba owns at least 30 of these ships,\n    republics of the former USSR own 58, Latvia also has 5 ships, Yugoslavia\n    owns 1, and Romania 3\nCivil air:\n    11 major transport aircraft (Greek Cypriots); 2 (Turkish Cypriots)\nAirports:\n    14 total, 14 usable; 12 with permanent-surface runways; none with runways\n    over 3,659 m; 7 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    excellent in both the area controlled by the Cypriot Government (Greek\n    area), and in the Turkish-Cypriot administered area; 210,000 telephones;\n    largely open-wire and radio relay; broadcast stations - 11 AM, 8 FM, 1 (34\n    repeaters) TV in Greek sector and 2 AM, 6 FM and 1 TV in Turkish sector;\n    international service by tropospheric scatter, 3 submarine cables, and\n    satellite earth stations - 1 Atlantic Ocean INTELSAT, 1 Indian Ocean\n    INTELSAT and EUTELSAT earth stations\n\n:Cyprus Defense Forces\n\nBranches:\n    Greek area - Greek Cypriot National Guard (GCNG; including air and naval\n    elements), Greek Cypriot Police; Turkish area - Turkish Cypriot Security\n    Force\nManpower availability:\n    males 15-49, 183,899; 126,664 fit for military service; 5,030 reach military\n    age (18) annually\nDefense expenditures:\n    exchange rate conversion - $209 million, 5% of GDP (1990 est.)\n\n:Czechoslovakia Geography\n\nTotal area:\n    127,870 km2\nLand area:\n    125,460 km2\nComparative area:\n    slightly larger than New York State\nLand boundaries:\n    3,438 km; Austria 548 km, Germany 815 km, Hungary 676 km, Poland 1,309 km,\n    Ukraine 90 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Gabcikovo Nagymaros Dam dispute with Hungary\nClimate:\n    temperate; cool summers; cold, cloudy, humid winters\nTerrain:\n    mixture of hills and mountains separated by plains and basins\nNatural resources:\n    hard coal, timber, lignite, uranium, magnesite, iron ore, copper, zinc\nLand use:\n    arable land 37%; permanent crops 1%; meadows and pastures 13%; forest and\n    woodland 36%; other 13%; includes irrigated 1%\nEnvironment:\n    infrequent earthquakes; acid rain; water pollution; air pollution\nNote:\n    landlocked; strategically located astride some of oldest and most\n    significant land routes in Europe; Moravian Gate is a traditional military\n    corridor between the North European Plain and the Danube in central Europe\n\n:Czechoslovakia People\n\nPopulation:\n    15,725,680 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 76 years female (1992)\nTotal fertility rate:\n    1.9 children born/woman (1992)\nNationality:\n    noun - Czechoslovak(s); adjective - Czechoslovak\nEthnic divisions:\n    Czech 62.9%, Slovak 31.8%, Hungarian 3.8%, Polish 0.5%, German 0.3%,\n    Ukrainian 0.3%, Russian 0.1%, other 0.3%\nReligions:\n    Roman Catholic 50%, Protestant 20%, Orthodox 2%, other 28%\nLanguages:\n    Czech and Slovak (official), Hungarian\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1970 est.)\nLabor force:\n    8,200,000 (1987); industry 36.9%, agriculture 12.3%, construction,\n    communications, and other 50.8% (1982)\nOrganized labor:\n    Czech and Slovak Confederation of Trade Unions (CSKOS); several new\n    independent trade unions established\n\n:Czechoslovakia Government\n\nLong-form name:\n    Czech and Slovak Federal Republic\nType:\n    federal republic in transition\nCapital:\n    Prague\nAdministrative divisions:\n    2 republics (republiky, singular - republika); Czech Republic (Ceska\n    Republika), Slovak Republic (Slovenska Republika); note - 11 regions (kraj,\n    singular); Severocesky, Zapadocesky, Jihocesky, Vychodocesky, Praha,\n    Severomoravsky, Jihomoravsky, Bratislava, Zapadoslovensky, Stredoslovensky,\n    Vychodoslovensky\nIndependence:\n    28 October 1918 (from Austro-Hungarian Empire)\nConstitution:\n    11 July 1960; amended in 1968 and 1970; new Czech, Slovak, and federal\n    constitutions to be drafted in 1992\nLegal system:\n    civil law system based on Austro-Hungarian codes, modified by Communist\n    legal theory; constitutional court currently being established; has not\n    accepted compulsory ICJ jurisdiction; legal code in process of modification\n    to bring it in line with Conference on Security and Cooperation in Europe\n    (CSCE) obligations and to expunge Marxist-Leninist legal theory\nNational holiday:\n    National Liberation Day, 9 May (1945) and Founding of the Republic, 28\n    October (1918)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    bicameral Federal Assembly (Federalni Shromazdeni) consists of an upper\n    house or Chamber of Nations (Snemovna Narodu) and a lower house or Chamber\n    of the People (Snemovna Lidu)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Vaclav HAVEL; (interim president from 29 December 1989 and\n    president since 5 July 1990)\n  Head of Government:\n    Prime Minister Marian CALFA (since 10 December 1989); Deputy Prime Minister\n    Vaclav KLAUS (since 3 October 1991); Deputy Prime Minister Jiri DIENSTBIER\n    (since 28 June 1990); Deputy Prime Minister Jozef MIKLOSKO (since 28 June\n    1990); Deputy Prime Minister Pavel RYCHETSKY (since 28 June 1990); Deputy\n    Prime Minister Pavel HOFFMAN (since 3 October 1991); note - generally,\n    \"prime minister\" is used at the federal level, \"premier\" at the republic\n    level; Czech Premier - Petr PITHART; Slovak Premier - Jan CARNOGVRSKY\n\n:Czechoslovakia Government\n\nPolitical parties and leaders:\n    note - there are very few federation-wide parties; party affiliation is\n    indicted as Czech (C) or Slovak (S); Civic Democratic Party, Vaclav KLAUS,\n    chairman, (C/S); Civic Movement, Jiri DIENSTBIER, chairman, (C); Civic\n    Democratic Alliance, Jan KALVODA, chairman; Christian Democratic Union\n    Public Against Violence, Martin PORUBJAK, chairman, (S); Christian\n    Democratic Party, Vaclav BENDA, (C); Christian Democratic Movement, Jan\n    CARNOGURSKY,(S); Communist Party of Bohemia and Moravia, Juri SVOBODA,\n    chairman; Movement for a Democratic Slovakia, Vladimir MECIAR, chairman -\n    removed from power in November 1989 by massive antiregime demonstrations;\n    Czechoslovak Social Democracy, Jiri HORAK, chairman, (C); Czechoslovak\n    Socialist Party, Ladislav DVORAK, chairman, (C)(S); Movement for\n    Self-Governing Democracy Society for Moravia and Silesia, Jan KRYCER,\n    chairman, (C); Party of the Democratic Left, Peter WEISS, chairman\n    (Slovakia's renamed Communists) (S); Slovak National Party, Jozef PROKES,\n    chairman, (S); Democratic Party, Jan HOLCIK, chairman, (S); Coexistence,\n    (C)(S)\nSuffrage:\n    universal at age 18\nElections:\n  Federal Assembly:\n    last held 8-9 June 1990 (next to be held 5-6 June 1992); results - Civic\n    Forum/Public Against Violence coalition 46%, KSC 13.6%; seats - (300 total)\n    Civic Forum/Public Against Violence coalition 170, KSC 47, Christian and\n    Democratic Union/Christian Democratic Movement 40, Czech, Slovak, Moravian,\n    and Hungarian groups 43\n  President:\n    last held 5 July 1990 (next to be held 3 July 1992); results - Vaclav HAVEL\n    elected by the Federal Assembly\nCommunists:\n    760,000 party members (September 1990); about 1,000,000 members lost since\n    November 1989\nOther political or pressure groups:\n    Czechoslovak Socialist Party, Czechoslovak People's Party, Czechoslovak\n    Social Democracy, Slovak Nationalist Party, Slovak Revival Party, Christian\n    Democratic Party; over 80 registered political groups fielded candidates in\n    the 8-9 June 1990 legislative election\nMember of:\n    BIS, CCC, CE, CSCE, EC (associate) ECE, FAO, GATT, HG, IAEA, IBRD, ICAO,\n    IFCTU, ILO, IMF, IMO, INMARSAT, IOC, ISO, ITU, LORCS, NACC, NSG, PCA, UN,\n    UNAVEM, UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO, ZC\nDiplomatic representation:\n    Ambassador Rita KLIMOVA; Chancery at 3900 Linnean Avenue NW, Washington, DC\n    20008; telephone (202) 363-6315 or 6316\n  US:\n    Ambassador Shirley Temple BLACK; Embassy at Trziste 15, 125 48, Prague 1\n    (mailing address is Unit 25402; APO AE 09213-5630); telephone [42] (2)\n    536-641/6; FAX [42] (2) 532-457\nFlag:\n    two equal horizontal bands of white (top) and red with a blue isosceles\n    triangle based on the hoist side\n\n:Czechoslovakia Economy\n\nOverview:\n    Czechoslovakia is highly industrialized by East European standards and has a\n    well-educated and skilled labor force. GDP per capita has been the highest\n    in Eastern Europe. Annual GDP growth slowed to less than 1 percent during\n    the 1985-90 period. The country is deficient in energy and in many raw\n    materials. Moreover, its aging capital plant lags well behind West European\n    standards. In January 1991, Prague launched a sweeping program to convert\n    its almost entirely state-owned and controlled economy to a market system.\n    The koruna now enjoys almost full internal convertibility and over 90% of\n    prices are set by the market. The government is planning to privatize all\n    small businesses and roughly two-thirds of large enterprises by the end of\n    1993. New private-sector activity is also expanding. Agriculture - 95%\n    socialized - is to be privatized by the end of 1992. Reform has taken its\n    toll on the economy: inflation was roughly 50% in 1991, unemployment was\n    nearly 70%, and GDP dropped an estimated 15%. In 1992 the government is\n    anticipating inflation of 10-15%, unemployment of 11-12%, and a drop in GDP\n    of up to 8%. As of mid-1992, the nation appears to be splitting in two -\n    into the industrial Czech area and the more agarian Slovak area.\nGDP:\n    purchasing power equivalent - $108.9 billion, per capita $6,900; real growth\n    rate -15% (1991 est.)\nInflation rate (consumer prices):\n    52% (1991 est.)\nUnemployment rate:\n    officially 6.7% (1991 est.)\nBudget:\n    revenues $4.5 billion; expenditures $4.5 billion, including capital\n    expenditures of $200 million (1992)\nExports:\n    $12.0 billion (f.o.b., 1990)\n  commodities:\n    machinery and equipment 39.2%; fuels, minerals, and metals 8.1%;\n    agricultural and forestry products 6.2%, other 46.5%\n  partners:\n    USSR, Germany, Poland, Austria, Hungary, Yugoslavia, Italy, France, US, UK\nImports:\n    $13.3 billion (f.o.b., 1990)\n  commodities:\n    machinery and equipment 37.3%; fuels, minerals, and metals 22.6%;\n    agricultural and forestry products 7.0%; other 33.1%\n  partners:\n    USSR, Germany, Austria, Poland, Switzerland, Hungary, Yugoslavia, UK, Italy\nExternal debt:\n    $9.1 billion, hard currency indebtedness (December 1991)\nIndustrial production:\n    growth rate -22% (1991 est.); accounts for almost 60% of GNP\nElectricity:\n    23,000,000 kW capacity; 90,000 million kWh produced, 5,740 kWh per capita\n    (1990)\nIndustries:\n    iron and steel, machinery and equipment, cement, sheet glass, motor\n    vehicles, armaments, chemicals, ceramics, wood, paper products, footwear\nAgriculture:\n    accounts for 9% of GDP (includes forestry); largely self-sufficient in food\n    production; diversified crop and livestock production, including grains,\n    potatoes, sugar beets, hops, fruit, hogs, cattle, and poultry; exporter of\n    forest products\n\n:Czechoslovakia Economy\n\nIllicit drugs:\n    transshipment point for Southwest Asian heroin and emerging as a\n    transshipment point for Latin American cocaine E\nEconomic aid:\n    donor - $4.2 billion in bilateral aid to non-Communist less developed\n    countries (1954-89)\nCurrency:\n    koruna (plural - koruny); 1 koruna (Kc) = 100 haleru\nExchange rates:\n    koruny (Kcs) per US$1 - 28.36 (January 1992), 29.53 (1991), 17.95 (1990),\n    15.05 (1989), 14.36 (1988), 13.69 (1987)\nFiscal year:\n    calendar year\n\n:Czechoslovakia Communications\n\nRailroads:\n    13,103 km total; 12,855 km 1.435-meter standard gauge, 102 km 1.520-meter\n    broad gauge, 146 km 0.750- and 0.760-meter narrow gauge; 2,861 km double\n    track; 3,798 km electrified; government owned (1988)\nHighways:\n    73,540 km total; including 517 km superhighway (1988)\nInland waterways:\n    475 km (1988); the Elbe (Labe) is the principal river\nPipelines:\n    crude oil 1,448 km; petroleum products 1,500 km; natural gas 8,100 km\nPorts:\n    maritime outlets are in Poland (Gdynia, Gdansk, Szczecin), Croatia (Rijeka),\n    Slovenia (Koper), Germany (Hamburg, Rostock); principal river ports are\n    Prague on the Vltava, Decin on the Elbe (Labe), Komarno on the Danube,\n    Bratislava on the Danube\nMerchant marine:\n    22 ships (1,000 GRT or over) totaling 290,185 GRT/437,291 DWT; includes 13\n    cargo, 9 bulk\nCivil air:\n    47 major transport aircraft\nAirports:\n    158 total, 158 usable; 40 with permanent-surface runways; 19 with runways\n    2,440-3,659 m; 37 with runways 1,220-2,439 m\nTelecommunications:\n    inadequate circuit capacity; 4 million telephones; Radrel backbone of\n    network; 25% of households have a telephone; broadcast stations - 32 AM, 15\n    FM, 41 TV (11 Soviet TV repeaters); 4.4 million TVs (1990); 1 satellite\n    earth station using INTELSAT and Intersputnik\n\n:Czechoslovakia Defense Forces\n\nBranches:\n    Army, Air and Air Defense Forces, Civil Defense, Border Guard\nManpower availability:\n    males 15-49, 4,110,628; 3,142,457 fit for military service; 142,239 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - 28 billion koruny, NA% of GNP (1991); note -\n    conversion of defense expenditures into US dollars using the current\n    exchange rate would produce misleading results\n\n:Denmark Geography\n\nTotal area:\n    43,070 km2\nLand area:\n    42,370 km2; includes the island of Bornholm in the Baltic Sea and the rest\n    of metropolitan Denmark, but excludes the Faroe Islands and Greenland\nComparative area:\n    slightly more than twice the size of Massachusetts\nLand boundaries:\n    68 km; Germany 68 km\nCoastline:\n    3,379 km\nMaritime claims:\n  Contiguous zone:\n    4 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    Rockall continental shelf dispute involving Iceland, Ireland, and the UK\n    (Ireland and the UK have signed a boundary agreement in the Rockall area);\n    Denmark has challenged Norway's maritime claims between Greenland and Jan\n    Mayen\nClimate:\n    temperate; humid and overcast; mild, windy winters and cool summers\nTerrain:\n    low and flat to gently rolling plains\nNatural resources:\n    crude oil, natural gas, fish, salt, limestone\nLand use:\n    arable land 61%; permanent crops NEGL%; meadows and pastures 6%; forest and\n    woodland 12%; other 21%; includes irrigated 9%\nEnvironment:\n    air and water pollution\nNote:\n    controls Danish Straits linking Baltic and North Seas\n\n:Denmark People\n\nPopulation:\n    5,163,955 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    1.7 children born/woman (1992)\nNationality:\n    noun - Dane(s); adjective - Danish\nEthnic divisions:\n    Scandinavian, Eskimo, Faroese, German\nReligions:\n    Evangelical Lutheran 91%, other Protestant and Roman Catholic 2%, other 7%\n    (1988)\nLanguages:\n    Danish, Faroese, Greenlandic (an Eskimo dialect); small German-speaking\n    minority\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1980 est.)\nLabor force:\n    2,581,400; private services 36.4%; government services 30.2%; manufacturing\n    and mining 20%; construction 6.8%; agriculture, forestry, and fishing 5.9%;\n    electricity/gas/water 0.7% (1990)\nOrganized labor:\n    65% of labor force\n\n:Denmark Government\n\nLong-form name:\n    Kingdom of Denmark\nType:\n    constitutional monarchy\nCapital:\n    Copenhagen\nAdministrative divisions:\n    metropolitan Denmark - 14 counties (amter, singular - amt) and 1 city*\n    (stad); Arhus, Bornholm, Frederiksborg, Fyn, Kbenhavn, Nordjylland, Ribe,\n    Ringkbing, Roskilde, Snderjylland, Staden Kbenhavn*, Storstrm, Vejle,\n    Vestsjaelland, Viborg; note - see separate entries for the Faroe Islands and\n    Greenland, which are part of the Danish realm and self-governing\n    administrative divisions\nIndependence:\n    became a constitutional monarchy in 1849\nConstitution:\n    5 June 1953\nLegal system:\n    civil law system; judicial review of legislative acts; accepts compulsory\n    ICJ jurisdiction, with reservations\nNational holiday:\n    Birthday of the Queen, 16 April (1940)\nExecutive branch:\n    monarch, heir apparent, prime minister, Cabinet\nLegislative branch:\n    unicameral parliament (Folketing)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen MARGRETHE II (since January 1972); Heir Apparent Crown Prince\n    FREDERIK, elder son of the Queen (born 26 May 1968)\n  Head of Government:\n    Prime Minister Poul SCHLUTER (since 10 September 1982)\nPolitical parties and leaders:\n    Social Democratic Party, Paul Nyrup RASMUSSEN; Conservative Party, Poul\n    SCHLUTER; Liberal Party, Uffe ELLEMANN-JENSEN; Socialist People's Party,\n    Holger K. NIELSEN; Progress Party, Pia KJAERSGAARD; Center Democratic Party,\n    Mimi Stilling JAKOBSEN; Radical Liberal Party, Marianne JELVED; Christian\n    People's Party, Jam SJURSEN; Left Socialist Party, Elizabeth BRUN-OLESEN;\n    Justice Party, Poul Gerhard KRISTIANSEN; Socialist Workers Party, leader NA;\n    Communist Workers' Party (KAP), leader NA; Common Course, Preben Meller\n    HANSEN; Green Party, Inger BORLEHMANN\nSuffrage:\n    universal at age 21\nElections:\n  Parliament:\n    last held 12 December 1990 (next to be held by December 1994); results -\n    Social Democratic Party 37.4%, Conservative Party 16.0%, Liberal 15.8%,\n    Socialist People's Party 8.3%, Progress Party 6.4%, Center Democratic Party\n    5.1%, Radical Liberal Party 3.5%, Christian People's Party 2.3%, other 5.2%;\n    seats - (179 total; includes 2 from Greenland and 2 from the Faroe Islands)\n    Social Democratic 69, Conservative 30, Liberal 29, Socialist People's 15,\n    Progress Party 12, Center Democratic 9, Radical Liberal 7, Christian\n    People's 4\n\n:Denmark Government\n\nMember of:\n    AfDB, AG (observer), AsDB, Australia Group, BIS, CCC, CE, CERN, COCOM, CSCE,\n    EBRD, EC, ECE, EIB, ESA, FAO, G-9, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU,\n    IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM,\n    ISO, ITU, LORCS, MTCR, NACC, NATO, NC, NEA, NIB, NSG, OECD, PCA, UN, UNCTAD,\n    UNESCO, UNFICYP, UNHCR, UNIDO, UNIIMOG, UNMOGIP, UNTSO, UPU, WHO, WIPO, WM,\n    ZC\nDiplomatic representation:\n    Ambassador Peter Pedersen DYVIG; Chancery at 3200 Whitehaven Street NW,\n    Washington, DC 20008; telephone (202) 234-4300; there are Danish Consulates\n    General in Chicago, Los Angeles, and New York\n  US:\n    Ambassador Richard B. STONE; Embassy at Dag Hammarskjolds Alle 24, 2100\n    Copenhagen O (mailing address is APO AE 09716); telephone [45] (31)\n    42-31-44; FAX [45] (35) 43-0223\nFlag:\n    red with a white cross that extends to the edges of the flag; the vertical\n    part of the cross is shifted to the hoist side, and that design element of\n    the (Danish flag) was subsequently adopted by the other Nordic countries of\n    Finland, Iceland, Norway, and Sweden\n\n:Denmark Economy\n\nOverview:\n    This modern economy features high-tech agriculture, up-to-date small-scale\n    and corporate industry, extensive government welfare measures, comfortable\n    living standards, and high dependence on foreign trade. Denmark probably\n    will continue its successful economic recovery in 1992 with tight fiscal and\n    monetary policies and export- oriented growth. Prime Minister Schluter's\n    main priorities are to maintain a current account surplus in order to pay\n    off extensive external debt and to continue to freeze public-sector\n    expenditures in order to reduce the budget deficit. The rate of growth by\n    1993 - boosted by increased investment and domestic demand - may be\n    sufficient to start to cut Denmark's high unemployment rate, which is\n    expected to remain at about 11% in 1992. Low inflation, low wage increases,\n    and the current account surplus put Denmark in a good competitive position\n    for the EC's anticipated single market, although Denmark must cut its VAT\n    and income taxes.\nGDP:\n    purchasing power equivalent - $91.1 billion, per capita $17,700; real growth\n    rate 2.0% (1991)\nInflation rate (consumer prices):\n    2.4% (1991)\nUnemployment rate:\n    10.6% (1991)\nBudget:\n    revenues $44.1 billion; expenditures $50 billion, including capital\n    expenditures of $NA billion (1991 est.)\nExports:\n    $37.8 billion (f.o.b., 1991)\n  commodities:\n    meat and meat products, dairy products, transport equipment (shipbuilding),\n    fish, chemicals, industrial machinery\n  partners:\n    EC 54.2% (Germany 22.5%, UK 10.3%, France 5.9%), Sweden 11.5%, Norway 5.8%,\n    US 5.0%, Japan 3.6% (1991)\nImports:\n    $31.6 billion (c.i.f., 1991)\n  commodities:\n    petroleum, machinery and equipment, chemicals, grain and foodstuffs,\n    textiles, paper\n  partners:\n    EC 52.8% (Germany 22.5%, UK 8.1%), Sweden 10.8%, US 6.3% (1991)\nExternal debt:\n    $45 billion (1991)\nIndustrial production:\n    growth rate 0% (1991 est.)\nElectricity:\n    11,215,000 kW capacity; 31,000 million kWh produced, 6,030 kWh per capita\n    (1991)\nIndustries:\n    food processing, machinery and equipment, textiles and clothing, chemical\n    products, electronics, construction, furniture, and other wood products\nAgriculture:\n    accounts for 4.5% of GDP and employs 6% of labor force (includes fishing and\n    forestry); farm products account for nearly 15% of export revenues;\n    principal products - meat, dairy, grain, potatoes, rape, sugar beets, fish;\n    self-sufficient in food production\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89) $5.9 billion\nCurrency:\n    Danish krone (plural - kroner); 1 Danish krone (DKr) = 100 re\n\n:Denmark Economy\n\nExchange rates:\n    Danish kroner (DKr) per US$1 - 6.116 (January 1992), 6.396 (1991), 6.189\n    (1990), 7.310 (1989), 6.732 (1988), 6.840 (1987)\nFiscal year:\n    calendar year\n\n:Denmark Communications\n\nRailroads:\n    2,675 km 1.435-meter standard gauge; Danish State Railways (DSB) operate\n    2,120 km (1,999 km rail line and 121 km rail ferry services); 188 km\n    electrified, 730 km double tracked; 650 km of standard- gauge lines are\n    privately owned and operated\nHighways:\n    66,482 km total; 64,551 km concrete, bitumen, or stone block; 1,931 km\n    gravel, crushed stone, improved earth\nInland waterways:\n    417 km\nPipelines:\n    crude oil 110 km; petroleum products 578 km; natural gas 700 km\nPorts:\n    Alborg, Arhus, Copenhagen, Esbjerg, Fredericia; numerous secondary and minor\n    ports\nMerchant marine:\n    317 ships (1,000 GRT or over) totaling 5,367,063 GRT/7,921,891 DWT; includes\n    13 short-sea passenger, 94 cargo, 21 refrigerated cargo, 38 container, 39\n    roll-on/roll-off, 1 railcar carrier, 42 petroleum tanker, 14 chemical\n    tanker, 33 liquefied gas, 4 livestock carrier, 17 bulk, 1 combination bulk;\n    note - Denmark has created its own internal register, called the Danish\n    International Ship register (DIS); DIS ships do not have to meet Danish\n    manning regulations, and they amount to a flag of convenience within the\n    Danish register; by the end of 1990, 258 of the Danish-flag ships belonged\n    to the DIS\nCivil air:\n    69 major transport aircraft\nAirports:\n    121 total, 108 usable; 27 with permanent-surface runways; none with runways\n    over 3,659 m; 9 with runways 2,440-3,659 m; 6 with runways 1,220-2,439 m\nTelecommunications:\n    excellent telephone, telegraph, and broadcast services; 4,509,000\n    telephones; buried and submarine cables and radio relay support trunk\n    network; broadcast stations - 3 AM, 2 FM, 50 TV; 19 submarine coaxial\n    cables; 7 earth stations operating in INTELSAT, EUTELSAT, and INMARSAT\n\n:Denmark Defense Forces\n\nBranches:\n    Royal Danish Army, Royal Danish Navy, Royal Danish Air Force, Home Guard\nManpower availability:\n    males 15-49, 1,372,878; 1,181,857 fit for military service; 38,221 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $2.5 billion, 2% of GDP (1991)\n\n:Djibouti Geography\n\nTotal area:\n    22,000 km2\nLand area:\n    21,980 km2\nComparative area:\n    slightly larger than Massachusetts\nLand boundaries:\n    517 km; Ethiopia 459 km, Somalia 58 km\nCoastline:\n    314 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    possible claim by Somalia based on unification of ethnic Somalis\nClimate:\n    desert; torrid, dry\nTerrain:\n    coastal plain and plateau separated by central mountains\nNatural resources:\n    geothermal areas\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 9%; forest and\n    woodland NEGL%; other 91%\nEnvironment:\n    vast wasteland\nNote:\n    strategic location near world's busiest shipping lanes and close to Arabian\n    oilfields; terminus of rail traffic into Ethiopia\n\n:Djibouti People\n\nPopulation:\n    390,906 (July 1992), growth rate 2.7% (1992)\nBirth rate:\n    43 births/1,000 population (1992)\nDeath rate:\n    16 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    115 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    47 years male, 50 years female (1992)\nTotal fertility rate:\n    6.3 children born/woman (1992)\nNationality:\n    noun - Djiboutian(s); adjective - Djiboutian\nEthnic divisions:\n    Somali 60%, Afar 35%, French, Arab, Ethiopian, and Italian 5%\nReligions:\n    Muslim 94%, Christian 6%\nLanguages:\n    French and Arabic (both official); Somali and Afar widely used\nLiteracy:\n    48% (male 63%, female 34%) age 15 and over can read and write (1990)\nLabor force:\n    NA, but a small number of semiskilled laborers at the port and 3,000 railway\n    workers; 52% of population of working age (1983)\nOrganized labor:\n    3,000 railway workers, General Union of Djiboutian Workers (UGTD),\n    government affiliated; some smaller unions\n\n:Djibouti Government\n\nLong-form name:\n    Republic of Djibouti\nType:\n    republic\nCapital:\n    Djibouti\nAdministrative divisions:\n    5 districts (cercles, singular - cercle); `Ali Sabih, Dikhil, Djibouti,\n    Obock, Tadjoura\nIndependence:\n    27 June 1977 (from France; formerly French Territory of the Afars and Issas)\nConstitution:\n    partial constitution ratified January 1981 by the National Assembly\nLegal system:\n    based on French civil law system, traditional practices, and Islamic law\nNational holiday:\n    Independence Day, 27 June (1977)\nExecutive branch:\n    president, prime minister, Council of Ministers\nLegislative branch:\n    National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Hassan GOULED Aptidon (since 24 June 1977)\n  Head of Government:\n    Prime Minister BARKAT Gourad Hamadou (since 30 September 1978)\nPolitical parties and leaders:\n    only party - People's Progress Assembly (RPP), Hassan GOULED Aptidon\nSuffrage:\n    universal adult at age NA\nElections:\n  National Assembly:\n    last held 24 April 1987 (next scheduled for May 1992 but post- poned);\n    results - RPP is the only party; seats - (65 total) RPP 65\n  President:\n    last held 24 April 1987 (next to be held April 1993); results - President\n    Hassan GOULED Aptidon was reelected without opposition\nOther political or pressure groups:\n    Front for the Restoration of Unity and Democracy and affiliates\nMember of:\n    ACCT, ACP, AfDB, AFESD, AL, ECA, FAO, G-77, IBRD, ICAO, IDA, IDB, IFAD, IFC,\n    IGADD, ILO, IMF, IMO, INTERPOL, IOC, ITU, LORCS, NAM, OAU, OIC, UN, UNESCO,\n    UNCTAD, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador Roble OLHAYE; Chancery at Suite 515, 1156 15th Street NW,\n    Washington, DC 20005; telephone (202) 331-0270\n  US:\n    Ambassador Charles R. BAQUET III; Embassy at Villa Plateau du Serpent,\n    Boulevard Marechal Joffre, Djibouti (mailing address is B. P. 185,\n    Djibouti); telephone [253] 35-39-95; FAX [253] 35-39-40\nFlag:\n    two equal horizontal bands of light blue (top) and light green with a white\n    isosceles triangle based on the hoist side bearing a red five-pointed star\n    in the center\n\n:Djibouti Economy\n\nOverview:\n    The economy is based on service activities connected with the country's\n    strategic location and status as a free trade zone in northeast Africa.\n    Djibouti provides services as both a transit port for the region and an\n    international transshipment and refueling center. It has few natural\n    resources and little industry. The nation is, therefore, heavily dependent\n    on foreign assistance to help support its balance of payments and to finance\n    development projects. An unemployment rate of over 30% continues to be a\n    major problem. Per capita consumption dropped an estimated 35% over the last\n    five years because of recession and a high population growth rate (including\n    immigrants and refugees).\nGDP:\n    exchange rate conversion - $340 million, $1,000 per capita; real growth rate\n    -1.0% (1989 est.)\nInflation rate (consumer prices):\n    3.7% (1989)\nUnemployment rate:\n    over 30% (1989)\nBudget:\n    revenues $131 million; expenditures $154 million, including capital\n    expenditures of $25 million (1990 est.)\nExports:\n    $190 million (f.o.b., 1990 est.)\n  commodities:\n    hides and skins, coffee (in transit)\n  partners:\n    Middle East 50%, Africa 43%, Western Europe 7%\nImports:\n    $311 million (f.o.b., 1990 est.)\n  commodities:\n    foods, beverages, transport equipment, chemicals, petroleum products\n  partners:\n    EC 36%, Africa 21%, Asia 12%, US 2%\nExternal debt:\n    $355 million (December 1990)\nIndustrial production:\n    growth rate 0.1% (1989); manufacturing accounts for 4% of GDP\nElectricity:\n    115,000 kW capacity; 200 million kWh produced, 580 kWh per capita (1991)\nIndustries:\n    limited to a few small-scale enterprises, such as dairy products and\n    mineral-water bottling\nAgriculture:\n    accounts for only 5% of GDP; scanty rainfall limits crop production to\n    mostly fruit and vegetables; half of population pastoral nomads herding\n    goats, sheep, and camels; imports bulk of food needs\nEconomic aid:\n    US commitments, including Ex-Im (FY78-89), $39 million; Western (non-US)\n    countries, including ODA and OOF bilateral commitments (1970-89), $1.1\n    billion; OPEC bilateral aid (1979-89), $149 million; Communist countries\n    (1970-89), $35 million\nCurrency:\n    Djiboutian franc (plural - francs); 1 Djiboutian franc (DF) = 100 centimes\nExchange rates:\n    Djiboutian francs (DF) per US$1 - 177.721 (fixed rate since 1973)\nFiscal year:\n    calendar year\n\n:Djibouti Communications\n\nRailroads:\n    the Ethiopian-Djibouti railroad extends for 97 km through Djibouti\nHighways:\n    2,900 km total; 280 km paved; 2,620 km improved or unimproved earth (1982)\nPorts:\n    Djibouti\nCivil air:\n    1 major transport aircraft\nAirports:\n    13 total, 11 usable; 2 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of urban facilities in Djibouti and radio relay stations at\n    outlying places; broadcast stations - 2 AM, 1 FM, 1 TV; 1 Indian Ocean\n    INTELSAT earth station and 1 ARABSAT; 1 submarine cable to Saudi Arabia\n\n:Djibouti Defense Forces\n\nBranches:\n    Djibouti National Army (including Navy and Air Force), National Security\n    Force (Force Nationale de Securite), National Police Force\nManpower availability:\n    males 15-49, 96,150; 56,077 fit for military service\nDefense expenditures:\n    exchange rate conversion - $29.9 million, NA% of GDP (1986)\n\n:Dominica Geography\n\nTotal area:\n    750 km2\nLand area:\n    750 km2\nComparative area:\n    slightly more than four times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    148 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by northeast trade winds; heavy rainfall\nTerrain:\n    rugged mountains of volcanic origin\nNatural resources:\n    timber\nLand use:\n    arable land 9%; permanent crops 13%; meadows and pastures 3%; forest and\n    woodland 41%; other 34%\nEnvironment:\n    flash floods a constant hazard; occasional hurricanes\nNote:\n    located 550 km southeast of Puerto Rico in the Caribbean Sea\n\n:Dominica People\n\nPopulation:\n    87,035 (July 1992), growth rate 1.6% (1992)\nBirth rate:\n    24 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 79 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Dominican(s); adjective - Dominican\nEthnic divisions:\n    mostly black; some Carib Indians\nReligions:\n    Roman Catholic 77%, Protestant 15% (Methodist 5%, Pentecostal 3%,\n    Seventh-Day Adventist 3%, Baptist 2%, other 2%), none 2%, unknown 1%, other\n    5%\nLanguages:\n    English (official); French patois widely spoken\nLiteracy:\n    94% (male 94%, female 94%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    25,000; agriculture 40%, industry and commerce 32%, services 28% (1984)\nOrganized labor:\n    25% of labor force\n\n:Dominica Government\n\nLong-form name:\n    Commonwealth of Dominica\nType:\n    parliamentary democracy\nCapital:\n    Roseau\nAdministrative divisions:\n    10 parishes; Saint Andrew, Saint David, Saint George, Saint John, Saint\n    Joseph, Saint Luke, Saint Mark, Saint Patrick, Saint Paul, Saint Peter\nIndependence:\n    3 November 1978 (from UK)\nConstitution:\n    3 November 1978\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 3 November (1978)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral House of Assembly\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    President Sir Clarence Augustus SEIGNORET (since 19 December 1983)\n  Head of Government:\n    Prime Minister (Mary) Eugenia CHARLES (since 21 July 1980, elected for a\n    third term 28 May 1990)\nPolitical parties and leaders:\n    Dominica Freedom Party (DFP), (Mary) Eugenia CHARLES; Dominica Labor Party\n    (DLP), Pierre CHARLES; United Workers Party (UWP), Edison JAMES\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 28 May 1990 (next to be held May 1995); results - percent of vote\n    by party NA; seats - (30 total; 9 appointed senators and 21 elected\n    representatives) DFP 11, UWP 6, DLP 4\n  President:\n    last held 20 December 1988 (next to be held December 1993); results -\n    President Sir Clarence Augustus SEIGNORET was reelected by the House of\n    Assembly\nOther political or pressure groups:\n    Dominica Liberation Movement (DLM), a small leftist group\nMember of:\n    ACCT, ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, IBRD, ICFTU, IDA, IFAD, IFC,\n    ILO, IMF, IMO, INTERPOL, LORCS, NAM (observer), OAS, OECS, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WCL, WHO, WMO\nDiplomatic representation:\n    there is no Chancery in the US\n  US:\n    no official presence since the Ambassador resides in Bridgetown (Barbados),\n    but travels frequently to Dominica\n\n:Dominica Government\n\nFlag:\n    green with a centered cross of three equal bands - the vertical part is\n    yellow (hoist side), black, and white - the horizontal part is yellow (top),\n    black, and white; superimposed in the center of the cross is a red disk\n    bearing a sisserou parrot encircled by 10 green five-pointed stars edged in\n    yellow; the 10 stars represent the 10 administrative divisions (parishes)\n\n:Dominica Economy\n\nOverview:\n    The economy is dependent on agriculture and thus is highly vulnerable to\n    climatic conditions. Agriculture accounts for about 30% of GDP and employs\n    40% of the labor force. Principal products include bananas, citrus, mangoes,\n    root crops, and coconuts. In 1990, GDP grew by 7%, bouncing back from the\n    1.6% decline of 1989. The tourist industry remains undeveloped because of a\n    rugged coastline and the lack of an international airport.\nGDP:\n    purchasing power equivalent - $170 million, per capita $2,000; real growth\n    rate 7.0% (1990 est.)\nInflation rate (consumer prices):\n    4.7% (1990)\nUnemployment rate:\n    10% (1989 est.)\nBudget:\n    revenues $48 million; expenditures $85 million, including capital\n    expenditures of $41 million (FY90)\nExports:\n    $59.9 million (f.o.b., 1990)\n  commodities:\n    bananas, coconuts, grapefruit, soap, galvanized sheets\n  partners:\n    UK 72%, Jamaica 10%, OECS 6%, US 3%, other 9%\nImports:\n    $103.9 million (c.i.f., 1990)\n  commodities:\n    food, oils and fats, chemicals, fuels and lubricants, manufactured goods,\n    machinery and equipment\n  partners:\n    US 23%, UK 18%, CARICOM 15%, OECS 15%, Japan 5%, Canada 3%, other 21%\nExternal debt:\n    $73 million (1990 est.)\nIndustrial production:\n    growth rate 4.5% in manufacturing (1988 est.); accounts for 11% of GDP\nElectricity:\n    7,000 kW capacity; 16 million kWh produced, 185 kWh per capita (1991)\nIndustries:\n    soap, beverages, tourism, food processing, furniture, cement blocks, shoes\nAgriculture:\n    accounts for 30% of GDP; principal crops - bananas, citrus, mangoes, root\n    crops, and coconuts; bananas provide the bulk of export earnings; forestry\n    and fisheries potential not exploited\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $120 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    1 July - 30 June\n\n:Dominica Communications\n\nHighways:\n    750 km total; 370 km paved, 380 km gravel and earth\nPorts:\n    Roseau, Portsmouth\nCivil air:\n    NA\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways; none with runways over\n    2,439 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    4,600 telephones in fully automatic network; VHF and UHF link to Saint\n    Lucia; new SHF links to Martinique and Guadeloupe; broadcast stations - 3\n    AM, 2 FM, 1 cable TV\n\n:Dominica Defense Forces\n\nBranches:\n    Commonwealth of Dominica Police Force (including Coast Guard)\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Dominican Republic Geography\n\nTotal area:\n    48,730 km2\nLand area:\n    48,380 km2\nComparative area:\n    slightly more than twice the size of New Hampshire\nLand boundaries:\n    275 km; Haiti 275 km\nCoastline:\n    1,288 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    outer edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    6 nm\nDisputes:\n    none\nClimate:\n    tropical maritime; little seasonal temperature variation\nTerrain:\n    rugged highlands and mountains with fertile valleys interspersed\nNatural resources:\n    nickel, bauxite, gold, silver\nLand use:\n    arable land 23%; permanent crops 7%; meadows and pastures 43%; forest and\n    woodland 13%; other 14%; includes irrigated 4%\nEnvironment:\n    subject to occasional hurricanes (July to October); deforestation\nNote:\n    shares island of Hispaniola with Haiti (western one-third is Haiti, eastern\n    two-thirds is the Dominican Republic)\n\n:Dominican Republic People\n\nPopulation:\n    7,515,892 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    56 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 70 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Dominican(s); adjective - Dominican\nEthnic divisions:\n    mixed 73%, white 16%, black 11%\nReligions:\n    Roman Catholic 95%\nLanguages:\n    Spanish\nLiteracy:\n    83% (male 85%, female 82%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,300,000 to 2,600,000; agriculture 49%, services 33%, industry 18% (1986)\nOrganized labor:\n    12% of labor force (1989 est.)\n\n:Dominican Republic Government\n\nLong-form name:\n    Dominican Republic (no short-form name)\nType:\n    republic\nCapital:\n    Santo Domingo\nAdministrative divisions:\n    29 provinces (provincias, singular - provincia) and 1 district* (distrito);\n    Azua, Baoruco, Barahona, Dajabon, Distrito Nacional*, Duarte, Elias Pina, El\n    Seibo, Espaillat, Hato Mayor, Independencia, La Altagracia, La Romana, La\n    Vega, Maria Trinidad Sanchez, Monsenor Nouel, Monte Cristi, Monte Plata,\n    Pedernales, Peravia, Puerto Plata, Salcedo, Samana, Sanchez Ramirez, San\n    Cristobal, San Juan, San Pedro De Macoris, Santiago, Santiago Rodriguez,\n    Valverde\nIndependence:\n    27 February 1844 (from Haiti)\nConstitution:\n    28 November 1966\nLegal system:\n    based on French civil codes\nNational holiday:\n    Independence Day, 27 February (1844)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congreso Nacional) consists of an upper chamber\n    or Senate (Senado) and lower chamber or Chamber of Deputies (Camara de\n    Diputados)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Joaquin BALAGUER Ricardo (since 16 August 1986, fifth elected term\n    began 16 August 1990); Vice President Carlos A. MORALES Troncoso (since 16\n    August 1986)\nPolitical parties and leaders:\n  Major parties:\n    Social Christian Reformist Party (PRSC), Joaquin BALAGUER Ricardo; Dominican\n    Revolutionary Party (PRD), Jose Franciso PENA Gomez; Dominican Liberation\n    Party (PLD), Juan BOSCH Gavino; Independent Revolutionary Party (PRI),\n    Jacobo MAJLUTA\n  Minor parties:\n    National Veterans and Civilian Party (PNVC), Juan Rene BEAUCHAMPS Javier;\n    Liberal Party of the Dominican Republic (PLRD), Andres Van Der HORST;\n    Democratic Quisqueyan Party (PQD), Elias WESSIN Chavez; National Progressive\n    Force (FNP), Marino VINICIO Castillo; Popular Christian Party (PPC), Rogelio\n    DELGADO Bogaert; Dominican Communist Party (PCD) Narciso ISA Conde;\n    Dominican Workers' Party (PTD), Ivan RODRIGUEZ; Anti-Imperialist Patriotic\n    Union (UPA), Ignacio RODRIGUEZ Chiappini\n  Note:\n    in 1983 several leftist parties, including the PCD, joined to form the\n    Dominican Leftist Front (FID); however, they still retain individual party\n    structures\nSuffrage:\n    universal and compulsory at age 18 or if married; members of the armed\n    forces and police cannot vote\n\n:Dominican Republic Government\n\nElections:\n  Chamber of Deputies:\n    last held 16 May 1990 (next to be held May 1994); results - percent of vote\n    by party NA; seats - (120 total) PLD 44, PRSC 41, PRD 33, PRI 2\n  President:\n    last held 16 May 1990 (next to be held May 1994); results - Joaquin BALAGUER\n    (PRSC) 35.7%, Juan BOSCH Gavino (PLD) 34.4%\n  Senate:\n    last held 16 May 1990 (next to be held May 1994); results - percent of vote\n    by party NA; seats - (30 total) PRSC 16, PLD 12, PRD 2\nCommunists:\n    an estimated 8,000 to 10,000 members in several legal and illegal factions;\n    effectiveness limited by ideological differences, organizational\n    inadequacies, and severe funding shortages\nMember of:\n    ACP, CARICOM (observer), ECLAC, FAO, G-11, G-77, GATT, IADB, IAEA, IBRD,\n    ICAO, ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM,\n    ITU, LAES, LORCS, NAM (guest), OAS, OPANAL, PCA, UN, UNCTAD, UNESCO, UNIDO,\n    UPU, WCL, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jose del Carmen ARIZA Gomez; Chancery at 1715 22nd Street NW,\n    Washington, DC 20008; telephone (202) 332-6280; there are Dominican\n    Consulates General in Boston, Chicago, Los Angeles, Mayaguez (Puerto Rico),\n    Miami, New Orleans, New York, Philadelphia, San Juan (Puerto Rico), and\n    Consulates in Charlotte Amalie (Virgin Islands), Detroit, Houston,\n    Jacksonville, Minneapolis, Mobile, Ponce (Puerto Rico), and San Francisco\n  US:\n    Ambassador Robert S. PASTORINO; Embassy at the corner of Calle Cesar Nicolas\n    Penson and Calle Leopoldo Navarro, Santo Domingo (mailing address is APO AA\n    34041-0008); telephone (809) 5412171\nFlag:\n    a centered white cross that extends to the edges, divides the flag into four\n    rectangles - the top ones are blue (hoist side) and red, the bottom ones are\n    red (hoist side) and blue; a small coat of arms is at the center of the\n    cross\n\n:Dominican Republic Economy\n\nOverview:\n    The economy is largely dependent on trade; imported components average 60%\n    of the value of goods consumed in the domestic market. Rapid growth of free\n    trade zones has established a significant expansion of manufacturing for\n    export, especially wearing apparel. Over the past decade, tourism has also\n    increased in importance and is a major earner of foreign exchange and a\n    source of new jobs. Agriculture remains a key sector of the economy. The\n    principal commercial crop is sugarcane, followed by coffee, cotton, cocoa,\n    and tobacco. Domestic industry is based on the processing of agricultural\n    products, durable consumer goods, minerals, and chemicals. Unemployment is\n    officially reported at about 30%, but there is considerable underemployment.\n    A fiscal austerity program has brought inflation under control, but in 1991\n    the economy contracted for a second straight year.\nGDP:\n    exchange rate conversion - $7 billion, per capita $950; real growth rate -2%\n    (1991 est.)\nInflation rate (consumer prices):\n    9% (1991 est.)\nUnemployment rate:\n    30% (1991 est.)\nBudget:\n    revenues NA; expenditures $1.1 billion, including capital expenditures of NA\n    (1992 est.)\nExports:\n    $775 million (f.o.b., 1991 est.)\n  commodities:\n    sugar, coffee, cocoa, gold, ferronickel\n  partners:\n    US 60%, EC 19%, Puerto Rico 8% (1990)\nImports:\n    $1.8 billion (c.i.f., 1991 est.)\n  commodities:\n    foodstuffs, petroleum, cotton and fabrics, chemicals and pharmaceuticals\n  partners:\n    US 50%\nExternal debt:\n    $4.7 billion (1991 est.)\nIndustrial production:\n    growth rate NA; accounts for 20% of GDP\nElectricity:\n    2,133,000 kW capacity; 4,410 million kWh produced, 597 kWh per capita (1991)\nIndustries:\n    tourism, sugar processing, ferronickel and gold mining, textiles, cement,\n    tobacco\nAgriculture:\n    accounts for 15% of GDP and employs 49% of labor force; sugarcane is the\n    most important commercial crop, followed by coffee, cotton, cocoa, and\n    tobacco; food crops - rice, beans, potatoes, corn, bananas; animal output -\n    cattle, hogs, dairy products, meat, eggs; not self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (FY85-89), $575 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $655 million\nCurrency:\n    Dominican peso (plural - pesos); 1 Dominican peso (RD$) = 100 centavos\nExchange rates:\n    Dominican pesos (RD$) per US$1 - 12.609 (January 1992), 12.692 (1991), 8.525\n    (1990), 6.340 (1989), 6.113 (1988), 3.845 (1987)\nFiscal year:\n    calendar year\n\n:Dominican Republic Communications\n\nRailroads:\n    1,655 km total in numerous segments; 4 different gauges from 0.558 m to\n    1.435 m\nHighways:\n    12,000 km total; 5,800 km paved, 5,600 km gravel and improved earth, 600 km\n    unimproved\nPipelines:\n    crude oil 96 km; petroleum products 8 km\nPorts:\n    Santo Domingo, Haina, San Pedro de Macoris, Puerto Plata\nMerchant marine:\n    1 cargo ship (1,000 GRT or over) totaling 1,587 GRT/1,165 DWT\nCivil air:\n    23 major transport aircraft\nAirports:\n    36 total, 30 usable; 12 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 9 with runways 1,220-2,439 m\nTelecommunications:\n    relatively efficient domestic system based on islandwide microwave relay\n    network; 190,000 telephones; broadcast stations - 120 AM, no FM, 18 TV, 6\n    shortwave; 1 coaxial submarine cable; 1 Atlantic Ocean INTELSAT earth\n    station\n\n:Dominican Republic Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Police\nManpower availability:\n    males 15-49, 2,013,294; 1,271,772 fit for military service; 80,117 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $70 million, 1% of GDP (1990)\n\n:Ecuador Geography\n\nTotal area:\n    283,560 km2\nLand area:\n    276,840 km2; includes Galapagos Islands\nComparative area:\n    slightly smaller than Nevada\nLand boundaries:\n    2,010 km; Colombia 590 km, Peru 1,420 km\nCoastline:\n    2,237 km\nMaritime claims:\n  Continental shelf:\n    claims continental shelf between mainland and Galapagos Islands\n  Territorial sea:\n    200 nm\nDisputes:\n    three sections of the boundary with Peru are in dispute\nClimate:\n    tropical along coast becoming cooler inland\nTerrain:\n    coastal plain (Costa), inter-Andean central highlands (Sierra), and flat to\n    rolling eastern jungle (Oriente)\nNatural resources:\n    petroleum, fish, timber\nLand use:\n    arable land 6%; permanent crops 3%; meadows and pastures 17%; forest and\n    woodland 51%; other 23%; includes irrigated 2%\nEnvironment:\n    subject to frequent earthquakes, landslides, volcanic activity;\n    deforestation; desertification; soil erosion; periodic droughts\nNote:\n    Cotopaxi in Andes is highest active volcano in world\n\n:Ecuador People\n\nPopulation:\n    10,933,143 (July 1992), growth rate 2.2% (1992)\nBirth rate:\n    28 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    42 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 72 years female (1992)\nTotal fertility rate:\n    3.5 children born/woman (1992)\nNationality:\n    noun - Ecuadorian(s); adjective - Ecuadorian\nEthnic divisions:\n    mestizo (mixed Indian and Spanish) 55%, Indian 25%, Spanish 10%, black 10%\nReligions:\n    Roman Catholic 95%\nLanguages:\n    Spanish (official); Indian languages, especially Quechua\nLiteracy:\n    86% (male 88%, female 84%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,800,000; agriculture 35%, manufacturing 21%, commerce 16%, services and\n    other activities 28% (1982)\nOrganized labor:\n    less than 15% of labor force\n\n:Ecuador Government\n\nLong-form name:\n    Republic of Ecuador\nType:\n    republic\nCapital:\n    Quito\nAdministrative divisions:\n    21 provinces (provincias, singular - provincia); Azuay, Bolivar, Canar,\n    Carchi, Chimborazo, Cotopaxi, El Oro, Esmeraldas, Galapagos, Guayas,\n    Imbabura, Loja, Los Rios, Manabi, Morona-Santiago, Napo, Pastaza, Pichincha,\n    Sucumbios, Tungurahua, Zamora-Chinchipe\nIndependence:\n    24 May 1822 (from Spain; Battle of Pichincha)\nConstitution:\n    10 August 1979\nLegal system:\n    based on civil law system; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 10 August (1809, independence of Quito)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    unicameral National Congress (Congreso Nacional)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Rodrigo BORJA Cevallos (since 10 August 1988); Vice President Luis\n    PARODI Valverde (since 10 August 1988)\nSuffrage:\n    universal at age 18; compulsory for literate persons ages 18-65, optional\n    for other eligible voters\nElections:\n  National Congress:\n    last held 17 June 1990 (next to be held 17 May 1992); results - percent of\n    vote by party NA; seats - (72 total) PSC 16, ID 14, PRE 13, PSE 8, DP 7, CFP\n    3, PC 3, PLR 3, FADI 2, FRA 2, MPD 1\n  President:\n    runoff election held 5 July 1992; results - Sixto DURAN elected as president\n    and Alberto DAHIK elected as vice president\nCommunists:\n    Communist Party of Ecuador (PCE, pro-Moscow), Rene Mauge MOSQUERA, secretary\n    general, 5,000 members; Communist Party of Ecuador/Marxist-Leninist (PCMLE,\n    Maoist), 3,000 members; Socialist Party of Ecuador (PSE, pro-Cuba), 5,000\n    members (est.); National Liberation Party (PLN, Communist), less than 5,000\n    members (est.)\nMember of:\n    AG, ECLAC, FAO, G-11, G-77, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD,\n    IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES, LAIA, LORCS,\n    NAM, OAS, OPANAL, OPEC, PCA, RG, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU,\n    WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jaime MONCAYO; Chancery at 2535 15th Street NW, Washington, DC\n    20009; telephone (202) 234-7200; there are Ecuadorian Consulates General in\n    Chicago, Houston, Los Angeles, Miami, New Orleans, New York, and San\n    Francisco, and a Consulate in San Diego\n\n:Ecuador Government\n\n  US:\n    Ambassador vacant; Embassy at Avenida 12 de Octubre y Avenida Patria; Quito\n    (mailing address is P. O. Box 538, Quito, or APO AA 34039); telephone [593]\n    (2) 562-890; FAX [593] (2) 502-052; there is a US Consulate General in\n    Guayaquil\nFlag:\n    three horizontal bands of yellow (top, double width), blue, and red with the\n    coat of arms superimposed at the center of the flag; similar to the flag of\n    Colombia that is shorter and does not bear a coat of arms\n\n:Ecuador Economy\n\nOverview:\n    Ecuador has substantial oil resources and rich agricultural areas. Growth\n    has been uneven because of natural disasters (for example, a major\n    earthquake in 1987), fluctuations in global oil prices, and government\n    policies designed to curb inflation. The government has not taken a\n    supportive attitude toward either domestic or foreign investment, although\n    its agreement to enter the Andean free trade zone is an encouraging move. As\n    1991 ended, Ecuador received a standby IMF loan of $105 million, which will\n    permit the country to proceed with the rescheduling of Paris Club debt.\nGDP:\n    exchange rate conversion - $11.5 billion, per capita $1,070; real growth\n    rate 2.5% (1991)\nInflation rate (consumer prices):\n    49% (1991)\nUnemployment rate:\n    8.0% (1990)\nBudget:\n    revenues $2.2 billion; expenditures $2.2 billion, including capital\n    expenditures of $375 million (1991)\nExports:\n    $2.9 billion (f.o.b., 1991)\n  commodities:\n    petroleum 47%, coffee, bananas, cocoa products, shrimp, fish products\n  partners:\n    US 60%, Latin America, Caribbean, EC countries\nImports:\n    $1.95 billion (f.o.b., 1991)\n  commodities:\n    transport equipment, vehicles, machinery, chemicals\n  partners:\n    US 34%, Latin America, Caribbean, EC, Japan\nExternal debt:\n    $12.4 billion (December 1991)\nIndustrial production:\n    growth rate -3.8% (1989); accounts for almost 40% of GDP, including\n    petroleum\nElectricity:\n    2,344,000 kW capacity; 6,430 million kWh produced, 598 kWh per capita (1991)\nIndustries:\n    petroleum, food processing, textiles, metal works, paper products, wood\n    products, chemicals, plastics, fishing, timber\nAgriculture:\n    accounts for 18% of GDP and 35% of labor force (including fishing and\n    forestry); leading producer and exporter of bananas and balsawood; other\n    exports - coffee, cocoa, fish, shrimp; crop production - rice, potatoes,\n    manioc, plantains, sugarcane; livestock sector - cattle, sheep, hogs, beef,\n    pork, dairy products; net importer of foodgrains, dairy products, and sugar\nIllicit drugs:\n    minor illicit producer of coca following the successful eradication campaign\n    of 1985-87; significant transit country, however, for derivatives of coca\n    originating in Colombia, Bolivia, and Peru\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $498 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.15 billion;\n    Communist countries (1970-89), $64 million\nCurrency:\n    sucre (plural - sucres); 1 sucre (S/) = 100 centavos\n\n:Ecuador Economy\n\nExchange rates:\n    sucres (S/) per US$1 - 1,046.25 (1991), 869.54 (December 1990), 767.75\n    (1990), 526.35 (1989), 301.61 (1988), 170.46 (1987)\nFiscal year:\n    calendar year\n\n:Ecuador Communications\n\nRailroads:\n    965 km total; all 1.067-meter-gauge single track\nHighways:\n    28,000 km total; 3,600 km paved, 17,400 km gravel and improved earth, 7,000\n    km unimproved earth\nInland waterways:\n    1,500 km\nPipelines:\n    crude oil 800 km; petroleum products 1,358 km\nPorts:\n    Guayaquil, Manta, Puerto Bolivar, Esmeraldas\nMerchant marine:\n    46 ships (1,000 GRT or over) totaling 337,999 GRT/491,996 DWT; includes 2\n    passenger, 4 cargo, 17 refrigerated cargo, 4 container, 1 roll-on/roll-off,\n    15 petroleum tanker, 1 liquefied gas, 2 bulk\nCivil air:\n    23 major transport aircraft\nAirports:\n    143 total, 142 usable; 43 with permanent-surface runways; 1 with runway over\n    3,659 m; 6 with runways 2,440-3,659 m; 23 with runways 1,220-2,439 m\nTelecommunications:\n    domestic facilities generally adequate; 318,000 telephones; broadcast\n    stations - 272 AM, no FM, 33 TV, 39 shortwave; 1 Atlantic Ocean INTELSAT\n    earth station\n\n:Ecuador Defense Forces\n\nBranches:\n    Army (Ejercito Ecuatoriano), Navy (Armada Ecuatoriana), Air Force (Fuerza\n    Aerea Ecuatoriana), National Police\nManpower availability:\n    males 15-49, 2,804,260; 1,898,401 fit for military service; 115,139 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Egypt Geography\n\nTotal area:\n    1,001,450 km2\nLand area:\n    995,450 km2\nComparative area:\n    slightly more than three times the size of New Mexico\nLand boundaries:\n    2,689 km; Gaza Strip 11 km, Israel 255 km, Libya 1,150 km, Sudan 1,273 km\nCoastline:\n    2,450 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    undefined\n  Territorial sea:\n    12 nm\nDisputes:\n    Administrative boundary with Sudan does not coincide with international\n    boundary\nClimate:\n    desert; hot, dry summers with moderate winters\nTerrain:\n    vast desert plateau interrupted by Nile valley and delta\nNatural resources:\n    crude oil, natural gas, iron ore, phosphates, manganese, limestone, gypsum,\n    talc, asbestos, lead, zinc\nLand use:\n    arable land 3%; permanent crops 2%; meadows and pastures 0%; forest and\n    woodland NEGL%; other 95%; includes irrigated 5%\nEnvironment:\n    Nile is only perennial water source; increasing soil salinization below\n    Aswan High Dam; hot, driving windstorm called khamsin occurs in spring;\n    water pollution; desertification\nNote:\n    controls Sinai Peninsula, only land bridge between Africa and remainder of\n    Eastern Hemisphere; controls Suez Canal, shortest sea link between Indian\n    Ocean and Mediterranean; size and juxtaposition to Israel establish its\n    major role in Middle Eastern geopolitics\n\n:Egypt People\n\nPopulation:\n    56,368,950 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    33 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    80 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    58 years male, 62 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - Egyptian(s); adjective - Egyptian\nEthnic divisions:\n    Eastern Hamitic stock 90%; Greek, Italian, Syro-Lebanese 10%\nReligions:\n    (official estimate) Muslim (mostly Sunni) 94%; Coptic Christian and other 6%\nLanguages:\n    Arabic (official); English and French widely understood by educated classes\nLiteracy:\n    48% (male 63%, female 34%) age 15 and over can read and write (1990 est.)\nLabor force:\n    15,000,000 (1989 est.); government, public sector enterprises, and armed\n    forces 36%; agriculture 34%; privately owned service and manufacturing\n    enterprises 20% (1984); shortage of skilled labor; 2,500,000 Egyptians work\n    abroad, mostly in Iraq and the Gulf Arab states (1988 est.)\nOrganized labor:\n    2,500,000 (est.)\n\n:Egypt Government\n\nLong-form name:\n    Arab Republic of Egypt\nType:\n    republic\nCapital:\n    Cairo\nAdministrative divisions:\n    26 governorates (muhafazah, singular - muhafazah); Ad Daqahliyah, Al Bahr al\n    Ahmar, Al Buchayrah, Al Fayyum, Al Gharbiyah, Al Iskandariyah, Al\n    Isma`iliyah, Al Jizah, Al Minufiyah, Al Minya, Al Qahirah, Al Qalyubiyah, Al\n    Wadi al Jadid, Ash Sharqiyah, As Suways, Aswan, Asyu`t, Bani Suwayf, Bur\n    Sa`id, Dumyat, Janub Sina, Kafr ash Shaykh, Matruh, Qina, Shamal Sina, Suhaj\nIndependence:\n    28 February 1922 (from UK); formerly United Arab Republic\nConstitution:\n    11 September 1971\nLegal system:\n    based on English common law, Islamic law, and Napoleonic codes; judicial\n    review by Supreme Court and Council of State (oversees validity of\n    administrative decisions); accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Anniversary of the Revolution, 23 July (1952)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral People's Assembly (Majlis al-Cha'b); note - there is an Advisory\n    Council (Majlis al-Shura) that functions in a consultative role\nJudicial branch:\n    Supreme Constitutional Court\nLeaders:\n  Chief of State:\n    President Mohammed Hosni MUBARAK (was made acting President on 6 October\n    1981 upon the assassination of President SADAT and sworn in as President on\n    14 October 1981)\n  Head of Government:\n    Prime Minister Atef Mohammed Najib SEDKY (since 12 November 1986)\nPolitical parties and leaders:\n    formation of political parties must be approved by government; National\n    Democratic Party (NDP), President Mohammed Hosni MUBARAK, leader, is the\n    dominant party; legal opposition parties are Socialist Liberal Party (SLP),\n    Kamal MURAD; Socialist Labor Party, Ibrahim SHUKRI; National Progressive\n    Unionist Grouping (NPUG), Khalid MUHYI-AL-DIN; Umma Party, Ahmad al-SABAHI;\n    New Wafd Party (NWP), Fu'd SIRAJ AL-DIN; Misr al-Fatah Party (Young Egypt\n    Party), Ali al-Din SALIH; The Greens Party, Hasan RAJAB; Nasserist Arab\n    Democratic Party, Dia' AL-DIN DAWOUD\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Advisory Council:\n    last held 8 June 1989 (next to be held June 1995); results - NDP 100%; seats\n    - (258 total, 172 elected) NDP 172\n  People's Assembly:\n    last held 29 November 1990 (next to be held November 1995); results - NDP\n    78.4%, NPUG 1.4%, independents 18.7%; seats - (437 total, 444 elected) -\n    including NDP 348, NPUG 6, independents 83; note - most opposition parties\n    boycotted\n\n:Egypt Government\n\n  President:\n    last held 5 October 1987 (next to be held October 1993); results - President\n    Hosni MUBARAK was reelected\nCommunists:\n    about 500 party members\nOther political or pressure groups:\n    Islamic groups are illegal, but the largest one, the Muslim Brotherhood, is\n    tolerated by the government; trade unions and professional associations are\n    officially sanctioned\nMember of:\n    ACC, ACCT (associate), AfDB, AFESD, AG (observer), AL, AMF, CAEU, CCC, EBRD,\n    ECA, ESCWA, FAO, G-15, G-19, G-24, G-77, GATT, IAEA, IBRD, ICAO, ICC, IDA,\n    IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM\n    (observer), ISO, ITU, LORCS, NAM, OAPEC, OAS (observer), OAU, OIC, PCA, UN,\n    UNCTAD, UNESCO, UNIDO, UNRWA, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador El Sayed Abdel Raouf EL REEDY; Chancery at 2310 Decatur Place NW,\n    Washington, DC 20008; telephone (202) 232-5400; there are Egyptian\n    Consulates General in Chicago, Houston, New York, and San Francisco\n  US:\n    Ambassador Robert PELLETREAU; Embassy at Lazougi Street, Garden City, Cairo\n    (mailing address is APO AE 09839); telephone [20] (2) 355-7371; FAX [20] (2)\n    355-7375; there is a US Consulate General in Alexandria\nFlag:\n    three equal horizontal bands of red (top), white, and black with the\n    national emblem (a shield superimposed on a golden eagle facing the hoist\n    side above a scroll bearing the name of the country in Arabic) centered in\n    the white band; similar to the flag of Yemen, which has a plain white band;\n    also similar to the flag of Syria that has two green stars and to the flag\n    of Iraq, which has three green stars (plus an Arabic inscription) in a\n    horizontal line centered in the white band\n\n:Egypt Economy\n\nOverview:\n    Egypt has one of the largest public sectors of all the Third World\n    economies, most industrial plants being owned by the government.\n    Overregulation holds back technical modernization and foreign investment.\n    Even so, the economy grew rapidly during the late 1970s and early 1980s, but\n    in 1986 the collapse of world oil prices and an increasingly heavy burden of\n    debt servicing led Egypt to begin negotiations with the IMF for\n    balance-of-payments support. As part of the 1987 agreement with the IMF, the\n    government agreed to institute a reform program to reduce inflation, promote\n    economic growth, and improve its external position. The reforms have been\n    slow in coming, however, and the economy has been largely stagnant for the\n    past four years. The addition of 1 million people every seven months to\n    Egypt's population exerts enormous pressure on the 5% of the total land area\n    available for agriculture.\nGDP:\n    exchange rate conversion - $39.2 billion, per capita $720; real growth rate\n    2% (1991 est.)\nInflation rate (consumer prices):\n    17% (1991 est.)\nUnemployment rate:\n    15% (1991 est.)\nBudget:\n    revenues $9.4 billion; expenditures $15.9 billion, including capital\n    expenditures of $6 billion (FY90 est.)\nExports:\n    $4.5 billion (f.o.b., 1991 est.)\n  commodities:\n    crude oil and petroleum products, cotton yarn, raw cotton, textiles, metal\n    products, chemicals\n  partners:\n    EC, Eastern Europe, US, Japan\nImports:\n    $11.7 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery and equipment, foods, fertilizers, wood products, durable consumer\n    goods, capital goods\n  partners:\n    EC, US, Japan, Eastern Europe\nExternal debt:\n    $38 billion (December 1991 est.)\nIndustrial production:\n    growth rate 7.3% (FY89 est.); accounts for 18% of GDP\nElectricity:\n    13,500,000 kW capacity; 45,000 million kWh produced, 820 kWh per capita\n    (1991)\nIndustries:\n    textiles, food processing, tourism, chemicals, petroleum, construction,\n    cement, metals\nAgriculture:\n    accounts for 20% of GDP and employs more than one-third of labor force;\n    dependent on irrigation water from the Nile; world's sixth-largest cotton\n    exporter; other crops produced include rice, corn, wheat, beans, fruit,\n    vegetables; not self-sufficient in food; livestock - cattle, water buffalo,\n    sheep, and goats; annual fish catch about 140,000 metric tons\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $15.7 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-88), $10.1 billion; OPEC\n    bilateral aid (1979-89), $2.9 billion; Communist countries (1970-89), $2.4\n    billion\n\n:Egypt Economy\n\nCurrency:\n    Egyptian pound (plural - pounds); 1 Egyptian pound (#E) = 100 piasters\nExchange rates:\n    Egyptian pounds (#E) per US$1 - 3.3310 (January 1992), 2.7072 (1990), 2.5171\n    (1989), 2.2233 (1988), 1.5183 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Egypt Communications\n\nRailroads:\n    5,110 km total; 4,763 km 1,435-meter standard gauge, 347 km 0.750-meter\n    gauge; 951 km double track; 25 km electrified\nHighways:\n    51,925 km total; 17,900 km paved, 2,500 km gravel, 13,500 km improved earth,\n    18,025 km unimproved earth\nInland waterways:\n    3,500 km (including the Nile, Lake Nasser, Alexandria-Cairo Waterway, and\n    numerous smaller canals in the delta); Suez Canal, 193.5 km long (including\n    approaches), used by oceangoing vessels drawing up to 16.1 meters of water\nPipelines:\n    crude oil 1,171 km; petroleum products 596 km; natural gas 460 km\nPorts:\n    Alexandria, Port Said, Suez, Bur Safajah, Damietta\nMerchant marine:\n    150 ships (1,000 GRT or over) totaling 1,019,182 GRT/1,499,880 DWT; includes\n    11 passenger, 5 short-sea passenger, 2 passenger-cargo, 86 cargo, 3\n    refrigerated cargo, 15 roll-on/roll-off, 12 petroleum tanker, 15 bulk, 1\n    container\nCivil air:\n    50 major transport aircraft\nAirports:\n    92 total, 82 usable; 66 with permanent-surface runways; 2 with runways over\n    3,659 m; 44 with runways 2,440-3,659 m; 24 with runways 1,220-2,439 m\nTelecommunications:\n    system is large but still inadequate for needs; principal centers are\n    Alexandria, Cairo, Al Mansurah, Ismailia, Suez and Tanta; intercity\n    connections by coaxial cable and microwave; extensive upgrading in progress;\n    600,000 telephones (est.); broadcast stations - 39 AM, 6 FM, 41 TV;\n    satellite earth stations - 1 Atlantic Ocean INTELSAT, 1 Indian Ocean\n    INTELSAT, 1 INMARSAT, 1 ARABSAT; 5 submarine coaxial cables; tropospheric\n    scatter to Sudan; radio relay to Libya, Israel, and Jordan\n\n:Egypt Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Air Defense Command\nManpower availability:\n    males 15-49, 13,911,006; 9,044,425 fit for military service; 563,321 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $2.5 billion, 6.4% of GDP (1991)\n\n:El Salvador Geography\n\nTotal area:\n    21,040 km2\nLand area:\n    20,720 km2\nComparative area:\n    slightly smaller than Massachusetts\nLand boundaries:\n    545 km; Guatemala 203 km, Honduras 342 km\nCoastline:\n    307 km\nMaritime claims:\n  Territorial sea:\n    200 nm (overflight and navigation permitted beyond 12 nm)\nDisputes:\n    dispute with Honduras over several sections of the land boundary; dispute\n    over Golfo de Fonseca maritime boundary because of disputed sovereignty of\n    islands\nClimate:\n    tropical; rainy season (May to October); dry season (November to April)\nTerrain:\n    mostly mountains with narrow coastal belt and central plateau\nNatural resources:\n    hydropower, geothermal power, crude oil\nLand use:\n    arable land 27%; permanent crops 8%; meadows and pastures 29%; forest and\n    woodland 6%; other 30%; includes irrigated 5%\nEnvironment:\n    The Land of Volcanoes; subject to frequent and sometimes very destructive\n    earthquakes; deforestation; soil erosion; water pollution\nNote:\n    smallest Central American country and only one without a coastline on\n    Caribbean Sea\n\n:El Salvador People\n\nPopulation:\n    5,574,279 (July 1992), growth rate 2.2% (1992)\nBirth rate:\n    33 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    - 6 migrants/1,000 population (1992)\nInfant mortality rate:\n    26 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 75 years female (1992)\nTotal fertility rate:\n    4.0 children born/woman (1992)\nNationality:\n    noun - Salvadoran(s); adjective - Salvadoran\nEthnic divisions:\n    mestizo 89%, Indian 10%, white 1%\nReligions:\n    Roman Catholic about 75%, with extensive activity by Protestant groups\n    throughout the country (more than 1 million Protestant evangelicals in El\n    Salvador at the end of 1990)\nLanguages:\n    Spanish, Nahua (among some Indians)\nLiteracy:\n    73% (male 76%, female 70%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,700,000 (1982 est.); agriculture 40%, commerce 16%, manufacturing 15%,\n    government 13%, financial services 9%, transportation 6%, other 1%; shortage\n    of skilled labor and a large pool of unskilled labor, but manpower training\n    programs improving situation (1984 est.)\nOrganized labor:\n    total labor force 15%; agricultural labor force 10%; urban labor force 7%\n    (1987 est.)\n\n:El Salvador Government\n\nLong-form name:\n    Republic of El Salvador\nType:\n    republic\nCapital:\n    San Salvador\nAdministrative divisions:\n    14 departments (departamentos, singular - departamento); Ahuachapan,\n    Cabanas, Chalatenango, Cuscatlan, La Libertad, La Paz, La Union, Morazan,\n    San Miguel, San Salvador, Santa Ana, San Vicente, Sonsonate, Usulutan\nIndependence:\n    15 September 1821 (from Spain)\nConstitution:\n    20 December 1983\nLegal system:\n    based on civil and Roman law, with traces of common law; judicial review of\n    legislative acts in the Supreme Court; accepts compulsory ICJ jurisdiction,\n    with reservations\nNational holiday:\n    Independence Day, 15 September (1821)\nExecutive branch:\n    president, vice president, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Legislative Assembly (Asamblea Legislativa)\nJudicial branch:\n    Supreme Court (Corte Suprema)\nLeaders:\n  Chief of State and Head of Government:\n    President Alfredo CRISTIANI Buchard (since 1 June 1989); Vice President Jose\n    Francisco MERINO (since 1 June 1989)\nPolitical parties and leaders:\n    National Republican Alliance (ARENA), Armando CALDERON Sol; Christian\n    Democratic Party (PDC), Fidel CHAVEZ Mena; National Conciliation Party\n    (PCN), Ciro CRUZ Zepeda; National Democratic Union (UDN), Mario AGUINADA\n    Carranza; the Democratic Convergence (CD) is a coalition of three parties -\n    the Social Democratic Party (PSD), Wilfredo BARILLAS; the National\n    Revolutionary Movement (MNR), Victor VALLE; and the Popular Social Christian\n    Movement (MPSC), Ruben ZAMORA; Authentic Christian Movement (MAC), Julio REY\n    PRENDES; Democratic Action (AD), Ricardo GONZALEZ Camacho\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Assembly:\n    last held 10 March 1991 (next to be held March 1994); results - ARENA 44.3%,\n    PDC 27.96%, CD 12.16%, PCN 8.99%, MAC 3.23%, UDN 2.68%; seats - (84 total)\n    ARENA 39, PDC 26, PCN 9, CD 8, UDN 1, MAC 1\n  President:\n    last held 19 March 1989 (next to be held March 1994); results - Alfredo\n    CRISTIANI (ARENA) 53.8%, Fidel CHAVEZ Mena (PDC) 36.6%, other 9.6%\nOther political or pressure groups:\n  Business organizations:\n    National Association of Private Enterprise (ANEP), conservative; Productive\n    Alliance (AP), conservative; National Federation of Salvadoran Small\n    Businessmen (FENAPES), conservative\n\n:El Salvador Government\n\n  FMLN front organizations:\n    Labor fronts include - National Union of Salvadoran Workers (UNTS), leftist\n    umbrella front group, leads FMLN front network; National Federation of\n    Salvadoran Workers (FENASTRAS), best organized of front groups and\n    controlled by FMLN's National Resistance (RN); Social Security Institute\n    Workers Union (STISSS), one of the most militant fronts, is controlled by\n    FMLN's Armed Forces of National Resistance (FARN) and RN; Association of\n    Telecommunications Workers (ASTTEL); Centralized Union Federation of El\n    Salvador (FUSS); Treasury Ministry Employees (AGEMHA); Nonlabor fronts\n    include - Committee of Mothers and Families of Political Prisoners,\n    Disappeared Persons, and Assassinated of El Salvador (COMADRES);\n    Nongovernmental Human Rights Commission (CDHES); Committee of Dismissed and\n    Unemployed of El Salvador (CODYDES); General Association of Salvadoran\n    University Students (AGEUS); National Association of Salvadoran Educators\n    (ANDES-21 DE JUNIO); Salvadoran Revolutionary Student Front (FERS),\n    associated with the Popular Forces of Liberation (FPL); Association of\n    National University Educators (ADUES); Salvadoran University Students Front\n    (FEUS); Christian Committee for the Displaced of El Salvador (CRIPDES), an\n    FPL front; The Association for Communal Development in El Salvador\n    (PADECOES), controlled by the People's Revolutionary Army (ERP);\n    Confederation of Cooperative Associations of El Salvador (COACES)\nOther political or pressure groups:\n  Labor organizations:\n    Federation of Construction and Transport Workers Unions (FESINCONSTRANS),\n    independent; Salvadoran Communal Union (UCS), peasant association; Unitary\n    Federation of Salvadoran Unions (FUSS), leftist; National Federation of\n    Salvadoran Workers (FENASTRAS), leftist; Democratic Workers Central (CTD),\n    moderate; General Confederation of Workers (CGT), moderate; National Unity\n    of Salvadoran Workers (UNTS), leftist; National Union of Workers and\n    Peasants (UNOC), moderate labor coalition of democratic labor organizations;\n    United Workers Front (FUT)\n  Leftist political parties:\n    National Democratic Union (UDN), National Revolutionary Movement (MNR), and\n    Popular Social Movement (MPSC)\n  Leftist revolutionary movement:\n    Farabundo Marti National Liberation Front (FMLN), leadership body of the\n    insurgency, five factions - Popular Liberation Forces (FPL), Armed Forces of\n    National Resistance (FARN), People's Revolutionary Army (ERP), Salvadoran\n    Communist Party/Armed Forces of Liberation (PCES/FAL), and Central American\n    Workers' Revolutionary Party (PRTC)/Popular Liberation Revolutionary Armed\n    Forces (FARLP)\nMember of:\n    BCIE, CACM, ECLAC, FAO, G-77, IADB, IAEA, IBRD, ICAO, ICFTU, IDA, IFAD, IFC,\n    ILO, IMF, IMO, INTELSAT, IOC, IOM, ITU, LAES, LORCS, NAM (observer), OAS,\n    OPANAL, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Miguel Angel SALAVERRIA; Chancery at 2308 California Street NW,\n    Washington, DC 20008; telephone (202) 265-9671 through 3482; there are\n    Salvadoran Consulates General in Houston, Los Angeles, Miami, New Orleans,\n    New York, and San Francisco\n  US:\n    Ambassador William G. WALKER; Embassy at 25 Avenida Norte No. 1230, San\n    Salvador (mailing address is APO AA 34023); telephone [503] 26-7100; FAX\n    [503] (26) 5839\n\n:El Salvador Government\n\nFlag:\n    three equal horizontal bands of blue (top), white, and blue with the\n    national coat of arms centered in the white band; the coat of arms features\n    a round emblem encircled by the words REPUBLICA DE EL SALVADOR EN LA AMERICA\n    CENTRAL; similar to the flag of Nicaragua, which has a different coat of\n    arms centered in the white band - it features a triangle encircled by the\n    words REPUBLICA DE NICARAGUA on top and AMERICA CENTRAL on the bottom; also\n    similar to the flag of Honduras, which has five blue stars arranged in an X\n    pattern centered in the white band\n\n:El Salvador Economy\n\nOverview:\n    The agricultural sector accounts for 25% of GDP, employs about 40% of the\n    labor force, and contributes about 66% to total exports. Coffee is the major\n    commercial crop, accounting for 45% of export earnings. The manufacturing\n    sector, based largely on food and beverage processing, accounts for 18% of\n    GDP and 15% of employment. Economic losses because of guerrilla sabotage\n    total more than $2 billion since 1979. The costs of maintaining a large\n    military seriously constrain the government's efforts to provide essential\n    social services. Nevertheless, growth in national output during the period\n    1990-91 exceeded growth in population for the first time since 1987.\nGDP:\n    exchange rate conversion - $5.5 billion, per capita $1,010; real growth rate\n    3% (1991 est.)\nInflation rate (consumer prices):\n    19% (1990)\nUnemployment rate:\n    10% (1989)\nBudget:\n    revenues $751 million; expenditures $790 million, including capital\n    expenditures of $NA (1990 est.)\nExports:\n    $580 million (f.o.b., 1990 est.)\n  commodities:\n    coffee 45%, sugar, cotton, shrimp\n  partners:\n    US 49%, Germany 24%, Guatemala 7%, Costa Rica 4%, Japan 4%\nImports:\n    $1.2 billion (c.i.f., 1990 est.)\n  commodities:\n    petroleum products, consumer goods, foodstuffs, machinery, construction\n    materials, fertilizer\n  partners:\n    US 40%, Guatemala 12%, Venezuela 7%, Mexico 7%, Germany 5%, Japan 4%\nExternal debt:\n    $2.0 billion (December 1990 est.)\nIndustrial production:\n    growth rate 2.4% (1990); accounts for 22% of GDP\nElectricity:\n    682,000 kW capacity; 1,927 million kWh produced, 356 kWh per capita (1991)\nIndustries:\n    food processing, textiles, clothing, beverages, petroleum, tobacco products,\n    chemicals, furniture\nAgriculture:\n    accounts for 25% of GDP and 40% of labor force (including fishing and\n    forestry); coffee most important commercial crop; other products -\n    sugarcane, corn, rice, beans, oilseeds, beef, dairy products, shrimp; not\n    self-sufficient in food\nIllicit drugs:\n    transshipment point for cocaine\nEconomic aid:\n    US commitments, including Ex-Im (FY70-90), $2.95 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $525 million\nCurrency:\n    Salvadoran colon (plural - colones); 1 Salvadoran colon (C) = 100 centavos\nExchange rates:\n    Salvadoran colones (C) per US$1 - 8.1 (January 1992), floating rate since\n    mid-1990); 5.0000 (fixed rate 1986 to mid-1990)\nFiscal year:\n    calendar year\n\n:El Salvador Communications\n\nRailroads:\n    602 km 0.914-meter gauge, single track\nHighways:\n    10,000 km total; 1,500 km paved, 4,100 km gravel, 4,400 km improved and\n    unimproved earth\nInland waterways:\n    Rio Lempa partially navigable\nPorts:\n    Acajutla, Cutuco\nCivil air:\n    7 major transport aircraft\nAirports:\n    107 total, 77 usable; 5 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    nationwide trunk radio relay system; connection into Central American\n    Microwave System; 116,000 telephones; broadcast stations - 77 AM, no FM, 5\n    TV, 2 shortwave; 1 Atlantic Ocean INTELSAT earth station\n\n:El Salvador Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Guard, National Police, Treasury Police\nManpower availability:\n    males 15-49, 1,265,149; 809,419 fit for military service; 68,445 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $220 million, 3.6% of GDP (1991)\n\n:Equatorial Guinea Geography\n\nTotal area:\n    28,050 km2\nLand area:\n    28,050 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    539 km; Cameroon 189 km, Gabon 350 km\nCoastline:\n    296 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary dispute with Gabon because of disputed sovereignty over\n    islands in Corisco Bay\nClimate:\n    tropical; always hot, humid\nTerrain:\n    coastal plains rise to interior hills; islands are volcanic\nNatural resources:\n    timber, crude oil, small unexploited deposits of gold, manganese, uranium\nLand use:\n    arable land 8%; permanent crops 4%; meadows and pastures 4%; forest and\n    woodland 51%; other 33%\nEnvironment:\n    subject to violent windstorms\nNote:\n    insular and continental regions rather widely separated\n\n:Equatorial Guinea People\n\nPopulation:\n    388,799 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    42 births/1,000 population (1992)\nDeath rate:\n    15 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    107 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    49 years male, 53 years female (1992)\nTotal fertility rate:\n    5.4 children born/woman (1992)\nNationality:\n    noun - Equatorial Guinean(s) or Equatoguinean(s); adjective - Equatorial\n    Guinean or Equatoguinean\nEthnic divisions:\n    indigenous population of Bioko, primarily Bubi, some Fernandinos; Rio Muni,\n    primarily Fang; less than 1,000 Europeans, mostly Spanish\nReligions:\n    natives all nominally Christian and predominantly Roman Catholic; some pagan\n    practices retained\nLanguages:\n    Spanish (official), pidgin English, Fang, Bubi, Ibo\nLiteracy:\n    50% (male 64%, female 37%) age 15 and over can read and write (1990 est.)\nLabor force:\n    172,000 (1986 est.); agriculture 66%, services 23%, industry 11% (1980);\n    labor shortages on plantations; 58% of population of working age (1985)\nOrganized labor:\n    no formal trade unions\n\n:Equatorial Guinea Government\n\nLong-form name:\n    Republic of Equatorial Guinea\nType:\n    republic in transition to multiparty democracy\nCapital:\n    Malabo\nAdministrative divisions:\n    7 provinces (provincias, singular - provincia); Annobon, Bioko Norte, Bioko\n    Sur, Centro Sur, Kie-Ntem, Litoral, Wele-Nzas\nIndependence:\n    12 October 1968 (from Spain; formerly Spanish Guinea)\nConstitution:\n    new constitution 17 November 1991\nLegal system:\n    partly based on Spanish civil law and tribal custom\nNational holiday:\n    Independence Day, 12 October (1968)\nExecutive branch:\n    president, prime minister, deputy prime minister, Council of Ministers\n    (cabinet)\nLegislative branch:\n    unicameral House of Representatives of the People (Camara de Representantes\n    del Pueblo)\nJudicial branch:\n    Supreme Tribunal\nLeaders:\n  Chief of State:\n    President Brig. Gen. (Ret.) Teodoro OBIANG NGUEMA MBASOGO (since 3 August\n    1979)\n  Head of Government:\n    Prime Minister Cristino SERICHE BIOKO MALABO (since 15 August 1982); Deputy\n    Prime Minister Isidoro Eyi MONSUY ANDEME (since 15 August 1989)\nPolitical parties and leaders:\n    only party - Democratic Party for Equatorial Guinea (PDGE), Brig. Gen.\n    (Ret.) Teodoro OBIANG NGUEMA MBASOGO, party leader; multipartyism legalized\n    in new constitution of November 1991, promulgated January 1992\nSuffrage:\n    universal adult at age NA\nElections:\n  Chamber of People's Representatives:\n    last held 10 July 1988 (next to be held 10 July 1993); results - PDGE is the\n    only party; seats - (41 total) PDGE 41\n  President:\n    last held 25 June 1989 (next to be held 25 June 1996); results - President\n    Brig. Gen. (Ret.) Teodoro OBIANG NGUEMA MBASOGO was reelected without\n    opposition\nMember of:\n    ACP, AfDB, BDEAC, CEEAC, ECA, FAO, FZ, G-77, IBRD, ICAO, IDA, IFAD, ILO,\n    IMF, IMO, INTERPOL, IOC, ITU, LORCS (associate), NAM, OAS (observer), OAU,\n    UDEAC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO\nDiplomatic representation:\n    Ambassador Damaso OBIANG NDONG; Chancery (temporary) 57 Magnolia Avenue,\n    Mount Vernon, NY 10553; telephone (914) 667-9664\n  US:\n    Ambassador John E. BENNETT; Embassy at Calle de Los Ministros, Malabo\n    (mailing address is P.O. Box 597, Malabo); telephone [240] (9) 2185, 2406,\n    2507; FAX [240] (9) 2164\n\n:Equatorial Guinea Government\n\nFlag:\n    three equal horizontal bands of green (top), white, and red with a blue\n    isosceles triangle based on the hoist side and the coat of arms centered in\n    the white band; the coat of arms has six yellow six-pointed stars\n    (representing the mainland and five offshore islands) above a gray shield\n    bearing a silk-cotton tree and below which is a scroll with the motto\n    UNIDAD, PAZ, JUSTICIA (Unity, Peace, Justice)\n\n:Equatorial Guinea Economy\n\nOverview:\n    The economy, destroyed during the regime of former President Macias NGUEMA,\n    is now based on agriculture, forestry, and fishing, which account for about\n    half of GDP and nearly all exports. Subsistence agriculture predominates,\n    with cocoa, coffee, and wood products providing income, foreign exchange,\n    and government revenues. There is little industry. Commerce accounts for\n    about 8% of GDP and the construction, public works, and service sectors for\n    about 38%. Undeveloped natural resources include titanium, iron ore,\n    manganese, uranium, and alluvial gold. Oil exploration, taking place under\n    concessions offered to US, French, and Spanish firms, has been moderately\n    successful.\nGDP:\n    exchange rate conversion - $156 million, per capita $400; real growth rate\n    1.6% (1988 est.)\nInflation rate (consumer prices):\n    3.6% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $27 million; expenditures $29 million, including capital\n    expenditures of NA (1990 est.)\nExports:\n    $37 million (f.o.b., 1990 est.)\n  commodities:\n    coffee, timber, cocoa beans\n  partners:\n    Spain 38.2%, Italy 12.2%, Netherlands 11.4%, FRG 6.9%, Nigeria 12.4 (1988)\nImports:\n    $68.3 million (c.i.f., 1990)\n  commodities:\n    petroleum, food, beverages, clothing, machinery\n  partners:\n    France 25.9%, Spain 21.0%, Italy 16%, US 12.8%, Netherlands 8%, Germany\n    3.1%, Gabon 2.9%, Nigeria 1.8 (1988)\nExternal debt:\n    $213 million (1990)\nIndustrial production:\n    growth rate - 6.8% (1990 est.)\nElectricity:\n    23,000 kW capacity; 60 million kWh produced, 160 kWh per capita (1991)\nIndustries:\n    fishing, sawmilling\nAgriculture:\n    cash crops - timber and coffee from Rio Muni, cocoa from Bioko; food crops -\n    rice, yams, cassava, bananas, oil palm nuts, manioc, livestock\nIllicit drugs:\n    transshipment point for illicit drugs from Central and Southwest Asia to\n    Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY81-89), $14 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89) $130 million;\n    Communist countries (1970-89), $55 million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\n\n:Equatorial Guinea Economy\n\nFiscal year:\n    1 April - 31 March\n\n:Equatorial Guinea Communications\n\nHighways:\n    Rio Muni - 2,460 km; Bioko - 300 km\nPorts:\n    Malabo, Bata\nMerchant marine:\n    2 ships (1,000 GRT or over) totaling 6,413 GRT/6,699 DWT; includes 1 cargo\n    and 1 passenger-cargo\nCivil air:\n    1 major transport aircraft\nAirports:\n    3 total, 3 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    poor system with adequate government services; international communications\n    from Bata and Malabo to African and European countries; 2,000 telephones;\n    broadcast stations - 2 AM, no FM, 1 TV; 1 Indian Ocean INTELSAT earth\n    station\n\n:Equatorial Guinea Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Guard, National Police\nManpower availability:\n    males 15-49, 81,850; 41,528 fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GNP\n\n:Estonia Geography\n\nTotal area:\n    45,100 km2\nLand area:\n    43,200 km2; (includes 1,520 islands in the Baltic Sea)\nComparative area:\n    slightly larger than New Hampshire and Vermont combined\nLand boundaries:\n    557 km; Latvia 267 km, Russia 290 km\nCoastline:\n    1,393 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    NA meter depth\n  Exclusive economic zone:\n    NA nm\n  Exclusive fishing zone:\n    NA nm\n  Territorial sea:\n    NA nm\nDisputes:\n    international small border strips along the northern (Narva) and southern\n    (Petseri) sections of eastern border with Russia ceded to Russia in 1945 by\n    the Estonian SSR\nClimate:\n    maritime, wet, moderate winters\nTerrain:\n    marshy, lowlands\nNatural resources:\n    shale oil, peat, phosphorite, amber\nLand use:\n    22% arable land; NA% permanent crops; 11% meadows and pastures; 31% forest\n    and woodland; 21% other; includes NA% irrigated; 15% swamps and lakes\nEnvironment:\n    coastal waters largely polluted\n\n:Estonia People\n\nPopulation:\n    1,607,349 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    3 migrants/1,000 population (1992)\nInfant mortality rate:\n    25 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 74 years female (1992)\nTotal fertility rate:\n    2.3 children born/woman (1992)\nNationality:\n    noun - Estonian(s); adjective - Estonian\nEthnic divisions:\n    Estonian 61.5%, Russian 30.3%, Ukrainian 3.17%, Byelorussian 1.8%, Finn\n    1.1%, other 2.13% (1989)\nReligions:\n    Lutheran is primary denomination\nLanguages:\n    Estonian NA% (official), Latvian NA%, Lithuanian NA%, Russian NA%, other NA%\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    796,000; industry and construction 42%, agriculture and forestry 13%, other\n    45% (1990)\nOrganized labor:\n    NA\n\n:Estonia Government\n\nLong-form name:\n    Republic of Estonia\nType:\n    republic\nCapital:\n    Tallinn\nAdministrative divisions:\n    none - all districts are under direct republic jurisdiction\nIndependence:\n    8 November 1917; occupied by Germany in March 1918 and restored to power in\n    November 1918; annexed by USSR 6 August 1940; declared independence 20\n    August 1991 and regained independence from USSR 6 September 1991\nConstitution:\n    currently rewriting constitution, but readopted the constitution of 1938\nLegal system:\n    based on civil law system; no judicial review of legislative acts\nNational holiday:\n    Independence Day, 24 February (1918)\nExecutive branch:\n    prime minister\nLegislative branch:\n    unicameral Supreme Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Chairman, Supreme Council Arnold R'UTEL (since April 1983)\n  Head of Government:\n    Prime Minister Tiit VAHI (since January 1992)\nPolitical parties and leaders:\n    Popular Front of Estonia (Rahvarinne), NA chairman; Estonian Christian\n    Democratic Party, Aivar KALA, chairman; Estonian Christian Democratic Union,\n    Illar HALLASTE, chairman; Estonian Heritage Society (EMS), Trivimi VELLISTE,\n    chairman; Estonian National Independence Party (ERSP), Lagle PAREK,\n    chairman; Estonian Social Democratic Party, Marju LAURISTIN, chairman;\n    Estonian Green Party, Tonu OJA; Independent Estonian Communist Party, Vaino\n    VALJAS; People's Centrist Party, Edgar SAVISAAR, chairman\nSuffrage:\n    universal at age 18\nElections:\n  Congress of Estonia:\n    last held March 1990 (next to be held NA); note - Congress of Estonia is a\n    quasi-governmental structure; results - percent of vote by party NA; seats -\n    (495 total) number of seats by party NA\n  President:\n    last held NA 1990; (next to be held NA); results - NA\n  Supreme Council:\n    last held 18 March 1990; (next to be held NA); results - percent of vote by\n    party NA; seats - (105 total) number of seats by party NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE, IAEA, ICFTU, NACC, UN, UNCTAD\nDiplomatic representation:\n    Ambassador Ernst JAAKSON, Legation of Estonia, Office of Consulate General,\n    9 Rockefeller Plaza, Suite 1421, New York, NY 10020; telephone (212)\n    247-1450\n\n:Estonia Government\n\n  US:\n    Ambassador Robert C. FRASURE; Embassy at Kentmanni 20, Tallin EE 0001;\n    telephone 011-[358] (49) 303-182 (cellular); FAX [358] (49) 306-817\n    (cellular); note - dialing to Baltics still requires use of an international\n    operator unless you use the cellular phone lines\nFlag:\n    pre-1940 flag restored by Supreme Soviet in May 1990; flag is three equal\n    horizontal bands of blue, black, and white\n\n:Estonia Economy\n\nOverview:\n    Starting in July 1991, under a new law on private ownership, small\n    enterprises, such as retail shops and restaurants, were sold to private\n    owners. The auctioning of large-scale enterprises is now in progress with\n    the proceeds being held in escrow until the prior ownership (that is,\n    Estonian or the Commonwealth of Independent States) can be established.\n    Estonia ranks first in per capita consumption among the former Soviet\n    republics. Agriculture is well developed, especially meat production, and\n    provides a surplus for export. Only about one-fifth of the work force is in\n    agriculture. The major share of the work force engages in manufacturing both\n    capital and consumer goods based on raw materials and intermediate products\n    from the other former Soviet republics. These manufactures are of high\n    quality by ex-Soviet standards and are exported to the other republics.\n    Estonia's mineral resources are limited to major deposits of shale oil (60%\n    of old Soviet total) and phosphorites (400 million tons). Estonia has a\n    large, relatively modern port and produces more than half of its own energy\n    needs at highly polluting shale oil power plants. Like the other 14\n    successor republics, Estonia is suffering through a difficult transitional\n    period - between a collapsed command economic structure and a\n    still-to-be-built market structure. It has advantages in the transition, not\n    having suffered so long under the Soviet yoke and having better chances of\n    developing profitable ties to the Nordic and West European countries.\nGDP:\n    $NA billion, per capita $NA; real growth rate -11% (1992)\nInflation rate (consumer prices):\n    approximately 200% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $NA million\nExports:\n    $186 million (f.o.b., 1990)\n  commodities:\n    machinery 30%, food 17%, chemicals 11%, electric power 9%\n  partners:\n    Russia 50%, other former Soviet republics 30%, Ukraine 15%, West 5%\nImports:\n    $1.2 billion (c.i.f., 1990)\n  commodities:\n    machinery 45%, oil 13%, chemicals 12%\n  partners:\n    NA\nExternal debt:\n    $650 million (end of 1991)\nIndustrial production:\n    growth rate -9% (1991)\nElectricity:\n    3,305,000 kW capacity; 17,200 million kWh produced, 10,865 kWh per capita\n    (1990)\nIndustries:\n    accounts for 30% of labor force; oil shale, shipbuilding, phosphates,\n    electric motors, excavators, cement, furniture, clothing, textiles, paper,\n    shoes, apparel\nAgriculture:\n    employs 20% of work force; very efficient; net exports of meat, fish, dairy\n    products, and potatoes; imports feedgrains for livestock; fruits and\n    vegetables\n\n:Estonia Economy\n\nIllicit drugs:\n    transshipment point for illicit drugs from Central and Southwest Asia to\n    Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (1992), $10 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    kroon; to be introduced in 1992\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Estonia Communications\n\nRailroads:\n    1,030 km (includes NA km electrified); does not include industrial lines\n    (1990)\nHighways:\n    30,300 km total (1990); 29,200 km hard surfaced; 1,100 km earth\nInland waterways:\n    500 km perennially navigable\nPipelines:\n    crude oil NA km, refined products NA km, natural gas NA km\nPorts:\n    maritime - Tallinn, Parnu; inland - Narva\nMerchant marine:\n    65 ships (1,000 GRT or over) totaling 386,634 GRT/516,866 DWT; includes 51\n    cargo, 6 roll-on/roll-off, 2 short-sea passenger, 6 bulk\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    telephone diversity - NA; broadcast stations - 3 TV (provide Estonian\n    programs as well as Moscow Ostenkino's first and second programs);\n    international traffic is carried to the other former USSR republics by\n    landline or microwave and to other countries by leased connection to the\n    Moscow international gateway switch, by the Finnish cellular net, and by an\n    old copper submarine cable to Finland\n\n:Estonia Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard;\n    Russian Forces (Ground, Navy, Air, Air Defense, and Border Guard)\nManpower availability:\n    males 15-49, total mobilized force projected 120,000-130,000; NA fit for\n    military service; between 10,000-12,000 reach military age (18) annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Ethiopia Geography\n\nTotal area:\n    1,221,900 km2\nLand area:\n    1,101,000 km2\nComparative area:\n    slightly less than twice the size of Texas\nLand boundaries:\n    5,141 km; Djibouti 459 km, Kenya 861 km, Somalia 1,600 km, Sudan 2,221 km\nCoastline:\n    1,094 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    southern half of the boundary with Somalia is a Provisional Administrative\n    Line; possible claim by Somalia based on unification of ethnic Somalis;\n    territorial dispute with Somalia over the Ogaden; independence referendum in\n    Eritrea scheduled for April 1992\nClimate:\n    tropical monsoon with wide topographic-induced variation; some areas prone\n    to extended droughts\nTerrain:\n    high plateau with central mountain range divided by Great Rift Valley\nNatural resources:\n    small reserves of gold, platinum, copper, potash\nLand use:\n    arable land 12%; permanent crops 1%; meadows and pastures 41%; forest and\n    woodland 24%; other 22%; includes irrigated NEGL%\nEnvironment:\n    geologically active Great Rift Valley susceptible to earthquakes, volcanic\n    eruptions; deforestation; overgrazing; soil erosion; desertification;\n    frequent droughts; famine\nNote:\n    strategic geopolitical position along world's busiest shipping lanes and\n    close to Arabian oilfields\n\n:Ethiopia People\n\nPopulation:\n    54,270,464 (July 1992), growth rate 3.2% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    112 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    50 years male, 53 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Ethiopian(s); adjective - Ethiopian\nEthnic divisions:\n    Oromo 40%, Amhara and Tigrean 32%, Sidamo 9%, Shankella 6%, Somali 6%, Afar\n    4%, Gurage 2%, other 1%\nReligions:\n    Muslim 40-45%, Ethiopian Orthodox 35-40%, animist 15-20%, other 5%\nLanguages:\n    Amharic (official), Tigrinya, Orominga, Guaraginga, Somali, Arabic, English\n    (major foreign language taught in schools)\nLiteracy:\n    62% (male NA%, female NA%) age 10 and over can read and write (1983 est.)\nLabor force:\n    18,000,000; agriculture and animal husbandry 80%, government and services\n    12%, industry and construction 8% (1985)\nOrganized labor:\n    All Ethiopian Trade Union formed by the government in January 1977 to\n    represent 273,000 registered trade union members; was dissolved when the TGE\n    came to power; labor code of 1975 is being redrafted\n\n:Ethiopia Government\n\nLong-form name:\n    none\nType:\n    on 28 May 1991 the Ethiopian People's Revolutionary Democratic Front (EPRDF)\n    toppled the authoritarian government of MENGISTU Haile-Mariam and took\n    control in Addis Ababa; the Transitional Government of Ethiopia (TGE),\n    announced as a two-year transitional period; on 29 May 1991, Issayas\n    AFEWORKE, secretary general of the Eritrean People's Liberation Front\n    (EPLF), announced the formation of the Provisional Government in Eritrea\n    (PGE), in preparation for an eventual referendum on independence for the\n    province\nCapital:\n    Addis Ababa\nAdministrative divisions:\n    14 administrative regions (astedader akababiwach, singular - astedader\n    akababi) and 1 autonomous region* (rasgez akababi); Addis Ababa (Addis\n    Ababa), Afar, Agew, Amhara, Benishangul, Ertra (Eritrea)*, Gambela,\n    Gurage-Hadiya-Wolayta, Harer, Kefa, Omo, Oromo, Sidamo, Somali, Tigray\nIndependence:\n    oldest independent country in Africa and one of the oldest in the world - at\n    least 2,000 years\nConstitution:\n    to be redrafted by 1993\nLegal system:\n    NA\nNational holiday:\n    National Revolution Day 12 September (1974)\nExecutive branch:\n    president, prime minister, Council of Ministers\nLegislative branch:\n    Council of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Interim President Meles ZENAWI (since 1 June 1991); transitional government\n  Head of Government:\n    Acting Prime Minister Tamirat LAYNE (since 6 June 1991)\nPolitical parties and leaders:\n    NA\nSuffrage:\n    universal at age 18\nElections:\n  Council of Representatives:\n    last held 14 June 1987 (next to be held after new constitution drafted)\n  President:\n    last held 10 September 1987; next election planned after new constitution\n    drafted; results - MENGISTU Haile-Mariam elected by the now defunct National\n    Assembly, but resigned and left Ethiopia on 21 May 1991\nOther political or pressure groups:\n    Oromo Liberation Front (OLF); Ethiopian People's Revolutionary Party (EPRP);\n    numerous small, ethnic-based groups have formed since Mengistu's resignation\nMember of:\n    ACP, AfDB, CCC, ECA, FAO, G-24, G-77, IAEA, IBRD, ICAO, IDA, IFAD, IFC,\n    IGADD, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, NAM, OAU,\n    UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Counselor, Charge d'Affaires ad interim Girma AMARE; Chancery at 2134\n    Kalorama Road NW, Washington, DC 20008; telephone (202) 234-2281 or 2282\n\n:Ethiopia Government\n\n  US:\n    Charge d'Affaires Marc A. BAAS; Embassy at Entoto Street, Addis Ababa\n    (mailing address is P. O. Box 1014, Addis Ababa); telephone [251] (01)\n    550666; FAX [251] (1) 551-166\nFlag:\n    three equal horizontal bands of green (top), yellow, and red; Ethiopia is\n    the oldest independent country in Africa, and the colors of her flag were so\n    often adopted by other African countries upon independence that they became\n    known as the pan-African colors\n\n:Ethiopia Economy\n\nOverview:\n    Ethiopia is one of the poorest and least developed countries in Africa. Its\n    economy is based on subsistence agriculture, which accounts for about 45% of\n    GDP, 90% of exports, and 80% of total employment; coffee generates 60% of\n    export earnings. The manufacturing sector is heavily dependent on inputs\n    from the agricultural sector. Over 90% of large-scale industry, but less\n    than 10% of agriculture, is state run; the government is considering selling\n    off a portion of state-owned plants. Favorable agricultural weather largely\n    explains the 4.5% growth in output in FY89, whereas drought and\n    deteriorating internal security conditions prevented growth in FY90. In 1991\n    the lack of law and order, particularly in the south, interfered with\n    economic development and growth.\nGDP:\n    exchange rate conversion - $6.6 billion, per capita $130, real growth rate-\n    0.4% (FY90 est.)\nInflation rate (consumer prices):\n    5.2% (1989)\nUnemployment rate:\n    NA\nBudget:\n    revenues $1.8 billion; expenditures $1.7 billion, including capital\n    expenditures of $842 million (FY88)\nExports:\n    $429 million (f.o.b., FY88)\n  commodities:\n    coffee 60%, hides\n  partners:\n    US, FRG, Djibouti, Japan, PDRY, France, Italy, Saudi Arabia\nImports:\n    $1.1 billion (c.i.f., FY88)\n  commodities:\n    food, fuels, capital goods\n  partners:\n    USSR, Italy, FRG, Japan, UK, US, France\nExternal debt:\n    $2.6 billion (1988)\nIndustrial production:\n    growth rate 2.3% (FY89 est.); accounts for 13% of GDP\nElectricity:\n    330,000 kW capacity; 650 million kWh produced, 10 kWh per capita (1991)\nIndustries:\n    food processing, beverages, textiles, chemicals, metals processing, cement\nAgriculture:\n    accounts for 45% of GDP and is the most important sector of the economy even\n    though frequent droughts and poor cultivation practices keep farm output\n    low; famines not uncommon; export crops of coffee and oilseeds grown partly\n    on state farms; estimated 50% of agricultural production at subsistence\n    level; principal crops and livestock - cereals, pulses, coffee, oilseeds,\n    sugarcane, potatoes and other vegetables, hides and skins, cattle, sheep,\n    goats\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $504 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3.4 billion; OPEC\n    bilateral aid (1979-89), $8 million; Communist countries (1970-89), $2.0\n    billion\nCurrency:\n    birr (plural - birr); 1 birr (Br) = 100 cents\nExchange rates:\n    birr (Br) per US$1 - 2.0700 (fixed rate)\n\n:Ethiopia Economy\n\nFiscal year:\n    8 July - 7 July\n\n:Ethiopia Communications\n\nRailroads:\n    988 km total; 681 km 1.000-meter gauge; 307 km 0.950-meter gauge\n    (nonoperational)\nHighways:\n    44,300 km total; 3,650 km paved, 9,650 km gravel, 3,000 km improved earth,\n    28,000 km unimproved earth\nPorts:\n    Aseb, Mitsiwa\nMerchant marine:\n    12 ships (1,000 GRT or over) totaling 62,627 GRT/88,909 DWT; includes 8\n    cargo, 1 roll-on/roll off, 1 livestock carrier, 2 petroleum tanker\nCivil air:\n    25 major transport aircraft\nAirports:\n    123 total, 86 usable; 9 with permanent-surface runways; 1 with runways over\n    3,659 m; 13 with runways 2,440-3,659 m; 38 with runways 1,220-2,439 m\nTelecommunications:\n    open-wire and radio relay system adequate for government use; open-wire to\n    Sudan and Djibouti; radio relay to Kenya and Djibouti; broadcast stations -\n    4 AM, no FM, 1 TV; 100,000 TV sets; 9,000,000 radios; 1 Atlantic Ocean\n    INTELSAT earth station\n\n:Ethiopia Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Police Force\nManpower availability:\n    males 15-49, 12,015,589; 6,230,680 fit for military service; 572,982 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $760 million, 12.8% of GDP (1989)\n\n:Europa Island Geography\n\nTotal area:\n    28 km2\nLand area:\n    28 km2\nComparative area:\n    about 0.2 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    22.2 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Madagascar\nClimate:\n    tropical\nTerrain:\n    NA\nNatural resources:\n    negligible\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; heavily wooded\nEnvironment:\n    wildlife sanctuary\nNote:\n    located in the Mozambique Channel 340 km west of Madagascar\n\n:Europa Island People\n\nPopulation:\n    uninhabited\n\n:Europa Island Government\n\nLong-form name:\n    none\nType:\n    French possession administered by Commissioner of the Republic Jacques\n    DEWATRE (as of July 1991); resident in Reunion\nCapital:\n    none; administered by France from Reunion\n\n:Europa Island Economy\n\nOverview:\n    no economic activity\n\n:Europa Island Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with runways 1,220 to 2,439 m\nTelecommunications:\n    1 meteorological station\n\n:Europa Island Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Falkland Islands (Islas Malvinas) Geography\n\nTotal area:\n    12,170 km2\nLand area:\n    12,170 km2; includes the two main islands of East and West Falkland and\n    about 200 small islands\nComparative area:\n    slightly smaller than Connecticut\nLand boundaries:\n    none\nCoastline:\n    1,288 km\nMaritime claims:\n  Continental shelf:\n    100 meter depth\n  Exclusive fishing zone:\n    150 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    administered by the UK, claimed by Argentina\nClimate:\n    cold marine; strong westerly winds, cloudy, humid; rain occurs on more than\n    half of days in year; occasional snow all year, except in January and\n    February, but does not accumulate\nTerrain:\n    rocky, hilly, mountainous with some boggy, undulating plains\nNatural resources:\n    fish and wildlife\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 99%; forest and\n    woodland 0%; other 1%\nEnvironment:\n    poor soil fertility and a short growing season\nNote:\n    deeply indented coast provides good natural harbors\n\n:Falkland Islands (Islas Malvinas) People\n\nPopulation:\n    1,900 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Falkland Islander(s); adjective - Falkland Island\nEthnic divisions:\n    almost totally British\nReligions:\n    primarily Anglican, Roman Catholic, and United Free Church; Evangelist\n    Church, Jehovah's Witnesses, Lutheran, Seventh-Day Adventist\nLanguages:\n    English\nLiteracy:\n    NA% (male NA%, female NA%) but compulsory education age 5 to 15 (1988)\nLabor force:\n    1,100 (est.); agriculture, mostly sheepherding about 95%\nOrganized labor:\n    Falkland Islands General Employees Union, 400 members\n\n:Falkland Islands (Islas Malvinas) Government\n\nLong-form name:\n    Colony of the Falkland Islands\nType:\n    dependent territory of the UK\nCapital:\n    Stanley\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    3 October 1985\nLegal system:\n    English common law\nNational holiday:\n    Liberation Day, 14 June (1982)\nExecutive branch:\n    British monarch, governor, Executive Council\nLegislative branch:\n    unicameral Legislative Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Governor William Hugh FULLERTON (since NA 1988)\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Council:\n    last held 11 October 1989 (next to be held October 1994); results - percent\n    of vote by party NA; seats - (10 total, 8 elected) number of seats by party\n    NA\nMember of:\n    ICFTU\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the\n    Falkland Island coat of arms in a white disk centered on the outer half of\n    the flag; the coat of arms contains a white ram (sheep raising is the major\n    economic activity) above the sailing ship Desire (whose crew discovered the\n    islands) with a scroll at the bottom bearing the motto DESIRE THE RIGHT\n\n:Falkland Islands (Islas Malvinas) Economy\n\nOverview:\n    The economy is based on sheep farming, which directly or indirectly employs\n    most of the work force. A few dairy herds are kept to meet domestic\n    consumption of milk and milk products, and crops grown are primarily those\n    for providing winter fodder. Exports feature shipments of high-grade wool to\n    the UK and the sale of postage stamps and coins. Rich stocks of fish in the\n    surrounding waters are not presently exploited by the islanders. So far,\n    efforts to establish a domestic fishing industry have been unsuccessful. In\n    1987 the government began selling fishing licenses to foreign trawlers\n    operating within the Falklands exclusive fishing zone. These license fees\n    amount to more than $40 million per year and are a primary source of income\n    for the government. To encourage tourism, the Falkland Islands Development\n    Corporation has built three lodges for visitors attracted by the abundant\n    wildlife and trout fishing.\nGDP:\n    $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    7.4% (1980-87 average)\nUnemployment rate:\n    NA%; labor shortage\nBudget:\n    revenues $62.7 million; expenditures $41.8 million, excluding capital\n    expenditures of $NA (FY90)\nExports:\n    at least $14.7 million\n  commodities:\n    wool, hides and skins, and other\n  partners:\n    UK, Netherlands, Japan (1987 est.)\nImports:\n    at least $13.9 million\n  commodities:\n    food, clothing, fuels, and machinery\n  partners:\n    UK, Netherlands Antilles (Curacao), Japan (1987 est.)\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    9,200 kW capacity; 17 million kWh produced, 8,638 kWh per capita (1991)\nIndustries:\n    wool and fish processing\nAgriculture:\n    predominantly sheep farming; small dairy herds; some fodder and vegetable\n    crops\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $277 million\nCurrency:\n    Falkland pound (plural - pounds); 1 Falkland pound (#F) = 100 pence\nExchange rates:\n    Falkland pound (#F) per US$1 - 0.5519 (January 1992), 0.5652 (1991), 0.5604\n    (1990), 0.6099 (1989), 0.5614 (1988), 0.6102 (1987); note - the Falkland\n    pound is at par with the British pound\nFiscal year:\n    1 April - 31 March\n\n:Falkland Islands (Islas Malvinas) Communications\n\nHighways:\n    510 km total; 30 km paved, 80 km gravel, and 400 km unimproved earth\nPorts:\n    Port Stanley\nCivil air:\n    no major transport aircraft\nAirports:\n    5 total, 5 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220 to 2,439 m\nTelecommunications:\n    government-operated radiotelephone and private VHF/CB radio networks provide\n    effective service to almost all points on both islands; 590 telephones;\n    broadcast stations - 2 AM, 3 FM, no TV; 1 Atlantic Ocean INTELSAT earth\n    station with links through London to other countries\n\n:Falkland Islands (Islas Malvinas) Defense Forces\n\nBranches:\n    British Forces Falkland Islands (including Army, Royal Air Force, Royal\n    Navy, and Royal Marines); Police Force\nNote:\n    defense is the responsibility of the UK\n\n:Faroe Islands Geography\n\nTotal area:\n    1,400 km2\nLand area:\n    1,400 km2\nComparative area:\n    slightly less than eight times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    764 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    mild winters, cool summers; usually overcast; foggy, windy\nTerrain:\n    rugged, rocky, some low peaks; cliffs along most of coast\nNatural resources:\n    fish\nLand use:\n    arable land 2%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 98%\nEnvironment:\n    precipitous terrain limits habitation to small coastal lowlands; archipelago\n    of 18 inhabited islands and a few uninhabited islets\nNote:\n    strategically located along important sea lanes in northeastern Atlantic\n    about midway between Iceland and Shetland Islands\n\n:Faroe Islands People\n\nPopulation:\n    48,588 (July 1992), growth rate 0.9% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 81 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Faroese (singular and plural); adjective - Faroese\nEthnic divisions:\n    homogeneous Scandinavian population\nReligions:\n    Evangelical Lutheran\nLanguages:\n    Faroese (derived from Old Norse), Danish\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    17,585; largely engaged in fishing, manufacturing, transportation, and\n    commerce\nOrganized labor:\n    NA\n\n:Faroe Islands Government\n\nLong-form name:\n    none\nType:\n    part of the Danish realm; self-governing overseas administrative division of\n    Denmark\nCapital:\n    Torshavn\nAdministrative divisions:\n    none (self-governing overseas administrative division of Denmark)\nIndependence:\n    part of the Danish realm; self-governing overseas administrative division of\n    Denmark\nConstitution:\n    Danish\nLegal system:\n    Danish\nNational holiday:\n    Birthday of the Queen, 16 April (1940)\nExecutive branch:\n    Danish monarch, high commissioner, prime minister, deputy prime minister,\n    Cabinet (Landsstyri)\nLegislative branch:\n    unicameral Parliament (Lgting)\nJudicial branch:\n    none\nLeaders:\n  Chief of State:\n    Queen MARGRETHE II (since 14 January 1972), represented by High Commissioner\n    Bent KLINTE (since NA)\n  Head of Government:\n    Prime Minister Atli P. DAM (since 15 January 1991)\nPolitical parties and leaders:\n  opposition:\n    Cooperation Coalition Party, Pauli ELLEFSEN; Republican Party, Signer\n    HANSEN; Progressive and Fishing Industry Party-Christian People's Party\n    (PFIP-CPP), leader NA; Progress Party, leader NA; Home Rule Party, Hilmar\n    KASS\n  two-party ruling coalition:\n    Social Democratic Party, Atli P. DAM; People's Party, Jogvan SUND- STEIN\nSuffrage:\n    universal at age 20\nElections:\n  Danish Parliament:\n    last held on 12 December 1990 (next to be held by December 1994); results -\n    percent of vote by party NA; seats - (2 total) Social Democratic 1, People's\n    Party 1; note - the Faroe Islands elects two representatives to the Danish\n    Parliament\n  Faroese Parliament:\n    last held 17 November 1990 (next to be held November 1994); results - Social\n    Democratic 27.4%, People's Party 21.9%, Cooperation Coalition Party 18.9%,\n    Republican Party 14.7%, Home Rule 8.8%, PFIP-CPP 5.9%, other 2.4%; seats -\n    (32 total) two-party coalition 17 (Social Democratic 10, People's Party 7),\n    Cooperation Coalition Party 6, Republican Party 4, Home Rule 3, PFIP-CPP 2\nDiplomatic representation:\n    none (self-governing overseas administrative division of Denmark)\nFlag:\n    white with a red cross outlined in blue that extends to the edges of the\n    flag; the vertical part of the cross is shifted to the hoist side in the\n    style of the DANNEBROG (Danish flag)\n\n:Faroe Islands Economy\n\nOverview:\n    The Faroese, who have long been enjoying the affluent living standards of\n    the Danes and other Scandinavians, now must cope with the decline of the\n    all-important fishing industry and with an external debt twice the size of\n    annual income. When the nations of the world extended their fishing zones to\n    200 nautical miles in the early 1970s, the Faroese no longer could continue\n    their traditional long-distance fishing and subsequently depleted their own\n    nearby fishing areas. The government's tight controls on fish stocks and its\n    austerity measures have caused a recession, and subsidy cuts will force\n    further reductions in the fishing industry, which has already been plagued\n    with bankrupcies. An annual Danish subsidy of $140 million continues to\n    provide roughly one-third of the islands' budget revenues.\nGDP:\n    purchasing power equivalent - $662 million, per capita $14,000; real growth\n    rate 3% (1989 est.)\nInflation rate (consumer prices):\n    2.0% (1988)\nUnemployment rate:\n    5-6% (1991 est.)\nBudget:\n    revenues $425 million; expenditures $480 million, including capital\n    expenditures of NA (1991 est.)\nExports:\n    $386 million (f.o.b., 1990 est.)\n  commodities:\n    fish and fish products 88%, animal feedstuffs, transport equipment (1989)\n  partners:\n    Denmark 20%, Germany 18.3%, UK 14.2%, France 11.2%, Spain 7.9%, US 4.5%\nImports:\n    $322 million (c.i.f., 1990 est.)\n  commodities:\n    machinery and transport equipment 24.4%, manufactures 24%, food and\n    livestock 19%, fuels 12%, chemicals 6.5%\n  partners:\n    Denmark 43.8%, Norway 19.8%, Sweden 4.9%, Germany 4.2%, US 1.3%\nExternal debt:\n    $1.3 billion (1989)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    80,000 kW capacity; 280 million kWh produced, 5,910 kWh per capita (1991)\nIndustries:\n    fishing, shipbuilding, handicrafts\nAgriculture:\n    accounts for 27% of GDP and employs 27% of labor force; principal crops -\n    potatoes and vegetables; livestock - sheep; annual fish catch about 360,000\n    metric tons\nEconomic aid:\n    none\nCurrency:\n    Danish krone (plural - kroner); 1 Danish krone (DKr) = 100 ore\nExchange rates:\n    Danish kroner (DKr) per US$1 - 6.116 (January 1992), 6.396 (1991), 6.189\n    (1990), 7.310 (1989), 6.732 (1988), 6.840 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Faroe Islands Communications\n\nHighways:\n    200 km\nPorts:\n    Torshavn, Tvoroyri\nMerchant marine:\n    10 ships (1,000 GRT or over) totaling 22,015 GRT/24,007 DWT; includes 1\n    short-sea passenger, 5 cargo, 2 roll-on/roll-off, 2 refrigerated cargo; note\n    - a subset of the Danish register\nAirports:\n    1 with permanent surface runways 1,220-2,439 m\nTelecommunications:\n    good international communications; fair domestic facilities; 27,900\n    telephones; broadcast stations - 1 AM, 3 (10 repeaters) FM, 3 (29 repeaters)\n    TV; 3 coaxial submarine cables\n\n:Faroe Islands Defense Forces\n\nBranches:\n    no organized native military forces; only a small Police Force is maintained\nNote:\n    defense is the responsibility of Denmark\n\n:Fiji Geography\n\nTotal area:\n    18,270 km2\nLand area:\n    18,270 km2\nComparative area:\n    slightly smaller than New Jersey\nLand boundaries:\n    none\nCoastline:\n    1,129 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Continental shelf:\n    200 m (depth) or to depth of exploitation; rectilinear shelf claim added\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine; only slight seasonal temperature variation\nTerrain:\n    mostly mountains of volcanic origin\nNatural resources:\n    timber, fish, gold, copper; offshore oil potential\nLand use:\n    arable land 8%; permanent crops 5%; meadows and pastures 3%; forest and\n    woodland 65%; other 19%; includes irrigated NEGL%\nEnvironment:\n    subject to hurricanes from November to January; includes 332 islands of\n    which approximately 110 are inhabited\nNote:\n    located 2,500 km north of New Zealand in the South Pacific Ocean\n\n:Fiji People\n\nPopulation:\n    749,946 (July 1992), growth rate 0.9% (1992)\nBirth rate:\n    25 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -10 migrants/1,000 population (1992)\nInfant mortality rate:\n    19 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 67 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Fijian(s); adjective - Fijian\nEthnic divisions:\n    Indian 49%, Fijian 46%, European, other Pacific Islanders, overseas Chinese,\n    and other 5%\nReligions:\n    Christian 52% (Methodist 37%, Roman Catholic 9%), Hindu 38%, Muslim 8%,\n    other 2%; note - Fijians are mainly Christian, Indians are Hindu, and there\n    is a Muslim minority (1986)\nLanguages:\n    English (official); Fijian; Hindustani\nLiteracy:\n    86% (male 90%, female 81%) age 15 and over can read and write (1985 est.)\nLabor force:\n    235,000; subsistence agriculture 67%, wage earners 18%, salary earners 15%\n    (1987)\nOrganized labor:\n    about 45,000 employees belong to some 46 trade unions, which are organized\n    along lines of work and ethnic origin (1983)\n\n:Fiji Government\n\nLong-form name:\n    Republic of Fiji\nType:\n    military coup leader Maj. Gen. Sitiveni RABUKA formally declared Fiji a\n    republic on 6 October 1987\nCapital:\n    Suva\nAdministrative divisions:\n    4 divisions and 1 dependency*; Central, Eastern, Northern, Rotuma*, Western\nIndependence:\n    10 October 1970 (from UK)\nConstitution:\n    10 October 1970 (suspended 1 October 1987); a new Constitution was proposed\n    on 23 September 1988 and promulgated on 25 July 1990\nLegal system:\n    based on British system\nNational holiday:\n    Independence Day, 10 October (1970)\nExecutive branch:\n    president, prime minister, Cabinet Great Councils of Chiefs (highest ranking\n    members of the traditional chiefly system)\nLegislative branch:\n    the bicameral Parliament, consisting of an upper house or Senate and a lower\n    house or House of Representatives, was dissolved following the coup of 14\n    May 1987; the Constitution of 23 September 1988 provides for a bicameral\n    Parliament\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Ratu Sir Penaia Kanatabatu GANILAU (since 5 December 1987)\n  Head of Government:\n    Prime Minister Ratu Sir Kamisese MARA (since 5 December 1987); Deputy Prime\n    Minister Josefata KAMIKAMICA (since October 1991); note - Ratu Sir Kamisese\n    MARA served as prime minister from 10 October 1970 until the 5-11 April 1987\n    election; after a second coup led by Maj. Gen. Sitiveni RABUKA on 25\n    September 1987, Ratu Sir Kamisese MARA was reappointed as prime minister\nPolitical parties and leaders:\n    Fijian Political Party (primarily Fijian), leader Maj. Gen. Sitivini RABUKA;\n    National Federation Party (NFP; primarily Indian), Siddiq KOYA; Christian\n    Fijian Nationalist Party (CFNP), Sakeasi BUTADROKA; Fiji Labor Party (FLP),\n    Jokapeci KOROI; All National Congress (ANC), Apisai TORA; General Voters\n    Party (GVP), Max OLSSON; Fiji Conservative Party (FCP), Isireli VUIBAU;\n    Conservative Party of Fiji (CPF), Jolale ULUDOLE and Viliame SAVU; Fiji\n    Indian Liberal Party, Swami MAHARAJ; Fiji Indian Congress Party, Ishwari\n    BAJPAI; Fiji Independent Labor (Muslim), leader NA; Four Corners Party,\n    David TULVANUAVOU\nSuffrage:\n    none\nElections:\n  House of Representatives:\n    last held 14 May 1987 (next to be held 23-29 May 1992); results - percent of\n    vote by party NA; seats - (70 total, with ethnic Fijians allocated 37 seats,\n    ethnic Indians 27 seats, and independents and other 6 seats) number of seats\n    by party NA\nMember of:\n    ACP, AsDB, CP, ESCAP, FAO, G-77, IBRD, ICAO, ICFTU, IDA, IFAD, IFC, ILO,\n    IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, PCA, SPC, SPF, UN, UNCTAD,\n    UNESCO, UNIDO, UNIFIL, UPU, WHO, WIPO, WMO\n\n:Fiji Government\n\nDiplomatic representation:\n    Ambassador Pita Kewa NACUVA; Chancery at Suite 240, 2233 Wisconsin Avenue\n    NW, Washington, DC 20007; telephone (202) 337-8320; there is a Fijian\n    Consulate in New York\n  US:\n    Ambassador Evelyn I. H. TEEGEN; Embassy at 31 Loftus Street, Suva (mailing\n    address is P. O. Box 218, Suva); telephone [679] 314-466; FAX [679] 300-081\nFlag:\n    light blue with the flag of the UK in the upper hoist-side quadrant and the\n    Fijian shield centered on the outer half of the flag; the shield depicts a\n    yellow lion above a white field quartered by the cross of Saint George\n    featuring stalks of sugarcane, a palm tree, bananas, and a white dove\n\n:Fiji Economy\n\nOverview:\n    Fiji's economy is primarily agricultural, with a large subsistence sector.\n    Sugar exports are a major source of foreign exchange, and sugar processing\n    accounts for one-third of industrial output. Industry, including sugar\n    milling, contributes 13% to GDP. Fiji traditionally had earned considerable\n    sums of hard currency from the 250,000 tourists who visited each year. In\n    1987, however, after two military coups, the economy went into decline. GDP\n    dropped by 7.8% in 1987 and by another 2.5% in 1988; political uncertainty\n    created a drop in tourism, and the worst drought of the century caused sugar\n    production to fall sharply. In contrast, sugar and tourism turned in strong\n    performances in 1989, and the economy rebounded vigorously. In 1990 the\n    economy received a setback from cyclone Sina, which cut sugar output by an\n    estimated 21%.\nGDP:\n    exchange rate conversion - $1.3 billion, per capita $1,700; real growth rate\n    3.5% (1991 est.)\nInflation rate (consumer prices):\n    7.0% (1991)\nUnemployment rate:\n    5.9% (1991 est.)\nBudget:\n    revenues $413 million; expenditures $464 million, including capital\n    expenditures of NA (1992 est.)\nExports:\n    $646 million (f.o.b., 1991 est.)\n  commodities:\n    sugar 40%, gold, clothing, copra, processed fish, lumber\n  partners:\n    EC 31%, Australia 21%, Japan 8%, US 6%\nImports:\n    $840 million (c.i.f., 1991 est.)\n  commodities:\n    machinery and transport equipment 32%, food 15%, petroleum products,\n    consumer goods, chemicals\n  partners:\n    Australia 30%, NZ 17%, Japan 13%, EC 6%, US 6%\nExternal debt:\n    $428 million (December 1990 est.)\nIndustrial production:\n    growth rate 8.4% (1991 est.); accounts for 13% of GDP\nElectricity:\n    215,000 kW capacity; 330 million kWh produced, 430 kWh per capita (1990)\nIndustries:\n    sugar, tourism, copra, gold, silver, fishing, clothing, lumber, small\n    cottage industries\nAgriculture:\n    accounts for 23% of GDP; principal cash crop is sugarcane; coconuts,\n    cassava, rice, sweet potatoes, and bananas; small livestock sector includes\n    cattle, pigs, horses, and goats\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1980-89),\n    $815 million\nCurrency:\n    Fijian dollar (plural - dollars); 1 Fijian dollar (F$) = 100 cents\nExchange rates:\n    Fijian dollars (F$) per US$1 - 1.4855 (January 1992), 1.4756 (1991), 1.4809\n    (1990), 1.4833 (1989), 1.4303 (1988), 1.2439 (1987)\nFiscal year:\n    calendar year\n\n:Fiji Communications\n\nRailroads:\n    644 km 0.610-meter narrow gauge, belonging to the government-owned Fiji\n    Sugar Corporation\nHighways:\n    3,300 km total (1984) - 1,590 km paved; 1,290 km gravel, crushed stone, or\n    stabilized soil surface; 420 unimproved earth\nInland waterways:\n    203 km; 122 km navigable by motorized craft and 200-metric-ton barges\nPorts:\n    Lambasa, Lautoka, Savusavu, Suva\nMerchant marine:\n    7 ships (1,000 GRT or over) totaling 40,072 GRT/47,187 DWT; includes 2\n    roll-on/roll-off, 2 container, 1 petroleum tanker, 1 chemical tanker, 1\n    cargo\nCivil air:\n    1 DC-3 and 1 light aircraft\nAirports:\n    25 total, 22 usable; 2 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    modern local, interisland, and international (wire/radio integrated) public\n    and special-purpose telephone, telegraph, and teleprinter facilities;\n    regional radio center; important COMPAC cable link between US-Canada and New\n    Zealand-Australia; 53,228 telephones; broadcast stations - 7 AM, 1 FM, no\n    TV; 1 Pacific Ocean INTELSAT earth station\n\n:Fiji Defense Forces\n\nBranches:\n    Fiji Military Force (FMF; including a naval division, Police)\nManpower availability:\n    males 15-49, 192,056; 105,898 fit for military service; 7,564 reach military\n    age (18) annually\nDefense expenditures:\n    exchange rate conversion - $22.4 million, 1.7% of GDP (FY 91)\n\n:Finland Geography\n\nTotal area:\n    337,030 km2\nLand area:\n    305,470 km2\nComparative area:\n    slightly smaller than Montana\nLand boundaries:\n    2,628 km; Norway 729 km, Sweden 586 km, Russia 1,313 km\nCoastline:\n    1,126 km; excludes islands and coastal indentations\nMaritime claims:\n  Contiguous zone:\n    6 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    4 nm\nDisputes:\n    none\nClimate:\n    cold temperate; potentially subarctic, but comparatively mild because of\n    moderating influence of the North Atlantic Current, Baltic Sea, and more\n    than 60,000 lakes\nTerrain:\n    mostly low, flat to rolling plains interspersed with lakes and low hills\nNatural resources:\n    timber, copper, zinc, iron ore, silver\nLand use:\n    arable land 8%; permanent crops 0%; meadows and pastures NEGL%; forest and\n    woodland 76%; other 16%; includes irrigated NEGL%\nEnvironment:\n    permanently wet ground covers about 30% of land; population concentrated on\n    small southwestern coastal plain\nNote:\n    long boundary with Russia; Helsinki is northernmost national capital on\n    European continent\n\n:Finland People\n\nPopulation:\n    5,004,273 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 80 years female (1992)\nTotal fertility rate:\n    1.7 children born/woman (1992)\nNationality:\n    noun - Finn(s); adjective - Finnish\nEthnic divisions:\n    Finn, Swede, Lapp, Gypsy, Tatar\nReligions:\n    Evangelical Lutheran 89%, Greek Orthodox 1%, none 9%, other 1%\nLanguages:\n    Finnish 93.5%, Swedish (both official) 6.3%; small Lapp- and\n    Russian-speaking minorities\nLiteracy:\n    100% (male NA%, female NA%) age 15 and over can read and write (1980 est.)\nLabor force:\n    2,533,000; public services 30.4%; industry 20.9%; commerce 15.0%; finance,\n    insurance, and business services 10.2%; agriculture and forestry 8.6%;\n    transport and communications 7.7%; construction 7.2%\nOrganized labor:\n    80% of labor force\n\n:Finland Government\n\nLong-form name:\n    Republic of Finland\nType:\n    republic\nCapital:\n    Helsinki\nAdministrative divisions:\n    12 provinces (laanit, singular - laani); Ahvenanmaa, Hame, Keski-Suomi,\n    Kuopio, Kymi, Lappi, Mikkeli, Oulu, Pohjois-Karjala, Turku ja Pori, Uusimaa,\n    Vaasa\nIndependence:\n    6 December 1917 (from Soviet Union)\nConstitution:\n    17 July 1919\nLegal system:\n    civil law system based on Swedish law; Supreme Court may request legislation\n    interpreting or modifying laws; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Independence Day, 6 December (1917)\nExecutive branch:\n    president, prime minister, deputy prime minister, Council of State\n    (Valtioneuvosto)\nLegislative branch:\n    unicameral Parliament (Eduskunta)\nJudicial branch:\n    Supreme Court (Korkein Oikeus)\nLeaders:\n  Chief of State:\n    President Mauno KOIVISTO (since 27 January 1982)\n  Head of Government:\n    Prime Minister Esko AHO (since 26 April 1991); Deputy Prime Minister Ilkka\n    KANERVA (since 26 April 1991)\nSuffrage:\n    universal at age 18\nElections:\n  Parliament:\n    last held 17 March 1991 (next to be held March 1995); results - Center Party\n    24.8%, Social Democratic Party 22.1%, National Coalition (Conservative)\n    Party 19.3%, Leftist Alliance (Communist) 10.1%, Green League 6.8%, Swedish\n    People's Party 5.5%, Rural 4.8%, Finnish Christian League 3.1%, Liberal\n    People's Party 0.8%; seats - (200 total) Center Party 55, Social Democratic\n    Party 48, National Coalition (Conservative) Party 40, Leftist Alliance\n    (Communist) 19, Swedish People's Party 12, Green League 10, Finnish\n    Christian League 8, Rural 7, Liberal People's Party 1\n  President:\n    last held 31 January - 1 February and 15 February 1988 (next to be held\n    January 1994); results - Mauno KOIVISTO 48%, Paavo VAYRYNEN 20%, Harri\n    HOLKERI 18%\nCommunists:\n    28,000 registered members; an additional 45,000 persons belong to People's\n    Democratic League\nOther political or pressure groups:\n    Finnish Communist Party-Unity, Yrjo HAKANEN; Constitutional Rightist Party;\n    Finnish Pensioners Party; Communist Workers Party, Timo LAHDENMAKI\n\n:Finland Government\n\nMember of:\n    AfDB, AG (observer), AsDB, Australia Group, BIS, CCC, CE, CERN, CSCE, EBRD,\n    ECE, EFTA, ESA (associate), FAO, G-9, GATT, IADB, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM\n    (observer), ISO, ITU, LORCS, MTCR, NAM (guest), NC, NEA, NIB, NSG, OAS\n    (observer), OECD, PCA, UN, UNCTAD, UNDOF, UNESCO, UNFICYP, UNHCR, UNIDO,\n    UNIFIL, UNIIMOG, UNMOGIP, UNTSO, UPU, WHO, WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Jukka VALTASAARI; Chancery at 3216 New Mexico Avenue NW,\n    Washington, DC 20016; telephone (202) 363-2430; there are Finnish Consulates\n    General in Los Angeles and New York, and Consulates in Chicago and Houston\n  US:\n    Ambassador John H. KELLY (as of December 1991); Embassy at Itainen Puistotie\n    14A, SF-00140, Helsinki (mailing address is APO AE 09723); telephone [358]\n    (0) 171931; FAX [358] (0) 174681\nFlag:\n    white with a blue cross that extends to the edges of the flag; the vertical\n    part of the cross is shifted to the hoist side in the style of the DANNEBROG\n    (Danish flag)\n\n:Finland Economy\n\nOverview:\n    Finland has a highly industrialized, largely free market economy, with per\n    capita output nearly three-fourths the US figure. Its main economic force is\n    the manufacturing sector - principally the wood, metals, and engineering\n    industries. Trade is important, with the export of goods representing about\n    30% of GDP. Except for timber and several minerals, Finland depends on\n    imported raw materials, energy, and some components of manufactured goods.\n    Because of the climate, agricultural development is limited to maintaining\n    self-sufficiency in basic commodities. The economy, which experienced an\n    average of 4.9% annual growth between 1987 and 1989, sank into a deep\n    recession in 1991 as growth contracted by 6.2%. The recession - which is\n    expected to bottom out in late 1992 - has been caused by economic\n    overheating, depressed foreign markets, and the dismantling of the barter\n    system between Finland and the former Soviet Union in which Soviet oil and\n    gas had been exchanged for Finnish manufactured goods. The Finnish\n    Government has proposed efforts to increase industrial competitiveness and\n    efficiency by an increase in exports to Western markets, cuts in public\n    expenditures, partial privatization of state enterprises, and foreign\n    investment and exchange liberalization. Helsinki tied the markkaa to the\n    EC's European Currency Unit to promote stability but was forced to devalue\n    the markkaa by about 12% in November 1991. The devaluation should improve\n    industrial competitiveness and business confidence in 1992. Finland, as a\n    member of EFTA, negotiated a European Economic Area arrangement with the EC\n    that allows for free movement of capital, goods, services, and labor within\n    the organization as of January 1993. Finland applied for full EC membership\n    in March 1992.\nGDP:\n    purchasing power equivalent - $80.6 billion, per capita $16,200; real growth\n    rate - 6.2% (1991)\nInflation rate (consumer prices):\n    2.9% (1991)\nUnemployment rate:\n    7.6% (1991)\nBudget:\n    revenues $35.8 billion; expenditures $41.5 billion, including capital\n    expenditures of NA billion (1991)\nExports:\n    $22.9 billion (f.o.b., 1991)\n  commodities:\n    timber, paper and pulp, ships, machinery, clothing and footwear\n  partners:\n    EC 50.25%, Germany 15.5%, UK 10.4%, EFTA 20.7%, Sweden 14%, US 6.1%, Japan\n    1.5%, USSR/EE 6.71% (1991)\nImports:\n    $21.6 billion (c.i.f., 1991)\n  commodities:\n    foodstuffs, petroleum and petroleum products, chemicals, transport\n    equipment, iron and steel, machinery, textile yarn and fabrics, fodder\n    grains\n  partners:\n    EC 45.9% (Germany 16.9%), UK 7.7%, EFTA 19.9%, Sweden 12.3%, US 6.9%, Japan\n    6%, USSR/EE 10.7%\nExternal debt:\n    $5.3 billion (1989)\nIndustrial production:\n    growth rate - 8.6% (1991 est.)\nElectricity:\n    13,324,000 kW capacity; 49,330 million kWh produced, 9,857 kWh per capita\n    (1991)\n\n:Finland Economy\n\nIndustries:\n    metal products, shipbuilding, forestry and wood processing (pulp, paper),\n    copper refining, foodstuffs, chemicals, textiles, clothing\nAgriculture:\n    accounts for 8% of GDP (including forestry); livestock production,\n    especially dairy cattle, predominates; forestry is an important export\n    earner and a secondary occupation for the rural population; main crops -\n    cereals, sugar beets, potatoes; 85% self-sufficient, but short of foodgrains\n    and fodder grains; annual fish catch about 160,000 metric tons\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $2.7 billion\nCurrency:\n    markka (plural - markkaa); 1 markka (FMk) or Finmark = 100 pennia\nExchange rates:\n    markkaa (FMk) per US$1 - 4.2967 (January 1992), 4.0440 (1991), 3.8235\n    (1990), 4.2912 (1989), 4.1828 (1988), 4.3956 (1987)\nFiscal year:\n    calendar year\n\n:Finland Communications\n\nRailroads:\n    5,924 km total; Finnish State Railways (VR) operate a total of 5,863 km\n    1.524-meter gauge, of which 480 km are multiple track and 1,445 km are\n    electrified\nHighways:\n    about 103,000 km total, including 35,000 km paved (bituminous, concrete,\n    bituminous-treated surface) and 38,000 km unpaved (stabilized gravel,\n    gravel, earth); additional 30,000 km of private (state-subsidized) roads\nInland waterways:\n    6,675 km total (including Saimaa Canal); 3,700 km suitable for steamers\nPipelines:\n    natural gas 580 km\nPorts:\n    Helsinki, Oulu, Pori, Rauma, Turku; 6 secondary, numerous minor ports\nMerchant marine:\n    80 ships (1,000 GRT or over) totaling 794,094 GRT/732,585 DWT; includes 1\n    passenger, 9 short-sea passenger, 16 cargo, 1 refrigerated cargo, 26\n    roll-on/roll-off, 12 petroleum tanker, 6 chemical tanker, 2 liquefied gas, 7\n    bulk\nCivil air:\n    42 major transport\nAirports:\n    159 total, 156 usable; 58 with permanent-surface runways; none with runways\n    over 3,659 m; 23 with runways 2,440-3,659 m; 22 with runways 1,220-2,439 m\nTelecommunications:\n    good service from cable and radio relay network; 3,140,000 telephones;\n    broadcast stations - 6 AM, 105 FM, 235 TV; 1 submarine cable; INTELSAT\n    satellite transmission service via Swedish earth station and a receive-only\n    INTELSAT earth station near Helsinki\n\n:Finland Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Frontier Guard (including Coast Guard)\nManpower availability:\n    males 15-49, 1,314,305; 1,087,286 fit for military service; 33,053 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $1.8 billion, 1.6% of GDP (1989 est.)\n\n:France Geography\n\nTotal area:\n    547,030 km2\nLand area:\n    545,630 km2; includes Corsica and the rest of metropolitan France, but\n    excludes the overseas administrative divisions\nComparative area:\n    slightly more than twice the size of Colorado\nLand boundaries:\n    2,892.4 km; Andorra 60 km, Belgium 620 km, Germany 451 km, Italy 488 km,\n    Luxembourg 73 km, Monaco 4.4 km, Spain 623 km, Switzerland 573 km\nCoastline:\n    3,427 km; mainland 2,783 km, Corsica 644 km\nMaritime claims:\n  Contiguous zone:\n    12-24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Madagascar claims Bassas da India, Europa Island, Glorioso Islands, Juan de\n    Nova Island, and Tromelin Island; Comoros claims Mayotte; Mauritius claims\n    Tromelin Island; Seychelles claims Tromelin Island; Suriname claims part of\n    French Guiana; Mexico claims Clipperton Island; territorial claim in\n    Antarctica (Adelie Land)\nClimate:\n    generally cool winters and mild summers, but mild winters and hot summers\n    along the Mediterranean\nTerrain:\n    mostly flat plains or gently rolling hills in north and west; remainder is\n    mountainous, especially Pyrenees in south, Alps in east\nNatural resources:\n    coal, iron ore, bauxite, fish, timber, zinc, potash\nLand use:\n    arable land 32%; permanent crops 2%; meadows and pastures 23%; forest and\n    woodland 27%; other 16%; includes irrigated 2%\nEnvironment:\n    most of large urban areas and industrial centers in Rhone, Garonne, Seine,\n    or Loire River basins; occasional warm tropical wind known as mistral\nNote:\n    largest West European nation\n\n:France People\n\nPopulation:\n    57,287,258 (July 1992), growth rate 0.5% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 82 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Frenchman(men), Frenchwoman(women); adjective - French\nEthnic divisions:\n    Celtic and Latin with Teutonic, Slavic, North African, Indochinese, and\n    Basque minorities\nReligions:\n    Roman Catholic 90%, Protestant 2%, Jewish 1%, Muslim (North African workers)\n    1%, unaffiliated 6%\nLanguages:\n    French (100% of population); rapidly declining regional dialects (Provencal,\n    Breton, Alsatian, Corsican, Catalan, Basque, Flemish)\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1980 est.)\nLabor force:\n    24,170,000; services 61.5%, industry 31.3%, agriculture 7.3% (1987)\nOrganized labor:\n    20% of labor force (est.)\n\n:France Government\n\nLong-form name:\n    French Republic\nType:\n    republic\nCapital:\n    Paris\nAdministrative divisions:\n    metropolitan France - 22 regions (regions, singular - region); Alsace,\n    Aquitaine, Auvergne, Basse-Normandie, Bourgogne, Bretagne, Centre,\n    Champagne-Ardenne, Corse, Franche-Comte, Haute-Normandie, Ile-de-France,\n    Languedoc-Roussillon, Limousin, Lorraine, Midi-Pyrenees, Nord-Pas-de-Calais,\n    Pays de la Loire, Picardie, Poitou-Charentes, Provence-Alpes-Cote d'Azur,\n    Rhone-Alpes; note - the 22 regions are subdivided into 96 departments; see\n    separate entries for the overseas departments (French Guiana, Guadeloupe,\n    Martinique, Reunion) and the territorial collectivities (Mayotte, Saint\n    Pierre and Miquelon)\nIndependence:\n    unified by Clovis in 486, First Republic proclaimed in 1792\nConstitution:\n    28 September 1958, amended concerning election of president in 1962\nDependent areas:\n    Bassas da India, Clipperton Island, Europa Island, French Polynesia, French\n    Southern and Antarctic Lands, Glorioso Islands, Juan de Nova Island, New\n    Caledonia, Tromelin Island, Wallis and Futuna\n  note:\n    the US does not recognize claims to Antarctica\nLegal system:\n    civil law system with indigenous concepts; review of administrative but not\n    legislative acts\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral Parliament (Parlement) consists of an upper house or Senate\n    (Senat) and a lower house or National Assembly (Assemblee Nationale)\nJudicial branch:\n    Constitutional Court (Cour Constitutionnelle)\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Prime Minister Pierre BEREGOVOY (since 2 April 1992)\nPolitical parties and leaders:\n    Rally for the Republic (RPR, formerly UDR), Jacques CHIRAC; Union for French\n    Democracy (UDF, federation of PR, CDS, and RAD), Valery Giscard d'ESTAING;\n    Republican Party (PR), Gerard LONGUET; Center for Social Democrats (CDS),\n    Pierre MEHAIGNERIE; Radical (RAD), Yves GALLAND; Socialist Party (PS),\n    Laurent FABIUS; Left Radical Movement (MRG), Emile ZUCCARELLI; Communist\n    Party (PCF), Georges MARCHAIS; National Front (FN), Jean-Marie LE PEN\nSuffrage:\n    universal at age 18\nElections:\n  National Assembly:\n    last held 5 and 12 June 1988 (next to be held June 1993); results - Second\n    Ballot PS-MRG 48. 7%, RPR 23.1%, UDF 21%, PCF 3.4%, other 3.8%; seats - (577\n    total) PS 272, RPR 127, UDF 91, UDC 40, PCF 26, independents 21\n\n:France Government\n\n  President:\n    last held 8 May 1988 (next to be held May 1995); results - Second Ballot\n    Francois MITTERRAND 54%, Jacques CHIRAC 46%\nElections:\n  Senate:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (321 total; 296 metropolitan France, 13\n    for overseas departments and territories, and 12 for French nationals\n    abroad) RPR 91, UDF 143 (PR 52, CDS 68, RAD 23), PS 66, PCF 16, independents\n    2, unknown 3\nCommunists:\n    700,000 claimed but probably closer to 150,000; Communist voters, 2.8\n    million in 1988 election\nOther political or pressure groups:\n    Communist-controlled labor union (Confederation Generale du Travail) nearly\n    2.4 million members (claimed); Socialist-leaning labor union (Confederation\n    Francaise Democratique du Travail or CFDT) about 800,000 members est.;\n    independent labor union (Force Ouvriere) 1 million members (est.);\n    independent white-collar union (Confederation Generale des Cadres) 340,000\n    members (claimed); National Council of French Employers (Conseil National du\n    Patronat Francais - CNPF or Patronat)\nMember of:\n    ACCT, AfDB, AG (observer), AsDB, Australia Group, BDEAC, BIS, CCC, CDB, CE,\n    CERN, COCOM, CSCE, EBRD, EC, ECE, ECLAC, EIB, ESA, ESCAP, FAO, FZ, GATT,\n    G-5, G-7, G-10, IABD, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD, IFC, ILO,\n    IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU,\n    LORCS, MTCR, NACC, NATO, NEA, NSG, OAS (observer), OECD, PCA, SPC, UN,\n    UNCTAD, UNESCO, UNHCR, UNIDO, UNIFIL, UNRWA, UN Security Council, UN\n    Trusteeship Council, UNTSO, UPU, WCL, WEU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jacques ANDREANI; Chancery at 4101 Reservoir Road NW, Washington,\n    DC 20007; telephone (202) 944-6000; there are French Consulates General in\n    Boston, Chicago, Detroit, Houston, Los Angeles, New Orleans, Miami, New\n    York, San Francisco, and San Juan (Puerto Rico)\n  US:\n    Ambassador Walter J. P. CURLEY; Embassy at 2 Avenue Gabriel, 75382 Paris\n    Cedex 08, Unit 21551 (mailing address is APO AE 09777); telephone [33] (1)\n    42-96-12-02 or 42-61-80-75; FAX [33] (1) 42-66-97-83; there are US\n    Consulates General in Bordeaux, Marseille, and Strasbourg\nFlag:\n    three equal vertical bands of blue (hoist side), white, and red; known as\n    the French Tricouleur (Tricolor); the design and colors have been the basis\n    for a number of other flags, including those of Belgium, Chad, Ireland,\n    Ivory Coast, and Luxembourg; the official flag for all French dependent\n    areas\n\n:France Economy\n\nOverview:\n    One of the world's most developed economies, France has substantial\n    agricultural resources and a highly diversified modern industrial sector.\n    Large tracts of fertile land, the application of modern technology, and\n    subsidies have combined to make it the leading agricultural producer in\n    Western Europe. France is largely self-sufficient in agricultural products\n    and is a major exporter of wheat and dairy products. The industrial sector\n    generates about one-quarter of GDP, and the growing services sector has\n    become crucial to the economy. After expanding at a rapid 3.8% pace during\n    the period 1988-89, the economy slowed down in 1990, with growth of 1.5% in\n    1990 and 1.4% in 1991; growth in 1992 is expected to be about 2%. The\n    economy has had difficulty generating enough jobs for new entrants into the\n    labor force, resulting in a high unemployment rate, which rose to almost 10%\n    in 1991. The steadily advancing economic integration within the European\n    Community is a major force affecting the fortunes of the various economic\n    sectors.\nGDP:\n    purchasing power equivalent - $1,033.7 billion, per capita $18,300; real\n    growth rate 1.4% (1991 est.)\nInflation rate (consumer prices):\n    3.3% (1991 est.)\nUnemployment rate:\n    9.8% (end 1991)\nBudget:\n    revenues $229.8 billion; expenditures $246.4 billion, including capital\n    expenditures of $36 billion (1992 budget)\nExports:\n    $209.5 billion (f.o.b., 1990)\n  commodities:\n    machinery and transportation equipment, chemicals, foodstuffs, agricultural\n    products, iron and steel products, textiles and clothing\n  partners:\n    FRG 17.3%, Italy 11.4%, UK 9.2%, Spain 10.3%, Netherlands 9.0%,\n    Belgium-Luxembourg 9.4%, US 6.1%, Japan 1.9%, former USSR 0.7% (1989 est.)\nImports:\n    $232.5 billion (c.i.f., 1990)\n  commodities:\n    crude oil, machinery and equipment, agricultural products, chemicals, iron\n    and steel products\n  partners:\n    FRG 18.9%, Italy 11.6%, Belgium-Luxembourg 8.8%, Netherlands 8.6%, US 8.0%,\n    Spain 7.9%, UK 7.2%, Japan 4.0%, former USSR 1.4% (1989 est.)\nExternal debt:\n    $59.3 billion (December 1987)\nIndustrial production:\n    growth rate 1.2% (1990); accounts for 26% of GDP\nElectricity:\n    109,972,000 kW capacity; 399,318 million kWh produced, 7,200 kWh per capita\n    (1991)\nIndustries:\n    steel, machinery, chemicals, automobiles, metallurgy, aircraft, electronics,\n    mining, textiles, food processing, and tourism\nAgriculture:\n    accounts for 4% of GDP (including fishing and forestry); one of the world's\n    top five wheat producers; other principal products - beef, dairy products,\n    cereals, sugar beets, potatoes, wine grapes; self-sufficient for most\n    temperate-zone foods; shortages include fats and oils and tropical produce,\n    but overall net exporter of farm products; fish catch of 850,000 metric tons\n    ranks among world's top 20 countries and is all used domestically\n\n:France Economy\n\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $75.1 billion\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.3801 (January 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:France Communications\n\nRailroads:\n    French National Railways (SNCF) operates 34,568 km 1.435-meter standard\n    gauge; 11,674 km electrified, 15,132 km double or multiple track; 2,138 km\n    of various gauges (1.000-meter to 1.440-meter), privately owned and operated\nHighways:\n    1,551,400 km total; 33,400 km national highway; 347,000 km departmental\n    highway; 421,000 km community roads; 750,000 km rural roads; 5,401 km of\n    controlled-access divided autoroutes; about 803,000 km paved\nInland waterways:\n    14,932 km; 6,969 km heavily traveled\nPipelines:\n    crude oil 3,059 km; petroleum products 4,487 km; natural gas 24,746 km\nPorts:\n    maritime - Bordeaux, Boulogne, Brest, Cherbourg, Dunkerque, Fos-Sur-Mer, Le\n    Havre, Marseille, Nantes, Rouen, Sete, Toulon; inland - 42\nMerchant marine:\n    128 ships (1,000 GRT or over) totaling 3,222,539 GRT/5,117,091 DWT; includes\n    6 short-sea passenger, 11 cargo, 18 container, 1 multifunction large-load\n    carrier, 30 roll-on/roll-off, 34 petroleum tanker, 8 chemical tanker, 6\n    liquefied gas, 2 specialized tanker, 11 bulk, 1 refrigerated cargo; note -\n    France also maintains a captive register for French-owned ships in the\n    Kerguelen Islands (French Southern and Antarctic Lands) and French Polynesia\nCivil air:\n    195 major transport aircraft (1989 est.)\nAirports:\n    472 total, 460 usable; 251 with permanent-surface runways; 3 with runways\n    over 3,659 m; 36 with runways 2,440-3,659 m; 136 with runways 1,220-2,439 m\nTelecommunications:\n    highly developed; extensive cable and radio relay networks; large-scale\n    introduction of optical-fiber systems; satellite systems for domestic\n    traffic; 39,200,000 telephones; broadcast stations - 41 AM, 800 (mostly\n    repeaters) FM, 846 (mostly repeaters) TV; 24 submarine coaxial cables; 2\n    INTELSAT earth stations (with total of 5 antennas - 2 for the Indian Ocean\n    INTELSAT and 3 for the Atlantic Ocean INTELSAT); HF radio communications\n    with more than 20 countries; INMARSAT service; EUTELSAT TV service\n\n:France Defense Forces\n\nBranches:\n    Army, Navy (including Naval Air), Air Force, National Gendarmerie\nManpower availability:\n    males 15-49, 14,599,636; 12,225,969 fit for military service; 411,211 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $33.1 billion, 3.4% of GDP (1991)\n\n:French Guiana Geography\n\nTotal area:\n    91,000 km2\nLand area:\n    89,150 km2\nComparative area:\n    slightly smaller than Indiana\nLand boundaries:\n    1,183 km; Brazil 673 km, Suriname 510 km\nCoastline:\n    378 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Suriname claims area between Riviere Litani and Riviere Marouini (both\n    headwaters of the Lawa)\nClimate:\n    tropical; hot, humid; little seasonal temperature variation\nTerrain:\n    low-lying coastal plains rising to hills and small mountains\nNatural resources:\n    bauxite, timber, gold (widely scattered), cinnabar, kaolin, fish\nLand use:\n    arable land NEGL%; permanent crops NEGL%; meadows and pastures NEGL%; forest\n    and woodland 82%; other 18%\nEnvironment:\n    mostly an unsettled wilderness\n\n:French Guiana People\n\nPopulation:\n    127,505 (July 1992), growth rate 4.6% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    24 migrants/1,000 population (1992)\nInfant mortality rate:\n    17 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 78 years female (1992)\nTotal fertility rate:\n    3.6 children born/woman (1992)\nNationality:\n    noun - French Guianese (singular and plural); adjective - French Guianese;\n    note - they are a colony/department; they hold French passports\nEthnic divisions:\n    black or mulatto 66%; Caucasian 12%; East Indian, Chinese, Amerindian 12%;\n    other 10%\nReligions:\n    predominantly Roman Catholic\nLanguages:\n    French\nLiteracy:\n    82% (male 81%, female 83%) age 15 and over can read and write (1982)\nLabor force:\n    23,265; services, government, and commerce 60.6%, industry 21.2%,\n    agriculture 18.2% (1980)\nOrganized labor:\n    7% of labor force\n\n:French Guiana Government\n\nLong-form name:\n    Department of Guiana\nType:\n    overseas department of France\nCapital:\n    Cayenne\nAdministrative divisions:\n    none (overseas department of France)\nIndependence:\n    none (overseas department of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French legal system\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    French president, commissioner of the republic\nLegislative branch:\n    unicameral General Council and a unicameral Regional Council\nJudicial branch:\n    highest local court is the Court of Appeals based in Martinique with\n    jurisdiction over Martinique, Guadeloupe, and French Guiana\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Commissioner of the Republic Jean-Francois DICHIARA (since NA 1990)\nPolitical parties and leaders:\n    Guianese Socialist Party (PSG), Gerard HOLDER; Rally for the Republic (RPR),\n    Paulin BRUNE; Guianese Democratic Action (ADG), Andre LECANTE; Union for\n    French Democracy (UDF), Claude Ho A CHUCK; National Front (FN), Guy MALON;\n    Popular and National Party of Guiana (PNPG), Claude ROBO; National\n    Anti-Colonist Guianese Party (PANGA), Michel KAPEL\nSuffrage:\n    universal at age 18\nElections:\n  French National Assembly:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (2 total) PSG 1, RPR 1\n  French Senate:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (1 total) PSG 1\n  Regional Council:\n    last held 16 March 1986 (next to be held NA 1991); results - PSG 43%, RPR\n    27.7%, ADG 12.2%, UDF 8. 9%, FN 3.7%, PNPG 1.4%, other 3.1%; seats - (31\n    total) PSG 15, RPR 9, ADG 4, UDF 3\nMember of:\n    FZ, WCL, WFTU\nDiplomatic representation:\n    as an overseas department of France, the interests of French Guiana are\n    represented in the US by France\nFlag:\n    the flag of France is used\n\n:French Guiana Economy\n\nOverview:\n    The economy is tied closely to that of France through subsidies and imports.\n    Besides the French space center at Kourou, fishing and forestry are the most\n    important economic activities, with exports of fish and fish products\n    (mostly shrimp) accounting for more than 60% of total revenue in 1987. The\n    large reserves of tropical hardwoods, not fully exploited, support an\n    expanding sawmill industry that provides sawn logs for export. Cultivation\n    of crops - rice, cassava, bananas, and sugarcane - are limited to the\n    coastal area, where the population is largely concentrated. French Guiana is\n    heavily dependent on imports of food and energy. Unemployment is a serious\n    problem, particularly among younger workers.\nGDP:\n    exchange rate conversion - $186 million, per capita $2,240; real growth rate\n    NA% (1985)\nInflation rate (consumer prices):\n    4.1% (1987)\nUnemployment rate:\n    15% (1987)\nBudget:\n    revenues $735 million; expenditures $735 million, including capital\n    expenditures of NA (1987)\nExports:\n    $54.0 million (f.o.b., 1987)\n  commodities:\n    shrimp, timber, rum, rosewood essence\n  partners:\n    France 31%, US 22%, Japan 10% (1987)\nImports:\n    $394.0 million (c.i.f., 1987)\n  commodities:\n    food (grains, processed meat), other consumer goods, producer goods,\n    petroleum\n  partners:\n    France 62%, Trinidad and Tobago 9%, US 4%, FRG 3% (1987)\nExternal debt:\n    $1.2 billion (1988)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    92,000 kW capacity; 185 million kWh produced, 1,821 kWh per capita (1991)\nIndustries:\n    construction, shrimp processing, forestry products, rum, gold mining\nAgriculture:\n    some vegetables for local consumption; rice, corn, manioc, cocoa, bananas,\n    sugar; livestock - cattle, pigs, poultry\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $1.51 billion\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.3801 (January 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:French Guiana Communications\n\nHighways:\n    680 km total; 510 km paved, 170 km improved and unimproved earth\nInland waterways:\n    460 km, navigable by small oceangoing vessels and river and coastal\n    steamers; 3,300 km navigable by native craft\nPorts:\n    Cayenne\nCivil air:\n    no major transport aircraft\nAirports:\n    10 total, 10 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    fair open-wire and radio relay system; 18,100 telephones; broadcast stations\n    - 5 AM, 7 FM, 9 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:French Guiana Defense Forces\n\nBranches:\n    French Forces, Gendarmerie\nManpower availability:\n    males 15-49 37,467; 24,534 fit for military service\nNote:\n    defense is the responsibility of France\n\n:French Polynesia Geography\n\nTotal area:\n    3,941 km2\nLand area:\n    3,660 km2\nComparative area:\n    slightly less than one-third the size of Connecticut\nLand boundaries:\n    none\nCoastline:\n    2,525 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, but moderate\nTerrain:\n    mixture of rugged high islands and low islands with reefs\nNatural resources:\n    timber, fish, cobalt\nLand use:\n    arable land 1%; permanent crops 19%; meadows and pastures 5%; forest and\n    woodland 31%; other 44%\nEnvironment:\n    occasional cyclonic storm in January; includes five archipelagoes\nNote:\n    Makatea in French Polynesia is one of the three great phosphate rock islands\n    in the Pacific Ocean - the others are Banaba (Ocean Island) in Kiribati and\n    Nauru\n\n:French Polynesia People\n\nPopulation:\n    205,620 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    28 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    15 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 73 years female (1992)\nTotal fertility rate:\n    3.3 children born/woman (1992)\nNationality:\n    noun - French Polynesian(s); adjective - French Polynesian\nEthnic divisions:\n    Polynesian 78%, Chinese 12%, local French 6%, metropolitan French 4%\nReligions:\n    mainly Christian; Protestant 54%, Roman Catholic 30%, other 16%\nLanguages:\n    French and Tahitian (both official)\nLiteracy:\n    98% (male 98%, female 98%) age 14 and over but definition of literacy not\n    available (1977)\nLabor force:\n    76,630 employed (1988)\nOrganized labor:\n    NA\n\n:French Polynesia Government\n\nLong-form name:\n    Territory of French Polynesia\nType:\n    overseas territory of France since 1946\nCapital:\n    Papeete\nAdministrative divisions:\n    none (overseas territory of France); there are no first-order administrative\n    divisions as defined by the US Government, but there are 5 archipelagic\n    divisions named Archipel des Marquises, Archipel des Tuamotu, Archipel des\n    Tubuai, Iles du Vent, and Iles Sous-le-Vent; note - Clipperton Island is\n    administered by France from French Polynesia\nIndependence:\n    none (overseas territory of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    based on French system\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    French president, high commissioner of the republic, president of the\n    Council of Ministers, vice president of the Council of Ministers, Council of\n    Ministers\nLegislative branch:\n    unicameral Territorial Assembly\nJudicial branch:\n    Court of Appeal\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981); High Commissioner of the\n    Republic Jean MONTPEZAT (since November 1987)\n  Head of Government:\n    President of the Council of Ministers Gaston FLOSSE (since 10 May 1991);\n    Vice President of the Council of Ministers Joel BUILLARD (since 12 September\n    1991)\nPolitical parties and leaders:\n    People's Rally (Tahoeraa Huiraatira; Gaullist), Gaston FLOSSE; Polynesian\n    Union Party (Te Tiarama; centrist), Alexandre LEONTIEFF; New Fatherland\n    Party (Ai'a Api), Emile VERNAUDON; Polynesian Liberation Front (Tavini\n    Huiraatira), Oscar TEMARU; other small parties\nSuffrage:\n    universal at age 18\nElections:\n    National Assembly last held 5 and 12 June 1988 (next to be held June 1993);\n    results - percent of vote by party NA; seats - (2 total) People's Rally\n    (Gaullist) 1, New Fatherland Party 1\n  French Senate:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (1 total) party NA\n  Territorial Assembly:\n    last held 17 March 1991 (next to be held March 1996); results - percent of\n    vote by party NA; seats - (41 total) People's Rally (Gaullist) 18,\n    Polynesian Union Party 14, New Fatherland Party 5, other 4\nMember of:\n    FZ, ICFTU, SPC, WMO\nDiplomatic representation:\n    as an overseas territory of France, French Polynesian interests are\n    represented in the US by France\n\n:French Polynesia Government\n\nFlag:\n    the flag of France is used\n\n:French Polynesia Economy\n\nOverview:\n    Since 1962, when France stationed military personnel in the region, French\n    Polynesia has changed from a subsistence economy to one in which a high\n    proportion of the work force is either employed by the military or supports\n    the tourist industry. Tourism accounts for about 20% of GDP and is a primary\n    source of hard currency earnings.\nGDP:\n    exchange rate conversion - $1.2 billion, per capita $6,000; real growth rate\n    NA% (1991 est.)\nInflation rate (consumer prices):\n    2.9% (1989)\nUnemployment rate:\n    14.9% (1988 est.)\nBudget:\n    revenues $614 million; expenditures $957 million, including capital\n    expenditures of $NA (1988)\nExports:\n    $88.9 million (f.o.b., 1989)\n  commodities:\n    coconut products 79%, mother-of-pearl 14%, vanilla, shark meat\n  partners:\n    France 54%, US 17%, Japan 17%\nImports:\n    $765 million (c.i.f., 1989)\n  commodities:\n    fuels, foodstuffs, equipment\n  partners:\n    France 53%, US 11%, Australia 6%, NZ 5%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    72,000 kW capacity; 265 million kWh produced, 1,390 kWh per capita (1990)\nIndustries:\n    tourism, pearls, agricultural processing, handicrafts\nAgriculture:\n    coconut and vanilla plantations; vegetables and fruit; poultry, beef, dairy\n    products\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-88),\n    $3.95 billion\nCurrency:\n    Comptoirs Francais du Pacifique franc (plural - francs); 1 CFP franc (CFPF)\n    = 100 centimes\nExchange rates:\n    Comptoirs Francais du Pacifique francs (CFPF) per US$1 - 97.81 (January\n    1992), 102.57 (1991), 99.00 (1990), 115.99 (1989), 108.30 (1988), 109.27\n    (1987); note - linked at the rate of 18.18 to the French franc\nFiscal year:\n    calendar year\n\n:French Polynesia Communications\n\nHighways:\n    600 km (1982)\nPorts:\n    Papeete, Bora-bora\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 4,128 GRT/6,710 DWT; includes 2\n    passenger-cargo, 1 refrigerated cargo; note - a captive subset of the French\n    register\nCivil air:\n    about 6 major transport aircraft\nAirports:\n    43 total, 41 usable; 23 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 12 with runways 1,220-2,439 m\nTelecommunications:\n    33,200 telephones; 84,000 radio receivers; 26,400 TV sets; broadcast\n    stations - 5 AM, 2 FM, 6 TV; 1 Pacific Ocean INTELSAT earth station\n\n:French Polynesia Defense Forces\n\nBranches:\n    French forces (including Army, Navy, Air Force), Gendarmerie\nManpower availability:\n    males 15-49, 50,844; NA fit for military service\nNote:\n    defense is responsibility of France\n\n:French Southern and Antarctic Lands Geography\n\nTotal area:\n    7,781 km2\nLand area:\n    7,781 km2; includes Ile Amsterdam, Ile Saint-Paul, Iles Kerguelen, and Iles\n    Crozet; excludes Terre Adelie claim of about 500,000 km2 in Antarctica that\n    is not recognized by the US\nComparative area:\n    slightly less than 1.5 times the size of Delaware\nLand boundaries:\n    none\nCoastline:\n    1,232 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm (Iles Kerguelen only)\n  Territorial sea:\n    12 nm\nDisputes:\n    Terre Adelie claim in Antarctica is not recognized by the US\nClimate:\n    antarctic\nTerrain:\n    volcanic\nNatural resources:\n    fish, crayfish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    Ile Amsterdam and Ile Saint-Paul are extinct volcanoes\nNote:\n    located in the southern Indian Ocean about equidistant between Africa,\n    Antarctica, and Australia\n\n:French Southern and Antarctic Lands People\n\nPopulation:\n    summer (January 1991) - 200, winter (July 1992) - 150, growth rate 0.0%\n    (1992); note - mostly researchers\n\n:French Southern and Antarctic Lands Government\n\nLong-form name:\n    Territory of the French Southern and Antarctic Lands\nType:\n    overseas territory of France since 1955; governed by High Administrator\n    Bernard de GOUTTES (since May 1990), who is assisted by a 7-member\n    Consultative Council and a 12-member Scientific Council\nCapital:\n    none; administered from Paris, France\nAdministrative divisions:\n    none (overseas territory of France); there are no first-order administrative\n    divisions as defined by the US Government, but there are 3 districts named\n    Ile Crozet, Iles Kerguelen, and Iles Saint-Paul et Amsterdam; excludes Terre\n    Adelie claim in Antarctica that is not recognized by the US\nFlag:\n    the flag of France is used\n\n:French Southern and Antarctic Lands Economy\n\nOverview:\n    Economic activity is limited to servicing meteorological and geophysical\n    research stations and French and other fishing fleets. The fishing catches\n    landed on Iles Kerguelen by foreign ships are exported to France and\n    Reunion.\nBudget:\n    $33.6 million (1990)\n\n:French Southern and Antarctic Lands Communications\n\nPorts:\n    none; offshore anchorage only\nMerchant marine:\n    12 ships (1,000 GRT or over) totaling 192,752 GRT/334,400 DWT; includes 1\n    cargo, 3 refrigerated cargo, 2 roll-on/roll-off cargo, 2 petroleum tanker, 1\n    liquefied gas, 2 bulk, 1 multifunction large load carrier; note - a captive\n    subset of the French register\nTelecommunications:\n    NA\n\n:French Southern and Antarctic Lands Defense Forces\n\nBranches:\n    French Forces (including Army, Navy, Air Force)\nNote:\n    defense is the responsibility of France\n\n:Gabon Geography\n\nTotal area:\n    267,670 km2\nLand area:\n    257,670 km2\nComparative area:\n    slightly smaller than Colorado\nLand boundaries:\n    2,551 km; Cameroon 298 km, Congo 1,903 km, Equatorial Guinea 350 km\nCoastline:\n    885 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary dispute with Equatorial Guinea because of disputed\n    sovereignty over islands in Corisco Bay\nClimate:\n    tropical; always hot, humid\nTerrain:\n    narrow coastal plain; hilly interior; savanna in east and south\nNatural resources:\n    crude oil, manganese, uranium, gold, timber, iron ore\nLand use:\n    arable land 1%; permanent crops 1%; meadows and pastures 18%; forest and\n    woodland 78%; other 2%\nEnvironment:\n    deforestation\n\n:Gabon People\n\nPopulation:\n    1,106,355 (July 1992), growth rate 1.5% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    100 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    51 years male, 56 years female (1992)\nTotal fertility rate:\n    4.1 children born/woman (1992)\nNationality:\n    noun - Gabonese (singular and plural); adjective - Gabonese\nEthnic divisions:\n    about 40 Bantu tribes, including four major tribal groupings (Fang, Eshira,\n    Bapounou, Bateke); about 100,000 expatriate Africans and Europeans,\n    including 27,000 French\nReligions:\n    Christian 55-75%, Muslim less than 1%, remainder animist\nLanguages:\n    French (official), Fang, Myene, Bateke, Bapounou/Eschira, Bandjabi\nLiteracy:\n    61% (male 74%, female 48%) age 15 and over can read and write (1990 est.)\nLabor force:\n    120,000 salaried; agriculture 65.0%, industry and commerce 30.0%, services\n    2.5%, government 2.5%; 58% of population of working age (1983)\nOrganized labor:\n    there are 38,000 members of the national trade union, the Gabonese Trade\n    Union Confederation (COSYGA)\n\n:Gabon Government\n\nLong-form name:\n    Gabonese Republic\nType:\n    republic; multiparty presidential regime (opposition parties legalized 1990)\nCapital:\n    Libreville\nAdministrative divisions:\n    9 provinces; Estuaire, Haut-Ogooue, Moyen-Ogooue, Ngounie, Nyanga,\n    Ogooue-Ivindo, Ogooue-Lolo, Ogooue-Maritime, Woleu-Ntem\nIndependence:\n    17 August 1960 (from France)\nConstitution:\n    21 February 1961, revised 15 April 1975\nLegal system:\n    based on French civil law system and customary law; judicial review of\n    legislative acts in Constitutional Chamber of the Supreme Court; compulsory\n    ICJ jurisdiction not accepted\nNational holiday:\n    Renovation Day (Gabonese Democratic Party established), 12 March (1968)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President El Hadj Omar BONGO (since 2 December 1967)\n  Head of Government:\n    Prime Minister Casimir OYE-MBA (since 3 May 1990)\nPolitical parties and leaders:\n    Gabonese Democratic Party (PDG, former sole party), El Hadj Omar BONGO,\n    president; National Recovery Movement - Lumberjacks (Morena-Bucherons);\n    Gabonese Party for Progress (PGP); National Recovery Movement\n    (Morena-Original); Association for Socialism in Gabon (APSG); Gabonese\n    Socialist Union (USG); Circle for Renewal and Progress (CRP); Union for\n    Democracy and Development (UDD)\nSuffrage:\n    universal at age 21\nElections:\n  National Assembly:\n    last held on 28 October 1990 (next to be held by NA); results - percent of\n    vote NA; seats - (120 total, 111 elected) PDG 62, National Recovery Movement\n    - Lumberjacks (Morena-Bucherons) 19, PGP 18, National Recovery Movement\n    (Morena-Original) 7, APSG 6, USG 4, CRP 1, independents 3\n  President:\n    last held on 9 November 1986 (next to be held December 1993); results -\n    President Omar BONGO was reelected without opposition\nMember of:\n    ACCT, ACP, AfDB, BDEAC, CCC, CEEAC, ECA, FAO, FZ, G-24, G-77, GATT, IAEA,\n    IBRD, ICAO, ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, ITU, LORCS (associate), NAM, OAU, OIC, OPEC, UDEAC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador-designate Alexandre SAMBAT; Chancery at 2034 20th Street NW,\n    Washington, DC 20009; telephone (202) 797-1000\n\n:Gabon Government\n\n  US:\n    Ambassador Keith L. WAUCHOPE; Embassy at Boulevard de la Mer, Libreville\n    (mailing address is B. P. 4000, Libreville); telephone (241) 762003/4, or\n    743492\nFlag:\n    three equal horizontal bands of green (top), yellow, and blue\n\n:Gabon Economy\n\nOverview:\n    The economy, dependent on timber and manganese until the early 1970s, is now\n    dominated by the oil sector. During the period 1981-85, oil accounted for\n    about 46% of GDP, 83% of export earnings, and 65% of government revenues on\n    average. The high oil prices of the early 1980s contributed to a substantial\n    increase in per capita income, stimulated domestic demand, reinforced\n    migration from rural to urban areas, and raised the level of real wages to\n    among the highest in Sub-Saharan Africa. The three-year slide of Gabon's\n    economy, which began with falling oil prices in 1985, was reversed in 1989\n    because of a near doubling of oil prices over their 1988 lows. In 1990 the\n    economy posted strong growth despite serious strikes, but debt servicing\n    problems are hindering economic advancement. The agricultural and industrial\n    sectors are relatively underdeveloped, except for oil.\nGDP:\n    exchange rate conversion - $3.3 billion, per capita $3,090; real growth rate\n    13% (1990 est.)\nInflation rate (consumer prices):\n    3% (1989 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $1.1 billion; expenditures $1.5 billion, including capital\n    expenditures of $277 million (1990 est.)\nExports:\n    $1.16 billion (f.o.b., 1989)\n  commodities:\n    crude oil 70%, manganese 11%, wood 12%, uranium 6%\n  partners:\n    France 53%, US 22%, FRG, Japan\nImports:\n    $0.78 billion (c.i.f., 1989)\n  commodities:\n    foodstuffs, chemical products, petroleum products, construction materials,\n    manufactures, machinery\n  partners:\n    France 48%, US 2.6%, FRG, Japan, UK\nExternal debt:\n    $3.4 billion (December 1990 est.)\nIndustrial production:\n    growth rate -10% (1988 est.)\nElectricity:\n    315,000 kW capacity; 995 million kWh produced, 920 kWh per capita (1991)\nIndustries:\n    petroleum, food and beverages, timber, cement, plywood, textiles, mining -\n    manganese, uranium, gold\nAgriculture:\n    accounts for 10% of GDP (including fishing and forestry); cash crops -\n    cocoa, coffee, palm oil; livestock not developed; importer of food; small\n    fishing operations provide a catch of about 20,000 metric tons; okoume (a\n    tropical softwood) is the most important timber product\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $66 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2,225 million;\n    Communist countries (1970-89), $27 million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\n\n:Gabon Economy\n\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Gabon Communications\n\nRailroads:\n    649 km 1.437-meter standard-gauge single track (Transgabonese Railroad)\nHighways:\n    7,500 km total; 560 km paved, 960 km laterite, 5,980 km earth\nInland waterways:\n    1,600 km perennially navigable\nPipelines:\n    crude oil 270 km; petroleum products 14 km\nPorts:\n    Owendo, Port-Gentil, Libreville\nMerchant marine:\n    2 cargo ships (1,000 GRT or over) totaling 18,563 GRT/25,330 DWT\nCivil air:\n    15 major transport aircraft\nAirports:\n    70 total, 59 usable; 10 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 22 with runways 1,220-2,439 m\nTelecommunications:\n    adequate system of cable, radio relay, tropospheric scatter links and\n    radiocommunication stations; 15,000 telephones; broadcast stations - 6 AM, 6\n    FM, 3 (5 repeaters) TV; satellite earth stations - 3 Atlantic Ocean INTELSAT\n    and 12 domestic satellite\n\n:Gabon Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Presidential Guard, National Gendarmerie, National\n    Police\nManpower availability:\n    males 15-49, 267,580; 134,665 fit for military service; 9,262 reach military\n    age (20) annually\nDefense expenditures:\n    exchange rate conversion - $102 million, 3.2% of GDP (1990 est.)\n\n:The Gambia Geography\n\nTotal area:\n    11,300 km2\nLand area:\n    10,000 km2\nComparative area:\n    slightly more than twice the size of Delaware\nLand boundaries:\n    740 km; Senegal 740 km\nCoastline:\n    80 km\nMaritime claims:\n  Contiguous zone:\n    18 nm\n  Continental shelf:\n    not specific\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    short section of boundary with Senegal is indefinite\nClimate:\n    tropical; hot, rainy season (June to November); cooler, dry season (November\n    to May)\nTerrain:\n    flood plain of the Gambia River flanked by some low hills\nNatural resources:\n    fish\nLand use:\n    arable land 16%; permanent crops 0%; meadows and pastures 9%; forest and\n    woodland 20%; other 55%; includes irrigated 3%\nEnvironment:\n    deforestation\nNote:\n    almost an enclave of Senegal; smallest country on the continent of Africa\n\n:The Gambia People\n\nPopulation:\n    902,089 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    47 births/1,000 population (1992)\nDeath rate:\n    17 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    129 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    47 years male, 51 years female (1992)\nTotal fertility rate:\n    6.4 children born/woman (1992)\nNationality:\n    noun - Gambian(s); adjective - Gambian\nEthnic divisions:\n    African 99% (Mandinka 42%, Fula 18%, Wolof 16%, Jola 10%, Serahuli 9%, other\n    4%); non-Gambian 1%\nReligions:\n    Muslim 90%, Christian 9%, indigenous beliefs 1%\nLanguages:\n    English (official); Mandinka, Wolof, Fula, other indigenous vernaculars\nLiteracy:\n    27% (male 39%, female 16%) age 15 and over can read and write (1990 est.)\nLabor force:\n    400,000 (1986 est.); agriculture 75.0%, industry, commerce, and services\n    18.9%, government 6.1%; 55% population of working age (1983)\nOrganized labor:\n    25-30% of wage labor force\n\n:The Gambia Government\n\nLong-form name:\n    Republic of The Gambia\nType:\n    republic under multiparty democratic rule\nCapital:\n    Banjul\nAdministrative divisions:\n    5 divisions and 1 city*; Banjul*, Lower River, MacCarthy Island, North Bank,\n    Upper River, Western\nIndependence:\n    18 February 1965 (from UK); The Gambia and Senegal signed an agreement on 12\n    December 1981 (effective 1 February 1982) that called for the creation of a\n    loose confederation to be known as Senegambia, but the agreement was\n    dissolved on 30 September 1989\nConstitution:\n    24 April 1970\nLegal system:\n    based on a composite of English common law, Koranic law, and customary law;\n    accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 18 February (1965)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    unicameral House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Alhaji Sir Dawda Kairaba JAWARA (since 24 April 1970); Vice\n    President Bakary Bunja DARBO (since 12 May 1982)\nPolitical parties and leaders:\n    People's Progressive Party (PPP), Dawda K. JAWARA, secretary general;\n    National Convention Party (NCP), Sheriff DIBBA; Gambian People's Party\n    (GPP), Hassan Musa CAMARA; United Party (UP), leader NA; People's Democratic\n    Organization of Independence and Socialism (PDOIS), leader NA; People's\n    Democratic Party (PDP), Jabel SALLAH\nSuffrage:\n    universal at age 21\nElections:\n  House of Representatives:\n    last held on 11 March 1987 (next to be held by March 1992); results - PPP\n    56.6%, NCP 27.6%, GPP 14.7%, PDOIS 1%; seats - (43 total, 36 elected) PPP\n    31, NCP 5\n  President:\n    last held on 11 March 1987 (next to be held March 1992); results - Sir Dawda\n    JAWARA (PPP) 61.1%, Sherif Mustapha DIBBA (NCP) 25.2%, Assan Musa CAMARA\n    (GPP) 13.7%\nMember of:\n    ACP, AfDB, C, CCC, ECA, ECOWAS, FAO, G-77, GATT, IBRD, ICAO, ICFTU, IDA,\n    IDB, IFAD, IFC, IMF, IMO, INTERPOL, IOC, ITU, LORCS, NAM, OAU, OIC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Ousman A. SALLAH; Chancery at Suite 720, 1030 15th Street NW,\n    Washington, DC 20005; telephone (202) 842-1356 or 842-1359\n  US:\n    Ambassador Arlene RENDER; Embassy at Pipeline Road (Kairaba Avenue), Fajara,\n    Banjul (mailing address is P. M. B. No. 19, Banjul); telephone Serrekunda\n    [220] 92856 or 92858, 91970, 91971\n\n:The Gambia Government\n\nFlag:\n    three equal horizontal bands of red (top), blue with white edges, and green\n\n:The Gambia Economy\n\nOverview:\n    The Gambia has no important mineral or other natural resources and has a\n    limited agricultural base. It is one of the world's poorest countries with a\n    per capita income of about $230. About 75% of the population is engaged in\n    crop production and livestock raising, which contribute 30% to GDP.\n    Small-scale manufacturing activity - processing peanuts, fish, and hides -\n    accounts for less than 10% of GDP. Tourism is a growing industry. The Gambia\n    imports one-third of its food, all fuel, and most manufactured goods.\n    Exports are concentrated on peanut products (about 75% of total value).\nGDP:\n    exchange rate conversion - $207 million, per capita $235; real growth rate\n    3% (FY91 est.)\nInflation rate (consumer prices):\n    6.0% (FY91)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $79 million; expenditures $84 million, including capital\n    expenditures of $21 million (FY90)\nExports:\n    $116 million (f.o.b., FY90)\n  commodities:\n    peanuts and peanut products, fish, cotton lint, palm kernels\n  partners:\n    Japan 60%, Europe 29%, Africa 5%, US 1, other 5% (1989)\nImports:\n    $147 million (f.o.b., FY90)\n  commodities:\n    foodstuffs, manufactures, raw materials, fuel, machinery and transport\n    equipment\n  partners:\n    Europe 57%, Asia 25%, USSR/EE 9%, US 6%, other 3% (1989)\nExternal debt:\n    $336 million (December 1990 est.)\nIndustrial production:\n    growth rate 6.7%; accounts for 5.8% of GDP (FY90)\nElectricity:\n    30,000 kW capacity; 65 million kWh produced, 75 kWh per capita (1991)\nIndustries:\n    peanut processing, tourism, beverages, agricultural machinery assembly,\n    woodworking, metalworking, clothing\nAgriculture:\n    accounts for 30% of GDP and employs about 75% of the population; imports\n    one-third of food requirements; major export crop is peanuts; the other\n    principal crops - millet, sorghum, rice, corn, cassava, palm kernels;\n    livestock - cattle, sheep, and goats; forestry and fishing resources not\n    fully exploited\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $93 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $535 million;\n    Communist countries (1970-89), $39 million\nCurrency:\n    dalasi (plural - dalasi); 1 dalasi (D) = 100 bututs\nExchange rates:\n    dalasi (D) per US$1 - 8.790 (March 1992), 8.803 (1991), 7.883 (1990), 7.5846\n    (1989), 6.7086 (1988), 7.0744 (1987)\nFiscal year:\n    1 July - 30 June\n\n:The Gambia Communications\n\nHighways:\n    3,083 km total; 431 km paved, 501 km gravel/laterite, and 2,151 km\n    unimproved earth\nInland waterways:\n    400 km\nPorts:\n    Banjul\nCivil air:\n    4 major transport aircraft\nAirports:\n    1 with permanent-surface runway 2,440-3,659 m\nTelecommunications:\n    adequate network of radio relay and wire; 3,500 telephones; broadcast\n    stations - 3 AM, 2 FM; 1 Atlantic Ocean INTELSAT earth station\n\n:The Gambia Defense Forces\n\nBranches:\n    Army, Navy, National Gendarmerie, National Police\nManpower availability:\n    males 15-49, 194,480; 98,271 fit for military service\nDefense expenditures:\n    exchange rate conversion - more than $1 million, 0.7% of GDP (1989)\n\\\n\n:Gaza Strip Geography\n\nTotal area:\n    380 km2\nLand area:\n    380 km2\nComparative area:\n    slightly more than twice the size of Washington, DC\nLand boundaries:\n    62 km; Egypt 11 km, Israel 51 km\nCoastline:\n    40 km\nMaritime claims:\n    Israeli occupied with status to be determined\nDisputes:\n    Israeli occupied with status to be determined\nClimate:\n    temperate, mild winters, dry and warm to hot summers\nTerrain:\n    flat to rolling, sand- and dune- covered coastal plain\nNatural resources:\n    negligible\nLand use:\n    arable land 13%, permanent crops 32%, meadows and pastures 0%, forest and\n    woodland 0%, other 55%\nEnvironment:\n    desertification\nNote:\n    The war between Israel and the Arab states in June 1967 ended with Israel in\n    control of the West Bank and the Gaza Strip, the Sinai, and the Golan\n    Heights. As stated in the 1978 Camp David accords and reaffirmed by\n    President Bush's post - Gulf crisis peace initiative, the final status of\n    the West Bank and the Gaza Strip, their relationship with their neighbors,\n    and a peace treaty be-tween Israel and Jordan are to be negotiated among the\n    concerned parties. Camp David further specifies that these negotiations will\n    resolve the respective boundaries. Pending the completion of this process,\n    it is US policy that the final status of the West Bank and the Gaza Strip\n    has yet to be determined. In the US view, the term West Bank describes all\n    of the area west of the Jordan River under Jordanian administration before\n    the 1967 Arab-Israeli war. With respect to negotiations envisaged in the\n    framework agreement, however, it is US policy that a distinction must be\n    made between Jerusalem and the rest of the West Bank because of the city's\n    special status and circumstances. Therefore, a negotiated solution for the\n    final status of Jerusalem could be different in character from that of the\n    rest of the West Bank.\n    The Gaza Strip is currently governed by Israeli military authorities and\n    Israeli civil administration; it is US policy that the final status of the\n    Gaza Strip will be determined by negotiations among the concerned parties;\n    these negotiations will determine how this area is to be governed.\n    There are 18 Jewish settlements in the Gaza Strip.\n\n:Gaza Strip People\n\nPopulation:\n    681,026 (July 1992), growth rate 3.6% (1992); in addition, there are 4,000\n    Jewish settlers in the Gaza Strip (1992 est.)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    - 4 migrants/1,000 population (1992)\nInfant mortality rate:\n    41 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 68 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    NA\nEthnic divisions:\n    Palestinian Arab and other 99.8%, Jewish 0.2%\nReligions:\n    Muslim (predominantly Sunni) 99%, Christian 0.7%, Jewish 0.3%\nLanguages:\n    Arabic, Israeli settlers speak Hebrew; English widely understood\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    (excluding Israeli Jewish settlers) small industry, commerce and business\n    32.0%, construction 24.4%, service and other 25.5%, and agriculture 18.1%\n    (1984)\nOrganized labor:\n    NA\n\n:Gaza Strip Government\n\nLong-form name:\n    none\n\n:Gaza Strip Economy\n\nOverview:\n    In 1990 roughly 40% of Gaza Strip workers were employed across the border by\n    Israeli industrial, construction, and agricultural enterprises, with worker\n    remittances accounting for about one-third of GNP. The construction,\n    agricultural, and industrial sectors account for about 15%, 12%, and 8% of\n    GNP, respectively. Gaza depends upon Israel for some 90% of its external\n    trade. Unrest in the territory in 1988-92 (intifadah) has raised\n    unemployment and substantially lowered the standard of living of Gazans. The\n    Persian Gulf crisis and its aftershocks also have dealt severe blows to Gaza\n    since August 1990. Worker remittances from the Gulf states have plunged,\n    unemployment has increased, and exports have fallen dramatically. The area's\n    economic outlook remains bleak.\nGNP:\n    exchange rate conversion - $380 million, per capita $590; real growth rate -\n    30% (1991 est.)\nInflation rate (consumer prices):\n    9% (1991 est.)\nUnemployment rate:\n    20% (1990 est.)\nBudget:\n    revenues $33.8 million; expenditures $33.3 million, including capital\n    expenditures of $NA (FY88)\nExports:\n    $30 million (f.o.b., 1989)\n  commodities:\n    citrus\n  partners:\n    Israel, Egypt\nImports:\n    $255 million (c.i.f., 1989)\n  commodities:\n    food, consumer goods, construction materials\n  partners:\n    Israel, Egypt\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 10% (1989); accounts for about 8% of GNP\nElectricity:\n    power supplied by Israel\nIndustries:\n    generally small family businesses that produce textiles, soap, olive-wood\n    carvings, and mother-of-pearl souvenirs; the Israelis have established some\n    small-scale modern industries in an industrial center\nAgriculture:\n    accounts for about 12% of GNP; olives, citrus and other fruits, vegetables,\n    beef, dairy products\nEconomic aid:\n    NA\nCurrency:\n    new Israeli shekel (plural - shekels); 1 new Israeli shekel (NIS) = 100 new\n    agorot\nExchange rates:\n    new Israeli shekels (NIS) per US$1 - 2.2984 (January 1992), 2.2792 (1991),\n    2.0162 (1990), 1.9164 (1989), 1.5989 (1988), 1.5946 (1987)\nFiscal year:\n    previously 1 April - 31 March; FY91 was 1 April - 3l December, and since 1\n    January 1992 the fiscal year has conformed to the calendar year\n\n:Gaza Strip Communications\n\nRailroads:\n    one line, abandoned and in disrepair, some trackage remains\nHighways:\n    small, poorly developed indigenous road network\nPorts:\n    facilities for small boats to service the city of Gaza\nAirports:\n    1 with permanent-surface runway less than 1,220 m\nTelecommunications:\n    broadcast stations - no AM, no FM, no TV\n\n:Gaza Strip Defense Forces\n\nBranches:\n    NA\nManpower availability:\n    males 15-49, 136,311; NA fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Georgia Geography\n\nTotal area:\n    69,700 km2\nLand area:\n    69,700 km2\nComparative area:\n    slightly larger than South Carolina\nLand boundaries:\n    1,461 km; Armenia 164 km, Azerbaijan 322 km, Russia 723 km, Turkey 252 km\nCoastline:\n    310 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental Shelf:\n    NA meter depth\n  Exclusive economic zone:\n    NA nm\n  Exclusive fishing zone:\n    NA nm\n  Territorial sea:\n    NA nm, Georgian claims unknown; 12 nm in 1973 USSR-Turkish Protocol\n    concerning the sea boundary between the two states in the Black Sea\nDisputes:\n    none\nClimate:\n    warm and pleasant; Mediterranean-like on Black Sea coast\nTerrain:\n    largely mountainous with Great Caucasus Mountains in the north and Lesser\n    Caucasus Mountains in the south; Colchis lowland opens to the Black Sea in\n    the west; Kura River Basin in the east; good soils in river valley flood\n    plains, foothills of Colchis lowland\nNatural resources:\n    forest lands, hydropower, manganese deposits, iron ores, copper, minor coal\n    and oil deposits; coastal climate and soils allow for important tea and\n    citrus growth\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes 200,000 hectares irrigated\nEnvironment:\n    air pollution, particularly in Rustavi; heavy pollution of Kura River, Black\n    Sea\n\n:Georgia People\n\nPopulation:\n    5,570,978 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    34 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 75 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Georgian(s); adjective - Georgian\nEthnic divisions:\n    Georgian 68.8%, Armenian 9.0%, Russian Azari 5.1%, Ossetian 3.2%, Abkhaz\n    1.7%, other 4.8%\nReligions:\n    Russian Orthodox 10%, Georgian Orthodox 65%, Armenian Orthodox 8%, Muslim\n    11%, unknown 6%\nLanguages:\n    Georgian (official language) 71%, Russian 9%, other 20% - Armenian 7%,\n    Azerbaijani 6%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    2,834,000; agriculture 29.1% (1988), government NA%, industry 17.8%, other\n    53.1%\nOrganized labor:\n    NA\n\n:Georgia Government\n\nLong-form name:\n    Republic of Georgia\nType:\n    republic\nCapital:\n    T'bilisi (Tbilisi)\nAdministrative divisions:\n    2 autonomous republics (avtomnoy respubliki, singular - avtom respublika);\n    Abkhazia (Sukhumi), Ajaria (Batumi); note - the administrative centers of\n    the autonomous republics are included in parentheses; there are no oblasts -\n    the rayons around T'bilisi are under direct republic jurisdiction; also\n    included is the South Ossetia Autonomous Oblast\nIndependence:\n    9 April 1991 (from Soviet Union); formerly Georgian Soviet Socialist\n    Republic\nConstitution:\n    adopted NA, effective NA\nLegal system:\n    NA\nNational holiday:\n    Independence Day, 9 April 1991\nExecutive branch:\n    State Council, chairman of State Council, Council of Ministers, prime\n    minister\nLegislative branch:\n    unicameral Supreme Soviet\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Chairman of State Council Eduard SHEVARDNADZE (since March 1992)\n  Head of Government:\n    Acting Prime Minister Tengiz SIGUA (since January 1992); First Deputy Prime\n    Minister Otar KVILITAYA (since January 1992); First Deputy Prime Minister\n    Tengiz KITOVANI (since March 1992)\nPolitical parties and leaders:\n    All-Georgian Merab Kostava Society, Vazha ADAMIA, chairman; All-Georgian\n    Tradionalists' Union, Akakiy ASATIANI, chairman; Georgian National Front -\n    Radical Union, Ruslan GONGADZE, chairman; Social-Democratic Party, Guram\n    MUCHAIDZE, chairman; All-Georgian Rustaveli Society, Akakiy BAKRADZE,\n    chairman; Georgian Monarchists' Party, Teymur JORJOLIANI, chairman; Georgian\n    Popular Front, Nodar NATADZE, chairman; National Democratic Party, Georgiy\n    CHANTURIA, chairman; National Independence Party, Irakliy TSERETELI,\n    chairman; Charter 1991 Party, Tedo PAATASHVILI, chairman; Democratic Georgia\n    Party, Georgiy SHENGELAYA, Chairman\nSuffrage:\n    universal at age 18\nElections:\n  Georgian Parliament:\n    last held November 1990; results - 7-party coalition Round Table - Free\n    Georgia 62%, other 38%; seats - (250) Round Table - Free Georgia 155, other\n    95\n  President:\n    Zviad GAMSAKHURDIYA, 87% of vote\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE, IMF, World Bank\n\n:Georgia Government\n\nDiplomatic representation:\n    Ambassador NA, Chancery at NA NW, Washington, DC 200__; telephone (202) NA\n  US:\n    Ambassador NA; Embassy at NA (mailing address is APO New York 09862)\nFlag:\n    maroon field with small rectangle in upper left corner; rectangle divided\n    horizontally with black on top, white below\n\n:Georgia Economy\n\nOverview:\n    Among the former Soviet republics, Georgia is noted for its Black Sea\n    tourist industry, its large output of citrus fruits and tea, and the amazing\n    diversity of an industrial sector that accounted, however, for less than 2%\n    of the USSR's output. Another salient characteristic of the economy has been\n    a flourishing private sector (compared with the other republics). Almost 30%\n    of the labor force is employed in agriculture and 18% in industry. Mineral\n    resources consist of manganese and copper, and, to a lesser extent,\n    molybdenum, arsenic, tungsten, and mercury. Except for very small quantities\n    of domestic oil, gas, and coal, fuel must be imported from neighboring\n    republics. Oil and its products are delivered by pipeline from Azerbaijan to\n    the port of Batumi for export and local refining. Gas is supplied in\n    pipelines from Krasnodar and Stavropol'. Georgia is nearly self-sufficient\n    in electric power, thanks to abundant hydropower stations as well as some\n    thermal power stations. The dismantling of central economic controls is\n    being delayed by political factionalism, marked by armed struggles between\n    the elected government and the opposition, and industrial output seems to\n    have fallen more steeply in Georgia in 1991 than in any other of the former\n    Soviet republics. To prevent further economic decline, Georgia must\n    establish domestic peace and must maintain economic ties to the other former\n    Soviet republics while developing new links to the West.\nGDP:\n    purchasing power equivalent - $NA; per capita $NA; real growth rate - 23%\n    (1991)\nInflation rate (consumer prices):\n    approximately 90% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\n    million (1991)\nExports:\n    $176 million (f.o.b., 1990)\n  commodities:\n    citrus fruits, tea, other agricultural products; diverse types of machinery;\n    ferrous and nonferrous metals; textiles\n  partners:\n    NA\nImports:\n    $1.5 billion (c.i.f., 1990)\n  commodities:\n    machinery and parts, fuel, transport equipment, textiles\n  partners:\n    NA\nExternal debt:\n    $650 million (1991 est.)\nIndustrial production:\n    growth rate - 19% (1991)\nElectricity:\n    4,575,000 kW capacity; 15,300 million kWh produced, about 2,600 kWh per\n    capita (1991)\nIndustries:\n    Heavy industrial products include raw steel, rolled steel, cement, lumber;\n    machine tools, foundry equipment, electric mining locomotives, tower cranes,\n    electric welding equipment, machinery for food preparation, meat packing,\n    dairy, and fishing industries; air-conditioning electric motors up to 100 kW\n    in size, electric motors for cranes, magnetic starters for motors; devices\n    for control of industrial processes; trucks, tractors, and other farm\n    machinery; light industrial products, including cloth, hosiery, and shoes\n\n:Georgia Economy\n\nAgriculture:\n    accounted for 97% of former USSR citrus fruits and 93% of former USSR tea;\n    berries and grapes; sugar; vegetables, grains, and potatoes; cattle, pigs,\n    sheep, goats, and poultry\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Georgia Communications\n\nRailroads:\n    1,570 km, does not include industrial lines (1990)\nHighways:\n    33,900 km total; 29,500 km hard surfaced, 4,400 km earth (1990)\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    crude oil NA km, refined products NA km, natural gas NA km\nPorts:\n    maritime - Batumi, Poti; inland - NA\nMerchant marine:\n    54 ships (1,000 GRT or over) totaling 715,802 GRT/1,108,068 DWT; includes 16\n    bulk cargo, 34 oil tanker, 2 chemical tanker, and 2 specialized liquid\n    carrier\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    poor telephone service; 339,000 unsatisfied applications for telephones (31\n    January 1992); international links via landline to CIS members and Turkey;\n    low capacity satellite earth station and leased international connections\n    via the Moscow international gateway switch\n\n:Georgia Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Navy, Air, and Air Defense)\nManpower availability:\n    males 15-49, NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GNP\n\n:Germany Geography\n\nTotal area:\n    356,910 km2\nLand area:\n    349,520 km2; comprises the formerly separate Federal Republic of Germany,\n    the German Democratic Republic, and Berlin following formal unification on 3\n    October 1990\nComparative area:\n    slightly smaller than Montana\nLand boundaries:\n    3,790 km; Austria 784 km, Belgium 167 km, Czechoslovakia 815 km, Denmark 68\n    km, France 451 km, Luxembourg 138 km, Netherlands 577 km, Poland 456 km,\n    Switzerland 334 km\nCoastline:\n    2,389 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    North Sea and Schleswig-Holstein coast of Baltic Sea - 3 nm (extends, at one\n    point, to 16 nm in the Helgolander Bucht); remainder of Baltic Sea - 12 nm\nDisputes:\n    the boundaries of Germany were set by the Treaty on the Final Settlement\n    With Respect to Germany signed 12 September 1990 in Moscow by the Federal\n    Republic of Germany, the German Democratic Republic, France, the United\n    Kingdom, the United States, and the Soviet Union; this Treaty entered into\n    force on 15 March 1991; a subsequent Treaty between Germany and Poland,\n    reaffirming the German-Polish boundary, was signed on 14 November 1990 and\n    took effect on 16 January 1992\nClimate:\n    temperate and marine; cool, cloudy, wet winters and summers; occasional\n    warm, tropical foehn wind; high relative humidity\nTerrain:\n    lowlands in north, uplands in center, Bavarian Alps in south\nNatural resources:\n    iron ore, coal, potash, timber, lignite, uranium, copper, natural gas, salt,\n    nickel\nLand use:\n    arable land 34%; permanent crops 1%; meadows and pastures 16%; forest and\n    woodland 30%; other 19%; includes irrigated 1%\nEnvironment:\n    air and water pollution; groundwater, lakes, and air quality in eastern\n    Germany are especially bad; significant deforestation in the eastern\n    mountains caused by air pollution and acid rain\nNote:\n    strategic location on North European Plain and along the entrance to the\n    Baltic Sea\n\n:Germany People\n\nPopulation:\n    80,387,283 (July 1992), growth rate 0.5% (1992)\nBirth rate:\n    11 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    5 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 79 years female (1992)\nTotal fertility rate:\n    1.4 children born/woman (1992)\nNationality:\n    noun - German(s); adjective - German\nEthnic divisions:\n    primarily German; small Danish and Slavic minorities\nReligions:\n    Protestant 45%, Roman Catholic 37%, unaffiliated or other 18%\nLanguages:\n    German\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1970 est.)\nLabor force:\n    36,750,000; industry 41%, agriculture 6%, other 53% (1987)\nOrganized labor:\n    47% of labor force (1986 est.)\n\n:Germany Government\n\nLong-form name:\n    Federal Republic of Germany\nType:\n    federal republic\nCapital:\n    Berlin; note - the shift from Bonn to Berlin will take place over a period\n    of years with Bonn retaining many administrative functions and several\n    ministries\nAdministrative divisions:\n    16 states (lander, singular - land); Baden-Wurttemberg, Bayern, Berlin,\n    Brandenburg, Bremen, Hamburg, Hessen, Mecklenburg-Vorpommern, Niedersachsen,\n    Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt,\n    Schleswig-Holstein, Thuringen\nIndependence:\n    18 January 1871 (German Empire unification); divided into four zones of\n    occupation (UK, US, USSR, and later, France) in 1945 following World War II;\n    Federal Republic of Germany (FRG or West Germany) proclaimed 23 May 1949 and\n    included the former UK, US, and French zones; German Democratic Republic\n    (GDR or East Germany) proclaimed 7 October 1949 and included the former USSR\n    zone; unification of West Germany and East Germany took place 3 October\n    1990; all four power rights formally relinquished 15 March 1991\nConstitution:\n    23 May 1949, provisional constitution known as Basic Law\nLegal system:\n    civil law system with indigenous concepts; judicial review of legislative\n    acts in the Federal Constitutional Court; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    German Unity Day, 3 October (1990)\nExecutive branch:\n    president, chancellor, Cabinet\nLegislative branch:\n    bicameral parliament (no official name for the two chambers as a whole)\n    consists of an upper chamber or Federal Council (Bundesrat) and a lower\n    chamber or Federal Diet (Bundestag)\nJudicial branch:\n    Federal Constitutional Court (Bundesverfassungsgericht)\nLeaders:\n  Chief of State:\n    President Dr. Richard von WEIZSACKER (since 1 July 1984)\n  Head of Government:\n    Chancellor Dr. Helmut KOHL (since 4 October 1982)\n    *** No entry for this item ***\nPolitical parties and leaders:\n    Christian Democratic Union (CDU), Helmut KOHL, chairman; Christian Social\n    Union (CSU), Theo WAIGEL; Free Democratic Party (FDP), Otto Count\n    LAMBSDORFF, chairman; Social Democratic Party (SPD), Bjoern ENGHOLM, -\n    chairman; - Green - Party - Ludger VOLMER, Christine WEISKE, co-chairmen\n    (after the 2 December 1990 election the East and West German Green Parties\n    united); Alliance 90 united to form one party in September 1991, Petra\n    MORAWE, chairwoman; Republikaner, Franz SCHOENHUBER; National Democratic\n    Party (NPD), Walter BACHMANN; Communist Party (DKP), Rolf PRIEMER\nSuffrage:\n    universal at age 18\n\n:Germany Government\n\nElections:\n  Federal Diet:\n    last held 2 December 1990 (next to be held October 1994); results - CDU\n    36.7%, SPD 33.5%, FDP 11.0%, CSU 7.1%, Green Party (West Germany) 3.9%, PDS\n    2.4%, Republikaner 2.1%, Alliance 90/Green Party (East Germany) 1.2%, other\n    2.1%; seats - (662 total, 656 statutory with special rules to allow for\n    slight expansion) CDU 268, SPD 239, FDP 79, CSU 51, PDS 17, Alliance\n    90/Green Party (East Germany) 8; note - special rules for this election\n    allowed former East German parties to win seats if they received at least 5%\n    of vote in eastern Germany\n    *** No entry for this item ***\nCommunists:\n    West - about 40,000 members and supporters; East - about 200,000 party\n    members (December 1991)\nOther political or pressure groups:\n    expellee, refugee, and veterans groups\nMember of:\n    AfDB, AG (observer), AsDB, BDEAC, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, EC,\n    ECE, EIB, ESA, FAO, G-5, G-7, G-10, GATT, IADB, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, IOM, ISO, ITU, LORCS, NATO, NEA, OAS (observer), OECD, PCA, UN, UNCTAD,\n    UNESCO, UNIDO, UNHCR, UPU, WEU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Dr. Immo STABREIT will become Ambassador in late summer/early\n    fall 1992; Chancery at 4645 Reservoir Road NW, Washington, DC 20007;\n    telephone (202) 298-4000; there are German Consulates General in Atlanta,\n    Boston, Chicago, Detroit, Houston, Los Angeles, San Francisco, Seattle, and\n    New York, and Consulates in Miami and New Orleans\n  US:\n    Ambassador Robert M. KIMMITT; Embassy at Deichmanns Avenue, 5300 Bonn 2\n    (mailing address is APO AE 09080); telephone [49] (228) 3391; there is a US\n    Branch Office in Berlin and US Consulates General in Frankfurt, Hamburg,\n    Leipzig, Munich, and Stuttgart\nFlag:\n    three equal horizontal bands of black (top), red, and yellow\n\n:Germany Economy\n\nOverview:\n    The Federal Republic of Germany is making substantial progress in\n    integrating and modernizing eastern Germany, but at a heavy economic cost.\n    Western Germany's growth in 1991 slowed to 3.1% - the lowest rate since 1987\n    - because of slack world growth and higher interest rates and taxes required\n    by the unification process. While western Germany's economy was in recession\n    in the last half of 1991, eastern Germany's economy bottomed out after a\n    nearly two-year freefall and shows signs of recovery, particularly in the\n    construction, transportation, and service sectors. Eastern Germany could\n    begin a fragile recovery later, concentrated in 1992 in construction,\n    transportation, and services. The two regions remain vastly different,\n    however, despite eastern Germany's progress. Western Germany has an advanced\n    market economy and is a world leader in exports. It has a highly urbanized\n    and skilled population that enjoys excellent living standards, abundant\n    leisure time, and comprehensive social welfare benefits. Western Germany is\n    relatively poor in natural resources, coal being the most important mineral.\n    Western Germany's world-class companies manufacture technologically advanced\n    goods. The region's economy is mature: services and manufacturing account\n    for the dominant share of economic activity, and raw materials and\n    semimanufactured goods constitute a large portion of imports. In recent\n    years, manufacturing has accounted for about 31% of GDP, with other sectors\n    contributing lesser amounts. Gross fixed investment in 1990 accounted for\n    about 21% of GDP. In 1991, GDP in the western region was an estimated\n    $19,200 per capita. In contrast, eastern Germany's economy is shedding the\n    obsolete heavy industries that dominated the economy during the Communist\n    era. Eastern Germany's share of all-German GDP is only about 7%, and eastern\n    productivity is just 30% that of the west. The privatization agency for\n    eastern Germany, the Treuhand, is rapidly selling many of the 11,500 firms\n    under its control. The pace of private investment is starting to pick up,\n    but questions about property rights and environmental liabilities remain.\n    Eastern Germany has one of the world's largest reserves of low-grade lignite\n    coal but little else in the way of mineral resources. The quality of\n    statistics from eastern Germany is improving, yet many gaps remain; the\n    federal government began producing all-German data for select economic\n    statistics at the start of 1992. The most challenging economic problem is\n    promoting eastern Germany's economic reconstruction - specifically, finding\n    the right mix of fiscal, monetary, regulatory, and tax policies that will\n    spur investment in eastern Germany - without destabilizing western Germany's\n    economy or damaging relations with West European partners. The biggest\n    danger is that excessive wage settlements and heavy federal borrowing could\n    fuel inflation and prompt the German Central Bank, the Bundesbank, to keep a\n    tight monetary policy to choke off a wage-price spiral. Meanwhile, the FRG\n    has been providing billions of dollars to help the former Soviet republics\n    and the reformist economies of Eastern Europe.\nGDP:\n    purchasing power equivalent - Federal Republic of Germany: $1,331.4 billion,\n    per capita $16,700; real growth rate 0.7%; western Germany: $1,235.8\n    billion, per capita $19,200; real growth rate 3.1%; eastern Germany $95.6\n    billion, per capita $5,870; real growth rate - 30% (1991 est.)\nInflation rate (consumer prices):\n    West - 3.5% (1991); East - NA%\nUnemployment rate:\n    West - 6.3% (1991); East - 11% (1991)\nBudget:\n    West (federal, state, local) - revenues $684 billion; expenditures $704\n    billion, including capital expenditures $NA (1990), East - NA\nExports:\n    West - $324.3 billion (f.o.b., 1989)\n\n:Germany Economy\n\n  commodities:\n    manufactures 86.6% (including machines and machine tools, chemicals, motor\n    vehicles, iron and steel products), agricultural products 4.9%, raw\n    materials 2.3%, fuels 1.3%\nExports:\n  partners:\n    EC 53.3% (France 12.7%, Netherlands 8.3%, Italy 9.1%, UK 8.3%,\n    Belgium-Luxembourg 7.3%), other Western Europe 15.9%, US 7.1%, Eastern\n    Europe 4.1%, OPEC 2.7% (1990)\nImports:\n    West - $346.5 billion (f.o.b., 1989)\n  commodities:\n    manufactures 68.5%, agricultural products 12.0%, fuels 9.7%, raw materials\n    7.1%\n  partners:\n    EC 51.7% (France 11.7%, Netherlands 10.1%, Italy 9.3%, UK 6.7%,\n    Belgium-Luxembourg 7.2%), other Western Europe 13.4%, US 6.6%, Eastern\n    Europe 3.8%, OPEC 2.5% (1990)\nExternal debt:\n    West - $500 million (June 1988); East - $20.6 billion (1989)\nIndustrial production:\n    growth rates, West - 5.4% (1990); East - 30% (1991 est.)\nElectricity:\n    133,000,000 kW capacity; 580,000 million kWh produced, 7,390 kWh per capita\n    (1991)\nIndustries:\n    West - among world's largest producers of iron, steel, coal, cement,\n    chemicals, machinery, vehicles, machine tools, electronics; food and\n    beverages; East - metal fabrication, chemicals, brown coal, shipbuilding,\n    machine building, food and beverages, textiles, petroleum refining\nAgriculture:\n    West - accounts for about 2% of GDP (including fishing and forestry);\n    diversified crop and livestock farming; principal crops and livestock\n    include potatoes, wheat, barley, sugar beets, fruit, cabbage, cattle, pigs,\n    poultry; net importer of food; fish catch of 202,000 metric tons in 1987;\n    East - accounts for about 10% of GDP (including fishing and forestry);\n    principal crops - wheat, rye, barley, potatoes, sugar beets, fruit;\n    livestock products include pork, beef, chicken, milk, hides and skins; net\n    importer of food; fish catch of 193,600 metric tons in 1987\nEconomic aid:\n    West - donor - ODA and OOF commitments (1970-89), $75.5 billion; East -\n    donor - $4.0 billion extended bilaterally to non-Communist less developed\n    countries (1956-89)\nCurrency:\n    deutsche mark (plural - deutsche marks); 1 deutsche mark (DM) = 100 pfennige\nExchange rates:\n    deutsche marks (DM) per US$1 - 1.6611 (March 1992), 1.6595 (1991), 1.6157\n    (1990), 1.8800 (1989), 1.7562 (1988), 1.7974 (1987)\nFiscal year:\n    calendar year\n\n:Germany Communications\n\nRailroads:\n    West - 31,443 km total; 27,421 km government owned, 1.435-meter standard\n    gauge (12,491 km double track, 11,501 km electrified); 4,022 km\n    nongovernment owned, including 3,598 km 1.435-meter standard gauge (214 km\n    electrified) and 424 km 1.000-meter gauge (186 km electrified); East -\n    14,025 km total; 13,750 km 1.435-meter standard gauge, 275 km 1.000-meter or\n    other narrow gauge; 3,830 (est.) km 1.435-meter standard gauge double-track;\n    3,475 km overhead electrified (1988)\nHighways:\n    West - 466,305 km total; 169,568 km primary, includes 6,435 km autobahn,\n    32,460 km national highways (Bundesstrassen), 65,425 km state highways\n    (Landesstrassen), 65,248 km county roads (Kreisstrassen); 296,737 km of\n    secondary communal roads (Gemeindestrassen); East - 124,604 km total; 47,203\n    km concrete, asphalt, stone block, of which 1,855 km are autobahn and\n    limited access roads, 11,326 are trunk roads, and 34,022 are regional roads;\n    77,401 municipal roads (1988)\nInland waterways:\n    West - 5,222 km, of which almost 70% are usable by craft of 1,000-metric ton\n    capacity or larger; major rivers include the Rhine and Elbe; Kiel Canal is\n    an important connection between the Baltic Sea and North Sea; East - 2,319\n    km (1988)\nPipelines:\n    crude oil 3,644 km; petroleum products 3,946 km; natural gas 97,564 km\n    (1988)\nPorts:\n    maritime - Bremerhaven, Brunsbuttel, Cuxhaven, Emden, Bremen, Hamburg, Kiel,\n    Lubeck, Wilhelmshaven, Rostock, Wismar, Stralsund, Sassnitz; inland - 31\n    major\nMerchant marine:\n    607 ships (1,000 GRT or over) totaling 5,210,060 GRT/6,626,333 DWT; includes\n    3 passenger, 5 short-sea passenger, 324 cargo, 10 refrigerated cargo, 135\n    container, 31 roll-on/roll-off cargo, 5 railcar carrier, 6 barge carrier, 11\n    oil tanker, 21 chemical tanker, 22 liquefied gas tanker, 5 combination\n    ore/oil, 14 combination bulk, 15 bulk; note - the German register includes\n    ships of the former East and West Germany; during 1991 the fleet underwent\n    major restructuring as surplus ships were sold off\nCivil air:\n    239 major transport aircraft\nAirports:\n    462 total, 455 usable; 242 with permanent-surface runways; 4 with runways\n    over 3,659 m; 40 with runways 2,440-3,659 m; 55 with runways 1,220-2,439 m\nTelecommunications:\n    West - highly developed, modern telecommunication service to all parts of\n    the country; fully adequate in all respects; 40,300,000 telephones;\n    intensively developed, highly redundant cable and radio relay networks, all\n    completely automatic; broadcast stations - 80 AM, 470 FM, 225 (6,000\n    repeaters) TV; 6 submarine coaxial cables; satellite earth stations - 12\n    Atlantic Ocean INTELSAT antennas, 2 Indian Ocean INTELSAT antennas,\n    EUTELSAT, and domestic systems; 2 HF radiocommunication centers;\n    tropospheric links East - badly needs modernization; 3,970,000 telephones;\n    broadcast stations - 23 AM, 17 FM, 21 TV (15 Soviet TV repeaters); 6,181,860\n    TVs; 6,700,000 radios; 1 satellite earth station operating in INTELSAT and\n    Intersputnik systems\n\n:Germany Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Federal Border Police\nManpower availability:\n    males 15-49, 20,300,359; 17,612,677 fit for military service; 414,330 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $39.5 billion, 2.5% of GDP (1991)\n\n:Ghana Geography\n\nTotal area:\n    238,540 km2\nLand area:\n    230,020 km2\nComparative area:\n    slightly smaller than Oregon\nLand boundaries:\n    2,093 km; Burkina 548 km, Ivory Coast 668 km, Togo 877 km\nCoastline:\n    539 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; warm and comparatively dry along southeast coast; hot and humid in\n    southwest; hot and dry in north\nTerrain:\n    mostly low plains with dissected plateau in south-central area\nNatural resources:\n    gold, timber, industrial diamonds, bauxite, manganese, fish, rubber\nLand use:\n    arable land 5%; permanent crops 7%; meadows and pastures 15%; forest and\n    woodland 37%; other 36%; includes irrigated NEGL%\nEnvironment:\n    recent drought in north severely affecting marginal agricultural activities;\n    deforestation; overgrazing; soil erosion; dry, northeasterly harmattan wind\n    (January to March)\nNote:\n    Lake Volta is the world's largest artificial lake\n\n:Ghana People\n\nPopulation:\n    16,185,351 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    - 1 migrant/1,000 population (1992)\nInfant mortality rate:\n    86 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    53 years male, 57 years female (1992)\nTotal fertility rate:\n    6.3 children born/woman (1992)\nNationality:\n    noun - Ghanaian(s); adjective - Ghanaian\nEthnic divisions:\n    black African 99.8% (major tribes - Akan 44%, Moshi-Dagomba 16%, Ewe 13%, Ga\n    8%), European and other 0.2%\nReligions:\n    indigenous beliefs 38%, Muslim 30%, Christian 24%, other 8%\nLanguages:\n    English (official); African languages include Akan, Moshi-Dagomba, Ewe, and\n    Ga\nLiteracy:\n    60% (male 70%, female 51%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,700,000; agriculture and fishing 54.7%, industry 18.7%, sales and clerical\n    15.2%, services, transportation, and communications 7.7%, professional 3.7%;\n    48% of population of working age (1983)\nOrganized labor:\n    467,000 (about 13% of labor force)\n\n:Ghana Government\n\nLong-form name:\n    Republic of Ghana\nType:\n    military\nCapital:\n    Accra\nAdministrative divisions:\n    10 regions; Ashanti, Brong-Ahafo, Central, Eastern, Greater Accra, Northern,\n    Upper East, Upper West, Volta, Western\nIndependence:\n    6 March 1957 (from UK, formerly Gold Coast)\nConstitution:\n    24 September 1979; suspended 31 December 1981\nLegal system:\n    based on English common law and customary law; has not accepted compulsory\n    ICJ jurisdiction\nNational holiday:\n    Independence Day, 6 March (1957)\nExecutive branch:\n    chairman of the Provisional National Defense Council (PNDC), PNDC, Cabinet\nLegislative branch:\n    unicameral National Assembly dissolved after 31 December 1981 coup, and\n    legislative powers were assumed by the Provisional National Defense Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    Chairman of the Provisional National Defense Council Flt. Lt. (Ret.) Jerry\n    John RAWLINGS (since 31 December 1981)\nPolitical parties and leaders:\n    none; political parties outlawed after 31 December 1981 coup\nSuffrage:\n    none\nElections:\n    no national elections; district assembly elections held in 1988-89\nMember of:\n    ACP, AfDB, C, CCC, ECA, ECOWAS, FAO, G-24, G-77, GATT, IAEA, IBRD, ICAO,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM (observer), ISO,\n    ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UNIFIL, UNIIMOG, UPU, WCL,\n    WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Dr. Joseph ABBEY; Chancery at 3512 International Drive NW,\n    Washington, DC 20008; telephone (202) 686-4520; there is a Ghanaian\n    Consulate General in New York\n  US:\n    Ambassador Raymond C. EWING; Embassy at Ring Road East, East of Danquah\n    Circle, Accra (mailing address is P. O. Box 194, Accra); telephone [233]\n    (21) 775348, 775349\nFlag:\n    three equal horizontal bands of red (top), yellow, and green with a large\n    black five-pointed star centered in the gold band; uses the popular\n    pan-African colors of Ethiopia; similar to the flag of Bolivia, which has a\n    coat of arms centered in the yellow band\n\n:Ghana Economy\n\nOverview:\n    Supported by substantial international assistance, Ghana has been\n    implementing a steady economic rebuilding program since 1983, including\n    moves toward privatization and relaxation of government controls. Heavily\n    dependent on cocoa, gold, and timber exports, economic growth so far has not\n    spread substantially to other areas of the economy. The costs of sending\n    peacekeeping forces to Liberia and preparing for the transition to a\n    democratic government have been boosting government expenditures and\n    undercutting structural adjustment reforms. Ghana opened a stock exchange in\n    1990. Much of the economic improvement in 1991 was caused by favorable\n    weather (following a severe drought the previous year) that led to plentiful\n    harvests in Ghana's agriculturally based economy.\nGDP:\n    $6.2 billion; per capita $400; real growth rate 5% (1991 est.)\nInflation rate (consumer prices):\n    10% (1991 est.)\nUnemployment rate:\n    10% (1991)\nBudget:\n    revenues $821 million; expenditures $782 million, including capital\n    expenditures of $151 million (1990 est.)\nExports:\n    $843 million (f.o.b., 1991 est.)\n  commodities:\n    cocoa 45%, gold, timber, tuna, bauxite, and aluminum\n  partners:\n    US 23%, UK, other EC\nImports:\n    $1.2 billion (c.i.f., 1991 est.)\n  commodities:\n    petroleum 16%, consumer goods, foods, intermediate goods, capital equipment\n  partners:\n    US 10%, UK, FRG, France, Japan, South Korea, GDR\nExternal debt:\n    $3.1 billion (1990 est.)\nIndustrial production:\n    growth rate 7.4% in manufacturing (1989); accounts for almost 1.5% of GDP\nElectricity:\n    1,180,000 kW capacity; 4,140 million kWh produced, 265 kWh per capita (1991)\nIndustries:\n    mining, lumbering, light manufacturing, fishing, aluminum, food processing\nAgriculture:\n    accounts for more than 50% of GDP (including fishing and forestry); the\n    major cash crop is cocoa; other principal crops - rice, coffee, cassava,\n    peanuts, corn, shea nuts, timber; normally self-sufficient in food\nIllicit drugs:\n    illicit producer of cannabis for the international drug trade\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $455 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.6 billion; OPEC\n    bilateral aid (1979-89), $78 million; Communist countries (1970-89), $106\n    million\nCurrency:\n    cedi (plural - cedis); 1 cedi (C) = 100 pesewas\nFiscal year:\n    calendar year\n\n:Ghana Communications\n\nRailroads:\n    953 km, all 1.067-meter gauge; 32 km double track; railroads undergoing\n    major renovation\nHighways:\n    32,250 km total; 6,084 km concrete or bituminous surface, 26,166 km gravel,\n    laterite, and improved earth surfaces\nInland waterways:\n    Volta, Ankobra, and Tano Rivers provide 168 km of perennial navigation for\n    launches and lighters; Lake Volta provides 1,125 km of arterial and feeder\n    waterways\nPipelines:\n    none\nPorts:\n    Tema, Takoradi\nMerchant marine:\n    5 cargo and 1 refrigerated cargo (1,000 GRT or over) totaling 53,435\n    GRT/69,167 DWT\nCivil air:\n    8 major transport aircraft\nAirports:\n    10 total, 9 usable; 5 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 7 with runways 1,220-2,439 m\nTelecommunications:\n    poor to fair system handled primarily by microwave links; 42,300 telephones;\n    broadcast stations - 4 AM, 1 FM, 4 (8 translators) TV; 1 Atlantic Ocean\n    INTELSAT earth station\n\n:Ghana Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Police Force, National Civil Defense\nManpower availability:\n    males 15-49, 3,661,558; 2,049,842 fit for military service; 170,742 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $30 million, less than 1% of GNP (1989 est.)\n\n:Gibraltar Geography\n\nTotal area:\n    6.5 km2\nLand area:\n    6.5 km2\nComparative area:\n    about 11 times the size of the Mall in Washington, DC\nLand boundaries:\n    1.2 km; Spain 1.2 km\nCoastline:\n    12 km\nMaritime claims:\n  Exclusive fishing zone:\n    3 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    source of occasional friction between Spain and the UK\nClimate:\n    Mediterranean with mild winters and warm summers\nTerrain:\n    a narrow coastal lowland borders The Rock\nNatural resources:\n    negligible\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    natural freshwater sources are meager, so large water catchments (concrete\n    or natural rock) collect rain water\nNote:\n    strategic location on Strait of Gibraltar that links the North Atlantic\n    Ocean and Mediterranean Sea\n\n:Gibraltar People\n\nPopulation:\n    29,651 (July 1992), growth rate 0.1% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    - 9 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 79 years female (1992)\nTotal fertility rate:\n    2.5 children born/woman (1992)\nNationality:\n    noun - Gibraltarian(s); adjective - Gibraltar\nEthnic divisions:\n    mostly Italian, English, Maltese, Portuguese, and Spanish descent\nReligions:\n    Roman Catholic 74%, Protestant 11% (Church of England 8%, other 3%), Moslem\n    8%, Jewish 2%, none or other 5% (1981)\nLanguages:\n    English and Spanish are primary languages; Italian, Portuguese, and Russian\n    also spoken; English used in the schools and for official purposes\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    about 14,800 (including non-Gibraltar laborers); UK military establishments\n    and civil government employ nearly 50% of the labor force\nOrganized labor:\n    over 6,000\n\n:Gibraltar Government\n\nLong-form name:\n    none\nDigraph:\n    f Assembly *** last held on 24 March 1988 (next to be held March 1992);\n    results - percent of vote by party NA; seats - (18 total, 15 elected) SL 8,\n    GCL/AACR 7\nType:\n    dependent territory of the UK\nCapital:\n    Gibraltar\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    30 May 1969\nLegal system:\n    English law\nNational holiday:\n    Commonwealth Day (second Monday of March)\nExecutive branch:\n    British monarch, governor, chief minister, Gibraltar Council, Council of\n    Ministers (cabinet)\nLegislative branch:\n    unicameral House of Assembly\nJudicial branch:\n    Supreme Court, Court of Appeal\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor and\n    Commander in Chief Adm. Sir Derek REFFELL (since NA 1989)\n  Head of Government:\n    Chief Minister Joe BOSSANO (since 25 March 1988)\nPolitical parties and leaders:\n    Socialist Labor Party (SL), Joe BOSSANO; Gibraltar Labor Party/Association\n    for the Advancement of Civil Rights (GCL/AACR), leader NA; Gibraltar Social\n    Democrats, Peter CARUANA; Gibraltar National Party, Joe GARCIA\nSuffrage:\n    universal at age 18, plus other UK subjects resident six months or more\nElections:\n  House of Assembly:\n    last held on 24 March 1988 (next to be held March 1992); results - percent\n    of vote by party NA; seats - (18 total, 15 elected) SL 8, GCL/AACR 7\nOther political or pressure groups:\n    Housewives Association, Chamber of Commerce, Gibraltar Representatives\n    Organization\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    two horizontal bands of white (top, double width) and red with a\n    three-towered red castle in the center of the white band; hanging from the\n    castle gate is a gold key centered in the red band\n\n:Gibraltar Economy\n\nOverview:\n    The economy depends heavily on British defense expenditures, revenue from\n    tourists, fees for services to shipping, and revenues from banking and\n    finance activities. Because more than 70% of the economy is in the public\n    sector, changes in government spending have a major impact on the level of\n    employment. Construction workers are particularly affected when government\n    expenditures are cut.\nGNP:\n    exchange rate conversion - $182 million, per capita $4,600; real growth rate\n    5% (FY87)\nInflation rate (consumer prices):\n    3.6% (1988)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $136 million; expenditures $139 million, including capital\n    expenditures of NA (FY88)\nExports:\n    $82 million (f.o.b., 1988)\n  commodities:\n    (principally reexports) petroleum 51%, manufactured goods 41%, other 8%\n  partners:\n    UK, Morocco, Portugal, Netherlands, Spain, US, FRG\nImports:\n    $258 million (c.i.f., 1988)\n  commodities:\n    fuels, manufactured goods, and foodstuffs\n  partners:\n    UK, Spain, Japan, Netherlands\nExternal debt:\n    $318 million (1987)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    47,000 kW capacity; 200 million kWh produced, 6,670 kWh per capita (1991)\nIndustries:\n    tourism, banking and finance, construction, commerce; support to large UK\n    naval and air bases; transit trade and supply depot in the port; light\n    manufacturing of tobacco, roasted coffee, ice, mineral waters, candy, beer,\n    and canned fish\nAgriculture:\n    none\nEconomic aid:\n    US commitments, including Ex-Im (FY70-88), $0.8 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $188 million\nCurrency:\n    Gibraltar pound (plural - pounds); 1 Gibraltar pound (#G) = 100 pence\nExchange rates:\n    Gibraltar pounds (#G) per US$1 - 0.5799 (March 1992), 0.5652 (1991), 0.5603\n    (1990), 0.6099 (1989), 0.5614 (1988), 0.6102 (1987); note - the Gibraltar\n    pound is at par with the British pound\nFiscal year:\n    1 July - 30 June\n\n:Gibraltar Communications\n\nRailroads:\n    1.000-meter-gauge system in dockyard area only\nHighways:\n    50 km, mostly good bitumen and concrete\nPipelines:\n    none\nPorts:\n    Gibraltar\nMerchant marine:\n    21 ships (1,000 GRT or over) totaling 795,356 GRT/1,490,737 DWT; includes 5\n    cargo, 2 refrigerated cargo, 1 container, 6 petroleum tanker, 1 chemical\n    tanker, 6 bulk; note - a flag of convenience registry\nCivil air:\n    1 major transport aircraft\nAirports:\n    1 with permanent-surface runways 1,220-2,439 m\nTelecommunications:\n    adequate, automatic domestic system and adequate international\n    radiocommunication and microwave facilities; 9,400 telephones; broadcast\n    stations - 1 AM, 6 FM, 4 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Gibraltar Defense Forces\n\nBranches:\n    British Army, Royal Navy, Royal Air Force\nNote:\n    defense is the responsibility of the UK\n\n:Glorioso Islands Geography\n\nTotal area:\n    5 km2\nLand area:\n    5 km2; includes Ile Glorieuse, Ile du Lys, Verte Rocks, Wreck Rock, and\n    South Rock\nComparative area:\n    about 8.5 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    35.2 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Madagascar\nClimate:\n    tropical\nTerrain:\n    undetermined\nNatural resources:\n    guano, coconuts\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other - lush vegetation and coconut palms 100%\nEnvironment:\n    subject to periodic cyclones\nNote:\n    located in the Indian Ocean just north of the Mozambique Channel between\n    Africa and Madagascar\n\n:Glorioso Islands People\n\nPopulation:\n    uninhabited\n\n:Glorioso Islands Government\n\nLong-form name:\n    none\nType:\n    French possession administered by Commissioner of the Republic Jacques\n    DEWATRE, resident in Reunion\nCapital:\n    none; administered by France from Reunion\n\n:Glorioso Islands Economy\n\nOverview:\n    no economic activity\n\n:Glorioso Islands Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with runways 1,220-2,439 m\n\n:Glorioso Islands Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Greece Geography\n\nTotal area:\n    131,940 km2\nLand area:\n    130,800 km2\nComparative area:\n    slightly smaller than Alabama\nLand boundaries:\n    1,210 km; Albania 282 km, Bulgaria 494 km, Turkey 206 km, Macedonia 228 km\nCoastline:\n    13,676 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    6 nm, but Greece has threatened to claim 12 nm\nDisputes:\n    air, continental shelf, and territorial water disputes with Turkey in Aegean\n    Sea; Cyprus question\nClimate:\n    temperate; mild, wet winters; hot, dry summers\nTerrain:\n    mostly mountains with ranges extending into sea as peninsulas or chains of\n    islands\nNatural resources:\n    bauxite, lignite, magnesite, crude oil, marble\nLand use:\n    arable land 23%; permanent crops 8%; meadows and pastures 40%; forest and\n    woodland 20%; other 9%; includes irrigated 7%\nEnvironment:\n    subject to severe earthquakes; air pollution; archipelago of 2,000 islands\nNote:\n    strategic location dominating the Aegean Sea and southern approach to\n    Turkish Straits\n\n:Greece People\n\nPopulation:\n    10,064,250 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    11 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 81 years female (1992)\nTotal fertility rate:\n    1.5 children born/woman (1992)\nNationality:\n    noun - Greek(s); adjective - Greek\nEthnic divisions:\n    Greek 98%, other 2%; note - the Greek Government states there are no ethnic\n    divisions in Greece\nReligions:\n    Greek Orthodox 98%, Muslim 1.3%, other 0.7%\nLanguages:\n    Greek (official); English and French widely understood\nLiteracy:\n    93% (male 98%, female 89%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,657,000; services 44%, agriculture 27%, manufacturing and mining 20%,\n    construction 6% (1988)\nOrganized labor:\n    10-15% of total labor force, 20-25% of urban labor force\n\n:Greece Government\n\nLong-form name:\n    Hellenic Republic\nType:\n    presidential parliamentary government; monarchy rejected by referendum 8\n    December 1974\nCapital:\n    Athens\nAdministrative divisions:\n    52 departments (nomoi, singular - nomos); Aitolia kai Akarnania, Akhaia,\n    Argolis, Arkadhia, Arta, Attiki, Dhodhekanisos, Dhrama, Evritania, Evros,\n    Evvoia, Florina, Fokis, Fthiotis, Grevena, Ilia, Imathia, Ioannina,\n    Iraklion, Kardhitsa, Kastoria, Kavala, Kefallinia, Kerkira, Khalkidhiki,\n    Khania, Khios, Kikladhes, Kilkis, Korinthia, Kozani, Lakonia, Larisa,\n    Lasithi, Lesvos, Levkas, Magnisia, Messinia, Pella, Pieria, Piraievs,\n    Preveza, Rethimni, Rodhopi, Samos, Serrai, Thesprotia, Thessaloniki,\n    Trikala, Voiotia, Xanthi, Zakinthos, autonomous region: Agios Oros (Mt.\n    Athos)\nIndependence:\n    1829 (from the Ottoman Empire)\nConstitution:\n    11 June 1975\nLegal system:\n    based on codified Roman law; judiciary divided into civil, criminal, and\n    administrative courts\nNational holiday:\n    Independence Day (proclamation of the war of independence), 25 March (1821)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral Greek Chamber of Deputies (Vouli ton Ellinon)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Konstantinos KARAMANLIS (since 5 May 1990); -\n  Head of Government:\n    Prime Minister Konstantinos MITSOTAKIS (since 11 April 1990)\nPolitical parties and leaders:\n    New Democracy (ND; conservative), Konstantinos MITSOTAKIS; Panhellenic\n    Socialist Movement (PASOK), Andreas PAPANDREOU; Left Alliance, Maria\n    DAMANAKI; Democratic Renewal (DEANA), Konstantinos STEFANOPOULOS; Communist\n    Party (KKE), Aleka PAPARIGA; Ecologist-Alternative List, leader rotates\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Chamber of Deputies:\n    last held 8 April 1990 (next to be held April 1994); results - ND 46.89%,\n    PASOK 38.62%, Left Alliance 10.27%, PASOK/Left Alliance 1.02%,\n    Ecologist-Alternative List 0.77%, DEANA 0.67%, Muslim independents 0.5%;\n    seats - (300 total) ND 150, PASOK 123, Left Alliance 19, PASOK-Left Alliance\n    4, Muslim independents 2, DEANA 1, Ecologist-Alternative List 1; note - one\n    DEANA deputy joined ND in July, giving ND 151 seats; in November, a special\n    electoral court ruled in favor of ND on a contested seat, at PASOK'S\n    expense; PASOK and the Left Alliance divided their four joint mandates\n    evenly, and the seven KKE deputies split off from the Left Alliance; new\n    configuration: ND 152, PASOK 124, Left Alliance 14, KKE 7, others unchanged\n  President:\n    last held 4 May 1990 (next to be held May 1995); results - Konstantinos\n    KARAMANLIS was elected by Parliament\n\n:Greece Government\n\nCommunists:\n    an estimated 60,000 members and sympathizers\nMember of:\n    AG, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, EC, ECE, EIB, FAO, G-6, GATT,\n    IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS, NACC, NAM (guest), NATO, NEA,\n    NSG, OAS (observer), OECD, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WHO,\n    WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Christos ZACHARAKIS; Chancery at 2221 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 939-5800; there are Greek Consulates\n    General in Atlanta, Boston, Chicago, Los Angeles, New York, and San\n    Francisco, and a Consulate in New Orleans\n  US:\n    Ambassador Michael G. SOTIRHOS; Embassy at 91 Vasilissis Sophias Boulevard,\n    10160 Athens (mailing address is APO AE 09842; telephone [30] (1) 721-2951\n    or 721-8401; there is a US Consulate General in Thessaloniki\nFlag:\n    nine equal horizontal stripes of blue alternating with white; there is a\n    blue square in the upper hoist-side corner bearing a white cross; the cross\n    symbolizes Greek Orthodoxy, the established religion of the country\n\n:Greece Economy\n\nOverview:\n    Greece has a mixed capitalistic economy with the basic entrepreneurial\n    system overlaid in 1981-89 by a socialist government that enlarged the\n    public sector from 55% of GDP in 1981 to about 70% when Prime Minister\n    Mitsotakis took office. Tourism continues as a major industry, and\n    agriculture - although handicapped by geographic limitations and fragmented,\n    small farms - is self-sufficient except for meat, dairy products, and animal\n    feedstuffs. The Mitsotakis government inherited several severe economic\n    problems from the preceding socialist and caretaker administrations, which\n    had neglected the runaway budget deficit, a ballooning current account\n    deficit, and accelerating inflation. In early 1991, the government secured a\n    $2.5 billion assistance package from the EC under the strictest terms yet\n    imposed on a member country, as the EC finally ran out of patience with\n    Greece's failure to put its financial affairs in order. Over the next three\n    years, Athens must bring inflation down to 7%, cut the current account\n    deficit and central government borrowing as a percentage of GDP, slash\n    public-sector employment by 10%, curb public-sector pay raises, and broaden\n    the tax base.\nGDP:\n    purchasing power equivalent - $77.6 billion, per capita $7,730; real growth\n    rate 1.0% (1991)\nInflation rate (consumer prices):\n    17.8% (1991)\nUnemployment rate:\n    8.6% (1991)\nBudget:\n    revenues $24.0 billion; expenditures $33.0 billion, including capital\n    expenditures of $3.3 billion (1991)\nExports:\n    $6.4 billion (f.o.b., 1990)\n  commodities:\n    manufactured goods 48%, food and beverages 22%, fuels and lubricants 6%\n  partners:\n    Germany 22%, Italy 17%, France 10%, UK 7%, US 6%\nImports:\n    $18.7 billion (c.i.f., 1990)\n  commodities:\n    consumer goods 33%, machinery 17%, foodstuffs 12%, fuels and lubricants 8%\n  partners:\n    Germany 21%, Italy 15%, Netherlands 11%, France 8%, UK 5%\nExternal debt:\n    $25.5 billion (1990)\nIndustrial production:\n    growth rate - 2.4% (1990); accounts for 22% of GDP\nElectricity:\n    10,500,000 kW capacity; 36,420 million kWh produced, 3,630 kWh per capita\n    (1991)\nIndustries:\n    food and tobacco processing, textiles, chemicals, metal products, tourism,\n    mining, petroleum\nAgriculture:\n    including fishing and forestry, accounts for 17% of GDP and 27% of the labor\n    force; principal products - wheat, corn, barley, sugar beets, olives,\n    tomatoes, wine, tobacco, potatoes; self-sufficient in food except meat,\n    dairy products, and animal feedstuffs; fish catch of 115,000 metric tons in\n    1988\nEconomic aid:\n    US commitments, including Ex-Im (FY70-81), $525 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,390 million\n\n:Greece Economy\n\nCurrency:\n    drachma (plural - drachmas); 1 drachma (Dr) = 100 lepta\nExchange rates:\n    drachma (Dr) per US$1 - 182.33 (January 1992), 182.27 (1991), 158.51 (1990),\n    162.42 (1989), 141.86 (1988), 135.43 (1987)\nFiscal year:\n    calendar year\n\n:Greece Communications\n\nRailroads:\n    2,479 km total; 1,565 km 1.435-meter standard gauge, of which 36 km\n    electrified and 100 km double track, 892 km 1.000-meter gauge; 22 km\n    0.750-meter narrow gauge; all government owned\nHighways:\n    38,938 km total; 16,090 km paved, 13,676 km crushed stone and gravel, 5,632\n    km improved earth, 3,540 km unimproved earth\nInland waterways:\n    80 km; system consists of three coastal canals and three unconnected rivers\nPipelines:\n    crude oil 26 km; petroleum products 547 km\nPorts:\n    Piraievs, Thessaloniki\nMerchant marine:\n    977 ships (1,000 GRT or over) totaling 23,450,910 GRT/42,934,863 DWT;\n    includes 15 passenger, 66 short-sea passenger, 2 passenger-cargo, 136 cargo,\n    24 container, 15 roll-on/roll-off cargo, 18 refrigerated cargo, 1 vehicle\n    carrier, 196 petroleum tanker, 18 chemical tanker, 9 liquefied gas, 37\n    combination ore/oil, 3 specialized tanker, 417 bulk, 19 combination bulk, 1\n    livestock carrier; note - ethnic Greeks also own large numbers of ships\n    under the registry of Liberia, Panama, Cyprus, Malta, and The Bahamas\nCivil air:\n    39 major transport aircraft\nAirports:\n    77 total, 77 usable; 77 with permanent-surface runways; none with runways\n    over 3,659 m; 19 with runways 2,440-3,659 m; 23 with runways 1,220-2,439 m\nTelecommunications:\n    adequate, modern networks reach all areas; 4,080,000 telephones; microwave\n    carries most traffic; extensive open-wire network; submarine cables to\n    off-shore islands; broadcast stations - 29 AM, 17 (20 repeaters) FM, 361 TV;\n    tropospheric links, 8 submarine cables; 1 satellite earth station operating\n    in INTELSAT (1 Atlantic Ocean and 1 Indian Ocean antenna), and EUTELSAT\n    systems\n\n:Greece Defense Forces\n\nBranches:\n    Hellenic Army, Hellenic Navy, Hellenic Air Force, Police\nManpower availability:\n    males 15-49, 2,453,756; 1,883,152 fit for military service; 73,913 reach\n    military age (21) annually\nDefense expenditures:\n    exchange rate conversion - $3.8 billion, 5.6% of GDP (1991)\n\n:Greenland Geography\n\nTotal area:\n    2,175,600 km2\nLand area:\n    341,700 km2 (ice free)\nComparative area:\n    slightly more than three times the size of Texas\nLand boundaries:\n    none\nCoastline:\n    44,087 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    Denmark has challenged Norway's maritime claims between Greenland and Jan\n    Mayen\nClimate:\n    arctic to subarctic; cool summers, cold winters\nTerrain:\n    flat to gradually sloping icecap covers all but a narrow, mountainous,\n    barren, rocky coast\nNatural resources:\n    zinc, lead, iron ore, coal, molybdenum, cryolite, uranium, fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 1%; forest and\n    woodland NEGL%; other 99%\nEnvironment:\n    sparse population confined to small settlements along coast; continuous\n    permafrost over northern two-thirds of the island\nNote:\n    dominates North Atlantic Ocean between North America and Europe\n\n:Greenland People\n\nPopulation:\n    57,407 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    27 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 69 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Greenlander(s); adjective - Greenlandic\nEthnic divisions:\n    Greenlander (Eskimos and Greenland-born Caucasians) 86%, Danish 14%\nReligions:\n    Evangelical Lutheran\nLanguages:\n    Eskimo dialects, Danish\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    22,800; largely engaged in fishing, hunting, sheep breeding\nOrganized labor:\n    NA\n\n:Greenland Government\n\nLong-form name:\n    none\nType:\n    part of the Danish realm; self-governing overseas administrative division\nCapital:\n    Nuuk (Godthab)\nAdministrative divisions:\n    3 municipalities (kommuner, - singular - kommun); - Nordgronland,\n    Ostgrnland, Vestgronland\nIndependence:\n    part of the Danish realm; self-governing overseas administrative division\nConstitution:\n    Danish\nLegal system:\n    Danish\nNational holiday:\n    Birthday of the Queen, 16 April (1940)\nExecutive branch:\n    Danish monarch, high commissioner, home rule chairman, prime minister,\n    Cabinet (Landsstyre)\nLegislative branch:\n    unicameral Parliament (Landsting)\nJudicial branch:\n    High Court (Landsret)\nLeaders:\n  Chief of State:\n    Queen MARGRETHE II (since 14 January 1972), represented by High Commissioner\n    Bent KLINTE (since NA)\n  Head of Government:\n    Home Rule Chairman Lars Emil JOHANSEN (since 15 March 1991)\nPolitical parties and leaders:\n    two-party ruling coalition - Siumut (a moderate socialist party that\n    advocates more distinct Greenlandic identity and greater autonomy from\n    Denmark), Lars Emil JOHANSEN, chairman; - Inuit - Ataqatigiit - (IA; - a -\n    Marxist-Leninist party that favors complete independence from Denmark rather\n    than home rule), leader NA; Atassut Party (a more conservative party that\n    favors continuing close relations with Denmark), leader NA; Polar Party\n    (conservative-Greenland nationalist), leader NA; Center Party (a new\n    nonsocialist protest party), leader NA\nSuffrage:\n    universal at age 18\nElections:\n  Danish Folketing:\n    last held on 12 December 1990 (next to be held by December 1994); Greenland\n    elects two representatives to the Folketing; results - percent of vote by\n    party NA; seats - (2 total) Siumut 1, Atassut 1\n  Landsting:\n    last held on 5 March 1991 (next to be held 5 March 1995); results - percent\n    of vote by party NA; seats - (27 total) Siumut 11, Atassut Party 8, Inuit\n    Ataqatigiit 5, Center Party 2, Polar Party 1\nMember of:\n    NC\nDiplomatic representation:\n    none (self-governing overseas administrative division of Denmark)\nFlag:\n    two equal horizontal bands of white (top) and red with a large disk slightly\n    to the hoist side of center - the top half of the disk is red, the bottom\n    half is white\n\n:Greenland Economy\n\nOverview:\n    Over the past 25 years, the economy has changed from one based on\n    subsistence whaling, hunting, and fishing to one dependent on foreign trade.\n    Fishing is still the most important industry, accounting for over 75% of\n    exports and about 25% of the population's income. Maintenance of a social\n    welfare system similar to Denmark's has given the public sector a dominant\n    role in the economy. In 1990, the economy became critically dependent on\n    shrimp exports and on an annual subsidy (now about $500 million) from the\n    Danish Government because cod exports dropped off and commercial mineral\n    production stopped. As of 1992, the government also has taken control of the\n    health sector from Denmark. The new Home Rule government installed in March\n    1991 has decided to end much of the central control of the economy and to\n    open it wider to competitive forces.\nGNP:\n    purchasing power equivalent - $500 million, per capita $9,000; real growth\n    rate 5% (1988)\nInflation rate (consumer prices):\n    l.6% (1991)\nUnemployment rate:\n    9% (1990 est.)\nBudget:\n    revenues $381 million; expenditures $381 million, including capital\n    expenditures of $36 million (1989)\nExports:\n    $435 million (f.o.b., 1990 est.)\n  commodities:\n    fish and fish products 83%, metallic ores and concentrates 13%\n  partners:\n    Denmark 79%, Benelux 9%, Germany 5%\nImports:\n    $420 million (c.i.f., 1990 est.)\n  commodities:\n    manufactured goods 28%, machinery and transport equipment 24%, food and live\n    animals 12.4%, petroleum and petroleum products 12%\n  partners:\n    Denmark 65%, Norway 8.8%, US 4.6%, Germany 3.8%, Japan 3.8%, Sweden 2.4%\nExternal debt:\n    $480 million (1990 est.)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    84,000 kW capacity; 176 million kWh produced, 3,180 kWh per capita (1991)\nIndustries:\n    fish processing (mainly shrimp), potential for platinum and gold mining,\n    handicrafts, shipyards\nAgriculture:\n    sector dominated by fishing and sheep raising; crops limited to forage and\n    small garden vegetables; 1988 fish catch of 133,500 metric tons\nEconomic aid:\n    none\nCurrency:\n    Danish krone (plural - kroner); 1 Danish krone (DKr) = 100 re\nExchange rates:\n    Danish kroner (DKr) per US$1 - 6.447 (March 1992), 6.396 (1991), 6.189\n    (1990), 7.310 (1989), 6.732 (1988), 6.840 (1987)\nFiscal year:\n    calendar year\n\n:Greenland Communications\n\nHighways:\n    80 km\nPorts:\n    Kangerluarsoruseq (Faeringehavn), Paamiut (Frederikshaab), Nuuk (Godthaab),\n    Sisimiut (Holsteinsborg), Julianehaab, Maarmorilik, North Star Bay\nMerchant marine:\n    1 refrigerated cargo (1,000 GRT or over) totaling 1,021 GRT/1,778 DWT; note\n    - operates under the registry of Denmark\nCivil air:\n    2 major transport aircraft\nAirports:\n    11 total, 8 usable; 5 with permanent-surface runways; none with runways over\n    3,659 m; 2 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    adequate domestic and international service provided by cables and\n    microwave; 17,900 telephones; broadcast stations - 5 AM, 7 (35 repeaters)\n    FM, 4 (9 repeaters) TV; 2 coaxial submarine cables; 1 Atlantic Ocean\n    INTELSAT earth station\n\n:Greenland Defense Forces\n\nNote:\n    defense is responsibility of Denmark\n\n:Grenada Geography\n\nTotal area:\n    340 km2\nLand area:\n    340 km2\nComparative area:\n    slightly less than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    121 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; tempered by northeast trade winds\nTerrain:\n    volcanic in origin with central mountains\nNatural resources:\n    timber, tropical fruit, deepwater harbors\nLand use:\n    arable land 15%; permanent crops 26%; meadows and pastures 3%; forest and\n    woodland 9%; other 47%\nEnvironment:\n    lies on edge of hurricane belt; hurricane season lasts from June to November\nNote:\n    islands of the Grenadines group are divided politically with Saint Vincent\n    and the Grenadines\n\n:Grenada People\n\nPopulation:\n    83,556 (July 1992), growth rate - 0.3% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    - 30 migrants/1,000 population (1992)\nInfant mortality rate:\n    28 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 74 years female (1992)\nTotal fertility rate:\n    4.6 children born/woman (1992)\nNationality:\n    noun - Grenadian(s); adjective - Grenadian\nEthnic divisions:\n    mainly of black African descent\nReligions:\n    largely Roman Catholic; Anglican; other Protestant sects\nLanguages:\n    English (official); some French patois\nLiteracy:\n    98% (male 98%, female 98%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    36,000; services 31%, agriculture 24%, construction 8%, manufacturing 5%,\n    other 32% (1985)\nOrganized labor:\n    20% of labor force\n\n:Grenada Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Saint George's\nAdministrative divisions:\n    6 parishes and 1 dependency*; Carriacou and Little Martinique*, Saint\n    Andrew, Saint David, Saint George, Saint John, Saint Mark, Saint Patrick\nIndependence:\n    7 February 1974 (from UK)\nConstitution:\n    19 December 1973\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 7 February (1974)\nExecutive branch:\n    British monarch, governor general, prime minister, Ministers of Government\n    (cabinet)\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Sir Paul SCOON (since 30 September 1978)\n  Head of Government:\n    Prime Minister Nicholas BRATHWAITE (since 13 March 1990)\nPolitical parties and leaders:\n    National Democratic Congress (NDC), Nicholas BRATHWAITE; Grenada United\n    Labor Party (GULP), Sir Eric GAIRY; The National Party (TNP), Ben JONES; New\n    National Party (NNP), Keith MITCHELL; Maurice Bishop Patriotic Movement\n    (MBPM), Terrence MARRYSHOW; New Jewel Movement (NJM), Bernard COARD\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held on 13 March 1990 (next to be held by NA March 1996); results -\n    percent of vote by party NA; seats - (15 total) NDC 8, GULP 3, TNP 2, NNP 2\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, IBRD, ICAO, ICFTU, IDA, IFAD, IFC,\n    ILO, IMF, INTERPOL, IOC, ITU, LAES, LORCS, NAM, OAS, OECS, OPANAL, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WTO\nDiplomatic representation:\n    Ambassador Denneth MODESTE; Chancery at 1701 New Hampshire Avenue NW,\n    Washington, DC 20009; telephone (202) 265-2561; there is a Grenadian\n    Consulate General in New York\n  US:\n    Charge d'Affaires Annette VELER; Embassy at Ross Point Inn, Saint George's\n    (mailing address is P. O. Box 54, Saint George's); telephone (809) 444-1173\n    through 1178\n\n:Grenada Government\n\nFlag:\n    a rectangle divided diagonally into yellow triangles (top and bottom) and\n    green triangles (hoist side and outer side) with a red border around the\n    flag; there are seven yellow five-pointed stars with three centered in the\n    top red border, three centered in the bottom red border, and one on a red\n    disk superimposed at the center of the flag; there is also a symbolic nutmeg\n    pod on the hoist-side triangle (Grenada is the world's second-largest\n    producer of nutmeg, after Indonesia); the seven stars represent the seven\n    administrative divisions\n\n:Grenada Economy\n\nOverview:\n    The economy is essentially agricultural and centers on the traditional\n    production of spices and tropical plants. Agriculture accounts for about 16%\n    of GDP and 80% of exports and employs 24% of the labor force. Tourism is the\n    leading foreign exchange earner, followed by agricultural exports.\n    Manufacturing remains relatively undeveloped, but is expected to grow, given\n    a more favorable private investment climate since 1983. Despite an\n    impressive average annual growth rate for the economy of 5.5% during the\n    period 1986-91, unemployment remains high at about 25%.\nGDP:\n    purchasing power equivalent - $238 million, per capita $2,800 (1989); real\n    growth rate 5.2% (1990 est.)\nInflation rate (consumer prices):\n    7.0% (1990)\nUnemployment rate:\n    25% (1990 est.)\nBudget:\n    revenues $54.9 million; expenditures $77.6 million, including capital\n    expenditures of $16.6 million (1990 est.)\nExports:\n    $26.0 million (f.o.b., 1990 est.)\n  commodities:\n    nutmeg 36%, cocoa beans 9%, bananas 14%, mace 8%, textiles 5%\n  partners:\n    US 12%, UK, FRG, Netherlands, Trinidad and Tobago (1989)\nImports:\n    $105.0 million (f.o.b., 1989 est.)\n  commodities:\n    food 25%, manufactured goods 22%, machinery 20%, chemicals 10%, fuel 6%\n    (1989)\n  partners:\n    US 29%, UK, Trinidad and Tobago, Japan, Canada (1989)\nExternal debt:\n    $90 million (1990 est.)\nIndustrial production:\n    growth rate 5.8% (1989 est.); accounts for 6% of GDP\nElectricity:\n    12,500 kW capacity; 26 million kWh produced, 310 kWh per capita (1991)\nIndustries:\n    food and beverage, textile, light assembly operations, tourism, construction\nAgriculture:\n    accounts for 16% of GDP and 80% of exports; bananas, cocoa, nutmeg, and mace\n    account for two-thirds of total crop production; world's second-largest\n    producer and fourth-largest exporter of nutmeg and mace; small-size farms\n    predominate, growing a variety of citrus fruits, avocados, root crops,\n    sugarcane, corn, and vegetables\nEconomic aid:\n    US commitments, including Ex-Im (FY84-89), $60 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $70 million;\n    Communist countries (1970-89), $32 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    calendar year\n\n:Grenada Communications\n\nHighways:\n    1,000 km total; 600 km paved, 300 km otherwise improved; 100 km unimproved\nPorts:\n    Saint George's\nCivil air:\n    no major transport aircraft\nAirports:\n    3 total, 3 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    automatic, islandwide telephone system with 5,650 telephones; new SHF radio\n    links to Trinidad and Tobago and Saint Vincent; VHF and UHF radio links to\n    Trinidad and Carriacou; broadcast stations - 1 AM, no FM, 1 TV\n\n:Grenada Defense Forces\n\nBranches:\n    Royal Grenada Police Force, Coast Guard\nManpower availability:\n    NA\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Guadeloupe Geography\n\nTotal area:\n    1,780 km2\nLand area:\n    1,760 km2\nComparative area:\n    10 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    306 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    subtropical tempered by trade winds; relatively high humidity\nTerrain:\n    Basse-Terre is volcanic in origin with interior mountains; Grand-Terre is\n    low limestone formation\nNatural resources:\n    cultivable land, beaches, and climate that foster tourism\nLand use:\n    arable land 18%; permanent crops 5%; meadows and pastures 13%; forest and\n    woodland 40%; other 24%; includes irrigated 1%\nEnvironment:\n    subject to hurricanes (June to October); La Soufriere is an active volcano\nNote:\n    located 500 km southeast of Puerto Rico in the Caribbean Sea\n\n:Guadeloupe People\n\nPopulation:\n    409,132 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    8 migrants/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 80 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman (1992)\nNationality:\n    noun - Guadeloupian(s); adjective - Guadeloupe\nEthnic divisions:\n    black or mulatto 90%; white 5%; East Indian, Lebanese, Chinese less than 5%\nReligions:\n    Roman Catholic 95%, Hindu and pagan African 5%\nLanguages:\n    French, creole patois\nLiteracy:\n    90% (male 90%, female 91%) age 15 and over can read and write (1982)\nLabor force:\n    120,000; 53.0% services, government, and commerce, 25.8% industry, 21.2%\n    agriculture\nOrganized labor:\n    11% of labor force\n\n:Guadeloupe Government\n\nLong-form name:\n    Department of Guadeloupe\nType:\n    overseas department of France\nCapital:\n    Basse-Terre\nAdministrative divisions:\n    none (overseas department of France)\nIndependence:\n    none (overseas department of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French legal system\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    government commissioner\nLegislative branch:\n    unicameral General Council and unicameral Regional Council\nJudicial branch:\n    Court of Appeal (Cour d'Appel) with jurisdiction over Guadeloupe, French\n    Guiana, and Martinique\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Commissioner of the Republic Jean-Paul PROUST (since November 1989)\nPolitical parties and leaders:\n    Rally for the Republic (RPR), Marlene CAPTANT; Communist Party of Guadeloupe\n    (PCG), Christian Medard CELESTE; Socialist Party (PSG), Dominique LARIFLA;\n    Popular Union for the Liberation of Guadeloupe (UPLG); Independent\n    Republicans; Union for French Democracy (UDF); Union for a New Majority\n    (UNM)\nSuffrage:\n    universal at age 18\nElections:\n  French National Assembly:\n    last held on 5 and 12 June 1988 (next to be held June 1994); Guadeloupe\n    elects four representatives; results - percent of vote by party NA; seats -\n    (4 total) PS 2 seats, RPR 1 seat, PCG 1 seat\n  French Senate:\n    last held on 5 and 12 June 1988 (next to be held June 1994); Guadeloupe\n    elects two representatives; results - percent of vote by party NA; seats -\n    (2 total) PCG 1, PS 1\n  General Council:\n    last held NA 1986 (next to be held by NA 1992); results - percent of vote by\n    party NA; seats - (42 total) number of seats by party NA\n  Regional Council:\n    last held on 16 March 1992 (next to be held by 16 March 1998); results - RPR\n    33.1%, PSG 28.7%, PCG 23.8%, UDF 10.7%, other 3.7%; seats - (41 total) RPR\n    15, PSG 12, PCG 10, UDF 4\nCommunists:\n    3,000 est.\nOther political or pressure groups:\n    Popular Union for the Liberation of Guadeloupe (UPLG); Popular Movement for\n    Independent Guadeloupe (MPGI); General Union of Guadeloupe Workers (UGTG);\n    General Federation of Guadeloupe Workers (CGT-G); Christian Movement for the\n    Liberation of Guadeloupe (KLPG)\n\n:Guadeloupe Government\n\nMember of:\n    FZ, WCL\nDiplomatic representation:\n    as an overseas department of France, the interests of Guadeloupe are\n    represented in the US by France\nFlag:\n    the flag of France is used\n\n:Guadeloupe Economy\n\nOverview:\n    The economy depends on agriculture, tourism, light industry, and services.\n    It is also dependent upon France for large subsidies and imports. Tourism is\n    a key industry, with most tourists from the US. In addition, an increasingly\n    large number of cruise ships visit the islands. The traditionally important\n    sugarcane crop is slowly being replaced by other crops, such as bananas\n    (which now supply about 50% of export earnings), eggplant, and flowers.\n    Other vegetables and root crops are cultivated for local consumption,\n    although Guadeloupe is still dependent on imported food, which comes mainly\n    from France. Light industry consists mostly of sugar and rum production.\n    Most manufactured goods and fuel are imported. Unemployment is especially\n    high among the young.\nGDP:\n    exchange rate conversion - $1.1 billion, per capita $3,300; real growth rate\n    NA% (1987)\nInflation rate (consumer prices):\n    2.3% (1988)\nUnemployment rate:\n    38% (1987)\nBudget:\n    revenues $254 million; expenditures $254 million, including capital\n    expenditures of NA (1989)\nExports:\n    $153 million (f.o.b., 1988)\n  commodities:\n    bananas, sugar, rum\n  partners:\n    France 68%, Martinique 22% (1987)\nImports:\n    $1.2 billion (c.i.f., 1988)\n  commodities:\n    vehicles, foodstuffs, clothing and other consumer goods, construction\n    materials, petroleum products\n  partners:\n    France 64%, Italy, FRG, US (1987)\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    171,500 kW capacity; 441 million kWh produced, 1,279 kWh per capita (1991)\nIndustries:\n    construction, cement, rum, sugar, tourism\nAgriculture:\n    cash crops - bananas and sugarcane; other products include tropical fruits\n    and vegetables; livestock - cattle, pigs, and goats; not self-sufficient in\n    food\nEconomic aid:\n    US commitments, including Ex-Im (FY70-88), $4 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $8.235 billion\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.6397 (March 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:Guadeloupe Communications\n\nRailroads:\n    privately owned, narrow-gauge plantation lines\nHighways:\n    1,940 km total; 1,600 km paved, 340 km gravel and earth\nPorts:\n    Pointe-a-Pitre, Basse-Terre\nCivil air:\n    2 major transport aircraft\nAirports:\n    9 total, 9 usable, 8 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    domestic facilities inadequate; 57,300 telephones; interisland radio relay\n    to Antigua and Barbuda, Dominica, and Martinique; broadcast stations - 2 AM,\n    8 FM (30 private stations licensed to broadcast FM), 9 TV; 1 Atlantic Ocean\n    INTELSAT ground station\n\n:Guadeloupe Defense Forces\n\nBranches:\n    French Forces, Gendarmerie\nManpower availability:\n    males 15-49, 98,069; NA fit for military service\nNote:\n    defense is responsibility of France\n\n:Guam Geography\n\nTotal area:\n    541.3 km2\nLand area:\n    541.3 km2\nComparative area:\n    slightly more than three times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    125.5 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine; generally warm and humid, moderated by northeast trade\n    winds; dry season from January to June, rainy season from July to December;\n    little seasonal temperature variation\nTerrain:\n    volcanic origin, surrounded by coral reefs; relatively flat coraline\n    limestone plateau (source of most fresh water) with steep coastal cliffs and\n    narrow coastal plains in north, low-rising hills in center, mountains in\n    south\nNatural resources:\n    fishing (largely undeveloped), tourism (especially from Japan)\nLand use:\n    arable land 11%; permanent crops 11%; meadows and pastures 15%; forest and\n    woodland 18%; other 45%\nEnvironment:\n    frequent squalls during rainy season; subject to relatively rare, but\n    potentially very destructive typhoons (especially in August)\nNote:\n    largest and southernmost island in the Mariana Islands archipelago;\n    strategic location in western North Pacific Ocean 5,955 km west-southwest of\n    Honolulu about three-quarters of the way between Hawaii and the Philippines\n\n:Guam People\n\nPopulation:\n    142,271 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    3 migrants/1,000 population (1992)\nInfant mortality rate:\n    15 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 76 years female (1992)\nTotal fertility rate:\n    2.5 children born/woman (1992)\nNationality:\n    noun - Guamanian(s); adjective - Guamanian; note - Guamanians are US\n    citizens\nEthnic divisions:\n    Chamorro 47%, Filipino 25%, Caucasian 10%, Chinese, Japanese, Korean, and\n    other 18%\nReligions:\n    Roman Catholic 98%, other 2%\nLanguages:\n    English and Chamorro, most residents bilingual; Japanese also widely spoken\nLiteracy:\n    96% (male 96%, female 96%) age 15 and over can read and write (1980)\nLabor force:\n    46,930; federal and territorial government 40%, private 60% (trade 18%,\n    services 15.6%, construction 13.8%, other 12.6%) (1990)\nOrganized labor:\n    13% of labor force\n\n:Guam Government\n\nLong-form name:\n    Territory of Guam\nType:\n    organized, unincorporated territory of the US; policy relations between Guam\n    and the US are under the jurisdiction of the Office of Territorial and\n    International Affairs, US Department of the Interior\nCapital:\n    Agana\nAdministrative divisions:\n    none (territory of the US)\nIndependence:\n    none (territory of the US)\nConstitution:\n    Organic Act of 1 August 1950\nLegal system:\n    NA\nNational holiday:\n    Guam Discovery Day (first Monday in March), Liberation Day (July 21), US\n    Government holidays\nExecutive branch:\n    President of the US, governor, lieutenant governor, Cabinet\nLegislative branch:\n    unicameral Legislature\nJudicial branch:\n    Federal District Court of Guam, Territorial Superior Court of Guam\nLeaders:\n  Chief of State:\n    President George BUSH (since 20 January 1989)\n  Head of Government:\n    Governor Joseph A. ADA (since November 1986); Lieutenant Governor Frank F.\n    BLAS\nPolitical parties and leaders:\n    Democratic Party (controls the legislature); Republican Party (party of the\n    Governor)\nSuffrage:\n    universal at age 18; US citizens, but do not vote in US presidential\n    elections\nElections:\n  Governor:\n    last held on 6 November 1990 (next to be held November 1994); results -\n    Joseph F. ADA reelected\n  Legislature:\n    last held on 6 November 1990 (next to be held November 1992); a byelection\n    was held in April 1991 to replace a deceased legislator, results - percent\n    of vote by party NA; seats - (21 total) Democratic 11, Republican 10\n  US House of Representatives:\n    last held 6 November 1990 (next to be held 3 November 1992); Guam elects one\n    nonvoting delegate; results - Ben BLAZ was elected as the nonacting\n    delegate; seats - (1 total) Republican 1\nMember of:\n    ESCAP (associate), IOC, SPC\nDiplomatic representation:\n    none (territory of the US)\nFlag:\n    territorial flag is dark blue with a narrow red border on all four sides;\n    centered is a red-bordered, pointed, vertical ellipse containing a beach\n    scene, outrigger canoe with sail, and a palm tree with the word GUAM\n    superimposed in bold red letters; US flag is the national flag\n\n:Guam Economy\n\nOverview:\n    The economy is based on US military spending and on revenues from tourism.\n    Over the past 20 years the tourist industry has grown rapidly, creating a\n    construction boom for new hotels and the expansion of older ones. Visitors\n    numbered about 900,000 in 1990. The small manufacturing sector includes\n    textiles and clothing, beverage, food, and watch production. About 60% of\n    the labor force works for the private sector and the rest for government.\n    Most food and industrial goods are imported, with about 75% from the US. In\n    1991 the unemployment rate was about 4.1%.\nGNP:\n    purchasing power equivalent - $2.0 billion, per capita $14,000; real growth\n    rate NA% (1991 est.)\nInflation rate (consumer prices):\n    12.6% (1991)\nUnemployment rate:\n    4.1% (1991 est.)\nBudget:\n    revenues $525 million; expenditures $395 million, including capital\n    expenditures of $NA.\nExports:\n    $34 million (f.o.b., 1984)\n  commodities:\n    mostly transshipments of refined petroleum products, construction materials,\n    fish, food and beverage products\n  partners:\n    US 25%, Trust Territory of the Pacific Islands 63%, other 12%\nImports:\n    $493 million (c.i.f., 1984)\n  commodities:\n    petroleum and petroleum products, food, manufactured goods\n  partners:\n    US 23%, Japan 19%, other 58%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    500,000 kW capacity; 2,300 million kWh produced, 16,300 kWh per capita\n    (1990)\nIndustries:\n    US military, tourism, construction, transshipment services, concrete\n    products, printing and publishing, food processing, textiles\nAgriculture:\n    relatively undeveloped with most food imported; fruits, vegetables, eggs,\n    pork, poultry, beef, copra\nEconomic aid:\n    although Guam receives no foreign aid, it does receive large transfer\n    payments from the general revenues of the US Federal Treasury into which\n    Guamanians pay no income or excise taxes; under the provisions of a special\n    law of Congress, the Guamanian Treasury, rather than the US Treasury,\n    receives federal income taxes paid by military and civilian Federal\n    employees stationed in Guam\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Guam Communications\n\nHighways:\n    674 km all-weather roads\nPorts:\n    Apra Harbor\nAirports:\n    5 total, 4 usable; 3 with permanent-surface runways; none with runways over\n    3,659 m; 3 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    26,317 telephones (1989); broadcast stations - 3 AM, 3 FM, 3 TV; 2 Pacific\n    Ocean INTELSAT ground stations\n\n:Guam Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Guatemala Geography\n\nTotal area:\n    108,890 km2\nLand area:\n    108,430 km2\nComparative area:\n    slightly smaller than Tennessee\nLand boundaries:\n    1,687 km; Belize 266 km, El Salvador 203 km, Honduras 256 km, Mexico 962 km\nCoastline:\n    400 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims Belize, but boundary negotiations to resolve the dispute have begun\nClimate:\n    tropical; hot, humid in lowlands; cooler in highlands\nTerrain:\n    mostly mountains with narrow coastal plains and rolling limestone plateau\n    (Peten)\nNatural resources:\n    crude oil, nickel, rare woods, fish, chicle\nLand use:\n    arable land 12%; permanent crops 4%; meadows and pastures 12%; forest and\n    woodland 40%; other 32%; includes irrigated 1%\nEnvironment:\n    numerous volcanoes in mountains, with frequent violent earthquakes;\n    Caribbean coast subject to hurricanes and other tropical storms;\n    deforestation; soil erosion; water pollution\nNote:\n    no natural harbors on west coast\n\n:Guatemala People\n\nPopulation:\n    9,784,275 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    56 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    61 years male, 66 years female (1992)\nTotal fertility rate:\n    4.6 children born/woman (1992)\nNationality:\n    noun - Guatemalan(s); adjective - Guatemalan\nEthnic divisions:\n    Ladino (mestizo - mixed Indian and European ancestry) 56%, Indian 44%\nReligions:\n    predominantly Roman Catholic; also Protestant, traditional Mayan\nLanguages:\n    Spanish, but over 40% of the population speaks an Indian language as a\n    primary tongue (18 Indian dialects, including Quiche, Cakchiquel, Kekchi)\nLiteracy:\n    55% (male 63%, female 47%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,500,000; agriculture 60%, services 13%, manufacturing 12%, commerce 7%,\n    construction 4%, transport 3%, utilities 0.8%, mining 0.4% (1985)\nOrganized labor:\n    8% of labor force (1988 est.)\n\n:Guatemala Government\n\nLong-form name:\n    Republic of Guatemala\nType:\n    republic\nCapital:\n    Guatemala\nAdministrative divisions:\n    22 departments (departamentos, singular - departamento); Alta Verapaz, Baja\n    Verapaz, Chimaltenango, Chiquimula, El Progreso, Escuintla, Guatemala,\n    Huehuetenango, Izabal, Jalapa, Jutiapa, Peten, Quetzaltenango, Quiche,\n    Retalhuleu, Sacatepequez, San Marcos, Santa Rosa, Solola, Suchitepequez,\n    Totonicapan, Zacapa\nIndependence:\n    15 September 1821 (from Spain)\nConstitution:\n    31 May 1985, effective 14 January 1986\nLegal system:\n    civil law system; judicial review of legislative acts; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 15 September (1821)\nExecutive branch:\n    president, vice president, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Congress of the Republic (Congreso de la Republica)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justicia)\nLeaders:\n  Chief of State and Head of Government:\n    President Jorge SERRANO Elias (since 14 January 1991); Vice President\n    Gustavo ESPINA Salguero (since 14 January 1991)\nPolitical parties and leaders:\n    National Centrist Union (UCN), Jorge CARPIO Nicolle; Solidarity Action\n    Movement (MAS), Jorge SERRANO Elias; Christian Democratic Party (DCG),\n    Alfonso CABRERA Hidalgo; National Advancement Party (PAN), Alvaro ARZU\n    Irigoyen; National Liberation Movement (MLN), Mario SANDOVAL Alarcon; Social\n    Democratic Party (PSD), Mario SOLARZANO Martinez; Popular Alliance 5 (AP-5),\n    Max ORLANDO Molina; Revolutionary Party (PR), Carlos CHAVARRIA; National\n    Authentic Center (CAN), Hector MAYORA Dawe; Democratic Institutional Party\n    (PID), Oscar RIVAS; Nationalist United Front (FUN), Gabriel GIRON;\n    Guatemalan Republican Front (FRG), Efrain RIOS Montt\nSuffrage:\n    universal at age 18\nElections:\n  Congress:\n    last held on 11 November 1990 (next to be held 11 November 1995); results -\n    UCN 25.6%, MAS 24.3%, DCG 17. 5%, PAN 17.3%, MLN 4.8%, PSD/AP-5 3.6%, PR\n    2.1%; seats - (116 total) UCN 38, DCG 27, MAS 18, PAN 12, Pro - Rios Montt\n    10, MLN 4, PR 1, PSD/AP-5 1, independent 5\n  President:\n    runoff held on 11 January 1991 (next to be held 11 November 1995); results -\n    Jorge SERRANO Elias (MAS) 68.1%, Jorge CARPIO Nicolle (UCN) 31.9%\nCommunists:\n    Guatemalan Labor Party (PGT); main radical left guerrilla groups - Guerrilla\n    Army of the Poor (EGP), Revolutionary Organization of the People in Arms\n    (ORPA), Rebel Armed Forces (FAR), and PGT dissidents\n\n:Guatemala Government\n\nOther political or pressure groups:\n    Federated Chambers of Commerce and Industry (CACIF), Mutual Support Group\n    (GAM), Unity for Popular and Labor Action (UASP), Agrarian Owners Group\n    (UNAGRO), Committee for Campesino Unity (CUC)\nMember of:\n    BCIE, CACM, CCC, ECLAC, FAO, G-24, G-77, GATT, IADB, IAEA, IBRD, ICAO,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ITU,\n    LAES, LAIA, LORCS, OAS, OPANAL, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL,\n    WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Juan Jose CASO-FANJUL; Chancery at 2220 R Street NW, Washington,\n    DC 20008; telephone (202) 745-4952 through 4954; there are Guatemalan\n    Consulates General in Chicago, Houston, Los Angeles, Miami, New Orleans, New\n    York, and San Francisco\n  US:\n    Ambassador Thomas F. STROOCK; Embassy at 7-01 Avenida de la Reforma, Zone\n    10, Guatemala City (mailing address is APO AA 34024); telephone [502] (2)\n    31-15-41\nFlag:\n    three equal vertical bands of light blue (hoist side), white, and light blue\n    with the coat of arms centered in the white band; the coat of arms includes\n    a green and red quetzal (the national bird) and a scroll bearing the\n    inscription LIBERTAD 15 DE SEPTIEMBRE DE 1821 (the original date of\n    independence from Spain) all superimposed on a pair of crossed rifles and a\n    pair of crossed swords and framed by a wreath\n\n:Guatemala Economy\n\nOverview:\n    The economy is based on family and corporate agriculture, which accounts for\n    26% of GDP, employs about 60% of the labor force, and supplies two-thirds of\n    exports. Manufacturing, predominantly in private hands, accounts for about\n    18% of GDP and 12% of the labor force. In both 1990 and 1991, the economy\n    grew by 3%, the fourth and fifth consecutive years of mild growth. Inflation\n    at 40% in 1990-91 was more than double the 1987-89 level.\nGDP:\n    exchange rate conversion - $11.7 billion, per capita $1,260; real growth\n    rate 3% (1991 est.)\nInflation rate (consumer prices):\n    40% (1991 est.)\nUnemployment rate:\n    6.7%, with 30-40% underemployment (1989 est.)\nBudget:\n    revenues $1.05 billion; expenditures $1.3 billion, including capital\n    expenditures of $270 million (1989 est.)\nExports:\n    $1.16 billion (f.o.b., 1990)\n  commodities:\n    coffee 26%, sugar 13%, bananas 7%, beef 2%\n  partners:\n    US 39%, El Salvador, Costa Rica, Germany, Honduras\nImports:\n    $1.66 billion (c.i.f., 1990)\n  commodities:\n    fuel and petroleum products, machinery, grain, fertilizers, motor vehicles\n  partners:\n    US 40%, Mexico, Venezuela, Japan, Germany\nExternal debt:\n    $2.6 billion (December 1990 est.)\nIndustrial production:\n    growth rate NA; accounts for 18% of GDP\nElectricity:\n    802,600 kW capacity; 2,461 million kWh produced, 266 kWh per capita (1991)\nIndustries:\n    sugar, textiles and clothing, furniture, chemicals, petroleum, metals,\n    rubber, tourism\nAgriculture:\n    accounts for 26% of GDP; most important sector of economy and contributes\n    two-thirds of export earnings; principal crops - sugarcane, corn, bananas,\n    coffee, beans, cardamom; livestock - cattle, sheep, pigs, chickens; food\n    importer\nIllicit drugs:\n    illicit producer of opium poppy and cannabis for the international drug\n    trade; the government has an active eradication program for cannabis and\n    opium poppy; transit country for cocaine shipments\nEconomic aid:\n    US commitments, including Ex-Im (FY70-90), $1.1 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $7.92 billion\nCurrency:\n    quetzal (plural - quetzales); 1 quetzal (Q) = 100 centavos\nExchange rates:\n    free market quetzales (Q) per US$1 - 5.0854 (January 1992), 5.0289 (1991),\n    2.8161 (1989), 2.6196 (1988), 2.500 (1987); note - black-market rate 2.800\n    (May 1989)\nFiscal year:\n    calendar year\n\n:Guatemala Communications\n\nRailroads:\n    884 km 0.914-meter gauge, single track; 782 km government owned, 102 km\n    privately owned\nHighways:\n    26,429 km total; 2,868 km paved, 11,421 km gravel, and 12,140 unimproved\nInland waterways:\n    260 km navigable year round; additional 730 km navigable during high-water\n    season\nPipelines:\n    crude oil 275 km\nPorts:\n    Puerto Barrios, Puerto Quetzal, Santo Tomas de Castilla\nMerchant marine:\n    1 cargo ship (1,000 GRT or over) totaling 4,129 GRT/6,450 DWT\nCivil air:\n    8 major transport aircraft\nAirports:\n    448 total, 400 usable; 11 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 19 with runways 1,220-2,439 m\nTelecommunications:\n    fairly modern network centered in Guatemala [city]; 97,670 telephones;\n    broadcast stations - 91 AM, no FM, 25 TV, 15 shortwave; connection into\n    Central American Microwave System; 1 Atlantic Ocean INTELSAT earth station\n\n:Guatemala Defense Forces\n\nBranches:\n    Army, Navy, Air Force\nManpower availability:\n    males 15-49, 2,169,073; 1,420,116 fit for military service; 107,239 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $113 million, 1% of GDP (1990)\n\n:Guernsey Geography\n\nTotal area:\n    194 km2\nLand area:\n    194 km2; includes Alderney, Guernsey, Herm, Sark, and some other smaller\n    islands\nComparative area:\n    slightly larger than Washington, DC\nLand boundaries:\n    none\nCoastline:\n    50 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    temperate with mild winters and cool summers; about 50% of days are overcast\nTerrain:\n    mostly level with low hills in southwest\nNatural resources:\n    cropland\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; cultivated about 50%\nEnvironment:\n    large, deepwater harbor at Saint Peter Port\nNote:\n    52 km west of France\n\n:Guernsey People\n\nPopulation:\n    57,949 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    5 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Channel Islander(s); adjective - Channel Islander\nEthnic divisions:\n    UK and Norman-French descent\nReligions:\n    Anglican, Roman Catholic, Presbyterian, Baptist, Congregational, Methodist\nLanguages:\n    English, French; Norman-French dialect spoken in country districts\nLiteracy:\n    NA% (male NA%, female NA%) but compulsory education age 5 to 16\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Guernsey Government\n\nLong-form name:\n    Bailiwick of Guernsey\nType:\n    British crown dependency\nCapital:\n    Saint Peter Port\nAdministrative divisions:\n    none (British crown dependency)\nIndependence:\n    none (British crown dependency)\nConstitution:\n    unwritten; partly statutes, partly common law and practice\nLegal system:\n    English law and local statute; justice is administered by the Royal Court\nNational holiday:\n    Liberation Day, 9 May (1945)\nExecutive branch:\n    British monarch, lieutenant governor, bailiff, deputy bailiff\nLegislative branch:\n    unicameral Assembly of the States\nJudicial branch:\n    Royal Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Lieutenant Governor Lt. Gen. Sir Michael WILKINS (since NA 1990); Bailiff\n    Mr. Graham Martyn DOREY (since February 1992)\nPolitical parties and leaders:\n    none; all independents\nSuffrage:\n    universal at age 18\nElections:\n  Assembly of the States:\n    last held NA (next to be held NA); results - no percent of vote by party\n    since all are independents; seats - (60 total, 33 elected), all independents\nMember of:\n    none\nDiplomatic representation:\n    none (British crown dependency)\nFlag:\n    white with the red cross of Saint George (patron saint of England) extending\n    to the edges of the flag\n\n:Guernsey Economy\n\nOverview:\n    Tourism is a major source of revenue. Other economic activity includes\n    financial services, breeding the world-famous Guernsey cattle, and growing\n    tomatoes and flowers for export.\nGDP:\n    $NA, per capita $NA; real growth rate 9% (1987)\nInflation rate (consumer prices):\n    7% (1988)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $208.9 million; expenditures $173.9 million, including capital\n    expenditures of NA (1988)\nExports:\n    $NA\n  commodities:\n    tomatoes, flowers and ferns, sweet peppers, eggplant, other vegetables\n  partners:\n    UK (regarded as internal trade)\nImports:\n    $NA\n  commodities:\n    coal, gasoline, and oil\n  partners:\n    UK (regarded as internal trade)\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    173,000 kW capacity; 525 million kWh produced, 9,340 kWh per capita (1989)\nIndustries:\n    tourism, banking\nAgriculture:\n    tomatoes, flowers (mostly grown in greenhouses), sweet peppers, eggplant,\n    other vegetables and fruit; Guernsey cattle\nEconomic aid:\n    none\nCurrency:\n    Guernsey pound (plural - pounds); 1 Guernsey (#G) pound = 100 pence\nExchange rates:\n    Guernsey pounds (#G) per US$1 - 0.5799 (March 1992), 0.5652 (1991), 0.5603\n    (1990), 0.6099 (1989), 0.5614 (1988), 0.6102 (1987); note - the Guernsey\n    pound is at par with the British pound\nFiscal year:\n    calendar year\n\n:Guernsey Communications\n\nPorts:\n    Saint Peter Port, Saint Sampson\nTelecommunications:\n    broadcast stations - 1 AM, no FM, 1 TV; 41,900 telephones; 1 submarine cable\n\n:Guernsey Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Guinea Geography\n\nTotal area:\n    245,860 km2\nLand area:\n    245,860 km2\nComparative area:\n    slightly smaller than Oregon\nLand boundaries:\n    3,399 km; Guinea-Bissau 386 km, Ivory Coast 610 km, Liberia 563 km, Mali 858\n    km, Senegal 330 km, Sierra Leone 652 km\nCoastline:\n    320 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    generally hot and humid; monsoonal-type rainy season (June to November) with\n    southwesterly winds; dry season (December to May) with northeasterly\n    harmattan winds\nTerrain:\n    generally flat coastal plain, hilly to mountainous interior\nNatural resources:\n    bauxite, iron ore, diamonds, gold, uranium, hydropower, fish\nLand use:\n    arable land 6%; permanent crops NEGL%; meadows and pastures 12%; forest and\n    woodland 42%; other 40%; includes irrigated NEGL%\nEnvironment:\n    hot, dry, dusty harmattan haze may reduce visibility during dry season;\n    deforestation\n\n:Guinea People\n\nPopulation:\n    7,783,926 (July 1992), growth rate - 1.5% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    21 deaths/1,000 population (1992)\nNet migration rate:\n    -40 migrants/1,000 population (1992)\nInfant mortality rate:\n    143 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    41 years male, 45 years female (1992)\nTotal fertility rate:\n    6.0 children born/woman (1992)\nNationality:\n    noun - Guinean(s); adjective - Guinean\nEthnic divisions:\n    Fulani 35%, Malinke 30%, Soussou 20%, small indigenous tribes 15%\nReligions:\n    Muslim 85%, Christian 8%, indigenous beliefs 7%\nLanguages:\n    French (official); each tribe has its own language\nLiteracy:\n    24% (male 35%, female 13%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,400,000 (1983); agriculture 82.0%, industry and commerce 11.0%, services\n    5.4%; 88,112 civil servants (1987); 52% of population of working age (1985)\nOrganized labor:\n    virtually 100% of wage earners loosely affiliated with the National\n    Confederation of Guinean Workers\n\n:Guinea Government\n\nLong-form name:\n    Republic of Guinea\nType:\n    republic\nCapital:\n    Conakry\nAdministrative divisions:\n    33 administrative regions (regions administratives, singular - region\n    administrative); Beyla, Boffa, Boke, Conakry, Coyah, Dabola, Dalaba,\n    Dinguiraye, Faranah, Forecariah, Fria, Gaoual, Gueckedou, Kankan, Kerouane,\n    Kindia, Kissidougou, Koubia, Koundara, Kouroussa, Labe, Lelouma, Lola,\n    Macenta, Mali, Mamou, Mandiana, Nzerekore, Pita, Siguiri, Telimele, Tougue,\n    Yomou\nIndependence:\n    2 October 1958 (from France; formerly French Guinea)\nConstitution:\n    23 December 1990 (Loi Fundamentale)\nLegal system:\n    based on French civil law system, customary law, and decree; legal codes\n    currently being revised; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Second Republic, 3 April (1984)\nExecutive branch:\n    president, Transitional Committee for National Recovery (Comite\n    Transitionale de Redressement National or CTRN) replaced the Military\n    Committee for National Recovery (Comite Militaire de Redressement National\n    or CMRN); Council of Ministers (cabinet)\nLegislative branch:\n    People's National Assembly (Assemblee Nationale Populaire) was dissolved\n    after the 3 April 1984 coup; note: framework for a new National Assembly\n    established in December 1991 (will have 114 seats)\nJudicial branch:\n    Court of Appeal (Cour d'Appel)\nLeaders:\n  Chief of State and Head of Government:\n    Gen. Lansana CONTE (since 5 April 1984)\nPolitical parties and leaders:\n    none; following the 3 April 1984 coup, all political activity was banned\nSuffrage:\n    none\nElections:\n    none\nMember of:\n    ACCT, ACP, AfDB, CEAO, ECA, ECOWAS, FAO, FZ, G-77, IBRD, ICAO, IDA, IDB,\n    IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO (correspondent), ITU,\n    LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO,\n    WTO\nDiplomatic representation:\n    Ambassador (vacant); Charge d'Affaires ad interim Ansoumane CAMARA; Chancery\n    at 2112 Leroy Place NW, Washington, DC 20008; telephone (202) 483-9420\n  US:\n    Ambassador Dane F. SMITH, Jr.; Embassy at 2nd Boulevard and 9th Avenue,\n    Conakry (mailing address is B. P. 603, Conakry); telephone (224) 44-15-20\n    through 24\nFlag:\n    three equal vertical bands of red (hoist side), yellow, and green; uses the\n    popular pan-African colors of Ethiopia; similar to the flag of Rwanda, which\n    has a large black letter R centered in the yellow band\n\n:Guinea Economy\n\nOverview:\n    Although possessing many natural resources and considerable potential for\n    agricultural development, Guinea is one of the poorest countries in the\n    world. The agricultural sector contributes about 40% to GDP and employs more\n    than 80% of the work force, while industry accounts for 27% of GDP. Guinea\n    possesses over 25% of the world's bauxite reserves; exports of bauxite and\n    alumina accounted for about 70% of total exports in 1989.\nGDP:\n    exchange rate conversion - $3.0 billion, per capita $410; real growth rate\n    4.3% (1990 est.)\nInflation rate (consumer prices):\n    19.6% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $449 million; expenditures $708 million, including capital\n    expenditures of $361 million (1990 est.)\nExports:\n    $788 million (f.o.b., 1990 est.)\n  commodities:\n    alumina, bauxite, diamonds, coffee, pineapples, bananas, palm kernels\n  partners:\n    US 33%, EC 33%, USSR and Eastern Europe 20%, Canada\nImports:\n    $692 million (c.i.f., 1990 est.)\n  commodities:\n    petroleum products, metals, machinery, transport equipment, foodstuffs,\n    textiles, and other grain\n  partners:\n    US 16%, France, Brazil\nExternal debt:\n    $2.6 billion (1990 est.)\nIndustrial production:\n    growth rate NA%; accounts for 27% of GDP\nElectricity:\n    113,000 kW capacity; 300 million kWh produced, 40 kWh per capita (1989)\nIndustries:\n    bauxite mining, alumina, gold, diamond mining, light manufacturing and\n    agricultural processing industries\nAgriculture:\n    accounts for 40% of GDP (includes fishing and forestry); mostly subsistence\n    farming; principal products - rice, coffee, pineapples, palm kernels,\n    cassava, bananas, sweet potatoes, timber; livestock - cattle, sheep and\n    goats; not self-sufficient in food grains\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $227 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,465 million; OPEC\n    bilateral aid (1979-89), $120 million; Communist countries (1970-89), $446\n    million\nCurrency:\n    Guinean franc (plural - francs); 1 Guinean franc (FG) = 100 centimes\nExchange rates:\n    Guinean francs (FG) per US$1 - 675 (1990), 618 (1989), 515 (1988), 440\n    (1987), 383 (1986)\nFiscal year:\n    calendar year\n\n:Guinea Communications\n\nRailroads:\n    1,045 km; 806 km 1.000-meter gauge, 239 km 1.435-meter standard gauge\nHighways:\n    30,100 km total; 1,145 km paved, 12,955 km gravel or laterite (of which\n    barely 4,500 km are currently all-weather roads), 16,000 km unimproved earth\n    (1987)\nInland waterways:\n    1,295 km navigable by shallow-draft native craft\nPorts:\n    Conakry, Kamsar\nCivil air:\n    10 major transport aircraft\nAirports:\n    15 total, 15 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 10 with runways 1,220-2,439 m\nTelecommunications:\n    poor to fair system of open-wire lines, small radiocommunication stations,\n    and new radio relay system; 15,000 telephones; broadcast stations - 3 AM 1\n    FM, 1 TV; 65,000 TV sets; 200,000 radio receivers; 1 Atlantic Ocean INTELSAT\n    earth station\n\n:Guinea Defense Forces\n\nBranches:\n    Army, Navy (acts primarily as a coast guard), Air Force, Republican Guard,\n    paramilitary National Gendarmerie, National Police Force\nManpower availability:\n    males 15-49, 1,759,811; 888,968 fit for military service (1989)\nDefense expenditures:\n    exchange rate conversion - $29 million, 1.2% of GDP (1988)\n\n:Guinea-Bissau Geography\n\nTotal area:\n    36,120 km2\nLand area:\n    28,000 km2\nComparative area:\n    slightly less than three times the size of Connecticut\nLand boundaries:\n    724 km; Guinea 386, Senegal 338 km\nCoastline:\n    350 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    the International Court of Justice (ICJ) on 12 November 1991 rendered its\n    decision on the Guinea-Bissau/Senegal maritime boundary in favor of Senegal\nClimate:\n    tropical; generally hot and humid; monsoon-type rainy season (June to\n    November) with southwesterly winds; dry season (December to May) with\n    northeasterly harmattan winds\nTerrain:\n    mostly low coastal plain rising to savanna in east\nNatural resources:\n    unexploited deposits of petroleum, bauxite, phosphates; fish, timber\nLand use:\n    arable land 11%; permanent crops 1%; meadows and pastures 43%; forest and\n    woodland 38%; other 7%\nEnvironment:\n    hot, dry, dusty harmattan haze may reduce visibility during dry season\n\n:Guinea-Bissau People\n\nPopulation:\n    1,047,137 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    42 births/1,000 population (1992)\nDeath rate:\n    18 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    124 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    45 years male, 48 years female (1992)\nTotal fertility rate:\n    5.7 children born/woman (1992)\nNationality:\n    noun - Guinea-Bissauan(s); adjective - Guinea-Bissauan\nEthnic divisions:\n    African about 99% (Balanta 30%, Fula 20%, Manjaca 14%, Mandinga 13%, Papel\n    7%); European and mulatto less than 1%\nReligions:\n    indigenous beliefs 65%, Muslim 30%, Christian 5%\nLanguages:\n    Portuguese (official); Criolo and numerous African languages\nLiteracy:\n    36% (male 50%, female 24%) age 15 and over can read and write (1990 est.)\nLabor force:\n    403,000 (est.); agriculture 90%, industry, services, and commerce 5%,\n    government 5%; population of working age 53% (1983)\nOrganized labor:\n    only one trade union - the National Union of Workers of Guinea-Bissau (UNTG)\n\n:Guinea-Bissau Government\n\nLong-form name:\n    Republic of Guinea-Bissau\nType:\n    republic; highly centralized multiparty since mid-1991; the African Party\n    for the Independence of Guinea-Bissau and Cape Verde (PAIGC) held an\n    extraordinary party congress in December 1990 and established a two-year\n    transition program during which the constitution will be revised, allowing\n    for multiple political parties and a presidential election in 1993\nCapital:\n    Bissau\nAdministrative divisions:\n    9 regions (regioes, singular - regiao); Bafata, Biombo, Bissau, Bolama,\n    Cacheu, Gabu, Oio, Quinara, Tombali\nIndependence:\n    10 September 1974 (from Portugal; formerly Portuguese Guinea)\nConstitution:\n    16 May 1984\nLegal system:\n    NA\nNational holiday:\n    Independence Day, 10 September (1974)\nExecutive branch:\n    president of the Council of State, vice presidents of the Council of State,\n    Council of State, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National People's Assembly (Assembleia Nacional Popular)\nJudicial branch:\n    none; there is a Ministry of Justice in the Council of Ministers\nLeaders:\n  Chief of State and Head of Government:\n    President of the Council of State Brig. Gen. Joao Bernardo VIEIRA (assumed\n    power 14 November 1980 and elected President of Council of State on 16 May\n    1984)\nPolitical parties and leaders:\n    3 parties - African Party for the Independence of Guinea-Bissau and Cape\n    Verde (PAIGC), President Joao Bernardo VIEIRA, leader; PAIGC is still the\n    major party and controls all aspects of the Government, but 2 opposition\n    parties registered in late 1991; Democratic Social Front (FDS), Rafael\n    BARBOSA, leader; Bafata Movement, Domingos Fernandes GARNER, leader;\n    Democratic Front, Aristides MENEZES, leader; other parties forming\nSuffrage:\n    universal at age 15\nElections:\n  National People's Assembly:\n    last held 15 June 1989 (next to be held 15 June 1994); results - PAIGC is\n    the only party; seats - (150 total) PAIGC 150, appointed by Regional\n    Councils\n  President of Council of State:\n    last held 19 June 1989 (next to be held NA 1993); results - Brig. Gen. Joao\n    Bernardo VIEIRA was reelected without opposition by the National People's\n    Assembly\nMember of:\n    ACCT (associate), ACP, AfDB, ECA, ECOWAS, FAO, G-77, IBRD, ICAO, IDA, IDB,\n    IFAD, IFC, ILO, IMF, IMO, IOM (observer), ITU, LORCS, NAM, OAU, OIC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Alfredo Lopes CABRAL; Chancery at 918 16th Street NW, Mezzanine\n    Suite, Washington, DC 20006; telephone (202) 872-4222,\n\n:Guinea-Bissau Government\n\n  US:\n    Ambassador William L. JACOBSEN, Jr.; Embassy at 17 Avenida Domingos Ramos,\n    Bissau (mailing address is 1067 Bissau Codex, Bissau, Guinea-Bissau);\n    telephone [245] 20-1139, 20-1145, 20-1113\nFlag:\n    two equal horizontal bands of yellow (top) and green with a vertical red\n    band on the hoist side; there is a black five-pointed star centered in the\n    red band; uses the popular pan-African colors of Ethiopia; similar to the\n    flag of Cape Verde, which has the black star raised above the center of the\n    red band and is framed by two corn stalks and a yellow clam shell\n\n:Guinea-Bissau Economy\n\nOverview:\n    Guinea-Bissau ranks among the poorest countries in the world, with a per\n    capita GDP below $200. Agriculture and fishing are the main economic\n    activities. Cashew nuts, peanuts, and palm kernels are the primary exports.\n    Exploitation of known mineral deposits is unlikely at present because of a\n    weak infrastructure and the high cost of development. The government's\n    four-year plan (1988-91) has targeted agricultural development as the top\n    priority.\nGDP:\n    exchange rate conversion - $162 million, per capita $160; real growth rate\n    5.0% (1989)\nInflation rate (consumer prices):\n    25% (1990 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $22.7 million; expenditures $30.8 million, including capital\n    expenditures of $18.0 million (1989 est.)\nExports:\n    $14.2 million (f.o.b., 1989 est.)\n  commodities:\n    cashews, fish, peanuts, palm kernels\n  partners:\n    Portugal, Senegal, France, The Gambia, Netherlands, Spain\nImports:\n    $68.9 million (f.o.b., 1989 est.)\n  commodities:\n    capital equipment, consumer goods, semiprocessed goods, foods, petroleum\n  partners:\n    Portugal, Netherlands, Senegal, USSR, Germany\nExternal debt:\n    $462 million (December 1990 est.)\nIndustrial production:\n    growth rate - 1.0% (1989 est.); accounts for 10% of GDP (1989 est.)\nElectricity:\n    22,000 kW capacity; 30 million kWh produced, 30 kWh per capita (1991)\nIndustries:\n    agricultural processing, beer, soft drinks\nAgriculture:\n    accounts for over 50% of GDP, nearly 100% of exports, and 90% of employment;\n    rice is the staple food; other crops include corn, beans, cassava, cashew\n    nuts, peanuts, palm kernels, and cotton; not self-sufficient in food;\n    fishing and forestry potential not fully exploited\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $49 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $615 million; OPEC\n    bilateral aid (1979-89), $41 million; Communist countries (1970-89), $68\n    million\nCurrency:\n    Guinea-Bissauan peso (plural - pesos); 1 Guinea-Bissauan peso (PG) = 100\n    centavos\nExchange rates:\n    Guinea-Bissauan pesos (PG) per US$1 - 1987.2 (1989), 1363.6 (1988), 851.65\n    (1987), 238.98 (1986)\nFiscal year:\n    calendar year\n\n:Guinea-Bissau Communications\n\nHighways:\n    3,218 km; 2,698 km bituminous, remainder earth\nInland waterways:\n    scattered stretches are important to coastal commerce\nPorts:\n    Bissau\nCivil air:\n    2 major transport aircraft\nAirports:\n    34 total, 15 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    poor system of radio relay, open-wire lines, and radiocommunications; 3,000\n    telephones; broadcast stations - 2 AM, 3 FM, 1 TV\n\n:Guinea-Bissau Defense Forces\n\nBranches:\n    People's Revolutionary Armed Force (FARP; including Army, Navy, Air Force),\n    paramilitary force\nManpower availability:\n    males 15-49, 228,856; 130,580 fit for military service\nDefense expenditures:\n    exchange rate conversion - $9.3 million, 5-6% of GDP (1987)\n\n:Guyana Geography\n\nTotal area:\n    214,970 km2\nLand area:\n    196,850 km2\nComparative area:\n    slightly smaller than Idaho\nLand boundaries:\n    2,462 km; Brazil 1,119 km, Suriname 600 km, Venezuela 743 km\nCoastline:\n    459 km\nMaritime claims:\n  Continental shelf:\n    outer edge of continental margin or 200 nm\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    all of the area west of the Essequibo River claimed by Venezuela; Suriname\n    claims area between New (Upper Courantyne) and Courantyne/Kutari Rivers (all\n    headwaters of the Courantyne)\nClimate:\n    tropical; hot, humid, moderated by northeast trade winds; two rainy seasons\n    (May to mid-August, mid-November to mid-January)\nTerrain:\n    mostly rolling highlands; low coastal plain; savanna in south\nNatural resources:\n    bauxite, gold, diamonds, hardwood timber, shrimp, fish\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 6%; forest and\n    woodland 83%; other 8%; includes irrigated 1%\nEnvironment:\n    flash floods a constant threat during rainy seasons; water pollution\n\n:Guyana People\n\nPopulation:\n    739,431 (July 1992), growth rate - 0.6% (1992)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -20 migrants/1,000 population (1992)\nInfant mortality rate:\n    50 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    61 years male, 68 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Guyanese (singular and plural); adjective - Guyanese\nEthnic divisions:\n    East Indian 51%, black and mixed 43%, Amerindian 4%, European and Chinese 2%\nReligions:\n    Christian 57%, Hindu 33%, Muslim 9%, other 1%\nLanguages:\n    English, Amerindian dialects\nLiteracy:\n    95% (male 98%, female 96%) age 15 and over having ever attended school (1990\n    est.)\nLabor force:\n    268,000; industry and commerce 44.5%, agriculture 33.8%, services 21.7%;\n    public-sector employment amounts to 60-80% of the total labor force (1985)\nOrganized labor:\n    34% of labor force\n\n:Guyana Government\n\nLong-form name:\n    Co-operative Republic of Guyana\nType:\n    republic\nCapital:\n    Georgetown\nAdministrative divisions:\n    10 regions; Barima-Waini, Cuyuni-Mazaruni, Demerara-Mahaica, East\n    Berbice-Corentyne, Essequibo Islands-West Demerara, Mahaica-Berbice,\n    Pomeroon-Supenaam, Potaro-Siparuni, Upper Demerara-Berbice, Upper\n    Takutu-Upper Essequibo\nIndependence:\n    26 May 1966 (from UK; formerly British Guiana)\nConstitution:\n    6 October 1980\nLegal system:\n    based on English common law with certain admixtures of Roman-Dutch law; has\n    not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Republic Day, 23 February (1970)\nExecutive branch:\n    executive president, first vice president, prime minister, first deputy\n    prime minister, Cabinet\nLegislative branch:\n    unicameral National Assembly\nJudicial branch:\n    Supreme Court of Judicature\nLeaders:\n  Chief of State:\n    Executive President Hugh Desmond HOYTE (since 6 August 1985); First Vice\n    President Hamilton GREEN (since 6 August 1985)\n  Head of Government:\n    Prime Minister Hamilton GREEN (since NA August 1985)\nPolitical parties and leaders:\n    People's National Congress (PNC), Hugh Desmond HOYTE; People's Progressive\n    Party (PPP), Cheddi JAGAN; Working People's Alliance (WPA), Eusi KWAYANA,\n    Rupert ROOPNARINE; Democratic Labor Movement (DLM), Paul TENNASSEE; People's\n    Democratic Movement (PDM), Llewellyn JOHN; National Democratic Front (NDF),\n    Joseph BACCHUS; United Force (UF), Manzoor NADIR; United Republican Party\n    (URP), Leslie RAMSAMMY; National Republican Party (NRP), Robert GANGADEEN;\n    Guyanese Labor Party (GLP), Nanda GOPAUL\nSuffrage:\n    universal at age 18\nElections:\n  Executive President:\n    last held on 9 December 1985 (next to be held 1992); results - Hugh Desmond\n    HOYTE was elected president since he was leader of the party with the most\n    votes in the National Assembly elections\n  National Assembly:\n    last held on 9 December 1985 (next to be held mid-1992); results - PNC 78%,\n    PPP 16%, UF 4%, WPA 2%; seats - (65 total, 53 elected) PNC 42, PPP 8, UF 2,\n    WPA 1\nOther political or pressure groups:\n    Trades Union Congress (TUC); Guyana Council of Indian Organizations (GCIO);\n    Civil Liberties Action Committee (CLAC); the latter two organizations are\n    small and active but not well organized; Guyanese Action for Reform and\n    Democracy (GUARD) includes various labor groups, as well as several of the\n    smaller political parties\n\n:Guyana Government\n\nMember of:\n    ACP, C, CARICOM, CCC, CDB, ECLAC, FAO, G-77, GATT, IADB, IBRD, ICAO, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTERPOL, IOC, ITU, LAES, LORCS, NAM, OAS,\n    UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WMO\nDiplomatic representation:\n    Ambassador Dr. Cedric Hilburn GRANT; Chancery at 2490 Tracy Place NW,\n    Washington, DC 20008; telephone (202) 265-6900; there is a Guyanese\n    Consulate General in New York\n  US:\n    Ambassador George JONES; Embassy at 99-100 Young and Duke Streets,\n    Georgetown; telephone [592] (2) 54900 through 54909\nFlag:\n    green with a red isosceles triangle (based on the hoist side) superimposed\n    on a long yellow arrowhead; there is a narrow black border between the red\n    and yellow, and a narrow white border between the yellow and the green\n\n:Guyana Economy\n\nOverview:\n    Guyana is one of the world's poorest countries with a per capita income less\n    than one-fifth the South American average. After growing on average at less\n    than 1% a year in 1986-87, GDP dropped by 5% a year in 1988-90. The decline\n    resulted from bad weather, labor trouble in the canefields, and flooding and\n    equipment problems in the bauxite industry. Consumer prices rose about 100%\n    in 1989 and 75% in 1990, and the current account deficit widened\n    substantially as sugar and bauxite exports fell. Moreover, electric power is\n    in short supply and constitutes a major barrier to future gains in national\n    output. The government, in association with international financial\n    agencies, seeks to reduce its payment arrears and to raise new funds. The\n    government's stabilization program - aimed at establishing realistic\n    exchange rates, reasonable price stability, and a resumption of growth -\n    requires considerable public administrative abilities and continued patience\n    by consumers during a long incubation period. In 1991, buoyed by a recovery\n    in mining and agriculture, the economy posted 6% growth, according to\n    official figures. A large volume of illegal and quasi- legal economic\n    activity is not captured in estimates of the country's total output.\nGDP:\n    exchange rate conversion - $250 million, per capita $300; real growth rate\n    6% (1991 est.)\nInflation rate (consumer prices):\n    75% (1990)\nUnemployment rate:\n    12-15% (1990 est.)\nBudget:\n    revenues $126 million; expenditures $250 million (1990 est.)\nExports:\n    $189 million (f.o.b., 1990 est.)\n  commodities:\n    bauxite, sugar, gold, rice, shrimp, molasses, timber, rum\n  partners:\n    UK 31%, US 23%, CARICOM 7%, Canada 6% (1988)\nImports:\n    $246 million (c.i.f., 1991)\n  commodities:\n    manufactures, machinery, food, petroleum\n  partners:\n    US 33%, CARICOM 10%, UK 9%, Canada 2% (1989)\nExternal debt:\n    $2.0 billion, including arrears (1990)\nIndustrial production:\n    growth rate - 12.0% (1990 est.); accounts for about 11% of GDP\nElectricity:\n    252,500 kW capacity; 647 million kWh produced, 863 kWh per capita (1991)\nIndustries:\n    bauxite mining, sugar, rice milling, timber, fishing (shrimp), textiles,\n    gold mining\nAgriculture:\n    most important sector, accounting for 24% of GDP and about half of exports;\n    sugar and rice are key crops; development potential exists for fishing and\n    forestry; not self-sufficient in food, especially wheat, vegetable oils, and\n    animal products\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $116 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $325 million;\n    Communist countries 1970-89, $242 million\nCurrency:\n    Guyanese dollar (plural - dollars); 1 Guyanese dollar (G$) = 100 cents\n\n:Guyana Economy\n\nExchange rates:\n    Guyanese dollars (G$) per US$1 - 124.1 (March 1992) 111.8 (1991), 39.533\n    (1990), 27.159 (1989), 10.000 (1988), 9.756 (1987)\nFiscal year:\n    calendar year\n\n:Guyana Communications\n\nRailroads:\n    187 km total, all single track 0.914-meter gauge\nHighways:\n    7,665 km total; 550 km paved, 5,000 km gravel, 1,525 km earth, 590 km\n    unimproved\nInland waterways:\n    6,000 km total of navigable waterways; Berbice, Demerara, and Essequibo\n    Rivers are navigable by oceangoing vessels for 150 km, 100 km, and 80 km,\n    respectively\nPorts:\n    Georgetown\nCivil air:\n    3 major transport aircraft\nAirports:\n    54 total, 49 usable; 5 with permanent-surface runways; none with runways\n    over 3,659 m; none with runways 2,440-3,659 m; 13 with runways 1,220-2,439 m\nTelecommunications:\n    fair system with radio relay network; over 27,000 telephones; tropospheric\n    scatter link to Trinidad; broadcast stations - 4 AM, 3 FM, no TV, 1\n    shortwave; 1 Atlantic Ocean INTELSAT earth station\n\n:Guyana Defense Forces\n\nBranches:\n    Guyana Defense Force (GDF; includes Coast Guard and Air Corps), Guyana\n    Police Force (GPF), Guyana People's Militia (GPM), Guyana National Service\n    (GNS)\nManpower availability:\n    males 15-49, 196,066; 149,045 fit for military service\nDefense expenditures:\n    exchange rate conversion - $5.5 million, 6% of GDP (1989 est.)\n\n:Haiti Geography\n\nTotal area:\n    27,750 km2\nLand area:\n    27,560 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    275 km; Dominican Republic 275 km\nCoastline:\n    1,771 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims US-administered Navassa Island\nClimate:\n    tropical; semiarid where mountains in east cut off trade winds\nTerrain:\n    mostly rough and mountainous\nNatural resources:\n    bauxite\nLand use:\n    arable land 20%; permanent crops 13%; meadows and pastures 18%; forest and\n    woodland 4%; other 45%; includes irrigated 3%\nEnvironment:\n    lies in the middle of the hurricane belt and subject to severe storms from\n    June to October; occasional flooding and earthquakes; deforestation; soil\n    erosion\nNote:\n    shares island of Hispaniola with Dominican Republic\n\n:Haiti People\n\nPopulation:\n    6,431,977 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    42 births/1,000 population (1992)\nDeath rate:\n    15 deaths/1,000 population (1992)\nNet migration rate:\n    -5 migrants/1,000 population (1992)\nInfant mortality rate:\n    104 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    53 years male, 55 years female (1992)\nTotal fertility rate:\n    6.2 children born/woman (1992)\nNationality:\n    noun - Haitian(s); adjective - Haitian\nEthnic divisions:\n    black 95%, mulatto and European 5%\nReligions:\n    Roman Catholic is the official religion; Roman Catholic 80% (of which an\n    overwhelming majority also practice Voodoo), Protestant 16% (Baptist 10%,\n    Pentecostal 4%, Adventist 1%, other 1%), none 1%, other 3% (1982)\nLanguages:\n    French (official) spoken by only 10% of population; all speak Creole\nLiteracy:\n    53% (male 59%, female 47%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,300,000; agriculture 66%, services 25%, industry 9%; shortage of skilled\n    labor, unskilled labor abundant (1982)\nOrganized labor:\n    NA\n\n:Haiti Government\n\nLong-form name:\n    Republic of Haiti\nType:\n    republic\nCapital:\n    Port-au-Prince\nAdministrative divisions:\n    9 departments, (departements, singular - departement); Artibonite, Centre,\n    Grand'Anse, Nord, Nord-Est, Nord-Ouest, Ouest, Sud, Sud-Est\nIndependence:\n    1 January 1804 (from France)\nConstitution:\n    27 August 1983, suspended February 1986; draft constitution approved March\n    1987, suspended June 1988, most articles reinstated March 1989; October\n    1991, government claims to be observing the Constitution\nLegal system:\n    based on Roman civil law system; accepts compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 1 January (1804)\nExecutive branch:\n    president, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral National Assembly (Assemblee Nationale) consisting of an upper\n    house or Senate and a lower house or Chamber of Deputies\nJudicial branch:\n    Court of Appeal (Cour de Cassation)\nLeaders:\n  Chief of State:\n    President Jean-Bertrand ARISTIDE (since 7 February 1991), ousted in a coup\n    in September 1991, but still recognized by international community as Chief\n    of State; President Joseph NERETTE installed by military on 7 October 1991\n  Head of Government:\n    de facto Prime Minister Marc BAZIN (since June 1992)\nPolitical parties and leaders:\n    National Front for Change and Democracy (FNCD) led by Jean-Bertrand\n    ARISTIDE, including Congress of Democratic Movements (CONACOM), Victor\n    BENOIT; National Konbite Movement (MKN), Volvick Remy JOSEPH; National\n    Alliance for Democracy and Progress (ANDP), a coalition - that broke up\n    following elections - consisting of Movement for the Installation of\n    Democracy in Haiti (MIDH), Marc BAZIN; National Progressive Revolutionary\n    Party (PANPRA), Serge GILLES; and National Patriotic Movement of November 28\n    (MNP-28), Dejean BELIZAIRE; National Agricultural and Industrial Party\n    (PAIN), Louis DEJOIE; Movement for National Reconstruction (MRN), Rene\n    THEODORE; Haitian Christian Democratic Party (PDCH), Joseph DOUZE; Assembly\n    of Progressive National Democrats (RDNP), Leslie MANIGAT; National Party of\n    Labor (PNT), Thomas DESULME; Mobilization for National Development (MDN),\n    Hubert DE RONCERAY; Democratic Movement for the Liberation of Haiti\n    (MODELH), Francois LATORTUE; Haitian Social Christian Party (PSCH), Gregoire\n    EUGENE; Movement for the Organization of the Country (MOP), Gesner COMEAU\nSuffrage:\n    universal at age 18\nElections:\n  Chamber of Deputies:\n    last held 16 December 1990, with runoff held 20 January 1991 (next to be\n    held by December 1994); results - percent of vote NA; seats - (83 total)\n    FNCD 27, ANDP 17, PDCH 7, PAIN 6, RDNP 6, MDN 5, PNT 3, MKN 2, MODELH 2, MRN\n    1, independents 5, other 2\n\n:Haiti Government\n\n  President:\n    last held 16 December 1990 (next election to be held by December 1995);\n    results - Rev. Jean-Bertrand ARISTIDE 67.5%, Marc BAZIN 14.2%, Louis DEJOIE\n    4.9%\nElections:\n  Senate:\n    last held 16 December 1990, with runoff held 20 January 1991 (next to be\n    held December 1992); results - percent of vote NA; seats - (27 total) FNCD\n    13, ANDP 6, PAIN 2, MRN 2, PDCH 1, RDNP 1, PNT 1, independent 1\nCommunists:\n    United Party of Haitian Communists (PUCH), Rene THEODORE (roughly 2,000\n    members)\nOther political or pressure groups:\n    Democratic Unity Confederation (KID), Roman Catholic Church, Confederation\n    of Haitian Workers (CTH), Federation of Workers Trade Unions (FOS),\n    Autonomous Haitian Workers (CATH), National Popular Assembly (APN)\nMember of:\n    ACCT, CARICOM (observer), CCC, ECLAC, FAO, G-77, GATT, IADB, IAEA, IBRD,\n    ICAO, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LAES,\n    LORCS, OAS, OPANAL, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO,\n    WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jean CASIMIR; Chancery at 2311 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 332-4090 through 4092; there are\n    Haitian Consulates General in Boston, Chicago, Miami, New York, and San Juan\n    (Puerto Rico)\n  US:\n    Ambassador Alvin P. ADAMS, Jr.; Embassy at Harry Truman Boulevard,\n    Port-au-Prince (mailing address is P. O. Box 1761, Port-au-Prince),\n    telephone [509] 22-0354 or 22-0368, 22-0200, 22-0612\nFlag:\n    two equal horizontal bands of blue (top) and red with a centered white\n    rectangle bearing the coat of arms, which contains a palm tree flanked by\n    flags and two cannons above a scroll bearing the motto L'UNION FAIT LA FORCE\n    (Union Makes Strength)\n\n:Haiti Economy\n\nOverview:\n    About 75% of the population live in abject poverty. Agriculture is mainly\n    small-scale subsistence farming and employs nearly three-fourths of the work\n    force. The majority of the population does not have ready access to safe\n    drinking water, adequate medical care, or sufficient food. Few social\n    assistance programs exist, and the lack of employment opportunities remains\n    one of the most critical problems facing the economy, along with soil\n    erosion and political instability. Trade sanctions applied by the\n    Organization of American States in response to the September 1991 coup\n    against President Aristide have further damaged the economy.\nGDP:\n    exchange rate conversion - $2.7 billion, per capita $440; real growth rate -\n    3.0% (1990 est.)\nInflation rate (consumer prices):\n    20% (1990 est.)\nUnemployment rate:\n    25-50% (1990 est.)\nBudget:\n    revenues $300 million; expenditures $416 million, including capital\n    expenditures of $145 million (1990 est.)\nExports:\n    $169 million (f.o.b., 1990 est.)\n  commodities:\n    light manufactures 65%, coffee 19%, other agriculture 8%, other 8%\n  partners:\n    US 84%, Italy 4%, France 3%, other industrial countries 6%, less developed\n    countries 3% (1987)\nImports:\n    $348 million (c.i.f., 1990 est.)\n  commodities:\n    machines and manufactures 34%, food and beverages 22%, petroleum products\n    14%, chemicals 10%, fats and oils 9%\n  partners:\n    US 64%, Netherlands Antilles 5%, Japan 5%, France 4%, Canada 3%, Germany 3%\n    (1987)\nExternal debt:\n    $838 million (December 1990)\nIndustrial production:\n    growth rate 0.3% (FY88); accounts for 15% of GDP\nElectricity:\n    217,000 kW capacity; 468 million kWh produced, 74 kWh per capita (1991)\nIndustries:\n    sugar refining, textiles, flour milling, cement manufacturing, tourism,\n    light assembly industries based on imported parts\nAgriculture:\n    accounts for 28% of GDP and employs 74% of work force; mostly small-scale\n    subsistence farms; commercial crops - coffee, mangoes, sugarcane and wood;\n    staple crops - rice, corn, sorghum; shortage of wheat flour\nIllicit drugs:\n    transshipment point for cocaine\nEconomic aid:\n    US commitments, including Ex-Im (1970-89), $700 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $770 million\nCurrency:\n    gourde (plural - gourdes); 1 gourde (G) = 100 centimes\nExchange rates:\n    gourdes (G) per US$1 - 5.0 (fixed rate)\nFiscal year:\n    1 October - 30 September\n\n:Haiti Communications\n\nRailroads:\n    40 km 0.760-meter narrow gauge, single-track, privately owned industrial\n    line\nHighways:\n    4,000 km total; 950 km paved, 900 km otherwise improved, 2,150 km unimproved\nInland waterways:\n    negligible; less than 100 km navigable\nPorts:\n    Port-au-Prince, Cap-Haitien\nCivil air:\n    12 major transport aircraft\nAirports:\n    13 total, 10 usable; 3 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    domestic facilities barely adequate, international facilities slightly\n    better; 36,000 telephones; broadcast stations - 33 AM, no FM, 4 TV, 2\n    shortwave; 1 Atlantic Ocean INTELSAT earth station\n\n:Haiti Defense Forces\n\nBranches:\n    Army (including Police), Navy, Air Force\nManpower availability:\n    males 15-49, 1,313,044; 706,221 fit for military service; 59,060 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $34 million, 1.5% of GDP (1988 est.)\n\n:Heard Island and McDonald Islands Geography\n\nTotal area:\n    412 km2\nLand area:\n    412 km2\nComparative area:\n    slightly less than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    101.9 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    antarctic\nTerrain:\n    Heard Island - bleak and mountainous, with an extinct volcano; McDonald\n    Islands - small and rocky\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    primarily used as research stations\nNote:\n    located 4,100 km southwest of Australia in the southern Indian Ocean\n\n:Heard Island and McDonald Islands People\n\nPopulation:\n    uninhabited\n\n:Heard Island and McDonald Islands Government\n\nLong-form name:\n    Territory of Heard Island and McDonald Islands\nType:\n    territory of Australia administered by the Antarctic Division of the\n    Department of Science in Canberra (Australia)\nCapital:\n    none; administered from Canberra, Australia\n\n:Heard Island and McDonald Islands Economy\n\nOverview:\n    no economic activity\n\n:Heard Island and McDonald Islands Communications\n\nPorts:\n    none; offshore anchorage only\n\n:Heard Island and McDonald Islands Defense Forces\n\nNote:\n    defense is the responsibility of Australia\n\n:Holy See (Vatican City) Geography\n\nTotal area:\n    0.438 km2\nLand area:\n    0.438 km2\nComparative area:\n    about 0.7 times the size of The Mall in Washington, DC\nLand boundaries:\n    3.2 km; Italy 3.2 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; mild, rainy winters (September to mid-May) with hot, dry summers\n    (May to September)\nTerrain:\n    low hill\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    urban\nNote:\n    landlocked; enclave of Rome, Italy; world's smallest state; outside the\n    Vatican City, 13 buildings in Rome and Castel Gandolfo (the pope's summer\n    residence) enjoy extraterritorial rights\n\n:Holy See (Vatican City) People\n\nPopulation:\n    802 (July 1992), growth rate 1.2% (1992)\nNationality:\n    no noun or adjectival forms\nEthnic divisions:\n    primarily Italians but also Swiss and other nationalities\nReligions:\n    Roman Catholic\nLanguages:\n    Italian, Latin, and various other languages\nLiteracy:\n    100% (male NA%, female NA%)\nLabor force:\n    high dignitaries, priests, nuns, guards, and 3,000 lay workers who live\n    outside the Vatican\nOrganized labor:\n    Association of Vatican Lay Workers, 1,800 members (1987)\n\n:Holy See (Vatican City) Government\n\nLong-form name:\n    State of the Vatican City; note - the Vatican City is the physical seat of\n    the Holy See, which is the central government of the Roman Catholic Church\nType:\n    monarchical-sacerdotal state\nCapital:\n    Vatican City\nIndependence:\n    11 February 1929 (from Italy)\nConstitution:\n    Apostolic Constitution of 1967 (effective 1 March 1968)\nNational holiday:\n    Installation Day of the Pope (John Paul II), 22 October (1978); note - Pope\n    John Paul II was elected on 16 October 1978\nExecutive branch:\n    pope\nLegislative branch:\n    unicameral Pontifical Commission\nJudicial branch:\n    none; normally handled by Italy\nLeaders:\n  Chief of State:\n    Pope JOHN PAUL II (Karol WOJTYA; since 16 October 1978)\n  Head of Government:\n    Secretary of State Archbishop Angelo SODANO\nPolitical parties and leaders:\n    none\nSuffrage:\n    limited to cardinals less than 80 years old\nElections:\n  Pope:\n    last held 16 October 1978 (next to be held after the death of the current\n    pope); results - Karol WOJTYA was elected for life by the College of\n    Cardinals\nOther political or pressure groups:\n    none (exclusive of influence exercised by church officers)\nMember of:\n    CSCE, IAEA, ICFTU, IMF (observer), INTELSAT, IOM (observer), ITU, OAS\n    (observer), UN (observer), UNCTAD, UNHCR, UPU, WIPO, WTO (observer)\nDiplomatic representation:\n    Apostolic Pro-Nuncio Archbishop Agostino CACCIAVILLAN; 3339 Massachusetts\n    Avenue NW, Washington, DC 20008; telephone (202) 333-7121\n  US:\n    Ambassador Thomas P. MELADY; Embassy at Villino Pacelli, Via Aurelia 294,\n    00165 Rome (mailing address is APO AE 09624); telephone [396] 639-0558\nFlag:\n    two vertical bands of yellow (hoist side) and white with the crossed keys of\n    Saint Peter and the papal tiara centered in the white band\n\n:Holy See (Vatican City) Economy\n\nOverview:\n    This unique, noncommercial economy is supported financially by contributions\n    (known as Peter's Pence) from Roman Catholics throughout the world, the sale\n    of postage stamps and tourist mementos, fees for admission to museums, and\n    the sale of publications. The incomes and living standards of lay workers\n    are comparable to, or somewhat better than, those of counterparts who work\n    in the city of Rome.\nBudget:\n    revenues $92 million; expenditures $178 million, including capital\n    expenditures of $NA (1992)\nElectricity:\n    5,000 kW standby capacity (1990); power supplied by Italy\nIndustries:\n    printing and production of a small amount of mosaics and staff uniforms;\n    worldwide banking and financial activities\nCurrency:\n    Vatican lira (plural - lire); 1 Vatican lira (VLit) = 100 centesimi\nExchange rates:\n    Vatican lire (VLit) per US$1 - 1,248.4 (March 1992), 1,240.6 (1991), 1,198.1\n    (1990), 1,372.1 (1989), 1,301.6 (1988), 1,296.1 (1987); note - the Vatican\n    lira is at par with the Italian lira which circulates freely\nFiscal year:\n    calendar year\n\n:Holy See (Vatican City) Communications\n\nRailroads:\n    850 m, 750 mm gauge (links with Italian network near the Rome station of\n    Saint Peter's)\nHighways:\n    none; all city streets\nTelecommunications:\n    broadcast stations - 3 AM, 4 FM, no TV; 2,000-line automatic telephone\n    exchange; no communications satellite systems\n\n:Holy See (Vatican City) Defense Forces\n\nNote:\n    defense is the responsibility of Italy; Swiss Papal Guards are posted at\n    entrances to the Vatican City\n\n:Honduras Geography\n\nTotal area:\n    112,090 km2\nLand area:\n    111,890 km2\nComparative area:\n    slightly larger than Tennessee\nLand boundaries:\n    1,520 km; Guatemala 256 km, El Salvador 342 km, Nicaragua 922 km\nCoastline:\n    820 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    dispute with El Salvador over several sections of the land boundary; dispute\n    over Golfo de Fonseca maritime boundary because of disputed sovereignty of\n    islands; unresolved maritime boundary with Nicaragua\nClimate:\n    subtropical in lowlands, temperate in mountains\nTerrain:\n    mostly mountains in interior, narrow coastal plains\nNatural resources:\n    timber, gold, silver, copper, lead, zinc, iron ore, antimony, coal, fish\nLand use:\n    arable land 14%; permanent crops 2%; meadows and pastures 30%; forest and\n    woodland 34%; other 20%; includes irrigated 1%\nEnvironment:\n    subject to frequent, but generally mild, earthquakes; damaging hurricanes\n    and floods along Caribbean coast; deforestation; soil erosion\n\n:Honduras People\n\nPopulation:\n    5,092,776 (July 1992), growth rate 2.8% (1992)\nBirth rate:\n    37 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    54 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 68 years female (1992)\nTotal fertility rate:\n    4.8 children born/woman (1992)\nNationality:\n    noun - Honduran(s); adjective - Honduran\nEthnic divisions:\n    mestizo (mixed Indian and European) 90%, Indian 7%, black 2%, white 1%\nReligions:\n    Roman Catholic about 97%; small Protestant minority\nLanguages:\n    Spanish, Indian dialects\nLiteracy:\n    73% (male 76%, female 71%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,300,000; agriculture 62%, services 20%, manufacturing 9%, construction 3%,\n    other 6% (1985)\nOrganized labor:\n    40% of urban labor force, 20% of rural work force (1985)\n\n:Honduras Government\n\nLong-form name:\n    Republic of Honduras\nType:\n    republic\nCapital:\n    Tegucigalpa\nAdministrative divisions:\n    18 departments (departamentos, singular - departamento); Atlantida,\n    Choluteca, Colon, Comayagua, Copan, Cortes, El Paraiso, Francisco Morazan,\n    Gracias a Dios, Intibuca, Islas de la Bahia, La Paz, Lempira, Ocotepeque,\n    Olancho, Santa Barbara, Valle, Yoro\nIndependence:\n    15 September 1821 (from Spain)\nConstitution:\n    11 January 1982, effective 20 January 1982\nLegal system:\n    rooted in Roman and Spanish civil law; some influence of English common law;\n    accepts ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 15 September (1821)\nExecutive branch:\n    president, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National Congress (Congreso Nacional)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justica)\nLeaders:\n  Chief of State and Head of Government:\n    President Rafael Leonardo CALLEJAS Romero (since 26 January 1990)\nPolitical parties and leaders:\n    Liberal Party (PLH) - faction leaders, Carlos FLORES Facusse (leader of\n    Florista Liberal Movement), Carlos MONTOYA (Azconista subfaction), Ramon\n    VILLEDA Bermudez and Jorge Arturo REINA (M-Lider faction); National Party\n    (PNH), Jose Celin DISCUA, party president; PNH faction leaders - Oswaldo\n    RAMOS Soto and Rafael Leonardo CALLEJAS Romero (Monarca faction); National\n    Innovation and Unity Party - Social Democrats (PINU-SD), Enrique AGUILAR\n    Cerrato Paz; Christian Democratic Party (PDCH), Jorge ILLESCAS; Democratic\n    Action (AD), Walter LOPEZ Reyes\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  National Congress:\n    last held on 26 November 1989 (next to be held November 1993); results - PNH\n    51%, PLH 43%, PDCH 1.9%, PINU-SD 1.5%, other 2.6%; seats - (128 total) PNH\n    71, PLH 55, PINU-SD 2\n  President:\n    last held on 26 November 1989 (next to be held November 1993); results -\n    Rafael Leonardo CALLEJAS (PNH) 51%, Carlos FLORES Facusse (PLH) 43.3%, other\n    5.7%\nOther political or pressure groups:\n    National Association of Honduran Campesinos (ANACH), Honduran Council of\n    Private Enterprise (COHEP), Confederation of Honduran Workers (CTH),\n    National Union of Campesinos (UNC), General Workers Confederation (CGT),\n    United Federation of Honduran Workers (FUTH), Committee for the Defense of\n    Human Rights in Honduras (CODEH), Coordinating Committee of Popular\n    Organizations (CCOP)\n\n:Honduras Government\n\nMember of:\n    BCIE, CACM, ECLAC, FAO, G-77, IADB, IBRD, ICAO, ICFTU, IDA, IFAD, IFC, ILO,\n    IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES, LAIA, LORCS, OAS, OPANAL,\n    PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Jorge Ramon HERNANDEZ Alcerro; Chancery at 3007 Tilden Street NW,\n    Washington, DC 20008; telephone (202) 966-7702; there are Honduran\n    Consulates General in Chicago, Los Angeles, Miami, New Orleans, New York,\n    and San Francisco, and Consulates in Baton Rouge, Boston, Detroit, Houston,\n    and Jacksonville\n  US:\n    Ambassador S. Crescencio ARCOS; Embassy at Avenida La Paz, Tegucigalpa\n    (mailing address is APO AA 34022); telephone [504] 32-3120\nFlag:\n    three equal horizontal bands of blue (top), white, and blue with five blue\n    five-pointed stars arranged in an X pattern centered in the white band; the\n    stars represent the members of the former Federal Republic of Central\n    America - Costa Rica, El Salvador, Guatemala, Honduras, and Nicaragua;\n    similar to the flag of El Salvador, which features a round emblem encircled\n    by the words REPUBLICA DE EL SALVADOR EN LA AMERICA CENTRAL centered in the\n    white band; also similar to the flag of Nicaragua, which features a triangle\n    encircled by the word REPUBLICA DE NICARAGUA on top and AMERICA CENTRAL on\n    the bottom, centered in the white band\n\n:Honduras Economy\n\nOverview:\n    Honduras is one of the poorest countries in the Western Hemisphere.\n    Agriculture, the most important sector of the economy, accounts for more\n    than 25% of GDP, employs 62% of the labor force, and produces two-thirds of\n    exports. Productivity remains low. Industry, still in its early stages,\n    employs nearly 9% of the labor force, accounts for 15% of GDP, and generates\n    20% of exports. The service sectors, including public administration,\n    account for 50% of GDP and employ nearly 20% of the labor force. Basic\n    problems facing the economy include rapid population growth, high\n    unemployment, sharply increased inflation, a lack of basic services, a large\n    and inefficient public sector, and the dependence of the export sector\n    mostly on coffee and bananas, which are subject to sharp price fluctuations.\n    Despite government efforts at reform and large-scale foreign assistance, the\n    economy still is unable to take advantage of its sizable natural resources.\nGDP:\n    exchange rate conversion - $5.2 billion, per capita $1,050; real growth rate\n    - 0.3% (1991 est.)\nInflation rate (consumer prices):\n    26% (1991 est.)\nUnemployment rate:\n    15% unemployed, 30-40% underemployed (1989)\nBudget:\n    revenues $1.4 billion; expenditures $1.9 billion, including capital\n    expenditures of $511 million (1990 est.)\nExports:\n    $1.0 billion (f.o.b., 1991)\n  commodities:\n    bananas, coffee, shrimp, lobster, minerals, lumber\n  partners:\n    US 52%, Germany 11%, Japan, Italy, Belgium\nImports:\n    $1.3 billion (c.i.f. 1991)\n  commodities:\n    machinery and transport equipment, chemical products, manufactured goods,\n    fuel and oil, foodstuffs\n  partners:\n    US 39%, Japan 9%, CACM, Venezuela, Mexico\nExternal debt:\n    $2.8 billion (1990)\nIndustrial production:\n    growth rate 2.9% (1989); accounts for 15% of GDP\nElectricity:\n    575,000 kW capacity; 1,850 million kWh produced, 374 kWh per capita (1991)\nIndustries:\n    agricultural processing (sugar and coffee), textiles, clothing, wood\n    products\nAgriculture:\n    most important sector, accounting for more than 25% of GDP, over 60% of the\n    labor force, and two-thirds of exports; principal products include bananas,\n    coffee, timber, beef, citrus fruit, shrimp; importer of wheat\nIllicit drugs:\n    illicit producer of cannabis, cultivated on small plots and used principally\n    for local consumption; transshipment point for cocaine\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.1 billion\nCurrency:\n    lempira (plural - lempiras); 1 lempira (L) = 100 centavos\n\n:Honduras Economy\n\nExchange rates:\n    lempiras (L) per US$1 - 5.4 (fixed rate); 5.70 parallel black-market rate\n    (November 1990)\nFiscal year:\n    calendar year\n\n:Honduras Communications\n\nRailroads:\n    785 km total; 508 km 1.067-meter gauge, 277 km 0.914-meter gauge\nHighways:\n    8,950 km total; 1,700 km paved, 5,000 km otherwise improved, 2,250 km\n    unimproved earth\nInland waterways:\n    465 km navigable by small craft\nPorts:\n    Puerto Castilla, Puerto Cortes, San Lorenzo\nMerchant marine:\n    201 ships (1,000 GRT or over) totaling 629,134 GRT/939,289 DWT; includes 2\n    passenger-cargo, 127 cargo, 17 refrigerated - cargo, - 7 - container, - 2 -\n    roll-on/roll-off cargo, 19 petroleum tanker, 2 chemical tanker, 3\n    specialized tanker, 1 vehicle carrier, 18 bulk, 2 passenger, 1 short-sea\n    passenger; note - a flag of convenience registry; Republics of the former\n    USSR own 10 ships under the Honduran flag\nCivil air:\n    6 major transport aircraft\nAirports:\n    171 total, 133 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 4 with runways 2,440-3,659 m; 12 with runways 1,220-2,439 m\nTelecommunications:\n    improved, but still inadequate; connection into Central American Microwave\n    System; 35,100 telephones; broadcast stations - 176 AM, no FM, 28 TV, 7\n    shortwave; 2 Atlantic Ocean INTELSAT earth stations\n\n:Honduras Defense Forces\n\nBranches:\n    Army, Navy (including Marines), Air Force, Public Security Forces (FUSEP)\nManpower availability:\n    males 15-49, 1,148,376; 684,375 fit for military service; 57,028 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $43.4 million, about 1% of GDP (1992 est.)\n\n:Hong Kong Geography\n\nTotal area:\n    1,040 km2\nLand area:\n    990 km2\nComparative area:\n    slightly less than six times the size of Washington, DC\nLand boundaries:\n    30 km; China 30 km\nCoastline:\n    733 km\nMaritime claims:\n  Exclusive fishing zone:\n    3 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical monsoon; cool and humid in winter, hot and rainy from spring\n    through summer, warm and sunny in fall\nTerrain:\n    hilly to mountainous with steep slopes; lowlands in north\nNatural resources:\n    outstanding deepwater harbor, feldspar\nLand use:\n    arable land 7%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 12%; other 79%; includes irrigated 3%\nEnvironment:\n    more than 200 islands; occasional typhoons\n\n:Hong Kong People\n\nPopulation:\n    5,889,095 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    - 2 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    76 years male, 83 years female (1992)\nTotal fertility rate:\n    1.4 children born/woman (1992)\nNationality:\n    adjective - Hong Kong\nEthnic divisions:\n    Chinese 98%, other 2%\nReligions:\n    eclectic mixture of local religions 90%, Christian 10%\nLanguages:\n    Chinese (Cantonese), English\nLiteracy:\n    77% (male 90%, female 64%) age 15 and over having ever attended school\n    (1971)\nLabor force:\n    2,800,000 (1990); manufacturing 28.5%, wholesale and retail trade,\n    restaurants, and hotels 27.9%, services 17.7%, financing, insurance, and\n    real estate 9.2%, transport and communications 4.5%, construction 2.5%,\n    other 9.7% (1989)\nOrganized labor:\n    16% of labor force (1990)\n\n:Hong Kong Government\n\nLong-form name:\n    none; abbreviated HK\nType:\n    dependent territory of the UK; scheduled to revert to China in 1997\nCapital:\n    Victoria\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK); the UK signed an agreement with China\n    on 19 December 1984 to return Hong Kong to China on 1 July 1997; in the\n    joint declaration, China promises to respect Hong Kong's existing social and\n    economic systems and lifestyle for 50 years after transition\nConstitution:\n    unwritten; partly statutes, partly common law and practice; new Basic Law\n    approved in March 1990 in preparation for 1997\nLegal system:\n    based on English common law\nNational holiday:\n    Liberation Day, 29 August (1945)\nExecutive branch:\n    British monarch, governor, chief secretary of the Executive Council\nLegislative branch:\n    Legislative Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Governor-designate Chris PATTEN (since July 1992); Chief Secretary Sir David\n    Robert FORD (since February 1987)\nSuffrage:\n    direct election - universal at age 21 as a permanent resident living in the\n    territory of Hong Kong for the past seven years; indirect election - limited\n    to about 100,000 professionals of electoral college and functional\n    constituencies\nElections:\n  Legislative Council:\n    indirect elections last held 12 September 1991 and direct elections were\n    held 15 September 1991 (next to be held for the first time in September\n    1995); results - percent of vote by party NA; seats - (60 total; 21\n    indirectly elected by functional constituencies, 18 directly elected, 18\n    appointed by governor, 3 ex officio members); indirect elections - number of\n    seats by functional constituency NA; direct elections - UDHK 12, Meeting\n    Point 3, ADPL 1, other 2\nCommunists:\n    5,000 (est.) cadres affiliated with Communist Party of China\nOther political or pressure groups:\n    Federation of Trade Unions (pro-China), Hong Kong and Kowloon Trade Union\n    Council (pro-Taiwan), Confederation of Trade Unions (prodemocracy), Hong\n    Kong General Chamber of Commerce, Chinese General Chamber of Commerce\n    (pro-China), Federation of Hong Kong Industries, Chinese Manufacturers'\n    Association of Hong Kong, Hong Kong Professional Teachers' Union, Hong Kong\n    Alliance in Support of the Patriotic Democratic Movement in China\nMember of:\n    APEC, AsDB, CCC, ESCAP (associate), GATT, ICFTU, IMO (associate), IOC, ISO\n    (correspondent), WCL, WMO\n\n:Hong Kong Government\n\nDiplomatic representation:\n    as a dependent territory of the UK, the interests of Hong Kong in the US are\n    represented by the UK\n  US:\n    Consul General Richard L. WILLIAMS; Consulate General at 26 Garden Road,\n    Hong Kong (mailing address is Box 30, Hong Kong, or FPO AP 96522-0002);\n    telephone [852] 239-011\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant with the Hong\n    Kong coat of arms on a white disk centered on the outer half of the flag;\n    the coat of arms contains a shield (bearing two junks below a crown) held by\n    a lion (representing the UK) and a dragon (representing China) with another\n    lion above the shield and a banner bearing the words HONG KONG below the\n    shield\n\n:Hong Kong Economy\n\nOverview:\n    Hong Kong has a bustling free market economy with few tariffs or nontariff\n    barriers. Natural resources are limited, and food and raw materials must be\n    imported. Manufacturing accounts for about 18% of GDP, employs 28% of the\n    labor force, and exports about 90% of its output. Real GDP growth averaged a\n    remarkable 8% in 1987-88, then slowed to 2.5-3.0% in 1989-90. Unemployment,\n    which has been declining since the mid-1980s, is now about 2%. A shortage of\n    labor continues to put upward pressure on prices and the cost of living.\n    Short-term prospects remain solid so long as major trading partners continue\n    to be reasonably prosperous. The crackdown in China in 1989-91 casts a\n    shadow over the longer term economic outlook.\nGDP:\n    exchange rate conversion - $80.9 billion, per capita $13,800; real growth\n    rate 3.8% (1991 est.)\nInflation rate (consumer prices):\n    12.0% (1991 est.)\nUnemployment rate:\n    2.0% (1991 est.)\nBudget:\n    $8.8 billion (FY90)\nExports:\n    $82.0 billion (f.o.b., 1990), including reexports of $53.1 billion\n  commodities:\n    clothing, textiles, yarn and fabric, footwear, electrical appliances,\n    watches and clocks, toys\n  partners:\n    China 25%, US 24%, Germany 7%, Japan 6%, UK 2%, (1990)\nImports:\n    $82.4 billion (c.i.f., 1990)\n  commodities:\n    foodstuffs, transport equipment, raw materials, semimanufactures, petroleum\n  partners:\n    China 37%, Japan 16%, Taiwan 9%, US 8% (1990)\nExternal debt:\n    $9.5 billion (December 1990 est.)\nIndustrial production:\n    growth rate 4% 1991 (est)\nElectricity:\n    8,600,000 kW capacity; 25,637 million kWh produced, 4,378 kWh per capita\n    (1991)\nIndustries:\n    textiles, clothing, tourism, electronics, plastics, toys, watches, clocks\nAgriculture:\n    minor role in the economy; rice, vegetables, dairy products; less than 20%\n    self-sufficient; shortages of rice, wheat, water\nIllicit drugs:\n    a hub for Southeast Asian heroin trade; transshipment and major financial\n    and money-laundering center\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $152 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $923 million\nCurrency:\n    Hong Kong dollar (plural - dollars); 1 Hong Kong dollar (HK$) = 100 cents\nExchange rates:\n    Hong Kong dollars (HK$) per US$ - 7.800 (1991), 7.790 (1990), 7.800 (1989),\n    7.810 (1988), 7.760 (1987); note - linked to the US dollar at the rate of\n    about 7.8 HK$ per 1 US$ since 1985\nFiscal year:\n    1 April - 31 March\n\n:Hong Kong Communications\n\nRailroads:\n    35 km 1.435-meter standard gauge, government owned\nHighways:\n    1,484 km total; 794 km paved, 306 km gravel, crushed stone, or earth\nPorts:\n    Hong Kong\nMerchant marine:\n    142 ships (1,000 GRT or over), totaling 5,035,223 GRT/8,598,134 DWT;\n    includes 1 passenger, 1 short-sea passenger, 15 cargo, 5 refrigerated cargo,\n    26 container, 13 petroleum tanker, 1 chemical tanker, 6 combination ore/oil,\n    5 liquefied gas, 68 bulk, 1 combination bulk; note - a flag of convenience\n    registry; ships registered in Hong Kong fly the UK flag, and an estimated\n    500 Hong Kong - owned ships are registered elsewhere\nCivil air:\n    16 major transport aircraft\nAirports:\n    2 total; 2 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    modern facilities provide excellent domestic and international services;\n    3,000,000 telephones; microwave transmission links and extensive optical\n    fiber transmission network; broadcast stations - 6 AM, 6 FM, 4 TV; 1 British\n    Broadcasting Corporation (BBC) repeater station and 1 British Forces\n    Broadcasting Service repeater station; 2,500,000 radio receivers; 1,312,000\n    TV sets (1,224,000 color TV sets); satellite earth stations - 1 Pacific\n    Ocean INTELSAT and 2 Indian Ocean INTELSAT; coaxial cable to Guangzhou,\n    China; links to 5 international submarine cables providing access to ASEAN\n    member nations, Japan, Taiwan, Australia, Middle East, and Western Europe\n\n:Hong Kong Defense Forces\n\nBranches:\n    Headquarters of British Forces, Royal Navy, Royal Air Force, Royal Hong Kong\n    Auxiliary Air Force, Royal Hong Kong Police Force\nManpower availability:\n    males 15-49, 1,732,360; 1,334,923 fit for military service; 46,285 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $300 million, 0.5% of GDP (1989 est.); this\n    represents one-fourth of the total cost of defending itself, the remainder\n    being paid by the UK\nNote:\n    defense is the responsibility of the UK\n\n:Howland Island Geography\n\nTotal area:\n    1.6 km2\nLand area:\n    1.6 km2\nComparative area:\n    about 2.7 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    6.4 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    equatorial; scant rainfall, constant wind, burning sun\nTerrain:\n    low-lying, nearly level, sandy, coral island surrounded by a narrow fringing\n    reef; depressed central area\nNatural resources:\n    guano (deposits worked until late 1800s)\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 5%; other 95%\nEnvironment:\n    almost totally covered with grasses, prostrate vines, and low-growing\n    shrubs; small area of trees in the center; lacks fresh water; primarily a\n    nesting, roosting, and foraging habitat for seabirds, shorebirds, and marine\n    wildlife; feral cats\nNote:\n    remote location 2,575 km southwest of Honolulu in the North Pacific Ocean,\n    just north of the Equator, about halfway between Hawaii and Australia\n\n:Howland Island People\n\nPopulation:\n    uninhabited\nPopulation:\n  note:\n    American civilians evacuated in 1942 after Japanese air and naval attacks\n    during World War II; occupied by US military during World War II, but\n    abandoned after the war; public entry is by special-use permit only and\n    generally restricted to scientists and educators\n\n:Howland Island Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US administered by the Fish and Wildlife\n    Service of the US Department of the Interior as part of the National\n    Wildlife Refuge System\nCapital:\n    none; administered from Washington, DC\n\n:Howland Island Economy\n\nOverview:\n    no economic activity\n\n:Howland Island Communications\n\nPorts:\n    none; offshore anchorage only, one boat landing area along the middle of the\n    west coast\nAirports:\n    airstrip constructed in 1937 for scheduled refueling stop on the\n    round-the-world flight of Amelia Earhart and Fred Noonan - they left Lae,\n    New Guinea, for Howland Island, but were never seen again; the airstrip is\n    no longer serviceable\nNote:\n    Earhart Light is a day beacon near the middle of the west coast that was\n    partially destroyed during World War II, but has since been rebuilt in\n    memory of famed aviatrix Amelia Earhart\n\n:Howland Island Defense Forces\n\nNote:\n    defense is the responsibility of the US; visited annually by the US Coast\n    Guard\n\n:Hungary Geography\n\nTotal area:\n    93,030 km2\nLand area:\n    92,340 km2\nComparative area:\n    slightly smaller than Indiana\nLand boundaries:\n    2,113 km; Austria 366 km, Slovenia 82 km, Czechoslovakia 676 km, Romania 443\n    km, Croatia 292 km, Serbia and Montenegro 151 km, Ukraine 103 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Gabcikovo Dam dispute with Czechoslovakia\nClimate:\n    temperate; cold, cloudy, humid winters; warm summers\nTerrain:\n    mostly flat to rolling plains\nNatural resources:\n    bauxite, coal, natural gas, fertile soils\nLand use:\n    arable land 54%; permanent crops 3%; meadows and pastures 14%; forest and\n    woodland 18%; other 11%; includes irrigated 2%\nEnvironment:\n    levees are common along many streams, but flooding occurs almost every year\nNote:\n    landlocked; strategic location astride main land routes between Western\n    Europe and Balkan Peninsula as well as between Ukraine and Mediterranean\n    basin\n\n:Hungary People\n\nPopulation:\n    10,333,327 (July 1992), growth rate - 0.1% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    14 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 75 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Hungarian(s); adjective - Hungarian\nEthnic divisions:\n    Hungarian 96.6%, Gypsy 5.8%, German 1.6%, Slovak 1.1%, Southern Slav 0.3%,\n    Romanian 0.2%\nReligions:\n    Roman Catholic 67.5%, Calvinist 20.0%, Lutheran 5.0%, atheist and other 7.5%\nLanguages:\n    Hungarian 98.2%, other 1.8%\nLiteracy:\n    99% (male 99%, female 98%) age 15 and over can read and write (1980)\nLabor force:\n    5.4 million; services, trade, government, and other 43.2%, industry 30.9%,\n    agriculture 18.8%, construction 7.1% (1991)\nOrganized labor:\n    45-55% of labor force; Central Council of Hungarian Trade Unions (SZOT)\n    includes 19 affiliated unions, all controlled by the government; independent\n    unions legal; may be as many as 12 small independent unions in operation\n\n:Hungary Government\n\nLong-form name:\n    Republic of Hungary\nType:\n    republic\nCapital:\n    Budapest\nAdministrative divisions:\n    19 counties (megyek, singular - megye) and 1 capital city* (fovaros);\n    Bacs-Kiskun, Baranya, Bekes, Borsod-Abauj-Zemplen, Budapest*, Csongrad,\n    Fejer, Gyor-Moson-Sopron, Hajdu-Bihar, Heves, Jasz-Nagykun-Szolnok,\n    Komarom-Esztergom, Nograd, Pest, Somogy, Szabolcs-Szatmar-Bereg, Tolna, Vas,\n    Veszprem, Zala\nIndependence:\n    1001, unification by King Stephen I\nConstitution:\n    18 August 1949, effective 20 August 1949, revised 19 April 1972; 18 October\n    1989 revision ensured legal rights for individuals and constitutional checks\n    on the authority of the prime minister and also established the principle of\n    parliamentary oversight\nLegal system:\n    in process of revision, moving toward rule of law based on Western model\nNational holiday:\n    October 23 (1956); commemorates the Hungarian uprising\nExecutive branch:\n    president, prime minister\nLegislative branch:\n    unicameral National Assembly (Orszaggyules)\nJudicial branch:\n    Supreme Court, may be restructured as part of ongoing government overhaul\nLeaders:\n  Chief of State:\n    President Arpad GONCZ (since 3 August 1990; previously interim President\n    from 2 May 1990)\n  Head of Government:\n    Prime Minister Jozsef ANTALL (since 23 May 1990)\nPolitical parties and leaders:\n    Democratic Forum, Jozsef ANTALL, chairman; Dr. Lajos FUR, acting president;\n    Free Democrats, Peter TOLGYESSY, chairman; Independent Smallholders, Jozsef\n    TORGYAN, president; Hungarian Socialist Party (MSP), Gyula HORN, chairman;\n    Young Democrats, Gabor FODOR, head; Christian Democrats, Dr. Lazlo SURJAN,\n    president; note - the Hungarian Socialist (Communist) Workers' Party (MSZMP)\n    renounced Communism and became the Hungarian Socialist Party (MSP) in\n    October 1989; there is still a small (fringe) MSZMP\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 3 August 1990 (next to be held August 1994); results - President\n    GONCZ elected by popular vote; note - President GONCZ was elected by the\n    National Assembly with a total of 294 votes out of 304 as interim President\n    from 2 May 1990 until elected President\n  National Assembly:\n    last held on 25 March 1990 (first round, with the second round held 8 April\n    1990); results - percent of vote by party NA; seats - (386 total) Democratic\n    Forum 162, Free Democrats 90, Independent Smallholders 45, Hungarian\n    Socialist Party (MSP) 33, Young Democrats 22, Christian Democrats 21,\n    independents or jointly sponsored candidates 13\nCommunists:\n    fewer than 100,000 (December 1989)\n\n:Hungary Government\n\nMember of:\n    BIS, CCC, CE, CSCE, ECE, FAO, G-9, GATT, HG, IAEA, IBRD, ICAO, IDA, IFC,\n    ILO, IMF, IMO, INTERPOL, IOC, IOM (observer), ISO, ITU, LORCS, NACC, NSG,\n    PCA, UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UPU, WHO, WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Pal TAR; Chancery at 3910 Shoemaker Street NW, Washington, DC\n    20008; telephone (202) 362-6730; there is a Hungarian Consulate General in\n    New York\n  US:\n    Ambassador Charles THOMAS; Embassy at V. Szabadsag Ter 12, Budapest (mailing\n    address is APO AE 09213-5270); telephone [36] (1) 112-6450; FAX 132-8934\nFlag:\n    three equal horizontal bands of red (top), white, and green\n\n:Hungary Economy\n\nOverview:\n    Hungary is in the midst of a difficult transition between a command and a\n    market economy. Agriculture is an important sector, providing sizable export\n    earnings and meeting domestic food needs. Industry accounts for about 40% of\n    GDP and 30% of employment. Hungary claims that less than 20% of foreign\n    trade is now with former CEMA countries, while about 70% is with OECD\n    members. Hungary's economic reform programs during the Communist era gave it\n    a head start in creating a market economy and attracting foreign investment.\n    In 1990, Hungary received half of all foreign investment in Eastern Europe\n    and in 1991 received the largest single share. The growing private sector\n    accounts for one-quarter to one-third of national output according to\n    unofficial estimates. Privatization of state enterprises is progressing,\n    although excessive redtape, bureaucratic oversight, and uncertainties about\n    pricing have slowed the process. Escalating unemployment and high rates of\n    inflation may impede efforts to speed up privatization and budget reform,\n    while Hungary's heavy foreign debt will make the government reluctant to\n    introduce full convertability of the forint before 1993.\nGDP:\n    purchasing power equivalent - $60.1 billion, per capita $5,700; real growth\n    rate - 7% (1991 est.)\nInflation rate (consumer prices):\n    34% (1991 est.)\nUnemployment rate:\n    8.0% (1991)\nBudget:\n    revenues $12.7 billion; expenditures $13.6 billion (1992 planned)\nExports:\n    $10.2 billion (f.o.b. 1991)\n  commodities:\n    capital goods 25.9%, foods 23%, consumer goods 16.5%, fuels 2.4%, other\n    32.2%\n  partners:\n    USSR and Eastern Europe 31.9%, EC 32.2%, EFTA 12% (1990)\nImports:\n    $11.7 billion (f.o.b., 1991)\n  commodities:\n    capital goods 31.6%, fuels 13.8%, manufactured consumer goods 14.6%,\n    agriculture 6%, other 34.0%\n  partners:\n    USSR and Eastern Europe 34%, EC 31%, EFTA 15.4%\nExternal debt:\n    $22.7 billion (January 1991)\nIndustrial production:\n    growth rate - 20% (1991 est.)\nElectricity:\n    6,967,000 kW capacity; 28,376 million kWh produced, 2,750 kWh per capita\n    (1990)\nIndustries:\n    mining, metallurgy, engineering industries, processed foods, textiles,\n    chemicals (especially pharmaceuticals), trucks, buses\nAgriculture:\n    including forestry, accounts for about 15% of GDP and 19% of employment;\n    highly diversified crop-livestock farming; principal crops - wheat, corn,\n    sunflowers, potatoes, sugar beets; livestock - hogs, cattle, poultry, dairy\n    products; self-sufficient in food output\nIllicit drugs:\n    transshipment point for Southeast Asia heroin transiting the Balkan route\n\n:Hungary Economy\n\nEconomic aid:\n    recipient - $9.1 billion in assistance from OECD countries (from 1st quarter\n    1990 to end of 2nd quarter 1991)\nCurrency:\n    forint (plural - forints); 1 forint (Ft) = 100 filler\nFiscal year:\n    calendar year\n\n:Hungary Communications\n\nRailroads:\n    7,765 km total; 7,508 km 1.435-meter standard gauge, 222 km narrow gauge\n    (mostly 0.760-meter), 35 km 1.520-meter broad gauge; 1,147 km double track,\n    2,161 km electrified; all government owned (1991)\nHighways:\n    130,014 km total; 29,715 km national highway system - 26,834 km asphalt, 142\n    km concrete, 51 km stone and road brick, 2,276 km macadam, 412 km unpaved;\n    58,495 km country roads (66% unpaved), and 41,804 km (est.) other roads (70%\n    unpaved) (1988)\nInland waterways:\n    1,622 km (1988)\nPipelines:\n    crude oil 1,204 km; petroleum products 630 km; natural gas 3,895 km (1986)\nPorts:\n    Budapest and Dunaujvaros are river ports on the Danube; maritime outlets are\n    Rostock (Germany), Gdansk (Poland), Gdynia (Poland), Szczecin (Poland),\n    Galati (Romania), and Braila (Romania)\nMerchant marine:\n    14 cargo ships (1,000 GRT or over) and 1 bulk totaling 85,489 GRT/119,520\n    DWT\nCivil air:\n    28 major transport aircraft\nAirports:\n    90 total, 90 usable; 20 with permanent-surface runways; 2 with runways over\n    3,659 m; 10 with runways 2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    automatic telephone network based on radio relay system; 1.9 million phones;\n    telephone density is at 17 per 100 inhabitants; 49% of all phones are in\n    Budapest; 12-15 year wait for a phone; 16,000 telex lines (June 1990);\n    broadcast stations - 32 AM, 15 FM, 41 TV (8 Soviet TV repeaters); 4.2\n    million TVs (1990); 1 satellite ground station using INTELSAT and\n    Intersputnik\n\n:Hungary Defense Forces\n\nBranches:\n    Ground Forces, Air and Air Defense Forces, Border Guard, Territorial Defense\nManpower availability:\n    males 15-49, 2,619,277; 2,092,867 fit for military service; 87,469 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - 60.8 billion forints, 1.7% of GNP (1992 est.);\n    note - conversion of defense expenditures into US dollars using the current\n    exchange rate would produce misleading results\n\n:Iceland Geography\n\nTotal area:\n    103,000 km2\nLand area:\n    100,250 km2\nComparative area:\n    slightly smaller than Kentucky\nLand boundaries:\n    none\nCoastline:\n    4,988 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Rockall continental shelf dispute involving Denmark, Ireland, and the UK\n    (Ireland and the UK have signed a boundary agreement in the Rockall area)\nClimate:\n    temperate; moderated by North Atlantic Current; mild, windy winters; damp,\n    cool summers\nTerrain:\n    mostly plateau interspersed with mountain peaks, icefields; coast deeply\n    indented by bays and fiords\nNatural resources:\n    fish, hydroelectric and geothermal power, diatomite\nLand use:\n    arable land NEGL%; permanent crops 0%; meadows and pastures 23%; forest and\n    woodland 1%; other 76%\nEnvironment:\n    subject to earthquakes and volcanic activity\nNote:\n    strategic location between Greenland and Europe; westernmost European\n    country\n\n:Iceland People\n\nPopulation:\n    259,012 (July 1992), growth rate 0.9% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    4 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    76 years male, 81 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Icelander(s); adjective - Icelandic\nEthnic divisions:\n    homogeneous mixture of descendants of Norwegians and Celts\nReligions:\n    Evangelical Lutheran 96%, other Protestant and Roman Catholic 3%, none 1%\n    (1988)\nLanguages:\n    Icelandic\nLiteracy:\n    100% (male NA%, female NA%) age 15 and over can read and write (1976 est.)\nLabor force:\n    134,429; commerce, finance, and services 55.4%, other manufacturing 14.3%.,\n    agriculture 5.8%, fish processing 7.9%, fishing 5.0% (1986)\nOrganized labor:\n    60% of labor force\n\n:Iceland Government\n\nLong-form name:\n    Republic of Iceland\nType:\n    republic\nCapital:\n    Reykjavik\nAdministrative divisions:\n    23 counties (syslar, singular - sysla) and 14 independent towns*\n    (kaupstadhir, singular - kaupstadhur); Akranes*, Akureyri*, Arnessysla,\n    Austur-Bardhastrandarsysla, Austur-Hunavatnssysla, Austur-Skaftafellssysla,\n    Borgarfjardharsysla, Dalasysla, Eyjafjardharsysla, Gullbringusysla,\n    Hafnarfjordhur*, Husavik*, Isafjordhur*, Keflavik*, Kjosarsysla, Kopavogur*,\n    Myrasysla, Neskaupstadhur*, Nordhur-Isafjardharsysla, Nordhur-Mulasys-la,\n    Nordhur-Thingeyjarsysla, Olafsfjordhur*, Rangarvallasysla, Reykjavik*,\n    Saudharkrokur*, Seydhisfjordhur*, Siglufjordhur*, Skagafjardharsysla,\n    Snaefellsnes-og Hnappadalssysla, Strandasysla, Sudhur-Mulasysla,\n    Sudhur-Thingeyjarsysla, Vesttmannaeyjar*, Vestur-Bardhastrandarsysla,\n    Vestur-Hunavatnssysla, Vestur-Isafjardharsysla, Vestur-Skaftafellssysla\nIndependence:\n    17 June 1944 (from Denmark)\nConstitution:\n    16 June 1944, effective 17 June 1944\nLegal system:\n    civil law system based on Danish law; does not accept compulsory ICJ\n    jurisdiction\nNational holiday:\n    Anniversary of the Establishment of the Republic, 17 June (1944)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral Parliament (Althing)\nJudicial branch:\n    Supreme Court (Haestirettur)\nLeaders:\n  Chief of State:\n    President Vigdis FINNBOGADOTTIR (since 1 August 1980)\n  Head of Government:\n    Prime Minister David ODDSSON (since 30 April 1991)\nPolitical parties and leaders:\n    Independence Party (conservative), David ODDSSON; Progressive Party,\n    Steingrimur HERMANNSSON; Social Democratic Party, Jon Baldvin HANNIBALSSON;\n    People's Alliance (left socialist), Olafur Ragnar GRIMSSON; Citizens Party\n    (conservative nationalist), Julius SOLNES; Women's List\nSuffrage:\n    universal at age 20\nElections:\n  President:\n    last held on 29 June 1980 (next scheduled for June 1992); results - there\n    were no elections in 1984 and 1988 as President Vigdis FINNBOGADOTTIR was\n    unopposed\n  Althing:\n    last held on 20 April 1991 (next to be held by April 1995); results -\n    Independence Party 38.6%, Progressive Party 18.9%, Social Democratic Party\n    15.5%, People's Alliance 14.4%, Womens List 8.13%, Liberals 1.2%, other\n    3.27% seats - (63 total) Independence 26, Progressive 13, Social Democratic\n    10, People's Alliance 9, Womens List 5\n\n:Iceland Government\n\nMember of:\n    BIS, CCC, CE, CSCE, EBRD, ECE, EFTA, FAO, GATT, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO\n    (correspondent), ITU, LORCS, NACC, NATO, NC, NEA, NIB, OECD, PCA, UN,\n    UNCTAD, UNESCO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Tomas A. TOMASSON; Chancery at 2022 Connecticut Avenue NW,\n    Washington, DC 20008; telephone (202) 265-6653 through 6655; there is an\n    Icelandic Consulate General in New York\n  US:\n    Ambassador Charles E. COBB, Jr.; Embassy at Laufasvegur 21, Box 40,\n    Reykjavik (mailing address is FPO AE 09728-0340); telephone [354] (1) 29100\nFlag:\n    blue with a red cross outlined in white that extends to the edges of the\n    flag; the vertical part of the cross is shifted to the hoist side in the\n    style of the Dannebrog (Danish flag)\n\n:Iceland Economy\n\nOverview:\n    Iceland's prosperous Scandinavian-type economy is basically capitalistic,\n    but with extensive welfare measures, low unemployment, and comparatively\n    even distribution of income. The economy is heavily dependent on the fishing\n    industry, which provides nearly 75% of export earnings. In the absence of\n    other natural resources, Iceland's economy is vulnerable to changing world\n    fish prices. The economic improvements resulting from climbing fish prices\n    in 1990 and a noninflationary labor agreement probably will be reversed by\n    tighter fish quotas and a delay in the construction of an aluminum smelting\n    plant. The conservative government's economic priorities include reducing\n    the budget and current account deficits, containing inflation, revising\n    agricultural and fishing policies, diversifying the economy, and tying the\n    krona to the EC's European currency unit in 1993. The fishing industries -\n    notably the shrimp industry - are experiencing a series of bankruptcies and\n    mergers. Inflation has continued to drop sharply from 20% in 1989 to about\n    7.5% in 1991 and possibly 3% in 1992, while unemployment is expected to\n    increase to 2.5%. GDP is expected to contract by nearly 4% in 1992.\nGDP:\n    purchasing power equivalent - $4.2 billion, per capita $16,200; real growth\n    rate 0.3% (1991)\nInflation rate (consumer prices):\n    7.5% (1991)\nUnemployment rate:\n    1.8% (1991)\nBudget:\n    revenues $1.7 billion; expenditures $1.9 billion, including capital\n    expenditures of $NA million (1991 est.)\nExports:\n    $1.6 billion (f.o.b., 1991)\n  commodities:\n    fish and fish products, animal products, aluminum, diatomite\n  partners:\n    EC 67.7% (UK 25.3%, FRG 12.7%), US 9.9%, Japan 6% (1990)\nImports:\n    $1.7 billion (c.i.f., 1991)\n  commodities:\n    machinery and transportation equipment, petroleum, foodstuffs, textiles\n  partners:\n    EC 49.8% (FRG 12.4%, Denmark 8.6%, UK 8.1%), US 14.4%, Japan 5.6% (1990)\nExternal debt:\n    $3 billion (1990)\nIndustrial production:\n    growth rate 1.75% (1991 est.)\nElectricity:\n    1,063,000 kW capacity; 5,165 million kWh produced, 20,780 kWh per capita\n    (1991)\nIndustries:\n    fish processing, aluminum smelting, ferro-silicon production, hydropower\nAgriculture:\n    accounts for about 25% of GDP (including fishing); fishing is most important\n    economic activity, contributing nearly 75% to export earnings; principal\n    crops - potatoes and turnips; livestock - cattle, sheep; self-sufficient in\n    crops; fish catch of about 1.4 million metric tons in 1989\nEconomic aid:\n    US commitments, including Ex-Im (FY70-81), $19.1 million\nCurrency:\n    krona (plural - kronur); 1 Icelandic krona (IKr) = 100 aurar\n\n:Iceland Economy\n\nExchange rates:\n    Icelandic kronur (IKr) per US$1 - 57.277 (January 1992), 58.996 (1991),\n    58.284 (1990), 57.042 (1989), 43.014 (1988), 38.677 (1987)\nFiscal year:\n    calendar year\n\n:Iceland Communications\n\nHighways:\n    12,343 km total; 166 km bitumen and concrete; 1,284 km bituminous treated\n    and gravel; 10,893 km earth\nPorts:\n    Reykjavik, Akureyri, Hafnarfjordhur, Keflavik, Seydhisfjordhur,\n    Siglufjordhur, Vestmannaeyjar\nMerchant marine:\n    12 ships (1,000 GRT or over) totaling 37,969 GRT/57,060 DWT; includes 5\n    cargo, 3 refrigerated cargo, 2 roll-on/roll-off cargo, 1 petroleum tanker, 1\n    chemical tanker\nCivil air:\n    20 major transport aircraft\nAirports:\n    94 total, 89 usable; 4 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 12 with runways 1,220-2,439 m\nTelecommunications:\n    adequate domestic service; coaxial and fiber-optical cables and radio relay\n    for trunk network; 135,000 telephones; broadcast stations - 19 AM, 30 (43\n    repeaters) FM, 13 (132 repeaters) TV; 2 submarine cables; 1 Atlantic Ocean\n    INTELSAT earth station carries majority of international traffic\n\n:Iceland Defense Forces\n\nBranches:\n    no armed forces; Police, Coast Guard; Iceland's defense is provided by the\n    US-manned Icelandic Defense Force (IDF) headquartered at Keflavik\nManpower availability:\n    males 15-49, 69,072; 61,556 fit for military service; no conscription or\n    compulsory military service\nDefense expenditures:\n    none\n\n:India Geography\n\nTotal area:\n    3,287,590 km2\nLand area:\n    2,973,190 km2\nComparative area:\n    slightly more than one-third the size of the US\nLand boundaries:\n    14,103 km; Bangladesh 4,053 km, Bhutan 605 km, Burma 1,463 km, China 3,380,\n    Nepal 1,690 km, Pakistan 2,912 km\nCoastline:\n    7,000 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    boundaries with Bangladesh, China, and Pakistan; water sharing problems with\n    downstream riparians, Bangladesh over the Ganges and Pakistan over the Indus\nClimate:\n    varies from tropical monsoon in south to temperate in north\nTerrain:\n    upland plain (Deccan Plateau) in south, flat to rolling plain along the\n    Ganges, deserts in west, Himalayas in north\nNatural resources:\n    coal (fourth-largest reserves in the world), iron ore, manganese, mica,\n    bauxite, titanium ore, chromite, natural gas, diamonds, crude oil, limestone\nLand use:\n    arable land 55%; permanent crops 1%; meadows and pastures 4%; forest and\n    woodland 23%; other 17%; includes irrigated 13%\nEnvironment:\n    droughts, flash floods, severe thunderstorms common; deforestation; soil\n    erosion; overgrazing; air and water pollution; desertification\nNote:\n    dominates South Asian subcontinent; near important Indian Ocean trade routes\n\n:India People\n\nPopulation:\n    886,362,180 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    30 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    81 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    57 years male, 58 years female (1992)\nTotal fertility rate:\n    3.7 children born/woman (1992)\nNationality:\n    noun - Indian(s); adjective - Indian\nEthnic divisions:\n    Indo-Aryan 72%, Dravidian 25%, Mongoloid and other 3%\nReligions:\n    Hindu 82.6%, Muslim 11.4%, Christian 2.4%, Sikh 2.0%, Buddhist 0.7%, Jains\n    0.5%, other 0.4%\nLanguages:\n    Hindi, English, and 14 other official languages - Bengali, Telugu, Marathi,\n    Tamil, Urdu, Gujarati, Malayalam, Kannada, Oriya, Punjabi, Assamese,\n    Kashmiri, Sindhi, and Sanskrit; 24 languages spoken by a million or more\n    persons each; numerous other languages and dialects, for the most part\n    mutually unintelligible; Hindi is the national language and primary tongue\n    of 30% of the people; English enjoys associate status but is the most\n    important language for national, political, and commercial communication;\n    Hindustani, a popular variant of Hindi/Urdu, is spoken widely throughout\n    northern India\nLiteracy:\n    48% (male 62%, female 34%) age 15 and over can read and write (1990 est.)\nLabor force:\n    284,400,000; 67% agriculture (FY85)\nOrganized labor:\n    less than 5% of the labor force\n\n:India Government\n\nLong-form name:\n    Republic of India\nType:\n    federal republic\nCapital:\n    New Delhi\nAdministrative divisions:\n    25 states and 7 union territories*; Andaman and Nicobar Islands*, Andhra\n    Pradesh, Arunachal Pradesh, Assam, Bihar, Chandigarh*, Dadra and Nagar\n    Haveli*, Daman and Diu*, Delhi*, Goa, Gujarat, Haryana, Himachal Pradesh,\n    Jammu and Kashmir, Karnataka, Kerala, Lakshadweep*, Madhya Pradesh,\n    Maharashtra, Manipur, Meghalaya, Mizoram, Nagaland, Orissa, Pondicherry*,\n    Punjab, Rajasthan, Sikkim, Tamil Nadu, Tripura, Uttar Pradesh, West Bengal\nIndependence:\n    15 August 1947 (from UK)\nConstitution:\n    26 January 1950\nLegal system:\n    based on English common law; limited judicial review of legislative acts;\n    accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Anniversary of the Proclamation of the Republic, 26 January (1950)\nExecutive branch:\n    president, vice president, prime minister, Council of Ministers\nLegislative branch:\n    bicameral Parliament (Sansad) consists of an upper house or Council of\n    States (Rajya Sabha) and a lower house or People's Assembly (Lok Sabha)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Ramaswamy Iyer VENKATARAMAN (since 25 July 1987); Vice President\n    Dr. Shankar Dayal SHARMA (since 3 September 1987)\n  Head of Government:\n    Prime Minister P. V. Narasimha RAO (since 21 June 1991)\nPolitical parties and leaders:\n    Congress (I) Party, P. V. Narasimha RAO, president; Bharatiya Janata Party,\n    L. K. ADVANI; Janata Dal Party, V. P. SINGH; Communist Party of\n    India/Marxist (CPI/M), Harkishan Singh SURJEET; Communist Party of India\n    (CPI), C. Rajeswara RAO; Telugu Desam (a regional party in Andhra Pradesh),\n    N. T. Rama RAO; All-India Anna Dravida Munnetra Kazagham (AIADMK; a regional\n    party in Tamil Nadu), JAYALALITHA; Samajwadi Janata Party, CHANDRA SHEKHAR;\n    Shiv Sena, Bal THACKERAY; Revolutionary Socialist Party (RSP), Tridip\n    CHOWDHURY; Bahujana Samaj Party (BSP), Kanshi RAM; Congress (S) Party,\n    leader NA; Communist Party of India/Marxist-Leninist (CPI/ML), Satyanarayan\n    SINGH; Dravida Munnetra Kazagham (a regional party in Tamil Nadu), M.\n    KARUNANIDHI; Akali Dal factions representing Sikh religious community in the\n    Punjab; National Conference (NC; a regional party in Jammu and Kashmir),\n    Farooq ABDULLAH; Asom Gana Parishad (a regional party in Assam), Prafulla\n    MAHANTA\nSuffrage:\n    universal at age 18\n\n:India Government\n\nElections:\n  People's Assembly:\n    last held 21 May, 12 and 15 June 1991 (next to be held by November 1996);\n    results - percent of vote by party NA; seats - (545 total), 520 elected -\n    Congress (I) Party 231, Bharatiya Janata Party 119, Janata Dal Party 59,\n    CPI/M 35, CPI 14, Telugu Desam 13, AIADMK 11, Samajwadi Janata Party 5, Shiv\n    Sena 4, RSP 4, BSP 1, Congress (S) Party 1, other 23; note - second and\n    third rounds of voting were delayed because of the assassination of Congress\n    President Rajiv GANDHI on 21 May 1991\nCommunists:\n    466,000 members claimed by CPI, 361,000 members claimed by CPI/M; Communist\n    extremist groups, about 15,000 members\nOther political or pressure groups:\n    various separatist groups seeking greater communal and/or regional autonomy;\n    numerous religious or militant/chauvinistic organizations, including Adam\n    Sena, Ananda Marg, Vishwa Hindu Parishad, and Rashtriya Swayamsevak Sangh\nMember of:\n    AfDB, AG (observer), AsDB, C, CCC, CP, ESCAP, FAO, G-6, G-15, G-19, G-24,\n    G-77, GATT, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO,\n    INMARSAT, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, NAM, PCA, SAARC, UN,\n    UNAVEM, UNCTAD, UNESCO, UNIDO, UNIIMOG, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Abid HUSSEIN; Chancery at 2107 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 939-7000; there are Indian Consulates\n    General in Chicago, New York, and San Francisco\n  US:\n    Ambassador William CLARK, Jr.; Embassy at Shanti Path, Chanakyapuri 110021,\n    New Delhi; telephone [91] (11) 600651; FAX [91] (11) 687-2028, 687-2391;\n    there are US Consulates General in Bombay, Calcutta, and Madras\nFlag:\n    three equal horizontal bands of orange (top), white, and green with a blue\n    chakra (24-spoked wheel) centered in the white band; similar to the flag of\n    Niger, which has a small orange disk centered in the white band\n\n:India Economy\n\nOverview:\n    India's economy is a mixture of traditional village farming and handicrafts,\n    modern agriculture, old and new branches of industry, and a multitude of\n    support services. It presents both the entrepreneurial skills and drives of\n    the capitalist system and widespread government intervention of the\n    socialist mold. Growth of 4-5% annually in the 1980s has softened the impact\n    of population growth on unemployment, social tranquility, and the\n    environment. Agricultural output has continued to expand, reflecting the\n    greater use of modern farming techniques and improved seed that have helped\n    to make India self-sufficient in food grains and a net agricultural\n    exporter. However, tens of millions of villagers, particularly in the south,\n    have not benefited from the green revolution and live in abject poverty, and\n    great numbers of urban residents lack the basic essentials of life. Industry\n    has benefited from a partial liberalization of controls. The growth rate of\n    the service sector has also been strong. India, however, has been challenged\n    more recently by much lower foreign exchange reserves, higher inflation, and\n    a large debt service burden.\nGDP:\n    exchange rate conversion - $328 billion, per capita $380; real growth rate\n    2.5% (FY92 est.)\nInflation rate (consumer prices):\n    12.0% (1991)\nUnemployment rate:\n    20% (1991 est.)\nBudget:\n    revenues $38.5 billion; expenditures $53.4 billion, including capital\n    expenditures of $11.1 billion (FY92)\nExports:\n    $20.2 billion (f.o.b., FY91)\n  commodities:\n    gems and jewelry, engineering goods, clothing, textiles, chemicals, tea,\n    coffee, fish products\n  partners:\n    EC 25%, US 16%, USSR and Eastern Europe 19%, Japan 10% (1989)\nImports:\n    $25.2 billion (c.i.f., FY91)\n  commodities:\n    petroleum products, capital goods, uncut gems, gems, jewelry, chemicals,\n    iron and steel, edible oils\n  partners:\n    EC 33%, Middle East 19%, US 12%, Japan 8%, USSR and Eastern Europe 8% (1989)\nExternal debt:\n    $72.0 billion (1991 est.)\nIndustrial production:\n    growth rate 8.4% (1990); accounts for about 25% of GDP\nElectricity:\n    80,000,000 kW capacity; 290,000 million kWh produced, 330 kWh per capita\n    (1991)\nIndustries:\n    textiles, food processing, steel, machinery, transportation equipment,\n    cement, jute manufactures, mining, petroleum, power, chemicals,\n    pharmaceuticals, electronics\nAgriculture:\n    accounts for about 30% of GDP and employs 67% of labor force;\n    self-sufficient in food grains; principal crops - rice, wheat, oilseeds,\n    cotton, jute, tea, sugarcane, potatoes; livestock - cattle, buffaloes,\n    sheep, goats and poultry; fish catch of about 3 million metric tons ranks\n    India among the world's top 10 fishing nations\n\n:India Economy\n\nIllicit drugs:\n    licit producer of opium poppy for the pharmaceutical trade, but some opium\n    is diverted to illicit international drug markets; major transit country for\n    illicit narcotics produced in neighboring countries; illicit producer of\n    hashish\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $4.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1980-89), $31.7 billion; OPEC\n    bilateral aid (1979-89), $315 million; USSR (1970-89), $11.6 billion;\n    Eastern Europe (1970-89), $105 million\nCurrency:\n    Indian rupee (plural - rupees); 1 Indian rupee (Re) = 100 paise\nExchange rates:\n    Indian rupees (Rs) per US$1 - 25.917 (January 1992), 22.742 (1991), 17.504\n    (1990), 16.226 (1989), 13.917 (1988), 12.962 (1987)\nFiscal year:\n    1 April - 31 March\n\n:India Communications\n\nRailroads:\n    61,850 km total (1986); 33,553 km 1.676-meter broad gauge, 24,051 km\n    1.000-meter gauge, 4,246 km narrow gauge (0.762 meter and 0.610 meter);\n    12,617 km is double track; 6,500 km is electrified\nHighways:\n    1,970,000 km total (1989); 960,000 km surfaced and 1,010,000 km gravel,\n    crushed stone, or earth\nInland waterways:\n    16,180 km; 3,631 km navigable by large vessels\nPipelines:\n    crude oil 3,497 km; petroleum products 1,703 km; natural gas 902 km (1989)\nPorts:\n    Bombay, Calcutta, Cochin, Kandla, Madras, New Mangalore, Port Blair (Andaman\n    Islands)\nMerchant marine:\n    299 ships (1,000 GRT or over) totaling 5,991,278 GRT/9,935,463 DWT; includes\n    1 short-sea passenger, 7 passenger-cargo, 91 cargo, 1 roll-on/roll-off, 8\n    container, 54 oil tanker, 10 chemical tanker, 8 combination ore/oil, 111\n    bulk, 2 combination bulk, 6 liquefied gas\nCivil air:\n    93 major transport aircraft\nAirports:\n    341 total, 288 usable; 203 with permanent-surface runways; 2 with runways\n    over 3,659 m; 59 with runways 2,440-3,659 m; 87 with runways 1,220-2,439 m\nTelecommunications:\n    poor domestic telephone service, international radio communications\n    adequate; 4,700,000 telephones; broadcast stations - 96 AM, 4 FM, 274 TV\n    (government controlled); domestic satellite system for communications and\n    TV; 3 Indian Ocean INTELSAT earth stations; submarine cables to Malaysia and\n    United Arab Emirates\n\n:India Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Security or Paramilitary Forces, Border Security\n    Force, Coast Guard, Assam Rifles\nManpower availability:\n    males 15-49, 237,803,153; 140,140,736 fit for military service; about\n    9,474,290 reach military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GNP (FY91)\n\n:Indian Ocean Geography\n\nTotal area:\n    73,600,000 km2\nLand area:\n    73,600,000 km2; Arabian Sea, Bass Strait, Bay of Bengal, Java Sea, Persian\n    Gulf, Red Sea, Strait of Malacca, Timor Sea, and other tributary water\n    bodies\nComparative area:\n    slightly less than eight times the size of the US; third-largest ocean\n    (after the Pacific Ocean and Atlantic Ocean, but larger than the Arctic\n    Ocean)\nCoastline:\n    66,526 km\nDisputes:\n    some maritime disputes (see littoral states)\nClimate:\n    northeast monsoon (December to April), southwest monsoon (June to October);\n    tropical cyclones occur during May/June and October/November in the north\n    Indian Ocean and January/February in the south Indian Ocean\nTerrain:\n    surface dominated by counterclockwise gyre (broad, circular system of\n    currents) in the south Indian Ocean; unique reversal of surface currents in\n    the north Indian Ocean - low pressure over southwest Asia from hot, rising,\n    summer air results in the southwest monsoon and southwest-to-northeast winds\n    and currents, while high pressure over northern Asia from cold, falling,\n    winter air results in the northeast monsoon and northeast-to-southwest winds\n    and currents; ocean floor is dominated by the Mid-Indian Ocean Ridge and\n    subdivided by the Southeast Indian Ocean Ridge, Southwest Indian Ocean\n    Ridge, and Ninety East Ridge; maximum depth is 7,258 meters in the Java\n    Trench\nNatural resources:\n    oil and gas fields, fish, shrimp, sand and gravel aggregates, placer\n    deposits, polymetallic nodules\nEnvironment:\n    endangered marine species include the dugong, seals, turtles, and whales;\n    oil pollution in the Arabian Sea, Persian Gulf, and Red Sea\nNote:\n    major chokepoints include Bab el Mandeb, Strait of Hormuz, Strait of\n    Malacca, southern access to the Suez Canal, and the Lombok Strait; ships\n    subject to superstructure icing in extreme south near Antarctica from May to\n    October\n\n:Indian Ocean Economy\n\nOverview:\n    The Indian Ocean provides a major highway for the movement of petroleum\n    products from the Middle East to Europe and North and South American\n    countries. Fish from the ocean are of growing economic importance to many of\n    the bordering countries as a source of both food and exports. Fishing fleets\n    from Russia, Japan, Korea, and Taiwan also exploit the Indian Ocean, mainly\n    for shrimp and tuna. Large reserves of hydrocarbons are being tapped in the\n    offshore areas of Saudi Arabia, Iran, India, and Western Australia. An\n    estimated 40% of the world's offshore oil production comes from the Indian\n    Ocean. Beach sands rich in heavy minerals and offshore placer deposits are\n    actively exploited by bordering countries, particularly India, South Africa,\n    Indonesia, Sri Lanka, and Thailand.\nIndustries:\n    based on exploitation of natural resources, particularly marine life,\n    minerals, oil and gas production, fishing, sand and gravel aggregates,\n    placer deposits\n\n:Indian Ocean Communications\n\nPorts:\n    Bombay (India), Calcutta (India), Madras (India), Colombo (Sri Lanka),\n    Durban (South Africa), Fremantle (Australia), Jakarta (Indonesia), Melbourne\n    (Australia), Richard's Bay (South Africa)\nTelecommunications:\n    submarine cables from India to United Arab Emirates and Malaysia\n\n:Indonesia Geography\n\nTotal area:\n    1,919,440 km2\nLand area:\n    1,826,440 km2\nComparative area:\n    slightly less than three times the size of Texas\nLand boundaries:\n    2,602 km; Malaysia 1,782 km, Papua New Guinea 820 km\nCoastline:\n    54,716 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    sovereignty over Timor Timur (East Timor Province) disputed with Portugal\nClimate:\n    tropical; hot, humid; more moderate in highlands\nTerrain:\n    mostly coastal lowlands; larger islands have interior mountains\nNatural resources:\n    crude oil, tin, natural gas liquids, nickel, timber, bauxite, copper,\n    fertile soils, coal, gold, silver\nLand use:\n    arable land 8%; permanent crops 3%; meadows and pastures 7%; forest and\n    woodland 67%; other 15%; includes irrigated 3%\nEnvironment:\n    archipelago of 13,500 islands (6,000 inhabited); occasional floods, severe\n    droughts, and tsunamis; deforestation\nNote:\n    straddles Equator; strategic location astride or along major sea lanes from\n    Indian Ocean to Pacific Ocean\n\n:Indonesia People\n\nPopulation:\n    195,683,531 (July 1992), growth rate 1.7% (1992)\nBirth rate:\n    25 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    70 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    59 years male, 64 years female (1992)\nTotal fertility rate:\n    2.8 children born/woman (1992)\nNationality:\n    noun - Indonesian(s); adjective - Indonesian\nEthnic divisions:\n    majority of Malay stock comprising Javanese 45.0%, Sundanese 14.0%, Madurese\n    7.5%, coastal Malays 7.5%, other 26.0%\nReligions:\n    Muslim 87%, Protestant 6%, Roman Catholic 3%, Hindu 2%, Buddhist 1%, other\n    1% (1985)\nLanguages:\n    Bahasa Indonesia (modified form of Malay; official); English and Dutch\n    leading foreign languages; local dialects, the most widely spoken of which\n    is Javanese\nLiteracy:\n    77% (male 84%, female 68%) age 15 and over can read and write (1990 est.)\nLabor force:\n    67,000,000; agriculture 55%, manufacturing 10%, construction 4%, transport\n    and communications 3% (1985 est.)\nOrganized labor:\n    3,000,000 members (claimed); about 5% of labor force\n\n:Indonesia Government\n\nLong-form name:\n    Republic of Indonesia\nType:\n    republic\nCapital:\n    Jakarta\nAdministrative divisions:\n    24 provinces (propinsi-propinsi, singular - propinsi), 2 special regions*\n    (daerah-daerah istimewa, singular - daerah istimewa), and 1 special capital\n    city district** (daerah khusus ibukota); Aceh*, Bali, Bengkulu, Irian Jaya,\n    Jakarta Raya**, Jambi, Jawa Barat, Jawa Tengah, Jawa Timur, Kalimantan\n    Barat, Kalimantan Selatan, Kalimantan Tengah, Kalimantan Timur, Lampung,\n    Maluku, Nusa Tenggara Barat, Nusa Tenggara Timur, Riau, Sulawesi Selatan,\n    Sulawesi Tengah, Sulawesi Tenggara, Sulawesi Utara, Sumatera Barat, Sumatera\n    Selatan, Sumatera Utara, Timor Timur, Yogyakarta*\nIndependence:\n    17 August 1945 (proclaimed independence; on 27 December 1949, Indonesia\n    became legally independent from the Netherlands)\nConstitution:\n    August 1945, abrogated by Federal Constitution of 1949 and Provisional\n    Constitution of 1950, restored 5 July 1959\nLegal system:\n    based on Roman-Dutch law, substantially modified by indigenous concepts and\n    by new criminal procedures code; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Independence Day, 17 August (1945)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    unicameral House of Representatives (Dewan Perwakilan Rakyat or DPR); note -\n    the People's Consultative Assembly (Majelis Permusyawaratan Rakyat or MPR)\n    includes the DPR plus 500 indirectly elected members who meet every five\n    years to elect the president and vice president and, theoretically, to\n    determine national policy\nJudicial branch:\n    Supreme Court (Mahkamah Agung)\nLeaders:\n  Chief of State and Head of Government:\n    President Gen. (Ret.) SOEHARTO (since 27 March 1968); Vice President Lt.\n    Gen. (Ret.) SUDHARMONO (since 11 March 1988)\nPolitical parties and leaders:\n    GOLKAR (quasi-official party based on functional groups), Lt. Gen. (Ret.)\n    WAHONO, general chairman; Indonesia Democracy Party (PDI - federation of\n    former Nationalist and Christian Parties), SOERYADI, chairman; Development\n    Unity Party (PPP, federation of former Islamic parties), Ismail Hasan\n    METAREUM, chairman\nSuffrage:\n    universal at age 17 and married persons regardless of age\nElections:\n  House of Representatives:\n    last held on 23 April 1987 (next to be held 8 June 1992); results - Golkar\n    73%, UDP 16%, PDI 11%; seats - (500 total - 400 elected, 100 appointed)\n    Golkar 299, UDP 61, PDI 40\nCommunists:\n    Communist Party (PKI) was officially banned in March 1966; current strength\n    about 1,000-3,000, with less than 10% engaged in organized activity;\n    pre-October 1965 hardcore membership about 1.5 million\n\n:Indonesia Government\n\nMember of:\n    APEC, AsDB, ASEAN, CCC, CP, ESCAP, FAO, G-15, G-19, G-77, GATT, IAEA, IBRD,\n    ICAO, ICC, ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, ISO, ITU, LORCS, NAM, OIC, OPEC, UN, UNCTAD, UNESCO, UNIDO,\n    UNIIMOG, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Abdul Rachman RAMLY; Chancery at 2020 Massachusetts Avenue NW,\n    Washington, DC 20036; telephone (202) 775-5200; there are Indonesian\n    Consulates General in Houston, New York, and Los Angeles, and Consulates in\n    Chicago and San Francisco\n  US:\n    Ambassador John C. MONJO; Embassy at Medan Merdeka Selatan 5, Jakarta\n    (mailing address is APO AP 96520); telephone [62] (21) 360-360; FAX [62]\n    (21) 360-644; there are US Consulates in Medan and Surabaya\nFlag:\n    two equal horizontal bands of red (top) and white; similar to the flag of\n    Monaco, which is shorter; also similar to the flag of Poland, which is white\n    (top) and red\n\n:Indonesia Economy\n\nOverview:\n    Indonesia is a mixed economy with many socialist institutions and central\n    planning but with a recent emphasis on deregulation and private enterprise.\n    Indonesia has extensive natural wealth, yet, with a large and rapidly\n    increasing population, it remains a poor country. GDP growth in 1985-91\n    averaged about 6%, quite impressive, but not sufficient to both slash\n    underemployment and absorb the 2.3 million workers annually entering the\n    labor force. Agriculture, including forestry and fishing, is an important\n    sector, accounting for 23% of GDP and over 50% of the labor force. The\n    staple crop is rice. Once the world's largest rice importer, Indonesia is\n    now nearly self-sufficient. Plantation crops - rubber and palm oil - and\n    textiles and plywood are being encouraged for both export and job\n    generation. Industrial output now accounts for 30% of GDP and is based on a\n    supply of diverse natural resources, including crude oil, natural gas,\n    timber, metals, and coal. Of these, the oil sector dominates the external\n    economy, generating more than 20% of the government's revenues and 40% of\n    export earnings in 1989. However, the economy's growth is highly dependent\n    on the continuing expansion of nonoil exports. Japan is Indonesia's most\n    important customer and supplier of aid. In 1991, rapid growth in the money\n    supply prompted Jakarta to implement a tight monetary policy, forcing the\n    private sector to go to foreign banks for investment financing. Real\n    interest rates remained above 10%, off-shore commercial debt grew, and real\n    GDP growth dropped slightly from the 7% of 1990.\nGDP:\n    exchange rate conversion - $122 billion, per capita $630; real growth rate\n    6.0% (1991 est.)\nInflation rate (consumer prices):\n    10% (1991 est.)\nUnemployment rate:\n    3%; underemployment 45% (1991 est.)\nBudget:\n    revenues $17.2 billion; expenditures $23.4 billion, including capital\n    expenditures of $8.9 billion (FY91)\nExports:\n    $25.7 billion (f.o.b., 1990)\n  commodities:\n    petroleum and liquefied natural gas 40%, timber 15%, textiles 7%, rubber 5%,\n    coffee 3%\n  partners:\n    Japan 40%, US 14%, Singapore 7%, Europe 16% (1990)\nImports:\n    $21.8 billion (f.o.b., 1990)\n  commodities:\n    machinery 39%, chemical products 19%, manufactured goods 16%\n  partners:\n    Japan 23%, US 13%, EC, Singapore\nExternal debt:\n    $58.5 billion (1990 est.)\nIndustrial production:\n    growth rate 11.6% (1989 est.); accounts for 30% of GDP\nElectricity:\n    11,600,000 kW capacity; 38,000 million kWh produced, 200 kWh per capita\n    (1990)\nIndustries:\n    petroleum, textiles, mining, cement, chemical fertilizers, plywood, food,\n    rubber\n\n:Indonesia Economy\n\nAgriculture:\n    accounts for 23% of GDP; subsistence food production; small-holder and\n    plantation production for export; main products are rice, cassava, peanuts,\n    rubber, cocoa, coffee, palm oil, copra, other tropical products, poultry,\n    beef, pork, eggs\nIllicit drugs:\n    illicit producer of cannabis for the international drug trade, but not a\n    major player; government actively eradicating plantings and prosecuting\n    traffickers\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $4.4 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $25.9 billion; OPEC\n    bilateral aid (1979-89), $213 million; Communist countries (1970-89), $175\n    million\nCurrency:\n    Indonesian rupiah (plural - rupiahs); 1 Indonesian rupiah (Rp) = 100 sen\n    (sen no longer used)\nExchange rates:\n    Indonesian rupiahs (Rp) per US$1 - 1,998.2 (January 1992), 1,950.3 (1991),\n    1,842.8 (1990), 1,770.1 (1989), 1,685.7 (1988), 1,643.8 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Indonesia Communications\n\nRailroads:\n    6,964 km total; 6,389 km 1.067-meter gauge, 497 km 0.750-meter gauge, 78 km\n    0.600-meter gauge; 211 km double track; 101 km electrified; all government\n    owned\nHighways:\n    119,500 km total; 11,812 km state, 34,180 km provincial, and 73,508 km\n    district roads\nInland waterways:\n    21,579 km total; Sumatra 5,471 km, Java and Madura 820 km, Kalimantan 10,460\n    km, Celebes 241 km, Irian Jaya 4,587 km\nPipelines:\n    crude oil 2,505 km; petroleum products 456 km; natural gas 1,703 km (1989)\nPorts:\n    Cilacap, Cirebon, Jakarta, Kupang, Palembang, Ujungpandang, Semarang,\n    Surabaya\nMerchant marine:\n    387 ships (1,000 GRT or over) totaling 1,698,946 GRT/2,560,414 DWT; includes\n    5 short-sea passenger, 13 passenger-cargo, 231 cargo, 8 container, 3\n    roll-on/roll-off cargo, 3 vehicle carrier, 79 petroleum tanker, 5 chemical\n    tanker, 6 liquefied gas, 7 specialized tanker, 1 livestock carrier, 25 bulk,\n    1 passenger\nCivil air:\n    about 216 commercial transport aircraft\nAirports:\n    437 total, 410 usable; 114 with permanent-surface runways; 1 with runways\n    over 3,659 m; 12 with runways 2,440-3,659 m; 64 with runways 1,220-2,439 m\nTelecommunications:\n    interisland microwave system and HF police net; domestic service fair,\n    international service good; radiobroadcast coverage good; 763,000 telephones\n    (1986); broadcast stations - 618 AM, 38 FM, 9 TV; satellite earth stations -\n    1 Indian Ocean INTELSAT earth station and 1 Pacific Ocean INTELSAT earth\n    station; and 1 domestic satellite communications system\n\n:Indonesia Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Police\nManpower availability:\n    males 15-49, 51,906,415; 30,668,815 fit for military service; 2,095,698\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $1.7 billion, 2% of GNP (FY91)\n\n:Iran Geography\n\nTotal area:\n    1,648,000 km2\nLand area:\n    1,636,000 km2\nComparative area:\n    slightly larger than Alaska\nLand boundaries:\n    5,440 km; Afghanistan 936 km, Armenia 35 km, Azerbaijan (north) 432 km,\n    Azerbaijan (northwest) 179 km, Iraq 1,458 km, Pakistan 909 km, Turkey 499\n    km, Turkmenistan 992 km\nCoastline:\n    2,440 km\n  note:\n    Iran also borders the Caspian Sea (740 km)\nMaritime claims:\n  Continental shelf:\n    not specific\n  Exclusive fishing zone:\n    50 nm in the Sea of Oman; continental shelf limit, continental shelf\n    boundaries, or median lines in the Persian Gulf\n  Territorial sea:\n    12 nm\nDisputes:\n    Iran and Iraq restored diplomatic relations in 1990 but are still trying to\n    work out written agreements settling outstanding disputes from their\n    eight-year war concerning border demarcation, prisoners-of-war, and freedom\n    of navigation and sovereignty over the Shatt-al-Arab waterway; Iran occupies\n    two islands in the Persian Gulf claimed by the UAE: Tunb as Sughra (Arabic),\n    Jazireh-ye Tonb-e Kuchek (Persian) or Lesser Tunb, and Tunb al Kubra\n    (Arabic), Jazireh-ye Tonb-e Bozorg (Persian) or Greater Tunb; it jointly\n    administers with the UAE an island in the Persian Gulf claimed by the UAE,\n    Abu Musa (Arabic) or Jazireh-ye Abu Musa (Persian)\nClimate:\n    mostly arid or semiarid, subtropical along Caspian coast\nTerrain:\n    rugged, mountainous rim; high, central basin with deserts, mountains; small,\n    discontinuous plains along both coasts\nNatural resources:\n    petroleum, natural gas, coal, chromium, copper, iron ore, lead, manganese,\n    zinc, sulfur\nLand use:\n    arable land 8%; permanent crops NEGL%; meadows and pastures 27%; forest and\n    woodland 11%; other 54%; includes irrigated 2%\nEnvironment:\n    deforestation; overgrazing; desertification\n\n:Iran People\n\nPopulation:\n    61,183,138 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    64 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 66 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Iranian(s); adjective - Iranian\nEthnic divisions:\n    Persian 51%, Azerbaijani 25%, Kurd 9%, Gilaki and Mazandarani 8%, Lur 2%,\n    Baloch 1%, Arab 1%, other 3%\nReligions:\n    Shi`a Muslim 95%, Sunni Muslim 4%, Zoroastrian, Jewish, Christian, and\n    Baha'i 1%\nLanguages:\n    58% Persian and Persian dialects, 26% Turkic and Turkic dialects, 9%\n    Kurdish, 2% Luri, 1% Baloch, 1% Arabic, 1% Turkish, 2% other\nLiteracy:\n    54% (male 64%, female 43%) age 15 and over can read and write (1990 est.)\nLabor force:\n    15,400,000; agriculture 33%, manufacturing 21%; shortage of skilled labor\n    (1988 est.)\nOrganized labor:\n    none\n\n:Iran Government\n\nLong-form name:\n    Islamic Republic of Iran\nType:\n    theocratic republic\nCapital:\n    Tehran\nAdministrative divisions:\n    24 provinces (ostanha, singular - ostan); Azarbayjan-e Bakhtari,\n    Azarbayjan-e Khavari, Bakhtaran, Bushehr, Chahar Machall va Bakhtiari,\n    Ecsfahan, Fars, Gilan, Hamadan, Hormozgan, Ilam, Kerman, Khorasan,\n    Khuzestan, Kohkiluyeh va Buyer Achmadi, Kordestan, Lorestan, Markazi,\n    Mazandaran, Semnan, Sistan va Baluchestan, Tehran, Yazd, Zanjan\nIndependence:\n    1 April 1979, Islamic Republic of Iran proclaimed\nConstitution:\n    2-3 December 1979; revised 1989 to expand powers of the presidency and\n    eliminate the prime ministership\nLegal system:\n    the Constitution codifies Islamic principles of government\nNational holiday:\n    Islamic Republic Day, 1 April (1979)\nExecutive branch:\n    cleric (faqih), president, Council of Ministers\nLegislative branch:\n    unicameral Islamic Consultative Assembly (Majles-e-Shura-ye-Eslami)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Cleric and functional Chief of State:\n    Leader of the Islamic Revolution Ayatollah Ali HOSEINI-KHAMENEI (since 4\n    June 1989)\n  Head of Government:\n    President Ali Akbar HASHEMI-RAFSANJANI (since 3 August 1989)\nPolitical parties and leaders:\n    there are at least 18 licensed parties; the three most important are -\n    Tehran Militant Clergy Association, Mohammad Reza MAHDAVI-KANI; Militant\n    Clerics Association, Mehdi MAHDAVI-KARUBI and Mohammad Asqar\n    MUSAVI-KHOINIHA; Fedaiyin Islam Organization, Sadeq KHALKHALI\nSuffrage:\n    universal at age 15\nElections:\n  President:\n    last held July 1989 (next to be held April 1993); results - Ali Akbar\n    HASHEMI-RAFSANJANI was elected with only token opposition\n  Islamic Consultative Assembly:\n    last held 8 April 1992 (next to be held April 1996); results - percent of\n    vote by party NA; seats - (270 seats total) number of seats by party NA\nCommunists:\n    1,000 to 2,000 est. hardcore; 15,000 to 20,000 est. sympathizers; crackdown\n    in 1983 crippled the party; trials of captured leaders began in late 1983\nOther political or pressure groups:\n    groups that generally support the Islamic Republic include Hizballah,\n    Hojjatiyeh Society, Mojahedin of the Islamic Revolution, Muslim Students\n    Following the Line of the Imam; armed political groups that have been almost\n    completely repressed by the government include Mojahedin-e Khalq\n    Organization (MEK), People's Fedayeen, Kurdish Democratic Party; the Society\n    for the Defense of Freedom\n\n:Iran Government\n\nMember of:\n    CCC, CP, ESCAP, FAO, G-19, G-24, G-77, IAEA, IBRD, ICAO, ICC, IDA, IDB,\n    IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ISO, ITU,\n    LORCS, NAM, OIC, OPEC, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WFTU,\n    WHO, WMO, WTO\nDiplomatic representation:\n    none; protecting power in the US is Pakistan - Iranian Interests Section,\n    2315 Massachusetts Avenue NW, Washington, DC 20008; telephone (202) 939-6200\n  US:\n    protecting power in Iran is Switzerland\nFlag:\n    three equal horizontal bands of green (top), white, and red; the national\n    emblem (a stylized representation of the word Allah) in red is centered in\n    the white band; Allah Alkbar (God is Great) in white Arabic script is\n    repeated 11 times along the bottom edge of the green band and 11 times along\n    the top edge of the red band\n\n:Iran Economy\n\nOverview:\n    Iran's economy is a mixture of central planning, state ownership of oil and\n    other large enterprises, village agriculture, and small-scale private\n    trading and service ventures. After a decade of economic decline, Iran's GNP\n    grew roughly 4% in FY90 and 10% in FY91. An oil windfall in 1990 combined\n    with a substantial increase in imports contributed to Iran's recent economic\n    growth. Iran has also begun implementing a number of economic reforms to\n    reduce government intervention (including subsidies) and has allocated\n    substantial resources to development projects in the hope of stimulating the\n    economy. Nevertheless, lower oil revenues in 1991 - oil accounts for more\n    than 90% of export revenues and provides roughly 65% of the financing for\n    the five-year economic development plan - and dramatic increases in external\n    debt are threatening development plans and could prompt Iran to cut imports,\n    thus limiting economic growth in the medium term.\nGNP:\n    exchange rate conversion - $90 billion, per capita $1,500; real growth rate\n    10% (FY91 est.)\nInflation rate (consumer prices):\n    18% (FY91 est.)\nUnemployment rate:\n    30% (1989)\nBudget:\n    revenues $63 billion; expenditures $80 billion, including capital\n    expenditures of $23 billion (FY90 est.)\nExports:\n    $17.8 billion (f.o.b., 1990)\n  commodities:\n    petroleum 90%, carpets, fruits, nuts, hides\n  partners:\n    Japan, Italy, France, Netherlands, Belgium/Luxembourg, Spain, and Germany\nImports:\n    $15.9 billion (c.i.f., 1990)\n  commodities:\n    machinery, military supplies, metal works, foodstuffs, pharmaceuticals,\n    technical services, refined oil products\n  partners:\n    Germany, Japan, Italy, UK, France\nExternal debt:\n    $10 billion (1990 est.)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    14,579,000 kW capacity; 40,000 million kWh produced, 740 kWh per capita\n    (1989)\nIndustries:\n    petroleum, petrochemicals, textiles, cement and other building materials,\n    food processing (particularly sugar refining and vegetable oil production),\n    metal fabricating (steel and copper)\nAgriculture:\n    principal products - wheat, rice, other grains, sugar beets, fruits, nuts,\n    cotton, dairy products, wool, caviar; not self-sufficient in food\nIllicit drugs:\n    illicit producer of opium poppy for the domestic and international drug\n    trade\nEconomic aid:\n    US commitments, including Ex-Im (FY70-80), $1.0 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.675 billion;\n    Communist countries (1970-89), $976 million; note - aid fell sharply\n    following the 1979 revolution\n\n:Iran Economy\n\nCurrency:\n    Iranian rial (plural - rials); 1 Iranian rial (IR) = 100 dinars; note -\n    domestic figures are generally referred to in terms of the toman (plural -\n    tomans), which equals 10 rials\nExchange rates:\n    Iranian rials (IR) per US$1 - 65.515 (January 1992), 67.505 (1991), 68.096\n    (1990), 72.015 (1989), 68.683 (1988), 71.460 (1987); note - black-market\n    rate 1,400 (January 1991)\nFiscal year:\n    21 March - 20 March\n\n:Iran Communications\n\nRailroads:\n    4,850 km total; 4,760 km 1.432-meter gauge, 92 km 1.676-meter gauge; 480 km\n    under construction from Bafq to Bandar Abbas, rail construction from Bafq to\n    Sirjan has been completed and is operational\nHighways:\n    140,072 km total; 42,694 km paved surfaces; 46,866 km gravel and crushed\n    stone; 49,440 km improved earth; 1,200 km (est.) rural road network\nInland waterways:\n    904 km; the Shatt-al-Arab is usually navigable by maritime traffic for about\n    130 km, but closed since September 1980 because of Iran-Iraq war\nPipelines:\n    crude oil 5,900 km; petroleum products 3,900 km; natural gas 4,550 km\nPorts:\n    Abadan (largely destroyed in fighting during 1980-88 war), Bandar Beheshti,\n    Bandar-e Abbas, Bandar-e Bushehr, Bandar-e Khomeyni, Bandar-e Shahid Raja,\n    Khorramshahr (largely destroyed in fighting during 1980-88 war)\nMerchant marine:\n    134 ships (1,000 GRT or over) totaling 4,466,395 GRT/8,329,760 DWT; includes\n    38 cargo, 6 roll-on/roll-off cargo, 32 oil tanker, 4 chemical tanker, 3\n    refrigerated cargo, 47 bulk, 2 combination bulk, 1 liquefied gas\nCivil air:\n    48 major transport aircraft\nAirports:\n    214 total, 188 usable; 81 with permanent-surface runways; 16 with runways\n    over 3,659 m; 16 with runways 2,440-3,659 m; 71 with runways 1,220-2,439 m\nTelecommunications:\n    radio relay extends throughout country; system centered in Tehran; 2,143,000\n    telephones; broadcast stations - 77 AM, 3 FM, 28 TV; satellite earth\n    stations - 2 Atlantic Ocean INTELSAT and 1 Indian Ocean INTELSAT; HF radio\n    and radio relay to Turkey, Pakistan, Syria, Kuwait, Tajikistan, and\n    Uzbekistan\n\n:Iran Defense Forces\n\nBranches:\n    Islamic Republic of Iran Ground Forces, Navy, Air Force, and Revolutionary\n    Guard Corps (includes Basij militia and own ground, air, and naval forces);\n    Law Enforcement Forces\nManpower availability:\n    males 15-49, 13,267,810; 7,895,591 fit for military service; 552,408 reach\n    military age (21) annually\nDefense expenditures:\n    exchange rate conversion - $13 billion, 14-15% of GNP (1991 est.)\n\n:Iraq Geography\n\nTotal area:\n    436,245 km2\nLand area:\n    435,292 km2 (est.)\nComparative area:\n    slightly more than twice the size of Idaho\nLand boundaries:\n    3,576 km; Iran 1,458 km, Jordan 134 km, Kuwait 240 km, Saudi Arabia 808 km,\n    Syria 605 km, Turkey 331 km\nCoastline:\n    58 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Territorial sea:\n    12 nm\nDisputes:\n    Iran and Iraq restored diplomatic relations in 1990 but are still trying to\n    work out written agreements settling outstanding disputes from their\n    eight-year war concerning border demarcation, prisoners-of-war, and freedom\n    of navigation and sovereignty over the Shatt-al-Arab waterway; in April 1991\n    official Iraqi acceptance of UN Security Council Resolution 687, which\n    demands that Iraq accept the inviolability of the boundary set forth in its\n    1963 agreement with Kuwait, ending earlier claims to Bubiyan and Warbah\n    Islands or to all of Kuwait; a United Nations Boundary Demarcation\n    Commission is demarcating the Iraq-Kuwait boundary persuant to Resolution\n    687, and, on 17 June 1992, the UN Security Council reaffirmed the finality\n    of the Boundary Demarcation Commission's decisions; periodic disputes with\n    upstream riparian Syria over Euphrates water rights; potential dispute over\n    water development plans by Turkey for the Tigris and Euphrates Rivers\nClimate:\n    mostly desert; mild to cool winters with dry, hot, cloudless summers;\n    northernmost regions along Iranian and Turkish borders experience cold\n    winters with occasionally heavy snows\nTerrain:\n    mostly broad plains; reedy marshes in southeast; mountains along borders\n    with Iran and Turkey\nNatural resources:\n    crude oil, natural gas, phosphates, sulfur\nLand use:\n    arable land 12%; permanent crops 1%; meadows and pastures 9%; forest and\n    woodland 3%; other 75%; includes irrigated 4%\nEnvironment:\n    development of Tigris-Euphrates Rivers system contingent upon agreements\n    with upstream riparians (Syria, Turkey); air and water pollution; soil\n    degradation (salinization) and erosion; desertification\n\n:Iraq People\n\nPopulation:\n    18,445,847 (July 1992), growth rate 3.7% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    84 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 64 years female (1992)\nTotal fertility rate:\n    7.0 children born/woman (1992)\nNationality:\n    noun - Iraqi(s); adjective - Iraqi\nEthnic divisions:\n    Arab 75-80%, Kurdish 15-20%, Turkoman, Assyrian or other 5%\nReligions:\n    Muslim 97%, (Shi`a 60-65%, Sunni 32-37%), Christian or other 3%\nLanguages:\n    Arabic (official), Kurdish (official in Kurdish regions), Assyrian, Armenian\nLiteracy:\n    60% (male 70%, female 49%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,400,000 (1989); services 48%, agriculture 30%, industry 22%, severe labor\n    shortage; expatriate labor force about 1,600,000 (July 1990)\nOrganized labor:\n    less than 10% of the labor force\n\n:Iraq Government\n\nLong-form name:\n    Republic of Iraq\nType:\n    republic\nCapital:\n    Baghdad\nAdministrative divisions:\n    18 provinces (muhafazat, singular - muhafazah); Al Anbar, Al Basrah, Al\n    Muthanna, Al Qadisiyah, An Najaf, Arbil, As Sulaymaniyah, At Ta'im, Babil,\n    Baghdad, Dahuk, Dhi Qar, Diyala, Karbala, Maysan, Ninawa, Salah ad Din,\n    Wasit\nIndependence:\n    3 October 1932 (from League of Nations mandate under British administration)\nConstitution:\n    22 September 1968, effective 16 July 1970 (interim Constitution); new\n    constitution drafted in 1990 but not adopted\nLegal system:\n    based on Islamic law in special religious courts, civil law system\n    elsewhere; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Revolution, 17 July (1968)\nExecutive branch:\n    president, vice president, chairman of the Revolutionary Command Council,\n    vice chairman of the Revolutionary Command Council, prime minister, first\n    deputy prime minister, Council of Ministers\nLegislative branch:\n    unicameral National Assembly (Majlis al-Watani)\nJudicial branch:\n    Court of Cassation\nLeaders:\n  Chief of State:\n    President SADDAM Husayn (since 16 July 1979); Vice President Taha Muhyi\n    al-Din MA'RUF (since 21 April 1974); Vice President Taha Yasin RAMADAN\n    (since 23 March 1991)\n  Head of Government:\n    Prime Minister Muhammad Hamza al-ZUBAYDI (since 13 September 1991); Deputy\n    Prime Minister Tariq `AZIZ (since NA 1979)\nSuffrage:\n    universal adult at age 18\nElections:\n  National Assembly:\n    last held on 1 April 1989 (next to be held NA); results - Sunni Arabs 53%,\n    Shi`a Arabs 30%, Kurds 15%, Christians 2% est.; seats - (250 total) number\n    of seats by party NA\nOther political or pressure groups:\n    political parties and activity severely restricted; possibly some opposition\n    to regime from disaffected members of the regime, Army officers, and Shi`a\n    religious and Kurdish ethnic dissidents\nMember of:\n    ABEDA, ACC, AFESD, AL, AMF, CAEU, CCC, ESCWA, FAO, G-19, G-77, IAEA, IBRD,\n    ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC,\n    ISO, ITU, LORCS, NAM, OAPEC, OIC, OPEC, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Iraq has an Interest Section in the Algerian Embassy in Washington, DC;\n    Chancery at 1801 P Street NW, Washington, DC 20036; telephone (202) 483-7500\n\n:Iraq Government\n\n  US:\n    no US representative in Baghdad since mid-January 1991; Embassy in Masbah\n    Quarter (opposite the Foreign Ministry Club), Baghdad (mailing address is P.\n    O. Box 2447 Alwiyah, Baghdad); telephone [964] (1) 719-6138 or 719-6139,\n    718-1840, 719-3791\nFlag:\n    three equal horizontal bands of red (top), white, and black with three green\n    five-pointed stars in a horizontal line centered in the white band; the\n    phrase Allahu Akbar (God is Great) in green Arabic script - Allahu to the\n    right of the middle star and Akbar to the left of the middle star - was\n    added in January 1991 during the Persian Gulf crisis; similar to the flag of\n    Syria that has two stars but no script and the flag of Yemen that has a\n    plain white band; also similar to the flag of Egypt that has a symbolic\n    eagle centered in the white band\n\n:Iraq Economy\n\nOverview:\n    The Ba`thist regime engages in extensive central planning and management of\n    industrial production and foreign trade while leaving some small-scale\n    industry and services and most agriculture to private enterprise. The\n    economy has been dominated by the oil sector, which has provided about 95%\n    of foreign exchange earnings. In the 1980s financial problems, caused by\n    massive expenditures in the eight-year war with Iran and damage to oil\n    export facilities by Iran, led the government to implement austerity\n    measures and to borrow heavily and later reschedule foreign debt payments.\n    After the end of hostilities in 1988, oil exports gradually increased with\n    the construction of new pipelines and restoration of damaged facilities.\n    Agricultural development remained hampered by labor shortages, salinization,\n    and dislocations caused by previous land reform and collectivization\n    programs. The industrial sector, although accorded high priority by the\n    government, also was under financial constraints. Iraq's seizure of Kuwait\n    in August 1990, subsequent international economic embargoes, and military\n    actions by an international coalition beginning in January 1991 drastically\n    changed the economic picture. Oil exports were cut to near zero, and\n    industrial and transportation facilities were severely damaged. Throughout\n    1991, the UN's economic embargo worked to reduce exports and imports and to\n    increase prices for most goods. The government's policy to allocate goods to\n    key supporters of the regime exacerbated shortages.\nGNP:\n    $35 billion, per capita $1,940; real growth rate 10% (1989 est.)\nInflation rate (consumer prices):\n    45% (1989)\nUnemployment rate:\n    less than 5% (1989 est.)\nBudget:\n    revenues $NA billion; expenditures $NA billion, including capital\n    expenditures of NA (1989)\nExports:\n    $10.4 billion (f.o.b., 1990)\n  commodities:\n    crude oil and refined products, fertilizer, sulfur\n  partners:\n    US, Brazil, Turkey, Japan, Netherlands, Spain (1990)\nImports:\n    $6.6 billion (c.i.f., 1990)\n  commodities:\n    manufactures, food\n  partners:\n    FRG, US, Turkey, France, UK (1990)\nExternal debt:\n    $45 billion (1989 est.), excluding debt of about $35 billion owed to Arab\n    Gulf states\nIndustrial production:\n    NA%; manufacturing accounts for 10% of GNP (1989)\nElectricity:\n    3,800,000 kW available out of 9,902,000 kw capacity due to Gulf war; 7,700\n    million kWh produced, 430 kWh per capita (1991)\nIndustries:\n    petroleum production and refining, chemicals, textiles, construction\n    materials, food processing\nAgriculture:\n    accounts for 11% of GNP but 30% of labor force; principal products - wheat,\n    barley, rice, vegetables, dates, other fruit, cotton, wool; livestock -\n    cattle, sheep; not self-sufficient in food output\n\n:Iraq Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-80), $3 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $647 million;\n    Communist countries (1970-89), $3.9 billion\nCurrency:\n    Iraqi dinar (plural - dinars); 1 Iraqi dinar (ID) = 1,000 fils\nExchange rates:\n    Iraqi dinars (ID) per US$1 - 3.1 (fixed official rate since 1982);\n    black-market rate (December 1991) US$1 = 12 Iraqi dinars\nFiscal year:\n    calendar year\n\n:Iraq Communications\n\nRailroads:\n    2,457 km 1.435-meter standard gauge\nHighways:\n    34,700 km total; 17,500 km paved, 5,500 km improved earth, 11,700 km\n    unimproved earth\nInland waterways:\n    1,015 km; Shatt-al-Arab usually navigable by maritime traffic for about 130\n    km, but closed since September 1980 because of Iran-Iraq war; Tigris and\n    Euphrates Rivers have navigable sections for shallow-draft watercraft;\n    Shatt-al-Basrah canal was navigable by shallow-draft craft before closing in\n    1991 because of the Persian Gulf war\nPipelines:\n    crude oil 4,350 km; petroleum products 725 km; natural gas 1,360 km\nPorts:\n    Umm Qasr, Khawr az Zubayr, Al Basrah (closed since 1980)\nMerchant marine:\n    42 ships (1,000 GRT or over) totaling 936,665 GRT/1,683,212 DWT; includes 1\n    passenger, 1 passenger-cargo, 16 cargo, 1 refrigerated cargo, 3\n    roll-on/roll-off cargo, 19 petroleum tanker, 1 chemical tanker; note - since\n    the 2 August 1990 invasion of Kuwait by Iraqi forces, Iraq has sought to\n    register at least part of its merchant fleet under convenience flags; none\n    of the Iraqi flag merchant fleet was trading internationally as of 1 January\n    1992\nCivil air:\n    34 major transport aircraft (including 7 grounded in Iran; excluding 12\n    IL-76s and 7 Kuwait Airlines)\nAirports:\n    113 total, 98 usable; 73 with permanent-surface runways; 8 with runways over\n    3,659 m; 52 with runways 2,440-3,659 m; 12 with runways 1,220-2,439 m\nTelecommunications:\n    reconstitution of damaged telecommunication infrastructure began after\n    Desert Storm; the network consists of coaxial cables and microwave links;\n    632,000 telephones; the network is operational; broadcast stations - 16 AM,\n    1 FM, 13 TV; satellite earth stations - 1 Atlantic Ocean INTELSAT, 1 Indian\n    Ocean INTELSAT, 1 GORIZONT Atlantic Ocean in the Intersputnik system and 1\n    ARABSAT; coaxial cable and microwave to Jordan, Kuwait, Syria, and Turkey\n\n:Iraq Defense Forces\n\nBranches:\n    Army and Republican Guard, Navy, Air Force, Border Guard Force, Internal\n    Security Forces\nManpower availability:\n    males 15-49, 4,042,374; 2,272,578 fit for military service; 213,788 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GNP\n\n:Ireland Geography\n\nTotal area:\n    70,280 km2\nLand area:\n    68,890 km2\nComparative area:\n    slightly larger than West Virginia\nLand boundaries:\n    360 km; UK 360 km\nCoastline:\n    1,448 km\nMaritime claims:\n  Continental shelf:\n    no precise definition\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Northern Ireland question with the UK; Rockall continental shelf dispute\n    involving Denmark, Iceland, and the UK (Ireland and the UK have signed a\n    boundary agreement in the Rockall area)\nClimate:\n    temperate maritime; modified by North Atlantic Current; mild winters, cool\n    summers; consistently humid; overcast about half the time\nTerrain:\n    mostly level to rolling interior plain surrounded by rugged hills and low\n    mountains; sea cliffs on west coast\nNatural resources:\n    zinc, lead, natural gas, crude oil, barite, copper, gypsum, limestone,\n    dolomite, peat, silver\nLand use:\n    arable land 14%; permanent crops NEGL%; meadows and pastures 71%; forest and\n    woodland 5%; other 10%\nEnvironment:\n    deforestation\n\n:Ireland People\n\nPopulation:\n    3,521,207 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    -4 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman (1992)\nNationality:\n    noun - Irishman(men), Irish (collective pl.); adjective - Irish\nEthnic divisions:\n    Celtic, with English minority\nReligions:\n    Roman Catholic 93%, Anglican 3%, none 1%, unknown 2%, other 1% (1981)\nLanguages:\n    Irish (Gaelic) and English; English is the language generally used, with\n    Gaelic spoken in a few areas, mostly along the western seaboard\nLiteracy:\n    98% (male NA%, female NA%) age 15 and over can read and write (1981)\nLabor force:\n    1,333,000; services 57.0%, manufacturing and construction 26.1%,\n    agriculture, forestry, and fishing 15.0%, energy and mining 1.9% (1991)\nOrganized labor:\n    58% of labor force (1991)\n\n:Ireland Government\n\nLong-form name:\n    none\nType:\n    republic\nCapital:\n    Dublin\nAdministrative divisions:\n    26 counties; Carlow, Cavan, Clare, Cork, Donegal, Dublin, Galway, Kerry,\n    Kildare, Kilkenny, Laois, Leitrim, Limerick, Longford, Louth, Mayo, Meath,\n    Monaghan, Offaly, Roscommon, Sligo, Tipperary, Waterford, Westmeath,\n    Wexford, Wicklow\nIndependence:\n    6 December 1921 (from UK)\nConstitution:\n    29 December 1937; adopted 1937\nLegal system:\n    based on English common law, substantially modified by indigenous concepts;\n    judicial review of legislative acts in Supreme Court; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Saint Patrick's Day, 17 March\nExecutive branch:\n    president, prime minister, deputy prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament (Oireachtas) consists of an upper house or Senate\n    (Seanad Eireann) and a lower house or House of Representatives (Dail\n    Eireann)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Mary Bourke ROBINSON (since 9 November 1990)\n  Head of Government:\n    Prime Minister Albert REYNOLDS (since 11 February 1992)\nPolitical parties and leaders:\n    Fianna Fail, Albert REYNOLDS; Labor Party, Richard SPRING; Fine Gael, John\n    BRUTON; Communist Party of Ireland, Michael O'RIORDAN; Workers' Party\n    (vacant); Sinn Fein, Gerry ADAMS; Progressive Democrats, Desmond O'MALLEY;\n    note - Prime Minister REYNOLDS heads a coalition consisting of the Fianna\n    Fail and the Progressive Democrats\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 9 November 1990 (next to be held November 1997); results - Mary\n    Bourke ROBINSON 52.8%, Brian LENIHAN 47.2%\n  Senate:\n    last held on 17 February 1987 (next to be held February 1992); results -\n    percent of vote by party NA; seats - (60 total, 49 elected) Fianna Fail 30,\n    Fine Gael 16, Labor 3, independents 11\n  House of Representatives:\n    last held on 12 July 1989 (next to be held June 1994); results - Fianna Fail\n    44.0%, Fine Gael 29.4%, Labor Party 9.3%, Progressive Democrats 5.4%,\n    Workers' Party 4.9%, Sinn Fein 1.1%, independents 5.9%; seats - (166 total)\n    Fianna Fail 77, Fine Gael 55, Labor Party 15, Workers' Party 7, Progressive\n    Democrats 6, independents 6\nCommunists:\n    under 500\n\n:Ireland Government\n\nMember of:\n    AG, BIS, CCC, CE, CSCE, EBRD, EC, ECE, EIB, ESA, FAO, GATT, IAEA, IBRD,\n    ICAO, ICC, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO,\n    ITU, LORCS, NEA, NSG, OECD, UN, UNCTAD, UNESCO, UNFICYP, UNIDO, UNIFIL,\n    UNIIMOG, UNTSO, UPU, WHO, WIPO, WMO, ZC\nDiplomatic representation:\n    Ambassador Dermot GALLAGHER; Chancery at 2234 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 462-3939; there are Irish Consulates\n    General in Boston, Chicago, New York, and San Francisco\n  US:\n    Ambassador Richard A. MOORE; Embassy at 42 Elgin Road, Ballsbridge, Dublin;\n    telephone [353] (1) 688777; FAX [353] (1) 689-946\nFlag:\n    three equal vertical bands of green (hoist side), white, and orange; similar\n    to the flag of the Ivory Coast, which is shorter and has the colors reversed\n    - orange (hoist side), white, and green; also similar to the flag of Italy,\n    which is shorter and has colors of green (hoist side), white, and red\n\n:Ireland Economy\n\nOverview:\n    The economy is small, open, and trade dependent. Agriculture, once the most\n    important sector, is now dwarfed by industry, which accounts for 37% of GDP\n    and about 80% of exports and employs 26% of the labor force. The government\n    has successfully reduced the rate of inflation from double-digit figures in\n    the late 1970s to 3.8% in 1991. In 1987, after years of deficits, the\n    balance of payments was brought into the black. Unemployment, however,\n    remains a serious problem. A 1991 unemployment rate of 20.4% placed Ireland\n    along with Spain as the countries with the worst jobless records in Western\n    Europe.\nGDP:\n    purchasing power equivalent - $39.2 billion, per capita $11,200; real growth\n    rate 1.3% (1991 est.)\nInflation rate (consumer prices):\n    3.8% (1991)\nUnemployment rate:\n    20.4% (1991)\nBudget:\n    revenues $11.4 billion; expenditures $12.6 billion, including capital\n    expenditures of $1.6 billion (1992 est.)\nExports:\n    $27.8 billion (f.o.b., 1991)\n  commodities:\n    chemicals, data processing equipment, industrial machinery, live animals,\n    animal products\n  partners:\n    EC 74% (UK 34%, Germany 11%, France 10%), US 8%\nImports:\n    $24.5 billion (c.i.f., 1991)\n  commodities:\n    food, animal feed, chemicals, petroleum and petroleum products, machinery,\n    textiles, clothing\n  partners:\n    EC 66% (UK 41%, Germany 9%, France 4%), US 14%\nExternal debt:\n    $14.8 billion (1990)\nIndustrial production:\n    growth rate 3.0% (1991); accounts for 37% of GDP\nElectricity:\n    4,957,000 kW capacity; 14,480 million kWh produced, 4,080 kWh per capita\n    (1991)\nIndustries:\n    food products, brewing, textiles, clothing, chemicals, pharmaceuticals,\n    machinery, transportation equipment, glass and crystal\nAgriculture:\n    accounts for 11% of GDP and 15% of the labor force; principal crops -\n    turnips, barley, potatoes, sugar beets, wheat; livestock - meat and dairy\n    products; 85% self-sufficient in food; food shortages include bread grain,\n    fruits, vegetables\nEconomic aid:\n    donor - ODA commitments (1980-89), $90 million\nCurrency:\n    Irish pound (plural - pounds); 1 Irish pound (#Ir) = 100 pence\nExchange rates:\n    Irish pounds (#Ir) per US$1 - 0.6227 (March 1992), 0.6190 (1991), 0.6030\n    (1990), 0.7472 (1989), 0.6553 (1988), 0.6720 (1987)\nFiscal year:\n    calendar year\n\n:Ireland Communications\n\nRailroads:\n    Irish National Railways (CIE) operates 1,947 km 1.602-meter gauge,\n    government owned; 485 km double track; 38 km electrified\nHighways:\n    92,294 km total; 87,422 km paved, 4,872 km gravel or crushed stone\nInland waterways:\n    limited for commercial traffic\nPipelines:\n    natural gas 225 km\nPorts:\n    Cork, Dublin, Shannon Estuary, Waterford\nMerchant marine:\n    55 ships (1,000 GRT or over) totaling 146,081 GRT/177,058 DWT; includes 4\n    short-sea passenger, 32 cargo, 2 refrigerated cargo, 3 container, 3\n    petroleum tanker, 3 specialized tanker, 2 chemical tanker, 6 bulk\nCivil air:\n    23 major transport aircraft\nAirports:\n    36 total, 35 usable; 17 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 6 with runways 1,220-2,439 m\nTelecommunications:\n    small, modern system using cable and digital microwave circuits; 900,000\n    telephones; broadcast stations - 9 AM, 45 FM, 86 TV; 2 coaxial submarine\n    cables; 1 Atlantic Ocean INTELSAT earth station\n\n:Ireland Defense Forces\n\nBranches:\n    Army (including Naval Service and Air Corps), National Police (GARDA)\nManpower availability:\n    males 15-49, 894,421; 724,262 fit for military service; 34,182 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $566 million, 1-2% of GDP (1992 est.)\n\n:Israel Header\n\nNote:\n    The Arab territories occupied by Israel since the 1967 war are not included\n    in the data below. As stated in the 1978 Camp David Accords and reaffirmed\n    by President Bush's post-Gulf crisis peace initiative, the final status of\n    the West Bank and Gaza Strip, their relationship with their neighbors, and a\n    peace treaty between Israel and Jordan are to be negotiated among the\n    concerned parties. The Camp David Accords further specify that these\n    negotiations will resolve the location of the respective boundaries. Pending\n    the completion of this process, it is US policy that the final status of the\n    West Bank and Gaza Strip has yet to be determined (see West Bank and Gaza\n    Strip entries). On 25 April 1982 Israel relinquished control of the Sinai to\n    Egypt. Statistics for the Israeli-occupied Golan Heights are included in the\n    Syria entry.\n\n:Israel Geography\n\nTotal area:\n    20,770 km2\nLand area:\n    20,330 km2\nComparative area:\n    slightly larger than New Jersey\nLand boundaries:\n    1,006 km; Egypt 255 km, Jordan 238 km, Lebanon 79 km, Syria 76 km, West Bank\n    307, Gaza Strip 51 km\nCoastline:\n    273 km\nMaritime claims:\n  Continental shelf:\n    to depth of exploitation\n  Territorial sea:\n    6 nm\nDisputes:\n    separated from Lebanon, Syria, and the West Bank by the 1949 Armistice Line;\n    differences with Jordan over the location of the 1949 Armistice Line that\n    separates the two countries; West Bank and Gaza Strip are Israeli occupied\n    with status to be determined; Golan Heights is Israeli occupied; Israeli\n    troops in southern Lebanon since June 1982; water-sharing issues with Jordan\nClimate:\n    temperate; hot and dry in desert areas\nTerrain:\n    Negev desert in the south; low coastal plain; central mountains; Jordan Rift\n    Valley\nNatural resources:\n    copper, phosphates, bromide, potash, clay, sand, sulfur, asphalt, manganese,\n    small amounts of natural gas and crude oil\nLand use:\n    arable land 17%; permanent crops 5%; meadows and pastures 40%; forest and\n    woodland 6%; other 32%; includes irrigated 11%\nEnvironment:\n    sandstorms may occur during spring and summer; limited arable land and\n    natural water resources pose serious constraints; deforestation\nNote:\n    there are 175 Jewish settlements in the West Bank, 38 in the\n    Israeli-occupied Golan Heights, 18 in the Gaza Strip, and 14 Israeli-built\n    Jewish neighborhoods in East Jerusalem\n\n:Israel People\n\nPopulation:\n    4,748,059 (July 1992), growth rate 4.0% (1992); includes 95,000 Jewish\n    settlers in the West Bank, 14,000 in the Israeli-occupied Golan Heights,\n    4,000 in the Gaza Strip, and 132,000 in East Jerusalem (1992 est.)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    26 migrants/1,000 population (1992)\nInfant mortality rate:\n    9 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    76 years male, 80 years female (1992)\nTotal fertility rate:\n    2.9 children born/woman (1992)\nNationality:\n    noun - Israeli(s); adjective - Israeli\nEthnic divisions:\n    Jewish 83%, non-Jewish (mostly Arab) 17%\nReligions:\n    Judaism 82%, Islam (mostly Sunni Muslim) 14%, Christian 2%, Druze and other\n    2%\nLanguages:\n    Hebrew (official); Arabic used officially for Arab minority; English most\n    commonly used foreign language\nLiteracy:\n    92% (male 95%, female 89%) age 15 and over can read and write (1983)\nLabor force:\n    1,400,000 (1984 est.); public services 29.3%; industry, mining, and\n    manufacturing 22.8%; commerce 12.8%; finance and business 9.5%; transport,\n    storage, and communications 6.8%; construction and public works 6.5%;\n    personal and other services 5.8%; agriculture, forestry, and fishing 5.5%;\n    electricity and water 1.0% (1983)\nOrganized labor:\n    90% of labor force\n\n:Israel Government\n\nLong-form name:\n    State of Israel\nType:\n    republic\nCapital:\n    Israel proclaimed Jerusalem its capital in 1950, but the US, like nearly all\n    other countries, maintains its Embassy in Tel Aviv\nAdministrative divisions:\n    6 districts (mehozot, singular - mehoz); Central, Haifa, Jerusalem,\n    Northern, Southern, Tel Aviv\nIndependence:\n    14 May 1948 (from League of Nations mandate under British administration)\nConstitution:\n    no formal constitution; some of the functions of a constitution are filled\n    by the Declaration of Establishment (1948), the basic laws of the parliament\n    (Knesset), and the Israeli citizenship law\nLegal system:\n    mixture of English common law, British Mandate regulations, and, in personal\n    matters, Jewish, Christian, and Muslim legal systems; in December 1985,\n    Israel informed the UN Secretariat that it would no longer accept compulsory\n    ICJ jurisdiction\nNational holiday:\n    Independence Day; Israel declared independence on 14 May 1948, but the\n    Jewish calendar is lunar and the holiday may occur in April or May\nExecutive branch:\n    president, prime minister, vice prime minister, Cabinet\nLegislative branch:\n    unicameral parliament (Knesset)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Chaim HERZOG (since 5 May 1983)\n  Head of Government:\n    Prime Minister Yitzhak SHAMIR (since 20 October 1986)\nPolitical parties and leaders:\n    Israel currently has a coalition government comprising 12 parties that hold\n    66 of the Knesset's 120 seats; currently in state of flux; election held 23\n    June 1992\n  Members of the government:\n    Likud bloc, Prime Minister Yitzhak SHAMIR; Sephardic Torah Guardians (SHAS),\n    Minister of Interior Arieh DER'I; National Religious Party, Minister of\n    Education Shulamit ALONI; Agudat Israel, Avraham SHAPIRA; Degel HaTorah,\n    Avraham RAVITZ; Moriya, Minister of Immigrant Absorption, Yair TZABAN;\n    Ge'ulat Israel, Eliezer MIZRAHI; New Liberal Party, Minister of Finance,\n    Avraham SHOCHAT; Tehiya Party, Minister of Science Technology, Yuval NEEMAN;\n    Tzomet Party Unity for Peace and Aliyah, Rafael EITAN; Moledet Party,\n    Rehavam ZEEVI\n  Opposition parties:\n    Labor Party, Shimon PERES; Citizens' Rights Movement, Shulamit ALONI; United\n    Workers' Party (MAPAM), Yair TZABAN; Center Movement-Shinui, Amnon\n    RUBENSTEIN; New Israeli Communist Party (MAKI), Meir WILNER; Progressive\n    List for Peace, Muhammad MI'ARI; Arab Democratic Party, `Abd Al Wahab\n    DARAWSHAH; Black Panthers, Charlie BITON\nSuffrage:\n    universal at age 18\n\n:Israel Government\n\nElections:\n  President:\n    last held 23 February 1988 (next to be held February 1994); results - Chaim\n    HERZOG reelected by Knesset\n  Knesset:\n    last held June 1992 (next to be held by NA; results - percent of vote by\n    party NA; seats - (120 total) Labor Party 44, Likud bloc 12, SHAS 6,\n    National Religious Party 6, Meretz 12, Agudat Yisrael 4, PAZI 3, MAKI 3,\n    Tehiya Party 3, Tzomet Party 8, Moledet Party 3, Degel HaTorah 4, Center\n    Movement Progressive List for Peace 1, Arab Democratic Party 2; Black\n    Panthers 1, Moriya 1, Ge'ulat Yisrael 1, Unity for Peace and Aliyah 1\nCommunists:\n    Hadash (predominantly Arab but with Jews in its leadership) has some 1,500\n    members\nOther political or pressure groups:\n    Gush Emunim, Jewish nationalists advocating Jewish settlement on the West\n    Bank and Gaza Strip; Peace Now, critical of government's West Bank/Gaza\n    Strip and Lebanon policies\nMember of:\n    AG (observer), CCC, EBRD, FAO, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO,\n    ITU, OAS (observer), PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Zalman SHOVAL; Chancery at 3514 International Drive NW,\n    Washington, DC 20008; telephone (202) 364-5500; there are Israeli Consulates\n    General in Atlanta, Boston, Chicago, Houston, Los Angeles, Miami, New York,\n    Philadelphia, and San Francisco\n  US:\n    Ambassador William HARROP; Embassy at 71 Hayarkon Street, Tel Aviv (mailing\n    address is APO AE 09830; telephone [972] (3) 654338; FAX [972] (3) 663449;\n    there is a US Consulate General in Jerusalem\nFlag:\n    white with a blue hexagram (six-pointed linear star) known as the Magen\n    David (Shield of David) centered between two equal horizontal blue bands\n    near the top and bottom edges of the flag\n\n:Israel Economy\n\nOverview:\n    Israel has a market economy with substantial government participation. It\n    depends on imports of crude oil, grains, raw materials, and military\n    equipment. Despite limited natural resources, Israel has intensively\n    developed its agricultural and industrial sectors over the past 20 years.\n    Industry employs about 20% of Israeli workers, agriculture 5%, and services\n    most of the rest. Diamonds, high-technology equipment, and agricultural\n    products (fruits and vegetables) are leading exports. Israel usually posts\n    balance-of-payments deficits, which are covered by large transfer payments\n    from abroad and by foreign loans. Roughly half of the government's $17\n    billion external debt is owed to the United States, which is its major\n    source of economic and military aid. To earn needed foreign exchange, Israel\n    has been targeting high-technology niches in international markets, such as\n    medical scanning equipment. Iraq's invasion of Kuwait in August 1990 dealt a\n    blow to Israel's economy. Higher world oil prices added an estimated $300\n    million to the oil import bill that year and helped keep annual inflation at\n    18%. Regional tension and the continuing Palestinian uprising (intifadah)\n    have contributed to a sharp drop in tourism - a key foreign exchange earner\n    - to the lowest level since the 1973 Arab-Israeli war. The influx of Jewish\n    immigrants from the former USSR, which topped 330,000 during the period\n    1990-91, will increase unemployment, intensify housing problems, widen the\n    government budget deficit, and fuel inflation.\nGDP:\n    purchasing power equivalent - $54.6 billion, per capita $12,000; real growth\n    rate 5% (1991 est.)\nInflation rate (consumer prices):\n    18% (1991 est.)\nUnemployment rate:\n    11% (1991 est.)\nBudget:\n    revenues $41.7 billion; expenditures $47.6 billion, including capital\n    expenditures of $NA (FY92)\nExports:\n    $12.1 billion (f.o.b., 1991 est.)\n  commodities:\n    polished diamonds, citrus and other fruits, textiles and clothing, processed\n    foods, fertilizer and chemical products, military hardware, electronics\n  partners:\n    US, EC, Japan, Hong Kong, Switzerland\nImports:\n    $18.1 billion (c.i.f., 1991 est.)\n  commodities:\n    military equipment, rough diamonds, oil, chemicals, machinery, iron and\n    steel, cereals, textiles, vehicles, ships, aircraft\n  partners:\n    US, EC, Switzerland, Japan, South Africa, Canada, Hong Kong\nExternal debt:\n    $24 billion, of which government debt is $17 billion (December 1991 est.)\nIndustrial production:\n    growth rate - 7% (1991 est.); accounts for about 20% of GDP\nElectricity:\n    5,300,000 kWh capacity; 21,000 million kWh produced, 4,800 kWh per capita\n    (1991)\nIndustries:\n    food processing, diamond cutting and polishing, textiles, clothing,\n    chemicals, metal products, military equipment, transport equipment,\n    electrical equipment, miscellaneous machinery, potash mining,\n    high-technology electronics, tourism\n\n:Israel Economy\n\nAgriculture:\n    accounts for about 3% of GDP; largely self-sufficient in food production,\n    except for grains; principal products - citrus and other fruits, vegetables,\n    cotton; livestock products - beef, dairy, and poultry\nEconomic aid:\n    US commitments, including Ex-Im (FY70-90), $18.2 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.8 billion\nCurrency:\n    new Israeli shekel (plural - shekels); 1 new Israeli shekel (NIS) = 100 new\n    agorot\nExchange rates:\n    new Israeli shekels (NIS) per US$1 - 2.4019 (March 1992), 2.2791 (1991),\n    2.0162 (1990), 1.9164 (1989), 1.5989 (1988), 1.5946 (1987)\nFiscal year:\n    previously 1 April - 31 March; FY91 was 1 April - 31 December, and since 1\n    January 1992 the fiscal year has conformed to the calendar year\n\n:Israel Communications\n\nRailroads:\n    600 km 1.435-meter gauge, single track; diesel operated\nHighways:\n    4,750 km; majority is bituminous surfaced\nPipelines:\n    crude oil 708 km; petroleum products 290 km; natural gas 89 km\nPorts:\n    Ashdod, Haifa\nMerchant marine:\n    34 ships (1,000 GRT or over) totaling 629,966 GRT/721,106 DWT; includes 8\n    cargo, 23 container, 2 refrigerated cargo, 1 roll-on/roll-off; note - Israel\n    also maintains a significant flag of convenience fleet, which is normally at\n    least as large as the Israeli flag fleet; the Israeli flag of convenience\n    fleet typically includes all of its petroleum tankers\nCivil air:\n    32 major transport aircraft\nAirports:\n    51 total, 44 usable; 26 with permanent-surface runways; none with runways\n    over 3,659 m; 6 with runways 2,440-3,659 m; 11 with runways 1,220-2,439 m\nTelecommunications:\n    most highly developed in the Middle East although not the largest; good\n    system of coaxial cable and radio relay; 1,800,000 telephones; broadcast\n    stations - 14 AM, 21 FM, 20 TV; 3 submarine cables; satellite earth stations\n    - 2 Atlantic Ocean INTELSAT and 1 Indian Ocean INTELSAT\n\n:Israel Defense Forces\n\nBranches:\n    Israel Defense Forces, including ground, naval, and air components;\n    historically, there have been no separate Israeli military services\nManpower availability:\n    eligible 15-49, 2,357,195; of the 1,189,275 males 15-49, 977,332 are fit for\n    military service; of the 1,167,920 females 15-49, 955,928 are fit for\n    military service; 44,624 males and 42,705 females reach military age (18)\n    annually; both sexes are liable for military service; Nahal or Pioneer\n    Fighting Youth, Frontier Guard, Chen\nDefense expenditures:\n    $7.5 billion, 12.1% of GNP (1992 budget); note - does not include pay for\n    reserve soldiers and other defense-related categories; actual outlays would\n    therefore be higher\n\n:Italy Geography\n\nTotal area:\n    301,230 km2\nLand area:\n    294, 020 km2; includes Sardinia and Sicily\nComparative area:\n    slightly larger than Arizona\nLand boundaries:\n    1,899.2 km; Austria 430 km, France 488 km, San Marino 39 km, Slovenia 199\n    km, Switzerland 740 km, Vatican City 3.2 km\nCoastline:\n    4,996 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    predominantly Mediterranean; Alpine in far north; hot, dry in south\nTerrain:\n    mostly rugged and mountainous; some plains, coastal lowlands\nNatural resources:\n    mercury, potash, marble, sulfur, dwindling natural gas and crude oil\n    reserves, fish, coal\nLand use:\n    arable land 32%; permanent crops 10%; meadows and pastures 17%; forest and\n    woodland 22%; other 19%; includes irrigated 10%\nEnvironment:\n    regional risks include land-slides, mudflows, snowslides, earthquakes,\n    volcanic eruptions, flooding, pollution; land sinkage in Venice\nNote:\n    strategic location dominating central Mediterranean as well as southern sea\n    and air approaches to Western Europe\n\n:Italy People\n\nPopulation:\n    57,904,628 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    10 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.4 children born/woman (1992)\nNationality:\n    noun - Italian(s); adjective - Italian\nEthnic divisions:\n    primarily Italian but population includes small clusters of German-,\n    French-, and Slovene-Italians in the north and Albanian-Italians and\n    Greek-Italians in the south; Sicilians; Sardinians\nReligions:\n    virtually 100% Roman Catholic\nLanguages:\n    Italian; parts of Trentino-Alto Adige region are predominantly German\n    speaking; small French-speaking minority in Valle d'Aosta region;\n    Slovene-speaking minority in the Trieste-Gorizia area\nLiteracy:\n    97% (male 98%, female 96%) age 15 and over can read and write (1990 est.)\nLabor force:\n    23,988,000; services 58%, industry 32.2%, agriculture 9.8% (1988)\nOrganized labor:\n    40-45% of labor force (est.)\n\n:Italy Government\n\nLong-form name:\n    Italian Republic\nType:\n    republic\nCapital:\n    Rome\nAdministrative divisions:\n    20 regions (regioni, singular - regione); Abruzzi, Basilicata, Calabria,\n    Campania, Emilia-Romagna, Friuli-Venezia Giulia, Lazio, Liguria, Lombardia,\n    Marche, Molise, Piemonte, Puglia, Sardegna, Sicilia, Toscana, Trentino-Alto\n    Adige, Umbria, Valle d'Aosta, Veneto\nIndependence:\n    17 March 1861, Kingdom of Italy proclaimed\nConstitution:\n    1 January 1948\nLegal system:\n    based on civil law system, with ecclesiastical law influence; appeals\n    treated as trials de novo; judicial review under certain conditions in\n    Constitutional Court; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Republic, 2 June (1946)\nExecutive branch:\n    president, prime minister (president of the Council of Ministers)\nLegislative branch:\n    bicameral Parliament (Parlamento) consists of an upper chamber or Senate of\n    the Republic (Senato della Repubblica) and a lower chamber or Chamber of\n    Deputies (Camera dei Deputati)\nJudicial branch:\n    Constitutional Court (Corte Costituzionale)\nLeaders:\n  Chief of State:\n    President Oscar Luigi SCALFARO (since 28 May 1992)\n  Head of Government:\n    Prime Minister Guiliano AMATO (since 28 June 1992); Deputy Prime Minister\nPolitical parties and leaders:\n    Christian Democratic Party (DC), Arnaldo FORLANI (general secretary),\n    Ciriaco De MITA (president); Socialist Party (PSI), Bettino CRAXI (party\n    secretary); Social Democratic Party (PSDI), Carlo VIZZINI (party secretary);\n    Liberal Party (PLI), Renato ALTISSIMO (secretary general); Democratic Party\n    of the Left (PDS - was Communist Party, or PCI, until January 1991), Achille\n    OCCHETTO (secretary general); Italian Social Movement (MSI), Gianfranco FINI\n    (national secretary); Republican Party (PRI), Giorgio La MALFA (political\n    secretary); Lega Nord (Northern League), Umberto BOSSI, president\nSuffrage:\n    universal at age 18 (except in senatorial elections, where minimum age is\n    25)\nElections:\n  Senate:\n    last held 5-6 April 1992 (next to be held by April 1997); results - DC\n    33.9%, PCI 28.3%, PSI 10.7%, other 27.1%; seats - (326 total, 315 elected)\n    DC 107, PDS 64, PSI 49, Leagues 25, other 70\n  Chamber of Deputies:\n    last held 5-6 April 1992 (next to be held April 1997); results - DC 29.7%,\n    PDS 26.6%, PSI 13.6%, Leagues 8.7%, Communist Renewal 5.6%, MSI 5.4%, PRI\n    4.4%, PLI 2.8%, PSDI 2.7%, other 11%\n\n:Italy Government\n\nOther political or pressure groups:\n    the Roman Catholic Church; three major trade union confederations (CGIL -\n    Communist dominated, CISL - Christian Democratic, and UIL - Social\n    Democratic, Socialist, and Republican); Italian manufacturers association\n    (Confindustria); organized farm groups (Confcoltivatori, Confagricoltura)\nMember of:\n    AfDB, AG (observer), Australia Group, AsDB, BIS, CCC, CDB (nonregional\n    member), CE, CERN, COCOM, CSCE, EBRD, EC, ECE, EIB, ESA, FAO, G-7, G-10,\n    GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IFAD, IEA, IFC, ILO, IMF,\n    IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS, MTCR, NACC,\n    NATO, NEA, NSG, OAS (observer), OECD, PCA, MTCR, UN, UNCTAD, UNESCO, UNHCR,\n    UNIDO, UNIFIL, UNIIMOG, UNMOGIP, UNTSO, UPU, WCL, WEU, WHO, WIPO, WMO, WTO,\n    ZC\nDiplomatic representation:\n    Ambassador Boris BIANCHERI CHIAPPORI; Chancery at 1601 Fuller Street NW,\n    Washington, DC 20009; telephone (202) 328-5500; there are Italian Consulates\n    General in Boston, Chicago, Houston, New Orleans, Los Angeles, Philadelphia,\n    San Francisco, and Consulates in Detroit and Newark (New Jersey)\n  US:\n    Ambassador Peter F. SECCHIA; Embassy at Via Veneto 119/A, 00187, Rome\n    (mailing address is APO AE 09624); telephone [39] (6) 46741, FAX [39] (6)\n    467-2356; there are US Consulates General in Florence, Genoa, Milan, Naples,\n    and Palermo (Sicily)\nFlag:\n    three equal vertical bands of green (hoist side), white, and red; similar to\n    the flag of Ireland, which is longer and is green (hoist side), white, and\n    orange; also similar to the flag of the Ivory Coast, which has the colors\n    reversed - orange (hoist side), white, and green\n\n:Italy Economy\n\nOverview:\n    Since World War II the economy has changed from one based on agriculture\n    into a ranking industrial economy, with approximately the same total and per\n    capita output as France and the UK. The country is still divided into a\n    developed industrial north, dominated by small private companies, and an\n    undeveloped agricultural south, dominated by large public enterprises.\n    Services account for 48% of GDP, industry about 35%, agriculture 4%, and\n    public administration 13%. Most raw materials needed by industry and over\n    75% of energy requirements must be imported. After growing at an annual\n    average rate of 3% during the period 1983-90, growth slowed to about 1% in\n    1991. For the 1990s, Italy faces the problems of refurbishing a tottering\n    communications system, curbing pollution in major industrial centers, and\n    adjusting to the new competitive forces accompanying the ongoing economic\n    integration of the European Community.\nGDP:\n    purchasing power equivalent - $965.0 billion, per capita $16,700; real\n    growth rate 1.0% (1991 est.)\nInflation rate (consumer prices):\n    6.5% (1991)\nUnemployment rate:\n    11.0% (1991 est.)\nBudget:\n    revenues $431 billion; expenditures $565 billion, including capital\n    expenditures of $48 billion (1991)\nExports:\n    $209 billion (f.o.b., 1991)\n  commodities:\n    textiles, wearing apparel, metals, transportation equipment, chemicals\n  partners:\n    EC 58.5%, US 8%, OPEC 4%\nImports:\n    $222 billion (c.i.f., 1991)\n  commodities:\n    petroleum, industrial machinery, chemicals, metals, food, agricultural\n    products\n  partners:\n    EC 58%, OPEC 7%, US 5%\nExternal debt:\n    NA\nIndustrial production:\n    growth rate - 2.0% (1991); accounts for almost 35% of GDP\nElectricity:\n    57,500,000 kW capacity; 235,000 million kWh produced, 4,072 kWh per capita\n    (1991)\nIndustries:\n    machinery, iron and steel, chemicals, food processing, textiles, motor\n    vehicles, clothing, footwear, ceramics\nAgriculture:\n    accounts for about 4% of GDP and 10% of the work force; self-sufficient in\n    foods other than meat and dairy products; principal crops - fruits,\n    vegetables, grapes, potatoes, sugar beets, soybeans, grain, olives; fish\n    catch of 388,200 metric tons in 1988\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $25.9 billion\nCurrency:\n    Italian lira (plural - lire); 1 Italian lira (Lit) = 100 centesimi\nExchange rates:\n    Italian lire (Lit) per US$1 - 1,248.4 (March 1992), 1,240.6 (January 1991),\n    1,198.1 (1990), 1,372.1 (1989), 1,301.6 (1988), 1,296.1 (1987)\n\n:Italy Economy\n\nFiscal year:\n    calendar year\n\n:Italy Communications\n\nRailroads:\n    20,011 km total; 16,066 km 1.435-meter government-owned standard gauge\n    (8,999 km electrified); 3,945 km privately owned - 2,100 km 1.435-meter\n    standard gauge (1,155 km electrified) and 1,845 km 0.950-meter narrow gauge\n    (380 km electrified)\nHighways:\n    294,410 km total; autostrada (expressway) 5,900 km, state highways 45,170\n    km, provincial highways 101,680 km, communal highways 141,660 km; 260,500 km\n    paved, 26,900 km gravel and crushed stone, 7,010 km earth\nInland waterways:\n    2,400 km for various types of commercial traffic, although of limited\n    overall value\nPipelines:\n    crude oil 1,703 km; petroleum products 2,148 km; natural gas 19,400 km\nPorts:\n    Cagliari (Sardinia), Genoa, La Spezia, Livorno, Naples, Palermo (Sicily),\n    Taranto, Trieste, Venice\nMerchant marine:\n    546 ships (1,000 GRT or over) totaling 7,004,462 GRT/10,265,132 DWT;\n    includes 17 passenger, 39 short-sea passenger, 94 cargo, 4 refrigerated\n    cargo, 24 container, 66 roll-on/roll-off cargo, 9 vehicle carrier, 1\n    multifunction large-load carrier, 1 livestock carrier, 142 petroleum tanker,\n    33 chemical tanker, 39 liquefied gas, 10 specialized tanker, 10 combination\n    ore/oil, 55 bulk, 2 combination bulk\nCivil air:\n    125 major transport aircraft\nAirports:\n    137 total, 134 usable; 91 with permanent-surface runways; 2 with runways\n    over 3,659 m; 36 with runways 2,440-3,659 m; 39 with runways 1,220-2,439 m\nTelecommunications:\n    modern, well-developed, fast; 25,600,000 telephones; fully automated\n    telephone, telex, and data services; high-capacity cable and radio relay\n    trunks; very good broadcast service by stations - 135 AM, 28 (1,840\n    repeaters) FM, 83 (1,000 repeaters) TV; international service by 21\n    submarine cables; 3 satellite earth stations operating in INTELSAT with 3\n    Atlantic Ocean antennas and 2 Indian Ocean antennas; also participates in\n    INMARSAT and EUTELSAT systems\n\n:Italy Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Carabinieri\nManpower availability:\n    males 15-49, 14,864,191; 12,980,362 fit for military service; 441,768 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $22.7 billion, 2.2% of GDP (1991)\n\n:Ivory Coast Geography\n\nTotal area:\n    322,460 km2\nLand area:\n    318,000 km2\nComparative area:\n    slightly larger than New Mexico\nLand boundaries:\n    3,110 km; Burkina 584 km, Ghana 668 km, Guinea 610 km, Liberia 716 km, Mali\n    532 km\nCoastline:\n    515 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical along coast, semiarid in far north; three seasons - warm and dry\n    (November to March), hot and dry (March to May), hot and wet (June to\n    October)\nTerrain:\n    mostly flat to undulating plains; mountains in northwest\nNatural resources:\n    crude oil, diamonds, manganese, iron ore, cobalt, bauxite, copper\nLand use:\n    arable land 9%; permanent crops 4%; meadows and pastures 9%; forest and\n    woodland 26%; other 52%; includes irrigated NEGL%\nEnvironment:\n    coast has heavy surf and no natural harbors; severe deforestation\n\n:Ivory Coast People\n\nPopulation:\n    13,497,153 (July 1992), growth rate 3.9% (1992)\nBirth rate:\n    47 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    3 migrants/1,000 population (1992)\nInfant mortality rate:\n    94 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    53 years male, 57 years female (1992)\nTotal fertility rate:\n    6.8 children born/woman (1992)\nNationality:\n    noun - Ivorian(s); adjective - Ivorian\nEthnic divisions:\n    over 60 ethnic groups; most important are the Baoule 23%, Bete 18%, Senoufou\n    15%, Malinke 11%, and Agni; foreign Africans, mostly Burkinabe about 2\n    million; non-Africans about 130,000 to 330,000 (French 30,000 and Lebanese\n    100,000 to 300,000)\nReligions:\n    indigenous 63%, Muslim 25%, Christian 12%,\nLanguages:\n    French (official), over 60 native dialects; Dioula most widely spoken\nLiteracy:\n    54% (male 67%, female 40%) age 15 and over can read and write (1990 est.)\nLabor force:\n    5,718,000; over 85% of population engaged in agriculture, forestry,\n    livestock raising; about 11% of labor force are wage earners, nearly half in\n    agriculture and the remainder in government, industry, commerce, and\n    professions; 54% of population of working age (1985)\nOrganized labor:\n    20% of wage labor force\n\n:Ivory Coast Government\n\nLong-form name:\n    Republic of the Ivory Coast; note - the local official name is Republique de\n    Cote d'Ivoire\nType:\n    republic; multiparty presidential regime established 1960\nCapital:\n    Yamoussoukro (although Yamoussoukro has been the capital since 1983, Adibjan\n    remains the administrative center; foreign governments, including the United\n    States, maintain presence in Abidjan)\nAdministrative divisions:\n    49 departments (departements, singular - (departement); Abengourou, Abidjan,\n    Aboisso, Adzope, Agboville, Bangolo, Beoumi, Biankouma, Bondoukou,\n    Bongouanou, Bouafle, Bouake, Bouna, Boundiali, Dabakala, Daloa, Danane,\n    Daoukro, Dimbokro, Divo, Duekoue, Ferkessedougou, Gagnoa, Grand-Lahou,\n    Guiglo, Issia, Katiola, Korhogo, Lakota, Man, Mankono, Mbahiakro, Odienne,\n    Oume, Sakassou, San-Pedro, Sassandra, Seguela, Sinfra, Soubre, Tabou, Tanda,\n    Tingrela, Tiassale, Touba, Toumodi, Vavoua, Yamoussoukro, Zuenoula\nIndependence:\n    7 August 1960 (from France)\nConstitution:\n    3 November 1960\nLegal system:\n    based on French civil law system and customary law; judicial review in the\n    Constitutional Chamber of the Supreme Court; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    National Day, 7 December\nExecutive branch:\n    president, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State and Head of Government:\n    President Dr. Felix HOUPHOUET-BOIGNY (since 27 November 1960); Prime\n    Minister Alassane OUATTARA (since 7 November 1990)\nPolitical parties and leaders:\n    Democratic Party of the Ivory Coast (PDCI), Dr. Felix HOUPHOUET-BOIGNY;\n    Ivorian Popular Front (FPI), Laurent GBAGBO; Ivorian Worker's Party (PIT),\n    Francis WODIE; Ivorian Socialist Party (PSI), Morifere BAMBA; over 20\n    smaller parties\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    last held 28 October 1990 (next to be held October 1995); results -\n    President Felix HOUPHOUET-BOIGNY received 81% of the vote in his first\n    contested election; he is currently serving his seventh consecutive\n    five-year term\n  National Assembly:\n    last held 25 November 1990 (next to be held November 1995); results -\n    percent of vote by party NA; seats - (175 total) PDCI 163, FPI 9, PIT 1,\n    independents 2\nMember of:\n    ACCT, ACP, AfDB, CCC, CEAO, ECA, ECOWAS, Entente, FAO, FZ, G-24, G-77, GATT,\n    IAEA, IBRD, ICAO, ICC, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL,\n    IOC, ISO, ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL,\n    WHO, WIPO, WMO, WTO\n\n:Ivory Coast Government\n\nDiplomatic representation:\n    Ambassador Charles GOMIS; Chancery at 2424 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 797-0300\n  US:\n    Ambassador Kenneth L. BROWN; Embassy at 5 Rue Jesse Owens, Abidjan (mailing\n    address is 01 B. P. 1712, Abidjan); telephone [225] 21-09-79 or 21-46-72,\n    FAX [225] 22-32-59\nFlag:\n    three equal vertical bands of orange (hoist side), white, and green; similar\n    to the flag of Ireland, which is longer and has the colors reversed - green\n    (hoist side), white, and orange; also similar to the flag of Italy, which is\n    green (hoist side), white, and red; design was based on the flag of France\n\n:Ivory Coast Economy\n\nOverview:\n    Ivory Coast is among the world's largest producers and exporters of coffee,\n    cocoa beans, and palm-kernel oil. Consequently, the economy is highly\n    sensitive to fluctuations in international prices for coffee and cocoa and\n    to weather conditions. Despite attempts by the government to diversify, the\n    economy is still largely dependent on agriculture and related industries.\n    The agricultural sector accounts for over one-third of GDP and about 80% of\n    export earnings and employs about 85% of the labor force. A collapse of\n    world cocoa and coffee prices in 1986 threw the economy into a recession,\n    from which the country had not recovered by 1990. Continuing poor prices for\n    commodity exports, an overvalued exchange rate, a bloated public-sector wage\n    bill, and a large foreign debt hindered economic recovery in 1991.\nGDP:\n    exchange rate conversion - $10 billion, per capita $800; real growth rate\n    -2.9% (1990)\nInflation rate (consumer prices):\n    -0.8% (1990 est.)\nUnemployment rate:\n    14% (1985)\nBudget:\n    revenues $2.8 billion (1989 est.); expenditures $4.1 billion, including\n    capital expenditures of $NA (1989 est.)\nExports:\n    $2.5 billion (f.o.b., 1989)\n  commodities:\n    cocoa 30%, coffee 20%, tropical woods 11%, cotton, bananas, pineapples, palm\n    oil, cotton\n  partners:\n    France, FRG, Netherlands, US, Belgium, Spain (1985)\nImports:\n    $1.4 billion (f.o.b., 1989)\n  commodities:\n    manufactured goods and semifinished products 50%, consumer goods 40%, raw\n    materials and fuels 10%\n  partners:\n    France, other EC, Nigeria, US, Japan (1985)\nExternal debt:\n    $15.0 billion (1990 est.)\nIndustrial production:\n    growth rate - 6% (1989); accounts for 17% of GDP\nElectricity:\n    1,210,000 kW capacity; 2,680 million kWh produced, 210 kWh per capita (1991)\nIndustries:\n    foodstuffs, wood processing, oil refinery, automobile assembly, textiles,\n    fertilizer, beverage\nAgriculture:\n    most important sector, contributing one-third to GDP and 80% to exports;\n    cash crops include coffee, cocoa beans, timber, bananas, palm kernels,\n    rubber; food crops - corn, rice, manioc, sweet potatoes; not self-sufficient\n    in bread grain and dairy products\nIllicit drugs:\n    illicit producer of cannabis on a small scale for the international drug\n    trade\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $356 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-88), $5.2 billion\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\n\n:Ivory Coast Economy\n\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987), 346.30 (1986)\nFiscal year:\n    calendar year\n\n:Ivory Coast Communications\n\nRailroads:\n    660 km (Burkina border to Abidjan, 1.00-meter gauge, single track, except 25\n    km Abidjan-Anyama section is double track)\nHighways:\n    46,600 km total; 3,600 km paved; 32,000 km gravel, crushed stone, laterite,\n    and improved earth; 11,000 km unimproved\nInland waterways:\n    980 km navigable rivers, canals, and numerous coastal lagoons\nPorts:\n    Abidjan, San-Pedro\nMerchant marine:\n    7 ships (1,000 GRT or over) totaling 70,957 GRT/ 91,782 DWT; includes 5\n    cargo, 1 petroleum tanker, 1 chemical tanker\nCivil air:\n    14 major transport aircraft, including multinationally owned Air Afrique\n    fleet\nAirports:\n    45 total, 39 usable; 7 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    well-developed by African standards but operating well below capacity;\n    consists of open-wire lines and radio relay links; 87,700 telephones;\n    broadcast stations - 3 AM, 17 FM, 13 TV, 1 Atlantic Ocean and 1 Indian Ocean\n    INTELSAT earth station; 2 coaxial submarine cables\n\n:Ivory Coast Defense Forces\n\nBranches:\n    Army, Navy, Air Force, paramilitary Gendarmerie, Republican Guard, Military\n    Fire Group\nManpower availability:\n    males 15-49, 3,083,765; 1,597,108 fit for military service; 141,259 males\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $200 million, 2.3% of GDP (1988)\n\n:Jamaica Geography\n\nTotal area:\n    10,990 km2\nLand area:\n    10,830 km2\nComparative area:\n    slightly smaller than Connecticut\nLand boundaries:\n    none\nCoastline:\n    1,022 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid; temperate interior\nTerrain:\n    mostly mountains with narrow, discontinuous coastal plain\nNatural resources:\n    bauxite, gypsum, limestone\nLand use:\n    arable land 19%; permanent crops 6%; meadows and pastures 18%; forest and\n    woodland 28%; other 29%; includes irrigated 3%\nEnvironment:\n    subject to hurricanes (especially July to November); deforestation; water\n    pollution\nNote:\n    strategic location between Cayman Trench and Jamaica Channel, the main sea\n    lanes for Panama Canal\n\n:Jamaica People\n\nPopulation:\n    2,506,701 (July 1992), growth rate 0.9% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -8 migrants/1,000 population (1992)\nInfant mortality rate:\n    18 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 76 years female (1992)\nTotal fertility rate:\n    2.5 children born/woman (1992)\nNationality:\n    noun - Jamaican(s); adjective - Jamaican\nEthnic divisions:\n    African 76.3%, Afro-European 15.1%, East Indian and Afro-East Indian 3.0%,\n    white 3.2%, Chinese and Afro-Chinese 1.2%, other 1.2%\nReligions:\n    predominantly Protestant 55.9% (Church of God 18.4%, Baptist 10%, Anglican\n    7.1%, Seventh-Day Adventist 6.9%, Pentecostal 5.2%, Methodist 3.1%, United\n    Church 2.7%, other 2.5%), Roman Catholic 5%, other 39.1%, including some\n    spiritualist cults (1982)\nLanguages:\n    English, Creole\nLiteracy:\n    98% (male 98%, female 99%) age 15 and over having ever attended school (1990\n    est.)\nLabor force:\n    1,062,100; services 41%, agriculture 22.5%, industry 19%; unemployed 17.5%\n    (1989)\nOrganized labor:\n    24% of labor force (1989)\n\n:Jamaica Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Kingston\nAdministrative divisions:\n    14 parishes; Clarendon, Hanover, Kingston, Manchester, Portland, Saint\n    Andrew, Saint Ann, Saint Catherine, Saint Elizabeth, Saint James, Saint\n    Mary, Saint Thomas, Trelawny, Westmoreland\nIndependence:\n    6 August 1962 (from UK)\nConstitution:\n    6 August 1962\nLegal system:\n    based on English common law; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day (first Monday in August)\nExecutive branch:\n    British monarch, governor general, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Howard COOKE (since 1 August 1991)\n  Head of Government:\n    Prime Minister P. J. Patterson (since 30 March 1992)\nPolitical parties and leaders:\n    People's National Party (PNP) P. J. Patterson; Jamaica Labor Party (JLP),\n    Edward SEAGA\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held 9 February 1989 (next to be held by February 1994); results - PNP\n    57%, JLP 43%; seats - (60 total) PNP 45, JLP 15\nOther political or pressure groups:\n    Rastafarians (black religious/racial cultists, pan-Africanists)\nMember of:\n    ACP, C, CARICOM, CCC, CDB, ECLAC, FAO, G-15, G-19, G-77, GATT, G-15, IADB,\n    IAEA, IBRD, ICAO, ICFTU, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC,\n    ISO, ITU, LAES, LORCS, NAM, OAS, OPANAL, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Richard BERNAL; Chancery at Suite 355, 1850 K Street NW,\n    Washington, DC 20006; telephone (202) 452-0660; there are Jamaican\n    Consulates General in Miami and New York\n  US:\n    Ambassador Glen A. HOLDEN; Embassy at 3rd Floor, Jamaica Mutual Life Center,\n    2 Oxford Road, Kingston; telephone (809) 929-4850 through 4859, FAX (809)\n    926-6743\nFlag:\n    diagonal yellow cross divides the flag into four triangles - green (top and\n    bottom) and black (hoist side and fly side)\n\n:Jamaica Economy\n\nOverview:\n    The economy is based on sugar, bauxite, and tourism. In 1985 it suffered a\n    setback with the closure of some facilities in the bauxite and alumina\n    industry, a major source of hard currency earnings. Since 1986 an economic\n    recovery has been under way. In 1987 conditions began to improve for the\n    bauxite and alumina industry because of increases in world metal prices. The\n    recovery has also been supported by growth in the manufacturing and tourism\n    sectors. In September 1988, Hurricane Gilbert inflicted severe damage on\n    crops and the electric power system, a sharp but temporary setback to the\n    economy. By October 1989 the economic recovery from the hurricane was\n    largely complete, and real growth was up about 3% for 1989. In 1991,\n    however, growth dropped to 1.0% as a result of the US recession, lower world\n    bauxite prices, and monetary instability.\nGDP:\n    exchange rate conversion - $3.6 billion, per capita $1,400; real growth rate\n    1.0% (1991 est.)\nInflation rate (consumer prices):\n    80% (1991 projected)\nUnemployment rate:\n    15.1% (1991)\nBudget:\n    revenues $600 million; expenditures $736 million (FY91 est.)\nExports:\n    $1.2 billion (f.o.b., 1991, projected)\n  commodities:\n    bauxite, alumina, sugar, bananas\n  partners:\n    US 36%, UK, Canada, Norway, Trinidad and Tobago\nImports:\n    $1.8 billion (c.i.f., 1991 projected)\n  commodities:\n    petroleum, machinery, food, consumer goods, construction goods\n  partners:\n    US 48%, UK, Venezuela, Canada, Japan, Trinidad and Tobago\nExternal debt:\n    $3.8 billion (1991 est.)\nIndustrial production:\n    growth rate - 2.0% (1990); accounts for almost 25% of GDP\nElectricity:\n    1,122,000 kW capacity; 2,520 million kWh produced, 1,012 kWh per capita\n    (1991)\nIndustries:\n    tourism, bauxite mining, textiles, food processing, light manufactures\nAgriculture:\n    accounts for about 9% of GDP, 22% of work force, and 17% of exports;\n    commercial crops - sugarcane, bananas, coffee, citrus, potatoes, and\n    vegetables; live-stock and livestock products include poultry, goats, milk;\n    not self-sufficient in grain, meat, and dairy products\nIllicit drugs:\n    illicit cultivation of cannabis; transshipment point for cocaine from\n    Central and South America to North America; government has an active\n    cannabis eradication program\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.2 billion; other countries,\n    ODA and OOF bilateral commitments (1970-89), $1.6 billion\nCurrency:\n    Jamaican dollar (plural - dollars); 1 Jamaican dollar (J$) = 100 cents\n\n:Jamaica Economy\n\nExchange rates:\n    Jamaican dollars (J$) per US$1 - 21.946 (January 1992), 12.116 (1991), 7.184\n    (1990), 5.7446 (1989), 5.4886 (1988), 5.4867 (1987), 5.4778 (1986)\nFiscal year:\n    1 April - 31 March\n\n:Jamaica Communications\n\nRailroads:\n    294 km, all 1.435-meter standard gauge, single track\nHighways:\n    18,200 km total; 12,600 km paved, 3,200 km gravel, 2,400 km improved earth\nPipelines:\n    petroleum products 10 km\nPorts:\n    Kingston, Montego Bay\nMerchant marine:\n    4 ships (1,000 GRT or over) totaling 9,619 GRT/16,302 DWT; includes 1\n    roll-on/roll-off cargo, 1 petroleum tanker, 2 bulk\nCivil air:\n    8 major transport aircraft\nAirports:\n    36 total, 23 usable; 13 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    fully automatic domestic telephone network; 127,000 telephones; broadcast\n    stations - 10 AM, 17 FM, 8 TV; 2 Atlantic Ocean INTELSAT earth stations; 3\n    coaxial submarine cables\n\n:Jamaica Defense Forces\n\nBranches:\n    Jamaica Defense Force (including Coast Guard and Air Wing), Jamaica\n    Constabulary Force\nManpower availability:\n    males 15-49, 640,058; 454,131 fit for military service; no conscription;\n    26,785 reach minimum volunteer age (18) annually\nDefense expenditures:\n    exchange rate conversion - $20 million, less than 1% of GDP (FY91)\n\n:Jan Mayen Geography\n\nTotal area:\n    373 km2\nLand area:\n    373 km2\nComparative area:\n    slightly more than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    124.1 km\nMaritime claims:\n  Contiguous zone:\n    10 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    4 nm\nDisputes:\n    Denmark has challenged Norway's maritime claims beween Greenland and Jan\n    Mayen\nClimate:\n    arctic maritime with frequent storms and persistent fog\nTerrain:\n    volcanic island, partly covered by glaciers; Beerenberg is the highest peak,\n    with an elevation of 2,277 meters\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    barren volcanic island with some moss and grass; volcanic activity resumed\n    in 1970\nNote:\n    located north of the Arctic Circle about 590 km north-northeast of Iceland\n    between the Greenland Sea and the Norwegian Sea\n\n:Jan Mayen People\n\nPopulation:\n    no permanent inhabitants\n\n:Jan Mayen Government\n\nLong-form name:\n    none\nType:\n    territory of Norway\nCapital:\n    none; administered from Oslo, Norway, through a governor (sysselmann)\n    resident in Longyearbyen (Svalbard)\n\n:Jan Mayen Economy\n\nOverview:\n    Jan Mayen is a volcanic island with no exploitable natural resources.\n    Economic activity is limited to providing services for employees of Norway's\n    radio and meteorological stations located on the island.\nElectricity:\n    15,000 kW capacity; 40 million kWh produced, NA kWh per capita (1989)\n\n:Jan Mayen Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with runways 1,220 to 2,439 m\nTelecommunications:\n    radio and meteorological station\n\n:Jan Mayen Defense Forces\n\nNote:\n    defense is the responsibility of Norway\n\n:Japan Geography\n\nTotal area:\n    377,835 km2\nLand area:\n    374,744 km2; includes Bonin Islands (Ogasawara-gunto), Daito-shoto,\n    Minami-jima, Okinotori-shima, Ryukyu Islands (Nansei-shoto), and Volcano\n    Islands (Kazan-retto)\nComparative area:\n    slightly smaller than California\nLand boundaries:\n    none\nCoastline:\n    29,751 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm (3 nm in international straits - La Perouse or Soya, Tsugaru, Osumi,\n    and Eastern and Western channels of the Korea or Tsushima Strait)\nDisputes:\n    Etorofu, Kunashiri, and Shikotan Islands and the Habomai island group\n    occupied by the Soviet Union in 1945, now administered by Russia, claimed by\n    Japan; Liancourt Rocks disputed with South Korea; Senkaku-shoto (Senkaku\n    Islands) claimed by China and Taiwan\nClimate:\n    varies from tropical in south to cool temperate in north\nTerrain:\n    mostly rugged and mountainous\nNatural resources:\n    negligible mineral resources, fish\nLand use:\n    arable land 13%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 67%; other 18%; includes irrigated 9%\nEnvironment:\n    many dormant and some active volcanoes; about 1,500 seismic occurrences\n    (mostly tremors) every year; subject to tsunamis\nNote:\n    strategic location in northeast Asia\n\n:Japan People\n\nPopulation:\n    124,460,481 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    10 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    4 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    77 years male, 82 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Japanese (singular and plural); adjective - Japanese\nEthnic divisions:\n    Japanese 99.4%, other (mostly Korean) 0.6%\nReligions:\n    most Japanese observe both Shinto and Buddhist rites so the percentages add\n    to more than 100% - Shinto 95.8%, Buddhist 76.3%, Christian 1.4%, other 12%\n    (1985)\nLanguages:\n    Japanese\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1970 est.)\nLabor force:\n    63,330,000; trade and services 54%; manufacturing, mining, and construction\n    33%; agriculture, forestry, and fishing 7%; government 3% (1988)\nOrganized labor:\n    about 29% of employed workers; public service 76.4%, transportation and\n    telecommunications 57.9%, mining 48.7%, manufacturing 33.7%, services 18.2%,\n    wholesale, retail, and restaurant 9.3%\n\n:Japan Government\n\nLong-form name:\n    none\nType:\n    constitutional monarchy\nCapital:\n    Tokyo\nAdministrative divisions:\n    47 prefectures; Aichi, Akita, Aomori, Chiba, Ehime, Fukui, Fukuoka,\n    Fukushima, Gifu, Gumma, Hiroshima, Hokkaido, Hyogo, Ibaraki, Ishikawa,\n    Iwate, Kagawa, Kagoshima, Kanagawa, Kochi, Kumamoto, Kyoto, Mie, Miyagi,\n    Miyazaki, Nagano, Nagasaki, Nara, Niigata, Oita, Okayama, Okinawa, Osaka,\n    Saga, Saitama, Shiga, Shimane, Shizuoka, Tochigi, Tokushima, Tokyo, Tottori,\n    Toyama, Wakayama, Yamagata, Yamaguchi, Yamanashi\nIndependence:\n    660 BC, traditional founding by Emperor Jimmu\nConstitution:\n    3 May 1947\nLegal system:\n    civil law system with English-American influence; judicial review of\n    legislative acts in the Supreme Court; accepts compulsory ICJ jurisdiction,\n    with reservations\nNational holiday:\n    Birthday of the Emperor, 23 December (1933)\nExecutive branch:\n    Emperor, prime minister, Cabinet\nLegislative branch:\n    bicameral Diet (Kokkai) consists of an upper house or House of Councillors\n    (Sangi-in) and a lower house or House of Representatives (Shugi-in)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Emperor AKIHITO (since 7 January 1989)\n  Head of Government:\n    Prime Minister Kiichi MIYAZAWA (since 5 November 1991)\nPolitical parties and leaders:\n    Liberal Democratic Party (LDP), Kiichi MIYAZAWA, president; Tamisuke\n    WATANUKI, secretary general; Social Democratic Party of Japan (SDPJ), Makoto\n    TANABE, Chairman; Democratic Socialist Party (DSP), Keizo OUCHI, chairman;\n    Japan Communist Party (JCP), Tetsuzo FUWA, Presidium chairman; Komeito\n    (Clean Government Party, CGP), Koshiro ISHIDA, chairman\nSuffrage:\n    universal at age 20\nElections:\n  House of Councillors:\n    last held on 23 July 1989 (next to be held 26 July 1992); results - percent\n    of vote by party NA; seats - (263 total) LDP 114, SDPJ 71, CGP 20, JCP 14,\n    other 33\n  House of Representatives:\n    last held on 18 February 1990 (next to be held by February 1993); results -\n    percent of vote by party NA; seats - (512 total) LDP 278, SDPJ 137, CGP 46,\n    JCP 16, DSP 13, others 5, independents 6, vacant 11\nCommunists:\n    about 490,000 registered Communist party members\n\n:Japan Government\n\nMember of:\n    AfDB, AG (observer), Australia Group, APEC, AsDB, BIS, CCC, COCOM, CP, EBRD,\n    ESCAP, FAO, G-2, G-5, G-7, G-8, G-10, GATT, IADB, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, IOM (observer), ISO, ITU, LORCS, MTCR, NEA, NSG, OAS (observer), OECD,\n    PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UNRWA, UPU, WFTU, WHO, WIPO, WMO,\n    WTO, ZC\nDiplomatic representation:\n    Ambassador Takakazu KURIYAMA; Chancery at 2520 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 939-6700; there are Japanese\n    Consulates General in Agana (Guam), Anchorage, Atlanta, Boston, Chicago,\n    Honolulu, Houston, Kansas City (Missouri), Los Angeles, New Orleans, New\n    York, San Francisco, Seattle, and Portland (Oregon), and a Consulate in\n    Saipan (Northern Mariana Islands)\n  US:\n    Ambassador Michael H. ARMACOST; Embassy at 10-5, Akasaka 1-chome, Minato-ku\n    (107), Tokyo (mailing address is APO AP 96337-0001); telephone [81] (3)\n    3224-5000; FAX [81] (3) 3505-1862; there are US Consulates General in Naha\n    (Okinawa), Osaka-Kobe, and Sapporo and a Consulate in Fukuoka\nFlag:\n    white with a large red disk (representing the sun without rays) in the\n    center\n\n:Japan Economy\n\nOverview:\n    Government-industry cooperation, a strong work ethic, and a comparatively\n    small defense allocation have helped Japan advance with extraordinary\n    rapidity, notably in high-technology fields. Industry, the most important\n    sector of the economy, is heavily dependent on imported raw materials and\n    fuels. Self-sufficent in rice, Japan must import 50% of its requirements for\n    other grain and fodder crops. Japan maintains one of the world's largest\n    fishing fleets and accounts for nearly 15% of the global catch. Overall\n    economic growth has been spectacular: a 10% average in the 1960s, a 5%\n    average in the 1970s and 1980s. A major contributor to overall growth of\n    4.5% in 1991 was net exports, which cushioned the effect of slower growth in\n    domestic demand. Inflation remains low at 3.3% and is easing due to lower\n    oil prices and a stronger yen. Japan continues to run a huge trade surplus,\n    $80 billion in 1991, which supports extensive investment in foreign assets.\n    The increased crowding of its habitable land area and the aging of its\n    population are two major long-run problems.\nGDP:\n    purchasing power equivalent - $2,360.7 billion, per capita $19,000; real\n    growth rate 4.5% (1991)\nInflation rate (consumer prices):\n    3.3% (1991)\nUnemployment rate:\n    2.1% (1991)\nBudget:\n    revenues $481 billion; expenditures $531 billion, including capital\n    expenditures (public works only) of about $60 billion (FY91)\nExports:\n    $314.3 billion (f.o.b., 1991)\n  commodities:\n    manufactures 97% (including machinery 40%, motor vehicles 18%, consumer\n    electronics 10%)\n  partners:\n    Southeast Asia 31%, US 29%, Western Europe 23%, Communist countries 4%,\n    Middle East 3%\nImports:\n    $236.6 billion (c.i.f., 1991)\n  commodities:\n    manufactures 50%, fossil fuels 21%, foodstuffs and raw materials 25%\n  partners:\n    Southeast Asia 25%, US 22%, Western Europe 17%, Middle East 12%, Communist\n    countries 8%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 2.1% (1991); accounts for 30% of GDP (mining and manufacturing)\nElectricity:\n    196,000,000 kW capacity; 823,000 million kWh produced, 6,640 kWh per capita\n    (1991)\nIndustries:\n    metallurgy, engineering, electrical and electronic, textiles, chemicals,\n    automobiles, fishing, telecommunications, machine tools, construction\n    equipment\nAgriculture:\n    accounts for only 2% of GDP; highly subsidized and protected sector, with\n    crop yields among highest in world; principal crops - rice, sugar beets,\n    vegetables, fruit; animal products include pork, poultry, dairy and eggs;\n    about 50% self-sufficient in food production; shortages of wheat, corn,\n    soybeans; world's largest fish catch of 11.9 million metric tons in 1988\n\n:Japan Economy\n\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $83.2 billion; ODA outlay of $9.1\n    billion in 1990 (est.)\nCurrency:\n    yen (plural - yen); 1 yen (Y) = 100 sen\nExchange rates:\n    yen (Y) per US$1 - 132.70 (March 1992), 134.71 (1991), 144.79 (1990), 137.96\n    (1989), 128.15 (1988), 144.64 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Japan Communications\n\nRailroads:\n    27,327 km total; 2,012 km 1.435-meter standard gauge and 25,315 km\n    predominantly 1.067-meter narrow gauge; 5,724 km doubletrack and multitrack\n    sections, 9,038 km 1.067-meter narrow-gauge electrified, 2,012 km\n    1.435-meter standard-gauge electrified (1987)\nHighways:\n    1,111,974 km total; 754,102 km paved, 357,872 km gravel, crushed stone, or\n    unpaved; 4,400 km national expressways; 46,805 km national highways; 128,539\n    km prefectural roads; and 930,230 km city, town, and village roads\nInland waterways:\n    about 1,770 km; seagoing craft ply all coastal inland seas\nPipelines:\n    crude oil 84 km; petroleum products 322 km; natural gas 1,800 km\nPorts:\n    Chiba, Muroran, Kitakyushu, Kobe, Tomakomai, Nagoya, Osaka, Tokyo,\n    Yokkaichi, Yokohama, Kawasaki, Niigata, Fushiki-Toyama, Shimizu, Himeji,\n    Wakayama-Shimozu, Shimonoseki, Tokuyama-Shimomatsu\nMerchant marine:\n    976 ships (1,000 GRT or over) totaling 21,684,459 GRT/34,683,035 DWT;\n    includes 10 passenger, 40 short-sea passenger, 3 passenger cargo, 89 cargo,\n    44 container, 36 roll-on/roll-off cargo, 111 refrigerated cargo, 93 vehicle\n    carrier, 227 petroleum tanker, 11 chemical tanker, 40 liquefied gas, 9\n    combination ore/oil, 3 specialized tanker, 260 bulk; note - Japan also owns\n    a large flag of convenience fleet, including up to 55% of the total number\n    of ships under the Panamanian flag\nCivil air:\n    360 major transport aircraft\nAirports:\n    163 total, 158 usable; 131 with permanent-surface runways; 2 with runways\n    over 3,659 m; 31 with runways 2,440-3,659 m; 51 with runways 1,220-2,439 m\nTelecommunications:\n    excellent domestic and international service; 64,000,000 telephones;\n    broadcast stations - 318 AM, 58 FM, 12,350 TV (196 major - 1 kw or greater);\n    satellite earth stations - 4 Pacific Ocean INTELSAT and 1 Indian Ocean\n    INTELSAT; submarine cables to US (via Guam), Philippines, China, and Russia\n\n:Japan Defense Forces\n\nBranches:\n    Japan Ground Self-Defense Force (Army), Japan Maritime Self-Defense Force\n    (Navy), Japan Air Self-Defense Force (Air Force), Maritime Safety Agency\n    (Coast Guard)\nManpower availability:\n    males 15-49, 32,219,754; 27,767,280 fit for military service; 1,042,493\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $36.7 billion, 0.94% of GDP (FY92 est.)\n\n:Jarvis Island Geography\n\nTotal area:\n    4.5 km2\nLand area:\n    4.5 km2\nComparative area:\n    about 7.5 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    8 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; scant rainfall, constant wind, burning sun\nTerrain:\n    sandy, coral island surrounded by a narrow fringing reef\nNatural resources:\n    guano (deposits worked until late 1800s)\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    sparse bunch grass, prostrate vines, and low-growing shrubs; lacks fresh\n    water; primarily a nesting, roosting, and foraging habitat for seabirds,\n    shorebirds, and marine wildlife; feral cats\nNote:\n    2,090 km south of Honolulu in the South Pacific Ocean, just south of the\n    Equator, about halfway between Hawaii and the Cook Islands\n\n:Jarvis Island People\n\nPopulation:\n    uninhabited\nPopulation:\n  note:\n    Millersville settlement on western side of island occasionally used as a\n    weather station from 1935 until World War II, when it was abandoned;\n    reoccupied in 1957 during the International Geophysical Year by scientists\n    who left in 1958; public entry is by special-use permit only and generally\n    restricted to scientists and educators\n\n:Jarvis Island Government\n\nLong-form name:\n    none (territory of the US)\nType:\n    unincorporated territory of the US administered by the Fish and Wildlife\n    Service of the US Department of the Interior as part of the National\n    Wildlife Refuge System\nCapital:\n    none; administered from Washington, DC\n\n:Jarvis Island Economy\n\nOverview:\n    no economic activity\n\n:Jarvis Island Communications\n\nPorts:\n    none; offshore anchorage only - one boat landing area in the middle of the\n    west coast and another near the southwest corner of the island\nNote:\n    there is a day beacon near the middle of the west coast\n\n:Jarvis Island Defense Forces\n\nNote:\n    defense is the responsibility of the US; visited annually by the US Coast\n    Guard\n\n:Jersey Geography\n\nTotal area:\n    117 km2\nLand area:\n    117 km2\nComparative area:\n    about 0.7 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    70 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    temperate; mild winters and cool summers\nTerrain:\n    gently rolling plain with low, rugged hills along north coast\nNatural resources:\n    agricultural land\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; about 58% of land under cultivation\nEnvironment:\n    about 30% of population concentrated in Saint Helier\nNote:\n    largest and southernmost of Channel Islands; 27 km from France\n\n:Jersey People\n\nPopulation:\n    85,026 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    6 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    1.3 children born/woman (1992)\nNationality:\n    noun - Channel Islander(s); adjective - Channel Islander\nEthnic divisions:\n    UK and Norman-French descent\nReligions:\n    Anglican, Roman Catholic, Baptist, Congregational New Church, Methodist,\n    Presbyterian\nLanguages:\n    English and French (official), with the Norman-French dialect spoken in\n    country districts\nLiteracy:\n    NA% (male NA%, female NA%) but compulsory education age 5 to 16\nLabor force:\n    NA\nOrganized labor:\n    none\n\n:Jersey Government\n\nLong-form name:\n    Bailiwick of Jersey\nType:\n    British crown dependency\nCapital:\n    Saint Helier\nAdministrative divisions:\n    none (British crown dependency)\nIndependence:\n    none (British crown dependency)\nConstitution:\n    unwritten; partly statutes, partly common law and practice\nLegal system:\n    English law and local statute\nNational holiday:\n    Liberation Day, 9 May (1945)\nExecutive branch:\n    British monarch, lieutenant governor, bailiff\nLegislative branch:\n    unicameral Assembly of the States\nJudicial branch:\n    Royal Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Lieutenant Governor and Commander in Chief Air Marshal Sir John SUTTON\n    (since NA 1990); Bailiff Peter CRILL (since NA)\nPolitical parties and leaders:\n    none; all independents\nSuffrage:\n    universal adult at age NA\nElections:\n  Assembly of the States:\n    last held NA (next to be held NA); results - no percent of vote by party\n    since all are independents; seats - (56 total, 52 elected) 52 independents\nMember of:\n    none\nDiplomatic representation:\n    none (British crown dependency)\nFlag:\n    white with the diagonal red cross of Saint Patrick (patron saint of Ireland)\n    extending to the corners of the flag\n\n:Jersey Economy\n\nOverview:\n    The economy is based largely on financial services, agriculture, and\n    tourism. Potatoes, cauliflower, tomatoes, and especially flowers are\n    important export crops, shipped mostly to the UK. The Jersey breed of dairy\n    cattle is known worldwide and represents an important export earner. Milk\n    products go to the UK and other EC countries. In 1986 the finance sector\n    overtook tourism as the main contributor to GDP, accounting for 40% of the\n    island's output. In recent years the government has encouraged light\n    industry to locate in Jersey, with the result that an electronics industry\n    has developed alongside the traditional manufacturing of knitwear. All raw\n    material and energy requirements are imported, as well as a large share of\n    Jersey's food needs.\nGDP:\n    $NA, per capita $NA; real growth rate 8% (1987 est.)\nInflation rate (consumer prices):\n    8% (1988 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $308.0 million; expenditures $284.4 million, including capital\n    expenditures of NA (1985)\nExports:\n    $NA\n  commodities:\n    light industrial and electrical goods, foodstuffs, textiles\n  partners:\n    UK\nImports:\n    $NA\n  commodities:\n    machinery and transport equipment, manufactured goods, foodstuffs, mineral\n    fuels, chemicals\n  partners:\n    UK\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    50,000 kW standby capacity (1990); power supplied by France\nIndustries:\n    tourism, banking and finance, dairy\nAgriculture:\n    potatoes, cauliflowers, tomatoes; dairy and cattle farming\nEconomic aid:\n    none\nCurrency:\n    Jersey pound (plural - pounds); 1 Jersey pound (#J) = 100 pence\nExchange rates:\n    Jersey pounds (#J) per US$1 - 0.5799 (March 1992), 0.5652 (1991), 0.5603\n    (1990), 0.6099 (1989), 0.5614 (1988), 0.6102 (1987), 0.6817 (1986); the\n    Jersey pound is at par with the British pound\nFiscal year:\n    1 April - 31 March\n\n:Jersey Communications\n\nPorts:\n    Saint Helier, Gorey, Saint Aubin\nAirports:\n    1 with permanent-surface runway 1,220-2,439 m (Saint Peter)\nTelecommunications:\n    63,700 telephones; broadcast stations - 1 AM, no FM, 1 TV; 3 submarine\n    cables\n\n:Jersey Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Johnston Atoll Geography\n\nTotal area:\n    2.8 km2\nLand area:\n    2.8 km2\nComparative area:\n    about 4.7 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    10 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, but generally dry; consistent northeast trade winds with little\n    seasonal temperature variation\nTerrain:\n    mostly flat with a maximum elevation of 4 meters\nNatural resources:\n    guano (deposits worked until about 1890)\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    some low-growing vegetation\nNote:\n    strategic location 717 nautical miles west-southwest of Honolulu in the\n    North Pacific Ocean, about one-third of the way between Hawaii and the\n    Marshall Islands; Johnston Island and Sand Island are natural islands; North\n    Island (Akau) and East Island (Hikina) are manmade islands formed from coral\n    dredging; closed to the public; former nuclear weapons test site; site of\n    Johnston Atoll Chemical Agent Disposal System (JACADS)\n\n:Johnston Atoll People\n\nPopulation:\n    1,375 (December 1991); all US government personnel and contractors\n\n:Johnston Atoll Government\n\nLong-form name:\n    none (territory of the US)\nType:\n    unincorporated territory of the US administered by the US Defense Nuclear\n    Agency (DNA) and managed cooperatively by DNA and the Fish and Wildlife\n    Service of the US Department of the Interior as part of the National\n    Wildlife Refuge system\nCapital:\n  \nnone; administered from Washington, DC\nDiplomatic representation:\n    none (territory of the US)\nFlag:\n    the flag of the US is used\n\n:Johnston Atoll Economy\n\nOverview:\n    Economic activity is limited to providing services to US military personnel\n    and contractors located on the island. All food and manufactured goods must\n    be imported.\nElectricity:\n    supplied by the management and operations contractor\n\n:Johnston Atoll Communications\n\nPorts:\n    Johnston Island\nAirports:\n    1 with permanent-surface runways 2,743 m\nTelecommunications:\n    excellent system including 60-channel submarine cable, Autodin/SRT terminal,\n    digital telephone switch, Military Affiliated Radio System (MARS station),\n    commercial satellite television system, and UHF/VHF air-ground radio, marine\n    VHF/FM Channel 16\nNote:\n    US Coast Guard operates a LORAN transmitting station (estimated closing date\n    for LORAN is December 1992)\n\n:Johnston Atoll Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Jordan Geography\n\nTotal area:\n    91,880 km2\nLand area:\n    91,540 km2\nComparative area:\n    slightly smaller than Indiana\nLand boundaries:\n    1,586 km; Iraq 134 km, Israel 238 km, Saudi Arabia 742 km, Syria 375 km,\n    West Bank 97 km\nCoastline:\n    26 km\nMaritime claims:\n  Territorial sea:\n    3 nm\nDisputes:\n    differences with Israel over the location of the 1949 Armistice Line that\n    separates the two countries\nClimate:\n    mostly arid desert; rainy season in west (November to April)\nTerrain:\n    mostly desert plateau in east, highland area in west; Great Rift Valley\n    separates East and West Banks of the Jordan River\nNatural resources:\n    phosphates, potash, shale oil\nLand use:\n    arable land 4%; permanent crops 0.5%; meadows and pastures 1%; forest and\n    woodland 0.5%; other 94%; includes irrigated 0.5%\nEnvironment:\n    lack of natural water resources; deforestation; overgrazing; soil erosion;\n    desertification\nNote:\n    The war between Israel and the Arab states in June 1967 ended with Israel in\n    control of the West Bank. As stated in the 1978 Camp David accords and\n    reaffirmed by President Bush's post - Gulf crisis peace initiative, the\n    final status of the West Bank and Gaza Strip, their relationship with their\n    neighbors, and a peace treaty between Israel and Jordan are to be negotiated\n    among the concerned parties. The Camp David accords also specify that these\n    negotiations will resolve the location of the respective boundaries. Pending\n    the completion of this process, it is US policy that the final status of the\n    West Bank and Gaza Strip has yet to be determined.\n\n:Jordan People\n\nPopulation:\n    3,557,304 (July 1992), growth rate 4.1% (1992); Palestinians now constitute\n    roughly two-thirds of the population; most are Jordanian citizens\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    38 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 73 years female (1992)\nTotal fertility rate:\n    7.0 children born/woman (1992)\nNationality:\n    noun - Jordanian(s); adjective - Jordanian\nEthnic divisions:\n    Arab 98%, Circassian 1%, Armenian 1%\nReligions:\n    Sunni Muslim 92%, Christian 8%\nLanguages:\n    Arabic (official); English widely understood among upper and middle classes\nLiteracy:\n    80% (male 89%, female 70%) age 15 and over can read and write (1990 est.)\nLabor force:\n    572,000 (1988); agriculture 20%, manufacturing and mining 20% (1987 est.)\nOrganized labor:\n    about 10% of labor force\n\n:Jordan Government\n\nLong-form name:\n    Hashemite Kingdom of Jordan\nType:\n    constitutional monarchy\nCapital:\n    Amman\nAdministrative divisions:\n    8 governorates (muhafazat, singular - muhafazah); Al Balqa', Al Karak, Al\n    Mafraq, `Amman, At Tafilah, Az Zarqa', Irbid, Ma`an\nIndependence:\n    25 May 1946 (from League of Nations mandate under British administration;\n    formerly Transjordan)\nConstitution:\n    8 January 1952\nLegal system:\n    based on Islamic law and French codes; judicial review of legislative acts\n    in a specially provided High Tribunal; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Independence Day, 25 May (1946)\nExecutive branch:\n    monarch, prime minister, deputy prime minister, Cabinet\nLegislative branch:\n    bicameral National Assembly (Majlis al-`Umma) consists of an upper house or\n    House of Notables (Majlis al-A`ayan) and a lower house or House of\n    Representatives (Majlis al-Nuwaab); note - the House of Representatives has\n    been convened and dissolved by the King several times since 1974 and in\n    November 1989 the first parliamentary elections in 22 years were held\nJudicial branch:\n    Court of Cassation\nLeaders:\n  Chief of State:\n    King HUSSEIN Ibn Talal Al Hashemi (since 11 August 1952)\n  Head of Government:\n    Prime Minister Zayd bin SHAKIR (since 21 November 1991)\nPolitical parties and leaders:\n    approximately 24 parties have been formed since the National Charter, but\n    the number fluctuates; after the 1989 parliamentary elections, King Hussein\n    promised to allow the formation of political parties; a national charter\n    that sets forth the ground rules for democracy in Jordan - including the\n    creation of political parties - was approved in principle by the special\n    National Conference on 9 June 1991, but its specific provisions have yet to\n    be passed by National Assembly\nSuffrage:\n    universal at age 20\nElections:\n  House of Representatives:\n    last held 8 November 1989 (next to be held November 1993); results - percent\n    of vote by party NA; seats - (80 total) Muslim Brotherhood (fundamentalist)\n    22, Independent Islamic bloc (generally traditionalist) 6, Democratic bloc\n    (mostly leftist) 9, Constitutionalist bloc (traditionalist) 17, Nationalist\n    bloc (traditionalist) 16, independent 10\nMember of:\n    ABEDA, ACC, AFESD, AL, AMF, CAEU, CCC, ESCWA, FAO, G-77, IAEA, IBRD, ICAO,\n    ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO\n    (correspondent), ITU, LORCS, NAM, OIC, UN, UNAVEM, UNCTAD, UNESCO, UNIDO,\n    UNRWA, UPU, WFTU, WHO, WIPO, WMO, WTO\n\n:Jordan Government\n\nDiplomatic representation:\n    Ambassador Hussein A. HAMMAMI; Chancery at 3504 International Drive NW,\n    Washington, DC 20008; telephone (202) 966-2664\n  US:\n    Ambassador Roger Gram HARRISON; Embassy on Jebel Amman, Amman (mailing\n    address is P. O. Box 354, Amman, or APO AE 09892); telephone [962] (6)\n    644-371\nFlag:\n    three equal horizontal bands of black (top), white, and green with a red\n    isosceles triangle based on the hoist side bearing a small white\n    seven-pointed star; the seven points on the star represent the seven\n    fundamental laws of the Koran\n\n:Jordan Economy\n\nOverview:\n    Jordan benefited from increased Arab aid during the oil boom of the late\n    1970s and early 1980s, when its annual GNP growth averaged more than 10%. In\n    the remainder of the 1980s, however, reductions in both Arab aid and worker\n    remittances slowed economic growth to an average of roughly 2% per year.\n    Imports - mainly oil, capital goods, consumer durables, and food - have been\n    outstripping exports, with the difference covered by aid, remittances, and\n    borrowing. In mid-1989, the Jordanian Government began debt-rescheduling\n    negotiations and agreed to implement an IMF program designed to gradually\n    reduce the budget deficit and implement badly needed structural reforms. The\n    Persian Gulf crisis that began in August 1990, however, aggravated Jordan's\n    already serious economic problems, forcing the government to shelve the IMF\n    program, stop most debt payments, and suspend rescheduling negotiations. Aid\n    from Gulf Arab states and worker remittances have plunged, and refugees have\n    flooded the country, straining government resources. Economic recovery is\n    unlikely without substantial foreign aid, debt relief, and economic reform.\nGDP:\n    exchange rate conversion - $3.6 billion, per capita $1,100; real growth rate\n    3% (1991 est.)\nInflation rate (consumer prices):\n    9% (1991 est.)\nUnemployment rate:\n    40% (1991 est.)\nBudget:\n    revenues $1.7 billion; expenditures $1.9 billion, including capital\n    expenditures of $NA (1992)\nExports:\n    $1.0 billion (f.o.b., 1991 est.)\n  commodities:\n    phosphates, fertilizers, potash, agricultural products, manufactures\n  partners:\n    India, Iraq, Saudi Arabia, Indonesia, Ethiopia, UAE, China\nImports:\n    $2.3 billion (c.i.f., 1991 est.)\n  commodities:\n    crude oil, machinery, transport equipment, food, live animals, manufactured\n    goods\n  partners:\n    EC, US, Iraq, Saudi Arabia, Japan, Turkey\nExternal debt:\n    $9 billion (December 1991 est.)\nIndustrial production:\n    growth rate 1% (1991 est.); accounts for 20% of GDP\nElectricity:\n    1,025,000 kW capacity; 3,900 million kWh produced, 1,150 kWh per capita\n    (1991)\nIndustries:\n    phosphate mining, petroleum refining, cement, potash, light manufacturing\nAgriculture:\n    accounts for about 7% of GDP; principal products are wheat, barley, citrus\n    fruit, tomatoes, melons, olives; livestock - sheep, goats, poultry; large\n    net importer of food\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.7 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.5 billion; OPEC\n    bilateral aid (1979-89), $9.5 billion; Communist countries (1970-89), $44\n    million\nCurrency:\n    Jordanian dinar (plural - dinars); 1 Jordanian dinar (JD) = 1,000 fils\n\n:Jordan Economy\n\nExchange rates:\n    Jordanian dinars (JD) per US$1 - 0.6861 (March 1992), 0.6807 1991), 0.6636\n    (1990), 0.5704 (1989), 0.3709 (1988), 0.3387 (1987)\nFiscal year:\n    calendar year\n\n:Jordan Communications\n\nRailroads:\n    619 km 1.050-meter gauge, single track\nHighways:\n    7,500 km; 5,500 km asphalt, 2,000 km gravel and crushed stone\nPipelines:\n    crude oil 209 km\nPorts:\n    Al `Aqabah\nMerchant marine:\n    2 ships (1,000 GRT or over) totaling 60,378 GRT/113,557 DWT; includes 1\n    cargo and 1 petroleum tanker\nCivil air:\n    23 major transport aircraft\nAirports:\n    19 total, 15 usable; 14 with permanent-surface runways; 1 with runways over\n    3,659 m; 13 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    adequate telephone system of microwave, cable, and radio links; 81,500\n    telephones; broadcast stations - 5 AM, 7 FM, 8 TV; satellite earth stations\n    - 1 Atlantic Ocean INTELSAT, 1 Indian Ocean INTELSAT, 1 ARABSAT, 1 domestic\n    TV receive-only; coaxial cable and microwave to Iraq, Saudi Arabia, and\n    Syria; microwave link to Lebanon is inactive; participates in a microwave\n    network linking Syria, Jordan, Egypt, Libya, Tunisia, Algeria, and Morocco\n\n:Jordan Defense Forces\n\nBranches:\n    Jordan Arab Army, Royal Jordanian Air Force, Royal Jordanian Navy, Public\n    Security Force\nManpower availability:\n    males 15-49, 808,725; 576,934 fit for military service; 39,310 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $404 million, 9.5% of GDP (1990)\n\n:Juan de Nova Island Geography\n\nTotal area:\n    4.4 km2\nLand area:\n    4.4 km2\nComparative area:\n    about 7.5 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    24.1 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Madagascar\nClimate:\n    tropical\nTerrain:\n    undetermined\nNatural resources:\n    guano deposits and other fertilizers\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 90%; other 10%\nEnvironment:\n    subject to periodic cyclones; wildlife sanctuary\nNote:\n    located in the central Mozambique Channel about halfway between Africa and\n    Madagascar\n\n:Juan de Nova Island People\n\nPopulation:\n    uninhabited\n\n:Juan de Nova Island Government\n\nLong-form name:\n    none\nType:\n    French possession administered by Commissioner of the Republic Jacques\n    DEWATRE, resident in Reunion\nCapital:\n    none; administered by France from Reunion\n\n:Juan de Nova Island Economy\n\nOverview:\n    no economic activity\n\n:Juan de Nova Island Communications\n\nRailroads:\n    short line going to a jetty\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with non-permanent-surface runways 1,220-2,439 m\n\n:Juan de Nova Island Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Kazakhstan Geography\n\nTotal area:\n    2,717,300 km2\nLand area:\n    2,669,800 km2\nComparative area:\n    slightly less than four times the size of Texas\nLand boundaries:\n    12,012 km; China 1,533 km, Kyrgyzstan 1,051 km, Russia 6,846 km,\n    Turkmenistan 379 km, Uzbekistan 2,203 km\nCoastline:\n    0 km\n  note:\n    Kazakhstan does border the Aral Sea (1,015 km) and the Caspian Sea (1,894\n    km)\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    dry continental, about half is desert\nTerrain:\n    extends from the Volga to the Altai mountains and from the plains in western\n    Siberia to oasis and desert in Central Asia\nNatural resources:\n    petroleum, coal, iron, manganese, chrome, nickel, cobalt, copper,\n    molybdenum, lead, zinc, bauxite, gold, uranium, iron\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    drying up of Aral Sea is causing increased concentrations of chemical\n    pesticides and natural salts; industrial pollution\n\n:Kazakhstan People\n\nPopulation:\n    17,103,927 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -6.1 migrants/1,000 population (1991)\nInfant mortality rate:\n    25.9 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 72 years female (1992)\nTotal fertility rate:\n    2.9 children born/woman (1992)\nNationality:\n    noun - Kazakh(s); adjective - Kazakhstani\nEthnic divisions:\n    Kazakh (Qazaq) 40%, Russian 38%, other Slavs 7%, Germans 6%, other 9%\nReligions:\n    Muslim 47% Russian Orthodox NA%, Lutheran NA%\nLanguages:\n    Kazakh (Qazaq; official language), Russian\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    8,267,000 (1989)\nOrganized labor:\n    official trade unions, independent coal miners' union\n\n:Kazakhstan Government\n\nLong-form name:\n    Republic of Kazakhstan\nType:\n    republic\nCapital:\n    Alma-Ata (Almaty)\nAdministrative divisions:\n    19 oblasts (oblastey, singular - oblast'); Aktyubinsk, Alma-Ata, Atyrau,\n    Chimkent, Dzhambul, Dzhezkazgan, Karaganda, Kokchetav, Kustanay, Kzyl-Orda,\n    Mangistauz (Aqtau), Pavlodar, Semipalatinsk, Severo-Kazakhstan\n    (Petropavlovsk), Taldy-Kurgan, Tselinograd, Turgay (Arkalyk), Ural'sk,\n    Vostochno-Kazakhstan (Ust'-Kamenogorsk); note - an oblast has the same name\n    as its administrative center (exceptions have the administrative center name\n    following in parentheses)\nIndependence:\n    16 December 1991; from the Soviet Union (formerly the Kazakh Soviet\n    Socialist Republic)\nConstitution:\n    new postindependence constitution under preparation\nLegal system:\n    NA\nNational holiday:\n    NA\nExecutive branch:\n    president with presidential appointed cabinet of ministers\nLegislative branch:\n    Supreme Soviet\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Nursultan A. NAZARBAYEV (since April 1990), Vice President Yerik\n    ASANBAYEV (since 1 December 1991)\n  Head of Government:\n    Prime Minister Sergey TERESHCHENKO (since 14 October 1991), Deputy Prime\n    Minister Davlat SEMBAYEV (since November 1990)\nPolitical parties and leaders:\n    Peoples Forum Party, Olzhas SULEIMENOV and Mukhtar SHAKHANOV, co-chairmen;\n    Socialist Party (former Communist Party), Anuar ALIJANOV, chairman;\n    ZHOLTOKSAN, Hasan KOJAKHETOV, chairmen; AZAT Party, Sabitkazi AKETAEV,\n    chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 1 December 1991 (next to be held NA); percent of vote by party NA;\n    seats - (NA total) percent of seats by party NA\nCommunists:\n    party disbanded 6 September 1992\nMember of:\n    CIS, CSCE, IMF, NACC, OIC, UN, UNCTAD\nDiplomatic representation:\n    Ambassador NA; Chancery at NA NW, Washington, DC 200__; telephone NA; there\n    are NA Consulates General\n  US:\n    Ambassador-designate William Courtney; Embassy at Hotel Kazakhstan,\n    Alma-Ata, (mailing address is APO AE 09862); telephone 8-011-7-3272-61-90-56\nFlag:\n    no national flag yet adopted\n\n:Kazakhstan Economy\n\nOverview:\n    The second-largest in area of the 15 former Soviet republics, Kazakhstan has\n    vast oil, coal, and agricultural resources. Kazakhstan is highly dependent\n    on trade with Russia, exchanging its natural resources for finished consumer\n    and industrial goods. Kazakhstan now finds itself with serious pollution\n    problems, backward technology, and little experience in foreign markets. The\n    government in 1991 pushed privatization of the economy at a faster pace than\n    Russia's program. The ongoing transitional period - marked by sharp\n    inflation in wages and prices, lower output, lost jobs, and disruption of\n    time-honored channels of supply - has brought considerable social unrest.\n    Kazakhstan lacks the funds, technology, and managerial skills for a quick\n    recovery of output. US firms have been enlisted to increase oil output but\n    face formidable obstacles; for example, oil can now reach Western markets\n    only through pipelines that run across independent (and sometimes\n    unfriendly) former Soviet republics. Finally, the end of monolithic\n    Communist control has brought ethnic grievances into the open. The 6 million\n    Russians in the republic, formerly the favored class, now face the hostility\n    of a society dominated by Muslims. Ethnic rivalry will be just one of the\n    formidable obstacles to the creation of a productive, technologically\n    advancing society.\nGDP:\n    purchasing power equivalent - $NA; per capita NA; real growth rate - 7%\n    (1991 est.)\nInflation rate (consumer prices):\n    83% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $1.76 billion (1991)\nExports:\n    $4.2 billion (f.o.b., 1991)\n  commodities:\n    oil, ferrous and nonferrous metals, chemicals, grain, wool, meat (1991)\n  partners:\n    Russia, Ukraine, Uzbekistan\nImports:\n    $NA million (c.i.f., 1990)\n  commodities:\n    machinery and parts, industrial materials\n  partners:\n    Russia and other former Soviet republics\nExternal debt:\n    $2.6 billion (1991 est.)\nIndustrial production:\n    growth rate 0.7% (1991)\nElectricity:\n    17,900,000 kW capacity; 79,100 million kWh produced, 4,735 kWh per capita\n    (1991)\nIndustries:\n    extractive industries (oil, coal, iron ore, manganese, chromite, lead, zinc,\n    copper, titanium, bauxite, gold, silver, phosphates, sulfur) iron and steel,\n    nonferrous metal, tractors and other agricultural machinery, electric\n    motors, construction materials\nAgriculture:\n    employs 30% of the labor force; grain, mostly spring wheat; meat, cotton,\n    wool\n\n:Kazakhstan Economy\n\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Kazakhstan Communications\n\nRailroads:\n    14,460 km (all 1.520-meter gauge); does not include industrial lines (1990)\nHighways:\n    189,000 km total (1990); 188,900 km hard surfaced (paved or gravel), 80,900\n    km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    crude oil NA km, refined products NA km, natural gas NA\nPorts:\n    none - landlocked; inland - Guryev\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA\nTelecommunications:\n    telephone service is poor, with only about 6 telephones for each 100\n    persons; of the approximately 1 million telephones, Alma-Ata has 184,000;\n    international traffic with other former USSR republics and China carried by\n    landline and microwave, and with other countries by satellite and through\n    the Moscow international gateway switch; satellite earth stations - INTELSAT\n    and Orbita\n\n:Kazakhstan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Air, Air Defense, and Strategic Rocket)\nManpower availability:\n    males 15-49, NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Kenya Geography\n\nTotal area:\n    582,650 km2\nLand area:\n    569,250 km2\nComparative area:\n    slightly more than twice the size of Nevada\nLand boundaries:\n    3,477 km; Ethiopia 861 km, Somalia 682 km, Sudan 232 km, Tanzania 769 km,\n    Uganda 933 km\nCoastline:\n    536 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    administrative boundary with Sudan does not coincide with international\n    boundary; possible claim by Somalia based on unification of ethnic Somalis\nClimate:\n    varies from tropical along coast to arid in interior\nTerrain:\n    low plains rise to central highlands bisected by Great Rift Valley; fertile\n    plateau in west\nNatural resources:\n    gold, limestone, soda ash, salt barytes, rubies, fluorspar, garnets,\n    wildlife\nLand use:\n    arable land 3%; permanent crops 1%; meadows and pastures 7%; forest and\n    woodland 4%; other 85%; includes irrigated NEGL%\nEnvironment:\n    unique physiography supports abundant and varied wildlife of scientific and\n    economic value; deforestation; soil erosion; desertification; glaciers on\n    Mt. Kenya\nNote:\n    the Kenyan Highlands comprise one of the most successful agricultural\n    production regions in Africa\n\n:Kenya People\n\nPopulation:\n    26,164,473 (July 1992), growth rate 3.6% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    68 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    60 years male, 64 years female (1992)\nTotal fertility rate:\n    6.2 children born/woman (1992)\nNationality:\n    noun - Kenyan(s); adjective - Kenyan\nEthnic divisions:\n    Kikuyu 21%, Luhya 14%, Luo 13%, Kalenjin 11%, Kamba 11%, Kisii 6%, Meru 6%,\n    Asian, European, and Arab 1%\nReligions:\n    Protestant 38%, Roman Catholic 28%, indigenous beliefs 26%, Muslim 6%\nLanguages:\n    English and Swahili (official); numerous indigenous languages\nLiteracy:\n    69% (male 80%, female 58%) age 15 and over can read and write (1990 est.)\nLabor force:\n    9.2 million (includes unemployed); the total employed is 1.37 million (14.8%\n    of the labor force); services 54.8%, industry 26.2%, agriculture 19.0%\n    (1989)\nOrganized labor:\n    390,000 (est.)\n\n:Kenya Government\n\nLong-form name:\n    Republic of Kenya\nType:\n    republic\nCapital:\n    Nairobi\nAdministrative divisions:\n    7 provinces and 1 area*; Central, Coast, Eastern, Nairobi Area*, North\n    Eastern, Nyanza, Rift Valley, Western\nIndependence:\n    12 December 1963 (from UK; formerly British East Africa)\nConstitution:\n    12 December 1963, amended as a republic 1964; reissued with amendments 1979,\n    1983, 1986, 1988, and 1991\nLegal system:\n    based on English common law, tribal law, and Islamic law; judicial review in\n    High Court; accepts compulsory ICJ jurisdiction, with reservations;\n    constitutional amendment of 1982 making Kenya a de jure one-party state\n    repealed in 1991\nNational holiday:\n    Independence Day, 12 December (1963)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    unicameral National Assembly (Bunge)\nJudicial branch:\n    Court of Appeal, High Court\nLeaders:\n  Chief of State and Head of Government:\n    President Daniel Teroitich arap MOI (since 14 October 1978); Vice President\n    George SAITOTI (since 10 May 1989)\nPolitical parties and leaders:\n    ruling party is Kenya African National Union (KANU), Daniel T. arap MOI,\n    president; opposition parties include Forum for the Restoration of Democracy\n    (FORD), Oginga ODINJA; Democratic Party of Kenya (DP), KIBAKI; note - some\n    dozen other opposition parties\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held on 21 March 1988 (next to be held before March 1993); results -\n    President Daniel T. arap MOI was reelected\n  National Assembly:\n    last held on 21 March 1988 (next to be held before March 1993); will be\n    first multiparty election since repeal of one-party state law\nOther political or pressure groups:\n    labor unions; exile opposition - Mwakenya and other groups\nMember of:\n    ACP, AfDB, C, CCC, EADB, ECA, FAO, G-77, GATT, IAEA, IBRD, ICAO, IDA, IFAD,\n    IFC, IGADD, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS,\n    NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Denis Daudi AFANDE; Chancery at 2249 R Street NW, Washington, DC\n    20008; telephone (202) 387-6101; there are Kenyan Consulates General in Los\n    Angeles and New York\n\n:Kenya Government\n\n  US:\n    Ambassador Smith HEMPSTONE, Jr.; Embassy at the corner of Moi Avenue and\n    Haile Selassie Avenue, Nairobi (mailing address is P. O. Box 30137, Nairobi\n    or APO AE 09831); telephone [254] (2) 334141; FAX [254] (2) 340838; there is\n    a US Consulate in Mombasa\nFlag:\n    three equal horizontal bands of black (top), red, and green; the red band is\n    edged in white; a large warrior's shield covering crossed spears is\n    superimposed at the center\n\n:Kenya Economy\n\nOverview:\n    Kenya's 3.6% annual population growth rate - one of the highest in the world\n    - presents a serious problem for the country's economy. In the meantime, GDP\n    growth in the near term has kept slightly ahead of population - annually\n    averaging 4.9% in the 1986-90 period. Undependable weather conditions and a\n    shortage of arable land hamper long-term growth in agriculture, the leading\n    economic sector. In 1991, deficient rainfall, stagnant export volume, and\n    sagging export prices held economic growth below the all-important\n    population growth figure.\nGDP:\n    exchange rate conversion - $9.7 billion, per capita $385 (1989 est.); real\n    growth rate 2.3% (1991 est.)\nInflation rate (consumer prices):\n    14.3% (1991 est.)\nUnemployment rate:\n    NA%, but there is a high level of unemployment and underemployment\nBudget:\n    revenues $2.4 billion; expenditures $2.8 billion, including capital\n    expenditures of $0.74 billion (FY90)\nExports:\n    $1.0 billion (f.o.b., 1991 est.)\n  commodities:\n    tea 25%, coffee 21%, petroleum products 7% (1989)\n  partners:\n    EC 44%, Africa 25%, Asia 5%, US 5%, Middle East 4% (1988)\nImports:\n    $1.9 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery and transportation equipment 29%, petroleum and petroleum products\n    15%, iron and steel 7%, raw materials, food and consumer goods (1989)\n  partners:\n    EC 45%, Asia 11%, Middle East 12%, US 5% (1988)\nExternal debt:\n    $6.0 billion (December 1991 est.)\nIndustrial production:\n    growth rate 5.4% (1989 est.); accounts for 17% of GDP\nElectricity:\n    730,000 kW capacity; 2,700 million kWh produced, 110 kWh per capita (1990)\nIndustries:\n    small-scale consumer goods (plastic, furniture, batteries, textiles, soap,\n    cigarettes, flour), agricultural processing, oil refining, cement, tourism\nAgriculture:\n    most important sector, accounting for 29% of GDP, about 19% of the work\n    force, and over 50% of exports; cash crops - coffee, tea, sisal, pineapple;\n    food products - corn, wheat, sugarcane, fruit, vegetables, dairy products;\n    food output not keeping pace with population growth\nIllicit drugs:\n    illicit producer of cannabis used mostly for domestic consumption;\n    widespread cultivation of cannabis and qat on small plots; transit country\n    for heroin and methaqualone en route from Southwest Asia to West Africa,\n    Western Europe, and the US\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $839 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $7,490 million; OPEC\n    bilateral aid (1979-89), $74 million; Communist countries (1970-89), $83\n    million\nCurrency:\n    Kenyan shilling (plural - shillings); 1 Kenyan shilling (KSh) = 100 cents\n\n:Kenya Economy\n\nExchange rates:\n    Kenyan shillings (KSh) per US$1 - 28.466 (January 1992), 27.508 (1991),\n    22.915 (1990), 20.572 (1989), 17.747 (1988), 16.454 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Kenya Communications\n\nRailroads:\n    2,040 km 1.000-meter gauge\nHighways:\n    64,590 km total; 7,000 km paved, 4,150 km gravel, remainder improved earth\nInland waterways:\n    part of Lake Victoria system is within boundaries of Kenya; principal inland\n    port is at Kisumu\nPipelines:\n    petroleum products 483 km\nPorts:\n    Mombasa, Lamu\nMerchant marine:\n    1 petroleum tanker ship (1,000 GRT or over) totaling 7,727 GRT/5,558 DWT\nCivil air:\n    19 major transport aircraft\nAirports:\n    249 total, 214 usable; 21 with permanent-surface runways; 2 with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 46 with runways 1,220-2,439 m\nTelecommunications:\n    in top group of African systems; consists primarily of radio relay links;\n    over 260,000 telephones; broadcast stations - 16 AM; 4 FM, 6 TV; satellite\n    earth stations - 1 Atlantic Ocean INTELSAT and 1 Indian Ocean INTELSAT\n\n:Kenya Defense Forces\n\nBranches:\n    Army, Navy, Air Force, paramilitary General Service Unit of the Police\nManpower availability:\n    males 15-49, 5,688,543; 3,513,611 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $100 million, 1% of GDP (1989 est.)\n\n:Kingman Reef Geography\n\nTotal area:\n    1 km2\nLand area:\n    1 km2\nComparative area:\n    about 1.7 times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    3 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, but moderated by prevailing winds\nTerrain:\n    low and nearly level with a maximum elevation of about 1 meter\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    barren coral atoll with deep interior lagoon; wet or awash most of the time\nNote:\n    located 1,600 km south-southwest of Honolulu in the North Pacific Ocean,\n    about halfway between Hawaii and American Samoa; maximum elevation of about\n    1 meter makes this a navigational hazard; closed to the public\n\n:Kingman Reef People\n\nPopulation:\n    uninhabited\n\n:Kingman Reef Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US administered by the US Navy\nCapital:\n    none; administered from Washington, DC\n\n:Kingman Reef Economy\n\nOverview:\n    no economic activity\n\n:Kingman Reef Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    lagoon was used as a halfway station between Hawaii and American Samoa by\n    Pan American Airways for flying boats in 1937 and 1938\n\n:Kingman Reef Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Kiribati Geography\n\nTotal area:\n    717 km2\nLand area:\n    717 km2; includes three island groups - Gilbert Islands, Line Islands,\n    Phoenix Islands\nComparative area:\n    slightly more than four times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    1,143 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; marine, hot and humid, moderated by trade winds\nTerrain:\n    mostly low-lying coral atolls surrounded by extensive reefs\nNatural resources:\n    phosphate (production discontinued in 1979)\nLand use:\n    arable land NEGL%; permanent crops 51%; meadows and pastures 0%; forest and\n    woodland 3%; other 46%\nEnvironment:\n    typhoons can occur any time, but usually November to March; 20 of the 33\n    islands are inhabited\nNote:\n    Banaba (Ocean Island) in Kiribati is one of the three great phosphate rock\n    islands in the Pacific Ocean - the others are Makatea in French Polynesia\n    and Nauru\n\n:Kiribati People\n\nPopulation:\n    74,788 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    33 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    99 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    52 years male, 56 years female (1992)\nTotal fertility rate:\n    3.9 children born/woman (1992)\nNationality:\n    noun - I-Kiribati (singular and plural); adjective - I-Kiribati\nEthnic divisions:\n    Micronesian\nReligions:\n    Roman Catholic 52.6%, Protestant (Congregational) 40.9%, Seventh-Day\n    Adventist, Baha'i, Church of God, Mormon 6% (1985)\nLanguages:\n    English (official), Gilbertese\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    7,870 economically active, not including subsistence farmers (1985 est.)\nOrganized labor:\n    Kiribati Trades Union Congress - 2,500 members\n\n:Kiribati Government\n\nLong-form name:\n    Republic of Kiribati; note - pronounced Kiribas\nType:\n    republic\nCapital:\n    Tarawa\nAdministrative divisions:\n    3 units; Gilbert Islands, Line Islands, Phoenix Islands; note - a new\n    administrative structure of 6 districts (Banaba, Central Gilberts, Line\n    Islands, Northern Gilberts, Southern Gilberts, Tarawa) may have been changed\n    to 21 island councils (one for each of the inhabited islands) named Abaiang,\n    Abemama, Aranuka, Arorae, Banaba, Beru, Butaritari, Canton, Kiritimati,\n    Kuria, Maiana, Makin, Marakei, Nikunau, Nonouti, Onotoa, Tabiteuea,\n    Tabuaeran, Tamana, Tarawa, Teraina\nIndependence:\n    12 July 1979 (from UK; formerly Gilbert Islands)\nConstitution:\n    12 July 1979\nNational holiday:\n    Independence Day, 12 July (1979)\nExecutive branch:\n    president (Beretitenti), vice president (Kauoman-ni-Beretitenti), Cabinet\nLegislative branch:\n    unicameral House of Assembly (Maneaba Ni Maungatabu)\nJudicial branch:\n    Court of Appeal, High Court\nLeaders:\n  Chief of State and Head of Government:\n    President Teatao TEANNAKI (since 8 July 1991); Vice President Taomati IUTA\n    (since 8 July 1991)\nPolitical parties and leaders:\n    National Progressive Party, Teatao TEANNAKI; Christian Democratic Party,\n    Teburoro TITO; New Movement Party, leader NA; Liberal Party, Tewareka\n    TENTOA; note - there is no tradition of formally organized political parties\n    in Kiribati; they more closely resemble factions or interest groups because\n    they have no party headquarters, formal platforms, or party structures\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held on 8 July 1991 (next to be held May 1995); results - Teatao\n    TEANNAKI 52%, Roniti TEIWAKI 28%\n  House of Assembly:\n    last held on 8 May 1991 (next to be held May 1995); results - percent of\n    vote by party NA; seats - (40 total; 39 elected) percent of seats by party\n    NA\nMember of:\n    ACP, AsDB, C, ESCAP (associate), IBRD, ICAO, ICFTU, IDA, IFC, IMF, INTERPOL,\n    ITU, SPC, SPF, UNESCO, UPU, WHO, WTO\nDiplomatic representation:\n    Ambassador (vacant) lives in Tarawa (Kiribati)\n  US:\n    the ambassador to Fiji is accredited to Kiribati\nFlag:\n    the upper half is red with a yellow frigate bird flying over a yellow rising\n    sun, and the lower half is blue with three horizontal wavy white stripes to\n    represent the ocean\n\n:Kiribati Economy\n\nOverview:\n    The country has few national resources. Commercially viable phosphate\n    deposits were exhausted at the time of independence in 1979. Copra and fish\n    now represent the bulk of production and exports. The economy has fluctuated\n    widely in recent years. Real GDP declined about 8% in 1987, as the fish\n    catch fell sharply to only one-fourth the level of 1986 and copra production\n    was hampered by repeated rains. Output rebounded strongly in 1988, with real\n    GDP growing by 17%. The upturn in economic growth came from an increase in\n    copra production and a good fish catch. Following the strong surge in output\n    in 1988, GNP increased 1% in both 1989 and 1990.\nGDP:\n    exchange rate conversion - $36.8 million, per capita $525; real growth rate\n    1.0% (1990 est.)\nInflation rate (consumer prices):\n    4.0% (1990 est.)\nUnemployment rate:\n    2% (1985); considerable underemployment\nBudget:\n    revenues $29.9 million; expenditures $16.3 million, including capital\n    expenditures of $14.0 million (1990 est.)\nExports:\n    $5.8 million (f.o.b., 1990 est.)\n  commodities:\n    fish 55%, copra 42%\n  partners:\n    EC 20%, Marshall Islands 12%, US 8%, American Samoa 4% (1985)\nImports:\n    $26.7 million (c.i.f., 1990 est.)\n  commodities:\n    foodstuffs, fuel, transportation equipment\n  partners:\n    Australia 39%, Japan 21%, NZ 6%, UK 6%, US 3% (1985)\nExternal debt:\n    $2.0 million (December 1989 est.)\nIndustrial production:\n    growth rate 0% (1988 est.); accounts for less than 4% of GDP\nElectricity:\n    5,000 kW capacity; 13 million kWh produced, 190 kWh per capita (1990)\nIndustries:\n    fishing, handicrafts\nAgriculture:\n    accounts for 30% of GDP (including fishing); copra and fish contribute about\n    95% to exports; subsistence farming predominates; food crops - taro,\n    breadfruit, sweet potatoes, vegetables; not self-sufficient in food\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $273 million\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3177 (March 1992), 1.2835 (1991),\n    1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267 (1987), 1.4905 (1986)\nFiscal year:\n    NA\n\n:Kiribati Communications\n\nHighways:\n    640 km of motorable roads\nInland waterways:\n    small network of canals, totaling 5 km, in Line Islands\nPorts:\n    Banaba and Betio (Tarawa)\nCivil air:\n    2 Trislanders; no major transport aircraft\nAirports:\n    21 total; 20 usable; 4 with permanent-surface runways; none with runways\n    over 2,439 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    1,400 telephones; broadcast stations - 1 AM, no FM, no TV; 1 Pacific Ocean\n    INTELSAT earth station\n\n:Kiribati Defense Forces\n\nBranches:\n    no military force maintained; the Police Force carries out law enforcement\n    functions and paramilitary duties; there are small police posts on all\n    islands\nManpower availability:\n    NA\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Korea, North Geography\n\nTotal area:\n    120,540 km2\nLand area:\n    120,410 km2\nComparative area:\n    slightly smaller than Mississippi\nLand boundaries:\n    1,673 km; China 1,416 km, South Korea 238 km, Russia 19 km\nCoastline:\n    2,495 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Military boundary line:\n    50 nm in the Sea of Japan and the exclusive economic zone limit in the\n    Yellow Sea (all foreign vessels and aircraft without permission are banned)\n  Territorial sea:\n    12 nm\nDisputes:\n    short section of boundary with China is indefinite; Demarcation Line with\n    South Korea\nClimate:\n    temperate with rainfall concentrated in summer\nTerrain:\n    mostly hills and mountains separated by deep, narrow valleys; coastal plains\n    wide in west, discontinuous in east\nNatural resources:\n    coal, lead, tungsten, zinc, graphite, magnesite, iron ore, copper, gold,\n    pyrites, salt, fluorspar, hydropower\nLand use:\n    arable land 18%; permanent crops 1%; meadows and pastures NEGL%; forest and\n    woodland 74%; other 7%; includes irrigated 9%\nEnvironment:\n    mountainous interior is isolated, nearly inaccessible, and sparsely\n    populated; late spring droughts often followed by severe flooding\nNote:\n    strategic location bordering China, South Korea, and Russia\n\n:Korea, North People\n\nPopulation:\n    22,227,303 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    24 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    30 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 72 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Korean(s);adjective - Korean\nEthnic divisions:\n    racially homogeneous\nReligions:\n    Buddhism and Confucianism; some Christianity and syncretic Chondogyo;\n    autonomous religious activities now almost nonexistent; government-sponsored\n    religious groups exist to provide illusion of religious freedom\nLanguages:\n    Korean\nLiteracy:\n    99%, (male 99%, female 99%); note - presumed to be virtually universal among\n    population under age 60\nLabor force:\n    9,615,000; agricultural 36%, nonagricultural 64%; shortage of skilled and\n    unskilled labor (mid-1987 est.)\nOrganized labor:\n    1,600,000 members; single-trade union system coordinated by the General\n    Federation of Trade Unions of Korea under the Central Committee\n\n:Korea, North Government\n\nLong-form name:\n    Democratic People's Republic of Korea; abbreviated DPRK\nType:\n    Communist state; Stalinist dictatorship\nCapital:\n    P'yongyang\nAdministrative divisions:\n    9 provinces (do, singular and plural) and 3 special cities* (jikhalsi,\n    singular and plural); Chagang-do, Hamgyong-namdo, Hamgyong-bukto,\n    Hwanghae-namdo, Hwanghae-bukto, Kaesong-si*, Kangwon-do, Namp'o-si*,\n    P'yongan-bukto, P'yongan-namdo,P'yongyang-si*, Yanggang-do\nIndependence:\n    9 September 1948\nConstitution:\n    adopted 1948, revised 27 December 1972\nLegal system:\n    based on German civil law system with Japanese influences and Communist\n    legal theory; no judicial review of legislative acts; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 9 September (1948)\nExecutive branch:\n    president, two vice presidents, premier, eleven vice premiers, State\n    Administration Council (cabinet)\nLegislative branch:\n    unicameral Supreme People's Assembly (Ch'oego Inmin Hoeui)\nJudicial branch:\n    Central Court\nLeaders:\n  Chief of State:\n    President KIM Il-song (national leader since 1945, formally President since\n    28 December 1972); designated Successor KIM Chong-il (son of President, born\n    16 February 1942)\n  Head of Government:\n    Premier YON Hyong-muk (since December 1988)\nPolitical parties and leaders:\n    major party - Korean Workers' Party (KWP), KIM Il-song, general secretary,\n    and his son, KIM Chong-il, secretary, Central Committee; Korean Social\n    Democratic Party, YI Kye-paek, chairman; Chondoist Chongu Party, CHONG\n    Sin-hyok, chairman\nSuffrage:\n    universal at age 17\nElections:\n  President:\n    last held 24 May 1990 (next to be held NA 1994); results - President KIM\n    Il-song was reelected without opposition\n  Supreme People's Assembly:\n    last held on 24 May 1990 (next to be held NA 1994); results - percent of\n    vote by party NA; seats - (687 total) the KWP approves a single list of\n    candidates who are elected without opposition; minor parties hold a few\n    seats\nCommunists:\n    KWP claims membership of about 3 million\nMember of:\n    ESCAP, FAO, G-77, IAEA, ICAO, IFAD, IMF (observer), IMO, IOC, ISO, ITU,\n    LORCS, NAM, UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    none\n\n:Korea, North Government\n\nFlag:\n    three horizontal bands of blue (top), red (triple width), and blue; the red\n    band is edged in white; on the hoist side of the red band is a white disk\n    with a red five-pointed star\n\n:Korea, North Economy\n\nOverview:\n    More than 90% of this command economy is socialized; agricultural land is\n    collectivized; and state-owned industry produces 95% of manufactured goods.\n    State control of economic affairs is unusually tight even for a Communist\n    country because of the small size and homogeneity of the society and the\n    strict rule of KIM Il-song and his son, KIM Chong-il. Economic growth during\n    the period 1984-89 averaged 2-3%, but output declined by 2-4% annually\n    during 1990-91, largely because of disruptions in economic relations with\n    the USSR. Abundant natural resources and hydropower form the basis of\n    industrial development. Output of the extractive industries includes coal,\n    iron ore, magnesite, graphite, copper, zinc, lead, and precious metals.\n    Manufacturing is centered on heavy industry, with light industry lagging far\n    behind. Despite the use of improved seed varieties, expansion of irrigation,\n    and the heavy use of fertilizers, North Korea has not yet become\n    self-sufficient in food production. Four consecutive years of poor harvests,\n    coupled with distribution problems, have led to chronic food shortages.\n    North Korea remains far behind South Korea in economic development and\n    living standards.\nGNP:\n    purchasing power equivalent - $23.3 billion, per capita $1,100; real growth\n    rate -2% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    officially none\nBudget:\n    revenues $17.3 billion; expenditures $17.7 billion, including capital\n    expenditures of $NA (1990)\nExports:\n    $2.02 billion (f.o.b., 1990)\n  commodities:\n    minerals, metallurgical products, agricultural products, manufactures\n  partners:\n    USSR, China, Japan, Hong Kong, Germany, Singapore\nImports:\n    $2.62 billion (f.o.b., 1990 est.)\n  commodities:\n    petroleum, machinery and equipment, coking coal, grain\n  partners:\n    USSR, Japan, China, Hong Kong, FRG, Singapore\nExternal debt:\n    $7 billion (1991)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    7,140,000 kW capacity; 36,000 million kWh produced, 1,650 kWh per capita\n    (1991)\nIndustries:\n    machine building, military products, electric power, chemicals, mining,\n    metallurgy, textiles, food processing\nAgriculture:\n    accounts for about 25% of GNP and 36% of work force; principal crops - rice,\n    corn, potatoes, soybeans, pulses; livestock and livestock products - cattle,\n    hogs, pork, eggs; not self-sufficient in grain; fish catch estimated at 1.7\n    million metric tons in 1987\nEconomic aid:\n    Communist countries, $1.4 billion a year in the 1980s\nCurrency:\n    North Korean won (plural - won); 1 North Korean won (Wn) = 100 chon\n\n:Korea, North Economy\n\nExchange rates:\n    North Korean won (Wn) per US$1 - 2.13 (May 1992), 2.14 (September 1991), 2.1\n    (January 1990), 2.3 (December 1989), 2.13 (December 1988), 0.94 (March 1987)\nFiscal year:\n    calendar year\n\n:Korea, North Communications\n\nRailroads:\n    4,915 km total; 4,250 km 1.435-meter standard gauge, 665 km 0.762-meter\n    narrow gauge; 159 km double track; 3,084 km electrified; government owned\n    (1989)\nHighways:\n    about 30,000 km (1989); 98.5% gravel, crushed stone, or earth surface; 1.5%\n    paved\nInland waterways:\n    2,253 km; mostly navigable by small craft only\nPipelines:\n    crude oil 37 km\nPorts:\n    Ch'ongjin, Haeju, Hungnam, Namp'o, Wonsan, Songnim, Najin, Sonbong (formerly\n    Unggi), Kim Chaek\nMerchant marine:\n    78 ships (1,000 GRT and over) totaling 543,033 GRT/804,507 DWT; includes 1\n    passenger, 1 short-sea passenger, 1 passenger-cargo, 67 cargo, 2 petroleum\n    tanker, 4 bulk, 1 combination bulk, 1 container\nAirports:\n    55 total, 55 usable (est.); about 30 with permanent-surface runways; fewer\n    than 5 with runways over 3,659 m; 20 with runways 2,440-3,659 m; 30 with\n    runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 18 AM, no FM, 11 TV; 200,000 TV sets; 3,500,000 radio\n    receivers; 1 Indian Ocean INTELSAT earth station\n\n:Korea, North Defense Forces\n\nBranches:\n    Korean People's Army (including the Army, Navy, Air Force), Civil Security\n    Forces\nManpower availability:\n    males 15-49, 6,476,839; 3,949,568 fit for military service; 227,154 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - about $5 billion, 20-25% of GNP (1991 est.); note\n    - the officially announced but suspect figure is $1.9 billion (1991) 8% of\n    GNP (1991 est.)\n\n:Korea, South Geography\n\nTotal area:\n    98,480 km2\nLand area:\n    98,190 km2\nComparative area:\n    slightly larger than Indiana\nLand boundaries:\n    238 km; North Korea 238 km\nCoastline:\n    2,413 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Territorial sea:\n    12 nm (3 nm in the Korea Strait)\nDisputes:\n    Demarcation Line with North Korea; Liancourt Rocks claimed by Japan\nClimate:\n    temperate, with rainfall heavier in summer than winter\nTerrain:\n    mostly hills and mountains; wide coastal plains in west and south\nNatural resources:\n    coal, tungsten, graphite, molybdenum, lead, hydropower\nLand use:\n    arable land 21%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 67%; other 10%; includes irrigated 12%\nEnvironment:\n    occasional typhoons bring high winds and floods; earthquakes in southwest;\n    air pollution in large cities\n\n:Korea, South People\n\nPopulation:\n    44,149,199 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    23 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 73 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Korean(s);adjective - Korean\nEthnic divisions:\n    homogeneous; small Chinese minority (about 20,000)\nReligions:\n    strong Confucian tradition; vigorous Christian minority (24.3% of the total\n    population); Buddhism; pervasive folk religion (Shamanism); Chondogyo\n    (religion of the heavenly way), eclectic religion with nationalist overtones\n    founded in 19th century, about 0.1% of population\nLanguages:\n    Korean; English widely taught in high school\nLiteracy:\n    96% (male 99%, female 94%) age 15 and over can read and write (1990 est.)\nLabor force:\n    16,900,000; 52% services and other; 27% mining and manufacturing; 21%\n    agriculture, fishing, forestry (1987)\nOrganized labor:\n    23.4% (1989) of labor force in government-sanctioned unions\n\n:Korea, South Government\n\nLong-form name:\n    Republic of Korea; abbreviated ROK\nType:\n    republic\nCapital:\n    Seoul\nAdministrative divisions:\n    9 provinces (do, singular and plural) and 6 special cities* (jikhalsi,\n    singular and plural); Cheju-do, Cholla-bukto, Cholla-namdo,\n    Ch'ungch'ong-bukto, Ch'ungch'ong-namdo, Inch'on-jikhalsi*, Kangwon-do,\n    Kwangju-jikhalsi*, Kyonggi-do, Kyongsang-bukto, Kyongsang-namdo,\n    Pusan-jikhalsi*, Soul-t'ukpyolsi*, Taegu-jikhalsi*, Taejon-jikhalsi*\nIndependence:\n    15 August 1948\nConstitution:\n    25 February 1988\nLegal system:\n    combines elements of continental European civil law systems, Anglo-American\n    law, and Chinese classical thought\nNational holiday:\n    Independence Day, 15 August (1948)\nExecutive branch:\n    president, prime minister, two deputy prime ministers, State Council\n    (cabinet)\nLegislative branch:\n    unicameral National Assembly (Kuk Hoe)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President ROH Tae Woo (since 25 February 1988)\n  Head of Government:\n    Prime Minister CHUNG Won Shik (since 24 May 1991); Deputy Prime Minister\n    CHOI Gak Kyu (since 19 February 1991)\nPolitical parties and leaders:\n  ruling party:\n    Democratic Liberal Party (DLP), ROH Tae Woo, president, KIM Young Sam,\n    chairman; KIM Chong Pil and PAK Tae Chun, co-chairmen; note - the DLP\n    resulted from a merger of the Democratic Justice Party (DJP), Reunification\n    Democratic Party (RDP), and New Democratic Republican Party (NDRP) on 9\n    February 1990\n  opposition:\n    Democratic Party (DP), result of a merger of the New Democratic Party and\n    the Democratic Party formalized 16 September 1991; KIM Dae Jung, executive\n    chairman; LEE Ki Taek, executive chairman; several smaller parties\nSuffrage:\n    universal at age 20\nElections:\n  President:\n    last held on 16 December 1987 (next to be held December 1992); results - ROH\n    Tae Woo (DJP) 35.9%, KIM Young Sam (RDP) 27.5%, KIM Dae Jung (PPD) 26.5%,\n    other 10.1%\n  National Assembly:\n    last held on 26 April 1988 (next to be held around March 1992); results -\n    DJP 34%, RDP 24%, PPD 19%, NDRP 15%, other 8%; seats - (296 total) DJP 125,\n    PPD 70, RDP 59, NDRP 35, other 10; note - on 9 February 1990 the DJP, RDP,\n    and NDRP merged to form the DLP; also the PPD, later renamed the NDP, merged\n    with another party to form the DP in September 1991. The distribution of\n    seats as of December 1991 was DLP 214, DP 72, independent 9, vacant 1\n\n:Korea, South Government\n\nOther political or pressure groups:\n    Korean National Council of Churches; National Democratic Alliance of Korea;\n    National Council of College Student Representatives; National Federation of\n    Farmers' Associations; National Council of Labor Unions; Federation of\n    Korean Trade Unions; Korean Veterans' Association; Federation of Korean\n    Industries; Korean Traders Association\nMember of:\n    AfDB, APEC, AsDB, CCC, COCOM, CP, EBRD, ESCAP, FAO, G-77, GATT, IAEA, IBRD,\n    ICAO, ICC, ICFTU, IDA, IFAD, IFC, IMF, ILO, IMF, INMARSAT, INTELSAT,\n    INTERPOL, IOC, IOM, ISO, ITU, LORCS, OAS, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador HYUN Hong Joo; Chancery at 2370 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 939-5600; there are Korean Consulates\n    General in Agana (Guam), Anchorage, Atlanta, Chicago, Honolulu, Houston, Los\n    Angeles, New York, San Francisco, and Seattle\n  US:\n    Ambassador Donald P. GREGG; Embassy at 82 Sejong-Ro, Chongro-ku, Seoul,\n    AMEMB, Unit 15550 (mailing address is APO AP 96205-0001); telephone [82] (2)\n    732-2601 through 2618; FAX [82] (2) 738-8845; there is a US Consulate in\n    Pusan\nFlag:\n    white with a red (top) and blue yin-yang symbol in the center; there is a\n    different black trigram from the ancient I Ching (Book of Changes) in each\n    corner of the white field\n\n:Korea, South Economy\n\nOverview:\n    The driving force behind the economy's dynamic growth has been the planned\n    development of an export-oriented economy in a vigorously entrepreneurial\n    society. Real GNP has increased more than 10% annually over the past six\n    years. This growth has led to an overheated situation characterized by a\n    tight labor market, strong inflationary pressures, and a rapidly rising\n    current account deficit. Policymakers have stated they will focus attention\n    on slowing inflation. In any event, the economy will remain the envy of the\n    great majority of the world's peoples.\nGNP:\n    purchasing power equivalent - $273 billion, per capita $6,300; real growth\n    rate 8.7% (1991 est.)\nInflation rate (consumer prices):\n    9.7% (1991)\nUnemployment rate:\n    2.4% (1991)\nBudget:\n    revenues $44 billion; expenditures $44 billion, including capital\n    expenditures of $NA (1992)\nExports:\n    $71.9 billion (f.o.b., 1991)\n  commodities:\n    textiles, clothing, electronic and electrical equipment, footwear,\n    machinery, steel, automobiles, ships, fish\n  partners:\n    US 26%, Japan 18% (1991)\nImports:\n    $81.6 billion (c.i.f., 1991)\n  commodities:\n    machinery, electronics and electronic equipment, oil, steel, transport\n    equipment, textiles, organic chemicals, grains\n  partners:\n    Japan 26%, US 23% (1991)\nExternal debt:\n    $38.2 billion (1991)\nIndustrial production:\n    growth rate 7.5% (1991 est.); accounts for about 45% of GNP\nElectricity:\n    24,000,000 kW capacity; 106,000 million kWh produced, 2,460 kWh per capita\n    (1991)\nIndustries:\n    textiles, clothing, footwear, food processing, chemicals, steel,\n    electronics, automobile production, shipbuilding\nAgriculture:\n    accounts for 8% of GNP and employs 21% of work force (including fishing and\n    forestry); principal crops - rice, root crops, barley, vegetables, fruit;\n    livestock and livestock products - cattle, hogs, chickens, milk, eggs;\n    self-sufficient in food, except for wheat; fish catch of 2.9 million metric\n    tons, seventh-largest in world\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $3.9 billion; non-US countries\n    (1970-89), $3.0 billion\nCurrency:\n    South Korean won (plural - won); 1 South Korean won (W) = 100 chon\n    (theoretical)\nExchange rates:\n    South Korean won (W) per US$1 - 766.66 (January 1992), 733.35 (1991), 707.76\n    (1990), 671.46 (1989), 731.47 (1988), 822.57 (1987)\n\n:Korea, South Economy\n\nFiscal year:\n    calendar year\n\n:Korea, South Communications\n\nRailroads:\n    3,106 km operating in 1983; 3,059 km 1.435-meter standard gauge, 47 km\n    0.610-meter narrow gauge, 712 km double track, 418 km electrified;\n    government owned\nHighways:\n    62,936 km total (1982); 13,476 km national highway, 49,460 km provincial and\n    local roads\nInland waterways:\n    1,609 km; use restricted to small native craft\nPipelines:\n    petroleum products 455 km\nPorts:\n    Pusan, Inchon, Kunsan, Mokpo, Ulsan\nMerchant marine:\n    435 ships (1,000 GRT or over) totaling 6,924,818 GRT/11,389,397 DWT;\n    includes 2 short-sea passenger, 140 cargo, 53 container, 11 refrigerated\n    cargo, 9 vehicle carrier, 42 petroleum tanker, 10 chemical tanker, 14\n    liquefied gas, 5 combination ore/oil, 145 bulk, 3 combination bulk, 1\n    multifunction large-load carrier\nCivil air:\n    93 major transport aircraft\nAirports:\n    105 total, 97 usable; 60 with permanent-surface runways; none with runways\n    over 3,659 m; 23 with runways 2,440-3,659 m; 16 with runways 1,220-2,439 m\nTelecommunications:\n    adequate domestic and international services; 4,800,000 telephones;\n    broadcast stations - 79 AM, 46 FM, 256 TV (57 of 1 kW or greater); satellite\n    earth stations - 2 Pacific Ocean INTELSAT and 1 Indian Ocean INTELSAT\n\n:Korea, South Defense Forces\n\nBranches:\n    Army, Navy, Marines Corps, Air Force\nManpower availability:\n    males 15-49, 13,131,113; 8,456,428 fit for military service; 448,450 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $12.6 billion, 4.5% of GNP (1992 budget)\n\n:Kuwait Geography\n\nTotal area:\n    17,820 km2\nLand area:\n    17,820 km2\nComparative area:\n    slightly smaller than New Jersey\nLand boundaries:\n    462 km; Iraq 240 km, Saudi Arabia 222 km\nCoastline:\n    499 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Territorial sea:\n    12 nm\nDisputes:\n    in April 1991 official Iraqi acceptance of UN Security Council Resolution\n    687, which demands that Iraq accept the inviolability of the boundary set\n    forth in its 1963 agreement with Kuwait, ending earlier claims to Bubiyan\n    and Warbah Islands or to all of Kuwait; a UN Boundary Demarcation Commission\n    is demarcating the Iraq-Kuwait boundary persuant to Resolution 687, and, on\n    17 June 1992, the UN Security Council reaffirmed the finality of the\n    Boundary Demarcation Commission's decisions; ownership of Qaruh and Umm al\n    Maradim Islands disputed by Saudi Arabia\nClimate:\n    dry desert; intensely hot summers; short, cool winters\nTerrain:\n    flat to slightly undulating desert plain\nNatural resources:\n    petroleum, fish, shrimp, natural gas\nLand use:\n    arable land NEGL%; permanent crops 0%; meadows and pastures 8%; forest and\n    woodland NEGL%; other 92%; includes irrigated NEGL%\nEnvironment:\n    some of world's largest and most sophisticated desalination facilities\n    provide most of water; air and water pollution; desertification\nNote:\n    strategic location at head of Persian Gulf\n\n:Kuwait People\n\nPopulation:\n    1,378,613 (July 1992), growth rate NA (1992)\nBirth rate:\n    32 births/1,000 population (1992)\nDeath rate:\n    2 deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    14 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 76 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - Kuwaiti(s); adjective - Kuwaiti\nEthnic divisions:\n    Kuwaiti 50%, other Arab 35%, South Asian 9%, Iranian 4%, other 2%\nReligions:\n    Muslim 85% (Shi`a 30%, Sunni 45%, other 10%), Christian, Hindu, Parsi, and\n    other 15%\nLanguages:\n    Arabic (official); English widely spoken\nLiteracy:\n    74% (male 78%, female 69%) age 15 and over can read and write (1985)\nLabor force:\n    566,000 (1986); services 45.0%, construction 20.0%, trade 12.0%,\n    manufacturing 8.6%, finance and real estate 2.6%, agriculture 1.9%, power\n    and water 1.7%, mining and quarrying 1.4%; 70% of labor force was\n    non-Kuwaiti\nOrganized labor:\n    labor unions exist in oil industry and among government personnel\n\n:Kuwait Government\n\nLong-form name:\n    State of Kuwait\nType:\n    nominal constitutional monarchy\nCapital:\n    Kuwait\nAdministrative divisions:\n    5 governorates (mu'hafaz'at, singular - muh'afaz'ah); Al Ah'madi, Al Jahrah,\n    Al Kuwayt, 'Hawalli; Farwaniyah\nIndependence:\n    19 June 1961 (from UK)\nConstitution:\n    16 November 1962 (some provisions suspended since 29 August 1962)\nLegal system:\n    civil law system with Islamic law significant in personal matters; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 25 February\nExecutive branch:\n    amir, prime minister, deputy prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    National Assembly (Majlis al `umma) dissolved 3 July 1986; elections for new\n    Assembly scheduled for October 1992\nJudicial branch:\n    High Court of Appeal\nLeaders:\n  Chief of State:\n    Amir Shaykh JABIR al-Ahmad al-Jabir al-Sabah (since 31 December 1977)\n  Head of Government:\n    Prime Minister and Crown Prince SA`UD al-`Abdallah al-Salim al-Sabah (since\n    8 February 1978); Deputy Prime Minister SALIM al-Sabah al-Salim al-Sabah\nPolitical parties and leaders:\n    none\nSuffrage:\n    adult males who resided in Kuwait before 1920 and their male descendants at\n    age 21; note - out of all citizens, only 10% are eligible to vote and only\n    5% actually vote\nElections:\n  National Assembly:\n    dissolved 3 July 1986; new elections are scheduled for October 1992\nOther political or pressure groups:\n    40,000 Palestinian community; small, clandestine leftist and Shi`a\n    fundamentalist groups are active; several groups critical of government\n    policies are active\nMember of:\n    ABEDA, AfDB, AFESD, AL, AMF, BDEAC, CAEU, ESCWA, FAO, G-77, GATT, GCC, IAEA,\n    IBRD, ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, ISO (correspondent), ITU, LORCS, NAM, OAPEC, OIC, OPEC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Shaykh Sa`ud Nasir al-SABAH; Chancery at 2940 Tilden Street NW,\n    Washington, DC 20008; telephone (202) 966-0702\n  US:\n    Ambassador Edward (Skip) GNEHM, Jr.; Embassy at Bneid al-Gar (opposite the\n    Kuwait International Hotel), Kuwait City (mailing address is P.O. Box 77\n    SAFAT, 13001 SAFAT, Kuwait; APO AE 09880); telephone [965] 242-4151 through\n    4159; FAX [956] 244-2855\n\n:Kuwait Government\n\nFlag:\n    three equal horizontal bands of green (top), white, and red with a black\n    trapezoid based on the hoist side\n\n:Kuwait Economy\n\nOverview:\n    Up to the invasion by Iraq in August 1990, the oil sector had dominated the\n    economy. Kuwait has the third-largest oil reserves in the world after Saudi\n    Arabia and Iraq. Earnings from hydrocarbons have generated over 90% of both\n    export and government revenues and contributed about 40% to GDP. Most of the\n    nonoil sector has traditionally been dependent upon oil-derived government\n    revenues. Iraq's destruction of Kuwait's oil industry during the Gulf war\n    has devastated the economy. Iraq destroyed or damaged more than 80% of\n    Kuwait's 950 operating oil wells, as well as sabotaged key surface\n    facilities. Firefighters brought all of the roughly 750 oil well fires and\n    blowouts under control by November 1991. By yearend, production had been\n    brought back to 400,000 barrels per day; it could take two to three years to\n    restore Kuwait's oil production to its prewar level of about 2.0 million\n    barrels per day. Meanwhile, population had been greatly reduced because of\n    the war, from 2.1 million to 1.4 million.\nGDP:\n    exchange rate conversion - $8.75 billion, per capita $6,200; real growth\n    rate -50% (1991 est.)\nInflation rate (consumer prices):\n    NA\nUnemployment rate:\n    NA\nBudget:\n    revenues $7.1 billion; expenditures $10.5 billion, including capital\n    expenditures of $3.1 billion (FY88)\nExports:\n    $11.4 billion (f.o.b., 1989)\n  commodities:\n    oil 90%\n  partners:\n    Japan 19%, Netherlands 9%, US 8%, Pakistan 6%\nImports:\n    $6.6 billion (f.o.b., 1989)\n  commodities:\n    food, construction materials, vehicles and parts, clothing\n  partners:\n    US 15%, Japan 12%, FRG 8%, UK 7%\nExternal debt:\n    $7.2 billion (December 1989 est.)\nIndustrial production:\n    growth rate 3% (1988); accounts for 52% of GDP\nElectricity:\n    3,100,000 kW available out of 8,290,000 kW capacity due to Persian Gulf war;\n    7,300 million kWh produced, 3,311 kWh per capita (1991)\nIndustries:\n    petroleum, petrochemicals, desalination, food processing, building\n    materials, salt, construction\nAgriculture:\n    virtually none; dependent on imports for food; about 75% of potable water\n    must be distilled or imported\nEconomic aid:\n    donor - pledged $18.3 billion in bilateral aid to less developed countries\n    (1979-89)\nCurrency:\n    Kuwaiti dinar (plural - dinars); 1 Kuwaiti dinar (KD) = 1,000 fils\nExchange rates:\n    Kuwaiti dinars (KD) per US$1 - 0.2950 (March 1992), 0.2843 (1991), 0.2915\n    (1990), 0.2937 (1989), 0.2790 (1988), 0.2786 (1987)\n\n:Kuwait Economy\n\nFiscal year:\n    1 July - 30 June\n\n:Kuwait Communications\n\nRailroads:\n    6,456 km total track length (1990); over 700 km double track; government\n    owned\nHighways:\n    3,900 km total; 3,000 km bituminous; 900 km earth, sand, light gravel\nPipelines:\n    crude oil 877 km; petroleum products 40 km; natural gas 165 km\nPorts:\n    Ash Shu`aybah, Ash Shuwaykh, Mina' al 'Ahmadi\nMerchant marine:\n    29 ships (1,000 GRT or over), totaling 1,196,435 GRT/1,957,216 DWT; includes\n    2 cargo, 4 livestock carrier, 18 oil tanker, 4 liquefied gas; note - all\n    Kuwaiti ships greater than 1,000 GRT were outside Kuwaiti waters at the time\n    of the Iraqi invasion; many of these ships transferred to the Liberian flag\n    or to the flags of other Persian Gulf states; only 1 has returned to Kuwaiti\n    flag since the liberation of Kuwait\nCivil air:\n    9 major transport aircraft\nAirports:\n    7 total, 4 usable; 4 with permanent-surface runways; none with runways over\n    3,659 m; 4 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    civil network suffered extensive damage as a result of Desert Storm;\n    reconstruction is under way with some restored international and domestic\n    capabilities; broadcast stations - 3 AM, 0 FM, 3 TV; satellite earth\n    stations - destroyed during Persian Gulf war; temporary mobile satellite\n    ground stations provide international telecommunications; coaxial cable and\n    radio relay to Saudi Arabia; service to Iraq is nonoperational\n\n:Kuwait Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Police Force, National Guard\nManpower availability:\n    males 15-49, 389,770; 234,609 fit for military service; 12,773 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $9.17 billion, 20.4% of GDP (1992 budget)\n\n:Kyrgyzstan Geography\n\nTotal area:\n    198,500 km2\nLand area:\n    191,300 km2\nComparative area:\n    slightly smaller than South Dakota\nLand boundaries:\n    3,878 km; China 858 km, Kazakhstan 1,051 km, Tajikistan 870 km, Uzbekistan\n    1,099 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    territorial dispute with Tajikistan on southern boundary in Isfara Valley\n    area\nClimate:\n    dry continental to polar in high Tien Shan; subtropical in south (Fergana\n    Valley)\nTerrain:\n    peaks of Tien Shan rise to 7,000 meters, and associated valleys and basins\n    encompass entire nation\nNatural resources:\n    small amounts of coal, natural gas, oil; also nepheline, rare earth metals,\n    mercury, bismuth, gold, uranium, lead, zinc, hydroelectric power\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    NA\n\n:Kyrgyzstan People\n\nPopulation:\n    4,567,875 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    31 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    - 8.5 migrants/1,000 population (1992)\nInfant mortality rate:\n    56 deaths/1,000 live births (1991)\nLife expectancy at birth:\n    62 years male, 71 years female (1992)\nTotal fertility rate:\n    4.0 children born/woman (1992)\nNationality:\n    noun - Kirghiz(s); adjective - Kirghiz\nEthnic divisions:\n    Kirghiz 52%, Russian 21%, Uzbek 13%, other 14%\nReligions:\n    Muslim 70%, Russian Orthodox NA%\nLanguages:\n    Kirghiz (Kyrgyz)\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    1,894,000 (1989); agriculture 33%, other 49%, industry 18%, other NA% (1988)\nOrganized labor:\n    NA\n\n:Kyrgyzstan Government\n\nLong-form name:\n    Republic of Kyrgyzstan\nType:\n    republic\nCapital:\n    Bishkek (formerly Frunze)\nAdministrative divisions:\n    6 oblasts (oblastey, singular - oblast'); Chu, Dzhalal-Abad, Issyk-Kul',\n    Naryn, Osh, Talas; note - an oblast has the same name as its administrative\n    center\nIndependence:\n    31 August 1991 (from Soviet Union; formerly Kirghiz Soviet Socialist\n    Republic)\nConstitution:\n    adopted NA, effective 20 April 1978, amended 23 September 1989; note - new\n    constitution is being drafted\nLegal system:\n    NA\nNational holiday:\n    NA\nExecutive branch:\n    president, Cabinet of Ministers\nLegislative branch:\n    unicameral body or bicameral\nJudicial branch:\n    Supreme Court\nLeaders:\n    President Askar AKAYEV; Vice President Felix KULOV; Chairman, Supreme\n    Soviet, Medetkav SHERIMKULOV; Spiritual leader of Kyrgyz Muslims, Sadykzhav\n    KAMALOV\n  Chief of State:\n    President Askar AKAYEV (since 28 October 1990), Vice President Felix KULOV\n    (since 2 March 1992)\n  Head of Government:\n    Prime Minister Tursenbek CHYNGYSHEV (since 2 March 1992)\nPolitical parties and leaders:\n    Kyrgyzstan Democratic Movement, Zhypur ZHEKSHEYEV, Kazat AKMAKOV, and\n    Toshubek TURGANALIEV, co-chairmen of popular front coalition of 40 informal\n    groups for Democratic Renewal and Civic Accord, 117-man pro-Akayev\n    parliamentary faction; Civic Accord, Coalition representing nonnative\n    minority groups; National Revived Asaba (Banner) Party, Asan ORMUSHEV,\n    chairman; Communist Party now banned\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 12 October 1991 (next to be held NA 1996); results - AKAYEV won in\n    uncontested election with 95% of vote with 90% of electorate voting; note -\n    Republic Supreme Soviet elections held 25 February 1990; presidential\n    elections held first by Supreme Soviet 28 October 1990, then by popular vote\n    12 October 1991\n  Supreme Soviet:\n    note - last held 25 February 1990 (next to be held no later than November\n    1994); results - Commnunists (310) 90%, seats - (350 total)\nOther political or pressure groups:\n    National Unity Democratic Movement; Peasant Party; Council of Free Trade\n    Union; Union of Entrepreneurs\nMember of:\n    CIS, CSCE, IMF, UN, UNCTAD\n\n:Kyrgyzstan Government\n\nDiplomatic representation:\n    Ambassador NA; Chancery at NW, Washington, DC 200__; telephone (202) NA;\n    there are Consulates General in NA;\n  US:\n    Charge Ralph Bresler; Interim Chancery at #66 Derzhinskiy Prospekt;\n    Residence: Hotel Pishpek (mailing address is APO AE 09862); telephone\n    8-011-7-3312-22-22-70\nFlag:\n    red-orange field with yellow sun in center with folk motif medallion\n    inscribed\n\n:Kyrgyzstan Economy\n\nOverview:\n    Kyrgyzstan's small economy (less than 1% of the total for the former Soviet\n    Union) is oriented toward agriculture, producing mainly livestock such as\n    goats and sheep, as well as cotton, grain, and tobacco. Industry,\n    concentrated around Bishkek, produces small quantities of electric motors,\n    livestock feeding equipment, washing machines, furniture, cement, paper, and\n    bricks. Mineral extraction is small, the most important minerals being rare\n    earth metals and gold. Kyrgyzstan is a net importer of most types of food\n    and fuel but is a net exporter of electricity. By early 1991, the Kirghiz\n    leadership had accelerated reform, primarily by privatizing business and\n    granting life-long tenure to farmers. In 1991 overall industrial and\n    livestock output declined substantially.\nGDP:\n    purchasing power equivalent - $NA billion, per capita $NA; real growth rate\n    -5% (1991)\nInflation rate (consumer prices):\n    88% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA million; expenditures $NA million\nExports:\n    $115 million (1990)\n  commodities:\n    wool, chemicals, cotton, ferrous and nonferrous metals, shoes, machinery,\n    tobacco\n  partners:\n    Russia 70%, Ukraine, Uzbekistan, Kazakhstan, and others\nImports:\n    $1.5 million (c.i.f., 1990)\n  commodities:\n    lumber, industrial products, ferrous metals, fuel, machinery, textiles,\n    footwear\nExternal debt:\n    $650 million (1991)\nIndustrial production:\n    growth rate 0.1% (1991)\nElectricity:\n    NA kW capacity; 13,900 million kWh produced, 3,232 kWh per capita (1991)\nIndustries:\n    small machinery, textiles, food-processing industries, cement, shoes, sawn\n    logs, steel, refrigerators, furniture, electric motors, gold, and rare earth\n    metals\nAgriculture:\n    wool, tobacco, cotton, livestock (sheep and goats) and cattle, vegetables,\n    meat, grapes, fruits and berries, eggs, milk, potatoes\nIllicit drugs:\n    poppy cultivation legal\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency\nFiscal year:\n    calendar year\n\n:Kyrgyzstan Communications\n\nRailroads:\n    370 km; does not include industrial lines (1990)\nHighways:\n    30,300 km total; 22,600 km paved or graveled, 7,700 km earth(1990)\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nPorts:\n    none - landlocked\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    poorly developed; connections with other CIS countries by landline or\n    microwave and with other countries by leased connections with Moscow\n    international gateway switch; satellite earth stations - Orbita and INTELSAT\n    (TV receive only)\n\n:Kyrgyzstan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops); National Guard, Civil\n    Defense; CIS Forces (Ground, Air, and Air Defense)\nManpower availability:\n    males 15-49, NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Laos Geography\n\nTotal area:\n    236,800 km2\nLand area:\n    230,800 km2\nComparative area:\n    slightly larger than Utah\nLand boundaries:\n    5,083 km; Burma 235 km, Cambodia 541 km, China 423 km, Thailand 1,754 km,\n    Vietnam 2,130 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    boundary dispute with Thailand\nClimate:\n    tropical monsoon; rainy season (May to November); dry season (December to\n    April)\nTerrain:\n    mostly rugged mountains; some plains and plateaus\nNatural resources:\n    timber, hydropower, gypsum, tin, gold, gemstones\nLand use:\n    arable land 4%; permanent crops NEGL%; meadows and pastures 3%; forest and\n    woodland 58%; other 35%; includes irrigated 1%\nEnvironment:\n    deforestation; soil erosion; subject to floods\nNote:\n    landlocked\n\n:Laos People\n\nPopulation:\n    4,440,213 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    16 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    107 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    49 years male, 52 years female (1992)\nTotal fertility rate:\n    6.3 children born/woman (1992)\nNationality:\n    noun - Lao(s) or Laotian(s); adjective - Lao or Laotian\nEthnic divisions:\n    Lao 50%, Phoutheung (Kha) 15%, tribal Thai 20%, Meo, Hmong, Yao, and other\n    15%\nReligions:\n    Buddhist 85%, animist and other 15%\nLanguages:\n    Lao (official), French, and English\nLiteracy:\n    84% (male 92%, female 76%) age 15 to 45 can read and write (1985 est.)\nLabor force:\n    1-1.5 million; 85-90% in agriculture (est.)\nOrganized labor:\n    Lao Federation of Trade Unions is subordinate to the Communist party\n\n:Laos Government\n\nLong-form name:\n    Lao People's Democratic Republic\nType:\n    Communist state\nCapital:\n    Vientiane\nAdministrative divisions:\n    16 provinces (khoueng, singular and plural) and 1 municipality* (kampheng\n    nakhon, singular and plural); Attapu, Bokeo, Bolikhamsai, Champasak,\n    Houaphan, Khammouan, Louang Namtha, Louangphrabang, Oudomxai, Phongsali,\n    Saravan, Savannakhet, Sekong, Vientiane, Vientiane*, Xaignabouri,\n    Xiangkhoang\nIndependence:\n    19 July 1949 (from France)\nConstitution:\n    promulgated August 1991\nLegal system:\n    based on civil law system; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day (proclamation of the Lao People's Democratic Republic), 2\n    December (1975)\nExecutive branch:\n    president, chairman and two vice chairmen of the Council of Ministers,\n    Council of Ministers (cabinet)\nLegislative branch:\n    Supreme People's Assembly\nJudicial branch:\n    People's Supreme Court\nLeaders:\n  Chief of State:\n    President KAYSONE PHOMVIHAN (since 15 August 1991)\n  Head of Government:\n    Chairman of the Council of Ministers Gen. KHAMTAI SIPHANDON (since 15 August\n    1991)\nPolitical parties and leaders:\n    Lao People's Revolutionary Party (LPRP), KAYSONE PHOMVIHAN, party chairman;\n    includes Lao Patriotic Front and Alliance Committee of Patriotic Neutralist\n    Forces; other parties moribund\nSuffrage:\n    universal at age 18\nElections:\n  Supreme People's Assembly:\n    last held on 26 March 1989 (next to be held NA); results - percent of vote\n    by party NA; seats - (79 total) number of seats by party NA\nOther political or pressure groups:\n    non-Communist political groups moribund; most leaders have fled the country\nMember of:\n    ACCT (associate), AsDB, CP, ESCAP, FAO, G-77, IBRD, ICAO, IDA, IFAD, ILO,\n    IMF, INTERPOL, IOC, ITU, LORCS, NAM, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Charge d'Affaires LINTHONG PHETSAVAN; Chancery at 2222 S Street NW,\n    Washington, DC 20008; telephone (202) 332-6416 or 6417\n  US:\n    Charge d'Affaires Charles B. SALMON, Jr.; Embassy at Rue Bartholonie,\n    Vientiane (mailing address is B. P. 114, Vientiane, or AMEMB, Box V, APO AP\n    96546); telephone (856) 2220, 2357, 2384; FAX (856) 4675\n\n:Laos Government\n\nFlag:\n    three horizontal bands of red (top), blue (double width), and red with a\n    large white disk centered in the blue band\n\n:Laos Economy\n\nOverview:\n    One of the world's poorest nations, Laos has had a Communist centrally\n    planned economy with government ownership and control of productive\n    enterprises of any size. In recent years, however, the government has been\n    decentralizing control and encouraging private enterprise. Laos is a\n    landlocked country with a primitive infrastructure; that is, it has no\n    railroads, a rudimentary road system, limited external and internal\n    telecommunications, and electricity available in only a limited area.\n    Subsistence agriculture is the main occupation, accounting for over 60% of\n    GDP and providing about 85-90% of total employment. The predominant crop is\n    rice. For the foreseeable future the economy will continue to depend for its\n    survival on foreign aid from the IMF and other international sources; aid\n    from the former USSR and Eastern Europe has been cut sharply.\nGDP:\n    exchange rate conversion - $800 million, per capita $200; real growth rate\n    4% (1991)\nInflation rate (consumer prices):\n    10.4% (December 1991)\nUnemployment rate:\n    21% (1989 est.)\nBudget:\n    revenues $83 million; expenditures $188.5 million, including capital\n    expenditures of $94 million (1990 est.)\nExports:\n    $72 million (f.o.b., 1990 est.)\n  commodities:\n    electricity, wood products, coffee, tin\n  partners:\n    Thailand, Malaysia, Vietnam, USSR, US, China\nImports:\n    $238 million (c.i.f., 1990 est.)\n  commodities:\n    food, fuel oil, consumer goods, manufactures\n  partners:\n    Thailand, USSR, Japan, France, Vietnam, China\nExternal debt:\n    $1.1 billion (1990 est.)\nIndustrial production:\n    growth rate 12% (1991 est.); accounts for about 18% of GDP (1991 est.)\nElectricity:\n    226,000 kW capacity; 1,100 million kWh produced, 270 kWh per capita (1991)\nIndustries:\n    tin and gypsum mining, timber, electric power, agricultural processing,\n    construction\nAgriculture:\n    accounts for 60% of GDP and employs most of the work force; subsistence\n    farming predominates; normally self-sufficient in nondrought years;\n    principal crops - rice (80% of cultivated land), sweet potatoes, vegetables,\n    corn, coffee, sugarcane, cotton; livestock - buffaloes, hogs, cattle,\n    chicken\nIllicit drugs:\n    illicit producer of cannabis, opium poppy for the international drug trade,\n    third-largest opium producer\nEconomic aid:\n    US commitments, including Ex-Im (FY70-79), $276 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $605 million;\n    Communist countries (1970-89), $995 million\nCurrency:\n    new kip (plural - kips); 1 new kip (NK) = 100 at\n\n:Laos Economy\n\nExchange rates:\n    new kips (NK) per US$1 - 710 (May 1992), 710 (December 1991), 700 (September\n    1990), 576 (1989), 385 (1988), 200 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Laos Communications\n\nRailroads:\n    none\nHighways:\n    about 27,527 km total; 1,856 km bituminous or bituminous treated; 7,451 km\n    gravel, crushed stone, or improved earth; 18,220 km unimproved earth and\n    often impassable during rainy season mid-May to mid-September\nInland waterways:\n    about 4,587 km, primarily Mekong and tributaries; 2,897 additional\n    kilometers are sectionally navigable by craft drawing less than 0.5 m\nPipelines:\n    petroleum products 136 km\nPorts:\n    none\nAirports:\n    57 total, 47 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 14 with runways 1,220-2,439 m\nTelecommunications:\n    service to general public considered poor; radio communications network\n    provides generally erratic service to government users; 7,390 telephones\n    (1986); broadcast stations - 10 AM, no FM, 1 TV; 1 satellite earth station\n\n:Laos Defense Forces\n\nBranches:\n    Lao People's Army (LPA; including naval, aviation, and militia elements),\n    Air Force, National Police Department\nManpower availability:\n    males 15-49, 946,289; 509,931 fit for military service; 45,232 reach\n    military age (18) annually; conscription age NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Latvia Geography\n\nTotal area:\n    64,100 km2\nLand area:\n    64,100 km2\nComparative area:\n    slightly larger than West Virginia\nLand boundaries:\n    1,078 km; Belarus 141 km, Estonia 267 km, Lithuania 453 km, Russia 217 km\nCoastline:\n    531 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    NA meter depth\n  Exclusive fishing zone:\n    NA nm\n  Exclusive economic zone:\n    NA nm\n  Territorial sea:\n    NA nm\nDisputes:\n    the Abrene section of border ceded by the Latvian Soviet Socialist Republic\n    to Russia in 1944\nClimate:\n    maritime; wet, moderate winters\nTerrain:\n    low plain\nNatural resources:\n    minimal; amber, peat, limestone, dolomite\nLand use:\n    27% arable land; NA% permanent crops; 13% meadows and pastures; 39% forest\n    and woodland; 21% other; includes NA% irrigated\nEnvironment:\n    heightened levels of air and water pollution because of a lack of waste\n    conversion equipment; Gulf of Riga heavily polluted\n\n:Latvia People\n\nPopulation:\n    2,728,937 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    4 migrants/1,000 population (1992)\nInfant mortality rate:\n    19 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 75 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Latvian(s);adjective - Latvian\nEthnic divisions:\n    Latvian 51.8%, Russian 33.8%, Byelorussian 4.5%, Ukrainian 3.4%, Polish\n    2.3%, other 4.2%\nReligions:\n    Lutheran, Roman Catholic, Russian Orthodox\nLanguages:\n    Latvian NA% (official), Lithuanian NA%, Russian NA%, other NA%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    1,407,000; industry and construction 41%, agriculture and forestry 16%,\n    other 43% (1990)\nOrganized labor:\n    NA\n\n:Latvia Government\n\nLong-form name:\n    Republic of Latvia\nType:\n    republic\nCapital:\n    Riga\nAdministrative divisions:\n    none - all districts are under direct republic jurisdiction\nIndependence:\n    18 November 1918; annexed by the USSR 21 July 1940, the Latvian Soviet\n    Socialist Republic declared independence 6 September 1991 from USSR\nConstitution:\n    April 1978, currently rewriting constitution, but readopted the 1922\n    Constitution\nLegal system:\n    based on civil law system\nNational holiday:\n    Independence Day, 18 November (1918)\nExecutive branch:\n    Prime Minister\nLegislative branch:\n    unicameral Supreme Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Chairman, Supreme Council, Anatolijs GORBUNOVS (since October 1988);\n    Chairmen, Andrejs KRASTINS, Valdis BIRKAVS (since NA 1992)\n  Head of Government:\n    Prime Minister Ivars GODMANIS (since May 1990)\nPolitical parties and leaders:\n    Democratic Labor Party of Latvia, Juris BOJARS, chairman; Inter-Front of the\n    Working People of Latvia, Igor LOPATIN, chairman; note - Inter-Front was\n    banned after the coup; Latvian National Movement for Independence, Eduards\n    BERKLAVS, chairman; Latvian Social Democratic Party, Janis DINEVICS,\n    chairman; Social Democratic Party of Latvia, Uldis BERZINS, chairman;\n    Latvian People's Front, Romualdas RAZUKAS, chairman; Latvian Liberal Party,\n    Georg LANSMANIS, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held October 1988 (next to be held NA; note - elected by Parliament;\n    new elections have not been scheduled; results - percent of vote by party NA\n  Supreme Council:\n    last held 18 March 1990 (next to be held NA); results - undetermined; seats\n    - (234 total) Latvian Communist Party 59, Latvian Democratic Workers Party\n    31, Social Democratic Party of Latvia 4, Green Party of Latvia 7, Latvian\n    Farmers Union 7, 126 supported by the Latvia Popular Front\n  Congress of Latvia:\n    last held April 1990 (next to be held NA); note - the Congress of Latvia is\n    a quasi-governmental structure; results - percent of vote by party NA%;\n    seats - (231 total) number of seats by party NA\nMember of:\n    CSCE, IAEA, UN\nDiplomatic representation:\n    Ambassador Dr. Anatol DINBERGS; Chancery at 4325 17th St. NW, Washington, DC\n    20011; telephone (202) 726-8213 and 8214\n\n:Latvia Government\n\n  US:\n    Ambassador Ints SILINS; (mailing address is APO AE 09862); telephone [358]\n    (49) 306-067 (cellular), (7) (01-32) 325-968/185; FAX [358] (49) 308-326\n    (cellular), (7) (01-32) 220-502\nFlag:\n    two horizontal bands of maroon (top), white (middle, narrower than other two\n    bands) and maroon (bottom)\n\n:Latvia Economy\n\nOverview:\n    Latvia is in the process of reforming the centrally planned economy\n    inherited from the former USSR into a market economy. Prices have been\n    freed, and privatization of shops and farms has begun. Latvia lacks natural\n    resources, aside from its arable land and small forests. Its most valuable\n    economic asset is its work force, which is better educated and disciplined\n    than in most of the former Soviet republics. Industrial production is highly\n    diversified, with products ranging from agricultural machinery to consumer\n    electronics. One conspicuous vulnerability: Latvia produces only 10% of its\n    electric power needs. Latvia in the near term must retain key commercial\n    ties to Russia, Belarus, and Ukraine while moving in the long run toward\n    joint ventures, technological support, and trade ties to the West. Because\n    of the efficiency of its mostly individual farms, Latvians enjoy a diet that\n    is higher in meat, vegetables, and dairy products and lower in grain and\n    potatoes than diets in the 12 non-Baltic republics of the USSR. Good\n    relations with Russia are threatened by animosity between ethnic Russians\n    (34% of the population) and native Latvians.\nGDP:\n    purchasing power equivalent - $NA; per capital NA; real growth rate - 8%\n    (1991)\nInflation rate (consumer prices):\n    approximately 200% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA (1991)\nExports:\n    $239 million (f.o.b., 1990)\n  commodities:\n    food 14%, railroad cars 13%, chemicals 12%\n  partners:\n    Russia 50%, Ukraine 15%, other former Soviet republics 30%, West 5%\nImports:\n    $9.0 billion (c.i.f., 1989)\n  commodities:\n    machinery 35%, petroleum products 13%, chemicals 9%\n  partners:\n    NA\nExternal debt:\n    $650 million (1991 est.)\nIndustrial production:\n    growth rate 0% (1991)\nElectricity:\n    1,975,000 kW capacity; 6,500 million kWh produced, 2,381 kWh per capita\n    (1990)\nIndustries:\n    employs 33.2% of labor force; highly diversified; dependent on imports for\n    energy, raw materials, and intermediate products; produces buses, vans,\n    street and railroad cars, synthetic fibers, agricultural machinery,\n    fertilizers, washing machines, radios, electronics, pharmaceuticals,\n    processed foods, textiles\nAgriculture:\n    employs 23% of labor force; principally dairy farming and livestock feeding;\n    products - meat, milk, eggs, grain, sugar beets, potatoes, and vegetables;\n    fishing and fish packing\nIllicit drugs:\n    transshipment point for illicit drugs from Central and Southwest Asia to\n    Western Europe\n\n:Latvia Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency but planning early introduction\n    of ``lat''\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Latvia Communications\n\nRailroads:\n    2,400 km (includes NA km electrified) does not include industrial lines\n    (1990)\nHighways:\n    59,500 km total (1990); 33,000 km hard surfaced 26,500 km earth\nInland waterways:\n    300 km perennially navigable\nPipelines:\n    crude oil NA km, refined products NA km, natural gas NA km\nPorts:\n    maritime - Riga, Ventspils, Liepaja; inland - Daugavpils\nMerchant marine:\n    96 ships (1,000 GRT or over) totaling 917,979 GRT/1,194,666 DWT; includes 14\n    cargo, 29 refrigerated cargo, 2 container, 9 roll-on/roll-off, 42 petroleum\n    tanker\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - NA; international traffic carried by leased connection\n    to the Moscow international gateway switch and the Finnish cellular net\n\n:Latvia Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard,\n    Russian Forces (Ground, Navy, Air, Air Defense, Border Guard\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    NA% of GDP; 3-5% of Latvia's budget (1992)\n\n:Lebanon Geography\n\nTotal area:\n    10,400 km2\nLand area:\n    10,230 km2\nComparative area:\n    about 0.8 times the size of Connecticut\nLand boundaries:\n    454 km; Israel 79 km, Syria 375 km\nCoastline:\n    225 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    separated from Israel by the 1949 Armistice Line; Israeli troops in southern\n    Lebanon since June 1982; Syrian troops in northern Lebanon since October\n    1976\nClimate:\n    Mediterranean; mild to cool, wet winters with hot, dry summers\nTerrain:\n    narrow coastal plain; Al Biqa` (Bekaa Valley) separates Lebanon and\n    Anti-Lebanon Mountains\nNatural resources:\n    limestone, iron ore, salt; water-surplus state in a water-deficit region\nLand use:\n    arable land 21%; permanent crops 9%; meadows and pastures 1%; forest and\n    woodland 8%; other 61%; includes irrigated 7%\nEnvironment:\n    rugged terrain historically helped isolate, protect, and develop numerous\n    factional groups based on religion, clan, ethnicity; deforestation; soil\n    erosion; air and water pollution; desertification\nNote:\n    Nahr al Litani only major river in Near East not crossing an international\n    boundary\n\n:Lebanon People\n\nPopulation:\n    3,439,115 (July 1992), growth rate 1.6% (1992)\nBirth rate:\n    28 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -5 migrants/1,000 population (1992)\nInfant mortality rate:\n    43 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 71 years female (1992)\nTotal fertility rate:\n    3.6 children born/woman (1992)\nNationality:\n    noun - Lebanese (singular and plural); adjective - Lebanese\nEthnic divisions:\n    Arab 95%, Armenian 4%, other 1%\nReligions:\n    Islam 75%, Christian 25%, Judaism NEGL%; 17 legally recognized groups - 5\n    Islam (Alawite or Nusayri, Druze, Isma`ilite, Shi`a, Sunni); 11 Christian,\n    consisting of 4 Orthodox Christian (Armenian Orthodox, Greek Orthodox,\n    Nestorean, Syriac Orthodox), 6 Catholic (Armenian Catholic, Caldean, Greek\n    Catholic, Maronite, Roman Catholic, and Syrian Catholic) and the\n    Protestants; 1 Jewish\nLanguages:\n    Arabic and French (both official); Armenian, English\nLiteracy:\n    80% (male 88%, female 73%) age 15 and over can read and write (1990 est.)\nLabor force:\n    650,000; industry, commerce, and services 79%, agriculture 11%, government\n    10% (1985)\nOrganized labor:\n    250,000 members (est.)\n\n:Lebanon Government\n\nLong-form name:\n    Republic of Lebanon; note - may be changed to Lebanese Republic\nType:\n    republic\nCapital:\n    Beirut\nAdministrative divisions:\n    5 governorates (muhafazat, singular - muhafazah); Al Biqa, `Al Janub, Ash\n    Shamal, Bayrut, Jabal Lubnan\nIndependence:\n    22 November 1943 (from League of Nations mandate under French\n    administration)\nConstitution:\n    26 May 1926 (amended)\nLegal system:\n    mixture of Ottoman law, canon law, Napoleonic code, and civil law; no\n    judicial review of legislative acts; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Independence Day, 22 November (1943)\nExecutive branch:\n    president, prime minister, Cabinet; note - by custom, the president is a\n    Maronite Christian, the prime minister is a Sunni Muslim, and the speaker of\n    the legislature is a Shi`a Muslim\nLegislative branch:\n    unicameral National Assembly (Arabic - Majlis Alnuwab, French - Assemblee\n    Nationale)\nJudicial branch:\n    four Courts of Cassation (three courts for civil and commercial cases and\n    one court for criminal cases)\nLeaders:\n  Chief of State:\n    President Ilyas HARAWI (since 24 November 1989)\n  Head of Government:\n    Prime Minister Rashid SULH (since 13 May 1992)\nPolitical parties and leaders:\n    political party activity is organized along largely sectarian lines;\n    numerous political groupings exist, consisting of individual political\n    figures and followers motivated by religious, clan, and economic\n    considerations; most parties have well-armed militias, which are still\n    involved in occasional clashes\nSuffrage:\n    compulsory for all males at age 21; authorized for women at age 21 with\n    elementary education\nElections:\n  National Assembly:\n    elections should be held every four years, but security conditions have\n    prevented elections since May 1972; in June 1991, the Cabinet appointed 40\n    new deputies to fill vacancies and balance Christian and Muslim\n    representation; the legislature's mandate expires in 1994\nCommunists:\n    the Lebanese Communist Party was legalized in 1970; members and sympathizers\n    estimated at 2,000-3,000\nMember of:\n    ABEDA, ACCT, AFESD, AL, AMF, CCC, ESCWA, FAO, G-24, G-77, IAEA, IBRD, ICAO,\n    ICC, ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC,\n    ITU, LORCS, NAM, OIC, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UNRWA, UPU,\n    WFTU, WHO, WIPO, WMO, WTO\n\n:Lebanon Government\n\nDiplomatic representation:\n    Ambassador - no ambassador at present; Mission is headed by Charge; Chancery\n    at 2560 28th Street NW, Washington, DC 20008; telephone (202) 939-6300;\n    there are Lebanese Consulates General in Detroit, New York, and Los Angeles\n  US:\n    Ambassador Ryan C. CROCKER; Embassy at Antelias, Beirut (mailing address is\n    P. O. Box 70-840, Beirut, or Box B, FPO AE 09836); telephone [961] 417774 or\n    415802, 415803, 402200, 403300\nFlag:\n    three horizontal bands of red (top), white (double width), and red with a\n    green and brown cedar tree centered in the white band\n\n:Lebanon Government\n\nNote:\n    Between early 1975 and late 1976 Lebanon was torn by civil war between its\n    Christians - then aided by Syrian troops - and its Muslims and their\n    Palestinian allies. The cease-fire established in October 1976 between the\n    domestic political groups generally held for about six years, despite\n    occasional fighting. Syrian troops constituted as the Arab Deterrent Force\n    by the Arab League have remained in Lebanon. Syria's move toward supporting\n    the Lebanese Muslims, and the Palestinians and Israel's growing support for\n    Lebanese Christians, brought the two sides into rough equilibrium, but no\n    progress was made toward national reconciliation or political reforms - the\n    original cause of the war. Continuing Israeli concern about the Palestinian\n    presence in Lebanon led to the Israeli invasion of Lebanon in June 1982.\n    Israeli forces occupied all of the southern portion of the country and\n    mounted a summer-long siege of Beirut, which resulted in the evacuation of\n    the PLO from Beirut in September under the supervision of a multinational\n    force (MNF) made up of US, French, and Italian troops. Within days of the\n    departure of the MNF, Lebanon's newly elected president, Bashir Gemayel, was\n    assassinated; his elder brother Amin was elected to succeed him. In the\n    immediate wake of Bashir's death, however, Christian militiamen massacred\n    hundreds of Palestinian refugees in two Beirut camps. This prompted the\n    return of the MNF to ease the security burden on Lebanon's weak Army and\n    security forces. In late March 1984 the last MNF units withdrew. In 1988,\n    President Gemayel completed his term of office. Because parliamentarians\n    failed to elect a presidential successor, Gemayel appointed then Lebanese\n    Armed Forces (LAF) Commander Gen. Michel Awn acting president. Lebanese\n    parliamentarians met in Ta'if, Saudi Arabia, in late 1989 and concluded a\n    national reconciliation pact that codified a new power-sharing formula,\n    specifying reduced powers for the Christian president and giving Muslims\n    more authority. Rene MUAWAD was subsequently elected president on 4 November\n    1989, ending a 13-month period during which Lebanon had no president and\n    rival Muslim and Christian governments. MUAWAD was assassinated 17 days\n    later, on 22 November; on 24 November, Ilyas Harawi was elected to succeed\n    MUAWAD. In October 1990, the civil war was apparently brought to a\n    conclusion when Syrian and Lebanese forces ousted renegade Christian General\n    Awn from his stronghold in East Beirut. Awn had defied the legitimate\n    government and established a separate ministate within East Beirut after\n    being appointed acting Prime Minister by outgoing President Gemayel in 1988.\n    Awn and his supporters feared Ta'if would diminish Christian power in\n    Lebanon and increase the influence of Syria. Awn was granted amnesty and\n    allowed to travel in France in August 199l. Since the removal of Awn, the\n    Lebanese Government has made substantial progress in strengthening the\n    central government, rebuilding government institutions, and extending its\n    authority throughout the nation. The LAF has deployed from Beirut north\n    along the coast road to Tripoli, southeast into the Shuf mountains, and\n    south to Sidon and Tyre. Many militiamen from Christian and Muslim groups\n    have evacuated Beirut for their strongholds in the north, south, and east of\n    the country. Some heavy weapons possessed by the militias have been turned\n    over to the government, or sold outside the country, which has begun a plan\n    to integrate some militiamen into the military and the internal security\n    forces. Lebanon and Syria signed a treaty of friendship and cooperation in\n    May 1991. Lebanon continues to be partially occupied by Syrian troops, which\n    are deployed in Beirut, its southern suburbs, the Bekaa Valley, and northern\n    Lebanon. Iran also maintains a small contingent of revolutionary guards in\n    the Bekaa Valley to support Lebanese Islamic fundamentalist groups. Israel\n    withdrew the bulk of its forces from the south in 1985, although it still\n    retains troops in a 10-km-deep security zone north of its border with\n    Lebanon. Israel arms and trains the Army of South Lebanon (ASL), which also\n    occupies the security zone and is Israel's first line of defense against\n    attacks on its northern border. The following description is based on the\n    present constitutional and customary practices of the Lebanese system.\n\n:Lebanon Economy\n\nOverview:\n    Since 1975 civil war has seriously damaged Lebanon's economic\n    infrastructure, cut national output by half, and all but ended Lebanon's\n    position as a Middle Eastern entrepot and banking hub. Following October\n    1990, however, a tentative peace has enabled the central government to begin\n    restoring control in Beirut, collect taxes, and regain access to key port\n    and government facilities. The battered economy has also been propped up by\n    a financially sound banking system and resilient small- and medium-scale\n    manufacturers. Family remittances, banking transactions, manufactured and\n    farm exports, the narcotics trade, and international emergency aid are main\n    sources of foreign exchange. In the relatively settled year of 1991,\n    industrial production, agricultural output, and exports showed substantial\n    gains. The further rebuilding of the war-ravaged country could provide a\n    major stimulus to the economy in 1992, provided that the political and\n    military situation remains reasonably calm.\nGDP:\n    exchange rate conversion - $4.8 billion, per capita $1,400; real growth rate\n    NA (1991 est.)\nInflation rate (consumer prices):\n    30% (1991)\nUnemployment rate:\n    35% (1991 est.)\nBudget:\n    revenues $533 million; expenditures $1.3 billion, including capital\n    expenditures of $NA (1991 est.)\nExports:\n    $700 million (f.o.b., 1990 est.)\n  commodities:\n    agricultural products, chemicals, textiles, precious and semiprecious metals\n    and jewelry, metals and metal products\n  partners:\n    Saudi Arabia 16%, Switzerland 8%, Jordan 6%, Kuwait 6%, US 5%\nImports:\n    $1.8 billion (c.i.f., 1990 est.)\n  commodities:\n    NA\n  partners:\n    Italy 14%, France 12%, US 6%, Turkey 5%, Saudi Arabia 3%\nExternal debt:\n    $900 million (1990 est.)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    1,381,000 kW capacity; 3,870 million kWh produced, 1,170 kWh per capita\n    (1989)\nIndustries:\n    banking, food processing, textiles, cement, oil refining, chemicals,\n    jewelry, some metal fabricating\nAgriculture:\n    accounts for about one-third of GDP; principal products - citrus fruits,\n    vegetables, potatoes, olives, tobacco, hemp (hashish), sheep, and goats; not\n    self-sufficient in grain\nIllicit drugs:\n    illicit producer of opium and hashish for the international drug trade;\n    opium poppy production in Al Biqa` is increasing; hashish production is\n    shipped to Western Europe, Israel, US, and the Middle East\n\n:Lebanon Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-88), $356 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $664 million; OPEC\n    bilateral aid (1979-89), $962 million; Communist countries (1970-89), $9\n    million\nCurrency:\n    Lebanese pound (plural - pounds); 1 Lebanese pound (#L) = 100 piasters\nExchange rates:\n    Lebanese pounds (#L) per US$1 - 879.00 (January 1992), 928.23 (1991), 695.09\n    (1990), 496.69 (1989), 409.23 (1988), 224.60 (1987)\nFiscal year:\n    calendar year\n\n:Lebanon Communications\n\nRailroads:\n    system in disrepair, considered inoperable\nHighways:\n    7,300 km total; 6,200 km paved, 450 km gravel and crushed stone, 650 km\n    improved earth\nPipelines:\n    crude oil 72 km (none in operation)\nPorts:\n    Beirut, Tripoli, Ra'Sil`ata, Juniyah, Sidon, Az Zahrani, Tyre\nMerchant marine:\n    56 ships (1,000 GRT or over) totaling 236,196 GRT/346,760 DWT; includes 36\n    cargo, 1 refrigerated cargo, 2 vehicle carrier, 2 roll-on/roll-off, 1\n    container, 8 livestock carrier, 1 chemical tanker, 1 specialized tanker, 3\n    bulk, 1 combination bulk\nCivil air:\n    19 major transport aircraft\nAirports:\n    9 total, 8 usable; 6 with permanent-surface runways; none with runways over\n    3,659 m; 3 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m; none\n    under the direct control of the Lebanese Government\nTelecommunications:\n    rebuilding program disrupted; had fair system of microwave relay, cable;\n    325,000 telephones; broadcast stations - 5 AM, 3 FM (numerous AM and FM\n    radio stations are operated inconsistently by various factions), 13 TV; 1\n    Indian Ocean INTELSAT and 1 Atlantic Ocean INTELSAT satellite earth station,\n    erratic operations; 3 submarine coaxial cables; radio relay to Jordan\n    inoperable, but operational to Syria, coaxial cable to Syria\n\n:Lebanon Defense Forces\n\nBranches:\n    Lebanese Armed Forces (LAF) (including Army, Navy, and Air Force)\nManpower availability:\n    males 15-49, 750,319; 465,938 fit for military service\nDefense expenditures:\n    exchange rate conversion - $271 million, 8.2% of GDP (1992 budget)\n\n:Lesotho Geography\n\nTotal area:\n    30,350 km2\nLand area:\n    30,350 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    909 km; South Africa 909 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; cool to cold, dry winters; hot, wet summers\nTerrain:\n    mostly highland with some plateaus, hills, and mountains\nNatural resources:\n    some diamonds and other minerals, water, agricultural and grazing land\nLand use:\n    arable land 10%; permanent crops 0%; meadows and pastures 66%; forest and\n    woodland 0%; other 24%\nEnvironment:\n    population pressure forcing settlement in marginal areas results in\n    overgrazing, severe soil erosion, soil exhaustion; desertification\nNote:\n    landlocked; surrounded by South Africa; Highlands Water Project will\n    control, store, and redirect water to South Africa\n\n:Lesotho People\n\nPopulation:\n    1,848,925 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    35 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    74 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    60 years male, 63 years female (1992)\nTotal fertility rate:\n    4.7 children born/woman (1992)\nNationality:\n    noun - Mosotho (singular), Basotho (plural); adjective - Basotho\nEthnic divisions:\n    Sotho 99.7%; Europeans 1,600, Asians 800\nReligions:\n    Christian 80%, rest indigenous beliefs\nLanguages:\n    Sesotho (southern Sotho) and English (official); also Zulu and Xhosa\nLiteracy:\n    59% (male 44%, female 68%) age 15 and over can read and write (1966)\nLabor force:\n    689,000 economically active; 86.2% of resident population engaged in\n    subsistence agriculture; roughly 60% of active male labor force works in\n    South Africa\nOrganized labor:\n    there are two trade union federations; the government favors formation of a\n    single, umbrella trade union confederation\n\n:Lesotho Government\n\nLong-form name:\n    Kingdom of Lesotho\nType:\n    constitutional monarchy\nCapital:\n    Maseru\nAdministrative divisions:\n    10 districts; Berea, Butha-Buthe, Leribe, Mafeteng, Maseru, Mohale's Hoek,\n    Mokhotlong, Qacha's Nek, Quthing, Thaba-Tseka\nIndependence:\n    4 October 1966 (from UK; formerly Basutoland)\nConstitution:\n    4 October 1966, suspended January 1970\nLegal system:\n    based on English common law and Roman-Dutch law; judicial review of\n    legislative acts in High Court and Court of Appeal; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 4 October (1966)\nExecutive branch:\n    monarch, chairman of the Military Council, Military Council, Council of\n    Ministers (cabinet)\nLegislative branch:\n    none - the bicameral Parliament was dissolved following the military coup in\n    January 1986; note - a National Constituent Assembly convened in June 1990\n    to rewrite the constitution and debate issues of national importance, but it\n    has no legislative authority\nJudicial branch:\n    High Court, Court of Appeal\nLeaders:\n  Chief of State:\n    King LETSIE III (since 12 November 1990 following dismissal of his father,\n    exiled King MOSHOESHOE II, by Maj. Gen. LEKHANYA)\n  Head of Government:\n    Chairman of the Military Council Col. Elias Phisoana RAMAEMA (since 30 April\n    1991)\nPolitical parties and leaders:\n    Basotho National Party (BNP), Evaristus SEKHONYANA; Basutoland Congress\n    Party (BCP), Ntsu MOKHEHLE; National Independent Party (NIP), A. C. MANYELI;\n    Marematlou Freedom Party (MFP), Bernard M. KHAKETLA; United Democratic\n    Party, Charles MOFELI; Communist Party of Lesotho (CPL), J. M. KENA\nSuffrage:\n    universal at age 21\nElections:\n  National Assembly:\n    dissolved following the military coup in January 1986; military has pledged\n    elections will take place in June 1992\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, G-77, GATT, IBRD, ICAO, ICFTU, IDA, IFAD, IFC,\n    ILO, IMF, INTERPOL, IOC, ITU, LORCS, NAM, OAU, SACU, SADCC, UN, UNCTAD,\n    UNESCO, UNHCR, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Tseliso THAMAE; Chancery at 2511 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 797-5534\n  US:\n    Ambassador Leonard H.O. SPEARMAN, Sr.; Embassy at address NA, Maseru\n    (mailing address is P. O. Box 333, Maseru 100 Lesotho); telephone [266]\n    312-666; FAX (266) 310-116\n\n:Lesotho Government\n\nFlag:\n    divided diagonally from the lower hoist side corner; the upper half is white\n    bearing the brown silhouette of a large shield with crossed spear and club;\n    the lower half is a diagonal blue band with a green triangle in the corner\n\n:Lesotho Economy\n\nOverview:\n    Small, landlocked, and mountainous, Lesotho has no important natural\n    resources other than water. Its economy is based on agriculture, light\n    manufacturing, and remittances from laborers employed in South Africa ($153\n    million in 1989). The great majority of households gain their livelihoods\n    from subsistence farming and migrant labor. Manufacturing depends largely on\n    farm products to support the milling, canning, leather, and jute industries;\n    other industries include textile, clothing, and light engineering.\n    Industry's share of GDP rose from 6% in 1982 to 15% in 1989. Political and\n    economic instability in South Africa raises uncertainty for Lesotho's\n    economy, especially with respect to migrant worker remittances - typically\n    about 40% of GDP.\nGDP:\n    exchange rate conversion - $420 million, per capita $240; real growth rate\n    4.0% (1990 est.)\nInflation rate (consumer prices):\n    15% (1990 est.)\nUnemployment rate:\n    at least 55% among adult males (1991 est.)\nBudget:\n    expenditures $399 million, including capital expenditures of $132 million\n    (FY92-93)\nExports:\n    $59 million (f.o.b., 1990)\n  commodities:\n    wool, mohair, wheat, cattle, peas, beans, corn, hides, skins, baskets\n  partners:\n    South Africa 53%, EC 30%, North and South America 13% (1989)\nImports:\n    $604 million (f.o.b., 1990)\n  commodities:\n    mainly corn, building materials, clothing, vehicles, machinery, medicines,\n    petroleum\n  partners:\n    South Africa 95%, EC 2% (1989)\nExternal debt:\n    $370 million (December 1990 est.)\nIndustrial production:\n    growth rate 7.8% (1989 est.); accounts for 15% of GDP\nElectricity:\n    power supplied by South Africa\nIndustries:\n    food, beverages, textiles, handicrafts, tourism\nAgriculture:\n    accounts for 18% of GDP and employs 60-70% of all households; exceedingly\n    primitive, mostly subsistence farming and livestock; principal crops are\n    corn, wheat, pulses, sorghum, barley\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $268 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $819 million; OPEC\n    bilateral aid (1979-89), $4 million; Communist countries (1970-89), $14\n    million\nCurrency:\n    loti (plural - maloti); 1 loti (L) = 100 lisente\nExchange rates:\n    maloti (M) per US$1 - 2.8809 (March 1992), 2.7563 (1991), 2.5863 (1990),\n    2.6166 (1989), 2.2611 (1988), 2.0350 (1987); note - the Basotho loti is at\n    par with the South African rand\n\n:Lesotho Economy\n\nFiscal year:\n    1 April - 31 March\n\n:Lesotho Communications\n\nRailroads:\n    2.6 km; owned, operated by, and included in the statistics of South Africa\nHighways:\n    7,215 km total; 572 km paved; 2,337 km crushed stone, gravel, or stabilized\n    soil; 1,806 km improved earth, 2,500 km unimproved earth (1988)\nCivil air:\n    1 major transport aircraft\nAirports:\n    28 total, 28 usable; 3 with permanent surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    rudimentary system consisting of a few landlines, a small microwave system,\n    and minor radio communications stations; 5,920 telephones; broadcast\n    stations - 3 AM, 2 FM, 1 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Lesotho Defense Forces\n\nBranches:\n    Royal Lesotho Defense Force (RLDF; including Army, Air Wing), Royal Lesotho\n    Mounted Police\nManpower availability:\n    males 15-49, 408,003; 220,129 fit for military service\nDefense expenditures:\n    exchange rate conversion - $55 million, 13.1% of GDP (1990 est.)\n\n:Liberia Geography\n\nTotal area:\n    111,370 km2\nLand area:\n    96,320 km2\nComparative area:\n    slightly larger than Tennessee\nLand boundaries:\n    1,585 km; Guinea 563 km, Ivory Coast 716 km, Sierra Leone 306 km\nCoastline:\n    579 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    200 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid; dry winters with hot days and cool to cold nights;\n    wet, cloudy summers with frequent heavy showers\nTerrain:\n    mostly flat to rolling coastal plains rising to rolling plateau and low\n    mountains in northeast\nNatural resources:\n    iron ore, timber, diamonds, gold\nLand use:\n    arable land 1%; permanent crops 3%; meadows and pastures 2%; forest and\n    woodland 39%; other 55%; includes irrigated NEGL%\nEnvironment:\n    West Africa's largest tropical rain forest, subject to deforestation\n\n:Liberia People\n\nPopulation:\n    2,462,276 (July 1992), growth rate 29.6% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    265 migrants/1,000 population (1992)\nInfant mortality rate:\n    119 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    54 years male, 59 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Liberian(s); adjective - Liberian\nEthnic divisions:\n    indigenous African tribes, including Kpelle, Bassa, Gio, Kru, Grebo, Mano,\n    Krahn, Gola, Gbandi, Loma, Kissi, Vai, and Bella 95%; descendants of\n    repatriated slaves known as Americo-Liberians 5%\nReligions:\n    traditional 70%, Muslim 20%, Christian 10%\nLanguages:\n    English (official); more than 20 local languages of the Niger-Congo language\n    group; English used by about 20%\nLiteracy:\n    40% (male 50%, female 29%) age 15 and over can read and write (1990 est.)\nLabor force:\n    510,000, including 220,000 in the monetary economy; agriculture 70.5%,\n    services 10.8%, industry and commerce 4.5%, other 14.2%; non-African\n    foreigners hold about 95% of the top-level management and engineering jobs;\n    52% of population of working age\nOrganized labor:\n    2% of labor force\n\n:Liberia Government\n\nLong-form name:\n    Republic of Liberia\nType:\n    republic\nCapital:\n    Monrovia\nAdministrative divisions:\n    13 counties; Bomi, Bong, Grand Bassa, Cape Mount, Grand Gedeh, Grand Kru,\n    Lofa, Margibi, Maryland, Montserrado, Nimba, River Cess, Sinoe\nIndependence:\n    26 July 1847\nConstitution:\n    6 January 1986\nLegal system:\n    dual system of statutory law based on Anglo-American common law for the\n    modern sector and customary law based on unwritten tribal practices for\n    indigenous sector\nNational holiday:\n    Independence Day, 26 July (1847)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral National Assembly consists of an upper house or Senate and a lower\n    house or House of Representatives\nJudicial branch:\n    People's Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    interim President Dr. Amos SAWYER (since 15 November 1990); Vice President,\n    vacant (since August 1991); note - this is an interim government appointed\n    by the Economic Community of West African States (ECOWAS) that will be\n    replaced after elections are held under a West African - brokered peace\n    plan; rival rebel factions led by Prince Y. JOHNSON and Charles TAYLOR are\n    challenging the SAWYER government's legitimacy while observing a tenuous\n    cease-fire; the former president, Gen. Dr. Samuel Kanyon DOE, was killed on\n    9 September 1990 by Prince Y. JOHNSON\nPolitical parties and leaders:\n    National Democratic Party of Liberia (NDPL), Augustus CAINE, chairman;\n    Liberian Action Party (LAP), Emmanuel KOROMAH, chairman; Unity Party (UP),\n    Carlos SMITH, chairman; United People's Party (UPP), Gabriel Baccus\n    MATTHEWS, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held on 15 October 1985 (next to be held NA); results - Gen. Dr. Samuel\n    Kanyon DOE (NDPL) 50.9%, Jackson DOE (LAP) 26.4%, other 22.7%; note -\n    President Doe was killed by rebel forces on 9 September 1990\n  Senate:\n    last held on 15 October 1985 (next to be held NA); results - percent of vote\n    by party NA; seats - (26 total) NDPL 21, LAP 3, UP 1, UPP 1\n  House of Representatives:\n    last held on 15 October 1985 (next to be held NA); results - percent of vote\n    by party NA; seats - (64 total) NDPL 51, LAP 8, UP 3, UPP 2\nMember of:\n    ACP, AfDB, CCC, ECA, ECOWAS, FAO, G-77, IAEA, IBRD, ICAO, ICFTU, IDA, IFAD,\n    IFC, ILO, IMF, IMO, INMARSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, UN,\n    UNCTAD, UNESCO, UPU, WCL, WHO, WIPO, WMO\n\n:Liberia Government\n\nDiplomatic representation:\n    Ambassador Eugenia A. WORDSWORTH-STEVENSON; Chancery at 5201 16th Street NW,\n    Washington, DC 20011; telephone (202) 723-0437 through 0440; there is a\n    Liberian Consulate General in New York\n  US:\n    Ambassador Peter J. de VOS; Embassy at 111 United Nations Drive, Monrovia\n    (mailing address is P. O. Box 98, Monrovia, or APO AE 09813; telephone [231]\n    222991 through 222994; FAX (231) 223-710\nFlag:\n    11 equal horizontal stripes of red (top and bottom) alternating with white;\n    there is a white five-pointed star on a blue square in the upper hoist-side\n    corner; the design was based on the US flag\n\n:Liberia Economy\n\nOverview:\n    Civil war during 1990 destroyed much of Liberia's economy, especially the\n    infrastructure in and around Monrovia. Expatriate businessmen fled the\n    country, taking capital and expertise with them. Many will not return.\n    Richly endowed with water, mineral resources, forests, and a climate\n    favorable to agriculture, Liberia had been a producer and exporter of basic\n    products, while local manufacturing, mainly foreign owned, had been small in\n    scope. Political instability threatens prospects for economic reconstruction\n    and repatriation of some 750,000 Liberian refugees who fled to neighboring\n    countries. In 1991, the political impasse between the interim government and\n    the rebel leader Charles Taylor prevented restoration of normal economic\n    life.\nGDP:\n    exchange rate conversion - $988 million, per capita $400; real growth rate\n    1.5% (1988)\nInflation rate (consumer prices):\n    12% (1989)\nUnemployment rate:\n    43% urban (1988)\nBudget:\n    revenues $242.1 million; expenditures $435.4 million, including capital\n    expenditures of $29.5 million (1989)\nExports:\n    $505 million (f.o.b., 1989 est.)\n  commodities:\n    iron ore 61%, rubber 20%, timber 11%, coffee\n  partners:\n    US, EC, Netherlands\nImports:\n    $394 million (c.i.f., 1989 est.)\n  commodities:\n    rice, mineral fuels, chemicals, machinery, transportation equipment, other\n    foodstuffs\n  partners:\n    US, EC, Japan, China, Netherlands, ECOWAS\nExternal debt:\n    $1.6 billion (December 1990 est.)\nIndustrial production:\n    growth rate 1.5% in manufacturing (1987); accounts for 22% of GDP\nElectricity:\n    410,000 kW capacity; 750 million kWh produced, 275 kWh per capita (1991)\nIndustries:\n    rubber processing, food processing, construction materials, furniture, palm\n    oil processing, mining (iron ore, diamonds)\nAgriculture:\n    accounts for about 40% of GDP (including fishing and forestry); principal\n    products - rubber, timber, coffee, cocoa, rice, cassava, palm oil,\n    sugarcane, bananas, sheep, and goats; not self-sufficient in food, imports\n    25% of rice consumption\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $665 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $870 million; OPEC\n    bilateral aid (1979-89), $25 million; Communist countries (1970-89), $77\n    million\nCurrency:\n    Liberian dollar (plural - dollars); 1 Liberian dollar (L$) = 100 cents\nExchange rates:\n    Liberian dollars (L$) per US$1 - 1.00 (fixed rate since 1940); unofficial\n    parallel exchange rate of L$7 = US$1, January 1992\n\n:Liberia Economy\n\nFiscal year:\n    calendar year\n\n:Liberia Communications\n\nRailroads:\n    480 km total; 328 km 1.435-meter standard gauge, 152 km 1.067-meter narrow\n    gauge; all lines single track; rail systems owned and operated by foreign\n    steel and financial interests in conjunction with Liberian Government\nHighways:\n    10,087 km total; 603 km bituminous treated, 2,848 km all weather, 4,313 km\n    dry weather; there are also 2,323 km of private, laterite-surfaced roads\n    open to public use, owned by rubber and timber companies\nPorts:\n    Monrovia, Buchanan, Greenville, Harper (or Cape Palmas)\nMerchant marine:\n    1,564 ships (1,000 GRT or over) totaling 54,049,124 DWT/ 95,338,925 DWT;\n    includes 19 passenger, 1 short-sea passenger, 145 cargo, 51 refrigerated\n    cargo, 22 roll-on/roll-off, 62 vehicle carrier, 89 container, 4 barge\n    carrier, 460 petroleum tanker, 105 chemical, 57 combination ore/oil, 50\n    liquefied gas, 6 specialized tanker, 465 bulk, 1 multifunction large-load\n    carrier, 27 combination bulk; note - a flag of convenience registry; all\n    ships are foreign owned; the top 4 owning flags are US 18%, Japan 16%, Hong\n    Kong 10%, and Norway 9%\nCivil air:\n    1 major transport aircraft\nAirports:\n    66 total, 49 usable; 2 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    telephone and telegraph service via radio relay network; main center is\n    Monrovia; broadcast stations - 3 AM, 4 FM, 5 TV; 1 Atlantic Ocean INTELSAT\n    earth stations; most telecommunications services inoperable due to\n    insurgency movement\n\n:Liberia Defense Forces\n\nBranches:\n    Monrovia-based Armed Forces of Liberia (Army only) along with a police\n    force; rest of country controlled by the army of the National Patriotic\n    Front of Liberia (NPFL) insurgent group\nManpower availability:\n    males 15-49, 585,224; 312,420 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Libya Geography\n\nTotal area:\n    1,759,540 km2\nLand area:\n    1,759,540 km2\nComparative area:\n    slightly larger than Alaska\nLand boundaries:\n    4,383 km; Algeria 982 km, Chad 1,055 km, Egypt 1,150 km, Niger 354 km, Sudan\n    383 km, Tunisia 459 km\nCoastline:\n    1,770 km\nMaritime claims:\n  Territorial sea:\n    12 nm\n  Gulf of Sidra closing line:\n    32 degrees 30 minutes N\nDisputes:\n    claims and occupies the 100,000 km2 Aozou Strip in northern Chad; maritime\n    boundary dispute with Tunisia; Libya claims about 19,400 km2 in northern\n    Niger; Libya claims about 19,400 km2 in southeastern Algeria\nClimate:\n    Mediterranean along coast; dry, extreme desert interior\nTerrain:\n    mostly barren, flat to undulating plains, plateaus, depressions\nNatural resources:\n    crude oil, natural gas, gypsum\nLand use:\n    arable land 1%; permanent crops 0%; meadows and pastures 8%; forest and\n    woodland 0%; other 91%; includes irrigated NEGL%\nEnvironment:\n    hot, dry, dust-laden ghibli is a southern wind lasting one to four days in\n    spring and fall; desertification; sparse natural surface-water resources\nNote:\n    the Great Manmade River Project, the largest water development scheme in the\n    world, is being built to bring water from large aquifers under the Sahara to\n    coastal cities\n\n:Libya People\n\nPopulation:\n    4,484,795 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    36 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    60 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 71 years female (1992)\nTotal fertility rate:\n    4.9 children born/woman (1992)\nNationality:\n    noun - Libyan(s); adjective - Libyan\nEthnic divisions:\n    Berber and Arab 97%; some Greeks, Maltese, Italians, Egyptians, Pakistanis,\n    Turks, Indians, and Tunisians\nReligions:\n    Sunni Muslim 97%\nLanguages:\n    Arabic; Italian and English widely understood in major cities\nLiteracy:\n    64% (male 75%, female 50%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,000,000, includes about 280,000 resident foreigners; industry 31%,\n    services 27%, government 24%, agriculture 18%\nOrganized labor:\n    National Trade Unions' Federation, 275,000 members; General Union for Oil\n    and Petrochemicals; Pan-Africa Federation of Petroleum Energy and Allied\n    Workers\n\n:Libya Government\n\nLong-form name:\n    Socialist People's Libyan Arab Jamahiriya\nDigraph:\n    Tripoli Administration divisions *** 25 municipalities (baladiyah, singular\n    - baladiyat; Ajdabiya, Al `Aziziyah, Al Fatih, Al Jabal al Akhdar, Al\n    Jufrah, Al Khums, Al Kufrah, An Nuqat al Khams, Ash Shati', Awbari, Az\n    Zawiyah, Banghazi, Darnah, Ghadamis, Gharyan, Misratah, Murzuq, Sabha,\n    Sawfajjin, Surt, Tarabulus, Tarhunah, Tubruq, Yafran, Zlitan\nType:\n    Jamahiriya (a state of the masses); in theory, governed by the populace\n    through local councils; in fact, a military dictatorship\nCapital:\n    Tripoli Administration divisions\nAdministrative divisions:\n    25 municipalities (baladiyah, singular - baladiyat; Ajdabiya, Al 'Aziziyah,\n    Al Fatih, Al Jabal al Akhdar, Al Jufrah, Al Khums, Al Kufrah, An Nuqat al\n    Khams, Ash Shati', Awbari, Az Zawiyah, Banghazi, Darnah, Ghadamis, Gharyan,\n    Misratah, Murzuq Sabha, Sawfajjin, Surt, Tarabulus, Tarhunah, Tubruq,\n    Yafran, Zlitan\nIndependence:\n    24 December 1951 (from Italy)\nConstitution:\n    11 December 1969, amended 2 March 1977\nLegal system:\n    based on Italian civil law system and Islamic law; separate religious\n    courts; no constitutional provision for judicial review of legislative acts;\n    has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Revolution Day, 1 September (1969)\nExecutive branch:\n    revolutionary leader, chairman of the General People's Committee (premier),\n    General People's Committee (cabinet)\nLegislative branch:\n    unicameral General People's Congress\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Revolutionary Leader Col. Mu`ammar Abu Minyar al-QADHAFI (since 1 September\n    1969)\n  Head of Government:\n    Chairman of the General People's Committee (Premier) Abu Zayd `umar DURDA\n    (since 7 October 1990)\nPolitical parties and leaders:\n    none\nSuffrage:\n    universal and compulsory at age 18\nElections:\n    national elections are indirect through a hierarchy of peoples' committees\nOther political or pressure groups:\n    various Arab nationalist movements and the Arab Socialist Resurrection\n    (Ba'th) party with almost negligible memberships may be functioning\n    clandestinely, as well as some Islamic elements\nMember of:\n    ABEDA, AfDB, AFESD, AL, AMF, AMU, CAEU, CCC, ECA, FAO, G-77, IAEA, IBRD,\n    ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU,\n    LORCS, NAM, OAPEC, OAU, OIC, OPEC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO,\n    WIPO, WMO, WTO\n\n:Libya Government\n\nDiplomatic representation:\n    none\nFlag:\n    plain green; green is the traditional color of Islam (the state religion)\n\n:Libya Economy\n\nOverview:\n    The socialist-oriented economy depends primarily upon revenues from the oil\n    sector, which contributes practically all export earnings and about\n    one-third of GDP. Since 1980, however, the sharp drop in oil prices and the\n    resulting decline in export revenues have adversely affected economic\n    development. In 1988 per capita GDP was the highest in Africa at $5,410, but\n    GDP growth rates have slowed and fluctuate sharply in response to changes in\n    the world oil market. Import restrictions and inefficient resource\n    allocations have led to shortages of basic goods and foodstuffs, although\n    the reopening of the Libyan-Tunisian border in April 1988 and the\n    Libyan-Egyptian border in December 1989 have somewhat eased shortages.\n    Austerity budgets and a lack of trained technicians have undermined the\n    government's ability to implement a number of planned infrastructure\n    development projects. Windfall revenues from the hike in world oil prices in\n    late 1990 improved the foreign payments position and resulted in a current\n    account surplus for the first time in five years. The nonoil manufacturing\n    and construction sectors, which account for about 22% of GDP, have expanded\n    from processing mostly agricultural products to include petrochemicals,\n    iron, steel, and aluminum. Although agriculture accounts for about 5% of\n    GDP, it employs about 20% of the labor force. Climatic conditions and poor\n    soils severely limit farm output, and Libya imports about 75% of its food\n    requirements.\nGDP:\n    exchange rate conversion - $28.9 billion, per capita $6,800; real growth\n    rate 9% (1990 est.)\nInflation rate (consumer prices):\n    7% (1991 est.)\nUnemployment rate:\n    2% (1988 est.)\nBudget:\n    revenues $8.1 billion; expenditures $9.8 billion, including capital\n    expenditures of $3.1 billion (1989 est.)\nExports:\n    $11 billion (f.o.b., 1990 est.)\n  commodities:\n    petroleum, peanuts, hides\n  partners:\n    Italy, USSR, Germany, Spain, France, Belgium/Luxembourg, Turkey\nImports:\n    $7.6 billion (f.o.b., 1990 est.)\n  commodities:\n    machinery, transport equipment, food, manufactured goods\n  partners:\n    Italy, USSR, Germany, UK, Japan\nExternal debt:\n    $3.5 billion, excluding military debt (1991 est.)\nIndustrial production:\n    growth rate - 4%; accounts for 22% of GDP (not including oil) (1989)\nElectricity:\n    4,700,000 kW capacity; 13,700 million kWh produced, 3,100 kWh per capita\n    (1991)\nIndustries:\n    petroleum, food processing, textiles, handicrafts, cement\nAgriculture:\n    5% of GNP; cash crops - wheat, barley, olives, dates, citrus fruits,\n    peanuts; 75% of food is imported\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-87),\n    $242 million; no longer a recipient\n\n:Libya Economy\n\nCurrency:\n    Libyan dinar (plural - dinars); 1 Libyan dinar (LD) = 1,000 dirhams\nExchange rates:\n    Libyan dinars (LD) per US$1 - 0.2743 (March 1992), 0.2669 (1991), 0.2699\n    (1990), 0.2922 (1989), 0.2853 (1988), 0.2706 (1987)\nFiscal year:\n    calendar year\n\n:Libya Communications\n\nPipelines:\n    crude oil 4,383 km; natural gas 1,947 km; petroleum products 443 km\n    (includes liquid petroleum gas 256 km)\nPorts:\n    Tobruk, Tripoli, Banghazi, Misratah, Marsa al Burayqah, Ra's Lanuf\nMerchant marine:\n    30 ships (1,000 GRT or over) totaling 684,969 GRT/1,209,084 DWT; includes 3\n    short-sea passenger, 11 cargo, 4 roll-on/roll-off, 10 petroleum tanker, 1\n    chemical tanker, 1 liquefied gas\nCivil air:\n    59 major transport aircraft\nAirports:\n    133 total, 120 usable; 53 with permanent-surface runways; 9 with runways\n    over 3,659 m; 28 with runways 2,440-3,659 m; 46 with runways 1,220-2,439 m\nTelecommunications:\n    modern telecommunications system using radio relay, coaxial cable,\n    tropospheric scatter, and domestic satellite stations; 370,000 telephones;\n    broadcast stations - 17 AM, 3 FM, 12 TV; satellite earth stations - 1\n    Atlantic Ocean INTELSAT, 1 Indian Ocean INTELSAT, and 14 domestic; submarine\n    cables to France and Italy; radio relay to Tunisia and Egypt; tropospheric\n    scatter to Greece; planned ARABSAT and Intersputnik satellite stations\n\n:Libya Defense Forces\n\nBranches:\n    Armed Peoples of the Libyan Arab Jamahiriya (including Army, Navy, Air and\n    Air Defense Command), National Police\nManpower availability:\n    males 15-49, 1,056,686; 624,027 fit for military service; 50,916 reach\n    military age (17) annually; conscription now being implemented\nDefense expenditures:\n    exchange rate conversion - $NA, 11.1% of GDP (1987)\n\n:Liechtenstein Geography\n\nTotal area:\n    160 km2\nLand area:\n    160 km2\nComparative area:\n    about 0.9 times the size of Washington, DC\nLand boundaries:\n    78 km; Austria 37 km, Switzerland 41 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    continental; cold, cloudy winters with frequent snow or rain; cool to\n    moderately warm, cloudy, humid summers\nTerrain:\n    mostly mountainous (Alps) with Rhine Valley in western third\nNatural resources:\n    hydroelectric potential\nLand use:\n    arable land 25%; permanent crops 0%; meadows and pastures 38%; forest and\n    woodland 19%; other 18%\nEnvironment:\n    variety of microclimatic variations based on elevation\nNote:\n    landlocked\n\n:Liechtenstein People\n\nPopulation:\n    28,642 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    5 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.5 children born/woman (1992)\nNationality:\n    noun - Liechtensteiner(s); adjective - Liechtenstein\nEthnic divisions:\n    Alemannic 95%, Italian and other 5%\nReligions:\n    Roman Catholic 87.3%, Protestant 8.3%, unknown 1.6%, other 2.8% (1988)\nLanguages:\n    German (official), Alemannic dialect\nLiteracy:\n    100% (male 100%, female 100%) age 10 and over can read and write (1981)\nLabor force:\n    19,905, of which 11,933 are foreigners; 6,885 commute from Austria and\n    Switzerland to work each day; industry, trade, and building 53.2%, services\n    45%, agriculture, fishing, forestry, and horticulture 1.8% (1990)\nOrganized labor:\n    NA\n\n:Liechtenstein Government\n\nLong-form name:\n    Principality of Liechtenstein\nType:\n    hereditary constitutional monarchy\nCapital:\n    Vaduz\nAdministrative divisions:\n    11 communes (gemeinden, singular - gemeinde); Balzers, Eschen, Gamprin,\n    Mauren, Planken, Ruggell, Schaan, Schellenberg, Triesen, Triesenberg, Vaduz\nIndependence:\n    23 January 1719, Imperial Principality of Liechtenstein established\nConstitution:\n    5 October 1921\nLegal system:\n    local civil and penal codes; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Assumption Day, 15 August\nExecutive branch:\n    reigning prince, hereditary prince, head of government, deputy head of\n    government\nLegislative branch:\n    unicameral Diet (Landtag)\nJudicial branch:\n    Supreme Court (Oberster Gerichtshof) for criminal cases and Superior Court\n    (Obergericht) for civil cases\nLeaders:\n  Chief of State:\n    Prince Hans ADAM II (since 13 November 1989; assumed executive powers 26\n    August 1984); Heir Apparent Prince ALOIS von und zu Liechtenstein (born 11\n    June 1968)\n  Head of Government:\n    Hans BRUNHART (since 26 April 1978); Deputy Head of Government Dr. Herbert\n    WILLE (since 2 February 1986)\nPolitical parties and leaders:\n    Fatherland Union (VU), Dr. Otto HASLER; Progressive Citizens' Party (FBP),\n    Emanuel VOGT; Free Electoral List (FW)\nSuffrage:\n    universal at age 18\nElections:\n  Diet:\n    last held on 5 March 1989 (next to be held by March 1993); results - percent\n    of vote by party NA; seats - (25 total) VU 13, FBP 12\nMember of:\n    CE, CSCE, EBRD, IAEA, INTELSAT, INTERPOL, IOC, ITU, LORCS, UN, UNCTAD, UPU,\n    WIPO\nDiplomatic representation:\n    in routine diplomatic matters, Liechtenstein is represented in the US by the\n    Swiss Embassy\n  US:\n    the US has no diplomatic or consular mission in Liechtenstein, but the US\n    Consul General at Zurich (Switzerland) has consular accreditation at Vaduz\nFlag:\n    two equal horizontal bands of blue (top) and red with a gold crown on the\n    hoist side of the blue band\n\n:Liechtenstein Economy\n\nOverview:\n    The prosperous economy is based primarily on small-scale light industry and\n    tourism. Industry accounts for 53% of total employment, the service sector\n    45% (mostly based on tourism), and agriculture and forestry 2%. The sale of\n    postage stamps to collectors is estimated at $10 million annually. Low\n    business taxes (the maximum tax rate is 20%) and easy incorporation rules\n    have induced about 25,000 holding or so-called letter box companies to\n    establish nominal offices in Liechtenstein. Such companies, incorporated\n    solely for tax purposes, provide 30% of state revenues. The economy is tied\n    closely to that of Switzerland in a customs union, and incomes and living\n    standards parallel those of the more prosperous Swiss groups.\nGDP:\n    purchasing power equivalent - $630 million, per capita $22,300; real growth\n    rate NA% (1990 est.)\nInflation rate (consumer prices):\n    5.4% (1990)\nUnemployment rate:\n    1.5% (1990)\nBudget:\n    revenues $259 million; expenditures $292 million, including capital\n    expenditures of NA (1990)\nExports:\n    $1.6 billion\n  commodities:\n    small specialty machinery, dental products, stamps, hardware, pottery\n  partners:\n    EFTA countries 20.9% (Switzerland 15.4%), EC countries 42.7%, other 36.4%\n    (1990)\nImports:\n    $NA\n  commodities:\n    machinery, metal goods, textiles, foodstuffs, motor vehicles\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    23,000 kW capacity; 150 million kWh produced, 5,340 kWh per capita (1989)\nIndustries:\n    electronics, metal manufacturing, textiles, ceramics, pharmaceuticals, food\n    products, precision instruments, tourism\nAgriculture:\n    livestock, vegetables, corn, wheat, potatoes, grapes\nEconomic aid:\n    none\nCurrency:\n    Swiss franc, franken, or franco (plural - francs, franken, or franchi); 1\n    Swiss franc, franken, or franco (SwF) = 100 centimes, rappen, or centesimi\nExchange rates:\n    Swiss francs, franken, or franchi (SwF) per US$1 - 1.5079 (March 1992),\n    1.4340 (1991), 1.3892 (1990), 1.6359 (1989), 1.4633 (1988), 1.4912 (1987)\nFiscal year:\n    calendar year\n\n:Liechtenstein Communications\n\nRailroads:\n    18.5 km 1.435-meter standard gauge, electrified; owned, operated, and\n    included in statistics of Austrian Federal Railways\nHighways:\n    130.66 km main roads, 192.27 km byroads\nCivil air:\n    no transport aircraft\nAirports:\n    none\nTelecommunications:\n    limited, but sufficient automatic telephone system; 25,400 telephones;\n    linked to Swiss networks by cable and radio relay for international\n    telephone, radio, and TV services\n\n:Liechtenstein Defense Forces\n\nBranches:\n    Police Department\nNote:\n    defense is responsibility of Switzerland\n\n:Lithuania Geography\n\nTotal area:\n    65,200 km2\nLand area:\n    65,200 km2\nComparative area:\n    slightly larger than West Virginia\nLand boundaries:\n    1,273 km; Belarus 502 km, Latvia 453 km, Poland 91 km, Russia (Kaliningrad)\n    227 km\nCoastline:\n    108 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    NA meter depth\n  Exclusive fishing zone:\n    NA nm\n  Exclusive economic zone:\n    NA nm\n  Territorial sea:\n    NA nm\nDisputes:\n    dispute with Russia (Kaliningrad Oblast) over the position of the Neman\n    River border presently located on the Lithuanian bank and not in midriver as\n    by international standards\nClimate:\n    maritime; wet, moderate winters\nTerrain:\n    lowland, many scattered small lakes, fertile soil\nNatural resources:\n    peat\nLand use:\n    49.1% arable land; NA% permanent crops; 22.2% meadows and pastures; 16.3%\n    forest and woodland; 12.4% other; includes NA% irrigated\nEnvironment:\n    NA\n\n:Lithuania People\n\nPopulation:\n    3,788,542 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    4 migrants/1,000 population (1992)\nInfant mortality rate:\n    18 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 76 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Lithuanian(s); adjective - Lithuanian\nEthnic divisions:\n    Lithuanian 80.1%, Russian 8.6%, Poles 7.7%, Byelorussian 1.5%, other 2.1%\nReligions:\n    Catholic NA%, Lutheran NA%, unknown NA%, none NA%, other NA%\nLanguages:\n    Lithuanian (official), Polish NA%, Russian NA%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    1,836,000; industry and construction 42%, agriculture and forestry 18%,\n    other 40% (1990)\nOrganized labor:\n    Lithuanian Trade Union Association; Labor Federation of Lithuania; Union of\n    Workers\n\n:Lithuania Government\n\nLong-form name:\n    Republic of Lithuania\nType:\n    republic\nCapital:\n    Vilnius\nAdministrative divisions:\n    none - all rayons are under direct republic jurisdiction\nIndependence:\n    1918; annexed by the Soviet Union 3 August 1940; restored independence 11\n    March 1990; and regained indpendence from the USSR 6 September 1991\nConstitution:\n    NA; Constitutional Commission has drafted a new constitution that will be\n    sent to Parliament for ratification\nLegal system:\n    based on civil law system; no judicial review of legislative acts\nNational holiday:\n    Independence Day, 16 February; Defenders of Freedom Day, 13 January\nExecutive branch:\n    prime minister, Council of Ministers, Government,\nLegislative branch:\n    unicameral Supreme Council, Parliament\nJudicial branch:\n    Supreme Court; Court of Appeals; district and city courts; Procurator\n    General of Lithuania\nLeaders:\n  Chief of State:\n    Chairman, Supreme Council Vytautas LANDSBERGIS (since March 1990), Deputy\n    Chairmen Bronius KUZMICKAS (since March 1990), Ceslovas STANKEVICIUS (since\n    March 1990)\n  Head of Government:\n    Prime Minister Gediminas VAGNORIUS (since January 1991); Deputy Prime\n    Ministers Algis DOBROVOLSKAS (since January 1991), Vytantas PAKALNISKIS\n    (since January 1991), Zigmas VAISVILA (since January 1991)\nPolitical parties and leaders:\n    Christian Democratic Party, FNU KATILIUS, chairman; Democratic Labor Party\n    of Lithuania, Algirdas Mykolas BRAZAUSKAS, chairman; Lithuanian Democratic\n    Party, Sauluis PECELIUNAS, chairman; Lithuanian Green Party, Irena\n    IGNATAVICIENE, chairwoman; Lithuanian Humanism Party, Vytautas KAZLAUSKAS,\n    chairman; Lithuanian Independence Party, Virgilijus CEPAITIS, chairman;\n    Lithuanian Liberty League, Antanas TERLECKAS; Lithuanian Liberals Union,\n    Vytautus RADZVILAS, chairman; Lithuanian Nationalist Union, Rimantas\n    SMETONA, chairman; Lithuanian Social Democratic Party, Aloizas SAKALAS,\n    chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held March 1990 (elected by Parliament); results - LANDSBERGIS,\n    BRAZAUSKAS\n  Supreme Council:\n    last held 24 February 1990; results - Sajudis (nationalist movement won a\n    large majority) (90) 63%; seats - (141 total)\nOther political or pressure groups:\n    Sajudis; Lithuanian Future Forum; Farmers Union\nMember of:\n    CSCE, IAEA, ILO, NACC, UN, UNCTAD\n\n:Lithuania Government\n\nDiplomatic representation:\n    Ambassador Stasys LOZORAITIS, Jr.; Embassy at 2622 16th St. NW, Washington,\n    DC 20009; telephone (202) 234-5860, 2639\n  US:\n    Ambassador Darryl JOHNSON; Embassy at Mykolaicio putino 4, Vilnius; (mailing\n    address is APO AE 09862); telephone [7] (01-22) 628-049\nFlag:\n    yellow, green, and red horizontal stripes\n\n:Lithuania Economy\n\nOverview:\n    Lithuania is striving to become a small, independent, largely privatized\n    economy rather than a segment of a huge, centrally planned economy. Although\n    substantially above average in living standards and technology in the old\n    USSR, Lithuania historically lagged behind Latvia and Estonia in economic\n    development. It is ahead of its Baltic neighbors, however, in implementing\n    market reform. The country has no important natural resources aside from its\n    arable land and strategic location. Industry depends entirely on imported\n    materials that have come from the republics of the former USSR. Lithuania\n    benefits from its ice-free port at Klaipeda on the Baltic Sea and its rail\n    and highway hub at Vilnius, which provides land communication between\n    Eastern Europe and Russia, Latvia, Estonia, and Belarus. Industry produces a\n    small assortment of high-quality products, ranging from complex machine\n    tools to sophisticated consumer electronics. Thanks to nuclear power,\n    Lithuania is presently self-sufficient in electricity, exporting its surplus\n    to Latvia and Belarus; the nuclear facilities inherited from the USSR,\n    however, have come under world scrutiny as seriously deficient in safety\n    standards. Agriculture is efficient compared with most of the former Soviet\n    Union. Lithuania holds first place in per capita consumption of meat, second\n    place for eggs and potatoes, and fourth place for milk and dairy products.\n    Grain must be imported to support the meat and dairy industries. As to\n    economic reforms, Lithuania is pressing ahead with plans to privatize at\n    least 60% of state-owned property (industry, agriculture, and housing)\n    having already sold many small enterprises using a voucher system. Other\n    government priorities include stimulating foreign investment by protecting\n    the property rights of foreign firms and redirecting foreign trade away from\n    Eastern markets to the more competitive Western markets. For the moment,\n    Lithuania will remain highly dependent on Russia for energy, raw materials,\n    grains, and markets for its products.\nGDP:\n    purchasing power equivalent - $NA; per capita NA; real growth rate -13%\n    (1991)\nInflation rate (consumer prices):\n    200% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues 4.8 billion rubles; expenditures 4.7 billion rubles (1989 economic\n    survey); note - budget revenues and expenditures are not given for other\n    former Soviet republics; implied deficit from these figures does not have a\n    clear interpretation\nExports:\n    700 million rubles (f.o.b., 1990)\n  commodities:\n    electronics 18%, petroleum products 16%, food 10%, chemicals 6% (1989)\n  partners:\n    Russia 60%, Ukraine 15%, other former Soviet republics 20%, West 5%\nImports:\n    2.2 billion rubles (c.i.f., 1990)\n  commodities:\n    oil 24%, machinery 14%, chemicals 8%, grain NA%\n  partners:\n    NA\nExternal debt:\n    $650 million (1991 est.)\nIndustrial production:\n    growth rate -1.3% (1991)\nElectricity:\n    5,875,000 kW capacity; 25,500 million kWh produced, NA kWh per capita (1991)\n\n:Lithuania Economy\n\nIndustries:\n    employs 25% of the labor force; its shares in the total production of the\n    former USSR are metal-cutting machine tools 6.6%; electric motors 4.6%;\n    television sets 6.2%; refrigerators and freezers 5.4%; other production\n    includes petroleum refining, shipbuilding (small ships), furniture making,\n    textiles, food processing, fertilizers, agricultural machinery, optical\n    equipment, electronic components, computers, and amber\nAgriculture:\n    employs 29% of labor force; sugar, grain, potatoes, sugarbeets, vegetables,\n    meat, milk, dairy products, eggs, and fish; most developed are the livestock\n    and dairy branches - these depend on imported grain; Lithuania is a net\n    exporter of meat, milk, and eggs\nIllicit drugs:\n    transshipment point for illicit drugs from Central and Southwest Asia to\n    Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (1992), $10 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-86), $NA million;\n    Communist countries (1971-86), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency but planning early introduction\n    of ``litas''\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Lithuania Communications\n\nRailroads:\n    2,010 km (includes NA km electrified); does not include industrial lines\n    (1990)\nHighways:\n    44,200 km total (1990); 35,500 km hard surfaced, 8,700 km earth\nInland waterways:\n    600 km perennially navigable\nPipelines:\n    NA\nPorts:\n    maritime - Klaipeda; inland - Kaunas\nMerchant marine:\n    66 ships (1,000 GRT or over) totaling 268,854 GRT/315,690 DWT; includes 27\n    cargo, 24 timber carrier, 1 container, 3 railcar carrier, 11 combination\n    bulk\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    better developed than in most other former USSR republics; 22.4 telephones\n    per 100 persons; broadcast stations - 13 AM, 26 FM, 1 SW, 1 LW, 3 TV;\n    landlines or microwave to former USSR republics; leased connection to the\n    Moscow international switch for traffic with other countries; satellite\n    earth stations - (8 channels to Norway)\n\n:Lithuania Defense Forces\n\nBranches:\n    Ground Forces, Republic Security Forces (internal and border troops),\n    National Guard/Volunteers; Russian Forces (Ground, Navy, Air, and Air\n    Defense)\nManpower availability:\n    NA\n\n:Luxembourg Geography\n\nTotal area:\n    2,586 km\nLand area:\n    2,586 km\nComparative area:\n    slightly smaller than Rhode Island\nLand boundaries:\n    359 km; Belgium 148 km, France 73 km, Germany 138 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    modified continental with mild winters, cool summers\nTerrain:\n    mostly gently rolling uplands with broad, shallow valleys; uplands to\n    slightly mountainous in the north; steep slope down to Moselle floodplain in\n    the southeast\nNatural resources:\n    iron ore (no longer exploited)\nLand use:\n    arable land 24%; permanent crops 1%; meadows and pastures 20%; forest and\n    woodland 21%; other 34%\nEnvironment:\n    deforestation\nNote:\n    landlocked\n\n:Luxembourg People\n\nPopulation:\n    392,405 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    7 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 80 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Luxembourger(s); adjective - Luxembourg\nEthnic divisions:\n    Celtic base, with French and German blend; also guest and worker residents\n    from Portugal, Italy, and European countries\nReligions:\n    Roman Catholic 97%, Protestant and Jewish 3%\nLanguages:\n    Luxembourgisch, German, French; many also speak English\nLiteracy:\n    100% (male 100%, female 100%) age 15 and over can read and write (1980 est.)\nLabor force:\n    177,300; one-third of labor force is foreign workers, mostly from Portugal,\n    Italy, France, Belgium, and FRG; services 65%, industry 31.6%, agriculture\n    3.4% (1988)\nOrganized labor:\n    100,000 (est.) members of four confederated trade unions\n\n:Luxembourg Government\n\nLong-form name:\n    Grand Duchy of Luxembourg\nType:\n    constitutional monarchy\nCapital:\n    Luxembourg\nAdministrative divisions:\n    3 districts; Diekirch, Grevenmacher, Luxembourg\nIndependence:\n    1839\nConstitution:\n    17 October 1868, occasional revisions\nLegal system:\n    based on civil law system; accepts compulsory ICJ jurisdiction\nNational holiday:\n    National Day (public celebration of the Grand Duke's birthday), 23 June\n    (1921)\nExecutive branch:\n    grand duke, prime minister, vice prime minister, Council of Ministers\n    (cabinet)\nLegislative branch:\n    unicameral Chamber of Deputies (Chambre des Deputes); note - the Council of\n    State (Conseil d'Etat) is an advisory body whose views are considered by the\n    Chamber of Deputies\nJudicial branch:\n    Superior Court of Justice (Cour Superieure de Justice)\nLeaders:\n  Chief of State:\n    Grand Duke JEAN (since 12 November 1964); Heir Apparent Prince HENRI (son of\n    Grand Duke Jean, born 16 April 1955)\n  Head of Government:\n    Prime Minister Jacques SANTER (since 21 July 1984); Vice Prime Minister\n    Jacques F. POOS (since 21 July 1984)\nPolitical parties and leaders:\n    Christian Social Party (CSV), Jacques SANTER; Socialist Workers Party\n    (LSAP), Jacques POOS; Liberal (DP), Colette FLESCH; Communist (KPL), Andre\n    HOFFMANN; Green Alternative (GAP), Jean HUSS\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  Chamber of Deputies:\n    last held on 18 June 1989 (next to be held by June 1994); results - CSV\n    31.7%, LSAP 27.2%, DP 16.2%, Greens 8.4%, PAC 7.3%, KPL 5.1%, other 4.1%;\n    seats - (60 total) CSV 22, LSAP 18, DP 11, Greens 4, PAC 4, KPL 1\nOther political or pressure groups:\n    group of steel industries representing iron and steel industry, Centrale\n    Paysanne representing agricultural producers; Christian and Socialist labor\n    unions; Federation of Industrialists; Artisans and Shopkeepers Federation\nMember of:\n    ACCT, Australia Group, Benelux, CCC, CE, COCOM, CSCE, EBRD, EC, ECE, EIB,\n    EMS, FAO, GATT, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF,\n    IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LORCS, MTCR, NACC, NATO, NEA, NSG,\n    OECD, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WEU, WHO, WIPO, WMO, ZC\nDiplomatic representation:\n    Ambassador Alphonse BERNS; Chancery at 2200 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 265-4171; there are Luxembourg\n    Consulates General in New York and San Francisco\n\n:Luxembourg Government\n\n  US:\n    Ambassador Edward M. ROWELL; Embassy at 22 Boulevard Emmanuel-Servais, 2535\n    Luxembourg City; PSC 11 (mailing address is APO AE 09132-5380); telephone\n    [352] 460123; FAX [352] 461401\nFlag:\n    three equal horizontal bands of red (top), white, and light blue; similar to\n    the flag of the Netherlands, which uses a darker blue and is shorter; design\n    was based on the flag of France\n\n:Luxembourg Economy\n\nOverview:\n    The stable economy features moderate growth, low inflation, and negligible\n    unemployment. Agriculture is based on small but highly productive\n    family-owned farms. The industrial sector, until recently dominated by\n    steel, has become increasingly more diversified, particularly toward\n    high-technology firms. During the past decade, growth in the financial\n    sector has more than compensated for the decline in steel. Services,\n    especially banking, account for a growing proportion of the economy.\n    Luxembourg participates in an economic union with Belgium on trade and most\n    financial matters and is also closely connected economically to the\n    Netherlands.\nGDP:\n    purchasing power equivalent - $7.83 billion, per capita $20,200; real growth\n    rate 2.5% (1991 est.)\nInflation rate (consumer prices):\n    3.7% (1990)\nUnemployment rate:\n    1.3% (1990)\nBudget:\n    revenues $2.5 billion; expenditures $2.3 billion, including capital\n    expenditures of NA (1988)\nExports:\n    $6.3 billion (f.o.b., 1990)\n  commodities:\n    finished steel products, chemicals, rubber products, glass, aluminum, other\n    industrial products\n  partners:\n    EC 75%, US 5%\nImports:\n    $7.5 billion (c.i.f., 1990)\n  commodities:\n    minerals, metals, foodstuffs, quality consumer goods\n  partners:\n    Belgium 37%, FRG 31%, France 12%, US 2%\nExternal debt:\n    $131.6 million (1989 est.)\nIndustrial production:\n    growth rate - 0.5% (1990); accounts for 25% of GDP\nElectricity:\n    1,500,000 kW capacity; 1,163 million kWh produced, 3,170 kWh per capita\n    (1991)\nIndustries:\n    banking, iron and steel, food processing, chemicals, metal products,\n    engineering, tires, glass, aluminum\nAgriculture:\n    accounts for less than 3% of GDP (including forestry); principal products -\n    barley, oats, potatoes, wheat, fruits, wine grapes; cattle raising\n    widespread\nEconomic aid:\n    none\nCurrency:\n    Luxembourg franc (plural - francs); 1 Luxembourg franc (LuxF) = 100 centimes\nExchange rates:\n    Luxembourg francs (LuxF) per US$1 - 32.462 (January 1992), 34.148 (1991),\n    33.418 (1990), 39.404 (1989), 36.768 (1988), 37.334 (1987); note - the\n    Luxembourg franc is at par with the Belgian franc, which circulates freely\n    in Luxembourg\nFiscal year:\n    calendar year\n\n:Luxembourg Communications\n\nRailroads:\n    Luxembourg National Railways (CFL) operates 270 km 1.435-meter standard\n    gauge; 162 km double track; 162 km electrified\nHighways:\n    5,108 km total; 4,995 km paved, 57 km gravel, 56 km earth; about 80 km\n    limited access divided highway\nInland waterways:\n    37 km; Moselle River\nPipelines:\n    petroleum products 48 km\nPorts:\n    Mertert (river port)\nMerchant marine:\n    49 ships (1,000 GRT or over) totaling 1,592,985 GRT/2,642,249 DWT; includes\n    3 cargo, 5 container, 5 roll-on/roll-off, 6 petroleum tanker, 4 chemical\n    tanker, 3 combination ore/oil, 8 liquefied gas, 1 passenger, 8 bulk, 6\n    combination bulk\nCivil air:\n    13 major transport aircraft\nAirports:\n    2 total, 2 usable; 1 with permanent-surface runways; 1 with runways over\n    3,659 m; 1 with runways less than 1,220 m\nTelecommunications:\n    highly developed, completely automated and efficient system, mainly buried\n    cables; 230,000 telephones; broadcast stations - 2 AM, 3 FM, 3 TV; 3\n    channels leased on TAT-6 coaxial submarine cable; 1 direct-broadcast\n    satellite earth station; nationwide mobile phone system\n\n:Luxembourg Defense Forces\n\nBranches:\n    Army, National Gendarmerie\nManpower availability:\n    males 15-49, 100,994; 83,957 fit for military service; 2,320 reach military\n    age (19) annually\nDefense expenditures:\n    exchange rate conversion - $100 million, 1.4% of GDP (1991)\n\n:Macau Geography\n\nTotal area:\n    16 km2\nLand area:\n    16 km2\nComparative area:\n    about 0.1 times the size of Washington, DC\nLand boundaries:\n    0.34 km; China 0.34 km\nCoastline:\n    40 km\nMaritime claims:\n    not known\nDisputes:\n    none\nClimate:\n    subtropical; marine with cool winters, warm summers\nTerrain:\n    generally flat\nNatural resources:\n    negligible\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    essentially urban; one causeway and one bridge connect the two islands to\n    the peninsula on mainland\nNote:\n    27 km west-southwest of Hong Kong on the southeast coast of China\n\n:Macau People\n\nPopulation:\n    473,333 (July 1992), growth rate 1.7% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    4 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    78 years male, 84 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Macanese (singular and plural); adjective - Macau\nEthnic divisions:\n    Chinese 95%, Portuguese 3%, other 2%\nReligions:\n    Buddhist 45%, Roman Catholic 7%, Protestant 1%, none 45.8%, other 1.2%\n    (1981)\nLanguages:\n    Portuguese (official); Cantonese is the language of commerce\nLiteracy:\n    90% (male 93%, female 86%) age 15 and over can read and write (1981)\nLabor force:\n    180,000 (1986)\nOrganized labor:\n    none\n\n:Macau Government\n\nLong-form name:\n    none\nType:\n    overseas territory of Portugal; scheduled to revert to China in 1999\nCapital:\n    Macau\nAdministrative divisions:\n    2 districts (concelhos, singular - concelho); Ilhas, Macau\nIndependence:\n    none (territory of Portugal); Portugal signed an agreement with China on 13\n    April 1987 to return Macau to China on 20 December 1999; in the joint\n    declaration, China promises to respect Macau's existing social and economic\n    systems and lifestyle for 50 years after transition\nConstitution:\n    17 February 1976, Organic Law of Macau; basic law drafted primarily by\n    Beijing awaiting final approval\nLegal system:\n    Portuguese civil law system\nNational holiday:\n    Day of Portugal, 10 June\nExecutive branch:\n    President of Portugal, governor, Consultative Council (cabinet)\nLegislative branch:\n    Legislative Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President (of Portugal) Mario Alberto SOARES (since 9 March 1986)\n  Head of Government:\n    Governor Gen. Vasco Joachim Rocha VIEIRA (since 20 March 1991)\nPolitical parties and leaders:\n    Association to Defend the Interests of Macau; Macau Democratic Center; Group\n    to Study the Development of Macau; Macau Independent Group\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Assembly:\n    last held on 10 March 1991; results - percent of vote by party NA; seats -\n    (23 total; 8 elected by universal suffrage, 8 by indirect suffrage, and 7\n    appointed by the governor) number of seats by party NA\nOther political or pressure groups:\n    wealthy Macanese and Chinese representing local interests, wealthy\n    pro-Communist merchants representing China's interests; in January 1967 the\n    Macau Government acceded to Chinese demands that gave China veto power over\n    administration\nMember of:\n    IMO (associate), WTO (associate)\nDiplomatic representation:\n    as Chinese territory under Portuguese administration, Macanese interests in\n    the US are represented by Portugal\n  US:\n    the US has no offices in Macau, and US interests are monitored by the US\n    Consulate General in Hong Kong\nFlag:\n    the flag of Portugal is used\n\n:Macau Economy\n\nOverview:\n    The economy is based largely on tourism (including gambling) and textile and\n    fireworks manufacturing. Efforts to diversify have spawned other small\n    industries - toys, artificial flowers, and electronics. The tourist sector\n    has accounted for roughly 25% of GDP, and the clothing industry has provided\n    about two-thirds of export earnings; the gambling industry represented 36%\n    of GDP in 1991. Macau depends on China for most of its food, fresh water,\n    and energy imports. Japan and Hong Kong are the main suppliers of raw\n    materials and capital goods.\nGDP:\n    exchange rate conversion - $3.1 billion, per capita $6,900; real growth rate\n    6% (1991 est.)\nInflation rate (consumer prices):\n    8.8% (1990 est.)\nUnemployment rate:\n    2% (1989 est.)\nBudget:\n    revenues $305 million; expenditures $298 million, including capital\n    expenditures of $NA (1989)\nExports:\n    $1.5 billion (1990 est.)\n  commodities:\n    textiles, clothing, toys\n  partners:\n    US 33%, Hong Kong 15%, FRG 12%, France 10% (1987)\nImports:\n    $1.8 billion (1990 est.)\n  commodities:\n    raw materials, foodstuffs, capital goods\n  partners:\n    Hong Kong 39%, China 21%, Japan 10% (1987)\nExternal debt:\n    $91 million (1985)\nIndustrial production:\n    NA\nElectricity:\n    220,000 kW capacity; 520 million kWh produced, 1,165 kWh per capita (1991)\nIndustries:\n    clothing, textiles, toys, plastic products, furniture, tourism\nAgriculture:\n    rice, vegetables; food shortages - rice, vegetables, meat; depends mostly on\n    imports for food requirements\nEconomic aid:\n    none\nCurrency:\n    pataca (plural - patacas); 1 pataca (P) = 100 avos\nExchange rates:\n    patacas (P) per US$1 - 8.034 (1991), 8.024 (1990), 8.030 (1989), 8.044\n    (1988), 7.993 (1987); note - linked to the Hong Kong dollar at the rate of\n    1.03 patacas per Hong Kong dollar\nFiscal year:\n    calendar year\n\n:Macau Communications\n\nHighways:\n    42 km paved\nPorts:\n    Macau\nCivil air:\n    no major transport aircraft\nAirports:\n    none useable, 1 under construction; 1 seaplane station\nTelecommunications:\n    fairly modern communication facilities maintained for domestic and\n    international services; 52,000 telephones; broadcast stations - 4 AM, 3 FM,\n    no TV; 75,000 radio receivers (est.); international high-frequency radio\n    communication facility; access to international communications carriers\n    provided via Hong Kong and China; 1 Indian Ocean INTELSAT earth station\n\n:Macau Defense Forces\n\nManpower availability:\n    males 15-49, 135,923; 76,414 fit for military service\nNote:\n    defense is responsibility of Portugal\n\n:Macedonia Header\n\nNote:\n    Macedonia has proclaimed independent statehood but has not been formally\n    recognized as a state by the United States.\n\n:Macedonia Geography\n\nTotal area:\n    25,333 km2\nLand area:\n    24,856 km2\nComparative area:\n    slightly larger than Vermont\nLand boundaries:\n    748 km; Albania 151 km, Bulgaria 148 km, Greece 228 km, Serbia and\n    Montenegro 221 km\nCoastline:\n    none - landlocked\nDisputes:\n    Greece claims republic's name implies territorial claims against Aegean\n    Macedonia\nClimate:\n    hot, dry summers and autumns and relatively cold winters with heavy snowfall\nTerrain:\n    territory covered with deep basins and valleys; there are three large lakes,\n    each divided by a frontier line\nNatural resources:\n    chromium, lead, zinc, manganese, tungsten, nickel, low-grade iron ore,\n    asbestos, sulphur, timber\nLand use:\n    arable land 5%; permanent crops 5%; meadows and pastures 20%; forest and\n    woodland 30%; other 40%; includes irrigated NA%\nEnvironment:\n    Macedonia suffers from high seismic hazard; air pollution from metallurgical\n    plants\nNote:\n    major transportation corridor from Western and Central Europe to Aegean Sea\n\n:Macedonia People\n\nPopulation:\n    2,174,000 (July 1992), growth rate NA% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 75 years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nEthnic divisions:\n    Macedonian 67%, Albanian 20%, Turkish 4%, Serb 2%, other 7%\nReligions:\n    Eastern Orthodox 59%, Muslim 26%, Catholic 4%, Protestant 1%, unknown 10%\nLanguages:\n    Macedonian 70%, Albanian 21%, Turkish 3%, Serbo-Croatian 3%, other 3%\nLiteracy:\n    89.1% (male 94.2%, female 83.8%) age 10 and over can read and write (1992\n    est.)\nLabor force:\n    507,324; agriculture 8%, manufacturing and mining 40% (1990)\nOrganized labor:\n    NA\n\n:Macedonia Government\n\nLong-form name:\n    Republic of Macedonia\nType:\n    emerging democracy\nCapital:\n    Skopje\nAdministrative divisions:\n    NA\nIndependence:\n    20 November 1991 from Yugoslavia\nConstitution:\n    adopted 17 November 1991, effective 20 November 1991\nLegal system:\n    based on civil law system; judicial review of legislative acts\nNational holiday:\n    NA\nExecutive branch:\n    presidency, Council of Ministers, prime minister\nLegislative branch:\n    unicameral Assembly\nJudicial branch:\n    Constitutional Court, Judicial Court of the Republic\nLeaders:\n  Chief of State:\n    President Kiro GLIGOROV (since 27 January 1991)\n  Head of Government:\n    Prime Minister Nikola KLJUSEV (since March 1991), Deputy Prime Ministers\n    Jovan ANDONOV (since March 1991), Blaze RISTOVSKI (since March 1991), and\n    Bezir ZUTA (since March 1991)\nPolitical parties and leaders:\n    Social Democratic Alliance (SDA; former Communist Party), Branko\n    CRVENKOVSKI, chairman; Party of Democratic Prosperity, (PDP), Nevzat HALILI,\n    chairman; National Democratic Party, Iliaz HALIMI, chairman; Alliance of\n    Reform Forces of Macedonia (MARF), Sojan ANDOV, chairman; Socialist Party,\n    chairman NA; Internal Macedonian Revolutionary Organization - Democratic\n    Party for Macedonian National Unity (IMRO-DPMNU), Ljupco GEORGIEVSKI,\n    chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 27 January 1991 (next to be held NA); results - Kiro GLIGOREV won\n  Assembly:\n    last held 11 November 1990 (next to be held NA);results - percent of vote by\n    party NA; seats - (120 total) IMRO-DPMNU 37, SDA 31, PDP 25, MARF 17, Party\n    of Yugoslavs 1, Socialists 5, others 4\nCommunists:\n    NA\nOther political or pressure groups:\n    Movement for All Macedonian Action (MAAK), IMRU-Democratic Party, League for\n    Democracy, Albanian Democratic Union-Liberal Party\nMember of:\n    none\nDiplomatic representation:\n    has not been formerly recognized by the US\nFlag:\n    NA\n\n:Macedonia Economy\n\nOverview:\n    Macedonia, although the poorest among the six republics of a disintegrated\n    Yugoslav federation, can meet basic food and energy needs through its own\n    agricultural and coal resources. As a breakaway republic, however, it will\n    move down toward a bare subsistence level of life unless economic ties are\n    reforged or enlarged with its neighbors Serbia, Albania, Greece, and\n    Bulgaria. The economy depends on outside sources for all of its oil and gas\n    and its modern machinery and parts. Continued political turmoil, both\n    internally and in the region as a whole, prevents any swift readjustments of\n    trade patterns and economic rules of the game. Inflation in early 1992 was\n    out of control, the result of fracturing trade links, the decline in\n    economic activity, and general uncertainties about the future status of the\n    country; prices rose 38% in March 1992 alone. Macedonia's geographical\n    isolation, technological backwardness, and political instability place it\n    far down the list of countries of interest to Western investors. Recognition\n    of Macedonia by the EC and an internal commitment to economic reform would\n    help to encourage foreign investment over the long run.\nGDP:\n    $7.1 billion, per capita $3,110; real growth rate -18% (1991 est.)\nUnemployment rate:\n    20% (1991 est.)\nExports:\n    $578 million (1990)\n  commodities:\n    manufactured goods 40%, machinery and transport equipment 14%, miscellaneous\n    manufactured articles 23%, raw materials 7.6%, food (rice) and live animals\n    5.7%, beverages and tobacco 4.5%, chemicals 4.7%\n  partners:\n    principally Serbia and the other former Yugoslav republics, Germany, Greece,\n    Albania\nImports:\n    $1,112 million (1990)\n  commodities:\n    fuels and lubricants 19%, manufactured goods 18%, machinery and transport\n    equipment 15%, food and live animals 14%, chemicals 11.4%, raw materials\n    10%, miscellaneous manufactured articles 8.0%, beverages and tobacco 3.5%\n  partners:\n    other former Yugoslav republics, Greece, Albania, Germany, Bulgaria\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate -18% (1991 est.)\nElectricity:\n    1,600,000 kw capacity; 6,300 million kWh produced, 3,103 kWh per capita\n    (1991)\nIndustries:\n    low levels of technology predominate, such as, oil refining by distillation\n    only; produces basic fuels; mining and manufacturing processes result in the\n    extraction and production of coal as well as metallic chromium, lead, zinc,\n    and ferronickel; light industry produces basic textiles, wood products, and\n    tobacco\nAgriculture:\n    provides 12% of Macedonia's GDP and meets the basic need for food; principal\n    crops are rice, tobacco, wheat, corn, and millet; also grown are cotton,\n    sesame, mulberry leaves, citrus fruit, and vegetables; Macedonia is one of\n    the seven legal cultivators of the opium poppy for the world pharmaceutical\n    industry, including some exports to the US; agricultural production is\n    highly labor intensive\n\n:Macedonia Economy\n\nIllicit drugs:\n    NA\nEconomic aid:\n    $NA\nCurrency:\n    denar (plural - denars); 1 denar (NA) = 100 NA\nExchange rates:\n    denar (NA) per US$1 - 240 (January 1991)\nFiscal year:\n    calendar year\n\n:Macedonia Communications\n\nRailroads:\n    NA\nHighways:\n    10,591 km total (1991); 5,091 km paved, 1,404 km gravel, 4,096 km earth\nInland waterways:\n    NA km\nPipelines:\n    none\nPorts:\n    none - landlocked\nAirports:\n    2 main\nTelecommunications:\n    125,000 telephones; broadcast stations - 6 AM, 2 FM, 5 (2 relays) TV;\n    370,000 radios, 325,000 TV; satellite communications ground stations - none\n\n:Macedonia Defense Forces\n\nBranches:\n    Army, Air and Air Defense Force\nManpower availability:\n    males 15-49, 590,613; NA fit for military service; 22,913 reach military age\n    (18) annually\nDefense expenditures:\n    exchange rate conversion - 7.0 billion dinars (est.), NA% of GDP (1992);\n    note - conversion of the military budget into US dollars using the current\n    exchange rate could produce misleading results\n\n:Madagascar Geography\n\nTotal area:\n    587,040 km2\nLand area:\n    581,540 km2\nComparative area:\n    slightly less than twice the size of Arizona\nLand boundaries:\n    none\nCoastline:\n    4,828 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims Bassas da India, Europa Island, Glorioso Islands, Juan de Nova\n    Island, and Tromelin Island (all administered by France)\nClimate:\n    tropical along coast, temperate inland, arid in south\nTerrain:\n    narrow coastal plain, high plateau and mountains in center\nNatural resources:\n    graphite, chromite, coal, bauxite, salt, quartz, tar sands, semiprecious\n    stones, mica, fish\nLand use:\n    arable land 4%; permanent crops 1%; meadows and pastures 58%; forest and\n    woodland 26%; other 11%; includes irrigated 2%\nEnvironment:\n    subject to periodic cyclones; deforestation; overgrazing; soil erosion;\n    desertification\nNote:\n    world's fourth-largest island; strategic location along Mozambique Channel\n\n:Madagascar People\n\nPopulation:\n    12,596,263 (July 1992), growth rate 3.2% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    93 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    51 years male, 55 years female (1992)\nTotal fertility rate:\n    6.8 children born/woman (1992)\nNationality:\n    noun - Malagasy (singular and plural); adjective - Malagasy\nEthnic divisions:\n    basic split between highlanders of predominantly Malayo-Indonesian origin\n    (Merina and related Betsileo) on the one hand and coastal tribes,\n    collectively termed the Cotiers, with mixed African, Malayo-Indonesian, and\n    Arab ancestry (Betsimisaraka, Tsimihety, Antaisaka, Sakalava), on the other;\n    there are also small French, Indian, Creole, and Comoran communities; no\n    current, accurate assessment of tribal numbers is available\nReligions:\n    indigenous beliefs 52%, Christian about 41%, Muslim 7%\nLanguages:\n    French and Malagasy (official)\nLiteracy:\n    80% (male 88%, female 73%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,900,000; 90% nonsalaried family workers engaged in subsistence\n    agriculture; 175,000 wage earners - agriculture 26%, domestic service 17%,\n    industry 15%, commerce 14%, construction 11%, services 9%, transportation\n    6%, other 2%; 51% of population of working age (1985)\nOrganized labor:\n    4% of labor force\n\n:Madagascar Government\n\nLong-form name:\n    Democratic Republic of Madagascar\nType:\n    republic\nCapital:\n    Antananarivo\nAdministrative divisions:\n    6 provinces (plural - NA, singular - faritanin'); Antananarivo, Antsiranana,\n    Fianarantsoa, Mahajanga, Toamasina, Toliary\nIndependence:\n    26 June 1960 (from France; formerly Malagasy Republic)\nConstitution:\n    21 December 1975; note - a new constitution is to be in place before 1993\nLegal system:\n    based on French civil law system and traditional Malagasy law; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 26 June (1960)\nExecutive branch:\n    president, prime minister, Council of Ministers\nLegislative branch:\n    unicameral Popular National Assembly (Assemblee Nationale Populaire); note -\n    the National Assembly has suspended its operations during 1992 in\n    preparation for new legislative and presidential elections. In its place, an\n    interim High Authority of State and a Social and Economic Recovery Council\n    have been established\nJudicial branch:\n    Supreme Court (Cour Supreme), High Constitutional Court (Haute Cour\n    Constitutionnelle)\nLeaders:\n  Chief of State:\n    President Adm. Didier RATSIRAKA (since 15 June 1975)\n  Head of Government:\n    Prime Minister Guy RASANAMAZY (since 8 August 1991)\nPolitical parties and leaders:\n    some 30 political parties now exist in Madagascar, the most important of\n    which are the Advance Guard of the Malagasy Revolution (AREMA), Didier\n    RATSIRAKA; Congress Party for Malagasy Independence (AKFM),\n    RAKOTOVAO-ANDRIATIANA; Congress Party for Malagasy Independence-Revival\n    (AKFM-R), Pastor Richard ANDRIAMANJATO; Movement for National Unity (VONJY),\n    Dr. Marojama RAZANABAHINY; Malagasy Christian Democratic Union (UDECMA),\n    Norbert ANDRIAMORASATA; Militants for the Establishment of a Proletarian\n    Regime (MFM), Manandafy RAKOTONIRINA; National Movement for the Independence\n    of Madagascar (MONIMA), Monja JAONA; National Union for the Defense of\n    Democracy (UNDD), Albert ZAFY\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held on 12 March 1989 (next to be held NA 1992); results - Didier\n    RATSIRAKA (AREMA) 62%, Manandafy RAKOTONIRINA (MFM/MFT) 20%, Dr. Jerome\n    Marojama RAZANABAHINY (VONJY) 15%, Monja JAONA (MONIMA) 3%\n  Popular National Assembly:\n    last held on 28 May 1989 (next to be held 1992); results - AREMA 88.2%, MFM\n    5.1%, AKFM 3.7%, VONJY 2.2%, other 0.8%; seats - (137 total) AREMA 120, MFM\n    7, AKFM 5, VONJY 4, MONIMA 1\n\n:Madagascar Government\n\nMember of:\n    ACCT, ACP, AfDB, CCC, ECA, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICC, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM,\n    OAU, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Pierrot Jocelyn RAJAONARIVELO; Chancery at 2374 Massachusetts\n    Avenue NW, Washington, DC 20008; telephone (202) 265-5525 or 5526; there is\n    a Malagasy Consulate General in New York\n  US:\n    Ambassador Howard K. WALKER; Embassy at 14 and 16 Rue Rainitovo,\n    Antsahavola, Antananarivo (mailing address is B. P. 620, Antananarivo);\n    telephone [261] (2) 212-57, 209-56, 200-89, 207-18\nFlag:\n    two equal horizontal bands of red (top) and green with a vertical white band\n    of the same width on hoist side\n\n:Madagascar Economy\n\nOverview:\n    Madagascar is one of the poorest countries in the world. Agriculture,\n    including fishing and forestry, is the mainstay of the economy, accounting\n    for over 40% of GDP, employing about 80% of the labor force, and\n    contributing to more than 70% of total export earnings. Industry is largely\n    confined to the processing of agricultural products and textile\n    manufacturing; in 1990 it accounted for only 16% of GDP and employed almost\n    5% of the labor force. In 1986 the government introduced a five-year\n    development plan that stressed self-sufficiency in food (mainly rice) by\n    1990, increased production for exports, and reduced energy imports. After\n    mid-1991, however, output dropped sharply because of protracted\n    antigovernment strikes and demonstrations for political reform.\nGDP:\n    exchange rate conversion - $2.4 billion, per capita $200; real growth rate\n    -3.8% (1991 est.)\nInflation rate (consumer prices):\n    10% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $390 million; expenditures $525 million, including capital\n    expenditures of $240 million (1990 est.)\nExports:\n    $290 million (f.o.b., 1990 est.)\n  commodities:\n    coffee 45%, vanilla 15%, cloves 11%, sugar, petroleum products\n  partners:\n    France, Japan, Italy, Germany, US\nImports:\n    $436 million (f.o.b., 1990 est.)\n  commodities:\n    intermediate manufactures 30%, capital goods 28%, petroleum 15%, consumer\n    goods 14%, food 13%\n  partners:\n    France, Germany, UK, other EC, US\nExternal debt:\n    $4.4 billion (1991)\nIndustrial production:\n    growth rate 5.2% (1990 est.); accounts for 16% of GDP\nElectricity:\n    125,000 kW capacity; 450 million kWh produced, 35 kWh per capita (1991)\nIndustries:\n    agricultural processing (meat canneries, soap factories, breweries,\n    tanneries, sugar refining plants), light consumer goods industries\n    (textiles, glassware), cement, automobile assembly plant, paper, petroleum\nAgriculture:\n    accounts for 40% of GDP; cash crops - coffee, vanilla, sugarcane, cloves,\n    cocoa; food crops - rice, cassava, beans, bananas, peanuts; cattle raising\n    widespread; almost self-sufficient in rice\nIllicit drugs:\n    illicit producer of cannabis (cultivated and wild varieties) used mostly for\n    domestic consumption\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $136 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3,125 million;\n    Communist countries (1970-89), $491 million\nCurrency:\n    Malagasy franc (plural - francs); 1 Malagasy franc (FMG) = 100 centimes\n\n:Madagascar Economy\n\nExchange rates:\n    Malagasy francs (FMG) per US$1 - 1,943.4 (March 1992), 1,835.4 (1991),\n    1,454.6 (December 1990), 1,603.4 (1989) , 1,407.1 (1988), 1,069.2 (1987)\nFiscal year:\n    calendar year\n\n:Madagascar Communications\n\nRailroads:\n    1,020 km 1.000-meter gauge\nHighways:\n    40,000 km total; 4,694 km paved, 811 km crushed stone, gravel, or stabilized\n    soil, 34,495 km improved and unimproved earth (est.)\nInland waterways:\n    of local importance only; isolated streams and small portions of Canal des\n    Pangalanes\nPorts:\n    Toamasina, Antsiranana, Mahajanga, Toliara\nMerchant marine:\n    14 ships (1,000 GRT or over) totaling 59,255 GRT/81,509 DWT; includes 9\n    cargo, 2 roll-on/roll-off cargo, 1 petroleum tanker, 1 chemical tanker, 1\n    liquefied gas\nCivil air:\n    8 major transport aircraft\nAirports:\n    148 total, 103 usable; 30 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 34 with runways 1,220-2,439 m\nTelecommunications:\n    above average system includes open-wire lines, coaxial cables, radio relay,\n    and troposcatter links; submarine cable to Bahrain; satellite earth stations\n    - 1 Indian Ocean INTELSAT and broadcast stations - 17 AM, 3 FM, 1 (36\n    repeaters) TV\n\n:Madagascar Defense Forces\n\nBranches:\n    Popular Armed Forces (including Intervention Forces, Development Forces,\n    Aeronaval Forces - including Navy and Air Force), Gendarmerie, Presidential\n    Security Regiment\nManpower availability:\n    males 15-49, 2,730,713; 1,625,335 fit for military service; 114,687 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $37 million, 2.2% of GDP (1989 est.)\n\n:Malawi Geography\n\nTotal area:\n    118,480 km2\nLand area:\n    94,080 km2\nComparative area:\n    slightly larger than Pennsylvania\nLand boundaries:\n    2,881 km; Mozambique 1,569 km, Tanzania 475 km, Zambia 837 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    dispute with Tanzania over the boundary in Lake Nyasa (Lake Malawi)\nClimate:\n    tropical; rainy season (November to May); dry season (May to November)\nTerrain:\n    narrow elongated plateau with rolling plains, rounded hills, some mountains\nNatural resources:\n    limestone; unexploited deposits of uranium, coal, and bauxite\nLand use:\n    arable land 25%; permanent crops NEGL%; meadows and pastures 20%; forest and\n    woodland 50%; other 5%; includes irrigated NEGL%\nEnvironment:\n    deforestation\nNote:\n    landlocked\n\n:Malawi People\n\nPopulation:\n    9,605,342 (July 1992), growth rate 1.8% (1992); note - 900,000 Mozambican\n    refugees in Malawi (1990 est.)\nBirth rate:\n    52 births/1,000 population (1992)\nDeath rate:\n    17 deaths/1,000 population (1992)\nNet migration rate:\n    -17 migrants/1,000 population (1992)\nInfant mortality rate:\n    134 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    48 years male, 51 years female (1992)\nTotal fertility rate:\n    7.6 children born/woman (1992)\nNationality:\n    noun - Malawian(s); adjective - Malawian\nEthnic divisions:\n    Chewa, Nyanja, Tumbuko, Yao, Lomwe, Sena, Tonga, Ngoni, Ngonde, Asian,\n    European\nReligions:\n    Protestant 55%, Roman Catholic 20%, Muslim 20%; traditional indigenous\n    beliefs are also practiced\nLanguages:\n    English and Chichewa (official); other languages important regionally\nLiteracy:\n    22% (male 34%, female 12%) age 15 and over can read and write (1966)\nLabor force:\n    428,000 wage earners; agriculture 43%, manufacturing 16%, personal services\n    15%, commerce 9%, construction 7%, miscellaneous services 4%, other\n    permanently employed 6% (1986)\nOrganized labor:\n    small minority of wage earners are unionized\n\n:Malawi Government\n\nLong-form name:\n    Republic of Malawi\nType:\n    one-party state\nCapital:\n    Lilongwe\nAdministrative divisions:\n    24 districts; Blantyre, Chikwawa, Chiradzulu, Chitipa, Dedza, Dowa, Karonga,\n    Kasungu, Lilongwe, Machinga (Kasupe), Mangochi, Mchinji, Mulanje, Mwanza,\n    Mzimba, Ntcheu, Nkhata Bay, Nkhotakota, Nsanje, Ntchisi, Rumphi, Salima,\n    Thyolo, Zomba\nIndependence:\n    6 July 1964 (from UK; formerly Nyasaland)\nConstitution:\n    6 July 1964; republished as amended January 1974\nLegal system:\n    based on English common law and customary law; judicial review of\n    legislative acts in the Supreme Court of Appeal; has not accepted compulsory\n    ICJ jurisdiction\nNational holiday:\n    Independence Day, 6 July (1964)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral National Assembly\nJudicial branch:\n    High Court, Supreme Court of Appeal\nLeaders:\n  Chief of State and Head of Government:\n    President Dr. Hastings Kamuzu BANDA (since 6 July 1966; sworn in as\n    President for Life 6 July 1971)\nPolitical parties and leaders:\n    only party - Malawi Congress Party (MCP), Wadson DELEZA, administrative\n    secretary; John TEMBO, treasurer general; top party position of secretary\n    general vacant since 1983\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    President BANDA sworn in as President for Life on 6 July 1971\n  National Assembly:\n    last held 27-28 May 1987 (next to be held by May 1992); results - MCP is the\n    only party; seats - (133 total, 112 elected) MCP 133\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, G-77, GATT, IBRD, ICAO, ICFTU, IDA, IFAD, IFC,\n    ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO (correspondent), ITU, LORCS,\n    NAM, OAU, SADCC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Robert B. MBAYA; Chancery at 2408 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 797-1007\n  US:\n    Ambassador Michael T. F. PISTOR; Embassy in new capital city development\n    area, address NA (mailing address is P. O. Box 30016, Lilongwe); telephone\n    [265] 730-166; FAX [265] 732-282\nFlag:\n    three equal horizontal bands of black (top), red, and green with a radiant,\n    rising, red sun centered in the black band; similar to the flag of\n    Afghanistan, which is longer and has the national coat of arms superimposed\n    on the hoist side of the black and red bands\n\n:Malawi Economy\n\nOverview:\n    Landlocked Malawi ranks among the world's least developed countries. The\n    economy is predominately agricultural, with about 90% of the population\n    living in rural areas. Agriculture accounts for 40% of GDP and 90% of export\n    revenues. After two years of weak performance, economic growth improved\n    significantly in 1988-91 as a result of good weather and a broadly based\n    economic adjustment effort by the government. The economy depends on\n    substantial inflows of economic assistance from the IMF, the World Bank, and\n    individual donor nations.\nGDP:\n    exchange rate conversion - $1.9 billion, per capita $200; growth rate 4.2%\n    (1991 est.)\nInflation rate (consumer prices):\n    9% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $398 million; expenditures $510 million, including capital\n    expenditures of $154 million (FY91 est.)\nExports:\n    $390 million (f.o.b., 1990 est.)\n  commodities:\n    tobacco, tea, sugar, coffee, peanuts\n  partners:\n    US, UK, Zambia, South Africa, Germany\nImports:\n    $560 million (c.i.f., 1990 est.)\n  commodities:\n    food, petroleum, semimanufactures, consumer goods, transportation equipment\n  partners:\n    South Africa, Japan, US, UK, Zimbabwe\nExternal debt:\n    $1.8 billion (December 1991 est.)\nIndustrial production:\n    growth rate 4.0% (1990 est.); accounts for about 18% of GDP (1988)\nElectricity:\n    185,000 kW capacity; 550 million kWh produced, 60 kWh per capita (1991)\nIndustries:\n    agricultural processing (tea, tobacco, sugar), sawmilling, cement, consumer\n    goods\nAgriculture:\n    accounts for 40% of GDP; cash crops - tobacco, sugarcane, cotton, tea, and\n    corn; subsistence crops - potatoes, cassava, sorghum, pulses; livestock -\n    cattle and goats\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $215 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2,150 million\nCurrency:\n    Malawian kwacha (plural - kwacha); 1 Malawian kwacha (MK) = 100 tambala\nExchange rates:\n    Malawian kwacha (MK) per US$1 - 2.7200 (January 1992), 2.8033 (1991), 2.7289\n    (1990), 2.7595 (1989), 2.5613 (1988), 2.2087 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Malawi Communications\n\nRailroads:\n    789 km 1.067-meter gauge\nHighways:\n    13,135 km total; 2,364 km paved; 251 km crushed stone, gravel, or stabilized\n    soil; 10,520 km earth and improved earth\nInland waterways:\n    Lake Nyasa (Lake Malawi); Shire River, 144 km\nPorts:\n    Chipoka, Monkey Bay, Nkhata Bay, and Nkotakota - all on Lake Nyasa (Lake\n    Malawi)\nCivil air:\n    5 major transport aircraft\nAirports:\n    48 total, 43 usable; 6 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 9 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of open-wire lines, radio relay links, and radio communications\n    stations; 42,250 telephones; broadcast stations - 10 AM, 17 FM, no TV;\n    satellite earth stations - 1 Indian Ocean INTELSAT and 1 Atlantic Ocean\n    INTELSAT\nNote:\n    a majority of exports would normally go through Mozambique on the Beira or\n    Nacala railroads, but now most go through South Africa because of insurgent\n    activity and damage to rail lines\n\n:Malawi Defense Forces\n\nBranches:\n    Army (including Air Wing and Naval Detachment), Police (including\n    paramilitary Mobile Force Unit), paramilitary Malawi Young Pioneers\nManpower availability:\n    males 15-49, 2,000,406; 1,016,901 fit for military service\nDefense expenditures:\n    exchange rate conversion - $22 million, 1.6% of GDP (1989 est.)\n\n:Malaysia Geography\n\nTotal area:\n    329,750 km2\nLand area:\n    328,550 km2\nComparative area:\n    slightly larger than New Mexico\nLand boundaries:\n    2,669 km; Brunei 381 km, Indonesia 1,782, Thailand 506 km\nCoastline:\n    4,675 km; Peninsular Malaysia 2,068 km, East Malaysia 2,607 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation, specified boundary in the South\n    China Sea\n  Exclusive fishing zone:\n    200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    involved in a complex dispute over the Spratly Islands with China,\n    Philippines, Taiwan, Vietnam, and possibly Brunei; State of Sabah claimed by\n    the Philippines; Brunei may wish to purchase the Malaysian salient that\n    divides Brunei into two parts; two islands in dispute with Singapore\nClimate:\n    tropical; annual southwest (April to October) and northeast (October to\n    February) monsoons\nTerrain:\n    coastal plains rising to hills and mountains\nNatural resources:\n    tin, crude oil, timber, copper, iron ore, natural gas, bauxite\nLand use:\n    arable land 3%; permanent crops 10%; meadows and pastures NEGL%; forest and\n    woodland 63%; other 24%; includes irrigated 1%\nEnvironment:\n    subject to flooding; air and water pollution\nNote:\n    strategic location along Strait of Malacca and southern South China Sea\n\n:Malaysia People\n\nPopulation:\n    18,410,920 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    27 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 71 years female (1992)\nTotal fertility rate:\n    3.6 children born/woman (1992)\nNationality:\n    noun - Malaysian(s); adjective - Malaysian\nEthnic divisions:\n    Malay and other indigenous 59%, Chinese 32%, Indian 9%\nReligions:\n    Peninsular Malaysia - Malays nearly all Muslim, Chinese predominantly\n    Buddhists, Indians predominantly Hindu; Sabah - Muslim 38%, Christian 17%,\n    other 45%; Sarawak - tribal religion 35%, Buddhist and Confucianist 24%,\n    Muslim 20%, Christian 16%, other 5%\nLanguages:\n    Peninsular Malaysia - Malay (official); English, Chinese dialects, Tamil;\n    Sabah - English, Malay, numerous tribal dialects, Mandarin and Hakka\n    dialects predominate among Chinese; Sarawak - English, Malay, Mandarin,\n    numerous tribal languages\nLiteracy:\n    78% (male 86%, female 70%) age 15 and over can read and write (1990 est.)\nLabor force:\n    7,258,000 (1991 est.)\nOrganized labor:\n    640,000; 10% of total labor force (1990)\n\n:Malaysia Government\n\nLong-form name:\n    none\nType:\n    Federation of Malaysia formed 9 July 1963; constitutional monarchy nominally\n    headed by the paramount ruler (king) and a bicameral Parliament; Peninsular\n    Malaysian states - hereditary rulers in all but Melaka, where governors are\n    appointed by Malaysian Pulau Pinang Government; powers of state governments\n    are limited by federal Constitution; Sabah - self-governing state, holds 20\n    seats in House of Representatives, with foreign affairs, defense, internal\n    security, and other powers delegated to federal government; Sarawak -\n    self-governing state within Malaysia, holds 27 seats in House of\n    Representatives, with foreign affairs, defense, internal security, and other\n    powers delegated to federal government\nCapital:\n    Kuala Lumpur\nAdministrative divisions:\n    13 states (negeri-negeri, singular - negeri) and 2 federal territories*\n    (wilayah-wilayah persekutuan, singular - wilayah persekutuan); Johor, Kedah,\n    Kelantan, Labuan*, Melaka, Negeri Sembilan, Pahang, Perak, Perlis, Pulau\n    Pinang, Sabah, Sarawak, Selangor, Terengganu, Wilayah Persekutuan*\nIndependence:\n    31 August 1957 (from UK)\nConstitution:\n    31 August 1957, amended 16 September 1963 when Federation of Malaya became\n    Federation of Malaysia\nLegal system:\n    based on English common law; judicial review of legislative acts in the\n    Supreme Court at request of supreme head of the federation; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 31 August (1957)\nExecutive branch:\n    paramount ruler, deputy paramount ruler, prime minister, deputy prime\n    minister, Cabinet\nLegislative branch:\n    bicameral Parliament (Parlimen) consists of an upper house or Senate (Dewan\n    Negara) and a lower house or House of Representatives (Dewan Rakyat)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Paramount Ruler AZLAN Muhibbuddin Shah ibni Sultan Yusof Izzudin (since 26\n    April 1989); Deputy Paramount Ruler JA'AFAR ibni Abdul Rahman (since 26\n    April 1989)\n  Head of Government:\n    Prime Minister Dr. MAHATHIR bin Mohamad (since 16 July 1981); Deputy Prime\n    Minister Abdul GHAFAR Bin Baba (since 7 May 1986)\nPolitical parties and leaders:\n  Peninsular Malaysia:\n    National Front, a confederation of 13 political parties dominated by United\n    Malays National Organization Baru (UMNO Baru), MAHATHIR bin Mohamad;\n    Malaysian Chinese Association (MCA), LING Liong Sik; Gerakan Rakyat\n    Malaysia, Datuk LIM Keng Yaik; Malaysian Indian Congress (MIC), Datuk S.\n    Samy VELLU\n  Sabah:\n    Berjaya Party, Datuk Haji Mohammed NOOR Mansor; Bersatu Sabah (PBS), Joseph\n    Pairin KITINGAN; United Sabah National Organizaton (USNO), leader NA\n\n:Malaysia Government\n\n  Sarawak:\n    coalition Sarawak National Front composed of the Party Pesaka Bumiputra\n    Bersatu (PBB), Datuk Patinggi Amar Haji Abdul TAIB Mahmud; Sarawak United\n    People's Party (SUPP), Datuk Amar James WONG Soon Kai; Sarawak National\n    Party (SNAP), Datuk Amar James WONG; Parti Bansa Dayak Sarawak (PBDS), Datuk\n    Leo MOGGIE; major opposition parties are Democratic Action Party (DAP), LIM\n    Kit Siang and Pan-Malaysian Islamic Party (PAS), Fadzil NOOR\nSuffrage:\n    universal at age 21\nElections:\n  House of Representatives:\n    last held 21 October 1990 (next to be held by August 1995); results -\n    National Front 52%, other 48%; seats - (180 total) National Front 127, DAP\n    20, PAS 7, independents 4, other 22; note - within the National Front, UMNO\n    got 71 seats and MCA 18 seats\nMember of:\n    APEC, AsDB, ASEAN, C, CCC, CP, ESCAP, FAO, G-15, G-77, GATT, IAEA, IBRD,\n    ICAO, ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, ISO, ITU, LORCS, NAM, OIC, UN, UNCTAD, UNESCO, UNIDO,\n    UNIIMOG, UPU, WCL, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Abdul MAJID Mohamed; Chancery at 2401 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 328-2700; there are Malaysian\n    Consulates General in Los Angeles and New York\n  US:\n    Ambassador Paul M. CLEVELAND; Embassy at 376 Jalan Tun Razak, 50400 Kuala\n    Lumpur (mailing address is P. O. Box No. 10035, 50700 Kuala Lumpur);\n    telephone [60] (3) 248-9011; FAX [60] (3) 242-2207\nFlag:\n    fourteen equal horizontal stripes of red (top) alternating with white\n    (bottom); there is a blue rectangle in the upper hoist-side corner bearing a\n    yellow crescent and a yellow fourteen-pointed star; the crescent and the\n    star are traditional symbols of Islam; the design was based on the flag of\n    the US\n\n:Malaysia Economy\n\nOverview:\n    During the period 1988-91 booming exports helped Malaysia continue to\n    recover from the severe 1985-86 recession. Real output grew by 8.8% in 1989,\n    10% in 1990, and 8.6% in 1991, helped by vigorous growth in manufacturing\n    output, further increases in foreign direct investment - particularly from\n    Japanese and Taiwanese firms facing higher costs at home - and increased oil\n    production. Malaysia has become the world's third-largest producer of\n    semiconductor devices (after the US and Japan) and the world's largest\n    exporter of semiconductor devices. Inflation has remained low; unemployment\n    has stood at 6% of the labor force; and the government has followed prudent\n    fiscal/monetary policies. The country is not self-sufficient in food, and\n    some of the rural population subsist at the poverty level. Malaysia's high\n    export dependence leaves it vulnerable to a recession in the OECD countries\n    or a fall in world commodity prices.\nGDP:\n    exchange rate conversion - $48.0 billion, per capita $2,670; real growth\n    rate 8.6% (1991 est.)\nInflation rate (consumer prices):\n    4.5% (1991 est.)\nUnemployment rate:\n    5.8% (1991 est.)\nBudget:\n    revenues $12.2 billion; expenditures $14.4 billion, including capital\n    expenditures of $3.2 billion (1991 est.)\nExports:\n    $35.4 billion (f.o.b., 1991)\n  commodities:\n    electrical manufactures, crude petroleum, timber, rubber, palm oil, textiles\n  partners:\n    Singapore, US, Japan, EC\nImports:\n    $38.7 billion (c.i.f., 1991)\n  commodities:\n    food, crude oil, consumer goods, intermediate goods, capital equipment,\n    chemicals\n  partners:\n    Japan, US, Singapore, Germany, UK\nExternal debt:\n    $21.3 billion (1991 est.)\nIndustrial production:\n    growth rate 18% (1990); accounts for 40% of GDP\nElectricity:\n    5,600,000 kW capacity; 16,500 million kWh produced, 940 kWh per capita\n    (1990)\nIndustries:\n  Peninsular Malaysia:\n    rubber and oil palm processing and manufacturing, light manufacturing\n    industry, electronics, tin mining and smelting, logging and processing\n    timber\n  Sabah:\n    logging, petroleum production\n  Sarawak:\n    agriculture processing, petroleum production and refining, logging\nAgriculture:\n  Peninsular Malaysia:\n    natural rubber, palm oil, rice\n  Sabah:\n    mainly subsistence, but also rubber, timber, coconut, rice\n\n:Malaysia Economy\n\n  Sarawak:\n    rubber, timber, pepper; there is a deficit of rice in all areas; fish catch\n    of 608,000 metric tons in 1987\nIllicit drugs:\n    transit point for Golden Triangle heroin going to the US, Western Europe,\n    and the Third World\nEconomic aid:\n    US commitments, including Ex-Im (FY70-84), $170 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.7 million; OPEC\n    bilateral aid (1979-89), $42 million\nCurrency:\n    ringgit (plural - ringgits); 1 ringgit (M$) = 100 sen\nExchange rates:\n    ringgits (M$) per US$1 - 2.6930 (January 1992), 2.7501 (1991), 1.7048\n    (1990), 2.7088 (1989), 2.6188 (1988), 2.5196 (1987)\nFiscal year:\n    calendar year\n\n:Malaysia Communications\n\nRailroads:\n  Peninsular Malaysia:\n    1,665 km 1.04-meter gauge; 13 km double track, government owned\nRailroads:\n  Sabah:\n    136 km 1.000-meter gauge\nHighways:\n  Peninsular Malaysia:\n    23,600 km (19,352 km hard surfaced, mostly bituminous-surface treatment, and\n    4,248 km unpaved)\n  Sabah:\n    3,782 km\n  Sarawak:\n    1,644 km\nInland waterways:\n  Peninsular Malaysia:\n    3,209 km\n  Sabah:\n    1,569 km\n  Sarawak:\n    2,518 km\nPipelines:\n    crude oil 1,307 km; natural gas 379 km\nPorts:\n    Tanjong Kidurong, Kota Kinabalu, Kuching, Pasir Gudang, Penang, Port Kelang,\n    Sandakan, Tawau\nMerchant marine:\n    167 ships (1,000 GRT or over) totaling 1,653,633 GRT/2,444,393 DWT; includes\n    1 passenger-cargo, 1 short-sea passenger, 64 cargo, 27 container, 2 vehicle\n    carrier, 2 roll-on/roll-off, 1 livestock carrier, 37 petroleum tanker, 5\n    chemical tanker, 6 liquefied gas, 21 bulk\nCivil air:\n    53 major transport aircraft\nAirports:\n    115 total, 108 usable; 33 with permanent-surface runways; 1 with runways\n    over 3,659 m; 7 with runways 2,440-3,659 m; 18 with runways 1,220-2,439 m\nTelecommunications:\n    good intercity service provided to Peninsular Malaysia mainly by radio\n    relay; adequate intercity radio relay network between Sabah and Sarawak via\n    Brunei; international service good; good coverage by radio and television\n    broadcasts; 994,860 telephones (1984); broadcast stations - 28 AM, 3 FM, 33\n    TV; submarine cables extend to India and Sarawak; SEACOM submarine cable\n    links to Hong Kong and Singapore; satellite earth stations - 1 Indian Ocean\n    INTELSAT and 1 Pacific Ocean INTELSAT, and 2 domestic\n\n:Malaysia Defense Forces\n\nBranches:\n    Royal Malaysian Army, Royal Malaysian Navy, Royal Malaysian Air Force, Royal\n    Malaysian Police Force, Marine Police, Sarawak Border Scouts\nManpower availability:\n    males 15-49, 4,728,103; 2,878,574 fit for military service; 179,486 reach\n    military age (21) annually\nDefense expenditures:\n    exchange rate conversion - $2.4 billion, about 5% of GDP (1992 budget)\n\n:Maldives Geography\n\nTotal area:\n    300 km2\nLand area:\n    300 km2\nComparative area:\n    slightly more than 1.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    644 km\nMaritime claims:\n  Exclusive economic zone:\n    35-310 nm (defined by geographic coordinates; segment of zone coincides with\n    maritime boundary with India)\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid; dry, northeast monsoon (November to March); rainy,\n    southwest monsoon (June to August)\nTerrain:\n    flat with elevations only as high as 2.5 meters\nNatural resources:\n    fish\nLand use:\n    arable land 10%; permanent crops 0%; meadows and pastures 3%; forest and\n    woodland 3%; other 84%\nEnvironment:\n    1,200 coral islands grouped into 19 atolls\nNote:\n    archipelago of strategic location astride and along major sea lanes in\n    Indian Ocean\n\n:Maldives People\n\nPopulation:\n    234,371 (July 1992), growth rate 3.7% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    61 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 64 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Maldivian(s); adjective - Maldivian\nEthnic divisions:\n    Maldivians are a generally homogenous admixture of Sinhalese, Dravidian,\n    Arab, Austrolasian, and African\nReligions:\n    Sunni Muslim\nLanguages:\n    Divehi (dialect of Sinhala; script derived from Arabic); English spoken by\n    most government officials\nLiteracy:\n    92% (male 92%, female 92%) age 15 and over can read and write (1985)\nLabor force:\n    66,000 (est.); 25% engaged in fishing industry\nOrganized labor:\n    none\n\n:Maldives Government\n\nLong-form name:\n    Republic of Maldives\nType:\n    republic\nCapital:\n    Male\nAdministrative divisions:\n    19 district (atolls); Aliff, Baa, Daalu, Faafu, Gaafu Aliff, Gaafu Daalu,\n    Haa Aliff, Haa Daalu, Kaafu, Laamu, Laviyani, Meemu, Naviyani, Noonu, Raa,\n    Seenu, Shaviyani, Thaa, Waavu\nIndependence:\n    26 July 1965 (from UK)\nConstitution:\n    4 June 1964\nLegal system:\n    based on Islamic law with admixtures of English common law primarily in\n    commercial matters; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 26 July (1965)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral Citizens' Council (Majlis)\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State and Head of Government:\n    President Maumoon Abdul GAYOOM (since 11 November 1978)\nPolitical parties and leaders:\n    no organized political parties; country governed by the Didi clan for the\n    past eight centuries\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    last held 23 September 1988 (next to be held September 1994); results -\n    President Maumoon Abdul GAYOOM reelected\n  Citizens' Council:\n    last held on 7 December 1989 (next to be held 7 December 1994); results -\n    percent of vote NA; seats - (48 total, 40 elected)\nMember of:\n    AsDB, C, CP, ESCAP, FAO, G-77, GATT, IBRD, ICAO, IDA, IDB, IFAD, IFC, IMF,\n    IMO, INTERPOL, IOC, ITU, NAM, OIC, SAARC, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WHO, WMO, WTO\nDiplomatic representation:\n    Maldives does not maintain an embassy in the US, but does have a UN mission\n    in New York\n  US:\n    the US Ambassador to Sri Lanka is accredited to Maldives and makes periodic\n    visits there; US Consular Agency, Midhath Hilmy, Male; telephone 2581\nFlag:\n    red with a large green rectangle in the center bearing a vertical white\n    crescent; the closed side of the crescent is on the hoist side of the flag\n\n:Maldives Economy\n\nOverview:\n    The economy is based on fishing, tourism, and shipping. Agriculture is\n    limited to the production of a few subsistence crops that provide only 10%\n    of food requirements. Fishing is the largest industry, employing 25% of the\n    work force and accounting for over 60% of exports; it is also an important\n    source of government revenue. During the 1980s tourism has become one of the\n    most important and highest growth sectors of the economy. In 1988 industry\n    accounted for about 5% of GDP. Real GDP is officially estimated to have\n    increased by about 10% annually during the period 1974-90.\nGDP:\n    exchange rate conversion - $174 million, per capita $770 (1988); real growth\n    rate 10.1% (1990 est.)\nInflation rate (consumer prices):\n    10.7% (1990 est.)\nUnemployment rate:\n    NEGL%\nBudget:\n    revenues $67 million; expenditures $82 million, including capital\n    expenditures of $45 million (1990 est.)\nExports:\n    $52.0 million (f.o.b., 1990)\n  commodities:\n    fish 57%, clothing 25%\n  partners:\n    US, UK, Sri Lanka\nImports:\n    $128.9 million (c.i.f., 1990)\n  commodities:\n    consumer goods 54%, intermediate and capital goods 33%, petroleum products\n    13%\n  partners:\n    Singapore, Germany, Sri Lanka, India\nExternal debt:\n    $70 million (December 1989)\nIndustrial production:\n    growth rate -5.0% (1988); accounts for 6% of GDP\nElectricity:\n    5,000 kW capacity; 11 million kWh produced, 50 kWh per capita (1990)\nIndustries:\n    fishing and fish processing, tourism, shipping, boat building, some coconut\n    processing, garments, woven mats, coir (rope), handicrafts\nAgriculture:\n    accounts for almost 30% of GDP (including fishing); fishing more important\n    than farming; limited production of coconuts, corn, sweet potatoes; most\n    staple foods must be imported; fish catch of 67,000 tons (1990 est.)\nEconomic aid:\n    US commitments, including Ex-Im (FY70-88), $28 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $125 million; OPEC\n    bilateral aid (1979-89), $14 million\nCurrency:\n    rufiyaa (plural - rufiyaa); 1 rufiyaa (Rf) = 100 laaris\nExchange rates:\n    rufiyaa (Rf) per US$1 - 10.234 (January 1992), 10.253 (1991), 9.509 (1990),\n    9.0408 (1989), 8.7846 (1988), 9.2230 (1987)\nFiscal year:\n    calendar year\n\n:Maldives Communications\n\nHighways:\n    Male has 9.6 km of coral highways within the city\nPorts:\n    Male, Gan\nMerchant marine:\n    13 ships (1,000 GRT or over) totaling 37,293 GRT/56,246 DWT; includes 11\n    cargo, 1 container, 1 petroleum tanker\nCivil air:\n    1 major transport aircraft\nAirports:\n    2 with permanent-surface runways 2,440-3,659 m\nTelecommunications:\n    minimal domestic and international facilities; 2,804 telephones; broadcast\n    stations - 2 AM, 1 FM, 1 TV; 1 Indian Ocean INTELSAT earth station\n\n:Maldives Defense Forces\n\nBranches:\n    National Security Service (paramilitary police force)\nManpower availability:\n    males 15-49, 52,195; 29,162 fit for military service\nDefense expenditures:\n    exchange rate conversion - $1.8 million, NA% of GDP (1984 est.)\n\n:Mali Geography\n\nTotal area:\n    1,240,000 km2\nLand area:\n    1,220,000 km2\nComparative area:\n    slightly less than twice the size of Texas\nLand boundaries:\n    7,243 km; Algeria 1,376 km, Burkina 1,000 km, Guinea 858 km, Ivory Coast 532\n    km, Mauritania 2,237 km, Niger 821 km, Senegal 419 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    the disputed international boundary between Burkina and Mali was submitted\n    to the International Court of Justice (ICJ) in October 1983 and the ICJ\n    issued its final ruling in December 1986, which both sides agreed to accept;\n    Burkina and Mali are proceeding with boundary demarcation, including the\n    tripoint with Niger\nClimate:\n    subtropical to arid; hot and dry February to June; rainy, humid, and mild\n    June to November; cool and dry November to February\nTerrain:\n    mostly flat to rolling northern plains covered by sand; savanna in south,\n    rugged hills in northeast\nNatural resources:\n    gold, phosphates, kaolin, salt, limestone, uranium; bauxite, iron ore,\n    manganese, tin, and copper deposits are known but not exploited\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 25%; forest and\n    woodland 7%; other 66%; includes irrigated NEGL%\nEnvironment:\n    hot, dust-laden harmattan; haze common during dry seasons; desertification\nNote:\n    landlocked\n\n:Mali People\n\nPopulation:\n    8,641,178 (July 1992), growth rate 2.5% (1992)\nBirth rate:\n    52 births/1,000 population (1992)\nDeath rate:\n    21 deaths/1,000 population (1992)\nNet migration rate:\n    -5 migrants/1,000 population (1992)\nInfant mortality rate:\n    110 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    43 years male, 47 years female (1992)\nTotal fertility rate:\n    7.3 children born/woman (1992)\nNationality:\n    noun - Malian(s); adjective - Malian\nEthnic divisions:\n    Mande (Bambara, Malinke, Sarakole) 50%, Peul 17%, Voltaic 12%, Songhai 6%,\n    Tuareg and Moor 5%, other 10%\nReligions:\n    Muslim 90%, indigenous beliefs 9%, Christian 1%\nLanguages:\n    French (official); Bambara spoken by about 80% of the population; numerous\n    African languages\nLiteracy:\n    32% (male 41%, female 24%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,666,000 (1986 est.); agriculture 80%, services 19%, industry and commerce\n    1% (1981); 50% of population of working age (1985)\nOrganized labor:\n    National Union of Malian Workers (UNTM) is umbrella organization for over 13\n    national unions\n\n:Mali Government\n\nLong-form name:\n    Republic of Mali\nType:\n    republic; an interim government appointed by the national reform conference\n    has organized a series of democratic elections and is scheduled to hand over\n    power to an elected government on 26 March 1992\nCapital:\n    Bamako\nAdministrative divisions:\n    8 regions (regions, singular - region); Gao, Kayes, Kidal, Koulikoro, Mopti,\n    Segou, Sikasso, Tombouctou\nIndependence:\n    22 September 1960 (from France; formerly French Sudan)\nConstitution:\n    2 June 1974, effective 19 June 1979; amended September 1981 and March 1985;\n    new constitution presented during national reform conference in August 1991;\n    a constitutional referendum is scheduled for 16 January 1992\nLegal system:\n    based on French civil law system and customary law; judicial review of\n    legislative acts in Constitutional Section of Court of State; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Proclamation of the Republic, 22 September (1960)\nExecutive branch:\n    Transition Committee for the Salvation of the People (CTSP) composed of 25\n    members, predominantly civilian\nLegislative branch:\n    Transition Committee for the Salvation of the People (CTSP)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    Lt. Col. Amadou Toumani TOURE\n  Head of Government:\n    Prime Minister Soumana SAKO (since 2 April 1991)\nPolitical parties and leaders:\n    formerly the only party, the Democratic Union of Malian People (UDPM), was\n    disbanded after the coup of 26 March 1991, and the new regime legalized the\n    formation of political parties on 5 April 1991; new political parties are\n    Union of Democratic Forces (UFD), Demba DIALLO; Union for Democracy and\n    Development (UDD), Moussa Bala COULIBALY; Sudanese Union/African Democratic\n    Rally (US-RDA), Mamadou Madeira KEITA; African Party for Solidarity and\n    Justice (ADEMA), Alpha Oumar KONARE; Party for Democracy and Progress (PDP),\n    Idrissa TRAORE; Democratic Party for Justice (PDJ), Abdul BA; Rally for\n    Democracy and Progress (RDP), Almany SYLLA; Party for the Unity of Malian\n    People (PUPM), Nock AGATTIA; Hisboulah al Islamiya, Hamidou DRAMERA; Union\n    of Progressive Forces (UFP), Yacouba SIDIBE; National Congress of Democratic\n    Initiative (CNID), Mountaga TALL; Assembly for Justice and Progress, Kady\n    DRAME; Sudanese Progressive Party (PPS), Sekene Mody SISSOKO; numerous small\n    parties formed in 1991; 46 total parties\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    last held on 9 June 1985 (next to be held March 1992); results - Gen. Moussa\n    TRAORE was reelected without opposition\n\n:Mali Government\n\n  National Assembly:\n    last held on 26 June 1988 (next to be held NA 1992); results - UDPM was the\n    only party; seats - (82 total) UDPM 82; note - following the military coup\n    of 26 March 1991, President TRAORE was deposed and the UDPM was disbanded;\n    the 25-member CTSP has instituted a multiparty system, and presidential\n    elections are to be held on 26 March 1992 and legislative elections on 9\n    February 1992 (new National Assembly to have 116 seats)\nMember of:\n    ACCT, ACP, AfDB, CCC, CEAO, ECA, ECOWAS, FAO, FZ, G-77, IAEA, IBRD, ICAO,\n    IDA, IDB, IFAD, IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM,\n    OAU, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Mohamed Alhousseyni TOURE; Chancery at 2130 R Street NW,\n    Washington, DC 20008; telephone (202) 332-2249 or 939-8950\n  US:\n    Ambassador Herbert D. GELBER; Embassy at Rue Rochester NY and Rue Mohamed\n    V., Bamako (mailing address is B. P. 34, Bamako); telephone [223] 225470;\n    FAX [233] 22-80-59\nFlag:\n    three equal vertical bands of green (hoist side), yellow, and red; uses the\n    popular pan-African colors of Ethiopia\n\n:Mali Economy\n\nOverview:\n    Mali is among the poorest countries in the world, with about 70% of its land\n    area desert or semidesert. Economic activity is largely confined to the\n    riverine area irrigated by the Niger. About 10% of the population live as\n    nomads and some 80% of the labor force is engaged in agriculture and\n    fishing. Industrial activity is concentrated on processing farm commodities.\nGDP:\n    exchange rate conversion - $2.2 billion, per capita $265; real growth rate\n    2.2% (1990 est.)\nInflation rate (consumer prices):\n    -1.6% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $329 million; expenditures $519 million, including capital\n    expenditures of $178 (1989 est.)\nExports:\n    $285 million (f.o.b., 1989 est.)\n  commodities:\n    livestock, peanuts, dried fish, cotton, skins\n  partners:\n    mostly franc zone and Western Europe\nImports:\n    $513 million (f.o.b., 1989 est.)\n  commodities:\n    textiles, vehicles, petroleum products, machinery, sugar, cereals\n  partners:\n    mostly franc zone and Western Europe\nExternal debt:\n    $2.2 billion (1989 est.)\nIndustrial production:\n    growth rate 19.9% (1989 est.); accounts for 7% of GDP\nElectricity:\n    260,000 kW capacity; 750 million kWh produced, 90 kWh per capita (1991)\nIndustries:\n    small local consumer goods and processing, construction, phosphate, gold,\n    fishing\nAgriculture:\n    accounts for 50% of GDP; most production based on small subsistence farms;\n    cotton and livestock products account for over 70% of exports; other crops -\n    millet, rice, corn, vegetables, peanuts; livestock - cattle, sheep, and\n    goats\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $349 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3,020 million; OPEC\n    bilateral aid (1979-89), $92 million; Communist countries (1970-89), $190\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Mali Communications\n\nRailroads:\n    642 km 1.000-meter gauge; linked to Senegal's rail system through Kayes\nHighways:\n    about 15,700 km total; 1,670 km paved, 3,670 km gravel and improved earth,\n    10,360 km unimproved earth\nInland waterways:\n    1,815 km navigable\nCivil air:\n    no major transport aircraft\nAirports:\n    35 total, 27 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 5 with runways 2,440-3,659 m; 10 with runways 1,220-2,439 m\nTelecommunications:\n    domestic system poor but improving; provides only minimal service with radio\n    relay, wire, and radio communications stations; expansion of radio relay in\n    progress; 11,000 telephones; broadcast stations - 2 AM, 2 FM, 2 TV;\n    satellite earth stations - 1 Atlantic Ocean INTELSAT and 1 Indian Ocean\n    INTELSAT\n\n:Mali Defense Forces\n\nBranches:\n    Army, Air Force, Gendarmerie, Republican Guard, National Guard, National\n    Police, Surete Nationale\nManpower availability:\n    males 15-49, 1,701,050; 966,293 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $41 million, 2% of GDP (1989)\n\n:Malta Geography\n\nTotal area:\n    320 km2\nLand area:\n    320 km2\nComparative area:\n    slightly less than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    140 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    25 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    Mediterranean with mild, rainy winters and hot, dry summers\nTerrain:\n    mostly low, rocky, flat to dissected plains; many coastal cliffs\nNatural resources:\n    limestone, salt\nLand use:\n    arable land 38%; permanent crops 3%; meadows and pastures 0%; forest and\n    woodland 0%; other 59%; includes irrigated 3%\nEnvironment:\n    numerous bays provide good harbors; fresh water very scarce - increasing\n    reliance on desalination\nNote:\n    strategic location in central Mediterranean, 93 km south of Sicily, 290 km\n    north of Libya\n\n:Malta People\n\nPopulation:\n    359,231 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 79 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman (1992)\nNationality:\n    noun - Maltese (singular and plural); adjective - Maltese\nEthnic divisions:\n    mixture of Arab, Sicilian, Norman, Spanish, Italian, English\nReligions:\n    Roman Catholic 98%\nLanguages:\n    Maltese and English (official)\nLiteracy:\n    84% (male 86%, female 82%) age 15 and over can read and write (1985)\nLabor force:\n    127,200; government (excluding job corps) 37%, services 26%, manufacturing\n    22%, training programs 9%, construction 4%, agriculture 2% (1990)\nOrganized labor:\n    about 40% of labor force\n\n:Malta Government\n\nLong-form name:\n    Republic of Malta\nType:\n    parliamentary democracy\nCapital:\n    Valletta\nAdministrative divisions:\n    none (administration directly from Valletta)\nIndependence:\n    21 September 1964 (from UK)\nConstitution:\n    26 April 1974, effective 2 June 1974\nLegal system:\n    based on English common law and Roman civil law; has accepted compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Independence Day, 21 September\nExecutive branch:\n    president, prime minister, deputy prime minister, Cabinet\nLegislative branch:\n    unicameral House of Representatives\nJudicial branch:\n    Constitutional Court and Court of Appeal\nLeaders:\n  Chief of State:\n    President Vincent (Censu) TABONE (since 4 April 1989)\n  Head of Government:\n    Prime Minister Dr. Edward (Eddie) FENECH ADAMI (since 12 May 1987); Deputy\n    Prime Minister Dr. Guido DE MARCO (since 14 May 1987)\nPolitical parties and leaders:\n    Nationalist Party (NP), Edward FENECH ADAMI; Malta Labor Party (MLP), Alfred\n    SANT\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held on 22 February 1992 (next to be held by February 1997); results -\n    NP 51.8%, MLP 46.5%; seats - (usually 65 total) MLP 36, NP 29; note -\n    additional seats are given to the party with the largest popular vote to\n    ensure a legislative majority; current total 69 (MLP 33, NP 36 after\n    adjustment)\nMember of:\n    C, CCC, CE, CSCE, EBRD, ECE, FAO, G-77, GATT, IBRD, ICAO, ICFTU, IFAD, ILO,\n    IMF, IMO, INTERPOL, IOC, ITU, NAM, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL,\n    WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Albert BORG OLIVIER DE PUGET; Chancery at 2017 Connecticut Avenue\n    NW, Washington, DC 20008; telephone (202) 462-3611 or 3612; there is a\n    Maltese Consulate General in New York\n  US:\n    Ambassador Sally J. NOVETZKE; Embassy at 2nd Floor, Development House, Saint\n    Anne Street, Floriana, Valletta (mailing address is P. O. Box 535,\n    Valletta); telephone [356] 240424, 240425, 243216, 243217, 243653, 223654;\n    FAX same as phone numbers\nFlag:\n    two equal vertical bands of white (hoist side) and red; in the upper\n    hoist-side corner is a representation of the George Cross, edged in red\n\n:Malta Economy\n\nOverview:\n    Significant resources are limestone, a favorable geographic location, and a\n    productive labor force. Malta produces only about 20% of its food needs, has\n    limited freshwater supplies, and has no domestic energy sources.\n    Consequently, the economy is highly dependent on foreign trade and services.\n    Manufacturing and tourism are the largest contributors to the economy.\n    Manufacturing accounts for about 27% of GDP, with the electronics and\n    textile industries major contributors. In 1990 inflation was held to a low\n    3.0%. Per capita GDP at $7,000 places Malta in the middle-income range of\n    the world's nations.\nGDP:\n    exchange rate conversion - $2.5 billion, per capita $7,000 (1991 est.); real\n    growth rate 5.5% (1990)\nInflation rate (consumer prices):\n    3.0% (1990)\nUnemployment rate:\n    3.8% (1990)\nBudget:\n    revenues $1.3 billion; expenditures $1.3 billion, including capital\n    expenditures of $380 million (1992 plan)\nExports:\n    $l.1 billion (f.o.b., 1990)\n  commodities:\n    clothing, textiles, footwear, ships\n  partners:\n    Italy 30%, Germany 22%, UK 11%\nImports:\n    $2.0 billion (f.o.b., 1990)\n  commodities:\n    food, petroleum, machinery and semimanufactured goods\n  partners:\n    Italy 30%, UK 16%, Germany 13%, US 4%\nExternal debt:\n    $90 million, medium and long term (December 1987)\nIndustrial production:\n    growth rate 19.0% (1990); accounts for 27% of GDP\nElectricity:\n    328,000 kW capacity; 1,110 million kWh produced, 2,990 kWh per capita (1991)\nIndustries:\n    tourism, electronics, ship repair yard, construction, food manufacturing,\n    textiles, footwear, clothing, beverages, tobacco\nAgriculture:\n    accounts for 3% of GDP; overall, 20% self-sufficient; main products -\n    potatoes, cauliflower, grapes, wheat, barley, tomatoes, citrus, cut flowers,\n    green peppers, hogs, poultry, eggs; generally adequate supplies of\n    vegetables, poultry, milk, pork products; seasonal or periodic shortages in\n    grain, animal fodder, fruits, other basic foodstuffs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-81), $172 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $336 million; OPEC\n    bilateral aid (1979-89), $76 million; Communist countries (1970-88), $48\n    million\nCurrency:\n    Maltese lira (plural - liri); 1 Maltese lira (LM) = 100 cents\nExchange rates:\n    Maltese liri (LM) per US$1 - 0.3257 (March 1992), 0.3004 (1991), 0.3172\n    (1990), 0.3483 (1989), 0.3306 (1988), 0.3451 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Malta Communications\n\nHighways:\n    1,291 km total; 1,179 km paved (asphalt), 77 km crushed stone or gravel, 35\n    km improved and unimproved earth\nPorts:\n    Valletta, Marsaxlokk\nMerchant marine:\n    658 ships (1,000 GRT or over) totaling 9,003,001 GRT/15,332,287 DWT;\n    includes 3 passenger, 13 short-sea passenger, 241 cargo, 14 container, 2\n    passenger-cargo, 16 roll-on/roll-off, 2 vehicle carrier, 1 barge carrier, 15\n    refrigerated cargo, 11 chemical tanker, 12 combination ore/oil, 2\n    specialized tanker, 3 liquefied gas, 124 petroleum tanker, 176 bulk, 23\n    combination bulk; note - a flag of convenience registry; China owns 2 ships,\n    former republics of the USSR own 52 ships, Cuba owns 10, Vietnam owns 6,\n    Yugoslavia owns 9, Romania owns 4\nCivil air:\n    7 major transport aircraft\nAirports:\n    1 with permanent-surface runways 2,440-3,659 m\nTelecommunications:\n    automatic system satisfies normal requirements; 153,000 telephones;\n    excellent service by broadcast stations - 8 AM, 4 FM, and 2 TV; submarine\n    cable and radio relay between islands; international service by 1 submarine\n    cable; 1 Atlantic Ocean INTELSAT earth station\n\n:Malta Defense Forces\n\nBranches:\n    Armed Forces, Maltese Police Force\nManpower availability:\n    males 15-49, 95,661; 76,267 fit for military service\nDefense expenditures:\n    exchange rate conversion - $21.9 million, 1.3% of GDP (1989 est.)\n\n:Man, Isle of Geography\n\nTotal area:\n    588 km2\nLand area:\n    588 km2\nComparative area:\n    slightly less than 3.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    113 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    cool summers and mild winters; humid; overcast about half the time\nTerrain:\n    hills in north and south bisected by central valley\nNatural resources:\n    lead, iron ore\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%; extensive arable land and forests\nEnvironment:\n    strong westerly winds prevail\nNote:\n    located in Irish Sea equidistant from England, Scotland, and Ireland\n\n:Man, Isle of People\n\nPopulation:\n    64,068 (July 1992), growth rate 0.1% (1992)\nBirth rate:\n    11 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    4 migrants/1,000 population (1992)\nInfant mortality rate:\n    9 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Manxman, Manxwoman; adjective - Manx\nEthnic divisions:\n    native Manx of Norse-Celtic descent; British\nReligions:\n    Anglican, Roman Catholic, Methodist, Baptist, Presbyterian, Society of\n    Friends\nLanguages:\n    English, Manx Gaelic\nLiteracy:\n    NA% (male NA%, female NA%) but compulsory education ages 5 to 16\nLabor force:\n    25,864 (1981)\nOrganized labor:\n    22 labor unions patterned along British lines\n\n:Man, Isle of Government\n\nLong-form name:\n    none\nType:\n    British crown dependency\nCapital:\n    Douglas\nAdministrative divisions:\n    none (British crown dependency)\nIndependence:\n    none (British crown dependency)\nConstitution:\n    1961, Isle of Man Constitution Act\nLegal system:\n    English law and local statute\nNational holiday:\n    Tynwald Day, 5 July\nExecutive branch:\n    British monarch, lieutenant governor, prime minister, Executive Council\n    (cabinet)\nLegislative branch:\n    bicameral Tynwald consists of an upper house or Legislative Council and a\n    lower house or House of Keys\nJudicial branch:\n    High Court of Justice\nLeaders:\n  Chief of State:\n    Lord of Mann Queen ELIZABETH II (since 6 February 1952), represented by\n    Lieutenant Governor Air Marshal Sir Laurence JONES (since NA 1990)\n  Head of Government:\n    President of the Legislative Council Sir Charles KERRUISH (since NA 1990)\nPolitical parties and leaders:\n    there is no party system and members sit as independents\nSuffrage:\n    universal at age 21\nElections:\n  House of Keys:\n    last held in 1991 (next to be held NA 1996); results - percent of vote NA;\n    no party system; seats - (24 total) independents 24\nMember of:\n    none\nDiplomatic representation:\n    none (British crown dependency)\nFlag:\n    red with the Three Legs of Man emblem (Trinacria), in the center; the three\n    legs are joined at the thigh and bent at the knee; in order to have the toes\n    pointing clockwise on both sides of the flag, a two-sided emblem is used\n    ria), in the center; the three legs are joined at the thigh and bent at the\n    knee; in order to have the toes pointing clockwise on both sides of the\n    flag, a two-sided emblem is used\n\n:Man, Isle of Economy\n\nOverview:\n    Offshore banking, manufacturing, and tourism are key sectors of the economy.\n    The government's policy of offering incentives to high-technology companies\n    and financial institutions to locate on the island has paid off in expanding\n    employment opportunities in high-income industries. As a result, agriculture\n    and fishing, once the mainstays of the economy, have declined in their\n    shares of GNP. Banking now contributes over 20% to GNP and manufacturing\n    about 15%. Trade is mostly with the UK.\nGNP:\n    exchange rate conversion - $490 million, per capita $7,573; real growth rate\n    NA% (1988)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    1.5% (1988)\nBudget:\n    revenues $130.4 million; expenditures $114.4 million, including capital\n    expenditures of $18.1 million (FY85 est.)\nExports:\n    $NA\n  commodities:\n    tweeds, herring, processed shellfish, meat\n  partners:\n    UK\nImports:\n    $NA\n  commodities:\n    timber, fertilizers, fish\n  partners:\n    UK\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    61,000 kW capacity; 190 million kWh produced, 2,930 kWh per capita (1989)\nIndustries:\n    an important offshore financial center; financial services, light\n    manufacturing, tourism\nAgriculture:\n    cereals and vegetables; cattle, sheep, pigs, poultry\nEconomic aid:\n    NA\nCurrency:\n    Manx pound (plural - pounds); 1 Manx pound (#M) = 100 pence\nExchange rates:\n    Manx pounds (#M) per US$1 - 0.5799 (March 1992), 0.5652 (1991), 0.5603\n    (1990), 0.6099 (1989), 0.5614 (1988), 0. 6102 (1987); the Manx pound is at\n    par with the British pound\nFiscal year:\n    1 April - 31 March\n\n:Man, Isle of Communications\n\nRailroads:\n    36 km electric track, 24 km steam track\nHighways:\n    640 km motorable roads\nPorts:\n    Douglas, Ramsey, Peel\nMerchant marine:\n    79 ships (1,000 GRT or over) totaling 1,436,196 GRT/2,479,432 DWT; includes\n    12 cargo, 7 container, 10 roll-on/roll-off, 30 petroleum tanker, 4 chemical\n    tanker, 5 liquefied gas, 11 bulk; note - a captive register of the United\n    Kingdom, although not all ships on the register are British owned\nAirports:\n    1 total; 1 usable with permanent-surface runway 1,220-2,439 m\nTelecommunications:\n    24,435 telephones; broadcast stations - 1 AM, 4 FM, 4 TV\n\n:Man, Isle of Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Marshall Islands Geography\n\nTotal area:\n    181.3 km2\nLand area:\n    181.3 km2; includes the atolls of Bikini, Eniwetok, and Kwajalein\nComparative area:\n    slightly larger than Washington, DC\nLand boundaries:\n    none\nCoastline:\n    370.4 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims US territory of Wake Island\nClimate:\n    wet season May to November; hot and humid; islands border typhoon belt\nTerrain:\n    low coral limestone and sand islands\nNatural resources:\n    phosphate deposits, marine products, deep seabed minerals\nLand use:\n    arable land 0%; permanent crops 60%; meadows and pastures 0%; forest and\n    woodland 0%; other 40%\nEnvironment:\n    occasionally subject to typhoons; two archipelagic island chains of 30\n    atolls and 1,152 islands\nNote:\n    located 3,825 km southwest of Honolulu in the North Pacific Ocean, about\n    two-thirds of the way between Hawaii and Papua New Guinea; Bikini and\n    Eniwetok are former US nuclear test sites; Kwajalein, the famous World War\n    II battleground, is now used as a US missile test range\n\n:Marshall Islands People\n\nPopulation:\n    50,004 (July 1992), growth rate 3.9% (1992)\nBirth rate:\n    47 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    52 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    61 years male, 64 years female (1992)\nTotal fertility rate:\n    7.0 children born/woman (1992)\nNationality:\n    noun - Marshallese (singular and plural); adjective - Marshallese\nEthnic divisions:\n    almost entirely Micronesian\nReligions:\n    predominantly Christian, mostly Protestant\nLanguages:\n    English universally spoken and is the official language; two major\n    Marshallese dialects from Malayo-Polynesian family; Japanese\nLiteracy:\n    93% (male 100%, female 88%) age 15 and over can read and write (1980)\nLabor force:\n    4,800 (1986)\nOrganized labor:\n    none\n\n:Marshall Islands Government\n\nLong-form name:\n    Republic of the Marshall Islands\nType:\n    constitutional government in free association with the US; the Compact of\n    Free Association entered into force 21 October 1986\nCapital:\n    Majuro\nAdministrative divisions:\n    none\nIndependence:\n    21 October 1986 (from the US-administered UN trusteeship; formerly the\n    Marshall Islands District of the Trust Territory of the Pacific Islands)\nConstitution:\n    1 May 1979\nLegal system:\n    based on adapted Trust Territory laws, acts of the legislature, municipal,\n    common, and customary laws\nNational holiday:\n    Proclamation of the Republic of the Marshall Islands, 1 May (1979)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral Nitijela (parliament)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Amata KABUA (since 1979)\nPolitical parties and leaders:\n    no formal parties; President KABUA is chief political (and traditional)\n    leader\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 6 January 1992 (next to be held NA; results - President Amata\n    KABUA was reelected\n  Parliament:\n    last held 18 November 1991 (next to be held November 1995); results -\n    percent of vote NA; seats - (33 total)\nMember of:\n    AsDB, ESCAP (associate), ICAO, SPC, SPF, UN, UNCTAD\nDiplomatic representation:\n    Ambassador Wilfred I. KENDALL; Chancery at 2433 Massachusetts Avenue, NW,\n    Washington, DC 20008; telephone (202) 234-5414\n  US:\n    Ambassador William BODDE, Jr.; Embassy at NA address (mailing address is P.\n    O. Box 1379, Majuro, Republic of the Marshall Islands 96960-1379); telephone\n    (011) 692-4011; FAX (011) 692-4012\nFlag:\n    blue with two stripes radiating from the lower hoist-side corner - orange\n    (top) and white; there is a white star with four large rays and 20 small\n    rays on the hoist side above the two stripes\n\n:Marshall Islands Economy\n\nOverview:\n    Agriculture and tourism are the mainstays of the economy. Agricultural\n    production is concentrated on small farms, and the most important commercial\n    crops are coconuts, tomatoes, melons, and breadfruit. A few cattle ranches\n    supply the domestic meat market. Small-scale industry is limited to\n    handicrafts, fish processing, and copra. The tourist industry is the primary\n    source of foreign exchange and employs about 10% of the labor force. The\n    islands have few natural resources, and imports far exceed exports. In 1987\n    the US Government provided grants of $40 million out of the Marshallese\n    budget of $55 million.\nGDP:\n    exchange rate conversion - $63 million, per capita $1,500; real growth rate\n    NA% (1989 est.)\nInflation rate (consumer prices):\n    NA\nUnemployment rate:\n    NA%\nBudget:\n    revenues $55 million; expenditures NA, including capital expenditures of NA\n    (1987 est.)\nExports:\n    $2.5 million (f.o.b., 1985)\n  commodities:\n    copra, copra oil, agricultural products, handicrafts\n  partners:\n    NA\nImports:\n    $29.2 million (c.i.f., 1985)\n  commodities:\n    foodstuffs, beverages, building materials\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    42,000 kW capacity; 80 million kWh produced, 1,840 kWh per capita (1990)\nIndustries:\n    copra, fish, tourism; craft items from shell, wood, and pearls; offshore\n    banking (embryonic)\nAgriculture:\n    coconuts, cacao, taro, breadfruit, fruits, copra; pigs, chickens\nEconomic aid:\n    under the terms of the Compact of Free Association, the US is to provide\n    approximately $40 million in aid annually\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Marshall Islands Communications\n\nHighways:\n    paved roads on major islands (Majuro, Kwajalein), otherwise stone-, coral-,\n    or laterite-surfaced roads and tracks\nPorts:\n    Majuro\nMerchant marine:\n    32 ships (1,000 GRT or over) totaling 2,347,312 GRT/4,630,172 DWT; includes\n    2 cargo, 1 container, 9 petroleum tanker, 18 bulk carrier, 2 combination\n    ore/oil; note - a flag of convenience registry\nAirports:\n    17 total, 16 usable; 4 with permanent-surface runways; 8 with runways\n    1,220-2,439 m\nTelecommunications:\n    telephone network - 570 lines (Majuro) and 186 (Ebeye); telex services;\n    islands interconnected by shortwave radio (used mostly for government\n    purposes); broadcast stations - 1 AM, 2 FM, 1 TV, 1 shortwave; 2 Pacific\n    Ocean INTELSAT earth stations; US Government satellite communications system\n    on Kwajalein\n\n:Marshall Islands Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Martinique Geography\n\nTotal area:\n    1,100 km2\nLand area:\n    1,060 km2\nComparative area:\n    slightly more than six times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    290 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by trade winds; rainy season (June to October)\nTerrain:\n    mountainous with indented coastline; dormant volcano\nNatural resources:\n    coastal scenery and beaches, cultivable land\nLand use:\n    arable land 10%; permanent crops 8%; meadows and pastures 30%; forest and\n    woodland 26%; other 26%; includes irrigated 5%\nEnvironment:\n    subject to hurricanes, flooding, and volcanic activity that result in an\n    average of one major natural disaster every five years\nNote:\n    located 625 km southeast of Puerto Rico in the Caribbean Sea\n\n:Martinique People\n\nPopulation:\n    371,803 (July 1992), growth rate 1.4% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 81 years female (1992)\nTotal fertility rate:\n    1.9 children born/woman (1992)\nNationality:\n    noun - Martiniquais (singular and plural); adjective - Martiniquais\nEthnic divisions:\n    African and African-Caucasian-Indian mixture 90%, Caucasian 5%, East Indian,\n    Lebanese, Chinese less than 5%\nReligions:\n    Roman Catholic 95%, Hindu and pagan African 5%\nLanguages:\n    French, Creole patois\nLiteracy:\n    93% (male 92%, female 93%) age 15 and over can read and write (1982)\nLabor force:\n    100,000; service industry 31.7%, construction and public works 29.4%,\n    agriculture 13.1%, industry 7.3%, fisheries 2.2%, other 16.3%\nOrganized labor:\n    11% of labor force\n\n:Martinique Government\n\nLong-form name:\n    Department of Martinique\nType:\n    overseas department of France\nCapital:\n    Fort-de-France\nAdministrative divisions:\n    none (overseas department of France)\nIndependence:\n    none (overseas department of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French legal system\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    government commissioner\nLegislative branch:\n    unicameral General Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Government Commissioner Jean Claude ROURE (since 5 May 1989); President of\n    the General Council Emile MAURICE (since NA 1988)\nSuffrage:\n    universal at age 18\nElections:\n  General Council:\n    last held in October 1988 (next to be held by March 1991); results - percent\n    of vote by party NA; seats - (44 total) number of seats by party NA\n  Regional Assembly:\n    last held on 16 March 1986 (next to be held by March 1992); results -\n    UDF/RPR coalition 49.8%, PPM/FSM/PCM coalition 41.3%, other 8.9%; seats -\n    (41 total) PPM/FSM/PCM coalition 21, UDF/RPR coalition 20\n  French Senate:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (2 total) UDF 1, PPM 1\n  French National Assembly:\n    last held on 5 and 12 June 1988 (next to be held June 1993); results -\n    percent of vote by party NA; seats - (4 total) PPM 1, FSM 1, RPR 1, UDF 1\nCommunists:\n    1,000 (est.)\nOther political or pressure groups:\n    Proletarian Action Group (GAP); Alhed Marie-Jeanne Socialist Revolution\n    Group (GRS); Martinique Independence Movement (MIM); Caribbean Revolutionary\n    Alliance (ARC); Central Union for Martinique Workers (CSTM), Marc Pulvar;\n    Frantz Fanon Circle; League of Workers and Peasants\nMember of:\n    FZ, WCL\nDiplomatic representation:\n    as an overseas department of France, Martiniquais interests are represented\n    in the US by France\n\n:Martinique Government\n\n  US:\n    Consul General Raymond G. ROBINSON; Consulate General at 14 Rue Blenac,\n    Fort-de-France (mailing address is B. P. 561, Fort-de-France 97206);\n    telephone [596] 63-13-03\nFlag:\n    the flag of France is used\n\n:Martinique Economy\n\nOverview:\n    The economy is based on sugarcane, bananas, tourism, and light industry.\n    Agriculture accounts for about 12% of GDP and the small industrial sector\n    for 10%. Sugar production has declined, with most of the sugarcane now used\n    for the production of rum. Banana exports are increasing, going mostly to\n    France. The bulk of meat, vegetable, and grain requirements must be\n    imported, contributing to a chronic trade deficit that requires large annual\n    transfers of aid from France. Tourism has become more important than\n    agricultural exports as a source of foreign exchange. The majority of the\n    work force is employed in the service sector and in administration. In 1986\n    per capita GDP was relatively high at $6,000. During 1986 the unemployment\n    rate was 30% and was particularly severe among younger workers.\nGDP:\n    exchange rate conversion - $2.0 billion, per capita $6,000; real growth rate\n    NA% (1986)\nInflation rate (consumer prices):\n    2.9% (1989)\nUnemployment rate:\n    30% (1986)\nBudget:\n    revenues $268 million; expenditures $268 million, including capital\n    expenditures of $NA (1989 est.)\nExports:\n    $196 million (f.o.b., 1988)\n  commodities:\n    refined petroleum products, bananas, rum, pineapples\n  partners:\n    France 65%, Guadeloupe 24%, Germany (1987)\nImports:\n    $1.3 billion (c.i.f., 1988)\n  commodities:\n    petroleum products, foodstuffs, construction materials, vehicles, clothing\n    and other consumer goods\n  partners:\n    France 65%, UK, Italy, Germany, Japan, US (1987)\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    113,100 kW capacity; 588 million kWh produced, 1,703 kWh per capita (1991)\nIndustries:\n    construction, rum, cement, oil refining, sugar, tourism\nAgriculture:\n    including fishing and forestry, accounts for about 12% of GDP; principal\n    crops - pineapples, avocados, bananas, flowers, vegetables, and sugarcane\n    for rum; dependent on imported food, particularly meat and vegetables\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $10.1 billion\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.3801 (January 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:Martinique Communications\n\nHighways:\n    1,680 km total; 1,300 km paved, 380 km gravel and earth\nPorts:\n    Fort-de-France\nCivil air:\n    no major transport aircraft\nAirports:\n    2 total; 2 usable; 1 with permanent-surface runways; 1 with runway\n    2,440-3,659 m; 1 with runways less than 2,439 m\nTelecommunications:\n    domestic facilities are adequate; 68,900 telephones; interisland radio relay\n    links to Guadeloupe, Dominica, and Saint Lucia; broadcast stations - 1 AM, 6\n    FM, 10 TV; 2 Atlantic Ocean INTELSAT earth stations\n\n:Martinique Defense Forces\n\nBranches:\n    French Forces, Gendarmerie\nManpower availability:\n    males 15-49, 95,235; NA fit for military service\nNote:\n    defense is the responsibility of France\n\n:Mauritania Geography\n\nTotal area:\n    1,030,700 km2\nLand area:\n    1,030,400 km2\nComparative area:\n    slightly larger than three times the size of New Mexico\nLand boundaries:\n    5,074 km; Algeria 463 km, Mali 2,237 km, Senegal 813 km, Western Sahara\n    1,561 km\nCoastline:\n    754 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    boundary with Senegal\nClimate:\n    desert; constantly hot, dry, dusty\nTerrain:\n    mostly barren, flat plains of the Sahara; some central hills\nNatural resources:\n    iron ore, gypsum, fish, copper, phosphate\nLand use:\n    arable land 1%; permanent crops NEGL%; meadows and pastures 38%; forest and\n    woodland 5%; other 56%; includes irrigated NEGL%\nEnvironment:\n    hot, dry, dust/sand-laden sirocco wind blows primarily in March and April;\n    desertification; only perennial river is the Senegal\n\n:Mauritania People\n\nPopulation:\n    2,059,187 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    48 births/1,000 population (1992)\nDeath rate:\n    17 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    89 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    44 years male, 50 years female (1992)\nTotal fertility rate:\n    7.1 children born/woman (1992)\nNationality:\n    noun - Mauritanian(s); adjective - Mauritanian\nEthnic divisions:\n    mixed Maur/black 40%, Maur 30%, black 30%\nReligions:\n    Muslim, nearly 100%\nLanguages:\n    Hasaniya Arabic (official); Hasaniya Arabic, Pular, Soninke, Wolof\n    (official)\nLiteracy:\n    34% (male 47%, female 21%) age 10 and over can read and write (1990 est.)\nLabor force:\n    465,000 (1981 est.); 45,000 wage earners (1980); agriculture 47%, services\n    29%, industry and commerce 14%, government 10%; 53% of population of working\n    age (1985)\nOrganized labor:\n    30,000 members claimed by single union, Mauritanian Workers' Union\n\n:Mauritania Government\n\nLong-form name:\n    Islamic Republic of Mauritania\nType:\n    republic; military first seized power in bloodless coup 10 July 1978; a\n    palace coup that took place on 12 December 1984 brought President Taya to\n    power; he was elected in 1992\nCapital:\n    Nouakchott\nAdministrative divisions:\n    12 regions(regions, singular - region); Adrar, Assaba, Brakna, Dakhlet\n    Nouadhibou, Gorgol, Guidimaka, Hodh ech Chargui, Hodh el Gharbi, Inchiri,\n    Tagant, Tiris Zemmour, Trarza; note - there may be a new capital district of\n    Nouakchott\nIndependence:\n    28 November 1960 (from France)\nConstitution:\n    currently 12 July 1991; 20 May 1961 Constitution abrogated after coup of 10\n    July 1978; provisional constitution published 17 December 1980 but abandoned\n    in 1981; constitutional charter published 27 February 1985 after Taya came\n    to power; latest constitution approved after general referendum 12 July 1991\nLegal system:\n    based on Islamic law\nNational holiday:\n    Independence Day, 28 November (1960)\nExecutive branch:\n    president\nLegislative branch:\n    National Assembly (Assemblee Nationale) and Senate\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State and Head of Government:\n    President Col. Maaouya Ould Sid`Ahmed TAYA (since 12 December 1984)\nPolitical parties and leaders:\n    legalized by constitution passed 12 July 1991; emerging parties include\n    Democratic and Social Republican Party (PRDS), led by President Col. Maaouya\n    Ould Sid`Ahmed TAYA; Union of Democratic Forces (UDF), coalition of seven\n    opposition factions, three leaders: Mohameden Ould BABAH, Diop Mamadou\n    AMADOU, and Messoud Ould BOULKHEIR; Assembly for Democracy (RDU), Mohamed\n    Ould SIDI BABA; Rally for Democracy and Unity (RDUN), Mohamed Ould Sidi\n    BABA; Popular Social and Democratic Union (UPSD), Mohamed Mahmoud Ould MAH;\n    Progressive Popular Alliance (APP), Taleb Ould Jiddou Ould Mohamed LAGHDAF;\n    Mauritanian Party for Renewal (PMR), Moulaye El Hassan Ould JEYID; National\n    Avant-Garde Party (PAN or PAGN), Khattry Ould Taleb JIDDOU; Mauritanian\n    Party of the Democratic Center (PCDM), Bamba Ould SIDI BADI; Union for\n    Planning and Construction (UPC), Mohamed Ould EYAHA; Democratic Justice\n    Party (PJD), Mohamed Abdallahi Ould EL BANE; Party for Liberty, Equality,\n    and Justice (PLEJ), Ba Mamadou ALASSANE; Labor and National Unity Party\n    (PTUN), Ali Bouna Ould OUENINA\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held January 1992 (next to be held NA)\n  results:\n    President Col. Maabuya Ould Sid`Ahmed TAYA elected\n  Senate:\n    last held 3 and 10 April 1992 (next to be held April 1998)\n\n:Mauritania Government\n\n  National Assembly:\n    last held 6 and 13 March 1992 (next to be held NA 1997)\nMember of:\n    ABEDA, ACCT (associate), ACP, AfDB, AFESD, AL, AMF, AMU, CAEU, CCC, CEAO,\n    ECA, ECOWAS, FAO, G-77, GATT, IBRD, ICAO, IDA, IDB, IFAD, IFC, ILO, IMF,\n    IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO,\n    UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Mohamed Fall OULD AININA; Chancery at 2129 Leroy Place NW,\n    Washington, DC 20008; telephone (202) 232-5700\n  US:\n    Ambassador Gordon S. BROWN; Embassy at address NA, Nouakchott (mailing\n    address is B. P. 222, Nouakchott); telephone [222] (2) 526-60 or 526-63; FAX\n    [222] (2) 515-92\nFlag:\n    green with a yellow five-pointed star above a yellow, horizontal crescent;\n    the closed side of the crescent is down; the crescent, star, and color green\n    are traditional symbols of Islam\n\n:Mauritania Economy\n\nOverview:\n    A majority of the population still depends on agriculture and livestock for\n    a livelihood, even though most of the nomads and many subsistence farmers\n    were forced into the cities by recurrent droughts in the 1970s and 1980s.\n    Mauritania has extensive deposits of iron ore, which account for almost 50%\n    of total exports. The decline in world demand for this ore, however, has led\n    to cutbacks in production. The nation's coastal waters are among the richest\n    fishing areas in the world, but overexploitation by foreigners threatens\n    this key source of revenue. The country's first deepwater port opened near\n    Nouakchott in 1986. In recent years, the droughts, the endemic conflict with\n    Senegal, rising energy costs, and economic mismanagement have resulted in a\n    substantial buildup of foreign debt. The government has begun the second\n    stage of an economic reform program in consultation with the World Bank, the\n    IMF, and major donor countries. But the reform process suffered a major\n    setback following the Gulf war of early 1991. Because of Mauritania's\n    support of Saddam Husayn, bilateral aid from its two top donors, Saudi\n    Arabia and Kuwait, was suspended, and multilateral aid was reduced.\nGDP:\n    exchange rate conversion - $1.1 billion, per capita $535; real growth rate\n    3% (1991 est.)\nInflation rate (consumer prices):\n    6.5% (1990 est.)\nUnemployment rate:\n    20% (1991 est.)\nBudget:\n    revenues $280 million; expenditures $346 million, including capital\n    expenditures of $61 million (1989 est.)\nExports:\n    $436 million (f.o.b., 1990)\n  commodities:\n    iron ore, processed fish, small amounts of gum arabic and gypsum; unrecorded\n    but numerically significant cattle exports to Senegal\n  partners:\n    EC 43%, Japan 27%, USSR 11%, Ivory Coast 3%\nImports:\n    $389 million (c.i.f., 1990)\n  commodities:\n    foodstuffs, consumer goods, petroleum products, capital goods\n  partners:\n    EC 60%, Algeria 15%, China 6%, US 3%\nExternal debt:\n    $1.9 billion (1990)\nIndustrial production:\n    growth rate 4.4% (1988 est.); accounts for almost 20% of GDP\nElectricity:\n    190,000 kW capacity; 135 million kWh produced, 70 kWh per capita (1991)\nIndustries:\n    fishing, fish processing, mining of iron ore and gypsum\nAgriculture:\n    accounts for 29% of GDP (including fishing); largely subsistence farming and\n    nomadic cattle and sheep herding except in Senegal river valley; crops -\n    dates, millet, sorghum, root crops; fish products number-one export; large\n    food deficit in years of drought\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $168 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.3 billion; OPEC\n    bilateral aid (1979-89), $490 million; Communist countries (1970-89), $277\n    million; Arab Development Bank (1991), $20 million\n\n:Mauritania Economy\n\nCurrency:\n    ouguiya (plural - ouguiya); 1 ouguiya (UM) = 5 khoums\nExchange rates:\n    ouguiya (UM) per US$1 - 79.300 (January 1992), 81.946 (1991), 80.609 (1990),\n    83.051 (1989), 75.261 (1988), 73.878 (1987)\nFiscal year:\n    calendar year\n\n:Mauritania Communications\n\nRailroads:\n    690 km 1.435-meter (standard) gauge, single track, owned and operated by\n    government mining company\nHighways:\n    7,525 km total; 1,685 km paved; 1,040 km gravel, crushed stone, or otherwise\n    improved; 4,800 km unimproved roads, trails, tracks\nInland waterways:\n    mostly ferry traffic on the Senegal River\nPorts:\n    Nouadhibou, Nouakchott\nMerchant marine:\n    1 cargo ship (1,000 GRT or over) totaling 1,290 GRT/1,840 DWT\nCivil air:\n    3 major transport aircraft\nAirports:\n    28 total, 28 usable; 9 with permanent-surface runways; none with runways\n    over 3,659 m; 5 with runways 2,440-3,659 m; 16 with runways 1,220-2,439 m\nTelecommunications:\n    poor system of cable and open-wire lines, minor radio relay links, and radio\n    communications stations (improvements being made); broadcast stations - 2\n    AM, no FM, 1 TV; satellite earth stations - 1 Atlantic Ocean INTELSAT and 2\n    ARABSAT, with six planned\n\n:Mauritania Defense Forces\n\nBranches:\n    Army, Navy, Air Force, National Gendarmerie, National Guard, National\n    Police, Presidential Guard\nManpower availability:\n    males 15-49, 436,897; 213,307 fit for military service; conscription law not\n    implemented\nDefense expenditures:\n    exchange rate conversion - $40 million, 4.2% of GDP (1989)\n\n:Mauritius Geography\n\nTotal area:\n    1,860 km2\nLand area:\n    1,850 km2; includes Agalega Islands, Cargados Carajos Shoals (Saint\n    Brandon), and Rodrigues\nComparative area:\n    slightly less than 10.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    177 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims UK-administered Chagos Archipelago, which includes the island of\n    Diego Garcia in UK-administered British Indian Ocean Territory; claims\n    French-administered Tromelin Island\nClimate:\n    tropical modified by southeast trade winds; warm, dry winter (May to\n    November); hot, wet, humid summer (November to May)\nTerrain:\n    small coastal plain rising to discontinuous mountains encircling central\n    plateau\nNatural resources:\n    arable land, fish\nLand use:\n    arable land 54%; permanent crops 4%; meadows and pastures 4%; forest and\n    woodland 31%; other 7%; includes irrigated 9%\nEnvironment:\n    subject to cyclones (November to April); almost completely surrounded by\n    reefs\nNote:\n    located 900 km east of Madagascar in the Indian Ocean\n\n:Mauritius People\n\nPopulation:\n    1,092,130 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -4 migrants/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 73 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Mauritian(s); adjective - Mauritian\nEthnic divisions:\n    Indo-Mauritian 68%, Creole 27%, Sino-Mauritian 3%, Franco-Mauritian 2%\nReligions:\n    Hindu 52%, Christian (Roman Catholic 26%, Protestant 2.3%) 28.3%, Muslim\n    16.6%, other 3.1%\nLanguages:\n    English (official), Creole, French, Hindi, Urdu, Hakka, Bojpoori\nLiteracy:\n    82.8 % (male 88.7%, female 77.1%) age 13 and over can read and write (1985\n    UNESCO estimate)\nLabor force:\n    335,000; government services 29%, agriculture and fishing 27%, manufacturing\n    22%, other 22%; 43% of population of working age (1985)\nOrganized labor:\n    35% of labor force in more than 270 unions\n\n:Mauritius Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Port Louis\nAdministrative divisions:\n    9 districts and 3 dependencies*; Agalega Islands*, Black River, Cargados\n    Carajos*, Flacq, Grand Port, Moka, Pamplemousses, Plaines Wilhems, Port\n    Louis, Riviere du Rempart, Rodrigues*, Savanne\nIndependence:\n    12 March 1968 (from UK)\nConstitution:\n    12 March 1968\nLegal system:\n    based on French civil law system with elements of English common law in\n    certain areas\nNational holiday:\n    Independence Day, 12 March (1968)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Legislative Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Sir Veerasamy RINGADOO (since 17 January 1986)\n  Head of Government:\n    Prime Minister Sir Anerood JUGNAUTH (since 12 June 1982); Deputy Prime\n    Minister Prem NABABSING (since 26 September 1990)\nPolitical parties and leaders:\n  government coalition:\n    Militant Socialist Movement (MSM), A. JUGNAUTH; Mauritian Militant Movement\n    (MMM), Paul BERENGER; Organization of the People of Rodrigues (OPR), Louis\n    Serge CLAIR; Democratic Labor Movement (MTD), Anil BAICHOO\n  opposition:\n    Mauritian Labor Party (MLP), Navin RAMGOOLMAN; Socialist Workers Front,\n    Sylvio MICHEL; Mauritian Social Democratic Party (PMSD), G. DUVAL\nElections:\n  Legislative Assembly:\n    last held on 15 September 1991 (next to be held by 15 September 1996);\n    results - MSM/MMM 53%, MLP/PMSD 38%; seats - (70 total, 62 elected) MSM/MMM\n    alliance 59 (MSM 29, MMM 26, OPR 2, MTD 2); MLP/PMSD 3\nCommunists:\n    may be 2,000 sympathizers\nOther political or pressure groups:\n    various labor unions\nMember of:\n    ACCT, ACP, AfDB, C, CCC, ECA, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICFTU, IDA,\n    IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO (correspondent), ITU,\n    LORCS, NAM, OAU, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Chitmansing JESSERAMSING; Chancery at Suite 134, 4301 Connecticut\n    Avenue NW, Washington, DC 20008; telephone (202) 244-1491 or 1492\n\n:Mauritius Government\n\n  US:\n    Ambassador Penne Percy KORTH; Embassy at 4th Floor, Rogers House, John\n    Kennedy Street, Port Louis; telephone [230] 208-9763 through 208-9767; FAX\n    [230] 208-9534\nFlag:\n    four equal horizontal bands of red (top), blue, yellow, and green\n\n:Mauritius Economy\n\nOverview:\n    The economy is based on sugar, manufacturing (mainly textiles), and tourism.\n    Sugarcane is grown on about 90% of the cultivated land area and accounts for\n    40% of export earnings. The government's development strategy is centered on\n    industrialization (with a view to exports), agricultural diversification,\n    and tourism. Economic performance in FY91 was impressive, with 6% real\n    growth and low unemployment.\nGDP:\n    exchange rate conversion - $2.5 billion, per capita $2,300; real growth rate\n    6.1% (FY91 est.)\nInflation rate (consumer prices):\n    13.2% (FY91 est.)\nUnemployment rate:\n    2.4% (1991 est.)\nBudget:\n    revenues $557 million; expenditures $607 million, including capital\n    expenditures of $111 million (FY90)\nExports:\n    $1.2 billion (f.o.b., 1990)\n  commodities:\n    textiles 44%, sugar 40%, light manufactures 10%\n  partners:\n    EC and US have preferential treatment, EC 77%, US 15%\nImports:\n    $1.6 billion (f.o.b., 1990)\n  commodities:\n    manufactured goods 50%, capital equipment 17%, foodstuffs 13%, petroleum\n    products 8%, chemicals 7%\n  partners:\n    EC, US, South Africa, Japan\nExternal debt:\n    $869 million (1991 est.)\nIndustrial production:\n    growth rate 12.9% (FY87); accounts for 25% of GDP\nElectricity:\n    235,000 kW capacity; 425 million kWh produced, 395 kWh per capita (1991)\nIndustries:\n    food processing (largely sugar milling), textiles, wearing apparel,\n    chemicals, metal products, transport equipment, nonelectrical machinery,\n    tourism\nAgriculture:\n    accounts for 10% of GDP; about 90% of cultivated land in sugarcane; other\n    products - tea, corn, potatoes, bananas, pulses, cattle, goats, fish; net\n    food importer, especially rice and fish\nIllicit drugs:\n    illicit producer of cannabis for the international drug trade\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $76 million; Western (non-US)\n    countries (1970-89), $709 million; Communist countries (1970-89), $54\n    million\nCurrency:\n    Mauritian rupee (plural - rupees); 1 Mauritian rupee (MauR) = 100 cents\nExchange rates:\n    Mauritian rupees (MauRs) per US$1 - 15.198 (January 1992), 15.652 (1991),\n    14.839 (1990), 15.250 (1989), 13.438 (1988), 12.878 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Mauritius Communications\n\nHighways:\n    1,800 km total; 1,640 km paved, 160 km earth\nPorts:\n    Port Louis\nMerchant marine:\n    9 ships (1,000 GRT or over) totaling 94,710 GRT/150,345 DWT; includes 1\n    passenger-cargo, 3 cargo, 1 roll-on/roll-off, 1 liquefied gas, 3 bulk\nCivil air:\n    7 major transport aircraft\nAirports:\n    5 total, 4 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    small system with good service utilizing primarily radio relay; new\n    microwave link to Reunion; high-frequency radio links to several countries;\n    over 48,000 telephones; broadcast stations - 2 AM, no FM, 4 TV; 1 Indian\n    Ocean INTELSAT earth station\n\n:Mauritius Defense Forces\n\nBranches:\n    paramilitary Special Mobile Force, Special Support Unit, National Police\n    Force, National Coast Guard\nManpower availability:\n    males 15-49, 307,237; 157,246 fit for military service\nDefense expenditures:\n    exchange rate conversion - $5 million, 0.2% of GDP (FY89)\n\n:Mayotte Geography\n\nTotal area:\n    375 km2\nLand area:\n    375 km2\nComparative area:\n    slightly more than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    185.2 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Comoros\nClimate:\n    tropical; marine; hot, humid, rainy season during northeastern monsoon\n    (November to May); dry season is cooler (May to November)\nTerrain:\n    generally undulating with ancient volcanic peaks, deep ravines\nNatural resources:\n    negligible\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%\nEnvironment:\n    subject to cyclones during rainy season\nNote:\n    part of Comoro Archipelago; located in the Mozambique Channel about halfway\n    between Africa and Madagascar\n\n:Mayotte People\n\nPopulation:\n    86,628 (July 1992), growth rate 3.8% (1992)\nBirth rate:\n    50 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    84 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 59 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Mahorais (singular and plural); adjective - Mahoran\nReligions:\n    Muslim 99%; remainder Christian, mostly Roman Catholic\nLanguages:\n    Mahorian (a Swahili dialect), French\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Mayotte Government\n\nLong-form name:\n    Territorial Collectivity of Mayotte\nType:\n    territorial collectivity of France\nCapital:\n    Mamoutzou\nAdministrative divisions:\n    none (territorial collectivity of France)\nIndependence:\n    none (territorial collectivity of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French law\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    government commissioner\nLegislative branch:\n    unicameral General Council (Conseil General)\nJudicial branch:\n    Supreme Court (Tribunal Superieur d'Appel)\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Commissioner, Representative of the French Government Jean-Paul COSTE (since\n    NA 1991); President of the General Council Youssouf BAMANA (since NA 1976)\nPolitical parties and leaders:\n    Mahoran Popular Movement (MPM), Younoussa BAMANA; Party for the Mahoran\n    Democratic Rally (PRDM), Daroueche MAOULIDA; Mahoran Rally for the Republic\n    (RMPR), Mansour KAMARDINE; Union of the Center (UDC)\nSuffrage:\n    universal at age 18\nElections:\n  General Council:\n    last held June 1988 (next to be held June 1993); results - percent of vote\n    by party NA; seats - (17 total) MPM 9, RPR 6, other 2\n  French Senate:\n    last held on 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (1 total) MPM 1\n  French National Assembly:\n    last held 5 and 12 June 1988 (next to be held June 1993); results - percent\n    of vote by party NA; seats - (1 total) UDC 1\nMember of:\n    FZ\nDiplomatic representation:\n    as a territorial collectivity of France, Mahoran interests are represented\n    in the US by France\nFlag:\n    the flag of France is used\n\n:Mayotte Economy\n\nOverview:\n    Economic activity is based primarily on the agricultural sector, including\n    fishing and livestock raising. Mayotte is not self-sufficient and must\n    import a large portion of its food requirements, mainly from France. The\n    economy and future development of the island is heavily dependent on French\n    financial assistance.\nGDP:\n    exchange rate conversion - $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $37.3 million, including capital expenditures of\n    $NA (1985)\nExports:\n    $4.0 million (f.o.b., 1984)\n  commodities:\n    ylang-ylang, vanilla\n  partners:\n    France 79%, Comoros 10%, Reunion 9%\nImports:\n    $21.8 million (f.o.b., 1984)\n  commodities:\n    building materials, transportation equipment, rice, clothing, flour\n  partners:\n    France 57%, Kenya 16%, South Africa 11%, Pakistan 8%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    NA kW capacity; NA million kWh produced, NA kWh per capita\nIndustries:\n    newly created lobster and shrimp industry\nAgriculture:\n    most important sector; provides all export earnings; crops - vanilla,\n    ylang-ylang, coffee, copra; imports major share of food needs\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $402 million\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.3801 (January 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:Mayotte Communications\n\nHighways:\n    42 km total; 18 km bituminous\nPorts:\n    Dzaoudzi\nCivil air:\n    no major transport aircraft\nAirports:\n    1 with permanent-surface runways 1,220-2,439 m\nTelecommunications:\n    small system administered by French Department of Posts and\n    Telecommunications; includes radio relay and high-frequency radio\n    communications for links to Comoros and international communications; 450\n    telephones; broadcast stations - 1 AM, no FM, no TV\n\n:Mayotte Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Mexico Geography\n\nTotal area:\n    1,972,550 km2\nLand area:\n    1,923,040 km2\nComparative area:\n    slightly less than three times the size of Texas\nLand boundaries:\n    4,538 km; Belize 250 km, Guatemala 962 km, US 3,326 km\nCoastline:\n    9,330 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    natural prolongation of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims Clipperton Island (French possession)\nClimate:\n    varies from tropical to desert\nTerrain:\n    high, rugged mountains, low coastal plains, high plateaus, and desert\nNatural resources:\n    crude oil, silver, copper, gold, lead, zinc, natural gas, timber\nLand use:\n    arable land 12%; permanent crops 1%; meadows and pastures 39%; forest and\n    woodland 24%; other 24%; includes irrigated 3%\nEnvironment:\n    subject to tsunamis along the Pacific coast and destructive earthquakes in\n    the center and south; natural water resources scarce and polluted in north,\n    inaccessible and poor quality in center and extreme southeast;\n    deforestation; erosion widespread; desertification; serious air pollution in\n    Mexico City and urban centers along US-Mexico border\nNote:\n    strategic location on southern border of US\n\n:Mexico People\n\nPopulation:\n    92,380,721 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    30 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 76 years female (1992)\nTotal fertility rate:\n    3.3 children born/woman (1992)\nNationality:\n    noun - Mexican(s); adjective - Mexican\nEthnic divisions:\n    mestizo (Indian-Spanish) 60%, Amerindian or predominantly Amerindian 30%,\n    Caucasian or predominantly Caucasian 9%, other 1%\nReligions:\n    nominally Roman Catholic 89%, Protestant 6%\nLanguages:\n    Spanish; various Mayan dialects\nLiteracy:\n    87% (male 90%, female 85%) age 15 and over can read and write (1985 est.)\nLabor force:\n    26,100,000 (1988); services 31.4%, agriculture, forestry, hunting, and\n    fishing 26%, commerce 13.9%, manufacturing 12.8%, construction 9.5%,\n    transportation 4.8%, mining and quarrying 1.3%, electricity 0.3% (1986)\nOrganized labor:\n    35% of labor force\n\n:Mexico Government\n\nLong-form name:\n    United Mexican States\nType:\n    federal republic operating under a centralized government\nCapital:\n    Mexico\nAdministrative divisions:\n    31 states (estados, singular - estado) and 1 federal district* (distrito\n    federal); Aguascalientes, Baja California, Baja California Sur, Campeche,\n    Chiapas, Chihuahua, Coahuila, Colima, Distrito Federal*, Durango,\n    Guanajuato, Guerrero, Hidalgo, Jalisco, Mexico, Michoacan, Morelos, Nayarit,\n    Nuevo Leon, Oaxaca, Puebla, Queretaro, Quintana Roo, San Luis Potosi,\n    Sinaloa, Sonora, Tabasco, Tamaulipas, Tlaxcala, Veracruz, Yucatan, Zacatecas\nIndependence:\n    16 September 1810 (from Spain)\nConstitution:\n    5 February 1917\nLegal system:\n    mixture of US constitutional theory and civil law system; judicial review of\n    legislative acts; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 16 September (1810)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    bicameral National Congress (Congreso de la Union) consists of an upper\n    chamber or Senate (Camara de Senadores) and a lower chamber or Chamber of\n    Deputies (Camara de Diputados)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justicia)\nLeaders:\n  Chief of State and Head of Government:\n    President Carlos SALINAS de Gortari (since 1 December 1988)\nPolitical parties and leaders:\n    (recognized parties) Institutional Revolutionary Party (PRI), Genaro BORREGO\n    Estrada; National Action Party (PAN), Luis ALVAREZ; Popular Socialist Party\n    (PPS), Indalecio SAYAGO Herrera; Democratic Revolutionary Party (PRD),\n    Cuauhtemoc CARDENAS Solorzano; Cardenist Front for the National\n    Reconstruction Party (PFCRN), Rafael AGUILAR Talamantes; Authentic Party of\n    the Mexican Revolution (PARM), Carlos Enrique CANTU Rosas\nSuffrage:\n    universal and compulsory (but not enforced) at age 18\nElections:\n  President:\n    last held on 6 July 1988 (next to be held September 1994); results - Carlos\n    SALINAS de Gortari (PRI) 50.74%, Cuauhtemoc CARDENAS Solorzano (FDN) 31.06%,\n    Manuel CLOUTHIER (PAN) 16.81%; other 1.39%; note - several of the smaller\n    parties ran a common candidate under a coalition called the National\n    Democratic Front (FDN)\n  Senate:\n    last held on 18 August 1988 (next to be held midyear 1994); results -\n    percent of vote by party NA; seats in full Senate - (64 total) number of\n    seats by party; PRI 61, PRD 2, PAN 1\n  Chamber of Deputies:\n    last held on 18 August 1991 (next to be held midyear 1994); results - PRI\n    53%, PAN 20%, PFCRN 10%, PPS 6%, PARM 7%, PMS (now part of PRD) 4%; seats -\n    (500 total) PRI 320, PAN 89, PRD 41, PFCRN 23, PARM 15, PPS 12\n\n:Mexico Government\n\nOther political or pressure groups:\n    Roman Catholic Church, Confederation of Mexican Workers (CTM), Confederation\n    of Industrial Chambers (CONCAMIN), Confederation of National Chambers of\n    Commerce (CONCANACO), National Peasant Confederation (CNC), UNE (no\n    expansion), Revolutionary Workers Party (PRT), Mexican Democratic Party\n    (PDM), Revolutionary Confederation of Workers and Peasants (CROC), Regional\n    Confederation of Mexican Workers (CROM), Confederation of Employers of the\n    Mexican Republic (COPARMEX), National Chamber of Transformation Industries\n    (CANACINTRA), Coordinator for Foreign Trade Business Organizations (COECE)\nMember of:\n    AG (observer), CARICOM (observer) CCC, CDB, CG, EBRD, ECLAC, FAO, G-3, G-6,\n    G-11, G-15, G-19, G-24, G-77, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA,\n    IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU,\n    LAES, LAIA, LORCS, NAM (observer), OAS, OPANAL, PCA, RG, UN, UNCTAD, UNESCO,\n    UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Gustavo PETRICIOLI Iturbide; Chancery at 1911 Pennsylvania Avenue\n    NW, Washington, DC 20006; telephone (202) 728-1600; there are Mexican\n    Consulates General in Chicago, Dallas, Denver, El Paso, Houston, Los\n    Angeles, New Orleans, New York, San Francisco, San Antonio, San Diego, and\n    Consulates in Albuquerque, Atlanta, Austin, Boston, Brownsville (Texas),\n    Calexico (California), Corpus Christi, Del Rio (Texas), Detroit, Douglas\n    (Arizona), Eagle Pass (Texas), Fresno (California), Kansas City (Missouri),\n    Laredo, McAllen (Texas), Miami, Nogales (Arizona), Oxnard (California),\n    Philadelphia, Phoenix, Presidio (Texas), Sacramento, St. Louis, St. Paul\n    (Minneapolis), Salt Lake City, San Bernardino, San Jose, San Juan (Puerto\n    Rico), and Seattle\n  US:\n    Ambassador John D. NEGROPONTE, Jr.; Embassy at Paseo de la Reforma 305,\n    06500 Mexico, D.F. (mailing address is P. O. Box 3087, Laredo, TX\n    78044-3087); telephone [52] (5) 211-0042; FAX [52] (5) 511-9980, 208-3373;\n    there are US Consulates General in Ciudad Juarez, Guadalajara, Monterrey,\n    and Tijuana, and Consulates in Hermosillo, Matamoros, Mazatlan, Merida, and\n    Nuevo Laredo\nFlag:\n    three equal vertical bands of green (hoist side), white, and red; the coat\n    of arms (an eagle perched on a cactus with a snake in its beak) is centered\n    in the white band\n\n:Mexico Economy\n\nOverview:\n    Mexico's economy is a mixture of state-owned industrial plants (notably\n    oil), private manufacturing and services, and both large-scale and\n    traditional agriculture. In the 1980s, Mexico experienced severe economic\n    difficulties: the nation accumulated large external debts as world petroleum\n    prices fell; rapid population growth outstripped the domestic food supply;\n    and inflation, unemployment, and pressures to emigrate became more acute.\n    Growth in national output, however, is recovering, rising from 1.4% in 1988\n    to 4% in 1990 and again in 1991. The US is Mexico's major trading partner,\n    accounting for two-thirds of its exports and imports. After petroleum,\n    border assembly plants and tourism are the largest earners of foreign\n    exchange. The government, in consultation with international economic\n    agencies, is implementing programs to stabilize the economy and foster\n    growth. In 1991 the government began negotiations with the US and Canada on\n    a free trade agreement.\nGDP:\n    exchange rate conversion - $289 billion, per capita $3,200; real growth rate\n    4% (1991 est.)\nInflation rate (consumer prices):\n    18.8% (1991 est.)\nUnemployment rate:\n    14-17% (1991 est.)\nBudget:\n    revenues $41.0 billion; expenditures $47.9 billion, including capital\n    expenditures of $6.3 billion (1990)\nExports:\n    $27.4 billion (f.o.b., 1991 est.)\n  commodities:\n    crude oil, oil products, coffee, shrimp, engines, motor vehicles, cotton,\n    consumer electronics\n  partners:\n    US 68%, EC 14%, Japan 6% (1990 est.)\nImports:\n    $36.7 billion (c.i.f., 1991)\n  commodities:\n    grain, metal manufactures, agricultural machinery, electrical equipment\n  partners:\n    US 69%, EC 13%, Japan 6% (1990)\nExternal debt:\n    $98.4 billion (1991)\nIndustrial production:\n    growth rate 5.5% (1991 est.); accounts for 28% of GDP\nElectricity:\n    26,150,000 kW capacity; 114,277 million kWh produced, 1,270 kWh per capita\n    (1991)\nIndustries:\n    food and beverages, tobacco, chemicals, iron and steel, petroleum, mining,\n    textiles, clothing, transportation equipment, tourism\nAgriculture:\n    accounts for 9% of GDP and over 25% of work force; large number of small\n    farms at subsistence level; major food crops - corn, wheat, rice, beans;\n    cash crops - cotton, coffee, fruit, tomatoes; fish catch of 1.4 million\n    metric tons among top 20 nations (1987)\nIllicit drugs:\n    illicit cultivation of opium poppy and cannabis continues in spite of active\n    government eradication program; major supplier to the US market; continues\n    as the primary transshipment country for US-bound cocaine from South America\n\n:Mexico Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $3.1 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $7.7 billion;\n    Communist countries (1970-89), $110 million\nCurrency:\n    Mexican peso (plural - pesos); 1 Mexican peso (Mex$) = 100 centavos\nExchange rates:\n    market rate of Mexican pesos (Mex$) per US$1 - 3,068.5 (January 1992),\n    3,018.4 (1991) 2,940.9 (January 1991), 2,812.6 (1990), 2,461.3 (1989),\n    2,273.1 (1988), 1,378.2 (1987)\nFiscal year:\n    calendar year\n\n:Mexico Communications\n\nRailroads:\n    24,500 km total; breakdown NA\nHighways:\n    212,000 km total; 65,000 km paved, 30,000 km semipaved or cobblestone,\n    62,000 km rural roads (improved earth) or roads under construction, 55,000\n    km unimproved earth roads\nInland waterways:\n    2,900 km navigable rivers and coastal canals\nPipelines:\n    crude oil 28,200 km; petroleum products 10,150 km; natural gas 13,254 km;\n    petrochemical 1,400 km\nPorts:\n    Acapulco, Coatzacoalcos, Ensenada, Guaymas, Manzanillo, Mazatlan, Progreso,\n    Puerto Vallarta, Salina Cruz, Tampico, Veracruz\nMerchant marine:\n    58 ships (1,000 GRT or over) totaling 875,239 GRT/1,301,355 DWT; includes 4\n    short-sea passenger, 3 cargo, 2 refrigerated cargo, 2 roll-on/roll-off, 30\n    petroleum tanker, 4 chemical tanker, 7 liquefied gas, 1 bulk, 1 combination\n    bulk, 4 container\nCivil air:\n    186 major transport aircraft\nAirports:\n    1,815 total, 1,505 usable; 200 with permanent-surface runways; 3 with\n    runways over 3,659 m; 33 with runways 2,440-3,659 m; 284 with runways\n    1,220-2,439 m\nTelecommunications:\n    highly developed system with extensive radio relay links; privatized in\n    December 1990; connected into Central America Microwave System; 6,410,000\n    telephones; broadcast stations - 679 AM, no FM, 238 TV, 22 shortwave; 120\n    domestic satellite terminals; earth stations - 4 Atlantic Ocean INTELSAT and\n    1 Pacific Ocean INTELSAT\n\n:Mexico Defense Forces\n\nBranches:\n    National Defense (including Army and Air Force), Navy (including Marines)\nManpower availability:\n    males 15-49, 23,023,871; 16,852,513 fit for military service; 1,138,455\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $1.6 billion, less than 1% of GDP (1982 budget)\n\n:Micronesia, Federated States of Geography\n\nTotal area:\n    702 km2\nLand area:\n    702 km2; includes Pohnpei, Truk, Yap, and Kosrae\nComparative area:\n    slightly less than four times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    6,112 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; heavy year-round rainfall, especially in the eastern islands;\n    located on southern edge of the typhoon belt with occasional severe damage\nTerrain:\n    islands vary geologically from high mountainous islands to low, coral\n    atolls; volcanic outcroppings on Pohnpei, Kosrae, and Truk\nNatural resources:\n    forests, marine products, deep-seabed minerals\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%\nEnvironment:\n    subject to typhoons from June to December; four major island groups totaling\n    607 islands\nNote:\n    located 5,150 km west-southwest of Honolulu in the North Pacific Ocean,\n    about three-quarters of the way between Hawaii and Indonesia\n\n:Micronesia, Federated States of People\n\nPopulation:\n    114,694 (July 1992), growth rate 3.4% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    12 migrants/1,000 population (1992)\nInfant mortality rate:\n    39 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 69 years female (1992)\nTotal fertility rate:\n    4.1 children born/woman (1992)\nNationality:\n    noun - Micronesian(s); adjective - Micronesian; Kosrae(s), Pohnpeian(s),\n    Trukese (singular and plural), Yapese (singular and plural)\nEthnic divisions:\n    nine ethnic Micronesian and Polynesian groups\nReligions:\n    predominantly Christian, divided between Roman Catholic and Protestant;\n    other churches include Assembly of God, Jehovah's Witnesses, Seventh-Day\n    Adventist, Latter-Day Saints, and the Baha'i Faith\nLanguages:\n    English is the official and common language; most indigenous languages fall\n    within the Austronesian language family, the exceptions are the Polynesian\n    languages; major indigenous languages are Trukese, Pohnpeian, Yapese, and\n    Kosrean\nLiteracy:\n    90% (male 90%, female 85%) age 15 and over can read and write (1980)\nLabor force:\n    NA; two-thirds are government employees; 45,000 people are between the ages\n    of 15 and 65\nOrganized labor:\n    NA\n\n:Micronesia, Federated States of Government\n\nLong-form name:\n    Federated States of Micronesia (no short-form name)\nType:\n    constitutional government in free association with the US; the Compact of\n    Free Association entered into force 3 November 1986\nCapital:\n    Kolonia (on the island of Pohnpei); note - a new capital is being built\n    about 10 km southwest in the Palikir valley\nAdministrative divisions:\n    4 states; Kosrae, Pohnpei, Chuuk, Yap\nIndependence:\n    3 November 1986 (from the US-administered UN Trusteeship; formerly the\n    Kosrae, Pohnpei, Truk, and Yap districts of the Trust Territory of the\n    Pacific Islands)\nConstitution:\n    10 May 1979\nLegal system:\n    based on adapted Trust Territory laws, acts of the legislature, municipal,\n    common, and customary laws\nNational holiday:\n    Proclamation of the Federated States of Micronesia, 10 May (1979)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    unicameral Congress\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Bailey OLTER (since 21 May 1991); Vice President Jacob NENA (since\n    21 May 1991)\nPolitical parties and leaders:\n    no formal parties\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held ll May 1991 (next to be held March 1995); results - President\n    Bailey OLTER elected president; Vice-President Jacob NENA\n  Congress:\n    last held on 5 March 1991 (next to be held March 1993); results - percent of\n    vote NA; seats - (14 total)\nMember of:\n    ESCAP (associate), ICAO, SPC, SPF, UN, UNCTAD\nDiplomatic representation:\n    Ambassador Jesse B. MAREHALAU; Embassy at 1725 N St., NW, Washington, DC\n    20036; telephone (202) 223-4383\n  US:\n    Ambassador Aurelia BRAZEAL; Embassy at address NA, Kolonia (mailing address\n    is P. O. Box 1286, Pohnpei, Federated States of Micronesia 96941); telephone\n    691-320-2187; FAX 691-320-2186\nFlag:\n    light blue with four white five-pointed stars centered; the stars are\n    arranged in a diamond pattern\n\n:Micronesia, Federated States of Economy\n\nOverview:\n    Economic activity consists primarily of subsistence farming and fishing. The\n    islands have few mineral deposits worth exploiting, except for high-grade\n    phosphate. The potential for a tourist industry exists, but the remoteness\n    of the location and a lack of adequate facilities hinder development.\n    Financial assistance from the US is the primary source of revenue, with the\n    US pledged to spend $1 billion in the islands in the l990s. Geographical\n    isolation and a poorly developed infrastructure are major impediments to\n    long-term growth.\nGNP:\n    purchasing power equivalent - $150 million, per capita $1,500; real growth\n    rate NA% (1989 est.); note - GNP numbers reflect US spending\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA\nBudget:\n    revenues $165 million; expenditures $115 million, including capital\n    expenditures of $20 million (1988)\nExports:\n    $2.3 million (f.o.b., 1988)\n  commodities:\n    copra\n  partners:\n    NA\nImports:\n    $67.7 million (c.i.f., 1988)\n  commodities:\n    NA\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    18,000 kW capacity; 40 million kWh produced, 380 kWh per capita (1990)\nIndustries:\n    tourism, construction, fish processing, craft items from shell, wood, and\n    pearls\nAgriculture:\n    mainly a subsistence economy; copra, black pepper; tropical fruits and\n    vegetables, coconuts, cassava, sweet potatoes, pigs, chickens\nEconomic aid:\n    under terms of the Compact of Free Association, the US will provide $1.3\n    billion in grant aid during the period 1986-2001\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Micronesia, Federated States of Communications\n\nHighways:\n    39 km of paved roads on major islands; also 187 km stone-, coral-, or\n    laterite-surfaced roads\nPorts:\n    Colonia (Yap), Truk (Kosrae), Okat (Kosrae)\nAirports:\n    6 total, 5 usable; 4 with permanent-surface runways; none with runways over\n    2,439 m; 4 with runways 1,220-2,439\nTelecommunications:\n    telephone network - 960 telephone lines total at Kolonia and Truk; islands\n    interconnected by shortwave radio (used mostly for government purposes);\n    16,000 radio receivers, 1,125 TV sets (est. 1987); broadcast stations - 5\n    AM, 1 FM, 6 TV, 1 shortwave; 4 Pacific Ocean INTELSAT earth stations\n\n:Micronesia, Federated States of Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Midway Islands Geography\n\nTotal area:\n    5.2 km2\nLand area:\n    5.2 km2; includes Eastern Island and Sand Island\nComparative area:\n    about nine times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    15 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, but moderated by prevailing easterly winds\nTerrain:\n    low, nearly level\nNatural resources:\n    fish and wildlife\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    coral atoll\nNote:\n    located 2,350 km west-northwest of Honolulu at the western end of Hawaiian\n    Islands group, about one-third of the way between Honolulu and Tokyo; closed\n    to the public\n\n:Midway Islands People\n\nPopulation:\n    453 US military personnel (1992)\n\n:Midway Islands Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US administered by the US Navy, under\n    command of the Barbers Point Naval Air Station in Hawaii and managed\n    cooperatively by the US Navy and the Fish and Wildlife Service of the US\n    Department of the Interior as part of the National Wildlife Refuge System;\n    legislation before Congress in 1990 proposed inclusion of territory within\n    the State of Hawaii\nCapital:\n    none; administered from Washington, DC\nDiplomatic representation:\n    none (territory of the US)\nFlag:\n    the US flag is used\n\n:Midway Islands Economy\n\nOverview:\n    The economy is based on providing support services for US naval operations\n    located on the islands. All food and manufactured goods must be imported.\nElectricity:\n    supplied by US Military\n\n:Midway Islands Communications\n\nHighways:\n    32 km total\nPipelines:\n    7.8 km\nPorts:\n    Sand Island\nAirports:\n    3 total; 2 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 2 with runways 1,220-2,439 m\n\n:Midway Islands Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Moldova Geography\n\nTotal area:\n    33,700 km2\nLand area:\n    33,700 km2\nComparative area:\n    slightly more than twice the size of Hawaii\nLand boundaries:\n    1,389 km; Romania 450 km, Ukraine 939 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    potential dispute with Ukraine over former southern Bessarabian areas;\n    northern Bukovina ceded to Ukraine upon Moldova's incorporation into USSR;\n    internal with ethnic Russians in the Trans-Dnestr and Gagauz Muslims in the\n    South\nClimate:\n    mild winters, warm summers\nTerrain:\n    rolling steppe, gradual slope south to Black Sea\nNatural resources:\n    lignite, phosphorites, gypsum\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    NA\n\n:Moldova People\n\nPopulation:\n    4,458,435 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    19 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    35 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 71 years female (1992)\nTotal fertility rate:\n    2.6 children born/woman (1992)\nNationality:\n    noun - Moldovan(s); adjective - Moldovan\nEthnic divisions:\n    Moldavian (Moldovan) 64.5%, Ukrainian 13.8%, Russian 13.0%, Gagauz 3.5%,\n    Jews 1.5%, Bulgarian 2.0%, other 1.0% (1989 figures)\nReligions:\n    Eastern Orthodox 98.5%, Jewish 1.5%, Baptist only about 1,000 members, other\n    1.0%; note - almost all churchgoers are ethnic Moldovan; the Slavic\n    population are not churchgoers (1991 figures)\nLanguages:\n    Romanian; (Moldovan official), Russian\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    2,095,000; agriculture 34.4%, industry 20.1%, other 45.5% (1985 figures)\nOrganized labor:\n    NA\n\n:Moldova Government\n\nLong-form name:\n    Republic of Moldova\nType:\n    republic\nCapital:\n    Chisinau (Kishinev)\nAdministrative divisions:\n    previously divided into 40 rayons; now to be divided into 7-9 larger\n    districts at some future point\nIndependence:\n    27 August 1991 (from Soviet Union; formerly Soviet Socialist Republic of\n    Moldova)\nConstitution:\n    formulating a new constitution; old constitution is still in effect but has\n    been heavily amended during the past few years\nLegal system:\n    based on civil law system; no judicial review of legislative acts; does not\n    accept compulsory ICJ jurisdiction but accepts many UN and CSCE documents\nNational holiday:\n    Independence Day, 27 August 1991\nExecutive branch:\n    president, prime minister, Cabinet of Ministers\nLegislative branch:\n    Moldovan Supreme Soviet\nJudicial branch:\n    Supreme Court (highest civil court in Moldova)\nLeaders:\n  Chief of State and Head of Government:\n    Prime Minister Valeriy MURAVSKY (since 28 May 1991), 1st Deputy Prime\n    Minister Constantin OBOROC (since June 1990); 1st Deputy Prime Minister\n    Constantin TAMPIZA (since June 1990); 1st Deputy Prime Minister Andrei\n    SANGHELI (since June 1990)\n  Chief of State:\n    President Mircea SNEGUR (since 3 September 1990)\n  Head of Legislature:\n    Chairman of the Supreme Soviet (Premier) Valeriy MURAVSKIY (since May 1991);\n    1st Deputy Prime Minister Ian HADIRCA (since 11 May 1990); Deputy Prime\n    Minister Victor PUSCASU, 21 November 1989; Deputy Prime Minister Mihial\n    PLASICHUK, NA\nPolitical parties and leaders:\n    Moldovan Popular Front, Yuriy ROSHKA, chairman (since summer 1990);\n    Unitatea-Yedinstvo Intermovement, V. YAKOVLEV, chairman; Bulgarian Rebirth\n    Society, Ivan ZABUNOV, chairman; Democratic Group, five cochairmen\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 8 December 1991; results - Mircea SNEGUR won 98.17% of vote\n  Moldovan Supreme Soviet:\n    last held 25 February 1990; results - Moldovan Popular Front 33%,\n    Intermovement 34%, Communist Party 32%; seats - (366 total) Popular Front\n    Club 35; Sovereignty Club 35; Club of Independent Deputies 25; Agrarian Club\n    110; Club Bujak 15; Reality Club 25; Soviet Moldova 80; remaining 41 seats\n    probably belong to Onestr region deputies who usually boycott Moldovan\n    legislative proceedings\n\n:Moldova Government\n\nOther political or pressure groups:\n    United Council of Labor Collectives (UCLC), Igor SMIRNOV, chairman; Social\n    Democratic Party of Moldova (SDPM), V. CHIOBATARU, leader; The Ecology\n    Movement of Moldova (EMM), G. MALARCHUK, chairman; The Christian Democratic\n    League of Women of Moldova (CDLWM), L. LARI, chairman; National Christian\n    Party of Moldova (NCPM), D. TODIKE, M. BARAGA, V. NIKU, leaders; The Peoples\n    Movement Gagauz Khalky (GKh), S. GULGAR, leader; The Democratic Party of\n    Gagauzia (DPG), G. SAVOSTIN, chairman; The Alliance of Working People of\n    Moldova (AWPM), G. POLOGOV, president\nMember of:\n    CSCE, UN\nDiplomatic representation:\n    Ambassador vacant\n  US:\n    Charge Howard Steers; Interim Chancery at #103 Strada Alexei Mateevich,\n    Kishinev (mailing address is APO AE 09862); telephone 8-011-7-0422-23-28-94\n    at Hotel Seabeco in Kishinev\nFlag:\n    same color scheme as Romania - 3 equal vertical bands of blue (hoist side),\n    yellow, and red; emblem in center of flag is of a Roman eagle carrying a\n    cross in its beak and an olive branch in its claws\n\n:Moldova Economy\n\nOverview:\n    Moldova, the next-to-smallest of the former Soviet republics in area, is the\n    most densely inhabited. Moldova has a little more than 1% of the population,\n    labor force, capital stock, and output of the former Soviet Union. Living\n    standards have been below average for the European USSR. The country enjoys\n    a favorable climate, and economic development has been primarily based on\n    agriculture, featuring fruits, vegetables, wine, and tobacco. Industry\n    accounts for 20% of the labor force, whereas agriculture employs more than\n    one-third. Moldova has no major mineral resources and has depended on the\n    former Soviet republics for coal, oil, gas, steel, most electronic\n    equipment, machine tools, and major consumer durables such as automobiles.\n    Its industrial and agricultural products, in turn, have been exported to the\n    other former Soviet republics. Moldova has freed prices on most goods and\n    has legalized private ownership of property, including agricultural land.\n    Moldova's economic prospects are dimmed by the difficulties of moving toward\n    a market economy and the political problems of redefining ties to the other\n    former Soviet republics and Romania.\nGDP:\n    NA; per capita NA; real growth rate -12% (1991)\nInflation rate (consumer prices):\n    97% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA million; expenditures $NA million, including capital\n    expenditures of $NA million (1992)\nExports:\n    $400 million rubles (f.o.b., 1990)\n  commodities:\n    foodstuffs, wine, tobacco, textiles and footwear, machinery, chemicals\n    (1991)\n  partners:\n    NA\nImports:\n    $1.9 billion rubles (c.i.f., 1990)\n  commodities:\n    oil, gas, coal, steel machinery, foodstuffs, automobiles, and other consumer\n    durables\n  partners:\n    NA\nExternal debt:\n    $650 million (1991 est.)\nIndustrial production:\n    growth rate -7% (1991)\nElectricity:\n    3,000,000 kW capacity; 13,000 million kWh produced, 2,806 kWh per capita\n    (1991)\nIndustries:\n    key products (with share of total former Soviet output in parentheses where\n    known): agricultural machinery, foundry equipment, refrigerators and\n    freezers (2.7%), washing machines (5.0%), hosiery (2.0%), refined sugar\n    (3.1%), vegetable oil (3.7%), canned food (8.6%), shoes, textiles\nAgriculture:\n    Moldova's principal economic activity; products (shown in share of total\n    output of the former Soviet republics): Grain (1.6%), sugar beets (2.6%),\n    sunflower seed (4.4%), vegetables (4.4%), fruits and berries (9.7%), grapes\n    (20.1%), meat (1.7%), milk (1.4%), and eggs (1.4%)\nIllicit drugs:\n    transshipment point for illicit drugs to Western Europe\n\n:Moldova Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (1991), $NA, Western (non-US) countries, ODA\n    and OOF bilateral commitments (1991), $NA million\nCurrency:\n    as of May 1992, retaining ruble as currency\nFiscal year:\n    calendar year\n\n:Moldova Communications\n\nRailroads:\n    1,150 km (includes NA km electrified) (1990); does not include industrial\n    lines\nHighways:\n    20,000 km total (1990); 13,900 km hard-surfaced, 6,100 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nPorts:\n    none - landlocked\nMerchant marine:\n    NA\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA\nTelecommunications:\n    poorly supplied with telephones; 215,000 unsatisfied applications for\n    telephone installations (31 January 1990); connected to Ukraine by landline\n    and countries beyond the former USSR through the switching center in Moscow\n\n:Moldova Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops); Russian Forces\n    (Ground, Navy, Air, and Air Defense)\nManpower availability:\n    NA\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Monaco Geography\n\nTotal area:\n    1.9 km2\nLand area:\n    1.9 km2\nComparative area:\n    about three times the size of the Mall in Washington, DC\nLand boundaries:\n    4.4 km; France 4.4 km\nCoastline:\n    4.1 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    Mediterranean with mild, wet winters and hot, dry summers\nTerrain:\n    hilly, rugged, rocky\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    almost entirely urban\nNote:\n    second-smallest independent state in world (after Vatican City)\n\n:Monaco People\n\nPopulation:\n    29,965 (July 1992), growth rate 0.9% (1992)\nBirth rate:\n    7 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    9 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 80 years female (1992)\nTotal fertility rate:\n    1.1 children born/woman (1992)\nNationality:\n    noun - Monacan(s) or Monegasque(s); adjective - Monacan or Monegasque\nEthnic divisions:\n    French 47%, Monegasque 16%, Italian 16%, other 21%\nReligions:\n    Roman Catholic 95%\nLanguages:\n    French (official), English, Italian, Monegasque\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    4,000 members in 35 unions\n\n:Monaco Government\n\nLong-form name:\n    Principality of Monaco\nType:\n    constitutional monarchy\nCapital:\n    Monaco\nAdministrative divisions:\n    4 quarters (quartiers, singular - quartier); Fontvieille, La Condamine,\n    Monaco-Ville, Monte-Carlo\nIndependence:\n    1419, rule by the House of Grimaldi\nConstitution:\n    17 December 1962\nLegal system:\n    based on French law; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 19 November\nExecutive branch:\n    prince, minister of state, Council of Government (cabinet)\nLegislative branch:\n    National Council (Conseil National)\nJudicial branch:\n    Supreme Tribunal (Tribunal Supreme)\nLeaders:\n  Chief of State:\n    Prince RAINIER III (since November 1949); Heir Apparent Prince ALBERT\n    Alexandre Louis Pierre (born 14 March 1958)\n  Head of Government:\n    Minister of State Jean AUSSEIL (since 16 September 1985)\nPolitical parties and leaders:\n    National and Democratic Union (UND), Democratic Union Movement (MUD), Monaco\n    Action, Monegasque Socialist Party (PSM)\nSuffrage:\n    universal adult at age 25\nElections:\n  National Council:\n    last held on 24 January 1988 (next to be held 24 January 1993); results -\n    percent of vote by party NA; seats - (18 total) UND 18\nMember of:\n    ACCT, CSCE, IAEA, ICAO, IMF (observer), IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, ITU, LORCS, UN (observer), UNCTAD, UNESCO, UPU, WHO, WIPO\nDiplomatic representation:\n    Monaco maintains honorary consulates general in Boston, Chicago, Los\n    Angeles, New Orleans, New York, and San Francisco, and honorary consulates\n    in Dallas, Honolulu, Palm Beach, Philadelphia, and Washington\n  US:\n    no mission in Monaco, but the US Consul General in Marseille, France, is\n    accredited to Monaco; Consul General R. Susan WOOD; Consulate General at 12\n    Boulevard Paul Peytral, 13286 Marseille Cedex (mailing address APO AE\n    09777); telephone [33] (91) 549-200\nFlag:\n    two equal horizontal bands of red (top) and white; similar to the flag of\n    Indonesia which is longer and the flag of Poland which is white (top) and\n    red\n\n:Monaco Economy\n\nOverview:\n    Monaco, situated on the French Mediterranean coast, is a popular resort,\n    attracting tourists to its casino and pleasant climate. The Principality has\n    successfully sought to diversify into services and small, high-value-added,\n    nonpolluting industries. The state has no income tax and low business taxes\n    and thrives as a tax haven both for individuals who have established\n    residence and for foreign companies that have set up businesses and offices.\n    About 50% of Monaco's annual revenue comes from value-added taxes on hotels,\n    banks, and the industrial sector; about 25% of revenue comes from tourism.\n    Living standards are high, that is, roughly comparable to those in\n    prosperous French metropolitan suburbs.\nGDP:\n    exchange rate conversion - $475 million, per capita $16,000; real growth\n    rate NA% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    full employment (1989)\nBudget:\n    revenues $424 million; expenditures $376 million, including capital\n    expenditures of $NA (1991)\nExports:\n    $NA; full customs integration with France, which collects and rebates\n    Monacan trade duties; also participates in EC market system through customs\n    union with France\nImports:\n    $NA; full customs integration with France, which collects and rebates\n    Monacan trade duties; also participates in EC market system through customs\n    union with France\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    10,000 kW standby capacity (1991); power supplied by France Indus\nAgriculture:\n    NA\nEconomic aid:\n    NA\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.3801 (January 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:Monaco Communications\n\nRailroads:\n    1.6 km 1.435-meter gauge\nHighways:\n    none; city streets\nPorts:\n    Monaco\nMerchant marine:\n    1 petroleum tanker (1,000 GRT or over) totaling 3,268 GRT/4,959 DWT\nCivil air:\n    no major transport aircraft\nAirports:\n    1 usable airfield with permanent-surface runways\nTelecommunications:\n    served by cable into the French communications system; automatic telephone\n    system; 38,200 telephones; broadcast stations - 3 AM, 4 FM, 5 TV; no\n    communication satellite earth stations\n\n:Monaco Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Mongolia Geography\n\nTotal area:\n    1,565,000 km2\nLand area:\n    1,565,000 km2\nComparative area:\n    slightly larger than Alaska\nLand boundaries:\n    8,114 km; China 4,673 km, Russia 3,441 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    desert; continental (large daily and seasonal temperature ranges)\nTerrain:\n    vast semidesert and desert plains; mountains in west and southwest; Gobi\n    Desert in southeast\nNatural resources:\n    oil, coal, copper, molybdenum, tungsten, phosphates, tin, nickel, zinc,\n    wolfram, fluorspar, gold\nLand use:\n    arable land 1%; permanent crops 0%; meadows and pastures 79%; forest and\n    woodland 10%; other 10%; includes irrigated NEGL%\nEnvironment:\n    harsh and rugged\nNote:\n    landlocked; strategic location between China and Russia\n\n:Mongolia People\n\nPopulation:\n    2,305,516 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    47 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 68 years female (1992)\nTotal fertility rate:\n    4.5 children born/woman (1992)\nNationality:\n    noun - Mongolian(s); adjective - Mongolian\nEthnic divisions:\n    Mongol 90%, Kazakh 4%, Chinese 2%, Russian 2%, other 2%\nReligions:\n    predominantly Tibetan Buddhist, Muslim (about 4%); previously limited\n    religious activity because of Communist regime\nLanguages:\n    Khalkha Mongol used by over 90% of population; minor languages include\n    Turkic, Russian, and Chinese\nLiteracy:\n    90% (male NA%, female NA%) (1989 est.)\nLabor force:\n    NA, but primarily herding/agricultural; over half the adult population is in\n    the labor force, including a large percentage of women; shortage of skilled\n    labor\nOrganized labor:\n    425,000 members of the Central Council of Mongolian Trade Unions (CCMTU)\n    controlled by the government (1984); independent labor organizations now\n    being formed\n\n:Mongolia Government\n\nLong-form name:\n    Mongolia\nType:\n    in transition from Communist state to republic\nCapital:\n    Ulaanbaatar\nAdministrative divisions:\n    18 provinces (aymguud, singular - aymag) and 3 municipalities* (hotuud,\n    singular - hot); Arhangay, Bayanhongor, Bayan-Olgiy, Bulgan, Darhan*,\n    Dornod, Dornogovi, Dundgovi, Dzavhan, Erdenet*, Govi-Altay, Hentiy, Hovd,\n    Hovsgol, Omnogovi, Ovorhangay, Selenge, Suhbaatar, Tov, Ulaanbaatar*, Uvs\nIndependence:\n    13 March 1921 (from China; formerly Outer Mongolia)\nConstitution:\n    12 February 1992\nLegal system:\n    blend of Russian, Chinese, and Turkish systems of law; no constitutional\n    provision for judicial review of legislative acts; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Mongolian People's Revolution (NAADAM) 11-13 July; observed 13 July\nExecutive branch:\n    premier, deputy premiers, Cabinet, president, vice president\nLegislative branch:\n    State Great Hural\nJudicial branch:\n    High Court; serves as appeals court for people's and provincial courts, but\n    to date rarely overturns verdicts of lower courts\nLeaders:\n  Chief of State:\n    President Punsalmaagiyn OCHIRBAT (since 3 September 1990); Vice President\n    Radnaasumbereliyn GONCHIGDORJ (since 7 September 1990)\n  Head of Government:\n    Premier Dashiyn BYAMBASUREN (since 11 September 1990)\nPolitical parties and leaders:\n  ruling party:\n    Mongolian People's Revolutionary Party (MPRP), Budragchagiin DASH-YONDON,\n    general secretary\n  opposition:\n    Social Democratic Party (SDP), BATBAYAR; Mongolian Democratic Association,\n    Ts. ELBEGDORJ, chief coordinator; Mongolian Party of National Progress,\n    GANBOLD\n  other:\n    Mongolian Democratic Party (MDP), BATUUL; Free Labor Party, C. DUL; note -\n    opposition parties were legalized in May 1990; additional parties exist: The\n    Green Party, The Buddhist Party, The Republican Party, Mongolian People's\n    Party, and Mongolian Revival Party; these were formed but may not be\n    officially registered because of low rates of membership\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 3 September 1990 (next to be held NA July 1994); results -\n    Punsalmaagiyn OCHIRBAT elected by the People's Great Hural\n  State Great Hural:\n    first time held June 1992; note - according to the new present Constitution,\n    the two parliamentary bodies are to be combined into a single popularly\n    elected house consisting of 76 members; results - NA\n\n:Mongolia Government\n\n  People's Small Hural:\n    last held on 29 July 1990 (next to be held June 1992); results - MPRP 62.3%,\n    MDP 24.5%, SDP 7. 5%, PNP 5.7%; seats - (50 total) MPRP 33, other 17; note -\n    People's Small Hural will not exist after State Great Hural is assembled\nCommunists:\n    MPRP membership 90,000 (1990 est.)\nMember of:\n    AsDB, ESCAP, FAO, GATT, G-77, IAEA, IBEC, IBRD, ICAO, ILO, IMF, IOC, ISO,\n    ITU, LORCS, NAM, UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Luvsandorj DAWAGIV; Chancery, (202) 983-1962\n  US:\n    Ambassador Joseph E. LAKE; Deputy Chief of Mission Thomas E. DOWLING;\n    Embassy at Ulaanbaatar, c/o American Embassy Beijing; PSC 461, Box 300, FPO\n    AP 06521-0002; telephone (800) 29095 and 29639\nFlag:\n    a new flag of unknown description reportedly has been adopted\n\n:Mongolia Economy\n\nOverview:\n    Mongolia's severe climate, scattered population, and wide expanses of\n    unproductive land have constrained economic development. Economic activity\n    traditionally has been based on agriculture and the breeding of livestock -\n    Mongolia has the highest number of livestock per person in the world. In\n    recent years extensive mineral resources have been developed with Soviet\n    support. The mining and processing of coal, copper, molybdenum, tin,\n    tungsten, and gold account for a large part of industrial production. Timber\n    and fishing are also important sectors. In 1991-92 Mongolian leadership is\n    struggling with severe economic dislocations, mainly attributable to the\n    economic crumbling of the USSR, by far Mongolia's leading trade and\n    development partner. Moscow almost certainly cut aid in 1991, and the\n    dissolution of the USSR at yearend 1991 makes prospects for aid quite bleak\n    for 1992. Industry in 1991-92 has been hit hard by energy shortages, mainly\n    due to disruptions in coal production and shortfalls in petroleum imports.\n    The government is moving away from the Soviet-style centrally planned\n    economy through privatization and price reform.\nGDP:\n    exchange rate conversion - $2.1 billion, per capita $900; real growth rate\n    -3% (1991 est.)\nInflation rate (consumer prices):\n    100% (1991 est.)\nUnemployment rate:\n    15% (1991 est.)\nBudget:\n    deficit of $67 million (1991)\nExports:\n    $279 million (f.o.b., 1991)\n  commodities:\n    copper, livestock, animal products, cashmere, wool, hides, fluorspar, other\n    nonferrous metals\n  partners:\n    USSR 75%, China 10%, Japan 4%\nImports:\n    $360 million (f.o.b., 1991)\n  commodities:\n    machinery and equipment, fuels, food products, industrial consumer goods,\n    chemicals, building materials, sugar, tea\n  partners:\n    USSR 75%, Austria 5%, China 5%\nExternal debt:\n    $16.8 billion (yearend 1990); 98.6% with USSR\nIndustrial production:\n    growth rate -12% (1991 est.)\nElectricity:\n    1,238,000 kW capacity; 3,700 million kWh produced, 1,692 kWh per capita\n    (1990)\nIndustries:\n    copper, processing of animal products, building materials, food and\n    beverage, mining (particularly coal)\nAgriculture:\n    accounts for about 20% of GDP and provides livelihood for about 50% of the\n    population; livestock raising predominates (primarily sheep and goats, but\n    also cattle, camels, and horses); crops - wheat, barley, potatoes, forage\n\n:Mongolia Economy\n\nEconomic aid:\n    about $300 million in trade credits and $34 million in grant aid from USSR\n    and other CEMA countries, plus $7.4 million from UNDP (1990); in 1991, $170\n    million in grants and technical assistance from Western donor countries,\n    including $30 million from World Bank and $30 million from the IMF; over\n    $200 million from donor countries projected in 1992\nCurrency:\n    tughrik (plural - tughriks); 1 tughrik (Tug) = 100 mongos\nExchange rates:\n    tughriks (Tug) per US$1 - 7.1 (1991), 5.63 (1990), 3.00 (1989)\nFiscal year:\n    calendar year\n\n:Mongolia Communications\n\nRailroads:\n    1,750 km 1.524-meter broad gauge (1988)\nHighways:\n    46,700 km total; 1,000 km hard surface; 45,700 km other surfaces (1988)\nInland waterways:\n    397 km of principal routes (1988)\nCivil air:\n    25 major transport aircraft\nAirports:\n    81 total, 31 usable; 11 with permanent-surface runways; fewer than 5 with\n    runways over 3,659 m; fewer than 20 with runways 2,440-3,659 m; 12 with\n    runways 1,220-2,439 m\nTelecommunications:\n    63,000 telephones (1989); broadcast stations - 12 AM, 1 FM, 1 TV (with 18\n    provincial repeaters); repeat of Russian TV; 120,000 TVs; 220,000 radios; at\n    least 1 earth station\n\n:Mongolia Defense Forces\n\nBranches:\n    Mongolian People's Army (includes Border Guards), Air Force\nManpower availability:\n    males 15-49, 551,548; 359,904 fit for military service; 25,275 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $22.8 million of GDP (1992 budget)\n\n:Montserrat Geography\n\nTotal area:\n    100 km2\nLand area:\n    100 km2\nComparative area:\n    about 0.6 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    40 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical; little daily or seasonal temperature variation\nTerrain:\n    volcanic islands, mostly mountainous, with small coastal lowland\nNatural resources:\n    negligible\nLand use:\n    arable land 20%; permanent crops 0%; meadows and pastures 10%; forest and\n    woodland 40%; other 30%\nEnvironment:\n    subject to severe hurricanes from June to November\nNote:\n    located 400 km southeast of Puerto Rico in the Caribbean Sea\n\n:Montserrat People\n\nPopulation:\n    12,617 (July 1992), growth rate 0.4 (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 78 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Montserratian(s); adjective - Montserratian\nEthnic divisions:\n    mostly black with a few Europeans\nReligions:\n    Anglican, Methodist, Roman Catholic, Pentecostal, Seventh-Day Adventist,\n    other Christian denominations\nLanguages:\n    English\nLiteracy:\n    97% (male 97%, female 97%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    5,100; community, social, and personal services 40.5%, construction 13.5%,\n    trade, restaurants, and hotels 12.3%, manufacturing 10.5%, agriculture,\n    forestry, and fishing 8.8%, other 14.4% (1983 est.)\nOrganized labor:\n    30% of labor force, three trade unions with 1,500 members (1984 est.)\n\n:Montserrat Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    Plymouth\nAdministrative divisions:\n    3 parishes; Saint Anthony, Saint Georges, Saint Peter\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    1 January 1960\nLegal system:\n    English common law and statute law\nNational holiday:\n    Celebration of the Birthday of the Queen (second Saturday of June)\nExecutive branch:\n    monarch, governor, Executive Council (cabinet), chief minister\nLegislative branch:\n    unicameral Legislative Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor David\n    TAYLOR (since NA 1990)\n  Head of Government:\n    Chief Minister Reuben T. MEADE (since October 1991)\nPolitical parties and leaders:\n    National Progressive Party (NPP) Reuben T. MEADE; People's Liberation\n    Movement (PLM), Noel TUITT; National Development Party (NDP), Bertrand\n    OSBORNE; Independent (IND), Ruby BRAMBLE\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Council:\n    last held on 8 October 1991; results - percent of vote by party NA; seats -\n    (11 total, 7 elected) NPP 4, NDP 1, PLM 1, independent 1\nMember of:\n    CARICOM, CDB, ECLAC (associate), ICFTU, OECS, WCL\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the\n    Montserratian coat of arms centered in the outer half of the flag; the coat\n    of arms features a woman standing beside a yellow harp with her arm around a\n    black cross\n\n:Montserrat Economy\n\nOverview:\n    The economy is small and open with economic activity centered on tourism and\n    construction. Tourism is the most important sector and accounted for 20% of\n    GDP in 1986. Agriculture accounted for about 4% of GDP and industry 10%. The\n    economy is heavily dependent on imports, making it vulnerable to\n    fluctuations in world prices. Exports consist mainly of electronic parts\n    sold to the US.\nGDP:\n    exchange rate conversion - $54.2 million, per capita $4,500 (1988); real\n    growth rate 10% (1990 est.)\nInflation rate (consumer prices):\n    6.8% (1990)\nUnemployment rate:\n    3.0% (1987)\nBudget:\n    revenues $12.1 million; expenditures $14.3 million, including capital\n    expenditures of $3.2 million (1988)\nExports:\n    $2.3 million (f.o.b., 1988 est.)\n  commodities:\n    electronic parts, plastic bags, apparel, hot peppers, live plants, cattle\n  partners:\n    NA\nImports:\n    $30 million (c.i.f., 1988 est.)\n  commodities:\n    machinery and transportation equipment, foodstuffs, manufactured goods,\n    fuels, lubricants, and related materials\n  partners:\n    NA\nExternal debt:\n    $2.05 million (1987)\nIndustrial production:\n    growth rate 8.1% (1986); accounts for 10% of GDP\nElectricity:\n    5,271 kW capacity; 12 million kWh produced, 960 kWh per capita (1991)\nIndustries:\n    tourism; light manufacturing - rum, textiles, electronic appliances\nAgriculture:\n    accounts for 4% of GDP; small-scale farming; food crops - tomatoes, onions,\n    peppers; not self-sufficient in food, especially livestock products\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89), $90\n    million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    1 April - 31 March\n\n:Montserrat Communications\n\nHighways:\n    280 km total; about 200 km paved, 80 km gravel and earth\nPorts:\n    Plymouth\nAirports:\n    1 with permanent-surface runways 1,036 m\nTelecommunications:\n    3,000 telephones; broadcast stations - 8 AM, 4 FM, 1 TV\n\n:Montserrat Defense Forces\n\nBranches:\n    Police Force\nNote:\n    defense is the responsibility of the UK\n\n:Morocco Geography\n\nTotal area:\n    446,550 km2\nLand area:\n    446,300 km2\nComparative area:\n    slightly larger than California\nLand boundaries:\n    2,002 km; Algeria 1,559 km, Western Sahara 443 km\nCoastline:\n    1,835 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims and administers Western Sahara, but sovereignty is unresolved; the UN\n    is attempting to hold a referendum; the UN-administered cease-fire has been\n    currently in effect since September 1991 Spain controls five places of\n    sovereignty (plazas de soberania) on and off the coast of Morocco - the\n    coastal enclaves of Ceuta and Melilla which Morocco contests as well as the\n    islands of Penon de Alhucemas, Penon de Velez de la Gomera, and Islas\n    Chafarinas\nClimate:\n    Mediterranean, becoming more extreme in the interior\nTerrain:\n    mostly mountains with rich coastal plains\nNatural resources:\n    phosphates, iron ore, manganese, lead, zinc, fish, salt\nLand use:\n    arable land 18%; permanent crops 1%; meadows and pastures 28%; forest and\n    woodland 12%; other 41%; includes irrigated 1%\nEnvironment:\n    northern mountains geologically unstable and subject to earthquakes;\n    desertification\nNote:\n    strategic location along Strait of Gibraltar\n\n:Morocco People\n\nPopulation:\n    26,708,587 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    - 1 migrant/1,000 population (1992)\nInfant mortality rate:\n    56 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 67 years female (1992)\nTotal fertility rate:\n    3.7 children born/woman (1992)\nNationality:\n    noun - Moroccan(s); adjective - Moroccan\nEthnic divisions:\n    Arab-Berber 99.1%, non-Moroccan 0.7%, Jewish 0.2%\nReligions:\n    Muslim 98.7%, Christian 1.1%, Jewish 0.2%\nLanguages:\n    Arabic (official); several Berber dialects; French is often the language of\n    business, government, and diplomacy\nLiteracy:\n    50% (male 61%, female 38%) age 15 and over can read and write (1990 est.)\nLabor force:\n    7,400,000; agriculture 50%, services 26%, industry 15%, other 9% (1985)\nOrganized labor:\n    about 5% of the labor force, mainly in the Union of Moroccan Workers (UMT)\n    and the Democratic Confederation of Labor (CDT)\n\n:Morocco Government\n\nLong-form name:\n    Kingdom of Morocco\nType:\n    constitutional monarchy\nCapital:\n    Rabat\nAdministrative divisions:\n    37 provinces and 5 municipalities* (wilayas, singular - wilaya); Agadir, Al\n    Hoceima, Azilal, Beni Mellal, Ben Slimane, Boulemane, Casablanca*, Chaouen,\n    El Jadida, El Kelaa des Srarhna, Er Rachidia, Essaouira, Fes, Fes*, Figuig,\n    Guelmim, Ifrane, Kenitra, Khemisset, Khenifra, Khouribga, Laayoune, Larache,\n    Marrakech, Marrakech*, Meknes, Meknes*, Nador, Ouarzazate, Oujda,\n    Rabat-Sale*, Safi, Settat, Sidi Kacem, Tanger, Tan-Tan, Taounate,\n    Taroudannt, Tata, Taza, Tetouan, Tiznit\nIndependence:\n    2 March 1956 (from France)\nConstitution:\n    10 March 1972\nLegal system:\n    based on Islamic law and French and Spanish civil law system; judicial\n    review of legislative acts in Constitutional Chamber of Supreme Court\nNational holiday:\n    National Day (anniversary of King Hassan II's accession to the throne), 3\n    March (1961)\nExecutive branch:\n    monarch, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Chamber of Representatives (Majlis Nawab)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    King HASSAN II (since 3 March 1961)\n  Head of Government:\n    Prime Minister Dr. Azzedine LARAKI (since 30 September 1986)\nPolitical parties and leaders:\n    Morocco has 15 political parties; the major ones are Istiqlal, M'Hamed\n    BOUCETTA; Socialist Union of Popular Forces (USFP); Popular Movement (MP),\n    Secretariat General; National Assembly of Independents (RNI), Ahmed OSMAN;\n    National Democratic Party (PND), Mohamed Arsalane EL-JADIDI; Party for\n    Progress and Socialism (PPS); Constitutional Union (UC), Maati BOUABID\nSuffrage:\n    universal at age 21\nElections:\n  Chamber of Representatives:\n    last held on 14 September 1984 (were scheduled for September 1990, but\n    postponed until NA 1992); results - percent of vote by party NA; seats -\n    (306 total, 206 elected) CU 83, RNI 61, MP 47, Istiqlal 41, USFP 36, PND 24,\n    other 14\nCommunists:\n    about 2,000\nMember of:\n    ABEDA, ACCT (associate), AfDB, AFESD, AL, AMF, AMU, CCC, EBRD, ECA, FAO,\n    G-77, GATT, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IDB, IFAD, IFC, IIB, ILO,\n    IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, OAS (observer), NAM,\n    OIC, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WHO, WIPO, WMO, WTO\n\n:Morocco Government\n\nDiplomatic representation:\n    Ambassador Mohamed BELKHAYAT; Chancery at 1601 21st Street NW, Washington,\n    DC 20009; telephone (202) 462-7979; there is a Moroccan Consulate General in\n    New York\n  US:\n    Ambassador Frederick VREELAND; Embassy at 2 Avenue de Marrakech, Rabat\n    (mailing address is P. O. Box 120, Rabat, or PSC 74, APO AE 09718; telephone\n    [212] (7) 76-22-65; FAX [212] (7) 76-56-61; there is a US Consulate General\n    in Casablanca\nFlag:\n    red with a green pentacle (five-pointed, linear star) known as Solomon's\n    seal in the center of the flag; green is the traditional color of Islam\n\n:Morocco Economy\n\nOverview:\n    The economy had recovered moderately in 1990 because of: the resolution of a\n    trade dispute with India over phosphoric acid sales, a rebound in textile\n    sales to the EC, lower prices for food imports, a sharp increase in worker\n    remittances, increased Arab donor aid, and generous debt rescheduling\n    agreements. Economic performance in 1991 was mixed. A record harvest helped\n    real GDP advance by 4.2%, although nonagricultural output grew by less than\n    1%. Inflation accelerated slightly as easier financial policies triggered\n    rapid credit and monetary growth. Despite recovery of domestic demand,\n    import volume growth slowed while export volume was adversely affected by\n    phosphate marketing difficulties. In January 1992, Morocco reached a new\n    12-month standby arrangement for $129 million with the IMF. In February\n    1992, the Paris Club rescheduled $1.4 billion of Morocco's commercial debt.\n    This is thought to be Morocco's last rescheduling. By 1993 the Moroccan\n    authorities hope to be in a position to meet all debt service obligations\n    without additional rescheduling. Servicing this large debt, high\n    unemployment, and Morocco's vulnerability to external economic forces remain\n    severe long-term problems.\nGDP:\n    exchange rate conversion - $27.3 billion, per capita $1,060; real growth\n    rate 4.2% (1991)\nInflation rate (consumer prices):\n    8.1% (1991 )\nUnemployment rate:\n    16% (1991)\nBudget:\n    revenues $7.5 billion; expenditures $7.7 billion, including capital\n    expenditures of $1.9 billion (1992)\nExports:\n    $4.1 billion (f.o.b., 1991)\n  commodities:\n    food and beverages 30%, semiprocessed goods 23%, consumer goods 21%,\n    phosphates 17%\n  partners:\n    EC 58%, India 7%, Japan 5%, USSR 3%, US 2%\nImports:\n    $6.0 billion (f.o.b., 1991)\n  commodities:\n    capital goods 24%, semiprocessed goods 22%, raw materials 16%, fuel and\n    lubricants 16%, food and beverages 13%, consumer goods 9%\n  partners:\n    EC 53%, US 11%, Canada 4%, Iraq 3%, USSR 3%, Japan 2%\nExternal debt:\n    $20 billion (1991)\nIndustrial production:\n    growth rate 4% (1989 est.); accounts for an estimated 20% of GDP\nElectricity:\n    2,270,000 kW capacity; 8,170 million kWh produced, 310 kWh per capita (1991)\nIndustries:\n    phosphate rock mining and processing, food processing, leather goods,\n    textiles, construction, tourism\nAgriculture:\n    50% of employment and 30% of export value; not self-sufficient in food;\n    cereal farming and livestock raising predominate; barley, wheat, citrus\n    fruit, wine, vegetables, olives; fishing catch of 491,000 metric tons in\n    1987\n\n:Morocco Economy\n\nIllicit drugs:\n    illicit producer of hashish; trafficking on the increase for both domestic\n    and international drug markets; shipments of hashish mostly directed to\n    Western Europe; occasional transit point for cocaine from South America\n    destined for Western Europe.\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.3 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $7.5 billion; OPEC\n    bilateral aid (1979-89), $4.8 billion; Communist countries (1970-89), $2.5\n    billion; $2.8 billion debt canceled by Saudi Arabia (1991); IMF standby\n    agreement worth $13 million; World Bank, $450 million (1991)\nCurrency:\n    Moroccan dirham (plural - dirhams); 1 Moroccan dirham (DH) = 100 centimes\nExchange rates:\n    Moroccan dirhams (DH) per US$1 - 8.889 (March 1992), 8.707 (1991), 8.242\n    (1990), 8.488 (1989), 8.209 (1988), 8.359 (1987)\nFiscal year:\n    calendar year\n\n:Morocco Communications\n\nRailroads:\n    1,893 km 1.435-meter standard gauge (246 km double track, 974 km\n    electrified)\nHighways:\n    59,198 km total; 27,740 km paved, 31,458 km gravel, crushed stone, improved\n    earth, and unimproved earth\nPipelines:\n    crude oil 362 km; petroleum products (abandoned) 491 km; natural gas 241 km\nPorts:\n    Agadir, Casablanca, El Jorf Lasfar, Kenitra, Mohammedia, Nador, Safi,\n    Tangier; also Spanish-controlled Ceuta and Melilla\nMerchant marine:\n    51 ships (1,000 GRT or over) totaling 315,249 GRT/487,479 DWT; includes 10\n    cargo, 2 container, 12 refrigerated cargo, 6 roll-on/roll-off, 3 petroleum\n    tanker, 11 chemical tanker, 4 bulk, 3 short-sea passenger\nCivil air:\n    28 major transport aircraft\nAirports:\n    75 total, 67 usable; 26 with permanent-surface runways; 2 with runways over\n    3,659 m; 13 with runways 2,440-3,659 m; 27 with runways 1,220-2,439 m\nTelecommunications:\n    good system composed of wire lines, cables, and radio relay links; principal\n    centers are Casablanca and Rabat; secondary centers are Fes, Marrakech,\n    Oujda, Tangier, and Tetouan; 280,000 telephones; broadcast stations - 20 AM,\n    7 FM, 26 TV and 26 additional rebroadcast sites; 5 submarine cables;\n    satellite earth stations - 2 Atlantic Ocean INTELSAT and 1 ARABSAT; radio\n    relay to Gibraltar, Spain, and Western Sahara; coaxial cable and microwave\n    to Algeria; microwave network linking Syria, Jordan, Egypt, Libya, Tunisia,\n    Algeria, and Morocco\n\n:Morocco Defense Forces\n\nBranches:\n    Royal Moroccan Army, Royal Moroccan Navy, Royal Moroccan Air Force, Royal\n    Gendarmerie, Auxiliary Forces\nManpower availability:\n    males 15-49, 6,604,712; 4,196,449 fit for military service; 293,204 reach\n    military age (18) annually; limited conscription\nDefense expenditures:\n    exchange rate conversion - $1.1 billion, 4.2% of GDP (1992 budget)\n\n:Mozambique Geography\n\nTotal area:\n    801,590 km2\nLand area:\n    784,090 km2\nComparative area:\n    slightly less than twice the size of California\nLand boundaries:\n    4,571 km total; Malawi 1,569 km, South Africa 491 km, Swaziland 105 km,\n    Tanzania 756 km, Zambia 419 km, Zimbabwe 1,231 km\nCoastline:\n    2,470 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical to subtropical\nTerrain:\n    mostly coastal lowlands, uplands in center, high plateaus in northwest,\n    mountains in west\nNatural resources:\n    coal, titanium\nLand use:\n    arable land 4%; permanent crops NEGL%; meadows and pastures 56%; forest and\n    woodland 20%; other 20%; includes irrigated NEGL%\nEnvironment:\n    severe drought and floods occur in south; desertification\n\n:Mozambique People\n\nPopulation:\n    15,469,150 (July 1992), growth rate 4.1% (1992); note - 1.5 million\n    Mozambican refugees; 900,000 in Malawi (1991 est.)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    17 deaths/1,000 population (1992)\nNet migration rate:\n    12 migrants/1,000 population (1992)\nInfant mortality rate:\n    134 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    46 years male, 49 years female (1992)\nTotal fertility rate:\n    6.4 children born/woman (1992)\nNationality:\n    noun - Mozambican(s); adjective - Mozambican\nEthnic divisions:\n    majority from indigenous tribal groups; Europeans about 10,000,\n    Euro-Africans 35,000, Indians 15,000\nReligions:\n    indigenous beliefs 60%, Christian 30%, Muslim 10%\nLanguages:\n    Portuguese (official); many indigenous dialects\nLiteracy:\n    33% (male 45%, female 21%) age 15 and over can read and write (1990 est.)\nLabor force:\n    NA, but 90% engaged in agriculture\nOrganized labor:\n    225,000 workers belong to a single union, the Mozambique Workers'\n    Organization (OTM)\n\n:Mozambique Government\n\nLong-form name:\n    Republic of Mozambique\nType:\n    republic\nCapital:\n    Maputo\nAdministrative divisions:\n    10 provinces (provincias, singular - provincia); Cabo Delgado, Gaza,\n    Inhambane, Manica, Maputo, Nampula, Niassa, Sofala, Tete, Zambezia\nIndependence:\n    25 June 1975 (from Portugal)\nConstitution:\n    30 November 1990\nLegal system:\n    based on Portuguese civil law system and customary law\nNational holiday:\n    Independence Day, 25 June (1975)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral Assembly of the Republic (Assembleia da Republica)\nJudicial branch:\n    People's Courts at all levels\nLeaders:\n  Chief of State:\n    President Joaquim Alberto CHISSANO (since 6 November 1986)\n  Head of Government:\n    Prime Minister Mario da Graca MACHUNGO (since 17 July 1986)\nPolitical parties and leaders:\n    Front for the Liberation of Mozambique (FRELIMO) - formerly a Marxist\n    organization with close ties to the USSR - was the only legal party before\n    30 November 1990 when the new Constitution went into effect establishing a\n    multiparty system; note - the government plans multiparty elections as early\n    as 1993; 14 parties, including the Liberal Democratic Party of Mozambique\n    (PALMO), the Mozambique National Union (UNAMO), and the Mozambique National\n    Movement (MONAMO) have already emerged\nSuffrage:\n    universal adult at age 18\nElections:\n    draft electoral law provides for periodic, direct presidential and Assembly\n    elections\nCommunists:\n    about 200,000 FRELIMO members; note - FRELIMO no longer considers itself a\n    Communist party\nMember of:\n    ACP, AfDB, CCC, ECA, FAO, FLS, G-77, IBRD, ICAO, IDA, IFAD, IFC, ILO, IMF,\n    INMARSAT, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, SADCC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador Hipolito PATRICIO; Chancery at Suite 570, 1990 M Street NW,\n    Washington, DC 20036; telephone (202) 293-7146\n  US:\n    Ambassador Townsend B. FRIEDMAN, Jr.; Embassy at Avenida Kenneth Kuanda, 193\n    Maputo (mailing address is P. O. Box 783, Maputo); telephone [258] (1)\n    49-27-97, 49-01-67, 49-03-50; FAX [258] (1) 49-01-14\n\n:Mozambique Government\n\nFlag:\n    three equal horizontal bands of green (top), black, and yellow with a red\n    isosceles triangle based on the hoist side; the black band is edged in\n    white; centered in the triangle is a yellow five-pointed star bearing a\n    crossed rifle and hoe in black superimposed on an open white book\n\n:Mozambique Economy\n\nOverview:\n    One of Africa's poorest countries, Mozambique has failed to exploit the\n    economic potential of its sizable agricultural, hydropower, and\n    transportation resources. Indeed, national output, consumption, and\n    investment declined throughout the first half of the 1980s because of\n    internal disorders, lack of government administrative control, and a growing\n    foreign debt. A sharp increase in foreign aid, attracted by an economic\n    reform policy, has resulted in successive years of economic growth since\n    1985. Agricultural output, nevertheless, is at about only 75% of its 1981\n    level, and grain has to be imported. Industry operates at only 20-40% of\n    capacity. The economy depends heavily on foreign assistance to keep afloat.\n    The continuation of civil strife through 1991 has dimmed chances of foreign\n    investment, and growth was a mere 1%. Living standards, already abysmally\n    low, dropped by 3-4% in both 1990 and 1991.\nGDP:\n    exchange rate conversion - $1.7 billion, per capita $120; real growth rate\n    1.0% (1991 est.)\nInflation rate (consumer prices):\n    40.5% (1990 est.)\nUnemployment rate:\n    50% (1989 est.)\nBudget:\n    revenues $369 million; expenditures $860 million, including capital\n    expenditures of $432 million (1989 est.)\nExports:\n    $117 million (f.o.b., 1990 est.)\n  commodities:\n    shrimp 48%, cashews 21%, sugar 10%, copra 3%, citrus 3%\n  partners:\n    US, Western Europe, GDR, Japan\nImports:\n    $870 million (c.i.f., 1990 est.), including aid\n  commodities:\n    food, clothing, farm equipment, petroleum\n  partners:\n    US, Western Europe, USSR\nExternal debt:\n    $4.9 billion (1991 est.)\nIndustrial production:\n    growth rate 5% (1989 est.)\nElectricity:\n    2,270,000 kW capacity; 1,745 million kWh produced, 115 kWh per capita (1991)\nIndustries:\n    food, beverages, chemicals (fertilizer, soap, paints), petroleum products,\n    textiles, nonmetallic mineral products (cement, glass, asbestos), tobacco\nAgriculture:\n    accounts for 80% of the labor force, 50% of GDP, and about 90% of exports;\n    cash crops - cotton, cashew nuts, sugarcane, tea, shrimp; other crops -\n    cassava, corn, rice, tropical fruits; not self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $350 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.4 billion; OPEC\n    bilateral aid (1979-89), $37 million; Communist countries (1970-89), $890\n    million\nCurrency:\n    metical (plural - meticais); 1 metical (Mt) = 100 centavos\nExchange rates:\n    meticais (Mt) per US$1 - 2,358 (1 May 1992), 1,811.18 (1991), 929.00 (1990),\n    800.00 (1989), 528.60 (1988), 289.44 (1987)\n\n:Mozambique Economy\n\nFiscal year:\n    calendar year\n\n:Mozambique Communications\n\nRailroads:\n    3,288 km total; 3,140 km 1.067-meter gauge; 148 km 0.762-meter narrow gauge;\n    Malawi-Nacala, Malawi-Beira, and Zimbabwe-Maputo lines are subject to\n    closure because of insurgency\nHighways:\n    26,498 km total; 4,593 km paved; 829 km gravel, crushed stone, stabilized\n    soil; 21,076 km unimproved earth\nInland waterways:\n    about 3,750 km of navigable routes\nPipelines:\n    crude oil (not operating) 306 km; petroleum products 289 km\nPorts:\n    Maputo, Beira, Nacala\nMerchant marine:\n    5 cargo ships (1,000 GRT or over) totaling 7,806 GRT/12,873 DWT\nCivil air:\n    7 major transport aircraft\nAirports:\n    195 total, 137 usable; 27 with permanent-surface runways; 1 with runways\n    over 3,659 m; 5 with runways 2,440-3,659 m; 26 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of troposcatter, open-wire lines, and radio relay; broadcast\n    stations - 29 AM, 4 FM, 1 TV; earth stations - 2 Atlantic Ocean INTELSAT and\n    3 domestic Indian Ocean INTELSAT\n\n:Mozambique Defense Forces\n\nBranches:\n    Army, Naval Command, Air and Air Defense Forces, Border Guards, Militia\nManpower availability:\n    males 15-49, 3,490,554; 2,004,913 fit for military service\nDefense expenditures:\n    exchange rate conversion - $107 million, 6-7% of GDP (1989)\n\n:Namibia Geography\n\nTotal area:\n    824,290 km2\nLand area:\n    823,290 km2\nComparative area:\n    slightly more than half the size of Alaska\nLand boundaries:\n    3,935 km total; Angola 1,376 km, Botswana 1,360 km, South Africa 966 km,\n    Zambia 233 km\nCoastline:\n    1,489 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    short section of boundary with Botswana is indefinite; disputed island with\n    Botswana in the Chobe River; quadripoint with Botswana, Zambia, and Zimbabwe\n    is in disagreement; claim by Namibia to Walvis Bay and 12 offshore islands\n    administered by South Africa; Namibia and South Africa have agreed to\n    jointly administer the area for an interim period; the terms and dates to be\n    covered by joint administration arrangements have not been established at\n    this time, and Namibia will continue to maintain a claim to sovereignty over\n    the entire area; recent dispute with Botswana over uninhabited Sidudu Island\n    in the Linyanti River\nClimate:\n    desert; hot, dry; rainfall sparse and erratic\nTerrain:\n    mostly high plateau; Namib Desert along coast; Kalahari Desert in east\nNatural resources:\n    diamonds, copper, uranium, gold, lead, tin, lithium, cadmium, zinc, salt,\n    vanadium, natural gas, fish; suspected deposits of oil, natural gas, coal,\n    and iron ore\nLand use:\n    arable land 1%; permanent crops NEGL%; meadows and pastures 64%; forest and\n    woodland 22%; other 13%; includes irrigated NEGL%\nEnvironment:\n    inhospitable with very limited natural water resources; desertification\nNote:\n    Walvis Bay area is an exclave of South Africa in Namibia\n\n:Namibia People\n\nPopulation:\n    1,574,927 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    66 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    58 years male, 63 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Namibian(s); adjective - Namibian\nEthnic divisions:\n    black 86%, white 6.6%, mixed 7.4%; about 50% of the population belong to the\n    Ovambo tribe and 9% from the Kavangos tribe\nReligions:\n    predominantly Christian\nLanguages:\n    English is official language; Afrikaans is common language of most of\n    population and about 60% of white population, German 32%, English 7%;\n    several indigenous languages\nLiteracy:\n    38% (male 45%, female 31%) age 15 and over can read and write (1960)\nLabor force:\n    500,000; agriculture 60%, industry and commerce 19%, services 8%, government\n    7%, mining 6% (1981 est.)\nOrganized labor:\n    20 trade unions representing about 90,000 workers\n\n:Namibia Government\n\nLong-form name:\n    Republic of Namibia\nType:\n    republic\nCapital:\n    Windhoek\nAdministrative divisions:\n    the former administrative structure of 26 districts has been abolished and\n    14 temporary regions are still being determined; note - the 26 districts\n    were Bethanien, Boesmanland, Caprivi Oos, Damaraland, Gobabis, Grootfontein,\n    Hereroland Oos, Hereroland Wes, Kaokoland, Karasburg, Karibib, Kavango,\n    Keetmanshoop, Luderitz, Maltahohe, Mariental, Namaland, Okahandja, Omaruru,\n    Otjiwarongo, Outjo, Owambo, Rehoboth, Swakopmund, Tsumeb, Windhoek\nIndependence:\n    21 March 1990 (from South African mandate)\nConstitution:\n    ratified 9 February 1990\nLegal system:\n    based on Roman-Dutch law and 1990 constitution\nNational holiday:\n    Independence Day, 21 March (1990)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    bicameral; House of Review (upper house, to be established with elections in\n    late 1992 by planned new regional authorities); National Assembly (lower\n    house elected by universal suffrage)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Sam NUJOMA (since 21 March 1990)\nPolitical parties and leaders:\n    South-West Africa People's Organization (SWAPO), Sam NUJOMA; Democratic\n    Turnhalle Alliance (DTA), Dirk MUDGE; United Democratic Front (UDF), Justus\n    GAROEB; Action Christian National (ACN), Kosie PRETORIUS; National Patriotic\n    Front (NPF), Moses KATJIUONGUA; Federal Convention of Namibia (FCN), Hans\n    DIERGAARDT; Namibia National Front (NNF), Vekuii RUKORO\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 16 February 1990 (next to be held March 1995); results - Sam\n    NUJOMA was elected president by the Constituent Assembly (now the National\n    Assembly)\n  National Assembly:\n    last held on 7-11 November 1989 (next to be held by November 1994); results\n    - percent of vote by party NA; seats - (72 total) SWAPO 41, DTA 21, UDF 4,\n    ACN 3, NNF 1, FCN 1, NPF 1\nOther political or pressure groups:\n    NA\nMember of:\n    ACP, AfDB, CECA (associate), ECA, FAO, FLS, G-77, IAEA, IBRD, ICAO, ILO,\n    IMF, ITU, NAM, SACU, SADCC, UN, UNCTAD, UNESCO, UNHCR, UNIDO, WCL, WFTU, WHO\nDiplomatic representation:\n    Ambassador Tuliameni KALOMOH; Chancery at 1605 New Hampshire Ave. NW,\n    Washington, DC 20009 (mailing address is PO Box 34738, Washington, DC\n    20043); telephone (202) 986-0540\n\n:Namibia Government\n\n  US:\n    Ambassador Genta Hawkins HOLMES; Embassy at Ausplan Building, 14 Lossen St.,\n    Windhoek (mailing address is P. O. Box 9890, Windhoek 9000, Namibia);\n    telephone [264] (61) 221-601, 222-675, 222-680; FAX [264] (61) 229-792\nFlag:\n    a large blue triangle with a yellow sunburst fills the upper left section,\n    and an equal green triangle (solid) fills the lower right section; the\n    triangles are separated by a red stripe that is contrasted by two narrow\n    white-edge borders\n\n:Namibia Economy\n\nOverview:\n    The economy is heavily dependent on the mining industry to extract and\n    process minerals for export. Mining accounts for almost 25% of GDP. Namibia\n    is the fourth-largest exporter of nonfuel minerals in Africa and the world's\n    fifth-largest producer of uranium. Alluvial diamond deposits are among the\n    richest in the world, making Namibia a primary source for gem-quality\n    diamonds. Namibia also produces large quantities of lead, zinc, tin, silver,\n    and tungsten, and it has substantial resources of coal. More than half the\n    population depends on agriculture (largely subsistence agriculture) for its\n    livelihood.\nGDP:\n    exchange rate conversion - $2 billion, per capita $1,400; real growth rate\n    5.1% (1991 est.)\nInflation rate (consumer prices):\n    17% (1991 - Windhoek)\nUnemployment rate:\n    over 25% (1991)\nBudget:\n    revenues $864 million; expenditures $1,112 million, including capital\n    expenditures of $144 million (FY 92)\nExports:\n    $1,021 million (f.o.b., 1989)\n  commodities:\n    uranium, diamonds, zinc, copper, cattle, processed fish, karakul skins\n  partners:\n    Switzerland, South Africa, FRG, Japan\nImports:\n    $894 million (f.o.b., 1989)\n  commodities:\n    foodstuffs, petroleum products and fuel, machinery and equipment\n  partners:\n    South Africa, FRG, US, Switzerland\nExternal debt:\n    about $250 million; under a 1971 International Court of Justice (ICJ)\n    ruling, Namibia may not be liable for debt incurred during its colonial\n    period\nIndustrial production:\n    growth rate - 6% (1990 est.); accounts for 35% of GDP, including mining\nElectricity:\n    490,000 kW capacity; 1,290 million kWh produced, 850 kWh per capita (1991)\nIndustries:\n    meatpacking, fish processing, dairy products, mining (copper, lead, zinc,\n    diamond, uranium)\nAgriculture:\n    mostly subsistence farming; livestock raising major source of cash income;\n    crops - millet, sorghum, peanuts; fish catch potential of over 1 million\n    metric tons not being fulfilled, 1988 catch reaching only 384,000 metric\n    tons; not self-sufficient in food\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-87),\n    $47.2 million\nCurrency:\n    South African rand (plural - rand); 1 South African rand (R) = 100 cents\nExchange rates:\n    South African rand (R) per US$1 - 2.8809 (March 1992), 2.7653 (1991), 2.5863\n    (1990), 2.6166 (1989), 2.2611 (1988), 2.0350 (1987), 2.2685 (1986)\nFiscal year:\n    1 April - 31 March\n\n:Namibia Communications\n\nRailroads:\n    2,341 km 1.067-meter gauge, single track\nHighways:\n    54,500 km; 4,079 km paved, 2,540 km gravel, 47,881 km earth roads and tracks\nPorts:\n    Luderitz; primary maritime outlet is Walvis Bay (South Africa)\nCivil air:\n    NA major transport aircraft\nAirports:\n    137 total, 112 usable; 21 with permanent-surface runways; 1 with runways\n    over 3,659 m; 4 with runways 2,440-3,659 m; 63 with runways 1,220-2,439 m\nTelecommunications:\n    good urban, fair rural services; radio relay connects major towns, wires\n    extend to other population centers; 62,800 telephones; broadcast stations -\n    4 AM, 40 FM, 3 TV\n\n:Namibia Defense Forces\n\nBranches:\n    National Defense Force (Army), Police\nManpower availability:\n    males 15-49, 320,277; 189,997 fit for military service\nDefense expenditures:\n    exchange rate conversion - $66 million, 3.4% of GDP (FY 92)\n\n:Nauru Geography\n\nTotal area:\n    21 km2\nLand area:\n    21 km2\nComparative area:\n    about one-tenth the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    30 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; monsoonal; rainy season (November to February)\nTerrain:\n    sandy beach rises to fertile ring around raised coral reefs with phosphate\n    plateau in center\nNatural resources:\n    phosphates\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    only 53 km south of Equator\nNote:\n    located 500 km north-northeast of Papua New Guinea, Nauru is one of the\n    three great phosphate rock islands in the Pacific Ocean - the others are\n    Banaba (Ocean Island) in Kiribati and Makatea in French Polynesia\n\n:Nauru People\n\nPopulation:\n    9,460 (July 1992), growth rate 1.3% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    41 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 69 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Nauruan(s); adjective - Nauruan\nEthnic divisions:\n    Nauruan 58%, other Pacific Islander 26%, Chinese 8%, European 8%\nReligions:\n    Christian (two-thirds Protestant, one-third Roman Catholic)\nLanguages:\n    Nauruan, a distinct Pacific Island language (official); English widely\n    understood, spoken, and used for most government and commercial purposes\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Nauru Government\n\nLong-form name:\n    Republic of Nauru\nType:\n    republic\nCapital:\n    no capital city as such; government offices in Yaren District\nAdministrative divisions:\n    14 districts; Aiwo, Anabar, Anetan, Anibare, Baiti, Boe, Buada, Denigomodu,\n    Ewa, Ijuw, Meneng, Nibok, Uaboe, Yaren\nIndependence:\n    31 January 1968 (from UN trusteeship under Australia, New Zealand, and UK);\n    formerly Pleasant Island\nConstitution:\n    29 January 1968\nLegal system:\n    own Acts of Parliament and British common law\nNational holiday:\n    Independence Day, 31 January (1968)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral Parliament\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Bernard DOWIYOGO (since 12 December 1989)\nPolitical parties and leaders:\n    none\nSuffrage:\n    universal and compulsory at age 20\nElections:\n  President:\n    last held 9 December 1989 (next to be held December 1992); results - Bernard\n    DOWIYOGO elected by Parliament\n  Parliament:\n    last held on 9 December 1989 (next to be held December 1992); results -\n    percent of vote NA; seats - (18 total) independents 18\nMember of:\n    C (special), ESCAP, ICAO, INTERPOL, ITU, SPC, SPF, UPU\nDiplomatic representation:\n    Ambassador-designate Theodore Conrad MOSES resident in Melbourne\n    (Australia); there is a Nauruan Consulate in Agana (Guam)\n  US:\n    the US Ambassador to Australia is accredited to Nauru\nFlag:\n    blue with a narrow, horizontal, yellow stripe across the center and a large\n    white 12-pointed star below the stripe on the hoist side; the star indicates\n    the country's location in relation to the Equator (the yellow stripe) and\n    the 12 points symbolize the 12 original tribes of Nauru\n\n:Nauru Economy\n\nOverview:\n    Revenues come from the export of phosphates, the reserves of which are\n    expected to be exhausted by the year 2000. Phosphates have given Nauruans\n    one of the highest per capita incomes in the Third World - $10,000 annually.\n    Few other resources exist, so most necessities must be imported, including\n    fresh water from Australia. The rehabilitation of mined land and the\n    replacement of income from phosphates are serious long-term problems.\n    Substantial amounts of phosphate income are invested in trust funds to help\n    cushion the transition.\nGNP:\n    exchange rate conversion - over $90 million, per capita $10,000; real growth\n    rate NA% (1989)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    0%\nBudget:\n    revenues $69.7 million; expenditures $51.5 million, including capital\n    expenditures of $NA (FY86 est.)\nExports:\n    $93 million (f.o.b., 1984)\n  commodities:\n    phosphates\n  partners:\n    Australia, NZ\nImports:\n    $73 million (c.i.f., 1984)\n  commodities:\n    food, fuel, manufactures, building materials, machinery\n  partners:\n    Australia, UK, NZ, Japan\nExternal debt:\n    $33.3 million\nIndustrial production:\n    growth rate NA%\nElectricity:\n    14,000 kW capacity; 50 million kWh produced, 5,430 kWh per capita (1990)\nIndustries:\n    phosphate mining, financial services, coconuts\nAgriculture:\n    negligible; almost completely dependent on imports for food and water\nEconomic aid:\n    Western (non-US) countries (1970-89), $2 million\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3177 (March 1992), 1.2834 (1991),\n    1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Nauru Communications\n\nRailroads:\n    3.9 km; used to haul phosphates from the center of the island to processing\n    facilities on the southwest coast\nHighways:\n    about 27 km total; 21 km paved, 6 km improved earth\nPorts:\n    Nauru\nMerchant marine:\n    1 bulk ship (1,000 GRT or over) totaling 4,426 GRT/5,750 DWT\nCivil air:\n    3 major transport aircraft, one on order\nAirports:\n    1 with permanent-surface runway 1,220-2,439 m\nTelecommunications:\n    adequate local and international radio communications provided via\n    Australian facilities; 1,600 telephones; 4,000 radios; broadcast stations -\n    1 AM, no FM, no TV; 1 Pacific Ocean INTELSAT earth station\n\n:Nauru Defense Forces\n\nBranches:\n    no regular armed forces; Directorate of the Nauru Police Force\nManpower availability:\n    males 15-49, NA; NA fit for military service\nDefense expenditures:\n    $NA - no formal defense structure\n\n:Navassa Island Geography\n\nTotal area:\n    5.2 km2\nLand area:\n    5.2 km2\nComparative area:\n    about nine times the size of the Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    8 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Haiti\nClimate:\n    marine, tropical\nTerrain:\n    raised coral and limestone plateau, flat to undulating; ringed by vertical\n    white cliffs (9 to 15 meters high)\nNatural resources:\n    guano\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 10%; forest and\n    woodland 0%; other 90%\nEnvironment:\n    mostly exposed rock, but enough grassland to support goat herds; dense\n    stands of fig-like trees, scattered cactus\nNote:\n    strategic location between Cuba, Haiti, and Jamaica in the Caribbean Sea;\n    160 km south of the US Naval Base at Guantanamo, Cuba\n\n:Navassa Island People\n\nPopulation:\n    uninhabited; transient Haitian fishermen and others camp on the island\n\n:Navassa Island Government\n\nLong-form name:\n    none (territory of the US)\nType:\n    unincorporated territory of the US administered by the US Coast Guard\nCapital:\n    none; administered from Washington, DC\n\n:Navassa Island Economy\n\nOverview:\n    no economic activity\n\n:Navassa Island Communications\n\nPorts:\n    none; offshore anchorage only\n\n:Navassa Island Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Nepal Geography\n\nTotal area:\n    140,800 km2\nLand area:\n    136,800 km2\nComparative area:\n    slightly larger than Arkansas\nLand boundaries:\n    2,926 km total; China 1,236 km, India 1,690 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    varies from cool summers and severe winters in north to subtropical summers\n    and mild winters in south\nTerrain:\n    Terai or flat river plain of the Ganges in south, central hill region,\n    rugged Himalayas in north\nNatural resources:\n    quartz, water, timber, hydroelectric potential, scenic beauty; small\n    deposits of lignite, copper, cobalt, iron ore\nLand use:\n    arable land 17%; permanent crops NEGL%; meadows and pastures 13%; forest and\n    woodland 33%; other 37%; includes irrigated 2%\nEnvironment:\n    contains eight of world's 10 highest peaks; deforestation; soil erosion;\n    water pollution\nNote:\n    landlocked; strategic location between China and India\n\n:Nepal People\n\nPopulation:\n    20,086,455 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    38 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    90 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    51 years male, 51 years female (1992)\nTotal fertility rate:\n    5.4 children born/woman (1992)\nNationality:\n    noun - Nepalese (singular and plural); adjective - Nepalese\nEthnic divisions:\n    Newars, Indians, Tibetans, Gurungs, Magars, Tamangs, Bhotias, Rais, Limbus,\n    Sherpas, as well as many smaller groups\nReligions:\n    only official Hindu state in world, although no sharp distinction between\n    many Hindu (about 90% of population) and Buddhist groups (about 5% of\n    population); Muslims 3%, other 2% (1981)\nLanguages:\n    Nepali (official); 20 languages divided into numerous dialects\nLiteracy:\n    26% (male 38%, female 13%) age 15 and over can read and write (1990 est.)\nLabor force:\n    8,500,000 (1991 est.); agriculture 93%, services 5%, industry 2%; severe\n    lack of skilled labor\nOrganized labor:\n    Teachers' Union and many other nonofficially recognized unions\n\n:Nepal Government\n\nLong-form name:\n    Kingdom of Nepal\nType:\n    parliamentary democracy as of 12 May 1991\nCapital:\n    Kathmandu\nAdministrative divisions:\n    14 zones (anchal, singular and plural); Bagmati, Bheri, Dhawalagiri,\n    Gandaki, Janakpur, Karnali, Kosi, Lumbini, Mahakali, Mechi, Narayani, Rapti,\n    Sagarmatha, Seti\nIndependence:\n    1768, unified by Prithyi Narayan Shah\nConstitution:\n    9 November 1990\nLegal system:\n    based on Hindu legal concepts and English common law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Birthday of His Majesty the King, 28 December (1945)\nExecutive branch:\n    monarch, prime minister, Council of Ministers\nLegislative branch:\n    bicameral Parliament consists of an upper house or National Council and a\n    lower house or House of Representatives\nJudicial branch:\n    Supreme Court (Sarbochha Adalat)\nLeaders:\n  Chief of State:\n    King BIRENDRA Bir Bikram Shah Dev (since 31 January 1972, crowned King 24\n    February 1985); Heir Apparent Crown Prince DIPENDRA Bir Bikram Shah Dev, son\n    of the King (born 21 June 1971)\n  Head of Government:\n    Prime Minister Girija Prasad KOIRALA (since 29 May 1991)\nPolitical parties and leaders:\n  ruling party:\n    Nepali Congress Party (NCP), Girija Prasad KOIRALA, Ganesh Man SINGH,\n    Krishna Prasad BHATTARAI\n  center:\n    the NDP has two factions: National Democratic Party/Chand (NDP/Chand),\n    Lokinra Bahadur CHAND, and National Democratic Party/Thapa (NDP/Thapa),\n    Surya Bahadur THAPA - the two factions announced a merger in late 1991;\n    Terai Rights Sadbhavana (Goodwill) Party, G. N. Naryan SINGH\n  Communist:\n    Communist Party of Nepal/United Marxist and Leninist (CPN/UML), Man Mohan\n    ADIKHARY; United People's Front (UPF), N. K. PRASAI, Lila Mani POKHAREL;\n    Nepal Workers and Peasants Party, leader NA; Rohit Party, N. M. BIJUKCHHE;\n    Democratic Party, leader NA\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held on 12 May 1991 (next to be held May 1996); results - NCP 38%,\n    CPN/UML 28%, NDP/Chand 6%, UPF 5%, NDP/Thapa 5%, Terai Rights Sadbhavana\n    Party 4%, Rohit 2%, CPN (Democratic) 1%, independents 4%, other 7%; seats -\n    (205 total) NCP 110, CPN/UML 69, UPF 9, Terai Rights Sadbhavana Party 6,\n    NDP/Chand 3, Rohit 2, CPN (Democratic) 2, NDP/Thapa 1, independents 3; note\n    - the new Constitution of 9 November 1990 gives Nepal a multiparty democracy\n    system for the first time in 32 years\n\n:Nepal Government\n\nCommunists:\n    Communist Party of Nepal (CPN)\nOther political or pressure groups:\n    numerous small, left-leaning student groups in the capital; several small,\n    radical Nepalese antimonarchist groups\nMember of:\n    AsDB, CCC, CP, ESCAP, FAO, G-77, IBRD, ICAO, IDA, IFAD, IFC, ILO, IMF, IMO,\n    INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, SAARC, UN, UNCTAD, UNESCO, UNIDO,\n    UNIFIL, UPU, WFTU, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Yog Prasad UPADHYAYA; Chancery at 2131 Leroy Place NW,\n    Washington, DC 20008; telephone (202) 667-4550; there is a Nepalese\n    Consulate General in New York\n  US:\n    Ambassador Julia Chang BLOCH; Embassy at Pani Pokhari, Kathmandu; telephone\n    [977] (1) 411179 or 412718, 411604, 411613, 413890; FAX [977] (1) 419963\nFlag:\n    red with a blue border around the unique shape of two overlapping right\n    triangles; the smaller, upper triangle bears a white stylized moon and the\n    larger, lower triangle bears a white 12-pointed sun\n\n:Nepal Economy\n\nOverview:\n    Nepal is among the poorest and least developed countries in the world.\n    Agriculture is the mainstay of the economy, providing a livelihood for over\n    90% of the population and accounting for 60% of GDP. Industrial activity is\n    limited, mainly involving the processing of agricultural produce (jute,\n    sugarcane, tobacco, and grain). Production of textiles and carpets has\n    expanded recently and accounted for 87% of foreign exchange earnings in\n    FY89. Apart from agricultural land and forests, the only other exploitable\n    natural resources are mica, hydropower, and tourism. Agricultural production\n    in the late 1980s grew by about 5%, as compared with annual population\n    growth of 2.6%. Forty percent or more of the population is undernourished\n    partly because of poor distribution. Since May 1991, the government has been\n    encouraging privatization and foreign investment. It has introduced policies\n    to eliminate many business licenses and registration requirements in order\n    to simplify domestic and foreign investment procedures. Economic prospects\n    for the 1990s remain poor because the economy starts from such a low base.\nGDP:\n    exchange rate conversion - $3.2 billion, per capita $165; real growth rate\n    3.5% (FY91)\nInflation rate (consumer prices):\n    15.0% (December 1991)\nUnemployment rate:\n    5%; underemployment estimated at 25-40% (1987)\nBudget:\n    revenues $294.0 million; expenditures $624.0 million, including capital\n    expenditures of $396 (FY92 est.)\nExports:\n    $180 million (f.o.b., FY91) but does not include unrecorded border trade\n    with India\n  commodities:\n    clothing, carpets, leather goods, grain\n  partners:\n    US, India, Germany, UK\nImports:\n    $545 million (c.i.f., FY91 est.)\n  commodities:\n    petroleum products 20%, fertilizer 11%, machinery 10%\n  partners:\n    India, Singapore, Japan, Germany\nExternal debt:\n    $2.5 billion (April 1990 est.)\nIndustrial production:\n    growth rate 6% (FY91 est.); accounts for 7% of GDP\nElectricity:\n    280,000 kW capacity; 540 million kWh produced, 30 kWh per capita (1990)\nIndustries:\n    small rice, jute, sugar, and oilseed mills; cigarette, textile, carpet,\n    cement, and brick production; tourism\nAgriculture:\n    accounts for 60% of GDP and 90% of work force; farm products - rice, corn,\n    wheat, sugarcane, root crops, milk, buffalo meat; not self-sufficient in\n    food, particularly in drought years\nIllicit drugs:\n    illicit producer of cannabis for the domestic and international drug markets\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $304 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1980-89), $2,230 million; OPEC\n    bilateral aid (1979-89), $30 million; Communist countries (1970-89), $286\n    million\n\n:Nepal Economy\n\nCurrency:\n    Nepalese rupee (plural - rupees); 1 Nepalese rupee (NR) = 100 paisa\nExchange rates:\n    Nepalese rupees (NRs) per US$1 - 42.7 (January 1992), 37.255 (1991), 29.370\n    (1990), 27.189 (1989), 23.289 (1988), 21.819 (1987)\nFiscal year:\n    16 July - 15 July\n\n:Nepal Communications\n\nRailroads:\n    52 km (1990), all 0.762-meter narrow gauge; all in Terai close to Indian\n    border; 10 km from Raxaul to Birganj is government owned\nHighways:\n    7,080 km total (1990); 2,898 km paved, 1,660 km gravel or crushed stone;\n    also 2,522 km of seasonally motorable tracks\nCivil air:\n    5 major and 11 minor transport aircraft\nAirports:\n    37 total, 37 usable; 5 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 8 with runways 1,220-2,439 m\nTelecommunications:\n    poor telephone and telegraph service; fair radio communication and broadcast\n    service; international radio communication service is poor; 50,000\n    telephones (1990); broadcast stations - 88 AM, no FM, 1 TV; 1 Indian Ocean\n    INTELSAT earth station\n\n:Nepal Defense Forces\n\nBranches:\n    Royal Nepalese Army, Royal Nepalese Army Air Service, Nepalese Police Force\nManpower availability:\n    males 15-49, 4,798,984; 2,488,749 fit for military service; 225,873 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $34 million, 2% of GDP (FY92)\n\n:Netherlands Geography\n\nTotal area:\n    37,330 km2\nLand area:\n    33,920 km2\nComparative area:\n    slightly less than twice the size of New Jersey\nLand boundaries:\n    1,027 km total; Belgium 450 km, Germany 577 km\nCoastline:\n    451 km\nMaritime claims:\n  Continental shelf:\n    not specific\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate; marine; cool summers and mild winters\nTerrain:\n    mostly coastal lowland and reclaimed land (polders); some hills in southeast\nNatural resources:\n    natural gas, crude oil, fertile soil\nLand use:\n    arable land 26%; permanent crops 1%; meadows and pastures 32%; forest and\n    woodland 9%; other 32%; includes irrigated 16%\nEnvironment:\n    27% of the land area is below sea level and protected from the North Sea by\n    dikes\nNote:\n    located at mouths of three major European rivers (Rhine, Maas or Meuse,\n    Schelde)\n\n:Netherlands People\n\nPopulation:\n    15,112,064 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 81 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Dutchman(men), Dutchwoman(women); adjective - Dutch\nEthnic divisions:\n    Dutch 96%, Moroccans, Turks, and other 4% (1988)\nReligions:\n    Roman Catholic 36%, Protestant 27%, other 6%, unaffiliated 31% (1988)\nLanguages:\n    Dutch\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1979 est.)\nLabor force:\n    5,300,000; services 50.1%, manufacturing and construction 28.2%, government\n    15.9%, agriculture 5.8% (1986)\nOrganized labor:\n    29% of labor force\n\n:Netherlands Government\n\nLong-form name:\n    Kingdom of the Netherlands\nType:\n    constitutional monarchy\nCapital:\n    Amsterdam; The Hague is the seat of government\nAdministrative divisions:\n    12 provinces (provincien, singular - provincie); Drenthe, Flevoland,\n    Friesland, Gelderland, Groningen, Limburg, Noord-Brabant, Noord-Holland,\n    Overijssel, Utrecht, Zeeland, Zuid-Holland\nIndependence:\n    1579 (from Spain)\nConstitution:\n    17 February 1983\nDependent areas:\n    Aruba, Netherlands Antilles\nLegal system:\n    civil law system incorporating French penal theory; judicial review in the\n    Supreme Court of legislation of lower order rather than Acts of the States\n    General; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Queen's Day, 30 April (1938)\nExecutive branch:\n    monarch, prime minister, vice prime minister, Cabinet, Cabinet of Ministers\nLegislative branch:\n    bicameral legislature (Staten Generaal) consists of an upper chamber or\n    First Chamber (Eerste Kamer) and a lower chamber or Second Chamber (Tweede\n    Kamer)\nJudicial branch:\n    Supreme Court (De Hoge Raad)\nLeaders:\n  Chief of State:\n    Queen BEATRIX Wilhelmina Armgard (since 30 April 1980); Heir Apparent\n    WILLEM-ALEXANDER, Prince of Orange, son of Queen Beatrix (born 27 April\n    1967)\n  Head of Government:\n    Prime Minister Ruud (Rudolph) F. M. LUBBERS (since 4 November 1982); Vice\n    Prime Minister Wim KOK (since 2 November 1989)\nPolitical parties and leaders:\n    Christian Democratic Appeal (CDA), Willem van VELZEN; Labor (PvdA), Wim KOK;\n    Liberal (VVD), Joris VOORHOEVE; Democrats '66 (D'66), Hans van MIERIO; a\n    host of minor parties\nSuffrage:\n    universal at age 18\nElections:\n  First Chamber:\n    last held on 9 June l991 (next to be held 9 June 1995); results - elected by\n    the country's 12 provincial councils; seats - (75 total) percent of seats by\n    party NA\n  Second Chamber:\n    last held on 6 September 1989 (next to be held by September 1993); results -\n    CDA 35.3%, PvdA 31. 9%, VVD 14.6%, D'66 7.9%, other 10.3%; seats - (150\n    total) CDA 54, PvdA 49, VVD 22, D'66 12, other 13\nCommunists:\n    about 6,000\n\n:Netherlands Government\n\nOther political or pressure groups:\n    large multinational firms; Federation of Netherlands Trade Union Movement\n    (comprising Socialist and Catholic trade unions) and a Protestant trade\n    union; Federation of Catholic and Protestant Employers Associations; the\n    nondenominational Federation of Netherlands Enterprises; and IKV -\n    Interchurch Peace Council\nMember of:\n    AfDB, AG (observer), AsDB, Australia Group, Benelux, BIS, CCC, CE, CERN,\n    COCOM, CSCE, EBRD, EC, ECE, ECLAC, EIB, EMS, ESA, ESCAP, FAO, G-10, GATT,\n    IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO,\n    INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS, MTCR, NACC, NATO,\n    NEA, NSG, OAS (observer), OECD, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO,\n    UNTSO, UPU, WCL, WEU, WHO, WIPO, WMO, WTO, ZC\nDiplomatic representation:\n    Ambassador Johan Hendrick MEESMAN; Chancery at 4200 Linnean Avenue NW,\n    Washington, DC 20008; telephone (202) 244-5300; there are Dutch Consulates\n    General in Chicago, Houston, Los Angeles, New York, and San Francisco\n  US:\n    Ambassador C. Howard WILKINS, Jr.; Embassy at Lange Voorhout 102, The Hague\n    (mailing address PSC 71, Box 1000, APO AE 09715); telephone [31] (70)\n    310-9209; FAX [31] (70) 361-4688; there is a US Consulate General in\n    Amsterdam\nFlag:\n    three equal horizontal bands of red (top), white, and blue; similar to the\n    flag of Luxembourg, which uses a lighter blue and is longer\n\n:Netherlands Economy\n\nOverview:\n    This highly developed and affluent economy is based on private enterprise.\n    The government makes its presence felt, however, through many regulations,\n    permit requirements, and welfare programs affecting most aspects of economic\n    activity. The trade and financial services sector contributes over 50% of\n    GDP. Industrial activity provides about 25% of GDP and is led by the\n    food-processing, oil-refining, and metalworking industries. The highly\n    mechanized agricultural sector employs only 5% of the labor force, but\n    provides large surpluses for export and the domestic food-processing\n    industry. An unemployment rate of 6.2% and a sizable budget deficit are\n    currently the most serious economic problems.\nGDP:\n    purchasing power equivalent - $249.6 billion, per capita $16,600; real\n    growth rate 2.2% (1991 est.)\nInflation rate (consumer prices):\n    3.6% (1991 est.)\nUnemployment rate:\n    6.2% (1991 est.)\nBudget:\n    revenues $98.7 billion; expenditures $110.8 billion, including capital\n    expenditures of $NA (1991)\nExports:\n    $131.5 billion (f.o.b., 1990)\n  commodities:\n    agricultural products, processed foods and tobacco, natural gas, chemicals,\n    metal products, textiles, clothing\n  partners:\n    EC 74.9% (FRG 28.3%, Belgium-Luxembourg 14.2%, France 10.7%, UK 10.2%), US\n    4.7% (1988)\nImports:\n    $125.9 billion (c.i.f., 1990)\n  commodities:\n    raw materials and semifinished products, consumer goods, transportation\n    equipment, crude oil, food products\n  partners:\n    EC 63.8% (FRG 26.5%, Belgium-Luxembourg 23.1%, UK 8.1%), US 7.9% (1988)\nExternal debt:\n    none\nIndustrial production:\n    growth rate 1.7% (1991 est.); accounts for 25% of GDP\nElectricity:\n    22,216,000 kW capacity; 63,570 million kWh produced, 4,300 kWh per capita\n    (1991)\nIndustries:\n    agroindustries, metal and engineering products, electrical machinery and\n    equipment, chemicals, petroleum, fishing, construction, microelectronics\nAgriculture:\n    accounts for 4% of GDP; animal production predominates; crops - grains,\n    potatoes, sugar beets, fruits, vegetables; shortages of grain, fats, and\n    oils\nIllicit drugs:\n    European producer of illicit amphetamines and other synethic drugs\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $19.4 billion\nCurrency:\n    Netherlands guilder, gulden, or florin (plural - guilders, gulden, or\n    florins); 1 Netherlands guilder, gulden, or florin (f.) = 100 cents\n\n:Netherlands Economy\n\nExchange rates:\n    Netherlands guilders, gulden, or florins (f.) per US$1 - 1.7753 (January\n    1992), 1.8697 (1991), 1.8209 (1990), 2.1207 (1989), 1.9766 (1988), 2.0257\n    (1987)\nFiscal year:\n    calendar year\n\n:Netherlands Communications\n\nRailroads:\n    3,037 km track (includes 1,871 km electrified and 1,800 km double track);\n    2,871 km 1.435-meter standard gauge operated by Netherlands Railways (NS);\n    166 km privately owned\nHighways:\n    108,360 km total; 92,525 km paved (including 2,185 km of limited access,\n    divided highways); 15,835 km gravel, crushed stone\nInland waterways:\n    6,340 km, of which 35% is usable by craft of 1,000 metric ton capacity or\n    larger\nPipelines:\n    crude oil 418 km; petroleum products 965 km; natural gas 10,230 km\nPorts:\n    maritime - Amsterdam, Delfzijl, Den Helder, Dordrecht, Eemshaven, Ijmuiden,\n    Rotterdam, Scheveningen, Terneuzen, Vlissingen; inland - 29 ports\nMerchant marine:\n    345 ships (1,000 GRT or over) totaling 2,630,962 GRT/3,687,598 DWT; includes\n    3 short-sea passenger, 191 cargo, 30 refrigerated cargo, 24 container, 12\n    roll-on/roll-off, 2 livestock carrier, 10 multifunction large-load carrier,\n    22 oil tanker, 27 chemical tanker, 10 liquefied gas, 2 specialized tanker, 9\n    bulk, 3 combination bulk; note - many Dutch-owned ships are also registered\n    on the captive Netherlands Antilles register\nCivil air:\n    98 major transport aircraft\nAirports:\n    28 total, 28 usable; 19 with permanent-surface runways; none with runways\n    over 3,659 m; 11 with runways 2,440-3,659 m; 6 with runways 1,220-2,439 m\nTelecommunications:\n    highly developed, well maintained, and integrated; extensive redundant\n    system of multiconductor cables, supplemented by radio relay links;\n    9,418,000 telephones; broadcast stations - 3 (3 relays) AM, 12 (39\n    repeaters) FM, 8 (7 repeaters) TV; 5 submarine cables; 1 communication\n    satellite earth station operating in INTELSAT (1 Indian Ocean and 2 Atlantic\n    Ocean antenna) and EUTELSAT systems; nationwide mobile phone system\n\n:Netherlands Defense Forces\n\nBranches:\n    Royal Netherlands Army, Royal Netherlands Navy (including Naval Air Service\n    and Marine Corps), Royal Netherlands Air Force, Royal Constabulary\nManpower availability:\n    males 15-49, 4,144,477; 3,649,746 fit for military service; 111,952 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $7.2 billion, 2.9% of GDP (1991)\n\n:Netherlands Antilles Geography\n\nTotal area:\n    960 km2\nLand area:\n    960 km2; includes Bonaire, Curacao, Saba, Sint Eustatius, and Sint Maarten\n    (Dutch part of the island of Saint Martin)\nComparative area:\n    slightly less than 5.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    364 km\nMaritime claims:\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; ameliorated by northeast trade winds\nTerrain:\n    generally hilly, volcanic interiors\nNatural resources:\n    phosphates (Curacao only), salt (Bonaire only)\nLand use:\n    arable land 8%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 92%\nEnvironment:\n    Curacao and Bonaire are south of Caribbean hurricane belt, so rarely\n    threatened; Sint Maarten, Saba, and Sint Eustatius are subject to hurricanes\n    from July to October\nNote:\n    consists of two island groups - Curacao and Bonaire are located off the\n    coast of Venezuela, and Sint Maarten, Saba, and Sint Eustatius lie 800 km to\n    the north\n\n:Netherlands Antilles People\n\nPopulation:\n    184,325 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -9 migrants/1,000 population (1992)\nInfant mortality rate:\n    11 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 77 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman (1992)\nNationality:\n    noun - Netherlands Antillean(s); adjective - Netherlands Antillean\nEthnic divisions:\n    mixed African 85%; remainder Carib Indian, European, Latin, and Oriental\nReligions:\n    predominantly Roman Catholic; Protestant, Jewish, Seventh-Day Adventist\nLanguages:\n    Dutch (official); Papiamento, a Spanish-Portuguese-Dutch-English dialect\n    predominates; English widely spoken; Spanish\nLiteracy:\n    94% (male 94%, female 93%) age 15 and over can read and write (1981)\nLabor force:\n    89,000; government 65%, industry and commerce 28% (1983)\nOrganized labor:\n    60-70% of labor force\n\n:Netherlands Antilles Government\n\nLong-form name:\n    none\nDigraph:\n    political parties are indigenous to each island ***\nType:\n    part of the Dutch realm - full autonomy in internal affairs granted in 1954\nCapital:\n    Willemstad\nAdministrative divisions:\n    none (part of the Dutch realm)\nIndependence:\n    none (part of the Dutch realm)\nConstitution:\n    29 December 1954, Statute of the Realm of the Netherlands, as amended\nLegal system:\n    based on Dutch civil law system, with some English common law influence\nNational holiday:\n    Queen's Day, 30 April (1938)\nExecutive branch:\n    Dutch monarch, governor, prime minister, vice prime minister, Council of\n    Ministers (cabinet)\nLegislative branch:\n    legislature (Staten)\nJudicial branch:\n    Joint High Court of Justice\nLeaders:\n  Chief of State:\n    Queen BEATRIX Wilhelmina Armgard (since 30 April 1980), represented by\n    Governor General Jaime SALEH (since October 1989)\n  Head of Government:\n    Prime Minister Maria LIBERIA-PETERS (since 17 May 1988, previously served\n    from September 1984 to November 1985)\nPolitical parties and leaders:\n    political parties are indigenous to each island\n  Bonaire:\n    Patriotic Union of Bonaire (UPB), Rudy ELLIS; Democratic Party of Bonaire\n    (PDB), Franklin CRESTIAN\n  Curacao:\n    National People's Party (PNP), Maria LIBERIA-PETERS; New Antilles Movement\n    (MAN), Domenico Felip Don MARTINA; Workers' Liberation Front (FOL), Wilson\n    (Papa) GODETT; Socialist Independent (SI), George HUECK and Nelson MONTE;\n    Democratic Party of Curacao (DP), Augustin DIAZ; Nos Patria, Chin BEHILIA\n  Saba:\n    Windward Islands People's Movement (WIPM Saba), Will JOHNSON; Saba\n    Democratic Labor Movement, Vernon HASSELL; Saba Unity Party, Carmen SIMMONDS\n  Sint Eustatius:\n    Democratic Party of Sint Eustatius (DP-St.E), K. Van PUTTEN; Windward\n    Islands People's Movement (WIPM); St. Eustatius Alliance (SEA), Ralph BERKEL\n  Sint Maarten:\n    Democratic Party of Sint Maarten (DP-St.M), Claude WATHEY; Patriotic\n    Movement of Sint Maarten (SPA), Vance JAMES\nSuffrage:\n    universal at age 18\n\n:Netherlands Antilles Government\n\nElections:\n  Staten:\n    last held on 16 March 1990 (next to be held March 1994); results - percent\n    of vote by party NA; seats - (22 total) PNP 7, FOL-SI 3, UPB 3, MAN 2,\n    DP-St. M 2, DP 1, SPM 1, WIPM 1, DP-St. E 1, Nos Patria 1; note - the\n    government of Prime Minister Maria LIBERIA-PETERS is a coalition of several\n    parties\nMember of:\n    CARICOM (observer), ECLAC (associate), ICFTU, INTERPOL, IOC, UNESCO\n    (associate), UPU, WCL, WMO, WTO (associate)\nDiplomatic representation:\n    as an autonomous part of the Netherlands, Netherlands Antillean interests in\n    the US are represented by the Netherlands\n  US:\n    Consul General Sharon P. WILKINSON; Consulate General at Sint Anna Boulevard\n    19, Willemstad, Curacao (mailing address P. O. Box 158, Willemstad,\n    Curacao); telephone [599] (9) 613066; FAX [599] (9) 616489\nFlag:\n    white with a horizontal blue stripe in the center superimposed on a vertical\n    red band also centered; five white five-pointed stars are arranged in an\n    oval pattern in the center of the blue band; the five stars represent the\n    five main islands of Bonaire, Curacao, Saba, Sint Eustatius, and Sint\n    Maarten\n\n:Netherlands Antilles Economy\n\nOverview:\n    Tourism, petroleum refining, and offshore finance are the mainstays of the\n    economy. The islands enjoy a high per capita income and a well-developed\n    infrastructure as compared with other countries in the region. Unlike many\n    Latin American countries, the Netherlands Antilles has avoided large\n    international debt. Almost all consumer and capital goods are imported, with\n    the US being the major supplier.\nGDP:\n    exchange rate conversion - $1.4 billion, per capita $7,600; real growth rate\n    1.5% (1990 est.)\nInflation rate (consumer prices):\n    5% (1990 est.)\nUnemployment rate:\n    21% (1991)\nBudget:\n    revenues $454 million; expenditures $525 million, including capital\n    expenditures of $42 million (1989 est.)\nExports:\n    $1.1 billion (f.o.b., 1988)\n  commodities:\n    petroleum products 98%\n  partners:\n    US 40%, Italy 6%, The Bahamas 5%\nImports:\n    $1.4 billion (c.i.f., 1988)\n  commodities:\n    crude petroleum 64%, food, manufactures\n  partners:\n    Venezuela 42%, US 18%, Netherlands 6%\nExternal debt:\n    $701.2 million (December 1987)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    125,000 kW capacity; 365 million kWh produced, 1,985 kWh per capita (1991)\nIndustries:\n    tourism (Curacao and Sint Maarten), petroleum refining (Curacao), petroleum\n    transshipment facilities (Curacao and Bonaire), light manufacturing\n    (Curacao)\nAgriculture:\n    hampered by poor soils and scarcity of water; chief products - aloes,\n    sorghum, peanuts, fresh vegetables, tropical fruit; not self-sufficient in\n    food\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $513 million\nCurrency:\n    Netherlands Antillean guilder, gulden, or florin (plural - guilders, gulden,\n    or florins); 1 Netherlands Antillean guilder, gulden, or florin (NAf.) = 100\n    cents\nExchange rates:\n    Netherlands Antillean guilders, gulden, or florins (NAf.) per US$1 - 1.79\n    (fixed rate since 1989; 1.80 fixed rate 1971-88)\nFiscal year:\n    calendar year\n\n:Netherlands Antilles Communications\n\nHighways:\n    950 km total; 300 km paved, 650 km gravel and earth\nPorts:\n    Willemstad, Philipsburg, Kralendijk\nMerchant marine:\n    80 ships (1,000 GRT or over) totaling 607,010 GRT/695,864 DWT; includes 4\n    passenger, 27 cargo, 13 refrigerated cargo, 7 container, 9 roll-on/roll-off,\n    11 multifunction large-load carrier, 4 chemical tanker, 3 liquefied gas, 1\n    bulk, 1 oil tanker; note - all but a few are foreign owned, mostly in the\n    Netherlands\nCivil air:\n    8 major transport aircraft\nAirports:\n    7 total, 6 usable; 6 with permanent-surface runways; none with runways over\n    3,659 m; 2 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    generally adequate facilities; extensive interisland radio relay links;\n    broadcast stations - 9 AM, 4 FM, 1 TV; 2 submarine cables; 2 Atlantic Ocean\n    INTELSAT earth stations\n\n:Netherlands Antilles Defense Forces\n\nBranches:\n    Royal Netherlands Navy, Marine Corps, Royal Netherlands Air Force, National\n    Guard, Police Force\nManpower availability:\n    males 15-49 49,082; 27,656 fit for military service; 1,673 reach military\n    age (20) annually\nNote:\n    defense is responsibility of the Netherlands\n\n:New Caledonia Geography\n\nTotal area:\n    19,060 km2\nLand area:\n    18,760 km2\nComparative area:\n    slightly smaller than New Jersey\nLand boundaries:\n    none\nCoastline:\n    2,254 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; modified by southeast trade winds; hot, humid\nTerrain:\n    coastal plains with interior mountains\nNatural resources:\n    nickel, chrome, iron, cobalt, manganese, silver, gold, lead, copper\nLand use:\n    arable land NEGL%; permanent crops NEGL%; meadows and pastures 14%; forest\n    and woodland 51%; other 35%\nEnvironment:\n    typhoons most frequent from November to March\nNote:\n    located 1,750 km east of Australia in the South Pacific Ocean\n\n:New Caledonia People\n\nPopulation:\n    174,805 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    17 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 76 years female (1992)\nTotal fertility rate:\n    2.7 children born/woman (1992)\nNationality:\n    noun - New Caledonian(s); adjective - New Caledonian\nEthnic divisions:\n    Melanesian 42.5%, European 37.1%, Wallisian 8.4%, Polynesian 3.8%,\n    Indonesian 3.6%, Vietnamese 1.6%, other 3.0%\nReligions:\n    Roman Catholic 60%, Protestant 30%, other 10%\nLanguages:\n    French; 28 Melanesian-Polynesian dialects\nLiteracy:\n    91% (male 91%, female 90%) age 15 and over can read and write (1976)\nLabor force:\n    50,469; foreign workers for plantations and mines from Wallis and Futuna,\n    Vanuatu, and French Polynesia (1980 est.)\nOrganized labor:\n    NA\n\n:New Caledonia Government\n\nLong-form name:\n    Territory of New Caledonia and Dependencies\nType:\n    overseas territory of France since 1956\nCapital:\n    Noumea\nAdministrative divisions:\n    none (overseas territory of France); there are no first-order administrative\n    divisions as defined by the US Government, but there are 3 provinces named\n    Iles Loyaute, Nord, and Sud\nIndependence:\n    none (overseas territory of France); note - a referendum on independence\n    will be held in 1998, with a review of the issue in 1992\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    the 1988 Matignon Accords grant substantial autonomy to the islands;\n    formerly under French law\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    French President, high commissioner, Consultative Committee (cabinet)\nLegislative branch:\n    unicameral Territorial Assembly\nJudicial branch:\n    Court of Appeal\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    High Commissioner and President of the Council of Government Alain\n    CHRISTNACHT (since 15 January 1991)\nSuffrage:\n    universal adult at age 18\nElections:\n  Territorial Assembly:\n    last held 11 June 1989 (next to be held 1993); results - RPCR 44.5%, FLNKS\n    28.5%, FN 7%, CD 5%, UO 4%, other 11%; seats - (54 total) RPCR 27, FLNKS 19,\n    FN 3, other 5; note - election boycotted by FULK\n  French Senate:\n    last held 24 September 1989 (next to be held September 1992); results -\n    percent of vote by party NA; seats - (1 total) RPCR 1\n  French National Assembly:\n    last held 5 and 12 June 1988 (next to be held June 1993); results - RPR\n    83.5%, FN 13.5%, other 3%; seats - (2 total) RPCR 2\nMember of:\n    FZ, ICFTU, SPC, WMO\nDiplomatic representation:\n    as an overseas territory of France, New Caledonian interests are represented\n    in the US by France\nFlag:\n    the flag of France is used\n\n:New Caledonia Economy\n\nOverview:\n    New Caledonia has more than 25% of the world's known nickel resources. In\n    recent years the economy has suffered because of depressed international\n    demand for nickel, the principal source of export earnings. Only a\n    negligible amount of the land is suitable for cultivation, and food accounts\n    for about 25% of imports.\nGNP:\n    exchange rate conversion - $1.0 billion, per capita $6,000 (1991 est.); real\n    growth rate 2.4% (1988)\nInflation rate (consumer prices):\n    4.1% (1989)\nUnemployment rate:\n    16.0% (1989)\nBudget:\n    revenues $224.0 million; expenditures $211.0 million, including capital\n    expenditures of NA (1985)\nExports:\n    $671 million (f.o.b., 1989)\n  commodities:\n    nickel metal 87%, nickel ore\n  partners:\n    France 52.3%, Japan 15.8%, US 6.4%\nImports:\n    $764 million (c.i.f., 1989)\n  commodities:\n    foods, fuels, minerals, machines, electrical equipment\n  partners:\n    France 44.0%, US 10%, Australia 9%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    400,000 kW capacity; 2,200 million kWh produced, 12,790 kWh per capita\n    (1990)\nIndustries:\n    nickel mining\nAgriculture:\n    large areas devoted to cattle grazing; coffee, corn, wheat, vegetables; 60%\n    self-sufficient in beef\nIllicit drugs:\n    illicit cannabis cultivation is becoming a principal source of income for\n    some families\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $4,185 million\nCurrency:\n    Comptoirs Francais du Pacifique franc (plural - francs); 1 CFP franc (CFPF)\n    = 100 centimes\nExchange rates:\n    Comptoirs Francais duPacifique francs (CFPF) per US$1 - 97.81 (January\n    1992), 102.57 (1991), 99.00 (1990), 115.99 (1989), 108.30 (1988), 109.27\n    (1987); note - linked at the rate of 18.18 to the French franc\nFiscal year:\n    calendar year\n\n:New Caledonia Communications\n\nHighways:\n    6,340 km total; only about 10% paved (1987)\nPorts:\n    Noumea, Nepoui, Poro, Thio\nCivil air:\n    1 major transport aircraft\nAirports:\n    29 total, 27 usable; 1 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    32,578 telephones (1987); broadcast stations - 5 AM, 3 FM, 7 TV; 1 Pacific\n    Ocean INTELSAT earth station\n\n:New Caledonia Defense Forces\n\nBranches:\n    Gendarmerie, Police Force\nManpower availability:\n    males 15-49, 46,388; NA fit for military service\nNote:\n    defense is the responsibility of France\n\n:New Zealand Geography\n\nTotal area:\n    268,680 km2\nLand area:\n    268,670 km2; includes Antipodes Islands, Auckland Islands, Bounty Islands,\n    Campbell Island, Chatham Islands, and Kermadec Islands\nComparative area:\n    about the size of Colorado\nLand boundaries:\n    none\nCoastline:\n    15,134 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    territorial claim in Antarctica (Ross Dependency)\nClimate:\n    temperate with sharp regional contrasts\nTerrain:\n    predominately mountainous with some large coastal plains\nNatural resources:\n    natural gas, iron ore, sand, coal, timber, hydropower, gold, limestone\nLand use:\n    arable land 2%; permanent crops 0%; meadows and pastures 53%; forest and\n    woodland 38%; other 7%; includes irrigated 1%\nEnvironment:\n    earthquakes are common, though usually not severe\n\n:New Zealand People\n\nPopulation:\n    3,347,369 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    9 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 80 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - New Zealander(s); adjective - New Zealand\nEthnic divisions:\n    European 88%, Maori 8.9%, Pacific Islander 2.9%, other 0.2%\nReligions:\n    Anglican 24%, Presbyterian 18%, Roman Catholic 15%, Methodist 5%, Baptist\n    2%, other Protestant 3%, unspecified or none 9% (1986)\nLanguages:\n    English (official), Maori\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1970)\nLabor force:\n    1,603,500 (June 1991); services 67.4%, manufacturing 19.8%, primary\n    production 9.3% (1987)\nOrganized labor:\n    681,000 members; 43% of labor force (1986)\n\n:New Zealand Government\n\nLong-form name:\n    none; abbreviated NZ\nType:\n    parliamentary democracy\nCapital:\n    Wellington\nAdministrative divisions:\n    93 counties, 9 districts*, and 3 town districts**; Akaroa, Amuri, Ashburton,\n    Bay of Islands, Bruce, Buller, Chatham Islands, Cheviot, Clifton, Clutha,\n    Cook, Dannevirke, Egmont, Eketahuna, Ellesmere, Eltham, Eyre, Featherston,\n    Franklin, Golden Bay, Great Barrier Island, Grey, Hauraki Plains, Hawera*,\n    Hawke's Bay, Heathcote, Hikurangi**, Hobson, Hokianga, Horowhenua, Hurunui,\n    Hutt, Inangahua, Inglewood, Kaikoura, Kairanga, Kiwitea, Lake, Mackenzie,\n    Malvern, Manaia**, Manawatu, Mangonui, Maniototo, Marlborough, Masterton,\n    Matamata, Mount Herbert, Ohinemuri, Opotiki, Oroua, Otamatea, Otorohanga*,\n    Oxford, Pahiatua, Paparua, Patea, Piako, Pohangina, Raglan, Rangiora*,\n    Rangitikei, Rodney, Rotorua*, Runanga, Saint Kilda, Silverpeaks, Southland,\n    Stewart Island, Stratford, Strathallan, Taranaki, Taumarunui, Taupo,\n    Tauranga, Thames-Coromandel*, Tuapeka, Vincent, Waiapu, Waiheke, Waihemo,\n    Waikato, Waikohu, Waimairi, Waimarino, Waimate, Waimate West, Waimea, Waipa,\n    Waipawa*, Waipukurau*, Wairarapa South, Wairewa, Wairoa, Waitaki, Waitomo*,\n    Waitotara, Wallace, Wanganui, Waverley**, Westland, Whakatane*, Whangarei,\n    Whangaroa, Woodville\nIndependence:\n    26 September 1907 (from UK)\nConstitution:\n    no formal, written constitution; consists of various documents, including\n    certain acts of the UK and New Zealand Parliaments; Constitution Act 1986\n    was to have come into force 1 January 1987, but has not been enacted\nDependent areas:\n    Cook Islands, Niue, Tokelau\nLegal system:\n    based on English law, with special land legislation and land courts for\n    Maoris; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Waitangi Day (Treaty of Waitangi established British sovereignty), 6\n    February (1840)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    unicameral House of Representatives (commonly called Parliament)\nJudicial branch:\n    High Court, Court of Appeal\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Dame Catherine TIZARD (since 12 December 1990)\n  Head of Government:\n    Prime Minister James BOLGER (since 29 October 1990); Deputy Prime Minister\n    Donald McKINNON (since 2 November 1990)\nPolitical parties and leaders:\n    National Party (NP; government), James BOLGER; New Zealand Labor Party\n    (NZLP; opposition), Michael MOORE; NewLabor Party (NLP), Jim ANDERTON;\n    Democratic Party, Dick RYAN; New Zealand Liberal Party, Hanmish MACINTYRE\n    and Gilbert MYLES; Green Party, no official leader; Mana Motuhake, Martin\n    RATA; Socialist Unity Party (SUP; pro-Soviet), Kenneth DOUGLAS; note - the\n    New Labor, Democratic, and Mana Motuhake parties formed a coalition in\n    September 1991; the Green Party joined the coalition in May 1992\n\n:New Zealand Government\n\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held on 27 October 1990 (next to be held October 1993); results - NP\n    49%, NZLP 35%, Green Party 7%, NLP 5%; seats - (97 total) NP 67, NZLP 29,\n    NLP 1\nMember of:\n    ANZUS (US suspended security obligations to NZ on 11 August 1986), APEC,\n    AsDB, Australia Group, C, CCC, CP, COCOM, (cooperating country), EBRD,\n    ESCAP, FAO, GATT, IAEA, IBRD, ICAO, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF,\n    IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU, LORCS,\n    MTCR, OECD, PCA, SPC, SPF, UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UNTSO, UPU,\n    WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador - Denis Bazely Gordon McLEAN; Chancery at 37 Observatory Circle\n    NW, Washington, DC 20008; telephone (202) 328-4800; there are New Zealand\n    Consulates General in Los Angeles and New York\n  US:\n    Ambassador Della M. NEWMAN; Embassy at 29 Fitzherbert Terrace, Thorndon,\n    Wellington (mailing address is P. O. Box 1190, Wellington; PSC 467, Box 1,\n    FPO AP 96531-1001); telephone [64] (4) 722-068; FAX [64] (4) 723-537; there\n    is a US Consulate General in Auckland\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant with four red\n    five-pointed stars edged in white centered in the outer half of the flag;\n    the stars represent the Southern Cross constellation\n\n:New Zealand Economy\n\nOverview:\n    Since 1984 the government has been reorienting an agrarian economy dependent\n    on a guaranteed British market to an open free market economy that can\n    compete on the global scene. The government has hoped that dynamic growth\n    would boost real incomes, reduce inflationary pressures, and permit the\n    expansion of welfare benefits. The results have been mixed: inflation is\n    down from double-digit levels, but growth has been sluggish and\n    unemployment, always a highly sensitive issue, has exceeded 10% since May\n    1991. In 1988, GDP fell by 1%, in 1989 grew by a moderate 2.4%, and was flat\n    in 1990-91.\nGDP:\n    purchasing power equivalent - $46.2 billion, per capita $14,000; real growth\n    rate - 0.4% (1991 est.)\nInflation rate (consumer prices):\n    1.0% (1991)\nUnemployment rate:\n    10.7% (September 1991)\nBudget:\n    revenues $17.6 billion; expenditures $18.3 billion, including capital\n    expenditures of $NA (FY91 est.)\nExports:\n    $9.4 billion (f.o.b., FY91)\n  commodities:\n    wool, lamb, mutton, beef, fruit, fish, cheese, manufactures, chemicals,\n    forestry products\n  partners:\n    EC 18.3%, Japan 17.9%, Australia 17.5%, US 13.5%, China 3.6%, South Korea\n    3.1%\nImports:\n    $8.4 billion (f.o.b., FY91)\n  commodities:\n    petroleum, consumer goods, motor vehicles, industrial equipment\n  partners:\n    Australia 19.7%, Japan 16.9%, EC 16.9%, US 15.3%, Taiwan 3.0%\nExternal debt:\n    $17.4 billion (1989)\nIndustrial production:\n    growth rate 1.9% (1990); accounts for about 20% of GDP\nElectricity:\n    7,800,000 kW capacity; 28,000 million kWh produced, 8,500 kWh per capita\n    (1990)\nIndustries:\n    food processing, wood and paper products, textiles, machinery,\n    transportation equipment, banking and insurance, tourism, mining\nAgriculture:\n    accounts for about 9% of GDP and 10% of the work force; livestock\n    predominates - wool, meat, dairy products all export earners; crops - wheat,\n    barley, potatoes, pulses, fruits, and vegetables; surplus producer of farm\n    products; fish catch reached a record 503,000 metric tons in 1988\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $526 million\nCurrency:\n    New Zealand dollar (plural - dollars); 1 New Zealand dollar (NZ$) = 100\n    cents\nExchange rates:\n    New Zealand dollars (NZ$) per US$1 - 1.8245 (March 1992), 1.7265 (1991),\n    1.6750 (1990), 1.6711 (1989), 1.5244 (1988), 1.6886 (1987)\nFiscal year:\n    1 July - 30 June\n\n:New Zealand Communications\n\nRailroads:\n    4,716 km total; all 1.067-meter gauge; 274 km double track; 113 km\n    electrified; over 99% government owned\nHighways:\n    92,648 km total; 49,547 km paved, 43,101 km gravel or crushed stone\nInland waterways:\n    1,609 km; of little importance to transportation\nPipelines:\n    natural gas 1,000 km; petroleum products 160 km; condensate 150 km\nPorts:\n    Auckland, Christchurch, Dunedin, Wellington, Tauranga\nMerchant marine:\n    18 ships (1,000 GRT or over) totaling 182,206 GRT/246,446 DWT; includes 2\n    cargo, 5 roll-on/roll-off, 1 railcar carrier, 4 oil tanker, 1 liquefied gas,\n    5 bulk\nCivil air:\n    about 40 major transport aircraft\nAirports:\n    118 total, 118 usable; 34 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 43 with runways 1,220-2,439 m\nTelecommunications:\n    excellent international and domestic systems; 2,110,000 telephones;\n    broadcast stations - 64 AM, 2 FM, 14 TV; submarine cables extend to\n    Australia and Fiji; 2 Pacific Ocean INTELSAT earth stations\n\n:New Zealand Defense Forces\n\nBranches:\n    New Zealand Army, Royal New Zealand Navy, Royal New Zealand Air Force\nManpower availability:\n    males 15-49, 874,703; 739,923 fit for military service; 30,297 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $792 million, 2% of GDP (FY92)\n\n:Nicaragua Geography\n\nTotal area:\n    129,494 km2\nLand area:\n    120,254 km2\nComparative area:\n    slightly larger than New York State\nLand boundaries:\n    1,231 km total; Costa Rica 309 km, Honduras 922 km\nCoastline:\n    910 km\nMaritime claims:\n  Contiguous zone:\n    25 nm security zone (status of claim uncertain)\n  Continental shelf:\n    not specified\n  Territorial sea:\n    200 nm\nDisputes:\n    territorial disputes with Colombia over the Archipelago de San Andres y\n    Providencia and Quita Sueno Bank; unresolved maritime boundary in Golfo de\n    Fonseca\nClimate:\n    tropical in lowlands, cooler in highlands\nTerrain:\n    extensive Atlantic coastal plains rising to central interior mountains;\n    narrow Pacific coastal plain interrupted by volcanoes\nNatural resources:\n    gold, silver, copper, tungsten, lead, zinc, timber, fish\nLand use:\n    arable land 9%; permanent crops 1%; meadows and pastures 43%; forest and\n    woodland 35%; other 12%; including irrigated 1%\nEnvironment:\n    subject to destructive earthquakes, volcanoes, landslides, and occasional\n    severe hurricanes; deforestation; soil erosion; water pollution\n\n:Nicaragua People\n\nPopulation:\n    3,878,150 (July 1992), growth rate 2.8% (1992)\nBirth rate:\n    37 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    57 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    60 years male, 66 years female (1992)\nTotal fertility rate:\n    4.6 children born/woman (1992)\nNationality:\n    noun - Nicaraguan(s); adjective - Nicaraguan\nEthnic divisions:\n    mestizo 69%, white 17%, black 9%, Indian 5%\nReligions:\n    Roman Catholic 95%, Protestant 5%\nLanguages:\n    Spanish (official); English- and Indian-speaking minorities on Atlantic\n    coast\nLiteracy:\n    57% (male 57%, female 57%) age 15 and over can read and write (1971)\nLabor force:\n    1,086,000; service 43%, agriculture 44%, industry 13% (1986)\nOrganized labor:\n    35% of labor force\n\n:Nicaragua Government\n\nLong-form name:\n    Republic of Nicaragua\nType:\n    republic\nCapital:\n    Managua\nAdministrative divisions:\n    9 administrative regions encompassing 17 departments (departamentos,\n    singular - departamento); Boaco, Carazo, Chinandega, Chontales, Esteli,\n    Granada, Jinotega, Leon, Madriz, Managua, Masaya, Matagalpa, North Atlantic\n    Coast Autonomous Zone (RAAN), Nueva Segovia, Rio San Juan, Rivas, South\n    Atlantic Coast Autonomous Zone (RAAS)\nIndependence:\n    15 September 1821 (from Spain)\nConstitution:\n    January 1987\nLegal system:\n    civil law system; Supreme Court may review administrative acts\nNational holiday:\n    Independence Day, 15 September (1821)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    National Assembly (Asamblea Nacional)\nJudicial branch:\n    Supreme Court (Corte Suprema) and municipal courts\nLeaders:\n  Chief of State and Head of Government:\n    President Violeta Barrios de CHAMORRO (since 25 April 1990); Vice President\n    Virgilio GODOY (since 25 April 1990)\nPolitical parties and leaders:\n  ruling coalition:\n    National Opposition Union (UNO) is a 14-party alliance - National\n    Conservative Party (PNC), Silviano MATAMOROS; Conservative Popular Alliance\n    Party (PAPC), Myriam ARGUELLO; National Conservative Action Party (PANC),\n    Hernaldo ZUNIGA; National Democratic Confidence Party (PDCN), Augustin\n    JARQUIN; Independent Liberal Party (PLI), Wilfredo NAVARRO; Neo-Liberal\n    Party (PALI), Andres ZUNIGA; Liberal Constitutionalist Party (PLC), Jose\n    Ernesto SOMARRIBA; National Action Party (PAN), Eduardo RIVAS; Nicaraguan\n    Socialist Party (PSN), Gustavo TABLADA; Communist Party of Nicaragua\n    (PCdeN), Eli ALTIMIRANO; Popular Social Christian Party (PPSC), Luis\n    Humberto GUZMAN; Nicaraguan Democratic Movement (MDN), Roberto URROZ; Social\n    Democratic Party (PSD), Guillermo POTOY; Central American Integrationist\n    Party (PIAC), Alejandro PEREZ\n  opposition parties:\n    Sandinista National Liberation Front (FSLN), Daniel ORTEGA; Central American\n    Unionist Party (PUCA), Blanca ROJAS; Democratic Conservative Party of\n    Nicaragua (PCDN), Jose BRENES; Liberal Party of National Unity (PLUIN),\n    Eduardo CORONADO; Movement of Revolutionary Unity (MUR), Francisco SAMPER;\n    Social Christian Party (PSC), Erick RAMIREZ; Revolutionary Workers' Party\n    (PRT), Bonifacio MIRANDA; Social Conservative Party (PSOC), Fernando\n    AGUERRO; Popular Action Movement - Marxist-Leninist (MAP-ML), Isidro TELLEZ;\n    Popular Social Christian Party (PPSC), Mauricio DIAZ\nSuffrage:\n    universal at age 16\n\n:Nicaragua Government\n\nElections:\n  President:\n    last held on 25 February 1990 (next to be held February 1996); results -\n    Violeta Barrios de CHAMORRO (UNO) 54.7%, Daniel ORTEGA Saavedra (FSLN)\n    40.8%, other 4.5%\n  National Assembly:\n    last held on 25 February 1990 (next to be held February 1996); results - UNO\n    53.9%, FSLN 40.8%, PSC 1.6%, MUR 1.0%; seats - (92 total) UNO 51, FSLN 39,\n    PSC 1, MUR 1\nCommunists:\n    15,000-20,000\nOther political or pressure groups:\n    National Workers Front (FNT) is a Sandinista umbrella group of eight labor\n    unions: Sandinista Workers' Central (CST), Farm Workers Association (ATC),\n    Health Workers Federation (FETASALUD), National Union of Employees (UNE),\n    National Association of Educators of Nicaragua (ANDEN), Union of Journalists\n    of Nicaragua (UPN), Heroes and Martyrs Confederation of Professional\n    Associations (CONAPRO), and the National Union of Farmers and Ranchers\n    (UNAG); Permanent Congress of Workers (CPT) is an umbrella group of four\n    non-Sandinista labor unions: Confederation of Labor Unification (CUS),\n    Autonomous Nicaraguan Workers' Central (CTN-A), Independent General\n    Confederation of Labor (CGT-I), and Labor Action and Unity Central (CAUS);\n    Nicaraguan Workers' Central (CTN) is an independent labor union; Superior\n    Council of Private Enterprise (COSEP) is a confederation of business groups\nMember of:\n    BCIE, CACM, ECLAC, FAO, G-77, GATT, IADB, IAEA, IBRD, ICAO, ICFTU, IDA,\n    IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES, LORCS,\n    NAM, OAS, OPANAL, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WFTU,\n    WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Ernesto PALAZIO; Chancery at 1627 New Hampshire Avenue NW,\n    Washington, DC 20009; telephone (202) 939-6570\n  US:\n    Ambassador Harry W. SHLAUDEMAN; Embassy at Kilometer 4.5 Carretera Sur.,\n    Managua (mailing address is APO AA 34021); telephone [505] (2) 666010 or\n    666013, 666015 through 18, 666026, 666027, 666032 through 34; FAX [505] (2)\n    666046\nFlag:\n    three equal horizontal bands of blue (top), white, and blue with the\n    national coat of arms centered in the white band; the coat of arms features\n    a triangle encircled by the words REPUBLICA DE NICARAGUA on the top and\n    AMERICA CENTRAL on the bottom; similar to the flag of El Salvador, which\n    features a round emblem encircled by the words REPUBLICA DE EL SALVADOR EN\n    LA AMERICA CENTRAL centered in the white band; also similar to the flag of\n    Honduras, which has five blue stars arranged in an X pattern centered in the\n    white band\n\n:Nicaragua Economy\n\nOverview:\n    Government control of the economy historically has been extensive, although\n    the CHAMORRO government has pledged to greatly reduce intervention. Four\n    private banks have been licensed, and the government has liberalized foreign\n    trade and abolished price controls on most goods. Over 50% of the\n    agricultural and industrial firms remain state owned. Sandinista economic\n    policies and the war had produced a severe economic crisis. The foundation\n    of the economy continues to be the export of agricultural commodities,\n    largely coffee and cotton. Farm production fell by roughly 7% in 1989 and 4%\n    in 1990, and remained about even in 1991. The agricultural sector employs\n    44% of the work force and accounts for 15% of GDP and 80% of export\n    earnings. Industry, which employs 13% of the work force and contributes\n    about 25% to GDP, showed a drop of 7% in 1989, fell slightly in 1990, and\n    remained flat in 1991; output still is below pre-1979 levels. External debt\n    is one of the highest in the world on a per capita basis. In 1991 the\n    inflation rate was 766%, down sharply from the 13,490% of 1990.\nGDP:\n    exchange rate conversion - $1.6 billion, per capita $425; real growth rate\n    -1.0% (1991 est.)\nInflation rate (consumer prices):\n    766% (1991)\nUnemployment rate:\n    13%; underemployment 50% (1991)\nBudget:\n    revenues $347 million; expenditures $499 million, including capital\n    expenditures of $NA million (1991)\nExports:\n    $342 million (f.o.b., 1991 est.)\n  commodities:\n    coffee, cotton, sugar, bananas, seafood, meat, chemicals\n  partners:\n    OECD 75%, USSR and Eastern Europe 15%, other 10%\nImports:\n    $738 million (c.i.f., 1991 est.)\n  commodities:\n    petroleum, food, chemicals, machinery, clothing\n  partners:\n    Latin America 30%, US 25%, EC 20%, USSR and Eastern Europe 10%, other 15%\n    (1990 est.)\nExternal debt:\n    $10 billion (December 1991)\nIndustrial production:\n    growth rate NA; accounts for about 25% of GDP\nElectricity:\n    423,000 kW capacity; 1,409 million kWh produced, 376 kWh per capita (1991)\nIndustries:\n    food processing, chemicals, metal products, textiles, clothing, petroleum\n    refining and distribution, beverages, footwear\nAgriculture:\n    accounts for 15% of GDP and 44% of work force; cash crops - coffee, bananas,\n    sugarcane, cotton; food crops - rice, corn, cassava, citrus fruit, beans;\n    variety of animal products - beef, veal, pork, poultry, dairy; normally\n    self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $294 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1,381 million;\n    Communist countries (1970-89), $3.5 billion\nCurrency:\n    cordoba (plural - cordobas); 1 cordoba (C$) = 100 centavos\n\n:Nicaragua Economy\n\nExchange rates:\n    cordobas (C$) per US$1 - 25,000,000 (March 1992), 21,354,000 (1991), 15,655\n    (1989), 270 (1988), 102.60 (1987)\nFiscal year:\n    calendar year\n\n:Nicaragua Communications\n\nRailroads:\n    373 km 1.067-meter narrow gauge, government owned; majority of system not\n    operating; 3 km 1.435-meter gauge line at Puerto Cabezas (does not connect\n    with mainline)\nHighways:\n    25,930 km total; 4,000 km paved, 2,170 km gravel or crushed stone, 5,425 km\n    earth or graded earth, 14,335 km unimproved; Pan-American highway 368.5 km\nInland waterways:\n    2,220 km, including 2 large lakes\nPipelines:\n    crude oil 56 km\nPorts:\n    Corinto, El Bluff, Puerto Cabezas, Puerto Sandino, Rama\nMerchant marine:\n    2 cargo ships (1,000 GRT or over) totaling 2,161 GRT/2,500 DWT\nCivil air:\n    9 major transport aircraft\nAirports:\n    228 total, 155 usable; 11 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 12 with runways 1,220-2,439 m\nTelecommunications:\n    low-capacity radio relay and wire system being expanded; connection into\n    Central American Microwave System; 60,000 telephones; broadcast stations -\n    45 AM, no FM, 7 TV, 3 shortwave; earth stations - 1 Intersputnik and 1\n    Atlantic Ocean INTELSAT\n\n:Nicaragua Defense Forces\n\nBranches:\n    Ground Forces, Navy, Air Force\nManpower availability:\n    males 15-49, 878,066; 541,090 fit for military service; 42,997 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $70 million, 3.8% of GDP (1991 budget)\n\n:Niger Geography\n\nTotal area:\n    1,267,000 km2\nLand area:\n    1,266,700 km2\nComparative area:\n    slightly less than twice the size of Texas\nLand boundaries:\n    5,697 km total; Algeria 956 km, Benin 266 km, Burkina 628 km, Chad 1,175 km,\n    Libya 354 km, Mali 821 km, Nigeria 1,497 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Libya claims about 19,400 km2 in northern Niger; demarcation of\n    international boundaries in Lake Chad, the lack of which has led to border\n    incidents in the past, is completed and awaiting ratification by Cameroon,\n    Chad, Niger, and Nigeria; Burkina and Mali are proceeding with boundary\n    demarcation, including the tripoint with Niger\nClimate:\n    desert; mostly hot, dry, dusty; tropical in extreme south\nTerrain:\n    predominately desert plains and sand dunes; flat to rolling plains in south;\n    hills in north\nNatural resources:\n    uranium, coal, iron ore, tin, phosphates\nLand use:\n    arable land 3%; permanent crops 0%; meadows and pastures 7%; forest and\n    woodland 2%; other 88%; includes irrigated NEGL%\nEnvironment:\n    recurrent drought and desertification severely affecting marginal\n    agricultural activities; overgrazing; soil erosion\nNote:\n    landlocked\n\n:Niger People\n\nPopulation:\n    8,052,945 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    58 births/1,000 population (1992)\nDeath rate:\n    23 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    115 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    42 years male, 45 years female (1992)\nTotal fertility rate:\n    7.4 children born/woman (1992)\nNationality:\n    noun - Nigerien(s); adjective - Nigerien\nEthnic divisions:\n    Hausa 56%; Djerma 22%; Fula 8.5%; Tuareg 8%; Beri Beri (Kanouri) 4.3%; Arab,\n    Toubou, and Gourmantche 1.2%; about 4,000 French expatriates\nReligions:\n    Muslim 80%, remainder indigenous beliefs and Christians\nLanguages:\n    French (official); Hausa, Djerma\nLiteracy:\n    28% (male 40%, female 17%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,500,000 wage earners (1982); agriculture 90%, industry and commerce 6%,\n    government 4%; 51% of population of working age (1985)\nOrganized labor:\n    negligible\n\n:Niger Government\n\nLong-form name:\n    Republic of Niger\nType:\n    as of November 1991, transition government appointed by national reform\n    conference; scheduled to turn over power to democratically elected\n    government in January 1993\nCapital:\n    Niamey\nAdministrative divisions:\n    7 departments (departements, singular - departement); Agadez, Diffa, Dosso,\n    Maradi, Niamey, Tahoua, Zinder\nIndependence:\n    3 August 1960 (from France)\nConstitution:\n    December 1989 constitution revised November 1991 by National Democratic\n    Reform Conference\nLegal system:\n    based on French civil law system and customary law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Republic Day, 18 December (1958)\nExecutive branch:\n    president (ceremonial), prime minister (interim), Cabinet\nLegislative branch:\n    National Assembly\nJudicial branch:\n    State Court (Cour d'Etat), Court of Appeal (Cour d'Apel)\nLeaders:\n  Chief of State:\n    President Brig. Gen. Ali SAIBOU (since 14 November 1987); ceremonial post\n    since national conference (1991)\n  Head of Government:\n    Interim Prime Minister Amadou CHEIFFOU (since November 1991)\nPolitical parties and leaders:\n    National Movement of the Development Society (MNSD-NASSARA), Tanda MAMADOU;\n    Niger Progressive Party - African Democratic Rally (PPN-RDA), Harou KOUKA;\n    Union of Popular Forces for Democracy and Progress (UDFP-SAWABA), Djibo\n    BAKARY; Niger Democratic Union (UDN-SAWABA), Mamoudou PASCAL; Union of\n    Patriots, Democrats, and Progressives (UPDP), Andre SALIFOU; Niger Social\n    Democrat Party (PSDN-ALHERI), Mallam Adji WAZIRI; Niger Party for Democracy\n    and Socialism (PNDS-TARAYA), Issoufou MAHAMADOU; Democratic and Social\n    Convention (CDS-RAHAMA), Mahamane OUSMANE; Union for Democracy and Progress\n    (UDP), Bello TCHIOUSSO; Union for Democracy and Social Progress\n    (UDPS-AMANA), Akoli DAOUEL; Masses Union for Democratic Action (UMAD-AIKI),\n    Belko GARBA; Worker's Liberation Party (PLT), Idi Ango OUMAROU; Convention\n    for Social Rehabilitation (CRS), Abdoul Karim SEYNI; Popular Movement for\n    Democracy in Niger (MPDN), Abdou SANDA; Popular Front for National\n    Liberation (FPLN), Diallo SABO; Republican Party for Freedom and Progress in\n    Niger (PRLPN), Alka ALMOU; other parties forming\nSuffrage:\n    universal adult at age 18\nElections:\n  President:\n    President Ali SAIBOU has been in office since December 1989, but the\n    presidency is now a largely ceremonial position\n\n:Niger Government\n\n  National Assembly:\n    last held 10 December 1989 (next to be held NA); results - MNSD was the only\n    party; seats - (150 total) MNSD 150 (indirectly elected); note - Niger held\n    a national conference from July to November 1991 to decide upon a\n    transitional government and an agenda for multiparty elections\nMember of:\n    ACCT, ACP, AfDB, CCC, CEAO, ECA, ECOWAS, Entente, FAO, FZ, G-77, GATT, IAEA,\n    IBRD, ICAO, IDA, IDB, IFAD, IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU,\n    LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Moumouni Adamou DJERMAKOYE; Chancery at 2204 R Street NW,\n    Washington, DC 20008; telephone (202) 483-4224 through 4227\n  US:\n    Ambassador Jennifer C. WARD; Embassy at Avenue des Ambassades, Niamey\n    (mailing address is B. P. 11201, Niamey); telephone [227] 72-26-61 through\n    64\nFlag:\n    three equal horizontal bands of orange (top), white, and green with a small\n    orange disk (representing the sun) centered in the white band; similar to\n    the flag of India, which has a blue spoked wheel centered in the white band\n\n:Niger Economy\n\nOverview:\n    About 90% of the population is engaged in farming and stock raising,\n    activities that generate almost half the national income. The economy also\n    depends heavily on exploitation of large uranium deposits. Uranium\n    production grew rapidly in the mid-1970s, but tapered off in the early 1980s\n    when world prices declined. France is a major customer, while Germany,\n    Japan, and Spain also make regular purchases. The depressed demand for\n    uranium has contributed to an overall sluggishness in the economy, a severe\n    trade imbalance, and a mounting external debt.\nGDP:\n    exchange rate conversion - $2.4 billion, per capita $300; real growth rate\n    -3.4% (1991)\nInflation rate (consumer prices):\n    NA\nUnemployment rate:\n    NA%\nBudget:\n    revenues $220 million; expenditures $446 million, including capital\n    expenditures of $190 million (FY89 est.)\nExports:\n    $320 million (f.o.b., 1990)\n  commodities:\n    uranium 75%, livestock products, cowpeas, onions\n  partners:\n    France 65%, Nigeria 11%, Ivory Coast, Italy\nImports:\n    $439 million (c.i.f., 1990)\n  commodities:\n    petroleum products, primary materials, machinery, vehicles and parts,\n    electronic equipment, pharmaceuticals, chemical products, cereals,\n    foodstuffs\n  partners:\n    France 32%, Ivory Coast 11%, Germany 5%, Italy 4%, Nigeria 4%\nExternal debt:\n    $1.8 billion (December 1990 est.)\nIndustrial production:\n    growth rate 0% (1989); accounts for 18% of GDP\nElectricity:\n    105,000 kW capacity; 230 million kWh produced, 30 kWh per capita (1991)\nIndustries:\n    cement, brick, textiles, food processing, chemicals, slaughterhouses, and a\n    few other small light industries; uranium production began in 1971\nAgriculture:\n    accounts for roughly 40% of GDP and 90% of labor force; cash crops -\n    cowpeas, cotton, peanuts; food crops - millet, sorghum, cassava, rice;\n    livestock - cattle, sheep, goats; self-sufficient in food except in drought\n    years\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $380 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3,165 million; OPEC\n    bilateral aid (1979-89), $504 million; Communist countries (1970-89), $61\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\n\n:Niger Economy\n\nFiscal year:\n    1 October - 30 September\n\n:Niger Communications\n\nHighways:\n    39,970 km total; 3,170 km bituminous, 10,330 km gravel and laterite, 3,470\n    km earthen, 23,000 km tracks\nInland waterways:\n    Niger River is navigable 300 km from Niamey to Gaya on the Benin frontier\n    from mid-December through March\nCivil air:\n    2 major transport aircraft\nAirports:\n    29 total, 27 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 13 with runways 1,220-2,439 m\nTelecommunications:\n    small system of wire, radiocommunications, and radio relay links\n    concentrated in southwestern area; 14,260 telephones; broadcast stations -\n    15 AM, 5 FM, 18 TV; satellite earth stations - 1 Atlantic Ocean INTELSAT, 1\n    Indian Ocean INTELSAT, and 3 domestic, with 1 planned\n\n:Niger Defense Forces\n\nBranches:\n    Army, Air Force, Gendarmerie, Republican National Guard, National police\nManpower availability:\n    males 15-49, 1,724,293; 928,177 fit for military service; 83,528 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $27 million, 1.3% of GDP (1989)\n\n:Nigeria Geography\n\nTotal area:\n    923,770 km2\nLand area:\n    910,770 km2\nComparative area:\n    slightly more than twice the size of California\nLand boundaries:\n    4,047 km total; Benin 773 km, Cameroon 1,690 km, Chad 87 km, Niger 1,497 km\nCoastline:\n    853 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    30 nm\nDisputes:\n    demarcation of international boundaries in Lake Chad, the lack of which has\n    led to border incidents in the past, is completed and awaiting ratification\n    by Cameroon, Chad, Niger, and Nigeria; boundary commission created with\n    Cameroon to discuss unresolved land and maritime boundaries - has not yet\n    convened\nClimate:\n    varies - equatorial in south, tropical in center, arid in north\nTerrain:\n    southern lowlands merge into central hills and plateaus; mountains in\n    southeast, plains in north\nNatural resources:\n    crude oil, tin, columbite, iron ore, coal, limestone, lead, zinc, natural\n    gas\nLand use:\n    arable land 31%; permanent crops 3%; meadows and pastures 23%; forest and\n    woodland 15%; other 28%; includes irrigated NEGL%\nEnvironment:\n    recent droughts in north severely affecting marginal agricultural\n    activities; desertification; soil degradation, rapid deforestation\n\n:Nigeria People\n\nPopulation:\n    126,274,589 (July 1992), growth rate 3.0% (1992); note - a new population\n    figure of 88.5 million is in the process of being incorporated into revised\n    Census Bureau figures (April 1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    16 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    110 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    48 years male, 50 years female (1992)\nTotal fertility rate:\n    6.5 children born/woman (1992)\nNationality:\n    noun - Nigerian(s); adjective - Nigerian\nEthnic divisions:\n    more than 250 tribal groups; Hausa and Fulani of the north, Yoruba of the\n    southwest, and Ibos of the southeast make up 65% of the population; about\n    27,000 non-Africans\nReligions:\n    Muslim 50%, Christian 40%, indigenous beliefs 10%\nLanguages:\n    English (official); Hausa, Yoruba, Ibo, Fulani, and several other languages\n    also widely used\nLiteracy:\n    51% (male 62%, female 40%) age 15 and over can read and write (1990 est.)\nLabor force:\n    42,844,000; agriculture 54%, industry, commerce, and services 19%,\n    government 15%; 49% of population of working age (1985)\nOrganized labor:\n    3,520,000 wage earners belong to 42 recognized trade unions, which come\n    under a single national labor federation - the Nigerian Labor Congress (NLC)\n\n:Nigeria Government\n\nLong-form name:\n    Federal Republic of Nigeria\nType:\n    military government since 31 December 1983\nCapital:\n    Abuja; note - on 12 December 1991 the capital was officially moved from\n    Lagos to Abuja; many government offices remain in Lagos pending completion\n    of facilities in Abuja\nAdministrative divisions:\n    30 states and 1 territory*; Abia, Abuja Capital Territory*, Adamawa, Akwa\n    Ibom, Anambra, Bauchi, Benue, Borno, Cross River, Delta, Edo, Enugu, Imo,\n    Jigawa, Kaduna, Kano, Katsina, Kebbi, Kogi, Kwara, Lagos, Niger, Ogun, Ondo,\n    Osun, Oyo, Plateau, Rivers, Sokoto, Taraba, Yobe\nIndependence:\n    1 October 1960 (from UK)\nConstitution:\n    1 October 1979, amended 9 February 1984, revised 1989\nLegal system:\n    based on English common law, Islamic law, and tribal law\nNational holiday:\n    Independence Day, 1 October (1960)\nExecutive branch:\n    president of the Armed Forces Ruling Council, Armed Forces Ruling Council,\n    National Council of State, Council of Ministers (cabinet)\nLegislative branch:\n    National Assembly was dissolved after the military coup of 31 December 1983\nJudicial branch:\n    Supreme Court, Federal Court of Appeal\nLeaders:\n  Chief of State and Head of Government:\n    President and Commander in Chief of Armed Forces Gen. Ibrahim BABANGIDA\n    (since 27 August 1985)\nPolitical parties and leaders:\n    two political parties established by the government in 1989 - Social\n    Democratic Party (SDP) and National Republican Convention (NRC)\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    first presidential elections since the 31 December 1983 coup scheduled for\n    late 1992\n  National Assembly:\n    first elections since it was dissolved after the 31 December 1983 coup\n    scheduled for 4 July 1992\nCommunists:\n    the pro-Communist underground consists of a small fraction of the Nigerian\n    left; leftist leaders are prominent in the country's central labor\n    organization but have little influence on the government\nMember of:\n    ACP, AfDB, C, CCC, ECA, ECOWAS, FAO, G-15, G-19, G-24, G-77, GATT, IAEA,\n    IBRD, ICAO, ICC, IDA, IFAD, IFC, ILO, IMO, IMF, INMARSAT, INTELSAT,\n    INTERPOL, IOC, ISO, ITU, LORCS, NAM, OAU, OIC, OPEC, PCA, UN, UNCTAD,\n    UNESCO, UNHCR, UNIDO, UNIIMOG, UPU, WCL, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Zubair Mahmud KAZAURE; Chancery at 2201 M Street NW, Washington,\n    DC 20037; telephone (202) 822-1500; there is a Nigerian Consulate General in\n    New York\n\n:Nigeria Government\n\n  US:\n    Ambassador Lannon WALKER; Embassy at 2 Eleke Crescent, Lagos (mailing\n    address is P. O. Box 554, Lagos); telephone [234] (1) 610097; FAX [234] (1)\n    610257; there is a US Consulate General in Kaduna; note - the US Government\n    has requested Nigerian Government permission to open an Embassy Branch\n    Office in Abuja; the US Embassy will remain in Lagos until a later date,\n    when the Branch Office in Abuja will become the Embassy and the Embassy in\n    Lagos will become a Consulate General\nFlag:\n    three equal vertical bands of green (hoist side), white, and green\n\n:Nigeria Economy\n\nOverview:\n    Although Nigeria is Africa's leading oil-producing country, it remains poor\n    with a $250 per capita GDP. In 1991 massive government spending, much of it\n    to help ensure a smooth transition to civilian rule, ballooned the budget\n    deficit and caused inflation and interest rates to rise. The lack of fiscal\n    discipline forced the IMF to declare Nigeria not in compliance with an\n    18-month standby facility started in January 1991. Lagos has set ambitious\n    targets for expanding oil production capacity and is offering foreign\n    companies more attractive investment incentives. Government efforts to\n    reduce Nigeria's dependence on oil exports and to sustain noninflationary\n    growth, however, have fallen short because of inadequate new investment\n    funds and endemic corruption. Living standards continue to deteriorate from\n    the higher level of the early 1980s oil boom.\nGDP:\n    exchange rate conversion - $30 billion, per capita $250; real growth rate\n    5.2% (1990 est.)\nInflation rate (consumer prices):\n    40% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $10 billion; expenditures $10 billion, including capital\n    expenditures of $NA (1992 est.)\nExports:\n    $13.6 billion (f.o.b., 1990)\n  commodities:\n    oil 95%, cocoa, rubber\n  partners:\n    EC 51%, US 32%\nImports:\n    $6.9 billion (c.i.f., 1990)\n  commodities:\n    consumer goods, capital equipment, chemicals, raw materials\n  partners:\n    EC, US\nExternal debt:\n    $32 billion (December 1991 est.)\nIndustrial production:\n    growth rate 7.2% (1990); accounts for 8.5% of GDP\nElectricity:\n    4,740,000 kW capacity; 11,280 million kWh produced, 90 kWh per capita (1991)\nIndustries:\n    crude oil and mining - coal, tin, columbite; primary processing industries -\n    palm oil, peanut, cotton, rubber, wood, hides and skins; manufacturing\n    industries - textiles, cement, building materials, food products, footwear,\n    chemical, printing, ceramics, steel\nAgriculture:\n    accounts for 32% of GDP and half of labor force; inefficient small-scale\n    farming dominates; once a large net exporter of food and now an importer;\n    cash crops - cocoa, peanuts, palm oil, rubber; food crops - corn, rice,\n    sorghum, millet, cassava, yams; livestock - cattle, sheep, goats, pigs;\n    fishing and forestry resources extensively exploited\nIllicit drugs:\n    illicit heroin and some cocaine trafficking; marijuana cultivation for\n    domestic consumption and export; major transit country for heroin en route\n    from southeast and southwest Asia via Africa to Western Europe and the US;\n    growing transit route for cocaine from South America via West Africa to\n    Western Europe and the US\n\n:Nigeria Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $705 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3.0 billion;\n    Communist countries (1970-89), $2.2 billion\nCurrency:\n    naira (plural - naira); 1 naira (N) = 100 kobo\nExchange rates:\n    naira (N) per US$1 - 10.226 (February 1992), 9.909 (1991), 8.038 (1990),\n    7.3647 (1989), 4.5370 (1988), 4.0160 (1987)\nFiscal year:\n    calendar year\n\n:Nigeria Communications\n\nRailroads:\n    3,505 km 1.067-meter gauge\nHighways:\n    107,990 km total 30,019 km paved (mostly bituminous-surface treatment);\n    25,411 km laterite, gravel, crushed stone, improved earth; 52,560 km\n    unimproved\nInland waterways:\n    8,575 km consisting of Niger and Benue Rivers and smaller rivers and creeks\nPipelines:\n    crude oil 2,042 km; natural gas 500 km; petroleum products 3,000 km\nPorts:\n    Lagos, Port Harcourt, Calabar, Warri, Onne, Sapele\nMerchant marine:\n    28 ships (1,000 GRT or over) totaling 418,046 GRT/664,949 DWT; includes 17\n    cargo, 1 refrigerated cargo, 1 roll-on/roll-off, 7 petroleum tanker, 1\n    chemical tanker, 1 bulk\nCivil air:\n    57 major transport aircraft\nAirports:\n    76 total, 64 usable; 33 with permanent-surface runways; 1 with runways over\n    3,659 m; 15 with runways 2,440-3,659 m; 22 with runways 1,220-2,439 m\nTelecommunications:\n    above-average system limited by poor maintenance; major expansion in\n    progress; radio relay and cable routes; broadcast stations - 35 AM, 17 FM,\n    28 TV; satellite earth stations - 2 Atlantic Ocean INTELSAT, 1 Indian Ocean\n    INTELSAT, 20 domestic stations; 1 coaxial submarine cable\n\n:Nigeria Defense Forces\n\nBranches:\n    Army, Navy, Air Force, paramilitary Police Force\nManpower availability:\n    males 15-49, 28,778,532; 16,451,582 fit for military service; 1,256,440\n    reach military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $300 million, 1% of GDP (1990 est.)\n\\\n\n:Niue Geography\n\nTotal area:\n    260 km2\nLand area:\n    260 km2\nComparative area:\n    slightly less than 1.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    64 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; modified by southeast trade winds\nTerrain:\n    steep limestone cliffs along coast, central plateau\nNatural resources:\n    fish, arable land\nLand use:\n    arable land 61%; permanent crops 4%; meadows and pastures 4%; forest and\n    woodland 19%; other 12%\nEnvironment:\n    subject to typhoons\nNote:\n    one of world's largest coral islands; located about 460 km east of Tonga\n\n:Niue People\n\nPopulation:\n    1,751 (July 1992), growth rate - 6.4% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Niuean(s); adjective - Niuean\nEthnic divisions:\n    Polynesian, with some 200 Europeans, Samoans, and Tongans\nReligions:\n    Ekalesia Nieue (Niuean Church) - a Protestant church closely related to the\n    London Missionary Society 75%, Mormon 10%, Roman Catholic, Jehovah's\n    Witnesses, Seventh-Day Adventist 5%\nLanguages:\n    Polynesian tongue closely related to Tongan and Samoan; English\nLiteracy:\n    NA% (male NA%, female NA%) but compulsory education age 5 to 14\nLabor force:\n    1,000 (1981 est.); most work on family plantations; paid work exists only in\n    government service, small industry, and the Niue Development Board\nOrganized labor:\n    NA\n\n:Niue Government\n\nLong-form name:\n    none\nType:\n    self-governing territory in free association with New Zealand; Niue fully\n    responsible for internal affairs; New Zealand retains responsibility for\n    external affairs\nCapital:\n    Alofi\nAdministrative divisions:\n    none\nIndependence:\n    became a self-governing territory in free association with New Zealand on 19\n    October 1974\nConstitution:\n    19 October 1974 (Niue Constitution Act)\nLegal system:\n    English common law\nNational holiday:\n    Waitangi Day (Treaty of Waitangi established British sovereignty), 6\n    February (1840)\nExecutive branch:\n    British monarch, premier, Cabinet\nLegislative branch:\n    Legislative Assembly\nJudicial branch:\n    Appeal Court of New Zealand, High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by New Zealand\n    Representative John SPRINGFORD (since 1974)\n  Head of Government:\n    Premier Sir Robert R. REX (since October 1974)\nPolitical parties and leaders:\n    Niue Island Party (NIP), Young VIVIAN\nSuffrage:\n    universal adult at age 18\nElections:\n  Legislative Assembly:\n    last held on 8 April 1990 (next to be held March 1993); results - percent of\n    vote NA; seats - (20 total, 6 elected) NIP 1, independents 5\nMember of:\n    ESCAP (associate), SPC, SPF\nDiplomatic representation:\n    none (self-governing territory in free association with New Zealand)\nFlag:\n    yellow with the flag of the UK in the upper hoist-side quadrant; the flag of\n    the UK bears five yellow five-pointed stars - a large one on a blue disk in\n    the center and a smaller one on each arm of the bold red cross\n\n:Niue Economy\n\nOverview:\n    The economy is heavily dependent on aid from New Zealand. Government\n    expenditures regularly exceed revenues, with the shortfall made up by grants\n    from New Zealand - the grants are used to pay wages to public employees. The\n    agricultural sector consists mainly of subsistence gardening, although some\n    cash crops are grown for export. Industry consists primarily of small\n    factories to process passion fruit, lime oil, honey, and coconut cream. The\n    sale of postage stamps to foreign collectors is an important source of\n    revenue. The island in recent years has suffered a serious loss of\n    population because of migration of Niueans to New Zealand.\nGNP:\n    exchange rate conversion - $2.1 million, per capita $1,000; real growth rate\n    NA% (1989 est.)\nInflation rate (consumer prices):\n    9.6% (1984)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $5.5 million; expenditures $6.3 million, including capital\n    expenditures of $NA (FY85 est.)\nExports:\n    $175,274 (f.o.b., 1985)\n  commodities:\n    canned coconut cream, copra, honey, passion fruit products, pawpaw, root\n    crops, limes, footballs, stamps, handicrafts\n  partners:\n    NZ 89%, Fiji, Cook Islands, Australia\nImports:\n    $3.8 million (c.i.f., 1985)\n  commodities:\n    food, live animals, manufactured goods, machinery, fuels, lubricants,\n    chemicals, drugs\n  partners:\n    NZ 59%, Fiji 20%, Japan 13%, Western Samoa, Australia, US\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    1,500 kW capacity; 3 million kWh produced, 1,490 kWh per capita (1990)\nIndustries:\n    tourist, handicrafts\nAgriculture:\n    copra, coconuts, passion fruit, honey, limes; subsistence crops - taro,\n    yams, cassava (tapioca), sweet potatoes; pigs, poultry, beef cattle\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89), $62\n    million\nCurrency:\n    New Zealand dollar (plural - dollars); 1 New Zealand dollar (NZ$) = 100\n    cents\nExchange rates:\n    New Zealand dollars (NZ$) per US$1 - 1.8245 (March 1992), 1.7265 (1991),\n    1.6750 (1990), 1.6711 (1989), 1.5244 (1988), 1.6886 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Niue Communications\n\nHighways:\n    123 km all-weather roads, 106 km access and plantation roads\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with permanent-surface runway of 1,650 m\nTelecommunications:\n    single-line telephone system connects all villages on island; 383\n    telephones; 1,000 radio receivers (1987 est.); broadcast stations - 1 AM, 1\n    FM, no TV\n\n:Niue Defense Forces\n\nBranches:\n    Police Force\nNote:\n    defense is the responsibility of New Zealand\n\n:Norfolk Island Geography\n\nTotal area:\n    34.6 km2\nLand area:\n    34.6 km2\nComparative area:\n    about 0.2 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    32 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    subtropical, mild, little seasonal temperature variation\nTerrain:\n    volcanic formation with mostly rolling plains\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 25%; forest and\n    woodland 0%; other 75%\nEnvironment:\n    subject to typhoons (especially May to July)\nNote:\n    located 1,575 km east of Australia in the South Pacific Ocean\n\n:Norfolk Island People\n\nPopulation:\n    2,620 (July 1992), growth rate 1.7% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Norfolk Islander(s); adjective - Norfolk Islander(s)\nEthnic divisions:\n    descendants of the Bounty mutiny; more recently, Australian and New Zealand\n    settlers\nReligions:\n    Anglican 39%, Roman Catholic 11.7%, Uniting Church in Australia 16.4%,\n    Seventh-Day Adventist 4.4%, none 9.2%, unknown 16.9%, other 2.4% (1986)\nLanguages:\n    English (official) and Norfolk - a mixture of 18th century English and\n    ancient Tahitian\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Norfolk Island Government\n\nLong-form name:\n    Territory of Norfolk Island\nType:\n    territory of Australia\nCapital:\n    Kingston (administrative center), Burnt Pine (commercial center)\nAdministrative divisions:\n    none (territory of Australia)\nIndependence:\n    none (territory of Australia)\nConstitution:\n    Norfolk Island Act of 1957\nLegal system:\n    wide legislative and executive responsibility under the Norfolk Island Act\n    of 1979; Supreme Court\nNational holiday:\n    Pitcairners Arrival Day Anniversary, 8 June (1856)\nExecutive branch:\n    British monarch, governor general of Australia, administrator, Executive\n    Council (cabinet)\nLegislative branch:\n    unicameral Legislative Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Administrator H.\n    B. MACDONALD (since NA 1989), who is appointed by the Governor General of\n    Australia\n  Head of Government:\n    Assembly President and Chief Minister John Terence BROWN (since NA)\nPolitical parties and leaders:\n    NA\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Assembly:\n    last held 1989 (held every three years); results - percent of vote by party\n    NA; seats - (9 total) percent of seats by party NA\nMember of:\n    none\nDiplomatic representation:\n    none (territory of Australia)\nFlag:\n    three vertical bands of green (hoist side), white, and green with a large\n    green Norfolk Island pine tree centered in the slightly wider white band\n\n:Norfolk Island Economy\n\nOverview:\n    The primary economic activity is tourism, which has brought a level of\n    prosperity unusual among inhabitants of the Pacific Islands. The number of\n    visitors has increased steadily over the years and reached 29,000 in FY89.\n    Revenues from tourism have given the island a favorable balance of trade and\n    helped the agricultural sector to become self-sufficient in the production\n    of beef, poultry, and eggs.\nGDP:\n    exchange rate conversion - $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $4.2 million, including capital expenditures of\n    $400,000 (FY89)\nExports:\n    $1.7 million (f.o.b., FY86)\n  commodities:\n    postage stamps, seeds of the Norfolk Island pine and Kentia Palm, small\n    quantities of avocados\n  partners:\n    Australia, Pacific Islands, NZ, Asia, Europe\nImports:\n    $15.6 million (c.i.f., FY86)\n  commodities:\n    NA\n  partners:\n    Australia, Pacific Islands, NZ, Asia, Europe\nExternal debt:\n    NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    7,000 kW capacity; 8 million kWh produced, 3,160 kWh per capita (1990)\nIndustries:\n    tourism\nAgriculture:\n    Norfolk Island pine seed, Kentia palm seed, cereals, vegetables, fruit,\n    cattle, poultry\nEconomic aid:\n    none\nCurrency:\n    Australian dollar (plural - dollars); 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Australian dollars ($A) per US$1 - 1.3177 (March 1992), 1.2835 (1991),\n    1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Norfolk Island Communications\n\nHighways:\n    80 km of roads, including 53 km paved; remainder are earth formed or coral\n    surfaced\nPorts:\n    none; loading jetties at Kingston and Cascade\nAirports:\n    1 with permanent-surface runways 1,220-2,439 m (Australian owned)\nTelecommunications:\n    1,500 radio receivers (1982); radio link service with Sydney; 987 telephones\n    (1983); broadcast stations - 1 AM, no FM, no TV\n\n:Norfolk Island Defense Forces\n\nNote:\n    defense is the responsibility of Australia\n\n:Northern Mariana Islands Geography\n\nTotal area:\n    477 km2\nLand area:\n    477 km2; comprises 16 islands including Saipan, Rota, and Tinian\nComparative area:\n    slightly more than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    1,482 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical marine; moderated by northeast trade winds, little seasonal\n    temperature variation; dry season December to July, rainy season July to\n    October\nTerrain:\n    southern islands are limestone with level terraces and fringing coral reefs;\n    northern islands are volcanic; highest elevation is 471 meters (Mt. Tagpochu\n    on Saipan)\nNatural resources:\n    arable land, fish\nLand use:\n    arable land 1%; permanent crops NA%; meadows and pastures 19%; forest and\n    woodland NA%; other NA%\nEnvironment:\n    active volcanos on Pagan and Agrihan; subject to typhoons during the rainy\n    season\nNote:\n    strategic location 5,635 km west-southwest of Honolulu in the North Pacific\n    Ocean, about three-quarters of the way between Hawaii and the Philippines\n\n:Northern Mariana Islands People\n\nPopulation:\n    47,168 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    35 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    38 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 69 years female (1992)\nTotal fertility rate:\n    2.7 children born/woman (1992)\nNationality:\n    undetermined\nEthnic divisions:\n    Chamorro majority; Carolinians and other Micronesians; Spanish, German,\n    Japanese admixtures\nReligions:\n    Christian with a Roman Catholic majority, although traditional beliefs and\n    taboos may still be found\nLanguages:\n    English, but Chamorro and Carolinian are also spoken in the home and taught\n    in school\nLiteracy:\n    96% (male 97%, female 96%) age 15 and over can read and write (1980)\nLabor force:\n    12,788 local; 18,799 foreign workers (1990 est.)\nOrganized labor:\n    NA\n\n:Northern Mariana Islands Government\n\nLong-form name:\n    Commonwealth of the Northern Mariana Islands\nType:\n    commonwealth in political union with the US and administered by the Office\n    of Territorial and International Affairs, US Department of the Interior\nCapital:\n    Saipan\nAdministrative divisions:\n    none\nIndependence:\n    none (commonwealth in political union with the US)\nConstitution:\n    Covenant Agreement effective 3 November 1986\nLegal system:\n    based on US system except for customs, wages, immigration laws, and taxation\nNational holiday:\n    Commonwealth Day, 8 January (1978)\nExecutive branch:\n    US President; governor, lieutenant governor\nLegislative branch:\n    bicameral Legislature consists of an upper house or Senate and a lower house\n    or House of Representatives\nJudicial branch:\n    Commonwealth Court and the Federal District Court\nLeaders:\n  Chief of State:\n    President George BUSH (since 20 January 1989); Vice President Dan QUAYLE\n    (since 20 January 1989)\n  Head of Government:\n    Governor Lorenzo I. DeLeon GUERRERO (since 9 January 1990); Lieutenant\n    Governor Benjamin T. MANGLONA (since 9 January 1990)\nPolitical parties and leaders:\n    Republican Party, Alonzo IGISOMAR; Democratic Party, Felicidad OGUMORO\nSuffrage:\n    universal at age 18; indigenous inhabitants are US citizens but do not vote\n    in US presidential elections\nElections:\n  Governor:\n    last held in November 1989 (next to be held November 1993); results -\n    Lorenzo I. DeLeon GUERRERO, Republican Party, was elected governor\n  Senate:\n    last held on November 1991 (next to be held November 1993); results -\n    percent of vote by party NA; seats - (9 total) Republications 6, Democrats 3\n  House of Representatives:\n    last held in November 1991 (next to be held November 1993); results -\n    percent of vote by party NA; seats - (15 total) Republicans 5, Democrats 10\n  US House of Representatives:\n    the Commonwealth does not have a nonvoting delegate in Congress; instead, it\n    has an elected official ``resident representative'' located in Washington,\n    DC; seats - (1 total) Republican (Juan N. BABAUTA)\nMember of:\n    ESCAP (associate), SPC\nDiplomatic representation:\n    none\nFlag:\n    blue with a white five-pointed star superimposed on the gray silhouette of a\n    latte stone (a traditional foundation stone used in building) in the center\n\n:Northern Mariana Islands Economy\n\nOverview:\n    The economy benefits substantially from financial assistance from the US. An\n    agreement for the years 1986 to 1992 entitles the islands to $228 million\n    for capital development, government operations, and special programs.\n    Another major source of income is the tourist industry, which employs about\n    10% of the work force. Japanese tourists predominate. The agricultural\n    sector is made up of cattle ranches and small farms producing coconuts,\n    breadfruit, tomatoes, and melons. Industry is small scale in nature - mostly\n    handicrafts and fish processing.\nGNP:\n    purchasing power equivalent - $165 million, per capita $3,498; real growth\n    rate NA% (1982); note - GNP numbers reflect US spending\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $112.2 million, including capital expenditures of\n    $NA (February 1990)\nExports:\n    $153.9 million (1989)\n  commodities:\n    manufactured goods, garments, vegetables, beef, pork\n  partners:\n    NA\nImports:\n    $313.7 million, a 43% increase over previous year (1989)\n  commodities:\n    NA\n  partners:\n    NA\nExternal debt:\n    none\nIndustrial production:\n    growth rate NA%\nElectricity:\n    25,000 kW capacity; 35 million kWh produced, 740 kWh per capita (1990)\nIndustries:\n    tourism, construction, light industry, handicrafts\nAgriculture:\n    coffee, coconuts, fruits, tobacco, cattle\nEconomic aid:\n    none\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Northern Mariana Islands Communications\n\nHighways:\n    381.5 km total (134.5 km first-grade primary, 55 km secondary, 192 km local)\n    (1991)\nPorts:\n    Saipan, Rota, Tinian\nAirports:\n    6 total, 4 usable; 3 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 2 AM, 1 FM (1984), 1 TV; 2 Pacific Ocean INTELSAT earth\n    stations\n\n:Northern Mariana Islands Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Norway Geography\n\nTotal area:\n    324,220 km2\nLand area:\n    307,860 km2\nComparative area:\n    slightly larger than New Mexico\nLand boundaries:\n    2,515 km total; Finland 729 km, Sweden 1,619 km, Russia 167 km\nCoastline:\n    21,925 km; includes mainland 3,419 km, large islands 2,413 km, long fjords,\n    numerous small islands, and minor indentations 16,093 km\nMaritime claims:\n  Contiguous zone:\n    10 nm\n  Continental shelf:\n    to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    4 nm\nDisputes:\n    territorial claim in Antarctica (Queen Maud Land); Denmark has challenged\n    Norway's maritime claims between Greenland and Jan Mayen; maritime boundary\n    dispute with Russia over portion of Barents Sea\nClimate:\n    temperate along coast, modified by North Atlantic Current; colder interior;\n    rainy year-round on west coast\nTerrain:\n    glaciated; mostly high plateaus and rugged mountains broken by fertile\n    valleys; small, scattered plains; coastline deeply indented by fjords;\n    arctic tundra in north\nNatural resources:\n    crude oil, copper, natural gas, pyrites, nickel, iron ore, zinc, lead, fish,\n    timber, hydropower\nLand use:\n    arable land 3%; permanent crops 0%; meadows and pastures NEGL%; forest and\n    woodland 27%; other 70%; includes irrigated NEGL%\nEnvironment:\n    air and water pollution; acid rain; note - strategic location adjacent to\n    sea lanes and air routes in North Atlantic; one of most rugged and longest\n    coastlines in world; Norway and Turkey only NATO members having a land\n    boundary with Russia\n\n:Norway People\n\nPopulation:\n    4,294,876 (July 1992), growth rate 0.5% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Norwegian(s); adjective - Norwegian\nEthnic divisions:\n    Germanic (Nordic, Alpine, Baltic) and racial-cultural minority of 20,000\n    Lapps\nReligions:\n    Evangelical Lutheran (state church) 87.8%, other Protestant and Roman\n    Catholic 3.8%, none 3.2%, unknown 5.2% (1980)\nLanguages:\n    Norwegian (official); small Lapp- and Finnish-speaking minorities\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1976 est.)\nLabor force:\n    2,167,000 (September 1990); services 34.7%, commerce 18%, mining and\n    manufacturing 16.6%, banking and financial services 7.5%, transportation and\n    communications 7.2%, construction 7.2%, agriculture, forestry, and fishing\n    6.4% (1989)\nOrganized labor:\n    66% of labor force (1985)\n\n:Norway Government\n\nLong-form name:\n    Kingdom of Norway\nType:\n    constitutional monarchy\nCapital:\n    Oslo\nAdministrative divisions:\n    19 provinces (fylker, singular - fylke); Akershus, Aust-Agder, Buskerud,\n    Finnmark, Hedmark, Hordaland, More og Romsdal, Nordland, Nord-Trondelag,\n    Oppland, Oslo, OCstfold, Rogaland, Sogn og Fjordane, Sor-Trondelag,\n    Telemark, Troms, Vest-Agder, Vestfold\nIndependence:\n    26 October 1905 (from Sweden)\nConstitution:\n    17 May 1814, modified in 1884\nDependent areas:\n    Bouvet Island, Jan Mayen, Svalbard\nLegal system:\n    mixture of customary law, civil law system, and common law traditions;\n    Supreme Court renders advisory opinions to legislature when asked; accepts\n    compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Constitution Day, 17 May (1814)\nExecutive branch:\n    monarch, prime minister, State Council (cabinet)\nLegislative branch:\n    unicameral Parliament (Storting) with an Upper Chamber (Lagting) and a Lower\n    Chamber (Odelsting)\nJudicial branch:\n    Supreme Court (Hoiesterett)\nLeaders:\n  Chief of State:\n    King HARALD V (since 17 January 1991); Heir Apparent Crown Prince HAAKON\n    MAGNUS (born 20 July 1973)\n  Head of Government:\n    Prime Minister Gro Harlem BRUNDTLAND (since 3 November 1990)\nPolitical parties and leaders:\n    Labor, Gro Harlem BRUNDTLAND; Conservative, Kaci Kullmann FIVE; Center\n    Party, Anne Enger LAHNSTEIN; Christian People's, Kjell Magne BONDEVIK;\n    Socialist Left, Erick SOLHEIM; Norwegian Communist, Kare Andre NILSEN;\n    Progress, Carl I. HAGEN; Liberal, Odd Einar DORUM; Finnmark List, leader NA\nSuffrage:\n    universal at age 18\nElections:\n  Storting:\n    last held on 11 September 1989 (next to be held 6 September 1993); results -\n    Labor 34.3%, Conservative 22.2%, Progress 13.0%, Socialist Left 10.1%,\n    Christian People's 8.5%, Center Party 6.6%, Finnmark List 0.3%, other 5%;\n    seats - (165 total) Labor 63, Conservative 37, Progress 22, Socialist Left\n    17, Christian People's 14, Center Party 11, Finnmark List 1\nCommunists:\n    15,500 est.; 5,500 Norwegian Communist Party (NKP); 10,000 Workers Communist\n    Party Marxist-Leninist (AKP-ML, pro-Chinese)\nMember of:\n    AfDB, AsDB, Australia Group, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, ECE,\n    EFTA, ESA, FAO, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD,\n    IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS,\n    MTCR, NACC, NATO, NC, NEA, NIB, NSG, OECD, PCA, UN, UNAVEM, UNCTAD, UNESCO,\n    UNHCR, UNIDO, UNIFIL, UNIIMOG, UNMOGIP, UNTSO, UPU, WHO, WIPO, WMO, ZC\n\n:Norway Government\n\nDiplomatic representation:\n    Ambassador Kjeld VIBE; Chancery at 2720 34th Street NW, Washington, DC\n    20008; telephone (202) 333-6000; there are Norwegian Consulates General in\n    Houston, Los Angeles, Minneapolis, New York, and San Francisco, and\n    Consulates in Miami and New Orleans\n  US:\n    Ambassador Loret Miller RUPPE; Embassy at Drammensveien 18, 0244 Oslo 2\n    (mailing address is APO AE 09707); telephone [47] (2) 44-85-50; FAX [47] (2)\n    43-07-77\nFlag:\n    red with a blue cross outlined in white that extends to the edges of the\n    flag; the vertical part of the cross is shifted to the hoist side in the\n    style of the Dannebrog (Danish flag)\n\n:Norway Economy\n\nOverview:\n    Norway has a mixed economy involving a combination of free market activity\n    and government intervention. The government controls key areas, such as the\n    vital petroleum sector, through large-scale state enterprises and\n    extensively subsidizes agricultural, fishing, and other sectors. Norway also\n    maintains an extensive welfare system that helps propel public-sector\n    expenditures to slightly more than 50% of the GDP and results in one of the\n    highest average tax burdens in the world (54%). A small country with a high\n    dependence on international trade, Norway is basically an exporter of raw\n    materials and semiprocessed goods, with an abundance of small- and\n    medium-sized firms, and is ranked among the major shipping nations. The\n    country is richly endowed with natural resources - petroleum, hydropower,\n    fish, forests, and minerals - and is highly dependent on its oil sector to\n    keep its economy afloat. Although one of the government's main priorities is\n    to reduce this dependency, this situation is not likely to improve for years\n    to come. The government also hopes to reduce unemployment and strengthen and\n    diversify the economy through tax reform and an expansionary 1992 budget.\n    Forecasters predict that economic growth will rise slightly in 1992 because\n    of public-sector expansion and moderate improvements in private investment\n    and demand. Inflation will remain about 3%, while unemployment continues at\n    record levels of over 5% because of the weakness of the economy outside the\n    oil sector. Oslo, a member of the European Free Trade Area, is continuing to\n    deregulate and harmonize with EC regulations to prepare for the European\n    Economic Area (EEA) - which creates a EC/EFTA market with free movement of\n    capital, goods, services, and labor - which takes effect in 1993.\nGDP:\n    purchasing power equivalent - $72.9 billion, per capita $17,100; real growth\n    rate 4.1% (1991 est.)\nInflation rate (consumer prices):\n    3.5% (1991)\nUnemployment rate:\n    5.4% (1991, excluding people in job-training programs)\nBudget:\n    revenues $47.9 billion; expenditures $52.7 billion, including capital\n    expenditures of $NA (1991)\nExports:\n    $34.2 billion (f.o.b., 1991)\n  commodities:\n    petroleum and petroleum products 36.5%, natural gas 7.5%, fish 7%, aluminum\n    6%, ships 6.2%, pulp and paper\n  partners:\n    EC 66.5%, Nordic countries 19.5%, developing countries 7.8%, US 4.6%, Japan\n    1.9% (1991)\nImports:\n    $25.1 billion (c.i.f., 1991)\n  commodities:\n    machinery, fuels and lubricants, transportation equipment, chemicals,\n    foodstuffs, clothing, ships\n  partners:\n    EC 46.8%, Nordic countries 26.1%, developing countries 12.3%, US 7.8%, Japan\n    4.7% (1991)\nExternal debt:\n    $10.2 billion (1991)\nIndustrial production:\n    growth rate 4.7% (1991)\nElectricity:\n    26,735,000 kW capacity; 121,685 million kWh produced, 28,950 kWh per capita\n    (1991)\n\n:Norway Economy\n\nIndustries:\n    petroleum and gas, food processing, shipbuilding, pulp and paper products,\n    metals, chemicals, timber, mining, textiles, fishing\nAgriculture:\n    accounts for 2.8% of GDP and 6.4% of labor force; among world's top 10\n    fishing nations; livestock output exceeds value of crops; over half of food\n    needs imported; fish catch of 1.76 million metric tons in 1989\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $4.4 billion\nCurrency:\n    Norwegian krone (plural - kroner); 1 Norwegian krone (NKr) = 100 re\nExchange rates:\n    Norwegian kroner (NKr) per US$1 - 6.1956 (January 1992), 6.4829 (1991),\n    6.2597 (1990), 6.9045 (1989), 6.5170 (1988), 6.7375 (1987)\nFiscal year:\n    calendar year\n\n:Norway Communications\n\nRailroads:\n    4,223 km 1.435-meter standard gauge; Norwegian State Railways (NSB) operates\n    4,219 km (2,450 km electrified and 96 km double track); 4 km other\nHighways:\n    79,540 km total; 38,580 km paved; 40,960 km gravel, crushed stone, and earth\nInland waterways:\n    1,577 km along west coast; 2.4 m draft vessels maximum\nPipelines:\n    refined products 53 km\nPorts:\n    Oslo, Bergen, Fredrikstad, Kristiansand, Stavanger, Trondheim\nMerchant marine:\n    864 ships (1,000 GRT or over) totaling 22,978,202 GRT/40,128,177 DWT;\n    includes 12 passenger, 20 short-sea passenger, 118 cargo, 2 passenger-cargo,\n    19 refrigerated cargo, 16 container, 49 roll-on/roll-off, 22 vehicle\n    carrier, 1 railcar carrier, 180 oil tanker, 93 chemical tanker, 83 liquefied\n    gas, 28 combination ore/oil, 211 bulk, 10 combination bulk; note - the\n    government has created a captive register, the Norwegian International Ship\n    Register (NIS), as a subset of the Norwegian register; ships on the NIS\n    enjoy many benefits of flags of convenience and do not have to be crewed by\n    Norwegians; the majority of ships (777) under the Norwegian flag are now\n    registered with the NIS\nCivil air:\n    76 major transport aircraft\nAirports:\n    103 total, 102 usable; 64 with permanent-surface runways; none with runways\n    over 3,659 m; 12 with runways 2,440-3,659 m; 16 with runways 1,220-2,439 m\nTelecommunications:\n    high-quality domestic and international telephone, telegraph, and telex\n    services; 2 buried coaxial cable systems; 3,102,000 telephones; broadcast\n    stations - 46 AM, 350 private and 143 government FM, 54 (2,100 repeaters)\n    TV; 4 coaxial submarine cables; 3 communications satellite earth stations\n    operating in the EUTELSAT, INTELSAT (1 Atlantic Ocean), MARISAT, and\n    domestic systems\n\n:Norway Defense Forces\n\nBranches:\n    Norwegian Army, Royal Norwegian Navy, Royal Norwegian Air Force, Home Guard\nManpower availability:\n    males 15-49, 1,129,871; 944,290 fit for military service; 33,175 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $3.8 billion, 3.8% of GDP (1991)\n\n:Oman Geography\n\nTotal area:\n    212,460 km2\nLand area:\n    212,460 km2\nComparative area:\n    slightly smaller than Kansas\nLand boundaries:\n    1,374 km total; Saudi Arabia 676 km, UAE 410 km, Yemen 288 km\nCoastline:\n    2,092 km\nMaritime claims:\n  Continental shelf:\n    to be defined\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    no defined boundary with most of UAE; Administrative Line with UAE in far\n    north; there is a proposed treaty with Yemen (which has not yet been\n    formally accepted) to settle the Omani-Yemeni boundary\nClimate:\n    dry desert; hot, humid along coast; hot, dry interior; strong southwest\n    summer monsoon (May to September) in far south\nTerrain:\n    vast central desert plain, rugged mountains in north and south\nNatural resources:\n    crude oil, copper, asbestos, some marble, limestone, chromium, gypsum,\n    natural gas\nLand use:\n    arable land NEGL%; permanent crops NEGL%; meadows and pastures 5%; forest\n    and woodland NEGL%; other 95%; includes irrigated NEGL%\nEnvironment:\n    summer winds often raise large sandstorms and duststorms in interior; sparse\n    natural freshwater resources\nNote:\n    strategic location with small foothold on Musandam Peninsula controlling\n    Strait of Hormuz (17% of world's oil production transits this point going\n    from Persian Gulf to Arabian Sea)\n\n:Oman People\n\nPopulation:\n    1,587,581 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    41 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    40 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 69 years female (1992)\nTotal fertility rate:\n    6.6 children born/woman (1992)\nNationality:\n    noun - Omani(s); adjective - Omani\nEthnic divisions:\n    mostly Arab, with small Balochi, Zanzibari, and South Asian (Indian,\n    Pakistani, Bangladeshi) groups\nReligions:\n    Ibadhi Muslim 75%; remainder Sunni Muslim, Shi`a Muslim, some Hindu\nLanguages:\n    Arabic (official); English, Balochi, Urdu, Indian dialects\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    430,000; agriculture 60% (est.); 58% are non-Omani\nOrganized labor:\n    trade unions are illegal\n\n:Oman Government\n\nLong-form name:\n    Sultanate of Oman\nType:\n    absolute monarchy; independent, with residual UK influence\nCapital:\n    Muscat\nAdministrative divisions:\n    there are no first-order administrative divisions as defined by the US\n    Government, but there are 3 governorates (muhafazah, singular - muhafazat);\n    Musqat, Musandam, Zufar\nIndependence:\n    1650, expulsion of the Portuguese\nConstitution:\n    none\nLegal system:\n    based on English common law and Islamic law; ultimate appeal to the sultan;\n    has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 18 November\nExecutive branch:\n    sultan, Cabinet\nLegislative branch:\n    National Assembly\nJudicial branch:\n    none; traditional Islamic judges and a nascent civil court system\nLeaders:\n  Chief of State and Head of Government:\n    Sultan and Prime Minister QABOOS bin Sa`id Al Sa`id (since 23 July 1970)\nSuffrage:\n    none\nElections:\n    elections scheduled for October 1992\nOther political or pressure groups:\n    outlawed Popular Front for the Liberation of Oman (PFLO), based in Yemen\nMember of:\n    ABEDA, AFESD, AL, AMF, ESCWA, FAO, G-77, GCC, IBRD, ICAO, IDA, IDB, IFAD,\n    IFC, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ISO (correspondent), ITU,\n    NAM, OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WMO\nDiplomatic representation:\n    Ambassador Awadh bin Badr AL-SHANFARI; Chancery at 2342 Massachusetts Avenue\n    NW, Washington, DC 20008; telephone (202) 387-1980 through 1982\n  US:\n    Ambassador Richard W. BOEHM; Embassy at address NA, Muscat (mailing address\n    is P. O. Box 50202 Madinat Qaboos, Muscat); telephone [968] 698-989; FAX\n    [968] 604-316\nFlag:\n    three horizontal bands of white (top, double width), red, and green (double\n    width) with a broad, vertical, red band on the hoist side; the national\n    emblem (a khanjar dagger in its sheath superimposed on two crossed swords in\n    scabbards) in white is centered at the top of the vertical band\n\n:Oman Economy\n\nOverview:\n    Economic performance is closely tied to the fortunes of the oil industry.\n    Petroleum accounts for more than 90% of export earnings, about 80% of\n    government revenues, and roughly 40% of GDP. Oman has proved oil reserves of\n    4 billion barrels, equivalent to about 20 years' supply at the current rate\n    of extraction. Although agriculture employs a majority of the population,\n    urban centers depend on imported food.\nGDP:\n    exchange rate conversion - $10.6 billion, per capita $6,925 (1990); real\n    growth rate 0.5% (1989)\nInflation rate (consumer prices):\n    1.3% (1989)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $4.9 billion; expenditures $4.9 billion, including capital\n    expenditures of $825 million (1990)\nExports:\n    $5.5 billion (f.o.b., 1990)\n  commodities:\n    petroleum, reexports, fish, processed copper, fruits and vegetables\n  partners:\n    Japan 35%, South Korea 21%, Singapore 7%, US 6%\nImports:\n    $2.5 billion (f.o.b, 1990)\n  commodities:\n    machinery, transportation equipment, manufactured goods, food, livestock,\n    lubricants\n  partners:\n    UK 20%, UAE 20%, Japan 17%, US 7%\nExternal debt:\n    $3.1 billion (December 1989 est.)\nIndustrial production:\n    growth rate 10% (1989), including petroleum sector\nElectricity:\n    1,120,000 kW capacity; 5,000 million kWh produced, 3,800 kWh per capita\n    (1991)\nIndustries:\n    crude oil production and refining, natural gas production, construction,\n    cement, copper\nAgriculture:\n    accounts for 6% of GDP and 60% of the labor force (including fishing); less\n    than 2% of land cultivated; largely subsistence farming (dates, limes,\n    bananas, alfalfa, vegetables, camels, cattle); not self-sufficient in food;\n    annual fish catch averages 100,000 metric tons\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $137 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $148 million; OPEC\n    bilateral aid (1979-89), $797 million\nCurrency:\n    Omani rial (plural - rials); 1 Omani rial (RO) = 1,000 baiza\nExchange rates:\n    Omani rials (RO) per US$1 - 0.3845 (fixed rate since 1986)\nFiscal year:\n    calendar year\n\n:Oman Communications\n\nHighways:\n    26,000 km total; 6,000 km paved, 20,000 km motorable track\nPipelines:\n    crude oil 1,300 km; natural gas 1,030 km\nPorts:\n    Mina' Qabus, Mina' Raysut\nMerchant marine:\n    1 passenger ship (1,000 GRT or over) totaling 4,442 GRT/1,320 DWT\nCivil air:\n    19 major transport aircraft\nAirports:\n    134 total, 127 usable; 6 with permanent-surface runways; 1 with runways over\n    3,659 m; 8 with runways 2,440-3,659 m; 73 with runways 1,220-2,439 m\nTelecommunications:\n    fair system of open-wire, microwave, and radio communications stations;\n    limited coaxial cable 50,000 telephones; broadcast stations - 2 AM, 3 FM, 7\n    TV; satellite earth stations - 2 Indian Ocean INTELSAT, 1 ARABSAT, and 8\n    domestic\n\n:Oman Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Royal Oman Police\nManpower availability:\n    males 15-49, 359,394; 204,006 fit for military service\nDefense expenditures:\n    exchange rate conversion - $1.73 billion, 16% of GDP (1992 budget)\n\n:Pacific Islands, Trust Territory of the Geography\n\nTotal area:\n    458 km2\nLand area:\n    458 km2\nComparative area:\n    slightly more than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    1,519 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    wet season May to November; hot and humid\nTerrain:\n    about 200 islands varying geologically from the high, mountainous main\n    island of Babelthuap to low, coral islands usually fringed by large barrier\n    reefs\nNatural resources:\n    forests, minerals (especially gold), marine products; deep-seabed minerals\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%\nEnvironment:\n    subject to typhoons from June to December; archipelago of six island groups\n    totaling over 200 islands in the Caroline chain\nNote:\n    important location 850 km southeast of the Philippines; includes World War\n    II battleground of Peleliu and world-famous rock islands\n\n:Pacific Islands, Trust Territory of the People\n\nPopulation:\n    15,775 (July 1992), growth rate 1.9% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    25 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 73 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Palauan(s); adjective - Palauan\nEthnic divisions:\n    Palauans are a composite of Polynesian, Malayan, and Melanesian races\nReligions:\n    predominantly Christian, including Catholics, Seventh-Day Adventists,\n    Jehovah's Witnesses, the Assembly of God, the Liebenzell Mission, and\n    Latter-Day Saints; a third of the population observes the Modekngei\n    religion, indigenous to Palau\nLanguages:\n    English is an official language, though Palauan is also official in 13 of\n    Palau's 16 states, and Tobi and Sonsorolese are official in the 3 other\n    states\nLiteracy:\n    92% (male 93%, female 91%) age 15 and over can read and write (1980)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Pacific Islands, Trust Territory of the Government\n\nLong-form name:\n    Trust Territory of the Pacific Islands (no short-form name); may change to\n    Republic of Palau after independence; note - Belau, the native form of\n    Palau, is sometimes used\nType:\n    UN trusteeship administered by the US; constitutional government signed a\n    Compact of Free Association with the US on 10 January 1986, which was never\n    approved in a series of UN-observed plebiscites; until the UN trusteeship is\n    terminated with entry into force of the Compact, Palau remains under US\n    administration as the Palau District of the Trust Territory of the Pacific\n    Islands\nCapital:\n    Koror; a new capital is being built about 20 km northeast in eastern\n    Babelthuap\nAdministrative divisions:\n    there are no first-order administrative divisions as defined by the US\n    Government, but there are 16 states; Aimeliik, Airai, Angaur, Kayangel,\n    Koror, Melekeok, Ngaraard, Ngardmau, Ngaremlengui, Ngatpang, Ngchesar,\n    Ngerchelong, Ngiwal, Peleliu, Sonsorol, Tobi\nIndependence:\n    still part of the US-administered UN trusteeship (the last polity remaining\n    under the trusteeship; the Republic of the Marshall Islands, Federated\n    States of Micronesia, and Commonwealth of the Northern Marianas have left);\n    administered by the Office of Territorial and International Affairs, US\n    Department of Interior\nConstitution:\n    1 January 1981\nLegal system:\n    based on Trust Territory laws, acts of the legislature, municipal, common,\n    and customary laws\nNational holiday:\n    Constitution Day, 9 July (1979)\nExecutive branch:\n    US president, US vice president, national president, national vice president\nLegislative branch:\n    bicameral Parliament (Olbiil Era Kelulau or OEK) consists of an upper house\n    or Senate and a lower house or House of Delegates\nJudicial branch:\n    Supreme Court, National Court, and Court of Common Pleas\nLeaders:\n  Chief of State:\n    President George BUSH (since 20 January 1989); represented by the Assistant\n    Secretary for Territorial Affairs, US Department of the Interior, Stella\n    GUERRA (since 21 July 1989) and J. Victor HOBSON Jr., Director (since 16\n    December 1990)\n  Head of Government:\n    President Ngiratkel ETPISON (since 2 November 1988), Vice-President Kuniwo\n    NAKAMURA (since 2 November 1988)\nSuffrage:\n    universal at age 18\nElections:\n  House of Delegates:\n    last held 2 November 1988 (next to be held NA November 1992); results -\n    percent of vote NA; seats - (16 total); number of seats by party NA\n  President:\n    last held on 2 November 1988 (next to be held NA November 1992); results -\n    Ngiratkel ETPISON 26.3%, Roman TMETUCHL 25.9%, Thomas REMENGESAU 19.5%,\n    other 28.3%\n\n:Pacific Islands, Trust Territory of the Government\n\n  Senate:\n    last held 2 November 1988 (next to be held NA November 1992); results -\n    percent of vote NA; seats - (14 total); number of seats by party NA\nMember of:\n    ESCAP (associate), SPC, SPF (observer)\nDiplomatic representation:\n    none\n  US:\n    US Liaison Officer Lloyed W. MOSS; US Liaison Office at Top Side, Neeriyas,\n    Koror (mailing address: P. O. Box 6028, Koror, PW 96940); telephone (680)\n    488-2920; (680) 488-2911\nFlag:\n    light blue with a large yellow disk (representing the moon) shifted slightly\n    to the hoist side\n\n:Pacific Islands, Trust Territory of the Economy\n\nOverview:\n    The economy consists primarily of subsistence agriculture and fishing.\n    Tourism provides some foreign exchange, although the remote location of\n    Palau and a shortage of suitable facilities has hindered development. The\n    government is the major employer of the work force, relying heavily on\n    financial assistance from the US.\nGDP:\n    purchasing power equivalent - $31.6 million, per capita $2,260; real growth\n    rate NA% (1986); note - GDP numbers reflect US spending\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    20% (1986)\nBudget:\n    revenues $6.0 million; expenditures NA, including capital expenditures of NA\n    (1986)\nExports:\n    $0.5 million (f.o.b., 1986)\n  commodities:\n    NA\n  partners:\n    US, Japan\nImports:\n    $27.2 million (c.i.f., 1986)\n  commodities:\n    NA\n  partners:\n    US\nExternal debt:\n    about $100 million (1989)\nIndustrial production:\n    growth rate NA%\nElectricity:\n    16,000 kW capacity; 22 million kWh produced, 1,540 kWh per capita (1990)\nIndustries:\n    tourism, craft items (shell, wood, pearl), some commercial fishing and\n    agriculture\nAgriculture:\n    subsistence-level production of coconut, copra, cassava, sweet potatoes\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $2,560 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $92 million\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Pacific Islands, Trust Territory of the Communications\n\nHighways:\n    22.3 km paved, some stone-, coral-, or laterite-surfaced roads (1991)\nPorts:\n    Koror\nAirports:\n    2 with permanent-surface runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 1 AM, 1 FM, 2 TV; 1 Pacific Ocean INTELSAT earth\n    station\n\n:Pacific Islands, Trust Territory of the Defense Forces\n\nNote:\n    defense is the responsibility of the US and that will not change when the UN\n    trusteeship terminates if the Compact of Free Association with the US goes\n    into effect\n\n:Pacific Ocean Geography\n\nTotal area:\n    165,384,000 km2\nLand area:\n    165,384,000 km2; includes Arafura Sea, Banda Sea, Bellingshausen Sea, Bering\n    Sea, Bering Strait, Coral Sea, East China Sea, Gulf of Alaska, Makassar\n    Strait, Philippine Sea, Ross Sea, Sea of Japan, Sea of Okhotsk, South China\n    Sea, Tasman Sea, and other tributary water bodies\nComparative area:\n    slightly less than 18 times the size of the US; the largest ocean (followed\n    by the Atlantic Ocean, the Indian Ocean, and the Arctic Ocean); covers about\n    one-third of the global surface; larger than the total land area of the\n    world\nCoastline:\n    135,663 km\nDisputes:\n    some maritime disputes (see littoral states)\nClimate:\n    the western Pacific is monsoonal - a rainy season occurs during the summer\n    months, when moisture-laden winds blow from the ocean over the land, and a\n    dry season during the winter months, when dry winds blow from the Asian land\n    mass back to the ocean\nTerrain:\n    surface in the northern Pacific dominated by a clockwise, warm-water gyre\n    (broad, circular system of currents) and in the southern Pacific by a\n    counterclockwise, cool-water gyre; sea ice occurs in the Bering Sea and Sea\n    of Okhotsk during winter and reaches maximum northern extent from Antarctica\n    in October; the ocean floor in the eastern Pacific is dominated by the East\n    Pacific Rise, while the western Pacific is dissected by deep trenches; the\n    world's greatest depth is 10,924 meters in the Marianas Trench\nNatural resources:\n    oil and gas fields, polymetallic nodules, sand and gravel aggregates, placer\n    deposits, fish\nEnvironment:\n    endangered marine species include the dugong, sea lion, sea otter, seals,\n    turtles, and whales; oil pollution in Philippine Sea and South China Sea;\n    dotted with low coral islands and rugged volcanic islands in the\n    southwestern Pacific Ocean; subject to tropical cyclones (typhoons) in\n    southeast and east Asia from May to December (most frequent from July to\n    October); tropical cyclones (hurricanes) may form south of Mexico and strike\n    Central America and Mexico from June to October (most common in August and\n    September); southern shipping lanes subject to icebergs from Antarctica;\n    occasional El Nino phenomenon occurs off the coast of Peru when the trade\n    winds slacken and the warm Equatorial Countercurrent moves south, killing\n    the plankton that is the primary food source for anchovies; consequently,\n    the anchovies move to better feeding grounds, causing resident marine birds\n    to starve by the thousands because of their lost food source\nNote:\n    the major choke points are the Bering Strait, Panama Canal, Luzon Strait,\n    and the Singapore Strait; the Equator divides the Pacific Ocean into the\n    North Pacific Ocean and the South Pacific Ocean; ships subject to\n    superstructure icing in extreme north from October to May and in extreme\n    south from May to October; persistent fog in the northern Pacific from June\n    to December is a hazard to shipping; surrounded by a zone of violent\n    volcanic and earthquake activity sometimes referred to as the Pacific Ring\n    of Fire\n\n:Pacific Ocean Economy\n\nOverview:\n    The Pacific Ocean is a major contributor to the world economy and\n    particularly to those nations its waters directly touch. It provides cheap\n    sea transportation between East and West, extensive fishing grounds,\n    offshore oil and gas fields, minerals, and sand and gravel for the\n    construction industry. In 1985 over half (54%) of the world's total fish\n    catch came from the Pacific Ocean, which is the only ocean where the fish\n    catch has increased every year since 1978. Exploitation of offshore oil and\n    gas reserves is playing an ever-increasing role in the energy supplies of\n    Australia, New Zealand, China, US, and Peru. The high cost of recovering\n    offshore oil and gas, combined with the wide swings in world prices for oil\n    since 1985, has slowed but not stopped new drillings.\nIndustries:\n    fishing, oil and gas production\n\n:Pacific Ocean Communications\n\nPorts:\n    Bangkok (Thailand), Hong Kong, Los Angeles (US), Manila (Philippines), Pusan\n    (South Korea), San Francisco (US), Seattle (US), Shanghai (China),\n    Singapore, Sydney (Australia), Vladivostok (Russia), Wellington (NZ),\n    Yokohama (Japan)\nTelecommunications:\n    several submarine cables with network focused on Guam and Hawaii\n\n:Pakistan Geography\n\nTotal area:\n    803,940 km2\nLand area:\n    778,720 km2\nComparative area:\n    slightly less than twice the size of California\nLand boundaries:\n    6,774 km total; Afghanistan 2,430 km, China 523 km, India 2,912 km, Iran 909\n    km\nCoastline:\n    1,046 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    boundary with India; border question (Durand line); water sharing problems\n    with upstream riparian India over the Indus\nClimate:\n    mostly hot, dry desert; temperate in northwest; arctic in north\nTerrain:\n    flat Indus plain in east; mountains in north and northwest; Balochistan\n    plateau in west\nNatural resources:\n    land, extensive natural gas reserves, limited crude oil, poor quality coal,\n    iron ore, copper, salt, limestone\nLand use:\n    arable land 26%; permanent crops NEGL%; meadows and pastures 6%; forest and\n    woodland 4%; other 64%; includes irrigated 19%\nEnvironment:\n    frequent earthquakes, occasionally severe especially in north and west;\n    flooding along the Indus after heavy rains (July and August); deforestation;\n    soil erosion; desertification; water logging\nNote:\n    controls Khyber Pass and Malakand Pass, traditional invasion routes between\n    Central Asia and the Indian Subcontinent\n\n:Pakistan People\n\nPopulation:\n    121,664,539 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    43 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    105 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    56 years male, 57 years female (1992)\nTotal fertility rate:\n    6.6 children born/woman (1992)\nNationality:\n    noun - Pakistani(s); adjective - Pakistani\nEthnic divisions:\n    Punjabi, Sindhi, Pashtun (Pathan), Baloch, Muhajir (immigrants from India\n    and their descendents)\nReligions:\n    Muslim 97% (Sunni 77%, Shi`a 20%), Christian, Hindu, and other 3%\nLanguages:\n    Urdu and English (both official); total spoken languages - Punjabi 64%,\n    Sindhi 12%, Pashtu 8%, Urdu 7%, Balochi and other 9%; English is lingua\n    franca of Pakistani elite and most government ministries, but official\n    policies are promoting its gradual replacement by Urdu\nLiteracy:\n    35% (male 47%, female 21%) age 15 and over can read and write (1990 est.)\nLabor force:\n    28,900,000; agriculture 54%, mining and manufacturing 13%, services 33%;\n    extensive export of labor (1987 est.)\nOrganized labor:\n    about 10% of industrial work force\n\n:Pakistan Government\n\nLong-form name:\n    Islamic Republic of Pakistan\nType:\n    parliamentary with strong executive, federal republic\nCapital:\n    Islamabad\nAdministrative divisions:\n    4 provinces, 1 territory*, and 1 capital territory**; Balochistan, Federally\n    Administered Tribal Areas*, Islamabad Capital Territory**, North-West\n    Frontier, Punjab, Sindh; note - the Pakistani-administered portion of the\n    disputed Jammu and Kashmir region includes Azad Kashmir and the Northern\n    Areas\nIndependence:\n    14 August 1947 (from UK; formerly West Pakistan)\nConstitution:\n    10 April 1973, suspended 5 July 1977, restored with amendments, 30 December\n    1985\nLegal system:\n    based on English common law with provisions to accommodate Pakistan's\n    stature as an Islamic state; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Pakistan Day (proclamation of the republic), 23 March (1956)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament (Majlis-e-Shoora) consists of an upper house or Senate\n    and a lower house or National Assembly\nJudicial branch:\n    Supreme Court, Federal Islamic (Shari`at) Court\nLeaders:\n  Chief of State:\n    President GHULAM ISHAQ Khan (since 13 December 1988)\n  Head of Government:\n    Prime Minister Mian Nawaz SHARIF (since 6 November 1990)\nPolitical parties and leaders:\n    Islamic Democratic Alliance (Islami Jamuri Ittehad or IJI) - the Pakistan\n    Muslim League (PML) led by Mohammed Khan JUNEJO is the main party in the\n    IJI; Pakistan People's Party (PPP), Benazir BHUTTO; note - in September 1990\n    the PPP announced the formation of the People's Democratic Alliance (PDA),\n    an electoral alliance including the following four parties - PPP, Solidarity\n    Movement (Tehrik Istiqlal), Movement for the Implementation of Shi`a\n    Jurisprudence (Tehrik-i-Nifaz Fiqh Jafariya or TNFJ), and the PML (Malik\n    faction); Muhajir Qaumi Movement (MQM), Altaf HUSSAIN; Awami National Party\n    (ANP), Khan Abdul Wali KHAN; Jamiat-ul-Ulema-i-Islam (JUI), Fazlur RAHMAN;\n    Jamhoori Watan Party (JWP), Mohammad Akbar Khan BUGTI; Pakistan National\n    Party (PNP), Mir Ghaus Bakhsh BIZENJO; Pakistan Khawa Milli Party (PKMP),\n    leader NA; Assembly of Pakistani Clergy (Jamiat-ul-Ulema-e-Pakistan or JUP),\n    Maulana Shah Ahmed NOORANI; Jamaat-i-Islami (JI), Qazi Hussain AHMED\nSuffrage:\n    universal at age 21\nElections:\n  President:\n    last held on 12 December 1988 (next to be held NA December 1993); results -\n    Ghulam Ishaq KHAN was elected by Parliament and the four provincial\n    assemblies\n\n:Pakistan Government\n\n  Senate:\n    last held March 1991 (next to be held NA March 1994); seats - (87 total) IJI\n    57, Tribal Area Representatives (nonparty) 8, PPP 5, ANP 5, JWP 4, MQM 3,\n    PNP 2, PKMP 1, JUI 1, independent 1\nElections:\n  National Assembly:\n    last held on 24 October 1990 (next to be held by NA October 1995); results -\n    percent of vote by party NA; seats - (217 total) IJI 107, PDA 45, MQM 15,\n    ANP 6, JUI 2, JWP 2, PNP 2, PKMP 1, independents 14, religious minorities\n    10, Tribal Area Representatives (nonparty) 8, vacant 1\nCommunists:\n    the Communist party is officially banned but is allowed to operate openly\nOther political or pressure groups:\n    military remains dominant political force; ulema (clergy), industrialists,\n    and small merchants also influential\nMember of:\n    AsDB, C, CCC, CP, ESCAP, FAO, G-19, G-24, G-77, GATT, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, ISO, ITU, LORCS, NAM, OAS (observer), OIC, PCA, SAARC, UN, UNCTAD,\n    UNESCO, UNHCR, UNIDO, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Abida HUSSAIN; Chancery at 2315 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 939-6200; there is a Pakistani\n    Consulate General in New York\n  US:\n    Ambassador Nicholas PLATT; Embassy at Diplomatic Enclave, Ramna 5, Islamabad\n    (mailing address is P. O. Box 1048, PSC 1212, Box 2000, Islamabad or APO AE\n    09812-2000); telephone [92] (51) 826161 through 79; FAX [92] (51) 822004;\n    there are US Consulates General in Karachi and Lahore and a Consulate in\n    Peshawar\nFlag:\n    green with a vertical white band on the hoist side; a large white crescent\n    and star are centered in the green field; the crescent, star, and color\n    green are traditional symbols of Islam\n\n:Pakistan Economy\n\nOverview:\n    Pakistan is a poor Third World country faced with the usual problems of\n    rapidly increasing population, sizable government deficits, and heavy\n    dependence on foreign aid. In addition, the economy must support a large\n    military establishment and provide for the needs of 4 million Afghan\n    refugees. A real economic growth rate averaging 5-6% in recent years has\n    enabled the country to cope with these problems. Almost all agriculture and\n    small-scale industry is in private hands. In 1990, Pakistan embarked on a\n    sweeping economic liberalization program to boost foreign and domestic\n    private investment and lower foreign aid dependence. The SHARIF government\n    has denationalized several state-owned firms and has attracted some foreign\n    investment. Pakistan likely will have difficulty raising living standards\n    because of its rapidly expanding population. At the current rate of growth,\n    population would double in 25 years.\nGNP:\n    exchange rate conversion - $45.4 billion, per capita $380; real growth rate\n    4.8% (FY91 est.)\nInflation rate (consumer prices):\n    12.3% (FY91)\nUnemployment rate:\n    10% (FY91 est.)\nBudget:\n    revenues $6.4 billion; expenditures $10 billion, including capital\n    expenditures of $2.6 billion (FY92 est.)\nExports:\n    $6.0 billion (f.o.b., FY91)\n  commodities:\n    cotton, textiles, clothing, rice\n  partners:\n    EC 31%, Japan 9%, US 13% (FY90)\nImports:\n    $7.9 billion (f.o.b., FY91)\n  commodities:\n    petroleum, petroleum products, machinery, transportation, equipment,\n    vegetable oils, animal fats, chemicals\n  partners:\n    EC 21%, US 14%, Japan 13% (FY90)\nExternal debt:\n    $20.1 billion (1990 est.)\nIndustrial production:\n    growth rate 5.7% (FY91); accounts for almost 20% of GNP\nElectricity:\n    8,500,000 kW capacity; 35,000 million kWh produced, 300 kWh per capita\n    (1991)\nIndustries:\n    textiles, food processing, beverages, construction materials, clothing,\n    paper products, shrimp\nAgriculture:\n    25% of GNP, over 50% of labor force; world's largest contiguous irrigation\n    system; major crops - cotton, wheat, rice, sugarcane, fruits, and\n    vegetables; live-stock products - milk, beef, mutton, eggs; self-sufficient\n    in food grain\nIllicit drugs:\n    illicit producer of opium and hashish for the international drug trade;\n    government eradication efforts on poppy cultivation of limited success\n\n:Pakistan Economy\n\nEconomic aid:\n    (including Bangladesh only before 1972) US commitments, including Ex-Im\n    (FY70-89), $4.5 billion; Western (non-US) countries, ODA and OOF bilateral\n    commitments (1980-89), $9.1 billion; OPEC bilateral aid (1979-89), $2.3\n    billion; Communist countries (1970-89), $3.2 billion\nCurrency:\n    Pakistani rupee (plural - rupees); 1 Pakistani rupee (PRe) = 100 paisa\nExchange rates:\n    Pakistani rupees (PRs) per US$1 - 24.980 (March 1992), 23.801 (1991), 21.707\n    (1990), 20.541 (1989), 18.003 (1988), 17.399 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Pakistan Communications\n\nRailroads:\n    8,773 km total; 7,718 km broad gauge, 445 km 1-meter gauge, and 610 km less\n    than 1-meter gauge; 1,037 km broad-gauge double track; 286 km electrified;\n    all government owned (1985)\nHighways:\n    101,315 km total (1987); 40,155 km paved, 23,000 km gravel, 29,000 km\n    improved earth, and 9,160 km unimproved earth or sand tracks (1985)\nPipelines:\n    crude oil 250 km; natural gas 4,044 km; petroleum products 885 km (1987)\nPorts:\n    Gwadar, Karachi, Port Muhammad bin Qasim\nMerchant marine:\n    28 ships (1,000 GRT or over) totaling 334,227 GRT/495,425 DWT; includes 3\n    passenger-cargo, 24 cargo, 1 petroleum tanker\nCivil air:\n    40 major transport aircraft\nAirports:\n    112 total, 104 usable; 75 with permanent-surface runways; 1 with runways\n    over 3,659 m; 31 with runways 2,440-3,659 m; 43 with runways 1,220-2,439 m\nTelecommunications:\n    good international communication service over microwave and INTELSAT\n    satellite; domestic communications poor; 813,000 telephones (1990);\n    broadcast service good; broadcast stations - 19 AM, 8 FM, 29 TV; satellite\n    earth stations - 1 Atlantic Ocean INTELSAT and 2 Indian Ocean INTELSAT\n\n:Pakistan Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Civil Armed Forces, National Guard\nManpower availability:\n    males 15-49, 27,811,099; 17,064,073 fit for military service; 1,287,041\n    reach military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $2.9 billion, 6% of GNP (1992 budget)\n\n:Palmyra Atoll Geography\n\nTotal area:\n    11.9 km2\nLand area:\n    11.9 km2\nComparative area:\n    about 20 times the size of The Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    14.5 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    equatorial, hot, and very rainy\nTerrain:\n    low, with maximum elevations of about 2 meters\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 100%; other 0%\nEnvironment:\n    about 50 islets covered with dense vegetation, coconut trees, and balsa-like\n    trees up to 30 meters tall\nNote:\n    located 1,600 km south-southwest of Honolulu in the North Pacific Ocean,\n    almost halfway between Hawaii and American Samoa\n\n:Palmyra Atoll People\n\nPopulation:\n    uninhabited\n\n:Palmyra Atoll Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US; privately owned, but administered by the\n    Office of Territorial and International Affairs, US Department of the\n    Interior\nCapital:\n    none; administered from Washington, DC\n\n:Palmyra Atoll Economy\n\nOverview:\n    no economic activity\n\n:Palmyra Atoll Communications\n\nPorts:\n    the main harbor is West Lagoon, which is entered by a channel on the\n    southwest side of the atoll; both the channel and harbor will accommodate\n    vessels drawing 4 meters of water; much of the road and many causeways built\n    during the war are unserviceable and overgrown\nAirports:\n    1 with permanent-surface runway 1,220-2,439 m\n\n:Palmyra Atoll Defense Forces\n\nBranches:\n  Note:\n    defense is the responsibility of the US\n\n:Panama Geography\n\nTotal area:\n    78,200 km2\nLand area:\n    75,990 km2\nComparative area:\n    slightly smaller than South Carolina\nLand boundaries:\n    555 km total; Colombia 225 km, Costa Rica 330 km\nCoastline:\n    2,490 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid, cloudy; prolonged rainy season (May to January), short\n    dry season (January to May)\nTerrain:\n    interior mostly steep, rugged mountains and dissected, upland plains;\n    coastal areas largely plains and rolling hills\nNatural resources:\n    copper, mahogany forests, shrimp\nLand use:\n    arable land 6%; permanent crops 2%; meadows and pastures 15%; forest and\n    woodland 54%; other 23%; includes irrigated NEGL%\nEnvironment:\n    dense tropical forest in east and northwest\nNote:\n    strategic location on eastern end of isthmus forming land bridge connecting\n    North and South America; controls Panama Canal that links North Atlantic\n    Ocean via Caribbean Sea with North Pacific Ocean\n\n:Panama People\n\nPopulation:\n    2,529,902 (July 1992), growth rate 2.0% (1992)\nBirth rate:\n    25 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    17 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 77 years female (1992)\nTotal fertility rate:\n    3.0 children born/woman (1992)\nNationality:\n    noun - Panamanian(s); adjective - Panamanian\nEthnic divisions:\n    mestizo (mixed Indian and European ancestry) 70%, West Indian 14%, white\n    10%, Indian 6%\nReligions:\n    Roman Catholic over 93%, Protestant 6%\nLanguages:\n    Spanish (official); English as native tongue 14%; many Panamanians bilingual\nLiteracy:\n    88% (male 88%, female 88%) age 15 and over can read and write (1990 est.)\nLabor force:\n    770,472 (1987); government and community services 27.9%; agriculture,\n    hunting, and fishing 26.2%; commerce, restaurants, and hotels 16%;\n    manufacturing and mining 10.5%; construction 5.3%; transportation and\n    communications 5.3%; finance, insurance, and real estate 4.2%; Canal Zone\n    2.4%; shortage of skilled labor, but an oversupply of unskilled labor\nOrganized labor:\n    17% of labor force (1986)\n\n:Panama Government\n\nLong-form name:\n    Republic of Panama\nType:\n    centralized republic\nCapital:\n    Panama\nAdministrative divisions:\n    9 provinces (provincias, singular - provincia) and 1 territory* (comarca);\n    Bocas del Toro, Chiriqui, Cocle, Colon, Darien, Herrera, Los Santos, Panama,\n    San Blas*, Veraguas\nIndependence:\n    3 November 1903 (from Colombia; became independent from Spain 28 November\n    1821)\nConstitution:\n    11 October 1972; major reforms adopted April 1983\nLegal system:\n    based on civil law system; judicial review of legislative acts in the\n    Supreme Court of Justice; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    Independence Day, 3 November (1903)\nExecutive branch:\n    president, two vice presidents, Cabinet\nLegislative branch:\n    unicameral Legislative Assembly (Asamblea Legislativa)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justicia) currently being\n    reorganized\nLeaders:\n  Chief of State and Head of Government:\n    President Guillermo ENDARA (since 20 December 1989, elected 7 May 1989);\n    First Vice President Ricardo ARIAS Calderon (since 20 December 1989, elected\n    7 May 1989); Second Vice President Guillermo FORD Boyd (since 20 December\n    1989, elected 7 May 1989)\nPolitical parties and leaders:\n  government alliance:\n    Nationalist Republican Liberal Movement (MOLIRENA), Alfredo RAMIREZ;\n    Authentic Liberal Party (PLA), Arnulfo ESCALONA; Arnulfista Party (PA),\n    Mireya MOSCOSO DE GRUBER;\n  opposition parties:\n    Christian Democratic Party (PDC), Ricardo ARIAS Calderon; Democratic\n    Revolutionary Party (PRD, ex-official government party), Gerardo GONZALEZ;\n    Agrarian Labor Party (PALA), Carlos LOPEZ Guevara; Liberal Party (PL),\n    Roderick ESQUIVEL; Popular Action Party (PAPO); Socialist Workers Party\n    (PST, leftist), Jose CAMBRA; Revolutionary Workers Party (PRT, leftist),\n    Graciela DIXON\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  President:\n    last held on 7 May 1989, annulled but later upheld (next to be held NA May\n    1994); results - anti-NORIEGA coalition believed to have won about 75% of\n    the total votes cast\n  Legislative Assembly:\n    last held on 27 January 1991 (next to be held NA May 1994); results -\n    percent of vote by party NA; seats - (67 total)\n  progovernment parties:\n    PDC 28, MOLIRENA 16, PA 7, PLA 4\n\n:Panama Government\n\n  opposition parties:\n    PRD 10, PALA 1, PL 1; note - the PDC went into opposition after President\n    Guillermo ENDARA ousted the PDC from the coalition government in April 1991\nCommunists:\n    People's Party (PdP), mainline Communist party, did not obtain the necessary\n    3% of the total vote in the 1984 election to retain its legal status; about\n    3,000 members\nOther political or pressure groups:\n    National Council of Organized Workers (CONATO); National Council of Private\n    Enterprise (CONEP); Panamanian Association of Business Executives (APEDE);\n    National Civic Crusade; National Committee for the Right to Life\nMember of:\n    AG (associate), CG, ECLAC, FAO, G-77, IADB, IAEA, IBRD, ICAO, ICFTU, IDA,\n    IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES,\n    LAIA (observer), LORCS, NAM, OAS, OPANAL, PCA, UN, UNCTAD, UNESCO, UNIDO,\n    UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Jaime FORD; Chancery at 2862 McGill Terrace NW, Washington, DC\n    20008; telephone (202) 483-1407; the status of the Consulates General and\n    Consulates has not yet been determined\n  US:\n    Ambassador Deane R. HINTON; Embassy at Avenida Balboa and Calle 38, Apartado\n    6959, Panama City 5 (mailing address is Box E, APO AA 34002); telephone\n    (507) 27-1777; FAX (507) 27-1964\nFlag:\n    divided into four, equal rectangles; the top quadrants are white with a blue\n    five-pointed star in the center (hoist side) and plain red, the bottom\n    quadrants are plain blue (hoist side) and white with a red five-pointed star\n    in the center\n\n:Panama Economy\n\nOverview:\n    GDP expanded by roughly 9.3% in 1991, following growth of 4.6% in 1990 and a\n    0.4% contraction in 1989. Delay in coming to terms with the international\n    financial institutions on policies to implement structural reform in Panama\n    generated uncertainty in the private sector and tempered the pace of\n    business expansion in 1991. Public investment was limited as the\n    administration kept the fiscal deficit below 3% of GDP. Unemployment and\n    economic reform are the two major issues the government must face in\n    1992-93.\nGDP:\n    exchange rate conversion - $5.0 billion, per capita $2,040; real growth rate\n    9.3% (1991 est.)\nInflation rate (consumer prices):\n    2.0% (1991 est.)\nUnemployment rate:\n    17% (1991 est.)\nBudget:\n    revenues $1.5 billion; expenditures $1.7 billion, including capital\n    expenditures of $140 million (1991 est.)\nExports:\n    $380 million (f.o.b., 1991 est.)\n  commodities:\n    bananas 28%, shrimp 14%, sugar 12%, clothing 5%, coffee 4%\n  partners:\n    US 44%, Central America and Caribbean, EC (1991 est.)\nImports:\n    $1.5 billion (f.o.b., 1991 est.)\n  commodities:\n    capital goods 13%, crude oil 12%, foodstuffs 10%, consumer goods, chemicals\n    (1990)\n  partners:\n    US 37%, Japan, EC, Central America and Caribbean, Mexico, Venezuela (1989\n    est.)\nExternal debt:\n    $5.4 billion (December 1991 est.)\nIndustrial production:\n    growth rate 7.2% (1991 est.); accounts for almost 9.4% of GDP\nElectricity:\n    1,135,000 kW capacity; 3,397 million kWh produced, 1,372 kWh per capita\n    (1991)\nIndustries:\n    manufacturing and construction activities, petroleum refining, brewing,\n    cement and other construction material, sugar mills\nAgriculture:\n    accounts for 12% of GDP (1991 est.), 25% of labor force (1989); crops -\n    bananas, rice, corn, coffee, sugarcane; livestock; fishing; importer of food\n    grain, vegetables\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $516 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $582 million;\n    Communist countries (1970-89), $4 million\nCurrency:\n    balboa (plural - balboas); 1 balboa (B) = 100 centesimos\nExchange rates:\n    balboas (B) per US$1 - 1.000 (fixed rate)\nFiscal year:\n    calendar year\n\n:Panama Communications\n\nRailroads:\n    238 km total; 78 km 1.524-meter gauge, 160 km 0.914-meter gauge\nHighways:\n    8,530 km total; 2,745 km paved, 3,270 km gravel or crushed stone, 2,515 km\n    improved and unimproved earth\nInland waterways:\n    800 km navigable by shallow draft vessels; 82 km Panama Canal\nPipelines:\n    crude oil 130 km\nPorts:\n    Cristobal, Balboa, Puerto de La Bahia de Las Minas\nMerchant marine:\n    3,004 ships (1,000 GRT or over) totaling 41,314,623 GRT/73,325,176 DWT;\n    includes 20 passenger, 22 short-sea passenger, 3 passenger-cargo, 1,046\n    cargo, 205 refrigerated cargo, 175 container, 65 roll-on/roll-off cargo, 111\n    vehicle carrier, 9 livestock carrier, 4 multifunction large-load carrier,\n    340 petroleum tanker, 177 chemical tanker, 23 combination ore/oil, 101\n    liquefied gas, 8 specialized tanker, 659 bulk, 35 combination bulk, 1 barge\n    carrier; note - all but 5 are foreign owned and operated; the top 4 foreign\n    owners are Japan 36%, Greece 8%, Hong Kong 8%, and the US 7%; (China owns at\n    least 128 ships, Vietnam 4, former Yugoslavia 4, Cuba 4, Cyprus 5, and the\n    republics of the former USSR 12)\nCivil air:\n    5 major transport aircraft\nAirports:\n    112 total, 102 usable; 39 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    domestic and international facilities well developed; connection into\n    Central American Microwave System; 220,000 telephones; broadcast stations -\n    91 AM, no FM, 23 TV; 1 coaxial submarine cable; satellite ground stations -\n    2 Atlantic Ocean INTELSAT\n\n:Panama Defense Forces\n\nBranches:\n    note - the Panamanian Defense Forces (PDF) ceased to exist as a military\n    institution shortly after the United States invaded Panama on 20 December\n    1989; President ENDARA has restructured the forces into a civilian police\n    service under the new name of Panamanian Public Forces (PPF); a Council of\n    Public Security and National Defense under Menalco SOLIS in the office of\n    the president coordinates the activities of the security forces; the\n    Institutional Protection Service under Carlos BARES is attached to the\n    presidency\nManpower availability:\n    males 15-49, 661,101; 455,412 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $75.5 million, 1.5% of GDP (1990)\n\n:Papua New Guinea Geography\n\nTotal area:\n    461,690 km2\nLand area:\n    451,710 km2\nComparative area:\n    slightly larger than California\nLand boundaries:\n    820 km; Indonesia 820 km\nCoastline:\n    5,152 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; northwest monsoon (December to March), southeast monsoon (May to\n    October); slight seasonal temperature variation\nTerrain:\n    mostly mountains with coastal lowlands and rolling foothills\nNatural resources:\n    gold, copper, silver, natural gas, timber, oil potential\nLand use:\n    arable land NEGL%; permanent crops 1%; meadows and pastures NEGL%; forest\n    and woodland 71%; other 28%\nEnvironment:\n    one of world's largest swamps along southwest coast; some active volcanos;\n    frequent earthquakes\nNote:\n    shares island of New Guinea with Indonesia\n\n:Papua New Guinea People\n\nPopulation:\n    4,006,509 (July 1992), growth rate 2.3% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    67 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 56 years female (1992)\nTotal fertility rate:\n    4.9 children born/woman (1992)\nNationality:\n    noun - Papua New Guinean(s); adjective - Papua New Guinean\nEthnic divisions:\n    predominantly Melanesian and Papuan; some Negrito, Micronesian, and\n    Polynesian\nReligions:\n    Roman Catholic 22%, Lutheran 16%, Presbyterian/Methodist/London Missionary\n    Society 8%, Anglican 5%, Evangelical Alliance 4%, Seventh-Day Adventist 1%,\n    other Protestant sects 10%; indigenous beliefs 34%\nLanguages:\n    715 indigenous languages; English spoken by 1-2%, pidgin English widespread,\n    Motu spoken in Papua region\nLiteracy:\n    52% (male 65%, female 38%) age 15 and over can read and write (1990 est.)\nLabor force:\n    NA\nOrganized labor:\n    more than 50 trade unions, some with fewer than 20 members\n\n:Papua New Guinea Government\n\nLong-form name:\n    Independent State of Papua New Guinea\nType:\n    parliamentary democracy\nCapital:\n    Port Moresby\nAdministrative divisions:\n    20 provinces; Central, Chimbu, Eastern Highlands, East New Britain, East\n    Sepik, Enga, Gulf, Madang, Manus, Milne Bay, Morobe, National Capital, New\n    Ireland, Northern, North Solomons, Sandaun, Southern Highlands, Western,\n    Western Highlands, West New Britain\nIndependence:\n    16 September 1975 (from UN trusteeship under Australian administration)\nConstitution:\n    16 September 1975\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 16 September (1975)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    National Executive Council (cabinet)\nLegislative branch:\n    unicameral National Parliament (sometimes referred to as the House of\n    Assembly)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen Elizabeth II (since 6 February 1952), represented by Governor General\n    Wiwa KOROWI (since NA November 1991)\n  Head of Government:\n    Prime Minister Paias WINGTI (since 17 July 1992)\nPolitical parties and leaders:\n    Papua New Guinea United Party (Pangu Party), Rabbie NAMALIU; People's\n    Democratic Movement (PDM), Paias WINGTI; People's Action Party (PAP), Akoka\n    DOI; People's Progress Party (PPP), Sir Julius CHAN; United Party (UP), Paul\n    TORATO; Papua Party (PP), Galeva KWARARA; National Party (NP), Paul PORA;\n    Melanesian Alliance (MA), Fr. John MOMIS\nSuffrage:\n    universal at age 18\nElections:\n  National Parliament:\n    last held 13-26 June 1992 (next to be held NA 1997); results - percent by\n    party NA; seats - (109 total) Pangu Party 24, PDM 17, PPP 10, PAP 10,\n    independents 30, others 18\nMember of:\n    ACP, AsDB, ASEAN (observer), C, CP, ESCAP, FAO, G-77, IBRD, ICAO, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, NAM\n    (observer), SPC, SPF, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador Margaret TAYLOR; Chancery at 3rd floor, 1615 New Hampshire Avenue\n    NW, Washington, DC 20009; telephone (202) 745-3680\n  US:\n    Ambassador Robert W. FARRAND; Embassy at Armit Street, Port Moresby (mailing\n    address is P. O. Box 1492, Port Moresby, or APO AE 96553); telephone [675]\n    211-455 or 594, 654; FAX [675] 213-423\n\n:Papua New Guinea Government\n\nFlag:\n    divided diagonally from upper hoist-side corner; the upper triangle is red\n    with a soaring yellow bird of paradise centered; the lower triangle is black\n    with five white five-pointed stars of the Southern Cross constellation\n    centered\n\n:Papua New Guinea Economy\n\nOverview:\n    Papua New Guinea is richly endowed with natural resources, but exploitation\n    has been hampered by the rugged terrain and the high cost of developing an\n    infrastructure. Agriculture provides a subsistence livelihood for 85% of the\n    population. Mining of numerous deposits, including copper and gold, accounts\n    for about 60% of export earnings. Budgetary support from Australia and\n    development aid under World Bank auspices have helped sustain the economy.\n    Robust growth in 1991 was led by the mining sector; the opening of a large\n    new gold mine featured in the advance.\nGDP:\n    exchange rate conversion - $3.1 billion, per capita $800; real growth rate\n    9% (1991)\nInflation rate (consumer prices):\n    6.8% (first half 1991)\nUnemployment rate:\n    5% (1988)\nBudget:\n    revenues $1.26 billion; expenditures $1.46 billion, including capital\n    expenditures of $273 million (1992 est.)\nExports:\n    $1.14 billion (f.o.b., 1990)\n  commodities:\n    copper ore, gold, coffee, logs, palm oil, cocoa, lobster\n  partners:\n    FRG, Japan, Australia, UK, Spain, US\nImports:\n    $1.18 billion (c.i.f., 1990)\n  commodities:\n    machinery and transport equipment, food, fuels, chemicals, consumer goods\n  partners:\n    Australia, Singapore, Japan, US, New Zealand, UK\nExternal debt:\n    $2.2 billion (April 1991)\nIndustrial production:\n    growth rate 2.4% (1990 est.); accounts for 25% of GDP\nElectricity:\n    397,000 kW capacity; 1,510 million kWh produced, 400 kWh per capita (1990)\nIndustries:\n    copra crushing, oil palm processing, plywood processing, wood chip\n    production, gold, silver, copper, construction, tourism\nAgriculture:\n    one-third of GDP; livelihood for 85% of population; fertile soils and\n    favorable climate permits cultivating a wide variety of crops; cash crops -\n    coffee, cocoa, coconuts, palm kernels; other products - tea, rubber, sweet\n    potatoes, fruit, vegetables, poultry, pork; net importer of food for urban\n    centers\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $40.6 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $6.5 billion; OPEC\n    bilateral aid (1979-89), $17 million\nCurrency:\n    kina (plural - kina); 1 kina (K) = 100 toea\nExchange rates:\n    kina (K) per US$1 - 1.0413 (March 1992), 1.0508 (1991), 1.0467 (1990),\n    1.1685 (1989), 1.1538 (1988), 1.1012 (1987)\nFiscal year:\n    calendar year\n\n:Papua New Guinea Communications\n\nRailroads:\n    none\nHighways:\n    19,200 km total; 640 km paved, 10,960 km gravel, crushed stone, or\n    stabilized-soil surface, 7,600 km unimproved earth\nInland waterways:\n    10,940 km\nPorts:\n    Anewa Bay, Lae, Madang, Port Moresby, Rabaul\nMerchant marine:\n    8 ships (1,000 GRT or over) totaling 14,102 GRT/16,016 DWT; includes 2\n    cargo, 1 roll-on/roll-off cargo, 3 combination ore/oil, 1 bulk, 1 container\nCivil air:\n    about 15 major transport aircraft\nAirports:\n    503 total, 460 usable; 18 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 39 with runways 1,220-2,439 m\nTelecommunications:\n    services are adequate and being improved; facilities provide radiobroadcast,\n    radiotelephone and telegraph, coastal radio, aeronautical radio, and\n    international radiocommunication services; submarine cables extend to\n    Australia and Guam; 51,700 telephones (1985); broadcast stations - 31 AM, 2\n    FM, 2 TV (1987); 1 Pacific Ocean INTELSAT earth station\n\n:Papua New Guinea Defense Forces\n\nBranches:\n    Papua New Guinea Defense Force (including Army, Navy, Air Force)\nManpower availability:\n    males 15-49, 1,013,812; 564,081 fit for military service\nDefense expenditures:\n    exchange rate conversion - $42 million, 1.3% of GDP (1989 est.)\n\n:Paracel Islands Geography\n\nTotal area:\n    NA\nLand area:\n    undetermined\nComparative area:\n    undetermined\nLand boundaries:\n    none\nCoastline:\n    518 km\nMaritime claims:\n    undetermined\nDisputes:\n    occupied by China, but claimed by Taiwan and Vietnam\nClimate:\n    tropical\nTerrain:\n    undetermined\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    subject to typhoons\nNote:\n    located 400 km east of Vietnam in the South China Sea about one-third of the\n    way between Vietnam and the Philippines\n\n:Paracel Islands People\n\nPopulation:\n    no permanent inhabitants\n\n:Paracel Islands Government\n\nLong-form name:\n    none\n\n:Paracel Islands Economy\n\nOverview:\n    no economic activity\n\n:Paracel Islands Communications\n\nPorts:\n    small Chinese port facilities on Woody Island and Duncan Island currently\n    under expansion\nAirports:\n    1 on Woody Island\n\n:Paracel Islands Defense Forces\n\nNote:\n    occupied by China\n\n:Paraguay Geography\n\nTotal area:\n    406,750 km2\nLand area:\n    397,300 km2\nComparative area:\n    slightly smaller than California\nLand boundaries:\n    3,920 km total; Argentina 1,880 km, Bolivia 750 km, Brazil 1,290 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    short section of the boundary with Brazil (just west of Guaira Falls on the\n    Rio Parana) has not been determined\nClimate:\n    varies from temperate in east to semiarid in far west\nTerrain:\n    grassy plains and wooded hills east of Rio Paraguay; Gran Chaco region west\n    of Rio Paraguay mostly low, marshy plain near the river, and dry forest and\n    thorny scrub elsewhere\nNatural resources:\n    iron ore, manganese, limestone, hydropower, timber\nLand use:\n    arable land 20%; permanent crops 1%; meadows and pastures 39%; forest and\n    woodland 35%; other 5%; includes irrigated NEGL%\nEnvironment:\n    local flooding in southeast (early September to June); poorly drained plains\n    may become boggy (early October to June)\nNote:\n    landlocked; buffer between Argentina and Brazil\n\n:Paraguay People\n\nPopulation:\n    4,929,446 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    33 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    28 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 74 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - Paraguayan(s); adjective - Paraguayan\nEthnic divisions:\n    mestizo (Spanish and Indian) 95%, white and Indian 5%\nReligions:\n    Roman Catholic 90%; Mennonite and other Protestant denominations\nLanguages:\n    Spanish (official) and Guarani\nLiteracy:\n    90% (male 92%, female 88%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,418,000 (1991 est.); agriculture, industry and commerce, services,\n    government (1986)\nOrganized labor:\n    about 2% of labor force\n\n:Paraguay Government\n\nLong-form name:\n    Republic of Paraguay\nType:\n    republic\nCapital:\n    Asuncion\nAdministrative divisions:\n    19 departments (departamentos, singular - departamento); Alto Paraguay, Alto\n    Parana, Amambay, Boqueron, Caaguazu, Caazapa, Canindeyu, Central, Chaco,\n    Concepcion, Cordillera, Guaira, Itapua, Misiones, Neembucu, Nueva Asuncion,\n    Paraguari, Presidente Hayes, San Pedro\nIndependence:\n    14 May 1811 (from Spain)\nConstitution:\n    25 August 1967; Constituent Assembly rewrote the Constitution that was\n    promulgated on 20 June 1992\nLegal system:\n    based on Argentine codes, Roman law, and French codes; judicial review of\n    legislative acts in Supreme Court of Justice; does not accept compulsory ICJ\n    jurisdiction\nNational holiday:\n    Independence Days, 14-15 May (1811)\nExecutive branch:\n    president, Council of Ministers (cabinet), Council of State\nLegislative branch:\n    bicameral Congress (Congreso) consists of an upper chamber or Chamber of\n    Senators (Camara de Senadores) and a lower chamber or Chamber of Deputies\n    (Camara de Diputados)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justicia)\nLeaders:\n  Chief of State and Head of Government:\n    President Gen. Andres RODRIGUEZ Pedotti (since 15 May 1989)\nPolitical parties and leaders:\n    Colorado Party, Luis Maria ARGANA, acting president; Authentic Radical\n    Liberal Party (PLRA), Juan Manuel BENITEZ Florentin; Christian Democratic\n    Party (PDC), Jose Angel BURRO; Febrerista Revolutionary Party (PRF), Victor\n    BAREIRO; Popular Democratic Party (PDP), Hugo RICHER\nSuffrage:\n    universal and compulsory at age 18 and up to age 60\nElections:\n  President:\n    last held 1 May 1989 (next to be held NA February 1993); results - Gen.\n    RODRIGUEZ 75.8%, Domingo LAINO 19.4%\n  Chamber of Senators:\n    last held 1 May 1989 (next to be held by NA May 1993); results - percent of\n    vote by party NA; seats - (36 total) Colorado Party 24, PLRA 10, PLR 1, PRF\n    1\n  Chamber of Deputies:\n    last held on 1 May 1989 (next to be held by NA May 1994); results - percent\n    of vote by party NA; seats - (72 total) Colorado Party 48, PLRA 19, PRF 2,\n    PDC 1, other 2\nCommunists:\n    Oscar CREYDT faction and Miguel Angel SOLER faction (both illegal); 3,000 to\n    4,000 (est.) party members and sympathizers in Paraguay, very few are hard\n    core; party beginning to return from exile is small and deeply divided\nOther political or pressure groups:\n    Confederation of Workers (CUT); Roman Catholic Church\n\n:Paraguay Government\n\nMember of:\n    AG (observer), CCC, ECLAC, FAO, G-77, IADB, IAEA, IBRD, ICAO, IDA, IFAD,\n    IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, IOM, ITU, LAES, LAIA, LORCS, OAS,\n    OPANAL, PCA, RG, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Juan Esteban Aguirre MARTINEZ; Chancery at 2400 Massachusetts\n    Avenue NW, Washington, DC 20008; telephone (202) 483-6960 through 6962;\n    there are Paraguayan Consulates General in New Orleans and New York, and a\n    Consulate in Houston\n  US:\n    Ambassador Jon D. GLASSMAN; Embassy at 1776 Avenida Mariscal Lopez, Asuncion\n    (mailing address is C. P. 402, Asuncion, or APO AA 34036-0001); telephone\n    [595] (21) 213-715; FAX [595] (21) 213-728\nFlag:\n    three equal, horizontal bands of red (top), white, and blue with an emblem\n    centered in the white band; unusual flag in that the emblem is different on\n    each side; the obverse (hoist side at the left) bears the national coat of\n    arms (a yellow five-pointed star within a green wreath capped by the words\n    REPUBLICA DEL PARAGUAY, all within two circles); the reverse (hoist side at\n    the right) bears the seal of the treasury (a yellow lion below a red Cap of\n    Liberty and the words Paz y Justicia (Peace and Justice) capped by the words\n    REPUBLICA DEL PARAGUAY, all within two circles)\n\n:Paraguay Economy\n\nOverview:\n    Agriculture, including forestry, accounts for about 25% of GDP, employs\n    about 45% of the labor force, and provides the bulk of exports. Paraguay has\n    no known significant mineral or petroleum resources but does have a large\n    hydropower potential. Since 1981 economic performance has declined compared\n    with the boom period of 1976-81, when real GDP grew at an average annual\n    rate of nearly 11%. During the period 1982-86 real GDP fell in three of five\n    years, inflation jumped to an annual rate of 32%, and foreign debt rose.\n    Factors responsible for the erratic behavior of the economy were the\n    completion of the Itaipu hydroelectric dam, bad weather for crops, and weak\n    international commodity prices for agricultural exports. In 1987 the economy\n    experienced a minor recovery because of improved weather conditions and\n    stronger international prices for key agricultural exports. The recovery\n    continued through 1990, on the strength of bumper crops in 1988-89. In a\n    major step to increase its economic activity in the region, Paraguay in\n    March 1991 joined the Southern Cone Common Market (MERCOSUR), which includes\n    Brazil, Argentina, and Uruguay. During 1991 the government began to more\n    seriously address its arrearages with international creditors and its\n    domestic fiscal problems. Inflation was cut in third, but the foreign trade\n    deficit widened to more than $1 billion. For the long run, the government\n    must press forward with general market-oriented economic reforms.\nGDP:\n    exchange rate conversion - $7.0 billion, per capita $1,460; real growth rate\n    3.0% (1991 est.)\nInflation rate (consumer prices):\n    15% (1991 est.)\nUnemployment rate:\n    14% (1991 est.)\nBudget:\n    revenues $1.2 billion; expenditures $1.2 billion, including capital\n    expenditures of $487 million (1991)\nExports:\n    $642 million (f.o.b., 1991)\n  commodities:\n    cotton, soybean, timber, vegetable oils, coffee, tung oil, meat products\n  partners:\n    EC 37%, Brazil 25%, Argentina 10%, Chile 6%, US 6%\nImports:\n    $1.85 billion (c.i.f., 1991)\n  commodities:\n    capital goods 35%, consumer goods 20%, fuels and lubricants 19%, raw\n    materials 16%, foodstuffs, beverages, and tobacco 10%\n  partners:\n    Brazil 30%, EC 20%, US 18%, Argentina 8%, Japan 7%\nExternal debt:\n    $1.7 billion (1991 est.)\nIndustrial production:\n    growth rate 5.9% (1989 est.); accounts for 16% of GDP\nElectricity:\n    5,578,000 kW capacity; 15,447 million kWh produced, 3,219 kWh per capita\n    (1991)\nIndustries:\n    meat packing, oilseed crushing, milling, brewing, textiles, other light\n    consumer goods, cement, construction\nAgriculture:\n    accounts for 25% of GDP and 44% of labor force; cash crops - cotton,\n    sugarcane; other crops - corn, wheat, tobacco, soybeans, cassava, fruits,\n    and vegetables; animal products - beef, pork, eggs, milk; surplus producer\n    of timber; self-sufficient in most foods\n\n:Paraguay Economy\n\nIllicit drugs:\n    illicit producer of cannabis for the international drug trade; important\n    transshipment point for Bolivian cocaine headed for the US and Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $172 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.1 billion\nCurrency:\n    guarani (plural - guaranies); 1 guarani (G) = 100 centimos\nExchange rates:\n    guaranies (G) per US$ - 1,447.5 (March 1992), 1,325.2 (1991), 1,229.8\n    (1990), 1,056.2 (1989), 550.00 (fixed rate 1986-February 1989),\nFiscal year:\n    calendar year\n\n:Paraguay Communications\n\nRailroads:\n    970 km total; 440 km 1.435-meter standard gauge, 60 km 1.000-meter gauge,\n    470 km various narrow gauge (privately owned)\nHighways:\n    21,960 km total; 1,788 km paved, 474 km gravel, and 19,698 km earth\nInland waterways:\n    3,100 km\nPorts:\n    Asuncion\nMerchant marine:\n    13 ships (1,000 GRT or over) totaling 16,747 GRT/19,865 DWT; includes 11\n    cargo, 2 petroleum tanker; note - 1 naval cargo ship is sometimes used\n    commercially\nCivil air:\n    9 major transport aircraft\nAirports:\n    845 total, 716 usable; 7 with permanent-surface runways; 0 with runways over\n    3,659 m; 3 with runways 2,440-3,659 m; 66 with runways 1,220-2,439 m\nTelecommunications:\n    principal center in Asuncion; fair intercity microwave net; 78,300\n    telephones; broadcast stations - 40 AM, no FM, 5 TV, 7 shortwave; 1 Atlantic\n    Ocean INTELSAT earth station\n\n:Paraguay Defense Forces\n\nBranches:\n    Army, Navy (including Naval Air and Marines), Air Force\nManpower availability:\n    males 15-49, 1,172,813; 853,129 fit for military service; 49,917 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $84 million, 1.4% of GDP (1988 est.)\n\n:Peru Geography\n\nTotal area:\n    1,285,220 km2\nLand area:\n    1,280,000 km2\nComparative area:\n    slightly smaller than Alaska\nLand boundaries:\n    6,940 km total; Bolivia 900 km, Brazil 1,560 km, Chile 160 km, Colombia\n    2,900 km, Ecuador 1,420 km\nCoastline:\n    2,414 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    three sections of the boundary with Ecuador are in dispute\nClimate:\n    varies from tropical in east to dry desert in west\nTerrain:\n    western coastal plain (costa), high and rugged Andes in center (sierra),\n    eastern lowland jungle of Amazon Basin (selva)\nNatural resources:\n    copper, silver, gold, petroleum, timber, fish, iron ore, coal, phosphate,\n    potash\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 21%; forest and\n    woodland 55%; other 21%; includes irrigated 1%\nEnvironment:\n    subject to earthquakes, tsunamis, landslides, mild volcanic activity;\n    deforestation; overgrazing; soil erosion; desertification; air pollution in\n    Lima\nNote:\n    shares control of Lago Titicaca, world's highest navigable lake, with\n    Bolivia\n\n:Peru People\n\nPopulation:\n    22,767,543 (July 1992), growth rate 2.0% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    59 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 67 years female (1992)\nTotal fertility rate:\n    3.3 children born/woman (1992)\nNationality:\n    noun - Peruvian(s); adjective - Peruvian\nEthnic divisions:\n    Indian 45%; mestizo (mixed Indian and European ancestry) 37%; white 15%;\n    black, Japanese, Chinese, and other 3%\nReligions:\n    predominantly Roman Catholic\nLanguages:\n    Spanish and Quechua (both official), Aymara\nLiteracy:\n    85% (male 92%, female 29%) age 15 and over can read and write (1990 est.)\nLabor force:\n    6,800,000 (1986); government and other services 44%, agriculture 37%,\n    industry 19% (1988 est.)\nOrganized labor:\n    about 40% of salaried workers (1983 est.)\n\n:Peru Government\n\nLong-form name:\n    Republic of Peru\nType:\n    in transition, President FUJIMORI on 5 April 1992 suspended the constitution\n    and dissolved the legislative and judicial branches\nCapital:\n    Lima\nAdministrative divisions:\n    24 departments (departamentos, singular - departamento) and 1 constitutional\n    province* (provincia constitucional); Amazonas, Ancash, Apurimac, Arequipa,\n    Ayacucho, Cajamarca, Callao*, Cusco, Huancavelica, Huanuco, Ica, Junin, La\n    Libertad, Lambayeque, Lima, Loreto, Madre de Dios, Moquegua, Pasco, Piura,\n    Puno, San Martin, Tacna, Tumbes, Ucayali; note - the 1979 Constitution and\n    legislation enacted from 1987 to 1990 mandate the creation of regions\n    (regiones, singular - region) intended to function eventually as autonomous\n    economic and administrative entities; so far, 12 regions have been\n    constituted from 23 existing departments - Amazonas (from Loreto), Andres\n    Avelino Caceres (from Huanuco, Pasco, Junin), Arequipa (from Arequipa),\n    Chavin (from Ancash), Grau (from Tumbes, Piura), Inca (from Cusco, Madre de\n    Dios, Apurimac), La Libertad (from La Libertad), Los Libertadores-Huari\n    (from Ica, Ayacucho, Huancavelica), Mariategui (from Moquegua, Tacna, Puno),\n    Nor Oriental del Maranon (from Lambayeque, Cajamarca, Amazonas), San Martin\n    (from San Martin), Ucayali (from Ucayali); formation of another region has\n    been delayed by the reluctance of the constitutional province of Callao to\n    merge with the department of Lima; because of inadequate funding from the\n    central government, the regions have yet to assume their responsibilities\n    and at the moment coexist with the departmental structure\nIndependence:\n    28 July 1821 (from Spain)\nConstitution:\n    28 July 1980 (often referred to as the 1979 Constitution because the\n    Constituent Assembly met in 1979, but the Constitution actually took effect\n    the following year); suspended 5 April 1992\nLegal system:\n    based on civil law system; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 28 July (1821)\nExecutive branch:\n    president, two vice presidents (vacant as of 19 May 1992), prime minister,\n    Council of Ministers (cabinet)\nLegislative branch:\n    bicameral Congress (Congreso) consists of an upper chamber or Senate\n    (Senado) and a lower chamber or Chamber of Deputies (Camara de Diputados);\n    note - dissolved on 5 April 1992; being reconstituted\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justicia)\nLeaders:\n  Chief of State:\n    President Alberto FUJIMORI (since 28 July 1990); note - slots for first and\n    second Vice Presidents vacant as of 19 May 1992\n  Head of Government:\n    Prime Minister Oscar DE LA PUENTE Raygada (since 6 April 1992)\n\n:Peru Government\n\nPolitical parties and leaders:\n    Change 90 (Cambio 90), Alberto FUJIMORI; Popular Christian Party (PPC), Luis\n    BEDOYA Reyes; Popular Action Party (AP), Eduardo CALMELL del Solar; Liberty\n    Movement (ML), Luis BUSTAMANTE; American Popular Revolutionary Alliance\n    (APRA), Luis ALVA Castro, Alan GARCIA; National Front of Workers and\n    Peasants (FNTC), Roger CACERES; United Left (IU), leader NA; Independent\n    Moralizing Front (FIM), Fernando OLIVERA Vega; Socialist Left (IS), leader\n    NA; note - Democratic Front (FREDEMO) was a loosely organized coalition of\n    the PPC, AP, and ML during the 8 April 1990 elections, but the parties no\n    longer maintain a formal alliance\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held on 10 June 1990 (next to be held NA April 1995); results - Alberto\n    FUJIMORI 56.53%, Mario VARGAS Llosa 33.92%, other 9.55%\n  Senate:\n    last held on 8 April 1990; dissolved on 5 April 1992; because of suspension\n    of constitutional role, next election not yet scheduled; results - percent\n    of vote by party NA; seats - (62 total; 60 elected, 2 ex-presidents who are\n    senators for life) FREDEMO 20, APRA 16, Change 90 14, IU 6, IS 3, FNTC 1;\n    note - as a result of the dissolution of FREDEMO and defections and\n    expulsions from the various parties, the seats have been reallocated: APRA\n    17, Change 90 13, AP 8, IU 6, PPC 5, ML 4, IS 3, FNTC 1, independents 4,\n    other 1 (January 1992)\n  Chamber of Deputies:\n    last held 8 April 1990 dissolved on 5 April 1992; because of suspension of\n    constitutional role, next election not yet scheduled; results - percent of\n    vote by party NA; seats - (180 total) FREDEMO 62, APRA 53, Change 90 32, IU\n    16, IS 4, FNTC 3, other 10; note - as a result of the dissolution of FREDEMO\n    and defections and expulsions from the various parties, the seats have been\n    reallocated: APRA 53, AP 25, Change 90 25, PPC 23, IU 16, ML 7, FIM 3, IS 4,\n    FNTC 3, independents 15, other 4, and 2 currently nonvoting deputies\nCommunists:\n    Peruvian Communist Party-Unity (PCP-U), 2,000; other minor Communist parties\nOther political or pressure groups:\n  leftist guerrilla groups:\n    Shining Path, Abimael GUZMAN; Tupac Amaru Revolutionary Movement, Nestor\n    SERPA and Victor POLAY\nMember of:\n    AG, CCC, ECLAC, FAO, G-11, G-19, G-24, G-77, GATT, IADB, IAEA, IBRD, ICAO,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC,\n    IOM, ISO, ITU, LAES, LAIA, LORCS, NAM, OAS, OPANAL, PCA, RG, UN, UNCTAD,\n    UNESCO, UNIDO, UNIIMOG, UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador vacant; Chancery at 1700 Massachusetts Avenue NW, Washington, DC\n    20036; telephone (202) 833-9860 through 9869); Peruvian Consulates General\n    are located in Chicago, Houston, Los Angeles, Miami, New York, Paterson (New\n    Jersey), San Francisco, and San Juan (Puerto Rico)\n  US:\n    Ambassador Anthony C. E. QUAINTON; Embassy at the corner of Avenida Inca\n    Garcilaso de la Vega and Avenida Espana, Lima (mailing address is P. O. Box\n    1991, Lima 1, or APO AA 34031); telephone [51] (14) 33-8000; FAX [51] (14)\n    316682\nFlag:\n    three equal, vertical bands of red (hoist side), white, and red with the\n    coat of arms centered in the white band; the coat of arms features a shield\n    bearing a llama, cinchona tree (the source of quinine), and a yellow\n    cornucopia spilling out gold coins, all framed by a green wreath\n\n:Peru Economy\n\nOverview:\n    The Peruvian economy is becoming increasingly market oriented, with a large\n    dose of government ownership remaining in mining, energy, and banking. In\n    the 1980s the economy suffered from hyperinflation, declining per capita\n    output, and mounting external debt. Peru was shut off from IMF and World\n    Bank support in the mid-1980s because of its huge debt arrears. An austerity\n    program implemented shortly after the FUJIMORI government took office in\n    July 1990 contributed to a third consecutive yearly contraction of economic\n    activity, but the slide halted late in the year, and output rose 2.4% in\n    1991. After a burst of inflation as the austerity program eliminated\n    government price subsidies, monthly price increases eased to the\n    single-digit level and by December 1991 dropped to the lowest increase since\n    mid-1987. Lima obtained a financial rescue package from multilateral lenders\n    in September 1991, and, although it faces $14 billion in arrears on its\n    external debt, is working to pay some $1.8 billion of these to the IMF and\n    World Bank by 1993.\nGDP:\n    exchange rate conversion - $20.6 billion, per capita $920; real growth rate\n    2.4% (1991 est.)\nInflation rate (consumer prices):\n    139% (1991)\nUnemployment rate:\n    15.0%; underemployment 65% (1991 est.)\nBudget:\n    revenues $1.7 billion; expenditures $1.8 billion, including capital\n    expenditures of $250 million (1991 est.)\nExports:\n    $3.3 billion (f.o.b., 1991 est.)\n  commodities:\n    copper, fishmeal, zinc, crude petroleum and byproducts, lead, refined\n    silver, coffee, cotton\n  partners:\n    EC 28%, US 22%, Japan 13%, Latin America 12%, former USSR 2%\nImports:\n    $3.5 billion (f.o.b., 1991 est.)\n  commodities:\n    foodstuffs, machinery, transport equipment, iron and steel semimanufactures,\n    chemicals, pharmaceuticals\n  partners:\n    US 32%, Latin America 22%, EC 17%, Switzerland 6%, Japan 3%\nExternal debt:\n    $19.4 billion (December 1991 est.)\nIndustrial production:\n    growth rate 1.0% (1991 est.); accounts for almost 24% of GDP\nElectricity:\n    4,896,000 kW capacity; 15,851 million kWh produced, 709 kWh per capita\n    (1991)\nIndustries:\n    mining of metals, petroleum, fishing, textiles, clothing, food processing,\n    cement, auto assembly, steel, shipbuilding, metal fabrication\nAgriculture:\n    accounts for 10% of GDP, about 35% of labor force; commercial crops -\n    coffee, cotton, sugarcane; other crops - rice, wheat, potatoes, plantains,\n    coca; animal products - poultry, red meats, dairy, wool; not self-sufficient\n    in grain or vegetable oil; fish catch of 6.9 million metric tons (1990)\n\n:Peru Economy\n\nIllicit drugs:\n    world's largest coca leaf producer with about 121,000 hectares under\n    cultivation; source of supply for most of the world's coca paste and cocaine\n    base; at least 85% of coca cultivation is for illicit production; most of\n    cocaine base is shipped to Colombian drug dealers for processing into\n    cocaine for the international drug market\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.7 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.3 billion;\n    Communist countries (1970-89), $577 million\nCurrency:\n    (S/.) nuevo sol (plural - nuevos soles); 1 nuevo sol (S/.) = 100 centavos\nExchange rates:\n    nuevo sol (S/. per US$1 - 0.960 (March 1992), 0.772 (1991), 0.187 (1990),\n    2.666 (1989), 0.129 (1988), 0.017 (1987)\nFiscal year:\n    calendar year\n\n:Peru Communications\n\nRailroads:\n    1,801 km total; 1,501 km 1.435-meter gauge, 300 km 0.914-meter gauge\nHighways:\n    69,942 km total; 7,459 km paved, 13,538 km improved, 48,945 km unimproved\n    earth\nInland waterways:\n    8,600 km of navigable tributaries of Amazon system and 208 km Lago Titicaca\nPipelines:\n    crude oil 800 km, natural gas and natural gas liquids 64 km\nPorts:\n    Callao, Ilo, Iquitos, Matarani, Talara\nMerchant marine:\n    26 ships (1,000 GRT or over) totaling 286,313 GRT/461,233 DWT; includes 14\n    cargo, 1 refrigerated cargo, 1 roll-on/roll-off cargo, 3 petroleum tanker, 7\n    bulk; note - in addition, 8 naval tankers and 1 naval cargo are sometimes\n    used commercially\nCivil air:\n    44 major transport aircraft\nAirports:\n    221 total, 201 usable; 36 with permanent-surface runways; 2 with runways\n    over 3,659 m; 23 with runways 2,440-3,659 m; 43 with runways 1,220-2,439 m\nTelecommunications:\n    fairly adequate for most requirements; nationwide microwave system; 544,000\n    telephones; broadcast stations - 273 AM, no FM, 140 TV, 144 shortwave;\n    satellite earth stations - 2 Atlantic Ocean INTELSAT, 12 domestic\n\n:Peru Defense Forces\n\nBranches:\n    Army (Ejercito Peruano), Navy (Marina de Guerra del Peru), Air Force (Fuerza\n    Aerea del Peru), National Police\nManpower availability:\n    males 15-49, 5,863,227; 3,964,930 fit for military service; 236,484 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $430 million, 2.4% of GDP (1991)\n\n:Philippines Geography\n\nTotal area:\n    300,000 km2\nLand area:\n    298,170 km2\nComparative area:\n    slightly larger than Arizona\nLand boundaries:\n    none\nCoastline:\n    36,289 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Continental shelf:\n    to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    irregular polygon extending up to 100 nm from coastline as defined by 1898\n    treaty; since late 1970s has also claimed polygonal-shaped area in South\n    China Sea up to 285 nm in breadth\nDisputes:\n    involved in a complex dispute over the Spratly Islands with China, Malaysia,\n    Taiwan, Vietnam, and possibly Brunei; claims Malaysian state of Sabah\nClimate:\n    tropical marine; northeast monsoon (November to April); southwest monsoon\n    (May to October)\nTerrain:\n    mostly mountains with narrow to extensive coastal lowlands\nNatural resources:\n    timber, crude oil, nickel, cobalt, silver, gold, salt, copper\nLand use:\n    arable land 26%; permanent crops 11%; meadows and pastures 4%; forest and\n    woodland 40%; other 19%; includes irrigated 5%\nEnvironment:\n    astride typhoon belt, usually affected by 15 and struck by five to six\n    cyclonic storms per year; subject to landslides, active volcanoes,\n    destructive earthquakes, tsunami; deforestation; soil erosion; water\n    pollution\n\n:Philippines People\n\nPopulation:\n    67,114,060 (July 1992), growth rate 2.0% (1992)\nBirth rate:\n    28 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    53 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 68 years female (1992)\nTotal fertility rate:\n    3.5 children born/woman (1992)\nNationality:\n    noun - Filipino(s); adjective - Philippine\nEthnic divisions:\n    Christian Malay 91.5%, Muslim Malay 4%, Chinese 1.5%, other 3%\nReligions:\n    Roman Catholic 83%, Protestant 9%, Muslim 5%, Buddhist and other 3%\nLanguages:\n    Pilipino (based on Tagalog) and English; both official\nLiteracy:\n    90% (male 90%, female 90%) age 15 and over can read and write (1990 est.)\nLabor force:\n    24,120,000; agriculture 46%, industry and commerce 16%, services 18.5%,\n    government 10%, other 9.5% (1989)\nOrganized labor:\n    3,945 registered unions; total membership 5.7 million (includes 2.8 million\n    members of the National Congress of Farmers Organizations)\n\n:Philippines Government\n\nLong-form name:\n    Republic of the Philippines\nType:\n    republic\nCapital:\n    Manila\nAdministrative divisions:\n    72 provinces and 61 chartered cities*; Abra, Agusan del Norte, Agusan del\n    Sur, Aklan, Albay, Angeles*, Antique, Aurora, Bacolod*, Bago*, Baguio*,\n    Bais*, Basilan, Basilan City*, Bataan, Batanes, Batangas, Batangas City*,\n    Benguet, Bohol, Bukidnon, Bulacan, Butuan*, Cabanatuan*, Cadiz*, Cagayan,\n    Cagayan de Oro*, Calbayog*, Caloocan*, Camarines Norte, Camarines Sur,\n    Camiguin, Canlaon*, Capiz, Catanduanes, Cavite, Cavite City*, Cebu, Cebu\n    City*, Cotabato*, Dagupan*, Danao*, Dapitan*, Davao City* Davao, Davao del\n    Sur, Davao Oriental, Dipolog*, Dumaguete*, Eastern Samar, General Santos*,\n    Gingoog*, Ifugao, Iligan*, Ilocos Norte, Ilocos Sur, Iloilo, Iloilo City*,\n    Iriga*, Isabela, Kalinga-Apayao, La Carlota*, Laguna, Lanao del Norte, Lanao\n    del Sur, Laoag*, Lapu-Lapu*, La Union, Legaspi*, Leyte, Lipa*, Lucena*,\n    Maguindanao, Mandaue*, Manila*, Marawi*, Marinduque, Masbate, Mindoro\n    Occidental, Mindoro Oriental, Misamis Occidental, Misamis Oriental,\n    Mountain, Naga*, Negros Occidental, Negros Oriental, North Cotabato,\n    Northern Samar, Nueva Ecija, Nueva Vizcaya, Olongapo*, Ormoc*, Oroquieta*,\n    Ozamis*, Pagadian*, Palawan, Palayan*, Pampanga, Pangasinan, Pasay*, Puerto\n    Princesa*, Quezon, Quezon City*, Quirino, Rizal, Romblon, Roxas*, Samar, San\n    Carlos* (in Negros Occidental), San Carlos* (in Pangasinan), San Jose*, San\n    Pablo*, Silay*, Siquijor, Sorsogon, South Cotabato, Southern Leyte, Sultan\n    Kudarat, Sulu, Surigao*, Surigao del Norte, Surigao del Sur, Tacloban*,\n    Tagaytay*, Tagbilaran*, Tangub*, Tarlac, Tawitawi, Toledo*, Trece Martires*,\n    Zambales, Zamboanga*, Zamboanga del Norte, Zamboanga del Sur\nIndependence:\n    4 July 1946 (from US)\nConstitution:\n    2 February 1987, effective 11 February 1987\nLegal system:\n    based on Spanish and Anglo-American law; accepts compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Independence Day (from Spain), 12 June (1898)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral Congress (Kongreso) consists of an upper house or Senate (Senado)\n    and a lower house or House of Representatives (Kapulungan Ng Mga Kinatawan)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Corazon C. AQUINO (since 25 February 1986); Vice President\n    Salvador H. LAUREL (since 25 February 1986)\nPolitical parties and leaders:\n    Alliance of Philippine Democrats (LDP), Neptali GONZALES and Jose (Peping)\n    COJUANGCO; Nationalist People's Coalition (NPC), Fidel Valdes RAMOS; Liberal\n    Party, Jovito SALONGA; New Society Movement (KBL), Amelda MARCOS\nSuffrage:\n    universal at age 15\nElections:\n  President:\n    last held 11 May 1992 (next election to be held NA May 1998);results - Fidel\n    Valdes RAMOS won 23.6% of votes, a narrow plurality\n\n:Philippines Government\n\n  Senate:\n    last held 11 May 1992 (next election to be held NA May 1998); results - LDP\n    66%, NPC 20%, Lakas-NUCD 8%, Liberal 6%; seats - (24 total) LDP 24, NPC 5,\n    Lakas-NUCD 2, Liberal 1\nElections:\n  House of Representatives:\n    last held 11 May 1992 (next election to be held NA May 1998); results - LDP\n    43.5%; Lakas-NUCD 25%, NPC 23.5%, Liberal 5%, KBL 3%;seats - (200 total) LDP\n    87, Lakas-NUCD 51, NPC 47, Liberal 10, KBL 5\nCommunists:\n    the Communist Party of the Philippines (CPP) controls about 15,500-16,500\n    full-time insurgents and is not recognized as a legal party; a second\n    Communist party, Philippine Communist Party (PKP), has quasi-legal status\nMember of:\n    APEC, AsDB, ASEAN, CCC, CP, ESCAP, FAO, G-24, G-77, GATT, IAEA, IBRD, ICAO,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC,\n    IOM, ISO, ITU, LORCS, NAM (observer), UN, UNCTAD, UNESCO, UNIDO, UPU, WCL,\n    WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Emmanuel PELAEZ; Chancery at 1617 Massachusetts Avenue NW,\n    Washington, DC 20036; telephone (202) 483-1414; there are Philippine\n    Consulates General in Agana (Guam), Chicago, Honolulu, Houston, Los Angeles,\n    New York, San Francisco, and Seattle\n  US:\n    Ambassador Frank G. WISNER II; Embassy at 1201 Roxas Boulevard, Manila\n    (mailing address is APO AP 96440); telephone [63] (2) 521-7116; FAX [63] (2)\n    522-4361; there is a US Consulate in Cebu\nFlag:\n    two equal horizontal bands of blue (top) and red with a white equilateral\n    triangle based on the hoist side; in the center of the triangle is a yellow\n    sun with eight primary rays (each containing three individual rays) and in\n    each corner of the triangle is a small yellow five-pointed star\n\n:Philippines Economy\n\nOverview:\n    Following the recession of 1984-85, the Philippine economy grew on the\n    average of 5.0% per year during 1986-89. It slowed again during the period\n    1990-91. The agricultural sector together with forestry and fishing, plays\n    an important role in the economy, employing about 45% of the work force and\n    providing almost 30% of GDP. The Philippines is the world's largest exporter\n    of coconuts and coconut products. Manufacturing contributes about 35% of\n    GDP. Major industries include food processing, chemicals, and textiles.\nGNP:\n    exchange rate conversion - $47 billion, per capita $720; real growth rate\n    0.1% (1991 est.)\nInflation rate (consumer prices):\n    17.6% (1991 est.)\nUnemployment rate:\n    10.0% (1991 est.)\nBudget:\n    $8.4 billion; expenditures $9.36 billion, including capital expenditures of\n    $1.8 billion (1991 est.)\nExports:\n    $8.7 billion (f.o.b., 1991 est.)\n  commodities:\n    electrical equipment 19%, textiles 16%, minerals and ores 11%, farm products\n    10%, coconut 10%, chemicals 5%, fish 5%, forest products 4%\n  partners:\n    US 36%, EC 19%, Japan 18%, ESCAP 9%, ASEAN 7%\nImports:\n    $12.3 billion (c.i.f., 1991)\n  commodities:\n    raw materials 53%, capital goods 17%, petroleum products 17%\n  partners:\n    US 25%, Japan 17%, ESCAP 13%, EC 11%, ASEAN 10%, Middle East 10%\nExternal debt:\n    $28.9 billion (1991)\nIndustrial production:\n    growth rate - 5% (1991 est.); accounts for 35% of GNP\nElectricity:\n    7,500,000 kW capacity; 31,000 million kWh produced, 470 kWh per capita\n    (1991)\nIndustries:\n    textiles, pharmaceuticals, chemicals, wood products, food processing,\n    electronics assembly, petroleum refining, fishing\nAgriculture:\n    accounts for about one-third of GNP and 45% of labor force; major crops -\n    rice, coconut, corn, sugarcane, bananas, pineapple, mango; animal products -\n    pork, eggs, beef; net exporter of farm products; fish catch of 2 million\n    metric tons annually\nIllicit drugs:\n    illicit producer of cannabis for the international drug trade; growers are\n    producing more and better quality cannabis despite government eradication\n    efforts\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $3.6 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-88), $7.9 billion; OPEC\n    bilateral aid (1979-89), $5 million; Communist countries (1975-89), $123\n    million\nCurrency:\n    Philippine peso (plural - pesos); 1 Philippine peso (P) = 100 centavos\n\n:Philippines Economy\n\nExchange rates:\n    Philippine pesos (P) per US$1 - 25.810 (March 1992), 27.479 (1991), 24.311\n    (1990), 21.737 (1989), 21.095 (1988), 20.568 (1987)\nFiscal year:\n    calendar year\n\n:Philippines Communications\n\nRailroads:\n    378 km operable on Luzon, 34% government owned (1982)\nHighways:\n    156,000 km total (1984); 29,000 km paved; 77,000 km gravel, crushed-stone,\n    or stabilized-soil surface; 50,000 km unimproved earth\nInland waterways:\n    3,219 km; limited to shallow-draft (less than 1.5 m) vessels\nPipelines:\n    petroleum products 357 km\nPorts:\n    Cagayan de Oro, Cebu, Davao, Guimaras, Iloilo, Legaspi, Manila, Subic Bay\nMerchant marine:\n    552 ships (1,000 GRT or over) totaling 8,150,425 GRT/13,624,527 DWT;\n    includes 1 passenger, 11 short-sea passenger, 13 passenger-cargo, 155 cargo,\n    22 refrigerated cargo, 23 vehicle carrier, 8 livestock carrier, 13\n    roll-on/roll-off cargo, 8 container, 35 petroleum tanker, 1 chemical tanker,\n    6 liquefied gas, 2 combination ore/oil, 247 bulk, 7 combination bulk; note -\n    many Philippine flag ships are foreign owned and are on the register for the\n    purpose of long-term bare-boat charter back to their original owners who are\n    principally in Japan and Germany\nCivil air:\n    53 major transport aircraft\nAirports:\n    278 total, 244 usable; 72 with permanent-surface runways; none with runways\n    over 3,659 m; 9 with runways 2,440-3,659 m; 53 with runways 1,220-2,439 m\nTelecommunications:\n    good international radio and submarine cable services; domestic and\n    interisland service adequate; 872,900 telephones; broadcast stations - 267\n    AM (including 6 US), 55 FM, 33 TV (including 4 US); submarine cables\n    extended to Hong Kong, Guam, Singapore, Taiwan, and Japan; satellite earth\n    stations - 1 Indian Ocean INTELSAT, 2 Pacific Ocean INTELSAT, and 11\n    domestic\n\n:Philippines Defense Forces\n\nBranches:\n    Army, Navy (including Coast Guard and Marine Corps), Air Force\nManpower availability:\n    males 15-49, 16,719,421; 11,816,366 fit for military service; 698,683 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $915 million, 1.9% of GNP (1991)\n\n:Pitcairn Islands Geography\n\nTotal area:\n    47 km2\nLand area:\n    47 km2\nComparative area:\n    about 0.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    51 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    none\nClimate:\n    tropical, hot, humid, modified by southeast trade winds; rainy season\n    (November to March)\nTerrain:\n    rugged volcanic formation; rocky coastline with cliffs\nNatural resources:\n    miro trees (used for handicrafts), fish\nLand use:\n    arable land NA%; permanent crops NA%; meadows and pastures NA%; forest and\n    woodland NA%; other NA%\nEnvironment:\n    subject to typhoons (especially November to March)\nNote:\n    located in the South Pacific Ocean about halfway between Peru and New\n    Zealand\n\n:Pitcairn Islands People\n\nPopulation:\n    52 (July 1992), growth rate 0.0% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Pitcairn Islander(s); adjective - Pitcairn Islander\nEthnic divisions:\n    descendants of Bounty mutineers\nReligions:\n    Seventh-Day Adventist 100%\nLanguages:\n    English (official); also a Tahitian/English dialect\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA; no business community in the usual sense; some public works; subsistence\n    farming and fishing\nOrganized labor:\n    NA\n\n:Pitcairn Islands Government\n\nLong-form name:\n    Pitcairn, Henderson, Ducie, and Oeno Islands\nType:\n    dependent territory of the UK\nCapital:\n    Adamstown\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    Local Government Ordinance of 1964\nLegal system:\n    local island by-laws\nNational holiday:\n    Celebration of the Birthday of the Queen (second Saturday in June), 10 June\n    1989\nExecutive branch:\n    British monarch, governor, island magistrate\nLegislative branch:\n    unicameral Island Council\nJudicial branch:\n    Island Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by the Governor and\n    UK High Commissioner to New Zealand David Joseph MOSS (since NA 1990)\n  Head of Government:\n    Island Magistrate and Chairman of the Island Council Brian YOUNG (since NA\n    1985)\nPolitical parties and leaders:\n    NA\nSuffrage:\n    universal at age 18 with three years residency\nElections:\n  Island Council:\n    last held NA (next to be held NA); results - percent of vote by party NA;\n    seats - (11 total, 5 elected) number of seats by party NA\nOther political or pressure groups:\n    NA\nMember of:\n    SPC\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the\n    Pitcairn Islander coat of arms centered on the outer half of the flag; the\n    coat of arms is yellow, green, and light blue with a shield featuring a\n    yellow anchor\n\n:Pitcairn Islands Economy\n\nOverview:\n    The inhabitants exist on fishing and subsistence farming. The fertile soil\n    of the valleys produces a wide variety of fruits and vegetables, including\n    citrus, sugarcane, watermelons, bananas, yams, and beans. Bartering is an\n    important part of the economy. The major sources of revenue are the sale of\n    postage stamps to collectors and the sale of handicrafts to passing ships.\nGDP:\n    $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $430,440; expenditures $429,983, including capital expenditures of\n    $NA (FY87 est.)\nExports:\n    $NA\n  commodities:\n    fruits, vegetables, curios\n  partners:\n    NA\nImports:\n    $NA\n  commodities:\n    fuel oil, machinery, building materials, flour, sugar, other foodstuffs\n  partners:\n    NA\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    110 kW capacity; 0.30 million kWh produced, 5,360 kWh per capita (1990)\nIndustries:\n    postage stamp sales, handicrafts\nAgriculture:\n    based on subsistence fishing and farming; wide variety of fruits and\n    vegetables grown; must import grain products\nEconomic aid:\n    none\nCurrency:\n    New Zealand dollar (plural - dollars); 1 New Zealand dollar (NZ$) = 100\n    cents\nExchange rates:\n    New Zealand dollars (NZ$) per US$1 - 1.8245 (March 1992), 1.7265 (1991),\n    1.6750 (1990), 1.6711 (1989), 1.5244 (1988), 1.6866 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Pitcairn Islands Communications\n\nRailroads:\n    none\nHighways:\n    6.4 km dirt roads\nPorts:\n    Bounty Bay\nAirports:\n    none\nTelecommunications:\n    24 telephones; party line telephone service on the island; broadcast\n    stations - 1 AM, no FM, no TV; diesel generator provides electricity\n\n:Pitcairn Islands Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Poland Geography\n\nTotal area:\n    312,680 km2\nLand area:\n    304,510 km2\nComparative area:\n    slightly smaller than New Mexico\nLand boundaries:\n    3,321 km total; Belarus 605 km, Czechoslovakia 1,309 km, Germany 456 km,\n    Lithuania 91 km, Russia (Kaliningrad Oblast) 432 km, Ukraine 428 km\nCoastline:\n    491 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate with cold, cloudy, moderately severe winters with frequent\n    precipitation; mild summers with frequent showers and thundershowers\nTerrain:\n    mostly flat plain; mountains along southern border\nNatural resources:\n    coal, sulfur, copper, natural gas, silver, lead, salt\nLand use:\n    arable land 46%; permanent crops 1%; meadows and pastures 13%; forest and\n    woodland 28%; other 12%; includes irrigated NEGL%\nEnvironment:\n    plain crossed by a few north flowing, meandering streams; severe air and\n    water pollution in south\nNote:\n    historically, an area of conflict because of flat terrain and the lack of\n    natural barriers on the North European Plain\n\n:Poland People\n\nPopulation:\n    38,385,617 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    14 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 76 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman(1992)\nNationality:\n    noun - Pole(s); adjective - Polish\nEthnic divisions:\n    Polish 97.6%, German 1.3%, Ukrainian 0.6%, Belorussian 0.5% (1990 est.)\nReligions:\n    Roman Catholic 95% (about 75% practicing), Russian Orthodox, Protestant, and\n    other 5%\nLanguages:\n    Polish\nLiteracy:\n    98% (male 99%, female 98%) age 15 and over can read and write (1978)\nLabor force:\n    17,104,000; industry and construction 36.1%; agriculture 27.3%; trade,\n    transport, and communications 14.8%; government and other 21.8% (1989)\nOrganized labor:\n    trade union pluralism\n\n:Poland Government\n\nLong-form name:\n    Republic of Poland\nType:\n    democratic state\nCapital:\n    Warsaw\nAdministrative divisions:\n    49 provinces (wojewodztwa, singular - wojewodztwo); Biaa Podlaska, Biaystok,\n    Bielsko, Bydgoszcz, Chem, Ciechanow, Czestochowa, Elblag, Gdansk, Gorzow,\n    Jelenia Gora, Kalisz, Katowice, Kielce, Konin, Koszalin, Krakow, Krosno,\n    Legnica, Leszno, odz, omza, Lublin, Nowy Sacz, Olsztyn, Opole, Ostroteka,\n    Pia, Piotrkow, Pock, Poznan, Przemysl, Radom, Rzeszow, Siedlce, Sieradz,\n    Skierniewice, Supsk, Suwaki, Szczecin, Tarnobrzeg, Tarnow, Torun, Wabrzych,\n    Warszawa, Wocawek, Wrocaw, Zamosc, Zielona Gora\nIndependence:\n    11 November 1918, independent republic proclaimed\nConstitution:\n    Communist-imposed Constitution of 22 July 1952; developing a democratic\n    Constitution\nLegal system:\n    mixture of Continental (Napoleonic) civil law and holdover Communist legal\n    theory; changes being gradually introduced as part of broader\n    democratization process; no judicial review of legislative acts; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    Constitution Day, 3 May (1794)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral National Assembly (Zgromadzenie Narodowe) consists of an upper\n    house or Senate (Senat) and a lower house or Diet (Sejm)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Lech WALESA (since 22 December 1990)\n  Head of Government:\n    Prime Minister Hanna SUCHOCKA (since 10 July 1992)\nPolitical parties and leaders:\n  Solidarity Bloc:\n    Democratic Union (UD), Tadeusz MAZOWIECKI; Christian-National Union (ZCHN),\n    Wieslaw CHRZANOWSKI; Centrum (PC), Jaroslaw KACZYNSKI; Liberal-Democratic\n    Congress, Donald TUSK; Peasant Alliance (PL), Gabriel JANOWSKI; Solidarity\n    Trade Union (NSZZ), Marian KRZAKLEWSKI; Solidarity Labor (SP), Ryszard\n    BUGAJ; Christian-Democratic Party (PCHD), Pawel LACZKOWSKI;\n    Democratic-Social Movement (RDS), Zbigniew BUJAK; Kracow Coalition in\n    Solidarity with the President, Mieczyslaw GIL; Solidarity 80, Marian JURCZYK\n  Non-Communist, Non-Solidarity:\n    Confederation for an Independent Poland (KPN), Leszek MOCZULSKI; Beer\n    Lovers' Party (PPPP), Janusz REWINSKI; Christian Democrats (CHD), Andrzej\n    OWSINSKI; German Minority (MN), Henryk KROL; Western Union (KPN Front),\n    Damian JAKUBOWSKI; RealPolitik (UPR), Janusz KORWIN-MIKKE; Democratic Party\n    (SD), Antoni MACKIEWICZ\n  Communist origin or linked:\n    Social Democracy (SDRP, or SLD), Wlodzimierz Cimoszewicz; Polish Peasants'\n    Party (PSL), Waldermar PAWLAK; Party X, Stanislaw Tyminski\nSuffrage:\n    universal at age 18\n\n:Poland Government\n\nElections:\n  President:\n    first round held 25 November 1990, second round held 9 December 1990 (next\n    to be held NA November 1995); results - second round Lech WALESA 74.7%,\n    Stanislaw TYMINSKI 25.3%\n  Senate:\n    last held 27 October 1991 (next to be held no later than NA October 1995);\n    results -\n  Solidarity Bloc:\n    UD 21%, NSZZ 11%, ZCHN 9%, PC 9%, Liberal-Democratic Congress 6%, PL 7%,\n    PCHD 3%, other local candidates 11%\n  Non-Communist, Non-Solidarity:\n    KPN 4%, CHD 1%, MN 1%, local candidates 5%\n  Communist origin or linked:\n    PSL 8%, SLD 4%; seats - (100 total)\n  Solidarity Bloc:\n    UD 21, NSZZ 11, ZCHN 9, Liberal-Democratic Congress 6, PL 7, PCHD 3, other\n    local candidates 11;\n  Non-Communist, Non-Solidarity:\n    KPN 4, CHD 1, MN 1 local candidates 5\n  Communist origin or linked:\n    PSL 8, SLD 4\n  Sejm:\n    last held 27 October 1991 (next to be held no later than NA October 1995);\n    results -\n  Solidarity Bloc:\n    UD 12.31%, ZCHN 8.73%, PL 8.71%, Liberal-Democratic Congress 7.48%, PL\n    5.46%, NSZZ 5.05%, SP 2.05%, PCHD 1.11%\n  Non-Communist, Non-Solidarity:\n    KPN 7.50%, PPPP 3.27%, CHD 2.36%, UPR 2.25%, MN 1.70%\n  Communist origin or linked:\n    SLD 11.98%, PSL 8.67%; seats - (460 total)\n  Solidarity Bloc:\n    UD 62, ZCHN 9, PC 44, Liberal-Democratic Congress 37, PL 28, NSZZ 27, SP 4,\n    PCHD 4, RDS 1, Krackow Coalition in Solidarity with the President 1, Piast\n    Agreement 1, Bydgoszcz Peasant List 1, Solidarity 80 1\n  Non-Communist, Non-Solidarity:\n    KPN 46, PPPP 16, MN 7, CHD 5, Western Union 4, UPR 3, Autonomous Silesia 2,\n    SD 1, Orthodox Election Committee 1, Committee of Women Against Hardships 1,\n    Podhale Union 1, Wielkopolska Group 1, Wielkopolska and Lubuski Inhabitants\n    1\n  Communist origin or linked:\n    SLD 60, PSL 48, Party X 3\nCommunists:\n    70,000 members in the Communist successor parties (1990)\nOther political or pressure groups:\n    powerful Roman Catholic Church; Confederation for an Independent Poland\n    (KPN), a nationalist group; Solidarity (trade union); All Poland Trade Union\n    Alliance (OPZZ), populist program; Clubs of Catholic Intellectuals (KIKs)\nMember of:\n    BIS, CCC, CE, CERN, CSCE, ECE, FAO, GATT, Hexagonale, IAEA, IBEC, IBRD,\n    ICAO, ICFTU, IDA, IIB, ILO, IMF, IMO, INMARSAT, IOC, ISO, ITU, LORCS, PCA,\n    UN, UNCTAD, UNESCO, UNDOF, UNIDO, UNIIMOG, UPU, WCL, WHO, WIPO\nDiplomatic representation:\n    Ambassador Kazimierz DZIEWANOWSKI; Chancery at 2640 16th Street NW,\n    Washington, DC 20009; telephone (202) 234-3800 through 3802; there are\n    Polish Consulates General in Chicago, Los Angeles, and New York\n\n:Poland Government\n\n  US:\n    Ambassador Thomas W. SIMONS, Jr.; Embassy at Aleje Ujazdowskie 29/31, Warsaw\n    (mailing address is American Embassy Warsaw, Box 5010, or APO AE\n    09213-5010); telephone [48] (2) 628-8298; FAX [48] (2) 628-9326; there is a\n    US Consulate General in Krakow and a Consulate in Poznan\nFlag:\n    two equal horizontal bands of white (top) and red; similar to the flags of\n    Indonesia and Monaco which are red (top) and white\n\n:Poland Economy\n\nOverview:\n    Poland is undergoing a difficult transition from a Soviet-style economy -\n    with state ownership and control of productive assets - to a market economy.\n    On January 1, 1990, the new Solidarity-led government implemented shock\n    therapy by slashing subsidies, decontrolling prices, tightening the money\n    supply, stabilizing the foreign exchange rate, lowering import barriers, and\n    restraining state sector wages. As a result, consumer goods shortages and\n    lines disappeared, and inflation fell from 640% in 1989 to 60% in 1991.\n    Western governments, which hold two-thirds of Poland's $48 billion external\n    debt, pledged in 1991 to forgive half of Poland's official debt by 1994, and\n    the private sector grew, accounting for 22% of industrial production and 40%\n    of nonagricultural output by 1991. Production fell in state enterprises,\n    however, and the unemployment rate climbed steadily from virtually nothing\n    in 1989 to 11.4% in December 1991. Poland fell out of compliance with its\n    IMF program by mid-1991, and talks with commercial creditors stalled. The\n    increase in unemployment and the decline in living standards led to popular\n    discontent and a change in government in January 1991 and again in December.\n    The new government has promised selective industrial intervention, some\n    relaxation in monetary policy, and an improved social safety net, but will\n    be constrained by the decline in output and the growing budget deficit.\nGDP:\n    purchasing power equivalent - $162.7 billion, per capita $4,300; real growth\n    rate -5% (1991 est.)\nInflation rate (consumer prices):\n    60% (1991 est.)\nUnemployment rate:\n    11.4% (end December 1991)\nBudget:\n    revenues $19.5 billion; expenditures $22.4 billion, including capital\n    expenditures of $1.5 billion (1991 est.)\nExports:\n    $12.8 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery 23%, metals 17%, chemicals 13%, fuels 11%, food 10% (1991 est.)\n  partners:\n    FRG 25.1%, former USSR 15.3%, UK 7.1%, Switzerland 4.7% (1990)\nImports:\n    $12.9 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery 35%, fuels 20%, chemicals 13%, food 11%, light industry 7% (1991\n    est.)\n  partners:\n    FRG 20.1%, former USSR 19.8%, Italy 7.5%, Switzerland 6.4% (1990)\nExternal debt:\n    $48.5 billion (January 1992); note - Poland's Western government creditors\n    promised in 1991 to forgive 30% of Warsaw's official debt - currently $33\n    billion - immediately and to forgive another 20% by 1994, if Poland adheres\n    to its IMF program\nIndustrial production:\n    growth rate -14% (State sector 1991 est.)\nElectricity:\n    31,530,000 kW capacity; 136,300 million kWh produced, 3,610 kWh per capita\n    (1990)\nIndustries:\n    machine building, iron and steel, extractive industries, chemicals,\n    shipbuilding, food processing, glass, beverages, textiles\n\n:Poland Economy\n\nAgriculture:\n    accounts for 15% of GDP and 27% of labor force; 75% of output from private\n    farms, 25% from state farms; productivity remains low by European standards;\n    leading European producer of rye, rapeseed, and potatoes; wide variety of\n    other crops and livestock; major exporter of pork products; normally\n    self-sufficient in food\nIllicit drugs:\n    illicit producers of opium for domestic consumption and amphetamines for the\n    international market; emerging as a transshipment point for illicit drugs to\n    Western Europe\nEconomic aid:\n    donor - bilateral aid to non-Communist less developed countries, $2.2\n    billion (1954-89); note - the G-24 has pledged $8 billion in grants and\n    credit guarantees to Poland\nCurrency:\n    Zoty (plural - Zotych); 1 Zoty (Z) = 100 groszy\nExchange rates:\n    Zotych (z) per US$1 - 13,443 (March 1992), 10,576 (1991), 9,500 (1990),\n    1,439.18 (1989), 430.55 (1988), 265.08 (1987)\nFiscal year:\n    calendar year\n\n:Poland Communications\n\nRailroads:\n    27,041 km total; 24,287 km 1.435-meter gauge, 397 km 1.520-meter gauge,\n    2,357 km narrow gauge; 8,987 km double track; 11,016 km electrified;\n    government owned (1989)\nHighways:\n    299,887 km total; 130,000 km improved hard surface (concrete, asphalt, stone\n    block); 24,000 km unimproved hard surface (crushed stone, gravel); 100,000\n    km earth; 45,887 km other urban roads (1985)\nInland waterways:\n    3,997 km navigable rivers and canals (1989)\nPipelines:\n    natural gas 4,500 km, crude oil 1,986 km, petroleum products 360 km (1987)\nPorts:\n    Gdansk, Gdynia, Szczecin, Swinoujscie; principal inland ports are Gliwice on\n    Kana Gliwice, Wrocaw on the Oder, and Warsaw on the Vistula\nMerchant marine:\n    222 ships (1,000 GRT or over) totaling 2,851,016 GRT/4,019,531 DWT; includes\n    5 short-sea passenger, 79 cargo, 4 refrigerated cargo, 14 roll-on/roll-off\n    cargo, 12 container, 1 petroleum tanker, 4 chemical tanker, 102 bulk, 1\n    passenger; Poland owns 1 ship of 6,333 DWT operating under Liberian registry\nCivil air:\n    48 major transport aircraft\nAirports:\n    160 total, 160 usable; 85 with permanent-surface runways; 1 with runway over\n    3,659 m; 35 with runways 2,440-3,659 m; 65 with runways 1,220-2,439 m\nTelecommunications:\n    severely underdeveloped and outmoded system; cable, open wire and microwave;\n    phone density is 10.5 phones per 100 residents (October 1990); 3.1 million\n    subscribers; exchanges are 86% automatic (February 1990); broadcast stations\n    - 27 AM, 27 FM, 40 (5 Soviet repeaters) TV; 9.6 million TVs; 1 satellite\n    earth station using INTELSAT, EUTELSAT, INMARSAT and Intersputnik\n\n:Poland Defense Forces\n\nBranches:\n    Army, Navy, Air and Air Defense Force\nManpower availability:\n    males 15-49, 9,785,823; 7,696,425 fit for military service; 294,191 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - 19.2 trillion zotych, NA% of GDP (1991); note -\n    conversion of defense expenditures into US dollars using the current\n    exchange rate could produce misleading results\n\n:Portugal Geography\n\nTotal area:\n    92,080 km2\nLand area:\n    91,640 km2; includes Azores and Madeira Islands\nComparative area:\n    slightly smaller than Indiana\nLand boundaries:\n    1,214 km; Spain 1,214 km\nCoastline:\n    1,793 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    sovereignty over Timor Timur (East Timor Province) disputed with Indonesia\nClimate:\n    maritime temperate; cool and rainy in north, warmer and drier in south\nTerrain:\n    mountainous north of the Tagus, rolling plains in south\nNatural resources:\n    fish, forests (cork), tungsten, iron ore, uranium ore, marble\nLand use:\n    arable land 32%; permanent crops 6%; meadows and pastures 6%; forest and\n    woodland 40%; other 16%; includes irrigated 7%\nEnvironment:\n    Azores subject to severe earthquakes\nNote:\n    Azores and Madeira Islands occupy strategic locations along western sea\n    approaches to Strait of Gibraltar\n\n:Portugal People\n\nPopulation:\n    10,448,509 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 78 years female (1992)\nTotal fertility rate:\n    1.4 children born/woman (1992)\nNationality:\n    noun - Portuguese (singular and plural); adjective - Portuguese\nEthnic divisions:\n    homogeneous Mediterranean stock in mainland, Azores, Madeira Islands;\n    citizens of black African descent who immigrated to mainland during\n    decolonization number less than 100,000\nReligions:\n    Roman Catholic 97%, Protestant denominations 1%, other 2%\nLanguages:\n    Portuguese\nLiteracy:\n    85% (male 89%, female 82%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,605,700; services 45%, industry 35%, agriculture 20% (1988)\nOrganized labor:\n    about 55% of the labor force; the Communist-dominated General Confederation\n    of Portuguese Workers - Intersindical (CGTP-IN) represents more than half of\n    the unionized labor force; its main competition, the General Workers Union\n    (UGT), is organized by the Socialists and Social Democrats and represents\n    less than half of unionized labor\n\n:Portugal Government\n\nLong-form name:\n    Portuguese Republic\nType:\n    republic\nCapital:\n    Lisbon\nAdministrative divisions:\n    18 districts (distritos, singular - distrito) and 2 autonomous regions*\n    (regioes autonomas, singular - regiao autonoma); Aveiro, Acores (Azores)*,\n    Beja, Braga, Braganca, Castelo Branco, Coimbra, Evora, Faro, Guarda, Leiria,\n    Lisboa, Madeira*, Portalegre, Porto, Santarem, Setubal, Viana do Castelo,\n    Vila Real, Viseu\nIndependence:\n    1140; independent republic proclaimed 5 October 1910\nConstitution:\n    25 April 1976, revised 30 October 1982 and 1 June 1989\nLegal system:\n    civil law system; the Constitutional Tribunal reviews the constitutionality\n    of legislation; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Day of Portugal, 10 June\nExecutive branch:\n    president, Council of State, prime minister, deputy prime minister, Council\n    of Ministers (cabinet)\nLegislative branch:\n    unicameral Assembly of the Republic (Assembleia da Republica)\nJudicial branch:\n    Supreme Tribunal of Justice (Supremo Tribunal de Justica)\nLeaders:\n  Chief of State:\n    President Dr. Mario Alberto Nobre Lopes SOARES (since 9 March 1986)\n  Head of Government:\n    Prime Minister Anibal CAVACO SILVA (since 6 November 1985)\nPolitical parties and leaders:\n    Social Democratic Party (PSD), Anibal CAVACO Silva; Portuguese Socialist\n    Party (PS), Jorge SAMPAIO; Party of Democratic Renewal (PRD), Herminio\n    MARTINHO; Portuguese Communist Party (PCP), Alvaro CUNHAL; Social Democratic\n    Center (CDS), Andriano MORREIRA (interim); National Solidarity Party, Manuel\n    SERGIO; Center Democratic Party; United Democratic Coalition (CDU;\n    Communists)\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 13 February 1991 (next to be held NA February 1996); results - Dr.\n    Mario Lopes SOARES 70%, Basilio HORTA 14%, Carlos CARVALHAS 13%, Carlos\n    MARQUES 3%\n  Assembly of the Republic:\n    last held 6 October 1991 (next to be held NA October 1995); results - PSD\n    50.4%, PS 29.3%, CDU 8.8%, Center Democrats 4.4%, National Solidarity Party\n    1.7%, PRD 0.6%, other 4.8%; seats - (230 total) PSD 135, PS 72, CDU 17,\n    Center Democrats 5, National Solidarity Party 1\nCommunists:\n    Portuguese Communist Party claims membership of 200,753 (December 1983)\n\n:Portugal Government\n\nMember of:\n    AfDB, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, EC, ECE, ECLAC, EIB, FAO, GATT,\n    IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LAIA (observer), LORCS, NAM (guest),\n    NATO, NEA, OAS (observer), OECD, PCA, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL,\n    WEU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Joao Eduardo M. PEREIRA BASTOS; Chancery at 2125 Kalorama Road\n    NW, Washington, DC 20008; telephone (202) 328-8610; there are Portuguese\n    Consulates General in Boston, New York, and San Francisco, and Consulates in\n    Los Angeles, Newark (New Jersey), New Bedford (Massachusetts), and\n    Providence (Rhode Island)\n  US:\n    Ambassador Everett E. BRIGGS; Embassy at Avenida das Forcas Armadas, 1600\n    Lisbon (mailing address is PSC 83, APO AE 09726); telephone [351] (1)\n    726-6600 or 6659, 8670, 8880; FAX [351] (1) 726-9109; there is a US\n    Consulate in Oporto and Ponta Delgada (Azores)\nFlag:\n    two vertical bands of green (hoist side, two-fifths) and red (three-fifths)\n    with the Portuguese coat of arms centered on the dividing line\n\n:Portugal Economy\n\nOverview:\n    Although Portugal has experienced strong growth since joining the EC in 1986\n    - at least 4% each year through 1990 - it remains one of the poorest\n    members. To prepare for the European single market, the government is\n    restructuring and modernizing the economy and in 1989 embarked on a major\n    privatization program. The global slowdown and tight monetary policies to\n    counter inflation caused growth to slow in 1991, but it is likely to recover\n    in 1992.\nGDP:\n    purchasing power equivalent - $87.3 billion, per capita $8,400; real growth\n    rate 2.7% (1991 est.)\nInflation rate (consumer prices):\n    12.0% (1991 est.)\nUnemployment rate:\n    4.0% (1991 est.)\nBudget:\n    revenues $27.0 billion; expenditures $33.9 billion, including capital\n    expenditures of $6.7 billion (1991 est.)\nExports:\n    $16.4 billion (f.o.b., 1990)\n  commodities:\n    cotton textiles, cork and paper products, canned fish, wine, timber and\n    timber products, resin, machinery, appliances\n  partners:\n    EC 74%, other developed countries 13.2%, US 4.8%\nImports:\n    $25.1 billion (c.i.f., 1990)\n  commodities:\n    machinery and transport equipment, agricultural products, chemicals,\n    petroleum, textiles\n  partners:\n    EC 69.1%, other developed countries 11.4% less developed countries 15.1%, US\n    3.9%\nExternal debt:\n    $15.0 billion (1991 est.)\nIndustrial production:\n    growth rate 9.1% (1990); accounts for 40% of GDP\nElectricity:\n    6,729,000 kW capacity; 16,000 million kWh produced, 1,530 kWh per capita\n    (1991)\nIndustries:\n    textiles and footwear; wood pulp, paper, and cork; metalworking; oil\n    refining; chemicals; fish canning; wine; tourism\nAgriculture:\n    accounts for 6.1% of GDP and about 20% of labor force; small, inefficient\n    farms; imports more than half of food needs; major crops - grain, potatoes,\n    olives, grapes; livestock sector - sheep, cattle, goats, poultry, meat,\n    dairy products\nIllicit drugs:\n    increasingly import gateway country for Latin American cocaine entering the\n    European market\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.8 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.2 billion\nCurrency:\n    Portuguese escudo (plural - escudos); 1 Portuguese escudo (Esc) = 100\n    centavos\n\n:Portugal Economy\n\nExchange rates:\n    Portuguese escudos (Esc) per US$1 - 143.09 (March 1992), 144.48 (1991),\n    142.55 (1990), 157.46 (1989), 143.95 (1988), 140.88 (1987)\nFiscal year:\n    calendar year\n\n:Portugal Communications\n\nRailroads:\n    3,613 km total; state-owned Portuguese Railroad Co. (CP) operates 2,858 km\n    1.665-meter gauge (434 km electrified and 426 km double track), 755 km\n    1.000-meter gauge; 12 km (1.435-meter gauge) electrified, double track,\n    privately owned\nHighways:\n    73,661 km total; 61,599 km surfaced (bituminous, gravel, and crushed stone),\n    including 140 km of limited-access divided highway; 7,962 km improved earth;\n    4,100 km unimproved earth (motorable tracks)\nInland waterways:\n    820 km navigable; relatively unimportant to national economy, used by\n    shallow-draft craft limited to 300-metric-ton cargo capacity\nPipelines:\n    crude oil 11 km; petroleum products 58 km\nPorts:\n    Leixoes, Lisbon, Porto, Ponta Delgada (Azores), Velas (Azores), Setubal,\n    Sines\nMerchant marine:\n    53 ships (1,000 GRT or over) totaling 738,774 GRT/1,300,787 DWT; includes 1\n    short-sea passenger, 20 cargo, 3 refrigerated cargo, 3 container, 1\n    roll-on/roll-off cargo, 13 petroleum tanker, 2 chemical tanker, 8 bulk, 2\n    vehicle carrier; note - Portugal has created a captive register on Madeira\n    (MAR) for Portuguese-owned ships that will have the taxation and crewing\n    benefits of a flag of convenience; although only one ship currently is known\n    to fly the Portuguese flag on the MAR register, it is likely that a majority\n    of Portuguese flag ships will transfer to this subregister in a few years\nCivil air:\n    43 major transport aircraft\nAirports:\n    65 total, 62 usable; 36 with permanent-surface runways; 1 with runways over\n    3,659 m; 12 with runways 2,440-3,659 m; 8 with runways 1,220-2,439 m\nTelecommunications:\n    generally adequate integrated network of coaxial cables, open wire and radio\n    relay; 2,690,000 telephones; broadcast stations - 57 AM, 66 (22 repeaters)\n    FM, 66 (23 repeaters) TV; 6 submarine cables; 3 INTELSAT earth stations (2\n    Atlantic Ocean, 1 Indian Ocean), EUTELSAT, domestic satellite systems\n    (mainland and Azores); tropospheric link to Azores\n\n:Portugal Defense Forces\n\nBranches:\n    Army, Navy (including Marines), Air Force, National Republican Guard, Fiscal\n    Guard, Public Security Police\nManpower availability:\n    males 15-49, 2,666,450; 2,166,341 fit for military service; 88,826 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $1.7 billion, 2.8% of GDP (1991)\n\n:Puerto Rico Geography\n\nTotal area:\n    9,104 km2\nLand area:\n    8,959 km2\nComparative area:\n    slightly less than three times the size of Rhode Island\nLand boundaries:\n    none\nCoastline:\n    501 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical marine, mild, little seasonal temperature variation\nTerrain:\n    mostly mountains with coastal plain belt in north; mountains precipitous to\n    sea on west coast\nNatural resources:\n    some copper and nickel; potential for onshore and offshore crude oil\nLand use:\n    arable land 8%; permanent crops 9%; meadows and pastures 41%; forest and\n    woodland 20%; other 22%\nEnvironment:\n    many small rivers and high central mountains ensure land is well watered;\n    south coast relatively dry; fertile coastal plain belt in north\nNote:\n    important location between the Dominican Republic and the Virgin Islands\n    group along the Mona Passage - a key shipping lane to the Panama Canal; San\n    Juan is one of the biggest and best natural harbors in the Caribbean\n\n:Puerto Rico People\n\nPopulation:\n    3,776,654 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    14 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 78 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Puerto Rican(s); adjective - Puerto Rican\nEthnic divisions:\n    almost entirely Hispanic\nReligions:\n    Roman Catholic 85%, Protestant denominations and other 15%\nLanguages:\n    Spanish (official); English is widely understood\nLiteracy:\n    89% (male 90%, female 88%) age 15 and over can read and write (1980)\nLabor force:\n    1,068,000; government 28%, manufacturing 15%, trade 14%, agriculture 3%,\n    other 40% (1990)\nOrganized labor:\n    115,000 members in 4 unions; the largest is the General Confederation of\n    Puerto Rican Workers with 35,000 members (1983)\n\n:Puerto Rico Government\n\nLong-form name:\n    Commonwealth of Puerto Rico\nType:\n    commonwealth associated with the US\nCapital:\n    San Juan\nAdministrative divisions:\n    none (commonwealth associated with the US)\nIndependence:\n    none (commonwealth associated with the US)\nConstitution:\n    ratified 3 March 1952; approved by US Congress 3 July 1952; effective 25\n    July 1952\nLegal system:\n    based on Spanish civil code\nNational holiday:\n    Constitution Day, 25 July (1952)\nExecutive branch:\n    US president, US vice president, governor\nLegislative branch:\n    bicameral Legislative Assembly consists of an upper house or Senate and a\n    lower house or House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President George BUSH (since 20 January 1989); Vice President Dan QUAYLE\n    (since 20 January 1989)\n  Head of Government:\n    Governor Rafael HERNANDEZ Colon (since 2 January 1989)\nPolitical parties and leaders:\n    National Republican Party of Puerto Rico, Freddy VALENTIN; Popular\n    Democratic Party (PPD), Rafael HERNANDEZ Colon; New Progressive Party (PNP),\n    Carlos ROMERO Barcelo; Puerto Rican Socialist Party (PSP), Juan MARI Bras\n    and Carlos GALLISA; Puerto Rican Independence Party (PIP), Ruben BERRIOS\n    Martinez; Puerto Rican Communist Party (PCP), leader(s) unknown; Puerto\n    Rican Renewal Party (PRP, breakaway group from PNP), leader (vacant); Puerto\n    Rico Democratic Party, Richard MACHADO\nSuffrage:\n    universal at age 18; citizens of Puerto Rico are also US citizens, but do\n    not vote in US presidential elections\nElections:\n  Governor:\n    last held 8 November 1988 (next to be held 3 November 1992); results -\n    Rafael HERNANDEZ Colon (PPD) 48.7%, Baltasar CORRADA Del Rio (PNP) 45.8%,\n    Ruben BERRIOS Martinez (PIP) 5.5%\n  Senate:\n    last held 8 November 1988 (next to be held 3 November 1992); results -\n    percent of vote by party NA; seats - (27 total) PPD 18, PNP 8, PIP 1\n  US House of Representatives:\n    last held 8 November 1988 (next to be held 3 November 1992); results -\n    percent of vote by party NA; seats - (1 total) seats by party NA; note -\n    Puerto Rico elects one nonvoting representative to the US House of\n    Representatives, Jaime B. FUSTER\n  House of Representatives:\n    last held 8 November 1988 (next to be held 3 November 1992); results -\n    percent of vote by party NA; seats - (53 total) PPD 36, PNP 15, PIP 2\n\n:Puerto Rico Government\n\nOther political or pressure groups:\n    all have engaged in terrorist activities - Armed Forces for National\n    Liberation (FALN), Volunteers of the Puerto Rican Revolution, Boricua\n    Popular Army (also known as the Macheteros), Armed Forces of Popular\n    Resistance\nMember of:\n    CARICOM (observer), ECLAC, ICFTU, IOC, WCL, WFTU, WTO (associate)\nDiplomatic representation:\n    none (commonwealth associated with the US)\nFlag:\n    five equal horizontal bands of red (top and bottom) alternating with white;\n    a blue isosceles triangle based on the hoist side bears a large white\n    five-pointed star in the center; design based on the US flag\n\n:Puerto Rico Economy\n\nOverview:\n    Puerto Rico has one of the most dynamic economies in the Caribbean region.\n    Industry has surpassed agriculture as the primary sector of economic\n    activity and income. Encouraged by duty free access to the US and by tax\n    incentives, US firms have invested heavily in Puerto Rico since the 1950s.\n    Important new industries include pharmaceuticals, electronics, textiles,\n    petrochemicals, and processed foods. Sugar production has lost out to dairy\n    production and other livestock products as the main source of income in the\n    agricultural sector. Tourism has traditionally been an important source of\n    income for the island. The economy has largely recovered from the\n    disruptions caused by Hurricane Hugo in September 1989. The tourism\n    infrastructure has been especially hard hit.\nGNP:\n    purchasing power equivalent - $21.6 billion, per capita $6,600; real growth\n    rate 2.2% (FY90)\nInflation rate (consumer prices):\n    1.3% (October 1990-91)\nUnemployment rate:\n    15.5% (October 1991)\nBudget:\n    revenues $5.8 billion; expenditures $5.8 billion, including capital\n    expenditures of $258 million (FY89)\nExports:\n    NA\n  commodities:\n    pharmaceuticals, electronics, apparel, canned tuna, rum, beverage\n    concentrates, medical equipment, instruments\n  partners:\n    US 87% (FY90)\nImports:\n    NA\n  commodities:\n    chemicals, clothing, food, fish, petroleum products\n  partners:\n    US 68% (FY90)\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 3.8% (FY90)\nElectricity:\n    4,149,000 kW capacity; 14,844 million kWh produced, 4,510 kWh per capita\n    (1990)\nIndustries:\n    manufacturing of pharmaceuticals, electronics, apparel, food products,\n    instruments; tourism\nAgriculture:\n    accounts for 3% of labor force; crops - sugarcane, coffee, pineapples,\n    plantains, bananas; livestock - cattle, chickens; imports a large share of\n    food needs\nEconomic aid:\n    none\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 July - 30 June\n\n:Puerto Rico Communications\n\nRailroads:\n    96 km rural narrow-gauge system for hauling sugarcane; no passenger\n    railroads\nHighways:\n    13,762 km paved (1982)\nPorts:\n    San Juan, Ponce, Mayaguez, Arecibo\nAirports:\n    30 total; 24 usable; 19 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    900,000 or 99% of total households have TV; 1,067,787 telephones (1988);\n    broadcast stations - 50 AM, 63 FM, 9 TV (1990)\n\n:Puerto Rico Defense Forces\n\nBranches:\n    paramilitary National Guard, Police Force\nManpower availability:\n    males 15-49, 830,133; NA fit for military service\nNote:\n    defense is the responsibility of the US\n\n:Qatar Geography\n\nTotal area:\n    11,000 km2\nLand area:\n    11,000 km2\nComparative area:\n    slightly smaller than Connecticut\nLand boundaries:\n    60 km total; Saudi Arabia 40 km, UAE 20 km\nCoastline:\n    563 km\nMaritime claims:\n    *** No entry for this item ***\n  Continental shelf:\n    not specific\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    location and status of Qatar's southern boundaries with Saudi Arabia and UAE\n    are unresolved; territorial dispute with Bahrain over the Hawar Islands;\n    maritime boundary with Bahrain\nClimate:\n    desert; hot, dry; humid and sultry in summer\nTerrain:\n    mostly flat and barren desert covered with loose sand and gravel\nNatural resources:\n    crude oil, natural gas, fish\nLand use:\n    arable land NEGL%; permanent crops 0%; meadows and pastures 5%; forest and\n    woodland 0%; other 95%\nEnvironment:\n    haze, duststorms, sandstorms common; limited freshwater resources mean\n    increasing dependence on large-scale desalination facilities\nNote:\n    strategic location in central Persian Gulf near major crude oil sources\n\n:Qatar People\n\nPopulation:\n    484,387 (July 1992), growth rate 3.2% (1992)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    15 migrants/1,000 population (1992)\nInfant mortality rate:\n    24 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 74 years female (1992)\nTotal fertility rate:\n    4.0 children born/woman (1992)\nNationality:\n    noun - Qatari(s); adjective - Qatari\nEthnic divisions:\n    Arab 40%, Pakistani 18%, Indian 18%, Iranian 10%, other 14%\nReligions:\n    Muslim 95%\nLanguages:\n    Arabic (official); English is commonly used as second language\nLiteracy:\n    76% (male 77%, female 72%) age 15 and over can read and write (1986)\nLabor force:\n    104,000; 85% non-Qatari in private sector (1983)\nOrganized labor:\n    trade unions are illegal\n\n:Qatar Government\n\nLong-form name:\n    State of Qatar\nType:\n    traditional monarchy\nCapital:\n    Doha\nAdministrative divisions:\n    there are no first-order administrative divisions as defined by the US\n    Government, but there are 9 municipalities (baladiyat, singular -\n    baladiyah); Ad Dawhah, Al Ghuwayriyah, Al Jumayliyah, Al Khawr, Al Rayyan,\n    Al Wakrah, Ash Shamal, Jarayan al Batnah, Umm Salal\nIndependence:\n    3 September 1971 (from UK)\nConstitution:\n    provisional constitution enacted 2 April 1970\nLegal system:\n    discretionary system of law controlled by the amir, although civil codes are\n    being implemented; Islamic law is significant in personal matters\nNational holiday:\n    Independence Day, 3 September (1971)\nExecutive branch:\n    amir, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral Advisory Council (Majlis al-Shura)\nJudicial branch:\n    Court of Appeal\nLeaders:\n  Chief of State and Head of Government:\n    Amir and Prime Minister KHALIFA bin Hamad Al Thani (since 22 February 1972);\n    Heir Apparent HAMAD bin Khalifa Al Thani (appointed 31 May 1977; son of\n    Amir)\nPolitical parties and leaders:\n    none\nSuffrage:\n    none\nElections:\n  Advisory Council:\n    constitution calls for elections for part of this consultative body, but no\n    elections have been held; seats - (30 total)\nMember of:\n    ABEDA, AFESD, AL, AMF, ESCWA, FAO, G-77, GCC, IAEA, IBRD, ICAO, IDB, IFAD,\n    ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAPEC,\n    OIC, OPEC, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Hamad `Abd al-`Aziz AL-KAWARI, Chancery at Suite 1180, 600 New\n    Hampshire Avenue NW, Washington, DC 20037; telephone (202) 338-0111\n  US:\n    Ambassador Kenton W. KEITH; Embassy at 149 Ali Bin Ahmed St., Farig Bin\n    Omran (opposite the television station), Doha (mailing address is P. O. Box\n    2399, Doha); telephone (0974) 864701 through 864703; FAX (0974) 861669\nFlag:\n    maroon with a broad white serrated band (nine white points) on the hoist\n    side\n\n:Qatar Economy\n\nOverview:\n    Oil is the backbone of the economy and accounts for more than 85% of export\n    earnings and roughly 75% of government revenues. Proved oil reserves of 3.3\n    billion barrels should ensure continued output at current levels for about\n    25 years. Oil has given Qatar a per capita GDP of about $15,000, comparable\n    to the leading industrial countries. Production and export of natural gas is\n    becoming increasingly important.\nGDP:\n    exchange rate conversion - $7.4 billion, per capita $15,000; real growth\n    rate NA (1990)\nInflation rate (consumer prices):\n    4.9% (1988 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $2.1 billion; expenditures $3.2 billion, including capital\n    expenditures of $490 million (FY91 est.)\nExports:\n    $3.2 billion (f.o.b., 1990 est.)\n  commodities:\n    petroleum products 85%, steel, fertilizers\n  partners:\n    Japan 61%, Brazil 9%, UAE 3%, Singapore 3%\nImports:\n    $1.5 billion (f.o.b., 1990 est.)\n  commodities:\n    foodstuffs, beverages, animal and vegetable oils, chemicals, machinery and\n    equipment\n  partners:\n    UK 13%, Japan 11%, US 8%, Italy 8%\nExternal debt:\n    $1.1 billion (December 1989 est.)\nIndustrial production:\n    growth rate 0.6% (1987); accounts for 64% of GDP, including oil\nElectricity:\n    1,520,000 kW capacity; 4,200 million kWh produced, 8,080 kWh per capita\n    (1991)\nIndustries:\n    crude oil production and refining, fertilizers, petrochemicals, steel,\n    cement\nAgriculture:\n    farming and grazing on small scale, less than 2% of GDP; commercial fishing\n    increasing in importance; most food imported\nEconomic aid:\n    donor - pledged $2.7 billion in ODA to less developed countries (1979-88)\nCurrency:\n    Qatari riyal (plural - riyals); 1 Qatari riyal (QR) = 100 dirhams\nExchange rates:\n    Qatari riyals (QR) per US$1 - 3.6400 riyals (fixed rate)\nFiscal year:\n    1 April - 31 March\n\n:Qatar Communications\n\nHighways:\n    1,500 km total; 1,000 km paved, 500 km gravel or natural surface (est.)\nPipelines:\n    crude oil 235 km, natural gas 400 km\nPorts:\n    Doha, Umm Sa'id, Halul Island\nMerchant marine:\n    23 ships (1,000 GRT or over) totaling 473,042 GRT/716,039 DWT; includes 14\n    cargo, 5 container, 3 petroleum tanker, 1 refrigerated cargo\nCivil air:\n    3 major transport aircraft\nAirports:\n    4 total, 4 usable; 1 with permanent-surface runways; 1 with runways over\n    3,659 m; none with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    modern system centered in Doha; 110,000 telephones; tropospheric scatter to\n    Bahrain; radio relay to Saudi Arabia and UAE; submarine cable to Bahrain and\n    UAE; broadcast stations - 2 AM, 3 FM, 3 TV; satellite earth stations - 1\n    Atlantic Ocean INTELSAT, 1 Indian Ocean INTELSAT, 1 ARABSAT\n\n:Qatar Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Public Security\nManpower availability:\n    males 15-49, 211,812; 112,250 fit for military service; 3,414 reach military\n    age (18) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA%, of GDP\n\n:Reunion Geography\n\nTotal area:\n    2,510 km2\nLand area:\n    2,500 km2\nComparative area:\n    slightly smaller than Rhode Island\nLand boundaries:\n    none\nCoastline:\n    201 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, but moderates with elevation; cool and dry from May to November,\n    hot and rainy from November to April\nTerrain:\n    mostly rugged and mountainous; fertile lowlands along coast\nNatural resources:\n    fish, arable land\nLand use:\n    arable land 20%; permanent crops 2%; meadows and pastures 4%; forest and\n    woodland 35%; other 39%; includes irrigated 2%\nEnvironment:\n    periodic devastating cyclones\nNote:\n    located 750 km east of Madagascar in the Indian Ocean\n\n:Reunion People\n\nPopulation:\n    626,414 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 77 years female (1992)\nTotal fertility rate:\n    2.8 children born/woman (1992)\nNationality:\n    noun - Reunionese (singular and plural); adjective - Reunionese\nEthnic divisions:\n    most of the population is of intermixed French, African, Malagasy, Chinese,\n    Pakistani, and Indian ancestry\nReligions:\n    Roman Catholic 94%\nLanguages:\n    French (official); Creole widely used\nLiteracy:\n    69% (male 67%, female 74%) age 15 and over can read and write (1982)\nLabor force:\n    NA; agriculture 30%, industry 21%, services 49% (1981); 63% of population of\n    working age (1983)\nOrganized labor:\n    General Confederation of Workers of Reunion (CGTR)\n\n:Reunion Government\n\nLong-form name:\n    Department of Reunion\nType:\n    overseas department of France\nCapital:\n    Saint-Denis\nAdministrative divisions:\n    none (overseas department of France)\nIndependence:\n    none (overseas department of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French law\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    French president, commissioner of the Republic\nLegislative branch:\n    General Council, Regional Council\nJudicial branch:\n    Court of Appeals (Cour d'Appel)\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Commissioner of the Republic Jacques DEWATRE (since July 1991)\nPolitical parties and leaders:\n    Rally for the Republic (RPR), Francois MAS; Union for French Democracy\n    (UDF), Gilbert GERARD; Communist Party of Reunion (PCR), Paul VERGES;\n    France-Reunion Future (FRA), Andre THIEN AH KOON; Socialist Party (PS),\n    Jean-Claude FRUTEAU; Social Democrats (CDS); other small parties\nSuffrage:\n    universal at age 18\nElections:\n  General Council:\n    last held September/October 1988 (next to be held NA 1994); results -\n    percent of vote by party NA; seats - (44 total) PCR 9, PS 4, UDF 6, other\n    left-wing 2, RPR 4, right-wing 19\n  Regional Council:\n    last held 16 March 1986 (next to be held NA March 1992); results - RPR/UDF\n    36.8%, PCR 28.2%, FRA and other right wing 17.3%, PS 14.1%, other 3.6%;\n    seats - (45 total) RPR/UDF 18, PCR 13, FRA and other right wing 8, PS 6\n  French Senate:\n    last held 24 September 1989 (next to be held NA September 1992); results -\n    percent of vote by party NA; seats - (3 total) RPR-UDF 1, PS 1, independent\n    1\n  French National Assembly:\n    last held 5 and 12 June 1988 (next to be held NA June 1993); results -\n    percent of vote by party NA; seats - (5 total) PCR 2, RPR 1, UDF-CDS 1, FRA\n    1; note - Reunion elects 3 members to the French Senate and 5 members to the\n    French National Assembly who are voting members\nCommunists:\n    Communist party small but has support among sugarcane cutters, the minuscule\n    Popular Movement for the Liberation of Reunion (MPLR), and in the district\n    of Le Port\nMember of:\n    FZ, WFTU\n\n:Reunion Government\n\nDiplomatic representation:\n    as an overseas department of France, Reunionese interests are represented in\n    the US by France\nFlag:\n    the flag of France is used\n\n:Reunion Economy\n\nOverview:\n    The economy has traditionally been based on agriculture. Sugarcane has been\n    the primary crop for more than a century, and in some years it accounts for\n    85% of exports. The government has been pushing the development of a tourist\n    industry to relieve high unemployment, which recently amounted to one-third\n    of the labor force. The gap in Reunion between the well-off and the poor is\n    extraordinary and accounts for the persistent social tensions. The white and\n    Indian communities are substantially better off than other segments of the\n    population, often approaching European standards, whereas indigenous groups\n    suffer the poverty and unemployment typical of the poorer nations of the\n    African continent. The outbreak of severe rioting in February 1991\n    illustrates the seriousness of socioeconomic tensions. The economic\n    well-being of Reunion depends heavily on continued financial assistance from\n    France.\nGDP:\n    exchange rate conversion - $3.37 billion, per capita $6,000 (1987 est.);\n    real growth rate 9% (1987 est.)\nInflation rate (consumer prices):\n    1.3% (1988)\nUnemployment rate:\n    35% (February 1991)\nBudget:\n    revenues $358 million; expenditures $914 million, including capital\n    expenditures of $NA (1986)\nExports:\n    $166 million (f.o.b., 1988)\n  commodities:\n    sugar 75%, rum and molasses 4%, perfume essences 4%, lobster 3%, vanilla and\n    tea 1%\n  partners:\n    France, Mauritius, Bahrain, South Africa, Italy\nImports:\n    $1.7 billion (c.i.f., 1988)\n  commodities:\n    manufactured goods, food, beverages, tobacco, machinery and transportation\n    equipment, raw materials, and petroleum products\n  partners:\n    France, Mauritius, Bahrain, South Africa, Italy\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%; about 25% of GDP\nElectricity:\n    245,000 kW capacity; 546 million kWh produced, 965 kWh per capita (1989)\nIndustries:\n    sugar, rum, cigarettes, several small shops producing handicraft items\nAgriculture:\n    accounts for 30% of labor force; dominant sector of economy; cash crops -\n    sugarcane, vanilla, tobacco; food crops - tropical fruits, vegetables, corn;\n    imports large share of food needs\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $14.8 billion\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.6397 (March 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\n\n:Reunion Economy\n\nFiscal year:\n    calendar year\n\n:Reunion Communications\n\nHighways:\n    2,800 km total; 2,200 km paved, 600 km gravel, crushed stone, or stabilized\n    earth\nPorts:\n    Pointe des Galets\nCivil air:\n    3 major transport aircraft\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runway 2,440-3,659 m; 1 with runway 1,220-2,439 m\nTelecommunications:\n    adequate system; modern open-wire and microwave network; principal center\n    Saint-Denis; radiocommunication to Comoros, France, Madagascar; new\n    microwave route to Mauritius; 85,900 telephones; broadcast stations - 3 AM,\n    13 FM, 1 (18 repeaters) TV; 1 Indian Ocean INTELSAT earth station\n\n:Reunion Defense Forces\n\nBranches:\n    French Forces (including Army, Navy, Air Force, Gendarmerie)\nManpower availability:\n    males 15-49, 164,974; 85,370 fit for military service; 6,083 reach military\n    age (18) annually\nNote:\n    defense is the responsibility of France\n\n:Romania Geography\n\nTotal area:\n    237,500 km2\nLand area:\n    230,340 km2\nComparative area:\n    slightly smaller than Oregon\nLand boundaries:\n    2,508 km total; Bulgaria 608 km, Hungary 443 km, Moldova 450 km, Serbia and\n    Montenegro 476 km, Ukraine (north) 362 km, Ukraine (south) 169 km\nCoastline:\n    225 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate; cold, cloudy winters with frequent snow and fog; sunny summers\n    with frequent showers and thunderstorms\nTerrain:\n    central Transylvanian Basin is separated from the plain of Moldavia on the\n    east by the Carpathian Mountains and separated from the Walachian Plain on\n    the south by the Transylvanian Alps\nNatural resources:\n    crude oil (reserves being exhausted), timber, natural gas, coal, iron ore,\n    salt\nLand use:\n    arable land 43%; permanent crops 3%; meadows and pastures 19%; forest and\n    woodland 28%; other 7%; includes irrigated 11%\nEnvironment:\n    frequent earthquakes most severe in south and southwest; geologic structure\n    and climate promote landslides; air pollution in south\nNote:\n    controls most easily traversable land route between the Balkans, Moldova,\n    and the Ukraine\n\n:Romania People\n\nPopulation:\n    23,169,914 (July 1992), growth rate 0.0% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 74 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Romanian(s); adjective - Romanian\nEthnic divisions:\n    Romanian 89.1%, Hungarian 8.9%, German 0.4%, Ukrainian, Serb, Croat,\n    Russian, Turk, and Gypsy 1.6%\nReligions:\n    Romanian Orthodox 70%, Roman Catholic 6%, Greek Catholic (Uniate) 3%,\n    Protestant 6%, unaffiliated 15%\nLanguages:\n    Romanian, Hungarian, German\nLiteracy:\n    96% (male NA%, female NA%) age 15 and over can read and write (1970 est.)\nLabor force:\n    10,945,700; industry 38%, agriculture 28%, other 34% (1989)\nOrganized labor:\n    until December 1989, a single trade union system organized by the General\n    Confederation of Romanian Trade Unions (UGSR) under control of the Communist\n    Party; since CEAUSESCU'S overthrow, newly created trade and professional\n    trade unions are joining umbrella organizations, including the Organization\n    of Free Trade Unions, Fratia (Brotherhood), and the Alfa Cartel; many other\n    trade unions have been formed\n\n:Romania Government\n\nLong-form name:\n    none\nType:\n    republic\nCapital:\n    Bucharest\nAdministrative divisions:\n    40 counties (judete, singular - judet) and 1 municipality* (municipiu);\n    Alba, Arad, Arges, Bacau, Bihor, Bistrita-Nasaud, Botosani, Braila, Brasov,\n    Bucuresti*, Buzau, Calarasi, Caras-Severin, Cluj, Constanta, Covasna,\n    Dimbovita, Dolj, Galati, Gorj, Giurgiu, Harghita, Hunedoara, Ialomita, Iasi,\n    Maramures, Mehedinti, Mures, Neamt, Olt, Prahova, Salaj, Satu Mare, Sibiu,\n    Suceava, Teleorman, Timis, Tulcea, Vaslui, Vilcea, Vrancea\nIndependence:\n    1881 (from Turkey); republic proclaimed 30 December 1947\nConstitution:\n    8 December 1991\nLegal system:\n    former mixture of civil law system and Communist legal theory that\n    increasingly reflected Romanian traditions is being revised\nNational holiday:\n    National Day of Romania, 1 December (1990)\nExecutive branch:\n    *** No entry for this item ***\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate (Senat) and a\n    lower house or House of Deputies (Adunarea Deputatilor)\nJudicial branch:\n    Supreme Court of Justice\nLeaders:\n  Chief of State:\n    President Ion ILIESCU (since 20 June 1990, previously President of\n    Provisional Council of National Unity since 23 December 1989)\n  Head of Government:\n    Prime Minister Teodor STOLOJAN (since 2 October 1991)\nPolitical parties and leaders:\n    National Salvation Front (FSN), Petre ROMAN; Democratuc National Salvation\n    Front (DNSF), Olivia GHERMAN; Magyar Democratic Union (UDMR), Geza DOMOKOS;\n    National Liberal Party (PNL), Radu CAMPEANU; National Peasants' Christian\n    and Democratic Party (PNTCD), Corneliu COPOSU; Ecology Movement (MER), Toma\n    Gheorghe MAIORESCU; Romanian National Unity Party (PUNR), Radu CEONTEA;\n    there are now more than 100 other parties; note - although the Communist\n    Party has ceased to exist, small proto-Communist parties, notably the\n    Socialist Labor Party, have been formed\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 20 May 1990 (next to be held NA 1992); results - Ion ILIESCU 85%,\n    Radu CAMPEANU 10.5%, Ion RATIU 3.8%\n  Senate:\n    last held 20 May 1990 (next to be held NA 1992); results - FSN 67%, other\n    33%; seats - (118 total) FSN 92, UDMR 12, PNL 9, PUNR 2, PNTCD 1, MER 1,\n    other 1\n  House of Deputies:\n    last held 20 May 1990 (next to be held NA 1992); results - FSN 66%, UDMR 7%,\n    PNL 6%, MER 2%, PNTCD 2%, PUNR 2%, other 15%; seats - (387 total) FSN 263,\n    UDMR 29, PNL 29, PNTCD 12, MER 12, PUNR 9, other 33\n\n:Romania Government\n\nMember of:\n    BIS, CCC, CSCE, ECE, FAO, G-9, G-77, GATT, IAEA, IBEC, IBRD, ICAO, IFAD,\n    IFC, IIB, ILO, IMF, IMO, INTERPOL, IOC, ITU, LORCS, NAM (guest), PCA, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Aurel MUNTEANU; Chancery at 1607 23rd Street NW, Washington, DC\n    20008; telephone (202) 232-4747\n  US:\n    Ambassador John R. DAVIS; Embassy at Strada Tudor Arghezi 7-9, Bucharest\n    (mailing address is APO AE 09213-5260); telephone [40] (0) 10-40-40; FAX\n    [40] (0) 12-03-95\nFlag:\n    three equal vertical bands of blue (hoist side), yellow, and red; the\n    national coat of arms that used to be centered in the yellow band has been\n    removed; now similar to the flags of Andorra and Chad\n\n:Romania Economy\n\nOverview:\n    Industry, which accounts for about one-third of the labor force and\n    generates over half the GDP, suffers from an aging capital plant and\n    persistent shortages of energy. The year 1991 witnessed about a 17% drop in\n    industrial production because of energy and input shortages and labor\n    unrest. In recent years the agricultural sector has had to contend with\n    flooding, mismanagement, shortages of inputs, and disarray caused by the\n    dismantling of cooperatives. A shortage of fuel and equipment in 1991\n    contributed to a lackluster harvest, a problem compounded by corruption and\n    a poor distribution system. The new government is loosening the tight\n    central controls of CEAUSESCU'S command economy. It has instituted moderate\n    land reforms, with more than one-half of cropland now in private hands, and\n    it has liberalized private agricultural output. Also, the new regime is\n    permitting the establishment of private enterprises, largely in services,\n    handicrafts, and small-scale industry. A law providing for the privatization\n    of large state firms has been passed. Most of the large state firms have\n    been converted into joint-stock companies, but the selling of shares and\n    assets to private owners has been delayed. While the government has halted\n    the old policy of diverting food from domestic consumption to hard currency\n    export markets, supplies remain scarce in some areas. Furthermore, real\n    wages in Romania fell about 20% in 1991, contributing to the unrest which\n    forced the resignation of ROMAN in September. The new government continues\n    to impose price ceilings on key consumer items.\nGDP:\n    purchasing power equivalent - $71.9 billion, per capita $3,100; real growth\n    rate - 12% (1991 est.)\nInflation rate (consumer prices):\n    215% (1991 est.)\nUnemployment rate:\n    4% (1991 est.)\nBudget:\n    revenues $19 billion; expenditures $20 billion, including capital\n    expenditures of $2.1 billion (1991 est.)\nExports:\n    $4.0 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery and equipment 29.3%, fuels, minerals and metals 32.1%,\n    manufactured consumer goods 18.1%, agricultural materials and forestry\n    products 9.0%, other 11.5% (1989)\n  partners:\n    USSR 27%, Eastern Europe 23%, EC 15%, US 5%, China 4% (1987)\nImports:\n    $5.4 billion (f.o.b., 1991 est.)\n  commodities:\n    fuels, minerals, and metals 56.0%, machinery and equipment 25.5%,\n    agricultural and forestry products 8.6%, manufactured consumer goods 3.4%,\n    other 6.5% (1989)\n  partners:\n    Communist countries 60%, non-Communist countries 40% (1987)\nExternal debt:\n    $2 billion (1991)\nIndustrial production:\n    growth rate -17% (1991 est.)\nElectricity:\n    22,700,000 kW capacity; 64,200 million kWh produced, 2,760 kWh per capita\n    (1990)\nIndustries:\n    mining, timber, construction materials, metallurgy, chemicals, machine\n    building, food processing, petroleum\n\n:Romania Economy\n\nAgriculture:\n    accounts for 15% of GDP and 28% of labor force; major wheat and corn\n    producer; other products - sugar beets, sunflower seed, potatoes, milk,\n    eggs, meat, grapes\nIllicit drugs:\n    transshipment point for southwest Asian heroin transiting the Balkan route\nEconomic aid:\n    donor - $4.4 billion in bilateral aid to non-Communist less developed\n    countries (1956-89)\nCurrency:\n    leu (plural - lei); 1 leu (L) = 100 bani\nExchange rates:\n    lei (L) per US$1 - 198.00 (March 1992), 76.39 (1991), 22.432 (1990), 14.922\n    (1989), 14.277 (1988), 14.557 (1987)\nFiscal year:\n    calendar year\n\n:Romania Communications\n\nRailroads:\n    11,275 km total; 10,860 km 1.435-meter gauge, 370 km narrow gauge, 45 km\n    broad gauge; 3,411 km electrified, 3,060 km double track; government owned\n    (1987)\nHighways:\n    72,799 km total; 35,970 km paved; 27,729 km gravel, crushed stone, and other\n    stabilized surfaces; 9,100 km unsurfaced roads (1985)\nInland waterways:\n    1,724 km (1984)\nPipelines:\n    crude oil 2,800 km, petroleum products 1,429 km, natural gas 6,400 km\nPorts:\n    Constanta, Galati, Braila, Mangalia; inland ports are Giurgiu, Drobeta-Turnu\n    Severin, Orsova\nMerchant marine:\n    262 ships (1,000 GRT or over) totaling 3,320,373 GRT/5,207,580 DWT; includes\n    1 passenger-cargo, 174 cargo, 2 container, 1 rail-car carrier, 9\n    roll-on/roll-off cargo, 13 petroleum tanker, 60 bulk, 2 combination ore/oil\nCivil air:\n    59 major transport aircraft\nAirports:\n    165 total, 165 usable; 25 with permanent-surface runways; 15 with runways\n    2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    poor service; about 2.3 million telephone customers; 89% of phone network is\n    automatic; cable and open wire; trunk network is microwave; present phone\n    density is 9.85 per 100 residents; roughly 3,300 villages with no service\n    (February 1990); broadcast stations - 12 AM, 5 FM, 13 TV (1990); 1 satellite\n    ground station using INTELSAT\n\n:Romania Defense Forces\n\nBranches:\n    Army, Navy, Air and Air Defense Forces, Paramilitary Forces, Civil Defense\nManpower availability:\n    males 15-49, 5,799,837; 4,909,642 fit for military service; 184,913 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - 50 billion lei (unofficial), NA% of GDP (1991);\n    note - conversion of defense expenditures into US dollars using the current\n    exchange rate could produce misleading results\n\n:Russia Geography\n\nTotal area:\n    17,075,200 km2\nLand area:\n    16,995,800 km2\nComparative area:\n    slightly more than 1.8 times the size of the US\nLand boundaries:\n    20,139 km total; Azerbaijan 284 km, Belarus 959 km, China (southeast) 3,605\n    km, China (south) 40 km, Estonia 290 km, Finland 1,313 km, Georgia 723 km,\n    Kazakhstan 6,846 km, North Korea 19 km, Latvia 217 km, Lithuania\n    (Kaliningrad Oblast) 227 km, Mongolia 3,441 km, Norway 167 km, Poland\n    (Kaliningrad Oblast) 432 km, Ukraine 1,576 km\nCoastline:\n    37,653 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    200-meter depth or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Exclusive fishing zone:\n    NA nm\n  Territorial sea:\n    12 nm\nDisputes:\n    inherited disputes from former USSR including: sections of the boundary with\n    China, a section of the boundary with Tajikistan; boundary with Latvia,\n    Lithuania, and Estonia; Etorofu, Kunashiri, and Shikotan Islands and the\n    Habomai island group occupied by the Soviet Union in 1945, claimed by Japan;\n    maritime dispute with Norway over portion of the Barents Sea; has made no\n    territorial claim in Antarctica (but has reserved the right to do so) and\n    does not recognize the claims of any other nation\nClimate:\n    ranges from steppes in the south through humid continental in much of\n    European Russia; subarctic in Siberia to tundra climate in the polar north;\n    winters vary from cool along Black Sea coast to frigid in Siberia; summers\n    vary from warm in the steppes to cool along Arctic coast\nTerrain:\n    broad plain with low hills west of Urals; vast coniferous forest and tundra\n    in Siberia; uplands and mountains along southern border regions\nNatural resources:\n    wide natural resource base including major deposits of oil, natural gas,\n    coal, and many strategic minerals; timber; note - formidable obstacles of\n    climate, terrain, and distance hinder exploitation of natural resources\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    despite its size, only a small percentage of land is arable and much is too\n    far north; permafrost over much of Siberia is a major impediment to\n    development; catastrophic pollution of land, air, water, including both\n    inland waterways and sea coasts\nNote:\n    largest country in the world in terms of area but unfavorably located in\n    relation to major sea lanes of the world\n\n:Russia People\n\nPopulation:\n    149,527,479 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    15 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    31 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 74 years female (1992)\nTotal fertility rate:\n    2.1 children born/woman (1992)\nNationality:\n    noun - Russian(s); adjective - Russian\nEthnic divisions:\n    Estonian NA%, Latvian NA%, Lithuanian NA%, Russian NA%, other NA%\nReligions:\n    Russian Orthodox NA%, unknown NA%, none NA%, other NA%\nLanguages:\n    Estonian NA%, Latvian NA%, Lithuanian NA%, Russian NA%, other NA%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    78,682,000 (1989); industry and construction 43.0%, agriculture and forestry\n    13.0%, transport and communication 7.9%, trade and distribution 7.9%, other\n    28.2%\nOrganized labor:\n    NA\n\n:Russia Government\n\nLong-form name:\n    Russian Federation\nType:\n    federation\nCapital:\n    Moscow\nAdministrative divisions:\n    20 autonomous republics (avtomnykh respublik, singular - automnaya\n    respublika); Adygea (Maykop), Bashkortostan (Ufa), Buryatia (Ulan-Ude),\n    Checheno-Ingushetia (Groznyy), Chuvashia (Cheboksary), Dagestan\n    (Makhachkala), Gorno-Altay (Gorno-Altaysk), Kabardino-Balkaria (Nal`chik),\n    Kalmykia (Elista), Karachay-Cherkessia (Cherkessk), Karelia (Petrozavodsk),\n    Khakassia (Abakan), Komi (Syktyvkar), Mari El (Yoshkar-Ola), Mordvinia\n    (Saransk), North Ossetia (Vladikavkaz; formerly Ordzhonikidze), Tatarstan\n    (Kazan'), Tuva (Kyzyl), Udmurtia (Izhevsk), Yakutia (Yakutsk); 49 oblasts\n    (oblastey, singular - oblast'); Amur (Blagoveshchensk), Arkhangel'sk,\n    Astrakhan', Belgorod, Bryansk, Chelyabinsk, Chita, Irkutsk, Ivanovo,\n    Kaliningrad, Kaluga, Kamchata (Petropavlovsk-Kamchatskiy), Kemerovo, Kirov,\n    Kostroma, Kurgan, Kursk, Leningrad (St. Petersburg), Lipetsk, Magadan,\n    Moscow, Murmansk, Nizhegorod (Nizhniy Novgorod; formerly Gor'kiy), Novgorod,\n    Novosibirsk, Omsk, Orel, Orenburg, Penza, Perm', Pskov, Rostov, Ryazan',\n    Sakhalin (Yuzhno-Sakhalinsk), Samara (formerly Kuybyshev), Saratov,\n    Smolensk, Sverdlovsk (Yekaterinburg), Tambov, Tomsk, Tula, Tver' (formerly\n    Kalinin), Tyumen', Ul'yanovsk, Vladmir, Volgograd, Vologda, Voronezh,\n    Yaroslavl'; 6 krays (krayer, singular - kray); Altay (Barnaul), Khabarovsk,\n    Krasnodar, Krasnoyarsk, Primorskiy (Vladivostok), Stavropol; note - the\n    cities of Moscow and St. Petersburg have oblast status; an administrative\n    division has the same name as its administrative center (exceptions have the\n    administrative center name following in parentheses); it is possible that 4\n    more administrative divisions will be added\nIndependence:\n    24 August 1991, declared by Supreme Council (from Soviet Union; formerly\n    Russian Soviet Federative Socialist Republic); 1 December 1991 referendum on\n    independence passed\nConstitution:\n    a new constitution is in the process of being drafted\nLegal system:\n    based on civil law system; judicial review of legislative acts; does not\n    accept compulsory ICJ jurisdiction\nNational holiday:\n    NA\nExecutive branch:\n    president, vice president, Security Council, President's Administration,\n    Council of Ministers\nLegislative branch:\n    Congress of People's Deputies, Supreme Soviet\nJudicial branch:\n    Constitutional Court\nLeaders:\n  Chief of State and Head of Government:\n    *** No entry for this item ***\n    President Boris YEL'TSIN (since 12 June 1991), Vice President Aleksandr\n    RUTSKOY (since 12 June 1991), State Secretary Gennadiy BURBULIS (since July\n    1991); 1st Deputy Chairman of the Council of Ministers Yegor GAYDAR (since\n    March 1992), 2nd Deputy Chairman of the Council of Ministers Aleksandr\n    SHOKHIN (since 7 November 1991)\n\n:Russia Government\n\nPolitical parties and leaders:\n    Democratic Russia, A. Lev PONOMAREV and Gleb YAKUNIN, cochairmen; Democratic\n    Party of Russia, Nikolay TRAVKIN, chairman; People's Party of Free Russia,\n    Aleksandr RUTSKOY, chairman; Russian Movement for Democratic Reforms,\n    Gavriil POPOV, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 12 June 1991 (next to be held 1996); results - percent of vote by\n    party NA%\n  Congress of People's Deputies:\n    last held March 1990 (next to be held 1995); results - percent of vote by\n    party NA%; seats - (1,063 total) number of seats by party NA\n  Supreme Soviet:\n    last held May 1990 (next to be held 1995); results - percent of vote by\n    party NA%; seats - (252 total) number of seats by party NA\nCommunists:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CIS, CSCE, ESCAP, ECE, IAEA, IBRD, ICAO, ICFTU, IMF, INTERPOL, IMO,\n    INMARSAT, IOC, ISO, ITU, LORCS, NACC, NSG, PCA, UN, UNCTAD, UNESCO, UNTSO,\n    UPU, WFTU, WHO, WIPO, WMO, WTO, ZG\nDiplomatic representation:\n    Ambassador LUKIN; Chancery at 1125 16th Street NW, Washington, DC 20036;\n    telephone (202) 628-7551\n  US:\n    Ambassador Robert S. STRAUSS; Embassy at Ulitsa Chaykovskogo 19/21/23,\n    Moscow (mailing address is APO AE 09721); telephone [7] (095) 252-2450\n    through 59; there is a consulate at St. Petersburg (formerly Leningrad);\n    future consulates will be in Yekaterinburg and Vladivostok\nFlag:\n    tricolor; three equal bands of white (top), blue, red (bottom)\n\n:Russia Economy\n\nOverview:\n    Russia, one of the world's largest economies, possesses a wealth of natural\n    resources and a diverse industrial base. Within the now-dismantled USSR, it\n    had produced 60% of total output, with 55% of the total labor force and 60%\n    of the total capital stock. Russia depends on its world-class deposits of\n    oil and gas not only for its own needs but also for vital hard currency\n    earnings. Self-sufficient in coal and iron ore, it has a crude steel\n    production capacity of about 95 million tons, second only to Japan. Russia's\n    machine-building sector - 60% of the old USSR's - lags behind world\n    standards of efficiency and quality of product. Other major industrial\n    sectors - chemicals, construction materials, light industry, and food\n    processing - also suffer from quality problems, obsolescent capital\n    equipment, and pollution. Consumer goods have had lower priority, and the\n    product mix has not mirrored household preferences. Furthermore, the\n    transition to a more market-oriented economy has disrupted channels of\n    supply to factories and distribution outlets; substantial imports of foods\n    and medical supplies have helped maintain minimum standards of consumption.\n    Russia inherited 70% of the former USSR's defense production facilities and\n    is experiencing major social problems during conversion of many of these\n    plants to civilian production. Russia produces almost half of the old USSR's\n    farm products, but most warm-climate crops must be imported. Under the old\n    USSR, production of industrial and agricultural goods often was concentrated\n    in a single firm or a single republic. Today, producing units often have\n    lost their major customers and their major sources of supply, and the market\n    institutions and incentives for adjusting to the new political and economic\n    situations are only slowly emerging. Rank-and-file Russians will continue to\n    suffer major deprivations in 1992 and beyond before the country begins to\n    realize its great economic potential. The comprehensive economic reform\n    program enacted in January 1992 faces many economic and political hurdles\n    before it will lead to sustained economic growth.\nGDP:\n    purchasing power equivalent - $NA, per capita $NA; real growth rate - 9%\n    (1991)\nInflation rate (consumer prices):\n    89% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    NA\nExports:\n    $58.7 billion (f.o.b., 1991)\n  commodities:\n    petroleum and petroleum products, natural gas, wood and wood products, coal,\n    nonferrous metals, chemicals, and a wide variety of civilian and military\n    manufactures\n  partners:\n    Western Europe, Japan, Eastern Europe\nImports:\n    $43.5 billion (c.i.f., 1991)\n  commodities:\n    machinery and equipment, chemicals, consumer goods, grain, meat,\n    semifinished metal products\n  partners:\n    Western and Eastern Europe, Japan, Third World countries, Cuba\nExternal debt:\n    $40 billion (end of 1991 est.)\nIndustrial production:\n    -8% after adjustment for inflation due to shift to more expensive products,\n    -2% before this adjustment (1991)\n\n:Russia Economy\n\nElectricity:\n    42,500 MW capacity; 1,100 billion kWh produced, 7,430 kWh per capita (1991)\nIndustries:\n    complete range of mining and extractive industries producing coal, oil, gas,\n    chemicals, and metals; all forms of machine building from rolling mills to\n    high-performance aircraft and space vehicles; ship- building; road and rail\n    transportation equipment; communications equipment; agricultural machinery,\n    tractors, and construction equipment; electric power generating and\n    transmitting equipment; medical and scientific instruments; consumer\n    durables\nAgriculture:\n    grain, meat, milk, vegetables, fruits; because of its northern location\n    Russia does not grow citrus, cotton, tea, and other warm climate products\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    government has active eradication program; used as transshipment point for\n    illicit drugs to Western Europe\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $NA; Western (non-US) countries,\n    ODA and OOF bilateral commitments (1970-86), $NA; Communist countries\n    (1971-86), $NA million\nCurrency:\n    ruble (plural - rubles); 1 ruble (R) = 100 kopeks\nExchange rates:\n    150 rubles per US$1 (20 July 1992) but subject to wide fluctuations\nFiscal year:\n    calendar year\n\n:Russia Communications\n\nRailroads:\n    87,180 km all 1.520-meter broad gauge (includes NA km electrified); does not\n    include industrial lines (1990)\nHighways:\n    879,100 km total (1990); 652,500 km hard-surfaced, 226,600 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    crude oil and petroleum products 68,400 km, natural gas NA km\nPorts:\n    maritime - St. Petersburg (Leningrad), Kaliningrad, Murmansk, Arkhangel'sk,\n    Novorossiysk, Vladivostok, Nakhodka, Kholmsk, Korsakov, Magadan, Tiksi,\n    Tuapse, Vanino, Vostochnyy, Vyborg; inland - Astrakhan', Nizhniy Novgorod\n    (Gor'kiy), Kazan', Khabarovsk, Krasnoyarsk, Samara (Kuybyshev), Moscow,\n    Rostov, Volgograd\nMerchant marine:\n    842 ships (1,000 GRT or over) totaling 8,151,393 GRT/11,308,812 DWT;\n    includes 494 cargo, 39 container, 2 barge carrier, 3 roll-on/float-off, 69\n    roll-on/roll-off, 131 petroleum tanker, 53 bulk cargo, 9 chemical tanker, 2\n    specialized liquid carriers, 17 combination ore/oil, 23 passenger\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA total, NA usable; NA with permanent-surface runways; NA with runways over\n    3,659 m; NA with runways 2,440-3,659 m; NA with runways 1,220-2,439 m\nTelecommunications:\n    the telephone system is inadequate for a large industrial country,\n    consisting of about 36 million lines of which only about 3% are switched\n    automatically; as of 31 January 1990, 10.8 million applications for\n    telephones for household use could not be satisfied; telephone density is 11\n    per 100 persons; international connections are made via satellite, land\n    line, microwave, and outdated submarine cables, and are generally\n    unsatisfactory; the international gateway switch in Moscow handles\n    international traffic for the other former Soviet republics as well as for\n    Russia; broadcast stations - 1,050 AM/FM/SW (reach 98.6% of population), 310\n    TV (580 repeaters) (reach 98% of population); satellite ground stations -\n    INTELSAT, Intersputnik, INMARSAT, Orbita\n\n:Russia Defense Forces\n\nBranches:\n    Russian defence forces will be comprised of those ground-, air-, and\n    sea-based conventional assets currently on Russian soil and those scheduled\n    to be withdrawn from other countries; strategic forces will remain under CIS\n    control\nManpower availability:\n    males 15-49, 36,288,000; 27,216,000 fit for military service; 1,020,341\n    reach military age (18) annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Rwanda Geography\n\nTotal area:\n    26,340 km2\nLand area:\n    24,950 km2\nComparative area:\n    slightly smaller than Maryland\nLand boundaries:\n    893 km total; Burundi 290 km, Tanzania 217 km, Uganda 169 km, Zaire 217 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate; two rainy seasons (February to April, November to January); mild\n    in mountains with frost and snow possible\nTerrain:\n    mostly grassy uplands and hills; mountains in west\nNatural resources:\n    gold, cassiterite (tin ore), wolframite (tungsten ore), natural gas,\n    hydropower\nLand use:\n    arable land 29%; permanent crops 11%; meadows and pastures 18%; forest and\n    woodland 10%; other 32%; includes irrigated NEGL%\nEnvironment:\n    deforestation; overgrazing; soil exhaustion; soil erosion; periodic droughts\nNote:\n    landlocked\n\n:Rwanda People\n\nPopulation:\n    8,206,446 (July 1992), growth rate 3.8% (1992)\nBirth rate:\n    52 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    108 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    51 years male, 55 years female (1992)\nTotal fertility rate:\n    8.3 children born/woman (1992)\nNationality:\n    noun - Rwandan(s); adjective - Rwandan\nEthnic divisions:\n    Hutu 90%, Tutsi 9%, Twa (Pygmoid) 1%\nReligions:\n    Roman Catholic 65%, Protestant 9%, Muslim 1%, indigenous beliefs and other\n    25%\nLanguages:\n    Kinyarwanda, French (official); Kiswahili used in commercial centers\nLiteracy:\n    50% (male 64%, female 37%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,600,000; agriculture 93%, government and services 5%, industry and\n    commerce 2%; 49% of population of working age (1985)\nOrganized labor:\n    NA\n\n:Rwanda Government\n\nLong-form name:\n    Republic of Rwanda\nType:\n    republic; presidential system in which military leaders hold key offices; on\n    31 December 1990, the government announced a National Political Charter to\n    serve as a basis for transition to a presidential/parliamentary political\n    system; the 1978 constitution was replaced in June 1991 via popular\n    referendum by a new constitution creating a multiparty system with a\n    president and prime minister\nCapital:\n    Kigali\nAdministrative divisions:\n    10 prefectures (prefectures, singular - prefecture in French; plural - NA,\n    singular - prefegitura in Kinyarwanda); Butare, Byumba, Cyangugu, Gikongoro,\n    Gisenyi, Gitarama, Kibungo, Kibuye, Rigali, Ruhengeri\nIndependence:\n    1 July 1962 (from UN trusteeship under Belgian administration)\nConstitution:\n    18 June 1991\nLegal system:\n    based on German and Belgian civil law systems and customary law; judicial\n    review of legislative acts in the Supreme Court; has not accepted compulsory\n    ICJ jurisdiction\nNational holiday:\n    Independence Day, 1 July (1962)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National Development Council (Conseil National de Developpement)\nJudicial branch:\n    Constitutional Court (consists of the Court of Cassation and the Council of\n    State in joint session)\nLeaders:\n  Chief of State:\n    President Maj. Gen. Juvenal HABYARIMANA (since 5 July 1973)\n  Head of Government:\n    Prime Minister Sylvestre NSANZIMANA (since NA October 1991)\nPolitical parties and leaders:\n    Republican Revolutionary Movement for Democracy and Development (MRND), Maj.\n    Gen. Juvenal HABYARIMANA; formerly a one-party state, Rwanda legalized\n    independent parties in mid-1991; since then, at least 10 new political\n    parties have registered; President HABYARIMANA's political movement - the\n    National Revolutionary Movement for Development (MRND) - reorganized itself\n    as a political party and changed its name to the Republican National\n    Movement for Democracy and Development (but kept the same initials - MRND);\n    significant independent parties include: Democratic Republican Movement\n    (MDR), leader NA; Liberal Party (PL), leader NA; Democratic and Socialist\n    Party (PSD), leader NA; note - since October 1990, Rwanda has been involved\n    in a low-intensity conflict with the Rwandan Patriotic Front/Rwandan\n    Patriotic Army (RPF/RPA); the RPF/RPA is primarily an ethnically based\n    organization\nSuffrage:\n    universal adult, exact age NA\nElections:\n  President:\n    last held 19 December 1988 (next to be held NA December 1993); results -\n    President Maj. Gen. Juvenal HABYARIMANA reelected\n\n:Rwanda Government\n\n  National Development Council:\n    last held 19 December 1988 (next to be held NA December 1993); results -\n    MRND is the only party; seats - (70 total) MRND 70\nMember of:\n    ACCT, ACP, AfDB, ECA, CCC, CEEAC, CEPGL, FAO, G-77, GATT, IBRD, ICAO, IDA,\n    IFAD, IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Aloys UWIMANA; Chancery at 1714 New Hampshire Avenue NW,\n    Washington, DC 20009; telephone (202) 232-2882\n  US:\n    Ambassador Robert A. FLATEN; Embassy at Boulevard de la Revolution, Kigali\n    (mailing address is B. P. 28, Kigali); telephone [250] 75601 through 75603;\n    FAX [250] 72128\nFlag:\n    three equal vertical bands of red (hoist side), yellow, and green with a\n    large black letter R\n    centered in the yellow band; uses the popular pan-African colors of\n    Ethiopia; similar to the flag of Guinea, which has a plain yellow band\n\n:Rwanda Economy\n\nOverview:\n    Almost 50% of GDP comes from the agricultural sector; coffee and tea make up\n    80-90% of total exports. The amount of fertile land is limited, however, and\n    deforestation and soil erosion have created problems. The industrial sector\n    in Rwanda is small, contributing only 17% to GDP. Manufacturing focuses\n    mainly on the processing of agricultural products. The Rwandan economy\n    remains dependent on coffee exports and foreign aid. Weak international\n    prices since 1986 have caused the economy to contract and per capita GDP to\n    decline. A structural adjustment program with the World Bank began in\n    October 1990. An outbreak of insurgency, also in October, has dampened any\n    prospects for economic improvement.\nGDP:\n    exchange rate conversion - $2.1 billion, per capita $300; real growth rate\n    -6.8% (1990 est.)\nInflation rate (consumer prices):\n    4.2% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $391 million; expenditures $491 million, including capital\n    expenditures of $225 million (1989 est.)\nExports:\n    $111.7 million (f.o.b., 1990 est.)\n  commodities:\n    coffee 85%, tea, tin, cassiterite, wolframite, pyrethrum\n  partners:\n    Germany, Belgium, Italy, Uganda, UK, France, US\nImports:\n    $279.2 million (f.o.b., 1990 est.)\n  commodities:\n    textiles, foodstuffs, machines and equipment, capital goods, steel,\n    petroleum products, cement and construction material\n  partners:\n    US, Belgium, Germany, Kenya, Japan\nExternal debt:\n    $911 million (1990 est.)\nIndustrial production:\n    growth rate 1.2% (1988); accounts for 17% of GDP\nElectricity:\n    30,000 kW capacity; 130 million kWh produced, 15 kWh per capita (1991)\nIndustries:\n    mining of cassiterite (tin ore) and wolframite (tungsten ore), tin, cement,\n    agricultural processing, small-scale beverage production, soap, furniture,\n    shoes, plastic goods, textiles, cigarettes\nAgriculture:\n    accounts for almost 50% of GDP and about 90% of the labor force; cash crops\n    - coffee, tea, pyrethrum (insecticide made from chrysanthemums); main food\n    crops - bananas, beans, sorghum, potatoes; stock raising; self-sufficiency\n    declining; country imports foodstuffs as farm production fails to keep up\n    with a 3.8% annual growth in population\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $128 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.0 billion; OPEC\n    bilateral aid (1979-89), $45 million; Communist countries (1970-89), $58\n    million; note - in October 1990 Rwanda launched a Structural Adjustment\n    Program with the IMF; since September 1991, the EC has given $46 million and\n    the US $25 million in support of this program\nCurrency:\n    Rwandan franc (plural - francs); 1 Rwandan franc (RF) = 100 centimes\n\n:Rwanda Economy\n\nExchange rates:\n    Rwandan francs (RF) per US$1 - 121.40 (January 1992), 125.14 (1991), 82.60\n    (1990), 79.98 (1989), 76.45 (1988), 79.67 (1987)\nFiscal year:\n    calendar year\n\n:Rwanda Communications\n\nHighways:\n    4,885 km total; 460 km paved, 1,725 km gravel and/or improved earth, 2,700\n    km unimproved\nInland waterways:\n    Lac Kivu navigable by shallow-draft barges and native craft\nCivil air:\n    2 major transport aircraft\nAirports:\n    8 total, 8 usable; 3 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runway 2,440-3,659 m;2 with runways 1,220-2,439 m\nTelecommunications:\n    fair system with low-capacity radio relay system centered on Kigali;\n    broadcast stations - 2 AM, 1 (7 repeaters) FM, no TV; satellite earth\n    stations - 1 Indian Ocean INTELSAT and 1 SYMPHONIE\n\n:Rwanda Defense Forces\n\nBranches:\n    Army (including Air Wing), Gendarmerie\nManpower availability:\n    males 15-49, 1,719,936; 876,659 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $37 million, 1.6% of GDP (1988 est.)\n\n:Saint Helena Geography\n\nTotal area:\n    410 km2\nLand area:\n    410 km2; includes Ascension, Gough Island, Inaccessible Island, Nightingale\n    Island, and Tristan da Cunha\nComparative area:\n    slightly more than 2.3 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    60 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; marine; mild, tempered by trade winds\nTerrain:\n    rugged, volcanic; small scattered plateaus and plains\nNatural resources:\n    fish; Ascension is a breeding ground for sea turtles and sooty terns; no\n    minerals\nLand use:\n    arable land 7%; permanent crops 0%; meadows and pastures 7%; forest and\n    woodland 3%; other 83%\nEnvironment:\n    very few perennial streams\nNote:\n    located 1,920 km west of Angola, about two-thirds of the way between South\n    America and Africa; Napoleon Bonaparte's place of exile and burial; the\n    remains were taken to Paris in 1840\n\n:Saint Helena People\n\nPopulation:\n    6,698 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    10 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    40 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 76 years female (1992)\nTotal fertility rate:\n    1.2 children born/woman (1992)\nNationality:\n    noun - Saint Helenian(s); adjective - Saint Helenian\nEthnic divisions:\n    NA\nReligions:\n    Anglican majority; also Baptist, Seventh-Day Adventist, and Roman Catholic\nLanguages:\n    English\nLiteracy:\n    98% (male 97%, female 98%) age 15 and over can read and write (1987)\nLabor force:\n    NA\nOrganized labor:\n    Saint Helena General Workers' Union, 472 members; crafts 17%, professional\n    and technical 10%, service 10%, management and clerical 9%, farming and\n    fishing 9%, transport 6%, sales 5%, and other 34%\n\n:Saint Helena Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    Jamestown\nAdministrative divisions:\n    1 administrative area and 2 dependencies*; Ascension*, Saint Helena, Tristan\n    da Cunha*\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    1 January 1967\nLegal system:\n    NA\nNational holiday:\n    Celebration of the Birthday of the Queen (second Saturday in June), 10 June\n    1989\nExecutive branch:\n    British monarch, governor, Executive Council (cabinet)\nLegislative branch:\n    unicameral Legislative Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Governor A. N. HOOLE\nPolitical parties and leaders:\n    Saint Helena Labor Party, leader NA; Saint Helena Progressive Party, leader\n    NA; note - both political parties inactive since 1976\nSuffrage:\n    NA\nElections:\n  Legislative Council:\n    last held October 1984 (next to be held NA); results - percent of vote by\n    party NA; seats - (15 total, 12 elected) number of seats by party NA\nMember of:\n    ICFTU\nDiplomatic representation:\n    none (dependent territory of the UK)\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the Saint\n    Helenian shield centered on the outer half of the flag; the shield features\n    a rocky coastline and three-masted sailing ship\n\n:Saint Helena Economy\n\nOverview:\n    The economy depends primarily on financial assistance from the UK. The local\n    population earns some income from fishing, the rearing of livestock, and\n    sales of handicrafts. Because there are few jobs, a large proportion of the\n    work force has left to seek employment overseas.\nGDP:\n    $NA, per capita $NA; real growth rate NA%\nInflation rate (consumer prices):\n    -1.1% (1986)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $3.2 million; expenditures $2.9 million, including capital\n    expenditures of NA (1984)\nExports:\n    $23.9 thousand (f.o.b., 1984)\n  commodities:\n    fish (frozen and salt-dried skipjack, tuna), handicrafts\n  partners:\n    South Africa, UK\nImports:\n    $2.4 million (c.i.f., 1984)\n  commodities:\n    food, beverages, tobacco, fuel oils, animal feed, building materials, motor\n    vehicles and parts, machinery and parts\n  partners:\n    UK, South Africa\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    9,800 kW capacity; 10 million kWh produced, 1,390 kWh per capita (1989)\nIndustries:\n    crafts (furniture, lacework, fancy woodwork), fish\nAgriculture:\n    maize, potatoes, vegetables; timber production being developed; crawfishing\n    on Tristan da Cunha\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $198 million\nCurrency:\n    Saint Helenian pound (plural - pounds); 1 Saint Helenian pound (#S) = 100\n    pence\nExchange rates:\n    Saint Helenian pounds (#S) per US$1 - 0.5799 (March 1992), 0.5652 (1991),\n    0.6099 (1989), 0.5614 (1988), 0.6102 (1987); note - the Saint Helenian pound\n    is at par with the British pound\nFiscal year:\n    1 April - 31 March\n\n:Saint Helena Communications\n\nHighways:\n    87 km paved roads, 20 km earth roads on Saint Helena; 80 km paved roads on\n    Ascension; 2.7 km paved roads on Tristan da Cunha\nPorts:\n    Jamestown (Saint Helena), Georgetown (Ascension)\nAirports:\n    1 with permanent-surface runway 2,440-3,659 m on Ascension\nTelecommunications:\n    1,500 radio receivers; broadcast stations - 1 AM, no FM, no TV; 550\n    telephones in automatic network; HF radio links to Ascension, then into\n    worldwide submarine cable and satellite networks; major coaxial submarine\n    cable relay point between South Africa, Portugal, and UK at Ascension; 2\n    Atlantic Ocean INTELSAT earth stations\n\n:Saint Helena Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Saint Kitts and Nevis Geography\n\nTotal area:\n    269 km2\nLand area:\n    269 km2\nComparative area:\n    slightly more than 1.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    135 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    subtropical tempered by constant sea breezes; little seasonal temperature\n    variation; rainy season (May to November)\nTerrain:\n    volcanic with mountainous interiors\nNatural resources:\n    negligible\nLand use:\n    arable land 22%; permanent crops 17%; meadows and pastures 3%; forest and\n    woodland 17%; other 41%\nEnvironment:\n    subject to hurricanes (July to October)\nNote:\n    located 320 km east-southeast of Puerto Rico\n\n:Saint Kitts and Nevis People\n\nPopulation:\n    40,061 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    22 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -9 migrants/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 69 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Kittsian(s), Nevisian(s); adjective - Kittsian, Nevisian\nEthnic divisions:\n    mainly of black African descent\nReligions:\n    Anglican, other Protestant sects, Roman Catholic\nLanguages:\n    English\nLiteracy:\n    98% (male 98%, female 98%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    20,000 (1981)\nOrganized labor:\n    6,700\n\n:Saint Kitts and Nevis Government\n\nLong-form name:\n    Federation of Saint Kitts and Nevis; formerly Federation of Saint\n    Christopher and Nevis\nType:\n    constitutional monarchy\nCapital:\n    Basseterre\nAdministrative divisions:\n    14 parishs; Christ Church Nichola Town, Saint Anne Sandy Point, Saint George\n    Basseterre, Saint George Gingerland, Saint James Windward, Saint John\n    Capisterre, Saint John Figtree, Saint Mary Cayon, Saint Paul Capisterre,\n    Saint Paul Charlestown, Saint Peter Basseterre, Saint Thomas Lowland, Saint\n    Thomas Middle Island, Trinity Palmetto Point\nIndependence:\n    19 September 1983 (from UK)\nConstitution:\n    19 September 1983\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 19 September (1983)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    unicameral House of Assembly\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Sir Clement Athelston ARRINDELL (since 19 September 1983, previously\n    Governor General of the Associated State since NA November 1981)\n  Head of Government:\n    Prime Minister Dr. Kennedy Alphonse SIMMONDS (since 19 September 1983,\n    previously Premier of the Associated State since NA February 1980); Deputy\n    Prime Minister Michael Oliver POWELL (since NA)\nPolitical parties and leaders:\n    People's Action Movement (PAM), Kennedy SIMMONDS; Saint Kitts and Nevis\n    Labor Party (SKNLP), Dr. Denzil DOUGLAS; Nevis Reformation Party (NRP),\n    Simeon DANIEL; Concerned Citizens Movement (CCM), Vance AMORY\nSuffrage:\n    universal adult at age NA\nElections:\n  House of Assembly:\n    last held 21 March 1989 (next to be held by 21 March 1994); results -\n    percent of vote by party NA; seats - (14 total, 11 elected) PAM 6, SKNLP 2,\n    NRP 2, CCM 1\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, IBRD, ICFTU, IDA, IFAD, IMF, INTERPOL,\n    OAS, OECS, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO\nDiplomatic representation:\n    Minister-Counselor (Deputy Chief of Mission), Charge d'Affaires ad interim\n    Aubrey Eric HART; Chancery at Suite 608, 2100 M Street NW, Washington, DC\n    20037; telephone (202) 833-3550\n  US:\n    no official presence since the Charge resides in Saint John's (Antigua and\n    Barbuda)\n\n:Saint Kitts and Nevis Government\n\nFlag:\n    divided diagonally from the lower hoist side by a broad black band bearing\n    two white five-pointed stars; the black band is edged in yellow; the upper\n    triangle is green, the lower triangle is red\n\n:Saint Kitts and Nevis Economy\n\nOverview:\n    The economy has historically depended on the growing and processing of\n    sugarcane and on remittances from overseas workers. In recent years, tourism\n    and export-oriented manufacturing have assumed larger roles.\nGDP:\n    exchange rate conversion - $146.6 million, per capita $3,650; real growth\n    rate 2.1% (1990)\nInflation rate (consumer prices):\n    4.2% (1990)\nUnemployment rate:\n    15% (1989)\nBudget:\n    revenues $38.1 million; expenditures $68 million, including capital\n    expenditures of $31.5 million (1991)\nExports:\n    $24.6 million (f.o.b., 1990)\n  commodities:\n    sugar, clothing, electronics, postage stamps\n  partners:\n    US 53%, UK 22%, Trinidad and Tobago 5%, OECS 5% (1988)\nImports:\n    $103.2 million (f.o.b., 1990)\n  commodities:\n    foodstuffs, intermediate manufactures, machinery, fuels\n  partners:\n    US 36%, UK 17%, Trinidad and Tobago 6%, Canada 3%, Japan 3%, OECS 4% (1988)\nExternal debt:\n    $26.4 million (1988)\nIndustrial production:\n    growth rate 11.8% (1988 est.); accounts for 17% of GDP\nElectricity:\n    15,800 kW capacity; 45 million kWh produced, 1,117 kWh per capita (1991)\nIndustries:\n    sugar processing, tourism, cotton, salt, copra, clothing, footwear,\n    beverages\nAgriculture:\n    cash crop - sugarcane; subsistence crops - rice, yams, vegetables, bananas;\n    fishing potential not fully exploited; most food imported\nEconomic aid:\n    US commitments, including Ex-Im (FY85-88), $10.7 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $67 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    calendar year\n\n:Saint Kitts and Nevis Communications\n\nRailroads:\n    58 km 0.760-meter gauge on Saint Kitts for sugarcane\nHighways:\n    300 km total; 125 km paved, 125 km otherwise improved, 50 km unimproved\n    earth\nPorts:\n    Basseterre (Saint Kitts), Charlestown (Nevis)\nCivil air:\n    no major transport aircraft\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    good interisland VHF/UHF/SHF radio connections and international link via\n    Antigua and Barbuda and Saint Martin; 2,400 telephones; broadcast stations -\n    2 AM, no FM, 4 TV\n\n:Saint Kitts and Nevis Defense Forces\n\nBranches:\n    Royal Saint Kitts and Nevis Police Force, Coast Guard\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Saint Lucia Geography\n\nTotal area:\n    620 km2\nLand area:\n    610 km2\nComparative area:\n    slightly less than 3.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    158 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical, moderated by northeast trade winds; dry season from January to\n    April, rainy season from May to August\nTerrain:\n    volcanic and mountainous with some broad, fertile valleys\nNatural resources:\n    forests, sandy beaches, minerals (pumice), mineral springs, geothermal\n    potential\nLand use:\n    arable land 8%; permanent crops 20%; meadows and pastures 5%; forest and\n    woodland 13%; other 54%; includes irrigated 2%\nEnvironment:\n    subject to hurricanes and volcanic activity; deforestation; soil erosion\nNote:\n    located 700 km southeast of Puerto Rico\n\n:Saint Lucia People\n\nPopulation:\n    151,774 (July 1992), growth rate 1.7% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    -4 migrants/1,000 population (1992)\nInfant mortality rate:\n    18 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 75 years female (1992)\nTotal fertility rate:\n    2.8 children born/woman (1992)\nNationality:\n    noun - Saint Lucian(s); adjective - Saint Lucian\nEthnic divisions:\n    African descent 90.3%, mixed 5.5%, East Indian 3.2%, Caucasian 0.8%\nReligions:\n    Roman Catholic 90%, Protestant 7%, Anglican 3%\nLanguages:\n    English (official), French patois\nLiteracy:\n    67% (male 65%, female 69%) age 15 and over having ever attended school\n    (1980)\nLabor force:\n    43,800; agriculture 43.4%, services 38.9%, industry and commerce 17.7% (1983\n    est.)\nOrganized labor:\n    20% of labor force\n\n:Saint Lucia Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Castries\nAdministrative divisions:\n    11 quarters; Anse-la-Raye, Castries, Choiseul, Dauphin, Dennery, Gros-Islet,\n    Laborie, Micoud, Praslin, Soufriere, Vieux-Fort\nIndependence:\n    22 February 1979 (from UK)\nConstitution:\n    22 February 1979\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 22 February (1979)\nExecutive branch:\n    British monarch, governor general, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Assembly\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Acting Governor\n    General Sir Stanislaus Anthony JAMES (since 10 October 1988)\n  Head of Government:\n    Prime Minister John George Melvin COMPTON (since 3 May 1982)\nPolitical parties and leaders:\n    United Workers' Party (UWP), John COMPTON; Saint Lucia Labor Party (SLP),\n    Julian HUNTE; Progressive Labor Party (PLP), George ODLUM\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 6 April 1987 (next to be held by 27 April 1992); results - percent\n    of vote by party NA; seats - (17 total) UWP 10, SLP 7\nMember of:\n    ACCT (associate), ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, IBRD, ICAO, ICFTU,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTERPOL, LORCS, NAM, OAS, OECS, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WCL, WHO, WMO\nDiplomatic representation:\n    Ambassador Dr. Joseph Edsel EDMUNDS; Chancery at Suite 309, 2100 M Street\n    NW, Washington, DC 30037; telephone (202) 463-7378 or 7379; there is a Saint\n    Lucian Consulate General in New York\n  US:\n    no official presence since the Ambassador resides in Bridgetown (Barbados)\nFlag:\n    blue with a gold isosceles triangle below a black arrowhead; the upper edges\n    of the arrowhead have a white border\n\n:Saint Lucia Economy\n\nOverview:\n    Since 1983 the economy has shown an impressive average annual growth rate of\n    almost 5% because of strong agricultural and tourist sectors. Saint Lucia\n    also possesses an expanding industrial base supported by foreign investment\n    in manufacturing and other activities, such as in data processing. The\n    economy, however, remains vulnerable because the important agricultural\n    sector is dominated by banana production. Saint Lucia is subject to periodic\n    droughts and/or tropical storms, and its protected market agreement with the\n    UK for bananas may end in 1992.\nGDP:\n    exchange rate conversion - $295 million, per capita $1,930; real growth rate\n    4.0% (1990 est.)\nInflation rate (consumer prices):\n    4.2% (1990)\nUnemployment rate:\n    16.0% (1988)\nBudget:\n    revenues $131 million; expenditures $149 million, including capital\n    expenditures of $71 million (FY90 est.)\nExports:\n    $127 million (f.o.b., 1990 est.)\n  commodities:\n    bananas 54%, clothing 17%, cocoa, vegetables, fruits, coconut oil\n  partners:\n    UK 51%, CARICOM 20%, US 19%, other 10%\nImports:\n    $270 million (c.i.f., 1990)\n  commodities:\n    manufactured goods 23%, machinery and transportation equipment 27%, food and\n    live animals 18%, chemicals 10%, fuels 6%\n  partners:\n    US 35%, CARICOM 16%, UK 15%, Japan 7%, Canada 4%, other 23%\nExternal debt:\n    $54.5 million (1989)\nIndustrial production:\n    growth rate 3.5% (1990 est.); accounts for 7% of GDP\nElectricity:\n    32,500 kW capacity; 112 million kWh produced, 732 kWh per capita (1991)\nIndustries:\n    clothing, assembly of electronic components, beverages, corrugated boxes,\n    tourism, lime processing, coconut processing\nAgriculture:\n    accounts for 16% of GDP and 43% of labor force; crops - bananas, coconuts,\n    vegetables, citrus fruit, root crops, cocoa; imports food for the tourist\n    industry\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $120 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\n\n:Saint Lucia Communications\n\nHighways:\n    760 km total; 500 km paved; 260 km otherwise improved\nPorts:\n    Castries\nCivil air:\n    no major transport aircraft\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439\nTelecommunications:\n    fully automatic telephone system; 9,500 telephones; direct microwave link\n    with Martinique and Saint Vincent and the Grenadines; interisland\n    troposcatter link to Barbados; broadcast stations - 4 AM, 1 FM, 1 TV (cable)\n\n:Saint Lucia Defense Forces\n\nBranches:\n    Royal Saint Lucia Police Force, Coast Guard\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Saint Pierre and Miquelon Geography\n\nTotal area:\n    242 km2\nLand area:\n    242 km2; includes eight small islands in the Saint Pierre and the Miquelon\n    groups\nComparative area:\n    slightly less than 1.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    120 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    focus of maritime boundary dispute between Canada and France\nClimate:\n    cold and wet, with much mist and fog; spring and autumn are windy\nTerrain:\n    mostly barren rock\nNatural resources:\n    fish, deepwater ports\nLand use:\n    arable land 13%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 4%; other 83%\nEnvironment:\n    vegetation scanty\nNote:\n    located 25 km south of Newfoundland, Canada, in the North Atlantic Ocean\n\n:Saint Pierre and Miquelon People\n\nPopulation:\n    6,513 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    9 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 78 years female (1992)\nTotal fertility rate:\n    1.2 children born/woman (1992)\nNationality:\n    noun - Frenchman(men), Frenchwoman(women); adjective - French\nEthnic divisions:\n    originally Basques and Bretons (French fishermen)\nReligions:\n    Roman Catholic 98%\nLanguages:\n    French\nLiteracy:\n    99% (male 99%, female 99%) age 15 and over can read and write (1982)\nLabor force:\n    2,850 (1988)\nOrganized labor:\n    Workers' Force trade union\n\n:Saint Pierre and Miquelon Government\n\nLong-form name:\n    Territorial Collectivity of Saint Pierre and Miquelon\nType:\n    territorial collectivity of France\nCapital:\n    Saint-Pierre\nAdministrative divisions:\n    none (territorial collectivity of France)\nIndependence:\n    none (territorial collectivity of France); note - has been under French\n    control since 1763\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French law\nNational holiday:\n    National Day, 14 July (Taking of the Bastille)\nExecutive branch:\n    French president, commissioner of the Republic\nLegislative branch:\n    unicameral General Council\nJudicial branch:\n    Superior Tribunal of Appeals (Tribunal Superieur d'Appel)\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Commissioner of the Republic Jean-Pierre MARQUIE (since February 1989);\n    President of the General Council Marc PLANTEGENET (since NA)\nPolitical parties and leaders:\n    Socialist Party (PS); Union for French Democracy (UDF/CDS), Gerard GRIGNON\nSuffrage:\n    universal at age 18\nElections:\n  General Council:\n    last held September-October 1988 (next to be held NA September 1994);\n    results - percent of vote by party NA; seats - (19 total) Socialist and\n    other left-wing parties 13, UDF and right-wing parties 6\n  French President:\n    last held 8 May 1988 (next to be held NA May 1995); results - (second\n    ballot) Jacques CHIRAC 56%, Francois MITTERRAND 44%\n  French Senate:\n    last held 24 September 1989 (next to be held NA September 1992); results -\n    percent of vote by party NA; seats - (1 total) PS 1\n  French National Assembly:\n    last held 5 and 12 June 1988 (next to be held NA June 1993); results -\n    percent of vote by party NA; seats - (1 total) UDF/CDS 1; note - Saint\n    Pierre and Miquelon elects 1 member each to the French Senate and the French\n    National Assembly who are voting members\nMember of:\n    FZ, WFTU\nDiplomatic representation:\n    as a territorial collectivity of France, local interests are represented in\n    the US by France\nFlag:\n    the flag of France is used\n\n:Saint Pierre and Miquelon Economy\n\nOverview:\n    The inhabitants have traditionally earned their livelihood by fishing and by\n    servicing fishing fleets operating off the coast of Newfoundland. The\n    economy has been declining, however, because the number of ships stopping at\n    Saint Pierre has dropped steadily over the years. In March 1989, an\n    agreement between France and Canada set fish quotas for Saint Pierre's\n    trawlers fishing in Canadian and Canadian-claimed waters for three years.\n    The agreement settles a longstanding dispute that had virtually brought fish\n    exports to a halt. The islands are heavily subsidized by France. Imports\n    come primarily from Canada and France.\nGDP:\n    exchange rate conversion - $60 million, per capita $9,500; real growth rate\n    NA% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    9.6% (1990)\nBudget:\n    revenues $18.3 million; expenditures $18.3 million, including capital\n    expenditures of $5.5 million (1989)\nExports:\n    $25.5 million (f.o.b., 1990)\n  commodities:\n    fish and fish products, fox and mink pelts\n  partners:\n    US 58%, France 17%, UK 11%, Canada, Portugal\nImports:\n    $87.2 million (c.i.f., 1990)\n  commodities:\n    meat, clothing, fuel, electrical equipment, machinery, building materials\n  partners:\n    Canada, France, US, Netherlands, UK\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    10,000 kW capacity; 25 million kWh produced, 3,970 kWh per capita (1989)\nIndustries:\n    fish processing and supply base for fishing fleets; tourism\nAgriculture:\n    vegetables, cattle, sheep and pigs for local consumption; fish catch, 20,500\n    metric tons (1989)\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $500 million\nCurrency:\n    French franc (plural - francs); 1 French franc (F) = 100 centimes\nExchange rates:\n    French francs (F) per US$1 - 5.6397 (March 1992), 5.6421 (1991), 5.4453\n    (1990), 6.3801 (1989), 5.9569 (1988), 6.0107 (1987)\nFiscal year:\n    calendar year\n\n:Saint Pierre and Miquelon Communications\n\nHighways:\n    120 km total; 60 km paved (1985)\nPorts:\n    Saint Pierre\nCivil air:\n    no major transport aircraft\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways, none with runways over\n    2,439 m; 1 with runway 1,220-2,439 m\nTelecommunications:\n    3,601 telephones; broadcast stations - 1 AM, 3 FM, no TV; radio\n    communication with most countries in the world; 1 earth station in French\n    domestic satellite system\n\n:Saint Pierre and Miquelon Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Saint Vincent and the Grenadines Geography\n\nTotal area:\n    340 km2\nLand area:\n    340 km2\nComparative area:\n    slightly less than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    84 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; little seasonal temperature variation; rainy season (May to\n    November)\nTerrain:\n    volcanic, mountainous; Soufriere volcano on the island of Saint Vincent\nNatural resources:\n    negligible\nLand use:\n    arable land 38%; permanent crops 12%; meadows and pastures 6%; forest and\n    woodland 41%; other 3%; includes irrigated 3%\nEnvironment:\n    subject to hurricanes; Soufriere volcano is a constant threat\nNote:\n    some islands of the Grenadines group are administered by Grenada\n\n:Saint Vincent and the Grenadines People\n\nPopulation:\n    115,339 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    -7 migrants/1,000 population (1992)\nInfant mortality rate:\n    19 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 74 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Saint Vincentian(s) or Vincentian(s); adjectives - Saint Vincentian\n    or Vincentian\nEthnic divisions:\n    mainly of black African descent; remainder mixed, with some white, East\n    Indian, Carib Indian\nReligions:\n    Anglican, Methodist, Roman Catholic, Seventh-Day Adventist\nLanguages:\n    English, some French patois\nLiteracy:\n    96% (male 96%, female 96%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    67,000 (1984 est.)\nOrganized labor:\n    10% of labor force\n\n:Saint Vincent and the Grenadines Government\n\nLong-form name:\n    none\nType:\n    constitutional monarchy\nCapital:\n    Kingstown\nAdministrative divisions:\n    6 parishes; Charlotte, Grenadines, Saint Andrew, Saint David, Saint George,\n    Saint Patrick\nIndependence:\n    27 October 1979 (from UK)\nConstitution:\n    27 October 1979\nLegal system:\n    based on English common law\nNational holiday:\n    Independence Day, 27 October (1979)\nExecutive branch:\n    British monarch, governor general, prime minister, Cabinet\nLegislative branch:\n    unicameral House of Assembly\nJudicial branch:\n    Eastern Caribbean Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    David JACK (since 29 September 1989)\n  Head of Government:\n    Prime Minister James F. MITCHELL (since 30 July 1984)\nPolitical parties and leaders:\n    New Democratic Party (NDP), James (Son) MITCHELL; Saint Vincent Labor Party\n    (SVLP), Vincent BEACHE; United People's Movement (UPM), Adrian SAUNDERS;\n    Movement for National Unity (MNU), Ralph GONSALVES; National Reform Party\n    (NRP), Joel MIGUEL\nSuffrage:\n    universal at age 18\nElections:\n  House of Assembly:\n    last held 16 May 1989 (next to be held NA July 1994); results - percent of\n    vote by party NA; seats - (21 total; 15 elected representatives and 6\n    appointed senators) NDP 15\nMember of:\n    ACP, C, CARICOM, CDB, ECLAC, FAO, G-77, IBRD, ICAO, ICFTU, IDA, IFAD, IMF,\n    IMO, INTERPOL, IOC, ITU, LORCS, OAS, OECS, UN, UNCTAD, UNESCO, UNIDO, UPU,\n    WCL, WFTU, WHO\nDiplomatic representation:\n    Ambassador Kingsley LAYNE; 1717 Massachusetts Avenue, NW, Suite 102,\n    Washington, DC 20036; telephone NA\n  US:\n    no official presence since the Ambassador resides in Bridgetown (Barbados)\nFlag:\n    three vertical bands of blue (hoist side), gold (double width), and green;\n    the gold band bears three green diamonds arranged in a V pattern\n    *** No entry for this item ***\n\n:Saint Vincent and the Grenadines Economy\n\nOverview:\n    Agriculture, dominated by banana production, is the most important sector of\n    the economy. The services sector, based mostly on a growing tourist\n    industry, is also important. The economy continues to have a high\n    unemployment rate of 30% because of an overdependence on the weather-plagued\n    banana crop as a major export earner. Government progress toward\n    diversifying into new industries has been relatively unsuccessful.\nGDP:\n    exchange rate conversion - $146 million, per capita $1,300; real growth rate\n    5.9% (1989)\nInflation rate (consumer prices):\n    3.0% (1990)\nUnemployment rate:\n    30% (1989 est.)\nBudget:\n    revenues $62 million; expenditures $67 million, including capital\n    expenditures of $21 million (FY90 est.)\nExports:\n    $75 million (f.o.b., 1990)\n  commodities:\n    bananas, eddoes and dasheen (taro), arrowroot starch, tennis racquets, flour\n  partners:\n    UK 43%, CARICOM 37%, US 15%\nImports:\n    $130 million (f.o.b., 1990 est.)\n  commodities:\n    foodstuffs, machinery and equipment, chemicals and fertilizers, minerals and\n    fuels\n  partners:\n    US 42%, CARICOM 19%, UK 15%\nExternal debt:\n    $50.9 million (1989)\nIndustrial production:\n    growth rate 0% (1989); accounts for 14% of GDP\nElectricity:\n    16,594 kW capacity; 64 million kWh produced, 560 kWh per capita (1991)\nIndustries:\n    food processing (sugar, flour), cement, furniture, clothing, starch, sheet\n    metal, beverage\nAgriculture:\n    accounts for 15% of GDP and 60% of labor force; provides bulk of exports;\n    products - bananas, coconuts, sweet potatoes, spices; small numbers of\n    cattle, sheep, hogs, goats; small fish catch used locally\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $11 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $81 million\nCurrency:\n    East Caribbean dollar (plural - dollars); 1 EC dollar (EC$) = 100 cents\nExchange rates:\n    East Caribbean dollars (EC$) per US$1 - 2.70 (fixed rate since 1976)\nFiscal year:\n    calendar year (as of January 1991); previously 1 July - 30 June\n\n:Saint Vincent and the Grenadines Communications\n\nHighways:\n    about 1,000 km total; 300 km paved; 400 km improved; 300 km unimproved\nPorts:\n    Kingstown\nMerchant marine:\n    407 ships (1,000 GRT or over) totaling 3,388,427 GRT/5,511,325 DWT; includes\n    3 passenger, 2 passenger-cargo, 222 cargo, 22 container, 19 roll-on/roll-off\n    cargo, 14 refrigerated cargo, 24 petroleum tanker, 7 chemical tanker, 4\n    liquefied gas, 73 bulk, 13 combination bulk, 2 vehicle carrier, 1 livestock\n    carrier, 1 specialized tanker; note - China owns 3 ships; a flag of\n    convenience registry\nCivil air:\n    no major transport aircraft\nAirports:\n    6 total, 6 usable; 4 with permanent-surface runways; none with runways over\n    2,439 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    islandwide fully automatic telephone system; 6,500 telephones; VHF/UHF\n    interisland links from Saint Vincent to Barbados and the Grenadines; new SHF\n    links to Grenada and Saint Lucia; broadcast stations - 2 AM, no FM, 1 TV\n    (cable)\n\n:Saint Vincent and the Grenadines Defense Forces\n\nBranches:\n    Royal Saint Vincent and the Grenadines Police Force, Coast Guard\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:San Marino Geography\n\nTotal area:\n    60 km2\nLand area:\n    60 km2\nComparative area:\n    about 0.3 times the size of Washington, DC\nLand boundaries:\n    39 km; Italy 39 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    Mediterranean; mild to cool winters; warm, sunny summers\nTerrain:\n    rugged mountains\nNatural resources:\n    building stones\nLand use:\n    arable land 17%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 83%\nEnvironment:\n    dominated by the Appenines\nNote:\n    landlocked; world's smallest republic; enclave of Italy\n\n:San Marino People\n\nPopulation:\n    23,404 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    8 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    5 migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 79 years female (1992)\nTotal fertility rate:\n    1.3 children born/woman (1992)\nNationality:\n    noun - Sanmarinese (singular and plural); adjective - Sanmarinese\nEthnic divisions:\n    Sanmarinese, Italian\nReligions:\n    Roman Catholic\nLanguages:\n    Italian\nLiteracy:\n    96% (male 96%, female 95%) age 14 and over can read and write (1976)\nLabor force:\n    about 4,300\nOrganized labor:\n    Democratic Federation of Sanmarinese Workers (affiliated with ICFTU) has\n    about 1,800 members; Communist-dominated General Federation of Labor, 1,400\n    members\n\n:San Marino Government\n\nLong-form name:\n    Republic of San Marino\nType:\n    republic\nCapital:\n    San Marino\nAdministrative divisions:\n    9 municipalities (castelli, singular - castello); Acquaviva, Borgo Maggiore,\n    Chiesanuova, Domagnano, Faetano, Fiorentino, Monte Giardino, San Marino,\n    Serravalle\nIndependence:\n    301 AD (by tradition)\nConstitution:\n    8 October 1600; electoral law of 1926 serves some of the functions of a\n    constitution\nLegal system:\n    based on civil law system with Italian law influences; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Foundation of the Republic, 3 September\nExecutive branch:\n    two captains regent, Congress of State (cabinet); real executive power is\n    wielded by the secretary of state for foreign affairs and the secretary of\n    state for internal affairs\nLegislative branch:\n    unicameral Great and General Council (Consiglio Grande e Generale)\nJudicial branch:\n    Council of Twelve (Consiglio dei XII)\nLeaders:\n  Co-Chiefs of State:\n    Captain Regent Edda CETCOLI and Captain Regent Marino RICCARDI (since 1\n    October 1991)\n  Head of Government:\n    Secretary of State Gabriele GATTI (since July 1986)\nPolitical parties and leaders:\n    Christian Democratic Party (DCS), Piermarino MENICUCCI; San Marino\n    Democratic Progressive Party (PPDS) formerly San Marino Communist Party\n    (PCS), Gilberto GHIOTTI; San Marino Socialist Party (PSS), Remy GIACOMINI;\n    Unitary Socialst Party (PSU); Democratic Movement (MD), Emilio Della BALDA;\n    San Marino Social Democratic Party (PSDS), Augusto CASALI; San Marino\n    Republican Party (PRS), Cristoforo BUSCARINI\nSuffrage:\n    universal at age 18\nElections:\n  Great and General Council:\n    last held 29 May 1988 (next to be held by NA May 1993); results - percent of\n    vote by party NA; seats - (60 total) DCS 27, PCS 18, PSU 8, PSS 7\nCommunists:\n    about 300 members\nMember of:\n    CE, CSCE, ICAO, ICFTU, ILO, IMF (observer), IOC, IOM (observer), ITU, LORCS,\n    NAM (guest), UN, UNCTAD, UNESCO, UPU, WHO, WTO\nDiplomatic representation:\n    San Marino maintains honorary Consulates General in Washington and New York\n    and an honorary Consulate in Detroit\n\n:San Marino Government\n\n  US:\n    no mission in San Marino, but the Consul General in Florence (Italy) is\n    accredited to San Marino; Consulate General at Lungarno Amerigo Vespucci,\n    38, 50123 Firenze, Italy (mailing address is APO AE 09613; telephone [39]\n    (55) 239-8276 through 8279 and 217-605; FAX [39] (55) 284-088\nFlag:\n    two equal horizontal bands of white (top) and light blue with the national\n    coat of arms superimposed in the center; the coat of arms has a shield\n    (featuring three towers on three peaks) flanked by a wreath, below a crown\n    and above a scroll bearing the word\nFlag:\n    AS (Liberty)\n\n:San Marino Economy\n\nOverview:\n    More than 2 million tourists visit each year, contributing about 60% to GDP.\n    The sale of postage stamps to foreign collectors is another important income\n    producer. The manufacturing sector employs nearly 40% of the labor force and\n    agriculture less than 4%. The per capita level of output and standard of\n    living are comparable to northern Italy.\nGDP:\n    purchasing power equivalent - $400 million, per capita $17,000; real growth\n    rate NA% (1991 est.)\nInflation rate (consumer prices):\n    6% (1990)\nUnemployment rate:\n    6.5% (1985)\nBudget:\n    revenues $99.2 million; expenditures $NA, including capital expenditures of\n    $NA (1983)\nExports:\n    *** No entry for this item ***\n    trade data are included with the statistics for Italy; commodity trade\n    consists primarily of exchanging building stone, lime, wood, chestnuts,\n    wheat, wine, baked goods, hides, and ceramics for a wide variety of consumer\n    manufactures\nImports:\n    see\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    supplied by Italy\nIndustries:\n    wine, olive oil, cement, leather, textile, tourism\nAgriculture:\n    employs less than 4% of labor force; products - wheat, grapes, corn, olives,\n    meat, cheese, hides; small numbers of cattle, pigs, horses; depends on Italy\n    for food imports\nEconomic aid:\n    NA\nCurrency:\n    Italian lira (plural - lire); 1 Italian lira (Lit) = 100 centesimi; also\n    mints its own coins\nExchange rates:\n    Italian lire (Lit) per US$1 - 1,248.4 (March 1992), 1,240.6 (1991), 1,198.1\n    (1990), 1,372.1 (1989), 1,301.6 (1988), 1,296.1 (1987)\nFiscal year:\n    calendar year\n\n:San Marino Communications\n\nHighways:\n    104 km\nTelecommunications:\n    automatic telephone system completely integrated into Italian system; 11,700\n    telephones; broadcast services from Italy; microwave and cable links into\n    Italian networks; no communication satellite facilities\n\n:San Marino Defense Forces\n\nBranches:\n    public security or police force of less than 50 people\nManpower availability:\n    all fit men ages 16-60 constitute a militia that can serve as an army\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Sao Tome and Principe Geography\n\nTotal area:\n    960 km2\nLand area:\n    960 km2\nComparative area:\n    slightly less than 5.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    209 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid; one rainy season (October to May)\nTerrain:\n    volcanic, mountainous\nNatural resources:\n    fish\nLand use:\n    arable land 1%; permanent crops 20%; meadows and pastures 1%; forest and\n    woodland 75%; other 3%\nEnvironment:\n    deforestation; soil erosion\nNote:\n    located south of Nigeria and west of Gabon near the Equator in the North\n    Atlantic Ocean\n\n:Sao Tome and Principe People\n\nPopulation:\n    132,338 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    38 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    58 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 68 years female (1992)\nTotal fertility rate:\n    5.2 children born/woman (1992)\nNationality:\n    noun - Sao Tomean(s); adjective - Sao Tomean\nEthnic divisions:\n    mestico, angolares (descendents of Angolan slaves), forros (descendents of\n    freed slaves), servicais (contract laborers from Angola, Mozambique, and\n    Cape Verde), tongas (children of servicais born on the islands), and\n    Europeans (primarily Portuguese)\nReligions:\n    Roman Catholic, Evangelical Protestant, Seventh-Day Adventist\nLanguages:\n    Portuguese (official)\nLiteracy:\n    57% (male 73%, female 42%) age 15 and over can read and write (1981)\nLabor force:\n    21,096 (1981); most of population engaged in subsistence agriculture and\n    fishing; labor shortages on plantations and of skilled workers; 56% of\n    population of working age (1983)\nOrganized labor:\n    NA\n\n:Sao Tome and Principe Government\n\nLong-form name:\n    Democratic Republic of Sao Tome and Principe\nType:\n    republic\nCapital:\n    Sao Tome\nAdministrative divisions:\n    2 districts (concelhos, singular - concelho); Principe, Sao Tome\nIndependence:\n    12 July 1975 (from Portugal)\nConstitution:\n    5 November 1975, approved 15 December 1982\nLegal system:\n    based on Portuguese law system and customary law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 12 July (1975)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National People's Assembly (Assembleia Popular Nacional)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Miguel TROVOADA (since 4 April 1991)\n  Head of Government:\n    Prime Minister Noberto COSTA ALEGRE (since 16 May 1992)\nPolitical parties and leaders:\n    Party for Democratic Convergence-Reflection Group (PCD-GR), Prime Minister\n    Daniel Lima Dos Santos DAIO, secretary general; Movement for the Liberation\n    of Sao Tome and Principe (MLSTP), Carlos da GRACA; Christian Democratic\n    Front (FDC), Alphonse Dos SANTOS; Democratic Opposition Coalition (CODO),\n    leader NA; other small parties\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 3 March 1991 (next to be held NA March 1996); results - Miguel\n    TROVOADA was elected without opposition in Sao Tome's first multiparty\n    presidential election\n  National People's Assembly:\n    last held 20 January 1991 (next to be held NA January 1996); results -\n    PCD-GR 54.4%, MLSTP 30.5%, CODO 5.2%, FDC 1.5%, other 8.3%; seats - (55\n    total) PCD-GR 33, MLSTP 21, CODO 1; note - this was the first multiparty\n    election in Sao Tome and Principe\nMember of:\n    ACP, AfDB, CEEAC, ECA, FAO, G-77, IBRD, ICAO, IDA, IFAD, ILO, IMF, INTERPOL,\n    ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UPU, WHO, WMO, WTO\nDiplomatic representation:\n    Ambassador Joaquim Rafael BRANCO; Chancery (temporary) at 801 Second Avenue,\n    Suite 603, New York, NY 10017; telephone (212) 697-4211\n  US:\n    Ambassador to Gabon is accredited to Sao Tome and Principe on a nonresident\n    basis and makes periodic visits to the islands\n\n:Sao Tome and Principe Government\n\nFlag:\n    three horizontal bands of green (top), yellow (double width), and green with\n    two black five-pointed stars placed side by side in the center of the yellow\n    band and a red isosceles triangle based on the hoist side; uses the popular\n    pan-African colors of Ethiopia\n\n:Sao Tome and Principe Economy\n\nOverview:\n    The economy has remained dependent on cocoa since the country gained\n    independence nearly 15 years ago. Since then, however, cocoa production has\n    gradually deteriorated because of drought and mismanagement, so that by 1987\n    output had fallen to less than 50% of its former levels. As a result, a\n    shortage of cocoa for export has created a serious balance-of-payments\n    problem. Production of less important crops, such as coffee, copra, and palm\n    kernels, has also declined. The value of imports generally exceeds that of\n    exports by a ratio of 4:1. The emphasis on cocoa production at the expense\n    of other food crops has meant that Sao Tome has to import 90% of food needs.\n    It also has to import all fuels and most manufactured goods. Over the years,\n    Sao Tome has been unable to service its external debt, which amounts to\n    roughly 80% of export earnings. Considerable potential exists for\n    development of a tourist industry, and the government has taken steps to\n    expand facilities in recent years. The government also implemented a\n    Five-Year Plan covering 1986-90 to restructure the economy and reschedule\n    external debt service payments in cooperation with the International\n    Development Association and Western lenders.\nGDP:\n    exchange rate conversion - $46.0 million, per capita $400; real growth rate\n    1.5% (1989)\nInflation rate (consumer prices):\n    36% (1989)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $10.2 million; expenditures $36.8 million, including capital\n    expenditures of $22.5 million (1989)\nExports:\n    $4.4 million (f.o.b., 1990 est.)\n  commodities:\n    cocoa 85%, copra, coffee, palm oil\n  partners:\n    FRG, GDR, Netherlands, China\nImports:\n    $21.3 million (f.o.b., 1990 est.)\n  commodities:\n    machinery and electrical equipment 54%, food products 23%, other 23%\n  partners:\n    Portugal, GDR, Angola, China\nExternal debt:\n    $147 million (1990 est.)\nIndustrial production:\n    growth rate 7.1% (1986)\nElectricity:\n    5,000 kW capacity; 10 million kWh produced, 80 kWh per capita (1991)\nIndustries:\n    light construction, shirts, soap, beer, fisheries, shrimp processing\nAgriculture:\n    dominant sector of economy, primary source of exports; cash crops - cocoa\n    (85%), coconuts, palm kernels, coffee; food products - bananas, papaya,\n    beans, poultry, fish; not self-sufficient in food grain and meat\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $8 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $89 million\nCurrency:\n    dobra (plural - dobras); 1 dobra (Db) = 100 centimos\n\n:Sao Tome and Principe Economy\n\nExchange rates:\n    dobras (Db) per US$1 - 260.0 (November 1991), 122.48 (December 1988), 72.827\n    (1987), 36.993 (1986)\nFiscal year:\n    calendar year\n\n:Sao Tome and Principe Communications\n\nHighways:\n    300 km (two-thirds are paved); roads on Principe are mostly unpaved and in\n    need of repair\nPorts:\n    Sao Tome, Santo Antonio\nCivil air:\n    10 major transport aircraft\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways 1,220-2,439 m\nTelecommunications:\n    minimal system; broadcast stations - 1 AM, 2 FM, no TV; 1 Atlantic Ocean\n    INTELSAT earth station\n\n:Sao Tome and Principe Defense Forces\n\nBranches:\n    Army, Navy, National Police\nManpower availability:\n    males 15-49, 30,188; 15,918 fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Saudi Arabia Geography\n\nTotal area:\n    1,945,000 km2\nLand area:\n    1,945,000 km2\nComparative area:\n    slightly less than one-fourth the size of the US\nLand boundaries:\n    4,532 km total; Iraq 808 km, Jordan 742 km, Kuwait 222 km, Oman 676 km,\n    Qatar 40 km, UAE 586 km, Yemen 1,458 km\nCoastline:\n    2,510 km\nMaritime claims:\n  Contiguous zone:\n    18 nm\n  Continental shelf:\n    not specific\n  Territorial sea:\n    12 nm\nDisputes:\n    no defined boundaries with Yemen; location and status of Saudi Arabia's\n    boundaries with Qatar and UAE are unresolved; Kuwaiti ownership of Qaruh and\n    Umm al Maradim Islands is disputed by Saudi Arabia\nClimate:\n    harsh, dry desert with great extremes of temperature\nTerrain:\n    mostly uninhabited, sandy desert\nNatural resources:\n    crude oil, natural gas, iron ore, gold, copper\nLand use:\n    arable land 1%; permanent crops NEGL%; meadows and pastures 39%; forest and\n    woodland 1%; other 59%; includes irrigated NEGL%\nEnvironment:\n    no perennial rivers or permanent water bodies; developing extensive coastal\n    seawater desalination facilities; desertification\nNote:\n    extensive coastlines on Persian Gulf and Red Sea provide great leverage on\n    shipping (especially crude oil) through Persian Gulf and Suez Canal\n\n:Saudi Arabia People\n\nPopulation:\n    17,050,934 (July 1992), growth rate 3.3% (1992); note - the population\n    figure is based on growth since the last official Saudi census of 1974 that\n    reported a total of 7 million persons and included foreign workers;\n    estimates from other sources may be 15-30% lower\nBirth rate:\n    39 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    59 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 68 years female (1992)\nTotal fertility rate:\n    6.7 children born/woman (1992)\nNationality:\n    noun - Saudi(s); adjective - Saudi or Saudi Arabian\nEthnic divisions:\n    Arab 90%, Afro-Asian 10%\nReligions:\n    Muslim 100%\nLanguages:\n    Arabic\nLiteracy:\n    62% (male 73%, female 48%) age 15 and over can read and write (1990 est.)\nLabor force:\n    5,000,000; about 60% are foreign workers; government 34%, industry and oil\n    28%, services 22%, and agriculture 16%\nOrganized labor:\n    trade unions are illegal\n\n:Saudi Arabia Government\n\nLong-form name:\n    Kingdom of Saudi Arabia\nType:\n    monarchy\nCapital:\n    Riyadh\nAdministrative divisions:\n    14 emirates (imarat, singular - imarah); Al Bahah, Al Hudud ash Shamaliyah,\n    Al Jawf, Al Madinah, Al Qasim, Al Qurayyat, Ar Riyad, Ash Sharqiyah, `Asir,\n    Ha'il, Jizan, Makkah, Najran, Tabuk\nIndependence:\n    23 September 1932 (unification)\nConstitution:\n    none; governed according to Shari`a (Islamic law)\nLegal system:\n    based on Islamic law, several secular codes have been introduced; commercial\n    disputes handled by special committees; has not accepted compulsory ICJ\n    jurisdiction\nNational holiday:\n    Unification of the Kingdom, 23 September (1932)\nExecutive branch:\n    monarch and prime minister, crown prince and deputy prime minister, Council\n    of Ministers\nLegislative branch:\n    none\nJudicial branch:\n    Supreme Council of Justice\nLeaders:\n  Chief of State and Head of Government:\n    King and Prime Minister FAHD bin `Abd al-`Aziz Al Sa`ud (since 13 June\n    1982); Crown Prince and Deputy Prime Minister `ABDALLAH bin `Abd al-`Aziz Al\n    Sa`ud (half-brother to the King, appointed heir to the throne 13 June 1982)\nSuffrage:\n    none\nElections:\n    none\nMember of:\n    ABEDA, AfDB, AFESD, AL, AMF, CCC, ESCWA, FAO, G-19, G-77, GCC, IAEA, IBRD,\n    ICAO, ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL,\n    IOC, ISO, ITU, LORCS, NAM, OAPEC, OAS (observer), OIC, OPEC, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador BANDAR Bin Sultan; Chancery at 601 New Hampshire Avenue NW,\n    Washington, DC 20037; telephone (202) 342-3800; there are Saudi Arabian\n    Consulates General in Houston, Los Angeles, and New York\n  US:\n    Ambassador Charles W. FREEMAN, Jr.; Embassy at Collector Road M, Diplomatic\n    Quarter, Riyadh (mailing address is American Embassy, Unit 61307, Riyadh;\n    International Mail: P. O. Box 94309, Riyadh 11693; or APO AE 09803-1307);\n    telephone [966] (1) 488-3800; Telex 406866; there are US Consulates General\n    in Dhahran and Jiddah (Jeddah)\nFlag:\n    green with large white Arabic script (that may be translated as There is no\n    God but God; Muhammad is the Messenger of God) above a white horizontal\n    saber (the tip points to the hoist side); green is the traditional color of\n    Islam\n\n:Saudi Arabia Economy\n\nOverview:\n    The petroleum sector accounts for roughly 70% of budget revenues, 37% of\n    GDP, and almost all export earnings. Saudi Arabia has the largest reserves\n    of petroleum in the world, ranks as the largest exporter of petroleum, and\n    plays a leading role in OPEC. For the 1990s the government intends to\n    encourage private economic activity and to foster the gradual process of\n    turning Saudi Arabia into a modern industrial state that retains traditional\n    Islamic values.\nGDP:\n    exchange rate conversion - $104 billion, per capita $5,800; real growth rate\n    1.5% (1991 est.)\nInflation rate (consumer prices):\n    3% (1991 est.)\nUnemployment rate:\n    0% (1989 est.)\nBudget:\n    revenues $40.3 billion; expenditures $48.3 billion, including capital\n    expenditures of $NA (1992)\nExports:\n    $44.3 billion (f.o.b., 1990)\n  commodities:\n    petroleum and petroleum products 85%\n  partners:\n    US 22%, Japan 22%, Singapore 7%, France 6%\nImports:\n    $21.5 billion (f.o.b., 1990)\n  commodities:\n    manufactured goods, transportation equipment, construction materials,\n    processed food products\n  partners:\n    US 16%, UK 14%, Japan 14%, FRG 7%\nExternal debt:\n    $18.9 billion (December 1989 est.)\nIndustrial production:\n    growth rate -1.1% (1989 est.); accounts for 37% of GDP, including petroleum\nElectricity:\n    30,000,000 kW capacity; 60,000 million kWh produced, 3,300 kWh per capita\n    (1991)\nIndustries:\n    crude oil production, petroleum refining, basic petrochemicals, cement,\n    small steel-rolling mill, construction, fertilizer, plastic\nAgriculture:\n    accounts for about 10% of GDP, 16% of labor force; fastest growing economic\n    sector; subsidized by government; products - wheat, barley, tomatoes,\n    melons, dates, citrus fruit, mutton, chickens, eggs, milk; approaching\n    self-sufficiency in food\nEconomic aid:\n    donor - pledged $64.7 billion in bilateral aid (1979-89)\nCurrency:\n    Saudi riyal (plural - riyals); 1 Saudi riyal (SR) = 100 halalas\nExchange rates:\n    Saudi riyals (SR) per US$1 - 3.7450 (fixed rate since late 1986), 3.7033\n    (1986)\nFiscal year:\n    calendar year\n\n:Saudi Arabia Communications\n\nRailroads:\n    886 km 1.435-meter standard gauge\nHighways:\n    74,000 km total; 35,000 km paved, 39,000 km gravel and improved earth\nPipelines:\n    crude oil 6,400 km, petroleum products 150 km, natural gas 2,200 km,\n    includes natural gas liquids 1,600 km\nPorts:\n    Jiddah, Ad Dammam, Ras Tanura, Jizan, Al Jubayl, Yanbu al Bahr, Yanbu al\n    Sinaiyah\nMerchant marine:\n    8l ships (1,000 GRT or over) totaling 884,470 GRT/1,254,882 DWT; includes 1\n    passenger, 7 short-sea passenger, 11 cargo, 14 roll-on/roll-off cargo, 3\n    container, 6 refrigerated cargo, 5 livestock carrier, 24 petroleum tanker, 7\n    chemical tanker, 1 liquefied gas, 1 specialized tanker, 1 bulk\nCivil air:\n    104 major transport aircraft available\nAirports:\n    211 total, 191 usable; 70 with permanent-surface runways; 14 with runways\n    over 3,659 m; 37 with runways 2,440-3,659 m; 105 with runways 1,220-2,439 m\nTelecommunications:\n    good system with extensive microwave and coaxial and fiber optic cable\n    systems; 1,624,000 telephones; broadcast stations - 43 AM, 13 FM, 80 TV;\n    radio relay to Bahrain, Jordan, Kuwait, Qatar, UAE, Yemen, and Sudan;\n    coaxial cable to Kuwait and Jordan; submarine cable to Djibouti, Egypt and\n    Bahrain; earth stations - 3 Atlantic Ocean INTELSAT, 2 Indian Ocean\n    INTELSAT, 1 ARABSAT, 1 INMARSAT\n\n:Saudi Arabia Defense Forces\n\nBranches:\n    Land Force (Army), Navy, Air Force, Air Defense Force, National Guard, Coast\n    Guard, Frontier Forces, Special Security Force, Public Security Force\nManpower availability:\n    males 15-49, 5,619,147; 3,118,261 fit for military service; 133,314 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $14.5 billion, 13% of GDP (1992 budget)\n\n:Senegal Geography\n\nTotal area:\n    196,190 km2\nLand area:\n    192,000 km2\nComparative area:\n    slightly smaller than South Dakota\nLand boundaries:\n    2,640 km total; The Gambia 740 km, Guinea 330 km, Guinea-Bissau 338 km, Mali\n    419 km, Mauritania 813 km\nCoastline:\n    531 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    short section of the boundary with The Gambia is indefinite; the\n    International Court of Justice (ICJ) on 12 November 1991 rendered its\n    decision on the Guinea-Bissau/ Senegal maritime boundary in favor of Senegal\n    - that decision has been rejected by Guinea-Bissau; boundary with Mauritania\nClimate:\n    tropical; hot, humid; rainy season (December to April) has strong southeast\n    winds; dry season (May to November) dominated by hot, dry harmattan wind\nTerrain:\n    generally low, rolling, plains rising to foothills in southeast\nNatural resources:\n    fish, phosphates, iron ore\nLand use:\n    arable land 27%; permanent crops 0%; meadows and pastures 30%; forest and\n    woodland 31%; other 12%; includes irrigated 1%\nEnvironment:\n    lowlands seasonally flooded; deforestation; overgrazing; soil erosion;\n    desertification\nNote:\n    The Gambia is almost an enclave\n\n:Senegal People\n\nPopulation:\n    8,205,058 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    80 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    54 years male, 57 years female (1992)\nTotal fertility rate:\n    6.2 children born/woman (1992)\nNationality:\n    noun - Senegalese (singular and plural); adjective - Senegalese\nEthnic divisions:\n    Wolof 36%, Fulani 17%, Serer 17%, Toucouleur 9%, Diola 9%, Mandingo 9%,\n    European and Lebanese 1%, other 2%\nReligions:\n    Muslim 92%, indigenous beliefs 6%, Christian 2% (mostly Roman Catholic)\nLanguages:\n    French (official); Wolof, Pulaar, Diola, Mandingo\nLiteracy:\n    38% (male 52%, female 25%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,509,000; 77% subsistence agricultural workers; 175,000 wage earners -\n    private sector 40%, government and parapublic 60%; 52% of population of\n    working age (1985)\nOrganized labor:\n    majority of wage-labor force represented by unions; however, dues-paying\n    membership very limited; major confederation is National Confederation of\n    Senegalese Labor (CNTS), an affiliate of the governing party\n\n:Senegal Government\n\nLong-form name:\n    Republic of Senegal\nType:\n    republic under multiparty democratic rule\nCapital:\n    Dakar\nAdministrative divisions:\n    10 regions (regions, singular - region); Dakar, Diourbel, Fatick, Kaolack,\n    Kolda, Louga, Saint-Louis, Tambacounda, Thies, Ziguinchor\nIndependence:\n    20 August 1960 (from France); The Gambia and Senegal signed an agreement on\n    12 December 1981 (effective 1 February 1982) that called for the creation of\n    a loose confederation to be known as Senegambia, but the agreement was\n    dissolved on 30 September 1989\nConstitution:\n    3 March 1963, last revised in 1991\nLegal system:\n    based on French civil law system; judicial review of legislative acts in\n    Supreme Court, which also audits the government's accounting office; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 4 April (1960)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Abdou DIOUF (since 1 January 1981)\n  Head of Government:\n    Prime Minister Habib THIAM (since 7 April 1991)\nPolitical parties and leaders:\n    Socialist Party (PS), President Abdou DIOUF; Senegalese Democratic Party\n    (PDS), Abdoulaye WADE; 13 other small uninfluential parties\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 28 February 1988 (next to be held NA February 1993); results -\n    Abdou DIOUF (PS) 73%, Abdoulaye WADE (PDS) 26%, other 1%\n  National Assembly:\n    last held 28 February 1988 (next to be held NA February 1993); results - PS\n    71%, PDS 25%, other 4%; seats - (120 total) PS 103, PDS 17\nOther political or pressure groups:\n    students, teachers, labor, Muslim Brotherhoods\nMember of:\n    ACCT, ACP, AfDB, CCC, CEAO, ECA, ECOWAS, FAO, FZ, G-77, GATT, IAEA, IBRD,\n    ICAO, ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO\n    (correspondent), ITU, LORCS, NAM, OAU, OIC, PCA, UN, UNCTAD, UNESCO, UNIDO,\n    UNIIMOG, UPU, WADB, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Ibra Deguene KA; Chancery at 2112 Wyoming Avenue NW, Washington,\n    DC 20008; telephone (202) 234-0540 or 0541\n  US:\n    Ambassador Katherine SHIRLEY; Embassy on Avenue Jean XXIII at the corner of\n    Avenue Kleber, Dakar (mailing address is B. P. 49, Dakar); telephone [221]\n    23-42-96 or 23-34-24; FAX [221] 22-29-91\n\n:Senegal Government\n\nFlag:\n    three equal vertical bands of green (hoist side), yellow, and red with a\n    small green five-pointed star centered in the yellow band; uses the popular\n    pan-African colors of Ethiopia\n\n:Senegal Economy\n\nOverview:\n    The agricultural sector accounts for about 20% of GDP and provides\n    employment for about 75% of the labor force. About 40% of the total\n    cultivated land is used to grow peanuts, an important export crop. The\n    principal economic resource is fishing, which brought in about $200 million\n    or about 25% of total foreign exchange earnings in 1987. Mining is dominated\n    by the extraction of phosphate, but production has faltered because of\n    reduced worldwide demand for fertilizers in recent years. Over the past 10\n    years tourism has become increasingly important to the economy.\nGDP:\n    exchange rate conversion - $5.0 billion, per capita $615; real growth rate\n    3.6% (1990)\nInflation rate (consumer prices):\n    2.0% (1990)\nUnemployment rate:\n    3.5% (1987)\nBudget:\n    revenues $921 million; expenditures $1,024 million; including capital\n    expenditures of $14 million (FY89 est.)\nExports:\n    $814 million (f.o.b., 1990 est.)\n  commodities:\n    manufactures 30%, fish products 27%, peanuts 11%, petroleum products 11%,\n    phosphates 10%\n  partners:\n    France, other EC members, Mali, Ivory Coast, India\nImports:\n    $1.05 billion (c.i.f., 1990 est.)\n  commodities:\n    semimanufactures 30%, food 27%, durable consumer goods 17%, petroleum 12%,\n    capital goods 14%\n  partners:\n    France, other EC, Ivory Coast, Nigeria, Algeria, China, Japan\nExternal debt:\n    $2.9 billion (1990)\nIndustrial production:\n    growth rate 4.7% (1989); accounts for 15% of GDP\nElectricity:\n    215,000 kW capacity; 760 million kWh produced, 100 kWh per capita (1991)\nIndustries:\n    agricultural and fish processing, phosphate mining, petroleum refining,\n    building materials\nAgriculture:\n    including fishing, accounts for 20% of GDP and more than 75% of labor force;\n    major products - peanuts (cash crop), millet, corn, sorghum, rice, cotton,\n    tomatoes, green vegetables; estimated two-thirds self-sufficient in food;\n    fish catch of 299,000 metric tons in 1987\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $551 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $5.23 billion; OPEC\n    bilateral aid (1979-89), $589 million; Communist countries (1970-89), $295\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 269.01 (January\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\n\n:Senegal Economy\n\nFiscal year:\n    1 July - 30 June; note - in January 1993, Senegal will switch to a calendar\n    year\n\n:Senegal Communications\n\nRailroads:\n    1,034 km 1.000-meter gauge; all single track except 70 km double track Dakar\n    to Thies\nHighways:\n    14,007 km total; 3,777 km paved, 10,230 km laterite or improved earth\nInland waterways:\n    897 km total; 785 km on the Senegal, 112 km on the Saloum\nPorts:\n    Dakar, Kaolack, Foundiougne, Ziguinchor\nMerchant marine:\n    2 ships (1,000 GRT and over) totaling 7,676 GRT/12,310 DWT; includes 1\n    cargo, 1 bulk\nCivil air:\n    3 major transport aircraft\nAirports:\n    25 total, 19 usable; 10 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    above-average urban system, using microwave and cable; broadcast stations -\n    8 AM, no FM, 1 TV; 3 submarine cables; 1 Atlantic Ocean INTELSAT earth\n    station\n\n:Senegal Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Gendarmerie, National Police\nManpower availability:\n    males 15-49, 1,814,452; 947,723 fit for military service; 88,271 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $100 million, 2% of GDP (1989 est.)\n\n:Serbia and Montenegro Geography\n\nTotal area:\n    102,350 km2\nLand area:\n    102,136 km2: note - Serbia has a total area and a land area of 88,412 km2\n    while Montenegro has a total area of 13,938 km2 and a land area of 13,724\n    km2\nComparative area:\n    slightly larger than Kentucky; note - Serbia is slightly larger than Maine\n    while Montenegro is slightly larger than Connecticut\nLand boundaries:\n    2,234 km total; Albania 287 km (114 km with Serbia, 173 km with Montenegro),\n    Bosnia and Hercegovina 527 km (312 km with Serbia, 215 km with Montenegro),\n    Bulgaria 318 km, Croatia (north) 239 km, Croatia (south) 15 km, Hungary 151\n    km, Macedonia 221 km, Romania 476 km; note - the internal boundary between\n    Montenegro and Serbia is 211 km\nCoastline:\n    199 km; Montenegro 199 km, Serbia 0 km\nMaritime claims:\n    none - landlocked\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    NA meter depth\n  Exclusive fishing zone:\n    NA nm\n  Exclusive economic zone:\n    NA nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Sandzak region bordering northern Montenegro and southeastern Serbia -\n    Muslims seeking autonomy; Vojvodina taken from Hungary and awarded to the\n    former Yugoslavia (Serbia) by Treaty of Trianon in 1920; disputes with\n    Bosnia and Herzegovina and Croatia over Serbian populated areas; Albanian\n    minority in Kosovo seeks independence from Serbian Republic\nClimate:\n    in the north, continental climate - cold winter and hot, humid summers with\n    well distributed rainfall; central portion, continental and Mediterranean\n    climate; to the south, Adriatic climate along the coast, hot, dry summers\n    and autumns and relatively cold winters with heavy snowfall inland\nTerrain:\n    extremely varied; to the north, rich fertile plains; to the east, limestone\n    ranges and basins; to the southeast, ancient mountain and hills; to the\n    southwest, extremely high shoreline with no islands off the coast; home of\n    largest lake in former Yugoslavia, Lake Scutari\nNatural resources:\n    oil, gas, coal, antimony, copper, lead, zinc, nickel, gold, pyrite, chrome\nLand use:\n    arable land 30%; permanent crops 5%; meadows and pastures 20%; forest and\n    woodland 25%; other 20%; includes irrigated 5%\nEnvironment:\n    coastal water pollution from sewage outlets, especially in tourist related\n    areas such as Kotor; air pollution around Belgrade and other industrial\n    cities; water pollution along Danube from industrial waste dump into the\n    Sava which drains into the Danube; subject to destructive earthquakes\nNote:\n    controls one of the major land routes from Western Europe to Turkey and the\n    Near East; strategic location along the Adriatic coast\n\n:Serbia and Montenegro People\n\nPopulation:\n    10,642,000 (July 1992), growth rate NA% (1991)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    Serbia - 70.11 years male, 75.21 years female (1992); Montenegro - 76.33\n    years male, 82.27 years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Serbian(s) and Montenegrin(s); adjective - Serbian and Montenegrin\nEthnic divisions:\n    Serbs 63%, Albanians 14%, Montenegrins 6%, Hungarians 4%\nReligions:\n    Orthodox 65%, Muslim 19%, Roman Catholic 4%, Protestant 1%, other 11%\nLanguages:\n    Serbo-Croatian 100%\nLiteracy:\n    89% (male 95%, female 83%) age 10 and over can read and write (1991 est.)\nLabor force:\n    2,640,909; industry, mining 40%, agriculture 5% (1990)\nOrganized labor:\n    NA\n\n:Serbia and Montenegro Government\n\nLong-form name:\n    none\nType:\n    republic\nCapital:\n    Belgrade\nAdministrative divisions:\n    2 provinces (pokajine, singular - pokajina); and 2 automous provinces*;\n    Kosovo*, Montenegro, Serbia, Vojvodina*\nIndependence:\n    NA April 1992\nConstitution:\n    NA April 1992\nLegal system:\n    based on civil law system\nNational holiday:\n    NA\nExecutive branch:\n    president, vice president, prime minister, deputy prime minister\nLegislative branch:\n    Parliament\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Dobric COSIC (since NA), Vice President Branko KOSTIC (since July\n    1991); note - Slobodan MILOSEVIC is president of Serbia\n  Head of Government:\n    Prime Minister Milan PANIC (since 14 July 1992), Deputy Prime Minister\n    Aleksandr MITROVIC (since March 1989)\nPolitical parties and leaders:\n    former Communisty Party, Slobodan MILOSEVIC; Serbian Radical Party, Vojislav\n    SESELJ; Serbian Renewal Party, Vok DRASKOVIC\nSuffrage:\n    at age 16 if employed, universal at age 18\nElections:\n  President:\n    NA\n  Parliament:\n    last held 4 June 1992 (next to be held NA); results - percent of vote by\n    party NA; seats - (138 total) former Community Party 73, Radical Party 33,\n    other 32\nCommunists:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE, UN\nDiplomatic representation:\n    none; US does not recognize Serbia and Montenegro\nFlag:\n    NA\n\n:Serbia and Montenegro Economy\n\nOverview:\n    The swift collapse of the Yugoslav federation has been accompanied by bloody\n    ethnic warfare, the destabilization of republic boundaries, and the breakup\n    of important interrepublic trade flows. The situation in Serbia and\n    Montenegro remains fluid in view of the extensive political and military\n    strife. This new state faces major economic problems. First, like the other\n    former Yugoslav republics, Serbia and Montenegro depended on their sister\n    republics for large amounts of foodstuffs, energy supplies, and\n    manufactures. Wide varieties in climate, mineral resources, and levels of\n    technology among the six republics accentuated this interdependence, as did\n    the Communist practice of concentrating much industrial output in a small\n    number of giant plants. The breakup of many of the trade links, the sharp\n    drop in output as industrial plants lost suppliers and markets, and the\n    destruction of physical assets in the fighting all have contributed to the\n    economic difficulties of the republics. One singular factor in the economic\n    situation of Serbia and Montenegro is the continuation in office of a\n    Communist government that is primarily interested in political and military\n    mastery, not economic reform. A further complication is the major economic\n    sanctions by the leading industrial nations.\nGDP:\n    exchange rate conversion - $44 billion, per capita $4,200; real growth rate\n    NA% (1990)\nInflation rate (consumer prices):\n    60% per month\nUnemployment rate:\n    25-40%\nBudget:\n    NA\nExports:\n    $4.4 billion (f.o.b., 1990)\n  commodities:\n    machinery and transport equipment 29%, manufactured goods 28.5%,\n    miscellaneous manufactured articles 13.5%, chemicals 11%, food and live\n    animals 9%, raw materials 6%, fuels and lubricants 2%, beverages and tobacco\n    1%\n  partners:\n    principally the other former Yugoslav republics; Italy, Germany, other EC,\n    the former USSR, East European countries, US\nImports:\n    $6.4 billion (c.i.f., 1990)\n  commodities:\n    machinery and transport equipment 26%, fuels and lubricants 18%,\n    manufactured goods 16%, chemicals 12.5%, food and live animals 11%,\n    miscellaneous manufactured items 8%, raw materials, including coking coal\n    for the steel industry, 7%, beverages, tobacco, and edible oils 1.5%\n  partners:\n    principally the other former Yugoslav republics; the former USSR, EC\n    countries (mainly Italy and Germany), East European countries, US\nExternal debt:\n    $4.2 billion (may assume some part of foreign debt of former Yugoslavia)\nIndustrial production:\n    growth rate -20% or greater (1991 est.)\nElectricity:\n    8,633,000 kW capacity; 34,600 million kWh produced, 3,496 kWh per capita\n    (1991)\n\n:Serbia and Montenegro Economy\n\nIndustries:\n    machine building (aircraft, trucks, and automobiles; armored vehicles and\n    weapons; electrical equipment; agricultural machinery), metallurgy (steel,\n    aluminum, copper, lead, zinc, chromium, antimony, bismuth, cadmium), mining\n    (coal, bauxite, nonferrous ore, iron ore, limestone), consumer goods\n    (textiles, footwear, foodstuffs, appliances), electronics, petroleum\n    products, chemicals, and pharmaceuticals\nAgriculture:\n    the fertile plains of Vojvodina produce 80% of the cereal production of the\n    former Yugoslavia and most of the cotton, oilseeds, and chicory; Vojvodina\n    also produces fodder crops to support intensive beef and dairy production;\n    Serbia proper, although hilly, has a well-distributed rainfall and a long\n    growing season; produces fruit, grapes, and cereals; in this area, livestock\n    production (sheep and cattle) and dairy farming prosper; Kosovo province\n    produces fruits, vegetables, tobacco, and a small amount of cereals; the\n    mountainous pastures of Kosovo and Montenegro support sheep and goat\n    husbandry; Montenegro has only a small agriculture sector, mostly near the\n    coast where a Mediterranean climate permits the culture of olives, citrus,\n    grapes, and rice\nIllicit drugs:\n    NA\nEconomic aid:\n    NA\nCurrency:\n    Yugoslav New Dinar (plural - New Dinars); 1 Yugo New Dinar (YD) = 100 paras\nExchange rates:\n    Yugoslav New Dinars (YD) per US $1 - 28.230 (December 1991), 15.162 (1990),\n    15.528 (1989), 0.701 (1988), 0.176 (1987)\nFiscal year:\n    calendar year\n\n:Serbia and Montenegro Communications\n\nRailroads:\n    NA\nHighways:\n    46,019 km total (1990); 26,949 km paved, 10,373 km gravel, 8,697 km earth\nInland waterways:\n    NA km\nPipelines:\n    crude oil 415 km, petroleum products 130 km, natural gas 2,110 km\nPorts:\n    maritime - Bar; inland - Belgrade\nMerchant marine:\n    43 ships (1,000 GRT or over) totaling 866,915 GRT/1,449,094 DWT; includes 19\n    cargo, 5 container, 16 bulk carriers, 2 combination/ore carrier and 1\n    passenger ship, under Serbian and Montenegrin flag; note - Montenegro also\n    operates 3 bulk carriers under the flags of Panama and Saint Vincent and the\n    Grenadines\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    700,000 telephones; broadcast stations - 26 AM, 9 FM, 18 TV; 2,015,000\n    radios; 1,000,000 TVs; satellite ground stations - 1 Atlantic Ocean INTELSAT\n\n:Serbia and Montenegro Defense Forces\n\nBranches:\n    Army, Navy, and Air Forces\nManpower availability:\n    males 15-49, 2,545,357; NA fit for military service; 96,832 reach military\n    age (18) annually (est.)\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Seychelles Geography\n\nTotal area:\n    455 km2\nLand area:\n    455 km2\nComparative area:\n    slightly more than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    491 km\nMaritime claims:\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims Tromelin Island\nClimate:\n    tropical marine; humid; cooler season during southeast monsoon (late May to\n    September); warmer season during northwest monsoon (March to May)\nTerrain:\n    Mahe Group is granitic, narrow coastal strip, rocky, hilly; others are\n    coral, flat, elevated reefs\nNatural resources:\n    fish, copra, cinnamon trees\nLand use:\n    arable land 4%; permanent crops 18%; meadows and pastures 0%; forest and\n    woodland 18%; other 60%\nEnvironment:\n    lies outside the cyclone belt, so severe storms are rare; short droughts\n    possible; no fresh water - catchments collect rain; 40 granitic and about 50\n    coralline islands\nNote:\n    located north-northeast of Madagascar in the Indian Ocean\n\n:Seychelles People\n\nPopulation:\n    69,519 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    23 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -8 migrants/1,000 population (1992)\nInfant mortality rate:\n    15 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 75 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Seychellois (singular and plural); adjective - Seychelles\nEthnic divisions:\n    Seychellois (mixture of Asians, Africans, Europeans)\nReligions:\n    Roman Catholic 90%, Anglican 8%, other 2%\nLanguages:\n    English and French (official); Creole\nLiteracy:\n    85% (male NA%, female NA%) age 15 and over can read and write (1990)\nLabor force:\n    27,700; industry and commerce 31%, services 21%, government 20%,\n    agriculture, forestry, and fishing 12%, other 16% (1985); 57% of population\n    of working age (1983)\nOrganized labor:\n    three major trade unions\n\n:Seychelles Government\n\nLong-form name:\n    Republic of Seychelles\nType:\n    republic\nCapital:\n    Victoria\nAdministrative divisions:\n    23 administrative districts; Anse aux Pins, Anse Boileau, Anse Etoile, Anse\n    Louis, Anse Royale, Baie Lazare, Baie Sainte Anne, Beau Vallon, Bel Air, Bel\n    Ombre, Cascade, Glacis, Grand' Anse (on Mahe Island), Grand' Anse (on\n    Praslin Island), La Digue, La Riviere Anglaise, Mont Buxton, Mont Fleuri,\n    Plaisance, Pointe La Rue, Port Glaud, Saint Louis, Takamaka\nIndependence:\n    29 June 1976 (from UK)\nConstitution:\n    5 June 1979\nLegal system:\n    based on English common law, French civil law, and customary law\nNational holiday:\n    Liberation Day (anniversary of coup), 5 June (1977)\nExecutive branch:\n    president, Council of Ministers\nLegislative branch:\n    unicameral People's Assembly (Assemblee du Peuple)\nJudicial branch:\n    Court of Appeal, Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President France Albert RENE (since 5 June 1977)\nPolitical parties and leaders:\n    ruling party - Seychelles People's Progressive Front (SPPF), France Albert\n    RENE; note - in December 1991, President RENE announced that the Seychelles\n    would begin an immediate transition to a multiparty political system;\n    registration of new political parties was scheduled to begin in January 1992\nSuffrage:\n    universal at age 17\nElections:\n    election of delegates to a multiparty constitutional conference is scheduled\n    for June 1992\n  President:\n    last held 9-11 June 1989 (next to be held NA June 1994); results - President\n    France Albert RENE reelected without opposition\n  People's Assembly:\n    last held 5 December 1987 (next to be held NA December 1992); results - SPPF\n    was the only legal party; seats - (25 total, 23 elected) SPPF 23\nOther political or pressure groups:\n    trade unions, Roman Catholic Church\nMember of:\n    ACCT, ACP, AfDB, C, ECA, FAO, G-77, IBRD, ICAO, ICFTU, IFAD, IFC, ILO, IMF,\n    IMO, INTERPOL, IOC, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WMO\nDiplomatic representation:\n    Second Secretary, Charge d'Affaires ad interim Marc R. MARENGO; Chancery\n    (temporary) at 820 Second Avenue, Suite 900F, New York, NY 10017; telephone\n    (212) 687-9766\n  US:\n    Ambassador Richard W. CARLSON; Embassy at 4th Floor, Victoria House,\n    Victoria (mailing address is Box 148, Victoria, and Victoria House, Box 251,\n    Victoria, Mahe, Seychelles, or APO AE 09815-2501); telephone (248) 25256;\n    FAX (248) 25189\n\n:Seychelles Government\n\nFlag:\n    three horizontal bands of red (top), white (wavy), and green; the white band\n    is the thinnest, the red band is the thickest\n\n:Seychelles Economy\n\nOverview:\n    In this small, open, tropical island economy, the tourist industry employs\n    about 30% of the labor force and provides more than 70% of hard currency\n    earnings. In recent years the government has encouraged foreign investment\n    in order to upgrade hotels and other services. At the same time, the\n    government has moved to reduce the high dependence on tourism by promoting\n    the development of farming, fishing, and small-scale manufacturing.\nGDP:\n    exchange rate conversion - $350 million, per capita $5,200; real growth rate\n    -4.5% (1991 est.)\nInflation rate (consumer prices):\n    1.8% (1990 est.)\nUnemployment rate:\n    9% (1987)\nBudget:\n    revenues $180 million; expenditures $202 million, including capital\n    expenditures of $32 million (1989)\nExports:\n    $40 million (f.o.b., 1990 est.)\n  commodities:\n    fish, copra, cinnamon bark, petroleum products (reexports)\n  partners:\n    France 63%, Pakistan 12%, Reunion 10%, UK 7% (1987)\nImports:\n    $186 million (f.o.b., 1990 est.)\n  commodities:\n    manufactured goods, food, tobacco, beverages, machinery and transportation\n    equipment, petroleum products\n  partners:\n    UK 20%, France 14%, South Africa 13%, PDRY 13%, Singapore 8%, Japan 6%\n    (1987)\nExternal debt:\n    $189 million (1991 est.)\nIndustrial production:\n    growth rate 7% (1987); accounts for 10% of GDP\nElectricity:\n    30,000 kW capacity; 80 million kWh produced, 1,160 kWh per capita (1991)\nIndustries:\n    tourism, processing of coconut and vanilla, fishing, coir rope factory, boat\n    building, printing, furniture, beverage\nAgriculture:\n    accounts for 7% of GDP, mostly subsistence farming; cash crops - coconuts,\n    cinnamon, vanilla; other products - sweet potatoes, cassava, bananas;\n    broiler chickens; large share of food needs imported; expansion of tuna\n    fishing under way\nEconomic aid:\n    US commitments, including Ex-Im (FY78-89), $26 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1978-89), $315 million; OPEC\n    bilateral aid (1979-89), $5 million; Communist countries (1970-89), $60\n    million\nCurrency:\n    Seychelles rupee (plural - rupees); 1 Seychelles rupee (SRe) = 100 cents\nExchange rates:\n    Seychelles rupees (SRe) per US$1 - 5.2946 (March 1992), 5.2893 (1991),\n    5.3369 (1990), 5.6457 (1989), 5.3836 (1988), 5.6000 (1987)\nFiscal year:\n    calendar year\n\n:Seychelles Communications\n\nHighways:\n    260 km total; 160 km paved, 100 km crushed stone or earth\nPorts:\n    Victoria\nMerchant marine:\n    1 refrigerated cargo totaling 1,827 GRT/2,170 DWT\nCivil air:\n    1 major transport aircraft\nAirports:\n    14 total, 14 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    direct radio communications with adjacent islands and African coastal\n    countries; 13,000 telephones; broadcast stations - 2 AM, no FM, 2 TV; 1\n    Indian Ocean INTELSAT earth station; USAF tracking station\n\n:Seychelles Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Presidential Protection Unit, Police Force, Militia\nManpower availability:\n    males 15-49, 17,739; 9,096 fit for military service\nDefense expenditures:\n    exchange rate conversion - $12 million, 4% of GDP (1990 est.)\n\n:Sierra Leone Geography\n\nTotal area:\n    71,740 km2\nLand area:\n    71,620 km2\nComparative area:\n    slightly smaller than South Carolina\nLand boundaries:\n    958 km total; Guinea 652 km, Liberia 306 km\nCoastline:\n    402 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid; summer rainy season (May to December); winter dry\n    season (December to April)\nTerrain:\n    coastal belt of mangrove swamps, wooded hill country, upland plateau,\n    mountains in east\nNatural resources:\n    diamonds, titanium ore, bauxite, iron ore, gold, chromite\nLand use:\n    arable land 25%; permanent crops 2%; meadows and pastures 31%; forest and\n    woodland 29%; other 13%; includes irrigated NEGL%\nEnvironment:\n    extensive mangrove swamps hinder access to sea; deforestation; soil\n    degradation\n\n:Sierra Leone People\n\nPopulation:\n    4,456,737 (July 1992), growth rate -0.2% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    20 deaths/1,000 population (1992)\nNet migration rate:\n    -28 migrants/1,000 population (1992)\nInfant mortality rate:\n    148 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    43 years male, 48 years female (1992)\nTotal fertility rate:\n    6.1 children born/woman (1992)\nNationality:\n    noun - Sierra Leonean(s); adjective - Sierra Leonean\nEthnic divisions:\n    native African 99% (Temne 30%, Mende 30%); Creole, European, Lebanese, and\n    Asian 1%; 13 tribes\nReligions:\n    Muslim 30%, indigenous beliefs 30%, Christian 10%, other or none 30%\nLanguages:\n    English (official); regular use limited to literate minority; principal\n    vernaculars are Mende in south and Temne in north; Krio is the language of\n    the resettled ex-slave population of the Freetown area and is lingua franca\nLiteracy:\n    21% (male 31%, female 11%) age 15 and over can read and write English,\n    Mende, Temne, or Arabic (1990 est.)\nLabor force:\n    1,369,000 (est.); agriculture 65%, industry 19%, services 16% (1981); only\n    about 65,000 earn wages (1985); 55% of population of working age\nOrganized labor:\n    35% of wage earners\n\n:Sierra Leone Government\n\nLong-form name:\n    Republic of Sierra Leone\nType:\n    military government\nCapital:\n    Freetown\nAdministrative divisions:\n    Western Area and 3 provinces; Eastern, Northern, Southern\nIndependence:\n    27 April 1961 (from UK)\nConstitution:\n    1 October 1991; amended September 1991\nLegal system:\n    based on English law and customary laws indigenous to local tribes; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    Republic Day, 27 April (1961)\nExecutive branch:\n    National Provisional Ruling Council\nLegislative branch:\n    unicameral House of Representatives (suspended after coup of 29 April 1992)\nJudicial branch:\n    Supreme Court (suspended after coup of 29 April 1992)\nLeaders:\n  Chief of State and Head of Government:\n    President Gen. Joseph Saidu MOMOH was ousted in coup of 29 April 1992;\n    succeeded by Chairman of the National Provisional Ruling Council Valentine\n    STRASSER (since 29 April 1992)\nPolitical parties and leaders:\n    status of existing political parties are unknown following 29 April 1992\n    coup\nSuffrage:\n    universal at age 18\nElections:\n    suspended after 29 April 1992 coup; Chairman STRASSER promises multi-party\n    elections sometime in the future\nMember of:\n    ACP, AfDB, C, CCC, ECA, ECOWAS, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICFTU,\n    IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTERPOL, IOC, ITU, LORCS, NAM, OAU,\n    OIC, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador (vacant); Chancery at 1701 19th Street NW, Washington, DC 20009;\n    telephone (202) 939-9261\n  US:\n    Ambassador Johnny YOUNG; Embassy at the corner of Walpole and Siaka Stevens\n    Street, Freetown; telephone [232] (22) 226-481; FAX [232] (22) 225471\nFlag:\n    three equal horizontal bands of light green (top), white, and light blue\n\n:Sierra Leone Economy\n\nOverview:\n    The economic and social infrastructure is not well developed. Subsistence\n    agriculture dominates the economy, generating about one-third of GDP and\n    employing about two-thirds of the working population. Manufacturing, which\n    accounts for roughly 10% of GDP, consists mainly of the processing of raw\n    materials and of light manufacturing for the domestic market. Diamond mining\n    provides an important source of hard currency. The economy suffers from high\n    unemployment, rising inflation, large trade deficits, and a growing\n    dependency on foreign assistance. The government in 1990 was attempting to\n    get the budget deficit under control and, in general, to bring economic\n    policy in line with the recommendations of the IMF and the World Bank. Since\n    March 1991, however, military incursions by Liberian rebels in southern and\n    eastern Sierra Leone have severely strained the economy and have undermined\n    efforts to institute economic reforms.\nGDP:\n    exchange rate conversion - $1.4 billion, per capita $330; real growth rate\n    3% (FY91 est.)\nInflation rate (consumer prices):\n    110% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $134 million; expenditures $187 million, including capital\n    expenditures of $32 million (FY91 est.)\nExports:\n    $138 million (f.o.b., 1990)\n  commodities:\n    rutile 50%, bauxite 17%, cocoa 11%, diamonds 3%, coffee 3%\n  partners:\n    US, UK, Belgium, FRG, other Western Europe\nImports:\n    $146 million (c.i.f., 1990)\n  commodities:\n    capital goods 40%, food 32%, petroleum 12%, consumer goods 7%, light\n    industrial goods\n  partners:\n    US, EC, Japan, China, Nigeria\nExternal debt:\n    $572 million (1990)\nIndustrial production:\n    NA\nElectricity:\n    85,000 kW capacity; 185 million kWh produced, 45 kWh per capita (1991)\nIndustries:\n    mining (diamonds, bauxite, rutile), small-scale manufacturing (beverages,\n    textiles, cigarettes, footwear), petroleum refinery\nAgriculture:\n    accounts for over 30% of GDP and two-thirds of the labor force; largely\n    subsistence farming; cash crops - coffee, cocoa, palm kernels; harvests of\n    food staple rice meets 80% of domestic needs; annual fish catch averages\n    53,000 metric tons\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $161 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $848 million; OPEC\n    bilateral aid (1979-89), $18 million; Communist countries (1970-89), $101\n    million\nCurrency:\n    leone (plural - leones); 1 leone (Le) = 100 cents\n\n:Sierra Leone Economy\n\nExchange rates:\n    leones (Le) per US$1 - 476.74 (March 1992), 295.34 (1991), 144.9275 (1990),\n    58.1395 (1989), 31.2500 (1988), 30.7692 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Sierra Leone Communications\n\nRailroads:\n    84 km 1.067-meter narrow-gauge mineral line is used on a limited basis\n    because the mine at Marampa is closed\nHighways:\n    7,400 km total; 1,150 km paved, 490 km laterite (some gravel), remainder\n    improved earth\nInland waterways:\n    800 km; 600 km navigable year round\nPorts:\n    Freetown, Pepel, Bonthe\nMerchant marine:\n    1 cargo ship totaling 5,592 GRT/9,107 DWT\nCivil air:\n    no major transport aircraft\nAirports:\n    12 total, 7 usable; 4 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    marginal telephone and telegraph service; national microwave system\n    unserviceable at present; 23,650 telephones; broadcast stations - 1 AM, 1\n    FM, 1 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Sierra Leone Defense Forces\n\nBranches:\n    Army, Navy, National Police Force, Special Security Detachment\nManpower availability:\n    males 15-49, 976,147; 472,112 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $6 million, 0.7% of GDP (1988 est.)\n\n:Singapore Geography\n\nTotal area:\n    632.6 km2\nLand area:\n    622.6 km2\nComparative area:\n    slightly less than 3.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    193 km\nMaritime claims:\n  Exclusive fishing zone:\n    12 nm\n  Territorial sea:\n    3 nm\nDisputes:\n    two islands in dispute with Malaysia\nClimate:\n    tropical; hot, humid, rainy; no pronounced rainy or dry seasons;\n    thunderstorms occur on 40% of all days (67% of days in April)\nTerrain:\n    lowland; gently undulating central plateau contains water catchment area and\n    nature preserve\nNatural resources:\n    fish, deepwater ports\nLand use:\n    arable land 4%; permanent crops 7%; meadows and pastures 0%; forest and\n    woodland 5%; other 84%\nEnvironment:\n    mostly urban and industrialized\nNote:\n    focal point for Southeast Asian sea routes\n\n:Singapore People\n\nPopulation:\n    2,792,092 (July 1992), growth rate 1.3% (1992)\nBirth rate:\n    18 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 78 years female (1992)\nTotal fertility rate:\n    1.9 children born/woman (1992)\nNationality:\n    noun - Singaporean(s); adjective - Singapore\nEthnic divisions:\n    Chinese 76.4%, Malay 14.9%, Indian 6.4%, other 2.3%\nReligions:\n    majority of Chinese are Buddhists or atheists; Malays are nearly all Muslim\n    (minorities include Christians, Hindus, Sikhs, Taoists, Confucianists)\nLanguages:\n    Chinese, Malay, Tamil, and English (all official); Malay (national)\nLiteracy:\n    88% (male 93%, female 84%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,485,800; financial, business, and other services 30.2%, manufacturing\n    28.4%, commerce 22.0%, construction 9.0%, other 10.4% (1990)\nOrganized labor:\n    210,000; 16.1% of labor force (1989)\n\n:Singapore Government\n\nLong-form name:\n    Republic of Singapore\nType:\n    republic within Commonwealth\nCapital:\n    Singapore\nAdministrative divisions:\n    none\nIndependence:\n    9 August 1965 (from Malaysia)\nConstitution:\n    3 June 1959, amended 1965; based on preindependence State of Singapore\n    Constitution\nLegal system:\n    based on English common law; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 9 August (1965)\nExecutive branch:\n    president, prime minister, two deputy prime ministers, Cabinet\nLegislative branch:\n    unicameral Parliament\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President WEE Kim Wee (since 3 September 1985)\n  Head of Government:\n    Prime Minister GOH Chok Tong (since 28 November 1990); Deputy Prime Minister\n    LEE Hsien Loong (since 28 November 1990); Deputy Prime Ministers ONG Teng\n    Cheong (since 2 January 1985) and LEE Hsien Loong\nPolitical parties and leaders:\n  government:\n    People's Action Party (PAP), LEE Kuan Yew, secretary general;\n  opposition:\n    Workers' Party (WP), J. B. JEYARETNAM; Singapore Democratic Party (SDP),\n    CHIAM See Tong; National Solidarity Party (NSP), leader NA; Barisan Sosialis\n    (BS, Socialist Front), leader NA\nSuffrage:\n    universal and compulsory at age 20\nElections:\n  President:\n    last held 31 August 1989 (next to be held NA August 1993); results -\n    President WEE Kim Wee was reelected by Parliament without opposition\n  Parliament:\n    last held 31 August 1991 (next to be held 31 August 1996); results - percent\n    of vote by party NA; seats - (81 total) PAP 77, SDP 3, WP 1\nCommunists:\n    200-500; Barisan Sosialis infiltrated by Communists; note - Communist party\n    illegal\nMember of:\n    APEC, AsDB, ASEAN, C, CCC, CP, ESCAP, G-77, GATT, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ISO, ITU,\n    LORCS, NAM, UN, UNCTAD, UPU, WHO, WMO\nDiplomatic representation:\n    Ambassador S. R. NATHAN; Chancery at 1824 R Street NW, Washington, DC 20009;\n    telephone (202) 667-7555\n  US:\n    Ambassador Robert D. ORR; Embassy at 30 Hill Street, Singapore 0617 (mailing\n    address is FPO AP 96534); telephone [65] 338-0251; FAX [65] 338-4550\n\n:Singapore Government\n\nFlag:\n    two equal horizontal bands of red (top) and white; near the hoist side of\n    the red band, there is a vertical, white crescent (closed portion is toward\n    the hoist side) partially enclosing five white five-pointed stars arranged\n    in a circle\n\n:Singapore Economy\n\nOverview:\n    Singapore has an open entrepreneurial economy with strong service and\n    manufacturing sectors and excellent international trading links derived from\n    its entrepot history. During the 1970s and early 1980s, the economy expanded\n    rapidly, achieving an average annual growth rate of 9%. Per capita GDP is\n    among the highest in Asia. The economy grew at a respectable 6.5% in 1991,\n    down from 8.3% in 1990, in part because of a slowdown in overseas demand and\n    lower growth in the financial and business services sector.\nGDP:\n    exchange rate conversion - $38.3 billion, per capita $13,900; real growth\n    rate 6.5% (1991 est.)\nInflation rate (consumer prices):\n    3.4% (1991 est.)\nUnemployment rate:\n    1.5% (1991 est.)\nBudget:\n    revenues $9.8 billion; expenditures $9.0 billion, including capital\n    expenditures of $2.8 billion (FY91 est.)\nExports:\n    $57.8 billion (f.o.b., 1991 est.)\n  commodities:\n    includes transshipments to Malaysia - petroleum products, rubber,\n    electronics, manufactured goods\n  partners:\n    US 20%, Malaysia 15%, Japan 9%, Hong Kong 7%, Thailand 6%\nImports:\n    $65.8 billion (c.i.f., 1991 est.)\n  commodities:\n    includes transshipments from Malaysia - capital equipment, petroleum,\n    chemicals, manufactured goods, foodstuffs\n  partners:\n    Japan 21%, US 16%, Malaysia 15%, Taiwan 4%\nExternal debt:\n    $3.8 billion (1991 est.)\nIndustrial production:\n    growth rate 9% (1991 est.); accounts for 29% of GDP (1990)\nElectricity:\n    4,000,000 kW capacity; 14,400 million kWh produced, 5,300 kWh per capita\n    (1990)\nIndustries:\n    petroleum refining, electronics, oil drilling equipment, rubber processing\n    and rubber products, processed food and beverages, ship repair, entrepot\n    trade, financial services, biotechnology\nAgriculture:\n    occupies a position of minor importance in the economy; self-sufficient in\n    poultry and eggs; must import much of other food; major crops - rubber,\n    copra, fruit, vegetables\nEconomic aid:\n    US commitments, including Ex-Im (FY70-83), $590 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.0 billion\nCurrency:\n    Singapore dollar (plural - dollars); 1 Singapore dollar (S$) = 100 cents\nExchange rates:\n    Singapore dollars (S$) per US$1 - 1.6596 (March 1992), 1.7276 (1991), 1.8125\n    (1990), 1.9503 (1989), 2.0124 (1988), 2.1060 (1987)\nFiscal year:\n    1 April - 31 March\n\n:Singapore Communications\n\nRailroads:\n    38 km of 1.000-meter gauge\nHighways:\n    2,597 km total (1984)\nPorts:\n    Singapore\nMerchant marine:\n    468 ships (1,000 GRT or over) totaling 8,751,619 GRT/14,195,718 DWT;\n    includes 1 passenger-cargo, 126 cargo, 74 container, 7 roll-on/roll-off\n    cargo, 5 refrigerated cargo, 18 vehicle carrier, 1 livestock carrier, 144\n    petroleum tanker, 5 chemical tanker, 4 combination ore/oil, 1 specialized\n    tanker, 5 liquefied gas, 74 bulk, 2 combination bulk, 1 short-sea passenger;\n    note - many Singapore flag ships are foreign owned\nCivil air:\n    38 major transport aircraft (est.)\nAirports:\n    10 total, 10 usable; 10 with permanent-surface runways; 2 with runways over\n    3,659 m; 4 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    good domestic facilities; good international service; good radio and\n    television broadcast coverage; 1,110,000 telephones; broadcast stations - 13\n    AM, 4 FM, 2 TV; submarine cables extend to Malaysia (Sabah and peninsular\n    Malaysia), Indonesia, and the Philippines; satellite earth stations - 1\n    Indian Ocean INTELSAT and 1 Pacific Ocean INTELSAT\n\n:Singapore Defense Forces\n\nBranches:\n    Army, Navy, Air Force, People's Defense Force, Police Force\nManpower availability:\n    males 15-49, 847,435; 626,914 fit for military service\nDefense expenditures:\n    exchange rate conversion - $1.7 billion, 4% of GDP (1990 est.)\n\n:Slovenia Geography\n\nTotal area:\n    20,296 km2\nLand area:\n    20,296 km2\nComparative area:\n    slightly larger than New Jersey\nLand boundaries:\n    998 km total; Austria 262 km, Croatia 455 km, Italy 199 km, Hungary 83 km\nCoastline:\n    32 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    200 m or to depth of exploitation\n  Exclusive economic zone:\n    NA nm\n  Exclusive fishing zone:\n    NA nm\n  Territorial sea:\n    12 nm\nDisputes:\n    dispute with Croatia over fishing rights in the Adriatic; small vocal\n    minority in northern Italy seeks the return of parts of southwestern\n    Slovenia\nClimate:\n    Mediterranean climate on the coast, continental climate with mild to hot\n    summers and cold winters in the plateaus and valleys to the east\nTerrain:\n    a short coastal strip on the Adriatic, an alpine mountain region adjacent to\n    Italy, mixed mountain and valleys with numerous rivers to the east\nNatural resources:\n    lignite coal, lead, zinc, mercury, uranium, silver\nLand use:\n    arable land 10%; permanent crops 2%; meadows and pastures 20%; forest and\n    woodland 45%; other 23%; includes irrigated 1%\nEnvironment:\n    Sava River polluted with domestic and industrial waste; heavy metals and\n    toxic chemicals along coastal waters; near Koper, forest damage from air\n    pollutants originating at metallurgical and chemical plants; subject to\n    flooding and earthquakes\n\n:Slovenia People\n\nPopulation:\n    1,963,000 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 78 years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Slovene(s); adjective - Slovenia\nEthnic divisions:\n    Slovene 91%, Croat 3%, Serb 2%, Muslim 1%, other 3%\nReligions:\n    Roman Catholic 94%, Orthodox Catholic 2%, Muslim 1%, other 3%\nLanguages:\n    Slovenian 91%, Serbo-Croatian 7%, other 2%\nLiteracy:\n    99.2% (male 99.3%, female 99.1%) age 10 and over can read and write\nLabor force:\n    786,036; 2% agriculture, manufacturing and mining 46%\nOrganized labor:\n    NA\n\n:Slovenia Government\n\nLong-form name:\n    Republic of Slovenia\nType:\n    emerging democracy\nCapital:\n    Ljubljana\nAdministrative divisions:\n    62 provinces (pokajine, singular - pokajina)\nIndependence:\n    25 June 1991; 15 January 1992 from Yugoslavia\nConstitution:\n    adopted 23 December 1991, effective 23 December 1991\nLegal system:\n    based on civil law system\nNational holiday:\n    NA\nExecutive branch:\n    president, 4 vice presidents\nLegislative branch:\n    bicameral; consists of the State Assembly and the State Council; note - will\n    take effect after next election\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Milan KUCAN (since 22 April 1990); Vice President Matjaz KMECL\n    (since 11 April 1990); Vice President Ivan OMAN (since 11 April 1990); Vice\n    President Dusan PLUT (since 11 April 1990); Vice President Ciril ZLOBEC\n    (since 11 April 1990)\n  Head of Government:\n    Prime Minister Janez DRNOVSEK (since 14 May 1992)\nPolitical parties and leaders:\n    Christian Democratic, Lozje PETERLE, chairman; Liberal Democratic, Janez\n    DRNOVSEK, chairman; Social Democratic, Joze PUNIK, chairman; Socialist,\n    Viktor ZAKELJ, chairman; Greens, Dusan PLUT, chairman; National Democratic,\n    Rajko PIRNAT, chairman; Democratic Peoples Party, Marjan PODOBNIK, chairman;\n    Reformed Socialists (former Communist Party), Ciril RIBICIC, chairman\nSuffrage:\n    at age 16 if employed, universal at age 18\nElections:\n  President:\n    last held NA (next to be held NA)\n  State Assembly:\n    last held NA (next to be held NA);\n  State Council:\n    last held NA (next to be held NA)\nCommunists:\n    NA\nOther political or pressure groups:\n    NA\nMember of:\n    CSCE, IMF, UN\nDiplomatic representation:\n    Representative Ernest PETRIC; Chancery at 1300 19th Street NW, Washington,\n    DC 20036; telephone (202) 828-1650\n  US:\n    Ambassador Ignac GOLOB, Embassy at NA (mailing address is APO AE 09862);\n    telephone NA\n\n:Slovenia Government\n\nFlag:\n    a three color flag, white (hoist side), blue, and red of equal width with\n    the Slovenian seal (a shield with the image of Triglav in white against a\n    blue background at the center; beneath it are two wavy blue lines depicting\n    seas and rivers; around it, there are three six-sided stars arranged in an\n    inverted triangle); the seal is located in the upper hoist side of the flag\n    centered in the white and blue band\n\n:Slovenia Economy\n\nOverview:\n    Slovenia was by far the most prosperous of the old Yugoslav republics, with\n    a per capita income more than twice the Yugoslav average, indeed not far\n    below the levels in neighboring Austria and Italy. Because of its strong\n    ties to Western Europe and the small scale of damage during internecine\n    fighting in Yugoslavia, Slovenia has the brightest prospects among the\n    former Yugoslav republics for economic reform and recovery over the next few\n    years. The political and economic disintegration of Yugoslavia, however, has\n    led to severe short-term dislocations in production, employment, and trade\n    ties. For example, overall industrial production fell 10% in 1991;\n    particularly hard hit were the iron and steel, machine-building, chemical,\n    and textile industries. Meanwhile, fighting has continued in other republics\n    leading to further destruction of long-established trade channels and to an\n    influx of tens of thousands of Croatian refugees. As in other former\n    Communist areas in Eastern Europe, economic reform has often sputtered not\n    only because of the vested interests of old bosses in retaining old rules of\n    the game but also because of the tangible losses experienced by\n    rank-and-file people in the transition to a more market-oriented system. The\n    key program for breaking up and privatizing major industrial firms has not\n    yet begun. Bright spots for encouraging Western investors are Slovenia's\n    comparatively well-educated work force, its developed infrastructure, and\n    its Western business attitudes. Slovenia in absolute terms is a small\n    economy, and a little Western investment would go a long way.\nGDP:\n    $21 billion, per capita $10,700; real growth rate -10% (1991 est.)\nInflation rate (consumer prices):\n    15-20% (1991 est.)\nUnemployment rate:\n    10% (April 1992)\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $4,120 million (f.o.b., 1990)\n  commodities:\n    machinery and transport equipment 38%, other manufactured goods 44%,\n    chemicals 9%, food and live animals 4.6%, raw materials 3%, beverages and\n    tobacco less than 1%\n  partners:\n    principally the other former Yugoslav republics, Austria, and Italy\nImports:\n    $4,679 million (c.i.f., 1990)\n  commodities:\n    machinery and transport equipment 35%, other manufactured goods 26.7%,\n    chemicals 14.5%, raw materials 9.4%, fuels and lubricants 7%, food and live\n    animals 6%\n  partners:\n    principally the other former Yugoslav republics, Germany, former USSR, US,\n    Hungary, Italy, and Austria\nExternal debt:\n    $2.5 billion\nIndustrial production:\n    industrial production has been declining at a rate of about 1% per month\n    (1991-92), mostly because of lost markets in the other former Yugoslav\n    republics\nElectricity:\n    2,900,000 kW capacity; 12,250 million kWh produced, 6,447 kWh per capita\n    (1991)\n\n:Slovenia Economy\n\nIndustries:\n    ferrous metallurgy and rolling mill products, aluminum reduction and rolled\n    products, lead and zinc smelting, electronics (including military\n    electronics), trucks, electric power equipment, wood products, textiles,\n    chemicals, machine tools\nAgriculture:\n    dominated by stock breeding (sheep and cattle) and dairy farming; main crops\n    are potatoes, hops, hemp, and flax; although self-sufficient and having an\n    export surplus in these commodities, Slovenia must import many other\n    agricultural products and has a negative overall trade balance in this\n    sector\nIllicit drugs:\n    NA\nEconomic aid:\n    NA\nCurrency:\n    Slovene Tolar (plural - Tolars); 1 Tolar (SLT) = 100 NA\nExchange rates:\n    Tolars (SLT) per US$1 - 28 (January 1992)\nFiscal year:\n    calendar year\n\n:Slovenia Communications\n\nRailroads:\n    NA\nHighways:\n    14,553 km total; 10,525 km paved, 4,028 km gravel\nInland waterways:\n    NA\nPipelines:\n    crude oil 290 km, natural gas 305 km\nPorts:\n    maritime - Koper\nMerchant marine:\n    0 ships (1,000 GRT or over) are under Slovenian flag; note - Slovenian\n    owners control 21 ships (1,000 GRT or over) totaling 334,995 GRT/558,621\n    DWT; includes 14 bulk carriers and 7 general cargo ships all under Saint\n    Vincent and the Grenadines flag\nCivil air:\n    NA major transport aircraft\nAirports:\n    3 main airports\nTelecommunications:\n    130,000 telephones; broadcast stations - 6 AM, 5 FM, 7 TV; 370,000 radios;\n    330,000 TVs\n\n:Slovenia Defense Forces\n\nBranches:\n    Army, Navy, Air Force\nManpower availability:\n    males 15-49, 444,030; NA fit for military service; 18,219 reach military age\n    (18) annually\nDefense expenditures:\n    exchange rate conversion - 13.5 billion Slovene Tolars, 4.5% of GDP (1992);\n    note - conversion of the military budget into US dollars using the current\n    exchange rate could produce misleading results\n\n:Solomon Islands Geography\n\nTotal area:\n    28,450 km2\nLand area:\n    27,540 km2\nComparative area:\n    slightly larger than Maryland\nLand boundaries:\n    none\nCoastline:\n    5,313 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical monsoon; few extremes of temperature and weather\nTerrain:\n    mostly rugged mountains with some low coral atolls\nNatural resources:\n    fish, forests, gold, bauxite, phosphates\nLand use:\n    arable land 1%; permanent crops 1%; meadows and pastures 1%; forest and\n    woodland 93%; other 4%\nEnvironment:\n    subject to typhoons, which are rarely destructive; geologically active\n    region with frequent earth tremors\nNote:\n    located just east of Papua New Guinea in the South Pacific Ocean\n\n:Solomon Islands People\n\nPopulation:\n    360,010 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    40 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    30 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 72 years female (1992)\nTotal fertility rate:\n    6.0 children born/woman (1992)\nNationality:\n    noun - Solomon Islander(s); adjective - Solomon Islander\nEthnic divisions:\n    Melanesian 93.0%, Polynesian 4.0%, Micronesian 1.5%, European 0.8%, Chinese\n    0.3%, other 0.4%\nReligions:\n    almost all at least nominally Christian; Anglican 34%, Roman Catholic 19%,\n    Baptist 17%, United (Methodist/Presbyterian) 11%, Seventh-Day Adventist 10%,\n    other Protestant 5%\nLanguages:\n    120 indigenous languages; Melanesian pidgin in much of the country is lingua\n    franca; English spoken by 1-2% of population\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    23,448 economically active; agriculture, forestry, and fishing 32.4%;\n    services 25%; construction, manufacturing, and mining 7.0%; commerce,\n    transport, and finance 4.7% (1984)\nOrganized labor:\n    NA, but most of the cash-economy workers have trade union representation\n\n:Solomon Islands Government\n\nLong-form name:\n    none\nType:\n    parliamentary democracy\nCapital:\n    Honiara\nAdministrative divisions:\n    7 provinces and 1 town*; Central, Guadalcanal, Honiara*, Isabel, Makira,\n    Malaita, Temotu, Western\nIndependence:\n    7 July 1978 (from UK; formerly British Solomon Islands)\nConstitution:\n    7 July 1978\nLegal system:\n    common law\nNational holiday:\n    Independence Day, 7 July (1978)\nExecutive branch:\n    British monarch, governor general, prime minister, Cabinet\nLegislative branch:\n    unicameral National Parliament\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Sir George LEPPING (since 27 June 1989, previously acted as governor general\n    since 7 July 1988)\n  Head of Government:\n    Prime Minister Solomon MAMALONI (since 28 March 1989); Deputy Prime Minister\n    Sir Baddeley DEVESI (since NA October 1990)\nPolitical parties and leaders:\n    People's Alliance Party (PAP); United Party (UP), leader NA; Solomon Islands\n    Liberal Party (SILP), Bartholemew ULUFA'ALU; Nationalist Front for Progress\n    (NFP), Andrew NORI; Labor Party (LP), Joses TUHANUKU\nSuffrage:\n    universal at age 21\nElections:\n  National Parliament:\n    last held 22 February 1989 (next to be held NA February 1993); results -\n    percent of vote by party NA; seats - (38 total) PAP 13, UP 6, NFP 4, SILP 4,\n    LP 2, independents 9\nMember of:\n    ACP, AsDB, C, ESCAP, FAO, G-77, IBRD, ICAO, IDA, IFAD, IFC, ILO, IMF, IMO,\n    IOC, ITU, SPC, SPF, UN, UNCTAD, UPU, WFTU, WHO, WMO\nDiplomatic representation:\n    Ambassador (vacant) resides in Honiara (Solomon Islands)\n  US:\n    the ambassador in Papua New Guinea is accredited to the Solomon Islands;\n    Embassy at Mud Alley, Honiara (mailing address is American Embassy, P. O.\n    Box 561, Honiara); telephone (677) 23890; FAX (677) 23488\nFlag:\n    divided diagonally by a thin yellow stripe from the lower hoist-side corner;\n    the upper triangle (hoist side) is blue with five white five-pointed stars\n    arranged in an X pattern; the lower triangle is green\n\n:Solomon Islands Economy\n\nOverview:\n    About 90% of the population depend on subsistence agriculture, fishing, and\n    forestry for at least part of their livelihood. Agriculture, fishing, and\n    forestry contribute about 70% to GDP, with the fishing and forestry sectors\n    being important export earners. The service sector contributes about 25% to\n    GDP. Most manufactured goods and petroleum products must be imported. The\n    islands are rich in undeveloped mineral resources such as lead, zinc,\n    nickel, and gold. The economy suffered from a severe cyclone in mid-1986\n    that caused widespread damage to the infrastructure.\nGDP:\n    exchange rate conversion - $200 million, per capita $600; real growth rate\n    6.0% (1990 est.)\nInflation rate (consumer prices):\n    10.2% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $44 million; expenditures $45 million, including capital\n    expenditures of $22 million (1989 est.)\nExports:\n    $67.3 million (f.o.b., 1990)\n  commodities:\n    fish 46%, timber 31%, copra 5%, palm oil 5%\n  partners:\n    Japan 51%, UK 12%, Thailand 9%, Netherlands 8%, Australia 2%, US 2% (1985)\nImports:\n    $86.0 million (c.i.f., 1990)\n  commodities:\n    plant and machinery 30%, fuel 19%, food 16%\n  partners:\n    Japan 36%, US 23%, Singapore 9%, UK 9%, NZ 9%, Australia 4%, Hong Kong 4%,\n    China 3% (1985)\nExternal debt:\n    $128 million (1988 est.)\nIndustrial production:\n    growth rate 0% (1987); accounts for 5% of GDP\nElectricity:\n    21,000 kW capacity; 39 million kWh produced, 115 kWh per capita (1990)\nIndustries:\n    copra, fish (tuna)\nAgriculture:\n    including fishing and forestry, accounts for about 70% of GDP; mostly\n    subsistence farming; cash crops - cocoa, beans, coconuts, palm kernels,\n    timber; other products - rice, potatoes, vegetables, fruit, cattle, pigs;\n    not self-sufficient in food grains; 90% of the total fish catch of 44,500\n    metric tons was exported (1988)\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1980-89),\n    $250 million\nCurrency:\n    Solomon Islands dollar (plural - dollars); 1 Solomon Islands dollar (SI$) =\n    100 cents\nExchange rates:\n    Solomon Islands dollars (SI$) per US$1 - 2.8740 (March 1992), 2.7148 (1991),\n    2.5288 (1990), 2.2932 (1989), 2.0825 (1988), 2.0033 (1987)\nFiscal year:\n    calendar year\n\n:Solomon Islands Communications\n\nHighways:\n    about 2,100 km total (1982); 30 km paved, 290 km gravel, 980 km earth, 800\n    private logging and plantation roads of varied construction\nPorts:\n    Honiara, Ringi Cove\nCivil air:\n    no major transport aircraft\nAirports:\n    33 total, 30 usable; 2 with permanent-surface runways; none with runways\n    over 2,439 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    3,000 telephones; broadcast stations - 4 AM, no FM, no TV; 1 Pacific Ocean\n    INTELSAT earth station\n\n:Solomon Islands Defense Forces\n\nBranches:\n    Police Force\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Somalia Geography\n\nTotal area:\n    637,660 km2\nLand area:\n    627,340 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    2,340 km total; Djibouti 58 km, Ethiopia 1,600 km, Kenya 682 km\nCoastline:\n    3,025 km\nMaritime claims:\n  Territorial sea:\n    200 nm\nDisputes:\n    southern half of boundary with Ethiopia is a Provisional Administrative\n    Line; territorial dispute with Ethiopia over the Ogaden; possible claims to\n    Djibouti and parts of Ethiopia and Kenya based on unification of ethnic\n    Somalis\nClimate:\n    desert; northeast monsoon (December to February), cooler southwest monsoon\n    (May to October); irregular rainfall; hot, humid periods (tangambili)\n    between monsoons\nTerrain:\n    mostly flat to undulating plateau rising to hills in north\nNatural resources:\n    uranium and largely unexploited reserves of iron ore, tin, gypsum, bauxite,\n    copper, salt\nLand use:\n    arable land 2%; permanent crops NEGL%; meadows and pastures 46%; forest and\n    woodland 14%; other 38%; includes irrigated 3%\nEnvironment:\n    recurring droughts; frequent dust storms over eastern plains in summer;\n    deforestation; overgrazing; soil erosion; desertification\nNote:\n    strategic location on Horn of Africa along southern approaches to Bab el\n    Mandeb and route through Red Sea and Suez Canal\n\n:Somalia People\n\nPopulation:\n    7,235,226 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    46 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    -12 migrants/1,000 population (1992)\nInfant mortality rate:\n    115 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    56 years male, 57 years female (1992)\nTotal fertility rate:\n    7.1 children born/woman (1992)\nNationality:\n    noun - Somali(s); adjective - Somali\nEthnic divisions:\n    Somali 85%, rest mainly Bantu; Arabs 30,000, Europeans 3,000, Asians 800\nReligions:\n    almost entirely Sunni Muslim\nLanguages:\n    Somali (official); Arabic, Italian, English\nLiteracy:\n    24% (male 36%, female 14%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,200,000; very few are skilled laborers; pastoral nomad 70%, agriculture,\n    government, trading, fishing, handicrafts, and other 30%; 53% of population\n    of working age (1985)\nOrganized labor:\n    General Federation of Somali Trade Unions was controlled by the government\n    prior to January 1991; the fall of SIAD regime may have led to collapse of\n    Trade Union organization\n\n:Somalia Government\n\nLong-form name:\n    none\nType:\n    none\nCapital:\n    Mogadishu\nAdministrative divisions:\n    16 regions (plural - NA, singular - gobolka); Bakool, Banaadir, Bari, Bay,\n    Galguduud, Gedo, Hiiraan, Jubbada Dhexe, Jubbada Hoose, Mudug, Nugaal,\n    Sanaag, Shabeellaha Dhexe, Shabeellaha Hoose, Togdheer, Woqooyi Galbeed\nIndependence:\n    1 July 1960 (from a merger of British Somaliland, which became independent\n    from the UK on 26 June 1960, and Italian Somaliland, which became\n    independent from the Italian-administered UN trusteeship on 1 July 1960, to\n    form the Somali Republic)\nConstitution:\n    25 August 1979, presidential approval 23 September 1979\nNational holiday:\n    NA\nExecutive branch:\n    president, two vice presidents, prime minister, Council of Ministers\n    (cabinet)\nLegislative branch:\n    unicameral People's Assembly (Golaha Shacbiga)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Interim President ALI Mahdi Mohamed (since 27 January 1991)\n  Head of Government:\n    Prime Minister OMAR Arteh Ghalib (since 27 January 1991)\nPolitical parties and leaders:\n    the United Somali Congress (USC) ousted the former regime on 27 January\n    1991; note - formerly the only party was the Somali Revolutionary Socialist\n    Party (SRSP), headed by former President and Commander in Chief of the Army\n    Maj. Gen. Mohamed SIAD Barre\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 23 December 1986 (next to be held NA); results - President SIAD\n    was reelected without opposition\n  People's Assembly:\n    last held 31 December 1984 (next to be held NA); results - SRSP was the only\n    party; seats - (177 total, 171 elected) SRSP 171; note - the United Somali\n    Congress (USC) ousted the regime of Maj. Gen. Mohamed SIAD Barre on 27\n    January 1991; the provisional government has promised that a democratically\n    elected government will be established\nMember of:\n    ACP, AfDB, AFESD, AL, AMF, CAEU, ECA, FAO, G-77, IBRD, ICAO, IDA, IDB, IFAD,\n    IFC, IGADD, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM (observer), ITU,\n    LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador (vacant); Chancery at Suite 710, 600 New Hampshire Avenue NW,\n    Washington, DC 20037; telephone (202) 342-1575; there is a Somali Consulate\n    General in New York; note - Somalian Embassy ceased operations on 8 May 1991\n\n:Somalia Government\n\n  US:\n    Ambassador (vacant); Embassy at K-7, AFGOI Road, Mogadishu (mailing address\n    is P. O. Box 574, Mogadishu); telephone [252] (01) 39971; note - US Embassy\n    evacuated and closed indefinitely in January 1991\nFlag:\n    light blue with a large white five-pointed star in the center; design based\n    on the flag of the UN (Italian Somaliland was a UN trust territory)\n\n:Somalia Economy\n\nOverview:\n    One of the world's poorest and least developed countries, Somalia has few\n    resources. Agriculture is the most important sector of the economy, with the\n    livestock sector accounting for about 40% of GDP and about 65% of export\n    earnings. Nomads and seminomads who are dependent upon livestock for their\n    livelihoods make up more than half of the population. Crop production\n    generates only 10% of GDP and employs about 20% of the work force. The main\n    export crop is bananas; sugar, sorghum, and corn are grown for the domestic\n    market. The small industrial sector is based on the processing of\n    agricultural products and accounts for less than 10% of GDP. Greatly\n    increased political turmoil in 1991-92 has resulted in a substantial drop in\n    output, with widespread famine a grim fact of life.\nGDP:\n    exchange rate conversion - $1.7 billion, per capita $210; real growth rate\n    -1.4% (1988)\nInflation rate (consumer prices):\n    210% (1989)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $190 million; expenditures $195 million, including capital\n    expenditures of $111 million (1989 est.)\nExports:\n    $58.0 million (f.o.b., 1990 est.)\n  commodities:\n    bananas, livestock, fish, hides, skins\n  partners:\n    US 0.5%, Saudi Arabia, Italy, FRG (1986)\nImports:\n    $249 million (c.i.f., 1990 est.)\n  commodities:\n    petroleum products, foodstuffs, construction materials\n  partners:\n    US 13%, Italy, FRG, Kenya, UK, Saudi Arabia (1986)\nExternal debt:\n    $1.9 billion (1989)\nIndustrial production:\n    growth rate -5.0% (1988); accounts for 5% of GDP\nElectricity:\n    75,000 kW capacity; 60 million kWh produced, 10 kWh per capita (1991)\nIndustries:\n    a few small industries, including sugar refining, textiles, petroleum\n    refining\nAgriculture:\n    dominant sector, led by livestock raising (cattle, sheep, goats); crops -\n    bananas, sorghum, corn, mangoes, sugarcane; not self-sufficient in food;\n    fishing potential largely unexploited\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $639 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $3.8 billion; OPEC\n    bilateral aid (1979-89), $1.1 billion; Communist countries (1970-89), $336\n    million\nCurrency:\n    Somali shilling (plural - shillings); 1 Somali shilling (So. Sh.) = 100\n    centesimi\nExchange rates:\n    Somali shillings (So. Sh.) per US$1 - 3,800.00 (December 1990), 490.7\n    (1989), 170.45 (1988), 105.18 (1987), 72.00 (1986)\n\n:Somalia Economy\n\nFiscal year:\n    calendar year\n\n:Somalia Communications\n\nHighways:\n    15,215 km total; including 2,335 km paved, 2,880 km gravel, and 10,000 km\n    improved earth or stabilized soil (1983)\nPipelines:\n    crude oil 15 km\nPorts:\n    Mogadishu, Berbera, Chisimayu, Bosaso\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 6,913 GRT/8,718 DWT; includes 2 cargo,\n    1 refrigerated cargo\nCivil air:\n    1 major transport aircraft\nAirports:\n    53 total, 40 usable; 7 with permanent-surface runways; 2 with runways over\n    3,659 m; 6 with runways 2,440-3,659 m; 15 with runways 1,220-2,439 m\nTelecommunications:\n    minimal telephone and telegraph service; microwave and troposcatter system\n    centered on Mogadishu connects a few towns; 6,000 telephones; broadcast\n    stations - 2 AM, no FM, 1 TV; 1 Indian Ocean INTELSAT earth station;\n    scheduled to receive an ARABSAT ground station\n\n:Somalia Defense Forces\n\nBranches:\n    NA\nManpower availability:\n    males 15-49, 1,673,542; 942,153 fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:South Africa Geography\n\nTotal area:\n    1,221,040 km2\nLand area:\n    1,221,040 km2; includes Walvis Bay, Marion Island, and Prince Edward Island\nComparative area:\n    slightly less than twice the size of Texas\nLand boundaries:\n    4,973 km total; Botswana 1,840 km, Lesotho 909 km, Mozambique 491 km,\n    Namibia 1,078 km, Swaziland 430 km, Zimbabwe 225 km\nCoastline:\n    2,881 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claim by Namibia to Walvis Bay exclave and 12 offshore islands administered\n    by South Africa; South Africa and Namibia have agreed to jointly administer\n    the area for an interim period; the terms and dates to be covered by joint\n    administration arrangements have not been established at this time; and\n    Namibia will continue to maintain a claim to sovereignty over the entire\n    area\nClimate:\n    mostly semiarid; subtropical along coast; sunny days, cool nights\nTerrain:\n    vast interior plateau rimmed by rugged hills and narrow coastal plain\nNatural resources:\n    gold, chromium, antimony, coal, iron ore, manganese, nickel, phosphates,\n    tin, uranium, gem diamonds, platinum, copper, vanadium, salt, natural gas\nLand use:\n    arable land 10%; permanent crops 1%; meadows and pastures 65%; forest and\n    woodland 3%; other 21%; includes irrigated 1%\nEnvironment:\n    lack of important arterial rivers or lakes requires extensive water\n    conservation and control measures\nNote:\n    Walvis Bay is an exclave of South Africa in Namibia; South Africa completely\n    surrounds Lesotho and almost completely surrounds Swaziland\n\n:South Africa People\n\nPopulation:\n    41,688,360 (July 1992), growth rate 2.6% (1992); includes the 10 so-called\n    homelands, which are not recognized by the US\nPopulation:\n  four independent homelands:\n    Bophuthatswana 2,489,347, growth rate 2.86%; Ciskei 1,088,476, growth rate\n    2.99%; Transkei 4,746,796, growth rate 4.13%; Venda 718,207, growth rate\n    3.81%\n  six other homelands:\n    Gazankulu 803,806, growth rate 3.96%; Kangwane 597,783, growth rate 3.60%;\n    KwaNdebele 373,012, growth rate 3.40%; KwaZulu 5,748,950, growth rate 3.58%;\n    Lebowa 2,924,584, growth rate 3.90%; QwaQwa 288,155, growth rate 3.60%\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    50 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    62 years male, 67 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - South African(s); adjective - South African\nEthnic divisions:\n    black 75.2%, white 13.6%, Colored 8.6%, Indian 2.6%\nReligions:\n    most whites and Coloreds and about 60% of blacks are Christian; about 60% of\n    Indians are Hindu; Muslim 20%\nLanguages:\n    Afrikaans, English (both official); many vernacular languages, including\n    Zulu, Xhosa, North and South Sotho, Tswana\nLiteracy:\n    76% (male 78%, female 75%) age 15 and over can read and write (1980)\nLabor force:\n    11,000,000 economically active (1989); services 34%, agriculture 30%,\n    industry and commerce 29%, mining 7% (1985)\nOrganized labor:\n    about 17% of total labor force belongs to a registered trade union (1989);\n    African unions represent 15% of black labor force\n\n:South Africa Government\n\nLong-form name:\n    Republic of South Africa; abbreviated RSA\nType:\n    republic\nCapital:\n    Pretoria (administrative); Cape Town (legislative); Bloemfontein (judicial)\nAdministrative divisions:\n    4 provinces; Cape, Natal, Orange Free State, Transvaal; there are 10\n    homelands not recognized by the US - 4 independent (Bophuthatswana, Ciskei,\n    Transkei, Venda) and 6 other (Gazankulu, Kangwane, KwaNdebele, KwaZulu,\n    Lebowa, QwaQwa)\nIndependence:\n    31 May 1910 (from UK)\nConstitution:\n    3 September 1984\nLegal system:\n    based on Roman-Dutch law and English common law; accepts compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Republic Day, 31 May (1910)\nExecutive branch:\n    state president, Executive Council (cabinet), Ministers' Councils (from the\n    three houses of Parliament)\nLegislative branch:\n    tricameral Parliament (Parlement) consists of the House of Assembly\n    (Volksraad; whites), House of Representatives (Raad van Verteenwoordigers;\n    Coloreds), and House of Delegates (Raad van Afgevaardigdes; Indians)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    State President Frederik W. DE KLERK (since 13 September 1989)\nPolitical parties and leaders:\n  white political parties and leaders:\n    National Party (NP), Frederik W. DE KLERK (majority party); Conservative\n    Party (CP), Dr. Andries P. TREURNICHT (official opposition party);\n    Democratic Party (DP), Zach DE BEER\n  Colored political parties and leaders:\n    Labor Party (LP), Allan HENDRICKSE (majority party); Freedom Party; note -\n    the Democratic Reform Party (DRP) and the United Democratic Party (UDP) were\n    disbanded in May 1991\n  Indian political parties and leaders:\n    Solidarity, J. N. REDDY (majority party); National People's Party (NPP),\n    Amichand RAJBANSI; Merit People's Party\nSuffrage:\n    universal at age 18, but voting rights are racially based\nElections:\n  House of Assembly (whites):\n    last held 6 September 1989 (next to be held by NA March 1995); results - NP\n    58%, CP 23%, DP 19%; seats - (178 total, 166 elected) NP 103, CP 41, DP 34;\n    note - by February 1992 because of byelections, changes in number of seats\n    held by parties were as follows: NP 102, CP 42, DP 33, vacant 1\n  House of Representatives (Coloreds):\n    last held 6 September 1989 (next to be held no later than March 1995);\n    results - percent of vote by party NA; seats - (85 total, 80 elected) LP 69,\n    DRP 5, UDP 3, Freedom Party 1, independents 2; note - since the National\n    Party became multiracial, by February 1992 many representatives from other\n    parties have changed their allegiance causing the following changes in\n    seating: LP 39, NP 38, Freedom Party 1, independents 7\n\n:South Africa Government\n\n  House of Delegates (Indians):\n    last held 6 September 1989 (next to be held no later than March 1995);\n    results - percent of vote by party NA; seats - (45 total, 40 elected)\n    Solidarity 16, NPP 9, Merit People's Party 3, independents 6, other 6; note\n    - due to delegates changing party affiliation, seating as of February 1992\n    is as follows: Solidarity 25, NPP 7, Merit People's Party 2, other 5,\n    independents 5, vacancy 1\nCommunists:\n    South African Communist Party, Chris HANI, secretary general, and Joe SLOVO,\n    national chairman\nOther political or pressure groups:\n    African National Congress (ANC), Nelson MANDELA, president; Inkatha Freedom\n    Party (IFP), Mangosuthu BUTHELEZI, president; Pan-Africanist Congress (PAC),\n    Clarence MAKWETU, president\nMember of:\n    BIS, CCC, ECA, GATT, IAEA, IBRD, ICAO (suspended), ICC, IDA, IFC, IMF,\n    INTELSAT, ISO, ITU (suspended), LORCS, SACU, UN, UNCTAD, WFTU, WHO, WIPO,\n    WMO (suspended)\nDiplomatic representation:\n    Ambassador Harry SCHWARZ; Chancery at 3051 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 232-4400; there are South African\n    Consulates General in Beverly Hills (California), Chicago, Houston, and New\n    York\n  US:\n    Ambassador William L. SWING; Embassy at Thibault House, 225 Pretorius\n    Street, Pretoria; telephone [27] (12) 28-4266, FAX [27] (12) 21-92-78; there\n    are US Consulates General in Cape Town, Durban, and Johannesburg\nFlag:\n    actually four flags in one - three miniature flags reproduced in the center\n    of the white band of the former flag of the Netherlands, which has three\n    equal horizontal bands of orange (top), white, and blue; the miniature flags\n    are a vertically hanging flag of the old Orange Free State with a horizontal\n    flag of the UK adjoining on the hoist side and a horizontal flag of the old\n    Transvaal Republic adjoining on the other side\n\n:South Africa Economy\n\nOverview:\n    Many of the white one-seventh of the South African population enjoy incomes,\n    material comforts, and health and educational standards equal to those of\n    Western Europe. In contrast, most of the remaining population suffers from\n    the poverty patterns of the Third World, including unemployment, lack of job\n    skills, and barriers to movement into higher-paying fields. Inputs and\n    outputs thus do not move smoothly into the most productive employments, and\n    the effectiveness of the market is further lowered by international\n    constraints on dealings with South Africa. The main strength of the economy\n    lies in its rich mineral resources, which provide two-thirds of exports.\n    Average growth of less than 2% in output in recent years falls far short of\n    the 5% to 6% level needed to absorb some 300,000 new entrants to the labor\n    force annually. Economic developments in the 1990s will be driven partly by\n    the changing relations among the various ethnic groups.\nGDP:\n    exchange rate conversion - $104 billion, per capita $2,600; real growth rate\n    - 0.5% (1991 est.)\nInflation rate (consumer prices):\n    15.7% (March 1992)\nUnemployment rate:\n    40% (1991); well over 50% in some homeland areas (1991 est.)\nBudget:\n    revenues $29.4 billion; expenditures $35.0 billion, including capital\n    expenditures of $1.1 billion (FY93 est.)\nExports:\n    $24.0 billion (f.o.b., 1991)\n  commodities:\n    gold 25-30%, minerals and metals 20-25%, food 5%, chemicals 3%\n  partners:\n    Italy, Japan, US, FRG, UK, other EC members, Hong Kong\nImports:\n    $18.8 billion (c.i.f., 1991)\n  commodities:\n    machinery 32%, transport equipment 15%, chemicals 11%, oil, textiles,\n    scientific instruments, base metals\n  partners:\n    FRG, Japan, UK, US, Italy\nExternal debt:\n    $19.0 billion (December 1991)\nIndustrial production:\n    growth rate NA%; accounts for about 40% of GDP\nElectricity:\n    46,000,000 kW capacity; 180,000 million kWh produced, 4,100 kWh per capita\n    (1991)\nIndustries:\n    mining (world's largest producer of platinum, gold, chromium), automobile\n    assembly, metalworking, machinery, textile, iron and steel, chemical,\n    fertilizer, foodstuffs\nAgriculture:\n    accounts for about 5% of GDP and 30% of labor force; diversified\n    agriculture, with emphasis on livestock; products - cattle, poultry, sheep,\n    wool, milk, beef, corn, wheat, sugarcane, fruits, vegetables;\n    self-sufficient in food\nEconomic aid:\n    NA\nCurrency:\n    rand (plural - rand); 1 rand (R) = 100 cents\n\n:South Africa Economy\n\nExchange rates:\n    rand (R) per US$1 - 2.7814 (January 1992), 2.7563 (1991), 2.5863 (1990),\n    2.6166 (1989), 2.2611 (1988), 2.0350 (1987)\nFiscal year:\n    1 April - 31 March\n\n:South Africa Communications\n\nRailroads:\n    20,638 km route distance total; 35,079 km of 1.067-meter gauge trackage\n    (counts double and multiple tracking as single track); 314 km of 610 mm\n    gauge\nHighways:\n    188,309 km total; 54,013 km paved, 134,296 km crushed stone, gravel, or\n    improved earth\nPipelines:\n    crude oil 931 km, petroleum products 1,748 km, natural gas 322 km\nPorts:\n    Durban, Cape Town, Port Elizabeth, Richard's Bay, Saldanha, Mosselbaai,\n    Walvis Bay\nMerchant marine:\n    5 ships (1,000 GRT or over) totaling 213,708 GRT/201,043 DWT; includes 4\n    container, 1 vehicle carrier\nCivil air:\n    90 major transport aircraft\nAirports:\n    901 total, 732 usable; 132 with permanent-surface runways; 5 with runways\n    over 3,659 m; 10 with runways 2,440-3,659 m; 224 with runways 1,220-2,439 m\nTelecommunications:\n    the system is the best developed, most modern, and has the highest capacity\n    in Africa; it consists of carrier-equipped open-wire lines, coaxial cables,\n    radio relay links, fiber optic cable, and radiocommunication stations; key\n    centers are Bloemfontein, Cape Town, Durban, Johannesburg, Port Elizabeth,\n    and Pretoria; over 4,500,000 telephones; broadcast stations - 14 AM, 286 FM,\n    67 TV; 1 submarine cable; satellite earth stations - 1 Indian Ocean INTELSAT\n    and 2 Atlantic Ocean INTELSAT\n\n:South Africa Defense Forces\n\nBranches:\n    South African Defense Force (SADF; including Army, Navy, Air Force, Medical\n    Services), South African Police (SAP)\nManpower availability:\n    males 15-49, 10,051,202; 6,133,484 fit for military service; 420,275 reach\n    military age (18) annually; obligation for service in Citizen Force or\n    Commandos begins at 18; volunteers for service in permanent force must be\n    17; national service obligation is one year; figures include the so-called\n    homelands not recognized by the US\nDefense expenditures:\n    exchange rate conversion - $3.5 billion, about 3% of GDP (FY92)\n\n:South Georgia and the South Sandwich Islands Geography\n\nTotal area:\n    4,066 km2\nLand area:\n    4,066 km2; includes Shag and Clerke Rocks, South Georgia, Bird Island, South\n    Sandwich Islands\nComparative area:\n    slightly larger than Rhode Island\nLand boundaries:\n    none\nCoastline:\n    undetermined\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    administered by the UK, claimed by Argentina\nClimate:\n    variable, with mostly westerly winds throughout the year, interspersed with\n    periods of calm; nearly all precipitation falls as snow\nTerrain:\n    most of the islands, rising steeply from the sea, are rugged and\n    mountainous; South Georgia is largely barren and has steep, glacier-covered\n    mountains; the South Sandwich Islands are of volcanic origin with some\n    active volcanoes\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%; largely covered by permanent ice and snow with some\n    sparse vegetation consisting of grass, moss, and lichen\nEnvironment:\n    reindeer, introduced early in this century, live on South Georgia; weather\n    conditions generally make it difficult to approach the South Sandwich\n    Islands; the South Sandwich Islands are subject to active volcanism\nNote:\n    the north coast of South Georgia has several large bays, which provide good\n    anchorage\n\n:South Georgia and the South Sandwich Islands People\n\nPopulation:\n    no permanent population; there is a small military garrison on South\n    Georgia, and the British Antarctic Survey has a biological station on Bird\n    Island; the South Sandwich Islands are uninhabited\n\n:South Georgia and the South Sandwich Islands Government\n\nLong-form name:\n    South Georgia and the South Sandwich Islands (no short-form name)\nType:\n    dependent territory of the UK\nCapital:\n    none; Grytviken on South Georgia is the garrison town\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    3 October 1985\nLegal system:\n    English common law\nNational holiday:\n    Liberation Day, 14 June (1982)\nExecutive branch:\n    British monarch, commissioner\nLegislative branch:\n    none\nJudicial branch:\n    none\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Commissioner\n    William Hugh FULLERTON (since 1988; resident at Stanley, Falkland Islands)\n\n:South Georgia and the South Sandwich Islands Economy\n\nOverview:\n    Some fishing takes place in adjacent waters. There is a potential source of\n    income from harvesting fin fish and krill. The islands receive income from\n    postage stamps produced in the UK.\nBudget:\n    revenues $291,777; expenditures $451,011, including capital expenditures of\n    $NA (FY88 est.)\nElectricity:\n    900 kW capacity; 2 million kWh produced, NA kWh per capita (1990)\n\n:South Georgia and the South Sandwich Islands Communications\n\nHighways:\n    NA\nPorts:\n    Grytviken on South Georgia\nAirports:\n    5 total, 5 usable; 2 with permanent-surface runways; 1 with runway\n    2,440-3,659 m\nTelecommunications:\n    coastal radio station at Grytviken; no broadcast stations\n\n:South Georgia and the South Sandwich Islands Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Spain Geography\n\nTotal area:\n    504,750 km2\nLand area:\n    499,400 km2; includes Balearic Islands, Canary Islands, and five places of\n    sovereignty (plazas de soberania) on and off the coast of Morocco - Ceuta,\n    Mellila, Islas Chafarinas, Penon de Alhucemas, and Penon de Velez de la\n    Gomera\nComparative area:\n    slightly more than twice the size of Oregon\nLand boundaries:\n    1,903.2 km total; Andorra 65 km, France 623 km, Gibraltar 1.2 km, Portugal\n    1,214 km\nCoastline:\n    4,964 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Gibraltar question with UK; Spain controls five places of sovereignty\n    (plazas de soberania) on and off the coast of Morocco - the coastal enclaves\n    of Ceuta and Melilla, which Morocco contests, as well as the islands of\n    Penon de Alhucemas, Penon de Velez de la Gomera, and Islas Chafarinas\nClimate:\n    temperate; clear, hot summers in interior, more moderate and cloudy along\n    coast; cloudy, cold winters in interior, partly cloudy and cool along coast\nTerrain:\n    large, flat to dissected plateau surrounded by rugged hills; Pyrenees in\n    north\nNatural resources:\n    coal, lignite, iron ore, uranium, mercury, pyrites, fluorspar, gypsum, zinc,\n    lead, tungsten, copper, kaolin, potash, hydropower\nLand use:\n    arable land 31%; permanent crops 10%; meadows and pastures 21%; forest and\n    woodland 31%; other 7%; includes irrigated 6%\nEnvironment:\n    deforestation; air pollution\nNote:\n    strategic location along approaches to Strait of Gibraltar\n\n:Spain People\n\nPopulation:\n    39,118,399 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    11 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    7 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 81 years female (1992)\nTotal fertility rate:\n    1.4 children born/woman (1992)\nNationality:\n    noun - Spaniard(s); adjective - Spanish\nEthnic divisions:\n    composite of Mediterranean and Nordic types\nReligions:\n    Roman Catholic 99%, other sects 1%\nLanguages:\n    Castilian Spanish; second languages include Catalan 17%, Galician 7%, Basque\n    2%\nLiteracy:\n    95% (male 97%, female 93%) age 15 and over can read and write (1990 est.)\nLabor force:\n    14,621,000; services 53%, industry 24%, agriculture 14%, construction 9%\n    (1988)\nOrganized labor:\n    less 10% of labor force (1988)\n\n:Spain Government\n\nLong-form name:\n    Kingdom of Spain\nType:\n    parliamentary monarchy\nCapital:\n    Madrid\nAdministrative divisions:\n    17 autonomous communities (comunidades autonomas, singular - comunidad\n    autonoma); Andalucia, Aragon, Asturias, Canarias, Cantabria, Castilla-La\n    Mancha, Castilla y Leon, Cataluna, Communidad Valencia, Extremadura,\n    Galicia, Islas Baleares, La Rioja, Madrid, Murcia, Navarra, Pais Vasco; note\n    - there are five places of sovereignty on and off the coast of Morocco\n    (Ceuta, Mellila, Islas Chafarinas, Penon de Alhucemas, and Penon de Velez de\n    la Gomera) with administrative status unknown\nIndependence:\n    1492 (expulsion of the Moors and unification)\nConstitution:\n    6 December 1978, effective 29 December 1978\nLegal system:\n    civil law system, with regional applications; does not accept compulsory ICJ\n    jurisdiction\nNational holiday:\n    National Day, 12 October\nExecutive branch:\n    monarch, president of the government (prime minister), deputy prime\n    minister, Council of Ministers (cabinet), Council of State\nLegislative branch:\n    bicameral The General Courts or National Assembly (Las Cortes Generales)\n    consists of an upper house or Senate (Senado) and a lower house or Congress\n    of Deputies (Congreso de los Diputados)\nJudicial branch:\n    Supreme Court (Tribunal Supremo)\nLeaders:\n  Chief of State:\n    King JUAN CARLOS I (since 22 November 1975)\n  Head of Government:\n    Prime Minister Felipe GONZALEZ Marquez (since 2 December 1982); Deputy Prime\n    Minister Narcis SERRA (since 13 March 1991)\nPolitical parties and leaders:\n    principal national parties, from right to left - Popular Party (PP), Jose\n    Maria AZNAR; Popular Democratic Party (PDP), Luis DE GRANDES; Social\n    Democratic Center (CDS), Rafael Calvo ORTEGA; Spanish Socialist Workers\n    Party (PSOE), Felipe GONZALEZ Marquez; Socialist Democracy Party (DS),\n    Ricardo Garcia DAMBORENEA; Spanish Communist Party (PCE), Julio ANGUITA;\n    chief regional parties - Convergence and Unity (CiU), Jordi PUJOL Saley, in\n    Catalonia; Basque Nationalist Party (PNV), Xabier ARZALLUS; Basque\n    Solidarity (EA), Carlos GARAICOETXEA Urizza; Basque Popular Unity (HB), Jon\n    IDIGORAS; Basque Left (EE), Kepa AULESTIA; Andalusian Party (PA), Pedro\n    PACHECO; Independent Canary Group (AIC); Aragon Regional Party (PAR);\n    Valencian Union (UV)\nSuffrage:\n    universal at age 18\nElections:\n  Senate:\n    last held 29 October 1989 (next to be held NA October 1993); results -\n    percent of vote by party NA; seats - (208 total) PSOE 106, PP 79, CiU 10,\n    PNV 4, HB 3, AIC 1, other 5\n\n:Spain Government\n\n  Congress of Deputies:\n    last held 29 October 1989 (next to be held NA October 1993); results - PSOE\n    39.6%, PP 25.8%, CDS 9%, Communist-led coalition (IU) 9%, CiU 5%, PNV 1.2%,\n    HB 1%, PA 1%, other 8.4%; seats - (350 total) PSOE 175, PP 106, CiU 18, IU\n    17, CDS 14, PNV 5, HB 4, other 11\nCommunists:\n    PCE membership declined from a possible high of 160,000 in 1977 to roughly\n    60,000 in 1987; the party gained almost 1 million voters and 10 deputies in\n    the 1989 election; voters came mostly from the disgruntled socialist left;\n    remaining strength is in labor, where it dominates the Workers Commissions\n    trade union (one of the country's two major labor centrals), which claims a\n    membership of about 1 million; experienced a modest recovery in 1986\n    national election, nearly doubling the share of the vote it received in 1982\nOther political or pressure groups:\n    on the extreme left, the Basque Fatherland and Liberty (ETA) and the First\n    of October Antifascist Resistance Group (GRAPO) use terrorism to oppose the\n    government; free labor unions (authorized in April 1977) include the\n    Communist-dominated Workers Commissions (CCOO); the Socialist General Union\n    of Workers (UGT), and the smaller independent Workers Syndical Union (USO);\n    the Catholic Church; business and landowning interests; Opus Dei; university\n    students\nMember of:\n    AG (observer), AsDB, BIS, CCC, CE, CERN, COCOM, CSCE, EBRD, EC, ECE, ECLAC,\n    EIB, ESA, FAO, G-8, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA,\n    IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM (observer),\n    ISO, ITU, LAIA (observer), LORCS, NAM (guest), NATO, NEA, OAS (observer),\n    OECD, PCA, UN, UNAVEM, UNCTAD, UNESCO, UNIDO, UPU, WCL, WEU, WHO, WIPO, WMO,\n    WTO\nDiplomatic representation:\n    Ambassador Jaime de OJEDA; Chancery at 2700 15th Street NW, Washington, DC\n    20009; telephone (202) 265-0190 or 0191; there are Spanish Consulates\n    General in Boston, Chicago, Houston, Los Angeles, Miami, New Orleans, New\n    York, San Francisco, and San Juan (Puerto Rico)\n  US:\n    Ambassador Joseph ZAPPALA; Embassy at Serrano 75, 28006 Madrid (mailing\n    address is APO AE 09642); telephone [34] (1) 577-4000, FAX [34] (1)\n    577-5735; there is a US Consulate General in Barcelona and a Consulate in\n    Bilbao\nFlag:\n    three horizontal bands of red (top), yellow (double width), and red with the\n    national coat of arms on the hoist side of the yellow band; the coat of arms\n    includes the royal seal framed by the Pillars of Hercules, which are the two\n    promontories (Gibraltar and Ceuta) on either side of the eastern end of the\n    Strait of Gibraltar\n\n:Spain Economy\n\nOverview:\n    Spain has done well since joining the EC in 1986. In accordance with its\n    accession treaty, Spain has almost wholly liberalized trade and capital\n    markets. Foreign and domestic investment has spurred average growth of 4%\n    per year. Beginning in 1989, Madrid implemented a tight monetary policy to\n    fight inflation - around 7% in 1989 and 1990. As a result growth slowed to\n    2.5% in 1991. Spanish policymakers remain concerned with inflation - still\n    hovering at 6%. Government officials also are worried about 16%\n    unemployment, although many people listed as unemployed work in the\n    underground economy. Spanish economists believe that structural adjustments\n    due to the ongoing integration of the European market are likely to lead to\n    more displaced workers.\nGDP:\n    purchasing power equivalent - $487.5 billion, per capita $12,400; real\n    growth rate 2.5% (1991 est.)\nInflation rate (consumer prices):\n    5.9% (1991 est.)\nUnemployment rate:\n    16.0% (1991 est.)\nBudget:\n    revenues $111.0 billion; expenditures $115.9 billion, including capital\n    expenditures of $20.8 billion (1991 est.)\nExports:\n    $60.1 billion (f.o.b., 1991)\n  commodities:\n    cars and trucks, semifinished manufactured goods, foodstuffs, machinery\n  partners:\n    EC 71.0%, US 4.9%, other developed countries 7.9%\nImports:\n    $93.1 billion (c.i.f., 1990)\n  commodities:\n    machinery, transport equipment, fuels, semifinished goods, foodstuffs,\n    consumer goods, chemicals\n  partners:\n    EC 60.0%, US 8.0%, other developed countries 11.5%, Middle East 2.6%\nExternal debt:\n    $45 billion (1991 est.)\nIndustrial production:\n    growth rate 2.0% (1991 est.)\nElectricity:\n    46,589,000 kW capacity; 157,040 million kWh produced, 3,980 kWh per capita\n    (1991)\nIndustries:\n    textiles and apparel (including footwear), food and beverages, metals and\n    metal manufactures, chemicals, shipbuilding, automobiles, machine tools,\n    tourism\nAgriculture:\n    accounts for about 5% of GDP and 14% of labor force; major products - grain,\n    vegetables, olives, wine grapes, sugar beets, citrus fruit, beef, pork,\n    poultry, dairy; largely self-sufficient in food; fish catch of 1.4 million\n    metric tons is among top 20 nations\nIllicit drugs:\n    key European gateway country for Latin American cocaine entering the\n    European market\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $1.9 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-79), $545.0 million; not\n    currently a recipient\n\n:Spain Economy\n\nCurrency:\n    peseta (plural - pesetas); 1 peseta (Pta) = 100 centimos\nExchange rates:\n    pesetas (Ptas) per US$1 - 104.79 (March 1992), 103.91 (1991), 101.93 (1990),\n    118.38 (1989), 116.49 (1988), 123.48 (1987)\nFiscal year:\n    calendar year\n\n:Spain Communications\n\nRailroads:\n    15,430 km total; Spanish National Railways (RENFE) operates 12,691 km\n    1.668-meter gauge, 6,184 km electrified, and 2,295 km double track; FEVE\n    (government-owned narrow-gauge railways) operates 1,821 km of predominantly\n    1.000-meter gauge and 441 km electrified; privately owned railways operate\n    918 km of predominantly 1.000-meter gauge, 512 km electrified, and 56 km\n    double track\nHighways:\n    150,839 km total; 82,513 km national (includes 2,433 km limited-access\n    divided highway, 63,042 km bituminous treated, 17,038 km intermediate\n    bituminous, concrete, or stone block) and 68,326 km provincial or local\n    roads (bituminous treated, intermediate bituminous, or stone block)\nInland waterways:\n    1,045 km, but of minor economic importance\nPipelines:\n    crude oil 265 km, petroleum products 1,794 km, natural gas 1,666 km\nPorts:\n    Algeciras, Alicante, Almeria, Barcelona, Bilbao, Cadiz, Cartagena, Castellon\n    de la Plana, Ceuta, El Ferrol del Caudillo, Puerto de Gijon, Huelva, La\n    Coruna, Las Palmas (Canary Islands), Mahon, Malaga, Melilla, Rota, Santa\n    Cruz de Tenerife, Sagunto, Tarragona, Valencia, Vigo, and 175 minor ports\nMerchant marine:\n    278 ships (1,000 GRT or over) totaling 2,915,409 GRT/5,228,378 DWT; includes\n    2 passenger, 9 short-sea passenger, 86 cargo, 13 refrigerated cargo, 15\n    container, 32 roll-on/roll-off cargo, 4 vehicle carrier, 48 petroleum\n    tanker, 14 chemical tanker, 7 liquefied gas, 3 specialized tanker, 45 bulk\nCivil air:\n    210 major transport aircraft\nAirports:\n    105 total, 99 usable; 60 with permanent-surface runways; 4 with runways over\n    3,659 m; 22 with runways 2,440-3,659 m; 25 with runways 1,220-2,439 m\nTelecommunications:\n    generally adequate, modern facilities; 15,350,464 telephones; broadcast\n    stations - 190 AM, 406 (134 repeaters) FM, 100 (1,297 repeaters) TV; 22\n    coaxial submarine cables; 2 communications satellite earth stations\n    operating in INTELSAT (Atlantic Ocean and Indian Ocean); MARECS, INMARSAT,\n    and EUTELSAT systems; tropospheric links\n\n:Spain Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Marines, Civil Guard, National Police, Coastal Civil\n    Guard\nManpower availability:\n    males 15-49, 10,205,741; 8,271,151 fit for military service; 337,407 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $8.7 billion, 2% of GDP (1991)\n\n:Spratly Islands Geography\n\nTotal area:\n    NA but less than 5 km2\nLand area:\n    less than 5 km2; includes 100 or so islets, coral reefs, and sea mounts\n    scattered over the South China Sea\nComparative area:\n    undetermined\nLand boundaries:\n    none\nCoastline:\n    926 km\nMaritime claims:\n    undetermined\nDisputes:\n    all of the Spratly Islands are claimed by China, Taiwan, and Vietnam; parts\n    of them are claimed by Malaysia and the Philippines; in 1984, Brunei\n    established an exclusive economic zone, which encompasses Louisa Reef, but\n    has not publicly claimed the island\nClimate:\n    tropical\nTerrain:\n    flat\nNatural resources:\n    fish, guano; undetermined oil and natural gas potential\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    subject to typhoons; includes numerous small islands, atolls, shoals, and\n    coral reefs\nNote:\n    strategically located near several primary shipping lanes in the central\n    South China Sea; serious navigational hazard\n\n:Spratly Islands People\n\nPopulation:\n    no permanent inhabitants; garrisons\n\n:Spratly Islands Government\n\nLong-form name:\n    none\n\n:Spratly Islands Economy\n\nOverview:\n    Economic activity is limited to commercial fishing, proximity to nearby oil-\n    and gas-producing sedimentary basins suggests the potential for oil and gas\n    deposits, but the Spratlys region is largely unexplored, and there are no\n    reliable estimates of potential reserves; commercial exploitation has yet to\n    be developed.\nIndustries:\n    none\n\n:Spratly Islands Communications\n\nPorts:\n    no natural harbors\nAirports:\n    2 total, 2 usable; none with runways over 2,439 m; 1 with runways\n    1,220-2,439 m\n\n:Spratly Islands Defense Forces\n\nNote:\n    44 small islands or reefs are occupied by China, Malaysia, the Philippines,\n    Taiwan, and Vietnam\n\n:Sri Lanka Geography\n\nTotal area:\n    65,610 km2\nLand area:\n    64,740 km2\nComparative area:\n    slightly larger than West Virginia\nLand boundaries:\n    none\nCoastline:\n    1,340 km\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; monsoonal; northeast monsoon (December to March); southwest\n    monsoon (June to October)\nTerrain:\n    mostly low, flat to rolling plain; mountains in south-central interior\nNatural resources:\n    limestone, graphite, mineral sands, gems, phosphates, clay\nLand use:\n    arable land 16%; permanent crops 17%; meadows and pastures 7%; forest and\n    woodland 37%; other 23%; includes irrigated 8%\nEnvironment:\n    occasional cyclones, tornados; deforestation; soil erosion\nNote:\n    only 29 km from India across the Palk Strait; near major Indian Ocean sea\n    lanes\n\n:Sri Lanka People\n\nPopulation:\n    17,631,528 (July 1992), growth rate 1.2% (1992); note - about 120,000 people\n    fled to India in 1991 because of fighting between government forces and\n    Tamil insurgents; about 200,000 Tamils will be repatriated in 1992\nBirth rate:\n    20 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    21 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 74 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Sri Lankan(s); adjective - Sri Lankan\nEthnic divisions:\n    Sinhalese 74%; Tamil 18%; Moor 7%; Burgher, Malay, and Veddha 1%\nReligions:\n    Buddhist 69%, Hindu 15%, Christian 8%, Muslim 8%\nLanguages:\n    Sinhala (official); Sinhala and Tamil listed as national languages; Sinhala\n    spoken by about 74% of population, Tamil spoken by about 18%; English\n    commonly used in government and spoken by about 10% of the population\nLiteracy:\n    86% (male 91%, female 81%) age 15 and over can read and write (1981)\nLabor force:\n    6,600,000; agriculture 45.9%, mining and manufacturing 13.3%, trade and\n    transport 12.4%, services and other 28.4% (1985 est.)\nOrganized labor:\n    about 30% of labor force, over 50% of which are employed on tea, rubber, and\n    coconut estates\n\n:Sri Lanka Government\n\nLong-form name:\n    Democratic Socialist Republic of Sri Lanka\nType:\n    republic\nCapital:\n    Colombo\nAdministrative divisions:\n    the administrative structure now includes 9 provinces - Central, Eastern,\n    North, North Central, North Western, Sabaragamuwa, Southern, Uva, and\n    Western and 24 districts - Amparai, Anuradhapura, Badulla, Batticaloa,\n    Colombo, Galle, Gampaha, Hambantota, Jaffna, Kalutara, Kandy, Kegalla,\n    Kurunegala, Mannar, Matale, Matara, Moneragala, Mullaittivu, Nuwara Eliya,\n    Polonnaruwa, Puttalam, Ratnapura, Trincomalee, Vavuniya; note - in the\n    future there may be only 8 provinces (combining the two provinces of North\n    and Eastern into one province of North Eastern) and 25 districts (adding\n    Kilinochchi to the existing districts)\nIndependence:\n    4 February 1948 (from UK; formerly Ceylon)\nConstitution:\n    31 August 1978\nLegal system:\n    a highly complex mixture of English common law, Roman-Dutch, Muslim,\n    Sinhalese, and customary law; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence and National Day, 4 February (1948)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral Parliament\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Ranasinghe PREMADASA (since 2 January 1989)\n  Head of Government:\n    Prime Minister Dingiri Banda WIJETUNGE (since 6 March 1989)\nPolitical parties and leaders:\n    United National Party (UNP), Ranasinghe PREMADASA; Sri Lanka Freedom Party\n    (SLFP), Sirimavo BANDARANAIKE; Sri Lanka Muslim Congress (SLMC), M. H. M.\n    ASHRAFF; All Ceylon Tamil Congress (ACTC), Kumar PONNAMBALAM; People's\n    United Front (MEP, or Mahajana Eksath Peramuna), Dinesh GUNAWARDENE; Eelam\n    Democratic Front (EDF), Edward Sebastian PILLAI; Tamil United Liberation\n    Front (TULF), leader (vacant); Eelam Revolutionary Organization of Students\n    (EROS), Velupillai BALAKUMARAN; New Socialist Party (NSSP, or Nava Sama\n    Samaja Party), Vasudeva NANAYAKKARA; Lanka Socialist Party/Trotskyite (LSSP,\n    or Lanka Sama Samaja Party), Colin R. de SILVA; Sri Lanka People's Party\n    (SLMP, or Sri Lanka Mahajana Party), Ossie ABEYGUNASEKERA; Communist Party,\n    K. P. SILVA; Communist Party/Beijing (CP/B), N. SHANMUGATHASAN; note - the\n    United Socialist Alliance (USA) includes the NSSP, LSSP, SLMP, CP/M, and\n    CP/B\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 19 December 1988 (next to be held NA December 1994); results -\n    Ranasinghe PREMADASA (UNP) 50%, Sirimavo BANDARANAIKE (SLFP) 45%, other 5%\n\n:Sri Lanka Government\n\n  Parliament:\n    last held 15 February 1989 (next to be held by NA February 1995); results -\n    UNP 51%, SLFP 32%, SLMC 4%, TULF 3%, USA 3%, EROS 3%, MEP 1%, other 3%;\n    seats - (225 total) UNP 125, SLFP 67, other 33\nOther political or pressure groups:\n    Liberation Tigers of Tamil Eelam (LTTE) and other smaller Tamil separatist\n    groups; Janatha Vimukthi Peramuna (JVP or People's Liberation Front);\n    Buddhist clergy; Sinhalese Buddhist lay groups; labor unions\nMember of:\n    AsDB, C, CCC, CP, ESCAP, FAO, G-24, G-77, GATT, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC,\n    ISO, ITU, LORCS, NAM, PCA, SAARC, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WFTU,\n    WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador W. Susanta De ALWIS; Chancery at 2148 Wyoming Avenue NW,\n    Washington, DC 20008; telephone (202) 483-4025 through 4028; there is a Sri\n    Lankan Consulate in New York\n  US:\n    Ambassador Marion V. CREEKMORE, Jr.; Embassy at 210 Galle Road, Colombo 3\n    (mailing address is P. O. Box 106, Colombo); telephone [94] (1) 44180107,\n    FAX [94] (1) 43-73-45\nFlag:\n    yellow with two panels; the smaller hoist-side panel has two equal vertical\n    bands of green (hoist side) and orange; the other panel is a large dark red\n    rectangle with a yellow lion holding a sword, and there is a yellow bo leaf\n    in each corner; the yellow field appears as a border that goes around the\n    entire flag and extends between the two panels\n\n:Sri Lanka Economy\n\nOverview:\n    Agriculture, forestry, and fishing dominate the economy, employing half of\n    the labor force and accounting for one quarter of GDP. The plantation crops\n    of tea, rubber, and coconuts provide about one-third of export earnings. The\n    economy has been plagued by high rates of unemployment since the late 1970s.\n    Economic growth, which has been depressed by ethnic unrest, accelerated in\n    1991 as domestic conditions began to improve.\nGDP:\n    exchange rate conversion - $7.2 billion, per capita $410; real growth rate\n    5.0% (1991 est.)\nInflation rate (consumer prices):\n    10% (1991)\nUnemployment rate:\n    14% (1991 est.)\nBudget:\n    revenues $2.0 billion; expenditures $3.7 billion, including capital\n    expenditures of $500 million (1992)\nExports:\n    $2.3 billion (f.o.b., 1991)\n  commodities:\n    textiles and garment, teas, petroleum products, coconut, rubber,\n    agricultural products, gems and jewelry, marine products\n  partners:\n    US 25%, FRG, Japan, UK, Belgium, Taiwan, Hong Kong, China\nImports:\n    $3.0 billion (c.i.f., 1991)\n  commodities:\n    food and beverages, textiles and textile materials, petroleum, machinery and\n    equipment\n  partners:\n    Japan, Iran, US 7.7%, India, Taiwan, Singapore, FRG, UK\nExternal debt:\n    $5.8 billion (1990)\nIndustrial production:\n    growth rate 8% (1991 est.); accounts for 20% of GDP\nElectricity:\n    1,300,000 kW capacity; 4,200 million kWh produced, 240 kWh per capita (1990)\nIndustries:\n    processing of rubber, tea, coconuts, and other agricultural commodities;\n    cement, petroleum refining, textiles, tobacco, clothing\nAgriculture:\n    accounts for 26% of GDP and nearly half of labor force; most important\n    staple crop is paddy rice; other field crops - sugarcane, grains, pulses,\n    oilseeds, roots, spices; cash crops - tea, rubber, coconuts; animal products\n    - milk, eggs, hides, meat; not self-sufficient in rice production\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.0 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1980-89), $5.1 billion; OPEC\n    bilateral aid (1979-89), $169 million; Communist countries (1970-89), $369\n    million\nCurrency:\n    Sri Lankan rupee (plural - rupees); 1 Sri Lankan rupee (SLRe) = 100 cents\nExchange rates:\n    Sri Lankan rupees (SLRes) per US$1 - 43.112 (March 1992), 41.372 (1991),\n    40.063 (1990), 36.047 (1989), 31.807 (1988), 29.445 (1987)\nFiscal year:\n    calendar year\n\n:Sri Lanka Communications\n\nRailroads:\n    1,948 km total (1990); all 1.868-meter broad gauge; 102 km double track; no\n    electrification; government owned\nHighways:\n    75,749 km total (1990); 27,637 km paved (mostly bituminous treated), 32,887\n    km crushed stone or gravel, 14,739 km improved earth or unimproved earth;\n    several thousand km of mostly unmotorable tracks (1988 est.)\nInland waterways:\n    430 km; navigable by shallow-draft craft\nPipelines:\n    crude oil and petroleum products 62 km (1987)\nPorts:\n    Colombo, Trincomalee\nMerchant marine:\n    30 ships (1,000 GRT or over) totaling 310,173 GRT/489,378 DWT; includes 13\n    cargo, 6 refrigerated cargo, 5 container, 3 petroleum tanker, 3 bulk\nCivil air:\n    8 major transport (including 1 leased)\nAirports:\n    14 total, 13 usable; 12 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 7 with runways 1,220-2,439 m\nTelecommunications:\n    good international service; 114,000 telephones (1982); broadcast stations -\n    12 AM, 5 FM, 5 TV; submarine cables extend to Indonesia and Djibouti; 2\n    Indian Ocean INTELSAT earth stations\n\n:Sri Lanka Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Police Force\nManpower availability:\n    males 15-49, 4,709,203; 3,678,952 fit for military service; 177,554 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $432 million, 6% of GDP (1991)\n\\\n\n:Sudan Geography\n\nTotal area:\n    2,505,810 km2\nLand area:\n    2,376,000 km2\nComparative area:\n    slightly more than one-quarter the size of the US\nLand boundaries:\n    7,697 km total; Central African Republic 1,165 km, Chad 1,360 km, Egypt\n    1,273 km, Ethiopia 2,221 km, Kenya 232 km, Libya 383 km, Uganda 435 km,\n    Zaire 628 km\nCoastline:\n    853 km\nMaritime claims:\n  Contiguous zone:\n    18 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    12 nm\nDisputes:\n    administrative boundary with Kenya does not coincide with international\n    boundary; administrative boundary with Egypt does not coincide with\n    international boundary\nClimate:\n    tropical in south; arid desert in north; rainy season (April to October)\nTerrain:\n    generally flat, featureless plain; mountains in east and west\nNatural resources:\n    small reserves of crude oil, iron ore, copper, chromium ore, zinc, tungsten,\n    mica, silver, crude oil\nLand use:\n    arable land 5%; permanent crops NEGL%; meadows and pastures 24%; forest and\n    woodland 20%; other 51%; includes irrigated 1%\nEnvironment:\n    dominated by the Nile and its tributaries; dust storms; desertification\nNote:\n    largest country in Africa\n\n:Sudan People\n\nPopulation:\n    28,305,046 (July 1992), growth rate 3.1% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    83 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    53 years male, 54 years female (1992)\nTotal fertility rate:\n    6.3 children born/woman (1992)\nNationality:\n    noun - Sudanese (singular and plural); adjective - Sudanese\nEthnic divisions:\n    black 52%, Arab 39%, Beja 6%, foreigners 2%, other 1%\nReligions:\n    Sunni Muslim (in north) 70%, indigenous beliefs 20%, Christian (mostly in\n    south and Khartoum) 5%\nLanguages:\n    Arabic (official), Nubian, Ta Bedawie, diverse dialects of Nilotic,\n    Nilo-Hamitic, and Sudanic languages, English; program of Arabization in\n    process\nLiteracy:\n    27% (male 43%, female 12%) age 15 and over can read and write (1990 est.)\nLabor force:\n    6,500,000; agriculture 80%, industry and commerce 10%, government 6%; labor\n    shortages for almost all categories of skilled employment (1983 est.); 52%\n    of population of working age (1985)\nOrganized labor:\n    trade unions suspended following 30 June 1989 coup; now in process of being\n    legalized anew\n\n:Sudan Government\n\nLong-form name:\n    Republic of the Sudan\nType:\n    military; civilian government suspended and martial law imposed after 30\n    June 1989 coup\nCapital:\n    Khartoum\nAdministrative divisions:\n    9 states (wilayat, singular - wilayat or wilayah*); A'ali an Nil, Al Wusta*,\n    Al Istiwa'iyah*, Al Khartum, Ash Shamaliyah*, Ash Sharqiyah*, Bahr al\n    Ghazal, Darfur, Kurdufan\nIndependence:\n    1 January 1956 (from Egypt and UK; formerly Anglo-Egyptian Sudan)\nConstitution:\n    12 April 1973, suspended following coup of 6 April 1985; interim\n    constitution of 10 October 1985 suspended following coup of 30 June 1989\nLegal system:\n    based on English common law and Islamic law; as of 20 January 1991, the\n    Revolutionary Command Council imposed Islamic law in the six northern states\n    of Al Wusta, Al Khartum, Ash Shamaliyah, Ash Sharqiyah, Darfur, and\n    Kurdufan; the council is still studying criminal provisions under Islamic\n    law; Islamic law will apply to all residents of the six northern states\n    regardless of their religion; some separate religious courts; accepts\n    compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 1 January (1956)\nExecutive branch:\n    executive and legislative authority vested in a 12-member Revolutionary\n    Command Council (RCC); chairman of the RCC acts as prime minister; in July\n    1989, RCC appointed a predominately civilian 22-member cabinet to function\n    as advisers\nLegislative branch:\n    appointed 300-member Transitional National Assembly; note - as announced 1\n    January 1992 by RCC Chairman BASHIR, the Assembly assumes all legislative\n    authority for Sudan until the eventual, unspecified resumption of national\n    elections\nJudicial branch:\n    Supreme Court, Special Revolutionary Courts\nLeaders:\n  Chief of State and Head of Government:\n    Revolutionary Command Council Chairman and Prime Minister Lt. Gen. Umar\n    Hasan Ahmad al-BASHIR (since 30 June 1989); Deputy Chairman of the Command\n    Council and Deputy Prime Minister Maj. Gen. al-Zubayr Muhammad SALIH Ahmed\n    (since 9 July 1989)\nPolitical parties and leaders:\n    none; banned following 30 June 1989 coup\nSuffrage:\n    none\nElections:\n    none\nMember of:\n    ABEDA, ACP, AfDB, AFESD, AL, AMF, CAEU, CCC, ECA, FAO, G-77, IAEA, IBRD,\n    ICAO, IDA, IDB, IFAD, IFC, IGADD, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC,\n    ISO, ITU, LORCS, NAM, OAU, OIC, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU,\n    WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador `Abdallah Ahmad `ABDALLAH; Chancery at 2210 Massachusetts Avenue\n    NW, Washington, DC 20008; telephone (202) 338-8565 through 8570; there is a\n    Sudanese Consulate General in New York\n\n:Sudan Government\n\n  US:\n    Ambassador James R. CHEEK (will be replaced summer of 1992); Embassy at\n    Shar'ia Ali Abdul Latif, Khartoum (mailing address is P. O. Box 699,\n    Khartoum, or APO AE 09829); telephone 74700 or 74611; Telex 22619\nFlag:\n    three equal horizontal bands of red (top), white, and black with a green\n    isosceles triangle based on the hoist side\n\n:Sudan Economy\n\nOverview:\n    Sudan is buffeted by civil war, chronic political instability, adverse\n    weather, high inflation, and counterproductive economic policies. The\n    economy is dominated by governmental entities that account for more than 70%\n    of new investment. The private sector's main areas of activity are\n    agriculture and trading, with most private industrial investment predating\n    1980. The economy's base is agriculture, which employs 80% of the work\n    force. Industry mainly processes agricultural items. Sluggish economic\n    performance over the past decade, attributable largely to declining annual\n    rainfall, has reduced levels of per capita income and consumption. A high\n    foreign debt and huge arrearages continue to cause difficulties. In 1990 the\n    International Monetary Fund took the unusual step of declaring Sudan\n    noncooperative because of its nonpayment of arrearages to the Fund. Despite\n    subsequent government efforts to implement reforms urged by the IMF and the\n    World Bank, the economy remained stagnant in FY91 as entrepreneurs lack the\n    incentive to take economic risks.\nGDP:\n    exchange rate conversion - $12.1 billion, per capita $450; real growth rate\n    0% (FY91 est.)\nInflation rate (consumer prices):\n    95% (FY91 est.)\nUnemployment rate:\n    15% (FY91 est.)\nBudget:\n    revenues $1.3 billion; expenditures $2.1 billion, including capital\n    expenditures of $505 million (FY91 est.)\nExports:\n    $325 million (f.o.b., FY91 est.)\n  commodities:\n    cotton 52%, sesame, gum arabic, peanuts\n  partners:\n    Western Europe 46%, Saudi Arabia 14%, Eastern Europe 9%, Japan 9%, US 3%\n    (FY88)\nImports:\n    $1.40 billion (c.i.f., FY91 est.)\n  commodities:\n    foodstuffs, petroleum products, manufactured goods, machinery and equipment,\n    medicines and chemicals, textiles\n  partners:\n    Western Europe 32%, Africa and Asia 15%, US 13%, Eastern Europe 3% (FY88)\nExternal debt:\n    $14.6 billion (June 1991 est.)\nIndustrial production:\n    growth rate NA%; accounts for 11% of GDP (FY89)\nElectricity:\n    610,000 kW capacity; 905 million kWh produced, 40 kWh per capita (1991)\nIndustries:\n    cotton ginning, textiles, cement, edible oils, sugar, soap distilling,\n    shoes, petroleum refining\nAgriculture:\n    accounts for 35% of GDP and 80% of labor force; water shortages; two-thirds\n    of land area suitable for raising crops and livestock; major products -\n    cotton, oilseeds, sorghum, millet, wheat, gum arabic, sheep; marginally\n    self-sufficient in most foods\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.5 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $5.1 billion; OPEC\n    bilateral aid (1979-89), $3.1 billion; Communist countries (1970-89), $588\n    million\n\n:Sudan Economy\n\nCurrency:\n    Sudanese pound (plural - pounds); 1 Sudanese pound (#Sd) = 100 piasters\nExchange rates:\n    official rate - Sudanese pounds (#Sd) per US$1 - 90.1 (March 1992), 5.4288\n    (1991), 4.5004 (fixed rate since 1987), 2.8121 (1987); note - free market\n    rate 83 (December 1991)\nFiscal year:\n    1 July - 30 June\n\n:Sudan Communications\n\nRailroads:\n    5,500 km total; 4,784 km 1.067-meter gauge, 716 km 1.6096-meter-gauge\n    plantation line\nHighways:\n    20,000 km total; 1,600 km bituminous treated, 3,700 km gravel, 2,301 km\n    improved earth, 12,399 km unimproved earth and track\nInland waterways:\n    5,310 km navigable\nPipelines:\n    refined products 815 km\nPorts:\n    Port Sudan, Swakin\nMerchant marine:\n    5 ships (1,000 GRT or over) totaling 42,277 GRT/59,588 DWT; includes 3\n    cargo, 2 roll-on/roll-off cargo\nCivil air:\n    18 major transport aircraft\nAirports:\n    72 total, 57 usable; 8 with permanent-surface runways; none with runways\n    over 3,659 m; 5 with runways 2,440-3,659 m; 31 with runways 1,220-2,439 m\nTelecommunications:\n    large, well-equipped system by African standards, but barely adequate and\n    poorly maintained by modern standards; consists of microwave, cable, radio\n    communications, and troposcatter; domestic satellite system with 14\n    stations; broadcast stations - 11 AM, 3 TV; satellite earth stations - 1\n    Atlantic Ocean INTELSAT and 1 ARABSAT\n\n:Sudan Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Air Defense Force\nManpower availability:\n    males 15-49, 6,432,270; 3,949,518 fit for military service; 302,696 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $610 million, 7.2% of GDP (1989 est.)\n\n:Suriname Geography\n\nTotal area:\n    163,270 km2\nLand area:\n    161,470 km2\nComparative area:\n    slightly larger than Georgia\nLand boundaries:\n    1,707 km total; Brazil 597 km, French Guiana 510 km, Guyana 600 km\nCoastline:\n    386 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims area in French Guiana between Litani Rivier and Riviere Marouini\n    (both headwaters of the Lawa); claims area in Guyana between New (Upper\n    Courantyne) and Courantyne/Kutari Rivers (all headwaters of the Courantyne)\nClimate:\n    tropical; moderated by trade winds\nTerrain:\n    mostly rolling hills; narrow coastal plain with swamps\nNatural resources:\n    timber, hydropower potential, fish, shrimp, bauxite, iron ore, and small\n    amounts of nickel, copper, platinum, gold\nLand use:\n    arable land NEGL%; permanent crops NEGL%; meadows and pastures NEGL%; forest\n    and woodland 97%; other 3%; includes irrigated NEGL%\nEnvironment:\n    mostly tropical rain forest\n\n:Suriname People\n\nPopulation:\n    410,016 (July 1992), growth rate 1.5% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -5 migrants/1,000 population (1992)\nInfant mortality rate:\n    34 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    66 years male, 71 years female (1992)\nTotal fertility rate:\n    2.9 children born/woman (1992)\nNationality:\n    noun - Surinamer(s); adjective - Surinamese\nEthnic divisions:\n    Hindustani (East Indian) 37.0%, Creole (black and mixed) 31.0%, Javanese\n    15.3%, Bush black 10.3%, Amerindian 2.6%, Chinese 1.7%, Europeans 1.0%,\n    other 1.1%\nReligions:\n    Hindu 27.4%, Muslim 19.6%, Roman Catholic 22.8%, Protestant (predominantly\n    Moravian) 25.2%, indigenous beliefs about 5%\nLanguages:\n    Dutch (official); English widely spoken; Sranan Tongo (Surinamese, sometimes\n    called Taki-Taki) is native language of Creoles and much of the younger\n    population and is lingua franca among others; also Hindi Suriname Hindustani\n    (a variant of Bhoqpuri) and Javanese\nLiteracy:\n    95% (male 95%, female 95%) age 15 and over can read and write (1990 est.)\nLabor force:\n    104,000 (1984)\nOrganized labor:\n    49,000 members of labor force\n\n:Suriname Government\n\nLong-form name:\n    Republic of Suriname\nType:\n    republic\nCapital:\n    Paramaribo\nAdministrative divisions:\n    10 districts (distrikten, singular - distrikt); Brokopondo, Commewijne,\n    Coronie, Marowijne, Nickerie, Para, Paramaribo, Saramacca, Sipaliwini,\n    Wanica\nIndependence:\n    25 November 1975 (from Netherlands; formerly Netherlands Guiana or Dutch\n    Guiana)\nConstitution:\n    ratified 30 September 1987\nLegal system:\n    NA\nNational holiday:\n    Independence Day, 25 November (1975)\nExecutive branch:\n    president, vice president and prime minister, Cabinet of Ministers, Council\n    of State; note - Commander in Chief of the National Army maintains\n    significant power\nLegislative branch:\n    unicameral National Assembly (Assemblee Nationale)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Ronald VENETIAAN (since 16 September 1991); Vice President and\n    Prime Minister Jules AJODHIA (since 16 September 1991)\nPolitical parties and leaders:\n  traditional ethnic-based parties:\n    The New Front (NF), a coalition formed of four parties following the 24\n    December 1990 military coup - Progressive Reform Party (VHP), Jaggernath\n    LACHMON; National Party of Suriname (NPS), Henck ARRON; Indonesian Peasants\n    Party (KTPI), Willie SOEMITA; and Suriname Labor Party (SPA) Fred DERBY;\n  promilitary:\n    National Democratic Party (NDP), Orlando VAN AMSON; Democratic Alternative\n    '91 (DA '91), Winston JESSURUN, a coalition of five parties formed in\n    January 1991 - Alternative Forum (AF), Gerard BRUNINGS, Winston JESSURUN;\n    Reformed Progressive Party (HPP), Panalal PARMESSAR; Party for Brotherhood\n    and Unity in Politics (BEP), Cipriano ALLENDY; Pendawalima, Marsha JAMIN;\n    and Independent Progressive Group, Karam RAMSUNDERSINGH;\n  leftists:\n    Revolutionary People's Party (RVP), Michael NAARENDORP; Progressive Workers\n    and Farmers (PALU), Iwan KROLIS\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 6 September 1991 (next to be held NA May 1996); results - elected\n    by the National Assembly - Ronald VENETIAAN (NF) 80% (645 votes), Jules\n    WIJDENBOSCH (NDP) 14% (115 votes), Hans PRADE (DA '91) 6% (49 votes)\n  National Assembly:\n    last held 25 May 1991 (next to be held NA May 1996); results - percent of\n    vote NA; seats - (51 total) NF 30, NDP 12, DA '91 9\n\n:Suriname Government\n\nMember of:\n    ACP, CARICOM (observer), ECLAC, FAO, GATT, G-77, IADB, IBRD, ICAO, ICFTU,\n    IFAD, ILO, IMF, IMO, INTERPOL, IOC, ITU, LAES, LORCS, NAM, OAS, OPANAL, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Willem A. UDENHOUT; Chancery at Suite 108, 4301 Connecticut\n    Avenue NW, Washington, DC 20008; telephone (202) 244-7488 or 7490 through\n    7492; there is a Surinamese Consulate General in Miami\n  US:\n    Ambassador John (Jack) P. LEONARD; Embassy at Dr. Sophie Redmonstraat 129,\n    Paramaribo (mailing address is P. O. Box 1821, Paramaribo); telephone [597]\n    472900, 477881, or 476459; FAX [597] 410025\nFlag:\n    five horizontal bands of green (top, double width), white, red (quadruple\n    width), white, and green (double width); there is a large yellow\n    five-pointed star centered in the red band\n\n:Suriname Economy\n\nOverview:\n    The economy is dominated by the bauxite industry, which accounts for about\n    70% of export earnings and 40% of tax revenues. The economy has been in\n    trouble since the Dutch ended development aid in 1982. A drop in world\n    bauxite prices which started in the late 1970s and continued until late 1986\n    was followed by the outbreak of a guerrilla insurgency in the interior that\n    crippled the important bauxite sector. Although the insurgency has since\n    ebbed and the bauxite sector recovered, a military coup in December 1990\n    reflected continued political instability and deterred investment and\n    economic reform. High inflation, high unemployment, widespread black market\n    activity, and hard currency shortfalls continue to mark the economy.\nGDP:\n    exchange rate conversion - $1.4 billion, per capita $3,400; real growth rate\n    0% (1989 est.)\nInflation rate (consumer prices):\n    50% (1989 est.)\nUnemployment rate:\n    33% (1990)\nBudget:\n    revenues $466 million; expenditures $716 million, including capital\n    expenditures of $123 million (1989 est.)\nExports:\n    $549 million (f.o.b., 1989 est.)\n  commodities:\n    alumina, bauxite, aluminum, rice, wood and wood products, shrimp and fish,\n    bananas\n  partners:\n    Norway 33%, Netherlands 20%, US 15%, FRG 9%, Brazil 5%, UK 5%, Japan 3%,\n    other 10%\nImports:\n    $331 million (f.o.b., 1989 est.)\n  commodities:\n    capital equipment, petroleum, foodstuffs, cotton, consumer goods\n  partners:\n    US 37%, Netherlands 15%, Netherlands Antilles 11%, Trinidad and Tobago 9%,\n    Brazil 5%, UK 3%, other 20%\nExternal debt:\n    $138 million (1990 est.)\nIndustrial production:\n    growth rate NA; accounts for 22% of GDP\nElectricity:\n    458,000 kW capacity; 2,018 million kWh produced, 5,015 kWh per capita (1991)\nIndustries:\n    bauxite mining, alumina and aluminum production, lumbering, food processing,\n    fishing\nAgriculture:\n    accounts for 11% of GDP; paddy rice planted on 85% of arable land and\n    represents 60% of total farm output; other products - bananas, palm kernels,\n    coconuts, plantains, peanuts, beef, chicken; shrimp and forestry products of\n    increasing importance; self-sufficient in most foods\nEconomic aid:\n    US commitments, including Ex-Im (FY70-83), $2.5 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.5 billion\nCurrency:\n    Surinamese guilder, gulden, or florin (plural - guilders, gulden, or\n    florins); 1 Surinamese guilder, gulden, or florin (Sf.) = 100 cents\nExchange rates:\n    Surinamese guilders, gulden, or florins (Sf.) per US$1 - 1.7850 (fixed rate)\n\n:Suriname Economy\n\nFiscal year:\n    calendar year\n\n:Suriname Communications\n\nRailroads:\n    166 km total; 86 km 1.000-meter gauge, government owned, and 80 km\n    1.435-meter standard gauge; all single track\nHighways:\n    8,300 km total; 500 km paved; 5,400 km bauxite gravel, crushed stone, or\n    improved earth; 2,400 km sand or clay\nInland waterways:\n    1,200 km; most important means of transport; oceangoing vessels with drafts\n    ranging up to 7 m can navigate many of the principal waterways\nPorts:\n    Paramaribo, Moengo\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 6,472 GRT/8,914 DWT; includes 2 cargo,\n    1 container\nCivil air:\n    1 major transport aircraft\nAirports:\n    46 total, 40 usable; 6 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    international facilities good; domestic microwave system; 27,500 telephones;\n    broadcast stations - 5 AM, 14 FM, 6 TV, 1 shortwave; 2 Atlantic Ocean\n    INTELSAT earth stations\n\n:Suriname Defense Forces\n\nBranches:\n    National Army (including Navy which is company-size, small Air Force\n    element), Civil Police, People's Militia\nManpower availability:\n    males 15-49, 109,551; 65,250 fit for military service\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Svalbard Geography\n\nTotal area:\n    62,049 km2\nLand area:\n    62,049 km2; includes Spitsbergen and Bjornoya (Bear Island)\nComparative area:\n    slightly smaller than West Virginia\nLand boundaries:\n    none\nCoastline:\n    3,587 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm unilaterally claimed by Norway, not recognized by Russia\n  Territorial sea:\n    4 nm\nDisputes:\n    focus of maritime boundary dispute in the Barents Sea between Norway and\n    Russia\nClimate:\n    arctic, tempered by warm North Atlantic Current; cool summers, cold winters;\n    North Atlantic Current flows along west and north coasts of Spitsbergen,\n    keeping water open and navigable most of the year\nTerrain:\n    wild, rugged mountains; much of high land ice covered; west coast clear of\n    ice about half the year; fjords along west and north coasts\nNatural resources:\n    coal, copper, iron ore, phosphate, zinc, wildlife, fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%; there are no trees and the only bushes are\n    crowberry and cloudberry\nEnvironment:\n    great calving glaciers descend to the sea\nNote:\n    located 445 km north of Norway where the Arctic Ocean, Barents Sea,\n    Greenland Sea, and Norwegian Sea meet\n\n:Svalbard People\n\nPopulation:\n    3,181 (July 1992), growth rate -3.9% (1992); about one-third of the\n    population resides in the Norwegian areas (Longyearbyen and Svea on\n    Vestspitsbergen) and two-thirds in the Russian areas (Barentsburg and\n    Pyramiden on Vestspitsbergen); about 9 persons live at the Polish research\n    station\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nEthnic divisions:\n    Russian 64%, Norwegian 35%, other 1% (1981)\nLanguages:\n    Russian, Norwegian\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    none\n\n:Svalbard Government\n\nLong-form name:\n    none\nType:\n    territory of Norway administered by the Ministry of Industry, Oslo, through\n    a governor (sysselmann) residing in Longyearbyen, Spitsbergen; by treaty (9\n    February 1920) sovereignty was given to Norway\nCapital:\n    Longyearbyen\nLeaders:\n  Chief of State:\n    King HARALD V (since 17 January 1991)\n  Head of Government:\n    Governor Leif ELDRING (since NA)\nMember of:\n    none\nFlag:\n    the flag of Norway is used\n\n:Svalbard Economy\n\nOverview:\n    Coal mining is the major economic activity on Svalbard. By treaty (9\n    February 1920), the nationals of the treaty powers have equal rights to\n    exploit mineral deposits, subject to Norwegian regulation. Although US, UK,\n    Dutch, and Swedish coal companies have mined in the past, the only companies\n    still mining are Norwegian and Russian. The settlements on Svalbard are\n    essentially company towns. The Norwegian state-owned coal company employs\n    nearly 60% of the Norwegian population on the island, runs many of the local\n    services, and provides most of the local infrastructure. There is also some\n    trapping of seal, polar bear, fox, and walrus.\nBudget:\n    revenues $13.3 million, expenditures $13.3 million, including capital\n    expenditures of $NA (1990)\nElectricity:\n    21,000 kW capacity; 45 million kWh produced, 11,420 kWh per capita (1989)\nCurrency:\n    Norwegian krone (plural - kroner); 1 Norwegian krone (NKr) = 100 ore\nExchange rates:\n    Norwegian kroner (NKr) per US$1 - 6.5189 (March 1992), 6.4829 (1991), 6.2597\n    (1990), 6.9045 (1989), 6.5170 (1988), 6.7375 (1987)\n\n:Svalbard Communications\n\nPorts:\n    limited facilities - Ny-Alesund, Advent Bay\nAirports:\n    4 total, 4 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    5 meteorological/radio stations; local telephone service; broadcast stations\n    - 1 AM, 1 (2 repeaters) FM, 1 TV; satellite communication with Norwegian\n    mainland\n\n:Svalbard Defense Forces\n\nNote:\n    demilitarized by treaty (9 February 1920)\n\n:Swaziland Geography\n\nTotal area:\n    17,360 km2\nLand area:\n    17,200 km2\nComparative area:\n    slightly smaller than New Jersey\nLand boundaries:\n    535 km total; Mozambique 105 km, South Africa 430 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    varies from tropical to near temperate\nTerrain:\n    mostly mountains and hills; some moderately sloping plains\nNatural resources:\n    asbestos, coal, clay, cassiterite, hydropower, forests, small gold and\n    diamond deposits, quarry stone, and talc\nLand use:\n    arable land 8%; permanent crops NEGL%; meadows and pastures 67%; forest and\n    woodland 6%; other 19%; includes irrigated 2%\nEnvironment:\n    overgrazing; soil degradation; soil erosion\nNote:\n    landlocked; almost completely surrounded by South Africa\n\n:Swaziland People\n\nPopulation:\n    913,008 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    -6 migrants/1,000 population (1992)\nInfant mortality rate:\n    98 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    52 years male, 60 years female (1992)\nTotal fertility rate:\n    6.2 children born/woman (1992)\nNationality:\n    noun - Swazi(s); adjective - Swazi\nEthnic divisions:\n    African 97%, European 3%\nReligions:\n    Christian 60%, indigenous beliefs 40%\nLanguages:\n    English and siSwati (official); government business conducted in English\nLiteracy:\n    55% (male 57%, female 54%) age 15 and over can read and write (1976)\nLabor force:\n    195,000; over 60,000 engaged in subsistence agriculture; about 92,000 wage\n    earners (many only intermittently), with agriculture and forestry 36%,\n    community and social services 20%, manufacturing 14%, construction 9%, other\n    21%; 16,800 employed in South Africa mines (1990)\nOrganized labor:\n    about 10% of wage earners\n\n:Swaziland Government\n\nLong-form name:\n    Kingdom of Swaziland\nType:\n    monarchy; independent member of Commonwealth\nCapital:\n    Mbabane (administrative); Lobamba (legislative)\nAdministrative divisions:\n    4 districts; Hhohho, Lubombo, Manzini, Shiselweni\nIndependence:\n    6 September 1968 (from UK)\nConstitution:\n    none; constitution of 6 September 1968 was suspended on 12 April 1973; a new\n    constitution was promulgated 13 October 1978, but has not been formally\n    presented to the people\nLegal system:\n    based on South African Roman-Dutch law in statutory courts, Swazi\n    traditional law and custom in traditional courts; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Somhlolo (Independence) Day, 6 September (1968)\nExecutive branch:\n    monarch, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament is advisory and consists of an upper house or Senate\n    and a lower house or House of Assembly\nJudicial branch:\n    High Court, Court of Appeal\nLeaders:\n  Chief of State:\n    King MSWATI III (since 25 April 1986)\n  Head of Government:\n    Prime Minister Obed DLAMINI (since 12 July 1989)\nPolitical parties and leaders:\n    none; banned by the Constitution promulgated on 13 October 1978\nSuffrage:\n    none\nElections:\n    indirect parliamentary election through Swaziland's Tinkhundala System\n    scheduled for November 1992\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, G-77, IBRD, ICAO, ICFTU, IDA, IFAD, IFC, ILO,\n    IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, PCA, SACU, SADCC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Absalom Vusani MAMBA; Chancery at 3400 International Drive NW,\n    Washington, DC 20008; telephone (202) 362-6683\n  US:\n    Ambassador Stephen H. ROGERS; Embassy at Central Bank Building, Warner\n    Street, Mbabane (mailing address is P. O. Box 199, Mbabane); telephone [268]\n    46441 through 5; FAX [268] 45959\nFlag:\n    three horizontal bands of blue (top), red (triple width), and blue; the red\n    band is edged in yellow; centered in the red band is a large black and white\n    shield covering two spears and a staff decorated with feather tassels, all\n    placed horizontally\n\n:Swaziland Economy\n\nOverview:\n    The economy is based on subsistence agriculture, which occupies most of the\n    labor force and contributes nearly 25% to GDP. Manufacturing, which includes\n    a number of agroprocessing factories, accounts for another quarter of GDP.\n    Mining has declined in importance in recent years; high-grade iron ore\n    deposits were depleted in 1978, and health concerns cut world demand for\n    asbestos. Exports of sugar and forestry products are the main earners of\n    hard currency. Surrounded by South Africa, except for a short border with\n    Mozambique, Swaziland is heavily dependent on South Africa, from which it\n    receives 75% of its imports and to which it sends about half of its exports.\nGDP:\n    exchange rate conversion - $563 million, per capita $725; real growth rate\n    5.0% (1990 est.)\nInflation rate (consumer prices):\n    13% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $335.4 million; expenditures $360.5 million, including capital\n    expenditures of $NA (FY93 est.)\nExports:\n    $557 million (f.o.b., 1990)\n  commodities:\n    soft drink concentrates, sugar, wood pulp, citrus, canned fruit\n  partners:\n    South Africa 50% (est.), EC, Canada\nImports:\n    $632 million (f.o.b., 1990)\n  commodities:\n    motor vehicles, machinery, transport equipment, petroleum products,\n    foodstuffs, chemicals\n  partners:\n    South Africa 75% (est.), Japan, Belgium, UK\nExternal debt:\n    $290 million (1990)\nIndustrial production:\n    growth rate NA; accounts for 26% of GDP (1989)\nElectricity:\n    60,000 kW capacity; 155 million kWh produced, 180 kWh per capita (1991)\nIndustries:\n    mining (coal and asbestos), wood pulp, sugar\nAgriculture:\n    accounts for 23% of GDP and over 60% of labor force; mostly subsistence\n    agriculture; cash crops - sugarcane, cotton, maize, tobacco, rice, citrus\n    fruit, pineapples; other crops and livestock - corn, sorghum, peanuts,\n    cattle, goats, sheep; not self-sufficient in grain\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $142 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $518 million\nCurrency:\n    lilangeni (plural - emalangeni); 1 lilangeni (E) = 100 cents\nExchange rates:\n    emalangeni (E) per US$1 - 2.7814 (January 1992), 2.7563 (1991), 2.5863\n    (1990), 2.6166 (1989), 2.2611 (1988), 2.0350 (1987); note - the Swazi\n    emalangeni is at par with the South African rand\nFiscal year:\n    1 April - 31 March\n\n:Swaziland Communications\n\nRailroads:\n    297 km (plus 71 km disused), 1.067-meter gauge, single track\nHighways:\n    2,853 km total; 510 km paved, 1,230 km crushed stone, gravel, or stabilized\n    soil, and 1,113 km improved earth\nCivil air:\n    4 major transport aircraft\nAirports:\n    23 total, 21 usable; 1 with permanent-surfaced runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    system consists of carrier-equipped open-wire lines and low-capacity\n    microwave links; 17,000 telephones; broadcast stations - 7 AM, 6 FM, 10 TV;\n    1 Atlantic Ocean INTELSAT earth station\n\n:Swaziland Defense Forces\n\nBranches:\n    Umbutfo Swaziland Defense Force, Royal Swaziland Police Force\nManpower availability:\n    males 15-49, 197,654; 114,204 fit for military service\nDefense expenditures:\n    exchange rate conversion - $11 million, about 2% of GNP (1989)\n\n:Sweden Geography\n\nTotal area:\n    449,964 km2\nLand area:\n    410,928 km2\nComparative area:\n    slightly smaller than California\nLand boundaries:\n    2,205 km total; Finland 586 km, Norway 1,619 km\nCoastline:\n    3,218 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    temperate in south with cold, cloudy winters and cool, partly cloudy\n    summers; subarctic in north\nTerrain:\n    mostly flat or gently rolling lowlands; mountains in west\nNatural resources:\n    zinc, iron ore, lead, copper, silver, timber, uranium, hydropower potential\nLand use:\n    arable land 7%; permanent crops 0%; meadows and pastures 2%; forest and\n    woodland 64%; other 27%; includes irrigated NEGL%\nEnvironment:\n    water pollution; acid rain\nNote:\n    strategic location along Danish Straits linking Baltic and North Seas\n\n:Sweden People\n\nPopulation:\n    8,602,157 (July 1992), growth rate 0.4% (1992)\nBirth rate:\n    13 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    75 years male, 81 years female (1992)\nTotal fertility rate:\n    1.9 children born/woman (1992)\nNationality:\n    noun - Swede(s); adjective - Swedish\nEthnic divisions:\n    homogeneous white population; small Lappish minority; foreign born or\n    first-generation immigrants (Finns, Yugoslavs, Danes, Norwegians, Greeks,\n    Turks) about 12%\nReligions:\n    Evangelical Lutheran 94%, Roman Catholic 1.5%, Pentecostal 1%, other 3.5%\n    (1987)\nLanguages:\n    Swedish, small Lapp- and Finnish-speaking minorities; immigrants speak\n    native languages\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1979 est.)\nLabor force:\n    4,552,000 community, social and personal services 38.3%, mining and\n    manufacturing 21.2%, commerce, hotels, and restaurants 14.1%, banking,\n    insurance 9.0%, communications 7.2%, construction 7.0%, agriculture,\n    fishing, and forestry 3.2% (1991)\nOrganized labor:\n    80% of labor force (1990 est.)\n\n:Sweden Government\n\nLong-form name:\n    Kingdom of Sweden\nType:\n    constitutional monarchy\nCapital:\n    Stockholm\nAdministrative divisions:\n    24 provinces (lan, singular and plural); Alvsborgs Lan, Blekinge Lan,\n    Gavleborgs Lan, Goteborgs och Bohus Lan, Gotlands Lan, Hallands Lan,\n    Jamtlands Lan, Jonkopings Lan, Kalmar Lan, Kopparbergs Lan, Kristianstads\n    Lan, Kronobergs Lan, Malmohus Lan, Norrbottens Lan, Orebro Lan,\n    Ostergotlands Lan, Skaraborgs Lan, Sodermanlands Lan, Stockholms Lan,\n    Uppsala Lan, Varmlands Lan, Vasterbottens Lan, Vasternorrlands Lan,\n    Vastmanlands Lan\nIndependence:\n    6 June 1809, constitutional monarchy established\nConstitution:\n    1 January 1975\nLegal system:\n    civil law system influenced by customary law; accepts compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Day of the Swedish Flag, 6 June\nExecutive branch:\n    monarch, prime minister, Cabinet\nLegislative branch:\n    unicameral parliament (Riksdag)\nJudicial branch:\n    Supreme Court (Hogsta Domstolen)\nLeaders:\n  Chief of State:\n    King CARL XVI GUSTAF (since 19 September 1973); Heir Apparent Princess\n    VICTORIA Ingrid Alice Desiree, daughter of the King (born 14 July 1977)\n  Head of Government:\n    Prime Minister Carl BILDT (since 3 October 1991)\nPolitical parties and leaders:\n    ruling four-party coalition consists of the Moderate Party (conservative),\n    Carl BILDT; Liberal People's Party, Bengt WESTERBERG; Center Party, Olof\n    JOHANSSON; and the Christian Democratic Party, Alf SVENSSON; Social\n    Democratic Party, Ingvar CARLSSON; New Democracy Party, Count Ian\n    WACHTMEISTER; Left Party (VP; Communist), Lars WERNER; Swedish Communist\n    Party (SKP), Rune PETTERSSON; Communist Workers' Party, Rolf HAGEL; Green\n    Party, no formal leader\nSuffrage:\n    universal at age 18\nElections:\n  Riksdag:\n    last held 15 September 1991 (next to be held NA September 1994); results -\n    Social Democratic Party 37.6%, Moderate Party (conservative) 21.9%, Liberal\n    People's Party 9.1%, Center Party 8.5%, Christian Democrats 7.1%, New\n    Democracy 6.7%, Left Party (Communist) 4.5%, Green Party 3.4%, other 1.2%;\n    seats - (349 total) Social Democratic 138, Moderate Party (conservative) 80,\n    Liberal People's Party 33, Center Party 31, Christian Democrats 26, New\n    Democracy 25, Left Party (Communist) 16; note - the Green Party has no seats\n    in the Riksdag because it received less than the required 4% of the vote\nCommunists:\n    VP and SKP; VP, formerly the Left Party-Communists, is reported to have\n    roughly 17,800 members and attracted 5.8% of the vote in the 1988 election;\n    VP dropped the Communist label in 1990, but maintains a Marxist ideology\n\n:Sweden Government\n\nMember of:\n    AfDB, AG (observer) AsDB, BIS, CCC, CE, CERN, CSCE, EBRD, ECE, EFTA, ESA,\n    FAO, G-6, G-8, G-9, G-10, GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA,\n    IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTERPOL, INTELSAT, IOC, IOM\n    (observer), ISO, ITU, LORCS, NAM (guest), NC, NEA, NIB, OECD, PCA, UN,\n    UNCTAD, UNESCO, UNFICYP, UNHCR, UNIDO, UNIFIL, UNIIMOG, UNMOGIP, UNTSO, UPU,\n    WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Anders THUNBORG; Chancery at Suite 1200, 600 New Hampshire Avenue\n    NW, Washington, DC 20037; telephone (202) 944-5600; there are Swedish\n    Consulates General in Chicago, Los Angeles, Minneapolis, and New York\n  US:\n    Ambassador Charles E. REDMAN; Embassy at Strandvagen 101, S-115 89\n    Stockholm; telephone [46] (8) 783-5300; FAX [46] (8) 661-1964\nFlag:\n    blue with a yellow cross that extends to the edges of the flag; the vertical\n    part of the cross is shifted to the hoist side in the style of the Dannebrog\n    (Danish flag)\n\n:Sweden Economy\n\nOverview:\n    Aided by a long period of peace and neutrality during World War I through\n    World War II, Sweden has achieved an enviable standard of living under a\n    mixed system of high-tech capitalism and extensive welfare benefits. It has\n    essentially full employment, a modern distribution system, excellent\n    internal and external communications, and a skilled labor force. Timber,\n    hydropower, and iron ore constitute the resource base of an economy that is\n    heavily oriented toward foreign trade. Privately owned firms account for\n    about 90% of industrial output, of which the engineering sector accounts for\n    50% of output and exports. In the last few years, however, this\n    extraordinarily favorable picture has been clouded by inflation, growing\n    absenteeism, and a gradual loss of competitiveness in international markets.\n    The new center-right government, facing a sagging economic situation which\n    is unlikely to improve until 1993, is pushing full steam ahead with economic\n    reform proposals to end Sweden's recession and to prepare for possible EC\n    membership in 1995. The free-market-oriented reforms are designed to spur\n    growth, maintain price stability, lower unemployment, create a more\n    efficient welfare state, and further adapt to EC standards. The measures\n    include: cutting taxes, particularly the value-added tax (VAT) and levies on\n    new and small business; privatization; liberalizing foreign ownership\n    restrictions; and opening the welfare system to competition and private\n    alternatives, which the government will still finance. Growth is expected to\n    remain flat in 1992, but increase slightly in 1993, while inflation should\n    remain around 3% for the next few years. On the down side, unemployment may\n    climb to slightly over 4% in 1993, and the budget deficit will reach nearly\n    $9 billion in 1992.\nGDP:\n    purchasing power equivalent - $147.6 billion, per capita $17,200; real\n    growth rate -1.1% (1991)\nInflation rate (consumer prices):\n    8.0% (1991)\nUnemployment rate:\n    2.7% (1991)\nBudget:\n    revenues $67.5 billion; expenditures $78.7 billion, including capital\n    expenditures of $NA (FY92 est.)\nExports:\n    $54.5 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery, motor vehicles, paper products, pulp and wood, iron and steel\n    products, chemicals, petroleum and petroleum products\n  partners:\n    EC, (FRG, UK, Denmark), US, Norway\nImports:\n    $50.2 billion (c.i.f., 1991 est.)\n  commodities:\n    machinery, petroleum and petroleum products, chemicals, motor vehicles,\n    foodstuffs, iron and steel, clothing\n  partners:\n    EC 55.3%, US 8.4% (1990)\nExternal debt:\n    $10.7 billion (November 1991)\nIndustrial production:\n    growth rate -5.3% (1991)\nElectricity:\n    39,716,000 kW capacity; 142,000 million kWh produced, 16,700 kWh per capita\n    (1991)\n\n:Sweden Economy\n\nIndustries:\n    iron and steel, precision equipment (bearings, radio and telephone parts,\n    armaments), wood pulp and paper products, processed foods, motor vehicles\nAgriculture:\n    animal husbandry predominates, with milk and dairy products accounting for\n    37% of farm income; main crops - grains, sugar beets, potatoes; 100%\n    self-sufficient in grains and potatoes, 85% self-sufficient in sugar beets\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $10.3 billion\nCurrency:\n    Swedish krona (plural - kronor); 1 Swedish krona (SKr) = 100 ore\nExchange rates:\n    Swedish kronor (SKr) per US$1 - 6.0259 (March 1992), 6.0475 (1991) 5.9188\n    (1990), 6.4469 (1989), 6.1272 (1988), 6.3404 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Sweden Communications\n\nRailroads:\n    12,000 km total; Swedish State Railways (SJ) - 10,819 km 1.435-meter\n    standard gauge, 6,955 km electrified and 1,152 km double track; 182 km\n    0.891-meter gauge; 117 km rail ferry service; privately owned railways - 511\n    km 1.435-meter standard gauge (332 km electrified); 371 km 0.891-meter gauge\n    (all electrified)\nHighways:\n    97,400 km (51,899 km paved, 20,659 km gravel, 24,842 km unimproved earth)\nInland waterways:\n    2,052 km navigable for small steamers and barges\nPipelines:\n    natural gas 84 km\nPorts:\n    Gavle, Goteborg, Halmstad, Helsingborg, Kalmar, Malmo, Stockholm; numerous\n    secondary and minor ports\nMerchant marine:\n    186 ships (1,000 GRT or over) totaling 2,665,902 GRT/3,646,165 DWT; includes\n    10 short-sea passenger, 29 cargo, 3 container, 43 roll-on/roll-off cargo, 12\n    vehicle carrier, 2 railcar carrier, 33 petroleum tanker, 28 chemical tanker,\n    4 specialized tanker, 1 liquefied gas, 7 combination ore/oil, 12 bulk, 1\n    combination bulk, 1 refrigerated cargo\nCivil air:\n    115 major transports\nAirports:\n    254 total, 252 usable; 139 with permanent-surface runways; none with runways\n    over 3,659 m; 10 with runways 2,440-3,659 m; 94 with runways 1,220-2,439 m\nTelecommunications:\n    excellent domestic and international facilities; 8,200,000 telephones;\n    mainly coaxial and multiconductor cables carry long-distance network;\n    parallel microwave network carries primarily radio, TV and some telephone\n    channels; automatic system; broadcast stations - 5 AM, 360 (mostly\n    repeaters) FM, 880 (mostly repeaters) TV; 5 submarine coaxial cables;\n    satellite earth stations - 1 Atlantic Ocean INTELSAT and 1 EUTELSAT\n\n:Sweden Defense Forces\n\nBranches:\n    Swedish Army, Swedish Navy, Swedish Air Force\nManpower availability:\n    males 15-49, 2,129,996; 1,858,944 fit for military service; 57,492 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $6.2 billion, about 4% of GDP (FY91)\n\n:Switzerland Geography\n\nTotal area:\n    41,290 km2\nLand area:\n    39,770 km2\nComparative area:\n    slightly more than twice the size of New Jersey\nLand boundaries:\n    1,852 km total; Austria 164 km, France 573 km, Italy 740 km, Liechtenstein\n    41 km, Germany 334 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    temperate, but varies with altitude; cold, cloudy, rainy/snowy winters; cool\n    to warm, cloudy, humid summers with occasional showers\nTerrain:\n    mostly mountains (Alps in south, Jura in northwest) with a central plateau\n    of rolling hills, plains, and large lakes\nNatural resources:\n    hydropower potential, timber, salt\nLand use:\n    arable land 10%; permanent crops 1%; meadows and pastures 40%; forest and\n    woodland 26%; other 23%; includes irrigated 1%\nEnvironment:\n    dominated by Alps\nNote:\n    landlocked; crossroads of northern and southern Europe\n\n:Switzerland People\n\nPopulation:\n    6,828,023 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    12 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    3 migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    76 years male, 83 years female (1992)\nTotal fertility rate:\n    1.6 children born/woman (1992)\nNationality:\n    noun - Swiss (singular and plural); adjective - Swiss\nEthnic divisions:\n    total population - German 65%, French 18%, Italian 10%, Romansch 1%, other\n    6%; Swiss nationals - German 74%, French 20%, Italian 4%, Romansch 1%, other\n    1%\nReligions:\n    Roman Catholic 47.6%, Protestant 44.3%, other 8.1% (1980)\nLanguages:\n    total population - German 65%, French 18%, Italian 12%, Romansch 1%, other\n    4%; Swiss nationals - German 74%, French 20%, Italian 4%, Romansch 1%, other\n    1%\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1980 est.)\nLabor force:\n    3,310,000; 904,095 foreign workers, mostly Italian; services 50%, industry\n    and crafts 33%, government 10%, agriculture and forestry 6%, other 1% (1989)\nOrganized labor:\n    20% of labor force\n\n:Switzerland Government\n\nLong-form name:\n    Swiss Confederation\nType:\n    federal republic\nCapital:\n    Bern\nAdministrative divisions:\n    26 cantons (cantons, singular - canton in French; cantoni, singular -\n    cantone in Italian; kantone, singular - kanton in German); Aargau,\n    Ausser-Rhoden, Basel-Landschaft, Basel-Stadt, Bern, Fribourg, Geneve,\n    Glarus, Graubunden, Inner-Rhoden, Jura, Luzern, Neuchatel, Nidwalden,\n    Obwalden, Sankt Gallen, Schaffhausen, Schwyz, Solothurn, Thurgau, Ticino,\n    Uri, Valais, Vaud, Zug, Zurich\nIndependence:\n    1 August 1291\nConstitution:\n    29 May 1874\nLegal system:\n    civil law system influenced by customary law; judicial review of legislative\n    acts, except with respect to federal decrees of general obligatory\n    character; accepts compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Anniversary of the Founding of the Swiss Confederation, 1 August (1291)\nExecutive branch:\n    president, vice president, Federal Council (German - Bundesrat, French -\n    Conseil Federal, Italian - Consiglio Federale)\nLegislative branch:\n    bicameral Federal Assembly (German - Bundesversammlung, French - Assemblee\n    Federale, Italian - Assemblea Federale) consists of an upper council or\n    Council of States (German - Standerat, French - Conseil des Etats, Italian -\n    Consiglio degli Stati) and a lower council or National Council (German -\n    Nationalrat, French - Conseil National, Italian - Consiglio Nazionale)\nJudicial branch:\n    Federal Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Rene FELBER (1992 calendar year; presidency rotates annually);\n    Vice President Adolf OGI (term runs concurrently with that of president)\nPolitical parties and leaders:\n    Free Democratic Party (FDP), Bruno HUNZIKER, president; Social Democratic\n    Party (SPS), Helmut HUBACHER, chairman; Christian Democratic People's Party\n    (CVP), Eva SEGMULLER-WEBER, chairman; Swiss People's Party (SVP), Hans\n    UHLMANN, president; Green Party (GPS), Peter SCHMID, president; Automobile\n    Party (AP), DREYER; Alliance of Independents' Party (LdU), Dr. Franz JAEGER,\n    president; Swiss Democratic Party (SD), NA; Evangelical People's Party\n    (EVP), Max DUNKI, president; Workers' Party (PdA; Communist), Jean\n    SPIELMANN, general secretary; Ticino League, leader NA Liberal Party (LPS),\n    Gilbert COUTAU, president\nSuffrage:\n    universal at age 18\nElections:\n  Council of States:\n    last held throughout 1991 (next to be held NA 1995); results - percent of\n    vote by party NA; seats - (46 total) FDP 18, CVP 16, SVP 4, SPS 3, LPS 3,\n    LdU 1, Ticino League 1\n\n:Switzerland Government\n\n  National Council:\n    last held 20 October 1991 (next to be held NA October 1995); results -\n    percent of vote by party NA; seats - (200 total) FDP 44, SPS 42, CVP 37, SVP\n    25, GPS 14, LPS 10, AP 8, LdU 6, SD 5, EVP 3, PdA 2, Ticino League 2, other\n    2\nCommunists:\n    4,500 members (est.)\nMember of:\n    AfDB, AG (observer), AsDB, BIS, CCC, CE, CERN, CSCE, EBRD, ECE, EFTA, ESA,\n    FAO, G-8, G-10, GATT, IADB, IAEA, ICAO, ICC, ICFTU, IEA, IFAD, ILO, IMF,\n    IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM, ISO, ITU, LORCS, NAM (guest),\n    NEA, OAS (observer), OECD, PCA, UN (observer), UNCTAD, UNESCO, UNHCR, UNIDO,\n    UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Edouard BRUNNER; Chancery at 2900 Cathedral Avenue NW,\n    Washington, DC 20008; telephone (202) 745-7900; there are Swiss Consulates\n    General in Atlanta, Chicago, Houston, Los Angeles, New York, and San\n    Francisco\n  US:\n    Ambassador Joseph B. GILDENHORN; Embassy at Jubilaeumstrasse 93, 3005 Bern;\n    telephone [41] (31) 437-011; FAX [41] (31) 437-344; there is a Branch Office\n    of the Embassy in Geneva and a Consulate General in Zurich\nFlag:\n    red square with a bold, equilateral white cross in the center that does not\n    extend to the edges of the flag\n\n:Switzerland Economy\n\nOverview:\n    Switzerland's economic success is matched in few other nations. Per capita\n    output, general living standards, education and science, health care, and\n    diet are unsurpassed in Europe. Economic stability helps promote the\n    important banking and tourist sectors. Since World War II, Switzerland's\n    economy has adjusted smoothly to the great changes in output and trade\n    patterns in Europe and presumably can adjust to the challenges of the 1990s,\n    particularly to the further economic integration of Western Europe and the\n    amazingly rapid changes in East European political and economic prospects.\n    After 8 years of growth, the economy experienced a mild recession in 1991\n    because monetary policy was tightened to combat inflation and because of the\n    weak international economy. In the second half of 1992, however, Switzerland\n    is expected to resume growth, despite inflation and unemployment problems.\n    GDP growth for 1992 may be just under 1%, inflation should drop from 5.9% to\n    3.5%, and the trade deficit will continue to decline after dropping by over\n    15% to $5 billion, due to increased exports to Germany. Unemployment,\n    however, is forecast to rise to 1.6% in 1992, up from 1.3% in 1991 and 0.5%\n    in 1990.\nGDP:\n    purchasing power equivalent - $147.4 billion, per capita $21,700; real\n    growth rate -0.2% (1991 est.)\nInflation rate (consumer prices):\n    5.9% (1991)\nUnemployment rate:\n    1.3% (1991)\nBudget:\n    revenues $24.0 billion; expenditures $23.8 billion, including capital\n    expenditures of $NA (1990)\nExports:\n    $62.2 billion (f.o.b., 1991 est.)\n  commodities:\n    machinery and equipment, precision instruments, metal products, foodstuffs,\n    textiles and clothing\n  partners:\n    Western Europe 64% (EC 56%, other 8%), US 9%, Japan 4%\nImports:\n    $68.5 billion (c.i.f., 1991 est.)\n  commodities:\n    agricultural products, machinery and transportation equipment, chemicals,\n    textiles, construction materials\n  partners:\n    Western Europe 78% (EC 71%, other 7%), US 6%\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 0.4% (1991 est.)\nElectricity:\n    17,710,000 kW capacity; 59,070 million kWh produced, 8,930 kWh per capita\n    (1991)\nIndustries:\n    machinery, chemicals, watches, textiles, precision instruments\nAgriculture:\n    dairy farming predominates; less than 50% self-sufficient; food shortages -\n    fish, refined sugar, fats and oils (other than butter), grains, eggs,\n    fruits, vegetables, meat\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $3.5 billion\n\n:Switzerland Economy\n\nCurrency:\n    Swiss franc, franken, or franco (plural - francs, franken, or franchi); 1\n    Swiss franc, franken, or franco (SwF) = 100 centimes, rappen, or centesimi\nExchange rates:\n    Swiss francs, franken, or franchi (SwF) per US$1 - 1.4037 (January 1992),\n    1.4340 (1991), 1.3892 (1990), 1.6359 (1989), 1.4633 (1988), 1.4912 (1987)\nFiscal year:\n    calendar year\n\n:Switzerland Communications\n\nRailroads:\n    5,174 km total; 2,971 km are government owned and 2,203 km are nongovernment\n    owned; the government network consists of 2,897 km 1.435-meter standard\n    gauge and 74 km 1.000-meter narrow gauge track; 1,432 km double track, 99%\n    electrified; the nongovernment network consists of 710 km 1.435-meter\n    standard gauge, 1,418 km 1.000-meter gauge, and 75 km 0.790-meter gauge\n    track, 100% electrified\nHighways:\n    62,145 km total (all paved), of which 18,620 km are canton and 1,057 km are\n    national highways (740 km autobahn); 42,468 km are communal roads\nInland waterways:\n    65 km; Rhine (Basel to Rheinfelden, Schaffhausen to Bodensee); 12 navigable\n    lakes\nPipelines:\n    crude oil 314 km, natural gas 1,506 km\nPorts:\n    Basel (river port)\nMerchant marine:\n    22 ships (1,000 GRT or over) totaling 325,234 GRT/576,953 DWT; includes 5\n    cargo, 2 roll-on/roll-off cargo, 3 chemical tanker, 2 specialized tanker, 9\n    bulk, 1 petroleum tanker\nCivil air:\n    89 major transport aircraft\nAirports:\n    66 total, 65 usable; 42 with permanent-surface runways; 2 with runways over\n    3,659 m; 5 with runways 2,440-3,659 m; 18 with runways 1,220-2,439 m\nTelecommunications:\n    excellent domestic, international, and broadcast services; 5,890,000\n    telephones; extensive cable and microwave networks; broadcast stations - 7\n    AM, 265 FM, 18 (1,322 repeaters) TV; communications satellite earth station\n    operating in the INTELSAT (Atlantic Ocean and Indian Ocean) system\n\n:Switzerland Defense Forces\n\nBranches:\n    Army, Air Force, Frontier Guards, Fortification Guards\nManpower availability:\n    males 15-49, 1,798,632; 1,544,191 fit for military service; 43,952 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $4.6 billion, about 2% of GDP (1990)\n\n:Syria Geography\n\nTotal area:\n    185,180 km2\nLand area:\n    184,050 km2 (including 1,295 km2 of Israeli-occupied territory)\nComparative area:\n    slightly larger than North Dakota\nLand boundaries:\n    2,253 km total; Iraq 605 km, Israel 76 km, Jordan 375 km, Lebanon 375 km,\n    Turkey 822 km\nCoastline:\n    193 km\nMaritime claims:\n  Contiguous zone:\n    6 nm beyond territorial sea limit\n  Territorial sea:\n    35 nm\nDisputes:\n    separated from Israel by the 1949 Armistice Line; Golan Heights is Israeli\n    occupied; Hatay question with Turkey; periodic disputes with Iraq over\n    Euphrates water rights; ongoing dispute over water development plans by\n    Turkey for the Tigris and Euphrates Rivers\nClimate:\n    mostly desert; hot, dry, sunny summers (June to August) and mild, rainy\n    winters (December to February) along coast\nTerrain:\n    primarily semiarid and desert plateau; narrow coastal plain; mountains in\n    west\nNatural resources:\n    crude oil, phosphates, chrome and manganese ores, asphalt, iron ore, rock\n    salt, marble, gypsum\nLand use:\n    arable land 28%; permanent crops 3%; meadows and pastures 46%; forest and\n    woodland 3%; other 20%; includes irrigated 3%\nEnvironment:\n    deforestation; overgrazing; soil erosion; desertification\nNote:\n    there are 38 Jewish settlements in the Israeli-occupied Golan Heights\n\n:Syria People\n\nPopulation:\n    13,730,436 (July 1992), growth rate 3.8% (1992); in addition, there are at\n    least 14,500 Druze and 14,000 Jewish settlers in the Israeli-occupied Golan\n    Heights (1992 est.)\nBirth rate:\n    44 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    45 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 67 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Syrian(s); adjective - Syrian\nEthnic divisions:\n    Arab 90.3%; Kurds, Armenians, and other 9.7%\nReligions:\n    Sunni Muslim 74%, Alawite, Druze, and other Muslim sects 16%, Christian\n    (various sects) 10%, tiny Jewish communities in Damascus, Al Qamishli, and\n    Aleppo\nLanguages:\n    Arabic (official), Kurdish, Armenian, Aramaic, Circassian; French widely\n    understood\nLiteracy:\n    64% (male 78%, female 51%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,400,000; miscellaneous and government services 36%, agriculture 32%,\n    industry and construction 32%; majority unskilled; shortage of skilled labor\n    (1984)\nOrganized labor:\n    5% of labor force\n\n:Syria Government\n\nLong-form name:\n    Syrian Arab Republic\nType:\n    republic; under leftwing military regime since March 1963\nCapital:\n    Damascus\nAdministrative divisions:\n    14 provinces (muhafazat, singular - muhafazah); Al Hasakah, Al Ladhiqiyah,\n    Al Qunaytirah, Ar Raqqah, As Suwayda', Dar`a, Dayr az Zawr, Dimashq, Halab,\n    Hamah, Hims, Idlib, Rif Dimashq, Tartus\nIndependence:\n    17 April 1946 (from League of Nations mandate under French administration);\n    formerly United Arab Republic\nConstitution:\n    13 March 1973\nLegal system:\n    based on Islamic law and civil law system; special religious courts; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 17 April (1946)\nExecutive branch:\n    president, three vice presidents, prime minister, three deputy prime\n    ministers, Council of Ministers (cabinet)\nLegislative branch:\n    unicameral People's Council (Majlis al-Chaab)\nJudicial branch:\n    Supreme Constitutional Court, High Judicial Council, Court of Cassation,\n    State Security Courts\nLeaders:\n  Chief of State:\n    President Hafiz al-ASAD (since 22 February 1971); Vice Presidents `Abd\n    al-Halim KHADDAM, Vice President Rif`at al-ASAD, and Vice President Muhammad\n    Zuhayr MASHARIQA (since 11 March 1984)\n  Head of Government:\n    Prime Minister Mahmud ZU`BI (since 1 November 1987); Deputy Prime Minister\n    Lt. Gen. Mustafa TALAS (since 11 March 1984); Deputy Prime Minister Salim\n    YASIN (since NA December 1981); Deputy Prime Minister Mahmud QADDUR (since\n    NA May 1985)\nPolitical parties and leaders:\n    ruling party is the Arab Socialist Resurrectionist (Ba`th) Party; the\n    Progressive National Front is dominated by Ba`thists but includes\n    independents and members of the Syrian Arab Socialist Party (ASP), Arab\n    Socialist Union (ASU), Syrian Communist Party (SCP), Arab Socialist Unionist\n    Movement, and Democratic Socialist Union Party\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 2 December 1991 (next to be held December 1998); results -\n    President Hafiz al-ASAD was reelected for a fourth seven-year term with\n    99.98% of the vote\n  People's Council:\n    last held 22-23 May 1990 (next to be held NA May 1994); results - Ba`th\n    53.6%, ASU 3.2%, SCP 3.2%, Arab Socialist Unionist Movement 2.8%, ASP 2%,\n    Democratic Socialist Union Party 1.6%, independents 33.6%; seats - (250\n    total) Ba`th 134, ASU 8, SCP 8, Arab Socialist Unionist Movement 7, ASP 5,\n    Democratic Socialist Union Party 4, independents 84; note - the People's\n    Council was expanded to 250 seats total prior to the May 1990 election\n\n:Syria Government\n\nCommunists:\n    Syrian Communist Party (SCP)\nOther political or pressure groups:\n    non-Ba`th parties have little effective political influence; Communist party\n    ineffective; conservative religious leaders; Muslim Brotherhood\nMember of:\n    ABEDA, AFESD, AL, AMF, CAEU, CCC, ESCWA, FAO, G-24, G-77, IAEA, IBRD, ICAO,\n    ICC, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU,\n    LORCS, NAM, OAPEC, OIC, UN, UNCTAD, UNESCO, UNIDO, UNRWA, UPU, WFTU, WHO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Walid MOUALEM; Chancery at 2215 Wyoming Avenue NW, Washington, DC\n    20008; telephone (202) 232-6313\n  US:\n    Ambassador Christopher W. S. ROSS; Embassy at Abu Rumaneh, Al Mansur Street\n    No. 2, Damascus (mailing address is P. O. Box 29, Damascus); telephone [963]\n    (11) 333052 or 332557, 330416, 332814, 332315, 714108, 337178, 333232; FAX\n    [963] (11) 718-687\nFlag:\n    three equal horizontal bands of red (top), white, and black with two small\n    green five-pointed stars in a horizontal line centered in the white band;\n    similar to the flag of Yemen, which has a plain white band and of Iraq,\n    which has three green stars (plus an Arabic inscription) in a horizontal\n    line centered in the white band; also similar to the flag of Egypt, which\n    has a symbolic eagle centered in the white band\n\n:Syria Economy\n\nOverview:\n    Syria's state-dominated Ba`thist economy has benefited from the Gulf war,\n    increased oil production, good weather, and economic deregulation. Economic\n    growth averaged nearly 12% annually in 1990-91, buoyed by increased oil\n    production and improved agricultural performance. The Gulf war of early 1991\n    provided Syria an aid windfall of several billion dollars from Arab,\n    European, and Japanese donors. These inflows more than offset Damascus's\n    war-related costs and will help Syria cover some of its debt arrears,\n    restore suspended credit lines, and initiate selected military and civilian\n    purchases. For the long run, Syria's economy is still saddled with a large\n    number of poorly performing public sector firms; investment levels remain\n    low; and industrial and agricultural productivity is poor. A major long-term\n    concern is the additional drain of upstream Euphrates water by Turkey when\n    its vast dam and irrigation projects are completed by mid-decade.\nGDP:\n    exchange rate conversion - $30 billion, per capita $2,300; real growth rate\n    11% (1991 est.)\nInflation rate (consumer prices):\n    25% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $5.4 billion; expenditures $7.5 billion, including capital\n    expenditures of $2.9 billion (1991 est.)\nExports:\n    $3.6 billion (f.o.b., 1991 est.)\n  commodities:\n    petroleum 40%, farm products 13%, textiles, phosphates (1989)\n  partners:\n    USSR and Eastern Europe 42%, EC 31%, Arab countries 17%, US/Canada 2% (1989)\nImports:\n    $2.7 billion (f.o.b., 1991 est.)\n  commodities:\n    foodstuffs and beverages 21%, metal and metal products 16%, machinery 14%,\n    textiles, petroleum products (1989)\n  partners:\n    EC 42%, USSR and Eastern Europe 13%, other Europe 13%, US/Canada 8%, Arab\n    countries 6% (1989)\nExternal debt:\n    $5.2 billion in hard currency (1990 est.)\nIndustrial production:\n    growth rate 6% (1991 est.); accounts for 17% of GDP\nElectricity:\n    3,005,000 kW capacity; 8,800 million kWh produced, 680 kWh per capita (1991)\nIndustries:\n    textiles, food processing, beverages, tobacco, phosphate rock mining,\n    petroleum\nAgriculture:\n    accounts for 27% of GDP and one-third of labor force; all major crops\n    (wheat, barley, cotton, lentils, chickpeas) grown mainly on rainfed land\n    causing wide swings in production; animal products - beef, lamb, eggs,\n    poultry, milk; not self-sufficient in grain or livestock products\nEconomic aid:\n    US commitments, including Ex-Im (FY70-81), $538 million; Western (non-US)\n    ODA and OOF bilateral commitments (1970-89), $1.23 billion; OPEC bilateral\n    aid (1979-89), $12.3 billion; former Communist countries (1970-89), $3.3\n    billion\nCurrency:\n    Syrian pound (plural - pounds); 1 Syrian pound (#S) = 100 piasters\n\n:Syria Economy\n\nExchange rates:\n    Syrian pounds (#S) per US$1 - 22.0 (promotional rate since 1991), 11.2250\n    (fixed rate 1987-90), 3.9250 (fixed rate 1976-87)\nFiscal year:\n    calendar year\n\n:Syria Communications\n\nRailroads:\n    2,350 km total; 2,035 km standard gauge, 315 km 1.050-meter (narrow) gauge\nHighways:\n    28,000 km total; 22,000 km paved, 3,000 km gravel or crushed stone, 3,000 km\n    improved earth\nInland waterways:\n    672 km; minimal economic importance\nPipelines:\n    crude oil 1,304 km, petroleum products 515 km\nPorts:\n    Tartus, Latakia, Baniyas\nMerchant marine:\n    29 ships (1,000 GRT or over) totaling 85,417 GRT/138,078 DWT; includes 25\n    cargo, 1 roll-on/roll-off cargo, 1 vehicle carrier, 2 bulk\nCivil air:\n    35 major transport aircraft\nAirports:\n    104 total, 100 usable; 24 with permanent-surface runways; none with runways\n    over 3,659 m; 21 with runways 2,440-3,659 m; 3 with runways 1,220-2,439 m\nTelecommunications:\n    fair system currently undergoing significant improvement; 512,600\n    telephones; broadcast stations - 9 AM, 1 FM, 17 TV; satellite earth stations\n    - 1 Indian Ocean INTELSAT and 1 Intersputnik, 1 submarine cable; coaxial\n    cable and radio relay to Iraq, Jordan, Lebanon, and Turkey\n\n:Syria Defense Forces\n\nBranches:\n    Syrian Arab Army, Syrian Arab Navy, Syrian Arab Air Force, Syrian Arab Air\n    Defense Forces, Police and Security Force\nManpower availability:\n    males 15-49, 3,012,671; 1,691,660 fit for military service; 145,976 reach\n    military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $2.5 billion, 8% of GDP (1989)\n\n:Taiwan Geography\n\nTotal area:\n    35,980 km2\nLand area:\n    32,260 km2; includes the Pescadores, Matsu, and Quemoy\nComparative area:\n    slightly less than three times the size of Connecticut\nLand boundaries:\n    none\nCoastline:\n    1,448 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    involved in complex dispute over the Spratly Islands with China, Malaysia,\n    Philippines, Vietnam, and possibly Brunei; Paracel Islands occupied by\n    China, but claimed by Vietnam and Taiwan; Japanese-administered\n    Senkaku-shoto (Senkaku Islands/Diaoyu Tai) claimed by China and Taiwan\nClimate:\n    tropical; marine; rainy season during southwest monsoon (June to August);\n    cloudiness is persistent and extensive all year\nTerrain:\n    eastern two-thirds mostly rugged mountains; flat to gently rolling plains in\n    west\nNatural resources:\n    small deposits of coal, natural gas, limestone, marble, and asbestos\nLand use:\n    arable land 24%; permanent crops 1%; meadows and pastures 5%; forest and\n    woodland 55%; other 15%; irrigated 14%\nEnvironment:\n    subject to earthquakes and typhoons\n\n:Taiwan People\n\nPopulation:\n    20,878,556 (July 1992), growth rate 1.0% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    6 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 78 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Chinese (singular and plural); adjective - Chinese\nEthnic divisions:\n    Taiwanese 84%, mainland Chinese 14%, aborigine 2%\nReligions:\n    mixture of Buddhist, Confucian, and Taoist 93%, Christian 4.5%, other 2.5%\nLanguages:\n    Mandarin Chinese (official); Taiwanese (Miu) and Hakka dialects also used\nLiteracy:\n    91.2% (male NA%, female NA%) age 15 and over can read and write (1990)\nLabor force:\n    7,900,000; industry and commerce 53%, services 22%, agriculture 15.6%, civil\n    administration 7% (1989)\nOrganized labor:\n    2,728,000 or about 44% (1991)\n\n:Taiwan Government\n\nLong-form name:\n    none\nType:\n    multiparty democratic regime; opposition political parties legalized in\n    March, 1989\nCapital:\n    Taipei\nAdministrative divisions:\n    the authorities in Taipei claim to be the government of all China; in\n    keeping with that claim, the central administrative divisions include 2\n    provinces (sheng, singular and plural) and 2 municipalities* (shih, singular\n    and plural) - Fu-chien (some 20 offshore islands of Fujian Province\n    including Quemoy and Matsu), Kao-hsiung*, T'ai-pei*, and Taiwan (the island\n    of Taiwan and the Pescadores islands); the more commonly referenced\n    administrative divisions are those of Taiwan Province - 16 counties (hsien,\n    singular and plural), 5 municipalities* (shih, singular and plural), and 2\n    special municipalities** (chuan-shih, singular and plural); Chang-hua,\n    Chia-i, Chia-i*, Chi-lung*, Hsin-chu, Hsin-chu*, Hua-lien, I-lan,\n    Kao-hsiung, Kao-hsiung**, Miao-li, Nan-t'ou, P'eng-hu, P'ing-tung,\n    T'ai-chung, T'ai-chung*, T'ai-nan, T'ai-nan*, T'ai-pei, T'ai-pei**,\n    T'ai-tung, T'ao-yuan, and Yun-lin; the provincial capital is at\n    Chung-hsing-hsin-ts'un; note - Taiwan uses the Wade-Giles system for\n    romanization\nConstitution:\n    25 December 1947, presently undergoing revision\nLegal system:\n    based on civil law system; accepts compulsory ICJ jurisdiction, with\n    reservations\nNational holiday:\n    National Day (Anniversary of the Revolution), 10 October (1911)\nExecutive branch:\n    president, vice president, premier of the Executive Yuan, vice premier of\n    the Executive Yuan, Executive Yuan\nLegislative branch:\n    unicameral Legislative Yuan, unicameral National Assembly\nJudicial branch:\n    Judicial Yuan\nLeaders:\n  Chief of State:\n    President LI Teng-hui (since 13 January 1988); Vice President LI Yuan-zu\n    (since 20 May 1990)\n  Head of Government:\n    Premier (President of the Executive Yuan) HAO Po-ts'un (since 2 May 1990);\n    Vice Premier (Vice President of the Executive Yuan) SHIH Ch'i-yang (since NA\n    July 1988)\nPolitical parties and leaders:\n    Kuomintang (Nationalist Party), LI Teng-hui, chairman; Democratic Socialist\n    Party and Young China Party controlled by Kuomintang; Democratic Progressive\n    Party (DPP); Labor Party; 27 other minor parties\nSuffrage:\n    universal at age 20\nElections:\n  President:\n    last held 21 March 1990 (next to be held NA March 1996); results - President\n    LI Teng-hui was reelected by the National Assembly\n  Vice President:\n    last held 21 March 1990 (next to be held NA March 1996); results - LI\n    Yuan-zu was elected by the National Assembly\n\n:Taiwan Government\n\n  Legislative Yuan:\n    last held 2 December 1989 (next to be held NA December 1992); results - KMT\n    65%, DPP 33%, independents 2%; seats - (304 total, 102 elected) KMT 78, DPP\n    21, independents 3\nElections:\n  National Assembly:\n    first National Assembly elected in November 1947 with a supplementary\n    election in December 1986; second National Assembly elected in December 1991\nMember of:\n    expelled from UN General Assembly and Security Council on 25 October 1971\n    and withdrew on same date from other charter-designated subsidiary organs;\n    expelled from IMF/World Bank group April/May 1980; seeking to join GATT;\n    attempting to retain membership in INTELSAT; suspended from IAEA in 1972,\n    but still allows IAEA controls over extensive atomic development; APEC,\n    AsDB, ICC, ICFTU, IOC\nDiplomatic representation:\n    none; unofficial commercial and cultural relations with the people of the US\n    are maintained through a private instrumentality, the Coordination Council\n    for North American Affairs (CCNAA) with headquarters in Taipei and field\n    offices in Washington and 10 other US cities with all addresses and\n    telephone numbers NA\n  US:\n    unofficial commercial and cultural relations with the people of Taiwan are\n    maintained through a private institution, the American Institute in Taiwan\n    (AIT), which has offices in Taipei at #7, Lane 134, Hsiu Yi Road, Section 3,\n    telephone [886] (2) 709-2000, and in Kao-hsiung at #2 Chung Cheng 3d Road,\n    telephone [886] (7) 224-0154 through 0157, and the American Trade Center at\n    Room 3207 International Trade Building, Taipei World Trade Center, 333\n    Keelung Road Section 1, Taipei 10548, telephone [886] (2) 720-1550\nFlag:\n    red with a dark blue rectangle in the upper hoist-side corner bearing a\n    white sun with 12 triangular rays\n\n:Taiwan Economy\n\nOverview:\n    Taiwan has a dynamic capitalist economy with considerable government\n    guidance of investment and foreign trade and partial government ownership of\n    some large banks and industrial firms. Real growth in GNP has averaged about\n    9% a year during the past three decades. Export growth has been even faster\n    and has provided the impetus for industrialization. Agriculture contributes\n    about 4% to GNP, down from 35% in 1952. Taiwan currently ranks as number 13\n    among major trading countries. Traditional labor-intensive industries are\n    steadily being replaced with more capital- and technology-intensive\n    industries. Taiwan has become a major investor in China, Thailand,\n    Indonesia, the Philippines, and Malaysia. The tightening of labor markets\n    has led to an influx of foreign workers, both legal and illegal.\nGNP:\n    purchasing power equivalent - $150.8 billion, per capita $7,380; real growth\n    rate 5.2% (1990)\nInflation rate (consumer prices):\n    4.1% (1990); 3.8% (1991 est.)\nUnemployment rate:\n    1.7% (1990); 1.5% (1991 est.)\nBudget:\n    revenues $30.3 billion; expenditures $30.1 billion, including capital\n    expenditures of $NA (FY91 est.)\nExports:\n    $67.2 billion (f.o.b., 1990)\n  commodities:\n    electrical machinery 18.2%, textiles 15.6%, general machinery and equipment\n    14.8%, basic metals and metal products 7.8%, foodstuffs 1.7%, plywood and\n    wood products 1.6% (1989)\n  partners:\n    US 36.2%, Japan 13.7% (1989)\nImports:\n    $54.7 billion (c.i.f., 1990)\n  commodities:\n    machinery and equipment 15.3%, basic metals 13.0%, chemical and chemical\n    products 11.1%, crude oil 5%, foodstuffs 2.2% (1989)\n  partners:\n    Japan 31%, US 23%, FRG 5% (1989)\nExternal debt:\n    $1.1 billion (December 1990 est.)\nIndustrial production:\n    growth rate 6.5% (1991 est.)\nElectricity:\n    17,000,000 kW capacity; 76,900 million kWh produced, 3,722 kWh per capita\n    (1991)\nIndustries:\n    electronics, textiles, chemicals, clothing, food processing, plywood, sugar\n    milling, cement, shipbuilding, petroleum\nAgriculture:\n    accounts for 4% of GNP and 16% of labor force (includes part-time farmers);\n    heavily subsidized sector; major crops - vegetables, rice, fruit, tea;\n    livestock - hogs, poultry, beef, milk, cattle; not self-sufficient in wheat,\n    soybeans, corn; fish catch increasing, 1.4 million metric tons (1988)\nEconomic aid:\n    US, including Ex-Im (FY46-82), $4.6 billion; Western (non-US) countries, ODA\n    and OOF bilateral commitments (1970-89), $500 million\nCurrency:\n    New Taiwan dollar (plural - dollars); 1 New Taiwan dollar (NT$) = 100 cents\n\n:Taiwan Economy\n\nExchange rates:\n    New Taiwan dollars per US$1 - 25.000 (February 1992), 25.748 (1991), 27.108\n    (1990), 26.407 (1989) 28.589 (1988), 31.845 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Taiwan Communications\n\nRailroads:\n    about 4,600 km total track with 1,075 km common carrier lines and 3,525 km\n    industrial lines; common carrier lines consist of the 1.067-meter gauge 708\n    km West Line and the 367 km East Line; a 98.25 km South Link Line connection\n    was completed in late 1991; common carrier lines owned by the government and\n    operated by the Railway Administration under Ministry of Communications;\n    industrial lines owned and operated by government enterprises\nHighways:\n    20,041 km total; 17,095 km bituminous or concrete pavement, 2,371 km crushed\n    stone or gravel, 575 km graded earth\nPipelines:\n    petroleum products 615 km, natural gas 97 km\nPorts:\n    Kao-hsiung, Chi-lung (Keelung), Hua-lien, Su-ao, T'ai-tung\nMerchant marine:\n    213 ships (1,000 GRT or over) totaling 6,491,539 GRT/9,082,118 DWT; includes\n    1 passenger, 42 cargo, 15 refrigerated cargo, 73 container, 17 petroleum\n    tanker, 3 combination ore/oil, 1 specialized tanker, 58 bulk, 1\n    roll-on/roll-off, 2 combination bulk\nAirports:\n    40 total, 39 usable; 36 with permanent-surface runways; 3 with runways over\n    3,659 m; 16 with runways 2,440-3,659 m; 8 with runways 1,220-2,439 m\nTelecommunications:\n    best developed system in Asia outside of Japan; 7,800,000 telephones;\n    extensive microwave transmission links on east and west coasts; broadcast\n    stations - 91 AM, 23 FM, 15 TV (13 repeaters); 8,620,000 radios; 6,386,000\n    TVs (5,680,000 color, 706,000 monochrome); satellite earth stations - 1\n    Pacific Ocean INTELSAT and 1 Indian Ocean INTELSAT; submarine cable links to\n    Japan (Okinawa), the Philippines, Guam, Singapore, Hong Kong, Indonesia,\n    Australia, Middle East, and Western Europe\n\n:Taiwan Defense Forces\n\nBranches:\n    Army, Navy (including Marines), Air Force, Taiwan General Garrison\n    Headquarters, Ministry of National Defense\nManpower availability:\n    males 15-49, 5,982,717; 4,652,586 fit for military service; about 180,706\n    currently reach military age (19) annually\nDefense expenditures:\n    exchange rate conversion - $9.16 billion, 4.5% of GNP (FY92)\n\n:Tajikistan Geography\n\nTotal area:\n    143,100 km2\nLand area:\n    142,700 km2\nComparative area:\n    slightly smaller than Wisconsin\nLand boundaries:\n    3,651 km total; Afghanistan 1,206 km, China 414 km, Kyrgyzstan 870 km,\n    Uzbekistan 1,161 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    boundary with China under dispute\nClimate:\n    midlatitude semiarid to polar in Pamir Mountains\nTerrain:\n    Pamir and Alay Mountains dominate landscape; western Fergana Valley in\n    north, Kafirnigan and Vakhsh Valleys in southeast\nNatural resources:\n    significant hydropower potential, petroleum, uranium, mercury, small\n    production of petroleum, brown coal, lead, zinc, antimony, tungsten\nLand use:\n    6% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    NA\nNote:\n    landlocked\n\n:Tajikistan People\n\nPopulation:\n    5,680,242 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    40 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    74 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 70 years female (1992)\nTotal fertility rate:\n    5.3 children born/woman (1992)\nNationality:\n    noun - Tajik(s); adjective - Tajik\nEthnic divisions:\n    Tajik 62%, Uzbek 24%, Russian 8%, Tatar 2%, other 4%\nReligions:\n    Sunni Muslim approximately 80%, Shi`a Muslim 5%\nLanguages:\n    Tajik (official) NA%\nLiteracy:\n    NA% (male NA%, female NA%) age 15 and over can read and write\nLabor force:\n    1,938,000; agriculture and forestry 43%, industry and construction 22%,\n    other 35% (1990)\nOrganized labor:\n    NA\n\n:Tajikistan Government\n\nLong-form name:\n    Republic of Tajikistan\nType:\n    republic\nCapital:\n    Dushanbe\nAdministrative divisions:\n    3 oblasts (oblastey, singular - oblast') and one autonomous oblast*;\n    Gorno-Badakhshan*; Kurgan-Tyube, Kulyab, Leninabad (Khudzhand); note - the\n    rayons around Dushanbe are under direct republic jurisdiction; an oblast\n    usually has the same name as its administrative center (exceptions have the\n    administrative center name following in parentheses)\nIndependence:\n    9 September 1991 (from Soviet Union); formerly Tajikistan Soviet Socialist\n    Republic\nConstitution:\n    adopted NA April 1978\nLegal system:\n    based on civil law system; no judicial review of legislative acts\nNational holiday:\n    NA\nExecutive branch:\n    president, prime minister\nLegislative branch:\n    unicameral Supreme Soviet\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Rakhman NABIYEV (since NA September 1991); note - a government of\n    National Reconciliation was formed in May 1992; NABIYEV is titular head\n  Head of Government:\n    Prime Minister Akbar MIRZOYEV (since 10 January 1992); First Deputy Prime\n    Minister Davlat USMON\nPolitical parties and leaders:\n    Tajik Democratic Party, Shodmon YUSUF, chairman; Rastokhez (Rebirth), Tohir\n    ABDULJABAR, chairman; Islamic Revival Party, Sharif HIMMOT-ZODA, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 27 October 1991 (next to be held NA); results - Rakhman NABIYEV,\n    Communist Party 60%; Daolat KHUDONAZAROV, Democratic Party, Islamic Rebirth\n    Party and Rastokhoz Party 30%\n  Supreme Soviet:\n    last held 25 February 1990 (next to be held NA); results - Communist Party\n    99%, other 1%; seats - (230 total) Communist Party 227, other 3\nCommunists:\n    NA\nOther political or pressure groups:\n    Kazi Kolon, Akbar TURAJON-SODA, Muslim leader\nMember of:\n    CSCE, IMF, UN\nDiplomatic representation:\n    NA\n  US:\n    Ambassador-designate Stan ESCUDERO; Embassy at Interim Chancery, #39 Ainii\n    Street; Residences: Oktyabrskaya Hotel, Dushanbe (mailing address is APO AE\n    09862); telephone [8] (011) 7-3772-24-32-23\n\n:Tajikistan Government\n\nFlag:\n    NA; still in the process of designing one\n\n:Tajikistan Economy\n\nOverview:\n    Tajikistan has had the lowest standard of living and now faces the bleakest\n    economic prospects of the 15 former Soviet republics. Agriculture is the\n    main economic sector, normally accounting for 38% of employment and\n    featuring cotton and fruits. Industry is sparse, bright spots including\n    electric power and aluminum production based on the country's sizable\n    hydropower resources and a surprising specialty in the production of\n    metal-cutting machine tools. In 1991 and early 1992, disruptions in food\n    supplies from the outside have severely strained the availability of food\n    throughout the republic. The combination of the poor food supply, the\n    general disruption of industrial links to suppliers and markets, and\n    political instability have meant that the republic's leadership could make\n    little progress in economic reform in 1991 and early 1992.\nGDP:\n    $NA, per capita $NA; real growth rate -9% (1991 est.)\nInflation rate (consumer prices):\n    84% (1991)\nUnemployment rate:\n    25% (1991 est.)\nBudget:\n    $NA\nExports:\n    $706 million (1990)\n  commodities:\n    aluminum, cotton, fruits, vegetable oil, textiles\n  partners:\n    Russia, Kazakhstan, Ukraine, Uzbekistan\nImports:\n    $1.3 billion (1990)\n  commodities:\n    chemicals, machinery and transport equipment, textiles, foodstuffs\n  partners:\n    NA\nExternal debt:\n    $650 million (end of 1991 est.)\nIndustrial production:\n    growth rate -2.0% (1991)\nElectricity:\n    4,575,000 kW capacity; 17,500 million kWh produced, 3,384 kWh per capita\n    (1991)\nIndustries:\n    aluminum, zinc, lead, chemicals and fertilizers, cement, vegetable oil,\n    metal-cutting machine tools, refrigerators and freezers\nAgriculture:\n    cotton, grain, fruits, grapes, vegetables; cattle, pigs, sheep and goats,\n    yaks\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    NA\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Tajikistan Communications\n\nRailroads:\n    480 km all 1.520-meter (broad) gauge (includes NA km electrified); does not\n    include industrial lines (1990); 258 km between Dushanbe (Tajikistan) and\n    Termez (Uzbekistan), connects with the railroad system of the other\n    republics of the former Soviet Union at Tashkent in Uzbekistan\nHighways:\n    29,900 km total (1990); 24,400 km hard surfaced, 8,500 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    poorly developed; telephone density NA; linked by landline or microwave with\n    other CIS member states and by leased connections via the Moscow\n    international gateway switch to other countries; satellite earth stations -\n    Orbita and INTELSAT (TV receive only)\n\n:Tajikistan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Air, and Air Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Tanzania Geography\n\nTotal area:\n    945,090 km2\nLand area:\n    886,040 km2; includes the islands of Mafia, Pemba, and Zanzibar\nComparative area:\n    slightly larger than twice the size of California\nLand boundaries:\n    3,402 km total; Burundi 451 km, Kenya 769 km, Malawi 475 km, Mozambique 756\n    km, Rwanda 217 km, Uganda 396 km, Zambia 338 km\nCoastline:\n    1,424 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    boundary dispute with Malawi in Lake Nyasa; Tanzania-Zaire-Zambia tripoint\n    in Lake Tanganyika may no longer be indefinite since it is reported that the\n    indefinite section of the Zaire-Zambia boundary has been settled\nClimate:\n    varies from tropical along coast to temperate in highlands\nTerrain:\n    plains along coast; central plateau; highlands in north, south\nNatural resources:\n    hydropower potential, tin, phosphates, iron ore, coal, diamonds, gemstones,\n    gold, natural gas, nickel\nLand use:\n    arable land 5%; permanent crops 1%; meadows and pastures 40%; forest and\n    woodland 47%; other 7%; includes irrigated NEGL%\nEnvironment:\n    lack of water and tsetse fly limit agriculture; recent droughts affected\n    marginal agriculture; Kilimanjaro is highest point in Africa\n\n:Tanzania People\n\nPopulation:\n    27,791,552 (July 1992), growth rate 3.4% (1992)\nBirth rate:\n    49 births/1,000 population (1992)\nDeath rate:\n    15 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    103 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    50 years male, 55 years female (1992)\nTotal fertility rate:\n    7.0 children born/woman (1992)\nNationality:\n    noun - Tanzanian(s); adjective - Tanzanian\nEthnic divisions:\n    mainland - native African consisting of well over 100 tribes 99%; Asian,\n    European, and Arab 1%\nReligions:\n    mainland - Christian 33%, Muslim 33%, indigenous beliefs 33%; Zanzibar -\n    almost all Muslim\nLanguages:\n    Swahili and English (official); English primary language of commerce,\n    administration, and higher education; Swahili widely understood and\n    generally used for communication between ethnic groups; first language of\n    most people is one of the local languages; primary education is generally in\n    Swahili\nLiteracy:\n    46% (male 62%, female 31%) age 15 and over can read and write (1978)\nLabor force:\n    732,200 wage earners; 90% agriculture, 10% industry and commerce (1986 est.)\nOrganized labor:\n    15% of labor force\n\n:Tanzania Government\n\nLong-form name:\n    United Republic of Tanzania\nType:\n    republic\nCapital:\n    Dar es Salaam; some government offices have been transferred to Dodoma,\n    which is planned as the new national capital by the end of the 1990s\nAdministrative divisions:\n    25 regions; Arusha, Dar es Salaam, Dodoma, Iringa, Kigoma, Kilimanjaro,\n    Lindi, Mara, Mbeya, Morogoro, Mtwara, Mwanza, Pemba North, Pemba South,\n    Pwani, Rukwa, Ruvuma, Shinyanga, Singida, Tabora, Tanga, Zanzibar\n    Central/South, Zanzibar North, Zanzibar Urban/West, Ziwa Magharibi\nIndependence:\n    Tanganyika became independent 9 December 1961 (from UN trusteeship under\n    British administration); Zanzibar became independent 19 December 1963 (from\n    UK); Tanganyika united with Zanzibar 26 April 1964 to form the United\n    Republic of Tanganyika and Zanzibar; renamed United Republic of Tanzania 29\n    October 1964\nConstitution:\n    15 March 1984 (Zanzibar has its own Constitution but remains subject to\n    provisions of the union Constitution)\nLegal system:\n    based on English common law; judicial review of legislative acts limited to\n    matters of interpretation; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Union Day, 26 April (1964)\nExecutive branch:\n    president, first vice president and prime minister of the union, second vice\n    president and president of Zanzibar, Cabinet\nLegislative branch:\n    unicameral National Assembly (Bunge)\nJudicial branch:\n    Court of Appeal, High Court\nLeaders:\n  Chief of State:\n    President Ali Hassan MWINYI (since 5 November 1985); First Vice President\n    John MALECELA (since 9 November 1990); Second Vice President Salmin AMOUR\n    (since 9 November 1990)\n  Head of Government:\n    Prime Minister John MALECELA (since 9 November 1990)\nPolitical parties and leaders:\n    only party - Chama Cha Mapinduzi (CCM or Revolutionary Party), Ali Hassan\n    MWINYI, party chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 28 October 1990 (next to be held NA October 1995); results - Ali\n    Hassan MWINYI was elected without opposition\n  National Assembly:\n    last held 28 October 1990 (next to be held NA October 1995); results - CCM\n    is the only party; seats - (241 total, 168 elected) CCM 168\nMember of:\n    ACP, AfDB, C, CCC, EADB, ECA, FAO, FLS, G-6, G-77, GATT, IAEA, IBRD, ICAO,\n    IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS,\n    NAM, OAU, SADCC, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WHO, WIPO, WMO,\n    WTO\n\n:Tanzania Government\n\nDiplomatic representation:\n    Ambassador-designate Charles Musama NYIRABU; Chancery at 2139 R Street NW,\n    Washington, DC 20008; telephone (202) 939-6125\n  US:\n    Ambassador Edmund DE JARNETTE, Jr.; Embassy at 36 Laibon Road (off Bagamoyo\n    Road), Dar es Salaam (mailing address is P. O. Box 9123, Dar es Salaam);\n    telephone [255] (51) 66010/13; FAX [255] (51)66701\nFlag:\n    divided diagonally by a yellow-edged black band from the lower hoist-side\n    corner; the upper triangle (hoist side) is green and the lower triangle is\n    blue\n\n:Tanzania Economy\n\nOverview:\n    Tanzania is one of the poorest countries in the world. The economy is\n    heavily dependent on agriculture, which accounts for about 47% of GDP,\n    provides 85% of exports, and employs 90% of the work force. Industry\n    accounts for 8% of GDP and is mainly limited to processing agricultural\n    products and light consumer goods. The economic recovery program announced\n    in mid-1986 has generated notable increases in agricultural production and\n    financial support for the program by bilateral donors. The World Bank, the\n    International Monetary Fund, and bilateral donors have provided funds to\n    rehabilitate Tanzania's deteriorated economic infrastructure. Growth in 1991\n    was featured by a pickup in industrial production and a substantial increase\n    in output of minerals led by gold.\nGDP:\n    exchange rate conversion - $6.9 billion, per capita $260 (1989 est.); real\n    growth rate 4.5% (1991 est.)\nInflation rate (consumer prices):\n    16.5% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $495 million; expenditures $631 million, including capital\n    expenditures of $118 million (FY90)\nExports:\n    $478 million (f.o.b., FY91 est.)\n  commodities:\n    coffee, cotton, sisal, tea, cashew nuts, meat, tobacco, diamonds, gold,\n    coconut products, pyrethrum, cloves (Zanzibar)\n  partners:\n    FRG, UK, Japan, Netherlands, Kenya, Hong Kong, US\nImports:\n    $1.5 billion (c.i.f., FY91 est.)\n  commodities:\n    manufactured goods, machinery and transportation equipment, cotton piece\n    goods, crude oil, foodstuffs\n  partners:\n    FRG, UK, US, Japan, Italy, Denmark\nExternal debt:\n    $5.2 billion (December 1991 est.)\nIndustrial production:\n    growth rate 4.2% (1988); accounts for 8% of GDP\nElectricity:\n    405,000 kW capacity; 905 million kWh produced, 35 kWh per capita (1991)\nIndustries:\n    primarily agricultural processing (sugar, beer, cigarettes, sisal twine),\n    diamond and gold mining, oil refinery, shoes, cement, textiles, wood\n    products, fertilizer\nAgriculture:\n    accounts for over 45% of GDP; topography and climatic conditions limit\n    cultivated crops to only 5% of land area; cash crops - coffee, sisal, tea,\n    cotton, pyrethrum (insecticide made from chrysanthemums), cashews, tobacco,\n    cloves (Zanzibar); food crops - corn, wheat, cassava, bananas, fruits, and\n    vegetables; small numbers of cattle, sheep, and goats; not self-sufficient\n    in food grain production\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $400 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $9.8 billion; OPEC\n    bilateral aid (1979-89), $44 million; Communist countries (1970-89), $614\n    million\n\n:Tanzania Economy\n\nCurrency:\n    Tanzanian shilling (plural - shillings); 1 Tanzanian shilling (TSh) = 100\n    cents\nExchange rates:\n    Tanzanian shillings (TSh) per US$1 - 236.01 (February (1992), 219.16 (1991),\n    195.06 (1990), 143.38 (1989), 99.29 (1988), 64.26 (1987)\nFiscal year:\n    1 July-30 June\n\n:Tanzania Communications\n\nRailroads:\n    3,555 km total; 960 km 1.067-meter gauge; 2,595 km 1.000-meter gauge, 6.4 km\n    double track, 962 km Tazara Railroad 1.067-meter gauge; 115 km 1.000-meter\n    gauge planned by end of decade\nHighways:\n    total 81,900 km, 3,600 km paved; 5,600 km gravel or crushed stone; remainder\n    improved and unimproved earth\nInland waterways:\n    Lake Tanganyika, Lake Victoria, Lake Nyasa\nPipelines:\n    crude oil 982 km\nPorts:\n    Dar es Salaam, Mtwara, Tanga, and Zanzibar are ocean ports; Mwanza on Lake\n    Victoria and Kigoma on Lake Tanganyika are inland ports\nMerchant marine:\n    6 ships (1,000 GRT or over) totaling 19,185 GRT/22,916 DWT; includes 2\n    passenger-cargo, 2 cargo, 1 roll-on/roll-off cargo, 1 petroleum tanker\nCivil air:\n    8 major transport aircraft\nAirports:\n    104 total, 94 usable; 12 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3, 659 m; 43 with runways 1,220-2,439 m\nTelecommunications:\n    fair system operating below capacity; open wire, radio relay, and\n    troposcatter; 103,800 telephones; broadcast stations - 12 AM, 4 FM, 2 TV; 1\n    Indian Ocean and 1 Atlantic Ocean INTELSAT earth station\n\n:Tanzania Defense Forces\n\nBranches:\n    Tanzanian People's Defense Force (TPDF; including Army, Navy, and Air\n    Force); paramilitary Police Field Force Unit; Militia\nManpower availability:\n    males 15-49, 5,747,542; 3,319,116 fit for military service\nDefense expenditures:\n    exchange rate conversion - $119 million, about 2% of GDP (FY89 budget)\n\n:Thailand Geography\n\nTotal area:\n    514,000 km2\nLand area:\n    511,770 km2\nComparative area:\n    slightly more than twice the size of Wyoming\nLand boundaries:\n    4,863 km total; Burma 1,800 km, Cambodia 803 km, Laos 1,754 km, Malaysia 506\n    km\nCoastline:\n    3,219 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    boundary dispute with Laos; unresolved maritime boundary with Vietnam\nClimate:\n    tropical; rainy, warm, cloudy southwest monsoon (mid-May to September); dry,\n    cool northeast monsoon (November to mid-March); southern isthmus always hot\n    and humid\nTerrain:\n    central plain; eastern plateau (Khorat); mountains elsewhere\nNatural resources:\n    tin, rubber, natural gas, tungsten, tantalum, timber, lead, fish, gypsum,\n    lignite, fluorite\nLand use:\n    arable land 34%; permanent crops 4%; meadows and pastures 1%; forest and\n    woodland 30%; other 31%; includes irrigated 7%\nEnvironment:\n    air and water pollution; land subsidence in Bangkok area\nNote:\n    controls only land route from Asia to Malaysia and Singapore\n\n:Thailand People\n\nPopulation:\n    57,624,180 (July 1992), growth rate 1.4% (1992)\nBirth rate:\n    20 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    35 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 71 years female (1992)\nTotal fertility rate:\n    2.2 children born/woman (1992)\nNationality:\n    noun - Thai (singular and plural); adjective - Thai\nEthnic divisions:\n    Thai 75%, Chinese 14%, other 11%\nReligions:\n    Buddhism 95%, Muslim 3.8%, Christianity 0.5%, Hinduism 0.1%, other 0.6%\n    (1991)\nLanguages:\n    Thai; English is the secondary language of the elite; ethnic and regional\n    dialects\nLiteracy:\n    93% (male 96%, female 90%) age 15 and over can read and write (1990 est.)\nLabor force:\n    30,870,000; agriculture 62%, industry 13%, commerce 11%, services (including\n    government) 14% (1989 est.)\nOrganized labor:\n    309,000 union members (1989)\n\n:Thailand Government\n\nLong-form name:\n    Kingdom of Thailand\nType:\n    constitutional monarchy\nCapital:\n    Bangkok\nAdministrative divisions:\n    72 provinces (changwat, singular and plural); Ang Thong, Buriram,\n    Chachoengsao, Chai Nat, Chaiyaphum, Chanthaburi, Chiang Mai, Chiang Rai,\n    Chon Buri, Chumphon, Kalasin, Kamphaeng Phet, Kanchanaburi, Khon Kaen,\n    Krabi, Krung Thep Mahanakhon, Lampang, Lamphun, Loei, Lop Buri, Mae Hong\n    Son, Maha Sarakham, Nakhon Nayok, Nakhon Pathom, Nakhon Phanom, Nakhon\n    Ratchasima, Nakhon Sawan, Nakhon Si Thammarat, Nan, Narathiwat, Nong Khai,\n    Nonthaburi, Pathum Thani, Pattani, Phangnga, Phatthalung, Phayao,\n    Phetchabun, Phetchaburi, Phichit, Phitsanulok, Phra Nakhon Si Ayutthaya,\n    Phrae, Phuket, Prachin Buri, Prachuap Khiri Khan, Ranong, Ratchaburi,\n    Rayong, Roi Et, Sakon Nakhon, Samut Prakan, Samut Sakhon, Samut Songkhram,\n    Sara Buri, Satun, Sing Buri, Sisaket, Songkhla, Sukhothai, Suphan Buri,\n    Surat Thani, Surin, Tak, Trang, Trat, Ubon Ratchathani, Udon Thani, Uthai\n    Thani, Uttaradit, Yala, Yasothon\nIndependence:\n    1238 (traditional founding date); never colonized\nConstitution:\n    22 December 1978; new constitution approved 7 December 1991\nLegal system:\n    based on civil law system, with influences of common law; has not accepted\n    compulsory ICJ jurisdiction; martial law in effect since 23 February 1991\n    military coup\nNational holiday:\n    Birthday of His Majesty the King, 5 December (1927)\nExecutive branch:\n    monarch, interim prime minister, three interim deputy prime ministers,\n    interim Council of Ministers (cabinet), Privy Council; following the\n    military coup of 23 February 1991 a National Peace-Keeping Council was set\n    up\nLegislative branch:\n    bicameral National Assembly (Rathasatha) consists of an upper house or\n    Senate (Vuthisatha) and a lower house or House of Representatives\n    (Saphaphoothan-Rajsadhorn)\nJudicial branch:\n    Supreme Court (Sarndika)\nLeaders:\n  Chief of State:\n    King PHUMIPHON Adunlayadet (since 9 June 1946); Heir Apparent Crown Prince\n    WACHIRALONGKON (born 28 July 1952)\n  Head of Government:\n    Prime Minister Anan PANYARACHUN (since 10 June 1992)\nPolitical parties and leaders:\n    Justice Unity Party (Samakki Tham); Chart Thai Party; Solidarity Party; Thai\n    Citizens Party (TCP, Prachakorn Thai); Social Action Party (SAP); Democrat\n    Party (DP); Force of Truth Party (Palang Dharma); New Aspiration Party;\n    Rassadorn Party; Muanchon Party; Puangchon Chothai Party\nSuffrage:\n    universal at age 21\n\n:Thailand Government\n\nElections:\n  House of Representatives:\n    last held 22 March 1992 (next to be held by NA); results - percent of vote\n    by party NA; seats - (360 total) Samakki Tham 79, Chart Thai Party 74, New\n    Aspiration Party 72, DP 44, Palang Dharma 41, SAP 31, TCP 7, Solidarity\n    Party 6, Rassadorn 4, Muanchon 1, Puangchon Chotahi 1\nCommunists:\n    illegal Communist party has 500 to 1,000 members; armed Communist insurgents\n    throughout Thailand total 200 (est.)\nMember of:\n    APEC, AsDB, ASEAN, CCC, CP, ESCAP, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICC,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ISO,\n    ITU, LORCS, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WCL, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador-designate PHIRAPHONG Kasemsi; Embassy at 2300 Kalorama Road NW,\n    Washington, DC 20008; telephone (202) 483-7200; there are Thai Consulates\n    General in Chicago, Los Angeles, and New York\n  US:\n    Ambassador David F. LAMBERTSON; Embassy at 95 Wireless Road, Bangkok\n    (mailing address is APO AP 96546); telephone [66] (2) 252-5040; FAX [66] (2)\n    254-2990; there is a US Consulate General in Chiang Mai and Consulates in\n    Songkhla and Udorn\nFlag:\n    five horizontal bands of red (top), white, blue (double width), white, and\n    red\n\n:Thailand Economy\n\nOverview:\n    Thailand, one of the more advanced developing countries in Asia, enjoyed a\n    year of 8% growth in 1991, although down from an annual average of 11%\n    growth between 1987 and 1990. The increasingly sophisticated manufacturing\n    sector benefited from export-oriented investment. The manufacturing and\n    service sectors have accounted for the lion's share of economic growth.\n    Thailand's traditional agricultural sector continued to become less\n    important to the overall economy in 1991. The trade deficit continued to\n    increase in 1991, to $11 billion; earnings from tourism and remittances grew\n    marginally as a result of the Gulf War; and Thailand's import bill grew,\n    especially for manufactures and oil. The government has followed fairly\n    sound fiscal and monetary policies. Aided by increased tax receipts from the\n    fast-moving economy; Bangkok recorded its fourth consecutive budget surplus\n    in 1991. The government is moving ahead with new projects - especially for\n    telecommunications, roads, and port facilities - needed to refurbish the\n    country's overtaxed infrastructure. Political unrest and the military's\n    shooting of antigovernment demonstrators in May 1992 have caused\n    international businessmen to question Thailand's political stability.\n    Thailand's general economic outlook remains good, however, assuming the\n    continuation of the government's progrowth measures.\nGNP:\n    exchange rate conversion - $92.6 billion, per capita $1,630; real growth\n    rate 8% (1991 est.)\nInflation rate (consumer prices):\n    5.6% (1991 est.)\nUnemployment rate:\n    4.1% (1991 est.)\nBudget:\n    revenues $17.9 billion; expenditures $17.9 billion, including capital\n    expenditures of $5.0 billion (FY92 est.)\nExports:\n    $27.5 billion (f.o.b., 1991)\n  commodities:\n    machinery and manufactures 62%, food 28%, crude materials 7% (1990)\n  partners:\n    US 23.4%, Japan 17.2%, Singapore 7.3%, Germany 5.3%, Hong Kong 4.8%, UK\n    4.4%, Netherlands 4.3%, Malaysia, France, China (1990)\nImports:\n    $39.0 billion (c.i.f., 1991)\n  commodities:\n    machinery and manufactures 67%, chemicals l0%, fuels 9%, crude materials 6%\n    (1990)\n  partners:\n    Japan 30.2%, US 12%, Singapore 6.9%, Taiwan 5%, Germany 4.8%, China 3.2%,\n    South Korea, Malaysia, UK (1990)\nExternal debt:\n    $25.1 billion (1990)\nIndustrial production:\n    growth rate 14% (1990 est.); accounts for about 25% of GDP\nElectricity:\n    7,400,000 kW capacity; 37,500 million kWh produced, 660 kWh per capita\n    (1991)\nIndustries:\n    tourism is the largest source of foreign exchange; textiles and garments,\n    agricultural processing, beverages, tobacco, cement, other light\n    manufacturing, such as jewelry; electric appliances and components,\n    integrated circuits, furniture, plastics; world's second-largest tungsten\n    producer and third-largest tin producer\n\n:Thailand Economy\n\nAgriculture:\n    accounts for 12% of GDP and 60% of labor force; leading producer and\n    exporter of rice and cassava (tapioca); other crops - rubber, corn,\n    sugarcane, coconuts, soybeans; except for wheat, self-sufficient in food\nIllicit drugs:\n    a minor producer, major illicit trafficker of heroin, particularly from\n    Burma and Laos, and cannabis for the international drug market; eradication\n    efforts have reduced the area of cannabis cultivation and shifted some\n    production to neighboring countries; opium poppy cultivation has been\n    affected by eradication efforts\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $870 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $8.6 billion; OPEC\n    bilateral aid (1979-89), $19 million\nCurrency:\n    baht (plural - baht); 1 baht (B) = 100 satang\nExchange rates:\n    baht (B) per US$1 - 25.614 (March 1992), 25.517 (1991), 25.585 (1990),\n    25.702 (1989), 25.294 (1988), 25.723 (1987)\nFiscal year:\n    1 October-30 September\n\n:Thailand Communications\n\nRailroads:\n    3,940 km 1.000-meter gauge, 99 km double track\nHighways:\n    44,534 km total; 28,016 km paved, 5,132 km earth surface, 11,386 km under\n    development\nInland waterways:\n    3,999 km principal waterways; 3,701 km with navigable depths of 0.9 m or\n    more throughout the year; numerous minor waterways navigable by\n    shallow-draft native craft\nPipelines:\n    natural gas 350 km, petroleum products 67 km\nPorts:\n    Bangkok, Pattani, Phuket, Sattahip, Si Racha\nMerchant marine:\n    151 ships (1,000 GRT or over) totaling 628,225 GRT/957,095 DWT; includes 1\n    short-sea passenger, 87 cargo, 11 container, 31 petroleum tanker, 9\n    liquefied gas, 2 chemical tanker, 3 bulk, 4 refrigerated cargo, 2\n    combination bulk, 1 passenger\nCivil air:\n    41 (plus 2 leased) major transport aircraft\nAirports:\n    115 total, 97 usable; 50 with permanent-surface runways; 1 with runways over\n    3,659 m; 13 with runways 2,440-3,659 m; 28 with runways 1,220-2,439 m\nTelecommunications:\n    service to general public inadequate; bulk of service to government\n    activities provided by multichannel cable and radio relay network; 739,500\n    telephones (1987); broadcast stations - over 200 AM, 100 FM, and 11 TV in\n    government-controlled networks; satellite earth stations - 1 Indian Ocean\n    INTELSAT and 1 Pacific Ocean INTELSAT domestic satellite system being\n    developed\n\n:Thailand Defense Forces\n\nBranches:\n    Royal Thai Army, Royal Thai Navy (including Royal Thai Marine Corps), Royal\n    Thai Air Force, Paramilitary Forces\nManpower availability:\n    males 15-49, 16,361,393; 9,966,446 fit for military service; 612,748 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $2.7 billion, about 3% of GNP (1992 budget)\n\n:Togo Geography\n\nTotal area:\n    56,790 km2\nLand area:\n    54,390 km2\nComparative area:\n    slightly smaller than West Virginia\nLand boundaries:\n    1,647 km total; Benin 644 km, Burkina 126 km, Ghana 877 km\nCoastline:\n    56 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    30 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, humid in south; semiarid in north\nTerrain:\n    gently rolling savanna in north; central hills; southern plateau; low\n    coastal plain with extensive lagoons and marshes\nNatural resources:\n    phosphates, limestone, marble\nLand use:\n    arable land 25%; permanent crops 1%; meadows and pastures 4%; forest and\n    woodland 28%; other 42%; includes irrigated NEGL%\nEnvironment:\n    hot, dry harmattan wind can reduce visibility in north during winter; recent\n    droughts affecting agriculture; deforestation\n\n:Togo People\n\nPopulation:\n    3,958,863 (July 1992), growth rate 3.6% (1992)\nBirth rate:\n    48 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    94 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    54 years male, 58 years female (1992)\nTotal fertility rate:\n    7.0 children born/woman (1992)\nNationality:\n    noun - Togolese (singular and plural); adjective - Togolese\nEthnic divisions:\n    37 tribes; largest and most important are Ewe, Mina, and Kabye; under 1%\n    European and Syrian-Lebanese\nReligions:\n    indigenous beliefs about 70%, Christian 20%, Muslim 10%\nLanguages:\n    French, both official and language of commerce; major African languages are\n    Ewe and Mina in the south and Dagomba and Kabye in the north\nLiteracy:\n    43% (male 56%, female 31%) age 15 and over can read and write (1990 est.)\nLabor force:\n    NA; agriculture 78%, industry 22%; about 88,600 wage earners, evenly divided\n    between public and private sectors; 50% of population of working age (1985)\nOrganized labor:\n    Federation of Togolese Workers (CNTT) was only legal labor union until\n    Spring 1991; at least two more groups established since then: Labor\n    Federation of Togolese Workers (CSTT) and the National Union of Independent\n    Syndicates (UNSIT), each with 10-12 member unions; four other civil service\n    unions have formed a loose coalition known as the Autonomous Syndicates of\n    Togo (CTSA)\n\n:Togo Government\n\nLong-form name:\n    Republic of Togo\nType:\n    republic; under transition to multiparty democratic rule\nCapital:\n    Lome\nAdministrative divisions:\n    21 circumscriptions (circonscriptions, singular - circonscription); Amlame\n    (Amou), Aneho (Lacs), Atakpame (Ogou), Badou (Wawa), Bafilo (Assoli), Bassar\n    (Bassari), Dapango (Tone), Kande (Keran), Klouto (Kloto), Pagouda (Binah),\n    Lama-Kara (Kozah), Lome (Golfe), Mango (Oti), Niamtougou (Doufelgou), Notse\n    (Haho), Pagouda, Sotouboua, Tabligbo (Yoto), Tchamba, Nyala, Tchaoudjo,\n    Tsevie (Zio), Vogan (Vo); note - the 21 units may now be called prefectures\n    (prefectures, singular - prefecture) and reported name changes for\n    individual units are included in parentheses\nIndependence:\n    27 April 1960 (from UN trusteeship under French administration, formerly\n    French Togo)\nConstitution:\n    1980 constitution nullified during national reform conference; transition\n    constitution adopted 24 August 1991; multiparty draft constitution sent to\n    High Council of the Republic for approval in November 1991, scheduled to be\n    put to public referendum in NA 1992\nLegal system:\n    French-based court system\nNational holiday:\n    Independence Day 27 April (1960)\nExecutive branch:\n    president, prime minister, Council of Ministers (cabinet)\nLegislative branch:\n    National Assembly dissolved during national reform conference; 79-member\n    interim High Council for the Republic (HCR) formed to act as legislature\n    during transition to multiparty democracy; legislative elections scheduled\n    to be held in NA\nJudicial branch:\n    Court of Appeal (Cour d'Appel), Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Gen. Gnassingbe EYADEMA (since 14 April 1967)\n  Head of Government:\n    interim Prime Minister Joseph Kokou KOFFIGOH (since 28 August 1991)\nPolitical parties and leaders:\n    Rally of the Togolese People (RPT) led by President EYADEMA was the only\n    party until the formation of multiple parties was legalized 12 April 1991;\n    more than 10 parties formed as of mid-May, though none yet legally\n    registered; a national conference to determine transition regime took place\n    10 July-28 August 1991\nSuffrage:\n    universal adult at age NA\nElections:\n  President:\n    last held 21 December 1986 (next to be held NA 1992); results - Gen. EYADEMA\n    was reelected without opposition\n  National Assembly:\n    last held 4 March 1990; dissolved during national reform conference (next to\n    be held April/May 1992); results - RPT was the only party; seats - (77\n    total) RPT 77\n\n:Togo Government\n\nMember of:\n    ACCT, ACP, AfDB, CEAO (observer), ECA, ECOWAS, Entente, FAO, FZ, G-77, GATT,\n    IBRD, ICAO, ICC, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC,\n    ITU, LORCS, NAM, OAU, UN, UNCTAD, UNESCO, UNIDO, UPU, WADB, WCL, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Ellom-Kodjo SCHUPPIUS; Chancery at 2208 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 234-4212 or 4213\n  US:\n    Ambassador Harmon E. KIRBY; Embassy at Rue Pelletier Caventou and Rue\n    Vauban, Lome (mailing address is B. P. 852, Lome); telephone [228] 21-29-91\n    through 94 and 21-77-17; FAX [228] 21-79-52\nFlag:\n    five equal horizontal bands of green (top and bottom) alternating with\n    yellow; there is a white five-pointed star on a red square in the upper\n    hoist-side corner; uses the popular pan-African colors of Ethiopia\n\n:Togo Economy\n\nOverview:\n    The economy is heavily dependent on subsistence agriculture, which accounts\n    for about 35% of GDP and provides employment for 78% of the labor force.\n    Primary agricultural exports are cocoa, coffee, and cotton, which together\n    account for about 30% of total export earnings. Togo is self-sufficient in\n    basic foodstuffs when harvests are normal. In the industrial sector\n    phosphate mining is by far the most important activity, with phosphate\n    exports accounting for about 40% of total foreign exchange earnings. Togo\n    serves as a regional commercial and trade center. The government, over the\n    past decade, with IMF and World Bank support, has been implementing a number\n    of economic reform measures, that is, actively encouraging foreign\n    investment and attempting to bring revenues in line with expenditures.\n    Political unrest throughout 1991, however, has jeopardized the reform\n    program and has disrupted vital economic activity.\nGDP:\n    exchange rate conversion - $1.5 billion, per capita $400; real growth rate\n    2% (1990 est.)\nInflation rate (consumer prices):\n    1.0% (1990)\nUnemployment rate:\n    2.0% (1987)\nBudget:\n    revenues $330 million; expenditures $363 million, including capital\n    expenditures of $101 million (1990 est.)\nExports:\n    $396 million (f.o.b., 1990)\n  commodities:\n    phosphates, cocoa, coffee, cotton, manufactures, palm kernels\n  partners:\n    EC 70%, Africa 9%, US 2%, other 19% (1985)\nImports:\n    $502 million (f.o.b., 1990)\n  commodities:\n    food, fuels, durable consumer goods, other intermediate goods, capital goods\n  partners:\n    EC 61%, US 6%, Africa 4%, Japan 4%, other 25% (1989)\nExternal debt:\n    $1.3 billion (1990 est.)\nIndustrial production:\n    growth rate 4.9% (1987 est.); 6% of GDP\nElectricity:\n    179,000 kW capacity; 209 million kWh produced, 60 kWh per capita (1990)\nIndustries:\n    phosphate mining, agricultural processing, cement, handicrafts, textiles,\n    beverages\nAgriculture:\n    cash crops - coffee, cocoa, cotton; food crops - yams, cassava, corn, beans,\n    rice, millet, sorghum; livestock production not significant; annual fish\n    catch, 10,000-14,000 tons\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $132 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.9 billion; OPEC\n    bilateral aid (1979-89), $35 million; Communist countries (1970-89), $51\n    million\nCurrency:\n    Communaute Financiere Africaine franc (plural - francs); 1 CFA franc (CFAF)\n    = 100 centimes\n\n:Togo Economy\n\nExchange rates:\n    Communaute Financiere Africaine francs (CFAF) per US$1 - 281.99 (March\n    1992), 282.11 (1991), 272.26 (1990), 319.01 (1989), 297.85 (1988), 300.54\n    (1987)\nFiscal year:\n    calendar year\n\n:Togo Communications\n\nRailroads:\n    515 km 1.000-meter gauge, single track\nHighways:\n    6,462 km total; 1,762 km paved; 4,700 km unimproved roads\nInland waterways:\n    50 km Mono River\nPorts:\n    Lome, Kpeme (phosphate port)\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 20,975 GRT/34,022 DWT; includes 2\n    roll-on/roll-off cargo, 1 multifunction large-load carrier\nCivil air:\n    3 major transport aircraft\nAirports:\n    9 total, 9 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 2 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    fair system based on network of radio relay routes supplemented by open wire\n    lines; broadcast stations - 2 AM, no FM, 3 (2 relays) TV; satellite earth\n    stations - 1 Atlantic Ocean INTELSAT and 1 SYMPHONIE\n\n:Togo Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Gendarmerie\nManpower availability:\n    males 15-49, 828,259; 435,113 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $43 million, about 3% of GDP (1989)\n\n:Tokelau Geography\n\nTotal area:\n    10 km2\nLand area:\n    10 km2\nComparative area:\n    about 17 times the size of The Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    101 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by trade winds (April to November)\nTerrain:\n    coral atolls enclosing large lagoons\nNatural resources:\n    negligible\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    lies in Pacific typhoon belt\nNote:\n    located 3,750 km southwest of Honolulu in the South Pacific Ocean, about\n    halfway between Hawaii and New Zealand\n\n:Tokelau People\n\nPopulation:\n    1,760 (July 1992), growth rate 0.7% (1992)\nBirth rate:\n    NA births/1,000 population (1992)\nDeath rate:\n    NA deaths/1,000 population (1992)\nNet migration rate:\n    NA migrants/1,000 population (1992)\nInfant mortality rate:\n    NA deaths/1,000 live births (1992)\nLife expectancy at birth:\n    NA years male, NA years female (1992)\nTotal fertility rate:\n    NA children born/woman (1992)\nNationality:\n    noun - Tokelauan(s); adjective - Tokelauan\nEthnic divisions:\n    all Polynesian, with cultural ties to Western Samoa\nReligions:\n    Congregational Christian Church 70%, Roman Catholic 28%, other 2%; on Atafu,\n    all Congregational Christian Church of Samoa; on Nukunonu, all Roman\n    Catholic; on Fakaofo, both denominations, with the Congregational Christian\n    Church predominant\nLanguages:\n    Tokelauan (a Polynesian language) and English\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Tokelau Government\n\nLong-form name:\n    none\nType:\n    territory of New Zealand\nCapital:\n    none; each atoll has its own administrative center\nAdministrative divisions:\n    none (territory of New Zealand)\nIndependence:\n    none (territory of New Zealand)\nConstitution:\n    administered under the Tokelau Islands Act of 1948, as amended in 1970\nLegal system:\n    British and local statutes\nNational holiday:\n    Waitangi Day (Treaty of Waitangi established British sovereignty over New\n    Zealand), 6 February (1840)\nExecutive branch:\n    British monarch, administrator (appointed by the Minister of Foreign Affairs\n    in New Zealand), official secretary\nLegislative branch:\n    Council of Elders (Taupulega) on each atoll\nJudicial branch:\n    High Court in Niue, Supreme Court in New Zealand\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952)\n  Head of Government:\n    Administrator Neil WALTER (since NA February 1988); Official Secretary\n    Casimilo J. PEREZ, Office of Tokelau Affairs\nSuffrage:\n    NA\nElections:\n    NA\nMember of:\n    SPC\nDiplomatic representation:\n    none (territory of New Zealand)\nFlag:\n    the flag of New Zealand is used\n\n:Tokelau Economy\n\nOverview:\n    Tokelau's small size, isolation, and lack of resources greatly restrain\n    economic development and confine agriculture to the subsistence level. The\n    people must rely on aid from New Zealand to maintain public services, annual\n    aid being substantially greater than GDP. The principal sources of revenue\n    come from sales of copra, postage stamps, souvenir coins, and handicrafts.\n    Money is also remitted to families from relatives in New Zealand.\nGDP:\n    exchange rate conversion - $1.4 million, per capita $800; real growth rate\n    NA% (1988 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $430,830; expenditures $2.8 million, including capital expenditures\n    of $37,300 (FY87)\nExports:\n    $98,000 (f.o.b., 1983)\n  commodities:\n    stamps, copra, handicrafts\n  partners:\n    NZ\nImports:\n    $323,400 (c.i.f., 1983)\n  commodities:\n    foodstuffs, building materials, fuel\n  partners:\n    NZ\nExternal debt:\n    none\nIndustrial production:\n    growth rate NA%\nElectricity:\n    200 kW capacity; 300,000 kWh produced, 180 kWh per capita (1990)\nIndustries:\n    small-scale enterprises for copra production, wood work, plaited craft\n    goods; stamps, coins; fishing\nAgriculture:\n    coconuts, copra; basic subsistence crops - breadfruit, papaya, bananas;\n    pigs, poultry, goats\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89), $24\n    million\nCurrency:\n    New Zealand dollar (plural - dollars); 1 New Zealand dollar (NZ$) = 100\n    cents\nExchange rates:\n    New Zealand dollars (NZ$) per US$1 - 1.8245 (March 1992), l.7265 (1991),\n    1.6750 (1990), 1.6708 (1989), 1.5244 (1988), 1.6886 (1987)\nFiscal year:\n    1 April-31 March\n\n:Tokelau Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    none; lagoon landings by amphibious aircraft from Western Samoa\nTelecommunications:\n    telephone service between islands and to Western Samoa\n\n:Tokelau Defense Forces\n\nNote:\n    defense is the responsibility of New Zealand\n\n:Tonga Geography\n\nTotal area:\n    748 km2\nLand area:\n    718 km2\nComparative area:\n    slightly more than four times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    419 km\nMaritime claims:\n  Continental shelf:\n    no specific limits\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; modified by trade winds; warm season (December to May), cool\n    season (May to December)\nTerrain:\n    most islands have limestone base formed from uplifted coral formation;\n    others have limestone overlying volcanic base\nNatural resources:\n    fish, fertile soil\nLand use:\n    arable land 25%; permanent crops 55%; meadows and pastures 6%; forest and\n    woodland 12%; other 2%\nEnvironment:\n    archipelago of 170 islands (36 inhabited); subject to cyclones (October to\n    April); deforestation\nNote:\n    located about 2,250 km north-northwest of New Zealand, about two-thirds of\n    the way between Hawaii and New Zealand\n\n:Tonga People\n\nPopulation:\n    103,114 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -11 migrants/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 70 years female (1992)\nTotal fertility rate:\n    3.7 children born/woman (1992)\nNationality:\n    noun - Tongan(s); adjective - Tongan\nEthnic divisions:\n    Polynesian; about 300 Europeans\nReligions:\n    Christian; Free Wesleyan Church claims over 30,000 adherents\nLanguages:\n    Tongan, English\nLiteracy:\n    100% (male 100%, female 100%) age 15 and over can read and write a simple\n    message in Tongan or English (1976)\nLabor force:\n    NA; 70% agriculture; 600 engaged in mining\nOrganized labor:\n    none\n\n:Tonga Government\n\nLong-form name:\n    Kingdom of Tonga\nType:\n    hereditary constitutional monarchy\nCapital:\n    Nuku`alofa\nAdministrative divisions:\n    three island groups; Ha`apai, Tongatapu, Vava`u\nIndependence:\n    4 June 1970 (from UK; formerly Friendly Islands)\nConstitution:\n    4 November 1875, revised 1 January 1967\nLegal system:\n    based on English law\nNational holiday:\n    Emancipation Day, 4 June (1970)\nExecutive branch:\n    monarch, prime minister, deputy prime minister, Council of Ministers\n    (cabinet), Privy Council\nLegislative branch:\n    unicameral Legislative Assembly (Fale Alea)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    King Taufa'ahau TUPOU IV (since 16 December 1965)\n  Head of Government:\n    Prime Minister Baron VAEA (since 22 August 1991); Deputy Prime Minister S.\n    Langi KAVALIKU (since 22 August 1991)\nPolitical parties and leaders:\n    Democratic Reform Movement, 'Akilisi POHIVA\nSuffrage:\n    all literate, tax-paying males and all literate females over 21\nElections:\n  Legislative Assembly:\n    last held 14-15 February 1990 (next to be held NA February 1993); results -\n    percent of vote NA; seats - (29 total, 9 elected) 6 proreform, 3\n    traditionalist\nMember of:\n    ACP, AsDB, C, ESCAP, FAO, G-77, IBRD, ICAO, IDA, IFAD, IFC, IMF, INTERPOL,\n    IOC, ITU, LORCS, SPC, SPF, UNCTAD, UNESCO, UNIDO, UPU, WHO\nDiplomatic representation:\n    Ambassador Siosaia a'Ulupekotofa TUITA resides in London\n  US:\n    the US has no offices in Tonga; the Ambassador to Fiji is accredited to\n    Tonga and makes periodic visits\nFlag:\n    red with a bold red cross on a white rectangle in the upper hoist-side\n    corner\n\n:Tonga Economy\n\nOverview:\n    The economy's base is agriculture, which employs about 70% of the labor\n    force and contributes 50% to GDP. Coconuts, bananas, and vanilla beans are\n    the main crops and make up two-thirds of exports. The country must import a\n    high proportion of its food, mainly from New Zealand. The manufacturing\n    sector accounts for only 11% of GDP. Tourism is the primary source of hard\n    currency earnings, but the island remains dependent on sizable external aid\n    and remittances to offset its trade deficit.\nGDP:\n    exchange rate conversion - $92 million, per capita $900; real growth rate\n    2.5% (FY90 est.)\nInflation rate (consumer prices):\n    8.9% (third quarter 1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $30.6 million; expenditures $48.9 million, including capital\n    expenditures of $22.5 million (FY89 est.)\nExports:\n    $9.6 million (f.o.b., FY90 est.)\n  commodities:\n    coconut oil, desiccated coconut, copra, bananas, taro, vanilla beans,\n    fruits, vegetables, fish\n  partners:\n    NZ 35%, Australia 22%, US 13%, Fiji 5% (FY90)\nImports:\n    $59.9 million (c.i.f., FY90 est.)\n  commodities:\n    food products, machinery and transport equipment, manufactures, fuels,\n    chemicals\n  partners:\n    NZ 30%, Australia 23%, US 12%, Japan 7% (FY90)\nExternal debt:\n    $42.0 million (FY89)\nIndustrial production:\n    growth rate 15% (FY86); accounts for 11% of GDP\nElectricity:\n    6,000 kW capacity; 8 million kWh produced, 80 kWh per capita (1990)\nIndustries:\n    tourism, fishing\nAgriculture:\n    dominated by coconut, copra, and banana production; vanilla beans, cocoa,\n    coffee, ginger, black pepper\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $16 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $258 million\nCurrency:\n    pa'anga (plural - pa'anga); 1 pa'anga (T$) = 100 seniti\nExchange rates:\n    pa'anga (T$) per US$1 - 1.2987 (January 1992), 1.2961 (1991), 1.2809 (1990),\n    1.2637 (1989), 1.2799 (1988), 1.4282 (1987)\nFiscal year:\n    1 July-30 June\n\n:Tonga Communications\n\nHighways:\n    198 km sealed road (Tongatapu); 74 km (Vava`u); 94 km unsealed roads usable\n    only in dry weather\nPorts:\n    Nukualofa, Neiafu, Pangai\nMerchant marine:\n    4 ships (1,000 GRT or over) totaling 11,511 GRT/17,816 DWT; includes 2\n    cargo, 1 roll-on/roll-off cargo, 1 liquefied gas\nCivil air:\n    no major transport aircraft\nAirports:\n    6 total, 6 usable; 1 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659; 1 with runways 1,220-2,439 m\nTelecommunications:\n    3,529 telephones; 66,000 radios; no TV sets; broadcast stations - 1 AM, no\n    FM, no TV; 1 Pacific Ocean INTELSAT earth station\n\n:Tonga Defense Forces\n\nBranches:\n    Tonga Defense Force, Tonga Maritime Division, Royal Tongan Marines, Royal\n    Tongan Guard, Police\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Trinidad and Tobago Geography\n\nTotal area:\n    5,130 km2\nLand area:\n    5,130 km2\nComparative area:\n    slightly smaller than Delaware\nLand boundaries:\n    none\nCoastline:\n    362 km\nMaritime claims:\n  Continental shelf:\n    outer edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; rainy season (June to December)\nTerrain:\n    mostly plains with some hills and low mountains\nNatural resources:\n    crude oil, natural gas, asphalt\nLand use:\n    arable land 14%; permanent crops 17%; meadows and pastures 2%; forest and\n    woodland 44%; other 23%; includes irrigated 4%\nEnvironment:\n    outside usual path of hurricanes and other tropical storms\nNote:\n    located 11 km from Venezuela\n\n:Trinidad and Tobago People\n\nPopulation:\n    1,299,301 (July 1992), growth rate 1.1% (1992)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    17 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 73 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Trinidadian(s), Tobagonian(s); adjective - Trinidadian, Tobagonian\nEthnic divisions:\n    black 43%, East Indian 40%, mixed 14%, white 1%, Chinese 1%, other 1%\nReligions:\n    Roman Catholic 32.2%, Hindu 24.3%, Anglican 14.4%, other Protestant 14%,\n    Muslim 6%, none or unknown 9.1%\nLanguages:\n    English (official), Hindi, French, Spanish\nLiteracy:\n    95% (male 97%, female 93%) age 15 and over can read and write (1980)\nLabor force:\n    463,900; construction and utilities 18.1%; manufacturing, mining, and\n    quarrying 14.8%; agriculture 10.9%; other 56.2% (1985 est.)\nOrganized labor:\n    22% of labor force (1988)\n\n:Trinidad and Tobago Government\n\nLong-form name:\n    Republic of Trinidad and Tobago\nType:\n    parliamentary democracy\nCapital:\n    Port-of-Spain\nAdministrative divisions:\n    8 counties, 3 municipalities*, and 1 ward**; Arima*, Caroni, Mayaro, Nariva,\n    Port-of-Spain*, Saint Andrew, Saint David, Saint George, Saint Patrick, San\n    Fernando*, Tobago**, Victoria\nIndependence:\n    31 August 1962 (from UK)\nConstitution:\n    31 August 1976\nLegal system:\n    based on English common law; judicial review of legislative acts in the\n    Supreme Court; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 31 August (1962)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or Senate and a lower house\n    or House of Representatives\nJudicial branch:\n    Court of Appeal, Supreme Court\nLeaders:\n  Chief of State:\n    President Noor Mohammed HASSANALI (since 18 March 1987)\n  Head of Government:\n    Prime Minister Patrick Augustus Mervyn MANNING (since 17 December 1991)\nPolitical parties and leaders:\n    People's National Movement (PNM), Patrick MANNING; United National Congress\n    (UNC), Basdeo PANDAY; National Alliance for Reconstruction (NAR), Carson\n    CHARLES; Movement for Social Transformation (MOTION), David ABDULLAH;\n    National Joint Action Committee (NJAC), Makandal DAAGA\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held 16 December 1991 (next to be held by December 1996);results - PNM\n    32%, UNC 13%, NAR 2%; seats - (36 total) PNM 21, UNC 13, NAR 2\nCommunists:\n    Communist Party of Trinidad and Tobago; Trinidad and Tobago Peace Council,\n    James MILLETTE\nMember of:\n    ACP, C, CARICOM, CCC, CDB, ECLAC, FAO, G-24, G-77, GATT, IADB, IBRD, ICAO,\n    ICFTU, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ISO, ITU,\n    LAES, LORCS, NAM, OAS, OPANAL, UN, UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO,\n    WIPO, WMO\nDiplomatic representation:\n    Ambassador Corinne BAPTISTE; Chancery at 1708 Massachusetts Avenue NW,\n    Washington, DC 20036; telephone (202) 467-6490; Trinidad and Tobago has a\n    Consulate General in New York\n  US:\n    Ambassador Sally GROOMS-COWAL; Embassy at 15 Queen's Park West,\n    Port-of-Spain (mailing address is P. O. Box 752, Port-of-Spain); telephone\n    (809) 622-6372 through 6376, 6176; FAX (809) 628-5462\n\n:Trinidad and Tobago Government\n\nFlag:\n    red with a white-edged black diagonal band from the upper hoist side\n\n:Trinidad and Tobago Economy\n\nOverview:\n    Trinidad and Tobago's petroleum-based economy began to emerge from a lengthy\n    depression in 1990 and 1991. The economy fell sharply through most of the\n    1980s, largely because of the decline in oil prices. This sector accounts\n    for 80% of export earnings and more than 25% of GDP. The government, in\n    response to the oil revenue loss, pursued a series of austerity measures\n    that pushed the unemployment rate as high as 22% in 1988. The economy showed\n    signs of recovery in 1990, however, helped along by rising oil prices.\n    Agriculture employs only about 11% of the labor force and produces about 3%\n    of GDP. Since this sector is small, it has been unable to absorb the large\n    numbers of the unemployed. The government currently seeks to diversify its\n    export base.\nGDP:\n    exchange rate conversion - $4.9 billion, per capita $3,600; real growth rate\n    0.7% (1990)\nInflation rate (consumer prices):\n    11.1% (1990)\nUnemployment rate:\n    21% (1990)\nBudget:\n    revenues $1.5 billion; expenditures $1.7 billion, including capital\n    expenditures of $150 million (1991 est.)\nExports:\n    $2.0 billion (f.o.b., 1990)\n  commodities:\n    includes reexports - petroleum and petroleum products 82%, steel products\n    9%, fertilizer, sugar, cocoa, coffee, citrus (1988)\n  partners:\n    US 54%, CARICOM 16%, EC 10%, Latin America 3% (1989)\nImports:\n    $1.2 billion (c.i.f., 1990)\n  commodities:\n    raw materials and intermediate goods 47%, capital goods 26%, consumer goods\n    26% (1988)\n  partners:\n    US 41%, Latin America 10%, UK 8%, Canada 5%, CARICOM 6% (1989)\nExternal debt:\n    $2.5 billion (1990)\nIndustrial production:\n    growth rate 2.3%, excluding oil refining (1986); accounts for 40% of GDP,\n    including petroleum\nElectricity:\n    1,176,000 kW capacity; 3,480 million kWh produced, 2,708 kWh per capita\n    (1991)\nIndustries:\n    petroleum, chemicals, tourism, food processing, cement, beverage, cotton\n    textiles\nAgriculture:\n    highly subsidized sector; major crops - cocoa and sugarcane; sugarcane\n    acreage is being shifted into rice, citrus, coffee, vegetables; poultry\n    sector most important source of animal protein; must import large share of\n    food needs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $373 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $518 million\nCurrency:\n    Trinidad and Tobago dollar (plural - dollars); 1 Trinidad and Tobago dollar\n    (TT$) = 100 cents\n\n:Trinidad and Tobago Economy\n\nExchange rates:\n    Trinidad and Tobago dollars (TT$) per US$1 - 4.2500 (March 1992), 4.2500\n    (1991), 4.2500 (1990), 4.2500 (1989), 3.8438 (1988), 3.6000 (1987)\nFiscal year:\n    calendar year\n\n:Trinidad and Tobago Communications\n\nRailroads:\n    minimal agricultural railroad system near San Fernando\nHighways:\n    8,000 km total; 4,000 km paved, 1,000 km improved earth, 3,000 km unimproved\n    earth\nPipelines:\n    crude oil 1,032 km, petroleum products 19 km, natural gas 904 km\nPorts:\n    Port-of-Spain, Point Lisas, Pointe-a-Pierre\nCivil air:\n    14 major transport aircraft\nAirports:\n    6 total, 5 usable; 2 with permanent-surface runways; none with runways over\n    3,659 m; 2 with runways 2,440-3,659 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    excellent international service via tropospheric scatter links to Barbados\n    and Guyana; good local service; 109,000 telephones; broadcast stations - 2\n    AM, 4 FM, 5 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Trinidad and Tobago Defense Forces\n\nBranches:\n    Trinidad and Tobago Defense Force (Army), Coast Guard, Air Wing, Trinidad\n    and Tobago Police Service\nManpower availability:\n    males 15-49, 344,990; 248,912 fit for military service\nDefense expenditures:\n    exchange rate conversion - $59 million, 1-2% of GDP (1989 est.)\n\n:Tromelin Island Geography\n\nTotal area:\n    1 km2\nLand area:\n    1 km2\nComparative area:\n    about 1.7 times the size of The Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    3.7 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by Madagascar, Mauritius, and Seychelles\nClimate:\n    tropical\nTerrain:\n    sandy\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other - scattered bushes 100%\nEnvironment:\n    wildlife sanctuary\nNote:\n    located 350 km east of Madagascar and 600 km north of Reunion in the Indian\n    Ocean; climatologically important location for forecasting cyclones\n\n:Tromelin Island People\n\nPopulation:\n    uninhabited\n\n:Tromelin Island Government\n\nLong-form name:\n    none\nType:\n    French possession administered by Commissioner of the Republic Jacques\n    DEWATRE (since NA July 1991), resident in Reunion\nCapital:\n    none; administered by France from Reunion\n\n:Tromelin Island Economy\n\nOverview:\n    no economic activity\n\n:Tromelin Island Communications\n\nPorts:\n    none; offshore anchorage only\nAirports:\n    1 with runway less than 1,220 m\nTelecommunications:\n    important meteorological station\n\n:Tromelin Island Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:Tunisia Geography\n\nTotal area:\n    163,610 km2\nLand area:\n    155,360 km2\nComparative area:\n    slightly larger than Georgia\nLand boundaries:\n    1,424 km total; Algeria 965 km, Libya 459 km\nCoastline:\n    1,148 km\nMaritime claims:\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary dispute with Libya; land boundary disputes with Algeria\n    under discussion\nClimate:\n    temperate in north with mild, rainy winters and hot, dry summers; desert in\n    south\nTerrain:\n    mountains in north; hot, dry central plain; semiarid south merges into the\n    Sahara\nNatural resources:\n    crude oil, phosphates, iron ore, lead, zinc, salt\nLand use:\n    arable land 20%; permanent crops 10%; meadows and pastures 19%; forest and\n    woodland 4%; other 47%; includes irrigated 1%\nEnvironment:\n    deforestation; overgrazing; soil erosion; desertification\nNote:\n    strategic location in central Mediterranean; only 144 km from Italy across\n    the Strait of Sicily; borders Libya on east\n\n:Tunisia People\n\nPopulation:\n    8,445,656 (July 1992), growth rate 2.0% (1992)\nBirth rate:\n    25 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    38 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 74 years female (1992)\nTotal fertility rate:\n    3.2 children born/woman (1992)\nNationality:\n    noun - Tunisian(s); adjective - Tunisian\nEthnic divisions:\n    Arab-Berber 98%, European 1%, Jewish less than 1%\nReligions:\n    Muslim 98%, Christian 1%, Jewish less than 1%\nLanguages:\n    Arabic (official); Arabic and French (commerce)\nLiteracy:\n    65% (male 74%, female 56%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,250,000; agriculture 32%; shortage of skilled labor\nOrganized labor:\n    about 360,000 members claimed, roughly 20% of labor force; General Union of\n    Tunisian Workers (UGTT), quasi-independent of Constitutional Democratic\n    Party\n\n:Tunisia Government\n\nLong-form name:\n    Republic of Tunisia; note - may be changed to Tunisian Republic\nType:\n    republic\nCapital:\n    Tunis\nAdministrative divisions:\n    23 governorates; Beja, Ben Arous, Bizerte, Gabes, Gafsa, Jendouba, Kairouan,\n    Kasserine, Kebili, L'Ariana, Le Kef, Mahdia, Medenine, Monastir, Nabeul,\n    Sfax, Sidi Bou Zid, Siliana, Sousse, Tataouine, Tozeur, Tunis, Zaghouan\nIndependence:\n    20 March 1956 (from France)\nConstitution:\n    1 June 1959\nLegal system:\n    based on French civil law system and Islamic law; some judicial review of\n    legislative acts in the Supreme Court in joint session\nNational holiday:\n    National Day, 20 March (1956)\nExecutive branch:\n    president, prime minister, Cabinet\nLegislative branch:\n    unicameral Chamber of Deputies (Majlis al-Nuwaab)\nJudicial branch:\n    Court of Cassation (Cour de Cassation)\nLeaders:\n  Chief of State:\n    President Gen. Zine el Abidine BEN ALI (since 7 November 1987)\n  Head of Government:\n    Prime Minister Hamed KAROUI (since 26 September 1989)\nPolitical parties and leaders:\n    Constitutional Democratic Rally Party (RCD), President BEN ALI (official\n    ruling party); Movement of Democratic Socialists (MDS), Mohammed MOUAADA;\n    five other political parties are legal, including the Communist Party\nSuffrage:\n    universal at age 20\nElections:\n  President:\n    last held 2 April 1989 (next to be held NA April 1994); results - Gen. Zine\n    el Abidine BEN ALI was reelected without opposition\n  Chamber of Deputies:\n    last held 2 April 1989 (next to be held NA April 1994); results - RCD 80.7%,\n    independents/Islamists 13.7%, MDS 3.2%, other 2.4%; seats - (141 total) RCD\n    141\nMember of:\n    ABEDA, ACCT, AfDB, AFESD, AL, AMF, AMU, CCC, ECA, FAO, G-77, GATT, IAEA,\n    IBRD, ICAO, ICC, ICFTU, IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT,\n    INTELSAT, INTERPOL, IOC, ISO, ITU, LORCS, NAM, OAU, OIC, UN, UNCTAD, UNESCO,\n    UNHCR, UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Ismail KHELIL; Chancery at 1515 Massachusetts Avenue NW,\n    Washington DC 20005; telephone (202) 862-1850\n  US:\n    Ambassador John T. McCARTHY; Embassy at 144 Avenue de la Liberte, 1002\n    Tunis-Belvedere; telephone [216] (1) 782-566; FAX [216] (1) 789-719\nFlag:\n    red with a white disk in the center bearing a red crescent nearly encircling\n    a red five-pointed star; the crescent and star are traditional symbols of\n    Islam\n\n:Tunisia Economy\n\nOverview:\n    The economy depends primarily on petroleum, phosphates, tourism, and exports\n    of light manufactures. Following two years of drought-induced economic\n    decline, the economy made a strong recovery in 1990 as a result of a\n    bountiful harvest, continued export growth, and higher domestic investment.\n    Continued high inflation and unemployment have eroded popular support for\n    the government, however, and forced Tunis to slow the pace of economic\n    reform. Nonetheless, the government appears committed to implementing its\n    IMF-supported structural adjustment program and to servicing its foreign\n    debt.\nGDP:\n    exchange rate conversion - $10.9 billion, per capita $1,320; real growth\n    rate 3.5% (1991)\nInflation rate (consumer prices):\n    8.2% (1991)\nUnemployment rate:\n    15% (1991)\nBudget:\n    revenues $3.8 billion; expenditures $5.4 billion, including capital\n    expenditures of $970 million (1992 est.)\nExports:\n    $3.7 billion (f.o.b., 1991)\n  commodities:\n    hydrocarbons, agricultural products, phosphates and chemicals\n  partners:\n    EC 74%, Middle East 11%, US 2%, Turkey, USSR\nImports:\n    $4.9 billion (f.o.b., 1991)\n  commodities:\n    industrial goods and equipment 57%, hydrocarbons 13%, food 12%, consumer\n    goods\n  partners:\n    EC 67%, US 6%, Canada, Japan, Switzerland, Turkey, Algeria\nExternal debt:\n    $8.6 billion (1991)\nIndustrial production:\n    growth rate 5% (1989); accounts for about 25% of GDP, including petroleum\nElectricity:\n    1,493,000 kW capacity; 4,210 million kWh produced, 530 kWh per capita (1989)\nIndustries:\n    petroleum, mining (particularly phosphate and iron ore), tourism, textiles,\n    footwear, food, beverages\nAgriculture:\n    accounts for 16% of GDP and one-third of labor force; output subject to\n    severe fluctuations because of frequent droughts; export crops - olives,\n    dates, oranges, almonds; other products - grain, sugar beets, wine grapes,\n    poultry, beef, dairy; not self-sufficient in food; fish catch of 99,200\n    metric tons (1987)\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $730 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $5.2 billion; OPEC\n    bilateral aid (1979-89), $684 million; Communist countries (1970-89), $410\n    million\nCurrency:\n    Tunisian dinar (plural - dinars); 1 Tunisian dinar (TD) = 1,000 millimes\nExchange rates:\n    Tunisian dinars (TD) per US$1 - 0.9272 (March 1992), 0.9246 (1991), 0.8783\n    (1990), 0.9493 (1989), 0.8578 (1988), 0.8287 (1987)\n\n:Tunisia Economy\n\nFiscal year:\n    calendar year\n\n:Tunisia Communications\n\nRailroads:\n    2,115 km total; 465 km 1.435-meter (standard) gauge; 1,650 km 1.000-meter\n    gauge\nHighways:\n    17,700 km total; 9,100 km bituminous; 8,600 km improved and unimproved earth\nPipelines:\n    crude oil 797 km, petroleum products 86 km, natural gas 742 km\nPorts:\n    Bizerte, Gabes, Sfax, Sousse, Tunis, La Goulette, Zarzis\nMerchant marine:\n    21 ships (1,000 GRT or over) totaling 160,069 GRT/218,791 DWT; includes 1\n    short-sea passenger, 4 cargo, 2 roll-on/roll-off cargo, 2 petroleum tanker,\n    6 chemical tanker, 1 liquefied gas, 5 bulk\nCivil air:\n    19 major transport aircraft\nAirports:\n    29 total, 26 usable; 13 with permanent-surface runways; none with runways\n    over 3,659 m; 7 with runways 2,440-3,659 m; 7 with runways 1,220-2,439 m\nTelecommunications:\n    the system is above the African average; facilities consist of open-wire\n    lines, coaxial cable, and radio relay; key centers are Sfax, Sousse,\n    Bizerte, and Tunis; 233,000 telephones; broadcast stations - 7 AM, 8 FM, 19\n    TV; 5 submarine cables; satellite earth stations - 1 Atlantic Ocean INTELSAT\n    and 1 ARABSAT with back-up control station; coaxial cable to Algeria and\n    Libya; radio relay to Algeria, and Libya\n\n:Tunisia Defense Forces\n\nBranches:\n    Army, Navy, Air Force, paramilitary forces, National Guard\nManpower availability:\n    males 15-49, 2,117,864; 1,217,819 fit for military service; 88,619 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $520 million, 5% of GDP (1992 budget)\n\n:Turkey Geography\n\nTotal area:\n    780,580 km2\nLand area:\n    770,760 km2\nComparative area:\n    slightly larger than Texas\nLand boundaries:\n    2,627 km total; Armenia 268 km, Azerbaijan 9 km, Bulgaria 240 km, Georgia\n    252 km, Greece 206 km, Iran 499 km, Iraq 331 km, Syria 822 km\nCoastline:\n    7,200 km\nMaritime claims:\n  Exclusive economic zone:\n    in Black Sea only - to the maritime boundary agreed upon with the former\n    USSR\n  Territorial sea:\n    6 nm in the Aegean Sea, 12 nm in Black Sea and Mediterranean Sea\nDisputes:\n    complex maritime and air (but not territorial) disputes with Greece in\n    Aegean Sea; Cyprus question; Hatay question with Syria; ongoing dispute with\n    downstream riparians (Syria and Iraq) over water development plans for the\n    Tigris and Euphrates Rivers\nClimate:\n    temperate; hot, dry summers with mild, wet winters; harsher in interior\nTerrain:\n    mostly mountains; narrow coastal plain; high central plateau (Anatolia)\nNatural resources:\n    antimony, coal, chromium, mercury, copper, borate, sulphur, iron ore\nLand use:\n    arable land 30%; permanent crops 4%; meadows and pastures 12%; forest and\n    woodland 26%; other 28%; includes irrigated 3%\nEnvironment:\n    subject to severe earthquakes, especially along major river valleys in west;\n    air pollution; desertification\nNote:\n    strategic location controlling the Turkish straits (Bosporus, Sea of\n    Marmara, Dardanelles) that link Black and Aegean Seas\n\n:Turkey People\n\nPopulation:\n    59,640,143 (July 1992), growth rate 2.1% (1992)\nBirth rate:\n    27 births/1,000 populatition (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    55 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 72 years female (1992)\nTotal fertility rate:\n    3.4 children born/woman (1992)\nNationality:\n    noun - Turk(s); adjective - Turkish\nEthnic divisions:\n    Turkish 80%, Kurdish 17%, other 3% (est.)\nReligions:\n    Muslim (mostly Sunni) 99.8%, other (Christian and Jews) 0.2%\nLanguages:\n    Turkish (official), Kurdish, Arabic\nLiteracy:\n    81% (male 90%, female 71%) age 15 and over can read and write (1990 est.)\nLabor force:\n    20,700,000; agriculture 49%, services 30%, industry 15%; about 1,500,000\n    Turks work abroad (1989)\nOrganized labor:\n    10% of labor force\n\n:Turkey Government\n\nLong-form name:\n    Republic of Turkey\nType:\n    republican parliamentary democracy\nCapital:\n    Ankara\nAdministrative divisions:\n    73 provinces (iller, singular - il); Adana, Adiyaman, Afyon, Agri, Aksaray,\n    Amasya, Ankara, Antalya, Artvin, Aydin, Balikesir, Batman, Bayburt, Bilecik,\n    Bingol, Bitlis, Bolu, Burdur, Bursa, Canakkale, Cankiri, Corum, Denizli,\n    Diyarbakir, Edirne, Elazig, Erzincan, Erzurum, Eskisehir, Gaziantep,\n    Giresun, Gumushane, Hakkari, Hatay, Icel, Isparta, Istanbul, Izmir, Kahraman\n    Maras, Karaman, Kars, Kastamonu, Kayseri, Kirikkale, Kirklareli, Kirsehir,\n    Kocaeli, Konya, Kutahya, Malatya, Manisa, Mardin, Mugla, Mus, Nevsehir,\n    Nigde, Ordu, Rize, Sakarya, Samsun, Siirt, Sinop, Sirnak, Sivas, Tekirdag,\n    Tokat, Trabzon, Tunceli, Urfa, Usak, Van, Yozgat, Zonguldak\nIndependence:\n    29 October 1923 (successor state to the Ottoman Empire)\nConstitution:\n    7 November 1982\nLegal system:\n    derived from various continental legal systems; accepts compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Anniversary of the Declaration of the Republic, 29 October (1923)\nExecutive branch:\n    president, Presidential Council, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    unicameral Grand National Assembly (Buyuk Millet Meclisi)\nJudicial branch:\n    Court of Cassation\nLeaders:\n  Chief of State:\n    President Turgut OZAL (since 9 November 1989)\n  Head of Government:\n    Prime Minister Suleyman DEMIREL (since 30 November 1991); Deputy Prime\n    Minister Erdal INONU (since 30 November 1991)\nPolitical parties and leaders:\n    Correct Way Party (DYP), Suleyman DEMIREL; Motherland Party (ANAP), Mesut\n    YILMAZ; Social Democratic Populist Party (SHP), Erdal INONU; Refah Party\n    (RP), Necmettin ERBAKAN; Democratic Left Party (DSP), Bulent ECEVIT;\n    Nationalist Labor Party (MCP), Alpaslan TURKES; People's Labor Party (HEP),\n    Feridun YAZAR; Socialist Unity Party (SBP), leader NA; Great Anatolia Party\n    (BAP), leader NA; Democratic Center Party (DSP), Bedrettin DALAN; Grand\n    National Party (GNP), leader NA\nSuffrage:\n    universal at age 21\nElections:\n  Grand National Assembly:\n    last held 20 October 1991 (next to be held NA October 1996); results - DYP\n    27.03%, ANAP 24.01%, SHP 20.75%, RP 16.88%, DSP 10.75%, SBP 0.44%,\n    independent 0.14%; seats - (450 total) DYP 178, ANAP 115, SHP 86, RP 40, MCP\n    19, DSP 7, other 5\n\n:Turkey Government\n\nMember of:\n    AsDB, BIS, CCC, CE, CERN (observer), COCOM, CSCE, EBRD, ECE, FAO, GATT,\n    IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IDB, IEA, IFAD, IFC, ILO, IMF, IMO,\n    INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU, LORCS, NATO, NEA, OECD,\n    OIC, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UNIIMOG, UNRWA, UPU, WHO, WIPO,\n    WMO, WTO\nDiplomatic representation:\n    Ambassador Nuzhet KANDEMIR; Chancery at 1606 23rd Street NW, Washington, DC;\n    20008; telephone (202) 387-3200; there are Turkish Consulates General in\n    Chicago, Houston, Los Angeles, and New York\n  US:\n    Ambassador Richard C. BARKLEY; Embassy at 110 Ataturk Boulevard, Ankara\n    (mailing address is PSC 88, Box 5000, Ankara, or APO AE 09823); telephone\n    [90] (4) 126 54 70; FAX [90] (4) 167-0057; there are US Consulates General\n    in Istanbul and Izmir, and a Consulate in Adana\nFlag:\n    red with a vertical white crescent (the closed portion is toward the hoist\n    side) and white five-pointed star centered just outside the crescent opening\n\n:Turkey Economy\n\nOverview:\n    The impressive stream of benefits from the economic reforms that Turkey\n    launched in 1980 have begun to peter out. Although real growth in per capita\n    GDP averaged 5% annually between 1983 and 1988, recent economic performance\n    has fallen substantially. Moreover, inflation and interest rates remain\n    high, and a large budget deficit will continue to provide difficulties for a\n    country undergoing a substantial transformation from a centrally controlled\n    to a free market economy. Agriculture remains an important economic sector,\n    employing about half of the work force, accounting for 18% of GDP, and\n    contributing 19% to exports. The government has launched a\n    multibillion-dollar development program in the southeastern region, which\n    includes the building of a dozen dams on the Tigris and Euphrates Rivers to\n    generate electric power and irrigate large tracts of farmland. The planned\n    tapping of huge additional quantities of Euphrates water has raised serious\n    concern in the downstream riparian nations of Syria and Iraq. The Turkish\n    economy emerged from the Gulf War of early 1991 in stronger shape than\n    Ankara had expected. Although the negative effects of the crisis were felt\n    primarily in the politically sensitive southeast, aid pledges by the\n    coalition allies of more than $4 billion have helped offset the burden.\nGDP:\n    purchasing power equivalent - $198 billion, per capita $3,400; real growth\n    rate 1.5% (1991 est.)\nInflation rate (consumer prices):\n    71.1% (1991)\nUnemployment rate:\n    11.1% (1991 est.)\nBudget:\n    revenues $41.9 billion; expenditures $49.7 billion, including capital\n    expenditures of $9.9 billion (1992)\nExports:\n    $13.0 billion (f.o.b., 1990)\n  commodities:\n    industrial products (steel, chemicals) 81%; fruits, vegetables, tobacco and\n    meat products 19%\n  partners:\n    EC countries 49%, US 7%, Iran 5%\nImports:\n    $22.3 billion (c.i.f., 1990)\n  commodities:\n    crude oil, machinery, transport equipment, metals, chemicals,\n    pharmaceuticals, dyes, plastics, rubber, fertilizers, grain\n  partners:\n    EC countries 49%, US 7%, Iran 5%\nExternal debt:\n    $49.0 billion (1990)\nIndustrial production:\n    growth rate 10% (1990 est.); accounts for 29% of GDP\nElectricity:\n    14,400,000 kW capacity; 44,000 million kWh produced, 750 kWh per capita\n    (1991)\nIndustries:\n    textiles, food processing, mining (coal, chromite, copper, boron minerals),\n    steel, petroleum, construction, lumber, paper\nAgriculture:\n    accounts for 18% of GDP and employs about half of working force; products -\n    tobacco, cotton, grain, olives, sugar beets, pulses, citrus fruit, variety\n    of animal products; self-sufficient in food most years\n\n:Turkey Economy\n\nIllicit drugs:\n    one of the world's major suppliers of licit opiate products; government\n    maintains strict controls over areas of opium poppy cultivation and output\n    of poppy straw concentrate\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $2.3 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $10.1 billion; OPEC\n    bilateral aid (1979-89), $665 million; Communist countries (1970-89), $4.5\n    billion; note - aid for Persian Gulf war efforts from coalition allies\n    (1991), $4.1 billion; aid pledged for Turkish Defense Fund, $2.5 billion\nCurrency:\n    Turkish lira (plural - liras); 1 Turkish lira (TL) = 100 kurus\nExchange rates:\n    Turkish liras (TL) per US$1 - 6,098.4 (March 1992), 4,171.8 (1991), 2,608.6\n    (1990), 2,121.7 (1989), 1,422.3 (1988), 857.2 (1987)\nFiscal year:\n    calendar year\n\n:Turkey Communications\n\nRailroads:\n    8,401 km 1.435-meter gauge; 479 km electrified\nHighways:\n    49,615 km total; 26,915 km paved; 16,500 km gravel or crushed stone; 4,000\n    km improved earth; 2,200 km unimproved earth (1985)\nInland waterways:\n    about 1,200 km\nPipelines:\n    crude oil 1,738 km, petroleum products 2,321 km, natural gas 708 km\nPorts:\n    Iskenderun, Istanbul, Mersin, Izmir\nMerchant marine:\n    353 ships (1,000 GRT or over) totaling 4,056,455 GRT/7,143,096 DWT; includes\n    7 short-sea passenger, 1 passenger-cargo, 191 cargo, 1 container, 5\n    roll-on/roll-off cargo, 3 refrigerated cargo, 1 livestock carrier, 37\n    petroleum tanker, 9 chemical tanker, 3 liquefied gas, 10 combination\n    ore/oil, 1 specialized tanker, 80 bulk, 4 combination bulk\nCivil air:\n    52 major transport aircraft (1991)\nAirports:\n    109 total, 104 usable; 65 with permanent-surface runways; 3 with runways\n    over 3,659 m; 30 with runways 2,440-3,659 m; 27 with runways 1,220-2,439 m\nTelecommunications:\n    fair domestic and international systems; trunk radio relay network; limited\n    open wire network; 3,400,000 telephones; broadcast stations - 15 AM; 94 FM;\n    357 TV; 1 satellite ground station operating in the INTELSAT (2 Atlantic\n    Ocean) and EUTELSAT systems; 1 submarine cable\n\n:Turkey Defense Forces\n\nBranches:\n    Land Forces, Navy (including Naval Air and Naval Infantry), Air Force, Coast\n    Guard, Gendarmerie\nManpower availability:\n    males 15-49, 15,274,591; 9,330,851 fit for military service; 597,814 reach\n    military age (20) annually\nDefense expenditures:\n    exchange rate conversion - $5.2 billion, 3-4% of GDP (1992 budget)\n\n:Turkmenistan Geography\n\nTotal area:\n    488,100 km2\nLand area:\n    488,100 km2\nComparative area:\n    slightly larger than California\nLand boundaries:\n    3,736 km total; Afghanistan 744 km, Iran 992 km, Kazakhstan 379 km,\n    Uzbekistan 1,621 km\nCoastline:\n    0 km\n  note:\n    Turkmenistan does border the Caspian Sea (1,768 km)\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    subtropical desert\nTerrain:\n    flat-to-rolling sandy desert with dunes; borders Caspian Sea in west\nNatural resources:\n    petroleum, natural gas, coal, sulphur, salt, magnesium\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    NA\nNote:\n    landlocked\n\n:Turkmenistan People\n\nPopulation:\n    3,838,108 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    36 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    94 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    59 years male, 66 years female (1992)\nTotal fertility rate:\n    4.5 children born/woman (1992)\nNationality:\n    noun - Turkmen(s); adjective - Turkmen\nEthnic divisions:\n    Turkmen 72%, Russian 9%, Uzbek 9%, other 10%\nReligions:\n    Islam 85%, Eastern Orthodox 10%, unknown 5%\nLanguages:\n    Turkmen 72%, Russian 12%, Uzbek 9%, other 7%\nLiteracy:\n    NA% (male NA%, female NA) age 15 and over can read and write\nLabor force:\n    1,542,000; agriculture and forestry 42%, industry and construction 21%,\n    other 37% (1990)\nOrganized labor:\n    NA\n\n:Turkmenistan Government\n\nLong-form name:\n    none\nType:\n    republic\nCapital:\n    Ashgabat (Ashkhabad)\nAdministrative divisions:\n    4 oblasts (oblastey, singular - oblast'); Balkan (Nebit-Dag), Chardzhou,\n    Mary, Tashauz; note - the rayons around Ashgabat are under direct republic\n    jurisdiction; all oblasts have the same name as their administrative center\n    except Balkan Oblast, centered at Nebit-Dag\nIndependence:\n    27 October 1991 (from the Soviet Union; formerly Turkmen Soviet Socialist\n    Republic)\nConstitution:\n    adopted 18 May 1992\nLegal system:\n    NA\nNational holiday:\n    Independence Day, 27 October (1991)\nExecutive branch:\n    president, prime minister, two deputy prime ministers, Council of Ministers\nLegislative branch:\n    Majlis\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Saparmurad NIYAZOV (since 21 June 1992)\n  Head of Government:\n    Prime Minister (vacant), Deputy Prime Ministers V. G. OCHERTSOV and Atta\n    CHARYYEV (since NA 1991)\nPolitical parties and leaders:\n    Democratic Party (formerly Communist), Saparmurad NIYAZOV, chairman\n  opposition:\n    Democratic Party, Durdymorad KHODZHA Mukhammed, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 21 June 1992 (next to be held NA June 1997); results - Saparmurad\n    NIYAZOV 99.5% (ran unopposed)\n  Majlis:\n    last held 7 January 1990 (next to be held NA 1995); results - percent of\n    vote by party NA; seats - (175 total) elections not officially by party, but\n    Communist Party members won nearly 90% of seats\nCommunists:\n    renamed Democratic Party, 16 December 1990\nOther political or pressure groups:\n    Agzybirlik (Unity) Movement\nMember of:\n    CIS, CSCE, IBRD, IMF, NACC, UN, UNCTAD\nDiplomatic representation:\n    NA\n  US:\n    Ambassador-designate Joseph HULINGS; Embassy at Yubilenaya Hotel, Ashgabat\n    (Ashkhabad) (mailing address is APO; AE 09862); telephone [8] (011)\n    7-3630-24-49-08\n\n:Turkmenistan Government\n\nFlag:\n    green field with five claret carpet gels (that is, a repeated carpet\n    pattern) on the hoist side; a white crescent and five white stars in the\n    upper left corner to the right of the carpet gels\n\n:Turkmenistan Economy\n\nOverview:\n    Like the other 15 former Soviet republics, Turkmenistan faces enormous\n    problems of economic adjustment - to move away from Moscow-based central\n    planning toward a system of decisionmaking by private enterpreneurs, local\n    government authorities, and, hopefully, foreign investors. This process\n    requires wholesale changes in supply sources, markets, property rights, and\n    monetary arrangements. Industry - with 10% of the labor force - is heavily\n    weighted toward the energy sector, which produced 11% of the ex-USSR's gas\n    and 1% of its oil. Turkmenistan ranked second among the former Soviet\n    republics in cotton production, mainly in the irrigated western region,\n    where the huge Karakumskiy Canal taps the Amu Darya.\nGDP:\n    purchasing power equivalent - NA, per capita $NA; real growth rate -0.6%\n    (1991 est.)\nInflation rate (consumer prices):\n    85% (1991)\nUnemployment rate:\n    20-25% (1991 est.)\nBudget:\n    NA\nExports:\n    $239 million (1990)\n  commodities:\n    natural gas, oil, chemicals, cotton, textiles, carpets\n  partners:\n    Russia, Ukraine, Uzbekistan\nImports:\n    $970 million (1990)\n  commodities:\n    machinery and parts, plastics and rubber, consumer durables, textiles\n  partners:\n    NA\nExternal debt:\n    $650 million (end of 1991 est.)\nIndustrial production:\n    growth rate 4.1% (1991)\nElectricity:\n    3,170,000 kW capacity; 14,900 million kWh produced, 4,114 kWh per capita\n    (1990)\nIndustries:\n    oil and gas, petrochemicals, fertilizers, food processing, textiles\nAgriculture:\n    cotton, fruits, vegetables\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    NA\nCurrency:\n    As of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Turkmenistan Communications\n\nRailroads:\n    2,120 km all 1.520-meter gauge\nHighways:\n    23,000 km total (1990); 18,300 km hard surfaced, 4,700 km earth\nInland waterways:\n    NA km\nPipelines:\n    NA\nPorts:\n    inland - Krasnovodsk\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    poorly developed; telephone density NA; linked by landline or microwave to\n    other CIS member states and Iran, and by leased connections via the Moscow\n    international gateway switch to other countries; satellite earth stations -\n    Orbita and INTELSAT (TV receive only)\n\n:Turkmenistan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Air and Air Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Turks and Caicos Islands Geography\n\nTotal area:\n    430 km2\nLand area:\n    430 km2\nComparative area:\n    slightly less than 2.5 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    389 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; marine; moderated by trade winds; sunny and relatively dry\nTerrain:\n    low, flat limestone; extensive marshes and mangrove swamps\nNatural resources:\n    spiny lobster, conch\nLand use:\n    arable land 2%; permanent crops 0%; meadows and pastures; 0%; forest and\n    woodland 0%; other 98%\nEnvironment:\n    30 islands (eight inhabited); subject to frequent hurricanes\nNote:\n    located 190 km north of the Dominican Republic in the North Atlantic Ocean\n\n:Turks and Caicos Islands People\n\nPopulation:\n    12,697 (July 1992), growth rate 3.3% (1992)\nBirth rate:\n    16 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    22 migrants/1,000 population (1992)\nInfant mortality rate:\n    13 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 77 years female (1992)\nTotal fertility rate:\n    2.3 children born/woman (1992)\nNationality:\n    no noun or adjectival forms\nEthnic divisions:\n    majority of African descent\nReligions:\n    Baptist 41.2%, Methodist 18.9%, Anglican 18.3%, Seventh-Day Adventist 1.7%,\n    other 19.9% (1980)\nLanguages:\n    English (official)\nLiteracy:\n    98% (male 99%, female 98%) age 15 and over having ever attended school\n    (1970)\nLabor force:\n    NA; majority engaged in fishing and tourist industries; some subsistence\n    agriculture\nOrganized labor:\n    Saint George's Industrial Trade Union\n\n:Turks and Caicos Islands Government\n\nLong-form name:\n    none\nType:\n    dependent territory of the UK\nCapital:\n    Grand Turk (Cockburn Town)\nAdministrative divisions:\n    none (dependent territory of the UK)\nIndependence:\n    none (dependent territory of the UK)\nConstitution:\n    introduced 30 August 1976, suspended in 1986, and a Constitutional\n    Commission is currently reviewing its contents\nLegal system:\n    based on laws of England and Wales with a small number adopted from Jamaica\n    and The Bahamas\nNational holiday:\n    Constitution Day, 30 August (1976)\nExecutive branch:\n    British monarch, governor, Executive Council, chief minister\nLegislative branch:\n    unicameral Legislative Council\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1953), represented by Governor Michael\n    J. BRADLEY (since 1987)\n  Head of Government:\n    Chief Minister Washington MISSIC (since NA 1991)\nPolitical parties and leaders:\n    People's Democratic Movement (PDM), Oswald SKIPPINGS; Progressive National\n    Party (PNP), Washington MISSIC; National Democratic Alliance (NDA), Ariel\n    MISSICK\nSuffrage:\n    universal at age 18\nElections:\n  Legislative Council:\n    last held on 3 April 1991 (next to be held NA); results - percent of vote by\n    party NA; seats - (20 total, 13 elected) PNP 8, PDM 5\nMember of:\n    CDB\nDiplomatic representation:\n    as a dependent territory of the UK, the interests of the Turks and Caicos\n    Islands are represented in the US by the UK\n  US:\n    none\nFlag:\n    blue with the flag of the UK in the upper hoist-side quadrant and the\n    colonial shield centered on the outer half of the flag; the shield is yellow\n    and contains a conch shell, lobster, and cactus\n\n:Turks and Caicos Islands Economy\n\nOverview:\n    The economy is based on fishing, tourism, and offshore banking. Only\n    subsistence farming - corn and beans - exists on the Caicos Islands, so that\n    most foods, as well as nonfood products, must be imported.\nGDP:\n    purchasing power equivalent - $44.9 million, per capita $5,000; real growth\n    rate NA% (1986)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    12% (1989)\nBudget:\n    revenues $12.4 million; expenditures $15.8 million, including capital\n    expenditures of $2.6 million (FY87)\nExports:\n    $2.9 million (f.o.b., FY84)\n  commodities:\n    lobster, dried and fresh conch, conch shells\n  partners:\n    US, UK\nImports:\n    $26.3 million (c.i.f., FY84)\n  commodities:\n    foodstuffs, drink, tobacco, clothing\n  partners:\n    US, UK\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    9,050 kW capacity; 11.1 million kWh produced, 1,140 kWh per capita (1990)\nIndustries:\n    fishing, tourism, offshore financial services\nAgriculture:\n    subsistence farming prevails, based on corn and beans; fishing more\n    important than farming; not self-sufficient in food\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $110 million\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    calendar year\n\n:Turks and Caicos Islands Communications\n\nHighways:\n    121 km, including 24 km tarmac\nPorts:\n    Grand Turk, Salt Cay, Providenciales, Cockburn Harbour\nCivil air:\n    Air Turks and Caicos (passenger service) and Turks Air Ltd. (cargo service)\nAirports:\n    7 total, 7 usable; 4 with permanent-surface runways; none with runways over\n    2,439 m; 4 with runways 1,220-2,439 m\nTelecommunications:\n    fair cable and radio services; 1,446 telephones; broadcast stations - 3 AM,\n    no FM, several TV; 2 submarine cables; 1 Atlantic Ocean INTELSAT earth\n    station\n\n:Turks and Caicos Islands Defense Forces\n\nNote:\n    defense is the responsibility of the UK\n\n:Tuvalu Geography\n\nTotal area:\n    26 km2\nLand area:\n    26 km2\nComparative area:\n    about 0.1 times the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    24 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by easterly trade winds (March to November); westerly\n    gales and heavy rain (November to March)\nTerrain:\n    very low-lying and narrow coral atolls\nNatural resources:\n    fish\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    severe tropical storms are rare\nNote:\n    located 3,000 km east of Papua New Guinea in the South Pacific Ocean\n\n:Tuvalu People\n\nPopulation:\n    9,494 (July 1992), growth rate 1.8% (1992)\nBirth rate:\n    28 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    34 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    61 years male, 64 years female (1992)\nTotal fertility rate:\n    3.1 children born/woman (1992)\nNationality:\n    noun - Tuvaluans(s); adjective - Tuvaluan\nEthnic divisions:\n    96% Polynesian\nReligions:\n    Church of Tuvalu (Congregationalist) 97%, Seventh-Day Adventist 1.4%, Baha'i\n    1%, other 0.6%\nLanguages:\n    Tuvaluan, English\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA\nOrganized labor:\n    none\n\n:Tuvalu Government\n\nLong-form name:\n    none\nType:\n    democracy\nCapital:\n    Funafuti\nAdministrative divisions:\n    none\nIndependence:\n    1 October 1978 (from UK; formerly Ellice Islands)\nConstitution:\n    1 October 1978\nNational holiday:\n    Independence Day, 1 October (1978)\nExecutive branch:\n    British monarch, governor general, prime minister, deputy prime minister,\n    Cabinet\nLegislative branch:\n    unicameral Parliament (Palamene)\nJudicial branch:\n    High Court\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952), represented by Governor General\n    Tupua LEUPENA (since 1 March 1986)\n  Head of Government:\n    Prime Minister Bikenibeu PAENIU (since 16 October 1989); Deputy Prime\n    Minister Dr. Alesana SELUKA (since October 1989)\nPolitical parties and leaders:\n    none\nSuffrage:\n    universal at age 18\nElections:\n  Parliament:\n    last held 28 September 1989 (next to be held by NA September 1993); results\n    - percent of vote NA; seats - (12 total)\nMember of:\n    ACP, C (special), ESCAP, SPC, SPF, UPU\nDiplomatic representation:\n    Ambassador (vacant)\n  US:\n    none\nFlag:\n    light blue with the flag of the UK in the upper hoist-side quadrant; the\n    outer half of the flag represents a map of the country with nine yellow\n    five-pointed stars symbolizing the nine islands\n\n:Tuvalu Economy\n\nOverview:\n    Tuvalu consists of a scattered group of nine coral atolls with poor soil.\n    The country has no known mineral resources and few exports. Subsistence\n    farming and fishing are the primary economic activities. The islands are too\n    small and too remote for development of a tourist industry. Government\n    revenues largely come from the sale of stamps and coins and worker\n    remittances. Substantial income is received annually from an international\n    trust fund established in 1987 by Australia, New Zealand, and the UK and\n    supported also by Japan and South Korea.\nGNP:\n    exchange rate conversion - $4.6 million, per capita $530; real growth rate\n    NA% (1989 est.)\nInflation rate (consumer prices):\n    3.9% (1984)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $4.3 million; expenditures $4.3 million, including capital\n    expenditures of $NA (1989)\nExports:\n    $1.0 million (f.o.b., 1983 est.)\n  commodities:\n    copra\n  partners:\n    Fiji, Australia, NZ\nImports:\n    $2.8 million (c.i.f., 1983 est.)\n  commodities:\n    food, animals, mineral fuels, machinery, manufactured goods\n  partners:\n    Fiji, Australia, NZ\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA\nElectricity:\n    2,600 kW capacity; 3 million kWh produced, 330 kWh per capita (1990)\nIndustries:\n    fishing, tourism, copra\nAgriculture:\n    coconuts, copra\nEconomic aid:\n    US commitments, including Ex-Im (FY70-87), $1 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $101 million\nCurrency:\n    Tuvaluan dollar and Australian dollar (plural - dollars); 1 Tuvaluan dollar\n    ($T) or 1 Australian dollar ($A) = 100 cents\nExchange rates:\n    Tuvaluan dollars ($T) or Australian dollars ($A) per US$1 - 1.3117 (March\n    1992), 1.2835 (1991), 1.2799 (1990), 1.2618 (1989), 1.2752 (1988), 1.4267\n    (1987)\nFiscal year:\n    NA\n\n:Tuvalu Communications\n\nHighways:\n    8 km gravel\nPorts:\n    Funafuti, Nukufetau\nMerchant marine:\n    1 passenger-cargo (1,000 GRT or over) totaling 1,043 GRT/450 DWT\nCivil air:\n    no major transport aircraft\nAirports:\n    1 with runway 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 1 AM, no FM, no TV; 300 radiotelephones; 4,000 radios;\n    108 telephones\n\n:Tuvalu Defense Forces\n\nBranches:\n    Police Force\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GNP\n\n:Uganda Geography\n\nTotal area:\n    236,040 km2\nLand area:\n    199,710 km2\nComparative area:\n    slightly smaller than Oregon\nLand boundaries:\n    2,698 km total; Kenya 933 km, Rwanda 169 km, Sudan 435 km, Tanzania 396 km,\n    Zaire 765 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    tropical; generally rainy with two dry seasons (December to February, June\n    to August); semiarid in northeast\nTerrain:\n    mostly plateau with rim of mountains\nNatural resources:\n    copper, cobalt, limestone, salt\nLand use:\n    arable land 23%; permanent crops 9%; meadows and pastures 25%; forest and\n    woodland 30%; other 13%; includes irrigated NEGL%\nEnvironment:\n    straddles Equator; deforestation; overgrazing; soil erosion\nNote:\n    landlocked\n\n:Uganda People\n\nPopulation:\n    19,386,104 (July 1992), growth rate 3.7% (1992)\nBirth rate:\n    51 births/1,000 population (1992)\nDeath rate:\n    14 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    91 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    50 years male, 52 years female (1992)\nTotal fertility rate:\n    7.2 children born/woman (1992)\nNationality:\n    noun - Ugandan(s); adjective - Ugandan\nEthnic divisions:\n    African 99%, European, Asian, Arab 1%\nReligions:\n    Roman Catholic 33%, Protestant 33%, Muslim 16%, rest indigenous beliefs\nLanguages:\n    English (official); Luganda and Swahili widely used; other Bantu and Nilotic\n    languages\nLiteracy:\n    48% (male 62%, female 35%) age 15 and over can read and write (1990 est.)\nLabor force:\n    4,500,000 (est.); 50% of population of working age (1983)\nOrganized labor:\n    125,000 union members\n\n:Uganda Government\n\nLong-form name:\n    Republic of Uganda\nType:\n    republic\nCapital:\n    Kampala\nAdministrative divisions:\n    10 provinces; Busoga, Central, Eastern, Karamoja, Nile, North Buganda,\n    Northern, South Buganda, Southern, Western\nIndependence:\n    9 October 1962 (from UK)\nConstitution:\n    8 September 1967, in process of constitutional revision\nLegal system:\n    government plans to restore system based on English common law and customary\n    law and reinstitute a normal judicial system; accepts compulsory ICJ\n    jurisdiction, with reservations\nNational holiday:\n    Independence Day, 9 October (1962)\nExecutive branch:\n    president, vice president, prime minister, three deputy prime ministers,\n    Cabinet\nLegislative branch:\n    unicameral National Resistance Council\nJudicial branch:\n    Court of Appeal, High Court\nLeaders:\n  Chief of State:\n    President Lt. Gen. Yoweri Kaguta MUSEVENI (since 29 January 1986); Vice\n    President Samson Babi Mululu KISEKKA (since NA January 1991)\n  Head of Government:\n    Prime Minister George Cosmas ADYEBO (since NA January 1991)\nPolitical parties and leaders:\n    only party - National Resistance Movement (NRM); note - the Uganda Patriotic\n    Movement (UPM), Ugandan People's Congress (UPC), Democratic Party (DP), and\n    Conservative Party (CP) are all proscribed from conducting public political\n    activities\nSuffrage:\n    universal at age 18\nElections:\n  National Resistance Council:\n    last held 11-28 February 1989 (next to be held by January 1995); results -\n    NRM was the only party; seats - (278 total, 210 indirectly elected) 210\n    members elected without party affiliation\nOther political or pressure groups:\n    Uganda People's Front (UPF), Uganda People's Christian Democratic Army\n    (UPCDA), Ruwenzori Movement\nMember of:\n    ACP, AfDB, C, CCC, EADB, ECA, FAO, G-77, GATT, IAEA, IBRD, ICAO, ICFTU, IDA,\n    IDB, IFAD, IFC, IGADD, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM,\n    OAU, OIC, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Stephen Kapimpina KATENTA-APULI; 5909 16th Street NW, Washington,\n    DC 20011; telephone (202) 726-7100 through 7102\n  US:\n    Ambassador Johnnie CARSON; Embassy at Parliament Avenue, Kampala (mailing\n    address is P. O. Box 7007, Kampala); telephone [256] (41) 259792, 259793,\n    259795\n\n:Uganda Government\n\nFlag:\n    six equal horizontal bands of black (top), yellow, red, black, yellow, and\n    red; a white disk is superimposed at the center and depicts a red-crested\n    crane (the national symbol) facing the staff side\n\n:Uganda Economy\n\nOverview:\n    Uganda has substantial natural resources, including fertile soils, regular\n    rainfall, and sizable mineral deposits of copper and cobalt. The economy has\n    been devastated by widespread political instability, mismanagement, and\n    civil war since independence in 1962, keeping Uganda poor with a per capita\n    income of about $300. (GDP remains below the levels of the early 1970s, as\n    does industrial production.) Agriculture is the most important sector of the\n    economy, employing over 80% of the work force. Coffee is the major export\n    crop and accounts for the bulk of export revenues. Since 1986 the government\n    has acted to rehabilitate and stabilize the economy by undertaking currency\n    reform, raising producer prices on export crops, increasing petroleum\n    prices, and improving civil service wages. The policy changes are especially\n    aimed at dampening inflation, which was running at over 300% in 1987, and\n    boosting production and export earnings. During the period 1990-91, the\n    economy turned in a solid performance based on continued investment in the\n    rehabilitation of infrastructure, improved incentives for production and\n    exports, and gradually improving domestic security.\nGDP:\n    exchange rate conversion - $5.6 billion, per capita $300; real growth rate\n    4.5% (1991 est.)\nInflation rate (consumer prices):\n    35% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $365 million; expenditures $545 million, including capital\n    expenditures of $165 million (FY89 est.)\nExports:\n    $208 million (f.o.b., 1990)\n  commodities:\n    coffee 97%, cotton, tea\n  partners:\n    US 25%, UK 18%, France 11%, Spain 10%\nImports:\n    $209 million (c.i.f., 1990)\n  commodities:\n    petroleum products, machinery, cotton piece goods, metals, transportation\n    equipment, food\n  partners:\n    Kenya 25%, UK 14%, Italy 13%\nExternal debt:\n    $1.9 billion (1991 est.)\nIndustrial production:\n    growth rate 7.0% (1990); accounts for 5% of GDP\nElectricity:\n    175,000 kW capacity; 315 million kWh produced, 15 kWh per capita (1991)\nIndustries:\n    sugar, brewing, tobacco, cotton textiles, cement\nAgriculture:\n    mainly subsistence; accounts for 57% of GDP and over 80% of labor force;\n    cash crops - coffee, tea, cotton, tobacco; food crops - cassava, potatoes,\n    corn, millet, pulses; livestock products - beef, goat meat, milk, poultry;\n    self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (1970-89), $145 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $1.4 billion; OPEC\n    bilateral aid (1979-89), $60 million; Communist countries (1970-89), $169\n    million\n\n:Uganda Economy\n\nCurrency:\n    Ugandan shilling (plural - shillings); 1 Ugandan shilling (USh) = 100 cents\nExchange rates:\n    Ugandan shillings (USh) per US$1 - 1,031.3 (March 1992), 734.0 (1991),\n    428.85 (1990), 223.1 (1989), 106.1 (1988), 42.8 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Uganda Communications\n\nRailroads:\n    1,300 km, 1.000-meter-gauge single track\nHighways:\n    26,200 km total; 1,970 km paved; 5,849 km crushed stone, gravel, and\n    laterite; remainder earth roads and tracks\nInland waterways:\n    Lake Victoria, Lake Albert, Lake Kyoga, Lake George, Lake Edward; Victoria\n    Nile, Albert Nile; principal inland water ports are at Jinja and Port Bell,\n    both on Lake Victoria\nMerchant marine:\n    1 roll-on/roll-off (1,000 GRT or over) totaling 1,697 GRT\nCivil air:\n    6 major transport aircraft\nAirports:\n    35 total, 27 usable; 5 with permanent-surface runways; 1 with runways over\n    3,659 m; 3 with runways 2,440-3,659 m; 10 with runways 1,220-2,439 m\nTelecommunications:\n    fair system with microwave and radio communications stations; broadcast\n    stations - 10 AM, no FM, 9 TV; satellite communications ground stations - 1\n    Atlantic Ocean INTELSAT\n\n:Uganda Defense Forces\n\nBranches:\n    Army, Navy, Air Force\nManpower availability:\n    males 15-49, about 4,132,887; about 2,243,933 for military service\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Ukraine Geography\n\nTotal area:\n    603,700 km2\nLand area:\n    603,700 km2\nComparative area:\n    slightly smaller than Texas\nLand boundaries:\n    4,558 km total; Belarus 891 km, Czechoslovakia 90 km, Hungary 103 km,\n    Moldova 939 km, Poland 428 km, Romania (southwest) 169 km, Romania (west)\n    362 km, Russia 1,576 km\nCoastline:\n    2,782 km\nMaritime claims:\n  Contiguous zone:\n    NA nm\n  Continental shelf:\n    NA meter depth\n  Exclusive fishing zone:\n    NA nm\n  Exclusive economic zone:\n    NA nm\n  Territorial sea:\n    NA nm\nDisputes:\n    potential border disputes with Moldova and Romania in northern Bukovina and\n    southern Odessa oblast\nClimate:\n    temperate continental; subtropical only on the southern Crimean coast;\n    precipitation disproportionately distributed, highest in west and north,\n    lesser in east and southeast; winters vary from cool along the Black Sea to\n    cold farther inland; summers are warm across the greater part of the\n    country, hot in the south\nTerrain:\n    most of Ukraine consists of fertile plains (steppes) and plateaux, mountains\n    being found only in the west (the Carpathians), and in the Crimean peninsula\n    in the extreme south\nNatural resources:\n    iron ore, coal, manganese, natural gas, oil, salt, sulphur, graphite,\n    titanium, magnesium, kaolin, nickel, mercury, timber\nLand use:\n    56% arable land; 2% permanent crops; 12% meadows and pastures; NA% forest\n    and woodland; 30% other; includes 3% irrigated\nEnvironment:\n    air and water pollution, deforestation, radiation contamination around\n    Chernobyl nuclear plant\nNote:\n    strategic position at the crossroads between Europe and Asia; second largest\n    country in Europe\n\n:Ukraine People\n\nPopulation:\n    51,940,426 (July 1992), growth rate 0.2% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    12 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    22 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 75 years female (1992)\nTotal fertility rate:\n    2.0 children born/woman (1992)\nNationality:\n    noun - Ukrainian(s); adjective - Ukrainian\nEthnic divisions:\n    Ukrainian 73%, Russian 22%, Jewish 1%, other 4%\nReligions:\n    Ukrainian Autonomous Orthodox, Ukrainian Autocephalous Orthodox, Ukrainian\n    Catholic (Uniate), Protestant, Jewish\nLanguages:\n    Ukrainian, Russian, Romanian, Polish\nLiteracy:\n    NA%\nLabor force:\n    25,277,000; industry and construction 41%, agriculture and forestry 19%,\n    health, education, and culture 18%, trade and distribution 8%, transport and\n    communication 7%, other 7% (1990)\nOrganized labor:\n    NA\n\n:Ukraine Government\n\nLong-form name:\n    none\nType:\n    republic\nCapital:\n    Kiev (Kyyiv)\nAdministrative divisions:\n    24 oblasts (oblastey, singular - oblast') and 1 autonomous republic*\n    (avtomnaya respublika); Chernigov, Cherkassy, Chernovtsy, Dnepropetrovsk,\n    Donetsk, Ivano-Frankovsk, Khar'kov, Kherson, Khmel'nitskiy, Kiev,\n    Kirovograd, Krym (Simferopol')*, Lugansk, L'vov, Nikolayev, Odessa, Poltava,\n    Rovno, Sumy, Ternopol', Vinnitsa, Volyn' (Lutsk), Zakarpat (Uzhgorod),\n    Zaporozh'ye, Zhitomir; note - an oblast usually has the same name as its\n    administrative center (exceptions have the administrative center name\n    following in parentheses)\nIndependence:\n    24 August 1991; 1 December 1991 de facto from USSR; note - formerly the\n    Ukrainian Soviet Socialist Republic in the Soviet Union\nConstitution:\n    currently being drafted\nLegal system:\n    based on civil law system; no judicial review of legislative acts\nNational holiday:\n    Independence Day, 24 August (1991)\nExecutive branch:\n    president, prime minister\nLegislative branch:\n    unicameral Supreme Council\nJudicial branch:\n    being organized\nLeaders:\n  Chief of State:\n    President Leonid M. KRAVCHUK (since 5 December 1991)\n  Head of Government:\n    Prime Minister Vitol'd FOKIN (since 14 November 1991); two First Deputy\n    Prime Ministers: Valentyn SYMONENKO and Konstantyn MASYK (since 21 May\n    1991); two Deputy Prime Ministers: Oleh SLEPICHEV and Viktor SYTNYK (since\n    21 May 1991)\nPolitical parties and leaders:\n    Ukrainian Republican Party, Levko LUKYANENKO, chairman; Green Party, Yuriy\n    SHCHERBAK, chairman; Social Democratic Party, Andriy NOSENKO, chairman;\n    Ukrainian Democratic Party, Yuriy BADZO, chairman; Democratic Rebirth Party,\n    Oleksandr Volodymyr GRINEV, Oleksandr FILENKO, YEMETS, Miroslav POPOVICH,\n    Sergei LYLYK, Oleksandr BAZYLYUK, Valeriy KHMELKO, leaders; People's Party\n    of Ukraine, Leopold TABURYANSKIY, chairman; Peasant Democratic Party, Jerhiy\n    PLACHYNDA, chairman; Ukrainian Socialist Party, Oleksandr MOROZ, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 1 December 1991 (next to be held NA 1996); results - Leonid\n    KRAVCHUK 61.59%, Vyacheslav CHERNOVIL 23.27%, Levko LUKYANENKO 4.49%,\n    Volodymyr GRINEV 4.17%, Iher YUKHNOVSKY 1.74%, Leopold TABURYANSKIY 0.57%\n  Supreme Council:\n    last held 4 March 1990 (next scheduled for 1995, may be held earlier in late\n    1992 or 1993); results - percent of vote by party NA; seats - (NA total)\n    number of seats by party NA\n\n:Ukraine Government\n\nCommunists:\n    Communist Party of Ukraine was banned by decree of the Supreme Council on 30\n    August 1991\nOther political or pressure groups:\n    Ukraninan People's Movement for Restructuring (RUKH)\nMember of:\n    CIS, CSCE, CE, ECE, IAEA, IMF, INMARSAT, IOC, ITU, NACC, PCA, UN, UNCTAD,\n    UNESCO, UNIDO, UPU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Oleh H. BILORUS; Embassy at 1828 L Street, NW, Suite 711,\n    Washington, DC 20036; telephone (202) 296-6960\n  US:\n    Ambassador Roman POPADIUK; Embassy at ;10 Vul. Yuriy Kotsubinskoho, Kiev\n    (mailing address is APO AE 09862); telephone (044) 244-7349; FAX (044)\n    244-7350\nFlag:\n    two horizontal bars of equal size: azure (sky blue) top half, golden yellow\n    bottom half (represents grainfields under a blue sky)\n\n:Ukraine Economy\n\nOverview:\n    Because of its size, geographic location, Slavic population, and rich\n    resources, the loss of Ukraine was the final and most bitter blow to the\n    Soviet leaders wishing to preserve some semblance of the old political,\n    military, and economic power of the USSR. After Russia, the Ukrainian\n    republic was far and away the most important economic component of the\n    former Soviet Union producing more than three times the output of the\n    next-ranking republic. Its fertile black soil generated more than one fourth\n    of Soviet agricultural output, and its farms provided substantial quantities\n    of meat, milk, grain and vegetables to other republics. Likewise, its\n    well-developed and diversified heavy industry supplied equipment and raw\n    materials to industrial and mining sites in other regions of the USSR. In\n    early 1992 the continued wholesale disruption of economic ties and the lack\n    of an institutional structure necessary to formulate and implement economic\n    reforms preclude a near-term recovery of output.\nGDP:\n    $NA, per capita $NA; real growth rate -10% (1991 est.)\nInflation rate (consumer prices):\n    83% (1991 est.)\nUnemployment rate:\n    NA%\nBudget:\n    not finalized as of May 1992\nExports:\n    $13.5 billion (1990)\n  commodities:\n    coal, electric power, ferrous and nonferrous metals, chemicals, machinery\n    and transport equipment, grain, meat\n  partners:\n    Russia, Belarus, Kazakhstan\nImports:\n    $16.7 billion (1990)\n  commodities:\n    machinery and parts, transportation equipment, chemicals, textiles\n  partners:\n    none\n    *** No entry for this item ***\nExternal debt:\n    $10.4 billion (end of 1991 est.)\nIndustrial production:\n    growth rate -4.5% (1991)\nElectricity:\n    NA kW capacity; 298,000 million kWh produced, 5,758 kWh per capita (1990)\nIndustries:\n    coal, electric power, ferrous and nonferrous metals, machinery and transport\n    equipment, chemicals, food-processing\nAgriculture:\n    grain, vegetables, meat, milk\nIllicit drugs:\n    illicit producer of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    $NA\n\n:Ukraine Economy\n\nCurrency:\n    as of August 1992 using ruble and Ukrainian coupons as legal tender; Ukraine\n    plans to withdraw the ruble from circulation and convert to a coupon-based\n    economy on 1 October 1992; Ukrainian officials claim this will be an interim\n    move toward introducing a Ukrainian currency - the hryvnya - possibly as\n    early as January 1993\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Ukraine Communications\n\nRailroads:\n    22,800 km all 1.500-meter gauge; does not include industrial lines (1990)\nHighways:\n    273,700 km total (1990); 236,400 km hard surfaced, 37,300 km earth\nInland waterways:\n    NA km perennially navigable\nPipelines:\n    NA\nPorts:\n    maritime - Berdyansk, Il'ichevsk Kerch', Kherson, Mariupol' (formerly\n    Zhdanov), Nikolayev, Odessa, Sevastopol', Yuzhnoye; inland - Kiev\nMerchant marine:\n    338 ships (1,000 GRT or over) totaling 4,117,595 GRT/5,403,685 DWT; includes\n    221 cargo, 11 container, 9 barge carriers, 59 bulk cargo, 9 petroleum\n    tanker, 2 chemical tanker, 3 liquefied gas, 24 passenger\nCivil air:\n    NA major transport aircraft\nAirports:\n    NA\nTelecommunications:\n    inheriting part of the former USSR system, Ukraine has about 7 million\n    telephone lines (13.5 telephones for each 100 persons); as of 31 January\n    1990, 3.56 million applications for telephones could not be satisfied;\n    international calls can be made via satellite, by landline to other CIS\n    countries, and through the Moscow international switching center; satellite\n    earth stations employ INTELSAT, INMARSAT, and Intersputnik\n\n:Ukraine Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground Navy, Air, and Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:United Arab Emirates Geography\n\nTotal area:\n    83,600 km2\nLand area:\n    83,600 km2\nComparative area:\n    slightly smaller than Maine\nLand boundaries:\n    1,016 km total; Oman 410 km, Saudi Arabia 586 km, Qatar 20 km\nCoastline:\n    1,448 km\nMaritime claims:\n  Continental shelf:\n    defined by bilateral boundaries or equidistant line\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    3 nm (assumed), 12 nm for Ash Shariqah (Sharjah)\nDisputes:\n    boundary with Qatar is unresolved; no defined boundary with Saudi Arabia; no\n    defined boundary with most of Oman, but Administrative Line in far north;\n    claims two islands in the Persian Gulf occupied by Iran (Jazireh-ye Tonb-e\n    Bozorg or Greater Tunb, and Jazireh-ye Tonb-e Kuchek or Lesser Tunb); claims\n    island in the Persian Gulf jointly administered with Iran (Jazireh-ye Abu\n    Musa or Abu Musa,)\nClimate:\n    desert; cooler in eastern mountains\nTerrain:\n    flat, barren coastal plain merging into rolling sand dunes of vast desert\n    waste- land; mountains in east\nNatural resources:\n    crude oil and natural gas\nLand use:\n    arable land NEGL%; permanent crops NEGL%; meadows and pastures 2%; forest\n    and woodland NEGL%; other 98%; includes irrigated NEGL%\nEnvironment:\n    frequent dust and sand storms; lack of natural freshwater resources being\n    overcome by desalination plants; desertification\nNote:\n    strategic location along southern approaches to Strait of Hormuz, a vital\n    transit point for world crude oil\n\n:United Arab Emirates People\n\nPopulation:\n    2,522,315 (July 1992), growth rate 5.4% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    3 deaths/1,000 population (1992)\nNet migration rate:\n    27 migrants/1,000 population (1992)\nInfant mortality rate:\n    23 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    70 years male, 74 years female (1992)\nTotal fertility rate:\n    4.7 children born/woman (1992)\nNationality:\n    noun - Emirian(s), adjective - Emirian\nEthnic divisions:\n    Emirian 19%, other Arab 23%, South Asian (fluctuating) 50%, other\n    expatriates (includes Westerners and East Asians) 8%; less than 20% of the\n    population are UAE citizens (1982)\nReligions:\n    Muslim 96% (Shi`a 16%); Christian, Hindu, and other 4%\nLanguages:\n    Arabic (official); Persian and English widely spoken in major cities; Hindi,\n    Urdu\nLiteracy:\n    68% (male 70%, female 63%) age 10 and over but definition of literacy not\n    available (1980)\nLabor force:\n    580,000 (1986 est.); industry and commerce 85%, agriculture 5%, services 5%,\n    government 5%; 80% of labor force is foreign\nOrganized labor:\n    trade unions are illegal\n\n:United Arab Emirates Government\n\nLong-form name:\n    United Arab Emirates (no short-form name); abbreviated UAE\nType:\n    federation with specified powers delegated to the UAE central government and\n    other powers reserved to member emirates\nCapital:\n    Abu Dhabi\nAdministrative divisions:\n    7 emirates (imarat, singular - imarah); Abu Zaby (Abu Dhabi), `Ajman, Al\n    Fujayrah, Ash Shariqah, Dubayy, Ra's al Khaymah, Umm al Qaywayn\nIndependence:\n    2 December 1971 (from UK; formerly Trucial States)\nConstitution:\n    2 December 1971 (provisional)\nLegal system:\n    secular codes are being introduced by the UAE Government and in several\n    member shaykhdoms; Islamic law remains influential\nNational holiday:\n    National Day, 2 December (1971)\nExecutive branch:\n    president, vice president, Supreme Council of Rulers, prime minister, deputy\n    prime minister, Council of Ministers\nLegislative branch:\n    unicameral Federal National Council (Majlis Watani Itihad)\nJudicial branch:\n    Union Supreme Court\nLeaders:\n  Chief of State:\n    President Shaykh Zayid bin Sultan Al NUHAYYAN, (since 2 December 1971),\n    ruler of Abu Dhabi; Vice President Shaykh Maktum bin Rashid al-MAKTUM (since\n    8 October 1990), ruler of Dubayy\n  Head of Government:\n    Prime Minister Shaykh Maktum bin Rashid al-MAKTUM (since 8 October 1990),\n    ruler of Dubayy; Deputy Prime Minister Sultan bin Zayid Al NUHAYYAN (since\n    20 November 1990)\nPolitical parties and leaders:\n    none\nSuffrage:\n    none\nElections:\n    none\nOther political or pressure groups:\n    a few small clandestine groups may be active\nMember of:\n    ABEDA, AFESD, AL, AMF, CAEU, CCC, ESCWA, FAO, G-77, GCC, IAEA, IBRD, ICAO,\n    IDA, IDB, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT, INTERPOL, IOC, ISO\n    (correspondent), ITU, LORCS, NAM, OAPEC, OIC, OPEC, UN, UNCTAD, UNESCO,\n    UNIDO, UPU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Muhammad bin Husayn Al SHAALI; Chancery at Suite 740, 600 New\n    Hampshire Avenue NW, Washington, DC 20037; telephone (202) 338-6500\n  US:\n    Ambassador Edward S. WALKER, Jr.; Embassy at Al-Sudan Street, Abu Dhabi\n    (mailing address is P. O. Box 4009, Abu Dhabi); telephone [971] (2) 336691,\n    afterhours 338730; FAX [971] (2) 318441; there is a US Consulate General in\n    Dubayy (Dubai)\nFlag:\n    three equal horizontal bands of green (top), white, and black with a thicker\n    vertical red band on the hoist side\n\n:United Arab Emirates Economy\n\nOverview:\n    The UAE has an open economy with one of the world's highest incomes per\n    capita outside the OECD nations. This wealth is based on oil and gas, and\n    the fortunes of the economy fluctuate with the prices of those commodities.\n    Since 1973, when petroleum prices shot up, the UAE has undergone a profound\n    transformation from an impoverished region of small desert principalities to\n    a modern state with a high standard of living. At present levels of\n    production, crude oil reserves should last for over 100 years.\nGDP:\n    exchange rate conversion - $33.7 billion, per capita $14,100 (1990); real\n    growth rate 11% (1989)\nInflation rate (consumer prices):\n    5.5% (1990 est.)\nUnemployment rate:\n    NEGL (1988)\nBudget:\n    revenues $3.8 billion; expenditures $3.7 billion, including capital\n    expenditures of $NA (1989 est.)\nExports:\n    $21.3 billion (f.o.b., 1990 est.)\n  commodities:\n    crude oil 65%, natural gas, reexports, dried fish, dates\n  partners:\n    Japan 35%, Singapore 6%, US 4%, Korea 3%\nImports:\n    $11.0 billion (f.o.b., 1990 est.)\n  commodities:\n    food, consumer and capital goods\n  partners:\n    Japan 14%, UK 10%, US 9%, Germany 9%\nExternal debt:\n    $11.0 billion (December 1989 est.)\nIndustrial production:\n    NA\nElectricity:\n    5,800,000 kW capacity; 17,000 million kWh produced, 7,115 kWh per capita\n    (1991)\nIndustries:\n    petroleum, fishing, petrochemicals, construction materials, some boat\n    building, handicrafts, pearling\nAgriculture:\n    accounts for 2% of GDP and 5% of labor force; cash crop - dates; food\n    products - vegetables, watermelons, poultry, eggs, dairy, fish; only 25%\n    self-sufficient in food\nEconomic aid:\n    donor - pledged $9.1 billion in bilateral aid to less developed countries\n    (1979-89)\nCurrency:\n    Emirian dirham (plural - dirhams); 1 Emirian dirham (Dh) = 100 fils\nExchange rates:\n    Emirian dirhams (Dh) per US$1 - 3.6710 (fixed rate)\nFiscal year:\n    calendar year\n\n:United Arab Emirates Communications\n\nHighways:\n    2,000 km total; 1,800 km bituminous, 200 km gravel and graded earth\nPipelines:\n    crude oil 830 km, natural gas, including natural gas liquids, 870 km\nPorts:\n    Al Fujayrah, Khawr Fakkan, Mina' Jabal `Ali, Mina' Khalid, Mina' Rashid,\n    Mina' Saqr, Mina' Zayid\nMerchant marine:\n    55 ships (1,000 GRT or over) totaling 1,033,866 GRT/1,772,646 DWT; includes\n    18 cargo, 8 container, 3 roll-on/roll-off, 20 petroleum tanker, 4 bulk, 1\n    refrigerated cargo, 1 vehicle carrier\nCivil air:\n    10 major transport aircraft\nAirports:\n    37 total, 34 usable; 20 with permanent-surface runways; 7 with runways over\n    3,659 m; 5 with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    adequate system of microwave and coaxial cable; key centers are Abu Dhabi\n    and Dubayy; 386,600 telephones; broadcast stations - 8 AM, 3 FM, 12 TV;\n    satellite communications ground stations - 1 Atlantic Ocean INTELSAT, 2\n    Indian Ocean INTELSAT and 1 ARABSAT; submarine cables to Qatar, Bahrain,\n    India, and Pakistan; tropospheric scatter to Bahrain; microwave to Saudi\n    Arabia\n\n:United Arab Emirates Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Federal Police Force\nManpower availability:\n    males 15-49, 974,288; 533,673 fit for military service\nDefense expenditures:\n    exchange rate conversion - $1.47 billion, 5.3% of GDP (1989 est.)\n\n:United Kingdom Geography\n\nTotal area:\n    244,820 km2\nLand area:\n    241,590 km2; includes Rockall and Shetland Islands\nComparative area:\n    slightly smaller than Oregon\nLand boundaries:\n    360 km; Ireland 360 km\nCoastline:\n    12,429 km\nMaritime claims:\n  Continental shelf:\n    as defined in continental shelf orders or in accordance with agreed upon\n    boundaries\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Northern Ireland question with Ireland; Gibraltar question with Spain;\n    Argentina claims Falkland Islands (Islas Malvinas); Argentina claims South\n    Georgia and the South Sandwich Islands; Mauritius claims island of Diego\n    Garcia in British Indian Ocean Territory; Rockall continental shelf dispute\n    involving Denmark, Iceland, and Ireland (Ireland and the UK have signed a\n    boundary agreement in the Rockall area); territorial claim in Antarctica\n    (British Antarctic Territory)\nClimate:\n    temperate; moderated by prevailing southwest winds over the North Atlantic\n    Current; more than half of the days are overcast\nTerrain:\n    mostly rugged hills and low mountains; level to rolling plains in east and\n    southeast\nNatural resources:\n    coal, crude oil, natural gas, tin, limestone, iron ore, salt, clay, chalk,\n    gypsum, lead, silica\nLand use:\n    arable land 29%; permanent crops NEGL%; meadows and pastures 48%; forest and\n    woodland 9%; other 14%; includes irrigated 1%\nEnvironment:\n    pollution control measures improving air, water quality; because of heavily\n    indented coastline, no location is more than 125 km from tidal waters\nNote:\n    lies near vital North Atlantic sea lanes; only 35 km from France and now\n    being linked by tunnel under the English Channel\n\n:United Kingdom People\n\nPopulation:\n    57,797,514 (July 1992), growth rate 0.3% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    NEGL migrants/1,000 population (1992)\nInfant mortality rate:\n    8 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    73 years male, 79 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - Briton(s), British (collective pl.); adjective - British\nEthnic divisions:\n    English 81.5%, Scottish 9.6%, Irish 2.4%, Welsh 1.9%, Ulster 1.8%, West\n    Indian, Indian, Pakistani, and other 2.8%\nReligions:\n    Anglican 27.0 million, Roman Catholic 5.3 million, Presbyterian 2.0 million,\n    Methodist 760,000, Jewish 410,000\nLanguages:\n    English, Welsh (about 26% of population of Wales), Scottish form of Gaelic\n    (about 60,000 in Scotland)\nLiteracy:\n    99% (male NA%, female NA%) age 15 and over can read and write (1978 est.)\nLabor force:\n    26,177,000; services 60.6%, manufacturing and construction 27.2%, government\n    8.9%, energy 2.1%, agriculture 1.2% (June 1991)\nOrganized labor:\n    40% of labor force (1991)\n\n:United Kingdom Government\n\nLong-form name:\n    United Kingdom of Great Britain and Northern Ireland; abbreviated UK\nType:\n    constitutional monarchy\nCapital:\n    London\nAdministrative divisions:\n    47 counties, 7 metropolitan counties, 26 districts, 9 regions, and 3 islands\n    areas\n  England:\n    39 counties, 7 metropolitan counties*; Avon, Bedford, Berkshire, Buckingham,\n    Cambridge, Cheshire, Cleveland, Cornwall, Cumbria, Derby, Devon, Dorset,\n    Durham, East Sussex, Essex, Gloucester, Greater London*, Greater\n    Manchester*, Hampshire, Hereford and Worcester, Hertford, Humberside, Isle\n    of Wight, Kent, Lancashire, Leicester, Lincoln, Merseyside*, Norfolk,\n    Northampton, Northumberland, North Yorkshire, Nottingham, Oxford,\n    Shropshire, Somerset, South Yorkshire*, Stafford, Suffolk, Surrey, Tyne and\n    Wear*, Warwick, West Midlands*, West Sussex, West Yorkshire*, Wiltshire\n  Northern Ireland:\n    26 districts; Antrim, Ards, Armagh, Ballymena, Ballymoney, Banbridge,\n    Belfast, Carrickfergus, Castlereagh, Coleraine, Cookstown, Craigavon, Down,\n    Dungannon, Fermanagh, Larne, Limavady, Lisburn, Londonderry, Magherafelt,\n    Moyle, Newry and Mourne, Newtownabbey, North Down, Omagh, Strabane\n  Scotland:\n    9 regions, 3 islands areas*; Borders, Central, Dumfries and Galloway, Fife,\n    Grampian, Highland, Lothian, Orkney*, Shetland*, Strathclyde, Tayside,\n    Western Isles*\n  Wales:\n    8 counties; Clwyd, Dyfed, Gwent, Gwynedd, Mid Glamorgan, Powys, South\n    Glamorgan, West Glamorgan\nIndependence:\n    1 January 1801, United Kingdom established\nConstitution:\n    unwritten; partly statutes, partly common law and practice\nDependent areas:\n    Anguilla, Bermuda, British Indian Ocean Territory, British Virgin Islands,\n    Cayman Islands, Falkland Islands, Gibraltar, Guernsey, Hong Kong, Jersey,\n    Isle of Man, Montserrat, Pitcairn Islands, Saint Helena, South Georgia and\n    the South Sandwich Islands, Turks and Caicos Islands\nLegal system:\n    common law tradition with early Roman and modern continental influences; no\n    judicial review of Acts of Parliament; accepts compulsory ICJ jurisdiction,\n    with reservations\nNational holiday:\n    Celebration of the Birthday of the Queen (second Saturday in June)\nExecutive branch:\n    monarch, prime minister, Cabinet\nLegislative branch:\n    bicameral Parliament consists of an upper house or House of Lords and a\n    lower house or House of Commons\nJudicial branch:\n    House of Lords\nLeaders:\n  Chief of State:\n    Queen ELIZABETH II (since 6 February 1952); Heir Apparent Prince CHARLES\n    (son of the Queen, born 14 November 1948)\n  Head of Government:\n    Prime Minister John MAJOR (since 28 November 1990)\n\n:United Kingdom Government\n\nPolitical parties and leaders:\n    Conservative and Unionist Party, John MAJOR; Labor Party, John SMITH;\n    Liberal Democrats (LD), Jeremy (Paddy) ASHDOWN; Scottish National Party,\n    Alex SALMOND; Welsh National Party (Plaid Cymru), Dafydd Iwan WIGLEY; Ulster\n    Unionist Party (Northern Ireland), James MOLYNEAUX; Democratic Unionist\n    Party (Northern Ireland), Rev. Ian PAISLEY; Ulster Popular Unionist Party\n    (Northern Ireland), James KILFEDDER; Social Democratic and Labor Party\n    (SDLP, Northern Ireland), John HUME; Sinn Fein (Northern Ireland), Gerry\n    ADAMS; Alliance Party (Northern Ireland), John ALDERDICE; Democratic Left,\n    Nina TEMPLE\nSuffrage:\n    universal at age 18\nElections:\n  House of Commons:\n    last held 9 April 1992 (next to be held by NA April 1997); results -\n    Conservative 41.9%, Labor 34.5%, Liberal Democratic 17.9%, other 5.7%; seats\n    - (651 total) Conservative 336, Labor 271, Liberal Democratic 20, other 24\nCommunists:\n    15,961\nOther political or pressure groups:\n    Trades Union Congress, Confederation of British Industry, National Farmers'\n    Union, Campaign for Nuclear Disarmament\nMember of:\n    AfDB, AG (observer), AsDB, BIS, C, CCC, CDB, CE, CERN, COCOM, CP, CSCE,\n    EBRD, EC, ECA (associate), ECE, ECLAC, EIB, ESCAP, ESA, FAO, G-5, G-7, G-10,\n    GATT, IADB, IAEA, IBRD, ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF,\n    IMO, INMARSAT, INTELSAT, INTERPOL, IOC, IOM (observer), ISO, ITU, LORCS,\n    NATO, NEA, OECD, PCA, SPC, UN, UNCTAD, UNFICYP, UNHCR, UNIDO, UNRWA, UN\n    Security Council, UN Trusteeship Council, UPU, WCL, WEU, WHO, WIPO, WMO\nDiplomatic representation:\n    Ambassador Sir Robin RENWICK; Chancery at 3100 Massachusetts Avenue NW,\n    Washington, DC 20008; telephone (202) 462-1340; there are British Consulates\n    General in Atlanta, Boston, Chicago, Cleveland, Houston, Los Angeles, New\n    York, and San Francisco, and Consulates in Dallas, Miami, and Seattle\n  US:\n    Ambassador Raymond G. H. SEITZ; Embassy at 24/31 Grosvenor Square, London,\n    W.1A1AE, (mailing address is FPO AE 09498-4040); telephone [44] (71)\n    499-9000; FAX 409-1637; there are US Consulates General in Belfast and\n    Edinburgh\nFlag:\n    blue with the red cross of Saint George (patron saint of England) edged in\n    white superimposed on the diagonal red cross of Saint Patrick (patron saint\n    of Ireland) which is superimposed on the diagonal white cross of Saint\n    Andrew (patron saint of Scotland); known as the Union Flag or Union Jack;\n    the design and colors (especially the Blue Ensign) have been the basis for a\n    number of other flags including dependencies, Commonwealth countries, and\n    others\nNote:\n    Hong Kong is scheduled to become a Special Administrative Region of China in\n    1997\n\n:United Kingdom Economy\n\nOverview:\n    The UK is one of the world's great trading powers and financial centers, and\n    its economy ranks among the four largest in Europe. The economy is\n    essentially capitalistic with a generous admixture of social welfare\n    programs and government ownership. Prime Minister MAJOR has continued the\n    basic thrust of THATCHER's efforts to halt the expansion of welfare measures\n    and promote extensive reprivatization of the government economic sector.\n    Agriculture is intensive, highly mechanized, and efficient by European\n    standards, producing about 60% of food needs with only 1% of the labor\n    force. Industry is a mixture of public and private enterprises, employing\n    about 27% of the work force and generating 22% of GDP. The UK is an\n    energy-rich nation with large coal, natural gas, and oil reserves; primary\n    energy production accounts for 12% of GDP, one of the highest shares of any\n    industrial nation. In mid-1990 the economy fell into recession after eight\n    years of strong economic expansion, which had raised national output by one\n    quarter. Britain's inflation rate, which has been consistently well above\n    those of her major trading partners, declined significantly in 1991. Between\n    1986 and 1990 unemployment fell from 11% to about 6%, but crept back up to\n    8% in 1991 because of the economic slowdown. As a major trading nation, the\n    UK will continue to be greatly affected by world boom or recession, swings\n    in the international oil market, productivity trends in domestic industry,\n    and the terms on which the economic integration of Europe proceeds.\nGDP:\n    purchasing power equivalent - $915.5 billion, per capita $15,900; real\n    growth rate -1.9% (1991 est.)\nInflation rate (consumer prices):\n    5.8% (1991)\nUnemployment rate:\n    8.1% (1991)\nBudget:\n    revenues $435 billion; expenditures $469 billion, including capital\n    expenditures of $NA (FY92 est.)\nExports:\n    $186.4 billion (f.o.b., 1991)\n  commodities:\n    manufactured goods, machinery, fuels, chemicals, semifinished goods,\n    transport equipment\n  partners:\n    EC 53.2% (FRG 12.7%, France 10.5%, Netherlands 7.0%), US 12.4%\nImports:\n    $211.9 billion (c.i.f., 1991)\n  commodities:\n    manufactured goods, machinery, semifinished goods, foodstuffs, consumer\n    goods\n  partners:\n    EC 52.2% (FRG 15.6%, France 9.3%, Netherlands 8.4%), US 11.5%\nExternal debt:\n    $10.5 billion (1990)\nIndustrial production:\n    growth rate 0% (1991)\nElectricity:\n    98,000,000 kW capacity; 316,500 million kWh produced, 5,520 kWh per capita\n    (1991)\n\n:United Kingdom Economy\n\nIndustries:\n    production machinery including machine tools, electric power equipment,\n    equipment for the automation of production, railroad equipment,\n    shipbuilding, aircraft, motor vehicles and parts, electronics and\n    communications equipment, metals, chemicals, coal, petroleum, paper and\n    paper products, food processing, textiles, clothing, and other consumer\n    goods\nAgriculture:\n    accounts for only 1.5% of GDP and 1% of labor force; highly mechanized and\n    efficient farms; wide variety of crops and livestock products produced;\n    about 60% self-sufficient in food and feed needs; fish catch of 665,000\n    metric tons (1987)\nEconomic aid:\n    donor - ODA and OOF commitments (1970-89), $21.0 billion\nCurrency:\n    British pound or pound sterling (plural - pounds); 1 British pound (#) = 100\n    pence\nExchange rates:\n    British pounds (#) per US$1 - 0.5799 (March 1992), 0.5652 (1991), 0.5603\n    (1990), 0.6099 (1989), 0.5614 (1988), 0.6102 (1987)\nFiscal year:\n    1 April-31 March\n\n:United Kingdom Communications\n\nRailroads:\n    Great Britain - 16,629 km total; British Railways (BR) operates 16,629 km\n    1.435-meter (standard) gauge (4,205 km electrified and 12,591 km double or\n    multiple track); several additional small standard-gauge and narrow-gauge\n    lines are privately owned and operated; Northern Ireland Railways (NIR)\n    operates 332 km 1.600-meter gauge, including 190 km double track\nHighways:\n    UK, 362,982 km total; Great Britain, 339,483 km paved (including 2,573 km\n    limited-access divided highway); Northern Ireland, 23,499 km (22,907 paved,\n    592 km gravel)\nInland waterways:\n    2,291 total; British Waterways Board, 606 km; Port Authorities, 706 km;\n    other, 979 km\nPipelines:\n    crude oil (almost all insignificant) 933 km, petroleum products 2,993 km,\n    natural gas 12,800 km\nPorts:\n    London, Liverpool, Felixstowe, Tees and Hartlepool, Dover, Sullom Voe,\n    Southampton\nMerchant marine:\n    224 ships (1,000 GRT or over) totaling 3,905,571 GRT/4,840,862 DWT; includes\n    7 passenger, 21 short-sea passenger, 37 cargo, 27 container, 14\n    roll-on/roll-off, 10 refrigerated cargo, 1 vehicle carrier, 1 railcar\n    carrier, 66 petroleum tanker, 2 chemical tanker, 9 liquefied gas, 1\n    combination ore/oil, 1 specialized tanker, 26 bulk, 1 combination bulk\nCivil air:\n    618 major transport aircraft\nAirports:\n    498 total, 385 usable; 249 with permanent-surface runways; 1 with runways\n    over 3,659 m; 37 with runways 2,440-3,659 m; 133 with runways 1,220-2,439 m\nTelecommunications:\n    technologically advanced domestic and international system; 30,200,000\n    telephones; equal mix of buried cables, microwave and optical-fiber systems;\n    excellent countrywide broadcast systems; broadcast stations - 225 AM, 525\n    (mostly repeaters) FM, 207 (3,210 repeaters) TV; 40 coaxial submarine\n    cables; 5 satellite ground stations operating in INTELSAT (7 Atlantic Ocean\n    and 3 Indian Ocean), MARISAT, and EUTELSAT systems; at least 8 large\n    international switching centers\n\n:United Kingdom Defense Forces\n\nBranches:\n    Army, Royal Navy (including Royal Marines), Royal Air Force\nManpower availability:\n    males 15-49, 14,462,820; 12,122,497 fit for military service; no\n    conscription\nDefense expenditures:\n    exchange rate conversion - $42 billion, 4.3% of GDP (FY91)\n\n:United States Geography\n\nTotal area:\n    9,372,610 km2\nLand area:\n    9,166,600 km2; includes only the 50 states and District of Colombia\nComparative area:\n    about three-tenths the size of Russia; about one-third the size of Africa;\n    about one-half the size of South America (or slightly larger than Brazil);\n    slightly smaller than China; about two and one-half times the size of\n    Western Europe\nLand boundaries:\n    12,248.1 km; Canada 8,893 km (including 2,477 km with Alaska), Mexico 3,326\n    km, Cuba (US naval base at Guantanamo) 29.1 km\nCoastline:\n    19,924 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    not specified\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary disputes with Canada (Dixon Entrance, Beaufort Sea, Strait\n    of Juan de Fuca); US Naval Base at Guantanamo is leased from Cuba and only\n    mutual agreement or US abandonment of the area can terminate the lease;\n    Haiti claims Navassa Island; US has made no territorial claim in Antarctica\n    (but has reserved the right to do so) and does not recognize the claims of\n    any other nation; Marshall Islands claims Wake Island\nClimate:\n    mostly temperate, but varies from tropical (Hawaii) to arctic (Alaska); arid\n    to semiarid in west with occasional warm, dry chinook wind\nTerrain:\n    vast central plain, mountains in west, hills and low mountains in east;\n    rugged mountains and broad river valleys in Alaska; rugged, volcanic\n    topography in Hawaii\nNatural resources:\n    coal, copper, lead, molybdenum, phosphates, uranium, bauxite, gold, iron,\n    mercury, nickel, potash, silver, tungsten, zinc, crude oil, natural gas,\n    timber\nLand use:\n    arable land 20%; permanent crops NEGL%; meadows and pastures 26%; forest and\n    woodland 29%; other 25%; includes irrigated 2%\nEnvironment:\n    pollution control measures improving air and water quality; acid rain;\n    agricultural fertilizer and pesticide pollution; management of sparse\n    natural water resources in west; desertification; tsunamis, volcanoes, and\n    earthquake activity around Pacific Basin; continuous permafrost in northern\n    Alaska is a major impediment to development\nNote:\n    world's fourth-largest country (after Russia, Canada, and China)\n\n:United States People\n\nPopulation:\n    254,521,000 (July 1992), growth rate 0.8% (1992)\nBirth rate:\n    14 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    10 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    72 years male, 79 years female (1992)\nTotal fertility rate:\n    1.8 children born/woman (1992)\nNationality:\n    noun - American(s); adjective - American\nEthnic divisions:\n    white 84.1%, black 12.4%, other 3.5% (1989)\nReligions:\n    Protestant 56%, Roman Catholic 28%, Jewish 2%, other 4%, none 10% (1989)\nLanguages:\n    predominantly English; sizable Spanish-speaking minority\nLiteracy:\n    98% (male 97%, female 98%) age 25 and over having completed 5 or more years\n    of schooling (1989)\nLabor force:\n    126,867,000 (includes armed forces and unemployed); civilian labor force\n    125,303,000 (1991)\nOrganized labor:\n    16,568,000 members; 16.1% of total wage and salary employment which was\n    102,786,000 (1991)\n\n:United States Government\n\nLong-form name:\n    United States of America; abbreviated US or USA\nType:\n    federal republic; strong democratic tradition\nCapital:\n    Washington, DC\nAdministrative divisions:\n    50 states and 1 district*; Alabama, Alaska, Arizona, Arkansas, California,\n    Colorado, Connecticut, Delaware, District of Columbia*, Florida, Georgia,\n    Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine,\n    Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri,\n    Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York,\n    North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode\n    Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont,\n    Virginia, Washington, West Virginia, Wisconsin, Wyoming\nIndependence:\n    4 July 1776 (from England)\nConstitution:\n    17 September 1787, effective 4 June 1789\nDependent areas:\n    American Samoa, Baker Island, Guam, Howland Island; Jarvis Island, Johnston\n    Atoll, Kingman Reef, Midway Islands, Navassa Island, Northern Mariana\n    Islands, Palmyra Atoll, Puerto Rico, Virgin Islands, Wake Island\nLegal system:\n    based on English common law; judicial review of legislative acts; accepts\n    compulsory ICJ jurisdiction, with reservations\nNational holiday:\n    Independence Day, 4 July (1776)\nExecutive branch:\n    president, vice president, Cabinet\nLegislative branch:\n    bicameral Congress consists of an upper house or Senate and a lower house or\n    House of Representatives\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President George BUSH (since 20 January 1989); Vice President Dan QUAYLE\n    (since 20 January 1989)\nPolitical parties and leaders:\n    Republican Party, Richard N. BOND, national committee chairman; Jeanie\n    AUSTIN, co-chairman; Democratic Party, Ronald H. BROWN, national committee\n    chairman; several other groups or parties of minor political significance\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 8 November 1988 (next to be held 3 November 1992); results -\n    George BUSH (Republican Party) 53.37%, Michael DUKAKIS (Democratic Party)\n    45.67%, other 0.96%\n  Senate:\n    last held 6 November 1990 (next to be held 3 November 1992); results -\n    Democratic Party 51%, Republican Party 47%, other 2%; seats - (100 total)\n    Democratic Party 56, Republican Party 44\n  House of Representatives:\n    last held 6 November 1990 (next to be held 3 November 1992); results -\n    Democratic Party 52%, Republican Party 44%, other 4%; seats - (435 total)\n    Democratic Party 267, Republican Party 167, Socialist 1\n\n:United States Government\n\nCommunists:\n    Communist Party (claimed 15,000-20,000 members), Gus HALL, general\n    secretary; Socialist Workers Party (claimed 1,800 members), Jack BARNES,\n    national secretary\nMember of:\n    AfDB, AG (observer), ANZUS, APEC, AsDB, BIS, CCC, COCOM, CP, CSCE, EBRD,\n    ECE, ECLAC, FAO, ESCAP, G-2, G-5, G-7, G-8, G-10, GATT, IADB, IAEA, IBRD,\n    ICAO, ICC, ICFTU, IDA, IEA, IFAD, IFC, ILO, IMF, IMO, INMARSAT, INTELSAT,\n    INTERPOL, IOC, IOM, ISO, ITU, LORCS, NATO, NEA, OAS, OECD, PCA, SPC, UN,\n    UNCTAD, UNHCR, UNIDO, UNRWA, UN Security Council, UN Trusteeship Council,\n    UNTSO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    US Representative to the UN, Ambassador Thomas R. PICKERING; Mission at 799\n    United Nations Plaza, New York, NY 10017; telephone (212) 415-4050, after\n    hours (212) 415-4444; FAX (212) 415-4443\nFlag:\n    thirteen equal horizontal stripes of red (top and bottom) alternating with\n    white; there is a blue rectangle in the upper hoist-side corner bearing 50\n    small white five-pointed stars arranged in nine offset horizontal rows of\n    six stars (top and bottom) alternating with rows of five stars; the 50 stars\n    represent the 50 states, the 13 stripes represent the 13 original colonies;\n    known as Old Glory; the design and colors have been the basis for a number\n    of other flags including Chile, Liberia, Malaysia, and Puerto Rico\nNote:\n    since 18 July 1947, the US has administered the Trust Territory of the\n    Pacific Islands, but recently entered into a new political relationship with\n    three of the four political units; the Northern Mariana Islands is a\n    Commonwealth in political union with the US (effective 3 November 1986);\n    Palau concluded a Compact of Free Association with the US that was approved\n    by the US Congress but to date the Compact process has not been completed in\n    Palau, which continues to be administered by the US as the Trust Territory\n    of the Pacific Islands; the Federated States of Micronesia signed a Compact\n    of Free Association with the US (effective 3 November 1986); the Republic of\n    the Marshall Islands signed a Compact of Free Association with the US\n    (effective 21 October 1986)\n\n:United States Economy\n\nOverview:\n    The US has the most powerful, diverse, and technologically advanced economy\n    in the world, with a per capita GDP of $22,470, the largest among major\n    industrial nations. The economy is market oriented with most decisions made\n    by private individuals and business firms and with government purchases of\n    goods and services made predominantly in the marketplace. In 1989 the\n    economy enjoyed its seventh successive year of substantial growth, the\n    longest in peacetime history. The expansion featured moderation in wage and\n    consumer price increases and a steady reduction in unemployment to 5.2% of\n    the labor force. In 1990, however, growth slowed to 1% because of a\n    combination of factors, such as the worldwide increase in interest rates,\n    Iraq's invasion of Kuwait in August, the subsequent spurt in oil prices, and\n    a general decline in business and consumer confidence. In 1991 output failed\n    to recover, unemployment grew, and signs of recovery proved premature.\n    Ongoing problems for the 1990s include inadequate investment in economic\n    infrastructure, rapidly rising medical costs, and sizable budget and trade\n    deficits.\nGDP:\n    purchasing power equivalent - $5,673 billion, per capita $22,470; real\n    growth rate -0.7% (1991)\nInflation rate (consumer prices):\n    4.2% (1991)\nUnemployment rate:\n    6.6% (1991)\nBudget:\n    revenues $1,054 billion; expenditures $1,323 billion, including capital\n    expenditures of $NA (FY91)\nExports:\n    $428.1 billion (f.o.b., 1991 est.)\n  commodities:\n    capital goods, automobiles, industrial supplies and raw materials, consumer\n    goods, agricultural products\n  partners:\n    Western Europe 27.3%, Canada 22.1%, Japan 12.1% (1989)\nImports:\n    $499.4 billion (c.i.f., 1991 est.)\n  commodities:\n    crude and partly refined petroleum, machinery, automobiles, consumer goods,\n    industrial raw materials, food and beverages\n  partners:\n    Western Europe 21.5%, Japan 19.7%, Canada 18.8% (1989)\nExternal debt:\n    NA\nIndustrial production:\n    growth rate -1.9% (1991)\nElectricity:\n    776,550,000 kW capacity; 3,020,000 million kWh produced, 12,080 kWh per\n    capita (1990)\nIndustries:\n    leading industrial power in the world, highly diversified; petroleum, steel,\n    motor vehicles, aerospace, telecommunications, chemicals, electronics, food\n    processing, consumer goods, fishing, lumber, mining\nAgriculture:\n    accounts for 2% of GDP and 2.8% of labor force; favorable climate and soils\n    support a wide variety of crops and livestock production; world's second\n    largest producer and number one exporter of grain; surplus food producer;\n    fish catch of 5.0 million metric tons (1988)\n\n:United States Economy\n\nIllicit drugs:\n    illicit producer of cannabis for domestic consumption with 1987 production\n    estimated at 3,500 metric tons or about 25% of the available marijuana;\n    ongoing eradication program aimed at small plots and greenhouses has not\n    reduced production\nEconomic aid:\n    donor - commitments, including ODA and OOF, (FY80-89), $115.7 billion\nCurrency:\n    United States dollar (plural - dollars); 1 United States dollar (US$) = 100\n    cents\nExchange rates:\n  British pounds:\n    (#) per US$ - 0.5599 (March 1992), 0.5652 (1991), 0.5603 (1990), 0.6099\n    (1989), 0.5614 (1988), 0.6102 (1987)\n  Canadian dollars:\n    (Can$) per US$ - 1.1926 (March 1992), 1.1457 (1991), 1.1668 (1990), 1.1840\n    (1989), 1.2307 (1988), 1.3260 (1987)\n  French francs:\n    (F) per US$ - 5.6397, (March 1992), 5.6421 (1991), 5.4453 (1990), 6.3801\n    (1989), 5.9569 (1988), 6.0107 (1987)\n  Italian lire:\n    (Lit) per US$ - 1,248.4 (March 1992), 1,240.6 (1991), 1,198.1 (1990),\n    1.372.1 (1989), 1,301.6 (1988), 1,296.1 (1987)\n  Japanese yen:\n    (Y) per US$ - 132.70 (March 1992), 134.71 (1991), 144.79 (1990), 137.96\n    (1989), 128.15 (1988), 144.64 (1987)\n  German deutsche marks:\n    (DM) per US$ - 1.6611 (March 1992), 1.6595 (1991), 1.6157 (1990), 1.8800\n    (1989), 1.7562 (1988), 1.7974 (1987)\nFiscal year:\n    1 October - 30 September\n\n:United States Communications\n\nRailroads:\n    270,312 km\nHighways:\n    6,365,590 km, including 88,641 km expressways\nInland waterways:\n    41,009 km of navigable inland channels, exclusive of the Great Lakes (est.)\nPipelines:\n    petroleum 275,800 km, natural gas 305,300 km (1985)\nPorts:\n    Anchorage, Baltimore, Beaumont, Boston, Charleston, Chicago, Cleveland,\n    Duluth, Freeport, Galveston, Hampton Roads, Honolulu, Houston, Jacksonville,\n    Long Beach, Los Angeles, Milwaukee, Mobile, New Orleans, New York,\n    Philadelphia, Portland (Oregon), Richmond (California), San Francisco,\n    Savannah, Seattle, Tampa, Wilmington\nMerchant marine:\n    396 ships (1,000 GRT or over) totaling 12,969 GRT/20,179 DWT; includes 3\n    passenger-cargo, 38 cargo, 25 bulk, 174 tanker, 13 tanker tug-barge, 14\n    liquefied gas, 129 intermodal; in addition, there are 231 government-owned\n    vessels\nCivil air:\n    8,252 commercial multiengine transport aircraft (weighing 9,000 kg and over)\n    including 6,036 jet, 831 turboprop, 1,382 piston (December 1989)\nAirports:\n    14,177 total, 12,417 usable; 4,820 with permanent-surface runways; 63 with\n    runways over 3,659 m; 325 with runways 2,440-3,659 m; 2,524 with runways\n    1,220-2,439 m\nTelecommunications:\n    182,558,000 telephones; broadcast stations - 4,892 AM, 5,200 FM (including\n    3,915 commercial and 1,285 public broadcasting), 7,296 TV (including 796\n    commercial, 300 public broadcasting, and 6,200 commercial cable);\n    495,000,000 radio receivers (1982); 150,000,000 TV sets (1982); satellite\n    ground stations - 45 Atlantic Ocean INTELSAT and 16 Pacific Ocean INTELSAT\n\n:United States Defense Forces\n\nBranches:\n    Department of the Army, Department of the Navy (including Marine Corps),\n    Department of the Air Force\nManpower availability:\n    males 15-49, 66,458,000; NA fit for military service\nDefense expenditures:\n    exchange rate conversion - $323.5 billion, 5.7% of GNP (1991)\n\n:Uruguay Geography\n\nTotal area:\n    176,220 km2\nLand area:\n    173,620 km2\nComparative area:\n    slightly smaller than Washington State\nLand boundaries:\n    1,564 km total; Argentina 579 km, Brazil 985 km\nCoastline:\n    660 km\nMaritime claims:\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Territorial sea:\n    200 nm (overflight and navigation permitted beyond 12 nm)\nDisputes:\n    short section of boundary with Argentina is in dispute; two short sections\n    of the boundary with Brazil are in dispute (Arroyo de la Invernada area of\n    the Rio Quarai and the islands at the confluence of the Rio Quarai and the\n    Uruguay)\nClimate:\n    warm temperate; freezing temperatures almost unknown\nTerrain:\n    mostly rolling plains and low hills; fertile coastal lowland\nNatural resources:\n    soil, hydropower potential, minor minerals\nLand use:\n    arable land 8%; permanent crops NEGL%; meadows and pastures 78%; forest and\n    woodland 4%; other 10%; includes irrigated 1%\nEnvironment:\n    subject to seasonally high winds, droughts, floods\n\n:Uruguay People\n\nPopulation:\n    3,141,533 (July 1992), growth rate 0.6% (1992)\nBirth rate:\n    17 births/1,000 population (1992)\nDeath rate:\n    10 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    23 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    69 years male, 76 years female (1992)\nTotal fertility rate:\n    2.4 children born/woman (1992)\nNationality:\n    noun - Uruguayan(s); adjective - Uruguayan\nEthnic divisions:\n    white 88%, mestizo 8%, black 4%\nReligions:\n    Roman Catholic (less than half adult population attends church regularly)\n    66%, Protestant 2%, Jewish 2%, nonprofessing or other 30%\nLanguages:\n    Spanish\nLiteracy:\n    96% (male 97%, female 96%) age 15 and over can read and write (1990 est.)\nLabor force:\n    1,355,000 (1991 est.); government 25%, manufacturing 19%, agriculture 11%,\n    commerce 12%, utilities, construction, transport, and communications 12%,\n    other services 21% (1988 est.)\nOrganized labor:\n    Interunion Workers' Assembly/National Workers' Confederation (PIT/CNT) Labor\n    Federation\n\n:Uruguay Government\n\nLong-form name:\n    Oriental Republic of Uruguay\nType:\n    republic\nCapital:\n    Montevideo\nAdministrative divisions:\n    19 departments (departamentos, singular - departamento); Artigas, Canelones,\n    Cerro Largo, Colonia, Durazno, Flores, Florida, Lavalleja, Maldonado,\n    Montevideo, Paysandu, Rio Negro, Rivera, Rocha, Salto, San Jose, Soriano,\n    Tacuarembo, Treinta y Tres\nIndependence:\n    25 August 1828 (from Brazil)\nConstitution:\n    27 November 1966, effective February 1967, suspended 27 June 1973, new\n    constitution rejected by referendum 30 November 1980\nLegal system:\n    based on Spanish civil law system; accepts compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 25 August (1828)\nExecutive branch:\n    president, vice president, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral General Assembly (Asamblea General) consists of an upper chamber\n    or Chamber of Senators (Camara de Senadores) and a lower chamber or Chamber\n    of Representatives (Camera de Representantes)\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Luis Alberto LACALLE (since 1 March 1990); Vice President Gonzalo\n    AGUIRRE Ramirez (since 1 March 1990)\nPolitical parties and leaders:\n    National (Blanco) Party, Carlos CAT; Colorado Party, Jorge BATLLE Ibanez;\n    Broad Front Coalition, Liber SEREGNI Mosquera - includes Communist Party led\n    by Jaime PEREZ and National Liberation Movement (MLN) or Tupamaros led by\n    Eleuterio FERNANDEZ Huidobro; New Space Coalition consists of the Party of\n    the Government of the People (PGP), Hugo BATALLA; Christian Democratic Party\n    (PDC), leader NA; and Civic Union, Humberto CIGANDA\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  President:\n    last held 26 November 1989 (next to be held NA November 1994); results -\n    Luis Alberto LACALLE Herrera (Blanco) 37%, Jorge BATLLE Ibanez (Colorado)\n    29%, Liber SEREGNI Mosquera (Broad Front) 20%\n  Chamber of Senators:\n    last held 26 November 1989 (next to be held NA November 1994); results -\n    Blanco 40%, Colorado 30%, Broad Front 23% New Space 7%; seats - (30 total)\n    Blanco 12, Colorado 9, Broad Front 7, New Space 2\n  Chamber of Representatives:\n    last held NA November 1989 (next to be held NA November 1994); results -\n    Blanco 39%, Colorado 30%, Broad Front 22%, New Space 8%, other 1%; seats -\n    (99 total) number of seats by party NA\nCommunists:\n    50,000\n\n:Uruguay Government\n\nMember of:\n    AG (observer), CCC, ECLAC, FAO, G-11, G-77, GATT, IADB, IAEA, IBRD, ICAO,\n    ICC, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, IOM, ISO\n    (correspondent), ITU, LAES, LAIA, LORCS, NAM (observer), OAS, OPANAL, PCA,\n    RG, UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UNMOGIP, UPU, WCL, WHO, WIPO, WMO,\n    WTO\nDiplomatic representation:\n    Ambassador Eduardo MACGILLICUDDY; Chancery at 1918 F Street NW, Washington,\n    DC 20006; telephone (202) 331-1313 through 1316; there are Uruguayan\n    Consulates General in Los Angeles, Miami, and New York, and a Consulate in\n    New Orleans\n  US:\n    Ambassador Richard C. BROWN; Embassy at Lauro Muller 1776, Montevideo\n    (mailing address is APO AA 34035); telephone [598] (2) 23-60-61 or 48-77-77;\n    FAX [598] (2) 48-86-11\nFlag:\n    nine equal horizontal stripes of white (top and bottom) alternating with\n    blue; there is a white square in the upper hoist-side corner with a yellow\n    sun bearing a human face known as the Sun of May and 16 rays alternately\n    triangular and wavy\n\n:Uruguay Economy\n\nOverview:\n    The economy is slowly recovering from the deep recession of the early 1980s.\n    In 1988 real GDP grew by only 0.5% and in 1989 by 1.5%. The recovery was led\n    by growth in the agriculture and fishing sectors, agriculture alone\n    contributing 20% to GDP, employing about 11% of the labor force, and\n    generating a large proportion of export earnings. Raising livestock,\n    particularly cattle and sheep, is the major agricultural activity. In 1991,\n    domestic growth improved somewhat over 1990, but various government factors,\n    including concentration on the external sector, adverse weather conditions,\n    and greater attention to bringing down inflation and reducing the fiscal\n    deficit kept output from expanding rapidly. In a major step toward greater\n    regional economic cooperation, Uruguay joined Brazil, Argentina, and\n    Paraguay in forming the Southern Cone Common Market (Mercosur). President\n    LACALLE continues to press ahead with a broad economic reform plan to reduce\n    state intervention in the economy, but he faces strong opposition.\nGDP:\n    exchange rate conversion - $9.1 billion, per capita $2,935; real growth rate\n    2.3% (1991 est.)\nInflation rate (consumer prices):\n    60% (1992 est.)\nUnemployment rate:\n    8.5% (1991 est.)\nBudget:\n    revenues $1.2 billion; expenditures $1.4 billion, including capital\n    expenditures of $165 million (1988)\nExports:\n    $1.6 billion (f.o.b., 1991)\n  commodities:\n    hides and leather goods 17%, beef 10%, wool 9%, fish 7%, rice 4%\n  partners:\n    Brazil, US, Argentina, Germany\nImports:\n    $1.3 billion (f.o.b., 1991)\n  commodities:\n    fuels and lubricants 15%, metals, machinery, transportation equipment,\n    industrial chemicals\n  partners:\n    Brazil 23%, Argentina 17%, US 10%, EC 27.1% (1990)\nExternal debt:\n    $4.2 billion (1991 est.)\nIndustrial production:\n    growth rate -1.4% (1990), accounts for almost 25% of GDP\nElectricity:\n    2,065,000 kW capacity; 5,677 million kWh produced, 1,819 kWh per capita\n    (1991)\nIndustries:\n    meat processing, wool and hides, sugar, textiles, footwear, leather apparel,\n    tires, cement, fishing, petroleum refining, wine\nAgriculture:\n    large areas devoted to livestock grazing; wheat, rice, corn, sorghum;\n    self-sufficient in most basic foodstuffs\nEconomic aid:\n    US commitments, including Ex-Im (FY70-88), $105 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $420 million;\n    Communist countries (1970-89), $69 million\nCurrency:\n    new Uruguayan peso (plural - pesos); 1 new Uruguayan peso (N$Ur) = 100\n    centesimos\n\n:Uruguay Economy\n\nExchange rates:\n    new Uruguayan pesos (N$Ur) per US$1 - 2,732.8 (March 1992), 2,018.8 (1991),\n    1,171.0 (1990), 605.5 (1989), 359.4 (1988), 226.7 (1987)\nFiscal year:\n    calendar year\n\n:Uruguay Communications\n\nRailroads:\n    3,000 km, all 1.435-meter (standard) gauge and government owned\nHighways:\n    49,900 km total; 6,700 km paved, 3,000 km gravel, 40,200 km earth\nInland waterways:\n    1,600 km; used by coastal and shallow-draft river craft\nPorts:\n    Montevideo, Punta del Este\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 56,737 GRT/104,143 DWT; includes 1\n    cargo, 1 container, 1 petroleum tanker\nCivil air:\n    11 major transport aircraft\nAirports:\n    90 total, 83 usable; 16 with permanent-surface runways; none with runways\n    over 3,659 m; 2 with runways 2,440-3,659 m; 16 with runways 1,220-2,439 m\nTelecommunications:\n    most modern facilities concentrated in Montevideo; new nationwide microwave\n    network; 337,000 telephones; broadcast stations - 99 AM, no FM, 26 TV, 9\n    shortwave; 2 Atlantic Ocean INTELSAT earth stations\n\n:Uruguay Defense Forces\n\nBranches:\n    Army, Navy (including Naval Air Arm, Coast Guard, and Marines), Air Force,\n    Grenadier Guards, Police\nManpower availability:\n    males 15-49, 745,728; 605,392 fit for military service; no conscription\nDefense expenditures:\n    exchange rate conversion - $168 million, 2.2% of GDP (1988)\n\n:Uzbekistan Geography\n\nTotal area:\n    447,400 km2\nLand area:\n    425,400 km2\nComparative area:\n    slightly larger than California\nLand boundaries:\n    6,221 km total; Afghanistan 137 km, Kazakhstan 2,203 km, Kyrgyzstan 1,099\n    km, Tajikistan 1,161 km, Turkmenistan 1,621 km\nCoastline:\n    0 km\n  note:\n    Uzbekistan does border the Aral Sea (420 km)\nMaritime claims:\n    none - landlocked\nDisputes:\n    none\nClimate:\n    mostly mid latitude desert; semiarid grassland in east\nTerrain:\n    mostly flat-to-rolling sandy desert with dunes; Fergana valley in east\n    surrounded by mountainous Tajikistan and Kyrgyzstan; shrinking Aral Sea in\n    west\nNatural resources:\n    natural gas, petroleum, coal, gold, uranium, silver, copper, lead and zinc,\n    tungsten, molybdenum\nLand use:\n    NA% arable land; NA% permanent crops; NA% meadows and pastures; NA% forest\n    and woodland; NA% other; includes NA% irrigated\nEnvironment:\n    drying up of the Aral Sea is resulting in growing concentrations of chemical\n    pesticides and natural salts\nNote:\n    landlocked\n\n:Uzbekistan People\n\nPopulation:\n    21,626,784 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    7 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992); note - 179,000 persons left Uzbekistan\n    in 1990\nInfant mortality rate:\n    65 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    64 years male, 70 years female (1992)\nTotal fertility rate:\n    4.2 children born/woman (1992)\nNationality:\n    noun - Uzbek(s); adjective - Uzbek\nEthnic divisions:\n    Uzbek 71%, Russian 8%, Tajik 5%, other 16%; note - includes 70% of Crimean\n    Tatars since their World War II deportation\nReligions:\n    Muslim (mostly Sunnis) 75-80%, other (includes Farsi) 20-25%\nLanguages:\n    Uzbek 85%, Russian 5%, other 10%\nLiteracy:\n    NA%\nLabor force:\n    7,941,000; agriculture and forestry 39%, industry and construction 24%,\n    other 37% (1990)\nOrganized labor:\n    NA\n\n:Uzbekistan Government\n\nLong-form name:\n    Republic of Uzbekistan\nType:\n    republic\nCapital:\n    Tashkent (Toshkent)\nAdministrative divisions:\n    11 oblasts (oblastey, singular - oblast') and 1 autonomous republic*\n    (avtomnaya respublika); Andizhan, Bukhara, Dzhizak, Fergana, Karakalpakstan*\n    (Nukus), Kashkadar'ya (Karshi), Khorezm (Urgench), Namangan, Samarkand,\n    Surkhandar'ya (Termez), Syrdar'ya (Gulistan), Tashkent; note - an\n    administrative division has the same name as its administrative center\n    (exceptions have the administrative center name following in parentheses)\nIndependence:\n    31 August 1991 from the Soviet Union; note - formerly Uzbek Soviet Socialist\n    Republic in the Soviet Union\nConstitution:\n    NA\nLegal system:\n    NA\nNational holiday:\n    NA\nExecutive branch:\n    president\nLegislative branch:\n    unicameral Supreme Soviet\nJudicial branch:\n    NA\nLeaders:\n  Chief of State:\n    President Islam KARIMOV (since 29 December 1991)\n  Head of Government:\n    Prime Minister Abdulhashim MUTALOV (since 13 January 1992)\nPolitical parties and leaders:\n    People's Democratic Party of Uzbekistan (formerly Communist Party), Islam\n    KARIMOV, chairman; ERK, Mukhammad SOLIKH, chairman\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 29 December 1991 (next to be held NA December 1996); results -\n    Islam KARIMOV 86%, Mukhammad SOLIKH 12%, other 2%\n  Supreme Soviet:\n    last held NA March 1990 (next to be held NA); results - percent of vote by\n    party NA; seats - (500 total) Communist 450, ERK 10, other 40\nCommunists:\n    NA\nOther political or pressure groups:\n    Birlik (Unity) Abdurakhim PULATOV, chairman; Islamic Renaissance Party,\n    Abdulljon UTAEV, chairman\nMember of:\n    CIS, CSCE, IMF, NACC, UN UNCTAD\nDiplomatic representation:\n    NA\n  US:\n    Charge d'Affaires Michael MOZUR; Embassy at Hotel Uzbekistan, ;55\n    Chelendarskaya, Tashkent (mailing address is APO AE 09862); telephone [8]\n    (011) 7-3712-33-15-74\n\n:Uzbekistan Government\n\nFlag:\n    three equal horizontal bands - blue (top), white, and green with a crescent\n    moon and 12 stars in the upper hoist-side quadrant\n\n:Uzbekistan Economy\n\nOverview:\n    Although Uzbekistan accounted for only 3.4% of total Soviet output, it\n    produced two-thirds of the USSR's cotton. Moscow's push for ever-increasing\n    amounts of cotton included massive irrigation projects which caused\n    extensive environmental damage to the Aral Sea and rivers of the republic.\n    Furthermore, the lavish use of chemical fertilizers has caused extensive\n    pollution and widespread health problems. Recently the republic has sought\n    to encourage food production at the expense of cotton. The small industrial\n    sector specializes in such items as agricultural machinery, mineral\n    fertilizers, vegetable oil, and electrical cranes. Uzbekistan also has some\n    important natural resources including gold (about 30% of Soviet production),\n    uranium, and natural gas. The Uzbek government has encouraged land reform\n    but has shied away from other aspects of economic reform.\nGDP:\n    purchasing power equivalent - $NA, per capita $NA; real growth rate -0.9%\n    (1991)\nInflation rate (consumer prices):\n    83% (1991)\nUnemployment rate:\n    NA\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $1.5 billion (1990)\n  commodities:\n    cotton, gold, textiles, chemical and mineral fertilizers, vegetable oil\n  partners:\n    Russia, Ukraine, Eastern Europe\nImports:\n    $3.5 billion (1990)\n  commodities:\n    machinery and parts, consumer durables, grain, other foods\n  partners:\n    principally other former Soviet republics\nExternal debt:\n    $2 billion (end of 1991 est.)\nIndustrial production:\n    growth rate 1.8% (1991)\nElectricity:\n    11,400,000 kW capacity; 54,100 million kWh produced, 2,662 kWh per capita\n    (1991)\nIndustries:\n    chemical and mineral fertilizers, vegetable oil, textiles\nAgriculture:\n    cotton, with much smaller production of grain, fruits, vegetables, and\n    livestock\nIllicit drugs:\n    illicit producers of cannabis and opium; mostly for domestic consumption;\n    status of government eradication programs unknown; used as transshipment\n    points for illicit drugs to Western Europe\nEconomic aid:\n    $NA\nCurrency:\n    as of May 1992, retaining ruble as currency\nExchange rates:\n    NA\nFiscal year:\n    calendar year\n\n:Uzbekistan Communications\n\nRailroads:\n    3,460 km all 1.520-meter gauge (includes NA km electrified); does not\n    include industrial lines (1990)\nHighways:\n    78,400 km total (1990); 67,000 km hard-surfaced, 11,400 km earth\nInland waterways:\n    NA km\nPipelines:\n    NA\nPorts:\n    none - landlocked\nCivil air:\n    NA\nAirports:\n    NA\nTelecommunications:\n    poorly developed; telephone density NA; linked by landline or microwave with\n    CIS member states and by leased connection via the Moscow international\n    gateway switch to other countries; satellite earth stations - Orbita and\n    INTELSAT (TV receive only)\n\n:Uzbekistan Defense Forces\n\nBranches:\n    Republic Security Forces (internal and border troops), National Guard; CIS\n    Forces (Ground, Air and Air Defense)\nManpower availability:\n    males 15-49, NA; NA fit for military service; NA reach military age (18)\n    annually\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Vanuatu Geography\n\nTotal area:\n    14,760 km2\nLand area:\n    14,760 km2; includes more than 80 islands\nComparative area:\n    slightly larger than Connecticut\nLand boundaries:\n    0 km\nCoastline:\n    2,528 km\nMaritime claims:\n    (measured from claimed archipelagic baselines)\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; moderated by southeast trade winds\nTerrain:\n    mostly mountains of volcanic origin; narrow coastal plains\nNatural resources:\n    manganese, hardwood forests, fish\nLand use:\n    arable land 1%; permanent crops 5%; meadows and pastures 2%; forest and\n    woodland 1%; other 91%\nEnvironment:\n    subject to tropical cyclones or typhoons (January to April); volcanism\n    causes minor earthquakes\nNote:\n    located 5,750 km southwest of Honolulu in the South Pacific Ocean about\n    three-quarters of the way between Hawaii and Australia\n\n:Vanuatu People\n\nPopulation:\n    174,574 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    35 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    30 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    67 years male, 72 years female (1992)\nTotal fertility rate:\n    5.1 children born/woman (1992)\nNationality:\n    noun - Ni-Vanuatu (singular and plural); adjective - Ni-Vanuatu\nEthnic divisions:\n    indigenous Melanesian 94%, French 4%, remainder Vietnamese, Chinese, and\n    various Pacific Islanders\nReligions:\n    Presbyterian 36.7%, Anglican 15%, Catholic 15%, indigenous beliefs 7.6%,\n    Seventh-Day Adventist 6.2%, Church of Christ 3.8%, other 15.7%\nLanguages:\n    English and French (official); pidgin (known as Bislama or Bichelama)\nLiteracy:\n    53% (male 57%, female 48%) age 15 and over can read and write (1979)\nLabor force:\n    NA\nOrganized labor:\n    7 registered trade unions - largest include Oil and Gas Workers' Union,\n    Vanuatu Airline Workers' Union\n\n:Vanuatu Government\n\nLong-form name:\n    Republic of Vanuatu\nType:\n    republic\nCapital:\n    Port-Vila\nAdministrative divisions:\n    11 island councils; Ambrym, Aoba/Maewo, Banks/Torres, Efate, Epi, Malakula,\n    Paama, Pentecote, Santo/Malo, Shepherd, Tafea\nIndependence:\n    30 July 1980 (from France and UK; formerly New Hebrides)\nConstitution:\n    30 July 1980\nLegal system:\n    unified system being created from former dual French and British systems\nNational holiday:\n    Independence Day, 30 July (1980)\nExecutive branch:\n    president, prime minister, deputy prime minister, Council of Ministers\n    (cabinet)\nLegislative branch:\n    unicameral Parliament; note - the National Council of Chiefs advises on\n    matters of custom and land\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State:\n    President Frederick TIMAKATA (since 30 January 1989)\n  Head of Government:\n    Prime Minister Maxime CARLOT (since 16 December 1991); Deputy Prime Minister\n    Sethy REGENVANU (since 17 December 1991)\nPolitical parties and leaders:\n    Vanuatu Party (VP), Donald KALPOKAS; Union of Moderate Parties (UMP), Serge\n    VOHOR; Melanesian Progressive Party (MPP), Barak SOPE; National United Party\n    (NUP), Walter LINI; Tan Union Party (TUP), Vincent BOULEKONE; Nagriamel\n    Party, Jimmy STEVENS; Friend Melanesian Party, leader NA\nSuffrage:\n    universal at age 18\nElections:\n  Parliament:\n    last held 2 December 1991 (next to be held by November 1995); note - after\n    election, a coalition was formed by the Union of Moderate Parties and the\n    National United Party to form new government on 16 December 1991; seats -\n    (46 total) UMP 19; NUP 10; VP 10; MPP 4; TUP 1; Nagriamel 1; Friend 1\nMember of:\n    ACCT, ACP, AsDB, C, ESCAP, FAO, G-77, IBRD, ICAO, ICFTU, IDA, IFC, IMF, IMO,\n    IOC, ITU, NAM, SPC, SPF, UN, UNCTAD, UNIDO, UPU, WFTU, WHO, WMO\nDiplomatic representation:\n    Vanuatu does not have a mission in Washington\n  US:\n    the ambassador in Papua New Guinea is accredited to Vanuatu\nFlag:\n    two equal horizontal bands of red (top) and green (bottom) with a black\n    isosceles triangle (based on the hoist side) all separated by a black-edged\n    yellow stripe in the shape of a horizontal Y (the two points of the Y face\n    the hoist side and enclose the triangle); centered in the triangle is a\n    boar's tusk encircling two crossed namele leaves, all in yellow\n\n:Vanuatu Economy\n\nOverview:\n    The economy is based primarily on subsistence farming which provides a\n    living for about 80% of the population. Fishing and tourism are the other\n    mainstays of the economy. Mineral deposits are negligible; the country has\n    no known petroleum deposits. A small light industry sector caters to the\n    local market. Tax revenues come mainly from import duties.\nGDP:\n    exchange rate conversion - $142 million, per capita $900 (1988 est.); real\n    growth rate 6% (1990)\nInflation rate (consumer prices):\n    5% (1990)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $90.0 million; expenditures $103.0 million, including capital\n    expenditures of $45.0 million (1989 est.)\nExports:\n    $15.6 million (f.o.b., 1990 est.)\n  commodities:\n    copra 59%, cocoa 11%, meat 9%, fish 8%, timber 4%\n  partners:\n    Netherlands, Japan, France, New Caledonia, Belgium\nImports:\n    $60.4 million (f.o.b., 1990 est.)\n  commodities:\n    machines and vehicles 25%, food and beverages 23%, basic manufactures 18%,\n    raw materials and fuels 11%, chemicals 6%\n  partners:\n    Australia 36%, Japan 13%, NZ 10%, France 8%, Fiji 8%\nExternal debt:\n    $30 million (1990 est.)\nIndustrial production:\n    growth rate NA%; accounts for about 10% of GDP\nElectricity:\n    17,000 kW capacity; 30 million kWh produced, 180 kWh per capita (1990)\nIndustries:\n    food and fish freezing, wood processing, meat canning\nAgriculture:\n    accounts for 40% of GDP; export crops - copra, cocoa, coffee, and fish;\n    subsistence crops - copra, taro, yams, coconuts, fruits, and vegetables\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $606 million\nCurrency:\n    vatu (plural - vatu); 1 vatu (VT) = 100 centimes\nExchange rates:\n    vatu (VT) per US$1 - 112.55 (March 1992), 111.68 (1991), 116.57 (1990),\n    116.04 (1989), 104.43 (1988), 109.85 (1987)\nFiscal year:\n    calendar year\n\n:Vanuatu Communications\n\nRailroads:\n    none\nHighways:\n    1,027 km total; at least 240 km sealed or all-weather roads\nPorts:\n    Port-Vila, Luganville, Palikoulo, Santu\nMerchant marine:\n    121 ships (1,000 GRT or over) totaling 2,093,443 GRT/3,168,822 DWT; includes\n    26 cargo, 14 refrigerated cargo, 5 container, 11 vehicle carrier, 1\n    livestock carrier, 5 petroleum tanker, 2 chemical tanker, 3 liquefied gas,\n    51 bulk, 1 combination bulk, 1 passenger, 1 short-sea passenger; note - a\n    flag of convenience registry\nCivil air:\n    no major transport aircraft\nAirports:\n    33 total, 31 usable; 2 with permanent-surface runways; none with runways\n    over 3,659 m; 1 with runways 2,440-3,659 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    broadcast stations - 2 AM, no FM, no TV; 3,000 telephones; satellite ground\n    stations - 1 Pacific Ocean INTELSAT\n\n:Vanuatu Defense Forces\n\nBranches:\n    no military forces; Vanuatu Police Force (VPF), paramilitary Vanuatu Mobile\n    Force (VMF)\nManpower availability:\n    males 15-49, NA; NA fit for military service\nDefense expenditures:\n    $NA, NA% of GDP\n\n:Venezuela Geography\n\nTotal area:\n    912,050 km2\nLand area:\n    882,050 km2\nComparative area:\n    slightly more than twice the size of California\nLand boundaries:\n    4,993 km total; Brazil 2,200 km, Colombia 2,050 km, Guyana 743 km\nCoastline:\n    2,800 km\nMaritime claims:\n  Contiguous zone:\n    15 nm\n  Continental shelf:\n    200 m (depth) or to depth of exploitation\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claims all of Guyana west of the Essequibo river; maritime boundary dispute\n    with Colombia in the Gulf of Venezuela\nClimate:\n    tropical; hot, humid; more moderate in highlands\nTerrain:\n    Andes mountains and Maracaibo lowlands in northwest; central plains\n    (llanos); Guyana highlands in southeast\nNatural resources:\n    crude oil, natural gas, iron ore, gold, bauxite, other minerals, hydropower,\n    diamonds\nLand use:\n    arable land 3%; permanent crops 1%; meadows and pastures 20%; forest and\n    woodland 39%; other 37%; includes irrigated NEGL%\nEnvironment:\n    subject to floods, rockslides, mudslides; periodic droughts; increasing\n    industrial pollution in Caracas and Maracaibo\nNote:\n    on major sea and air routes linking North and South America\n\n:Venezuela People\n\nPopulation:\n    20,675,970 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    4 deaths/1,000 population (1992)\nNet migration rate:\n    1 migrant/1,000 population (1992)\nInfant mortality rate:\n    23 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    71 years male, 78 years female (1992)\nTotal fertility rate:\n    3.3 children born/woman (1992)\nNationality:\n    noun - Venezuelan(s); adjective - Venezuelan\nEthnic divisions:\n    mestizo 67%, white 21%, black 10%, Indian 2%\nReligions:\n    nominally Roman Catholic 96%, Protestant 2%\nLanguages:\n    Spanish (official); Indian dialects spoken by about 200,000 Amerindians in\n    the remote interior\nLiteracy:\n    88% (male 87%, female 90%) age 15 and over can read and write (1981 est.)\nLabor force:\n    5,800,000; services 56%, industry 28%, agriculture 16% (1985)\nOrganized labor:\n    32% of labor force\n\n:Venezuela Government\n\nLong-form name:\n    Republic of Venezuela\nType:\n    republic\nCapital:\n    Caracas\nAdministrative divisions:\n    21 states (estados, singular - estado), 1 territory* (territorios, singular\n    - territorio), 1 federal district** (distrito federal), and 1 federal\n    dependence*** (dependencia federal); Amazonas*, Anzoategui, Apure, Aragua,\n    Barinas, Bolivar, Carabobo, Cojedes, Delta Amacuro, Dependencias\n    Federales***, Distrito Federal**, Falcon, Guarico, Lara, Merida, Miranda,\n    Monagas, Nueva Esparta, Portuguesa, Sucre, Tachira, Trujillo, Yaracuy,\n    Zulia; note - the federal dependence consists of 11 federally controlled\n    island groups with a total of 72 individual islands\nIndependence:\n    5 July 1811 (from Spain)\nConstitution:\n    23 January 1961\nLegal system:\n    based on Napoleonic code; judicial review of legislative acts in Cassation\n    Court only; has not accepted compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 5 July (1811)\nExecutive branch:\n    president, Council of Ministers (cabinet)\nLegislative branch:\n    bicameral Congress of the Republic (Congreso de la Republica) consists of an\n    upper chamber or Senate (Senado) and a lower chamber or Chamber of Deputies\n    (Camara de Diputados)\nJudicial branch:\n    Supreme Court of Justice (Corte Suprema de Justica)\nLeaders:\n  Chief of State and Head of Government:\n    President Carlos Andres PEREZ (since 2 February 1989)\nPolitical parties and leaders:\n    Social Christian Party (COPEI), Hilarion CARDOZO, president, and Eduardo\n    FERNANDEZ, secretary general; Democratic Action (AD), Humberto CELLI,\n    president, and Luis ALFARO Ucero, secretary general; Movement Toward\n    Socialism (MAS), Argelia LAYA, president, and Freddy MUNOZ, secretary\n    general\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 4 December 1988 (next to be held NA December 1993); results -\n    Carlos Andres PEREZ (AD) 54.6%, Eduardo FERNANDEZ (COPEI) 41.7%, other 3.7%\n  Senate:\n    last held 4 December 1988 (next to be held NA December 1993); results -\n    percent of vote by party NA; seats - (49 total) AD 23, COPEI 22, other 4;\n    note - 3 former presidents (1 from AD, 2 from COPEI) hold lifetime senate\n    seats\n  Chamber of Deputies:\n    last held 4 December 1988 (next to be held NA December 1993); results - AD\n    43.7%, COPEI 31.4%, MAS 10.3%, other 14.6%; seats - (201 total) AD 97, COPEI\n    67, MAS 18, other 19\nCommunists:\n    10,000 members (est.)\n\n:Venezuela Government\n\nOther political or pressure groups:\n    FEDECAMARAS, a conservative business group; Venezuelan Confederation of\n    Workers, the Democratic Action - dominated labor organization\nMember of:\n    AG, CDB, CG, ECLAC, FAO, G-3, G-11, G-19, G-24, G-77, GATT, IADB, IAEA,\n    IBRD, ICAO, ICC, ICFTU, IFAD, IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC,\n    IOM, ISO, ITU, LAES, LAIA, LORCS, NAM, OAS, OPANAL, OPEC, PCA, RG, UN,\n    UNCTAD, UNESCO, UNHCR, UNIDO, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Simon Alberto CONSALVI Bottaro; Chancery at 1099 30th Street NW,\n    Washington, DC 20007; telephone (202) 342-2214; there are Venezuelan\n    Consulates General in Baltimore, Boston, Chicago, Houston, Miami, New\n    Orleans, New York, Philadelphia, San Francisco, and San Juan (Puerto Rico)\n  US:\n    Ambassador Michael Martin SKOL; Embassy at Avenida Francisco de Miranda and\n    Avenida Principal de la Floresta, Caracas (mailing address is P. O. Box\n    62291, Caracas 1060-A, or APO AA 34037); telephone [58] (2) 285-2222; FAX\n    [58] (2) 285-0336; there is a US Consulate in Maracaibo\nFlag:\n    three equal horizontal bands of yellow (top), blue, and red with the coat of\n    arms on the hoist side of the yellow band and an arc of seven white\n    five-pointed stars centered in the blue band\n\n:Venezuela Economy\n\nOverview:\n    Petroleum is the cornerstone of the economy and accounted for 23% of GDP,\n    80% of central government revenues, and 80% of export earnings in 1991.\n    President PEREZ introduced an economic readjustment program when he assumed\n    office in February 1989. Lower tariffs and price supports, a free market\n    exchange rate, and market-linked interest rates threw the economy into\n    confusion, causing an 8% decline in GDP in 1989. However, the economy\n    recovered part way in 1990, and grew by 9.2% in 1991, led by the petroleum\n    sector.\nGDP:\n    exchange rate conversion - $52.3 billion, per capita $2,590; real growth\n    rate 9.2% (1991 est.)\nInflation rate (consumer prices):\n    30.7% (1991 est.)\nUnemployment rate:\n    9.3% (1991 est.)\nBudget:\n    revenues $13.2 billion; expenditures $13.1 billion, including capital\n    expenditures of $NA (1991)\nExports:\n    $15.1 billion (f.o.b., 1991 est.)\n  commodities:\n    petroleum 80%, bauxite and aluminum, iron ore, agricultural products, basic\n    manufactures\n  partners:\n    US 50.7%, Europe 13.7%, Japan 4.0% (1989)\nImports:\n    $10.2 billion (f.o.b., 1991 est.)\n  commodities:\n    foodstuffs, chemicals, manufactures, machinery and transport equipment\n  partners:\n    US 44%, FRG 8.0%, Japan 4%, Italy 7%, Canada 2% (1989)\nExternal debt:\n    $30.9 billion (1991)\nIndustrial production:\n    growth rate 5.4% (1991 est.); accounts for one-fourth of GDP, including\n    petroleum\nElectricity:\n    20,128,000 kW capacity; 55,753 million kWh produced, 2,762 kWh per capita\n    (1991)\nIndustries:\n    petroleum, iron-ore mining, construction materials, food processing,\n    textiles, steel, aluminum, motor vehicle assembly\nAgriculture:\n    accounts for 6% of GDP and 16% of labor force; products - corn, sorghum,\n    sugarcane, rice, bananas, vegetables, coffee, beef, pork, milk, eggs, fish;\n    not self-sufficient in food other than meat\nIllicit drugs:\n    illicit producer of cannabis and coca leaf for the international drug trade\n    on a small scale; however, large quantities of cocaine transit the country\n    from Colombia\nEconomic aid:\n    US commitments, including Ex-Im (FY70-86), $488 million; Communist countries\n    (1970-89), $10 million\nCurrency:\n    bolivar (plural - bolivares); 1 bolivar (Bs) = 100 centimos\nExchange rates:\n    bolivares (Bs) per US$1 - 65.39 (March 1992), 56.82 (1991), 46.90 (1990),\n    34.68 (1989), 14.50 (fixed rate 1987-88)\n\n:Venezuela Economy\n\nFiscal year:\n    calendar year\n\n:Venezuela Communications\n\nRailroads:\n    542 km total; 363 km 1.435-meter standard gauge all single track, government\n    owned; 179 km 1.435-meter gauge, privately owned\nHighways:\n    77,785 km total; 22,780 km paved, 24,720 km gravel, 14,450 km earth roads,\n    and 15,835 km unimproved earth\nInland waterways:\n    7,100 km; Rio Orinoco and Lago de Maracaibo accept oceangoing vessels\nPipelines:\n    crude oil 6,370 km; petroleum products 480 km; natural gas 4,010 km\nPorts:\n    Amuay Bay, Bajo Grande, El Tablazo, La Guaira, Puerto Cabello, Puerto Ordaz\nMerchant marine:\n    57 ships (1,000 GRT or over) totaling 790,108 GRT/1,257,637 DWT; includes 1\n    short-sea passenger, 1 passenger cargo, 22 cargo, 1 container, 2\n    roll-on/roll-off, 17 petroleum tanker, 1 chemical tanker, 2 liquefied gas, 8\n    bulk, 1 vehicle carrier, 1 combination bulk\nCivil air:\n    56 major transport aircraft\nAirports:\n    308 total, 287 usable; 135 with permanent-surface runways; none with runways\n    over 3,659 m; 14 with runways 2,440-3,659 m; 88 with runways 1,220-2,439 m\nTelecommunications:\n    modern and expanding; 1,440,000 telephones; broadcast stations - 181 AM, no\n    FM, 59 TV, 26 shortwave; 3 submarine coaxial cables; satellite ground\n    stations - 1 Atlantic Ocean INTELSAT and 3 domestic\n\n:Venezuela Defense Forces\n\nBranches:\n    Ground Forces (Army), Naval Forces (including Navy, Marines, Coast Guard),\n    Air Forces, Armed Forces of Cooperation (National Guard)\nManpower availability:\n    males 15-49, 5,365,880; 3,884,558 fit for military service; 210,737 reach\n    military age (18) annually\nDefense expenditures:\n    exchange rate conversion - $1.95 billion, 4% of GDP (1991)\n\n:Vietnam Geography\n\nTotal area:\n    329,560 km2\nLand area:\n    325,360\nComparative area:\n    slightly larger than New Mexico\nLand boundaries:\n    3,818 km total; Cambodia 982 km, China 1,281 km, Laos 1,555 km\nCoastline:\n    3,444 km; excludes islands\nMaritime claims:\n  Contiguous zone:\n    24 nm\n  Continental shelf:\n    edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    maritime boundary with Cambodia not defined; involved in a complex dispute\n    over the Spratly Islands with China, Malaysia, Philippines, Taiwan, and\n    possibly Brunei; unresolved maritime boundary with Thailand; maritime\n    boundary dispute with China in the Gulf of Tonkin; Paracel Islands occupied\n    by China but claimed by Vietnam and Taiwan\nClimate:\n    tropical in south; monsoonal in north with hot, rainy season (mid-May to\n    mid-September) and warm, dry season (mid-October to mid-March)\nTerrain:\n    low, flat delta in south and north; central highlands; hilly, mountainous in\n    far north and northwest\nNatural resources:\n    phosphates, coal, manganese, bauxite, chromate, offshore oil deposits,\n    forests\nLand use:\n    arable land 22%; permanent crops 2%; meadows and pastures 1%; forest and\n    woodland 40%; other 35%; includes irrigated 5%\nEnvironment:\n    occasional typhoons (May to January) with extensive flooding\n\n:Vietnam People\n\nPopulation:\n    68,964,018 (July 1992), growth rate 2.0% (1992)\nBirth rate:\n    29 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -1 migrant/1,000 population (1992)\nInfant mortality rate:\n    47 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    63 years male, 67 years female (1992)\nTotal fertility rate:\n    3.6 children born/woman (1992)\nNationality:\n    noun - Vietnamese (singular and plural); adjective - Vietnamese\nEthnic divisions:\n    predominantly Vietnamese 85-90%; Chinese 3%; ethnic minorities include\n    Muong, Thai, Meo, Khmer, Man, Cham; other mountain tribes\nReligions:\n    Buddhist, Confucian, Taoist, Roman Catholic, indigenous beliefs, Islamic,\n    Protestant\nLanguages:\n    Vietnamese (official), French, Chinese, English, Khmer, tribal languages\n    (Mon-Khmer and Malayo-Polynesian)\nLiteracy:\n    88% (male 92%, female 84%) age 15 and over can read and write (1990 est.)\nLabor force:\n    32.7 million; agricultural 65%, industrial and service 35% (1990 est.)\nOrganized labor:\n    reportedly over 90% of wage and salary earners are members of the Vietnam\n    Federation of Trade Unions (VFTU)\n\n:Vietnam Government\n\nLong-form name:\n    Socialist Republic of Vietnam; abbreviated SRV\nType:\n    Communist state\nCapital:\n    Hanoi\nAdministrative divisions:\n    50 provinces (tinh, singular and plural), 3 municipalities* (thanh pho,\n    singular and plural); An Giang, Ba Ria-Vung Tau, Bac Thai, Ben Tre, Binh\n    Dinh, Binh Thuan, Can Tho, Cao Bang, Dac Las, Dong Nai, Dong Tay, Gia Lai,\n    Ha Bac, Ha Giang, Ha Noi*, Ha Tay, Ha Tinh, Hai Hung, Hai Phong*, Ho Chi\n    Minh*, Hoa Binh, Khanh Hoa, Kien Giang, Kon Tum, Lai Chau, Lam Dong, Lang\n    Son, Lao Cai, Long An, Minh Hai, Nam Ha, Nghe An, Ninh Binh, Ninh Thuan, Phu\n    Yen, Quang Binh, Quang Nam-Da Nang, Quang Ngai, Quang Ninh, Quang Tri, Soc\n    Trang, Son La, Song Be, Tay Ninh, Thai Binh, Thanh Hoa, Thua Thien, Tien\n    Giang, Tra Vinh, Tuyen Quang, Vinh Long, Vinh Phu, Yen Bai; note -\n    diacritical marks are not included\nIndependence:\n    2 September 1945 (from France)\nConstitution:\n    18 December 1980; new Constitution to be approved Spring 1992\nLegal system:\n    based on Communist legal theory and French civil law system\nNational holiday:\n    Independence Day, 2 September (1945)\nExecutive branch:\n    president, prime minister, deputy prime minister, Council of Ministers\nLegislative branch:\n    unicameral National Assembly (Quoc-Hoi)\nJudicial branch:\n    Supreme People's Court\nLeaders:\n  Chief of State:\n    President Vo Chi CONG (since 18 June 1987)\n  Head of Government:\n    Prime Minister Vo Van KIET (since 9 August 1991); Deputy Prime Minister Phan\n    Van KHAI (since 10 August 1991)\nPolitical parties and leaders:\n    only party - Vietnam Communist Party (VCP), DO MUOI\nSuffrage:\n    universal at age 18\nElections:\n  National Assembly:\n    last held 19 April 1987 (next to be held 19 July 1992); results - VCP is the\n    only party; seats - (496 total) VCP or VCP-approved 496; note - number of\n    seats under new government 395\nCommunists:\n    nearly 2 million\nMember of:\n    ACCT, AsDB, ESCAP, FAO, G-77, IAEA, IBEC, IBRD, ICAO, IDA, IFAD, IFC, IIB,\n    IMF, IMO, INTELSAT, IOC, ISO, ITU, LORCS, NAM, UN, UNCTAD, UNESCO, UNIDO,\n    UPU, WCL, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    none\nFlag:\n    red with a large yellow five-pointed star in the center\n\n:Vietnam Economy\n\nOverview:\n    This is a formerly centrally planned, developing economy with extensive\n    government ownership and control of productive facilities. The economy is\n    primarily agricultural; the sector employs about 70% of the labor force and\n    accounts for half of GNP. Rice is the staple crop; substantial amounts of\n    maize, sorghum, cassava, and sweet potatoes are also grown. The government\n    permits sale of surplus grain on the open market. Most of the mineral\n    resources are located in the north, including coal, which is an important\n    export item. Oil was discovered off the southern coast in 1986 with\n    production reaching 70,000 barrels per day in 1991 and expected to increase\n    in the years ahead. Following the end of the war in 1975, heavy-handed\n    government measures undermined efforts at an efficient merger of the\n    agricultural resources of the south and the industrial resources of the\n    north. The economy remains heavily dependent on foreign aid and has received\n    assistance from UN agencies, France, Australia, Sweden, and Communist\n    countries. Inflation, although down from recent triple-digit levels, is\n    still a major weakness and is showing signs of accelerating upwards again.\n    Per capita output is among the world's lowest. Since late 1986 the\n    government has sponsored a broad reform program that seeks to turn more\n    economic activity over to the private sector.\nGNP:\n    exchange rate conversion - $15 billion, per capita $220; real growth rate\n    2.5% (1991 est.)\nInflation rate (consumer prices):\n    80% (1991 est.)\nUnemployment rate:\n    30% (1991 est.)\nBudget:\n    revenues $551 million; expenditures $830 million, including capital\n    expenditures of $58 million (1990)\nExports:\n    $1.8 billion (f.o.b., 1991)\n  commodities:\n    agricultural and handicraft products, coal, minerals, crude petroleum, ores,\n    seafood\n  partners:\n    Japan, Singapore, Thailand, Eastern Europe, USSR\nImports:\n    $1.9 billion (c.i.f., 1991)\n  commodities:\n    petroleum products, steel products, railroad equipment, chemicals,\n    medicines, raw cotton, fertilizer, grain\n  partners:\n    Japan, Singapore, Thailand, Eastern Europe, USSR\nExternal debt:\n    $16.8 billion (1990 est.)\nIndustrial production:\n    growth rate -3.6% (1989); accounts for 30% of GNP\nElectricity:\n    3,300,000 kW capacity; 9,200 million kWh produced, 140 kWh per capita (1991)\nIndustries:\n    food processing, textiles, machine building, mining, cement, chemical\n    fertilizer, glass, tires, oil, fishing\nAgriculture:\n    accounts for half of GNP; paddy rice, corn, potatoes make up 50% of farm\n    output; commercial crops (rubber, soybeans, coffee, tea, bananas) and animal\n    products other 50%; since 1989 self-sufficient in food staple rice; fish\n    catch of 943,100 metric tons (1989 est.)\n\n:Vietnam Economy\n\nEconomic aid:\n    US commitments, including Ex-Im (FY70-74), $3.1 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.9 billion; OPEC\n    bilateral aid (1979-89), $61 million; Communist countries (1970-89), $12.0\n    billion\nCurrency:\n    new dong (plural - new dong); 1 new dong (D) = 100 xu\nExchange rates:\n    new dong (D) per US$1 - 11,100 (May 1992), 8,100 (July 1991), 7,280\n    (December 1990), 3,996 (March 1990), 2,047 (1988), 225 (1987); note -\n    1985-89 figures are end of year\nFiscal year:\n    calendar year\n\n:Vietnam Communications\n\nRailroads:\n    3,059 km total; 2,454 1.000-meter gauge, 151 km 1.435-meter (standard)\n    gauge, 230 km dual gauge (three rails), and 224 km not restored to service\n    after war damage\nHighways:\n    about 85,000 km total; 9,400 km paved, 48,700 km gravel or improved earth,\n    26,900 km unimproved earth\nInland waterways:\n    about 17,702 km navigable; more than 5,149 km navigable at all times by\n    vessels up to 1.8 meter draft\nPipelines:\n    petroleum products 150 km\nPorts:\n    Da Nang, Haiphong, Ho Chi Minh City\nMerchant marine:\n    89 ships (1,000 GRT or over) totaling 400,430 GRT/643,877 DWT; includes 73\n    cargo 4 refrigerated cargo, 1 roll-on/roll-off, 8 petroleum tanker, 3 bulk;\n    note - Vietnam owns 11 cargo ships (1,000 GRT or over) totaling 134,719 DWT\n    under the registries of Panama and Malta\nCivil air:\n    controlled by military\nAirports:\n    100 total, 100 usable; 50 with permanent-surface runways; 10 with runways\n    2,440-3,659 m; 20 with runways 1,220-2,439 m\nTelecommunications:\n    25 telephones per 10,000 persons (1991); broadcast stations - 16 AM, 1 FM, 2\n    TV; 2,300,000 TV sets; 6,000,000 radio receivers; 3 satellite earth stations\n\n:Vietnam Defense Forces\n\nBranches:\n    Ground, Navy (including Naval Infantry), Air Force\nManpower availability:\n    males 15-49, 16,839,400; 10,739,128 fit for military service; 787,026 reach\n    military age (17) annually\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GNP\n\n:Virgin Islands Geography\n\nTotal area:\n    352 km2\nLand area:\n    349 km2\nComparative area:\n    slightly less than twice the size of Washington, DC\nLand boundaries:\n    none\nCoastline:\n    188 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    subtropical, tempered by easterly tradewinds, relatively low humidity,\n    little seasonal temperature variation; rainy season May to November\nTerrain:\n    mostly hilly to rugged and mountainous with little level land\nNatural resources:\n    sun, sand, sea, surf\nLand use:\n    arable land 15%; permanent crops 6%; meadows and pastures 26%; forest and\n    woodland 6%; other 47%\nEnvironment:\n    rarely affected by hurricanes; subject to frequent severe droughts, floods,\n    earthquakes; lack of natural freshwater resources\nNote:\n    important location 1,770 km southeast of Miami and 65 km east of Puerto\n    Rico, along the Anegada Passage - a key shipping lane for the Panama Canal;\n    Saint Thomas has one of the best natural, deepwater harbors in the Caribbean\n\n:Virgin Islands People\n\nPopulation:\n    98,942 (July 1992), growth rate -1.0% (1992)\nBirth rate:\n    21 births/1,000 population (1992)\nDeath rate:\n    5 deaths/1,000 population (1992)\nNet migration rate:\n    -26 migrants/1,000 population (1992)\nInfant mortality rate:\n    13 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    74 years male, 77 years female (1992)\nTotal fertility rate:\n    2.7 children born/woman (1992)\nNationality:\n    noun - Virgin Islander(s); adjective - Virgin Islander; US citizens\nEthnic divisions:\n    West Indian (45% born in the Virgin Islands and 29% born elsewhere in the\n    West Indies) 74%, US mainland 13%, Puerto Rican 5%, other 8%; black 80%,\n    white 15%, other 5%; Hispanic origin 14%\nReligions:\n    Baptist 42%, Roman Catholic 34%, Episcopalian 17%, other 7%\nLanguages:\n    English (official), but Spanish and Creole are widely spoken\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    45,500 (1988)\nOrganized labor:\n    90% of the government labor force\n\n:Virgin Islands Government\n\nLong-form name:\n    Virgin Islands of the United States\nType:\n    organized, unincorporated territory of the US administered by the Office of\n    Territorial and International Affairs, US Department of the Interior\nCapital:\n    Charlotte Amalie\nAdministrative divisions:\n    none (territory of the US)\nIndependence:\n    none (territory of the US)\nConstitution:\n    Revised Organic Act of 22 July 1954\nLegal system:\n    based on US\nNational holiday:\n    Transfer Day (from Denmark to US), 31 March (1917)\nExecutive branch:\n    US president, popularly elected governor and lieutenant governor\nLegislative branch:\n    unicameral Senate\nJudicial branch:\n    US District Court handles civil matters over $50,000, felonies (persons 15\n    years of age and over), and federal cases; Territorial Court handles civil\n    matters up to $50,000 small claims, juvenile, domestic, misdemeanors, and\n    traffic cases\nLeaders:\n  Chief of State and Head of Government:\n    President George BUSH (since 20 January 1989); Governor Alexander A.\n    FARRELLY (since 5 January 1987); Lieutenant Governor Derek M. HODGE (since 5\n    January 1987)\nPolitical parties and leaders:\n    Democratic Party, Marilyn STAPLETON; Independent Citizens' Movement (ICM),\n    Virdin C. BROWN; Republican Party, Charlotte-Poole DAVIS\nSuffrage:\n    universal at age 18\nElections:\n  Governor:\n    last held 6 November 1990 (next to be held November 1994); results -\n    Governor Alexander FARRELLY (Democratic Party) 56.5% defeated Juan LUIS\n    (independent) 38.5%\n  Senate:\n    last held 6 November 1990 (next to be held 3 November 1992); results -\n    percent of vote by party NA; seats - (15 total) number of seats by party NA\n  US House of Representatives:\n    last held 6 November 1990 (next to be held 3 November 1992); results - Ron\n    DE LUGO reelected as nonvoting delegate seats - (1 total); seat by party NA;\n    note - the Virgin Islands elects one nonvoting representative to the US\n    House of Representatives\nMember of:\n    ECLAC (associate), IOC, applied for associate membership in OECS in February\n    1990\nDiplomatic representation:\n    none (territory of the US)\nFlag:\n    white with a modified US coat of arms in the center between the large blue\n    initials V and I; the coat of arms shows an eagle holding an olive branch in\n    one talon and three arrows in the other with a superimposed shield of\n    vertical red and white stripes below a blue panel\n\n:Virgin Islands Economy\n\nOverview:\n    Tourism is the primary economic activity, accounting for more than 70% of\n    GDP and 70% of employment. The manufacturing sector consists of textile,\n    electronics, pharmaceutical, and watch assembly plants. The agricultural\n    sector is small, most food being imported. International business and\n    financial services are a small but growing component of the economy. The\n    world's largest petroleum refinery is at Saint Croix.\nGDP:\n    purchasing power equivalent - $1.2 billion, per capita $11,000; real growth\n    rate NA% (1987)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    2.0% (1990)\nBudget:\n    revenues $364.4 million; expenditures $364.4 million, including capital\n    expenditures of $NA (FY90)\nExports:\n    $2.2 billion (f.o.b., 1988)\n  commodities:\n    refined petroleum products\n  partners:\n    US, Puerto Rico\nImports:\n    $3.7 billion (c.i.f., 1988)\n  commodities:\n    crude oil, foodstuffs, consumer goods, building materials\n  partners:\n    US, Puerto Rico\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 12%\nElectricity:\n    358,000 kW capacity; 532 million kWh produced, 5,360 kWh per capita (1990)\nIndustries:\n    tourism, petroleum refining, watch assembly, rum distilling, construction,\n    pharmaceuticals, textiles, electronics\nAgriculture:\n    truck gardens, food crops (small scale), fruit, sorghum, Senepol cattle\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89), $42\n    million\nCurrency:\n    US currency is used\nExchange rates:\n    US currency is used\nFiscal year:\n    1 October - 30 September\n\n:Virgin Islands Communications\n\nHighways:\n    856 km total\nPorts:\n    Saint Croix - Christiansted, Frederiksted; Saint Thomas - Long Bay, Crown\n    Bay, Red Hook; Saint John - Cruz Bay\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways 1,220-2,439 m;\n    international airports on Saint Thomas and Saint Croix\nTelecommunications:\n    44,280 telephones; broadcast stations - 4 AM, 8 FM, 4 TV; modern system\n    using fiber-optic cable, submarine cable, microwave radio, and satellite\n    facilities; 98,000 radios; 63,000 TV (1988)\n\n:Virgin Islands Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Wake Island Geography\n\nTotal area:\n    6.5 km2\nLand area:\n    6.5 km2\nComparative area:\n    about 11 times the size of The Mall in Washington, DC\nLand boundaries:\n    none\nCoastline:\n    19.3 km\nMaritime claims:\n  Contiguous zone:\n    12 nm\n  Continental shelf:\n    200 m (depth)\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    claimed by the Republic of the Marshall Islands\nClimate:\n    tropical\nTerrain:\n    atoll of three coral islands built up on an underwater volcano; central\n    lagoon is former crater, islands are part of the rim; average elevation less\n    than four meters\nNatural resources:\n    none\nLand use:\n    arable land 0%; permanent crops 0%; meadows and pastures 0%; forest and\n    woodland 0%; other 100%\nEnvironment:\n    subject to occasional typhoons\nNote:\n    strategic location 3,700 km west of Honolulu in the North Pacific Ocean,\n    about two-thirds of the way between Hawaii and the Northern Mariana Islands;\n    emergency landing location for transpacific flights\n\n:Wake Island People\n\nPopulation:\n    no indigenous inhabitants; 381 temporary population (US Air Force personnel,\n    civilian weather service personnel, and US and Thai contractors) (January\n    1992); note - population peaked about 1970 with over 1,600 persons during\n    the Vietnam conflict\n\n:Wake Island Government\n\nLong-form name:\n    none\nType:\n    unincorporated territory of the US administered by the US Air Force (under\n    an agreement with the US Department of Interior) since 24 June 1972\nCapital:\n    none; administered from Washington, DC\nFlag:\n    the US flag is used\n\n:Wake Island Economy\n\nOverview:\n    Economic activity is limited to providing services to US military personnel\n    and contractors located on the island. All food and manufactured goods must\n    be imported.\nElectricity:\n    supplied by US military\n\n:Wake Island Communications\n\nPorts:\n    none; because of the reefs, there are only two offshore anchorages for large\n    ships\nAirports:\n    1 with permanent-surface runways 2,440-3,659 m\nTelecommunications:\n    underwater cables to Guam and through Midway to Honolulu; 1 Autovon circuit\n    off the Overseas Telephone System (OTS); Armed Forces Radio/Television\n    Service (AFRTS) radio and television service provided by satellite;\n    broadcast stations - 1 AM, no FM, no TV\nNote:\n    formerly an important commercial aviation base, now used only by US military\n    and some commercial cargo planes\n\n:Wake Island Defense Forces\n\nNote:\n    defense is the responsibility of the US\n\n:Wallis and Futuna Geography\n\nTotal area:\n    274 km2\nLand area:\n    274 km2; includes Ile Uvea (Wallis Island), Ile Futuna (Futuna Island), Ile\n    Alofi, and 20 islets\nComparative area:\n    slightly larger than Washington, DC\nLand boundaries:\n    none\nCoastline:\n    129 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; hot, rainy season (November to April); cool, dry season (May to\n    October)\nTerrain:\n    volcanic origin; low hills\nNatural resources:\n    negligible\nLand use:\n    arable land 5%; permanent crops 20%; meadows and pastures 0%; forest and\n    woodland 0%; other 75%\nEnvironment:\n    both island groups have fringing reefs\nNote:\n    located 4,600 km southwest of Honolulu in the South Pacific Ocean about\n    two-thirds of the way from Hawaii to New Zealand\n\n:Wallis and Futuna People\n\nPopulation:\n    17,095 (July 1992), growth rate 3.0% (1992)\nBirth rate:\n    27 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    8 migrants/1,000 population (1992)\nInfant mortality rate:\n    29 deaths/1,000 population (1992)\nLife expectancy at birth:\n    70 years male, 71 years female (1992)\nTotal fertility rate:\n    3.6 children born/woman (1992)\nNationality:\n    noun - Wallisian(s), Futunan(s), or Wallis and Futuna Islanders; adjective -\n    Wallisian, Futunan, or Wallis and Futuna Islander\nEthnic divisions:\n    almost entirely Polynesian\nReligions:\n    largely Roman Catholic\nLanguages:\n    French, Wallisian (indigenous Polynesian language)\nLiteracy:\n    50% (male 50%, female 51%) at all ages can read and write (1969)\nLabor force:\n    NA\nOrganized labor:\n    NA\n\n:Wallis and Futuna Government\n\nLong-form name:\n    Territory of the Wallis and Futuna Islands\nType:\n    overseas territory of France\nCapital:\n    Mata Utu (on Ile Uvea)\nAdministrative divisions:\n    none (overseas territory of France)\nIndependence:\n    none (overseas territory of France)\nConstitution:\n    28 September 1958 (French Constitution)\nLegal system:\n    French\nNational holiday:\n    Taking of the Bastille, 14 July (1789)\nExecutive branch:\n    French president, chief administrator; note - there are three traditional\n    kings with limited powers\nLegislative branch:\n    unicameral Territorial Assembly (Assemblee Territoriale)\nJudicial branch:\n    none; justice generally administered under French law by the chief\n    administrator, but the three traditional kings administer customary law and\n    there is a magistrate in Mata Utu\nLeaders:\n  Chief of State:\n    President Francois MITTERRAND (since 21 May 1981)\n  Head of Government:\n    Chief Administrator Robert POMMIES (since 26 September 1990)\nPolitical parties and leaders:\n    Rally for the Republic (RPR); Union Populaire Locale (UPL); Union Pour la\n    Democratie Francaise (UDF); Lua kae tahi (Giscardians); Mouvement des\n    Radicaux de Gauche (MRG)\nSuffrage:\n    universal adult at age 18\nElections:\n  Territorial Assembly:\n    last held 15 March 1987 (next to be held NA March 1992); results - percent\n    of vote by party NA; seats - (20 total) RPR 7, UPL 5, UDF 4, UNF 4\n  French Senate:\n    last held NA September 1989 (next to be held by NA September 1992); results\n    - percent of vote by party NA; seats - (1 total) RPR 1\n  French National Assembly:\n    last held 12 June 1988 (next to be held by NA September 1992); results -\n    percent of vote by party NA; seats - (1 total) MRG 1\nMember of:\n    FZ, SPC\nDiplomatic representation:\n    as an overseas territory of France, local interests are represented in the\n    US by France\nFlag:\n    the flag of France is used\n\n:Wallis and Futuna Economy\n\nOverview:\n    The economy is limited to traditional subsistence agriculture, with about\n    80% of the labor force earning its livelihood from agriculture (coconuts and\n    vegetables), livestock (mostly pigs), and fishing. About 4% of the\n    population is employed in government. Revenues come from French Government\n    subsidies, licensing of fishing rights to Japan and South Korea, import\n    taxes, and remittances from expatriate workers in New Caledonia. Wallis and\n    Futuna imports food, fuel, clothing, machinery, and transport equipment, but\n    its exports are negligible, consisting of copra and handicrafts.\nGDP:\n    exchange rate conversion - $25 million, per capita $1,500; real growth rate\n    NA% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $2.7 million; expenditures $2.7 million, including capital\n    expenditures of $NA (1983)\nExports:\n    negligible\n  commodities:\n    copra, handicrafts\n  partners:\n    NA\nImports:\n    $13.3 million (c.i.f., 1984)\n  commodities:\n    foodstuffs, manufactured goods, transportation equipment, fuel\n  partners:\n    France, Australia, New Zealand\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    1,200 kW capacity; 1 million kWh produced, 70 kWh per capita (1990)\nIndustries:\n    copra, handicrafts, fishing, lumber\nAgriculture:\n    dominated by coconut production, with subsistence crops of yams, taro,\n    bananas, and herds of pigs and goats\nEconomic aid:\n    Western (non-US) countries, ODA and OOF bilateral commitments (1970-89),\n    $118 million\nCurrency:\n    Comptoirs Francais du Pacifique franc (plural - francs); 1 CFP franc (CFPF)\n    = 100 centimes\nExchange rates:\n    Comptoirs Francais du Pacifique francs (CFPF) per US$1 - 102.53 (March\n    1992), 102.57 (1991), 99.0 (1990), 115.99 (1989), 108.30 (1988), 109.27\n    (1987); note - linked at the rate of 18.18 to the French franc\nFiscal year:\n    NA\n\n:Wallis and Futuna Communications\n\nHighways:\n    100 km on Ile Uvea, 16 km sealed; 20 km earth surface on Ile Futuna\nInland waterways:\n    none\nPorts:\n    Mata-Utu, Leava\nAirports:\n    2 total; 2 usable; 1 with permanent-surface runways; none with runways over\n    2,439 m; 2 with runways 1,220-2,439 m\nTelecommunications:\n    225 telephones; broadcast stations - 1 AM, no FM, no TV\n\n:Wallis and Futuna Defense Forces\n\nNote:\n    defense is the responsibility of France\n\n:West Bank Header\n\nNote:\n    The war between Israel and the Arab states in June 1967 ended with Israel in\n    control of the West Bank and the Gaza Strip, the Sinai, and the Golan\n    Heights. As stated in the 1978 Camp David Accords and reaffirmed by\n    President Bush's post-Gulf crisis peace initiative, the final status of the\n    West Bank and the Gaza Strip, their relationship with their neighbors, and a\n    peace treaty between Israel and Jordan are to be negotiated among the\n    concerned parties. Camp David further specifies that these negotiations will\n    resolve the respective boundaries. Pending the completion of this process,\n    it is US policy that the final status of the West Bank and the Gaza Strip\n    has yet to be determined. In the view of the US, the term West Bank\n    describes all of the area west of the Jordan River under Jordanian\n    administration before the 1967 Arab-Israeli war. However, with respect to\n    negotiations envisaged in the framework agreement, it is US policy that a\n    distinction must be made between Jerusalem and the rest of the West Bank\n    because of the city's special status and circumstances. Therefore, a\n    negotiated solution for the final status of Jerusalem could be different in\n    character from that of the rest of the West Bank.\n\n:West Bank Geography\n\nTotal area:\n    5,860 km2\nLand area:\n    5,640 km2; includes West Bank, East Jerusalem, Latrun Salient, Jerusalem No\n    Man's Land, and the northwest quarter of the Dead Sea, but excludes Mt.\n    Scopus\nComparative area:\n    slightly larger than Delaware\nLand boundaries:\n    404 km total; Israel 307 km, Jordan 97 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    Israeli occupied with status to be determined\nClimate:\n    temperate, temperature and precipitation vary with altitude, warm to hot\n    summers, cool to mild winters\nTerrain:\n    mostly rugged dissected upland, some vegetation in west, but barren in east\nNatural resources:\n    negligible\nLand use:\n    arable land 27%, permanent crops 0%, meadows and pastures 32%, forest and\n    woodland 1%, other 40%\nEnvironment:\n    highlands are main recharge area for Israel's coastal aquifers\nNote:\n    landlocked; there are 175 Jewish settlements in the West Bank and 14\n    Israeli-built Jewish neighborhoods in East Jerusalem\n\n:West Bank People\n\nPopulation:\n    1,362,464 (July 1992), growth rate 3.1% (1992); in addition, there are\n    95,000 Jewish settlers in the West Bank and 132,000 in East Jerusalem (1992\n    est.)\nBirth rate:\n    35 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    2 migrants/1,000 population (1992)\nInfant mortality rate:\n    37 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    68 years male, 71 years female (1992)\nTotal fertility rate:\n    4.5 children born/woman (1992)\nNationality:\n    NA\nEthnic divisions:\n    Palestinian Arab and other 88%, Jewish 12%\nReligions:\n    Muslim (predominantly Sunni) 80%, Jewish 12%, Christian and other 8%\nLanguages:\n    Arabic, Israeli settlers speak Hebrew, English widely understood\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    NA; excluding Israeli Jewish settlers - small industry, commerce, and\n    business 29.8%, construction 24.2%, agriculture 22.4%, service and other\n    23.6% (1984)\nOrganized labor:\n    NA\n\n:West Bank Government\n\nLong-form name:\n    none\nNote:\n    The West Bank is currently governed by Israeli military authorities and\n    Israeli civil administration. It is US policy that the final status of the\n    West Bank will be determined by negotiations among the concerned parties.\n    These negotiations will determine how the area is to governed.\n\n:West Bank Economy\n\nOverview:\n    Economic progress in the West Bank has been hampered by Israeli military\n    administration and the effects of the Palestinian uprising (intifadah).\n    Industries using advanced technology or requiring sizable investment have\n    been discouraged by a lack of local capital and restrictive Israeli\n    policies. Capital investment consists largely of residential housing, not\n    productive assets that would enable local firms to compete with Israeli\n    industry. A major share of GNP is derived from remittances of workers\n    employed in Israel and Persian Gulf states, but such transfers from the Gulf\n    dropped dramatically after Iraq invaded Kuwait in August 1990. In the wake\n    of the Persian Gulf crisis, many Palestinians have returned to the West\n    Bank, increasing unemployment, and export revenues have plunged because of\n    the loss of markets in Jordan and the Gulf states. Israeli measures to\n    curtail the intifadah also have pushed unemployment up and lowered living\n    standards. The area's economic outlook remains bleak.\nGNP:\n    exchange rate conversion - $1.3 billion, per capita $1,200; real growth rate\n    -10% (1990 est.)\nInflation rate (consumer prices):\n    11% (1991 est.)\nUnemployment rate:\n    15% (1990 est.)\nBudget:\n    revenues $31.0 million; expenditures $36.1 million, including capital\n    expenditures of $NA (FY88)\nExports:\n    $150 million (f.o.b., 1988 est.)\n  commodities:\n    NA\n  partners:\n    Jordan, Israel\nImports:\n    $410 million (c.i.f., 1988 est.)\n  commodities:\n    NA\n  partners:\n    Jordan, Israel\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate 1% (1989); accounts for about 4% of GNP\nElectricity:\n    power supplied by Israel\nIndustries:\n    generally small family businesses that produce cement, textiles, soap,\n    olive-wood carvings, and mother-of-pearl souvenirs; the Israelis have\n    established some small-scale modern industries in the settlements and\n    industrial centers\nAgriculture:\n    accounts for about 15% of GNP; olives, citrus and other fruits, vegetables,\n    beef, and dairy products\nEconomic aid:\n    NA\nCurrency:\n    new Israeli shekel (plural - shekels) and Jordanian dinar (plural - dinars);\n    1 new Israeli shekel (NIS) = 100 new agorot and 1 Jordanian dinar (JD) =\n    1,000 fils\n\n:West Bank Economy\n\nExchange rates:\n    new Israeli shekels (NIS) per US$1 - 2.4019 (March 1992), 2.2791 (1991),\n    2.0162 (1990), 1.9164 (1989), 1.5989 (1988), 1.5946 (1987); Jordanian dinars\n    (JD) per US$1 - 0.6760 (January 1992), 0.6810 (1991), 0.6636 (1990), 0.5704\n    (1989), 0.3709 (1988), 0.3387 (1987)\nFiscal year:\n    previously 1 April - 31 March; FY91 was 1 April - 31 December, and since 1\n    January 1992 the fiscal year has conformed to the calendar year\n\n:West Bank Communications\n\nHighways:\n    small road network, Israelis developing east-west axial highways to service\n    new settlements\nAirports:\n    2 total, 2 usable; 2 with permanent-surface runways; none with runways over\n    2,439 m; 1 with runways 1,220-2,439 m\nTelecommunications:\n    open-wire telephone system currently being upgraded; broadcast stations - no\n    AM, no FM, no TV\n\n:West Bank Defense Forces\n\nBranches:\n    NA\nManpower availability:\n    males 15-49, NA; NA fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Western Sahara Geography\n\nTotal area:\n    266,000 km2\nLand area:\n    266,000 km2\nComparative area:\n    slightly smaller than Colorado\nLand boundaries:\n    2,046 km total; Algeria 42 km, Mauritania 1,561 km, Morocco 443 km\nCoastline:\n    1,110 km\nMaritime claims:\n    contingent upon resolution of sovereignty issue\nDisputes:\n    claimed and administered by Morocco, but sovereignty is unresolved and the\n    UN is attempting to hold a referendum on the issue; the UN-administered\n    cease-fire has been currently in effect since September 1991\nClimate:\n    hot, dry desert; rain is rare; cold offshore currents produce fog and heavy\n    dew\nTerrain:\n    mostly low, flat desert with large areas of rocky or sandy surfaces rising\n    to small mountains in south and northeast\nNatural resources:\n    phosphates, iron ore\nLand use:\n    arable land NEGL%; permanent crops 0%; meadows and pastures 19%; forest and\n    woodland 0%; other 81%\nEnvironment:\n    hot, dry, dust/sand-laden sirocco wind can occur during winter and spring;\n    widespread harmattan haze exists 60% of time, often severely restricting\n    visibility; sparse water and arable land\n\n:Western Sahara People\n\nPopulation:\n    201,467 (July 1992), growth rate 2.6% (1992)\nBirth rate:\n    48 births/1,000 population (1992)\nDeath rate:\n    20 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    159 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    43 years male, 45 years female (1992)\nTotal fertility rate:\n    7.1 children born/woman (1992)\nNationality:\n    noun - Sahrawi(s), Sahraoui(s); adjective - Sahrawian, Sahraouian\nEthnic divisions:\n    Arab and Berber\nReligions:\n    Muslim\nLanguages:\n    Hassaniya Arabic, Moroccan Arabic\nLiteracy:\n    NA% (male NA%, female NA%)\nLabor force:\n    12,000; 50% animal husbandry and subsistence farming\nOrganized labor:\n    NA\n\n:Western Sahara Government\n\nLong-form name:\n    none\nType:\n    legal status of territory and question of sovereignty unresolved; territory\n    contested by Morocco and Polisario Front (Popular Front for the Liberation\n    of the Saguia el Hamra and Rio de Oro), which in February 1976 formally\n    proclaimed a government in exile of the Sahrawi Arab Democratic Republic\n    (SADR); territory partitioned between Morocco and Mauritania in April 1976,\n    with Morocco acquiring northern two-thirds; Mauritania, under pressure from\n    Polisario guerrillas, abandoned all claims to its portion in August 1979;\n    Morocco moved to occupy that sector shortly thereafter and has since\n    asserted administrative control; the Polisario's government in exile was\n    seated as an OAU member in 1984; guerrilla activities continued\n    sporadically, until a UN-monitored cease-fire was implemented 6 September\n    1991\nCapital:\n    none\nAdministrative divisions:\n    none (under de facto control of Morocco)\nLeaders:\n    none\nMember of:\n    none\nDiplomatic representation:\n    none\n\n:Western Sahara Economy\n\nOverview:\n    Western Sahara, a territory poor in natural resources and having little\n    rainfall, has a per capita GDP of roughly $300. Pastoral nomadism, fishing,\n    and phosphate mining are the principal sources of income for the population.\n    Most of the food for the urban population must be imported. All trade and\n    other economic activities are controlled by the Moroccan Government.\nGDP:\n    $60 million, per capita $300; real growth rate NA% (1991 est.)\nInflation rate (consumer prices):\n    NA%\nUnemployment rate:\n    NA%\nBudget:\n    revenues $NA; expenditures $NA, including capital expenditures of $NA\nExports:\n    $8 million (f.o.b., 1982 est.)\n  commodities:\n    phosphates 62%\n  partners:\n    Morocco claims and administers Western Sahara, so trade partners are\n    included in overall Moroccan accounts\nImports:\n    $30 million (c.i.f., 1982 est.)\n  commodities:\n    fuel for fishing fleet, foodstuffs\n  partners:\n    Morocco claims and administers Western Sahara, so trade partners are\n    included in overall Moroccan accounts\nExternal debt:\n    $NA\nIndustrial production:\n    growth rate NA%\nElectricity:\n    60,000 kW capacity; 79 million kWh produced, 425 kWh per capita (1989)\nIndustries:\n    phosphate, fishing, handicrafts\nAgriculture:\n    limited largely to subsistence agriculture; some barley is grown in\n    nondrought years; fruit and vegetables are grown in the few oases; food\n    imports are essential; camels, sheep, and goats are kept by the nomadic\n    natives; cash economy exists largely for the garrison forces\nEconomic aid:\n    NA\nCurrency:\n    Moroccan dirham (plural - dirhams); 1 Moroccan dirham (DH) = 100 centimes\nExchange rates:\n    Moroccan dirhams (DH) per US$1 - 8.889 (March 1992), 8.071 (1991), 8.242\n    (1990), 8.488 (1989), 8.209 (1988), 8.359 (1987)\nFiscal year:\n    NA\n\n:Western Sahara Communications\n\nHighways:\n    6,200 km total; 1,450 km surfaced, 4,750 km improved and unimproved earth\n    roads and tracks\nPorts:\n    El Aaiun, Ad Dakhla\nAirports:\n    13 total, 13 usable; 3 with permanent-surface runways; none with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 5 with runways 1,220-2,439 m\nTelecommunications:\n    sparse and limited system; tied into Morocco's system by microwave,\n    tropospheric scatter, and 2 Atlantic Ocean INTELSAT earth stations linked to\n    Rabat, Morocco; 2,000 telephones; broadcast stations - 2 AM, no FM, 2 TV\n\n:Western Sahara Defense Forces\n\nBranches:\n    NA\nManpower availability:\n    NA\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Western Samoa Geography\n\nTotal area:\n    2,860 km2\nLand area:\n    2,850 km2\nComparative area:\n    slightly smaller than Rhode Island\nLand boundaries:\n    none\nCoastline:\n    403 km\nMaritime claims:\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    none\nClimate:\n    tropical; rainy season (October to March), dry season (May to October)\nTerrain:\n    narrow coastal plain with volcanic, rocky, rugged mountains in interior\nNatural resources:\n    hardwood forests, fish\nLand use:\n    arable land 19%; permanent crops 24%; meadows and pastures NEGL%; forest and\n    woodland 47%; other 10%\nEnvironment:\n    subject to occasional typhoons; active volcanism\nNote:\n    located 4,300 km southwest of Honolulu in the South Pacific Ocean about\n    halfway between Hawaii and New Zealand\n\n:Western Samoa People\n\nPopulation:\n    194,992 (July 1992), growth rate 2.4% (1992)\nBirth rate:\n    34 births/1,000 population (1992)\nDeath rate:\n    6 deaths/1,000 population (1992)\nNet migration rate:\n    -4 migrants/1,000 population (1992)\nInfant mortality rate:\n    40 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    65 years male, 70 years female (1992)\nTotal fertility rate:\n    4.4 children born/woman (1992)\nNationality:\n    noun - Western Samoan(s); adjective - Western Samoan\nEthnic divisions:\n    Samoan; Euronesians (persons of European and Polynesian blood) about 7%,\n    Europeans 0.4%\nReligions:\n    Christian 99.7% (about half of population associated with the London\n    Missionary Society; includes Congregational, Roman Catholic, Methodist,\n    Latter Day Saints, Seventh-Day Adventist)\nLanguages:\n    Samoan (Polynesian), English\nLiteracy:\n    97% (male 97%, female 97%) age 15 and over can read and write (1971)\nLabor force:\n    38,000; 22,000 employed in agriculture (1987 est.)\nOrganized labor:\n    Public Service Association (PSA)\n\n:Western Samoa Government\n\nLong-form name:\n    Independent State of Western Samoa\nType:\n    constitutional monarchy under native chief\nCapital:\n    Apia\nAdministrative divisions:\n    11 districts; A`ana, Aiga-i-le-Tai, Atua, Fa`asaleleaga, Gaga`emauga,\n    Gagaifomauga, Palauli, Satupa`itea, Tuamasaga, Va`a-o-Fonoti, Vaisigano\nIndependence:\n    1 January 1962 (from UN trusteeship administered by New Zealand)\nConstitution:\n    1 January 1962\nLegal system:\n    based on English common law and local customs; judicial review of\n    legislative acts with respect to fundamental rights of the citizen; has not\n    accepted compulsory ICJ jurisdiction\nNational holiday:\n    National Day, 1 June\nExecutive branch:\n    chief, Executive Council, prime minister, Cabinet\nLegislative branch:\n    unicameral Legislative Assembly (Fono)\nJudicial branch:\n    Supreme Court, Court of Appeal\nLeaders:\n  Chief of State:\n    Chief Susuga Malietoa TANUMAFILI II (Co-Chief of State from 1 January 1962\n    until becoming sole Chief of State on 5 April 1963)\n  Head of Government:\n    Prime Minister TOFILAU Eti Alesana (since 7 April 1988)\nPolitical parties and leaders:\n    Human Rights Protection Party (HRPP), TOFILAU Eti, chairman; Samoan National\n    Development Party (SNDP), VA'AI Kolone, chairman\nSuffrage:\n    universal adult over age 21, but only matai (head of family) are able to run\n    for the Legislative Assembly\nElections:\n  Legislative Assembly:\n    last held NA February 1991 (next to be held by NA February 1994); results -\n    percent of vote by party NA; seats - (47 total) HRPP 30, SNDP 14,\n    independents 3\nMember of:\n    ACP, AsDB, C, ESCAP, FAO, G-77, IBRD, ICFTU, IDA, IFAD, IFC, IMF, IOC, ITU,\n    LORCS, SPC, SPF, UN, UNCTAD, UNESCO, UPU, WHO\nDiplomatic representation:\n    Ambassador Fili (Felix) Tuaopepe WENDT; Chancery (temporary) at suite 510,\n    1155 15th Street NW, Washington, DC 20005; telephone (202) 833-1743\n  US:\n    the ambassador to New Zealand is accredited to Western Samoa (mailing\n    address is P.O. Box 3430, Apia); telephone (685) 21-631; FAX (685) 22-030\nFlag:\n    red with a blue rectangle in the upper hoist-side quadrant bearing five\n    white five-pointed stars representing the Southern Cross constellation\n\n:Western Samoa Economy\n\nOverview:\n    Agriculture employs more than half of the labor force, contributes 50% to\n    GDP, and furnishes 90% of exports. The bulk of export earnings comes from\n    the sale of coconut oil and copra. The economy depends on emigrant\n    remittances and foreign aid to support a level of imports several times\n    export earnings. Tourism has become the most important growth industry, and\n    construction of the first international hotel is under way.\nGDP:\n    exchange rate conversion - $115 million, per capita $690 (1989); real growth\n    rate -4.5% (1990 est.)\nInflation rate (consumer prices):\n    15% (1990)\nUnemployment rate:\n    NA%; shortage of skilled labor\nBudget:\n    revenues $95.3 million; expenditures $95.4 million, including capital\n    expenditures of $41 million (FY92)\nExports:\n    $9 million (f.o.b., 1990)\n  commodities:\n    coconut oil and cream 54%, taro 12%, copra 9%, cocoa 3%\n  partners:\n    NZ 28%, American Samoa 23%, Germany 22%, US 6% (1990)\nImports:\n    $75 million (c.i.f., 1990)\n  commodities:\n    intermediate goods 58%, food 17%, capital goods 12%\n  partners:\n    New Zealand 41%, Australia 18%, Japan 13%, UK 6%, US 6%\nExternal debt:\n    $83 million (December 1990 est.)\nIndustrial production:\n    growth rate -4% (1990 est.); accounts for 14% of GDP\nElectricity:\n    29,000 kW capacity; 45 million kWh produced, 240 kWh per capita (1990)\nIndustries:\n    timber, tourism, food processing, fishing\nAgriculture:\n    accounts for 50% of GDP; coconuts, fruit (including bananas, taro, yams)\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $18 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $306 million; OPEC\n    bilateral aid (1979-89), $4 million\nCurrency:\n    tala (plural - tala); 1 tala (WS$) = 100 sene\nExchange rates:\n    tala (WS$) per US$1 - 2,4284 (March 1992), 2,3975 (1991), 2.3095 (1990),\n    2.2686 (1989), 2.0790 (1988), 2.1204 (1987)\nFiscal year:\n    calendar year\n\n:Western Samoa Communications\n\nHighways:\n    2,042 km total; 375 km sealed; remainder mostly gravel, crushed stone, or\n    earth\nPorts:\n    Apia\nMerchant marine:\n    1 roll-on/roll-off ship (1,000 GRT or over) totaling 3,838 GRT/5,536 DWT\nCivil air:\n    3 major transport aircraft\nAirports:\n    3 total, 3 usable; 1 with permanent-surface runways; none with runways over\n    3,659 m; 1 with runways 2,440-3,659 m; none with runways 1,220-2,439 m\nTelecommunications:\n    7,500 telephones; 70,000 radios; broadcast stations - 1 AM, no FM, no TV; 1\n    Pacific Ocean INTELSAT ground station\n\n:Western Samoa Defense Forces\n\nBranches:\n    Department of Police and Prisons\nManpower availability:\n    males 15-49, NA; NA fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:World Geography\n\nTotal area:\n    510,072,000 km2\nLand area:\n    148,940,000 km2 (29.2%)\nComparative area:\n    land area about 16 times the size of the US\nLand boundaries:\n    442,000 km\nCoastline:\n    356,000 km\nMaritime claims:\n    range from 3 to 200 nm; 1 claim is rectangular; 112 states claim a 12 nm\n    limit; note - boundary situations with neighboring states prevent many\n    countries from extending their fishing or economic zones to a full 200 nm;\n    41 nations and other areas are landlocked and include Afghanistan, Andorra,\n    Armenia, Austria, Azerbaijan, Belarus, Bhutan, Bolivia, Botswana, Burkina,\n    Burundi, Central African Republic, Chad, Czechoslovakia, Hungary,\n    Kazakhstan, Kyrgyzstan, Laos, Lesotho, Liechtenstein, Luxembourg, Macedonia,\n    Malawi, Mali, Moldova, Mongolia, Nepal, Niger, Paraguay, Rwanda, San Marino,\n    Swaziland, Switzerland, Tajikistan, Turkmenistan, Uganda, Uzbekistan,\n    Vatican City, West Bank, Zambia, Zimbabwe\n  Contiguous zone:\n    39 states claim contiguous zone, 33 of which have 24 nm limits\n  Continental shelf:\n    approximately 78 states have specific continental shelf claims, the limit of\n    42 claims is based on depth (200 m) plus exploitability, 21 claims define\n    the continental shelf as 200 nm or to the edge of the continental margin\n  Exclusive fishing zone:\n    23 claims with limits ranging from 12 nm to 200 nm\n  Exclusive Economic Zone (EEZ):\n    83 states claim an EEZ, with most limits being 200 nm\n  Territorial sea:\n    claims range from 3 to 200 nm, 112 states claim a 12 nm limit; note - 41\n    nations and miscellaneous areas are landlocked and comprise Afghanistan,\n    Andorra, Armenia, Austria, Azerbaijan, Bhutan, Bolivia, Botswana, Burkina,\n    Burundi, Byelarus, Central African Republic, Chad, Czechoslovakia, Hungary,\n    Kazakhstan, Kyrgyzstan, Laos, Lesotho, Liechtenstein, Luxembourg, Macebia,\n    Zimbabwe\nDisputes:\n    major international land boundary or territorial diputes - Bahrain-Qatar,\n    Chad-Libya, China-India, China-Russia, Ecuador-Peru, El Salvador-Honduras,\n    Israel-Jordan, Israel-Syria, Japan-Russia, North Korea-South Korea, Saudi\n    Arabia-Yemen, South China Sea\nClimate:\n    two large areas of polar climates separated by two rather narrow temperate\n    zones from a wide equatorial band of tropical to subtropical climates\nTerrain:\n    highest elevation is Mt. Everest at 8,848 meters and lowest depression is\n    the Dead Sea at 392 meters below sea level; greatest ocean depth is the\n    Marianas Trench at 10,924 meters\nNatural resources:\n    the rapid using up of nonrenewable mineral resources, the depletion of\n    forest areas and wetlands, the extinction of animal and plant species, and\n    the deterioration in air and water quality (especially in Eastern Europe and\n    the former USSR) pose serious long-term problems that governments and\n    peoples are only beginning to address\nLand use:\n    arable land 10%; permanent crops 1%; meadows and pastures 24%; forest and\n    woodland 31%; other 34%; includes irrigated 1.6%\n\n:World Geography\n\nEnvironment:\n    large areas subject to severe weather (tropical cyclones), natural disasters\n    (earthquakes, landslides, tsunamis, volcanic eruptions), overpopulation,\n    industrial disasters, pollution (air, water, acid rain, toxic substances),\n    loss of vegetation (overgrazing, deforestation, desertification), loss of\n    wildlife resources, soil degradation, soil depletion, erosion\n\n:World People\n\nPopulation:\n    5,515,617,484 (July 1992), growth rate 1.7% (1992)\nBirth rate:\n    26 births/1,000 population (1992)\nDeath rate:\n    9 deaths/1,000 population (1992)\nInfant mortality rate:\n    63 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    61 years male, 65 years female (1992)\nTotal fertility rate:\n    3.3 children born/woman (1992)\nLiteracy:\n    74% (male 81%, female 67%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2.24 billion (1992)\nOrganized labor:\n    NA\n\n:World Government\n\nAdministrative divisions:\n    187 sovereign nations plus 72 dependent, other, and miscellaneous areas\nLegal system:\n    varies by individual country; 182 are parties to the United Nations\n    International Court of Justice (ICJ or World Court)\nDiplomatic representation:\n    there are 178 members of the UN\n\n:World Economy\n\nOverview:\n    Aggregate world output in 1991 increased by 1.3%, in contrast to estimated\n    2% growth in 1990 and 3% growth in 1989. In 1991, the developed countries\n    grew by 2.5% and the LDCs by 3.5%, these gains being offset by a 10-15% drop\n    in the former Communist-dominated areas of the USSR and Eastern Europe. As\n    usual, results among individual countries differed widely. In the developed\n    group, Japan led with 4.5%, the West European members averaged 1.2%, and the\n    recession-plagued United States lagged,with GDP down 0.7%. As for the 15\n    former Soviet republics and the seven nations of Eastern Europe, output\n    plummeted in many economic sectors because of fundamental changes in the\n    rules of the game and in the channels of production and exchange. China and\n    the Four Dragons performed well in 1991 but many of the other developing\n    countries are mired in poverty and political instability. For the world as a\n    whole, the addition of nearly 100 million people each year to an already\n    overcrowded globe will exacerbate the problems of pollution,\n    desertification, underemployment, epidemics, and famine.\nGWP (gross world product):\n    purchasing power equivalent - $25 trillion, per capita $4,600; real growth\n    rate 1.3% (1991 est.)\nInflation rate (consumer prices):\n    developed countries 5%; developing countries 50%, with wide variations (1991\n    est.)\nUnemployment rate:\n    NA%\nExports:\n    $3.34 trillion (f.o.b., 1991 est.)\n  commodities:\n    the whole range of industrial and agricultural goods and services\n  partners:\n    in value, about 75% of exports from developed countries\nImports:\n    $3.49 trillion (c.i.f., 1991 est.)\n  commodities:\n    the whole range of industrial and agricultural goods and services\n  partners:\n    in value, about 75% of imports by the developed countries\nExternal debt:\n    $1.0 trillion for less developed countries (1991 est.)\nIndustrial production:\n    growth rate 3% (1990 est.)\nElectricity:\n    2,864,000,000 kW capacity; 11,450,000 million kWh produced, 2,150 kWh per\n    capita (1990)\nIndustries:\n    industry worldwide is dominated by the onrush of technology, especially in\n    computers, robotics, telecommunications, and medicines and medical\n    equipment; most of these advances take place in OECD nations; only a small\n    portion of non-OECD countries have succeeded in rapidly adjusting to these\n    technological forces, and the technological gap between the industrial\n    nations and the less-developed countries continues to widen; the rapid\n    development of new industrial (and agricultural) technology is complicating\n    already grim environmental problems\n\n:World Economy\n\nAgriculture:\n    the production of major food crops has increased substantially in the last\n    20 years. The annual production of cereals, for instance, has risen by 50%,\n    from about 1.2 billion metric tons to about 1.8 billion metric tons;\n    production increases have resulted mainly from increased yields rather than\n    increases in planted areas; while global production is sufficient for\n    aggregate demand, about one-fifth of the world's population remains\n    malnourished, primarily because local production cannot adequately provide\n    for large and rapidly growing populations, which are too poor to pay for\n    food imports; conditions are especially bad in Africa where drought in\n    recent years has exacerbated the consequences of all other factors\nEconomic aid:\n    NA\n\n:World Communications\n\nRailroads:\n    239,430 km of narrow gauge track; 710,754 km of standard gauge track;\n    251,153 km of broad gauge track; includes about 190,000 to 195,000 km of\n    electrified routes of which 147,760 km are in Europe, 24,509 km in the Far\n    East, 11,050 km in Africa, 4,223 km in South America, and only 4,160 km in\n    North America; fastest speed in daily service is 300 km/hr attained by\n    France's SNCF TGV-Atlantique line\nPorts:\n    Mina al Ahmadi (Kuwait), Chiba, Houston, Kawasaki, Kobe, Marseille, New\n    Orleans, New York, Rotterdam, Yokohama\nMerchant marine:\n    23,596 ships (1,000 GRT or over) totaling 386,736,000 GRT/637,493,000 DWT;\n    includes 348 passenger-cargo, 12,441 freighters, 5,446 bulk carriers, and\n    5,361 tankers (January 1991)\nCivil air:\n    14,500-16,000 major transport aircraft with gross take-off weight of 9,000\n    kg (20,000 lbs) or more (1992 est.)\n\n:World Defense Forces\n\nBranches:\n    ground, maritime, and air forces at all levels of technology\nManpower availability:\n    males 15-49, 1,400,000,000; NA fit for military service\nDefense expenditures:\n    $1.0 trillion, 4% of total world output; decline of 5-10% (1991 est.)\n\n:Yemen Geography\n\nTotal area:\n    527,970 km2\nLand area:\n    527,970 km2; includes Perim, Socotra, the former Yemen Arab Republic (YAR or\n    North Yemen), and the former People's Democratic Republic of Yemen (PDRY or\n    South Yemen)\nComparative area:\n    slightly larger than twice the size of Wyoming\nLand boundaries:\n    1,746 km total; Oman 288 km, Saudi Arabia 1,458 km\nCoastline:\n    1,906 km\nMaritime claims:\n  Contiguous zone:\n    North - 18 nm; South - 24 nm\n  Continental shelf:\n    North - 200 meters (depth); South - edge of continental margin or 200 nm\n  Exclusive economic zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    undefined section of boundary with Saudi Arabia; Administrative Line with\n    Oman; there is a proposed treaty with Oman (which has not yet been formerly\n    accepted) to settle the Yemeni-Omani boundary\nClimate:\n    mostly desert; hot and humid along west coast; temperate in western\n    mountains affected by seasonal monsoon; extraordinarily hot, dry, harsh\n    desert in east\nTerrain:\n    narrow coastal plain backed by flat-topped hills and rugged mountains;\n    dissected upland desert plains in center slope into the desert interior of\n    the Arabian Peninsula\nNatural resources:\n    crude oil, fish, rock salt, marble; small deposits of coal, gold, lead,\n    nickel, and copper; fertile soil in west\nLand use:\n    arable land 6%; permanent crops NEGL%; meadows and pastures 30%; forest and\n    woodland 7%; other 57%; includes irrigated NEGL%\nEnvironment:\n    subject to sand and dust storms in summer; scarcity of natural freshwater\n    resources; overgrazing; soil erosion; desertification\nNote:\n    controls Bab el Mandeb, the strait linking the Red Sea and the Gulf of Aden,\n    one of world's most active shipping lanes\n\n:Yemen People\n\nPopulation:\n    10,394,749 (July 1992), growth rate 3.3% (1992)\nBirth rate:\n    51 births/1,000 population (1992)\nDeath rate:\n    16 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    118 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    49 years male, 52 years female (1992)\nTotal fertility rate:\n    7.3 children born/woman (1992)\nNationality:\n    noun - Yemeni(s); adjective - Yemeni\nEthnic divisions:\n    North - Arab 90%, Afro-Arab (mixed) 10%; South - almost all Arabs; a few\n    Indians, Somalis, and Europeans\nReligions:\n    North - Muslim almost 100% (45% Sunni and 55% Zaydi Shi`a); NEGL Jewish;\n    South - Sunni Muslim, some Christian and Hindu\nLanguages:\n    Arabic\nLiteracy:\n    38% (male 53%, female 26%) age 15 and over can read and write (1990 est.)\nLabor force:\n    North - NA number of workers with agriculture and herding 70%, and\n    expatriate laborers 30% (est.); South - 477,000 with agriculture 45.2%,\n    services 21.2%, construction 13.4%, industry 10.6%, commerce and other 9.6%\n    (1983)\nOrganized labor:\n    North - NA; South - 348,200 and the General Confederation of Workers of the\n    People's Democratic Republic of Yemen had 35,000 members\n\n:Yemen Government\n\nLong-form name:\n    Republic of Yemen\nType:\n    republic\nCapital:\n    Sanaa\nAdministrative divisions:\n    17 governorates (muhafazat, singular - muhafazah); Abyan, `Adan, Al Bayda',\n    Al Hudaydah, Al Jawf, Al Mahrah, Al Mahwit, Dhamar, Hadramawt, Hajjah, Ibb,\n    Lahij, Ma'rib, Sa`dah, San`a', Shabwah, Ta`izz\nIndependence:\n    Republic of Yemen was established on 22 May 1990 with the merger of the\n    Yemen Arab Republic {Yemen (Sanaa) or North Yemen} and the Marxist-dominated\n    People's Democratic Republic of Yemen {Yemen (Aden) or South Yemen};\n    previously North Yemen had become independent on NA November 1918 (from the\n    Ottoman Empire) and South Yemen had become independent on 30 November 1967\n    (from the UK); the union is to be solidified during a 30-month transition\n    period, which coincides with the remainder of the five-year terms of both\n    legislatures\nConstitution:\n    16 April 1991\nLegal system:\n    based on Islamic law, Turkish law, English common law, and local customary\n    law; does not accept compulsory ICJ jurisdiction\nNational holiday:\n    Proclamation of the Republic, 22 May (1990)\nExecutive branch:\n    five-member Presidential Council (president, vice president, two members\n    from northern Yemen and one member from southern Yemen), prime minister\nLegislative branch:\n    unicameral House of Representatives\nJudicial branch:\n    North - State Security Court; South - Federal High Court\nLeaders:\n  Chief of State and Head of Government:\n    President `Ali `Abdallah SALIH (since 22 May 1990, the former president of\n    North Yemen); Vice President Ali Salim al-BIDH (since 22 May 1990, and\n    Secretary General of the Yemeni Socialist Party); Presidential Council\n    Member Salim Salih MUHAMMED; Presidential Council Member Kadi Abdul-Karim\n    al-ARASHI; Presidential Council Member Abdul-Aziz ABDUL-GHANI; Prime\n    Minister Haydar Abu Bakr al-`ATTAS (since 22 May 1990, former president of\n    South Yemen)\nPolitical parties and leaders:\n    General People's Congress, `Ali `Abdallah SALIH; Yemeni Socialist Party\n    (YSP; formerly South Yemen's ruling party - a coalition of National Front,\n    Ba`th, and Communist Parties), Ali Salim al-BIDH; Yemen Grouping for Reform\n    or Islaah, Abdallah Husayn AHMAR\nSuffrage:\n    universal at age 18\nElections:\n  House of Representatives:\n    last held NA (next to be held NA November 1992); results - percent of vote\n    NA; seats - (301); number of seats by party NA; note - the 301 members of\n    the new House of Representatives come from North Yemen's Consultative\n    Assembly (159 members), South Yemen's Supreme People's Council (111\n    members), and appointments by the New Presidential Council (31 members)\nCommunists:\n    small number in North, greater but unknown number in South\n\n:Yemen Government\n\nOther political or pressure groups:\n    conservative tribal groups, Muslim Brotherhood, leftist factions - pro-Iraqi\n    Ba`thists, Nasirists, National Democratic Front (NDF)\nMember of:\n    ACC, AFESD, AL, AMF, CAEU, ESCWA, FAO, G-77, IBRD, ICAO, IDA, IDB, IFAD,\n    IFC, ILO, IMF, IMO, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OIC, UN,\n    UNCTAD, UNESCO, UNIDO, UPU, WFTU, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador Muhsin Ahmad al-AYNI; Chancery at Suite 840, 600 New Hampshire\n    Avenue NW, Washington, DC 20037; telephone (202) 965-4760 or 4761; there is\n    a Yemeni Consulate General in Detroit and a Consulate in San Francisco\n  US:\n    Ambassador Arthur H. HUGHES; Embassy at Dhahr Himyar Zone, Sheraton Hotel\n    District, Sanaa (mailing address is P. O. Box 22347 Sanaa, Republic of Yemen\n    or Sanaa - Department of State, Washington, DC 20521-6330); telephone [967]\n    (2) 238-842 through 238-852; FAX [967] (2) 251-563\nFlag:\n    three equal horizontal bands of red (top), white, and black; similar to the\n    flag of Syria which has two green stars and of Iraq which has three green\n    stars (plus an Arabic inscription) in a horizontal line centered in the\n    white band; also similar to the flag of Egypt which has a symbolic eagle\n    centered in the white band\n\n:Yemen Economy\n\nOverview:\n    Whereas the northern city Sanaa is the political capital of a united Yemen,\n    the southern city Aden, with its refinery and port facilities, is the\n    economic and commercial capital. Future economic development depends heavily\n    on Western-assisted development of promising oil resources. South Yemen's\n    willingness to merge stemmed partly from the steady decline in Soviet\n    economic support.\nOverview:\n  North:\n    The low level of domestic industry and agriculture have made northern Yemen\n    dependent on imports for virtually all of its essential needs. Large trade\n    deficits have been made up for by remittances from Yemenis working abroad\n    and foreign aid. Once self-sufficient in food production, northern Yemen has\n    become a major importer. Land once used for export crops - cotton, fruit,\n    and vegetables - has been turned over to growing qat, a mildly narcotic\n    shrub chewed by Yemenis which has no significant export market. Oil export\n    revenues started flowing in late 1987 and boosted 1988 earnings by about\n    $800 million.\n  South:\n    This has been one of the poorest Arab countries, with a per capita GNP of\n    about $500. A shortage of natural resources, a widely dispersed population,\n    and an arid climate have made economic development difficult. The economy\n    has grown at an average annual rate of only 2-3% since the mid-1970s. The\n    economy had been organized along socialist lines, dominated by the public\n    sector. Economic growth has been constrained by a lack of incentives, partly\n    stemming from centralized control over production decisions, investment\n    allocation, and import choices.\nGDP:\n    exchange rate conversion - $5.3 billion, per capita $545; real growth rate\n    NA% (1990 est.)\nInflation rate (consumer prices):\n  North:\n    16.9% (1988)\n  South:\n    0% (1989)\nUnemployment rate:\n  North:\n    13% (1986)\n  South:\n    NA%\nBudget:\n  North:\n    revenues $1.4 billion; expenditures $2.2 billion, including capital\n    expenditures of $590 million (1988 est.)\n  South:\n    revenues and grants $435 million; expenditures $1.0 billion, including\n    capital expenditure of $460 million (1988 est.)\nExports:\n  North:\n    $606 million (f.o.b., 1989)\n  commodities:\n    crude oil, cotton, coffee, hides, vegetables\n  partners:\n    FRG 29%, US 26%, Netherlands 12%\n  South:\n    $113.8 million (f.o.b., 1989 est.)\n  commodities:\n    cotton, hides, skins, dried and salted fish\n\n:Yemen Economy\n\n  partners:\n    Japan, North Yemen, Italy\nImports:\n  North:\n    $1.3 billion (f.o.b., 1988)\nImports:\n  commodities:\n    textiles and other manufactured consumer goods, petroleum products, sugar,\n    grain, flour, other foodstuffs, and cement\n  partners:\n    Saudi Arabia 12%, France 6%, US 5%, Australia 5% (1985)\n  South:\n    $553.9 million (f.o.b., 1989 est.)\n  commodities:\n    grain, consumer goods, crude oil, machinery, chemicals\n  partners:\n    USSR, UK, Ethiopia\nExternal debt:\n    $5.75 billion (December 1989 est.)\nIndustrial production:\n  North:\n    growth rate 2% in manufacturing (1988)\n  South:\n    growth rate NA% in manufacturing\nElectricity:\n    700,000 kW capacity; 1,200 million kWh produced, 120 kWh per capita (1991)\nIndustries:\n    crude oil production and petroleum refining; small-scale production of\n    cotton textiles and leather goods; food processing; handicrafts; fishing;\n    small aluminum products factory; cement\nAgriculture:\n  North:\n    accounted for 26% of GDP and 70% of labor force; farm products - grain,\n    fruits, vegetables, qat (mildly narcotic shrub), coffee, cotton, dairy,\n    poultry, meat, goat meat; not self-sufficient in grain\n  South:\n    accounted for 17% of GNP and 45% of labor force; products - grain, qat\n    (mildly narcotic shrub), coffee, fish, livestock; fish and honey major\n    exports; most food imported\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $389 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.0 billion; OPEC\n    bilateral aid (1979-89), $3.2 billion; Communist countries (1970-89), $2.4\n    billion\nCurrency:\n    North Yemeni riyal (plural - riyals); 1 North Yemeni riyal (YR) = 100 fils;\n    South Yemeni dinar (plural - dinars); 1 South Yemeni dinar (YD) = 1,000 fils\nExchange rates:\n    North Yemeni riyals (YR) per US$1 - 12,1000 (June 1992), 12.0000 (1991),\n    9.7600 (1990), 9.7600 (January 1989), 9.7717 (1988), 10.3417 (1987); South\n    Yemeni dinars (YD) per US$1 - 0.3454 (fixed rate)\nFiscal year:\n    calendar year\n\n:Yemen Communications\n\nHighways:\n    15,500 km; 4,000 km paved, 11,500 km natural surface (est.)\nPipelines:\n    crude oil 644 km, petroleum products 32 km\nPorts:\n    Aden, Al Hudaydah, Al Khalf, Mocha, Nishtun, Ra's Kathib, Salif\nMerchant marine:\n    3 ships (1,000 GRT or over) totaling 4,309 GRT/6,568 DWT; includes 2 cargo,\n    1 petroleum tanker\nCivil air:\n    11 major transport aircraft\nAirports:\n    46 total, 40 usable; 10 with permanent-surface runways; none with runways\n    over 3,659 m; 20 with runways 2,440-3,659 m; 11 with runways 1,220-2,439 m\nTelecommunications:\n    since unification in 1990, efforts are being made to create a national\n    domestic civil telecommunications network and to revitalize the\n    infrastructure of a united Yemen; the network consists of microwave, cable\n    and troposcatter; 65,000 telephones (est.); broadcast stations - 4 AM, 1 FM,\n    10 TV; satellite earth stations - 2 Indian Ocean INTELSAT, 1 Atlantic Ocean\n    INTELSAT, 1 Intersputnik, 2 ARABSAT; microwave to Saudi Arabia, and Djibouti\n\n:Yemen Defense Forces\n\nBranches:\n    Army, Navy, Air Force, Police\nManpower availability:\n    males 15-49, 1,981,710; 1,127,391 fit for military service; 130,405 reach\n    military age (14) annually\nDefense expenditures:\n    exchange rate conversion - $1.06 billion, 20% of GDP (1990)\n\n:Zaire Geography\n\nTotal area:\n    2,345,410 km2\nLand area:\n    2,267,600 km2\nComparative area:\n    slightly more than one-quarter the size of US\nLand boundaries:\n    10,271 km total; Angola 2,511 km, Burundi 233 km, Central African Republic\n    1,577 km, Congo 2,410 km, Rwanda 217 km, Sudan 628 km, Uganda 765 km, Zambia\n    1,930 km\nCoastline:\n    37 km\nMaritime claims:\n  Exclusive fishing zone:\n    200 nm\n  Territorial sea:\n    12 nm\nDisputes:\n    Tanzania-Zaire-Zambia tripoint in Lake Tanganyika may no longer be\n    indefinite since it is reported that the indefinite section of the\n    Zaire-Zambia boundary has been settled; long section with Congo along the\n    Congo River is indefinite (no division of the river or its islands has been\n    made)\nClimate:\n    tropical; hot and humid in equatorial river basin; cooler and drier in\n    southern highlands; cooler and wetter in eastern highlands; north of Equator\n    - wet season April to October, dry season December to February; south of\n    Equator - wet season November to March, dry season April to October\nTerrain:\n    vast central basin is a low-lying plateau; mountains in east\nNatural resources:\n    cobalt, copper, cadmium, crude oil, industrial and gem diamonds, gold,\n    silver, zinc, manganese, tin, germanium, uranium, radium, bauxite, iron ore,\n    coal, hydropower potential\nLand use:\n    arable land 3%; permanent crops NEGL%; meadows and pastures 4%; forest and\n    woodland 78%; other 15%; includes irrigated NEGL%\nEnvironment:\n    dense tropical rain forest in central river basin and eastern highlands;\n    periodic droughts in south\nNote:\n    straddles Equator; very narrow strip of land that controls the lower Congo\n    River and is only outlet to South Atlantic Ocean\n\n:Zaire People\n\nPopulation:\n    39,084,400 (July 1992), growth rate 3.3% (1992)\nBirth rate:\n    45 births/1,000 population (1992)\nDeath rate:\n    13 deaths/1,000 population (1992)\nNet migration rate:\n    0 migrants/1,000 population (1992)\nInfant mortality rate:\n    97 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    52 years male, 56 years female (1992)\nTotal fertility rate:\n    6.1 children born/woman (1992)\nNationality:\n    noun - Zairian(s); adjective - Zairian\nEthnic divisions:\n    over 200 African ethnic groups, the majority are Bantu; four largest tribes\n    - Mongo, Luba, Kongo (all Bantu), and the Mangbetu-Azande (Hamitic) make up\n    about 45% of the population\nReligions:\n    Roman Catholic 50%, Protestant 20%, Kimbanguist 10%, Muslim 10%, other\n    syncretic sects and traditional beliefs 10%\nLanguages:\n    French (official), Lingala, Swahili, Kingwana, Kikongo, Tshiluba\nLiteracy:\n    72% (male 84%, female 61%) age 15 and over can read and write (1990 est.)\nLabor force:\n    15,000,000; agriculture 75%, industry 13%, services 12%; wage earners 13%\n    (1981); population of working age 51% (1985)\nOrganized labor:\n    National Union of Zairian Workers (UNTZA) was the only officially recognized\n    trade union until April 1990; other unions are now in process of seeking\n    official recognition\n\n:Zaire Government\n\nLong-form name:\n    Republic of Zaire\nType:\n    republic with a strong presidential system\nCapital:\n    Kinshasa\nAdministrative divisions:\n    10 regions (regions, singular - region) and 1 town* (ville); Bandundu,\n    Bas-Zaire, Equateur, Haut-Zaire, Kasai-Occidental, Kasai-Oriental,\n    Kinshasa*, Maniema, Nord-Kivu, Shaba, Sud-Kivu\nIndependence:\n    30 June 1960 (from Belgium; formerly Belgian Congo, then Congo/Leopoldville,\n    then Congo/Kinshasa)\nConstitution:\n    24 June 1967, amended August 1974, revised 15 February 1978; amended April\n    1990; new constitution to be promulgated in 1992\nLegal system:\n    based on Belgian civil law system and tribal law; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Anniversary of the Regime (Second Republic), 24 November (1965)\nExecutive branch:\n    president, prime minister, Executive Council (cabinet)\nLegislative branch:\n    unicameral Legislative Council (Conseil Legislatif)\nJudicial branch:\n    Supreme Court (Cour Supreme)\nLeaders:\n  Chief of State:\n    President Marshal MOBUTU Sese Seko Kuku Ngbendu wa Za Banga (since 24\n    November 1965)\n  Head of Government:\n    Prime Minister Jean NGUZ a Karl-i-Bond (since 26 November 1991)\nPolitical parties and leaders:\n    sole legal party until January 1991 - Popular Movement of the Revolution\n    (MPR); other parties include Union for Democracy and Social Progress (UDPS),\n    Etienne TSHISEKEDI wa Mulumba; Democratic Social Christian Party (PDSC),\n    Joseph ILEO; Union of Federalists and Independent Republicans (UFERI), NGUZ\n    a Karl-I-Bond; and Congolese National Movement-Lumumba (MNC-L)\nSuffrage:\n    universal and compulsory at age 18\nElections:\n  President:\n    last held 29 July 1984 (next to be scheduled by ongoing National\n    Conference); results - President MOBUTU was reelected without opposition\n  Legislative Council:\n    last held 6 September 1987 (next to be scheduled by ongoing National\n    Conference); results - MPR was the only party; seats - (210 total) MPR 210;\n    note - MPR still holds majority of seats but some deputies have joined other\n    parties\nMember of:\n    ACCT, ACP, AfDB, APC, CCC, CEEAC, CEPGL, CIPEC, ECA, FAO, G-19, G-24, G-77,\n    GATT, IAEA, IBRD, ICAO, ICC, IDA, IFAD, IFC, ILO, IMF, IMO, INTELSAT,\n    INTERPOL, IOC, ITU, LORCS, NAM, OAU, PCA, UN, UNCTAD, UNESCO, UNHCR, UNIDO,\n    UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador TATANENE Manata; Chancery at 1800 New Hampshire Avenue NW,\n    Washington, DC 20009; telephone (202) 234-7690 or 7691\n\n:Zaire Government\n\n  US:\n    Ambassador Melissa F. WELLS; Embassy at 310 Avenue des Aviateurs, Kinshasa\n    (mailing address is APO AE 09828); telephone [243] (12) 21532, 21628; FAX\n    [243] (12) 21232; the US Consulate General in Lubumbashi was closed and\n    evacuated in October 1991 because of the poor security situation\nFlag:\n    light green with a yellow disk in the center bearing a black arm holding a\n    red flaming torch; the flames of the torch are blowing away from the hoist\n    side; uses the popular pan-African colors of Ethiopia\n\n:Zaire Economy\n\nOverview:\n    In 1990, in spite of large mineral resources Zaire had a GDP per capita of\n    only about $260, putting it among the desperately poor African nations. The\n    country's chronic economic problems worsened in 1991, with copper and cobalt\n    production down 20-30%, inflation near 8,000% in 1991 as compared with 100%\n    in 1987-89, and IMF and most World Bank support suspended until the\n    institution of agreed-on changes. Agriculture, a key sector of the economy,\n    employs 75% of the population but generates under 25% of GDP. The main\n    potential for economic development has been the extractive industries.\n    Mining and mineral processing account for about one-third of GDP and\n    three-quarters of total export earnings. Zaire is the world's largest\n    producer of diamonds and cobalt.\nGDP:\n    exchange rate conversion - $9.8 billion, per capita $260; real growth rate\n    -3% (1990 est.)\nInflation rate (consumer prices):\n    8,000% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $685 million; expenditures $1.1 billion, does not include capital\n    expenditures mostly financed by donors (1990)\nExports:\n    $2.2 billion (f.o.b., 1989 est.)\n  commodities:\n    copper 37%, coffee 24%, diamonds 12%, cobalt, crude oil\n  partners:\n    US, Belgium, France, FRG, Italy, UK, Japan, South Africa\nImports:\n    $2.1 billion (f.o.b., 1989 est.)\n  commodities:\n    consumer goods, foodstuffs, mining and other machinery, transport equipment,\n    fuels\n  partners:\n    South Africa, US, Belgium, France, FRG, Italy, Japan, UK\nExternal debt:\n    $7.9 billion (December 1990 est.)\nIndustrial production:\n    growth rate -7.3%; accounts for almost 30% of GDP (1989)\nElectricity:\n    2,580,000 kW capacity; 6,000 million kWh produced, 160 kWh per capita (1991)\nIndustries:\n    mining, mineral processing, consumer products (including textiles, footwear,\n    and cigarettes), processed foods and beverages, cement, diamonds\nAgriculture:\n    cash crops - coffee, palm oil, rubber, quinine; food crops - cassava,\n    bananas, root crops, corn\nIllicit drugs:\n    illicit producer of cannabis, mostly for domestic consumption\nEconomic aid:\n    US commitments, including Ex-Im (FY70-89), $1.1 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $6.9 billion; OPEC\n    bilateral aid (1979-89), $35 million; Communist countries (1970-89), $263\n    million\nCurrency:\n    zaire (singular and plural); 1 zaire (Z) = 100 makuta\nExchange rates:\n    zaire (Z) per US$1 - 111,196 (March 1992), 15,587 (1991), 719 (1990), 381\n    (1989), 187 (1988), 112 (1987)\n\n:Zaire Economy\n\nFiscal year:\n    calendar year\n\n:Zaire Communications\n\nRailroads:\n    5,254 km total; 3,968 km 1.067-meter gauge (851 km electrified); 125 km\n    1.000-meter gauge; 136 km 0.615-meter gauge; 1,025 km 0.600-meter gauge;\n    limited trackage in use because of civil strife\nHighways:\n    146,500 km total; 2,800 km paved, 46,200 km gravel and improved earth;\n    97,500 unimproved earth\nInland waterways:\n    15,000 km including the Congo, its tributaries, and unconnected lakes\nPipelines:\n    petroleum products 390 km\nPorts:\n    Matadi, Boma, Banana\nMerchant marine:\n    2 ships (1,000 GRT or over) totaling 22,921 GRT/30,332 DWT; includes 1\n    passenger cargo, 1 cargo\nCivil air:\n    45 major transport aircraft\nAirports:\n    284 total, 239 usable; 24 with permanent-surface runways; 1 with runways\n    over 3,659 m; 6 with runways 2,440-3,659 m; 73 with runways 1,220-2,439 m\nTelecommunications:\n    barely adequate wire and microwave service; broadcast stations - 10 AM, 4\n    FM, 18 TV; satellite earth stations - 1 Atlantic Ocean INTELSAT, 14 domestic\n\n:Zaire Defense Forces\n\nBranches:\n    Army, Navy, Air Force, paramilitary National Gendarmerie, Civil Guard,\n    Special Presidential Division\nManpower availability:\n    males 15-49, 8,521,292; 4,333,492 fit for military service\nDefense expenditures:\n    exchange rate conversion - $49 million, 0.8% of GDP (1988)\n\n:Zambia Geography\n\nTotal area:\n    752,610 km2\nLand area:\n    740,720 km2\nComparative area:\n    slightly larger than Texas\nLand boundaries:\n    5,664 km total; Angola 1,110 km, Malawi 837 km, Mozambique 419 km, Namibia\n    233 km, Tanzania 338 km, Zaire 1,930 km, Zimbabwe 797 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    quadripoint with Botswana, Namibia, and Zimbabwe is in disagreement;\n    Tanzania-Zaire-Zambia tripoint in Lake Tanganyika may no longer be\n    indefinite since it is reported that the indefinite section of the\n    Zaire-Zambia boundary has been settled\nClimate:\n    tropical; modified by altitude; rainy season (October to April)\nTerrain:\n    mostly high plateau with some hills and mountains\nNatural resources:\n    copper, cobalt, zinc, lead, coal, emeralds, gold, silver, uranium,\n    hydropower potential\nLand use:\n    arable land 7%; permanent crops NEGL%; meadows and pastures 47%; forest and\n    woodland 27%; other 19%; includes irrigated NEGL%\nEnvironment:\n    deforestation; soil erosion; desertification\nNote:\n    landlocked\n\n:Zambia People\n\nPopulation:\n    8,745,284 (July 1992), growth rate 3.5% (1992)\nBirth rate:\n    48 births/1,000 population (1992)\nDeath rate:\n    11 deaths/1,000 population (1992)\nNet migration rate:\n    -2 migrants/1,000 population (1992)\nInfant mortality rate:\n    77 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    55 years male, 59 years female (1992)\nTotal fertility rate:\n    6.9 children born/woman (1992)\nNationality:\n    noun - Zambian(s); adjective - Zambian\nEthnic divisions:\n    African 98.7%, European 1.1%, other 0.2%\nReligions:\n    Christian 50-75%, Muslim and Hindu 24-49%, remainder indigenous beliefs 1%\nLanguages:\n    English (official); about 70 indigenous languages\nLiteracy:\n    73% (male 81%, female 65%) age 15 and over can read and write (1990 est.)\nLabor force:\n    2,455,000; agriculture 85%; mining, manufacturing, and construction 6%;\n    transport and services 9%\nOrganized labor:\n    about 238,000 wage earners are unionized\n\n:Zambia Government\n\nLong-form name:\n    Republic of Zambia\nType:\n    multiparty system; on 17 December 1990, President Kenneth KAUNDA signed into\n    law the constitutional amendment that officially reintroduced the multiparty\n    system in Zambia ending 17 years of one-party rule\nCapital:\n    Lusaka\nAdministrative divisions:\n    9 provinces; Central, Copperbelt, Eastern, Luapula, Lusaka, Northern,\n    North-Western, Southern, Western\nIndependence:\n    24 October 1964 (from UK; formerly Northern Rhodesia)\nConstitution:\n    NA August 1991\nLegal system:\n    based on English common law and customary law; judicial review of\n    legislative acts in an ad hoc constitutional council; has not accepted\n    compulsory ICJ jurisdiction\nNational holiday:\n    Independence Day, 24 October (1964)\nExecutive branch:\n    president, Cabinet\nLegislative branch:\n    unicameral National Assembly\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    President Frederick CHILUBA (since 31 October 1991)\nPolitical parties and leaders:\n    Movement for Multiparty Democracy (MMD), Frederick CHILUBA; United National\n    Independence Party (UNIP), none; elections pending\nSuffrage:\n    universal at age 18\nElections:\n  President:\n    last held 31 October 1991 (next to be held mid-1995); results - Frederick\n    CHILUBA 84%, Kenneth KAUNDA 16%\n  National Assembly:\n    last held 31 October 1991 (next to be held mid-1995); results - percent of\n    vote by party NA; seats - (150 total) MMD 125, UNIP 25\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, FLS, G-19, G-77, GATT, IAEA, IBRD, ICAO, IDA,\n    IFAD, IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, ITU, LORCS, NAM, OAU, SADCC,\n    UN, UNCTAD, UNESCO, UNIDO, UNIIMOG, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Ambassador (vacant); Chancery at 2419 Massachusetts Avenue NW, Washington,\n    DC 20008; telephone (202) 265-9717 through 9721\n  US:\n    Ambassador Gordon L. STREEB; Embassy at corner of Independence Avenue and\n    United Nations Avenue, Lusaka (mailing address is P. O. Box 31617, Lusaka);\n    telephone [2601] 228-595, 228-601, 228-602, 228-603; FAX [2601] 251-578\nFlag:\n    green with a panel of three vertical bands of red (hoist side), black, and\n    orange below a soaring orange eagle, on the outer edge of the flag\n\n:Zambia Economy\n\nOverview:\n    The economy has been in decline for more than a decade with falling imports\n    and growing foreign debt. Economic difficulties stem from a sustained drop\n    in copper production and ineffective economic policies. In 1991 real GDP\n    fell by 2%. An annual population growth of more than 3% has brought a\n    decline in per capita GDP of 50% over the past decade. A high inflation rate\n    has also added to Zambia's economic woes in recent years.\nGDP:\n    exchange rate conversion - $4.7 billion, per capita $600; real growth rate\n    -2% (1991)\nInflation rate (consumer prices):\n    100% (1991)\nUnemployment rate:\n    NA%\nBudget:\n    revenues $665 million; expenditures $767 million, including capital\n    expenditures of $300 million (1991 est.)\nExports:\n    $1.1 billion (f.o.b., 1991)\n  commodities:\n    copper, zinc, cobalt, lead, tobacco\n  partners:\n    EC, Japan, South Africa, US, India\nImports:\n    $1.3 billion (c.i.f., 1991)\n  commodities:\n    machinery, transportation equipment, foodstuffs, fuels, manufactures\n  partners:\n    EC, Japan, Saudi Arabia, South Africa, US\nExternal debt:\n    $8 billion (December 1991)\nIndustrial production:\n    growth rate -2% (1991); accounts for 50% of GDP\nElectricity:\n    2,775,000 kW capacity; 12,000 million kWh produced, 1,400 kWh per capita\n    (1991)\nIndustries:\n    copper mining and processing, transport, construction, foodstuffs,\n    beverages, chemicals, textiles, and fertilizer\nAgriculture:\n    accounts for 17% of GDP and 85% of labor force; crops - corn (food staple),\n    sorghum, rice, peanuts, sunflower, tobacco, cotton, sugarcane, cassava;\n    cattle, goats, beef, eggs\nEconomic aid:\n    US commitments, including Ex-Im (1970-89), $4.8 billion; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $4.8 billion; OPEC\n    bilateral aid (1979-89), $60 million; Communist countries (1970-89), $533\n    million\nCurrency:\n    Zambian kwacha (plural - kwacha); 1 Zambian kwacha (ZK) = 100 ngwee\nExchange rates:\n    Zambian kwacha (ZK) per US$1 - 128.2051 (March 1992), 61.7284 (1991),\n    28.9855 (1990), 12.9032 (1989), 8.2237 (1988), 8.8889 (1987)\nFiscal year:\n    calendar year\n\n:Zambia Communications\n\nRailroads:\n    1,266 km, all 1.067-meter gauge; 13 km double track\nHighways:\n    36,370 km total; 6,500 km paved, 7,000 km crushed stone, gravel, or\n    stabilized soil; 22,870 km improved and unimproved earth\nInland waterways:\n    2,250 km, including Zambezi and Luapula Rivers, Lake Tanganyika\nPipelines:\n    crude oil 1,724 km\nPorts:\n    Mpulungu (lake port)\nCivil air:\n    12 major transport aircraft\nAirports:\n    117 total, 104 usable; 13 with permanent-surface runways; 1 with runways\n    over 3,659 m; 4 with runways 2,440-3,659 m; 22 with runways 1,220-2,439 m\nTelecommunications:\n    facilities are among the best in Sub-Saharan Africa; high-capacity microwave\n    connects most larger towns and cities; broadcast stations - 11 AM, 5 FM, 9\n    TV; satellite earth stations - 1 Indian Ocean INTELSAT and 1 Atlantic Ocean\n    INTELSAT\n\n:Zambia Defense Forces\n\nBranches:\n    Army, Air Force, Police, paramilitary\nManpower availability:\n    males 15-49, 1,818,545; 953,718 fit for military service\nDefense expenditures:\n    exchange rate conversion - $NA, NA% of GDP\n\n:Zimbabwe Geography\n\nTotal area:\n    390,580 km2\nLand area:\n    386,670 km2\nComparative area:\n    slightly larger than Montana\nLand boundaries:\n    3,066 km total; Botswana 813 km, Mozambique 1,231 km, South Africa 225 km,\n    Zambia 797 km\nCoastline:\n    none - landlocked\nMaritime claims:\n    none - landlocked\nDisputes:\n    quadripoint with Botswana, Namibia, and Zambia is in disagreement\nClimate:\n    tropical; moderated by altitude; rainy season (November to March)\nTerrain:\n    mostly high plateau with higher central plateau (high veld); mountains in\n    east\nNatural resources:\n    coal, chromium ore, asbestos, gold, nickel, copper, iron ore, vanadium,\n    lithium, tin, platinum group metals\nLand use:\n    arable land 7%; permanent crops NEGL%; meadows and pastures 12%; forest and\n    woodland 62%; other 19%; includes irrigated NEGL%\nEnvironment:\n    recurring droughts; floods and severe storms are rare; deforestation; soil\n    erosion; air and water pollution\nNote:\n    landlocked\n\n:Zimbabwe People\n\nPopulation:\n    11,033,376 (July 1992), growth rate 2.9% (1992)\nBirth rate:\n    40 births/1,000 population (1992)\nDeath rate:\n    8 deaths/1,000 population (1992)\nNet migration rate:\n    -3 migrants/1,000 population (1992)\nInfant mortality rate:\n    59 deaths/1,000 live births (1992)\nLife expectancy at birth:\n    60 years male, 64 years female (1992)\nTotal fertility rate:\n    5.4 children born/woman (1992)\nNationality:\n    noun - Zimbabwean(s); adjective - Zimbabwean\nEthnic divisions:\n    African 98% (Shona 71%, Ndebele 16%, other 11%); white 1%, mixed and Asian\n    1%\nReligions:\n    syncretic (part Christian, part indigenous beliefs) 50%, Christian 25%,\n    indigenous beliefs 24%, a few Muslim\nLanguages:\n    English (official); Shona, Sindebele\nLiteracy:\n    67% (male 74%, female 60%) age 15 and over can read and write (1990 est.)\nLabor force:\n    3,100,000; agriculture 74%, transport and services 16%, mining,\n    manufacturing, construction 10% (1987)\nOrganized labor:\n    17% of wage and salary earners have union membership\n\n:Zimbabwe Government\n\nLong-form name:\n    Republic of Zimbabwe\nType:\n    parliamentary democracy\nCapital:\n    Harare\nAdministrative divisions:\n    8 provinces; Manicaland, Mashonaland Central, Mashonaland East, Mashonaland\n    West, Masvingo (Victoria), Matabeleland North, Matabeleland South, Midlands\nIndependence:\n    18 April 1980 (from UK; formerly Southern Rhodesia)\nConstitution:\n    21 December 1979\nLegal system:\n    mixture of Roman-Dutch and English common law\nNational holiday:\n    Independence Day, 18 April (1980)\nExecutive branch:\n    executive president, 2 vice presidents, Cabinet\nLegislative branch:\n    unicameral Parliament\nJudicial branch:\n    Supreme Court\nLeaders:\n  Chief of State and Head of Government:\n    Executive President Robert Gabriel MUGABE (since 31 December 1987); Co-Vice\n    President Simon Vengai MUZENDA (since 31 December 1987); Co-Vice President\n    Joshua M. NKOMO (since 6 August 1990)\nPolitical parties and leaders:\n    Zimbabwe African National Union-Patriotic Front (ZANU-PF), Robert MUGABE;\n    Zimbabwe African National Union-Sithole (ZANU-S), Ndabaningi SITHOLE;\n    Zimbabwe Unity Movement (ZUM), Edgar TEKERE; Democratic Party (DP), Emmanuel\n    MAGOCHE\nSuffrage:\n    universal at age 18\nElections:\n  Executive President:\n    last held 28-30 March 1990 (next to be held NA March 1996); results - Robert\n    MUGABE 78.3%, Edgar TEKERE 21.7%\n  Parliament:\n    last held 28-30 March 1990 (next to be held NA March 1995); results -\n    percent of vote by party NA; seats - (150 total, 120 elected) ZANU-PF 117,\n    ZUM 2, ZANU-S 1\nMember of:\n    ACP, AfDB, C, CCC, ECA, FAO, FLS, G-77, GATT, IAEA, IBRD, ICAO, IDA, IFAD,\n    IFC, ILO, IMF, INTELSAT, INTERPOL, IOC, IOM (observer), ITU, LORCS, NAM,\n    OAU, PCA, SADCC, UN, UNCTAD, UNESCO, UNIDO, UPU, WCL, WHO, WIPO, WMO, WTO\nDiplomatic representation:\n    Counselor (Political Affairs), Head of Chancery, Ambassador Stanislaus\n    Garikai CHIGWEDERE; Chancery at 1608 New Hampshire Avenue NW, Washington, DC\n    20009; telephone (202) 332-7100\n  US:\n    Ambassador Edward Gibson LANPHER; Embassy at 172 Herbert Chitapo Avenue,\n    Harare (mailing address is P. O. Box 3340, Harare); telephone [263] (4)\n    794-521\n\n:Zimbabwe Government\n\nFlag:\n    seven equal horizontal bands of green, yellow, red, black, red, yellow, and\n    green with a white equilateral triangle edged in black based on the hoist\n    side; a yellow Zimbabwe bird is superimposed on a red five-pointed star in\n    the center of the triangle\n\n:Zimbabwe Economy\n\nOverview:\n    Agriculture employs three-fourths of the labor force and supplies almost 40%\n    of exports. The manufacturing sector, based on agriculture and mining,\n    produces a variety of goods and contributes 35% to GDP. Mining accounts for\n    only 5% of both GDP and employment, but supplies of minerals and metals\n    account for about 40% of exports. Wide year-to-year fluctuations in\n    agricultural production over the past six years have resulted in an uneven\n    growth rate, one that on average has matched the 3% annual increase in\n    population. Helped by an IMF/World Bank structural adjustment program,\n    output rose 3.5% in 1991. A drought beginning toward the end of 1991\n    suggests rough going for 1992.\nGDP:\n    exchange rate conversion - $7.1 billion, per capita $660; real growth rate\n    3.5% (1991 est.)\nInflation rate (consumer prices):\n    25% (1991 est.)\nUnemployment rate:\n    at least 30% (1991 est.)\nBudget:\n    revenues $2.7 billion; expenditures $3.3 billion, including capital\n    expenditures of $330 million (FY91)\nExports:\n    $1.8 billion (f.o.b., 1991 est.)\n  commodities:\n    agricultural 35% (tobacco 20%, other 15%), manufactures 20%, gold 10%,\n    ferrochrome 10%, cotton 5%\n  partners:\n    Europe 55% (EC 40%, Netherlands 5%, other 15%), Africa 20% (South Africa\n    10%, other 10%), US 5%\nImports:\n    $1.6 billion (c.i.f., 1991 est.)\n  commodities:\n    machinery and transportation equipment 37%, other manufactures 22%,\n    chemicals 16%, fuels 15%\n  partners:\n    EC 31%, Africa 29% (South Africa 21%, other 8%), US 8%, Japan 4%\nExternal debt:\n    $2.96 billion (December 1989 est.)\nIndustrial production:\n    growth rate 5% (1991 est.); accounts for 35% of GDP\nElectricity:\n    3,650,000 kW capacity; 7,500 million kWh produced, 700 kWh per capita (1991)\nIndustries:\n    mining, steel, clothing and footwear, chemicals, foodstuffs, fertilizer,\n    beverage, transportation equipment, wood products\nAgriculture:\n    accounts for 11% of GDP and employs 74% of population; 40% of land area\n    divided into 4,500 large commercial farms and 42% in communal lands; crops -\n    corn (food staple), cotton, tobacco, wheat, coffee, sugarcane, peanuts;\n    livestock - cattle, sheep, goats, pigs; self-sufficient in food\nEconomic aid:\n    US commitments, including Ex-Im (FY80-89), $389 million; Western (non-US)\n    countries, ODA and OOF bilateral commitments (1970-89), $2.6 billion; OPEC\n    bilateral aid (1979-89), $36 million; Communist countries (1970-89), $134\n    million\nCurrency:\n    Zimbabwean dollar (plural - dollars); 1 Zimbabwean dollar (Z$) = 100 cents\n\n:Zimbabwe Economy\n\nExchange rates:\n    Zimbabwean dollars (Z$) per US$1 - 4.3066 (March 1992), 3.4282 (1991),\n    2.4480 (1990), 2.1133 (1989), 1.8018 (1988), 1.6611 (1987)\nFiscal year:\n    1 July - 30 June\n\n:Zimbabwe Communications\n\nRailroads:\n    2,745 km 1.067-meter gauge; 42 km double track; 355 km electrified\nHighways:\n    85,237 km total; 15,800 km paved, 39,090 km crushed stone, gravel,\n    stabilized soil: 23,097 km improved earth; 7,250 km unimproved earth\nInland waterways:\n    Lake Kariba is a potential line of communication\nPipelines:\n    petroleum products 8 km\nCivil air:\n    12 major transport aircraft\nAirports:\n    491 total, 401 usable; 22 with permanent-surface runways; 2 with runways\n    over 3,659 m; 3 with runways 2,440-3,659 m; 32 with runways 1,220-2,439 m\nTelecommunications:\n    system was once one of the best in Africa, but now suffers from poor\n    maintenance; consists of microwave links, open-wire lines, and radio\n    communications stations; 247,000 telephones; broadcast stations - 8 AM, 18\n    FM, 8 TV; 1 Atlantic Ocean INTELSAT earth station\n\n:Zimbabwe Defense Forces\n\nBranches:\n    Zimbabwe National Army, Air Force of Zimbabwe, Zimbabwe National Police\n    (including Police Support Unit, Paramilitary Police), People's Militia\nManpower availability:\n    males 15-49, 2,355,965; 1,456,829 fit for military service\nDefense expenditures:\n    exchange rate conversion - $412.4 million, about 6% of GDP (FY91 est.)\n\n********\n\nNotes, Definitions, and Abbreviations\n\nText (264 nations, dependent areas, and other entities)\n\nAfghanistan\nAlbania\nAlgeria\nAmerican Samoa\nAndorra\nAngola\nAnguilla\nAntarctica\nAntigua and Barbuda\nArctic Ocean\nArgentina\nArmenia\nAruba\nAshmore and Cartier Islands\nAtlantic Ocean\nAustralia\nAustria\nAzerbaijan\n\nBahamas, The\nBahrain\nBaker Island\nBangladesh\nBarbados\nBassas da India\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia and Hercegovina\nBotswana\nBouvet Island\nBrazil\nBritish Indian Ocean Territory\nBritish Virgin Islands\nBrunei\nBulgaria\nBurkina\nBurma\nBurundi\n\nCambodia\nCameroon\nCanada\nCape Verde\nCayman Islands\nCentral African Republic\nChad\nChile\nChina (also see separate Taiwan entry)\nChristmas Island\nClipperton Island\nCocos (Keeling) Islands\nColombia\nComoros\nCongo\nCook Islands\nCoral Sea Islands\nCosta Rica\nCroatia\nCuba\nCyprus\nCzechoslovakia\n\nDenmark\nDjibouti\nDominica\nDominican Republic\n\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEstonia\nEthiopia\nEuropa Island\n\nFalkland Islands (Islas Malvinas)\nFaroe Islands\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nFrench Southern and Antarctic Lands\n\nGabon\nGambia, The\nGaza Strip\nGeorgia\nGermany\nGhana\nGibraltar\nGlorioso Islands\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuam\nGuatemala\nGuernsey\nGuinea\nGuinea-Bissau\nGuyana\n\nHaiti\nHeard Island and McDonald Islands\nHonduras\nHong Kong\nHowland Island\nHungary\n\nIceland\nIndia\nIndian Ocean\nIndonesia\nIran\nIraq\nIreland\nIsrael (also see separate Gaza Strip and West Bank entries)\nItaly\nIvory Coast\n\nJamaica\nJan Mayen\nJapan\nJarvis Island\nJersey\nJohnston Atoll\nJordan (also see separate West Bank entry)\nJuan de Nova Island\n\nKazakhstan\nKenya\nKingman Reef\nKiribati\nKorea, North\nKorea, South\nKuwait\nKyrgyzstan\n\nLaos\nLatvia\nLebanon\nLesotho\nLiberia\nLibya\nLiechtenstein\nLithuania\nLuxembourg\n\nMacau\nMacedonia\nMadagascar\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMan, Isle of\nMarshall Islands\nMartinique\nMauritania\nMauritius\nMayotte\nMexico\nMicronesia, Federated States of\nMidway Islands\nMoldova\nMonaco\nMongolia\nMontserrat\nMorocco\nMozambique\n\nNamibia\nNauru\nNavassa Island\nNepal\nNetherlands\nNetherlands Antilles\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNigeria\nNiue\nNorfolk Island\nNorthern Mariana Islands\nNorway\n\nOman\n\nPacific Islands, Trust Territory of the (Palau)\nPacific Ocean\nPakistan\nPalmyra Atoll\nPanama\nPapua New Guinea\nParacel Islands\nParaguay\nPeru\nPhilippines\nPitcairn Islands\nPoland\nPortugal\nPuerto Rico\n\nQatar\n\nReunion\nRomania\nRussia\nRwanda\n\nSaint Helena\nSaint Kitts and Nevis\nSaint Lucia\nSaint Pierre and Miquelon\nSaint Vincent and the Grenadines\nSan Marino\nSao Tome and Principe\nSaudi Arabia\nSenegal\nSerbia and Montenegro\nSeychelles\nSierra Leone\nSingapore\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSouth Georgia and the South Sandwich Islands\nSpain\nSpratly Islands\nSri Lanka\nSudan\nSuriname\nSvalbard\nSwaziland\nSweden\nSwitzerland\nSyria\n\nTaiwan (follows Zimbabwe)\nTajikistan\nTanzania\nThailand\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTromelin Island\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\n\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\n\nVanuatu\nVatican City\nVenezuela\nVietnam\nVirgin Islands\n\nWake Island\nWallis and Futuna\nWest Bank\nWestern Sahara\nWestern Samoa\nWorld\n\nYemen\n\nZaire\nZambia\nZimbabwe\n\nTaiwan\n\nAppendixes\n\nA: The United Nations System\nB: Abbreviations for International Organizations and Groups\nC: International Organizations and Groups\nD: Weights and Measures\nE: Cross-Reference List of Geographic Names\n\n\nStandard Time Zones of the World\n\nNotes, Definitions, and Abbreviations\n\nThere have been some significant changes in this edition. The Soviet Union,\nYugoslavia, and the Iraq - Saudi Arabia Neutral Zone have been dropped. All 15\nformer Soviet republics have been added - Armenia, Azerbaijan, Belarus,\nEstonia, Georgia, Kazakhstan, Kyrgyzstan, Latvia, Lithuania, Moldova, Russia,\nTajikistan, Turkmenistan, Ukraine, and Uzbekistan. Bosnia and Hercegovina,\nCroatia, Macedonia, Serbia and Montenegro, and Slovenia have replaced\nYugoslavia. Three maps on areas of special interest have been added this\nyear - two maps on the Commonwealth of Independent States (European States\nand Central Asian States) and a map of Ethnic Groups in Eastern Europe.\n\nAbbreviations: (see Appendix B for international organizations and groups)\n\navdp.: avoirdupois\n\nc.i.f.: cost, insurance, and freight\n\nCY: calendar year\n\nDWT: deadweight ton\n\nest.: estimate\n\nEx-Im: Export-Import Bank of the United States\n\nf.o.b.: free on board\n\nFRG: Federal Republic of Germany (West Germany); used for information dated\nbefore 3 October 1990 or CY91\n\nFY: fiscal year\n\nGDP: gross domestic product\n\nGDR: German Democratic Republic (East Germany); used for information dated\nbefore 3 October 1990 or CY91\n\nGNP: gross national product\n\nGRT: gross register ton\n\nkm: kilometer\n\nkm2: square kilometer\n\nkW: kilowatt\n\nkWh: kilowatt hour\n\nm: meter\n\nNA: not available\n\nNEGL: negligible\n\nnm: nautical mile\n\nNZ: New Zealand\n\nODA: official development assistance\n\nOOF: other official flows\n\nPDRY: People's Democratic Republic of Yemen [Yemen (Aden) or South Yemen];\nused for information dated before 22 May 1990 or CY91\n\nUAE: United Arab Emirates\n\nUK: United Kingdom\n\nUS: United States\n\nUSSR: Union of Soviet Socialist Republics (Soviet Union); used for information\ndated before 25 December 1991\n\nYAR: Yemen Arab Republic [Yemen (Sanaa) or North Yemen]; used for information\ndated before 22 May 1990 or CY91\n\nAdministrative divisions: The numbers, designatory terms, and first-order\nadministrative divisions are generally those approved by the US Board on\nGeographic Names (BGN). Changes that have been reported but not yet acted on\nby BGN are noted.  \n\nArea: Total area is the sum of all land and water areas delimited by\ninternational boundaries and/or coastlines. Land area is the aggregate of\nall surfaces delimited by international boundaries and/or coastlines,\nexcluding inland water bodies (lakes, reservoirs, rivers). Comparative areas\nare based on total area equivalents. Most entities are compared with the\nentire US or one of the 50 states. The smaller entities are compared with\nWashington, DC (178 km2, 69 miles2) or the Mall in Washington, DC (0.59 km2,\n0.23 miles2, 146 acres).\n\nBirth rate: The average annual number of births during a year per 1,000\npopulation at midyear; also known as crude birth rate.\n\nDates of information: In general, information available as of 1 January 1992\nwas used in the preparation of this edition. Population figures are estimates\nfor 1 July 1992, with population growth rates estimated for mid-1992 through\nmid-1993. Major political events have been updated through 30 June 1992.\nMilitary age figures are for 1992.\n\nDeath rate: The average annual number of deaths during a year per l,000\npopulation at midyear; also known as crude death rate.\n\nDiplomatic representation: The US Government has diplomatic relations with\n176 nations (the US has not yet established full diplomatic relations with\nBosnia and Hercegovina, Croatia, and Slovenia). The US has diplomatic\nrelations with 167 of the 178 UN members - the exceptions are Angola, Bhutan,\nBosnia and Hercegovina, Croatia, Cuba, Iran, Iraq, North Korea, Slovenia,\nand Vietnam. In addition, the US has diplomatic relations with 9 nations\nthat are not in the UN - Andorra, Kiribati, Monaco, Nauru, San Marino,\nSwitzerland, Tonga, Tuvalu, and Vatican City.\n\nDisputes: This category includes a wide variety of situations that range from\ntraditional bilateral boundary disputes to unilateral claims of one sort or\nanother. Every international land boundary dispute in the ``Guide to Interna-\ntional Boundaries,'' a map published by the Department of State, is included.\nReferences to other situations may also be included that are border or\nfrontier relevant, such as maritime disputes, geopolitical questions, or\nirredentist issues. However, inclusion does not necessarily constitute\nofficial acceptance or recognition by the US Government.\n\nEconomic aid: This entry refers to bilateral commitments of official develop-\nment assistance (ODA), which is defined as government grants that are\nadministered with the promotion of economic development and welfare of LDCs\nas their main objective and are concessional in character and contain a\ngrant element of at least 25%, and other official flows (OOF) or transactions\nby the official sector whose main objective is other than development\nmotivated or whose grant element is below the 25% threshold for ODA. OOF\ntransactions include official export credits (such as Eximbank credits),\nofficial equity and portfolio investment, and debt reorganization by the\nofficial sector that does not meet concessional terms. Aid is considered to \nhave been committed when agreements are initialed by the parties involved and \nconstitute a formal declaration of intent.\n\nEntities: Some of the nations, dependent areas, areas of special sovereignty,\nand governments included in this publication are not independent, and others\nare not officially recognized by the US Government. ``Nation'' refers to a\npeople politically organized into a sovereign state with a definite territory.\n``Dependent'' area refers to a broad category of political entities that are\nassociated in some way with a nation. Names used for page headings are usually\nthe short-form names as approved by the US Board on Geographic Names. The\nlong-form name is included in the ``Government'' section, and an entry of\n``none'' indicates a long-form name does not exist. In some instances, no\nshort-form name exists - then the long-form name must serve for all usages.\nThere are 264 entities in The World Factbook that may be categorized as\nfollows:\n\nNATIONS\n\n177 UN members (excluding Yugoslavia)\n\n11 nations that are not members of the UN - Andorra, Georgia, Kiribati,\nMacedonia, Monaco, Nauru, Serbia and Montenegro, Switzerland, Tonga, Tuvalu,\nVatican City (Holy See)\n\nOTHER\n\n1 Taiwan\n\nDEPENDENT AREAS\n\n6 Australia - Ashmore and Cartier Islands, Christmas Island, Cocos (Keeling)\nIslands, Coral Sea Islands, Heard Island and McDonald Islands, Norfolk Island\n\n2 Denmark - Faroe Islands, Greenland\n\n16 France - Bassas da India, Clipperton Island, Europa Island, French Guiana,\nFrench Polynesia, French Southern and Antarctic Lands, Glorioso Islands,\nGuadeloupe, Juan de Nova Island, Martinique, Mayotte, New Caledonia, Reunion,\nSaint Pierre and Miquelon, Tromelin Island, Wallis and Futuna\n\n2 Netherlands - Aruba, Netherlands Antilles\n\n3 New Zealand - Cook Islands, Niue, Tokelau\n\n3 Norway - Bouvet Island, Jan Mayen, Svalbard\n\n1 Portugal - Macau\n\n16 United Kingdom - Anguilla, Bermuda, British Indian Ocean Territory, British\nVirgin Islands, Cayman Islands, Falkland Islands, Gibraltar, Guernsey,\nHong Kong, Isle of Man, Jersey, Montserrat, Pitcairn Islands, Saint Helena,\nSouth Georgia and the South Sandwich Islands, Turks and Caicos Islands\n\n15 United States - American Samoa, Baker Island, Guam, Howland Island, Jarvis\nIsland, Johnston Atoll, Kingman Reef, Midway Islands, Navassa Island, Northern\nMariana Islands, Palmyra Atoll, Puerto Rico, Trust Territory of the Pacific\nIslands (Palau), Virgin Islands, Wake Island\n\nMISCELLANEOUS\n\n6 Antarctica, Gaza Strip, Paracel Islands, Spratly Islands, West Bank, Western\nSahara\n\nOTHER ENTITIES\n\n4 oceans - Arctic Ocean, Atlantic Ocean, Indian Ocean, Pacific Ocean\n\n1 World\n\n264 total\n\nnote: The US Government does not recognize the four so-called independent\nhomelands of Bophuthatswana, Ciskei, Transkei, and Venda in South Africa.\n\nGross domestic product (GDP): The value of all goods and services produced\ndomestically.\n\nGross national product (GNP): The value of all goods and services produced\ndomestically plus income earned abroad, minus income earned by foreigners\nfrom domestic production.\n\nGNP/GDP methodology: In the ``Economy'' section, GNP/GDP dollar estimates for\nthe OECD countries, the former Soviet republics, and the East European\ncountries are derived from purchasing power parity (PPP) calculations rather\nthan from conversions at official currency exchange rates. The PPP method\nnormally involves the use of international dollar price weights, which are\napplied to the quantities of goods and services produced in a given economy.\nIn addition to the lack of reliable data from the majority of countries, the\nstatistician faces a major difficulty in specifying, identifying, and allowing\nfor the quality of goods and services. The division of a PPP GNP/GDP estimate\nin dollars by the corresponding estimate in the local currency gives the PPP\nconversion rate. One thousand dollars will buy the same market basket of goods\nin the US as one thousand dollars - converted to the local currency at the PPP\nconversion rate - will buy in the other country. GNP/GDP estimates for the\nLDCs, on the other hand, are based on the conversion of GNP/GDP estimates in\nlocal currencies to dollars at the official currency exchange rates. One\ncaution: the proportion of, say, defense expenditures as a percent of GNP/GDP\nin local currency accounts may differ substantially from the proportion when\nGNP/GDP accounts are expressed in PPP terms, as, for example, when an observer\nestimates the dollar level of Russian or Japanese military expenditures;\nsimilar problems exist when components are expressed in dollars under currency\nexchange rate procedures. Finally, as academic research moves forward on the\nPPP method, we hope to convert all GNP/GDP estimates to this method in future\neditions of The World Factbook.\n\nGrowth rate (population): The annual percent change in the population,\nresulting from a surplus (or deficit) of births over deaths and the balance\nof migrants entering and leaving a country. The rate may be positive or\nnegative.\n\nIllicit drugs: There are five categories of illicit drugs - narcotics,\nstimulants, depressants (sedatives), hallucinogens, and cannabis. These\ncategories include many drugs legally produced and prescribed by doctors as\nwell as those illegally produced and sold outside medical channels.\n\nCannabis (Cannabis sativa) is the common hemp plant, which provides\nhallucinogens with some sedative properties, and includes marijuana (pot,\nAcapulco gold, grass, reefer), tetrahydrocannabinol (THC, Marinol), hashish\n(hash), and hashish oil (hash oil).\n\nCoca (Erythroxylon coca) is a bush, and the leaves contain the stimulant\ncocaine. Coca is not to be confused with cocoa, which comes from cacao seeds\nand is used in making chocolate, cocoa, and cocoa butter.\n\nCocaine is a stimulant derived from the leaves of the coca bush.\n\nDepressants (sedatives) are drugs that reduce tension and anxiety and include\nchloral hydrate, barbiturates (Amytal, Nembutal, Seconal, phenobarbital),\nbenzodiazepines (Librium, Valium), methaqualone (Quaalude), glutethimide\n(Doriden), and others (Equanil, Placidyl, Valmid).\n\nDrugs are any chemical substances that effect a physical, mental, emotional,\nor behavioral change in an individual.\n\nDrug abuse is the use of any licit or illicit chemical substance that results\nin physical, mental, emotional, or behavioral impairment in an individual.\n\nHallucinogens are drugs that affect sensation, thinking, self-awareness, and\nemotion.\n\nHallucinogens include LSD (acid, microdot), mescaline and peyote (mexc,\nbuttons, cactus), amphetamine variants (PMA, STP, DOB), phencyclidine (PCP,\nangel dust, hog), phencyclidine analogues (PCE, PCPy, TCP), and others\n(psilocybin, psilocyn).\n\nHashish is the resinous exudate of the cannabis or hemp plant (Cannabis\nsativa).\n\nHeroin is a semisynthetic derivative of morphine.\n\nMarijuana is the dried leaves of the cannabis or hemp plant (Cannabis sativa).\n\nNarcotics are drugs that relieve pain, often induce sleep, and refer to opium,\nopium derivatives, and synthetic substitutes. Natural narcotics include opium\n(paregoric, parepectolin), morphine (MS-Contin, Roxanol), codeine (Tylenol\nw/codeine, Empirin w/codeine, Robitussan A-C), and thebaine. Semisynthetic\nnarcotics include heroin (horse, smack), and hydromorphone (Dilaudid).\nSynthetic narcotics include meperidine or Pethidine (Demerol, Mepergan),\nmethadone (Dolophine, Methadose), and others (Darvon, Lomotil).\n\nOpium is the milky exudate of the incised, unripe seedpod of the opium poppy.\n\nOpium poppy (Papaver somniferum) is the source for many natural and\nsemisynthetic narcotics.\n\nPoppy straw concentrate is the alkaloid derived from the mature dried opium\npoppy.\n\nQat (kat, khat) is a stimulant from the buds or leaves of Catha edulis that\nis chewed or drunk as tea.\n\nStimulants are drugs that relieve mild depression, increase energy and\nactivity, and include cocaine (coke, snow, crack), amphetamines (Desoxyn,\nDexedrine), phenmetrazine (Preludin), methylphenidate (Ritalin), and others\n(Cylert, Sanorex, Tenuate).\n\nInfant mortality rate: The number of deaths to infants under one year old in\na given year per l,000 live births occurring in the same year.\n\nLand use: Human use of the land surface is categorized as arable land - land\ncultivated for crops that are replanted after each harvest (wheat, maize,\nrice); permanent crops - land cultivated for crops that are not replanted\nafter each harvest (citrus, coffee, rubber); meadows and pastures - land\npermanently used for herbaceous forage crops; forest and woodland - land\nunder dense or open stands of trees; and other - any land type not specifi-\ncally mentioned above (urban areas, roads, desert). The percentage figure for\nirrigated land refers to the portion of the entire amount of land area that\nis artificially supplied with water.\n\nLeaders: The chief of state is the titular leader of the country who\nrepresents the state at official and ceremonial funcions but is not involved\nwith the day-to-day activities of the government. The head of government is\nthe administrative leader who manages the day-to-day activities of the\ngovernment. In the UK, the monarch is the chief of state, and the Prime\nMinister is the head of government. In the US, the President is both the\nchief of state and the head of government.\n\nLife expectancy at birth: The average number of years to be lived by a group\nof people all born in the same year, if mortality at each age remains\nconstant in the future.\n\nLiteracy: There are no universal definitions and standards of literacy.\nUnless otherwise noted, all rates are based on the most common definition -\nthe ability to read and write at a specified age. Detailing the standards\nthat individual countries use to assess the ability to read and write is\nbeyond the scope of this publication.\n\nMaps: All maps will be available only in the printed version for the fore-\nseeable future.\n\nMaritime claims: The proximity of neighboring states may prevent some\nnational claims from being fully extended.\n\nMerchant marine: All ships engaged in the carriage of goods. All commercial\nvessels (as opposed to all nonmilitary ships), which excludes tugs, fishing\nvessels, offshore oil rigs, etc.; also, a grouping of merchant ships by\nnationality or register.\n\nCaptive register - A register of ships maintained by a territory, possession,\nor colony primarily or exclusively for the use of ships owned in the parent\ncountry; also referred to as an offshore register, the offshore equivalent\nof an internal register. Ships on a captive register will fly the same flag\nas the parent country, or a local variant of it, but will be subject to the\nmaritime laws and taxation rules of the offshore territory. Although the\nnature of a captive register makes it especially desirable for ships owned in\nthe parent country, just as in the internal register, the ships may also be\nowned abroad. The captive register then acts as a flag of convenience\nregister, except that it is not the register of an independent state.\n\nFlag of convenience register - A national register offering registration to a\nmerchant ship not owned in the flag state. The major flags of convenience\n(FOC) attract ships to their register by virtue of low fees, low or\nnonexistent taxation of profits, and liberal manning requirements. True FOC\nregisters are characterized by having relatively few of the ships registered\nactually owned in the flag state. Thus, while virtually any flag can be used\nfor ships under a given set of circumstances, an FOC register is one where\nthe majority of the merchant fleet is owned abroad.\nIt is also referred to as an open register.\n\nFlag state - The nation in which a ship is registered and which holds legal\njurisdiction over operation of the ship, whether at home or abroad.\nDifferences in flag state maritime legislation determine how a ship is manned\nand taxed and whether a foreign-owned ship may be placed on the register.\n\nInternal register - A register of ships maintained as a subset of a national\nregister. Ships on the internal register fly the national flag and have that\nnationality but are subject to a separate set of maritime rules from those on\nthe main national register. These differences usually include lower taxation\nof profits, manning by foreign nationals, and, usually, ownership outside the\nflag state (when it functions as an FOC register). The Norwegian International\nShip Register and Danish International Ship Register are the most notable\nexamples of an internal register.\nBoth have been instrumental in stemming flight from the national flag to\nflags of convenience and in attracting foreign-owned ships to the Norwegian\nand Danish flags.\n\nMerchant ship - A vessel that carries goods against payment of freight;\ncommonly used to denote any nonmilitary ship but accurately restricted to\ncommercial vessels only.\n\nRegister - The record of a ship's ownership and nationality as listed with\nthe maritime authorities of a country; also, the compendium of such individual\nships' registrations. Registration of a ship provides it with a nationality\nand makes it subject to the laws of the country in which registered (the flag\nstate) regardless of the nationality of the ship's ultimate owner.\n\nMoney figures: All are expressed in contemporaneous US dollars unless\notherwise indicated.\n\nNet migration rate: The balance between the number of persons entering and\nleaving a country during the year per 1,000 persons (based on midyear\npopulation). An excess of persons entering the country is referred to as net\nimmigration (3.56 migrants/1,000 population); an excess of persons leaving the\ncountry as net emigration (-9.26 migrants/1,000 population).\n\nPopulation: Figures are estimates from the Bureau of the Census based on\nstatistics from population censuses, vital registration systems, or sample\nsurveys pertaining to the recent past, and on assumptions about future trends.\n\nTotal fertility rate: The average number of children that would be born per\nwoman if all women lived to the end of their childbearing years and bore\nchildren according to a given fertility rate at each age.\n\nYears: All year references are for the calendar year (CY) unless indicated as\nfiscal year (FY).\n\nNote: Information for the US and US dependencies was compiled from material\nin the public domain and does not represent Intelligence Community estimates.\nThe Handbook of International Economic and Environmental Statistics,\npublished annually in September by the Central Intelligence Agency, contains\ndetailed economic information for the Organization for Economic Cooperation\nand Development (OECD) countries, Eastern Europe, the newly independent\nrepublics of the former nations of Yugoslavia and the Soviet Union, and\nselected other countries. The Handbook can be obtained wherever The World\nFactbook is available.\n\n\nAppendix A:\n\n The United Nations System\n\n    The UN is composed of six principal organs and numerous subordinate\nagencies and bodies as follows:\n\n1) Secretariat\n\n2) General Assembly:\n     UNCHS    United Nations Center for Human Settlements (Habitat)\n     UNCTAD   United Nations Conference on Trade and Development\n     UNDP     United Nations Development Program\n     UNEP     United Nations Environment Program\n     UNFPA    United Nations Population Fund\n     UNHCR    United Nations Office of High Commissioner for Refugees\n     UNICEF   United Nations Children's Fund\n     UNITAR   United Nations Institute for Training and Research\n     UNRWA    United Nations Relief and Works Agency for Palestine\n              Refugees in the Near East\n     UNSF     United Nations Special Fund\n     UNU      United Nations University\n     WFC      World Food Council\n     WFP      World Food Program\n\n3) Security Council:\n     UNAVEM   United Nations Angola Verification Mission\n     UNDOF    United Nations Disengagement Observer Force\n     UNFICYP  United Nations Force in Cyprus\n     UNIFIL   United Nations Interim Force in Lebanon\n     UNIIMOG  United Nations Iran-Iraq Military Observer Group\n     UNMOGIP  United Nations Military Observer Group in India and\n              Pakistan\n     UNTSO    United Nations Truce Supervision Organization\n\n4) Economic and Social Council (ECOSOC):\n     Specialized agencies\n       FAO      Food and Agriculture Organization of the United Nations\n       IBRD     International Bank for Reconstruction and Development\n       ICAO     International Civil Aviation Organization\n       IDA      International Development Association\n       IFAD     International Fund for Agricultural Development\n       IFC      International Finance Corporation\n       ILO      International Labor Organization\n       IMF      International Monetary Fund\n       IMO      International Maritime Organization\n       ITU      International Telecommunication Union\n       UNESCO   United Nations Educational, Scientific, and Cultural\n                Organization\n       UNIDO    United Nations Industrial Development Organization\n       UPU      Universal Postal Union\n       WHO      World Health Organization\n       WIPO     World Intellectual Property Organization\n       WMO      World Meteorological Organization\n                Related organizations\n       GATT     General Agreement on Tariffs and Trade\n       IAEA     International Atomic Energy Agency\n     Regional commissions\n       ECA      Economic Commission for Africa\n       ECE      Economic Commission for Europe\n       ECLAC    Economic Commission for Latin America and the Caribbean\n       ESCAP    Economic and Social Commission for Asia and the Pacific\n       ESCWA    Economic and Social Commission for Western Asia\n     Functional commissions\n       Commission on Human Rights\n       Commission on Narcotic Drugs\n       Commission for Social Development\n       Commission on the Status of Women\n       Population Commission\n       Statistical Commission\n\n5) Trusteeship Council\n\n6) International Court of Justice (ICJ)\n\nAppendix B\n\nAbbreviations for International Organizations and Groups\n\nABEDA    Arab Bank for Economic Development in Africa\nACC      Arab Cooperation Council\nACCT     Agency for Cultural and Technical Cooperation\nACP      African, Caribbean, and Pacific Countries\nAfDB     African Development Bank\nAFESD    Arab Fund for Economic and Social Development\nAG       Andean Group\nAL       Arab League\nALADI    Asociacion Latinoamericana de Integracion; see Latin\n         American Integration Association (LAIA)\nAMF      Arab Monetary Fund\nAMU      Arab Maghreb Union\nANZUS    Australia-New Zealand-United States Security Treaty\nAPEC     Asia Pacific Economic Cooperation\nAsDB     Asian Development Bank\nASEAN    Association of Southeast Asian Nations\n\nBAD      Banque Africaine de Developpement;\n         see African Development Bank (AfDB)\nBADEA    Banque Arabe de Developpement Economique en Afrique;\n         see Arab Bank for Economic Development in Africa (ABEDA)\nBCIE     Banco Centroamericano de Integracion Economico; see Central\n         American Bank for Economic Integration (BCIE)\nBDEAC    Banque de Developpment des Etats de l'Afrique Centrale; see\n         Central African States Development Bank (BDEAC)\nBenelux  Benelux Economic Union\nBID      Banco Interamericano de Desarvollo; see Inter-American\n         Development Bank (IADB)\nBIS      Bank for International Settlements\nBOAD     Banque Ouest-Africaine de Developpement; see West African\n         Development Bank (WADB)\n\nC        Commonwealth\nCACM     Central American Common Market\nCAEU     Council of Arab Economic Unity\nCARICOM  Caribbean Community and Common Market\nCCC      Customs Cooperation Council\nCDB      Caribbean Development Bank\nCE       Council of Europe\nCEAO     Communaute Economique de l'Afrique de l'Ouest; see West\n         African Economic Community (CEAO)\nCEEAC    Communaute Economique des Etats de l'Afrique Centrale; see\n         Economic Community of Central African States (CEEAC)\nCEMA     Council for Mutual Economic Assistance; also known as CMEA or\n         Comecon; abolished 1 January 1991\nCEPGL    Communaute Economique des Pays des Grands Lacs; see Economic\n         Community of the Great Lakes Countries (CEPGL)\nCERN     Conseil Europeen pour la Recherche Nucleaire; see European\n         Organization for Nuclear Research (CERN)\nCG       Contadora Group\nCIS      Commonwealth of Independent States\nCMEA     Council for Mutual Economic Assistance (CEMA); also known as\n         Comecon; abolished 1 January 1991\nCOCOM    Coordinating Committee on Export Controls\nComecon  Council for Mutual Economic Assistance (CEMA); also known as\n         CMEA; abolished 1 January 1991\nCP       Colombo Plan\nCSCE     Conference on Security and Cooperation in Europe\n\nDC       developed country\n\nEADB     East African Development Bank\nEBRD     European Bank for Reconstruction and Development\nEC       European Community\nECA      Economic Commission for Africa\nECAFE    Economic Commission for Asia and the Far East; see Economic and\n         Social Commission for Asia and the Pacific (ESCAP)\nECE      Economic Commission for Europe\nECLA     Economic Commission for Latin America; see Economic Commission\n         for Latin America and the Caribbean (ECLAC)\nECLAC    Economic Commission for Latin America and the Caribbean\nECOSOC   Economic and Social Council\nECOWAS   Economic Community of West African States\nECWA     Economic Commission for Western Asia; see Economic and Social\n         Commission for Western Asia (ESCWA)\nEFTA     European Free Trade Association\nEIB      European Investment Bank\nEntente  Council of the Entente\nESA      European Space Agency\nESCAP    Economic and Social Commission for Asia and the Pacific\nESCWA    Economic and Social Commission for Western Asia\n\nFAO      Food and Agriculture Organization\nFLS      Front Line States\nFZ       Franc Zone\n\nG-2      Group of 2\nG-3      Group of 3\nG-5      Group of 5\nG-6      Group of 6 (not to be confused with the Big Six)\nG-7      Group of 7\nG-8      Group of 8\nG-9      Group of 9\nG-10     Group of 10\nG-11     Group of 11\nG-15     Group of 15\nG-19     Group of 19\nG-24     Group of 24\nG-30     Group of 30\nG-33     Group of 33\nG-77     Group of 77\nGATT     General Agreement on Tariffs and Trade\nGCC      Gulf Cooperation Council\n\nHabitat  see United Nations Center for Human Settlements (UNCHS)\nHG       Hexagonal Group\n\nIADB     Inter-American Development Bank\nIAEA     International Atomic Energy Agency\nIBEC     International Bank for Economic Cooperation\nIBRD     International Bank for Reconstruction and Development\nICAO     International Civil Aviation Organization\nICC      International Chamber of Commerce\nICEM     Intergovernmental Committee for European Migration; see\n         International Organization for Migration (IOM)\nICFTU    International Confederation of Free Trade Unions\nICJ      International Court of Justice\nICM      Intergovernmental Committee for Migration; see\n         International Organization for Migration (IOM)\nICRC     International Committee of the Red Cross\nIDA      International Development Association\nIDB      Islamic Development Bank\nIEA      International Energy Agency\nIFAD     International Fund for Agricultural Development\nIFC      International Finance Corporation\nIGADD    Inter-Governmental Authority on Drought and Development\nIIB      International Investment Bank\nILO      International Labor Organization\nIMCO     Intergovernmental Maritime Consultative Organization; see\n         International Maritime Organization (IMO)\nIMF      International Monetary Fund\nIMO      International Maritime Organization\nINMARSAT International Maritime Satellite Organization\nINTELSAT International Telecommunications Satellite Organization\nINTERPOL International Criminal Police Organization\nIOC      International Olympic Committee\nIOM      International Organization for Migration\nISO      International Organization for Standardization\nITU      International Telecommunication Union\n\nLAES     Latin American Economic System\nLAIA     Latin American Integration Association\nLAS      League of Arab States; see Arab League (AL)\nLDC      less developed country\nLLDC     least developed country\nLORCS    League of Red Cross and Red Crescent Societies\n\nMERCOSUR Southern Cone Common Market\nMTCR     Missile Technology Control Regime\n\nNACC     North Atlantic Cooperation Council\nNAM      Nonaligned Movement\nNATO     North Atlantic Treaty Organization\nNC       Nordic Council\nNEA      Nuclear Energy Agency\nNIB      Nordic Investment Bank\nNIC      newly industrializing country; see newly industrializing\n         economy (NIE)\nNIE      newly industrializing economy\nNSG      Nuclear Suppliers Group\n\nOAPEC    Organization of Arab Petroleum Exporting Countries\nOAS      Organization of American States\nOAU      Organization of African Unity\nOECD     Organization for Economic Cooperation and Development\nOECS     Organization of Eastern Caribbean States\nOIC      Organization of the Islamic Conference\nOPANAL   Agency for the Prohibition of Nuclear Weapons in Latin America\n         and the Caribbean\nOPEC     Organization of Petroleum Exporting Countries\n\nPCA      Permanent Court of Arbitration\n\nRG       Rio Group\n\nSAARC    South Asian Association for Regional Cooperation\nSACU     Southern African Customs Union\nSADCC    Southern African Development Coordination Conference\nSELA     Sistema Economico Latinoamericana; see Latin American Economic\n         System (LAES)\nSPC      South Pacific Commission\nSPF      South Pacific Forum\n\nUDEAC    Union Douaniere et Economique de l'Afrique Centrale; see\n         Central African Customs and Economic Union (UDEAC)\nUN       United Nations\nUNAVEM   United Nations Angola Verification Mission\nUNCHS    United National Center for Human Settlements (also\n         known as Habitat)\nUNCTAD   United Nations Conference on Trade and Development\nUNDOF    United Nations Disengagement Observer Force\nUNDP     United Nations Development Program\nUNEP     United Nations Environment Program\nUNESCO   United Nations Educational, Scientific, and Cultural\n         Organization\nUNFICYP  United Nations Force in Cyprus\nUNFPA    United Nations Fund for Population Activities; see UN Population\n         Fund (UNFPA)\nUNHCR    United Nations Office of the High Commissioner for Refugees\nUNICEF   United Nations International Children's Emergency Fund; see\n         United Nations Children's Fund (UNICEF)\nUNIDO    United Nations Industrial Development Organization\nUNIFIL   United Nations Interim Force in Lebanon\nUNIIMOG  United Nations Iran-Iraq Military Observer Group\nUNMOGIP  United Nations Military Observer Group in India and Pakistan\nUNRWA    United Nations Relief and Works Agency for Palestine Refugees\n         in the Near East\nUNTSO    United Nations Truce Supervision Organization\nUPU      Universal Postal Union\nUSSR/EE  USSR/Eastern Europe\n\nWADB     West African Development Bank\nWCL      World Confederation of Labor\nWEU      Western European Union\nWFC      World Food Council\nWFP      World Food Program\nWFTU     World Federation of Trade Unions\nWHO      World Health Organization\nWIPO     World Intellectual Property Organization\nWMO      World Meteorological Organization\nWP       Warsaw Pact (members met 1 July 1991 to dissolve the alliance)\nWTO      World Tourism Organization\n\nZC       Zangger Committee\n\nnote: not all international organizations and groups have abbreviations\n\nAppendix C:\n\nInternational Organizations and Groups\n\n\n**********\n\nadvanced developing countries\n\nNote - another term for those less developed countries (LDCs) \nwith particularly rapid industrial development; see newly \nindustrializing economies (NIEs)\n\n**********\n\nAfrican, Caribbean, and Pacific Countries (ACP)\n\nestablished - 1 April 1976\n\naim - members have a preferential economic and aid relationship \nwith the EC\n\nmembers - (69) Angola, Antigua and Barbuda, The Bahamas, \nBarbados, Belize, Benin, Boswana, Burkina, Burundi, Cameroon, \nCape Verde, Central African Republic, Chad, Comoros, Congo, \nDjibouti, Dominica, Dominican Republic, Equatorial Guinea, \nEthiopia, Fiji, Gabon, The Gambia, Ghana, Grenada, Guinea, \nGuinea-Bissau, Guyana, Haiti, Ivory Coast, Jamaica, Kenya, \nKiribati, Lesotho, Liberia, Madagascar, Malawi, Mali, Mauritania, \nMauritius, Mozambique, Namibia, Niger, Nigeria, Papua New Guinea, \nRwanda, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the \nGrenadines, Sao Tome and Principe, Senegal, Seychelles, Sierra \nLeone, Solomon Islands, Somalia, Sudan, Suriname, Swaziland, \nTanzania, Togo, Tonga, Trinidad and Tobago, Tuvalu, Uganda, \nVanuatu, Western Samoa, Zaire, Zambia, Zimbabwe\n\n**********\n\nAfrican Development Bank (AfDB), also known as Banque Africaine \nde Developpement (BAD)\n\nestablished - 4 August 1963\n\naim - to promote economic and social development\n\nregional members - (51) Algeria, Angola, Benin, Botswana, \nBurkina, Burundi, Cameroon, Cape Verde, Central African Republic, \nChad, Comoros, Congo, Djibouti, Egypt, Equatorial Guinea, \nEthiopia, Gabon, The Gambia, Ghana, Guinea, Guinea-Bissau, Ivory \nCoast, Kenya, Lesotho, Liberia, Libya, Madagascar, Malawi, Mali, \nMauritania, Mauritius, Morocco, Mozambique, Namibia, Niger, \nNigeria, Rwanda, Sao Tome and Principe, Senegal, Seychelles, \nSierra Leone, Somalia, Sudan, Swaziland, Tanzania, Togo, Tunisia, \nUganda, Zaire, Zambia, Zimbabwe\n\nnonregional members - (25) Argentina, Australia, Austria, \nBelgium, Brazil, Canada, China, Denmark, Finland, France, \nGermany, India, Italy, Japan, South Korea, Kuwait, Netherlands, \nNorway, Portugal, Saudi Arabia, Sweden, Switzerland, UK, US, \nYugoslavia\n\n**********\n\nAgence de Cooperation Culturelle et Technique (ACCT)\n\nNote - see Agency for Cultural and Technical Cooperation (ACCT)\n\n**********\n\nAgency for Cultural and Technical Cooperation (ACCT)\n\nNote - acronym from Agence de Cooperation Culturelle et Technique\n\nestablished - 21 March 1970\n\naim - to promote cultural and technical cooperation among French-\nspeaking countries\n\nmembers - (32) Belgium, Benin, Burkina, Burundi, Canada, Central \nAfrican Republic, Chad, Comoros, Congo, Djibouti, Dominica, \nFrance, Gabon, Guinea, Haiti, Ivory Coast, Lebanon, Luxembourg, \nMadagascar, Mali, Mauritius, Monaco, Niger, Rwanda, Sao Tome and \nPrincipe, Senegal, Seychelles, Togo, Tunisia, Vanuatu, Vietnam, \nZaire\n\nassociate members - (7) Cameroon, Egypt, Guinea-Bissau, Laos, \nMauritania, Morocco, Saint Lucia\n\nparticipating governments - (2) New Brunswick (Canada), Quebec \n(Canada)\n\n**********\n\nAgency for the Prohibition of Nuclear Weapons in Latin America \nand the Caribbean (OPANAL)\n\nNote - acronym from Organismo para la Proscripcion de las Armas \nNucleares en la America Latina y el Caribe (OPANAL)\n\nestablished - 14 February 1967\n\naim - to encourage the peaceful uses of atomic energy and \nprohibit nuclear weapons\n\nmembers - (24) Antigua and Barbuda, The Bahamas, Barbados, \nBolivia, Chile, Colombia, Costa Rica, Dominican Republic, \nEcuador, El Salvador, Grenada, Guatemala, Haiti, Honduras, \nJamaica, Mexico, Nicaragua, Panama, Paraguay, Peru, Suriname, \nTrinidad and Tobago, Uruguay, Venezuela\n\n**********\n\nAndean Group (AG)\n\nestablished - 26 May 1969, effective 16 October 1969\n\naim - to promote harmonious development through economic \nintegration\n\nmembers - (5) Bolivia, Colombia, Ecuador, Peru, Venezuela\n\nassociate member - (1) Panama\n\nobservers - (26) Argentina, Australia, Austria, Belgium, Brazil, \nCanada, Costa Rica, Denmark, Egypt, Finland, France, Germany, \nIndia, Israel, Italy, Japan, Mexico, Netherlands, Paraguay, \nSpain, Sweden, Switzerland, UK, US, Uruguay, Yugoslavia\n\nNote - The US view is that the Socialist Federal represents its \ncontinuation.  Republic of Yugoslavia (SFRY) has dissolved and \nthat none of the successor republics\n\n**********\n\nArab Bank for Economic Development in Africa (ABEDA)\n\nNote - also known as Banque Arabe de Developpement Economique en \nAfrique (BADEA)\n\nestablished - 18 February 1974\n\neffective - 16 September 1974\n\naim - to promote economic development\n\nmembers - (16 plus the Palestine Liberation Organization) \nAlgeria, Bahrain, Iraq, Jordan, Kuwait, Lebanon, Libya, \nMauritania, Morocco, Oman, Qatar, Saudi Arabia, Sudan, Syria, \nTunisia, UAE, Palestine Liberation Organization; note - these are \nall the members of the Arab League except Djibouti, Somalia, and \nYemen\n\n**********\n\nArab Cooperation Council (ACC)\n\nestablished - 16 February 1989\n\naim - to promote economic cooperation and integration, possibly \nleading to an Arab Common Market\n\nmembers - (4) Egypt, Iraq, Jordan, Yemen\n\n**********\n\nArab Fund for Economic and Social Development (AFESD)\n\nestablished - 16 May 1968\n\naim - to promote economic and social development\n\nmembers - (20 plus the Palestine Liberation Organization) \nAlgeria, Bahrain, Djibouti, Egypt (suspended from 1979 to 1988), \nIraq, Jordan, Kuwait, Lebanon, Libya, Mauritania, Morocco, Oman, \nQatar, Saudi Arabia, Somalia, Sudan, Syria, Tunisia, UAE, Yemen, \nPalestine Liberation Organization\n\n**********\n\nArab League (AL)\n\nNote - also known as League of Arab States (LAS)\n\nestablished - 22 March 1945\n\naim - to promote economic, social, political, and military \ncooperation\n\nmembers - (20 plus the Palestine Liberation Organization) \nAlgeria, Bahrain, Djibouti, Egypt, Iraq, Jordan, Kuwait, Lebanon, \nLibya, Mauritania, Morocco, Oman, Qatar, Saudi Arabia, Somalia, \nSudan, Syria, Tunisia, UAE, Yemen, Palestine Liberation \nOrganization\n\n**********\n\nArab Maghreb Union (AMU)\n\nestablished - 17 February 1989\n\naim - to promote cooperation and integration among the Arab \nstates of northern Africa\n\nmembers - (5) Algeria, Libya, Mauritania, Morocco, Tunisia\n\n**********\n\nArab Monetary Fund (AMF)\n\nestablished - 27 April 1976\n\neffective - 2 February 1977\n\naim - to promote Arab cooperation, development, and integration \nin monetary and economic affairs\n\nmembers - (19 plus the Palestine Liberation Organization) \nAlgeria, Bahrain, Egypt, Iraq, Jordan, Kuwait, Lebanon, Libya, \nMauritania, Morocco, Oman, Qatar, Saudi Arabia, Somalia, Sudan, \nSyria, Tunisia, UAE, Yemen, Palestine Liberation Organization\n\n**********\n\nAsia Pacific Economic Cooperation (APEC)\n\nestablished - NA November 1989\n\naim - to promote trade and investment in the Pacific basin\n\nmembers - (15) all ASEAN members (Brunei, Indonesia, Malaysia, \nPhilippines, Singapore, Thailand) plus Australia, Canada, China, \nHong Kong, Japan, South Korea, NZ, Taiwan, US\n\n**********\n\nAsian Development Bank (AsDB)\n\nestablished - 19 December 1966\n\naim - to promote regional economic cooperation\n\nregional members - (35) Afghanistan, Australia, Bangladesh, \nBhutan, Burma, Cambodia, China, Cook Islands, Fiji, Hong Kong, \nIndia, Indonesia, Japan, Kiribati, South Korea, Laos, Malaysia, \nMaldives, Marshall Islands, Federated States of Micronesia, \nMongolia, Nepal, NZ, Pakistan, Papua New Guinea, Philippines, \nSingapore, Solomon Islands, Sri Lanka, Taiwan, Thailand, Tonga, \nVanuatu, Vietnam, Western Samoa\n\nnonregional members - (15) Austria, Belgium, Canada, Denmark, \nFinland, France, Germany, Italy, Netherlands, Norway, Spain, \nSweden, Switzerland, UK, US\n\n**********\n\nAsociacion Latinoamericana de Integracion (ALADI)\n\nNote - see Latin American Integration Association (LAIA)\n\n**********\n\nAssociation of Southeast Asian Nations (ASEAN)\n\nestablished - 9 August 1967\n\naim - regional economic, social, and cultural cooperation among \nthe non-Communist countries of Southeast Asia\n\nmembers - (6) Brunei, Indonesia, Malaysia, Philippines, \nSingapore, Thailand\n\nobserver - (1) Papua New Guinea\n\n**********\n\nAustralia Group\n\nestablished - 1984\n\naim - to consult on and coordinate export controls related to \nchemical and biological weapons\n\nmembers - (22) Australia, Austria, Belgium, Canada, Denmark, \nFinland, France, Germany, Greece, Ireland, Italy, Japan, \nLuxembourg, Netherlands, NZ, Norway, Portugal, Spain, Sweden, \nSwitzerland, UK, US\n\n**********\n\nAustralia - New Zealand - United States Security Treaty (ANZUS)\n\nestablished - 1 September 1951, effective 29 April 1952\n\naim - trilateral mutual security agreement, although the US \nsuspended security obligations to NZ on 11 August 1986\n\nmembers - (3) Australia, NZ, US\n\n**********\n\nBanco Centroamericano de Integracion Economico (BCIE)\n\nNote - see Central American Bank for Economic Integration (BCIE)\n\n**********\n\nBanco Interamericano de Desarvollo (BID)\n\nNote - see Inter-American Development Bank (IADB)\n\n**********\n\nBank for International Settlements (BIS)\n\nestablished - 20 January 1930\n\neffective - 17 March 1930\n\naim - to promote cooperation among central banks in international \nfinancial settlements\n\nmembers - (29) Australia, Austria, Belgium, Bulgaria, Canada, \nCzechoslovakia, Denmark, Finland, France, Germany, Greece, \nHungary, Iceland, Ireland, Italy, Japan, Netherlands, Norway, \nPoland, Portugal, Romania, South Africa, Spain, Sweden, \nSwitzerland, Turkey, UK, US, Yugoslavia\n\n**********\n\nBanque Africaine de Developpement (BAD)\n\nNote - see African Development Bank (AfDB)\n\n**********\n\nBanque Arabe de Developpement Economique en Afrique (BADEA)\n\nNote - see Arab Bank for Economic Development in Africa (ABEDA)\n\n**********\n\nBanque de Developpement des Etats de l'Afrique Centrale (BDEAC)\n\nNote - see Central African States Development Bank (BDEAC)\n\n**********\n\nBanque Ouest-Africaine de Developpement (BOAD)\n\nNote - see West African Development Bank (WADB)\n\n**********\n\nBenelux Economic Union (Benelux)\n\nNote - acronym from Belgium, Netherlands, and Luxembourg\n\nestablished - 3 February 1958\n\neffective - 1 November 1960\n\naim - to develop closer economic cooperation and integration\n\nmembers - (3) Belgium, Luxembourg, Netherlands\n\n**********\n\nBig Seven\n\nNote - membership is the same as the Group of 7\n\nestablished - NA\n\naim - to discuss and coordinate major economic policies\n\nmembers - (7) Big Six (Canada, France, Germany, Italy, Japan, UK) \nplus the US\n\n**********\n\nBig Six\n\nNote - not to be confused with the Group of 6\n\nestablished - NA\n\naim - economic cooperation\n\nmembers - (6) Canada, France, Germany, Italy, Japan, UK\n\n**********\n\nCaribbean Community and Common Market (CARICOM)\n\nestablished - 4 July 1973\n\neffective - 1 August 1973\n\naim - to promote economic integration and development, especially \namong the less developed countries\n\nmembers - (13) Antigua and Barbuda, The Bahamas, Barbados, \nBelize, Dominica, Grenada, Guyana, Jamaica, Montserrat, Saint \nKitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines, \nTrinidad and Tobago\n\nassociate members - (2) British Virgin Islands, Turks and Caicos \nIslands\n\nobservers - (10) Anguilla, Bermuda, Cayman Islands, Dominican \nRepublic, Haiti, Mexico, Netherlands Antilles, Puerto Rico, \nSuriname, Venezuela\n\n**********\n\nCaribbean Development Bank (CDB)\n\nestablished - 18 October 1969\n\neffective - 26 January 1970\n\naim - to promote economic development and cooperation\n\nregional members - (20) Anguilla, Antigua and Barbuda, The \nBahamas, Barbados, Belize, British Virgin Islands, Cayman \nIslands, Colombia, Dominica, Grenada, Guyana, Jamaica, Mexico, \nMontserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and \nthe Grenadines, Trinidad and Tobago, Turks and Caicos Islands, \nVenezuela\n\nnonregional members - (5) Canada, France, Germany, Italy, UK\n\n**********\n\nCartagena Group\n\nNote - see Group of 11\n\n**********\n\nCentral African Customs and Economic Union (UDEAC)\n\nNote - acronym from Union Douaniere et Economique de l'Afrique \nCentrale\n\nestablished - 8 December 1964\n\neffective - 1 January 1966\n\naim - to promote the establishment of a Central African Common \nMarket\n\nmembers - (6) Cameroon, Central African Republic, Chad, Congo, \nEquatorial Guinea, Gabon\n\n**********\n\nCentral African States Development Bank (BDEAC)\n\nNote - acronym from Banque de Developpement des Etats de \nl'Afrique Centrale\n\nestablished - 3 December 1975\n\naim - to provide loans for economic development\n\nmembers - (9) Cameroon, Central African Republic, Chad, Congo, \nEquatorial Guinea, France, Gabon, Germany, Kuwait\n\n**********\n\nCentral American Bank for Economic Integration (BCIE)\n\nNote - acronym from Banco Centroamericano de Integracion \nEconomico\n\nestablished - 13 December 1960\n\naim - to promote economic integration and development\n\nmembers - (5) Costa Rica, El Salvador, Guatemala, Honduras, \nNicaragua\n\n**********\n\nCentral American Common Market (CACM)\n\nestablished - 13 December 1960\n\neffective - 3 June 1961\n\naim - to promote establishment of a Central American Common \nMarket\n\nmembers - (5) Costa Rica, El Salvador, Guatemala, Honduras, \nNicaragua\n\n**********\n\ncentrally planned economies\n\nNote - a term applied mainly to the traditionally Communist \nstates that looked to the former USSR for leadership; most are \nnow evolving toward more democratic and market-oriented systems; \nalso known formerly as the Second World or as the Communist \ncountries; through the 1980s, this group included Albania, \nBulgaria, Cambodia, China, Cuba, Czechoslovakia, GDR, Hungary, \nNorth Korea, Laos, Mongolia, Poland, Romania, USSR, Vietnam, \nYugoslavia\n\n**********\n\nColombo Plan (CP)\n\nestablished - 1 July 1951\n\naim - to promote economic and social development in Asia and the \nPacific\n\nnembers - (26) Afghanistan, Australia, Bangladesh, Bhutan, Burma, \nCambodia, Canada, Fiji, India, Indonesia, Iran, Japan, South \nKorea, Laos, Malaysia, Maldives, Nepal, NZ, Pakistan, Papua New \nGuinea, Philippines, Singapore, Sri Lanka, Thailand, UK, US\n\n**********\n\nCommission for Social Development\n\nestablished - 21 June 1946 as the Social Commission, renamed 29 \nJuly 1966\n\naim - ECOSOC organization dealing with social development \nprograms\n\nmembers - (31) selected on a rotating basis from all regions\n\n**********\n\nCommission on Human Rights\n\nestablished - 18 February 1946\n\naim - ECOSOC organization dealing with human rights\n\nmembers - (43) selected on a rotating basis from all regions\n\n**********\n\nCommission on Narcotic Drugs\n\nestablished - 16 February 1946\n\naim - ECOSOC organization dealing with illicit drugs\n\nmembers - (38) selected on a rotating basis from all regions with \nemphasis on producing and processing countries\n\n**********\n\nCommission on the Status of Women\n\nestablished - 21 June 1946\n\naim - ECOSOC organization dealing with women's rights\n\nmembers - (32) selected on a rotating basis from all regions\n\n**********\n\nCommonwealth (C)\n\nestablished - 31 December 1931\n\naim - voluntary association that evolved from the British Empire \nand that seeks to foster multinational cooperation and assistance\n\nmembers - (48) Antigua and Barbuda, Australia, The Bahamas, \nBangladesh, Barbados, Belize, Botswana, Brunei, Canada, Cyprus, \nDominica, The Gambia, Ghana, Grenada, Guyana, India, Jamaica, \nKenya, Kiribati, Lesotho, Malawi, Malaysia, Maldives, Malta, \nMauritius, Namibia, NZ, Nigeria, Pakistan, Papua New Guinea, \nSaint Kitts and Nevis, Saint Lucia, Saint Vincent and the \nGrenadines, Seychelles, Sierra Leone, Singapore, Solomon Islands, \nSri Lanka, Swaziland, Tanzania, Tonga, Trinidad and Tobago, \nUganda, UK, Vanuatu, Western Samoa, Zambia, Zimbabwe\n\nspecial members - (2) Nauru, Tuvalu\n\n**********\n\nCommonwealth of Independent States (CIS)\n\nestablished - 8 December 1991\n\neffective - 21 December 1991\n\naim - to coordinate intercommonwealth relations and to provide a \nmechanism for the orderly dissolution of the USSR\n\nmembers - (11) Armenia, Azerbaijan, Belarus, Kazakhstan, \nKyrgyzstan, Moldova, Russia, Tajikistan, Turkmenistan, Ukraine, \nUzbekistan\n\n**********\n\nCommunaute Economique de l'Afrique de l'Ouest (CEAO)\n\nNote - see West African Economic Community (CEAO)\n\n**********\n\nCommunaute Economique des Etats de l'Afrique Centrale (CEEAC)\n\nNote - see Economic Community of Central African States (CEEAC)\n\n**********\n\nCommunaute Economique des Pays des Grands Lacs (CEPGL)\n\nNote - see Economic Community of the Great Lakes Countries \n(CEPGL)\n\n**********\n\nCommunist countries\n\nNote - traditionally the Marxist-Leninist states with \nauthoritarian governments and command economies based on the \nSoviet model; most of the successor states are no longer \nCommunist; see centrally planned economies\n\n**********\n\nConference on Security and Cooperation in Europe (CSCE)\n\nestablished - NA November 1972\n\naim - discusses issues of mutual concern and reviews \nimplementation of the Helsinki Agreement\n\nmembers - (52) Albania, Armenia, Austria, Azerbaijan, Belarus, \nBelgium, Bosnia and Hercegovina, Bulgaria, Canada, Croatia, \nCyprus, Czechoslovakia, Denmark, Estonia, Finland, France, \nGeorgia, Germany, Greece, Hungary, Iceland, Ireland, Italy, \nKazakhstan, Kyrgyzstan, Latvia, Liechtenstein, Lithuania, \nLuxembourg, Malta, Moldova, Monaco, Netherlands, Norway, Poland, \nPortugal, Romania, Russia, San Marino, Slovenia, Spain, Sweden, \nSwitzerland, Tajikistan, Turkey, Turkmenistan, Ukraine, UK, US, \nUzbekistan, Vatican City, Yugoslavia\n\n**********\n\nConseil Europeen pour la Recherche Nucleaire (CERN)\n\nNote - see European Organization for Nuclear Research (CERN)\n\n**********\n\nContadora Group (CG) - \nNote - was established 5 January 1983 (on the Panamanian island \nof Contadora) to reduce tensions and conflicts in Central America \nbut evolved into the Rio Group (RG); members included Colombia, \nMexico, Panama, Venezuela\n\n**********\n\nCooperation Council for the Arab States of the Gulf\n\nNote - see Gulf Cooperation Council (GCC)\n\n**********\n\nCoordinating Committee on Export Controls (COCOM)\n\nestablished - NA 1949\n\naim - to control the export of strategic products and technical \ndata from member countries to proscribed destinations<ATT>\n\nmembers - (17) Australia, Belgium, Canada, Denmark, France, \nGermany, Greece, Italy, Japan, Luxembourg, Netherlands, Norway, \nPortugal, Spain, Turkey, UK, US\n\ncooperating countries - (8) Austria, Finland, Ireland, South \nKorea, NZ, Singapore, Sweden, Switzerland\n\n**********\n\nCouncil for Mutual Economic Assistance (CEMA)\n\nNote - also known as CMEA or Comecon, was established 25 January \n1949 to promote the development of socialist economies and was \nabolished 1 January 1991; members included Afghanistan \n(observer), Albania (had not participated since 1961 break with \nUSSR), Angola (observer), Bulgaria, Cuba, Czechoslovakia, \nEthiopia (observer), GDR, Hungary, Laos (observer), Mongolia, \nMozambique (observer), Nicaragua (observer), Poland, Romania, \nUSSR, Vietnam, Yemen (observer), Yugoslavia (associate)\n\n**********\n\nCouncil of Arab Economic Unity (CAEU)\n\nestablished - 3 June 1957\n\neffective - 30 May 1964\n\naim - to promote economic integration among Arab nations\n\nmembers - (11 plus the Palestine Liberation Organization) Egypt, \nIraq, Jordan, Kuwait, Libya, Mauritania, Somalia, Sudan, Syria, \nUAE, Yemen, Palestine Liberation Organization\n\n**********\n\nCouncil of Europe (CE)\n\nestablished - 5 May 1949\n\neffective - 3 August 1949\n\naim - to promote increased unity and quality of life in Europe\n\nmembers - (28) Austria, Belgium, Belarus, Cyprus, Czechoslovakia, \nDenmark, Finland, France, Germany, Greece, Hungary, Iceland, \nIreland, Italy, Liechtenstein, Luxembourg, Malta, Netherlands, \nNorway, Poland, Portugal, San Marino, Spain, Sweden, Switzerland, \nTurkey, Ukraine, UK\n\n**********\n\nCouncil of the Entente (Entente)\n\nestablished - 29 May 1959\n\naim - to promote economic, social, and political coordination\n\nmembers - (5) Benin, Burkina, Ivory Coast, Niger, Togo\n\n**********\n\nCustoms Cooperation Council (CCC)\n\nestablished - 15 December 1950\n\naim - to promote international cooperation in customs matters\n\nmembers - (108) Algeria, Angola, Argentina, Australia, Austria, \nThe Bahamas, Bangladesh, Belgium, Bermuda, Botswana, Brazil, \nBulgaria, Burkina, Burundi, Cameroon, Canada, Central African \nRepublic, Chile, China, Congo, Cuba, Cyprus, Czechoslovakia, \nDenmark, Egypt, Ethiopia, Finland, France, Gabon, The Gambia, \nGermany, Ghana, Greece, Guatemala, Guyana, Haiti, Hong Kong, \nHungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, \nItaly, Ivory Coast, Jamaica, Japan, Jordan, Kenya, South Korea, \nLebanon, Lesotho, Liberia, Libya, Luxembourg, Madagascar, Malawi, \nMalaysia, Mali, Malta, Mauritania, Mauritius, Mexico, Morocco, \nMozambique, Nepal, Netherlands, NZ, Niger, Nigeria, Norway, \nPakistan, Paraguay, Peru, Philippines, Poland, Portugal, Romania, \nRwanda, Saudi Arabia, Senegal, Sierra Leone, Singapore, South \nAfrica, Spain, Sri Lanka, Sudan, Swaziland, Sweden, Switzerland, \nSyria, Tanzania, Thailand, Togo, Trinidad and Tobago, Tunisia, \nTurkey, Uganda, UAE, UK, US, Uruguay, Yugoslavia, Zaire, Zambia, \nZimbabwe\n\n**********\n\ndeveloped countries (DCs)\n\nNote - the top group in the comprehensive but mutually exclusive \nhierarchy of developed countries (DCs), former USSR/Eastern \nEurope (former USSR/EE), and less developed countries (LDCs); \nincludes the market-oriented economies of the mainly democratic \nnations in the Organization for Economic Cooperation and \nDevelopment (OECD), Bermuda, Israel, South Africa, and the \nEuropean ministates; also known as the First World, high-income \ncountries, the North, industrial countries; generally have a per \ncapita GNP/GDP in excess of $10,000 although some OECD countries \nand South Africa have figures well under $10,000 and two of the \nexcluded OPEC countries have figures of more than $10,000.  The \n34 DCs are: Andorra, Australia, Austria, Belgium, Bermuda, \nCanada, Denmark, Faroe Islands, Finland, France, Germany, Greece, \nIceland, Ireland, Israel, Italy, Japan, Liechtenstein, \nLuxembourg, Malta, Monaco, Netherlands, NZ, Norway, Portugal, San \nMarino, South Africa, Spain, Sweden, Switzerland, Turkey, UK, US, \nVatican City\n\n**********\n\ndeveloping countries\n\nNote - an imprecise term for the less developed countries with \ngrowing economies; see less developed countries (LDCs)\n\n**********\n\nEast African Development Bank (EADB)\n\nestablished - 6 June 1967\n\neffective - 1 December 1967\n\naim - to promote economic development\n\nmembers - (3) Kenya, Tanzania, Uganda\n\n**********\n\nEconomic and Social Commission for Asia and the Pacific (ESCAP)\n\nestablished - 28 March 1947 as Economic Commission for Asia and \nthe Far East (ECAFE)\n\naim - to promote economic development as a regional commission \nfor the UN's ECOSOC\n\nmembers - (39) Afghanistan, Australia, Bangladesh, Bhutan, \nBrunei, Burma, Cambodia, China, Fiji, France, India, Indonesia, \nIran, Japan, North Korea, South Korea, Laos, Malaysia, Maldives, \nMongolia, Nauru, Nepal, Netherlands, NZ, Pakistan, Papua New \nGuinea, Philippines, Russia, Singapore, Solomon Islands, Sri \nLanka, Thailand, Tonga, Tuvalu, UK, US, Vanuatu, Vietnam, Western \nSamoa\n\nassociate members - (10) American Samoa, Cook Islands, Guam, Hong \nKong, Kiribati, Marshall Islands, Federated States of Micronesia, \nNiue, Northern Mariana Islands, Trust Territory of the Pacific \nIslands (Palau)\n\n**********\n\nEconomic and Social Commission for Western Asia (ESCWA)\n\nestablished - 9 August 1973 as Economic Commission for Western \nAsia (ECWA)\n\naim - to promote economic development as a regional commission \nfor the UN's ECOSOC\n\nmembers - (12 and the Palestine Liberation Organization) Bahrain, \nEgypt, Iraq, Jordan, Kuwait, Lebanon, Oman, Qatar, Saudi Arabia, \nSyria, UAE, Yemen, Palestine Liberation Organization\n\n**********\n\nEconomic and Social Council (ECOSOC)\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - to coordinate the economic and social work of the UN; \nincludes five regional commissions (see Economic Commission for \nAfrica, Economic Commission for Europe, Economic Commission for \nLatin America and the Caribbean, Economic and Social Commission \nfor Asia and the Pacific, Economic and Social Commission for \nWestern Asia) and six functional commissions (see Commission for \nSocial Development, Commission on Human Rights, Commission on \nNarcotic Drugs, Commission on the Status of Women, Population \nCommission, and Statistical Commission)\n\nmembers - (54) selected on a rotating basis from all regions\n\n**********\n\nEconomic Commission for Africa (ECA)\n\nestablished - 29 April 1958\n\naim - to promote economic development as a regional commission of \nthe UN's ECOSOC\n\nmembers - (52) Algeria, Angola, Benin, Botswana, Burkina, \nBurundi, Cameroon, Cape Verde, Central African Republic, Chad, \nComoros, Congo, Djibouti, Egypt, Equatorial Guinea, Ethiopia, \nGabon, The Gambia, Ghana, Guinea, Guinea-Bissau, Ivory Coast, \nKenya, Lesotho, Liberia, Libya, Madagascar, Malawi, Mali, \nMauritania, Mauritius, Morocco, Mozambique, Namibia, Niger, \nNigeria, Rwanda, Sao Tome and Principe, Senegal, Seychelles, \nSierra Leone, Somalia, South Africa (suspended), Sudan, \nSwaziland, Tanzania, Togo, Tunisia, Uganda, Zaire, Zambia, \nZimbabwe\n\n**********\n\nEconomic Commission for Asia and the Far East (ECAFE)\n<p>see Economic and Social Commission for Asia and the Pacific \n(ESCAP)\n\n**********\n\nEconomic Commission for Europe (ECE)\n\nestablished - 28 March 1947\n\naim - to promote economic development as a regional commission of \nthe UN's ECOSOC\n\nmembers - (33) Albania, Austria, Belarus, Belgium, Bulgaria, \nCanada, Cyprus, Czechoslovakia, Denmark, Finland, France, \nGermany, Greece, Hungary, Iceland, Ireland, Italy, Luxembourg, \nMalta, Netherlands, Norway, Poland, Portugal, Romania, Russia, \nSpain, Sweden, Switzerland, Turkey, UK, Ukraine, US, Yugoslavia\n\n**********\n\nEconomic Commission for Latin America (ECLA)\n<p>see Economic Commission for Latin America and the Caribbean \n(ECLAC)\n\n**********\n\nEconomic Commission for Latin America and the Caribbean (ECLAC)\n\nestablished - 25 February 1948 as Economic Commission for Latin \nAmerica (ECLA)\n\naim - to promote economic development as a regional commission of \nthe UN's ECOSOC\n\nmembers - (41) Antigua and Barbuda, Argentina, The Bahamas, \nBarbados, Belize, Bolivia, Brazil, Canada, Chile, Colombia, Costa \nRica, Cuba, Dominica, Dominican Republic, Ecuador, El Salvador, \nFrance, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, \nMexico, Netherlands, Nicaragua, Panama, Paraguay, Peru, Portugal, \nPuerto Rico, Saint Kitts and Nevis, Saint Lucia, Saint Vincent \nand the Grenadines, Spain, Suriname, Trinidad and Tobago, UK, US, \nUruguay, Venezuela\n\nassociate members - (5) Aruba, British Virgin Islands, \nMontserrat, Netherlands Antilles, Virgin Islands\n\n**********\n\nEconomic Commission for Western Asia (ECWA)\n\nNote - see Economic and Social Commission for Western Asia \n(ESCWA)\n\n**********\n\nEconomic Community of Central African States (CEEAC) - acronym \nfrom Communaute Economique des Etats de l'Afrique Centrale\n\nestablished - 18 October 1983\n\naim - to promote regional economic cooperation and establish a \nCentral African Common Market\n\nmembers - (10) Burundi, Cameroon, Central African Republic, Chad, \nCongo, Equatorial Guinea, Gabon, Rwanda, Sao Tome and Principe, \nZaire\n\nobserver - (1) Angola\n\n**********\n\nEconomic Community of the Great Lakes Countries (CEPGL)\n\nNote - acronym from Communaute Economique des Pays des Grands \nLacs\n\nestablished - 26 September 1976\n\naim - to promote regional economic cooperation and integration\n\nmembers - (3) Burundi, Rwanda, Zaire\n\n**********\n\nEconomic Community of West African States (ECOWAS)\n\nestablished - 28 May 1975\n\naim - to promote regional economic cooperation\n\nmembers - (16) Benin, Burkina, Cape Verde, The Gambia, Ghana, \nGuinea, Guinea-Bissau, Ivory Coast, Liberia, Mali, Mauritania, \nNiger, Nigeria, Senegal, Sierra Leone, Togo\n\n**********\n\nEuropean Bank for Reconstruction and Development (EBRD)\n\nestablished - 15 April 1991\n\naim - to facilitate the transition of seven centrally planned \neconomies in Europe (Bulgaria, Czechoslovakia, Hungary, Poland, \nRomania, former USSR, and former Yugoslavia) to market economies \nby committing 60% of its loans to privatization\n\nmembers - (35) Albania, Australia, Austria, Belgium, Canada, \nCyprus, Denmark, European Community (EC), Egypt, European \nInvestment Bank (EIB), Finland, France, Germany, Greece, Iceland, \nIreland, Israel, Italy, Japan, South Korea, Liechtenstein, \nLuxembourg, Malta, Mexico, Morocco, Netherlands, NZ, Norway, \nPortugal, Spain, Sweden, Switzerland, Turkey, UK, US; note - \nincludes all 24 members of the OECD and the EC as an institution\n\n**********\n\nEuropean Community (EC)\n\nestablished - 8 April 1965\n\neffective - 1 July 1967\n\naim - a fusing of the European Atomic Energy Community (Euratom), \nthe European Coal and Steel Community (ESC), and the European \nEconomic Community (EEC or Common Market); the EC plans to \nestablish a completely integrated common market in 1992 and an \neventual federation of Europe\n\nmembers - (12) Belgium, Denmark, France, Germany, Greece, \nIreland, Italy, Luxembourg, Netherlands, Portugal, Spain, UK\n\nassociate member - (1) Czechoslovakia\n\n**********\n\nEuropean Free Trade Association (EFTA)\n\nestablished - 4 January 1960\n\neffective - 3 May 1960\n\naim - to promote expansion of free trade\n\nmembers - (6) Austria, Finland, Iceland, Norway, Sweden, \nSwitzerland\n\n**********\n\nEuropean Investment Bank (EIB)\n\nestablished - 25 March 1957\n\neffective - 1 January 1958\n\naim - to promote economic development of the EC\n\nmembers - (12) Belgium, Denmark, France, Germany, Greece, \nIreland, Italy, Luxembourg, Netherlands, Portugal, Spain, UK\n\n**********\n\nEuropean Organization for Nuclear Research (CERN)\n\nNote - acronym retained from the predecessor organization Conseil \nEuropeen pour la Recherche Nucleaire\n\nestablished - 1 July 1953\n\neffective - 29 September 1954\n\naim - to foster nuclear research for peaceful purposes only\n\nmembers - (16) Austria, Belgium, Denmark, Finland, France, \nGermany, Greece, Italy, Netherlands, Norway, Poland, Portugal, \nSpain, Sweden, Switzerland, UK\n\nobservers - (2) Turkey, Yugoslavia\n\n**********\n\nEuropean Space Agency (ESA)\n\nestablished - 31 July 1973\n\neffective - 1 May 1975\n\naim - to promote peaceful cooperation in space research and \ntechnology\n\nmembers - (13) Austria, Belgium, Denmark, France, Germany, \nIreland, Italy, Netherlands, Norway, Spain, Sweden, Switzerland, \nUK\n\nassociate member - (1) Finland\n\n**********\n\nFirst World\n\nNote - another term for countries with advanced, industrialized \neconomies; this term is fading from use; see developed countries \n(DCs)\n\n**********\n\nFood and Agriculture Organization (FAO)\n\nestablished - 16 October 1945\n\naim - UN specialized agency to raise living standards and \nincrease availability of agricultural products\n\nmembers - (157) all UN members except Armenia, Azerbaijan, \nBelarus, Bosnia and Hercegovina, Brunei, Croatia, Estonia, \nKazakhstan, Kyrgyzstan, Latvia, Liechtenstein, Lithuania, \nMarshall Islands, Federated States of Micronesia, Moldova, \nRussia, San Marino, Singapore, Slovenia, South Africa, \nTajikistan, Turkmenistan, Ukraine, Uzbekistan; other members are \nCook Islands, Switzerland, Tonga\n\n**********\n\nFormer USSR/Eastern Europe (former USSR/EE)\n\nNote - the middle group in the comprehensive but mutually \nexclusive hierarchy of developed countries (DCs), former \nUSSR/Eastern Europe (former USSR/EE), and less developed \ncountries (LDCs); these countries are in political and economic \ntransition and may well be grouped differently in the near \nfuture; this includes Albania, Armenia, Azerbaijan, Belarus, \nBosnia and Hercegovina, Bulgaria, Croatia, Czecholovakia, \nEstonia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, Latvia, \nLithuania, Moldova, Poland, Romania, Russia, Slovenia, \nTajikistan, Turkmenistan, Uzbekistan, Yugoslavia\n\n**********\n\nFour Dragons\n\nNote - the four small Asian less developed countries (LDCs) that \nhave experienced unusually rapid economic growth; also known as \nthe Four Tigers; this group includes Hong Kong, South Korea, \nSingapore, Taiwan\n\n**********\n\nFour Tigers\n\nNote - another term for the Four Dragons; see Four Dragons\n\n**********\n\nFranc Zone (FZ)\n\nestablished - NA\n\naim - monetary union among countries whose currencies are linked \nto the French franc\n\nmembers - (15) Benin, Burkina, Cameroon, Central African \nRepublic, Chad, Comoros, Congo, Equatorial Guinea, France, Gabon, \nIvory Coast, Mali, Niger, Senegal, Togo; note - France includes \nmetropolitan France, the four overseas departments of France \n(French Guiana, Guadeloupe, Martinique, Reunion), the two \nterritorial collectivities of France (Mayotte, Saint Pierre and \nMiquelon), and the three overseas territories of France (French \nPolynesia, New Caledonia, Wallis and Futuna)\n\n**********\n\nFront Line States (FLS)\n\nestablished - NA\n\naim - to achieve black majority rule in South Africa\n\nmembers - (7) Angola, Botswana, Mozambique, Namibia, Tanzania, \nZambia, Zimbabwe\n\n**********\n\nGeneral Agreement on Tariffs and Trade (GATT)\n\nestablished - 30 October 1947\n\neffective - 1 January 1948\n\naim - to promote the expansion of international trade on a \nnondiscriminatory basis\n\nmembers - (98) Antigua and Barbuda, Argentina, Australia, \nAustria, Bangladesh, Barbados, Belgium, Belize, Benin, Botswana, \nBrazil, Burkina, Burma, Burundi, Cameroon, Canada, Central \nAfrican Republic, Chad, Chile, Colombia, Congo, Cuba, Cyprus, \nCzechoslovakia, Denmark, Dominican Republic, Egypt, Finland, \nFrance, Gabon, The Gambia, Germany, Ghana, Greece, Guatemala, \nGuyana, Haiti, Hong Kong, Hungary, Iceland, India, Indonesia, \nIreland, Israel, Italy, Ivory Coast, Jamaica, Japan, Kenya, South \nKorea, Kuwait, Lesotho, Luxembourg, Madagascar, Malawi, Malaysia, \nMaldives, Malta, Mauritania, Mauritius, Mexico, Morocco, \nNetherlands, NZ, Nicaragua, Niger, Nigeria, Norway, Pakistan, \nPeru, Philippines, Poland, Portugal, Romania, Rwanda, Senegal, \nSierra Leone, Singapore, South Africa, Spain, Sri Lanka, \nSuriname, Sweden, Switzerland, Tanzania, Thailand, Togo, Trinidad \nand Tobago, Tunisia, Turkey, Uganda, UK, US, Uruguay, Yugoslavia, \nZaire, Zambia, Zimbabwe\n\n**********\n\nGroup of 2 (G-2)\n\nestablished - informal term that came into use about 1986\n\naim - bilateral economic cooperation between the two most \npowerful economic giants\n\nmembers - (2) Japan, US\n\n**********\n\nGroup of 3 (G-3)\n\nestablished - NA October 1990\n\naim - mechanism for policy coordination\n\nmembers - (3) Colombia, Mexico, Venezuela\n\n**********\n\nGroup of 5 (G-5)\n\nestablished - 22 September 1985\n\naim - the five major non-Communist economic powers\n\nmembers - (5) France, Germany, Japan, UK, US\n\n**********\n\nGroup of 6 (G-6)\n\nNote - not to be confused with the Big Six\n\nestablished - 22 May 1984\n\naim - seeks to achieve nuclear disarmament\n\nmembers - (6) Argentina, Greece, India, Mexico, Sweden, Tanzania\n\n**********\n\nGroup of 7 (G-7)\n\nNote - membership is the same as the Big Seven\n\nestablished - 22 September 1985\n\naim - the seven major non-Communist economic powers\n\nmembers - (7) Group of 5 (France, Germany, Japan, UK, US) plus \nCanada and Italy\n\n**********\n\nGroup of 8 (G-8)\n\nestablished - NA October 1975\n\naim - the developed countries (DCs) that participated in the \nConference on International Economic Cooperation (CIEC), held in \nseveral sessions between NA December 1975 and 3 June 1977\n\nmembers - (8) Australia, Canada, EC (as one member), Japan, \nSpain, Sweden, Switzerland, US\n\n**********\n\nGroup of 9 (G-9)\n\nestablished - NA\n\naim - informal group that meets occasionally on matters of mutual \ninterest\n\nmembers - (9) Austria, Belgium, Bulgaria, Denmark, Finland, \nHungary, Romania, Sweden, Yugoslavia\n\n**********\n\nGroup of 10 (G-10)\n\nNote - also known as the Paris Club\n\nestablished - NA October 1962\n\naim - wealthiest members of the IMF who provide most of the money \nto be loaned and act as the informal steering committee; name \npersists in spite of the addition of Switzerland on NA April 1984\n\nmembers - (11) Belgium, Canada, France, Germany, Italy, Japan, \nNetherlands, Sweden, Switzerland, UK, US\n\n**********\n\nGroup of 11 (G-11)\n\nNote - also known as the Cartagena Group\n\nestablished - 22 June 1984, in Cartagena, Colombia\n\naim - forum for largest debtor nations in Latin America\n\nmembers - (11) Argentina, Bolivia, Brazil, Chile, Colombia, \nDominican Republic, Ecuador, Mexico, Peru, Uruguay, Venezuela\n\n**********\n\nGroup of 15 (G-15)\n\nNote - byproduct of the Non-Aligned Movement\n\nestablished - 1989\n\naim - to promote economic cooperation among developing nations; \nto act as the main political organ for the Non-Aligned Movement\n\nmembers - (15) Algeria, Argentina, Brazil, Egypt, India, \nIndonesia, Jamaica, Malaysia, Mexico, Nigeria, Peru, Senegal, \nVenezuela, Yugoslavia, Zimbabwe\n\n**********\n\nGroup of 19 (G-19)\n\nestablished - NA October 1975\n\naim - the less developed countries (LDCs) that participated in \nthe Conference on International Economic Cooperation (CIEC) held \nin several sessions between NA December 1975 and 3 June 1977\n\nmembers - (19) Algeria, Argentina, Brazil, Cameroon, Egypt, \nIndia, Indonesia, Iran, Iraq, Jamaica, Mexico, Nigeria, Pakistan, \nPeru, Saudi Arabia, Venezuela, Yugoslavia, Zaire, Zambia\n\n**********\n\nGroup of 24 (G-24)\n\nestablished - NA January 1972\n\naim - to promote the interests of developing countries in Africa, \nAsia, and Latin America within the IMF\n\nmembers - (24) Algeria, Argentina, Brazil, Colombia, Egypt, \nEthiopia, Gabon, Ghana, Guatemala, India, Iran, Ivory Coast, \nLebanon, Mexico, Nigeria, Pakistan, Peru, Philippines, Sri Lanka, \nSyria, Trinidad and Tobago, Venezuela, Yugoslavia, Zaire\n\n**********\n\nGroup of 30 (G-30)\n\nestablished - NA 1979\n\naim - to discuss and propose solutions to the world's economic \nproblems\n\nmembers - (30) informal group of 30 leading international \nbankers, economists, financial experts, and businessmen organized \nby Johannes Witteveen (former managing director of the IMF)\n\n**********\n\nGroup of 33 (G-33)\n\nestablished - NA 1987\n\naim - to promote solutions to international economic problems\n\nmembers - (33) leading economists from 13 countries\n\n**********\n\nGroup of 77 (G-77)\n\nestablished - NA October 1967\n\naim - to promote economic cooperation among developing countries; \nname persists in spite of increased membership\n\nmembers - (127 plus the Palestine Liberation Organization) \nAfghanistan, Algeria, Angola, Antigua and Barbuda, Argentina, The \nBahamas, Bahrain, Bangladesh, Barbados, Belize, Benin, Bhutan, \nBolivia, Botswana, Brazil, Brunei, Burkina, Burma, Burundi, \nCambodia, Cameroon, Cape Verde, Central African Republic, Chad, \nChile, Colombia, Comoros, Congo, Costa Rica, Cuba, Cyprus, \nDjibouti, Dominica, Dominican Republic, Ecuador, Egypt, El \nSalvador, Equatorial Guinea, Ethiopia, Fiji, Gabon, The Gambia, \nGhana, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, \nHonduras, India, Indonesia, Iran, Iraq, Ivory Coast, Jamaica, \nJordan, Kenya, North Korea, South Korea, Kuwait, Laos, Lebanon, \nLesotho, Liberia, Libya, Madagascar, Malawi, Malaysia, Maldives, \nMali, Malta, Mauritania, Mauritius, Mexico, Mongolia, Morocco, \nMozambique, Namibia, Nepal, Nicaragua, Niger, Nigeria, Oman, \nPakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, \nQatar, Romania, Rwanda, Saint Kitts and Nevis, Saint Lucia, Saint \nVincent and the Grenadines, Sao Tome and Principe, Saudi Arabia, \nSenegal, Seychelles, Sierra Leone, Singapore, Solomon Islands, \nSomalia, Sri Lanka, Sudan, Suriname, Swaziland, Syria, Tanzania, \nThailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Uganda, UAE, \nUruguay, Vanuatu, Venezuela, Vietnam, Western Samoa, Yemen, \nYugoslavia, Zaire, Zambia, Zimbabwe, Palestine Liberation \nOrganization\n\n**********\n\nGulf Cooperation Council (GCC)\n\nNote - also known as the Cooperation Council for the Arab States \nof the Gulf\n\nestablished - 25-26 May 1981\n\naim - to promote regional cooperation in economic, social, \npolitical, and military affairs\n\nmembers - (6) Bahrain, Kuwait, Oman, Qatar, Saudi Arabia, UAE\n\n**********\n\nHabitat\n\nNote - see United Nations Center for Human Settlements (UNCHS)\n\n**********\n\nHexagonal Group\n\nNote - HG - the old Pentagonal Group plus one)\n\nestablished - July 1991\n\naim - to form an economic and political cooperation group for the \nregion between the Adriatic and the Baltic Seas\n\nmembers - (6) Austria, Czechoslovakia, Hungary, Italy, Poland, \nYugoslavia\n\n**********\n\nhigh-income countries\n\nNote - another term for the industrialized countries with high \nper capita GNPs/GDPs; see developed countries (DCs)\n\n**********\n\nindustrial countries\n\nNote - another term for the developed countries; see developed \ncountries (DCs)\n\n**********\n\nInter-American Development Bank (IADB)\n\nNote - also known as Banco Interamericano de Desarvollo (BID)\n\nestablished - 8 April 1959\n\neffective - 30 December 1959\n\naim - to promote economic and social development in Latin America\n\nmembers - (44) Argentina, Austria, The Bahamas, Barbados, \nBelgium, Bolivia, Brazil, Canada, Chile, Colombia, Costa Rica, \nDenmark, Dominican Republic, Ecuador, El Salvador, Finland, \nFrance, Germany, Guatemala, Guyana, Haiti, Honduras, Israel, \nItaly, Jamaica, Japan, Mexico, Netherlands, Nicaragua, Norway, \nPanama, Paraguay, Peru, Portugal, Spain, Suriname, Sweden, \nSwitzerland, Trinidad and Tobago, UK, US, Uruguay, Venezuela, \nYugoslavia\n\n**********\n\nInter-Governmental Authority on Drought and Development (IGADD)\n\nestablished - NA January 1986\n\naim - to promote cooperation on drought-related matters\n\nmembers - (6) Djibouti, Ethiopia, Kenya, Somalia, Sudan, Uganda\n\n**********\n\nInternational Atomic Energy Agency (IAEA)\n\nestablished - 26 October 1956\n\neffective - 29 July 1957\n\naim - to promote peaceful uses of atomic energy\n\nmembers - (115) Afghanistan, Albania, Algeria, Argentina, \nAustralia, Austria, Bangladesh, Belarus, Belgium, Bolivia, \nBrazil, Bulgaria, Burma, Cambodia, Cameroon, Canada, Chile, \nChina, Colombia, Costa Rica, Cuba, Cyprus, Czechoslovakia, \nDenmark, Dominican Republic, Ecuador, Egypt, El Salvador, \nEstonia, Ethiopia, Finland, France, Gabon, Germany, Ghana, \nGreece, Guatemala, Haiti, Hungary, Iceland, India, Indonesia, \nIran, Iraq, Ireland, Israel, Italy, Ivory Coast, Jamaica, Japan, \nJordan, Kenya, North Korea, South Korea, Kuwait, Latvia, Lebanon, \nLiberia, Libya, Liechtenstein, Lithuania, Luxembourg, Madagascar, \nMalaysia, Mali, Mauritius, Mexico, Monaco, Mongolia, Morocco, \nNamibia, Netherlands, NZ, Nicaragua, Niger, Nigeria, Norway, \nPakistan, Panama, Paraguay, Peru, Philippines, Poland, Portugal, \nQatar, Romania, Russia, Saudi Arabia, Senegal, Sierra Leone, \nSingapore, South Africa, Spain, Sri Lanka, Sudan, Sweden, \nSwitzerland, Syria, Tanzania, Thailand, Tunisia, Turkey, Uganda, \nUkraine, UAE, UK, US, Uruguay, Vatican City, Venezuela, Vietnam, \nYugoslavia, Zaire, Zambia, Zimbabwe\n\n**********\n\nInternational Bank for Economic Cooperation (IBEC)\n\nNote - established in 22 October 1963; aim was to promote \neconomic cooperation and development - members were Bulgaria, \nCuba, Czechoslovakia, East Germany, Hungary, Mongolia, Poland, \nRomania, USSR, Vietnam; now a Russian bank with a new charter\n\n**********\n\nInternational Bank for Reconstruction and Development (IBRD)\n\nNote - also known as the World Bank\n\nestablished - 22 July 1944\n\neffective - 27 December 1945\n\naim - UN specialized agency that initially promoted economic \nrebuilding after World War II and now provides economic \ndevelopment loans\n\nmembers - (156) all UN members except Armenia, Azerbaijan, \nBrunei, Cuba, Estonia, Kazakhstan, North Korea, Kyrgyzstan, \nLatvia, Liechtenstein, Lithuania, Marshall Islands, Federated \nStates of Micronesia, Moldova, San Marino, Tajikistan, \nTurkmenistan, Ukraine, Uzbekistan; other members are Kiribati, \nTonga\n\n**********\n\nInternational Chamber of Commerce (ICC)\n\nestablished - NA 1919\n\naim - to promote free trade and private enterprise and to \nrepresent business interests at national and international levels\n\nmembers - (58 national councils) Argentina, Australia, Austria, \nBelgium,  Brazil, Burkina, Cameroon, Canada, Colombia, Cyprus, \nDenmark, Ecuador, Egypt, Finland, France, Gabon, Germany, Greece, \nIceland, India, Indonesia, Iran, Ireland, Israel, Italy, Ivory \nCoast, Japan, Jordan, South Korea, Lebanon, Luxembourg, \nMadagascar, Mexico, Morocco, Netherlands, Nigeria, Norway, \nPakistan, Portugal, Saudi Arabia, Senegal, Singapore, South \nAfrica, Spain, Sri Lanka, Sweden, Switzerland, Syria, Taiwan, \nTogo, Tunisia, Turkey, UK, US, Uruguay, Venezuela, Yugoslavia, \nZaire\n\n**********\n\nInternational Civil Aviation Organization (ICAO)\n\nestablished - 7 December 1944\n\neffective - 4 April 1947\n\naim - UN specialized agency to promote international cooperation \nin civil aviation\n\nmembers - (164) all UN members except Armenia, Azerbaijan, \nBelarus, Bosnia and Hercegovina, Croatia,  Dominica, Estonia, \nKazakhstan, Kyrgyzstan, Latvia, Liechtenstein, Lithuania, \nMoldova, Saint Kitts and Nevis, Slovenia, Tajikistan, \nTurkmenistan, Ukraine, Uzbekistan, Western Samoa; other members \nare Cook Islands, Kiribati, Monaco, Nauru, Switzerland, Tonga\n\n**********\n\nInternational Committee of the Red Cross (ICRC)\n\nestablished - NA 1863\n\naim - to provide humanitarian aid in wartime\n\nmembers - (25 individuals) all Swiss nationals\n\n**********\n\nInternational Confederation of Free Trade Unions (ICFTU)\n\nestablished - NA December 1949\n\naim - to promote the trade union movement\n\nmembers - (144 national organizations in the following 103 areas) \nAntigua and Barbuda, Argentina, Australia, Austria, The Bahamas, \nBangladesh, Barbados, Basque Country, Belgium, Bermuda, Botswana, \nBrazil, Bulgaria, Burkina, Canada, Central African Republic, \nChad, Chile, Colombia, Costa Rica, Curacao, Cyprus, \nCzechoslovakia, Denmark, Dominica, Dominican Republic, Ecuador, \nEl Salvador, Estonia, Falkland Islands, Fiji, Finland, France, \nFrench Polynesia, The Gambia, Germany, Greece, Grenada, \nGuatemala, Guyana, Honduras, Hong Kong, Iceland, India, \nIndonesia, Israel, Italy, Jamaica, Japan, Kiribati, South Korea, \nLebanon, Lesotho, Liberia, Luxembourg, Madagascar, Malawi, \nMalaysia, Malta, Mauritius, Mexico, Montserrat, Morocco, \nNetherlands, New Caledonia, NZ, Nicaragua, Norway, Pakistan, \nPanama, Papua New Guinea, Peru, Philippines, Poland, Portugal, \nPuerto Rico, Russia, Saint Helena, Saint Kitts and Nevis, Saint \nLucia, Saint Vincent and the Grenadines, San Marino, Seychelles, \nSierra Leone, Singapore, Spain, Sri Lanka, Suriname, Swaziland, \nSweden, Switzerland, Taiwan, Thailand, Tonga, Trinidad and \nTobago, Tunisia, Turkey, Uganda, UK, US, Vatican City, Venezuela, \nWestern Samoa\n\n**********\n\nInternational Court of Justice (ICJ)\n\nNote - also known as the World Court\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - primary judicial organ of the UN\n\nmembers - (15 judges) elected by the General Assembly and \nSecurity Council to represent all principal legal systems\n\n**********\n\nInternational Criminal Police Organization (INTERPOL)\n\nestablished - 13 June 1956\n\naim - to promote international cooperation between criminal \npolice authorities\n\nmembers - (152) Albania, Algeria, Andorra, Angola, Antigua and \nBarbuda, Argentina, Aruba, Australia, Austria, The Bahamas, \nBahrain, Bangladesh, Barbados, Belgium, Belize, Benin, Bolivia, \nBotswana, Brazil, Brunei, Burkina, Burma, Burundi, Cambodia, \nCameroon, Canada, Cape Verde, Central African Republic, Chad, \nChile, China, Colombia, Congo, Costa Rica, Cuba, Cyprus, Denmark, \nDjibouti, Dominica, Dominican Republic, Ecuador, Egypt, \nEquatorial Guinea, Ethiopia, Fiji, Finland, France, Gabon, The \nGambia, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, \nGuyana, Haiti, Honduras, Hungary, Iceland, India, Indonesia, \nIran, Iraq, Ireland, Northern Ireland, Israel, Italy, Ivory \nCoast, Jamaica, Japan, Jordan, Kenya, Kiribati, South Korea, \nKuwait, Laos, Lebanon, Lesotho, Liberia, Libya, Liechtenstein, \nLuxembourg, Madagascar, Malawi, Malaysia, Maldives, Mali, Malta, \nMauritania, Mauritius, Mexico, Monaco, Morocco, Mozambique, \nNauru, Nepal, Netherlands, Netherlands Antilles, NZ, Nicaragua, \nNiger, Nigeria, Norway, Oman, Pakistan, Panama, Papua New Guinea, \nParaguay, Peru, Philippines, Portugal, Qatar, Romania, Russia, \nRwanda, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the \nGrenadines, Sao Tome and Principe, Saudi Arabia, Senegal, \nSeychelles, Sierra Leone, Singapore, Somalia, Spain, Sri Lanka, \nSudan, Suriname, Swaziland, Sweden, Switzerland, Syria, Tanzania, \nThailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, \nUganda, UAE, UK, US, Uruguay, Venezuela, Yemen, Yugoslavia, \nZaire, Zambia, Zimbabwe\n\n**********\n\nInternational Development Association (IDA)\n\nestablished - 26 January 1960\n\neffective - 24 September 1960\n\naim - UN specialized agency and IBRD affiliate that provides \neconomic loans for low income countries\n\nmembers - (136) Part I - (22 more economically advanced \ncountries) Australia, Austria, Belgium, Canada, Denmark, Finland, \nFrance, Germany, Iceland, Ireland, Italy, Japan, Kuwait, \nLuxembourg, Netherlands, NZ, Norway, South Africa, Sweden, UAE, \nUK, US\n\nmembers - Part II - (114 less developed nations) Afghanistan, \nAlgeria, Argentina, Bangladesh, Belize, Benin, Bhutan, Bolivia, \nBotswana, Brazil, Burkina, Burma, Burundi, Cambodia, Cameroon, \nCape Verde, Central African Republic, Chad, Chile, China, \nColombia, Comoros, Congo, Costa Rica, Cyprus, Djibouti, Dominica, \nDominican Republic, Ecuador, Egypt, El Salvador, Equatorial \nGuinea, Ethiopia, Fiji, Gabon, The Gambia, Ghana, Greece, \nGrenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, \nHonduras, Hungary, India, Indonesia, Iran, Iraq, Israel, Ivory \nCoast, Jordan, Kenya, Kiribati, South Korea, Laos, Lebanon, \nLesotho, Liberia, Libya, Madagascar, Malawi, Malaysia, Maldives, \nMali, Mauritania, Mauritius, Mexico, Morocco, Mozambique, Nepal, \nNicaragua, Niger, Nigeria, Oman, Pakistan, Panama, Papua New \nGuinea, Paraguay, Peru, Philippines, Poland, Rwanda, Saint Kitts \nand Nevis, Saint Lucia, Saint Vincent and the Grenadines, Sao \nTome and Principe, Saudi Arabia, Senegal, Sierra Leone, Solomon \nIslands, Somalia, Spain, Sri Lanka, Sudan, Swaziland, Syria, \nTanzania, Thailand, Togo, Tonga, Trinidad and Tobago, Tunisia, \nTurkey, Uganda, Vanuatu, Vietnam, Western Samoa, Yemen, \nYugoslavia, Zaire, Zambia, Zimbabwe\n\n**********\n\nInternational Energy Agency (IEA)\n\nestablished - 15 November 1974\n\naim - established by the OECD to promote cooperation on energy \nmatters, especially emergency oil sharing and relations between \noil consumers and oil producers\n\nmembers - (21) Australia, Austria, Belgium, Canada, Denmark, \nGermany, Greece, Ireland, Italy, Japan, Luxembourg, Netherlands, \nNZ, Norway, Portugal, Spain, Sweden, Switzerland, Turkey, UK, US\n\n**********\n\nInternational Finance Corporation (IFC)\n\nestablished - 25 May 1955\n\neffective - 20 July 1956\n\naim - UN specialized agency and IBRD affiliate that helps private \nenterprise sector in economic development\n\nmembers - (133) Afghanistan, Antigua and Barbuda, Argentina, \nAustralia, Austria, The Bahamas, Bangladesh, Barbados, Belgium, \nBelize, Benin, Bolivia, Botswana, Brazil, Burkina, Burma, \nBurundi, Cameroon, Canada, Chile, China, Colombia, Congo, Costa \nRica, Cyprus, Denmark, Djibouti, Dominica, Dominican Republic, \nEcuador, Egypt, El Salvador, Ethiopia, Fiji, Finland, France, \nGabon, The Gambia, Germany, Ghana, Greece, Grenada, Guatemala, \nGuinea, Guinea-Bissau, Guyana, Haiti, Honduras, Hungary, Iceland, \nIndia, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Ivory \nCoast, Jamaica, Japan, Jordan, Kenya, Kiribati, South Korea, \nKuwait, Lebanon, Lesotho, Liberia, Libya, Luxembourg, Madagascar, \nMalawi, Malaysia, Maldives, Mali, Mauritania, Mauritius, Mexico, \nMorocco, Mozambique, Nepal, Netherlands, NZ, Nicaragua, Niger, \nNigeria, Norway, Oman, Pakistan, Panama, Papua New Guinea, \nParaguay, Peru, Philippines, Portugal, Romania, Rwanda, Saint \nLucia, Saudi Arabia, Senegal, Seychelles, Sierra Leone, \nSingapore, Solomon Islands, Somalia, South Africa, Spain, Sri \nLanka, Sudan, Swaziland, Sweden, Syria, Tanzania, Thailand, Togo, \nTonga, Trinidad and Tobago, Tunisia, Turkey, Uganda, UAE, UK, US, \nUruguay, Vanuatu, Venezuela, Vietnam, Western Samoa, Yemen, \nYugoslavia, Zaire, Zambia, Zimbabwe\n\n**********\n\nInternational Fund for Agricultural Development (IFAD)\n\nestablished - NA November 1974\n\naim - UN specialized agency that promotes agricultural \ndevelopment\n\nmembers - (144) Category I - (21 industrialized aid contributors) \nAustralia, Austria, Belgium, Canada, Denmark, Finland, France, \nGermany, Greece, Ireland, Italy, Japan, Luxembourg, Netherlands, \nNZ, Norway, Spain, Sweden, Switzerland, UK, US\n\nmembers - Category II - (12 petroleum-exporting aid contributors) \nAlgeria, Gabon, Indonesia, Iran, Iraq, Kuwait, Libya, Nigeria, \nQatar, Saudi Arabia, UAE, Venezuela\n\nmembers - Category III - (111 aid recipients) Afghanistan, \nAngola, Antigua and Barbuda, Argentina, Bangladesh, Barbados, \nBelize, Benin, Bhutan, Bolivia, Botswana, Brazil, Burkina, Burma, \nBurundi, Cameroon, Cape Verde, Central African Republic, Chad, \nChile, China, Colombia, Comoros, Congo, Costa Rica, Cuba, Cyprus, \nDjibouti, Dominica, Dominican Republic, Ecuador, Egypt, El \nSalvador, Equatorial Guinea, Ethiopia, Fiji, The Gambia, Ghana, \nGrenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, \nHonduras, India, Israel, Ivory Coast, Jamaica, Jordan, Kenya, \nNorth Korea, South Korea, Laos, Lebanon, Lesotho, Liberia, \nMadagascar, Malawi, Malaysia, Maldives, Mali, Malta, Mauritania, \nMauritius, Mexico, Morocco, Mozambique, Nepal, Nicaragua, Niger, \nOman, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, \nPhilippines, Portugal, Romania, Rwanda, Saint Kitts and Nevis, \nSaint Lucia, Saint Vincent and the Grenadines, Sao Tome and \nPrincipe, Senegal, Seychelles, Sierra Leone, Solomon Islands, \nSomalia, Sri Lanka, Sudan, Suriname, Swaziland, Syria, Tanzania, \nThailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, \nUganda, Uruguay, Vietnam, Western Samoa, Yemen, Yugoslavia, \nZaire, Zambia, Zimbabwe\n\n**********\n\nInternational Investment Bank (IIB)\n\nNote - established on 7 July 1970; to promote economic \ndevelopment; members were Bulgaria, Cuba, Czechoslovakia, East \nGermany, Hungary, Mongolia, Poland, Romania, USSR, Vietnam; now a \nRussian bank with a new charter\n\n**********\n\nInternational Labor Organization (ILO)\n\nestablished - 11 April 1919 (affiliated with the UN 14 December \n1946)\n\naim - UN specialized agency concerned with world labor issues\n\nmembers - (150) all UN members except Armenia, Azerbaijan, \nBhutan, Bosnia and Hercegovina, Brunei, Croatia, Estonia, The \nGambia, Kazakhstan, Kyrgyzstan, Latvia, Liechtenstein, Lithuania, \nMaldives, Marshall Islands, Federation of Micronesia, Moldova, \nOman, Saint Kitts and Nevis, Saint Vincent and the Grenadines, \nSan Marino, Slovenia, South Africa, Tajikistan, Turkmenistan, \nUzbekistan, Vanuatu, Vietnam, Western Samoa; other member is \nSwitzerland\n\n**********\n\nInternational Maritime Organization (IMO)\n\nNote - name changed from Intergovernmental Maritime Consultative \nOrganization (IMCO) on 22 May 1982\n\nestablished - 17 March 1958\n\naim - UN specialized agency concerned with world maritime affairs\n\nmembers - (135) Algeria, Angola, Antigua and Barbuda, Argentina, \nAustralia, Austria, The Bahamas, Bahrain, Bangladesh, Barbados, \nBelgium, Belize, Benin, Bolivia, Brazil, Brunei, Bulgaria, Burma, \nCambodia, Cameroon, Canada, Cape Verde, Chile, China, Colombia, \nCongo, Costa Rica, Cuba, Cyprus, Czechoslovakia, Denmark, \nDjibouti, Dominica, Dominican Republic, Ecuador, Egypt, El \nSalvador, Equatorial Guinea, Ethiopia, Fiji, Finland, France, \nGabon, The Gambia, Germany, Ghana, Greece, Guatemala, Guinea, \nGuinea-Bissau, Guyana, Haiti, Honduras, Hungary, Iceland, India, \nIndonesia, Iran, Iraq, Ireland, Israel, Italy, Ivory Coast, \nJamaica, Japan, Jordan, Kenya, North Korea, South Korea, Kuwait, \nLebanon, Liberia, Libya, Luxembourg, Madagascar, Malawi, \nMalaysia, Maldives, Malta, Mauritania, Mauritius, Mexico, Monaco, \nMorocco, Mozambique, Nepal, Netherlands, NZ, Nicaragua, Nigeria, \nNorway, Oman, Pakistan, Panama, Papua New Guinea, Peru, \nPhilippines, Poland, Portugal, Qatar, Romania, Russia, Saint \nLucia, Saint Vincent and the Grenadines, Sao Tome and Principe, \nSaudi Arabia, Senegal, Seychelles, Sierra Leone, Singapore, \nSolomon Islands, Somalia, Spain, Sri Lanka, Sudan, Suriname, \nSweden, Switzerland, Syria, Tanzania, Thailand, Togo, Trinidad \nand Tobago, Tunisia, Turkey, UAE, UK, US, Uruguay, Vanuatu, \nVenezuela, Vietnam, Yemen, Yugoslavia, Zaire\n\nassociate members - (2) Hong Kong, Macao\n\n**********\n\nInternational Maritime Satellite Organization (INMARSAT)\n\nestablished - 3 September 1976\n\neffective - 26 July 1979\n\naim - to provide worldwide communications for maritime and other \napplications\n\nmembers - (63) Algeria, Argentina, Australia, Bahrain, Belarus, \nBelgium, Brazil, Bulgaria, Cameroon, Canada, Chile, China, \nColombia, Cuba, Czechoslovakia, Denmark, Egypt, Finland, France, \nGabon, Germany, Greece, India, Indonesia, Iran, Iraq, Ireland, \nIsrael, Italy, Japan, South Korea, Kuwait, Liberia, Malaysia, \nMonaco, Mozambique, Netherlands, NZ, Nigeria, Norway, Oman, \nPakistan, Panama, Peru, Philippines, Poland, Portugal, Qatar, \nRomania, Russia, Saudi Arabia, Singapore, Spain, Sri Lanka, \nSweden, Switzerland, Tunisia, Turkey, Ukraine, UAE, UK, US, \nYugoslavia\n\n**********\n\nInternational Monetary Fund (IMF)\n\nestablished - 22 July 1944\n\neffective - 27 December 1945\n\naim - UN specialized agency concerned with world monetary \nstability and economic development\n\nmembers - (156) all UN members except Armenia, Azerbaijan, \nBelarus, Bosnia and Hercegovina, Brunei, Croatia, Cuba, Estonia, \nKazakhstan, North Korea, Kyrgyzstan, Latvia, Liechtenstein, \nLithuania, Marshall Islands, Federated States of Micronesia, \nMoldova, Russia, San Marino, Slovenia, Tajikistan, Turkmenistan, \nUkraine, Uzbekistan; other members are Kiribati and Tonga\n\n**********\n\nInternational Olympic Committee (IOC)\n\nestablished - 23 June 1894\n\naim - to promote the Olympic ideals and administer the Olympic \ngames: 1992 Winter Olympics in Albertville, France (8-23 \nFebruary); 1992 Summer Olympics in Barcelona, Spain (25 July-9 \nAugust); 1994 Winter Olympics in Lillehammer; Norway (12-27 \nFebruary); 1996 Summer Olympics in Atlanta, United States (20 \nJuly-4 August); 1998 Winter Olympics in Nagano, Japan (date NA)\n\nmembers - (167) Afghanistan, Albania, Algeria, American Samoa, \nAndorra, Angola, Antigua and Barbuda, Argentina, Aruba, \nAustralia, Austria, The Bahamas, Bahrain, Bangladesh, Barbados, \nBelarus, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, \nBotswana, Brazil, British Virgin Islands, Brunei, Bulgaria, \nBurkina, Burma, Cameroon, Canada, Cayman Islands, Central African \nRepublic, Chad, Chile, China, Colombia, Congo, Cook Islands, \nCosta Rica, Cuba, Cyprus, Czechoslovakia, Denmark, Djibouti, \nDominican Republic, Ecuador, Egypt, El Salvador, Equatorial \nGuinea, Ethiopia, Fiji, Finland, France, Gabon, The Gambia, \nGermany, Ghana, Greece, Grenada, Guam, Guatemala, Guinea, Guyana, \nHaiti, Honduras, Hong Kong, Hungary, Iceland, India, Indonesia, \nIran, Iraq, Ireland, Israel, Italy, Ivory Coast, Jamaica, Japan, \nJordan, Kenya, North Korea, South Korea, Kuwait, Laos, Lebanon, \nLesotho, Liberia, Libya, Liechtenstein, Luxembourg, Madagascar, \nMalawi, Malaysia, Maldives, Mali, Malta, Mauritania, Mauritius, \nMexico, Monaco, Mongolia, Morocco, Mozambique, Nepal, \nNetherlands, Netherlands Antilles, NZ, Nicaragua, Niger, Nigeria, \nNorway, Oman, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, \nPhilippines, Poland, Portugal, Puerto Rico, Qatar, Romania, \nRussia, Rwanda, Saint Vincent and the Grenadines, San Marino, \nSaudi Arabia, Senegal, Seychelles, Sierra Leone, Singapore, \nSolomon Islands, Somalia, Spain, Sri Lanka, Sudan, Suriname, \nSwaziland, Sweden, Switzerland, Syria, Taiwan, Tanzania, \nThailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, \nUganda, Ukraine, UAE, UK, US, Uruguay, Vanuatu, Venezuela, \nVietnam, Virgin Islands, Western Samoa, Yemen, Yugoslavia, Zaire, \nZambia, Zimbabwe\n\n**********\n\nInternational Organization for Migration (IOM) - established as \nProvisional Intergovernmental Committee for the Movement of \nMigrants from Europe; renamed Intergovernmental Committee for \nEuropean Migration (ICEM) on 15 November 1952; renamed \nIntergovernmental Committee for Migration (ICM) in November 1980; \ncurrent name adopted 14 November 1989\n\nestablished - 5 December 1951\n\naim - to facilitate orderly international emigration and \nimmigration\n\nmembers - (39) Argentina, Australia, Austria, Bangladesh, \nBelgium, Bolivia, Canada, Chile, Colombia, Costa Rica, Cyprus, \nDenmark, Dominican Republic, Ecuador, El Salvador, Germany, \nGreece, Guatemala, Honduras, Israel, Italy, Kenya, South Korea, \nLuxembourg, Netherlands, Nicaragua, Norway, Panama, Paraguay, \nPeru, Philippines, Portugal, Sri Lanka, Sweden, Switzerland, \nThailand, US, Uruguay, Venezuela\n\nobservers - (25) Belize, Brazil, Cape Verde, Egypt, Finland, \nFrance, Ghana, Guinea-Bissau, Hungary, Japan, Mexico, NZ, \nPakistan, San Marino, Somalia, Sovereign Military Order of Malta, \nSpain, Turkey, Uganda, UK, Vatican City, Vietnam, Yugoslavia, \nZambia, Zimbabwe\n\n**********\n\nInternational Organization for Standardization (ISO)\n\nestablished - NA February 1947\n\naim - to promote the development of international standards\n\nmembers - (72 national standards organizations) Albania, Algeria, \nArgentina, Australia, Austria, Bangladesh, Belgium, Brazil, \nBulgaria, Canada, Chile, China, Colombia, Cuba, Cyprus, \nCzechoslovakia, Denmark, Egypt, Ethiopia, Finland, France, \nGermany, Ghana, Greece, Hungary, India, Indonesia, Iran, Iraq, \nIreland, Israel, Italy, Ivory Coast, Jamaica, Japan, Kenya, North \nKorea, South Korea, Malaysia, Mexico, Mongolia, Morocco, \nNetherlands, NZ, Nigeria, Norway, Pakistan, Papua New Guinea, \nPeru, Philippines, Poland, Portugal, Russia, Saudi Arabia, \nSingapore, South Africa, Spain, Sri Lanka, Sudan, Sweden, \nSwitzerland, Syria, Tanzania, Thailand, Trinidad and Tobago, \nTunisia, Turkey, UK, US, Venezuela, Vietnam, Yugoslavia\n\ncorrespondent members - (14) Bahrain, Barbados, Brunei, Guinea, \nHong Kong, Iceland, Jordan, Kuwait, Malawi, Mauritius, Oman, \nSenegal, UAE, Uruguay\n\n**********\n\nInternational Red Cross and Red Crescent Movement\n\nestablished - NA 1928\n\naim - to promote worldwide humanitarian aid through the \nInternational Committee of the Red Cross (ICRC) in wartime, and \nLeague of Red Cross and Red Crescent Societies (LORCS) in \npeacetime\n\nmembers - (9) 2 representatives from ICRC, 2 from LORCS, and 5 \nfrom national societies elected by the international conference \nof the International Red Cross and Red Crescent Movement\n\n**********\n\nInternational Telecommunication Union (ITU)\n\nestablished - 9 December 1932\n\neffective - 1 January 1934\n\naffiliated with the UN - 15 November 1947\n\naim - UN specialized agency concerned with world \ntelecommunications\n\nmembers - (164) all UN members except Armenia, Azerbaijan, Bosnia \nand Hercegovina, Croatia, Dominica, Estonia, Kazakhstan, \nKyrgyzstan, Latvia, Lithuania, Marshall Islands, Federation of \nMicronesia, Moldova, Saint Kitts and Nevis, Saint Lucia, \nSeychelles, Slovenia, Tajikistan, Turkmenistan, Uzbekistan; other \nmembers are Kiribati, Monaco, Nauru, Switzerland, Tonga, Vatican \nCity\n\n**********\n\nInternational Telecommunications Satellite Organization \n(INTELSAT)\n\nestablished - 20 August 1971\n\neffective - 12 February 1973\n\naim - to develop and operate a global commercial \ntelecommunications satellite system\n\nmembers - (118) Afghanistan, Algeria, Angola, Argentina, \nAustralia, Austria, The Bahamas, Bangladesh, Barbados, Belgium, \nBenin, Bolivia, Brazil, Burkina, Cameroon, Canada, Central \nAfrican Republic, Chad, Chile, China, Colombia, Congo, Costa \nRica, Cyprus, Denmark, Dominican Republic, Ecuador, Egypt, El \nSalvador, Ethiopia, Fiji, Finland, France, Gabon, Germany, Ghana, \nGreece, Guatemala, Guinea, Haiti, Honduras, Iceland, India, \nIndonesia, Iran, Iraq, Ireland, Israel, Italy, Ivory Coast, \nJamaica, Japan, Jordan, Kenya, South Korea, Kuwait, Lebanon, \nLibya, Liechtenstein, Luxembourg, Madagascar, Malawi, Malaysia, \nMali, Mauritania, Mauritius, Mexico, Monaco, Morocco, Mozambique, \nNepal, Netherlands, NZ, Nicaragua, Niger, Nigeria, Norway, Oman, \nPakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, \nPortugal, Qatar, Rwanda, Saudi Arabia, Senegal, Singapore, \nSomalia, South Africa, Spain, Sri Lanka, Sudan, Swaziland, \nSweden, Switzerland, Syria, Tanzania, Thailand, Togo, Trinidad \nand Tobago, Tunisia, Turkey, Uganda, UAE, UK, US, Uruguay, \nVatican City, Venezuela, Vietnam, Yemen, Yugoslavia, Zaire, \nZambia, Zimbabwe\n\n**********\n\nIslamic Development Bank (IDB)\n\nestablished - 15 December 1973\n\naim - to promote Islamic economic aid and social development\n\nmembers - (43 plus the Palestine Liberation Organization) \nAfghanistan, Algeria, Bahrain, Bangladesh, Benin, Brunei, \nBurkina, Cameroon, Chad, Comoros, Djibouti, Egypt, Gabon, The \nGambia, Guinea, Guinea-Bissau, Indonesia, Iran, Iraq, Jordan, \nKuwait, Lebanon, Libya, Malaysia, Maldives, Mali, Mauritania, \nMorocco, Niger, Oman, Pakistan, Qatar, Saudi Arabia, Senegal, \nSierra Leone, Somalia, Sudan, Syria, Tunisia, Turkey, Uganda, \nUAE, Yemen, Palestine Liberation Organization\n\n**********\n\nLatin American Economic System (LAES) - , also known as Sistema \nEconomico Latinoamericana (SELA)\n\nestablished - 17 October 1975\n\naim - to promote economic and social development through regional \ncooperation\n\nmembers - (26) Argentina, Barbados, Bolivia, Brazil, Chile, \nColombia, Costa Rica, Cuba, Dominican Republic, Ecuador, El \nSalvador, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, \nMexico, Nicaragua, Panama, Paraguay, Peru, Suriname, Trinidad and \nTobago, Uruguay, Venezuela\n\n**********\n\nLatin American Integration Association (LAIA) - , also known as \nAsociacion Latinoamericana de Integracion (ALADI)\n\nestablished - 12 August 1980\n\neffective - 18 March 1981\n\naim - to promote freer regional trade\n\nmembers - (11) Argentina, Bolivia, Brazil, Chile, Colombia, \nEcuador, Mexico, Paraguay, Peru, Uruguay, Venezuela\n\n**********\n\nLeague of Arab States (LAS)\n\nNote - see Arab League (AL)\n\n**********\n\nLeague of Red Cross and Red Crescent Societies (LORCS)\n\nestablished - 5 May 1919\n\naim - to provide humanitarian aid in peacetime\n\nmembers - (147) Afghanistan, Albania, Algeria, Angola, Argentina, \nAustralia, Austria, The Bahamas, Bahrain, Bangladesh, Barbados, \nBelgium, Belize, Benin, Bolivia, Botswana, Brazil, Bulgaria, \nBurkina, Burma, Burundi, Cambodia, Cameroon, Canada, Cape Verde, \nCentral African Republic, Chad, Chile, China, Colombia, Congo, \nCosta Rica, Cuba, Czechoslovakia, Denmark, Djibouti, Dominica, \nDominican Republic, Ecuador, Egypt, El Salvador, Ethiopia, Fiji, \nFinland, France, The Gambia, Germany, Ghana, Greece, Grenada, \nGuatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras, \nHungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Italy, \nIvory Coast, Jamaica, Japan, Jordan, Kenya, North Korea, South \nKorea, Kuwait, Laos, Lebanon, Lesotho, Liberia, Libya, \nLiechtenstein, Luxembourg, Madagascar, Malawi, Malaysia, Mali, \nMauritania, Mauritius, Mexico, Monaco, Mongolia, Morocco, \nMozambique, Nepal, Netherlands, NZ, Nicaragua, Niger, Nigeria, \nNorway, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, \nPhilippines, Poland, Portugal, Qatar, Romania, Russia, Rwanda, \nSaint Lucia, Saint Vincent and the Grenadines, San Marino, Sao \nTome and Principe, Saudi Arabia, Senegal, Sierra Leone, \nSingapore, Somalia, South Africa, Spain, Sri Lanka, Sudan, \nSuriname, Swaziland, Sweden, Switzerland, Syria, Tanzania, \nThailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, \nUganda, UAE, UK, US, Uruguay, Venezuela, Vietnam, Western Samoa, \nYemen, Yugoslavia, Zaire, Zambia, Zimbabwe\n\nassociate members - (2) Equatorial Guinea, Gabon\n\n**********\n\nleast developed countries (LLDCs)\n\nNote - that subgroup of the less developed countries (LDCs) \ninitially identified by the UN General Assembly in 1971 as having \nno significant economic growth, per capita GNPs/GDPs normally \nless than $500, and low literacy rates; also known as the \nundeveloped countries.  The 41 LLDCs are: Afghanistan, \nBangladesh, Benin, Bhutan, Botswana, Burkina, Burma, Burundi, \nCape Verde, Central African Republic, Chad, Comoros, Djibouti, \nEquatorial Guinea, Ethiopia, The Gambia, Guinea, Guinea-Bissau, \nHaiti, Kiribati, Laos, Lesotho, Malawi, Maldives, Mali, \nMauritania, Mozambique, Nepal, Niger, Rwanda, Sao Tome and \nPrincipe, Sierra Leone, Somalia, Sudan, Tanzania, Togo, Tuvalu, \nUganda, Vanuatu, Western Samoa, Yemen\n\n**********\n\nless developed countries (LDCs)\n\nNote - the bottom group in the comprehensive but mutually \nexclusive hierarchy of developed countries (DCs), former \nUSSR/Eastern Europe (former USSR/EE), and less developed \ncountries (LDCs); mainly countries with low levels of output, \nliving standards, and technology; per capita GNPs/GDPs are \ngenerally below $5,000 and often less than $1,000; however, the \ngroup also includes a number of countries with high per capita \nincomes, areas of advanced technology, and rapid rates of growth;  \nincludes the advanced developing countries, developing countries, \nFour Dragons (Four Tigers), least developed countries (LLDCs), \nlow-income countries, middle-income countries, newly \nindustrializing economies (NIEs), the South, Third World, \nunderdeveloped countries, undeveloped countries.  The 173 LDCs \nare:  Afghanistan, Algeria, American Samoa, Angola, Anguilla, \nAntigua and Barbuda, Argentina, Aruba, The Bahamas, Bahrain, \nBangladesh, Barbados, Belize, Benin, Bhutan, Bolivia, Botswana, \nBrazil, British Virgin Islands, Brunei, Burkina, Burma, Burundi, \nCambodia, Cameroon, Cape Verde, Cayman Islands, Central African \nRepublic, Chad, Chile, China, Christmas Island, Cocos Islands, \nColombia, Comoros, Congo, Cook Islands, Costa Rica, Cuba, Cyprus, \nCzechoslovakia, Djibouti, Dominica, Dominican Republic, Ecuador, \nEgypt, El Salvador, Equatorial Guinea, Ethiopia, Falkland \nIslands, Fiji, French Guiana, French Polynesia, Gabon, The \nGambia, Gaza Strip, Ghana, Gibraltar, Greenland, Grenada, \nGuadeloupe, Guam, Guatemala, Guernsey, Guinea, Guinea-Bissau, \nGuyana, Haiti, Honduras, Hong Kong, India, Indonesia, Iran, Iraq, \nIvory Coast, Jamaica, Jersey, Jordan, Kenya, Kiribati, North \nKorea, South Korea, Kuwait, Laos, Lebanon, Lesotho, Liberia, \nLibya, Macau, Madagascar, Malawi, Malaysia, Maldives, Mali, Isle \nof Man, Marshall Islands, Martinique, Mauritania, Mauritius, \nMayotte, Mexico, Federated States of Micronesia, Mongolia, \nMontserrat, Morocco, Mozambique, Namibia, Nauru, Nepal, \nNetherlands Antilles, New Caledonia, Nicaragua, Niger, Nigeria, \nNiue, Norfolk Island, Northern Mariana Islands, Oman, Trust \nTerritory of the Pacific Islands (Palau), Pakistan, Panama, Papua \nNew Guinea, Paraguay, Peru, Philippines, Pitcairn Islands, Puerto \nRico, Qatar, Reunion, Rwanda, Saint Helena, Saint Kitts and \nNevis, Saint Lucia, Saint Pierre and Miquelon, Saint Vincent and \nthe Grenadines, Sao Tome and Principe, Saudi Arabia, Senegal, \nSeychelles, Sierra Leone, Singapore, Solomon Islands, Somalia, \nSri Lanka, Sudan, Suriname, Swaziland, Syria, Taiwan, Tanzania, \nThailand, Togo, Tokelau, Tonga, Trinidad and Tobago, Tunisia, \nTurks and Caicos Islands, Tuvalu, UAE, Uganda, Uruguay, Vanuatu, \nVenezuela, Vietnam, Virgin Islands, Wallis and Futuna, West Bank, \nWestern Sahara, Western Samoa, Yemen, Zaire, Zambia, Zimbabwe\n\n**********\n\nlow-income countries\n\nNote - another term for those less developed countries with \nbelow-average per capita GNPs/GDPs; see less developed countries \n(LDCs)\n\n**********\n\nmiddle-income countries\n\nNote - another term for those less developed countries with \nabove-average per capita GNPs/GDPs; see less developed countries \n(LDCs)\n\n**********\n\nMissile Technology Control Regime (MTCR)\n\nestablished - April 1987\n\naim - to arrest missile proliferation by controlling the export \nof key missile technologies and equipment\n\nmembers - (20) Australia, Austria, Belgium, Canada, Denmark, \nFinland, France, Germany, Italy, Japan, Luxembourg, Netherlands, \nNZ, Norway, Portugal, Spain, Sweden, Switzerland, UK, US\n\n**********\n\nnewly industrializing countries (NICs)\n\nNote - former term for the newly industrializing economies; see \nnewly industrializing economies (NIEs)\n\n**********\n\nnewly industrializing economies (NIEs)\n\nNote - that subgroup of the less developed countries (LDCs) that \nhas experienced particularly rapid industrialization of their \neconomies; formerly known as the newly industrializing countries \n(NICs); also known as advanced developing countries; usually \nincludes the Four Dragons (Hong Kong, South Korea, Singapore, \nTaiwan) plus Brazil and Mexico\n\n**********\n\nNonaligned Movement (NAM)\n\nestablished - 1-6 September 1961\n\naim - political and military cooperation apart from the \ntraditional East or West blocs\n\nmembers - (101 plus the Palestine Liberation Organization) \nAfghanistan, Algeria, Angola, Argentina, The Bahamas, Bahrain, \nBangladesh, Barbados, Belize, Benin, Bhutan, Bolivia, Botswana, \nBurkina, Burundi, Cambodia, Cameroon, Cape Verde, Central African \nRepublic, Chad, Colombia, Comoros, Congo, Cuba, Cyprus, Djibouti, \nEcuador, Egypt, Equatorial Guinea, Ethiopia, Gabon, The Gambia, \nGhana, Grenada, Guinea, Guinea-Bissau, Guyana, India, Indonesia, \nIran, Iraq, Ivory Coast, Jamaica, Jordan, Kenya, North Korea, \nKuwait, Laos, Lebanon, Lesotho, Liberia, Libya, Madagascar, \nMalawi, Malaysia, Maldives, Mali, Malta, Mauritania, Mauritius, \nMongolia, Morocco, Mozambique, Namibia, Nepal, Nicaragua, Niger, \nNigeria, Oman, Pakistan, Panama, Peru, Qatar, Rwanda, Saint \nLucia, Sao Tome and Principe, Saudi Arabia, Senegal, Seychelles, \nSierra Leone, Singapore, Somalia, Sri Lanka, Sudan, Suriname, \nSwaziland, Syria, Tanzania, Togo, Trinidad and Tobago, Tunisia, \nUganda, UAE, Vanuatu, Venezuela, Vietnam, Yemen, Yugoslavia, \nZaire, Zambia, Zimbabwe, Palestine Liberation Organization\n\nobservers - (9) Antigua and Barbuda, Brazil, Costa Rica, \nDominica, El Salvador, Mexico, Papua New Guinea, Philippines, \nUruguay\n\nguests - (11) Australia, Austria, Dominican Republic, Finland, \nGreece, Portugal, Romania, San Marino, Spain, Sweden, Switzerland\n\n**********\n\nNordic Council (NC)\n\nestablished - 16 March 1952\n\neffective - 12 February 1953\n\naim - to promote regional economic, cultural, and environmental \ncooperation\n\nmembers - (5) Denmark, Finland, Iceland, Norway, Sweden; note - \nDenmark includes Faroe Islands and Greenland\n\n**********\n\nNordic Investment Bank (NIB)\n\nestablished - 4 December 1975\n\neffective - 1 June 1976\n\naim - to promote economic cooperation and development\n\nmembers - (5) Denmark, Finland, Iceland, Norway, Sweden\n\n**********\n\nNorth\n\nNote - a popular term for the rich industrialized countries \ngenerally located in the northern portion of the Northern \nHemisphere; the counterpart of the South; see developed countries \n(DCs)\n\n**********\n\nNorth Atlantic Cooperation Council (NACC) - an extension of NATO\n\nestablished - 8 November 1991\n\neffective - 20 December 1991\n\naim - to form a forum to discuss cooperation concerning mutual \npolitical and security issues\n\nmembers - (35) Armenia, Azerbaijan, Belarus, Belgium, Bulgaria, \nCanada, Czechoslovakia, Denmark, Estonia, France, Germany, \nGreece, Hungary, Iceland, Italy, Kazakhstan, Kyrgyzstan, Latvia, \nLithuania, Luxembourg, Moldova, Netherlands, Norway, Poland, \nPortugal, Romania, Russia, Spain, Tajikistan, Turkey, \nTurkmenistan, Ukraine, UK, US, Uzbekistan\n\n**********\n\nNorth Atlantic Treaty Organization (NATO)\n\nestablished - 17 September 1949\n\naim - mutual defense and cooperation in other areas\n\nmembers - (16) Belgium, Canada, Denmark, France, Germany, Greece, \nIceland, Italy, Luxembourg, Netherlands, Norway, Portugal, Spain, \nTurkey, UK, US\n\n**********\n\nNuclear Energy Agency (NEA)\n\nestablished - NA 1958\n\naim - associated with OECD, seeks to promote the peaceful uses of \nnuclear energy\n\nmembers - (23) Australia, Austria, Belgium, Canada, Denmark, \nFinland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, \nLuxembourg, Netherlands, Norway, Portugal, Spain, Sweden, \nSwitzerland, Turkey, UK, US\n\n**********\n\nNuclear Suppliers Group (NSG)\n\nNote - also known as the London Suppliers Group\n\nestablished - 1974\n\naim - to establish guidelines on exports of enrichment and \nprocessing plant assistance and nuclear exports to countries of \nproliferation concern and regions of conflict and instability\n\nmembers - (27) Australia, Austria, Belgium, Bulgaria, Canada, \nCzechoslovakia, Denmark, Finland, France, Germany, Greece, \nHungary, Ireland, Italy, Japan, Luxembourg, Netherlands, Norway, \nPoland, Portugal, Romania, Russia, Spain, Sweden, Switzerland, \nUK, US\n\n**********\n\nOrganismo para la Proscripcion de las Armas Nucleares en la \nAmerica Latina y el Caribe (OPANAL)\n\nNote - see Agency for the Prohibition of Nuclear Weapons in Latin \nAmerica and the Caribbean (OPANAL)\n\n**********\n\nOrganization for Economic Cooperation and Development (OECD)\n\nestablished - 14 December 1960, effective 30 September 1961\n\naim - to promote economic cooperation and development\n\nmembers - (24) Australia, Austria, Belgium, Canada, Denmark, \nFinland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, \nLuxembourg, Netherlands, NZ, Norway, Portugal, Spain, Sweden, \nSwitzerland, Turkey, UK, US\n\nspecial member - (1) Yugoslavia\n\n**********\n\nOrganization of African Unity (OAU)\n\nestablished - 25 May 1963\n\naim - to promote unity and cooperation among African states\n\nmembers - (50) Algeria, Angola, Benin, Botswana, Burkina, \nBurundi, Cameroon, Cape Verde, Central African Republic, Chad, \nComoros, Congo, Djibouti, Egypt, Equatorial Guinea, Ethiopia, \nGabon, The Gambia, Ghana, Guinea, Guinea-Bissau, Ivory Coast, \nKenya, Lesotho, Liberia, Libya, Madagascar, Malawi, Mali, \nMauritania, Mauritius, Mozambique, Niger, Nigeria, Rwanda, \nSahrawi Arab Democratic Republic, Sao Tome and Principe, Senegal, \nSeychelles, Sierra Leone, Somalia, Sudan, Swaziland, Tanzania, \nTogo, Tunisia, Uganda, Zaire, Zambia, Zimbabwe\n\n**********\n\nOrganization of American States (OAS)\n\nestablished - 30 April 1948\n\neffective - 13 December 1951\n\naim - to promote peace and security as well as economic and \nsocial development\n\nmembers - (35) Antigua and Barbuda, Argentina, The Bahamas, \nBarbados, Belize, Bolivia, Brazil, Canada, Chile, Colombia, Costa \nRica, Cuba (excluded from formal participation since 1962), \nDominica, Dominican Republic, Ecuador, El Salvador, Grenada, \nGuatemala, Guyana, Haiti, Honduras, Jamaica, Mexico, Nicaragua, \nPanama, Paraguay, Peru, Saint Kitts and Nevis, Saint Lucia, Saint \nVincent and the Grenadines, Suriname, Trinidad and Tobago, US, \nUruguay, Venezuela\n\nobservers - (25) Algeria, Austria, Belgium, Belize, Cyprus, EC, \nEgypt, Equatorial Guinea, Finland, France, Germany, Greece, \nGuyana, Israel, Italy, Japan, South Korea, Morocco, Netherlands, \nPakistan, Portugal, Saudi Arabia, Spain, Switzerland, Vatican \nCity\n\n**********\n\nOrganization of Arab Petroleum Exporting Countries (OAPEC)\n\nestablished - 9 January 1968\n\naim - to promote cooperation in the petroleum industry\n\nmembers - (11) Algeria, Bahrain, Egypt, Iraq, Kuwait, Libya, \nQatar, Saudi Arabia, Syria, Tunisia, UAE\n\n**********\n\nOrganization of Eastern Caribbean States (OECS)\n\nestablished - 18 June 1981\n\neffective - 4 July 1981\n\naim - to promote political, economic, and defense cooperation\n\nmembers - (8) Antigua and Barbuda, British Virgin Islands, \nDominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint \nLucia, Saint Vincent and the Grenadines\n\n**********\n\nOrganization of Petroleum Exporting Countries (OPEC)\n\nestablished - 14 September 1960\n\naim - to coordinate petroleum policies\n\nmembers - (13) Algeria, Ecuador, Gabon, Indonesia, Iran, Iraq, \nKuwait, Libya, Nigeria, Qatar, Saudi Arabia, UAE, Venezuela\n\n**********\n\nOrganization of the Islamic Conference (OIC)\n\nestablished - 22-25 September 1969\n\naim - to promote Islamic solidarity and cooperation in economic, \nsocial, cultural, and political affairs\n\nmembers - (47 plus the Palestine Liberation Organization) \nAfghanistan (suspended), Albania, Algeria, Azerbaijan, Bahrain, \nBangladesh, Benin, Brunei, Burkina, Cameroon, Chad, Comoros, \nDjibouti, Egypt, Gabon, The Gambia, Guinea, Guinea-Bissau, \nIndonesia, Iran, Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, \nLibya, Malaysia, Maldives, Mali, Mauritania, Morocco, Niger, \nNigeria, Oman, Pakistan, Qatar, Saudi Arabia, Senegal, Sierra \nLeone, Somalia, Sudan, Syria, Tunisia, Turkey, Uganda, UAE, \nYemen, Palestine Liberation Organization<ATT>\n\nobserver - (1) Turkish-Cypriot administered area of Cyprus\n\n**********\n\nParis Club\n\nNote - see Group of 10\n\n**********\n\nPermanent Court of Arbitration (PCA)\n\nestablished - NA 1899\n\naim - to facilitate the settlement of international disputes\n\nmembers - (75) Argentina, Australia, Austria, Belarus, Belgium, \nBolivia, Brazil, Bulgaria, Burkina, Cambodia, Cameroon, Canada, \nChile, China, Colombia, Cuba, Czechoslovakia, Denmark, Dominican \nRepublic, Ecuador, Egypt, El Salvador, Fiji, Finland, France, \nGermany, Greece, Guatemala, Haiti, Honduras, Hungary, Iceland, \nIndia, Iran, Iraq, Israel, Italy, Japan, Laos, Lebanon, \nLuxembourg, Malta, Mauritius, Mexico, Netherlands, NZ, Nicaragua, \nNigeria, Norway, Pakistan, Panama, Paraguay, Peru, Poland, \nPortugal, Romania, Russia, Senegal, Spain, Sri Lanka, Sudan, \nSwaziland, Sweden, Switzerland, Thailand, Turkey, Uganda, \nUkraine, UK, US, Uruguay, Venezuela, Yugoslavia, Zaire, Zimbabwe\n\n**********\n\nPopulation Commission\n\nestablished - 3 October 1946\n\naim - ECOSOC organization dealing with population matters\n\nmembers - (27) selected on a rotating basis from all regions\n\n**********\n\nRio Group (RG)\n\nestablished - NA 1988\n\naim - a consultation mechanism on regional Latin American issues\n\nmembers - (11) Argentina, Bolivia, Brazil, Chile, Colombia, \nEcuador, Mexico, Paraguay, Peru, Uruguay, Venezuela; note - \nPanama was expelled in 1988\n\n**********\n\nSecond World\n\nNote - another term for the traditionally Marxist-Leninist states \nwith authoritarian governments and command economies based on the \nSoviet model; the term is fading from use; see centrally planned \neconomies\n\n**********\n\nsocialist countries\n\nNote - in general, countries in which the government owns and \nplans the use of the major factors of production; note - the term \nis sometimes used incorrectly as a synonym for Communist \ncountries\n\n**********\n\nSouth\n\nNote - a popular term for the poorer, less industrialized \ncountries generally located south of the developed countries; the \ncounterpart of the North; see less developed countries (LDCs)\n\n**********\n\nSouth Asian Association for Regional Cooperation (SAARC)\n\nestablished - 8 December 1985\n\naim - to promote economic, social, and cultural cooperation\n\nmembers - (7) Bangladesh, Bhutan, India, Maldives, Nepal, \nPakistan, Sri Lanka\n\n**********\n\nSouth Pacific Commission (SPC)\n\nestablished - 6 February 1947\n\neffective - 29 July 1948\n\naim - to promote regional cooperation in economic and social \nmatters\n\nmembers - (27) American Samoa, Australia, Cook Islands, Fiji, \nFrance, French Polynesia, Guam, Kiribati, Marshall Islands, \nFederated States of Micronesia, Nauru, New Caledonia, NZ, Niue, \nNorthern Mariana Islands, Trust Territory of the Pacific Islands \n(Palau), Papua New Guinea, Pitcairn Islands, Solomon Islands, \nTokelau, Tonga, Tuvalu, UK, US, Vanuatu, Wallis and Futuna, \nWestern Samoa\n\n**********\n\nSouth Pacific Forum (SPF)\n\nestablished - 5 August 1971\n\naim - to promote regional cooperation in political matters\n\nmembers - (15) Australia, Cook Islands, Fiji, Kiribati, Marshall \nIslands, Federated States of Micronesia, Nauru, NZ, Niue, Papua \nNew Guinea, Solomon Islands, Tonga, Tuvalu, Vanuatu, Western \nSamoa\n\nobserver - (1) Trust Territory of the Pacific Islands (Palau)\n\n**********\n\nSouthern African Customs Union (SACU)\n\nestablished - 11 December 1969\n\naim - to promote free trade and cooperation in customs matters\n\nmembers - (9) Bophuthatswana, Botswana, Ciskei, Lesotho, Namibia, \nSouth Africa, Swaziland, Transkei, Venda\n\n**********\n\nSouthern African Development Coordination Conference (SADCC)\n\nestablished - 1 April 1980\n\naim - to promote regional economic development and reduce \ndependence on South Africa\n\nmembers - (10) Angola, Botswana, Lesotho, Malawi, Mozambique, \nNamibia, Swaziland, Tanzania, Zambia, Zimbabwe\n\n**********\n\nSouthern Cone Common Market\n\n**********\n\n(MERCOSUR)\n\nestablished - 26 March 1991\n\naim - regional economic cooperation\n\nmembers - (4) Argentina, Brazil, Paraguay, Uruguay\n\n**********\n\nStatistical Commission\n\nestablished - 21 June 1946\n\naim - ECOSOC organization dealing with development and \nstandardization of national statistics\n\nmembers - (25) selected on a rotating basis from all regions\n\n**********\n\nThird World\n\nNote - another term for the less developed countries; the term is \nfading from use; see less developed countries (LDCs)\n\n**********\n\nunderdeveloped countries\n\nNote - refers to those less developed countries with the \npotential for above-average economic growth; see less developed \ncountries (LDCs)\n\n**********\n\nundeveloped countries\n\nNote - refers to those extremely poor less developed countries \n(LDCs) with little prospect for economic growth; see least \ndeveloped countries (LLDCs)\n\n**********\n\nUnion Douaniere et Economique de l'Afrique Centrale (UDEAC)\n\nNote - see Central African Customs and Economic Union (UDEAC)\n\n**********\n\nUnited Nations (UN)\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - to maintain international peace and security as well as \npromote cooperation involving economic, social, cultural and \nhumanitarian problems\n\nmembers - (178) Afghanistan, Albania, Algeria, Angola, Antigua \nand Barbuda, Argentina, Armenia, Australia, Austria, Azerbaijan, \nThe Bahamas, Bahrain, Bangladesh, Barbados, Belarus, Belgium, \nBelize, Benin, Bhutan, Bolivia, Bosnia and Hercegovina, Botswana, \nBrazil, Brunei, Bulgaria, Burkina, Burma, Burundi, Cambodia, \nCameroon, Canada, Cape Verde, Central African Republic, Chad, \nChile, China, Colombia, Comoros, Congo, Costa Rica, Croatia, \nCuba, Cyprus, Czechoslovakia, Denmark, Djibouti, Dominica, \nDominican Republic, Ecuador, Egypt, El Salvador, Equatorial \nGuinea, Estonia, Ethiopia, Fiji, Finland, France, Gabon, The \nGambia, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, \nGuinea-Bissau, Guyana, Haiti, Honduras, Hungary, Iceland, India, \nIndonesia, Iran, Iraq, Ireland, Israel, Italy, Ivory Coast, \nJamaica, Japan, Jordan, Kazakhstan, Kenya, North Korea, South \nKorea, Kuwait, Kyrgyzstan, Laos, Latvia, Lebanon, Lesotho, \nLiberia, Libya, Liechtenstein, Lithuania, Luxembourg, Madagascar, \nMalawi, Malaysia, Maldives, Mali, Malta, Marshall Islands, \nMauritania, Mauritius, Mexico, Federated States of Micronesia, \nMoldova, Mongolia, Morocco, Mozambique, Namibia, Nepal, \nNetherlands, NZ, Nicaragua, Niger, Nigeria, Norway, Oman, \nPakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, \nPoland, Portugal, Qatar, Romania, Russia, Rwanda, Saint Kitts and \nNevis, Saint Lucia, Saint Vincent and the Grenadines, San Marino, \nSao Tome and Principe, Saudi Arabia, Senegal, Seychelles, Sierra \nLeone, Singapore, Slovenia, Solomon Islands, Somalia, South \nAfrica, Spain, Sri Lanka, Sudan, Suriname, Swaziland, Sweden, \nSyria, Tajikistan, Tanzania, Thailand, Togo, Trinidad and Tobago, \nTunisia, Turkmenistan, Turkey, Uganda, Ukraine, UAE, UK, US, \nUruguay, Uzbekistan, Vanuatu, Venezuela, Vietnam, Western Samoa, \nYemen, Yugoslavia, Zaire, Zambia, Zimbabwe; note - all UN members \nare represented in the General Assembly\n\nobservers - (3 and the Palestine Liberation Organization) Monaco, \nSwitzerland, Vatican City, Palestine Liberation Organization\n\n**********\n\nUnited Nations Angola Verification Mission (UNAVEM)\n\nestablished - 20 December 1988\n\naim - established by the UN Security Council to verify the \nwithdrawal of Cuban troops from Angola\n\nmembers - (10) Algeria, Argentina, Brazil, Congo, Czechoslovakia, \nIndia, Jordan, Norway, Spain, Yugoslavia\n\n**********\n\nUnited Nations Center for Human Settlements (UNCHS or Habitat)\n\nestablished - 12 October 1978\n\naim - to assist in solving human settlement problems\n\nmembers - (88) selected on a rotating basis from all regions\n\n**********\n\nUnited Nations Children's Fund (UNICEF)\n\nNote - acronym retained from the predecessor organization UN \nInternational Children's Emergency Fund\n\nestablished - 11 December 1946\n\naim - to help establish child health and welfare services\n\nmembers - (41) selected on a rotating basis from all regions\n\n**********\n\nUnited Nations Conference on Trade and Development (UNCTAD)\n\nestablished - 30 December 1964\n\naim - to promote international trade\n\nmembers - (181) all UN members plus Monaco, Switzerland, Tonga, \nVatican City\n\n**********\n\nUnited Nations Development Program (UNDP)\n\nestablished - 22 November 1965\n\naim - to provide technical assistance to stimulate economic and \nsocial development\n\nmembers - (48) selected on a rotating basis from all regions\n\n**********\n\nUnited Nations Disengagement Observer Force (UNDOF)\n\nestablished - 31 May 1974\n\naim - established by the UN Security Council to observe the 1973 \nArab-Israeli ceasefire\n\nmembers - (4) Austria, Canada, Finland, Poland\n\n**********\n\nUnited Nations Educational, Scientific, and Cultural Organization \n(UNESCO)\n\nestablished - 16 November 1945\n\neffective - 4 November 1946\n\naim - to promote cooperation in education, science, and culture\n\nmembers - (159) all UN members except Armenia, Azerbaijan, Bosnia \nand Hercegovina, Brunei, Croatia, Estonia, Kazakhstan, \nKyrgyzstan, Latvia, Liechtenstein, Lithuania, Marshall Islands, \nFederated States of Micronesia, Moldova, Singapore, Slovenia, \nSolomon Islands, South Africa, Tajikistan, Turkmenistan, UK, US, \nUzbekistan, Vanuatu; other members are Cook Islands, Kiribati, \nMonaco, Switzerland, Tonga\n\nassociate members - (3) Aruba, British Virgin Islands, \nNetherlands Antilles\n\n**********\n\nUnited Nations Environment Program (UNEP)\n\nestablished - 15 December 1972\n\naim - to promote international cooperation on all environmental \nmatters\n\nmembers - (58) selected on a rotating basis from all regions\n\n**********\n\nUnited Nations Force in Cyprus (UNFICYP)\n\nestablished - 4 March 1964\n\naim - established by the UN Security Council to serve as a \npeacekeeping force beween Greek Cypriots and Turkish Cypriots in \nCyprus\n\nmembers - (8) Australia, Austria, Canada, Denmark, Finland, \nIreland, Sweden, UK\n\n**********\n\nUnited Nations General Assembly\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - primary deliberative organ in the UN\n\nmembers - (178) all UN members are represented in the General \nAssembly\n\n**********\n\nUnited Nations Industrial Development Organization (UNIDO)\n\nestablished - 17 November 1966\n\neffective - 1 January 1967\n\naim - UN specialized agency that promotes industrial development \nespecially among the members\n\nmembers - (150) all UN members except Antigua and Barbuda, \nArmenia, Australia, Azerbaijan, Bosnia and Hercegovina, Brunei, \nBurma, Cambodia, Chad, Croatia, Djibouti, Estonia, Iceland, \nKazakhstan, Kyrgyzstan, Latvia, Liberia, Liechtenstein, \nLithuania, Marshall Islands, Federated States of Micronesia, \nMoldova, Singapore, Slovenia, Solomon Islands, South Africa, \nTajikistan, Turkmenistan, Uzbekistan, Western Samoa; other \nmembers are Switzerland, Tonga\n\n**********\n\nUnited Nations Interim Force in Lebanon (UNIFIL)\n\nestablished - 19 March 1978\n\naim - established by the UN Security Council to confirm the \nwithdrawal of Israeli forces, restore peace, and reestablish \nLebanese authority in southern Lebanon\n\nmembers - (9) Fiji, Finland, France, Ghana, Ireland, Italy, \nNepal, Norway, Sweden\n\n**********\n\nUnited Nations Iran-Iraq Military Observer Group (UNIIMOG)\n\nestablished - 9 August 1988\n\naim - established by the UN Security Council to observe the 1988 \nIran-Iraq ceasefire\n\nmembers - (25) Argentina, Australia, Austria, Bangladesh, Canada, \nDenmark, Finland, Ghana, Hungary, India, Indonesia, Ireland, \nItaly, Kenya, Malaysia, NZ, Nigeria, Norway, Poland, Senegal, \nSweden, Turkey, Uruguay, Yugoslavia, Zambia\n\n**********\n\nUnited Nations Military Observer Group in India and Pakistan \n(UNMOGIP)\n\nestablished - 13 August 1948\n\naim - established by the UN Security Council to observe the 1949 \nIndia-Pakistan ceasefire\n\nmembers - (8) Belgium, Chile, Denmark, Finland, Italy, Norway, \nSweden, Uruguay\n\n**********\n\nUnited Nations Office of the High Commissioner for Refugees \n(UNHCR)\n\nestablished - 3 December 1949\n\neffective - 1 January 1951\n\naim - to try to ensure the humanitarian treatment of refugees and \nfind permanent solutions to refugee problems\n\nmembers - (43) Algeria, Argentina, Australia, Austria, Belgium, \nBrazil, Canada, China, Colombia, Denmark, Finland, France, \nGermany, Greece, Iran, Israel, Italy, Japan, Lebanon, Lesotho, \nMadagascar, Morocco, Namibia, Netherlands, Nicaragua, Nigeria, \nNorway, Pakistan, Somalia, Sudan, Sweden, Switzerland, Tanzania, \nThailand, Tunisia, Turkey, Uganda, UK, US, Vatican City, \nVenezuela, Yugoslavia, Zaire\n\n**********\n\nUnited Nations Population Fund (UNFPA)\n\nNote - acronym retained from predecessor organization UN Fund for \nPopulation Activities\n\nestablished - NA July 1967\n\naim - to promote assistance in dealing with population problems\n\nmembers - (51) selected on a rotating basis from all regions\n\n**********\n\nUnited Nations Relief and Works Agency for Palestine Refugees in \nthe Near East (UNRWA)\n\nestablished - 8 December 1949\n\naim - to provide assistance to Palestinian refugees\n\nmembers - (10) Belgium, Egypt, France, Japan, Jordan, Lebanon, \nSyria, Turkey, UK, US\n\n**********\n\nUnited Nations Secretariat\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - primary administrative organ of the UN\n\nmembers - Secretary General appointed for a five-year term by the \nGeneral Assembly on the recommendation of the Security Council\n\n**********\n\nUnited Nations Security Council\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - to maintain international peace and security\n\npermanent members - (5) China, France, Russia, UK, US\n\nnonpermanent members - (10) elected for two-year terms by the UN \nGeneral Assembly; Austria (1991-92), Belgium (1991-92), Cuba \n(1990-91), Ecuador (1991-92), India (1991-92), Ivory Coast (1990-\n91), Romania (1990-91), Yemen (1990-91), Zaire (1990-91), \nZimbabwe (1991-92)\n\n**********\n\nUnited Nations Truce Supervision Organization (UNTSO)\n\nestablished - NA May 1948\n\naim - initially established by the UN Security Council to \nsupervise the 1948 Arab-Israeli ceasefire and subsequently \nextended to work in the Sinai, Lebanon, Jordan, Afghanistan, and \nPakistan\n\nmembers - (19) Argentina, Australia, Austria, Belgium, Canada, \nChile, China, Denmark, Finland, France, Ireland, Italy, \nNetherlands, NZ, Norway, Russia, Sweden, Switzerland, US\n\n**********\n\nUnited Nations Trusteeship Council\n\nestablished - 26 June 1945\n\neffective - 24 October 1945\n\naim - to supervise the administration of the UN trust \nterritories; only one of the original 11 trusteeships remains - \nthe Trust Territory of the Pacific Islands (Palau)\n\nmembers - (5) China, France, Russia, UK, US\n\n**********\n\nUniversal Postal Union (UPU)\n\nestablished - 9 October 1874, affiliated with the UN 15 November \n1947\n\neffective - 1 July 1948\n\naim - UN specialized agency that promotes international postal \ncooperation\n\nmembers - (168) all UN members except Antigua and Barbuda, \nArmenia, Azerbaijan, Bosnia and Hercegovina,  Estonia, \nKazakhstan, Kyrgyzstan, Latvia, Lithuania, Marshall Islands, \nFederated States of Micronesia, Moldova, Namibia, Slovenia,  \nSouth Africa, Tajikistan, Turkmenistan, Uzbekistan; other members \nare Kiribati, Monaco, Nauru, Netherlands Antilles, Switzerland, \nTonga, Tuvalu, UK Overseas Territories, Vatican City\n\n**********\n\nWarsaw Pact (WP)\n\nNote - was established 14 May 1955 to promote mutual defense; \nmembers met 1 July 1991 to dissolve the alliance; member states \nwere Bulgaria, Czechoslovakia, Hungary, Poland, Romania, and the \nUSSR\n\n**********\n\nWest African Development Bank (WADB)\n\nNote - also known as Banque Ouest-Africaine de Developpement \n(BOAD)\n\nestablished - 14 November 1973\n\naim - to promote economic development and integration\n\nmembers - (7) Benin, Burkina, Ivory Coast, Mali, Niger, Senegal, \nTogo\n\n**********\n\nWest African Economic Community (CEAO)\n\nNote - acronym from Communaute Economique de l'Afrique de l'Ouest\n\nestablished - 3 June 1972\n\naim - to promote regional economic development\n\nmembers - (7) Benin, Burkina, Ivory Coast, Mali, Mauritania, \nNiger, Senegal\n\nobserver - (1) Togo\n\n**********\n\nWestern European Union (WEU)\n\nestablished - 23 October 1954\n\neffective - 6 May 1955\n\naim - mutual defense and progressive political unification\n\nmembers - (10) Belgium, France, Germany, Greece, Italy, \nLuxembourg, Netherlands, Portugal, Spain, UK\n\n**********\n\nWorld Bank\n<p>see International Bank for Reconstruction and Development \n(IBRD)\n\n**********\n\nWorld Bank Group\n\nNote - includes International Bank for Reconstruction and \nDevelopment (IBRD), International Development Association (IDA), \nand International Finance Corporation (IFC)\n\n**********\n\nWorld Confederation of Labor (WCL)\n\nestablished - 19 June 1920 as the International Federation of \nChristian Trade Unions (IFCTU), renamed 4 October 1968\n\naim - to promote the trade union movement\n\nmembers - (96 national organizations) Algeria, Angola, Antigua \nand Barbuda, Argentina, Aruba, Austria, Bangladesh, Belgium, \nBelize, Benin, Bolivia, Bonaire Island, Botswana, Brazil, \nBurkina, Cameroon, Canada, Cape Verde, Central African Republic, \nChad, Chile, Colombia, Costa Rica, Cuba, Curacao, Cyprus, \nDominica, Dominican Republic, Ecuador, El Salvador, France, \nFrench Guiana, Gabon, The Gambia, Ghana, Grenada, Guadaloupe, \nGuatemala, Guinea, Guyana, Haiti, Honduras, Hong Kong, Indonesia, \nItaly, Ivory Coast, Jamaica, Kenya, Lesotho, Liechtenstein, \nLuxembourg, Madagascar, Malaysia, Mali, Martinique, Mauritius, \nMexico, Montserrat, Namibia, Netherlands, Nicaragua, Niger, \nNigeria, Pakistan, Panama, Paraguay, Peru, Philippines, Poland, \nPortugal, Puerto Rico, Rwanda, Saint Kitts and Nevis, Saint \nLucia, Saint Martin, Saint Vincent and the Grenadines, Senegal, \nSeychelles, Sierra Leone, Spain, Sri Lanka, Suriname, \nSwitzerland, Tanzania, Thailand, Togo, UK, US, Uruguay, \nVenezuela, Vietnam, Zaire, Zambia, Zimbabwe\n\n**********\n\nWorld Court\n<p>see International Court of Justice (ICJ)\n\n**********\n\nWorld Federation of Trade Unions (WFTU)\n\nestablished - NA 1945\n\naim - to promote the trade union movement\n\nmembers - (67) Afghanistan, Angola, Argentina, Australia, \nAustria, Bahrain, Bangladesh, Bolivia, Brazil, Burkina, Cambodia, \nChile, Colombia, Congo, Costa Rica, Cuba, Cyprus, Dominican \nRepublic, Ecuador, El Salvador, Ethiopia, France, The Gambia, \nGuatemala, Guinea-Bissau, Guyana, Haiti, Honduras, India, \nIndonesia, Iran, Iraq, Jamaica, Japan, Jordan, North Korea, \nKuwait, Laos, Lebanon, Madagascar, Mauritius, Mongolia, Namibia, \nNepal, Nicaragua, Oman, Pakistan, Panama, Papua New Guinea, Peru, \nPhilippines, Puerto Rico, Russia, Saint Vincent and the \nGrenadines, Saudi Arabia, Senegal, Solomon Islands, South Africa, \nSri Lanka, Sudan, Syria, Trinidad and Tobago, Uruguay, Venezuela, \nVietnam, Yemen, Zaire\n\n**********\n\nWorld Food Council (WFC)\n\nestablished - 17 December 1974\n\naim - ECOSOC organization that studies world food problems and \nrecommends solutions\n\nmembers - (36) selected on a rotating basis from all regions\n\n**********\n\nWorld Food Program (WFP)\n\nestablished - 24 November 1961\n\naim - ECOSOC organization that provides food aid to assist in \ndevelopment or disaster relief\n\nmembers - (30) selected on a rotating basis from all regions\n\n**********\n\nWorld Health Organization (WHO)\n\nestablished - 22 July 1946\n\neffective - 7 April 1948\n\naim - UN specialized agency concerned with health matters\n\nmembers - (164) all UN members except Armenia, Azerbaijan, \nBelize, Bosnia and Hercegovina, China, Croatia, Estonia, \nKazakhstan, Kyrgyzstan, Latvia, Liechtenstein, Lithuania, \nMarshall Islands, Federated States of Micronesia, Moldova, \nSlovenia, Tajikistan, Turkmenistan, Uzbekistan; other members are \nCook Islands, Kiribati, Monaco, Switzerland, Tonga\n\n**********\n\nWorld Intellectual Property Organization (WIPO)\n\nestablished - 14 July 1967\n\neffective - 26 April 1970\n\naim - UN specialized agency concerned with the protection of \nliterary, artistic, and scientific works\n\nmembers - (125) Algeria, Angola, Argentina, Australia, Austria, \nThe Bahamas, Bangladesh, Barbados, Belarus, Belgium, Benin, \nBrazil, Bulgaria, Burkina, Burundi, Cameroon, Canada, Central \nAfrican Republic, Chad, Chile, China, Colombia, Congo, Costa \nRica, Cuba, Cyprus, Czechoslovakia, Denmark, Ecuador, Egypt, El \nSalvador, Fiji, Finland, France, Gabon, The Gambia, Germany, \nGhana, Greece, Guatemala, Guinea, Guinea-Bissau, Haiti, Honduras, \nHungary, Iceland, India, Indonesia, Iraq, Ireland, Israel, Italy, \nIvory Coast, Jamaica, Japan, Jordan, Kenya, North Korea, South \nKorea, Lebanon, Lesotho, Liberia, Libya, Liechtenstein, \nLuxembourg, Madagascar, Malawi, Malaysia, Mali, Malta, \nMauritania, Mauritius, Mexico, Monaco, Mongolia, Morocco, \nNetherlands, NZ, Nicaragua, Niger, Norway, Pakistan, Panama, \nParaguay, Peru, Philippines, Poland, Portugal, Qatar, Romania, \nRussia, Rwanda, Saudi Arabia, Senegal, Sierra Leone, Singapore, \nSomalia, South Africa, Spain, Sri Lanka, Sudan, Suriname, \nSwaziland, Sweden, Switzerland, Tanzania, Thailand, Togo, \nTrinidad and Tobago, Tunisia, Turkey, Uganda, Ukraine, UAE, UK, \nUS, Uruguay, Vatican City, Venezuela, Vietnam, Yemen, Yugoslavia, \nZaire, Zambia, Zimbabwe\n\n**********\n\nWorld Meteorological Organization (WMO)\n\nestablished - 11 October 1947\n\neffective - 4 April 1951\n\naim - specialized UN agency concerned with meteorological \ncooperation\n\nmembers - (162) all UN members except Armenia, Azerbaijan, \nBhutan, Bosnia and Hercegovina, Croatia, Equatorial Guinea, \nEstonia, Grenada, Kazakhstan, Kyrgyzstan, Latvia, Liechtenstein, \nLithuania, Moldova, Namibia, Poland, Saint Kitts and Nevis, Saint \nVincent and the Grenadines, Slovenia, Tajikistan, Turkmenistan, \nUzbekistan, Western Samoa; South Africa is included although WMO \nmembership is suspended; other members are British Caribbean \nTerritories, French Polynesia, Hong Kong, Slovenia, Netherlands \nAntilles, New Caledonia, Switzerland\n\n**********\n\nWorld Tourism Organization (WTO)\n\nestablished - 2 January 1975\n\naim - promote tourism as a means of contributing to economic \ndevelopment, international understanding, and peace\n\nmembers - (102) Afghanistan, Algeria, Angola, Argentina, \nAustralia, Austria, Bangladesh, Belgium, Benin, Bolivia, Brazil, \nBurkina, Burundi, Cambodia, Cameroon, Canada, Chad, Chile, China, \nColombia, Congo, Cuba, Cyprus, Dominican Republic, Ecuador, \nEgypt, Ethiopia, Finland, France, Gabon, The Gambia, Germany, \nGhana, Greece, Grenada, Guinea, Haiti, Hungary, India, Indonesia, \nIran, Iraq, Israel, Italy, Ivory Coast, Jamaica, Japan, Jordan, \nKenya, Kiribati, North Korea, South Korea, Kuwait, Laos, Lebanon, \nLesotho, Libya, Madagascar, Malawi, Maldives, Mali, Malta, \nMauritania, Mauritius, Mexico, Mongolia, Morocco, Nepal, \nNetherlands, Niger, Nigeria, Pakistan, Panama, Peru, Portugal, \nRomania, Russia, Rwanda, San Marino, Sao Tome and Principe, \nSenegal, Sierra Leone, Spain, Sri Lanka, Sudan, Switzerland, \nSyria, Tanzania, Togo, Tunisia, Turkey, Uganda, UAE, US, Uruguay, \nVenezuela, Vietnam, Yemen, Yugoslavia, Zaire, Zambia, Zimbabwe\n\nassociate members - (4) Aruba, Macau, Netherlands Antilles, \nPuerto Rico\n\npermanent observer - (1) Vatican City\n\n**********\n\nZangger Committee (ZC)\n\nestablished - early 1970s\n\naim - to establish guidelines for the export control provisions \nof the nuclear Non-Proliferation Treaty\n\nmembers - (23) Australia, Austria, Belgium, Canada, \nCzechoslovakia, Denmark, Finland, Germany, Greece, Hungary, \nIreland, Italy, Japan, Luxembourg, Netherlands, Norway, Poland, \nRomania, Russia, Sweden, Switzerland, UK, US\n\n\n                     Appendix D: Weights and Measures\nMathematical Notation\nMathematical Power                    Name\n10^18 or 1,000,000,000,000,000,000    one quintillion\n10^15 or 1,000,000,000,000,000        one quadrillion\n10^12 or 1,000,000,000,000            one trillion\n10^9 or 1,000,000,000                 one billion\n10^6 or 1,000,000                     one million\n10^3 or 1,000                         one thousand\n10^2 or 100                           one hundred\n10^1 or 10                            ten\n10^0 or 1                             one\n10^-1 or 0.1                          one tenth\n10^-2 or 0.01                         one hundredth\n10^-3 or 0.001                        one thousandth\n10^-6 or 0.000 001                    one millionth\n10^-9 or 0.000 000 001                one billionth\n10^-12 or 0.000 000 000 001           one trillionth\n10^-15 or 0.000 000 000 000 001       one quadrillionth\n10^-18 or 0.000 000 000 000 000 001   one quintillionth\nMetric Interrelationships\nConversions from a multiple or submultiple to the basic units of meters,\nliters, or grams can be done using the table. For example, to convert from\nkilometers to meters, multiply by 1,000 (9.26 kilometers equals 9,260\nmeters) or to convert from meters to kilometers, multiply by 0.001 (9,260\nmeters equals 9.26 kilometers)\nPrefix       Symbol    Length,    Area       Volume\n                       weight,\n                       capacity\nexa          E         10^18      10^36      10^54\npeta         P         10^15      10^30      10^45\ntera         T         10^12      10^24      10^36\ngiga         G         10^9       10^18      10^27\nmega         M         10^6       10^12      10^18\nhectokilo    hk        10^5       10^10      10^15\nmyria        ma        10^4       10^8       10^12\nkilo         k         10^3       10^6       10^9\nhecto        h         10^2       10^4       10^6\nbasic unit   -         1 meter,   1 meter^2  1 meter^3\n                       1 gram,\n                       1 liter\ndeci         d         10^-1      10^-2      10^-3\ncenti        c         10^-2      10^-4      10^-6\nmilli        m         10^-3      10^-6      10^-9\ndecimilli    dm        10^-4      10^-8      10^-12\ncentimilli   cm        10^-5      10^-10     10^-15\nmicro        u         10^-6      10^-12     10^-18\nnano         n         10^-9      10^-18     10^-27\npico         p         10^-12     10^-24     10^-36\nfemto        f         10^-15     10^-30     10^-45\natto         a         10^-18     10^-36     10^-54\n\nEquivalents\n\nUnit                    Metric Equivalent            US Equivalent\nacre                    0.404 685 64 hectares        43,560 feet^2\nacre                    4,046,856 4 meters^2         4,840 yards^2\nacre                    0.004 046 856 4              0.001 562 5 miles^2,\n                        kilometers^2                 statute\nare                     100 meters^2                 119.599 yards^2\nbarrel (petroleum, US)  158.987 29 liters            42 gallons\nbarrel (proof spirits,  151.416 47 liters            40 gallons\nUS)\nbarrel (beer, US)       117.347 77 liters            31 gallons\nbushel                  35.239 07 liters             4 pecks\ncable                   219.456 meters               120 fathoms\nchain (surveyor's)      20.116 8 meters              66 feet\ncord (wood)             3.624 556 meters^3           128 feet^3\ncup                     0.236 588 2 liters           8 ounces, liquid (US)\ndegrees, celsius        (water boils at 100.         multiply by 1.8 and add\n                        degrees C, freezes at 0. C)  32 to obtain .F\ndegrees, fahrenheit     subtract 32 and divide by    (water boils at 212 .F,\n                        1.8 to obtain .C             freezes at 32 .F)\ndram, avoirdupois       1.771 845 2 grams 0.062      5 ounces, avoirdupois\ndram, troy              3.887 934 6 grams            0.125 ounces, troy\ndram, liquid (US)       3.696 69 milliliters         0.125 ounces, liquid\nfathom                  1.828 8 meters               6 feet\nfoot                    30.48 centimeters\nfoot                    0.304 8 meters               0.333 333 3 yards\nfoot                    0.000 304 8 kilometers       0.000 189 39 miles,\n                                                     statute\nfoot^2                  929.030 4 centimeters^2      144 inches^2\nfoot                    2 0.092 903 04 meters^2      0.111 111 1 yards^2\nfoot^3                  28.316 846 592 liters        7.480 519 gallons\nfoot^3                  0.028 316 847 meters^3       1,728 inches^3\nfurlong                 201.168 meters               220 yards\ngallon, liquid (US)     3.785 411 784 liters         4 quarts, liquid\ngill (US)               118.294 118 milliliters      4 ounces, liquid\ngrain                   64.798 91 milligrams         0.002 285 71 ounces,\n                                                     advp.\ngram                    1,000 milligrams             0.035 273 96 ounces,\n                                                     advp.\nhand (height of horse)  10.16 centimeters            4 inches\nhectare                 10,000 meters^2              2.471 053 8 acres\nhundredweight, long     50.802 345 kilograms         112 pounds, avoirdupois\nhundredweight, short    45.359 237 kilograms         100 pounds, avoirdupois\ninch                    2.54 centimeters             0.083 333 33 feet\ninch2                   6.451 6 centimeters^2        0.006 944 44 feet^2\ninch3                   16.387 064 centimeters^3     0.000 578 7 feet^3\ninch3                   16.387 064 milliliters       0.029 761 6 pints, dry\ninch3                   16.387 064 milliliters       0.034 632 0 pints, liquid\nkilogram                0.001 tons, metric           2.204 623 pounds,\n                                                     avoirdupois\nkilometer               1,000 meters                 0.621 371 19 miles,\n                                                     statute\nkilometer^2             100 hectares                 247.105 38 acres\nkilometer^2             1,000,000 meters^2           0.386 102 16 miles^2,\n                                                     statute\nknot (1 nautical        1.852 kilometers/hour        1.151 statute miles/hour\nmi/hr)\nleague, nautical        5.559 552 kilometers         3 miles, nautical\nleague, statute         4.828.032 kilometers         3 miles, statute\nlink (surveyor's)       20.116 8 centimeters         7.92 inches\nliter                   0.001 meters^3               61.023 74 inches^3\nliter                   0.1 dekaliter                0.908 083 quarts, dry\nliter                   1,000 milliliters            1.056 688 quarts, liquid\nmeter                   100 centimeters              1.093 613 yards\nmeter^2                 10,000 centimeters^2         1.195 990 yards^2\nmeter^3                 1,000 liters                 1.307 951 yards^3\nmicron                  0.000 001 meter              0.000 039 4 inches\nmil                     0.025 4 millimeters          0.001 inch\nmile, nautical          1.852 kilometers             1.150 779 4 miles,\n                                                     statute\nmile^2, nautical        3.429 904 kilometers^2       1.325 miles^2, statute\nmile, statute           1.609 344 kilometers         5,280 feet or 8 furlongs\nmile^2, statute         258.998 811 hectares         640 acres or 1 section\nmile^2, statute         2.589 988 11 kilometers^2    0.755 miles^2, nautical\nminim (US)              0.061 611 52 milliliters     0.002 083 33 ounces,\n                                                     liquid\nounce, avoirdupois      28.349 523 125 grams         437.5 grains\nounce, liquid (US)      29.573 53 milliliters        0.062 5 pints, liquid\nounce, troy             31.103 476 8 grams           480 grains\npace                    76.2 centimeters             30 inches\npeck                    8.809 767 5 liters           8 quarts, dry\npennyweight             1.555 173 84 grams           24 grains\npint, dry (US)          0.550 610 47 liters          0.5 quarts, dry\npint, liquid (US)       0.473 176 473 liters         0.5 quarts, liquid\npoint (typographical)   0.351 459 8 millimeters      0.013 837 inches\npound, avoirdupois      453.592 37 grams             16 ounces, avourdupois\npound, troy             373.241 721 6 grams          12 ounces, troy\nquart, dry (US)         1.101 221 liters             2 pints, dry\nquart, liquid (US)      0.946 352 946 liters         2 pints, liquid\nquintal                 100 kilograms                220.462 26 pounds, avdp.\nrod                     5.029 2 meters               5.5 yards\nscruple                 1.295 978 2 grams            20 grains\nsection (US)            2.589 988 1 kilometers^2     1 mile2, statute or 640\n                                                     acres\nspan                    22.86 centimeters            9 inches\nstere                   1 meter3                     1.307 95 yards^3\ntablespoon              14.786 76 milliliters        3 teaspoons\nteaspoon                4.928 922 milliliters        0.333 333 tablespoons\nton, long or            1,016.046 909 kilograms      2,240 pounds, avoirdupois\ndeadweight\n\nton, metric             1,000 kilograms              2,204.623 pounds,\n                                                     avoirdupois\nton, metric             1,000 kilograms              32,150.75 ounces, troy\nton, register           2.831 684 7 meters^3         100 feet^3\nton, short              907.184 74 kilograms         2,000 pounds, avoirdupois\ntownship (US)           93.239 572 kilometers^2      36 miles^2, statute\nyard                    0.914 4 meters               3 feet\nyard^2                  0.836 127 36 meters^2        9 feet^2\nyard^3                  0.764 554 86 meters^3        27 feet^3\nyard^3                  764.554 857 984 liters       201.974 gallons\n\n\n**********\n\nAppendix E\n\nCross-Reference List of Geographic Names\n\n    This list indicates where various names including all United States\nForeign Service Posts, alternate names, former names, and political or\ngeographical portions of larger entities can be found in The World\nFactbook. Spellings are not necessarily those approved by the United\nStates Board on Geographic Names (BGN).  Alternate names are included in\nparentheses; additional information is included in brackets.\n\nName                              Entry in The World Factbook\n\nAbidjan [US Embassy]              Ivory Coast\nAbu Dhabi [US Embassy]            United Arab Emirates\nAcapulco [US Consular Agency]     Mexico\nAccra [US Embassy]                Ghana\nAdana [US Consulate]              Turkey\nAddis Ababa [US Embassy]          Ethiopia\nAdelaide [US Consular Agency]     Australia\nAdelie Land (Terre Adelie)        Antarctica\n  [claimed by France]\nAden                              Yemen\nAden, Gulf of                     Indian Ocean\nAdmiralty Islands                 Papua New Guinea\nAdriatic Sea                      Atlantic Ocean\nAegean Islands                    Greece\nAegean Sea                        Atlantic Ocean\nAfars and Issas, French           Djibouti\n  Territory of the (F.T.A.I.)\nAgalega Islands                   Mauritius\nAland Islands                     Finland\nAlaska                            United States\nAlaska, Gulf of                   Pacific Ocean\nAldabra Islands                   Seychelles\nAlderney                          Guernsey\nAleutian Islands                  United States\nAlexander Island                  Antarctica\nAlexandria [US Consulate General] Egypt\nAlgiers [US Embassy]              Algeria\nAlhucemas, Penon de               Spain\nAlma-Ata                          Kazakhstan\nAlphonse Island                   Seychelles\nAmami Strait                      Pacific Ocean\nAmindivi Islands                  India\nAmirante Isles                    Seychelles\nAmman [US Embassy]                Jordan\nAmsterdam [US Consulate General]  Netherlands\nAmsterdam Island (Ile Amsterdam)  French Southern and Antarctic Lands\nAmundsen Sea                      Pacific Ocean\nAmur                              China; Russia\nAndaman Islands                   India\nAndaman Sea                       Indian Ocean\nAnegada Passage                   Atlantic Ocean\nAnglo-Egyptian Sudan              Sudan\nAnjouan                           Comoros\nAnkara [US Embassy]               Turkey\nAnnobon                           Equatorial Guinea\nAntananarivo [US Embassy]         Madagascar\nAntipodes Islands                 New Zealand\nAntwerp [US Consulate General]    Belgium\nAozou Strip [claimed by Libya]    Chad\nAqaba, Gulf of                    Indian Ocean\nArabian Sea                       Indian Ocean\nArafura Sea                       Pacific Ocean\nArgun                             China; Russia\nAscension Island                  Saint Helena\nAshgabat (Ashkhabad)              Turkmenistan\nAshkhabad [Interim Chancery]      Turkmenistan\nAssumption Island                 Seychelles\nAsuncion [US Embassy]             Paraguay\nAsuncion Island                   Northern Mariana Islands\nAtacama                           Chile\nAthens [US Embassy]               Greece\nAttu                              United States\nAuckland [US Consulate General]   New Zealand\nAuckland Islands                  New Zealand\nAustrales Iles (Iles Tubuai)      French Polynesia\nAxel Heiberg Island               Canada\nAzores                            Portugal\nAzov, Sea of                      Atlantic Ocean\n\nBab el Mandeb                     Indian Ocean\nBabuyan Channel                   Pacific Ocean\nBabuyan Islands                   Philippines\nBaffin Bay                        Arctic Ocean\nBaffin Island                     Canada\nBaghdad                           Iraq\nBaku                              Azerbaijan\nBaky (Baku)                       Azerbaijan\nBalabac Strait                    Pacific Ocean\nBalearic Islands                  Spain\nBalearic Sea (Iberian Sea)        Atlantic Ocean\nBali [US Consular Agency]         Indonesia\nBali Sea                          Indian Ocean\nBalintang Channel                 Pacific Ocean\nBalintang Islands                 Philippines\nBalleny Islands                   Antarctica\nBalochistan                       Pakistan\nBaltic Sea                        Atlantic Ocean\nBamako [US Embassy]               Mali\nBanaba (Ocean Island)             Kiribati\nBandar Seri Begawan [US Embassy]  Brunei\nBanda Sea                         Pacific Ocean\nBangkok [US Embassy]              Thailand\nBangui [US Embassy]               Central African Republic\nBanjul [US Embassy]               Gambia, The\nBanks Island                      Canada\nBanks Islands (Iles Banks)        Vanuatu\nBarcelona [US Consulate General]  Spain\nBarents Sea                       Arctic Ocean\nBarranquilla [US Consulate]       Colombia\nBashi Channel                     Pacific Ocean\nBasilan Strait                    Pacific Ocean\nBass Strait                       Indian Ocean\nBatan Islands                     Philippines\nBavaria (Bayern)                  Germany\nBeagle Channel                    Atlantic Ocean\nBear Island (Bjornoya)            Svalbard\nBeaufort Sea                      Arctic Ocean\nBechuanaland                      Botswana\nBeijing [US Embassy]              China\nBeirut [US Embassy]               Lebanon\nBelau                             Pacific Islands, Trust Territory of the\n                                    (Palau)\nBelem [US Consular Agency]        Brazil\nBelep Islands (Iles Belep)        New Caledonia\nBelfast [US Consulate General]    United Kingdom\nBelgian Congo                     Zaire\nBelgrade [US Embassy]             Yugoslavia\nBelize City [US Embassy]          Belize\nBelle Isle, Strait of             Atlantic Ocean\nBellinghausen Sea                 Pacific Ocean\nBelmopan                          Belize\nBelorussia                        Belarus\nBengal, Bay of                    Indian Ocean\nBering Sea                        Pacific Ocean\nBering Strait                     Pacific Ocean\nBerkner Island                    Antarctica\nBerlin [US Branch Office]         Germany\nBerlin, East                      Germany\nBerlin, West                      Germany\nBern [US Embassy]                 Switzerland\nBessarabia                        Romania; Moldova\nBijagos, Arquipelago dos          Guinea-Bissau\nBikini Atoll                      Marshall Islands\nBilbao [US Consulate]             Spain\nBioko                             Equatorial Guinea\nBiscay, Bay of                    Atlantic Ocean\nBishbek [Interim Chancery]        Kyrgyzstan\nBishop Rock                       United Kingdom\nBismarck Archipelago              Papua New Guinea\nBismarck Sea                      Pacific Ocean\nBissau [US Embassy]               Guinea-Bissau\nBjornoya (Bear Island)            Svalbard\nBlack Rock                        Falkland Islands (Islas Malvinas)\nBlack Sea                         Atlantic Ocean\nBoa Vista                         Cape Verde\nBogota [US Embassy]               Colombia\nBombay [US Consulate General]     India\nBonaire                           Netherlands Antilles\nBonifacio, Strait of              Atlantic Ocean\nBonin Islands                     Japan\nBonn [US Embassy]                 Germany\nBophuthatswana                    South Africa\nBora-Bora                         French Polynesia\nBordeaux [US Consulate General]   France\nBorneo                            Brunei; Indonesia; Malaysia\nBornholm                          Denmark\nBosporus                          Atlantic Ocean\nBothnia, Gulf of                  Atlantic Ocean\nBougainville Island               Papua New Guinea\nBougainville Strait               Pacific Ocean\nBounty Islands                    New Zealand\nBrasilia [US Embassy]             Brazil\nBrazzaville [US Embassy]          Congo\nBridgetown [US Embassy]           Barbados\nBrisbane [US Consulate]           Australia\nBritish East Africa               Kenya\nBritish Guiana                    Guyana\nBritish Honduras                  Belize\nBritish Solomon Islands           Solomon Islands\nBritish Somaliland                Somalia\nBrussels [US Embassy, US Mission  Belgium\n  to European Communities, US\n  Mission to the North Atlantic\n  Treaty Organization (USNATO)]\nBucharest [US Embassy]            Romania\nBudapest [US Embassy]             Hungary\nBuenos Aires [US Embassy]         Argentina\nBujumbura [US Embassy]            Burundi\nByelorussia                       Belarus\n\nCabinda                           Angola\nCabot Strait                      Atlantic Ocean\nCaicos Islands                    Turks and Caicos Islands\nCairo [US Embassy]                Egypt\nCalcutta [US Consulate General]   India\nCalgary [US Consulate General]    Canada\nCalifornia, Gulf of               Pacific Ocean\nCampbell Island                   New Zealand\nCanal Zone                        Panama\nCanary Islands                    Spain\nCanberra [US Embassy]             Australia\nCancun [US Consular Agency]       Mexico\nCanton (Guangzhou)                China\nCanton Island                     Kiribati\nCape Town [US Consulate General]  South Africa\nCaracas [US Embassy]              Venezuela\nCargados Carajos Shoals           Mauritius\nCaroline Islands                  Micronesia, Federated States of;\n                                    Pacific Islands, Trust Territory of the\nCaribbean Sea                     Atlantic Ocean\nCarpentaria, Gulf of              Pacific Ocean\nCasablanca [US Consulate General] Morocco\nCato Island                       Australia\nCebu [US Consulate]               Philippines\nCelebes                           Indonesia\nCelebes Sea                       Pacific Ocean\nCeltic Sea                        Atlantic Ocean\nCentral African Empire            Central African Republic\nCeuta                             Spain\nCeylon                            Sri Lanka\nChafarinas, Islas                 Spain\nChagos Archipelago (Oil Islands)  British Indian Ocean Territory\nChannel Islands                   Guernsey; Jersey\nChatham Islands                   New Zealand\nCheju-do                          Korea, South\nCheju Strait                      Pacific Ocean\nChengdu [US Consulate General]    China\nChesterfield Islands              New Caledonia\n  (Iles Chesterfield)\nChiang Mai [US Consulate General] Thailand\nChihli, Gulf of (Bo Hai)          Pacific Ocean\nChina, People's Republic of       China\nChina, Republic of                Taiwan\nChoiseul                          Solomon Islands\nChristchurch [US Consular Agency] New Zealand\nChristmas Island [Indian Ocean]   Australia\nChristmas Island [Pacific Ocean]  Kiribati\n  (Kiritimati)\nChukchi Sea                       Arctic Ocean\nCiskei                            South Africa\nCiudad Juarez [US Consulate       Mexico\n  General]\nCochabamba [US Consular Agency]   Bolivia\nCoco, Isla del                    Costa Rica\nCocos Islands                     Cocos (Keeling) Islands\nColombo [US Embassy]              Sri Lanka\nColon [US Consular Agency]        Panama\nColon, Archipielago de            Ecuador\n  (Galapagos Islands)\nCommander Islands                 Russia\n  (Komandorskiye Ostrova)\nConakry [US Embassy]              Guinea\nCongo (Brazzaville)               Congo\nCongo (Kinshasa)                  Zaire\nCongo (Leopoldville)              Zaire\nCon Son Islands                   Vietnam\nCook Strait                       Pacific Ocean\nCopenhagen [US Embassy]           Denmark\nCoral Sea                         Pacific Ocean\nCorn Islands (Islas del Maiz)     Nicaragua\nCorsica                           France\nCosmoledo Group                   Seychelles\nCote d'Ivoire                     Ivory Coast\nCotonou [US Embassy]              Benin\nCrete                             Greece\nCrooked Island Passage            Atlantic Ocean\nCrozet Islands (Iles Crozet)      French Southern and Antarctic Lands\nCuracao [US Consulate General]    Netherlands Antilles\nCusco [US Consular Agency]        Peru\n\nDahomey                           Benin\nDaito Islands                     Japan\nDakar [US Embassy]                Senegal\nDaman (Damao)                     India\nDamascus [US Embassy]             Syria\nDanger Atoll                      Cook Islands\nDanish Straits                    Atlantic Ocean\nDanzig (Gdansk)                   Poland\nDao Bach Long Vi                  Vietnam\nDardanelles                       Atlantic Ocean\nDar es Salaam [US Embassy]        Tanzania\nDavis Strait                      Atlantic Ocean\nDeception Island                  Antarctica\nDenmark Strait                    Atlantic Ocean\nD'Entrecasteaux Islands           Papua New Guinea\nDevon Island                      Canada\nDhahran [US Consulate General]    Saudi Arabia\nDhaka [US Embassy]                Bangladesh\nDiego Garcia                      British Indian Ocean Territory\nDiego Ramirez                     Chile\nDiomede Islands                   Russia [Big Diomede]; United States\n                                  [Little Diomede]\nDiu                               India\nDjibouti [US Embassy]             Djibouti\nDodecanese                        Greece\nDoha [US Embassy]                 Qatar\nDouala [US Consulate General]     Cameroon\nDover, Strait of                  Atlantic Ocean\nDrake Passage                     Atlantic Ocean\nDubai [US Consulate General]      United Arab Emirates\nDublin [US Embassy]               Ireland\nDurango [US Consular Agency]      Mexico\nDurban [US Consulate General]     South Africa\nDushanbe                          Tajikistan\nDusseldorf [US Consulate General] Germany\nDutch East Indies                 Indonesia\nDutch Guiana                      Suriname\n\nEast China Sea                    Pacific Ocean\nEaster Island (Isla de Pascua)    Chile\nEastern Channel (East Korea       Pacific Ocean\n  Strait or Tsushima Strait)\nEast Germany (German Democratic   Germany\n  Republic)\nEast Korea Strait (Eastern        Pacific Ocean\n  Channel or Tsushima Strait)\nEast Pakistan                     Bangladesh\nEast Siberian Sea                 Arctic Ocean\nEast Timor (Portuguese Timor)     Indonesia\nEdinburgh [US Consulate General]  United Kingdom\nElba                              Italy\nEllef Ringnes Island              Canada\nEllesmere Island                  Canada\nEllice Islands                    Tuvalu\nElobey, Islas de                  Equatorial Guinea\nEnderbury Island                  Kiribati\nEnewetak Atoll (Eniwetok Atoll)   Marshall Islands\nEngland                           United Kingdom\nEnglish Channel                   Atlantic Ocean\nEniwetok Atoll                    Marshall Islands\nEpirus, Northern                  Albania; Greece\nEritrea                           Ethiopia\nEssequibo [claimed by Venezuela]  Guyana\nEtorofu                           Russia[de facto]\n\nFarquhar Group                    Seychelles\nFernando de Noronha               Brazil\nFernando Po (Bioko)               Equatorial Guinea\nFinland, Gulf of                  Atlantic Ocean\nFlorence [US Consulate General]   Italy\nFlorida, Straits of               Atlantic Ocean\nFormosa                           Taiwan\nFormosa Strait (Taiwan Strait)    Pacific Ocean\nFort-de-France                    Martinique\n  [US Consulate General]\nFrankfurt am Main                 Germany\n  [US Consulate General]\nFranz Josef Land                  Russia\nFreetown [US Embassy]             Sierra Leone\nFrench Cameroon                   Cameroon\nFrench Indochina                  Cambodia; Laos; Vietnam\nFrench Guinea                     Guinea\nFrench Sudan                      Mali\nFrench Territory of the Afars     Djibouti\n  and Issas (F.T.A.I.)\nFrench Togo                       Togo\nFriendly Islands                  Tonga\nFrunze (Bishkek)                  Kyrgyzstan\nFukuoka [US Consulate]            Japan\nFunchal [US Consular Agency]      Portugal\nFundy, Bay of                     Atlantic Ocean\nFutuna Islands (Hoorn Islands)    Wallis and Futuna\n\nGaborone [US Embassy]             Botswana\nGalapagos Islands (Archipielago   Ecuador\n  de Colon)\nGalleons Passage                  Atlantic Ocean\nGambier Islands (Iles Gambier)    French Polynesia\nGaspar Strait                     Indian Ocean\nGeneva [Branch Office of the US   Switzerland\n  Embassy, US Mission to European\n  Office of the UN and Other\n  International Organizations]\nGenoa [US Consulate General]      Italy\nGeorge Town [US Consular Agency]  Cayman Islands\nGeorgetown [US Embassy]           Guyana\nGerman Democratic Republic        Germany\n  (East Germany)\nGerman Federal Republic of        Germany\n  (West Germany)\nGibraltar, Strait of              Atlantic Ocean\nGilbert Islands                   Kiribati\nGoa                               India\nGold Coast                        Ghana\nGolan Heights                     Syria\nGood Hope, Cape of                South Africa\nGoteborg [US Consulate General]   Sweden\nGotland                           Sweden\nGough Island                      Saint Helena\nGrand Banks                       Atlantic Ocean\nGrand Cayman                      Cayman Islands\nGrand Turk [US Consular Agency]   Turks and Caicos Islands\nGreat Australian Bight            Indian Ocean\nGreat Belt (Store Baelt)          Atlantic Ocean\nGreat Britain                     United Kingdom\nGreat Channel                     Indian Ocean\nGreater Sunda Islands             Brunei; Indonesia; Malaysia\nGreen Islands                     Papua New Guinea\nGreenland Sea                     Arctic Ocean\nGrenadines, Northern              Saint Vincent and the Grenadines\nGrenadines, Southern              Grenada\nGuadalajara                       Mexico\n [US Consulate General]\nGuadalcanal                       Solomon Islands\nGuadalupe, Isla de                Mexico\nGuangzhou [US Consulate General]  China\nGuantanamo [US Naval Base]        Cuba\nGuatemala [US Embassy]            Guatemala\nGubal, Strait of                  Indian Ocean\nGuinea, Gulf of                   Atlantic Ocean\nGuayaquil [US Consulate General]  Ecuador\n\nHa'apai Group                     Tonga\nHabomai Islands                   Russia[de facto]\nHague,The [US Embassy]            Netherlands\nHaifa [US Consular Agency]        Israel\nHainan Dao                        China\nHalifax [US Consulate General]    Canada\nHalmahera                         Indonesia\nHamburg [US Consulate General]    Germany\nHamilton [US Consulate General]   Bermuda\nHanoi                             Vietnam\nHarare [US Embassy]               Zimbabwe\nHatay                             Turkey\nHavana [US post not maintained,   Cuba\n  representation by US Interests\n  Section (USINT) of the Swiss\n  Embassy]\nHawaii                            United States\nHeard Island                      Heard Island and McDonald Islands\nHelsinki [US Embassy]             Finland\nHermosillo [US Consulate]         Mexico\nHispaniola                        Dominican Republic; Haiti\nHokkaido                          Japan\nHoly See, The                     Vatican City\nHong Kong [US Consulate General]  Hong Kong\nHoniara [US Consulate]            Solomon Islands\nHonshu                            Japan\nHormuz, Strait of                 Indian Ocean\nHorn, Cape (Cabo de Hornos)       Chile\nHorne, Iles de                    Wallis and Futuna\nHorn of Africa                    Ethiopia; Somalia\nHudson Bay                        Arctic Ocean\nHudson Strait                     Arctic Ocean\n\nInaccessible Island               Saint Helena\nIndochina                         Cambodia; Laos; Vietnam\nInner Mongolia (Nei Mongol)       China\nIonian Islands                    Greece\nIonian Sea                        Atlantic Ocean\nIrian Jaya                        Indonesia\nIrish Sea                         Atlantic Ocean\nIslamabad [US Embassy]            Pakistan\nIslas Malvinas                    Falkland Islands (Islas Malvinas)\nIstanbul [US Consulate General]   Turkey\nItalian Somaliland                Somalia\nIwo Jima                          Japan\nIzmir [US Consulate General]      Turkey\n\nJakarta [US Embassy]              Indonesia\nJapan, Sea of                     Pacific Ocean\nJava                              Indonesia\nJava Sea                          Indian Ocean\nJeddah [US Consulate General]     Saudi Arabia\nJerusalem [US Consulate General]  Israel; West Bank\nJohannesburg                      South Africa\n  [US Consulate General]\nJuan de Fuca, Strait of           Pacific Ocean\nJuan Fernandez, Isla de           Chile\nJuventud, Isla de la              Cuba\n  (Isle of Youth)\n\nKabul [US Embassy now closed]     Afghanistan\nKaduna [US Consulate General]     Nigeria\nKalimantan                        Indonesia\nKamchatka Peninsula               Russia\n  (Poluostrov Kamchatka)\nKampala [US Embassy]              Uganda\nKampuchea                         Cambodia\nKarachi [US Consulate General]    Pakistan\nKara Sea                          Arctic Ocean\nKarimata Strait                   Indian Ocean\nKathmandu [US Embassy]            Nepal\nKattegat                          Atlantic Ocean\nKauai Channel                     Pacific Ocean\nKeeling Islands                   Cocos (Keeling) Islands\nKerguelen, Iles                   French Southern and Antarctic Lands\nKermadec Islands                  New Zealand\nKhabarovsk                        Russia\nKhartoum [US Embassy]             Sudan\nKhmer Republic                    Cambodia\nKhuriya Muriya Islands            Oman\n  (Kuria Muria Islands)\nKhyber Pass                       Pakistan\nKiel Canal (Nord-Ostsee Kanal)    Atlantic Ocean\nKiev [Chancery]                   Ukraine\nKigali [US Embassy]               Rwanda\nKingston [US Embassy]             Jamaica\nKinshasa [US Embassy]             Zaire\nKirghiziya                        Kyrgyzstan\nKiritimati (Christmas Island)     Kiribati\nKishinev (Chicsinau)              Moldova\nKithira Strait                    Atlantic Ocean\nKodiak Island                     United States\nKola Peninsula                    Russia\n  (Kol'skiy Poluostrov)\nKolonia [US Special Office]       Micronesia, Federated States of\nKorea Bay                         Pacific Ocean\nKorea, Democratic People's        Korea, North\n  Republic of\nKorea, Republic of                Korea, South\nKorea Strait                      Pacific Ocean\nKoror [US Special Office]         Pacific Islands, Trust Territory of\nKosovo                            Yugoslavia\nKowloon                           Hong Kong\nKrakow [US Consulate]             Poland\nKuala Lumpur [US Embassy]         Malaysia\nKunashiri (Kunashir)              Russia [de facto]\nKuril Islands                     Russia [de facto]\nKuwait [US Embassy]               Kuwait\nKwajalein Atoll                   Marshall Islands\nKyushu                            Japan\nKyyiv (Kiev)                      Ukraine\n\nLabrador                          Canada\nLaccadive Islands                 India\nLaccadive Sea                     Indian Ocean\nLa Coruna [US Consular Agency]    Spain\nLagos [US Embassy]                Nigeria\nLahore [US Consulate General]     Pakistan\nLakshadweep                       India\nLa Paz [US Embassy]               Bolivia\nLa Perouse Strait                 Pacific Ocean\nLaptev Sea                        Arctic Ocean\nLas Palmas [US Consular Agency]   Spain\nLau Group                         Fiji\nLeningrad see Saint Petersburg    Russia\n  [US Consulate General]\nLesser Sunda Islands              Indonesia\nLeyte                             Philippines\nLiancourt Rocks                   Korea, South\n [claimed by Japan]\nLibreville [US Embassy]           Gabon\nLigurian Sea                      Atlantic Ocean\nLilongwe [US Embassy]             Malawi\nLima [US Embassy]                 Peru\nLincoln Sea                       Arctic Ocean\nLine Islands                      Kiribati; Palmyra Atoll\nLisbon [US Embassy]               Portugal\nLombok Strait                     Indian Ocean\nLome [US Embassy]                 Togo\nLondon [US Embassy]               United Kingdom\nLord Howe Island                  Australia\nLouisiade Archipelago             Papua New Guinea\nLoyalty Islands (Iles Loyaute)    New Caledonia\nLubumbashi [US Consulate General] Zaire\nLusaka [US Embassy]               Zambia\nLuxembourg [US Embassy]           Luxembourg\nLuzon                             Philippines\nLuzon Strait                      Pacific Ocean\nLyon [US Consulate General]       France\n\nMacao                             Macau\nMacedonia                         Bulgaria\nMacquarie Island                  Australia\nMadeira Islands                   Portugal\nMadras [US Consulate General]     India\nMadrid [US Embassy]               Spain\nMagellan, Strait of               Atlantic Ocean\nMaghreb                           Algeria, Libya, Mauritania, Morocco,\n                                    Tunisia\nMahe Island                       Seychelles\nMaiz, Islas del (Corn Islands)    Nicaragua\nMajorca (Mallorca)                Spain\nMajuro [US Special Office]        Marshall Islands\nMakassar Strait                   Pacific Ocean\nMalabo [US Embassy]               Equatorial Guinea\nMalacca, Strait of                Indian Ocean\nMalaga [US Consular Agency]       Spain\nMalagasy Republic                 Madagascar\nMale [US post not maintained,     Maldives\n  representation from Colombo,\n  Sri Lanka]\nMallorca (Majorca)                Spain\nMalpelo, Isla de                  Colombia\nMalta Channel                     Atlantic Ocean\nMalvinas, Islas                   Falkland Islands (Islas Malvinas)\nManagua [US Embassy]              Nicaragua\nManama [US Embassy]               Bahrain\nManaus [US Consular Agency]       Brazil\nManchukuo                         China\nManchuria                         China\nManila [US Embassy]               Philippines\nManipa Strait                     Pacific Ocean\nMannar, Gulf of                   Indian Ocean\nManua Islands                     American Samoa\nMaputo [US Embassy]               Mozambique\nMaracaibo [US Consulate]          Venezuela\nMarcus Island (Minami-tori-shima) Japan\nMariana Islands                   Guam; Northern Mariana Islands\nMarion Island                     South Africa\nMarmara, Sea of                   Atlantic Ocean\nMarquesas Islands                 French Polynesia\n  (Iles Marquises)\nMarseille [US Consulate General]  France\nMartin Vaz, Ilhas                 Brazil\nMas a Tierra                      Chile\n  (Robinson Crusoe Island)\nMascarene Islands                 Mauritius; Reunion\nMaseru [US Embassy]               Lesotho\nMatamoros [US Consulate]          Mexico\nMazatlan [US Consulate]           Mexico\nMbabane [US Embassy]              Swaziland\nMcDonald Islands                  Heard Island and McDonald Islands\nMedan [US Consulate]              Indonesia\nMediterranean Sea                 Atlantic Ocean\nMelbourne [US Consulate General]  Australia\nMelilla                           Spain\nMensk (Minsk)                     Belarus\nMerida [US Consulate]             Mexico\nMessina, Strait of                Atlantic Ocean\nMexico [US Embassy]               Mexico\nMexico, Gulf of                   Atlantic Ocean\nMilan [US Consulate General]      Italy\nMinami-tori-shima                 Japan\nMindanao                          Philippines\nMindoro Strait                    Pacific Ocean\nMinicoy Island                    India\nMinsk                             Byelarus\nMogadishu [US Embassy]            Somalia\nMoldovia                          Moldova\nMombasa [US Consulate]            Kenya\nMona Passage                      Atlantic Ocean\nMonrovia [US Embassy]             Liberia\nMontego Bay [US Consular Agency]  Jamaica\nMontenegro                        Serbia and Montenegro\nMonterrey [US Consulate General]  Mexico\nMontevideo [US Embassy]           Uruguay\nMontreal [US Consulate General,   Canada\n  US Mission to the International\n  Civil Aviation Organization\n  (ICAO)]\nMoravian Gate                     Czechoslovakia\nMoroni [US Embassy]               Comoros\nMortlock Islands                  Micronesia, Federated States of\nMoscow [US Embassy]               Russia\nMozambique Channel                Indian Ocean\nMulege [US Consular Agency]       Mexico\nMunich [US Consulate General]     Germany\nMusandam Peninsula                Oman; United Arab Emirates\nMuscat [US Embassy]               Oman\nMuscat and Oman                   Oman\nMyanma, Myanmar                   Burma\n\nNaha [US Consulate General]       Japan\nNairobi [US Embassy]              Kenya\nNampo-shoto                       Japan\nNaples [US Consulate General]     Italy\nNassau [US Embassy]               Bahamas, The\nNatuna Besar Islands              Indonesia\nN'Djamena [US Embassy]            Chad\nNetherlands East Indies           Indonesia\nNetherlands Guiana                Suriname\nNevis                             Saint Kitts and Nevis\nNew Delhi [US Embassy]            India\nNewfoundland                      Canada\nNew Guinea                        Indonesia; Papua New Guinea\nNew Hebrides                      Vanuatu\nNew Siberian Islands              Russia\nNew Territories                   Hong Kong\nNew York, New York [US Mission    United States\n  to the United Nations (USUN)]\nNiamey [US Embassy]               Niger\nNice [US Consular Agency]         France\nNicobar Islands                   India\nNicosia [US Embassy]              Cyprus\nNightingale Island                Saint Helena\nNorth Atlantic Ocean              Atlantic Ocean\nNorth Channel                     Atlantic Ocean\nNortheast Providence Channel      Atlantic Ocean\nNorthern Epirus                   Albania; Greece\nNorthern Grenadines               Saint Vincent and the Grenadines\nNorthern Ireland                  United Kingdom\nNorthern Rhodesia                 Zambia\nNorth Island                      New Zealand\nNorth Korea                       Korea, North\nNorth Pacific Ocean               Pacific Ocean\nNorth Sea                         Atlantic Ocean\nNorth Vietnam                     Vietnam\nNorthwest Passages                Arctic Ocean\nNorth Yemen (Yemen Arab Republic) Yemen\nNorwegian Sea                     Atlantic Ocean\nNouakchott [US Embassy]           Mauritania\nNovaya Zemlya                     Russia\nNuevo Laredo [US Consulate]       Mexico\nNyasaland                         Malawi\n\nOahu                              United States\nOaxaca [US Consular Agency]       Mexico\nOcean Island (Banaba)             Kiribati\nOcean Island (Kure Island)        United States\nOgaden                            Ethiopia; Somalia\nOil Islands (Chagos Archipelago)  British Indian Ocean Territory\nOkhotsk, Sea of                   Pacific Ocean\nOkinawa                           Japan\nOman, Gulf of                     Indian Ocean\nOmbai Strait                      Pacific Ocean\nOporto [US Consulate]             Portugal\nOran [US Consulate]               Algeria\nOresund (The Sound)               Atlantic Ocean\nOrkney Islands                    United Kingdom\nOsaka-Kobe [US Consulate General] Japan\nOslo [US Embassy]                 Norway\nOtranto, Strait of                Atlantic Ocean\nOttawa [US Embassy]               Canada\nOuagadougou [US Embassy]          Burkina\nOuter Mongolia                    Mongolia\n\nPagan                             Northern Mariana Islands\nPalau                             Pacific Islands, Trust Territory of the\nPalawan                           Philippines\nPalermo [US Consulate General]    Italy\nPalk Strait                       Indian Ocean\nPalma de Mallorca                 Spain\n  [US Consular Agency]\nPamirs                            China; Tajikistan\nPanama [US Embassy]               Panama\nPanama Canal                      Panama\nPanama, Gulf of                   Pacific Ocean\nParamaribo [US Embassy]           Suriname\nParece Vela                       Japan\nParis [US Embassy, US Mission to  France\n  the Organization for Economic\n  Cooperation and Development\n  (OECD), US Observer Mission at\n  the UN Educational, Scientific,\n  and Cultural Organization\n  (UNESCO)]\nPascua, Isla de (Easter Island)   Chile\nPassion, Ile de la                Clipperton Island\nPashtunistan                      Afghanistan; Pakistan\nPeking (Beijing)                  China\nPemba Island                      Tanzania\nPentland Firth                    Atlantic Ocean\nPerim                             Yemen\nPerouse Strait, La                Pacific Ocean\nPersian Gulf                      Indian Ocean\nPerth [US Consulate]              Australia\nPescadores                        Taiwan\nPeshawar [US Consulate]           Pakistan\nPeter I Island                    Antarctica\nPhilip Island                     Norfolk Island\nPhilippine Sea                    Pacific Ocean\nPhoenix Islands                   Kiribati\nPines, Isle of                    Cuba\n  (Isla de la Juventud)\nPiura [US Consular Agency]        Peru\nPleasant Island                   Nauru\nPonape (Pohnpei)                  Micronesia\nPonta Delgada [US Consulate]      Portugal\nPort-au-Prince [US Embassy]       Haiti\nPort Louis [US Embassy]           Mauritius\nPort Moresby [US Embassy]         Papua New Guinea\nPorto Alegre [US Consulate]       Brazil\nPort-of-Spain [US Embassy]        Trinidad and Tobago\nPort Said [US Consular Agency]    Egypt\nPortuguese Guinea                 Guinea-Bissau\nPortuguese Timor (East Timor)     Indonesia\nPoznan [US Consulate]             Poland\nPrague [US Embassy]               Czechoslovakia\nPraia [US Embassy]                Cape Verde\nPretoria [US Embassy]             South Africa\nPribilof Islands                  United States\nPrince Edward Island              Canada\nPrince Edward Islands             South Africa\nPrince Patrick Island             Canada\nPrincipe                          Sao Tome and Principe\nPuerto Plata [US Consular Agency] Dominican Republic\nPuerto Vallarta                   Mexico\n  [US Consular Agency]\nPusan [US Consulate]              South Korea\nP'yongyang                        Korea, North\n\nQuebec [US Consulate General]     Canada\nQueen Charlotte Islands           Canada\nQueen Elizabeth Islands           Canada\nQueen Maud Land                   Antarctica\n  [claimed by Norway]\nQuito [US Embassy]                Ecuador\n\nRabat [US Embassy]                Morocco\nRalik Chain                       Marshall Islands\nRangoon [US Embassy]              Burma\nRatak Chain                       Marshall Islands\nRecife [US Consulate]             Brazil\nRedonda                           Antigua and Barbuda\nRed Sea                           Indian Ocean\nRevillagigedo Island              United States\nRevillagigedo Islands             Mexico\nReykjavik [US Embassy]            Iceland\nRhodes                            Greece\nRhodesia                          Zimbabwe\nRhodesia, Northern                Zambia\nRhodesia, Southern                Zimbabwe\nRiga [Interim Chancery]           Latvia\nRio de Janeiro                    Brazil\n  [US Consulate General]\nRio de Oro                        Western Sahara\nRio Muni                          Equatorial Guinea\nRiyadh [US Embassy]               Saudi Arabia\nRobinson Crusoe Island            Chile\n  (Mas a Tierra)\nRocas, Atol das                   Brazil\nRockall [disputed]                United Kingdom\nRodrigues                         Mauritius\nRome [US Embassy, US Mission to   Italy\n  the UN Agencies for Food and\n  Agriculture (FODAG)]\nRoncador Cay                      Colombia\nRoosevelt Island                  Antarctica\nRoss Dependency                   Antarctica\n  [claimed by New Zealand]\nRoss Island                       Antarctica\nRoss Sea                          Antarctica\nRota                              Northern Mariana Islands\nRotuma                            Fiji\nRyukyu Islands                    Japan\n\nSaba                              Netherlands Antilles\nSabah                             Malaysia\nSable Island                      Canada\nSahel                             Burkina; Cape Verde; Chad; The Gambia;\n                                     Guinea-Bissau; Mali; Mauritania;\n                                     Niger; Senegal\nSaigon (Ho Chi Minh City)         Vietnam\nSaint Brandon                     Mauritius\nSaint Christopher and Nevis       Saint Kitts and Nevis\nSaint George's [US Embassy]       Grenada\nSaint George's Channel            Atlantic Ocean\nSaint John's [US Embassy]         Antigua and Barbuda\nSaint Lawrence, Gulf of           Atlantic Ocean\nSaint Lawrence Island             United States\nSaint Lawrence Seaway             Atlantic Ocean\nSaint Martin                      Guadeloupe\nSaint Martin (Sint Maarten)       Netherlands Antilles\nSaint Paul Island                 Canada\nSaint Paul Island                 United States\nSaint Paul Island                 French Southern and Antarctic Lands\n  (Ile Saint-Paul)\nSaint Peter and Saint Paul Rocks  Brazil\n  (Penedos de Sao Pedro e\n  Sao Paulo)\nSaint Petersburg                  Russia\n  [US Consulate General]\nSaint Vincent Passage             Atlantic Ocean\nSaipan                            Northern Mariana Islands\nSakhalin Island (Ostrov Sakhalin) Russia\nSala y Gomez, Isla                Chile\nSalisbury (Harare)                Zimbabwe\nSalvador de Bahia                 Brazil\n  [US Consular Agency]\nSalzburg [US Consulate General]   Austria\nSanaa [US Embassy]                Yemen\nSan Ambrosio                      Chile\nSan Andres y Providencia,         Colombia\n  Archipielago\nSan Bernardino Strait             Pacific Ocean\nSan Felix, Isla                   Chile\nSan Jose [US Embassy]             Costa Rica\nSan Luis Potosi                   Mexico\n  [US Consular Agency]\nSan Miguel Allende                Mexico\n  [US Consular Agency]\nSan Salvador [US Embassy]         El Salvador\nSanta Cruz [US Consular Agency]   Bolivia\nSanta Cruz Islands                Solomon Islands\nSantiago [US Embassy]             Chile\nSanto Domingo [US Embassy]        Dominican Republic\nSao Luis [US Consular Agency]     Brazil\nSao Paulo [US Consulate General]  Brazil\nSao Pedro e Sao Paulo,            Brazil\n  Penedos de\nSapporo [US Consulate General]    Japan\nSapudi Strait                     Indian Ocean\nSarawak                           Malaysia\nSardinia                          Italy\nSargasso Sea                      Atlantic Ocean\nSark                              Guernsey\nScotia Sea                        Atlantic Ocean\nScotland                          United Kingdom\nScott Island                      Antarctica\nSenyavin Islands                  Micronesia, Federated States of\nSeoul [US Embassy]                Korea, South\nSerbia                            Serbia and Montenegro\nSerrana Bank                      Colombia\nSerranilla Bank                   Colombia\nSevernaya Zemlya (Northland)      Russia\nSeville [US Consular Agency]      Spain\nShag Island                       Heard Island and McDonald Islands\nShag Rocks                        Falkland Islands (Islas Malvinas)\nShanghai [US Consulate General]   China\nShenyang [US Consulate General]   China\nShetland Islands                  United Kingdom\nShikoku                           Japan\nShikotan (Shikotan-to)            Japan\nSiam                              Thailand\nSibutu Passage                    Pacific Ocean\nSicily                            Italy\nSicily, Strait of                 Atlantic Ocean\nSikkim                            India\nSinai                             Egypt\nSingapore [US Embassy]            Singapore\nSingapore Strait                  Pacific Ocean\nSinkiang (Xinjiang)               China\nSint Eustatius                    Netherlands Antilles\nSint Maarten (Saint Martin)       Netherlands Antilles\nSkagerrak                         Atlantic Ocean\nSlovakia                          Czechoslovakia\nSociety Islands                   French Polynesia\n  (Iles de la Societe)\nSocotra                           Yemen\nSofia [US Embassy]                Bulgaria\nSolomon Islands, northern         Papua New Guinea\nSolomon Islands, southern         Solomon Islands\nSoloman Sea                       Pacific Ocean\nSongkhla [US Consulate]           Thailand\nSound, The (Oresund)              Atlantic Ocean\nSouth Atlantic Ocean              Atlantic Ocean\nSouth China Sea                   Pacific Ocean\nSouthern Grenadines               Grenada\nSouthern Rhodesia                 Zimbabwe\nSouth Georgia                     South Georgia and the South\n                                    Sandwich Islands\nSouth Island                      New Zealand\nSouth Korea                       Korea, South\nSouth Orkney Islands              Antarctica\nSouth Pacific Ocean               Pacific Ocean\nSouth Sandwich Islands            South Georgia and the South\n                                    Sandwich Islands\nSouth Shetland Islands            Antarctica\nSouth Tyrol                       Italy\nSouth Vietnam                     Vietnam\nSouth-West Africa                 Namibia\nSouth Yemen (People's Democratic  Yemen\n  Republic of Yemen)\nSoviet Union                      Armenia, Azerbaijan, Byelarus, Estonia,\n                                  Georgia, Kazakhstan, Kyrgyzstan,\n                                  Latvia, Lithuania, Moldova, Russia,\n                                  Tajikistan, Turkmenistan, Ukraine,\n                                  Uzbekistan\nSpanish Guinea                    Equatorial Guinea\nSpanish Sahara                    Western Sahara\nSpitsbergen                       Svalbard\nStockholm [US Embassy]            Sweden\nStrasbourg [US Consulate General] France\nStuttgart [US Consulate General]  Germany\nSuez, Gulf of                     Indian Ocean\nSulu Archipelago                  Philippines\nSulu Sea                          Pacific Ocean\nSumatra                           Indonesia\nSumba                             Indonesia\nSunda Islands (Soenda Isles)      Indonesia; Malaysia\nSunda Strait                      Indian Ocean\nSurabaya [US Consulate]           Indonesia\nSurigao Strait                    Pacific Ocean\nSurinam                           Suriname\nSuva [US Embassy]                 Fiji\nSwains Island                     American Samoa\nSwan Islands                      Honduras\nSydney [US Consulate General]     Australia\n\nTahiti                            French Polynesia\nTaipei                            Taiwan\nTaiwan Strait                     Pacific Ocean\nTallin [Interim Chancery]         Estonia\nTampico [US Consular Agency]      Mexico\nTanganyika                        Tanzania\nTangier [US Consulate General]    Morocco\nTarawa                            Kiribati\nTartar Strait                     Pacific Ocean\nTashkent [Interim Chancery]       Uzbekistan\nTasmania                          Australia\nTasman Sea                        Pacific Ocean\nTaymyr Peninsula                  Russia\n  (Poluostrov Taymyra)\nTegucigalpa [US Embassy]          Honduras\nTehran [US post not maintained,   Iran\n  representation by Swiss Embassy]\nTel Aviv [US Embassy]             Israel\nTerre Adelie (Adelie Land)        Antarctica\n  [claimed by France]\nThailand, Gulf of                 Pacific Ocean\nThessaloniki                      Greece\n  [US Consulate General]\nThurston Island                   Antarctica\nTibet (Xizang)                    China\nTbilisi                           Georgia\nTierra del Fuego                  Argentina; Chile\nTijuana [US Consulate General]    Mexico\nTimor                             Indonesia\nTimor Sea                         Indian Ocean\nTinian                            Northern Mariana Islands\nTiran, Strait of                  Indian Ocean\nTobago                            Trinidad and Tobago\nTokyo [US Embassy]                Japan\nTonkin, Gulf of                   Pacific Ocean\nToronto [US Consulate General]    Canada\nTorres Strait                     Pacific Ocean\nToshkent (Tashkent)               Uzbekistan\nTrans-Jordan                      Jordan\nTranskei                          South Africa\nTransylvania                      Romania\nTrieste [US Consular Agency]      Italy\nTrindade, Ilha de                 Brazil\nTripoli [US post not maintained,  Libya\n  representation by Belgian\n  Embassy]\nTristan da Cunha Group            Saint Helena\nTrobriand Islands                 Papua New Guinea\nTrucial States                    United Arab Emirates\nTruk Islands                      Micronesia\nTsugaru Strait                    Pacific Ocean\nTuamotu Islands (Iles Tuamotu)    French Polynesia\nTubuai Islands (Iles Tubuai)      French Polynesia\nTunis [US Embassy]                Tunisia\nTurin [US Consulate]              Italy\nTurkish Straits                   Atlantic Ocean\nTurkmeniya                        Turkmenistan\nTurks Island Passage              Atlantic Ocean\nTyrol, South                      Italy\nTyrrhenian Sea                    Atlantic Ocean\n\nUdorn [US Consulate]              Thailand\nUlaanbaatar                       Mongolia\nUllung-do                         Korea, South\nUnimak Pass [strait]              Pacific Ocean\nUnion of Soviet Socialist         Armenia, Azerbaijan, Byelarus, Estonia,\n  Republics                       Georgia, Kazakhstan, Kyrgyzstan,\n                                  Latvia, Lithuania, Moldova, Russia,\n                                  Tajikistan, Turkmenistan, Ukraine,\n                                  Uzbekistan\nUnited Arab Republic              Egypt; Syria\nUpper Volta                       Burkina\nUSSR                              Armenia, Azerbaijan, Byelarus, Estonia,\n                                  Georgia, Kazakhstan, Kyrgyzstan,\n                                  Latvia, Lithuania, Moldova, Russia,\n                                  Tajikistan, Turkmenistan, Ukraine,\n                                  Uzbekistan\nVaduz [US post not maintained,    Liechtenstein\n  representation from Zurich,\n  Switzerland]\nVakhan Corridor (Wakhan)          Afghanistan\nValencia [US Consular Agency]     Spain\nValletta [US Embassy]             Malta\nVancouver [US Consulate General]  Canada\nVancouver Island                  Canada\nVan Diemen Strait                 Pacific Ocean\nVatican City [US Embassy]         Vatican City\nVelez de la Gomera, Penon de      Spain\nVenda                             South Africa\nVeracruz [US Consular Agency]     Mexico\nVerde Island Passage              Pacific Ocean\nVictoria [US Embassy]             Seychelles\nVienna [US Embassy, US Mission    Austria\n  to International Organizations\n  in Vienna (UNVIE)]\nVientiane [US Embassy]            Laos\nVilnius [Interim Chancery]        Lithuania\nVolcano Islands                   Japan\nVostok Island                     Kiribati\nVrangelya, Ostrov                 Russia\n  (Wrangel Island)\n\nWakhan Corridor                   Afghanistan\n  (now Vakhan Corridor)\nWales                             United Kingdom\nWalvis Bay                        South Africa\nWarsaw [US Embassy]               Poland\nWashington, DC [The Permanent     United States\n  Mission of the USA to the\n  Organization of American\n  States (OAS)]\nWeddell Sea                       Atlantic Ocean\nWellington [US Embassy]           New Zealand\nWestern Channel                   Pacific Ocean\n  (West Korea Strait)\nWest Germany (Federal Republic    Germany\n  of Germany)\nWest Korea Strait                 Pacific Ocean\n  (Western Channel)\nWest Pakistan                     Pakistan\nWetar Strait                      Pacific Ocean\nWhite Sea                         Arctic Ocean\nWindhoek                          Namibia\nWindward Passage                  Atlantic Ocean\nWinnipeg [US Consular Agency]     Canada\nWrangel Island (Ostrov Vrangelya) Russia [de facto]\n\nYaounde [US Embassy]              Cameroon\nYap Islands                       Micronesia\nYellow Sea                        Pacific Ocean\nYemen (Aden) [People's Democratic Yemen\n  Republic of Yemen]\nYemen Arab Republic               Yemen\nYemen, North [Yemen Arab          Yemen\n  Republic]\nYemen (Sanaa) [Yemen Arab         Yemen\n  Republic]\nYemen, People's Democratic        Yemen\n  Republic of\nYemen, South [People's Democratic Yemen\n  Republic of Yemen]\nYerevan                           Armenia\nYouth, Isle of                    Cuba\n  (Isla de la Juventud)\nYucatan Channel                   Atlantic Ocean\nYugoslavia                        Bosnia and Hercegovina; Croatia;\n                                  Macedonia; Serbia and Montenegro;\n                                  Slovenia\n\nZagreb [US Consulate General]     Yugoslavia\nZanzibar                          Tanzania\nZurich [US Consulate General]     Switzerland\n\n"
  },
  {
    "path": "testdata/silesia/dickens",
    "content": "**The Project Gutenberg Etext of A Child's History of England**\n#11 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nA Child's History of England\n\nby Charles Dickens\n\nOctober, 1996  [Etext #699]\n\n\n**The Project Gutenberg Etext of A Child's History of England**\n*****This file should be named achoe10.txt or achoe10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, achoe11.txt.\nVERSIONS based on separate sources get new LETTER, achoe10a.txt.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nA Child's History of England by Charles Dickens\nScanned and Proofed by David Price, email ccx074@coventry.ac.uk\n\n\n\n\n\nA Child's History of England\n\n\n\n\nCHAPTER I - ANCIENT ENGLAND AND THE ROMANS\n\n\n\nIF you look at a Map of the World, you will see, in the left-hand \nupper corner of the Eastern Hemisphere, two Islands lying in the \nsea.  They are England and Scotland, and Ireland.  England and \nScotland form the greater part of these Islands.  Ireland is the \nnext in size.  The little neighbouring islands, which are so small \nupon the Map as to be mere dots, are chiefly little bits of \nScotland, - broken off, I dare say, in the course of a great length \nof time, by the power of the restless water.\n\nIn the old days, a long, long while ago, before Our Saviour was \nborn on earth and lay asleep in a manger, these Islands were in the \nsame place, and the stormy sea roared round them, just as it roars \nnow.  But the sea was not alive, then, with great ships and brave \nsailors, sailing to and from all parts of the world.  It was very \nlonely.  The Islands lay solitary, in the great expanse of water.  \nThe foaming waves dashed against their cliffs, and the bleak winds \nblew over their forests; but the winds and waves brought no \nadventurers to land upon the Islands, and the savage Islanders knew \nnothing of the rest of the world, and the rest of the world knew \nnothing of them.\n\nIt is supposed that the Phoenicians, who were an ancient people, \nfamous for carrying on trade, came in ships to these Islands, and \nfound that they produced tin and lead; both very useful things, as \nyou know, and both produced to this very hour upon the sea-coast. \nThe most celebrated tin mines in Cornwall are, still, close to the \nsea.  One of them, which I have seen, is so close to it that it is \nhollowed out underneath the ocean; and the miners say, that in \nstormy weather, when they are at work down in that deep place, they \ncan hear the noise of the waves thundering above their heads.  So, \nthe Phoenicians, coasting about the Islands, would come, without \nmuch difficulty, to where the tin and lead were.\n\nThe Phoenicians traded with the Islanders for these metals, and \ngave the Islanders some other useful things in exchange.  The \nIslanders were, at first, poor savages, going almost naked, or only \ndressed in the rough skins of beasts, and staining their bodies, as \nother savages do, with coloured earths and the juices of plants.  \nBut the Phoenicians, sailing over to the opposite coasts of France \nand Belgium, and saying to the people there, 'We have been to those \nwhite cliffs across the water, which you can see in fine weather, \nand from that country, which is called BRITAIN, we bring this tin \nand lead,' tempted some of the French and Belgians to come over \nalso.  These people settled themselves on the south coast of \nEngland, which is now called Kent; and, although they were a rough \npeople too, they taught the savage Britons some useful arts, and \nimproved that part of the Islands.  It is probable that other \npeople came over from Spain to Ireland, and settled there.\n\nThus, by little and little, strangers became mixed with the \nIslanders, and the savage Britons grew into a wild, bold people; \nalmost savage, still, especially in the interior of the country \naway from the sea where the foreign settlers seldom went; but \nhardy, brave, and strong.\n\nThe whole country was covered with forests, and swamps.  The \ngreater part of it was very misty and cold.  There were no roads, \nno bridges, no streets, no houses that you would think deserving of \nthe name.  A town was nothing but a collection of straw-covered \nhuts, hidden in a thick wood, with a ditch all round, and a low \nwall, made of mud, or the trunks of trees placed one upon another.  \nThe people planted little or no corn, but lived upon the flesh of \ntheir flocks and cattle.  They made no coins, but used metal rings \nfor money.  They were clever in basket-work, as savage people often \nare; and they could make a coarse kind of cloth, and some very bad \nearthenware.  But in building fortresses they were much more \nclever.\n\nThey made boats of basket-work, covered with the skins of animals, \nbut seldom, if ever, ventured far from the shore.  They made \nswords, of copper mixed with tin; but, these swords were of an \nawkward shape, and so soft that a heavy blow would bend one.  They \nmade light shields, short pointed daggers, and spears - which they \njerked back after they had thrown them at an enemy, by a long strip \nof leather fastened to the stem.  The butt-end was a rattle, to \nfrighten an enemy's horse.  The ancient Britons, being divided into \nas many as thirty or forty tribes, each commanded by its own little \nking, were constantly fighting with one another, as savage people \nusually do; and they always fought with these weapons.\n\nThey were very fond of horses.  The standard of Kent was the \npicture of a white horse.  They could break them in and manage them \nwonderfully well.  Indeed, the horses (of which they had an \nabundance, though they were rather small) were so well taught in \nthose days, that they can scarcely be said to have improved since; \nthough the men are so much wiser.  They understood, and obeyed, \nevery word of command; and would stand still by themselves, in all \nthe din and noise of battle, while their masters went to fight on \nfoot.  The Britons could not have succeeded in their most \nremarkable art, without the aid of these sensible and trusty \nanimals.  The art I mean, is the construction and management of \nwar-chariots or cars, for which they have ever been celebrated in \nhistory.  Each of the best sort of these chariots, not quite breast \nhigh in front, and open at the back, contained one man to drive, \nand two or three others to fight - all standing up.  The horses who \ndrew them were so well trained, that they would tear, at full \ngallop, over the most stony ways, and even through the woods; \ndashing down their masters' enemies beneath their hoofs, and \ncutting them to pieces with the blades of swords, or scythes, which \nwere fastened to the wheels, and stretched out beyond the car on \neach side, for that cruel purpose.  In a moment, while at full \nspeed, the horses would stop, at the driver's command.  The men \nwithin would leap out, deal blows about them with their swords like \nhail, leap on the horses, on the pole, spring back into the \nchariots anyhow; and, as soon as they were safe, the horses tore \naway again.\n\nThe Britons had a strange and terrible religion, called the \nReligion of the Druids.  It seems to have been brought over, in \nvery early times indeed, from the opposite country of France, \nanciently called Gaul, and to have mixed up the worship of the \nSerpent, and of the Sun and Moon, with the worship of some of the \nHeathen Gods and Goddesses.  Most of its ceremonies were kept \nsecret by the priests, the Druids, who pretended to be enchanters, \nand who carried magicians' wands, and wore, each of them, about his \nneck, what he told the ignorant people was a Serpent's egg in a \ngolden case.  But it is certain that the Druidical ceremonies \nincluded the sacrifice of human victims, the torture of some \nsuspected criminals, and, on particular occasions, even the burning \nalive, in immense wicker cages, of a number of men and animals \ntogether.  The Druid Priests had some kind of veneration for the \nOak, and for the mistletoe - the same plant that we hang up in \nhouses at Christmas Time now - when its white berries grew upon the \nOak.  They met together in dark woods, which they called Sacred \nGroves; and there they instructed, in their mysterious arts, young \nmen who came to them as pupils, and who sometimes stayed with them \nas long as twenty years.\n\nThese Druids built great Temples and altars, open to the sky, \nfragments of some of which are yet remaining.  Stonehenge, on \nSalisbury Plain, in Wiltshire, is the most extraordinary of these.  \nThree curious stones, called Kits Coty House, on Bluebell Hill, \nnear Maidstone, in Kent, form another.  We know, from examination \nof the great blocks of which such buildings are made, that they \ncould not have been raised without the aid of some ingenious \nmachines, which are common now, but which the ancient Britons \ncertainly did not use in making their own uncomfortable houses.  I \nshould not wonder if the Druids, and their pupils who stayed with \nthem twenty years, knowing more than the rest of the Britons, kept \nthe people out of sight while they made these buildings, and then \npretended that they built them by magic.  Perhaps they had a hand \nin the fortresses too; at all events, as they were very powerful, \nand very much believed in, and as they made and executed the laws, \nand paid no taxes, I don't wonder that they liked their trade.  \nAnd, as they persuaded the people the more Druids there were, the \nbetter off the people would be, I don't wonder that there were a \ngood many of them.  But it is pleasant to think that there are no \nDruids, NOW, who go on in that way, and pretend to carry \nEnchanters' Wands and Serpents' Eggs - and of course there is \nnothing of the kind, anywhere.\n\nSuch was the improved condition of the ancient Britons, fifty-five \nyears before the birth of Our Saviour, when the Romans, under their \ngreat General, Julius Caesar, were masters of all the rest of the \nknown world.  Julius Caesar had then just conquered Gaul; and \nhearing, in Gaul, a good deal about the opposite Island with the \nwhite cliffs, and about the bravery of the Britons who inhabited it \n- some of whom had been fetched over to help the Gauls in the war \nagainst him - he resolved, as he was so near, to come and conquer \nBritain next.\n\nSo, Julius Caesar came sailing over to this Island of ours, with \neighty vessels and twelve thousand men.  And he came from the \nFrench coast between Calais and Boulogne, 'because thence was the \nshortest passage into Britain;' just for the same reason as our \nsteam-boats now take the same track, every day.  He expected to \nconquer Britain easily:  but it was not such easy work as he \nsupposed - for the bold Britons fought most bravely; and, what with \nnot having his horse-soldiers with him (for they had been driven \nback by a storm), and what with having some of his vessels dashed \nto pieces by a high tide after they were drawn ashore, he ran great \nrisk of being totally defeated.  However, for once that the bold \nBritons beat him, he beat them twice; though not so soundly but \nthat he was very glad to accept their proposals of peace, and go \naway.\n\nBut, in the spring of the next year, he came back; this time, with \neight hundred vessels and thirty thousand men.  The British tribes \nchose, as their general-in-chief, a Briton, whom the Romans in \ntheir Latin language called CASSIVELLAUNUS, but whose British name \nis supposed to have been CASWALLON.  A brave general he was, and \nwell he and his soldiers fought the Roman army!  So well, that \nwhenever in that war the Roman soldiers saw a great cloud of dust, \nand heard the rattle of the rapid British chariots, they trembled \nin their hearts.  Besides a number of smaller battles, there was a \nbattle fought near Canterbury, in Kent; there was a battle fought \nnear Chertsey, in Surrey; there was a battle fought near a marshy \nlittle town in a wood, the capital of that part of Britain which \nbelonged to CASSIVELLAUNUS, and which was probably near what is now \nSaint Albans, in Hertfordshire.  However, brave CASSIVELLAUNUS had \nthe worst of it, on the whole; though he and his men always fought \nlike lions.  As the other British chiefs were jealous of him, and \nwere always quarrelling with him, and with one another, he gave up, \nand proposed peace.  Julius Caesar was very glad to grant peace \neasily, and to go away again with all his remaining ships and men.  \nHe had expected to find pearls in Britain, and he may have found a \nfew for anything I know; but, at all events, he found delicious \noysters, and I am sure he found tough Britons - of whom, I dare \nsay, he made the same complaint as Napoleon Bonaparte the great \nFrench General did, eighteen hundred years afterwards, when he said \nthey were such unreasonable fellows that they never knew when they \nwere beaten.  They never DID know, I believe, and never will.\n\nNearly a hundred years passed on, and all that time, there was \npeace in Britain.  The Britons improved their towns and mode of \nlife:  became more civilised, travelled, and learnt a great deal \nfrom the Gauls and Romans.  At last, the Roman Emperor, Claudius, \nsent AULUS PLAUTIUS, a skilful general, with a mighty force, to \nsubdue the Island, and shortly afterwards arrived himself.  They \ndid little; and OSTORIUS SCAPULA, another general, came.  Some of \nthe British Chiefs of Tribes submitted.  Others resolved to fight \nto the death.  Of these brave men, the bravest was CARACTACUS, or \nCARADOC, who gave battle to the Romans, with his army, among the \nmountains of North Wales.  'This day,' said he to his soldiers, \n'decides the fate of Britain!  Your liberty, or your eternal \nslavery, dates from this hour.  Remember your brave ancestors, who \ndrove the great Caesar himself across the sea!'  On hearing these \nwords, his men, with a great shout, rushed upon the Romans.  But \nthe strong Roman swords and armour were too much for the weaker \nBritish weapons in close conflict.  The Britons lost the day.  The \nwife and daughter of the brave CARACTACUS were taken prisoners; his \nbrothers delivered themselves up; he himself was betrayed into the \nhands of the Romans by his false and base stepmother:  and they \ncarried him, and all his family, in triumph to Rome.\n\nBut a great man will be great in misfortune, great in prison, great \nin chains.  His noble air, and dignified endurance of distress, so \ntouched the Roman people who thronged the streets to see him, that \nhe and his family were restored to freedom.  No one knows whether \nhis great heart broke, and he died in Rome, or whether he ever \nreturned to his own dear country.  English oaks have grown up from \nacorns, and withered away, when they were hundreds of years old - \nand other oaks have sprung up in their places, and died too, very \naged - since the rest of the history of the brave CARACTACUS was \nforgotten.\n\nStill, the Britons WOULD NOT yield.  They rose again and again, and \ndied by thousands, sword in hand.  They rose, on every possible \noccasion.  SUETONIUS, another Roman general, came, and stormed the \nIsland of Anglesey (then called MONA), which was supposed to be \nsacred, and he burnt the Druids in their own wicker cages, by their \nown fires.  But, even while he was in Britain, with his victorious \ntroops, the BRITONS rose.  Because BOADICEA, a British queen, the \nwidow of the King of the Norfolk and Suffolk people, resisted the \nplundering of her property by the Romans who were settled in \nEngland, she was scourged, by order of CATUS a Roman officer; and \nher two daughters were shamefully insulted in her presence, and her \nhusband's relations were made slaves.  To avenge this injury, the \nBritons rose, with all their might and rage.  They drove CATUS into \nGaul; they laid the Roman possessions waste; they forced the Romans \nout of London, then a poor little town, but a trading place; they \nhanged, burnt, crucified, and slew by the sword, seventy thousand \nRomans in a few days.  SUETONIUS strengthened his army, and \nadvanced to give them battle.  They strengthened their army, and \ndesperately attacked his, on the field where it was strongly \nposted.  Before the first charge of the Britons was made, BOADICEA, \nin a war-chariot, with her fair hair streaming in the wind, and her \ninjured daughters lying at her feet, drove among the troops, and \ncried to them for vengeance on their oppressors, the licentious \nRomans.  The Britons fought to the last; but they were vanquished \nwith great slaughter, and the unhappy queen took poison.\n\nStill, the spirit of the Britons was not broken.  When SUETONIUS \nleft the country, they fell upon his troops, and retook the Island \nof Anglesey.  AGRICOLA came, fifteen or twenty years afterwards, \nand retook it once more, and devoted seven years to subduing the \ncountry, especially that part of it which is now called SCOTLAND; \nbut, its people, the Caledonians, resisted him at every inch of \nground.  They fought the bloodiest battles with him; they killed \ntheir very wives and children, to prevent his making prisoners of \nthem; they fell, fighting, in such great numbers that certain hills \nin Scotland are yet supposed to be vast heaps of stones piled up \nabove their graves.  HADRIAN came, thirty years afterwards, and \nstill they resisted him.  SEVERUS came, nearly a hundred years \nafterwards, and they worried his great army like dogs, and rejoiced \nto see them die, by thousands, in the bogs and swamps.  CARACALLA, \nthe son and successor of SEVERUS, did the most to conquer them, for \na time; but not by force of arms.  He knew how little that would \ndo.  He yielded up a quantity of land to the Caledonians, and gave \nthe Britons the same privileges as the Romans possessed.  There was \npeace, after this, for seventy years.\n\nThen new enemies arose.  They were the Saxons, a fierce, sea-faring \npeople from the countries to the North of the Rhine, the great \nriver of Germany on the banks of which the best grapes grow to make \nthe German wine.  They began to come, in pirate ships, to the sea-\ncoast of Gaul and Britain, and to plunder them.  They were repulsed \nby CARAUSIUS, a native either of Belgium or of Britain, who was \nappointed by the Romans to the command, and under whom the Britons \nfirst began to fight upon the sea.  But, after this time, they \nrenewed their ravages.  A few years more, and the Scots (which was \nthen the name for the people of Ireland), and the Picts, a northern \npeople, began to make frequent plundering incursions into the South \nof Britain.  All these attacks were repeated, at intervals, during \ntwo hundred years, and through a long succession of Roman Emperors \nand chiefs; during all which length of time, the Britons rose \nagainst the Romans, over and over again.  At last, in the days of \nthe Roman HONORIUS, when the Roman power all over the world was \nfast declining, and when Rome wanted all her soldiers at home, the \nRomans abandoned all hope of conquering Britain, and went away.  \nAnd still, at last, as at first, the Britons rose against them, in \ntheir old brave manner; for, a very little while before, they had \nturned away the Roman magistrates, and declared themselves an \nindependent people.\n\nFive hundred years had passed, since Julius Caesar's first invasion \nof the Island, when the Romans departed from it for ever.  In the \ncourse of that time, although they had been the cause of terrible \nfighting and bloodshed, they had done much to improve the condition \nof the Britons.  They had made great military roads; they had built \nforts; they had taught them how to dress, and arm themselves, much \nbetter than they had ever known how to do before; they had refined \nthe whole British way of living.  AGRICOLA had built a great wall \nof earth, more than seventy miles long, extending from Newcastle to \nbeyond Carlisle, for the purpose of keeping out the Picts and \nScots; HADRIAN had strengthened it; SEVERUS, finding it much in \nwant of repair, had built it afresh of stone.\n\nAbove all, it was in the Roman time, and by means of Roman ships, \nthat the Christian Religion was first brought into Britain, and its \npeople first taught the great lesson that, to be good in the sight \nof GOD, they must love their neighbours as themselves, and do unto \nothers as they would be done by.  The Druids declared that it was \nvery wicked to believe in any such thing, and cursed all the people \nwho did believe it, very heartily.  But, when the people found that \nthey were none the better for the blessings of the Druids, and none \nthe worse for the curses of the Druids, but, that the sun shone and \nthe rain fell without consulting the Druids at all, they just began \nto think that the Druids were mere men, and that it signified very \nlittle whether they cursed or blessed.  After which, the pupils of \nthe Druids fell off greatly in numbers, and the Druids took to \nother trades.\n\nThus I have come to the end of the Roman time in England.  It is \nbut little that is known of those five hundred years; but some \nremains of them are still found.  Often, when labourers are digging \nup the ground, to make foundations for houses or churches, they \nlight on rusty money that once belonged to the Romans.  Fragments \nof plates from which they ate, of goblets from which they drank, \nand of pavement on which they trod, are discovered among the earth \nthat is broken by the plough, or the dust that is crumbled by the \ngardener's spade.  Wells that the Romans sunk, still yield water; \nroads that the Romans made, form part of our highways.  In some old \nbattle-fields, British spear-heads and Roman armour have been \nfound, mingled together in decay, as they fell in the thick \npressure of the fight.  Traces of Roman camps overgrown with grass, \nand of mounds that are the burial-places of heaps of Britons, are \nto be seen in almost all parts of the country.  Across the bleak \nmoors of Northumberland, the wall of SEVERUS, overrun with moss and \nweeds, still stretches, a strong ruin; and the shepherds and their \ndogs lie sleeping on it in the summer weather.  On Salisbury Plain, \nStonehenge yet stands:  a monument of the earlier time when the \nRoman name was unknown in Britain, and when the Druids, with their \nbest magic wands, could not have written it in the sands of the \nwild sea-shore.\n\n\n\nCHAPTER II - ANCIENT ENGLAND UNDER THE EARLY SAXONS\n\n\n\nTHE Romans had scarcely gone away from Britain, when the Britons \nbegan to wish they had never left it.  For, the Romans being gone, \nand the Britons being much reduced in numbers by their long wars, \nthe Picts and Scots came pouring in, over the broken and unguarded \nwall of SEVERUS, in swarms.  They plundered the richest towns, and \nkilled the people; and came back so often for more booty and more \nslaughter, that the unfortunate Britons lived a life of terror.  As \nif the Picts and Scots were not bad enough on land, the Saxons \nattacked the islanders by sea; and, as if something more were still \nwanting to make them miserable, they quarrelled bitterly among \nthemselves as to what prayers they ought to say, and how they ought \nto say them.  The priests, being very angry with one another on \nthese questions, cursed one another in the heartiest manner; and \n(uncommonly like the old Druids) cursed all the people whom they \ncould not persuade.  So, altogether, the Britons were very badly \noff, you may believe.\n\nThey were in such distress, in short, that they sent a letter to \nRome entreating help - which they called the Groans of the Britons; \nand in which they said, 'The barbarians chase us into the sea, the \nsea throws us back upon the barbarians, and we have only the hard \nchoice left us of perishing by the sword, or perishing by the \nwaves.'  But, the Romans could not help them, even if they were so \ninclined; for they had enough to do to defend themselves against \ntheir own enemies, who were then very fierce and strong.  At last, \nthe Britons, unable to bear their hard condition any longer, \nresolved to make peace with the Saxons, and to invite the Saxons to \ncome into their country, and help them to keep out the Picts and \nScots.\n\nIt was a British Prince named VORTIGERN who took this resolution, \nand who made a treaty of friendship with HENGIST and HORSA, two \nSaxon chiefs.  Both of these names, in the old Saxon language, \nsignify Horse; for the Saxons, like many other nations in a rough \nstate, were fond of giving men the names of animals, as Horse, \nWolf, Bear, Hound.  The Indians of North America, - a very inferior \npeople to the Saxons, though - do the same to this day.\n\nHENGIST and HORSA drove out the Picts and Scots; and VORTIGERN, \nbeing grateful to them for that service, made no opposition to \ntheir settling themselves in that part of England which is called \nthe Isle of Thanet, or to their inviting over more of their \ncountrymen to join them.  But HENGIST had a beautiful daughter \nnamed ROWENA; and when, at a feast, she filled a golden goblet to \nthe brim with wine, and gave it to VORTIGERN, saying in a sweet \nvoice, 'Dear King, thy health!' the King fell in love with her.  My \nopinion is, that the cunning HENGIST meant him to do so, in order \nthat the Saxons might have greater influence with him; and that the \nfair ROWENA came to that feast, golden goblet and all, on purpose.\n\nAt any rate, they were married; and, long afterwards, whenever the \nKing was angry with the Saxons, or jealous of their encroachments, \nROWENA would put her beautiful arms round his neck, and softly say, \n'Dear King, they are my people!  Be favourable to them, as you \nloved that Saxon girl who gave you the golden goblet of wine at the \nfeast!'  And, really, I don't see how the King could help himself.\n\nAh!  We must all die!  In the course of years, VORTIGERN died - he \nwas dethroned, and put in prison, first, I am afraid; and ROWENA \ndied; and generations of Saxons and Britons died; and events that \nhappened during a long, long time, would have been quite forgotten \nbut for the tales and songs of the old Bards, who used to go about \nfrom feast to feast, with their white beards, recounting the deeds \nof their forefathers.  Among the histories of which they sang and \ntalked, there was a famous one, concerning the bravery and virtues \nof KING ARTHUR, supposed to have been a British Prince in those old \ntimes.  But, whether such a person really lived, or whether there \nwere several persons whose histories came to be confused together \nunder that one name, or whether all about him was invention, no one \nknows.\n\nI will tell you, shortly, what is most interesting in the early \nSaxon times, as they are described in these songs and stories of \nthe Bards.\n\nIn, and long after, the days of VORTIGERN, fresh bodies of Saxons, \nunder various chiefs, came pouring into Britain.  One body, \nconquering the Britons in the East, and settling there, called \ntheir kingdom Essex; another body settled in the West, and called \ntheir kingdom Wessex; the Northfolk, or Norfolk people, established \nthemselves in one place; the Southfolk, or Suffolk people, \nestablished themselves in another; and gradually seven kingdoms or \nstates arose in England, which were called the Saxon Heptarchy.  \nThe poor Britons, falling back before these crowds of fighting men \nwhom they had innocently invited over as friends, retired into \nWales and the adjacent country; into Devonshire, and into Cornwall.  \nThose parts of England long remained unconquered.  And in Cornwall \nnow - where the sea-coast is very gloomy, steep, and rugged - \nwhere, in the dark winter-time, ships have often been wrecked close \nto the land, and every soul on board has perished - where the winds \nand waves howl drearily and split the solid rocks into arches and \ncaverns - there are very ancient ruins, which the people call the \nruins of KING ARTHUR'S Castle.\n\nKent is the most famous of the seven Saxon kingdoms, because the \nChristian religion was preached to the Saxons there (who domineered \nover the Britons too much, to care for what THEY said about their \nreligion, or anything else) by AUGUSTINE, a monk from Rome.  KING \nETHELBERT, of Kent, was soon converted; and the moment he said he \nwas a Christian, his courtiers all said THEY were Christians; after \nwhich, ten thousand of his subjects said they were Christians too.  \nAUGUSTINE built a little church, close to this King's palace, on \nthe ground now occupied by the beautiful cathedral of Canterbury.  \nSEBERT, the King's nephew, built on a muddy marshy place near \nLondon, where there had been a temple to Apollo, a church dedicated \nto Saint Peter, which is now Westminster Abbey.  And, in London \nitself, on the foundation of a temple to Diana, he built another \nlittle church which has risen up, since that old time, to be Saint \nPaul's.\n\nAfter the death of ETHELBERT, EDWIN, King of Northumbria, who was \nsuch a good king that it was said a woman or child might openly \ncarry a purse of gold, in his reign, without fear, allowed his \nchild to be baptised, and held a great council to consider whether \nhe and his people should all be Christians or not.  It was decided \nthat they should be.  COIFI, the chief priest of the old religion, \nmade a great speech on the occasion.  In this discourse, he told \nthe people that he had found out the old gods to be impostors.  'I \nam quite satisfied of it,' he said.  'Look at me!  I have been \nserving them all my life, and they have done nothing for me; \nwhereas, if they had been really powerful, they could not have \ndecently done less, in return for all I have done for them, than \nmake my fortune.  As they have never made my fortune, I am quite \nconvinced they are impostors!'  When this singular priest had \nfinished speaking, he hastily armed himself with sword and lance, \nmounted a war-horse, rode at a furious gallop in sight of all the \npeople to the temple, and flung his lance against it as an insult.  \nFrom that time, the Christian religion spread itself among the \nSaxons, and became their faith.\n\nThe next very famous prince was EGBERT.  He lived about a hundred \nand fifty years afterwards, and claimed to have a better right to \nthe throne of Wessex than BEORTRIC, another Saxon prince who was at \nthe head of that kingdom, and who married EDBURGA, the daughter of \nOFFA, king of another of the seven kingdoms.  This QUEEN EDBURGA \nwas a handsome murderess, who poisoned people when they offended \nher.  One day, she mixed a cup of poison for a certain noble \nbelonging to the court; but her husband drank of it too, by \nmistake, and died.  Upon this, the people revolted, in great \ncrowds; and running to the palace, and thundering at the gates, \ncried, 'Down with the wicked queen, who poisons men!'  They drove \nher out of the country, and abolished the title she had disgraced.  \nWhen years had passed away, some travellers came home from Italy, \nand said that in the town of Pavia they had seen a ragged beggar-\nwoman, who had once been handsome, but was then shrivelled, bent, \nand yellow, wandering about the streets, crying for bread; and that \nthis beggar-woman was the poisoning English queen.  It was, indeed, \nEDBURGA; and so she died, without a shelter for her wretched head.\n\nEGBERT, not considering himself safe in England, in consequence of \nhis having claimed the crown of Wessex (for he thought his rival \nmight take him prisoner and put him to death), sought refuge at the \ncourt of CHARLEMAGNE, King of France.  On the death of BEORTRIC, so \nunhappily poisoned by mistake, EGBERT came back to Britain; \nsucceeded to the throne of Wessex; conquered some of the other \nmonarchs of the seven kingdoms; added their territories to his own; \nand, for the first time, called the country over which he ruled, \nENGLAND.\n\nAnd now, new enemies arose, who, for a long time, troubled England \nsorely.  These were the Northmen, the people of Denmark and Norway, \nwhom the English called the Danes.  They were a warlike people, \nquite at home upon the sea; not Christians; very daring and cruel.  \nThey came over in ships, and plundered and burned wheresoever they \nlanded.  Once, they beat EGBERT in battle.  Once, EGBERT beat them.  \nBut, they cared no more for being beaten than the English \nthemselves.  In the four following short reigns, of ETHELWULF, and \nhis sons, ETHELBALD, ETHELBERT, and ETHELRED, they came back, over \nand over again, burning and plundering, and laying England waste.  \nIn the last-mentioned reign, they seized EDMUND, King of East \nEngland, and bound him to a tree.  Then, they proposed to him that \nhe should change his religion; but he, being a good Christian, \nsteadily refused.  Upon that, they beat him, made cowardly jests \nupon him, all defenceless as he was, shot arrows at him, and, \nfinally, struck off his head.  It is impossible to say whose head \nthey might have struck off next, but for the death of KING ETHELRED \nfrom a wound he had received in fighting against them, and the \nsuccession to his throne of the best and wisest king that ever \nlived in England.\n\n\n\nCHAPTER III - ENGLAND UNDER THE GOOD SAXON, ALFRED\n\n\n\nALFRED THE GREAT was a young man, three-and-twenty years of age, \nwhen he became king.  Twice in his childhood, he had been taken to \nRome, where the Saxon nobles were in the habit of going on journeys \nwhich they supposed to be religious; and, once, he had stayed for \nsome time in Paris.  Learning, however, was so little cared for, \nthen, that at twelve years old he had not been taught to read; \nalthough, of the sons of KING ETHELWULF, he, the youngest, was the \nfavourite.  But he had - as most men who grow up to be great and \ngood are generally found to have had - an excellent mother; and, \none day, this lady, whose name was OSBURGA, happened, as she was \nsitting among her sons, to read a book of Saxon poetry.  The art of \nprinting was not known until long and long after that period, and \nthe book, which was written, was what is called 'illuminated,' with \nbeautiful bright letters, richly painted.  The brothers admiring it \nvery much, their mother said, 'I will give it to that one of you \nfour princes who first learns to read.'  ALFRED sought out a tutor \nthat very day, applied himself to learn with great diligence, and \nsoon won the book.  He was proud of it, all his life.\n\nThis great king, in the first year of his reign, fought nine \nbattles with the Danes.  He made some treaties with them too, by \nwhich the false Danes swore they would quit the country.  They \npretended to consider that they had taken a very solemn oath, in \nswearing this upon the holy bracelets that they wore, and which \nwere always buried with them when they died; but they cared little \nfor it, for they thought nothing of breaking oaths and treaties \ntoo, as soon as it suited their purpose, and coming back again to \nfight, plunder, and burn, as usual.  One fatal winter, in the \nfourth year of KING ALFRED'S reign, they spread themselves in great \nnumbers over the whole of England; and so dispersed and routed the \nKing's soldiers that the King was left alone, and was obliged to \ndisguise himself as a common peasant, and to take refuge in the \ncottage of one of his cowherds who did not know his face.\n\nHere, KING ALFRED, while the Danes sought him far and near, was \nleft alone one day, by the cowherd's wife, to watch some cakes \nwhich she put to bake upon the hearth.  But, being at work upon his \nbow and arrows, with which he hoped to punish the false Danes when \na brighter time should come, and thinking deeply of his poor \nunhappy subjects whom the Danes chased through the land, his noble \nmind forgot the cakes, and they were burnt.  'What!' said the \ncowherd's wife, who scolded him well when she came back, and little \nthought she was scolding the King, 'you will be ready enough to eat \nthem by-and-by, and yet you cannot watch them, idle dog?'\n\nAt length, the Devonshire men made head against a new host of Danes \nwho landed on their coast; killed their chief, and captured their \nflag; on which was represented the likeness of a Raven - a very fit \nbird for a thievish army like that, I think.  The loss of their \nstandard troubled the Danes greatly, for they believed it to be \nenchanted - woven by the three daughters of one father in a single \nafternoon - and they had a story among themselves that when they \nwere victorious in battle, the Raven stretched his wings and seemed \nto fly; and that when they were defeated, he would droop.  He had \ngood reason to droop, now, if he could have done anything half so \nsensible; for, KING ALFRED joined the Devonshire men; made a camp \nwith them on a piece of firm ground in the midst of a bog in \nSomersetshire; and prepared for a great attempt for vengeance on \nthe Danes, and the deliverance of his oppressed people.\n\nBut, first, as it was important to know how numerous those \npestilent Danes were, and how they were fortified, KING ALFRED, \nbeing a good musician, disguised himself as a glee-man or minstrel, \nand went, with his harp, to the Danish camp.  He played and sang in \nthe very tent of GUTHRUM the Danish leader, and entertained the \nDanes as they caroused.  While he seemed to think of nothing but \nhis music, he was watchful of their tents, their arms, their \ndiscipline, everything that he desired to know.  And right soon did \nthis great king entertain them to a different tune; for, summoning \nall his true followers to meet him at an appointed place, where \nthey received him with joyful shouts and tears, as the monarch whom \nmany of them had given up for lost or dead, he put himself at their \nhead, marched on the Danish camp, defeated the Danes with great \nslaughter, and besieged them for fourteen days to prevent their \nescape.  But, being as merciful as he was good and brave, he then, \ninstead of killing them, proposed peace:  on condition that they \nshould altogether depart from that Western part of England, and \nsettle in the East; and that GUTHRUM should become a Christian, in \nremembrance of the Divine religion which now taught his conqueror, \nthe noble ALFRED, to forgive the enemy who had so often injured \nhim.  This, GUTHRUM did.  At his baptism, KING ALFRED was his \ngodfather.  And GUTHRUM was an honourable chief who well deserved \nthat clemency; for, ever afterwards he was loyal and faithful to \nthe king.  The Danes under him were faithful too.  They plundered \nand burned no more, but worked like honest men.  They ploughed, and \nsowed, and reaped, and led good honest English lives.  And I hope \nthe children of those Danes played, many a time, with Saxon \nchildren in the sunny fields; and that Danish young men fell in \nlove with Saxon girls, and married them; and that English \ntravellers, benighted at the doors of Danish cottages, often went \nin for shelter until morning; and that Danes and Saxons sat by the \nred fire, friends, talking of KING ALFRED THE GREAT.\n\nAll the Danes were not like these under GUTHRUM; for, after some \nyears, more of them came over, in the old plundering and burning \nway - among them a fierce pirate of the name of HASTINGS, who had \nthe boldness to sail up the Thames to Gravesend, with eighty ships.  \nFor three years, there was a war with these Danes; and there was a \nfamine in the country, too, and a plague, both upon human creatures \nand beasts.  But KING ALFRED, whose mighty heart never failed him, \nbuilt large ships nevertheless, with which to pursue the pirates on \nthe sea; and he encouraged his soldiers, by his brave example, to \nfight valiantly against them on the shore.  At last, he drove them \nall away; and then there was repose in England.\n\nAs great and good in peace, as he was great and good in war, KING \nALFRED never rested from his labours to improve his people.  He \nloved to talk with clever men, and with travellers from foreign \ncountries, and to write down what they told him, for his people to \nread.  He had studied Latin after learning to read English, and now \nanother of his labours was, to translate Latin books into the \nEnglish-Saxon tongue, that his people might be interested, and \nimproved by their contents.  He made just laws, that they might \nlive more happily and freely; he turned away all partial judges, \nthat no wrong might be done them; he was so careful of their \nproperty, and punished robbers so severely, that it was a common \nthing to say that under the great KING ALFRED, garlands of golden \nchains and jewels might have hung across the streets, and no man \nwould have touched one.  He founded schools; he patiently heard \ncauses himself in his Court of Justice; the great desires of his \nheart were, to do right to all his subjects, and to leave England \nbetter, wiser, happier in all ways, than he found it.  His industry \nin these efforts was quite astonishing.  Every day he divided into \ncertain portions, and in each portion devoted himself to a certain \npursuit.  That he might divide his time exactly, he had wax torches \nor candles made, which were all of the same size, were notched \nacross at regular distances, and were always kept burning.  Thus, \nas the candles burnt down, he divided the day into notches, almost \nas accurately as we now divide it into hours upon the clock.  But \nwhen the candles were first invented, it was found that the wind \nand draughts of air, blowing into the palace through the doors and \nwindows, and through the chinks in the walls, caused them to gutter \nand burn unequally.  To prevent this, the King had them put into \ncases formed of wood and white horn.  And these were the first \nlanthorns ever made in England.\n\nAll this time, he was afflicted with a terrible unknown disease, \nwhich caused him violent and frequent pain that nothing could \nrelieve.  He bore it, as he had borne all the troubles of his life, \nlike a brave good man, until he was fifty-three years old; and \nthen, having reigned thirty years, he died.  He died in the year \nnine hundred and one; but, long ago as that is, his fame, and the \nlove and gratitude with which his subjects regarded him, are \nfreshly remembered to the present hour.\n\nIn the next reign, which was the reign of EDWARD, surnamed THE \nELDER, who was chosen in council to succeed, a nephew of KING \nALFRED troubled the country by trying to obtain the throne.  The \nDanes in the East of England took part with this usurper (perhaps \nbecause they had honoured his uncle so much, and honoured him for \nhis uncle's sake), and there was hard fighting; but, the King, with \nthe assistance of his sister, gained the day, and reigned in peace \nfor four and twenty years.  He gradually extended his power over \nthe whole of England, and so the Seven Kingdoms were united into \none.\n\nWhen England thus became one kingdom, ruled over by one Saxon king, \nthe Saxons had been settled in the country more than four hundred \nand fifty years.  Great changes had taken place in its customs \nduring that time.  The Saxons were still greedy eaters and great \ndrinkers, and their feasts were often of a noisy and drunken kind; \nbut many new comforts and even elegances had become known, and were \nfast increasing.  Hangings for the walls of rooms, where, in these \nmodern days, we paste up paper, are known to have been sometimes \nmade of silk, ornamented with birds and flowers in needlework.  \nTables and chairs were curiously carved in different woods; were \nsometimes decorated with gold or silver; sometimes even made of \nthose precious metals.  Knives and spoons were used at table; \ngolden ornaments were worn - with silk and cloth, and golden \ntissues and embroideries; dishes were made of gold and silver, \nbrass and bone.  There were varieties of drinking-horns, bedsteads, \nmusical instruments.  A harp was passed round, at a feast, like the \ndrinking-bowl, from guest to guest; and each one usually sang or \nplayed when his turn came.  The weapons of the Saxons were stoutly \nmade, and among them was a terrible iron hammer that gave deadly \nblows, and was long remembered.  The Saxons themselves were a \nhandsome people.  The men were proud of their long fair hair, \nparted on the forehead; their ample beards, their fresh \ncomplexions, and clear eyes.  The beauty of the Saxon women filled \nall England with a new delight and grace.\n\nI have more to tell of the Saxons yet, but I stop to say this now, \nbecause under the GREAT ALFRED, all the best points of the English-\nSaxon character were first encouraged, and in him first shown.  It \nhas been the greatest character among the nations of the earth.  \nWherever the descendants of the Saxon race have gone, have sailed, \nor otherwise made their way, even to the remotest regions of the \nworld, they have been patient, persevering, never to be broken in \nspirit, never to be turned aside from enterprises on which they \nhave resolved.  In Europe, Asia, Africa, America, the whole world \nover; in the desert, in the forest, on the sea; scorched by a \nburning sun, or frozen by ice that never melts; the Saxon blood \nremains unchanged.  Wheresoever that race goes, there, law, and \nindustry, and safety for life and property, and all the great \nresults of steady perseverance, are certain to arise.\n\nI pause to think with admiration, of the noble king who, in his \nsingle person, possessed all the Saxon virtues.  Whom misfortune \ncould not subdue, whom prosperity could not spoil, whose \nperseverance nothing could shake.  Who was hopeful in defeat, and \ngenerous in success.  Who loved justice, freedom, truth, and \nknowledge.  Who, in his care to instruct his people, probably did \nmore to preserve the beautiful old Saxon language, than I can \nimagine.  Without whom, the English tongue in which I tell this \nstory might have wanted half its meaning.  As it is said that his \nspirit still inspires some of our best English laws, so, let you \nand I pray that it may animate our English hearts, at least to this \n- to resolve, when we see any of our fellow-creatures left in \nignorance, that we will do our best, while life is in us, to have \nthem taught; and to tell those rulers whose duty it is to teach \nthem, and who neglect their duty, that they have profited very \nlittle by all the years that have rolled away since the year nine \nhundred and one, and that they are far behind the bright example of \nKING ALFRED THE GREAT.\n\n\n\nCHAPTER IV - ENGLAND UNDER ATHELSTAN AND THE SIX BOY-KINGS\n\n\n\nATHELSTAN, the son of Edward the Elder, succeeded that king.  He \nreigned only fifteen years; but he remembered the glory of his \ngrandfather, the great Alfred, and governed England well.  He \nreduced the turbulent people of Wales, and obliged them to pay him \na tribute in money, and in cattle, and to send him their best hawks \nand hounds.  He was victorious over the Cornish men, who were not \nyet quite under the Saxon government.  He restored such of the old \nlaws as were good, and had fallen into disuse; made some wise new \nlaws, and took care of the poor and weak.  A strong alliance, made \nagainst him by ANLAF a Danish prince, CONSTANTINE King of the \nScots, and the people of North Wales, he broke and defeated in one \ngreat battle, long famous for the vast numbers slain in it.  After \nthat, he had a quiet reign; the lords and ladies about him had \nleisure to become polite and agreeable; and foreign princes were \nglad (as they have sometimes been since) to come to England on \nvisits to the English court.\n\nWhen Athelstan died, at forty-seven years old, his brother EDMUND, \nwho was only eighteen, became king.  He was the first of six boy-\nkings, as you will presently know.\n\nThey called him the Magnificent, because he showed a taste for \nimprovement and refinement.  But he was beset by the Danes, and had \na short and troubled reign, which came to a troubled end.  One \nnight, when he was feasting in his hall, and had eaten much and \ndrunk deep, he saw, among the company, a noted robber named LEOF, \nwho had been banished from England.  Made very angry by the \nboldness of this man, the King turned to his cup-bearer, and said, \n'There is a robber sitting at the table yonder, who, for his \ncrimes, is an outlaw in the land - a hunted wolf, whose life any \nman may take, at any time.  Command that robber to depart!'  'I \nwill not depart!' said Leof.  'No?' cried the King.  'No, by the \nLord!' said Leof.  Upon that the King rose from his seat, and, \nmaking passionately at the robber, and seizing him by his long \nhair, tried to throw him down.  But the robber had a dagger \nunderneath his cloak, and, in the scuffle, stabbed the King to \ndeath.  That done, he set his back against the wall, and fought so \ndesperately, that although he was soon cut to pieces by the King's \narmed men, and the wall and pavement were splashed with his blood, \nyet it was not before he had killed and wounded many of them.  You \nmay imagine what rough lives the kings of those times led, when one \nof them could struggle, half drunk, with a public robber in his own \ndining-hall, and be stabbed in presence of the company who ate and \ndrank with him.\n\nThen succeeded the boy-king EDRED, who was weak and sickly in body, \nbut of a strong mind.  And his armies fought the Northmen, the \nDanes, and Norwegians, or the Sea-Kings, as they were called, and \nbeat them for the time.  And, in nine years, Edred died, and passed \naway.\n\nThen came the boy-king EDWY, fifteen years of age; but the real \nking, who had the real power, was a monk named DUNSTAN - a clever \npriest, a little mad, and not a little proud and cruel.\n\nDunstan was then Abbot of Glastonbury Abbey, whither the body of \nKing Edmund the Magnificent was carried, to be buried.  While yet a \nboy, he had got out of his bed one night (being then in a fever), \nand walked about Glastonbury Church when it was under repair; and, \nbecause he did not tumble off some scaffolds that were there, and \nbreak his neck, it was reported that he had been shown over the \nbuilding by an angel.  He had also made a harp that was said to \nplay of itself - which it very likely did, as AEolian Harps, which \nare played by the wind, and are understood now, always do.  For \nthese wonders he had been once denounced by his enemies, who were \njealous of his favour with the late King Athelstan, as a magician; \nand he had been waylaid, bound hand and foot, and thrown into a \nmarsh.  But he got out again, somehow, to cause a great deal of \ntrouble yet.\n\nThe priests of those days were, generally, the only scholars.  They \nwere learned in many things.  Having to make their own convents and \nmonasteries on uncultivated grounds that were granted to them by \nthe Crown, it was necessary that they should be good farmers and \ngood gardeners, or their lands would have been too poor to support \nthem.  For the decoration of the chapels where they prayed, and for \nthe comfort of the refectories where they ate and drank, it was \nnecessary that there should be good carpenters, good smiths, good \npainters, among them.  For their greater safety in sickness and \naccident, living alone by themselves in solitary places, it was \nnecessary that they should study the virtues of plants and herbs, \nand should know how to dress cuts, burns, scalds, and bruises, and \nhow to set broken limbs.  Accordingly, they taught themselves, and \none another, a great variety of useful arts; and became skilful in \nagriculture, medicine, surgery, and handicraft.  And when they \nwanted the aid of any little piece of machinery, which would be \nsimple enough now, but was marvellous then, to impose a trick upon \nthe poor peasants, they knew very well how to make it; and DID make \nit many a time and often, I have no doubt.\n\nDunstan, Abbot of Glastonbury Abbey, was one of the most sagacious \nof these monks.  He was an ingenious smith, and worked at a forge \nin a little cell.  This cell was made too short to admit of his \nlying at full length when he went to sleep - as if THAT did any \ngood to anybody! - and he used to tell the most extraordinary lies \nabout demons and spirits, who, he said, came there to persecute \nhim.  For instance, he related that one day when he was at work, \nthe devil looked in at the little window, and tried to tempt him to \nlead a life of idle pleasure; whereupon, having his pincers in the \nfire, red hot, he seized the devil by the nose, and put him to such \npain, that his bellowings were heard for miles and miles.  Some \npeople are inclined to think this nonsense a part of Dunstan's \nmadness (for his head never quite recovered the fever), but I think \nnot.  I observe that it induced the ignorant people to consider him \na holy man, and that it made him very powerful.  Which was exactly \nwhat he always wanted.\n\nOn the day of the coronation of the handsome boy-king Edwy, it was \nremarked by ODO, Archbishop of Canterbury (who was a Dane by \nbirth), that the King quietly left the coronation feast, while all \nthe company were there.  Odo, much displeased, sent his friend \nDunstan to seek him.  Dunstan finding him in the company of his \nbeautiful young wife ELGIVA, and her mother ETHELGIVA, a good and \nvirtuous lady, not only grossly abused them, but dragged the young \nKing back into the feasting-hall by force.  Some, again, think \nDunstan did this because the young King's fair wife was his own \ncousin, and the monks objected to people marrying their own \ncousins; but I believe he did it, because he was an imperious, \naudacious, ill-conditioned priest, who, having loved a young lady \nhimself before he became a sour monk, hated all love now, and \neverything belonging to it.\n\nThe young King was quite old enough to feel this insult.  Dunstan \nhad been Treasurer in the last reign, and he soon charged Dunstan \nwith having taken some of the last king's money.  The Glastonbury \nAbbot fled to Belgium (very narrowly escaping some pursuers who \nwere sent to put out his eyes, as you will wish they had, when you \nread what follows), and his abbey was given to priests who were \nmarried; whom he always, both before and afterwards, opposed.  But \nhe quickly conspired with his friend, Odo the Dane, to set up the \nKing's young brother, EDGAR, as his rival for the throne; and, not \ncontent with this revenge, he caused the beautiful queen Elgiva, \nthough a lovely girl of only seventeen or eighteen, to be stolen \nfrom one of the Royal Palaces, branded in the cheek with a red-hot \niron, and sold into slavery in Ireland.  But the Irish people \npitied and befriended her; and they said, 'Let us restore the girl-\nqueen to the boy-king, and make the young lovers happy!' and they \ncured her of her cruel wound, and sent her home as beautiful as \nbefore.  But the villain Dunstan, and that other villain, Odo, \ncaused her to be waylaid at Gloucester as she was joyfully hurrying \nto join her husband, and to be hacked and hewn with swords, and to \nbe barbarously maimed and lamed, and left to die.  When Edwy the \nFair (his people called him so, because he was so young and \nhandsome) heard of her dreadful fate, he died of a broken heart; \nand so the pitiful story of the poor young wife and husband ends!  \nAh!  Better to be two cottagers in these better times, than king \nand queen of England in those bad days, though never so fair!\n\nThen came the boy-king, EDGAR, called the Peaceful, fifteen years \nold.  Dunstan, being still the real king, drove all married priests \nout of the monasteries and abbeys, and replaced them by solitary \nmonks like himself, of the rigid order called the Benedictines.  He \nmade himself Archbishop of Canterbury, for his greater glory; and \nexercised such power over the neighbouring British princes, and so \ncollected them about the King, that once, when the King held his \ncourt at Chester, and went on the river Dee to visit the monastery \nof St. John, the eight oars of his boat were pulled (as the people \nused to delight in relating in stories and songs) by eight crowned \nkings, and steered by the King of England.  As Edgar was very \nobedient to Dunstan and the monks, they took great pains to \nrepresent him as the best of kings.  But he was really profligate, \ndebauched, and vicious.  He once forcibly carried off a young lady \nfrom the convent at Wilton; and Dunstan, pretending to be very much \nshocked, condemned him not to wear his crown upon his head for \nseven years - no great punishment, I dare say, as it can hardly \nhave been a more comfortable ornament to wear, than a stewpan \nwithout a handle.  His marriage with his second wife, ELFRIDA, is \none of the worst events of his reign.  Hearing of the beauty of \nthis lady, he despatched his favourite courtier, ATHELWOLD, to her \nfather's castle in Devonshire, to see if she were really as \ncharming as fame reported.  Now, she was so exceedingly beautiful \nthat Athelwold fell in love with her himself, and married her; but \nhe told the King that she was only rich - not handsome.  The King, \nsuspecting the truth when they came home, resolved to pay the \nnewly-married couple a visit; and, suddenly, told Athelwold to \nprepare for his immediate coming.  Athelwold, terrified, confessed \nto his young wife what he had said and done, and implored her to \ndisguise her beauty by some ugly dress or silly manner, that he \nmight be safe from the King's anger.  She promised that she would; \nbut she was a proud woman, who would far rather have been a queen \nthan the wife of a courtier.  She dressed herself in her best \ndress, and adorned herself with her richest jewels; and when the \nKing came, presently, he discovered the cheat.  So, he caused his \nfalse friend, Athelwold, to be murdered in a wood, and married his \nwidow, this bad Elfrida.  Six or seven years afterwards, he died; \nand was buried, as if he had been all that the monks said he was, \nin the abbey of Glastonbury, which he - or Dunstan for him - had \nmuch enriched.\n\nEngland, in one part of this reign, was so troubled by wolves, \nwhich, driven out of the open country, hid themselves in the \nmountains of Wales when they were not attacking travellers and \nanimals, that the tribute payable by the Welsh people was forgiven \nthem, on condition of their producing, every year, three hundred \nwolves' heads.  And the Welshmen were so sharp upon the wolves, to \nsave their money, that in four years there was not a wolf left.\n\nThen came the boy-king, EDWARD, called the Martyr, from the manner \nof his death.  Elfrida had a son, named ETHELRED, for whom she \nclaimed the throne; but Dunstan did not choose to favour him, and \nhe made Edward king.  The boy was hunting, one day, down in \nDorsetshire, when he rode near to Corfe Castle, where Elfrida and \nEthelred lived.  Wishing to see them kindly, he rode away from his \nattendants and galloped to the castle gate, where he arrived at \ntwilight, and blew his hunting-horn.  'You are welcome, dear King,' \nsaid Elfrida, coming out, with her brightest smiles.  'Pray you \ndismount and enter.'  'Not so, dear madam,' said the King.  'My \ncompany will miss me, and fear that I have met with some harm.  \nPlease you to give me a cup of wine, that I may drink here, in the \nsaddle, to you and to my little brother, and so ride away with the \ngood speed I have made in riding here.'  Elfrida, going in to bring \nthe wine, whispered an armed servant, one of her attendants, who \nstole out of the darkening gateway, and crept round behind the \nKing's horse.  As the King raised the cup to his lips, saying, \n'Health!' to the wicked woman who was smiling on him, and to his \ninnocent brother whose hand she held in hers, and who was only ten \nyears old, this armed man made a spring and stabbed him in the \nback.  He dropped the cup and spurred his horse away; but, soon \nfainting with loss of blood, dropped from the saddle, and, in his \nfall, entangled one of his feet in the stirrup.  The frightened \nhorse dashed on; trailing his rider's curls upon the ground; \ndragging his smooth young face through ruts, and stones, and \nbriers, and fallen leaves, and mud; until the hunters, tracking the \nanimal's course by the King's blood, caught his bridle, and \nreleased the disfigured body.\n\nThen came the sixth and last of the boy-kings, ETHELRED, whom \nElfrida, when he cried out at the sight of his murdered brother \nriding away from the castle gate, unmercifully beat with a torch \nwhich she snatched from one of the attendants.  The people so \ndisliked this boy, on account of his cruel mother and the murder \nshe had done to promote him, that Dunstan would not have had him \nfor king, but would have made EDGITHA, the daughter of the dead \nKing Edgar, and of the lady whom he stole out of the convent at \nWilton, Queen of England, if she would have consented.  But she \nknew the stories of the youthful kings too well, and would not be \npersuaded from the convent where she lived in peace; so, Dunstan \nput Ethelred on the throne, having no one else to put there, and \ngave him the nickname of THE UNREADY - knowing that he wanted \nresolution and firmness.\n\nAt first, Elfrida possessed great influence over the young King, \nbut, as he grew older and came of age, her influence declined.  The \ninfamous woman, not having it in her power to do any more evil, \nthen retired from court, and, according, to the fashion of the \ntime, built churches and monasteries, to expiate her guilt.  As if \na church, with a steeple reaching to the very stars, would have \nbeen any sign of true repentance for the blood of the poor boy, \nwhose murdered form was trailed at his horse's heels!  As if she \ncould have buried her wickedness beneath the senseless stones of \nthe whole world, piled up one upon another, for the monks to live \nin!\n\nAbout the ninth or tenth year of this reign, Dunstan died.  He was \ngrowing old then, but was as stern and artful as ever.  Two \ncircumstances that happened in connexion with him, in this reign of \nEthelred, made a great noise.  Once, he was present at a meeting of \nthe Church, when the question was discussed whether priests should \nhave permission to marry; and, as he sat with his head hung down, \napparently thinking about it, a voice seemed to come out of a \ncrucifix in the room, and warn the meeting to be of his opinion.  \nThis was some juggling of Dunstan's, and was probably his own voice \ndisguised.  But he played off a worse juggle than that, soon \nafterwards; for, another meeting being held on the same subject, \nand he and his supporters being seated on one side of a great room, \nand their opponents on the other, he rose and said, 'To Christ \nhimself, as judge, do I commit this cause!'  Immediately on these \nwords being spoken, the floor where the opposite party sat gave \nway, and some were killed and many wounded.  You may be pretty sure \nthat it had been weakened under Dunstan's direction, and that it \nfell at Dunstan's signal.  HIS part of the floor did not go down.  \nNo, no.  He was too good a workman for that.\n\nWhen he died, the monks settled that he was a Saint, and called him \nSaint Dunstan ever afterwards.  They might just as well have \nsettled that he was a coach-horse, and could just as easily have \ncalled him one.\n\nEthelred the Unready was glad enough, I dare say, to be rid of this \nholy saint; but, left to himself, he was a poor weak king, and his \nreign was a reign of defeat and shame.  The restless Danes, led by \nSWEYN, a son of the King of Denmark who had quarrelled with his \nfather and had been banished from home, again came into England, \nand, year after year, attacked and despoiled large towns.  To coax \nthese sea-kings away, the weak Ethelred paid them money; but, the \nmore money he paid, the more money the Danes wanted.  At first, he \ngave them ten thousand pounds; on their next invasion, sixteen \nthousand pounds; on their next invasion, four and twenty thousand \npounds:  to pay which large sums, the unfortunate English people \nwere heavily taxed.  But, as the Danes still came back and wanted \nmore, he thought it would be a good plan to marry into some \npowerful foreign family that would help him with soldiers.  So, in \nthe year one thousand and two, he courted and married Emma, the \nsister of Richard Duke of Normandy; a lady who was called the \nFlower of Normandy.\n\nAnd now, a terrible deed was done in England, the like of which was \nnever done on English ground before or since.  On the thirteenth of \nNovember, in pursuance of secret instructions sent by the King over \nthe whole country, the inhabitants of every town and city armed, \nand murdered all the Danes who were their neighbours.\n\nYoung and old, babies and soldiers, men and women, every Dane was \nkilled.  No doubt there were among them many ferocious men who had \ndone the English great wrong, and whose pride and insolence, in \nswaggering in the houses of the English and insulting their wives \nand daughters, had become unbearable; but no doubt there were also \namong them many peaceful Christian Danes who had married English \nwomen and become like English men.  They were all slain, even to \nGUNHILDA, the sister of the King of Denmark, married to an English \nlord; who was first obliged to see the murder of her husband and \nher child, and then was killed herself.\n\nWhen the King of the sea-kings heard of this deed of blood, he \nswore that he would have a great revenge.  He raised an army, and a \nmightier fleet of ships than ever yet had sailed to England; and in \nall his army there was not a slave or an old man, but every soldier \nwas a free man, and the son of a free man, and in the prime of \nlife, and sworn to be revenged upon the English nation, for the \nmassacre of that dread thirteenth of November, when his countrymen \nand countrywomen, and the little children whom they loved, were \nkilled with fire and sword.  And so, the sea-kings came to England \nin many great ships, each bearing the flag of its own commander.  \nGolden eagles, ravens, dragons, dolphins, beasts of prey, \nthreatened England from the prows of those ships, as they came \nonward through the water; and were reflected in the shining shields \nthat hung upon their sides.  The ship that bore the standard of the \nKing of the sea-kings was carved and painted like a mighty serpent; \nand the King in his anger prayed that the Gods in whom he trusted \nmight all desert him, if his serpent did not strike its fangs into \nEngland's heart.\n\nAnd indeed it did.  For, the great army landing from the great \nfleet, near Exeter, went forward, laying England waste, and \nstriking their lances in the earth as they advanced, or throwing \nthem into rivers, in token of their making all the island theirs.  \nIn remembrance of the black November night when the Danes were \nmurdered, wheresoever the invaders came, they made the Saxons \nprepare and spread for them great feasts; and when they had eaten \nthose feasts, and had drunk a curse to England with wild \nrejoicings, they drew their swords, and killed their Saxon \nentertainers, and marched on.  For six long years they carried on \nthis war:  burning the crops, farmhouses, barns, mills, granaries; \nkilling the labourers in the fields; preventing the seed from being \nsown in the ground; causing famine and starvation; leaving only \nheaps of ruin and smoking ashes, where they had found rich towns.  \nTo crown this misery, English officers and men deserted, and even \nthe favourites of Ethelred the Unready, becoming traitors, seized \nmany of the English ships, turned pirates against their own \ncountry, and aided by a storm occasioned the loss of nearly the \nwhole English navy.\n\nThere was but one man of note, at this miserable pass, who was true \nto his country and the feeble King.  He was a priest, and a brave \none.  For twenty days, the Archbishop of Canterbury defended that \ncity against its Danish besiegers; and when a traitor in the town \nthrew the gates open and admitted them, he said, in chains, 'I will \nnot buy my life with money that must be extorted from the suffering \npeople.  Do with me what you please!'  Again and again, he steadily \nrefused to purchase his release with gold wrung from the poor.\n\nAt last, the Danes being tired of this, and being assembled at a \ndrunken merry-making, had him brought into the feasting-hall.\n\n'Now, bishop,' they said, 'we want gold!'\n\nHe looked round on the crowd of angry faces; from the shaggy beards \nclose to him, to the shaggy beards against the walls, where men \nwere mounted on tables and forms to see him over the heads of \nothers:  and he knew that his time was come.\n\n'I have no gold,' he said.\n\n'Get it, bishop!' they all thundered.\n\n'That, I have often told you I will not,' said he.\n\nThey gathered closer round him, threatening, but he stood unmoved.  \nThen, one man struck him; then, another; then a cursing soldier \npicked up from a heap in a corner of the hall, where fragments had \nbeen rudely thrown at dinner, a great ox-bone, and cast it at his \nface, from which the blood came spurting forth; then, others ran to \nthe same heap, and knocked him down with other bones, and bruised \nand battered him; until one soldier whom he had baptised (willing, \nas I hope for the sake of that soldier's soul, to shorten the \nsufferings of the good man) struck him dead with his battle-axe.\n\nIf Ethelred had had the heart to emulate the courage of this noble \narchbishop, he might have done something yet.  But he paid the \nDanes forty-eight thousand pounds, instead, and gained so little by \nthe cowardly act, that Sweyn soon afterwards came over to subdue \nall England.  So broken was the attachment of the English people, \nby this time, to their incapable King and their forlorn country \nwhich could not protect them, that they welcomed Sweyn on all \nsides, as a deliverer.  London faithfully stood out, as long as the \nKing was within its walls; but, when he sneaked away, it also \nwelcomed the Dane.  Then, all was over; and the King took refuge \nabroad with the Duke of Normandy, who had already given shelter to \nthe King's wife, once the Flower of that country, and to her \nchildren.\n\nStill, the English people, in spite of their sad sufferings, could \nnot quite forget the great King Alfred and the Saxon race.  When \nSweyn died suddenly, in little more than a month after he had been \nproclaimed King of England, they generously sent to Ethelred, to \nsay that they would have him for their King again, 'if he would \nonly govern them better than he had governed them before.'  The \nUnready, instead of coming himself, sent Edward, one of his sons, \nto make promises for him.  At last, he followed, and the English \ndeclared him King.  The Danes declared CANUTE, the son of Sweyn, \nKing.  Thus, direful war began again, and lasted for three years, \nwhen the Unready died.  And I know of nothing better that he did, \nin all his reign of eight and thirty years.\n\nWas Canute to be King now?  Not over the Saxons, they said; they \nmust have EDMUND, one of the sons of the Unready, who was surnamed \nIRONSIDE, because of his strength and stature.  Edmund and Canute \nthereupon fell to, and fought five battles - O unhappy England, \nwhat a fighting-ground it was! - and then Ironside, who was a big \nman, proposed to Canute, who was a little man, that they two should \nfight it out in single combat.  If Canute had been the big man, he \nwould probably have said yes, but, being the little man, he \ndecidedly said no.  However, he declared that he was willing to \ndivide the kingdom - to take all that lay north of Watling Street, \nas the old Roman military road from Dover to Chester was called, \nand to give Ironside all that lay south of it.  Most men being \nweary of so much bloodshed, this was done.  But Canute soon became \nsole King of England; for Ironside died suddenly within two months.  \nSome think that he was killed, and killed by Canute's orders.  No \none knows.\n\n\n\nCHAPTER V - ENGLAND UNDER CANUTE THE DANE\n\n\n\nCANUTE reigned eighteen years.  He was a merciless King at first.  \nAfter he had clasped the hands of the Saxon chiefs, in token of the \nsincerity with which he swore to be just and good to them in return \nfor their acknowledging him, he denounced and slew many of them, as \nwell as many relations of the late King.  'He who brings me the \nhead of one of my enemies,' he used to say, 'shall be dearer to me \nthan a brother.'  And he was so severe in hunting down his enemies, \nthat he must have got together a pretty large family of these dear \nbrothers.  He was strongly inclined to kill EDMUND and EDWARD, two \nchildren, sons of poor Ironside; but, being afraid to do so in \nEngland, he sent them over to the King of Sweden, with a request \nthat the King would be so good as 'dispose of them.'  If the King \nof Sweden had been like many, many other men of that day, he would \nhave had their innocent throats cut; but he was a kind man, and \nbrought them up tenderly.\n\nNormandy ran much in Canute's mind.  In Normandy were the two \nchildren of the late king - EDWARD and ALFRED by name; and their \nuncle the Duke might one day claim the crown for them.  But the \nDuke showed so little inclination to do so now, that he proposed to \nCanute to marry his sister, the widow of The Unready; who, being \nbut a showy flower, and caring for nothing so much as becoming a \nqueen again, left her children and was wedded to him.\n\nSuccessful and triumphant, assisted by the valour of the English in \nhis foreign wars, and with little strife to trouble him at home, \nCanute had a prosperous reign, and made many improvements.  He was \na poet and a musician.  He grew sorry, as he grew older, for the \nblood he had shed at first; and went to Rome in a Pilgrim's dress, \nby way of washing it out.  He gave a great deal of money to \nforeigners on his journey; but he took it from the English before \nhe started.  On the whole, however, he certainly became a far \nbetter man when he had no opposition to contend with, and was as \ngreat a King as England had known for some time.\n\nThe old writers of history relate how that Canute was one day \ndisgusted with his courtiers for their flattery, and how he caused \nhis chair to be set on the sea-shore, and feigned to command the \ntide as it came up not to wet the edge of his robe, for the land \nwas his; how the tide came up, of course, without regarding him; \nand how he then turned to his flatterers, and rebuked them, saying, \nwhat was the might of any earthly king, to the might of the \nCreator, who could say unto the sea, 'Thus far shalt thou go, and \nno farther!'  We may learn from this, I think, that a little sense \nwill go a long way in a king; and that courtiers are not easily \ncured of flattery, nor kings of a liking for it.  If the courtiers \nof Canute had not known, long before, that the King was fond of \nflattery, they would have known better than to offer it in such \nlarge doses.  And if they had not known that he was vain of this \nspeech (anything but a wonderful speech it seems to me, if a good \nchild had made it), they would not have been at such great pains to \nrepeat it.  I fancy I see them all on the sea-shore together; the \nKing's chair sinking in the sand; the King in a mighty good humour \nwith his own wisdom; and the courtiers pretending to be quite \nstunned by it!\n\nIt is not the sea alone that is bidden to go 'thus far, and no \nfarther.'  The great command goes forth to all the kings upon the \nearth, and went to Canute in the year one thousand and thirty-five, \nand stretched him dead upon his bed.  Beside it, stood his Norman \nwife.  Perhaps, as the King looked his last upon her, he, who had \nso often thought distrustfully of Normandy, long ago, thought once \nmore of the two exiled Princes in their uncle's court, and of the \nlittle favour they could feel for either Danes or Saxons, and of a \nrising cloud in Normandy that slowly moved towards England.\n\n\n\nCHAPTER VI - ENGLAND UNDER HAROLD HAREFOOT, HARDICANUTE, AND EDWARD \nTHE CONFESSOR\n\n\n\nCANUTE left three sons, by name SWEYN, HAROLD, and HARDICANUTE; but \nhis Queen, Emma, once the Flower of Normandy, was the mother of \nonly Hardicanute.  Canute had wished his dominions to be divided \nbetween the three, and had wished Harold to have England; but the \nSaxon people in the South of England, headed by a nobleman with \ngreat possessions, called the powerful EARL GODWIN (who is said to \nhave been originally a poor cow-boy), opposed this, and desired to \nhave, instead, either Hardicanute, or one of the two exiled Princes \nwho were over in Normandy.  It seemed so certain that there would \nbe more bloodshed to settle this dispute, that many people left \ntheir homes, and took refuge in the woods and swamps.  Happily, \nhowever, it was agreed to refer the whole question to a great \nmeeting at Oxford, which decided that Harold should have all the \ncountry north of the Thames, with London for his capital city, and \nthat Hardicanute should have all the south.  The quarrel was so \narranged; and, as Hardicanute was in Denmark troubling himself very \nlittle about anything but eating and getting drunk, his mother and \nEarl Godwin governed the south for him.\n\nThey had hardly begun to do so, and the trembling people who had \nhidden themselves were scarcely at home again, when Edward, the \nelder of the two exiled Princes, came over from Normandy with a few \nfollowers, to claim the English Crown.  His mother Emma, however, \nwho only cared for her last son Hardicanute, instead of assisting \nhim, as he expected, opposed him so strongly with all her influence \nthat he was very soon glad to get safely back.  His brother Alfred \nwas not so fortunate.  Believing in an affectionate letter, written \nsome time afterwards to him and his brother, in his mother's name \n(but whether really with or without his mother's knowledge is now \nuncertain), he allowed himself to be tempted over to England, with \na good force of soldiers, and landing on the Kentish coast, and \nbeing met and welcomed by Earl Godwin, proceeded into Surrey, as \nfar as the town of Guildford.  Here, he and his men halted in the \nevening to rest, having still the Earl in their company; who had \nordered lodgings and good cheer for them.  But, in the dead of the \nnight, when they were off their guard, being divided into small \nparties sleeping soundly after a long march and a plentiful supper \nin different houses, they were set upon by the King's troops, and \ntaken prisoners.  Next morning they were drawn out in a line, to \nthe number of six hundred men, and were barbarously tortured and \nkilled; with the exception of every tenth man, who was sold into \nslavery.  As to the wretched Prince Alfred, he was stripped naked, \ntied to a horse and sent away into the Isle of Ely, where his eyes \nwere torn out of his head, and where in a few days he miserably \ndied.  I am not sure that the Earl had wilfully entrapped him, but \nI suspect it strongly.\n\nHarold was now King all over England, though it is doubtful whether \nthe Archbishop of Canterbury (the greater part of the priests were \nSaxons, and not friendly to the Danes) ever consented to crown him.  \nCrowned or uncrowned, with the Archbishop's leave or without it, he \nwas King for four years:  after which short reign he died, and was \nburied; having never done much in life but go a hunting.  He was \nsuch a fast runner at this, his favourite sport, that the people \ncalled him Harold Harefoot.\n\nHardicanute was then at Bruges, in Flanders, plotting, with his \nmother (who had gone over there after the cruel murder of Prince \nAlfred), for the invasion of England.  The Danes and Saxons, \nfinding themselves without a King, and dreading new disputes, made \ncommon cause, and joined in inviting him to occupy the Throne.  He \nconsented, and soon troubled them enough; for he brought over \nnumbers of Danes, and taxed the people so insupportably to enrich \nthose greedy favourites that there were many insurrections, \nespecially one at Worcester, where the citizens rose and killed his \ntax-collectors; in revenge for which he burned their city.  He was \na brutal King, whose first public act was to order the dead body of \npoor Harold Harefoot to be dug up, beheaded, and thrown into the \nriver.  His end was worthy of such a beginning.  He fell down \ndrunk, with a goblet of wine in his hand, at a wedding-feast at \nLambeth, given in honour of the marriage of his standard-bearer, a \nDane named TOWED THE PROUD.  And he never spoke again.\n\nEDWARD, afterwards called by the monks THE CONFESSOR, succeeded; \nand his first act was to oblige his mother Emma, who had favoured \nhim so little, to retire into the country; where she died some ten \nyears afterwards.  He was the exiled prince whose brother Alfred \nhad been so foully killed.  He had been invited over from Normandy \nby Hardicanute, in the course of his short reign of two years, and \nhad been handsomely treated at court.  His cause was now favoured \nby the powerful Earl Godwin, and he was soon made King.  This Earl \nhad been suspected by the people, ever since Prince Alfred's cruel \ndeath; he had even been tried in the last reign for the Prince's \nmurder, but had been pronounced not guilty; chiefly, as it was \nsupposed, because of a present he had made to the swinish King, of \na gilded ship with a figure-head of solid gold, and a crew of \neighty splendidly armed men.  It was his interest to help the new \nKing with his power, if the new King would help him against the \npopular distrust and hatred.  So they made a bargain.  Edward the \nConfessor got the Throne.  The Earl got more power and more land, \nand his daughter Editha was made queen; for it was a part of their \ncompact that the King should take her for his wife.\n\nBut, although she was a gentle lady, in all things worthy to be \nbeloved - good, beautiful, sensible, and kind - the King from the \nfirst neglected her.  Her father and her six proud brothers, \nresenting this cold treatment, harassed the King greatly by \nexerting all their power to make him unpopular.  Having lived so \nlong in Normandy, he preferred the Normans to the English.  He made \na Norman Archbishop, and Norman Bishops; his great officers and \nfavourites were all Normans; he introduced the Norman fashions and \nthe Norman language; in imitation of the state custom of Normandy, \nhe attached a great seal to his state documents, instead of merely \nmarking them, as the Saxon Kings had done, with the sign of the \ncross - just as poor people who have never been taught to write, \nnow make the same mark for their names.  All this, the powerful \nEarl Godwin and his six proud sons represented to the people as \ndisfavour shown towards the English; and thus they daily increased \ntheir own power, and daily diminished the power of the King.\n\nThey were greatly helped by an event that occurred when he had \nreigned eight years.  Eustace, Earl of Bologne, who had married the \nKing's sister, came to England on a visit.  After staying at the \ncourt some time, he set forth, with his numerous train of \nattendants, to return home.  They were to embark at Dover.  \nEntering that peaceful town in armour, they took possession of the \nbest houses, and noisily demanded to be lodged and entertained \nwithout payment.  One of the bold men of Dover, who would not \nendure to have these domineering strangers jingling their heavy \nswords and iron corselets up and down his house, eating his meat \nand drinking his strong liquor, stood in his doorway and refused \nadmission to the first armed man who came there.  The armed man \ndrew, and wounded him.  The man of Dover struck the armed man dead.  \nIntelligence of what he had done, spreading through the streets to \nwhere the Count Eustace and his men were standing by their horses, \nbridle in hand, they passionately mounted, galloped to the house, \nsurrounded it, forced their way in (the doors and windows being \nclosed when they came up), and killed the man of Dover at his own \nfireside.  They then clattered through the streets, cutting down \nand riding over men, women, and children.  This did not last long, \nyou may believe.  The men of Dover set upon them with great fury, \nkilled nineteen of the foreigners, wounded many more, and, \nblockading the road to the port so that they should not embark, \nbeat them out of the town by the way they had come.  Hereupon, \nCount Eustace rides as hard as man can ride to Gloucester, where \nEdward is, surrounded by Norman monks and Norman lords.  'Justice!' \ncries the Count, 'upon the men of Dover, who have set upon and \nslain my people!'  The King sends immediately for the powerful Earl \nGodwin, who happens to be near; reminds him that Dover is under his \ngovernment; and orders him to repair to Dover and do military \nexecution on the inhabitants.  'It does not become you,' says the \nproud Earl in reply, 'to condemn without a hearing those whom you \nhave sworn to protect.  I will not do it.'\n\nThe King, therefore, summoned the Earl, on pain of banishment and \nloss of his titles and property, to appear before the court to \nanswer this disobedience.  The Earl refused to appear.  He, his \neldest son Harold, and his second son Sweyn, hastily raised as many \nfighting men as their utmost power could collect, and demanded to \nhave Count Eustace and his followers surrendered to the justice of \nthe country.  The King, in his turn, refused to give them up, and \nraised a strong force.  After some treaty and delay, the troops of \nthe great Earl and his sons began to fall off.  The Earl, with a \npart of his family and abundance of treasure, sailed to Flanders; \nHarold escaped to Ireland; and the power of the great family was \nfor that time gone in England.  But, the people did not forget \nthem.\n\nThen, Edward the Confessor, with the true meanness of a mean \nspirit, visited his dislike of the once powerful father and sons \nupon the helpless daughter and sister, his unoffending wife, whom \nall who saw her (her husband and his monks excepted) loved.  He \nseized rapaciously upon her fortune and her jewels, and allowing \nher only one attendant, confined her in a gloomy convent, of which \na sister of his - no doubt an unpleasant lady after his own heart - \nwas abbess or jailer.\n\nHaving got Earl Godwin and his six sons well out of his way, the \nKing favoured the Normans more than ever.  He invited over WILLIAM, \nDUKE OF NORMANDY, the son of that Duke who had received him and his \nmurdered brother long ago, and of a peasant girl, a tanner's \ndaughter, with whom that Duke had fallen in love for her beauty as \nhe saw her washing clothes in a brook.  William, who was a great \nwarrior, with a passion for fine horses, dogs, and arms, accepted \nthe invitation; and the Normans in England, finding themselves more \nnumerous than ever when he arrived with his retinue, and held in \nstill greater honour at court than before, became more and more \nhaughty towards the people, and were more and more disliked by \nthem.\n\nThe old Earl Godwin, though he was abroad, knew well how the people \nfelt; for, with part of the treasure he had carried away with him, \nhe kept spies and agents in his pay all over England.\n\nAccordingly, he thought the time was come for fitting out a great \nexpedition against the Norman-loving King.  With it, he sailed to \nthe Isle of Wight, where he was joined by his son Harold, the most \ngallant and brave of all his family.  And so the father and son \ncame sailing up the Thames to Southwark; great numbers of the \npeople declaring for them, and shouting for the English Earl and \nthe English Harold, against the Norman favourites!\n\nThe King was at first as blind and stubborn as kings usually have \nbeen whensoever they have been in the hands of monks.  But the \npeople rallied so thickly round the old Earl and his son, and the \nold Earl was so steady in demanding without bloodshed the \nrestoration of himself and his family to their rights, that at last \nthe court took the alarm.  The Norman Archbishop of Canterbury, and \nthe Norman Bishop of London, surrounded by their retainers, fought \ntheir way out of London, and escaped from Essex to France in a \nfishing-boat.  The other Norman favourites dispersed in all \ndirections.  The old Earl and his sons (except Sweyn, who had \ncommitted crimes against the law) were restored to their \npossessions and dignities.  Editha, the virtuous and lovely Queen \nof the insensible King, was triumphantly released from her prison, \nthe convent, and once more sat in her chair of state, arrayed in \nthe jewels of which, when she had no champion to support her \nrights, her cold-blooded husband had deprived her.\n\nThe old Earl Godwin did not long enjoy his restored fortune.  He \nfell down in a fit at the King's table, and died upon the third day \nafterwards.  Harold succeeded to his power, and to a far higher \nplace in the attachment of the people than his father had ever \nheld.  By his valour he subdued the King's enemies in many bloody \nfights.  He was vigorous against rebels in Scotland - this was the \ntime when Macbeth slew Duncan, upon which event our English \nShakespeare, hundreds of years afterwards, wrote his great tragedy; \nand he killed the restless Welsh King GRIFFITH, and brought his \nhead to England.\n\nWhat Harold was doing at sea, when he was driven on the French \ncoast by a tempest, is not at all certain; nor does it at all \nmatter.  That his ship was forced by a storm on that shore, and \nthat he was taken prisoner, there is no doubt.  In those barbarous \ndays, all shipwrecked strangers were taken prisoners, and obliged \nto pay ransom.  So, a certain Count Guy, who was the Lord of \nPonthieu where Harold's disaster happened, seized him, instead of \nrelieving him like a hospitable and Christian lord as he ought to \nhave done, and expected to make a very good thing of it.\n\nBut Harold sent off immediately to Duke William of Normandy, \ncomplaining of this treatment; and the Duke no sooner heard of it \nthan he ordered Harold to be escorted to the ancient town of Rouen, \nwhere he then was, and where he received him as an honoured guest.  \nNow, some writers tell us that Edward the Confessor, who was by \nthis time old and had no children, had made a will, appointing Duke \nWilliam of Normandy his successor, and had informed the Duke of his \nhaving done so.  There is no doubt that he was anxious about his \nsuccessor; because he had even invited over, from abroad, EDWARD \nTHE OUTLAW, a son of Ironside, who had come to England with his \nwife and three children, but whom the King had strangely refused to \nsee when he did come, and who had died in London suddenly (princes \nwere terribly liable to sudden death in those days), and had been \nburied in St. Paul's Cathedral.  The King might possibly have made \nsuch a will; or, having always been fond of the Normans, he might \nhave encouraged Norman William to aspire to the English crown, by \nsomething that he said to him when he was staying at the English \ncourt.  But, certainly William did now aspire to it; and knowing \nthat Harold would be a powerful rival, he called together a great \nassembly of his nobles, offered Harold his daughter ADELE in \nmarriage, informed him that he meant on King Edward's death to \nclaim the English crown as his own inheritance, and required Harold \nthen and there to swear to aid him.  Harold, being in the Duke's \npower, took this oath upon the Missal, or Prayer-book.  It is a \ngood example of the superstitions of the monks, that this Missal, \ninstead of being placed upon a table, was placed upon a tub; which, \nwhen Harold had sworn, was uncovered, and shown to be full of dead \nmen's bones - bones, as the monks pretended, of saints.  This was \nsupposed to make Harold's oath a great deal more impressive and \nbinding.  As if the great name of the Creator of Heaven and earth \ncould be made more solemn by a knuckle-bone, or a double-tooth, or \na finger-nail, of Dunstan!\n\nWithin a week or two after Harold's return to England, the dreary \nold Confessor was found to be dying.  After wandering in his mind \nlike a very weak old man, he died.  As he had put himself entirely \nin the hands of the monks when he was alive, they praised him \nlustily when he was dead.  They had gone so far, already, as to \npersuade him that he could work miracles; and had brought people \nafflicted with a bad disorder of the skin, to him, to be touched \nand cured.  This was called 'touching for the King's Evil,' which \nafterwards became a royal custom.  You know, however, Who really \ntouched the sick, and healed them; and you know His sacred name is \nnot among the dusty line of human kings.\n\n\n\nCHAPTER VII - ENGLAND UNDER HAROLD THE SECOND, AND CONQUERED BY THE \nNORMANS\n\n\n\nHAROLD was crowned King of England on the very day of the maudlin \nConfessor's funeral.  He had good need to be quick about it.  When \nthe news reached Norman William, hunting in his park at Rouen, he \ndropped his bow, returned to his palace, called his nobles to \ncouncil, and presently sent ambassadors to Harold, calling on him \nto keep his oath and resign the Crown.  Harold would do no such \nthing.  The barons of France leagued together round Duke William \nfor the invasion of England.  Duke William promised freely to \ndistribute English wealth and English lands among them.  The Pope \nsent to Normandy a consecrated banner, and a ring containing a hair \nwhich he warranted to have grown on the head of Saint Peter.  He \nblessed the enterprise; and cursed Harold; and requested that the \nNormans would pay 'Peter's Pence' - or a tax to himself of a penny \na year on every house - a little more regularly in future, if they \ncould make it convenient.\n\nKing Harold had a rebel brother in Flanders, who was a vassal of \nHAROLD HARDRADA, King of Norway.  This brother, and this Norwegian \nKing, joining their forces against England, with Duke William's \nhelp, won a fight in which the English were commanded by two \nnobles; and then besieged York.  Harold, who was waiting for the \nNormans on the coast at Hastings, with his army, marched to \nStamford Bridge upon the river Derwent to give them instant battle.\n\nHe found them drawn up in a hollow circle, marked out by their \nshining spears.  Riding round this circle at a distance, to survey \nit, he saw a brave figure on horseback, in a blue mantle and a \nbright helmet, whose horse suddenly stumbled and threw him.\n\n'Who is that man who has fallen?' Harold asked of one of his \ncaptains.\n\n'The King of Norway,' he replied.\n\n'He is a tall and stately king,' said Harold, 'but his end is \nnear.'\n\nHe added, in a little while, 'Go yonder to my brother, and tell \nhim, if he withdraw his troops, he shall be Earl of Northumberland, \nand rich and powerful in England.'\n\nThe captain rode away and gave the message.\n\n'What will he give to my friend the King of Norway?' asked the \nbrother.\n\n'Seven feet of earth for a grave,' replied the captain.\n\n'No more?' returned the brother, with a smile.\n\n'The King of Norway being a tall man, perhaps a little more,' \nreplied the captain.\n\n'Ride back!' said the brother, 'and tell King Harold to make ready \nfor the fight!'\n\nHe did so, very soon.  And such a fight King Harold led against \nthat force, that his brother, and the Norwegian King, and every \nchief of note in all their host, except the Norwegian King's son, \nOlave, to whom he gave honourable dismissal, were left dead upon \nthe field.  The victorious army marched to York.  As King Harold \nsat there at the feast, in the midst of all his company, a stir was \nheard at the doors; and messengers all covered with mire from \nriding far and fast through broken ground came hurrying in, to \nreport that the Normans had landed in England.\n\nThe intelligence was true.  They had been tossed about by contrary \nwinds, and some of their ships had been wrecked.  A part of their \nown shore, to which they had been driven back, was strewn with \nNorman bodies.  But they had once more made sail, led by the Duke's \nown galley, a present from his wife, upon the prow whereof the \nfigure of a golden boy stood pointing towards England.  By day, the \nbanner of the three Lions of Normandy, the diverse coloured sails, \nthe gilded vans, the many decorations of this gorgeous ship, had \nglittered in the sun and sunny water; by night, a light had \nsparkled like a star at her mast-head.  And now, encamped near \nHastings, with their leader lying in the old Roman castle of \nPevensey, the English retiring in all directions, the land for \nmiles around scorched and smoking, fired and pillaged, was the \nwhole Norman power, hopeful and strong on English ground.\n\nHarold broke up the feast and hurried to London.  Within a week, \nhis army was ready.  He sent out spies to ascertain the Norman \nstrength.  William took them, caused them to be led through his \nwhole camp, and then dismissed.  'The Normans,' said these spies to \nHarold, 'are not bearded on the upper lip as we English are, but \nare shorn.  They are priests.'  'My men,' replied Harold, with a \nlaugh, 'will find those priests good soldiers!'\n\n'The Saxons,' reported Duke William's outposts of Norman soldiers, \nwho were instructed to retire as King Harold's army advanced, 'rush \non us through their pillaged country with the fury of madmen.'\n\n'Let them come, and come soon!' said Duke William.\n\nSome proposals for a reconciliation were made, but were soon \nabandoned.  In the middle of the month of October, in the year one \nthousand and sixty-six, the Normans and the English came front to \nfront.  All night the armies lay encamped before each other, in a \npart of the country then called Senlac, now called (in remembrance \nof them) Battle.  With the first dawn of day, they arose.  There, \nin the faint light, were the English on a hill; a wood behind them; \nin their midst, the Royal banner, representing a fighting warrior, \nwoven in gold thread, adorned with precious stones; beneath the \nbanner, as it rustled in the wind, stood King Harold on foot, with \ntwo of his remaining brothers by his side; around them, still and \nsilent as the dead, clustered the whole English army - every \nsoldier covered by his shield, and bearing in his hand his dreaded \nEnglish battle-axe.\n\nOn an opposite hill, in three lines, archers, foot-soldiers, \nhorsemen, was the Norman force.  Of a sudden, a great battle-cry, \n'God help us!' burst from the Norman lines.  The English answered \nwith their own battle-cry, 'God's Rood!  Holy Rood!'  The Normans \nthen came sweeping down the hill to attack the English.\n\nThere was one tall Norman Knight who rode before the Norman army on \na prancing horse, throwing up his heavy sword and catching it, and \nsinging of the bravery of his countrymen.  An English Knight, who \nrode out from the English force to meet him, fell by this Knight's \nhand.  Another English Knight rode out, and he fell too.  But then \na third rode out, and killed the Norman.  This was in the first \nbeginning of the fight.  It soon raged everywhere.\n\nThe English, keeping side by side in a great mass, cared no more \nfor the showers of Norman arrows than if they had been showers of \nNorman rain.  When the Norman horsemen rode against them, with \ntheir battle-axes they cut men and horses down.  The Normans gave \nway.  The English pressed forward.  A cry went forth among the \nNorman troops that Duke William was killed.  Duke William took off \nhis helmet, in order that his face might be distinctly seen, and \nrode along the line before his men.  This gave them courage.  As \nthey turned again to face the English, some of their Norman horse \ndivided the pursuing body of the English from the rest, and thus \nall that foremost portion of the English army fell, fighting \nbravely.  The main body still remaining firm, heedless of the \nNorman arrows, and with their battle-axes cutting down the crowds \nof horsemen when they rode up, like forests of young trees, Duke \nWilliam pretended to retreat.  The eager English followed.  The \nNorman army closed again, and fell upon them with great slaughter.\n\n'Still,' said Duke William, 'there are thousands of the English, \nfirms as rocks around their King.  Shoot upward, Norman archers, \nthat your arrows may fall down upon their faces!'\n\nThe sun rose high, and sank, and the battle still raged.  Through \nall the wild October day, the clash and din resounded in the air.  \nIn the red sunset, and in the white moonlight, heaps upon heaps of \ndead men lay strewn, a dreadful spectacle, all over the ground.\n\nKing Harold, wounded with an arrow in the eye, was nearly blind.  \nHis brothers were already killed.  Twenty Norman Knights, whose \nbattered armour had flashed fiery and golden in the sunshine all \nday long, and now looked silvery in the moonlight, dashed forward \nto seize the Royal banner from the English Knights and soldiers, \nstill faithfully collected round their blinded King.  The King \nreceived a mortal wound, and dropped.  The English broke and fled.  \nThe Normans rallied, and the day was lost.\n\nO what a sight beneath the moon and stars, when lights were shining \nin the tent of the victorious Duke William, which was pitched near \nthe spot where Harold fell - and he and his knights were carousing, \nwithin - and soldiers with torches, going slowly to and fro, \nwithout, sought for the corpse of Harold among piles of dead - and \nthe Warrior, worked in golden thread and precious stones, lay low, \nall torn and soiled with blood - and the three Norman Lions kept \nwatch over the field!\n\n\n\nCHAPTER VIII - ENGLAND UNDER WILLIAM THE FIRST, THE NORMAN \nCONQUEROR\n\n\n\nUPON the ground where the brave Harold fell, William the Norman \nafterwards founded an abbey, which, under the name of Battle Abbey, \nwas a rich and splendid place through many a troubled year, though \nnow it is a grey ruin overgrown with ivy.  But the first work he \nhad to do, was to conquer the English thoroughly; and that, as you \nknow by this time, was hard work for any man.\n\nHe ravaged several counties; he burned and plundered many towns; he \nlaid waste scores upon scores of miles of pleasant country; he \ndestroyed innumerable lives.  At length STIGAND, Archbishop of \nCanterbury, with other representatives of the clergy and the \npeople, went to his camp, and submitted to him.  EDGAR, the \ninsignificant son of Edmund Ironside, was proclaimed King by \nothers, but nothing came of it.  He fled to Scotland afterwards, \nwhere his sister, who was young and beautiful, married the Scottish \nKing.  Edgar himself was not important enough for anybody to care \nmuch about him.\n\nOn Christmas Day, William was crowned in Westminster Abbey, under \nthe title of WILLIAM THE FIRST; but he is best known as WILLIAM THE \nCONQUEROR.  It was a strange coronation.  One of the bishops who \nperformed the ceremony asked the Normans, in French, if they would \nhave Duke William for their king?  They answered Yes.  Another of \nthe bishops put the same question to the Saxons, in English.  They \ntoo answered Yes, with a loud shout.  The noise being heard by a \nguard of Norman horse-soldiers outside, was mistaken for resistance \non the part of the English.  The guard instantly set fire to the \nneighbouring houses, and a tumult ensued; in the midst of which the \nKing, being left alone in the Abbey, with a few priests (and they \nall being in a terrible fright together), was hurriedly crowned.  \nWhen the crown was placed upon his head, he swore to govern the \nEnglish as well as the best of their own monarchs.  I dare say you \nthink, as I do, that if we except the Great Alfred, he might pretty \neasily have done that.\n\nNumbers of the English nobles had been killed in the last \ndisastrous battle.  Their estates, and the estates of all the \nnobles who had fought against him there, King William seized upon, \nand gave to his own Norman knights and nobles.  Many great English \nfamilies of the present time acquired their English lands in this \nway, and are very proud of it.\n\nBut what is got by force must be maintained by force.  These nobles \nwere obliged to build castles all over England, to defend their new \nproperty; and, do what he would, the King could neither soothe nor \nquell the nation as he wished.  He gradually introduced the Norman \nlanguage and the Norman customs; yet, for a long time the great \nbody of the English remained sullen and revengeful.  On his going \nover to Normandy, to visit his subjects there, the oppressions of \nhis half-brother ODO, whom he left in charge of his English \nkingdom, drove the people mad.  The men of Kent even invited over, \nto take possession of Dover, their old enemy Count Eustace of \nBoulogne, who had led the fray when the Dover man was slain at his \nown fireside.  The men of Hereford, aided by the Welsh, and \ncommanded by a chief named EDRIC THE WILD, drove the Normans out of \ntheir country.  Some of those who had been dispossessed of their \nlands, banded together in the North of England; some, in Scotland; \nsome, in the thick woods and marshes; and whensoever they could \nfall upon the Normans, or upon the English who had submitted to the \nNormans, they fought, despoiled, and murdered, like the desperate \noutlaws that they were.  Conspiracies were set on foot for a \ngeneral massacre of the Normans, like the old massacre of the \nDanes.  In short, the English were in a murderous mood all through \nthe kingdom.\n\nKing William, fearing he might lose his conquest, came back, and \ntried to pacify the London people by soft words.  He then set forth \nto repress the country people by stern deeds.  Among the towns \nwhich he besieged, and where he killed and maimed the inhabitants \nwithout any distinction, sparing none, young or old, armed or \nunarmed, were Oxford, Warwick, Leicester, Nottingham, Derby, \nLincoln, York.  In all these places, and in many others, fire and \nsword worked their utmost horrors, and made the land dreadful to \nbehold.  The streams and rivers were discoloured with blood; the \nsky was blackened with smoke; the fields were wastes of ashes; the \nwaysides were heaped up with dead.  Such are the fatal results of \nconquest and ambition!  Although William was a harsh and angry man, \nI do not suppose that he deliberately meant to work this shocking \nruin, when he invaded England.  But what he had got by the strong \nhand, he could only keep by the strong hand, and in so doing he \nmade England a great grave.\n\nTwo sons of Harold, by name EDMUND and GODWIN, came over from \nIreland, with some ships, against the Normans, but were defeated.  \nThis was scarcely done, when the outlaws in the woods so harassed \nYork, that the Governor sent to the King for help.  The King \ndespatched a general and a large force to occupy the town of \nDurham.  The Bishop of that place met the general outside the town, \nand warned him not to enter, as he would be in danger there.  The \ngeneral cared nothing for the warning, and went in with all his \nmen.  That night, on every hill within sight of Durham, signal \nfires were seen to blaze.  When the morning dawned, the English, \nwho had assembled in great strength, forced the gates, rushed into \nthe town, and slew the Normans every one.  The English afterwards \nbesought the Danes to come and help them.  The Danes came, with two \nhundred and forty ships.  The outlawed nobles joined them; they \ncaptured York, and drove the Normans out of that city.  Then, \nWilliam bribed the Danes to go away; and took such vengeance on the \nEnglish, that all the former fire and sword, smoke and ashes, death \nand ruin, were nothing compared with it.  In melancholy songs, and \ndoleful stories, it was still sung and told by cottage fires on \nwinter evenings, a hundred years afterwards, how, in those dreadful \ndays of the Normans, there was not, from the River Humber to the \nRiver Tyne, one inhabited village left, nor one cultivated field - \nhow there was nothing but a dismal ruin, where the human creatures \nand the beasts lay dead together.\n\nThe outlaws had, at this time, what they called a Camp of Refuge, \nin the midst of the fens of Cambridgeshire.  Protected by those \nmarshy grounds which were difficult of approach, they lay among the \nreeds and rushes, and were hidden by the mists that rose up from \nthe watery earth.  Now, there also was, at that time, over the sea \nin Flanders, an Englishman named HEREWARD, whose father had died in \nhis absence, and whose property had been given to a Norman.  When \nhe heard of this wrong that had been done him (from such of the \nexiled English as chanced to wander into that country), he longed \nfor revenge; and joining the outlaws in their camp of refuge, \nbecame their commander.  He was so good a soldier, that the Normans \nsupposed him to be aided by enchantment.  William, even after he \nhad made a road three miles in length across the Cambridgeshire \nmarshes, on purpose to attack this supposed enchanter, thought it \nnecessary to engage an old lady, who pretended to be a sorceress, \nto come and do a little enchantment in the royal cause.  For this \npurpose she was pushed on before the troops in a wooden tower; but \nHereward very soon disposed of this unfortunate sorceress, by \nburning her, tower and all.  The monks of the convent of Ely near \nat hand, however, who were fond of good living, and who found it \nvery uncomfortable to have the country blockaded and their supplies \nof meat and drink cut off, showed the King a secret way of \nsurprising the camp.  So Hereward was soon defeated.  Whether he \nafterwards died quietly, or whether he was killed after killing \nsixteen of the men who attacked him (as some old rhymes relate that \nhe did), I cannot say.  His defeat put an end to the Camp of \nRefuge; and, very soon afterwards, the King, victorious both in \nScotland and in England, quelled the last rebellious English noble.  \nHe then surrounded himself with Norman lords, enriched by the \nproperty of English nobles; had a great survey made of all the land \nin England, which was entered as the property of its new owners, on \na roll called Doomsday Book; obliged the people to put out their \nfires and candles at a certain hour every night, on the ringing of \na bell which was called The Curfew; introduced the Norman dresses \nand manners; made the Normans masters everywhere, and the English, \nservants; turned out the English bishops, and put Normans in their \nplaces; and showed himself to be the Conqueror indeed.\n\nBut, even with his own Normans, he had a restless life.  They were \nalways hungering and thirsting for the riches of the English; and \nthe more he gave, the more they wanted.  His priests were as greedy \nas his soldiers.  We know of only one Norman who plainly told his \nmaster, the King, that he had come with him to England to do his \nduty as a faithful servant, and that property taken by force from \nother men had no charms for him.  His name was GUILBERT.  We should \nnot forget his name, for it is good to remember and to honour \nhonest men.\n\nBesides all these troubles, William the Conqueror was troubled by \nquarrels among his sons.  He had three living.  ROBERT, called \nCURTHOSE, because of his short legs; WILLIAM, called RUFUS or the \nRed, from the colour of his hair; and HENRY, fond of learning, and \ncalled, in the Norman language, BEAUCLERC, or Fine-Scholar.  When \nRobert grew up, he asked of his father the government of Normandy, \nwhich he had nominally possessed, as a child, under his mother, \nMATILDA.  The King refusing to grant it, Robert became jealous and \ndiscontented; and happening one day, while in this temper, to be \nridiculed by his brothers, who threw water on him from a balcony as \nhe was walking before the door, he drew his sword, rushed up-\nstairs, and was only prevented by the King himself from putting \nthem to death.  That same night, he hotly departed with some \nfollowers from his father's court, and endeavoured to take the \nCastle of Rouen by surprise.  Failing in this, he shut himself up \nin another Castle in Normandy, which the King besieged, and where \nRobert one day unhorsed and nearly killed him without knowing who \nhe was.  His submission when he discovered his father, and the \nintercession of the queen and others, reconciled them; but not \nsoundly; for Robert soon strayed abroad, and went from court to \ncourt with his complaints.  He was a gay, careless, thoughtless \nfellow, spending all he got on musicians and dancers; but his \nmother loved him, and often, against the King's command, supplied \nhim with money through a messenger named SAMSON.  At length the \nincensed King swore he would tear out Samson's eyes; and Samson, \nthinking that his only hope of safety was in becoming a monk, \nbecame one, went on such errands no more, and kept his eyes in his \nhead.\n\nAll this time, from the turbulent day of his strange coronation, \nthe Conqueror had been struggling, you see, at any cost of cruelty \nand bloodshed, to maintain what he had seized.  All his reign, he \nstruggled still, with the same object ever before him.  He was a \nstern, bold man, and he succeeded in it.\n\nHe loved money, and was particular in his eating, but he had only \nleisure to indulge one other passion, and that was his love of \nhunting.  He carried it to such a height that he ordered whole \nvillages and towns to be swept away to make forests for the deer.  \nNot satisfied with sixty-eight Royal Forests, he laid waste an \nimmense district, to form another in Hampshire, called the New \nForest.  The many thousands of miserable peasants who saw their \nlittle houses pulled down, and themselves and children turned into \nthe open country without a shelter, detested him for his merciless \naddition to their many sufferings; and when, in the twenty-first \nyear of his reign (which proved to be the last), he went over to \nRouen, England was as full of hatred against him, as if every leaf \non every tree in all his Royal Forests had been a curse upon his \nhead.  In the New Forest, his son Richard (for he had four sons) \nhad been gored to death by a Stag; and the people said that this so \ncruelly-made Forest would yet be fatal to others of the Conqueror's \nrace.\n\nHe was engaged in a dispute with the King of France about some \nterritory.  While he stayed at Rouen, negotiating with that King, \nhe kept his bed and took medicines:  being advised by his \nphysicians to do so, on account of having grown to an unwieldy \nsize.  Word being brought to him that the King of France made light \nof this, and joked about it, he swore in a great rage that he \nshould rue his jests.  He assembled his army, marched into the \ndisputed territory, burnt - his old way! - the vines, the crops, \nand fruit, and set the town of Mantes on fire.  But, in an evil \nhour; for, as he rode over the hot ruins, his horse, setting his \nhoofs upon some burning embers, started, threw him forward against \nthe pommel of the saddle, and gave him a mortal hurt.  For six \nweeks he lay dying in a monastery near Rouen, and then made his \nwill, giving England to William, Normandy to Robert, and five \nthousand pounds to Henry.  And now, his violent deeds lay heavy on \nhis mind.  He ordered money to be given to many English churches \nand monasteries, and - which was much better repentance - released \nhis prisoners of state, some of whom had been confined in his \ndungeons twenty years.\n\nIt was a September morning, and the sun was rising, when the King \nwas awakened from slumber by the sound of a church bell.  'What \nbell is that?' he faintly asked.  They told him it was the bell of \nthe chapel of Saint Mary.  'I commend my soul,' said he, 'to Mary!' \nand died.\n\nThink of his name, The Conqueror, and then consider how he lay in \ndeath!  The moment he was dead, his physicians, priests, and \nnobles, not knowing what contest for the throne might now take \nplace, or what might happen in it, hastened away, each man for \nhimself and his own property; the mercenary servants of the court \nbegan to rob and plunder; the body of the King, in the indecent \nstrife, was rolled from the bed, and lay alone, for hours, upon the \nground.  O Conqueror, of whom so many great names are proud now, of \nwhom so many great names thought nothing then, it were better to \nhave conquered one true heart, than England!\n\nBy-and-by, the priests came creeping in with prayers and candles; \nand a good knight, named HERLUIN, undertook (which no one else \nwould do) to convey the body to Caen, in Normandy, in order that it \nmight be buried in St. Stephen's church there, which the Conqueror \nhad founded.  But fire, of which he had made such bad use in his \nlife, seemed to follow him of itself in death.  A great \nconflagration broke out in the town when the body was placed in the \nchurch; and those present running out to extinguish the flames, it \nwas once again left alone.\n\nIt was not even buried in peace.  It was about to be let down, in \nits Royal robes, into a tomb near the high altar, in presence of a \ngreat concourse of people, when a loud voice in the crowd cried \nout, 'This ground is mine!  Upon it, stood my father's house.  This \nKing despoiled me of both ground and house to build this church.  \nIn the great name of GOD, I here forbid his body to be covered with \nthe earth that is my right!'  The priests and bishops present, \nknowing the speaker's right, and knowing that the King had often \ndenied him justice, paid him down sixty shillings for the grave.  \nEven then, the corpse was not at rest.  The tomb was too small, and \nthey tried to force it in.  It broke, a dreadful smell arose, the \npeople hurried out into the air, and, for the third time, it was \nleft alone.\n\nWhere were the Conqueror's three sons, that they were not at their \nfather's burial?  Robert was lounging among minstrels, dancers, and \ngamesters, in France or Germany.  Henry was carrying his five \nthousand pounds safely away in a convenient chest he had got made.  \nWilliam the Red was hurrying to England, to lay hands upon the \nRoyal treasure and the crown.\n\n\n\nCHAPTER IX - ENGLAND UNDER WILLIAM THE SECOND, CALLED RUFUS\n\n\n\nWILLIAM THE RED, in breathless haste, secured the three great forts \nof Dover, Pevensey, and Hastings, and made with hot speed for \nWinchester, where the Royal treasure was kept.  The treasurer \ndelivering him the keys, he found that it amounted to sixty \nthousand pounds in silver, besides gold and jewels.  Possessed of \nthis wealth, he soon persuaded the Archbishop of Canterbury to \ncrown him, and became William the Second, King of England.\n\nRufus was no sooner on the throne, than he ordered into prison \nagain the unhappy state captives whom his father had set free, and \ndirected a goldsmith to ornament his father's tomb profusely with \ngold and silver.  It would have been more dutiful in him to have \nattended the sick Conqueror when he was dying; but England itself, \nlike this Red King, who once governed it, has sometimes made \nexpensive tombs for dead men whom it treated shabbily when they \nwere alive.\n\nThe King's brother, Robert of Normandy, seeming quite content to be \nonly Duke of that country; and the King's other brother, Fine-\nScholar, being quiet enough with his five thousand pounds in a \nchest; the King flattered himself, we may suppose, with the hope of \nan easy reign.  But easy reigns were difficult to have in those \ndays.  The turbulent Bishop ODO (who had blessed the Norman army at \nthe Battle of Hastings, and who, I dare say, took all the credit of \nthe victory to himself) soon began, in concert with some powerful \nNorman nobles, to trouble the Red King.\n\nThe truth seems to be that this bishop and his friends, who had \nlands in England and lands in Normandy, wished to hold both under \none Sovereign; and greatly preferred a thoughtless good-natured \nperson, such as Robert was, to Rufus; who, though far from being an \namiable man in any respect, was keen, and not to be imposed upon.  \nThey declared in Robert's favour, and retired to their castles \n(those castles were very troublesome to kings) in a sullen humour.  \nThe Red King, seeing the Normans thus falling from him, revenged \nhimself upon them by appealing to the English; to whom he made a \nvariety of promises, which he never meant to perform - in \nparticular, promises to soften the cruelty of the Forest Laws; and \nwho, in return, so aided him with their valour, that ODO was \nbesieged in the Castle of Rochester, and forced to abandon it, and \nto depart from England for ever:  whereupon the other rebellious \nNorman nobles were soon reduced and scattered.\n\nThen, the Red King went over to Normandy, where the people suffered \ngreatly under the loose rule of Duke Robert.  The King's object was \nto seize upon the Duke's dominions.  This, the Duke, of course, \nprepared to resist; and miserable war between the two brothers \nseemed inevitable, when the powerful nobles on both sides, who had \nseen so much of war, interfered to prevent it.  A treaty was made.  \nEach of the two brothers agreed to give up something of his claims, \nand that the longer-liver of the two should inherit all the \ndominions of the other.  When they had come to this loving \nunderstanding, they embraced and joined their forces against Fine-\nScholar; who had bought some territory of Robert with a part of his \nfive thousand pounds, and was considered a dangerous individual in \nconsequence.\n\nSt. Michael's Mount, in Normandy (there is another St. Michael's \nMount, in Cornwall, wonderfully like it), was then, as it is now, a \nstrong place perched upon the top of a high rock, around which, \nwhen the tide is in, the sea flows, leaving no road to the \nmainland.  In this place, Fine-Scholar shut himself up with his \nsoldiers, and here he was closely besieged by his two brothers.  At \none time, when he was reduced to great distress for want of water, \nthe generous Robert not only permitted his men to get water, but \nsent Fine-Scholar wine from his own table; and, on being \nremonstrated with by the Red King, said 'What! shall we let our own \nbrother die of thirst?  Where shall we get another, when he is \ngone?'  At another time, the Red King riding alone on the shore of \nthe bay, looking up at the Castle, was taken by two of Fine-\nScholar's men, one of whom was about to kill him, when he cried \nout, 'Hold, knave!  I am the King of England!'  The story says that \nthe soldier raised him from the ground respectfully and humbly, and \nthat the King took him into his service.  The story may or may not \nbe true; but at any rate it is true that Fine-Scholar could not \nhold out against his united brothers, and that he abandoned Mount \nSt. Michael, and wandered about - as poor and forlorn as other \nscholars have been sometimes known to be.\n\nThe Scotch became unquiet in the Red King's time, and were twice \ndefeated - the second time, with the loss of their King, Malcolm, \nand his son.  The Welsh became unquiet too.  Against them, Rufus \nwas less successful; for they fought among their native mountains, \nand did great execution on the King's troops.  Robert of Normandy \nbecame unquiet too; and, complaining that his brother the King did \nnot faithfully perform his part of their agreement, took up arms, \nand obtained assistance from the King of France, whom Rufus, in the \nend, bought off with vast sums of money.  England became unquiet \ntoo.  Lord Mowbray, the powerful Earl of Northumberland, headed a \ngreat conspiracy to depose the King, and to place upon the throne, \nSTEPHEN, the Conqueror's near relative.  The plot was discovered; \nall the chief conspirators were seized; some were fined, some were \nput in prison, some were put to death.  The Earl of Northumberland \nhimself was shut up in a dungeon beneath Windsor Castle, where he \ndied, an old man, thirty long years afterwards.  The Priests in \nEngland were more unquiet than any other class or power; for the \nRed King treated them with such small ceremony that he refused to \nappoint new bishops or archbishops when the old ones died, but kept \nall the wealth belonging to those offices in his own hands.  In \nreturn for this, the Priests wrote his life when he was dead, and \nabused him well.  I am inclined to think, myself, that there was \nlittle to choose between the Priests and the Red King; that both \nsides were greedy and designing; and that they were fairly matched.\n\nThe Red King was false of heart, selfish, covetous, and mean.  He \nhad a worthy minister in his favourite, Ralph, nicknamed - for \nalmost every famous person had a nickname in those rough days - \nFlambard, or the Firebrand.  Once, the King being ill, became \npenitent, and made ANSELM, a foreign priest and a good man, \nArchbishop of Canterbury.  But he no sooner got well again than he \nrepented of his repentance, and persisted in wrongfully keeping to \nhimself some of the wealth belonging to the archbishopric.  This \nled to violent disputes, which were aggravated by there being in \nRome at that time two rival Popes; each of whom declared he was the \nonly real original infallible Pope, who couldn't make a mistake.  \nAt last, Anselm, knowing the Red King's character, and not feeling \nhimself safe in England, asked leave to return abroad.  The Red \nKing gladly gave it; for he knew that as soon as Anselm was gone, \nhe could begin to store up all the Canterbury money again, for his \nown use.\n\nBy such means, and by taxing and oppressing the English people in \nevery possible way, the Red King became very rich.  When he wanted \nmoney for any purpose, he raised it by some means or other, and \ncared nothing for the injustice he did, or the misery he caused.  \nHaving the opportunity of buying from Robert the whole duchy of \nNormandy for five years, he taxed the English people more than \never, and made the very convents sell their plate and valuables to \nsupply him with the means to make the purchase.  But he was as \nquick and eager in putting down revolt as he was in raising money; \nfor, a part of the Norman people objecting - very naturally, I \nthink - to being sold in this way, he headed an army against them \nwith all the speed and energy of his father.  He was so impatient, \nthat he embarked for Normandy in a great gale of wind.  And when \nthe sailors told him it was dangerous to go to sea in such angry \nweather, he replied, 'Hoist sail and away!  Did you ever hear of a \nking who was drowned?'\n\nYou will wonder how it was that even the careless Robert came to \nsell his dominions.  It happened thus.  It had long been the custom \nfor many English people to make journeys to Jerusalem, which were \ncalled pilgrimages, in order that they might pray beside the tomb \nof Our Saviour there.  Jerusalem belonging to the Turks, and the \nTurks hating Christianity, these Christian travellers were often \ninsulted and ill used.  The Pilgrims bore it patiently for some \ntime, but at length a remarkable man, of great earnestness and \neloquence, called PETER THE HERMIT, began to preach in various \nplaces against the Turks, and to declare that it was the duty of \ngood Christians to drive away those unbelievers from the tomb of \nOur Saviour, and to take possession of it, and protect it.  An \nexcitement such as the world had never known before was created.  \nThousands and thousands of men of all ranks and conditions departed \nfor Jerusalem to make war against the Turks.  The war is called in \nhistory the first Crusade, and every Crusader wore a cross marked \non his right shoulder.\n\nAll the Crusaders were not zealous Christians.  Among them were \nvast numbers of the restless, idle, profligate, and adventurous \nspirit of the time.  Some became Crusaders for the love of change; \nsome, in the hope of plunder; some, because they had nothing to do \nat home; some, because they did what the priests told them; some, \nbecause they liked to see foreign countries; some, because they \nwere fond of knocking men about, and would as soon knock a Turk \nabout as a Christian.  Robert of Normandy may have been influenced \nby all these motives; and by a kind desire, besides, to save the \nChristian Pilgrims from bad treatment in future.  He wanted to \nraise a number of armed men, and to go to the Crusade.  He could \nnot do so without money.  He had no money; and he sold his \ndominions to his brother, the Red King, for five years.  With the \nlarge sum he thus obtained, he fitted out his Crusaders gallantly, \nand went away to Jerusalem in martial state.  The Red King, who \nmade money out of everything, stayed at home, busily squeezing more \nmoney out of Normans and English.\n\nAfter three years of great hardship and suffering - from shipwreck \nat sea; from travel in strange lands; from hunger, thirst, and \nfever, upon the burning sands of the desert; and from the fury of \nthe Turks - the valiant Crusaders got possession of Our Saviour's \ntomb.  The Turks were still resisting and fighting bravely, but \nthis success increased the general desire in Europe to join the \nCrusade.  Another great French Duke was proposing to sell his \ndominions for a term to the rich Red King, when the Red King's \nreign came to a sudden and violent end.\n\nYou have not forgotten the New Forest which the Conqueror made, and \nwhich the miserable people whose homes he had laid waste, so hated.  \nThe cruelty of the Forest Laws, and the torture and death they \nbrought upon the peasantry, increased this hatred.  The poor \npersecuted country people believed that the New Forest was \nenchanted.  They said that in thunder-storms, and on dark nights, \ndemons appeared, moving beneath the branches of the gloomy trees.  \nThey said that a terrible spectre had foretold to Norman hunters \nthat the Red King should be punished there.  And now, in the \npleasant season of May, when the Red King had reigned almost \nthirteen years; and a second Prince of the Conqueror's blood - \nanother Richard, the son of Duke Robert - was killed by an arrow in \nthis dreaded Forest; the people said that the second time was not \nthe last, and that there was another death to come.\n\nIt was a lonely forest, accursed in the people's hearts for the \nwicked deeds that had been done to make it; and no man save the \nKing and his Courtiers and Huntsmen, liked to stray there.  But, in \nreality, it was like any other forest.  In the spring, the green \nleaves broke out of the buds; in the summer, flourished heartily, \nand made deep shades; in the winter, shrivelled and blew down, and \nlay in brown heaps on the moss.  Some trees were stately, and grew \nhigh and strong; some had fallen of themselves; some were felled by \nthe forester's axe; some were hollow, and the rabbits burrowed at \ntheir roots; some few were struck by lightning, and stood white and \nbare.  There were hill-sides covered with rich fern, on which the \nmorning dew so beautifully sparkled; there were brooks, where the \ndeer went down to drink, or over which the whole herd bounded, \nflying from the arrows of the huntsmen; there were sunny glades, \nand solemn places where but little light came through the rustling \nleaves.  The songs of the birds in the New Forest were pleasanter \nto hear than the shouts of fighting men outside; and even when the \nRed King and his Court came hunting through its solitudes, cursing \nloud and riding hard, with a jingling of stirrups and bridles and \nknives and daggers, they did much less harm there than among the \nEnglish or Normans, and the stags died (as they lived) far easier \nthan the people.\n\nUpon a day in August, the Red King, now reconciled to his brother, \nFine-Scholar, came with a great train to hunt in the New Forest.  \nFine-Scholar was of the party.  They were a merry party, and had \nlain all night at Malwood-Keep, a hunting-lodge in the forest, \nwhere they had made good cheer, both at supper and breakfast, and \nhad drunk a deal of wine.  The party dispersed in various \ndirections, as the custom of hunters then was.  The King took with \nhim only SIR WALTER TYRREL, who was a famous sportsman, and to whom \nhe had given, before they mounted horse that morning, two fine \narrows.\n\nThe last time the King was ever seen alive, he was riding with Sir \nWalter Tyrrel, and their dogs were hunting together.\n\nIt was almost night, when a poor charcoal-burner, passing through \nthe forest with his cart, came upon the solitary body of a dead \nman, shot with an arrow in the breast, and still bleeding.  He got \nit into his cart.  It was the body of the King.  Shaken and \ntumbled, with its red beard all whitened with lime and clotted with \nblood, it was driven in the cart by the charcoal-burner next day to \nWinchester Cathedral, where it was received and buried.\n\nSir Walter Tyrrel, who escaped to Normandy, and claimed the \nprotection of the King of France, swore in France that the Red King \nwas suddenly shot dead by an arrow from an unseen hand, while they \nwere hunting together; that he was fearful of being suspected as \nthe King's murderer; and that he instantly set spurs to his horse, \nand fled to the sea-shore.  Others declared that the King and Sir \nWalter Tyrrel were hunting in company, a little before sunset, \nstanding in bushes opposite one another, when a stag came between \nthem.  That the King drew his bow and took aim, but the string \nbroke.  That the King then cried, 'Shoot, Walter, in the Devil's \nname!'  That Sir Walter shot.  That the arrow glanced against a \ntree, was turned aside from the stag, and struck the King from his \nhorse, dead.\n\nBy whose hand the Red King really fell, and whether that hand \ndespatched the arrow to his breast by accident or by design, is \nonly known to GOD.  Some think his brother may have caused him to \nbe killed; but the Red King had made so many enemies, both among \npriests and people, that suspicion may reasonably rest upon a less \nunnatural murderer.  Men know no more than that he was found dead \nin the New Forest, which the suffering people had regarded as a \ndoomed ground for his race.\n\n\n\nCHAPTER X - ENGLAND UNDER HENRY THE FIRST, CALLED FINE-SCHOLAR\n\n\n\nFINE-SCHOLAR, on hearing of the Red King's death, hurried to \nWinchester with as much speed as Rufus himself had made, to seize \nthe Royal treasure.  But the keeper of the treasure who had been \none of the hunting-party in the Forest, made haste to Winchester \ntoo, and, arriving there at about the same time, refused to yield \nit up.  Upon this, Fine-Scholar drew his sword, and threatened to \nkill the treasurer; who might have paid for his fidelity with his \nlife, but that he knew longer resistance to be useless when he \nfound the Prince supported by a company of powerful barons, who \ndeclared they were determined to make him King.  The treasurer, \ntherefore, gave up the money and jewels of the Crown:  and on the \nthird day after the death of the Red King, being a Sunday, Fine-\nScholar stood before the high altar in Westminster Abbey, and made \na solemn declaration that he would resign the Church property which \nhis brother had seized; that he would do no wrong to the nobles; \nand that he would restore to the people the laws of Edward the \nConfessor, with all the improvements of William the Conqueror.  So \nbegan the reign of KING HENRY THE FIRST.\n\nThe people were attached to their new King, both because he had \nknown distresses, and because he was an Englishman by birth and not \na Norman.  To strengthen this last hold upon them, the King wished \nto marry an English lady; and could think of no other wife than \nMAUD THE GOOD, the daughter of the King of Scotland.  Although this \ngood Princess did not love the King, she was so affected by the \nrepresentations the nobles made to her of the great charity it \nwould be in her to unite the Norman and Saxon races, and prevent \nhatred and bloodshed between them for the future, that she \nconsented to become his wife.  After some disputing among the \npriests, who said that as she had been in a convent in her youth, \nand had worn the veil of a nun, she could not lawfully be married - \nagainst which the Princess stated that her aunt, with whom she had \nlived in her youth, had indeed sometimes thrown a piece of black \nstuff over her, but for no other reason than because the nun's veil \nwas the only dress the conquering Normans respected in girl or \nwoman, and not because she had taken the vows of a nun, which she \nnever had - she was declared free to marry, and was made King \nHenry's Queen.  A good Queen she was; beautiful, kind-hearted, and \nworthy of a better husband than the King.\n\nFor he was a cunning and unscrupulous man, though firm and clever.  \nHe cared very little for his word, and took any means to gain his \nends.  All this is shown in his treatment of his brother Robert - \nRobert, who had suffered him to be refreshed with water, and who \nhad sent him the wine from his own table, when he was shut up, with \nthe crows flying below him, parched with thirst, in the castle on \nthe top of St. Michael's Mount, where his Red brother would have \nlet him die.\n\nBefore the King began to deal with Robert, he removed and disgraced \nall the favourites of the late King; who were for the most part \nbase characters, much detested by the people.  Flambard, or \nFirebrand, whom the late King had made Bishop of Durham, of all \nthings in the world, Henry imprisoned in the Tower; but Firebrand \nwas a great joker and a jolly companion, and made himself so \npopular with his guards that they pretended to know nothing about a \nlong rope that was sent into his prison at the bottom of a deep \nflagon of wine.  The guards took the wine, and Firebrand took the \nrope; with which, when they were fast asleep, he let himself down \nfrom a window in the night, and so got cleverly aboard ship and \naway to Normandy.\n\nNow Robert, when his brother Fine-Scholar came to the throne, was \nstill absent in the Holy Land.  Henry pretended that Robert had \nbeen made Sovereign of that country; and he had been away so long, \nthat the ignorant people believed it.  But, behold, when Henry had \nbeen some time King of England, Robert came home to Normandy; \nhaving leisurely returned from Jerusalem through Italy, in which \nbeautiful country he had enjoyed himself very much, and had married \na lady as beautiful as itself!  In Normandy, he found Firebrand \nwaiting to urge him to assert his claim to the English crown, and \ndeclare war against King Henry.  This, after great loss of time in \nfeasting and dancing with his beautiful Italian wife among his \nNorman friends, he at last did.\n\nThe English in general were on King Henry's side, though many of \nthe Normans were on Robert's.  But the English sailors deserted the \nKing, and took a great part of the English fleet over to Normandy; \nso that Robert came to invade this country in no foreign vessels, \nbut in English ships.  The virtuous Anselm, however, whom Henry had \ninvited back from abroad, and made Archbishop of Canterbury, was \nsteadfast in the King's cause; and it was so well supported that \nthe two armies, instead of fighting, made a peace.  Poor Robert, \nwho trusted anybody and everybody, readily trusted his brother, the \nKing; and agreed to go home and receive a pension from England, on \ncondition that all his followers were fully pardoned.  This the \nKing very faithfully promised, but Robert was no sooner gone than \nhe began to punish them.\n\nAmong them was the Earl of Shrewsbury, who, on being summoned by \nthe King to answer to five-and-forty accusations, rode away to one \nof his strong castles, shut himself up therein, called around him \nhis tenants and vassals, and fought for his liberty, but was \ndefeated and banished.  Robert, with all his faults, was so true to \nhis word, that when he first heard of this nobleman having risen \nagainst his brother, he laid waste the Earl of Shrewsbury's estates \nin Normandy, to show the King that he would favour no breach of \ntheir treaty.  Finding, on better information, afterwards, that the \nEarl's only crime was having been his friend, he came over to \nEngland, in his old thoughtless, warm-hearted way, to intercede \nwith the King, and remind him of the solemn promise to pardon all \nhis followers.\n\nThis confidence might have put the false King to the blush, but it \ndid not.  Pretending to be very friendly, he so surrounded his \nbrother with spies and traps, that Robert, who was quite in his \npower, had nothing for it but to renounce his pension and escape \nwhile he could.  Getting home to Normandy, and understanding the \nKing better now, he naturally allied himself with his old friend \nthe Earl of Shrewsbury, who had still thirty castles in that \ncountry.  This was exactly what Henry wanted.  He immediately \ndeclared that Robert had broken the treaty, and next year invaded \nNormandy.\n\nHe pretended that he came to deliver the Normans, at their own \nrequest, from his brother's misrule.  There is reason to fear that \nhis misrule was bad enough; for his beautiful wife had died, \nleaving him with an infant son, and his court was again so \ncareless, dissipated, and ill-regulated, that it was said he \nsometimes lay in bed of a day for want of clothes to put on - his \nattendants having stolen all his dresses.  But he headed his army \nlike a brave prince and a gallant soldier, though he had the \nmisfortune to be taken prisoner by King Henry, with four hundred of \nhis Knights.  Among them was poor harmless Edgar Atheling, who \nloved Robert well.  Edgar was not important enough to be severe \nwith.  The King afterwards gave him a small pension, which he lived \nupon and died upon, in peace, among the quiet woods and fields of \nEngland.\n\nAnd Robert - poor, kind, generous, wasteful, heedless Robert, with \nso many faults, and yet with virtues that might have made a better \nand a happier man - what was the end of him?  If the King had had \nthe magnanimity to say with a kind air, 'Brother, tell me, before \nthese noblemen, that from this time you will be my faithful \nfollower and friend, and never raise your hand against me or my \nforces more!' he might have trusted Robert to the death.  But the \nKing was not a magnanimous man.  He sentenced his brother to be \nconfined for life in one of the Royal Castles.  In the beginning of \nhis imprisonment, he was allowed to ride out, guarded; but he one \nday broke away from his guard and galloped of.  He had the evil \nfortune to ride into a swamp, where his horse stuck fast and he was \ntaken.  When the King heard of it he ordered him to be blinded, \nwhich was done by putting a red-hot metal basin on his eyes.\n\nAnd so, in darkness and in prison, many years, he thought of all \nhis past life, of the time he had wasted, of the treasure he had \nsquandered, of the opportunities he had lost, of the youth he had \nthrown away, of the talents he had neglected.  Sometimes, on fine \nautumn mornings, he would sit and think of the old hunting parties \nin the free Forest, where he had been the foremost and the gayest.  \nSometimes, in the still nights, he would wake, and mourn for the \nmany nights that had stolen past him at the gaming-table; \nsometimes, would seem to hear, upon the melancholy wind, the old \nsongs of the minstrels; sometimes, would dream, in his blindness, \nof the light and glitter of the Norman Court.  Many and many a \ntime, he groped back, in his fancy, to Jerusalem, where he had \nfought so well; or, at the head of his brave companions, bowed his \nfeathered helmet to the shouts of welcome greeting him in Italy, \nand seemed again to walk among the sunny vineyards, or on the shore \nof the blue sea, with his lovely wife.  And then, thinking of her \ngrave, and of his fatherless boy, he would stretch out his solitary \narms and weep.\n\nAt length, one day, there lay in prison, dead, with cruel and \ndisfiguring scars upon his eyelids, bandaged from his jailer's \nsight, but on which the eternal Heavens looked down, a worn old man \nof eighty.  He had once been Robert of Normandy.  Pity him!\n\nAt the time when Robert of Normandy was taken prisoner by his \nbrother, Robert's little son was only five years old.  This child \nwas taken, too, and carried before the King, sobbing and crying; \nfor, young as he was, he knew he had good reason to be afraid of \nhis Royal uncle.  The King was not much accustomed to pity those \nwho were in his power, but his cold heart seemed for the moment to \nsoften towards the boy.  He was observed to make a great effort, as \nif to prevent himself from being cruel, and ordered the child to be \ntaken away; whereupon a certain Baron, who had married a daughter \nof Duke Robert's (by name, Helie of Saint Saen), took charge of \nhim, tenderly.  The King's gentleness did not last long.  Before \ntwo years were over, he sent messengers to this lord's Castle to \nseize the child and bring him away.  The Baron was not there at the \ntime, but his servants were faithful, and carried the boy off in \nhis sleep and hid him.  When the Baron came home, and was told what \nthe King had done, he took the child abroad, and, leading him by \nthe hand, went from King to King and from Court to Court, relating \nhow the child had a claim to the throne of England, and how his \nuncle the King, knowing that he had that claim, would have murdered \nhim, perhaps, but for his escape.\n\nThe youth and innocence of the pretty little WILLIAM FITZ-ROBERT \n(for that was his name) made him many friends at that time.  When \nhe became a young man, the King of France, uniting with the French \nCounts of Anjou and Flanders, supported his cause against the King \nof England, and took many of the King's towns and castles in \nNormandy.  But, King Henry, artful and cunning always, bribed some \nof William's friends with money, some with promises, some with \npower.  He bought off the Count of Anjou, by promising to marry his \neldest son, also named WILLIAM, to the Count's daughter; and indeed \nthe whole trust of this King's life was in such bargains, and he \nbelieved (as many another King has done since, and as one King did \nin France a very little time ago) that every man's truth and honour \ncan be bought at some price.  For all this, he was so afraid of \nWilliam Fitz-Robert and his friends, that, for a long time, he \nbelieved his life to be in danger; and never lay down to sleep, \neven in his palace surrounded by his guards, without having a sword \nand buckler at his bedside.\n\nTo strengthen his power, the King with great ceremony betrothed his \neldest daughter MATILDA, then a child only eight years old, to be \nthe wife of Henry the Fifth, the Emperor of Germany.  To raise her \nmarriage-portion, he taxed the English people in a most oppressive \nmanner; then treated them to a great procession, to restore their \ngood humour; and sent Matilda away, in fine state, with the German \nambassadors, to be educated in the country of her future husband.\n\nAnd now his Queen, Maud the Good, unhappily died.  It was a sad \nthought for that gentle lady, that the only hope with which she had \nmarried a man whom she had never loved - the hope of reconciling \nthe Norman and English races - had failed.  At the very time of her \ndeath, Normandy and all France was in arms against England; for, so \nsoon as his last danger was over, King Henry had been false to all \nthe French powers he had promised, bribed, and bought, and they had \nnaturally united against him.  After some fighting, however, in \nwhich few suffered but the unhappy common people (who always \nsuffered, whatsoever was the matter), he began to promise, bribe, \nand buy again; and by those means, and by the help of the Pope, who \nexerted himself to save more bloodshed, and by solemnly declaring, \nover and over again, that he really was in earnest this time, and \nwould keep his word, the King made peace.\n\nOne of the first consequences of this peace was, that the King went \nover to Normandy with his son Prince William and a great retinue, \nto have the Prince acknowledged as his successor by the Norman \nNobles, and to contract the promised marriage (this was one of the \nmany promises the King had broken) between him and the daughter of \nthe Count of Anjou.  Both these things were triumphantly done, with \ngreat show and rejoicing; and on the twenty-fifth of November, in \nthe year one thousand one hundred and twenty, the whole retinue \nprepared to embark at the Port of Barfleur, for the voyage home.\n\nOn that day, and at that place, there came to the King, Fitz-\nStephen, a sea-captain, and said:\n\n'My liege, my father served your father all his life, upon the sea.  \nHe steered the ship with the golden boy upon the prow, in which \nyour father sailed to conquer England.  I beseech you to grant me \nthe same office.  I have a fair vessel in the harbour here, called \nThe White Ship, manned by fifty sailors of renown.  I pray you, \nSire, to let your servant have the honour of steering you in The \nWhite Ship to England!'\n\n'I am sorry, friend,' replied the King, 'that my vessel is already \nchosen, and that I cannot (therefore) sail with the son of the man \nwho served my father.  But the Prince and all his company shall go \nalong with you, in the fair White Ship, manned by the fifty sailors \nof renown.'\n\nAn hour or two afterwards, the King set sail in the vessel he had \nchosen, accompanied by other vessels, and, sailing all night with a \nfair and gentle wind, arrived upon the coast of England in the \nmorning.  While it was yet night, the people in some of those ships \nheard a faint wild cry come over the sea, and wondered what it was.\n\nNow, the Prince was a dissolute, debauched young man of eighteen, \nwho bore no love to the English, and had declared that when he came \nto the throne he would yoke them to the plough like oxen.  He went \naboard The White Ship, with one hundred and forty youthful Nobles \nlike himself, among whom were eighteen noble ladies of the highest \nrank.  All this gay company, with their servants and the fifty \nsailors, made three hundred souls aboard the fair White Ship.\n\n'Give three casks of wine, Fitz-Stephen,' said the Prince, 'to the \nfifty sailors of renown!  My father the King has sailed out of the \nharbour.  What time is there to make merry here, and yet reach \nEngland with the rest?'\n\n'Prince!' said Fitz-Stephen, 'before morning, my fifty and The \nWhite Ship shall overtake the swiftest vessel in attendance on your \nfather the King, if we sail at midnight!'\n\nThen the Prince commanded to make merry; and the sailors drank out \nthe three casks of wine; and the Prince and all the noble company \ndanced in the moonlight on the deck of The White Ship.\n\nWhen, at last, she shot out of the harbour of Barfleur, there was \nnot a sober seaman on board.  But the sails were all set, and the \noars all going merrily.  Fitz-Stephen had the helm.  The gay young \nnobles and the beautiful ladies, wrapped in mantles of various \nbright colours to protect them from the cold, talked, laughed, and \nsang.  The Prince encouraged the fifty sailors to row harder yet, \nfor the honour of The White Ship.\n\nCrash!  A terrific cry broke from three hundred hearts.  It was the \ncry the people in the distant vessels of the King heard faintly on \nthe water.  The White Ship had struck upon a rock - was filling - \ngoing down!\n\nFitz-Stephen hurried the Prince into a boat, with some few Nobles.  \n'Push off,' he whispered; 'and row to land.  It is not far, and the \nsea is smooth.  The rest of us must die.'\n\nBut, as they rowed away, fast, from the sinking ship, the Prince \nheard the voice of his sister MARIE, the Countess of Perche, \ncalling for help.  He never in his life had been so good as he was \nthen.  He cried in an agony, 'Row back at any risk!  I cannot bear \nto leave her!'\n\nThey rowed back.  As the Prince held out his arms to catch his \nsister, such numbers leaped in, that the boat was overset.  And in \nthe same instant The White Ship went down.\n\nOnly two men floated.  They both clung to the main yard of the \nship, which had broken from the mast, and now supported them.  One \nasked the other who he was?  He said, 'I am a nobleman, GODFREY by \nname, the son of GILBERT DE L'AIGLE.  And you?' said he.  'I am \nBEROLD, a poor butcher of Rouen,' was the answer.  Then, they said \ntogether, 'Lord be merciful to us both!' and tried to encourage one \nanother, as they drifted in the cold benumbing sea on that \nunfortunate November night.\n\nBy-and-by, another man came swimming towards them, whom they knew, \nwhen he pushed aside his long wet hair, to be Fitz-Stephen.  'Where \nis the Prince?' said he.  'Gone! Gone!' the two cried together.  \n'Neither he, nor his brother, nor his sister, nor the King's niece, \nnor her brother, nor any one of all the brave three hundred, noble \nor commoner, except we three, has risen above the water!'  Fitz-\nStephen, with a ghastly face, cried, 'Woe! woe, to me!' and sunk to \nthe bottom.\n\nThe other two clung to the yard for some hours.  At length the \nyoung noble said faintly, 'I am exhausted, and chilled with the \ncold, and can hold no longer.  Farewell, good friend!  God preserve \nyou!'  So, he dropped and sunk; and of all the brilliant crowd, the \npoor Butcher of Rouen alone was saved.  In the morning, some \nfishermen saw him floating in his sheep-skin coat, and got him into \ntheir boat - the sole relater of the dismal tale.\n\nFor three days, no one dared to carry the intelligence to the King.  \nAt length, they sent into his presence a little boy, who, weeping \nbitterly, and kneeling at his feet, told him that The White Ship \nwas lost with all on board.  The King fell to the ground like a \ndead man, and never, never afterwards, was seen to smile.\n\nBut he plotted again, and promised again, and bribed and bought \nagain, in his old deceitful way.  Having no son to succeed him, \nafter all his pains ('The Prince will never yoke us to the plough, \nnow!' said the English people), he took a second wife - ADELAIS or \nALICE, a duke's daughter, and the Pope's niece.  Having no more \nchildren, however, he proposed to the Barons to swear that they \nwould recognise as his successor, his daughter Matilda, whom, as \nshe was now a widow, he married to the eldest son of the Count of \nAnjou, GEOFFREY, surnamed PLANTAGENET, from a custom he had of \nwearing a sprig of flowering broom (called Gent in French) in his \ncap for a feather.  As one false man usually makes many, and as a \nfalse King, in particular, is pretty certain to make a false Court, \nthe Barons took the oath about the succession of Matilda (and her \nchildren after her), twice over, without in the least intending to \nkeep it.  The King was now relieved from any remaining fears of \nWilliam Fitz-Robert, by his death in the Monastery of St. Omer, in \nFrance, at twenty-six years old, of a pike-wound in the hand.  And \nas Matilda gave birth to three sons, he thought the succession to \nthe throne secure.\n\nHe spent most of the latter part of his life, which was troubled by \nfamily quarrels, in Normandy, to be near Matilda.  When he had \nreigned upward of thirty-five years, and was sixty-seven years old, \nhe died of an indigestion and fever, brought on by eating, when he \nwas far from well, of a fish called Lamprey, against which he had \noften been cautioned by his physicians.  His remains were brought \nover to Reading Abbey to be buried.\n\nYou may perhaps hear the cunning and promise-breaking of King Henry \nthe First, called 'policy' by some people, and 'diplomacy' by \nothers.  Neither of these fine words will in the least mean that it \nwas true; and nothing that is not true can possibly be good.\n\nHis greatest merit, that I know of, was his love of learning - I \nshould have given him greater credit even for that, if it had been \nstrong enough to induce him to spare the eyes of a certain poet he \nonce took prisoner, who was a knight besides.  But he ordered the \npoet's eyes to be torn from his head, because he had laughed at him \nin his verses; and the poet, in the pain of that torture, dashed \nout his own brains against his prison wall.  King Henry the First \nwas avaricious, revengeful, and so false, that I suppose a man \nnever lived whose word was less to be relied upon.\n\n\n\nCHAPTER XI - ENGLAND UNDER MATILDA AND STEPHEN\n\n\n\nTHE King was no sooner dead than all the plans and schemes he had \nlaboured at so long, and lied so much for, crumbled away like a \nhollow heap of sand.  STEPHEN, whom he had never mistrusted or \nsuspected, started up to claim the throne.\n\nStephen was the son of ADELA, the Conqueror's daughter, married to \nthe Count of Blois.  To Stephen, and to his brother HENRY, the late \nKing had been liberal; making Henry Bishop of Winchester, and \nfinding a good marriage for Stephen, and much enriching him.  This \ndid not prevent Stephen from hastily producing a false witness, a \nservant of the late King, to swear that the King had named him for \nhis heir upon his death-bed.  On this evidence the Archbishop of \nCanterbury crowned him.  The new King, so suddenly made, lost not a \nmoment in seizing the Royal treasure, and hiring foreign soldiers \nwith some of it to protect his throne.\n\nIf the dead King had even done as the false witness said, he would \nhave had small right to will away the English people, like so many \nsheep or oxen, without their consent.  But he had, in fact, \nbequeathed all his territory to Matilda; who, supported by ROBERT, \nEarl of Gloucester, soon began to dispute the crown.  Some of the \npowerful barons and priests took her side; some took Stephen's; all \nfortified their castles; and again the miserable English people \nwere involved in war, from which they could never derive advantage \nwhosoever was victorious, and in which all parties plundered, \ntortured, starved, and ruined them.\n\nFive years had passed since the death of Henry the First - and \nduring those five years there had been two terrible invasions by \nthe people of Scotland under their King, David, who was at last \ndefeated with all his army - when Matilda, attended by her brother \nRobert and a large force, appeared in England to maintain her \nclaim.  A battle was fought between her troops and King Stephen's \nat Lincoln; in which the King himself was taken prisoner, after \nbravely fighting until his battle-axe and sword were broken, and \nwas carried into strict confinement at Gloucester.  Matilda then \nsubmitted herself to the Priests, and the Priests crowned her Queen \nof England.\n\nShe did not long enjoy this dignity.  The people of London had a \ngreat affection for Stephen; many of the Barons considered it \ndegrading to be ruled by a woman; and the Queen's temper was so \nhaughty that she made innumerable enemies.  The people of London \nrevolted; and, in alliance with the troops of Stephen, besieged her \nat Winchester, where they took her brother Robert prisoner, whom, \nas her best soldier and chief general, she was glad to exchange for \nStephen himself, who thus regained his liberty.  Then, the long war \nwent on afresh.  Once, she was pressed so hard in the Castle of \nOxford, in the winter weather when the snow lay thick upon the \nground, that her only chance of escape was to dress herself all in \nwhite, and, accompanied by no more than three faithful Knights, \ndressed in like manner that their figures might not be seen from \nStephen's camp as they passed over the snow, to steal away on foot, \ncross the frozen Thames, walk a long distance, and at last gallop \naway on horseback.  All this she did, but to no great purpose then; \nfor her brother dying while the struggle was yet going on, she at \nlast withdrew to Normandy.\n\nIn two or three years after her withdrawal her cause appeared in \nEngland, afresh, in the person of her son Henry, young Plantagenet, \nwho, at only eighteen years of age, was very powerful:  not only on \naccount of his mother having resigned all Normandy to him, but also \nfrom his having married ELEANOR, the divorced wife of the French \nKing, a bad woman, who had great possessions in France.  Louis, the \nFrench King, not relishing this arrangement, helped EUSTACE, King \nStephen's son, to invade Normandy:  but Henry drove their united \nforces out of that country, and then returned here, to assist his \npartisans, whom the King was then besieging at Wallingford upon the \nThames.  Here, for two days, divided only by the river, the two \narmies lay encamped opposite to one another - on the eve, as it \nseemed to all men, of another desperate fight, when the EARL OF \nARUNDEL took heart and said 'that it was not reasonable to prolong \nthe unspeakable miseries of two kingdoms to minister to the \nambition of two princes.'\n\nMany other noblemen repeating and supporting this when it was once \nuttered, Stephen and young Plantagenet went down, each to his own \nbank of the river, and held a conversation across it, in which they \narranged a truce; very much to the dissatisfaction of Eustace, who \nswaggered away with some followers, and laid violent hands on the \nAbbey of St. Edmund's-Bury, where he presently died mad.  The truce \nled to a solemn council at Winchester, in which it was agreed that \nStephen should retain the crown, on condition of his declaring \nHenry his successor; that WILLIAM, another son of the King's, \nshould inherit his father's rightful possessions; and that all the \nCrown lands which Stephen had given away should be recalled, and \nall the Castles he had permitted to be built demolished.  Thus \nterminated the bitter war, which had now lasted fifteen years, and \nhad again laid England waste.  In the next year STEPHEN died, after \na troubled reign of nineteen years.\n\nAlthough King Stephen was, for the time in which he lived, a humane \nand moderate man, with many excellent qualities; and although \nnothing worse is known of him than his usurpation of the Crown, \nwhich he probably excused to himself by the consideration that King \nHenry the First was a usurper too - which was no excuse at all; the \npeople of England suffered more in these dread nineteen years, than \nat any former period even of their suffering history.  In the \ndivision of the nobility between the two rival claimants of the \nCrown, and in the growth of what is called the Feudal System (which \nmade the peasants the born vassals and mere slaves of the Barons), \nevery Noble had his strong Castle, where he reigned the cruel king \nof all the neighbouring people.  Accordingly, he perpetrated \nwhatever cruelties he chose.  And never were worse cruelties \ncommitted upon earth than in wretched England in those nineteen \nyears.\n\nThe writers who were living then describe them fearfully.  They say \nthat the castles were filled with devils rather than with men; that \nthe peasants, men and women, were put into dungeons for their gold \nand silver, were tortured with fire and smoke, were hung up by the \nthumbs, were hung up by the heels with great weights to their \nheads, were torn with jagged irons, killed with hunger, broken to \ndeath in narrow chests filled with sharp-pointed stones, murdered \nin countless fiendish ways.  In England there was no corn, no meat, \nno cheese, no butter, there were no tilled lands, no harvests.  \nAshes of burnt towns, and dreary wastes, were all that the \ntraveller, fearful of the robbers who prowled abroad at all hours, \nwould see in a long day's journey; and from sunrise until night, he \nwould not come upon a home.\n\nThe clergy sometimes suffered, and heavily too, from pillage, but \nmany of them had castles of their own, and fought in helmet and \narmour like the barons, and drew lots with other fighting men for \ntheir share of booty.  The Pope (or Bishop of Rome), on King \nStephen's resisting his ambition, laid England under an Interdict \nat one period of this reign; which means that he allowed no service \nto be performed in the churches, no couples to be married, no bells \nto be rung, no dead bodies to be buried.  Any man having the power \nto refuse these things, no matter whether he were called a Pope or \na Poulterer, would, of course, have the power of afflicting numbers \nof innocent people.  That nothing might be wanting to the miseries \nof King Stephen's time, the Pope threw in this contribution to the \npublic store - not very like the widow's contribution, as I think, \nwhen Our Saviour sat in Jerusalem over-against the Treasury, 'and \nshe threw in two mites, which make a farthing.'\n\n\n\nCHAPTER XII - ENGLAND UNDER HENRY THE SECOND - PART THE FIRST\n\n\n\nHENRY PLANTAGENET, when he was but twenty-one years old, quietly \nsucceeded to the throne of England, according to his agreement made \nwith the late King at Winchester.  Six weeks after Stephen's death, \nhe and his Queen, Eleanor, were crowned in that city; into which \nthey rode on horseback in great state, side by side, amidst much \nshouting and rejoicing, and clashing of music, and strewing of \nflowers.\n\nThe reign of King Henry the Second began well.  The King had great \npossessions, and (what with his own rights, and what with those of \nhis wife) was lord of one-third part of France.  He was a young man \nof vigour, ability, and resolution, and immediately applied himself \nto remove some of the evils which had arisen in the last unhappy \nreign.  He revoked all the grants of land that had been hastily \nmade, on either side, during the late struggles; he obliged numbers \nof disorderly soldiers to depart from England; he reclaimed all the \ncastles belonging to the Crown; and he forced the wicked nobles to \npull down their own castles, to the number of eleven hundred, in \nwhich such dismal cruelties had been inflicted on the people.  The \nKing's brother, GEOFFREY, rose against him in France, while he was \nso well employed, and rendered it necessary for him to repair to \nthat country; where, after he had subdued and made a friendly \narrangement with his brother (who did not live long), his ambition \nto increase his possessions involved him in a war with the French \nKing, Louis, with whom he had been on such friendly terms just \nbefore, that to the French King's infant daughter, then a baby in \nthe cradle, he had promised one of his little sons in marriage, who \nwas a child of five years old.  However, the war came to nothing at \nlast, and the Pope made the two Kings friends again.\n\nNow, the clergy, in the troubles of the last reign, had gone on \nvery ill indeed.  There were all kinds of criminals among them - \nmurderers, thieves, and vagabonds; and the worst of the matter was, \nthat the good priests would not give up the bad priests to justice, \nwhen they committed crimes, but persisted in sheltering and \ndefending them.  The King, well knowing that there could be no \npeace or rest in England while such things lasted, resolved to \nreduce the power of the clergy; and, when he had reigned seven \nyears, found (as he considered) a good opportunity for doing so, in \nthe death of the Archbishop of Canterbury.  'I will have for the \nnew Archbishop,' thought the King, 'a friend in whom I can trust, \nwho will help me to humble these rebellious priests, and to have \nthem dealt with, when they do wrong, as other men who do wrong are \ndealt with.'  So, he resolved to make his favourite, the new \nArchbishop; and this favourite was so extraordinary a man, and his \nstory is so curious, that I must tell you all about him.\n\nOnce upon a time, a worthy merchant of London, named GILBERT A \nBECKET, made a pilgrimage to the Holy Land, and was taken prisoner \nby a Saracen lord.  This lord, who treated him kindly and not like \na slave, had one fair daughter, who fell in love with the merchant; \nand who told him that she wanted to become a Christian, and was \nwilling to marry him if they could fly to a Christian country.  The \nmerchant returned her love, until he found an opportunity to \nescape, when he did not trouble himself about the Saracen lady, but \nescaped with his servant Richard, who had been taken prisoner along \nwith him, and arrived in England and forgot her.  The Saracen lady, \nwho was more loving than the merchant, left her father's house in \ndisguise to follow him, and made her way, under many hardships, to \nthe sea-shore.  The merchant had taught her only two English words \n(for I suppose he must have learnt the Saracen tongue himself, and \nmade love in that language), of which LONDON was one, and his own \nname, GILBERT, the other.  She went among the ships, saying, \n'London! London!' over and over again, until the sailors understood \nthat she wanted to find an English vessel that would carry her \nthere; so they showed her such a ship, and she paid for her passage \nwith some of her jewels, and sailed away.  Well!  The merchant was \nsitting in his counting-house in London one day, when he heard a \ngreat noise in the street; and presently Richard came running in \nfrom the warehouse, with his eyes wide open and his breath almost \ngone, saying, 'Master, master, here is the Saracen lady!'  The \nmerchant thought Richard was mad; but Richard said, 'No, master!  \nAs I live, the Saracen lady is going up and down the city, calling \nGilbert!  Gilbert!'  Then, he took the merchant by the sleeve, and \npointed out of window; and there they saw her among the gables and \nwater-spouts of the dark, dirty street, in her foreign dress, so \nforlorn, surrounded by a wondering crowd, and passing slowly along, \ncalling Gilbert, Gilbert!  When the merchant saw her, and thought \nof the tenderness she had shown him in his captivity, and of her \nconstancy, his heart was moved, and he ran down into the street; \nand she saw him coming, and with a great cry fainted in his arms.  \nThey were married without loss of time, and Richard (who was an \nexcellent man) danced with joy the whole day of the wedding; and \nthey all lived happy ever afterwards.\n\nThis merchant and this Saracen lady had one son, THOMAS A BECKET.  \nHe it was who became the Favourite of King Henry the Second.\n\nHe had become Chancellor, when the King thought of making him \nArchbishop.  He was clever, gay, well educated, brave; had fought \nin several battles in France; had defeated a French knight in \nsingle combat, and brought his horse away as a token of the \nvictory.  He lived in a noble palace, he was the tutor of the young \nPrince Henry, he was served by one hundred and forty knights, his \nriches were immense.  The King once sent him as his ambassador to \nFrance; and the French people, beholding in what state he \ntravelled, cried out in the streets, 'How splendid must the King of \nEngland be, when this is only the Chancellor!'  They had good \nreason to wonder at the magnificence of Thomas a Becket, for, when \nhe entered a French town, his procession was headed by two hundred \nand fifty singing boys; then, came his hounds in couples; then, \neight waggons, each drawn by five horses driven by five drivers:  \ntwo of the waggons filled with strong ale to be given away to the \npeople; four, with his gold and silver plate and stately clothes; \ntwo, with the dresses of his numerous servants.  Then, came twelve \nhorses, each with a monkey on his back; then, a train of people \nbearing shields and leading fine war-horses splendidly equipped; \nthen, falconers with hawks upon their wrists; then, a host of \nknights, and gentlemen and priests; then, the Chancellor with his \nbrilliant garments flashing in the sun, and all the people capering \nand shouting with delight.\n\nThe King was well pleased with all this, thinking that it only made \nhimself the more magnificent to have so magnificent a favourite; \nbut he sometimes jested with the Chancellor upon his splendour too.  \nOnce, when they were riding together through the streets of London \nin hard winter weather, they saw a shivering old man in rags.  \n'Look at the poor object!' said the King.  'Would it not be a \ncharitable act to give that aged man a comfortable warm cloak?'  \n'Undoubtedly it would,' said Thomas a Becket, 'and you do well, \nSir, to think of such Christian duties.'  'Come!' cried the King, \n'then give him your cloak!'  It was made of rich crimson trimmed \nwith ermine.  The King tried to pull it off, the Chancellor tried \nto keep it on, both were near rolling from their saddles in the \nmud, when the Chancellor submitted, and the King gave the cloak to \nthe old beggar:  much to the beggar's astonishment, and much to the \nmerriment of all the courtiers in attendance.  For, courtiers are \nnot only eager to laugh when the King laughs, but they really do \nenjoy a laugh against a Favourite.\n\n'I will make,' thought King Henry the second, 'this Chancellor of \nmine, Thomas a Becket, Archbishop of Canterbury.  He will then be \nthe head of the Church, and, being devoted to me, will help me to \ncorrect the Church.  He has always upheld my power against the \npower of the clergy, and once publicly told some bishops (I \nremember), that men of the Church were equally bound to me, with \nmen of the sword.  Thomas a Becket is the man, of all other men in \nEngland, to help me in my great design.'  So the King, regardless \nof all objection, either that he was a fighting man, or a lavish \nman, or a courtly man, or a man of pleasure, or anything but a \nlikely man for the office, made him Archbishop accordingly.\n\nNow, Thomas a Becket was proud and loved to be famous.  He was \nalready famous for the pomp of his life, for his riches, his gold \nand silver plate, his waggons, horses, and attendants.  He could do \nno more in that way than he had done; and being tired of that kind \nof fame (which is a very poor one), he longed to have his name \ncelebrated for something else.  Nothing, he knew, would render him \nso famous in the world, as the setting of his utmost power and \nability against the utmost power and ability of the King.  He \nresolved with the whole strength of his mind to do it.\n\nHe may have had some secret grudge against the King besides.  The \nKing may have offended his proud humour at some time or other, for \nanything I know.  I think it likely, because it is a common thing \nfor Kings, Princes, and other great people, to try the tempers of \ntheir favourites rather severely.  Even the little affair of the \ncrimson cloak must have been anything but a pleasant one to a \nhaughty man.  Thomas a Becket knew better than any one in England \nwhat the King expected of him.  In all his sumptuous life, he had \nnever yet been in a position to disappoint the King.  He could take \nup that proud stand now, as head of the Church; and he determined \nthat it should be written in history, either that he subdued the \nKing, or that the King subdued him.\n\nSo, of a sudden, he completely altered the whole manner of his \nlife.  He turned off all his brilliant followers, ate coarse food, \ndrank bitter water, wore next his skin sackcloth covered with dirt \nand vermin (for it was then thought very religious to be very \ndirty), flogged his back to punish himself, lived chiefly in a \nlittle cell, washed the feet of thirteen poor people every day, and \nlooked as miserable as he possibly could.  If he had put twelve \nhundred monkeys on horseback instead of twelve, and had gone in \nprocession with eight thousand waggons instead of eight, he could \nnot have half astonished the people so much as by this great \nchange.  It soon caused him to be more talked about as an \nArchbishop than he had been as a Chancellor.\n\nThe King was very angry; and was made still more so, when the new \nArchbishop, claiming various estates from the nobles as being \nrightfully Church property, required the King himself, for the same \nreason, to give up Rochester Castle, and Rochester City too.  Not \nsatisfied with this, he declared that no power but himself should \nappoint a priest to any Church in the part of England over which he \nwas Archbishop; and when a certain gentleman of Kent made such an \nappointment, as he claimed to have the right to do, Thomas a Becket \nexcommunicated him.\n\nExcommunication was, next to the Interdict I told you of at the \nclose of the last chapter, the great weapon of the clergy.  It \nconsisted in declaring the person who was excommunicated, an \noutcast from the Church and from all religious offices; and in \ncursing him all over, from the top of his head to the sole of his \nfoot, whether he was standing up, lying down, sitting, kneeling, \nwalking, running, hopping, jumping, gaping, coughing, sneezing, or \nwhatever else he was doing.  This unchristian nonsense would of \ncourse have made no sort of difference to the person cursed - who \ncould say his prayers at home if he were shut out of church, and \nwhom none but GOD could judge - but for the fears and superstitions \nof the people, who avoided excommunicated persons, and made their \nlives unhappy.  So, the King said to the New Archbishop, 'Take off \nthis Excommunication from this gentleman of Kent.'  To which the \nArchbishop replied, 'I shall do no such thing.'\n\nThe quarrel went on.  A priest in Worcestershire committed a most \ndreadful murder, that aroused the horror of the whole nation.  The \nKing demanded to have this wretch delivered up, to be tried in the \nsame court and in the same way as any other murderer.  The \nArchbishop refused, and kept him in the Bishop's prison.  The King, \nholding a solemn assembly in Westminster Hall, demanded that in \nfuture all priests found guilty before their Bishops of crimes \nagainst the law of the land should be considered priests no longer, \nand should be delivered over to the law of the land for punishment.  \nThe Archbishop again refused.  The King required to know whether \nthe clergy would obey the ancient customs of the country?  Every \npriest there, but one, said, after Thomas a Becket, 'Saving my \norder.'  This really meant that they would only obey those customs \nwhen they did not interfere with their own claims; and the King \nwent out of the Hall in great wrath.\n\nSome of the clergy began to be afraid, now, that they were going \ntoo far.  Though Thomas a Becket was otherwise as unmoved as \nWestminster Hall, they prevailed upon him, for the sake of their \nfears, to go to the King at Woodstock, and promise to observe the \nancient customs of the country, without saying anything about his \norder.  The King received this submission favourably, and summoned \na great council of the clergy to meet at the Castle of Clarendon, \nby Salisbury.  But when the council met, the Archbishop again \ninsisted on the words 'saying my order;' and he still insisted, \nthough lords entreated him, and priests wept before him and knelt \nto him, and an adjoining room was thrown open, filled with armed \nsoldiers of the King, to threaten him.  At length he gave way, for \nthat time, and the ancient customs (which included what the King \nhad demanded in vain) were stated in writing, and were signed and \nsealed by the chief of the clergy, and were called the \nConstitutions of Clarendon.\n\nThe quarrel went on, for all that.  The Archbishop tried to see the \nKing.  The King would not see him.  The Archbishop tried to escape \nfrom England.  The sailors on the coast would launch no boat to \ntake him away.  Then, he again resolved to do his worst in \nopposition to the King, and began openly to set the ancient customs \nat defiance.\n\nThe King summoned him before a great council at Northampton, where \nhe accused him of high treason, and made a claim against him, which \nwas not a just one, for an enormous sum of money.  Thomas a Becket \nwas alone against the whole assembly, and the very Bishops advised \nhim to resign his office and abandon his contest with the King.  \nHis great anxiety and agitation stretched him on a sick-bed for two \ndays, but he was still undaunted.  He went to the adjourned \ncouncil, carrying a great cross in his right hand, and sat down \nholding it erect before him.  The King angrily retired into an \ninner room.  The whole assembly angrily retired and left him there.  \nBut there he sat.  The Bishops came out again in a body, and \nrenounced him as a traitor.  He only said, 'I hear!' and sat there \nstill.  They retired again into the inner room, and his trial \nproceeded without him.  By-and-by, the Earl of Leicester, heading \nthe barons, came out to read his sentence.  He refused to hear it, \ndenied the power of the court, and said he would refer his cause to \nthe Pope.  As he walked out of the hall, with the cross in his \nhand, some of those present picked up rushes - rushes were strewn \nupon the floors in those days by way of carpet - and threw them at \nhim.  He proudly turned his head, and said that were he not \nArchbishop, he would chastise those cowards with the sword he had \nknown how to use in bygone days.  He then mounted his horse, and \nrode away, cheered and surrounded by the common people, to whom he \nthrew open his house that night and gave a supper, supping with \nthem himself.  That same night he secretly departed from the town; \nand so, travelling by night and hiding by day, and calling himself \n'Brother Dearman,' got away, not without difficulty, to Flanders.\n\nThe struggle still went on.  The angry King took possession of the \nrevenues of the archbishopric, and banished all the relations and \nservants of Thomas a Becket, to the number of four hundred.  The \nPope and the French King both protected him, and an abbey was \nassigned for his residence.  Stimulated by this support, Thomas a \nBecket, on a great festival day, formally proceeded to a great \nchurch crowded with people, and going up into the pulpit publicly \ncursed and excommunicated all who had supported the Constitutions \nof Clarendon:  mentioning many English noblemen by name, and not \ndistantly hinting at the King of England himself.\n\nWhen intelligence of this new affront was carried to the King in \nhis chamber, his passion was so furious that he tore his clothes, \nand rolled like a madman on his bed of straw and rushes.  But he \nwas soon up and doing.  He ordered all the ports and coasts of \nEngland to be narrowly watched, that no letters of Interdict might \nbe brought into the kingdom; and sent messengers and bribes to the \nPope's palace at Rome.  Meanwhile, Thomas a Becket, for his part, \nwas not idle at Rome, but constantly employed his utmost arts in \nhis own behalf.  Thus the contest stood, until there was peace \nbetween France and England (which had been for some time at war), \nand until the two children of the two Kings were married in \ncelebration of it.  Then, the French King brought about a meeting \nbetween Henry and his old favourite, so long his enemy.\n\nEven then, though Thomas a Becket knelt before the King, he was \nobstinate and immovable as to those words about his order.  King \nLouis of France was weak enough in his veneration for Thomas a \nBecket and such men, but this was a little too much for him.  He \nsaid that a Becket 'wanted to be greater than the saints and better \nthan St. Peter,' and rode away from him with the King of England.  \nHis poor French Majesty asked a Becket's pardon for so doing, \nhowever, soon afterwards, and cut a very pitiful figure.\n\nAt last, and after a world of trouble, it came to this.  There was \nanother meeting on French ground between King Henry and Thomas a \nBecket, and it was agreed that Thomas a Becket should be Archbishop \nof Canterbury, according to the customs of former Archbishops, and \nthat the King should put him in possession of the revenues of that \npost.  And now, indeed, you might suppose the struggle at an end, \nand Thomas a Becket at rest.  NO, not even yet.  For Thomas a \nBecket hearing, by some means, that King Henry, when he was in \ndread of his kingdom being placed under an interdict, had had his \neldest son Prince Henry secretly crowned, not only persuaded the \nPope to suspend the Archbishop of York who had performed that \nceremony, and to excommunicate the Bishops who had assisted at it, \nbut sent a messenger of his own into England, in spite of all the \nKing's precautions along the coast, who delivered the letters of \nexcommunication into the Bishops' own hands.  Thomas a Becket then \ncame over to England himself, after an absence of seven years.  He \nwas privately warned that it was dangerous to come, and that an \nireful knight, named RANULF DE BROC, had threatened that he should \nnot live to eat a loaf of bread in England; but he came.\n\nThe common people received him well, and marched about with him in \na soldierly way, armed with such rustic weapons as they could get.  \nHe tried to see the young prince who had once been his pupil, but \nwas prevented.  He hoped for some little support among the nobles \nand priests, but found none.  He made the most of the peasants who \nattended him, and feasted them, and went from Canterbury to Harrow-\non-the-Hill, and from Harrow-on-the-Hill back to Canterbury, and on \nChristmas Day preached in the Cathedral there, and told the people \nin his sermon that he had come to die among them, and that it was \nlikely he would be murdered.  He had no fear, however - or, if he \nhad any, he had much more obstinacy - for he, then and there, \nexcommunicated three of his enemies, of whom Ranulf de Broc, the \nireful knight, was one.\n\nAs men in general had no fancy for being cursed, in their sitting \nand walking, and gaping and sneezing, and all the rest of it, it \nwas very natural in the persons so freely excommunicated to \ncomplain to the King.  It was equally natural in the King, who had \nhoped that this troublesome opponent was at last quieted, to fall \ninto a mighty rage when he heard of these new affronts; and, on the \nArchbishop of York telling him that he never could hope for rest \nwhile Thomas a Becket lived, to cry out hastily before his court, \n'Have I no one here who will deliver me from this man?'  There were \nfour knights present, who, hearing the King's words, looked at one \nanother, and went out.\n\nThe names of these knights were REGINALD FITZURSE, WILLIAM TRACY, \nHUGH DE MORVILLE, and RICHARD BRITO; three of whom had been in the \ntrain of Thomas a Becket in the old days of his splendour.  They \nrode away on horseback, in a very secret manner, and on the third \nday after Christmas Day arrived at Saltwood House, not far from \nCanterbury, which belonged to the family of Ranulf de Broc.  They \nquietly collected some followers here, in case they should need \nany; and proceeding to Canterbury, suddenly appeared (the four \nknights and twelve men) before the Archbishop, in his own house, at \ntwo o'clock in the afternoon.  They neither bowed nor spoke, but \nsat down on the floor in silence, staring at the Archbishop.\n\nThomas a Becket said, at length, 'What do you want?'\n\n'We want,' said Reginald Fitzurse, 'the excommunication taken from \nthe Bishops, and you to answer for your offences to the King.'  \nThomas a Becket defiantly replied, that the power of the clergy was \nabove the power of the King.  That it was not for such men as they \nwere, to threaten him.  That if he were threatened by all the \nswords in England, he would never yield.\n\n'Then we will do more than threaten!' said the knights.  And they \nwent out with the twelve men, and put on their armour, and drew \ntheir shining swords, and came back.\n\nHis servants, in the meantime, had shut up and barred the great \ngate of the palace.  At first, the knights tried to shatter it with \ntheir battle-axes; but, being shown a window by which they could \nenter, they let the gate alone, and climbed in that way.  While \nthey were battering at the door, the attendants of Thomas a Becket \nhad implored him to take refuge in the Cathedral; in which, as a \nsanctuary or sacred place, they thought the knights would dare to \ndo no violent deed.  He told them, again and again, that he would \nnot stir.  Hearing the distant voices of the monks singing the \nevening service, however, he said it was now his duty to attend, \nand therefore, and for no other reason, he would go.\n\nThere was a near way between his Palace and the Cathedral, by some \nbeautiful old cloisters which you may yet see.  He went into the \nCathedral, without any hurry, and having the Cross carried before \nhim as usual.  When he was safely there, his servants would have \nfastened the door, but he said NO! it was the house of God and not \na fortress.\n\nAs he spoke, the shadow of Reginald Fitzurse appeared in the \nCathedral doorway, darkening the little light there was outside, on \nthe dark winter evening.  This knight said, in a strong voice, \n'Follow me, loyal servants of the King!'  The rattle of the armour \nof the other knights echoed through the Cathedral, as they came \nclashing in.\n\nIt was so dark, in the lofty aisles and among the stately pillars \nof the church, and there were so many hiding-places in the crypt \nbelow and in the narrow passages above, that Thomas a Becket might \neven at that pass have saved himself if he would.  But he would \nnot.  He told the monks resolutely that he would not.  And though \nthey all dispersed and left him there with no other follower than \nEDWARD GRYME, his faithful cross-bearer, he was as firm then, as \never he had been in his life.\n\nThe knights came on, through the darkness, making a terrible noise \nwith their armed tread upon the stone pavement of the church.  \n'Where is the traitor?' they cried out.  He made no answer.  But \nwhen they cried, 'Where is the Archbishop?' he said proudly, 'I am \nhere!' and came out of the shade and stood before them.\n\nThe knights had no desire to kill him, if they could rid the King \nand themselves of him by any other means.  They told him he must \neither fly or go with them.  He said he would do neither; and he \nthrew William Tracy off with such force when he took hold of his \nsleeve, that Tracy reeled again.  By his reproaches and his \nsteadiness, he so incensed them, and exasperated their fierce \nhumour, that Reginald Fitzurse, whom he called by an ill name, \nsaid, 'Then die!' and struck at his head.  But the faithful Edward \nGryme put out his arm, and there received the main force of the \nblow, so that it only made his master bleed.  Another voice from \namong the knights again called to Thomas a Becket to fly; but, with \nhis blood running down his face, and his hands clasped, and his \nhead bent, he commanded himself to God, and stood firm.  Then they \ncruelly killed him close to the altar of St. Bennet; and his body \nfell upon the pavement, which was dirtied with his blood and \nbrains.\n\nIt is an awful thing to think of the murdered mortal, who had so \nshowered his curses about, lying, all disfigured, in the church, \nwhere a few lamps here and there were but red specks on a pall of \ndarkness; and to think of the guilty knights riding away on \nhorseback, looking over their shoulders at the dim Cathedral, and \nremembering what they had left inside.\n\n\nPART THE SECOND\n\n\nWHEN the King heard how Thomas a Becket had lost his life in \nCanterbury Cathedral, through the ferocity of the four Knights, he \nwas filled with dismay.  Some have supposed that when the King \nspoke those hasty words, 'Have I no one here who will deliver me \nfrom this man?' he wished, and meant a Becket to be slain.  But few \nthings are more unlikely; for, besides that the King was not \nnaturally cruel (though very passionate), he was wise, and must \nhave known full well what any stupid man in his dominions must have \nknown, namely, that such a murder would rouse the Pope and the \nwhole Church against him.\n\nHe sent respectful messengers to the Pope, to represent his \ninnocence (except in having uttered the hasty words); and he swore \nsolemnly and publicly to his innocence, and contrived in time to \nmake his peace.  As to the four guilty Knights, who fled into \nYorkshire, and never again dared to show themselves at Court, the \nPope excommunicated them; and they lived miserably for some time, \nshunned by all their countrymen.  At last, they went humbly to \nJerusalem as a penance, and there died and were buried.\n\nIt happened, fortunately for the pacifying of the Pope, that an \nopportunity arose very soon after the murder of a Becket, for the \nKing to declare his power in Ireland - which was an acceptable \nundertaking to the Pope, as the Irish, who had been converted to \nChristianity by one Patricius (otherwise Saint Patrick) long ago, \nbefore any Pope existed, considered that the Pope had nothing at \nall to do with them, or they with the Pope, and accordingly refused \nto pay him Peter's Pence, or that tax of a penny a house which I \nhave elsewhere mentioned.  The King's opportunity arose in this \nway.\n\nThe Irish were, at that time, as barbarous a people as you can well \nimagine.  They were continually quarrelling and fighting, cutting \none another's throats, slicing one another's noses, burning one \nanother's houses, carrying away one another's wives, and committing \nall sorts of violence.  The country was divided into five kingdoms \n- DESMOND, THOMOND, CONNAUGHT, ULSTER, and LEINSTER - each governed \nby a separate King, of whom one claimed to be the chief of the \nrest.  Now, one of these Kings, named DERMOND MAC MURROUGH (a wild \nkind of name, spelt in more than one wild kind of way), had carried \noff the wife of a friend of his, and concealed her on an island in \na bog.  The friend resenting this (though it was quite the custom \nof the country), complained to the chief King, and, with the chief \nKing's help, drove Dermond Mac Murrough out of his dominions.  \nDermond came over to England for revenge; and offered to hold his \nrealm as a vassal of King Henry, if King Henry would help him to \nregain it.  The King consented to these terms; but only assisted \nhim, then, with what were called Letters Patent, authorising any \nEnglish subjects who were so disposed, to enter into his service, \nand aid his cause.\n\nThere was, at Bristol, a certain EARL RICHARD DE CLARE, called \nSTRONGBOW; of no very good character; needy and desperate, and \nready for anything that offered him a chance of improving his \nfortunes.  There were, in South Wales, two other broken knights of \nthe same good-for-nothing sort, called ROBERT FITZ-STEPHEN, and \nMAURICE FITZ-GERALD.  These three, each with a small band of \nfollowers, took up Dermond's cause; and it was agreed that if it \nproved successful, Strongbow should marry Dermond's daughter EVA, \nand be declared his heir.\n\nThe trained English followers of these knights were so superior in \nall the discipline of battle to the Irish, that they beat them \nagainst immense superiority of numbers.  In one fight, early in the \nwar, they cut off three hundred heads, and laid them before Mac \nMurrough; who turned them every one up with his hands, rejoicing, \nand, coming to one which was the head of a man whom he had much \ndisliked, grasped it by the hair and ears, and tore off the nose \nand lips with his teeth.  You may judge from this, what kind of a \ngentleman an Irish King in those times was.  The captives, all \nthrough this war, were horribly treated; the victorious party \nmaking nothing of breaking their limbs, and casting them into the \nsea from the tops of high rocks.  It was in the midst of the \nmiseries and cruelties attendant on the taking of Waterford, where \nthe dead lay piled in the streets, and the filthy gutters ran with \nblood, that Strongbow married Eva.  An odious marriage-company \nthose mounds of corpse's must have made, I think, and one quite \nworthy of the young lady's father.\n\nHe died, after Waterford and Dublin had been taken, and various \nsuccesses achieved; and Strongbow became King of Leinster.  Now \ncame King Henry's opportunity.  To restrain the growing power of \nStrongbow, he himself repaired to Dublin, as Strongbow's Royal \nMaster, and deprived him of his kingdom, but confirmed him in the \nenjoyment of great possessions.  The King, then, holding state in \nDublin, received the homage of nearly all the Irish Kings and \nChiefs, and so came home again with a great addition to his \nreputation as Lord of Ireland, and with a new claim on the favour \nof the Pope.  And now, their reconciliation was completed - more \neasily and mildly by the Pope, than the King might have expected, I \nthink.\n\nAt this period of his reign, when his troubles seemed so few and \nhis prospects so bright, those domestic miseries began which \ngradually made the King the most unhappy of men, reduced his great \nspirit, wore away his health, and broke his heart.\n\nHe had four sons.  HENRY, now aged eighteen - his secret crowning \nof whom had given such offence to Thomas a Becket.  RICHARD, aged \nsixteen; GEOFFREY, fifteen; and JOHN, his favourite, a young boy \nwhom the courtiers named LACKLAND, because he had no inheritance, \nbut to whom the King meant to give the Lordship of Ireland.  All \nthese misguided boys, in their turn, were unnatural sons to him, \nand unnatural brothers to each other.  Prince Henry, stimulated by \nthe French King, and by his bad mother, Queen Eleanor, began the \nundutiful history,\n\nFirst, he demanded that his young wife, MARGARET, the French King's \ndaughter, should be crowned as well as he.  His father, the King, \nconsented, and it was done.  It was no sooner done, than he \ndemanded to have a part of his father's dominions, during his \nfather's life.  This being refused, he made off from his father in \nthe night, with his bad heart full of bitterness, and took refuge \nat the French King's Court.  Within a day or two, his brothers \nRichard and Geoffrey followed.  Their mother tried to join them - \nescaping in man's clothes - but she was seized by King Henry's men, \nand immured in prison, where she lay, deservedly, for sixteen \nyears.  Every day, however, some grasping English noblemen, to whom \nthe King's protection of his people from their avarice and \noppression had given offence, deserted him and joined the Princes.  \nEvery day he heard some fresh intelligence of the Princes levying \narmies against him; of Prince Henry's wearing a crown before his \nown ambassadors at the French Court, and being called the Junior \nKing of England; of all the Princes swearing never to make peace \nwith him, their father, without the consent and approval of the \nBarons of France.  But, with his fortitude and energy unshaken, \nKing Henry met the shock of these disasters with a resolved and \ncheerful face.  He called upon all Royal fathers who had sons, to \nhelp him, for his cause was theirs; he hired, out of his riches, \ntwenty thousand men to fight the false French King, who stirred his \nown blood against him; and he carried on the war with such vigour, \nthat Louis soon proposed a conference to treat for peace.\n\nThe conference was held beneath an old wide-spreading green elm-\ntree, upon a plain in France.  It led to nothing.  The war \nrecommenced.  Prince Richard began his fighting career, by leading \nan army against his father; but his father beat him and his army \nback; and thousands of his men would have rued the day in which \nthey fought in such a wicked cause, had not the King received news \nof an invasion of England by the Scots, and promptly come home \nthrough a great storm to repress it.  And whether he really began \nto fear that he suffered these troubles because a Becket had been \nmurdered; or whether he wished to rise in the favour of the Pope, \nwho had now declared a Becket to be a saint, or in the favour of \nhis own people, of whom many believed that even a Becket's \nsenseless tomb could work miracles, I don't know:  but the King no \nsooner landed in England than he went straight to Canterbury; and \nwhen he came within sight of the distant Cathedral, he dismounted \nfrom his horse, took off his shoes, and walked with bare and \nbleeding feet to a Becket's grave.  There, he lay down on the \nground, lamenting, in the presence of many people; and by-and-by he \nwent into the Chapter House, and, removing his clothes from his \nback and shoulders, submitted himself to be beaten with knotted \ncords (not beaten very hard, I dare say though) by eighty Priests, \none after another.  It chanced that on the very day when the King \nmade this curious exhibition of himself, a complete victory was \nobtained over the Scots; which very much delighted the Priests, who \nsaid that it was won because of his great example of repentance.  \nFor the Priests in general had found out, since a Becket's death, \nthat they admired him of all things - though they had hated him \nvery cordially when he was alive.\n\nThe Earl of Flanders, who was at the head of the base conspiracy of \nthe King's undutiful sons and their foreign friends, took the \nopportunity of the King being thus employed at home, to lay siege \nto Rouen, the capital of Normandy.  But the King, who was \nextraordinarily quick and active in all his movements, was at \nRouen, too, before it was supposed possible that he could have left \nEngland; and there he so defeated the said Earl of Flanders, that \nthe conspirators proposed peace, and his bad sons Henry and \nGeoffrey submitted.  Richard resisted for six weeks; but, being \nbeaten out of castle after castle, he at last submitted too, and \nhis father forgave him.\n\nTo forgive these unworthy princes was only to afford them \nbreathing-time for new faithlessness.  They were so false, \ndisloyal, and dishonourable, that they were no more to be trusted \nthan common thieves.  In the very next year, Prince Henry rebelled \nagain, and was again forgiven.  In eight years more, Prince Richard \nrebelled against his elder brother; and Prince Geoffrey infamously \nsaid that the brothers could never agree well together, unless they \nwere united against their father.  In the very next year after \ntheir reconciliation by the King, Prince Henry again rebelled \nagainst his father; and again submitted, swearing to be true; and \nwas again forgiven; and again rebelled with Geoffrey.\n\nBut the end of this perfidious Prince was come.  He fell sick at a \nFrench town; and his conscience terribly reproaching him with his \nbaseness, he sent messengers to the King his father, imploring him \nto come and see him, and to forgive him for the last time on his \nbed of death.  The generous King, who had a royal and forgiving \nmind towards his children always, would have gone; but this Prince \nhad been so unnatural, that the noblemen about the King suspected \ntreachery, and represented to him that he could not safely trust \nhis life with such a traitor, though his own eldest son.  Therefore \nthe King sent him a ring from off his finger as a token of \nforgiveness; and when the Prince had kissed it, with much grief and \nmany tears, and had confessed to those around him how bad, and \nwicked, and undutiful a son he had been; he said to the attendant \nPriests:  'O, tie a rope about my body, and draw me out of bed, and \nlay me down upon a bed of ashes, that I may die with prayers to God \nin a repentant manner!'  And so he died, at twenty-seven years old.\n\nThree years afterwards, Prince Geoffrey, being unhorsed at a \ntournament, had his brains trampled out by a crowd of horses \npassing over him.  So, there only remained Prince Richard, and \nPrince John - who had grown to be a young man now, and had solemnly \nsworn to be faithful to his father.  Richard soon rebelled again, \nencouraged by his friend the French King, PHILIP THE SECOND (son of \nLouis, who was dead); and soon submitted and was again forgiven, \nswearing on the New Testament never to rebel again; and in another \nyear or so, rebelled again; and, in the presence of his father, \nknelt down on his knee before the King of France; and did the \nFrench King homage:  and declared that with his aid he would \npossess himself, by force, of all his father's French dominions.\n\nAnd yet this Richard called himself a soldier of Our Saviour!  And \nyet this Richard wore the Cross, which the Kings of France and \nEngland had both taken, in the previous year, at a brotherly \nmeeting underneath the old wide-spreading elm-tree on the plain, \nwhen they had sworn (like him) to devote themselves to a new \nCrusade, for the love and honour of the Truth!\n\nSick at heart, wearied out by the falsehood of his sons, and almost \nready to lie down and die, the unhappy King who had so long stood \nfirm, began to fail.  But the Pope, to his honour, supported him; \nand obliged the French King and Richard, though successful in \nfight, to treat for peace.  Richard wanted to be Crowned King of \nEngland, and pretended that he wanted to be married (which he \nreally did not) to the French King's sister, his promised wife, \nwhom King Henry detained in England.  King Henry wanted, on the \nother hand, that the French King's sister should be married to his \nfavourite son, John:  the only one of his sons (he said) who had \nnever rebelled against him.  At last King Henry, deserted by his \nnobles one by one, distressed, exhausted, broken-hearted, consented \nto establish peace.\n\nOne final heavy sorrow was reserved for him, even yet.  When they \nbrought him the proposed treaty of peace, in writing, as he lay \nvery ill in bed, they brought him also the list of the deserters \nfrom their allegiance, whom he was required to pardon.  The first \nname upon this list was John, his favourite son, in whom he had \ntrusted to the last.\n\n'O John! child of my heart!' exclaimed the King, in a great agony \nof mind.  'O John, whom I have loved the best!  O John, for whom I \nhave contended through these many troubles!  Have you betrayed me \ntoo!'  And then he lay down with a heavy groan, and said, 'Now let \nthe world go as it will.  I care for nothing more!'\n\nAfter a time, he told his attendants to take him to the French town \nof Chinon - a town he had been fond of, during many years.  But he \nwas fond of no place now; it was too true that he could care for \nnothing more upon this earth.  He wildly cursed the hour when he \nwas born, and cursed the children whom he left behind him; and \nexpired.\n\nAs, one hundred years before, the servile followers of the Court \nhad abandoned the Conqueror in the hour of his death, so they now \nabandoned his descendant.  The very body was stripped, in the \nplunder of the Royal chamber; and it was not easy to find the means \nof carrying it for burial to the abbey church of Fontevraud.\n\nRichard was said in after years, by way of flattery, to have the \nheart of a Lion.  It would have been far better, I think, to have \nhad the heart of a Man.  His heart, whatever it was, had cause to \nbeat remorsefully within his breast, when he came - as he did - \ninto the solemn abbey, and looked on his dead father's uncovered \nface.  His heart, whatever it was, had been a black and perjured \nheart, in all its dealings with the deceased King, and more \ndeficient in a single touch of tenderness than any wild beast's in \nthe forest.\n\nThere is a pretty story told of this Reign, called the story of \nFAIR ROSAMOND.  It relates how the King doted on Fair Rosamond, who \nwas the loveliest girl in all the world; and how he had a beautiful \nBower built for her in a Park at Woodstock; and how it was erected \nin a labyrinth, and could only be found by a clue of silk.  How the \nbad Queen Eleanor, becoming jealous of Fair Rosamond, found out the \nsecret of the clue, and one day, appeared before her, with a dagger \nand a cup of poison, and left her to the choice between those \ndeaths.  How Fair Rosamond, after shedding many piteous tears and \noffering many useless prayers to the cruel Queen, took the poison, \nand fell dead in the midst of the beautiful bower, while the \nunconscious birds sang gaily all around her.\n\nNow, there WAS a fair Rosamond, and she was (I dare say) the \nloveliest girl in all the world, and the King was certainly very \nfond of her, and the bad Queen Eleanor was certainly made jealous.  \nBut I am afraid - I say afraid, because I like the story so much - \nthat there was no bower, no labyrinth, no silken clue, no dagger, \nno poison.  I am afraid fair Rosamond retired to a nunnery near \nOxford, and died there, peaceably; her sister-nuns hanging a silken \ndrapery over her tomb, and often dressing it with flowers, in \nremembrance of the youth and beauty that had enchanted the King \nwhen he too was young, and when his life lay fair before him.\n\nIt was dark and ended now; faded and gone.  Henry Plantagenet lay \nquiet in the abbey church of Fontevraud, in the fifty-seventh year \nof his age - never to be completed - after governing England well, \nfor nearly thirty-five years.\n\n\n\nCHAPTER XIII - ENGLAND UNDER RICHARD THE FIRST, CALLED THE LION-\nHEART\n\n\n\nIN the year of our Lord one thousand one hundred and eighty-nine, \nRichard of the Lion Heart succeeded to the throne of King Henry the \nSecond, whose paternal heart he had done so much to break.  He had \nbeen, as we have seen, a rebel from his boyhood; but, the moment he \nbecame a king against whom others might rebel, he found out that \nrebellion was a great wickedness.  In the heat of this pious \ndiscovery, he punished all the leading people who had befriended \nhim against his father.  He could scarcely have done anything that \nwould have been a better instance of his real nature, or a better \nwarning to fawners and parasites not to trust in lion-hearted \nprinces.\n\nHe likewise put his late father's treasurer in chains, and locked \nhim up in a dungeon from which he was not set free until he had \nrelinquished, not only all the Crown treasure, but all his own \nmoney too.  So, Richard certainly got the Lion's share of the \nwealth of this wretched treasurer, whether he had a Lion's heart or \nnot.\n\nHe was crowned King of England, with great pomp, at Westminster:  \nwalking to the Cathedral under a silken canopy stretched on the \ntops of four lances, each carried by a great lord.  On the day of \nhis coronation, a dreadful murdering of the Jews took place, which \nseems to have given great delight to numbers of savage persons \ncalling themselves Christians.  The King had issued a proclamation \nforbidding the Jews (who were generally hated, though they were the \nmost useful merchants in England) to appear at the ceremony; but as \nthey had assembled in London from all parts, bringing presents to \nshow their respect for the new Sovereign, some of them ventured \ndown to Westminster Hall with their gifts; which were very readily \naccepted.  It is supposed, now, that some noisy fellow in the \ncrowd, pretending to be a very delicate Christian, set up a howl at \nthis, and struck a Jew who was trying to get in at the Hall door \nwith his present.  A riot arose.  The Jews who had got into the \nHall, were driven forth; and some of the rabble cried out that the \nnew King had commanded the unbelieving race to be put to death.  \nThereupon the crowd rushed through the narrow streets of the city, \nslaughtering all the Jews they met; and when they could find no \nmore out of doors (on account of their having fled to their houses, \nand fastened themselves in), they ran madly about, breaking open \nall the houses where the Jews lived, rushing in and stabbing or \nspearing them, sometimes even flinging old people and children out \nof window into blazing fires they had lighted up below.  This great \ncruelty lasted four-and-twenty hours, and only three men were \npunished for it.  Even they forfeited their lives not for murdering \nand robbing the Jews, but for burning the houses of some \nChristians.\n\nKing Richard, who was a strong, restless, burly man, with one idea \nalways in his head, and that the very troublesome idea of breaking \nthe heads of other men, was mightily impatient to go on a Crusade \nto the Holy Land, with a great army.  As great armies could not be \nraised to go, even to the Holy Land, without a great deal of money, \nhe sold the Crown domains, and even the high offices of State; \nrecklessly appointing noblemen to rule over his English subjects, \nnot because they were fit to govern, but because they could pay \nhigh for the privilege.  In this way, and by selling pardons at a \ndear rate and by varieties of avarice and oppression, he scraped \ntogether a large treasure.  He then appointed two Bishops to take \ncare of his kingdom in his absence, and gave great powers and \npossessions to his brother John, to secure his friendship.  John \nwould rather have been made Regent of England; but he was a sly \nman, and friendly to the expedition; saying to himself, no doubt, \n'The more fighting, the more chance of my brother being killed; and \nwhen he IS killed, then I become King John!'\n\nBefore the newly levied army departed from England, the recruits \nand the general populace distinguished themselves by astonishing \ncruelties on the unfortunate Jews:  whom, in many large towns, they \nmurdered by hundreds in the most horrible manner.\n\nAt York, a large body of Jews took refuge in the Castle, in the \nabsence of its Governor, after the wives and children of many of \nthem had been slain before their eyes.  Presently came the \nGovernor, and demanded admission.  'How can we give it thee, O \nGovernor!' said the Jews upon the walls, 'when, if we open the gate \nby so much as the width of a foot, the roaring crowd behind thee \nwill press in and kill us?'\n\nUpon this, the unjust Governor became angry, and told the people \nthat he approved of their killing those Jews; and a mischievous \nmaniac of a friar, dressed all in white, put himself at the head of \nthe assault, and they assaulted the Castle for three days.\n\nThen said JOCEN, the head-Jew (who was a Rabbi or Priest), to the \nrest, 'Brethren, there is no hope for us with the Christians who \nare hammering at the gates and walls, and who must soon break in.  \nAs we and our wives and children must die, either by Christian \nhands, or by our own, let it be by our own.  Let us destroy by fire \nwhat jewels and other treasure we have here, then fire the castle, \nand then perish!'\n\nA few could not resolve to do this, but the greater part complied.  \nThey made a blazing heap of all their valuables, and, when those \nwere consumed, set the castle in flames.  While the flames roared \nand crackled around them, and shooting up into the sky, turned it \nblood-red, Jocen cut the throat of his beloved wife, and stabbed \nhimself.  All the others who had wives or children, did the like \ndreadful deed.  When the populace broke in, they found (except the \ntrembling few, cowering in corners, whom they soon killed) only \nheaps of greasy cinders, with here and there something like part of \nthe blackened trunk of a burnt tree, but which had lately been a \nhuman creature, formed by the beneficent hand of the Creator as \nthey were.\n\nAfter this bad beginning, Richard and his troops went on, in no \nvery good manner, with the Holy Crusade.  It was undertaken jointly \nby the King of England and his old friend Philip of France.  They \ncommenced the business by reviewing their forces, to the number of \none hundred thousand men.  Afterwards, they severally embarked \ntheir troops for Messina, in Sicily, which was appointed as the \nnext place of meeting.\n\nKing Richard's sister had married the King of this place, but he \nwas dead:  and his uncle TANCRED had usurped the crown, cast the \nRoyal Widow into prison, and possessed himself of her estates.  \nRichard fiercely demanded his sister's release, the restoration of \nher lands, and (according to the Royal custom of the Island) that \nshe should have a golden chair, a golden table, four-and-twenty \nsilver cups, and four-and-twenty silver dishes.  As he was too \npowerful to be successfully resisted, Tancred yielded to his \ndemands; and then the French King grew jealous, and complained that \nthe English King wanted to be absolute in the Island of Messina and \neverywhere else.  Richard, however, cared little or nothing for \nthis complaint; and in consideration of a present of twenty \nthousand pieces of gold, promised his pretty little nephew ARTHUR, \nthen a child of two years old, in marriage to Tancred's daughter.  \nWe shall hear again of pretty little Arthur by-and-by.\n\nThis Sicilian affair arranged without anybody's brains being \nknocked out (which must have rather disappointed him), King Richard \ntook his sister away, and also a fair lady named BERENGARIA, with \nwhom he had fallen in love in France, and whom his mother, Queen \nEleanor (so long in prison, you remember, but released by Richard \non his coming to the Throne), had brought out there to be his wife; \nand sailed with them for Cyprus.\n\nHe soon had the pleasure of fighting the King of the Island of \nCyprus, for allowing his subjects to pillage some of the English \ntroops who were shipwrecked on the shore; and easily conquering \nthis poor monarch, he seized his only daughter, to be a companion \nto the lady Berengaria, and put the King himself into silver \nfetters.  He then sailed away again with his mother, sister, wife, \nand the captive princess; and soon arrived before the town of Acre, \nwhich the French King with his fleet was besieging from the sea.  \nBut the French King was in no triumphant condition, for his army \nhad been thinned by the swords of the Saracens, and wasted by the \nplague; and SALADIN, the brave Sultan of the Turks, at the head of \na numerous army, was at that time gallantly defending the place \nfrom the hills that rise above it.\n\nWherever the united army of Crusaders went, they agreed in few \npoints except in gaming, drinking, and quarrelling, in a most \nunholy manner; in debauching the people among whom they tarried, \nwhether they were friends or foes; and in carrying disturbance and \nruin into quiet places.  The French King was jealous of the English \nKing, and the English King was jealous of the French King, and the \ndisorderly and violent soldiers of the two nations were jealous of \none another; consequently, the two Kings could not at first agree, \neven upon a joint assault on Acre; but when they did make up their \nquarrel for that purpose, the Saracens promised to yield the town, \nto give up to the Christians the wood of the Holy Cross, to set at \nliberty all their Christian captives, and to pay two hundred \nthousand pieces of gold.  All this was to be done within forty \ndays; but, not being done, King Richard ordered some three thousand \nSaracen prisoners to be brought out in the front of his camp, and \nthere, in full view of their own countrymen, to be butchered.\n\nThe French King had no part in this crime; for he was by that time \ntravelling homeward with the greater part of his men; being \noffended by the overbearing conduct of the English King; being \nanxious to look after his own dominions; and being ill, besides, \nfrom the unwholesome air of that hot and sandy country.  King \nRichard carried on the war without him; and remained in the East, \nmeeting with a variety of adventures, nearly a year and a half.  \nEvery night when his army was on the march, and came to a halt, the \nheralds cried out three times, to remind all the soldiers of the \ncause in which they were engaged, 'Save the Holy Sepulchre!' and \nthen all the soldiers knelt and said 'Amen!'  Marching or \nencamping, the army had continually to strive with the hot air of \nthe glaring desert, or with the Saracen soldiers animated and \ndirected by the brave Saladin, or with both together.  Sickness and \ndeath, battle and wounds, were always among them; but through every \ndifficulty King Richard fought like a giant, and worked like a \ncommon labourer.  Long and long after he was quiet in his grave, \nhis terrible battle-axe, with twenty English pounds of English \nsteel in its mighty head, was a legend among the Saracens; and when \nall the Saracen and Christian hosts had been dust for many a year, \nif a Saracen horse started at any object by the wayside, his rider \nwould exclaim, 'What dost thou fear, Fool?  Dost thou think King \nRichard is behind it?'\n\nNo one admired this King's renown for bravery more than Saladin \nhimself, who was a generous and gallant enemy.  When Richard lay \nill of a fever, Saladin sent him fresh fruits from Damascus, and \nsnow from the mountain-tops.  Courtly messages and compliments were \nfrequently exchanged between them - and then King Richard would \nmount his horse and kill as many Saracens as he could; and Saladin \nwould mount his, and kill as many Christians as he could.  In this \nway King Richard fought to his heart's content at Arsoof and at \nJaffa; and finding himself with nothing exciting to do at Ascalon, \nexcept to rebuild, for his own defence, some fortifications there \nwhich the Saracens had destroyed, he kicked his ally the Duke of \nAustria, for being too proud to work at them.\n\nThe army at last came within sight of the Holy City of Jerusalem; \nbut, being then a mere nest of jealousy, and quarrelling and \nfighting, soon retired, and agreed with the Saracens upon a truce \nfor three years, three months, three days, and three hours.  Then, \nthe English Christians, protected by the noble Saladin from Saracen \nrevenge, visited Our Saviour's tomb; and then King Richard embarked \nwith a small force at Acre to return home.\n\nBut he was shipwrecked in the Adriatic Sea, and was fain to pass \nthrough Germany, under an assumed name.  Now, there were many \npeople in Germany who had served in the Holy Land under that proud \nDuke of Austria who had been kicked; and some of them, easily \nrecognising a man so remarkable as King Richard, carried their \nintelligence to the kicked Duke, who straightway took him prisoner \nat a little inn near Vienna.\n\nThe Duke's master the Emperor of Germany, and the King of France, \nwere equally delighted to have so troublesome a monarch in safe \nkeeping.  Friendships which are founded on a partnership in doing \nwrong, are never true; and the King of France was now quite as \nheartily King Richard's foe, as he had ever been his friend in his \nunnatural conduct to his father.  He monstrously pretended that \nKing Richard had designed to poison him in the East; he charged him \nwith having murdered, there, a man whom he had in truth befriended; \nhe bribed the Emperor of Germany to keep him close prisoner; and, \nfinally, through the plotting of these two princes, Richard was \nbrought before the German legislature, charged with the foregoing \ncrimes, and many others.  But he defended himself so well, that \nmany of the assembly were moved to tears by his eloquence and \nearnestness.  It was decided that he should be treated, during the \nrest of his captivity, in a manner more becoming his dignity than \nhe had been, and that he should be set free on the payment of a \nheavy ransom.  This ransom the English people willingly raised.  \nWhen Queen Eleanor took it over to Germany, it was at first evaded \nand refused.  But she appealed to the honour of all the princes of \nthe German Empire in behalf of her son, and appealed so well that \nit was accepted, and the King released.  Thereupon, the King of \nFrance wrote to Prince John - 'Take care of thyself.  The devil is \nunchained!'\n\nPrince John had reason to fear his brother, for he had been a \ntraitor to him in his captivity.  He had secretly joined the French \nKing; had vowed to the English nobles and people that his brother \nwas dead; and had vainly tried to seize the crown.  He was now in \nFrance, at a place called Evreux.  Being the meanest and basest of \nmen, he contrived a mean and base expedient for making himself \nacceptable to his brother.  He invited the French officers of the \ngarrison in that town to dinner, murdered them all, and then took \nthe fortress.  With this recommendation to the good will of a lion-\nhearted monarch, he hastened to King Richard, fell on his knees \nbefore him, and obtained the intercession of Queen Eleanor.  'I \nforgive him,' said the King, 'and I hope I may forget the injury he \nhas done me, as easily as I know he will forget my pardon.'\n\nWhile King Richard was in Sicily, there had been trouble in his \ndominions at home:  one of the bishops whom he had left in charge \nthereof, arresting the other; and making, in his pride and \nambition, as great a show as if he were King himself.  But the King \nhearing of it at Messina, and appointing a new Regency, this \nLONGCHAMP (for that was his name) had fled to France in a woman's \ndress, and had there been encouraged and supported by the French \nKing.  With all these causes of offence against Philip in his mind, \nKing Richard had no sooner been welcomed home by his enthusiastic \nsubjects with great display and splendour, and had no sooner been \ncrowned afresh at Winchester, than he resolved to show the French \nKing that the Devil was unchained indeed, and made war against him \nwith great fury.\n\nThere was fresh trouble at home about this time, arising out of the \ndiscontents of the poor people, who complained that they were far \nmore heavily taxed than the rich, and who found a spirited champion \nin WILLIAM FITZ-OSBERT, called LONGBEARD.  He became the leader of \na secret society, comprising fifty thousand men; he was seized by \nsurprise; he stabbed the citizen who first laid hands upon him; and \nretreated, bravely fighting, to a church, which he maintained four \ndays, until he was dislodged by fire, and run through the body as \nhe came out.  He was not killed, though; for he was dragged, half \ndead, at the tail of a horse to Smithfield, and there hanged.  \nDeath was long a favourite remedy for silencing the people's \nadvocates; but as we go on with this history, I fancy we shall find \nthem difficult to make an end of, for all that.\n\nThe French war, delayed occasionally by a truce, was still in \nprogress when a certain Lord named VIDOMAR, Viscount of Limoges, \nchanced to find in his ground a treasure of ancient coins.  As the \nKing's vassal, he sent the King half of it; but the King claimed \nthe whole.  The lord refused to yield the whole.  The King besieged \nthe lord in his castle, swore that he would take the castle by \nstorm, and hang every man of its defenders on the battlements.\n\nThere was a strange old song in that part of the country, to the \neffect that in Limoges an arrow would be made by which King Richard \nwould die.  It may be that BERTRAND DE GOURDON, a young man who was \none of the defenders of the castle, had often sung it or heard it \nsung of a winter night, and remembered it when he saw, from his \npost upon the ramparts, the King attended only by his chief officer \nriding below the walls surveying the place.  He drew an arrow to \nthe head, took steady aim, said between his teeth, 'Now I pray God \nspeed thee well, arrow!' discharged it, and struck the King in the \nleft shoulder.\n\nAlthough the wound was not at first considered dangerous, it was \nsevere enough to cause the King to retire to his tent, and direct \nthe assault to be made without him.  The castle was taken; and \nevery man of its defenders was hanged, as the King had sworn all \nshould be, except Bertrand de Gourdon, who was reserved until the \nroyal pleasure respecting him should be known.\n\nBy that time unskilful treatment had made the wound mortal and the \nKing knew that he was dying.  He directed Bertrand to be brought \ninto his tent.  The young man was brought there, heavily chained, \nKing Richard looked at him steadily.  He looked, as steadily, at \nthe King.\n\n'Knave!' said King Richard.  'What have I done to thee that thou \nshouldest take my life?'\n\n'What hast thou done to me?' replied the young man.  'With thine \nown hands thou hast killed my father and my two brothers.  Myself \nthou wouldest have hanged.  Let me die now, by any torture that \nthou wilt.  My comfort is, that no torture can save Thee.  Thou too \nmust die; and, through me, the world is quit of thee!'\n\nAgain the King looked at the young man steadily.  Again the young \nman looked steadily at him.  Perhaps some remembrance of his \ngenerous enemy Saladin, who was not a Christian, came into the mind \nof the dying King.\n\n'Youth!' he said, 'I forgive thee.  Go unhurt!'  Then, turning to \nthe chief officer who had been riding in his company when he \nreceived the wound, King Richard said:\n\n'Take off his chains, give him a hundred shillings, and let him \ndepart.'\n\nHe sunk down on his couch, and a dark mist seemed in his weakened \neyes to fill the tent wherein he had so often rested, and he died.  \nHis age was forty-two; he had reigned ten years.  His last command \nwas not obeyed; for the chief officer flayed Bertrand de Gourdon \nalive, and hanged him.\n\nThere is an old tune yet known - a sorrowful air will sometimes \noutlive many generations of strong men, and even last longer than \nbattle-axes with twenty pounds of steel in the head - by which this \nKing is said to have been discovered in his captivity.  BLONDEL, a \nfavourite Minstrel of King Richard, as the story relates, \nfaithfully seeking his Royal master, went singing it outside the \ngloomy walls of many foreign fortresses and prisons; until at last \nhe heard it echoed from within a dungeon, and knew the voice, and \ncried out in ecstasy, 'O Richard, O my King!'  You may believe it, \nif you like; it would be easy to believe worse things.  Richard was \nhimself a Minstrel and a Poet.  If he had not been a Prince too, he \nmight have been a better man perhaps, and might have gone out of \nthe world with less bloodshed and waste of life to answer for.\n\n\n\nCHAPTER XIV - ENGLAND UNDER KING JOHN, CALLED LACKLAND\n\n\n\nAT two-and-thirty years of age, JOHN became King of England.  His \npretty little nephew ARTHUR had the best claim to the throne; but \nJohn seized the treasure, and made fine promises to the nobility, \nand got himself crowned at Westminster within a few weeks after his \nbrother Richard's death.  I doubt whether the crown could possibly \nhave been put upon the head of a meaner coward, or a more \ndetestable villain, if England had been searched from end to end to \nfind him out.\n\nThe French King, Philip, refused to acknowledge the right of John \nto his new dignity, and declared in favour of Arthur.  You must not \nsuppose that he had any generosity of feeling for the fatherless \nboy; it merely suited his ambitious schemes to oppose the King of \nEngland.  So John and the French King went to war about Arthur.\n\nHe was a handsome boy, at that time only twelve years old.  He was \nnot born when his father, Geoffrey, had his brains trampled out at \nthe tournament; and, besides the misfortune of never having known a \nfather's guidance and protection, he had the additional misfortune \nto have a foolish mother (CONSTANCE by name), lately married to her \nthird husband.  She took Arthur, upon John's accession, to the \nFrench King, who pretended to be very much his friend, and who made \nhim a Knight, and promised him his daughter in marriage; but, who \ncared so little about him in reality, that finding it his interest \nto make peace with King John for a time, he did so without the \nleast consideration for the poor little Prince, and heartlessly \nsacrificed all his interests.\n\nYoung Arthur, for two years afterwards, lived quietly; and in the \ncourse of that time his mother died.  But, the French King then \nfinding it his interest to quarrel with King John again, again made \nArthur his pretence, and invited the orphan boy to court.  'You \nknow your rights, Prince,' said the French King, 'and you would \nlike to be a King.  Is it not so?'  'Truly,' said Prince Arthur, 'I \nshould greatly like to be a King!'  'Then,' said Philip, 'you shall \nhave two hundred gentlemen who are Knights of mine, and with them \nyou shall go to win back the provinces belonging to you, of which \nyour uncle, the usurping King of England, has taken possession.  I \nmyself, meanwhile, will head a force against him in Normandy.'  \nPoor Arthur was so flattered and so grateful that he signed a \ntreaty with the crafty French King, agreeing to consider him his \nsuperior Lord, and that the French King should keep for himself \nwhatever he could take from King John.\n\nNow, King John was so bad in all ways, and King Philip was so \nperfidious, that Arthur, between the two, might as well have been a \nlamb between a fox and a wolf.  But, being so young, he was ardent \nand flushed with hope; and, when the people of Brittany (which was \nhis inheritance) sent him five hundred more knights and five \nthousand foot soldiers, he believed his fortune was made.  The \npeople of Brittany had been fond of him from his birth, and had \nrequested that he might be called Arthur, in remembrance of that \ndimly-famous English Arthur, of whom I told you early in this book, \nwhom they believed to have been the brave friend and companion of \nan old King of their own.  They had tales among them about a \nprophet called MERLIN (of the same old time), who had foretold that \ntheir own King should be restored to them after hundreds of years; \nand they believed that the prophecy would be fulfilled in Arthur; \nthat the time would come when he would rule them with a crown of \nBrittany upon his head; and when neither King of France nor King of \nEngland would have any power over them.  When Arthur found himself \nriding in a glittering suit of armour on a richly caparisoned \nhorse, at the head of his train of knights and soldiers, he began \nto believe this too, and to consider old Merlin a very superior \nprophet.\n\nHe did not know - how could he, being so innocent and \ninexperienced? - that his little army was a mere nothing against \nthe power of the King of England.  The French King knew it; but the \npoor boy's fate was little to him, so that the King of England was \nworried and distressed.  Therefore, King Philip went his way into \nNormandy and Prince Arthur went his way towards Mirebeau, a French \ntown near Poictiers, both very well pleased.\n\nPrince Arthur went to attack the town of Mirebeau, because his \ngrandmother Eleanor, who has so often made her appearance in this \nhistory (and who had always been his mother's enemy), was living \nthere, and because his Knights said, 'Prince, if you can take her \nprisoner, you will be able to bring the King your uncle to terms!'  \nBut she was not to be easily taken.  She was old enough by this \ntime - eighty - but she was as full of stratagem as she was full of \nyears and wickedness.  Receiving intelligence of young Arthur's \napproach, she shut herself up in a high tower, and encouraged her \nsoldiers to defend it like men.  Prince Arthur with his little army \nbesieged the high tower.  King John, hearing how matters stood, \ncame up to the rescue, with HIS army.  So here was a strange \nfamily-party!  The boy-Prince besieging his grandmother, and his \nuncle besieging him!\n\nThis position of affairs did not last long.  One summer night King \nJohn, by treachery, got his men into the town, surprised Prince \nArthur's force, took two hundred of his knights, and seized the \nPrince himself in his bed.  The Knights were put in heavy irons, \nand driven away in open carts drawn by bullocks, to various \ndungeons where they were most inhumanly treated, and where some of \nthem were starved to death.  Prince Arthur was sent to the castle \nof Falaise.\n\nOne day, while he was in prison at that castle, mournfully thinking \nit strange that one so young should be in so much trouble, and \nlooking out of the small window in the deep dark wall, at the \nsummer sky and the birds, the door was softly opened, and he saw \nhis uncle the King standing in the shadow of the archway, looking \nvery grim.\n\n'Arthur,' said the King, with his wicked eyes more on the stone \nfloor than on his nephew, 'will you not trust to the gentleness, \nthe friendship, and the truthfulness of your loving uncle?'\n\n'I will tell my loving uncle that,' replied the boy, 'when he does \nme right.  Let him restore to me my kingdom of England, and then \ncome to me and ask the question.'\n\nThe King looked at him and went out.  'Keep that boy close \nprisoner,' said he to the warden of the castle.\n\nThen, the King took secret counsel with the worst of his nobles how \nthe Prince was to be got rid of.  Some said, 'Put out his eyes and \nkeep him in prison, as Robort of Normandy was kept.'  Others said, \n'Have him stabbed.'  Others, 'Have him hanged.'  Others, 'Have him \npoisoned.'\n\nKing John, feeling that in any case, whatever was done afterwards, \nit would be a satisfaction to his mind to have those handsome eyes \nburnt out that had looked at him so proudly while his own royal \neyes were blinking at the stone floor, sent certain ruffians to \nFalaise to blind the boy with red-hot irons.  But Arthur so \npathetically entreated them, and shed such piteous tears, and so \nappealed to HUBERT DE BOURG (or BURGH), the warden of the castle, \nwho had a love for him, and was an honourable, tender man, that \nHubert could not bear it.  To his eternal honour he prevented the \ntorture from being performed, and, at his own risk, sent the \nsavages away.\n\nThe chafed and disappointed King bethought himself of the stabbing \nsuggestion next, and, with his shuffling manner and his cruel face, \nproposed it to one William de Bray.  'I am a gentleman and not an \nexecutioner,' said William de Bray, and left the presence with \ndisdain.\n\nBut it was not difficult for a King to hire a murderer in those \ndays.  King John found one for his money, and sent him down to the \ncastle of Falaise.  'On what errand dost thou come?' said Hubert to \nthis fellow.  'To despatch young Arthur,' he returned.  'Go back to \nhim who sent thee,' answered Hubert, 'and say that I will do it!'\n\nKing John very well knowing that Hubert would never do it, but that \nhe courageously sent this reply to save the Prince or gain time, \ndespatched messengers to convey the young prisoner to the castle of \nRouen.\n\nArthur was soon forced from the good Hubert - of whom he had never \nstood in greater need than then - carried away by night, and lodged \nin his new prison:  where, through his grated window, he could hear \nthe deep waters of the river Seine, rippling against the stone wall \nbelow.\n\nOne dark night, as he lay sleeping, dreaming perhaps of rescue by \nthose unfortunate gentlemen who were obscurely suffering and dying \nin his cause, he was roused, and bidden by his jailer to come down \nthe staircase to the foot of the tower.  He hurriedly dressed \nhimself and obeyed.  When they came to the bottom of the winding \nstairs, and the night air from the river blew upon their faces, the \njailer trod upon his torch and put it out.  Then, Arthur, in the \ndarkness, was hurriedly drawn into a solitary boat.  And in that \nboat, he found his uncle and one other man.\n\nHe knelt to them, and prayed them not to murder him.  Deaf to his \nentreaties, they stabbed him and sunk his body in the river with \nheavy stones.  When the spring-morning broke, the tower-door was \nclosed, the boat was gone, the river sparkled on its way, and never \nmore was any trace of the poor boy beheld by mortal eyes.\n\nThe news of this atrocious murder being spread in England, awakened \na hatred of the King (already odious for his many vices, and for \nhis having stolen away and married a noble lady while his own wife \nwas living) that never slept again through his whole reign.  In \nBrittany, the indignation was intense.  Arthur's own sister ELEANOR \nwas in the power of John and shut up in a convent at Bristol, but \nhis half-sister ALICE was in Brittany.  The people chose her, and \nthe murdered prince's father-in-law, the last husband of Constance, \nto represent them; and carried their fiery complaints to King \nPhilip.  King Philip summoned King John (as the holder of territory \nin France) to come before him and defend himself.  King John \nrefusing to appear, King Philip declared him false, perjured, and \nguilty; and again made war.  In a little time, by conquering the \ngreater part of his French territory, King Philip deprived him of \none-third of his dominions.  And, through all the fighting that \ntook place, King John was always found, either to be eating and \ndrinking, like a gluttonous fool, when the danger was at a \ndistance, or to be running away, like a beaten cur, when it was \nnear.\n\nYou might suppose that when he was losing his dominions at this \nrate, and when his own nobles cared so little for him or his cause \nthat they plainly refused to follow his banner out of England, he \nhad enemies enough.  But he made another enemy of the Pope, which \nhe did in this way.\n\nThe Archbishop of Canterbury dying, and the junior monks of that \nplace wishing to get the start of the senior monks in the \nappointment of his successor, met together at midnight, secretly \nelected a certain REGINALD, and sent him off to Rome to get the \nPope's approval.  The senior monks and the King soon finding this \nout, and being very angry about it, the junior monks gave way, and \nall the monks together elected the Bishop of Norwich, who was the \nKing's favourite.  The Pope, hearing the whole story, declared that \nneither election would do for him, and that HE elected STEPHEN \nLANGTON.  The monks submitting to the Pope, the King turned them \nall out bodily, and banished them as traitors.  The Pope sent three \nbishops to the King, to threaten him with an Interdict.  The King \ntold the bishops that if any Interdict were laid upon his kingdom, \nhe would tear out the eyes and cut off the noses of all the monks \nhe could lay hold of, and send them over to Rome in that \nundecorated state as a present for their master.  The bishops, \nnevertheless, soon published the Interdict, and fled.\n\nAfter it had lasted a year, the Pope proceeded to his next step; \nwhich was Excommunication.  King John was declared excommunicated, \nwith all the usual ceremonies.  The King was so incensed at this, \nand was made so desperate by the disaffection of his Barons and the \nhatred of his people, that it is said he even privately sent \nambassadors to the Turks in Spain, offering to renounce his \nreligion and hold his kingdom of them if they would help him.  It \nis related that the ambassadors were admitted to the presence of \nthe Turkish Emir through long lines of Moorish guards, and that \nthey found the Emir with his eyes seriously fixed on the pages of a \nlarge book, from which he never once looked up.  That they gave him \na letter from the King containing his proposals, and were gravely \ndismissed.  That presently the Emir sent for one of them, and \nconjured him, by his faith in his religion, to say what kind of man \nthe King of England truly was?  That the ambassador, thus pressed, \nreplied that the King of England was a false tyrant, against whom \nhis own subjects would soon rise.  And that this was quite enough \nfor the Emir.\n\nMoney being, in his position, the next best thing to men, King John \nspared no means of getting it.  He set on foot another oppressing \nand torturing of the unhappy Jews (which was quite in his way), and \ninvented a new punishment for one wealthy Jew of Bristol.  Until \nsuch time as that Jew should produce a certain large sum of money, \nthe King sentenced him to be imprisoned, and, every day, to have \none tooth violently wrenched out of his head - beginning with the \ndouble teeth.  For seven days, the oppressed man bore the daily \npain and lost the daily tooth; but, on the eighth, he paid the \nmoney.  With the treasure raised in such ways, the King made an \nexpedition into Ireland, where some English nobles had revolted.  \nIt was one of the very few places from which he did not run away; \nbecause no resistance was shown.  He made another expedition into \nWales - whence he DID run away in the end:  but not before he had \ngot from the Welsh people, as hostages, twenty-seven young men of \nthe best families; every one of whom he caused to be slain in the \nfollowing year.\n\nTo Interdict and Excommunication, the Pope now added his last \nsentence; Deposition.  He proclaimed John no longer King, absolved \nall his subjects from their allegiance, and sent Stephen Langton \nand others to the King of France to tell him that, if he would \ninvade England, he should be forgiven all his sins - at least, \nshould be forgiven them by the Pope, if that would do.\n\nAs there was nothing that King Philip desired more than to invade \nEngland, he collected a great army at Rouen, and a fleet of \nseventeen hundred ships to bring them over.  But the English \npeople, however bitterly they hated the King, were not a people to \nsuffer invasion quietly.  They flocked to Dover, where the English \nstandard was, in such great numbers to enrol themselves as \ndefenders of their native land, that there were not provisions for \nthem, and the King could only select and retain sixty thousand.  \nBut, at this crisis, the Pope, who had his own reasons for \nobjecting to either King John or King Philip being too powerful, \ninterfered.  He entrusted a legate, whose name was PANDOLF, with \nthe easy task of frightening King John.  He sent him to the English \nCamp, from France, to terrify him with exaggerations of King \nPhilip's power, and his own weakness in the discontent of the \nEnglish Barons and people.  Pandolf discharged his commission so \nwell, that King John, in a wretched panic, consented to acknowledge \nStephen Langton; to resign his kingdom 'to God, Saint Peter, and \nSaint Paul' - which meant the Pope; and to hold it, ever \nafterwards, by the Pope's leave, on payment of an annual sum of \nmoney.  To this shameful contract he publicly bound himself in the \nchurch of the Knights Templars at Dover:  where he laid at the \nlegate's feet a part of the tribute, which the legate haughtily \ntrampled upon.  But they DO say, that this was merely a genteel \nflourish, and that he was afterwards seen to pick it up and pocket \nit.\n\nThere was an unfortunate prophet, the name of Peter, who had \ngreatly increased King John's terrors by predicting that he would \nbe unknighted (which the King supposed to signify that he would \ndie) before the Feast of the Ascension should be past.  That was \nthe day after this humiliation.  When the next morning came, and \nthe King, who had been trembling all night, found himself alive and \nsafe, he ordered the prophet - and his son too - to be dragged \nthrough the streets at the tails of horses, and then hanged, for \nhaving frightened him.\n\nAs King John had now submitted, the Pope, to King Philip's great \nastonishment, took him under his protection, and informed King \nPhilip that he found he could not give him leave to invade England.  \nThe angry Philip resolved to do it without his leave but he gained \nnothing and lost much; for, the English, commanded by the Earl of \nSalisbury, went over, in five hundred ships, to the French coast, \nbefore the French fleet had sailed away from it, and utterly \ndefeated the whole.\n\nThe Pope then took off his three sentences, one after another, and \nempowered Stephen Langton publicly to receive King John into the \nfavour of the Church again, and to ask him to dinner.  The King, \nwho hated Langton with all his might and main - and with reason \ntoo, for he was a great and a good man, with whom such a King could \nhave no sympathy - pretended to cry and to be VERY grateful.  There \nwas a little difficulty about settling how much the King should pay \nas a recompense to the clergy for the losses he had caused them; \nbut, the end of it was, that the superior clergy got a good deal, \nand the inferior clergy got little or nothing - which has also \nhappened since King John's time, I believe.\n\nWhen all these matters were arranged, the King in his triumph \nbecame more fierce, and false, and insolent to all around him than \nhe had ever been.  An alliance of sovereigns against King Philip, \ngave him an opportunity of landing an army in France; with which he \neven took a town!  But, on the French King's gaining a great \nvictory, he ran away, of course, and made a truce for five years.\n\nAnd now the time approached when he was to be still further \nhumbled, and made to feel, if he could feel anything, what a \nwretched creature he was.  Of all men in the world, Stephen Langton \nseemed raised up by Heaven to oppose and subdue him.  When he \nruthlessly burnt and destroyed the property of his own subjects, \nbecause their Lords, the Barons, would not serve him abroad, \nStephen Langton fearlessly reproved and threatened him.  When he \nswore to restore the laws of King Edward, or the laws of King Henry \nthe First, Stephen Langton knew his falsehood, and pursued him \nthrough all his evasions.  When the Barons met at the abbey of \nSaint Edmund's-Bury, to consider their wrongs and the King's \noppressions, Stephen Langton roused them by his fervid words to \ndemand a solemn charter of rights and liberties from their perjured \nmaster, and to swear, one by one, on the High Altar, that they \nwould have it, or would wage war against him to the death.  When \nthe King hid himself in London from the Barons, and was at last \nobliged to receive them, they told him roundly they would not \nbelieve him unless Stephen Langton became a surety that he would \nkeep his word.  When he took the Cross to invest himself with some \ninterest, and belong to something that was received with favour, \nStephen Langton was still immovable.  When he appealed to the Pope, \nand the Pope wrote to Stephen Langton in behalf of his new \nfavourite, Stephen Langton was deaf, even to the Pope himself, and \nsaw before him nothing but the welfare of England and the crimes of \nthe English King.\n\nAt Easter-time, the Barons assembled at Stamford, in Lincolnshire, \nin proud array, and, marching near to Oxford where the King was, \ndelivered into the hands of Stephen Langton and two others, a list \nof grievances.  'And these,' they said, 'he must redress, or we \nwill do it for ourselves!'  When Stephen Langton told the King as \nmuch, and read the list to him, he went half mad with rage.  But \nthat did him no more good than his afterwards trying to pacify the \nBarons with lies.  They called themselves and their followers, 'The \narmy of God and the Holy Church.'  Marching through the country, \nwith the people thronging to them everywhere (except at \nNorthampton, where they failed in an attack upon the castle), they \nat last triumphantly set up their banner in London itself, whither \nthe whole land, tired of the tyrant, seemed to flock to join them.  \nSeven knights alone, of all the knights in England, remained with \nthe King; who, reduced to this strait, at last sent the Earl of \nPembroke to the Barons to say that he approved of everything, and \nwould meet them to sign their charter when they would.  'Then,' \nsaid the Barons, 'let the day be the fifteenth of June, and the \nplace, Runny-Mead.'\n\nOn Monday, the fifteenth of June, one thousand two hundred and \nfourteen, the King came from Windsor Castle, and the Barons came \nfrom the town of Staines, and they met on Runny-Mead, which is \nstill a pleasant meadow by the Thames, where rushes grow in the \nclear water of the winding river, and its banks are green with \ngrass and trees.  On the side of the Barons, came the General of \ntheir army, ROBERT FITZ-WALTER, and a great concourse of the \nnobility of England.  With the King, came, in all, some four-and-\ntwenty persons of any note, most of whom despised him, and were \nmerely his advisers in form.  On that great day, and in that great \ncompany, the King signed MAGNA CHARTA - the great charter of \nEngland - by which he pledged himself to maintain the Church in its \nrights; to relieve the Barons of oppressive obligations as vassals \nof the Crown - of which the Barons, in their turn, pledged \nthemselves to relieve THEIR vassals, the people; to respect the \nliberties of London and all other cities and boroughs; to protect \nforeign merchants who came to England; to imprison no man without a \nfair trial; and to sell, delay, or deny justice to none.  As the \nBarons knew his falsehood well, they further required, as their \nsecurities, that he should send out of his kingdom all his foreign \ntroops; that for two months they should hold possession of the city \nof London, and Stephen Langton of the Tower; and that five-and-\ntwenty of their body, chosen by themselves, should be a lawful \ncommittee to watch the keeping of the charter, and to make war upon \nhim if he broke it.\n\nAll this he was obliged to yield.  He signed the charter with a \nsmile, and, if he could have looked agreeable, would have done so, \nas he departed from the splendid assembly.  When he got home to \nWindsor Castle, he was quite a madman in his helpless fury.  And he \nbroke the charter immediately afterwards.\n\nHe sent abroad for foreign soldiers, and sent to the Pope for help, \nand plotted to take London by surprise, while the Barons should be \nholding a great tournament at Stamford, which they had agreed to \nhold there as a celebration of the charter.  The Barons, however, \nfound him out and put it off.  Then, when the Barons desired to see \nhim and tax him with his treachery, he made numbers of appointments \nwith them, and kept none, and shifted from place to place, and was \nconstantly sneaking and skulking about.  At last he appeared at \nDover, to join his foreign soldiers, of whom numbers came into his \npay; and with them he besieged and took Rochester Castle, which was \noccupied by knights and soldiers of the Barons.  He would have \nhanged them every one; but the leader of the foreign soldiers, \nfearful of what the English people might afterwards do to him, \ninterfered to save the knights; therefore the King was fain to \nsatisfy his vengeance with the death of all the common men.  Then, \nhe sent the Earl of Salisbury, with one portion of his army, to \nravage the eastern part of his own dominions, while he carried fire \nand slaughter into the northern part; torturing, plundering, \nkilling, and inflicting every possible cruelty upon the people; \nand, every morning, setting a worthy example to his men by setting \nfire, with his own monster-hands, to the house where he had slept \nlast night.  Nor was this all; for the Pope, coming to the aid of \nhis precious friend, laid the kingdom under an Interdict again, \nbecause the people took part with the Barons.  It did not much \nmatter, for the people had grown so used to it now, that they had \nbegun to think nothing about it.  It occurred to them - perhaps to \nStephen Langton too - that they could keep their churches open, and \nring their bells, without the Pope's permission as well as with it.  \nSo, they tried the experiment - and found that it succeeded \nperfectly.\n\nIt being now impossible to bear the country, as a wilderness of \ncruelty, or longer to hold any terms with such a forsworn outlaw of \na King, the Barons sent to Louis, son of the French monarch, to \noffer him the English crown.  Caring as little for the Pope's \nexcommunication of him if he accepted the offer, as it is possible \nhis father may have cared for the Pope's forgiveness of his sins, \nhe landed at Sandwich (King John immediately running away from \nDover, where he happened to be), and went on to London.  The \nScottish King, with whom many of the Northern English Lords had \ntaken refuge; numbers of the foreign soldiers, numbers of the \nBarons, and numbers of the people went over to him every day; - \nKing John, the while, continually running away in all directions.\n\nThe career of Louis was checked however, by the suspicions of the \nBarons, founded on the dying declaration of a French Lord, that \nwhen the kingdom was conquered he was sworn to banish them as \ntraitors, and to give their estates to some of his own Nobles.  \nRather than suffer this, some of the Barons hesitated:  others even \nwent over to King John.\n\nIt seemed to be the turning-point of King John's fortunes, for, in \nhis savage and murderous course, he had now taken some towns and \nmet with some successes.  But, happily for England and humanity, \nhis death was near.  Crossing a dangerous quicksand, called the \nWash, not very far from Wisbeach, the tide came up and nearly \ndrowned his army.  He and his soldiers escaped; but, looking back \nfrom the shore when he was safe, he saw the roaring water sweep \ndown in a torrent, overturn the waggons, horses, and men, that \ncarried his treasure, and engulf them in a raging whirlpool from \nwhich nothing could be delivered.\n\nCursing, and swearing, and gnawing his fingers, he went on to \nSwinestead Abbey, where the monks set before him quantities of \npears, and peaches, and new cider - some say poison too, but there \nis very little reason to suppose so - of which he ate and drank in \nan immoderate and beastly way.  All night he lay ill of a burning \nfever, and haunted with horrible fears.  Next day, they put him in \na horse-litter, and carried him to Sleaford Castle, where he passed \nanother night of pain and horror.  Next day, they carried him, with \ngreater difficulty than on the day before, to the castle of Newark \nupon Trent; and there, on the eighteenth of October, in the forty-\nninth year of his age, and the seventeenth of his vile reign, was \nan end of this miserable brute.\n\n\n\nCHAPTER XV - ENGLAND UNDER HENRY THE THIRD, CALLED, OF WINCHESTER\n\n\n\nIF any of the English Barons remembered the murdered Arthur's \nsister, Eleanor the fair maid of Brittany, shut up in her convent \nat Bristol, none among them spoke of her now, or maintained her \nright to the Crown.  The dead Usurper's eldest boy, HENRY by name, \nwas taken by the Earl of Pembroke, the Marshal of England, to the \ncity of Gloucester, and there crowned in great haste when he was \nonly ten years old.  As the Crown itself had been lost with the \nKing's treasure in the raging water, and as there was no time to \nmake another, they put a circle of plain gold upon his head \ninstead.  'We have been the enemies of this child's father,' said \nLord Pembroke, a good and true gentleman, to the few Lords who were \npresent, 'and he merited our ill-will; but the child himself is \ninnocent, and his youth demands our friendship and protection.'  \nThose Lords felt tenderly towards the little boy, remembering their \nown young children; and they bowed their heads, and said, 'Long \nlive King Henry the Third!'\n\nNext, a great council met at Bristol, revised Magna Charta, and \nmade Lord Pembroke Regent or Protector of England, as the King was \ntoo young to reign alone.  The next thing to be done, was to get \nrid of Prince Louis of France, and to win over those English Barons \nwho were still ranged under his banner.  He was strong in many \nparts of England, and in London itself; and he held, among other \nplaces, a certain Castle called the Castle of Mount Sorel, in \nLeicestershire.  To this fortress, after some skirmishing and \ntruce-making, Lord Pembroke laid siege.  Louis despatched an army \nof six hundred knights and twenty thousand soldiers to relieve it.  \nLord Pembroke, who was not strong enough for such a force, retired \nwith all his men.  The army of the French Prince, which had marched \nthere with fire and plunder, marched away with fire and plunder, \nand came, in a boastful swaggering manner, to Lincoln.  The town \nsubmitted; but the Castle in the town, held by a brave widow lady, \nnamed NICHOLA DE CAMVILLE (whose property it was), made such a \nsturdy resistance, that the French Count in command of the army of \nthe French Prince found it necessary to besiege this Castle.  While \nhe was thus engaged, word was brought to him that Lord Pembroke, \nwith four hundred knights, two hundred and fifty men with cross-\nbows, and a stout force both of horse and foot, was marching \ntowards him.  'What care I?' said the French Count.  'The \nEnglishman is not so mad as to attack me and my great army in a \nwalled town!'  But the Englishman did it for all that, and did it - \nnot so madly but so wisely, that he decoyed the great army into the \nnarrow, ill-paved lanes and byways of Lincoln, where its horse-\nsoldiers could not ride in any strong body; and there he made such \nhavoc with them, that the whole force surrendered themselves \nprisoners, except the Count; who said that he would never yield to \nany English traitor alive, and accordingly got killed.  The end of \nthis victory, which the English called, for a joke, the Fair of \nLincoln, was the usual one in those times - the common men were \nslain without any mercy, and the knights and gentlemen paid ransom \nand went home.\n\nThe wife of Louis, the fair BLANCHE OF CASTILE, dutifully equipped \na fleet of eighty good ships, and sent it over from France to her \nhusband's aid.  An English fleet of forty ships, some good and some \nbad, gallantly met them near the mouth of the Thames, and took or \nsunk sixty-five in one fight.  This great loss put an end to the \nFrench Prince's hopes.  A treaty was made at Lambeth, in virtue of \nwhich the English Barons who had remained attached to his cause \nreturned to their allegiance, and it was engaged on both sides that \nthe Prince and all his troops should retire peacefully to France.  \nIt was time to go; for war had made him so poor that he was obliged \nto borrow money from the citizens of London to pay his expenses \nhome.\n\nLord Pembroke afterwards applied himself to governing the country \njustly, and to healing the quarrels and disturbances that had \narisen among men in the days of the bad King John.  He caused Magna \nCharta to be still more improved, and so amended the Forest Laws \nthat a Peasant was no longer put to death for killing a stag in a \nRoyal Forest, but was only imprisoned.  It would have been well for \nEngland if it could have had so good a Protector many years longer, \nbut that was not to be.  Within three years after the young King's \nCoronation, Lord Pembroke died; and you may see his tomb, at this \nday, in the old Temple Church in London.\n\nThe Protectorship was now divided.  PETER DE ROCHES, whom King John \nhad made Bishop of Winchester, was entrusted with the care of the \nperson of the young sovereign; and the exercise of the Royal \nauthority was confided to EARL HUBERT DE BURGH.  These two \npersonages had from the first no liking for each other, and soon \nbecame enemies.  When the young King was declared of age, Peter de \nRoches, finding that Hubert increased in power and favour, retired \ndiscontentedly, and went abroad.  For nearly ten years afterwards \nHubert had full sway alone.\n\nBut ten years is a long time to hold the favour of a King.  This \nKing, too, as he grew up, showed a strong resemblance to his \nfather, in feebleness, inconsistency, and irresolution.  The best \nthat can be said of him is that he was not cruel.  De Roches coming \nhome again, after ten years, and being a novelty, the King began to \nfavour him and to look coldly on Hubert.  Wanting money besides, \nand having made Hubert rich, he began to dislike Hubert.  At last \nhe was made to believe, or pretended to believe, that Hubert had \nmisappropriated some of the Royal treasure; and ordered him to \nfurnish an account of all he had done in his administration.  \nBesides which, the foolish charge was brought against Hubert that \nhe had made himself the King's favourite by magic.  Hubert very \nwell knowing that he could never defend himself against such \nnonsense, and that his old enemy must be determined on his ruin, \ninstead of answering the charges fled to Merton Abbey.  Then the \nKing, in a violent passion, sent for the Mayor of London, and said \nto the Mayor, 'Take twenty thousand citizens, and drag me Hubert de \nBurgh out of that abbey, and bring him here.'  The Mayor posted off \nto do it, but the Archbishop of Dublin (who was a friend of \nHubert's) warning the King that an abbey was a sacred place, and \nthat if he committed any violence there, he must answer for it to \nthe Church, the King changed his mind and called the Mayor back, \nand declared that Hubert should have four months to prepare his \ndefence, and should be safe and free during that time.\n\nHubert, who relied upon the King's word, though I think he was old \nenough to have known better, came out of Merton Abbey upon these \nconditions, and journeyed away to see his wife:  a Scottish \nPrincess who was then at St. Edmund's-Bury.\n\nAlmost as soon as he had departed from the Sanctuary, his enemies \npersuaded the weak King to send out one SIR GODFREY DE CRANCUMB, \nwho commanded three hundred vagabonds called the Black Band, with \norders to seize him.  They came up with him at a little town in \nEssex, called Brentwood, when he was in bed.  He leaped out of bed, \ngot out of the house, fled to the church, ran up to the altar, and \nlaid his hand upon the cross.  Sir Godfrey and the Black Band, \ncaring neither for church, altar, nor cross, dragged him forth to \nthe church door, with their drawn swords flashing round his head, \nand sent for a Smith to rivet a set of chains upon him.  When the \nSmith (I wish I knew his name!) was brought, all dark and swarthy \nwith the smoke of his forge, and panting with the speed he had \nmade; and the Black Band, falling aside to show him the Prisoner, \ncried with a loud uproar, 'Make the fetters heavy! make them \nstrong!' the Smith dropped upon his knee - but not to the Black \nBand - and said, 'This is the brave Earl Hubert de Burgh, who \nfought at Dover Castle, and destroyed the French fleet, and has \ndone his country much good service.  You may kill me, if you like, \nbut I will never make a chain for Earl Hubert de Burgh!'\n\nThe Black Band never blushed, or they might have blushed at this.  \nThey knocked the Smith about from one to another, and swore at him, \nand tied the Earl on horseback, undressed as he was, and carried \nhim off to the Tower of London.  The Bishops, however, were so \nindignant at the violation of the Sanctuary of the Church, that the \nfrightened King soon ordered the Black Band to take him back again; \nat the same time commanding the Sheriff of Essex to prevent his \nescaping out of Brentwood Church.  Well! the Sheriff dug a deep \ntrench all round the church, and erected a high fence, and watched \nthe church night and day; the Black Band and their Captain watched \nit too, like three hundred and one black wolves.  For thirty-nine \ndays, Hubert de Burgh remained within.  At length, upon the \nfortieth day, cold and hunger were too much for him, and he gave \nhimself up to the Black Band, who carried him off, for the second \ntime, to the Tower.  When his trial came on, he refused to plead; \nbut at last it was arranged that he should give up all the royal \nlands which had been bestowed upon him, and should be kept at the \nCastle of Devizes, in what was called 'free prison,' in charge of \nfour knights appointed by four lords.  There, he remained almost a \nyear, until, learning that a follower of his old enemy the Bishop \nwas made Keeper of the Castle, and fearing that he might be killed \nby treachery, he climbed the ramparts one dark night, dropped from \nthe top of the high Castle wall into the moat, and coming safely to \nthe ground, took refuge in another church.  From this place he was \ndelivered by a party of horse despatched to his help by some \nnobles, who were by this time in revolt against the King, and \nassembled in Wales.  He was finally pardoned and restored to his \nestates, but he lived privately, and never more aspired to a high \npost in the realm, or to a high place in the King's favour.  And \nthus end - more happily than the stories of many favourites of \nKings - the adventures of Earl Hubert de Burgh.\n\nThe nobles, who had risen in revolt, were stirred up to rebellion \nby the overbearing conduct of the Bishop of Winchester, who, \nfinding that the King secretly hated the Great Charter which had \nbeen forced from his father, did his utmost to confirm him in that \ndislike, and in the preference he showed to foreigners over the \nEnglish.  Of this, and of his even publicly declaring that the \nBarons of England were inferior to those of France, the English \nLords complained with such bitterness, that the King, finding them \nwell supported by the clergy, became frightened for his throne, and \nsent away the Bishop and all his foreign associates.  On his \nmarriage, however, with ELEANOR, a French lady, the daughter of the \nCount of Provence, he openly favoured the foreigners again; and so \nmany of his wife's relations came over, and made such an immense \nfamily-party at court, and got so many good things, and pocketed so \nmuch money, and were so high with the English whose money they \npocketed, that the bolder English Barons murmured openly about a \nclause there was in the Great Charter, which provided for the \nbanishment of unreasonable favourites.  But, the foreigners only \nlaughed disdainfully, and said, 'What are your English laws to us?'\n\nKing Philip of France had died, and had been succeeded by Prince \nLouis, who had also died after a short reign of three years, and \nhad been succeeded by his son of the same name - so moderate and \njust a man that he was not the least in the world like a King, as \nKings went.  ISABELLA, King Henry's mother, wished very much (for a \ncertain spite she had) that England should make war against this \nKing; and, as King Henry was a mere puppet in anybody's hands who \nknew how to manage his feebleness, she easily carried her point \nwith him.  But, the Parliament were determined to give him no money \nfor such a war.  So, to defy the Parliament, he packed up thirty \nlarge casks of silver - I don't know how he got so much; I dare say \nhe screwed it out of the miserable Jews - and put them aboard ship, \nand went away himself to carry war into France:  accompanied by his \nmother and his brother Richard, Earl of Cornwall, who was rich and \nclever.  But he only got well beaten, and came home.\n\nThe good-humour of the Parliament was not restored by this.  They \nreproached the King with wasting the public money to make greedy \nforeigners rich, and were so stern with him, and so determined not \nto let him have more of it to waste if they could help it, that he \nwas at his wit's end for some, and tried so shamelessly to get all \nhe could from his subjects, by excuses or by force, that the people \nused to say the King was the sturdiest beggar in England.  He took \nthe Cross, thinking to get some money by that means; but, as it was \nvery well known that he never meant to go on a crusade, he got \nnone.  In all this contention, the Londoners were particularly keen \nagainst the King, and the King hated them warmly in return.  Hating \nor loving, however, made no difference; he continued in the same \ncondition for nine or ten years, when at last the Barons said that \nif he would solemnly confirm their liberties afresh, the Parliament \nwould vote him a large sum.\n\nAs he readily consented, there was a great meeting held in \nWestminster Hall, one pleasant day in May, when all the clergy, \ndressed in their robes and holding every one of them a burning \ncandle in his hand, stood up (the Barons being also there) while \nthe Archbishop of Canterbury read the sentence of excommunication \nagainst any man, and all men, who should henceforth, in any way, \ninfringe the Great Charter of the Kingdom.  When he had done, they \nall put out their burning candles with a curse upon the soul of any \none, and every one, who should merit that sentence.  The King \nconcluded with an oath to keep the Charter, 'As I am a man, as I am \na Christian, as I am a Knight, as I am a King!'\n\nIt was easy to make oaths, and easy to break them; and the King did \nboth, as his father had done before him.  He took to his old \ncourses again when he was supplied with money, and soon cured of \ntheir weakness the few who had ever really trusted him.  When his \nmoney was gone, and he was once more borrowing and begging \neverywhere with a meanness worthy of his nature, he got into a \ndifficulty with the Pope respecting the Crown of Sicily, which the \nPope said he had a right to give away, and which he offered to King \nHenry for his second son, PRINCE EDMUND.  But, if you or I give \naway what we have not got, and what belongs to somebody else, it is \nlikely that the person to whom we give it, will have some trouble \nin taking it.  It was exactly so in this case.  It was necessary to \nconquer the Sicilian Crown before it could be put upon young \nEdmund's head.  It could not be conquered without money.  The Pope \nordered the clergy to raise money.  The clergy, however, were not \nso obedient to him as usual; they had been disputing with him for \nsome time about his unjust preference of Italian Priests in \nEngland; and they had begun to doubt whether the King's chaplain, \nwhom he allowed to be paid for preaching in seven hundred churches, \ncould possibly be, even by the Pope's favour, in seven hundred \nplaces at once.  'The Pope and the King together,' said the Bishop \nof London, 'may take the mitre off my head; but, if they do, they \nwill find that I shall put on a soldier's helmet.  I pay nothing.'  \nThe Bishop of Worcester was as bold as the Bishop of London, and \nwould pay nothing either.  Such sums as the more timid or more \nhelpless of the clergy did raise were squandered away, without \ndoing any good to the King, or bringing the Sicilian Crown an inch \nnearer to Prince Edmund's head.  The end of the business was, that \nthe Pope gave the Crown to the brother of the King of France (who \nconquered it for himself), and sent the King of England in, a bill \nof one hundred thousand pounds for the expenses of not having won \nit.\n\nThe King was now so much distressed that we might almost pity him, \nif it were possible to pity a King so shabby and ridiculous.  His \nclever brother, Richard, had bought the title of King of the Romans \nfrom the German people, and was no longer near him, to help him \nwith advice.  The clergy, resisting the very Pope, were in alliance \nwith the Barons.  The Barons were headed by SIMON DE MONTFORT, Earl \nof Leicester, married to King Henry's sister, and, though a \nforeigner himself, the most popular man in England against the \nforeign favourites.  When the King next met his Parliament, the \nBarons, led by this Earl, came before him, armed from head to foot, \nand cased in armour.  When the Parliament again assembled, in a \nmonth's time, at Oxford, this Earl was at their head, and the King \nwas obliged to consent, on oath, to what was called a Committee of \nGovernment:  consisting of twenty-four members:  twelve chosen by \nthe Barons, and twelve chosen by himself.\n\nBut, at a good time for him, his brother Richard came back.  \nRichard's first act (the Barons would not admit him into England on \nother terms) was to swear to be faithful to the Committee of \nGovernment - which he immediately began to oppose with all his \nmight.  Then, the Barons began to quarrel among themselves; \nespecially the proud Earl of Gloucester with the Earl of Leicester, \nwho went abroad in disgust.  Then, the people began to be \ndissatisfied with the Barons, because they did not do enough for \nthem.  The King's chances seemed so good again at length, that he \ntook heart enough - or caught it from his brother - to tell the \nCommittee of Government that he abolished them - as to his oath, \nnever mind that, the Pope said! - and to seize all the money in the \nMint, and to shut himself up in the Tower of London.  Here he was \njoined by his eldest son, Prince Edward; and, from the Tower, he \nmade public a letter of the Pope's to the world in general, \ninforming all men that he had been an excellent and just King for \nfive-and-forty years.\n\nAs everybody knew he had been nothing of the sort, nobody cared \nmuch for this document.  It so chanced that the proud Earl of \nGloucester dying, was succeeded by his son; and that his son, \ninstead of being the enemy of the Earl of Leicester, was (for the \ntime) his friend.  It fell out, therefore, that these two Earls \njoined their forces, took several of the Royal Castles in the \ncountry, and advanced as hard as they could on London.  The London \npeople, always opposed to the King, declared for them with great \njoy.  The King himself remained shut up, not at all gloriously, in \nthe Tower.  Prince Edward made the best of his way to Windsor \nCastle.  His mother, the Queen, attempted to follow him by water; \nbut, the people seeing her barge rowing up the river, and hating \nher with all their hearts, ran to London Bridge, got together a \nquantity of stones and mud, and pelted the barge as it came \nthrough, crying furiously, 'Drown the Witch!  Drown her!'  They \nwere so near doing it, that the Mayor took the old lady under his \nprotection, and shut her up in St. Paul's until the danger was \npast.\n\nIt would require a great deal of writing on my part, and a great \ndeal of reading on yours, to follow the King through his disputes \nwith the Barons, and to follow the Barons through their disputes \nwith one another - so I will make short work of it for both of us, \nand only relate the chief events that arose out of these quarrels.  \nThe good King of France was asked to decide between them.  He gave \nit as his opinion that the King must maintain the Great Charter, \nand that the Barons must give up the Committee of Government, and \nall the rest that had been done by the Parliament at Oxford:  which \nthe Royalists, or King's party, scornfully called the Mad \nParliament.  The Barons declared that these were not fair terms, \nand they would not accept them.  Then they caused the great bell of \nSt. Paul's to be tolled, for the purpose of rousing up the London \npeople, who armed themselves at the dismal sound and formed quite \nan army in the streets.  I am sorry to say, however, that instead \nof falling upon the King's party with whom their quarrel was, they \nfell upon the miserable Jews, and killed at least five hundred of \nthem.  They pretended that some of these Jews were on the King's \nside, and that they kept hidden in their houses, for the \ndestruction of the people, a certain terrible composition called \nGreek Fire, which could not be put out with water, but only burnt \nthe fiercer for it.  What they really did keep in their houses was \nmoney; and this their cruel enemies wanted, and this their cruel \nenemies took, like robbers and murderers.\n\nThe Earl of Leicester put himself at the head of these Londoners \nand other forces, and followed the King to Lewes in Sussex, where \nhe lay encamped with his army.  Before giving the King's forces \nbattle here, the Earl addressed his soldiers, and said that King \nHenry the Third had broken so many oaths, that he had become the \nenemy of God, and therefore they would wear white crosses on their \nbreasts, as if they were arrayed, not against a fellow-Christian, \nbut against a Turk.  White-crossed accordingly, they rushed into \nthe fight.  They would have lost the day - the King having on his \nside all the foreigners in England:  and, from Scotland, JOHN \nCOMYN, JOHN BALIOL, and ROBERT BRUCE, with all their men - but for \nthe impatience of PRINCE EDWARD, who, in his hot desire to have \nvengeance on the people of London, threw the whole of his father's \narmy into confusion.  He was taken Prisoner; so was the King; so \nwas the King's brother the King of the Romans; and five thousand \nEnglishmen were left dead upon the bloody grass.\n\nFor this success, the Pope excommunicated the Earl of Leicester:  \nwhich neither the Earl nor the people cared at all about.  The \npeople loved him and supported him, and he became the real King; \nhaving all the power of the government in his own hands, though he \nwas outwardly respectful to King Henry the Third, whom he took with \nhim wherever he went, like a poor old limp court-card.  He summoned \na Parliament (in the year one thousand two hundred and sixty-five) \nwhich was the first Parliament in England that the people had any \nreal share in electing; and he grew more and more in favour with \nthe people every day, and they stood by him in whatever he did.\n\nMany of the other Barons, and particularly the Earl of Gloucester, \nwho had become by this time as proud as his father, grew jealous of \nthis powerful and popular Earl, who was proud too, and began to \nconspire against him.  Since the battle of Lewes, Prince Edward had \nbeen kept as a hostage, and, though he was otherwise treated like a \nPrince, had never been allowed to go out without attendants \nappointed by the Earl of Leicester, who watched him.  The \nconspiring Lords found means to propose to him, in secret, that \nthey should assist him to escape, and should make him their leader; \nto which he very heartily consented.\n\nSo, on a day that was agreed upon, he said to his attendants after \ndinner (being then at Hereford), 'I should like to ride on \nhorseback, this fine afternoon, a little way into the country.'  As \nthey, too, thought it would be very pleasant to have a canter in \nthe sunshine, they all rode out of the town together in a gay \nlittle troop.  When they came to a fine level piece of turf, the \nPrince fell to comparing their horses one with another, and \noffering bets that one was faster than another; and the attendants, \nsuspecting no harm, rode galloping matches until their horses were \nquite tired.  The Prince rode no matches himself, but looked on \nfrom his saddle, and staked his money.  Thus they passed the whole \nmerry afternoon.  Now, the sun was setting, and they were all going \nslowly up a hill, the Prince's horse very fresh and all the other \nhorses very weary, when a strange rider mounted on a grey steed \nappeared at the top of the hill, and waved his hat.  'What does the \nfellow mean?' said the attendants one to another.  The Prince \nanswered on the instant by setting spurs to his horse, dashing away \nat his utmost speed, joining the man, riding into the midst of a \nlittle crowd of horsemen who were then seen waiting under some \ntrees, and who closed around him; and so he departed in a cloud of \ndust, leaving the road empty of all but the baffled attendants, who \nsat looking at one another, while their horses drooped their ears \nand panted.\n\nThe Prince joined the Earl of Gloucester at Ludlow.  The Earl of \nLeicester, with a part of the army and the stupid old King, was at \nHereford.  One of the Earl of Leicester's sons, Simon de Montfort, \nwith another part of the army, was in Sussex.  To prevent these two \nparts from uniting was the Prince's first object.  He attacked \nSimon de Montfort by night, defeated him, seized his banners and \ntreasure, and forced him into Kenilworth Castle in Warwickshire, \nwhich belonged to his family.\n\nHis father, the Earl of Leicester, in the meanwhile, not knowing \nwhat had happened, marched out of Hereford, with his part of the \narmy and the King, to meet him.  He came, on a bright morning in \nAugust, to Evesham, which is watered by the pleasant river Avon.  \nLooking rather anxiously across the prospect towards Kenilworth, he \nsaw his own banners advancing; and his face brightened with joy.  \nBut, it clouded darkly when he presently perceived that the banners \nwere captured, and in the enemy's hands; and he said, 'It is over.  \nThe Lord have mercy on our souls, for our bodies are Prince \nEdward's!'\n\nHe fought like a true Knight, nevertheless.  When his horse was \nkilled under him, he fought on foot.  It was a fierce battle, and \nthe dead lay in heaps everywhere.  The old King, stuck up in a suit \nof armour on a big war-horse, which didn't mind him at all, and \nwhich carried him into all sorts of places where he didn't want to \ngo, got into everybody's way, and very nearly got knocked on the \nhead by one of his son's men.  But he managed to pipe out, 'I am \nHarry of Winchester!' and the Prince, who heard him, seized his \nbridle, and took him out of peril.  The Earl of Leicester still \nfought bravely, until his best son Henry was killed, and the bodies \nof his best friends choked his path; and then he fell, still \nfighting, sword in hand.  They mangled his body, and sent it as a \npresent to a noble lady - but a very unpleasant lady, I should \nthink - who was the wife of his worst enemy.  They could not mangle \nhis memory in the minds of the faithful people, though.  Many years \nafterwards, they loved him more than ever, and regarded him as a \nSaint, and always spoke of him as 'Sir Simon the Righteous.'\n\nAnd even though he was dead, the cause for which he had fought \nstill lived, and was strong, and forced itself upon the King in the \nvery hour of victory.  Henry found himself obliged to respect the \nGreat Charter, however much he hated it, and to make laws similar \nto the laws of the Great Earl of Leicester, and to be moderate and \nforgiving towards the people at last - even towards the people of \nLondon, who had so long opposed him.  There were more risings \nbefore all this was done, but they were set at rest by these means, \nand Prince Edward did his best in all things to restore peace.  One \nSir Adam de Gourdon was the last dissatisfied knight in arms; but, \nthe Prince vanquished him in single combat, in a wood, and nobly \ngave him his life, and became his friend, instead of slaying him.  \nSir Adam was not ungrateful.  He ever afterwards remained devoted \nto his generous conqueror.\n\nWhen the troubles of the Kingdom were thus calmed, Prince Edward \nand his cousin Henry took the Cross, and went away to the Holy \nLand, with many English Lords and Knights.  Four years afterwards \nthe King of the Romans died, and, next year (one thousand two \nhundred and seventy-two), his brother the weak King of England \ndied.  He was sixty-eight years old then, and had reigned fifty-six \nyears.  He was as much of a King in death, as he had ever been in \nlife.  He was the mere pale shadow of a King at all times.\n\n\n\nCHAPTER XVI - ENGLAND UNDER EDWARD THE FIRST, CALLED LONGSHANKS\n\n\n\nIT was now the year of our Lord one thousand two hundred and \nseventy-two; and Prince Edward, the heir to the throne, being away \nin the Holy Land, knew nothing of his father's death.  The Barons, \nhowever, proclaimed him King, immediately after the Royal funeral; \nand the people very willingly consented, since most men knew too \nwell by this time what the horrors of a contest for the crown were.  \nSo King Edward the First, called, in a not very complimentary \nmanner, LONGSHANKS, because of the slenderness of his legs, was \npeacefully accepted by the English Nation.\n\nHis legs had need to be strong, however long and thin they were; \nfor they had to support him through many difficulties on the fiery \nsands of Asia, where his small force of soldiers fainted, died, \ndeserted, and seemed to melt away.  But his prowess made light of \nit, and he said, 'I will go on, if I go on with no other follower \nthan my groom!'\n\nA Prince of this spirit gave the Turks a deal of trouble.  He \nstormed Nazareth, at which place, of all places on earth, I am \nsorry to relate, he made a frightful slaughter of innocent people; \nand then he went to Acre, where he got a truce of ten years from \nthe Sultan.  He had very nearly lost his life in Acre, through the \ntreachery of a Saracen Noble, called the Emir of Jaffa, who, making \nthe pretence that he had some idea of turning Christian and wanted \nto know all about that religion, sent a trusty messenger to Edward \nvery often - with a dagger in his sleeve.  At last, one Friday in \nWhitsun week, when it was very hot, and all the sandy prospect lay \nbeneath the blazing sun, burnt up like a great overdone biscuit, \nand Edward was lying on a couch, dressed for coolness in only a \nloose robe, the messenger, with his chocolate-coloured face and his \nbright dark eyes and white teeth, came creeping in with a letter, \nand kneeled down like a tame tiger.  But, the moment Edward \nstretched out his hand to take the letter, the tiger made a spring \nat his heart.  He was quick, but Edward was quick too.  He seized \nthe traitor by his chocolate throat, threw him to the ground, and \nslew him with the very dagger he had drawn.  The weapon had struck \nEdward in the arm, and although the wound itself was slight, it \nthreatened to be mortal, for the blade of the dagger had been \nsmeared with poison.  Thanks, however, to a better surgeon than was \noften to be found in those times, and to some wholesome herbs, and \nabove all, to his faithful wife, ELEANOR, who devotedly nursed him, \nand is said by some to have sucked the poison from the wound with \nher own red lips (which I am very willing to believe), Edward soon \nrecovered and was sound again.\n\nAs the King his father had sent entreaties to him to return home, \nhe now began the journey.  He had got as far as Italy, when he met \nmessengers who brought him intelligence of the King's death.  \nHearing that all was quiet at home, he made no haste to return to \nhis own dominions, but paid a visit to the Pope, and went in state \nthrough various Italian Towns, where he was welcomed with \nacclamations as a mighty champion of the Cross from the Holy Land, \nand where he received presents of purple mantles and prancing \nhorses, and went along in great triumph.  The shouting people \nlittle knew that he was the last English monarch who would ever \nembark in a crusade, or that within twenty years every conquest \nwhich the Christians had made in the Holy Land at the cost of so \nmuch blood, would be won back by the Turks.  But all this came to \npass.\n\nThere was, and there is, an old town standing in a plain in France, \ncalled Chlons.  When the King was coming towards this place on his \nway to England, a wily French Lord, called the Count of Chlons, \nsent him a polite challenge to come with his knights and hold a \nfair tournament with the Count and HIS knights, and make a day of \nit with sword and lance.  It was represented to the King that the \nCount of Chlons was not to be trusted, and that, instead of a \nholiday fight for mere show and in good humour, he secretly meant a \nreal battle, in which the English should be defeated by superior \nforce.\n\nThe King, however, nothing afraid, went to the appointed place on \nthe appointed day with a thousand followers.  When the Count came \nwith two thousand and attacked the English in earnest, the English \nrushed at them with such valour that the Count's men and the \nCount's horses soon began to be tumbled down all over the field.  \nThe Count himself seized the King round the neck, but the King \ntumbled HIM out of his saddle in return for the compliment, and, \njumping from his own horse, and standing over him, beat away at his \niron armour like a blacksmith hammering on his anvil.  Even when \nthe Count owned himself defeated and offered his sword, the King \nwould not do him the honour to take it, but made him yield it up to \na common soldier.  There had been such fury shown in this fight, \nthat it was afterwards called the little Battle of Chlons.\n\nThe English were very well disposed to be proud of their King after \nthese adventures; so, when he landed at Dover in the year one \nthousand two hundred and seventy-four (being then thirty-six years \nold), and went on to Westminster where he and his good Queen were \ncrowned with great magnificence, splendid rejoicings took place.  \nFor the coronation-feast there were provided, among other eatables, \nfour hundred oxen, four hundred sheep, four hundred and fifty pigs, \neighteen wild boars, three hundred flitches of bacon, and twenty \nthousand fowls.  The fountains and conduits in the street flowed \nwith red and white wine instead of water; the rich citizens hung \nsilks and cloths of the brightest colours out of their windows to \nincrease the beauty of the show, and threw out gold and silver by \nwhole handfuls to make scrambles for the crowd.  In short, there \nwas such eating and drinking, such music and capering, such a \nringing of bells and tossing of caps, such a shouting, and singing, \nand revelling, as the narrow overhanging streets of old London City \nhad not witnessed for many a long day.  All the people were merry \nexcept the poor Jews, who, trembling within their houses, and \nscarcely daring to peep out, began to foresee that they would have \nto find the money for this joviality sooner or later.\n\nTo dismiss this sad subject of the Jews for the present, I am sorry \nto add that in this reign they were most unmercifully pillaged.  \nThey were hanged in great numbers, on accusations of having clipped \nthe King's coin - which all kinds of people had done.  They were \nheavily taxed; they were disgracefully badged; they were, on one \nday, thirteen years after the coronation, taken up with their wives \nand children and thrown into beastly prisons, until they purchased \ntheir release by paying to the King twelve thousand pounds.  \nFinally, every kind of property belonging to them was seized by the \nKing, except so little as would defray the charge of their taking \nthemselves away into foreign countries.  Many years elapsed before \nthe hope of gain induced any of their race to return to England, \nwhere they had been treated so heartlessly and had suffered so \nmuch.\n\nIf King Edward the First had been as bad a king to Christians as he \nwas to Jews, he would have been bad indeed.  But he was, in \ngeneral, a wise and great monarch, under whom the country much \nimproved.  He had no love for the Great Charter - few Kings had, \nthrough many, many years - but he had high qualities.  The first \nbold object which he conceived when he came home, was, to unite \nunder one Sovereign England, Scotland, and Wales; the two last of \nwhich countries had each a little king of its own, about whom the \npeople were always quarrelling and fighting, and making a \nprodigious disturbance - a great deal more than he was worth.  In \nthe course of King Edward's reign he was engaged, besides, in a war \nwith France.  To make these quarrels clearer, we will separate \ntheir histories and take them thus.  Wales, first.  France, second.  \nScotland, third.\n\n\nLLEWELLYN was the Prince of Wales.  He had been on the side of the \nBarons in the reign of the stupid old King, but had afterwards \nsworn allegiance to him.  When King Edward came to the throne, \nLlewellyn was required to swear allegiance to him also; which he \nrefused to do.  The King, being crowned and in his own dominions, \nthree times more required Llewellyn to come and do homage; and \nthree times more Llewellyn said he would rather not.  He was going \nto be married to ELEANOR DE MONTFORT, a young lady of the family \nmentioned in the last reign; and it chanced that this young lady, \ncoming from France with her youngest brother, EMERIC, was taken by \nan English ship, and was ordered by the English King to be \ndetained.  Upon this, the quarrel came to a head.  The King went, \nwith his fleet, to the coast of Wales, where, so encompassing \nLlewellyn, that he could only take refuge in the bleak mountain \nregion of Snowdon in which no provisions could reach him, he was \nsoon starved into an apology, and into a treaty of peace, and into \npaying the expenses of the war.  The King, however, forgave him \nsome of the hardest conditions of the treaty, and consented to his \nmarriage.  And he now thought he had reduced Wales to obedience.\n\nBut the Welsh, although they were naturally a gentle, quiet, \npleasant people, who liked to receive strangers in their cottages \namong the mountains, and to set before them with free hospitality \nwhatever they had to eat and drink, and to play to them on their \nharps, and sing their native ballads to them, were a people of \ngreat spirit when their blood was up.  Englishmen, after this \naffair, began to be insolent in Wales, and to assume the air of \nmasters; and the Welsh pride could not bear it.  Moreover, they \nbelieved in that unlucky old Merlin, some of whose unlucky old \nprophecies somebody always seemed doomed to remember when there was \na chance of its doing harm; and just at this time some blind old \ngentleman with a harp and a long white beard, who was an excellent \nperson, but had become of an unknown age and tedious, burst out \nwith a declaration that Merlin had predicted that when English \nmoney had become round, a Prince of Wales would be crowned in \nLondon.  Now, King Edward had recently forbidden the English penny \nto be cut into halves and quarters for halfpence and farthings, and \nhad actually introduced a round coin; therefore, the Welsh people \nsaid this was the time Merlin meant, and rose accordingly.\n\nKing Edward had bought over PRINCE DAVID, Llewellyn's brother, by \nheaping favours upon him; but he was the first to revolt, being \nperhaps troubled in his conscience.  One stormy night, he surprised \nthe Castle of Hawarden, in possession of which an English nobleman \nhad been left; killed the whole garrison, and carried off the \nnobleman a prisoner to Snowdon.  Upon this, the Welsh people rose \nlike one man.  King Edward, with his army, marching from Worcester \nto the Menai Strait, crossed it - near to where the wonderful \ntubular iron bridge now, in days so different, makes a passage for \nrailway trains - by a bridge of boats that enabled forty men to \nmarch abreast.  He subdued the Island of Anglesea, and sent his men \nforward to observe the enemy.  The sudden appearance of the Welsh \ncreated a panic among them, and they fell back to the bridge.  The \ntide had in the meantime risen and separated the boats; the Welsh \npursuing them, they were driven into the sea, and there they sunk, \nin their heavy iron armour, by thousands.  After this victory \nLlewellyn, helped by the severe winter-weather of Wales, gained \nanother battle; but the King ordering a portion of his English army \nto advance through South Wales, and catch him between two foes, and \nLlewellyn bravely turning to meet this new enemy, he was surprised \nand killed - very meanly, for he was unarmed and defenceless.  His \nhead was struck off and sent to London, where it was fixed upon the \nTower, encircled with a wreath, some say of ivy, some say of \nwillow, some say of silver, to make it look like a ghastly coin in \nridicule of the prediction.\n\nDavid, however, still held out for six months, though eagerly \nsought after by the King, and hunted by his own countrymen.  One of \nthem finally betrayed him with his wife and children.  He was \nsentenced to be hanged, drawn, and quartered; and from that time \nthis became the established punishment of Traitors in England - a \npunishment wholly without excuse, as being revolting, vile, and \ncruel, after its object is dead; and which has no sense in it, as \nits only real degradation (and that nothing can blot out) is to the \ncountry that permits on any consideration such abominable \nbarbarity.\n\nWales was now subdued.  The Queen giving birth to a young prince in \nthe Castle of Carnarvon, the King showed him to the Welsh people as \ntheir countryman, and called him Prince of Wales; a title that has \never since been borne by the heir-apparent to the English throne - \nwhich that little Prince soon became, by the death of his elder \nbrother.  The King did better things for the Welsh than that, by \nimproving their laws and encouraging their trade.  Disturbances \nstill took place, chiefly occasioned by the avarice and pride of \nthe English Lords, on whom Welsh lands and castles had been \nbestowed; but they were subdued, and the country never rose again.  \nThere is a legend that to prevent the people from being incited to \nrebellion by the songs of their bards and harpers, Edward had them \nall put to death.  Some of them may have fallen among other men who \nheld out against the King; but this general slaughter is, I think, \na fancy of the harpers themselves, who, I dare say, made a song \nabout it many years afterwards, and sang it by the Welsh firesides \nuntil it came to be believed.\n\nThe foreign war of the reign of Edward the First arose in this way.  \nThe crews of two vessels, one a Norman ship, and the other an \nEnglish ship, happened to go to the same place in their boats to \nfill their casks with fresh water.  Being rough angry fellows, they \nbegan to quarrel, and then to fight - the English with their fists; \nthe Normans with their knives - and, in the fight, a Norman was \nkilled.  The Norman crew, instead of revenging themselves upon \nthose English sailors with whom they had quarrelled (who were too \nstrong for them, I suspect), took to their ship again in a great \nrage, attacked the first English ship they met, laid hold of an \nunoffending merchant who happened to be on board, and brutally \nhanged him in the rigging of their own vessel with a dog at his \nfeet.  This so enraged the English sailors that there was no \nrestraining them; and whenever, and wherever, English sailors met \nNorman sailors, they fell upon each other tooth and nail.  The \nIrish and Dutch sailors took part with the English; the French and \nGenoese sailors helped the Normans; and thus the greater part of \nthe mariners sailing over the sea became, in their way, as violent \nand raging as the sea itself when it is disturbed.\n\nKing Edward's fame had been so high abroad that he had been chosen \nto decide a difference between France and another foreign power, \nand had lived upon the Continent three years.  At first, neither he \nnor the French King PHILIP (the good Louis had been dead some time) \ninterfered in these quarrels; but when a fleet of eighty English \nships engaged and utterly defeated a Norman fleet of two hundred, \nin a pitched battle fought round a ship at anchor, in which no \nquarter was given, the matter became too serious to be passed over.  \nKing Edward, as Duke of Guienne, was summoned to present himself \nbefore the King of France, at Paris, and answer for the damage done \nby his sailor subjects.  At first, he sent the Bishop of London as \nhis representative, and then his brother EDMUND, who was married to \nthe French Queen's mother.  I am afraid Edmund was an easy man, and \nallowed himself to be talked over by his charming relations, the \nFrench court ladies; at all events, he was induced to give up his \nbrother's dukedom for forty days - as a mere form, the French King \nsaid, to satisfy his honour - and he was so very much astonished, \nwhen the time was out, to find that the French King had no idea of \ngiving it up again, that I should not wonder if it hastened his \ndeath:  which soon took place.\n\nKing Edward was a King to win his foreign dukedom back again, if it \ncould be won by energy and valour.  He raised a large army, \nrenounced his allegiance as Duke of Guienne, and crossed the sea to \ncarry war into France.  Before any important battle was fought, \nhowever, a truce was agreed upon for two years; and in the course \nof that time, the Pope effected a reconciliation.  King Edward, who \nwas now a widower, having lost his affectionate and good wife, \nEleanor, married the French King's sister, MARGARET; and the Prince \nof Wales was contracted to the French King's daughter ISABELLA.\n\nOut of bad things, good things sometimes arise.  Out of this \nhanging of the innocent merchant, and the bloodshed and strife it \ncaused, there came to be established one of the greatest powers \nthat the English people now possess.  The preparations for the war \nbeing very expensive, and King Edward greatly wanting money, and \nbeing very arbitrary in his ways of raising it, some of the Barons \nbegan firmly to oppose him.  Two of them, in particular, HUMPHREY \nBOHUN, Earl of Hereford, and ROGER BIGOD, Earl of Norfolk, were so \nstout against him, that they maintained he had no right to command \nthem to head his forces in Guienne, and flatly refused to go there.  \n'By Heaven, Sir Earl,' said the King to the Earl of Hereford, in a \ngreat passion, 'you shall either go or be hanged!'  'By Heaven, Sir \nKing,' replied the Earl, 'I will neither go nor yet will I be \nhanged!' and both he and the other Earl sturdily left the court, \nattended by many Lords.  The King tried every means of raising \nmoney.  He taxed the clergy, in spite of all the Pope said to the \ncontrary; and when they refused to pay, reduced them to submission, \nby saying Very well, then they had no claim upon the government for \nprotection, and any man might plunder them who would - which a good \nmany men were very ready to do, and very readily did, and which the \nclergy found too losing a game to be played at long.  He seized all \nthe wool and leather in the hands of the merchants, promising to \npay for it some fine day; and he set a tax upon the exportation of \nwool, which was so unpopular among the traders that it was called \n'The evil toll.'  But all would not do.  The Barons, led by those \ntwo great Earls, declared any taxes imposed without the consent of \nParliament, unlawful; and the Parliament refused to impose taxes, \nuntil the King should confirm afresh the two Great Charters, and \nshould solemnly declare in writing, that there was no power in the \ncountry to raise money from the people, evermore, but the power of \nParliament representing all ranks of the people.  The King was very \nunwilling to diminish his own power by allowing this great \nprivilege in the Parliament; but there was no help for it, and he \nat last complied.  We shall come to another King by-and-by, who \nmight have saved his head from rolling off, if he had profited by \nthis example.\n\nThe people gained other benefits in Parliament from the good sense \nand wisdom of this King.  Many of the laws were much improved; \nprovision was made for the greater safety of travellers, and the \napprehension of thieves and murderers; the priests were prevented \nfrom holding too much land, and so becoming too powerful; and \nJustices of the Peace were first appointed (though not at first \nunder that name) in various parts of the country.\n\n\nAnd now we come to Scotland, which was the great and lasting \ntrouble of the reign of King Edward the First.\n\nAbout thirteen years after King Edward's coronation, Alexander the \nThird, the King of Scotland, died of a fall from his horse.  He had \nbeen married to Margaret, King Edward's sister.  All their children \nbeing dead, the Scottish crown became the right of a young Princess \nonly eight years old, the daughter of ERIC, King of Norway, who had \nmarried a daughter of the deceased sovereign.  King Edward \nproposed, that the Maiden of Norway, as this Princess was called, \nshould be engaged to be married to his eldest son; but, \nunfortunately, as she was coming over to England she fell sick, and \nlanding on one of the Orkney Islands, died there.  A great \ncommotion immediately began in Scotland, where as many as thirteen \nnoisy claimants to the vacant throne started up and made a general \nconfusion.\n\nKing Edward being much renowned for his sagacity and justice, it \nseems to have been agreed to refer the dispute to him.  He accepted \nthe trust, and went, with an army, to the Border-land where England \nand Scotland joined.  There, he called upon the Scottish gentlemen \nto meet him at the Castle of Norham, on the English side of the \nriver Tweed; and to that Castle they came.  But, before he would \ntake any step in the business, he required those Scottish \ngentlemen, one and all, to do homage to him as their superior Lord; \nand when they hesitated, he said, 'By holy Edward, whose crown I \nwear, I will have my rights, or I will die in maintaining them!'  \nThe Scottish gentlemen, who had not expected this, were \ndisconcerted, and asked for three weeks to think about it.\n\nAt the end of the three weeks, another meeting took place, on a \ngreen plain on the Scottish side of the river.  Of all the \ncompetitors for the Scottish throne, there were only two who had \nany real claim, in right of their near kindred to the Royal Family.  \nThese were JOHN BALIOL and ROBERT BRUCE:  and the right was, I have \nno doubt, on the side of John Baliol.  At this particular meeting \nJohn Baliol was not present, but Robert Bruce was; and on Robert \nBruce being formally asked whether he acknowledged the King of \nEngland for his superior lord, he answered, plainly and distinctly, \nYes, he did.  Next day, John Baliol appeared, and said the same.  \nThis point settled, some arrangements were made for inquiring into \ntheir titles.\n\nThe inquiry occupied a pretty long time - more than a year.  While \nit was going on, King Edward took the opportunity of making a \njourney through Scotland, and calling upon the Scottish people of \nall degrees to acknowledge themselves his vassals, or be imprisoned \nuntil they did.  In the meanwhile, Commissioners were appointed to \nconduct the inquiry, a Parliament was held at Berwick about it, the \ntwo claimants were heard at full length, and there was a vast \namount of talking.  At last, in the great hall of the Castle of \nBerwick, the King gave judgment in favour of John Baliol:  who, \nconsenting to receive his crown by the King of England's favour and \npermission, was crowned at Scone, in an old stone chair which had \nbeen used for ages in the abbey there, at the coronations of \nScottish Kings.  Then, King Edward caused the great seal of \nScotland, used since the late King's death, to be broken in four \npieces, and placed in the English Treasury; and considered that he \nnow had Scotland (according to the common saying) under his thumb.\n\nScotland had a strong will of its own yet, however.  King Edward, \ndetermined that the Scottish King should not forget he was his \nvassal, summoned him repeatedly to come and defend himself and his \njudges before the English Parliament when appeals from the \ndecisions of Scottish courts of justice were being heard.  At \nlength, John Baliol, who had no great heart of his own, had so much \nheart put into him by the brave spirit of the Scottish people, who \ntook this as a national insult, that he refused to come any more.  \nThereupon, the King further required him to help him in his war \nabroad (which was then in progress), and to give up, as security \nfor his good behaviour in future, the three strong Scottish Castles \nof Jedburgh, Roxburgh, and Berwick.  Nothing of this being done; on \nthe contrary, the Scottish people concealing their King among their \nmountains in the Highlands and showing a determination to resist; \nEdward marched to Berwick with an army of thirty thousand foot, and \nfour thousand horse; took the Castle, and slew its whole garrison, \nand the inhabitants of the town as well - men, women, and children.  \nLORD WARRENNE, Earl of Surrey, then went on to the Castle of \nDunbar, before which a battle was fought, and the whole Scottish \narmy defeated with great slaughter.  The victory being complete, \nthe Earl of Surrey was left as guardian of Scotland; the principal \noffices in that kingdom were given to Englishmen; the more powerful \nScottish Nobles were obliged to come and live in England; the \nScottish crown and sceptre were brought away; and even the old \nstone chair was carried off and placed in Westminster Abbey, where \nyou may see it now.  Baliol had the Tower of London lent him for a \nresidence, with permission to range about within a circle of twenty \nmiles.  Three years afterwards he was allowed to go to Normandy, \nwhere he had estates, and where he passed the remaining six years \nof his life:  far more happily, I dare say, than he had lived for a \nlong while in angry Scotland.\n\nNow, there was, in the West of Scotland, a gentleman of small \nfortune, named WILLIAM WALLACE, the second son of a Scottish \nknight.  He was a man of great size and great strength; he was very \nbrave and daring; when he spoke to a body of his countrymen, he \ncould rouse them in a wonderful manner by the power of his burning \nwords; he loved Scotland dearly, and he hated England with his \nutmost might.  The domineering conduct of the English who now held \nthe places of trust in Scotland made them as intolerable to the \nproud Scottish people as they had been, under similar \ncircumstances, to the Welsh; and no man in all Scotland regarded \nthem with so much smothered rage as William Wallace.  One day, an \nEnglishman in office, little knowing what he was, affronted HIM.  \nWallace instantly struck him dead, and taking refuge among the \nrocks and hills, and there joining with his countryman, SIR WILLIAM \nDOUGLAS, who was also in arms against King Edward, became the most \nresolute and undaunted champion of a people struggling for their \nindependence that ever lived upon the earth.\n\nThe English Guardian of the Kingdom fled before him, and, thus \nencouraged, the Scottish people revolted everywhere, and fell upon \nthe English without mercy.  The Earl of Surrey, by the King's \ncommands, raised all the power of the Border-counties, and two \nEnglish armies poured into Scotland.  Only one Chief, in the face \nof those armies, stood by Wallace, who, with a force of forty \nthousand men, awaited the invaders at a place on the river Forth, \nwithin two miles of Stirling.  Across the river there was only one \npoor wooden bridge, called the bridge of Kildean - so narrow, that \nbut two men could cross it abreast.  With his eyes upon this \nbridge, Wallace posted the greater part of his men among some \nrising grounds, and waited calmly.  When the English army came up \non the opposite bank of the river, messengers were sent forward to \noffer terms.  Wallace sent them back with a defiance, in the name \nof the freedom of Scotland.  Some of the officers of the Earl of \nSurrey in command of the English, with THEIR eyes also on the \nbridge, advised him to be discreet and not hasty.  He, however, \nurged to immediate battle by some other officers, and particularly \nby CRESSINGHAM, King Edward's treasurer, and a rash man, gave the \nword of command to advance.  One thousand English crossed the \nbridge, two abreast; the Scottish troops were as motionless as \nstone images.  Two thousand English crossed; three thousand, four \nthousand, five.  Not a feather, all this time, had been seen to \nstir among the Scottish bonnets.  Now, they all fluttered.  \n'Forward, one party, to the foot of the Bridge!' cried Wallace, \n'and let no more English cross!  The rest, down with me on the five \nthousand who have come over, and cut them all to pieces!'  It was \ndone, in the sight of the whole remainder of the English army, who \ncould give no help.  Cressingham himself was killed, and the Scotch \nmade whips for their horses of his skin.\n\nKing Edward was abroad at this time, and during the successes on \nthe Scottish side which followed, and which enabled bold Wallace to \nwin the whole country back again, and even to ravage the English \nborders.  But, after a few winter months, the King returned, and \ntook the field with more than his usual energy.  One night, when a \nkick from his horse as they both lay on the ground together broke \ntwo of his ribs, and a cry arose that he was killed, he leaped into \nhis saddle, regardless of the pain he suffered, and rode through \nthe camp.  Day then appearing, he gave the word (still, of course, \nin that bruised and aching state) Forward! and led his army on to \nnear Falkirk, where the Scottish forces were seen drawn up on some \nstony ground, behind a morass.  Here, he defeated Wallace, and \nkilled fifteen thousand of his men.  With the shattered remainder, \nWallace drew back to Stirling; but, being pursued, set fire to the \ntown that it might give no help to the English, and escaped.  The \ninhabitants of Perth afterwards set fire to their houses for the \nsame reason, and the King, unable to find provisions, was forced to \nwithdraw his army.\n\nAnother ROBERT BRUCE, the grandson of him who had disputed the \nScottish crown with Baliol, was now in arms against the King (that \nelder Bruce being dead), and also JOHN COMYN, Baliol's nephew.  \nThese two young men might agree in opposing Edward, but could agree \nin nothing else, as they were rivals for the throne of Scotland.  \nProbably it was because they knew this, and knew what troubles must \narise even if they could hope to get the better of the great \nEnglish King, that the principal Scottish people applied to the \nPope for his interference.  The Pope, on the principle of losing \nnothing for want of trying to get it, very coolly claimed that \nScotland belonged to him; but this was a little too much, and the \nParliament in a friendly manner told him so.\n\nIn the spring time of the year one thousand three hundred and \nthree, the King sent SIR JOHN SEGRAVE, whom he made Governor of \nScotland, with twenty thousand men, to reduce the rebels.  Sir John \nwas not as careful as he should have been, but encamped at Rosslyn, \nnear Edinburgh, with his army divided into three parts.  The \nScottish forces saw their advantage; fell on each part separately; \ndefeated each; and killed all the prisoners.  Then, came the King \nhimself once more, as soon as a great army could be raised; he \npassed through the whole north of Scotland, laying waste whatsoever \ncame in his way; and he took up his winter quarters at Dunfermline.  \nThe Scottish cause now looked so hopeless, that Comyn and the other \nnobles made submission and received their pardons.  Wallace alone \nstood out.  He was invited to surrender, though on no distinct \npledge that his life should be spared; but he still defied the \nireful King, and lived among the steep crags of the Highland glens, \nwhere the eagles made their nests, and where the mountain torrents \nroared, and the white snow was deep, and the bitter winds blew \nround his unsheltered head, as he lay through many a pitch-dark \nnight wrapped up in his plaid.  Nothing could break his spirit; \nnothing could lower his courage; nothing could induce him to forget \nor to forgive his country's wrongs.  Even when the Castle of \nStirling, which had long held out, was besieged by the King with \nevery kind of military engine then in use; even when the lead upon \ncathedral roofs was taken down to help to make them; even when the \nKing, though an old man, commanded in the siege as if he were a \nyouth, being so resolved to conquer; even when the brave garrison \n(then found with amazement to be not two hundred people, including \nseveral ladies) were starved and beaten out and were made to submit \non their knees, and with every form of disgrace that could \naggravate their sufferings; even then, when there was not a ray of \nhope in Scotland, William Wallace was as proud and firm as if he \nhad beheld the powerful and relentless Edward lying dead at his \nfeet.\n\nWho betrayed William Wallace in the end, is not quite certain.  \nThat he was betrayed - probably by an attendant - is too true.  He \nwas taken to the Castle of Dumbarton, under SIR JOHN MENTEITH, and \nthence to London, where the great fame of his bravery and \nresolution attracted immense concourses of people to behold him.  \nHe was tried in Westminster Hall, with a crown of laurel on his \nhead - it is supposed because he was reported to have said that he \nought to wear, or that he would wear, a crown there and was found \nguilty as a robber, a murderer, and a traitor.  What they called a \nrobber (he said to those who tried him) he was, because he had \ntaken spoil from the King's men.  What they called a murderer, he \nwas, because he had slain an insolent Englishman.  What they called \na traitor, he was not, for he had never sworn allegiance to the \nKing, and had ever scorned to do it.  He was dragged at the tails \nof horses to West Smithfield, and there hanged on a high gallows, \ntorn open before he was dead, beheaded, and quartered.  His head \nwas set upon a pole on London Bridge, his right arm was sent to \nNewcastle, his left arm to Berwick, his legs to Perth and Aberdeen.  \nBut, if King Edward had had his body cut into inches, and had sent \nevery separate inch into a separate town, he could not have \ndispersed it half so far and wide as his fame.  Wallace will be \nremembered in songs and stories, while there are songs and stories \nin the English tongue, and Scotland will hold him dear while her \nlakes and mountains last.\n\nReleased from this dreaded enemy, the King made a fairer plan of \nGovernment for Scotland, divided the offices of honour among \nScottish gentlemen and English gentlemen, forgave past offences, \nand thought, in his old age, that his work was done.\n\nBut he deceived himself.  Comyn and Bruce conspired, and made an \nappointment to meet at Dumfries, in the church of the Minorites.  \nThere is a story that Comyn was false to Bruce, and had informed \nagainst him to the King; that Bruce was warned of his danger and \nthe necessity of flight, by receiving, one night as he sat at \nsupper, from his friend the Earl of Gloucester, twelve pennies and \na pair of spurs; that as he was riding angrily to keep his \nappointment (through a snow-storm, with his horse's shoes reversed \nthat he might not be tracked), he met an evil-looking serving man, \na messenger of Comyn, whom he killed, and concealed in whose dress \nhe found letters that proved Comyn's treachery.  However this may \nbe, they were likely enough to quarrel in any case, being hot-\nheaded rivals; and, whatever they quarrelled about, they certainly \ndid quarrel in the church where they met, and Bruce drew his dagger \nand stabbed Comyn, who fell upon the pavement.  When Bruce came \nout, pale and disturbed, the friends who were waiting for him asked \nwhat was the matter?  'I think I have killed Comyn,' said he.  'You \nonly think so?' returned one of them; 'I will make sure!' and going \ninto the church, and finding him alive, stabbed him again and \nagain.  Knowing that the King would never forgive this new deed of \nviolence, the party then declared Bruce King of Scotland:  got him \ncrowned at Scone - without the chair; and set up the rebellious \nstandard once again.\n\nWhen the King heard of it he kindled with fiercer anger than he had \never shown yet.  He caused the Prince of Wales and two hundred and \nseventy of the young nobility to be knighted - the trees in the \nTemple Gardens were cut down to make room for their tents, and they \nwatched their armour all night, according to the old usage:  some \nin the Temple Church:  some in Westminster Abbey - and at the \npublic Feast which then took place, he swore, by Heaven, and by two \nswans covered with gold network which his minstrels placed upon the \ntable, that he would avenge the death of Comyn, and would punish \nthe false Bruce.  And before all the company, he charged the Prince \nhis son, in case that he should die before accomplishing his vow, \nnot to bury him until it was fulfilled.  Next morning the Prince \nand the rest of the young Knights rode away to the Border-country \nto join the English army; and the King, now weak and sick, followed \nin a horse-litter.\n\nBruce, after losing a battle and undergoing many dangers and much \nmisery, fled to Ireland, where he lay concealed through the winter.  \nThat winter, Edward passed in hunting down and executing Bruce's \nrelations and adherents, sparing neither youth nor age, and showing \nno touch of pity or sign of mercy.  In the following spring, Bruce \nreappeared and gained some victories.  In these frays, both sides \nwere grievously cruel.  For instance - Bruce's two brothers, being \ntaken captives desperately wounded, were ordered by the King to \ninstant execution.  Bruce's friend Sir John Douglas, taking his own \nCastle of Douglas out of the hands of an English Lord, roasted the \ndead bodies of the slaughtered garrison in a great fire made of \nevery movable within it; which dreadful cookery his men called the \nDouglas Larder.  Bruce, still successful, however, drove the Earl \nof Pembroke and the Earl of Gloucester into the Castle of Ayr and \nlaid siege to it.\n\nThe King, who had been laid up all the winter, but had directed the \narmy from his sick-bed, now advanced to Carlisle, and there, \ncausing the litter in which he had travelled to be placed in the \nCathedral as an offering to Heaven, mounted his horse once more, \nand for the last time.  He was now sixty-nine years old, and had \nreigned thirty-five years.  He was so ill, that in four days he \ncould go no more than six miles; still, even at that pace, he went \non and resolutely kept his face towards the Border.  At length, he \nlay down at the village of Burgh-upon-Sands; and there, telling \nthose around him to impress upon the Prince that he was to remember \nhis father's vow, and was never to rest until he had thoroughly \nsubdued Scotland, he yielded up his last breath.\n\n\n\nCHAPTER XVII - ENGLAND UNDER EDWARD THE SECOND\n\n\n\nKING Edward the Second, the first Prince of Wales, was twenty-three \nyears old when his father died.  There was a certain favourite of \nhis, a young man from Gascony, named PIERS GAVESTON, of whom his \nfather had so much disapproved that he had ordered him out of \nEngland, and had made his son swear by the side of his sick-bed, \nnever to bring him back.  But, the Prince no sooner found himself \nKing, than he broke his oath, as so many other Princes and Kings \ndid (they were far too ready to take oaths), and sent for his dear \nfriend immediately.\n\nNow, this same Gaveston was handsome enough, but was a reckless, \ninsolent, audacious fellow.  He was detested by the proud English \nLords:  not only because he had such power over the King, and made \nthe Court such a dissipated place, but, also, because he could ride \nbetter than they at tournaments, and was used, in his impudence, to \ncut very bad jokes on them; calling one, the old hog; another, the \nstage-player; another, the Jew; another, the black dog of Ardenne.  \nThis was as poor wit as need be, but it made those Lords very \nwroth; and the surly Earl of Warwick, who was the black dog, swore \nthat the time should come when Piers Gaveston should feel the black \ndog's teeth.\n\nIt was not come yet, however, nor did it seem to be coming.  The \nKing made him Earl of Cornwall, and gave him vast riches; and, when \nthe King went over to France to marry the French Princess, \nISABELLA, daughter of PHILIP LE BEL:  who was said to be the most \nbeautiful woman in the world:  he made Gaveston, Regent of the \nKingdom.  His splendid marriage-ceremony in the Church of Our Lady \nat Boulogne, where there were four Kings and three Queens present \n(quite a pack of Court Cards, for I dare say the Knaves were not \nwanting), being over, he seemed to care little or nothing for his \nbeautiful wife; but was wild with impatience to meet Gaveston \nagain.\n\nWhen he landed at home, he paid no attention to anybody else, but \nran into the favourite's arms before a great concourse of people, \nand hugged him, and kissed him, and called him his brother.  At the \ncoronation which soon followed, Gaveston was the richest and \nbrightest of all the glittering company there, and had the honour \nof carrying the crown.  This made the proud Lords fiercer than \never; the people, too, despised the favourite, and would never call \nhim Earl of Cornwall, however much he complained to the King and \nasked him to punish them for not doing so, but persisted in styling \nhim plain Piers Gaveston.\n\nThe Barons were so unceremonious with the King in giving him to \nunderstand that they would not bear this favourite, that the King \nwas obliged to send him out of the country.  The favourite himself \nwas made to take an oath (more oaths!) that he would never come \nback, and the Barons supposed him to be banished in disgrace, until \nthey heard that he was appointed Governor of Ireland.  Even this \nwas not enough for the besotted King, who brought him home again in \na year's time, and not only disgusted the Court and the people by \nhis doting folly, but offended his beautiful wife too, who never \nliked him afterwards.\n\nHe had now the old Royal want - of money - and the Barons had the \nnew power of positively refusing to let him raise any.  He summoned \na Parliament at York; the Barons refused to make one, while the \nfavourite was near him.  He summoned another Parliament at \nWestminster, and sent Gaveston away.  Then, the Barons came, \ncompletely armed, and appointed a committee of themselves to \ncorrect abuses in the state and in the King's household.  He got \nsome money on these conditions, and directly set off with Gaveston \nto the Border-country, where they spent it in idling away the time, \nand feasting, while Bruce made ready to drive the English out of \nScotland.  For, though the old King had even made this poor weak \nson of his swear (as some say) that he would not bury his bones, \nbut would have them boiled clean in a caldron, and carried before \nthe English army until Scotland was entirely subdued, the second \nEdward was so unlike the first that Bruce gained strength and power \nevery day.\n\nThe committee of Nobles, after some months of deliberation, \nordained that the King should henceforth call a Parliament \ntogether, once every year, and even twice if necessary, instead of \nsummoning it only when he chose.  Further, that Gaveston should \nonce more be banished, and, this time, on pain of death if he ever \ncame back.  The King's tears were of no avail; he was obliged to \nsend his favourite to Flanders.  As soon as he had done so, \nhowever, he dissolved the Parliament, with the low cunning of a \nmere fool, and set off to the North of England, thinking to get an \narmy about him to oppose the Nobles.  And once again he brought \nGaveston home, and heaped upon him all the riches and titles of \nwhich the Barons had deprived him.\n\nThe Lords saw, now, that there was nothing for it but to put the \nfavourite to death.  They could have done so, legally, according to \nthe terms of his banishment; but they did so, I am sorry to say, in \na shabby manner.  Led by the Earl of Lancaster, the King's cousin, \nthey first of all attacked the King and Gaveston at Newcastle.  \nThey had time to escape by sea, and the mean King, having his \nprecious Gaveston with him, was quite content to leave his lovely \nwife behind.  When they were comparatively safe, they separated; \nthe King went to York to collect a force of soldiers; and the \nfavourite shut himself up, in the meantime, in Scarborough Castle \noverlooking the sea.  This was what the Barons wanted.  They knew \nthat the Castle could not hold out; they attacked it, and made \nGaveston surrender.  He delivered himself up to the Earl of \nPembroke - that Lord whom he had called the Jew - on the Earl's \npledging his faith and knightly word, that no harm should happen to \nhim and no violence be done him.\n\nNow, it was agreed with Gaveston that he should be taken to the \nCastle of Wallingford, and there kept in honourable custody.  They \ntravelled as far as Dedington, near Banbury, where, in the Castle \nof that place, they stopped for a night to rest.  Whether the Earl \nof Pembroke left his prisoner there, knowing what would happen, or \nreally left him thinking no harm, and only going (as he pretended) \nto visit his wife, the Countess, who was in the neighbourhood, is \nno great matter now; in any case, he was bound as an honourable \ngentleman to protect his prisoner, and he did not do it.  In the \nmorning, while the favourite was yet in bed, he was required to \ndress himself and come down into the court-yard.  He did so without \nany mistrust, but started and turned pale when he found it full of \nstrange armed men.  'I think you know me?' said their leader, also \narmed from head to foot.  'I am the black dog of Ardenne!'  The \ntime was come when Piers Gaveston was to feel the black dog's teeth \nindeed.  They set him on a mule, and carried him, in mock state and \nwith military music, to the black dog's kennel - Warwick Castle - \nwhere a hasty council, composed of some great noblemen, considered \nwhat should be done with him.  Some were for sparing him, but one \nloud voice - it was the black dog's bark, I dare say - sounded \nthrough the Castle Hall, uttering these words:  'You have the fox \nin your power.  Let him go now, and you must hunt him again.'\n\nThey sentenced him to death.  He threw himself at the feet of the \nEarl of Lancaster - the old hog - but the old hog was as savage as \nthe dog.  He was taken out upon the pleasant road, leading from \nWarwick to Coventry, where the beautiful river Avon, by which, long \nafterwards, WILLIAM SHAKESPEARE was born and now lies buried, \nsparkled in the bright landscape of the beautiful May-day; and \nthere they struck off his wretched head, and stained the dust with \nhis blood.\n\nWhen the King heard of this black deed, in his grief and rage he \ndenounced relentless war against his Barons, and both sides were in \narms for half a year.  But, it then became necessary for them to \njoin their forces against Bruce, who had used the time well while \nthey were divided, and had now a great power in Scotland.\n\nIntelligence was brought that Bruce was then besieging Stirling \nCastle, and that the Governor had been obliged to pledge himself to \nsurrender it, unless he should be relieved before a certain day.  \nHereupon, the King ordered the nobles and their fighting-men to \nmeet him at Berwick; but, the nobles cared so little for the King, \nand so neglected the summons, and lost time, that only on the day \nbefore that appointed for the surrender, did the King find himself \nat Stirling, and even then with a smaller force than he had \nexpected.  However, he had, altogether, a hundred thousand men, and \nBruce had not more than forty thousand; but, Bruce's army was \nstrongly posted in three square columns, on the ground lying \nbetween the Burn or Brook of Bannock and the walls of Stirling \nCastle.\n\nOn the very evening, when the King came up, Bruce did a brave act \nthat encouraged his men.  He was seen by a certain HENRY DE BOHUN, \nan English Knight, riding about before his army on a little horse, \nwith a light battle-axe in his hand, and a crown of gold on his \nhead.  This English Knight, who was mounted on a strong war-horse, \ncased in steel, strongly armed, and able (as he thought) to \noverthrow Bruce by crushing him with his mere weight, set spurs to \nhis great charger, rode on him, and made a thrust at him with his \nheavy spear.  Bruce parried the thrust, and with one blow of his \nbattle-axe split his skull.\n\nThe Scottish men did not forget this, next day when the battle \nraged.  RANDOLPH, Bruce's valiant Nephew, rode, with the small body \nof men he commanded, into such a host of the English, all shining \nin polished armour in the sunlight, that they seemed to be \nswallowed up and lost, as if they had plunged into the sea.  But, \nthey fought so well, and did such dreadful execution, that the \nEnglish staggered.  Then came Bruce himself upon them, with all the \nrest of his army.  While they were thus hard pressed and amazed, \nthere appeared upon the hills what they supposed to be a new \nScottish army, but what were really only the camp followers, in \nnumber fifteen thousand:  whom Bruce had taught to show themselves \nat that place and time.  The Earl of Gloucester, commanding the \nEnglish horse, made a last rush to change the fortune of the day; \nbut Bruce (like Jack the Giant-killer in the story) had had pits \ndug in the ground, and covered over with turfs and stakes.  Into \nthese, as they gave way beneath the weight of the horses, riders \nand horses rolled by hundreds.  The English were completely routed; \nall their treasure, stores, and engines, were taken by the Scottish \nmen; so many waggons and other wheeled vehicles were seized, that \nit is related that they would have reached, if they had been drawn \nout in a line, one hundred and eighty miles.  The fortunes of \nScotland were, for the time, completely changed; and never was a \nbattle won, more famous upon Scottish ground, than this great \nbattle of BANNOCKBURN.\n\nPlague and famine succeeded in England; and still the powerless \nKing and his disdainful Lords were always in contention.  Some of \nthe turbulent chiefs of Ireland made proposals to Bruce, to accept \nthe rule of that country.  He sent his brother Edward to them, who \nwas crowned King of Ireland.  He afterwards went himself to help \nhis brother in his Irish wars, but his brother was defeated in the \nend and killed.  Robert Bruce, returning to Scotland, still \nincreased his strength there.\n\nAs the King's ruin had begun in a favourite, so it seemed likely to \nend in one.  He was too poor a creature to rely at all upon \nhimself; and his new favourite was one HUGH LE DESPENSER, the son \nof a gentleman of ancient family.  Hugh was handsome and brave, but \nhe was the favourite of a weak King, whom no man cared a rush for, \nand that was a dangerous place to hold.  The Nobles leagued against \nhim, because the King liked him; and they lay in wait, both for his \nruin and his father's.  Now, the King had married him to the \ndaughter of the late Earl of Gloucester, and had given both him and \nhis father great possessions in Wales.  In their endeavours to \nextend these, they gave violent offence to an angry Welsh \ngentleman, named JOHN DE MOWBRAY, and to divers other angry Welsh \ngentlemen, who resorted to arms, took their castles, and seized \ntheir estates.  The Earl of Lancaster had first placed the \nfavourite (who was a poor relation of his own) at Court, and he \nconsidered his own dignity offended by the preference he received \nand the honours he acquired; so he, and the Barons who were his \nfriends, joined the Welshmen, marched on London, and sent a message \nto the King demanding to have the favourite and his father \nbanished.  At first, the King unaccountably took it into his head \nto be spirited, and to send them a bold reply; but when they \nquartered themselves around Holborn and Clerkenwell, and went down, \narmed, to the Parliament at Westminster, he gave way, and complied \nwith their demands.\n\nHis turn of triumph came sooner than he expected.  It arose out of \nan accidental circumstance.  The beautiful Queen happening to be \ntravelling, came one night to one of the royal castles, and \ndemanded to be lodged and entertained there until morning.  The \ngovernor of this castle, who was one of the enraged lords, was \naway, and in his absence, his wife refused admission to the Queen; \na scuffle took place among the common men on either side, and some \nof the royal attendants were killed.  The people, who cared nothing \nfor the King, were very angry that their beautiful Queen should be \nthus rudely treated in her own dominions; and the King, taking \nadvantage of this feeling, besieged the castle, took it, and then \ncalled the two Despensers home.  Upon this, the confederate lords \nand the Welshmen went over to Bruce.  The King encountered them at \nBoroughbridge, gained the victory, and took a number of \ndistinguished prisoners; among them, the Earl of Lancaster, now an \nold man, upon whose destruction he was resolved.  This Earl was \ntaken to his own castle of Pontefract, and there tried and found \nguilty by an unfair court appointed for the purpose; he was not \neven allowed to speak in his own defence.  He was insulted, pelted, \nmounted on a starved pony without saddle or bridle, carried out, \nand beheaded.  Eight-and-twenty knights were hanged, drawn, and \nquartered.  When the King had despatched this bloody work, and had \nmade a fresh and a long truce with Bruce, he took the Despensers \ninto greater favour than ever, and made the father Earl of \nWinchester.\n\nOne prisoner, and an important one, who was taken at Boroughbridge, \nmade his escape, however, and turned the tide against the King.  \nThis was ROGER MORTIMER, always resolutely opposed to him, who was \nsentenced to death, and placed for safe custody in the Tower of \nLondon.  He treated his guards to a quantity of wine into which he \nhad put a sleeping potion; and, when they were insensible, broke \nout of his dungeon, got into a kitchen, climbed up the chimney, let \nhimself down from the roof of the building with a rope-ladder, \npassed the sentries, got down to the river, and made away in a boat \nto where servants and horses were waiting for him.  He finally \nescaped to France, where CHARLES LE BEL, the brother of the \nbeautiful Queen, was King.  Charles sought to quarrel with the King \nof England, on pretence of his not having come to do him homage at \nhis coronation.  It was proposed that the beautiful Queen should go \nover to arrange the dispute; she went, and wrote home to the King, \nthat as he was sick and could not come to France himself, perhaps \nit would be better to send over the young Prince, their son, who \nwas only twelve years old, who could do homage to her brother in \nhis stead, and in whose company she would immediately return.  The \nKing sent him:  but, both he and the Queen remained at the French \nCourt, and Roger Mortimer became the Queen's lover.\n\nWhen the King wrote, again and again, to the Queen to come home, \nshe did not reply that she despised him too much to live with him \nany more (which was the truth), but said she was afraid of the two \nDespensers.  In short, her design was to overthrow the favourites' \npower, and the King's power, such as it was, and invade England.  \nHaving obtained a French force of two thousand men, and being \njoined by all the English exiles then in France, she landed, within \na year, at Orewell, in Suffolk, where she was immediately joined by \nthe Earls of Kent and Norfolk, the King's two brothers; by other \npowerful noblemen; and lastly, by the first English general who was \ndespatched to check her:  who went over to her with all his men.  \nThe people of London, receiving these tidings, would do nothing for \nthe King, but broke open the Tower, let out all his prisoners, and \nthrew up their caps and hurrahed for the beautiful Queen.\n\nThe King, with his two favourites, fled to Bristol, where he left \nold Despenser in charge of the town and castle, while he went on \nwith the son to Wales.  The Bristol men being opposed to the King, \nand it being impossible to hold the town with enemies everywhere \nwithin the walls, Despenser yielded it up on the third day, and was \ninstantly brought to trial for having traitorously influenced what \nwas called 'the King's mind' - though I doubt if the King ever had \nany.  He was a venerable old man, upwards of ninety years of age, \nbut his age gained no respect or mercy.  He was hanged, torn open \nwhile he was yet alive, cut up into pieces, and thrown to the dogs.  \nHis son was soon taken, tried at Hereford before the same judge on \na long series of foolish charges, found guilty, and hanged upon a \ngallows fifty feet high, with a chaplet of nettles round his head.  \nHis poor old father and he were innocent enough of any worse crimes \nthan the crime of having been friends of a King, on whom, as a mere \nman, they would never have deigned to cast a favourable look.  It \nis a bad crime, I know, and leads to worse; but, many lords and \ngentlemen - I even think some ladies, too, if I recollect right - \nhave committed it in England, who have neither been given to the \ndogs, nor hanged up fifty feet high.\n\nThe wretched King was running here and there, all this time, and \nnever getting anywhere in particular, until he gave himself up, and \nwas taken off to Kenilworth Castle.  When he was safely lodged \nthere, the Queen went to London and met the Parliament.  And the \nBishop of Hereford, who was the most skilful of her friends, said, \nWhat was to be done now?  Here was an imbecile, indolent, miserable \nKing upon the throne; wouldn't it be better to take him off, and \nput his son there instead?  I don't know whether the Queen really \npitied him at this pass, but she began to cry; so, the Bishop said, \nWell, my Lords and Gentlemen, what do you think, upon the whole, of \nsending down to Kenilworth, and seeing if His Majesty (God bless \nhim, and forbid we should depose him!) won't resign?\n\nMy Lords and Gentlemen thought it a good notion, so a deputation of \nthem went down to Kenilworth; and there the King came into the \ngreat hall of the Castle, commonly dressed in a poor black gown; \nand when he saw a certain bishop among them, fell down, poor \nfeeble-headed man, and made a wretched spectacle of himself.  \nSomebody lifted him up, and then SIR WILLIAM TRUSSEL, the Speaker \nof the House of Commons, almost frightened him to death by making \nhim a tremendous speech to the effect that he was no longer a King, \nand that everybody renounced allegiance to him.  After which, SIR \nTHOMAS BLOUNT, the Steward of the Household, nearly finished him, \nby coming forward and breaking his white wand - which was a \nceremony only performed at a King's death.  Being asked in this \npressing manner what he thought of resigning, the King said he \nthought it was the best thing he could do.  So, he did it, and they \nproclaimed his son next day.\n\nI wish I could close his history by saying that he lived a harmless \nlife in the Castle and the Castle gardens at Kenilworth, many years \n- that he had a favourite, and plenty to eat and drink - and, \nhaving that, wanted nothing.  But he was shamefully humiliated.  He \nwas outraged, and slighted, and had dirty water from ditches given \nhim to shave with, and wept and said he would have clean warm \nwater, and was altogether very miserable.  He was moved from this \ncastle to that castle, and from that castle to the other castle, \nbecause this lord or that lord, or the other lord, was too kind to \nhim:  until at last he came to Berkeley Castle, near the River \nSevern, where (the Lord Berkeley being then ill and absent) he fell \ninto the hands of two black ruffians, called THOMAS GOURNAY and \nWILLIAM OGLE.\n\nOne night - it was the night of September the twenty-first, one \nthousand three hundred and twenty-seven - dreadful screams were \nheard, by the startled people in the neighbouring town, ringing \nthrough the thick walls of the Castle, and the dark, deep night; \nand they said, as they were thus horribly awakened from their \nsleep, 'May Heaven be merciful to the King; for those cries forbode \nthat no good is being done to him in his dismal prison!'  Next \nmorning he was dead - not bruised, or stabbed, or marked upon the \nbody, but much distorted in the face; and it was whispered \nafterwards, that those two villains, Gournay and Ogle, had burnt up \nhis inside with a red-hot iron.\n\nIf you ever come near Gloucester, and see the centre tower of its \nbeautiful Cathedral, with its four rich pinnacles, rising lightly \nin the air; you may remember that the wretched Edward the Second \nwas buried in the old abbey of that ancient city, at forty-three \nyears old, after being for nineteen years and a half a perfectly \nincapable King.\n\n\n\nCHAPTER XVIII - ENGLAND UNDER EDWARD THE THIRD\n\n\n\nROGER MORTIMER, the Queen's lover (who escaped to France in the \nlast chapter), was far from profiting by the examples he had had of \nthe fate of favourites.  Having, through the Queen's influence, \ncome into possession of the estates of the two Despensers, he \nbecame extremely proud and ambitious, and sought to be the real \nruler of England.  The young King, who was crowned at fourteen \nyears of age with all the usual solemnities, resolved not to bear \nthis, and soon pursued Mortimer to his ruin.\n\nThe people themselves were not fond of Mortimer - first, because he \nwas a Royal favourite; secondly, because he was supposed to have \nhelped to make a peace with Scotland which now took place, and in \nvirtue of which the young King's sister Joan, only seven years old, \nwas promised in marriage to David, the son and heir of Robert \nBruce, who was only five years old.  The nobles hated Mortimer \nbecause of his pride, riches, and power.  They went so far as to \ntake up arms against him; but were obliged to submit.  The Earl of \nKent, one of those who did so, but who afterwards went over to \nMortimer and the Queen, was made an example of in the following \ncruel manner:\n\nHe seems to have been anything but a wise old earl; and he was \npersuaded by the agents of the favourite and the Queen, that poor \nKing Edward the Second was not really dead; and thus was betrayed \ninto writing letters favouring his rightful claim to the throne.  \nThis was made out to be high treason, and he was tried, found \nguilty, and sentenced to be executed.  They took the poor old lord \noutside the town of Winchester, and there kept him waiting some \nthree or four hours until they could find somebody to cut off his \nhead.  At last, a convict said he would do it, if the government \nwould pardon him in return; and they gave him the pardon; and at \none blow he put the Earl of Kent out of his last suspense.\n\nWhile the Queen was in France, she had found a lovely and good \nyoung lady, named Philippa, who she thought would make an excellent \nwife for her son.  The young King married this lady, soon after he \ncame to the throne; and her first child, Edward, Prince of Wales, \nafterwards became celebrated, as we shall presently see, under the \nfamous title of EDWARD THE BLACK PRINCE.\n\nThe young King, thinking the time ripe for the downfall of \nMortimer, took counsel with Lord Montacute how he should proceed.  \nA Parliament was going to be held at Nottingham, and that lord \nrecommended that the favourite should be seized by night in \nNottingham Castle, where he was sure to be.  Now, this, like many \nother things, was more easily said than done; because, to guard \nagainst treachery, the great gates of the Castle were locked every \nnight, and the great keys were carried up-stairs to the Queen, who \nlaid them under her own pillow.  But the Castle had a governor, and \nthe governor being Lord Montacute's friend, confided to him how he \nknew of a secret passage underground, hidden from observation by \nthe weeds and brambles with which it was overgrown; and how, \nthrough that passage, the conspirators might enter in the dead of \nthe night, and go straight to Mortimer's room.  Accordingly, upon a \ncertain dark night, at midnight, they made their way through this \ndismal place:  startling the rats, and frightening the owls and \nbats:  and came safely to the bottom of the main tower of the \nCastle, where the King met them, and took them up a profoundly-dark \nstaircase in a deep silence.  They soon heard the voice of Mortimer \nin council with some friends; and bursting into the room with a \nsudden noise, took him prisoner.  The Queen cried out from her bed-\nchamber, 'Oh, my sweet son, my dear son, spare my gentle Mortimer!'  \nThey carried him off, however; and, before the next Parliament, \naccused him of having made differences between the young King and \nhis mother, and of having brought about the death of the Earl of \nKent, and even of the late King; for, as you know by this time, \nwhen they wanted to get rid of a man in those old days, they were \nnot very particular of what they accused him.  Mortimer was found \nguilty of all this, and was sentenced to be hanged at Tyburn.  The \nKing shut his mother up in genteel confinement, where she passed \nthe rest of her life; and now he became King in earnest.\n\nThe first effort he made was to conquer Scotland.  The English \nlords who had lands in Scotland, finding that their rights were not \nrespected under the late peace, made war on their own account:  \nchoosing for their general, Edward, the son of John Baliol, who \nmade such a vigorous fight, that in less than two months he won the \nwhole Scottish Kingdom.  He was joined, when thus triumphant, by \nthe King and Parliament; and he and the King in person besieged the \nScottish forces in Berwick.  The whole Scottish army coming to the \nassistance of their countrymen, such a furious battle ensued, that \nthirty thousand men are said to have been killed in it.  Baliol was \nthen crowned King of Scotland, doing homage to the King of England; \nbut little came of his successes after all, for the Scottish men \nrose against him, within no very long time, and David Bruce came \nback within ten years and took his kingdom.\n\nFrance was a far richer country than Scotland, and the King had a \nmuch greater mind to conquer it.  So, he let Scotland alone, and \npretended that he had a claim to the French throne in right of his \nmother.  He had, in reality, no claim at all; but that mattered \nlittle in those times.  He brought over to his cause many little \nprinces and sovereigns, and even courted the alliance of the people \nof Flanders - a busy, working community, who had very small respect \nfor kings, and whose head man was a brewer.  With such forces as he \nraised by these means, Edward invaded France; but he did little by \nthat, except run into debt in carrying on the war to the extent of \nthree hundred thousand pounds.  The next year he did better; \ngaining a great sea-fight in the harbour of Sluys.  This success, \nhowever, was very shortlived, for the Flemings took fright at the \nsiege of Saint Omer and ran away, leaving their weapons and baggage \nbehind them.  Philip, the French King, coming up with his army, and \nEdward being very anxious to decide the war, proposed to settle the \ndifference by single combat with him, or by a fight of one hundred \nknights on each side.  The French King said, he thanked him; but \nbeing very well as he was, he would rather not.  So, after some \nskirmishing and talking, a short peace was made.\n\nIt was soon broken by King Edward's favouring the cause of John, \nEarl of Montford; a French nobleman, who asserted a claim of his \nown against the French King, and offered to do homage to England \nfor the Crown of France, if he could obtain it through England's \nhelp.  This French lord, himself, was soon defeated by the French \nKing's son, and shut up in a tower in Paris; but his wife, a \ncourageous and beautiful woman, who is said to have had the courage \nof a man, and the heart of a lion, assembled the people of \nBrittany, where she then was; and, showing them her infant son, \nmade many pathetic entreaties to them not to desert her and their \nyoung Lord.  They took fire at this appeal, and rallied round her \nin the strong castle of Hennebon.  Here she was not only besieged \nwithout by the French under Charles de Blois, but was endangered \nwithin by a dreary old bishop, who was always representing to the \npeople what horrors they must undergo if they were faithful - first \nfrom famine, and afterwards from fire and sword.  But this noble \nlady, whose heart never failed her, encouraged her soldiers by her \nown example; went from post to post like a great general; even \nmounted on horseback fully armed, and, issuing from the castle by a \nby-path, fell upon the French camp, set fire to the tents, and \nthrew the whole force into disorder.  This done, she got safely \nback to Hennebon again, and was received with loud shouts of joy by \nthe defenders of the castle, who had given her up for lost.  As \nthey were now very short of provisions, however, and as they could \nnot dine off enthusiasm, and as the old bishop was always saying, \n'I told you what it would come to!' they began to lose heart, and \nto talk of yielding the castle up.  The brave Countess retiring to \nan upper room and looking with great grief out to sea, where she \nexpected relief from England, saw, at this very time, the English \nships in the distance, and was relieved and rescued!  Sir Walter \nManning, the English commander, so admired her courage, that, being \ncome into the castle with the English knights, and having made a \nfeast there, he assaulted the French by way of dessert, and beat \nthem off triumphantly.  Then he and the knights came back to the \ncastle with great joy; and the Countess who had watched them from a \nhigh tower, thanked them with all her heart, and kissed them every \none.\n\nThis noble lady distinguished herself afterwards in a sea-fight \nwith the French off Guernsey, when she was on her way to England to \nask for more troops.  Her great spirit roused another lady, the \nwife of another French lord (whom the French King very barbarously \nmurdered), to distinguish herself scarcely less.  The time was fast \ncoming, however, when Edward, Prince of Wales, was to be the great \nstar of this French and English war.\n\nIt was in the month of July, in the year one thousand three hundred \nand forty-six, when the King embarked at Southampton for France, \nwith an army of about thirty thousand men in all, attended by the \nPrince of Wales and by several of the chief nobles.  He landed at \nLa Hogue in Normandy; and, burning and destroying as he went, \naccording to custom, advanced up the left bank of the River Seine, \nand fired the small towns even close to Paris; but, being watched \nfrom the right bank of the river by the French King and all his \narmy, it came to this at last, that Edward found himself, on \nSaturday the twenty-sixth of August, one thousand three hundred and \nforty-six, on a rising ground behind the little French village of \nCrecy, face to face with the French King's force.  And, although \nthe French King had an enormous army - in number more than eight \ntimes his - he there resolved to beat him or be beaten.\n\nThe young Prince, assisted by the Earl of Oxford and the Earl of \nWarwick, led the first division of the English army; two other \ngreat Earls led the second; and the King, the third.  When the \nmorning dawned, the King received the sacrament, and heard prayers, \nand then, mounted on horseback with a white wand in his hand, rode \nfrom company to company, and rank to rank, cheering and encouraging \nboth officers and men.  Then the whole army breakfasted, each man \nsitting on the ground where he had stood; and then they remained \nquietly on the ground with their weapons ready.\n\nUp came the French King with all his great force.  It was dark and \nangry weather; there was an eclipse of the sun; there was a \nthunder-storm, accompanied with tremendous rain; the frightened \nbirds flew screaming above the soldiers' heads.  A certain captain \nin the French army advised the French King, who was by no means \ncheerful, not to begin the battle until the morrow.  The King, \ntaking this advice, gave the word to halt.  But, those behind not \nunderstanding it, or desiring to be foremost with the rest, came \npressing on.  The roads for a great distance were covered with this \nimmense army, and with the common people from the villages, who \nwere flourishing their rude weapons, and making a great noise.  \nOwing to these circumstances, the French army advanced in the \ngreatest confusion; every French lord doing what he liked with his \nown men, and putting out the men of every other French lord.\n\nNow, their King relied strongly upon a great body of cross-bowmen \nfrom Genoa; and these he ordered to the front to begin the battle, \non finding that he could not stop it.  They shouted once, they \nshouted twice, they shouted three times, to alarm the English \narchers; but, the English would have heard them shout three \nthousand times and would have never moved.  At last the cross-\nbowmen went forward a little, and began to discharge their bolts; \nupon which, the English let fly such a hail of arrows, that the \nGenoese speedily made off - for their cross-bows, besides being \nheavy to carry, required to be wound up with a handle, and \nconsequently took time to re-load; the English, on the other hand, \ncould discharge their arrows almost as fast as the arrows could \nfly.\n\nWhen the French King saw the Genoese turning, he cried out to his \nmen to kill those scoundrels, who were doing harm instead of \nservice.  This increased the confusion.  Meanwhile the English \narchers, continuing to shoot as fast as ever, shot down great \nnumbers of the French soldiers and knights; whom certain sly \nCornish-men and Welshmen, from the English army, creeping along the \nground, despatched with great knives.\n\nThe Prince and his division were at this time so hard-pressed, that \nthe Earl of Warwick sent a message to the King, who was overlooking \nthe battle from a windmill, beseeching him to send more aid.\n\n'Is my son killed?' said the King.\n\n'No, sire, please God,' returned the messenger.\n\n'Is he wounded?' said the King.\n\n'No, sire.'\n\n'Is he thrown to the ground?' said the King.\n\n'No, sire, not so; but, he is very hard-pressed.'\n\n'Then,' said the King, 'go back to those who sent you, and tell \nthem I shall send no aid; because I set my heart upon my son \nproving himself this day a brave knight, and because I am resolved, \nplease God, that the honour of a great victory shall be his!'\n\nThese bold words, being reported to the Prince and his division, so \nraised their spirits, that they fought better than ever.  The King \nof France charged gallantly with his men many times; but it was of \nno use.  Night closing in, his horse was killed under him by an \nEnglish arrow, and the knights and nobles who had clustered thick \nabout him early in the day, were now completely scattered.  At \nlast, some of his few remaining followers led him off the field by \nforce since he would not retire of himself, and they journeyed away \nto Amiens.  The victorious English, lighting their watch-fires, \nmade merry on the field, and the King, riding to meet his gallant \nson, took him in his arms, kissed him, and told him that he had \nacted nobly, and proved himself worthy of the day and of the crown.  \nWhile it was yet night, King Edward was hardly aware of the great \nvictory he had gained; but, next day, it was discovered that eleven \nprinces, twelve hundred knights, and thirty thousand common men lay \ndead upon the French side.  Among these was the King of Bohemia, an \nold blind man; who, having been told that his son was wounded in \nthe battle, and that no force could stand against the Black Prince, \ncalled to him two knights, put himself on horse-back between them, \nfastened the three bridles together, and dashed in among the \nEnglish, where he was presently slain.  He bore as his crest three \nwhite ostrich feathers, with the motto ICH DIEN, signifying in \nEnglish 'I serve.'  This crest and motto were taken by the Prince \nof Wales in remembrance of that famous day, and have been borne by \nthe Prince of Wales ever since.\n\nFive days after this great battle, the King laid siege to Calais.  \nThis siege - ever afterwards memorable - lasted nearly a year.  In \norder to starve the inhabitants out, King Edward built so many \nwooden houses for the lodgings of his troops, that it is said their \nquarters looked like a second Calais suddenly sprung around the \nfirst.  Early in the siege, the governor of the town drove out what \nhe called the useless mouths, to the number of seventeen hundred \npersons, men and women, young and old.  King Edward allowed them to \npass through his lines, and even fed them, and dismissed them with \nmoney; but, later in the siege, he was not so merciful - five \nhundred more, who were afterwards driven out, dying of starvation \nand misery.  The garrison were so hard-pressed at last, that they \nsent a letter to King Philip, telling him that they had eaten all \nthe horses, all the dogs, and all the rats and mice that could be \nfound in the place; and, that if he did not relieve them, they must \neither surrender to the English, or eat one another.  Philip made \none effort to give them relief; but they were so hemmed in by the \nEnglish power, that he could not succeed, and was fain to leave the \nplace.  Upon this they hoisted the English flag, and surrendered to \nKing Edward.  'Tell your general,' said he to the humble messengers \nwho came out of the town, 'that I require to have sent here, six of \nthe most distinguished citizens, bare-legged, and in their shirts, \nwith ropes about their necks; and let those six men bring with them \nthe keys of the castle and the town.'\n\nWhen the Governor of Calais related this to the people in the \nMarket-place, there was great weeping and distress; in the midst of \nwhich, one worthy citizen, named Eustace de Saint Pierre, rose up \nand said, that if the six men required were not sacrificed, the \nwhole population would be; therefore, he offered himself as the \nfirst.  Encouraged by this bright example, five other worthy \ncitizens rose up one after another, and offered themselves to save \nthe rest.  The Governor, who was too badly wounded to be able to \nwalk, mounted a poor old horse that had not been eaten, and \nconducted these good men to the gate, while all the people cried \nand mourned.\n\nEdward received them wrathfully, and ordered the heads of the whole \nsix to be struck off.  However, the good Queen fell upon her knees, \nand besought the King to give them up to her.  The King replied, 'I \nwish you had been somewhere else; but I cannot refuse you.'  So she \nhad them properly dressed, made a feast for them, and sent them \nback with a handsome present, to the great rejoicing of the whole \ncamp.  I hope the people of Calais loved the daughter to whom she \ngave birth soon afterwards, for her gentle mother's sake.\n\nNow came that terrible disease, the Plague, into Europe, hurrying \nfrom the heart of China; and killed the wretched people - \nespecially the poor - in such enormous numbers, that one-half of \nthe inhabitants of England are related to have died of it.  It \nkilled the cattle, in great numbers, too; and so few working men \nremained alive, that there were not enough left to till the ground.\n\nAfter eight years of differing and quarrelling, the Prince of Wales \nagain invaded France with an army of sixty thousand men.  He went \nthrough the south of the country, burning and plundering \nwheresoever he went; while his father, who had still the Scottish \nwar upon his hands, did the like in Scotland, but was harassed and \nworried in his retreat from that country by the Scottish men, who \nrepaid his cruelties with interest.\n\nThe French King, Philip, was now dead, and was succeeded by his son \nJohn.  The Black Prince, called by that name from the colour of the \narmour he wore to set off his fair complexion, continuing to burn \nand destroy in France, roused John into determined opposition; and \nso cruel had the Black Prince been in his campaign, and so severely \nhad the French peasants suffered, that he could not find one who, \nfor love, or money, or the fear of death, would tell him what the \nFrench King was doing, or where he was.  Thus it happened that he \ncame upon the French King's forces, all of a sudden, near the town \nof Poitiers, and found that the whole neighbouring country was \noccupied by a vast French army.  'God help us!' said the Black \nPrince, 'we must make the best of it.'\n\nSo, on a Sunday morning, the eighteenth of September, the Prince \nwhose army was now reduced to ten thousand men in all - prepared to \ngive battle to the French King, who had sixty thousand horse alone.  \nWhile he was so engaged, there came riding from the French camp, a \nCardinal, who had persuaded John to let him offer terms, and try to \nsave the shedding of Christian blood.  'Save my honour,' said the \nPrince to this good priest, 'and save the honour of my army, and I \nwill make any reasonable terms.'  He offered to give up all the \ntowns, castles, and prisoners, he had taken, and to swear to make \nno war in France for seven years; but, as John would hear of \nnothing but his surrender, with a hundred of his chief knights, the \ntreaty was broken off, and the Prince said quietly - 'God defend \nthe right; we shall fight to-morrow.'\n\nTherefore, on the Monday morning, at break of day, the two armies \nprepared for battle.  The English were posted in a strong place, \nwhich could only be approached by one narrow lane, skirted by \nhedges on both sides.  The French attacked them by this lane; but \nwere so galled and slain by English arrows from behind the hedges, \nthat they were forced to retreat.  Then went six hundred English \nbowmen round about, and, coming upon the rear of the French army, \nrained arrows on them thick and fast.  The French knights, thrown \ninto confusion, quitted their banners and dispersed in all \ndirections.  Said Sir John Chandos to the Prince, 'Ride forward, \nnoble Prince, and the day is yours.  The King of France is so \nvaliant a gentleman, that I know he will never fly, and may be \ntaken prisoner.'  Said the Prince to this, 'Advance, English \nbanners, in the name of God and St. George!' and on they pressed \nuntil they came up with the French King, fighting fiercely with his \nbattle-axe, and, when all his nobles had forsaken him, attended \nfaithfully to the last by his youngest son Philip, only sixteen \nyears of age.  Father and son fought well, and the King had already \ntwo wounds in his face, and had been beaten down, when he at last \ndelivered himself to a banished French knight, and gave him his \nright-hand glove in token that he had done so.\n\nThe Black Prince was generous as well as brave, and he invited his \nroyal prisoner to supper in his tent, and waited upon him at table, \nand, when they afterwards rode into London in a gorgeous \nprocession, mounted the French King on a fine cream-coloured horse, \nand rode at his side on a little pony.  This was all very kind, but \nI think it was, perhaps, a little theatrical too, and has been made \nmore meritorious than it deserved to be; especially as I am \ninclined to think that the greatest kindness to the King of France \nwould have been not to have shown him to the people at all.  \nHowever, it must be said, for these acts of politeness, that, in \ncourse of time, they did much to soften the horrors of war and the \npassions of conquerors.  It was a long, long time before the common \nsoldiers began to have the benefit of such courtly deeds; but they \ndid at last; and thus it is possible that a poor soldier who asked \nfor quarter at the battle of Waterloo, or any other such great \nfight, may have owed his life indirectly to Edward the Black \nPrince.\n\nAt this time there stood in the Strand, in London, a palace called \nthe Savoy, which was given up to the captive King of France and his \nson for their residence.  As the King of Scotland had now been King \nEdward's captive for eleven years too, his success was, at this \ntime, tolerably complete.  The Scottish business was settled by the \nprisoner being released under the title of Sir David, King of \nScotland, and by his engaging to pay a large ransom.  The state of \nFrance encouraged England to propose harder terms to that country, \nwhere the people rose against the unspeakable cruelty and barbarity \nof its nobles; where the nobles rose in turn against the people; \nwhere the most frightful outrages were committed on all sides; and \nwhere the insurrection of the peasants, called the insurrection of \nthe Jacquerie, from Jacques, a common Christian name among the \ncountry people of France, awakened terrors and hatreds that have \nscarcely yet passed away.  A treaty called the Great Peace, was at \nlast signed, under which King Edward agreed to give up the greater \npart of his conquests, and King John to pay, within six years, a \nransom of three million crowns of gold.  He was so beset by his own \nnobles and courtiers for having yielded to these conditions - \nthough they could help him to no better - that he came back of his \nown will to his old palace-prison of the Savoy, and there died.\n\nThere was a Sovereign of Castile at that time, called PEDRO THE \nCRUEL, who deserved the name remarkably well:  having committed, \namong other cruelties, a variety of murders.  This amiable monarch \nbeing driven from his throne for his crimes, went to the province \nof Bordeaux, where the Black Prince - now married to his cousin \nJOAN, a pretty widow - was residing, and besought his help.  The \nPrince, who took to him much more kindly than a prince of such fame \nought to have taken to such a ruffian, readily listened to his fair \npromises, and agreeing to help him, sent secret orders to some \ntroublesome disbanded soldiers of his and his father's, who called \nthemselves the Free Companions, and who had been a pest to the \nFrench people, for some time, to aid this Pedro.  The Prince, \nhimself, going into Spain to head the army of relief, soon set \nPedro on his throne again - where he no sooner found himself, than, \nof course, he behaved like the villain he was, broke his word \nwithout the least shame, and abandoned all the promises he had made \nto the Black Prince.\n\nNow, it had cost the Prince a good deal of money to pay soldiers to \nsupport this murderous King; and finding himself, when he came back \ndisgusted to Bordeaux, not only in bad health, but deeply in debt, \nhe began to tax his French subjects to pay his creditors.  They \nappealed to the French King, CHARLES; war again broke out; and the \nFrench town of Limoges, which the Prince had greatly benefited, \nwent over to the French King.  Upon this he ravaged the province of \nwhich it was the capital; burnt, and plundered, and killed in the \nold sickening way; and refused mercy to the prisoners, men, women, \nand children taken in the offending town, though he was so ill and \nso much in need of pity himself from Heaven, that he was carried in \na litter.  He lived to come home and make himself popular with the \npeople and Parliament, and he died on Trinity Sunday, the eighth of \nJune, one thousand three hundred and seventy-six, at forty-six \nyears old.\n\nThe whole nation mourned for him as one of the most renowned and \nbeloved princes it had ever had; and he was buried with great \nlamentations in Canterbury Cathedral.  Near to the tomb of Edward \nthe Confessor, his monument, with his figure, carved in stone, and \nrepresented in the old black armour, lying on its back, may be seen \nat this day, with an ancient coat of mail, a helmet, and a pair of \ngauntlets hanging from a beam above it, which most people like to \nbelieve were once worn by the Black Prince.\n\nKing Edward did not outlive his renowned son, long.  He was old, \nand one Alice Perrers, a beautiful lady, had contrived to make him \nso fond of her in his old age, that he could refuse her nothing, \nand made himself ridiculous.  She little deserved his love, or - \nwhat I dare say she valued a great deal more - the jewels of the \nlate Queen, which he gave her among other rich presents.  She took \nthe very ring from his finger on the morning of the day when he \ndied, and left him to be pillaged by his faithless servants.  Only \none good priest was true to him, and attended him to the last.\n\nBesides being famous for the great victories I have related, the \nreign of King Edward the Third was rendered memorable in better \nways, by the growth of architecture and the erection of Windsor \nCastle.  In better ways still, by the rising up of WICKLIFFE, \noriginally a poor parish priest:  who devoted himself to exposing, \nwith wonderful power and success, the ambition and corruption of \nthe Pope, and of the whole church of which he was the head.\n\nSome of those Flemings were induced to come to England in this \nreign too, and to settle in Norfolk, where they made better woollen \ncloths than the English had ever had before.  The Order of the \nGarter (a very fine thing in its way, but hardly so important as \ngood clothes for the nation) also dates from this period.  The King \nis said to have picked 'up a lady's garter at a ball, and to have \nsaid, HONI SOIT QUI MAL Y PENSE - in English, 'Evil be to him who \nevil thinks of it.'  The courtiers were usually glad to imitate \nwhat the King said or did, and hence from a slight incident the \nOrder of the Garter was instituted, and became a great dignity.  So \nthe story goes.\n\n\n\nCHAPTER XIX - ENGLAND UNDER RICHARD THE SECOND\n\n\n\nRICHARD, son of the Black Prince, a boy eleven years of age, \nsucceeded to the Crown under the title of King Richard the Second.  \nThe whole English nation were ready to admire him for the sake of \nhis brave father.  As to the lords and ladies about the Court, they \ndeclared him to be the most beautiful, the wisest, and the best - \neven of princes - whom the lords and ladies about the Court, \ngenerally declare to be the most beautiful, the wisest, and the \nbest of mankind.  To flatter a poor boy in this base manner was not \na very likely way to develop whatever good was in him; and it \nbrought him to anything but a good or happy end.\n\nThe Duke of Lancaster, the young King's uncle - commonly called \nJohn of Gaunt, from having been born at Ghent, which the common \npeople so pronounced - was supposed to have some thoughts of the \nthrone himself; but, as he was not popular, and the memory of the \nBlack Prince was, he submitted to his nephew.\n\nThe war with France being still unsettled, the Government of \nEngland wanted money to provide for the expenses that might arise \nout of it; accordingly a certain tax, called the Poll-tax, which \nhad originated in the last reign, was ordered to be levied on the \npeople.  This was a tax on every person in the kingdom, male and \nfemale, above the age of fourteen, of three groats (or three four-\npenny pieces) a year; clergymen were charged more, and only beggars \nwere exempt.\n\nI have no need to repeat that the common people of England had long \nbeen suffering under great oppression.  They were still the mere \nslaves of the lords of the land on which they lived, and were on \nmost occasions harshly and unjustly treated.  But, they had begun \nby this time to think very seriously of not bearing quite so much; \nand, probably, were emboldened by that French insurrection I \nmentioned in the last chapter.\n\nThe people of Essex rose against the Poll-tax, and being severely \nhandled by the government officers, killed some of them.  At this \nvery time one of the tax-collectors, going his rounds from house to \nhouse, at Dartford in Kent came to the cottage of one WAT, a tiler \nby trade, and claimed the tax upon his daughter.  Her mother, who \nwas at home, declared that she was under the age of fourteen; upon \nthat, the collector (as other collectors had already done in \ndifferent parts of England) behaved in a savage way, and brutally \ninsulted Wat Tyler's daughter.  The daughter screamed, the mother \nscreamed.  Wat the Tiler, who was at work not far off, ran to the \nspot, and did what any honest father under such provocation might \nhave done - struck the collector dead at a blow.\n\nInstantly the people of that town uprose as one man.  They made Wat \nTyler their leader; they joined with the people of Essex, who were \nin arms under a priest called JACK STRAW; they took out of prison \nanother priest named JOHN BALL; and gathering in numbers as they \nwent along, advanced, in a great confused army of poor men, to \nBlackheath.  It is said that they wanted to abolish all property, \nand to declare all men equal.  I do not think this very likely; \nbecause they stopped the travellers on the roads and made them \nswear to be true to King Richard and the people.  Nor were they at \nall disposed to injure those who had done them no harm, merely \nbecause they were of high station; for, the King's mother, who had \nto pass through their camp at Blackheath, on her way to her young \nson, lying for safety in the Tower of London, had merely to kiss a \nfew dirty-faced rough-bearded men who were noisily fond of royalty, \nand so got away in perfect safety.  Next day the whole mass marched \non to London Bridge.\n\nThere was a drawbridge in the middle, which WILLIAM WALWORTH the \nMayor caused to be raised to prevent their coming into the city; \nbut they soon terrified the citizens into lowering it again, and \nspread themselves, with great uproar, over the streets.  They broke \nopen the prisons; they burned the papers in Lambeth Palace; they \ndestroyed the DUKE OF LANCASTER'S Palace, the Savoy, in the Strand, \nsaid to be the most beautiful and splendid in England; they set \nfire to the books and documents in the Temple; and made a great \nriot.  Many of these outrages were committed in drunkenness; since \nthose citizens, who had well-filled cellars, were only too glad to \nthrow them open to save the rest of their property; but even the \ndrunken rioters were very careful to steal nothing.  They were so \nangry with one man, who was seen to take a silver cup at the Savoy \nPalace, and put it in his breast, that they drowned him in the \nriver, cup and all.\n\nThe young King had been taken out to treat with them before they \ncommitted these excesses; but, he and the people about him were so \nfrightened by the riotous shouts, that they got back to the Tower \nin the best way they could.  This made the insurgents bolder; so \nthey went on rioting away, striking off the heads of those who did \nnot, at a moment's notice, declare for King Richard and the people; \nand killing as many of the unpopular persons whom they supposed to \nbe their enemies as they could by any means lay hold of.  In this \nmanner they passed one very violent day, and then proclamation was \nmade that the King would meet them at Mile-end, and grant their \nrequests.\n\nThe rioters went to Mile-end to the number of sixty thousand, and \nthe King met them there, and to the King the rioters peaceably \nproposed four conditions.  First, that neither they, nor their \nchildren, nor any coming after them, should be made slaves any \nmore.  Secondly, that the rent of land should be fixed at a certain \nprice in money, instead of being paid in service.  Thirdly, that \nthey should have liberty to buy and sell in all markets and public \nplaces, like other free men.  Fourthly, that they should be \npardoned for past offences.  Heaven knows, there was nothing very \nunreasonable in these proposals!  The young King deceitfully \npretended to think so, and kept thirty clerks up, all night, \nwriting out a charter accordingly.\n\nNow, Wat Tyler himself wanted more than this.  He wanted the entire \nabolition of the forest laws.  He was not at Mile-end with the \nrest, but, while that meeting was being held, broke into the Tower \nof London and slew the archbishop and the treasurer, for whose \nheads the people had cried out loudly the day before.  He and his \nmen even thrust their swords into the bed of the Princess of Wales \nwhile the Princess was in it, to make certain that none of their \nenemies were concealed there.\n\nSo, Wat and his men still continued armed, and rode about the city.  \nNext morning, the King with a small train of some sixty gentlemen - \namong whom was WALWORTH the Mayor - rode into Smithfield, and saw \nWat and his people at a little distance.  Says Wat to his men, \n'There is the King.  I will go speak with him, and tell him what we \nwant.'\n\nStraightway Wat rode up to him, and began to talk.  'King,' says \nWat, 'dost thou see all my men there?'\n\n'Ah,' says the King.  'Why?'\n\n'Because,' says Wat, 'they are all at my command, and have sworn to \ndo whatever I bid them.'\n\nSome declared afterwards that as Wat said this, he laid his hand on \nthe King's bridle.  Others declared that he was seen to play with \nhis own dagger.  I think, myself, that he just spoke to the King \nlike a rough, angry man as he was, and did nothing more.  At any \nrate he was expecting no attack, and preparing for no resistance, \nwhen Walworth the Mayor did the not very valiant deed of drawing a \nshort sword and stabbing him in the throat.  He dropped from his \nhorse, and one of the King's people speedily finished him.  So fell \nWat Tyler.  Fawners and flatterers made a mighty triumph of it, and \nset up a cry which will occasionally find an echo to this day.  But \nWat was a hard-working man, who had suffered much, and had been \nfoully outraged; and it is probable that he was a man of a much \nhigher nature and a much braver spirit than any of the parasites \nwho exulted then, or have exulted since, over his defeat.\n\nSeeing Wat down, his men immediately bent their bows to avenge his \nfall.  If the young King had not had presence of mind at that \ndangerous moment, both he and the Mayor to boot, might have \nfollowed Tyler pretty fast.  But the King riding up to the crowd, \ncried out that Tyler was a traitor, and that he would be their \nleader.  They were so taken by surprise, that they set up a great \nshouting, and followed the boy until he was met at Islington by a \nlarge body of soldiers.\n\nThe end of this rising was the then usual end.  As soon as the King \nfound himself safe, he unsaid all he had said, and undid all he had \ndone; some fifteen hundred of the rioters were tried (mostly in \nEssex) with great rigour, and executed with great cruelty.  Many of \nthem were hanged on gibbets, and left there as a terror to the \ncountry people; and, because their miserable friends took some of \nthe bodies down to bury, the King ordered the rest to be chained up \n- which was the beginning of the barbarous custom of hanging in \nchains.  The King's falsehood in this business makes such a pitiful \nfigure, that I think Wat Tyler appears in history as beyond \ncomparison the truer and more respectable man of the two.\n\nRichard was now sixteen years of age, and married Anne of Bohemia, \nan excellent princess, who was called 'the good Queen Anne.'  She \ndeserved a better husband; for the King had been fawned and \nflattered into a treacherous, wasteful, dissolute, bad young man.\n\nThere were two Popes at this time (as if one were not enough!), and \ntheir quarrels involved Europe in a great deal of trouble.  \nScotland was still troublesome too; and at home there was much \njealousy and distrust, and plotting and counter-plotting, because \nthe King feared the ambition of his relations, and particularly of \nhis uncle, the Duke of Lancaster, and the duke had his party \nagainst the King, and the King had his party against the duke.  Nor \nwere these home troubles lessened when the duke went to Castile to \nurge his claim to the crown of that kingdom; for then the Duke of \nGloucester, another of Richard's uncles, opposed him, and \ninfluenced the Parliament to demand the dismissal of the King's \nfavourite ministers.  The King said in reply, that he would not for \nsuch men dismiss the meanest servant in his kitchen.  But, it had \nbegun to signify little what a King said when a Parliament was \ndetermined; so Richard was at last obliged to give way, and to \nagree to another Government of the kingdom, under a commission of \nfourteen nobles, for a year.  His uncle of Gloucester was at the \nhead of this commission, and, in fact, appointed everybody \ncomposing it.\n\nHaving done all this, the King declared as soon as he saw an \nopportunity that he had never meant to do it, and that it was all \nillegal; and he got the judges secretly to sign a declaration to \nthat effect.  The secret oozed out directly, and was carried to the \nDuke of Gloucester.  The Duke of Gloucester, at the head of forty \nthousand men, met the King on his entering into London to enforce \nhis authority; the King was helpless against him; his favourites \nand ministers were impeached and were mercilessly executed.  Among \nthem were two men whom the people regarded with very different \nfeelings; one, Robert Tresilian, Chief Justice, who was hated for \nhaving made what was called 'the bloody circuit' to try the \nrioters; the other, Sir Simon Burley, an honourable knight, who had \nbeen the dear friend of the Black Prince, and the governor and \nguardian of the King.  For this gentleman's life the good Queen \neven begged of Gloucester on her knees; but Gloucester (with or \nwithout reason) feared and hated him, and replied, that if she \nvalued her husband's crown, she had better beg no more.  All this \nwas done under what was called by some the wonderful - and by \nothers, with better reason, the merciless - Parliament.\n\nBut Gloucester's power was not to last for ever.  He held it for \nonly a year longer; in which year the famous battle of Otterbourne, \nsung in the old ballad of Chevy Chase, was fought.  When the year \nwas out, the King, turning suddenly to Gloucester, in the midst of \na great council said, 'Uncle, how old am I?'  'Your highness,' \nreturned the Duke, 'is in your twenty-second year.'  'Am I so \nmuch?' said the King; 'then I will manage my own affairs!  I am \nmuch obliged to you, my good lords, for your past services, but I \nneed them no more.'  He followed this up, by appointing a new \nChancellor and a new Treasurer, and announced to the people that he \nhad resumed the Government.  He held it for eight years without \nopposition.  Through all that time, he kept his determination to \nrevenge himself some day upon his uncle Gloucester, in his own \nbreast.\n\nAt last the good Queen died, and then the King, desiring to take a \nsecond wife, proposed to his council that he should marry Isabella, \nof France, the daughter of Charles the Sixth:  who, the French \ncourtiers said (as the English courtiers had said of Richard), was \na marvel of beauty and wit, and quite a phenomenon - of seven years \nold.  The council were divided about this marriage, but it took \nplace.  It secured peace between England and France for a quarter \nof a century; but it was strongly opposed to the prejudices of the \nEnglish people.  The Duke of Gloucester, who was anxious to take \nthe occasion of making himself popular, declaimed against it \nloudly, and this at length decided the King to execute the \nvengeance he had been nursing so long.\n\nHe went with a gay company to the Duke of Gloucester's house, \nPleshey Castle, in Essex, where the Duke, suspecting nothing, came \nout into the court-yard to receive his royal visitor.  While the \nKing conversed in a friendly manner with the Duchess, the Duke was \nquietly seized, hurried away, shipped for Calais, and lodged in the \ncastle there.  His friends, the Earls of Arundel and Warwick, were \ntaken in the same treacherous manner, and confined to their \ncastles.  A few days after, at Nottingham, they were impeached of \nhigh treason.  The Earl of Arundel was condemned and beheaded, and \nthe Earl of Warwick was banished.  Then, a writ was sent by a \nmessenger to the Governor of Calais, requiring him to send the Duke \nof Gloucester over to be tried.  In three days he returned an \nanswer that he could not do that, because the Duke of Gloucester \nhad died in prison.  The Duke was declared a traitor, his property \nwas confiscated to the King, a real or pretended confession he had \nmade in prison to one of the Justices of the Common Pleas was \nproduced against him, and there was an end of the matter.  How the \nunfortunate duke died, very few cared to know.  Whether he really \ndied naturally; whether he killed himself; whether, by the King's \norder, he was strangled, or smothered between two beds (as a \nserving-man of the Governor's named Hall, did afterwards declare), \ncannot be discovered.  There is not much doubt that he was killed, \nsomehow or other, by his nephew's orders.  Among the most active \nnobles in these proceedings were the King's cousin, Henry \nBolingbroke, whom the King had made Duke of Hereford to smooth down \nthe old family quarrels, and some others:  who had in the family-\nplotting times done just such acts themselves as they now condemned \nin the duke.  They seem to have been a corrupt set of men; but such \nmen were easily found about the court in such days.\n\nThe people murmured at all this, and were still very sore about the \nFrench marriage.  The nobles saw how little the King cared for law, \nand how crafty he was, and began to be somewhat afraid for \nthemselves.  The King's life was a life of continued feasting and \nexcess; his retinue, down to the meanest servants, were dressed in \nthe most costly manner, and caroused at his tables, it is related, \nto the number of ten thousand persons every day.  He himself, \nsurrounded by a body of ten thousand archers, and enriched by a \nduty on wool which the Commons had granted him for life, saw no \ndanger of ever being otherwise than powerful and absolute, and was \nas fierce and haughty as a King could be.\n\nHe had two of his old enemies left, in the persons of the Dukes of \nHereford and Norfolk.  Sparing these no more than the others, he \ntampered with the Duke of Hereford until he got him to declare \nbefore the Council that the Duke of Norfolk had lately held some \ntreasonable talk with him, as he was riding near Brentford; and \nthat he had told him, among other things, that he could not believe \nthe King's oath - which nobody could, I should think.  For this \ntreachery he obtained a pardon, and the Duke of Norfolk was \nsummoned to appear and defend himself.  As he denied the charge and \nsaid his accuser was a liar and a traitor, both noblemen, according \nto the manner of those times, were held in custody, and the truth \nwas ordered to be decided by wager of battle at Coventry.  This \nwager of battle meant that whosoever won the combat was to be \nconsidered in the right; which nonsense meant in effect, that no \nstrong man could ever be wrong.  A great holiday was made; a great \ncrowd assembled, with much parade and show; and the two combatants \nwere about to rush at each other with their lances, when the King, \nsitting in a pavilion to see fair, threw down the truncheon he \ncarried in his hand, and forbade the battle.  The Duke of Hereford \nwas to be banished for ten years, and the Duke of Norfolk was to be \nbanished for life.  So said the King.  The Duke of Hereford went to \nFrance, and went no farther.  The Duke of Norfolk made a pilgrimage \nto the Holy Land, and afterwards died at Venice of a broken heart.\n\nFaster and fiercer, after this, the King went on in his career.  \nThe Duke of Lancaster, who was the father of the Duke of Hereford, \ndied soon after the departure of his son; and, the King, although \nhe had solemnly granted to that son leave to inherit his father's \nproperty, if it should come to him during his banishment, \nimmediately seized it all, like a robber.  The judges were so \nafraid of him, that they disgraced themselves by declaring this \ntheft to be just and lawful.  His avarice knew no bounds.  He \noutlawed seventeen counties at once, on a frivolous pretence, \nmerely to raise money by way of fines for misconduct.  In short, he \ndid as many dishonest things as he could; and cared so little for \nthe discontent of his subjects - though even the spaniel favourites \nbegan to whisper to him that there was such a thing as discontent \nafloat - that he took that time, of all others, for leaving England \nand making an expedition against the Irish.\n\nHe was scarcely gone, leaving the DUKE OF YORK Regent in his \nabsence, when his cousin, Henry of Hereford, came over from France \nto claim the rights of which he had been so monstrously deprived.  \nHe was immediately joined by the two great Earls of Northumberland \nand Westmoreland; and his uncle, the Regent, finding the King's \ncause unpopular, and the disinclination of the army to act against \nHenry, very strong, withdrew with the Royal forces towards Bristol.  \nHenry, at the head of an army, came from Yorkshire (where he had \nlanded) to London and followed him.  They joined their forces - how \nthey brought that about, is not distinctly understood - and \nproceeded to Bristol Castle, whither three noblemen had taken the \nyoung Queen.  The castle surrendering, they presently put those \nthree noblemen to death.  The Regent then remained there, and Henry \nwent on to Chester.\n\nAll this time, the boisterous weather had prevented the King from \nreceiving intelligence of what had occurred.  At length it was \nconveyed to him in Ireland, and he sent over the EARL OF SALISBURY, \nwho, landing at Conway, rallied the Welshmen, and waited for the \nKing a whole fortnight; at the end of that time the Welshmen, who \nwere perhaps not very warm for him in the beginning, quite cooled \ndown and went home.  When the King did land on the coast at last, \nhe came with a pretty good power, but his men cared nothing for \nhim, and quickly deserted.  Supposing the Welshmen to be still at \nConway, he disguised himself as a priest, and made for that place \nin company with his two brothers and some few of their adherents.  \nBut, there were no Welshmen left - only Salisbury and a hundred \nsoldiers.  In this distress, the King's two brothers, Exeter and \nSurrey, offered to go to Henry to learn what his intentions were.  \nSurrey, who was true to Richard, was put into prison.  Exeter, who \nwas false, took the royal badge, which was a hart, off his shield, \nand assumed the rose, the badge of Henry.  After this, it was \npretty plain to the King what Henry's intentions were, without \nsending any more messengers to ask.\n\nThe fallen King, thus deserted - hemmed in on all sides, and \npressed with hunger - rode here and rode there, and went to this \ncastle, and went to that castle, endeavouring to obtain some \nprovisions, but could find none.  He rode wretchedly back to \nConway, and there surrendered himself to the Earl of \nNorthumberland, who came from Henry, in reality to take him \nprisoner, but in appearance to offer terms; and whose men were \nhidden not far off.  By this earl he was conducted to the castle of \nFlint, where his cousin Henry met him, and dropped on his knee as \nif he were still respectful to his sovereign.\n\n'Fair cousin of Lancaster,' said the King, 'you are very welcome' \n(very welcome, no doubt; but he would have been more so, in chains \nor without a head).\n\n'My lord,' replied Henry, 'I am come a little before my time; but, \nwith your good pleasure, I will show you the reason.  Your people \ncomplain with some bitterness, that you have ruled them rigorously \nfor two-and-twenty years.  Now, if it please God, I will help you \nto govern them better in future.'\n\n'Fair cousin,' replied the abject King, 'since it pleaseth you, it \npleaseth me mightily.'\n\nAfter this, the trumpets sounded, and the King was stuck on a \nwretched horse, and carried prisoner to Chester, where he was made \nto issue a proclamation, calling a Parliament.  From Chester he was \ntaken on towards London.  At Lichfield he tried to escape by \ngetting out of a window and letting himself down into a garden; it \nwas all in vain, however, and he was carried on and shut up in the \nTower, where no one pitied him, and where the whole people, whose \npatience he had quite tired out, reproached him without mercy.  \nBefore he got there, it is related, that his very dog left him and \ndeparted from his side to lick the hand of Henry.\n\nThe day before the Parliament met, a deputation went to this \nwrecked King, and told him that he had promised the Earl of \nNorthumberland at Conway Castle to resign the crown.  He said he \nwas quite ready to do it, and signed a paper in which he renounced \nhis authority and absolved his people from their allegiance to him.  \nHe had so little spirit left that he gave his royal ring to his \ntriumphant cousin Henry with his own hand, and said, that if he \ncould have had leave to appoint a successor, that same Henry was \nthe man of all others whom he would have named.  Next day, the \nParliament assembled in Westminster Hall, where Henry sat at the \nside of the throne, which was empty and covered with a cloth of \ngold.  The paper just signed by the King was read to the multitude \namid shouts of joy, which were echoed through all the streets; when \nsome of the noise had died away, the King was formally deposed.  \nThen Henry arose, and, making the sign of the cross on his forehead \nand breast, challenged the realm of England as his right; the \narchbishops of Canterbury and York seated him on the throne.\n\nThe multitude shouted again, and the shouts re-echoed throughout \nall the streets.  No one remembered, now, that Richard the Second \nhad ever been the most beautiful, the wisest, and the best of \nprinces; and he now made living (to my thinking) a far more sorry \nspectacle in the Tower of London, than Wat Tyler had made, lying \ndead, among the hoofs of the royal horses in Smithfield.\n\nThe Poll-tax died with Wat.  The Smiths to the King and Royal \nFamily, could make no chains in which the King could hang the \npeople's recollection of him; so the Poll-tax was never collected.\n\n\n\nCHAPTER XX - ENGLAND UNDER HENRY THE FOURTH, CALLED BOLINGBROKE\n\n\n\nDURING the last reign, the preaching of Wickliffe against the pride \nand cunning of the Pope and all his men, had made a great noise in \nEngland.  Whether the new King wished to be in favour with the \npriests, or whether he hoped, by pretending to be very religious, \nto cheat Heaven itself into the belief that he was not a usurper, I \ndon't know.  Both suppositions are likely enough.  It is certain \nthat he began his reign by making a strong show against the \nfollowers of Wickliffe, who were called Lollards, or heretics - \nalthough his father, John of Gaunt, had been of that way of \nthinking, as he himself had been more than suspected of being.  It \nis no less certain that he first established in England the \ndetestable and atrocious custom, brought from abroad, of burning \nthose people as a punishment for their opinions.  It was the \nimportation into England of one of the practices of what was called \nthe Holy Inquisition:  which was the most UNholy and the most \ninfamous tribunal that ever disgraced mankind, and made men more \nlike demons than followers of Our Saviour.\n\nNo real right to the crown, as you know, was in this King.  Edward \nMortimer, the young Earl of March - who was only eight or nine \nyears old, and who was descended from the Duke of Clarence, the \nelder brother of Henry's father - was, by succession, the real heir \nto the throne.  However, the King got his son declared Prince of \nWales; and, obtaining possession of the young Earl of March and his \nlittle brother, kept them in confinement (but not severely) in \nWindsor Castle.  He then required the Parliament to decide what was \nto be done with the deposed King, who was quiet enough, and who \nonly said that he hoped his cousin Henry would be 'a good lord' to \nhim.  The Parliament replied that they would recommend his being \nkept in some secret place where the people could not resort, and \nwhere his friends could not be admitted to see him.  Henry \naccordingly passed this sentence upon him, and it now began to be \npretty clear to the nation that Richard the Second would not live \nvery long.\n\nIt was a noisy Parliament, as it was an unprincipled one, and the \nLords quarrelled so violently among themselves as to which of them \nhad been loyal and which disloyal, and which consistent and which \ninconsistent, that forty gauntlets are said to have been thrown \nupon the floor at one time as challenges to as many battles:  the \ntruth being that they were all false and base together, and had \nbeen, at one time with the old King, and at another time with the \nnew one, and seldom true for any length of time to any one.  They \nsoon began to plot again.  A conspiracy was formed to invite the \nKing to a tournament at Oxford, and then to take him by surprise \nand kill him.  This murderous enterprise, which was agreed upon at \nsecret meetings in the house of the Abbot of Westminster, was \nbetrayed by the Earl of Rutland - one of the conspirators.  The \nKing, instead of going to the tournament or staying at Windsor \n(where the conspirators suddenly went, on finding themselves \ndiscovered, with the hope of seizing him), retired to London, \nproclaimed them all traitors, and advanced upon them with a great \nforce.  They retired into the west of England, proclaiming Richard \nKing; but, the people rose against them, and they were all slain.  \nTheir treason hastened the death of the deposed monarch.  Whether \nhe was killed by hired assassins, or whether he was starved to \ndeath, or whether he refused food on hearing of his brothers being \nkilled (who were in that plot), is very doubtful.  He met his death \nsomehow; and his body was publicly shown at St. Paul's Cathedral \nwith only the lower part of the face uncovered.  I can scarcely \ndoubt that he was killed by the King's orders.\n\nThe French wife of the miserable Richard was now only ten years \nold; and, when her father, Charles of France, heard of her \nmisfortunes and of her lonely condition in England, he went mad:  \nas he had several times done before, during the last five or six \nyears.  The French Dukes of Burgundy and Bourbon took up the poor \ngirl's cause, without caring much about it, but on the chance of \ngetting something out of England.  The people of Bordeaux, who had \na sort of superstitious attachment to the memory of Richard, \nbecause he was born there, swore by the Lord that he had been the \nbest man in all his kingdom - which was going rather far - and \npromised to do great things against the English.  Nevertheless, \nwhen they came to consider that they, and the whole people of \nFrance, were ruined by their own nobles, and that the English rule \nwas much the better of the two, they cooled down again; and the two \ndukes, although they were very great men, could do nothing without \nthem.  Then, began negotiations between France and England for the \nsending home to Paris of the poor little Queen with all her jewels \nand her fortune of two hundred thousand francs in gold.  The King \nwas quite willing to restore the young lady, and even the jewels; \nbut he said he really could not part with the money.  So, at last \nshe was safely deposited at Paris without her fortune, and then the \nDuke of Burgundy (who was cousin to the French King) began to \nquarrel with the Duke of Orleans (who was brother to the French \nKing) about the whole matter; and those two dukes made France even \nmore wretched than ever.\n\nAs the idea of conquering Scotland was still popular at home, the \nKing marched to the river Tyne and demanded homage of the King of \nthat country.  This being refused, he advanced to Edinburgh, but \ndid little there; for, his army being in want of provisions, and \nthe Scotch being very careful to hold him in check without giving \nbattle, he was obliged to retire.  It is to his immortal honour \nthat in this sally he burnt no villages and slaughtered no people, \nbut was particularly careful that his army should be merciful and \nharmless.  It was a great example in those ruthless times.\n\nA war among the border people of England and Scotland went on for \ntwelve months, and then the Earl of Northumberland, the nobleman \nwho had helped Henry to the crown, began to rebel against him - \nprobably because nothing that Henry could do for him would satisfy \nhis extravagant expectations.  There was a certain Welsh gentleman, \nnamed OWEN GLENDOWER, who had been a student in one of the Inns of \nCourt, and had afterwards been in the service of the late King, \nwhose Welsh property was taken from him by a powerful lord related \nto the present King, who was his neighbour.  Appealing for redress, \nand getting none, he took up arms, was made an outlaw, and declared \nhimself sovereign of Wales.  He pretended to be a magician; and not \nonly were the Welsh people stupid enough to believe him, but, even \nHenry believed him too; for, making three expeditions into Wales, \nand being three times driven back by the wildness of the country, \nthe bad weather, and the skill of Glendower, he thought he was \ndefeated by the Welshman's magic arts.  However, he took Lord Grey \nand Sir Edmund Mortimer, prisoners, and allowed the relatives of \nLord Grey to ransom him, but would not extend such favour to Sir \nEdmund Mortimer.  Now, Henry Percy, called HOTSPUR, son of the Earl \nof Northumberland, who was married to Mortimer's sister, is \nsupposed to have taken offence at this; and, therefore, in \nconjunction with his father and some others, to have joined Owen \nGlendower, and risen against Henry.  It is by no means clear that \nthis was the real cause of the conspiracy; but perhaps it was made \nthe pretext.  It was formed, and was very powerful; including \nSCROOP, Archbishop of York, and the EARL OF DOUGLAS, a powerful and \nbrave Scottish nobleman.  The King was prompt and active, and the \ntwo armies met at Shrewsbury.\n\nThere were about fourteen thousand men in each.  The old Earl of \nNorthumberland being sick, the rebel forces were led by his son.  \nThe King wore plain armour to deceive the enemy; and four noblemen, \nwith the same object, wore the royal arms.  The rebel charge was so \nfurious, that every one of those gentlemen was killed, the royal \nstandard was beaten down, and the young Prince of Wales was \nseverely wounded in the face.  But he was one of the bravest and \nbest soldiers that ever lived, and he fought so well, and the \nKing's troops were so encouraged by his bold example, that they \nrallied immediately, and cut the enemy's forces all to pieces.  \nHotspur was killed by an arrow in the brain, and the rout was so \ncomplete that the whole rebellion was struck down by this one blow.  \nThe Earl of Northumberland surrendered himself soon after hearing \nof the death of his son, and received a pardon for all his \noffences.\n\nThere were some lingerings of rebellion yet:  Owen Glendower being \nretired to Wales, and a preposterous story being spread among the \nignorant people that King Richard was still alive.  How they could \nhave believed such nonsense it is difficult to imagine; but they \ncertainly did suppose that the Court fool of the late King, who was \nsomething like him, was he, himself; so that it seemed as if, after \ngiving so much trouble to the country in his life, he was still to \ntrouble it after his death.  This was not the worst.  The young \nEarl of March and his brother were stolen out of Windsor Castle.  \nBeing retaken, and being found to have been spirited away by one \nLady Spencer, she accused her own brother, that Earl of Rutland who \nwas in the former conspiracy and was now Duke of York, of being in \nthe plot.  For this he was ruined in fortune, though not put to \ndeath; and then another plot arose among the old Earl of \nNorthumberland, some other lords, and that same Scroop, Archbishop \nof York, who was with the rebels before.  These conspirators caused \na writing to be posted on the church doors, accusing the King of a \nvariety of crimes; but, the King being eager and vigilant to oppose \nthem, they were all taken, and the Archbishop was executed.  This \nwas the first time that a great churchman had been slain by the law \nin England; but the King was resolved that it should be done, and \ndone it was.\n\nThe next most remarkable event of this time was the seizure, by \nHenry, of the heir to the Scottish throne - James, a boy of nine \nyears old.  He had been put aboard-ship by his father, the Scottish \nKing Robert, to save him from the designs of his uncle, when, on \nhis way to France, he was accidentally taken by some English \ncruisers.  He remained a prisoner in England for nineteen years, \nand became in his prison a student and a famous poet.\n\nWith the exception of occasional troubles with the Welsh and with \nthe French, the rest of King Henry's reign was quiet enough.  But, \nthe King was far from happy, and probably was troubled in his \nconscience by knowing that he had usurped the crown, and had \noccasioned the death of his miserable cousin.  The Prince of Wales, \nthough brave and generous, is said to have been wild and \ndissipated, and even to have drawn his sword on GASCOIGNE, the \nChief Justice of the King's Bench, because he was firm in dealing \nimpartially with one of his dissolute companions.  Upon this the \nChief Justice is said to have ordered him immediately to prison; \nthe Prince of Wales is said to have submitted with a good grace; \nand the King is said to have exclaimed, 'Happy is the monarch who \nhas so just a judge, and a son so willing to obey the laws.'  This \nis all very doubtful, and so is another story (of which Shakespeare \nhas made beautiful use), that the Prince once took the crown out of \nhis father's chamber as he was sleeping, and tried it on his own \nhead.\n\nThe King's health sank more and more, and he became subject to \nviolent eruptions on the face and to bad epileptic fits, and his \nspirits sank every day.  At last, as he was praying before the \nshrine of St. Edward at Westminster Abbey, he was seized with a \nterrible fit, and was carried into the Abbot's chamber, where he \npresently died.  It had been foretold that he would die at \nJerusalem, which certainly is not, and never was, Westminster.  \nBut, as the Abbot's room had long been called the Jerusalem \nchamber, people said it was all the same thing, and were quite \nsatisfied with the prediction.\n\nThe King died on the 20th of March, 1413, in the forty-seventh year \nof his age, and the fourteenth of his reign.  He was buried in \nCanterbury Cathedral.  He had been twice married, and had, by his \nfirst wife, a family of four sons and two daughters.  Considering \nhis duplicity before he came to the throne, his unjust seizure of \nit, and above all, his making that monstrous law for the burning of \nwhat the priests called heretics, he was a reasonably good king, as \nkings went.\n\n\n\nCHAPTER XXI - ENGLAND UNDER HENRY THE FIFTH\n\n\n\nFIRST PART\n\n\nTHE Prince of Wales began his reign like a generous and honest man.  \nHe set the young Earl of March free; he restored their estates and \ntheir honours to the Percy family, who had lost them by their \nrebellion against his father; he ordered the imbecile and \nunfortunate Richard to be honourably buried among the Kings of \nEngland; and he dismissed all his wild companions, with assurances \nthat they should not want, if they would resolve to be steady, \nfaithful, and true.\n\nIt is much easier to burn men than to burn their opinions; and \nthose of the Lollards were spreading every day.  The Lollards were \nrepresented by the priests - probably falsely for the most part - \nto entertain treasonable designs against the new King; and Henry, \nsuffering himself to be worked upon by these representations, \nsacrificed his friend Sir John Oldcastle, the Lord Cobham, to them, \nafter trying in vain to convert him by arguments.  He was declared \nguilty, as the head of the sect, and sentenced to the flames; but \nhe escaped from the Tower before the day of execution (postponed \nfor fifty days by the King himself), and summoned the Lollards to \nmeet him near London on a certain day.  So the priests told the \nKing, at least.  I doubt whether there was any conspiracy beyond \nsuch as was got up by their agents.  On the day appointed, instead \nof five-and-twenty thousand men, under the command of Sir John \nOldcastle, in the meadows of St. Giles, the King found only eighty \nmen, and no Sir John at all.  There was, in another place, an \naddle-headed brewer, who had gold trappings to his horses, and a \npair of gilt spurs in his breast - expecting to be made a knight \nnext day by Sir John, and so to gain the right to wear them - but \nthere was no Sir John, nor did anybody give information respecting \nhim, though the King offered great rewards for such intelligence.  \nThirty of these unfortunate Lollards were hanged and drawn \nimmediately, and were then burnt, gallows and all; and the various \nprisons in and around London were crammed full of others.  Some of \nthese unfortunate men made various confessions of treasonable \ndesigns; but, such confessions were easily got, under torture and \nthe fear of fire, and are very little to be trusted.  To finish the \nsad story of Sir John Oldcastle at once, I may mention that he \nescaped into Wales, and remained there safely, for four years.  \nWhen discovered by Lord Powis, it is very doubtful if he would have \nbeen taken alive - so great was the old soldier's bravery - if a \nmiserable old woman had not come behind him and broken his legs \nwith a stool.  He was carried to London in a horse-litter, was \nfastened by an iron chain to a gibbet, and so roasted to death.\n\nTo make the state of France as plain as I can in a few words, I \nshould tell you that the Duke of Orleans, and the Duke of Burgundy, \ncommonly called 'John without fear,' had had a grand reconciliation \nof their quarrel in the last reign, and had appeared to be quite in \na heavenly state of mind.  Immediately after which, on a Sunday, in \nthe public streets of Paris, the Duke of Orleans was murdered by a \nparty of twenty men, set on by the Duke of Burgundy - according to \nhis own deliberate confession.  The widow of King Richard had been \nmarried in France to the eldest son of the Duke of Orleans.  The \npoor mad King was quite powerless to help her, and the Duke of \nBurgundy became the real master of France.  Isabella dying, her \nhusband (Duke of Orleans since the death of his father) married the \ndaughter of the Count of Armagnac, who, being a much abler man than \nhis young son-in-law, headed his party; thence called after him \nArmagnacs.  Thus, France was now in this terrible condition, that \nit had in it the party of the King's son, the Dauphin Louis; the \nparty of the Duke of Burgundy, who was the father of the Dauphin's \nill-used wife; and the party of the Armagnacs; all hating each \nother; all fighting together; all composed of the most depraved \nnobles that the earth has ever known; and all tearing unhappy \nFrance to pieces.\n\nThe late King had watched these dissensions from England, sensible \n(like the French people) that no enemy of France could injure her \nmore than her own nobility.  The present King now advanced a claim \nto the French throne.  His demand being, of course, refused, he \nreduced his proposal to a certain large amount of French territory, \nand to demanding the French princess, Catherine, in marriage, with \na fortune of two millions of golden crowns.  He was offered less \nterritory and fewer crowns, and no princess; but he called his \nambassadors home and prepared for war.  Then, he proposed to take \nthe princess with one million of crowns.  The French Court replied \nthat he should have the princess with two hundred thousand crowns \nless; he said this would not do (he had never seen the princess in \nhis life), and assembled his army at Southampton.  There was a \nshort plot at home just at that time, for deposing him, and making \nthe Earl of March king; but the conspirators were all speedily \ncondemned and executed, and the King embarked for France.\n\nIt is dreadful to observe how long a bad example will be followed; \nbut, it is encouraging to know that a good example is never thrown \naway.  The King's first act on disembarking at the mouth of the \nriver Seine, three miles from Harfleur, was to imitate his father, \nand to proclaim his solemn orders that the lives and property of \nthe peaceable inhabitants should be respected on pain of death.  It \nis agreed by French writers, to his lasting renown, that even while \nhis soldiers were suffering the greatest distress from want of \nfood, these commands were rigidly obeyed.\n\nWith an army in all of thirty thousand men, he besieged the town of \nHarfleur both by sea and land for five weeks; at the end of which \ntime the town surrendered, and the inhabitants were allowed to \ndepart with only fivepence each, and a part of their clothes.  All \nthe rest of their possessions was divided amongst the English army.  \nBut, that army suffered so much, in spite of its successes, from \ndisease and privation, that it was already reduced one half.  \nStill, the King was determined not to retire until he had struck a \ngreater blow.  Therefore, against the advice of all his \ncounsellors, he moved on with his little force towards Calais.  \nWhen he came up to the river Somme he was unable to cross, in \nconsequence of the fort being fortified; and, as the English moved \nup the left bank of the river looking for a crossing, the French, \nwho had broken all the bridges, moved up the right bank, watching \nthem, and waiting to attack them when they should try to pass it.  \nAt last the English found a crossing and got safely over.  The \nFrench held a council of war at Rouen, resolved to give the English \nbattle, and sent heralds to King Henry to know by which road he was \ngoing.  'By the road that will take me straight to Calais!' said \nthe King, and sent them away with a present of a hundred crowns.\n\nThe English moved on, until they beheld the French, and then the \nKing gave orders to form in line of battle.  The French not coming \non, the army broke up after remaining in battle array till night, \nand got good rest and refreshment at a neighbouring village.  The \nFrench were now all lying in another village, through which they \nknew the English must pass.  They were resolved that the English \nshould begin the battle.  The English had no means of retreat, if \ntheir King had any such intention; and so the two armies passed the \nnight, close together.\n\nTo understand these armies well, you must bear in mind that the \nimmense French army had, among its notable persons, almost the \nwhole of that wicked nobility, whose debauchery had made France a \ndesert; and so besotted were they by pride, and by contempt for the \ncommon people, that they had scarcely any bowmen (if indeed they \nhad any at all) in their whole enormous number:  which, compared \nwith the English army, was at least as six to one.  For these proud \nfools had said that the bow was not a fit weapon for knightly \nhands, and that France must be defended by gentlemen only.  We \nshall see, presently, what hand the gentlemen made of it.\n\nNow, on the English side, among the little force, there was a good \nproportion of men who were not gentlemen by any means, but who were \ngood stout archers for all that.  Among them, in the morning - \nhaving slept little at night, while the French were carousing and \nmaking sure of victory - the King rode, on a grey horse; wearing on \nhis head a helmet of shining steel, surmounted by a crown of gold, \nsparkling with precious stones; and bearing over his armour, \nembroidered together, the arms of England and the arms of France.  \nThe archers looked at the shining helmet and the crown of gold and \nthe sparkling jewels, and admired them all; but, what they admired \nmost was the King's cheerful face, and his bright blue eye, as he \ntold them that, for himself, he had made up his mind to conquer \nthere or to die there, and that England should never have a ransom \nto pay for HIM.  There was one brave knight who chanced to say that \nhe wished some of the many gallant gentlemen and good soldiers, who \nwere then idle at home in England, were there to increase their \nnumbers.  But the King told him that, for his part, he did not wish \nfor one more man.  'The fewer we have,' said he, 'the greater will \nbe the honour we shall win!'  His men, being now all in good heart, \nwere refreshed with bread and wine, and heard prayers, and waited \nquietly for the French.  The King waited for the French, because \nthey were drawn up thirty deep (the little English force was only \nthree deep), on very difficult and heavy ground; and he knew that \nwhen they moved, there must be confusion among them.\n\nAs they did not move, he sent off two parties:- one to lie \nconcealed in a wood on the left of the French:  the other, to set \nfire to some houses behind the French after the battle should be \nbegun.  This was scarcely done, when three of the proud French \ngentlemen, who were to defend their country without any help from \nthe base peasants, came riding out, calling upon the English to \nsurrender.  The King warned those gentlemen himself to retire with \nall speed if they cared for their lives, and ordered the English \nbanners to advance.  Upon that, Sir Thomas Erpingham, a great \nEnglish general, who commanded the archers, threw his truncheon \ninto the air, joyfully, and all the English men, kneeling down upon \nthe ground and biting it as if they took possession of the country, \nrose up with a great shout and fell upon the French.\n\nEvery archer was furnished with a great stake tipped with iron; and \nhis orders were, to thrust this stake into the ground, to discharge \nhis arrow, and then to fall back, when the French horsemen came on.  \nAs the haughty French gentlemen, who were to break the English \narchers and utterly destroy them with their knightly lances, came \nriding up, they were received with such a blinding storm of arrows, \nthat they broke and turned.  Horses and men rolled over one \nanother, and the confusion was terrific.  Those who rallied and \ncharged the archers got among the stakes on slippery and boggy \nground, and were so bewildered that the English archers - who wore \nno armour, and even took off their leathern coats to be more active \n- cut them to pieces, root and branch.  Only three French horsemen \ngot within the stakes, and those were instantly despatched.  All \nthis time the dense French army, being in armour, were sinking \nknee-deep into the mire; while the light English archers, half-\nnaked, were as fresh and active as if they were fighting on a \nmarble floor.\n\nBut now, the second division of the French coming to the relief of \nthe first, closed up in a firm mass; the English, headed by the \nKing, attacked them; and the deadliest part of the battle began.  \nThe King's brother, the Duke of Clarence, was struck down, and \nnumbers of the French surrounded him; but, King Henry, standing \nover the body, fought like a lion until they were beaten off.\n\nPresently, came up a band of eighteen French knights, bearing the \nbanner of a certain French lord, who had sworn to kill or take the \nEnglish King.  One of them struck him such a blow with a battle-axe \nthat he reeled and fell upon his knees; but, his faithful men, \nimmediately closing round him, killed every one of those eighteen \nknights, and so that French lord never kept his oath.\n\nThe French Duke of Alenon, seeing this, made a desperate charge, \nand cut his way close up to the Royal Standard of England.  He beat \ndown the Duke of York, who was standing near it; and, when the King \ncame to his rescue, struck off a piece of the crown he wore.  But, \nhe never struck another blow in this world; for, even as he was in \nthe act of saying who he was, and that he surrendered to the King; \nand even as the King stretched out his hand to give him a safe and \nhonourable acceptance of the offer; he fell dead, pierced by \ninnumerable wounds.\n\nThe death of this nobleman decided the battle.  The third division \nof the French army, which had never struck a blow yet, and which \nwas, in itself, more than double the whole English power, broke and \nfled.  At this time of the fight, the English, who as yet had made \nno prisoners, began to take them in immense numbers, and were still \noccupied in doing so, or in killing those who would not surrender, \nwhen a great noise arose in the rear of the French - their flying \nbanners were seen to stop - and King Henry, supposing a great \nreinforcement to have arrived, gave orders that all the prisoners \nshould be put to death.  As soon, however, as it was found that the \nnoise was only occasioned by a body of plundering peasants, the \nterrible massacre was stopped.\n\nThen King Henry called to him the French herald, and asked him to \nwhom the victory belonged.\n\nThe herald replied, 'To the King of England.'\n\n'WE have not made this havoc and slaughter,' said the King.  'It is \nthe wrath of Heaven on the sins of France.  What is the name of \nthat castle yonder?'\n\nThe herald answered him, 'My lord, it is the castle of Azincourt.'  \nSaid the King, 'From henceforth this battle shall be known to \nposterity, by the name of the battle of Azincourt.'\n\nOur English historians have made it Agincourt; but, under that \nname, it will ever be famous in English annals.\n\nThe loss upon the French side was enormous.  Three Dukes were \nkilled, two more were taken prisoners, seven Counts were killed, \nthree more were taken prisoners, and ten thousand knights and \ngentlemen were slain upon the field.  The English loss amounted to \nsixteen hundred men, among whom were the Duke of York and the Earl \nof Suffolk.\n\nWar is a dreadful thing; and it is appalling to know how the \nEnglish were obliged, next morning, to kill those prisoners \nmortally wounded, who yet writhed in agony upon the ground; how the \ndead upon the French side were stripped by their own countrymen and \ncountrywomen, and afterwards buried in great pits; how the dead \nupon the English side were piled up in a great barn, and how their \nbodies and the barn were all burned together.  It is in such \nthings, and in many more much too horrible to relate, that the real \ndesolation and wickedness of war consist.  Nothing can make war \notherwise than horrible.  But the dark side of it was little \nthought of and soon forgotten; and it cast no shade of trouble on \nthe English people, except on those who had lost friends or \nrelations in the fight.  They welcomed their King home with shouts \nof rejoicing, and plunged into the water to bear him ashore on \ntheir shoulders, and flocked out in crowds to welcome him in every \ntown through which he passed, and hung rich carpets and tapestries \nout of the windows, and strewed the streets with flowers, and made \nthe fountains run with wine, as the great field of Agincourt had \nrun with blood.\n\n\nSECOND PART\n\n\nTHAT proud and wicked French nobility who dragged their country to \ndestruction, and who were every day and every year regarded with \ndeeper hatred and detestation in the hearts of the French people, \nlearnt nothing, even from the defeat of Agincourt.  So far from \nuniting against the common enemy, they became, among themselves, \nmore violent, more bloody, and more false - if that were possible - \nthan they had been before.  The Count of Armagnac persuaded the \nFrench king to plunder of her treasures Queen Isabella of Bavaria, \nand to make her a prisoner.  She, who had hitherto been the bitter \nenemy of the Duke of Burgundy, proposed to join him, in revenge.  \nHe carried her off to Troyes, where she proclaimed herself Regent \nof France, and made him her lieutenant.  The Armagnac party were at \nthat time possessed of Paris; but, one of the gates of the city \nbeing secretly opened on a certain night to a party of the duke's \nmen, they got into Paris, threw into the prisons all the Armagnacs \nupon whom they could lay their hands, and, a few nights afterwards, \nwith the aid of a furious mob of sixty thousand people, broke the \nprisons open, and killed them all.  The former Dauphin was now \ndead, and the King's third son bore the title.  Him, in the height \nof this murderous scene, a French knight hurried out of bed, \nwrapped in a sheet, and bore away to Poitiers.  So, when the \nrevengeful Isabella and the Duke of Burgundy entered Paris in \ntriumph after the slaughter of their enemies, the Dauphin was \nproclaimed at Poitiers as the real Regent.\n\nKing Henry had not been idle since his victory of Agincourt, but \nhad repulsed a brave attempt of the French to recover Harfleur; had \ngradually conquered a great part of Normandy; and, at this crisis \nof affairs, took the important town of Rouen, after a siege of half \na year.  This great loss so alarmed the French, that the Duke of \nBurgundy proposed that a meeting to treat of peace should be held \nbetween the French and the English kings in a plain by the river \nSeine.  On the appointed day, King Henry appeared there, with his \ntwo brothers, Clarence and Gloucester, and a thousand men.  The \nunfortunate French King, being more mad than usual that day, could \nnot come; but the Queen came, and with her the Princess Catherine:  \nwho was a very lovely creature, and who made a real impression on \nKing Henry, now that he saw her for the first time.  This was the \nmost important circumstance that arose out of the meeting.\n\nAs if it were impossible for a French nobleman of that time to be \ntrue to his word of honour in anything, Henry discovered that the \nDuke of Burgundy was, at that very moment, in secret treaty with \nthe Dauphin; and he therefore abandoned the negotiation.\n\nThe Duke of Burgundy and the Dauphin, each of whom with the best \nreason distrusted the other as a noble ruffian surrounded by a \nparty of noble ruffians, were rather at a loss how to proceed after \nthis; but, at length they agreed to meet, on a bridge over the \nriver Yonne, where it was arranged that there should be two strong \ngates put up, with an empty space between them; and that the Duke \nof Burgundy should come into that space by one gate, with ten men \nonly; and that the Dauphin should come into that space by the other \ngate, also with ten men, and no more.\n\nSo far the Dauphin kept his word, but no farther.  When the Duke of \nBurgundy was on his knee before him in the act of speaking, one of \nthe Dauphin's noble ruffians cut the said duke down with a small \naxe, and others speedily finished him.\n\nIt was in vain for the Dauphin to pretend that this base murder was \nnot done with his consent; it was too bad, even for France, and \ncaused a general horror.  The duke's heir hastened to make a treaty \nwith King Henry, and the French Queen engaged that her husband \nshould consent to it, whatever it was.  Henry made peace, on \ncondition of receiving the Princess Catherine in marriage, and \nbeing made Regent of France during the rest of the King's lifetime, \nand succeeding to the French crown at his death.  He was soon \nmarried to the beautiful Princess, and took her proudly home to \nEngland, where she was crowned with great honour and glory.\n\nThis peace was called the Perpetual Peace; we shall soon see how \nlong it lasted.  It gave great satisfaction to the French people, \nalthough they were so poor and miserable, that, at the time of the \ncelebration of the Royal marriage, numbers of them were dying with \nstarvation, on the dunghills in the streets of Paris.  There was \nsome resistance on the part of the Dauphin in some few parts of \nFrance, but King Henry beat it all down.\n\nAnd now, with his great possessions in France secured, and his \nbeautiful wife to cheer him, and a son born to give him greater \nhappiness, all appeared bright before him.  But, in the fulness of \nhis triumph and the height of his power, Death came upon him, and \nhis day was done.  When he fell ill at Vincennes, and found that he \ncould not recover, he was very calm and quiet, and spoke serenely \nto those who wept around his bed.  His wife and child, he said, he \nleft to the loving care of his brother the Duke of Bedford, and his \nother faithful nobles.  He gave them his advice that England should \nestablish a friendship with the new Duke of Burgundy, and offer him \nthe regency of France; that it should not set free the royal \nprinces who had been taken at Agincourt; and that, whatever quarrel \nmight arise with France, England should never make peace without \nholding Normandy.  Then, he laid down his head, and asked the \nattendant priests to chant the penitential psalms.  Amid which \nsolemn sounds, on the thirty-first of August, one thousand four \nhundred and twenty-two, in only the thirty-fourth year of his age \nand the tenth of his reign, King Henry the Fifth passed away.\n\nSlowly and mournfully they carried his embalmed body in a \nprocession of great state to Paris, and thence to Rouen where his \nQueen was:  from whom the sad intelligence of his death was \nconcealed until he had been dead some days.  Thence, lying on a bed \nof crimson and gold, with a golden crown upon the head, and a \ngolden ball and sceptre lying in the nerveless hands, they carried \nit to Calais, with such a great retinue as seemed to dye the road \nblack.  The King of Scotland acted as chief mourner, all the Royal \nHousehold followed, the knights wore black armour and black plumes \nof feathers, crowds of men bore torches, making the night as light \nas day; and the widowed Princess followed last of all.  At Calais \nthere was a fleet of ships to bring the funeral host to Dover.  And \nso, by way of London Bridge, where the service for the dead was \nchanted as it passed along, they brought the body to Westminster \nAbbey, and there buried it with great respect.\n\n\n\nCHAPTER XXII - ENGLAND UNDER HENRY THE SIXTH\n\n\n\nPART THE FIRST\n\n\nIT had been the wish of the late King, that while his infant son \nKING HENRY THE SIXTH, at this time only nine months old, was under \nage, the Duke of Gloucester should be appointed Regent.  The \nEnglish Parliament, however, preferred to appoint a Council of \nRegency, with the Duke of Bedford at its head:  to be represented, \nin his absence only, by the Duke of Gloucester.  The Parliament \nwould seem to have been wise in this, for Gloucester soon showed \nhimself to be ambitious and troublesome, and, in the gratification \nof his own personal schemes, gave dangerous offence to the Duke of \nBurgundy, which was with difficulty adjusted.\n\nAs that duke declined the Regency of France, it was bestowed by the \npoor French King upon the Duke of Bedford.  But, the French King \ndying within two months, the Dauphin instantly asserted his claim \nto the French throne, and was actually crowned under the title of \nCHARLES THE SEVENTH.  The Duke of Bedford, to be a match for him, \nentered into a friendly league with the Dukes of Burgundy and \nBrittany, and gave them his two sisters in marriage.  War with \nFrance was immediately renewed, and the Perpetual Peace came to an \nuntimely end.\n\nIn the first campaign, the English, aided by this alliance, were \nspeedily successful.  As Scotland, however, had sent the French \nfive thousand men, and might send more, or attack the North of \nEngland while England was busy with France, it was considered that \nit would be a good thing to offer the Scottish King, James, who had \nbeen so long imprisoned, his liberty, on his paying forty thousand \npounds for his board and lodging during nineteen years, and \nengaging to forbid his subjects from serving under the flag of \nFrance.  It is pleasant to know, not only that the amiable captive \nat last regained his freedom upon these terms, but, that he married \na noble English lady, with whom he had been long in love, and \nbecame an excellent King.  I am afraid we have met with some Kings \nin this history, and shall meet with some more, who would have been \nvery much the better, and would have left the world much happier, \nif they had been imprisoned nineteen years too.\n\nIn the second campaign, the English gained a considerable victory \nat Verneuil, in a battle which was chiefly remarkable, otherwise, \nfor their resorting to the odd expedient of tying their baggage-\nhorses together by the heads and tails, and jumbling them up with \nthe baggage, so as to convert them into a sort of live \nfortification - which was found useful to the troops, but which I \nshould think was not agreeable to the horses.  For three years \nafterwards very little was done, owing to both sides being too poor \nfor war, which is a very expensive entertainment; but, a council \nwas then held in Paris, in which it was decided to lay siege to the \ntown of Orleans, which was a place of great importance to the \nDauphin's cause.  An English army of ten thousand men was \ndespatched on this service, under the command of the Earl of \nSalisbury, a general of fame.  He being unfortunately killed early \nin the siege, the Earl of Suffolk took his place; under whom \n(reinforced by SIR JOHN FALSTAFF, who brought up four hundred \nwaggons laden with salt herrings and other provisions for the \ntroops, and, beating off the French who tried to intercept him, \ncame victorious out of a hot skirmish, which was afterwards called \nin jest the Battle of the Herrings) the town of Orleans was so \ncompletely hemmed in, that the besieged proposed to yield it up to \ntheir countryman the Duke of Burgundy.  The English general, \nhowever, replied that his English men had won it, so far, by their \nblood and valour, and that his English men must have it.  There \nseemed to be no hope for the town, or for the Dauphin, who was so \ndismayed that he even thought of flying to Scotland or to Spain - \nwhen a peasant girl rose up and changed the whole state of affairs.\n\nThe story of this peasant girl I have now to tell.\n\n\nPART THE SECOND:  THE STORY OF JOAN OF ARC\n\n\nIN a remote village among some wild hills in the province of \nLorraine, there lived a countryman whose name was JACQUES D'ARC.  \nHe had a daughter, JOAN OF ARC, who was at this time in her \ntwentieth year.  She had been a solitary girl from her childhood; \nshe had often tended sheep and cattle for whole days where no human \nfigure was seen or human voice heard; and she had often knelt, for \nhours together, in the gloomy, empty, little village chapel, \nlooking up at the altar and at the dim lamp burning before it, \nuntil she fancied that she saw shadowy figures standing there, and \neven that she heard them speak to her.  The people in that part of \nFrance were very ignorant and superstitious, and they had many \nghostly tales to tell about what they had dreamed, and what they \nsaw among the lonely hills when the clouds and the mists were \nresting on them.  So, they easily believed that Joan saw strange \nsights, and they whispered among themselves that angels and spirits \ntalked to her.\n\nAt last, Joan told her father that she had one day been surprised \nby a great unearthly light, and had afterwards heard a solemn \nvoice, which said it was Saint Michael's voice, telling her that \nshe was to go and help the Dauphin.  Soon after this (she said), \nSaint Catherine and Saint Margaret had appeared to her with \nsparkling crowns upon their heads, and had encouraged her to be \nvirtuous and resolute.  These visions had returned sometimes; but \nthe Voices very often; and the voices always said, 'Joan, thou art \nappointed by Heaven to go and help the Dauphin!'  She almost always \nheard them while the chapel bells were ringing.\n\nThere is no doubt, now, that Joan believed she saw and heard these \nthings.  It is very well known that such delusions are a disease \nwhich is not by any means uncommon.  It is probable enough that \nthere were figures of Saint Michael, and Saint Catherine, and Saint \nMargaret, in the little chapel (where they would be very likely to \nhave shining crowns upon their heads), and that they first gave \nJoan the idea of those three personages.  She had long been a \nmoping, fanciful girl, and, though she was a very good girl, I dare \nsay she was a little vain, and wishful for notoriety.\n\nHer father, something wiser than his neighbours, said, 'I tell \nthee, Joan, it is thy fancy.  Thou hadst better have a kind husband \nto take care of thee, girl, and work to employ thy mind!'  But Joan \ntold him in reply, that she had taken a vow never to have a \nhusband, and that she must go as Heaven directed her, to help the \nDauphin.\n\nIt happened, unfortunately for her father's persuasions, and most \nunfortunately for the poor girl, too, that a party of the Dauphin's \nenemies found their way into the village while Joan's disorder was \nat this point, and burnt the chapel, and drove out the inhabitants.  \nThe cruelties she saw committed, touched Joan's heart and made her \nworse.  She said that the voices and the figures were now \ncontinually with her; that they told her she was the girl who, \naccording to an old prophecy, was to deliver France; and she must \ngo and help the Dauphin, and must remain with him until he should \nbe crowned at Rheims:  and that she must travel a long way to a \ncertain lord named BAUDRICOURT, who could and would, bring her into \nthe Dauphin's presence.\n\nAs her father still said, 'I tell thee, Joan, it is thy fancy,' she \nset off to find out this lord, accompanied by an uncle, a poor \nvillage wheelwright and cart-maker, who believed in the reality of \nher visions.  They travelled a long way and went on and on, over a \nrough country, full of the Duke of Burgundy's men, and of all kinds \nof robbers and marauders, until they came to where this lord was.\n\nWhen his servants told him that there was a poor peasant girl named \nJoan of Arc, accompanied by nobody but an old village wheelwright \nand cart-maker, who wished to see him because she was commanded to \nhelp the Dauphin and save France, Baudricourt burst out a-laughing, \nand bade them send the girl away.  But, he soon heard so much about \nher lingering in the town, and praying in the churches, and seeing \nvisions, and doing harm to no one, that he sent for her, and \nquestioned her.  As she said the same things after she had been \nwell sprinkled with holy water as she had said before the \nsprinkling, Baudricourt began to think there might be something in \nit.  At all events, he thought it worth while to send her on to the \ntown of Chinon, where the Dauphin was.  So, he bought her a horse, \nand a sword, and gave her two squires to conduct her.  As the \nVoices had told Joan that she was to wear a man's dress, now, she \nput one on, and girded her sword to her side, and bound spurs to \nher heels, and mounted her horse and rode away with her two \nsquires.  As to her uncle the wheelwright, he stood staring at his \nniece in wonder until she was out of sight - as well he might - and \nthen went home again.  The best place, too.\n\nJoan and her two squires rode on and on, until they came to Chinon, \nwhere she was, after some doubt, admitted into the Dauphin's \npresence.  Picking him out immediately from all his court, she told \nhim that she came commanded by Heaven to subdue his enemies and \nconduct him to his coronation at Rheims.  She also told him (or he \npretended so afterwards, to make the greater impression upon his \nsoldiers) a number of his secrets known only to himself, and, \nfurthermore, she said there was an old, old sword in the cathedral \nof Saint Catherine at Fierbois, marked with five old crosses on the \nblade, which Saint Catherine had ordered her to wear.\n\nNow, nobody knew anything about this old, old sword, but when the \ncathedral came to be examined - which was immediately done - there, \nsure enough, the sword was found!  The Dauphin then required a \nnumber of grave priests and bishops to give him their opinion \nwhether the girl derived her power from good spirits or from evil \nspirits, which they held prodigiously long debates about, in the \ncourse of which several learned men fell fast asleep and snored \nloudly.  At last, when one gruff old gentleman had said to Joan, \n'What language do your Voices speak?' and when Joan had replied to \nthe gruff old gentleman, 'A pleasanter language than yours,' they \nagreed that it was all correct, and that Joan of Arc was inspired \nfrom Heaven.  This wonderful circumstance put new heart into the \nDauphin's soldiers when they heard of it, and dispirited the \nEnglish army, who took Joan for a witch.\n\nSo Joan mounted horse again, and again rode on and on, until she \ncame to Orleans.  But she rode now, as never peasant girl had \nridden yet.  She rode upon a white war-horse, in a suit of \nglittering armour; with the old, old sword from the cathedral, \nnewly burnished, in her belt; with a white flag carried before her, \nupon which were a picture of God, and the words JESUS MARIA.  In \nthis splendid state, at the head of a great body of troops \nescorting provisions of all kinds for the starving inhabitants of \nOrleans, she appeared before that beleaguered city.\n\nWhen the people on the walls beheld her, they cried out 'The Maid \nis come!  The Maid of the Prophecy is come to deliver us!'  And \nthis, and the sight of the Maid fighting at the head of their men, \nmade the French so bold, and made the English so fearful, that the \nEnglish line of forts was soon broken, the troops and provisions \nwere got into the town, and Orleans was saved.\n\nJoan, henceforth called THE MAID OF ORLEANS, remained within the \nwalls for a few days, and caused letters to be thrown over, \nordering Lord Suffolk and his Englishmen to depart from before the \ntown according to the will of Heaven.  As the English general very \npositively declined to believe that Joan knew anything about the \nwill of Heaven (which did not mend the matter with his soldiers, \nfor they stupidly said if she were not inspired she was a witch, \nand it was of no use to fight against a witch), she mounted her \nwhite war-horse again, and ordered her white banner to advance.\n\nThe besiegers held the bridge, and some strong towers upon the \nbridge; and here the Maid of Orleans attacked them.  The fight was \nfourteen hours long.  She planted a scaling ladder with her own \nhands, and mounted a tower wall, but was struck by an English arrow \nin the neck, and fell into the trench.  She was carried away and \nthe arrow was taken out, during which operation she screamed and \ncried with the pain, as any other girl might have done; but \npresently she said that the Voices were speaking to her and \nsoothing her to rest.  After a while, she got up, and was again \nforemost in the fight.  When the English who had seen her fall and \nsupposed her dead, saw this, they were troubled with the strangest \nfears, and some of them cried out that they beheld Saint Michael on \na white horse (probably Joan herself) fighting for the French.  \nThey lost the bridge, and lost the towers, and next day set their \nchain of forts on fire, and left the place.\n\nBut as Lord Suffolk himself retired no farther than the town of \nJargeau, which was only a few miles off, the Maid of Orleans \nbesieged him there, and he was taken prisoner.  As the white banner \nscaled the wall, she was struck upon the head with a stone, and was \nagain tumbled down into the ditch; but, she only cried all the \nmore, as she lay there, 'On, on, my countrymen!  And fear nothing, \nfor the Lord hath delivered them into our hands!'  After this new \nsuccess of the Maid's, several other fortresses and places which \nhad previously held out against the Dauphin were delivered up \nwithout a battle; and at Patay she defeated the remainder of the \nEnglish army, and set up her victorious white banner on a field \nwhere twelve hundred Englishmen lay dead.\n\nShe now urged the Dauphin (who always kept out of the way when \nthere was any fighting) to proceed to Rheims, as the first part of \nher mission was accomplished; and to complete the whole by being \ncrowned there.  The Dauphin was in no particular hurry to do this, \nas Rheims was a long way off, and the English and the Duke of \nBurgundy were still strong in the country through which the road \nlay.  However, they set forth, with ten thousand men, and again the \nMaid of Orleans rode on and on, upon her white war-horse, and in \nher shining armour.  Whenever they came to a town which yielded \nreadily, the soldiers believed in her; but, whenever they came to a \ntown which gave them any trouble, they began to murmur that she was \nan impostor.  The latter was particularly the case at Troyes, which \nfinally yielded, however, through the persuasion of one Richard, a \nfriar of the place.  Friar Richard was in the old doubt about the \nMaid of Orleans, until he had sprinkled her well with holy water, \nand had also well sprinkled the threshold of the gate by which she \ncame into the city.  Finding that it made no change in her or the \ngate, he said, as the other grave old gentlemen had said, that it \nwas all right, and became her great ally.\n\nSo, at last, by dint of riding on and on, the Maid of Orleans, and \nthe Dauphin, and the ten thousand sometimes believing and sometimes \nunbelieving men, came to Rheims.  And in the great cathedral of \nRheims, the Dauphin actually was crowned Charles the Seventh in a \ngreat assembly of the people.  Then, the Maid, who with her white \nbanner stood beside the King in that hour of his triumph, kneeled \ndown upon the pavement at his feet, and said, with tears, that what \nshe had been inspired to do, was done, and that the only recompense \nshe asked for, was, that she should now have leave to go back to \nher distant home, and her sturdily incredulous father, and her \nfirst simple escort the village wheelwright and cart-maker.  But \nthe King said 'No!' and made her and her family as noble as a King \ncould, and settled upon her the income of a Count.\n\nAh! happy had it been for the Maid of Orleans, if she had resumed \nher rustic dress that day, and had gone home to the little chapel \nand the wild hills, and had forgotten all these things, and had \nbeen a good man's wife, and had heard no stranger voices than the \nvoices of little children!\n\nIt was not to be, and she continued helping the King (she did a \nworld for him, in alliance with Friar Richard), and trying to \nimprove the lives of the coarse soldiers, and leading a religious, \nan unselfish, and a modest life, herself, beyond any doubt.  Still, \nmany times she prayed the King to let her go home; and once she \neven took off her bright armour and hung it up in a church, meaning \nnever to wear it more.  But, the King always won her back again - \nwhile she was of any use to him - and so she went on and on and on, \nto her doom.\n\nWhen the Duke of Bedford, who was a very able man, began to be \nactive for England, and, by bringing the war back into France and \nby holding the Duke of Burgundy to his faith, to distress and \ndisturb Charles very much, Charles sometimes asked the Maid of \nOrleans what the Voices said about it?  But, the Voices had become \n(very like ordinary voices in perplexed times) contradictory and \nconfused, so that now they said one thing, and now said another, \nand the Maid lost credit every day.  Charles marched on Paris, \nwhich was opposed to him, and attacked the suburb of Saint Honore.  \nIn this fight, being again struck down into the ditch, she was \nabandoned by the whole army.  She lay unaided among a heap of dead, \nand crawled out how she could.  Then, some of her believers went \nover to an opposition Maid, Catherine of La Rochelle, who said she \nwas inspired to tell where there were treasures of buried money - \nthough she never did - and then Joan accidentally broke the old, \nold sword, and others said that her power was broken with it.  \nFinally, at the siege of Compigne, held by the Duke of Burgundy, \nwhere she did valiant service, she was basely left alone in a \nretreat, though facing about and fighting to the last; and an \narcher pulled her off her horse.\n\nO the uproar that was made, and the thanksgivings that were sung, \nabout the capture of this one poor country-girl!  O the way in \nwhich she was demanded to be tried for sorcery and heresy, and \nanything else you like, by the Inquisitor-General of France, and by \nthis great man, and by that great man, until it is wearisome to \nthink of! She was bought at last by the Bishop of Beauvais for ten \nthousand francs, and was shut up in her narrow prison:  plain Joan \nof Arc again, and Maid of Orleans no more.\n\nI should never have done if I were to tell you how they had Joan \nout to examine her, and cross-examine her, and re-examine her, and \nworry her into saying anything and everything; and how all sorts of \nscholars and doctors bestowed their utmost tediousness upon her.  \nSixteen times she was brought out and shut up again, and worried, \nand entrapped, and argued with, until she was heart-sick of the \ndreary business.  On the last occasion of this kind she was brought \ninto a burial-place at Rouen, dismally decorated with a scaffold, \nand a stake and faggots, and the executioner, and a pulpit with a \nfriar therein, and an awful sermon ready.  It is very affecting to \nknow that even at that pass the poor girl honoured the mean vermin \nof a King, who had so used her for his purposes and so abandoned \nher; and, that while she had been regardless of reproaches heaped \nupon herself, she spoke out courageously for him.\n\nIt was natural in one so young to hold to life.  To save her life, \nshe signed a declaration prepared for her - signed it with a cross, \nfor she couldn't write - that all her visions and Voices had come \nfrom the Devil.  Upon her recanting the past, and protesting that \nshe would never wear a man's dress in future, she was condemned to \nimprisonment for life, 'on the bread of sorrow and the water of \naffliction.'\n\nBut, on the bread of sorrow and the water of affliction, the \nvisions and the Voices soon returned.  It was quite natural that \nthey should do so, for that kind of disease is much aggravated by \nfasting, loneliness, and anxiety of mind.  It was not only got out \nof Joan that she considered herself inspired again, but, she was \ntaken in a man's dress, which had been left - to entrap her - in \nher prison, and which she put on, in her solitude; perhaps, in \nremembrance of her past glories, perhaps, because the imaginary \nVoices told her.  For this relapse into the sorcery and heresy and \nanything else you like, she was sentenced to be burnt to death.  \nAnd, in the market-place of Rouen, in the hideous dress which the \nmonks had invented for such spectacles; with priests and bishops \nsitting in a gallery looking on, though some had the Christian \ngrace to go away, unable to endure the infamous scene; this \nshrieking girl - last seen amidst the smoke and fire, holding a \ncrucifix between her hands; last heard, calling upon Christ - was \nburnt to ashes.  They threw her ashes into the river Seine; but \nthey will rise against her murderers on the last day.\n\nFrom the moment of her capture, neither the French King nor one \nsingle man in all his court raised a finger to save her.  It is no \ndefence of them that they may have never really believed in her, or \nthat they may have won her victories by their skill and bravery.  \nThe more they pretended to believe in her, the more they had caused \nher to believe in herself; and she had ever been true to them, ever \nbrave, ever nobly devoted.  But, it is no wonder, that they, who \nwere in all things false to themselves, false to one another, false \nto their country, false to Heaven, false to Earth, should be \nmonsters of ingratitude and treachery to a helpless peasant girl.\n\nIn the picturesque old town of Rouen, where weeds and grass grow \nhigh on the cathedral towers, and the venerable Norman streets are \nstill warm in the blessed sunlight though the monkish fires that \nonce gleamed horribly upon them have long grown cold, there is a \nstatue of Joan of Arc, in the scene of her last agony, the square \nto which she has given its present name.  I know some statues of \nmodern times - even in the World's metropolis, I think - which \ncommemorate less constancy, less earnestness, smaller claims upon \nthe world's attention, and much greater impostors.\n\n\nPART THE THIRD\n\n\nBAD deeds seldom prosper, happily for mankind; and the English \ncause gained no advantage from the cruel death of Joan of Arc.  For \na long time, the war went heavily on.  The Duke of Bedford died; \nthe alliance with the Duke of Burgundy was broken; and Lord Talbot \nbecame a great general on the English side in France.  But, two of \nthe consequences of wars are, Famine - because the people cannot \npeacefully cultivate the ground - and Pestilence, which comes of \nwant, misery, and suffering.  Both these horrors broke out in both \ncountries, and lasted for two wretched years.  Then, the war went \non again, and came by slow degrees to be so badly conducted by the \nEnglish government, that, within twenty years from the execution of \nthe Maid of Orleans, of all the great French conquests, the town of \nCalais alone remained in English hands.\n\nWhile these victories and defeats were taking place in the course \nof time, many strange things happened at home.  The young King, as \nhe grew up, proved to be very unlike his great father, and showed \nhimself a miserable puny creature.  There was no harm in him - he \nhad a great aversion to shedding blood:  which was something - but, \nhe was a weak, silly, helpless young man, and a mere shuttlecock to \nthe great lordly battledores about the Court.\n\nOf these battledores, Cardinal Beaufort, a relation of the King, \nand the Duke of Gloucester, were at first the most powerful.  The \nDuke of Gloucester had a wife, who was nonsensically accused of \npractising witchcraft to cause the King's death and lead to her \nhusband's coming to the throne, he being the next heir.  She was \ncharged with having, by the help of a ridiculous old woman named \nMargery (who was called a witch), made a little waxen doll in the \nKing's likeness, and put it before a slow fire that it might \ngradually melt away.  It was supposed, in such cases, that the \ndeath of the person whom the doll was made to represent, was sure \nto happen.  Whether the duchess was as ignorant as the rest of \nthem, and really did make such a doll with such an intention, I \ndon't know; but, you and I know very well that she might have made \na thousand dolls, if she had been stupid enough, and might have \nmelted them all, without hurting the King or anybody else.  \nHowever, she was tried for it, and so was old Margery, and so was \none of the duke's chaplains, who was charged with having assisted \nthem.  Both he and Margery were put to death, and the duchess, \nafter being taken on foot and bearing a lighted candle, three times \nround the City, as a penance, was imprisoned for life.  The duke, \nhimself, took all this pretty quietly, and made as little stir \nabout the matter as if he were rather glad to be rid of the \nduchess.\n\nBut, he was not destined to keep himself out of trouble long.  The \nroyal shuttlecock being three-and-twenty, the battledores were very \nanxious to get him married.  The Duke of Gloucester wanted him to \nmarry a daughter of the Count of Armagnac; but, the Cardinal and \nthe Earl of Suffolk were all for MARGARET, the daughter of the King \nof Sicily, who they knew was a resolute, ambitious woman and would \ngovern the King as she chose.  To make friends with this lady, the \nEarl of Suffolk, who went over to arrange the match, consented to \naccept her for the King's wife without any fortune, and even to \ngive up the two most valuable possessions England then had in \nFrance.  So, the marriage was arranged, on terms very advantageous \nto the lady; and Lord Suffolk brought her to England, and she was \nmarried at Westminster.  On what pretence this queen and her party \ncharged the Duke of Gloucester with high treason within a couple of \nyears, it is impossible to make out, the matter is so confused; \nbut, they pretended that the King's life was in danger, and they \ntook the duke prisoner.  A fortnight afterwards, he was found dead \nin bed (they said), and his body was shown to the people, and Lord \nSuffolk came in for the best part of his estates.  You know by this \ntime how strangely liable state prisoners were to sudden death.\n\nIf Cardinal Beaufort had any hand in this matter, it did him no \ngood, for he died within six weeks; thinking it very hard and \ncurious - at eighty years old! - that he could not live to be Pope.\n\nThis was the time when England had completed her loss of all her \ngreat French conquests.  The people charged the loss principally \nupon the Earl of Suffolk, now a duke, who had made those easy terms \nabout the Royal Marriage, and who, they believed, had even been \nbought by France.  So he was impeached as a traitor, on a great \nnumber of charges, but chiefly on accusations of having aided the \nFrench King, and of designing to make his own son King of England.  \nThe Commons and the people being violent against him, the King was \nmade (by his friends) to interpose to save him, by banishing him \nfor five years, and proroguing the Parliament.  The duke had much \nado to escape from a London mob, two thousand strong, who lay in \nwait for him in St. Giles's fields; but, he got down to his own \nestates in Suffolk, and sailed away from Ipswich.  Sailing across \nthe Channel, he sent into Calais to know if he might land there; \nbut, they kept his boat and men in the harbour, until an English \nship, carrying a hundred and fifty men and called the Nicholas of \nthe Tower, came alongside his little vessel, and ordered him on \nboard.  'Welcome, traitor, as men say,' was the captain's grim and \nnot very respectful salutation.  He was kept on board, a prisoner, \nfor eight-and-forty hours, and then a small boat appeared rowing \ntoward the ship.  As this boat came nearer, it was seen to have in \nit a block, a rusty sword, and an executioner in a black mask.  The \nduke was handed down into it, and there his head was cut off with \nsix strokes of the rusty sword.  Then, the little boat rowed away \nto Dover beach, where the body was cast out, and left until the \nduchess claimed it.  By whom, high in authority, this murder was \ncommitted, has never appeared.  No one was ever punished for it.\n\nThere now arose in Kent an Irishman, who gave himself the name of \nMortimer, but whose real name was JACK CADE.  Jack, in imitation of \nWat Tyler, though he was a very different and inferior sort of man, \naddressed the Kentish men upon their wrongs, occasioned by the bad \ngovernment of England, among so many battledores and such a poor \nshuttlecock; and the Kentish men rose up to the number of twenty \nthousand.  Their place of assembly was Blackheath, where, headed by \nJack, they put forth two papers, which they called 'The Complaint \nof the Commons of Kent,' and 'The Requests of the Captain of the \nGreat Assembly in Kent.'  They then retired to Sevenoaks.  The \nroyal army coming up with them here, they beat it and killed their \ngeneral.  Then, Jack dressed himself in the dead general's armour, \nand led his men to London.\n\nJack passed into the City from Southwark, over the bridge, and \nentered it in triumph, giving the strictest orders to his men not \nto plunder.  Having made a show of his forces there, while the \ncitizens looked on quietly, he went back into Southwark in good \norder, and passed the night.  Next day, he came back again, having \ngot hold in the meantime of Lord Say, an unpopular nobleman.  Says \nJack to the Lord Mayor and judges:  'Will you be so good as to make \na tribunal in Guildhall, and try me this nobleman?'  The court \nbeing hastily made, he was found guilty, and Jack and his men cut \nhis head off on Cornhill.  They also cut off the head of his son-\nin-law, and then went back in good order to Southwark again.\n\nBut, although the citizens could bear the beheading of an unpopular \nlord, they could not bear to have their houses pillaged.  And it \ndid so happen that Jack, after dinner - perhaps he had drunk a \nlittle too much - began to plunder the house where he lodged; upon \nwhich, of course, his men began to imitate him.  Wherefore, the \nLondoners took counsel with Lord Scales, who had a thousand \nsoldiers in the Tower; and defended London Bridge, and kept Jack \nand his people out.  This advantage gained, it was resolved by \ndivers great men to divide Jack's army in the old way, by making a \ngreat many promises on behalf of the state, that were never \nintended to be performed.  This DID divide them; some of Jack's men \nsaying that they ought to take the conditions which were offered, \nand others saying that they ought not, for they were only a snare; \nsome going home at once; others staying where they were; and all \ndoubting and quarrelling among themselves.\n\nJack, who was in two minds about fighting or accepting a pardon, \nand who indeed did both, saw at last that there was nothing to \nexpect from his men, and that it was very likely some of them would \ndeliver him up and get a reward of a thousand marks, which was \noffered for his apprehension.  So, after they had travelled and \nquarrelled all the way from Southwark to Blackheath, and from \nBlackheath to Rochester, he mounted a good horse and galloped away \ninto Sussex.  But, there galloped after him, on a better horse, one \nAlexander Iden, who came up with him, had a hard fight with him, \nand killed him.  Jack's head was set aloft on London Bridge, with \nthe face looking towards Blackheath, where he had raised his flag; \nand Alexander Iden got the thousand marks.\n\nIt is supposed by some, that the Duke of York, who had been removed \nfrom a high post abroad through the Queen's influence, and sent out \nof the way, to govern Ireland, was at the bottom of this rising of \nJack and his men, because he wanted to trouble the government.  He \nclaimed (though not yet publicly) to have a better right to the \nthrone than Henry of Lancaster, as one of the family of the Earl of \nMarch, whom Henry the Fourth had set aside.  Touching this claim, \nwhich, being through female relationship, was not according to the \nusual descent, it is enough to say that Henry the Fourth was the \nfree choice of the people and the Parliament, and that his family \nhad now reigned undisputed for sixty years.  The memory of Henry \nthe Fifth was so famous, and the English people loved it so much, \nthat the Duke of York's claim would, perhaps, never have been \nthought of (it would have been so hopeless) but for the unfortunate \ncircumstance of the present King's being by this time quite an \nidiot, and the country very ill governed.  These two circumstances \ngave the Duke of York a power he could not otherwise have had.\n\nWhether the Duke knew anything of Jack Cade, or not, he came over \nfrom Ireland while Jack's head was on London Bridge; being secretly \nadvised that the Queen was setting up his enemy, the Duke of \nSomerset, against him.  He went to Westminster, at the head of four \nthousand men, and on his knees before the King, represented to him \nthe bad state of the country, and petitioned him to summon a \nParliament to consider it.  This the King promised.  When the \nParliament was summoned, the Duke of York accused the Duke of \nSomerset, and the Duke of Somerset accused the Duke of York; and, \nboth in and out of Parliament, the followers of each party were \nfull of violence and hatred towards the other.  At length the Duke \nof York put himself at the head of a large force of his tenants, \nand, in arms, demanded the reformation of the Government.  Being \nshut out of London, he encamped at Dartford, and the royal army \nencamped at Blackheath.  According as either side triumphed, the \nDuke of York was arrested, or the Duke of Somerset was arrested.  \nThe trouble ended, for the moment, in the Duke of York renewing his \noath of allegiance, and going in peace to one of his own castles.\n\nHalf a year afterwards the Queen gave birth to a son, who was very \nill received by the people, and not believed to be the son of the \nKing.  It shows the Duke of York to have been a moderate man, \nunwilling to involve England in new troubles, that he did not take \nadvantage of the general discontent at this time, but really acted \nfor the public good.  He was made a member of the cabinet, and the \nKing being now so much worse that he could not be carried about and \nshown to the people with any decency, the duke was made Lord \nProtector of the kingdom, until the King should recover, or the \nPrince should come of age.  At the same time the Duke of Somerset \nwas committed to the Tower.  So, now the Duke of Somerset was down, \nand the Duke of York was up.  By the end of the year, however, the \nKing recovered his memory and some spark of sense; upon which the \nQueen used her power - which recovered with him - to get the \nProtector disgraced, and her favourite released.  So now the Duke \nof York was down, and the Duke of Somerset was up.\n\nThese ducal ups and downs gradually separated the whole nation into \nthe two parties of York and Lancaster, and led to those terrible \ncivil wars long known as the Wars of the Red and White Roses, \nbecause the red rose was the badge of the House of Lancaster, and \nthe white rose was the badge of the House of York.\n\nThe Duke of York, joined by some other powerful noblemen of the \nWhite Rose party, and leading a small army, met the King with \nanother small army at St. Alban's, and demanded that the Duke of \nSomerset should be given up.  The poor King, being made to say in \nanswer that he would sooner die, was instantly attacked.  The Duke \nof Somerset was killed, and the King himself was wounded in the \nneck, and took refuge in the house of a poor tanner.  Whereupon, \nthe Duke of York went to him, led him with great submission to the \nAbbey, and said he was very sorry for what had happened.  Having \nnow the King in his possession, he got a Parliament summoned and \nhimself once more made Protector, but, only for a few months; for, \non the King getting a little better again, the Queen and her party \ngot him into their possession, and disgraced the Duke once more.  \nSo, now the Duke of York was down again.\n\nSome of the best men in power, seeing the danger of these constant \nchanges, tried even then to prevent the Red and the White Rose \nWars.  They brought about a great council in London between the two \nparties.  The White Roses assembled in Blackfriars, the Red Roses \nin Whitefriars; and some good priests communicated between them, \nand made the proceedings known at evening to the King and the \njudges.  They ended in a peaceful agreement that there should be no \nmore quarrelling; and there was a great royal procession to St. \nPaul's, in which the Queen walked arm-in-arm with her old enemy, \nthe Duke of York, to show the people how comfortable they all were.  \nThis state of peace lasted half a year, when a dispute between the \nEarl of Warwick (one of the Duke's powerful friends) and some of \nthe King's servants at Court, led to an attack upon that Earl - who \nwas a White Rose - and to a sudden breaking out of all old \nanimosities.  So, here were greater ups and downs than ever.\n\nThere were even greater ups and downs than these, soon after.  \nAfter various battles, the Duke of York fled to Ireland, and his \nson the Earl of March to Calais, with their friends the Earls of \nSalisbury and Warwick; and a Parliament was held declaring them all \ntraitors.  Little the worse for this, the Earl of Warwick presently \ncame back, landed in Kent, was joined by the Archbishop of \nCanterbury and other powerful noblemen and gentlemen, engaged the \nKing's forces at Northampton, signally defeated them, and took the \nKing himself prisoner, who was found in his tent.  Warwick would \nhave been glad, I dare say, to have taken the Queen and Prince too, \nbut they escaped into Wales and thence into Scotland.\n\nThe King was carried by the victorious force straight to London, \nand made to call a new Parliament, which immediately declared that \nthe Duke of York and those other noblemen were not traitors, but \nexcellent subjects.  Then, back comes the Duke from Ireland at the \nhead of five hundred horsemen, rides from London to Westminster, \nand enters the House of Lords.  There, he laid his hand upon the \ncloth of gold which covered the empty throne, as if he had half a \nmind to sit down in it - but he did not.  On the Archbishop of \nCanterbury, asking him if he would visit the King, who was in his \npalace close by, he replied, 'I know no one in this country, my \nlord, who ought not to visit ME.'  None of the lords present spoke \na single word; so, the duke went out as he had come in, established \nhimself royally in the King's palace, and, six days afterwards, \nsent in to the Lords a formal statement of his claim to the throne.  \nThe lords went to the King on this momentous subject, and after a \ngreat deal of discussion, in which the judges and the other law \nofficers were afraid to give an opinion on either side, the \nquestion was compromised.  It was agreed that the present King \nshould retain the crown for his life, and that it should then pass \nto the Duke of York and his heirs.\n\nBut, the resolute Queen, determined on asserting her son's right, \nwould hear of no such thing.  She came from Scotland to the north \nof England, where several powerful lords armed in her cause.  The \nDuke of York, for his part, set off with some five thousand men, a \nlittle time before Christmas Day, one thousand four hundred and \nsixty, to give her battle.  He lodged at Sandal Castle, near \nWakefield, and the Red Roses defied him to come out on Wakefield \nGreen, and fight them then and there.  His generals said, he had \nbest wait until his gallant son, the Earl of March, came up with \nhis power; but, he was determined to accept the challenge.  He did \nso, in an evil hour.  He was hotly pressed on all sides, two \nthousand of his men lay dead on Wakefield Green, and he himself was \ntaken prisoner.  They set him down in mock state on an ant-hill, \nand twisted grass about his head, and pretended to pay court to him \non their knees, saying, 'O King, without a kingdom, and Prince \nwithout a people, we hope your gracious Majesty is very well and \nhappy!'  They did worse than this; they cut his head off, and \nhanded it on a pole to the Queen, who laughed with delight when she \nsaw it (you recollect their walking so religiously and comfortably \nto St. Paul's!), and had it fixed, with a paper crown upon its \nhead, on the walls of York.  The Earl of Salisbury lost his head, \ntoo; and the Duke of York's second son, a handsome boy who was \nflying with his tutor over Wakefield Bridge, was stabbed in the \nheart by a murderous, lord - Lord Clifford by name - whose father \nhad been killed by the White Roses in the fight at St. Alban's.  \nThere was awful sacrifice of life in this battle, for no quarter \nwas given, and the Queen was wild for revenge.  When men \nunnaturally fight against their own countrymen, they are always \nobserved to be more unnaturally cruel and filled with rage than \nthey are against any other enemy.\n\nBut, Lord Clifford had stabbed the second son of the Duke of York - \nnot the first.  The eldest son, Edward Earl of March, was at \nGloucester; and, vowing vengeance for the death of his father, his \nbrother, and their faithful friends, he began to march against the \nQueen.  He had to turn and fight a great body of Welsh and Irish \nfirst, who worried his advance.  These he defeated in a great fight \nat Mortimer's Cross, near Hereford, where he beheaded a number of \nthe Red Roses taken in battle, in retaliation for the beheading of \nthe White Roses at Wakefield.  The Queen had the next turn of \nbeheading.  Having moved towards London, and falling in, between \nSt. Alban's and Barnet, with the Earl of Warwick and the Duke of \nNorfolk, White Roses both, who were there with an army to oppose \nher, and had got the King with them; she defeated them with great \nloss, and struck off the heads of two prisoners of note, who were \nin the King's tent with him, and to whom the King had promised his \nprotection.  Her triumph, however, was very short.  She had no \ntreasure, and her army subsisted by plunder.  This caused them to \nbe hated and dreaded by the people, and particularly by the London \npeople, who were wealthy.  As soon as the Londoners heard that \nEdward, Earl of March, united with the Earl of Warwick, was \nadvancing towards the city, they refused to send the Queen \nsupplies, and made a great rejoicing.\n\nThe Queen and her men retreated with all speed, and Edward and \nWarwick came on, greeted with loud acclamations on every side.  The \ncourage, beauty, and virtues of young Edward could not be \nsufficiently praised by the whole people.  He rode into London like \na conqueror, and met with an enthusiastic welcome.  A few days \nafterwards, Lord Falconbridge and the Bishop of Exeter assembled \nthe citizens in St. John's Field, Clerkenwell, and asked them if \nthey would have Henry of Lancaster for their King?  To this they \nall roared, 'No, no, no!' and 'King Edward!  King Edward!'  Then, \nsaid those noblemen, would they love and serve young Edward?  To \nthis they all cried, 'Yes, yes!' and threw up their caps and \nclapped their hands, and cheered tremendously.\n\nTherefore, it was declared that by joining the Queen and not \nprotecting those two prisoners of note, Henry of Lancaster had \nforfeited the crown; and Edward of York was proclaimed King.  He \nmade a great speech to the applauding people at Westminster, and \nsat down as sovereign of England on that throne, on the golden \ncovering of which his father - worthy of a better fate than the \nbloody axe which cut the thread of so many lives in England, \nthrough so many years - had laid his hand.\n\n\n\nCHAPTER XXIII - ENGLAND UNDER EDWARD THE FOURTH\n\n\n\nKING EDWARD THE FOURTH was not quite twenty-one years of age when \nhe took that unquiet seat upon the throne of England.  The \nLancaster party, the Red Roses, were then assembling in great \nnumbers near York, and it was necessary to give them battle \ninstantly.  But, the stout Earl of Warwick leading for the young \nKing, and the young King himself closely following him, and the \nEnglish people crowding round the Royal standard, the White and the \nRed Roses met, on a wild March day when the snow was falling \nheavily, at Towton; and there such a furious battle raged between \nthem, that the total loss amounted to forty thousand men - all \nEnglishmen, fighting, upon English ground, against one another.  \nThe young King gained the day, took down the heads of his father \nand brother from the walls of York, and put up the heads of some of \nthe most famous noblemen engaged in the battle on the other side.  \nThen, he went to London and was crowned with great splendour.\n\nA new Parliament met.  No fewer than one hundred and fifty of the \nprincipal noblemen and gentlemen on the Lancaster side were \ndeclared traitors, and the King - who had very little humanity, \nthough he was handsome in person and agreeable in manners - \nresolved to do all he could, to pluck up the Red Rose root and \nbranch.\n\nQueen Margaret, however, was still active for her young son.  She \nobtained help from Scotland and from Normandy, and took several \nimportant English castles.  But, Warwick soon retook them; the \nQueen lost all her treasure on board ship in a great storm; and \nboth she and her son suffered great misfortunes.  Once, in the \nwinter weather, as they were riding through a forest, they were \nattacked and plundered by a party of robbers; and, when they had \nescaped from these men and were passing alone and on foot through a \nthick dark part of the wood, they came, all at once, upon another \nrobber.  So the Queen, with a stout heart, took the little Prince \nby the hand, and going straight up to that robber, said to him, 'My \nfriend, this is the young son of your lawful King!  I confide him \nto your care.'  The robber was surprised, but took the boy in his \narms, and faithfully restored him and his mother to their friends.  \nIn the end, the Queen's soldiers being beaten and dispersed, she \nwent abroad again, and kept quiet for the present.\n\nNow, all this time, the deposed King Henry was concealed by a Welsh \nknight, who kept him close in his castle.  But, next year, the \nLancaster party recovering their spirits, raised a large body of \nmen, and called him out of his retirement, to put him at their \nhead.  They were joined by some powerful noblemen who had sworn \nfidelity to the new King, but who were ready, as usual, to break \ntheir oaths, whenever they thought there was anything to be got by \nit.  One of the worst things in the history of the war of the Red \nand White Roses, is the ease with which these noblemen, who should \nhave set an example of honour to the people, left either side as \nthey took slight offence, or were disappointed in their greedy \nexpectations, and joined the other.  Well! Warwick's brother soon \nbeat the Lancastrians, and the false noblemen, being taken, were \nbeheaded without a moment's loss of time.  The deposed King had a \nnarrow escape; three of his servants were taken, and one of them \nbore his cap of estate, which was set with pearls and embroidered \nwith two golden crowns.  However, the head to which the cap \nbelonged, got safely into Lancashire, and lay pretty quietly there \n(the people in the secret being very true) for more than a year.  \nAt length, an old monk gave such intelligence as led to Henry's \nbeing taken while he was sitting at dinner in a place called \nWaddington Hall.  He was immediately sent to London, and met at \nIslington by the Earl of Warwick, by whose directions he was put \nupon a horse, with his legs tied under it, and paraded three times \nround the pillory.  Then, he was carried off to the Tower, where \nthey treated him well enough.\n\nThe White Rose being so triumphant, the young King abandoned \nhimself entirely to pleasure, and led a jovial life.  But, thorns \nwere springing up under his bed of roses, as he soon found out.  \nFor, having been privately married to ELIZABETH WOODVILLE, a young \nwidow lady, very beautiful and very captivating; and at last \nresolving to make his secret known, and to declare her his Queen; \nhe gave some offence to the Earl of Warwick, who was usually called \nthe King-Maker, because of his power and influence, and because of \nhis having lent such great help to placing Edward on the throne.  \nThis offence was not lessened by the jealousy with which the Nevil \nfamily (the Earl of Warwick's) regarded the promotion of the \nWoodville family.  For, the young Queen was so bent on providing \nfor her relations, that she made her father an earl and a great \nofficer of state; married her five sisters to young noblemen of the \nhighest rank; and provided for her younger brother, a young man of \ntwenty, by marrying him to an immensely rich old duchess of eighty.  \nThe Earl of Warwick took all this pretty graciously for a man of \nhis proud temper, until the question arose to whom the King's \nsister, MARGARET, should be married.  The Earl of Warwick said, 'To \none of the French King's sons,' and was allowed to go over to the \nFrench King to make friendly proposals for that purpose, and to \nhold all manner of friendly interviews with him.  But, while he was \nso engaged, the Woodville party married the young lady to the Duke \nof Burgundy!  Upon this he came back in great rage and scorn, and \nshut himself up discontented, in his Castle of Middleham.\n\nA reconciliation, though not a very sincere one, was patched up \nbetween the Earl of Warwick and the King, and lasted until the Earl \nmarried his daughter, against the King's wishes, to the Duke of \nClarence.  While the marriage was being celebrated at Calais, the \npeople in the north of England, where the influence of the Nevil \nfamily was strongest, broke out into rebellion; their complaint \nwas, that England was oppressed and plundered by the Woodville \nfamily, whom they demanded to have removed from power.  As they \nwere joined by great numbers of people, and as they openly declared \nthat they were supported by the Earl of Warwick, the King did not \nknow what to do.  At last, as he wrote to the earl beseeching his \naid, he and his new son-in-law came over to England, and began to \narrange the business by shutting the King up in Middleham Castle in \nthe safe keeping of the Archbishop of York; so England was not only \nin the strange position of having two kings at once, but they were \nboth prisoners at the same time.\n\nEven as yet, however, the King-Maker was so far true to the King, \nthat he dispersed a new rising of the Lancastrians, took their \nleader prisoner, and brought him to the King, who ordered him to be \nimmediately executed.  He presently allowed the King to return to \nLondon, and there innumerable pledges of forgiveness and friendship \nwere exchanged between them, and between the Nevils and the \nWoodvilles; the King's eldest daughter was promised in marriage to \nthe heir of the Nevil family; and more friendly oaths were sworn, \nand more friendly promises made, than this book would hold.\n\nThey lasted about three months.  At the end of that time, the \nArchbishop of York made a feast for the King, the Earl of Warwick, \nand the Duke of Clarence, at his house, the Moor, in Hertfordshire.  \nThe King was washing his hands before supper, when some one \nwhispered him that a body of a hundred men were lying in ambush \noutside the house.  Whether this were true or untrue, the King took \nfright, mounted his horse, and rode through the dark night to \nWindsor Castle.  Another reconciliation was patched up between him \nand the King-Maker, but it was a short one, and it was the last.  A \nnew rising took place in Lincolnshire, and the King marched to \nrepress it.  Having done so, he proclaimed that both the Earl of \nWarwick and the Duke of Clarence were traitors, who had secretly \nassisted it, and who had been prepared publicly to join it on the \nfollowing day.  In these dangerous circumstances they both took \nship and sailed away to the French court.\n\nAnd here a meeting took place between the Earl of Warwick and his \nold enemy, the Dowager Queen Margaret, through whom his father had \nhad his head struck off, and to whom he had been a bitter foe.  \nBut, now, when he said that he had done with the ungrateful and \nperfidious Edward of York, and that henceforth he devoted himself \nto the restoration of the House of Lancaster, either in the person \nof her husband or of her little son, she embraced him as if he had \never been her dearest friend.  She did more than that; she married \nher son to his second daughter, the Lady Anne.  However agreeable \nthis marriage was to the new friends, it was very disagreeable to \nthe Duke of Clarence, who perceived that his father-in-law, the \nKing-Maker, would never make HIM King, now.  So, being but a weak-\nminded young traitor, possessed of very little worth or sense, he \nreadily listened to an artful court lady sent over for the purpose, \nand promised to turn traitor once more, and go over to his brother, \nKing Edward, when a fitting opportunity should come.\n\nThe Earl of Warwick, knowing nothing of this, soon redeemed his \npromise to the Dowager Queen Margaret, by invading England and \nlanding at Plymouth, where he instantly proclaimed King Henry, and \nsummoned all Englishmen between the ages of sixteen and sixty, to \njoin his banner.  Then, with his army increasing as he marched \nalong, he went northward, and came so near King Edward, who was in \nthat part of the country, that Edward had to ride hard for it to \nthe coast of Norfolk, and thence to get away in such ships as he \ncould find, to Holland.  Thereupon, the triumphant King-Maker and \nhis false son-in-law, the Duke of Clarence, went to London, took \nthe old King out of the Tower, and walked him in a great procession \nto Saint Paul's Cathedral with the crown upon his head.  This did \nnot improve the temper of the Duke of Clarence, who saw himself \nfarther off from being King than ever; but he kept his secret, and \nsaid nothing.  The Nevil family were restored to all their honours \nand glories, and the Woodvilles and the rest were disgraced.  The \nKing-Maker, less sanguinary than the King, shed no blood except \nthat of the Earl of Worcester, who had been so cruel to the people \nas to have gained the title of the Butcher.  Him they caught hidden \nin a tree, and him they tried and executed.  No other death stained \nthe King-Maker's triumph.\n\nTo dispute this triumph, back came King Edward again, next year, \nlanding at Ravenspur, coming on to York, causing all his men to cry \n'Long live King Henry!' and swearing on the altar, without a blush, \nthat he came to lay no claim to the crown.  Now was the time for \nthe Duke of Clarence, who ordered his men to assume the White Rose, \nand declare for his brother.  The Marquis of Montague, though the \nEarl of Warwick's brother, also declining to fight against King \nEdward, he went on successfully to London, where the Archbishop of \nYork let him into the City, and where the people made great \ndemonstrations in his favour.  For this they had four reasons.  \nFirstly, there were great numbers of the King's adherents hiding in \nthe City and ready to break out; secondly, the King owed them a \ngreat deal of money, which they could never hope to get if he were \nunsuccessful; thirdly, there was a young prince to inherit the \ncrown; and fourthly, the King was gay and handsome, and more \npopular than a better man might have been with the City ladies.  \nAfter a stay of only two days with these worthy supporters, the \nKing marched out to Barnet Common, to give the Earl of Warwick \nbattle.  And now it was to be seen, for the last time, whether the \nKing or the King-Maker was to carry the day.\n\nWhile the battle was yet pending, the fainthearted Duke of Clarence \nbegan to repent, and sent over secret messages to his father-in-\nlaw, offering his services in mediation with the King.  But, the \nEarl of Warwick disdainfully rejected them, and replied that \nClarence was false and perjured, and that he would settle the \nquarrel by the sword.  The battle began at four o'clock in the \nmorning and lasted until ten, and during the greater part of the \ntime it was fought in a thick mist - absurdly supposed to be raised \nby a magician.  The loss of life was very great, for the hatred was \nstrong on both sides.  The King-Maker was defeated, and the King \ntriumphed.  Both the Earl of Warwick and his brother were slain, \nand their bodies lay in St. Paul's, for some days, as a spectacle \nto the people.\n\nMargaret's spirit was not broken even by this great blow.  Within \nfive days she was in arms again, and raised her standard in Bath, \nwhence she set off with her army, to try and join Lord Pembroke, \nwho had a force in Wales.  But, the King, coming up with her \noutside the town of Tewkesbury, and ordering his brother, the DUKE \nOF GLOUCESTER, who was a brave soldier, to attack her men, she \nsustained an entire defeat, and was taken prisoner, together with \nher son, now only eighteen years of age.  The conduct of the King \nto this poor youth was worthy of his cruel character.  He ordered \nhim to be led into his tent.  'And what,' said he, 'brought YOU to \nEngland?'  'I came to England,' replied the prisoner, with a spirit \nwhich a man of spirit might have admired in a captive, 'to recover \nmy father's kingdom, which descended to him as his right, and from \nhim descends to me, as mine.'  The King, drawing off his iron \ngauntlet, struck him with it in the face; and the Duke of Clarence \nand some other lords, who were there, drew their noble swords, and \nkilled him.\n\nHis mother survived him, a prisoner, for five years; after her \nransom by the King of France, she survived for six years more.  \nWithin three weeks of this murder, Henry died one of those \nconvenient sudden deaths which were so common in the Tower; in \nplainer words, he was murdered by the King's order.\n\nHaving no particular excitement on his hands after this great \ndefeat of the Lancaster party, and being perhaps desirous to get \nrid of some of his fat (for he was now getting too corpulent to be \nhandsome), the King thought of making war on France.  As he wanted \nmore money for this purpose than the Parliament could give him, \nthough they were usually ready enough for war, he invented a new \nway of raising it, by sending for the principal citizens of London, \nand telling them, with a grave face, that he was very much in want \nof cash, and would take it very kind in them if they would lend him \nsome.  It being impossible for them safely to refuse, they \ncomplied, and the moneys thus forced from them were called - no \ndoubt to the great amusement of the King and the Court - as if they \nwere free gifts, 'Benevolences.'  What with grants from Parliament, \nand what with Benevolences, the King raised an army and passed over \nto Calais.  As nobody wanted war, however, the French King made \nproposals of peace, which were accepted, and a truce was concluded \nfor seven long years.  The proceedings between the Kings of France \nand England on this occasion, were very friendly, very splendid, \nand very distrustful.  They finished with a meeting between the two \nKings, on a temporary bridge over the river Somme, where they \nembraced through two holes in a strong wooden grating like a lion's \ncage, and made several bows and fine speeches to one another.\n\nIt was time, now, that the Duke of Clarence should be punished for \nhis treacheries; and Fate had his punishment in store.  He was, \nprobably, not trusted by the King - for who could trust him who \nknew him! - and he had certainly a powerful opponent in his brother \nRichard, Duke of Gloucester, who, being avaricious and ambitious, \nwanted to marry that widowed daughter of the Earl of Warwick's who \nhad been espoused to the deceased young Prince, at Calais.  \nClarence, who wanted all the family wealth for himself, secreted \nthis lady, whom Richard found disguised as a servant in the City of \nLondon, and whom he married; arbitrators appointed by the King, \nthen divided the property between the brothers.  This led to ill-\nwill and mistrust between them.  Clarence's wife dying, and he \nwishing to make another marriage, which was obnoxious to the King, \nhis ruin was hurried by that means, too.  At first, the Court \nstruck at his retainers and dependents, and accused some of them of \nmagic and witchcraft, and similar nonsense.  Successful against \nthis small game, it then mounted to the Duke himself, who was \nimpeached by his brother the King, in person, on a variety of such \ncharges.  He was found guilty, and sentenced to be publicly \nexecuted.  He never was publicly executed, but he met his death \nsomehow, in the Tower, and, no doubt, through some agency of the \nKing or his brother Gloucester, or both.  It was supposed at the \ntime that he was told to choose the manner of his death, and that \nhe chose to be drowned in a butt of Malmsey wine.  I hope the story \nmay be true, for it would have been a becoming death for such a \nmiserable creature.\n\nThe King survived him some five years.  He died in the forty-second \nyear of his life, and the twenty-third of his reign.  He had a very \ngood capacity and some good points, but he was selfish, careless, \nsensual, and cruel.  He was a favourite with the people for his \nshowy manners; and the people were a good example to him in the \nconstancy of their attachment.  He was penitent on his death-bed \nfor his 'benevolences,' and other extortions, and ordered \nrestitution to be made to the people who had suffered from them.  \nHe also called about his bed the enriched members of the Woodville \nfamily, and the proud lords whose honours were of older date, and \nendeavoured to reconcile them, for the sake of the peaceful \nsuccession of his son and the tranquillity of England.\n\n\n\nCHAPTER XXIV - ENGLAND UNDER EDWARD THE FIFTH\n\n\n\nTHE late King's eldest son, the Prince of Wales, called EDWARD \nafter him, was only thirteen years of age at his father's death.  \nHe was at Ludlow Castle with his uncle, the Earl of Rivers.  The \nprince's brother, the Duke of York, only eleven years of age, was \nin London with his mother.  The boldest, most crafty, and most \ndreaded nobleman in England at that time was their uncle RICHARD, \nDuke of Gloucester, and everybody wondered how the two poor boys \nwould fare with such an uncle for a friend or a foe.\n\nThe Queen, their mother, being exceedingly uneasy about this, was \nanxious that instructions should be sent to Lord Rivers to raise an \narmy to escort the young King safely to London.  But, Lord \nHastings, who was of the Court party opposed to the Woodvilles, and \nwho disliked the thought of giving them that power, argued against \nthe proposal, and obliged the Queen to be satisfied with an escort \nof two thousand horse.  The Duke of Gloucester did nothing, at \nfirst, to justify suspicion.  He came from Scotland (where he was \ncommanding an army) to York, and was there the first to swear \nallegiance to his nephew.  He then wrote a condoling letter to the \nQueen-Mother, and set off to be present at the coronation in \nLondon.\n\nNow, the young King, journeying towards London too, with Lord \nRivers and Lord Gray, came to Stony Stratford, as his uncle came to \nNorthampton, about ten miles distant; and when those two lords \nheard that the Duke of Gloucester was so near, they proposed to the \nyoung King that they should go back and greet him in his name.  The \nboy being very willing that they should do so, they rode off and \nwere received with great friendliness, and asked by the Duke of \nGloucester to stay and dine with him.  In the evening, while they \nwere merry together, up came the Duke of Buckingham with three \nhundred horsemen; and next morning the two lords and the two dukes, \nand the three hundred horsemen, rode away together to rejoin the \nKing.  Just as they were entering Stony Stratford, the Duke of \nGloucester, checking his horse, turned suddenly on the two lords, \ncharged them with alienating from him the affections of his sweet \nnephew, and caused them to be arrested by the three hundred \nhorsemen and taken back.  Then, he and the Duke of Buckingham went \nstraight to the King (whom they had now in their power), to whom \nthey made a show of kneeling down, and offering great love and \nsubmission; and then they ordered his attendants to disperse, and \ntook him, alone with them, to Northampton.\n\nA few days afterwards they conducted him to London, and lodged him \nin the Bishop's Palace.  But, he did not remain there long; for, \nthe Duke of Buckingham with a tender face made a speech expressing \nhow anxious he was for the Royal boy's safety, and how much safer \nhe would be in the Tower until his coronation, than he could be \nanywhere else.  So, to the Tower he was taken, very carefully, and \nthe Duke of Gloucester was named Protector of the State.\n\nAlthough Gloucester had proceeded thus far with a very smooth \ncountenance - and although he was a clever man, fair of speech, and \nnot ill-looking, in spite of one of his shoulders being something \nhigher than the other - and although he had come into the City \nriding bare-headed at the King's side, and looking very fond of him \n- he had made the King's mother more uneasy yet; and when the Royal \nboy was taken to the Tower, she became so alarmed that she took \nsanctuary in Westminster with her five daughters.\n\nNor did she do this without reason, for, the Duke of Gloucester, \nfinding that the lords who were opposed to the Woodville family \nwere faithful to the young King nevertheless, quickly resolved to \nstrike a blow for himself.  Accordingly, while those lords met in \ncouncil at the Tower, he and those who were in his interest met in \nseparate council at his own residence, Crosby Palace, in \nBishopsgate Street.  Being at last quite prepared, he one day \nappeared unexpectedly at the council in the Tower, and appeared to \nbe very jocular and merry.  He was particularly gay with the Bishop \nof Ely:  praising the strawberries that grew in his garden on \nHolborn Hill, and asking him to have some gathered that he might \neat them at dinner.  The Bishop, quite proud of the honour, sent \none of his men to fetch some; and the Duke, still very jocular and \ngay, went out; and the council all said what a very agreeable duke \nhe was!  In a little time, however, he came back quite altered - \nnot at all jocular - frowning and fierce - and suddenly said, -\n\n'What do those persons deserve who have compassed my destruction; I \nbeing the King's lawful, as well as natural, protector?'\n\nTo this strange question, Lord Hastings replied, that they deserved \ndeath, whosoever they were.\n\n'Then,' said the Duke, 'I tell you that they are that sorceress my \nbrother's wife;' meaning the Queen:  'and that other sorceress, \nJane Shore.  Who, by witchcraft, have withered my body, and caused \nmy arm to shrink as I now show you.'\n\nHe then pulled up his sleeve and showed them his arm, which was \nshrunken, it is true, but which had been so, as they all very well \nknew, from the hour of his birth.\n\nJane Shore, being then the lover of Lord Hastings, as she had \nformerly been of the late King, that lord knew that he himself was \nattacked.  So, he said, in some confusion, 'Certainly, my Lord, if \nthey have done this, they be worthy of punishment.'\n\n'If?' said the Duke of Gloucester; 'do you talk to me of ifs?  I \ntell you that they HAVE so done, and I will make it good upon thy \nbody, thou traitor!'\n\nWith that, he struck the table a great blow with his fist.  This \nwas a signal to some of his people outside to cry 'Treason!'  They \nimmediately did so, and there was a rush into the chamber of so \nmany armed men that it was filled in a moment.\n\n'First,' said the Duke of Gloucester to Lord Hastings, 'I arrest \nthee, traitor!  And let him,' he added to the armed men who took \nhim, 'have a priest at once, for by St. Paul I will not dine until \nI have seen his head of!'\n\nLord Hastings was hurried to the green by the Tower chapel, and \nthere beheaded on a log of wood that happened to be lying on the \nground.  Then, the Duke dined with a good appetite, and after \ndinner summoning the principal citizens to attend him, told them \nthat Lord Hastings and the rest had designed to murder both himself \nand the Duke if Buckingham, who stood by his side, if he had not \nprovidentially discovered their design.  He requested them to be so \nobliging as to inform their fellow-citizens of the truth of what he \nsaid, and issued a proclamation (prepared and neatly copied out \nbeforehand) to the same effect.\n\nOn the same day that the Duke did these things in the Tower, Sir \nRichard Ratcliffe, the boldest and most undaunted of his men, went \ndown to Pontefract; arrested Lord Rivers, Lord Gray, and two other \ngentlemen; and publicly executed them on the scaffold, without any \ntrial, for having intended the Duke's death.  Three days afterwards \nthe Duke, not to lose time, went down the river to Westminster in \nhis barge, attended by divers bishops, lords, and soldiers, and \ndemanded that the Queen should deliver her second son, the Duke of \nYork, into his safe keeping.  The Queen, being obliged to comply, \nresigned the child after she had wept over him; and Richard of \nGloucester placed him with his brother in the Tower.  Then, he \nseized Jane Shore, and, because she had been the lover of the late \nKing, confiscated her property, and got her sentenced to do public \npenance in the streets by walking in a scanty dress, with bare \nfeet, and carrying a lighted candle, to St. Paul's Cathedral, \nthrough the most crowded part of the City.\n\nHaving now all things ready for his own advancement, he caused a \nfriar to preach a sermon at the cross which stood in front of St. \nPaul's Cathedral, in which he dwelt upon the profligate manners of \nthe late King, and upon the late shame of Jane Shore, and hinted \nthat the princes were not his children.  'Whereas, good people,' \nsaid the friar, whose name was SHAW, 'my Lord the Protector, the \nnoble Duke of Gloucester, that sweet prince, the pattern of all the \nnoblest virtues, is the perfect image and express likeness of his \nfather.'  There had been a little plot between the Duke and the \nfriar, that the Duke should appear in the crowd at this moment, \nwhen it was expected that the people would cry 'Long live King \nRichard!'  But, either through the friar saying the words too soon, \nor through the Duke's coming too late, the Duke and the words did \nnot come together, and the people only laughed, and the friar \nsneaked off ashamed.\n\nThe Duke of Buckingham was a better hand at such business than the \nfriar, so he went to the Guildhall the next day, and addressed the \ncitizens in the Lord Protector's behalf.  A few dirty men, who had \nbeen hired and stationed there for the purpose, crying when he had \ndone, 'God save King Richard!' he made them a great bow, and \nthanked them with all his heart.  Next day, to make an end of it, \nhe went with the mayor and some lords and citizens to Bayard \nCastle, by the river, where Richard then was, and read an address, \nhumbly entreating him to accept the Crown of England.  Richard, who \nlooked down upon them out of a window and pretended to be in great \nuneasiness and alarm, assured them there was nothing he desired \nless, and that his deep affection for his nephews forbade him to \nthink of it.  To this the Duke of Buckingham replied, with \npretended warmth, that the free people of England would never \nsubmit to his nephew's rule, and that if Richard, who was the \nlawful heir, refused the Crown, why then they must find some one \nelse to wear it.  The Duke of Gloucester returned, that since he \nused that strong language, it became his painful duty to think no \nmore of himself, and to accept the Crown.\n\nUpon that, the people cheered and dispersed; and the Duke of \nGloucester and the Duke of Buckingham passed a pleasant evening, \ntalking over the play they had just acted with so much success, and \nevery word of which they had prepared together.\n\n\n\nCHAPTER XXV - ENGLAND UNDER RICHARD THE THIRD\n\n\n\nKING RICHARD THE THIRD was up betimes in the morning, and went to \nWestminster Hall.  In the Hall was a marble seat, upon which he sat \nhimself down between two great noblemen, and told the people that \nhe began the new reign in that place, because the first duty of a \nsovereign was to administer the laws equally to all, and to \nmaintain justice.  He then mounted his horse and rode back to the \nCity, where he was received by the clergy and the crowd as if he \nreally had a right to the throne, and really were a just man.  The \nclergy and the crowd must have been rather ashamed of themselves in \nsecret, I think, for being such poor-spirited knaves.\n\nThe new King and his Queen were soon crowned with a great deal of \nshow and noise, which the people liked very much; and then the King \nset forth on a royal progress through his dominions.  He was \ncrowned a second time at York, in order that the people might have \nshow and noise enough; and wherever he went was received with \nshouts of rejoicing - from a good many people of strong lungs, who \nwere paid to strain their throats in crying, 'God save King \nRichard!'  The plan was so successful that I am told it has been \nimitated since, by other usurpers, in other progresses through \nother dominions.\n\nWhile he was on this journey, King Richard stayed a week at \nWarwick.  And from Warwick he sent instructions home for one of the \nwickedest murders that ever was done - the murder of the two young \nprinces, his nephews, who were shut up in the Tower of London.\n\nSir Robert Brackenbury was at that time Governor of the Tower.  To \nhim, by the hands of a messenger named JOHN GREEN, did King Richard \nsend a letter, ordering him by some means to put the two young \nprinces to death.  But Sir Robert - I hope because he had children \nof his own, and loved them - sent John Green back again, riding and \nspurring along the dusty roads, with the answer that he could not \ndo so horrible a piece of work.  The King, having frowningly \nconsidered a little, called to him SIR JAMES TYRREL, his master of \nthe horse, and to him gave authority to take command of the Tower, \nwhenever he would, for twenty-four hours, and to keep all the keys \nof the Tower during that space of time.  Tyrrel, well knowing what \nwas wanted, looked about him for two hardened ruffians, and chose \nJOHN DIGHTON, one of his own grooms, and MILES FOREST, who was a \nmurderer by trade.  Having secured these two assistants, he went, \nupon a day in August, to the Tower, showed his authority from the \nKing, took the command for four-and-twenty hours, and obtained \npossession of the keys.  And when the black night came he went \ncreeping, creeping, like a guilty villain as he was, up the dark, \nstone winding stairs, and along the dark stone passages, until he \ncame to the door of the room where the two young princes, having \nsaid their prayers, lay fast asleep, clasped in each other's arms.  \nAnd while he watched and listened at the door, he sent in those \nevil demons, John Dighton and Miles Forest, who smothered the two \nprinces with the bed and pillows, and carried their bodies down the \nstairs, and buried them under a great heap of stones at the \nstaircase foot.  And when the day came, he gave up the command of \nthe Tower, and restored the keys, and hurried away without once \nlooking behind him; and Sir Robert Brackenbury went with fear and \nsadness to the princes' room, and found the princes gone for ever.\n\nYou know, through all this history, how true it is that traitors \nare never true, and you will not be surprised to learn that the \nDuke of Buckingham soon turned against King Richard, and joined a \ngreat conspiracy that was formed to dethrone him, and to place the \ncrown upon its rightful owner's head.  Richard had meant to keep \nthe murder secret; but when he heard through his spies that this \nconspiracy existed, and that many lords and gentlemen drank in \nsecret to the healths of the two young princes in the Tower, he \nmade it known that they were dead.  The conspirators, though \nthwarted for a moment, soon resolved to set up for the crown \nagainst the murderous Richard, HENRY Earl of Richmond, grandson of \nCatherine:  that widow of Henry the Fifth who married Owen Tudor.  \nAnd as Henry was of the house of Lancaster, they proposed that he \nshould marry the Princess Elizabeth, the eldest daughter of the \nlate King, now the heiress of the house of York, and thus by \nuniting the rival families put an end to the fatal wars of the Red \nand White Roses.  All being settled, a time was appointed for Henry \nto come over from Brittany, and for a great rising against Richard \nto take place in several parts of England at the same hour.  On a \ncertain day, therefore, in October, the revolt took place; but \nunsuccessfully.  Richard was prepared, Henry was driven back at sea \nby a storm, his followers in England were dispersed, and the Duke \nof Buckingham was taken, and at once beheaded in the market-place \nat Salisbury.\n\nThe time of his success was a good time, Richard thought, for \nsummoning a Parliament and getting some money.  So, a Parliament \nwas called, and it flattered and fawned upon him as much as he \ncould possibly desire, and declared him to be the rightful King of \nEngland, and his only son Edward, then eleven years of age, the \nnext heir to the throne.\n\nRichard knew full well that, let the Parliament say what it would, \nthe Princess Elizabeth was remembered by people as the heiress of \nthe house of York; and having accurate information besides, of its \nbeing designed by the conspirators to marry her to Henry of \nRichmond, he felt that it would much strengthen him and weaken \nthem, to be beforehand with them, and marry her to his son.  With \nthis view he went to the Sanctuary at Westminster, where the late \nKing's widow and her daughter still were, and besought them to come \nto Court:  where (he swore by anything and everything) they should \nbe safely and honourably entertained.  They came, accordingly, but \nhad scarcely been at Court a month when his son died suddenly - or \nwas poisoned - and his plan was crushed to pieces.\n\nIn this extremity, King Richard, always active, thought, 'I must \nmake another plan.'  And he made the plan of marrying the Princess \nElizabeth himself, although she was his niece.  There was one \ndifficulty in the way:  his wife, the Queen Anne, was alive.  But, \nhe knew (remembering his nephews) how to remove that obstacle, and \nhe made love to the Princess Elizabeth, telling her he felt \nperfectly confident that the Queen would die in February.  The \nPrincess was not a very scrupulous young lady, for, instead of \nrejecting the murderer of her brothers with scorn and hatred, she \nopenly declared she loved him dearly; and, when February came and \nthe Queen did not die, she expressed her impatient opinion that she \nwas too long about it.  However, King Richard was not so far out in \nhis prediction, but, that she died in March - he took good care of \nthat - and then this precious pair hoped to be married.  But they \nwere disappointed, for the idea of such a marriage was so unpopular \nin the country, that the King's chief counsellors, RATCLIFFE and \nCATESBY, would by no means undertake to propose it, and the King \nwas even obliged to declare in public that he had never thought of \nsuch a thing.\n\nHe was, by this time, dreaded and hated by all classes of his \nsubjects.  His nobles deserted every day to Henry's side; he dared \nnot call another Parliament, lest his crimes should be denounced \nthere; and for want of money, he was obliged to get Benevolences \nfrom the citizens, which exasperated them all against him.  It was \nsaid too, that, being stricken by his conscience, he dreamed \nfrightful dreams, and started up in the night-time, wild with \nterror and remorse.  Active to the last, through all this, he \nissued vigorous proclamations against Henry of Richmond and all his \nfollowers, when he heard that they were coming against him with a \nFleet from France; and took the field as fierce and savage as a \nwild boar - the animal represented on his shield.\n\nHenry of Richmond landed with six thousand men at Milford Haven, \nand came on against King Richard, then encamped at Leicester with \nan army twice as great, through North Wales.  On Bosworth Field the \ntwo armies met; and Richard, looking along Henry's ranks, and \nseeing them crowded with the English nobles who had abandoned him, \nturned pale when he beheld the powerful Lord Stanley and his son \n(whom he had tried hard to retain) among them.  But, he was as \nbrave as he was wicked, and plunged into the thickest of the fight.  \nHe was riding hither and thither, laying about him in all \ndirections, when he observed the Earl of Northumberland - one of \nhis few great allies - to stand inactive, and the main body of his \ntroops to hesitate.  At the same moment, his desperate glance \ncaught Henry of Richmond among a little group of his knights.  \nRiding hard at him, and crying 'Treason!' he killed his standard-\nbearer, fiercely unhorsed another gentleman, and aimed a powerful \nstroke at Henry himself, to cut him down.  But, Sir William Stanley \nparried it as it fell, and before Richard could raise his arm \nagain, he was borne down in a press of numbers, unhorsed, and \nkilled.  Lord Stanley picked up the crown, all bruised and \ntrampled, and stained with blood, and put it upon Richmond's head, \namid loud and rejoicing cries of 'Long live King Henry!'\n\nThat night, a horse was led up to the church of the Grey Friars at \nLeicester; across whose back was tied, like some worthless sack, a \nnaked body brought there for burial.  It was the body of the last \nof the Plantagenet line, King Richard the Third, usurper and \nmurderer, slain at the battle of Bosworth Field in the thirty-\nsecond year of his age, after a reign of two years.\n\n\n\nCHAPTER XXVI - ENGLAND UNDER HENRY THE SEVENTH\n\n\n\nKING HENRY THE SEVENTH did not turn out to be as fine a fellow as \nthe nobility and people hoped, in the first joy of their \ndeliverance from Richard the Third.  He was very cold, crafty, and \ncalculating, and would do almost anything for money.  He possessed \nconsiderable ability, but his chief merit appears to have been that \nhe was not cruel when there was nothing to be got by it.\n\nThe new King had promised the nobles who had espoused his cause \nthat he would marry the Princess Elizabeth.  The first thing he \ndid, was, to direct her to be removed from the castle of Sheriff \nHutton in Yorkshire, where Richard had placed her, and restored to \nthe care of her mother in London.  The young Earl of Warwick, \nEdward Plantagenet, son and heir of the late Duke of Clarence, had \nbeen kept a prisoner in the same old Yorkshire Castle with her.  \nThis boy, who was now fifteen, the new King placed in the Tower for \nsafety.  Then he came to London in great state, and gratified the \npeople with a fine procession; on which kind of show he often very \nmuch relied for keeping them in good humour.  The sports and feasts \nwhich took place were followed by a terrible fever, called the \nSweating Sickness; of which great numbers of people died.  Lord \nMayors and Aldermen are thought to have suffered most from it; \nwhether, because they were in the habit of over-eating themselves, \nor because they were very jealous of preserving filth and nuisances \nin the City (as they have been since), I don't know.\n\nThe King's coronation was postponed on account of the general ill-\nhealth, and he afterwards deferred his marriage, as if he were not \nvery anxious that it should take place:  and, even after that, \ndeferred the Queen's coronation so long that he gave offence to the \nYork party.  However, he set these things right in the end, by \nhanging some men and seizing on the rich possessions of others; by \ngranting more popular pardons to the followers of the late King \nthan could, at first, be got from him; and, by employing about his \nCourt, some very scrupulous persons who had been employed in the \nprevious reign.\n\nAs this reign was principally remarkable for two very curious \nimpostures which have become famous in history, we will make those \ntwo stories its principal feature.\n\nThere was a priest at Oxford of the name of Simons, who had for a \npupil a handsome boy named Lambert Simnel, the son of a baker.  \nPartly to gratify his own ambitious ends, and partly to carry out \nthe designs of a secret party formed against the King, this priest \ndeclared that his pupil, the boy, was no other than the young Earl \nof Warwick; who (as everybody might have known) was safely locked \nup in the Tower of London.  The priest and the boy went over to \nIreland; and, at Dublin, enlisted in their cause all ranks of the \npeople:  who seem to have been generous enough, but exceedingly \nirrational.  The Earl of Kildare, the governor of Ireland, declared \nthat he believed the boy to be what the priest represented; and the \nboy, who had been well tutored by the priest, told them such things \nof his childhood, and gave them so many descriptions of the Royal \nFamily, that they were perpetually shouting and hurrahing, and \ndrinking his health, and making all kinds of noisy and thirsty \ndemonstrations, to express their belief in him.  Nor was this \nfeeling confined to Ireland alone, for the Earl of Lincoln - whom \nthe late usurper had named as his successor - went over to the \nyoung Pretender; and, after holding a secret correspondence with \nthe Dowager Duchess of Burgundy - the sister of Edward the Fourth, \nwho detested the present King and all his race - sailed to Dublin \nwith two thousand German soldiers of her providing.  In this \npromising state of the boy's fortunes, he was crowned there, with a \ncrown taken off the head of a statue of the Virgin Mary; and was \nthen, according to the Irish custom of those days, carried home on \nthe shoulders of a big chieftain possessing a great deal more \nstrength than sense.  Father Simons, you may be sure, was mighty \nbusy at the coronation.\n\nTen days afterwards, the Germans, and the Irish, and the priest, \nand the boy, and the Earl of Lincoln, all landed in Lancashire to \ninvade England.  The King, who had good intelligence of their \nmovements, set up his standard at Nottingham, where vast numbers \nresorted to him every day; while the Earl of Lincoln could gain but \nvery few.  With his small force he tried to make for the town of \nNewark; but the King's army getting between him and that place, he \nhad no choice but to risk a battle at Stoke.  It soon ended in the \ncomplete destruction of the Pretender's forces, one half of whom \nwere killed; among them, the Earl himself.  The priest and the \nbaker's boy were taken prisoners.  The priest, after confessing the \ntrick, was shut up in prison, where he afterwards died - suddenly \nperhaps.  The boy was taken into the King's kitchen and made a \nturnspit.  He was afterwards raised to the station of one of the \nKing's falconers; and so ended this strange imposition.\n\nThere seems reason to suspect that the Dowager Queen - always a \nrestless and busy woman - had had some share in tutoring the \nbaker's son.  The King was very angry with her, whether or no.  He \nseized upon her property, and shut her up in a convent at \nBermondsey.\n\nOne might suppose that the end of this story would have put the \nIrish people on their guard; but they were quite ready to receive a \nsecond impostor, as they had received the first, and that same \ntroublesome Duchess of Burgundy soon gave them the opportunity.  \nAll of a sudden there appeared at Cork, in a vessel arriving from \nPortugal, a young man of excellent abilities, of very handsome \nappearance and most winning manners, who declared himself to be \nRichard, Duke of York, the second son of King Edward the Fourth.  \n'O,' said some, even of those ready Irish believers, 'but surely \nthat young Prince was murdered by his uncle in the Tower!' - 'It IS \nsupposed so,' said the engaging young man; 'and my brother WAS \nkilled in that gloomy prison; but I escaped - it don't matter how, \nat present - and have been wandering about the world for seven long \nyears.'  This explanation being quite satisfactory to numbers of \nthe Irish people, they began again to shout and to hurrah, and to \ndrink his health, and to make the noisy and thirsty demonstrations \nall over again.  And the big chieftain in Dublin began to look out \nfor another coronation, and another young King to be carried home \non his back.\n\nNow, King Henry being then on bad terms with France, the French \nKing, Charles the Eighth, saw that, by pretending to believe in the \nhandsome young man, he could trouble his enemy sorely.  So, he \ninvited him over to the French Court, and appointed him a body-\nguard, and treated him in all respects as if he really were the \nDuke of York.  Peace, however, being soon concluded between the two \nKings, the pretended Duke was turned adrift, and wandered for \nprotection to the Duchess of Burgundy.  She, after feigning to \ninquire into the reality of his claims, declared him to be the very \npicture of her dear departed brother; gave him a body-guard at her \nCourt, of thirty halberdiers; and called him by the sounding name \nof the White Rose of England.\n\nThe leading members of the White Rose party in England sent over an \nagent, named Sir Robert Clifford, to ascertain whether the White \nRose's claims were good:  the King also sent over his agents to \ninquire into the Rose's history.  The White Roses declared the \nyoung man to be really the Duke of York; the King declared him to \nbe PERKIN WARBECK, the son of a merchant of the city of Tournay, \nwho had acquired his knowledge of England, its language and \nmanners, from the English merchants who traded in Flanders; it was \nalso stated by the Royal agents that he had been in the service of \nLady Brompton, the wife of an exiled English nobleman, and that the \nDuchess of Burgundy had caused him to be trained and taught, \nexpressly for this deception.  The King then required the Archduke \nPhilip - who was the sovereign of Burgundy - to banish this new \nPretender, or to deliver him up; but, as the Archduke replied that \nhe could not control the Duchess in her own land, the King, in \nrevenge, took the market of English cloth away from Antwerp, and \nprevented all commercial intercourse between the two countries.\n\nHe also, by arts and bribes, prevailed on Sir Robert Clifford to \nbetray his employers; and he denouncing several famous English \nnoblemen as being secretly the friends of Perkin Warbeck, the King \nhad three of the foremost executed at once.  Whether he pardoned \nthe remainder because they were poor, I do not know; but it is only \ntoo probable that he refused to pardon one famous nobleman against \nwhom the same Clifford soon afterwards informed separately, because \nhe was rich.  This was no other than Sir William Stanley, who had \nsaved the King's life at the battle of Bosworth Field.  It is very \ndoubtful whether his treason amounted to much more than his having \nsaid, that if he were sure the young man was the Duke of York, he \nwould not take arms against him.  Whatever he had done he admitted, \nlike an honourable spirit; and he lost his head for it, and the \ncovetous King gained all his wealth.\n\nPerkin Warbeck kept quiet for three years; but, as the Flemings \nbegan to complain heavily of the loss of their trade by the \nstoppage of the Antwerp market on his account, and as it was not \nunlikely that they might even go so far as to take his life, or \ngive him up, he found it necessary to do something.  Accordingly he \nmade a desperate sally, and landed, with only a few hundred men, on \nthe coast of Deal.  But he was soon glad to get back to the place \nfrom whence he came; for the country people rose against his \nfollowers, killed a great many, and took a hundred and fifty \nprisoners:  who were all driven to London, tied together with \nropes, like a team of cattle.  Every one of them was hanged on some \npart or other of the sea-shore; in order, that if any more men \nshould come over with Perkin Warbeck, they might see the bodies as \na warning before they landed.\n\nThen the wary King, by making a treaty of commerce with the \nFlemings, drove Perkin Warbeck out of that country; and, by \ncompletely gaining over the Irish to his side, deprived him of that \nasylum too.  He wandered away to Scotland, and told his story at \nthat Court.  King James the Fourth of Scotland, who was no friend \nto King Henry, and had no reason to be (for King Henry had bribed \nhis Scotch lords to betray him more than once; but had never \nsucceeded in his plots), gave him a great reception, called him his \ncousin, and gave him in marriage the Lady Catherine Gordon, a \nbeautiful and charming creature related to the royal house of \nStuart.\n\nAlarmed by this successful reappearance of the Pretender, the King \nstill undermined, and bought, and bribed, and kept his doings and \nPerkin Warbeck's story in the dark, when he might, one would \nimagine, have rendered the matter clear to all England.  But, for \nall this bribing of the Scotch lords at the Scotch King's Court, he \ncould not procure the Pretender to be delivered up to him.  James, \nthough not very particular in many respects, would not betray him; \nand the ever-busy Duchess of Burgundy so provided him with arms, \nand good soldiers, and with money besides, that he had soon a \nlittle army of fifteen hundred men of various nations.  With these, \nand aided by the Scottish King in person, he crossed the border \ninto England, and made a proclamation to the people, in which he \ncalled the King 'Henry Tudor;' offered large rewards to any who \nshould take or distress him; and announced himself as King Richard \nthe Fourth come to receive the homage of his faithful subjects.  \nHis faithful subjects, however, cared nothing for him, and hated \nhis faithful troops:  who, being of different nations, quarrelled \nalso among themselves.  Worse than this, if worse were possible, \nthey began to plunder the country; upon which the White Rose said, \nthat he would rather lose his rights, than gain them through the \nmiseries of the English people.  The Scottish King made a jest of \nhis scruples; but they and their whole force went back again \nwithout fighting a battle.\n\nThe worst consequence of this attempt was, that a rising took place \namong the people of Cornwall, who considered themselves too heavily \ntaxed to meet the charges of the expected war.  Stimulated by \nFlammock, a lawyer, and Joseph, a blacksmith, and joined by Lord \nAudley and some other country gentlemen, they marched on all the \nway to Deptford Bridge, where they fought a battle with the King's \narmy.  They were defeated - though the Cornish men fought with \ngreat bravery - and the lord was beheaded, and the lawyer and the \nblacksmith were hanged, drawn, and quartered.  The rest were \npardoned.  The King, who believed every man to be as avaricious as \nhimself, and thought that money could settle anything, allowed them \nto make bargains for their liberty with the soldiers who had taken \nthem.\n\nPerkin Warbeck, doomed to wander up and down, and never to find \nrest anywhere - a sad fate:  almost a sufficient punishment for an \nimposture, which he seems in time to have half believed himself - \nlost his Scottish refuge through a truce being made between the two \nKings; and found himself, once more, without a country before him \nin which he could lay his head.  But James (always honourable and \ntrue to him, alike when he melted down his plate, and even the \ngreat gold chain he had been used to wear, to pay soldiers in his \ncause; and now, when that cause was lost and hopeless) did not \nconclude the treaty, until he had safely departed out of the \nScottish dominions.  He, and his beautiful wife, who was faithful \nto him under all reverses, and left her state and home to follow \nhis poor fortunes, were put aboard ship with everything necessary \nfor their comfort and protection, and sailed for Ireland.\n\nBut, the Irish people had had enough of counterfeit Earls of \nWarwick and Dukes of York, for one while; and would give the White \nRose no aid.  So, the White Rose - encircled by thorns indeed - \nresolved to go with his beautiful wife to Cornwall as a forlorn \nresource, and see what might be made of the Cornish men, who had \nrisen so valiantly a little while before, and who had fought so \nbravely at Deptford Bridge.\n\nTo Whitsand Bay, in Cornwall, accordingly, came Perkin Warbeck and \nhis wife; and the lovely lady he shut up for safety in the Castle \nof St. Michael's Mount, and then marched into Devonshire at the \nhead of three thousand Cornishmen.  These were increased to six \nthousand by the time of his arrival in Exeter; but, there the \npeople made a stout resistance, and he went on to Taunton, where he \ncame in sight of the King's army.  The stout Cornish men, although \nthey were few in number, and badly armed, were so bold, that they \nnever thought of retreating; but bravely looked forward to a battle \non the morrow.  Unhappily for them, the man who was possessed of so \nmany engaging qualities, and who attracted so many people to his \nside when he had nothing else with which to tempt them, was not as \nbrave as they.  In the night, when the two armies lay opposite to \neach other, he mounted a swift horse and fled.  When morning \ndawned, the poor confiding Cornish men, discovering that they had \nno leader, surrendered to the King's power.  Some of them were \nhanged, and the rest were pardoned and went miserably home.\n\nBefore the King pursued Perkin Warbeck to the sanctuary of Beaulieu \nin the New Forest, where it was soon known that he had taken \nrefuge, he sent a body of horsemen to St. Michael's Mount, to seize \nhis wife.  She was soon taken and brought as a captive before the \nKing.  But she was so beautiful, and so good, and so devoted to the \nman in whom she believed, that the King regarded her with \ncompassion, treated her with great respect, and placed her at \nCourt, near the Queen's person.  And many years after Perkin \nWarbeck was no more, and when his strange story had become like a \nnursery tale, SHE was called the White Rose, by the people, in \nremembrance of her beauty.\n\nThe sanctuary at Beaulieu was soon surrounded by the King's men; \nand the King, pursuing his usual dark, artful ways, sent pretended \nfriends to Perkin Warbeck to persuade him to come out and surrender \nhimself.  This he soon did; the King having taken a good look at \nthe man of whom he had heard so much - from behind a screen - \ndirected him to be well mounted, and to ride behind him at a little \ndistance, guarded, but not bound in any way.  So they entered \nLondon with the King's favourite show - a procession; and some of \nthe people hooted as the Pretender rode slowly through the streets \nto the Tower; but the greater part were quiet, and very curious to \nsee him.  From the Tower, he was taken to the Palace at \nWestminster, and there lodged like a gentleman, though closely \nwatched.  He was examined every now and then as to his imposture; \nbut the King was so secret in all he did, that even then he gave it \na consequence, which it cannot be supposed to have in itself \ndeserved.\n\nAt last Perkin Warbeck ran away, and took refuge in another \nsanctuary near Richmond in Surrey.  From this he was again \npersuaded to deliver himself up; and, being conveyed to London, he \nstood in the stocks for a whole day, outside Westminster Hall, and \nthere read a paper purporting to be his full confession, and \nrelating his history as the King's agents had originally described \nit.  He was then shut up in the Tower again, in the company of the \nEarl of Warwick, who had now been there for fourteen years:  ever \nsince his removal out of Yorkshire, except when the King had had \nhim at Court, and had shown him to the people, to prove the \nimposture of the Baker's boy.  It is but too probable, when we \nconsider the crafty character of Henry the Seventh, that these two \nwere brought together for a cruel purpose.  A plot was soon \ndiscovered between them and the keepers, to murder the Governor, \nget possession of the keys, and proclaim Perkin Warbeck as King \nRichard the Fourth.  That there was some such plot, is likely; that \nthey were tempted into it, is at least as likely; that the \nunfortunate Earl of Warwick - last male of the Plantagenet line - \nwas too unused to the world, and too ignorant and simple to know \nmuch about it, whatever it was, is perfectly certain; and that it \nwas the King's interest to get rid of him, is no less so.  He was \nbeheaded on Tower Hill, and Perkin Warbeck was hanged at Tyburn.\n\nSuch was the end of the pretended Duke of York, whose shadowy \nhistory was made more shadowy - and ever will be - by the mystery \nand craft of the King.  If he had turned his great natural \nadvantages to a more honest account, he might have lived a happy \nand respected life, even in those days.  But he died upon a gallows \nat Tyburn, leaving the Scottish lady, who had loved him so well, \nkindly protected at the Queen's Court.  After some time she forgot \nher old loves and troubles, as many people do with Time's merciful \nassistance, and married a Welsh gentleman.  Her second husband, SIR \nMATTHEW CRADOC, more honest and more happy than her first, lies \nbeside her in a tomb in the old church of Swansea.\n\nThe ill-blood between France and England in this reign, arose out \nof the continued plotting of the Duchess of Burgundy, and disputes \nrespecting the affairs of Brittany.  The King feigned to be very \npatriotic, indignant, and warlike; but he always contrived so as \nnever to make war in reality, and always to make money.  His \ntaxation of the people, on pretence of war with France, involved, \nat one time, a very dangerous insurrection, headed by Sir John \nEgremont, and a common man called John a Chambre.  But it was \nsubdued by the royal forces, under the command of the Earl of \nSurrey.  The knighted John escaped to the Duchess of Burgundy, who \nwas ever ready to receive any one who gave the King trouble; and \nthe plain John was hanged at York, in the midst of a number of his \nmen, but on a much higher gibbet, as being a greater traitor.  Hung \nhigh or hung low, however, hanging is much the same to the person \nhung.\n\nWithin a year after her marriage, the Queen had given birth to a \nson, who was called Prince Arthur, in remembrance of the old \nBritish prince of romance and story; and who, when all these events \nhad happened, being then in his fifteenth year, was married to \nCATHERINE, the daughter of the Spanish monarch, with great \nrejoicings and bright prospects; but in a very few months he \nsickened and died.  As soon as the King had recovered from his \ngrief, he thought it a pity that the fortune of the Spanish \nPrincess, amounting to two hundred thousand crowns, should go out \nof the family; and therefore arranged that the young widow should \nmarry his second son HENRY, then twelve years of age, when he too \nshould be fifteen.  There were objections to this marriage on the \npart of the clergy; but, as the infallible Pope was gained over, \nand, as he MUST be right, that settled the business for the time.  \nThe King's eldest daughter was provided for, and a long course of \ndisturbance was considered to be set at rest, by her being married \nto the Scottish King.\n\nAnd now the Queen died.  When the King had got over that grief too, \nhis mind once more reverted to his darling money for consolation, \nand he thought of marrying the Dowager Queen of Naples, who was \nimmensely rich:  but, as it turned out not to be practicable to \ngain the money however practicable it might have been to gain the \nlady, he gave up the idea.  He was not so fond of her but that he \nsoon proposed to marry the Dowager Duchess of Savoy; and, soon \nafterwards, the widow of the King of Castile, who was raving mad.  \nBut he made a money-bargain instead, and married neither.\n\nThe Duchess of Burgundy, among the other discontented people to \nwhom she had given refuge, had sheltered EDMUND DE LA POLE (younger \nbrother of that Earl of Lincoln who was killed at Stoke), now Earl \nof Suffolk.  The King had prevailed upon him to return to the \nmarriage of Prince Arthur; but, he soon afterwards went away again; \nand then the King, suspecting a conspiracy, resorted to his \nfavourite plan of sending him some treacherous friends, and buying \nof those scoundrels the secrets they disclosed or invented.  Some \narrests and executions took place in consequence.  In the end, the \nKing, on a promise of not taking his life, obtained possession of \nthe person of Edmund de la Pole, and shut him up in the Tower.\n\nThis was his last enemy.  If he had lived much longer he would have \nmade many more among the people, by the grinding exaction to which \nhe constantly exposed them, and by the tyrannical acts of his two \nprime favourites in all money-raising matters, EDMUND DUDLEY and \nRICHARD EMPSON.  But Death - the enemy who is not to be bought off \nor deceived, and on whom no money, and no treachery has any effect \n- presented himself at this juncture, and ended the King's reign.  \nHe died of the gout, on the twenty-second of April, one thousand \nfive hundred and nine, and in the fifty-third year of his age, \nafter reigning twenty-four years; he was buried in the beautiful \nChapel of Westminster Abbey, which he had himself founded, and \nwhich still bears his name.\n\nIt was in this reign that the great CHRISTOPHER COLUMBUS, on behalf \nof Spain, discovered what was then called The New World.  Great \nwonder, interest, and hope of wealth being awakened in England \nthereby, the King and the merchants of London and Bristol fitted \nout an English expedition for further discoveries in the New World, \nand entrusted it to SEBASTIAN CABOT, of Bristol, the son of a \nVenetian pilot there.  He was very successful in his voyage, and \ngained high reputation, both for himself and England.\n\n\n\nCHAPTER XXVII - ENGLAND UNDER HENRY THE EIGHTH, CALLED BLUFF KING \nHAL AND BURLY KING HARRY\n\n\n\nPART THE FIRST\n\n\nWE now come to King Henry the Eighth, whom it has been too much the \nfashion to call 'Bluff King Hal,' and 'Burly King Harry,' and other \nfine names; but whom I shall take the liberty to call, plainly, one \nof the most detestable villains that ever drew breath.  You will be \nable to judge, long before we come to the end of his life, whether \nhe deserves the character.\n\nHe was just eighteen years of age when he came to the throne.  \nPeople said he was handsome then; but I don't believe it.  He was a \nbig, burly, noisy, small-eyed, large-faced, double-chinned, \nswinish-looking fellow in later life (as we know from the \nlikenesses of him, painted by the famous HANS HOLBEIN), and it is \nnot easy to believe that so bad a character can ever have been \nveiled under a prepossessing appearance.\n\nHe was anxious to make himself popular; and the people, who had \nlong disliked the late King, were very willing to believe that he \ndeserved to be so.  He was extremely fond of show and display, and \nso were they.  Therefore there was great rejoicing when he married \nthe Princess Catherine, and when they were both crowned.  And the \nKing fought at tournaments and always came off victorious - for the \ncourtiers took care of that - and there was a general outcry that \nhe was a wonderful man.  Empson, Dudley, and their supporters were \naccused of a variety of crimes they had never committed, instead of \nthe offences of which they really had been guilty; and they were \npilloried, and set upon horses with their faces to the tails, and \nknocked about and beheaded, to the satisfaction of the people, and \nthe enrichment of the King.\n\nThe Pope, so indefatigable in getting the world into trouble, had \nmixed himself up in a war on the continent of Europe, occasioned by \nthe reigning Princes of little quarrelling states in Italy having \nat various times married into other Royal families, and so led to \nTHEIR claiming a share in those petty Governments.  The King, who \ndiscovered that he was very fond of the Pope, sent a herald to the \nKing of France, to say that he must not make war upon that holy \npersonage, because he was the father of all Christians.  As the \nFrench King did not mind this relationship in the least, and also \nrefused to admit a claim King Henry made to certain lands in \nFrance, war was declared between the two countries.  Not to perplex \nthis story with an account of the tricks and designs of all the \nsovereigns who were engaged in it, it is enough to say that England \nmade a blundering alliance with Spain, and got stupidly taken in by \nthat country; which made its own terms with France when it could \nand left England in the lurch.  SIR EDWARD HOWARD, a bold admiral, \nson of the Earl of Surrey, distinguished himself by his bravery \nagainst the French in this business; but, unfortunately, he was \nmore brave than wise, for, skimming into the French harbour of \nBrest with only a few row-boats, he attempted (in revenge for the \ndefeat and death of SIR THOMAS KNYVETT, another bold English \nadmiral) to take some strong French ships, well defended with \nbatteries of cannon.  The upshot was, that he was left on board of \none of them (in consequence of its shooting away from his own \nboat), with not more than about a dozen men, and was thrown into \nthe sea and drowned:  though not until he had taken from his breast \nhis gold chain and gold whistle, which were the signs of his \noffice, and had cast them into the sea to prevent their being made \na boast of by the enemy.  After this defeat - which was a great \none, for Sir Edward Howard was a man of valour and fame - the King \ntook it into his head to invade France in person; first executing \nthat dangerous Earl of Suffolk whom his father had left in the \nTower, and appointing Queen Catherine to the charge of his kingdom \nin his absence.  He sailed to Calais, where he was joined by \nMAXIMILIAN, Emperor of Germany, who pretended to be his soldier, \nand who took pay in his service:  with a good deal of nonsense of \nthat sort, flattering enough to the vanity of a vain blusterer.  \nThe King might be successful enough in sham fights; but his idea of \nreal battles chiefly consisted in pitching silken tents of bright \ncolours that were ignominiously blown down by the wind, and in \nmaking a vast display of gaudy flags and golden curtains.  Fortune, \nhowever, favoured him better than he deserved; for, after much \nwaste of time in tent pitching, flag flying, gold curtaining, and \nother such masquerading, he gave the French battle at a place \ncalled Guinegate:  where they took such an unaccountable panic, and \nfled with such swiftness, that it was ever afterwards called by the \nEnglish the Battle of Spurs.  Instead of following up his \nadvantage, the King, finding that he had had enough of real \nfighting, came home again.\n\nThe Scottish King, though nearly related to Henry by marriage, had \ntaken part against him in this war.  The Earl of Surrey, as the \nEnglish general, advanced to meet him when he came out of his own \ndominions and crossed the river Tweed.  The two armies came up with \none another when the Scottish King had also crossed the river Till, \nand was encamped upon the last of the Cheviot Hills, called the \nHill of Flodden.  Along the plain below it, the English, when the \nhour of battle came, advanced.  The Scottish army, which had been \ndrawn up in five great bodies, then came steadily down in perfect \nsilence.  So they, in their turn, advanced to meet the English \narmy, which came on in one long line; and they attacked it with a \nbody of spearmen, under LORD HOME.  At first they had the best of \nit; but the English recovered themselves so bravely, and fought \nwith such valour, that, when the Scottish King had almost made his \nway up to the Royal Standard, he was slain, and the whole Scottish \npower routed.  Ten thousand Scottish men lay dead that day on \nFlodden Field; and among them, numbers of the nobility and gentry.  \nFor a long time afterwards, the Scottish peasantry used to believe \nthat their King had not been really killed in this battle, because \nno Englishman had found an iron belt he wore about his body as a \npenance for having been an unnatural and undutiful son.  But, \nwhatever became of his belt, the English had his sword and dagger, \nand the ring from his finger, and his body too, covered with \nwounds.  There is no doubt of it; for it was seen and recognised by \nEnglish gentlemen who had known the Scottish King well.\n\nWhen King Henry was making ready to renew the war in France, the \nFrench King was contemplating peace.  His queen, dying at this \ntime, he proposed, though he was upwards of fifty years old, to \nmarry King Henry's sister, the Princess Mary, who, besides being \nonly sixteen, was betrothed to the Duke of Suffolk.  As the \ninclinations of young Princesses were not much considered in such \nmatters, the marriage was concluded, and the poor girl was escorted \nto France, where she was immediately left as the French King's \nbride, with only one of all her English attendants.  That one was a \npretty young girl named ANNE BOLEYN, niece of the Earl of Surrey, \nwho had been made Duke of Norfolk, after the victory of Flodden \nField.  Anne Boleyn's is a name to be remembered, as you will \npresently find.\n\nAnd now the French King, who was very proud of his young wife, was \npreparing for many years of happiness, and she was looking forward, \nI dare say, to many years of misery, when he died within three \nmonths, and left her a young widow.  The new French monarch, \nFRANCIS THE FIRST, seeing how important it was to his interests \nthat she should take for her second husband no one but an \nEnglishman, advised her first lover, the Duke of Suffolk, when King \nHenry sent him over to France to fetch her home, to marry her.  The \nPrincess being herself so fond of that Duke, as to tell him that he \nmust either do so then, or for ever lose her, they were wedded; and \nHenry afterwards forgave them.  In making interest with the King, \nthe Duke of Suffolk had addressed his most powerful favourite and \nadviser, THOMAS WOLSEY - a name very famous in history for its rise \nand downfall.\n\nWolsey was the son of a respectable butcher at Ipswich, in Suffolk \nand received so excellent an education that he became a tutor to \nthe family of the Marquis of Dorset, who afterwards got him \nappointed one of the late King's chaplains.  On the accession of \nHenry the Eighth, he was promoted and taken into great favour.  He \nwas now Archbishop of York; the Pope had made him a Cardinal \nbesides; and whoever wanted influence in England or favour with the \nKing - whether he were a foreign monarch or an English nobleman - \nwas obliged to make a friend of the great Cardinal Wolsey.\n\nHe was a gay man, who could dance and jest, and sing and drink; and \nthose were the roads to so much, or rather so little, of a heart as \nKing Henry had.  He was wonderfully fond of pomp and glitter, and \nso was the King.  He knew a good deal of the Church learning of \nthat time; much of which consisted in finding artful excuses and \npretences for almost any wrong thing, and in arguing that black was \nwhite, or any other colour.  This kind of learning pleased the King \ntoo.  For many such reasons, the Cardinal was high in estimation \nwith the King; and, being a man of far greater ability, knew as \nwell how to manage him, as a clever keeper may know how to manage a \nwolf or a tiger, or any other cruel and uncertain beast, that may \nturn upon him and tear him any day.  Never had there been seen in \nEngland such state as my Lord Cardinal kept.  His wealth was \nenormous; equal, it was reckoned, to the riches of the Crown.  His \npalaces were as splendid as the King's, and his retinue was eight \nhundred strong.  He held his Court, dressed out from top to toe in \nflaming scarlet; and his very shoes were golden, set with precious \nstones.  His followers rode on blood horses; while he, with a \nwonderful affectation of humility in the midst of his great \nsplendour, ambled on a mule with a red velvet saddle and bridle and \ngolden stirrups.\n\nThrough the influence of this stately priest, a grand meeting was \narranged to take place between the French and English Kings in \nFrance; but on ground belonging to England.  A prodigious show of \nfriendship and rejoicing was to be made on the occasion; and \nheralds were sent to proclaim with brazen trumpets through all the \nprincipal cities of Europe, that, on a certain day, the Kings of \nFrance and England, as companions and brothers in arms, each \nattended by eighteen followers, would hold a tournament against all \nknights who might choose to come.\n\nCHARLES, the new Emperor of Germany (the old one being dead), \nwanted to prevent too cordial an alliance between these sovereigns, \nand came over to England before the King could repair to the place \nof meeting; and, besides making an agreeable impression upon him, \nsecured Wolsey's interest by promising that his influence should \nmake him Pope when the next vacancy occurred.  On the day when the \nEmperor left England, the King and all the Court went over to \nCalais, and thence to the place of meeting, between Ardres and \nGuisnes, commonly called the Field of the Cloth of Gold.  Here, all \nmanner of expense and prodigality was lavished on the decorations \nof the show; many of the knights and gentlemen being so superbly \ndressed that it was said they carried their whole estates upon \ntheir shoulders.\n\nThere were sham castles, temporary chapels, fountains running wine, \ngreat cellars full of wine free as water to all comers, silk tents, \ngold lace and foil, gilt lions, and such things without end; and, \nin the midst of all, the rich Cardinal out-shone and out-glittered \nall the noblemen and gentlemen assembled.  After a treaty made \nbetween the two Kings with as much solemnity as if they had \nintended to keep it, the lists - nine hundred feet long, and three \nhundred and twenty broad - were opened for the tournament; the \nQueens of France and England looking on with great array of lords \nand ladies.  Then, for ten days, the two sovereigns fought five \ncombats every day, and always beat their polite adversaries; though \nthey DO write that the King of England, being thrown in a wrestle \none day by the King of France, lost his kingly temper with his \nbrother-in-arms, and wanted to make a quarrel of it.  Then, there \nis a great story belonging to this Field of the Cloth of Gold, \nshowing how the English were distrustful of the French, and the \nFrench of the English, until Francis rode alone one morning to \nHenry's tent; and, going in before he was out of bed, told him in \njoke that he was his prisoner; and how Henry jumped out of bed and \nembraced Francis; and how Francis helped Henry to dress, and warmed \nhis linen for him; and how Henry gave Francis a splendid jewelled \ncollar, and how Francis gave Henry, in return, a costly bracelet.  \nAll this and a great deal more was so written about, and sung \nabout, and talked about at that time (and, indeed, since that time \ntoo), that the world has had good cause to be sick of it, for ever.\n\nOf course, nothing came of all these fine doings but a speedy \nrenewal of the war between England and France, in which the two \nRoyal companions and brothers in arms longed very earnestly to \ndamage one another.  But, before it broke out again, the Duke of \nBuckingham was shamefully executed on Tower Hill, on the evidence \nof a discharged servant - really for nothing, except the folly of \nhaving believed in a friar of the name of HOPKINS, who had \npretended to be a prophet, and who had mumbled and jumbled out some \nnonsense about the Duke's son being destined to be very great in \nthe land.  It was believed that the unfortunate Duke had given \noffence to the great Cardinal by expressing his mind freely about \nthe expense and absurdity of the whole business of the Field of the \nCloth of Gold.  At any rate, he was beheaded, as I have said, for \nnothing.  And the people who saw it done were very angry, and cried \nout that it was the work of 'the butcher's son!'\n\nThe new war was a short one, though the Earl of Surrey invaded \nFrance again, and did some injury to that country.  It ended in \nanother treaty of peace between the two kingdoms, and in the \ndiscovery that the Emperor of Germany was not such a good friend to \nEngland in reality, as he pretended to be.  Neither did he keep his \npromise to Wolsey to make him Pope, though the King urged him.  Two \nPopes died in pretty quick succession; but the foreign priests were \ntoo much for the Cardinal, and kept him out of the post.  So the \nCardinal and King together found out that the Emperor of Germany \nwas not a man to keep faith with; broke off a projected marriage \nbetween the King's daughter MARY, Princess of Wales, and that \nsovereign; and began to consider whether it might not be well to \nmarry the young lady, either to Francis himself, or to his eldest \nson.\n\nThere now arose at Wittemberg, in Germany, the great leader of the \nmighty change in England which is called The Reformation, and which \nset the people free from their slavery to the priests.  This was a \nlearned Doctor, named MARTIN LUTHER, who knew all about them, for \nhe had been a priest, and even a monk, himself.  The preaching and \nwriting of Wickliffe had set a number of men thinking on this \nsubject; and Luther, finding one day to his great surprise, that \nthere really was a book called the New Testament which the priests \ndid not allow to be read, and which contained truths that they \nsuppressed, began to be very vigorous against the whole body, from \nthe Pope downward.  It happened, while he was yet only beginning \nhis vast work of awakening the nation, that an impudent fellow \nnamed TETZEL, a friar of very bad character, came into his \nneighbourhood selling what were called Indulgences, by wholesale, \nto raise money for beautifying the great Cathedral of St. Peter's, \nat Rome.  Whoever bought an Indulgence of the Pope was supposed to \nbuy himself off from the punishment of Heaven for his offences.  \nLuther told the people that these Indulgences were worthless bits \nof paper, before God, and that Tetzel and his masters were a crew \nof impostors in selling them.\n\nThe King and the Cardinal were mightily indignant at this \npresumption; and the King (with the help of SIR THOMAS MORE, a wise \nman, whom he afterwards repaid by striking off his head) even wrote \na book about it, with which the Pope was so well pleased that he \ngave the King the title of Defender of the Faith.  The King and the \nCardinal also issued flaming warnings to the people not to read \nLuther's books, on pain of excommunication.  But they did read them \nfor all that; and the rumour of what was in them spread far and \nwide.\n\nWhen this great change was thus going on, the King began to show \nhimself in his truest and worst colours.  Anne Boleyn, the pretty \nlittle girl who had gone abroad to France with his sister, was by \nthis time grown up to be very beautiful, and was one of the ladies \nin attendance on Queen Catherine.  Now, Queen Catherine was no \nlonger young or handsome, and it is likely that she was not \nparticularly good-tempered; having been always rather melancholy, \nand having been made more so by the deaths of four of her children \nwhen they were very young.  So, the King fell in love with the fair \nAnne Boleyn, and said to himself, 'How can I be best rid of my own \ntroublesome wife whom I am tired of, and marry Anne?'\n\nYou recollect that Queen Catherine had been the wife of Henry's \nbrother.  What does the King do, after thinking it over, but calls \nhis favourite priests about him, and says, O! his mind is in such a \ndreadful state, and he is so frightfully uneasy, because he is \nafraid it was not lawful for him to marry the Queen!  Not one of \nthose priests had the courage to hint that it was rather curious he \nhad never thought of that before, and that his mind seemed to have \nbeen in a tolerably jolly condition during a great many years, in \nwhich he certainly had not fretted himself thin; but, they all \nsaid, Ah! that was very true, and it was a serious business; and \nperhaps the best way to make it right, would be for his Majesty to \nbe divorced!  The King replied, Yes, he thought that would be the \nbest way, certainly; so they all went to work.\n\nIf I were to relate to you the intrigues and plots that took place \nin the endeavour to get this divorce, you would think the History \nof England the most tiresome book in the world.  So I shall say no \nmore, than that after a vast deal of negotiation and evasion, the \nPope issued a commission to Cardinal Wolsey and CARDINAL CAMPEGGIO \n(whom he sent over from Italy for the purpose), to try the whole \ncase in England.  It is supposed - and I think with reason - that \nWolsey was the Queen's enemy, because she had reproved him for his \nproud and gorgeous manner of life.  But, he did not at first know \nthat the King wanted to marry Anne Boleyn; and when he did know it, \nhe even went down on his knees, in the endeavour to dissuade him.\n\nThe Cardinals opened their court in the Convent of the Black \nFriars, near to where the bridge of that name in London now stands; \nand the King and Queen, that they might be near it, took up their \nlodgings at the adjoining palace of Bridewell, of which nothing now \nremains but a bad prison.  On the opening of the court, when the \nKing and Queen were called on to appear, that poor ill-used lady, \nwith a dignity and firmness and yet with a womanly affection worthy \nto be always admired, went and kneeled at the King's feet, and said \nthat she had come, a stranger, to his dominions; that she had been \na good and true wife to him for twenty years; and that she could \nacknowledge no power in those Cardinals to try whether she should \nbe considered his wife after all that time, or should be put away.  \nWith that, she got up and left the court, and would never \nafterwards come back to it.\n\nThe King pretended to be very much overcome, and said, O! my lords \nand gentlemen, what a good woman she was to be sure, and how \ndelighted he would be to live with her unto death, but for that \nterrible uneasiness in his mind which was quite wearing him away!  \nSo, the case went on, and there was nothing but talk for two \nmonths.  Then Cardinal Campeggio, who, on behalf of the Pope, \nwanted nothing so much as delay, adjourned it for two more months; \nand before that time was elapsed, the Pope himself adjourned it \nindefinitely, by requiring the King and Queen to come to Rome and \nhave it tried there.  But by good luck for the King, word was \nbrought to him by some of his people, that they had happened to \nmeet at supper, THOMAS CRANMER, a learned Doctor of Cambridge, who \nhad proposed to urge the Pope on, by referring the case to all the \nlearned doctors and bishops, here and there and everywhere, and \ngetting their opinions that the King's marriage was unlawful.  The \nKing, who was now in a hurry to marry Anne Boleyn, thought this \nsuch a good idea, that he sent for Cranmer, post haste, and said to \nLORD ROCHFORT, Anne Boleyn's father, 'Take this learned Doctor down \nto your country-house, and there let him have a good room for a \nstudy, and no end of books out of which to prove that I may marry \nyour daughter.'  Lord Rochfort, not at all reluctant, made the \nlearned Doctor as comfortable as he could; and the learned Doctor \nwent to work to prove his case.  All this time, the King and Anne \nBoleyn were writing letters to one another almost daily, full of \nimpatience to have the case settled; and Anne Boleyn was showing \nherself (as I think) very worthy of the fate which afterwards befel \nher.\n\nIt was bad for Cardinal Wolsey that he had left Cranmer to render \nthis help.  It was worse for him that he had tried to dissuade the \nKing from marrying Anne Boleyn.  Such a servant as he, to such a \nmaster as Henry, would probably have fallen in any case; but, \nbetween the hatred of the party of the Queen that was, and the \nhatred of the party of the Queen that was to be, he fell suddenly \nand heavily.  Going down one day to the Court of Chancery, where he \nnow presided, he was waited upon by the Dukes of Norfolk and \nSuffolk, who told him that they brought an order to him to resign \nthat office, and to withdraw quietly to a house he had at Esher, in \nSurrey.  The Cardinal refusing, they rode off to the King; and next \nday came back with a letter from him, on reading which, the \nCardinal submitted.  An inventory was made out of all the riches in \nhis palace at York Place (now Whitehall), and he went sorrowfully \nup the river, in his barge, to Putney.  An abject man he was, in \nspite of his pride; for being overtaken, riding out of that place \ntowards Esher, by one of the King's chamberlains who brought him a \nkind message and a ring, he alighted from his mule, took off his \ncap, and kneeled down in the dirt.  His poor Fool, whom in his \nprosperous days he had always kept in his palace to entertain him, \ncut a far better figure than he; for, when the Cardinal said to the \nchamberlain that he had nothing to send to his lord the King as a \npresent, but that jester who was a most excellent one, it took six \nstrong yeomen to remove the faithful fool from his master.\n\nThe once proud Cardinal was soon further disgraced, and wrote the \nmost abject letters to his vile sovereign; who humbled him one day \nand encouraged him the next, according to his humour, until he was \nat last ordered to go and reside in his diocese of York.  He said \nhe was too poor; but I don't know how he made that out, for he took \na hundred and sixty servants with him, and seventy-two cart-loads \nof furniture, food, and wine.  He remained in that part of the \ncountry for the best part of a year, and showed himself so improved \nby his misfortunes, and was so mild and so conciliating, that he \nwon all hearts.  And indeed, even in his proud days, he had done \nsome magnificent things for learning and education.  At last, he \nwas arrested for high treason; and, coming slowly on his journey \ntowards London, got as far as Leicester.  Arriving at Leicester \nAbbey after dark, and very ill, he said - when the monks came out \nat the gate with lighted torches to receive him - that he had come \nto lay his bones among them.  He had indeed; for he was taken to a \nbed, from which he never rose again.  His last words were, 'Had I \nbut served God as diligently as I have served the King, He would \nnot have given me over, in my grey hairs.  Howbeit, this is my just \nreward for my pains and diligence, not regarding my service to God, \nbut only my duty to my prince.'  The news of his death was quickly \ncarried to the King, who was amusing himself with archery in the \ngarden of the magnificent Palace at Hampton Court, which that very \nWolsey had presented to him.  The greatest emotion his royal mind \ndisplayed at the loss of a servant so faithful and so ruined, was a \nparticular desire to lay hold of fifteen hundred pounds which the \nCardinal was reported to have hidden somewhere.\n\nThe opinions concerning the divorce, of the learned doctors and \nbishops and others, being at last collected, and being generally in \nthe King's favour, were forwarded to the Pope, with an entreaty \nthat he would now grant it.  The unfortunate Pope, who was a timid \nman, was half distracted between his fear of his authority being \nset aside in England if he did not do as he was asked, and his \ndread of offending the Emperor of Germany, who was Queen \nCatherine's nephew.  In this state of mind he still evaded and did \nnothing.  Then, THOMAS CROMWELL, who had been one of Wolsey's \nfaithful attendants, and had remained so even in his decline, \nadvised the King to take the matter into his own hands, and make \nhimself the head of the whole Church.  This, the King by various \nartful means, began to do; but he recompensed the clergy by \nallowing them to burn as many people as they pleased, for holding \nLuther's opinions.  You must understand that Sir Thomas More, the \nwise man who had helped the King with his book, had been made \nChancellor in Wolsey's place.  But, as he was truly attached to the \nChurch as it was even in its abuses, he, in this state of things, \nresigned.\n\nBeing now quite resolved to get rid of Queen Catherine, and to \nmarry Anne Boleyn without more ado, the King made Cranmer \nArchbishop of Canterbury, and directed Queen Catherine to leave the \nCourt.  She obeyed; but replied that wherever she went, she was \nQueen of England still, and would remain so, to the last.  The King \nthen married Anne Boleyn privately; and the new Archbishop of \nCanterbury, within half a year, declared his marriage with Queen \nCatherine void, and crowned Anne Boleyn Queen.\n\nShe might have known that no good could ever come from such wrong, \nand that the corpulent brute who had been so faithless and so cruel \nto his first wife, could be more faithless and more cruel to his \nsecond.  She might have known that, even when he was in love with \nher, he had been a mean and selfish coward, running away, like a \nfrightened cur, from her society and her house, when a dangerous \nsickness broke out in it, and when she might easily have taken it \nand died, as several of the household did.  But, Anne Boleyn \narrived at all this knowledge too late, and bought it at a dear \nprice.  Her bad marriage with a worse man came to its natural end.  \nIts natural end was not, as we shall too soon see, a natural death \nfor her.\n\n\n\nCHAPTER XXVIII - ENGLAND UNDER HENRY THE EIGHTH\n\n\n\nPART THE SECOND\n\n\nTHE Pope was thrown into a very angry state of mind when he heard \nof the King's marriage, and fumed exceedingly.  Many of the English \nmonks and friars, seeing that their order was in danger, did the \nsame; some even declaimed against the King in church before his \nface, and were not to be stopped until he himself roared out \n'Silence!'  The King, not much the worse for this, took it pretty \nquietly; and was very glad when his Queen gave birth to a daughter, \nwho was christened ELIZABETH, and declared Princess of Wales as her \nsister Mary had already been.\n\nOne of the most atrocious features of this reign was that Henry the \nEighth was always trimming between the reformed religion and the \nunreformed one; so that the more he quarrelled with the Pope, the \nmore of his own subjects he roasted alive for not holding the \nPope's opinions.  Thus, an unfortunate student named John Frith, \nand a poor simple tailor named Andrew Hewet who loved him very \nmuch, and said that whatever John Frith believed HE believed, were \nburnt in Smithfield - to show what a capital Christian the King \nwas.\n\nBut, these were speedily followed by two much greater victims, Sir \nThomas More, and John Fisher, the Bishop of Rochester.  The latter, \nwho was a good and amiable old man, had committed no greater \noffence than believing in Elizabeth Barton, called the Maid of Kent \n- another of those ridiculous women who pretended to be inspired, \nand to make all sorts of heavenly revelations, though they indeed \nuttered nothing but evil nonsense.  For this offence - as it was \npretended, but really for denying the King to be the supreme Head \nof the Church - he got into trouble, and was put in prison; but, \neven then, he might have been suffered to die naturally (short work \nhaving been made of executing the Kentish Maid and her principal \nfollowers), but that the Pope, to spite the King, resolved to make \nhim a cardinal.  Upon that the King made a ferocious joke to the \neffect that the Pope might send Fisher a red hat - which is the way \nthey make a cardinal - but he should have no head on which to wear \nit; and he was tried with all unfairness and injustice, and \nsentenced to death.  He died like a noble and virtuous old man, and \nleft a worthy name behind him.  The King supposed, I dare say, that \nSir Thomas More would be frightened by this example; but, as he was \nnot to be easily terrified, and, thoroughly believing in the Pope, \nhad made up his mind that the King was not the rightful Head of the \nChurch, he positively refused to say that he was.  For this crime \nhe too was tried and sentenced, after having been in prison a whole \nyear.  When he was doomed to death, and came away from his trial \nwith the edge of the executioner's axe turned towards him - as was \nalways done in those times when a state prisoner came to that \nhopeless pass - he bore it quite serenely, and gave his blessing to \nhis son, who pressed through the crowd in Westminster Hall and \nkneeled down to receive it.  But, when he got to the Tower Wharf on \nhis way back to his prison, and his favourite daughter, MARGARET \nROPER, a very good woman, rushed through the guards again and \nagain, to kiss him and to weep upon his neck, he was overcome at \nlast.  He soon recovered, and never more showed any feeling but \ncheerfulness and courage.  When he was going up the steps of the \nscaffold to his death, he said jokingly to the Lieutenant of the \nTower, observing that they were weak and shook beneath his tread, \n'I pray you, master Lieutenant, see me safe up; and, for my coming \ndown, I can shift for myself.'  Also he said to the executioner, \nafter he had laid his head upon the block, 'Let me put my beard out \nof the way; for that, at least, has never committed any treason.'  \nThen his head was struck off at a blow.  These two executions were \nworthy of King Henry the Eighth.  Sir Thomas More was one of the \nmost virtuous men in his dominions, and the Bishop was one of his \noldest and truest friends.  But to be a friend of that fellow was \nalmost as dangerous as to be his wife.\n\nWhen the news of these two murders got to Rome, the Pope raged \nagainst the murderer more than ever Pope raged since the world \nbegan, and prepared a Bull, ordering his subjects to take arms \nagainst him and dethrone him.  The King took all possible \nprecautions to keep that document out of his dominions, and set to \nwork in return to suppress a great number of the English \nmonasteries and abbeys.\n\nThis destruction was begun by a body of commissioners, of whom \nCromwell (whom the King had taken into great favour) was the head; \nand was carried on through some few years to its entire completion.  \nThere is no doubt that many of these religious establishments were \nreligious in nothing but in name, and were crammed with lazy, \nindolent, and sensual monks.  There is no doubt that they imposed \nupon the people in every possible way; that they had images moved \nby wires, which they pretended were miraculously moved by Heaven; \nthat they had among them a whole tun measure full of teeth, all \npurporting to have come out of the head of one saint, who must \nindeed have been a very extraordinary person with that enormous \nallowance of grinders; that they had bits of coal which they said \nhad fried Saint Lawrence, and bits of toe-nails which they said \nbelonged to other famous saints; penknives, and boots, and girdles, \nwhich they said belonged to others; and that all these bits of \nrubbish were called Relics, and adored by the ignorant people.  \nBut, on the other hand, there is no doubt either, that the King's \nofficers and men punished the good monks with the bad; did great \ninjustice; demolished many beautiful things and many valuable \nlibraries; destroyed numbers of paintings, stained glass windows, \nfine pavements, and carvings; and that the whole court were \nravenously greedy and rapacious for the division of this great \nspoil among them.  The King seems to have grown almost mad in the \nardour of this pursuit; for he declared Thomas a Becket a traitor, \nthough he had been dead so many years, and had his body dug up out \nof his grave.  He must have been as miraculous as the monks \npretended, if they had told the truth, for he was found with one \nhead on his shoulders, and they had shown another as his undoubted \nand genuine head ever since his death; it had brought them vast \nsums of money, too.  The gold and jewels on his shrine filled two \ngreat chests, and eight men tottered as they carried them away.  \nHow rich the monasteries were you may infer from the fact that, \nwhen they were all suppressed, one hundred and thirty thousand \npounds a year - in those days an immense sum - came to the Crown.\n\nThese things were not done without causing great discontent among \nthe people.  The monks had been good landlords and hospitable \nentertainers of all travellers, and had been accustomed to give \naway a great deal of corn, and fruit, and meat, and other things.  \nIn those days it was difficult to change goods into money, in \nconsequence of the roads being very few and very bad, and the \ncarts, and waggons of the worst description; and they must either \nhave given away some of the good things they possessed in enormous \nquantities, or have suffered them to spoil and moulder.  So, many \nof the people missed what it was more agreeable to get idly than to \nwork for; and the monks who were driven out of their homes and \nwandered about encouraged their discontent; and there were, \nconsequently, great risings in Lincolnshire and Yorkshire.  These \nwere put down by terrific executions, from which the monks \nthemselves did not escape, and the King went on grunting and \ngrowling in his own fat way, like a Royal pig.\n\nI have told all this story of the religious houses at one time, to \nmake it plainer, and to get back to the King's domestic affairs.\n\nThe unfortunate Queen Catherine was by this time dead; and the King \nwas by this time as tired of his second Queen as he had been of his \nfirst.  As he had fallen in love with Anne when she was in the \nservice of Catherine, so he now fell in love with another lady in \nthe service of Anne.  See how wicked deeds are punished, and how \nbitterly and self-reproachfully the Queen must now have thought of \nher own rise to the throne!  The new fancy was a LADY JANE SEYMOUR; \nand the King no sooner set his mind on her, than he resolved to \nhave Anne Boleyn's head.  So, he brought a number of charges \nagainst Anne, accusing her of dreadful crimes which she had never \ncommitted, and implicating in them her own brother and certain \ngentlemen in her service:  among whom one Norris, and Mark Smeaton \na musician, are best remembered.  As the lords and councillors were \nas afraid of the King and as subservient to him as the meanest \npeasant in England was, they brought in Anne Boleyn guilty, and the \nother unfortunate persons accused with her, guilty too.  Those \ngentlemen died like men, with the exception of Smeaton, who had \nbeen tempted by the King into telling lies, which he called \nconfessions, and who had expected to be pardoned; but who, I am \nvery glad to say, was not.  There was then only the Queen to \ndispose of.  She had been surrounded in the Tower with women spies; \nhad been monstrously persecuted and foully slandered; and had \nreceived no justice.  But her spirit rose with her afflictions; \nand, after having in vain tried to soften the King by writing an \naffecting letter to him which still exists, 'from her doleful \nprison in the Tower,' she resigned herself to death.  She said to \nthose about her, very cheerfully, that she had heard say the \nexecutioner was a good one, and that she had a little neck (she \nlaughed and clasped it with her hands as she said that), and would \nsoon be out of her pain.  And she WAS soon out of her pain, poor \ncreature, on the Green inside the Tower, and her body was flung \ninto an old box and put away in the ground under the chapel.\n\nThere is a story that the King sat in his palace listening very \nanxiously for the sound of the cannon which was to announce this \nnew murder; and that, when he heard it come booming on the air, he \nrose up in great spirits and ordered out his dogs to go a-hunting.  \nHe was bad enough to do it; but whether he did it or not, it is \ncertain that he married Jane Seymour the very next day.\n\nI have not much pleasure in recording that she lived just long \nenough to give birth to a son who was christened EDWARD, and then \nto die of a fever:  for, I cannot but think that any woman who \nmarried such a ruffian, and knew what innocent blood was on his \nhands, deserved the axe that would assuredly have fallen on the \nneck of Jane Seymour, if she had lived much longer.\n\nCranmer had done what he could to save some of the Church property \nfor purposes of religion and education; but, the great families had \nbeen so hungry to get hold of it, that very little could be rescued \nfor such objects.  Even MILES COVERDALE, who did the people the \ninestimable service of translating the Bible into English (which \nthe unreformed religion never permitted to be done), was left in \npoverty while the great families clutched the Church lands and \nmoney.  The people had been told that when the Crown came into \npossession of these funds, it would not be necessary to tax them; \nbut they were taxed afresh directly afterwards.  It was fortunate \nfor them, indeed, that so many nobles were so greedy for this \nwealth; since, if it had remained with the Crown, there might have \nbeen no end to tyranny for hundreds of years.  One of the most \nactive writers on the Church's side against the King was a member \nof his own family - a sort of distant cousin, REGINALD POLE by name \n- who attacked him in the most violent manner (though he received a \npension from him all the time), and fought for the Church with his \npen, day and night.  As he was beyond the King's reach - being in \nItaly - the King politely invited him over to discuss the subject; \nbut he, knowing better than to come, and wisely staying where he \nwas, the King's rage fell upon his brother Lord Montague, the \nMarquis of Exeter, and some other gentlemen:  who were tried for \nhigh treason in corresponding with him and aiding him - which they \nprobably did - and were all executed.  The Pope made Reginald Pole \na cardinal; but, so much against his will, that it is thought he \neven aspired in his own mind to the vacant throne of England, and \nhad hopes of marrying the Princess Mary.  His being made a high \npriest, however, put an end to all that.  His mother, the venerable \nCountess of Salisbury - who was, unfortunately for herself, within \nthe tyrant's reach - was the last of his relatives on whom his \nwrath fell.  When she was told to lay her grey head upon the block, \nshe answered the executioner, 'No!  My head never committed \ntreason, and if you want it, you shall seize it.'  So, she ran \nround and round the scaffold with the executioner striking at her, \nand her grey hair bedabbled with blood; and even when they held her \ndown upon the block she moved her head about to the last, resolved \nto be no party to her own barbarous murder.  All this the people \nbore, as they had borne everything else.\n\nIndeed they bore much more; for the slow fires of Smithfield were \ncontinually burning, and people were constantly being roasted to \ndeath - still to show what a good Christian the King was.  He \ndefied the Pope and his Bull, which was now issued, and had come \ninto England; but he burned innumerable people whose only offence \nwas that they differed from the Pope's religious opinions.  There \nwas a wretched man named LAMBERT, among others, who was tried for \nthis before the King, and with whom six bishops argued one after \nanother.  When he was quite exhausted (as well he might be, after \nsix bishops), he threw himself on the King's mercy; but the King \nblustered out that he had no mercy for heretics.  So, HE too fed \nthe fire.\n\nAll this the people bore, and more than all this yet.  The national \nspirit seems to have been banished from the kingdom at this time.  \nThe very people who were executed for treason, the very wives and \nfriends of the 'bluff' King, spoke of him on the scaffold as a good \nprince, and a gentle prince - just as serfs in similar \ncircumstances have been known to do, under the Sultan and Bashaws \nof the East, or under the fierce old tyrants of Russia, who poured \nboiling and freezing water on them alternately, until they died.  \nThe Parliament were as bad as the rest, and gave the King whatever \nhe wanted; among other vile accommodations, they gave him new \npowers of murdering, at his will and pleasure, any one whom he \nmight choose to call a traitor.  But the worst measure they passed \nwas an Act of Six Articles, commonly called at the time 'the whip \nwith six strings;' which punished offences against the Pope's \nopinions, without mercy, and enforced the very worst parts of the \nmonkish religion.  Cranmer would have modified it, if he could; \nbut, being overborne by the Romish party, had not the power.  As \none of the articles declared that priests should not marry, and as \nhe was married himself, he sent his wife and children into Germany, \nand began to tremble at his danger; none the less because he was, \nand had long been, the King's friend.  This whip of six strings was \nmade under the King's own eye.  It should never be forgotten of him \nhow cruelly he supported the worst of the Popish doctrines when \nthere was nothing to be got by opposing them.\n\nThis amiable monarch now thought of taking another wife.  He \nproposed to the French King to have some of the ladies of the \nFrench Court exhibited before him, that he might make his Royal \nchoice; but the French King answered that he would rather not have \nhis ladies trotted out to be shown like horses at a fair.  He \nproposed to the Dowager Duchess of Milan, who replied that she \nmight have thought of such a match if she had had two heads; but, \nthat only owning one, she must beg to keep it safe.  At last \nCromwell represented that there was a Protestant Princess in \nGermany - those who held the reformed religion were called \nProtestants, because their leaders had Protested against the abuses \nand impositions of the unreformed Church - named ANNE OF CLEVES, \nwho was beautiful, and would answer the purpose admirably.  The \nKing said was she a large woman, because he must have a fat wife?  \n'O yes,' said Cromwell; 'she was very large, just the thing.'  On \nhearing this the King sent over his famous painter, Hans Holbein, \nto take her portrait.  Hans made her out to be so good-looking that \nthe King was satisfied, and the marriage was arranged.  But, \nwhether anybody had paid Hans to touch up the picture; or whether \nHans, like one or two other painters, flattered a princess in the \nordinary way of business, I cannot say:  all I know is, that when \nAnne came over and the King went to Rochester to meet her, and \nfirst saw her without her seeing him, he swore she was 'a great \nFlanders mare,' and said he would never marry her.  Being obliged \nto do it now matters had gone so far, he would not give her the \npresents he had prepared, and would never notice her.  He never \nforgave Cromwell his part in the affair.  His downfall dates from \nthat time.\n\nIt was quickened by his enemies, in the interests of the unreformed \nreligion, putting in the King's way, at a state dinner, a niece of \nthe Duke of Norfolk, CATHERINE HOWARD, a young lady of fascinating \nmanners, though small in stature and not particularly beautiful.  \nFalling in love with her on the spot, the King soon divorced Anne \nof Cleves after making her the subject of much brutal talk, on \npretence that she had been previously betrothed to some one else - \nwhich would never do for one of his dignity - and married \nCatherine.  It is probable that on his wedding day, of all days in \nthe year, he sent his faithful Cromwell to the scaffold, and had \nhis head struck off.  He further celebrated the occasion by burning \nat one time, and causing to be drawn to the fire on the same \nhurdles, some Protestant prisoners for denying the Pope's \ndoctrines, and some Roman Catholic prisoners for denying his own \nsupremacy.  Still the people bore it, and not a gentleman in \nEngland raised his hand.\n\nBut, by a just retribution, it soon came out that Catherine Howard, \nbefore her marriage, had been really guilty of such crimes as the \nKing had falsely attributed to his second wife Anne Boleyn; so, \nagain the dreadful axe made the King a widower, and this Queen \npassed away as so many in that reign had passed away before her.  \nAs an appropriate pursuit under the circumstances, Henry then \napplied himself to superintending the composition of a religious \nbook called 'A necessary doctrine for any Christian Man.'  He must \nhave been a little confused in his mind, I think, at about this \nperiod; for he was so false to himself as to be true to some one:  \nthat some one being Cranmer, whom the Duke of Norfolk and others of \nhis enemies tried to ruin; but to whom the King was steadfast, and \nto whom he one night gave his ring, charging him when he should \nfind himself, next day, accused of treason, to show it to the \ncouncil board.  This Cranmer did to the confusion of his enemies.  \nI suppose the King thought he might want him a little longer.\n\nHe married yet once more.  Yes, strange to say, he found in England \nanother woman who would become his wife, and she was CATHERINE \nPARR, widow of Lord Latimer.  She leaned towards the reformed \nreligion; and it is some comfort to know, that she tormented the \nKing considerably by arguing a variety of doctrinal points with him \non all possible occasions.  She had very nearly done this to her \nown destruction.  After one of these conversations the King in a \nvery black mood actually instructed GARDINER, one of his Bishops \nwho favoured the Popish opinions, to draw a bill of accusation \nagainst her, which would have inevitably brought her to the \nscaffold where her predecessors had died, but that one of her \nfriends picked up the paper of instructions which had been dropped \nin the palace, and gave her timely notice.  She fell ill with \nterror; but managed the King so well when he came to entrap her \ninto further statements - by saying that she had only spoken on \nsuch points to divert his mind and to get some information from his \nextraordinary wisdom - that he gave her a kiss and called her his \nsweetheart.  And, when the Chancellor came next day actually to \ntake her to the Tower, the King sent him about his business, and \nhonoured him with the epithets of a beast, a knave, and a fool.  So \nnear was Catherine Parr to the block, and so narrow was her escape!\n\nThere was war with Scotland in this reign, and a short clumsy war \nwith France for favouring Scotland; but, the events at home were so \ndreadful, and leave such an enduring stain on the country, that I \nneed say no more of what happened abroad.\n\nA few more horrors, and this reign is over.  There was a lady, ANNE \nASKEW, in Lincolnshire, who inclined to the Protestant opinions, \nand whose husband being a fierce Catholic, turned her out of his \nhouse.  She came to London, and was considered as offending against \nthe six articles, and was taken to the Tower, and put upon the rack \n- probably because it was hoped that she might, in her agony, \ncriminate some obnoxious persons; if falsely, so much the better.  \nShe was tortured without uttering a cry, until the Lieutenant of \nthe Tower would suffer his men to torture her no more; and then two \npriests who were present actually pulled off their robes, and \nturned the wheels of the rack with their own hands, so rending and \ntwisting and breaking her that she was afterwards carried to the \nfire in a chair.  She was burned with three others, a gentleman, a \nclergyman, and a tailor; and so the world went on.\n\nEither the King became afraid of the power of the Duke of Norfolk, \nand his son the Earl of Surrey, or they gave him some offence, but \nhe resolved to pull THEM down, to follow all the rest who were \ngone.  The son was tried first - of course for nothing - and \ndefended himself bravely; but of course he was found guilty, and of \ncourse he was executed.  Then his father was laid hold of, and left \nfor death too.\n\nBut the King himself was left for death by a Greater King, and the \nearth was to be rid of him at last.  He was now a swollen, hideous \nspectacle, with a great hole in his leg, and so odious to every \nsense that it was dreadful to approach him.  When he was found to \nbe dying, Cranmer was sent for from his palace at Croydon, and came \nwith all speed, but found him speechless.  Happily, in that hour he \nperished.  He was in the fifty-sixth year of his age, and the \nthirty-eighth of his reign.\n\nHenry the Eighth has been favoured by some Protestant writers, \nbecause the Reformation was achieved in his time.  But the mighty \nmerit of it lies with other men and not with him; and it can be \nrendered none the worse by this monster's crimes, and none the \nbetter by any defence of them.  The plain truth is, that he was a \nmost intolerable ruffian, a disgrace to human nature, and a blot of \nblood and grease upon the History of England.\n\n\n\nCHAPTER XXIX - ENGLAND UNDER EDWARD THE SIXTH\n\n\n\nHENRY THE EIGHTH had made a will, appointing a council of sixteen \nto govern the kingdom for his son while he was under age (he was \nnow only ten years old), and another council of twelve to help \nthem.  The most powerful of the first council was the EARL OF \nHERTFORD, the young King's uncle, who lost no time in bringing his \nnephew with great state up to Enfield, and thence to the Tower.  It \nwas considered at the time a striking proof of virtue in the young \nKing that he was sorry for his father's death; but, as common \nsubjects have that virtue too, sometimes, we will say no more about \nit.\n\nThere was a curious part of the late King's will, requiring his \nexecutors to fulfil whatever promises he had made.  Some of the \ncourt wondering what these might be, the Earl of Hertford and the \nother noblemen interested, said that they were promises to advance \nand enrich THEM.  So, the Earl of Hertford made himself DUKE OF \nSOMERSET, and made his brother EDWARD SEYMOUR a baron; and there \nwere various similar promotions, all very agreeable to the parties \nconcerned, and very dutiful, no doubt, to the late King's memory.  \nTo be more dutiful still, they made themselves rich out of the \nChurch lands, and were very comfortable.  The new Duke of Somerset \ncaused himself to be declared PROTECTOR of the kingdom, and was, \nindeed, the King.\n\nAs young Edward the Sixth had been brought up in the principles of \nthe Protestant religion, everybody knew that they would be \nmaintained.  But Cranmer, to whom they were chiefly entrusted, \nadvanced them steadily and temperately.  Many superstitious and \nridiculous practices were stopped; but practices which were \nharmless were not interfered with.\n\nThe Duke of Somerset, the Protector, was anxious to have the young \nKing engaged in marriage to the young Queen of Scotland, in order \nto prevent that princess from making an alliance with any foreign \npower; but, as a large party in Scotland were unfavourable to this \nplan, he invaded that country.  His excuse for doing so was, that \nthe Border men - that is, the Scotch who lived in that part of the \ncountry where England and Scotland joined - troubled the English \nvery much.  But there were two sides to this question; for the \nEnglish Border men troubled the Scotch too; and, through many long \nyears, there were perpetual border quarrels which gave rise to \nnumbers of old tales and songs.  However, the Protector invaded \nScotland; and ARRAN, the Scottish Regent, with an army twice as \nlarge as his, advanced to meet him.  They encountered on the banks \nof the river Esk, within a few miles of Edinburgh; and there, after \na little skirmish, the Protector made such moderate proposals, in \noffering to retire if the Scotch would only engage not to marry \ntheir princess to any foreign prince, that the Regent thought the \nEnglish were afraid.  But in this he made a horrible mistake; for \nthe English soldiers on land, and the English sailors on the water, \nso set upon the Scotch, that they broke and fled, and more than ten \nthousand of them were killed.  It was a dreadful battle, for the \nfugitives were slain without mercy.  The ground for four miles, all \nthe way to Edinburgh, was strewn with dead men, and with arms, and \nlegs, and heads.  Some hid themselves in streams and were drowned; \nsome threw away their armour and were killed running, almost naked; \nbut in this battle of Pinkey the English lost only two or three \nhundred men.  They were much better clothed than the Scotch; at the \npoverty of whose appearance and country they were exceedingly \nastonished.\n\nA Parliament was called when Somerset came back, and it repealed \nthe whip with six strings, and did one or two other good things; \nthough it unhappily retained the punishment of burning for those \npeople who did not make believe to believe, in all religious \nmatters, what the Government had declared that they must and should \nbelieve.  It also made a foolish law (meant to put down beggars), \nthat any man who lived idly and loitered about for three days \ntogether, should be burned with a hot iron, made a slave, and wear \nan iron fetter.  But this savage absurdity soon came to an end, and \nwent the way of a great many other foolish laws.\n\nThe Protector was now so proud that he sat in Parliament before all \nthe nobles, on the right hand of the throne.  Many other noblemen, \nwho only wanted to be as proud if they could get a chance, became \nhis enemies of course; and it is supposed that he came back \nsuddenly from Scotland because he had received news that his \nbrother, LORD SEYMOUR, was becoming dangerous to him.  This lord \nwas now High Admiral of England; a very handsome man, and a great \nfavourite with the Court ladies - even with the young Princess \nElizabeth, who romped with him a little more than young princesses \nin these times do with any one.  He had married Catherine Parr, the \nlate King's widow, who was now dead; and, to strengthen his power, \nhe secretly supplied the young King with money.  He may even have \nengaged with some of his brother's enemies in a plot to carry the \nboy off.  On these and other accusations, at any rate, he was \nconfined in the Tower, impeached, and found guilty; his own \nbrother's name being - unnatural and sad to tell - the first signed \nto the warrant of his execution.  He was executed on Tower Hill, \nand died denying his treason.  One of his last proceedings in this \nworld was to write two letters, one to the Princess Elizabeth, and \none to the Princess Mary, which a servant of his took charge of, \nand concealed in his shoe.  These letters are supposed to have \nurged them against his brother, and to revenge his death.  What \nthey truly contained is not known; but there is no doubt that he \nhad, at one time, obtained great influence over the Princess \nElizabeth.\n\nAll this while, the Protestant religion was making progress.  The \nimages which the people had gradually come to worship, were removed \nfrom the churches; the people were informed that they need not \nconfess themselves to priests unless they chose; a common prayer-\nbook was drawn up in the English language, which all could \nunderstand, and many other improvements were made; still \nmoderately.  For Cranmer was a very moderate man, and even \nrestrained the Protestant clergy from violently abusing the \nunreformed religion - as they very often did, and which was not a \ngood example.  But the people were at this time in great distress.  \nThe rapacious nobility who had come into possession of the Church \nlands, were very bad landlords.  They enclosed great quantities of \nground for the feeding of sheep, which was then more profitable \nthan the growing of crops; and this increased the general distress.  \nSo the people, who still understood little of what was going on \nabout them, and still readily believed what the homeless monks told \nthem - many of whom had been their good friends in their better \ndays - took it into their heads that all this was owing to the \nreformed religion, and therefore rose, in many parts of the \ncountry.\n\nThe most powerful risings were in Devonshire and Norfolk.  In \nDevonshire, the rebellion was so strong that ten thousand men \nunited within a few days, and even laid siege to Exeter.  But LORD \nRUSSELL, coming to the assistance of the citizens who defended that \ntown, defeated the rebels; and, not only hanged the Mayor of one \nplace, but hanged the vicar of another from his own church steeple.  \nWhat with hanging and killing by the sword, four thousand of the \nrebels are supposed to have fallen in that one county.  In Norfolk \n(where the rising was more against the enclosure of open lands than \nagainst the reformed religion), the popular leader was a man named \nROBERT KET, a tanner of Wymondham.  The mob were, in the first \ninstance, excited against the tanner by one JOHN FLOWERDEW, a \ngentleman who owed him a grudge:  but the tanner was more than a \nmatch for the gentleman, since he soon got the people on his side, \nand established himself near Norwich with quite an army.  There was \na large oak-tree in that place, on a spot called Moushold Hill, \nwhich Ket named the Tree of Reformation; and under its green \nboughs, he and his men sat, in the midsummer weather, holding \ncourts of justice, and debating affairs of state.  They were even \nimpartial enough to allow some rather tiresome public speakers to \nget up into this Tree of Reformation, and point out their errors to \nthem, in long discourses, while they lay listening (not always \nwithout some grumbling and growling) in the shade below.  At last, \none sunny July day, a herald appeared below the tree, and \nproclaimed Ket and all his men traitors, unless from that moment \nthey dispersed and went home:  in which case they were to receive a \npardon.  But, Ket and his men made light of the herald and became \nstronger than ever, until the Earl of Warwick went after them with \na sufficient force, and cut them all to pieces.  A few were hanged, \ndrawn, and quartered, as traitors, and their limbs were sent into \nvarious country places to be a terror to the people.  Nine of them \nwere hanged upon nine green branches of the Oak of Reformation; and \nso, for the time, that tree may be said to have withered away.\n\nThe Protector, though a haughty man, had compassion for the real \ndistresses of the common people, and a sincere desire to help them.  \nBut he was too proud and too high in degree to hold even their \nfavour steadily; and many of the nobles always envied and hated \nhim, because they were as proud and not as high as he.  He was at \nthis time building a great Palace in the Strand:  to get the stone \nfor which he blew up church steeples with gunpowder, and pulled \ndown bishops' houses:  thus making himself still more disliked.  At \nlength, his principal enemy, the Earl of Warwick - Dudley by name, \nand the son of that Dudley who had made himself so odious with \nEmpson, in the reign of Henry the Seventh - joined with seven other \nmembers of the Council against him, formed a separate Council; and, \nbecoming stronger in a few days, sent him to the Tower under \ntwenty-nine articles of accusation.  After being sentenced by the \nCouncil to the forfeiture of all his offices and lands, he was \nliberated and pardoned, on making a very humble submission.  He was \neven taken back into the Council again, after having suffered this \nfall, and married his daughter, LADY ANNE SEYMOUR, to Warwick's \neldest son.  But such a reconciliation was little likely to last, \nand did not outlive a year.  Warwick, having got himself made Duke \nof Northumberland, and having advanced the more important of his \nfriends, then finished the history by causing the Duke of Somerset \nand his friend LORD GREY, and others, to be arrested for treason, \nin having conspired to seize and dethrone the King.  They were also \naccused of having intended to seize the new Duke of Northumberland, \nwith his friends LORD NORTHAMPTON and LORD PEMBROKE; to murder them \nif they found need; and to raise the City to revolt.  All this the \nfallen Protector positively denied; except that he confessed to \nhaving spoken of the murder of those three noblemen, but having \nnever designed it.  He was acquitted of the charge of treason, and \nfound guilty of the other charges; so when the people - who \nremembered his having been their friend, now that he was disgraced \nand in danger, saw him come out from his trial with the axe turned \nfrom him - they thought he was altogether acquitted, and sent up a \nloud shout of joy.\n\nBut the Duke of Somerset was ordered to be beheaded on Tower Hill, \nat eight o'clock in the morning, and proclamations were issued \nbidding the citizens keep at home until after ten.  They filled the \nstreets, however, and crowded the place of execution as soon as it \nwas light; and, with sad faces and sad hearts, saw the once \npowerful Protector ascend the scaffold to lay his head upon the \ndreadful block.  While he was yet saying his last words to them \nwith manly courage, and telling them, in particular, how it \ncomforted him, at that pass, to have assisted in reforming the \nnational religion, a member of the Council was seen riding up on \nhorseback.  They again thought that the Duke was saved by his \nbringing a reprieve, and again shouted for joy.  But the Duke \nhimself told them they were mistaken, and laid down his head and \nhad it struck off at a blow.\n\nMany of the bystanders rushed forward and steeped their \nhandkerchiefs in his blood, as a mark of their affection.  He had, \nindeed, been capable of many good acts, and one of them was \ndiscovered after he was no more.  The Bishop of Durham, a very good \nman, had been informed against to the Council, when the Duke was in \npower, as having answered a treacherous letter proposing a \nrebellion against the reformed religion.  As the answer could not \nbe found, he could not be declared guilty; but it was now \ndiscovered, hidden by the Duke himself among some private papers, \nin his regard for that good man.  The Bishop lost his office, and \nwas deprived of his possessions.\n\nIt is not very pleasant to know that while his uncle lay in prison \nunder sentence of death, the young King was being vastly \nentertained by plays, and dances, and sham fights:  but there is no \ndoubt of it, for he kept a journal himself.  It is pleasanter to \nknow that not a single Roman Catholic was burnt in this reign for \nholding that religion; though two wretched victims suffered for \nheresy.  One, a woman named JOAN BOCHER, for professing some \nopinions that even she could only explain in unintelligible jargon.  \nThe other, a Dutchman, named VON PARIS, who practised as a surgeon \nin London.  Edward was, to his credit, exceedingly unwilling to \nsign the warrant for the woman's execution:  shedding tears before \nhe did so, and telling Cranmer, who urged him to do it (though \nCranmer really would have spared the woman at first, but for her \nown determined obstinacy), that the guilt was not his, but that of \nthe man who so strongly urged the dreadful act.  We shall see, too \nsoon, whether the time ever came when Cranmer is likely to have \nremembered this with sorrow and remorse.\n\nCranmer and RIDLEY (at first Bishop of Rochester, and afterwards \nBishop of London) were the most powerful of the clergy of this \nreign.  Others were imprisoned and deprived of their property for \nstill adhering to the unreformed religion; the most important among \nwhom were GARDINER Bishop of Winchester, HEATH Bishop of Worcester, \nDAY Bishop of Chichester, and BONNER that Bishop of London who was \nsuperseded by Ridley.  The Princess Mary, who inherited her \nmother's gloomy temper, and hated the reformed religion as \nconnected with her mother's wrongs and sorrows - she knew nothing \nelse about it, always refusing to read a single book in which it \nwas truly described - held by the unreformed religion too, and was \nthe only person in the kingdom for whom the old Mass was allowed to \nbe performed; nor would the young King have made that exception \neven in her favour, but for the strong persuasions of Cranmer and \nRidley.  He always viewed it with horror; and when he fell into a \nsickly condition, after having been very ill, first of the measles \nand then of the small-pox, he was greatly troubled in mind to think \nthat if he died, and she, the next heir to the throne, succeeded, \nthe Roman Catholic religion would be set up again.\n\nThis uneasiness, the Duke of Northumberland was not slow to \nencourage:  for, if the Princess Mary came to the throne, he, who \nhad taken part with the Protestants, was sure to be disgraced.  \nNow, the Duchess of Suffolk was descended from King Henry the \nSeventh; and, if she resigned what little or no right she had, in \nfavour of her daughter LADY JANE GREY, that would be the succession \nto promote the Duke's greatness; because LORD GUILFORD DUDLEY, one \nof his sons, was, at this very time, newly married to her.  So, he \nworked upon the King's fears, and persuaded him to set aside both \nthe Princess Mary and the Princess Elizabeth, and assert his right \nto appoint his successor.  Accordingly the young King handed to the \nCrown lawyers a writing signed half a dozen times over by himself, \nappointing Lady Jane Grey to succeed to the Crown, and requiring \nthem to have his will made out according to law.  They were much \nagainst it at first, and told the King so; but the Duke of \nNorthumberland - being so violent about it that the lawyers even \nexpected him to beat them, and hotly declaring that, stripped to \nhis shirt, he would fight any man in such a quarrel - they yielded.  \nCranmer, also, at first hesitated; pleading that he had sworn to \nmaintain the succession of the Crown to the Princess Mary; but, he \nwas a weak man in his resolutions, and afterwards signed the \ndocument with the rest of the council.\n\nIt was completed none too soon; for Edward was now sinking in a \nrapid decline; and, by way of making him better, they handed him \nover to a woman-doctor who pretended to be able to cure it.  He \nspeedily got worse.  On the sixth of July, in the year one thousand \nfive hundred and fifty-three, he died, very peaceably and piously, \npraying God, with his last breath, to protect the reformed \nreligion.\n\nThis King died in the sixteenth year of his age, and in the seventh \nof his reign.  It is difficult to judge what the character of one \nso young might afterwards have become among so many bad, ambitious, \nquarrelling nobles.  But, he was an amiable boy, of very good \nabilities, and had nothing coarse or cruel or brutal in his \ndisposition - which in the son of such a father is rather \nsurprising.\n\n\n\nCHAPTER XXX - ENGLAND UNDER MARY\n\n\n\nTHE Duke of Northumberland was very anxious to keep the young \nKing's death a secret, in order that he might get the two \nPrincesses into his power.  But, the Princess Mary, being informed \nof that event as she was on her way to London to see her sick \nbrother, turned her horse's head, and rode away into Norfolk.  The \nEarl of Arundel was her friend, and it was he who sent her warning \nof what had happened.\n\nAs the secret could not be kept, the Duke of Northumberland and the \ncouncil sent for the Lord Mayor of London and some of the aldermen, \nand made a merit of telling it to them.  Then, they made it known \nto the people, and set off to inform Lady Jane Grey that she was to \nbe Queen.\n\nShe was a pretty girl of only sixteen, and was amiable, learned, \nand clever.  When the lords who came to her, fell on their knees \nbefore her, and told her what tidings they brought, she was so \nastonished that she fainted.  On recovering, she expressed her \nsorrow for the young King's death, and said that she knew she was \nunfit to govern the kingdom; but that if she must be Queen, she \nprayed God to direct her.  She was then at Sion House, near \nBrentford; and the lords took her down the river in state to the \nTower, that she might remain there (as the custom was) until she \nwas crowned.  But the people were not at all favourable to Lady \nJane, considering that the right to be Queen was Mary's, and \ngreatly disliking the Duke of Northumberland.  They were not put \ninto a better humour by the Duke's causing a vintner's servant, one \nGabriel Pot, to be taken up for expressing his dissatisfaction \namong the crowd, and to have his ears nailed to the pillory, and \ncut off.  Some powerful men among the nobility declared on Mary's \nside.  They raised troops to support her cause, had her proclaimed \nQueen at Norwich, and gathered around her at the castle of \nFramlingham, which belonged to the Duke of Norfolk.  For, she was \nnot considered so safe as yet, but that it was best to keep her in \na castle on the sea-coast, from whence she might be sent abroad, if \nnecessary.\n\nThe Council would have despatched Lady Jane's father, the Duke of \nSuffolk, as the general of the army against this force; but, as \nLady Jane implored that her father might remain with her, and as he \nwas known to be but a weak man, they told the Duke of \nNorthumberland that he must take the command himself.  He was not \nvery ready to do so, as he mistrusted the Council much; but there \nwas no help for it, and he set forth with a heavy heart, observing \nto a lord who rode beside him through Shoreditch at the head of the \ntroops, that, although the people pressed in great numbers to look \nat them, they were terribly silent.\n\nAnd his fears for himself turned out to be well founded.  While he \nwas waiting at Cambridge for further help from the Council, the \nCouncil took it into their heads to turn their backs on Lady Jane's \ncause, and to take up the Princess Mary's.  This was chiefly owing \nto the before-mentioned Earl of Arundel, who represented to the \nLord Mayor and aldermen, in a second interview with those sagacious \npersons, that, as for himself, he did not perceive the Reformed \nreligion to be in much danger - which Lord Pembroke backed by \nflourishing his sword as another kind of persuasion.  The Lord \nMayor and aldermen, thus enlightened, said there could be no doubt \nthat the Princess Mary ought to be Queen.  So, she was proclaimed \nat the Cross by St. Paul's, and barrels of wine were given to the \npeople, and they got very drunk, and danced round blazing bonfires \n- little thinking, poor wretches, what other bonfires would soon be \nblazing in Queen Mary's name.\n\nAfter a ten days' dream of royalty, Lady Jane Grey resigned the \nCrown with great willingness, saying that she had only accepted it \nin obedience to her father and mother; and went gladly back to her \npleasant house by the river, and her books.  Mary then came on \ntowards London; and at Wanstead in Essex, was joined by her half-\nsister, the Princess Elizabeth.  They passed through the streets of \nLondon to the Tower, and there the new Queen met some eminent \nprisoners then confined in it, kissed them, and gave them their \nliberty.  Among these was that Gardiner, Bishop of Winchester, who \nhad been imprisoned in the last reign for holding to the unreformed \nreligion.  Him she soon made chancellor.\n\nThe Duke of Northumberland had been taken prisoner, and, together \nwith his son and five others, was quickly brought before the \nCouncil.  He, not unnaturally, asked that Council, in his defence, \nwhether it was treason to obey orders that had been issued under \nthe great seal; and, if it were, whether they, who had obeyed them \ntoo, ought to be his judges?  But they made light of these points; \nand, being resolved to have him out of the way, soon sentenced him \nto death.  He had risen into power upon the death of another man, \nand made but a poor show (as might be expected) when he himself lay \nlow.  He entreated Gardiner to let him live, if it were only in a \nmouse's hole; and, when he ascended the scaffold to be beheaded on \nTower Hill, addressed the people in a miserable way, saying that he \nhad been incited by others, and exhorting them to return to the \nunreformed religion, which he told them was his faith.  There seems \nreason to suppose that he expected a pardon even then, in return \nfor this confession; but it matters little whether he did or not.  \nHis head was struck off.\n\nMary was now crowned Queen.  She was thirty-seven years of age, \nshort and thin, wrinkled in the face, and very unhealthy.  But she \nhad a great liking for show and for bright colours, and all the \nladies of her Court were magnificently dressed.  She had a great \nliking too for old customs, without much sense in them; and she was \noiled in the oldest way, and blessed in the oldest way, and done \nall manner of things to in the oldest way, at her coronation.  I \nhope they did her good.\n\nShe soon began to show her desire to put down the Reformed \nreligion, and put up the unreformed one:  though it was dangerous \nwork as yet, the people being something wiser than they used to be.  \nThey even cast a shower of stones - and among them a dagger - at \none of the royal chaplains who attacked the Reformed religion in a \npublic sermon.  But the Queen and her priests went steadily on.  \nRidley, the powerful bishop of the last reign, was seized and sent \nto the Tower.  LATIMER, also celebrated among the Clergy of the \nlast reign, was likewise sent to the Tower, and Cranmer speedily \nfollowed.  Latimer was an aged man; and, as his guards took him \nthrough Smithfield, he looked round it, and said, 'This is a place \nthat hath long groaned for me.'  For he knew well, what kind of \nbonfires would soon be burning.  Nor was the knowledge confined to \nhim.  The prisons were fast filled with the chief Protestants, who \nwere there left rotting in darkness, hunger, dirt, and separation \nfrom their friends; many, who had time left them for escape, fled \nfrom the kingdom; and the dullest of the people began, now, to see \nwhat was coming.\n\nIt came on fast.  A Parliament was got together; not without strong \nsuspicion of unfairness; and they annulled the divorce, formerly \npronounced by Cranmer between the Queen's mother and King Henry the \nEighth, and unmade all the laws on the subject of religion that had \nbeen made in the last King Edward's reign.  They began their \nproceedings, in violation of the law, by having the old mass said \nbefore them in Latin, and by turning out a bishop who would not \nkneel down.  They also declared guilty of treason, Lady Jane Grey \nfor aspiring to the Crown; her husband, for being her husband; and \nCranmer, for not believing in the mass aforesaid.  They then prayed \nthe Queen graciously to choose a husband for herself, as soon as \nmight be.\n\nNow, the question who should be the Queen's husband had given rise \nto a great deal of discussion, and to several contending parties.  \nSome said Cardinal Pole was the man - but the Queen was of opinion \nthat he was NOT the man, he being too old and too much of a \nstudent.  Others said that the gallant young COURTENAY, whom the \nQueen had made Earl of Devonshire, was the man - and the Queen \nthought so too, for a while; but she changed her mind.  At last it \nappeared that PHILIP, PRINCE OF SPAIN, was certainly the man - \nthough certainly not the people's man; for they detested the idea \nof such a marriage from the beginning to the end, and murmured that \nthe Spaniard would establish in England, by the aid of foreign \nsoldiers, the worst abuses of the Popish religion, and even the \nterrible Inquisition itself.\n\nThese discontents gave rise to a conspiracy for marrying young \nCourtenay to the Princess Elizabeth, and setting them up, with \npopular tumults all over the kingdom, against the Queen.  This was \ndiscovered in time by Gardiner; but in Kent, the old bold county, \nthe people rose in their old bold way.  SIR THOMAS WYAT, a man of \ngreat daring, was their leader.  He raised his standard at \nMaidstone, marched on to Rochester, established himself in the old \ncastle there, and prepared to hold out against the Duke of Norfolk, \nwho came against him with a party of the Queen's guards, and a body \nof five hundred London men.  The London men, however, were all for \nElizabeth, and not at all for Mary.  They declared, under the \ncastle walls, for Wyat; the Duke retreated; and Wyat came on to \nDeptford, at the head of fifteen thousand men.\n\nBut these, in their turn, fell away.  When he came to Southwark, \nthere were only two thousand left.  Not dismayed by finding the \nLondon citizens in arms, and the guns at the Tower ready to oppose \nhis crossing the river there, Wyat led them off to Kingston-upon-\nThames, intending to cross the bridge that he knew to be in that \nplace, and so to work his way round to Ludgate, one of the old \ngates of the City.  He found the bridge broken down, but mended it, \ncame across, and bravely fought his way up Fleet Street to Ludgate \nHill.  Finding the gate closed against him, he fought his way back \nagain, sword in hand, to Temple Bar.  Here, being overpowered, he \nsurrendered himself, and three or four hundred of his men were \ntaken, besides a hundred killed.  Wyat, in a moment of weakness \n(and perhaps of torture) was afterwards made to accuse the Princess \nElizabeth as his accomplice to some very small extent.  But his \nmanhood soon returned to him, and he refused to save his life by \nmaking any more false confessions.  He was quartered and \ndistributed in the usual brutal way, and from fifty to a hundred of \nhis followers were hanged.  The rest were led out, with halters \nround their necks, to be pardoned, and to make a parade of crying \nout, 'God save Queen Mary!'\n\nIn the danger of this rebellion, the Queen showed herself to be a \nwoman of courage and spirit.  She disdained to retreat to any place \nof safety, and went down to the Guildhall, sceptre in hand, and \nmade a gallant speech to the Lord Mayor and citizens.  But on the \nday after Wyat's defeat, she did the most cruel act, even of her \ncruel reign, in signing the warrant for the execution of Lady Jane \nGrey.\n\nThey tried to persuade Lady Jane to accept the unreformed religion; \nbut she steadily refused.  On the morning when she was to die, she \nsaw from her window the bleeding and headless body of her husband \nbrought back in a cart from the scaffold on Tower Hill where he had \nlaid down his life.  But, as she had declined to see him before his \nexecution, lest she should be overpowered and not make a good end, \nso, she even now showed a constancy and calmness that will never be \nforgotten.  She came up to the scaffold with a firm step and a \nquiet face, and addressed the bystanders in a steady voice.  They \nwere not numerous; for she was too young, too innocent and fair, to \nbe murdered before the people on Tower Hill, as her husband had \njust been; so, the place of her execution was within the Tower \nitself.  She said that she had done an unlawful act in taking what \nwas Queen Mary's right; but that she had done so with no bad \nintent, and that she died a humble Christian.  She begged the \nexecutioner to despatch her quickly, and she asked him, 'Will you \ntake my head off before I lay me down?'  He answered, 'No, Madam,' \nand then she was very quiet while they bandaged her eyes.  Being \nblinded, and unable to see the block on which she was to lay her \nyoung head, she was seen to feel about for it with her hands, and \nwas heard to say, confused, 'O what shall I do!  Where is it?'  \nThen they guided her to the right place, and the executioner struck \noff her head.  You know too well, now, what dreadful deeds the \nexecutioner did in England, through many, many years, and how his \naxe descended on the hateful block through the necks of some of the \nbravest, wisest, and best in the land.  But it never struck so \ncruel and so vile a blow as this.\n\nThe father of Lady Jane soon followed, but was little pitied.  \nQueen Mary's next object was to lay hold of Elizabeth, and this was \npursued with great eagerness.  Five hundred men were sent to her \nretired house at Ashridge, by Berkhampstead, with orders to bring \nher up, alive or dead.  They got there at ten at night, when she \nwas sick in bed.  But, their leaders followed her lady into her \nbedchamber, whence she was brought out betimes next morning, and \nput into a litter to be conveyed to London.  She was so weak and \nill, that she was five days on the road; still, she was so resolved \nto be seen by the people that she had the curtains of the litter \nopened; and so, very pale and sickly, passed through the streets.  \nShe wrote to her sister, saying she was innocent of any crime, and \nasking why she was made a prisoner; but she got no answer, and was \nordered to the Tower.  They took her in by the Traitor's Gate, to \nwhich she objected, but in vain.  One of the lords who conveyed her \noffered to cover her with his cloak, as it was raining, but she put \nit away from her, proudly and scornfully, and passed into the \nTower, and sat down in a court-yard on a stone.  They besought her \nto come in out of the wet; but she answered that it was better \nsitting there, than in a worse place.  At length she went to her \napartment, where she was kept a prisoner, though not so close a \nprisoner as at Woodstock, whither she was afterwards removed, and \nwhere she is said to have one day envied a milkmaid whom she heard \nsinging in the sunshine as she went through the green fields.  \nGardiner, than whom there were not many worse men among the fierce \nand sullen priests, cared little to keep secret his stern desire \nfor her death:  being used to say that it was of little service to \nshake off the leaves, and lop the branches of the tree of heresy, \nif its root, the hope of heretics, were left.  He failed, however, \nin his benevolent design.  Elizabeth was, at length, released; and \nHatfield House was assigned to her as a residence, under the care \nof one SIR THOMAS POPE.\n\nIt would seem that Philip, the Prince of Spain, was a main cause of \nthis change in Elizabeth's fortunes.  He was not an amiable man, \nbeing, on the contrary, proud, overbearing, and gloomy; but he and \nthe Spanish lords who came over with him, assuredly did \ndiscountenance the idea of doing any violence to the Princess.  It \nmay have been mere prudence, but we will hope it was manhood and \nhonour.  The Queen had been expecting her husband with great \nimpatience, and at length he came, to her great joy, though he \nnever cared much for her.  They were married by Gardiner, at \nWinchester, and there was more holiday-making among the people; but \nthey had their old distrust of this Spanish marriage, in which even \nthe Parliament shared.  Though the members of that Parliament were \nfar from honest, and were strongly suspected to have been bought \nwith Spanish money, they would pass no bill to enable the Queen to \nset aside the Princess Elizabeth and appoint her own successor.\n\nAlthough Gardiner failed in this object, as well as in the darker \none of bringing the Princess to the scaffold, he went on at a great \npace in the revival of the unreformed religion.  A new Parliament \nwas packed, in which there were no Protestants.  Preparations were \nmade to receive Cardinal Pole in England as the Pope's messenger, \nbringing his holy declaration that all the nobility who had \nacquired Church property, should keep it - which was done to enlist \ntheir selfish interest on the Pope's side.  Then a great scene was \nenacted, which was the triumph of the Queen's plans.  Cardinal Pole \narrived in great splendour and dignity, and was received with great \npomp.  The Parliament joined in a petition expressive of their \nsorrow at the change in the national religion, and praying him to \nreceive the country again into the Popish Church.  With the Queen \nsitting on her throne, and the King on one side of her, and the \nCardinal on the other, and the Parliament present, Gardiner read \nthe petition aloud.  The Cardinal then made a great speech, and was \nso obliging as to say that all was forgotten and forgiven, and that \nthe kingdom was solemnly made Roman Catholic again.\n\nEverything was now ready for the lighting of the terrible bonfires.  \nThe Queen having declared to the Council, in writing, that she \nwould wish none of her subjects to be burnt without some of the \nCouncil being present, and that she would particularly wish there \nto be good sermons at all burnings, the Council knew pretty well \nwhat was to be done next.  So, after the Cardinal had blessed all \nthe bishops as a preface to the burnings, the Chancellor Gardiner \nopened a High Court at Saint Mary Overy, on the Southwark side of \nLondon Bridge, for the trial of heretics.  Here, two of the late \nProtestant clergymen, HOOPER, Bishop of Gloucester, and ROGERS, a \nPrebendary of St. Paul's, were brought to be tried.  Hooper was \ntried first for being married, though a priest, and for not \nbelieving in the mass.  He admitted both of these accusations, and \nsaid that the mass was a wicked imposition.  Then they tried \nRogers, who said the same.  Next morning the two were brought up to \nbe sentenced; and then Rogers said that his poor wife, being a \nGerman woman and a stranger in the land, he hoped might be allowed \nto come to speak to him before he died.  To this the inhuman \nGardiner replied, that she was not his wife.  'Yea, but she is, my \nlord,' said Rogers, 'and she hath been my wife these eighteen \nyears.'  His request was still refused, and they were both sent to \nNewgate; all those who stood in the streets to sell things, being \nordered to put out their lights that the people might not see them.  \nBut, the people stood at their doors with candles in their hands, \nand prayed for them as they went by.  Soon afterwards, Rogers was \ntaken out of jail to be burnt in Smithfield; and, in the crowd as \nhe went along, he saw his poor wife and his ten children, of whom \nthe youngest was a little baby.  And so he was burnt to death.\n\nThe next day, Hooper, who was to be burnt at Gloucester, was \nbrought out to take his last journey, and was made to wear a hood \nover his face that he might not be known by the people.  But, they \ndid know him for all that, down in his own part of the country; \nand, when he came near Gloucester, they lined the road, making \nprayers and lamentations.  His guards took him to a lodging, where \nhe slept soundly all night.  At nine o'clock next morning, he was \nbrought forth leaning on a staff; for he had taken cold in prison, \nand was infirm.  The iron stake, and the iron chain which was to \nbind him to it, were fixed up near a great elm-tree in a pleasant \nopen place before the cathedral, where, on peaceful Sundays, he had \nbeen accustomed to preach and to pray, when he was bishop of \nGloucester.  This tree, which had no leaves then, it being \nFebruary, was filled with people; and the priests of Gloucester \nCollege were looking complacently on from a window, and there was a \ngreat concourse of spectators in every spot from which a glimpse of \nthe dreadful sight could be beheld.  When the old man kneeled down \non the small platform at the foot of the stake, and prayed aloud, \nthe nearest people were observed to be so attentive to his prayers \nthat they were ordered to stand farther back; for it did not suit \nthe Romish Church to have those Protestant words heard.  His \nprayers concluded, he went up to the stake and was stripped to his \nshirt, and chained ready for the fire.  One of his guards had such \ncompassion on him that, to shorten his agonies, he tied some \npackets of gunpowder about him.  Then they heaped up wood and straw \nand reeds, and set them all alight.  But, unhappily, the wood was \ngreen and damp, and there was a wind blowing that blew what flame \nthere was, away.  Thus, through three-quarters of an hour, the good \nold man was scorched and roasted and smoked, as the fire rose and \nsank; and all that time they saw him, as he burned, moving his lips \nin prayer, and beating his breast with one hand, even after the \nother was burnt away and had fallen off.\n\nCranmer, Ridley, and Latimer, were taken to Oxford to dispute with \na commission of priests and doctors about the mass.  They were \nshamefully treated; and it is recorded that the Oxford scholars \nhissed and howled and groaned, and misconducted themselves in an \nanything but a scholarly way.  The prisoners were taken back to \njail, and afterwards tried in St. Mary's Church.  They were all \nfound guilty.  On the sixteenth of the month of October, Ridley and \nLatimer were brought out, to make another of the dreadful bonfires.\n\nThe scene of the suffering of these two good Protestant men was in \nthe City ditch, near Baliol College.  On coming to the dreadful \nspot, they kissed the stakes, and then embraced each other.  And \nthen a learned doctor got up into a pulpit which was placed there, \nand preached a sermon from the text, 'Though I give my body to be \nburned, and have not charity, it profiteth me nothing.'  When you \nthink of the charity of burning men alive, you may imagine that \nthis learned doctor had a rather brazen face.  Ridley would have \nanswered his sermon when it came to an end, but was not allowed.  \nWhen Latimer was stripped, it appeared that he had dressed himself \nunder his other clothes, in a new shroud; and, as he stood in it \nbefore all the people, it was noted of him, and long remembered, \nthat, whereas he had been stooping and feeble but a few minutes \nbefore, he now stood upright and handsome, in the knowledge that he \nwas dying for a just and a great cause.  Ridley's brother-in-law \nwas there with bags of gunpowder; and when they were both chained \nup, he tied them round their bodies.  Then, a light was thrown upon \nthe pile to fire it.  'Be of good comfort, Master Ridley,' said \nLatimer, at that awful moment, 'and play the man!  We shall this \nday light such a candle, by God's grace, in England, as I trust \nshall never be put out.'  And then he was seen to make motions with \nhis hands as if he were washing them in the flames, and to stroke \nhis aged face with them, and was heard to cry, 'Father of Heaven, \nreceive my soul!'  He died quickly, but the fire, after having \nburned the legs of Ridley, sunk.  There he lingered, chained to the \niron post, and crying, 'O!  I cannot burn!  O! for Christ's sake \nlet the fire come unto me!'  And still, when his brother-in-law had \nheaped on more wood, he was heard through the blinding smoke, still \ndismally crying, 'O!  I cannot burn, I cannot burn!'  At last, the \ngunpowder caught fire, and ended his miseries.\n\nFive days after this fearful scene, Gardiner went to his tremendous \naccount before God, for the cruelties he had so much assisted in \ncommitting.\n\nCranmer remained still alive and in prison.  He was brought out \nagain in February, for more examining and trying, by Bonner, Bishop \nof London:  another man of blood, who had succeeded to Gardiner's \nwork, even in his lifetime, when Gardiner was tired of it.  Cranmer \nwas now degraded as a priest, and left for death; but, if the Queen \nhated any one on earth, she hated him, and it was resolved that he \nshould be ruined and disgraced to the utmost.  There is no doubt \nthat the Queen and her husband personally urged on these deeds, \nbecause they wrote to the Council, urging them to be active in the \nkindling of the fearful fires.  As Cranmer was known not to be a \nfirm man, a plan was laid for surrounding him with artful people, \nand inducing him to recant to the unreformed religion.  Deans and \nfriars visited him, played at bowls with him, showed him various \nattentions, talked persuasively with him, gave him money for his \nprison comforts, and induced him to sign, I fear, as many as six \nrecantations.  But when, after all, he was taken out to be burnt, \nhe was nobly true to his better self, and made a glorious end.\n\nAfter prayers and a sermon, Dr. Cole, the preacher of the day (who \nhad been one of the artful priests about Cranmer in prison), \nrequired him to make a public confession of his faith before the \npeople.  This, Cole did, expecting that he would declare himself a \nRoman Catholic.  'I will make a profession of my faith,' said \nCranmer, 'and with a good will too.'\n\nThen, he arose before them all, and took from the sleeve of his \nrobe a written prayer and read it aloud.  That done, he kneeled and \nsaid the Lord's Prayer, all the people joining; and then he arose \nagain and told them that he believed in the Bible, and that in what \nhe had lately written, he had written what was not the truth, and \nthat, because his right hand had signed those papers, he would burn \nhis right hand first when he came to the fire.  As for the Pope, he \ndid refuse him and denounce him as the enemy of Heaven.  Hereupon \nthe pious Dr. Cole cried out to the guards to stop that heretic's \nmouth and take him away.\n\nSo they took him away, and chained him to the stake, where he \nhastily took off his own clothes to make ready for the flames.  And \nhe stood before the people with a bald head and a white and flowing \nbeard.  He was so firm now when the worst was come, that he again \ndeclared against his recantation, and was so impressive and so \nundismayed, that a certain lord, who was one of the directors of \nthe execution, called out to the men to make haste!  When the fire \nwas lighted, Cranmer, true to his latest word, stretched out his \nright hand, and crying out, 'This hand hath offended!' held it \namong the flames, until it blazed and burned away.  His heart was \nfound entire among his ashes, and he left at last a memorable name \nin English history.  Cardinal Pole celebrated the day by saying his \nfirst mass, and next day he was made Archbishop of Canterbury in \nCranmer's place.\n\nThe Queen's husband, who was now mostly abroad in his own \ndominions, and generally made a coarse jest of her to his more \nfamiliar courtiers, was at war with France, and came over to seek \nthe assistance of England.  England was very unwilling to engage in \na French war for his sake; but it happened that the King of France, \nat this very time, aided a descent upon the English coast.  Hence, \nwar was declared, greatly to Philip's satisfaction; and the Queen \nraised a sum of money with which to carry it on, by every \nunjustifiable means in her power.  It met with no profitable \nreturn, for the French Duke of Guise surprised Calais, and the \nEnglish sustained a complete defeat.  The losses they met with in \nFrance greatly mortified the national pride, and the Queen never \nrecovered the blow.\n\nThere was a bad fever raging in England at this time, and I am glad \nto write that the Queen took it, and the hour of her death came.  \n'When I am dead and my body is opened,' she said to those around \nthose around her, 'ye shall find CALAIS written on my heart.'  I \nshould have thought, if anything were written on it, they would \nhave found the words - JANE GREY, HOOPER, ROGERS, RIDLEY, LATIMER, \nCRANMER, AND THREE HUNDRED PEOPLE BURNT ALIVE WITHIN FOUR YEARS OF \nMY WICKED REIGN, INCLUDING SIXTY WOMEN AND FORTY LITTLE CHILDREN.  \nBut it is enough that their deaths were written in Heaven.\n\nThe Queen died on the seventeenth of November, fifteen hundred and \nfifty-eight, after reigning not quite five years and a half, and in \nthe forty-fourth year of her age.  Cardinal Pole died of the same \nfever next day.\n\nAs BLOODY QUEEN MARY, this woman has become famous, and as BLOODY \nQUEEN MARY, she will ever be justly remembered with horror and \ndetestation in Great Britain.  Her memory has been held in such \nabhorrence that some writers have arisen in later years to take her \npart, and to show that she was, upon the whole, quite an amiable \nand cheerful sovereign!  'By their fruits ye shall know them,' said \nOUR SAVIOUR.  The stake and the fire were the fruits of this reign, \nand you will judge this Queen by nothing else.\n\n\n\nCHAPTER XXXI - ENGLAND UNDER ELIZABETH\n\n\n\nTHERE was great rejoicing all over the land when the Lords of the \nCouncil went down to Hatfield, to hail the Princess Elizabeth as \nthe new Queen of England.  Weary of the barbarities of Mary's \nreign, the people looked with hope and gladness to the new \nSovereign.  The nation seemed to wake from a horrible dream; and \nHeaven, so long hidden by the smoke of the fires that roasted men \nand women to death, appeared to brighten once more.\n\nQueen Elizabeth was five-and-twenty years of age when she rode \nthrough the streets of London, from the Tower to Westminster Abbey, \nto be crowned.  Her countenance was strongly marked, but on the \nwhole, commanding and dignified; her hair was red, and her nose \nsomething too long and sharp for a woman's.  She was not the \nbeautiful creature her courtiers made out; but she was well enough, \nand no doubt looked all the better for coming after the dark and \ngloomy Mary.  She was well educated, but a roundabout writer, and \nrather a hard swearer and coarse talker.  She was clever, but \ncunning and deceitful, and inherited much of her father's violent \ntemper.  I mention this now, because she has been so over-praised \nby one party, and so over-abused by another, that it is hardly \npossible to understand the greater part of her reign without first \nunderstanding what kind of woman she really was.\n\nShe began her reign with the great advantage of having a very wise \nand careful Minister, SIR WILLIAM CECIL, whom she afterwards made \nLORD BURLEIGH.  Altogether, the people had greater reason for \nrejoicing than they usually had, when there were processions in the \nstreets; and they were happy with some reason.  All kinds of shows \nand images were set up; GOG and MAGOG were hoisted to the top of \nTemple Bar, and (which was more to the purpose) the Corporation \ndutifully presented the young Queen with the sum of a thousand \nmarks in gold - so heavy a present, that she was obliged to take it \ninto her carriage with both hands.  The coronation was a great \nsuccess; and, on the next day, one of the courtiers presented a \npetition to the new Queen, praying that as it was the custom to \nrelease some prisoners on such occasions, she would have the \ngoodness to release the four Evangelists, Matthew, Mark, Luke, and \nJohn, and also the Apostle Saint Paul, who had been for some time \nshut up in a strange language so that the people could not get at \nthem.\n\nTo this, the Queen replied that it would be better first to inquire \nof themselves whether they desired to be released or not; and, as a \nmeans of finding out, a great public discussion - a sort of \nreligious tournament - was appointed to take place between certain \nchampions of the two religions, in Westminster Abbey.  You may \nsuppose that it was soon made pretty clear to common sense, that \nfor people to benefit by what they repeat or read, it is rather \nnecessary they should understand something about it.  Accordingly, \na Church Service in plain English was settled, and other laws and \nregulations were made, completely establishing the great work of \nthe Reformation.  The Romish bishops and champions were not harshly \ndealt with, all things considered; and the Queen's Ministers were \nboth prudent and merciful.\n\nThe one great trouble of this reign, and the unfortunate cause of \nthe greater part of such turmoil and bloodshed as occurred in it, \nwas MARY STUART, QUEEN OF SCOTS.  We will try to understand, in as \nfew words as possible, who Mary was, what she was, and how she came \nto be a thorn in the royal pillow of Elizabeth.\n\nShe was the daughter of the Queen Regent of Scotland, MARY OF \nGUISE.  She had been married, when a mere child, to the Dauphin, \nthe son and heir of the King of France.  The Pope, who pretended \nthat no one could rightfully wear the crown of England without his \ngracious permission, was strongly opposed to Elizabeth, who had not \nasked for the said gracious permission.  And as Mary Queen of Scots \nwould have inherited the English crown in right of her birth, \nsupposing the English Parliament not to have altered the \nsuccession, the Pope himself, and most of the discontented who were \nfollowers of his, maintained that Mary was the rightful Queen of \nEngland, and Elizabeth the wrongful Queen.  Mary being so closely \nconnected with France, and France being jealous of England, there \nwas far greater danger in this than there would have been if she \nhad had no alliance with that great power.  And when her young \nhusband, on the death of his father, became FRANCIS THE SECOND, \nKing of France, the matter grew very serious.  For, the young \ncouple styled themselves King and Queen of England, and the Pope \nwas disposed to help them by doing all the mischief he could.\n\nNow, the reformed religion, under the guidance of a stern and \npowerful preacher, named JOHN KNOX, and other such men, had been \nmaking fierce progress in Scotland.  It was still a half savage \ncountry, where there was a great deal of murdering and rioting \ncontinually going on; and the Reformers, instead of reforming those \nevils as they should have done, went to work in the ferocious old \nScottish spirit, laying churches and chapels waste, pulling down \npictures and altars, and knocking about the Grey Friars, and the \nBlack Friars, and the White Friars, and the friars of all sorts of \ncolours, in all directions.  This obdurate and harsh spirit of the \nScottish Reformers (the Scotch have always been rather a sullen and \nfrowning people in religious matters) put up the blood of the \nRomish French court, and caused France to send troops over to \nScotland, with the hope of setting the friars of all sorts of \ncolours on their legs again; of conquering that country first, and \nEngland afterwards; and so crushing the Reformation all to pieces.  \nThe Scottish Reformers, who had formed a great league which they \ncalled The Congregation of the Lord, secretly represented to \nElizabeth that, if the reformed religion got the worst of it with \nthem, it would be likely to get the worst of it in England too; and \nthus, Elizabeth, though she had a high notion of the rights of \nKings and Queens to do anything they liked, sent an army to \nScotland to support the Reformers, who were in arms against their \nsovereign.  All these proceedings led to a treaty of peace at \nEdinburgh, under which the French consented to depart from the \nkingdom.  By a separate treaty, Mary and her young husband engaged \nto renounce their assumed title of King and Queen of England.  But \nthis treaty they never fulfilled.\n\nIt happened, soon after matters had got to this state, that the \nyoung French King died, leaving Mary a young widow.  She was then \ninvited by her Scottish subjects to return home and reign over \nthem; and as she was not now happy where she was, she, after a \nlittle time, complied.\n\nElizabeth had been Queen three years, when Mary Queen of Scots \nembarked at Calais for her own rough, quarrelling country.  As she \ncame out of the harbour, a vessel was lost before her eyes, and she \nsaid, 'O! good God! what an omen this is for such a voyage!'  She \nwas very fond of France, and sat on the deck, looking back at it \nand weeping, until it was quite dark.  When she went to bed, she \ndirected to be called at daybreak, if the French coast were still \nvisible, that she might behold it for the last time.  As it proved \nto be a clear morning, this was done, and she again wept for the \ncountry she was leaving, and said many times, ' Farewell, France!  \nFarewell, France!  I shall never see thee again!'  All this was \nlong remembered afterwards, as sorrowful and interesting in a fair \nyoung princess of nineteen.  Indeed, I am afraid it gradually came, \ntogether with her other distresses, to surround her with greater \nsympathy than she deserved.\n\nWhen she came to Scotland, and took up her abode at the palace of \nHolyrood in Edinburgh, she found herself among uncouth strangers \nand wild uncomfortable customs very different from her experiences \nin the court of France.  The very people who were disposed to love \nher, made her head ache when she was tired out by her voyage, with \na serenade of discordant music - a fearful concert of bagpipes, I \nsuppose - and brought her and her train home to her palace on \nmiserable little Scotch horses that appeared to be half starved.  \nAmong the people who were not disposed to love her, she found the \npowerful leaders of the Reformed Church, who were bitter upon her \namusements, however innocent, and denounced music and dancing as \nworks of the devil.  John Knox himself often lectured her, \nviolently and angrily, and did much to make her life unhappy.  All \nthese reasons confirmed her old attachment to the Romish religion, \nand caused her, there is no doubt, most imprudently and dangerously \nboth for herself and for England too, to give a solemn pledge to \nthe heads of the Romish Church that if she ever succeeded to the \nEnglish crown, she would set up that religion again.  In reading \nher unhappy history, you must always remember this; and also that \nduring her whole life she was constantly put forward against the \nQueen, in some form or other, by the Romish party.\n\nThat Elizabeth, on the other hand, was not inclined to like her, is \npretty certain.  Elizabeth was very vain and jealous, and had an \nextraordinary dislike to people being married.  She treated Lady \nCatherine Grey, sister of the beheaded Lady Jane, with such \nshameful severity, for no other reason than her being secretly \nmarried, that she died and her husband was ruined; so, when a \nsecond marriage for Mary began to be talked about, probably \nElizabeth disliked her more.  Not that Elizabeth wanted suitors of \nher own, for they started up from Spain, Austria, Sweden, and \nEngland.  Her English lover at this time, and one whom she much \nfavoured too, was LORD ROBERT DUDLEY, Earl of Leicester - himself \nsecretly married to AMY ROBSART, the daughter of an English \ngentleman, whom he was strongly suspected of causing to be \nmurdered, down at his country seat, Cumnor Hall in Berkshire, that \nhe might be free to marry the Queen.  Upon this story, the great \nwriter, SIR WALTER SCOTT, has founded one of his best romances.  \nBut if Elizabeth knew how to lead her handsome favourite on, for \nher own vanity and pleasure, she knew how to stop him for her own \npride; and his love, and all the other proposals, came to nothing.  \nThe Queen always declared in good set speeches, that she would \nnever be married at all, but would live and die a Maiden Queen.  It \nwas a very pleasant and meritorious declaration, I suppose; but it \nhas been puffed and trumpeted so much, that I am rather tired of it \nmyself.\n\nDivers princes proposed to marry Mary, but the English court had \nreasons for being jealous of them all, and even proposed as a \nmatter of policy that she should marry that very Earl of Leicester \nwho had aspired to be the husband of Elizabeth.  At last, LORD \nDARNLEY, son of the Earl of Lennox, and himself descended from the \nRoyal Family of Scotland, went over with Elizabeth's consent to try \nhis fortune at Holyrood.  He was a tall simpleton; and could dance \nand play the guitar; but I know of nothing else he could do, unless \nit were to get very drunk, and eat gluttonously, and make a \ncontemptible spectacle of himself in many mean and vain ways.  \nHowever, he gained Mary's heart, not disdaining in the pursuit of \nhis object to ally himself with one of her secretaries, DAVID \nRIZZIO, who had great influence with her.  He soon married the \nQueen.  This marriage does not say much for her, but what followed \nwill presently say less.\n\nMary's brother, the EARL OF MURRAY, and head of the Protestant \nparty in Scotland, had opposed this marriage, partly on religious \ngrounds, and partly perhaps from personal dislike of the very \ncontemptible bridegroom.  When it had taken place, through Mary's \ngaining over to it the more powerful of the lords about her, she \nbanished Murray for his pains; and, when he and some other nobles \nrose in arms to support the reformed religion, she herself, within \na month of her wedding day, rode against them in armour with loaded \npistols in her saddle.  Driven out of Scotland, they presented \nthemselves before Elizabeth - who called them traitors in public, \nand assisted them in private, according to her crafty nature.\n\nMary had been married but a little while, when she began to hate \nher husband, who, in his turn, began to hate that David Rizzio, \nwith whom he had leagued to gain her favour, and whom he now \nbelieved to be her lover.  He hated Rizzio to that extent, that he \nmade a compact with LORD RUTHVEN and three other lords to get rid \nof him by murder.  This wicked agreement they made in solemn \nsecrecy upon the first of March, fifteen hundred and sixty-six, and \non the night of Saturday the ninth, the conspirators were brought \nby Darnley up a private staircase, dark and steep, into a range of \nrooms where they knew that Mary was sitting at supper with her \nsister, Lady Argyle, and this doomed man.  When they went into the \nroom, Darnley took the Queen round the waist, and Lord Ruthven, who \nhad risen from a bed of sickness to do this murder, came in, gaunt \nand ghastly, leaning on two men.  Rizzio ran behind the Queen for \nshelter and protection.  'Let him come out of the room,' said \nRuthven.  'He shall not leave the room,' replied the Queen; 'I read \nhis danger in your face, and it is my will that he remain here.'  \nThey then set upon him, struggled with him, overturned the table, \ndragged him out, and killed him with fifty-six stabs.  When the \nQueen heard that he was dead, she said, 'No more tears.  I will \nthink now of revenge!'\n\nWithin a day or two, she gained her husband over, and prevailed on \nthe tall idiot to abandon the conspirators and fly with her to \nDunbar.  There, he issued a proclamation, audaciously and falsely \ndenying that he had any knowledge of the late bloody business; and \nthere they were joined by the EARL BOTHWELL and some other nobles.  \nWith their help, they raised eight thousand men; returned to \nEdinburgh, and drove the assassins into England.  Mary soon \nafterwards gave birth to a son - still thinking of revenge.\n\nThat she should have had a greater scorn for her husband after his \nlate cowardice and treachery than she had had before, was natural \nenough.  There is little doubt that she now began to love Bothwell \ninstead, and to plan with him means of getting rid of Darnley.  \nBothwell had such power over her that he induced her even to pardon \nthe assassins of Rizzio.  The arrangements for the Christening of \nthe young Prince were entrusted to him, and he was one of the most \nimportant people at the ceremony, where the child was named JAMES:  \nElizabeth being his godmother, though not present on the occasion.  \nA week afterwards, Darnley, who had left Mary and gone to his \nfather's house at Glasgow, being taken ill with the small-pox, she \nsent her own physician to attend him.  But there is reason to \napprehend that this was merely a show and a pretence, and that she \nknew what was doing, when Bothwell within another month proposed to \none of the late conspirators against Rizzio, to murder Darnley, \n'for that it was the Queen's mind that he should be taken away.'  \nIt is certain that on that very day she wrote to her ambassador in \nFrance, complaining of him, and yet went immediately to Glasgow, \nfeigning to be very anxious about him, and to love him very much.  \nIf she wanted to get him in her power, she succeeded to her heart's \ncontent; for she induced him to go back with her to Edinburgh, and \nto occupy, instead of the palace, a lone house outside the city \ncalled the Kirk of Field.  Here, he lived for about a week.  One \nSunday night, she remained with him until ten o'clock, and then \nleft him, to go to Holyrood to be present at an entertainment given \nin celebration of the marriage of one of her favourite servants.  \nAt two o'clock in the morning the city was shaken by a great \nexplosion, and the Kirk of Field was blown to atoms.\n\nDarnley's body was found next day lying under a tree at some \ndistance.  How it came there, undisfigured and unscorched by \ngunpowder, and how this crime came to be so clumsily and strangely \ncommitted, it is impossible to discover.  The deceitful character \nof Mary, and the deceitful character of Elizabeth, have rendered \nalmost every part of their joint history uncertain and obscure.  \nBut, I fear that Mary was unquestionably a party to her husband's \nmurder, and that this was the revenge she had threatened.  The \nScotch people universally believed it.  Voices cried out in the \nstreets of Edinburgh in the dead of the night, for justice on the \nmurderess.  Placards were posted by unknown hands in the public \nplaces denouncing Bothwell as the murderer, and the Queen as his \naccomplice; and, when he afterwards married her (though himself \nalready married), previously making a show of taking her prisoner \nby force, the indignation of the people knew no bounds.  The women \nparticularly are described as having been quite frantic against the \nQueen, and to have hooted and cried after her in the streets with \nterrific vehemence.\n\nSuch guilty unions seldom prosper.  This husband and wife had lived \ntogether but a month, when they were separated for ever by the \nsuccesses of a band of Scotch nobles who associated against them \nfor the protection of the young Prince:  whom Bothwell had vainly \nendeavoured to lay hold of, and whom he would certainly have \nmurdered, if the EARL OF MAR, in whose hands the boy was, had not \nbeen firmly and honourably faithful to his trust.  Before this \nangry power, Bothwell fled abroad, where he died, a prisoner and \nmad, nine miserable years afterwards.  Mary being found by the \nassociated lords to deceive them at every turn, was sent a prisoner \nto Lochleven Castle; which, as it stood in the midst of a lake, \ncould only be approached by boat.  Here, one LORD LINDSAY, who was \nso much of a brute that the nobles would have done better if they \nhad chosen a mere gentleman for their messenger, made her sign her \nabdication, and appoint Murray, Regent of Scotland.  Here, too, \nMurray saw her in a sorrowing and humbled state.\n\nShe had better have remained in the castle of Lochleven, dull \nprison as it was, with the rippling of the lake against it, and the \nmoving shadows of the water on the room walls; but she could not \nrest there, and more than once tried to escape.  The first time she \nhad nearly succeeded, dressed in the clothes of her own washer-\nwoman, but, putting up her hand to prevent one of the boatmen from \nlifting her veil, the men suspected her, seeing how white it was, \nand rowed her back again.  A short time afterwards, her fascinating \nmanners enlisted in her cause a boy in the Castle, called the \nlittle DOUGLAS, who, while the family were at supper, stole the \nkeys of the great gate, went softly out with the Queen, locked the \ngate on the outside, and rowed her away across the lake, sinking \nthe keys as they went along.  On the opposite shore she was met by \nanother Douglas, and some few lords; and, so accompanied, rode away \non horseback to Hamilton, where they raised three thousand men.  \nHere, she issued a proclamation declaring that the abdication she \nhad signed in her prison was illegal, and requiring the Regent to \nyield to his lawful Queen.  Being a steady soldier, and in no way \ndiscomposed although he was without an army, Murray pretended to \ntreat with her, until he had collected a force about half equal to \nher own, and then he gave her battle.  In one quarter of an hour he \ncut down all her hopes.  She had another weary ride on horse-back \nof sixty long Scotch miles, and took shelter at Dundrennan Abbey, \nwhence she fled for safety to Elizabeth's dominions.\n\nMary Queen of Scots came to England - to her own ruin, the trouble \nof the kingdom, and the misery and death of many - in the year one \nthousand five hundred and sixty-eight.  How she left it and the \nworld, nineteen years afterwards, we have now to see.\n\n\nSECOND PART\n\n\nWHEN Mary Queen of Scots arrived in England, without money and even \nwithout any other clothes than those she wore, she wrote to \nElizabeth, representing herself as an innocent and injured piece of \nRoyalty, and entreating her assistance to oblige her Scottish \nsubjects to take her back again and obey her.  But, as her \ncharacter was already known in England to be a very different one \nfrom what she made it out to be, she was told in answer that she \nmust first clear herself.  Made uneasy by this condition, Mary, \nrather than stay in England, would have gone to Spain, or to \nFrance, or would even have gone back to Scotland.  But, as her \ndoing either would have been likely to trouble England afresh, it \nwas decided that she should be detained here.  She first came to \nCarlisle, and, after that, was moved about from castle to castle, \nas was considered necessary; but England she never left again.\n\nAfter trying very hard to get rid of the necessity of clearing \nherself, Mary, advised by LORD HERRIES, her best friend in England, \nagreed to answer the charges against her, if the Scottish noblemen \nwho made them would attend to maintain them before such English \nnoblemen as Elizabeth might appoint for that purpose.  Accordingly, \nsuch an assembly, under the name of a conference, met, first at \nYork, and afterwards at Hampton Court.  In its presence Lord \nLennox, Darnley's father, openly charged Mary with the murder of \nhis son; and whatever Mary's friends may now say or write in her \nbehalf, there is no doubt that, when her brother Murray produced \nagainst her a casket containing certain guilty letters and verses \nwhich he stated to have passed between her and Bothwell, she \nwithdrew from the inquiry.  Consequently, it is to be supposed that \nshe was then considered guilty by those who had the best \nopportunities of judging of the truth, and that the feeling which \nafterwards arose in her behalf was a very generous but not a very \nreasonable one.\n\nHowever, the DUKE OF NORFOLK, an honourable but rather weak \nnobleman, partly because Mary was captivating, partly because he \nwas ambitious, partly because he was over-persuaded by artful \nplotters against Elizabeth, conceived a strong idea that he would \nlike to marry the Queen of Scots - though he was a little \nfrightened, too, by the letters in the casket.  This idea being \nsecretly encouraged by some of the noblemen of Elizabeth's court, \nand even by the favourite Earl of Leicester (because it was \nobjected to by other favourites who were his rivals), Mary \nexpressed her approval of it, and the King of France and the King \nof Spain are supposed to have done the same.  It was not so quietly \nplanned, though, but that it came to Elizabeth's ears, who warned \nthe Duke 'to be careful what sort of pillow he was going to lay his \nhead upon.'  He made a humble reply at the time; but turned sulky \nsoon afterwards, and, being considered dangerous, was sent to the \nTower.\n\nThus, from the moment of Mary's coming to England she began to be \nthe centre of plots and miseries.\n\nA rise of the Catholics in the north was the next of these, and it \nwas only checked by many executions and much bloodshed.  It was \nfollowed by a great conspiracy of the Pope and some of the Catholic \nsovereigns of Europe to depose Elizabeth, place Mary on the throne, \nand restore the unreformed religion.  It is almost impossible to \ndoubt that Mary knew and approved of this; and the Pope himself was \nso hot in the matter that he issued a bull, in which he openly \ncalled Elizabeth the 'pretended Queen' of England, excommunicated \nher, and excommunicated all her subjects who should continue to \nobey her.  A copy of this miserable paper got into London, and was \nfound one morning publicly posted on the Bishop of London's gate.  \nA great hue and cry being raised, another copy was found in the \nchamber of a student of Lincoln's Inn, who confessed, being put \nupon the rack, that he had received it from one JOHN FELTON, a rich \ngentleman who lived across the Thames, near Southwark.  This John \nFelton, being put upon the rack too, confessed that he had posted \nthe placard on the Bishop's gate.  For this offence he was, within \nfour days, taken to St. Paul's Churchyard, and there hanged and \nquartered.  As to the Pope's bull, the people by the reformation \nhaving thrown off the Pope, did not care much, you may suppose, for \nthe Pope's throwing off them.  It was a mere dirty piece of paper, \nand not half so powerful as a street ballad.\n\nOn the very day when Felton was brought to his trial, the poor Duke \nof Norfolk was released.  It would have been well for him if he had \nkept away from the Tower evermore, and from the snares that had \ntaken him there.  But, even while he was in that dismal place he \ncorresponded with Mary, and as soon as he was out of it, he began \nto plot again.  Being discovered in correspondence with the Pope, \nwith a view to a rising in England which should force Elizabeth to \nconsent to his marriage with Mary and to repeal the laws against \nthe Catholics, he was re-committed to the Tower and brought to \ntrial.  He was found guilty by the unanimous verdict of the Lords \nwho tried him, and was sentenced to the block.\n\nIt is very difficult to make out, at this distance of time, and \nbetween opposite accounts, whether Elizabeth really was a humane \nwoman, or desired to appear so, or was fearful of shedding the \nblood of people of great name who were popular in the country.  \nTwice she commanded and countermanded the execution of this Duke, \nand it did not take place until five months after his trial.  The \nscaffold was erected on Tower Hill, and there he died like a brave \nman.  He refused to have his eyes bandaged, saying that he was not \nat all afraid of death; and he admitted the justice of his \nsentence, and was much regretted by the people.\n\nAlthough Mary had shrunk at the most important time from disproving \nher guilt, she was very careful never to do anything that would \nadmit it.  All such proposals as were made to her by Elizabeth for \nher release, required that admission in some form or other, and \ntherefore came to nothing.  Moreover, both women being artful and \ntreacherous, and neither ever trusting the other, it was not likely \nthat they could ever make an agreement.  So, the Parliament, \naggravated by what the Pope had done, made new and strong laws \nagainst the spreading of the Catholic religion in England, and \ndeclared it treason in any one to say that the Queen and her \nsuccessors were not the lawful sovereigns of England.  It would \nhave done more than this, but for Elizabeth's moderation.\n\nSince the Reformation, there had come to be three great sects of \nreligious people - or people who called themselves so - in England; \nthat is to say, those who belonged to the Reformed Church, those \nwho belonged to the Unreformed Church, and those who were called \nthe Puritans, because they said that they wanted to have everything \nvery pure and plain in all the Church service.  These last were for \nthe most part an uncomfortable people, who thought it highly \nmeritorious to dress in a hideous manner, talk through their noses, \nand oppose all harmless enjoyments.  But they were powerful too, \nand very much in earnest, and they were one and all the determined \nenemies of the Queen of Scots.  The Protestant feeling in England \nwas further strengthened by the tremendous cruelties to which \nProtestants were exposed in France and in the Netherlands.  Scores \nof thousands of them were put to death in those countries with \nevery cruelty that can be imagined, and at last, in the autumn of \nthe year one thousand five hundred and seventy-two, one of the \ngreatest barbarities ever committed in the world took place at \nParis.\n\nIt is called in history, THE MASSACRE OF SAINT BARTHOLOMEW, because \nit took place on Saint Bartholomew's Eve.  The day fell on Saturday \nthe twenty-third of August.  On that day all the great leaders of \nthe Protestants (who were there called HUGUENOTS) were assembled \ntogether, for the purpose, as was represented to them, of doing \nhonour to the marriage of their chief, the young King of Navarre, \nwith the sister of CHARLES THE NINTH:  a miserable young King who \nthen occupied the French throne.  This dull creature was made to \nbelieve by his mother and other fierce Catholics about him that the \nHuguenots meant to take his life; and he was persuaded to give \nsecret orders that, on the tolling of a great bell, they should be \nfallen upon by an overpowering force of armed men, and slaughtered \nwherever they could be found.  When the appointed hour was close at \nhand, the stupid wretch, trembling from head to foot, was taken \ninto a balcony by his mother to see the atrocious work begun.  The \nmoment the bell tolled, the murderers broke forth.  During all that \nnight and the two next days, they broke into the houses, fired the \nhouses, shot and stabbed the Protestants, men, women, and children, \nand flung their bodies into the streets.  They were shot at in the \nstreets as they passed along, and their blood ran down the gutters.  \nUpwards of ten thousand Protestants were killed in Paris alone; in \nall France four or five times that number.  To return thanks to \nHeaven for these diabolical murders, the Pope and his train \nactually went in public procession at Rome, and as if this were not \nshame enough for them, they had a medal struck to commemorate the \nevent.  But, however comfortable the wholesale murders were to \nthese high authorities, they had not that soothing effect upon the \ndoll-King.  I am happy to state that he never knew a moment's peace \nafterwards; that he was continually crying out that he saw the \nHuguenots covered with blood and wounds falling dead before him; \nand that he died within a year, shrieking and yelling and raving to \nthat degree, that if all the Popes who had ever lived had been \nrolled into one, they would not have afforded His guilty Majesty \nthe slightest consolation.\n\nWhen the terrible news of the massacre arrived in England, it made \na powerful impression indeed upon the people.  If they began to run \na little wild against the Catholics at about this time, this \nfearful reason for it, coming so soon after the days of bloody \nQueen Mary, must be remembered in their excuse.  The Court was not \nquite so honest as the people - but perhaps it sometimes is not.  \nIt received the French ambassador, with all the lords and ladies \ndressed in deep mourning, and keeping a profound silence.  \nNevertheless, a proposal of marriage which he had made to Elizabeth \nonly two days before the eve of Saint Bartholomew, on behalf of the \nDuke of Alenon, the French King's brother, a boy of seventeen, \nstill went on; while on the other hand, in her usual crafty way, \nthe Queen secretly supplied the Huguenots with money and weapons.\n\nI must say that for a Queen who made all those fine speeches, of \nwhich I have confessed myself to be rather tired, about living and \ndying a Maiden Queen, Elizabeth was 'going' to be married pretty \noften.  Besides always having some English favourite or other whom \nshe by turns encouraged and swore at and knocked about - for the \nmaiden Queen was very free with her fists - she held this French \nDuke off and on through several years.  When he at last came over \nto England, the marriage articles were actually drawn up, and it \nwas settled that the wedding should take place in six weeks.  The \nQueen was then so bent upon it, that she prosecuted a poor Puritan \nnamed STUBBS, and a poor bookseller named PAGE, for writing and \npublishing a pamphlet against it.  Their right hands were chopped \noff for this crime; and poor Stubbs - more loyal than I should have \nbeen myself under the circumstances - immediately pulled off his \nhat with his left hand, and cried, 'God save the Queen!'  Stubbs \nwas cruelly treated; for the marriage never took place after all, \nthough the Queen pledged herself to the Duke with a ring from her \nown finger.  He went away, no better than he came, when the \ncourtship had lasted some ten years altogether; and he died a \ncouple of years afterwards, mourned by Elizabeth, who appears to \nhave been really fond of him.  It is not much to her credit, for he \nwas a bad enough member of a bad family.\n\nTo return to the Catholics.  There arose two orders of priests, who \nwere very busy in England, and who were much dreaded.  These were \nthe JESUITS (who were everywhere in all sorts of disguises), and \nthe SEMINARY PRIESTS.  The people had a great horror of the first, \nbecause they were known to have taught that murder was lawful if it \nwere done with an object of which they approved; and they had a \ngreat horror of the second, because they came to teach the old \nreligion, and to be the successors of 'Queen Mary's priests,' as \nthose yet lingering in England were called, when they should die \nout.  The severest laws were made against them, and were most \nunmercifully executed.  Those who sheltered them in their houses \noften suffered heavily for what was an act of humanity; and the \nrack, that cruel torture which tore men's limbs asunder, was \nconstantly kept going.  What these unhappy men confessed, or what \nwas ever confessed by any one under that agony, must always be \nreceived with great doubt, as it is certain that people have \nfrequently owned to the most absurd and impossible crimes to escape \nsuch dreadful suffering.  But I cannot doubt it to have been proved \nby papers, that there were many plots, both among the Jesuits, and \nwith France, and with Scotland, and with Spain, for the destruction \nof Queen Elizabeth, for the placing of Mary on the throne, and for \nthe revival of the old religion.\n\nIf the English people were too ready to believe in plots, there \nwere, as I have said, good reasons for it.  When the massacre of \nSaint Bartholomew was yet fresh in their recollection, a great \nProtestant Dutch hero, the PRINCE OF ORANGE, was shot by an \nassassin, who confessed that he had been kept and trained for the \npurpose in a college of Jesuits.  The Dutch, in this surprise and \ndistress, offered to make Elizabeth their sovereign, but she \ndeclined the honour, and sent them a small army instead, under the \ncommand of the Earl of Leicester, who, although a capital Court \nfavourite, was not much of a general.  He did so little in Holland, \nthat his campaign there would probably have been forgotten, but for \nits occasioning the death of one of the best writers, the best \nknights, and the best gentlemen, of that or any age.  This was SIR \nPHILIP SIDNEY, who was wounded by a musket ball in the thigh as he \nmounted a fresh horse, after having had his own killed under him.  \nHe had to ride back wounded, a long distance, and was very faint \nwith fatigue and loss of blood, when some water, for which he had \neagerly asked, was handed to him.  But he was so good and gentle \neven then, that seeing a poor badly wounded common soldier lying on \nthe ground, looking at the water with longing eyes, he said, 'Thy \nnecessity is greater than mine,' and gave it up to him.  This \ntouching action of a noble heart is perhaps as well known as any \nincident in history - is as famous far and wide as the blood-\nstained Tower of London, with its axe, and block, and murders out \nof number.  So delightful is an act of true humanity, and so glad \nare mankind to remember it.\n\nAt home, intelligence of plots began to thicken every day.  I \nsuppose the people never did live under such continual terrors as \nthose by which they were possessed now, of Catholic risings, and \nburnings, and poisonings, and I don't know what.  Still, we must \nalways remember that they lived near and close to awful realities \nof that kind, and that with their experience it was not difficult \nto believe in any enormity.  The government had the same fear, and \ndid not take the best means of discovering the truth - for, besides \ntorturing the suspected, it employed paid spies, who will always \nlie for their own profit.  It even made some of the conspiracies it \nbrought to light, by sending false letters to disaffected people, \ninviting them to join in pretended plots, which they too readily \ndid.\n\nBut, one great real plot was at length discovered, and it ended the \ncareer of Mary, Queen of Scots.  A seminary priest named BALLARD, \nand a Spanish soldier named SAVAGE, set on and encouraged by \ncertain French priests, imparted a design to one ANTONY BABINGTON - \na gentleman of fortune in Derbyshire, who had been for some time a \nsecret agent of Mary's - for murdering the Queen.  Babington then \nconfided the scheme to some other Catholic gentlemen who were his \nfriends, and they joined in it heartily.  They were vain, weak-\nheaded young men, ridiculously confident, and preposterously proud \nof their plan; for they got a gimcrack painting made, of the six \nchoice spirits who were to murder Elizabeth, with Babington in an \nattitude for the centre figure.  Two of their number, however, one \nof whom was a priest, kept Elizabeth's wisest minister, SIR FRANCIS \nWALSINGHAM, acquainted with the whole project from the first.  The \nconspirators were completely deceived to the final point, when \nBabington gave Savage, because he was shabby, a ring from his \nfinger, and some money from his purse, wherewith to buy himself new \nclothes in which to kill the Queen.  Walsingham, having then full \nevidence against the whole band, and two letters of Mary's besides, \nresolved to seize them.  Suspecting something wrong, they stole out \nof the city, one by one, and hid themselves in St. John's Wood, and \nother places which really were hiding places then; but they were \nall taken, and all executed.  When they were seized, a gentleman \nwas sent from Court to inform Mary of the fact, and of her being \ninvolved in the discovery.  Her friends have complained that she \nwas kept in very hard and severe custody.  It does not appear very \nlikely, for she was going out a hunting that very morning.\n\nQueen Elizabeth had been warned long ago, by one in France who had \ngood information of what was secretly doing, that in holding Mary \nalive, she held 'the wolf who would devour her.'  The Bishop of \nLondon had, more lately, given the Queen's favourite minister the \nadvice in writing, 'forthwith to cut off the Scottish Queen's \nhead.'  The question now was, what to do with her?  The Earl of \nLeicester wrote a little note home from Holland, recommending that \nshe should be quietly poisoned; that noble favourite having \naccustomed his mind, it is possible, to remedies of that nature.  \nHis black advice, however, was disregarded, and she was brought to \ntrial at Fotheringay Castle in Northamptonshire, before a tribunal \nof forty, composed of both religions.  There, and in the Star \nChamber at Westminster, the trial lasted a fortnight.  She defended \nherself with great ability, but could only deny the confessions \nthat had been made by Babington and others; could only call her own \nletters, produced against her by her own secretaries, forgeries; \nand, in short, could only deny everything.  She was found guilty, \nand declared to have incurred the penalty of death.  The Parliament \nmet, approved the sentence, and prayed the Queen to have it \nexecuted.  The Queen replied that she requested them to consider \nwhether no means could be found of saving Mary's life without \nendangering her own.  The Parliament rejoined, No; and the citizens \nilluminated their houses and lighted bonfires, in token of their \njoy that all these plots and troubles were to be ended by the death \nof the Queen of Scots.\n\nShe, feeling sure that her time was now come, wrote a letter to the \nQueen of England, making three entreaties; first, that she might be \nburied in France; secondly, that she might not be executed in \nsecret, but before her servants and some others; thirdly, that \nafter her death, her servants should not be molested, but should be \nsuffered to go home with the legacies she left them.  It was an \naffecting letter, and Elizabeth shed tears over it, but sent no \nanswer.  Then came a special ambassador from France, and another \nfrom Scotland, to intercede for Mary's life; and then the nation \nbegan to clamour, more and more, for her death.\n\nWhat the real feelings or intentions of Elizabeth were, can never \nbe known now; but I strongly suspect her of only wishing one thing \nmore than Mary's death, and that was to keep free of the blame of \nit.  On the first of February, one thousand five hundred and \neighty-seven, Lord Burleigh having drawn out the warrant for the \nexecution, the Queen sent to the secretary DAVISON to bring it to \nher, that she might sign it:  which she did.  Next day, when \nDavison told her it was sealed, she angrily asked him why such \nhaste was necessary?  Next day but one, she joked about it, and \nswore a little.  Again, next day but one, she seemed to complain \nthat it was not yet done, but still she would not be plain with \nthose about her.  So, on the seventh, the Earls of Kent and \nShrewsbury, with the Sheriff of Northamptonshire, came with the \nwarrant to Fotheringay, to tell the Queen of Scots to prepare for \ndeath.\n\nWhen those messengers of ill omen were gone, Mary made a frugal \nsupper, drank to her servants, read over her will, went to bed, \nslept for some hours, and then arose and passed the remainder of \nthe night saying prayers.  In the morning she dressed herself in \nher best clothes; and, at eight o'clock when the sheriff came for \nher to her chapel, took leave of her servants who were there \nassembled praying with her, and went down-stairs, carrying a Bible \nin one hand and a crucifix in the other.  Two of her women and four \nof her men were allowed to be present in the hall; where a low \nscaffold, only two feet from the ground, was erected and covered \nwith black; and where the executioner from the Tower, and his \nassistant, stood, dressed in black velvet.  The hall was full of \npeople.  While the sentence was being read she sat upon a stool; \nand, when it was finished, she again denied her guilt, as she had \ndone before.  The Earl of Kent and the Dean of Peterborough, in \ntheir Protestant zeal, made some very unnecessary speeches to her; \nto which she replied that she died in the Catholic religion, and \nthey need not trouble themselves about that matter.  When her head \nand neck were uncovered by the executioners, she said that she had \nnot been used to be undressed by such hands, or before so much \ncompany.  Finally, one of her women fastened a cloth over her face, \nand she laid her neck upon the block, and repeated more than once \nin Latin, 'Into thy hands, O Lord, I commend my spirit!'  Some say \nher head was struck off in two blows, some say in three.  However \nthat be, when it was held up, streaming with blood, the real hair \nbeneath the false hair she had long worn was seen to be as grey as \nthat of a woman of seventy, though she was at that time only in her \nforty-sixth year.  All her beauty was gone.\n\nBut she was beautiful enough to her little dog, who cowered under \nher dress, frightened, when she went upon the scaffold, and who lay \ndown beside her headless body when all her earthly sorrows were \nover.\n\n\nTHIRD PART\n\n\nON its being formally made known to Elizabeth that the sentence had \nbeen executed on the Queen of Scots, she showed the utmost grief \nand rage, drove her favourites from her with violent indignation, \nand sent Davison to the Tower; from which place he was only \nreleased in the end by paying an immense fine which completely \nruined him.  Elizabeth not only over-acted her part in making these \npretences, but most basely reduced to poverty one of her faithful \nservants for no other fault than obeying her commands.\n\nJames, King of Scotland, Mary's son, made a show likewise of being \nvery angry on the occasion; but he was a pensioner of England to \nthe amount of five thousand pounds a year, and he had known very \nlittle of his mother, and he possibly regarded her as the murderer \nof his father, and he soon took it quietly.\n\nPhilip, King of Spain, however, threatened to do greater things \nthan ever had been done yet, to set up the Catholic religion and \npunish Protestant England.  Elizabeth, hearing that he and the \nPrince of Parma were making great preparations for this purpose, in \norder to be beforehand with them sent out ADMIRAL DRAKE (a famous \nnavigator, who had sailed about the world, and had already brought \ngreat plunder from Spain) to the port of Cadiz, where he burnt a \nhundred vessels full of stores.  This great loss obliged the \nSpaniards to put off the invasion for a year; but it was none the \nless formidable for that, amounting to one hundred and thirty \nships, nineteen thousand soldiers, eight thousand sailors, two \nthousand slaves, and between two and three thousand great guns.  \nEngland was not idle in making ready to resist this great force.  \nAll the men between sixteen years old and sixty, were trained and \ndrilled; the national fleet of ships (in number only thirty-four at \nfirst) was enlarged by public contributions and by private ships, \nfitted out by noblemen; the city of London, of its own accord, \nfurnished double the number of ships and men that it was required \nto provide; and, if ever the national spirit was up in England, it \nwas up all through the country to resist the Spaniards.  Some of \nthe Queen's advisers were for seizing the principal English \nCatholics, and putting them to death; but the Queen - who, to her \nhonour, used to say, that she would never believe any ill of her \nsubjects, which a parent would not believe of her own children - \nrejected the advice, and only confined a few of those who were the \nmost suspected, in the fens in Lincolnshire.  The great body of \nCatholics deserved this confidence; for they behaved most loyally, \nnobly, and bravely.\n\nSo, with all England firing up like one strong, angry man, and with \nboth sides of the Thames fortified, and with the soldiers under \narms, and with the sailors in their ships, the country waited for \nthe coming of the proud Spanish fleet, which was called THE \nINVINCIBLE ARMADA.  The Queen herself, riding in armour on a white \nhorse, and the Earl of Essex and the Earl of Leicester holding her \nbridal rein, made a brave speech to the troops at Tilbury Fort \nopposite Gravesend, which was received with such enthusiasm as is \nseldom known.  Then came the Spanish Armada into the English \nChannel, sailing along in the form of a half moon, of such great \nsize that it was seven miles broad.  But the English were quickly \nupon it, and woe then to all the Spanish ships that dropped a \nlittle out of the half moon, for the English took them instantly!  \nAnd it soon appeared that the great Armada was anything but \ninvincible, for on a summer night, bold Drake sent eight blazing \nfire-ships right into the midst of it.  In terrible consternation \nthe Spaniards tried to get out to sea, and so became dispersed; the \nEnglish pursued them at a great advantage; a storm came on, and \ndrove the Spaniards among rocks and shoals; and the swift end of \nthe Invincible fleet was, that it lost thirty great ships and ten \nthousand men, and, defeated and disgraced, sailed home again.  \nBeing afraid to go by the English Channel, it sailed all round \nScotland and Ireland; some of the ships getting cast away on the \nlatter coast in bad weather, the Irish, who were a kind of savages, \nplundered those vessels and killed their crews.  So ended this \ngreat attempt to invade and conquer England.  And I think it will \nbe a long time before any other invincible fleet coming to England \nwith the same object, will fare much better than the Spanish \nArmada.\n\nThough the Spanish king had had this bitter taste of English \nbravery, he was so little the wiser for it, as still to entertain \nhis old designs, and even to conceive the absurd idea of placing \nhis daughter on the English throne.  But the Earl of Essex, SIR \nWALTER RALEIGH, SIR THOMAS HOWARD, and some other distinguished \nleaders, put to sea from Plymouth, entered the port of Cadiz once \nmore, obtained a complete victory over the shipping assembled \nthere, and got possession of the town.  In obedience to the Queen's \nexpress instructions, they behaved with great humanity; and the \nprincipal loss of the Spaniards was a vast sum of money which they \nhad to pay for ransom.  This was one of many gallant achievements \non the sea, effected in this reign.  Sir Walter Raleigh himself, \nafter marrying a maid of honour and giving offence to the Maiden \nQueen thereby, had already sailed to South America in search of \ngold.\n\nThe Earl of Leicester was now dead, and so was Sir Thomas \nWalsingham, whom Lord Burleigh was soon to follow.  The principal \nfavourite was the EARL OF ESSEX, a spirited and handsome man, a \nfavourite with the people too as well as with the Queen, and \npossessed of many admirable qualities.  It was much debated at \nCourt whether there should be peace with Spain or no, and he was \nvery urgent for war.  He also tried hard to have his own way in the \nappointment of a deputy to govern in Ireland.  One day, while this \nquestion was in dispute, he hastily took offence, and turned his \nback upon the Queen; as a gentle reminder of which impropriety, the \nQueen gave him a tremendous box on the ear, and told him to go to \nthe devil.  He went home instead, and did not reappear at Court for \nhalf a year or so, when he and the Queen were reconciled, though \nnever (as some suppose) thoroughly.\n\nFrom this time the fate of the Earl of Essex and that of the Queen \nseemed to be blended together.  The Irish were still perpetually \nquarrelling and fighting among themselves, and he went over to \nIreland as Lord Lieutenant, to the great joy of his enemies (Sir \nWalter Raleigh among the rest), who were glad to have so dangerous \na rival far off.  Not being by any means successful there, and \nknowing that his enemies would take advantage of that circumstance \nto injure him with the Queen, he came home again, though against \nher orders.  The Queen being taken by surprise when he appeared \nbefore her, gave him her hand to kiss, and he was overjoyed - \nthough it was not a very lovely hand by this time - but in the \ncourse of the same day she ordered him to confine himself to his \nroom, and two or three days afterwards had him taken into custody.  \nWith the same sort of caprice - and as capricious an old woman she \nnow was, as ever wore a crown or a head either - she sent him broth \nfrom her own table on his falling ill from anxiety, and cried about \nhim.\n\nHe was a man who could find comfort and occupation in his books, \nand he did so for a time; not the least happy time, I dare say, of \nhis life.  But it happened unfortunately for him, that he held a \nmonopoly in sweet wines:  which means that nobody could sell them \nwithout purchasing his permission.  This right, which was only for \na term, expiring, he applied to have it renewed.  The Queen \nrefused, with the rather strong observation - but she DID make \nstrong observations - that an unruly beast must be stinted in his \nfood.  Upon this, the angry Earl, who had been already deprived of \nmany offices, thought himself in danger of complete ruin, and \nturned against the Queen, whom he called a vain old woman who had \ngrown as crooked in her mind as she had in her figure.  These \nuncomplimentary expressions the ladies of the Court immediately \nsnapped up and carried to the Queen, whom they did not put in a \nbetter tempter, you may believe.  The same Court ladies, when they \nhad beautiful dark hair of their own, used to wear false red hair, \nto be like the Queen.  So they were not very high-spirited ladies, \nhowever high in rank.\n\nThe worst object of the Earl of Essex, and some friends of his who \nused to meet at LORD SOUTHAMPTON'S house, was to obtain possession \nof the Queen, and oblige her by force to dismiss her ministers and \nchange her favourites.  On Saturday the seventh of February, one \nthousand six hundred and one, the council suspecting this, summoned \nthe Earl to come before them.  He, pretending to be ill, declined; \nit was then settled among his friends, that as the next day would \nbe Sunday, when many of the citizens usually assembled at the Cross \nby St. Paul's Cathedral, he should make one bold effort to induce \nthem to rise and follow him to the Palace.\n\nSo, on the Sunday morning, he and a small body of adherents started \nout of his house - Essex House by the Strand, with steps to the \nriver - having first shut up in it, as prisoners, some members of \nthe council who came to examine him - and hurried into the City \nwith the Earl at their head crying out 'For the Queen!  For the \nQueen!  A plot is laid for my life!'  No one heeded them, however, \nand when they came to St. Paul's there were no citizens there.  In \nthe meantime the prisoners at Essex House had been released by one \nof the Earl's own friends; he had been promptly proclaimed a \ntraitor in the City itself; and the streets were barricaded with \ncarts and guarded by soldiers.  The Earl got back to his house by \nwater, with difficulty, and after an attempt to defend his house \nagainst the troops and cannon by which it was soon surrounded, gave \nhimself up that night.  He was brought to trial on the nineteenth, \nand found guilty; on the twenty-fifth, he was executed on Tower \nHill, where he died, at thirty-four years old, both courageously \nand penitently.  His step-father suffered with him.  His enemy, Sir \nWalter Raleigh, stood near the scaffold all the time - but not so \nnear it as we shall see him stand, before we finish his history.\n\nIn this case, as in the cases of the Duke of Norfolk and Mary Queen \nof Scots, the Queen had commanded, and countermanded, and again \ncommanded, the execution.  It is probable that the death of her \nyoung and gallant favourite in the prime of his good qualities, was \nnever off her mind afterwards, but she held out, the same vain, \nobstinate and capricious woman, for another year.  Then she danced \nbefore her Court on a state occasion - and cut, I should think, a \nmighty ridiculous figure, doing so in an immense ruff, stomacher \nand wig, at seventy years old.  For another year still, she held \nout, but, without any more dancing, and as a moody, sorrowful, \nbroken creature.  At last, on the tenth of March, one thousand six \nhundred and three, having been ill of a very bad cold, and made \nworse by the death of the Countess of Nottingham who was her \nintimate friend, she fell into a stupor and was supposed to be \ndead.  She recovered her consciousness, however, and then nothing \nwould induce her to go to bed; for she said that she knew that if \nshe did, she should never get up again.  There she lay for ten \ndays, on cushions on the floor, without any food, until the Lord \nAdmiral got her into bed at last, partly by persuasions and partly \nby main force.  When they asked her who should succeed her, she \nreplied that her seat had been the seat of Kings, and that she \nwould have for her successor, 'No rascal's son, but a King's.'  \nUpon this, the lords present stared at one another, and took the \nliberty of asking whom she meant; to which she replied, 'Whom \nshould I mean, but our cousin of Scotland!'  This was on the \ntwenty-third of March.  They asked her once again that day, after \nshe was speechless, whether she was still in the same mind?  She \nstruggled up in bed, and joined her hands over her head in the form \nof a crown, as the only reply she could make.  At three o'clock \nnext morning, she very quietly died, in the forty-fifth year of her \nreign.\n\nThat reign had been a glorious one, and is made for ever memorable \nby the distinguished men who flourished in it.  Apart from the \ngreat voyagers, statesmen, and scholars, whom it produced, the \nnames of BACON, SPENSER, and SHAKESPEARE, will always be remembered \nwith pride and veneration by the civilised world, and will always \nimpart (though with no great reason, perhaps) some portion of their \nlustre to the name of Elizabeth herself.  It was a great reign for \ndiscovery, for commerce, and for English enterprise and spirit in \ngeneral.  It was a great reign for the Protestant religion and for \nthe Reformation which made England free.  The Queen was very \npopular, and in her progresses, or journeys about her dominions, \nwas everywhere received with the liveliest joy.  I think the truth \nis, that she was not half so good as she has been made out, and not \nhalf so bad as she has been made out.  She had her fine qualities, \nbut she was coarse, capricious, and treacherous, and had all the \nfaults of an excessively vain young woman long after she was an old \none.  On the whole, she had a great deal too much of her father in \nher, to please me.\n\nMany improvements and luxuries were introduced in the course of \nthese five-and-forty years in the general manner of living; but \ncock-fighting, bull-baiting, and bear-baiting, were still the \nnational amusements; and a coach was so rarely seen, and was such \nan ugly and cumbersome affair when it was seen, that even the Queen \nherself, on many high occasions, rode on horseback on a pillion \nbehind the Lord Chancellor.\n\n\n\nCHAPTER XXXII - ENGLAND UNDER JAMES THE FIRST\n\n\n\n'OUR cousin of Scotland' was ugly, awkward, and shuffling both in \nmind and person.  His tongue was much too large for his mouth, his \nlegs were much too weak for his body, and his dull goggle-eyes \nstared and rolled like an idiot's.  He was cunning, covetous, \nwasteful, idle, drunken, greedy, dirty, cowardly, a great swearer, \nand the most conceited man on earth.  His figure - what is commonly \ncalled rickety from his birth - presented a most ridiculous \nappearance, dressed in thick padded clothes, as a safeguard against \nbeing stabbed (of which he lived in continual fear), of a grass-\ngreen colour from head to foot, with a hunting-horn dangling at his \nside instead of a sword, and his hat and feather sticking over one \neye, or hanging on the back of his head, as he happened to toss it \non.  He used to loll on the necks of his favourite courtiers, and \nslobber their faces, and kiss and pinch their cheeks; and the \ngreatest favourite he ever had, used to sign himself in his letters \nto his royal master, His Majesty's 'dog and slave,' and used to \naddress his majesty as 'his Sowship.'  His majesty was the worst \nrider ever seen, and thought himself the best.  He was one of the \nmost impertinent talkers (in the broadest Scotch) ever heard, and \nboasted of being unanswerable in all manner of argument.  He wrote \nsome of the most wearisome treatises ever read - among others, a \nbook upon witchcraft, in which he was a devout believer - and \nthought himself a prodigy of authorship.  He thought, and wrote, \nand said, that a king had a right to make and unmake what laws he \npleased, and ought to be accountable to nobody on earth.  This is \nthe plain, true character of the personage whom the greatest men \nabout the court praised and flattered to that degree, that I doubt \nif there be anything much more shameful in the annals of human \nnature.\n\nHe came to the English throne with great ease.  The miseries of a \ndisputed succession had been felt so long, and so dreadfully, that \nhe was proclaimed within a few hours of Elizabeth's death, and was \naccepted by the nation, even without being asked to give any pledge \nthat he would govern well, or that he would redress crying \ngrievances.  He took a month to come from Edinburgh to London; and, \nby way of exercising his new power, hanged a pickpocket on the \njourney without any trial, and knighted everybody he could lay hold \nof.  He made two hundred knights before he got to his palace in \nLondon, and seven hundred before he had been in it three months.  \nHe also shovelled sixty-two new peers into the House of Lords - and \nthere was a pretty large sprinkling of Scotchmen among them, you \nmay believe.\n\nHis Sowship's prime Minister, CECIL (for I cannot do better than \ncall his majesty what his favourite called him), was the enemy of \nSir Walter Raleigh, and also of Sir Walter's political friend, LORD \nCOBHAM; and his Sowship's first trouble was a plot originated by \nthese two, and entered into by some others, with the old object of \nseizing the King and keeping him in imprisonment until he should \nchange his ministers.  There were Catholic priests in the plot, and \nthere were Puritan noblemen too; for, although the Catholics and \nPuritans were strongly opposed to each other, they united at this \ntime against his Sowship, because they knew that he had a design \nagainst both, after pretending to be friendly to each; this design \nbeing to have only one high and convenient form of the Protestant \nreligion, which everybody should be bound to belong to, whether \nthey liked it or not.  This plot was mixed up with another, which \nmay or may not have had some reference to placing on the throne, at \nsome time, the LADY ARABELLA STUART; whose misfortune it was, to be \nthe daughter of the younger brother of his Sowship's father, but \nwho was quite innocent of any part in the scheme.  Sir Walter \nRaleigh was accused on the confession of Lord Cobham - a miserable \ncreature, who said one thing at one time, and another thing at \nanother time, and could be relied upon in nothing.  The trial of \nSir Walter Raleigh lasted from eight in the morning until nearly \nmidnight; he defended himself with such eloquence, genius, and \nspirit against all accusations, and against the insults of COKE, \nthe Attorney-General - who, according to the custom of the time, \nfoully abused him - that those who went there detesting the \nprisoner, came away admiring him, and declaring that anything so \nwonderful and so captivating was never heard.  He was found guilty, \nnevertheless, and sentenced to death.  Execution was deferred, and \nhe was taken to the Tower.  The two Catholic priests, less \nfortunate, were executed with the usual atrocity; and Lord Cobham \nand two others were pardoned on the scaffold.  His Sowship thought \nit wonderfully knowing in him to surprise the people by pardoning \nthese three at the very block; but, blundering, and bungling, as \nusual, he had very nearly overreached himself.  For, the messenger \non horseback who brought the pardon, came so late, that he was \npushed to the outside of the crowd, and was obliged to shout and \nroar out what he came for.  The miserable Cobham did not gain much \nby being spared that day.  He lived, both as a prisoner and a \nbeggar, utterly despised, and miserably poor, for thirteen years, \nand then died in an old outhouse belonging to one of his former \nservants.\n\nThis plot got rid of, and Sir Walter Raleigh safely shut up in the \nTower, his Sowship held a great dispute with the Puritans on their \npresenting a petition to him, and had it all his own way - not so \nvery wonderful, as he would talk continually, and would not hear \nanybody else - and filled the Bishops with admiration.  It was \ncomfortably settled that there was to be only one form of religion, \nand that all men were to think exactly alike.  But, although this \nwas arranged two centuries and a half ago, and although the \narrangement was supported by much fining and imprisonment, I do not \nfind that it is quite successful, even yet.\n\nHis Sowship, having that uncommonly high opinion of himself as a \nking, had a very low opinion of Parliament as a power that \naudaciously wanted to control him.  When he called his first \nParliament after he had been king a year, he accordingly thought he \nwould take pretty high ground with them, and told them that he \ncommanded them 'as an absolute king.'  The Parliament thought those \nstrong words, and saw the necessity of upholding their authority.  \nHis Sowship had three children:  Prince Henry, Prince Charles, and \nthe Princess Elizabeth.  It would have been well for one of these, \nand we shall too soon see which, if he had learnt a little wisdom \nconcerning Parliaments from his father's obstinacy.\n\nNow, the people still labouring under their old dread of the \nCatholic religion, this Parliament revived and strengthened the \nsevere laws against it.  And this so angered ROBERT CATESBY, a \nrestless Catholic gentleman of an old family, that he formed one of \nthe most desperate and terrible designs ever conceived in the mind \nof man; no less a scheme than the Gunpowder Plot.\n\nHis object was, when the King, lords, and commons, should be \nassembled at the next opening of Parliament, to blow them up, one \nand all, with a great mine of gunpowder.  The first person to whom \nhe confided this horrible idea was THOMAS WINTER, a Worcestershire \ngentleman who had served in the army abroad, and had been secretly \nemployed in Catholic projects.  While Winter was yet undecided, and \nwhen he had gone over to the Netherlands, to learn from the Spanish \nAmbassador there whether there was any hope of Catholics being \nrelieved through the intercession of the King of Spain with his \nSowship, he found at Ostend a tall, dark, daring man, whom he had \nknown when they were both soldiers abroad, and whose name was GUIDO \n- or GUY - FAWKES.  Resolved to join the plot, he proposed it to \nthis man, knowing him to be the man for any desperate deed, and \nthey two came back to England together.  Here, they admitted two \nother conspirators; THOMAS PERCY, related to the Earl of \nNorthumberland, and JOHN WRIGHT, his brother-in-law.  All these met \ntogether in a solitary house in the open fields which were then \nnear Clement's Inn, now a closely blocked-up part of London; and \nwhen they had all taken a great oath of secrecy, Catesby told the \nrest what his plan was.  They then went up-stairs into a garret, \nand received the Sacrament from FATHER GERARD, a Jesuit, who is \nsaid not to have known actually of the Gunpowder Plot, but who, I \nthink, must have had his suspicions that there was something \ndesperate afoot.\n\nPercy was a Gentleman Pensioner, and as he had occasional duties to \nperform about the Court, then kept at Whitehall, there would be \nnothing suspicious in his living at Westminster.  So, having looked \nwell about him, and having found a house to let, the back of which \njoined the Parliament House, he hired it of a person named FERRIS, \nfor the purpose of undermining the wall.  Having got possession of \nthis house, the conspirators hired another on the Lambeth side of \nthe Thames, which they used as a storehouse for wood, gunpowder, \nand other combustible matters.  These were to be removed at night \n(and afterwards were removed), bit by bit, to the house at \nWestminster; and, that there might be some trusty person to keep \nwatch over the Lambeth stores, they admitted another conspirator, \nby name ROBERT KAY, a very poor Catholic gentleman.\n\nAll these arrangements had been made some months, and it was a \ndark, wintry, December night, when the conspirators, who had been \nin the meantime dispersed to avoid observation, met in the house at \nWestminster, and began to dig.  They had laid in a good stock of \neatables, to avoid going in and out, and they dug and dug with \ngreat ardour.  But, the wall being tremendously thick, and the work \nvery severe, they took into their plot CHRISTOPHER WRIGHT, a \nyounger brother of John Wright, that they might have a new pair of \nhands to help.  And Christopher Wright fell to like a fresh man, \nand they dug and dug by night and by day, and Fawkes stood sentinel \nall the time.  And if any man's heart seemed to fail him at all, \nFawkes said, 'Gentlemen, we have abundance of powder and shot here, \nand there is no fear of our being taken alive, even if discovered.'  \nThe same Fawkes, who, in the capacity of sentinel, was always \nprowling about, soon picked up the intelligence that the King had \nprorogued the Parliament again, from the seventh of February, the \nday first fixed upon, until the third of October.  When the \nconspirators knew this, they agreed to separate until after the \nChristmas holidays, and to take no notice of each other in the \nmeanwhile, and never to write letters to one another on any \naccount.  So, the house in Westminster was shut up again, and I \nsuppose the neighbours thought that those strange-looking men who \nlived there so gloomily, and went out so seldom, were gone away to \nhave a merry Christmas somewhere.\n\nIt was the beginning of February, sixteen hundred and five, when \nCatesby met his fellow-conspirators again at this Westminster \nhouse.  He had now admitted three more; JOHN GRANT, a Warwickshire \ngentleman of a melancholy temper, who lived in a doleful house near \nStratford-upon-Avon, with a frowning wall all round it, and a deep \nmoat; ROBERT WINTER, eldest brother of Thomas; and Catesby's own \nservant, THOMAS BATES, who, Catesby thought, had had some suspicion \nof what his master was about.  These three had all suffered more or \nless for their religion in Elizabeth's time.  And now, they all \nbegan to dig again, and they dug and dug by night and by day.\n\nThey found it dismal work alone there, underground, with such a \nfearful secret on their minds, and so many murders before them.  \nThey were filled with wild fancies.  Sometimes, they thought they \nheard a great bell tolling, deep down in the earth under the \nParliament House; sometimes, they thought they heard low voices \nmuttering about the Gunpowder Plot; once in the morning, they \nreally did hear a great rumbling noise over their heads, as they \ndug and sweated in their mine.  Every man stopped and looked aghast \nat his neighbour, wondering what had happened, when that bold \nprowler, Fawkes, who had been out to look, came in and told them \nthat it was only a dealer in coals who had occupied a cellar under \nthe Parliament House, removing his stock in trade to some other \nplace.  Upon this, the conspirators, who with all their digging and \ndigging had not yet dug through the tremendously thick wall, \nchanged their plan; hired that cellar, which was directly under the \nHouse of Lords; put six-and-thirty barrels of gunpowder in it, and \ncovered them over with fagots and coals.  Then they all dispersed \nagain till September, when the following new conspirators were \nadmitted; SIR EDWARD BAYNHAM, of Gloucestershire; SIR EVERARD \nDIGBY, of Rutlandshire; AMBROSE ROOKWOOD, of Suffolk; FRANCIS \nTRESHAM, of Northamptonshire.  Most of these were rich, and were to \nassist the plot, some with money and some with horses on which the \nconspirators were to ride through the country and rouse the \nCatholics after the Parliament should be blown into air.\n\nParliament being again prorogued from the third of October to the \nfifth of November, and the conspirators being uneasy lest their \ndesign should have been found out, Thomas Winter said he would go \nup into the House of Lords on the day of the prorogation, and see \nhow matters looked.  Nothing could be better.  The unconscious \nCommissioners were walking about and talking to one another, just \nover the six-and-thirty barrels of gunpowder.  He came back and \ntold the rest so, and they went on with their preparations.  They \nhired a ship, and kept it ready in the Thames, in which Fawkes was \nto sail for Flanders after firing with a slow match the train that \nwas to explode the powder.  A number of Catholic gentlemen not in \nthe secret, were invited, on pretence of a hunting party, to meet \nSir Everard Digby at Dunchurch on the fatal day, that they might be \nready to act together.  And now all was ready.\n\nBut, now, the great wickedness and danger which had been all along \nat the bottom of this wicked plot, began to show itself.  As the \nfifth of November drew near, most of the conspirators, remembering \nthat they had friends and relations who would be in the House of \nLords that day, felt some natural relenting, and a wish to warn \nthem to keep away.  They were not much comforted by Catesby's \ndeclaring that in such a cause he would blow up his own son.  LORD \nMOUNTEAGLE, Tresham's brother-in-law, was certain to be in the \nhouse; and when Tresham found that he could not prevail upon the \nrest to devise any means of sparing their friends, he wrote a \nmysterious letter to this lord and left it at his lodging in the \ndusk, urging him to keep away from the opening of Parliament, \n'since God and man had concurred to punish the wickedness of the \ntimes.'  It contained the words 'that the Parliament should receive \na terrible blow, and yet should not see who hurt them.'  And it \nadded, 'the danger is past, as soon as you have burnt the letter.'\n\nThe ministers and courtiers made out that his Sowship, by a direct \nmiracle from Heaven, found out what this letter meant.  The truth \nis, that they were not long (as few men would be) in finding out \nfor themselves; and it was decided to let the conspirators alone, \nuntil the very day before the opening of Parliament.  That the \nconspirators had their fears, is certain; for, Tresham himself said \nbefore them all, that they were every one dead men; and, although \neven he did not take flight, there is reason to suppose that he had \nwarned other persons besides Lord Mounteagle.  However, they were \nall firm; and Fawkes, who was a man of iron, went down every day \nand night to keep watch in the cellar as usual.  He was there about \ntwo in the afternoon of the fourth, when the Lord Chamberlain and \nLord Mounteagle threw open the door and looked in.  'Who are you, \nfriend?' said they.  'Why,' said Fawkes, 'I am Mr. Percy's servant, \nand am looking after his store of fuel here.'  'Your master has \nlaid in a pretty good store,' they returned, and shut the door, and \nwent away.  Fawkes, upon this, posted off to the other conspirators \nto tell them all was quiet, and went back and shut himself up in \nthe dark, black cellar again, where he heard the bell go twelve \no'clock and usher in the fifth of November.  About two hours \nafterwards, he slowly opened the door, and came out to look about \nhim, in his old prowling way.  He was instantly seized and bound, \nby a party of soldiers under SIR THOMAS KNEVETT.  He had a watch \nupon him, some touchwood, some tinder, some slow matches; and there \nwas a dark lantern with a candle in it, lighted, behind the door.  \nHe had his boots and spurs on - to ride to the ship, I suppose - \nand it was well for the soldiers that they took him so suddenly.  \nIf they had left him but a moment's time to light a match, he \ncertainly would have tossed it in among the powder, and blown up \nhimself and them.\n\nThey took him to the King's bed-chamber first of all, and there the \nKing (causing him to be held very tight, and keeping a good way \noff), asked him how he could have the heart to intend to destroy so \nmany innocent people?  'Because,' said Guy Fawkes, 'desperate \ndiseases need desperate remedies.'  To a little Scotch favourite, \nwith a face like a terrier, who asked him (with no particular \nwisdom) why he had collected so much gunpowder, he replied, because \nhe had meant to blow Scotchmen back to Scotland, and it would take \na deal of powder to do that.  Next day he was carried to the Tower, \nbut would make no confession.  Even after being horribly tortured, \nhe confessed nothing that the Government did not already know; \nthough he must have been in a fearful state - as his signature, \nstill preserved, in contrast with his natural hand-writing before \nhe was put upon the dreadful rack, most frightfully shows.  Bates, \na very different man, soon said the Jesuits had had to do with the \nplot, and probably, under the torture, would as readily have said \nanything.  Tresham, taken and put in the Tower too, made \nconfessions and unmade them, and died of an illness that was heavy \nupon him.  Rookwood, who had stationed relays of his own horses all \nthe way to Dunchurch, did not mount to escape until the middle of \nthe day, when the news of the plot was all over London.  On the \nroad, he came up with the two Wrights, Catesby, and Percy; and they \nall galloped together into Northamptonshire.  Thence to Dunchurch, \nwhere they found the proposed party assembled.  Finding, however, \nthat there had been a plot, and that it had been discovered, the \nparty disappeared in the course of the night, and left them alone \nwith Sir Everard Digby.  Away they all rode again, through \nWarwickshire and Worcestershire, to a house called Holbeach, on the \nborders of Staffordshire.  They tried to raise the Catholics on \ntheir way, but were indignantly driven off by them.  All this time \nthey were hotly pursued by the sheriff of Worcester, and a fast \nincreasing concourse of riders.  At last, resolving to defend \nthemselves at Holbeach, they shut themselves up in the house, and \nput some wet powder before the fire to dry.  But it blew up, and \nCatesby was singed and blackened, and almost killed, and some of \nthe others were sadly hurt.  Still, knowing that they must die, \nthey resolved to die there, and with only their swords in their \nhands appeared at the windows to be shot at by the sheriff and his \nassistants.  Catesby said to Thomas Winter, after Thomas had been \nhit in the right arm which dropped powerless by his side, 'Stand by \nme, Tom, and we will die together!' - which they did, being shot \nthrough the body by two bullets from one gun.  John Wright, and \nChristopher Wright, and Percy, were also shot.  Rookwood and Digby \nwere taken:  the former with a broken arm and a wound in his body \ntoo.\n\nIt was the fifteenth of January, before the trial of Guy Fawkes, \nand such of the other conspirators as were left alive, came on.  \nThey were all found guilty, all hanged, drawn, and quartered:  \nsome, in St. Paul's Churchyard, on the top of Ludgate-hill; some, \nbefore the Parliament House.  A Jesuit priest, named HENRY GARNET, \nto whom the dreadful design was said to have been communicated, was \ntaken and tried; and two of his servants, as well as a poor priest \nwho was taken with him, were tortured without mercy.  He himself \nwas not tortured, but was surrounded in the Tower by tamperers and \ntraitors, and so was made unfairly to convict himself out of his \nown mouth.  He said, upon his trial, that he had done all he could \nto prevent the deed, and that he could not make public what had \nbeen told him in confession - though I am afraid he knew of the \nplot in other ways.  He was found guilty and executed, after a \nmanful defence, and the Catholic Church made a saint of him; some \nrich and powerful persons, who had had nothing to do with the \nproject, were fined and imprisoned for it by the Star Chamber; the \nCatholics, in general, who had recoiled with horror from the idea \nof the infernal contrivance, were unjustly put under more severe \nlaws than before; and this was the end of the Gunpowder Plot.\n\n\nSECOND PART\n\n\nHis Sowship would pretty willingly, I think, have blown the House \nof Commons into the air himself; for, his dread and jealousy of it \nknew no bounds all through his reign.  When he was hard pressed for \nmoney he was obliged to order it to meet, as he could get no money \nwithout it; and when it asked him first to abolish some of the \nmonopolies in necessaries of life which were a great grievance to \nthe people, and to redress other public wrongs, he flew into a rage \nand got rid of it again.  At one time he wanted it to consent to \nthe Union of England with Scotland, and quarrelled about that.  At \nanother time it wanted him to put down a most infamous Church \nabuse, called the High Commission Court, and he quarrelled with it \nabout that.  At another time it entreated him not to be quite so \nfond of his archbishops and bishops who made speeches in his praise \ntoo awful to be related, but to have some little consideration for \nthe poor Puritan clergy who were persecuted for preaching in their \nown way, and not according to the archbishops and bishops; and they \nquarrelled about that.  In short, what with hating the House of \nCommons, and pretending not to hate it; and what with now sending \nsome of its members who opposed him, to Newgate or to the Tower, \nand now telling the rest that they must not presume to make \nspeeches about the public affairs which could not possibly concern \nthem; and what with cajoling, and bullying, and fighting, and being \nfrightened; the House of Commons was the plague of his Sowship's \nexistence.  It was pretty firm, however, in maintaining its rights, \nand insisting that the Parliament should make the laws, and not the \nKing by his own single proclamations (which he tried hard to do); \nand his Sowship was so often distressed for money, in consequence, \nthat he sold every sort of title and public office as if they were \nmerchandise, and even invented a new dignity called a Baronetcy, \nwhich anybody could buy for a thousand pounds.\n\nThese disputes with his Parliaments, and his hunting, and his \ndrinking, and his lying in bed - for he was a great sluggard - \noccupied his Sowship pretty well.  The rest of his time he chiefly \npassed in hugging and slobbering his favourites.  The first of \nthese was SIR PHILIP HERBERT, who had no knowledge whatever, except \nof dogs, and horses, and hunting, but whom he soon made EARL OF \nMONTGOMERY.  The next, and a much more famous one, was ROBERT CARR, \nor KER (for it is not certain which was his right name), who came \nfrom the Border country, and whom he soon made VISCOUNT ROCHESTER, \nand afterwards, EARL OF SOMERSET.  The way in which his Sowship \ndoted on this handsome young man, is even more odious to think of, \nthan the way in which the really great men of England condescended \nto bow down before him.  The favourite's great friend was a certain \nSIR THOMAS OVERBURY, who wrote his love-letters for him, and \nassisted him in the duties of his many high places, which his own \nignorance prevented him from discharging.  But this same Sir Thomas \nhaving just manhood enough to dissuade the favourite from a wicked \nmarriage with the beautiful Countess of Essex, who was to get a \ndivorce from her husband for the purpose, the said Countess, in her \nrage, got Sir Thomas put into the Tower, and there poisoned him.  \nThen the favourite and this bad woman were publicly married by the \nKing's pet bishop, with as much to-do and rejoicing, as if he had \nbeen the best man, and she the best woman, upon the face of the \nearth.\n\nBut, after a longer sunshine than might have been expected - of \nseven years or so, that is to say - another handsome young man \nstarted up and eclipsed the EARL OF SOMERSET.  This was GEORGE \nVILLIERS, the youngest son of a Leicestershire gentleman:  who came \nto Court with all the Paris fashions on him, and could dance as \nwell as the best mountebank that ever was seen.  He soon danced \nhimself into the good graces of his Sowship, and danced the other \nfavourite out of favour.  Then, it was all at once discovered that \nthe Earl and Countess of Somerset had not deserved all those great \npromotions and mighty rejoicings, and they were separately tried \nfor the murder of Sir Thomas Overbury, and for other crimes.  But, \nthe King was so afraid of his late favourite's publicly telling \nsome disgraceful things he knew of him - which he darkly threatened \nto do - that he was even examined with two men standing, one on \neither side of him, each with a cloak in his hand, ready to throw \nit over his head and stop his mouth if he should break out with \nwhat he had it in his power to tell.  So, a very lame affair was \npurposely made of the trial, and his punishment was an allowance of \nfour thousand pounds a year in retirement, while the Countess was \npardoned, and allowed to pass into retirement too.  They hated one \nanother by this time, and lived to revile and torment each other \nsome years.\n\nWhile these events were in progress, and while his Sowship was \nmaking such an exhibition of himself, from day to day and from year \nto year, as is not often seen in any sty, three remarkable deaths \ntook place in England.  The first was that of the Minister, Robert \nCecil, Earl of Salisbury, who was past sixty, and had never been \nstrong, being deformed from his birth.  He said at last that he had \nno wish to live; and no Minister need have had, with his experience \nof the meanness and wickedness of those disgraceful times.  The \nsecond was that of the Lady Arabella Stuart, who alarmed his \nSowship mightily, by privately marrying WILLIAM SEYMOUR, son of \nLORD BEAUCHAMP, who was a descendant of King Henry the Seventh, and \nwho, his Sowship thought, might consequently increase and \nstrengthen any claim she might one day set up to the throne.  She \nwas separated from her husband (who was put in the Tower) and \nthrust into a boat to be confined at Durham.  She escaped in a \nman's dress to get away in a French ship from Gravesend to France, \nbut unhappily missed her husband, who had escaped too, and was soon \ntaken.  She went raving mad in the miserable Tower, and died there \nafter four years.  The last, and the most important of these three \ndeaths, was that of Prince Henry, the heir to the throne, in the \nnineteenth year of his age.  He was a promising young prince, and \ngreatly liked; a quiet, well-conducted youth, of whom two very good \nthings are known:  first, that his father was jealous of him; \nsecondly, that he was the friend of Sir Walter Raleigh, languishing \nthrough all those years in the Tower, and often said that no man \nbut his father would keep such a bird in such a cage.  On the \noccasion of the preparations for the marriage of his sister the \nPrincess Elizabeth with a foreign prince (and an unhappy marriage \nit turned out), he came from Richmond, where he had been very ill, \nto greet his new brother-in-law, at the palace at Whitehall.  There \nhe played a great game at tennis, in his shirt, though it was very \ncold weather, and was seized with an alarming illness, and died \nwithin a fortnight of a putrid fever.  For this young prince Sir \nWalter Raleigh wrote, in his prison in the Tower, the beginning of \na History of the World:  a wonderful instance how little his \nSowship could do to confine a great man's mind, however long he \nmight imprison his body.\n\nAnd this mention of Sir Walter Raleigh, who had many faults, but \nwho never showed so many merits as in trouble and adversity, may \nbring me at once to the end of his sad story.  After an \nimprisonment in the Tower of twelve long years, he proposed to \nresume those old sea voyages of his, and to go to South America in \nsearch of gold.  His Sowship, divided between his wish to be on \ngood terms with the Spaniards through whose territory Sir Walter \nmust pass (he had long had an idea of marrying Prince Henry to a \nSpanish Princess), and his avaricious eagerness to get hold of the \ngold, did not know what to do.  But, in the end, he set Sir Walter \nfree, taking securities for his return; and Sir Walter fitted out \nan expedition at his own coast and, on the twenty-eighth of March, \none thousand six hundred and seventeen, sailed away in command of \none of its ships, which he ominously called the Destiny.  The \nexpedition failed; the common men, not finding the gold they had \nexpected, mutinied; a quarrel broke out between Sir Walter and the \nSpaniards, who hated him for old successes of his against them; and \nhe took and burnt a little town called SAINT THOMAS.  For this he \nwas denounced to his Sowship by the Spanish Ambassador as a pirate; \nand returning almost broken-hearted, with his hopes and fortunes \nshattered, his company of friends dispersed, and his brave son (who \nhad been one of them) killed, he was taken - through the treachery \nof SIR LEWIS STUKELY, his near relation, a scoundrel and a Vice-\nAdmiral - and was once again immured in his prison-home of so many \nyears.\n\nHis Sowship being mightily disappointed in not getting any gold, \nSir Walter Raleigh was tried as unfairly, and with as many lies and \nevasions as the judges and law officers and every other authority \nin Church and State habitually practised under such a King.  After \na great deal of prevarication on all parts but his own, it was \ndeclared that he must die under his former sentence, now fifteen \nyears old.  So, on the twenty-eighth of October, one thousand six \nhundred and eighteen, he was shut up in the Gate House at \nWestminster to pass his late night on earth, and there he took \nleave of his good and faithful lady who was worthy to have lived in \nbetter days.  At eight o'clock next morning, after a cheerful \nbreakfast, and a pipe, and a cup of good wine, he was taken to Old \nPalace Yard in Westminster, where the scaffold was set up, and \nwhere so many people of high degree were assembled to see him die, \nthat it was a matter of some difficulty to get him through the \ncrowd.  He behaved most nobly, but if anything lay heavy on his \nmind, it was that Earl of Essex, whose head he had seen roll off; \nand he solemnly said that he had had no hand in bringing him to the \nblock, and that he had shed tears for him when he died.  As the \nmorning was very cold, the Sheriff said, would he come down to a \nfire for a little space, and warm himself?  But Sir Walter thanked \nhim, and said no, he would rather it were done at once, for he was \nill of fever and ague, and in another quarter of an hour his \nshaking fit would come upon him if he were still alive, and his \nenemies might then suppose that he trembled for fear.  With that, \nhe kneeled and made a very beautiful and Christian prayer.  Before \nhe laid his head upon the block he felt the edge of the axe, and \nsaid, with a smile upon his face, that it was a sharp medicine, but \nwould cure the worst disease.  When he was bent down ready for \ndeath, he said to the executioner, finding that he hesitated, 'What \ndost thou fear?  Strike, man!'  So, the axe came down and struck \nhis head off, in the sixty-sixth year of his age.\n\nThe new favourite got on fast.  He was made a viscount, he was made \nDuke of Buckingham, he was made a marquis, he was made Master of \nthe Horse, he was made Lord High Admiral - and the Chief Commander \nof the gallant English forces that had dispersed the Spanish \nArmada, was displaced to make room for him.  He had the whole \nkingdom at his disposal, and his mother sold all the profits and \nhonours of the State, as if she had kept a shop.  He blazed all \nover with diamonds and other precious stones, from his hatband and \nhis earrings to his shoes.  Yet he was an ignorant presumptuous, \nswaggering compound of knave and fool, with nothing but his beauty \nand his dancing to recommend him.  This is the gentleman who called \nhimself his Majesty's dog and slave, and called his Majesty Your \nSowship.  His Sowship called him STEENIE; it is supposed, because \nthat was a nickname for Stephen, and because St. Stephen was \ngenerally represented in pictures as a handsome saint.\n\nHis Sowship was driven sometimes to his wits'-end by his trimming \nbetween the general dislike of the Catholic religion at home, and \nhis desire to wheedle and flatter it abroad, as his only means of \ngetting a rich princess for his son's wife:  a part of whose \nfortune he might cram into his greasy pockets.  Prince Charles - or \nas his Sowship called him, Baby Charles - being now PRINCE OF \nWALES, the old project of a marriage with the Spanish King's \ndaughter had been revived for him; and as she could not marry a \nProtestant without leave from the Pope, his Sowship himself \nsecretly and meanly wrote to his Infallibility, asking for it.  The \nnegotiation for this Spanish marriage takes up a larger space in \ngreat books, than you can imagine, but the upshot of it all is, \nthat when it had been held off by the Spanish Court for a long \ntime, Baby Charles and Steenie set off in disguise as Mr. Thomas \nSmith and Mr. John Smith, to see the Spanish Princess; that Baby \nCharles pretended to be desperately in love with her, and jumped \noff walls to look at her, and made a considerable fool of himself \nin a good many ways; that she was called Princess of Wales and that \nthe whole Spanish Court believed Baby Charles to be all but dying \nfor her sake, as he expressly told them he was; that Baby Charles \nand Steenie came back to England, and were received with as much \nrapture as if they had been a blessing to it; that Baby Charles had \nactually fallen in love with HENRIETTA MARIA, the French King's \nsister, whom he had seen in Paris; that he thought it a wonderfully \nfine and princely thing to have deceived the Spaniards, all \nthrough; and that he openly said, with a chuckle, as soon as he was \nsafe and sound at home again, that the Spaniards were great fools \nto have believed him.\n\nLike most dishonest men, the Prince and the favourite complained \nthat the people whom they had deluded were dishonest.  They made \nsuch misrepresentations of the treachery of the Spaniards in this \nbusiness of the Spanish match, that the English nation became eager \nfor a war with them.  Although the gravest Spaniards laughed at the \nidea of his Sowship in a warlike attitude, the Parliament granted \nmoney for the beginning of hostilities, and the treaties with Spain \nwere publicly declared to be at an end.  The Spanish ambassador in \nLondon - probably with the help of the fallen favourite, the Earl \nof Somerset - being unable to obtain speech with his Sowship, \nslipped a paper into his hand, declaring that he was a prisoner in \nhis own house, and was entirely governed by Buckingham and his \ncreatures.  The first effect of this letter was that his Sowship \nbegan to cry and whine, and took Baby Charles away from Steenie, \nand went down to Windsor, gabbling all sorts of nonsense.  The end \nof it was that his Sowship hugged his dog and slave, and said he \nwas quite satisfied.\n\nHe had given the Prince and the favourite almost unlimited power to \nsettle anything with the Pope as to the Spanish marriage; and he \nnow, with a view to the French one, signed a treaty that all Roman \nCatholics in England should exercise their religion freely, and \nshould never be required to take any oath contrary thereto.  In \nreturn for this, and for other concessions much less to be \ndefended, Henrietta Maria was to become the Prince's wife, and was \nto bring him a fortune of eight hundred thousand crowns.\n\nHis Sowship's eyes were getting red with eagerly looking for the \nmoney, when the end of a gluttonous life came upon him; and, after \na fortnight's illness, on Sunday the twenty-seventh of March, one \nthousand six hundred and twenty-five, he died.  He had reigned \ntwenty-two years, and was fifty-nine years old.  I know of nothing \nmore abominable in history than the adulation that was lavished on \nthis King, and the vice and corruption that such a barefaced habit \nof lying produced in his court.  It is much to be doubted whether \none man of honour, and not utterly self-disgraced, kept his place \nnear James the First.  Lord Bacon, that able and wise philosopher, \nas the First Judge in the Kingdom in this reign, became a public \nspectacle of dishonesty and corruption; and in his base flattery of \nhis Sowship, and in his crawling servility to his dog and slave, \ndisgraced himself even more.  But, a creature like his Sowship set \nupon a throne is like the Plague, and everybody receives infection \nfrom him.\n\n\n\nCHAPTER XXXIII - ENGLAND UNDER CHARLES THE FIRST\n\n\n\nBABY CHARLES became KING CHARLES THE FIRST, in the twenty-fifth \nyear of his age.  Unlike his father, he was usually amiable in his \nprivate character, and grave and dignified in his bearing; but, \nlike his father, he had monstrously exaggerated notions of the \nrights of a king, and was evasive, and not to be trusted.  If his \nword could have been relied upon, his history might have had a \ndifferent end.\n\nHis first care was to send over that insolent upstart, Buckingham, \nto bring Henrietta Maria from Paris to be his Queen; upon which \noccasion Buckingham - with his usual audacity - made love to the \nyoung Queen of Austria, and was very indignant indeed with CARDINAL \nRICHELIEU, the French Minister, for thwarting his intentions.  The \nEnglish people were very well disposed to like their new Queen, and \nto receive her with great favour when she came among them as a \nstranger.  But, she held the Protestant religion in great dislike, \nand brought over a crowd of unpleasant priests, who made her do \nsome very ridiculous things, and forced themselves upon the public \nnotice in many disagreeable ways.  Hence, the people soon came to \ndislike her, and she soon came to dislike them; and she did so much \nall through this reign in setting the King (who was dotingly fond \nof her) against his subjects, that it would have been better for \nhim if she had never been born.\n\nNow, you are to understand that King Charles the First - of his own \ndetermination to be a high and mighty King not to be called to \naccount by anybody, and urged on by his Queen besides - \ndeliberately set himself to put his Parliament down and to put \nhimself up. You are also to understand, that even in pursuit of \nthis wrong idea (enough in itself to have ruined any king) he never \ntook a straight course, but always took a crooked one.\n\nHe was bent upon war with Spain, though neither the House of \nCommons nor the people were quite clear as to the justice of that \nwar, now that they began to think a little more about the story of \nthe Spanish match.  But the King rushed into it hotly, raised money \nby illegal means to meet its expenses, and encountered a miserable \nfailure at Cadiz, in the very first year of his reign.  An \nexpedition to Cadiz had been made in the hope of plunder, but as it \nwas not successful, it was necessary to get a grant of money from \nthe Parliament; and when they met, in no very complying humour, \nthe, King told them, 'to make haste to let him have it, or it would \nbe the worse for themselves.'  Not put in a more complying humour \nby this, they impeached the King's favourite, the Duke of \nBuckingham, as the cause (which he undoubtedly was) of many great \npublic grievances and wrongs.  The King, to save him, dissolved the \nParliament without getting the money he wanted; and when the Lords \nimplored him to consider and grant a little delay, he replied, 'No, \nnot one minute.'  He then began to raise money for himself by the \nfollowing means among others.\n\nHe levied certain duties called tonnage and poundage which had not \nbeen granted by the Parliament, and could lawfully be levied by no \nother power; he called upon the seaport towns to furnish, and to \npay all the cost for three months of, a fleet of armed ships; and \nhe required the people to unite in lending him large sums of money, \nthe repayment of which was very doubtful.  If the poor people \nrefused, they were pressed as soldiers or sailors; if the gentry \nrefused, they were sent to prison.  Five gentlemen, named SIR \nTHOMAS DARNEL, JOHN CORBET, WALTER EARL, JOHN HEVENINGHAM, and \nEVERARD HAMPDEN, for refusing were taken up by a warrant of the \nKing's privy council, and were sent to prison without any cause but \nthe King's pleasure being stated for their imprisonment.  Then the \nquestion came to be solemnly tried, whether this was not a \nviolation of Magna Charta, and an encroachment by the King on the \nhighest rights of the English people.  His lawyers contended No, \nbecause to encroach upon the rights of the English people would be \nto do wrong, and the King could do no wrong.  The accommodating \njudges decided in favour of this wicked nonsense; and here was a \nfatal division between the King and the people.\n\nFor all this, it became necessary to call another Parliament.  The \npeople, sensible of the danger in which their liberties were, chose \nfor it those who were best known for their determined opposition to \nthe King; but still the King, quite blinded by his determination to \ncarry everything before him, addressed them when they met, in a \ncontemptuous manner, and just told them in so many words that he \nhad only called them together because he wanted money.  The \nParliament, strong enough and resolute enough to know that they \nwould lower his tone, cared little for what he said, and laid \nbefore him one of the great documents of history, which is called \nthe PETITION OF RIGHT, requiring that the free men of England \nshould no longer be called upon to lend the King money, and should \nno longer be pressed or imprisoned for refusing to do so; further, \nthat the free men of England should no longer be seized by the \nKing's special mandate or warrant, it being contrary to their \nrights and liberties and the laws of their country.  At first the \nKing returned an answer to this petition, in which he tried to \nshirk it altogether; but, the House of Commons then showing their \ndetermination to go on with the impeachment of Buckingham, the King \nin alarm returned an answer, giving his consent to all that was \nrequired of him.  He not only afterwards departed from his word and \nhonour on these points, over and over again, but, at this very \ntime, he did the mean and dissembling act of publishing his first \nanswer and not his second - merely that the people might suppose \nthat the Parliament had not got the better of him.\n\nThat pestilent Buckingham, to gratify his own wounded vanity, had \nby this time involved the country in war with France, as well as \nwith Spain.  For such miserable causes and such miserable creatures \nare wars sometimes made!  But he was destined to do little more \nmischief in this world.  One morning, as he was going out of his \nhouse to his carriage, he turned to speak to a certain Colonel \nFRYER who was with him; and he was violently stabbed with a knife, \nwhich the murderer left sticking in his heart.  This happened in \nhis hall.  He had had angry words up-stairs, just before, with some \nFrench gentlemen, who were immediately suspected by his servants, \nand had a close escape from being set upon and killed.  In the \nmidst of the noise, the real murderer, who had gone to the kitchen \nand might easily have got away, drew his sword and cried out, 'I am \nthe man!'  His name was JOHN FELTON, a Protestant and a retired \nofficer in the army.  He said he had had no personal ill-will to \nthe Duke, but had killed him as a curse to the country.  He had \naimed his blow well, for Buckingham had only had time to cry out, \n'Villain!' and then he drew out the knife, fell against a table, \nand died.\n\nThe council made a mighty business of examining John Felton about \nthis murder, though it was a plain case enough, one would think.  \nHe had come seventy miles to do it, he told them, and he did it for \nthe reason he had declared; if they put him upon the rack, as that \nnoble MARQUIS OF DORSET whom he saw before him, had the goodness to \nthreaten, he gave that marquis warning, that he would accuse HIM as \nhis accomplice!  The King was unpleasantly anxious to have him \nracked, nevertheless; but as the judges now found out that torture \nwas contrary to the law of England - it is a pity they did not make \nthe discovery a little sooner - John Felton was simply executed for \nthe murder he had done.  A murder it undoubtedly was, and not in \nthe least to be defended:  though he had freed England from one of \nthe most profligate, contemptible, and base court favourites to \nwhom it has ever yielded.\n\nA very different man now arose.  This was SIR THOMAS WENTWORTH, a \nYorkshire gentleman, who had sat in Parliament for a long time, and \nwho had favoured arbitrary and haughty principles, but who had gone \nover to the people's side on receiving offence from Buckingham.  \nThe King, much wanting such a man - for, besides being naturally \nfavourable to the King's cause, he had great abilities - made him \nfirst a Baron, and then a Viscount, and gave him high employment, \nand won him most completely.\n\nA Parliament, however, was still in existence, and was NOT to be \nwon.  On the twentieth of January, one thousand six hundred and \ntwenty-nine, SIR JOHN ELIOT, a great man who had been active in the \nPetition of Right, brought forward other strong resolutions against \nthe King's chief instruments, and called upon the Speaker to put \nthem to the vote.  To this the Speaker answered, 'he was commanded \notherwise by the King,' and got up to leave the chair - which, \naccording to the rules of the House of Commons would have obliged \nit to adjourn without doing anything more - when two members, named \nMr. HOLLIS and Mr. VALENTINE, held him down.  A scene of great \nconfusion arose among the members; and while many swords were drawn \nand flashing about, the King, who was kept informed of all that was \ngoing on, told the captain of his guard to go down to the House and \nforce the doors.  The resolutions were by that time, however, \nvoted, and the House adjourned.  Sir John Eliot and those two \nmembers who had held the Speaker down, were quickly summoned before \nthe council.  As they claimed it to be their privilege not to \nanswer out of Parliament for anything they had said in it, they \nwere committed to the Tower.  The King then went down and dissolved \nthe Parliament, in a speech wherein he made mention of these \ngentlemen as 'Vipers' - which did not do him much good that ever I \nhave heard of.\n\nAs they refused to gain their liberty by saying they were sorry for \nwhat they had done, the King, always remarkably unforgiving, never \noverlooked their offence.  When they demanded to be brought up \nbefore the court of King's Bench, he even resorted to the meanness \nof having them moved about from prison to prison, so that the writs \nissued for that purpose should not legally find them.  At last they \ncame before the court and were sentenced to heavy fines, and to be \nimprisoned during the King's pleasure.  When Sir John Eliot's \nhealth had quite given way, and he so longed for change of air and \nscene as to petition for his release, the King sent back the answer \n(worthy of his Sowship himself) that the petition was not humble \nenough.  When he sent another petition by his young son, in which \nhe pathetically offered to go back to prison when his health was \nrestored, if he might be released for its recovery, the King still \ndisregarded it.  When he died in the Tower, and his children \npetitioned to be allowed to take his body down to Cornwall, there \nto lay it among the ashes of his forefathers, the King returned for \nanswer, 'Let Sir John Eliot's body be buried in the church of that \nparish where he died.'  All this was like a very little King \nindeed, I think.\n\nAnd now, for twelve long years, steadily pursuing his design of \nsetting himself up and putting the people down, the King called no \nParliament; but ruled without one.  If twelve thousand volumes were \nwritten in his praise (as a good many have been) it would still \nremain a fact, impossible to be denied, that for twelve years King \nCharles the First reigned in England unlawfully and despotically, \nseized upon his subjects' goods and money at his pleasure, and \npunished according to his unbridled will all who ventured to oppose \nhim.  It is a fashion with some people to think that this King's \ncareer was cut short; but I must say myself that I think he ran a \npretty long one.\n\nWILLIAM LAUD, Archbishop of Canterbury, was the King's right-hand \nman in the religious part of the putting down of the people's \nliberties.  Laud, who was a sincere man, of large learning but \nsmall sense - for the two things sometimes go together in very \ndifferent quantities - though a Protestant, held opinions so near \nthose of the Catholics, that the Pope wanted to make a Cardinal of \nhim, if he would have accepted that favour.  He looked upon vows, \nrobes, lighted candles, images, and so forth, as amazingly \nimportant in religious ceremonies; and he brought in an immensity \nof bowing and candle-snuffing.  He also regarded archbishops and \nbishops as a sort of miraculous persons, and was inveterate in the \nlast degree against any who thought otherwise.  Accordingly, he \noffered up thanks to Heaven, and was in a state of much pious \npleasure, when a Scotch clergyman, named LEIGHTON, was pilloried, \nwhipped, branded in the cheek, and had one of his ears cut off and \none of his nostrils slit, for calling bishops trumpery and the \ninventions of men.  He originated on a Sunday morning the \nprosecution of WILLIAM PRYNNE, a barrister who was of similar \nopinions, and who was fined a thousand pounds; who was pilloried; \nwho had his ears cut off on two occasions - one ear at a time - and \nwho was imprisoned for life.  He highly approved of the punishment \nof DOCTOR BASTWICK, a physician; who was also fined a thousand \npounds; and who afterwards had HIS ears cut off, and was imprisoned \nfor life.  These were gentle methods of persuasion, some will tell \nyou:  I think, they were rather calculated to be alarming to the \npeople.\n\nIn the money part of the putting down of the people's liberties, \nthe King was equally gentle, as some will tell you:  as I think, \nequally alarming.  He levied those duties of tonnage and poundage, \nand increased them as he thought fit.  He granted monopolies to \ncompanies of merchants on their paying him for them, \nnotwithstanding the great complaints that had, for years and years, \nbeen made on the subject of monopolies.  He fined the people for \ndisobeying proclamations issued by his Sowship in direct violation \nof law.  He revived the detested Forest laws, and took private \nproperty to himself as his forest right.  Above all, he determined \nto have what was called Ship Money; that is to say, money for the \nsupport of the fleet - not only from the seaports, but from all the \ncounties of England:  having found out that, in some ancient time \nor other, all the counties paid it.  The grievance of this ship \nmoney being somewhat too strong, JOHN CHAMBERS, a citizen of \nLondon, refused to pay his part of it.  For this the Lord Mayor \nordered John Chambers to prison, and for that John Chambers brought \na suit against the Lord Mayor.  LORD SAY, also, behaved like a real \nnobleman, and declared he would not pay.  But, the sturdiest and \nbest opponent of the ship money was JOHN HAMPDEN, a gentleman of \nBuckinghamshire, who had sat among the 'vipers' in the House of \nCommons when there was such a thing, and who had been the bosom \nfriend of Sir John Eliot.  This case was tried before the twelve \njudges in the Court of Exchequer, and again the King's lawyers said \nit was impossible that ship money could be wrong, because the King \ncould do no wrong, however hard he tried - and he really did try \nvery hard during these twelve years.  Seven of the judges said that \nwas quite true, and Mr. Hampden was bound to pay:  five of the \njudges said that was quite false, and Mr. Hampden was not bound to \npay.  So, the King triumphed (as he thought), by making Hampden the \nmost popular man in England; where matters were getting to that \nheight now, that many honest Englishmen could not endure their \ncountry, and sailed away across the seas to found a colony in \nMassachusetts Bay in America.  It is said that Hampden himself and \nhis relation OLIVER CROMWELL were going with a company of such \nvoyagers, and were actually on board ship, when they were stopped \nby a proclamation, prohibiting sea captains to carry out such \npassengers without the royal license.  But O! it would have been \nwell for the King if he had let them go!  This was the state of \nEngland.  If Laud had been a madman just broke loose, he could not \nhave done more mischief than he did in Scotland.  In his endeavours \n(in which he was seconded by the King, then in person in that part \nof his dominions) to force his own ideas of bishops, and his own \nreligious forms and ceremonies upon the Scotch, he roused that \nnation to a perfect frenzy.  They formed a solemn league, which \nthey called The Covenant, for the preservation of their own \nreligious forms; they rose in arms throughout the whole country; \nthey summoned all their men to prayers and sermons twice a day by \nbeat of drum; they sang psalms, in which they compared their \nenemies to all the evil spirits that ever were heard of; and they \nsolemnly vowed to smite them with the sword.  At first the King \ntried force, then treaty, then a Scottish Parliament which did not \nanswer at all.  Then he tried the EARL OF STRAFFORD, formerly Sir \nThomas Wentworth; who, as LORD WENTWORTH, had been governing \nIreland.  He, too, had carried it with a very high hand there, \nthough to the benefit and prosperity of that country.\n\nStrafford and Laud were for conquering the Scottish people by force \nof arms.  Other lords who were taken into council, recommended that \na Parliament should at last be called; to which the King \nunwillingly consented.  So, on the thirteenth of April, one \nthousand six hundred and forty, that then strange sight, a \nParliament, was seen at Westminster.  It is called the Short \nParliament, for it lasted a very little while.  While the members \nwere all looking at one another, doubtful who would dare to speak, \nMR. PYM arose and set forth all that the King had done unlawfully \nduring the past twelve years, and what was the position to which \nEngland was reduced.  This great example set, other members took \ncourage and spoke the truth freely, though with great patience and \nmoderation.  The King, a little frightened, sent to say that if \nthey would grant him a certain sum on certain terms, no more ship \nmoney should be raised.  They debated the matter for two days; and \nthen, as they would not give him all he asked without promise or \ninquiry, he dissolved them.\n\nBut they knew very well that he must have a Parliament now; and he \nbegan to make that discovery too, though rather late in the day.  \nWherefore, on the twenty-fourth of September, being then at York \nwith an army collected against the Scottish people, but his own men \nsullen and discontented like the rest of the nation, the King told \nthe great council of the Lords, whom he had called to meet him \nthere, that he would summon another Parliament to assemble on the \nthird of November.  The soldiers of the Covenant had now forced \ntheir way into England and had taken possession of the northern \ncounties, where the coals are got.  As it would never do to be \nwithout coals, and as the King's troops could make no head against \nthe Covenanters so full of gloomy zeal, a truce was made, and a \ntreaty with Scotland was taken into consideration.  Meanwhile the \nnorthern counties paid the Covenanters to leave the coals alone, \nand keep quiet.\n\nWe have now disposed of the Short Parliament.  We have next to see \nwhat memorable things were done by the Long one.\n\n\nSECOND PART\n\n\nTHE Long Parliament assembled on the third of November, one \nthousand six hundred and forty-one.  That day week the Earl of \nStrafford arrived from York, very sensible that the spirited and \ndetermined men who formed that Parliament were no friends towards \nhim, who had not only deserted the cause of the people, but who had \non all occasions opposed himself to their liberties.  The King told \nhim, for his comfort, that the Parliament 'should not hurt one hair \nof his head.'  But, on the very next day Mr. Pym, in the House of \nCommons, and with great solemnity, impeached the Earl of Strafford \nas a traitor.  He was immediately taken into custody and fell from \nhis proud height.\n\nIt was the twenty-second of March before he was brought to trial in \nWestminster Hall; where, although he was very ill and suffered \ngreat pain, he defended himself with such ability and majesty, that \nit was doubtful whether he would not get the best of it.  But on \nthe thirteenth day of the trial, Pym produced in the House of \nCommons a copy of some notes of a council, found by young SIR HARRY \nVANE in a red velvet cabinet belonging to his father (Secretary \nVane, who sat at the council-table with the Earl), in which \nStrafford had distinctly told the King that he was free from all \nrules and obligations of government, and might do with his people \nwhatever he liked; and in which he had added - 'You have an army in \nIreland that you may employ to reduce this kingdom to obedience.'  \nIt was not clear whether by the words 'this kingdom,' he had really \nmeant England or Scotland; but the Parliament contended that he \nmeant England, and this was treason.  At the same sitting of the \nHouse of Commons it was resolved to bring in a bill of attainder \ndeclaring the treason to have been committed:  in preference to \nproceeding with the trial by impeachment, which would have required \nthe treason to be proved.\n\nSo, a bill was brought in at once, was carried through the House of \nCommons by a large majority, and was sent up to the House of Lords.  \nWhile it was still uncertain whether the House of Lords would pass \nit and the King consent to it, Pym disclosed to the House of \nCommons that the King and Queen had both been plotting with the \nofficers of the army to bring up the soldiers and control the \nParliament, and also to introduce two hundred soldiers into the \nTower of London to effect the Earl's escape.  The plotting with the \narmy was revealed by one GEORGE GORING, the son of a lord of that \nname:  a bad fellow who was one of the original plotters, and \nturned traitor.  The King had actually given his warrant for the \nadmission of the two hundred men into the Tower, and they would \nhave got in too, but for the refusal of the governor - a sturdy \nScotchman of the name of BALFOUR - to admit them.  These matters \nbeing made public, great numbers of people began to riot outside \nthe Houses of Parliament, and to cry out for the execution of the \nEarl of Strafford, as one of the King's chief instruments against \nthem.  The bill passed the House of Lords while the people were in \nthis state of agitation, and was laid before the King for his \nassent, together with another bill declaring that the Parliament \nthen assembled should not be dissolved or adjourned without their \nown consent.  The King - not unwilling to save a faithful servant, \nthough he had no great attachment for him - was in some doubt what \nto do; but he gave his consent to both bills, although he in his \nheart believed that the bill against the Earl of Strafford was \nunlawful and unjust.  The Earl had written to him, telling him that \nhe was willing to die for his sake.  But he had not expected that \nhis royal master would take him at his word quite so readily; for, \nwhen he heard his doom, he laid his hand upon his heart, and said, \n'Put not your trust in Princes!'\n\nThe King, who never could be straightforward and plain, through one \nsingle day or through one single sheet of paper, wrote a letter to \nthe Lords, and sent it by the young Prince of Wales, entreating \nthem to prevail with the Commons that 'that unfortunate man should \nfulfil the natural course of his life in a close imprisonment.'  In \na postscript to the very same letter, he added, 'If he must die, it \nwere charity to reprieve him till Saturday.'  If there had been any \ndoubt of his fate, this weakness and meanness would have settled \nit.  The very next day, which was the twelfth of May, he was \nbrought out to be beheaded on Tower Hill.\n\nArchbishop Laud, who had been so fond of having people's ears \ncropped off and their noses slit, was now confined in the Tower \ntoo; and when the Earl went by his window to his death, he was \nthere, at his request, to give him his blessing.  They had been \ngreat friends in the King's cause, and the Earl had written to him \nin the days of their power that he thought it would be an admirable \nthing to have Mr. Hampden publicly whipped for refusing to pay the \nship money.  However, those high and mighty doings were over now, \nand the Earl went his way to death with dignity and heroism.  The \ngovernor wished him to get into a coach at the Tower gate, for fear \nthe people should tear him to pieces; but he said it was all one to \nhim whether he died by the axe or by the people's hands.  So, he \nwalked, with a firm tread and a stately look, and sometimes pulled \noff his hat to them as he passed along.  They were profoundly \nquiet.  He made a speech on the scaffold from some notes he had \nprepared (the paper was found lying there after his head was struck \noff), and one blow of the axe killed him, in the forty-ninth year \nof his age.\n\nThis bold and daring act, the Parliament accompanied by other \nfamous measures, all originating (as even this did) in the King's \nhaving so grossly and so long abused his power.  The name of \nDELINQUENTS was applied to all sheriffs and other officers who had \nbeen concerned in raising the ship money, or any other money, from \nthe people, in an unlawful manner; the Hampden judgment was \nreversed; the judges who had decided against Hampden were called \nupon to give large securities that they would take such \nconsequences as Parliament might impose upon them; and one was \narrested as he sat in High Court, and carried off to prison.  Laud \nwas impeached; the unfortunate victims whose ears had been cropped \nand whose noses had been slit, were brought out of prison in \ntriumph; and a bill was passed declaring that a Parliament should \nbe called every third year, and that if the King and the King's \nofficers did not call it, the people should assemble of themselves \nand summon it, as of their own right and power.  Great \nilluminations and rejoicings took place over all these things, and \nthe country was wildly excited.  That the Parliament took advantage \nof this excitement and stirred them up by every means, there is no \ndoubt; but you are always to remember those twelve long years, \nduring which the King had tried so hard whether he really could do \nany wrong or not.\n\nAll this time there was a great religious outcry against the right \nof the Bishops to sit in Parliament; to which the Scottish people \nparticularly objected.  The English were divided on this subject, \nand, partly on this account and partly because they had had foolish \nexpectations that the Parliament would be able to take off nearly \nall the taxes, numbers of them sometimes wavered and inclined \ntowards the King.\n\nI believe myself, that if, at this or almost any other period of \nhis life, the King could have been trusted by any man not out of \nhis senses, he might have saved himself and kept his throne.  But, \non the English army being disbanded, he plotted with the officers \nagain, as he had done before, and established the fact beyond all \ndoubt by putting his signature of approval to a petition against \nthe Parliamentary leaders, which was drawn up by certain officers.  \nWhen the Scottish army was disbanded, he went to Edinburgh in four \ndays - which was going very fast at that time - to plot again, and \nso darkly too, that it is difficult to decide what his whole object \nwas.  Some suppose that he wanted to gain over the Scottish \nParliament, as he did in fact gain over, by presents and favours, \nmany Scottish lords and men of power.  Some think that he went to \nget proofs against the Parliamentary leaders in England of their \nhaving treasonably invited the Scottish people to come and help \nthem.  With whatever object he went to Scotland, he did little good \nby going.  At the instigation of the EARL OF MONTROSE, a desperate \nman who was then in prison for plotting, he tried to kidnap three \nScottish lords who escaped.  A committee of the Parliament at home, \nwho had followed to watch him, writing an account of this INCIDENT, \nas it was called, to the Parliament, the Parliament made a fresh \nstir about it; were, or feigned to be, much alarmed for themselves; \nand wrote to the EARL OF ESSEX, the commander-in-chief, for a guard \nto protect them.\n\nIt is not absolutely proved that the King plotted in Ireland \nbesides, but it is very probable that he did, and that the Queen \ndid, and that he had some wild hope of gaining the Irish people \nover to his side by favouring a rise among them.  Whether or no, \nthey did rise in a most brutal and savage rebellion; in which, \nencouraged by their priests, they committed such atrocities upon \nnumbers of the English, of both sexes and of all ages, as nobody \ncould believe, but for their being related on oath by eye-\nwitnesses.  Whether one hundred thousand or two hundred thousand \nProtestants were murdered in this outbreak, is uncertain; but, that \nit was as ruthless and barbarous an outbreak as ever was known \namong any savage people, is certain.\n\nThe King came home from Scotland, determined to make a great \nstruggle for his lost power.  He believed that, through his \npresents and favours, Scotland would take no part against him; and \nthe Lord Mayor of London received him with such a magnificent \ndinner that he thought he must have become popular again in \nEngland.  It would take a good many Lord Mayors, however, to make a \npeople, and the King soon found himself mistaken.\n\nNot so soon, though, but that there was a great opposition in the \nParliament to a celebrated paper put forth by Pym and Hampden and \nthe rest, called 'THE REMONSTRANCE,' which set forth all the \nillegal acts that the King had ever done, but politely laid the \nblame of them on his bad advisers.  Even when it was passed and \npresented to him, the King still thought himself strong enough to \ndischarge Balfour from his command in the Tower, and to put in his \nplace a man of bad character; to whom the Commons instantly \nobjected, and whom he was obliged to abandon.  At this time, the \nold outcry about the Bishops became louder than ever, and the old \nArchbishop of York was so near being murdered as he went down to \nthe House of Lords - being laid hold of by the mob and violently \nknocked about, in return for very foolishly scolding a shrill boy \nwho was yelping out 'No Bishops!' - that he sent for all the \nBishops who were in town, and proposed to them to sign a \ndeclaration that, as they could no longer without danger to their \nlives attend their duty in Parliament, they protested against the \nlawfulness of everything done in their absence.  This they asked \nthe King to send to the House of Lords, which he did.  Then the \nHouse of Commons impeached the whole party of Bishops and sent them \noff to the Tower:\n\nTaking no warning from this; but encouraged by there being a \nmoderate party in the Parliament who objected to these strong \nmeasures, the King, on the third of January, one thousand six \nhundred and forty-two, took the rashest step that ever was taken by \nmortal man.\n\nOf his own accord and without advice, he sent the Attorney-General \nto the House of Lords, to accuse of treason certain members of \nParliament who as popular leaders were the most obnoxious to him; \nLORD KIMBOLTON, SIR ARTHUR HASELRIG, DENZIL HOLLIS, JOHN PYM (they \nused to call him King Pym, he possessed such power and looked so \nbig), JOHN HAMPDEN, and WILLIAM STRODE.  The houses of those \nmembers he caused to be entered, and their papers to be sealed up.  \nAt the same time, he sent a messenger to the House of Commons \ndemanding to have the five gentlemen who were members of that House \nimmediately produced.  To this the House replied that they should \nappear as soon as there was any legal charge against them, and \nimmediately adjourned.\n\nNext day, the House of Commons send into the City to let the Lord \nMayor know that their privileges are invaded by the King, and that \nthere is no safety for anybody or anything.  Then, when the five \nmembers are gone out of the way, down comes the King himself, with \nall his guard and from two to three hundred gentlemen and soldiers, \nof whom the greater part were armed.  These he leaves in the hall; \nand then, with his nephew at his side, goes into the House, takes \noff his hat, and walks up to the Speaker's chair.  The Speaker \nleaves it, the King stands in front of it, looks about him steadily \nfor a little while, and says he has come for those five members.  \nNo one speaks, and then he calls John Pym by name.  No one speaks, \nand then he calls Denzil Hollis by name.  No one speaks, and then \nhe asks the Speaker of the House where those five members are?  The \nSpeaker, answering on his knee, nobly replies that he is the \nservant of that House, and that he has neither eyes to see, nor \ntongue to speak, anything but what the House commands him.  Upon \nthis, the King, beaten from that time evermore, replies that he \nwill seek them himself, for they have committed treason; and goes \nout, with his hat in his hand, amid some audible murmurs from the \nmembers.\n\nNo words can describe the hurry that arose out of doors when all \nthis was known.  The five members had gone for safety to a house in \nColeman-street, in the City, where they were guarded all night; and \nindeed the whole city watched in arms like an army.  At ten o'clock \nin the morning, the King, already frightened at what he had done, \ncame to the Guildhall, with only half a dozen lords, and made a \nspeech to the people, hoping they would not shelter those whom he \naccused of treason.  Next day, he issued a proclamation for the \napprehension of the five members; but the Parliament minded it so \nlittle that they made great arrangements for having them brought \ndown to Westminster in great state, five days afterwards.  The King \nwas so alarmed now at his own imprudence, if not for his own \nsafety, that he left his palace at Whitehall, and went away with \nhis Queen and children to Hampton Court.\n\nIt was the eleventh of May, when the five members were carried in \nstate and triumph to Westminster.  They were taken by water.  The \nriver could not be seen for the boats on it; and the five members \nwere hemmed in by barges full of men and great guns, ready to \nprotect them, at any cost.  Along the Strand a large body of the \ntrain-bands of London, under their commander, SKIPPON, marched to \nbe ready to assist the little fleet.  Beyond them, came a crowd who \nchoked the streets, roaring incessantly about the Bishops and the \nPapists, and crying out contemptuously as they passed Whitehall, \n'What has become of the King?'  With this great noise outside the \nHouse of Commons, and with great silence within, Mr. Pym rose and \ninformed the House of the great kindness with which they had been \nreceived in the City.  Upon that, the House called the sheriffs in \nand thanked them, and requested the train-bands, under their \ncommander Skippon, to guard the House of Commons every day.  Then, \ncame four thousand men on horseback out of Buckinghamshire, \noffering their services as a guard too, and bearing a petition to \nthe King, complaining of the injury that had been done to Mr. \nHampden, who was their county man and much beloved and honoured.\n\nWhen the King set off for Hampton Court, the gentlemen and soldiers \nwho had been with him followed him out of town as far as Kingston-\nupon-Thames; next day, Lord Digby came to them from the King at \nHampton Court, in his coach and six, to inform them that the King \naccepted their protection.  This, the Parliament said, was making \nwar against the kingdom, and Lord Digby fled abroad.  The \nParliament then immediately applied themselves to getting hold of \nthe military power of the country, well knowing that the King was \nalready trying hard to use it against them, and that he had \nsecretly sent the Earl of Newcastle to Hull, to secure a valuable \nmagazine of arms and gunpowder that was there.  In those times, \nevery county had its own magazines of arms and powder, for its own \ntrain-bands or militia; so, the Parliament brought in a bill \nclaiming the right (which up to this time had belonged to the King) \nof appointing the Lord Lieutenants of counties, who commanded these \ntrain-bands; also, of having all the forts, castles, and garrisons \nin the kingdom, put into the hands of such governors as they, the \nParliament, could confide in.  It also passed a law depriving the \nBishops of their votes.  The King gave his assent to that bill, but \nwould not abandon the right of appointing the Lord Lieutenants, \nthough he said he was willing to appoint such as might be suggested \nto him by the Parliament.  When the Earl of Pembroke asked him \nwhether he would not give way on that question for a time, he said, \n'By God! not for one hour!' and upon this he and the Parliament \nwent to war.\n\nHis young daughter was betrothed to the Prince of Orange.  On \npretence of taking her to the country of her future husband, the \nQueen was already got safely away to Holland, there to pawn the \nCrown jewels for money to raise an army on the King's side.  The \nLord Admiral being sick, the House of Commons now named the Earl of \nWarwick to hold his place for a year.  The King named another \ngentleman; the House of Commons took its own way, and the Earl of \nWarwick became Lord Admiral without the King's consent.  The \nParliament sent orders down to Hull to have that magazine removed \nto London; the King went down to Hull to take it himself.  The \ncitizens would not admit him into the town, and the governor would \nnot admit him into the castle.  The Parliament resolved that \nwhatever the two Houses passed, and the King would not consent to, \nshould be called an ORDINANCE, and should be as much a law as if he \ndid consent to it.  The King protested against this, and gave \nnotice that these ordinances were not to be obeyed.  The King, \nattended by the majority of the House of Peers, and by many members \nof the House of Commons, established himself at York.  The \nChancellor went to him with the Great Seal, and the Parliament made \na new Great Seal.  The Queen sent over a ship full of arms and \nammunition, and the King issued letters to borrow money at high \ninterest.  The Parliament raised twenty regiments of foot and \nseventy-five troops of horse; and the people willingly aided them \nwith their money, plate, jewellery, and trinkets - the married \nwomen even with their wedding-rings.  Every member of Parliament \nwho could raise a troop or a regiment in his own part of the \ncountry, dressed it according to his taste and in his own colours, \nand commanded it.  Foremost among them all, OLIVER CROMWELL raised \na troop of horse - thoroughly in earnest and thoroughly well armed \n- who were, perhaps, the best soldiers that ever were seen.\n\nIn some of their proceedings, this famous Parliament passed the \nbounds of previous law and custom, yielded to and favoured riotous \nassemblages of the people, and acted tyrannically in imprisoning \nsome who differed from the popular leaders.  But again, you are \nalways to remember that the twelve years during which the King had \nhad his own wilful way, had gone before; and that nothing could \nmake the times what they might, could, would, or should have been, \nif those twelve years had never rolled away.\n\n\nTHIRD PART\n\n\nI SHALL not try to relate the particulars of the great civil war \nbetween King Charles the First and the Long Parliament, which \nlasted nearly four years, and a full account of which would fill \nmany large books.  It was a sad thing that Englishmen should once \nmore be fighting against Englishmen on English ground; but, it is \nsome consolation to know that on both sides there was great \nhumanity, forbearance, and honour.  The soldiers of the Parliament \nwere far more remarkable for these good qualities than the soldiers \nof the King (many of whom fought for mere pay without much caring \nfor the cause); but those of the nobility and gentry who were on \nthe King's side were so brave, and so faithful to him, that their \nconduct cannot but command our highest admiration.  Among them were \ngreat numbers of Catholics, who took the royal side because the \nQueen was so strongly of their persuasion.\n\nThe King might have distinguished some of these gallant spirits, if \nhe had been as generous a spirit himself, by giving them the \ncommand of his army.  Instead of that, however, true to his old \nhigh notions of royalty, he entrusted it to his two nephews, PRINCE \nRUPERT and PRINCE MAURICE, who were of royal blood and came over \nfrom abroad to help him.  It might have been better for him if they \nhad stayed away; since Prince Rupert was an impetuous, hot-headed \nfellow, whose only idea was to dash into battle at all times and \nseasons, and lay about him.\n\nThe general-in-chief of the Parliamentary army was the Earl of \nEssex, a gentleman of honour and an excellent soldier.  A little \nwhile before the war broke out, there had been some rioting at \nWestminster between certain officious law students and noisy \nsoldiers, and the shopkeepers and their apprentices, and the \ngeneral people in the streets.  At that time the King's friends \ncalled the crowd, Roundheads, because the apprentices wore short \nhair; the crowd, in return, called their opponents Cavaliers, \nmeaning that they were a blustering set, who pretended to be very \nmilitary.  These two words now began to be used to distinguish the \ntwo sides in the civil war.  The Royalists also called the \nParliamentary men Rebels and Rogues, while the Parliamentary men \ncalled THEM Malignants, and spoke of themselves as the Godly, the \nHonest, and so forth.\n\nThe war broke out at Portsmouth, where that double traitor Goring \nhad again gone over to the King and was besieged by the \nParliamentary troops.  Upon this, the King proclaimed the Earl of \nEssex and the officers serving under him, traitors, and called upon \nhis loyal subjects to meet him in arms at Nottingham on the twenty-\nfifth of August.  But his loyal subjects came about him in scanty \nnumbers, and it was a windy, gloomy day, and the Royal Standard got \nblown down, and the whole affair was very melancholy.  The chief \nengagements after this, took place in the vale of the Red Horse \nnear Banbury, at Brentford, at Devizes, at Chalgrave Field (where \nMr. Hampden was so sorely wounded while fighting at the head of his \nmen, that he died within a week), at Newbury (in which battle LORD \nFALKLAND, one of the best noblemen on the King's side, was killed), \nat Leicester, at Naseby, at Winchester, at Marston Moor near York, \nat Newcastle, and in many other parts of England and Scotland.  \nThese battles were attended with various successes.  At one time, \nthe King was victorious; at another time, the Parliament.  But \nalmost all the great and busy towns were against the King; and when \nit was considered necessary to fortify London, all ranks of people, \nfrom labouring men and women, up to lords and ladies, worked hard \ntogether with heartiness and good will.  The most distinguished \nleaders on the Parliamentary side were HAMPDEN, SIR THOMAS FAIRFAX, \nand, above all, OLIVER CROMWELL, and his son-in-law IRETON.\n\nDuring the whole of this war, the people, to whom it was very \nexpensive and irksome, and to whom it was made the more distressing \nby almost every family being divided - some of its members \nattaching themselves to one side and some to the other - were over \nand over again most anxious for peace.  So were some of the best \nmen in each cause.  Accordingly, treaties of peace were discussed \nbetween commissioners from the Parliament and the King; at York, at \nOxford (where the King held a little Parliament of his own), and at \nUxbridge.  But they came to nothing.  In all these negotiations, \nand in all his difficulties, the King showed himself at his best.  \nHe was courageous, cool, self-possessed, and clever; but, the old \ntaint of his character was always in him, and he was never for one \nsingle moment to be trusted.  Lord Clarendon, the historian, one of \nhis highest admirers, supposes that he had unhappily promised the \nQueen never to make peace without her consent, and that this must \noften be taken as his excuse.  He never kept his word from night to \nmorning.  He signed a cessation of hostilities with the blood-\nstained Irish rebels for a sum of money, and invited the Irish \nregiments over, to help him against the Parliament.  In the battle \nof Naseby, his cabinet was seized and was found to contain a \ncorrespondence with the Queen, in which he expressly told her that \nhe had deceived the Parliament - a mongrel Parliament, he called it \nnow, as an improvement on his old term of vipers - in pretending to \nrecognise it and to treat with it; and from which it further \nappeared that he had long been in secret treaty with the Duke of \nLorraine for a foreign army of ten thousand men.  Disappointed in \nthis, he sent a most devoted friend of his, the EARL OF GLAMORGAN, \nto Ireland, to conclude a secret treaty with the Catholic powers, \nto send him an Irish army of ten thousand men; in return for which \nhe was to bestow great favours on the Catholic religion.  And, when \nthis treaty was discovered in the carriage of a fighting Irish \nArchbishop who was killed in one of the many skirmishes of those \ndays, he basely denied and deserted his attached friend, the Earl, \non his being charged with high treason; and - even worse than this \n- had left blanks in the secret instructions he gave him with his \nown kingly hand, expressly that he might thus save himself.\n\nAt last, on the twenty-seventh day of April, one thousand six \nhundred and forty-six, the King found himself in the city of \nOxford, so surrounded by the Parliamentary army who were closing in \nupon him on all sides that he felt that if he would escape he must \ndelay no longer.  So, that night, having altered the cut of his \nhair and beard, he was dressed up as a servant and put upon a horse \nwith a cloak strapped behind him, and rode out of the town behind \none of his own faithful followers, with a clergyman of that country \nwho knew the road well, for a guide.  He rode towards London as far \nas Harrow, and then altered his plans and resolved, it would seem, \nto go to the Scottish camp.  The Scottish men had been invited over \nto help the Parliamentary army, and had a large force then in \nEngland.  The King was so desperately intriguing in everything he \ndid, that it is doubtful what he exactly meant by this step.  He \ntook it, anyhow, and delivered himself up to the EARL OF LEVEN, the \nScottish general-in-chief, who treated him as an honourable \nprisoner.  Negotiations between the Parliament on the one hand and \nthe Scottish authorities on the other, as to what should be done \nwith him, lasted until the following February.  Then, when the King \nhad refused to the Parliament the concession of that old militia \npoint for twenty years, and had refused to Scotland the recognition \nof its Solemn League and Covenant, Scotland got a handsome sum for \nits army and its help, and the King into the bargain.  He was \ntaken, by certain Parliamentary commissioners appointed to receive \nhim, to one of his own houses, called Holmby House, near Althorpe, \nin Northamptonshire.\n\nWhile the Civil War was still in progress, John Pym died, and was \nburied with great honour in Westminster Abbey - not with greater \nhonour than he deserved, for the liberties of Englishmen owe a \nmighty debt to Pym and Hampden.  The war was but newly over when \nthe Earl of Essex died, of an illness brought on by his having \noverheated himself in a stag hunt in Windsor Forest.  He, too, was \nburied in Westminster Abbey, with great state.  I wish it were not \nnecessary to add that Archbishop Laud died upon the scaffold when \nthe war was not yet done.  His trial lasted in all nearly a year, \nand, it being doubtful even then whether the charges brought \nagainst him amounted to treason, the odious old contrivance of the \nworst kings was resorted to, and a bill of attainder was brought in \nagainst him.  He was a violently prejudiced and mischievous person; \nhad had strong ear-cropping and nose-splitting propensities, as you \nknow; and had done a world of harm.  But he died peaceably, and \nlike a brave old man.\n\n\nFOURTH PART\n\n\nWHEN the Parliament had got the King into their hands, they became \nvery anxious to get rid of their army, in which Oliver Cromwell had \nbegun to acquire great power; not only because of his courage and \nhigh abilities, but because he professed to be very sincere in the \nScottish sort of Puritan religion that was then exceedingly popular \namong the soldiers.  They were as much opposed to the Bishops as to \nthe Pope himself; and the very privates, drummers, and trumpeters, \nhad such an inconvenient habit of starting up and preaching long-\nwinded discourses, that I would not have belonged to that army on \nany account.\n\nSo, the Parliament, being far from sure but that the army might \nbegin to preach and fight against them now it had nothing else to \ndo, proposed to disband the greater part of it, to send another \npart to serve in Ireland against the rebels, and to keep only a \nsmall force in England.  But, the army would not consent to be \nbroken up, except upon its own conditions; and, when the Parliament \nshowed an intention of compelling it, it acted for itself in an \nunexpected manner.  A certain cornet, of the name of JOICE, arrived \nat Holmby House one night, attended by four hundred horsemen, went \ninto the King's room with his hat in one hand and a pistol in the \nother, and told the King that he had come to take him away.  The \nKing was willing enough to go, and only stipulated that he should \nbe publicly required to do so next morning.  Next morning, \naccordingly, he appeared on the top of the steps of the house, and \nasked Comet Joice before his men and the guard set there by the \nParliament, what authority he had for taking him away?  To this \nCornet Joice replied, 'The authority of the army.'  'Have you a \nwritten commission?' said the King.  Joice, pointing to his four \nhundred men on horseback, replied, 'That is my commission.'  \n'Well,' said the King, smiling, as if he were pleased, 'I never \nbefore read such a commission; but it is written in fair and \nlegible characters.  This is a company of as handsome proper \ngentlemen as I have seen a long while.'  He was asked where he \nwould like to live, and he said at Newmarket.  So, to Newmarket he \nand Cornet Joice and the four hundred horsemen rode; the King \nremarking, in the same smiling way, that he could ride as far at a \nspell as Cornet Joice, or any man there.\n\nThe King quite believed, I think, that the army were his friends.  \nHe said as much to Fairfax when that general, Oliver Cromwell, and \nIreton, went to persuade him to return to the custody of the \nParliament.  He preferred to remain as he was, and resolved to \nremain as he was.  And when the army moved nearer and nearer London \nto frighten the Parliament into yielding to their demands, they \ntook the King with them.  It was a deplorable thing that England \nshould be at the mercy of a great body of soldiers with arms in \ntheir hands; but the King certainly favoured them at this important \ntime of his life, as compared with the more lawful power that tried \nto control him.  It must be added, however, that they treated him, \nas yet, more respectfully and kindly than the Parliament had done.  \nThey allowed him to be attended by his own servants, to be \nsplendidly entertained at various houses, and to see his children - \nat Cavesham House, near Reading - for two days.  Whereas, the \nParliament had been rather hard with him, and had only allowed him \nto ride out and play at bowls.\n\nIt is much to be believed that if the King could have been trusted, \neven at this time, he might have been saved.  Even Oliver Cromwell \nexpressly said that he did believe that no man could enjoy his \npossessions in peace, unless the King had his rights.  He was not \nunfriendly towards the King; he had been present when he received \nhis children, and had been much affected by the pitiable nature of \nthe scene; he saw the King often; he frequently walked and talked \nwith him in the long galleries and pleasant gardens of the Palace \nat Hampton Court, whither he was now removed; and in all this \nrisked something of his influence with the army.  But, the King was \nin secret hopes of help from the Scottish people; and the moment he \nwas encouraged to join them he began to be cool to his new friends, \nthe army, and to tell the officers that they could not possibly do \nwithout him.  At the very time, too, when he was promising to make \nCromwell and Ireton noblemen, if they would help him up to his old \nheight, he was writing to the Queen that he meant to hang them.  \nThey both afterwards declared that they had been privately informed \nthat such a letter would be found, on a certain evening, sewed up \nin a saddle which would be taken to the Blue Boar in Holborn to be \nsent to Dover; and that they went there, disguised as common \nsoldiers, and sat drinking in the inn-yard until a man came with \nthe saddle, which they ripped up with their knives, and therein \nfound the letter.  I see little reason to doubt the story.  It is \ncertain that Oliver Cromwell told one of the King's most faithful \nfollowers that the King could not be trusted, and that he would not \nbe answerable if anything amiss were to happen to him.  Still, even \nafter that, he kept a promise he had made to the King, by letting \nhim know that there was a plot with a certain portion of the army \nto seize him.  I believe that, in fact, he sincerely wanted the \nKing to escape abroad, and so to be got rid of without more trouble \nor danger.  That Oliver himself had work enough with the army is \npretty plain; for some of the troops were so mutinous against him, \nand against those who acted with him at this time, that he found it \nnecessary to have one man shot at the head of his regiment to \noverawe the rest.\n\nThe King, when he received Oliver's warning, made his escape from \nHampton Court; after some indecision and uncertainty, he went to \nCarisbrooke Castle in the Isle of Wight.  At first, he was pretty \nfree there; but, even there, he carried on a pretended treaty with \nthe Parliament, while he was really treating with commissioners \nfrom Scotland to send an army into England to take his part.  When \nhe broke off this treaty with the Parliament (having settled with \nScotland) and was treated as a prisoner, his treatment was not \nchanged too soon, for he had plotted to escape that very night to a \nship sent by the Queen, which was lying off the island.\n\nHe was doomed to be disappointed in his hopes from Scotland.  The \nagreement he had made with the Scottish Commissioners was not \nfavourable enough to the religion of that country to please the \nScottish clergy; and they preached against it.  The consequence \nwas, that the army raised in Scotland and sent over, was too small \nto do much; and that, although it was helped by a rising of the \nRoyalists in England and by good soldiers from Ireland, it could \nmake no head against the Parliamentary army under such men as \nCromwell and Fairfax.  The King's eldest son, the Prince of Wales, \ncame over from Holland with nineteen ships (a part of the English \nfleet having gone over to him) to help his father; but nothing came \nof his voyage, and he was fain to return.  The most remarkable \nevent of this second civil war was the cruel execution by the \nParliamentary General, of SIR CHARLES LUCAS and SIR GEORGE LISLE, \ntwo grand Royalist generals, who had bravely defended Colchester \nunder every disadvantage of famine and distress for nearly three \nmonths.  When Sir Charles Lucas was shot, Sir George Lisle kissed \nhis body, and said to the soldiers who were to shoot him, 'Come \nnearer, and make sure of me.'  'I warrant you, Sir George,' said \none of the soldiers, 'we shall hit you.'  'AY?' he returned with a \nsmile, 'but I have been nearer to you, my friends, many a time, and \nyou have missed me.'\n\nThe Parliament, after being fearfully bullied by the army - who \ndemanded to have seven members whom they disliked given up to them \n- had voted that they would have nothing more to do with the King.  \nOn the conclusion, however, of this second civil war (which did not \nlast more than six months), they appointed commissioners to treat \nwith him.  The King, then so far released again as to be allowed to \nlive in a private house at Newport in the Isle of Wight, managed \nhis own part of the negotiation with a sense that was admired by \nall who saw him, and gave up, in the end, all that was asked of him \n- even yielding (which he had steadily refused, so far) to the \ntemporary abolition of the bishops, and the transfer of their \nchurch land to the Crown.  Still, with his old fatal vice upon him, \nwhen his best friends joined the commissioners in beseeching him to \nyield all those points as the only means of saving himself from the \narmy, he was plotting to escape from the island; he was holding \ncorrespondence with his friends and the Catholics in Ireland, \nthough declaring that he was not; and he was writing, with his own \nhand, that in what he yielded he meant nothing but to get time to \nescape.\n\nMatters were at this pass when the army, resolved to defy the \nParliament, marched up to London.  The Parliament, not afraid of \nthem now, and boldly led by Hollis, voted that the King's \nconcessions were sufficient ground for settling the peace of the \nkingdom.  Upon that, COLONEL RICH and COLONEL PRIDE went down to \nthe House of Commons with a regiment of horse soldiers and a \nregiment of foot; and Colonel Pride, standing in the lobby with a \nlist of the members who were obnoxious to the army in his hand, had \nthem pointed out to him as they came through, and took them all \ninto custody.  This proceeding was afterwards called by the people, \nfor a joke, PRIDE'S PURGE.  Cromwell was in the North, at the head \nof his men, at the time, but when he came home, approved of what \nhad been done.\n\nWhat with imprisoning some members and causing others to stay away, \nthe army had now reduced the House of Commons to some fifty or so.  \nThese soon voted that it was treason in a king to make war against \nhis parliament and his people, and sent an ordinance up to the \nHouse of Lords for the King's being tried as a traitor.  The House \nof Lords, then sixteen in number, to a man rejected it.  Thereupon, \nthe Commons made an ordinance of their own, that they were the \nsupreme government of the country, and would bring the King to \ntrial.\n\nThe King had been taken for security to a place called Hurst \nCastle:  a lonely house on a rock in the sea, connected with the \ncoast of Hampshire by a rough road two miles long at low water.  \nThence, he was ordered to be removed to Windsor; thence, after \nbeing but rudely used there, and having none but soldiers to wait \nupon him at table, he was brought up to St. James's Palace in \nLondon, and told that his trial was appointed for next day.\n\nOn Saturday, the twentieth of January, one thousand six hundred and \nforty-nine, this memorable trial began.  The House of Commons had \nsettled that one hundred and thirty-five persons should form the \nCourt, and these were taken from the House itself, from among the \nofficers of the army, and from among the lawyers and citizens.  \nJOHN BRADSHAW, serjeant-at-law, was appointed president.  The place \nwas Westminster Hall.  At the upper end, in a red velvet chair, sat \nthe president, with his hat (lined with plates of iron for his \nprotection) on his head.  The rest of the Court sat on side \nbenches, also wearing their hats.  The King's seat was covered with \nvelvet, like that of the president, and was opposite to it.  He was \nbrought from St. James's to Whitehall, and from Whitehall he came \nby water to his trial.\n\nWhen he came in, he looked round very steadily on the Court, and on \nthe great number of spectators, and then sat down:  presently he \ngot up and looked round again.  On the indictment 'against Charles \nStuart, for high treason,' being read, he smiled several times, and \nhe denied the authority of the Court, saying that there could be no \nparliament without a House of Lords, and that he saw no House of \nLords there.  Also, that the King ought to be there, and that he \nsaw no King in the King's right place.  Bradshaw replied, that the \nCourt was satisfied with its authority, and that its authority was \nGod's authority and the kingdom's.  He then adjourned the Court to \nthe following Monday.  On that day, the trial was resumed, and went \non all the week.  When the Saturday came, as the King passed \nforward to his place in the Hall, some soldiers and others cried \nfor 'justice!' and execution on him.  That day, too, Bradshaw, like \nan angry Sultan, wore a red robe, instead of the black robe he had \nworn before.  The King was sentenced to death that day.  As he went \nout, one solitary soldier said, 'God bless you, Sir!'  For this, \nhis officer struck him.  The King said he thought the punishment \nexceeded the offence.  The silver head of his walking-stick had \nfallen off while he leaned upon it, at one time of the trial.  The \naccident seemed to disturb him, as if he thought it ominous of the \nfalling of his own head; and he admitted as much, now it was all \nover.\n\nBeing taken back to Whitehall, he sent to the House of Commons, \nsaying that as the time of his execution might be nigh, he wished \nhe might be allowed to see his darling children.  It was granted.  \nOn the Monday he was taken back to St. James's; and his two \nchildren then in England, the PRINCESS ELIZABETH thirteen years \nold, and the DUKE OF GLOUCESTER nine years old, were brought to \ntake leave of him, from Sion House, near Brentford.  It was a sad \nand touching scene, when he kissed and fondled those poor children, \nand made a little present of two diamond seals to the Princess, and \ngave them tender messages to their mother (who little deserved \nthem, for she had a lover of her own whom she married soon \nafterwards), and told them that he died 'for the laws and liberties \nof the land.'  I am bound to say that I don't think he did, but I \ndare say he believed so.\n\nThere were ambassadors from Holland that day, to intercede for the \nunhappy King, whom you and I both wish the Parliament had spared; \nbut they got no answer.  The Scottish Commissioners interceded too; \nso did the Prince of Wales, by a letter in which he offered as the \nnext heir to the throne, to accept any conditions from the \nParliament; so did the Queen, by letter likewise.\n\nNotwithstanding all, the warrant for the execution was this day \nsigned.  There is a story that as Oliver Cromwell went to the table \nwith the pen in his hand to put his signature to it, he drew his \npen across the face of one of the commissioners, who was standing \nnear, and marked it with ink.  That commissioner had not signed his \nown name yet, and the story adds that when he came to do it he \nmarked Cromwell's face with ink in the same way.\n\nThe King slept well, untroubled by the knowledge that it was his \nlast night on earth, and rose on the thirtieth of January, two \nhours before day, and dressed himself carefully.  He put on two \nshirts lest he should tremble with the cold, and had his hair very \ncarefully combed.  The warrant had been directed to three officers \nof the army, COLONEL HACKER, COLONEL HUNKS, and COLONEL PHAYER.  At \nten o'clock, the first of these came to the door and said it was \ntime to go to Whitehall.  The King, who had always been a quick \nwalker, walked at his usual speed through the Park, and called out \nto the guard, with his accustomed voice of command, 'March on \napace!'  When he came to Whitehall, he was taken to his own \nbedroom, where a breakfast was set forth.  As he had taken the \nSacrament, he would eat nothing more; but, at about the time when \nthe church bells struck twelve at noon (for he had to wait, through \nthe scaffold not being ready), he took the advice of the good \nBISHOP JUXON who was with him, and ate a little bread and drank a \nglass of claret.  Soon after he had taken this refreshment, Colonel \nHacker came to the chamber with the warrant in his hand, and called \nfor Charles Stuart.\n\nAnd then, through the long gallery of Whitehall Palace, which he \nhad often seen light and gay and merry and crowded, in very \ndifferent times, the fallen King passed along, until he came to the \ncentre window of the Banqueting House, through which he emerged \nupon the scaffold, which was hung with black.  He looked at the two \nexecutioners, who were dressed in black and masked; he looked at \nthe troops of soldiers on horseback and on foot, and all looked up \nat him in silence; he looked at the vast array of spectators, \nfilling up the view beyond, and turning all their faces upon him; \nhe looked at his old Palace of St. James's; and he looked at the \nblock.  He seemed a little troubled to find that it was so low, and \nasked, 'if there were no place higher?'  Then, to those upon the \nscaffold, he said, 'that it was the Parliament who had begun the \nwar, and not he; but he hoped they might be guiltless too, as ill \ninstruments had gone between them.  In one respect,' he said, 'he \nsuffered justly; and that was because he had permitted an unjust \nsentence to be executed on another.'  In this he referred to the \nEarl of Strafford.\n\nHe was not at all afraid to die; but he was anxious to die easily.  \nWhen some one touched the axe while he was speaking, he broke off \nand called out, 'Take heed of the axe! take heed of the axe!'  He \nalso said to Colonel Hacker, 'Take care that they do not put me to \npain.'  He told the executioner, 'I shall say but very short \nprayers, and then thrust out my hands' - as the sign to strike.\n\nHe put his hair up, under a white satin cap which the bishop had \ncarried, and said, 'I have a good cause and a gracious God on my \nside.'  The bishop told him that he had but one stage more to \ntravel in this weary world, and that, though it was a turbulent and \ntroublesome stage, it was a short one, and would carry him a great \nway - all the way from earth to Heaven.  The King's last word, as \nhe gave his cloak and the George - the decoration from his breast - \nto the bishop, was, 'Remember!'  He then kneeled down, laid his \nhead on the block, spread out his hands, and was instantly killed.  \nOne universal groan broke from the crowd; and the soldiers, who had \nsat on their horses and stood in their ranks immovable as statues, \nwere of a sudden all in motion, clearing the streets.\n\nThus, in the forty-ninth year of his age, falling at the same time \nof his career as Strafford had fallen in his, perished Charles the \nFirst.  With all my sorrow for him, I cannot agree with him that he \ndied 'the martyr of the people;' for the people had been martyrs to \nhim, and to his ideas of a King's rights, long before.  Indeed, I \nam afraid that he was but a bad judge of martyrs; for he had called \nthat infamous Duke of Buckingham 'the Martyr of his Sovereign.'\n\n\n\nCHAPTER XXXIV - ENGLAND UNDER OLIVER CROMWELL\n\n\n\nBEFORE sunset on the memorable day on which King Charles the First \nwas executed, the House of Commons passed an act declaring it \ntreason in any one to proclaim the Prince of Wales - or anybody \nelse - King of England.  Soon afterwards, it declared that the \nHouse of Lords was useless and dangerous, and ought to be \nabolished; and directed that the late King's statue should be taken \ndown from the Royal Exchange in the City and other public places.  \nHaving laid hold of some famous Royalists who had escaped from \nprison, and having beheaded the DUKE OF HAMILTON, LORD HOLLAND, and \nLORD CAPEL, in Palace Yard (all of whom died very courageously), \nthey then appointed a Council of State to govern the country.  It \nconsisted of forty-one members, of whom five were peers.  Bradshaw \nwas made president.  The House of Commons also re-admitted members \nwho had opposed the King's death, and made up its numbers to about \na hundred and fifty.\n\nBut, it still had an army of more than forty thousand men to deal \nwith, and a very hard task it was to manage them.  Before the \nKing's execution, the army had appointed some of its officers to \nremonstrate between them and the Parliament; and now the common \nsoldiers began to take that office upon themselves.  The regiments \nunder orders for Ireland mutinied; one troop of horse in the city \nof London seized their own flag, and refused to obey orders.  For \nthis, the ringleader was shot:  which did not mend the matter, for, \nboth his comrades and the people made a public funeral for him, and \naccompanied the body to the grave with sound of trumpets and with a \ngloomy procession of persons carrying bundles of rosemary steeped \nin blood.  Oliver was the only man to deal with such difficulties \nas these, and he soon cut them short by bursting at midnight into \nthe town of Burford, near Salisbury, where the mutineers were \nsheltered, taking four hundred of them prisoners, and shooting a \nnumber of them by sentence of court-martial.  The soldiers soon \nfound, as all men did, that Oliver was not a man to be trifled \nwith.  And there was an end of the mutiny.\n\nThe Scottish Parliament did not know Oliver yet; so, on hearing of \nthe King's execution, it proclaimed the Prince of Wales King \nCharles the Second, on condition of his respecting the Solemn \nLeague and Covenant.  Charles was abroad at that time, and so was \nMontrose, from whose help he had hopes enough to keep him holding \non and off with commissioners from Scotland, just as his father \nmight have done.  These hopes were soon at an end; for, Montrose, \nhaving raised a few hundred exiles in Germany, and landed with them \nin Scotland, found that the people there, instead of joining him, \ndeserted the country at his approach.  He was soon taken prisoner \nand carried to Edinburgh.  There he was received with every \npossible insult, and carried to prison in a cart, his officers \ngoing two and two before him.  He was sentenced by the Parliament \nto be hanged on a gallows thirty feet high, to have his head set on \na spike in Edinburgh, and his limbs distributed in other places, \naccording to the old barbarous manner.  He said he had always acted \nunder the Royal orders, and only wished he had limbs enough to be \ndistributed through Christendom, that it might be the more widely \nknown how loyal he had been.  He went to the scaffold in a bright \nand brilliant dress, and made a bold end at thirty-eight years of \nage.  The breath was scarcely out of his body when Charles \nabandoned his memory, and denied that he had ever given him orders \nto rise in his behalf.  O the family failing was strong in that \nCharles then!\n\nOliver had been appointed by the Parliament to command the army in \nIreland, where he took a terrible vengeance for the sanguinary \nrebellion, and made tremendous havoc, particularly in the siege of \nDrogheda, where no quarter was given, and where he found at least a \nthousand of the inhabitants shut up together in the great church:  \nevery one of whom was killed by his soldiers, usually known as \nOLIVER'S IRONSIDES.  There were numbers of friars and priests among \nthem, and Oliver gruffly wrote home in his despatch that these were \n'knocked on the head' like the rest.\n\nBut, Charles having got over to Scotland where the men of the \nSolemn League and Covenant led him a prodigiously dull life and \nmade him very weary with long sermons and grim Sundays, the \nParliament called the redoubtable Oliver home to knock the Scottish \nmen on the head for setting up that Prince.  Oliver left his son-\nin-law, Ireton, as general in Ireland in his stead (he died there \nafterwards), and he imitated the example of his father-in-law with \nsuch good will that he brought the country to subjection, and laid \nit at the feet of the Parliament.  In the end, they passed an act \nfor the settlement of Ireland, generally pardoning all the common \npeople, but exempting from this grace such of the wealthier sort as \nhad been concerned in the rebellion, or in any killing of \nProtestants, or who refused to lay down their arms.  Great numbers \nof Irish were got out of the country to serve under Catholic powers \nabroad, and a quantity of land was declared to have been forfeited \nby past offences, and was given to people who had lent money to the \nParliament early in the war.  These were sweeping measures; but, if \nOliver Cromwell had had his own way fully, and had stayed in \nIreland, he would have done more yet.\n\nHowever, as I have said, the Parliament wanted Oliver for Scotland; \nso, home Oliver came, and was made Commander of all the Forces of \nthe Commonwealth of England, and in three days away he went with \nsixteen thousand soldiers to fight the Scottish men.  Now, the \nScottish men, being then - as you will generally find them now - \nmighty cautious, reflected that the troops they had were not used \nto war like the Ironsides, and would be beaten in an open fight.  \nTherefore they said, 'If we live quiet in our trenches in Edinburgh \nhere, and if all the farmers come into the town and desert the \ncountry, the Ironsides will be driven out by iron hunger and be \nforced to go away.'  This was, no doubt, the wisest plan; but as \nthe Scottish clergy WOULD interfere with what they knew nothing \nabout, and would perpetually preach long sermons exhorting the \nsoldiers to come out and fight, the soldiers got it in their heads \nthat they absolutely must come out and fight.  Accordingly, in an \nevil hour for themselves, they came out of their safe position.  \nOliver fell upon them instantly, and killed three thousand, and \ntook ten thousand prisoners.\n\nTo gratify the Scottish Parliament, and preserve their favour, \nCharles had signed a declaration they laid before him, reproaching \nthe memory of his father and mother, and representing himself as a \nmost religious Prince, to whom the Solemn League and Covenant was \nas dear as life.  He meant no sort of truth in this, and soon \nafterwards galloped away on horseback to join some tiresome \nHighland friends, who were always flourishing dirks and \nbroadswords.  He was overtaken and induced to return; but this \nattempt, which was called 'The Start,' did him just so much \nservice, that they did not preach quite such long sermons at him \nafterwards as they had done before.\n\nOn the first of January, one thousand six hundred and fifty-one, \nthe Scottish people crowned him at Scone.  He immediately took the \nchief command of an army of twenty thousand men, and marched to \nStirling.  His hopes were heightened, I dare say, by the \nredoubtable Oliver being ill of an ague; but Oliver scrambled out \nof bed in no time, and went to work with such energy that he got \nbehind the Royalist army and cut it off from all communication with \nScotland.  There was nothing for it then, but to go on to England; \nso it went on as far as Worcester, where the mayor and some of the \ngentry proclaimed King Charles the Second straightway.  His \nproclamation, however, was of little use to him, for very few \nRoyalists appeared; and, on the very same day, two people were \npublicly beheaded on Tower Hill for espousing his cause.  Up came \nOliver to Worcester too, at double quick speed, and he and his \nIronsides so laid about them in the great battle which was fought \nthere, that they completely beat the Scottish men, and destroyed \nthe Royalist army; though the Scottish men fought so gallantly that \nit took five hours to do.\n\nThe escape of Charles after this battle of Worcester did him good \nservice long afterwards, for it induced many of the generous \nEnglish people to take a romantic interest in him, and to think \nmuch better of him than he ever deserved.  He fled in the night, \nwith not more than sixty followers, to the house of a Catholic lady \nin Staffordshire.  There, for his greater safety, the whole sixty \nleft him.  He cropped his hair, stained his face and hands brown as \nif they were sunburnt, put on the clothes of a labouring \ncountryman, and went out in the morning with his axe in his hand, \naccompanied by four wood-cutters who were brothers, and another man \nwho was their brother-in-law.  These good fellows made a bed for \nhim under a tree, as the weather was very bad; and the wife of one \nof them brought him food to eat; and the old mother of the four \nbrothers came and fell down on her knees before him in the wood, \nand thanked God that her sons were engaged in saving his life.  At \nnight, he came out of the forest and went on to another house which \nwas near the river Severn, with the intention of passing into \nWales; but the place swarmed with soldiers, and the bridges were \nguarded, and all the boats were made fast.  So, after lying in a \nhayloft covered over with hay, for some time, he came out of his \nplace, attended by COLONEL CARELESS, a Catholic gentleman who had \nmet him there, and with whom he lay hid, all next day, up in the \nshady branches of a fine old oak.  It was lucky for the King that \nit was September-time, and that the leaves had not begun to fall, \nsince he and the Colonel, perched up in this tree, could catch \nglimpses of the soldiers riding about below, and could hear the \ncrash in the wood as they went about beating the boughs.\n\nAfter this, he walked and walked until his feet were all blistered; \nand, having been concealed all one day in a house which was \nsearched by the troopers while he was there, went with LORD WILMOT, \nanother of his good friends, to a place called Bentley, where one \nMISS LANE, a Protestant lady, had obtained a pass to be allowed to \nride through the guards to see a relation of hers near Bristol.  \nDisguised as a servant, he rode in the saddle before this young \nlady to the house of SIR JOHN WINTER, while Lord Wilmot rode there \nboldly, like a plain country gentleman, with dogs at his heels.  It \nhappened that Sir John Winter's butler had been servant in Richmond \nPalace, and knew Charles the moment he set eyes upon him; but, the \nbutler was faithful and kept the secret.  As no ship could be found \nto carry him abroad, it was planned that he should go - still \ntravelling with Miss Lane as her servant - to another house, at \nTrent near Sherborne in Dorsetshire; and then Miss Lane and her \ncousin, MR. LASCELLES, who had gone on horseback beside her all the \nway, went home.  I hope Miss Lane was going to marry that cousin, \nfor I am sure she must have been a brave, kind girl.  If I had been \nthat cousin, I should certainly have loved Miss Lane.\n\nWhen Charles, lonely for the loss of Miss Lane, was safe at Trent, \na ship was hired at Lyme, the master of which engaged to take two \ngentlemen to France.  In the evening of the same day, the King - \nnow riding as servant before another young lady - set off for a \npublic-house at a place called Charmouth, where the captain of the \nvessel was to take him on board.  But, the captain's wife, being \nafraid of her husband getting into trouble, locked him up and would \nnot let him sail.  Then they went away to Bridport; and, coming to \nthe inn there, found the stable-yard full of soldiers who were on \nthe look-out for Charles, and who talked about him while they \ndrank.  He had such presence of mind, that he led the horses of his \nparty through the yard as any other servant might have done, and \nsaid, 'Come out of the way, you soldiers; let us have room to pass \nhere!'  As he went along, he met a half-tipsy ostler, who rubbed \nhis eyes and said to him, 'Why, I was formerly servant to Mr. \nPotter at Exeter, and surely I have sometimes seen you there, young \nman?'  He certainly had, for Charles had lodged there.  His ready \nanswer was, 'Ah, I did live with him once; but I have no time to \ntalk now.  We'll have a pot of beer together when I come back.'\n\nFrom this dangerous place he returned to Trent, and lay there \nconcealed several days.  Then he escaped to Heale, near Salisbury; \nwhere, in the house of a widow lady, he was hidden five days, until \nthe master of a collier lying off Shoreham in Sussex, undertook to \nconvey a 'gentleman' to France.  On the night of the fifteenth of \nOctober, accompanied by two colonels and a merchant, the King rode \nto Brighton, then a little fishing village, to give the captain of \nthe ship a supper before going on board; but, so many people knew \nhim, that this captain knew him too, and not only he, but the \nlandlord and landlady also.  Before he went away, the landlord came \nbehind his chair, kissed his hand, and said he hoped to live to be \na lord and to see his wife a lady; at which Charles laughed.  They \nhad had a good supper by this time, and plenty of smoking and \ndrinking, at which the King was a first-rate hand; so, the captain \nassured him that he would stand by him, and he did.  It was agreed \nthat the captain should pretend to sail to Deal, and that Charles \nshould address the sailors and say he was a gentleman in debt who \nwas running away from his creditors, and that he hoped they would \njoin him in persuading the captain to put him ashore in France.  As \nthe King acted his part very well indeed, and gave the sailors \ntwenty shillings to drink, they begged the captain to do what such \na worthy gentleman asked.  He pretended to yield to their \nentreaties, and the King got safe to Normandy.\n\nIreland being now subdued, and Scotland kept quiet by plenty of \nforts and soldiers put there by Oliver, the Parliament would have \ngone on quietly enough, as far as fighting with any foreign enemy \nwent, but for getting into trouble with the Dutch, who in the \nspring of the year one thousand six hundred and fifty-one sent a \nfleet into the Downs under their ADMIRAL VAN TROMP, to call upon \nthe bold English ADMIRAL BLAKE (who was there with half as many \nships as the Dutch) to strike his flag.  Blake fired a raging \nbroadside instead, and beat off Van Tromp; who, in the autumn, came \nback again with seventy ships, and challenged the bold Blake - who \nstill was only half as strong - to fight him.  Blake fought him all \nday; but, finding that the Dutch were too many for him, got quietly \noff at night.  What does Van Tromp upon this, but goes cruising and \nboasting about the Channel, between the North Foreland and the Isle \nof Wight, with a great Dutch broom tied to his masthead, as a sign \nthat he could and would sweep the English of the sea!  Within three \nmonths, Blake lowered his tone though, and his broom too; for, he \nand two other bold commanders, DEAN and MONK, fought him three \nwhole days, took twenty-three of his ships, shivered his broom to \npieces, and settled his business.\n\nThings were no sooner quiet again, than the army began to complain \nto the Parliament that they were not governing the nation properly, \nand to hint that they thought they could do it better themselves.  \nOliver, who had now made up his mind to be the head of the state, \nor nothing at all, supported them in this, and called a meeting of \nofficers and his own Parliamentary friends, at his lodgings in \nWhitehall, to consider the best way of getting rid of the \nParliament.  It had now lasted just as many years as the King's \nunbridled power had lasted, before it came into existence.  The end \nof the deliberation was, that Oliver went down to the House in his \nusual plain black dress, with his usual grey worsted stockings, but \nwith an unusual party of soldiers behind him.  These last he left \nin the lobby, and then went in and sat down.  Presently he got up, \nmade the Parliament a speech, told them that the Lord had done with \nthem, stamped his foot and said, 'You are no Parliament.  Bring \nthem in!  Bring them in!'  At this signal the door flew open, and \nthe soldiers appeared.  'This is not honest,' said Sir Harry Vane, \none of the members.  'Sir Harry Vane!' cried Cromwell; 'O, Sir \nHarry Vane!  The Lord deliver me from Sir Harry Vane!'  Then he \npointed out members one by one, and said this man was a drunkard, \nand that man a dissipated fellow, and that man a liar, and so on.  \nThen he caused the Speaker to be walked out of his chair, told the \nguard to clear the House, called the mace upon the table - which is \na sign that the House is sitting - 'a fool's bauble,' and said, \n'here, carry it away!'  Being obeyed in all these orders, he \nquietly locked the door, put the key in his pocket, walked back to \nWhitehall again, and told his friends, who were still assembled \nthere, what he had done.\n\nThey formed a new Council of State after this extraordinary \nproceeding, and got a new Parliament together in their own way:  \nwhich Oliver himself opened in a sort of sermon, and which he said \nwas the beginning of a perfect heaven upon earth.  In this \nParliament there sat a well-known leather-seller, who had taken the \nsingular name of Praise God Barebones, and from whom it was called, \nfor a joke, Barebones's Parliament, though its general name was the \nLittle Parliament.  As it soon appeared that it was not going to \nput Oliver in the first place, it turned out to be not at all like \nthe beginning of heaven upon earth, and Oliver said it really was \nnot to be borne with.  So he cleared off that Parliament in much \nthe same way as he had disposed of the other; and then the council \nof officers decided that he must be made the supreme authority of \nthe kingdom, under the title of the Lord Protector of the \nCommonwealth.\n\nSo, on the sixteenth of December, one thousand six hundred and \nfifty-three, a great procession was formed at Oliver's door, and he \ncame out in a black velvet suit and a big pair of boots, and got \ninto his coach and went down to Westminster, attended by the \njudges, and the lord mayor, and the aldermen, and all the other \ngreat and wonderful personages of the country.  There, in the Court \nof Chancery, he publicly accepted the office of Lord Protector.  \nThen he was sworn, and the City sword was handed to him, and the \nseal was handed to him, and all the other things were handed to him \nwhich are usually handed to Kings and Queens on state occasions.  \nWhen Oliver had handed them all back, he was quite made and \ncompletely finished off as Lord Protector; and several of the \nIronsides preached about it at great length, all the evening.\n\n\nSECOND PART\n\n\nOLIVER CROMWELL - whom the people long called OLD NOLL - in \naccepting the office of Protector, had bound himself by a certain \npaper which was handed to him, called 'the Instrument,' to summon a \nParliament, consisting of between four and five hundred members, in \nthe election of which neither the Royalists nor the Catholics were \nto have any share.  He had also pledged himself that this \nParliament should not be dissolved without its own consent until it \nhad sat five months.\n\nWhen this Parliament met, Oliver made a speech to them of three \nhours long, very wisely advising them what to do for the credit and \nhappiness of the country.  To keep down the more violent members, \nhe required them to sign a recognition of what they were forbidden \nby 'the Instrument' to do; which was, chiefly, to take the power \nfrom one single person at the head of the state or to command the \narmy.  Then he dismissed them to go to work.  With his usual vigour \nand resolution he went to work himself with some frantic preachers \n- who were rather overdoing their sermons in calling him a villain \nand a tyrant - by shutting up their chapels, and sending a few of \nthem off to prison.\n\nThere was not at that time, in England or anywhere else, a man so \nable to govern the country as Oliver Cromwell.  Although he ruled \nwith a strong hand, and levied a very heavy tax on the Royalists \n(but not until they had plotted against his life), he ruled wisely, \nand as the times required.  He caused England to be so respected \nabroad, that I wish some lords and gentlemen who have governed it \nunder kings and queens in later days would have taken a leaf out of \nOliver Cromwell's book.  He sent bold Admiral Blake to the \nMediterranean Sea, to make the Duke of Tuscany pay sixty thousand \npounds for injuries he had done to British subjects, and spoliation \nhe had committed on English merchants.  He further despatched him \nand his fleet to Algiers, Tunis, and Tripoli, to have every English \nship and every English man delivered up to him that had been taken \nby pirates in those parts.  All this was gloriously done; and it \nbegan to be thoroughly well known, all over the world, that England \nwas governed by a man in earnest, who would not allow the English \nname to be insulted or slighted anywhere.\n\nThese were not all his foreign triumphs.  He sent a fleet to sea \nagainst the Dutch; and the two powers, each with one hundred ships \nupon its side, met in the English Channel off the North Foreland, \nwhere the fight lasted all day long.  Dean was killed in this \nfight; but Monk, who commanded in the same ship with him, threw his \ncloak over his body, that the sailors might not know of his death, \nand be disheartened.  Nor were they.  The English broadsides so \nexceedingly astonished the Dutch that they sheered off at last, \nthough the redoubtable Van Tromp fired upon them with his own guns \nfor deserting their flag.  Soon afterwards, the two fleets engaged \nagain, off the coast of Holland.  There, the valiant Van Tromp was \nshot through the heart, and the Dutch gave in, and peace was made.\n\nFurther than this, Oliver resolved not to bear the domineering and \nbigoted conduct of Spain, which country not only claimed a right to \nall the gold and silver that could be found in South America, and \ntreated the ships of all other countries who visited those regions, \nas pirates, but put English subjects into the horrible Spanish \nprisons of the Inquisition.  So, Oliver told the Spanish ambassador \nthat English ships must be free to go wherever they would, and that \nEnglish merchants must not be thrown into those same dungeons, no, \nnot for the pleasure of all the priests in Spain.  To this, the \nSpanish ambassador replied that the gold and silver country, and \nthe Holy Inquisition, were his King's two eyes, neither of which he \ncould submit to have put out.  Very well, said Oliver, then he was \nafraid he (Oliver) must damage those two eyes directly.\n\nSo, another fleet was despatched under two commanders, PENN and \nVENABLES, for Hispaniola; where, however, the Spaniards got the \nbetter of the fight.  Consequently, the fleet came home again, \nafter taking Jamaica on the way.  Oliver, indignant with the two \ncommanders who had not done what bold Admiral Blake would have \ndone, clapped them both into prison, declared war against Spain, \nand made a treaty with France, in virtue of which it was to shelter \nthe King and his brother the Duke of York no longer.  Then, he sent \na fleet abroad under bold Admiral Blake, which brought the King of \nPortugal to his senses - just to keep its hand in - and then \nengaged a Spanish fleet, sunk four great ships, and took two more, \nladen with silver to the value of two millions of pounds:  which \ndazzling prize was brought from Portsmouth to London in waggons, \nwith the populace of all the towns and villages through which the \nwaggons passed, shouting with all their might.  After this victory, \nbold Admiral Blake sailed away to the port of Santa Cruz to cut off \nthe Spanish treasure-ships coming from Mexico.  There, he found \nthem, ten in number, with seven others to take care of them, and a \nbig castle, and seven batteries, all roaring and blazing away at \nhim with great guns.  Blake cared no more for great guns than for \npop-guns - no more for their hot iron balls than for snow-balls.  \nHe dashed into the harbour, captured and burnt every one of the \nships, and came sailing out again triumphantly, with the victorious \nEnglish flag flying at his masthead.  This was the last triumph of \nthis great commander, who had sailed and fought until he was quite \nworn out.  He died, as his successful ship was coming into Plymouth \nHarbour amidst the joyful acclamations of the people, and was \nburied in state in Westminster Abbey.  Not to lie there, long.\n\nOver and above all this, Oliver found that the VAUDOIS, or \nProtestant people of the valleys of Lucerne, were insolently \ntreated by the Catholic powers, and were even put to death for \ntheir religion, in an audacious and bloody manner.  Instantly, he \ninformed those powers that this was a thing which Protestant \nEngland would not allow; and he speedily carried his point, through \nthe might of his great name, and established their right to worship \nGod in peace after their own harmless manner.\n\nLastly, his English army won such admiration in fighting with the \nFrench against the Spaniards, that, after they had assaulted the \ntown of Dunkirk together, the French King in person gave it up to \nthe English, that it might be a token to them of their might and \nvalour.\n\nThere were plots enough against Oliver among the frantic \nreligionists (who called themselves Fifth Monarchy Men), and among \nthe disappointed Republicans.  He had a difficult game to play, for \nthe Royalists were always ready to side with either party against \nhim.  The 'King over the water,' too, as Charles was called, had no \nscruples about plotting with any one against his life; although \nthere is reason to suppose that he would willingly have married one \nof his daughters, if Oliver would have had such a son-in-law.  \nThere was a certain COLONEL SAXBY of the army, once a great \nsupporter of Oliver's but now turned against him, who was a \ngrievous trouble to him through all this part of his career; and \nwho came and went between the discontented in England and Spain, \nand Charles who put himself in alliance with Spain on being thrown \noff by France.  This man died in prison at last; but not until \nthere had been very serious plots between the Royalists and \nRepublicans, and an actual rising of them in England, when they \nburst into the city of Salisbury, on a Sunday night, seized the \njudges who were going to hold the assizes there next day, and would \nhave hanged them but for the merciful objections of the more \ntemperate of their number.  Oliver was so vigorous and shrewd that \nhe soon put this revolt down, as he did most other conspiracies; \nand it was well for one of its chief managers - that same Lord \nWilmot who had assisted in Charles's flight, and was now EARL OF \nROCHESTER - that he made his escape.  Oliver seemed to have eyes \nand ears everywhere, and secured such sources of information as his \nenemies little dreamed of.  There was a chosen body of six persons, \ncalled the Sealed Knot, who were in the closest and most secret \nconfidence of Charles.  One of the foremost of these very men, a \nSIR RICHARD WILLIS, reported to Oliver everything that passed among \nthem, and had two hundred a year for it.\n\nMILES SYNDARCOMB, also of the old army, was another conspirator \nagainst the Protector.  He and a man named CECIL, bribed one of his \nLife Guards to let them have good notice when he was going out - \nintending to shoot him from a window.  But, owing either to his \ncaution or his good fortune, they could never get an aim at him.  \nDisappointed in this design, they got into the chapel in Whitehall, \nwith a basketful of combustibles, which were to explode by means of \na slow match in six hours; then, in the noise and confusion of the \nfire, they hoped to kill Oliver.  But, the Life Guardsman himself \ndisclosed this plot; and they were seized, and Miles died (or \nkilled himself in prison) a little while before he was ordered for \nexecution.  A few such plotters Oliver caused to be beheaded, a few \nmore to be hanged, and many more, including those who rose in arms \nagainst him, to be sent as slaves to the West Indies.  If he were \nrigid, he was impartial too, in asserting the laws of England.  \nWhen a Portuguese nobleman, the brother of the Portuguese \nambassador, killed a London citizen in mistake for another man with \nwhom he had had a quarrel, Oliver caused him to be tried before a \njury of Englishmen and foreigners, and had him executed in spite of \nthe entreaties of all the ambassadors in London.\n\nOne of Oliver's own friends, the DUKE OF OLDENBURGH, in sending him \na present of six fine coach-horses, was very near doing more to \nplease the Royalists than all the plotters put together.  One day, \nOliver went with his coach, drawn by these six horses, into Hyde \nPark, to dine with his secretary and some of his other gentlemen \nunder the trees there.  After dinner, being merry, he took it into \nhis head to put his friends inside and to drive them home:  a \npostillion riding one of the foremost horses, as the custom was.  \nOn account of Oliver's being too free with the whip, the six fine \nhorses went off at a gallop, the postillion got thrown, and Oliver \nfell upon the coach-pole and narrowly escaped being shot by his own \npistol, which got entangled with his clothes in the harness, and \nwent off.  He was dragged some distance by the foot, until his foot \ncame out of the shoe, and then he came safely to the ground under \nthe broad body of the coach, and was very little the worse.  The \ngentlemen inside were only bruised, and the discontented people of \nall parties were much disappointed.\n\nThe rest of the history of the Protectorate of Oliver Cromwell is a \nhistory of his Parliaments.  His first one not pleasing him at all, \nhe waited until the five months were out, and then dissolved it.  \nThe next was better suited to his views; and from that he desired \nto get - if he could with safety to himself - the title of King.  \nHe had had this in his mind some time:  whether because he thought \nthat the English people, being more used to the title, were more \nlikely to obey it; or whether because he really wished to be a king \nhimself, and to leave the succession to that title in his family, \nis far from clear.  He was already as high, in England and in all \nthe world, as he would ever be, and I doubt if he cared for the \nmere name.  However, a paper, called the 'Humble Petition and \nAdvice,' was presented to him by the House of Commons, praying him \nto take a high title and to appoint his successor.  That he would \nhave taken the title of King there is no doubt, but for the strong \nopposition of the army.  This induced him to forbear, and to assent \nonly to the other points of the petition.  Upon which occasion \nthere was another grand show in Westminster Hall, when the Speaker \nof the House of Commons formally invested him with a purple robe \nlined with ermine, and presented him with a splendidly bound Bible, \nand put a golden sceptre in his hand.  The next time the Parliament \nmet, he called a House of Lords of sixty members, as the petition \ngave him power to do; but as that Parliament did not please him \neither, and would not proceed to the business of the country, he \njumped into a coach one morning, took six Guards with him, and sent \nthem to the right-about.  I wish this had been a warning to \nParliaments to avoid long speeches, and do more work.\n\nIt was the month of August, one thousand six hundred and fifty-\neight, when Oliver Cromwell's favourite daughter, ELIZABETH \nCLAYPOLE (who had lately lost her youngest son), lay very ill, and \nhis mind was greatly troubled, because he loved her dearly.  \nAnother of his daughters was married to LORD FALCONBERG, another to \nthe grandson of the Earl of Warwick, and he had made his son \nRICHARD one of the Members of the Upper House.  He was very kind \nand loving to them all, being a good father and a good husband; but \nhe loved this daughter the best of the family, and went down to \nHampton Court to see her, and could hardly be induced to stir from \nher sick room until she died.  Although his religion had been of a \ngloomy kind, his disposition had been always cheerful.  He had been \nfond of music in his home, and had kept open table once a week for \nall officers of the army not below the rank of captain, and had \nalways preserved in his house a quiet, sensible dignity.  He \nencouraged men of genius and learning, and loved to have them about \nhim.  MILTON was one of his great friends.  He was good humoured \ntoo, with the nobility, whose dresses and manners were very \ndifferent from his; and to show them what good information he had, \nhe would sometimes jokingly tell them when they were his guests, \nwhere they had last drunk the health of the 'King over the water,' \nand would recommend them to be more private (if they could) another \ntime.  But he had lived in busy times, had borne the weight of \nheavy State affairs, and had often gone in fear of his life.  He \nwas ill of the gout and ague; and when the death of his beloved \nchild came upon him in addition, he sank, never to raise his head \nagain.  He told his physicians on the twenty-fourth of August that \nthe Lord had assured him that he was not to die in that illness, \nand that he would certainly get better.  This was only his sick \nfancy, for on the third of September, which was the anniversary of \nthe great battle of Worcester, and the day of the year which he \ncalled his fortunate day, he died, in the sixtieth year of his age.  \nHe had been delirious, and had lain insensible some hours, but he \nhad been overheard to murmur a very good prayer the day before.  \nThe whole country lamented his death.  If you want to know the real \nworth of Oliver Cromwell, and his real services to his country, you \ncan hardly do better than compare England under him, with England \nunder CHARLES THE SECOND.\n\nHe had appointed his son Richard to succeed him, and after there \nhad been, at Somerset House in the Strand, a lying in state more \nsplendid than sensible - as all such vanities after death are, I \nthink - Richard became Lord Protector.  He was an amiable country \ngentleman, but had none of his father's great genius, and was quite \nunfit for such a post in such a storm of parties.  Richard's \nProtectorate, which only lasted a year and a half, is a history of \nquarrels between the officers of the army and the Parliament, and \nbetween the officers among themselves; and of a growing discontent \namong the people, who had far too many long sermons and far too few \namusements, and wanted a change.  At last, General Monk got the \narmy well into his own hands, and then in pursuance of a secret \nplan he seems to have entertained from the time of Oliver's death, \ndeclared for the King's cause.  He did not do this openly; but, in \nhis place in the House of Commons, as one of the members for \nDevonshire, strongly advocated the proposals of one SIR JOHN \nGREENVILLE, who came to the House with a letter from Charles, dated \nfrom Breda, and with whom he had previously been in secret \ncommunication.  There had been plots and counterplots, and a recall \nof the last members of the Long Parliament, and an end of the Long \nParliament, and risings of the Royalists that were made too soon; \nand most men being tired out, and there being no one to head the \ncountry now great Oliver was dead, it was readily agreed to welcome \nCharles Stuart.  Some of the wiser and better members said - what \nwas most true - that in the letter from Breda, he gave no real \npromise to govern well, and that it would be best to make him \npledge himself beforehand as to what he should be bound to do for \nthe benefit of the kingdom.  Monk said, however, it would be all \nright when he came, and he could not come too soon.\n\nSo, everybody found out all in a moment that the country MUST be \nprosperous and happy, having another Stuart to condescend to reign \nover it; and there was a prodigious firing off of guns, lighting of \nbonfires, ringing of bells, and throwing up of caps.  The people \ndrank the King's health by thousands in the open streets, and \neverybody rejoiced.  Down came the Arms of the Commonwealth, up \nwent the Royal Arms instead, and out came the public money.  Fifty \nthousand pounds for the King, ten thousand pounds for his brother \nthe Duke of York, five thousand pounds for his brother the Duke of \nGloucester.  Prayers for these gracious Stuarts were put up in all \nthe churches; commissioners were sent to Holland (which suddenly \nfound out that Charles was a great man, and that it loved him) to \ninvite the King home; Monk and the Kentish grandees went to Dover, \nto kneel down before him as he landed.  He kissed and embraced \nMonk, made him ride in the coach with himself and his brothers, \ncame on to London amid wonderful shoutings, and passed through the \narmy at Blackheath on the twenty-ninth of May (his birthday), in \nthe year one thousand six hundred and sixty.  Greeted by splendid \ndinners under tents, by flags and tapestry streaming from all the \nhouses, by delighted crowds in all the streets, by troops of \nnoblemen and gentlemen in rich dresses, by City companies, train-\nbands, drummers, trumpeters, the great Lord Mayor, and the majestic \nAldermen, the King went on to Whitehall.  On entering it, he \ncommemorated his Restoration with the joke that it really would \nseem to have been his own fault that he had not come long ago, \nsince everybody told him that he had always wished for him with all \nhis heart.\n\n\n\nCHAPTER XXXV - ENGLAND UNDER CHARLES THE SECOND, CALLED THE MERRY \nMONARCH\n\n\n\nTHERE never were such profligate times in England as under Charles \nthe Second.  Whenever you see his portrait, with his swarthy, ill-\nlooking face and great nose, you may fancy him in his Court at \nWhitehall, surrounded by some of the very worst vagabonds in the \nkingdom (though they were lords and ladies), drinking, gambling, \nindulging in vicious conversation, and committing every kind of \nprofligate excess.  It has been a fashion to call Charles the \nSecond 'The Merry Monarch.'  Let me try to give you a general idea \nof some of the merry things that were done, in the merry days when \nthis merry gentleman sat upon his merry throne, in merry England.\n\nThe first merry proceeding was - of course - to declare that he was \none of the greatest, the wisest, and the noblest kings that ever \nshone, like the blessed sun itself, on this benighted earth.  The \nnext merry and pleasant piece of business was, for the Parliament, \nin the humblest manner, to give him one million two hundred \nthousand pounds a year, and to settle upon him for life that old \ndisputed tonnage and poundage which had been so bravely fought for.  \nThen, General Monk being made EARL OF ALBEMARLE, and a few other \nRoyalists similarly rewarded, the law went to work to see what was \nto be done to those persons (they were called Regicides) who had \nbeen concerned in making a martyr of the late King.  Ten of these \nwere merrily executed; that is to say, six of the judges, one of \nthe council, Colonel Hacker and another officer who had commanded \nthe Guards, and HUGH PETERS, a preacher who had preached against \nthe martyr with all his heart.  These executions were so extremely \nmerry, that every horrible circumstance which Cromwell had \nabandoned was revived with appalling cruelty.  The hearts of the \nsufferers were torn out of their living bodies; their bowels were \nburned before their faces; the executioner cut jokes to the next \nvictim, as he rubbed his filthy hands together, that were reeking \nwith the blood of the last; and the heads of the dead were drawn on \nsledges with the living to the place of suffering.  Still, even so \nmerry a monarch could not force one of these dying men to say that \nhe was sorry for what he had done.  Nay, the most memorable thing \nsaid among them was, that if the thing were to do again they would \ndo it.\n\nSir Harry Vane, who had furnished the evidence against Strafford, \nand was one of the most staunch of the Republicans, was also tried, \nfound guilty, and ordered for execution.  When he came upon the \nscaffold on Tower Hill, after conducting his own defence with great \npower, his notes of what he had meant to say to the people were \ntorn away from him, and the drums and trumpets were ordered to \nsound lustily and drown his voice; for, the people had been so much \nimpressed by what the Regicides had calmly said with their last \nbreath, that it was the custom now, to have the drums and trumpets \nalways under the scaffold, ready to strike up.  Vane said no more \nthan this:  'It is a bad cause which cannot bear the words of a \ndying man:' and bravely died.\n\nThese merry scenes were succeeded by another, perhaps even merrier.  \nOn the anniversary of the late King's death, the bodies of Oliver \nCromwell, Ireton, and Bradshaw, were torn out of their graves in \nWestminster Abbey, dragged to Tyburn, hanged there on a gallows all \nday long, and then beheaded.  Imagine the head of Oliver Cromwell \nset upon a pole to be stared at by a brutal crowd, not one of whom \nwould have dared to look the living Oliver in the face for half a \nmoment!  Think, after you have read this reign, what England was \nunder Oliver Cromwell who was torn out of his grave, and what it \nwas under this merry monarch who sold it, like a merry Judas, over \nand over again.\n\nOf course, the remains of Oliver's wife and daughter were not to be \nspared either, though they had been most excellent women.  The base \nclergy of that time gave up their bodies, which had been buried in \nthe Abbey, and - to the eternal disgrace of England - they were \nthrown into a pit, together with the mouldering bones of Pym and of \nthe brave and bold old Admiral Blake.\n\nThe clergy acted this disgraceful part because they hoped to get \nthe nonconformists, or dissenters, thoroughly put down in this \nreign, and to have but one prayer-book and one service for all \nkinds of people, no matter what their private opinions were.  This \nwas pretty well, I think, for a Protestant Church, which had \ndisplaced the Romish Church because people had a right to their own \nopinions in religious matters.  However, they carried it with a \nhigh hand, and a prayer-book was agreed upon, in which the \nextremest opinions of Archbishop Laud were not forgotten.  An Act \nwas passed, too, preventing any dissenter from holding any office \nunder any corporation.  So, the regular clergy in their triumph \nwere soon as merry as the King.  The army being by this time \ndisbanded, and the King crowned, everything was to go on easily for \nevermore.\n\nI must say a word here about the King's family.  He had not been \nlong upon the throne when his brother the Duke of Gloucester, and \nhis sister the PRINCESS OF ORANGE, died within a few months of each \nother, of small-pox.  His remaining sister, the PRINCESS HENRIETTA, \nmarried the DUKE OF ORLEANS, the brother of LOUIS THE FOURTEENTH, \nKing of France.  His brother JAMES, DUKE OF YORK, was made High \nAdmiral, and by-and-by became a Catholic.  He was a gloomy, sullen, \nbilious sort of man, with a remarkable partiality for the ugliest \nwomen in the country.  He married, under very discreditable \ncircumstances, ANNE HYDE, the daughter of LORD CLARENDON, then the \nKing's principal Minister - not at all a delicate minister either, \nbut doing much of the dirty work of a very dirty palace.  It became \nimportant now that the King himself should be married; and divers \nforeign Monarchs, not very particular about the character of their \nson-in-law, proposed their daughters to him.  The KING OF PORTUGAL \noffered his daughter, CATHERINE OF BRAGANZA, and fifty thousand \npounds:  in addition to which, the French King, who was favourable \nto that match, offered a loan of another fifty thousand.  The King \nof Spain, on the other hand, offered any one out of a dozen of \nPrincesses, and other hopes of gain.  But the ready money carried \nthe day, and Catherine came over in state to her merry marriage.\n\nThe whole Court was a great flaunting crowd of debauched men and \nshameless women; and Catherine's merry husband insulted and \noutraged her in every possible way, until she consented to receive \nthose worthless creatures as her very good friends, and to degrade \nherself by their companionship.  A MRS. PALMER, whom the King made \nLADY CASTLEMAINE, and afterwards DUCHESS OF CLEVELAND, was one of \nthe most powerful of the bad women about the Court, and had great \ninfluence with the King nearly all through his reign.  Another \nmerry lady named MOLL DAVIES, a dancer at the theatre, was \nafterwards her rival.  So was NELL GWYN, first an orange girl and \nthen an actress, who really had good in her, and of whom one of the \nworst things I know is, that actually she does seem to have been \nfond of the King.  The first DUKE OF ST. ALBANS was this orange \ngirl's child.  In like manner the son of a merry waiting-lady, whom \nthe King created DUCHESS OF PORTSMOUTH, became the DUKE OF \nRICHMOND.  Upon the whole it is not so bad a thing to be a \ncommoner.\n\nThe Merry Monarch was so exceedingly merry among these merry \nladies, and some equally merry (and equally infamous) lords and \ngentlemen, that he soon got through his hundred thousand pounds, \nand then, by way of raising a little pocket-money, made a merry \nbargain.  He sold Dunkirk to the French King for five millions of \nlivres.  When I think of the dignity to which Oliver Cromwell \nraised England in the eyes of foreign powers, and when I think of \nthe manner in which he gained for England this very Dunkirk, I am \nmuch inclined to consider that if the Merry Monarch had been made \nto follow his father for this action, he would have received his \njust deserts.\n\nThough he was like his father in none of that father's greater \nqualities, he was like him in being worthy of no trust.  When he \nsent that letter to the Parliament, from Breda, he did expressly \npromise that all sincere religious opinions should be respected.  \nYet he was no sooner firm in his power than he consented to one of \nthe worst Acts of Parliament ever passed.  Under this law, every \nminister who should not give his solemn assent to the Prayer-Book \nby a certain day, was declared to be a minister no longer, and to \nbe deprived of his church.  The consequence of this was that some \ntwo thousand honest men were taken from their congregations, and \nreduced to dire poverty and distress.  It was followed by another \noutrageous law, called the Conventicle Act, by which any person \nabove the age of sixteen who was present at any religious service \nnot according to the Prayer-Book, was to be imprisoned three months \nfor the first offence, six for the second, and to be transported \nfor the third.  This Act alone filled the prisons, which were then \nmost dreadful dungeons, to overflowing.\n\nThe Covenanters in Scotland had already fared no better.  A base \nParliament, usually known as the Drunken Parliament, in consequence \nof its principal members being seldom sober, had been got together \nto make laws against the Covenanters, and to force all men to be of \none mind in religious matters.  The MARQUIS OF ARGYLE, relying on \nthe King's honour, had given himself up to him; but, he was \nwealthy, and his enemies wanted his wealth.  He was tried for \ntreason, on the evidence of some private letters in which he had \nexpressed opinions - as well he might - more favourable to the \ngovernment of the late Lord Protector than of the present merry and \nreligious King.  He was executed, as were two men of mark among the \nCovenanters; and SHARP, a traitor who had once been the friend of \nthe Presbyterians and betrayed them, was made Archbishop of St. \nAndrew's, to teach the Scotch how to like bishops.\n\nThings being in this merry state at home, the Merry Monarch \nundertook a war with the Dutch; principally because they interfered \nwith an African company, established with the two objects of buying \ngold-dust and slaves, of which the Duke of York was a leading \nmember.  After some preliminary hostilities, the said Duke sailed \nto the coast of Holland with a fleet of ninety-eight vessels of \nwar, and four fire-ships.  This engaged with the Dutch fleet, of no \nfewer than one hundred and thirteen ships.  In the great battle \nbetween the two forces, the Dutch lost eighteen ships, four \nadmirals, and seven thousand men.  But, the English on shore were \nin no mood of exultation when they heard the news.\n\nFor, this was the year and the time of the Great Plague in London.  \nDuring the winter of one thousand six hundred and sixty-four it had \nbeen whispered about, that some few people had died here and there \nof the disease called the Plague, in some of the unwholesome \nsuburbs around London.  News was not published at that time as it \nis now, and some people believed these rumours, and some \ndisbelieved them, and they were soon forgotten.  But, in the month \nof May, one thousand six hundred and sixty-five, it began to be \nsaid all over the town that the disease had burst out with great \nviolence in St. Giles's, and that the people were dying in great \nnumbers.  This soon turned out to be awfully true.  The roads out \nof London were choked up by people endeavouring to escape from the \ninfected city, and large sums were paid for any kind of conveyance.  \nThe disease soon spread so fast, that it was necessary to shut up \nthe houses in which sick people were, and to cut them off from \ncommunication with the living.  Every one of these houses was \nmarked on the outside of the door with a red cross, and the words, \nLord, have mercy upon us!  The streets were all deserted, grass \ngrew in the public ways, and there was a dreadful silence in the \nair.  When night came on, dismal rumblings used to be heard, and \nthese were the wheels of the death-carts, attended by men with \nveiled faces and holding cloths to their mouths, who rang doleful \nbells and cried in a loud and solemn voice, 'Bring out your dead!'  \nThe corpses put into these carts were buried by torchlight in great \npits; no service being performed over them; all men being afraid to \nstay for a moment on the brink of the ghastly graves.  In the \ngeneral fear, children ran away from their parents, and parents \nfrom their children.  Some who were taken ill, died alone, and \nwithout any help.  Some were stabbed or strangled by hired nurses \nwho robbed them of all their money, and stole the very beds on \nwhich they lay.  Some went mad, dropped from the windows, ran \nthrough the streets, and in their pain and frenzy flung themselves \ninto the river.\n\nThese were not all the horrors of the time.  The wicked and \ndissolute, in wild desperation, sat in the taverns singing roaring \nsongs, and were stricken as they drank, and went out and died.  The \nfearful and superstitious persuaded themselves that they saw \nsupernatural sights - burning swords in the sky, gigantic arms and \ndarts.  Others pretended that at nights vast crowds of ghosts \nwalked round and round the dismal pits.  One madman, naked, and \ncarrying a brazier full of burning coals upon his head, stalked \nthrough the streets, crying out that he was a Prophet, commissioned \nto denounce the vengeance of the Lord on wicked London.  Another \nalways went to and fro, exclaiming, 'Yet forty days, and London \nshall be destroyed!'  A third awoke the echoes in the dismal \nstreets, by night and by day, and made the blood of the sick run \ncold, by calling out incessantly, in a deep hoarse voice, 'O, the \ngreat and dreadful God!'\n\nThrough the months of July and August and September, the Great \nPlague raged more and more.  Great fires were lighted in the \nstreets, in the hope of stopping the infection; but there was a \nplague of rain too, and it beat the fires out.  At last, the winds \nwhich usually arise at that time of the year which is called the \nequinox, when day and night are of equal length all over the world, \nbegan to blow, and to purify the wretched town.  The deaths began \nto decrease, the red crosses slowly to disappear, the fugitives to \nreturn, the shops to open, pale frightened faces to be seen in the \nstreets.  The Plague had been in every part of England, but in \nclose and unwholesome London it had killed one hundred thousand \npeople.\n\nAll this time, the Merry Monarch was as merry as ever, and as \nworthless as ever.  All this time, the debauched lords and \ngentlemen and the shameless ladies danced and gamed and drank, and \nloved and hated one another, according to their merry ways.\n\nSo little humanity did the government learn from the late \naffliction, that one of the first things the Parliament did when it \nmet at Oxford (being as yet afraid to come to London), was to make \na law, called the Five Mile Act, expressly directed against those \npoor ministers who, in the time of the Plague, had manfully come \nback to comfort the unhappy people.  This infamous law, by \nforbidding them to teach in any school, or to come within five \nmiles of any city, town, or village, doomed them to starvation and \ndeath.\n\nThe fleet had been at sea, and healthy.  The King of France was now \nin alliance with the Dutch, though his navy was chiefly employed in \nlooking on while the English and Dutch fought.  The Dutch gained \none victory; and the English gained another and a greater; and \nPrince Rupert, one of the English admirals, was out in the Channel \none windy night, looking for the French Admiral, with the intention \nof giving him something more to do than he had had yet, when the \ngale increased to a storm, and blew him into Saint Helen's.  That \nnight was the third of September, one thousand six hundred and \nsixty-six, and that wind fanned the Great Fire of London.\n\nIt broke out at a baker's shop near London Bridge, on the spot on \nwhich the Monument now stands as a remembrance of those raging \nflames.  It spread and spread, and burned and burned, for three \ndays.  The nights were lighter than the days; in the daytime there \nwas an immense cloud of smoke, and in the night-time there was a \ngreat tower of fire mounting up into the sky, which lighted the \nwhole country landscape for ten miles round.  Showers of hot ashes \nrose into the air and fell on distant places; flying sparks carried \nthe conflagration to great distances, and kindled it in twenty new \nspots at a time; church steeples fell down with tremendous crashes; \nhouses crumbled into cinders by the hundred and the thousand.  The \nsummer had been intensely hot and dry, the streets were very \nnarrow, and the houses mostly built of wood and plaster.  Nothing \ncould stop the tremendous fire, but the want of more houses to \nburn; nor did it stop until the whole way from the Tower to Temple \nBar was a desert, composed of the ashes of thirteen thousand houses \nand eighty-nine churches.\n\nThis was a terrible visitation at the time, and occasioned great \nloss and suffering to the two hundred thousand burnt-out people, \nwho were obliged to lie in the fields under the open night sky, or \nin hastily-made huts of mud and straw, while the lanes and roads \nwere rendered impassable by carts which had broken down as they \ntried to save their goods.  But the Fire was a great blessing to \nthe City afterwards, for it arose from its ruins very much improved \n- built more regularly, more widely, more cleanly and carefully, \nand therefore much more healthily.  It might be far more healthy \nthan it is, but there are some people in it still - even now, at \nthis time, nearly two hundred years later - so selfish, so pig-\nheaded, and so ignorant, that I doubt if even another Great Fire \nwould warm them up to do their duty.\n\nThe Catholics were accused of having wilfully set London in flames; \none poor Frenchman, who had been mad for years, even accused \nhimself of having with his own hand fired the first house.  There \nis no reasonable doubt, however, that the fire was accidental.  An \ninscription on the Monument long attributed it to the Catholics; \nbut it is removed now, and was always a malicious and stupid \nuntruth.\n\n\nSECOND PART\n\n\nTHAT the Merry Monarch might be very merry indeed, in the merry \ntimes when his people were suffering under pestilence and fire, he \ndrank and gambled and flung away among his favourites the money \nwhich the Parliament had voted for the war.  The consequence of \nthis was that the stout-hearted English sailors were merrily \nstarving of want, and dying in the streets; while the Dutch, under \ntheir admirals DE WITT and DE RUYTER, came into the River Thames, \nand up the River Medway as far as Upnor, burned the guard-ships, \nsilenced the weak batteries, and did what they would to the English \ncoast for six whole weeks.  Most of the English ships that could \nhave prevented them had neither powder nor shot on board; in this \nmerry reign, public officers made themselves as merry as the King \ndid with the public money; and when it was entrusted to them to \nspend in national defences or preparations, they put it into their \nown pockets with the merriest grace in the world.\n\nLord Clarendon had, by this time, run as long a course as is \nusually allotted to the unscrupulous ministers of bad kings.  He \nwas impeached by his political opponents, but unsuccessfully.  The \nKing then commanded him to withdraw from England and retire to \nFrance, which he did, after defending himself in writing.  He was \nno great loss at home, and died abroad some seven years afterwards.\n\nThere then came into power a ministry called the Cabal Ministry, \nbecause it was composed of LORD CLIFFORD, the EARL OF ARLINGTON, \nthe DUKE OF BUCKINGHAM (a great rascal, and the King's most \npowerful favourite), LORD ASHLEY, and the DUKE OF LAUDERDALE, C. A. \nB. A. L.  As the French were making conquests in Flanders, the \nfirst Cabal proceeding was to make a treaty with the Dutch, for \nuniting with Spain to oppose the French.  It was no sooner made \nthan the Merry Monarch, who always wanted to get money without \nbeing accountable to a Parliament for his expenditure, apologised \nto the King of France for having had anything to do with it, and \nconcluded a secret treaty with him, making himself his infamous \npensioner to the amount of two millions of livres down, and three \nmillions more a year; and engaging to desert that very Spain, to \nmake war against those very Dutch, and to declare himself a \nCatholic when a convenient time should arrive.  This religious king \nhad lately been crying to his Catholic brother on the subject of \nhis strong desire to be a Catholic; and now he merrily concluded \nthis treasonable conspiracy against the country he governed, by \nundertaking to become one as soon as he safely could.  For all of \nwhich, though he had had ten merry heads instead of one, he richly \ndeserved to lose them by the headsman's axe.\n\nAs his one merry head might have been far from safe, if these \nthings had been known, they were kept very quiet, and war was \ndeclared by France and England against the Dutch.  But, a very \nuncommon man, afterwards most important to English history and to \nthe religion and liberty of this land, arose among them, and for \nmany long years defeated the whole projects of France.  This was \nWILLIAM OF NASSAU, PRINCE OF ORANGE, son of the last Prince of \nOrange of the same name, who married the daughter of Charles the \nFirst of England.  He was a young man at this time, only just of \nage; but he was brave, cool, intrepid, and wise.  His father had \nbeen so detested that, upon his death, the Dutch had abolished the \nauthority to which this son would have otherwise succeeded \n(Stadtholder it was called), and placed the chief power in the \nhands of JOHN DE WITT, who educated this young prince.  Now, the \nPrince became very popular, and John de Witt's brother CORNELIUS \nwas sentenced to banishment on a false accusation of conspiring to \nkill him.  John went to the prison where he was, to take him away \nto exile, in his coach; and a great mob who collected on the \noccasion, then and there cruelly murdered both the brothers.  This \nleft the government in the hands of the Prince, who was really the \nchoice of the nation; and from this time he exercised it with the \ngreatest vigour, against the whole power of France, under its \nfamous generals CONDE and TURENNE, and in support of the Protestant \nreligion.  It was full seven years before this war ended in a \ntreaty of peace made at Nimeguen, and its details would occupy a \nvery considerable space.  It is enough to say that William of \nOrange established a famous character with the whole world; and \nthat the Merry Monarch, adding to and improving on his former \nbaseness, bound himself to do everything the King of France liked, \nand nothing the King of France did not like, for a pension of one \nhundred thousand pounds a year, which was afterwards doubled.  \nBesides this, the King of France, by means of his corrupt \nambassador - who wrote accounts of his proceedings in England, \nwhich are not always to be believed, I think - bought our English \nmembers of Parliament, as he wanted them.  So, in point of fact, \nduring a considerable portion of this merry reign, the King of \nFrance was the real King of this country.\n\nBut there was a better time to come, and it was to come (though his \nroyal uncle little thought so) through that very William, Prince of \nOrange.  He came over to England, saw Mary, the elder daughter of \nthe Duke of York, and married her.  We shall see by-and-by what \ncame of that marriage, and why it is never to be forgotten.\n\nThis daughter was a Protestant, but her mother died a Catholic.  \nShe and her sister ANNE, also a Protestant, were the only survivors \nof eight children.  Anne afterwards married GEORGE, PRINCE OF \nDENMARK, brother to the King of that country.\n\nLest you should do the Merry Monarch the injustice of supposing \nthat he was even good humoured (except when he had everything his \nown way), or that he was high spirited and honourable, I will \nmention here what was done to a member of the House of Commons, SIR \nJOHN COVENTRY.  He made a remark in a debate about taxing the \ntheatres, which gave the King offence.  The King agreed with his \nillegitimate son, who had been born abroad, and whom he had made \nDUKE OF MONMOUTH, to take the following merry vengeance.  To waylay \nhim at night, fifteen armed men to one, and to slit his nose with a \npenknife.  Like master, like man.  The King's favourite, the Duke \nof Buckingham, was strongly suspected of setting on an assassin to \nmurder the DUKE OF ORMOND as he was returning home from a dinner; \nand that Duke's spirited son, LORD OSSORY, was so persuaded of his \nguilt, that he said to him at Court, even as he stood beside the \nKing, 'My lord, I know very well that you are at the bottom of this \nlate attempt upon my father.  But I give you warning, if he ever \ncome to a violent end, his blood shall be upon you, and wherever I \nmeet you I will pistol you!  I will do so, though I find you \nstanding behind the King's chair; and I tell you this in his \nMajesty's presence, that you may be quite sure of my doing what I \nthreaten.'  Those were merry times indeed.\n\nThere was a fellow named BLOOD, who was seized for making, with two \ncompanions, an audacious attempt to steal the crown, the globe, and \nsceptre, from the place where the jewels were kept in the Tower.  \nThis robber, who was a swaggering ruffian, being taken, declared \nthat he was the man who had endeavoured to kill the Duke of Ormond, \nand that he had meant to kill the King too, but was overawed by the \nmajesty of his appearance, when he might otherwise have done it, as \nhe was bathing at Battersea.  The King being but an ill-looking \nfellow, I don't believe a word of this.  Whether he was flattered, \nor whether he knew that Buckingham had really set Blood on to \nmurder the Duke, is uncertain.  But it is quite certain that he \npardoned this thief, gave him an estate of five hundred a year in \nIreland (which had had the honour of giving him birth), and \npresented him at Court to the debauched lords and the shameless \nladies, who made a great deal of him - as I have no doubt they \nwould have made of the Devil himself, if the King had introduced \nhim.\n\nInfamously pensioned as he was, the King still wanted money, and \nconsequently was obliged to call Parliaments.  In these, the great \nobject of the Protestants was to thwart the Catholic Duke of York, \nwho married a second time; his new wife being a young lady only \nfifteen years old, the Catholic sister of the DUKE OF MODENA.  In \nthis they were seconded by the Protestant Dissenters, though to \ntheir own disadvantage:  since, to exclude Catholics from power, \nthey were even willing to exclude themselves.  The King's object \nwas to pretend to be a Protestant, while he was really a Catholic; \nto swear to the bishops that he was devoutly attached to the \nEnglish Church, while he knew he had bargained it away to the King \nof France; and by cheating and deceiving them, and all who were \nattached to royalty, to become despotic and be powerful enough to \nconfess what a rascal he was.  Meantime, the King of France, \nknowing his merry pensioner well, intrigued with the King's \nopponents in Parliament, as well as with the King and his friends.\n\nThe fears that the country had of the Catholic religion being \nrestored, if the Duke of York should come to the throne, and the \nlow cunning of the King in pretending to share their alarms, led to \nsome very terrible results.  A certain DR. TONGE, a dull clergyman \nin the City, fell into the hands of a certain TITUS OATES, a most \ninfamous character, who pretended to have acquired among the \nJesuits abroad a knowledge of a great plot for the murder of the \nKing, and the re-establishment if the Catholic religion.  Titus \nOates, being produced by this unlucky Dr. Tonge and solemnly \nexamined before the council, contradicted himself in a thousand \nways, told the most ridiculous and improbable stories, and \nimplicated COLEMAN, the Secretary of the Duchess of York.  Now, \nalthough what he charged against Coleman was not true, and although \nyou and I know very well that the real dangerous Catholic plot was \nthat one with the King of France of which the Merry Monarch was \nhimself the head, there happened to be found among Coleman's \npapers, some letters, in which he did praise the days of Bloody \nQueen Mary, and abuse the Protestant religion.  This was great good \nfortune for Titus, as it seemed to confirm him; but better still \nwas in store.  SIR EDMUNDBURY GODFREY, the magistrate who had first \nexamined him, being unexpectedly found dead near Primrose Hill, was \nconfidently believed to have been killed by the Catholics.  I think \nthere is no doubt that he had been melancholy mad, and that he \nkilled himself; but he had a great Protestant funeral, and Titus \nwas called the Saver of the Nation, and received a pension of \ntwelve hundred pounds a year.\n\nAs soon as Oates's wickedness had met with this success, up started \nanother villain, named WILLIAM BEDLOE, who, attracted by a reward \nof five hundred pounds offered for the apprehension of the \nmurderers of Godfrey, came forward and charged two Jesuits and some \nother persons with having committed it at the Queen's desire.  \nOates, going into partnership with this new informer, had the \naudacity to accuse the poor Queen herself of high treason.  Then \nappeared a third informer, as bad as either of the two, and accused \na Catholic banker named STAYLEY of having said that the King was \nthe greatest rogue in the world (which would not have been far from \nthe truth), and that he would kill him with his own hand.  This \nbanker, being at once tried and executed, Coleman and two others \nwere tried and executed.  Then, a miserable wretch named PRANCE, a \nCatholic silversmith, being accused by Bedloe, was tortured into \nconfessing that he had taken part in Godfrey's murder, and into \naccusing three other men of having committed it.  Then, five \nJesuits were accused by Oates, Bedloe, and Prance together, and \nwere all found guilty, and executed on the same kind of \ncontradictory and absurd evidence.  The Queen's physician and three \nmonks were next put on their trial; but Oates and Bedloe had for \nthe time gone far enough and these four were acquitted.  The public \nmind, however, was so full of a Catholic plot, and so strong \nagainst the Duke of York, that James consented to obey a written \norder from his brother, and to go with his family to Brussels, \nprovided that his rights should never be sacrificed in his absence \nto the Duke of Monmouth.  The House of Commons, not satisfied with \nthis as the King hoped, passed a bill to exclude the Duke from ever \nsucceeding to the throne.  In return, the King dissolved the \nParliament.  He had deserted his old favourite, the Duke of \nBuckingham, who was now in the opposition.\n\nTo give any sufficient idea of the miseries of Scotland in this \nmerry reign, would occupy a hundred pages.  Because the people \nwould not have bishops, and were resolved to stand by their solemn \nLeague and Covenant, such cruelties were inflicted upon them as \nmake the blood run cold.  Ferocious dragoons galloped through the \ncountry to punish the peasants for deserting the churches; sons \nwere hanged up at their fathers' doors for refusing to disclose \nwhere their fathers were concealed; wives were tortured to death \nfor not betraying their husbands; people were taken out of their \nfields and gardens, and shot on the public roads without trial; \nlighted matches were tied to the fingers of prisoners, and a most \nhorrible torment called the Boot was invented, and constantly \napplied, which ground and mashed the victims' legs with iron \nwedges.  Witnesses were tortured as well as prisoners.  All the \nprisons were full; all the gibbets were heavy with bodies; murder \nand plunder devastated the whole country.  In spite of all, the \nCovenanters were by no means to be dragged into the churches, and \npersisted in worshipping God as they thought right.  A body of \nferocious Highlanders, turned upon them from the mountains of their \nown country, had no greater effect than the English dragoons under \nGRAHAME OF CLAVERHOUSE, the most cruel and rapacious of all their \nenemies, whose name will ever be cursed through the length and \nbreadth of Scotland.  Archbishop Sharp had ever aided and abetted \nall these outrages.  But he fell at last; for, when the injuries of \nthe Scottish people were at their height, he was seen, in his \ncoach-and-six coming across a moor, by a body of men, headed by one \nJOHN BALFOUR, who were waiting for another of their oppressors.  \nUpon this they cried out that Heaven had delivered him into their \nhands, and killed him with many wounds.  If ever a man deserved \nsuch a death, I think Archbishop Sharp did.\n\nIt made a great noise directly, and the Merry Monarch - strongly \nsuspected of having goaded the Scottish people on, that he might \nhave an excuse for a greater army than the Parliament were willing \nto give him - sent down his son, the Duke of Monmouth, as \ncommander-in-chief, with instructions to attack the Scottish \nrebels, or Whigs as they were called, whenever he came up with \nthem.  Marching with ten thousand men from Edinburgh, he found \nthem, in number four or five thousand, drawn up at Bothwell Bridge, \nby the Clyde.  They were soon dispersed; and Monmouth showed a more \nhumane character towards them, than he had shown towards that \nMember of Parliament whose nose he had caused to be slit with a \npenknife.  But the Duke of Lauderdale was their bitter foe, and \nsent Claverhouse to finish them.\n\nAs the Duke of York became more and more unpopular, the Duke of \nMonmouth became more and more popular.  It would have been decent \nin the latter not to have voted in favour of the renewed bill for \nthe exclusion of James from the throne; but he did so, much to the \nKing's amusement, who used to sit in the House of Lords by the \nfire, hearing the debates, which he said were as good as a play.  \nThe House of Commons passed the bill by a large majority, and it \nwas carried up to the House of Lords by LORD RUSSELL, one of the \nbest of the leaders on the Protestant side.  It was rejected there, \nchiefly because the bishops helped the King to get rid of it; and \nthe fear of Catholic plots revived again.  There had been another \ngot up, by a fellow out of Newgate, named DANGERFIELD, which is \nmore famous than it deserves to be, under the name of the MEAL-TUB \nPLOT.  This jail-bird having been got out of Newgate by a MRS. \nCELLIER, a Catholic nurse, had turned Catholic himself, and \npretended that he knew of a plot among the Presbyterians against \nthe King's life.  This was very pleasant to the Duke of York, who \nhated the Presbyterians, who returned the compliment.  He gave \nDangerfield twenty guineas, and sent him to the King his brother.  \nBut Dangerfield, breaking down altogether in his charge, and being \nsent back to Newgate, almost astonished the Duke out of his five \nsenses by suddenly swearing that the Catholic nurse had put that \nfalse design into his head, and that what he really knew about, \nwas, a Catholic plot against the King; the evidence of which would \nbe found in some papers, concealed in a meal-tub in Mrs. Cellier's \nhouse.  There they were, of course - for he had put them there \nhimself - and so the tub gave the name to the plot.  But, the nurse \nwas acquitted on her trial, and it came to nothing.\n\nLord Ashley, of the Cabal, was now Lord Shaftesbury, and was strong \nagainst the succession of the Duke of York.  The House of Commons, \naggravated to the utmost extent, as we may well suppose, by \nsuspicions of the King's conspiracy with the King of France, made a \ndesperate point of the exclusion, still, and were bitter against \nthe Catholics generally.  So unjustly bitter were they, I grieve to \nsay, that they impeached the venerable Lord Stafford, a Catholic \nnobleman seventy years old, of a design to kill the King.  The \nwitnesses were that atrocious Oates and two other birds of the same \nfeather.  He was found guilty, on evidence quite as foolish as it \nwas false, and was beheaded on Tower Hill.  The people were opposed \nto him when he first appeared upon the scaffold; but, when he had \naddressed them and shown them how innocent he was and how wickedly \nhe was sent there, their better nature was aroused, and they said, \n'We believe you, my Lord.  God bless you, my Lord!'\n\nThe House of Commons refused to let the King have any money until \nhe should consent to the Exclusion Bill; but, as he could get it \nand did get it from his master the King of France, he could afford \nto hold them very cheap.  He called a Parliament at Oxford, to \nwhich he went down with a great show of being armed and protected \nas if he were in danger of his life, and to which the opposition \nmembers also went armed and protected, alleging that they were in \nfear of the Papists, who were numerous among the King's guards.  \nHowever, they went on with the Exclusion Bill, and were so earnest \nupon it that they would have carried it again, if the King had not \npopped his crown and state robes into a sedan-chair, bundled \nhimself into it along with them, hurried down to the chamber where \nthe House of Lords met, and dissolved the Parliament.  After which \nhe scampered home, and the members of Parliament scampered home \ntoo, as fast as their legs could carry them.\n\nThe Duke of York, then residing in Scotland, had, under the law \nwhich excluded Catholics from public trust, no right whatever to \npublic employment.  Nevertheless, he was openly employed as the \nKing's representative in Scotland, and there gratified his sullen \nand cruel nature to his heart's content by directing the dreadful \ncruelties against the Covenanters.  There were two ministers named \nCARGILL and CAMERON who had escaped from the battle of Bothwell \nBridge, and who returned to Scotland, and raised the miserable but \nstill brave and unsubdued Covenanters afresh, under the name of \nCameronians.  As Cameron publicly posted a declaration that the \nKing was a forsworn tyrant, no mercy was shown to his unhappy \nfollowers after he was slain in battle.  The Duke of York, who was \nparticularly fond of the Boot and derived great pleasure from \nhaving it applied, offered their lives to some of these people, if \nthey would cry on the scaffold 'God save the King!'  But their \nrelations, friends, and countrymen, had been so barbarously \ntortured and murdered in this merry reign, that they preferred to \ndie, and did die.  The Duke then obtained his merry brother's \npermission to hold a Parliament in Scotland, which first, with most \nshameless deceit, confirmed the laws for securing the Protestant \nreligion against Popery, and then declared that nothing must or \nshould prevent the succession of the Popish Duke.  After this \ndouble-faced beginning, it established an oath which no human being \ncould understand, but which everybody was to take, as a proof that \nhis religion was the lawful religion.  The Earl of Argyle, taking \nit with the explanation that he did not consider it to prevent him \nfrom favouring any alteration either in the Church or State which \nwas not inconsistent with the Protestant religion or with his \nloyalty, was tried for high treason before a Scottish jury of which \nthe MARQUIS OF MONTROSE was foreman, and was found guilty.  He \nescaped the scaffold, for that time, by getting away, in the \ndisguise of a page, in the train of his daughter, LADY SOPHIA \nLINDSAY.  It was absolutely proposed, by certain members of the \nScottish Council, that this lady should be whipped through the \nstreets of Edinburgh.  But this was too much even for the Duke, who \nhad the manliness then (he had very little at most times) to remark \nthat Englishmen were not accustomed to treat ladies in that manner.  \nIn those merry times nothing could equal the brutal servility of \nthe Scottish fawners, but the conduct of similar degraded beings in \nEngland.\n\nAfter the settlement of these little affairs, the Duke returned to \nEngland, and soon resumed his place at the Council, and his office \nof High Admiral - all this by his brother's favour, and in open \ndefiance of the law.  It would have been no loss to the country, if \nhe had been drowned when his ship, in going to Scotland to fetch \nhis family, struck on a sand-bank, and was lost with two hundred \nsouls on board.  But he escaped in a boat with some friends; and \nthe sailors were so brave and unselfish, that, when they saw him \nrowing away, they gave three cheers, while they themselves were \ngoing down for ever.\n\nThe Merry Monarch, having got rid of his Parliament, went to work \nto make himself despotic, with all speed.  Having had the villainy \nto order the execution of OLIVER PLUNKET, BISHOP OF ARMAGH, falsely \naccused of a plot to establish Popery in that country by means of a \nFrench army - the very thing this royal traitor was himself trying \nto do at home - and having tried to ruin Lord Shaftesbury, and \nfailed - he turned his hand to controlling the corporations all \nover the country; because, if he could only do that, he could get \nwhat juries he chose, to bring in perjured verdicts, and could get \nwhat members he chose returned to Parliament.  These merry times \nproduced, and made Chief Justice of the Court of King's Bench, a \ndrunken ruffian of the name of JEFFREYS; a red-faced, swollen, \nbloated, horrible creature, with a bullying, roaring voice, and a \nmore savage nature perhaps than was ever lodged in any human \nbreast.  This monster was the Merry Monarch's especial favourite, \nand he testified his admiration of him by giving him a ring from \nhis own finger, which the people used to call Judge Jeffreys's \nBloodstone.  Him the King employed to go about and bully the \ncorporations, beginning with London; or, as Jeffreys himself \nelegantly called it, 'to give them a lick with the rough side of \nhis tongue.'  And he did it so thoroughly, that they soon became \nthe basest and most sycophantic bodies in the kingdom - except the \nUniversity of Oxford, which, in that respect, was quite pre-eminent \nand unapproachable.\n\nLord Shaftesbury (who died soon after the King's failure against \nhim), LORD WILLIAM RUSSELL, the Duke of Monmouth, LORD HOWARD, LORD \nJERSEY, ALGERNON SIDNEY, JOHN HAMPDEN (grandson of the great \nHampden), and some others, used to hold a council together after \nthe dissolution of the Parliament, arranging what it might be \nnecessary to do, if the King carried his Popish plot to the utmost \nheight.  Lord Shaftesbury having been much the most violent of this \nparty, brought two violent men into their secrets - RUMSEY, who had \nbeen a soldier in the Republican army; and WEST, a lawyer.  These \ntwo knew an old officer of CROMWELL'S, called RUMBOLD, who had \nmarried a maltster's widow, and so had come into possession of a \nsolitary dwelling called the Rye House, near Hoddesdon, in \nHertfordshire.  Rumbold said to them what a capital place this \nhouse of his would be from which to shoot at the King, who often \npassed there going to and fro from Newmarket.  They liked the idea, \nand entertained it.  But, one of their body gave information; and \nthey, together with SHEPHERD a wine merchant, Lord Russell, \nAlgernon Sidney, LORD ESSEX, LORD HOWARD, and Hampden, were all \narrested.\n\nLord Russell might have easily escaped, but scorned to do so, being \ninnocent of any wrong; Lord Essex might have easily escaped, but \nscorned to do so, lest his flight should prejudice Lord Russell.  \nBut it weighed upon his mind that he had brought into their \ncouncil, Lord Howard - who now turned a miserable traitor - against \na great dislike Lord Russell had always had of him.  He could not \nbear the reflection, and destroyed himself before Lord Russell was \nbrought to trial at the Old Bailey.\n\nHe knew very well that he had nothing to hope, having always been \nmanful in the Protestant cause against the two false brothers, the \none on the throne, and the other standing next to it.  He had a \nwife, one of the noblest and best of women, who acted as his \nsecretary on his trial, who comforted him in his prison, who supped \nwith him on the night before he died, and whose love and virtue and \ndevotion have made her name imperishable.  Of course, he was found \nguilty, and was sentenced to be beheaded in Lincoln's Inn-fields, \nnot many yards from his own house.  When he had parted from his \nchildren on the evening before his death, his wife still stayed \nwith him until ten o'clock at night; and when their final \nseparation in this world was over, and he had kissed her many \ntimes, he still sat for a long while in his prison, talking of her \ngoodness.  Hearing the rain fall fast at that time, he calmly said, \n'Such a rain to-morrow will spoil a great show, which is a dull \nthing on a rainy day.'  At midnight he went to bed, and slept till \nfour; even when his servant called him, he fell asleep again while \nhis clothes were being made ready.  He rode to the scaffold in his \nown carriage, attended by two famous clergymen, TILLOTSON and \nBURNET, and sang a psalm to himself very softly, as he went along.  \nHe was as quiet and as steady as if he had been going out for an \nordinary ride.  After saying that he was surprised to see so great \na crowd, he laid down his head upon the block, as if upon the \npillow of his bed, and had it struck off at the second blow.  His \nnoble wife was busy for him even then; for that true-hearted lady \nprinted and widely circulated his last words, of which he had given \nher a copy.  They made the blood of all the honest men in England \nboil.\n\nThe University of Oxford distinguished itself on the very same day \nby pretending to believe that the accusation against Lord Russell \nwas true, and by calling the King, in a written paper, the Breath \nof their Nostrils and the Anointed of the Lord.  This paper the \nParliament afterwards caused to be burned by the common hangman; \nwhich I am sorry for, as I wish it had been framed and glazed and \nhung up in some public place, as a monument of baseness for the \nscorn of mankind.\n\nNext, came the trial of Algernon Sidney, at which Jeffreys \npresided, like a great crimson toad, sweltering and swelling with \nrage.  'I pray God, Mr. Sidney,' said this Chief Justice of a merry \nreign, after passing sentence, 'to work in you a temper fit to go \nto the other world, for I see you are not fit for this.'  'My \nlord,' said the prisoner, composedly holding out his arm, 'feel my \npulse, and see if I be disordered.  I thank Heaven I never was in \nbetter temper than I am now.'  Algernon Sidney was executed on \nTower Hill, on the seventh of December, one thousand six hundred \nand eighty-three.  He died a hero, and died, in his own words, 'For \nthat good old cause in which he had been engaged from his youth, \nand for which God had so often and so wonderfully declared \nhimself.'\n\nThe Duke of Monmouth had been making his uncle, the Duke of York, \nvery jealous, by going about the country in a royal sort of way, \nplaying at the people's games, becoming godfather to their \nchildren, and even touching for the King's evil, or stroking the \nfaces of the sick to cure them - though, for the matter of that, I \nshould say he did them about as much good as any crowned king could \nhave done.  His father had got him to write a letter, confessing \nhis having had a part in the conspiracy, for which Lord Russell had \nbeen beheaded; but he was ever a weak man, and as soon as he had \nwritten it, he was ashamed of it and got it back again.  For this, \nhe was banished to the Netherlands; but he soon returned and had an \ninterview with his father, unknown to his uncle.  It would seem \nthat he was coming into the Merry Monarch's favour again, and that \nthe Duke of York was sliding out of it, when Death appeared to the \nmerry galleries at Whitehall, and astonished the debauched lords \nand gentlemen, and the shameless ladies, very considerably.\n\nOn Monday, the second of February, one thousand six hundred and \neighty-five, the merry pensioner and servant of the King of France \nfell down in a fit of apoplexy.  By the Wednesday his case was \nhopeless, and on the Thursday he was told so.  As he made a \ndifficulty about taking the sacrament from the Protestant Bishop of \nBath, the Duke of York got all who were present away from the bed, \nand asked his brother, in a whisper, if he should send for a \nCatholic priest?   The King replied, 'For God's sake, brother, do!'  \nThe Duke smuggled in, up the back stairs, disguised in a wig and \ngown, a priest named HUDDLESTON, who had saved the King's life \nafter the battle of Worcester:  telling him that this worthy man in \nthe wig had once saved his body, and was now come to save his soul.\n\nThe Merry Monarch lived through that night, and died before noon on \nthe next day, which was Friday, the sixth.  Two of the last things \nhe said were of a human sort, and your remembrance will give him \nthe full benefit of them.  When the Queen sent to say she was too \nunwell to attend him and to ask his pardon, he said, 'Alas! poor \nwoman, SHE beg MY pardon!  I beg hers with all my heart.  Take back \nthat answer to her.'  And he also said, in reference to Nell Gwyn, \n'Do not let poor Nelly starve.'\n\nHe died in the fifty-fifth year of his age, and the twenty-fifth of \nhis reign.\n\n\n\nCHAPTER XXXVI - ENGLAND UNDER JAMES THE SECOND\n\n\n\nKING JAMES THE SECOND was a man so very disagreeable, that even the \nbest of historians has favoured his brother Charles, as becoming, \nby comparison, quite a pleasant character.  The one object of his \nshort reign was to re-establish the Catholic religion in England; \nand this he doggedly pursued with such a stupid obstinacy, that his \ncareer very soon came to a close.\n\nThe first thing he did, was, to assure his council that he would \nmake it his endeavour to preserve the Government, both in Church \nand State, as it was by law established; and that he would always \ntake care to defend and support the Church.  Great public \nacclamations were raised over this fair speech, and a great deal \nwas said, from the pulpits and elsewhere, about the word of a King \nwhich was never broken, by credulous people who little supposed \nthat he had formed a secret council for Catholic affairs, of which \na mischievous Jesuit, called FATHER PETRE, was one of the chief \nmembers.  With tears of joy in his eyes, he received, as the \nbeginning of HIS pension from the King of France, five hundred \nthousand livres; yet, with a mixture of meanness and arrogance that \nbelonged to his contemptible character, he was always jealous of \nmaking some show of being independent of the King of France, while \nhe pocketed his money.  As - notwithstanding his publishing two \npapers in favour of Popery (and not likely to do it much service, I \nshould think) written by the King, his brother, and found in his \nstrong-box; and his open display of himself attending mass - the \nParliament was very obsequious, and granted him a large sum of \nmoney, he began his reign with a belief that he could do what he \npleased, and with a determination to do it.\n\nBefore we proceed to its principal events, let us dispose of Titus \nOates.  He was tried for perjury, a fortnight after the coronation, \nand besides being very heavily fined, was sentenced to stand twice \nin the pillory, to be whipped from Aldgate to Newgate one day, and \nfrom Newgate to Tyburn two days afterwards, and to stand in the \npillory five times a year as long as he lived.  This fearful \nsentence was actually inflicted on the rascal.  Being unable to \nstand after his first flogging, he was dragged on a sledge from \nNewgate to Tyburn, and flogged as he was drawn along.  He was so \nstrong a villain that he did not die under the torture, but lived \nto be afterwards pardoned and rewarded, though not to be ever \nbelieved in any more.  Dangerfield, the only other one of that crew \nleft alive, was not so fortunate.  He was almost killed by a \nwhipping from Newgate to Tyburn, and, as if that were not \npunishment enough, a ferocious barrister of Gray's Inn gave him a \npoke in the eye with his cane, which caused his death; for which \nthe ferocious barrister was deservedly tried and executed.\n\nAs soon as James was on the throne, Argyle and Monmouth went from \nBrussels to Rotterdam, and attended a meeting of Scottish exiles \nheld there, to concert measures for a rising in England.  It was \nagreed that Argyle should effect a landing in Scotland, and \nMonmouth in England; and that two Englishmen should be sent with \nArgyle to be in his confidence, and two Scotchmen with the Duke of \nMonmouth.\n\nArgyle was the first to act upon this contract.  But, two of his \nmen being taken prisoners at the Orkney Islands, the Government \nbecame aware of his intention, and was able to act against him with \nsuch vigour as to prevent his raising more than two or three \nthousand Highlanders, although he sent a fiery cross, by trusty \nmessengers, from clan to clan and from glen to glen, as the custom \nthen was when those wild people were to be excited by their chiefs.  \nAs he was moving towards Glasgow with his small force, he was \nbetrayed by some of his followers, taken, and carried, with his \nhands tied behind his back, to his old prison in Edinburgh Castle.  \nJames ordered him to be executed, on his old shamefully unjust \nsentence, within three days; and he appears to have been anxious \nthat his legs should have been pounded with his old favourite the \nboot.  However, the boot was not applied; he was simply beheaded, \nand his head was set upon the top of Edinburgh Jail.  One of those \nEnglishmen who had been assigned to him was that old soldier \nRumbold, the master of the Rye House.  He was sorely wounded, and \nwithin a week after Argyle had suffered with great courage, was \nbrought up for trial, lest he should die and disappoint the King.  \nHe, too, was executed, after defending himself with great spirit, \nand saying that he did not believe that God had made the greater \npart of mankind to carry saddles on their backs and bridles in \ntheir mouths, and to be ridden by a few, booted and spurred for the \npurpose - in which I thoroughly agree with Rumbold.\n\nThe Duke of Monmouth, partly through being detained and partly \nthrough idling his time away, was five or six weeks behind his \nfriend when he landed at Lyme, in Dorset:  having at his right hand \nan unlucky nobleman called LORD GREY OF WERK, who of himself would \nhave ruined a far more promising expedition.  He immediately set up \nhis standard in the market-place, and proclaimed the King a tyrant, \nand a Popish usurper, and I know not what else; charging him, not \nonly with what he had done, which was bad enough, but with what \nneither he nor anybody else had done, such as setting fire to \nLondon, and poisoning the late King.  Raising some four thousand \nmen by these means, he marched on to Taunton, where there were many \nProtestant dissenters who were strongly opposed to the Catholics.  \nHere, both the rich and poor turned out to receive him, ladies \nwaved a welcome to him from all the windows as he passed along the \nstreets, flowers were strewn in his way, and every compliment and \nhonour that could be devised was showered upon him.  Among the \nrest, twenty young ladies came forward, in their best clothes, and \nin their brightest beauty, and gave him a Bible ornamented with \ntheir own fair hands, together with other presents.\n\nEncouraged by this homage, he proclaimed himself King, and went on \nto Bridgewater.  But, here the Government troops, under the EARL OF \nFEVERSHAM, were close at hand; and he was so dispirited at finding \nthat he made but few powerful friends after all, that it was a \nquestion whether he should disband his army and endeavour to \nescape.  It was resolved, at the instance of that unlucky Lord \nGrey, to make a night attack on the King's army, as it lay encamped \non the edge of a morass called Sedgemoor.  The horsemen were \ncommanded by the same unlucky lord, who was not a brave man.  He \ngave up the battle almost at the first obstacle - which was a deep \ndrain; and although the poor countrymen, who had turned out for \nMonmouth, fought bravely with scythes, poles, pitchforks, and such \npoor weapons as they had, they were soon dispersed by the trained \nsoldiers, and fled in all directions.  When the Duke of Monmouth \nhimself fled, was not known in the confusion; but the unlucky Lord \nGrey was taken early next day, and then another of the party was \ntaken, who confessed that he had parted from the Duke only four \nhours before.  Strict search being made, he was found disguised as \na peasant, hidden in a ditch under fern and nettles, with a few \npeas in his pocket which he had gathered in the fields to eat.  The \nonly other articles he had upon him were a few papers and little \nbooks:  one of the latter being a strange jumble, in his own \nwriting, of charms, songs, recipes, and prayers.  He was completely \nbroken.  He wrote a miserable letter to the King, beseeching and \nentreating to be allowed to see him.  When he was taken to London, \nand conveyed bound into the King's presence, he crawled to him on \nhis knees, and made a most degrading exhibition.  As James never \nforgave or relented towards anybody, he was not likely to soften \ntowards the issuer of the Lyme proclamation, so he told the \nsuppliant to prepare for death.\n\nOn the fifteenth of July, one thousand six hundred and eighty-five, \nthis unfortunate favourite of the people was brought out to die on \nTower Hill.  The crowd was immense, and the tops of all the houses \nwere covered with gazers.  He had seen his wife, the daughter of \nthe Duke of Buccleuch, in the Tower, and had talked much of a lady \nwhom he loved far better - the LADY HARRIET WENTWORTH - who was one \nof the last persons he remembered in this life.  Before laying down \nhis head upon the block he felt the edge of the axe, and told the \nexecutioner that he feared it was not sharp enough, and that the \naxe was not heavy enough.  On the executioner replying that it was \nof the proper kind, the Duke said, 'I pray you have a care, and do \nnot use me so awkwardly as you used my Lord Russell.'  The \nexecutioner, made nervous by this, and trembling, struck once and \nmerely gashed him in the neck.  Upon this, the Duke of Monmouth \nraised his head and looked the man reproachfully in the face.  Then \nhe struck twice, and then thrice, and then threw down the axe, and \ncried out in a voice of horror that he could not finish that work.  \nThe sheriffs, however, threatening him with what should be done to \nhimself if he did not, he took it up again and struck a fourth time \nand a fifth time.  Then the wretched head at last fell off, and \nJames, Duke of Monmouth, was dead, in the thirty-sixth year of his \nage.  He was a showy, graceful man, with many popular qualities, \nand had found much favour in the open hearts of the English.\n\nThe atrocities, committed by the Government, which followed this \nMonmouth rebellion, form the blackest and most lamentable page in \nEnglish history.  The poor peasants, having been dispersed with \ngreat loss, and their leaders having been taken, one would think \nthat the implacable King might have been satisfied.  But no; he let \nloose upon them, among other intolerable monsters, a COLONEL KIRK, \nwho had served against the Moors, and whose soldiers - called by \nthe people Kirk's lambs, because they bore a lamb upon their flag, \nas the emblem of Christianity - were worthy of their leader.  The \natrocities committed by these demons in human shape are far too \nhorrible to be related here.  It is enough to say, that besides \nmost ruthlessly murdering and robbing them, and ruining them by \nmaking them buy their pardons at the price of all they possessed, \nit was one of Kirk's favourite amusements, as he and his officers \nsat drinking after dinner, and toasting the King, to have batches \nof prisoners hanged outside the windows for the company's \ndiversion; and that when their feet quivered in the convulsions of \ndeath, he used to swear that they should have music to their \ndancing, and would order the drums to beat and the trumpets to \nplay.  The detestable King informed him, as an acknowledgment of \nthese services, that he was 'very well satisfied with his \nproceedings.'  But the King's great delight was in the proceedings \nof Jeffreys, now a peer, who went down into the west, with four \nother judges, to try persons accused of having had any share in the \nrebellion.  The King pleasantly called this 'Jeffreys's campaign.'  \nThe people down in that part of the country remember it to this day \nas The Bloody Assize.\n\nIt began at Winchester, where a poor deaf old lady, MRS. ALICIA \nLISLE, the widow of one of the judges of Charles the First (who had \nbeen murdered abroad by some Royalist assassins), was charged with \nhaving given shelter in her house to two fugitives from Sedgemoor.  \nThree times the jury refused to find her guilty, until Jeffreys \nbullied and frightened them into that false verdict.  When he had \nextorted it from them, he said, 'Gentlemen, if I had been one of \nyou, and she had been my own mother, I would have found her \nguilty;' - as I dare say he would.  He sentenced her to be burned \nalive, that very afternoon.  The clergy of the cathedral and some \nothers interfered in her favour, and she was beheaded within a \nweek.  As a high mark of his approbation, the King made Jeffreys \nLord Chancellor; and he then went on to Dorchester, to Exeter, to \nTaunton, and to Wells.  It is astonishing, when we read of the \nenormous injustice and barbarity of this beast, to know that no one \nstruck him dead on the judgment-seat.  It was enough for any man or \nwoman to be accused by an enemy, before Jeffreys, to be found \nguilty of high treason.  One man who pleaded not guilty, he ordered \nto be taken out of court upon the instant, and hanged; and this so \nterrified the prisoners in general that they mostly pleaded guilty \nat once.  At Dorchester alone, in the course of a few days, \nJeffreys hanged eighty people; besides whipping, transporting, \nimprisoning, and selling as slaves, great numbers.  He executed, in \nall, two hundred and fifty, or three hundred.\n\nThese executions took place, among the neighbours and friends of \nthe sentenced, in thirty-six towns and villages.  Their bodies were \nmangled, steeped in caldrons of boiling pitch and tar, and hung up \nby the roadsides, in the streets, over the very churches.  The \nsight and smell of heads and limbs, the hissing and bubbling of the \ninfernal caldrons, and the tears and terrors of the people, were \ndreadful beyond all description.  One rustic, who was forced to \nsteep the remains in the black pot, was ever afterwards called 'Tom \nBoilman.'  The hangman has ever since been called Jack Ketch, \nbecause a man of that name went hanging and hanging, all day long, \nin the train of Jeffreys.  You will hear much of the horrors of the \ngreat French Revolution.  Many and terrible they were, there is no \ndoubt; but I know of nothing worse, done by the maddened people of \nFrance in that awful time, than was done by the highest judge in \nEngland, with the express approval of the King of England, in The \nBloody Assize.\n\nNor was even this all.  Jeffreys was as fond of money for himself \nas of misery for others, and he sold pardons wholesale to fill his \npockets.  The King ordered, at one time, a thousand prisoners to be \ngiven to certain of his favourites, in order that they might \nbargain with them for their pardons.  The young ladies of Taunton \nwho had presented the Bible, were bestowed upon the maids of honour \nat court; and those precious ladies made very hard bargains with \nthem indeed.  When The Bloody Assize was at its most dismal height, \nthe King was diverting himself with horse-races in the very place \nwhere Mrs. Lisle had been executed.  When Jeffreys had done his \nworst, and came home again, he was particularly complimented in the \nRoyal Gazette; and when the King heard that through drunkenness and \nraging he was very ill, his odious Majesty remarked that such \nanother man could not easily be found in England.  Besides all \nthis, a former sheriff of London, named CORNISH, was hanged within \nsight of his own house, after an abominably conducted trial, for \nhaving had a share in the Rye House Plot, on evidence given by \nRumsey, which that villain was obliged to confess was directly \nopposed to the evidence he had given on the trial of Lord Russell.  \nAnd on the very same day, a worthy widow, named ELIZABETH GAUNT, \nwas burned alive at Tyburn, for having sheltered a wretch who \nhimself gave evidence against her.  She settled the fuel about \nherself with her own hands, so that the flames should reach her \nquickly:  and nobly said, with her last breath, that she had obeyed \nthe sacred command of God, to give refuge to the outcast, and not \nto betray the wanderer.\n\nAfter all this hanging, beheading, burning, boiling, mutilating, \nexposing, robbing, transporting, and selling into slavery, of his \nunhappy subjects, the King not unnaturally thought that he could do \nwhatever he would.  So, he went to work to change the religion of \nthe country with all possible speed; and what he did was this.\n\nHe first of all tried to get rid of what was called the Test Act - \nwhich prevented the Catholics from holding public employments - by \nhis own power of dispensing with the penalties.  He tried it in one \ncase, and, eleven of the twelve judges deciding in his favour, he \nexercised it in three others, being those of three dignitaries of \nUniversity College, Oxford, who had become Papists, and whom he \nkept in their places and sanctioned.  He revived the hated \nEcclesiastical Commission, to get rid of COMPTON, Bishop of London, \nwho manfully opposed him.  He solicited the Pope to favour England \nwith an ambassador, which the Pope (who was a sensible man then) \nrather unwillingly did.  He flourished Father Petre before the eyes \nof the people on all possible occasions.  He favoured the \nestablishment of convents in several parts of London.  He was \ndelighted to have the streets, and even the court itself, filled \nwith Monks and Friars in the habits of their orders.  He constantly \nendeavoured to make Catholics of the Protestants about him.  He \nheld private interviews, which he called 'closetings,' with those \nMembers of Parliament who held offices, to persuade them to consent \nto the design he had in view.  When they did not consent, they were \nremoved, or resigned of themselves, and their places were given to \nCatholics.  He displaced Protestant officers from the army, by \nevery means in his power, and got Catholics into their places too.  \nHe tried the same thing with the corporations, and also (though not \nso successfully) with the Lord Lieutenants of counties.  To terrify \nthe people into the endurance of all these measures, he kept an \narmy of fifteen thousand men encamped on Hounslow Heath, where mass \nwas openly performed in the General's tent, and where priests went \namong the soldiers endeavouring to persuade them to become \nCatholics.  For circulating a paper among those men advising them \nto be true to their religion, a Protestant clergyman, named \nJOHNSON, the chaplain of the late Lord Russell, was actually \nsentenced to stand three times in the pillory, and was actually \nwhipped from Newgate to Tyburn.  He dismissed his own brother-in-\nlaw from his Council because he was a Protestant, and made a Privy \nCouncillor of the before-mentioned Father Petre.  He handed Ireland \nover to RICHARD TALBOT, EARL OF TYRCONNELL, a worthless, dissolute \nknave, who played the same game there for his master, and who \nplayed the deeper game for himself of one day putting it under the \nprotection of the French King.  In going to these extremities, \nevery man of sense and judgment among the Catholics, from the Pope \nto a porter, knew that the King was a mere bigoted fool, who would \nundo himself and the cause he sought to advance; but he was deaf to \nall reason, and, happily for England ever afterwards, went tumbling \noff his throne in his own blind way.\n\nA spirit began to arise in the country, which the besotted \nblunderer little expected.  He first found it out in the University \nof Cambridge.  Having made a Catholic a dean at Oxford without any \nopposition, he tried to make a monk a master of arts at Cambridge:  \nwhich attempt the University resisted, and defeated him.  He then \nwent back to his favourite Oxford.  On the death of the President \nof Magdalen College, he commanded that there should be elected to \nsucceed him, one MR. ANTHONY FARMER, whose only recommendation was, \nthat he was of the King's religion.  The University plucked up \ncourage at last, and refused.  The King substituted another man, \nand it still refused, resolving to stand by its own election of a \nMR. HOUGH.  The dull tyrant, upon this, punished Mr. Hough, and \nfive-and-twenty more, by causing them to be expelled and declared \nincapable of holding any church preferment; then he proceeded to \nwhat he supposed to be his highest step, but to what was, in fact, \nhis last plunge head-foremost in his tumble off his throne.\n\nHe had issued a declaration that there should be no religious tests \nor penal laws, in order to let in the Catholics more easily; but \nthe Protestant dissenters, unmindful of themselves, had gallantly \njoined the regular church in opposing it tooth and nail.  The King \nand Father Petre now resolved to have this read, on a certain \nSunday, in all the churches, and to order it to be circulated for \nthat purpose by the bishops.  The latter took counsel with the \nArchbishop of Canterbury, who was in disgrace; and they resolved \nthat the declaration should not be read, and that they would \npetition the King against it.  The Archbishop himself wrote out the \npetition, and six bishops went into the King's bedchamber the same \nnight to present it, to his infinite astonishment.  Next day was \nthe Sunday fixed for the reading, and it was only read by two \nhundred clergymen out of ten thousand.  The King resolved against \nall advice to prosecute the bishops in the Court of King's Bench, \nand within three weeks they were summoned before the Privy Council, \nand committed to the Tower.  As the six bishops were taken to that \ndismal place, by water, the people who were assembled in immense \nnumbers fell upon their knees, and wept for them, and prayed for \nthem.  When they got to the Tower, the officers and soldiers on \nguard besought them for their blessing.  While they were confined \nthere, the soldiers every day drank to their release with loud \nshouts.  When they were brought up to the Court of King's Bench for \ntheir trial, which the Attorney-General said was for the high \noffence of censuring the Government, and giving their opinion about \naffairs of state, they were attended by similar multitudes, and \nsurrounded by a throng of noblemen and gentlemen.  When the jury \nwent out at seven o'clock at night to consider of their verdict, \neverybody (except the King) knew that they would rather starve than \nyield to the King's brewer, who was one of them, and wanted a \nverdict for his customer.  When they came into court next morning, \nafter resisting the brewer all night, and gave a verdict of not \nguilty, such a shout rose up in Westminster Hall as it had never \nheard before; and it was passed on among the people away to Temple \nBar, and away again to the Tower.  It did not pass only to the \neast, but passed to the west too, until it reached the camp at \nHounslow, where the fifteen thousand soldiers took it up and echoed \nit.  And still, when the dull King, who was then with Lord \nFeversham, heard the mighty roar, asked in alarm what it was, and \nwas told that it was 'nothing but the acquittal of the bishops,' he \nsaid, in his dogged way, 'Call you that nothing?  It is so much the \nworse for them.'\n\nBetween the petition and the trial, the Queen had given birth to a \nson, which Father Petre rather thought was owing to Saint Winifred.  \nBut I doubt if Saint Winifred had much to do with it as the King's \nfriend, inasmuch as the entirely new prospect of a Catholic \nsuccessor (for both the King's daughters were Protestants) \ndetermined the EARLS OF SHREWSBURY, DANBY, and DEVONSHIRE, LORD \nLUMLEY, the BISHOP OF LONDON, ADMIRAL RUSSELL, and COLONEL SIDNEY, \nto invite the Prince of Orange over to England.  The Royal Mole, \nseeing his danger at last, made, in his fright, many great \nconcessions, besides raising an army of forty thousand men; but the \nPrince of Orange was not a man for James the Second to cope with.  \nHis preparations were extraordinarily vigorous, and his mind was \nresolved.\n\nFor a fortnight after the Prince was ready to sail for England, a \ngreat wind from the west prevented the departure of his fleet.  \nEven when the wind lulled, and it did sail, it was dispersed by a \nstorm, and was obliged to put back to refit.  At last, on the first \nof November, one thousand six hundred and eighty-eight, the \nProtestant east wind, as it was long called, began to blow; and on \nthe third, the people of Dover and the people of Calais saw a fleet \ntwenty miles long sailing gallantly by, between the two places.  On \nMonday, the fifth, it anchored at Torbay in Devonshire, and the \nPrince, with a splendid retinue of officers and men, marched into \nExeter.  But the people in that western part of the country had \nsuffered so much in The Bloody Assize, that they had lost heart.  \nFew people joined him; and he began to think of returning, and \npublishing the invitation he had received from those lords, as his \njustification for having come at all.  At this crisis, some of the \ngentry joined him; the Royal army began to falter; an engagement \nwas signed, by which all who set their hand to it declared that \nthey would support one another in defence of the laws and liberties \nof the three Kingdoms, of the Protestant religion, and of the \nPrince of Orange.  From that time, the cause received no check; the \ngreatest towns in England began, one after another, to declare for \nthe Prince; and he knew that it was all safe with him when the \nUniversity of Oxford offered to melt down its plate, if he wanted \nany money.\n\nBy this time the King was running about in a pitiable way, touching \npeople for the King's evil in one place, reviewing his troops in \nanother, and bleeding from the nose in a third.  The young Prince \nwas sent to Portsmouth, Father Petre went off like a shot to \nFrance, and there was a general and swift dispersal of all the \npriests and friars.  One after another, the King's most important \nofficers and friends deserted him and went over to the Prince.  In \nthe night, his daughter Anne fled from Whitehall Palace; and the \nBishop of London, who had once been a soldier, rode before her with \na drawn sword in his hand, and pistols at his saddle.  'God help \nme,' cried the miserable King:  'my very children have forsaken \nme!'  In his wildness, after debating with such lords as were in \nLondon, whether he should or should not call a Parliament, and \nafter naming three of them to negotiate with the Prince, he \nresolved to fly to France.  He had the little Prince of Wales \nbrought back from Portsmouth; and the child and the Queen crossed \nthe river to Lambeth in an open boat, on a miserable wet night, and \ngot safely away.  This was on the night of the ninth of December.\n\nAt one o'clock on the morning of the eleventh, the King, who had, \nin the meantime, received a letter from the Prince of Orange, \nstating his objects, got out of bed, told LORD NORTHUMBERLAND who \nlay in his room not to open the door until the usual hour in the \nmorning, and went down the back stairs (the same, I suppose, by \nwhich the priest in the wig and gown had come up to his brother) \nand crossed the river in a small boat:  sinking the great seal of \nEngland by the way.  Horses having been provided, he rode, \naccompanied by SIR EDWARD HALES, to Feversham, where he embarked in \na Custom House Hoy.  The master of this Hoy, wanting more ballast, \nran into the Isle of Sheppy to get it, where the fishermen and \nsmugglers crowded about the boat, and informed the King of their \nsuspicions that he was a 'hatchet-faced Jesuit.'  As they took his \nmoney and would not let him go, he told them who he was, and that \nthe Prince of Orange wanted to take his life; and he began to \nscream for a boat - and then to cry, because he had lost a piece of \nwood on his ride which he called a fragment of Our Saviour's cross.  \nHe put himself into the hands of the Lord Lieutenant of the county, \nand his detention was made known to the Prince of Orange at Windsor \n- who, only wanting to get rid of him, and not caring where he \nwent, so that he went away, was very much disconcerted that they \ndid not let him go.  However, there was nothing for it but to have \nhim brought back, with some state in the way of Life Guards, to \nWhitehall.  And as soon as he got there, in his infatuation, he \nheard mass, and set a Jesuit to say grace at his public dinner.\n\nThe people had been thrown into the strangest state of confusion by \nhis flight, and had taken it into their heads that the Irish part \nof the army were going to murder the Protestants.  Therefore, they \nset the bells a ringing, and lighted watch-fires, and burned \nCatholic Chapels, and looked about in all directions for Father \nPetre and the Jesuits, while the Pope's ambassador was running away \nin the dress of a footman.  They found no Jesuits; but a man, who \nhad once been a frightened witness before Jeffreys in court, saw a \nswollen, drunken face looking through a window down at Wapping, \nwhich he well remembered.  The face was in a sailor's dress, but he \nknew it to be the face of that accursed judge, and he seized him.  \nThe people, to their lasting honour, did not tear him to pieces.  \nAfter knocking him about a little, they took him, in the basest \nagonies of terror, to the Lord Mayor, who sent him, at his own \nshrieking petition, to the Tower for safety.  There, he died.\n\nTheir bewilderment continuing, the people now lighted bonfires and \nmade rejoicings, as if they had any reason to be glad to have the \nKing back again.  But, his stay was very short, for the English \nguards were removed from Whitehall, Dutch guards were marched up to \nit, and he was told by one of his late ministers that the Prince \nwould enter London, next day, and he had better go to Ham.  He \nsaid, Ham was a cold, damp place, and he would rather go to \nRochester.  He thought himself very cunning in this, as he meant to \nescape from Rochester to France.  The Prince of Orange and his \nfriends knew that, perfectly well, and desired nothing more.  So, \nhe went to Gravesend, in his royal barge, attended by certain \nlords, and watched by Dutch troops, and pitied by the generous \npeople, who were far more forgiving than he had ever been, when \nthey saw him in his humiliation.  On the night of the twenty-third \nof December, not even then understanding that everybody wanted to \nget rid of him, he went out, absurdly, through his Rochester \ngarden, down to the Medway, and got away to France, where he \nrejoined the Queen.\n\nThere had been a council in his absence, of the lords, and the \nauthorities of London.  When the Prince came, on the day after the \nKing's departure, he summoned the Lords to meet him, and soon \nafterwards, all those who had served in any of the Parliaments of \nKing Charles the Second.  It was finally resolved by these \nauthorities that the throne was vacant by the conduct of King James \nthe Second; that it was inconsistent with the safety and welfare of \nthis Protestant kingdom, to be governed by a Popish prince; that \nthe Prince and Princess of Orange should be King and Queen during \ntheir lives and the life of the survivor of them; and that their \nchildren should succeed them, if they had any.  That if they had \nnone, the Princess Anne and her children should succeed; that if \nshe had none, the heirs of the Prince of Orange should succeed.\n\nOn the thirteenth of January, one thousand six hundred and eighty-\nnine, the Prince and Princess, sitting on a throne in Whitehall, \nbound themselves to these conditions.  The Protestant religion was \nestablished in England, and England's great and glorious Revolution \nwas complete.\n\n\n\nCHAPTER XXXVII\n\n\n\nI HAVE now arrived at the close of my little history.  The events \nwhich succeeded the famous Revolution of one thousand six hundred \nand eighty-eight, would neither be easily related nor easily \nunderstood in such a book as this.\n\nWilliam and Mary reigned together, five years.  After the death of \nhis good wife, William occupied the throne, alone, for seven years \nlonger.  During his reign, on the sixteenth of September, one \nthousand seven hundred and one, the poor weak creature who had once \nbeen James the Second of England, died in France.  In the meantime \nhe had done his utmost (which was not much) to cause William to be \nassassinated, and to regain his lost dominions.  James's son was \ndeclared, by the French King, the rightful King of England; and was \ncalled in France THE CHEVALIER SAINT GEORGE, and in England THE \nPRETENDER.  Some infatuated people in England, and particularly in \nScotland, took up the Pretender's cause from time to time - as if \nthe country had not had Stuarts enough! - and many lives were \nsacrificed, and much misery was occasioned.  King William died on \nSunday, the seventh of March, one thousand seven hundred and two, \nof the consequences of an accident occasioned by his horse \nstumbling with him.  He was always a brave, patriotic Prince, and a \nman of remarkable abilities.  His manner was cold, and he made but \nfew friends; but he had truly loved his queen.  When he was dead, a \nlock of her hair, in a ring, was found tied with a black ribbon \nround his left arm.\n\nHe was succeeded by the PRINCESS ANNE, a popular Queen, who reigned \ntwelve years.  In her reign, in the month of May, one thousand \nseven hundred and seven, the Union between England and Scotland was \neffected, and the two countries were incorporated under the name of \nGREAT BRITAIN.  Then, from the year one thousand seven hundred and \nfourteen to the year one thousand, eight hundred and thirty, \nreigned the four GEORGES.\n\nIt was in the reign of George the Second, one thousand seven \nhundred and forty-five, that the Pretender did his last mischief, \nand made his last appearance.  Being an old man by that time, he \nand the Jacobites - as his friends were called - put forward his \nson, CHARLES EDWARD, known as the young Chevalier.  The Highlanders \nof Scotland, an extremely troublesome and wrong-headed race on the \nsubject of the Stuarts, espoused his cause, and he joined them, and \nthere was a Scottish rebellion to make him king, in which many \ngallant and devoted gentlemen lost their lives.  It was a hard \nmatter for Charles Edward to escape abroad again, with a high price \non his head; but the Scottish people were extraordinarily faithful \nto him, and, after undergoing many romantic adventures, not unlike \nthose of Charles the Second, he escaped to France.  A number of \ncharming stories and delightful songs arose out of the Jacobite \nfeelings, and belong to the Jacobite times.  Otherwise I think the \nStuarts were a public nuisance altogether.\n\nIt was in the reign of George the Third that England lost North \nAmerica, by persisting in taxing her without her own consent.  That \nimmense country, made independent under WASHINGTON, and left to \nitself, became the United States; one of the greatest nations of \nthe earth.  In these times in which I write, it is honourably \nremarkable for protecting its subjects, wherever they may travel, \nwith a dignity and a determination which is a model for England.  \nBetween you and me, England has rather lost ground in this respect \nsince the days of Oliver Cromwell.\n\nThe Union of Great Britain with Ireland - which had been getting on \nvery ill by itself - took place in the reign of George the Third, \non the second of July, one thousand seven hundred and ninety-eight.\n\nWILLIAM THE FOURTH succeeded George the Fourth, in the year one \nthousand eight hundred and thirty, and reigned seven years.  QUEEN \nVICTORIA, his niece, the only child of the Duke of Kent, the fourth \nson of George the Third, came to the throne on the twentieth of \nJune, one thousand eight hundred and thirty-seven.  She was married \nto PRINCE ALBERT of Saxe Gotha on the tenth of February, one \nthousand eight hundred and forty.  She is very good, and much \nbeloved.  So I end, like the crier, with\n\nGOD SAVE THE QUEEN!\n\n\n\n\n\nEnd of the Project Gutenberg eText A Child's History of England\n\nProject Gutenberg Etext of Contributions to:  All The Year Round \n#48 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\nContributions to All The Year Round\n\nby Charles Dickens\n\nSeptember, 1998  [Etext #1464]\n\n\nProject Gutenberg Etext of Contributions to:  All The Year Round \n******This file should be named allyr10.txt or allyr10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, allyr11.txt\nVERSIONS based on separate sources get new LETTER, allyr10a.txt\n\nThis etext was prepared from the 1912 Gresham Publishing Company\nedition by David Price, email ccx074@coventry.ac.uk\n\n\nProject Gutenberg Etexts are usually created from multiple editions,\nall of which are in the Public Domain in the United States, unless a\ncopyright notice is included.  Therefore, we do NOT keep these books\nin compliance with any particular paper edition, usually otherwise.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month, or 384 more Etexts in 1998 for a total of 1500+\nIf these reach just 10% of the computerized population, then the\ntotal should reach over 150 billion Etexts given away.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/CMU\": and are\ntax deductible to the extent allowable by law.  (CMU = Carnegie-\nMellon University).\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nCarnegie-Mellon University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association/Carnegie-Mellon\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Carnegie-Mellon University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThis etext was prepared from the 1912 Gresham Publishing Company\nedition by David Price, email ccx074@coventry.ac.uk\n\n\n\n\n\nContributions to All The Year Round by Charles Dickens\n\n\n\n\nContents:\n\n\nAnnouncement in \"Household Words\"\nThe Poor Man and his Beer\nFive New Points of Criminal Law\nLeigh Hunt:  A Remonstrance\nThe Tattlesnivel Bleater\nThe Young Man from the Country\nAn Enlightened Clergyman\nRather a Strong Dose\nThe Martyr Medium\nThe Late Mr. Stanfield\nA Slight Question of Fact\nLandor's Life\nAddress which appeared shortly previous to the completion of the\n20th volume\n\n\n\nANNOUNCEMENT IN \"HOUSEHOLD WORDS\" OF THE APPROACHING PUBLICATION OF\n\"ALL THE YEAR ROUND\"\n\n\n\nAfter the appearance of the present concluding Number of Household\nWords, this publication will merge into the new weekly publication,\nAll the Year Round, and the title, Household Words, will form a part\nof the title-page of All the Year Round.\n\nThe Prospectus of the latter Journal describes it in these words:\n\n\n\"ADDRESS\n\n\n\"Nine years of Household Words, are the best practical assurance\nthat can be offered to the public, of the spirit and objects of All\nthe Year Round.\n\n\"In transferring myself, and my strongest energies, from the\npublication that is about to be discontinued, to the publication\nthat is about to be begun, I have the happiness of taking with me\nthe staff of writers with whom I have laboured, and all the literary\nand business co-operation that can make my work a pleasure.  In some\nimportant respects, I am now free greatly to advance on past\narrangements.  Those, I leave to testify for themselves in due\ncourse.\n\n\"That fusion of the graces of the imagination with the realities of\nlife, which is vital to the welfare of any community, and for which\nI have striven from week to week as honestly as I could during the\nlast nine years, will continue to be striven for \"all the year\nround\".  The old weekly cares and duties become things of the Past,\nmerely to be assumed, with an increased love for them and brighter\nhopes springing out of them, in the Present and the Future.\n\n\"I look, and plan, for a very much wider circle of readers, and yet\nagain for a steadily expanding circle of readers, in the projects I\nhope to carry through \"all the year round\".  And I feel confident\nthat this expectation will be realized, if it deserve realization.\n\n\"The task of my new journal is set, and it will steadily try to work\nthe task out.  Its pages shall show to what good purpose their motto\nis remembered in them, and with how much of fidelity and earnestness\nthey tell\n\n\"the story of our lives from year to year.\n\n\"CHARLES DICKENS.\"\n\n\nSince this was issued, the Journal itself has come into existence,\nand has spoken for itself five weeks.  Its fifth Number is published\nto-day, and its circulation, moderately stated, trebles that now\nrelinquished in Household Words.\n\nIn referring our readers, henceforth, to All the Year Round, we can\nbut assure them afresh, of our unwearying and faithful service, in\nwhat is at once the work and the chief pleasure of our life.\nThrough all that we are doing, and through all that we design to do,\nour aim is to do our best in sincerity of purpose, and true devotion\nof spirit.\n\nWe do not for a moment suppose that we may lean on the character of\nthese pages, and rest contented at the point where they stop.  We\nsee in that point but a starting-place for our new journey; and on\nthat journey, with new prospects opening out before us everywhere,\nwe joyfully proceed, entreating our readers--without any of the pain\nof leave-taking incidental to most journeys--to bear us company All\nthe year round.\n\nSaturday, May 28, 1859.\n\n\n\nTHE POOR MAN AND HIS BEER\n\n\n\nMy friend Philosewers and I, contemplating a farm-labourer the other\nday, who was drinking his mug of beer on a settle at a roadside ale-\nhouse door, we fell to humming the fag-end of an old ditty, of which\nthe poor man and his beer, and the sin of parting them, form the\ndoleful burden.  Philosewers then mentioned to me that a friend of\nhis in an agricultural county--say a Hertfordshire friend--had, for\ntwo years last past, endeavoured to reconcile the poor man and his\nbeer to public morality, by making it a point of honour between\nhimself and the poor man that the latter should use his beer and not\nabuse it.  Interested in an effort of so unobtrusive and\nunspeechifying a nature, \"O Philosewers,\" said I, after the manner\nof the dreary sages in Eastern apologues, \"Show me, I pray, the man\nwho deems that temperance can be attained without a medal, an\noration, a banner, and a denunciation of half the world, and who has\nat once the head and heart to set about it!\"\n\nPhilosewers expressing, in reply, his willingness to gratify the\ndreary sage, an appointment was made for the purpose.  And on the\nday fixed, I, the Dreary one, accompanied by Philosewers, went down\nNor'-West per railway, in search of temperate temperance.  It was a\nthunderous day; and the clouds were so immoderately watery, and so\nvery much disposed to sour all the beer in Hertfordshire, that they\nseemed to have taken the pledge.\n\nBut, the sun burst forth gaily in the afternoon, and gilded the old\ngables, and old mullioned windows, and old weathercock and old\nclock-face, of the quaint old house which is the dwelling of the man\nwe sought.  How shall I describe him?  As one of the most famous\npractical chemists of the age?  That designation will do as well as\nanother--better, perhaps, than most others.  And his name?  Friar\nBacon.\n\n\"Though, take notice, Philosewers,\" said I, behind my hand, \"that\nthe first Friar Bacon had not that handsome lady-wife beside him.\nWherein, O Philosewers, he was a chemist, wretched and forlorn,\ncompared with his successor.  Young Romeo bade the holy father\nLawrence hang up philosophy, unless philosophy could make a Juliet.\nChemistry would infallibly be hanged if its life were staked on\nmaking anything half so pleasant as this Juliet.\"  The gentle\nPhilosewers smiled assent.\n\nThe foregoing whisper from myself, the Dreary one, tickled the ear\nof Philosewers, as we walked on the trim garden terrace before\ndinner, among the early leaves and blossoms; two peacocks,\napparently in very tight new boots, occasionally crossing the gravel\nat a distance.  The sun, shining through the old house-windows, now\nand then flashed out some brilliant piece of colour from bright\nhangings within, or upon the old oak panelling; similarly, Friar\nBacon, as we paced to and fro, revealed little glimpses of his good\nwork.\n\n\"It is not much,\" said he.  \"It is no wonderful thing.  There used\nto be a great deal of drunkenness here, and I wanted to make it\nbetter if I could.  The people are very ignorant, and have been much\nneglected, and I wanted to make THAT better, if I could.  My utmost\nobject was, to help them to a little self-government and a little\nhomely pleasure.  I only show the way to better things, and advise\nthem.  I never act for them; I never interfere; above all, I never\npatronise.\"\n\nI had said to Philosewers as we came along Nor'-West that patronage\nwas one of the curses of England; I appeared to rise in the\nestimation of Philosewers when thus confirmed.\n\n\"And so,\" said Friar Bacon, \"I established my Allotment-club, and my\npig-clubs, and those little Concerts by the ladies of my own family,\nof which we have the last of the season this evening.  They are a\ngreat success, for the people here are amazingly fond of music.  But\nthere is the early dinner-bell, and I have no need to talk of my\nendeavours when you will soon see them in their working dress\".\n\nDinner done, behold the Friar, Philosewers, and myself the Dreary\none, walking, at six o'clock, across the fields, to the \"Club-\nhouse.\"\n\nAs we swung open the last field-gate and entered the Allotment-\ngrounds, many members were already on their way to the Club, which\nstands in the midst of the allotments.  Who could help thinking of\nthe wonderful contrast between these club-men and the club-men of\nSt. James's Street, or Pall Mall, in London!  Look at yonder\nprematurely old man, doubled up with work, and leaning on a rude\nstick more crooked than himself, slowly trudging to the club-house,\nin a shapeless hat like an Italian harlequin's, or an old brown-\npaper bag, leathern leggings, and dull green smock-frock, looking as\nthough duck-weed had accumulated on it--the result of its stagnant\nlife--or as if it were a vegetable production, originally meant to\nblow into something better, but stopped somehow.  Compare him with\nOld Cousin Feenix, ambling along St. James's Street, got up in the\nstyle of a couple of generations ago, and with a head of hair, a\ncomplexion, and a set of teeth, profoundly impossible to be believed\nin by the widest stretch of human credulity.  Can they both be men\nand brothers?  Verily they are.  And although Cousin Feenix has\nlived so fast that he will die at Baden-Baden, and although this\nclub-man in the frock has lived, ever since he came to man's estate,\non nine shillings a week, and is sure to die in the Union if he die\nin bed, yet he brought as much into the world as Cousin Feenix, and\nwill take as much out--more, for more of him is real.\n\nA pretty, simple building, the club-house, with a rustic colonnade\noutside, under which the members can sit on wet evenings, looking at\nthe patches of ground they cultivate for themselves; within, a well-\nventilated room, large and lofty, cheerful pavement of coloured\ntiles, a bar for serving out the beer, good supply of forms and\nchairs, and a brave big chimney-corner, where the fire burns\ncheerfully.  Adjoining this room, another:\n\n\"Built for a reading-room,\" said Friar Bacon; \"but not much used--\nyet.\"\n\nThe dreary sage, looking in through the window, perceiving a fixed\nreading-desk within, and inquiring its use:\n\n\"I have Service there,\" said Friar Bacon.  \"They never went anywhere\nto hear prayers, and of course it would be hopeless to help them to\nbe happier and better, if they had no religious feeling at all.\"\n\n\"The whole place is very pretty.\"  Thus the sage.\n\n\"I am glad you think so.  I built it for the holders of the\nAllotment-grounds, and gave it them:  only requiring them to manage\nit by a committee of their own appointing, and never to get drunk\nthere.  They never have got drunk there.\"\n\n\"Yet they have their beer freely?\"\n\n\"O yes.  As much as they choose to buy.  The club gets its beer\ndirect from the brewer, by the barrel.  So they get it good; at once\nmuch cheaper, and much better, than at the public-house.  The\nmembers take it in turns to be steward, and serve out the beer:  if\na man should decline to serve when his turn came, he would pay a\nfine of twopence.  The steward lasts, as long as the barrel lasts.\nWhen there is a new barrel, there is a new steward.\"\n\n\"What a noble fire is roaring up that chimney!\"\n\n\"Yes, a capital fire.  Every member pays a halfpenny a week.\"\n\n\"Every member must be the holder of an Allotment-garden?\"\n\n\"Yes; for which he pays five shillings a year.  The Allotments you\nsee about us, occupy some sixteen or eighteen acres, and each garden\nis as large as experience shows one man to be able to manage.  You\nsee how admirably they are tilled, and how much they get off them.\nThey are always working in them in their spare hours; and when a man\nwants a mug of beer, instead of going off to the village and the\npublic-house, he puts down his spade or his hoe, comes to the club-\nhouse and gets it, and goes back to his work.  When he has done\nwork, he likes to have his beer at the club, still, and to sit and\nlook at his little crops as they thrive.\"\n\n\"They seem to manage the club very well.\"\n\n\"Perfectly well.  Here are their own rules.  They made them.  I\nnever interfere with them, except to advise them when they ask me.\"\n\n\nRULES AND REGULATIONS\nMADE BY THE COMMITTEE\nFrom the 21st September, 1857\n\nOne half-penny per week to be paid to the club by each member\n\n1.--Each member to draw the beer in order, according to the number\nof his allotment; on failing, a forfeit of twopence to be paid to\nthe club.\n\n2.--The member that draws the beer to pay for the same, and bring\nhis ticket up receipted when the subscriptions are paid; on failing\nto do so, a penalty of sixpence to be forfeited and paid to the\nclub.\n\n3.--The subscriptions and forfeits to be paid at the club-room on\nthe last Saturday night of each month.\n\n4.--The subscriptions and forfeits to be cleared up every quarter;\nif not, a penalty of sixpence to be paid to the club.\n\n5.--The member that draws the beer to be at the club-room by six\no'clock every evening, and stay till ten; but in the event of no\nmember being there, he may leave at nine; on failing so to attend, a\npenalty of sixpence to be paid to the club.\n\n6.--Any member giving beer to a stranger in this club-room,\nexcepting to his wife or family, shall be liable to the penalty of\none shilling.\n\n7.--Any member lifting his hand to strike another in this club-room\nshall be liable to the penalty of sixpence.\n\n8.--Any member swearing in this club-room shall be liable to a\npenalty of twopence each time.\n\n9.--Any member selling beer shall be expelled from the club.\n\n10.--Any member wishing to give up his allotment, may apply to the\ncommittee, and they shall value the crop and the condition of the\nground.  The amount of the valuation shall be paid by the succeeding\ntenant, who shall be allowed to enter on any part of the allotment\nwhich is uncropped at the time of notice of the leaving tenant.\n\n11.--Any member not keeping his allotment-garden clear from seed-\nweeds, or otherwise injuring his neighbours, may be turned out of\nhis garden by the votes of two-thirds of the committee, one month's\nnotice being given to him.\n\n12.--Any member carelessly breaking a mug, is to pay the cost of\nreplacing the same.\n\n\nI was soliciting the attention of Philosewers to some old old\nbonnets hanging in the Allotment-gardens to frighten the birds, and\nthe fashion of which I should think would terrify a French bird to\ndeath at any distance, when Philosewers solicited my attention to\nthe scrapers at the club-house door.  The amount of the soil of\nEngland which every member brought there on his feet, was indeed\nsurprising; and even I, who am professedly a salad-eater, could have\ngrown a salad for my dinner, in the earth on any member's frock or\nhat.\n\n\"Now,\" said Friar Bacon, looking at his watch, \"for the Pig-clubs!\"\n\nThe dreary Sage entreated explanation.\n\n\"Why, a pig is so very valuable to a poor labouring man, and it is\nso very difficult for him at this time of the year to get money\nenough to buy one, that I lend him a pound for the purpose.  But, I\ndo it in this way.  I leave such of the club members as choose it\nand desire it, to form themselves into parties of five.  To every\nman in each company of five, I lend a pound, to buy a pig.  But,\neach man of the five becomes bound for every other man, as to the\nrepayment of his money.  Consequently, they look after one another,\nand pick out their partners with care; selecting men in whom they\nhave confidence.\"\n\n\"They repay the money, I suppose, when the pig is fattened, killed,\nand sold?\"\n\n\"Yes.  Then they repay the money.  And they do repay it.  I had one\nman, last year, who was a little tardy (he was in the habit of going\nto the public-house); but even he did pay.  It is an immense\nAdvantage to one of these poor fellows to have a pig.  The pig\nconsumes the refuse from the man's cottage and allotment-garden, and\nthe pig's refuse enriches the man's garden besides.  The pig is the\npoor man's friend.  Come into the club-house again.\"\n\nThe poor man's friend.  Yes.  I have often wondered who really was\nthe poor man's friend among a great number of competitors, and I now\nclearly perceive him to be the pig.  HE never makes any flourishes\nabout the poor man.  HE never gammons the poor man--except to his\nmanifest advantage in the article of bacon.  HE never comes down to\nthis house, or goes down to his constituents.  He openly declares to\nthe poor man, \"I want my sty because I am a Pig.  I desire to have\nas much to eat as you can by any means stuff me with, because I am a\nPig.\"  HE never gives the poor man a sovereign for bringing up a\nfamily.  HE never grunts the poor man's name in vain.  And when he\ndies in the odour of Porkity, he cuts up, a highly useful creature\nand a blessing to the poor man, from the ring in his snout to the\ncurl in his tail.  Which of the poor man's other friends can say as\nmuch?  Where is the M.P. who means Mere Pork?\n\nThe dreary Sage had glided into these reflections, when he found\nhimself sitting by the club-house fire, surrounded by green smock-\nfrocks and shapeless hats:  with Friar Bacon lively, busy, and\nexpert, at a little table near him.\n\n\"Now, then, come.  The first five!\" said Friar Bacon.  \"Where are\nyou?\"\n\n\"Order!\" cried a merry-faced little man, who had brought his young\ndaughter with him to see life, and who always modestly hid his face\nin his beer-mug after he had thus assisted the business.\n\n\"John Nightingale, William Thrush, Joseph Blackbird, Cecil Robin,\nand Thomas Linnet!\" cried Friar Bacon.\n\n\"Here, sir!\" and \"Here, sir!\"  And Linnet, Robin, Blackbird, Thrush,\nand Nightingale, stood confessed.\n\nWe, the undersigned, declare, in effect, by this written paper, that\neach of us is responsible for the repayment of this pig-money by\neach of the other.  \"Sure you understand, Nightingale?\"\n\n\"Ees, sur.\"\n\n\"Can you write your name, Nightingale?\"\n\n\"Na, sur.\"\n\nNightingale's eye upon his name, as Friar Bacon wrote it, was a\nsight to consider in after years.  Rather incredulous was\nNightingale, with a hand at the corner of his mouth, and his head on\none side, as to those drawings really meaning him.  Doubtful was\nNightingale whether any virtue had gone out of him in that committal\nto paper.  Meditative was Nightingale as to what would come of young\nNightingale's growing up to the acquisition of that art.  Suspended\nwas the interest of Nightingale, when his name was done--as if he\nthought the letters were only sown, to come up presently in some\nother form.  Prodigious, and wrong-handed was the cross made by\nNightingale on much encouragement--the strokes directed from him\ninstead of towards him; and most patient and sweet-humoured was the\nsmile of Nightingale as he stepped back into a general laugh.\n\n\"Order!\" cried the little man.  Immediately disappearing into his\nmug.\n\n\"Ralph Mangel, Roger Wurzel, Edward Vetches, Matthew Carrot, and\nCharles Taters!\" said Friar Bacon.\n\n\"All here, sir.\"\n\n\"You understand it, Mangel?\"\n\n\"Iss, sir, I unnerstaans it.\"\n\n\"Can you write your name, Mangel?\"\n\n\"Iss, sir.\"\n\nBreathless interest.  A dense background of smock-frocks accumulated\nbehind Mangel, and many eyes in it looked doubtfully at Friar Bacon,\nas who should say, \"Can he really though?\"  Mangel put down his hat,\nretired a little to get a good look at the paper, wetted his right\nhand thoroughly by drawing it slowly across his mouth, approached\nthe paper with great determination, flattened it, sat down at it,\nand got well to his work.  Circuitous and sea-serpent-like, were the\nmovements of the tongue of Mangel while he formed the letters;\nelevated were the eyebrows of Mangel and sidelong the eyes, as, with\nhis left whisker reposing on his left arm, they followed his\nperformance; many were the misgivings of Mangel, and slow was his\nretrospective meditation touching the junction of the letter p with\nh; something too active was the big forefinger of Mangel in its\npropensity to rub out without proved cause.  At last, long and deep\nwas the breath drawn by Mangel when he laid down the pen; long and\ndeep the wondering breath drawn by the background--as if they had\nwatched his walking across the rapids of Niagara, on stilts, and now\ncried, \"He has done it!\"\n\nBut, Mangel was an honest man, if ever honest man lived.  \"T'owt to\nbe a hell, sir,\" said he, contemplating his work, \"and I ha' made a\nt on 't.\"\n\nThe over-fraught bosoms of the background found relief in a roar of\nlaughter.\n\n\"OR-DER!\" cried the little man.  \"CHEER!\"  And after that second\nword, came forth from his mug no more.\n\nSeveral other clubs signed, and received their money.  Very few\ncould write their names; all who could not, pleaded that they could\nnot, more or less sorrowfully, and always with a shake of the head,\nand in a lower voice than their natural speaking voice.  Crosses\ncould be made standing; signatures must be sat down to.  There was\nno exception to this rule.  Meantime, the various club-members\nsmoked, drank their beer, and talked together quite unrestrained.\nThey all wore their hats, except when they went up to Friar Bacon's\ntable.  The merry-faced little man offered his beer, with a natural\ngood-fellowship, both to the Dreary one and Philosewers.  Both\npartook of it with thanks.\n\n\"Seven o'clock!\" said Friar Bacon.  \"And now we better get across to\nthe concert, men, for the music will be beginning.\"\n\nThe concert was in Friar Bacon's laboratory; a large building near\nat hand, in an open field.  The bettermost people of the village and\nneighbourhood were in a gallery on one side, and, in a gallery\nopposite the orchestra.  The whole space below was filled with the\nlabouring people and their families, to the number of five or six\nhundred.  We had been obliged to turn away two hundred to-night,\nFriar Bacon said, for want of room--and that, not counting the boys,\nof whom we had taken in only a few picked ones, by reason of the\nboys, as a class, being given to too fervent a custom of applauding\nwith their boot-heels.\n\nThe performers were the ladies of Friar Bacon's family, and two\ngentlemen; one of them, who presided, a Doctor of Music.  A piano\nwas the only instrument.  Among the vocal pieces, we had a negro\nmelody (rapturously encored), the Indian Drum, and the Village\nBlacksmith; neither did we want for fashionable Italian, having Ah!\nnon giunge, and Mi manca la voce.  Our success was splendid; our\ngood-humoured, unaffected, and modest bearing, a pattern.  As to the\naudience, they were far more polite and far more pleased than at the\nOpera; they were faultless.  Thus for barely an hour the concert\nlasted, with thousands of great bottles looking on from the walls,\ncontaining the results of Friar Bacon's Million and one experiments\nin agricultural chemistry; and containing too, no doubt, a variety\nof materials with which the Friar could have blown us all through\nthe roof at five minutes' notice.\n\nGod save the Queen being done, the good Friar stepped forward and\nsaid a few words, more particularly concerning two points; firstly,\nthat Saturday half-holiday, which it would be kind in farmers to\ngrant; secondly, the additional Allotment-grounds we were going to\nestablish, in consequence of the happy success of the system, but\nwhich we could not guarantee should entitle the holders to be\nmembers of the club, because the present members must consider and\nsettle that question for themselves:  a bargain between man and man\nbeing always a bargain, and we having made over the club to them as\nthe original Allotment-men.  This was loudly applauded, and so, with\ncontented and affectionate cheering, it was all over.\n\nAs Philosewers, and I the Dreary, posted back to London, looking up\nat the moon and discussing it as a world preparing for the\nhabitation of responsible creatures, we expatiated on the honour due\nto men in this world of ours who try to prepare it for a higher\ncourse, and to leave the race who live and die upon it better than\nthey found them.\n\n\n\nFIVE NEW POINTS OF CRIMINAL LAW\n\n\n\nThe existing Criminal Law has been found in trials for Murder, to be\nso exceedingly hasty, unfair, and oppressive--in a word, to be so\nvery objectionable to the amiable persons accused of that\nthoughtless act--that it is, we understand, the intention of the\nGovernment to bring in a Bill for its amendment.  We have been\nfavoured with an outline of its probable provisions.\n\nIt will be grounded on the profound principle that the real offender\nis the Murdered Person; but for whose obstinate persistency in being\nmurdered, the interesting fellow-creature to be tried could not have\ngot into trouble.\n\nIts leading enactments may be expected to resolve themselves under\nthe following heads:\n\n1.  There shall be no judge.  Strong representations have been made\nby highly popular culprits that the presence of this obtrusive\ncharacter is prejudicial to their best interests.  The Court will be\ncomposed of a political gentleman, sitting in a secluded room\ncommanding a view of St. James's Park, who has already more to do\nthan any human creature can, by any stretch of the human\nimagination, be supposed capable of doing.\n\n2.  The jury to consist of Five Thousand Five Hundred and Fifty-five\nVolunteers.\n\n3.  The jury to be strictly prohibited from seeing either the\naccused or the witnesses.  They are not to be sworn.  They are on no\naccount to hear the evidence.  They are to receive it, or such\nrepresentations of it, as may happen to fall in their way; and they\nwill constantly write letters about it to all the Papers.\n\n4.  Supposing the trial to be a trial for Murder by poisoning, and\nsupposing the hypothetical case, or the evidence, for the\nprosecution to charge the administration of two poisons, say Arsenic\nand Antimony; and supposing the taint of Arsenic in the body to be\npossible but not probable, and the presence of Antimony in the body,\nto be an absolute certainty; it will then become the duty of the\njury to confine their attention solely to the Arsenic, and entirely\nto dismiss the Antimony from their minds.\n\n5.  The symptoms preceding the death of the real offender (or\nMurdered Person) being described in evidence by medical\npractitioners who saw them, other medical practitioners who never\nsaw them shall be required to state whether they are inconsistent\nwith certain known diseases--but, THEY SHALL NEVER BE ASKED WHETHER\nTHEY ARE NOT EXACTLY CONSISTENT WITH THE ADMINISTRATION OF POISON.\nTo illustrate this enactment in the proposed Bill by a case:- A\nraging mad dog is seen to run into the house where Z lives alone,\nfoaming at the mouth.  Z and the mad dog are for some time left\ntogether in that house under proved circumstances, irresistibly\nleading to the conclusion that Z has been bitten by the dog.  Z is\nafterwards found lying on his bed in a state of hydrophobia, and\nwith the marks of the dog's teeth.  Now, the symptoms of that\ndisease being identical with those of another disease called\nTetanus, which might supervene on Z's running a rusty nail into a\ncertain part of his foot, medical practitioners who never saw Z,\nshall bear testimony to that abstract fact, and it shall then be\nincumbent on the Registrar-General to certify that Z died of a rusty\nnail.\n\nIt is hoped that these alterations in the present mode of procedure\nwill not only be quite satisfactory to the accused person (which is\nthe first great consideration), but will also tend, in a tolerable\ndegree, to the welfare and safety of society.  For it is not sought\nin this moderate and prudent measure to be wholly denied that it is\nan inconvenience to Society to be poisoned overmuch.\n\n\n\nLEIGH HUNT:  A REMONSTRANCE\n\n\n\n\"The sense of beauty and gentleness, of moral beauty and faithful\ngentleness, grew upon him as the clear evening closed in.  When he\nwent to visit his relative at Putney, he still carried with him his\nwork, and the books he more immediately wanted.  Although his bodily\npowers had been giving way, his most conspicuous qualities, his\nmemory for books, and his affection remained; and when his hair was\nwhite, when his ample chest had grown slender, when the very\nproportion of his height had visibly lessened, his step was still\nready, and his dark eyes brightened at every happy expression, and\nat every thought of kindness.  His death was simply exhaustion; he\nbroke off his work to lie down and repose.  So gentle was the final\napproach, that he scarcely recognised it till the very last, and\nthen it came without terrors.  His physical suffering had not been\nsevere; at the latest hour he said that his only uneasiness was\nfailing breath.  And that failing breath was used to express his\nsense of the inexhaustible kindness he had received from the family\nwho had been so unexpectedly made his nurses,--to draw from one of\nhis sons, by minute, eager, and searching questions, all that he\ncould learn about the latest vicissitudes and growing hopes of\nItaly,--to ask the friends and children around him for news of those\nwhom he loved,--and to send love and messages to the absent who\nloved him.\"\n\n\nThus, with a manly simplicity and filial affection, writes the\neldest son of Leigh Hunt in recording his father's death.  These are\nthe closing words of a new edition of The Autobiography of Leigh\nHunt, published by Messrs. Smith and Elder, of Cornhill, revised by\nthat son, and enriched with an introductory chapter of remarkable\nbeauty and tenderness.  The son's first presentation of his father\nto the reader, \"rather tall, straight as an arrow, looking slenderer\nthan he really was; his hair black and shining, and slightly\ninclined to wave; his head high, his forehead straight and white,\nhis eyes black and sparkling, his general complexion dark; in his\nwhole carriage and manner an extraordinary degree of life,\"\ncompletes the picture.  It is the picture of the flourishing and\nfading away of man that is born of a woman and hath but a short time\nto live.\n\nIn his presentation of his father's moral nature and intellectual\nqualities, Mr Hunt is no less faithful and no less touching.  Those\nwho knew Leigh Hunt, will see the bright face and hear the musical\nvoice again, when he is recalled to them in this passage:  \"Even at\nseasons of the greatest depression in his fortunes, he always\nattracted many visitors, but still not so much for any repute that\nattended him as for his personal qualities.  Few men were more\nattractive, in society, whether in a large company or over the\nfireside.  His manners were peculiarly animated; his conversation,\nvaried, ranging over a great field of subjects, was moved and called\nforth by the response of his companion, be that companion\nphilosopher or student, sage or boy, man or woman; and he was\nequally ready for the most lively topics or for the gravest\nreflections--his expression easily adapting itself to the tone of\nhis companion's mind.  With much freedom of manners, he combined a\nspontaneous courtesy that never failed, and a considerateness\nderived from a ceaseless kindness of heart that invariably\nfascinated even strangers.\"  Or in this:  \"His animation, his\nsympathy with what was gay and pleasurable; his avowed doctrine of\ncultivating cheerfulness, were manifest on the surface, and could be\nappreciated by those who knew him in society, most probably even\nexaggerated as salient traits, on which he himself insisted WITH A\nSORT OF GAY AND OSTENTATIOUS WILFULNESS.\"\n\nThe last words describe one of the most captivating peculiarities of\na most original and engaging man, better than any other words could.\nThe reader is besought to observe them, for a reason that shall\npresently be given.  Lastly:  \"The anxiety to recognise the right of\nothers, the tendency to 'refine', which was noted by an early school\ncompanion, and the propensity to elaborate every thought, made him,\nalong with the direct argument by which he sustained his own\nconviction, recognise and almost admit all that might be said on the\nopposite side\".  For these reasons, and for others suggested with\nequal felicity, and with equal fidelity, the son writes of the\nfather, \"It is most desirable that his qualities should be known as\nthey were; for such deficiencies as he had are the honest\nexplanation of his mistakes; while, as the reader may see from his\nwritings and his conduct, they are not, as the faults of which he\nwas accused would be, incompatible with the noblest faculties both\nof head and heart.  To know Leigh Hunt as he was, was to hold him in\nreverence and love.\"\n\nThese quotations are made here, with a special object.  It is not,\nthat the personal testimony of one who knew Leigh Hunt well, may be\nborne to their truthfulness.  It is not, that it may be recorded in\nthese pages, as in his son's introductory chapter, that his life was\nof the most amiable and domestic kind, that his wants were few, that\nhis way of life was frugal, that he was a man of small expenses, no\nostentations, a diligent labourer, and a secluded man of letters.\nIt is not, that the inconsiderate and forgetful may be reminded of\nhis wrongs and sufferings in the days of the Regency, and of the\nnational disgrace of his imprisonment.  It is not, that their\nforbearance may be entreated for his grave, in right of his graceful\nfancy or his political labours and endurances, though -\n\n\nNot only we, the latest seed of Time,\nNew men, that in the flying of a wheel\nCry down the past, not only we, that prate\nOf rights and wrongs, have loved the people well.\n\n\nIt is, that a duty may be done in the most direct way possible.  An\nact of plain, clear duty.\n\nFour or five years ago, the writer of these lines was much pained by\naccidentally encountering a printed statement, \"that Mr. Leigh Hunt\nwas the original of Harold Skimpole in Bleak House\".  The writer of\nthese lines, is the author of that book.  The statement came from\nAmerica.  It is no disrespect to that country, in which the writer\nhas, perhaps, as many friends and as true an interest as any man\nthat lives, good-humouredly to state the fact, that he has, now and\nthen, been the subject of paragraphs in Transatlantic newspapers,\nmore surprisingly destitute of all foundation in truth than the\nwildest delusions of the wildest lunatics.  For reasons born of this\nexperience, he let the thing go by.\n\nBut, since Mr. Leigh Hunt's death, the statement has been revived in\nEngland.  The delicacy and generosity evinced in its revival, are\nfor the rather late consideration of its revivers.  The fact is\nthis:\n\nExactly those graces and charms of manner which are remembered in\nthe words we have quoted, were remembered by the author of the work\nof fiction in question, when he drew the character in question.\nAbove all other things, that \"sort of gay and ostentatious\nwilfulness\" in the humouring of a subject, which had many a time\ndelighted him, and impressed him as being unspeakably whimsical and\nattractive, was the airy quality he wanted for the man he invented.\nPartly for this reason, and partly (he has since often grieved to\nthink) for the pleasure it afforded him to find that delightful\nmanner reproducing itself under his hand, he yielded to the\ntemptation of too often making the character SPEAK like his old\nfriend.  He no more thought, God forgive him! that the admired\noriginal would ever be charged with the imaginary vices of the\nfictitious creature, than he has himself ever thought of charging\nthe blood of Desdemona and Othello, on the innocent Academy model\nwho sat for Iago's leg in the picture.  Even as to the mere\noccasional manner, he meant to be so cautious and conscientious,\nthat he privately referred the proof sheets of the first number of\nthat book to two intimate literary friends of Leigh Hunt (both still\nliving), and altered the whole of that part of the text on their\ndiscovering too strong a resemblance to his \"way\".\n\nHe cannot see the son lay this wreath on the father's tomb, and\nleave him to the possibility of ever thinking that the present words\nmight have righted the father's memory and were left unwritten.  He\ncannot know that his own son may have to explain his father when\nfolly or malice can wound his heart no more, and leave this task\nundone.\n\n\n\nTHE TATTLESNIVEL BLEATER\n\n\n\nThe pen is taken in hand on the present occasion, by a private\nindividual (not wholly unaccustomed to literary composition), for\nthe exposure of a conspiracy of a most frightful nature; a\nconspiracy which, like the deadly Upas-tree of Java, on which the\nindividual produced a poem in his earlier youth (not wholly devoid\nof length), which was so flatteringly received (in circles not\nwholly unaccustomed to form critical opinions), that he was\nrecommended to publish it, and would certainly have carried out the\nsuggestion, but for private considerations (not wholly unconnected\nwith expense).\n\nThe individual who undertakes the exposure of the gigantic\nconspiracy now to be laid bare in all its hideous deformity, is an\ninhabitant of the town of Tattlesnivel--a lowly inhabitant, it may\nbe, but one who, as an Englishman and a man, will ne'er abase his\neye before the gaudy and the mocking throng.\n\nTattlesnivel stoops to demand no championship from her sons.  On an\noccasion in History, our bluff British monarch, our Eighth Royal\nHarry, almost went there.  And long ere the periodical in which this\nexposure will appear, had sprung into being, Tattlesnivel had\nunfurled that standard which yet waves upon her battlements.  The\nstandard alluded to, is THE TATTLESNIVEL BLEATER, containing the\nlatest intelligence, and state of markets, down to the hour of going\nto press, and presenting a favourable local medium for advertisers,\non a graduated scale of charges, considerably diminishing in\nproportion to the guaranteed number of insertions.\n\nIt were bootless to expatiate on the host of talent engaged in\nformidable phalanx to do fealty to the Bleater.  Suffice it to\nselect, for present purposes, one of the most gifted and (but for\nthe wide and deep ramifications of an un-English conspiracy) most\nrising, of the men who are bold Albion's pride.  It were needless,\nafter this preamble, to point the finger more directly at the LONDON\nCORRESPONDENT OF THE TATTLESNIVEL BLEATER.\n\nOn the weekly letters of that Correspondent, on the flexibility of\ntheir English, on the boldness of their grammar, on the originality\nof their quotations (never to be found as they are printed, in any\nbook existing), on the priority of their information, on their\nintimate acquaintance with the secret thoughts and unexecuted\nintentions of men, it would ill become the humble Tattlesnivellian\nwho traces these words, to dwell.  They are graven in the memory;\nthey are on the Bleater's file.  Let them be referred to.\n\nBut from the infamous, the dark, the subtle conspiracy which spreads\nits baleful roots throughout the land, and of which the Bleater's\nLondon Correspondent is the one sole subject, it is the purpose of\nthe lowly Tattlesnivellian who undertakes this revelation, to tear\nthe veil.  Nor will he shrink from his self-imposed labour,\nHerculean though it be.\n\nThe conspiracy begins in the very Palace of the Sovereign Lady of\nour Ocean Isle.  Leal and loyal as it is the proud vaunt of the\nBleater's readers, one and all, to be, the inhabitant who pens this\nexposure does not personally impeach, either her Majesty the queen,\nor the illustrious Prince Consort.  But, some silken-clad smoothers,\nsome purple parasites, some fawners in frippery, some greedy and\nbegartered ones in gorgeous garments, he does impeach--ay, and\nwrathfully!  Is it asked on what grounds?  They shall be stated.\n\nThe Bleater's London Correspondent, in the prosecution of his\nimportant inquiries, goes down to Windsor, sends in his card, has a\nconfidential interview with her Majesty and the illustrious Prince\nConsort.  For a time, the restraints of Royalty are thrown aside in\nthe cheerful conversation of the Bleater's London Correspondent, in\nhis fund of information, in his flow of anecdote, in the atmosphere\nof his genius; her Majesty brightens, the illustrious Prince Consort\nthaws, the cares of State and the conflicts of Party are forgotten,\nlunch is proposed.  Over that unassuming and domestic table, her\nMajesty communicates to the Bleater's London Correspondent that it\nis her intention to send his Royal Highness the Prince of Wales to\ninspect the top of the Great Pyramid--thinking it likely to improve\nhis acquaintance with the views of the people.  Her Majesty further\ncommunicates that she has made up her royal mind (and that the\nPrince Consort has made up his illustrious mind) to the bestowal of\nthe vacant Garter, let us say on Mr. Roebuck.  The younger Royal\nchildren having been introduced at the request of the Bleater's\nLondon Correspondent, and having been by him closely observed to\npresent the usual external indications of good health, the happy\nknot is severed, with a sigh the Royal bow is once more strung to\nits full tension, the Bleater's London Correspondent returns to\nLondon, writes his letter, and tells the Tattlesnivel Bleater what\nhe knows.  All Tattlesnivel reads it, and knows that he knows it.\nBut, DOES his Royal Highness the Prince of Wales ultimately go to\nthe top of the Great Pyramid?  DOES Mr. Roebuck ultimately get the\nGarter?  No.  Are the younger Royal children even ultimately found\nto be well?  On the contrary, they have--and on that very day had--\nthe measles.  Why is this?  BECAUSE THE CONSPIRATORS AGAINST THE\nBLEATER'S LONDON CORRESPONDENT HAVE STEPPED IN WITH THEIR DARK\nMACHINATIONS.  Because her Majesty and the Prince Consort are\nartfully induced to change their minds, from north to south, from\neast to west, immediately after it is known to the conspirators that\nthey have put themselves in communication with the Bleater's London\nCorrespondent.  It is now indignantly demanded, by whom are they so\ntampered with?  It is now indignantly demanded, who took the\nresponsibility of concealing the indisposition of those Royal\nchildren from their Royal and illustrious parents, and of bringing\nthem down from their beds, disguised, expressly to confound the\nLondon Correspondent of the Tattlesnivel Bleater?  Who are those\npersons, it is again asked?  Let not rank and favour protect them.\nLet the traitors be exhibited in the face of day!\n\nLord John Russell is in this conspiracy.  Tell us not that his\nLordship is a man of too much spirit and honour.  Denunciation is\nhurled against him.  The proof?  The proof is here.\n\nThe Time is panting for an answer to the question, Will Lord John\nRussell consent to take office under Lord Palmerston?  Good.  The\nLondon Correspondent of the Tattlesnivel Bleater is in the act of\nwriting his weekly letter, finds himself rather at a loss to settle\nthis question finally, leaves off, puts his hat on, goes down to the\nlobby of the House of Commons, sends in for Lord John Russell, and\nhas him out.  He draws his arm through his Lordship's, takes him\naside, and says, \"John, will you ever accept office under\nPalmerston?\"  His Lordship replies, \"I will not.\"  The Bleater's\nLondon Correspondent retorts, with the caution such a man is bound\nto use, \"John, think again; say nothing to me rashly; is there any\ntemper here?\"  His Lordship replies, calmly, \"None whatever.\"  After\ngiving him time for reflection, the Bleater's London Correspondent\nsays, \"Once more, John, let me put a question to you.  Will you ever\naccept office under Palmerston?\"  His Lordship answers (note the\nexact expressions), \"Nothing shall induce me, ever to accept a seat\nin a Cabinet of which Palmerston is the Chief.\"  They part, the\nLondon Correspondent of the Tattlesnivel Bleater finishes his\nletter, and--always being withheld by motives of delicacy, from\nplainly divulging his means of getting accurate information on every\nsubject, at first hand--puts in it, this passage:  \"Lord John\nRussell is spoken of, by blunderers, for Foreign Affairs; but I have\nthe best reasons for assuring your readers, that\" (giving prominence\nto the exact expressions, it will be observed) \"'NOTHING WILL EVER\nINDUCE HIM, TO ACCEPT A SEAT IN A CABINET OF WHICH PALMERSTON IS THE\nCHIEF.'  On this you may implicitly rely.\"  What happens?  On the\nvery day of the publication of that number of the Bleater--the\nmalignity of the conspirators being even manifested in the selection\nof the day--Lord John Russell takes the Foreign Office!  Comment\nwere superfluous.\n\nThe people of Tattlesnivel will be told, have been told, that Lord\nJohn Russell is a man of his word.  He may be, on some occasions;\nbut, when overshadowed by this dark and enormous growth of\nconspiracy, Tattlesnivel knows him to be otherwise.  \"I happen to be\ncertain, deriving my information from a source which cannot be\ndoubted to be authentic,\" wrote the London Correspondent of the\nBleater, within the last year, \"that Lord John Russell bitterly\nregrets having made that explicit speech of last Monday.\"  These are\nnot roundabout phrases; these are plain words.  What does Lord John\nRussell (apparently by accident), within eight-and-forty hours after\ntheir diffusion over the civilised globe?  Rises in his place in\nParliament, and unblushingly declares that if the occasion could\narise five hundred times, for his making that very speech, he would\nmake it five hundred times!  Is there no conspiracy here?  And is\nthis combination against one who would be always right if he were\nnot proved always wrong, to be endured in a country that boasts of\nits freedom and its fairness?\n\nBut, the Tattlesnivellian who now raises his voice against\nintolerable oppression, may be told that, after all, this is a\npolitical conspiracy.  He may be told, forsooth, that Mr. Disraeli's\nbeing in it, that Lord Derby's being in it, that Mr. Bright's being\nin it, that every Home, Foreign, and Colonial Secretary's being in\nit, that every ministry's and every opposition's being in it, are\nbut proofs that men will do in politics what they would do in\nnothing else.  Is this the plea?  If so, the rejoinder is, that the\nmighty conspiracy includes the whole circle of Artists of all kinds,\nand comprehends all degrees of men, down to the worst criminal and\nthe hangman who ends his career.  For, all these are intimately\nknown to the London Correspondent of the Tattlesnivel Bleater, and\nall these deceive him.\n\nSir, put it to the proof.  There is the Bleater on the file--\ndocumentary evidence.  Weeks, months, before the Exhibition of the\nRoyal Academy, the Bleater's London Correspondent knows the subjects\nof all the leading pictures, knows what the painters first meant to\ndo, knows what they afterwards substituted for what they first meant\nto do, knows what they ought to do and won't do, knows what they\nought not to do and will do, knows to a letter from whom they have\ncommissions, knows to a shilling how much they are to be paid.  Now,\nno sooner is each studio clear of the remarkable man to whom each\nstudio-occupant has revealed himself as he does not reveal himself\nto his nearest and dearest bosom friend, than conspiracy and fraud\nbegin.  Alfred the Great becomes the Fairy Queen; Moses viewing the\nPromised Land, turns out to be Moses going to the Fair; Portrait of\nHis Grace the Archbishop of Canterbury, is transformed, as if by\nirreverent enchantment of the dissenting interest, into A Favourite\nTerrier, or Cattle Grazing; and the most extraordinary work of art\nin the list described by the Bleater, is coolly sponged out\naltogether, and asserted never to have had existence at all, even in\nthe most shadow thoughts of its executant!  This is vile enough, but\nthis is not all.  Picture-buyers then come forth from their secret\npositions, and creep into their places in the assassin-multitude of\nconspirators.  Mr. Baring, after expressly telling the Bleater's\nLondon Correspondent that he had bought No. 39 for one thousand\nguineas, gives it up to somebody unknown for a couple of hundred\npounds; the Marquis of Lansdowne pretends to have no knowledge\nwhatever of the commissions to which the London Correspondent of the\nBleater swore him, but allows a Railway Contractor to cut him out\nfor half the money.  Similar examples might be multiplied.  Shame,\nshame, on these men!  Is this England?\n\nSir, look again at Literature.  The Bleater's London Correspondent\nis not merely acquainted with all the eminent writers, but is in\npossession of the secrets of their souls.  He is versed in their\nhidden meanings and references, sees their manuscripts before\npublication, and knows the subjects and titles of their books when\nthey are not begun.  How dare those writers turn upon the eminent\nman and depart from every intention they have confided to him?  How\ndo they justify themselves in entirely altering their manuscripts,\nchanging their titles, and abandoning their subjects?  Will they\ndeny, in the face of Tattlesnivel, that they do so?  If they have\nsuch hardihood, let the file of the Bleater strike them dumb.  By\ntheir fruits they shall be known.  Let their works be compared with\nthe anticipatory letters of the Bleater's London Correspondent, and\ntheir falsehood and deceit will become manifest as the sun; it will\nbe seen that they do nothing which they stand pledged to the\nBleater's London Correspondent to do; it will be seen that they are\namong the blackest parties in this black and base conspiracy.  This\nwill become apparent, sir, not only as to their public proceedings\nbut as to their private affairs.  The outraged Tattlesnivellian who\nnow drags this infamous combination into the face of day, charges\nthose literary persons with making away with their property,\nimposing on the Income Tax Commissioners, keeping false books, and\nentering into sham contracts.  He accuses them on the unimpeachable\nfaith of the London Correspondent of the Tattlesnivel Bleater.  With\nwhose evidence they will find it impossible to reconcile their own\naccount of any transaction of their lives.\n\nThe national character is degenerating under the influence of the\nramifications of this tremendous conspiracy.  Forgery is committed,\nconstantly.  A person of note--any sort of person of note--dies.\nThe Bleater's London Correspondent knows what his circumstances are,\nwhat his savings are (if any), who his creditors are, all about his\nchildren and relations, and (in general, before his body is cold)\ndescribes his will.  Is that will ever proved?  Never!  Some other\nwill is substituted; the real instrument, destroyed.  And this (as\nhas been before observed), is England.\n\nWho are the workmen and artificers, enrolled upon the books of this\ntreacherous league?  From what funds are they paid, and with what\nceremonies are they sworn to secrecy?  Are there none such?  Observe\nwhat follows.  A little time ago the Bleater's London Correspondent\nhad this passage:  \"Boddleboy is pianoforte playing at St.\nJanuarius's Gallery, with pretty tolerable success!  He clears three\nhundred pounds per night.  Not bad this!!\"  The builder of St.\nJanuarius's Gallery (plunged to the throat in the conspiracy) met\nwith this piece of news, and observed, with characteristic\ncoarseness, \"that the Bleater's London Correspondent was a Blind\nAss\".  Being pressed by a man of spirit to give his reasons for this\nextraordinary statement, he declared that the Gallery, crammed to\nsuffocation, would not hold two hundred pounds, and that its\nexpenses were, probably, at least half what it did hold.  The man of\nspirit (himself a Tattlesnivellian) had the Gallery measured within\na week from that hour, and it would not hold two hundred pounds!\nNow, can the poorest capacity doubt that it had been altered in the\nmeantime?\n\nAnd so the conspiracy extends, through every grade of society, down\nto the condemned criminal in prison, the hangman, and the Ordinary.\nEvery famous murderer within the last ten years has desecrated his\nlast moments by falsifying his confidences imparted specially to the\nLondon Correspondent of the Tattlesnivel Bleater; on every such\noccasion, Mr. Calcraft has followed the degrading example; and the\nreverend Ordinary, forgetful of his cloth, and mindful only (it\nwould seem, alas!) of the conspiracy, has committed himself to some\naccount or other of the criminal's demeanour and conversation, which\nhas been diametrically opposed to the exclusive information of the\nLondon Correspondent of the Bleater.  And this (as has been before\nobserved) is Merry England!\n\nA man of true genius, however, is not easily defeated.  The\nBleater's London Correspondent, probably beginning to suspect the\nexistence of a plot against him, has recently fallen on a new style,\nwhich, as being very difficult to countermine, may necessitate the\norganisation of a new conspiracy.  One of his masterly letters,\nlately, disclosed the adoption of this style--which was remarked\nwith profound sensation throughout Tattlesnivel--in the following\npassage:  \"Mentioning literary small talk, I may tell you that some\nnew and extraordinary rumours are afloat concerning the\nconversations I have previously mentioned, alleged to have taken\nplace in the first floor front (situated over the street door), of\nMr. X. Ameter (the poet so well known to your readers), in which, X.\nAmeter's great uncle, his second son, his butcher, and a corpulent\ngentleman with one eye universally respected at Kensington, are said\nnot to have been on the most friendly footing; I forbear, however,\nto pursue the subject further, this week, my informant not being\nable to supply me with exact particulars.\"\n\nBut, enough, sir.  The inhabitant of Tattlesnivel who has taken pen\nin hand to expose this odious association of unprincipled men\nagainst a shining (local) character, turns from it with disgust and\ncontempt.  Let him in few words strip the remaining flimsy covering\nfrom the nude object of the conspirators, and his loathsome task is\nended.\n\nSir, that object, he contends, is evidently twofold.  First, to\nexhibit the London Correspondent of the Tattlesnivel Bleater in the\nlight of a mischievous Blockhead who, by hiring himself out to tell\nwhat he cannot possibly know, is as great a public nuisance as a\nBlockhead in a corner can be.  Second, to suggest to the men of\nTattlesnivel that it does not improve their town to have so much Dry\nRubbish shot there.\n\nNow, sir, on both these points Tattlesnivel demands in accents of\nThunder, Where is the Attorney General?  Why doesn't the Times take\nit up?  (Is the latter in the conspiracy?  It never adopts his\nviews, or quotes him, and incessantly contradicts him.)\nTattlesnivel, sir, remembering that our forefathers contended with\nthe Norman at Hastings, and bled at a variety of other places that\nwill readily occur to you, demands that its birthright shall not be\nbartered away for a mess of pottage.  Have a care, sir, have a care!\nOr Tattlesnivel (its idle Rifles piled in its scouted streets) may\nbe seen ere long, advancing with its Bleater to the foot of the\nThrone, and demanding redress for this conspiracy, from the orbed\nand sceptred hands of Majesty itself!\n\n\n\nTHE YOUNG MAN FROM THE COUNTRY\n\n\n\nA song of the hour, now in course of being sung and whistled in\nevery street, the other day reminded the writer of these words--as\nhe chanced to pass a fag-end of the song for the twentieth time in a\nshort London walk--that twenty years ago, a little book on the\nUnited States, entitled American Notes, was published by \"a Young\nMan from the Country\", who had just seen and left it.\n\nThis Young Man from the Country fell into a deal of trouble, by\nreason of having taken the liberty to believe that he perceived in\nAmerica downward popular tendencies for which his young enthusiasm\nhad been anything but prepared.  It was in vain for the Young Man to\noffer in extenuation of his belief that no stranger could have set\nfoot on those shores with a feeling of livelier interest in the\ncountry, and stronger faith in it, than he.  Those were the days\nwhen the Tories had made their Ashburton Treaty, and when Whigs and\nRadicals must have no theory disturbed.  All three parties waylaid\nand mauled the Young Man from the Country, and showed that he knew\nnothing about the country.\n\nAs the Young Man from the Country had observed in the Preface to his\nlittle book, that he \"could bide his time\", he took all this in\nsilent part for eight years.  Publishing then, a cheap edition of\nhis book, he made no stronger protest than the following:\n\n\n\"My readers have opportunities of judging for themselves whether the\ninfluences and tendencies which I distrusted in America, have any\nexistence but in my imagination.  They can examine for themselves\nwhether there has been anything in the public career of that country\nduring these past eight years, or whether there is anything in its\npresent position, at home or abroad, which suggests that those\ninfluences and tendencies really do exist.  As they find the fact,\nthey will judge me.  If they discern any evidences of wrong-going,\nin any direction that I have indicated, they will acknowledge that I\nhad reason in what I wrote.  If they discern no such thing, they\nwill consider me altogether mistaken.  I have nothing to defend, or\nto explain away.  The truth is the truth; and neither childish\nabsurdities, nor unscrupulous contradictions, can make it otherwise.\nThe earth would still move round the sun, though the whole Catholic\nChurch said No.\"\n\n\nTwelve more years having since passed away, it may now, at last, be\nsimply just towards the Young Man from the Country, to compare what\nhe originally wrote, with recent events and their plain motive\npowers.  Treating of the House of Representatives at Washington, he\nwrote thus:\n\n\n\"Did I recognise in this assembly, a body of men, who, applying\nthemselves in a new world to correct some of the falsehoods and\nvices of the old, purified the avenues to Public Life, paved the\ndirty ways to Place and Power, debated and made laws for the Common\nGood, and had no party but their Country?\n\n\"I saw in them, the wheels that move the meanest perversion of\nvirtuous Political Machinery that the worst tools ever wrought.\nDespicable trickery at elections; under-handed tamperings with\npublic officers; cowardly attacks upon opponents, with scurrilous\nnewspapers for shields, and hired pens for daggers; shameful\ntrucklings to mercenary knaves, whose claim to be considered, is,\nthat every day and week they sow new crops of ruin with their venal\ntypes, which are the dragon's teeth of yore, in everything but\nsharpness; aidings and abettings of every bad inclination in the\npopular mind, and artful suppressions of all its good influences:\nsuch things as these, and in a word, Dishonest Faction in its most\ndepraved and most unblushing form, stared out from every corner of\nthe crowded hall.\n\n\"Did I see among them, the intelligence and refinement:  the true,\nhonest, patriotic heart of America?  Here and there, were drops of\nits blood and life, but they scarcely coloured the stream of\ndesperate adventurers which sets that way for profit and for pay.\nIt is the game of these men, and of their profligate organs, to make\nthe strife of politics so fierce and brutal, and so destructive of\nall self-respect in worthy men, that sensitive and delicate-minded\npersons shall be kept aloof, and they, and such as they, be left to\nbattle out their selfish views unchecked.  And thus this lowest of\nall scrambling fights goes on, and they who in other countries\nwould, from their intelligence and station, most aspire to make the\nlaws, do here recoil the farthest from that degradation.\n\n\"That there are, among the representatives of the people in both\nHouses, and among all parties, some men of high character and great\nabilities, I need not say.  The foremost among those politicians who\nare known in Europe, have been already described, and I see no\nreason to depart from the rule I have laid down for my guidance, of\nabstaining from all mention of individuals.  It will be sufficient\nto add, that to the most favourable accounts that have been written\nof them, I fully and most heartily subscribe; and that personal\nintercourse and free communication have bred within me, not the\nresult predicted in the very doubtful proverb, but increased\nadmiration and respect.\"\n\nTowards the end of his book, the Young Man from the Country thus\nexpressed himself concerning its people:\n\n\n\"They are, by nature, frank, brave, cordial, hospitable, and\naffectionate.  Cultivation and refinement seem but to enhance their\nwarmth of heart and ardent enthusiasm; and it is the possession of\nthese latter qualities in a most remarkable degree, which renders an\neducated American one of the most endearing and most generous of\nfriends.  I never was so won upon, as by this class; never yielded\nup my full confidence and esteem so readily and pleasurably, as to\nthem; never can make again, in half a year, so many friends for whom\nI seem to entertain the regard of half a life.\n\n\"These qualities are natural, I implicitly believe, to the whole\npeople.  That they are, however, sadly sapped and blighted in their\ngrowth among the mass; and that there are influences at work which\nendanger them still more, and give but little present promise of\ntheir healthy restoration; is a truth that ought to be told.\n\n\"It is an essential part of every national character to pique itself\nmightily upon its faults, and to deduce tokens of its virtue or its\nwisdom from their very exaggeration.  One great blemish in the\npopular mind of America, and the prolific parent of an innumerable\nbrood of evils, is Universal Distrust.  Yet the American citizen\nplumes himself upon this spirit, even when he is sufficiently\ndispassionate to perceive the ruin it works; and will often adduce\nit, in spite of his own reason, as an instance of the great sagacity\nand acuteness of the people, and their superior shrewdness and\nindependence.\n\n\"'You carry,' says the stranger, 'this jealousy and distrust into\nevery transaction of public life.  By repelling worthy men from your\nlegislative assemblies, it has bred up a class of candidates for the\nsuffrage, who, in their every act, disgrace your Institutions and\nyour people's choice.  It has rendered you so fickle, and so given\nto change, that your inconstancy has passed into a proverb; for you\nno sooner set up an idol firmly, than you are sure to pull it down\nand dash it into fragments:  and this, because directly you reward a\nbenefactor, or a public-servant, you distrust him, merely because he\nIS rewarded; and immediately apply yourselves to find out, either\nthat you have been too bountiful in your acknowledgments, or he\nremiss in his deserts.  Any man who attains a high place among you,\nfrom the President downwards, may date his downfall from that\nmoment; for any printed lie that any notorious villain pens,\nalthough it militate directly against the character and conduct of a\nlife, appeals at once to your distrust, and is believed.  You will\nstrain at a gnat in the way of trustfulness and confidence, however\nfairly won and well deserved; but you will swallow a whole caravan\nof camels, if they be laden with unworthy doubts and mean\nsuspicions.  Is this well, think you, or likely to elevate the\ncharacter of the governors or the governed, among you?'\n\n\"The answer is invariably the same:  'There's freedom of opinion\nhere, you know.  Every man thinks for himself, and we are not to be\neasily overreached.  That's how our people come to be suspicious.'\n\n\"Another prominent feature is the love of 'smart' dealing:  which\ngilds over many a swindle and gross breach of trust; many a\ndefalcation, public and private; and enables many a knave to hold\nhis head up with the best, who well deserves a halter:  though it\nhas not been without its retributive operation, for this smartness\nhas done more in a few years to impair the public credit, and to\ncripple the public resources, than dull honesty, however rash, could\nhave effected in a century.  The merits of a broken speculation, or\na bankruptcy, or of a successful scoundrel, are not gauged by its or\nhis observance of the golden rule, 'Do as you would be done by', but\nare considered with reference to their smartness.  I recollect, on\nboth occasions of our passing that ill-fated Cairo on the\nMississippi, remarking on the bad effects such gross deceits must\nhave when they exploded, in generating a want of confidence abroad,\nand discouraging foreign investment:  but I was given to understand\nthat this was a very smart scheme by which a deal of money had been\nmade:  and that its smartest feature was, that they forgot these\nthings abroad, in a very short time, and speculated again, as freely\nas ever.  The following dialogue I have held a hundred times:  'Is\nit not a very disgraceful circumstance that such a man as So-and-so\nshould be acquiring a large property by the most infamous and odious\nmeans, and notwithstanding all the crimes of which he has been\nguilty, should be tolerated and abetted by your citizens?  He is a\npublic nuisance, is he not?'  'Yes, sir.'  'A convicted liar?'\n'Yes, sir.'  'He has been kicked, and cuffed, and caned?'  'Yes,\nsir.'  'And he is utterly dishonourable, debased, and profligate?'\n'Yes, sir.'  'In the name of wonder, then, what is his merit?'\n'Well, sir, he is a smart man.'\n\n\"But the foul growth of America has a more tangled root than this;\nand it strikes its fibres, deep in its licentious Press.\n\n\"Schools may he erected, East, West, North, and South; pupils be\ntaught, and masters reared, by scores upon scores of thousands;\ncolleges may thrive, churches may be crammed, temperance may be\ndiffused, and advancing knowledge in all other forms walk through\nthe land with giant strides; but while the newspaper press of\nAmerica is in, or near, its present abject state, high moral\nimprovement in that country is hopeless.  Year by year, it must and\nwill go back; year by year, the tone of public opinion must sink\nlower down; year by year, the Congress and the Senate must become of\nless account before all decent men; and year by year, the memory of\nthe Great Fathers of the Revolution must be outraged more and more,\nin the bad life of their degenerate child.\n\n\"Among the herd of journals which are published in the States, there\nare some, the reader scarcely need be told, of character and credit.\nFrom personal intercourse with accomplished gentlemen connected with\npublications of this class, I have derived both pleasure and profit.\nBut the name of these is Few, and of the others Legion; and the\ninfluence of the good, is powerless to counteract the moral poison\nof the bad.\n\n\"Among the gentry of America; among the well-informed and moderate;\nin the learned professions; at the bar and on the bench; there is,\nas there can be, but one opinion, in reference to the vicious\ncharacter of these infamous journals.  It is sometimes contended--I\nwill not say strangely, for it is natural to seek excuses for such a\ndisgrace--that their influence is not so great as a visitor would\nsuppose.  I must be pardoned for saying that there is no warrant for\nthis plea, and that every fact and circumstance tends directly to\nthe opposite conclusion.\n\n\"When any man, of any grade of desert in intellect or character, can\nclimb to any public distinction, no matter what, in America, without\nfirst grovelling down upon the earth, and bending the knee before\nthis monster of depravity; when any private excellence is safe from\nits attacks; when any social confidence is left unbroken by it; or\nany tie of social decency and honour is held in the least regard;\nwhen any man in that Free Country has freedom of opinion, and\npresumes to think for himself, and speak for himself, without humble\nreference to a censorship which, for its rampant ignorance and base\ndishonesty, he utterly loaths and despises in his heart; when those\nwho most acutely feel its infamy and the reproach it casts upon the\nnation, and who most denounce it to each other, dare to set their\nheels upon, and crush it openly, in the sight of all men:  then, I\nwill believe that its influence is lessening, and men are returning\nto their manly senses.  But while that Press has its evil eye in\nevery house, and its black hand in every appointment in the state,\nfrom a president to a postman; while, with ribald slander for its\nonly stock in trade, it is the standard literature of an enormous\nclass, who must find their reading in a newspaper, or they will not\nread at all; so long must its odium be upon the country's head, and\nso long must the evil it works, be plainly visible in the Republic.\"\n\n\nThe foregoing was written in the year eighteen hundred and forty-\ntwo.  It rests with the reader to decide whether it has received any\nconfirmation, or assumed any colour of truth, in or about the year\neighteen hundred and sixty-two.\n\n\n\nAN ENLIGHTENED CLERGYMAN\n\n\n\nAt various places in Suffolk (as elsewhere) penny readings take\nplace \"for the instruction and amusement of the lower classes\".\nThere is a little town in Suffolk called Eye, where the subject of\none of these readings was a tale (by Mr. Wilkie Collins) from the\nlast Christmas Number of this Journal, entitled \"Picking up Waifs at\nSea\".  It appears that the Eye gentility was shocked by the\nintroduction of this rude piece among the taste and musical glasses\nof that important town, on which the eyes of Europe are notoriously\nalways fixed.  In particular, the feelings of the vicar's family\nwere outraged; and a Local Organ (say, the Tattlesnivel Bleater)\nconsequently doomed the said piece to everlasting oblivion, as being\nof an \"injurious tendency!\"\n\nWhen this fearful fact came to the knowledge of the unhappy writer\nof the doomed tale in question, he covered his face with his robe,\nprevious to dying decently under the sharp steel of the\necclesiastical gentility of the terrible town of Eye.  But the\ndiscovery that he was not alone in his gloomy glory, revived him,\nand he still lives.\n\nFor, at Stowmarket, in the aforesaid county of Suffolk, at another\nof those penny readings, it was announced that a certain juvenile\nsketch, culled from a volume of sketches (by Boz) and entitled \"The\nBloomsbury Christening\", would be read.  Hereupon, the clergyman of\nthat place took heart and pen, and addressed the following terrific\nepistle to a gentleman bearing the very appropriate name of Gudgeon:\n\n\nSTOWMARKET VICARAGE, Feb. 25, 1861.\n\nSIR,--My attention has been directed to a piece called \"The\nBloomsbury Christening\" which you propose to read this evening.\nWithout presuming to claim any interference in the arrangement of\nthe readings, I would suggest to you whether you have on this\noccasion sufficiently considered the character of the composition\nyou have selected.  I quite appreciate the laudable motive of the\npromoters of the readings to raise the moral tone amongst the\nworking class of the town and to direct this taste in a familiar and\npleasant manner.  \"The Bloomsbury Christening\" cannot possibly do\nthis.  It trifles with a sacred ordinance, and the language and\nstyle, instead of improving the taste, has a direct tendency to\nlower it.\n\nI appeal to your right feeling whether it is desirable to give\npublicity to that which must shock several of your audience, and\ncreate a smile amongst others, to be indulged in only by violating\nthe conscientious scruples of their neighbours.\n\nThe ordinance which is here exposed to ridicule is one which is much\nmisunderstood and neglected amongst many families belonging to the\nChurch of England, and the mode in which it is treated in this\nchapter cannot fail to appear as giving a sanction to, or at least\nexcusing, such neglect.\n\nAlthough you are pledged to the public to give this subject, yet I\ncannot but believe that they would fully justify your substitution\nof it for another did they know the circumstances.  An abridgment\nwould only lessen the evil in a degree, as it is not only the style\nof the writing but the subject itself which is objectionable.\n\nExcuse me for troubling you, but I felt that, in common with\nyourself, I have a grave responsibility in the matter, and I am most\ntruly yours,\n\nT. S. COLES.\nTo Mr. J. Gudgeon.\n\n\nIt is really necessary to explain that this is not a bad joke.  It\nis simply a bad fact.\n\n\n\nRATHER A STRONG DOSE\n\n\n\n\"Doctor John Campbell, the minister of the Tabernacle Chapel,\nFinsbury, and editor of the British Banner, etc., with that massive\nvigour which distinguishes his style,\" did, we are informed by Mr.\nHowitt, \"deliver a verdict in the Banner, for November, 1852,\" of\ngreat importance and favour to the Table-rapping cause.  We are not\ninformed whether the Public, sitting in judgment on the question,\nreserved any point in this great verdict for subsequent\nconsideration; but the verdict would seem to have been regarded by a\nperverse generation as not quite final, inasmuch as Mr. Howitt finds\nit necessary to re-open the case, a round ten years afterwards, in\nnine hundred and sixty-two stiff octavo pages, published by Messrs.\nLongman and Company.\n\nMr. Howitt is in such a bristling temper on the Supernatural\nsubject, that we will not take the great liberty of arguing any\npoint with him.  But--with the view of assisting him to make\nconverts--we will inform our readers, on his conclusive authority,\nwhat they are required to believe; premising what may rather\nastonish them in connexion with their views of a certain historical\ntrifle, called The Reformation, that their present state of unbelief\nis all the fault of Protestantism, and that \"it is high time,\ntherefore, to protest against Protestantism\".\n\nThey will please to believe, by way of an easy beginning, all the\nstories of good and evil demons, ghosts, prophecies, communication\nwith spirits, and practice of magic, that ever obtained, or are said\nto have ever obtained, in the North, in the South, in the East, in\nthe West, from the earliest and darkest ages, as to which we have\nany hazy intelligence, real or supposititious, down to the yet\nunfinished displacement of the red men in North America.  They will\nplease to believe that nothing in this wise was changed by the\nfulfilment of our Saviour's mission upon earth; and further, that\nwhat Saint Paul did, can be done again, and has been done again.  As\nthis is not much to begin with, they will throw in at this point\nrejection of Faraday and Brewster, and \"poor Paley\", and implicit\nacceptance of those shining lights, the Reverend Charles Beecher,\nand the Reverend Henry Ward Beecher (\"one of the most vigorous and\neloquent preachers of America\"), and the Reverend Adin Ballou.\n\nHaving thus cleared the way for a healthy exercise of faith, our\nadvancing readers will next proceed especially to believe in the old\nstory of the Drummer of Tedworth, in the inspiration of George Fox,\nin \"the spiritualism, prophecies, and provision\" of Huntington the\ncoal-porter (him who prayed for the leather breeches which\nmiraculously fitted him), and even in the Cock Lane Ghost.  They\nwill please wind up, before fetching their breath, with believing\nthat there is a close analogy between rejection of any such plain\nand proved facts as those contained in the whole foregoing\ncatalogue, and the opposition encountered by the inventors of\nrailways, lighting by gas, microscopes and telescopes, and\nvaccination.  This stinging consideration they will always carry\nrankling in their remorseful hearts as they advance.\n\nAs touching the Cock Lane Ghost, our conscience-stricken readers\nwill please particularly to reproach themselves for having ever\nsupposed that important spiritual manifestation to have been a gross\nimposture which was thoroughly detected.  They will please to\nbelieve that Dr. Johnson believed in it, and that, in Mr. Howitt's\nwords, he \"appears to have had excellent reasons for his belief\".\nWith a view to this end, the faithful will be so good as to\nobliterate from their Boswells the following passage:  \"Many of my\nreaders, I am convinced, are to this hour under an impression that\nJohnson was thus foolishly deceived.  It will therefore surprise\nthem a good deal when they are informed upon undoubted authority\nthat Johnson was one of those by whom the imposture was detected.\nThe story had become so popular, that he thought it should be\ninvestigated, and in this research he was assisted by the Rev. Dr.\nDouglas, now Bishop of Salisbury, the great detector of impostures\"-\n-and therefore tremendously obnoxious to Mr. Howitt--\"who informs me\nthat after the gentlemen who went and examined into the evidence\nwere satisfied of its falsity, Johnson wrote in their presence an\naccount of it, which was published in the newspapers and Gentleman's\nMagazine, and undeceived the world\".  But as there will still remain\nanother highly inconvenient passage in the Boswells of the true\nbelievers, they must likewise be at the trouble of cancelling the\nfollowing also, referring to a later time:  \"He (Johnson) expressed\ngreat indignation at the imposture of the Cock Lane Ghost, and\nrelated with much satisfaction how he had assisted in detecting the\ncheat, and had published an account of it in the newspapers\".\n\nThey will next believe (if they be, in the words of Captain Bobadil,\n\"so generously minded\") in the transatlantic trance-speakers \"who\nprofessed to speak from direct inspiration\", Mrs. Cora Hatch, Mrs.\nHenderson, and Miss Emma Hardinge; and they will believe in those\neminent ladies having \"spoken on Sundays to five hundred thousand\nhearers\"--small audiences, by the way, compared with the intelligent\nconcourse recently assembled in the city of New York, to do honour\nto the Nuptials of General the Honourable T. Barnum Thumb.  At about\nthis stage of their spiritual education they may take the\nopportunity of believing in \"letters from a distinguished gentleman\nof New York, in which the frequent appearance of the gentleman's\ndeceased wife and of Dr. Franklin, to him and other well-known\nfriends, are unquestionably unequalled in the annals of the\nmarvellous\".  Why these modest appearances should seem at all out of\nthe common way to Mr. Howitt (who would be in a state of flaming\nindignation if we thought them so), we could not imagine, until we\nfound on reading further, \"it is solemnly stated that the witnesses\nhave not only seen but touched these spirits, and handled the\nclothes and hair of Franklin\".  Without presuming to go Mr. Howitt's\nlength of considering this by any means a marvellous experience, we\nyet venture to confess that it has awakened in our mind many\ninteresting speculations touching the present whereabout in space,\nof the spirits of Mr. Howitt's own departed boots and hats.\n\nThe next articles of belief are Belief in the moderate figures of\n\"thirty thousand media in the United States in 1853\"; and in two\nmillion five hundred thousand spiritualists in the same country of\ncomposed minds, in 1855, \"professing to have arrived at their\nconvictions of spiritual communication from personal experience\";\nand in \"an average rate of increase of three hundred thousand per\nannum\", still in the same country of calm philosophers.  Belief in\nspiritual knockings, in all manner of American places, and, among\nothers, in the house of \"a Doctor Phelps at Stratford, Connecticut,\na man of the highest character for intelligence\", says Mr. Howitt,\nand to whom we willingly concede the possession of far higher\nintelligence than was displayed by his spiritual knocker, in\n\"frequently cutting to pieces the clothes of one of his boys\", and\nin breaking \"seventy-one panes of glass\"--unless, indeed, the\nknocker, when in the body, was connected with the tailoring and\nglazing interests.  Belief in immaterial performers playing (in the\ndark though:  they are obstinate about its being in the dark) on\nmaterial instruments of wood, catgut, brass, tin, and parchment.\nYour belief is further requested in \"the Kentucky Jerks\".  The\nspiritual achievements thus euphoniously denominated \"appear\", says\nMr. Howitt, \"to have been of a very disorderly kind\".  It appears\nthat a certain Mr. Doke, a Presbyterian clergyman, \"was first seized\nby the jerks\", and the jerks laid hold of Mr. Doke in that\nunclerical way and with that scant respect for his cloth, that they\n\"twitched him about in a most extraordinary manner, often when in\nthe pulpit, and caused him to shout aloud, and run out of the pulpit\ninto the woods, screaming like a madman.  When the fit was over, he\nreturned calmly to his pulpit and finished the service.\"  The\ncongregation having waited, we presume, and edified themselves with\nthe distant bellowings of Doke in the woods, until he came back\nagain, a little warm and hoarse, but otherwise in fine condition.\n\"People were often seized at hotels, and at table would, on lifting\na glass to drink, jerk the liquor to the ceiling; ladies would at\nthe breakfast-table suddenly be compelled to throw aloft their\ncoffee, and frequently break the cup and saucer.\"  A certain\nventuresome clergyman vowed that he would preach down the Jerks,\n\"but he was seized in the midst of his attempt, and made so\nridiculous that he withdrew himself from further notice\"--an example\nmuch to be commended.  That same favoured land of America has been\nparticularly favoured in the development of \"innumerable mediums\",\nand Mr. Howitt orders you to believe in Daniel Dunglas Home, Andrew\nDavis Jackson, and Thomas L. Harris, as \"the three most remarkable,\nor most familiar, on this side of the Atlantic\".  Concerning Mr.\nHome, the articles of belief (besides removal of furniture) are,\nThat through him raps have been given and communications made from\ndeceased friends.  That \"his hand has been seized by spirit\ninfluence, and rapid communications written out, of a surprising\ncharacter to those to whom they were addressed\".  That at his\nbidding, \"spirit hands have appeared which have been seen, felt, and\nrecognised frequently, by persons present, as those of deceased\nfriends\".  That he has been frequently lifted up and carried,\nfloating \"as it were\" through a room, near the ceiling.  That in\nAmerica, \"all these phenomena have displayed themselves in greater\nforce than here\"--which we have not the slightest doubt of.  That he\nis \"the planter of spiritualism all over Europe\".  That \"by\ncircumstances that no man could have devised, he became the guest of\nthe Emperor of the French, of the King of Holland, of the Czar of\nRussia, and of many lesser princes\".  That he returned from \"this\nunpremeditated missionary tour\", \"endowed with competence\"; but not\nbefore, \"at the Tuileries, on one occasion when the emperor,\nempress, a distinguished lady, and himself only were sitting at\ntable, a hand appeared, took up a pen, and wrote, in a strong and\nwell-known character, the word Napoleon.  The hand was then\nsuccessively presented to the several personages of the party to\nkiss.\"  The stout believer, having disposed of Mr. Home, and rested\na little, will then proceed to believe in Andrew Davis Jackson, or\nAndrew Jackson Davis (Mr. Howitt, having no Medium at hand to settle\nthis difference and reveal the right name of the seer, calls him by\nboth names), who merely \"beheld all the essential natures of things,\nsaw the interior of men and animals, as perfectly as their exterior;\nand described them in language so correct, that the most able\ntechnologists could not surpass him.  He pointed out the proper\nremedies for all the complaints, and the shops where they were to be\nobtained\";--in the latter respect appearing to hail from an\nadvertising circle, as we conceive.  It was also in this gentleman's\nlimited department to \"see the metals in the earth\", and to have\n\"the most distant regions and their various productions present\nbefore him\".  Having despatched this tough case, the believer will\npass on to Thomas L. Harris, and will swallow HIM easily, together\nwith \"whole epics\" of his composition; a certain work \"of scarcely\nless than Miltonic grandeur\", called The Lyric of the Golden Age--a\nlyric pretty nigh as long as one of Mr. Howitt's volumes--dictated\nby Mr. (not Mrs.) Harris to the publisher in ninety-four hours; and\nseveral extempore sermons, possessing the remarkably lucid property\nof being \"full, unforced, out-gushing, unstinted, and absorbing\".\nThe candidate for examination in pure belief, will then pass on to\nthe spirit-photography department; this, again, will be found in so-\nfavoured America, under the superintendence of Medium Mumler, a\nphotographer of Boston:  who was \"astonished\" (though, on Mr.\nHowitt's showing, he surely ought not to have been) \"on taking a\nphotograph of himself, to find also by his side the figure of a\nyoung girl, which he immediately recognised as that of a deceased\nrelative.  The circumstance made a great excitement.  Numbers of\npersons rushed to his rooms, and many have found deceased friends\nphotographed with themselves.\"  (Perhaps Mr. Mumler, too, may become\n\"endowed with competence\" in time.  Who knows?)  Finally, the true\nbelievers in the gospel according to Howitt, have, besides, but to\npin their faith on \"ladies who see spirits habitually\", on ladies\nwho KNOW they have a tendency to soar in the air on sufficient\nprovocation, and on a few other gnats to be taken after their\ncamels, and they shall be pronounced by Mr. Howitt not of the\nstereotyped class of minds, and not partakers of \"the astonishing\nignorance of the press\", and shall receive a first-class certificate\nof merit.\n\nBut before they pass through this portal into the Temple of Serene\nWisdom, we, halting blind and helpless on the steps, beg to suggest\nto them what they must at once and for ever disbelieve.  They must\ndisbelieve that in the dark times, when very few were versed in what\nare now the mere recreations of Science, and when those few formed a\npriesthood-class apart, any marvels were wrought by the aid of\nconcave mirrors and a knowledge of the properties of certain odours\nand gases, although the self-same marvels could be reproduced before\ntheir eyes at the Polytechnic Institution, Regent Street, London,\nany day in the year.  They must by no means believe that Conjuring\nand Ventriloquism are old trades.  They must disbelieve all\nPhilosophical Transactions containing the records of painful and\ncareful inquiry into now familiar disorders of the senses of seeing\nand hearing, and into the wonders of somnambulism, epilepsy,\nhysteria, miasmatic influence, vegetable poisons derived by whole\ncommunities from corrupted air, diseased imitation, and moral\ninfection.  They must disbelieve all such awkward leading cases as\nthe case of the Woodstock Commissioners and their man, and the case\nof the Identity of the Stockwell Ghost, with the maid-servant.  They\nmust disbelieve the vanishing of champion haunted houses (except,\nindeed, out of Mr. Howitt's book), represented to have been closed\nand ruined for years, before one day's inquiry by four gentlemen\nassociated with this journal, and one hour's reference to the Local\nRate-books.  They must disbelieve all possibility of a human\ncreature on the last verge of the dark bridge from Life to Death,\nbeing mysteriously able, in occasional cases, so to influence the\nmind of one very near and dear, as vividly to impress that mind with\nsome disturbed sense of the solemn change impending.  They must\ndisbelieve the possibility of the lawful existence of a class of\nintellects which, humbly conscious of the illimitable power of GOD\nand of their own weakness and ignorance, never deny that He can\ncause the souls of the dead to revisit the earth, or that He may\nhave caused the souls of the dead to revisit the earth, or that He\ncan cause any awful or wondrous thing to be; but to deny the\nlikelihood of apparitions or spirits coming here upon the stupidest\nof bootless errands, and producing credentials tantamount to a\nsolicitation of our vote and interest and next proxy, to get them\ninto the Asylum for Idiots.  They must disbelieve the right of\nChristian people who do NOT protest against Protestantism, but who\nhold it to be a barrier against the darkest superstitions that can\nenslave the soul, to guard with jealousy all approaches tending down\nto Cock Lane Ghosts and suchlike infamous swindles, widely degrading\nwhen widely believed in; and they must disbelieve that such people\nhave the right to know, and that it is their duty to know, wonder-\nworkers by their fruits, and to test miracle-mongers by the tests of\nprobability, analogy, and common sense.  They must disbelieve all\nrational explanations of thoroughly proved experiences (only) which\nappear supernatural, derived from the average experience and study\nof the visible world.  They must disbelieve the speciality of the\nMaster and the Disciples, and that it is a monstrosity to test the\nwonders of show-folk by the same touchstone.  Lastly, they must\ndisbelieve that one of the best accredited chapters in the history\nof mankind is the chapter that records the astonishing deceits\ncontinually practised, with no object or purpose but the distorted\npleasure of deceiving.\n\nWe have summed up a few--not nearly all--of the articles of belief\nand disbelief to which Mr. Howitt most arrogantly demands an\nimplicit adherence.  To uphold these, he uses a book as a Clown in a\nPantomime does, and knocks everybody on the head with it who comes\nin his way.  Moreover, he is an angrier personage than the Clown,\nand does not experimentally try the effect of his red-hot poker on\nyour shins, but straightway runs you through the body and soul with\nit.  He is always raging to tell you that if you are not Howitt, you\nare Atheist and Anti-Christ.  He is the sans-culotte of the\nSpiritual Revolution, and will not hear of your accepting this point\nand rejecting that;--down your throat with them all, one and\nindivisible, at the point of the pike; No Liberty, Totality,\nFraternity, or Death!\n\nWithout presuming to question that \"it is high time to protest\nagainst Protestantism\" on such very substantial grounds as Mr.\nHowitt sets forth, we do presume to think that it is high time to\nprotest against Mr. Howitt's spiritualism, as being a little in\nexcess of the peculiar merit of Thomas L. Harris's sermons, and\nsomewhat TOO \"full, out-gushing, unstinted, and absorbing\".\n\n\n\nTHE MARTYR MEDIUM\n\n\n\n\"After the valets, the master!\" is Mr. Fechter's rallying cry in the\npicturesque romantic drama which attracts all London to the Lyceum\nTheatre.  After the worshippers and puffers of Mr. Daniel Dunglas\nHome, the spirit medium, comes Mr. Daniel Dunglas Home himself, in\none volume.  And we must, for the honour of Literature, plainly\nexpress our great surprise and regret that he comes arm-in-arm with\nsuch good company as Messrs. Longman and Company.\n\nWe have already summed up Mr. Home's demands on the public capacity\nof swallowing, as sounded through the war-denouncing trumpet of Mr.\nHowitt, and it is not our intention to revive the strain as\nperformed by Mr. Home on his own melodious instrument.  We notice,\nby the way, that in that part of the Fantasia where the hand of the\nfirst Napoleon is supposed to be reproduced, recognised, and kissed,\nat the Tuileries, Mr. Home subdues the florid effects one might have\nexpected after Mr. Howitt's execution, and brays in an extremely\ngeneral manner.  And yet we observe Mr. Home to be in other things\nvery reliant on Mr. Howitt, of whom he entertains as gratifying an\nopinion as Mr. Howitt entertains of him:  dwelling on his \"deep\nresearches into this subject\", and of his \"great work now ready for\nthe press\", and of his \"eloquent and forcible\" advocacy, and eke of\nhis \"elaborate and almost exhaustive work\", which Mr. Home trusts\nwill be \"extensively read\".  But, indeed, it would seem to be the\nmost reliable characteristic of the Dear Spirits, though very\ncapricious in other particulars, that they always form their circles\ninto what may be described, in worldly terms, as A Mutual Admiration\nand Complimentation Company (Limited).\n\nMr. Home's book is entitled Incidents in My Life.  We will extract a\ndozen sample passages from it, as variations on and phrases of\nharmony in, the general strain for the Trumpet, which we have\npromised not to repeat.\n\n\n1.  MR. HOME IS SUPERNATURALLY NURSED\n\n\n\"I cannot remember when first I became subject to the curious\nphenomena which have now for so long attended me, but my aunt and\nothers have told me that when I was a baby my cradle was frequently\nrocked, as if some kind guardian spirit was attending me in my\nslumbers.\"\n\n\n2.  DISRESPECTFUL CONDUCT OF MR. HOME'S AUNT NEVERTHELESS\n\n\n\"In her uncontrollable anger she seized a chair and threw it at me.\"\n\n\n3.  PUNISHMENT OF MR. HOME'S AUNT\n\n\n\"Upon one occasion as the table was being thus moved about of\nitself, my aunt brought the family Bible, and placing it on the\ntable, said, 'There, that will soon drive the devils away'; but to\nher astonishment the table only moved in a more lively manner, as if\npleased to bear such a burden.\"  (We believe this is constantly\nobserved in pulpits and church reading desks, which are invariably\nlively.)  \"Seeing this she was greatly incensed, and determined to\nstop it, she angrily placed her whole weight on the table, and was\nactually lifted up with it bodily from the floor.\"\n\n\n4. TRIUMPHANT EFFECT OF THIS DISCIPLINE ON MR. HOME'S AUNT\n\n\n\"And she felt it a duty that I should leave her house, and which I\ndid.\"\n\n\n5.  MR. HOME'S MISSION\n\n\nIt was communicated to him by the spirit of his mother, in the\nfollowing terms:  \"Daniel, fear not, my child, God is with you, and\nwho shall be against you?  Seek to do good:  be truthful and truth-\nloving, and you will prosper, my child.  Yours is a glorious\nmission--you will convince the infidel, cure the sick, and console\nthe weeping.\"  It is a coincidence that another eminent man, with\nseveral missions, heard a voice from the Heavens blessing him, when\nhe also was a youth, and saying, \"You will be rewarded, my son, in\ntime\".  This Medium was the celebrated Baron Munchausen, who relates\nthe experience in the opening of the second chapter of the incidents\nin HIS life.\n\n\n6.  MODEST SUCCESS OF MR. HOME'S MISSION\n\n\n\"Certainly these phenomena, whether from God or from the devil, have\nin ten years caused more converts to the great truths of immortality\nand angel communion, with all that flows from these great facts,\nthan all the sects in Christendom have made during the same period.\"\n\n\n7.  WHAT THE FIRST COMPOSERS SAY OF THE SPIRIT-MUSIC, TO MR. HOME\n\n\n\"As to the music, it has been my good fortune to be on intimate\nterms with some of the first composers of the day, and more than one\nof them have said of such as they have heard, that it is such music\nas only angels could make, and no man could write it.\"\n\nThese \"first composers\" are not more particularly named.  We shall\ntherefore be happy to receive and file at the office of this\nJournal, the testimonials in the foregoing terms of Dr. Sterndale\nBennett, Mr. Balfe, Mr. Macfarren, Mr. Benedict, Mr. Vincent\nWallace, Signor Costa, M. Auber, M. Gounod, Signor Rossini, and\nSignor Verdi.  We shall also feel obliged to Mr. Alfred Mellon, who\nis no doubt constantly studying this wonderful music, under the\nMedium's auspices, if he will note on paper, from memory, say a\nsingle sheet of the same.  Signor Giulio Regondi will then perform\nit, as correctly as a mere mortal can, on the Accordion, at the next\nensuing concert of the Philharmonic Society; on which occasion the\nbefore-mentioned testimonials will be conspicuously displayed in the\nfront of the orchestra.\n\n\n8.  MR. HOME'S MIRACULOUS INFANT\n\n\n\"On the 26th April, old style, or 8th May, according to our style,\nat seven in the evening, and as the snow was fast falling, our\nlittle boy was born at the town house, situate on the Gagarines\nQuay, in St. Petersburg, where we were still staying.  A few hours\nafter his birth, his mother, the nurse, and I heard for several\nhours the warbling of a bird as if singing over him.  Also that\nnight, and for two or three nights afterwards, a bright starlike\nlight, which was clearly visible from the partial darkness of the\nroom, in which there was only a night-lamp burning, appeared several\ntimes directly I over its head, where it remained for some moments,\nand then slowly moved in the direction of the door, where it\ndisappeared.  This was also seen by each of us at the same time.\nThe light was more condensed than those which have been so often\nseen in my presence upon previous and subsequent occasions.  It was\nbrighter and more distinctly globular.  I do not believe that it\ncame through my mediumship, but rather through that of the child,\nwho has manifested on several occasions the presence of the gift.  I\ndo not like to allude to such a matter, but as there are more\nstrange things in Heaven and earth than are dreamt of, even in my\nphilosophy, I do not feel myself at liberty to omit stating, that\nduring the latter part of my wife's pregnancy, we thought it better\nthat she should not join in Seances, because it was found that\nwhenever the rappings occurred in the room, a simultaneous movement\nof the child was distinctly felt, perfectly in unison with the\nsounds.  When there were three sounds, three movements were felt,\nand so on, and when five sounds were heard, which is generally the\ncall for the alphabet, she felt the five internal movements, and she\nwould frequently, when we were mistaken in the latter, correct us\nfrom what the child indicated.\"\n\nWe should ask pardon of our readers for sullying our paper with this\nnauseous matter, if without it they could adequately understand what\nMr. Home's book is.\n\n\n9.  CAGLIOSTRO'S SPIRIT CALLS ON MR. HOME\n\n\nPrudently avoiding the disagreeable question of his giving himself,\nboth in this state of existence and in his spiritual circle, a name\nto which he never had any pretensions whatever, and likewise\nprudently suppressing any reference to his amiable weakness as a\nswindler and an infamous trafficker in his own wife, the guileless\nMr. Balsamo delivered, in a \"distinct voice\", this distinct\ncelestial utterance--unquestionably punctuated in a supernatural\nmanner:  \"My power was that of a mesmerist, but all-misunderstood by\nthose about me, my biographers have even done me injustice, but I\ncare not for the untruths of earth\".\n\n\n10.  ORACULAR STATE OF MR. HOME\n\n\n\"After various manifestations, Mr. Home went into the trance, and\naddressing a person present, said, 'You ask what good are such\ntrivial manifestations, such as rapping, table-moving, etc.?  God is\na better judge than we are what is fitted for humanity, immense\nresults may spring from trivial things.  The steam from a kettle is\na small thing, but look at the locomotive!  The electric spark from\nthe back of a cat is a small thing, but see the wonders of\nelectricity!  The raps are small things, but their results will lead\nyou to the Spirit-World, and to eternity!  Why should great results\nspring from such small causes?  Christ was born in a manger, he was\nnot born a King.  When you tell me why he was born in a manger, I\nwill tell you why these manifestations, so trivial, so undignified\nas they appear to you, have been appointed to convince the world of\nthe truth of spiritualism.'\"\n\nWonderful!  Clearly direct Inspiration!--And yet, perhaps, hardly\nworth the trouble of going \"into the trance\" for, either.  Amazing\nas the revelation is, we seem to have heard something like it from\nmore than one personage who was wide awake.  A quack doctor, in an\nopen barouche (attended by a barrel-organ and two footmen in brass\nhelmets), delivered just such another address within our hearing,\noutside a gate of Paris, not two months ago.\n\n\n11.  THE TESTIMONY OF MR. HOME'S BOOTS\n\n\n\"The lady of the house turned to me and said abruptly, 'Why, you are\nsitting in the air'; and on looking, we found that the chair\nremained in its place, but that I was elevated two or three inches\nabove it, and my feet not touching the floor.  This may show how\nutterly unconscious I am at times to the sensation of levitation.\nAs is usual, when I had not got above the level of the heads of\nthose about me, and when they change their position much--as they\nfrequently do in looking wistfully at such a phenomenon--I came down\nagain, but not till I had remained so raised about half a minute\nfrom the time of its being first seen.  I was now impressed to leave\nthe table, and was soon carried to the lofty ceiling.  The Count de\nB- left his place at the table, and coming under where I was, said,\n'Now, young Home, come and let me touch your feet.'  I told him I\nhad no volition in the matter, but perhaps the spirits would kindly\nallow me to come down to him.  They did so, by floating me down to\nhim, and my feet were soon in his outstretched hands.  He seized my\nboots, and now I was again elevated, he holding tightly, and pulling\nat my feet, till the boots I wore, which had elastic sides, came off\nand remained in his hands.\"\n\n\n12.  THE UNCOMBATIVE NATURE OF MR. HOME\n\n\nAs there is a maudlin complaint in this book, about men of Science\nbeing hard upon \"the 'Orphan' Home\", and as the \"gentle and\nuncombative nature\" of this Medium in a martyred point of view is\npathetically commented on by the anonymous literary friend who\nsupplies him with an introduction and appendix--rather at odds with\nMr. Howitt, who is so mightily triumphant about the same Martyr's\nreception by crowned heads, and about the competence he has become\nendowed with--we cull from Mr. Home's book one or two little\nillustrative flowers.  Sir David Brewster (a pestilent unbeliever)\n\"has come before the public in few matters which have brought more\nshame upon him than his conduct and assertions on this occasion, in\nwhich he manifested not only a disregard for truth, but also a\ndisloyalty to scientific observation, and to the use of his own\neyesight and natural faculties\".  The same unhappy Sir David\nBrewster's \"character may be the better known, not only for his\nuntruthful dealing with this subject, but also in his own domain of\nscience in which the same unfaithfulness to truth will be seen to be\nthe characteristic of his mind\".  Again, he \"is really not a man\nover whom victory is any honour\".  Again, \"not only he, but\nProfessor Faraday have had time and ample leisure to regret that\nthey should have so foolishly pledged themselves\", etc.  A Faraday a\nfool in the sight of a Home!  That unjust judge and whited wall,\nLord Brougham, has his share of this Martyr Medium's\nuncombativeness.  \"In order that he might not be compelled to deny\nSir David's statements, he found it necessary that he should be\nsilent, and I have some reason to complain that his Lordship\npreferred sacrificing me to his desire not to immolate his friend.\"\nM. Arago also came off with very doubtful honours from a wrestle\nwith the uncombative Martyr; who is perfectly clear (and so are we,\nlet us add) that scientific men are not the men for his purpose.  Of\ncourse, he is the butt of \"utter and acknowledged ignorance\", and of\n\"the most gross and foolish statements\", and of \"the unjust and\ndishonest\", and of \"the press-gang\", and of crowds of other alien\nand combative adjectives, participles, and substantives.\n\nNothing is without its use, and even this odious book may do some\nservice.  Not because it coolly claims for the writer and his\ndisciples such powers as were wielded by the Saviour and the\nApostles; not because it sees no difference between twelve table\nrappers in these days, and \"twelve fishermen\" in those; not because\nit appeals for precedents to statements extracted from the most\nignorant and wretched of mankind, by cruel torture, and constantly\nwithdrawn when the torture was withdrawn; not because it sets forth\nsuch a strange confusion of ideas as is presented by one of the\nfaithful when, writing of a certain sprig of geranium handed by an\ninvisible hand, he adds in ecstasies, \"WHICH WE HAVE PLANTED AND IT\nIS GROWING, SO THAT IT IS NO DELUSION, NO FAIRY MONEY TURNED INTO\nDROSS OR LEAVES\"--as if it followed that the conjuror's half-crowns\nreally did become invisible and in that state fly, because he\nafterwards cuts them out of a real orange; or as if the conjuror's\npigeon, being after the discharge of his gun, a real live pigeon\nfluttering on the target, must therefore conclusively be a pigeon,\nfired, whole, living and unshattered, out of the gun!--not because\nof the exposure of any of these weaknesses, or a thousand such, are\nthese moving incidents in the life of the Martyr Medium, and similar\nproductions, likely to prove useful, but because of their uniform\nabuse of those who go to test the reality of these alleged\nphenomena, and who come away incredulous.  There is an old homely\nproverb concerning pitch and its adhesive character, which we hope\nthis significant circumstance may impress on many minds.  The writer\nof these lines has lately heard overmuch touching young men of\npromise in the imaginative arts, \"towards whom\" Martyr Mediums\nassisting at evening parties feel themselves \"drawn\".  It may be a\nhint to such young men to stick to their own drawing, as being of a\nmuch better kind, and to leave Martyr Mediums alone in their glory.\n\nAs there is a good deal in these books about \"lying spirits\", we\nwill conclude by putting a hypothetical case.  Supposing that a\nMedium (Martyr or otherwise) were established for a time in the\nhouse of an English gentleman abroad; say, somewhere in Italy.\nSupposing that the more marvellous the Medium became, the more\nsuspicious of him the lady of the house became.  Supposing that the\nlady, her distrust once aroused, were particularly struck by the\nMedium's exhibiting a persistent desire to commit her, somehow or\nother, to the disclosure of the manner of the death, to him unknown,\nof a certain person.  Supposing that she at length resolved to test\nthe Medium on this head, and, therefore, on a certain evening\nmentioned a wholly supposititious manner of death (which was not the\nreal manner of death, nor anything at all like it) within the range\nof his listening ears.  And supposing that a spirit presently\nafterwards rapped out its presence, claiming to be the spirit of\nthat deceased person, and claiming to have departed this life in\nthat supposititious way.  Would that be a lying spirit?  Or would it\nhe a something else, tainting all that Medium's statements and\nsuppressions, even if they were not in themselves of a manifestly\noutrageous character?\n\n\n\nTHE LATE MR. STANFIELD\n\n\n\nEvery Artist, be he writer, painter, musician, or actor, must bear\nhis private sorrows as he best can, and must separate them from the\nexercise of his public pursuit.  But it sometimes happens, in\ncompensation, that his private loss of a dear friend represents a\nloss on the part of the whole community.  Then he may, without\nobtrusion of his individuality, step forth to lay his little wreath\nupon that dear friend's grave.\n\nOn Saturday, the eighteenth of this present month, Clarkson\nStanfield died.  On the afternoon of that day, England lost the\ngreat marine painter of whom she will be boastful ages hence; the\nNational Historian of her speciality, the Sea; the man famous in all\ncountries for his marvellous rendering of the waves that break upon\nher shores, of her ships and seamen, of her coasts and skies, of her\nstorms and sunshine, of the many marvels of the deep.  He who holds\nthe oceans in the hollow of His hand had given, associated with\nthem, wonderful gifts into his keeping; he had used them well\nthrough threescore and fourteen years; and, on the afternoon of that\nspring day, relinquished them for ever.\n\nIt is superfluous to record that the painter of \"The Battle of\nTrafalgar\", of the \"Victory being towed into Gibraltar with the body\nof Nelson on Board\", of \"The Morning after the Wreck\", of \"The\nAbandoned\", of fifty more such works, died in his seventy-fourth\nyear, \"Mr.\" Stanfield.--He was an Englishman.\n\nThose grand pictures will proclaim his powers while paint and canvas\nlast.  But the writer of these words had been his friend for thirty\nyears; and when, a short week or two before his death, he laid that\nonce so skilful hand upon the writer's breast and told him they\nwould meet again, \"but not here\", the thoughts of the latter turned,\nfor the time, so little to his noble genius, and so much to his\nnoble nature!\n\nHe was the soul of frankness, generosity, and simplicity.  The most\ngenial, the most affectionate, the most loving, and the most lovable\nof men.  Success had never for an instant spoiled him.  His interest\nin the Theatre as an Institution--the best picturesqueness of which\nmay be said to be wholly due to him--was faithful to the last.  His\nbelief in a Play, his delight in one, the ease with which it moved\nhim to tears or to laughter, were most remarkable evidences of the\nheart he must have put into his old theatrical work, and of the\nthorough purpose and sincerity with which it must have been done.\nThe writer was very intimately associated with him in some amateur\nplays; and day after day, and night after night, there were the same\nunquenchable freshness, enthusiasm, and impressibility in him,\nthough broken in health, even then.\n\nNo Artist can ever have stood by his art with a quieter dignity than\nhe always did.  Nothing would have induced him to lay it at the feet\nof any human creature.  To fawn, or to toady, or to do undeserved\nhomage to any one, was an absolute impossibility with him.  And yet\nhis character was so nicely balanced that he was the last man in the\nworld to be suspected of self-assertion, and his modesty was one of\nhis most special qualities.\n\nHe was a charitable, religious, gentle, truly good man.  A genuine\nman, incapable of pretence or of concealment.  He had been a sailor\nonce; and all the best characteristics that are popularly attributed\nto sailors, being his, and being in him refined by the influences of\nhis Art, formed a whole not likely to be often seen.  There is no\nsmile that the writer can recall, like his; no manner so naturally\nconfiding and so cheerfully engaging.  When the writer saw him for\nthe last time on earth, the smile and the manner shone out once\nthrough the weakness, still:  the bright unchanging Soul within the\naltered face and form.\n\nNo man was ever held in higher respect by his friends, and yet his\nintimate friends invariably addressed him and spoke of him by a pet\nname.  It may need, perhaps, the writer's memory and associations to\nfind in this a touching expression of his winning character, his\nplayful smile, and pleasant ways.  \"You know Mrs. Inchbald's story,\nNature and Art?\" wrote Thomas Hood, once, in a letter:  \"What a fine\nEdition of Nature and Art is Stanfield!\"\n\nGone!  And many and many a dear old day gone with him!  But their\nmemories remain.  And his memory will not soon fade out, for he has\nset his mark upon the restless waters, and his fame will long be\nsounded in the roar of the sea.\n\n\n\nA SLIGHT QUESTION OF FACT\n\n\n\nIt is never well for the public interest that the originator of any\nsocial reform should be soon forgotten.  Further, it is neither\nwholesome nor right (being neither generous nor just) that the merit\nof his work should be gradually transferred elsewhere.\n\nSome few weeks ago, our contemporary, the Pall Mall Gazette, in\ncertain strictures on our Theatres which we are very far indeed from\nchallenging, remarked on the first effectual discouragement of an\noutrage upon decency which the lobbies and upper-boxes of even our\nbest Theatres habitually paraded within the last twenty or thirty\nyears.  From those remarks it might appear as though no such Manager\nof Covent Garden or Drury Lane as Mr. Macready had ever existed.\n\nIt is a fact beyond all possibility of question, that Mr. Macready,\non assuming the management of Covent Garden Theatre in 1837, did\ninstantly set himself, regardless of precedent and custom down to\nthat hour obtaining, rigidly to suppress this shameful thing, and\ndid rigidly suppress and crush it during his whole management of\nthat theatre, and during his whole subsequent management of Drury\nLane.  That he did so, as certainly without favour as without fear;\nthat he did so, against his own immediate interests; that he did so,\nagainst vexations and oppositions which might have cooled the ardour\nof a less earnest man, or a less devoted artist; can be better known\nto no one than the writer of the present words, whose name stands at\nthe head of these pages.\n\n\n\nLANDOR'S LIFE\n\n\n\nPrefixed to the second volume of Mr. Forster's admirable biography\nof Walter Savage Landor, {1} is an engraving from a portrait of that\nremarkable man when seventy-seven years of age, by Boxall.  The\nwriter of these lines can testify that the original picture is a\nsingularly good likeness, the result of close and subtle observation\non the part of the painter; but, for this very reason, the engraving\ngives a most inadequate idea of the merit of the picture and the\ncharacter of the man.\n\nFrom the engraving, the arms and hands are omitted.  In the picture,\nthey are, as they were in nature, indispensable to a correct reading\nof the vigorous face.  The arms were very peculiar.  They were\nrather short, and were curiously restrained and checked in their\naction at the elbows; in the action of the hands, even when\nseparately clenched, there was the same kind of pause, and a\nnoticeable tendency to relaxation on the part of the thumb.  Let the\nface be never so intense or fierce, there was a commentary of\ngentleness in the hands, essential to be taken along with it.  Like\nHamlet, Landor would speak daggers, but use none.  In the expression\nof his hands, though angrily closed, there was always gentleness and\ntenderness; just as when they were open, and the handsome old\ngentleman would wave them with a little courtly flourish that sat\nwell upon him, as he recalled some classic compliment that he had\nrendered to some reigning Beauty, there was a chivalrous grace about\nthem such as pervades his softer verses.  Thus the fictitious Mr.\nBoythorn (to whom we may refer without impropriety in this\nconnexion, as Mr. Forster does) declaims \"with unimaginable energy\"\nthe while his bird is \"perched upon his thumb\", and he \"softly\nsmooths its feathers with his forefinger\".\n\nFrom the spirit of Mr. Forster's Biography these characteristic\nhands are never omitted, and hence (apart from its literary merits)\nits great value.  As the same masterly writer's Life and Times of\nOliver Goldsmith is a generous and yet conscientious picture of a\nperiod, so this is a not less generous and yet conscientious picture\nof one life; of a life, with all its aspirations, achievements, and\ndisappointments; all its capabilities, opportunities, and\nirretrievable mistakes.  It is essentially a sad book, and herein\nlies proof of its truth and worth.  The life of almost any man\npossessing great gifts, would be a sad book to himself; and this\nbook enables us not only to see its subject, but to be its subject,\nif we will.\n\nMr. Forster is of opinion that \"Landor's fame very surely awaits\nhim\".  This point admitted or doubted, the value of the book remains\nthe same.  It needs not to know his works (otherwise than through\nhis biographer's exposition), it needs not to have known himself, to\nfind a deep interest in these pages.  More or less of their warning\nis in every conscience; and some admiration of a fine genius, and of\na great, wild, generous nature, incapable of mean self-extenuation\nor dissimulation--if unhappily incapable of self-repression too--\nshould be in every breast.  \"There may be still living many\npersons\", Walter Landor's brother, Robert, writes to Mr. Forster of\nthis book, \"who would contradict any narrative of yours in which the\nbest qualities were remembered, the worst forgotten.\"  Mr. Forster's\ncomment is:  \"I had not waited for this appeal to resolve, that, if\nthis memoir were written at all, it should contain, as far as might\nlie within my power, a fair statement of the truth\".  And this\neloquent passage of truth immediately follows:  \"Few of his\ninfirmities are without something kindly or generous about them; and\nwe are not long in discovering there is nothing so wildly incredible\nthat he will not himself in perfect good faith believe.  When he\npublished his first book of poems on quitting Oxford, the profits\nwere to be reserved for a distressed clergyman.  When he published\nhis Latin poems, the poor of Leipzig were to have the sum they\nrealised.  When his comedy was ready to be acted, a Spaniard who had\nsheltered him at Castro was to be made richer by it.  When he\ncompeted for the prize of the Academy of Stockholm, it was to go to\nthe poor of Sweden.  If nobody got anything from any one of these\nenterprises, the fault at all events was not his.  With his\nextraordinary power of forgetting disappointments, he was prepared\nat each successive failure to start afresh, as if each had been a\ntriumph.  I shall have to delineate this peculiarity as strongly in\nthe last half as in the first half of his life, and it was certainly\nan amiable one.  He was ready at all times to set aside, out of his\nown possessions, something for somebody who might please him for the\ntime; and when frailties of temper and tongue are noted, this other\neccentricity should not be omitted.  He desired eagerly the love as\nwell as the good opinion of those whom for the time he esteemed, and\nno one was more affectionate while under such influences.  It is not\na small virtue to feel such genuine pleasure, as he always did in\ngiving and receiving pleasure.  His generosity, too, was bestowed\nchiefly on those who could make small acknowledgment in thanks and\nno return in kind.\"\n\nSome of his earlier contemporaries may have thought him a vain man.\nMost assuredly he was not, in the common acceptation of the term.  A\nvain man has little or no admiration to bestow upon competitors.\nLandor had an inexhaustible fund.  He thought well of his writings,\nor he would not have preserved them.  He said and wrote that he\nthought well of them, because that was his mind about them, and he\nsaid and wrote his mind.  He was one of the few men of whom you\nmight always know the whole:  of whom you might always know the\nworst, as well as the best.  He had no reservations or duplicities.\n\"No, by Heaven!\" he would say (\"with unimaginable energy\"), if any\ngood adjective were coupled with him which he did not deserve:  \"I\nam nothing of the kind.  I wish I were; but I don't deserve the\nattribute, and I never did, and I never shall!\"  His intense\nconsciousness of himself never led to his poorly excusing himself,\nand seldom to his violently asserting himself.  When he told some\nlittle story of his bygone social experiences, in Florence, or where\nnot, as he was fond of doing, it took the innocent form of making\nall the interlocutors, Landors.  It was observable, too, that they\nalways called him \"Mr. Landor\"--rather ceremoniously and\nsubmissively.  There was a certain \"Caro Pedre Abete Marina\"--\ninvariably so addressed in these anecdotes--who figured through a\ngreat many of them, and who always expressed himself in this\ndeferential tone.\n\nMr. Forster writes of Landor's character thus:\n\n\n\"A man must be judged, at first, by what he says and does.  But with\nhim such extravagance as I have referred to was little more than the\nhabitual indulgence (on such themes) of passionate feelings and\nlanguage, indecent indeed but utterly purposeless; the mere\nexplosion of wrath provoked by tyranny or cruelty; the\nirregularities of an overheated steam-engine too weak for its own\nvapour.  It is very certain that no one could detest oppression more\ntruly than Landor did in all seasons and times; and if no one\nexpressed that scorn, that abhorrence of tyranny and fraud, more\nhastily or more intemperately, all his fire and fury signified\nreally little else than ill-temper too easily provoked.  Not to\njustify or excuse such language, but to explain it, this\nconsideration is urged.  If not uniformly placable, Landor was\nalways compassionate.  He was tender-hearted rather than bloody-\nminded at all times, and upon only the most partial acquaintance\nwith his writings could other opinion be formed.  A completer\nknowledge of them would satisfy any one that he had as little real\ndisposition to kill a king as to kill a mouse.  In fact there is not\na more marked peculiarity in his genius than the union with its\nstrength of a most uncommon gentleness, and in the personal ways of\nthe man this was equally manifest.\"--Vol. i. p. 496.\n\n\nOf his works, thus:\n\n\n\"Though his mind was cast in the antique mould, it had opened itself\nto every kind of impression through a long and varied life; he has\nwritten with equal excellence in both poetry and prose, which can\nhardly be said of any of his contemporaries; and perhaps the single\nepithet by which his books would be best described is that reserved\nexclusively for books not characterised only by genius, but also by\nspecial individuality.  They are unique.  Having possessed them, we\nshould miss them.  Their place would be supplied by no others.  They\nhave that about them, moreover, which renders it almost certain that\nthey will frequently be resorted to in future time.  There are none\nin the language more quotable.  Even where impulsiveness and want of\npatience have left them most fragmentary, this rich compensation is\noffered to the reader.  There is hardly a conceivable subject, in\nlife or literature, which they do not illustrate by striking\naphorisms, by concise and profound observations, by wisdom ever\napplicable to the deeds of men, and by wit as available for their\nenjoyment.  Nor, above all, will there anywhere be found a more\npervading passion for liberty, a fiercer hatred of the base, a wider\nsympathy with the wronged and the oppressed, or help more ready at\nall times for those who fight at odds and disadvantage against the\npowerful and the fortunate, than in the writings of Walter Savage\nLandor.\"--Last page of second volume.\n\n\nThe impression was strong upon the present writer's mind, as on Mr.\nForster's, during years of close friendship with the subject of this\nbiography, that his animosities were chiefly referable to the\nsingular inability in him to dissociate other people's ways of\nthinking from his own.  He had, to the last, a ludicrous grievance\n(both Mr. Forster and the writer have often amused themselves with\nit) against a good-natured nobleman, doubtless perfectly unconscious\nof having ever given him offence.  The offence was, that on the\noccasion of some dinner party in another nobleman's house, many\nyears before, this innocent lord (then a commoner) had passed in to\ndinner, through some door, before him, as he himself was about to\npass in through that same door with a lady on his arm.  Now, Landor\nwas a gentleman of most scrupulous politeness, and in his carriage\nof himself towards ladies there was a certain mixture of stateliness\nand deference, belonging to quite another time, and, as Mr. Pepys\nwould observe, \"mighty pretty to see\".  If he could by any effort\nimagine himself committing such a high crime and misdemeanour as\nthat in question, he could only imagine himself as doing it of a set\npurpose, under the sting of some vast injury, to inflict a great\naffront.  A deliberately designed affront on the part of another\nman, it therefore remained to the end of his days.  The manner in\nwhich, as time went on, he permeated the unfortunate lord's ancestry\nwith this offence, was whimsically characteristic of Landor.  The\nwriter remembers very well when only the individual himself was held\nresponsible in the story for the breach of good breeding; but in\nanother ten years or so, it began to appear that his father had\nalways been remarkable for ill manners; and in yet another ten years\nor so, his grandfather developed into quite a prodigy of coarse\nbehaviour.\n\nMr. Boythorn--if he may again be quoted--said of his adversary, Sir\nLeicester Dedlock:  \"That fellow is, AND HIS FATHER WAS, AND HIS\nGRANDFATHER WAS, the most stiff-necked, arrogant, imbecile, pig-\nheaded numskull, ever, by some inexplicable mistake of Nature, born\nin any station of life but a walking-stick's!\"\n\nThe strength of some of Mr. Landor's most captivating kind qualities\nwas traceable to the same source.  Knowing how keenly he himself\nwould feel the being at any small social disadvantage, or the being\nunconsciously placed in any ridiculous light, he was wonderfully\nconsiderate of shy people, or of such as might be below the level of\nhis usual conversation, or otherwise out of their element.  The\nwriter once observed him in the keenest distress of mind in behalf\nof a modest young stranger who came into a drawing-room with a glove\non his head.  An expressive commentary on this sympathetic\ncondition, and on the delicacy with which he advanced to the young\nstranger's rescue, was afterwards furnished by himself at a friendly\ndinner at Gore House, when it was the most delightful of houses.\nHis dress--say, his cravat or shirt-collar--had become slightly\ndisarranged on a hot evening, and Count D'Orsay laughingly called\nhis attention to the circumstance as we rose from table.  Landor\nbecame flushed, and greatly agitated:  \"My dear Count D'Orsay, I\nthank you!  My dear Count D'Orsay, I thank you from my soul for\npointing out to me the abominable condition to which I am reduced!\nIf I had entered the Drawing-room, and presented myself before Lady\nBlessington in so absurd a light, I would have instantly gone home,\nput a pistol to my head, and blown my brains out!\"\n\nMr. Forster tells a similar story of his keeping a company waiting\ndinner, through losing his way; and of his seeing no remedy for that\nbreach of politeness but cutting his throat, or drowning himself,\nunless a countryman whom he met could direct him by a short road to\nthe house where the party were assembled.  Surely these are\nexpressive notes on the gravity and reality of his explosive\ninclinations to kill kings!\n\nHis manner towards boys was charming, and the earnestness of his\nwish to be on equal terms with them and to win their confidence was\nquite touching.  Few, reading Mr. Forster's book, can fall to see in\nthis, his pensive remembrance of that \"studious wilful boy at once\nshy and impetuous\", who had not many intimacies at Rugby, but who\nwas \"generally popular and respected, and used his influence often\nto save the younger boys from undue harshness or violence\".  The\nimpulsive yearnings of his passionate heart towards his own boy, on\ntheir meeting at Bath, after years of separation, likewise burn\nthrough this phase of his character.\n\nBut a more spiritual, softened, and unselfish aspect of it, was to\nderived from his respectful belief in happiness which he himself had\nmissed.  His marriage had not been a felicitous one--it may be\nfairly assumed for either side--but no trace of bitterness or\ndistrust concerning other marriages was in his mind.  He was never\nmore serene than in the midst of a domestic circle, and was\ninvariably remarkable for a perfectly benignant interest in young\ncouples and young lovers.  That, in his ever-fresh fancy, he\nconceived in this association innumerable histories of himself\ninvolving far more unlikely events that never happened than Isaac\nD'Israeli ever imagined, is hardly to be doubted; but as to this\npart of his real history he was mute, or revealed his nobleness in\nan impulse to be generously just.  We verge on delicate ground, but\na slight remembrance rises in the writer which can grate nowhere.\nMr. Forster relates how a certain friend, being in Florence, sent\nhim home a leaf from the garden of his old house at Fiesole.  That\nfriend had first asked him what he should send him home, and he had\nstipulated for this gift--found by Mr. Forster among his papers\nafter his death.  The friend, on coming back to England, related to\nLandor that he had been much embarrassed, on going in search of the\nleaf, by his driver's suddenly stopping his horses in a narrow lane,\nand presenting him (the friend) to \"La Signora Landora\".  The lady\nwas walking alone on a bright Italian-winter-day; and the man,\nhaving been told to drive to the Villa Landora, inferred that he\nmust be conveying a guest or visitor.  \"I pulled off my hat,\" said\nthe friend, \"apologised for the coachman's mistake, and drove on.\nThe lady was walking with a rapid and firm step, had bright eyes, a\nfine fresh colour, and looked animated and agreeable.\"  Landor\nchecked off each clause of the description, with a stately nod of\nmore than ready assent, and replied, with all his tremendous energy\nconcentrated into the sentence:  \"And the Lord forbid that I should\ndo otherwise than declare that she always WAS agreeable--to every\none but ME!\"\n\nMr. Forster step by step builds up the evidence on which he writes\nthis life and states this character.  In like manner, he gives the\nevidence for his high estimation of Landor's works, and--it may be\nadded--for their recompense against some neglect, in finding so\nsympathetic, acute, and devoted a champion.  Nothing in the book is\nmore remarkable than his examination of each of Landor's successive\npieces of writing, his delicate discernment of their beauties, and\nhis strong desire to impart his own perceptions in this wise to the\ngreat audience that is yet to come.  It rarely befalls an author to\nhave such a commentator:  to become the subject of so much artistic\nskill and knowledge, combined with such infinite and loving pains.\nAlike as a piece of Biography, and as a commentary upon the beauties\nof a great writer, the book is a massive book; as the man and the\nwriter were massive too.  Sometimes, when the balance held by Mr.\nForster has seemed for a moment to turn a little heavily against the\ninfirmities of temperament of a grand old friend, we have felt\nsomething of a shock; but we have not once been able to gainsay the\njustice of the scales.  This feeling, too, has only fluttered out of\nthe detail, here or there, and has vanished before the whole.  We\nfully agree with Mr. Forster that \"judgment has been passed\"--as it\nshould be--\"with an equal desire to be only just on all the\nqualities of his temperament which affected necessarily not his own\nlife only.  But, now that the story is told, no one will have\ndifficulty in striking the balance between its good and ill; and\nwhat was really imperishable in Landor's genius will not be\ntreasured less, or less understood, for the more perfect knowledge\nof his character\".\n\nMr. Forster's second volume gives a facsimile of Landor's writing at\nseventy-five.  It may be interesting to those who are curious in\ncalligraphy, to know that its resemblance to the recent handwriting\nof that great genius, M. Victor Hugo, is singularly strong.\n\nIn a military burial-ground in India, the name of Walter Landor is\nassociated with the present writer's over the grave of a young\nofficer.  No name could stand there, more inseparably associated in\nthe writer's mind with the dignity of generosity:  with a noble\nscorn of all littleness, all cruelty, oppression, fraud, and false\npretence.\n\n\n\nADDRESS WHICH APPEARED SHORTLY PREVIOUS TO THE COMPLETION OF THE\nTWENTIETH VOLUME (1868), INTIMATING A NEW SERIES OF \"ALL THE YEAR\nROUND\"\n\n\n\nI beg to announce to the readers of this Journal, that on the\ncompletion of the Twentieth Volume on the Twenty-eighth of November,\nin the present year, I shall commence an entirely New Series of All\nthe Year Round.  The change is not only due to the convenience of\nthe public (with which a set of such books, extending beyond twenty\nlarge volumes, would be quite incompatible), but is also resolved\nupon for the purpose of effecting some desirable improvements in\nrespect of type, paper, and size of page, which could not otherwise\nbe made.  To the Literature of the New Series it would not become me\nto refer, beyond glancing at the pages of this Journal, and of its\npredecessor, through a score of years; inasmuch as my regular\nfellow-labourers and I will be at our old posts, in company with\nthose younger comrades, whom I have had the pleasure of enrolling\nfrom time to time, and whose number it is always one of my\npleasantest editorial duties to enlarge.\n\nAs it is better that every kind of work honestly undertaken and\ndischarged, should speak for itself than be spoken for, I will only\nremark further on one intended omission in the New Series.  The\nExtra Christmas Number has now been so extensively, and regularly,\nand often imitated, that it is in very great danger of becoming\ntiresome.  I have therefore resolved (though I cannot add,\nwillingly) to abolish it, at the highest tide of its success.\n\nCHARLES DICKENS.\n\n\n\nFootnotes:\n\n{1}  Walter Savage Landor:  a Biography, by John Forster, 2 vols.\nChapman and Hall.\n\n\n\n\n\nEnd of Project Gutenberg Etext of Contributions to:  All The Year Round \n\nThe Project Gutenberg Etext of American Notes, by Charles Dickens\n#9 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nAmerican Notes for General Circulation\n\nby Charles Dickens\n\nOctober, 1996  [Etext #675]\n\n\nThe Project Gutenberg Etext of American Notes, by Charles Dickens\n*****This file should be named amnts10.txt or amnts10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, amnts11.txt.\nVERSIONS based on separate sources get new LETTER, amnts10a.txt.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nAmerican Notes for General Circulation by Charles Dickens\nScanned and proofed by David Price\nemail ccx074@coventry.ac.uk\n\n\n\n\n\nAmerican Notes for General Circulation\n\n\n\n\n\n\nPREFACE TO THE FIRST CHEAP EDITION OF \"AMERICAN NOTES\"\n\n\n\nIT is nearly eight years since this book was first published.  I \npresent it, unaltered, in the Cheap Edition; and such of my \nopinions as it expresses, are quite unaltered too.\n\nMy readers have opportunities of judging for themselves whether the \ninfluences and tendencies which I distrust in America, have any \nexistence not in my imagination.  They can examine for themselves \nwhether there has been anything in the public career of that \ncountry during these past eight years, or whether there is anything \nin its present position, at home or abroad, which suggests that \nthose influences and tendencies really do exist.  As they find the \nfact, they will judge me.  If they discern any evidences of wrong-\ngoing in any direction that I have indicated, they will acknowledge \nthat I had reason in what I wrote.  If they discern no such thing, \nthey will consider me altogether mistaken.\n\nPrejudiced, I never have been otherwise than in favour of the \nUnited States.  No visitor can ever have set foot on those shores, \nwith a stronger faith in the Republic than I had, when I landed in \nAmerica.\n\nI purposely abstain from extending these observations to any \nlength.  I have nothing to defend, or to explain away.  The truth \nis the truth; and neither childish absurdities, nor unscrupulous \ncontradictions, can make it otherwise.  The earth would still move \nround the sun, though the whole Catholic Church said No.\n\nI have many friends in America, and feel a grateful interest in the \ncountry.  To represent me as viewing it with ill-nature, animosity, \nor partisanship, is merely to do a very foolish thing, which is \nalways a very easy one; and which I have disregarded for eight \nyears, and could disregard for eighty more.\n\nLONDON, JUNE 22, 1850.\n\n\n\n\nPREFACE TO THE \"CHARLES DICKENS\" EDITION OF \"AMERICAN NOTES\"\n\n\n\nMY readers have opportunities of judging for themselves whether the \ninfluences and tendencies which I distrusted in America, had, at \nthat time, any existence but in my imagination.  They can examine \nfor themselves whether there has been anything in the public career \nof that country since, at home or abroad, which suggests that those \ninfluences and tendencies really did exist.  As they find the fact, \nthey will judge me.  If they discern any evidences of wrong-going, \nin any direction that I have indicated, they will acknowledge that \nI had reason in what I wrote.  If they discern no such indications, \nthey will consider me altogether mistaken - but not wilfully.\n\nPrejudiced, I am not, and never have been, otherwise than in favour \nof the United States.  I have many friends in America, I feel a \ngrateful interest in the country, I hope and believe it will \nsuccessfully work out a problem of the highest importance to the \nwhole human race.  To represent me as viewing AMERICA with ill-\nnature, coldness, or animosity, is merely to do a very foolish \nthing:  which is always a very easy one.\n\n\n\nCHAPTER I - GOING AWAY\n\n\n\nI SHALL never forget the one-fourth serious and three-fourths \ncomical astonishment, with which, on the morning of the third of \nJanuary eighteen-hundred-and-forty-two, I opened the door of, and \nput my head into, a 'state-room' on board the Britannia steam-\npacket, twelve hundred tons burthen per register, bound for Halifax \nand Boston, and carrying Her Majesty's mails.\n\nThat this state-room had been specially engaged for 'Charles \nDickens, Esquire, and Lady,' was rendered sufficiently clear even \nto my scared intellect by a very small manuscript, announcing the \nfact, which was pinned on a very flat quilt, covering a very thin \nmattress, spread like a surgical plaster on a most inaccessible \nshelf.  But that this was the state-room concerning which Charles \nDickens, Esquire, and Lady, had held daily and nightly conferences \nfor at least four months preceding:  that this could by any \npossibility be that small snug chamber of the imagination, which \nCharles Dickens, Esquire, with the spirit of prophecy strong upon \nhim, had always foretold would contain at least one little sofa, \nand which his lady, with a modest yet most magnificent sense of its \nlimited dimensions, had from the first opined would not hold more \nthan two enormous portmanteaus in some odd corner out of sight \n(portmanteaus which could now no more be got in at the door, not to \nsay stowed away, than a giraffe could be persuaded or forced into a \nflower-pot):  that this utterly impracticable, thoroughly hopeless, \nand profoundly preposterous box, had the remotest reference to, or \nconnection with, those chaste and pretty, not to say gorgeous \nlittle bowers, sketched by a masterly hand, in the highly varnished \nlithographic plan hanging up in the agent's counting-house in the \ncity of London:  that this room of state, in short, could be \nanything but a pleasant fiction and cheerful jest of the captain's, \ninvented and put in practice for the better relish and enjoyment of \nthe real state-room presently to be disclosed:- these were truths \nwhich I really could not, for the moment, bring my mind at all to \nbear upon or comprehend.  And I sat down upon a kind of horsehair \nslab, or perch, of which there were two within; and looked, without \nany expression of countenance whatever, at some friends who had \ncome on board with us, and who were crushing their faces into all \nmanner of shapes by endeavouring to squeeze them through the small \ndoorway.\n\nWe had experienced a pretty smart shock before coming below, which, \nbut that we were the most sanguine people living, might have \nprepared us for the worst.  The imaginative artist to whom I have \nalready made allusion, has depicted in the same great work, a \nchamber of almost interminable perspective, furnished, as Mr. \nRobins would say, in a style of more than Eastern splendour, and \nfilled (but not inconveniently so) with groups of ladies and \ngentlemen, in the very highest state of enjoyment and vivacity.  \nBefore descending into the bowels of the ship, we had passed from \nthe deck into a long narrow apartment, not unlike a gigantic hearse \nwith windows in the sides; having at the upper end a melancholy \nstove, at which three or four chilly stewards were warming their \nhands; while on either side, extending down its whole dreary \nlength, was a long, long table, over each of which a rack, fixed to \nthe low roof, and stuck full of drinking-glasses and cruet-stands, \nhinted dismally at rolling seas and heavy weather.  I had not at \nthat time seen the ideal presentment of this chamber which has \nsince gratified me so much, but I observed that one of our friends \nwho had made the arrangements for our voyage, turned pale on \nentering, retreated on the friend behind him., smote his forehead \ninvoluntarily, and said below his breath, 'Impossible! it cannot \nbe!' or words to that effect.  He recovered himself however by a \ngreat effort, and after a preparatory cough or two, cried, with a \nghastly smile which is still before me, looking at the same time \nround the walls, 'Ha! the breakfast-room, steward - eh?'  We all \nforesaw what the answer must be:  we knew the agony he suffered.  \nHe had often spoken of THE SALOON; had taken in and lived upon the \npictorial idea; had usually given us to understand, at home, that \nto form a just conception of it, it would be necessary to multiply \nthe size and furniture of an ordinary drawing-room by seven, and \nthen fall short of the reality.  When the man in reply avowed the \ntruth; the blunt, remorseless, naked truth; 'This is the saloon, \nsir' - he actually reeled beneath the blow.\n\nIn persons who were so soon to part, and interpose between their \nelse daily communication the formidable barrier of many thousand \nmiles of stormy space, and who were for that reason anxious to cast \nno other cloud, not even the passing shadow of a moment's \ndisappointment or discomfiture, upon the short interval of happy \ncompanionship that yet remained to them - in persons so situated, \nthe natural transition from these first surprises was obviously \ninto peals of hearty laughter, and I can report that I, for one, \nbeing still seated upon the slab or perch before mentioned, roared \noutright until the vessel rang again.  Thus, in less than two \nminutes after coming upon it for the first time, we all by common \nconsent agreed that this state-room was the pleasantest and most \nfacetious and capital contrivance possible; and that to have had it \none inch larger, would have been quite a disagreeable and \ndeplorable state of things.  And with this; and with showing how, - \nby very nearly closing the door, and twining in and out like \nserpents, and by counting the little washing slab as standing-room, \n- we could manage to insinuate four people into it, all at one \ntime; and entreating each other to observe how very airy it was (in \ndock), and how there was a beautiful port-hole which could be kept \nopen all day (weather permitting), and how there was quite a large \nbull's-eye just over the looking-glass which would render shaving a \nperfectly easy and delightful process (when the ship didn't roll \ntoo much); we arrived, at last, at the unanimous conclusion that it \nwas rather spacious than otherwise:  though I do verily believe \nthat, deducting the two berths, one above the other, than which \nnothing smaller for sleeping in was ever made except coffins, it \nwas no bigger than one of those hackney cabriolets which have the \ndoor behind, and shoot their fares out, like sacks of coals, upon \nthe pavement.\n\nHaving settled this point to the perfect satisfaction of all \nparties, concerned and unconcerned, we sat down round the fire in \nthe ladies' cabin - just to try the effect.  It was rather dark, \ncertainly; but somebody said, 'of course it would be light, at \nsea,' a proposition to which we all assented; echoing 'of course, \nof course;' though it would be exceedingly difficult to say why we \nthought so.  I remember, too, when we had discovered and exhausted \nanother topic of consolation in the circumstance of this ladies' \ncabin adjoining our state-room, and the consequently immense \nfeasibility of sitting there at all times and seasons, and had \nfallen into a momentary silence, leaning our faces on our hands and \nlooking at the fire, one of our party said, with the solemn air of \na man who had made a discovery, 'What a relish mulled claret will \nhave down here!' which appeared to strike us all most forcibly; as \nthough there were something spicy and high-flavoured in cabins, \nwhich essentially improved that composition, and rendered it quite \nincapable of perfection anywhere else.\n\nThere was a stewardess, too, actively engaged in producing clean \nsheets and table-cloths from the very entrails of the sofas, and \nfrom unexpected lockers, of such artful mechanism, that it made \none's head ache to see them opened one after another, and rendered \nit quite a distracting circumstance to follow her proceedings, and \nto find that every nook and corner and individual piece of \nfurniture was something else besides what it pretended to be, and \nwas a mere trap and deception and place of secret stowage, whose \nostensible purpose was its least useful one.\n\nGod bless that stewardess for her piously fraudulent account of \nJanuary voyages!  God bless her for her clear recollection of the \ncompanion passage of last year, when nobody was ill, and everybody \ndancing from morning to night, and it was 'a run' of twelve days, \nand a piece of the purest frolic, and delight, and jollity!  All \nhappiness be with her for her bright face and her pleasant Scotch \ntongue, which had sounds of old Home in it for my fellow-traveller; \nand for her predictions of fair winds and fine weather (all wrong, \nor I shouldn't be half so fond of her); and for the ten thousand \nsmall fragments of genuine womanly tact, by which, without piecing \nthem elaborately together, and patching them up into shape and form \nand case and pointed application, she nevertheless did plainly show \nthat all young mothers on one side of the Atlantic were near and \nclose at hand to their little children left upon the other; and \nthat what seemed to the uninitiated a serious journey, was, to \nthose who were in the secret, a mere frolic, to be sung about and \nwhistled at!  Light be her heart, and gay her merry eyes, for \nyears!\n\nThe state-room had grown pretty fast; but by this time it had \nexpanded into something quite bulky, and almost boasted a bay-\nwindow to view the sea from.  So we went upon deck again in high \nspirits; and there, everything was in such a state of bustle and \nactive preparation, that the blood quickened its pace, and whirled \nthrough one's veins on that clear frosty morning with involuntary \nmirthfulness.  For every gallant ship was riding slowly up and \ndown, and every little boat was splashing noisily in the water; and \nknots of people stood upon the wharf, gazing with a kind of 'dread \ndelight' on the far-famed fast American steamer; and one party of \nmen were 'taking in the milk,' or, in other words, getting the cow \non board; and another were filling the icehouses to the very throat \nwith fresh provisions; with butchers'-meat and garden-stuff, pale \nsucking-pigs, calves' heads in scores, beef, veal, and pork, and \npoultry out of all proportion; and others were coiling ropes and \nbusy with oakum yarns; and others were lowering heavy packages into \nthe hold; and the purser's head was barely visible as it loomed in \na state, of exquisite perplexity from the midst of a vast pile of \npassengers' luggage; and there seemed to be nothing going on \nanywhere, or uppermost in the mind of anybody, but preparations for \nthis mighty voyage.  This, with the bright cold sun, the bracing \nair, the crisply-curling water, the thin white crust of morning ice \nupon the decks which crackled with a sharp and cheerful sound \nbeneath the lightest tread, was irresistible.  And when, again upon \nthe shore, we turned and saw from the vessel's mast her name \nsignalled in flags of joyous colours, and fluttering by their side \nthe beautiful American banner with its stars and stripes, - the \nlong three thousand miles and more, and, longer still, the six \nwhole months of absence, so dwindled and faded, that the ship had \ngone out and come home again, and it was broad spring already in \nthe Coburg Dock at Liverpool.\n\nI have not inquired among my medical acquaintance, whether Turtle, \nand cold Punch, with Hock, Champagne, and Claret, and all the \nslight et cetera usually included in an unlimited order for a good \ndinner - especially when it is left to the liberal construction of \nmy faultless friend, Mr. Radley, of the Adelphi Hotel - are \npeculiarly calculated to suffer a sea-change; or whether a plain \nmutton-chop, and a glass or two of sherry, would be less likely of \nconversion into foreign and disconcerting material.  My own opinion \nis, that whether one is discreet or indiscreet in these \nparticulars, on the eve of a sea-voyage, is a matter of little \nconsequence; and that, to use a common phrase, 'it comes to very \nmuch the same thing in the end.'  Be this as it may, I know that \nthe dinner of that day was undeniably perfect; that it comprehended \nall these items, and a great many more; and that we all did ample \njustice to it.  And I know too, that, bating a certain tacit \navoidance of any allusion to to-morrow; such as may be supposed to \nprevail between delicate-minded turnkeys, and a sensitive prisoner \nwho is to be hanged next morning; we got on very well, and, all \nthings considered, were merry enough.\n\nWhen the morning - THE morning - came, and we met at breakfast, it \nwas curious to see how eager we all were to prevent a moment's \npause in the conversation, and how astoundingly gay everybody was:  \nthe forced spirits of each member of the little party having as \nmuch likeness to his natural mirth, as hot-house peas at five \nguineas the quart, resemble in flavour the growth of the dews, and \nair, and rain of Heaven.  But as one o'clock, the hour for going \naboard, drew near, this volubility dwindled away by little and \nlittle, despite the most persevering efforts to the contrary, until \nat last, the matter being now quite desperate, we threw off all \ndisguise; openly speculated upon where we should be this time to-\nmorrow, this time next day, and so forth; and entrusted a vast \nnumber of messages to those who intended returning to town that \nnight, which were to be delivered at home and elsewhere without \nfail, within the very shortest possible space of time after the \narrival of the railway train at Euston Square.  And commissions and \nremembrances do so crowd upon one at such a time, that we were \nstill busied with this employment when we found ourselves fused, as \nit were, into a dense conglomeration of passengers and passengers' \nfriends and passengers' luggage, all jumbled together on the deck \nof a small steamboat, and panting and snorting off to the packet, \nwhich had worked out of dock yesterday afternoon and was now lying \nat her moorings in the river.\n\nAnd there she is! all eyes are turned to where she lies, dimly \ndiscernible through the gathering fog of the early winter \nafternoon; every finger is pointed in the same direction; and \nmurmurs of interest and admiration - as 'How beautiful she looks!' \n'How trim she is!' - are heard on every side.  Even the lazy \ngentleman with his hat on one side and his hands in his pockets, \nwho has dispensed so much consolation by inquiring with a yawn of \nanother gentleman whether he is 'going across' - as if it were a \nferry - even he condescends to look that way, and nod his head, as \nwho should say, 'No mistake about THAT:' and not even the sage Lord \nBurleigh in his nod, included half so much as this lazy gentleman \nof might who has made the passage (as everybody on board has found \nout already; it's impossible to say how) thirteen times without a \nsingle accident!  There is another passenger very much wrapped-up, \nwho has been frowned down by the rest, and morally trampled upon \nand crushed, for presuming to inquire with a timid interest how \nlong it is since the poor President went down.  He is standing \nclose to the lazy gentleman, and says with a faint smile that he \nbelieves She is a very strong Ship; to which the lazy gentleman, \nlooking first in his questioner's eye and then very hard in the \nwind's, answers unexpectedly and ominously, that She need be.  Upon \nthis the lazy gentleman instantly falls very low in the popular \nestimation, and the passengers, with looks of defiance, whisper to \neach other that he is an ass, and an impostor, and clearly don't \nknow anything at all about it.\n\nBut we are made fast alongside the packet, whose huge red funnel is \nsmoking bravely, giving rich promise of serious intentions.  \nPacking-cases, portmanteaus, carpet-bags, and boxes, are already \npassed from hand to hand, and hauled on board with breathless \nrapidity.  The officers, smartly dressed, are at the gangway \nhanding the passengers up the side, and hurrying the men.  In five \nminutes' time, the little steamer is utterly deserted, and the \npacket is beset and over-run by its late freight, who instantly \npervade the whole ship, and are to be met with by the dozen in \nevery nook and corner:  swarming down below with their own baggage, \nand stumbling over other people's; disposing themselves comfortably \nin wrong cabins, and creating a most horrible confusion by having \nto turn out again; madly bent upon opening locked doors, and on \nforcing a passage into all kinds of out-of-the-way places where \nthere is no thoroughfare; sending wild stewards, with elfin hair, \nto and fro upon the breezy decks on unintelligible errands, \nimpossible of execution:  and in short, creating the most \nextraordinary and bewildering tumult.  In the midst of all this, \nthe lazy gentleman, who seems to have no luggage of any kind - not \nso much as a friend, even - lounges up and down the hurricane deck, \ncoolly puffing a cigar; and, as this unconcerned demeanour again \nexalts him in the opinion of those who have leisure to observe his \nproceedings, every time he looks up at the masts, or down at the \ndecks, or over the side, they look there too, as wondering whether \nhe sees anything wrong anywhere, and hoping that, in case he \nshould, he will have the goodness to mention it.\n\nWhat have we here?  The captain's boat! and yonder the captain \nhimself.  Now, by all our hopes and wishes, the very man he ought \nto be!  A well-made, tight-built, dapper little fellow; with a \nruddy face, which is a letter of invitation to shake him by both \nhands at once; and with a clear, blue honest eye, that it does one \ngood to see one's sparkling image in.  'Ring the bell!'  'Ding, \nding, ding!' the very bell is in a hurry.  'Now for the shore - \nwho's for the shore?' - 'These gentlemen, I am sorry to say.'  They \nare away, and never said, Good b'ye.  Ah now they wave it from the \nlittle boat.  'Good b'ye! Good b'ye!'  Three cheers from them; \nthree more from us; three more from them:  and they are gone.\n\nTo and fro, to and fro, to and fro again a hundred times!  This \nwaiting for the latest mail-bags is worse than all.  If we could \nhave gone off in the midst of that last burst, we should have \nstarted triumphantly:  but to lie here, two hours and more in the \ndamp fog, neither staying at home nor going abroad, is letting one \ngradually down into the very depths of dulness and low spirits.  A \nspeck in the mist, at last!  That's something.  It is the boat we \nwait for!  That's more to the purpose.  The captain appears on the \npaddle-box with his speaking trumpet; the officers take their \nstations; all hands are on the alert; the flagging hopes of the \npassengers revive; the cooks pause in their savoury work, and look \nout with faces full of interest.  The boat comes alongside; the \nbags are dragged in anyhow, and flung down for the moment anywhere.  \nThree cheers more:  and as the first one rings upon our ears, the \nvessel throbs like a strong giant that has just received the breath \nof life; the two great wheels turn fiercely round for the first \ntime; and the noble ship, with wind and tide astern, breaks proudly \nthrough the lashed and roaming water.\n\n\n\nCHAPTER II - THE PASSAGE OUT\n\n\n\nWE all dined together that day; and a rather formidable party we \nwere:  no fewer than eighty-six strong.  The vessel being pretty \ndeep in the water, with all her coals on board and so many \npassengers, and the weather being calm and quiet, there was but \nlittle motion; so that before the dinner was half over, even those \npassengers who were most distrustful of themselves plucked up \namazingly; and those who in the morning had returned to the \nuniversal question, 'Are you a good sailor?' a very decided \nnegative, now either parried the inquiry with the evasive reply, \n'Oh! I suppose I'm no worse than anybody else;' or, reckless of all \nmoral obligations, answered boldly 'Yes:' and with some irritation \ntoo, as though they would add, 'I should like to know what you see \nin ME, sir, particularly, to justify suspicion!'\n\nNotwithstanding this high tone of courage and confidence, I could \nnot but observe that very few remained long over their wine; and \nthat everybody had an unusual love of the open air; and that the \nfavourite and most coveted seats were invariably those nearest to \nthe door.  The tea-table, too, was by no means as well attended as \nthe dinner-table; and there was less whist-playing than might have \nbeen expected.  Still, with the exception of one lady, who had \nretired with some precipitation at dinner-time, immediately after \nbeing assisted to the finest cut of a very yellow boiled leg of \nmutton with very green capers, there were no invalids as yet; and \nwalking, and smoking, and drinking of brandy-and-water (but always \nin the open air), went on with unabated spirit, until eleven \no'clock or thereabouts, when 'turning in' - no sailor of seven \nhours' experience talks of going to bed - became the order of the \nnight.  The perpetual tramp of boot-heels on the decks gave place \nto a heavy silence, and the whole human freight was stowed away \nbelow, excepting a very few stragglers, like myself, who were \nprobably, like me, afraid to go there.\n\nTo one unaccustomed to such scenes, this is a very striking time on \nshipboard.  Afterwards, and when its novelty had long worn off, it \nnever ceased to have a peculiar interest and charm for me.  The \ngloom through which the great black mass holds its direct and \ncertain course; the rushing water, plainly heard, but dimly seen; \nthe broad, white, glistening track, that follows in the vessel's \nwake; the men on the look-out forward, who would be scarcely \nvisible against the dark sky, but for their blotting out some score \nof glistening stars; the helmsman at the wheel, with the \nilluminated card before him, shining, a speck of light amidst the \ndarkness, like something sentient and of Divine intelligence; the \nmelancholy sighing of the wind through block, and rope, and chain; \nthe gleaming forth of light from every crevice, nook, and tiny \npiece of glass about the decks, as though the ship were filled with \nfire in hiding, ready to burst through any outlet, wild with its \nresistless power of death and ruin.  At first, too, and even when \nthe hour, and all the objects it exalts, have come to be familiar, \nit is difficult, alone and thoughtful, to hold them to their proper \nshapes and forms.  They change with the wandering fancy; assume the \nsemblance of things left far away; put on the well-remembered \naspect of favourite places dearly loved; and even people them with \nshadows.  Streets, houses, rooms; figures so like their usual \noccupants, that they have startled me by their reality, which far \nexceeded, as it seemed to me, all power of mine to conjure up the \nabsent; have, many and many a time, at such an hour, grown suddenly \nout of objects with whose real look, and use, and purpose, I was as \nwell acquainted as with my own two hands.\n\nMy own two hands, and feet likewise, being very cold, however, on \nthis particular occasion, I crept below at midnight.  It was not \nexactly comfortable below.  It was decidedly close; and it was \nimpossible to be unconscious of the presence of that extraordinary \ncompound of strange smells, which is to be found nowhere but on \nboard ship, and which is such a subtle perfume that it seems to \nenter at every pore of the skin, and whisper of the hold.  Two \npassengers' wives (one of them my own) lay already in silent \nagonies on the sofa; and one lady's maid (MY lady's) was a mere \nbundle on the floor, execrating her destiny, and pounding her curl-\npapers among the stray boxes.  Everything sloped the wrong way:  \nwhich in itself was an aggravation scarcely to be borne.  I had \nleft the door open, a moment before, in the bosom of a gentle \ndeclivity, and, when I turned to shut it, it was on the summit of a \nlofty eminence.  Now every plank and timber creaked, as if the ship \nwere made of wicker-work; and now crackled, like an enormous fire \nof the driest possible twigs.  There was nothing for it but bed; so \nI went to bed.\n\nIt was pretty much the same for the next two days, with a tolerably \nfair wind and dry weather.  I read in bed (but to this hour I don't \nknow what) a good deal; and reeled on deck a little; drank cold \nbrandy-and-water with an unspeakable disgust, and ate hard biscuit \nperseveringly:  not ill, but going to be.\n\nIt is the third morning.  I am awakened out of my sleep by a dismal \nshriek from my wife, who demands to know whether there's any \ndanger.  I rouse myself, and look out of bed.  The water-jug is \nplunging and leaping like a lively dolphin; all the smaller \narticles are afloat, except my shoes, which are stranded on a \ncarpet-bag, high and dry, like a couple of coal-barges.  Suddenly I \nsee them spring into the air, and behold the looking-glass, which \nis nailed to the wall, sticking fast upon the ceiling.  At the same \ntime the door entirely disappears, and a new one is opened in the \nfloor.  Then I begin to comprehend that the state-room is standing \non its head.\n\nBefore it is possible to make any arrangement at all compatible \nwith this novel state of things, the ship rights.  Before one can \nsay 'Thank Heaven!' she wrongs again.  Before one can cry she IS \nwrong, she seems to have started forward, and to be a creature \nactually running of its own accord, with broken knees and failing \nlegs, through every variety of hole and pitfall, and stumbling \nconstantly.  Before one can so much as wonder, she takes a high \nleap into the air.  Before she has well done that, she takes a deep \ndive into the water.  Before she has gained the surface, she throws \na summerset.  The instant she is on her legs, she rushes backward.  \nAnd so she goes on staggering, heaving, wrestling, leaping, diving, \njumping, pitching, throbbing, rolling, and rocking:  and going \nthrough all these movements, sometimes by turns, and sometimes \naltogether:  until one feels disposed to roar for mercy.\n\nA steward passes.  'Steward!'  'Sir?'  'What IS the matter? what DO \nyou call this?'  'Rather a heavy sea on, sir, and a head-wind.'\n\nA head-wind!  Imagine a human face upon the vessel's prow, with \nfifteen thousand Samsons in one bent upon driving her back, and \nhitting her exactly between the eyes whenever she attempts to \nadvance an inch.  Imagine the ship herself, with every pulse and \nartery of her huge body swollen and bursting under this \nmaltreatment, sworn to go on or die.  Imagine the wind howling, the \nsea roaring, the rain beating:  all in furious array against her.  \nPicture the sky both dark and wild, and the clouds, in fearful \nsympathy with the waves, making another ocean in the air.  Add to \nall this, the clattering on deck and down below; the tread of \nhurried feet; the loud hoarse shouts of seamen; the gurgling in and \nout of water through the scuppers; with, every now and then, the \nstriking of a heavy sea upon the planks above, with the deep, dead, \nheavy sound of thunder heard within a vault; - and there is the \nhead-wind of that January morning.\n\nI say nothing of what may be called the domestic noises of the \nship:  such as the breaking of glass and crockery, the tumbling \ndown of stewards, the gambols, overhead, of loose casks and truant \ndozens of bottled porter, and the very remarkable and far from \nexhilarating sounds raised in their various state-rooms by the \nseventy passengers who were too ill to get up to breakfast.  I say \nnothing of them:  for although I lay listening to this concert for \nthree or four days, I don't think I heard it for more than a \nquarter of a minute, at the expiration of which term, I lay down \nagain, excessively sea-sick.\n\nNot sea-sick, be it understood, in the ordinary acceptation of the \nterm:  I wish I had been:  but in a form which I have never seen or \nheard described, though I have no doubt it is very common.  I lay \nthere, all the day long, quite coolly and contentedly; with no \nsense of weariness, with no desire to get up, or get better, or \ntake the air; with no curiosity, or care, or regret, of any sort or \ndegree, saving that I think I can remember, in this universal \nindifference, having a kind of lazy joy - of fiendish delight, if \nanything so lethargic can be dignified with the title - in the fact \nof my wife being too ill to talk to me.  If I may be allowed to \nillustrate my state of mind by such an example, I should say that I \nwas exactly in the condition of the elder Mr. Willet, after the \nincursion of the rioters into his bar at Chigwell.  Nothing would \nhave surprised me.  If, in the momentary illumination of any ray of \nintelligence that may have come upon me in the way of thoughts of \nHome, a goblin postman, with a scarlet coat and bell, had come into \nthat little kennel before me, broad awake in broad day, and, \napologising for being damp through walking in the sea, had handed \nme a letter directed to myself, in familiar characters, I am \ncertain I should not have felt one atom of astonishment:  I should \nhave been perfectly satisfied.  If Neptune himself had walked in, \nwith a toasted shark on his trident, I should have looked upon the \nevent as one of the very commonest everyday occurrences.\n\nOnce - once - I found myself on deck.  I don't know how I got \nthere, or what possessed me to go there, but there I was; and \ncompletely dressed too, with a huge pea-coat on, and a pair of \nboots such as no weak man in his senses could ever have got into.  \nI found myself standing, when a gleam of consciousness came upon \nme, holding on to something.  I don't know what.  I think it was \nthe boatswain:  or it may have been the pump:  or possibly the cow.  \nI can't say how long I had been there; whether a day or a minute.  \nI recollect trying to think about something (about anything in the \nwhole wide world, I was not particular) without the smallest \neffect.  I could not even make out which was the sea, and which the \nsky, for the horizon seemed drunk, and was flying wildly about in \nall directions.  Even in that incapable state, however, I \nrecognised the lazy gentleman standing before me:  nautically clad \nin a suit of shaggy blue, with an oilskin hat.  But I was too \nimbecile, although I knew it to be he, to separate him from his \ndress; and tried to call him, I remember, PILOT.  After another \ninterval of total unconsciousness, I found he had gone, and \nrecognised another figure in its place.  It seemed to wave and \nfluctuate before me as though I saw it reflected in an unsteady \nlooking-glass; but I knew it for the captain; and such was the \ncheerful influence of his face, that I tried to smile:  yes, even \nthen I tried to smile.  I saw by his gestures that he addressed me; \nbut it was a long time before I could make out that he remonstrated \nagainst my standing up to my knees in water - as I was; of course I \ndon't know why.  I tried to thank him, but couldn't.  I could only \npoint to my boots - or wherever I supposed my boots to be - and say \nin a plaintive voice, 'Cork soles:' at the same time endeavouring, \nI am told, to sit down in the pool.  Finding that I was quite \ninsensible, and for the time a maniac, he humanely conducted me \nbelow.\n\nThere I remained until I got better:  suffering, whenever I was \nrecommended to eat anything, an amount of anguish only second to \nthat which is said to be endured by the apparently drowned, in the \nprocess of restoration to life.  One gentleman on board had a \nletter of introduction to me from a mutual friend in London.  He \nsent it below with his card, on the morning of the head-wind; and I \nwas long troubled with the idea that he might be up, and well, and \na hundred times a day expecting me to call upon him in the saloon.  \nI imagined him one of those cast-iron images - I will not call them \nmen - who ask, with red faces, and lusty voices, what sea-sickness \nmeans, and whether it really is as bad as it is represented to be.  \nThis was very torturing indeed; and I don't think I ever felt such \nperfect gratification and gratitude of heart, as I did when I heard \nfrom the ship's doctor that he had been obliged to put a large \nmustard poultice on this very gentleman's stomach.  I date my \nrecovery from the receipt of that intelligence.\n\nIt was materially assisted though, I have no doubt, by a heavy gale \nof wind, which came slowly up at sunset, when we were about ten \ndays out, and raged with gradually increasing fury until morning, \nsaving that it lulled for an hour a little before midnight.  There \nwas something in the unnatural repose of that hour, and in the \nafter gathering of the storm, so inconceivably awful and \ntremendous, that its bursting into full violence was almost a \nrelief.\n\nThe labouring of the ship in the troubled sea on this night I shall \nnever forget.  'Will it ever be worse than this?' was a question I \nhad often heard asked, when everything was sliding and bumping \nabout, and when it certainly did seem difficult to comprehend the \npossibility of anything afloat being more disturbed, without \ntoppling over and going down.  But what the agitation of a steam-\nvessel is, on a bad winter's night in the wild Atlantic, it is \nimpossible for the most vivid imagination to conceive.  To say that \nshe is flung down on her side in the waves, with her masts dipping \ninto them, and that, springing up again, she rolls over on the \nother side, until a heavy sea strikes her with the noise of a \nhundred great guns, and hurls her back - that she stops, and \nstaggers, and shivers, as though stunned, and then, with a violent \nthrobbing at her heart, darts onward like a monster goaded into \nmadness, to be beaten down, and battered, and crushed, and leaped \non by the angry sea - that thunder, lightning, hail, and rain, and \nwind, are all in fierce contention for the mastery - that every \nplank has its groan, every nail its shriek, and every drop of water \nin the great ocean its howling voice - is nothing.  To say that all \nis grand, and all appalling and horrible in the last degree, is \nnothing.  Words cannot express it.  Thoughts cannot convey it.  \nOnly a dream can call it up again, in all its fury, rage, and \npassion.\n\nAnd yet, in the very midst of these terrors, I was placed in a \nsituation so exquisitely ridiculous, that even then I had as strong \na sense of its absurdity as I have now, and could no more help \nlaughing than I can at any other comical incident, happening under \ncircumstances the most favourable to its enjoyment.  About midnight \nwe shipped a sea, which forced its way through the skylights, burst \nopen the doors above, and came raging and roaring down into the \nladies' cabin, to the unspeakable consternation of my wife and a \nlittle Scotch lady - who, by the way, had previously sent a message \nto the captain by the stewardess, requesting him, with her \ncompliments, to have a steel conductor immediately attached to the \ntop of every mast, and to the chimney, in order that the ship might \nnot be struck by lightning.  They and the handmaid before \nmentioned, being in such ecstasies of fear that I scarcely knew \nwhat to do with them, I naturally bethought myself of some \nrestorative or comfortable cordial; and nothing better occurring to \nme, at the moment, than hot brandy-and-water, I procured a tumbler \nfull without delay.  It being impossible to stand or sit without \nholding on, they were all heaped together in one corner of a long \nsofa - a fixture extending entirely across the cabin - where they \nclung to each other in momentary expectation of being drowned.  \nWhen I approached this place with my specific, and was about to \nadminister it with many consolatory expressions to the nearest \nsufferer, what was my dismay to see them all roll slowly down to \nthe other end!  And when I staggered to that end, and held out the \nglass once more, how immensely baffled were my good intentions by \nthe ship giving another lurch, and their all rolling back again!  I \nsuppose I dodged them up and down this sofa for at least a quarter \nof an hour, without reaching them once; and by the time I did catch \nthem, the brandy-and-water was diminished, by constant spilling, to \na teaspoonful.  To complete the group, it is necessary to recognise \nin this disconcerted dodger, an individual very pale from sea-\nsickness, who had shaved his beard and brushed his hair, last, at \nLiverpool:  and whose only article of dress (linen not included) \nwere a pair of dreadnought trousers; a blue jacket, formerly \nadmired upon the Thames at Richmond; no stockings; and one slipper.\n\nOf the outrageous antics performed by that ship next morning; which \nmade bed a practical joke, and getting up, by any process short of \nfalling out, an impossibility; I say nothing.  But anything like \nthe utter dreariness and desolation that met my eyes when I \nliterally 'tumbled up' on deck at noon, I never saw.  Ocean and sky \nwere all of one dull, heavy, uniform, lead colour.  There was no \nextent of prospect even over the dreary waste that lay around us, \nfor the sea ran high, and the horizon encompassed us like a large \nblack hoop.  Viewed from the air, or some tall bluff on shore, it \nwould have been imposing and stupendous, no doubt; but seen from \nthe wet and rolling decks, it only impressed one giddily and \npainfully.  In the gale of last night the life-boat had been \ncrushed by one blow of the sea like a walnut-shell; and there it \nhung dangling in the air:  a mere faggot of crazy boards.  The \nplanking of the paddle-boxes had been torn sheer away.  The wheels \nwere exposed and bare; and they whirled and dashed their spray \nabout the decks at random.  Chimney, white with crusted salt; \ntopmasts struck; storm-sails set; rigging all knotted, tangled, \nwet, and drooping:  a gloomier picture it would be hard to look \nupon.\n\nI was now comfortably established by courtesy in the ladies' cabin, \nwhere, besides ourselves, there were only four other passengers.  \nFirst, the little Scotch lady before mentioned, on her way to join \nher husband at New York, who had settled there three years before.  \nSecondly and thirdly, an honest young Yorkshireman, connected with \nsome American house; domiciled in that same city, and carrying \nthither his beautiful young wife to whom he had been married but a \nfortnight, and who was the fairest specimen of a comely English \ncountry girl I have ever seen.  Fourthy, fifthly, and lastly, \nanother couple:  newly married too, if one might judge from the \nendearments they frequently interchanged:  of whom I know no more \nthan that they were rather a mysterious, run-away kind of couple; \nthat the lady had great personal attractions also; and that the \ngentleman carried more guns with him than Robinson Crusoe, wore a \nshooting-coat, and had two great dogs on board.  On further \nconsideration, I remember that he tried hot roast pig and bottled \nale as a cure for sea-sickness; and that he took these remedies \n(usually in bed) day after day, with astonishing perseverance.  I \nmay add, for the information of the curious, that they decidedly \nfailed.\n\nThe weather continuing obstinately and almost unprecedentedly bad, \nwe usually straggled into this cabin, more or less faint and \nmiserable, about an hour before noon, and lay down on the sofas to \nrecover; during which interval, the captain would look in to \ncommunicate the state of the wind, the moral certainty of its \nchanging to-morrow (the weather is always going to improve to-\nmorrow, at sea), the vessel's rate of sailing, and so forth.  \nObservations there were none to tell us of, for there was no sun to \ntake them by.  But a description of one day will serve for all the \nrest.  Here it is.\n\nThe captain being gone, we compose ourselves to read, if the place \nbe light enough; and if not, we doze and talk alternately.  At one, \na bell rings, and the stewardess comes down with a steaming dish of \nbaked potatoes, and another of roasted apples; and plates of pig's \nface, cold ham, salt beef; or perhaps a smoking mess of rare hot \ncollops.  We fall to upon these dainties; eat as much as we can (we \nhave great appetites now); and are as long as possible about it.  \nIf the fire will burn (it WILL sometimes) we are pretty cheerful.  \nIf it won't, we all remark to each other that it's very cold, rub \nour hands, cover ourselves with coats and cloaks, and lie down \nagain to doze, talk, and read (provided as aforesaid), until \ndinner-time.  At five, another bell rings, and the stewardess \nreappears with another dish of potatoes - boiled this time - and \nstore of hot meat of various kinds:  not forgetting the roast pig, \nto be taken medicinally.  We sit down at table again (rather more \ncheerfully than before); prolong the meal with a rather mouldy \ndessert of apples, grapes, and oranges; and drink our wine and \nbrandy-and-water.  The bottles and glasses are still upon the \ntable, and the oranges and so forth are rolling about according to \ntheir fancy and the ship's way, when the doctor comes down, by \nspecial nightly invitation, to join our evening rubber:  \nimmediately on whose arrival we make a party at whist, and as it is \na rough night and the cards will not lie on the cloth, we put the \ntricks in our pockets as we take them.  At whist we remain with \nexemplary gravity (deducting a short time for tea and toast) until \neleven o'clock, or thereabouts; when the captain comes down again, \nin a sou'-wester hat tied under his chin, and a pilot-coat:  making \nthe ground wet where he stands.  By this time the card-playing is \nover, and the bottles and glasses are again upon the table; and \nafter an hour's pleasant conversation about the ship, the \npassengers, and things in general, the captain (who never goes to \nbed, and is never out of humour) turns up his coat collar for the \ndeck again; shakes hands all round; and goes laughing out into the \nweather as merrily as to a birthday party.\n\nAs to daily news, there is no dearth of that commodity.  This \npassenger is reported to have lost fourteen pounds at Vingt-et-un \nin the saloon yesterday; and that passenger drinks his bottle of \nchampagne every day, and how he does it (being only a clerk), \nnobody knows.  The head engineer has distinctly said that there \nnever was such times - meaning weather - and four good hands are \nill, and have given in, dead beat.  Several berths are full of \nwater, and all the cabins are leaky.  The ship's cook, secretly \nswigging damaged whiskey, has been found drunk; and has been played \nupon by the fire-engine until quite sober.  All the stewards have \nfallen down-stairs at various dinner-times, and go about with \nplasters in various places.  The baker is ill, and so is the \npastry-cook.  A new man, horribly indisposed, has been required to \nfill the place of the latter officer; and has been propped and \njammed up with empty casks in a little house upon deck, and \ncommanded to roll out pie-crust, which he protests (being highly \nbilious) it is death to him to look at.  News!  A dozen murders on \nshore would lack the interest of these slight incidents at sea.\n\nDivided between our rubber and such topics as these, we were \nrunning (as we thought) into Halifax Harbour, on the fifteenth \nnight, with little wind and a bright moon - indeed, we had made the \nLight at its outer entrance, and put the pilot in charge - when \nsuddenly the ship struck upon a bank of mud.  An immediate rush on \ndeck took place of course; the sides were crowded in an instant; \nand for a few minutes we were in as lively a state of confusion as \nthe greatest lover of disorder would desire to see.  The \npassengers, and guns, and water-casks, and other heavy matters, \nbeing all huddled together aft, however, to lighten her in the \nhead, she was soon got off; and after some driving on towards an \nuncomfortable line of objects (whose vicinity had been announced \nvery early in the disaster by a loud cry of 'Breakers a-head!') and \nmuch backing of paddles, and heaving of the lead into a constantly \ndecreasing depth of water, we dropped anchor in a strange \noutlandish-looking nook which nobody on board could recognise, \nalthough there was land all about us, and so close that we could \nplainly see the waving branches of the trees.\n\nIt was strange enough, in the silence of midnight, and the dead \nstillness that seemed to be created by the sudden and unexpected \nstoppage of the engine which had been clanking and blasting in our \nears incessantly for so many days, to watch the look of blank \nastonishment expressed in every face:  beginning with the officers, \ntracing it through all the passengers, and descending to the very \nstokers and furnacemen, who emerged from below, one by one, and \nclustered together in a smoky group about the hatchway of the \nengine-room, comparing notes in whispers.  After throwing up a few \nrockets and firing signal guns in the hope of being hailed from the \nland, or at least of seeing a light - but without any other sight \nor sound presenting itself - it was determined to send a boat on \nshore.  It was amusing to observe how very kind some of the \npassengers were, in volunteering to go ashore in this same boat:  \nfor the general good, of course:  not by any means because they \nthought the ship in an unsafe position, or contemplated the \npossibility of her heeling over in case the tide were running out.  \nNor was it less amusing to remark how desperately unpopular the \npoor pilot became in one short minute.  He had had his passage out \nfrom Liverpool, and during the whole voyage had been quite a \nnotorious character, as a teller of anecdotes and cracker of jokes.  \nYet here were the very men who had laughed the loudest at his \njests, now flourishing their fists in his face, loading him with \nimprecations, and defying him to his teeth as a villain!\n\nThe boat soon shoved off, with a lantern and sundry blue lights on \nboard; and in less than an hour returned; the officer in command \nbringing with him a tolerably tall young tree, which he had plucked \nup by the roots, to satisfy certain distrustful passengers whose \nminds misgave them that they were to be imposed upon and \nshipwrecked, and who would on no other terms believe that he had \nbeen ashore, or had done anything but fraudulently row a little way \ninto the mist, specially to deceive them and compass their deaths.  \nOur captain had foreseen from the first that we must be in a place \ncalled the Eastern passage; and so we were.  It was about the last \nplace in the world in which we had any business or reason to be, \nbut a sudden fog, and some error on the pilot's part, were the \ncause.  We were surrounded by banks, and rocks, and shoals of all \nkinds, but had happily drifted, it seemed, upon the only safe speck \nthat was to be found thereabouts.  Eased by this report, and by the \nassurance that the tide was past the ebb, we turned in at three \no'clock in the morning.\n\nI was dressing about half-past nine next day, when the noise above \nhurried me on deck.  When I had left it overnight, it was dark, \nfoggy, and damp, and there were bleak hills all round us.  Now, we \nwere gliding down a smooth, broad stream, at the rate of eleven \nmiles an hour:  our colours flying gaily; our crew rigged out in \ntheir smartest clothes; our officers in uniform again; the sun \nshining as on a brilliant April day in England; the land stretched \nout on either side, streaked with light patches of snow; white \nwooden houses; people at their doors; telegraphs working; flags \nhoisted; wharfs appearing; ships; quays crowded with people; \ndistant noises; shouts; men and boys running down steep places \ntowards the pier:  all more bright and gay and fresh to our unused \neyes than words can paint them.  We came to a wharf, paved with \nuplifted faces; got alongside, and were made fast, after some \nshouting and straining of cables; darted, a score of us along the \ngangway, almost as soon as it was thrust out to meet us, and before \nit had reached the ship - and leaped upon the firm glad earth \nagain!\n\nI suppose this Halifax would have appeared an Elysium, though it \nhad been a curiosity of ugly dulness.  But I carried away with me a \nmost pleasant impression of the town and its inhabitants, and have \npreserved it to this hour.  Nor was it without regret that I came \nhome, without having found an opportunity of returning thither, and \nonce more shaking hands with the friends I made that day.\n\nIt happened to be the opening of the Legislative Council and \nGeneral Assembly, at which ceremonial the forms observed on the \ncommencement of a new Session of Parliament in England were so \nclosely copied, and so gravely presented on a small scale, that it \nwas like looking at Westminster through the wrong end of a \ntelescope.  The governor, as her Majesty's representative, \ndelivered what may be called the Speech from the Throne.  He said \nwhat he had to say manfully and well.  The military band outside \nthe building struck up \"God save the Queen\" with great vigour \nbefore his Excellency had quite finished; the people shouted; the \nin's rubbed their hands; the out's shook their heads; the \nGovernment party said there never was such a good speech; the \nOpposition declared there never was such a bad one; the Speaker and \nmembers of the House of Assembly withdrew from the bar to say a \ngreat deal among themselves and do a little:  and, in short, \neverything went on, and promised to go on, just as it does at home \nupon the like occasions.\n\nThe town is built on the side of a hill, the highest point being \ncommanded by a strong fortress, not yet quite finished.  Several \nstreets of good breadth and appearance extend from its summit to \nthe water-side, and are intersected by cross streets running \nparallel with the river.  The houses are chiefly of wood.  The \nmarket is abundantly supplied; and provisions are exceedingly \ncheap.  The weather being unusually mild at that time for the \nseason of the year, there was no sleighing:  but there were plenty \nof those vehicles in yards and by-places, and some of them, from \nthe gorgeous quality of their decorations, might have 'gone on' \nwithout alteration as triumphal cars in a melodrama at Astley's.  \nThe day was uncommonly fine; the air bracing and healthful; the \nwhole aspect of the town cheerful, thriving, and industrious.\n\nWe lay there seven hours, to deliver and exchange the mails.  At \nlength, having collected all our bags and all our passengers \n(including two or three choice spirits, who, having indulged too \nfreely in oysters and champagne, were found lying insensible on \ntheir backs in unfrequented streets), the engines were again put in \nmotion, and we stood off for Boston.\n\nEncountering squally weather again in the Bay of Fundy, we tumbled \nand rolled about as usual all that night and all next day.  On the \nnext afternoon, that is to say, on Saturday, the twenty-second of \nJanuary, an American pilot-boat came alongside, and soon afterwards \nthe Britannia steam-packet, from Liverpool, eighteen days out, was \ntelegraphed at Boston.\n\nThe indescribable interest with which I strained my eyes, as the \nfirst patches of American soil peeped like molehills from the green \nsea, and followed them, as they swelled, by slow and almost \nimperceptible degrees, into a continuous line of coast, can hardly \nbe exaggerated.  A sharp keen wind blew dead against us; a hard \nfrost prevailed on shore; and the cold was most severe.  Yet the \nair was so intensely clear, and dry, and bright, that the \ntemperature was not only endurable, but delicious.\n\nHow I remained on deck, staring about me, until we came alongside \nthe dock, and how, though I had had as many eyes as Argus, I should \nhave had them all wide open, and all employed on new objects - are \ntopics which I will not prolong this chapter to discuss.  Neither \nwill I more than hint at my foreigner-like mistake in supposing \nthat a party of most active persons, who scrambled on board at the \nperil of their lives as we approached the wharf, were newsmen, \nanswering to that industrious class at home; whereas, despite the \nleathern wallets of news slung about the necks of some, and the \nbroad sheets in the hands of all, they were Editors, who boarded \nships in person (as one gentleman in a worsted comforter informed \nme), 'because they liked the excitement of it.'  Suffice it in this \nplace to say, that one of these invaders, with a ready courtesy for \nwhich I thank him here most gratefully, went on before to order \nrooms at the hotel; and that when I followed, as I soon did, I \nfound myself rolling through the long passages with an involuntary \nimitation of the gait of Mr. T. P. Cooke, in a new nautical \nmelodrama.\n\n'Dinner, if you please,' said I to the waiter.\n\n'When?' said the waiter.\n\n'As quick as possible,' said I.\n\n'Right away?' said the waiter.\n\nAfter a moment's hesitation, I answered 'No,' at hazard.\n\n'NOT right away?' cried the waiter, with an amount of surprise that \nmade me start.\n\nI looked at him doubtfully, and returned, 'No; I would rather have \nit in this private room.  I like it very much.'\n\nAt this, I really thought the waiter must have gone out of his \nmind:  as I believe he would have done, but for the interposition \nof another man, who whispered in his ear, 'Directly.'\n\n'Well! and that's a fact!' said the waiter, looking helplessly at \nme:  'Right away.'\n\nI saw now that 'Right away' and 'Directly' were one and the same \nthing.  So I reversed my previous answer, and sat down to dinner in \nten minutes afterwards; and a capital dinner it was.\n\nThe hotel (a very excellent one) is called the Tremont House.  It \nhas more galleries, colonnades, piazzas, and passages than I can \nremember, or the reader would believe.\n\n\n\nCHAPTER III - BOSTON\n\n\n\nIN all the public establishments of America, the utmost courtesy \nprevails.  Most of our Departments are susceptible of considerable \nimprovement in this respect, but the Custom-house above all others \nwould do well to take example from the United States and render \nitself somewhat less odious and offensive to foreigners.  The \nservile rapacity of the French officials is sufficiently \ncontemptible; but there is a surly boorish incivility about our \nmen, alike disgusting to all persons who fall into their hands, and \ndiscreditable to the nation that keeps such ill-conditioned curs \nsnarling about its gates.\n\nWhen I landed in America, I could not help being strongly impressed \nwith the contrast their Custom-house presented, and the attention, \npoliteness and good humour with which its officers discharged their \nduty.\n\nAs we did not land at Boston, in consequence of some detention at \nthe wharf, until after dark, I received my first impressions of the \ncity in walking down to the Custom-house on the morning after our \narrival, which was Sunday.  I am afraid to say, by the way, how \nmany offers of pews and seats in church for that morning were made \nto us, by formal note of invitation, before we had half finished \nour first dinner in America, but if I may be allowed to make a \nmoderate guess, without going into nicer calculation, I should say \nthat at least as many sittings were proffered us, as would have \naccommodated a score or two of grown-up families.  The number of \ncreeds and forms of religion to which the pleasure of our company \nwas requested, was in very fair proportion.\n\nNot being able, in the absence of any change of clothes, to go to \nchurch that day, we were compelled to decline these kindnesses, one \nand all; and I was reluctantly obliged to forego the delight of \nhearing Dr. Channing, who happened to preach that morning for the \nfirst time in a very long interval.  I mention the name of this \ndistinguished and accomplished man (with whom I soon afterwards had \nthe pleasure of becoming personally acquainted), that I may have \nthe gratification of recording my humble tribute of admiration and \nrespect for his high abilities and character; and for the bold \nphilanthropy with which he has ever opposed himself to that most \nhideous blot and foul disgrace - Slavery.\n\nTo return to Boston.  When I got into the streets upon this Sunday \nmorning, the air was so clear, the houses were so bright and gay:  \nthe signboards were painted in such gaudy colours; the gilded \nletters were so very golden; the bricks were so very red, the stone \nwas so very white, the blinds and area railings were so very green, \nthe knobs and plates upon the street doors so marvellously bright \nand twinkling; and all so slight and unsubstantial in appearance - \nthat every thoroughfare in the city looked exactly like a scene in \na pantomime.  It rarely happens in the business streets that a \ntradesman, if I may venture to call anybody a tradesman, where \neverybody is a merchant, resides above his store; so that many \noccupations are often carried on in one house, and the whole front \nis covered with boards and inscriptions.  As I walked along, I kept \nglancing up at these boards, confidently expecting to see a few of \nthem change into something; and I never turned a corner suddenly \nwithout looking out for the clown and pantaloon, who, I had no \ndoubt, were hiding in a doorway or behind some pillar close at \nhand.  As to Harlequin and Columbine, I discovered immediately that \nthey lodged (they are always looking after lodgings in a pantomime) \nat a very small clockmaker's one story high, near the hotel; which, \nin addition to various symbols and devices, almost covering the \nwhole front, had a great dial hanging out - to be jumped through, \nof course.\n\nThe suburbs are, if possible, even more unsubstantial-looking than \nthe city.  The white wooden houses (so white that it makes one wink \nto look at them), with their green jalousie blinds, are so \nsprinkled and dropped about in all directions, without seeming to \nhave any root at all in the ground; and the small churches and \nchapels are so prim, and bright, and highly varnished; that I \nalmost believed the whole affair could be taken up piecemeal like a \nchild's toy, and crammed into a little box.\n\nThe city is a beautiful one, and cannot fail, I should imagine, to \nimpress all strangers very favourably.  The private dwelling-houses \nare, for the most part, large and elegant; the shops extremely \ngood; and the public buildings handsome.  The State House is built \nupon the summit of a hill, which rises gradually at first, and \nafterwards by a steep ascent, almost from the water's edge.  In \nfront is a green enclosure, called the Common.  The site is \nbeautiful:  and from the top there is a charming panoramic view of \nthe whole town and neighbourhood.  In addition to a variety of \ncommodious offices, it contains two handsome chambers; in one the \nHouse of Representatives of the State hold their meetings:  in the \nother, the Senate.  Such proceedings as I saw here, were conducted \nwith perfect gravity and decorum; and were certainly calculated to \ninspire attention and respect.\n\nThere is no doubt that much of the intellectual refinement and \nsuperiority of Boston, is referable to the quiet influence of the \nUniversity of Cambridge, which is within three or four miles of the \ncity.  The resident professors at that university are gentlemen of \nlearning and varied attainments; and are, without one exception \nthat I can call to mind, men who would shed a grace upon, and do \nhonour to, any society in the civilised world.  Many of the \nresident gentry in Boston and its neighbourhood, and I think I am \nnot mistaken in adding, a large majority of those who are attached \nto the liberal professions there, have been educated at this same \nschool.  Whatever the defects of American universities may be, they \ndisseminate no prejudices; rear no bigots; dig up the buried ashes \nof no old superstitions; never interpose between the people and \ntheir improvement; exclude no man because of his religious \nopinions; above all, in their whole course of study and \ninstruction, recognise a world, and a broad one too, lying beyond \nthe college walls.\n\nIt was a source of inexpressible pleasure to me to observe the \nalmost imperceptible, but not less certain effect, wrought by this \ninstitution among the small community of Boston; and to note at \nevery turn the humanising tastes and desires it has engendered; the \naffectionate friendships to which it has given rise; the amount of \nvanity and prejudice it has dispelled.  The golden calf they \nworship at Boston is a pigmy compared with the giant effigies set \nup in other parts of that vast counting-house which lies beyond the \nAtlantic; and the almighty dollar sinks into something \ncomparatively insignificant, amidst a whole Pantheon of better \ngods.\n\nAbove all, I sincerely believe that the public institutions and \ncharities of this capital of Massachusetts are as nearly perfect, \nas the most considerate wisdom, benevolence, and humanity, can make \nthem.  I never in my life was more affected by the contemplation of \nhappiness, under circumstances of privation and bereavement, than \nin my visits to these establishments.\n\nIt is a great and pleasant feature of all such institutions in \nAmerica, that they are either supported by the State or assisted by \nthe State; or (in the event of their not needing its helping hand) \nthat they act in concert with it, and are emphatically the \npeople's.  I cannot but think, with a view to the principle and its \ntendency to elevate or depress the character of the industrious \nclasses, that a Public Charity is immeasurably better than a \nPrivate Foundation, no matter how munificently the latter may be \nendowed.  In our own country, where it has not, until within these \nlater days, been a very popular fashion with governments to display \nany extraordinary regard for the great mass of the people or to \nrecognise their existence as improvable creatures, private \ncharities, unexampled in the history of the earth, have arisen, to \ndo an incalculable amount of good among the destitute and \nafflicted.  But the government of the country, having neither act \nnor part in them, is not in the receipt of any portion of the \ngratitude they inspire; and, offering very little shelter or relief \nbeyond that which is to be found in the workhouse and the jail, has \ncome, not unnaturally, to be looked upon by the poor rather as a \nstern master, quick to correct and punish, than a kind protector, \nmerciful and vigilant in their hour of need.\n\nThe maxim that out of evil cometh good, is strongly illustrated by \nthese establishments at home; as the records of the Prerogative \nOffice in Doctors' Commons can abundantly prove.  Some immensely \nrich old gentleman or lady, surrounded by needy relatives, makes, \nupon a low average, a will a-week.  The old gentleman or lady, \nnever very remarkable in the best of times for good temper, is full \nof aches and pains from head to foot; full of fancies and caprices; \nfull of spleen, distrust, suspicion, and dislike.  To cancel old \nwills, and invent new ones, is at last the sole business of such a \ntestator's existence; and relations and friends (some of whom have \nbeen bred up distinctly to inherit a large share of the property, \nand have been, from their cradles, specially disqualified from \ndevoting themselves to any useful pursuit, on that account) are so \noften and so unexpectedly and summarily cut off, and reinstated, \nand cut off again, that the whole family, down to the remotest \ncousin, is kept in a perpetual fever.  At length it becomes plain \nthat the old lady or gentleman has not long to live; and the \nplainer this becomes, the more clearly the old lady or gentleman \nperceives that everybody is in a conspiracy against their poor old \ndying relative; wherefore the old lady or gentleman makes another \nlast will - positively the last this time - conceals the same in a \nchina teapot, and expires next day.  Then it turns out, that the \nwhole of the real and personal estate is divided between half-a-\ndozen charities; and that the dead and gone testator has in pure \nspite helped to do a great deal of good, at the cost of an immense \namount of evil passion and misery.\n\nThe Perkins Institution and Massachusetts Asylum for the Blind, at \nBoston, is superintended by a body of trustees who make an annual \nreport to the corporation.  The indigent blind of that state are \nadmitted gratuitously.  Those from the adjoining state of \nConnecticut, or from the states of Maine, Vermont, or New \nHampshire, are admitted by a warrant from the state to which they \nrespectively belong; or, failing that, must find security among \ntheir friends, for the payment of about twenty pounds English for \ntheir first year's board and instruction, and ten for the second.  \n'After the first year,' say the trustees, 'an account current will \nbe opened with each pupil; he will be charged with the actual cost \nof his board, which will not exceed two dollars per week;' a trifle \nmore than eight shillings English; 'and he will be credited with \nthe amount paid for him by the state, or by his friends; also with \nhis earnings over and above the cost of the stock which he uses; so \nthat all his earnings over one dollar per week will be his own.  By \nthe third year it will be known whether his earnings will more than \npay the actual cost of his board; if they should, he will have it \nat his option to remain and receive his earnings, or not.  Those \nwho prove unable to earn their own livelihood will not be retained; \nas it is not desirable to convert the establishment into an alms-\nhouse, or to retain any but working bees in the hive.  Those who by \nphysical or mental imbecility are disqualified from work, are \nthereby disqualified from being members of an industrious \ncommunity; and they can be better provided for in establishments \nfitted for the infirm.'\n\nI went to see this place one very fine winter morning:  an Italian \nsky above, and the air so clear and bright on every side, that even \nmy eyes, which are none of the best, could follow the minute lines \nand scraps of tracery in distant buildings.  Like most other public \ninstitutions in America, of the same class, it stands a mile or two \nwithout the town, in a cheerful healthy spot; and is an airy, \nspacious, handsome edifice.  It is built upon a height, commanding \nthe harbour.  When I paused for a moment at the door, and marked \nhow fresh and free the whole scene was - what sparkling bubbles \nglanced upon the waves, and welled up every moment to the surface, \nas though the world below, like that above, were radiant with the \nbright day, and gushing over in its fulness of light:  when I gazed \nfrom sail to sail away upon a ship at sea, a tiny speck of shining \nwhite, the only cloud upon the still, deep, distant blue - and, \nturning, saw a blind boy with his sightless face addressed that \nway, as though he too had some sense within him of the glorious \ndistance:  I felt a kind of sorrow that the place should be so very \nlight, and a strange wish that for his sake it were darker.  It was \nbut momentary, of course, and a mere fancy, but I felt it keenly \nfor all that.\n\nThe children were at their daily tasks in different rooms, except a \nfew who were already dismissed, and were at play.  Here, as in many \ninstitutions, no uniform is worn; and I was very glad of it, for \ntwo reasons.  Firstly, because I am sure that nothing but senseless \ncustom and want of thought would reconcile us to the liveries and \nbadges we are so fond of at home.  Secondly, because the absence of \nthese things presents each child to the visitor in his or her own \nproper character, with its individuality unimpaired; not lost in a \ndull, ugly, monotonous repetition of the same unmeaning garb:  \nwhich is really an important consideration.  The wisdom of \nencouraging a little harmless pride in personal appearance even \namong the blind, or the whimsical absurdity of considering charity \nand leather breeches inseparable companions, as we do, requires no \ncomment.\n\nGood order, cleanliness, and comfort, pervaded every corner of the \nbuilding.  The various classes, who were gathered round their \nteachers, answered the questions put to them with readiness and \nintelligence, and in a spirit of cheerful contest for precedence \nwhich pleased me very much.  Those who were at play, were gleesome \nand noisy as other children.  More spiritual and affectionate \nfriendships appeared to exist among them, than would be found among \nother young persons suffering under no deprivation; but this I \nexpected and was prepared to find.  It is a part of the great \nscheme of Heaven's merciful consideration for the afflicted.\n\nIn a portion of the building, set apart for that purpose, are work-\nshops for blind persons whose education is finished, and who have \nacquired a trade, but who cannot pursue it in an ordinary \nmanufactory because of their deprivation.  Several people were at \nwork here; making brushes, mattresses, and so forth; and the \ncheerfulness, industry, and good order discernible in every other \npart of the building, extended to this department also.\n\nOn the ringing of a bell, the pupils all repaired, without any \nguide or leader, to a spacious music-hall, where they took their \nseats in an orchestra erected for that purpose, and listened with \nmanifest delight to a voluntary on the organ, played by one of \nthemselves.  At its conclusion, the performer, a boy of nineteen or \ntwenty, gave place to a girl; and to her accompaniment they all \nsang a hymn, and afterwards a sort of chorus.  It was very sad to \nlook upon and hear them, happy though their condition \nunquestionably was; and I saw that one blind girl, who (being for \nthe time deprived of the use of her limbs, by illness) sat close \nbeside me with her face towards them, wept silently the while she \nlistened.\n\nIt is strange to watch the faces of the blind, and see how free \nthey are from all concealment of what is passing in their thoughts; \nobserving which, a man with eyes may blush to contemplate the mask \nhe wears.  Allowing for one shade of anxious expression which is \nnever absent from their countenances, and the like of which we may \nreadily detect in our own faces if we try to feel our way in the \ndark, every idea, as it rises within them, is expressed with the \nlightning's speed and nature's truth.  If the company at a rout, or \ndrawing-room at court, could only for one time be as unconscious of \nthe eyes upon them as blind men and women are, what secrets would \ncome out, and what a worker of hypocrisy this sight, the loss of \nwhich we so much pity, would appear to be!\n\nThe thought occurred to me as I sat down in another room, before a \ngirl, blind, deaf, and dumb; destitute of smell; and nearly so of \ntaste:  before a fair young creature with every human faculty, and \nhope, and power of goodness and affection, inclosed within her \ndelicate frame, and but one outward sense - the sense of touch.  \nThere she was, before me; built up, as it were, in a marble cell, \nimpervious to any ray of light, or particle of sound; with her poor \nwhite hand peeping through a chink in the wall, beckoning to some \ngood man for help, that an Immortal soul might be awakened.\n\nLong before I looked upon her, the help had come.  Her face was \nradiant with intelligence and pleasure.  Her hair, braided by her \nown hands, was bound about a head, whose intellectual capacity and \ndevelopment were beautifully expressed in its graceful outline, and \nits broad open brow; her dress, arranged by herself, was a pattern \nof neatness and simplicity; the work she had knitted, lay beside \nher; her writing-book was on the desk she leaned upon. - From the \nmournful ruin of such bereavement, there had slowly risen up this \ngentle, tender, guileless, grateful-hearted being.\n\nLike other inmates of that house, she had a green ribbon bound \nround her eyelids.  A doll she had dressed lay near upon the \nground.  I took it up, and saw that she had made a green fillet \nsuch as she wore herself, and fastened it about its mimic eyes.\n\nShe was seated in a little enclosure, made by school-desks and \nforms, writing her daily journal.  But soon finishing this pursuit, \nshe engaged in an animated conversation with a teacher who sat \nbeside her.  This was a favourite mistress with the poor pupil.  If \nshe could see the face of her fair instructress, she would not love \nher less, I am sure.\n\nI have extracted a few disjointed fragments of her history, from an \naccount, written by that one man who has made her what she is.  It \nis a very beautiful and touching narrative; and I wish I could \npresent it entire.\n\nHer name is Laura Bridgman.  'She was born in Hanover, New \nHampshire, on the twenty-first of December, 1829.  She is described \nas having been a very sprightly and pretty infant, with bright blue \neyes.  She was, however, so puny and feeble until she was a year \nand a half old, that her parents hardly hoped to rear her.  She was \nsubject to severe fits, which seemed to rack her frame almost \nbeyond her power of endurance:  and life was held by the feeblest \ntenure:  but when a year and a half old, she seemed to rally; the \ndangerous symptoms subsided; and at twenty months old, she was \nperfectly well.\n\n'Then her mental powers, hitherto stinted in their growth, rapidly \ndeveloped themselves; and during the four months of health which \nshe enjoyed, she appears (making due allowance for a fond mother's \naccount) to have displayed a considerable degree of intelligence.\n\n'But suddenly she sickened again; her disease raged with great \nviolence during five weeks, when her eyes and ears were inflamed, \nsuppurated, and their contents were discharged.  But though sight \nand hearing were gone for ever, the poor child's sufferings were \nnot ended.  The fever raged during seven weeks; for five months she \nwas kept in bed in a darkened room; it was a year before she could \nwalk unsupported, and two years before she could sit up all day.  \nIt was now observed that her sense of smell was almost entirely \ndestroyed; and, consequently, that her taste was much blunted.\n\n'It was not until four years of age that the poor child's bodily \nhealth seemed restored, and she was able to enter upon her \napprenticeship of life and the world.\n\n'But what a situation was hers!  The darkness and the silence of \nthe tomb were around her:  no mother's smile called forth her \nanswering smile, no father's voice taught her to imitate his \nsounds:- they, brothers and sisters, were but forms of matter which \nresisted her touch, but which differed not from the furniture of \nthe house, save in warmth, and in the power of locomotion; and not \neven in these respects from the dog and the cat.\n\n'But the immortal spirit which had been implanted within her could \nnot die, nor be maimed nor mutilated; and though most of its \navenues of communication with the world were cut off, it began to \nmanifest itself through the others.  As soon as she could walk, she \nbegan to explore the room, and then the house; she became familiar \nwith the form, density, weight, and heat, of every article she \ncould lay her hands upon.  She followed her mother, and felt her \nhands and arms, as she was occupied about the house; and her \ndisposition to imitate, led her to repeat everything herself.  She \neven learned to sew a little, and to knit.'\n\nThe reader will scarcely need to be told, however, that the \nopportunities of communicating with her, were very, very limited; \nand that the moral effects of her wretched state soon began to \nappear.  Those who cannot be enlightened by reason, can only be \ncontrolled by force; and this, coupled with her great privations, \nmust soon have reduced her to a worse condition than that of the \nbeasts that perish, but for timely and unhoped-for aid.\n\n'At this time, I was so fortunate as to hear of the child, and \nimmediately hastened to Hanover to see her.  I found her with a \nwell-formed figure; a strongly-marked, nervous-sanguine \ntemperament; a large and beautifully-shaped head; and the whole \nsystem in healthy action.  The parents were easily induced to \nconsent to her coming to Boston, and on the 4th of October, 1837, \nthey brought her to the Institution.\n\n'For a while, she was much bewildered; and after waiting about two \nweeks, until she became acquainted with her new locality, and \nsomewhat familiar with the inmates, the attempt was made to give \nher knowledge of arbitrary signs, by which she could interchange \nthoughts with others.\n\n'There was one of two ways to be adopted:  either to go on to build \nup a language of signs on the basis of the natural language which \nshe had already commenced herself, or to teach her the purely \narbitrary language in common use:  that is, to give her a sign for \nevery individual thing, or to give her a knowledge of letters by \ncombination of which she might express her idea of the existence, \nand the mode and condition of existence, of any thing.  The former \nwould have been easy, but very ineffectual; the latter seemed very \ndifficult, but, if accomplished, very effectual.  I determined \ntherefore to try the latter.\n\n'The first experiments were made by taking articles in common use, \nsuch as knives, forks, spoons, keys, &c., and pasting upon them \nlabels with their names printed in raised letters.  These she felt \nvery carefully, and soon, of course, distinguished that the crooked \nlines SPOON, differed as much from the crooked lines KEY, as the \nspoon differed from the key in form.\n\n'Then small detached labels, with the same words printed upon them, \nwere put into her hands; and she soon observed that they were \nsimilar to the ones pasted on the articles.'  She showed her \nperception of this similarity by laying the label KEY upon the key, \nand the label SPOON upon the spoon.  She was encouraged here by the \nnatural sign of approbation, patting on the head.\n\n'The same process was then repeated with all the articles which she \ncould handle; and she very easily learned to place the proper \nlabels upon them.  It was evident, however, that the only \nintellectual exercise was that of imitation and memory.  She \nrecollected that the label BOOK was placed upon a book, and she \nrepeated the process first from imitation, next from memory, with \nonly the motive of love of approbation, but apparently without the \nintellectual perception of any relation between the things.\n\n'After a while, instead of labels, the individual letters were \ngiven to her on detached bits of paper:  they were arranged side by \nside so as to spell BOOK, KEY, &c.; then they were mixed up in a \nheap and a sign was made for her to arrange them herself so as to \nexpress the words BOOK, KEY, &c.; and she did so.\n\n'Hitherto, the process had been mechanical, and the success about \nas great as teaching a very knowing dog a variety of tricks.  The \npoor child had sat in mute amazement, and patiently imitated \neverything her teacher did; but now the truth began to flash upon \nher:  her intellect began to work:  she perceived that here was a \nway by which she could herself make up a sign of anything that was \nin her own mind, and show it to another mind; and at once her \ncountenance lighted up with a human expression:  it was no longer a \ndog, or parrot:  it was an immortal spirit, eagerly seizing upon a \nnew link of union with other spirits!  I could almost fix upon the \nmoment when this truth dawned upon her mind, and spread its light \nto her countenance; I saw that the great obstacle was overcome; and \nthat henceforward nothing but patient and persevering, but plain \nand straightforward, efforts were to be used.\n\n'The result thus far, is quickly related, and easily conceived; but \nnot so was the process; for many weeks of apparently unprofitable \nlabour were passed before it was effected.\n\n'When it was said above that a sign was made, it was intended to \nsay, that the action was performed by her teacher, she feeling his \nhands, and then imitating the motion.\n\n'The next step was to procure a set of metal types, with the \ndifferent letters of the alphabet cast upon their ends; also a \nboard, in which were square holes, into which holes she could set \nthe types; so that the letters on their ends could alone be felt \nabove the surface.\n\n'Then, on any article being handed to her, for instance, a pencil, \nor a watch, she would select the component letters, and arrange \nthem on her board, and read them with apparent pleasure.\n\n'She was exercised for several weeks in this way, until her \nvocabulary became extensive; and then the important step was taken \nof teaching her how to represent the different letters by the \nposition of her fingers, instead of the cumbrous apparatus of the \nboard and types.  She accomplished this speedily and easily, for \nher intellect had begun to work in aid of her teacher, and her \nprogress was rapid.\n\n'This was the period, about three months after she had commenced, \nthat the first report of her case was made, in which it was stated \nthat \"she has just learned the manual alphabet, as used by the deaf \nmutes, and it is a subject of delight and wonder to see how \nrapidly, correctly, and eagerly, she goes on with her labours.  Her \nteacher gives her a new object, for instance, a pencil, first lets \nher examine it, and get an idea of its use, then teaches her how to \nspell it by making the signs for the letters with her own fingers:  \nthe child grasps her hand, and feels her fingers, as the different \nletters are formed; she turns her head a little on one side like a \nperson listening closely; her lips are apart; she seems scarcely to \nbreathe; and her countenance, at first anxious, gradually changes \nto a smile, as she comprehends the lesson.  She then holds up her \ntiny fingers, and spells the word in the manual alphabet; next, she \ntakes her types and arranges her letters; and last, to make sure \nthat she is right, she takes the whole of the types composing the \nword, and places them upon or in contact with the pencil, or \nwhatever the object may be.\"\n\n'The whole of the succeeding year was passed in gratifying her \neager inquiries for the names of every object which she could \npossibly handle; in exercising her in the use of the manual \nalphabet; in extending in every possible way her knowledge of the \nphysical relations of things; and in proper care of her health.\n\n'At the end of the year a report of her case was made, from which \nthe following is an extract.\n\n'\"It has been ascertained beyond the possibility of doubt, that she \ncannot see a ray of light, cannot hear the least sound, and never \nexercises her sense of smell, if she have any.  Thus her mind \ndwells in darkness and stillness, as profound as that of a closed \ntomb at midnight.  Of beautiful sights, and sweet sounds, and \npleasant odours, she has no conception; nevertheless, she seems as \nhappy and playful as a bird or a lamb; and the employment of her \nintellectual faculties, or the acquirement of a new idea, gives her \na vivid pleasure, which is plainly marked in her expressive \nfeatures.  She never seems to repine, but has all the buoyancy and \ngaiety of childhood.  She is fond of fun and frolic, and when \nplaying with the rest of the children, her shrill laugh sounds \nloudest of the group.\n\n'\"When left alone, she seems very happy if she have her knitting or \nsewing, and will busy herself for hours; if she have no occupation, \nshe evidently amuses herself by imaginary dialogues, or by \nrecalling past impressions; she counts with her fingers, or spells \nout names of things which she has recently learned, in the manual \nalphabet of the deaf mutes.  In this lonely self-communion she \nseems to reason, reflect, and argue; if she spell a word wrong with \nthe fingers of her right hand, she instantly strikes it with her \nleft, as her teacher does, in sign of disapprobation; if right, \nthen she pats herself upon the head, and looks pleased.  She \nsometimes purposely spells a word wrong with the left hand, looks \nroguish for a moment and laughs, and then with the right hand \nstrikes the left, as if to correct it.\n\n'\"During the year she has attained great dexterity in the use of \nthe manual alphabet of the deaf mutes; and she spells out the words \nand sentences which she knows, so fast and so deftly, that only \nthose accustomed to this language can follow with the eye the rapid \nmotions of her fingers.\n\n'\"But wonderful as is the rapidity with which she writes her \nthoughts upon the air, still more so is the ease and accuracy with \nwhich she reads the words thus written by another; grasping their \nhands in hers, and following every movement of their fingers, as \nletter after letter conveys their meaning to her mind.  It is in \nthis way that she converses with her blind playmates, and nothing \ncan more forcibly show the power of mind in forcing matter to its \npurpose than a meeting between them.  For if great talent and skill \nare necessary for two pantomimes to paint their thoughts and \nfeelings by the movements of the body, and the expression of the \ncountenance, how much greater the difficulty when darkness shrouds \nthem both, and the one can hear no sound.\n\n'\"When Laura is walking through a passage-way, with her hands \nspread before her, she knows instantly every one she meets, and \npasses them with a sign of recognition:  but if it be a girl of her \nown age, and especially if it be one of her favourites, there is \ninstantly a bright smile of recognition, a twining of arms, a \ngrasping of hands, and a swift telegraphing upon the tiny fingers; \nwhose rapid evolutions convey the thoughts and feelings from the \noutposts of one mind to those of the other.  There are questions \nand answers, exchanges of joy or sorrow, there are kissings and \npartings, just as between little children with all their senses.\"\n\n'During this year, and six months after she had left home, her \nmother came to visit her, and the scene of their meeting was an \ninteresting one.\n\n'The mother stood some time, gazing with overflowing eyes upon her \nunfortunate child, who, all unconscious of her presence, was \nplaying about the room.  Presently Laura ran against her, and at \nonce began feeling her hands, examining her dress, and trying to \nfind out if she knew her; but not succeeding in this, she turned \naway as from a stranger, and the poor woman could not conceal the \npang she felt, at finding that her beloved child did not know her.\n\n'She then gave Laura a string of beads which she used to wear at \nhome, which were recognised by the child at once, who, with much \njoy, put them around her neck, and sought me eagerly to say she \nunderstood the string was from her home.\n\n'The mother now sought to caress her, but poor Laura repelled her, \npreferring to be with her acquaintances.\n\n'Another article from home was now given her, and she began to look \nmuch interested; she examined the stranger much closer, and gave me \nto understand that she knew she came from Hanover; she even endured \nher caresses, but would leave her with indifference at the \nslightest signal.  The distress of the mother was now painful to \nbehold; for, although she had feared that she should not be \nrecognised, the painful reality of being treated with cold \nindifference by a darling child, was too much for woman's nature to \nbear.\n\n'After a while, on the mother taking hold of her again, a vague \nidea seemed to flit across Laura's mind, that this could not be a \nstranger; she therefore felt her hands very eagerly, while her \ncountenance assumed an expression of intense interest; she became \nvery pale; and then suddenly red; hope seemed struggling with doubt \nand anxiety, and never were contending emotions more strongly \npainted upon the human face:  at this moment of painful \nuncertainty, the mother drew her close to her side, and kissed her \nfondly, when at once the truth flashed upon the child, and all \nmistrust and anxiety disappeared from her face, as with an \nexpression of exceeding joy she eagerly nestled to the bosom of her \nparent, and yielded herself to her fond embraces.\n\n'After this, the beads were all unheeded; the playthings which were \noffered to her were utterly disregarded; her playmates, for whom \nbut a moment before she gladly left the stranger, now vainly strove \nto pull her from her mother; and though she yielded her usual \ninstantaneous obedience to my signal to follow me, it was evidently \nwith painful reluctance.  She clung close to me, as if bewildered \nand fearful; and when, after a moment, I took her to her mother, \nshe sprang to her arms, and clung to her with eager joy.\n\n'The subsequent parting between them, showed alike the affection, \nthe intelligence, and the resolution of the child.\n\n'Laura accompanied her mother to the door, clinging close to her \nall the way, until they arrived at the threshold, where she paused, \nand felt around, to ascertain who was near her.  Perceiving the \nmatron, of whom she is very fond, she grasped her with one hand, \nholding on convulsively to her mother with the other; and thus she \nstood for a moment:  then she dropped her mother's hand; put her \nhandkerchief to her eyes; and turning round, clung sobbing to the \nmatron; while her mother departed, with emotions as deep as those \nof her child.\n\n* * * * * *\n\n'It has been remarked in former reports, that she can distinguish \ndifferent degrees of intellect in others, and that she soon \nregarded, almost with contempt, a new-comer, when, after a few \ndays, she discovered her weakness of mind.  This unamiable part of \nher character has been more strongly developed during the past \nyear.\n\n'She chooses for her friends and companions, those children who are \nintelligent, and can talk best with her; and she evidently dislikes \nto be with those who are deficient in intellect, unless, indeed, \nshe can make them serve her purposes, which she is evidently \ninclined to do.  She takes advantage of them, and makes them wait \nupon her, in a manner that she knows she could not exact of others; \nand in various ways shows her Saxon blood.\n\n'She is fond of having other children noticed and caressed by the \nteachers, and those whom she respects; but this must not be carried \ntoo far, or she becomes jealous.  She wants to have her share, \nwhich, if not the lion's, is the greater part; and if she does not \nget it, she says, \"MY MOTHER WILL LOVE ME.\"\n\n'Her tendency to imitation is so strong, that it leads her to \nactions which must be entirely incomprehensible to her, and which \ncan give her no other pleasure than the gratification of an \ninternal faculty.  She has been known to sit for half an hour, \nholding a book before her sightless eyes, and moving her lips, as \nshe has observed seeing people do when reading.\n\n'She one day pretended that her doll was sick; and went through all \nthe motions of tending it, and giving it medicine; she then put it \ncarefully to bed, and placed a bottle of hot water to its feet, \nlaughing all the time most heartily.  When I came home, she \ninsisted upon my going to see it, and feel its pulse; and when I \ntold her to put a blister on its back, she seemed to enjoy it \namazingly, and almost screamed with delight.\n\n'Her social feelings, and her affections, are very strong; and when \nshe is sitting at work, or at her studies, by the side of one of \nher little friends, she will break off from her task every few \nmoments, to hug and kiss them with an earnestness and warmth that \nis touching to behold.\n\n'When left alone, she occupies and apparently amuses herself, and \nseems quite contented; and so strong seems to be the natural \ntendency of thought to put on the garb of language, that she often \nsoliloquizes in the FINGER LANGUAGE, slow and tedious as it is.  \nBut it is only when alone, that she is quiet:  for if she becomes \nsensible of the presence of any one near her, she is restless until \nshe can sit close beside them, hold their hand, and converse with \nthem by signs.\n\n'In her intellectual character it is pleasing to observe an \ninsatiable thirst for knowledge, and a quick perception of the \nrelations of things.  In her moral character, it is beautiful to \nbehold her continual gladness, her keen enjoyment of existence, her \nexpansive love, her unhesitating confidence, her sympathy with \nsuffering, her conscientiousness, truthfulness, and hopefulness.'\n\nSuch are a few fragments from the simple but most interesting and \ninstructive history of Laura Bridgman.  The name of her great \nbenefactor and friend, who writes it, is Dr. Howe.  There are not \nmany persons, I hope and believe, who, after reading these \npassages, can ever hear that name with indifference.\n\nA further account has been published by Dr. Howe, since the report \nfrom which I have just quoted.  It describes her rapid mental \ngrowth and improvement during twelve months more, and brings her \nlittle history down to the end of last year.  It is very \nremarkable, that as we dream in words, and carry on imaginary \nconversations, in which we speak both for ourselves and for the \nshadows who appear to us in those visions of the night, so she, \nhaving no words, uses her finger alphabet in her sleep.  And it has \nbeen ascertained that when her slumber is broken, and is much \ndisturbed by dreams, she expresses her thoughts in an irregular and \nconfused manner on her fingers:  just as we should murmur and \nmutter them indistinctly, in the like circumstances.\n\nI turned over the leaves of her Diary, and found it written in a \nfair legible square hand, and expressed in terms which were quite \nintelligible without any explanation.  On my saying that I should \nlike to see her write again, the teacher who sat beside her, bade \nher, in their language, sign her name upon a slip of paper, twice \nor thrice.  In doing so, I observed that she kept her left hand \nalways touching, and following up, her right, in which, of course, \nshe held the pen.  No line was indicated by any contrivance, but \nshe wrote straight and freely.\n\nShe had, until now, been quite unconscious of the presence of \nvisitors; but, having her hand placed in that of the gentleman who \naccompanied me, she immediately expressed his name upon her \nteacher's palm.  Indeed her sense of touch is now so exquisite, \nthat having been acquainted with a person once, she can recognise \nhim or her after almost any interval.  This gentleman had been in \nher company, I believe, but very seldom, and certainly had not seen \nher for many months.  My hand she rejected at once, as she does \nthat of any man who is a stranger to her.  But she retained my \nwife's with evident pleasure, kissed her, and examed her dress with \na girl's curiosity and interest.\n\nShe was merry and cheerful, and showed much innocent playfulness in \nher intercourse with her teacher.  Her delight on recognising a \nfavourite playfellow and companion - herself a blind girl - who \nsilently, and with an equal enjoyment of the coming surprise, took \na seat beside her, was beautiful to witness.  It elicited from her \nat first, as other slight circumstances did twice or thrice during \nmy visit, an uncouth noise which was rather painful to hear.  But \nof her teacher touching her lips, she immediately desisted, and \nembraced her laughingly and affectionately.\n\nI had previously been into another chamber, where a number of blind \nboys were swinging, and climbing, and engaged in various sports.  \nThey all clamoured, as we entered, to the assistant-master, who \naccompanied us, 'Look at me, Mr. Hart!  Please, Mr. Hart, look at \nme!' evincing, I thought, even in this, an anxiety peculiar to \ntheir condition, that their little feats of agility should be SEEN.  \nAmong them was a small laughing fellow, who stood aloof, \nentertaining himself with a gymnastic exercise for bringing the \narms and chest into play; which he enjoyed mightily; especially \nwhen, in thrusting out his right arm, he brought it into contact \nwith another boy.  Like Laura Bridgman, this young child was deaf, \nand dumb, and blind.\n\nDr. Howe's account of this pupil's first instruction is so very \nstriking, and so intimately connected with Laura herself, that I \ncannot refrain from a short extract.  I may premise that the poor \nboy's name is Oliver Caswell; that he is thirteen years of age; and \nthat he was in full possession of all his faculties, until three \nyears and four months old.  He was then attacked by scarlet fever; \nin four weeks became deaf; in a few weeks more, blind; in six \nmonths, dumb.  He showed his anxious sense of this last \ndeprivation, by often feeling the lips of other persons when they \nwere talking, and then putting his hand upon his own, as if to \nassure himself that he had them in the right position.\n\n'His thirst for knowledge,' says Dr. Howe, 'proclaimed itself as \nsoon as he entered the house, by his eager examination of \neverything he could feel or smell in his new location.  For \ninstance, treading upon the register of a furnace, he instantly \nstooped down, and began to feel it, and soon discovered the way in \nwhich the upper plate moved upon the lower one; but this was not \nenough for him, so lying down upon his face, he applied his tongue \nfirst to one, then to the other, and seemed to discover that they \nwere of different kinds of metal.\n\n'His signs were expressive:  and the strictly natural language, \nlaughing, crying, sighing, kissing, embracing, &c., was perfect.\n\n'Some of the analogical signs which (guided by his faculty of \nimitation) he had contrived, were comprehensible; such as the \nwaving motion of his hand for the motion of a boat, the circular \none for a wheel, &c.\n\n'The first object was to break up the use of these signs and to \nsubstitute for them the use of purely arbitrary ones.\n\n'Profiting by the experience I had gained in the other cases, I \nomitted several steps of the process before employed, and commenced \nat once with the finger language.  Taking, therefore, several \narticles having short names, such as key, cup, mug, &c., and with \nLaura for an auxiliary, I sat down, and taking his hand, placed it \nupon one of them, and then with my own, made the letters KEY.  He \nfelt my hands eagerly with both of his, and on my repeating the \nprocess, he evidently tried to imitate the motions of my fingers.  \nIn a few minutes he contrived to feel the motions of my fingers \nwith one hand, and holding out the other he tried to imitate them, \nlaughing most heartily when he succeeded.  Laura was by, interested \neven to agitation; and the two presented a singular sight:  her \nface was flushed and anxious, and her fingers twining in among ours \nso closely as to follow every motion, but so slightly as not to \nembarrass them; while Oliver stood attentive, his head a little \naside, his face turned up, his left hand grasping mine, and his \nright held out:  at every motion of my fingers his countenance \nbetokened keen attention; there was an expression of anxiety as he \ntried to imitate the motions; then a smile came stealing out as he \nthought he could do so, and spread into a joyous laugh the moment \nhe succeeded, and felt me pat his head, and Laura clap him heartily \nupon the back, and jump up and down in her joy.\n\n'He learned more than a half-dozen letters in half an hour, and \nseemed delighted with his success, at least in gaining approbation.  \nHis attention then began to flag, and I commenced playing with him.  \nIt was evident that in all this he had merely been imitating the \nmotions of my fingers, and placing his hand upon the key, cup, &c., \nas part of the process, without any perception of the relation \nbetween the sign and the object.\n\n'When he was tired with play I took him back to the table, and he \nwas quite ready to begin again his process of imitation.  He soon \nlearned to make the letters for KEY, PEN, PIN; and by having the \nobject repeatedly placed in his hand, he at last perceived the \nrelation I wished to establish between them.  This was evident, \nbecause, when I made the letters PIN, or PEN, or CUP, he would \nselect the article.\n\n'The perception of this relation was not accompanied by that \nradiant flash of intelligence, and that glow of joy, which marked \nthe delightful moment when Laura first perceived it.  I then placed \nall the articles on the table, and going away a little distance \nwith the children, placed Oliver's fingers in the positions to \nspell KEY, on which Laura went and brought the article:  the little \nfellow seemed much amused by this, and looked very attentive and \nsmiling.  I then caused him to make the letters BREAD, and in an \ninstant Laura went and brought him a piece:  he smelled at it; put \nit to his lips; cocked up his head with a most knowing look; seemed \nto reflect a moment; and then laughed outright, as much as to say, \n\"Aha!  I understand now how something may be made out of this.\"\n\n'It was now clear that he had the capacity and inclination to \nlearn, that he was a proper subject for instruction, and needed \nonly persevering attention.  I therefore put him in the hands of an \nintelligent teacher, nothing doubting of his rapid progress.'\n\nWell may this gentleman call that a delightful moment, in which \nsome distant promise of her present state first gleamed upon the \ndarkened mind of Laura Bridgman.  Throughout his life, the \nrecollection of that moment will be to him a source of pure, \nunfading happiness; nor will it shine less brightly on the evening \nof his days of Noble Usefulness.\n\nThe affection which exists between these two - the master and the \npupil - is as far removed from all ordinary care and regard, as the \ncircumstances in which it has had its growth, are apart from the \ncommon occurrences of life.  He is occupied now, in devising means \nof imparting to her, higher knowledge; and of conveying to her some \nadequate idea of the Great Creator of that universe in which, dark \nand silent and scentless though it be to her, she has such deep \ndelight and glad enjoyment.\n\nYe who have eyes and see not, and have ears and hear not; ye who \nare as the hypocrites of sad countenances, and disfigure your faces \nthat ye may seem unto men to fast; learn healthy cheerfulness, and \nmild contentment, from the deaf, and dumb, and blind!  Self-elected \nsaints with gloomy brows, this sightless, earless, voiceless child \nmay teach you lessons you will do well to follow.  Let that poor \nhand of hers lie gently on your hearts; for there may be something \nin its healing touch akin to that of the Great Master whose \nprecepts you misconstrue, whose lessons you pervert, of whose \ncharity and sympathy with all the world, not one among you in his \ndaily practice knows as much as many of the worst among those \nfallen sinners, to whom you are liberal in nothing but the \npreachment of perdition!\n\nAs I rose to quit the room, a pretty little child of one of the \nattendants came running in to greet its father.  For the moment, a \nchild with eyes, among the sightless crowd, impressed me almost as \npainfully as the blind boy in the porch had done, two hours ago.  \nAh! how much brighter and more deeply blue, glowing and rich though \nit had been before, was the scene without, contrasting with the \ndarkness of so many youthful lives within!\n\n* * * * * *\n\nAt SOUTH BOSTON, as it is called, in a situation excellently \nadapted for the purpose, several charitable institutions are \nclustered together.  One of these, is the State Hospital for the \ninsane; admirably conducted on those enlightened principles of \nconciliation and kindness, which twenty years ago would have been \nworse than heretical, and which have been acted upon with so much \nsuccess in our own pauper Asylum at Hanwell.  'Evince a desire to \nshow some confidence, and repose some trust, even in mad people,' \nsaid the resident physician, as we walked along the galleries, his \npatients flocking round us unrestrained.  Of those who deny or \ndoubt the wisdom of this maxim after witnessing its effects, if \nthere be such people still alive, I can only say that I hope I may \nnever be summoned as a Juryman on a Commission of Lunacy whereof \nthey are the subjects; for I should certainly find them out of \ntheir senses, on such evidence alone.\n\nEach ward in this institution is shaped like a long gallery or \nhall, with the dormitories of the patients opening from it on \neither hand.  Here they work, read, play at skittles, and other \ngames; and when the weather does not admit of their taking exercise \nout of doors, pass the day together.  In one of these rooms, \nseated, calmly, and quite as a matter of course, among a throng of \nmad-women, black and white, were the physician's wife and another \nlady, with a couple of children.  These ladies were graceful and \nhandsome; and it was not difficult to perceive at a glance that \neven their presence there, had a highly beneficial influence on the \npatients who were grouped about them.\n\nLeaning her head against the chimney-piece, with a great assumption \nof dignity and refinement of manner, sat an elderly female, in as \nmany scraps of finery as Madge Wildfire herself.  Her head in \nparticular was so strewn with scraps of gauze and cotton and bits \nof paper, and had so many queer odds and ends stuck all about it, \nthat it looked like a bird's-nest.  She was radiant with imaginary \njewels; wore a rich pair of undoubted gold spectacles; and \ngracefully dropped upon her lap, as we approached, a very old \ngreasy newspaper, in which I dare say she had been reading an \naccount of her own presentation at some Foreign Court.\n\nI have been thus particular in describing her, because she will \nserve to exemplify the physician's manner of acquiring and \nretaining the confidence of his patients.\n\n'This,' he said aloud, taking me by the hand, and advancing to the \nfantastic figure with great politeness - not raising her suspicions \nby the slightest look or whisper, or any kind of aside, to me:  \n'This lady is the hostess of this mansion, sir.  It belongs to her.  \nNobody else has anything whatever to do with it.  It is a large \nestablishment, as you see, and requires a great number of \nattendants.  She lives, you observe, in the very first style.  She \nis kind enough to receive my visits, and to permit my wife and \nfamily to reside here; for which it is hardly necessary to say, we \nare much indebted to her.  She is exceedingly courteous, you \nperceive,' on this hint she bowed condescendingly, 'and will permit \nme to have the pleasure of introducing you:  a gentleman from \nEngland, Ma'am:  newly arrived from England, after a very \ntempestuous passage:  Mr. Dickens, - the lady of the house!'\n\nWe exchanged the most dignified salutations with profound gravity \nand respect, and so went on.  The rest of the madwomen seemed to \nunderstand the joke perfectly (not only in this case, but in all \nthe others, except their own), and be highly amused by it.  The \nnature of their several kinds of insanity was made known to me in \nthe same way, and we left each of them in high good humour.  Not \nonly is a thorough confidence established, by those means, between \nthe physician and patient, in respect of the nature and extent of \ntheir hallucinations, but it is easy to understand that \nopportunities are afforded for seizing any moment of reason, to \nstartle them by placing their own delusion before them in its most \nincongruous and ridiculous light.\n\nEvery patient in this asylum sits down to dinner every day with a \nknife and fork; and in the midst of them sits the gentleman, whose \nmanner of dealing with his charges, I have just described.  At \nevery meal, moral influence alone restrains the more violent among \nthem from cutting the throats of the rest; but the effect of that \ninfluence is reduced to an absolute certainty, and is found, even \nas a means of restraint, to say nothing of it as a means of cure, a \nhundred times more efficacious than all the strait-waistcoats, \nfetters, and handcuffs, that ignorance, prejudice, and cruelty have \nmanufactured since the creation of the world.\n\nIn the labour department, every patient is as freely trusted with \nthe tools of his trade as if he were a sane man.  In the garden, \nand on the farm, they work with spades, rakes, and hoes.  For \namusement, they walk, run, fish, paint, read, and ride out to take \nthe air in carriages provided for the purpose.  They have among \nthemselves a sewing society to make clothes for the poor, which \nholds meetings, passes resolutions, never comes to fisty-cuffs or \nbowie-knives as sane assemblies have been known to do elsewhere; \nand conducts all its proceedings with the greatest decorum.  The \nirritability, which would otherwise be expended on their own flesh, \nclothes, and furniture, is dissipated in these pursuits.  They are \ncheerful, tranquil, and healthy.\n\nOnce a week they have a ball, in which the Doctor and his family, \nwith all the nurses and attendants, take an active part.  Dances \nand marches are performed alternately, to the enlivening strains of \na piano; and now and then some gentleman or lady (whose proficiency \nhas been previously ascertained) obliges the company with a song:  \nnor does it ever degenerate, at a tender crisis, into a screech or \nhowl; wherein, I must confess, I should have thought the danger \nlay.  At an early hour they all meet together for these festive \npurposes; at eight o'clock refreshments are served; and at nine \nthey separate.\n\nImmense politeness and good breeding are observed throughout.  They \nall take their tone from the Doctor; and he moves a very \nChesterfield among the company.  Like other assemblies, these \nentertainments afford a fruitful topic of conversation among the \nladies for some days; and the gentlemen are so anxious to shine on \nthese occasions, that they have been sometimes found 'practising \ntheir steps' in private, to cut a more distinguished figure in the \ndance.\n\nIt is obvious that one great feature of this system, is the \ninculcation and encouragement, even among such unhappy persons, of \na decent self-respect.  Something of the same spirit pervades all \nthe Institutions at South Boston.\n\nThere is the House of Industry.  In that branch of it, which is \ndevoted to the reception of old or otherwise helpless paupers, \nthese words are painted on the walls:  'WORTHY OF NOTICE.  SELF-\nGOVERNMENT, QUIETUDE, AND PEACE, ARE BLESSINGS.'  It is not assumed \nand taken for granted that being there they must be evil-disposed \nand wicked people, before whose vicious eyes it is necessary to \nflourish threats and harsh restraints.  They are met at the very \nthreshold with this mild appeal.  All within-doors is very plain \nand simple, as it ought to be, but arranged with a view to peace \nand comfort.  It costs no more than any other plan of arrangement, \nbut it speaks an amount of consideration for those who are reduced \nto seek a shelter there, which puts them at once upon their \ngratitude and good behaviour.  Instead of being parcelled out in \ngreat, long, rambling wards, where a certain amount of weazen life \nmay mope, and pine, and shiver, all day long, the building is \ndivided into separate rooms, each with its share of light and air.  \nIn these, the better kind of paupers live.  They have a motive for \nexertion and becoming pride, in the desire to make these little \nchambers comfortable and decent.\n\nI do not remember one but it was clean and neat, and had its plant \nor two upon the window-sill, or row of crockery upon the shelf, or \nsmall display of coloured prints upon the whitewashed wall, or, \nperhaps, its wooden clock behind the door.\n\nThe orphans and young children are in an adjoining building \nseparate from this, but a part of the same Institution.  Some are \nsuch little creatures, that the stairs are of Lilliputian \nmeasurement, fitted to their tiny strides.  The same consideration \nfor their years and weakness is expressed in their very seats, \nwhich are perfect curiosities, and look like articles of furniture \nfor a pauper doll's-house.  I can imagine the glee of our Poor Law \nCommissioners at the notion of these seats having arms and backs; \nbut small spines being of older date than their occupation of the \nBoard-room at Somerset House, I thought even this provision very \nmerciful and kind.\n\nHere again, I was greatly pleased with the inscriptions on the \nwall, which were scraps of plain morality, easily remembered and \nunderstood:  such as 'Love one another' - 'God remembers the \nsmallest creature in his creation:' and straightforward advice of \nthat nature.  The books and tasks of these smallest of scholars, \nwere adapted, in the same judicious manner, to their childish \npowers.  When we had examined these lessons, four morsels of girls \n(of whom one was blind) sang a little song, about the merry month \nof May, which I thought (being extremely dismal) would have suited \nan English November better.  That done, we went to see their \nsleeping-rooms on the floor above, in which the arrangements were \nno less excellent and gentle than those we had seen below.  And \nafter observing that the teachers were of a class and character \nwell suited to the spirit of the place, I took leave of the infants \nwith a lighter heart than ever I have taken leave of pauper infants \nyet.\n\nConnected with the House of Industry, there is also an Hospital, \nwhich was in the best order, and had, I am glad to say, many beds \nunoccupied.  It had one fault, however, which is common to all \nAmerican interiors:  the presence of the eternal, accursed, \nsuffocating, red-hot demon of a stove, whose breath would blight \nthe purest air under Heaven.\n\nThere are two establishments for boys in this same neighbourhood.  \nOne is called the Boylston school, and is an asylum for neglected \nand indigent boys who have committed no crime, but who in the \nordinary course of things would very soon be purged of that \ndistinction if they were not taken from the hungry streets and sent \nhere.  The other is a House of Reformation for Juvenile Offenders.  \nThey are both under the same roof, but the two classes of boys \nnever come in contact.\n\nThe Boylston boys, as may be readily supposed, have very much the \nadvantage of the others in point of personal appearance.  They were \nin their school-room when I came upon them, and answered correctly, \nwithout book, such questions as where was England; how far was it; \nwhat was its population; its capital city; its form of government; \nand so forth.  They sang a song too, about a farmer sowing his \nseed:  with corresponding action at such parts as ''tis thus he \nsows,' 'he turns him round,' 'he claps his hands;' which gave it \ngreater interest for them, and accustomed them to act together, in \nan orderly manner.  They appeared exceedingly well-taught, and not \nbetter taught than fed; for a more chubby-looking full-waistcoated \nset of boys, I never saw.\n\nThe juvenile offenders had not such pleasant faces by a great deal, \nand in this establishment there were many boys of colour.  I saw \nthem first at their work (basket-making, and the manufacture of \npalm-leaf hats), afterwards in their school, where they sang a \nchorus in praise of Liberty:  an odd, and, one would think, rather \naggravating, theme for prisoners.  These boys are divided into four \nclasses, each denoted by a numeral, worn on a badge upon the arm.  \nOn the arrival of a new-comer, he is put into the fourth or lowest \nclass, and left, by good behaviour, to work his way up into the \nfirst.  The design and object of this Institution is to reclaim the \nyouthful criminal by firm but kind and judicious treatment; to make \nhis prison a place of purification and improvement, not of \ndemoralisation and corruption; to impress upon him that there is \nbut one path, and that one sober industry, which can ever lead him \nto happiness; to teach him how it may be trodden, if his footsteps \nhave never yet been led that way; and to lure him back to it if \nthey have strayed:  in a word, to snatch him from destruction, and \nrestore him to society a penitent and useful member.  The \nimportance of such an establishment, in every point of view, and \nwith reference to every consideration of humanity and social \npolicy, requires no comment.\n\nOne other establishment closes the catalogue.  It is the House of \nCorrection for the State, in which silence is strictly maintained, \nbut where the prisoners have the comfort and mental relief of \nseeing each other, and of working together.  This is the improved \nsystem of Prison Discipline which we have imported into England, \nand which has been in successful operation among us for some years \npast.\n\nAmerica, as a new and not over-populated country, has in all her \nprisons, the one great advantage, of being enabled to find useful \nand profitable work for the inmates; whereas, with us, the \nprejudice against prison labour is naturally very strong, and \nalmost insurmountable, when honest men who have not offended \nagainst the laws are frequently doomed to seek employment in vain.  \nEven in the United States, the principle of bringing convict labour \nand free labour into a competition which must obviously be to the \ndisadvantage of the latter, has already found many opponents, whose \nnumber is not likely to diminish with access of years.\n\nFor this very reason though, our best prisons would seem at the \nfirst glance to be better conducted than those of America.  The \ntreadmill is conducted with little or no noise; five hundred men \nmay pick oakum in the same room, without a sound; and both kinds of \nlabour admit of such keen and vigilant superintendence, as will \nrender even a word of personal communication amongst the prisoners \nalmost impossible.  On the other hand, the noise of the loom, the \nforge, the carpenter's hammer, or the stonemason's saw, greatly \nfavour those opportunities of intercourse - hurried and brief no \ndoubt, but opportunities still - which these several kinds of work, \nby rendering it necessary for men to be employed very near to each \nother, and often side by side, without any barrier or partition \nbetween them, in their very nature present.  A visitor, too, \nrequires to reason and reflect a little, before the sight of a \nnumber of men engaged in ordinary labour, such as he is accustomed \nto out of doors, will impress him half as strongly as the \ncontemplation of the same persons in the same place and garb would, \nif they were occupied in some task, marked and degraded everywhere \nas belonging only to felons in jails.  In an American state prison \nor house of correction, I found it difficult at first to persuade \nmyself that I was really in a jail:  a place of ignominious \npunishment and endurance.  And to this hour I very much question \nwhether the humane boast that it is not like one, has its root in \nthe true wisdom or philosophy of the matter.\n\nI hope I may not be misunderstood on this subject, for it is one in \nwhich I take a strong and deep interest.  I incline as little to \nthe sickly feeling which makes every canting lie or maudlin speech \nof a notorious criminal a subject of newspaper report and general \nsympathy, as I do to those good old customs of the good old times \nwhich made England, even so recently as in the reign of the Third \nKing George, in respect of her criminal code and her prison \nregulations, one of the most bloody-minded and barbarous countries \non the earth.  If I thought it would do any good to the rising \ngeneration, I would cheerfully give my consent to the disinterment \nof the bones of any genteel highwayman (the more genteel, the more \ncheerfully), and to their exposure, piecemeal, on any sign-post, \ngate, or gibbet, that might be deemed a good elevation for the \npurpose.  My reason is as well convinced that these gentry were as \nutterly worthless and debauched villains, as it is that the laws \nand jails hardened them in their evil courses, or that their \nwonderful escapes were effected by the prison-turnkeys who, in \nthose admirable days, had always been felons themselves, and were, \nto the last, their bosom-friends and pot-companions.  At the same \ntime I know, as all men do or should, that the subject of Prison \nDiscipline is one of the highest importance to any community; and \nthat in her sweeping reform and bright example to other countries \non this head, America has shown great wisdom, great benevolence, \nand exalted policy.  In contrasting her system with that which we \nhave modelled upon it, I merely seek to show that with all its \ndrawbacks, ours has some advantages of its own.\n\nThe House of Correction which has led to these remarks, is not \nwalled, like other prisons, but is palisaded round about with tall \nrough stakes, something after the manner of an enclosure for \nkeeping elephants in, as we see it represented in Eastern prints \nand pictures.  The prisoners wear a parti-coloured dress; and those \nwho are sentenced to hard labour, work at nail-making, or stone-\ncutting.  When I was there, the latter class of labourers were \nemployed upon the stone for a new custom-house in course of \nerection at Boston.  They appeared to shape it skilfully and with \nexpedition, though there were very few among them (if any) who had \nnot acquired the art within the prison gates.\n\nThe women, all in one large room, were employed in making light \nclothing, for New Orleans and the Southern States.  They did their \nwork in silence like the men; and like them were over-looked by the \nperson contracting for their labour, or by some agent of his \nappointment.  In addition to this, they are every moment liable to \nbe visited by the prison officers appointed for that purpose.\n\nThe arrangements for cooking, washing of clothes, and so forth, are \nmuch upon the plan of those I have seen at home.  Their mode of \nbestowing the prisoners at night (which is of general adoption) \ndiffers from ours, and is both simple and effective.  In the centre \nof a lofty area, lighted by windows in the four walls, are five \ntiers of cells, one above the other; each tier having before it a \nlight iron gallery, attainable by stairs of the same construction \nand material:  excepting the lower one, which is on the ground.  \nBehind these, back to back with them and facing the opposite wall, \nare five corresponding rows of cells, accessible by similar means:  \nso that supposing the prisoners locked up in their cells, an \nofficer stationed on the ground, with his back to the wall, has \nhalf their number under his eye at once; the remaining half being \nequally under the observation of another officer on the opposite \nside; and all in one great apartment.  Unless this watch be \ncorrupted or sleeping on his post, it is impossible for a man to \nescape; for even in the event of his forcing the iron door of his \ncell without noise (which is exceedingly improbable), the moment he \nappears outside, and steps into that one of the five galleries on \nwhich it is situated, he must be plainly and fully visible to the \nofficer below.  Each of these cells holds a small truckle bed, in \nwhich one prisoner sleeps; never more.  It is small, of course; and \nthe door being not solid, but grated, and without blind or curtain, \nthe prisoner within is at all times exposed to the observation and \ninspection of any guard who may pass along that tier at any hour or \nminute of the night.  Every day, the prisoners receive their \ndinner, singly, through a trap in the kitchen wall; and each man \ncarries his to his sleeping cell to eat it, where he is locked up, \nalone, for that purpose, one hour.  The whole of this arrangement \nstruck me as being admirable; and I hope that the next new prison \nwe erect in England may be built on this plan.\n\nI was given to understand that in this prison no swords or fire-\narms, or even cudgels, are kept; nor is it probable that, so long \nas its present excellent management continues, any weapon, \noffensive or defensive, will ever be required within its bounds.\n\nSuch are the Institutions at South Boston!  In all of them, the \nunfortunate or degenerate citizens of the State are carefully \ninstructed in their duties both to God and man; are surrounded by \nall reasonable means of comfort and happiness that their condition \nwill admit of; are appealed to, as members of the great human \nfamily, however afflicted, indigent, or fallen; are ruled by the \nstrong Heart, and not by the strong (though immeasurably weaker) \nHand.  I have described them at some length; firstly, because their \nworth demanded it; and secondly, because I mean to take them for a \nmodel, and to content myself with saying of others we may come to, \nwhose design and purpose are the same, that in this or that respect \nthey practically fail, or differ.\n\nI wish by this account of them, imperfect in its execution, but in \nits just intention, honest, I could hope to convey to my readers \none-hundredth part of the gratification, the sights I have \ndescribed, afforded me.\n\n* * * * * *\n\nTo an Englishman, accustomed to the paraphernalia of Westminster \nHall, an American Court of Law is as odd a sight as, I suppose, an \nEnglish Court of Law would be to an American.  Except in the \nSupreme Court at Washington (where the judges wear a plain black \nrobe), there is no such thing as a wig or gown connected with the \nadministration of justice.  The gentlemen of the bar being \nbarristers and attorneys too (for there is no division of those \nfunctions as in England) are no more removed from their clients \nthan attorneys in our Court for the Relief of Insolvent Debtors \nare, from theirs.  The jury are quite at home, and make themselves \nas comfortable as circumstances will permit.  The witness is so \nlittle elevated above, or put aloof from, the crowd in the court, \nthat a stranger entering during a pause in the proceedings would \nfind it difficult to pick him out from the rest.  And if it chanced \nto be a criminal trial, his eyes, in nine cases out of ten, would \nwander to the dock in search of the prisoner, in vain; for that \ngentleman would most likely be lounging among the most \ndistinguished ornaments of the legal profession, whispering \nsuggestions in his counsel's ear, or making a toothpick out of an \nold quill with his penknife.\n\nI could not but notice these differences, when I visited the courts \nat Boston.  I was much surprised at first, too, to observe that the \ncounsel who interrogated the witness under examination at the time, \ndid so SITTING.  But seeing that he was also occupied in writing \ndown the answers, and remembering that he was alone and had no \n'junior,' I quickly consoled myself with the reflection that law \nwas not quite so expensive an article here, as at home; and that \nthe absence of sundry formalities which we regard as indispensable, \nhad doubtless a very favourable influence upon the bill of costs.\n\nIn every Court, ample and commodious provision is made for the \naccommodation of the citizens.  This is the case all through \nAmerica.  In every Public Institution, the right of the people to \nattend, and to have an interest in the proceedings, is most fully \nand distinctly recognised.  There are no grim door-keepers to dole \nout their tardy civility by the sixpenny-worth; nor is there, I \nsincerely believe, any insolence of office of any kind.  Nothing \nnational is exhibited for money; and no public officer is a \nshowman.  We have begun of late years to imitate this good example.  \nI hope we shall continue to do so; and that in the fulness of time, \neven deans and chapters may be converted.\n\nIn the civil court an action was trying, for damages sustained in \nsome accident upon a railway.  The witnesses had been examined, and \ncounsel was addressing the jury.  The learned gentleman (like a few \nof his English brethren) was desperately long-winded, and had a \nremarkable capacity of saying the same thing over and over again.  \nHis great theme was 'Warren the ENGINE driver,' whom he pressed \ninto the service of every sentence he uttered.  I listened to him \nfor about a quarter of an hour; and, coming out of court at the \nexpiration of that time, without the faintest ray of enlightenment \nas to the merits of the case, felt as if I were at home again.\n\nIn the prisoner's cell, waiting to be examined by the magistrate on \na charge of theft, was a boy.  This lad, instead of being committed \nto a common jail, would be sent to the asylum at South Boston, and \nthere taught a trade; and in the course of time he would be bound \napprentice to some respectable master.  Thus, his detection in this \noffence, instead of being the prelude to a life of infamy and a \nmiserable death, would lead, there was a reasonable hope, to his \nbeing reclaimed from vice, and becoming a worthy member of society.\n\nI am by no means a wholesale admirer of our legal solemnities, many \nof which impress me as being exceedingly ludicrous.  Strange as it \nmay seem too, there is undoubtedly a degree of protection in the \nwig and gown - a dismissal of individual responsibility in dressing \nfor the part - which encourages that insolent bearing and language, \nand that gross perversion of the office of a pleader for The Truth, \nso frequent in our courts of law.  Still, I cannot help doubting \nwhether America, in her desire to shake off the absurdities and \nabuses of the old system, may not have gone too far into the \nopposite extreme; and whether it is not desirable, especially in \nthe small community of a city like this, where each man knows the \nother, to surround the administration of justice with some \nartificial barriers against the 'Hail fellow, well met' deportment \nof everyday life.  All the aid it can have in the very high \ncharacter and ability of the Bench, not only here but elsewhere, it \nhas, and well deserves to have; but it may need something more:  \nnot to impress the thoughtful and the well-informed, but the \nignorant and heedless; a class which includes some prisoners and \nmany witnesses.  These institutions were established, no doubt, \nupon the principle that those who had so large a share in making \nthe laws, would certainly respect them.  But experience has proved \nthis hope to be fallacious; for no men know better than the judges \nof America, that on the occasion of any great popular excitement \nthe law is powerless, and cannot, for the time, assert its own \nsupremacy.\n\nThe tone of society in Boston is one of perfect politeness, \ncourtesy, and good breeding.  The ladies are unquestionably very \nbeautiful - in face:  but there I am compelled to stop.  Their \neducation is much as with us; neither better nor worse.  I had \nheard some very marvellous stories in this respect; but not \nbelieving them, was not disappointed.  Blue ladies there are, in \nBoston; but like philosophers of that colour and sex in most other \nlatitudes, they rather desire to be thought superior than to be so.  \nEvangelical ladies there are, likewise, whose attachment to the \nforms of religion, and horror of theatrical entertainments, are \nmost exemplary.  Ladies who have a passion for attending lectures \nare to be found among all classes and all conditions.  In the kind \nof provincial life which prevails in cities such as this, the \nPulpit has great influence.  The peculiar province of the Pulpit in \nNew England (always excepting the Unitarian Ministry) would appear \nto be the denouncement of all innocent and rational amusements.  \nThe church, the chapel, and the lecture-room, are the only means of \nexcitement excepted; and to the church, the chapel, and the \nlecture-room, the ladies resort in crowds.\n\nWherever religion is resorted to, as a strong drink, and as an \nescape from the dull monotonous round of home, those of its \nministers who pepper the highest will be the surest to please.  \nThey who strew the Eternal Path with the greatest amount of \nbrimstone, and who most ruthlessly tread down the flowers and \nleaves that grow by the wayside, will be voted the most righteous; \nand they who enlarge with the greatest pertinacity on the \ndifficulty of getting into heaven, will be considered by all true \nbelievers certain of going there:  though it would be hard to say \nby what process of reasoning this conclusion is arrived at.  It is \nso at home, and it is so abroad.  With regard to the other means of \nexcitement, the Lecture, it has at least the merit of being always \nnew.  One lecture treads so quickly on the heels of another, that \nnone are remembered; and the course of this month may be safely \nrepeated next, with its charm of novelty unbroken, and its interest \nunabated.\n\nThe fruits of the earth have their growth in corruption.  Out of \nthe rottenness of these things, there has sprung up in Boston a \nsect of philosophers known as Transcendentalists.  On inquiring \nwhat this appellation might be supposed to signify, I was given to \nunderstand that whatever was unintelligible would be certainly \ntranscendental.  Not deriving much comfort from this elucidation, I \npursued the inquiry still further, and found that the \nTranscendentalists are followers of my friend Mr. Carlyle, or I \nshould rather say, of a follower of his, Mr. Ralph Waldo Emerson.  \nThis gentleman has written a volume of Essays, in which, among much \nthat is dreamy and fanciful (if he will pardon me for saying so), \nthere is much more that is true and manly, honest and bold.  \nTranscendentalism has its occasional vagaries (what school has \nnot?), but it has good healthful qualities in spite of them; not \nleast among the number a hearty disgust of Cant, and an aptitude to \ndetect her in all the million varieties of her everlasting \nwardrobe.  And therefore if I were a Bostonian, I think I would be \na Transcendentalist.\n\nThe only preacher I heard in Boston was Mr. Taylor, who addresses \nhimself peculiarly to seamen, and who was once a mariner himself.  \nI found his chapel down among the shipping, in one of the narrow, \nold, water-side streets, with a gay blue flag waving freely from \nits roof.  In the gallery opposite to the pulpit were a little \nchoir of male and female singers, a violoncello, and a violin.  The \npreacher already sat in the pulpit, which was raised on pillars, \nand ornamented behind him with painted drapery of a lively and \nsomewhat theatrical appearance.  He looked a weather-beaten hard-\nfeatured man, of about six or eight and fifty; with deep lines \ngraven as it were into his face, dark hair, and a stern, keen eye.  \nYet the general character of his countenance was pleasant and \nagreeable.  The service commenced with a hymn, to which succeeded \nan extemporary prayer.  It had the fault of frequent repetition, \nincidental to all such prayers; but it was plain and comprehensive \nin its doctrines, and breathed a tone of general sympathy and \ncharity, which is not so commonly a characteristic of this form of \naddress to the Deity as it might be.  That done he opened his \ndiscourse, taking for his text a passage from the Song of Solomon, \nlaid upon the desk before the commencement of the service by some \nunknown member of the congregation:  'Who is this coming up from \nthe wilderness, leaning on the arm of her beloved!'\n\nHe handled his text in all kinds of ways, and twisted it into all \nmanner of shapes; but always ingeniously, and with a rude \neloquence, well adapted to the comprehension of his hearers.  \nIndeed if I be not mistaken, he studied their sympathies and \nunderstandings much more than the display of his own powers.  His \nimagery was all drawn from the sea, and from the incidents of a \nseaman's life; and was often remarkably good.  He spoke to them of \n'that glorious man, Lord Nelson,' and of Collingwood; and drew \nnothing in, as the saying is, by the head and shoulders, but \nbrought it to bear upon his purpose, naturally, and with a sharp \nmind to its effect.  Sometimes, when much excited with his subject, \nhe had an odd way - compounded of John Bunyan, and Balfour of \nBurley - of taking his great quarto Bible under his arm and pacing \nup and down the pulpit with it; looking steadily down, meantime, \ninto the midst of the congregation.  Thus, when he applied his text \nto the first assemblage of his hearers, and pictured the wonder of \nthe church at their presumption in forming a congregation among \nthemselves, he stopped short with his Bible under his arm in the \nmanner I have described, and pursued his discourse after this \nmanner:\n\n'Who are these - who are they - who are these fellows? where do \nthey come from?  Where are they going to? - Come from!  What's the \nanswer?' - leaning out of the pulpit, and pointing downward with \nhis right hand:  'From below!' - starting back again, and looking \nat the sailors before him:  'From below, my brethren.  From under \nthe hatches of sin, battened down above you by the evil one.  \nThat's where you came from!' - a walk up and down the pulpit:  'and \nwhere are you going' - stopping abruptly:  'where are you going?  \nAloft!' - very softly, and pointing upward:  'Aloft!' - louder:  \n'aloft!' - louder still:  'That's where you are going - with a fair \nwind, - all taut and trim, steering direct for Heaven in its glory, \nwhere there are no storms or foul weather, and where the wicked \ncease from troubling, and the weary are at rest.' - Another walk:  \n'That's where you're going to, my friends.  That's it.  That's the \nplace.  That's the port.  That's the haven.  It's a blessed harbour \n- still water there, in all changes of the winds and tides; no \ndriving ashore upon the rocks, or slipping your cables and running \nout to sea, there:  Peace - Peace - Peace - all peace!' - Another \nwalk, and patting the Bible under his left arm:  'What!  These \nfellows are coming from the wilderness, are they?  Yes.  From the \ndreary, blighted wilderness of Iniquity, whose only crop is Death.  \nBut do they lean upon anything - do they lean upon nothing, these \npoor seamen?' - Three raps upon the Bible:  'Oh yes. - Yes. - They \nlean upon the arm of their Beloved' - three more raps:  'upon the \narm of their Beloved' - three more, and a walk:  'Pilot, guiding-\nstar, and compass, all in one, to all hands - here it is' - three \nmore:  'Here it is.  They can do their seaman's duty manfully, and \nbe easy in their minds in the utmost peril and danger, with this' - \ntwo more:  'They can come, even these poor fellows can come, from \nthe wilderness leaning on the arm of their Beloved, and go up - up \n- up!' - raising his hand higher, and higher, at every repetition \nof the word, so that he stood with it at last stretched above his \nhead, regarding them in a strange, rapt manner, and pressing the \nbook triumphantly to his breast, until he gradually subsided into \nsome other portion of his discourse.\n\nI have cited this, rather as an instance of the preacher's \neccentricities than his merits, though taken in connection with his \nlook and manner, and the character of his audience, even this was \nstriking.  It is possible, however, that my favourable impression \nof him may have been greatly influenced and strengthened, firstly, \nby his impressing upon his hearers that the true observance of \nreligion was not inconsistent with a cheerful deportment and an \nexact discharge of the duties of their station, which, indeed, it \nscrupulously required of them; and secondly, by his cautioning them \nnot to set up any monopoly in Paradise and its mercies.  I never \nheard these two points so wisely touched (if indeed I have ever \nheard them touched at all), by any preacher of that kind before.\n\nHaving passed the time I spent in Boston, in making myself \nacquainted with these things, in settling the course I should take \nin my future travels, and in mixing constantly with its society, I \nam not aware that I have any occasion to prolong this chapter.  \nSuch of its social customs as I have not mentioned, however, may be \ntold in a very few words.\n\nThe usual dinner-hour is two o'clock.  A dinner party takes place \nat five; and at an evening party, they seldom sup later than \neleven; so that it goes hard but one gets home, even from a rout, \nby midnight.  I never could find out any difference between a party \nat Boston and a party in London, saving that at the former place \nall assemblies are held at more rational hours; that the \nconversation may possibly be a little louder and more cheerful; and \na guest is usually expected to ascend to the very top of the house \nto take his cloak off; that he is certain to see, at every dinner, \nan unusual amount of poultry on the table; and at every supper, at \nleast two mighty bowls of hot stewed oysters, in any one of which a \nhalf-grown Duke of Clarence might be smothered easily.\n\nThere are two theatres in Boston, of good size and construction, \nbut sadly in want of patronage.  The few ladies who resort to them, \nsit, as of right, in the front rows of the boxes.\n\nThe bar is a large room with a stone floor, and there people stand \nand smoke, and lounge about, all the evening:  dropping in and out \nas the humour takes them.  There too the stranger is initiated into \nthe mysteries of Gin-sling, Cock-tail, Sangaree, Mint Julep, \nSherry-cobbler, Timber Doodle, and other rare drinks.  The house is \nfull of boarders, both married and single, many of whom sleep upon \nthe premises, and contract by the week for their board and lodging:  \nthe charge for which diminishes as they go nearer the sky to roost.  \nA public table is laid in a very handsome hall for breakfast, and \nfor dinner, and for supper.  The party sitting down together to \nthese meals will vary in number from one to two hundred:  sometimes \nmore.  The advent of each of these epochs in the day is proclaimed \nby an awful gong, which shakes the very window-frames as it \nreverberates through the house, and horribly disturbs nervous \nforeigners.  There is an ordinary for ladies, and an ordinary for \ngentlemen.\n\nIn our private room the cloth could not, for any earthly \nconsideration, have been laid for dinner without a huge glass dish \nof cranberries in the middle of the table; and breakfast would have \nbeen no breakfast unless the principal dish were a deformed beef-\nsteak with a great flat bone in the centre, swimming in hot butter, \nand sprinkled with the very blackest of all possible pepper.  Our \nbedroom was spacious and airy, but (like every bedroom on this side \nof the Atlantic) very bare of furniture, having no curtains to the \nFrench bedstead or to the window.  It had one unusual luxury, \nhowever, in the shape of a wardrobe of painted wood, something \nsmaller than an English watch-box; or if this comparison should be \ninsufficient to convey a just idea of its dimensions, they may be \nestimated from the fact of my having lived for fourteen days and \nnights in the firm belief that it was a shower-bath.\n\n\n\nCHAPTER IV - AN AMERICAN RAILROAD.  LOWELL AND ITS FACTORY SYSTEM\n\n\n\nBEFORE leaving Boston, I devoted one day to an excursion to Lowell.  \nI assign a separate chapter to this visit; not because I am about \nto describe it at any great length, but because I remember it as a \nthing by itself, and am desirous that my readers should do the \nsame.\n\nI made acquaintance with an American railroad, on this occasion, \nfor the first time.  As these works are pretty much alike all \nthrough the States, their general characteristics are easily \ndescribed.\n\nThere are no first and second class carriages as with us; but there \nis a gentleman's car and a ladies' car:  the main distinction \nbetween which is that in the first, everybody smokes; and in the \nsecond, nobody does.  As a black man never travels with a white \none, there is also a negro car; which is a great, blundering, \nclumsy chest, such as Gulliver put to sea in, from the kingdom of \nBrobdingnag.  There is a great deal of jolting, a great deal of \nnoise, a great deal of wall, not much window, a locomotive engine, \na shriek, and a bell.\n\nThe cars are like shabby omnibuses, but larger:  holding thirty, \nforty, fifty, people.  The seats, instead of stretching from end to \nend, are placed crosswise.  Each seat holds two persons.  There is \na long row of them on each side of the caravan, a narrow passage up \nthe middle, and a door at both ends.  In the centre of the carriage \nthere is usually a stove, fed with charcoal or anthracite coal; \nwhich is for the most part red-hot.  It is insufferably close; and \nyou see the hot air fluttering between yourself and any other \nobject you may happen to look at, like the ghost of smoke.\n\nIn the ladies' car, there are a great many gentlemen who have \nladies with them.  There are also a great many ladies who have \nnobody with them:  for any lady may travel alone, from one end of \nthe United States to the other, and be certain of the most \ncourteous and considerate treatment everywhere.  The conductor or \ncheck-taker, or guard, or whatever he may be, wears no uniform.  He \nwalks up and down the car, and in and out of it, as his fancy \ndictates; leans against the door with his hands in his pockets and \nstares at you, if you chance to be a stranger; or enters into \nconversation with the passengers about him.  A great many \nnewspapers are pulled out, and a few of them are read.  Everybody \ntalks to you, or to anybody else who hits his fancy.  If you are an \nEnglishman, he expects that that railroad is pretty much like an \nEnglish railroad.  If you say 'No,' he says 'Yes?' \n(interrogatively), and asks in what respect they differ.  You \nenumerate the heads of difference, one by one, and he says 'Yes?' \n(still interrogatively) to each.  Then he guesses that you don't \ntravel faster in England; and on your replying that you do, says \n'Yes?' again (still interrogatively), and it is quite evident, \ndon't believe it.  After a long pause he remarks, partly to you, \nand partly to the knob on the top of his stick, that 'Yankees are \nreckoned to be considerable of a go-ahead people too;' upon which \nYOU say 'Yes,' and then HE says 'Yes' again (affirmatively this \ntime); and upon your looking out of window, tells you that behind \nthat hill, and some three miles from the next station, there is a \nclever town in a smart lo-ca-tion, where he expects you have \nconcluded to stop.  Your answer in the negative naturally leads to \nmore questions in reference to your intended route (always \npronounced rout); and wherever you are going, you invariably learn \nthat you can't get there without immense difficulty and danger, and \nthat all the great sights are somewhere else.\n\nIf a lady take a fancy to any male passenger's seat, the gentleman \nwho accompanies her gives him notice of the fact, and he \nimmediately vacates it with great politeness.  Politics are much \ndiscussed, so are banks, so is cotton.  Quiet people avoid the \nquestion of the Presidency, for there will be a new election in \nthree years and a half, and party feeling runs very high:  the \ngreat constitutional feature of this institution being, that \ndirectly the acrimony of the last election is over, the acrimony of \nthe next one begins; which is an unspeakable comfort to all strong \npoliticians and true lovers of their country:  that is to say, to \nninety-nine men and boys out of every ninety-nine and a quarter.\n\nExcept when a branch road joins the main one, there is seldom more \nthan one track of rails; so that the road is very narrow, and the \nview, where there is a deep cutting, by no means extensive.  When \nthere is not, the character of the scenery is always the same.  \nMile after mile of stunted trees:  some hewn down by the axe, some \nblown down by the wind, some half fallen and resting on their \nneighbours, many mere logs half hidden in the swamp, others \nmouldered away to spongy chips.  The very soil of the earth is made \nup of minute fragments such as these; each pool of stagnant water \nhas its crust of vegetable rottenness; on every side there are the \nboughs, and trunks, and stumps of trees, in every possible stage of \ndecay, decomposition, and neglect.  Now you emerge for a few brief \nminutes on an open country, glittering with some bright lake or \npool, broad as many an English river, but so small here that it \nscarcely has a name; now catch hasty glimpses of a distant town, \nwith its clean white houses and their cool piazzas, its prim New \nEngland church and school-house; when whir-r-r-r! almost before you \nhave seen them, comes the same dark screen:  the stunted trees, the \nstumps, the logs, the stagnant water - all so like the last that \nyou seem to have been transported back again by magic.\n\nThe train calls at stations in the woods, where the wild \nimpossibility of anybody having the smallest reason to get out, is \nonly to be equalled by the apparently desperate hopelessness of \nthere being anybody to get in.  It rushes across the turnpike road, \nwhere there is no gate, no policeman, no signal:  nothing but a \nrough wooden arch, on which is painted 'WHEN THE BELL RINGS, LOOK \nOUT FOR THE LOCOMOTIVE.'  On it whirls headlong, dives through the \nwoods again, emerges in the light, clatters over frail arches, \nrumbles upon the heavy ground, shoots beneath a wooden bridge which \nintercepts the light for a second like a wink, suddenly awakens all \nthe slumbering echoes in the main street of a large town, and \ndashes on haphazard, pell-mell, neck-or-nothing, down the middle of \nthe road.  There - with mechanics working at their trades, and \npeople leaning from their doors and windows, and boys flying kites \nand playing marbles, and men smoking, and women talking, and \nchildren crawling, and pigs burrowing, and unaccustomed horses \nplunging and rearing, close to the very rails - there - on, on, on \n- tears the mad dragon of an engine with its train of cars; \nscattering in all directions a shower of burning sparks from its \nwood fire; screeching, hissing, yelling, panting; until at last the \nthirsty monster stops beneath a covered way to drink, the people \ncluster round, and you have time to breathe again.\n\nI was met at the station at Lowell by a gentleman intimately \nconnected with the management of the factories there; and gladly \nputting myself under his guidance, drove off at once to that \nquarter of the town in which the works, the object of my visit, \nwere situated.  Although only just of age - for if my recollection \nserve me, it has been a manufacturing town barely one-and-twenty \nyears - Lowell is a large, populous, thriving place.  Those \nindications of its youth which first attract the eye, give it a \nquaintness and oddity of character which, to a visitor from the old \ncountry, is amusing enough.  It was a very dirty winter's day, and \nnothing in the whole town looked old to me, except the mud, which \nin some parts was almost knee-deep, and might have been deposited \nthere, on the subsiding of the waters after the Deluge.  In one \nplace, there was a new wooden church, which, having no steeple, and \nbeing yet unpainted, looked like an enormous packing-case without \nany direction upon it.  In another there was a large hotel, whose \nwalls and colonnades were so crisp, and thin, and slight, that it \nhad exactly the appearance of being built with cards.  I was \ncareful not to draw my breath as we passed, and trembled when I saw \na workman come out upon the roof, lest with one thoughtless stamp \nof his foot he should crush the structure beneath him, and bring it \nrattling down.  The very river that moves the machinery in the \nmills (for they are all worked by water power), seems to acquire a \nnew character from the fresh buildings of bright red brick and \npainted wood among which it takes its course; and to be as light-\nheaded, thoughtless, and brisk a young river, in its murmurings and \ntumblings, as one would desire to see.  One would swear that every \n'Bakery,' 'Grocery,' and 'Bookbindery,' and other kind of store, \ntook its shutters down for the first time, and started in business \nyesterday.  The golden pestles and mortars fixed as signs upon the \nsun-blind frames outside the Druggists',  appear to have been just \nturned out of the United States' Mint; and when I saw a baby of \nsome week or ten days old in a woman's arms at a street corner, I \nfound myself unconsciously wondering where it came from:  never \nsupposing for an instant that it could have been born in such a \nyoung town as that.\n\nThere are several factories in Lowell, each of which belongs to \nwhat we should term a Company of Proprietors, but what they call in \nAmerica a Corporation.  I went over several of these; such as a \nwoollen factory, a carpet factory, and a cotton factory:  examined \nthem in every part; and saw them in their ordinary working aspect, \nwith no preparation of any kind, or departure from their ordinary \neveryday proceedings.  I may add that I am well acquainted with our \nmanufacturing towns in England, and have visited many mills in \nManchester and elsewhere in the same manner.\n\nI happened to arrive at the first factory just as the dinner hour \nwas over, and the girls were returning to their work; indeed the \nstairs of the mill were thronged with them as I ascended.  They \nwere all well dressed, but not to my thinking above their \ncondition; for I like to see the humbler classes of society careful \nof their dress and appearance, and even, if they please, decorated \nwith such little trinkets as come within the compass of their \nmeans.  Supposing it confined within reasonable limits, I would \nalways encourage this kind of pride, as a worthy element of self-\nrespect, in any person I employed; and should no more be deterred \nfrom doing so, because some wretched female referred her fall to a \nlove of dress, than I would allow my construction of the real \nintent and meaning of the Sabbath to be influenced by any warning \nto the well-disposed, founded on his backslidings on that \nparticular day, which might emanate from the rather doubtful \nauthority of a murderer in Newgate.\n\nThese girls, as I have said, were all well dressed:  and that \nphrase necessarily includes extreme cleanliness.  They had \nserviceable bonnets, good warm cloaks, and shawls; and were not \nabove clogs and pattens.  Moreover, there were places in the mill \nin which they could deposit these things without injury; and there \nwere conveniences for washing.  They were healthy in appearance, \nmany of them remarkably so, and had the manners and deportment of \nyoung women:  not of degraded brutes of burden.  If I had seen in \none of those mills (but I did not, though I looked for something of \nthis kind with a sharp eye), the most lisping, mincing, affected, \nand ridiculous young creature that my imagination could suggest, I \nshould have thought of the careless, moping, slatternly, degraded, \ndull reverse (I HAVE seen that), and should have been still well \npleased to look upon her.\n\nThe rooms in which they worked, were as well ordered as themselves.  \nIn the windows of some, there were green plants, which were trained \nto shade the glass; in all, there was as much fresh air, \ncleanliness, and comfort, as the nature of the occupation would \npossibly admit of.  Out of so large a number of females, many of \nwhom were only then just verging upon womanhood, it may be \nreasonably supposed that some were delicate and fragile in \nappearance:  no doubt there were.  But I solemnly declare, that \nfrom all the crowd I saw in the different factories that day, I \ncannot recall or separate one young face that gave me a painful \nimpression; not one young girl whom, assuming it to be a matter of \nnecessity that she should gain her daily bread by the labour of her \nhands, I would have removed from those works if I had had the \npower.\n\nThey reside in various boarding-houses near at hand.  The owners of \nthe mills are particularly careful to allow no persons to enter \nupon the possession of these houses, whose characters have not \nundergone the most searching and thorough inquiry.  Any complaint \nthat is made against them, by the boarders, or by any one else, is \nfully investigated; and if good ground of complaint be shown to \nexist against them, they are removed, and their occupation is \nhanded over to some more deserving person.  There are a few \nchildren employed in these factories, but not many.  The laws of \nthe State forbid their working more than nine months in the year, \nand require that they be educated during the other three.  For this \npurpose there are schools in Lowell; and there are churches and \nchapels of various persuasions, in which the young women may \nobserve that form of worship in which they have been educated.\n\nAt some distance from the factories, and on the highest and \npleasantest ground in the neighbourhood, stands their hospital, or \nboarding-house for the sick:  it is the best house in those parts, \nand was built by an eminent merchant for his own residence.  Like \nthat institution at Boston, which I have before described, it is \nnot parcelled out into wards, but is divided into convenient \nchambers, each of which has all the comforts of a very comfortable \nhome.  The principal medical attendant resides under the same roof; \nand were the patients members of his own family, they could not be \nbetter cared for, or attended with greater gentleness and \nconsideration.  The weekly charge in this establishment for each \nfemale patient is three dollars, or twelve shillings English; but \nno girl employed by any of the corporations is ever excluded for \nwant of the means of payment.  That they do not very often want the \nmeans, may be gathered from the fact, that in July, 1841, no fewer \nthan nine hundred and seventy-eight of these girls were depositors \nin the Lowell Savings Bank:  the amount of whose joint savings was \nestimated at one hundred thousand dollars, or twenty thousand \nEnglish pounds.\n\nI am now going to state three facts, which will startle a large \nclass of readers on this side of the Atlantic, very much.\n\nFirstly, there is a joint-stock piano in a great many of the \nboarding-houses.  Secondly, nearly all these young ladies subscribe \nto circulating libraries.  Thirdly, they have got up among \nthemselves a periodical called THE LOWELL OFFERING, 'A repository \nof original articles, written exclusively by females actively \nemployed in the mills,' - which is duly printed, published, and \nsold; and whereof I brought away from Lowell four hundred good \nsolid pages, which I have read from beginning to end.\n\nThe large class of readers, startled by these facts, will exclaim, \nwith one voice, 'How very preposterous!'  On my deferentially \ninquiring why, they will answer, 'These things are above their \nstation.'  In reply to that objection, I would beg to ask what \ntheir station is.\n\nIt is their station to work.  And they DO work.  They labour in \nthese mills, upon an average, twelve hours a day, which is \nunquestionably work, and pretty tight work too.  Perhaps it is \nabove their station to indulge in such amusements, on any terms.  \nAre we quite sure that we in England have not formed our ideas of \nthe 'station' of working people, from accustoming ourselves to the \ncontemplation of that class as they are, and not as they might be?  \nI think that if we examine our own feelings, we shall find that the \npianos, and the circulating libraries, and even the Lowell \nOffering, startle us by their novelty, and not by their bearing \nupon any abstract question of right or wrong.\n\nFor myself, I know no station in which, the occupation of to-day \ncheerfully done and the occupation of to-morrow cheerfully looked \nto, any one of these pursuits is not most humanising and laudable.  \nI know no station which is rendered more endurable to the person in \nit, or more safe to the person out of it, by having ignorance for \nits associate.  I know no station which has a right to monopolise \nthe means of mutual instruction, improvement, and rational \nentertainment; or which has ever continued to be a station very \nlong, after seeking to do so.\n\nOf the merits of the Lowell Offering as a literary production, I \nwill only observe, putting entirely out of sight the fact of the \narticles having been written by these girls after the arduous \nlabours of the day, that it will compare advantageously with a \ngreat many English Annuals.  It is pleasant to find that many of \nits Tales are of the Mills and of those who work in them; that they \ninculcate habits of self-denial and contentment, and teach good \ndoctrines of enlarged benevolence.  A strong feeling for the \nbeauties of nature, as displayed in the solitudes the writers have \nleft at home, breathes through its pages like wholesome village \nair; and though a circulating library is a favourable school for \nthe study of such topics, it has very scant allusion to fine \nclothes, fine marriages, fine houses, or fine life.  Some persons \nmight object to the papers being signed occasionally with rather \nfine names, but this is an American fashion.  One of the provinces \nof the state legislature of Massachusetts is to alter ugly names \ninto pretty ones, as the children improve upon the tastes of their \nparents.  These changes costing little or nothing, scores of Mary \nAnnes are solemnly converted into Bevelinas every session.\n\nIt is said that on the occasion of a visit from General Jackson or \nGeneral Harrison to this town (I forget which, but it is not to the \npurpose), he walked through three miles and a half of these young \nladies all dressed out with parasols and silk stockings.  But as I \nam not aware that any worse consequence ensued, than a sudden \nlooking-up of all the parasols and silk stockings in the market; \nand perhaps the bankruptcy of some speculative New Englander who \nbought them all up at any price, in expectation of a demand that \nnever came; I set no great store by the circumstance.\n\nIn this brief account of Lowell, and inadequate expression of the \ngratification it yielded me, and cannot fail to afford to any \nforeigner to whom the condition of such people at home is a subject \nof interest and anxious speculation, I have carefully abstained \nfrom drawing a comparison between these factories and those of our \nown land.  Many of the circumstances whose strong influence has \nbeen at work for years in our manufacturing towns have not arisen \nhere; and there is no manufacturing population in Lowell, so to \nspeak:  for these girls (often the daughters of small farmers) come \nfrom other States, remain a few years in the mills, and then go \nhome for good.\n\nThe contrast would be a strong one, for it would be between the \nGood and Evil, the living light and deepest shadow.  I abstain from \nit, because I deem it just to do so.  But I only the more earnestly \nadjure all those whose eyes may rest on these pages, to pause and \nreflect upon the difference between this town and those great \nhaunts of desperate misery:  to call to mind, if they can in the \nmidst of party strife and squabble, the efforts that must be made \nto purge them of their suffering and danger:  and last, and \nforemost, to remember how the precious Time is rushing by.\n\nI returned at night by the same railroad and in the same kind of \ncar.  One of the passengers being exceedingly anxious to expound at \ngreat length to my companion (not to me, of course) the true \nprinciples on which books of travel in America should be written by \nEnglishmen, I feigned to fall asleep.  But glancing all the way out \nat window from the corners of my eyes, I found abundance of \nentertainment for the rest of the ride in watching the effects of \nthe wood fire, which had been invisible in the morning but were now \nbrought out in full relief by the darkness:  for we were travelling \nin a whirlwind of bright sparks, which showered about us like a \nstorm of fiery snow.\n\n\n\nCHAPTER V - WORCESTER.  THE CONNECTICUT RIVER.  HARTFORD.  NEW \nHAVEN.  TO NEW YORK\n\n\n\nLEAVING Boston on the afternoon of Saturday the fifth of February, \nwe proceeded by another railroad to Worcester:  a pretty New \nEngland town, where we had arranged to remain under the hospitable \nroof of the Governor of the State, until Monday morning.\n\nThese towns and cities of New England (many of which would be \nvillages in Old England), are as favourable specimens of rural \nAmerica, as their people are of rural Americans.  The well-trimmed \nlawns and green meadows of home are not there; and the grass, \ncompared with our ornamental plots and pastures, is rank, and \nrough, and wild:  but delicate slopes of land, gently-swelling \nhills, wooded valleys, and slender streams, abound.  Every little \ncolony of houses has its church and school-house peeping from among \nthe white roofs and shady trees; every house is the whitest of the \nwhite; every Venetian blind the greenest of the green; every fine \nday's sky the bluest of the blue.  A sharp dry wind and a slight \nfrost had so hardened the roads when we alighted at Worcester, that \ntheir furrowed tracks were like ridges of granite.  There was the \nusual aspect of newness on every object, of course.  All the \nbuildings looked as if they had been built and painted that \nmorning, and could be taken down on Monday with very little \ntrouble.  In the keen evening air, every sharp outline looked a \nhundred times sharper than ever.  The clean cardboard colonnades \nhad no more perspective than a Chinese bridge on a tea-cup, and \nappeared equally well calculated for use.  The razor-like edges of \nthe detached cottages seemed to cut the very wind as it whistled \nagainst them, and to send it smarting on its way with a shriller \ncry than before.  Those slightly-built wooden dwellings behind \nwhich the sun was setting with a brilliant lustre, could be so \nlooked through and through, that the idea of any inhabitant being \nable to hide himself from the public gaze, or to have any secrets \nfrom the public eye, was not entertainable for a moment.  Even \nwhere a blazing fire shone through the uncurtained windows of some \ndistant house, it had the air of being newly lighted, and of \nlacking warmth; and instead of awakening thoughts of a snug \nchamber, bright with faces that first saw the light round that same \nhearth, and ruddy with warm hangings, it came upon one suggestive \nof the smell of new mortar and damp walls.\n\nSo I thought, at least, that evening.  Next morning when the sun \nwas shining brightly, and the clear church bells were ringing, and \nsedate people in their best clothes enlivened the pathway near at \nhand and dotted the distant thread of road, there was a pleasant \nSabbath peacefulness on everything, which it was good to feel.  It \nwould have been the better for an old church; better still for some \nold graves; but as it was, a wholesome repose and tranquillity \npervaded the scene, which after the restless ocean and the hurried \ncity, had a doubly grateful influence on the spirits.\n\nWe went on next morning, still by railroad, to Springfield.  From \nthat place to Hartford, whither we were bound, is a distance of \nonly five-and-twenty miles, but at that time of the year the roads \nwere so bad that the journey would probably have occupied ten or \ntwelve hours.  Fortunately, however, the winter having been \nunusually mild, the Connecticut River was 'open,' or, in other \nwords, not frozen.  The captain of a small steamboat was going to \nmake his first trip for the season that day (the second February \ntrip, I believe, within the memory of man), and only waited for us \nto go on board.  Accordingly, we went on board, with as little \ndelay as might be.  He was as good as his word, and started \ndirectly.\n\nIt certainly was not called a small steamboat without reason.  I \nomitted to ask the question, but I should think it must have been \nof about half a pony power.  Mr. Paap, the celebrated Dwarf, might \nhave lived and died happily in the cabin, which was fitted with \ncommon sash-windows like an ordinary dwelling-house.  These windows \nhad bright-red curtains, too, hung on slack strings across the \nlower panes; so that it looked like the parlour of a Lilliputian \npublic-house, which had got afloat in a flood or some other water \naccident, and was drifting nobody knew where.  But even in this \nchamber there was a rocking-chair.  It would be impossible to get \non anywhere, in America, without a rocking-chair.  I am afraid to \ntell how many feet short this vessel was, or how many feet narrow:  \nto apply the words length and width to such measurement would be a \ncontradiction in terms.  But I may state that we all kept the \nmiddle of the deck, lest the boat should unexpectedly tip over; and \nthat the machinery, by some surprising process of condensation, \nworked between it and the keel:  the whole forming a warm sandwich, \nabout three feet thick.\n\nIt rained all day as I once thought it never did rain anywhere, but \nin the Highlands of Scotland.  The river was full of floating \nblocks of ice, which were constantly crunching and cracking under \nus; and the depth of water, in the course we took to avoid the \nlarger masses, carried down the middle of the river by the current, \ndid not exceed a few inches.  Nevertheless, we moved onward, \ndexterously; and being well wrapped up, bade defiance to the \nweather, and enjoyed the journey.  The Connecticut River is a fine \nstream; and the banks in summer-time are, I have no doubt, \nbeautiful; at all events, I was told so by a young lady in the \ncabin; and she should be a judge of beauty, if the possession of a \nquality include the appreciation of it, for a more beautiful \ncreature I never looked upon.\n\nAfter two hours and a half of this odd travelling (including a \nstoppage at a small town, where we were saluted by a gun \nconsiderably bigger than our own chimney), we reached Hartford, and \nstraightway repaired to an extremely comfortable hotel:  except, as \nusual, in the article of bedrooms, which, in almost every place we \nvisited, were very conducive to early rising.\n\nWe tarried here, four days.  The town is beautifully situated in a \nbasin of green hills; the soil is rich, well-wooded, and carefully \nimproved.  It is the seat of the local legislature of Connecticut, \nwhich sage body enacted, in bygone times, the renowned code of \n'Blue Laws,' in virtue whereof, among other enlightened provisions, \nany citizen who could be proved to have kissed his wife on Sunday, \nwas punishable, I believe, with the stocks.  Too much of the old \nPuritan spirit exists in these parts to the present hour; but its \ninfluence has not tended, that I know, to make the people less hard \nin their bargains, or more equal in their dealings.  As I never \nheard of its working that effect anywhere else, I infer that it \nnever will, here.  Indeed, I am accustomed, with reference to great \nprofessions and severe faces, to judge of the goods of the other \nworld pretty much as I judge of the goods of this; and whenever I \nsee a dealer in such commodities with too great a display of them \nin his window, I doubt the quality of the article within.\n\nIn Hartford stands the famous oak in which the charter of King \nCharles was hidden.  It is now inclosed in a gentleman's garden.  \nIn the State House is the charter itself.  I found the courts of \nlaw here, just the same as at Boston; the public institutions \nalmost as good.  The Insane Asylum is admirably conducted, and so \nis the Institution for the Deaf and Dumb.\n\nI very much questioned within myself, as I walked through the \nInsane Asylum, whether I should have known the attendants from the \npatients, but for the few words which passed between the former, \nand the Doctor, in reference to the persons under their charge.  Of \ncourse I limit this remark merely to their looks; for the \nconversation of the mad people was mad enough.\n\nThere was one little, prim old lady, of very smiling and good-\nhumoured appearance, who came sidling up to me from the end of a \nlong passage, and with a curtsey of inexpressible condescension, \npropounded this unaccountable inquiry:\n\n'Does Pontefract still flourish, sir, upon the soil of England?'\n\n'He does, ma'am,' I rejoined.\n\n'When you last saw him, sir, he was - '\n\n'Well, ma'am,' said I, 'extremely well.  He begged me to present \nhis compliments.  I never saw him looking better.'\n\nAt this, the old lady was very much delighted.  After glancing at \nme for a moment, as if to be quite sure that I was serious in my \nrespectful air, she sidled back some paces; sidled forward again; \nmade a sudden skip (at which I precipitately retreated a step or \ntwo); and said:\n\n'I am an antediluvian, sir.'\n\nI thought the best thing to say was, that I had suspected as much \nfrom the first.  Therefore I said so.\n\n'It is an extremely proud and pleasant thing, sir, to be an \nantediluvian,' said the old lady.\n\n'I should think it was, ma'am,' I rejoined.\n\nThe old lady kissed her hand, gave another skip, smirked and sidled \ndown the gallery in a most extraordinary manner, and ambled \ngracefully into her own bed-chamber.\n\nIn another part of the building, there was a male patient in bed; \nvery much flushed and heated.\n\n'Well,' said he, starting up, and pulling off his night-cap:  'It's \nall settled at last.  I have arranged it with Queen Victoria.'\n\n'Arranged what?' asked the Doctor.\n\n'Why, that business,' passing his hand wearily across his forehead, \n'about the siege of New York.'\n\n'Oh!' said I, like a man suddenly enlightened.  For he looked at me \nfor an answer.\n\n'Yes.  Every house without a signal will be fired upon by the \nBritish troops.  No harm will be done to the others.  No harm at \nall.  Those that want to be safe, must hoist flags.  That's all \nthey'll have to do.  They must hoist flags.'\n\nEven while he was speaking he seemed, I thought, to have some faint \nidea that his talk was incoherent.  Directly he had said these \nwords, he lay down again; gave a kind of a groan; and covered his \nhot head with the blankets.\n\nThere was another:  a young man, whose madness was love and music.  \nAfter playing on the accordion a march he had composed, he was very \nanxious that I should walk into his chamber, which I immediately \ndid.\n\nBy way of being very knowing, and humouring him to the top of his \nbent, I went to the window, which commanded a beautiful prospect, \nand remarked, with an address upon which I greatly plumed myself:\n\n'What a delicious country you have about these lodgings of yours!'\n\n'Poh!' said he, moving his fingers carelessly over the notes of his \ninstrument:  'WELL ENOUGH FOR SUCH AN INSTITUTION AS THIS!'\n\nI don't think I was ever so taken aback in all my life.\n\n'I come here just for a whim,' he said coolly.  'That's all.'\n\n'Oh!  That's all!' said I.\n\n'Yes.  That's all.  The Doctor's a smart man.  He quite enters into \nit.  It's a joke of mine.  I like it for a time.  You needn't \nmention it, but I think I shall go out next Tuesday!'\n\nI assured him that I would consider our interview perfectly \nconfidential; and rejoined the Doctor.  As we were passing through \na gallery on our way out, a well-dressed lady, of quiet and \ncomposed manners, came up, and proffering a slip of paper and a \npen, begged that I would oblige her with an autograph, I complied, \nand we parted.\n\n'I think I remember having had a few interviews like that, with \nladies out of doors.  I hope SHE is not mad?'\n\n'Yes.'\n\n'On what subject?  Autographs?'\n\n'No.  She hears voices in the air.'\n\n'Well!' thought I, 'it would be well if we could shut up a few \nfalse prophets of these later times, who have professed to do the \nsame; and I should like to try the experiment on a Mormonist or two \nto begin with.'\n\nIn this place, there is the best jail for untried offenders in the \nworld.  There is also a very well-ordered State prison, arranged \nupon the same plan as that at Boston, except that here, there is \nalways a sentry on the wall with a loaded gun.  It contained at \nthat time about two hundred prisoners.  A spot was shown me in the \nsleeping ward, where a watchman was murdered some years since in \nthe dead of night, in a desperate attempt to escape, made by a \nprisoner who had broken from his cell.  A woman, too, was pointed \nout to me, who, for the murder of her husband, had been a close \nprisoner for sixteen years.\n\n'Do you think,' I asked of my conductor, 'that after so very long \nan imprisonment, she has any thought or hope of ever regaining her \nliberty?'\n\n'Oh dear yes,' he answered.  'To be sure she has.'\n\n'She has no chance of obtaining it, I suppose?'\n\n'Well, I don't know:' which, by-the-bye, is a national answer.  \n'Her friends mistrust her.'\n\n'What have THEY to do with it?' I naturally inquired.\n\n'Well, they won't petition.'\n\n'But if they did, they couldn't get her out, I suppose?'\n\n'Well, not the first time, perhaps, nor yet the second, but tiring \nand wearying for a few years might do it.'\n\n'Does that ever do it?'\n\n'Why yes, that'll do it sometimes.  Political friends'll do it \nsometimes.  It's pretty often done, one way or another.'\n\nI shall always entertain a very pleasant and grateful recollection \nof Hartford.  It is a lovely place, and I had many friends there, \nwhom I can never remember with indifference.  We left it with no \nlittle regret on the evening of Friday the 11th, and travelled that \nnight by railroad to New Haven.  Upon the way, the guard and I were \nformally introduced to each other (as we usually were on such \noccasions), and exchanged a variety of small-talk.  We reached New \nHaven at about eight o'clock, after a journey of three hours, and \nput up for the night at the best inn.\n\nNew Haven, known also as the City of Elms, is a fine town.  Many of \nits streets (as its ALIAS sufficiently imports) are planted with \nrows of grand old elm-trees; and the same natural ornaments \nsurround Yale College, an establishment of considerable eminence \nand reputation.  The various departments of this Institution are \nerected in a kind of park or common in the middle of the town, \nwhere they are dimly visible among the shadowing trees.  The effect \nis very like that of an old cathedral yard in England; and when \ntheir branches are in full leaf, must be extremely picturesque.  \nEven in the winter time, these groups of well-grown trees, \nclustering among the busy streets and houses of a thriving city, \nhave a very quaint appearance:  seeming to bring about a kind of \ncompromise between town and country; as if each had met the other \nhalf-way, and shaken hands upon it; which is at once novel and \npleasant.\n\nAfter a night's rest, we rose early, and in good time went down to \nthe wharf, and on board the packet New York FOR New York.  This was \nthe first American steamboat of any size that I had seen; and \ncertainly to an English eye it was infinitely less like a steamboat \nthan a huge floating bath.  I could hardly persuade myself, indeed, \nbut that the bathing establishment off Westminster Bridge, which I \nleft a baby, had suddenly grown to an enormous size; run away from \nhome; and set up in foreign parts as a steamer.  Being in America, \ntoo, which our vagabonds do so particularly favour, it seemed the \nmore probable.\n\nThe great difference in appearance between these packets and ours, \nis, that there is so much of them out of the water:  the main-deck \nbeing enclosed on all sides, and filled with casks and goods, like \nany second or third floor in a stack of warehouses; and the \npromenade or hurricane-deck being a-top of that again.  A part of \nthe machinery is always above this deck; where the connecting-rod, \nin a strong and lofty frame, is seen working away like an iron top-\nsawyer.  There is seldom any mast or tackle:  nothing aloft but two \ntall black chimneys.  The man at the helm is shut up in a little \nhouse in the fore part of the boat (the wheel being connected with \nthe rudder by iron chains, working the whole length of the deck); \nand the passengers, unless the weather be very fine indeed, usually \ncongregate below.  Directly you have left the wharf, all the life, \nand stir, and bustle of a packet cease.  You wonder for a long time \nhow she goes on, for there seems to be nobody in charge of her; and \nwhen another of these dull machines comes splashing by, you feel \nquite indignant with it, as a sullen cumbrous, ungraceful, \nunshiplike leviathan:  quite forgetting that the vessel you are on \nboard of, is its very counterpart.\n\nThere is always a clerk's office on the lower deck, where you pay \nyour fare; a ladies' cabin; baggage and stowage rooms; engineer's \nroom; and in short a great variety of perplexities which render the \ndiscovery of the gentlemen's cabin, a matter of some difficulty.  \nIt often occupies the whole length of the boat (as it did in this \ncase), and has three or four tiers of berths on each side.  When I \nfirst descended into the cabin of the New York, it looked, in my \nunaccustomed eyes, about as long as the Burlington Arcade.\n\nThe Sound which has to be crossed on this passage, is not always a \nvery safe or pleasant navigation, and has been the scene of some \nunfortunate accidents.  It was a wet morning, and very misty, and \nwe soon lost sight of land.  The day was calm, however, and \nbrightened towards noon.  After exhausting (with good help from a \nfriend) the larder, and the stock of bottled beer, I lay down to \nsleep; being very much tired with the fatigues of yesterday.  But I \nwoke from my nap in time to hurry up, and see Hell Gate, the Hog's \nBack, the Frying Pan, and other notorious localities, attractive to \nall readers of famous Diedrich Knickerbocker's History.  We were \nnow in a narrow channel, with sloping banks on either side, \nbesprinkled with pleasant villas, and made refreshing to the sight \nby turf and trees.  Soon we shot in quick succession, past a light-\nhouse; a madhouse (how the lunatics flung up their caps and roared \nin sympathy with the headlong engine and the driving tide!); a \njail; and other buildings:  and so emerged into a noble bay, whose \nwaters sparkled in the now cloudless sunshine like Nature's eyes \nturned up to Heaven.\n\nThen there lay stretched out before us, to the right, confused \nheaps of buildings, with here and there a spire or steeple, looking \ndown upon the herd below; and here and there, again, a cloud of \nlazy smoke; and in the foreground a forest of ships' masts, cheery \nwith flapping sails and waving flags.  Crossing from among them to \nthe opposite shore, were steam ferry-boats laden with people, \ncoaches, horses, waggons, baskets, boxes:  crossed and recrossed by \nother ferry-boats:  all travelling to and fro:  and never idle.  \nStately among these restless Insects, were two or three large \nships, moving with slow majestic pace, as creatures of a prouder \nkind, disdainful of their puny journeys, and making for the broad \nsea.  Beyond, were shining heights, and islands in the glancing \nriver, and a distance scarcely less blue and bright than the sky it \nseemed to meet.  The city's hum and buzz, the clinking of capstans, \nthe ringing of bells, the barking of dogs, the clattering of \nwheels, tingled in the listening ear.  All of which life and stir, \ncoming across the stirring water, caught new life and animation \nfrom its free companionship; and, sympathising with its buoyant \nspirits, glistened as it seemed in sport upon its surface, and \nhemmed the vessel round, and plashed the water high about her \nsides, and, floating her gallantly into the dock, flew off again to \nwelcome other comers, and speed before them to the busy port.\n\n\n\n\nCHAPTER VI - NEW YORK\n\n\n\nTHE beautiful metropolis of America is by no means so clean a city \nas Boston, but many of its streets have the same characteristics; \nexcept that the houses are not quite so fresh-coloured, the sign-\nboards are not quite so gaudy, the gilded letters not quite so \ngolden, the bricks not quite so red, the stone not quite so white, \nthe blinds and area railings not quite so green, the knobs and \nplates upon the street doors not quite so bright and twinkling.  \nThere are many by-streets, almost as neutral in clean colours, and \npositive in dirty ones, as by-streets in London; and there is one \nquarter, commonly called the Five Points, which, in respect of \nfilth and wretchedness, may be safely backed against Seven Dials, \nor any other part of famed St. Giles's.\n\nThe great promenade and thoroughfare, as most people know, is \nBroadway; a wide and bustling street, which, from the Battery \nGardens to its opposite termination in a country road, may be four \nmiles long.  Shall we sit down in an upper floor of the Carlton \nHouse Hotel (situated in the best part of this main artery of New \nYork), and when we are tired of looking down upon the life below, \nsally forth arm-in-arm, and mingle with the stream?\n\nWarm weather!  The sun strikes upon our heads at this open window, \nas though its rays were concentrated through a burning-glass; but \nthe day is in its zenith, and the season an unusual one.  Was there \never such a sunny street as this Broadway!  The pavement stones are \npolished with the tread of feet until they shine again; the red \nbricks of the houses might be yet in the dry, hot kilns; and the \nroofs of those omnibuses look as though, if water were poured on \nthem, they would hiss and smoke, and smell like half-quenched \nfires.  No stint of omnibuses here!  Half-a-dozen have gone by \nwithin as many minutes.  Plenty of hackney cabs and coaches too; \ngigs, phaetons, large-wheeled tilburies, and private carriages - \nrather of a clumsy make, and not very different from the public \nvehicles, but built for the heavy roads beyond the city pavement.  \nNegro coachmen and white; in straw hats, black hats, white hats, \nglazed caps, fur caps; in coats of drab, black, brown, green, blue, \nnankeen, striped jean and linen; and there, in that one instance \n(look while it passes, or it will be too late), in suits of livery.  \nSome southern republican that, who puts his blacks in uniform, and \nswells with Sultan pomp and power.  Yonder, where that phaeton with \nthe well-clipped pair of grays has stopped - standing at their \nheads now - is a Yorkshire groom, who has not been very long in \nthese parts, and looks sorrowfully round for a companion pair of \ntop-boots, which he may traverse the city half a year without \nmeeting.  Heaven save the ladies, how they dress!  We have seen \nmore colours in these ten minutes, than we should have seen \nelsewhere, in as many days.  What various parasols! what rainbow \nsilks and satins! what pinking of thin stockings, and pinching of \nthin shoes, and fluttering of ribbons and silk tassels, and display \nof rich cloaks with gaudy hoods and linings!  The young gentlemen \nare fond, you see, of turning down their shirt-collars and \ncultivating their whiskers, especially under the chin; but they \ncannot approach the ladies in their dress or bearing, being, to say \nthe truth, humanity of quite another sort.  Byrons of the desk and \ncounter, pass on, and let us see what kind of men those are behind \nye:  those two labourers in holiday clothes, of whom one carries in \nhis hand a crumpled scrap of paper from which he tries to spell out \na hard name, while the other looks about for it on all the doors \nand windows.\n\nIrishmen both!  You might know them, if they were masked, by their \nlong-tailed blue coats and bright buttons, and their drab trousers, \nwhich they wear like men well used to working dresses, who are easy \nin no others.  It would be hard to keep your model republics going, \nwithout the countrymen and countrywomen of those two labourers.  \nFor who else would dig, and delve, and drudge, and do domestic \nwork, and make canals and roads, and execute great lines of \nInternal Improvement!  Irishmen both, and sorely puzzled too, to \nfind out what they seek.  Let us go down, and help them, for the \nlove of home, and that spirit of liberty which admits of honest \nservice to honest men, and honest work for honest bread, no matter \nwhat it be.\n\nThat's well!  We have got at the right address at last, though it \nis written in strange characters truly, and might have been \nscrawled with the blunt handle of the spade the writer better knows \nthe use of, than a pen.  Their way lies yonder, but what business \ntakes them there?  They carry savings:  to hoard up?  No.  They are \nbrothers, those men.  One crossed the sea alone, and working very \nhard for one half year, and living harder, saved funds enough to \nbring the other out.  That done, they worked together side by side, \ncontentedly sharing hard labour and hard living for another term, \nand then their sisters came, and then another brother, and lastly, \ntheir old mother.  And what now?  Why, the poor old crone is \nrestless in a strange land, and yearns to lay her bones, she says, \namong her people in the old graveyard at home:  and so they go to \npay her passage back:  and God help her and them, and every simple \nheart, and all who turn to the Jerusalem of their younger days, and \nhave an altar-fire upon the cold hearth of their fathers.\n\nThis narrow thoroughfare, baking and blistering in the sun, is Wall \nStreet:  the Stock Exchange and Lombard Street of New York.  Many a \nrapid fortune has been made in this street, and many a no less \nrapid ruin.  Some of these very merchants whom you see hanging \nabout here now, have locked up money in their strong-boxes, like \nthe man in the Arabian Nights, and opening them again, have found \nbut withered leaves.  Below, here by the water-side, where the \nbowsprits of ships stretch across the footway, and almost thrust \nthemselves into the windows, lie the noble American vessels which \nhaving made their Packet Service the finest in the world.  They \nhave brought hither the foreigners who abound in all the streets:  \nnot, perhaps, that there are more here, than in other commercial \ncities; but elsewhere, they have particular haunts, and you must \nfind them out; here, they pervade the town.\n\nWe must cross Broadway again; gaining some refreshment from the \nheat, in the sight of the great blocks of clean ice which are being \ncarried into shops and bar-rooms; and the pine-apples and water-\nmelons profusely displayed for sale.  Fine streets of spacious \nhouses here, you see! - Wall Street has furnished and dismantled \nmany of them very often - and here a deep green leafy square.  Be \nsure that is a hospitable house with inmates to be affectionately \nremembered always, where they have the open door and pretty show of \nplants within, and where the child with laughing eyes is peeping \nout of window at the little dog below.  You wonder what may be the \nuse of this tall flagstaff in the by-street, with something like \nLiberty's head-dress on its top:  so do I.  But there is a passion \nfor tall flagstaffs hereabout, and you may see its twin brother in \nfive minutes, if you have a mind.\n\nAgain across Broadway, and so - passing from the many-coloured \ncrowd and glittering shops - into another long main street, the \nBowery.  A railroad yonder, see, where two stout horses trot along, \ndrawing a score or two of people and a great wooden ark, with ease.  \nThe stores are poorer here; the passengers less gay.  Clothes \nready-made, and meat ready-cooked, are to be bought in these parts; \nand the lively whirl of carriages is exchanged for the deep rumble \nof carts and waggons.  These signs which are so plentiful, in shape \nlike river buoys, or small balloons, hoisted by cords to poles, and \ndangling there, announce, as you may see by looking up, 'OYSTERS IN \nEVERY STYLE.'  They tempt the hungry most at night, for then dull \ncandles glimmering inside, illuminate these dainty words, and make \nthe mouths of idlers water, as they read and linger.\n\nWhat is this dismal-fronted pile of bastard Egyptian, like an \nenchanter's palace in a melodrama! - a famous prison, called The \nTombs.  Shall we go in?\n\nSo.  A long, narrow, lofty building, stove-heated as usual, with \nfour galleries, one above the other, going round it, and \ncommunicating by stairs.  Between the two sides of each gallery, \nand in its centre, a bridge, for the greater convenience of \ncrossing.  On each of these bridges sits a man:  dozing or reading, \nor talking to an idle companion.  On each tier, are two opposite \nrows of small iron doors.  They look like furnace-doors, but are \ncold and black, as though the fires within had all gone out.  Some \ntwo or three are open, and women, with drooping heads bent down, \nare talking to the inmates.  The whole is lighted by a skylight, \nbut it is fast closed; and from the roof there dangle, limp and \ndrooping, two useless windsails.\n\nA man with keys appears, to show us round.  A good-looking fellow, \nand, in his way, civil and obliging.\n\n'Are those black doors the cells?'\n\n'Yes.'\n\n'Are they all full?'\n\n'Well, they're pretty nigh full, and that's a fact, and no two ways \nabout it.'\n\n'Those at the bottom are unwholesome, surely?'\n\n'Why, we DO only put coloured people in 'em.  That's the truth.'\n\n'When do the prisoners take exercise?'\n\n'Well, they do without it pretty much.'\n\n'Do they never walk in the yard?'\n\n'Considerable seldom.'\n\n'Sometimes, I suppose?'\n\n'Well, it's rare they do.  They keep pretty bright without it.'\n\n'But suppose a man were here for a twelvemonth.  I know this is \nonly a prison for criminals who are charged with grave offences, \nwhile they are awaiting their trial, or under remand, but the law \nhere affords criminals many means of delay.  What with motions for \nnew trials, and in arrest of judgment, and what not, a prisoner \nmight be here for twelve months, I take it, might he not?'\n\n'Well, I guess he might.'\n\n'Do you mean to say that in all that time he would never come out \nat that little iron door, for exercise?'\n\n'He might walk some, perhaps - not much.'\n\n'Will you open one of the doors?'\n\n'All, if you like.'\n\nThe fastenings jar and rattle, and one of the doors turns slowly on \nits hinges.  Let us look in.  A small bare cell, into which the \nlight enters through a high chink in the wall.  There is a rude \nmeans of washing, a table, and a bedstead.  Upon the latter, sits a \nman of sixty; reading.  He looks up for a moment; gives an \nimpatient dogged shake; and fixes his eyes upon his book again.  As \nwe withdraw our heads, the door closes on him, and is fastened as \nbefore.  This man has murdered his wife, and will probably be \nhanged.\n\n'How long has he been here?'\n\n'A month.'\n\n'When will he be tried?'\n\n'Next term.'\n\n'When is that?'\n\n'Next month.'\n\n'In England, if a man be under sentence of death, even he has air \nand exercise at certain periods of the day.'\n\n'Possible?'\n\nWith what stupendous and untranslatable coolness he says this, and \nhow loungingly he leads on to the women's side:  making, as he \ngoes, a kind of iron castanet of the key and the stair-rail!\n\nEach cell door on this side has a square aperture in it.  Some of \nthe women peep anxiously through it at the sound of footsteps; \nothers shrink away in shame. - For what offence can that lonely \nchild, of ten or twelve years old, be shut up here?  Oh! that boy?  \nHe is the son of the prisoner we saw just now; is a witness against \nhis father; and is detained here for safe keeping, until the trial; \nthat's all.\n\nBut it is a dreadful place for the child to pass the long days and \nnights in.  This is rather hard treatment for a young witness, is \nit not? - What says our conductor?\n\n'Well, it an't a very rowdy life, and THAT'S a fact!'\n\nAgain he clinks his metal castanet, and leads us leisurely away.  I \nhave a question to ask him as we go.\n\n'Pray, why do they call this place The Tombs?'\n\n'Well, it's the cant name.'\n\n'I know it is.  Why?'\n\n'Some suicides happened here, when it was first built.  I expect it \ncome about from that.'\n\n'I saw just now, that that man's clothes were scattered about the \nfloor of his cell.  Don't you oblige the prisoners to be orderly, \nand put such things away?'\n\n'Where should they put 'em?'\n\n'Not on the ground surely.  What do you say to hanging them up?'\n\nHe stops and looks round to emphasise his answer:\n\n'Why, I say that's just it.  When they had hooks they WOULD hang \nthemselves, so they're taken out of every cell, and there's only \nthe marks left where they used to be!'\n\nThe prison-yard in which he pauses now, has been the scene of \nterrible performances.  Into this narrow, grave-like place, men are \nbrought out to die.  The wretched creature stands beneath the \ngibbet on the ground; the rope about his neck; and when the sign is \ngiven, a weight at its other end comes running down, and swings him \nup into the air - a corpse.\n\nThe law requires that there be present at this dismal spectacle, \nthe judge, the jury, and citizens to the amount of twenty-five.  \nFrom the community it is hidden.  To the dissolute and bad, the \nthing remains a frightful mystery.  Between the criminal and them, \nthe prison-wall is interposed as a thick gloomy veil.  It is the \ncurtain to his bed of death, his winding-sheet, and grave.  From \nhim it shuts out life, and all the motives to unrepenting hardihood \nin that last hour, which its mere sight and presence is often all-\nsufficient to sustain.  There are no bold eyes to make him bold; no \nruffians to uphold a ruffian's name before.  All beyond the \npitiless stone wall, is unknown space.\n\nLet us go forth again into the cheerful streets.\n\nOnce more in Broadway!  Here are the same ladies in bright colours, \nwalking to and fro, in pairs and singly; yonder the very same light \nblue parasol which passed and repassed the hotel-window twenty \ntimes while we were sitting there.  We are going to cross here.  \nTake care of the pigs.  Two portly sows are trotting up behind this \ncarriage, and a select party of half-a-dozen gentlemen hogs have \njust now turned the corner.\n\nHere is a solitary swine lounging homeward by himself.  He has only \none ear; having parted with the other to vagrant-dogs in the course \nof his city rambles.  But he gets on very well without it; and \nleads a roving, gentlemanly, vagabond kind of life, somewhat \nanswering to that of our club-men at home.  He leaves his lodgings \nevery morning at a certain hour, throws himself upon the town, gets \nthrough his day in some manner quite satisfactory to himself, and \nregularly appears at the door of his own house again at night, like \nthe mysterious master of Gil Blas.  He is a free-and-easy, \ncareless, indifferent kind of pig, having a very large acquaintance \namong other pigs of the same character, whom he rather knows by \nsight than conversation, as he seldom troubles himself to stop and \nexchange civilities, but goes grunting down the kennel, turning up \nthe news and small-talk of the city in the shape of cabbage-stalks \nand offal, and bearing no tails but his own:  which is a very short \none, for his old enemies, the dogs, have been at that too, and have \nleft him hardly enough to swear by.  He is in every respect a \nrepublican pig, going wherever he pleases, and mingling with the \nbest society, on an equal, if not superior footing, for every one \nmakes way when he appears, and the haughtiest give him the wall, if \nhe prefer it.  He is a great philosopher, and seldom moved, unless \nby the dogs before mentioned.  Sometimes, indeed, you may see his \nsmall eye twinkling on a slaughtered friend, whose carcase \ngarnishes a butcher's door-post, but he grunts out 'Such is life:  \nall flesh is pork!' buries his nose in the mire again, and waddles \ndown the gutter:  comforting himself with the reflection that there \nis one snout the less to anticipate stray cabbage-stalks, at any \nrate.\n\nThey are the city scavengers, these pigs.  Ugly brutes they are; \nhaving, for the most part, scanty brown backs, like the lids of old \nhorsehair trunks:  spotted with unwholesome black blotches.  They \nhave long, gaunt legs, too, and such peaked snouts, that if one of \nthem could be persuaded to sit for his profile, nobody would \nrecognise it for a pig's likeness.  They are never attended upon, \nor fed, or driven, or caught, but are thrown upon their own \nresources in early life, and become preternaturally knowing in \nconsequence.  Every pig knows where he lives, much better than \nanybody could tell him.  At this hour, just as evening is closing \nin, you will see them roaming towards bed by scores, eating their \nway to the last.  Occasionally, some youth among them who has over-\neaten himself, or has been worried by dogs, trots shrinkingly \nhomeward, like a prodigal son:  but this is a rare case:  perfect \nself-possession and self-reliance, and immovable composure, being \ntheir foremost attributes.\n\nThe streets and shops are lighted now; and as the eye travels down \nthe long thoroughfare, dotted with bright jets of gas, it is \nreminded of Oxford Street, or Piccadilly.  Here and there a flight \nof broad stone cellar-steps appears, and a painted lamp directs you \nto the Bowling Saloon, or Ten-Pin alley; Ten-Pins being a game of \nmingled chance and skill, invented when the legislature passed an \nact forbidding Nine-Pins.  At other downward flights of steps, are \nother lamps, marking the whereabouts of oyster-cellars - pleasant \nretreats, say I:  not only by reason of their wonderful cookery of \noysters, pretty nigh as large as cheese-plates (or for thy dear \nsake, heartiest of Greek Professors!), but because of all kinds of \ncaters of fish, or flesh, or fowl, in these latitudes, the \nswallowers of oysters alone are not gregarious; but subduing \nthemselves, as it were, to the nature of what they work in, and \ncopying the coyness of the thing they eat, do sit apart in \ncurtained boxes, and consort by twos, not by two hundreds.\n\nBut how quiet the streets are!  Are there no itinerant bands; no \nwind or stringed instruments?  No, not one.  By day, are there no \nPunches, Fantoccini, Dancing-dogs, Jugglers, Conjurers, \nOrchestrinas, or even Barrel-organs?  No, not one.  Yes, I remember \none.  One barrel-organ and a dancing-monkey - sportive by nature, \nbut fast fading into a dull, lumpish monkey, of the Utilitarian \nschool.  Beyond that, nothing lively; no, not so much as a white \nmouse in a twirling cage.\n\nAre there no amusements?  Yes.  There is a lecture-room across the \nway, from which that glare of light proceeds, and there may be \nevening service for the ladies thrice a week, or oftener.  For the \nyoung gentlemen, there is the counting-house, the store, the bar-\nroom:  the latter, as you may see through these windows, pretty \nfull.  Hark! to the clinking sound of hammers breaking lumps of \nice, and to the cool gurgling of the pounded bits, as, in the \nprocess of mixing, they are poured from glass to glass!  No \namusements?  What are these suckers of cigars and swallowers of \nstrong drinks, whose hats and legs we see in every possible variety \nof twist, doing, but amusing themselves?  What are the fifty \nnewspapers, which those precocious urchins are bawling down the \nstreet, and which are kept filed within, what are they but \namusements?  Not vapid, waterish amusements, but good strong stuff; \ndealing in round abuse and blackguard names; pulling off the roofs \nof private houses, as the Halting Devil did in Spain; pimping and \npandering for all degrees of vicious taste, and gorging with coined \nlies the most voracious maw; imputing to every man in public life \nthe coarsest and the vilest motives; scaring away from the stabbed \nand prostrate body-politic, every Samaritan of clear conscience and \ngood deeds; and setting on, with yell and whistle and the clapping \nof foul hands, the vilest vermin and worst birds of prey. - No \namusements!\n\nLet us go on again; and passing this wilderness of an hotel with \nstores about its base, like some Continental theatre, or the London \nOpera House shorn of its colonnade, plunge into the Five Points.  \nBut it is needful, first, that we take as our escort these two \nheads of the police, whom you would know for sharp and well-trained \nofficers if you met them in the Great Desert.  So true it is, that \ncertain pursuits, wherever carried on, will stamp men with the same \ncharacter.  These two might have been begotten, born, and bred, in \nBow Street.\n\nWe have seen no beggars in the streets by night or day; but of \nother kinds of strollers, plenty.  Poverty, wretchedness, and vice, \nare rife enough where we are going now.\n\nThis is the place:  these narrow ways, diverging to the right and \nleft, and reeking everywhere with dirt and filth.  Such lives as \nare led here, bear the same fruits here as elsewhere.  The coarse \nand bloated faces at the doors, have counterparts at home, and all \nthe wide world over.  Debauchery has made the very houses \nprematurely old.  See how the rotten beams are tumbling down, and \nhow the patched and broken windows seem to scowl dimly, like eyes \nthat have been hurt in drunken frays.  Many of those pigs live \nhere.  Do they ever wonder why their masters walk upright in lieu \nof going on all-fours? and why they talk instead of grunting?\n\nSo far, nearly every house is a low tavern; and on the bar-room \nwalls, are coloured prints of Washington, and Queen Victoria of \nEngland, and the American Eagle.  Among the pigeon-holes that hold \nthe bottles, are pieces of plate-glass and coloured paper, for \nthere is, in some sort, a taste for decoration, even here.  And as \nseamen frequent these haunts, there are maritime pictures by the \ndozen:  of partings between sailors and their lady-loves, portraits \nof William, of the ballad, and his Black-Eyed Susan; of Will Watch, \nthe Bold Smuggler; of Paul Jones the Pirate, and the like:  on \nwhich the painted eyes of Queen Victoria, and of Washington to \nboot, rest in as strange companionship, as on most of the scenes \nthat are enacted in their wondering presence.\n\nWhat place is this, to which the squalid street conducts us?  A \nkind of square of leprous houses, some of which are attainable only \nby crazy wooden stairs without.  What lies beyond this tottering \nflight of steps, that creak beneath our tread? - a miserable room, \nlighted by one dim candle, and destitute of all comfort, save that \nwhich may be hidden in a wretched bed.  Beside it, sits a man:  his \nelbows on his knees:  his forehead hidden in his hands.  'What ails \nthat man?' asks the foremost officer.  'Fever,' he sullenly \nreplies, without looking up.  Conceive the fancies of a feverish \nbrain, in such a place as this!\n\nAscend these pitch-dark stairs, heedful of a false footing on the \ntrembling boards, and grope your way with me into this wolfish den, \nwhere neither ray of light nor breath of air, appears to come.  A \nnegro lad, startled from his sleep by the officer's voice - he \nknows it well - but comforted by his assurance that he has not come \non business, officiously bestirs himself to light a candle.  The \nmatch flickers for a moment, and shows great mounds of dusty rags \nupon the ground; then dies away and leaves a denser darkness than \nbefore, if there can be degrees in such extremes.  He stumbles down \nthe stairs and presently comes back, shading a flaring taper with \nhis hand.  Then the mounds of rags are seen to be astir, and rise \nslowly up, and the floor is covered with heaps of negro women, \nwaking from their sleep:  their white teeth chattering, and their \nbright eyes glistening and winking on all sides with surprise and \nfear, like the countless repetition of one astonished African face \nin some strange mirror.\n\nMount up these other stairs with no less caution (there are traps \nand pitfalls here, for those who are not so well escorted as \nourselves) into the housetop; where the bare beams and rafters meet \noverhead, and calm night looks down through the crevices in the \nroof.  Open the door of one of these cramped hutches full of \nsleeping negroes.  Pah!  They have a charcoal fire within; there is \na smell of singeing clothes, or flesh, so close they gather round \nthe brazier; and vapours issue forth that blind and suffocate.  \nFrom every corner, as you glance about you in these dark retreats, \nsome figure crawls half-awakened, as if the judgment-hour were near \nat hand, and every obscene grave were giving up its dead.  Where \ndogs would howl to lie, women, and men, and boys slink off to \nsleep, forcing the dislodged rats to move away in quest of better \nlodgings.\n\nHere too are lanes and alleys, paved with mud knee-deep, \nunderground chambers, where they dance and game; the walls bedecked \nwith rough designs of ships, and forts, and flags, and American \neagles out of number:  ruined houses, open to the street, whence, \nthrough wide gaps in the walls, other ruins loom upon the eye, as \nthough the world of vice and misery had nothing else to show:  \nhideous tenements which take their name from robbery and murder:  \nall that is loathsome, drooping, and decayed is here.\n\nOur leader has his hand upon the latch of 'Almack's,' and calls to \nus from the bottom of the steps; for the assembly-room of the Five \nPoint fashionables is approached by a descent.  Shall we go in?  It \nis but a moment.\n\nHeyday! the landlady of Almack's thrives!  A buxom fat mulatto \nwoman, with sparkling eyes, whose head is daintily ornamented with \na handkerchief of many colours.  Nor is the landlord much behind \nher in his finery, being attired in a smart blue jacket, like a \nship's steward, with a thick gold ring upon his little finger, and \nround his neck a gleaming golden watch-guard.  How glad he is to \nsee us!  What will we please to call for?  A dance?  It shall be \ndone directly, sir:  'a regular break-down.'\n\nThe corpulent black fiddler, and his friend who plays the \ntambourine, stamp upon the boarding of the small raised orchestra \nin which they sit, and play a lively measure.  Five or six couple \ncome upon the floor, marshalled by a lively young negro, who is the \nwit of the assembly, and the greatest dancer known.  He never \nleaves off making queer faces, and is the delight of all the rest, \nwho grin from ear to ear incessantly.  Among the dancers are two \nyoung mulatto girls, with large, black, drooping eyes, and head-\ngear after the fashion of the hostess, who are as shy, or feign to \nbe, as though they never danced before, and so look down before the \nvisitors, that their partners can see nothing but the long fringed \nlashes.\n\nBut the dance commences.  Every gentleman sets as long as he likes \nto the opposite lady, and the opposite lady to him, and all are so \nlong about it that the sport begins to languish, when suddenly the \nlively hero dashes in to the rescue.  Instantly the fiddler grins, \nand goes at it tooth and nail; there is new energy in the \ntambourine; new laughter in the dancers; new smiles in the \nlandlady; new confidence in the landlord; new brightness in the \nvery candles.\n\nSingle shuffle, double shuffle, cut and cross-cut; snapping his \nfingers, rolling his eyes, turning in his knees, presenting the \nbacks of his legs in front, spinning about on his toes and heels \nlike nothing but the man's fingers on the tambourine; dancing with \ntwo left legs, two right legs, two wooden legs, two wire legs, two \nspring legs - all sorts of legs and no legs - what is this to him?  \nAnd in what walk of life, or dance of life, does man ever get such \nstimulating applause as thunders about him, when, having danced his \npartner off her feet, and himself too, he finishes by leaping \ngloriously on the bar-counter, and calling for something to drink, \nwith the chuckle of a million of counterfeit Jim Crows, in one \ninimitable sound!\n\nThe air, even in these distempered parts, is fresh after the \nstifling atmosphere of the houses; and now, as we emerge into a \nbroader street, it blows upon us with a purer breath, and the stars \nlook bright again.  Here are The Tombs once more.  The city watch-\nhouse is a part of the building.  It follows naturally on the \nsights we have just left.  Let us see that, and then to bed.\n\nWhat! do you thrust your common offenders against the police \ndiscipline of the town, into such holes as these?  Do men and \nwomen, against whom no crime is proved, lie here all night in \nperfect darkness, surrounded by the noisome vapours which encircle \nthat flagging lamp you light us with, and breathing this filthy and \noffensive stench!  Why, such indecent and disgusting dungeons as \nthese cells, would bring disgrace upon the most despotic empire in \nthe world!  Look at them, man - you, who see them every night, and \nkeep the keys.  Do you see what they are?  Do you know how drains \nare made below the streets, and wherein these human sewers differ, \nexcept in being always stagnant?\n\nWell, he don't know.  He has had five-and-twenty young women locked \nup in this very cell at one time, and you'd hardly realise what \nhandsome faces there were among 'em.\n\nIn God's name! shut the door upon the wretched creature who is in \nit now, and put its screen before a place, quite unsurpassed in all \nthe vice, neglect, and devilry, of the worst old town in Europe.\n\nAre people really left all night, untried, in those black sties? - \nEvery night.  The watch is set at seven in the evening.  The \nmagistrate opens his court at five in the morning.  That is the \nearliest hour at which the first prisoner can be released; and if \nan officer appear against him, he is not taken out till nine \no'clock or ten. - But if any one among them die in the interval, as \none man did, not long ago?  Then he is half-eaten by the rats in an \nhour's time; as that man was; and there an end.\n\nWhat is this intolerable tolling of great bells, and crashing of \nwheels, and shouting in the distance?  A fire.  And what that deep \nred light in the opposite direction?  Another fire.  And what these \ncharred and blackened walls we stand before?  A dwelling where a \nfire has been.  It was more than hinted, in an official report, not \nlong ago, that some of these conflagrations were not wholly \naccidental, and that speculation and enterprise found a field of \nexertion, even in flames:  but be this as it may, there was a fire \nlast night, there are two to-night, and you may lay an even wager \nthere will be at least one, to-morrow.  So, carrying that with us \nfor our comfort, let us say, Good night, and climb up-stairs to \nbed.\n\n* * * * * *\n\nOne day, during my stay in New York, I paid a visit to the \ndifferent public institutions on Long Island, or Rhode Island:  I \nforget which.  One of them is a Lunatic Asylum.  The building is \nhandsome; and is remarkable for a spacious and elegant staircase.  \nThe whole structure is not yet finished, but it is already one of \nconsiderable size and extent, and is capable of accommodating a \nvery large number of patients.\n\nI cannot say that I derived much comfort from the inspection of \nthis charity.  The different wards might have been cleaner and \nbetter ordered; I saw nothing of that salutary system which had \nimpressed me so favourably elsewhere; and everything had a \nlounging, listless, madhouse air, which was very painful.  The \nmoping idiot, cowering down with long dishevelled hair; the \ngibbering maniac, with his hideous laugh and pointed finger; the \nvacant eye, the fierce wild face, the gloomy picking of the hands \nand lips, and munching of the nails:  there they were all, without \ndisguise, in naked ugliness and horror.  In the dining-room, a \nbare, dull, dreary place, with nothing for the eye to rest on but \nthe empty walls, a woman was locked up alone.  She was bent, they \ntold me, on committing suicide.  If anything could have \nstrengthened her in her resolution, it would certainly have been \nthe insupportable monotony of such an existence.\n\nThe terrible crowd with which these halls and galleries were \nfilled, so shocked me, that I abridged my stay within the shortest \nlimits, and declined to see that portion of the building in which \nthe refractory and violent were under closer restraint.  I have no \ndoubt that the gentleman who presided over this establishment at \nthe time I write of, was competent to manage it, and had done all \nin his power to promote its usefulness:  but will it be believed \nthat the miserable strife of Party feeling is carried even into \nthis sad refuge of afflicted and degraded humanity?  Will it be \nbelieved that the eyes which are to watch over and control the \nwanderings of minds on which the most dreadful visitation to which \nour nature is exposed has fallen, must wear the glasses of some \nwretched side in Politics?  Will it be believed that the governor \nof such a house as this, is appointed, and deposed, and changed \nperpetually, as Parties fluctuate and vary, and as their despicable \nweathercocks are blown this way or that?  A hundred times in every \nweek, some new most paltry exhibition of that narrow-minded and \ninjurious Party Spirit, which is the Simoom of America, sickening \nand blighting everything of wholesome life within its reach, was \nforced upon my notice; but I never turned my back upon it with \nfeelings of such deep disgust and measureless contempt, as when I \ncrossed the threshold of this madhouse.\n\nAt a short distance from this building is another called the Alms \nHouse, that is to say, the workhouse of New York.  This is a large \nInstitution also:  lodging, I believe, when I was there, nearly a \nthousand poor.  It was badly ventilated, and badly lighted; was not \ntoo clean; - and impressed me, on the whole, very uncomfortably.  \nBut it must be remembered that New York, as a great emporium of \ncommerce, and as a place of general resort, not only from all parts \nof the States, but from most parts of the world, has always a large \npauper population to provide for; and labours, therefore, under \npeculiar difficulties in this respect.  Nor must it be forgotten \nthat New York is a large town, and that in all large towns a vast \namount of good and evil is intermixed and jumbled up together.\n\nIn the same neighbourhood is the Farm, where young orphans are \nnursed and bred.  I did not see it, but I believe it is well \nconducted; and I can the more easily credit it, from knowing how \nmindful they usually are, in America, of that beautiful passage in \nthe Litany which remembers all sick persons and young children.\n\nI was taken to these Institutions by water, in a boat belonging to \nthe Island jail, and rowed by a crew of prisoners, who were dressed \nin a striped uniform of black and buff, in which they looked like \nfaded tigers.  They took me, by the same conveyance, to the jail \nitself.\n\nIt is an old prison, and quite a pioneer establishment, on the plan \nI have already described.  I was glad to hear this, for it is \nunquestionably a very indifferent one.  The most is made, however, \nof the means it possesses, and it is as well regulated as such a \nplace can be.\n\nThe women work in covered sheds, erected for that purpose.  If I \nremember right, there are no shops for the men, but be that as it \nmay, the greater part of them labour in certain stone-quarries near \nat hand.  The day being very wet indeed, this labour was suspended, \nand the prisoners were in their cells.  Imagine these cells, some \ntwo or three hundred in number, and in every one a man locked up; \nthis one at his door for air, with his hands thrust through the \ngrate; this one in bed (in the middle of the day, remember); and \nthis one flung down in a heap upon the ground, with his head \nagainst the bars, like a wild beast.  Make the rain pour down, \noutside, in torrents.  Put the everlasting stove in the midst; hot, \nand suffocating, and vaporous, as a witch's cauldron.  Add a \ncollection of gentle odours, such as would arise from a thousand \nmildewed umbrellas, wet through, and a thousand buck-baskets, full \nof half-washed linen - and there is the prison, as it was that day.\n\nThe prison for the State at Sing Sing is, on the other hand, a \nmodel jail.  That, and Auburn, are, I believe, the largest and best \nexamples of the silent system.\n\nIn another part of the city, is the Refuge for the Destitute:  an \nInstitution whose object is to reclaim youthful offenders, male and \nfemale, black and white, without distinction; to teach them useful \ntrades, apprentice them to respectable masters, and make them \nworthy members of society.  Its design, it will be seen, is similar \nto that at Boston; and it is a no less meritorious and admirable \nestablishment.  A suspicion crossed my mind during my inspection of \nthis noble charity, whether the superintendent had quite sufficient \nknowledge of the world and worldly characters; and whether he did \nnot commit a great mistake in treating some young girls, who were \nto all intents and purposes, by their years and their past lives, \nwomen, as though they were little children; which certainly had a \nludicrous effect in my eyes, and, or I am much mistaken, in theirs \nalso.  As the Institution, however, is always under a vigilant \nexamination of a body of gentlemen of great intelligence and \nexperience, it cannot fail to be well conducted; and whether I am \nright or wrong in this slight particular, is unimportant to its \ndeserts and character, which it would be difficult to estimate too \nhighly.\n\nIn addition to these establishments, there are in New York, \nexcellent hospitals and schools, literary institutions and \nlibraries; an admirable fire department (as indeed it should be, \nhaving constant practice), and charities of every sort and kind.  \nIn the suburbs there is a spacious cemetery:  unfinished yet, but \nevery day improving.  The saddest tomb I saw there was 'The \nStrangers' Grave.  Dedicated to the different hotels in this city.'\n\nThere are three principal theatres.  Two of them, the Park and the \nBowery, are large, elegant, and handsome buildings, and are, I \ngrieve to write it, generally deserted.  The third, the Olympic, is \na tiny show-box for vaudevilles and burlesques.  It is singularly \nwell conducted by Mr. Mitchell, a comic actor of great quiet humour \nand originality, who is well remembered and esteemed by London \nplaygoers.  I am happy to report of this deserving gentleman, that \nhis benches are usually well filled, and that his theatre rings \nwith merriment every night.  I had almost forgotten a small summer \ntheatre, called Niblo's, with gardens and open air amusements \nattached; but I believe it is not exempt from the general \ndepression under which Theatrical Property, or what is humorously \ncalled by that name, unfortunately labours.\n\nThe country round New York is surpassingly and exquisitely \npicturesque.  The climate, as I have already intimated, is somewhat \nof the warmest.  What it would be, without the sea breezes which \ncome from its beautiful Bay in the evening time, I will not throw \nmyself or my readers into a fever by inquiring.\n\nThe tone of the best society in this city, is like that of Boston; \nhere and there, it may be, with a greater infusion of the \nmercantile spirit, but generally polished and refined, and always \nmost hospitable.  The houses and tables are elegant; the hours \nlater and more rakish; and there is, perhaps, a greater spirit of \ncontention in reference to appearances, and the display of wealth \nand costly living.  The ladies are singularly beautiful.\n\nBefore I left New York I made arrangements for securing a passage \nhome in the George Washington packet ship, which was advertised to \nsail in June:  that being the month in which I had determined, if \nprevented by no accident in the course of my ramblings, to leave \nAmerica.\n\nI never thought that going back to England, returning to all who \nare dear to me, and to pursuits that have insensibly grown to be a \npart of my nature, I could have felt so much sorrow as I endured, \nwhen I parted at last, on board this ship, with the friends who had \naccompanied me from this city.  I never thought the name of any \nplace, so far away and so lately known, could ever associate itself \nin my mind with the crowd of affectionate remembrances that now \ncluster about it.  There are those in this city who would brighten, \nto me, the darkest winter-day that ever glimmered and went out in \nLapland; and before whose presence even Home grew dim, when they \nand I exchanged that painful word which mingles with our every \nthought and deed; which haunts our cradle-heads in infancy, and \ncloses up the vista of our lives in age.\n\n\n\n\nCHAPTER VII - PHILADELPHIA, AND ITS SOLITARY PRISON\n\n\n\nTHE journey from New York to Philadelphia, is made by railroad, and \ntwo ferries; and usually occupies between five and six hours.  It \nwas a fine evening when we were passengers in the train:  and \nwatching the bright sunset from a little window near the door by \nwhich we sat, my attention was attracted to a remarkable appearance \nissuing from the windows of the gentleman's car immediately in \nfront of us, which I supposed for some time was occasioned by a \nnumber of industrious persons inside, ripping open feather-beds, \nand giving the feathers to the wind.  At length it occurred to me \nthat they were only spitting, which was indeed the case; though how \nany number of passengers which it was possible for that car to \ncontain, could have maintained such a playful and incessant shower \nof expectoration, I am still at a loss to understand:  \nnotwithstanding the experience in all salivatory phenomena which I \nafterwards acquired.\n\nI made acquaintance, on this journey, with a mild and modest young \nquaker, who opened the discourse by informing me, in a grave \nwhisper, that his grandfather was the inventor of cold-drawn castor \noil.  I mention the circumstance here, thinking it probable that \nthis is the first occasion on which the valuable medicine in \nquestion was ever used as a conversational aperient.\n\nWe reached the city, late that night.  Looking out of my chamber-\nwindow, before going to bed, I saw, on the opposite side of the \nway, a handsome building of white marble, which had a mournful \nghost-like aspect, dreary to behold.  I attributed this to the \nsombre influence of the night, and on rising in the morning looked \nout again, expecting to see its steps and portico thronged with \ngroups of people passing in and out.  The door was still tight \nshut, however; the same cold cheerless air prevailed:  and the \nbuilding looked as if the marble statue of Don Guzman could alone \nhave any business to transact within its gloomy walls.  I hastened \nto inquire its name and purpose, and then my surprise vanished.  It \nwas the Tomb of many fortunes; the Great Catacomb of investment; \nthe memorable United States Bank.\n\nThe stoppage of this bank, with all its ruinous consequences, had \ncast (as I was told on every side) a gloom on Philadelphia, under \nthe depressing effect of which it yet laboured.  It certainly did \nseem rather dull and out of spirits.\n\nIt is a handsome city, but distractingly regular.  After walking \nabout it for an hour or two, I felt that I would have given the \nworld for a crooked street.  The collar of my coat appeared to \nstiffen, and the brim of my bat to expand, beneath its quakery \ninfluence.  My hair shrunk into a sleek short crop, my hands folded \nthemselves upon my breast of their own calm accord, and thoughts of \ntaking lodgings in Mark Lane over against the Market Place, and of \nmaking a large fortune by speculations in corn, came over me \ninvoluntarily.\n\nPhiladelphia is most bountifully provided with fresh water, which \nis showered and jerked about, and turned on, and poured off, \neverywhere.  The Waterworks, which are on a height near the city, \nare no less ornamental than useful, being tastefully laid out as a \npublic garden, and kept in the best and neatest order.  The river \nis dammed at this point, and forced by its own power into certain \nhigh tanks or reservoirs, whence the whole city, to the top stories \nof the houses, is supplied at a very trifling expense.\n\nThere are various public institutions.  Among them a most excellent \nHospital - a quaker establishment, but not sectarian in the great \nbenefits it confers; a quiet, quaint old Library, named after \nFranklin; a handsome Exchange and Post Office; and so forth.  In \nconnection with the quaker Hospital, there is a picture by West, \nwhich is exhibited for the benefit of the funds of the institution.  \nThe subject is, our Saviour healing the sick, and it is, perhaps, \nas favourable a specimen of the master as can be seen anywhere.  \nWhether this be high or low praise, depends upon the reader's \ntaste.\n\nIn the same room, there is a very characteristic and life-like \nportrait by Mr. Sully, a distinguished American artist.\n\nMy stay in Philadelphia was very short, but what I saw of its \nsociety, I greatly liked.  Treating of its general characteristics, \nI should be disposed to say that it is more provincial than Boston \nor New York, and that there is afloat in the fair city, an \nassumption of taste and criticism, savouring rather of those \ngenteel discussions upon the same themes, in connection with \nShakspeare and the Musical Glasses, of which we read in the Vicar \nof Wakefield.  Near the city, is a most splendid unfinished marble \nstructure for the Girard College, founded by a deceased gentleman \nof that name and of enormous wealth, which, if completed according \nto the original design, will be perhaps the richest edifice of \nmodern times.  But the bequest is involved in legal disputes, and \npending them the work has stopped; so that like many other great \nundertakings in America, even this is rather going to be done one \nof these days, than doing now.\n\nIn the outskirts, stands a great prison, called the Eastern \nPenitentiary:  conducted on a plan peculiar to the state of \nPennsylvania.  The system here, is rigid, strict, and hopeless \nsolitary confinement.  I believe it, in its effects, to be cruel \nand wrong.\n\nIn its intention, I am well convinced that it is kind, humane, and \nmeant for reformation; but I am persuaded that those who devised \nthis system of Prison Discipline, and those benevolent gentlemen \nwho carry it into execution, do not know what it is that they are \ndoing.  I believe that very few men are capable of estimating the \nimmense amount of torture and agony which this dreadful punishment, \nprolonged for years, inflicts upon the sufferers; and in guessing \nat it myself, and in reasoning from what I have seen written upon \ntheir faces, and what to my certain knowledge they feel within, I \nam only the more convinced that there is a depth of terrible \nendurance in it which none but the sufferers themselves can fathom, \nand which no man has a right to inflict upon his fellow-creature.  \nI hold this slow and daily tampering with the mysteries of the \nbrain, to be immeasurably worse than any torture of the body:  and \nbecause its ghastly signs and tokens are not so palpable to the eye \nand sense of touch as scars upon the flesh; because its wounds are \nnot upon the surface, and it extorts few cries that human ears can \nhear; therefore I the more denounce it, as a secret punishment \nwhich slumbering humanity is not roused up to stay.  I hesitated \nonce, debating with myself, whether, if I had the power of saying \n'Yes' or 'No,' I would allow it to be tried in certain cases, where \nthe terms of imprisonment were short; but now, I solemnly declare, \nthat with no rewards or honours could I walk a happy man beneath \nthe open sky by day, or lie me down upon my bed at night, with the \nconsciousness that one human creature, for any length of time, no \nmatter what, lay suffering this unknown punishment in his silent \ncell, and I the cause, or I consenting to it in the least degree.\n\nI was accompanied to this prison by two gentlemen officially \nconnected with its management, and passed the day in going from \ncell to cell, and talking with the inmates.  Every facility was \nafforded me, that the utmost courtesy could suggest.  Nothing was \nconcealed or hidden from my view, and every piece of information \nthat I sought, was openly and frankly given.  The perfect order of \nthe building cannot be praised too highly, and of the excellent \nmotives of all who are immediately concerned in the administration \nof the system, there can be no kind of question.\n\nBetween the body of the prison and the outer wall, there is a \nspacious garden.  Entering it, by a wicket in the massive gate, we \npursued the path before us to its other termination, and passed \ninto a large chamber, from which seven long passages radiate.  On \neither side of each, is a long, long row of low cell doors, with a \ncertain number over every one.  Above, a gallery of cells like \nthose below, except that they have no narrow yard attached (as \nthose in the ground tier have), and are somewhat smaller.  The \npossession of two of these, is supposed to compensate for the \nabsence of so much air and exercise as can be had in the dull strip \nattached to each of the others, in an hour's time every day; and \ntherefore every prisoner in this upper story has two cells, \nadjoining and communicating with, each other.\n\nStanding at the central point, and looking down these dreary \npassages, the dull repose and quiet that prevails, is awful.  \nOccasionally, there is a drowsy sound from some lone weaver's \nshuttle, or shoemaker's last, but it is stifled by the thick walls \nand heavy dungeon-door, and only serves to make the general \nstillness more profound.  Over the head and face of every prisoner \nwho comes into this melancholy house, a black hood is drawn; and in \nthis dark shroud, an emblem of the curtain dropped between him and \nthe living world, he is led to the cell from which he never again \ncomes forth, until his whole term of imprisonment has expired.  He \nnever hears of wife and children; home or friends; the life or \ndeath of any single creature.  He sees the prison-officers, but \nwith that exception he never looks upon a human countenance, or \nhears a human voice.  He is a man buried alive; to be dug out in \nthe slow round of years; and in the mean time dead to everything \nbut torturing anxieties and horrible despair.\n\nHis name, and crime, and term of suffering, are unknown, even to \nthe officer who delivers him his daily food.  There is a number \nover his cell-door, and in a book of which the governor of the \nprison has one copy, and the moral instructor another:  this is the \nindex of his history.  Beyond these pages the prison has no record \nof his existence:  and though he live to be in the same cell ten \nweary years, he has no means of knowing, down to the very last \nhour, in which part of the building it is situated; what kind of \nmen there are about him; whether in the long winter nights there \nare living people near, or he is in some lonely corner of the great \njail, with walls, and passages, and iron doors between him and the \nnearest sharer in its solitary horrors.\n\nEvery cell has double doors:  the outer one of sturdy oak, the \nother of grated iron, wherein there is a trap through which his \nfood is handed.  He has a Bible, and a slate and pencil, and, under \ncertain restrictions, has sometimes other books, provided for the \npurpose, and pen and ink and paper.  His razor, plate, and can, and \nbasin, hang upon the wall, or shine upon the little shelf.  Fresh \nwater is laid on in every cell, and he can draw it at his pleasure.  \nDuring the day, his bedstead turns up against the wall, and leaves \nmore space for him to work in.  His loom, or bench, or wheel, is \nthere; and there he labours, sleeps and wakes, and counts the \nseasons as they change, and grows old.\n\nThe first man I saw, was seated at his loom, at work.  He had been \nthere six years, and was to remain, I think, three more.  He had \nbeen convicted as a receiver of stolen goods, but even after his \nlong imprisonment, denied his guilt, and said he had been hardly \ndealt by.  It was his second offence.\n\nHe stopped his work when we went in, took off his spectacles, and \nanswered freely to everything that was said to him, but always with \na strange kind of pause first, and in a low, thoughtful voice.  He \nwore a paper hat of his own making, and was pleased to have it \nnoticed and commanded.  He had very ingeniously manufactured a sort \nof Dutch clock from some disregarded odds and ends; and his \nvinegar-bottle served for the pendulum.  Seeing me interested in \nthis contrivance, he looked up at it with a great deal of pride, \nand said that he had been thinking of improving it, and that he \nhoped the hammer and a little piece of broken glass beside it \n'would play music before long.'  He had extracted some colours from \nthe yarn with which he worked, and painted a few poor figures on \nthe wall.  One, of a female, over the door, he called 'The Lady of \nthe Lake.'\n\nHe smiled as I looked at these contrivances to while away the time; \nbut when I looked from them to him, I saw that his lip trembled, \nand could have counted the beating of his heart.  I forget how it \ncame about, but some allusion was made to his having a wife.  He \nshook his head at the word, turned aside, and covered his face with \nhis hands.\n\n'But you are resigned now!' said one of the gentlemen after a short \npause, during which he had resumed his former manner.  He answered \nwith a sigh that seemed quite reckless in its hopelessness, 'Oh \nyes, oh yes!  I am resigned to it.'  'And are a better man, you \nthink?'  'Well, I hope so:  I'm sure I hope I may be.'  'And time \ngoes pretty quickly?'  'Time is very long gentlemen, within these \nfour walls!'\n\nHe gazed about him - Heaven only knows how wearily! - as he said \nthese words; and in the act of doing so, fell into a strange stare \nas if he had forgotten something.  A moment afterwards he sighed \nheavily, put on his spectacles, and went about his work again.\n\nIn another cell, there was a German, sentenced to five years' \nimprisonment for larceny, two of which had just expired.  With \ncolours procured in the same manner, he had painted every inch of \nthe walls and ceiling quite beautifully.  He had laid out the few \nfeet of ground, behind, with exquisite neatness, and had made a \nlittle bed in the centre, that looked, by-the-bye, like a grave.  \nThe taste and ingenuity he had displayed in everything were most \nextraordinary; and yet a more dejected, heart-broken, wretched \ncreature, it would be difficult to imagine.  I never saw such a \npicture of forlorn affliction and distress of mind.  My heart bled \nfor him; and when the tears ran down his cheeks, and he took one of \nthe visitors aside, to ask, with his trembling hands nervously \nclutching at his coat to detain him, whether there was no hope of \nhis dismal sentence being commuted, the spectacle was really too \npainful to witness.  I never saw or heard of any kind of misery \nthat impressed me more than the wretchedness of this man.\n\nIn a third cell, was a tall, strong black, a burglar, working at \nhis proper trade of making screws and the like.  His time was \nnearly out.  He was not only a very dexterous thief, but was \nnotorious for his boldness and hardihood, and for the number of his \nprevious convictions.  He entertained us with a long account of his \nachievements, which he narrated with such infinite relish, that he \nactually seemed to lick his lips as he told us racy anecdotes of \nstolen plate, and of old ladies whom he had watched as they sat at \nwindows in silver spectacles (he had plainly had an eye to their \nmetal even from the other side of the street) and had afterwards \nrobbed.  This fellow, upon the slightest encouragement, would have \nmingled with his professional recollections the most detestable \ncant; but I am very much mistaken if he could have surpassed the \nunmitigated hypocrisy with which he declared that he blessed the \nday on which he came into that prison, and that he never would \ncommit another robbery as long as he lived.\n\nThere was one man who was allowed, as an indulgence, to keep \nrabbits.  His room having rather a close smell in consequence, they \ncalled to him at the door to come out into the passage.  He \ncomplied of course, and stood shading his haggard face in the \nunwonted sunlight of the great window, looking as wan and unearthly \nas if he had been summoned from the grave.  He had a white rabbit \nin his breast; and when the little creature, getting down upon the \nground, stole back into the cell, and he, being dismissed, crept \ntimidly after it, I thought it would have been very hard to say in \nwhat respect the man was the nobler animal of the two.\n\nThere was an English thief, who had been there but a few days out \nof seven years:  a villainous, low-browed, thin-lipped fellow, with \na white face; who had as yet no relish for visitors, and who, but \nfor the additional penalty, would have gladly stabbed me with his \nshoemaker's knife.  There was another German who had entered the \njail but yesterday, and who started from his bed when we looked in, \nand pleaded, in his broken English, very hard for work.  There was \na poet, who after doing two days' work in every four-and-twenty \nhours, one for himself and one for the prison, wrote verses about \nships (he was by trade a mariner), and 'the maddening wine-cup,' \nand his friends at home.  There were very many of them.  Some \nreddened at the sight of visitors, and some turned very pale.  Some \ntwo or three had prisoner nurses with them, for they were very \nsick; and one, a fat old negro whose leg had been taken off within \nthe jail, had for his attendant a classical scholar and an \naccomplished surgeon, himself a prisoner likewise.  Sitting upon \nthe stairs, engaged in some slight work, was a pretty coloured boy.  \n'Is there no refuge for young criminals in Philadelphia, then?' \nsaid I.  'Yes, but only for white children.'  Noble aristocracy in \ncrime\n\nThere was a sailor who had been there upwards of eleven years, and \nwho in a few months' time would be free.  Eleven years of solitary \nconfinement!\n\n'I am very glad to hear your time is nearly out.'  What does he \nsay?  Nothing.  Why does he stare at his hands, and pick the flesh \nupon his fingers, and raise his eyes for an instant, every now and \nthen, to those bare walls which have seen his head turn grey?  It \nis a way he has sometimes.\n\nDoes he never look men in the face, and does he always pluck at \nthose hands of his, as though he were bent on parting skin and \nbone?  It is his humour:  nothing more.\n\nIt is his humour too, to say that he does not look forward to going \nout; that he is not glad the time is drawing near; that he did look \nforward to it once, but that was very long ago; that he has lost \nall care for everything.  It is his humour to be a helpless, \ncrushed, and broken man.  And, Heaven be his witness that he has \nhis humour thoroughly gratified!\n\nThere were three young women in adjoining cells, all convicted at \nthe same time of a conspiracy to rob their prosecutor.  In the \nsilence and solitude of their lives they had grown to be quite \nbeautiful.  Their looks were very sad, and might have moved the \nsternest visitor to tears, but not to that kind of sorrow which the \ncontemplation of the men awakens.  One was a young girl; not \ntwenty, as I recollect; whose snow-white room was hung with the \nwork of some former prisoner, and upon whose downcast face the sun \nin all its splendour shone down through the high chink in the wall, \nwhere one narrow strip of bright blue sky was visible.  She was \nvery penitent and quiet; had come to be resigned, she said (and I \nbelieve her); and had a mind at peace.  'In a word, you are happy \nhere?' said one of my companions.  She struggled - she did struggle \nvery hard - to answer, Yes; but raising her eyes, and meeting that \nglimpse of freedom overhead, she burst into tears, and said, 'She \ntried to be; she uttered no complaint; but it was natural that she \nshould sometimes long to go out of that one cell:  she could not \nhelp THAT,' she sobbed, poor thing!\n\nI went from cell to cell that day; and every face I saw, or word I \nheard, or incident I noted, is present to my mind in all its \npainfulness.  But let me pass them by, for one, more pleasant, \nglance of a prison on the same plan which I afterwards saw at \nPittsburg.\n\nWhen I had gone over that, in the same manner, I asked the governor \nif he had any person in his charge who was shortly going out.  He \nhad one, he said, whose time was up next day; but he had only been \na prisoner two years.\n\nTwo years!  I looked back through two years of my own life - out of \njail, prosperous, happy, surrounded by blessings, comforts, good \nfortune - and thought how wide a gap it was, and how long those two \nyears passed in solitary captivity would have been.  I have the \nface of this man, who was going to be released next day, before me \nnow.  It is almost more memorable in its happiness than the other \nfaces in their misery.  How easy and how natural it was for him to \nsay that the system was a good one; and that the time went 'pretty \nquick - considering;' and that when a man once felt that he had \noffended the law, and must satisfy it, 'he got along, somehow:' and \nso forth!\n\n'What did he call you back to say to you, in that strange flutter?' \nI asked of my conductor, when he had locked the door and joined me \nin the passage.\n\n'Oh!  That he was afraid the soles of his boots were not fit for \nwalking, as they were a good deal worn when he came in; and that he \nwould thank me very much to have them mended, ready.'\n\nThose boots had been taken off his feet, and put away with the rest \nof his clothes, two years before!\n\nI took that opportunity of inquiring how they conducted themselves \nimmediately before going out; adding that I presumed they trembled \nvery much.\n\n'Well, it's not so much a trembling,' was the answer - 'though they \ndo quiver - as a complete derangement of the nervous system.  They \ncan't sign their names to the book; sometimes can't even hold the \npen; look about 'em without appearing to know why, or where they \nare; and sometimes get up and sit down again, twenty times in a \nminute.  This is when they're in the office, where they are taken \nwith the hood on, as they were brought in.  When they get outside \nthe gate, they stop, and look first one way and then the other; not \nknowing which to take.  Sometimes they stagger as if they were \ndrunk, and sometimes are forced to lean against the fence, they're \nso bad:- but they clear off in course of time.'\n\nAs I walked among these solitary cells, and looked at the faces of \nthe men within them, I tried to picture to myself the thoughts and \nfeelings natural to their condition.  I imagined the hood just \ntaken off, and the scene of their captivity disclosed to them in \nall its dismal monotony.\n\nAt first, the man is stunned.  His confinement is a hideous vision; \nand his old life a reality.  He throws himself upon his bed, and \nlies there abandoned to despair.  By degrees the insupportable \nsolitude and barrenness of the place rouses him from this stupor, \nand when the trap in his grated door is opened, he humbly begs and \nprays for work.  'Give me some work to do, or I shall go raving \nmad!'\n\nHe has it; and by fits and starts applies himself to labour; but \nevery now and then there comes upon him a burning sense of the \nyears that must be wasted in that stone coffin, and an agony so \npiercing in the recollection of those who are hidden from his view \nand knowledge, that he starts from his seat, and striding up and \ndown the narrow room with both hands clasped on his uplifted head, \nhears spirits tempting him to beat his brains out on the wall.\n\nAgain he falls upon his bed, and lies there, moaning.  Suddenly he \nstarts up, wondering whether any other man is near; whether there \nis another cell like that on either side of him:  and listens \nkeenly.\n\nThere is no sound, but other prisoners may be near for all that.  \nHe remembers to have heard once, when he little thought of coming \nhere himself, that the cells were so constructed that the prisoners \ncould not hear each other, though the officers could hear them.\n\nWhere is the nearest man - upon the right, or on the left? or is \nthere one in both directions?  Where is he sitting now - with his \nface to the light? or is he walking to and fro?  How is he dressed?  \nHas he been here long?  Is he much worn away?  Is he very white and \nspectre-like?  Does HE think of his neighbour too?\n\nScarcely venturing to breathe, and listening while he thinks, he \nconjures up a figure with his back towards him, and imagines it \nmoving about in this next cell.  He has no idea of the face, but he \nis certain of the dark form of a stooping man.  In the cell upon \nthe other side, he puts another figure, whose face is hidden from \nhim also.  Day after day, and often when he wakes up in the middle \nof the night, he thinks of these two men until he is almost \ndistracted.  He never changes them.  There they are always as he \nfirst imagined them - an old man on the right; a younger man upon \nthe left - whose hidden features torture him to death, and have a \nmystery that makes him tremble.\n\nThe weary days pass on with solemn pace, like mourners at a \nfuneral; and slowly he begins to feel that the white walls of the \ncell have something dreadful in them:  that their colour is \nhorrible:  that their smooth surface chills his blood:  that there \nis one hateful corner which torments him.  Every morning when he \nwakes, he hides his head beneath the coverlet, and shudders to see \nthe ghastly ceiling looking down upon him.  The blessed light of \nday itself peeps in, an ugly phantom face, through the unchangeable \ncrevice which is his prison window.\n\nBy slow but sure degrees, the terrors of that hateful corner swell \nuntil they beset him at all times; invade his rest, make his dreams \nhideous, and his nights dreadful.  At first, he took a strange \ndislike to it; feeling as though it gave birth in his brain to \nsomething of corresponding shape, which ought not to be there, and \nracked his head with pains.  Then he began to fear it, then to \ndream of it, and of men whispering its name and pointing to it.  \nThen he could not bear to look at it, nor yet to turn his back upon \nit.  Now, it is every night the lurking-place of a ghost:  a \nshadow:- a silent something, horrible to see, but whether bird, or \nbeast, or muffled human shape, he cannot tell.\n\nWhen he is in his cell by day, he fears the little yard without.  \nWhen he is in the yard, he dreads to re-enter the cell.  When night \ncomes, there stands the phantom in the corner.  If he have the \ncourage to stand in its place, and drive it out (he had once:  \nbeing desperate), it broods upon his bed.  In the twilight, and \nalways at the same hour, a voice calls to him by name; as the \ndarkness thickens, his Loom begins to live; and even that, his \ncomfort, is a hideous figure, watching him till daybreak.\n\nAgain, by slow degrees, these horrible fancies depart from him one \nby one:  returning sometimes, unexpectedly, but at longer \nintervals, and in less alarming shapes.  He has talked upon \nreligious matters with the gentleman who visits him, and has read \nhis Bible, and has written a prayer upon his slate, and hung it up \nas a kind of protection, and an assurance of Heavenly \ncompanionship.  He dreams now, sometimes, of his children or his \nwife, but is sure that they are dead, or have deserted him.  He is \neasily moved to tears; is gentle, submissive, and broken-spirited.  \nOccasionally, the old agony comes back:  a very little thing will \nrevive it; even a familiar sound, or the scent of summer flowers in \nthe air; but it does not last long, now:  for the world without, \nhas come to be the vision, and this solitary life, the sad reality.\n\nIf his term of imprisonment be short - I mean comparatively, for \nshort it cannot be - the last half year is almost worse than all; \nfor then he thinks the prison will take fire and he be burnt in the \nruins, or that he is doomed to die within the walls, or that he \nwill be detained on some false charge and sentenced for another \nterm:  or that something, no matter what, must happen to prevent \nhis going at large.  And this is natural, and impossible to be \nreasoned against, because, after his long separation from human \nlife, and his great suffering, any event will appear to him more \nprobable in the contemplation, than the being restored to liberty \nand his fellow-creatures.\n\nIf his period of confinement have been very long, the prospect of \nrelease bewilders and confuses him.  His broken heart may flutter \nfor a moment, when he thinks of the world outside, and what it \nmight have been to him in all those lonely years, but that is all.  \nThe cell-door has been closed too long on all its hopes and cares.  \nBetter to have hanged him in the beginning than bring him to this \npass, and send him forth to mingle with his kind, who are his kind \nno more.\n\nOn the haggard face of every man among these prisoners, the same \nexpression sat.  I know not what to liken it to.  It had something \nof that strained attention which we see upon the faces of the blind \nand deaf, mingled with a kind of horror, as though they had all \nbeen secretly terrified.  In every little chamber that I entered, \nand at every grate through which I looked, I seemed to see the same \nappalling countenance.  It lives in my memory, with the fascination \nof a remarkable picture.  Parade before my eyes, a hundred men, \nwith one among them newly released from this solitary suffering, \nand I would point him out.\n\nThe faces of the women, as I have said, it humanises and refines.  \nWhether this be because of their better nature, which is elicited \nin solitude, or because of their being gentler creatures, of \ngreater patience and longer suffering, I do not know; but so it is.  \nThat the punishment is nevertheless, to my thinking, fully as cruel \nand as wrong in their case, as in that of the men, I need scarcely \nadd.\n\nMy firm conviction is that, independent of the mental anguish it \noccasions - an anguish so acute and so tremendous, that all \nimagination of it must fall far short of the reality - it wears the \nmind into a morbid state, which renders it unfit for the rough \ncontact and busy action of the world.  It is my fixed opinion that \nthose who have undergone this punishment, MUST pass into society \nagain morally unhealthy and diseased.  There are many instances on \nrecord, of men who have chosen, or have been condemned, to lives of \nperfect solitude, but I scarcely remember one, even among sages of \nstrong and vigorous intellect, where its effect has not become \napparent, in some disordered train of thought, or some gloomy \nhallucination.  What monstrous phantoms, bred of despondency and \ndoubt, and born and reared in solitude, have stalked upon the \nearth, making creation ugly, and darkening the face of Heaven!\n\nSuicides are rare among these prisoners:  are almost, indeed, \nunknown.  But no argument in favour of the system, can reasonably \nbe deduced from this circumstance, although it is very often urged.  \nAll men who have made diseases of the mind their study, know \nperfectly well that such extreme depression and despair as will \nchange the whole character, and beat down all its powers of \nelasticity and self-resistance, may be at work within a man, and \nyet stop short of self-destruction.  This is a common case.\n\nThat it makes the senses dull, and by degrees impairs the bodily \nfaculties, I am quite sure.  I remarked to those who were with me \nin this very establishment at Philadelphia, that the criminals who \nhad been there long, were deaf.  They, who were in the habit of \nseeing these men constantly, were perfectly amazed at the idea, \nwhich they regarded as groundless and fanciful.  And yet the very \nfirst prisoner to whom they appealed - one of their own selection \nconfirmed my impression (which was unknown to him) instantly, and \nsaid, with a genuine air it was impossible to doubt, that he \ncouldn't think how it happened, but he WAS growing very dull of \nhearing.\n\nThat it is a singularly unequal punishment, and affects the worst \nman least, there is no doubt.  In its superior efficiency as a \nmeans of reformation, compared with that other code of regulations \nwhich allows the prisoners to work in company without communicating \ntogether, I have not the smallest faith.  All the instances of \nreformation that were mentioned to me, were of a kind that might \nhave been - and I have no doubt whatever, in my own mind, would \nhave been - equally well brought about by the Silent System.  With \nregard to such men as the negro burglar and the English thief, even \nthe most enthusiastic have scarcely any hope of their conversion.\n\nIt seems to me that the objection that nothing wholesome or good \nhas ever had its growth in such unnatural solitude, and that even a \ndog or any of the more intelligent among beasts, would pine, and \nmope, and rust away, beneath its influence, would be in itself a \nsufficient argument against this system.  But when we recollect, in \naddition, how very cruel and severe it is, and that a solitary life \nis always liable to peculiar and distinct objections of a most \ndeplorable nature, which have arisen here, and call to mind, \nmoreover, that the choice is not between this system, and a bad or \nill-considered one, but between it and another which has worked \nwell, and is, in its whole design and practice, excellent; there is \nsurely more than sufficient reason for abandoning a mode of \npunishment attended by so little hope or promise, and fraught, \nbeyond dispute, with such a host of evils.\n\nAs a relief to its contemplation, I will close this chapter with a \ncurious story arising out of the same theme, which was related to \nme, on the occasion of this visit, by some of the gentlemen \nconcerned.\n\nAt one of the periodical meetings of the inspectors of this prison, \na working man of Philadelphia presented himself before the Board, \nand earnestly requested to be placed in solitary confinement.  On \nbeing asked what motive could possibly prompt him to make this \nstrange demand, he answered that he had an irresistible propensity \nto get drunk; that he was constantly indulging it, to his great \nmisery and ruin; that he had no power of resistance; that he wished \nto be put beyond the reach of temptation; and that he could think \nof no better way than this.  It was pointed out to him, in reply, \nthat the prison was for criminals who had been tried and sentenced \nby the law, and could not be made available for any such fanciful \npurposes; he was exhorted to abstain from intoxicating drinks, as \nhe surely might if he would; and received other very good advice, \nwith which he retired, exceedingly dissatisfied with the result of \nhis application.\n\nHe came again, and again, and again, and was so very earnest and \nimportunate, that at last they took counsel together, and said, 'He \nwill certainly qualify himself for admission, if we reject him any \nmore.  Let us shut him up.  He will soon be glad to go away, and \nthen we shall get rid of him.'  So they made him sign a statement \nwhich would prevent his ever sustaining an action for false \nimprisonment, to the effect that his incarceration was voluntary, \nand of his own seeking; they requested him to take notice that the \nofficer in attendance had orders to release him at any hour of the \nday or night, when he might knock upon his door for that purpose; \nbut desired him to understand, that once going out, he would not be \nadmitted any more.  These conditions agreed upon, and he still \nremaining in the same mind, he was conducted to the prison, and \nshut up in one of the cells.\n\nIn this cell, the man, who had not the firmness to leave a glass of \nliquor standing untasted on a table before him - in this cell, in \nsolitary confinement, and working every day at his trade of \nshoemaking, this man remained nearly two years.  His health \nbeginning to fail at the expiration of that time, the surgeon \nrecommended that he should work occasionally in the garden; and as \nhe liked the notion very much, he went about this new occupation \nwith great cheerfulness.\n\nHe was digging here, one summer day, very industriously, when the \nwicket in the outer gate chanced to be left open:  showing, beyond, \nthe well-remembered dusty road and sunburnt fields.  The way was as \nfree to him as to any man living, but he no sooner raised his head \nand caught sight of it, all shining in the light, than, with the \ninvoluntary instinct of a prisoner, he cast away his spade, \nscampered off as fast as his legs would carry him, and never once \nlooked back.\n\n\n\nCHAPTER VIII - WASHINGTON.  THE LEGISLATURE.  AND THE PRESIDENT'S \nHOUSE\n\n\n\nWE left Philadelphia by steamboat, at six o'clock one very cold \nmorning, and turned our faces towards Washington.\n\nIn the course of this day's journey, as on subsequent occasions, we \nencountered some Englishmen (small farmers, perhaps, or country \npublicans at home) who were settled in America, and were travelling \non their own affairs.  Of all grades and kinds of men that jostle \none in the public conveyances of the States, these are often the \nmost intolerable and the most insufferable companions.  United to \nevery disagreeable characteristic that the worst kind of American \ntravellers possess, these countrymen of ours display an amount of \ninsolent conceit and cool assumption of superiority, quite \nmonstrous to behold.  In the coarse familiarity of their approach, \nand the effrontery of their inquisitiveness (which they are in \ngreat haste to assert, as if they panted to revenge themselves upon \nthe decent old restraints of home), they surpass any native \nspecimens that came within my range of observation:  and I often \ngrew so patriotic when I saw and heard them, that I would \ncheerfully have submitted to a reasonable fine, if I could have \ngiven any other country in the whole world, the honour of claiming \nthem for its children.\n\nAs Washington may be called the head-quarters of tobacco-tinctured \nsaliva, the time is come when I must confess, without any disguise, \nthat the prevalence of those two odious practices of chewing and \nexpectorating began about this time to be anything but agreeable, \nand soon became most offensive and sickening.  In all the public \nplaces of America, this filthy custom is recognised.  In the courts \nof law, the judge has his spittoon, the crier his, the witness his, \nand the prisoner his; while the jurymen and spectators are provided \nfor, as so many men who in the course of nature must desire to spit \nincessantly.  In the hospitals, the students of medicine are \nrequested, by notices upon the wall, to eject their tobacco juice \ninto the boxes provided for that purpose, and not to discolour the \nstairs.  In public buildings, visitors are implored, through the \nsame agency, to squirt the essence of their quids, or 'plugs,' as I \nhave heard them called by gentlemen learned in this kind of \nsweetmeat, into the national spittoons, and not about the bases of \nthe marble columns.  But in some parts, this custom is inseparably \nmixed up with every meal and morning call, and with all the \ntransactions of social life.  The stranger, who follows in the \ntrack I took myself, will find it in its full bloom and glory, \nluxuriant in all its alarming recklessness, at Washington.  And let \nhim not persuade himself (as I once did, to my shame) that previous \ntourists have exaggerated its extent.  The thing itself is an \nexaggeration of nastiness, which cannot be outdone.\n\nOn board this steamboat, there were two young gentlemen, with \nshirt-collars reversed as usual, and armed with very big walking-\nsticks; who planted two seats in the middle of the deck, at a \ndistance of some four paces apart; took out their tobacco-boxes; \nand sat down opposite each other, to chew.  In less than a quarter \nof an hour's time, these hopeful youths had shed about them on the \nclean boards, a copious shower of yellow rain; clearing, by that \nmeans, a kind of magic circle, within whose limits no intruders \ndared to come, and which they never failed to refresh and re-\nrefresh before a spot was dry.  This being before breakfast, rather \ndisposed me, I confess, to nausea; but looking attentively at one \nof the expectorators, I plainly saw that he was young in chewing, \nand felt inwardly uneasy, himself.  A glow of delight came over me \nat this discovery; and as I marked his face turn paler and paler, \nand saw the ball of tobacco in his left cheek, quiver with his \nsuppressed agony, while yet he spat, and chewed, and spat again, in \nemulation of his older friend, I could have fallen on his neck and \nimplored him to go on for hours.\n\nWe all sat down to a comfortable breakfast in the cabin below, \nwhere there was no more hurry or confusion than at such a meal in \nEngland, and where there was certainly greater politeness exhibited \nthan at most of our stage-coach banquets.  At about nine o'clock we \narrived at the railroad station, and went on by the cars.  At noon \nwe turned out again, to cross a wide river in another steamboat; \nlanded at a continuation of the railroad on the opposite shore; and \nwent on by other cars; in which, in the course of the next hour or \nso, we crossed by wooden bridges, each a mile in length, two \ncreeks, called respectively Great and Little Gunpowder.  The water \nin both was blackened with flights of canvas-backed ducks, which \nare most delicious eating, and abound hereabouts at that season of \nthe year.\n\nThese bridges are of wood, have no parapet, and are only just wide \nenough for the passage of the trains; which, in the event of the \nsmallest accident, wound inevitably be plunged into the river.  \nThey are startling contrivances, and are most agreeable when \npassed.\n\nWe stopped to dine at Baltimore, and being now in Maryland, were \nwaited on, for the first time, by slaves.  The sensation of \nexacting any service from human creatures who are bought and sold, \nand being, for the time, a party as it were to their condition, is \nnot an enviable one.  The institution exists, perhaps, in its least \nrepulsive and most mitigated form in such a town as this; but it IS \nslavery; and though I was, with respect to it, an innocent man, its \npresence filled me with a sense of shame and self-reproach.\n\nAfter dinner, we went down to the railroad again, and took our \nseats in the cars for Washington.  Being rather early, those men \nand boys who happened to have nothing particular to do, and were \ncurious in foreigners, came (according to custom) round the \ncarriage in which I sat; let down all the windows; thrust in their \nheads and shoulders; hooked themselves on conveniently, by their \nelbows; and fell to comparing notes on the subject of my personal \nappearance, with as much indifference as if I were a stuffed \nfigure.  I never gained so much uncompromising information with \nreference to my own nose and eyes, and various impressions wrought \nby my mouth and chin on different minds, and how my head looks when \nit is viewed from behind, as on these occasions.  Some gentlemen \nwere only satisfied by exercising their sense of touch; and the \nboys (who are surprisingly precocious in America) were seldom \nsatisfied, even by that, but would return to the charge over and \nover again.  Many a budding president has walked into my room with \nhis cap on his head and his hands in his pockets, and stared at me \nfor two whole hours:  occasionally refreshing himself with a tweak \nof his nose, or a draught from the water-jug; or by walking to the \nwindows and inviting other boys in the street below, to come up and \ndo likewise:  crying, 'Here he is!'  'Come on!'  'Bring all your \nbrothers!' with other hospitable entreaties of that nature.\n\nWe reached Washington at about half-past six that evening, and had \nupon the way a beautiful view of the Capitol, which is a fine \nbuilding of the Corinthian order, placed upon a noble and \ncommanding eminence.  Arrived at the hotel; I saw no more of the \nplace that night; being very tired, and glad to get to bed.\n\nBreakfast over next morning, I walk about the streets for an hour \nor two, and, coming home, throw up the window in the front and \nback, and look out.  Here is Washington, fresh in my mind and under \nmy eye.\n\nTake the worst parts of the City Road and Pentonville, or the \nstraggling outskirts of Paris, where the houses are smallest, \npreserving all their oddities, but especially the small shops and \ndwellings, occupied in Pentonville (but not in Washington) by \nfurniture-brokers, keepers of poor eating-houses, and fanciers of \nbirds.  Burn the whole down; build it up again in wood and plaster; \nwiden it a little; throw in part of St. John's Wood; put green \nblinds outside all the private houses, with a red curtain and a \nwhite one in every window; plough up all the roads; plant a great \ndeal of coarse turf in every place where it ought NOT to be; erect \nthree handsome buildings in stone and marble, anywhere, but the \nmore entirely out of everybody's way the better; call one the Post \nOffice; one the Patent Office, and one the Treasury; make it \nscorching hot in the morning, and freezing cold in the afternoon, \nwith an occasional tornado of wind and dust; leave a brick-field \nwithout the bricks, in all central places where a street may \nnaturally be expected:  and that's Washington.\n\nThe hotel in which we live, is a long row of small houses fronting \non the street, and opening at the back upon a common yard, in which \nhangs a great triangle.  Whenever a servant is wanted, somebody \nbeats on this triangle from one stroke up to seven, according to \nthe number of the house in which his presence is required; and as \nall the servants are always being wanted, and none of them ever \ncome, this enlivening engine is in full performance the whole day \nthrough.  Clothes are drying in the same yard; female slaves, with \ncotton handkerchiefs twisted round their heads are running to and \nfro on the hotel business; black waiters cross and recross with \ndishes in their hands; two great dogs are playing upon a mound of \nloose bricks in the centre of the little square; a pig is turning \nup his stomach to the sun, and grunting 'that's comfortable!'; and \nneither the men, nor the women, nor the dogs, nor the pig, nor any \ncreated creature, takes the smallest notice of the triangle, which \nis tingling madly all the time.\n\nI walk to the front window, and look across the road upon a long, \nstraggling row of houses, one story high, terminating, nearly \nopposite, but a little to the left, in a melancholy piece of waste \nground with frowzy grass, which looks like a small piece of country \nthat has taken to drinking, and has quite lost itself.  Standing \nanyhow and all wrong, upon this open space, like something meteoric \nthat has fallen down from the moon, is an odd, lop-sided, one-eyed \nkind of wooden building, that looks like a church, with a flag-\nstaff as long as itself sticking out of a steeple something larger \nthan a tea-chest.  Under the window is a small stand of coaches, \nwhose slave-drivers are sunning themselves on the steps of our \ndoor, and talking idly together.  The three most obtrusive houses \nnear at hand are the three meanest.  On one - a shop, which never \nhas anything in the window, and never has the door open - is \npainted in large characters, 'THE CITY LUNCH.'  At another, which \nlooks like a backway to somewhere else, but is an independent \nbuilding in itself, oysters are procurable in every style.  At the \nthird, which is a very, very little tailor's shop, pants are fixed \nto order; or in other words, pantaloons are made to measure.  And \nthat is our street in Washington.\n\nIt is sometimes called the City of Magnificent Distances, but it \nmight with greater propriety be termed the City of Magnificent \nIntentions; for it is only on taking a bird's-eye view of it from \nthe top of the Capitol, that one can at all comprehend the vast \ndesigns of its projector, an aspiring Frenchman.  Spacious avenues, \nthat begin in nothing, and lead nowhere; streets, mile-long, that \nonly want houses, roads and inhabitants; public buildings that need \nbut a public to be complete; and ornaments of great thoroughfares, \nwhich only lack great thoroughfares to ornament - are its leading \nfeatures.  One might fancy the season over, and most of the houses \ngone out of town for ever with their masters.  To the admirers of \ncities it is a Barmecide Feast:  a pleasant field for the \nimagination to rove in; a monument raised to a deceased project, \nwith not even a legible inscription to record its departed \ngreatness.\n\nSuch as it is, it is likely to remain.  It was originally chosen \nfor the seat of Government, as a means of averting the conflicting \njealousies and interests of the different States; and very \nprobably, too, as being remote from mobs:  a consideration not to \nbe slighted, even in America.  It has no trade or commerce of its \nown:  having little or no population beyond the President and his \nestablishment; the members of the legislature who reside there \nduring the session; the Government clerks and officers employed in \nthe various departments; the keepers of the hotels and boarding-\nhouses; and the tradesmen who supply their tables.  It is very \nunhealthy.  Few people would live in Washington, I take it, who \nwere not obliged to reside there; and the tides of emigration and \nspeculation, those rapid and regardless currents, are little likely \nto flow at any time towards such dull and sluggish water.\n\nThe principal features of the Capitol, are, of course, the two \nhouses of Assembly.  But there is, besides, in the centre of the \nbuilding, a fine rotunda, ninety-six feet in diameter, and ninety-\nsix high, whose circular wall is divided into compartments, \nornamented by historical pictures.  Four of these have for their \nsubjects prominent events in the revolutionary struggle.  They were \npainted by Colonel Trumbull, himself a member of Washington's staff \nat the time of their occurrence; from which circumstance they \nderive a peculiar interest of their own.  In this same hall Mr. \nGreenough's large statue of Washington has been lately placed.  It \nhas great merits of course, but it struck me as being rather \nstrained and violent for its subject.  I could wish, however, to \nhave seen it in a better light than it can ever be viewed in, where \nit stands.\n\nThere is a very pleasant and commodious library in the Capitol; and \nfrom a balcony in front, the bird's-eye view, of which I have just \nspoken, may be had, together with a beautiful prospect of the \nadjacent country.  In one of the ornamented portions of the \nbuilding, there is a figure of Justice; whereunto the Guide Book \nsays, 'the artist at first contemplated giving more of nudity, but \nhe was warned that the public sentiment in this country would not \nadmit of it, and in his caution he has gone, perhaps, into the \nopposite extreme.'  Poor Justice! she has been made to wear much \nstranger garments in America than those she pines in, in the \nCapitol.  Let us hope that she has changed her dress-maker since \nthey were fashioned, and that the public sentiment of the country \ndid not cut out the clothes she hides her lovely figure in, just \nnow.\n\nThe House of Representatives is a beautiful and spacious hall, of \nsemicircular shape, supported by handsome pillars.  One part of the \ngallery is appropriated to the ladies, and there they sit in front \nrows, and come in, and go out, as at a play or concert.  The chair \nis canopied, and raised considerably above the floor of the House; \nand every member has an easy chair and a writing desk to himself:  \nwhich is denounced by some people out of doors as a most \nunfortunate and injudicious arrangement, tending to long sittings \nand prosaic speeches.  It is an elegant chamber to look at, but a \nsingularly bad one for all purposes of hearing.  The Senate, which \nis smaller, is free from this objection, and is exceedingly well \nadapted to the uses for which it is designed.  The sittings, I need \nhardly add, take place in the day; and the parliamentary forms are \nmodelled on those of the old country.\n\nI was sometimes asked, in my progress through other places, whether \nI had not been very much impressed by the HEADS of the lawmakers at \nWashington; meaning not their chiefs and leaders, but literally \ntheir individual and personal heads, whereon their hair grew, and \nwhereby the phrenological character of each legislator was \nexpressed:  and I almost as often struck my questioner dumb with \nindignant consternation by answering 'No, that I didn't remember \nbeing at all overcome.'  As I must, at whatever hazard, repeat the \navowal here, I will follow it up by relating my impressions on this \nsubject in as few words as possible.\n\nIn the first place - it may be from some imperfect development of \nmy organ of veneration - I do not remember having ever fainted \naway, or having even been moved to tears of joyful pride, at sight \nof any legislative body.  I have borne the House of Commons like a \nman, and have yielded to no weakness, but slumber, in the House of \nLords.  I have seen elections for borough and county, and have \nnever been impelled (no matter which party won) to damage my hat by \nthrowing it up into the air in triumph, or to crack my voice by \nshouting forth any reference to our Glorious Constitution, to the \nnoble purity of our independent voters, or, the unimpeachable \nintegrity of our independent members.  Having withstood such strong \nattacks upon my fortitude, it is possible that I may be of a cold \nand insensible temperament, amounting to iciness, in such matters; \nand therefore my impressions of the live pillars of the Capitol at \nWashington must be received with such grains of allowance as this \nfree confession may seem to demand.\n\nDid I see in this public body an assemblage of men, bound together \nin the sacred names of Liberty and Freedom, and so asserting the \nchaste dignity of those twin goddesses, in all their discussions, \nas to exalt at once the Eternal Principles to which their names are \ngiven, and their own character and the character of their \ncountrymen, in the admiring eyes of the whole world?\n\nIt was but a week, since an aged, grey-haired man, a lasting honour \nto the land that gave him birth, who has done good service to his \ncountry, as his forefathers did, and who will be remembered scores \nupon scores of years after the worms bred in its corruption, are \nbut so many grains of dust - it was but a week, since this old man \nhad stood for days upon his trial before this very body, charged \nwith having dared to assert the infamy of that traffic, which has \nfor its accursed merchandise men and women, and their unborn \nchildren.  Yes.  And publicly exhibited in the same city all the \nwhile; gilded, framed and glazed hung up for general admiration; \nshown to strangers not with shame, but pride; its face not turned \ntowards the wall, itself not taken down and burned; is the \nUnanimous Declaration of the Thirteen United States of America, \nwhich solemnly declares that All Men are created Equal; and are \nendowed by their Creator with the Inalienable Rights of Life, \nLiberty, and the Pursuit of Happiness!\n\nIt was not a month, since this same body had sat calmly by, and \nheard a man, one of themselves, with oaths which beggars in their \ndrink reject, threaten to cut another's throat from ear to ear.  \nThere he sat, among them; not crushed by the general feeling of the \nassembly, but as good a man as any.\n\nThere was but a week to come, and another of that body, for doing \nhis duty to those who sent him there; for claiming in a Republic \nthe Liberty and Freedom of expressing their sentiments, and making \nknown their prayer; would be tried, found guilty, and have strong \ncensure passed upon him by the rest.  His was a grave offence \nindeed; for years before, he had risen up and said, 'A gang of male \nand female slaves for sale, warranted to breed like cattle, linked \nto each other by iron fetters, are passing now along the open \nstreet beneath the windows of your Temple of Equality!  Look!'  But \nthere are many kinds of hunters engaged in the Pursuit of \nHappiness, and they go variously armed.  It is the Inalienable \nRight of some among them, to take the field after THEIR Happiness \nequipped with cat and cartwhip, stocks, and iron collar, and to \nshout their view halloa! (always in praise of Liberty) to the music \nof clanking chains and bloody stripes.\n\nWhere sat the many legislators of coarse threats; of words and \nblows such as coalheavers deal upon each other, when they forget \ntheir breeding?  On every side.  Every session had its anecdotes of \nthat kind, and the actors were all there.\n\nDid I recognise in this assembly, a body of men, who, applying \nthemselves in a new world to correct some of the falsehoods and \nvices of the old, purified the avenues to Public Life, paved the \ndirty ways to Place and Power, debated and made laws for the Common \nGood, and had no party but their Country?\n\nI saw in them, the wheels that move the meanest perversion of \nvirtuous Political Machinery that the worst tools ever wrought.  \nDespicable trickery at elections; under-handed tamperings with \npublic officers; cowardly attacks upon opponents, with scurrilous \nnewspapers for shields, and hired pens for daggers; shameful \ntrucklings to mercenary knaves, whose claim to be considered, is, \nthat every day and week they sow new crops of ruin with their venal \ntypes, which are the dragon's teeth of yore, in everything but \nsharpness; aidings and abettings of every bad inclination in the \npopular mind, and artful suppressions of all its good influences:  \nsuch things as these, and in a word, Dishonest Faction in its most \ndepraved and most unblushing form, stared out from every corner of \nthe crowded hall.\n\nDid I see among them, the intelligence and refinement:  the true, \nhonest, patriotic heart of America?  Here and there, were drops of \nits blood and life, but they scarcely coloured the stream of \ndesperate adventurers which sets that way for profit and for pay.  \nIt is the game of these men, and of their profligate organs, to \nmake the strife of politics so fierce and brutal, and so \ndestructive of all self-respect in worthy men, that sensitive and \ndelicate-minded persons shall be kept aloof, and they, and such as \nthey, be left to battle out their selfish views unchecked.  And \nthus this lowest of all scrambling fights goes on, and they who in \nother countries would, from their intelligence and station, most \naspire to make the laws, do here recoil the farthest from that \ndegradation.\n\nThat there are, among the representatives of the people in both \nHouses, and among all parties, some men of high character and great \nabilities, I need not say.  The foremost among those politicians \nwho are known in Europe, have been already described, and I see no \nreason to depart from the rule I have laid down for my guidance, of \nabstaining from all mention of individuals.  It will be sufficient \nto add, that to the most favourable accounts that have been written \nof them, I more than fully and most heartily subscribe; and that \npersonal intercourse and free communication have bred within me, \nnot the result predicted in the very doubtful proverb, but \nincreased admiration and respect.  They are striking men to look \nat, hard to deceive, prompt to act, lions in energy, Crichtons in \nvaried accomplishments, Indians in fire of eye and gesture, \nAmericans in strong and generous impulse; and they as well \nrepresent the honour and wisdom of their country at home, as the \ndistinguished gentleman who is now its Minister at the British \nCourt sustains its highest character abroad.\n\nI visited both houses nearly every day, during my stay in \nWashington.  On my initiatory visit to the House of \nRepresentatives, they divided against a decision of the chair; but \nthe chair won.  The second time I went, the member who was \nspeaking, being interrupted by a laugh, mimicked it, as one child \nwould in quarrelling with another, and added, 'that he would make \nhonourable gentlemen opposite, sing out a little more on the other \nside of their mouths presently.'  But interruptions are rare; the \nspeaker being usually heard in silence.  There are more quarrels \nthan with us, and more threatenings than gentlemen are accustomed \nto exchange in any civilised society of which we have record:  but \nfarm-yard imitations have not as yet been imported from the \nParliament of the United Kingdom.  The feature in oratory which \nappears to be the most practised, and most relished, is the \nconstant repetition of the same idea or shadow of an idea in fresh \nwords; and the inquiry out of doors is not, 'What did he say?' but, \n'How long did he speak?'  These, however, are but enlargements of a \nprinciple which prevails elsewhere.\n\nThe Senate is a dignified and decorous body, and its proceedings \nare conducted with much gravity and order.  Both houses are \nhandsomely carpeted; but the state to which these carpets are \nreduced by the universal disregard of the spittoon with which every \nhonourable member is accommodated, and the extraordinary \nimprovements on the pattern which are squirted and dabbled upon it \nin every direction, do not admit of being described.  I will merely \nobserve, that I strongly recommend all strangers not to look at the \nfloor; and if they happen to drop anything, though it be their \npurse, not to pick it up with an ungloved hand on any account.\n\nIt is somewhat remarkable too, at first, to say the least, to see \nso many honourable members with swelled faces; and it is scarcely \nless remarkable to discover that this appearance is caused by the \nquantity of tobacco they contrive to stow within the hollow of the \ncheek.  It is strange enough too, to see an honourable gentleman \nleaning back in his tilted chair with his legs on the desk before \nhim, shaping a convenient 'plug' with his penknife, and when it is \nquite ready for use, shooting the old one from his mouth, as from a \npop-gun, and clapping the new one in its place.\n\nI was surprised to observe that even steady old chewers of great \nexperience, are not always good marksmen, which has rather inclined \nme to doubt that general proficiency with the rifle, of which we \nhave heard so much in England.  Several gentlemen called upon me \nwho, in the course of conversation, frequently missed the spittoon \nat five paces; and one (but he was certainly short-sighted) mistook \nthe closed sash for the open window, at three.  On another \noccasion, when I dined out, and was sitting with two ladies and \nsome gentlemen round a fire before dinner, one of the company fell \nshort of the fireplace, six distinct times.  I am disposed to \nthink, however, that this was occasioned by his not aiming at that \nobject; as there was a white marble hearth before the fender, which \nwas more convenient, and may have suited his purpose better.\n\nThe Patent Office at Washington, furnishes an extraordinary example \nof American enterprise and ingenuity; for the immense number of \nmodels it contains are the accumulated inventions of only five \nyears; the whole of the previous collection having been destroyed \nby fire.  The elegant structure in which they are arranged is one \nof design rather than execution, for there is but one side erected \nout of four, though the works are stopped.  The Post Office is a \nvery compact and very beautiful building.  In one of the \ndepartments, among a collection of rare and curious articles, are \ndeposited the presents which have been made from time to time to \nthe American ambassadors at foreign courts by the various \npotentates to whom they were the accredited agents of the Republic; \ngifts which by the law they are not permitted to retain.  I confess \nthat I looked upon this as a very painful exhibition, and one by no \nmeans flattering to the national standard of honesty and honour.  \nThat can scarcely be a high state of moral feeling which imagines a \ngentleman of repute and station, likely to be corrupted, in the \ndischarge of his duty, by the present of a snuff-box, or a richly-\nmounted sword, or an Eastern shawl; and surely the Nation who \nreposes confidence in her appointed servants, is likely to be \nbetter served, than she who makes them the subject of such very \nmean and paltry suspicions.\n\nAt George Town, in the suburbs, there is a Jesuit College; \ndelightfully situated, and, so far as I had an opportunity of \nseeing, well managed.  Many persons who are not members of the \nRomish Church, avail themselves, I believe, of these institutions, \nand of the advantageous opportunities they afford for the education \nof their children.  The heights of this neighbourhood, above the \nPotomac River, are very picturesque:  and are free, I should \nconceive, from some of the insalubrities of Washington.  The air, \nat that elevation, was quite cool and refreshing, when in the city \nit was burning hot.\n\nThe President's mansion is more like an English club-house, both \nwithin and without, than any other kind of establishment with which \nI can compare it.  The ornamental ground about it has been laid out \nin garden walks; they are pretty, and agreeable to the eye; though \nthey have that uncomfortable air of having been made yesterday, \nwhich is far from favourable to the display of such beauties.\n\nMy first visit to this house was on the morning after my arrival, \nwhen I was carried thither by an official gentleman, who was so \nkind as to charge himself with my presentation to the President.\n\nWe entered a large hall, and having twice or thrice rung a bell \nwhich nobody answered, walked without further ceremony through the \nrooms on the ground floor, as divers other gentlemen (mostly with \ntheir hats on, and their hands in their pockets) were doing very \nleisurely.  Some of these had ladies with them, to whom they were \nshowing the premises; others were lounging on the chairs and sofas; \nothers, in a perfect state of exhaustion from listlessness, were \nyawning drearily.  The greater portion of this assemblage were \nrather asserting their supremacy than doing anything else, as they \nhad no particular business there, that anybody knew of.  A few were \nclosely eyeing the movables, as if to make quite sure that the \nPresident (who was far from popular) had not made away with any of \nthe furniture, or sold the fixtures for his private benefit.\n\nAfter glancing at these loungers; who were scattered over a pretty \ndrawing-room, opening upon a terrace which commanded a beautiful \nprospect of the river and the adjacent country; and who were \nsauntering, too, about a larger state-room called the Eastern \nDrawing-room; we went up-stairs into another chamber, where were \ncertain visitors, waiting for audiences.  At sight of my conductor, \na black in plain clothes and yellow slippers who was gliding \nnoiselessly about, and whispering messages in the ears of the more \nimpatient, made a sign of recognition, and glided off to announce \nhim.\n\nWe had previously looked into another chamber fitted all round with \na great, bare, wooden desk or counter, whereon lay files of \nnewspapers, to which sundry gentlemen were referring.  But there \nwere no such means of beguiling the time in this apartment, which \nwas as unpromising and tiresome as any waiting-room in one of our \npublic establishments, or any physician's dining-room during his \nhours of consultation at home.\n\nThere were some fifteen or twenty persons in the room.  One, a \ntall, wiry, muscular old man, from the west; sunburnt and swarthy; \nwith a brown white hat on his knees, and a giant umbrella resting \nbetween his legs; who sat bolt upright in his chair, frowning \nsteadily at the carpet, and twitching the hard lines about his \nmouth, as if he had made up his mind 'to fix' the President on what \nhe had to say, and wouldn't bate him a grain.  Another, a Kentucky \nfarmer, six-feet-six in height, with his hat on, and his hands \nunder his coat-tails, who leaned against the wall and kicked the \nfloor with his heel, as though he had Time's head under his shoe, \nand were literally 'killing' him.  A third, an oval-faced, bilious-\nlooking man, with sleek black hair cropped close, and whiskers and \nbeard shaved down to blue dots, who sucked the head of a thick \nstick, and from time to time took it out of his mouth, to see how \nit was getting on.  A fourth did nothing but whistle.  A fifth did \nnothing but spit.  And indeed all these gentlemen were so very \npersevering and energetic in this latter particular, and bestowed \ntheir favours so abundantly upon the carpet, that I take it for \ngranted the Presidential housemaids have high wages, or, to speak \nmore genteelly, an ample amount of 'compensation:' which is the \nAmerican word for salary, in the case of all public servants.\n\nWe had not waited in this room many minutes, before the black \nmessenger returned, and conducted us into another of smaller \ndimensions, where, at a business-like table covered with papers, \nsat the President himself.  He looked somewhat worn and anxious, \nand well he might; being at war with everybody - but the expression \nof his face was mild and pleasant, and his manner was remarkably \nunaffected, gentlemanly, and agreeable.  I thought that in his \nwhole carriage and demeanour, he became his station singularly \nwell.\n\nBeing advised that the sensible etiquette of the republican court \nadmitted of a traveller, like myself, declining, without any \nimpropriety, an invitation to dinner, which did not reach me until \nI had concluded my arrangements for leaving Washington some days \nbefore that to which it referred, I only returned to this house \nonce.  It was on the occasion of one of those general assemblies \nwhich are held on certain nights, between the hours of nine and \ntwelve o'clock, and are called, rather oddly, Levees.\n\nI went, with my wife, at about ten.  There was a pretty dense crowd \nof carriages and people in the court-yard, and so far as I could \nmake out, there were no very clear regulations for the taking up or \nsetting down of company.  There were certainly no policemen to \nsoothe startled horses, either by sawing at their bridles or \nflourishing truncheons in their eyes; and I am ready to make oath \nthat no inoffensive persons were knocked violently on the head, or \npoked acutely in their backs or stomachs; or brought to a \nstandstill by any such gentle means, and then taken into custody \nfor not moving on.  But there was no confusion or disorder.  Our \ncarriage reached the porch in its turn, without any blustering, \nswearing, shouting, backing, or other disturbance:  and we \ndismounted with as much ease and comfort as though we had been \nescorted by the whole Metropolitan Force from A to Z inclusive.\n\nThe suite of rooms on the ground-floor were lighted up, and a \nmilitary band was playing in the hall.  In the smaller drawing-\nroom, the centre of a circle of company, were the President and his \ndaughter-in-law, who acted as the lady of the mansion; and a very \ninteresting, graceful, and accomplished lady too.  One gentleman \nwho stood among this group, appeared to take upon himself the \nfunctions of a master of the ceremonies.  I saw no other officers \nor attendants, and none were needed.\n\nThe great drawing-room, which I have already mentioned, and the \nother chambers on the ground-floor, were crowded to excess.  The \ncompany was not, in our sense of the term, select, for it \ncomprehended persons of very many grades and classes; nor was there \nany great display of costly attire:  indeed, some of the costumes \nmay have been, for aught I know, grotesque enough.  But the decorum \nand propriety of behaviour which prevailed, were unbroken by any \nrude or disagreeable incident; and every man, even among the \nmiscellaneous crowd in the hall who were admitted without any \norders or tickets to look on, appeared to feel that he was a part \nof the Institution, and was responsible for its preserving a \nbecoming character, and appearing to the best advantage.\n\nThat these visitors, too, whatever their station, were not without \nsome refinement of taste and appreciation of intellectual gifts, \nand gratitude to those men who, by the peaceful exercise of great \nabilities, shed new charms and associations upon the homes of their \ncountrymen, and elevate their character in other lands, was most \nearnestly testified by their reception of Washington Irving, my \ndear friend, who had recently been appointed Minister at the court \nof Spain, and who was among them that night, in his new character, \nfor the first and last time before going abroad.  I sincerely \nbelieve that in all the madness of American politics, few public \nmen would have been so earnestly, devotedly, and affectionately \ncaressed, as this most charming writer:  and I have seldom \nrespected a public assembly more, than I did this eager throng, \nwhen I saw them turning with one mind from noisy orators and \nofficers of state, and flocking with a generous and honest impulse \nround the man of quiet pursuits:  proud in his promotion as \nreflecting back upon their country:  and grateful to him with their \nwhole hearts for the store of graceful fancies he had poured out \namong them.  Long may he dispense such treasures with unsparing \nhand; and long may they remember him as worthily!\n\n* * * * * *\n\nThe term we had assigned for the duration of our stay in Washington \nwas now at an end, and we were to begin to travel; for the railroad \ndistances we had traversed yet, in journeying among these older \ntowns, are on that great continent looked upon as nothing.\n\nI had at first intended going South - to Charleston.  But when I \ncame to consider the length of time which this journey would \noccupy, and the premature heat of the season, which even at \nWashington had been often very trying; and weighed moreover, in my \nown mind, the pain of living in the constant contemplation of \nslavery, against the more than doubtful chances of my ever seeing \nit, in the time I had to spare, stripped of the disguises in which \nit would certainly be dressed, and so adding any item to the host \nof facts already heaped together on the subject; I began to listen \nto old whisperings which had often been present to me at home in \nEngland, when I little thought of ever being here; and to dream \nagain of cities growing up, like palaces in fairy tales, among the \nwilds and forests of the west.\n\nThe advice I received in most quarters when I began to yield to my \ndesire of travelling towards that point of the compass was, \naccording to custom, sufficiently cheerless:  my companion being \nthreatened with more perils, dangers, and discomforts, than I can \nremember or would catalogue if I could; but of which it will be \nsufficient to remark that blowings-up in steamboats and breakings-\ndown in coaches were among the least.  But, having a western route \nsketched out for me by the best and kindest authority to which I \ncould have resorted, and putting no great faith in these \ndiscouragements, I soon determined on my plan of action.\n\nThis was to travel south, only to Richmond in Virginia; and then to \nturn, and shape our course for the Far West; whither I beseech the \nreader's company, in a new chapter.\n\n\n\nCHAPTER IX - A NIGHT STEAMER ON THE POTOMAC RIVER.  VIRGINIA ROAD, \nAND A BLACK DRIVER.  RICHMOND.  BALTIMORE.  THE HARRISBURG MAIL, \nAND A GLIMPSE OF THE CITY.  A CANAL BOAT\n\n\n\nWE were to proceed in the first instance by steamboat; and as it is \nusual to sleep on board, in consequence of the starting-hour being \nfour o'clock in the morning, we went down to where she lay, at that \nvery uncomfortable time for such expeditions when slippers are most \nvaluable, and a familiar bed, in the perspective of an hour or two, \nlooks uncommonly pleasant.\n\nIt is ten o'clock at night:  say half-past ten:  moonlight, warm, \nand dull enough.  The steamer (not unlike a child's Noah's ark in \nform, with the machinery on the top of the roof) is riding lazily \nup and down, and bumping clumsily against the wooden pier, as the \nripple of the river trifles with its unwieldy carcase.  The wharf \nis some distance from the city.  There is nobody down here; and one \nor two dull lamps upon the steamer's decks are the only signs of \nlife remaining, when our coach has driven away.  As soon as our \nfootsteps are heard upon the planks, a fat negress, particularly \nfavoured by nature in respect of bustle, emerges from some dark \nstairs, and marshals my wife towards the ladies' cabin, to which \nretreat she goes, followed by a mighty bale of cloaks and great-\ncoats.  I valiantly resolve not to go to bed at all, but to walk up \nand down the pier till morning.\n\nI begin my promenade - thinking of all kinds of distant things and \npersons, and of nothing near - and pace up and down for half-an-\nhour.  Then I go on board again; and getting into the light of one \nof the lamps, look at my watch and think it must have stopped; and \nwonder what has become of the faithful secretary whom I brought \nalong with me from Boston.  He is supping with our late landlord (a \nField Marshal, at least, no doubt) in honour of our departure, and \nmay be two hours longer.  I walk again, but it gets duller and \nduller:  the moon goes down:  next June seems farther off in the \ndark, and the echoes of my footsteps make me nervous.  It has \nturned cold too; and walking up and down without my companion in \nsuch lonely circumstances, is but poor amusement.  So I break my \nstaunch resolution, and think it may be, perhaps, as well to go to \nbed.\n\nI go on board again; open the door of the gentlemen's cabin and \nwalk in.  Somehow or other - from its being so quiet, I suppose - I \nhave taken it into my head that there is nobody there.  To my \nhorror and amazement it is full of sleepers in every stage, shape, \nattitude, and variety of slumber:  in the berths, on the chairs, on \nthe floors, on the tables, and particularly round the stove, my \ndetested enemy.  I take another step forward, and slip on the \nshining face of a black steward, who lies rolled in a blanket on \nthe floor.  He jumps up, grins, half in pain and half in \nhospitality; whispers my own name in my ear; and groping among the \nsleepers, leads me to my berth.  Standing beside it, I count these \nslumbering passengers, and get past forty.  There is no use in \ngoing further, so I begin to undress.  As the chairs are all \noccupied, and there is nothing else to put my clothes on, I deposit \nthem upon the ground:  not without soiling my hands, for it is in \nthe same condition as the carpets in the Capitol, and from the same \ncause.  Having but partially undressed, I clamber on my shelf, and \nhold the curtain open for a few minutes while I look round on all \nmy fellow-travellers again.  That done, I let it fall on them, and \non the world:  turn round:  and go to sleep.\n\nI wake, of course, when we get under weigh, for there is a good \ndeal of noise.  The day is then just breaking.  Everybody wakes at \nthe same time.  Some are self-possessed directly, and some are much \nperplexed to make out where they are until they have rubbed their \neyes, and leaning on one elbow, looked about them.  Some yawn, some \ngroan, nearly all spit, and a few get up.  I am among the risers:  \nfor it is easy to feel, without going into the fresh air, that the \natmosphere of the cabin is vile in the last degree.  I huddle on my \nclothes, go down into the fore-cabin, get shaved by the barber, and \nwash myself.  The washing and dressing apparatus for the passengers \ngenerally, consists of two jack-towels, three small wooden basins, \na keg of water and a ladle to serve it out with, six square inches \nof looking-glass, two ditto ditto of yellow soap, a comb and brush \nfor the head, and nothing for the teeth.  Everybody uses the comb \nand brush, except myself.  Everybody stares to see me using my own; \nand two or three gentlemen are strongly disposed to banter me on my \nprejudices, but don't.  When I have made my toilet, I go upon the \nhurricane-deck, and set in for two hours of hard walking up and \ndown.  The sun is rising brilliantly; we are passing Mount Vernon, \nwhere Washington lies buried; the river is wide and rapid; and its \nbanks are beautiful.  All the glory and splendour of the day are \ncoming on, and growing brighter every minute.\n\nAt eight o'clock, we breakfast in the cabin where I passed the \nnight, but the windows and doors are all thrown open, and now it is \nfresh enough.  There is no hurry or greediness apparent in the \ndespatch of the meal.  It is longer than a travelling breakfast \nwith us; more orderly, and more polite.\n\nSoon after nine o'clock we come to Potomac Creek, where we are to \nland; and then comes the oddest part of the journey.  Seven stage-\ncoaches are preparing to carry us on.  Some of them are ready, some \nof them are not ready.  Some of the drivers are blacks, some \nwhites.  There are four horses to each coach, and all the horses, \nharnessed or unharnessed, are there.  The passengers are getting \nout of the steamboat, and into the coaches; the luggage is being \ntransferred in noisy wheelbarrows; the horses are frightened, and \nimpatient to start; the black drivers are chattering to them like \nso many monkeys; and the white ones whooping like so many drovers:  \nfor the main thing to be done in all kinds of hostlering here, is \nto make as much noise as possible.  The coaches are something like \nthe French coaches, but not nearly so good.  In lieu of springs, \nthey are hung on bands of the strongest leather.  There is very \nlittle choice or difference between them; and they may be likened \nto the car portion of the swings at an English fair, roofed, put \nupon axle-trees and wheels, and curtained with painted canvas.  \nThey are covered with mud from the roof to the wheel-tire, and have \nnever been cleaned since they were first built.\n\nThe tickets we have received on board the steamboat are marked No. \n1, so we belong to coach No. 1.  I throw my coat on the box, and \nhoist my wife and her maid into the inside.  It has only one step, \nand that being about a yard from the ground, is usually approached \nby a chair:  when there is no chair, ladies trust in Providence.  \nThe coach holds nine inside, having a seat across from door to \ndoor, where we in England put our legs:  so that there is only one \nfeat more difficult in the performance than getting in, and that \nis, getting out again.  There is only one outside passenger, and he \nsits upon the box.  As I am that one, I climb up; and while they \nare strapping the luggage on the roof, and heaping it into a kind \nof tray behind, have a good opportunity of looking at the driver.\n\nHe is a negro - very black indeed.  He is dressed in a coarse \npepper-and-salt suit excessively patched and darned (particularly \nat the knees), grey stockings, enormous unblacked high-low shoes, \nand very short trousers.  He has two odd gloves:  one of parti-\ncoloured worsted, and one of leather.  He has a very short whip, \nbroken in the middle and bandaged up with string.  And yet he wears \na low-crowned, broad-brimmed, black hat:  faintly shadowing forth a \nkind of insane imitation of an English coachman!  But somebody in \nauthority cries 'Go ahead!' as I am making these observations.  The \nmail takes the lead in a four-horse waggon, and all the coaches \nfollow in procession:  headed by No. 1.\n\nBy the way, whenever an Englishman would cry 'All right!' an \nAmerican cries 'Go ahead!' which is somewhat expressive of the \nnational character of the two countries.\n\nThe first half-mile of the road is over bridges made of loose \nplanks laid across two parallel poles, which tilt up as the wheels \nroll over them; and IN the river.  The river has a clayey bottom \nand is full of holes, so that half a horse is constantly \ndisappearing unexpectedly, and can't be found again for some time.\n\nBut we get past even this, and come to the road itself, which is a \nseries of alternate swamps and gravel-pits.  A tremendous place is \nclose before us, the black driver rolls his eyes, screws his mouth \nup very round, and looks straight between the two leaders, as if he \nwere saying to himself, 'We have done this often before, but NOW I \nthink we shall have a crash.'  He takes a rein in each hand; jerks \nand pulls at both; and dances on the splashboard with both feet \n(keeping his seat, of course) like the late lamented Ducrow on two \nof his fiery coursers.  We come to the spot, sink down in the mire \nnearly to the coach windows, tilt on one side at an angle of forty-\nfive degrees, and stick there.  The insides scream dismally; the \ncoach stops; the horses flounder; all the other six coaches stop; \nand their four-and-twenty horses flounder likewise:  but merely for \ncompany, and in sympathy with ours.  Then the following \ncircumstances occur.\n\nBLACK DRIVER (to the horses).  'Hi!'\n\nNothing happens.  Insides scream again.\n\nBLACK DRIVER (to the horses).  'Ho!'\n\nHorses plunge, and splash the black driver.\n\nGENTLEMAN INSIDE (looking out).  'Why, what on airth -\n\nGentleman receives a variety of splashes and draws his head in \nagain, without finishing his question or waiting for an answer.\n\nBLACK DRIVER (still to the horses).  'Jiddy!  Jiddy!'\n\nHorses pull violently, drag the coach out of the hole, and draw it \nup a bank; so steep, that the black driver's legs fly up into the \nair, and he goes back among the luggage on the roof.  But he \nimmediately recovers himself, and cries (still to the horses),\n\n'Pill!'\n\nNo effect.  On the contrary, the coach begins to roll back upon No. \n2, which rolls back upon No. 3, which rolls back upon No. 4, and so \non, until No. 7 is heard to curse and swear, nearly a quarter of a \nmile behind.\n\nBLACK DRIVER (louder than before).  'Pill!'\n\nHorses make another struggle to get up the bank, and again the \ncoach rolls backward.\n\nBLACK DRIVER (louder than before).  'Pe-e-e-ill!'\n\nHorses make a desperate struggle.\n\nBLACK DRIVER (recovering spirits).  'Hi, Jiddy, Jiddy, Pill!'\n\nHorses make another effort.\n\nBLACK DRIVER (with great vigour).  'Ally Loo!  Hi.  Jiddy, Jiddy.  \nPill.  Ally Loo!'\n\nHorses almost do it.\n\nBLACK DRIVER (with his eyes starting out of his head).  'Lee, den.  \nLee, dere.  Hi.  Jiddy, Jiddy.  Pill.  Ally Loo.  Lee-e-e-e-e!'\n\nThey run up the bank, and go down again on the other side at a \nfearful pace.  It is impossible to stop them, and at the bottom \nthere is a deep hollow, full of water.  The coach rolls \nfrightfully.  The insides scream.  The mud and water fly about us.  \nThe black driver dances like a madman.  Suddenly we are all right \nby some extraordinary means, and stop to breathe.\n\nA black friend of the black driver is sitting on a fence.  The \nblack driver recognises him by twirling his head round and round \nlike a harlequin, rolling his eyes, shrugging his shoulders, and \ngrinning from ear to ear.  He stops short, turns to me, and says:\n\n'We shall get you through sa, like a fiddle, and hope a please you \nwhen we get you through sa.  Old 'ooman at home sa:' chuckling very \nmuch.  'Outside gentleman sa, he often remember old 'ooman at home \nsa,' grinning again.\n\n'Ay ay, we'll take care of the old woman.  Don't be afraid.'\n\nThe black driver grins again, but there is another hole, and beyond \nthat, another bank, close before us.  So he stops short:  cries (to \nthe horses again) 'Easy.  Easy den.  Ease.  Steady.  Hi.  Jiddy.  \nPill.  Ally.  Loo,' but never 'Lee!' until we are reduced to the \nvery last extremity, and are in the midst of difficulties, \nextrication from which appears to be all but impossible.\n\nAnd so we do the ten miles or thereabouts in two hours and a half; \nbreaking no bones, though bruising a great many; and in short \ngetting through the distance, 'like a fiddle.'\n\nThis singular kind of coaching terminates at Fredericksburgh, \nwhence there is a railway to Richmond.  The tract of country \nthrough which it takes its course was once productive; but the soil \nhas been exhausted by the system of employing a great amount of \nslave labour in forcing crops, without strengthening the land:  and \nit is now little better than a sandy desert overgrown with trees.  \nDreary and uninteresting as its aspect is, I was glad to the heart \nto find anything on which one of the curses of this horrible \ninstitution has fallen; and had greater pleasure in contemplating \nthe withered ground, than the richest and most thriving cultivation \nin the same place could possibly have afforded me.\n\nIn this district, as in all others where slavery sits brooding, (I \nhave frequently heard this admitted, even by those who are its \nwarmest advocates:) there is an air of ruin and decay abroad, which \nis inseparable from the system.  The barns and outhouses are \nmouldering away; the sheds are patched and half roofless; the log \ncabins (built in Virginia with external chimneys made of clay or \nwood) are squalid in the last degree.  There is no look of decent \ncomfort anywhere.  The miserable stations by the railway side, the \ngreat wild wood-yards, whence the engine is supplied with fuel; the \nnegro children rolling on the ground before the cabin doors, with \ndogs and pigs; the biped beasts of burden slinking past:  gloom and \ndejection are upon them all.\n\nIn the negro car belonging to the train in which we made this \njourney, were a mother and her children who had just been \npurchased; the husband and father being left behind with their old \nowner.  The children cried the whole way, and the mother was \nmisery's picture.  The champion of Life, Liberty, and the Pursuit \nof Happiness, who had bought them, rode in the same train; and, \nevery time we stopped, got down to see that they were safe.  The \nblack in Sinbad's Travels with one eye in the middle of his \nforehead which shone like a burning coal, was nature's aristocrat \ncompared with this white gentleman.\n\nIt was between six and seven o'clock in the evening, when we drove \nto the hotel:  in front of which, and on the top of the broad \nflight of steps leading to the door, two or three citizens were \nbalancing themselves on rocking-chairs, and smoking cigars.  We \nfound it a very large and elegant establishment, and were as well \nentertained as travellers need desire to be.  The climate being a \nthirsty one, there was never, at any hour of the day, a scarcity of \nloungers in the spacious bar, or a cessation of the mixing of cool \nliquors:  but they were a merrier people here, and had musical \ninstruments playing to them o' nights, which it was a treat to hear \nagain.\n\nThe next day, and the next, we rode and walked about the town, \nwhich is delightfully situated on eight hills, overhanging James \nRiver; a sparkling stream, studded here and there with bright \nislands, or brawling over broken rocks.  Although it was yet but \nthe middle of March, the weather in this southern temperature was \nextremely warm; the peech-trees and magnolias were in full bloom; \nand the trees were green.  In a low ground among the hills, is a \nvalley known as 'Bloody Run,' from a terrible conflict with the \nIndians which once occurred there.  It is a good place for such a \nstruggle, and, like every other spot I saw associated with any \nlegend of that wild people now so rapidly fading from the earth, \ninterested me very much.\n\nThe city is the seat of the local parliament of Virginia; and in \nits shady legislative halls, some orators were drowsily holding \nforth to the hot noon day.  By dint of constant repetition, \nhowever, these constitutional sights had very little more interest \nfor me than so many parochial vestries; and I was glad to exchange \nthis one for a lounge in a well-arranged public library of some ten \nthousand volumes, and a visit to a tobacco manufactory, where the \nworkmen are all slaves.\n\nI saw in this place the whole process of picking, rolling, \npressing, drying, packing in casks, and branding.  All the tobacco \nthus dealt with, was in course of manufacture for chewing; and one \nwould have supposed there was enough in that one storehouse to have \nfilled even the comprehensive jaws of America.  In this form, the \nweed looks like the oil-cake on which we fatten cattle; and even \nwithout reference to its consequences, is sufficiently uninviting.\n\nMany of the workmen appeared to be strong men, and it is hardly \nnecessary to add that they were all labouring quietly, then.  After \ntwo o'clock in the day, they are allowed to sing, a certain number \nat a time.  The hour striking while I was there, some twenty sang a \nhymn in parts, and sang it by no means ill; pursuing their work \nmeanwhile.  A bell rang as I was about to leave, and they all \npoured forth into a building on the opposite side of the street to \ndinner.  I said several times that I should like to see them at \ntheir meal; but as the gentleman to whom I mentioned this desire \nappeared to be suddenly taken rather deaf, I did not pursue the \nrequest.  Of their appearance I shall have something to say, \npresently.\n\nOn the following day, I visited a plantation or farm, of about \ntwelve hundred acres, on the opposite bank of the river.  Here \nagain, although I went down with the owner of the estate, to 'the \nquarter,' as that part of it in which the slaves live is called, I \nwas not invited to enter into any of their huts.  All I saw of \nthem, was, that they were very crazy, wretched cabins, near to \nwhich groups of half-naked children basked in the sun, or wallowed \non the dusty ground.  But I believe that this gentleman is a \nconsiderate and excellent master, who inherited his fifty slaves, \nand is neither a buyer nor a seller of human stock; and I am sure, \nfrom my own observation and conviction, that he is a kind-hearted, \nworthy man.\n\nThe planter's house was an airy, rustic dwelling, that brought \nDefoe's description of such places strongly to my recollection.  \nThe day was very warm, but the blinds being all closed, and the \nwindows and doors set wide open, a shady coolness rustled through \nthe rooms, which was exquisitely refreshing after the glare and \nheat without.  Before the windows was an open piazza, where, in \nwhat they call the hot weather - whatever that may be - they sling \nhammocks, and drink and doze luxuriously.  I do not know how their \ncool rejections may taste within the hammocks, but, having \nexperience, I can report that, out of them, the mounds of ices and \nthe bowls of mint-julep and sherry-cobbler they make in these \nlatitudes, are refreshments never to be thought of afterwards, in \nsummer, by those who would preserve contented minds.\n\nThere are two bridges across the river:  one belongs to the \nrailroad, and the other, which is a very crazy affair, is the \nprivate property of some old lady in the neighbourhood, who levies \ntolls upon the townspeople.  Crossing this bridge, on my way back, \nI saw a notice painted on the gate, cautioning all persons to drive \nslowly:  under a penalty, if the offender were a white man, of five \ndollars; if a negro, fifteen stripes.\n\nThe same decay and gloom that overhang the way by which it is \napproached, hover above the town of Richmond.  There are pretty \nvillas and cheerful houses in its streets, and Nature smiles upon \nthe country round; but jostling its handsome residences, like \nslavery itself going hand in hand with many lofty virtues, are \ndeplorable tenements, fences unrepaired, walls crumbling into \nruinous heaps.  Hinting gloomily at things below the surface, \nthese, and many other tokens of the same description, force \nthemselves upon the notice, and are remembered with depressing \ninfluence, when livelier features are forgotten.\n\nTo those who are happily unaccustomed to them, the countenances in \nthe streets and labouring-places, too, are shocking.  All men who \nknow that there are laws against instructing slaves, of which the \npains and penalties greatly exceed in their amount the fines \nimposed on those who maim and torture them, must be prepared to \nfind their faces very low in the scale of intellectual expression.  \nBut the darkness - not of skin, but mind - which meets the \nstranger's eye at every turn; the brutalizing and blotting out of \nall fairer characters traced by Nature's hand; immeasurably outdo \nhis worst belief.  That travelled creation of the great satirist's \nbrain, who fresh from living among horses, peered from a high \ncasement down upon his own kind with trembling horror, was scarcely \nmore repelled and daunted by the sight, than those who look upon \nsome of these faces for the first time must surely be.\n\nI left the last of them behind me in the person of a wretched \ndrudge, who, after running to and fro all day till midnight, and \nmoping in his stealthy winks of sleep upon the stairs \nbetweenwhiles, was washing the dark passages at four o'clock in the \nmorning; and went upon my way with a grateful heart that I was not \ndoomed to live where slavery was, and had never had my senses \nblunted to its wrongs and horrors in a slave-rocked cradle.\n\nIt had been my intention to proceed by James River and Chesapeake \nBay to Baltimore; but one of the steamboats being absent from her \nstation through some accident, and the means of conveyance being \nconsequently rendered uncertain, we returned to Washington by the \nway we had come (there were two constables on board the steamboat, \nin pursuit of runaway slaves), and halting there again for one \nnight, went on to Baltimore next afternoon.\n\nThe most comfortable of all the hotels of which I had any \nexperience in the United States, and they were not a few, is \nBarnum's, in that city:  where the English traveller will find \ncurtains to his bed, for the first and probably the last time in \nAmerica (this is a disinterested remark, for I never use them); and \nwhere he will be likely to have enough water for washing himself, \nwhich is not at all a common case.\n\nThis capital of the state of Maryland is a bustling, busy town, \nwith a great deal of traffic of various kinds, and in particular of \nwater commerce.  That portion of the town which it most favours is \nnone of the cleanest, it is true; but the upper part is of a very \ndifferent character, and has many agreeable streets and public \nbuildings.  The Washington Monument, which is a handsome pillar \nwith a statue on its summit; the Medical College; and the Battle \nMonument in memory of an engagement with the British at North \nPoint; are the most conspicuous among them.\n\nThere is a very good prison in this city, and the State \nPenitentiary is also among its institutions.  In this latter \nestablishment there were two curious cases.\n\nOne was that of a young man, who had been tried for the murder of \nhis father.  The evidence was entirely circumstantial, and was very \nconflicting and doubtful; nor was it possible to assign any motive \nwhich could have tempted him to the commission of so tremendous a \ncrime.  He had been tried twice; and on the second occasion the \njury felt so much hesitation in convicting him, that they found a \nverdict of manslaughter, or murder in the second degree; which it \ncould not possibly be, as there had, beyond all doubt, been no \nquarrel or provocation, and if he were guilty at all, he was \nunquestionably guilty of murder in its broadest and worst \nsignification.\n\nThe remarkable feature in the case was, that if the unfortunate \ndeceased were not really murdered by this own son of his, he must \nhave been murdered by his own brother.  The evidence lay in a most \nremarkable manner, between those two.  On all the suspicious \npoints, the dead man's brother was the witness:  all the \nexplanations for the prisoner (some of them extremely plausible) \nwent, by construction and inference, to inculcate him as plotting \nto fix the guilt upon his nephew.  It must have been one of them:  \nand the jury had to decide between two sets of suspicions, almost \nequally unnatural, unaccountable, and strange.\n\nThe other case, was that of a man who once went to a certain \ndistiller's and stole a copper measure containing a quantity of \nliquor.  He was pursued and taken with the property in his \npossession, and was sentenced to two years' imprisonment.  On \ncoming out of the jail, at the expiration of that term, he went \nback to the same distiller's, and stole the same copper measure \ncontaining the same quantity of liquor.  There was not the \nslightest reason to suppose that the man wished to return to \nprison:  indeed everything, but the commission of the offence, made \ndirectly against that assumption.  There are only two ways of \naccounting for this extraordinary proceeding.  One is, that after \nundergoing so much for this copper measure he conceived he had \nestablished a sort of claim and right to it.  The other that, by \ndint of long thinking about, it had become a monomania with him, \nand had acquired a fascination which he found it impossible to \nresist; swelling from an Earthly Copper Gallon into an Ethereal \nGolden Vat.\n\nAfter remaining here a couple of days I bound myself to a rigid \nadherence to the plan I had laid down so recently, and resolved to \nset forward on our western journey without any more delay.  \nAccordingly, having reduced the luggage within the smallest \npossible compass (by sending back to New York, to be afterwards \nforwarded to us in Canada, so much of it as was not absolutely \nwanted); and having procured the necessary credentials to banking-\nhouses on the way; and having moreover looked for two evenings at \nthe setting sun, with as well-defined an idea of the country before \nus as if we had been going to travel into the very centre of that \nplanet; we left Baltimore by another railway at half-past eight in \nthe morning, and reached the town of York, some sixty miles off, by \nthe early dinner-time of the Hotel which was the starting-place of \nthe four-horse coach, wherein we were to proceed to Harrisburg.\n\nThis conveyance, the box of which I was fortunate enough to secure, \nhad come down to meet us at the railroad station, and was as muddy \nand cumbersome as usual.  As more passengers were waiting for us at \nthe inn-door, the coachman observed under his breath, in the usual \nself-communicative voice, looking the while at his mouldy harness \nas if it were to that he was addressing himself,\n\n'I expect we shall want THE BIG coach.'\n\nI could not help wondering within myself what the size of this big \ncoach might be, and how many persons it might be designed to hold; \nfor the vehicle which was too small for our purpose was something \nlarger than two English heavy night coaches, and might have been \nthe twin-brother of a French Diligence.  My speculations were \nspeedily set at rest, however, for as soon as we had dined, there \ncame rumbling up the street, shaking its sides like a corpulent \ngiant, a kind of barge on wheels.  After much blundering and \nbacking, it stopped at the door:  rolling heavily from side to side \nwhen its other motion had ceased, as if it had taken cold in its \ndamp stable, and between that, and the having been required in its \ndropsical old age to move at any faster pace than a walk, were \ndistressed by shortness of wind.\n\n'If here ain't the Harrisburg mail at last, and dreadful bright and \nsmart to look at too,' cried an elderly gentleman in some \nexcitement, 'darn my mother!'\n\nI don't know what the sensation of being darned may be, or whether \na man's mother has a keener relish or disrelish of the process than \nanybody else; but if the endurance of this mysterious ceremony by \nthe old lady in question had depended on the accuracy of her son's \nvision in respect to the abstract brightness and smartness of the \nHarrisburg mail, she would certainly have undergone its infliction.  \nHowever, they booked twelve people inside; and the luggage \n(including such trifles as a large rocking-chair, and a good-sized \ndining-table) being at length made fast upon the roof, we started \noff in great state.\n\nAt the door of another hotel, there was another passenger to be \ntaken up.\n\n'Any room, sir?' cries the new passenger to the coachman.\n\n'Well, there's room enough,' replies the coachman, without getting \ndown, or even looking at him.\n\n'There an't no room at all, sir,' bawls a gentleman inside.  Which \nanother gentleman (also inside) confirms, by predicting that the \nattempt to introduce any more passengers 'won't fit nohow.'\n\nThe new passenger, without any expression of anxiety, looks into \nthe coach, and then looks up at the coachman:  'Now, how do you \nmean to fix it?' says he, after a pause:  'for I MUST go.'\n\nThe coachman employs himself in twisting the lash of his whip into \na knot, and takes no more notice of the question:  clearly \nsignifying that it is anybody's business but his, and that the \npassengers would do well to fix it, among themselves.  In this \nstate of things, matters seem to be approximating to a fix of \nanother kind, when another inside passenger in a corner, who is \nnearly suffocated, cries faintly, 'I'll get out.'\n\nThis is no matter of relief or self-congratulation to the driver, \nfor his immovable philosophy is perfectly undisturbed by anything \nthat happens in the coach.  Of all things in the world, the coach \nwould seem to be the very last upon his mind.  The exchange is \nmade, however, and then the passenger who has given up his seat \nmakes a third upon the box, seating himself in what he calls the \nmiddle; that is, with half his person on my legs, and the other \nhalf on the driver's.\n\n'Go a-head, cap'en,' cries the colonel, who directs.\n\n'Go-lang!' cries the cap'en to his company, the horses, and away we \ngo.\n\nWe took up at a rural bar-room, after we had gone a few miles, an \nintoxicated gentleman who climbed upon the roof among the luggage, \nand subsequently slipping off without hurting himself, was seen in \nthe distant perspective reeling back to the grog-shop where we had \nfound him.  We also parted with more of our freight at different \ntimes, so that when we came to change horses, I was again alone \noutside.\n\nThe coachmen always change with the horses, and are usually as \ndirty as the coach.  The first was dressed like a very shabby \nEnglish baker; the second like a Russian peasant:  for he wore a \nloose purple camlet robe, with a fur collar, tied round his waist \nwith a parti-coloured worsted sash; grey trousers; light blue \ngloves:  and a cap of bearskin.  It had by this time come on to \nrain very heavily, and there was a cold damp mist besides, which \npenetrated to the skin.  I was glad to take advantage of a stoppage \nand get down to stretch my legs, shake the water off my great-coat, \nand swallow the usual anti-temperance recipe for keeping out the \ncold.\n\nWhen I mounted to my seat again, I observed a new parcel lying on \nthe coach roof, which I took to be a rather large fiddle in a brown \nbag.  In the course of a few miles, however, I discovered that it \nhad a glazed cap at one end and a pair of muddy shoes at the other \nand further observation demonstrated it to be a small boy in a \nsnuff-coloured coat, with his arms quite pinioned to his sides, by \ndeep forcing into his pockets.  He was, I presume, a relative or \nfriend of the coachman's, as he lay a-top of the luggage with his \nface towards the rain; and except when a change of position brought \nhis shoes in contact with my hat, he appeared to be asleep.  At \nlast, on some occasion of our stopping, this thing slowly upreared \nitself to the height of three feet six, and fixing its eyes on me, \nobserved in piping accents, with a complaisant yawn, half quenched \nin an obliging air of friendly patronage, 'Well now, stranger, I \nguess you find this a'most like an English arternoon, hey?'\n\nThe scenery, which had been tame enough at first, was, for the last \nten or twelve miles, beautiful.  Our road wound through the \npleasant valley of the Susquehanna; the river, dotted with \ninnumerable green islands, lay upon our right; and on the left, a \nsteep ascent, craggy with broken rock, and dark with pine trees.  \nThe mist, wreathing itself into a hundred fantastic shapes, moved \nsolemnly upon the water; and the gloom of evening gave to all an \nair of mystery and silence which greatly enhanced its natural \ninterest.\n\nWe crossed this river by a wooden bridge, roofed and covered in on \nall sides, and nearly a mile in length.  It was profoundly dark; \nperplexed, with great beams, crossing and recrossing it at every \npossible angle; and through the broad chinks and crevices in the \nfloor, the rapid river gleamed, far down below, like a legion of \neyes.  We had no lamps; and as the horses stumbled and floundered \nthrough this place, towards the distant speck of dying light, it \nseemed interminable.  I really could not at first persuade myself \nas we rumbled heavily on, filling the bridge with hollow noises, \nand I held down my head to save it from the rafters above, but that \nI was in a painful dream; for I have often dreamed of toiling \nthrough such places, and as often argued, even at the time, 'this \ncannot be reality.'\n\nAt length, however, we emerged upon the streets of Harrisburg, \nwhose feeble lights, reflected dismally from the wet ground, did \nnot shine out upon a very cheerful city.  We were soon established \nin a snug hotel, which though smaller and far less splendid than \nmany we put up at, it raised above them all in my remembrance, by \nhaving for its landlord the most obliging, considerate, and \ngentlemanly person I ever had to deal with.\n\nAs we were not to proceed upon our journey until the afternoon, I \nwalked out, after breakfast the next morning, to look about me; and \nwas duly shown a model prison on the solitary system, just erected, \nand as yet without an inmate; the trunk of an old tree to which \nHarris, the first settler here (afterwards buried under it), was \ntied by hostile Indians, with his funeral pile about him, when he \nwas saved by the timely appearance of a friendly party on the \nopposite shore of the river; the local legislature (for there was \nanother of those bodies here again, in full debate); and the other \ncuriosities of the town.\n\nI was very much interested in looking over a number of treaties \nmade from time to time with the poor Indians, signed by the \ndifferent chiefs at the period of their ratification, and preserved \nin the office of the Secretary to the Commonwealth.  These \nsignatures, traced of course by their own hands, are rough drawings \nof the creatures or weapons they were called after.  Thus, the \nGreat Turtle makes a crooked pen-and-ink outline of a great turtle; \nthe Buffalo sketches a buffalo; the War Hatchet sets a rough image \nof that weapon for his mark.  So with the Arrow, the Fish, the \nScalp, the Big Canoe, and all of them.\n\nI could not but think - as I looked at these feeble and tremulous \nproductions of hands which could draw the longest arrow to the head \nin a stout elk-horn bow, or split a bead or feather with a rifle-\nball - of Crabbe's musings over the Parish Register, and the \nirregular scratches made with a pen, by men who would plough a \nlengthy furrow straight from end to end.  Nor could I help \nbestowing many sorrowful thoughts upon the simple warriors whose \nhands and hearts were set there, in all truth and honesty; and who \nonly learned in course of time from white men how to break their \nfaith, and quibble out of forms and bonds.  I wonder, too, how many \ntimes the credulous Big Turtle, or trusting Little Hatchet, had put \nhis mark to treaties which were falsely read to him; and had signed \naway, he knew not what, until it went and cast him loose upon the \nnew possessors of the land, a savage indeed.\n\nOur host announced, before our early dinner, that some members of \nthe legislative body proposed to do us the honour of calling.  He \nhad kindly yielded up to us his wife's own little parlour, and when \nI begged that he would show them in, I saw him look with painful \napprehension at its pretty carpet; though, being otherwise occupied \nat the time, the cause of his uneasiness did not occur to me.\n\nIt certainly would have been more pleasant to all parties \nconcerned, and would not, I think, have compromised their \nindependence in any material degree, if some of these gentlemen had \nnot only yielded to the prejudice in favour of spittoons, but had \nabandoned themselves, for the moment, even to the conventional \nabsurdity of pocket-handkerchiefs.\n\nIt still continued to rain heavily, and when we went down to the \nCanal Boat (for that was the mode of conveyance by which we were to \nproceed) after dinner, the weather was as unpromising and \nobstinately wet as one would desire to see.  Nor was the sight of \nthis canal boat, in which we were to spend three or four days, by \nany means a cheerful one; as it involved some uneasy speculations \nconcerning the disposal of the passengers at night, and opened a \nwide field of inquiry touching the other domestic arrangements of \nthe establishment, which was sufficiently disconcerting.\n\nHowever, there it was - a barge with a little house in it, viewed \nfrom the outside; and a caravan at a fair, viewed from within:  the \ngentlemen being accommodated, as the spectators usually are, in one \nof those locomotive museums of penny wonders; and the ladies being \npartitioned off by a red curtain, after the manner of the dwarfs \nand giants in the same establishments, whose private lives are \npassed in rather close exclusiveness.\n\nWe sat here, looking silently at the row of little tables, which \nextended down both sides of the cabin, and listening to the rain as \nit dripped and pattered on the boat, and plashed with a dismal \nmerriment in the water, until the arrival of the railway train, for \nwhose final contribution to our stock of passengers, our departure \nwas alone deferred.  It brought a great many boxes, which were \nbumped and tossed upon the roof, almost as painfully as if they had \nbeen deposited on one's own head, without the intervention of a \nporter's knot; and several damp gentlemen, whose clothes, on their \ndrawing round the stove, began to steam again.  No doubt it would \nhave been a thought more comfortable if the driving rain, which now \npoured down more soakingly than ever, had admitted of a window \nbeing opened, or if our number had been something less than thirty; \nbut there was scarcely time to think as much, when a train of three \nhorses was attached to the tow-rope, the boy upon the leader \nsmacked his whip, the rudder creaked and groaned complainingly, and \nwe had begun our journey.\n\n\n\nCHAPTER X - SOME FURTHER ACCOUNT OF THE CANAL BOAT, ITS DOMESTIC \nECONOMY, AND ITS PASSENGERS.  JOURNEY TO PITTSBURG ACROSS THE \nALLEGHANY MOUNTAINS.  PITTSBURG\n\n\n\nAS it continued to rain most perseveringly, we all remained below:  \nthe damp gentlemen round the stove, gradually becoming mildewed by \nthe action of the fire; and the dry gentlemen lying at full length \nupon the seats, or slumbering uneasily with their faces on the \ntables, or walking up and down the cabin, which it was barely \npossible for a man of the middle height to do, without making bald \nplaces on his head by scraping it against the roof.  At about six \no'clock, all the small tables were put together to form one long \ntable, and everybody sat down to tea, coffee, bread, butter, \nsalmon, shad, liver, steaks, potatoes, pickles, ham, chops, black-\npuddings, and sausages.\n\n'Will you try,' said my opposite neighbour, handing me a dish of \npotatoes, broken up in milk and butter, 'will you try some of these \nfixings?'\n\nThere are few words which perform such various duties as this word \n'fix.'  It is the Caleb Quotem of the American vocabulary.  You \ncall upon a gentleman in a country town, and his help informs you \nthat he is 'fixing himself' just now, but will be down directly:  \nby which you are to understand that he is dressing.  You inquire, \non board a steamboat, of a fellow-passenger, whether breakfast will \nbe ready soon, and he tells you he should think so, for when he was \nlast below, they were 'fixing the tables:' in other words, laying \nthe cloth.  You beg a porter to collect your luggage, and he \nentreats you not to be uneasy, for he'll 'fix it presently:' and if \nyou complain of indisposition, you are advised to have recourse to \nDoctor So-and-so, who will 'fix you' in no time.\n\nOne night, I ordered a bottle of mulled wine at an hotel where I \nwas staying, and waited a long time for it; at length it was put \nupon the table with an apology from the landlord that he feared it \nwasn't 'fixed properly.' And I recollect once, at a stage-coach \ndinner, overhearing a very stern gentleman demand of a waiter who \npresented him with a plate of underdone roast-beef, 'whether he \ncalled THAT, fixing God A'mighty's vittles?'\n\nThere is no doubt that the meal, at which the invitation was \ntendered to me which has occasioned this digression, was disposed \nof somewhat ravenously; and that the gentlemen thrust the broad-\nbladed knives and the two-pronged forks further down their throats \nthan I ever saw the same weapons go before, except in the hands of \na skilful juggler:  but no man sat down until the ladies were \nseated; or omitted any little act of politeness which could \ncontribute to their comfort.  Nor did I ever once, on any occasion, \nanywhere, during my rambles in America, see a woman exposed to the \nslightest act of rudeness, incivility, or even inattention.\n\nBy the time the meal was over, the rain, which seemed to have worn \nitself out by coming down so fast, was nearly over too; and it \nbecame feasible to go on deck:  which was a great relief, \nnotwithstanding its being a very small deck, and being rendered \nstill smaller by the luggage, which was heaped together in the \nmiddle under a tarpaulin covering; leaving, on either side, a path \nso narrow, that it became a science to walk to and fro without \ntumbling overboard into the canal.  It was somewhat embarrassing at \nfirst, too, to have to duck nimbly every five minutes whenever the \nman at the helm cried 'Bridge!' and sometimes, when the cry was \n'Low Bridge,' to lie down nearly flat.  But custom familiarises one \nto anything, and there were so many bridges that it took a very \nshort time to get used to this.\n\nAs night came on, and we drew in sight of the first range of hills, \nwhich are the outposts of the Alleghany Mountains, the scenery, \nwhich had been uninteresting hitherto, became more bold and \nstriking.  The wet ground reeked and smoked, after the heavy fall \nof rain, and the croaking of the frogs (whose noise in these parts \nis almost incredible) sounded as though a million of fairy teams \nwith bells were travelling through the air, and keeping pace with \nus.  The night was cloudy yet, but moonlight too:  and when we \ncrossed the Susquehanna river - over which there is an \nextraordinary wooden bridge with two galleries, one above the \nother, so that even there, two boat teams meeting, may pass without \nconfusion - it was wild and grand.\n\nI have mentioned my having been in some uncertainty and doubt, at \nfirst, relative to the sleeping arrangements on board this boat.  I \nremained in the same vague state of mind until ten o'clock or \nthereabouts, when going below, I found suspended on either side of \nthe cabin, three long tiers of hanging bookshelves, designed \napparently for volumes of the small octavo size.  Looking with \ngreater attention at these contrivances (wondering to find such \nliterary preparations in such a place), I descried on each shelf a \nsort of microscopic sheet and blanket; then I began dimly to \ncomprehend that the passengers were the library, and that they were \nto be arranged, edge-wise, on these shelves, till morning.\n\nI was assisted to this conclusion by seeing some of them gathered \nround the master of the boat, at one of the tables, drawing lots \nwith all the anxieties and passions of gamesters depicted in their \ncountenances; while others, with small pieces of cardboard in their \nhands, were groping among the shelves in search of numbers \ncorresponding with those they had drawn.  As soon as any gentleman \nfound his number, he took possession of it by immediately \nundressing himself and crawling into bed.  The rapidity with which \nan agitated gambler subsided into a snoring slumberer, was one of \nthe most singular effects I have ever witnessed.  As to the ladies, \nthey were already abed, behind the red curtain, which was carefully \ndrawn and pinned up the centre; though as every cough, or sneeze, \nor whisper, behind this curtain, was perfectly audible before it, \nwe had still a lively consciousness of their society.\n\nThe politeness of the person in authority had secured to me a shelf \nin a nook near this red curtain, in some degree removed from the \ngreat body of sleepers:  to which place I retired, with many \nacknowledgments to him for his attention.  I found it, on after-\nmeasurement, just the width of an ordinary sheet of Bath post \nletter-paper; and I was at first in some uncertainty as to the best \nmeans of getting into it.  But the shelf being a bottom one, I \nfinally determined on lying upon the floor, rolling gently in, \nstopping immediately I touched the mattress, and remaining for the \nnight with that side uppermost, whatever it might be.  Luckily, I \ncame upon my back at exactly the right moment.  I was much alarmed \non looking upward, to see, by the shape of his half-yard of sacking \n(which his weight had bent into an exceedingly tight bag), that \nthere was a very heavy gentleman above me, whom the slender cords \nseemed quite incapable of holding; and I could not help reflecting \nupon the grief of my wife and family in the event of his coming \ndown in the night.  But as I could not have got up again without a \nsevere bodily struggle, which might have alarmed the ladies; and as \nI had nowhere to go to, even if I had; I shut my eyes upon the \ndanger, and remained there.\n\nOne of two remarkable circumstances is indisputably a fact, with \nreference to that class of society who travel in these boats.  \nEither they carry their restlessness to such a pitch that they \nnever sleep at all; or they expectorate in dreams, which would be a \nremarkable mingling of the real and ideal.  All night long, and \nevery night, on this canal, there was a perfect storm and tempest \nof spitting; and once my coat, being in the very centre of the \nhurricane sustained by five gentlemen (which moved vertically, \nstrictly carrying out Reid's Theory of the Law of Storms), I was \nfain the next morning to lay it on the deck, and rub it down with \nfair water before it was in a condition to be worn again.\n\nBetween five and six o'clock in the morning we got up, and some of \nus went on deck, to give them an opportunity of taking the shelves \ndown; while others, the morning being very cold, crowded round the \nrusty stove, cherishing the newly kindled fire, and filling the \ngrate with those voluntary contributions of which they had been so \nliberal all night.  The washing accommodations were primitive.  \nThere was a tin ladle chained to the deck, with which every \ngentleman who thought it necessary to cleanse himself (many were \nsuperior to this weakness), fished the dirty water out of the \ncanal, and poured it into a tin basin, secured in like manner.  \nThere was also a jack-towel.  And, hanging up before a little \nlooking-glass in the bar, in the immediate vicinity of the bread \nand cheese and biscuits, were a public comb and hair-brush.\n\nAt eight o'clock, the shelves being taken down and put away and the \ntables joined together, everybody sat down to the tea, coffee, \nbread, butter, salmon, shad, liver, steak, potatoes, pickles, ham, \nchops, black-puddings, and sausages, all over again.  Some were \nfond of compounding this variety, and having it all on their plates \nat once.  As each gentleman got through his own personal amount of \ntea, coffee, bread, butter, salmon, shad, liver, steak, potatoes, \npickles, ham, chops, black-puddings, and sausages, he rose up and \nwalked off.  When everybody had done with everything, the fragments \nwere cleared away:  and one of the waiters appearing anew in the \ncharacter of a barber, shaved such of the company as desired to be \nshaved; while the remainder looked on, or yawned over their \nnewspapers.  Dinner was breakfast again, without the tea and \ncoffee; and supper and breakfast were identical.\n\nThere was a man on board this boat, with a light fresh-coloured \nface, and a pepper-and-salt suit of clothes, who was the most \ninquisitive fellow that can possibly be imagined.  He never spoke \notherwise than interrogatively.  He was an embodied inquiry.  \nSitting down or standing up, still or moving, walking the deck or \ntaking his meals, there he was, with a great note of interrogation \nin each eye, two in his cocked ears, two more in his turned-up nose \nand chin, at least half a dozen more about the corners of his \nmouth, and the largest one of all in his hair, which was brushed \npertly off his forehead in a flaxen clump.  Every button in his \nclothes said, 'Eh?  What's that?  Did you speak?  Say that again, \nwill you?'  He was always wide awake, like the enchanted bride who \ndrove her husband frantic; always restless; always thirsting for \nanswers; perpetually seeking and never finding.  There never was \nsuch a curious man.\n\nI wore a fur great-coat at that time, and before we were well clear \nof the wharf, he questioned me concerning it, and its price, and \nwhere I bought it, and when, and what fur it was, and what it \nweighed, and what it cost.  Then he took notice of my watch, and \nasked me what THAT cost, and whether it was a French watch, and \nwhere I got it, and how I got it, and whether I bought it or had it \ngiven me, and how it went, and where the key-hole was, and when I \nwound it, every night or every morning, and whether I ever forgot \nto wind it at all, and if I did, what then?  Where had I been to \nlast, and where was I going next, and where was I going after that, \nand had I seen the President, and what did he say, and what did I \nsay, and what did he say when I had said that?  Eh?  Lor now! do \ntell!\n\nFinding that nothing would satisfy him, I evaded his questions \nafter the first score or two, and in particular pleaded ignorance \nrespecting the name of the fur whereof the coat was made.  I am \nunable to say whether this was the reason, but that coat fascinated \nhim afterwards; he usually kept close behind me as I walked, and \nmoved as I moved, that he might look at it the better; and he \nfrequently dived into narrow places after me at the risk of his \nlife, that he might have the satisfaction of passing his hand up \nthe back, and rubbing it the wrong way.\n\nWe had another odd specimen on board, of a different kind.  This \nwas a thin-faced, spare-figured man of middle age and stature, \ndressed in a dusty drabbish-coloured suit, such as I never saw \nbefore.  He was perfectly quiet during the first part of the \njourney:  indeed I don't remember having so much as seen him until \nhe was brought out by circumstances, as great men often are.  The \nconjunction of events which made him famous, happened, briefly, \nthus.\n\nThe canal extends to the foot of the mountain, and there, of \ncourse, it stops; the passengers being conveyed across it by land \ncarriage, and taken on afterwards by another canal boat, the \ncounterpart of the first, which awaits them on the other side.  \nThere are two canal lines of passage-boats; one is called The \nExpress, and one (a cheaper one) The Pioneer.  The Pioneer gets \nfirst to the mountain, and waits for the Express people to come up; \nboth sets of passengers being conveyed across it at the same time.  \nWe were the Express company; but when we had crossed the mountain, \nand had come to the second boat, the proprietors took it into their \nbeads to draft all the Pioneers into it likewise, so that we were \nfive-and-forty at least, and the accession of passengers was not at \nall of that kind which improved the prospect of sleeping at night.  \nOur people grumbled at this, as people do in such cases; but \nsuffered the boat to be towed off with the whole freight aboard \nnevertheless; and away we went down the canal.  At home, I should \nhave protested lustily, but being a foreigner here, I held my \npeace.  Not so this passenger.  He cleft a path among the people on \ndeck (we were nearly all on deck), and without addressing anybody \nwhomsoever, soliloquised as follows:\n\n'This may suit YOU, this may, but it don't suit ME.  This may be \nall very well with Down Easters, and men of Boston raising, but it \nwon't suit my figure nohow; and no two ways about THAT; and so I \ntell you.  Now!  I'm from the brown forests of Mississippi, I am, \nand when the sun shines on me, it does shine - a little.  It don't \nglimmer where I live, the sun don't.  No.  I'm a brown forester, I \nam.  I an't a Johnny Cake.  There are no smooth skins where I live.  \nWe're rough men there.  Rather.  If Down Easters and men of Boston \nraising like this, I'm glad of it, but I'm none of that raising nor \nof that breed.  No.  This company wants a little fixing, IT does.  \nI'm the wrong sort of man for 'em, I am.  They won't like me, THEY \nwon't.  This is piling of it up, a little too mountainous, this \nis.'  At the end of every one of these short sentences he turned \nupon his heel, and walked the other way; checking himself abruptly \nwhen he had finished another short sentence, and turning back \nagain.\n\nIt is impossible for me to say what terrific meaning was hidden in \nthe words of this brown forester, but I know that the other \npassengers looked on in a sort of admiring horror, and that \npresently the boat was put back to the wharf, and as many of the \nPioneers as could be coaxed or bullied into going away, were got \nrid of.\n\nWhen we started again, some of the boldest spirits on board, made \nbold to say to the obvious occasion of this improvement in our \nprospects, 'Much obliged to you, sir;' whereunto the brown forester \n(waving his hand, and still walking up and down as before), \nreplied, 'No you an't.  You're none o' my raising.  You may act for \nyourselves, YOU may.  I have pinted out the way.  Down Easters and \nJohnny Cakes can follow if they please.  I an't a Johnny Cake, I \nan't.  I am from the brown forests of the Mississippi, I am' - and \nso on, as before.  He was unanimously voted one of the tables for \nhis bed at night - there is a great contest for the tables - in \nconsideration for his public services:  and he had the warmest \ncorner by the stove throughout the rest of the journey.  But I \nnever could find out that he did anything except sit there; nor did \nI hear him speak again until, in the midst of the bustle and \nturmoil of getting the luggage ashore in the dark at Pittsburg, I \nstumbled over him as he sat smoking a cigar on the cabin steps, and \nheard him muttering to himself, with a short laugh of defiance, 'I \nan't a Johnny Cake, - I an't.  I'm from the brown forests of the \nMississippi, I am, damme!'  I am inclined to argue from this, that \nhe had never left off saying so; but I could not make an affidavit \nof that part of the story, if required to do so by my Queen and \nCountry.\n\nAs we have not reached Pittsburg yet, however, in the order of our \nnarrative, I may go on to remark that breakfast was perhaps the \nleast desirable meal of the day, as in addition to the many savoury \nodours arising from the eatables already mentioned, there were \nwhiffs of gin, whiskey, brandy, and rum, from the little bar hard \nby, and a decided seasoning of stale tobacco.  Many of the \ngentlemen passengers were far from particular in respect of their \nlinen, which was in some cases as yellow as the little rivulets \nthat had trickled from the corners of their mouths in chewing, and \ndried there.  Nor was the atmosphere quite free from zephyr \nwhisperings of the thirty beds which had just been cleared away, \nand of which we were further and more pressingly reminded by the \noccasional appearance on the table-cloth of a kind of Game, not \nmentioned in the Bill of Fare.\n\nAnd yet despite these oddities - and even they had, for me at \nleast, a humour of their own - there was much in this mode of \ntravelling which I heartily enjoyed at the time, and look back upon \nwith great pleasure.  Even the running up, bare-necked, at five \no'clock in the morning, from the tainted cabin to the dirty deck; \nscooping up the icy water, plunging one's head into it, and drawing \nit out, all fresh and glowing with the cold; was a good thing.  The \nfast, brisk walk upon the towing-path, between that time and \nbreakfast, when every vein and artery seemed to tingle with health; \nthe exquisite beauty of the opening day, when light came gleaming \noff from everything; the lazy motion of the boat, when one lay idly \non the deck, looking through, rather than at, the deep blue sky; \nthe gliding on at night, so noiselessly, past frowning hills, \nsullen with dark trees, and sometimes angry in one red, burning \nspot high up, where unseen men lay crouching round a fire; the \nshining out of the bright stars undisturbed by noise of wheels or \nsteam, or any other sound than the limpid rippling of the water as \nthe boat went on:  all these were pure delights.\n\nThen there were new settlements and detached log-cabins and frame-\nhouses, full of interest for strangers from an old country:  cabins \nwith simple ovens, outside, made of clay; and lodgings for the pigs \nnearly as good as many of the human quarters; broken windows, \npatched with worn-out hats, old clothes, old boards, fragments of \nblankets and paper; and home-made dressers standing in the open air \nwithout the door, whereon was ranged the household store, not hard \nto count, of earthen jars and pots.  The eye was pained to see the \nstumps of great trees thickly strewn in every field of wheat, and \nseldom to lose the eternal swamp and dull morass, with hundreds of \nrotten trunks and twisted branches steeped in its unwholesome \nwater.  It was quite sad and oppressive, to come upon great tracts \nwhere settlers had been burning down the trees, and where their \nwounded bodies lay about, like those of murdered creatures, while \nhere and there some charred and blackened giant reared aloft two \nwithered arms, and seemed to call down curses on his foes.  \nSometimes, at night, the way wound through some lonely gorge, like \na mountain pass in Scotland, shining and coldly glittering in the \nlight of the moon, and so closed in by high steep hills all round, \nthat there seemed to be no egress save through the narrower path by \nwhich we had come, until one rugged hill-side seemed to open, and \nshutting out the moonlight as we passed into its gloomy throat, \nwrapped our new course in shade and darkness.\n\nWe had left Harrisburg on Friday.  On Sunday morning we arrived at \nthe foot of the mountain, which is crossed by railroad.  There are \nten inclined planes; five ascending, and five descending; the \ncarriages are dragged up the former, and let slowly down the \nlatter, by means of stationary engines; the comparatively level \nspaces between, being traversed, sometimes by horse, and sometimes \nby engine power, as the case demands.  Occasionally the rails are \nlaid upon the extreme verge of a giddy precipice; and looking from \nthe carriage window, the traveller gazes sheer down, without a \nstone or scrap of fence between, into the mountain depths below.  \nThe journey is very carefully made, however; only two carriages \ntravelling together; and while proper precautions are taken, is not \nto be dreaded for its dangers.\n\nIt was very pretty travelling thus, at a rapid pace along the \nheights of the mountain in a keen wind, to look down into a valley \nfull of light and softness; catching glimpses, through the tree-\ntops, of scattered cabins; children running to the doors; dogs \nbursting out to bark, whom we could see without hearing:  terrified \npigs scampering homewards; families sitting out in their rude \ngardens; cows gazing upward with a stupid indifference; men in \ntheir shirt-sleeves looking on at their unfinished houses, planning \nout to-morrow's work; and we riding onward, high above them, like a \nwhirlwind.  It was amusing, too, when we had dined, and rattled \ndown a steep pass, having no other moving power than the weight of \nthe carriages themselves, to see the engine released, long after \nus, come buzzing down alone, like a great insect, its back of green \nand gold so shining in the sun, that if it had spread a pair of \nwings and soared away, no one would have had occasion, as I \nfancied, for the least surprise.  But it stopped short of us in a \nvery business-like manner when we reached the canal:  and, before \nwe left the wharf, went panting up this hill again, with the \npassengers who had waited our arrival for the means of traversing \nthe road by which we had come.\n\nOn the Monday evening, furnace fires and clanking hammers on the \nbanks of the canal, warned us that we approached the termination of \nthis part of our journey.  After going through another dreamy place \n- a long aqueduct across the Alleghany River, which was stranger \nthan the bridge at Harrisburg, being a vast, low, wooden chamber \nfull of water - we emerged upon that ugly confusion of backs of \nbuildings and crazy galleries and stairs, which always abuts on \nwater, whether it be river, sea, canal, or ditch:  and were at \nPittsburg.\n\nPittsburg is like Birmingham in England; at least its townspeople \nsay so.  Setting aside the streets, the shops, the houses, waggons, \nfactories, public buildings, and population, perhaps it may be.  It \ncertainly has a great quantity of smoke hanging about it, and is \nfamous for its iron-works.  Besides the prison to which I have \nalready referred, this town contains a pretty arsenal and other \ninstitutions.  It is very beautifully situated on the Alleghany \nRiver, over which there are two bridges; and the villas of the \nwealthier citizens sprinkled about the high grounds in the \nneighbourhood, are pretty enough.  We lodged at a most excellent \nhotel, and were admirably served.  As usual it was full of \nboarders, was very large, and had a broad colonnade to every story \nof the house.\n\nWe tarried here three days.  Our next point was Cincinnati:  and as \nthis was a steamboat journey, and western steamboats usually blow \nup one or two a week in the season, it was advisable to collect \nopinions in reference to the comparative safety of the vessels \nbound that way, then lying in the river.  One called the Messenger \nwas the best recommended.  She had been advertised to start \npositively, every day for a fortnight or so, and had not gone yet, \nnor did her captain seem to have any very fixed intention on the \nsubject.  But this is the custom:  for if the law were to bind down \na free and independent citizen to keep his word with the public, \nwhat would become of the liberty of the subject?  Besides, it is in \nthe way of trade.  And if passengers be decoyed in the way of \ntrade, and people be inconvenienced in the way of trade, what man, \nwho is a sharp tradesman himself, shall say, 'We must put a stop to \nthis?'\n\nImpressed by the deep solemnity of the public announcement, I \n(being then ignorant of these usages) was for hurrying on board in \na breathless state, immediately; but receiving private and \nconfidential information that the boat would certainly not start \nuntil Friday, April the First, we made ourselves very comfortable \nin the mean while, and went on board at noon that day.\n\n\n\nCHAPTER XI - FROM PITTSBURG TO CINCINNATI IN A WESTERN STEAMBOAT.  \nCINCINNATI\n\n\n\nTHE Messenger was one among a crowd of high-pressure steamboats, \nclustered together by a wharf-side, which, looked down upon from \nthe rising ground that forms the landing-place, and backed by the \nlofty bank on the opposite side of the river, appeared no larger \nthan so many floating models.  She had some forty passengers on \nboard, exclusive of the poorer persons on the lower deck; and in \nhalf an hour, or less, proceeded on her way.\n\nWe had, for ourselves, a tiny state-room with two berths in it, \nopening out of the ladies' cabin.  There was, undoubtedly, \nsomething satisfactory in this 'location,' inasmuch as it was in \nthe stern, and we had been a great many times very gravely \nrecommended to keep as far aft as possible, 'because the steamboats \ngenerally blew up forward.'  Nor was this an unnecessary caution, \nas the occurrence and circumstances of more than one such fatality \nduring our stay sufficiently testified.  Apart from this source of \nself-congratulation, it was an unspeakable relief to have any \nplace, no matter how confined, where one could be alone:  and as \nthe row of little chambers of which this was one, had each a second \nglass-door besides that in the ladies' cabin, which opened on a \nnarrow gallery outside the vessel, where the other passengers \nseldom came, and where one could sit in peace and gaze upon the \nshifting prospect, we took possession of our new quarters with much \npleasure.\n\nIf the native packets I have already described be unlike anything \nwe are in the habit of seeing on water, these western vessels are \nstill more foreign to all the ideas we are accustomed to entertain \nof boats.  I hardly know what to liken them to, or how to describe \nthem.\n\nIn the first place, they have no mast, cordage, tackle, rigging, or \nother such boat-like gear; nor have they anything in their shape at \nall calculated to remind one of a boat's head, stem, sides, or \nkeel.  Except that they are in the water, and display a couple of \npaddle-boxes, they might be intended, for anything that appears to \nthe contrary, to perform some unknown service, high and dry, upon a \nmountain top.  There is no visible deck, even:  nothing but a long, \nblack, ugly roof covered with burnt-out feathery sparks; above \nwhich tower two iron chimneys, and a hoarse escape valve, and a \nglass steerage-house.  Then, in order as the eye descends towards \nthe water, are the sides, and doors, and windows of the state-\nrooms, jumbled as oddly together as though they formed a small \nstreet, built by the varying tastes of a dozen men:  the whole is \nsupported on beams and pillars resting on a dirty barge, but a few \ninches above the water's edge:  and in the narrow space between \nthis upper structure and this barge's deck, are the furnace fires \nand machinery, open at the sides to every wind that blows, and \nevery storm of rain it drives along its path.\n\nPassing one of these boats at night, and seeing the great body of \nfire, exposed as I have just described, that rages and roars \nbeneath the frail pile of painted wood:  the machinery, not warded \noff or guarded in any way, but doing its work in the midst of the \ncrowd of idlers and emigrants and children, who throng the lower \ndeck:  under the management, too, of reckless men whose \nacquaintance with its mysteries may have been of six months' \nstanding:  one feels directly that the wonder is, not that there \nshould be so many fatal accidents, but that any journey should be \nsafely made.\n\nWithin, there is one long narrow cabin, the whole length of the \nboat; from which the state-rooms open, on both sides.  A small \nportion of it at the stern is partitioned off for the ladies; and \nthe bar is at the opposite extreme.  There is a long table down the \ncentre, and at either end a stove.  The washing apparatus is \nforward, on the deck.  It is a little better than on board the \ncanal boat, but not much.  In all modes of travelling, the American \ncustoms, with reference to the means of personal cleanliness and \nwholesome ablution, are extremely negligent and filthy; and I \nstrongly incline to the belief that a considerable amount of \nillness is referable to this cause.\n\nWe are to be on board the Messenger three days:  arriving at \nCincinnati (barring accidents) on Monday morning.  There are three \nmeals a day.  Breakfast at seven, dinner at half-past twelve, \nsupper about six.  At each, there are a great many small dishes and \nplates upon the table, with very little in them; so that although \nthere is every appearance of a mighty 'spread,' there is seldom \nreally more than a joint:  except for those who fancy slices of \nbeet-root, shreds of dried beef, complicated entanglements of \nyellow pickle; maize, Indian corn, apple-sauce, and pumpkin.\n\nSome people fancy all these little dainties together (and sweet \npreserves beside), by way of relish to their roast pig.  They are \ngenerally those dyspeptic ladies and gentlemen who eat unheard-of \nquantities of hot corn bread (almost as good for the digestion as a \nkneaded pin-cushion), for breakfast, and for supper.  Those who do \nnot observe this custom, and who help themselves several times \ninstead, usually suck their knives and forks meditatively, until \nthey have decided what to take next:  then pull them out of their \nmouths:  put them in the dish; help themselves; and fall to work \nagain.  At dinner, there is nothing to drink upon the table, but \ngreat jugs full of cold water.  Nobody says anything, at any meal, \nto anybody.  All the passengers are very dismal, and seem to have \ntremendous secrets weighing on their minds.  There is no \nconversation, no laughter, no cheerfulness, no sociality, except in \nspitting; and that is done in silent fellowship round the stove, \nwhen the meal is over.  Every man sits down, dull and languid; \nswallows his fare as if breakfasts, dinners, and suppers, were \nnecessities of nature never to be coupled with recreation or \nenjoyment; and having bolted his food in a gloomy silence, bolts \nhimself, in the same state.  But for these animal observances, you \nmight suppose the whole male portion of the company to be the \nmelancholy ghosts of departed book-keepers, who had fallen dead at \nthe desk:  such is their weary air of business and calculation.  \nUndertakers on duty would be sprightly beside them; and a collation \nof funeral-baked meats, in comparison with these meals, would be a \nsparkling festivity.\n\nThe people are all alike, too.  There is no diversity of character.  \nThey travel about on the same errands, say and do the same things \nin exactly the same manner, and follow in the same dull cheerless \nround.  All down the long table, there is scarcely a man who is in \nanything different from his neighbour.  It is quite a relief to \nhave, sitting opposite, that little girl of fifteen with the \nloquacious chin:  who, to do her justice, acts up to it, and fully \nidentifies nature's handwriting, for of all the small chatterboxes \nthat ever invaded the repose of drowsy ladies' cabin, she is the \nfirst and foremost.  The beautiful girl, who sits a little beyond \nher - farther down the table there - married the young man with the \ndark whiskers, who sits beyond HER, only last month.  They are \ngoing to settle in the very Far West, where he has lived four \nyears, but where she has never been.  They were both overturned in \na stage-coach the other day (a bad omen anywhere else, where \noverturns are not so common), and his head, which bears the marks \nof a recent wound, is bound up still.  She was hurt too, at the \nsame time, and lay insensible for some days; bright as her eyes \nare, now.\n\nFurther down still, sits a man who is going some miles beyond their \nplace of destination, to 'improve' a newly-discovered copper mine.  \nHe carries the village - that is to be - with him:  a few frame \ncottages, and an apparatus for smelting the copper.  He carries its \npeople too.  They are partly American and partly Irish, and herd \ntogether on the lower deck; where they amused themselves last \nevening till the night was pretty far advanced, by alternately \nfiring off pistols and singing hymns.\n\nThey, and the very few who have been left at table twenty minutes, \nrise, and go away.  We do so too; and passing through our little \nstate-room, resume our seats in the quiet gallery without.\n\nA fine broad river always, but in some parts much wider than in \nothers:  and then there is usually a green island, covered with \ntrees, dividing it into two streams.  Occasionally, we stop for a \nfew minutes, maybe to take in wood, maybe for passengers, at some \nsmall town or village (I ought to say city, every place is a city \nhere); but the banks are for the most part deep solitudes, \novergrown with trees, which, hereabouts, are already in leaf and \nvery green.  For miles, and miles, and miles, these solitudes are \nunbroken by any sign of human life or trace of human footstep; nor \nis anything seen to move about them but the blue jay, whose colour \nis so bright, and yet so delicate, that it looks like a flying \nflower.  At lengthened intervals a log cabin, with its little space \nof cleared land about it, nestles under a rising ground, and sends \nits thread of blue smoke curling up into the sky.  It stands in the \ncorner of the poor field of wheat, which is full of great unsightly \nstumps, like earthy butchers'-blocks.  Sometimes the ground is only \njust now cleared:  the felled trees lying yet upon the soil:  and \nthe log-house only this morning begun.  As we pass this clearing, \nthe settler leans upon his axe or hammer, and looks wistfully at \nthe people from the world.  The children creep out of the temporary \nhut, which is like a gipsy tent upon the ground, and clap their \nhands and shout.  The dog only glances round at us, and then looks \nup into his master's face again, as if he were rendered uneasy by \nany suspension of the common business, and had nothing more to do \nwith pleasurers.  And still there is the same, eternal foreground.  \nThe river has washed away its banks, and stately trees have fallen \ndown into the stream.  Some have been there so long, that they are \nmere dry, grizzly skeletons.  Some have just toppled over, and \nhaving earth yet about their roots, are bathing their green heads \nin the river, and putting forth new shoots and branches.  Some are \nalmost sliding down, as you look at them.  And some were drowned so \nlong ago, that their bleached arms start out from the middle of the \ncurrent, and seem to try to grasp the boat, and drag it under \nwater.\n\nThrough such a scene as this, the unwieldy machine takes its \nhoarse, sullen way:  venting, at every revolution of the paddles, a \nloud high-pressure blast; enough, one would think, to waken up the \nhost of Indians who lie buried in a great mound yonder:  so old, \nthat mighty oaks and other forest trees have struck their roots \ninto its earth; and so high, that it is a hill, even among the \nhills that Nature planted round it.  The very river, as though it \nshared one's feelings of compassion for the extinct tribes who \nlived so pleasantly here, in their blessed ignorance of white \nexistence, hundreds of years ago, steals out of its way to ripple \nnear this mound:  and there are few places where the Ohio sparkles \nmore brightly than in the Big Grave Creek.\n\nAll this I see as I sit in the little stern-gallery mentioned just \nnow.  Evening slowly steals upon the landscape and changes it \nbefore me, when we stop to set some emigrants ashore.\n\nFive men, as many women, and a little girl.  All their worldly \ngoods are a bag, a large chest and an old chair:  one, old, high-\nbacked, rush-bottomed chair:  a solitary settler in itself.  They \nare rowed ashore in the boat, while the vessel stands a little off \nawaiting its return, the water being shallow.  They are landed at \nthe foot of a high bank, on the summit of which are a few log \ncabins, attainable only by a long winding path.  It is growing \ndusk; but the sun is very red, and shines in the water and on some \nof the tree-tops, like fire.\n\nThe men get out of the boat first; help out the women; take out the \nbag, the chest, the chair; bid the rowers 'good-bye;' and shove the \nboat off for them.  At the first plash of the oars in the water, \nthe oldest woman of the party sits down in the old chair, close to \nthe water's edge, without speaking a word.  None of the others sit \ndown, though the chest is large enough for many seats.  They all \nstand where they landed, as if stricken into stone; and look after \nthe boat.  So they remain, quite still and silent:  the old woman \nand her old chair, in the centre the bag and chest upon the shore, \nwithout anybody heeding them all eyes fixed upon the boat.  It \ncomes alongside, is made fast, the men jump on board, the engine is \nput in motion, and we go hoarsely on again.  There they stand yet, \nwithout the motion of a hand.  I can see them through my glass, \nwhen, in the distance and increasing darkness, they are mere specks \nto the eye:  lingering there still:  the old woman in the old \nchair, and all the rest about her:  not stirring in the least \ndegree.  And thus I slowly lose them.\n\nThe night is dark, and we proceed within the shadow of the wooded \nbank, which makes it darker.  After gliding past the sombre maze of \nboughs for a long time, we come upon an open space where the tall \ntrees are burning.  The shape of every branch and twig is expressed \nin a deep red glow, and as the light wind stirs and ruffles it, \nthey seem to vegetate in fire.  It is such a sight as we read of in \nlegends of enchanted forests:  saving that it is sad to see these \nnoble works wasting away so awfully, alone; and to think how many \nyears must come and go before the magic that created them will rear \ntheir like upon this ground again.  But the time will come; and \nwhen, in their changed ashes, the growth of centuries unborn has \nstruck its roots, the restless men of distant ages will repair to \nthese again unpeopled solitudes; and their fellows, in cities far \naway, that slumber now, perhaps, beneath the rolling sea, will read \nin language strange to any ears in being now, but very old to them, \nof primeval forests where the axe was never heard, and where the \njungled ground was never trodden by a human foot.\n\nMidnight and sleep blot out these scenes and thoughts:  and when \nthe morning shines again, it gilds the house-tops of a lively city, \nbefore whose broad paved wharf the boat is moored; with other \nboats, and flags, and moving wheels, and hum of men around it; as \nthough there were not a solitary or silent rood of ground within \nthe compass of a thousand miles.\n\nCincinnati is a beautiful city; cheerful, thriving, and animated.  \nI have not often seen a place that commends itself so favourably \nand pleasantly to a stranger at the first glance as this does:  \nwith its clean houses of red and white, its well-paved roads, and \nfoot-ways of bright tile.  Nor does it become less prepossessing on \na closer acquaintance.  The streets are broad and airy, the shops \nextremely good, the private residences remarkable for their \nelegance and neatness.  There is something of invention and fancy \nin the varying styles of these latter erections, which, after the \ndull company of the steamboat, is perfectly delightful, as \nconveying an assurance that there are such qualities still in \nexistence.  The disposition to ornament these pretty villas and \nrender them attractive, leads to the culture of trees and flowers, \nand the laying out of well-kept gardens, the sight of which, to \nthose who walk along the streets, is inexpressibly refreshing and \nagreeable.  I was quite charmed with the appearance of the town, \nand its adjoining suburb of Mount Auburn:  from which the city, \nlying in an amphitheatre of hills, forms a picture of remarkable \nbeauty, and is seen to great advantage.\n\nThere happened to be a great Temperance Convention held here on the \nday after our arrival; and as the order of march brought the \nprocession under the windows of the hotel in which we lodged, when \nthey started in the morning, I had a good opportunity of seeing it.  \nIt comprised several thousand men; the members of various \n'Washington Auxiliary Temperance Societies;' and was marshalled by \nofficers on horseback, who cantered briskly up and down the line, \nwith scarves and ribbons of bright colours fluttering out behind \nthem gaily.  There were bands of music too, and banners out of \nnumber:  and it was a fresh, holiday-looking concourse altogether.\n\nI was particularly pleased to see the Irishmen, who formed a \ndistinct society among themselves, and mustered very strong with \ntheir green scarves; carrying their national Harp and their \nPortrait of Father Mathew, high above the people's heads.  They \nlooked as jolly and good-humoured as ever; and, working (here) the \nhardest for their living and doing any kind of sturdy labour that \ncame in their way, were the most independent fellows there, I \nthought.\n\nThe banners were very well painted, and flaunted down the street \nfamously.  There was the smiting of the rock, and the gushing forth \nof the waters; and there was a temperate man with 'considerable of \na hatchet' (as the standard-bearer would probably have said), \naiming a deadly blow at a serpent which was apparently about to \nspring upon him from the top of a barrel of spirits.  But the chief \nfeature of this part of the show was a huge allegorical device, \nborne among the ship-carpenters, on one side whereof the steamboat \nAlcohol was represented bursting her boiler and exploding with a \ngreat crash, while upon the other, the good ship Temperance sailed \naway with a fair wind, to the heart's content of the captain, crew, \nand passengers.\n\nAfter going round the town, the procession repaired to a certain \nappointed place, where, as the printed programme set forth, it \nwould be received by the children of the different free schools, \n'singing Temperance Songs.'  I was prevented from getting there, in \ntime to hear these Little Warblers, or to report upon this novel \nkind of vocal entertainment:  novel, at least, to me:  but I found \nin a large open space, each society gathered round its own banners, \nand listening in silent attention to its own orator.  The speeches, \njudging from the little I could hear of them, were certainly \nadapted to the occasion, as having that degree of relationship to \ncold water which wet blankets may claim:  but the main thing was \nthe conduct and appearance of the audience throughout the day; and \nthat was admirable and full of promise.\n\nCincinnati is honourably famous for its free schools, of which it \nhas so many that no person's child among its population can, by \npossibility, want the means of education, which are extended, upon \nan average, to four thousand pupils, annually.  I was only present \nin one of these establishments during the hours of instruction.  In \nthe boys' department, which was full of little urchins (varying in \ntheir ages, I should say, from six years old to ten or twelve), the \nmaster offered to institute an extemporary examination of the \npupils in algebra; a proposal, which, as I was by no means \nconfident of my ability to detect mistakes in that science, I \ndeclined with some alarm.  In the girls' school, reading was \nproposed; and as I felt tolerably equal to that art, I expressed my \nwillingness to hear a class.  Books were distributed accordingly, \nand some half-dozen girls relieved each other in reading paragraphs \nfrom English History.  But it seemed to be a dry compilation, \ninfinitely above their powers; and when they had blundered through \nthree or four dreary passages concerning the Treaty of Amiens, and \nother thrilling topics of the same nature (obviously without \ncomprehending ten words), I expressed myself quite satisfied.  It \nis very possible that they only mounted to this exalted stave in \nthe Ladder of Learning for the astonishment of a visitor; and that \nat other times they keep upon its lower rounds; but I should have \nbeen much better pleased and satisfied if I had heard them \nexercised in simpler lessons, which they understood.\n\nAs in every other place I visited, the judges here were gentlemen \nof high character and attainments.  I was in one of the courts for \na few minutes, and found it like those to which I have already \nreferred.  A nuisance cause was trying; there were not many \nspectators; and the witnesses, counsel, and jury, formed a sort of \nfamily circle, sufficiently jocose and snug.\n\nThe society with which I mingled, was intelligent, courteous, and \nagreeable.  The inhabitants of Cincinnati are proud of their city \nas one of the most interesting in America:  and with good reason:  \nfor beautiful and thriving as it is now, and containing, as it \ndoes, a population of fifty thousand souls, but two-and-fifty years \nhave passed away since the ground on which it stands (bought at \nthat time for a few dollars) was a wild wood, and its citizens were \nbut a handful of dwellers in scattered log huts upon the river's \nshore.\n\n\n\nCHAPTER XII - FROM CINCINNATI TO LOUISVILLE IN ANOTHER WESTERN \nSTEAMBOAT; AND FROM LOUISVILLE TO ST. LOUIS IN ANOTHER.  ST. LOUIS\n\n\n\nLEAVING Cincinnati at eleven o'clock in the forenoon, we embarked \nfor Louisville in the Pike steamboat, which, carrying the mails, \nwas a packet of a much better class than that in which we had come \nfrom Pittsburg.  As this passage does not occupy more than twelve \nor thirteen hours, we arranged to go ashore that night:  not \ncoveting the distinction of sleeping in a state-room, when it was \npossible to sleep anywhere else.\n\nThere chanced to be on board this boat, in addition to the usual \ndreary crowd of passengers, one Pitchlynn, a chief of the Choctaw \ntribe of Indians, who SENT IN HIS CARD to me, and with whom I had \nthe pleasure of a long conversation.\n\nHe spoke English perfectly well, though he had not begun to learn \nthe language, he told me, until he was a young man grown.  He had \nread many books; and Scott's poetry appeared to have left a strong \nimpression on his mind:  especially the opening of The Lady of the \nLake, and the great battle scene in Marmion, in which, no doubt \nfrom the congeniality of the subjects to his own pursuits and \ntastes, he had great interest and delight.  He appeared to \nunderstand correctly all he had read; and whatever fiction had \nenlisted his sympathy in its belief, had done so keenly and \nearnestly.  I might almost say fiercely.  He was dressed in our \nordinary everyday costume, which hung about his fine figure \nloosely, and with indifferent grace.  On my telling him that I \nregretted not to see him in his own attire, he threw up his right \narm, for a moment, as though he were brandishing some heavy weapon, \nand answered, as he let it fall again, that his race were losing \nmany things besides their dress, and would soon be seen upon the \nearth no more:  but he wore it at home, he added proudly.\n\nHe told me that he had been away from his home, west of the \nMississippi, seventeen months:  and was now returning.  He had been \nchiefly at Washington on some negotiations pending between his \nTribe and the Government:  which were not settled yet (he said in a \nmelancholy way), and he feared never would be:  for what could a \nfew poor Indians do, against such well-skilled men of business as \nthe whites?  He had no love for Washington; tired of towns and \ncities very soon; and longed for the Forest and the Prairie.\n\nI asked him what he thought of Congress?  He answered, with a \nsmile, that it wanted dignity, in an Indian's eyes.\n\nHe would very much like, he said, to see England before he died; \nand spoke with much interest about the great things to be seen \nthere.  When I told him of that chamber in the British Museum \nwherein are preserved household memorials of a race that ceased to \nbe, thousands of years ago, he was very attentive, and it was not \nhard to see that he had a reference in his mind to the gradual \nfading away of his own people.\n\nThis led us to speak of Mr. Catlin's gallery, which he praised \nhighly:  observing that his own portrait was among the collection, \nand that all the likenesses were 'elegant.'  Mr. Cooper, he said, \nhad painted the Red Man well; and so would I, he knew, if I would \ngo home with him and hunt buffaloes, which he was quite anxious I \nshould do.  When I told him that supposing I went, I should not be \nvery likely to damage the buffaloes much, he took it as a great \njoke and laughed heartily.\n\nHe was a remarkably handsome man; some years past forty, I should \njudge; with long black hair, an aquiline nose, broad cheek-bones, a \nsunburnt complexion, and a very bright, keen, dark, and piercing \neye.  There were but twenty thousand of the Choctaws left, he said, \nand their number was decreasing every day.  A few of his brother \nchiefs had been obliged to become civilised, and to make themselves \nacquainted with what the whites knew, for it was their only chance \nof existence.  But they were not many; and the rest were as they \nalways had been.  He dwelt on this:  and said several times that \nunless they tried to assimilate themselves to their conquerors, \nthey must be swept away before the strides of civilised society.\n\nWhen we shook hands at parting, I told him he must come to England, \nas he longed to see the land so much:  that I should hope to see \nhim there, one day:  and that I could promise him he would be well \nreceived and kindly treated.  He was evidently pleased by this \nassurance, though he rejoined with a good-humoured smile and an \narch shake of his head, that the English used to be very fond of \nthe Red Men when they wanted their help, but had not cared much for \nthem, since.\n\nHe took his leave; as stately and complete a gentleman of Nature's \nmaking, as ever I beheld; and moved among the people in the boat, \nanother kind of being.  He sent me a lithographed portrait of \nhimself soon afterwards; very like, though scarcely handsome \nenough; which I have carefully preserved in memory of our brief \nacquaintance.\n\nThere was nothing very interesting in the scenery of this day's \njourney, which brought us at midnight to Louisville.  We slept at \nthe Galt House; a splendid hotel; and were as handsomely lodged as \nthough we had been in Paris, rather than hundreds of miles beyond \nthe Alleghanies.\n\nThe city presenting no objects of sufficient interest to detain us \non our way, we resolved to proceed next day by another steamboat, \nthe Fulton, and to join it, about noon, at a suburb called \nPortland, where it would be delayed some time in passing through a \ncanal.\n\nThe interval, after breakfast, we devoted to riding through the \ntown, which is regular and cheerful:  the streets being laid out at \nright angles, and planted with young trees.  The buildings are \nsmoky and blackened, from the use of bituminous coal, but an \nEnglishman is well used to that appearance, and indisposed to \nquarrel with it.  There did not appear to be much business \nstirring; and some unfinished buildings and improvements seemed to \nintimate that the city had been overbuilt in the ardour of 'going-\na-head,' and was suffering under the re-action consequent upon such \nfeverish forcing of its powers.\n\nOn our way to Portland, we passed a 'Magistrate's office,' which \namused me, as looking far more like a dame school than any police \nestablishment:  for this awful Institution was nothing but a little \nlazy, good-for-nothing front parlour, open to the street; wherein \ntwo or three figures (I presume the magistrate and his myrmidons) \nwere basking in the sunshine, the very effigies of languor and \nrepose.  It was a perfect picture of justice retired from business \nfor want of customers; her sword and scales sold off; napping \ncomfortably with her legs upon the table.\n\nHere, as elsewhere in these parts, the road was perfectly alive \nwith pigs of all ages; lying about in every direction, fast \nasleep.; or grunting along in quest of hidden dainties.  I had \nalways a sneaking kindness for these odd animals, and found a \nconstant source of amusement, when all others failed, in watching \ntheir proceedings.  As we were riding along this morning, I \nobserved a little incident between two youthful pigs, which was so \nvery human as to be inexpressibly comical and grotesque at the \ntime, though I dare say, in telling, it is tame enough.\n\nOne young gentleman (a very delicate porker with several straws \nsticking about his nose, betokening recent investigations in a \ndung-hill) was walking deliberately on, profoundly thinking, when \nsuddenly his brother, who was lying in a miry hole unseen by him, \nrose up immediately before his startled eyes, ghostly with damp \nmud.  Never was pig's whole mass of blood so turned.  He started \nback at least three feet, gazed for a moment, and then shot off as \nhard as he could go:  his excessively little tail vibrating with \nspeed and terror like a distracted pendulum.  But before he had \ngone very far, he began to reason with himself as to the nature of \nthis frightful appearance; and as he reasoned, he relaxed his speed \nby gradual degrees; until at last he stopped, and faced about.  \nThere was his brother, with the mud upon him glazing in the sun, \nyet staring out of the very same hole, perfectly amazed at his \nproceedings!  He was no sooner assured of this; and he assured \nhimself so carefully that one may almost say he shaded his eyes \nwith his hand to see the better; than he came back at a round trot, \npounced upon him, and summarily took off a piece of his tail; as a \ncaution to him to be careful what he was about for the future, and \nnever to play tricks with his family any more.\n\nWe found the steamboat in the canal, waiting for the slow process \nof getting through the lock, and went on board, where we shortly \nafterwards had a new kind of visitor in the person of a certain \nKentucky Giant whose name is Porter, and who is of the moderate \nheight of seven feet eight inches, in his stockings.\n\nThere never was a race of people who so completely gave the lie to \nhistory as these giants, or whom all the chroniclers have so \ncruelly libelled.  Instead of roaring and ravaging about the world, \nconstantly catering for their cannibal larders, and perpetually \ngoing to market in an unlawful manner, they are the meekest people \nin any man's acquaintance:  rather inclining to milk and vegetable \ndiet, and bearing anything for a quiet life.  So decidedly are \namiability and mildness their characteristics, that I confess I \nlook upon that youth who distinguished himself by the slaughter of \nthese inoffensive persons, as a false-hearted brigand, who, \npretending to philanthropic motives, was secretly influenced only \nby the wealth stored up within their castles, and the hope of \nplunder.  And I lean the more to this opinion from finding that \neven the historian of those exploits, with all his partiality for \nhis hero, is fain to admit that the slaughtered monsters in \nquestion were of a very innocent and simple turn; extremely \nguileless and ready of belief; lending a credulous ear to the most \nimprobable tales; suffering themselves to be easily entrapped into \npits; and even (as in the case of the Welsh Giant) with an excess \nof the hospitable politeness of a landlord, ripping themselves \nopen, rather than hint at the possibility of their guests being \nversed in the vagabond arts of sleight-of-hand and hocus-pocus.\n\nThe Kentucky Giant was but another illustration of the truth of \nthis position.  He had a weakness in the region of the knees, and a \ntrustfulness in his long face, which appealed even to five-feet \nnine for encouragement and support.  He was only twenty-five years \nold, he said, and had grown recently, for it had been found \nnecessary to make an addition to the legs of his inexpressibles.  \nAt fifteen he was a short boy, and in those days his English father \nand his Irish mother had rather snubbed him, as being too small of \nstature to sustain the credit of the family.  He added that his \nhealth had not been good, though it was better now; but short \npeople are not wanting who whisper that he drinks too hard.\n\nI understand he drives a hackney-coach, though how he does it, \nunless he stands on the footboard behind, and lies along the roof \nupon his chest, with his chin in the box, it would be difficult to \ncomprehend.  He brought his gun with him, as a curiosity.\n\nChristened 'The Little Rifle,' and displayed outside a shop-window, \nit would make the fortune of any retail business in Holborn.  When \nhe had shown himself and talked a little while, he withdrew with \nhis pocket-instrument, and went bobbing down the cabin, among men \nof six feet high and upwards, like a light-house walking among \nlamp-posts.\n\nWithin a few minutes afterwards, we were out of the canal, and in \nthe Ohio river again.\n\nThe arrangements of the boat were like those of the Messenger, and \nthe passengers were of the same order of people.  We fed at the \nsame times, on the same kind of viands, in the same dull manner, \nand with the same observances.  The company appeared to be \noppressed by the same tremendous concealments, and had as little \ncapacity of enjoyment or light-heartedness.  I never in my life did \nsee such listless, heavy dulness as brooded over these meals:  the \nvery recollection of it weighs me down, and makes me, for the \nmoment, wretched.  Reading and writing on my knee, in our little \ncabin, I really dreaded the coming of the hour that summoned us to \ntable; and was as glad to escape from it again, as if it had been a \npenance or a punishment.  Healthy cheerfulness and good spirits \nforming a part of the banquet, I could soak my crusts in the \nfountain with Le Sage's strolling player, and revel in their glad \nenjoyment:  but sitting down with so many fellow-animals to ward \noff thirst and hunger as a business; to empty, each creature, his \nYahoo's trough as quickly as he can, and then slink sullenly away; \nto have these social sacraments stripped of everything but the mere \ngreedy satisfaction of the natural cravings; goes so against the \ngrain with me, that I seriously believe the recollection of these \nfuneral feasts will be a waking nightmare to me all my life.\n\nThere was some relief in this boat, too, which there had not been \nin the other, for the captain (a blunt, good-natured fellow) had \nhis handsome wife with him, who was disposed to be lively and \nagreeable, as were a few other lady-passengers who had their seats \nabout us at the same end of the table.  But nothing could have made \nhead against the depressing influence of the general body.  There \nwas a magnetism of dulness in them which would have beaten down the \nmost facetious companion that the earth ever knew.  A jest would \nhave been a crime, and a smile would have faded into a grinning \nhorror.  Such deadly, leaden people; such systematic plodding, \nweary, insupportable heaviness; such a mass of animated indigestion \nin respect of all that was genial, jovial, frank, social, or \nhearty; never, sure, was brought together elsewhere since the world \nbegan.\n\nNor was the scenery, as we approached the junction of the Ohio and \nMississippi rivers, at all inspiriting in its influence.  The trees \nwere stunted in their growth; the banks were low and flat; the \nsettlements and log cabins fewer in number:  their inhabitants more \nwan and wretched than any we had encountered yet.  No songs of \nbirds were in the air, no pleasant scents, no moving lights and \nshadows from swift passing clouds.  Hour after hour, the changeless \nglare of the hot, unwinking sky, shone upon the same monotonous \nobjects.  Hour after hour, the river rolled along, as wearily and \nslowly as the time itself.\n\nAt length, upon the morning of the third day, we arrived at a spot \nso much more desolate than any we had yet beheld, that the \nforlornest places we had passed, were, in comparison with it, full \nof interest.  At the junction of the two rivers, on ground so flat \nand low and marshy, that at certain seasons of the year it is \ninundated to the house-tops, lies a breeding-place of fever, ague, \nand death; vaunted in England as a mine of Golden Hope, and \nspeculated in, on the faith of monstrous representations, to many \npeople's ruin.  A dismal swamp, on which the half-built houses rot \naway:  cleared here and there for the space of a few yards; and \nteeming, then, with rank unwholesome vegetation, in whose baleful \nshade the wretched wanderers who are tempted hither, droop, and \ndie, and lay their bones; the hateful Mississippi circling and \neddying before it, and turning off upon its southern course a slimy \nmonster hideous to behold; a hotbed of disease, an ugly sepulchre, \na grave uncheered by any gleam of promise:  a place without one \nsingle quality, in earth or air or water, to commend it:  such is \nthis dismal Cairo.\n\nBut what words shall describe the Mississippi, great father of \nrivers, who (praise be to Heaven) has no young children like him!  \nAn enormous ditch, sometimes two or three miles wide, running \nliquid mud, six miles an hour:  its strong and frothy current \nchoked and obstructed everywhere by huge logs and whole forest \ntrees:  now twining themselves together in great rafts, from the \ninterstices of which a sedgy, lazy foam works up, to float upon the \nwater's top; now rolling past like monstrous bodies, their tangled \nroots showing like matted hair; now glancing singly by like giant \nleeches; and now writhing round and round in the vortex of some \nsmall whirlpool, like wounded snakes.  The banks low, the trees \ndwarfish, the marshes swarming with frogs, the wretched cabins few \nand far apart, their inmates hollow-cheeked and pale, the weather \nvery hot, mosquitoes penetrating into every crack and crevice of \nthe boat, mud and slime on everything:  nothing pleasant in its \naspect, but the harmless lightning which flickers every night upon \nthe dark horizon.\n\nFor two days we toiled up this foul stream, striking constantly \nagainst the floating timber, or stopping to avoid those more \ndangerous obstacles, the snags, or sawyers, which are the hidden \ntrunks of trees that have their roots below the tide.  When the \nnights are very dark, the look-out stationed in the head of the \nboat, knows by the ripple of the water if any great impediment be \nnear at hand, and rings a bell beside him, which is the signal for \nthe engine to be stopped:  but always in the night this bell has \nwork to do, and after every ring, there comes a blow which renders \nit no easy matter to remain in bed.\n\nThe decline of day here was very gorgeous; tingeing the firmament \ndeeply with red and gold, up to the very keystone of the arch above \nus.  As the sun went down behind the bank, the slightest blades of \ngrass upon it seemed to become as distinctly visible as the \narteries in the skeleton of a leaf; and when, as it slowly sank, \nthe red and golden bars upon the water grew dimmer, and dimmer yet, \nas if they were sinking too; and all the glowing colours of \ndeparting day paled, inch by inch, before the sombre night; the \nscene became a thousand times more lonesome and more dreary than \nbefore, and all its influences darkened with the sky.\n\nWe drank the muddy water of this river while we were upon it.  It \nis considered wholesome by the natives, and is something more \nopaque than gruel.  I have seen water like it at the Filter-shops, \nbut nowhere else.\n\nOn the fourth night after leaving Louisville, we reached St. Louis, \nand here I witnessed the conclusion of an incident, trifling enough \nin itself, but very pleasant to see, which had interested me during \nthe whole journey.\n\nThere was a little woman on board, with a little baby; and both \nlittle woman and little child were cheerful, good-looking, bright-\neyed, and fair to see.  The little woman had been passing a long \ntime with her sick mother in New York, and had left her home in St. \nLouis, in that condition in which ladies who truly love their lords \ndesire to be.  The baby was born in her mother's house; and she had \nnot seen her husband (to whom she was now returning), for twelve \nmonths:  having left him a month or two after their marriage.\n\nWell, to be sure, there never was a little woman so full of hope, \nand tenderness, and love, and anxiety, as this little woman was:  \nand all day long she wondered whether 'He' would be at the wharf; \nand whether 'He' had got her letter; and whether, if she sent the \nbaby ashore by somebody else, 'He' would know it, meeting it in the \nstreet:  which, seeing that he had never set eyes upon it in his \nlife, was not very likely in the abstract, but was probable enough, \nto the young mother.  She was such an artless little creature; and \nwas in such a sunny, beaming, hopeful state; and let out all this \nmatter clinging close about her heart, so freely; that all the \nother lady passengers entered into the spirit of it as much as she; \nand the captain (who heard all about it from his wife) was wondrous \nsly, I promise you:  inquiring, every time we met at table, as in \nforgetfulness, whether she expected anybody to meet her at St. \nLouis, and whether she would want to go ashore the night we reached \nit (but he supposed she wouldn't), and cutting many other dry jokes \nof that nature.  There was one little weazen, dried-apple-faced old \nwoman, who took occasion to doubt the constancy of husbands in such \ncircumstances of bereavement; and there was another lady (with a \nlap-dog) old enough to moralize on the lightness of human \naffections, and yet not so old that she could help nursing the \nbaby, now and then, or laughing with the rest, when the little \nwoman called it by its father's name, and asked it all manner of \nfantastic questions concerning him in the joy of her heart.\n\nIt was something of a blow to the little woman, that when we were \nwithin twenty miles of our destination, it became clearly necessary \nto put this baby to bed.  But she got over it with the same good \nhumour; tied a handkerchief round her head; and came out into the \nlittle gallery with the rest.  Then, such an oracle as she became \nin reference to the localities! and such facetiousness as was \ndisplayed by the married ladies! and such sympathy as was shown by \nthe single ones! and such peals of laughter as the little woman \nherself (who would just as soon have cried) greeted every jest \nwith!\n\nAt last, there were the lights of St. Louis, and here was the \nwharf, and those were the steps:  and the little woman covering her \nface with her hands, and laughing (or seeming to laugh) more than \never, ran into her own cabin, and shut herself up.  I have no doubt \nthat in the charming inconsistency of such excitement, she stopped \nher ears, lest she should hear 'Him' asking for her:  but I did not \nsee her do it.\n\nThen, a great crowd of people rushed on board, though the boat was \nnot yet made fast, but was wandering about, among the other boats, \nto find a landing-place:  and everybody looked for the husband:  \nand nobody saw him:  when, in the midst of us all - Heaven knows \nhow she ever got there - there was the little woman clinging with \nboth arms tight round the neck of a fine, good-looking, sturdy \nyoung fellow! and in a moment afterwards, there she was again, \nactually clapping her little hands for joy, as she dragged him \nthrough the small door of her small cabin, to look at the baby as \nhe lay asleep!\n\nWe went to a large hotel, called the Planter's House:  built like \nan English hospital, with long passages and bare walls, and sky-\nlights above the room-doors for the free circulation of air.  There \nwere a great many boarders in it; and as many lights sparkled and \nglistened from the windows down into the street below, when we \ndrove up, as if it had been illuminated on some occasion of \nrejoicing.  It is an excellent house, and the proprietors have most \nbountiful notions of providing the creature comforts.  Dining alone \nwith my wife in our own room, one day, I counted fourteen dishes on \nthe table at once.\n\nIn the old French portion of the town, the thoroughfares are narrow \nand crooked, and some of the houses are very quaint and \npicturesque:  being built of wood, with tumble-down galleries \nbefore the windows, approachable by stairs or rather ladders from \nthe street.  There are queer little barbers' shops and drinking-\nhouses too, in this quarter; and abundance of crazy old tenements \nwith blinking casements, such as may be seen in Flanders.  Some of \nthese ancient habitations, with high garret gable-windows perking \ninto the roofs, have a kind of French shrug about them; and being \nlop-sided with age, appear to hold their heads askew, besides, as \nif they were grimacing in astonishment at the American \nImprovements.\n\nIt is hardly necessary to say, that these consist of wharfs and \nwarehouses, and new buildings in all directions; and of a great \nmany vast plans which are still 'progressing.'  Already, however, \nsome very good houses, broad streets, and marble-fronted shops, \nhave gone so far ahead as to be in a state of completion; and the \ntown bids fair in a few years to improve considerably:  though it \nis not likely ever to vie, in point of elegance or beauty, with \nCincinnati.\n\nThe Roman Catholic religion, introduced here by the early French \nsettlers, prevails extensively.  Among the public institutions are \na Jesuit college; a convent for 'the Ladies of the Sacred Heart;' \nand a large chapel attached to the college, which was in course of \nerection at the time of my visit, and was intended to be \nconsecrated on the second of December in the next year.  The \narchitect of this building, is one of the reverend fathers of the \nschool, and the works proceed under his sole direction.  The organ \nwill be sent from Belgium.\n\nIn addition to these establishments, there is a Roman Catholic \ncathedral, dedicated to Saint Francis Xavier; and a hospital, \nfounded by the munificence of a deceased resident, who was a member \nof that church.  It also sends missionaries from hence among the \nIndian tribes.\n\nThe Unitarian church is represented, in this remote place, as in \nmost other parts of America, by a gentleman of great worth and \nexcellence.  The poor have good reason to remember and bless it; \nfor it befriends them, and aids the cause of rational education, \nwithout any sectarian or selfish views.  It is liberal in all its \nactions; of kind construction; and of wide benevolence.\n\nThere are three free-schools already erected, and in full operation \nin this city.  A fourth is building, and will soon be opened.\n\nNo man ever admits the unhealthiness of the place he dwells in \n(unless he is going away from it), and I shall therefore, I have no \ndoubt, be at issue with the inhabitants of St. Louis, in \nquestioning the perfect salubrity of its climate, and in hinting \nthat I think it must rather dispose to fever, in the summer and \nautumnal seasons.  Just adding, that it is very hot, lies among \ngreat rivers, and has vast tracts of undrained swampy land around \nit, I leave the reader to form his own opinion.\n\nAs I had a great desire to see a Prairie before turning back from \nthe furthest point of my wanderings; and as some gentlemen of the \ntown had, in their hospitable consideration, an equal desire to \ngratify me; a day was fixed, before my departure, for an expedition \nto the Looking-Glass Prairie, which is within thirty miles of the \ntown.  Deeming it possible that my readers may not object to know \nwhat kind of thing such a gipsy party may be at that distance from \nhome, and among what sort of objects it moves, I will describe the \njaunt in another chapter.\n\n\n\nCHAPTER XIII - A JAUNT TO THE LOOKING-GLASS PRAIRIE AND BACK\n\n\n\nI MAY premise that the word Prairie is variously pronounced \nPARAAER, PAREARER, PAROARER.  The latter mode of pronunciation is \nperhaps the most in favour.\n\nWe were fourteen in all, and all young men:  indeed it is a \nsingular though very natural feature in the society of these \ndistant settlements, that it is mainly composed of adventurous \npersons in the prime of life, and has very few grey heads among it.  \nThere were no ladies:  the trip being a fatiguing one:  and we were \nto start at five o'clock in the morning punctually.\n\nI was called at four, that I might be certain of keeping nobody \nwaiting; and having got some bread and milk for breakfast, threw up \nthe window and looked down into the street, expecting to see the \nwhole party busily astir, and great preparations going on below.  \nBut as everything was very quiet, and the street presented that \nhopeless aspect with which five o'clock in the morning is familiar \nelsewhere, I deemed it as well to go to bed again, and went \naccordingly.\n\nI woke again at seven o'clock, and by that time the party had \nassembled, and were gathered round, one light carriage, with a very \nstout axletree; one something on wheels like an amateur carrier's \ncart; one double phaeton of great antiquity and unearthly \nconstruction; one gig with a great hole in its back and a broken \nhead; and one rider on horseback who was to go on before.  I got \ninto the first coach with three companions; the rest bestowed \nthemselves in the other vehicles; two large baskets were made fast \nto the lightest; two large stone jars in wicker cases, technically \nknown as demi-johns, were consigned to the 'least rowdy' of the \nparty for safe-keeping; and the procession moved off to the \nferryboat, in which it was to cross the river bodily, men, horses, \ncarriages, and all, as the manner in these parts is.\n\nWe got over the river in due course, and mustered again before a \nlittle wooden box on wheels, hove down all aslant in a morass, with \n'MERCHANT TAILOR' painted in very large letters over the door.  \nHaving settled the order of proceeding, and the road to be taken, \nwe started off once more and began to make our way through an ill-\nfavoured Black Hollow, called, less expressively, the American \nBottom.\n\nThe previous day had been - not to say hot, for the term is weak \nand lukewarm in its power of conveying an idea of the temperature.  \nThe town had been on fire; in a blaze.  But at night it had come on \nto rain in torrents, and all night long it had rained without \ncessation.  We had a pair of very strong horses, but travelled at \nthe rate of little more than a couple of miles an hour, through one \nunbroken slough of black mud and water.  It had no variety but in \ndepth.  Now it was only half over the wheels, now it hid the \naxletree, and now the coach sank down in it almost to the windows.  \nThe air resounded in all directions with the loud chirping of the \nfrogs, who, with the pigs (a coarse, ugly breed, as unwholesome-\nlooking as though they were the spontaneous growth of the country), \nhad the whole scene to themselves.  Here and there we passed a log \nhut:  but the wretched cabins were wide apart and thinly scattered, \nfor though the soil is very rich in this place, few people can \nexist in such a deadly atmosphere.  On either side of the track, if \nit deserve the name, was the thick 'bush;' and everywhere was \nstagnant, slimy, rotten, filthy water.\n\nAs it is the custom in these parts to give a horse a gallon or so \nof cold water whenever he is in a foam with heat, we halted for \nthat purpose, at a log inn in the wood, far removed from any other \nresidence.  It consisted of one room, bare-roofed and bare-walled \nof course, with a loft above.  The ministering priest was a swarthy \nyoung savage, in a shirt of cotton print like bed-furniture, and a \npair of ragged trousers.  There were a couple of young boys, too, \nnearly naked, lying idle by the well; and they, and he, and THE \ntraveller at the inn, turned out to look at us.\n\nThe traveller was an old man with a grey gristly beard two inches \nlong, a shaggy moustache of the same hue, and enormous eyebrows; \nwhich almost obscured his lazy, semi-drunken glance, as he stood \nregarding us with folded arms:  poising himself alternately upon \nhis toes and heels.  On being addressed by one of the party, he \ndrew nearer, and said, rubbing his chin (which scraped under his \nhorny hand like fresh gravel beneath a nailed shoe), that he was \nfrom Delaware, and had lately bought a farm 'down there,' pointing \ninto one of the marshes where the stunted trees were thickest.  He \nwas 'going,' he added, to St. Louis, to fetch his family, whom he \nhad left behind; but he seemed in no great hurry to bring on these \nincumbrances, for when we moved away, he loitered back into the \ncabin, and was plainly bent on stopping there so long as his money \nlasted.  He was a great politician of course, and explained his \nopinions at some length to one of our company; but I only remember \nthat he concluded with two sentiments, one of which was, Somebody \nfor ever; and the other, Blast everybody else! which is by no means \na bad abstract of the general creed in these matters.\n\nWhen the horses were swollen out to about twice their natural \ndimensions (there seems to be an idea here, that this kind of \ninflation improves their going), we went forward again, through mud \nand mire, and damp, and festering heat, and brake and bush, \nattended always by the music of the frogs and pigs, until nearly \nnoon, when we halted at a place called Belleville.\n\nBelleville was a small collection of wooden houses, huddled \ntogether in the very heart of the bush and swamp.  Many of them had \nsingularly bright doors of red and yellow; for the place had been \nlately visited by a travelling painter, 'who got along,' as I was \ntold, 'by eating his way.'  The criminal court was sitting, and was \nat that moment trying some criminals for horse-stealing:  with whom \nit would most likely go hard:  for live stock of all kinds being \nnecessarily very much exposed in the woods, is held by the \ncommunity in rather higher value than human life; and for this \nreason, juries generally make a point of finding all men indicted \nfor cattle-stealing, guilty, whether or no.\n\nThe horses belonging to the bar, the judge, and witnesses, were \ntied to temporary racks set up roughly in the road; by which is to \nbe understood, a forest path, nearly knee-deep in mud and slime.\n\nThere was an hotel in this place, which, like all hotels in \nAmerica, had its large dining-room for the public table.  It was an \nodd, shambling, low-roofed out-house, half-cowshed and half-\nkitchen, with a coarse brown canvas table-cloth, and tin sconces \nstuck against the walls, to hold candles at supper-time.  The \nhorseman had gone forward to have coffee and some eatables \nprepared, and they were by this time nearly ready.  He had ordered \n'wheat-bread and chicken fixings,' in preference to 'corn-bread and \ncommon doings.'  The latter kind of rejection includes only pork \nand bacon.  The former comprehends broiled ham, sausages, veal \ncutlets, steaks, and such other viands of that nature as may be \nsupposed, by a tolerably wide poetical construction, 'to fix' a \nchicken comfortably in the digestive organs of any lady or \ngentleman.\n\nOn one of the door-posts at this inn, was a tin plate, whereon was \ninscribed in characters of gold, 'Doctor Crocus;' and on a sheet of \npaper, pasted up by the side of this plate, was a written \nannouncement that Dr. Crocus would that evening deliver a lecture \non Phrenology for the benefit of the Belleville public; at a \ncharge, for admission, of so much a head.\n\nStraying up-stairs, during the preparation of the chicken fixings, \nI happened to pass the doctor's chamber; and as the door stood wide \nopen, and the room was empty, I made bold to peep in.\n\nIt was a bare, unfurnished, comfortless room, with an unframed \nportrait hanging up at the head of the bed; a likeness, I take it, \nof the Doctor, for the forehead was fully displayed, and great \nstress was laid by the artist upon its phrenological developments.  \nThe bed itself was covered with an old patch-work counterpane.  The \nroom was destitute of carpet or of curtain.  There was a damp \nfireplace without any stove, full of wood ashes; a chair, and a \nvery small table; and on the last-named piece of furniture was \ndisplayed, in grand array, the doctor's library, consisting of some \nhalf-dozen greasy old books.\n\nNow, it certainly looked about the last apartment on the whole \nearth out of which any man would be likely to get anything to do \nhim good.  But the door, as I have said, stood coaxingly open, and \nplainly said in conjunction with the chair, the portrait, the \ntable, and the books, 'Walk in, gentlemen, walk in!  Don't be ill, \ngentlemen, when you may be well in no time.  Doctor Crocus is here, \ngentlemen, the celebrated Dr. Crocus!  Dr. Crocus has come all this \nway to cure you, gentlemen.  If you haven't heard of Dr. Crocus, \nit's your fault, gentlemen, who live a little way out of the world \nhere:  not Dr. Crocus's.  Walk in, gentlemen, walk in!'\n\nIn the passage below, when I went down-stairs again, was Dr. Crocus \nhimself.  A crowd had flocked in from the Court House, and a voice \nfrom among them called out to the landlord, 'Colonel! introduce \nDoctor Crocus.'\n\n'Mr. Dickens,' says the colonel, 'Doctor Crocus.'\n\nUpon which Doctor Crocus, who is a tall, fine-looking Scotchman, \nbut rather fierce and warlike in appearance for a professor of the \npeaceful art of healing, bursts out of the concourse with his right \narm extended, and his chest thrown out as far as it will possibly \ncome, and says:\n\n'Your countryman, sir!'\n\nWhereupon Doctor Crocus and I shake hands; and Doctor Crocus looks \nas if I didn't by any means realise his expectations, which, in a \nlinen blouse, and a great straw hat, with a green ribbon, and no \ngloves, and my face and nose profusely ornamented with the stings \nof mosquitoes and the bites of bugs, it is very likely I did not.\n\n'Long in these parts, sir?' says I.\n\n'Three or four months, sir,' says the Doctor.\n\n'Do you think of soon returning to the old country?' says I.\n\nDoctor Crocus makes no verbal answer, but gives me an imploring \nlook, which says so plainly 'Will you ask me that again, a little \nlouder, if you please?' that I repeat the question.\n\n'Think of soon returning to the old country, sir!' repeats the \nDoctor.\n\n'To the old country, sir,' I rejoin.\n\nDoctor Crocus looks round upon the crowd to observe the effect he \nproduces, rubs his hands, and says, in a very loud voice:\n\n'Not yet awhile, sir, not yet.  You won't catch me at that just \nyet, sir.  I am a little too fond of freedom for THAT, sir.  Ha, \nha!  It's not so easy for a man to tear himself from a free country \nsuch as this is, sir.  Ha, ha!  No, no!  Ha, ha!  None of that till \none's obliged to do it, sir.  No, no!'\n\nAs Doctor Crocus says these latter words, he shakes his head, \nknowingly, and laughs again.  Many of the bystanders shake their \nheads in concert with the doctor, and laugh too, and look at each \nother as much as to say, 'A pretty bright and first-rate sort of \nchap is Crocus!' and unless I am very much mistaken, a good many \npeople went to the lecture that night, who never thought about \nphrenology, or about Doctor Crocus either, in all their lives \nbefore.\n\nFrom Belleville, we went on, through the same desolate kind of \nwaste, and constantly attended, without the interval of a moment, \nby the same music; until, at three o'clock in the afternoon, we \nhalted once more at a village called Lebanon to inflate the horses \nagain, and give them some corn besides:  of which they stood much \nin need.  Pending this ceremony, I walked into the village, where I \nmet a full-sized dwelling-house coming down-hill at a round trot, \ndrawn by a score or more of oxen.\n\nThe public-house was so very clean and good a one, that the \nmanagers of the jaunt resolved to return to it and put up there for \nthe night, if possible.  This course decided on, and the horses \nbeing well refreshed, we again pushed forward, and came upon the \nPrairie at sunset.\n\nIt would be difficult to say why, or how - though it was possibly \nfrom having heard and read so much about it - but the effect on me \nwas disappointment.  Looking towards the setting sun, there lay, \nstretched out before my view, a vast expanse of level ground; \nunbroken, save by one thin line of trees, which scarcely amounted \nto a scratch upon the great blank; until it met the glowing sky, \nwherein it seemed to dip:  mingling with its rich colours, and \nmellowing in its distant blue.  There it lay, a tranquil sea or \nlake without water, if such a simile be admissible, with the day \ngoing down upon it:  a few birds wheeling here and there:  and \nsolitude and silence reigning paramount around.  But the grass was \nnot yet high; there were bare black patches on the ground; and the \nfew wild flowers that the eye could see, were poor and scanty.  \nGreat as the picture was, its very flatness and extent, which left \nnothing to the imagination, tamed it down and cramped its interest.  \nI felt little of that sense of freedom and exhilaration which a \nScottish heath inspires, or even our English downs awaken.  It was \nlonely and wild, but oppressive in its barren monotony.  I felt \nthat in traversing the Prairies, I could never abandon myself to \nthe scene, forgetful of all else; as I should do instinctively, \nwere the heather underneath my feet, or an iron-bound coast beyond; \nbut should often glance towards the distant and frequently-receding \nline of the horizon, and wish it gained and passed.  It is not a \nscene to be forgotten, but it is scarcely one, I think (at all \nevents, as I saw it), to remember with much pleasure, or to covet \nthe looking-on again, in after-life.\n\nWe encamped near a solitary log-house, for the sake of its water, \nand dined upon the plain.  The baskets contained roast fowls, \nbuffalo's tongue (an exquisite dainty, by the way), ham, bread, \ncheese, and butter; biscuits, champagne, sherry; lemons and sugar \nfor punch; and abundance of rough ice.  The meal was delicious, and \nthe entertainers were the soul of kindness and good humour.  I have \noften recalled that cheerful party to my pleasant recollection \nsince, and shall not easily forget, in junketings nearer home with \nfriends of older date, my boon companions on the Prairie.\n\nReturning to Lebanon that night, we lay at the little inn at which \nwe had halted in the afternoon.  In point of cleanliness and \ncomfort it would have suffered by no comparison with any English \nalehouse, of a homely kind, in England.\n\nRising at five o'clock next morning, I took a walk about the \nvillage:  none of the houses were strolling about to-day, but it \nwas early for them yet, perhaps:  and then amused myself by \nlounging in a kind of farm-yard behind the tavern, of which the \nleading features were, a strange jumble of rough sheds for stables; \na rude colonnade, built as a cool place of summer resort; a deep \nwell; a great earthen mound for keeping vegetables in, in winter \ntime; and a pigeon-house, whose little apertures looked, as they do \nin all pigeon-houses, very much too small for the admission of the \nplump and swelling-breasted birds who were strutting about it, \nthough they tried to get in never so hard.  That interest \nexhausted, I took a survey of the inn's two parlours, which were \ndecorated with coloured prints of Washington, and President \nMadison, and of a white-faced young lady (much speckled by the \nflies), who held up her gold neck-chain for the admiration of the \nspectator, and informed all admiring comers that she was 'Just \nSeventeen:' although I should have thought her older.  In the best \nroom were two oil portraits of the kit-cat size, representing the \nlandlord and his infant son; both looking as bold as lions, and \nstaring out of the canvas with an intensity that would have been \ncheap at any price.  They were painted, I think, by the artist who \nhad touched up the Belleville doors with red and gold; for I seemed \nto recognise his style immediately.\n\nAfter breakfast, we started to return by a different way from that \nwhich we had taken yesterday, and coming up at ten o'clock with an \nencampment of German emigrants carrying their goods in carts, who \nhad made a rousing fire which they were just quitting, stopped \nthere to refresh.  And very pleasant the fire was; for, hot though \nit had been yesterday, it was quite cold to-day, and the wind blew \nkeenly.  Looming in the distance, as we rode along, was another of \nthe ancient Indian burial-places, called The Monks' Mound; in \nmemory of a body of fanatics of the order of La Trappe, who founded \na desolate convent there, many years ago, when there were no \nsettlers within a thousand miles, and were all swept off by the \npernicious climate:  in which lamentable fatality, few rational \npeople will suppose, perhaps, that society experienced any very \nsevere deprivation.\n\nThe track of to-day had the same features as the track of \nyesterday.  There was the swamp, the bush, and the perpetual chorus \nof frogs, the rank unseemly growth, the unwholesome steaming earth.  \nHere and there, and frequently too, we encountered a solitary \nbroken-down waggon, full of some new settler's goods.  It was a \npitiful sight to see one of these vehicles deep in the mire; the \naxle-tree broken; the wheel lying idly by its side; the man gone \nmiles away, to look for assistance; the woman seated among their \nwandering household gods with a baby at her breast, a picture of \nforlorn, dejected patience; the team of oxen crouching down \nmournfully in the mud, and breathing forth such clouds of vapour \nfrom their mouths and nostrils, that all the damp mist and fog \naround seemed to have come direct from them.\n\nIn due time we mustered once again before the merchant tailor's, \nand having done so, crossed over to the city in the ferry-boat:  \npassing, on the way, a spot called Bloody Island, the duelling-\nground of St. Louis, and so designated in honour of the last fatal \ncombat fought there, which was with pistols, breast to breast.  \nBoth combatants fell dead upon the ground; and possibly some \nrational people may think of them, as of the gloomy madmen on the \nMonks' Mound, that they were no great loss to the community.\n\n\n\nCHAPTER XIV - RETURN TO CINCINNATI.  A STAGE-COACH RIDE FROM THAT \nCITY TO COLUMBUS, AND THENCE TO SANDUSKY.  SO, BY LAKE ERIE, TO THE \nFALLS OF NIAGARA\n\n\n\nAS I had a desire to travel through the interior of the state of \nOhio, and to 'strike the lakes,' as the phrase is, at a small town \ncalled Sandusky, to which that route would conduct us on our way to \nNiagara, we had to return from St. Louis by the way we had come, \nand to retrace our former track as far as Cincinnati.\n\nThe day on which we were to take leave of St. Louis being very \nfine; and the steamboat, which was to have started I don't know how \nearly in the morning, postponing, for the third or fourth time, her \ndeparture until the afternoon; we rode forward to an old French \nvillage on the river, called properly Carondelet, and nicknamed \nVide Poche, and arranged that the packet should call for us there.\n\nThe place consisted of a few poor cottages, and two or three \npublic-houses; the state of whose larders certainly seemed to \njustify the second designation of the village, for there was \nnothing to eat in any of them.  At length, however, by going back \nsome half a mile or so, we found a solitary house where ham and \ncoffee were procurable; and there we tarried to wait the advent of \nthe boat, which would come in sight from the green before the door, \na long way off.\n\nIt was a neat, unpretending village tavern, and we took our repast \nin a quaint little room with a bed in it, decorated with some old \noil paintings, which in their time had probably done duty in a \nCatholic chapel or monastery.  The fare was very good, and served \nwith great cleanliness.  The house was kept by a characteristic old \ncouple, with whom we had a long talk, and who were perhaps a very \ngood sample of that kind of people in the West.\n\nThe landlord was a dry, tough, hard-faced old fellow (not so very \nold either, for he was but just turned sixty, I should think), who \nhad been out with the militia in the last war with England, and had \nseen all kinds of service, - except a battle; and he had been very \nnear seeing that, he added:  very near.  He had all his life been \nrestless and locomotive, with an irresistible desire for change; \nand was still the son of his old self:  for if he had nothing to \nkeep him at home, he said (slightly jerking his hat and his thumb \ntowards the window of the room in which the old lady sat, as we \nstood talking in front of the house), he would clean up his musket, \nand be off to Texas to-morrow morning.  He was one of the very many \ndescendants of Cain proper to this continent, who seem destined \nfrom their birth to serve as pioneers in the great human army:  who \ngladly go on from year to year extending its outposts, and leaving \nhome after home behind them; and die at last, utterly regardless of \ntheir graves being left thousands of miles behind, by the wandering \ngeneration who succeed.\n\nHis wife was a domesticated, kind-hearted old soul, who had come \nwith him, 'from the queen city of the world,' which, it seemed, was \nPhiladelphia; but had no love for this Western country, and indeed \nhad little reason to bear it any; having seen her children, one by \none, die here of fever, in the full prime and beauty of their \nyouth.  Her heart was sore, she said, to think of them; and to talk \non this theme, even to strangers, in that blighted place, so far \nfrom her old home, eased it somewhat, and became a melancholy \npleasure.\n\nThe boat appearing towards evening, we bade adieu to the poor old \nlady and her vagrant spouse, and making for the nearest landing-\nplace, were soon on board The Messenger again, in our old cabin, \nand steaming down the Mississippi.\n\nIf the coming up this river, slowly making head against the stream, \nbe an irksome journey, the shooting down it with the turbid current \nis almost worse; for then the boat, proceeding at the rate of \ntwelve or fifteen miles an hour, has to force its passage through a \nlabyrinth of floating logs, which, in the dark, it is often \nimpossible to see beforehand or avoid.  All that night, the bell \nwas never silent for five minutes at a time; and after every ring \nthe vessel reeled again, sometimes beneath a single blow, sometimes \nbeneath a dozen dealt in quick succession, the lightest of which \nseemed more than enough to beat in her frail keel, as though it had \nbeen pie-crust.  Looking down upon the filthy river after dark, it \nseemed to be alive with monsters, as these black masses rolled upon \nthe surface, or came starting up again, head first, when the boat, \nin ploughing her way among a shoal of such obstructions, drove a \nfew among them for the moment under water.  Sometimes the engine \nstopped during a long interval, and then before her and behind, and \ngathering close about her on all sides, were so many of these ill-\nfavoured obstacles that she was fairly hemmed in; the centre of a \nfloating island; and was constrained to pause until they parted, \nsomewhere, as dark clouds will do before the wind, and opened by \ndegrees a channel out.\n\nIn good time next morning, however, we came again in sight of the \ndetestable morass called Cairo; and stopping there to take in wood, \nlay alongside a barge, whose starting timbers scarcely held \ntogether.  It was moored to the bank, and on its side was painted \n'Coffee House;' that being, I suppose, the floating paradise to \nwhich the people fly for shelter when they lose their houses for a \nmonth or two beneath the hideous waters of the Mississippi.  But \nlooking southward from this point, we had the satisfaction of \nseeing that intolerable river dragging its slimy length and ugly \nfreight abruptly off towards New Orleans; and passing a yellow line \nwhich stretched across the current, were again upon the clear Ohio, \nnever, I trust, to see the Mississippi more, saving in troubled \ndreams and nightmares.  Leaving it for the company of its sparkling \nneighbour, was like the transition from pain to ease, or the \nawakening from a horrible vision to cheerful realities.\n\nWe arrived at Louisville on the fourth night, and gladly availed \nourselves of its excellent hotel.  Next day we went on in the Ben \nFranklin, a beautiful mail steamboat, and reached Cincinnati \nshortly after midnight.  Being by this time nearly tired of \nsleeping upon shelves, we had remained awake to go ashore \nstraightway; and groping a passage across the dark decks of other \nboats, and among labyrinths of engine-machinery and leaking casks \nof molasses, we reached the streets, knocked up the porter at the \nhotel where we had stayed before, and were, to our great joy, \nsafely housed soon afterwards.\n\nWe rested but one day at Cincinnati, and then resumed our journey \nto Sandusky.  As it comprised two varieties of stage-coach \ntravelling, which, with those I have already glanced at, comprehend \nthe main characteristics of this mode of transit in America, I will \ntake the reader as our fellow-passenger, and pledge myself to \nperform the distance with all possible despatch.\n\nOur place of destination in the first instance is Columbus.  It is \ndistant about a hundred and twenty miles from Cincinnati, but there \nis a macadamised road (rare blessing!) the whole way, and the rate \nof travelling upon it is six miles an hour.\n\nWe start at eight o'clock in the morning, in a great mail-coach, \nwhose huge cheeks are so very ruddy and plethoric, that it appears \nto be troubled with a tendency of blood to the head.  Dropsical it \ncertainly is, for it will hold a dozen passengers inside.  But, \nwonderful to add, it is very clean and bright, being nearly new; \nand rattles through the streets of Cincinnati gaily.\n\nOur way lies through a beautiful country, richly cultivated, and \nluxuriant in its promise of an abundant harvest.  Sometimes we pass \na field where the strong bristling stalks of Indian corn look like \na crop of walking-sticks, and sometimes an enclosure where the \ngreen wheat is springing up among a labyrinth of stumps; the \nprimitive worm-fence is universal, and an ugly thing it is; but the \nfarms are neatly kept, and, save for these differences, one might \nbe travelling just now in Kent.\n\nWe often stop to water at a roadside inn, which is always dull and \nsilent.  The coachman dismounts and fills his bucket, and holds it \nto the horses' heads.  There is scarcely ever any one to help him; \nthere are seldom any loungers standing round; and never any stable-\ncompany with jokes to crack.  Sometimes, when we have changed our \nteam, there is a difficulty in starting again, arising out of the \nprevalent mode of breaking a young horse:  which is to catch him, \nharness him against his will, and put him in a stage-coach without \nfurther notice:  but we get on somehow or other, after a great many \nkicks and a violent struggle; and jog on as before again.\n\nOccasionally, when we stop to change, some two or three half-\ndrunken loafers will come loitering out with their hands in their \npockets, or will be seen kicking their heels in rocking-chairs, or \nlounging on the window-sill, or sitting on a rail within the \ncolonnade:  they have not often anything to say though, either to \nus or to each other, but sit there idly staring at the coach and \nhorses.  The landlord of the inn is usually among them, and seems, \nof all the party, to be the least connected with the business of \nthe house.  Indeed he is with reference to the tavern, what the \ndriver is in relation to the coach and passengers:  whatever \nhappens in his sphere of action, he is quite indifferent, and \nperfectly easy in his mind.\n\nThe frequent change of coachmen works no change or variety in the \ncoachman's character.  He is always dirty, sullen, and taciturn.  \nIf he be capable of smartness of any kind, moral or physical, he \nhas a faculty of concealing it which is truly marvellous.  He never \nspeaks to you as you sit beside him on the box, and if you speak to \nhim, he answers (if at all) in monosyllables.  He points out \nnothing on the road, and seldom looks at anything:  being, to all \nappearance, thoroughly weary of it and of existence generally.  As \nto doing the honours of his coach, his business, as I have said, is \nwith the horses.  The coach follows because it is attached to them \nand goes on wheels:  not because you are in it.  Sometimes, towards \nthe end of a long stage, he suddenly breaks out into a discordant \nfragment of an election song, but his face never sings along with \nhim:  it is only his voice, and not often that.\n\nHe always chews and always spits, and never encumbers himself with \na pocket-handkerchief.  The consequences to the box passenger, \nespecially when the wind blows towards him, are not agreeable.\n\nWhenever the coach stops, and you can hear the voices of the inside \npassengers; or whenever any bystander addresses them, or any one \namong them; or they address each other; you will hear one phrase \nrepeated over and over and over again to the most extraordinary \nextent.  It is an ordinary and unpromising phrase enough, being \nneither more nor less than 'Yes, sir;' but it is adapted to every \nvariety of circumstance, and fills up every pause in the \nconversation.  Thus:-\n\nThe time is one o'clock at noon.  The scene, a place where we are \nto stay and dine, on this journey.  The coach drives up to the door \nof an inn.  The day is warm, and there are several idlers lingering \nabout the tavern, and waiting for the public dinner.  Among them, \nis a stout gentleman in a brown hat, swinging himself to and fro in \na rocking-chair on the pavement.\n\nAs the coach stops, a gentleman in a straw hat looks out of the \nwindow:\n\nSTRAW HAT.  (To the stout gentleman in the rocking-chair.)  I \nreckon that's Judge Jefferson, an't it?\n\nBROWN HAT.  (Still swinging; speaking very slowly; and without any \nemotion whatever.)  Yes, sir.\n\nSTRAW HAT.  Warm weather, Judge.\n\nBROWN HAT.  Yes, sir.\n\nSTRAW HAT.  There was a snap of cold, last week.\n\nBROWN HAT.  Yes, sir.\n\nSTRAW HAT.  Yes, sir.\n\nA pause.  They look at each other, very seriously.\n\nSTRAW HAT.  I calculate you'll have got through that case of the \ncorporation, Judge, by this time, now?\n\nBROWN HAT.  Yes, sir.\n\nSTRAW HAT.  How did the verdict go, sir?\n\nBROWN HAT.  For the defendant, sir.\n\nSTRAW HAT.  (Interrogatively.)  Yes, sir?\n\nBROWN HAT. (Affirmatively.)  Yes, sir.\n\nBOTH.  (Musingly, as each gazes down the street.)  Yes, sir.\n\nAnother pause.  They look at each other again, still more seriously \nthan before.\n\nBROWN HAT.  This coach is rather behind its time to-day, I guess.\n\nSTRAW HAT.  (Doubtingly.)  Yes, sir.\n\nBROWN HAT.  (Looking at his watch.)  Yes, sir; nigh upon two hours.\n\nSTRAW HAT.  (Raising his eyebrows in very great surprise.)  Yes, \nsir!\n\nBROWN HAT.  (Decisively, as he puts up his watch.)  Yes, sir.\n\nALL THE OTHER INSIDE PASSENGERS.  (Among themselves.)  Yes, sir.\n\nCOACHMAN.  (In a very surly tone.)  No it an't.\n\nSTRAW HAT.  (To the coachman.)  Well, I don't know, sir.  We were a \npretty tall time coming that last fifteen mile.  That's a fact.\n\nThe coachman making no reply, and plainly declining to enter into \nany controversy on a subject so far removed from his sympathies and \nfeelings, another passenger says, 'Yes, sir;' and the gentleman in \nthe straw hat in acknowledgment of his courtesy, says 'Yes, sir,' \nto him, in return.  The straw hat then inquires of the brown hat, \nwhether that coach in which he (the straw hat) then sits, is not a \nnew one?  To which the brown hat again makes answer, 'Yes, sir.'\n\nSTRAW HAT.  I thought so.  Pretty loud smell of varnish, sir?\n\nBROWN HAT.  Yes, sir.\n\nALL THE OTHER INSIDE PASSENGERS.  Yes, sir.\n\nBROWN HAT.  (To the company in general.)  Yes, sir.\n\nThe conversational powers of the company having been by this time \npretty heavily taxed, the straw hat opens the door and gets out; \nand all the rest alight also.  We dine soon afterwards with the \nboarders in the house, and have nothing to drink but tea and \ncoffee.  As they are both very bad and the water is worse, I ask \nfor brandy; but it is a Temperance Hotel, and spirits are not to be \nhad for love or money.  This preposterous forcing of unpleasant \ndrinks down the reluctant throats of travellers is not at all \nuncommon in America, but I never discovered that the scruples of \nsuch wincing landlords induced them to preserve any unusually nice \nbalance between the quality of their fare, and their scale of \ncharges:  on the contrary, I rather suspected them of diminishing \nthe one and exalting the other, by way of recompense for the loss \nof their profit on the sale of spirituous liquors.  After all, \nperhaps, the plainest course for persons of such tender \nconsciences, would be, a total abstinence from tavern-keeping.\n\nDinner over, we get into another vehicle which is ready at the door \n(for the coach has been changed in the interval), and resume our \njourney; which continues through the same kind of country until \nevening, when we come to the town where we are to stop for tea and \nsupper; and having delivered the mail bags at the Post-office, ride \nthrough the usual wide street, lined with the usual stores and \nhouses (the drapers always having hung up at their door, by way of \nsign, a piece of bright red cloth), to the hotel where this meal is \nprepared.  There being many boarders here, we sit down, a large \nparty, and a very melancholy one as usual.  But there is a buxom \nhostess at the head of the table, and opposite, a simple Welsh \nschoolmaster with his wife and child; who came here, on a \nspeculation of greater promise than performance, to teach the \nclassics:  and they are sufficient subjects of interest until the \nmeal is over, and another coach is ready.  In it we go on once \nmore, lighted by a bright moon, until midnight; when we stop to \nchange the coach again, and remain for half an hour or so in a \nmiserable room, with a blurred lithograph of Washington over the \nsmoky fire-place, and a mighty jug of cold water on the table:  to \nwhich refreshment the moody passengers do so apply themselves that \nthey would seem to be, one and all, keen patients of Dr. Sangrado.  \nAmong them is a very little boy, who chews tobacco like a very big \none; and a droning gentleman, who talks arithmetically and \nstatistically on all subjects, from poetry downwards; and who \nalways speaks in the same key, with exactly the same emphasis, and \nwith very grave deliberation.  He came outside just now, and told \nme how that the uncle of a certain young lady who had been spirited \naway and married by a certain captain, lived in these parts; and \nhow this uncle was so valiant and ferocious that he shouldn't \nwonder if he were to follow the said captain to England, 'and shoot \nhim down in the street wherever he found him;' in the feasibility \nof which strong measure I, being for the moment rather prone to \ncontradiction, from feeling half asleep and very tired, declined to \nacquiesce:  assuring him that if the uncle did resort to it, or \ngratified any other little whim of the like nature, he would find \nhimself one morning prematurely throttled at the Old Bailey:  and \nthat he would do well to make his will before he went, as he would \ncertainly want it before he had been in Britain very long.\n\nOn we go, all night, and by-and-by the day begins to break, and \npresently the first cheerful rays of the warm sun come slanting on \nus brightly.  It sheds its light upon a miserable waste of sodden \ngrass, and dull trees, and squalid huts, whose aspect is forlorn \nand grievous in the last degree.  A very desert in the wood, whose \ngrowth of green is dank and noxious like that upon the top of \nstanding water:  where poisonous fungus grows in the rare footprint \non the oozy ground, and sprouts like witches' coral, from the \ncrevices in the cabin wall and floor; it is a hideous thing to lie \nupon the very threshold of a city.  But it was purchased years ago, \nand as the owner cannot be discovered, the State has been unable to \nreclaim it.  So there it remains, in the midst of cultivation and \nimprovement, like ground accursed, and made obscene and rank by \nsome great crime.\n\nWe reached Columbus shortly before seven o'clock, and stayed there, \nto refresh, that day and night:  having excellent apartments in a \nvery large unfinished hotel called the Neill House, which were \nrichly fitted with the polished wood of the black walnut, and \nopened on a handsome portico and stone verandah, like rooms in some \nItalian mansion.  The town is clean and pretty, and of course is \n'going to be' much larger.  It is the seat of the State legislature \nof Ohio, and lays claim, in consequence, to some consideration and \nimportance.\n\nThere being no stage-coach next day, upon the road we wished to \ntake, I hired 'an extra,' at a reasonable charge to carry us to \nTiffin; a small town from whence there is a railroad to Sandusky.  \nThis extra was an ordinary four-horse stage-coach, such as I have \ndescribed, changing horses and drivers, as the stage-coach would, \nbut was exclusively our own for the journey.  To ensure our having \nhorses at the proper stations, and being incommoded by no \nstrangers, the proprietors sent an agent on the box, who was to \naccompany us the whole way through; and thus attended, and bearing \nwith us, besides, a hamper full of savoury cold meats, and fruit, \nand wine, we started off again in high spirits, at half-past six \no'clock next morning, very much delighted to be by ourselves, and \ndisposed to enjoy even the roughest journey.\n\nIt was well for us, that we were in this humour, for the road we \nwent over that day, was certainly enough to have shaken tempers \nthat were not resolutely at Set Fair, down to some inches below \nStormy.  At one time we were all flung together in a heap at the \nbottom of the coach, and at another we were crushing our heads \nagainst the roof.  Now, one side was down deep in the mire, and we \nwere holding on to the other.  Now, the coach was lying on the \ntails of the two wheelers; and now it was rearing up in the air, in \na frantic state, with all four horses standing on the top of an \ninsurmountable eminence, looking coolly back at it, as though they \nwould say 'Unharness us.  It can't be done.'  The drivers on these \nroads, who certainly get over the ground in a manner which is quite \nmiraculous, so twist and turn the team about in forcing a passage, \ncorkscrew fashion, through the bogs and swamps, that it was quite a \ncommon circumstance on looking out of the window, to see the \ncoachman with the ends of a pair of reins in his hands, apparently \ndriving nothing, or playing at horses, and the leaders staring at \none unexpectedly from the back of the coach, as if they had some \nidea of getting up behind.  A great portion of the way was over \nwhat is called a corduroy road, which is made by throwing trunks of \ntrees into a marsh, and leaving them to settle there.  The very \nslightest of the jolts with which the ponderous carriage fell from \nlog to log, was enough, it seemed, to have dislocated all the bones \nin the human body.  It would be impossible to experience a similar \nset of sensations, in any other circumstances, unless perhaps in \nattempting to go up to the top of St. Paul's in an omnibus.  Never, \nnever once, that day, was the coach in any position, attitude, or \nkind of motion to which we are accustomed in coaches.  Never did it \nmake the smallest approach to one's experience of the proceedings \nof any sort of vehicle that goes on wheels.\n\nStill, it was a fine day, and the temperature was delicious, and \nthough we had left Summer behind us in the west, and were fast \nleaving Spring, we were moving towards Niagara and home.  We \nalighted in a pleasant wood towards the middle of the day, dined on \na fallen tree, and leaving our best fragments with a cottager, and \nour worst with the pigs (who swarm in this part of the country like \ngrains of sand on the sea-shore, to the great comfort of our \ncommissariat in Canada), we went forward again, gaily.\n\nAs night came on, the track grew narrower and narrower, until at \nlast it so lost itself among the trees, that the driver seemed to \nfind his way by instinct.  We had the comfort of knowing, at least, \nthat there was no danger of his falling asleep, for every now and \nthen a wheel would strike against an unseen stump with such a jerk, \nthat he was fain to hold on pretty tight and pretty quick, to keep \nhimself upon the box.  Nor was there any reason to dread the least \ndanger from furious driving, inasmuch as over that broken ground \nthe horses had enough to do to walk; as to shying, there was no \nroom for that; and a herd of wild elephants could not have run away \nin such a wood, with such a coach at their heels.  So we stumbled \nalong, quite satisfied.\n\nThese stumps of trees are a curious feature in American travelling.  \nThe varying illusions they present to the unaccustomed eye as it \ngrows dark, are quite astonishing in their number and reality.  \nNow, there is a Grecian urn erected in the centre of a lonely \nfield; now there is a woman weeping at a tomb; now a very \ncommonplace old gentleman in a white waistcoat, with a thumb thrust \ninto each arm-hole of his coat; now a student poring on a book; now \na crouching negro; now, a horse, a dog, a cannon, an armed man; a \nhunch-back throwing off his cloak and stepping forth into the \nlight.  They were often as entertaining to me as so many glasses in \na magic lantern, and never took their shapes at my bidding, but \nseemed to force themselves upon me, whether I would or no; and \nstrange to say, I sometimes recognised in them counterparts of \nfigures once familiar to me in pictures attached to childish books, \nforgotten long ago.\n\nIt soon became too dark, however, even for this amusement, and the \ntrees were so close together that their dry branches rattled \nagainst the coach on either side, and obliged us all to keep our \nheads within.  It lightened too, for three whole hours; each flash \nbeing very bright, and blue, and long; and as the vivid streaks \ncame darting in among the crowded branches, and the thunder rolled \ngloomily above the tree tops, one could scarcely help thinking that \nthere were better neighbourhoods at such a time than thick woods \nafforded.\n\nAt length, between ten and eleven o'clock at night, a few feeble \nlights appeared in the distance, and Upper Sandusky, an Indian \nvillage, where we were to stay till morning, lay before us.\n\nThey were gone to bed at the log Inn, which was the only house of \nentertainment in the place, but soon answered to our knocking, and \ngot some tea for us in a sort of kitchen or common room, tapestried \nwith old newspapers, pasted against the wall.  The bed-chamber to \nwhich my wife and I were shown, was a large, low, ghostly room; \nwith a quantity of withered branches on the hearth, and two doors \nwithout any fastening, opposite to each other, both opening on the \nblack night and wild country, and so contrived, that one of them \nalways blew the other open:  a novelty in domestic architecture, \nwhich I do not remember to have seen before, and which I was \nsomewhat disconcerted to have forced on my attention after getting \ninto bed, as I had a considerable sum in gold for our travelling \nexpenses, in my dressing-case.  Some of the luggage, however, piled \nagainst the panels, soon settled this difficulty, and my sleep \nwould not have been very much affected that night, I believe, \nthough it had failed to do so.\n\nMy Boston friend climbed up to bed, somewhere in the roof, where \nanother guest was already snoring hugely.  But being bitten beyond \nhis power of endurance, he turned out again, and fled for shelter \nto the coach, which was airing itself in front of the house.  This \nwas not a very politic step, as it turned out; for the pigs \nscenting him, and looking upon the coach as a kind of pie with some \nmanner of meat inside, grunted round it so hideously, that he was \nafraid to come out again, and lay there shivering, till morning.  \nNor was it possible to warm him, when he did come out, by means of \na glass of brandy:  for in Indian villages, the legislature, with a \nvery good and wise intention, forbids the sale of spirits by tavern \nkeepers.  The precaution, however, is quite inefficacious, for the \nIndians never fail to procure liquor of a worse kind, at a dearer \nprice, from travelling pedlars.\n\nIt is a settlement of the Wyandot Indians who inhabit this place.  \nAmong the company at breakfast was a mild old gentleman, who had \nbeen for many years employed by the United States Government in \nconducting negotiations with the Indians, and who had just \nconcluded a treaty with these people by which they bound \nthemselves, in consideration of a certain annual sum, to remove \nnext year to some land provided for them, west of the Mississippi, \nand a little way beyond St. Louis.  He gave me a moving account of \ntheir strong attachment to the familiar scenes of their infancy, \nand in particular to the burial-places of their kindred; and of \ntheir great reluctance to leave them.  He had witnessed many such \nremovals, and always with pain, though he knew that they departed \nfor their own good.  The question whether this tribe should go or \nstay, had been discussed among them a day or two before, in a hut \nerected for the purpose, the logs of which still lay upon the \nground before the inn.  When the speaking was done, the ayes and \nnoes were ranged on opposite sides, and every male adult voted in \nhis turn.  The moment the result was known, the minority (a large \none) cheerfully yielded to the rest, and withdrew all kind of \nopposition.\n\nWe met some of these poor Indians afterwards, riding on shaggy \nponies.  They were so like the meaner sort of gipsies, that if I \ncould have seen any of them in England, I should have concluded, as \na matter of course, that they belonged to that wandering and \nrestless people.\n\nLeaving this town directly after breakfast, we pushed forward \nagain, over a rather worse road than yesterday, if possible, and \narrived about noon at Tiffin, where we parted with the extra.  At \ntwo o'clock we took the railroad; the travelling on which was very \nslow, its construction being indifferent, and the ground wet and \nmarshy; and arrived at Sandusky in time to dine that evening.  We \nput up at a comfortable little hotel on the brink of Lake Erie, lay \nthere that night, and had no choice but to wait there next day, \nuntil a steamboat bound for Buffalo appeared.  The town, which was \nsluggish and uninteresting enough, was something like the back of \nan English watering-place, out of the season.\n\nOur host, who was very attentive and anxious to make us \ncomfortable, was a handsome middle-aged man, who had come to this \ntown from New England, in which part of the country he was \n'raised.'  When I say that he constantly walked in and out of the \nroom with his hat on; and stopped to converse in the same free-and-\neasy state; and lay down on our sofa, and pulled his newspaper out \nof his pocket, and read it at his ease; I merely mention these \ntraits as characteristic of the country:  not at all as being \nmatter of complaint, or as having been disagreeable to me.  I \nshould undoubtedly be offended by such proceedings at home, because \nthere they are not the custom, and where they are not, they would \nbe impertinencies; but in America, the only desire of a good-\nnatured fellow of this kind, is to treat his guests hospitably and \nwell; and I had no more right, and I can truly say no more \ndisposition, to measure his conduct by our English rule and \nstandard, than I had to quarrel with him for not being of the exact \nstature which would qualify him for admission into the Queen's \ngrenadier guards.  As little inclination had I to find fault with a \nfunny old lady who was an upper domestic in this establishment, and \nwho, when she came to wait upon us at any meal, sat herself down \ncomfortably in the most convenient chair, and producing a large pin \nto pick her teeth with, remained performing that ceremony, and \nsteadfastly regarding us meanwhile with much gravity and composure \n(now and then pressing us to eat a little more), until it was time \nto clear away.  It was enough for us, that whatever we wished done \nwas done with great civility and readiness, and a desire to oblige, \nnot only here, but everywhere else; and that all our wants were, in \ngeneral, zealously anticipated.\n\nWe were taking an early dinner at this house, on the day after our \narrival, which was Sunday, when a steamboat came in sight, and \npresently touched at the wharf.  As she proved to be on her way to \nBuffalo, we hurried on board with all speed, and soon left Sandusky \nfar behind us.\n\nShe was a large vessel of five hundred tons, and handsomely fitted \nup, though with high-pressure engines; which always conveyed that \nkind of feeling to me, which I should be likely to experience, I \nthink, if I had lodgings on the first-floor of a powder-mill.  She \nwas laden with flour, some casks of which commodity were stored \nupon the deck.  The captain coming up to have a little \nconversation, and to introduce a friend, seated himself astride of \none of these barrels, like a Bacchus of private life; and pulling a \ngreat clasp-knife out of his pocket, began to 'whittle' it as he \ntalked, by paring thin slices off the edges.  And he whittled with \nsuch industry and hearty good will, that but for his being called \naway very soon, it must have disappeared bodily, and left nothing \nin its place but grist and shavings.\n\nAfter calling at one or two flat places, with low dams stretching \nout into the lake, whereon were stumpy lighthouses, like windmills \nwithout sails, the whole looking like a Dutch vignette, we came at \nmidnight to Cleveland, where we lay all night, and until nine \no'clock next morning.\n\nI entertained quite a curiosity in reference to this place, from \nhaving seen at Sandusky a specimen of its literature in the shape \nof a newspaper, which was very strong indeed upon the subject of \nLord Ashburton's recent arrival at Washington, to adjust the points \nin dispute between the United States Government and Great Britain:  \ninforming its readers that as America had 'whipped' England in her \ninfancy, and whipped her again in her youth, so it was clearly \nnecessary that she must whip her once again in her maturity; and \npledging its credit to all True Americans, that if Mr. Webster did \nhis duty in the approaching negotiations, and sent the English Lord \nhome again in double quick time, they should, within two years, \nsing 'Yankee Doodle in Hyde Park, and Hail Columbia in the scarlet \ncourts of Westminster!'  I found it a pretty town, and had the \nsatisfaction of beholding the outside of the office of the journal \nfrom which I have just quoted.  I did not enjoy the delight of \nseeing the wit who indited the paragraph in question, but I have no \ndoubt he is a prodigious man in his way, and held in high repute by \na select circle.\n\nThere was a gentleman on board, to whom, as I unintentionally \nlearned through the thin partition which divided our state-room \nfrom the cabin in which he and his wife conversed together, I was \nunwittingly the occasion of very great uneasiness.  I don't know \nwhy or wherefore, but I appeared to run in his mind perpetually, \nand to dissatisfy him very much.  First of all I heard him say:  \nand the most ludicrous part of the business was, that he said it in \nmy very ear, and could not have communicated more directly with me, \nif he had leaned upon my shoulder, and whispered me:  'Boz is on \nboard still, my dear.'  After a considerable pause, he added, \ncomplainingly, 'Boz keeps himself very close;' which was true \nenough, for I was not very well, and was lying down, with a book.  \nI thought he had done with me after this, but I was deceived; for a \nlong interval having elapsed, during which I imagine him to have \nbeen turning restlessly from side to side, and trying to go to \nsleep; he broke out again, with 'I suppose THAT Boz will be writing \na book by-and-by, and putting all our names in it!' at which \nimaginary consequence of being on board a boat with Boz, he \ngroaned, and became silent.\n\nWe called at the town of Erie, at eight o'clock that night, and lay \nthere an hour.  Between five and six next morning, we arrived at \nBuffalo, where we breakfasted; and being too near the Great Falls \nto wait patiently anywhere else, we set off by the train, the same \nmorning at nine o'clock, to Niagara.\n\nIt was a miserable day; chilly and raw; a damp mist falling; and \nthe trees in that northern region quite bare and wintry.  Whenever \nthe train halted, I listened for the roar; and was constantly \nstraining my eyes in the direction where I knew the Falls must be, \nfrom seeing the river rolling on towards them; every moment \nexpecting to behold the spray.  Within a few minutes of our \nstopping, not before, I saw two great white clouds rising up slowly \nand majestically from the depths of the earth.  That was all.  At \nlength we alighted:  and then for the first time, I heard the \nmighty rush of water, and felt the ground tremble underneath my \nfeet.\n\nThe bank is very steep, and was slippery with rain, and half-melted \nice.  I hardly know how I got down, but I was soon at the bottom, \nand climbing, with two English officers who were crossing and had \njoined me, over some broken rocks, deafened by the noise, half-\nblinded by the spray, and wet to the skin.  We were at the foot of \nthe American Fall.  I could see an immense torrent of water tearing \nheadlong down from some great height, but had no idea of shape, or \nsituation, or anything but vague immensity.\n\nWhen we were seated in the little ferry-boat, and were crossing the \nswollen river immediately before both cataracts, I began to feel \nwhat it was:  but I was in a manner stunned, and unable to \ncomprehend the vastness of the scene.  It was not until I came on \nTable Rock, and looked - Great Heaven, on what a fall of bright-\ngreen water! - that it came upon me in its full might and majesty.\n\nThen, when I felt how near to my Creator I was standing, the first \neffect, and the enduring one - instant and lasting - of the \ntremendous spectacle, was Peace.  Peace of Mind, tranquillity, calm \nrecollections of the Dead, great thoughts of Eternal Rest and \nHappiness:  nothing of gloom or terror.  Niagara was at once \nstamped upon my heart, an Image of Beauty; to remain there, \nchangeless and indelible, until its pulses cease to beat, for ever.\n\nOh, how the strife and trouble of daily life receded from my view, \nand lessened in the distance, during the ten memorable days we \npassed on that Enchanted Ground!  What voices spoke from out the \nthundering water; what faces, faded from the earth, looked out upon \nme from its gleaming depths; what Heavenly promise glistened in \nthose angels' tears, the drops of many hues, that showered around, \nand twined themselves about the gorgeous arches which the changing \nrainbows made!\n\nI never stirred in all that time from the Canadian side, whither I \nhad gone at first.  I never crossed the river again; for I knew \nthere were people on the other shore, and in such a place it is \nnatural to shun strange company.  To wander to and fro all day, and \nsee the cataracts from all points of view; to stand upon the edge \nof the great Horse-Shoe Fall, marking the hurried water gathering \nstrength as it approached the verge, yet seeming, too, to pause \nbefore it shot into the gulf below; to gaze from the river's level \nup at the torrent as it came streaming down; to climb the \nneighbouring heights and watch it through the trees, and see the \nwreathing water in the rapids hurrying on to take its fearful \nplunge; to linger in the shadow of the solemn rocks three miles \nbelow; watching the river as, stirred by no visible cause, it \nheaved and eddied and awoke the echoes, being troubled yet, far \ndown beneath the surface, by its giant leap; to have Niagara before \nme, lighted by the sun and by the moon, red in the day's decline, \nand grey as evening slowly fell upon it; to look upon it every day, \nand wake up in the night and hear its ceaseless voice:  this was \nenough.\n\nI think in every quiet season now, still do those waters roll and \nleap, and roar and tumble, all day long; still are the rainbows \nspanning them, a hundred feet below.  Still, when the sun is on \nthem, do they shine and glow like molten gold.  Still, when the day \nis gloomy, do they fall like snow, or seem to crumble away like the \nfront of a great chalk cliff, or roll down the rock like dense \nwhite smoke.  But always does the mighty stream appear to die as it \ncomes down, and always from its unfathomable grave arises that \ntremendous ghost of spray and mist which is never laid:  which has \nhaunted this place with the same dread solemnity since Darkness \nbrooded on the deep, and that first flood before the Deluge - Light \n- came rushing on Creation at the word of God.\n\n\n\nCHAPTER XV - IN CANADA; TORONTO; KINGSTON; MONTREAL; QUEBEC; ST. \nJOHN'S.  IN THE UNITED STATES AGAIN; LEBANON; THE SHAKER VILLAGE; \nWEST POINT\n\n\n\nI wish to abstain from instituting any comparison, or drawing any \nparallel whatever, between the social features of the United States \nand those of the British Possessions in Canada.  For this reason, I \nshall confine myself to a very brief account of our journeyings in \nthe latter territory.\n\nBut before I leave Niagara, I must advert to one disgusting \ncircumstance which can hardly have escaped the observation of any \ndecent traveller who has visited the Falls.\n\nOn Table Rock, there is a cottage belonging to a Guide, where \nlittle relics of the place are sold, and where visitors register \ntheir names in a book kept for the purpose.  On the wall of the \nroom in which a great many of these volumes are preserved, the \nfollowing request is posted:  'Visitors will please not copy nor \nextract the remarks and poetical effusions from the registers and \nalbums kept here.'\n\nBut for this intimation, I should have let them lie upon the tables \non which they were strewn with careful negligence, like books in a \ndrawing-room:  being quite satisfied with the stupendous silliness \nof certain stanzas with an anti-climax at the end of each, which \nwere framed and hung up on the wall.  Curious, however, after \nreading this announcement, to see what kind of morsels were so \ncarefully preserved, I turned a few leaves, and found them scrawled \nall over with the vilest and the filthiest ribaldry that ever human \nhogs delighted in.\n\nIt is humiliating enough to know that there are among men brutes so \nobscene and worthless, that they can delight in laying their \nmiserable profanations upon the very steps of Nature's greatest \naltar.  But that these should be hoarded up for the delight of \ntheir fellow-swine, and kept in a public place where any eyes may \nsee them, is a disgrace to the English language in which they are \nwritten (though I hope few of these entries have been made by \nEnglishmen), and a reproach to the English side, on which they are \npreserved.\n\nThe quarters of our soldiers at Niagara, are finely and airily \nsituated.  Some of them are large detached houses on the plain \nabove the Falls, which were originally designed for hotels; and in \nthe evening time, when the women and children were leaning over the \nbalconies watching the men as they played at ball and other games \nupon the grass before the door, they often presented a little \npicture of cheerfulness and animation which made it quite a \npleasure to pass that way.\n\nAt any garrisoned point where the line of demarcation between one \ncountry and another is so very narrow as at Niagara, desertion from \nthe ranks can scarcely fail to be of frequent occurrence:  and it \nmay be reasonably supposed that when the soldiers entertain the \nwildest and maddest hopes of the fortune and independence that \nawait them on the other side, the impulse to play traitor, which \nsuch a place suggests to dishonest minds, is not weakened.  But it \nvery rarely happens that the men who do desert, are happy or \ncontented afterwards; and many instances have been known in which \nthey have confessed their grievous disappointment, and their \nearnest desire to return to their old service if they could but be \nassured of pardon, or lenient treatment.  Many of their comrades, \nnotwithstanding, do the like, from time to time; and instances of \nloss of life in the effort to cross the river with this object, are \nfar from being uncommon.  Several men were drowned in the attempt \nto swim across, not long ago; and one, who had the madness to trust \nhimself upon a table as a raft, was swept down to the whirlpool, \nwhere his mangled body eddied round and round some days.\n\nI am inclined to think that the noise of the Falls is very much \nexaggerated; and this will appear the more probable when the depth \nof the great basin in which the water is received, is taken into \naccount.  At no time during our stay there, was the wind at all \nhigh or boisterous, but we never heard them, three miles off, even \nat the very quiet time of sunset, though we often tried.\n\nQueenston, at which place the steamboats start for Toronto (or I \nshould rather say at which place they call, for their wharf is at \nLewiston, on the opposite shore), is situated in a delicious \nvalley, through which the Niagara river, in colour a very deep \ngreen, pursues its course.  It is approached by a road that takes \nits winding way among the heights by which the town is sheltered; \nand seen from this point is extremely beautiful and picturesque.  \nOn the most conspicuous of these heights stood a monument erected \nby the Provincial Legislature in memory of General Brock, who was \nslain in a battle with the American forces, after having won the \nvictory.  Some vagabond, supposed to be a fellow of the name of \nLett, who is now, or who lately was, in prison as a felon, blew up \nthis monument two years ago, and it is now a melancholy ruin, with \na long fragment of iron railing hanging dejectedly from its top, \nand waving to and fro like a wild ivy branch or broken vine stem.  \nIt is of much higher importance than it may seem, that this statue \nshould be repaired at the public cost, as it ought to have been \nlong ago.  Firstly, because it is beneath the dignity of England to \nallow a memorial raised in honour of one of her defenders, to \nremain in this condition, on the very spot where he died.  \nSecondly, because the sight of it in its present state, and the \nrecollection of the unpunished outrage which brought it to this \npass, is not very likely to soothe down border feelings among \nEnglish subjects here, or compose their border quarrels and \ndislikes.\n\nI was standing on the wharf at this place, watching the passengers \nembarking in a steamboat which preceded that whose coming we \nawaited, and participating in the anxiety with which a sergeant's \nwife was collecting her few goods together - keeping one distracted \neye hard upon the porters, who were hurrying them on board, and the \nother on a hoopless washing-tub for which, as being the most \nutterly worthless of all her movables, she seemed to entertain \nparticular affection - when three or four soldiers with a recruit \ncame up and went on board.\n\nThe recruit was a likely young fellow enough, strongly built and \nwell made, but by no means sober:  indeed he had all the air of a \nman who had been more or less drunk for some days.  He carried a \nsmall bundle over his shoulder, slung at the end of a walking-\nstick, and had a short pipe in his mouth.  He was as dusty and \ndirty as recruits usually are, and his shoes betokened that he had \ntravelled on foot some distance, but he was in a very jocose state, \nand shook hands with this soldier, and clapped that one on the \nback, and talked and laughed continually, like a roaring idle dog \nas he was.\n\nThe soldiers rather laughed at this blade than with him:  seeming \nto say, as they stood straightening their canes in their hands, and \nlooking coolly at him over their glazed stocks, 'Go on, my boy, \nwhile you may! you'll know better by-and-by:' when suddenly the \nnovice, who had been backing towards the gangway in his noisy \nmerriment, fell overboard before their eyes, and splashed heavily \ndown into the river between the vessel and the dock.\n\nI never saw such a good thing as the change that came over these \nsoldiers in an instant.  Almost before the man was down, their \nprofessional manner, their stiffness and constraint, were gone, and \nthey were filled with the most violent energy.  In less time than \nis required to tell it, they had him out again, feet first, with \nthe tails of his coat flapping over his eyes, everything about him \nhanging the wrong way, and the water streaming off at every thread \nin his threadbare dress.  But the moment they set him upright and \nfound that he was none the worse, they were soldiers again, looking \nover their glazed stocks more composedly than ever.\n\nThe half-sobered recruit glanced round for a moment, as if his \nfirst impulse were to express some gratitude for his preservation, \nbut seeing them with this air of total unconcern, and having his \nwet pipe presented to him with an oath by the soldier who had been \nby far the most anxious of the party, he stuck it in his mouth, \nthrust his hands into his moist pockets, and without even shaking \nthe water off his clothes, walked on board whistling; not to say as \nif nothing had happened, but as if he had meant to do it, and it \nhad been a perfect success.\n\nOur steamboat came up directly this had left the wharf, and soon \nbore us to the mouth of the Niagara; where the stars and stripes of \nAmerica flutter on one side and the Union Jack of England on the \nother:  and so narrow is the space between them that the sentinels \nin either fort can often hear the watchword of the other country \ngiven.  Thence we emerged on Lake Ontario, an inland sea; and by \nhalf-past six o'clock were at Toronto.\n\nThe country round this town being very flat, is bare of scenic \ninterest; but the town itself is full of life and motion, bustle, \nbusiness, and improvement.  The streets are well paved, and lighted \nwith gas; the houses are large and good; the shops excellent.  Many \nof them have a display of goods in their windows, such as may be \nseen in thriving county towns in England; and there are some which \nwould do no discredit to the metropolis itself.  There is a good \nstone prison here; and there are, besides, a handsome church, a \ncourt-house, public offices, many commodious private residences, \nand a government observatory for noting and recording the magnetic \nvariations.  In the College of Upper Canada, which is one of the \npublic establishments of the city, a sound education in every \ndepartment of polite learning can be had, at a very moderate \nexpense:  the annual charge for the instruction of each pupil, not \nexceeding nine pounds sterling.  It has pretty good endowments in \nthe way of land, and is a valuable and useful institution.\n\nThe first stone of a new college had been laid but a few days \nbefore, by the Governor General.  It will be a handsome, spacious \nedifice, approached by a long avenue, which is already planted and \nmade available as a public walk.  The town is well adapted for \nwholesome exercise at all seasons, for the footways in the \nthoroughfares which lie beyond the principal street, are planked \nlike floors, and kept in very good and clean repair.\n\nIt is a matter of deep regret that political differences should \nhave run high in this place, and led to most discreditable and \ndisgraceful results.  It is not long since guns were discharged \nfrom a window in this town at the successful candidates in an \nelection, and the coachman of one of them was actually shot in the \nbody, though not dangerously wounded.  But one man was killed on \nthe same occasion; and from the very window whence he received his \ndeath, the very flag which shielded his murderer (not only in the \ncommission of his crime, but from its consequences), was displayed \nagain on the occasion of the public ceremony performed by the \nGovernor General, to which I have just adverted.  Of all the \ncolours in the rainbow, there is but one which could be so \nemployed:  I need not say that flag was orange.\n\nThe time of leaving Toronto for Kingston is noon.  By eight o'clock \nnext morning, the traveller is at the end of his journey, which is \nperformed by steamboat upon Lake Ontario, calling at Port Hope and \nCoburg, the latter a cheerful, thriving little town.  Vast \nquantities of flour form the chief item in the freight of these \nvessels.  We had no fewer than one thousand and eighty barrels on \nboard, between Coburg and Kingston.\n\nThe latter place, which is now the seat of government in Canada, is \na very poor town, rendered still poorer in the appearance of its \nmarket-place by the ravages of a recent fire.  Indeed, it may be \nsaid of Kingston, that one half of it appears to be burnt down, and \nthe other half not to be built up.  The Government House is neither \nelegant nor commodious, yet it is almost the only house of any \nimportance in the neighbourhood.\n\nThere is an admirable jail here, well and wisely governed, and \nexcellently regulated, in every respect.  The men were employed as \nshoemakers, ropemakers, blacksmiths, tailors, carpenters, and \nstonecutters; and in building a new prison, which was pretty far \nadvanced towards completion.  The female prisoners were occupied in \nneedlework.  Among them was a beautiful girl of twenty, who had \nbeen there nearly three years.  She acted as bearer of secret \ndespatches for the self-styled Patriots on Navy Island, during the \nCanadian Insurrection:  sometimes dressing as a girl, and carrying \nthem in her stays; sometimes attiring herself as a boy, and \nsecreting them in the lining of her hat.  In the latter character \nshe always rode as a boy would, which was nothing to her, for she \ncould govern any horse that any man could ride, and could drive \nfour-in-hand with the best whip in those parts.  Setting forth on \none of her patriotic missions, she appropriated to herself the \nfirst horse she could lay her hands on; and this offence had \nbrought her where I saw her.  She had quite a lovely face, though, \nas the reader may suppose from this sketch of her history, there \nwas a lurking devil in her bright eye, which looked out pretty \nsharply from between her prison bars.\n\nThere is a bomb-proof fort here of great strength, which occupies a \nbold position, and is capable, doubtless, of doing good service; \nthough the town is much too close upon the frontier to be long \nheld, I should imagine, for its present purpose in troubled times.  \nThere is also a small navy-yard, where a couple of Government \nsteamboats were building, and getting on vigorously.\n\nWe left Kingston for Montreal on the tenth of May, at half-past \nnine in the morning, and proceeded in a steamboat down the St. \nLawrence river.  The beauty of this noble stream at almost any \npoint, but especially in the commencement of this journey when it \nwinds its way among the thousand Islands, can hardly be imagined.  \nThe number and constant successions of these islands, all green and \nrichly wooded; their fluctuating sizes, some so large that for half \nan hour together one among them will appear as the opposite bank of \nthe river, and some so small that they are mere dimples on its \nbroad bosom; their infinite variety of shapes; and the numberless \ncombinations of beautiful forms which the trees growing on them \npresent:  all form a picture fraught with uncommon interest and \npleasure.\n\nIn the afternoon we shot down some rapids where the river boiled \nand bubbled strangely, and where the force and headlong violence of \nthe current were tremendous.  At seven o'clock we reached \nDickenson's Landing, whence travellers proceed for two or three \nhours by stage-coach:  the navigation of the river being rendered \nso dangerous and difficult in the interval, by rapids, that \nsteamboats do not make the passage.  The number and length of those \nPORTAGES, over which the roads are bad, and the travelling slow, \nrender the way between the towns of Montreal and Kingston, somewhat \ntedious.\n\nOur course lay over a wide, uninclosed tract of country at a little \ndistance from the river-side, whence the bright warning lights on \nthe dangerous parts of the St. Lawrence shone vividly.  The night \nwas dark and raw, and the way dreary enough.  It was nearly ten \no'clock when we reached the wharf where the next steamboat lay; and \nwent on board, and to bed.\n\nShe lay there all night, and started as soon as it was day.  The \nmorning was ushered in by a violent thunderstorm, and was very wet, \nbut gradually improved and brightened up.  Going on deck after \nbreakfast, I was amazed to see floating down with the stream, a \nmost gigantic raft, with some thirty or forty wooden houses upon \nit, and at least as many flag-masts, so that it looked like a \nnautical street.  I saw many of these rafts afterwards, but never \none so large.  All the timber, or 'lumber,' as it is called in \nAmerica, which is brought down the St. Lawrence, is floated down in \nthis manner.  When the raft reaches its place of destination, it is \nbroken up; the materials are sold; and the boatmen return for more.\n\nAt eight we landed again, and travelled by a stage-coach for four \nhours through a pleasant and well-cultivated country, perfectly \nFrench in every respect:  in the appearance of the cottages; the \nair, language, and dress of the peasantry; the sign-boards on the \nshops and taverns:  and the Virgin's shrines, and crosses, by the \nwayside.  Nearly every common labourer and boy, though he had no \nshoes to his feet, wore round his waist a sash of some bright \ncolour:  generally red:  and the women, who were working in the \nfields and gardens, and doing all kinds of husbandry, wore, one and \nall, great flat straw hats with most capacious brims.  There were \nCatholic Priests and Sisters of Charity in the village streets; and \nimages of the Saviour at the corners of cross-roads, and in other \npublic places.\n\nAt noon we went on board another steamboat, and reached the village \nof Lachine, nine miles from Montreal, by three o'clock.  There, we \nleft the river, and went on by land.\n\nMontreal is pleasantly situated on the margin of the St. Lawrence, \nand is backed by some bold heights, about which there are charming \nrides and drives.  The streets are generally narrow and irregular, \nas in most French towns of any age; but in the more modern parts of \nthe city, they are wide and airy.  They display a great variety of \nvery good shops; and both in the town and suburbs there are many \nexcellent private dwellings.  The granite quays are remarkable for \ntheir beauty, solidity, and extent.\n\nThere is a very large Catholic cathedral here, recently erected \nwith two tall spires, of which one is yet unfinished.  In the open \nspace in front of this edifice, stands a solitary, grim-looking, \nsquare brick tower, which has a quaint and remarkable appearance, \nand which the wiseacres of the place have consequently determined \nto pull down immediately.  The Government House is very superior to \nthat at Kingston, and the town is full of life and bustle.  In one \nof the suburbs is a plank road - not footpath - five or six miles \nlong, and a famous road it is too.  All the rides in the vicinity \nwere made doubly interesting by the bursting out of spring, which \nis here so rapid, that it is but a day's leap from barren winter, \nto the blooming youth of summer.\n\nThe steamboats to Quebec perform the journey in the night; that is \nto say, they leave Montreal at six in the evening, and arrive at \nQuebec at six next morning.  We made this excursion during our stay \nin Montreal (which exceeded a fortnight), and were charmed by its \ninterest and beauty.\n\nThe impression made upon the visitor by this Gibraltar of America:  \nits giddy heights; its citadel suspended, as it were, in the air; \nits picturesque steep streets and frowning gateways; and the \nsplendid views which burst upon the eye at every turn:  is at once \nunique and lasting.\n\nIt is a place not to be forgotten or mixed up in the mind with \nother places, or altered for a moment in the crowd of scenes a \ntraveller can recall.  Apart from the realities of this most \npicturesque city, there are associations clustering about it which \nwould make a desert rich in interest.  The dangerous precipice \nalong whose rocky front, Wolfe and his brave companions climbed to \nglory; the Plains of Abraham, where he received his mortal wound; \nthe fortress so chivalrously defended by Montcalm; and his \nsoldier's grave, dug for him while yet alive, by the bursting of a \nshell; are not the least among them, or among the gallant incidents \nof history.  That is a noble Monument too, and worthy of two great \nnations, which perpetuates the memory of both brave generals, and \non which their names are jointly written.\n\nThe city is rich in public institutions and in Catholic churches \nand charities, but it is mainly in the prospect from the site of \nthe Old Government House, and from the Citadel, that its surpassing \nbeauty lies.  The exquisite expanse of country, rich in field and \nforest, mountain-height and water, which lies stretched out before \nthe view, with miles of Canadian villages, glancing in long white \nstreaks, like veins along the landscape; the motley crowd of \ngables, roofs, and chimney tops in the old hilly town immediately \nat hand; the beautiful St. Lawrence sparkling and flashing in the \nsunlight; and the tiny ships below the rock from which you gaze, \nwhose distant rigging looks like spiders' webs against the light, \nwhile casks and barrels on their decks dwindle into toys, and busy \nmariners become so many puppets; all this, framed by a sunken \nwindow in the fortress and looked at from the shadowed room within, \nforms one of the brightest and most enchanting pictures that the \neye can rest upon.\n\nIn the spring of the year, vast numbers of emigrants who have newly \narrived from England or from Ireland, pass between Quebec and \nMontreal on their way to the backwoods and new settlements of \nCanada.  If it be an entertaining lounge (as I very often found it) \nto take a morning stroll upon the quay at Montreal, and see them \ngrouped in hundreds on the public wharfs about their chests and \nboxes, it is matter of deep interest to be their fellow-passenger \non one of these steamboats, and mingling with the concourse, see \nand hear them unobserved.\n\nThe vessel in which we returned from Quebec to Montreal was crowded \nwith them, and at night they spread their beds between decks (those \nwho had beds, at least), and slept so close and thick about our \ncabin door, that the passage to and fro was quite blocked up.  They \nwere nearly all English; from Gloucestershire the greater part; and \nhad had a long winter-passage out; but it was wonderful to see how \nclean the children had been kept, and how untiring in their love \nand self-denial all the poor parents were.\n\nCant as we may, and as we shall to the end of all things, it is \nvery much harder for the poor to be virtuous than it is for the \nrich; and the good that is in them, shines the brighter for it.  In \nmany a noble mansion lives a man, the best of husbands and of \nfathers, whose private worth in both capacities is justly lauded to \nthe skies.  But bring him here, upon this crowded deck.  Strip from \nhis fair young wife her silken dress and jewels, unbind her braided \nhair, stamp early wrinkles on her brow, pinch her pale cheek with \ncare and much privation, array her faded form in coarsely patched \nattire, let there be nothing but his love to set her forth or deck \nher out, and you shall put it to the proof indeed.  So change his \nstation in the world, that he shall see in those young things who \nclimb about his knee:  not records of his wealth and name:  but \nlittle wrestlers with him for his daily bread; so many poachers on \nhis scanty meal; so many units to divide his every sum of comfort, \nand farther to reduce its small amount.  In lieu of the endearments \nof childhood in its sweetest aspect, heap upon him all its pains \nand wants, its sicknesses and ills, its fretfulness, caprice, and \nquerulous endurance:  let its prattle be, not of engaging infant \nfancies, but of cold, and thirst, and hunger:  and if his fatherly \naffection outlive all this, and he be patient, watchful, tender; \ncareful of his children's lives, and mindful always of their joys \nand sorrows; then send him back to Parliament, and Pulpit, and to \nQuarter Sessions, and when he hears fine talk of the depravity of \nthose who live from hand to mouth, and labour hard to do it, let \nhim speak up, as one who knows, and tell those holders forth that \nthey, by parallel with such a class, should be High Angels in their \ndaily lives, and lay but humble siege to Heaven at last.\n\nWhich of us shall say what he would be, if such realities, with \nsmall relief or change all through his days, were his!  Looking \nround upon these people:  far from home, houseless, indigent, \nwandering, weary with travel and hard living:  and seeing how \npatiently they nursed and tended their young children:  how they \nconsulted ever their wants first, then half supplied their own; \nwhat gentle ministers of hope and faith the women were; how the men \nprofited by their example; and how very, very seldom even a \nmoment's petulance or harsh complaint broke out among them:  I felt \na stronger love and honour of my kind come glowing on my heart, and \nwished to God there had been many Atheists in the better part of \nhuman nature there, to read this simple lesson in the book of Life.\n\n* * * * * *\n\nWe left Montreal for New York again, on the thirtieth of May, \ncrossing to La Prairie, on the opposite shore of the St. Lawrence, \nin a steamboat; we then took the railroad to St. John's, which is \non the brink of Lake Champlain.  Our last greeting in Canada was \nfrom the English officers in the pleasant barracks at that place (a \nclass of gentlemen who had made every hour of our visit memorable \nby their hospitality and friendship); and with 'Rule Britannia' \nsounding in our ears, soon left it far behind.\n\nBut Canada has held, and always will retain, a foremost place in my \nremembrance.  Few Englishmen are prepared to find it what it is.  \nAdvancing quietly; old differences settling down, and being fast \nforgotten; public feeling and private enterprise alike in a sound \nand wholesome state; nothing of flush or fever in its system, but \nhealth and vigour throbbing in its steady pulse:  it is full of \nhope and promise.  To me - who had been accustomed to think of it \nas something left behind in the strides of advancing society, as \nsomething neglected and forgotten, slumbering and wasting in its \nsleep - the demand for labour and the rates of wages; the busy \nquays of Montreal; the vessels taking in their cargoes, and \ndischarging them; the amount of shipping in the different ports; \nthe commerce, roads, and public works, all made TO LAST; the \nrespectability and character of the public journals; and the amount \nof rational comfort and happiness which honest industry may earn:  \nwere very great surprises.  The steamboats on the lakes, in their \nconveniences, cleanliness, and safety; in the gentlemanly character \nand bearing of their captains; and in the politeness and perfect \ncomfort of their social regulations; are unsurpassed even by the \nfamous Scotch vessels, deservedly so much esteemed at home.  The \ninns are usually bad; because the custom of boarding at hotels is \nnot so general here as in the States, and the British officers, who \nform a large portion of the society of every town, live chiefly at \nthe regimental messes:  but in every other respect, the traveller \nin Canada will find as good provision for his comfort as in any \nplace I know.\n\nThere is one American boat - the vessel which carried us on Lake \nChamplain, from St. John's to Whitehall - which I praise very \nhighly, but no more than it deserves, when I say that it is \nsuperior even to that in which we went from Queenston to Toronto, \nor to that in which we travelled from the latter place to Kingston, \nor I have no doubt I may add to any other in the world.  This \nsteamboat, which is called the Burlington, is a perfectly exquisite \nachievement of neatness, elegance, and order.  The decks are \ndrawing-rooms; the cabins are boudoirs, choicely furnished and \nadorned with prints, pictures, and musical instruments; every nook \nand corner in the vessel is a perfect curiosity of graceful comfort \nand beautiful contrivance.  Captain Sherman, her commander, to \nwhose ingenuity and excellent taste these results are solely \nattributable, has bravely and worthily distinguished himself on \nmore than one trying occasion:  not least among them, in having the \nmoral courage to carry British troops, at a time (during the \nCanadian rebellion) when no other conveyance was open to them.  He \nand his vessel are held in universal respect, both by his own \ncountrymen and ours; and no man ever enjoyed the popular esteem, \nwho, in his sphere of action, won and wore it better than this \ngentleman.\n\nBy means of this floating palace we were soon in the United States \nagain, and called that evening at Burlington; a pretty town, where \nwe lay an hour or so.  We reached Whitehall, where we were to \ndisembark, at six next morning; and might have done so earlier, but \nthat these steamboats lie by for some hours in the night, in \nconsequence of the lake becoming very narrow at that part of the \njourney, and difficult of navigation in the dark.  Its width is so \ncontracted at one point, indeed, that they are obliged to warp \nround by means of a rope.\n\nAfter breakfasting at Whitehall, we took the stage-coach for \nAlbany:  a large and busy town, where we arrived between five and \nsix o'clock that afternoon; after a very hot day's journey, for we \nwere now in the height of summer again.  At seven we started for \nNew York on board a great North River steamboat, which was so \ncrowded with passengers that the upper deck was like the box lobby \nof a theatre between the pieces, and the lower one like Tottenham \nCourt Road on a Saturday night.  But we slept soundly, \nnotwithstanding, and soon after five o'clock next morning reached \nNew York.\n\nTarrying here, only that day and night, to recruit after our late \nfatigues, we started off once more upon our last journey in \nAmerica.  We had yet five days to spare before embarking for \nEngland, and I had a great desire to see 'the Shaker Village,' \nwhich is peopled by a religious sect from whom it takes its name.\n\nTo this end, we went up the North River again, as far as the town \nof Hudson, and there hired an extra to carry us to Lebanon, thirty \nmiles distant:  and of course another and a different Lebanon from \nthat village where I slept on the night of the Prairie trip.\n\nThe country through which the road meandered, was rich and \nbeautiful; the weather very fine; and for many miles the Kaatskill \nmountains, where Rip Van Winkle and the ghostly Dutchmen played at \nninepins one memorable gusty afternoon, towered in the blue \ndistance, like stately clouds.  At one point, as we ascended a \nsteep hill, athwart whose base a railroad, yet constructing, took \nits course, we came upon an Irish colony.  With means at hand of \nbuilding decent cabins, it was wonderful to see how clumsy, rough, \nand wretched, its hovels were.  The best were poor protection from \nthe weather the worst let in the wind and rain through wide \nbreaches in the roofs of sodden grass, and in the walls of mud; \nsome had neither door nor window; some had nearly fallen down, and \nwere imperfectly propped up by stakes and poles; all were ruinous \nand filthy.  Hideously ugly old women and very buxom young ones, \npigs, dogs, men, children, babies, pots, kettles, dung-hills, vile \nrefuse, rank straw, and standing water, all wallowing together in \nan inseparable heap, composed the furniture of every dark and dirty \nhut.\n\nBetween nine and ten o'clock at night, we arrived at Lebanon which \nis renowned for its warm baths, and for a great hotel, well \nadapted, I have no doubt, to the gregarious taste of those seekers \nafter health or pleasure who repair here, but inexpressibly \ncomfortless to me.  We were shown into an immense apartment, \nlighted by two dim candles, called the drawing-room:  from which \nthere was a descent by a flight of steps, to another vast desert, \ncalled the dining-room:  our bed-chambers were among certain long \nrows of little white-washed cells, which opened from either side of \na dreary passage; and were so like rooms in a prison that I half \nexpected to be locked up when I went to bed, and listened \ninvoluntarily for the turning of the key on the outside.  There \nneed be baths somewhere in the neighbourhood, for the other washing \narrangements were on as limited a scale as I ever saw, even in \nAmerica:  indeed, these bedrooms were so very bare of even such \ncommon luxuries as chairs, that I should say they were not provided \nwith enough of anything, but that I bethink myself of our having \nbeen most bountifully bitten all night.\n\nThe house is very pleasantly situated, however, and we had a good \nbreakfast.  That done, we went to visit our place of destination, \nwhich was some two miles off, and the way to which was soon \nindicated by a finger-post, whereon was painted, 'To the Shaker \nVillage.'\n\nAs we rode along, we passed a party of Shakers, who were at work \nupon the road; who wore the broadest of all broad-brimmed hats; and \nwere in all visible respects such very wooden men, that I felt \nabout as much sympathy for them, and as much interest in them, as \nif they had been so many figure-heads of ships.  Presently we came \nto the beginning of the village, and alighting at the door of a \nhouse where the Shaker manufactures are sold, and which is the \nheadquarters of the elders, requested permission to see the Shaker \nworship.\n\nPending the conveyance of this request to some person in authority, \nwe walked into a grim room, where several grim hats were hanging on \ngrim pegs, and the time was grimly told by a grim clock which \nuttered every tick with a kind of struggle, as if it broke the grim \nsilence reluctantly, and under protest.  Ranged against the wall \nwere six or eight stiff, high-backed chairs, and they partook so \nstrongly of the general grimness that one would much rather have \nsat on the floor than incurred the smallest obligation to any of \nthem.\n\nPresently, there stalked into this apartment, a grim old Shaker, \nwith eyes as hard, and dull, and cold, as the great round metal \nbuttons on his coat and waistcoat; a sort of calm goblin.  Being \ninformed of our desire, he produced a newspaper wherein the body of \nelders, whereof he was a member, had advertised but a few days \nbefore, that in consequence of certain unseemly interruptions which \ntheir worship had received from strangers, their chapel was closed \nto the public for the space of one year.\n\nAs nothing was to be urged in opposition to this reasonable \narrangement, we requested leave to make some trifling purchases of \nShaker goods; which was grimly conceded.  We accordingly repaired \nto a store in the same house and on the opposite side of the \npassage, where the stock was presided over by something alive in a \nrusset case, which the elder said was a woman; and which I suppose \nWAS a woman, though I should not have suspected it.\n\nOn the opposite side of the road was their place of worship:  a \ncool, clean edifice of wood, with large windows and green blinds:  \nlike a spacious summer-house.  As there was no getting into this \nplace, and nothing was to be done but walk up and down, and look at \nit and the other buildings in the village (which were chiefly of \nwood, painted a dark red like English barns, and composed of many \nstories like English factories), I have nothing to communicate to \nthe reader, beyond the scanty results I gleaned the while our \npurchases were making,\n\nThese people are called Shakers from their peculiar form of \nadoration, which consists of a dance, performed by the men and \nwomen of all ages, who arrange themselves for that purpose in \nopposite parties:  the men first divesting themselves of their hats \nand coats, which they gravely hang against the wall before they \nbegin; and tying a ribbon round their shirt-sleeves, as though they \nwere going to be bled.  They accompany themselves with a droning, \nhumming noise, and dance until they are quite exhausted, \nalternately advancing and retiring in a preposterous sort of trot.  \nThe effect is said to be unspeakably absurd:  and if I may judge \nfrom a print of this ceremony which I have in my possession; and \nwhich I am informed by those who have visited the chapel, is \nperfectly accurate; it must be infinitely grotesque.\n\nThey are governed by a woman, and her rule is understood to be \nabsolute, though she has the assistance of a council of elders.  \nShe lives, it is said, in strict seclusion, in certain rooms above \nthe chapel, and is never shown to profane eyes.  If she at all \nresemble the lady who presided over the store, it is a great \ncharity to keep her as close as possible, and I cannot too strongly \nexpress my perfect concurrence in this benevolent proceeding.\n\nAll the possessions and revenues of the settlement are thrown into \na common stock, which is managed by the elders.  As they have made \nconverts among people who were well to do in the world, and are \nfrugal and thrifty, it is understood that this fund prospers:  the \nmore especially as they have made large purchases of land.  Nor is \nthis at Lebanon the only Shaker settlement:  there are, I think, at \nleast, three others.\n\nThey are good farmers, and all their produce is eagerly purchased \nand highly esteemed.  'Shaker seeds,' 'Shaker herbs,' and 'Shaker \ndistilled waters,' are commonly announced for sale in the shops of \ntowns and cities.  They are good breeders of cattle, and are kind \nand merciful to the brute creation.  Consequently, Shaker beasts \nseldom fail to find a ready market.\n\nThey eat and drink together, after the Spartan model, at a great \npublic table.  There is no union of the sexes, and every Shaker, \nmale and female, is devoted to a life of celibacy.  Rumour has been \nbusy upon this theme, but here again I must refer to the lady of \nthe store, and say, that if many of the sister Shakers resemble \nher, I treat all such slander as bearing on its face the strongest \nmarks of wild improbability.  But that they take as proselytes, \npersons so young that they cannot know their own minds, and cannot \npossess much strength of resolution in this or any other respect, I \ncan assert from my own observation of the extreme juvenility of \ncertain youthful Shakers whom I saw at work among the party on the \nroad.\n\nThey are said to be good drivers of bargains, but to be honest and \njust in their transactions, and even in horse-dealing to resist \nthose thievish tendencies which would seem, for some undiscovered \nreason, to be almost inseparable from that branch of traffic.  In \nall matters they hold their own course quietly, live in their \ngloomy, silent commonwealth, and show little desire to interfere \nwith other people.\n\nThis is well enough, but nevertheless I cannot, I confess, incline \ntowards the Shakers; view them with much favour, or extend towards \nthem any very lenient construction.  I so abhor, and from my soul \ndetest that bad spirit, no matter by what class or sect it may be \nentertained, which would strip life of its healthful graces, rob \nyouth of its innocent pleasures, pluck from maturity and age their \npleasant ornaments, and make existence but a narrow path towards \nthe grave:  that odious spirit which, if it could have had full \nscope and sway upon the earth, must have blasted and made barren \nthe imaginations of the greatest men, and left them, in their power \nof raising up enduring images before their fellow-creatures yet \nunborn, no better than the beasts:  that, in these very broad-\nbrimmed hats and very sombre coats - in stiff-necked, solemn-\nvisaged piety, in short, no matter what its garb, whether it have \ncropped hair as in a Shaker village, or long nails as in a Hindoo \ntemple - I recognise the worst among the enemies of Heaven and \nEarth, who turn the water at the marriage feasts of this poor \nworld, not into wine, but gall.  And if there must be people vowed \nto crush the harmless fancies and the love of innocent delights and \ngaieties, which are a part of human nature:  as much a part of it \nas any other love or hope that is our common portion:  let them, \nfor me, stand openly revealed among the ribald and licentious; the \nvery idiots know that THEY are not on the Immortal road, and will \ndespise them, and avoid them readily.\n\nLeaving the Shaker village with a hearty dislike of the old \nShakers, and a hearty pity for the young ones:  tempered by the \nstrong probability of their running away as they grow older and \nwiser, which they not uncommonly do:  we returned to Lebanon, and \nso to Hudson, by the way we had come upon the previous day.  There, \nwe took the steamboat down the North River towards New York, but \nstopped, some four hours' journey short of it, at West Point, where \nwe remained that night, and all next day, and next night too.\n\nIn this beautiful place:  the fairest among the fair and lovely \nHighlands of the North River:  shut in by deep green heights and \nruined forts, and looking down upon the distant town of Newburgh, \nalong a glittering path of sunlit water, with here and there a \nskiff, whose white sail often bends on some new tack as sudden \nflaws of wind come down upon her from the gullies in the hills:  \nhemmed in, besides, all round with memories of Washington, and \nevents of the revolutionary war:  is the Military School of \nAmerica.\n\nIt could not stand on more appropriate ground, and any ground more \nbeautiful can hardly be.  The course of education is severe, but \nwell devised, and manly.  Through June, July, and August, the young \nmen encamp upon the spacious plain whereon the college stands; and \nall the year their military exercises are performed there, daily.  \nThe term of study at this institution, which the State requires \nfrom all cadets, is four years; but, whether it be from the rigid \nnature of the discipline, or the national impatience of restraint, \nor both causes combined, not more than half the number who begin \ntheir studies here, ever remain to finish them.\n\nThe number of cadets being about equal to that of the members of \nCongress, one is sent here from every Congressional district:  its \nmember influencing the selection.  Commissions in the service are \ndistributed on the same principle.  The dwellings of the various \nProfessors are beautifully situated; and there is a most excellent \nhotel for strangers, though it has the two drawbacks of being a \ntotal abstinence house (wines and spirits being forbidden to the \nstudents), and of serving the public meals at rather uncomfortable \nhours:  to wit, breakfast at seven, dinner at one, and supper at \nsunset.\n\nThe beauty and freshness of this calm retreat, in the very dawn and \ngreenness of summer - it was then the beginning of June - were \nexquisite indeed.  Leaving it upon the sixth, and returning to New \nYork, to embark for England on the succeeding day, I was glad to \nthink that among the last memorable beauties which had glided past \nus, and softened in the bright perspective, were those whose \npictures, traced by no common hand, are fresh in most men's minds; \nnot easily to grow old, or fade beneath the dust of Time:  the \nKaatskill Mountains, Sleepy Hollow, and the Tappaan Zee.\n\n\n\nCHAPTER XVI - THE PASSAGE HOME\n\n\n\nI NEVER had so much interest before, and very likely I shall never \nhave so much interest again, in the state of the wind, as on the \nlong-looked-for morning of Tuesday the Seventh of June.  Some \nnautical authority had told me a day or two previous, 'anything \nwith west in it, will do;' so when I darted out of bed at daylight, \nand throwing up the window, was saluted by a lively breeze from the \nnorth-west which had sprung up in the night, it came upon me so \nfreshly, rustling with so many happy associations, that I conceived \nupon the spot a special regard for all airs blowing from that \nquarter of the compass, which I shall cherish, I dare say, until my \nown wind has breathed its last frail puff, and withdrawn itself for \never from the mortal calendar.\n\nThe pilot had not been slow to take advantage of this favourable \nweather, and the ship which yesterday had been in such a crowded \ndock that she might have retired from trade for good and all, for \nany chance she seemed to have of going to sea, was now full sixteen \nmiles away.  A gallant sight she was, when we, fast gaining on her \nin a steamboat, saw her in the distance riding at anchor:  her tall \nmasts pointing up in graceful lines against the sky, and every rope \nand spar expressed in delicate and thread-like outline:  gallant, \ntoo, when, we being all aboard, the anchor came up to the sturdy \nchorus 'Cheerily men, oh cheerily!' and she followed proudly in the \ntowing steamboat's wake:  but bravest and most gallant of all, when \nthe tow-rope being cast adrift, the canvas fluttered from her \nmasts, and spreading her white wings she soared away upon her free \nand solitary course.\n\nIn the after cabin we were only fifteen passengers in all, and the \ngreater part were from Canada, where some of us had known each \nother.  The night was rough and squally, so were the next two days, \nbut they flew by quickly, and we were soon as cheerful and snug a \nparty, with an honest, manly-hearted captain at our head, as ever \ncame to the resolution of being mutually agreeable, on land or \nwater.\n\nWe breakfasted at eight, lunched at twelve, dined at three, and \ntook our tea at half-past seven.  We had abundance of amusements, \nand dinner was not the least among them:  firstly, for its own \nsake; secondly, because of its extraordinary length:  its duration, \ninclusive of all the long pauses between the courses, being seldom \nless than two hours and a half; which was a subject of never-\nfailing entertainment.  By way of beguiling the tediousness of \nthese banquets, a select association was formed at the lower end of \nthe table, below the mast, to whose distinguished president modesty \nforbids me to make any further allusion, which, being a very \nhilarious and jovial institution, was (prejudice apart) in high \nfavour with the rest of the community, and particularly with a \nblack steward, who lived for three weeks in a broad grin at the \nmarvellous humour of these incorporated worthies.\n\nThen, we had chess for those who played it, whist, cribbage, books, \nbackgammon, and shovelboard.  In all weathers, fair or foul, calm \nor windy, we were every one on deck, walking up and down in pairs, \nlying in the boats, leaning over the side, or chatting in a lazy \ngroup together.  We had no lack of music, for one played the \naccordion, another the violin, and another (who usually began at \nsix o'clock A.M.) the key-bugle:  the combined effect of which \ninstruments, when they all played different tunes in differents \nparts of the ship, at the same time, and within hearing of each \nother, as they sometimes did (everybody being intensely satisfied \nwith his own performance), was sublimely hideous.\n\nWhen all these means of entertainment failed, a sail would heave in \nsight:  looming, perhaps, the very spirit of a ship, in the misty \ndistance, or passing us so close that through our glasses we could \nsee the people on her decks, and easily make out her name, and \nwhither she was bound.  For hours together we could watch the \ndolphins and porpoises as they rolled and leaped and dived around \nthe vessel; or those small creatures ever on the wing, the Mother \nCarey's chickens, which had borne us company from New York bay, and \nfor a whole fortnight fluttered about the vessel's stern.  For some \ndays we had a dead calm, or very light winds, during which the crew \namused themselves with fishing, and hooked an unlucky dolphin, who \nexpired, in all his rainbow colours, on the deck:  an event of such \nimportance in our barren calendar, that afterwards we dated from \nthe dolphin, and made the day on which he died, an era.\n\nBesides all this, when we were five or six days out, there began to \nbe much talk of icebergs, of which wandering islands an unusual \nnumber had been seen by the vessels that had come into New York a \nday or two before we left that port, and of whose dangerous \nneighbourhood we were warned by the sudden coldness of the weather, \nand the sinking of the mercury in the barometer.  While these \ntokens lasted, a double look-out was kept, and many dismal tales \nwere whispered after dark, of ships that had struck upon the ice \nand gone down in the night; but the wind obliging us to hold a \nsouthward course, we saw none of them, and the weather soon grew \nbright and warm again.\n\nThe observation every day at noon, and the subsequent working of \nthe vessel's course, was, as may be supposed, a feature in our \nlives of paramount importance; nor were there wanting (as there \nnever are) sagacious doubters of the captain's calculations, who, \nso soon as his back was turned, would, in the absence of compasses, \nmeasure the chart with bits of string, and ends of pocket-\nhandkerchiefs, and points of snuffers, and clearly prove him to be \nwrong by an odd thousand miles or so.  It was very edifying to see \nthese unbelievers shake their heads and frown, and hear them hold \nforth strongly upon navigation:  not that they knew anything about \nit, but that they always mistrusted the captain in calm weather, or \nwhen the wind was adverse.  Indeed, the mercury itself is not so \nvariable as this class of passengers, whom you will see, when the \nship is going nobly through the water, quite pale with admiration, \nswearing that the captain beats all captains ever known, and even \nhinting at subscriptions for a piece of plate; and who, next \nmorning, when the breeze has lulled, and all the sails hang useless \nin the idle air, shake their despondent heads again, and say, with \nscrewed-up lips, they hope that captain is a sailor - but they \nshrewdly doubt him.\n\nIt even became an occupation in the calm, to wonder when the wind \nWOULD spring up in the favourable quarter, where, it was clearly \nshown by all the rules and precedents, it ought to have sprung up \nlong ago.  The first mate, who whistled for it zealously, was much \nrespected for his perseverance, and was regarded even by the \nunbelievers as a first-rate sailor.  Many gloomy looks would be \ncast upward through the cabin skylights at the flapping sails while \ndinner was in progress; and some, growing bold in ruefulness, \npredicted that we should land about the middle of July.  There are \nalways on board ship, a Sanguine One, and a Despondent One.  The \nlatter character carried it hollow at this period of the voyage, \nand triumphed over the Sanguine One at every meal, by inquiring \nwhere he supposed the Great Western (which left New York a week \nafter us) was NOW:  and where he supposed the 'Cunard' steam-packet \nwas NOW:  and what he thought of sailing vessels, as compared with \nsteamships NOW:  and so beset his life with pestilent attacks of \nthat kind, that he too was obliged to affect despondency, for very \npeace and quietude.\n\nThese were additions to the list of entertaining incidents, but \nthere was still another source of interest.  We carried in the \nsteerage nearly a hundred passengers:  a little world of poverty:  \nand as we came to know individuals among them by sight, from \nlooking down upon the deck where they took the air in the daytime, \nand cooked their food, and very often ate it too, we became curious \nto know their histories, and with what expectations they had gone \nout to America, and on what errands they were going home, and what \ntheir circumstances were.  The information we got on these heads \nfrom the carpenter, who had charge of these people, was often of \nthe strangest kind.  Some of them had been in America but three \ndays, some but three months, and some had gone out in the last \nvoyage of that very ship in which they were now returning home.  \nOthers had sold their clothes to raise the passage-money, and had \nhardly rags to cover them; others had no food, and lived upon the \ncharity of the rest:  and one man, it was discovered nearly at the \nend of the voyage, not before - for he kept his secret close, and \ndid not court compassion - had had no sustenance whatever but the \nbones and scraps of fat he took from the plates used in the after-\ncabin dinner, when they were put out to be washed.\n\nThe whole system of shipping and conveying these unfortunate \npersons, is one that stands in need of thorough revision.  If any \nclass deserve to be protected and assisted by the Government, it is \nthat class who are banished from their native land in search of the \nbare means of subsistence.  All that could be done for these poor \npeople by the great compassion and humanity of the captain and \nofficers was done, but they require much more.  The law is bound, \nat least upon the English side, to see that too many of them are \nnot put on board one ship:  and that their accommodations are \ndecent:  not demoralising, and profligate.  It is bound, too, in \ncommon humanity, to declare that no man shall be taken on board \nwithout his stock of provisions being previously inspected by some \nproper officer, and pronounced moderately sufficient for his \nsupport upon the voyage.  It is bound to provide, or to require \nthat there be provided, a medical attendant; whereas in these ships \nthere are none, though sickness of adults, and deaths of children, \non the passage, are matters of the very commonest occurrence.  \nAbove all it is the duty of any Government, be it monarchy or \nrepublic, to interpose and put an end to that system by which a \nfirm of traders in emigrants purchase of the owners the whole \n'tween-decks of a ship, and send on board as many wretched people \nas they can lay hold of, on any terms they can get, without the \nsmallest reference to the conveniences of the steerage, the number \nof berths, the slightest separation of the sexes, or anything but \ntheir own immediate profit.  Nor is even this the worst of the \nvicious system:  for, certain crimping agents of these houses, who \nhave a percentage on all the passengers they inveigle, are \nconstantly travelling about those districts where poverty and \ndiscontent are rife, and tempting the credulous into more misery, \nby holding out monstrous inducements to emigration which can never \nbe realised.\n\nThe history of every family we had on board was pretty much the \nsame.  After hoarding up, and borrowing, and begging, and selling \neverything to pay the passage, they had gone out to New York, \nexpecting to find its streets paved with gold; and had found them \npaved with very hard and very real stones.  Enterprise was dull; \nlabourers were not wanted; jobs of work were to be got, but the \npayment was not.  They were coming back, even poorer than they \nwent.  One of them was carrying an open letter from a young English \nartisan, who had been in New York a fortnight, to a friend near \nManchester, whom he strongly urged to follow him.  One of the \nofficers brought it to me as a curiosity.  'This is the country, \nJem,' said the writer.  'I like America.  There is no despotism \nhere; that's the great thing.  Employment of all sorts is going a-\nbegging, and wages are capital.  You have only to choose a trade, \nJem, and be it.  I haven't made choice of one yet, but I shall \nsoon.  AT PRESENT I HAVEN'T QUITE MADE UP MY MIND WHETHER TO BE A \nCARPENTER - OR A TAILOR.'\n\nThere was yet another kind of passenger, and but one more, who, in \nthe calm and the light winds, was a constant theme of conversation \nand observation among us.  This was an English sailor, a smart, \nthorough-built, English man-of-war's-man from his hat to his shoes, \nwho was serving in the American navy, and having got leave of \nabsence was on his way home to see his friends.  When he presented \nhimself to take and pay for his passage, it had been suggested to \nhim that being an able seaman he might as well work it and save the \nmoney, but this piece of advice he very indignantly rejected:  \nsaying, 'He'd be damned but for once he'd go aboard ship, as a \ngentleman.'  Accordingly, they took his money, but he no sooner \ncame aboard, than he stowed his kit in the forecastle, arranged to \nmess with the crew, and the very first time the hands were turned \nup, went aloft like a cat, before anybody.  And all through the \npassage there he was, first at the braces, outermost on the yards, \nperpetually lending a hand everywhere, but always with a sober \ndignity in his manner, and a sober grin on his face, which plainly \nsaid, 'I do it as a gentleman.  For my own pleasure, mind you!'\n\nAt length and at last, the promised wind came up in right good \nearnest, and away we went before it, with every stitch of canvas \nset, slashing through the water nobly.  There was a grandeur in the \nmotion of the splendid ship, as overshadowed by her mass of sails, \nshe rode at a furious pace upon the waves, which filled one with an \nindescribable sense of pride and exultation.  As she plunged into a \nfoaming valley, how I loved to see the green waves, bordered deep \nwith white, come rushing on astern, to buoy her upward at their \npleasure, and curl about her as she stooped again, but always own \nher for their haughty mistress still!  On, on we flew, with \nchanging lights upon the water, being now in the blessed region of \nfleecy skies; a bright sun lighting us by day, and a bright moon by \nnight; the vane pointing directly homeward, alike the truthful \nindex to the favouring wind and to our cheerful hearts; until at \nsunrise, one fair Monday morning - the twenty-seventh of June, I \nshall not easily forget the day - there lay before us, old Cape \nClear, God bless it, showing, in the mist of early morning, like a \ncloud:  the brightest and most welcome cloud, to us, that ever hid \nthe face of Heaven's fallen sister - Home.\n\nDim speck as it was in the wide prospect, it made the sunrise a \nmore cheerful sight, and gave to it that sort of human interest \nwhich it seems to want at sea.  There, as elsewhere, the return of \nday is inseparable from some sense of renewed hope and gladness; \nbut the light shining on the dreary waste of water, and showing it \nin all its vast extent of loneliness, presents a solemn spectacle, \nwhich even night, veiling it in darkness and uncertainty, does not \nsurpass.  The rising of the moon is more in keeping with the \nsolitary ocean; and has an air of melancholy grandeur, which in its \nsoft and gentle influence, seems to comfort while it saddens.  I \nrecollect when I was a very young child having a fancy that the \nreflection of the moon in water was a path to Heaven, trodden by \nthe spirits of good people on their way to God; and this old \nfeeling often came over me again, when I watched it on a tranquil \nnight at sea.\n\nThe wind was very light on this same Monday morning, but it was \nstill in the right quarter, and so, by slow degrees, we left Cape \nClear behind, and sailed along within sight of the coast of \nIreland.  And how merry we all were, and how loyal to the George \nWashington, and how full of mutual congratulations, and how \nventuresome in predicting the exact hour at which we should arrive \nat Liverpool, may be easily imagined and readily understood.  Also, \nhow heartily we drank the captain's health that day at dinner; and \nhow restless we became about packing up:  and how two or three of \nthe most sanguine spirits rejected the idea of going to bed at all \nthat night as something it was not worth while to do, so near the \nshore, but went nevertheless, and slept soundly; and how to be so \nnear our journey's end, was like a pleasant dream, from which one \nfeared to wake.\n\nThe friendly breeze freshened again next day, and on we went once \nmore before it gallantly:  descrying now and then an English ship \ngoing homeward under shortened sail, while we, with every inch of \ncanvas crowded on, dashed gaily past, and left her far behind.  \nTowards evening, the weather turned hazy, with a drizzling rain; \nand soon became so thick, that we sailed, as it were, in a cloud.  \nStill we swept onward like a phantom ship, and many an eager eye \nglanced up to where the Look-out on the mast kept watch for \nHolyhead.\n\nAt length his long-expected cry was heard, and at the same moment \nthere shone out from the haze and mist ahead, a gleaming light, \nwhich presently was gone, and soon returned, and soon was gone \nagain.  Whenever it came back, the eyes of all on board, brightened \nand sparkled like itself:  and there we all stood, watching this \nrevolving light upon the rock at Holyhead, and praising it for its \nbrightness and its friendly warning, and lauding it, in short, \nabove all other signal lights that ever were displayed, until it \nonce more glimmered faintly in the distance, far behind us.\n\nThen, it was time to fire a gun, for a pilot; and almost before its \nsmoke had cleared away, a little boat with a light at her masthead \ncame bearing down upon us, through the darkness, swiftly.  And \npresently, our sails being backed, she ran alongside; and the \nhoarse pilot, wrapped and muffled in pea-coats and shawls to the \nvery bridge of his weather-ploughed-up nose, stood bodily among us \non the deck.  And I think if that pilot had wanted to borrow fifty \npounds for an indefinite period on no security, we should have \nengaged to lend it to him, among us, before his boat had dropped \nastern, or (which is the same thing) before every scrap of news in \nthe paper he brought with him had become the common property of all \non board.\n\nWe turned in pretty late that night, and turned out pretty early \nnext morning.  By six o'clock we clustered on the deck, prepared to \ngo ashore; and looked upon the spires, and roofs, and smoke, of \nLiverpool.  By eight we all sat down in one of its Hotels, to eat \nand drink together for the last time.  And by nine we had shaken \nhands all round, and broken up our social company for ever.\n\nThe country, by the railroad, seemed, as we rattled through it, \nlike a luxuriant garden.  The beauty of the fields (so small they \nlooked!), the hedge-rows, and the trees; the pretty cottages, the \nbeds of flowers, the old churchyards, the antique houses, and every \nwell-known object; the exquisite delights of that one journey, \ncrowding in the short compass of a summer's day, the joy of many \nyears, with the winding up with Home and all that makes it dear; no \ntongue can tell, or pen of mine describe.\n\n\n\nCHAPTER XVI - SLAVERY\n\n\n\nTHE upholders of slavery in America - of the atrocities of which \nsystem, I shall not write one word for which I have not had ample \nproof and warrant - may be divided into three great classes.\n\nThe first, are those more moderate and rational owners of human \ncattle, who have come into the possession of them as so many coins \nin their trading capital, but who admit the frightful nature of the \nInstitution in the abstract, and perceive the dangers to society \nwith which it is fraught:  dangers which however distant they may \nbe, or howsoever tardy in their coming on, are as certain to fall \nupon its guilty head, as is the Day of Judgment.\n\nThe second, consists of all those owners, breeders, users, buyers \nand sellers of slaves, who will, until the bloody chapter has a \nbloody end, own, breed, use, buy, and sell them at all hazards:  \nwho doggedly deny the horrors of the system in the teeth of such a \nmass of evidence as never was brought to bear on any other subject, \nand to which the experience of every day contributes its immense \namount; who would at this or any other moment, gladly involve \nAmerica in a war, civil or foreign, provided that it had for its \nsole end and object the assertion of their right to perpetuate \nslavery, and to whip and work and torture slaves, unquestioned by \nany human authority, and unassailed by any human power; who, when \nthey speak of Freedom, mean the Freedom to oppress their kind, and \nto be savage, merciless, and cruel; and of whom every man on his \nown ground, in republican America, is a more exacting, and a \nsterner, and a less responsible despot than the Caliph Haroun \nAlraschid in his angry robe of scarlet.\n\nThe third, and not the least numerous or influential, is composed \nof all that delicate gentility which cannot bear a superior, and \ncannot brook an equal; of that class whose Republicanism means, 'I \nwill not tolerate a man above me:  and of those below, none must \napproach too near;' whose pride, in a land where voluntary \nservitude is shunned as a disgrace, must be ministered to by \nslaves; and whose inalienable rights can only have their growth in \nnegro wrongs.\n\nIt has been sometimes urged that, in the unavailing efforts which \nhave been made to advance the cause of Human Freedom in the \nrepublic of America (strange cause for history to treat of!), \nsufficient regard has not been had to the existence of the first \nclass of persons; and it has been contended that they are hardly \nused, in being confounded with the second.  This is, no doubt, the \ncase; noble instances of pecuniary and personal sacrifice have \nalready had their growth among them; and it is much to be regretted \nthat the gulf between them and the advocates of emancipation should \nhave been widened and deepened by any means:  the rather, as there \nare, beyond dispute, among these slave-owners, many kind masters \nwho are tender in the exercise of their unnatural power.  Still, it \nis to be feared that this injustice is inseparable from the state \nof things with which humanity and truth are called upon to deal.  \nSlavery is not a whit the more endurable because some hearts are to \nbe found which can partially resist its hardening influences; nor \ncan the indignant tide of honest wrath stand still, because in its \nonward course it overwhelms a few who are comparatively innocent, \namong a host of guilty.\n\nThe ground most commonly taken by these better men among the \nadvocates of slavery, is this:  'It is a bad system; and for myself \nI would willingly get rid of it, if I could; most willingly.  But \nit is not so bad, as you in England take it to be.  You are \ndeceived by the representations of the emancipationists.  The \ngreater part of my slaves are much attached to me.  You will say \nthat I do not allow them to be severely treated; but I will put it \nto you whether you believe that it can be a general practice to \ntreat them inhumanly, when it would impair their value, and would \nbe obviously against the interests of their masters.'\n\nIs it the interest of any man to steal, to game, to waste his \nhealth and mental faculties by drunkenness, to lie, forswear \nhimself, indulge hatred, seek desperate revenge, or do murder?  No.  \nAll these are roads to ruin.  And why, then, do men tread them?  \nBecause such inclinations are among the vicious qualities of \nmankind.  Blot out, ye friends of slavery, from the catalogue of \nhuman passions, brutal lust, cruelty, and the abuse of \nirresponsible power (of all earthly temptations the most difficult \nto be resisted), and when ye have done so, and not before, we will \ninquire whether it be the interest of a master to lash and maim the \nslaves, over whose lives and limbs he has an absolute control!\n\nBut again:  this class, together with that last one I have named, \nthe miserable aristocracy spawned of a false republic, lift up \ntheir voices and exclaim 'Public opinion is all-sufficient to \nprevent such cruelty as you denounce.'  Public opinion!  Why, \npublic opinion in the slave States IS slavery, is it not?  Public \nopinion, in the slave States, has delivered the slaves over, to the \ngentle mercies of their masters.  Public opinion has made the laws, \nand denied the slaves legislative protection.  Public opinion has \nknotted the lash, heated the branding-iron, loaded the rifle, and \nshielded the murderer.  Public opinion threatens the abolitionist \nwith death, if he venture to the South; and drags him with a rope \nabout his middle, in broad unblushing noon, through the first city \nin the East.  Public opinion has, within a few years, burned a \nslave alive at a slow fire in the city of St. Louis; and public \nopinion has to this day maintained upon the bench that estimable \njudge who charged the jury, impanelled there to try his murderers, \nthat their most horrid deed was an act of public opinion, and being \nso, must not be punished by the laws the public sentiment had made.  \nPublic opinion hailed this doctrine with a howl of wild applause, \nand set the prisoners free, to walk the city, men of mark, and \ninfluence, and station, as they had been before.\n\nPublic opinion! what class of men have an immense preponderance \nover the rest of the community, in their power of representing \npublic opinion in the legislature? the slave-owners.  They send \nfrom their twelve States one hundred members, while the fourteen \nfree States, with a free population nearly double, return but a \nhundred and forty-two.  Before whom do the presidential candidates \nbow down the most humbly, on whom do they fawn the most fondly, and \nfor whose tastes do they cater the most assiduously in their \nservile protestations?  The slave-owners always.\n\nPublic opinion! hear the public opinion of the free South, as \nexpressed by its own members in the House of Representatives at \nWashington.  'I have a great respect for the chair,' quoth North \nCarolina, 'I have a great respect for the chair as an officer of \nthe house, and a great respect for him personally; nothing but that \nrespect prevents me from rushing to the table and tearing that \npetition which has just been presented for the abolition of slavery \nin the district of Columbia, to pieces.' - 'I warn the \nabolitionists,' says South Carolina, 'ignorant, infuriated \nbarbarians as they are, that if chance shall throw any of them into \nour hands, he may expect a felon's death.' - 'Let an abolitionist \ncome within the borders of South Carolina,' cries a third; mild \nCarolina's colleague; 'and if we can catch him, we will try him, \nand notwithstanding the interference of all the governments on \nearth, including the Federal government, we will HANG him.'\n\nPublic opinion has made this law. - It has declared that in \nWashington, in that city which takes its name from the father of \nAmerican liberty, any justice of the peace may bind with fetters \nany negro passing down the street and thrust him into jail:  no \noffence on the black man's part is necessary.  The justice says, 'I \nchoose to think this man a runaway:' and locks him up.  Public \nopinion impowers the man of law when this is done, to advertise the \nnegro in the newspapers, warning his owner to come and claim him, \nor he will be sold to pay the jail fees.  But supposing he is a \nfree black, and has no owner, it may naturally be presumed that he \nis set at liberty.  No:  HE IS SOLD TO RECOMPENSE HIS JAILER.  This \nhas been done again, and again, and again.  He has no means of \nproving his freedom; has no adviser, messenger, or assistance of \nany sort or kind; no investigation into his case is made, or \ninquiry instituted.  He, a free man, who may have served for years, \nand bought his liberty, is thrown into jail on no process, for no \ncrime, and on no pretence of crime:  and is sold to pay the jail \nfees.  This seems incredible, even of America, but it is the law.\n\nPublic opinion is deferred to, in such cases as the following:  \nwhich is headed in the newspapers:-\n\n\n'INTERESTING LAW-CASE.\n\n'An interesting case is now on trial in the Supreme Court, arising \nout of the following facts.  A gentleman residing in Maryland had \nallowed an aged pair of his slaves, substantial though not legal \nfreedom for several years.  While thus living, a daughter was born \nto them, who grew up in the same liberty, until she married a free \nnegro, and went with him to reside in Pennsylvania.  They had \nseveral children, and lived unmolested until the original owner \ndied, when his heir attempted to regain them; but the magistrate \nbefore whom they were brought, decided that he had no jurisdiction \nin the case.  THE OWNER SEIZED THE WOMAN AND HER CHILDREN ITS THE \nNIGHT, AND CARRIED THEM TO MARYLAND.'\n\n\n'Cash for negroes,' 'cash for negroes,' 'cash for negroes,' is the \nheading of advertisements in great capitals down the long columns \nof the crowded journals.  Woodcuts of a runaway negro with manacled \nhands, crouching beneath a bluff pursuer in top boots, who, having \ncaught him, grasps him by the throat, agreeably diversify the \npleasant text.  The leading article protests against 'that \nabominable and hellish doctrine of abolition, which is repugnant \nalike to every law of God and nature.'  The delicate mamma, who \nsmiles her acquiescence in this sprightly writing as she reads the \npaper in her cool piazza, quiets her youngest child who clings \nabout her skirts, by promising the boy 'a whip to beat the little \nniggers with.' - But the negroes, little and big, are protected by \npublic opinion.\n\nLet us try this public opinion by another test, which is important \nin three points of view:  first, as showing how desperately timid \nof the public opinion slave-owners are, in their delicate \ndescriptions of fugitive slaves in widely circulated newspapers; \nsecondly, as showing how perfectly contented the slaves are, and \nhow very seldom they run away; thirdly, as exhibiting their entire \nfreedom from scar, or blemish, or any mark of cruel infliction, as \ntheir pictures are drawn, not by lying abolitionists, but by their \nown truthful masters.\n\nThe following are a few specimens of the advertisements in the \npublic papers.  It is only four years since the oldest among them \nappeared; and others of the same nature continue to be published \nevery day, in shoals.\n\n'Ran away, Negress Caroline.  Had on a collar with one prong turned \ndown.'\n\n'Ran away, a black woman, Betsy.  Had an iron bar on her right \nleg.'\n\n'Ran away, the negro Manuel.  Much marked with irons.'\n\n'Ran away, the negress Fanny.  Had on an iron band about her neck.'\n\n'Ran away, a negro boy about twelve years old.  Had round his neck \na chain dog-collar with \"De Lampert\" engraved on it.'\n\n'Ran away, the negro Hown.  Has a ring of iron on his left foot.  \nAlso, Grise, HIS WIFE, having a ring and chain on the left leg.'\n\n'Ran away, a negro boy named James.  Said boy was ironed when he \nleft me.'\n\n'Committed to jail, a man who calls his name John.  He has a clog \nof iron on his right foot which will weigh four or five pounds.'\n\n'Detained at the police jail, the negro wench, Myra.  Has several \nmarks of LASHING, and has irons on her feet.'\n\n'Ran away, a negro woman and two children.  A few days before she \nwent off, I burnt her with a hot iron, on the left side of her \nface.  I tried to make the letter M.'\n\n'Ran away, a negro man named Henry; his left eye out, some scars \nfrom a dirk on and under his left arm, and much scarred with the \nwhip.'\n\n'One hundred dollars reward, for a negro fellow, Pompey, 40 years \nold.  He is branded on the left jaw.'\n\n'Committed to jail, a negro man.  Has no toes on the left foot.'\n\n'Ran away, a negro woman named Rachel.  Has lost all her toes \nexcept the large one.'\n\n'Ran away, Sam.  He was shot a short time since through the hand, \nand has several shots in his left arm and side.'\n\n'Ran away, my negro man Dennis.  Said negro has been shot in the \nleft arm between the shoulder and elbow, which has paralysed the \nleft hand.'\n\n'Ran away, my negro man named Simon.  He has been shot badly, in \nhis back and right arm.'\n\n'Ran away, a negro named Arthur.  Has a considerable scar across \nhis breast and each arm, made by a knife; loves to talk much of the \ngoodness of God.'\n\n'Twenty-five dollars reward for my man Isaac.  He has a scar on his \nforehead, caused by a blow; and one on his back, made by a shot \nfrom a pistol.'\n\n'Ran away, a negro girl called Mary.  Has a small scar over her \neye, a good many teeth missing, the letter A is branded on her \ncheek and forehead.'\n\n'Ran away, negro Ben.  Has a scar on his right hand; his thumb and \nforefinger being injured by being shot last fall.  A part of the \nbone came out.  He has also one or two large scars on his back and \nhips.'\n\n'Detained at the jail, a mulatto, named Tom.  Has a scar on the \nright cheek, and appears to have been burned with powder on the \nface.'\n\n'Ran away, a negro man named Ned.  Three of his fingers are drawn \ninto the palm of his hand by a cut.  Has a scar on the back of his \nneck, nearly half round, done by a knife.'\n\n'Was committed to jail, a negro man.  Says his name is Josiah.  His \nback very much scarred by the whip; and branded on the thigh and \nhips in three or four places, thus (J M).  The rim of his right ear \nhas been bit or cut off.'\n\n'Fifty dollars reward, for my fellow Edward.  He has a scar on the \ncorner of his mouth, two cuts on and under his arm, and the letter \nE on his arm.'\n\n'Ran away, negro boy Ellie.  Has a scar on one of his arms from the \nbite of a dog.'\n\n'Ran away, from the plantation of James Surgette, the following \nnegroes:  Randal, has one ear cropped; Bob, has lost one eye; \nKentucky Tom, has one jaw broken.'\n\n'Ran away, Anthony.  One of his ears cut off, and his left hand cut \nwith an axe.'\n\n'Fifty dollars reward for the negro Jim Blake.  Has a piece cut out \nof each ear, and the middle finger of the left hand cut off to the \nsecond joint.'\n\n'Ran away, a negro woman named Maria.  Has a scar on one side of \nher cheek, by a cut.  Some scars on her back.'\n\n'Ran away, the Mulatto wench Mary.  Has a cut on the left arm, a \nscar on the left shoulder, and two upper teeth missing.'\n\nI should say, perhaps, in explanation of this latter piece of \ndescription, that among the other blessings which public opinion \nsecures to the negroes, is the common practice of violently \npunching out their teeth.  To make them wear iron collars by day \nand night, and to worry them with dogs, are practices almost too \nordinary to deserve mention.\n\n'Ran away, my man Fountain.  Has holes in his ears, a scar on the \nright side of his forehead, has been shot in the hind part of his \nlegs, and is marked on the back with the whip.'\n\n'Two hundred and fifty dollars reward for my negro man Jim.  He is \nmuch marked with shot in his right thigh.  The shot entered on the \noutside, halfway between the hip and knee joints.'\n\n'Brought to jail, John.  Left ear cropt.'\n\n'Taken up, a negro man.  Is very much scarred about the face and \nbody, and has the left ear bit off.'\n\n'Ran away, a black girl, named Mary.  Has a scar on her cheek, and \nthe end of one of her toes cut off.'\n\n'Ran away, my Mulatto woman, Judy.  She has had her right arm \nbroke.'\n\n'Ran away, my negro man, Levi.  His left hand has been burnt, and I \nthink the end of his forefinger is off.'\n\n'Ran away, a negro man, NAMED WASHINGTON.  Has lost a part of his \nmiddle finger, and the end of his little finger.'\n\n'Twenty-five dollars reward for my man John.  The tip of his nose \nis bit off.'\n\n'Twenty-five dollars reward for the negro slave, Sally.  Walks AS \nTHOUGH crippled in the back.'\n\n'Ran away, Joe Dennis.  Has a small notch in one of his ears.'\n\n'Ran away, negro boy, Jack.  Has a small crop out of his left ear.'\n\n'Ran away, a negro man, named Ivory.  Has a small piece cut out of \nthe top of each ear.'\n\nWhile upon the subject of ears, I may observe that a distinguished \nabolitionist in New York once received a negro's ear, which had \nbeen cut off close to the head, in a general post letter.  It was \nforwarded by the free and independent gentleman who had caused it \nto be amputated, with a polite request that he would place the \nspecimen in his 'collection.'\n\nI could enlarge this catalogue with broken arms, and broken legs, \nand gashed flesh, and missing teeth, and lacerated backs, and bites \nof dogs, and brands of red-hot irons innumerable:  but as my \nreaders will be sufficiently sickened and repelled already, I will \nturn to another branch of the subject.\n\nThese advertisements, of which a similar collection might be made \nfor every year, and month, and week, and day; and which are coolly \nread in families as things of course, and as a part of the current \nnews and small-talk; will serve to show how very much the slaves \nprofit by public opinion, and how tender it is in their behalf.  \nBut it may be worth while to inquire how the slave-owners, and the \nclass of society to which great numbers of them belong, defer to \npublic opinion in their conduct, not to their slaves but to each \nother; how they are accustomed to restrain their passions; what \ntheir bearing is among themselves; whether they are fierce or \ngentle; whether their social customs be brutal, sanguinary, and \nviolent, or bear the impress of civilisation and refinement.\n\nThat we may have no partial evidence from abolitionists in this \ninquiry, either, I will once more turn to their own newspapers, and \nI will confine myself, this time, to a selection from paragraphs \nwhich appeared from day to day, during my visit to America, and \nwhich refer to occurrences happening while I was there.  The \nitalics in these extracts, as in the foregoing, are my own.\n\nThese cases did not ALL occur, it will be seen, in territory \nactually belonging to legalised Slave States, though most, and \nthose the very worst among them did, as their counterparts \nconstantly do; but the position of the scenes of action in \nreference to places immediately at hand, where slavery is the law; \nand the strong resemblance between that class of outrages and the \nrest; lead to the just presumption that the character of the \nparties concerned was formed in slave districts, and brutalised by \nslave customs.\n\n\n'HORRIBLE TRAGEDY.\n\n\n'By a slip from THE SOUTHPORT TELEGRAPH, Wisconsin, we learn that \nthe Hon. Charles C. P. Arndt, Member of the Council for Brown \ncounty, was shot dead ON THE FLOOR OF THE COUNCIL CHAMBER, by James \nR. Vinyard, Member from Grant county.  THE AFFAIR grew out of a \nnomination for Sheriff of Grant county.  Mr. E. S. Baker was \nnominated and supported by Mr. Arndt.  This nomination was opposed \nby Vinyard, who wanted the appointment to vest in his own brother.  \nIn the course of debate, the deceased made some statements which \nVinyard pronounced false, and made use of violent and insulting \nlanguage, dealing largely in personalities, to which Mr. A. made no \nreply.  After the adjournment, Mr. A. stepped up to Vinyard, and \nrequested him to retract, which he refused to do, repeating the \noffensive words.  Mr. Arndt then made a blow at Vinyard, who \nstepped back a pace, drew a pistol, and shot him dead.\n\n'The issue appears to have been provoked on the part of Vinyard, \nwho was determined at all hazards to defeat the appointment of \nBaker, and who, himself defeated, turned his ire and revenge upon \nthe unfortunate Arndt.'\n\n\n'THE WISCONSIN TRAGEDY.\n\n\nPublic indignation runs high in the territory of Wisconsin, in \nrelation to the murder of C. C. P. Arndt, in the Legislative Hall \nof the Territory.  Meetings have been held in different counties of \nWisconsin, denouncing THE PRACTICE OF SECRETLY BEARING ARMS IN THE \nLEGISLATIVE CHAMBERS OF THE COUNTRY.  We have seen the account of \nthe expulsion of James R. Vinyard, the perpetrator of the bloody \ndeed, and are amazed to hear, that, after this expulsion by those \nwho saw Vinyard kill Mr. Arndt in the presence of his aged father, \nwho was on a visit to see his son, little dreaming that he was to \nwitness his murder, JUDGE DUNN HAS DISCHARGED VINYARD ON BAIL.  The \nMiners' Free Press speaks IN TERMS OF MERITED REBUKE at the outrage \nupon the feelings of the people of Wisconsin.  Vinyard was within \narm's length of Mr. Arndt, when he took such deadly aim at him, \nthat he never spoke.  Vinyard might at pleasure, being so near, \nhave only wounded him, but he chose to kill him.'\n\n\n'MURDER.\n\n\nBy a letter in a St. Louis paper of the '4th, we notice a terrible \noutrage at Burlington, Iowa.  A Mr. Bridgman having had a \ndifficulty with a citizen of the place, Mr. Ross; a brother-in-law \nof the latter provided himself with one of Colt's revolving \npistols, met Mr. B. in the street, AND DISCHARGED THE CONTENTS OF \nFIVE OF THE BARRELS AT HIM:  EACH SHOT TAKING EFFECT.  Mr. B., \nthough horribly wounded, and dying, returned the fire, and killed \nRoss on the spot.'\n\n\n'TERRIBLE DEATH OF ROBERT POTTER.\n\n\n'From the \"Caddo Gazette,\" of the 12th inst., we learn the \nfrightful death of Colonel Robert Potter. . . . He was beset in his \nhouse by an enemy, named Rose.  He sprang from his couch, seized \nhis gun, and, in his night-clothes, rushed from the house.  For \nabout two hundred yards his speed seemed to defy his pursuers; but, \ngetting entangled in a thicket, he was captured.  Rose told him \nTHAT HE INTENDED TO ACT A GENEROUS PART, and give him a chance for \nhis life.  He then told Potter he might run, and he should not be \ninterrupted till he reached a certain distance.  Potter started at \nthe word of command, and before a gun was fired he had reached the \nlake.  His first impulse was to jump in the water and dive for it, \nwhich he did.  Rose was close behind him, and formed his men on the \nbank ready to shoot him as he rose.  In a few seconds he came up to \nbreathe; and scarce had his head reached the surface of the water \nwhen it was completely riddled with the shot of their guns, and he \nsunk, to rise no more!'\n\n\n'MURDER IN ARKANSAS.\n\n\n'We understand THAT A SEVERE RENCONTRE CAME OFF a few days since in \nthe Seneca Nation, between Mr. Loose, the sub-agent of the mixed \nband of the Senecas, Quapaw, and Shawnees, and Mr. James Gillespie, \nof the mercantile firm of Thomas G. Allison and Co., of Maysville, \nBenton, County Ark, in which the latter was slain with a bowie-\nknife.  Some difficulty had for some time existed between the \nparties.  It is said that Major Gillespie brought on the attack \nwith a cane.  A severe conflict ensued, during which two pistols \nwere fired by Gillespie and one by Loose.  Loose then stabbed \nGillespie with one of those never-failing weapons, a bowie-knife.  \nThe death of Major G. is much regretted, as he was a liberal-minded \nand energetic man.  Since the above was in type, we have learned \nthat Major Allison has stated to some of our citizens in town that \nMr. Loose gave the first blow.  We forbear to give any particulars, \nas THE MATTER WILL BE THE SUBJECT OF JUDICIAL INVESTIGATION.'\n\n\n'FOUL DEED.\n\n\nThe steamer Thames, just from Missouri river, brought us a \nhandbill, offering a reward of 500 dollars, for the person who \nassassinated Lilburn W. Baggs, late Governor of this State, at \nIndependence, on the night of the 6th inst.  Governor Baggs, it is \nstated in a written memorandum, was not dead, but mortally wounded.\n\n'Since the above was written, we received a note from the clerk of \nthe Thames, giving the following particulars.  Gov. Baggs was shot \nby some villain on Friday, 6th inst., in the evening, while sitting \nin a room in his own house in Independence.  His son, a boy, \nhearing a report, ran into the room, and found the Governor sitting \nin his chair, with his jaw fallen down, and his head leaning back; \non discovering the injury done to his father, he gave the alarm.  \nFoot tracks were found in the garden below the window, and a pistol \npicked up supposed to have been overloaded, and thrown from the \nhand of the scoundrel who fired it.  Three buck shots of a heavy \nload, took effect; one going through his mouth, one into the brain, \nand another probably in or near the brain; all going into the back \npart of the neck and head.  The Governor was still alive on the \nmorning of the 7th; but no hopes for his recovery by his friends, \nand but slight hopes from his physicians.\n\n'A man was suspected, and the Sheriff most probably has possession \nof him by this time.\n\n'The pistol was one of a pair stolen some days previous from a \nbaker in Independence, and the legal authorities have the \ndescription of the other.'\n\n\n'RENCONTRE.\n\n\n'An unfortunate AFFAIR took place on Friday evening in Chatres \nStreet, in which one of our most respectable citizens received a \ndangerous wound, from a poignard, in the abdomen.  From the Bee \n(New Orleans) of yesterday, we learn the following particulars.  It \nappears that an article was published in the French side of the \npaper on Monday last, containing some strictures on the Artillery \nBattalion for firing their guns on Sunday morning, in answer to \nthose from the Ontario and Woodbury, and thereby much alarm was \ncaused to the families of those persons who were out all night \npreserving the peace of the city.  Major C. Gally, Commander of the \nbattalion, resenting this, called at the office and demanded the \nauthor's name; that of Mr. P. Arpin was given to him, who was \nabsent at the time.  Some angry words then passed with one of the \nproprietors, and a challenge followed; the friends of both parties \ntried to arrange the affair, but failed to do so.  On Friday \nevening, about seven o'clock, Major Gally met Mr. P. Arpin in \nChatres Street, and accosted him.  \"Are you Mr. Arpin?\"\n\n'\"Yes, sir.\"\n\n'\"Then I have to tell you that you are a - \" (applying an \nappropriate epithet).\n\n'\"I shall remind you of your words, sir.\"\n\n'\"But I have said I would break my cane on your shoulders.\"\n\n'\"I know it, but I have not yet received the blow.\"\n\n'At these words, Major Gally, having a cane in his hands, struck \nMr. Arpin across the face, and the latter drew a poignard from his \npocket and stabbed Major Gally in the abdomen.\n\n'Fears are entertained that the wound will be mortal.  WE \nUNDERSTAND THAT MR. ARPIN HAS GIVEN SECURITY FOR HIS APPEARANCE AT \nTHE CRIMINAL COURT TO ANSWER THE CHARGE.'\n\n\n'AFFRAY IN MISSISSIPPI.\n\n\n'On the 27th ult., in an affray near Carthage, Leake county, \nMississippi, between James Cottingham and John Wilburn, the latter \nwas shot by the former, and so horribly wounded, that there was no \nhope of his recovery.  On the 2nd instant, there was an affray at \nCarthage between A. C. Sharkey and George Goff, in which the latter \nwas shot, and thought mortally wounded.  Sharkey delivered himself \nup to the authorities, BUT CHANGED HIS MIND AND ESCAPED!'\n\n\n'PERSONAL ENCOUNTER.\n\n\n'An encounter took place in Sparta, a few days since, between the \nbarkeeper of an hotel, and a man named Bury.  It appears that Bury \nhad become somewhat noisy, AND THAT THE BARKEEPER, DETERMINED TO \nPRESERVE ORDER, HAD THREATENED TO SHOOT BURY, whereupon Bury drew a \npistol and shot the barkeeper down.  He was not dead at the last \naccounts, but slight hopes were entertained of his recovery.'\n\n\n'DUEL.\n\n\n'The clerk of the steamboat TRIBUNE informs us that another duel \nwas fought on Tuesday last, by Mr. Robbins, a bank officer in \nVicksburg, and Mr. Fall, the editor of the Vicksburg Sentinel.  \nAccording to the arrangement, the parties had six pistols each, \nwhich, after the word \"Fire!\" THEY WERE TO DISCHARGE AS FAST AS \nTHEY PLEASED.  Fall fired two pistols without effect.  Mr. Robbins' \nfirst shot took effect in Fall's thigh, who fell, and was unable to \ncontinue the combat.'\n\n\n'AFFRAY IN CLARKE COUNTY.\n\n\n'An UNFORTUNATE AFFRAY occurred in Clarke county (MO.), near \nWaterloo, on Tuesday the 19th ult., which originated in settling \nthe partnership concerns of Messrs. M'Kane and M'Allister, who had \nbeen engaged in the business of distilling, and resulted in the \ndeath of the latter, who was shot down by Mr. M'Kane, because of \nhis attempting to take possession of seven barrels of whiskey, the \nproperty of M'Kane, which had been knocked off to M'Allister at a \nsheriff's sale at one dollar per barrel.  M'Kane immediately fled \nAND AT THE LATEST DATES HAD NOT BEEN TAKEN.\n\n'THIS UNFORTUNATE AFFRAY caused considerable excitement in the \nneighbourhood, as both the parties were men with large families \ndepending upon them and stood well in the community.'\n\n\nI will quote but one more paragraph, which, by reason of its \nmonstrous absurdity, may be a relief to these atrocious deeds.\n\n\n'AFFAIR OF HONOUR.\n\n\n'We have just heard the particulars of a meeting which took place \non Six Mile Island, on Tuesday, between two young bloods of our \ncity:  Samuel Thurston, AGED FIFTEEN, and William Hine, AGED \nTHIRTEEN years.  They were attended by young gentlemen of the same \nage.  The weapons used on the occasion, were a couple of Dickson's \nbest rifles; the distance, thirty yards.  They took one fire, \nwithout any damage being sustained by either party, except the ball \nof Thurston's gun passing through the crown of Hine's hat.  THROUGH \nTHE INTERCESSION OF THE BOARD OF HONOUR, the challenge was \nwithdrawn, and the difference amicably adjusted.'\n\nIf the reader will picture to himself the kind of Board of Honour \nwhich amicably adjusted the difference between these two little \nboys, who in any other part of the world would have been amicably \nadjusted on two porters' backs and soundly flogged with birchen \nrods, he will be possessed, no doubt, with as strong a sense of its \nludicrous character, as that which sets me laughing whenever its \nimage rises up before me.\n\nNow, I appeal to every human mind, imbued with the commonest of \ncommon sense, and the commonest of common humanity; to all \ndispassionate, reasoning creatures, of any shade of opinion; and \nask, with these revolting evidences of the state of society which \nexists in and about the slave districts of America before them, can \nthey have a doubt of the real condition of the slave, or can they \nfor a moment make a compromise between the institution or any of \nits flagrant, fearful features, and their own just consciences?  \nWill they say of any tale of cruelty and horror, however aggravated \nin degree, that it is improbable, when they can turn to the public \nprints, and, running, read such signs as these, laid before them by \nthe men who rule the slaves:  in their own acts and under their own \nhands?\n\nDo we not know that the worst deformity and ugliness of slavery are \nat once the cause and the effect of the reckless license taken by \nthese freeborn outlaws?  Do we not know that the man who has been \nborn and bred among its wrongs; who has seen in his childhood \nhusbands obliged at the word of command to flog their wives; women, \nindecently compelled to hold up their own garments that men might \nlay the heavier stripes upon their legs, driven and harried by \nbrutal overseers in their time of travail, and becoming mothers on \nthe field of toil, under the very lash itself; who has read in \nyouth, and seen his virgin sisters read, descriptions of runaway \nmen and women, and their disfigured persons, which could not be \npublished elsewhere, of so much stock upon a farm, or at a show of \nbeasts:- do we not know that that man, whenever his wrath is \nkindled up, will be a brutal savage?  Do we not know that as he is \na coward in his domestic life, stalking among his shrinking men and \nwomen slaves armed with his heavy whip, so he will be a coward out \nof doors, and carrying cowards' weapons hidden in his breast, will \nshoot men down and stab them when he quarrels?  And if our reason \ndid not teach us this and much beyond; if we were such idiots as to \nclose our eyes to that fine mode of training which rears up such \nmen; should we not know that they who among their equals stab and \npistol in the legislative halls, and in the counting-house, and on \nthe marketplace, and in all the elsewhere peaceful pursuits of \nlife, must be to their dependants, even though they were free \nservants, so many merciless and unrelenting tyrants?\n\nWhat! shall we declaim against the ignorant peasantry of Ireland, \nand mince the matter when these American taskmasters are in \nquestion?  Shall we cry shame on the brutality of those who \nhamstring cattle:  and spare the lights of Freedom upon earth who \nnotch the ears of men and women, cut pleasant posies in the \nshrinking flesh, learn to write with pens of red-hot iron on the \nhuman face, rack their poetic fancies for liveries of mutilation \nwhich their slaves shall wear for life and carry to the grave, \nbreaking living limbs as did the soldiery who mocked and slew the \nSaviour of the world, and set defenceless creatures up for targets!  \nShall we whimper over legends of the tortures practised on each \nother by the Pagan Indians, and smile upon the cruelties of \nChristian men!  Shall we, so long as these things last, exult above \nthe scattered remnants of that race, and triumph in the white \nenjoyment of their possessions?  Rather, for me, restore the forest \nand the Indian village; in lieu of stars and stripes, let some poor \nfeather flutter in the breeze; replace the streets and squares by \nwigwams; and though the death-song of a hundred haughty warriors \nfill the air, it will be music to the shriek of one unhappy slave.\n\nOn one theme, which is commonly before our eyes, and in respect of \nwhich our national character is changing fast, let the plain Truth \nbe spoken, and let us not, like dastards, beat about the bush by \nhinting at the Spaniard and the fierce Italian.  When knives are \ndrawn by Englishmen in conflict let it be said and known:  'We owe \nthis change to Republican Slavery.  These are the weapons of \nFreedom.  With sharp points and edges such as these, Liberty in \nAmerica hews and hacks her slaves; or, failing that pursuit, her \nsons devote them to a better use, and turn them on each other.'\n\n\n\nCHAPTER XVIII - CONCLUDING REMARKS\n\n\n\nTHERE are many passages in this book, where I have been at some \npains to resist the temptation of troubling my readers with my own \ndeductions and conclusions:  preferring that they should judge for \nthemselves, from such premises as I have laid before them.  My only \nobject in the outset, was, to carry them with me faithfully \nwheresoever I went:  and that task I have discharged.\n\nBut I may be pardoned, if on such a theme as the general character \nof the American people, and the general character of their social \nsystem, as presented to a stranger's eyes, I desire to express my \nown opinions in a few words, before I bring these volumes to a \nclose.\n\nThey are, by nature, frank, brave, cordial, hospitable, and \naffectionate.  Cultivation and refinement seem but to enhance their \nwarmth of heart and ardent enthusiasm; and it is the possession of \nthese latter qualities in a most remarkable degree, which renders \nan educated American one of the most endearing and most generous of \nfriends.  I never was so won upon, as by this class; never yielded \nup my full confidence and esteem so readily and pleasurably, as to \nthem; never can make again, in half a year, so many friends for \nwhom I seem to entertain the regard of half a life.\n\nThese qualities are natural, I implicitly believe, to the whole \npeople.  That they are, however, sadly sapped and blighted in their \ngrowth among the mass; and that there are influences at work which \nendanger them still more, and give but little present promise of \ntheir healthy restoration; is a truth that ought to be told.\n\nIt is an essential part of every national character to pique itself \nmightily upon its faults, and to deduce tokens of its virtue or its \nwisdom from their very exaggeration.  One great blemish in the \npopular mind of America, and the prolific parent of an innumerable \nbrood of evils, is Universal Distrust.  Yet the American citizen \nplumes himself upon this spirit, even when he is sufficiently \ndispassionate to perceive the ruin it works; and will often adduce \nit, in spite of his own reason, as an instance of the great \nsagacity and acuteness of the people, and their superior shrewdness \nand independence.\n\n'You carry,' says the stranger, 'this jealousy and distrust into \nevery transaction of public life.  By repelling worthy men from \nyour legislative assemblies, it has bred up a class of candidates \nfor the suffrage, who, in their very act, disgrace your \nInstitutions and your people's choice.  It has rendered you so \nfickle, and so given to change, that your inconstancy has passed \ninto a proverb; for you no sooner set up an idol firmly, than you \nare sure to pull it down and dash it into fragments:  and this, \nbecause directly you reward a benefactor, or a public servant, you \ndistrust him, merely because he is rewarded; and immediately apply \nyourselves to find out, either that you have been too bountiful in \nyour acknowledgments, or he remiss in his deserts.  Any man who \nattains a high place among you, from the President downwards, may \ndate his downfall from that moment; for any printed lie that any \nnotorious villain pens, although it militate directly against the \ncharacter and conduct of a life, appeals at once to your distrust, \nand is believed.  You will strain at a gnat in the way of \ntrustfulness and confidence, however fairly won and well deserved; \nbut you will swallow a whole caravan of camels, if they be laden \nwith unworthy doubts and mean suspicions.  Is this well, think you, \nor likely to elevate the character of the governors or the \ngoverned, among you?'\n\nThe answer is invariably the same:  'There's freedom of opinion \nhere, you know.  Every man thinks for himself, and we are not to be \neasily overreached.  That's how our people come to be suspicious.'\n\nAnother prominent feature is the love of 'smart' dealing:  which \ngilds over many a swindle and gross breach of trust; many a \ndefalcation, public and private; and enables many a knave to hold \nhis head up with the best, who well deserves a halter; though it \nhas not been without its retributive operation, for this smartness \nhas done more in a few years to impair the public credit, and to \ncripple the public resources, than dull honesty, however rash, \ncould have effected in a century.  The merits of a broken \nspeculation, or a bankruptcy, or of a successful scoundrel, are not \ngauged by its or his observance of the golden rule, 'Do as you \nwould be done by,' but are considered with reference to their \nsmartness.  I recollect, on both occasions of our passing that ill-\nfated Cairo on the Mississippi, remarking on the bad effects such \ngross deceits must have when they exploded, in generating a want of \nconfidence abroad, and discouraging foreign investment:  but I was \ngiven to understand that this was a very smart scheme by which a \ndeal of money had been made:  and that its smartest feature was, \nthat they forgot these things abroad, in a very short time, and \nspeculated again, as freely as ever.  The following dialogue I have \nheld a hundred times:  'Is it not a very disgraceful circumstance \nthat such a man as So-and-so should be acquiring a large property \nby the most infamous and odious means, and notwithstanding all the \ncrimes of which he has been guilty, should be tolerated and abetted \nby your Citizens?  He is a public nuisance, is he not?'  'Yes, \nsir.'  'A convicted liar?'  'Yes, sir.'  'He has been kicked, and \ncuffed, and caned?'  'Yes, sir.'  'And he is utterly dishonourable, \ndebased, and profligate?'  'Yes, sir.'  'In the name of wonder, \nthen, what is his merit?'  'Well, sir, he is a smart man.'\n\nIn like manner, all kinds of deficient and impolitic usages are \nreferred to the national love of trade; though, oddly enough, it \nwould be a weighty charge against a foreigner that he regarded the \nAmericans as a trading people.  The love of trade is assigned as a \nreason for that comfortless custom, so very prevalent in country \ntowns, of married persons living in hotels, having no fireside of \ntheir own, and seldom meeting from early morning until late at \nnight, but at the hasty public meals.  The love of trade is a \nreason why the literature of America is to remain for ever \nunprotected 'For we are a trading people, and don't care for \npoetry:' though we DO, by the way, profess to be very proud of our \npoets:  while healthful amusements, cheerful means of recreation, \nand wholesome fancies, must fade before the stern utilitarian joys \nof trade.\n\nThese three characteristics are strongly presented at every turn, \nfull in the stranger's view.  But, the foul growth of America has a \nmore tangled root than this; and it strikes its fibres, deep in its \nlicentious Press.\n\nSchools may be erected, East, West, North, and South; pupils be \ntaught, and masters reared, by scores upon scores of thousands; \ncolleges may thrive, churches may be crammed, temperance may be \ndiffused, and advancing knowledge in all other forms walk through \nthe land with giant strides:  but while the newspaper press of \nAmerica is in, or near, its present abject state, high moral \nimprovement in that country is hopeless.  Year by year, it must and \nwill go back; year by year, the tone of public feeling must sink \nlower down; year by year, the Congress and the Senate must become \nof less account before all decent men; and year by year, the memory \nof the Great Fathers of the Revolution must be outraged more and \nmore, in the bad life of their degenerate child.\n\nAmong the herd of journals which are published in the States, there \nare some, the reader scarcely need be told, of character and \ncredit.  From personal intercourse with accomplished gentlemen \nconnected with publications of this class, I have derived both \npleasure and profit.  But the name of these is Few, and of the \nothers Legion; and the influence of the good, is powerless to \ncounteract the moral poison of the bad.\n\nAmong the gentry of America; among the well-informed and moderate:  \nin the learned professions; at the bar and on the bench:  there is, \nas there can be, but one opinion, in reference to the vicious \ncharacter of these infamous journals.  It is sometimes contended - \nI will not say strangely, for it is natural to seek excuses for \nsuch a disgrace - that their influence is not so great as a visitor \nwould suppose.  I must be pardoned for saying that there is no \nwarrant for this plea, and that every fact and circumstance tends \ndirectly to the opposite conclusion.\n\nWhen any man, of any grade of desert in intellect or character, can \nclimb to any public distinction, no matter what, in America, \nwithout first grovelling down upon the earth, and bending the knee \nbefore this monster of depravity; when any private excellence is \nsafe from its attacks; when any social confidence is left unbroken \nby it, or any tie of social decency and honour is held in the least \nregard; when any man in that free country has freedom of opinion, \nand presumes to think for himself, and speak for himself, without \nhumble reference to a censorship which, for its rampant ignorance \nand base dishonesty, he utterly loathes and despises in his heart; \nwhen those who most acutely feel its infamy and the reproach it \ncasts upon the nation, and who most denounce it to each other, dare \nto set their heels upon, and crush it openly, in the sight of all \nmen:  then, I will believe that its influence is lessening, and men \nare returning to their manly senses.  But while that Press has its \nevil eye in every house, and its black hand in every appointment in \nthe state, from a president to a postman; while, with ribald \nslander for its only stock in trade, it is the standard literature \nof an enormous class, who must find their reading in a newspaper, \nor they will not read at all; so long must its odium be upon the \ncountry's head, and so long must the evil it works, be plainly \nvisible in the Republic.\n\nTo those who are accustomed to the leading English journals, or to \nthe respectable journals of the Continent of Europe; to those who \nare accustomed to anything else in print and paper; it would be \nimpossible, without an amount of extract for which I have neither \nspace nor inclination, to convey an adequate idea of this frightful \nengine in America.  But if any man desire confirmation of my \nstatement on this head, let him repair to any place in this city of \nLondon, where scattered numbers of these publications are to be \nfound; and there, let him form his own opinion. (1)\n\nIt would be well, there can be no doubt, for the American people as \na whole, if they loved the Real less, and the Ideal somewhat more.  \nIt would be well, if there were greater encouragement to lightness \nof heart and gaiety, and a wider cultivation of what is beautiful, \nwithout being eminently and directly useful.  But here, I think the \ngeneral remonstrance, 'we are a new country,' which is so often \nadvanced as an excuse for defects which are quite unjustifiable, as \nbeing, of right, only the slow growth of an old one, may be very \nreasonably urged:  and I yet hope to hear of there being some other \nnational amusement in the United States, besides newspaper \npolitics.\n\nThey certainly are not a humorous people, and their temperament \nalways impressed me is being of a dull and gloomy character.  In \nshrewdness of remark, and a certain cast-iron quaintness, the \nYankees, or people of New England, unquestionably take the lead; as \nthey do in most other evidences of intelligence.  But in travelling \nabout, out of the large cities - as I have remarked in former parts \nof these volumes - I was quite oppressed by the prevailing \nseriousness and melancholy air of business:  which was so general \nand unvarying, that at every new town I came to, I seemed to meet \nthe very same people whom I had left behind me, at the last.  Such \ndefects as are perceptible in the national manners, seem, to me, to \nbe referable, in a great degree, to this cause:  which has \ngenerated a dull, sullen persistence in coarse usages, and rejected \nthe graces of life as undeserving of attention.  There is no doubt \nthat Washington, who was always most scrupulous and exact on points \nof ceremony, perceived the tendency towards this mistake, even in \nhis time, and did his utmost to correct it.\n\nI cannot hold with other writers on these subjects that the \nprevalence of various forms of dissent in America, is in any way \nattributable to the non-existence there of an established church:  \nindeed, I think the temper of the people, if it admitted of such an \nInstitution being founded amongst them, would lead them to desert \nit, as a matter of course, merely because it WAS established.  But, \nsupposing it to exist, I doubt its probable efficacy in summoning \nthe wandering sheep to one great fold, simply because of the \nimmense amount of dissent which prevails at home; and because I do \nnot find in America any one form of religion with which we in \nEurope, or even in England, are unacquainted.  Dissenters resort \nthither in great numbers, as other people do, simply because it is \na land of resort; and great settlements of them are founded, \nbecause ground can be purchased, and towns and villages reared, \nwhere there were none of the human creation before.  But even the \nShakers emigrated from England; our country is not unknown to Mr. \nJoseph Smith, the apostle of Mormonism, or to his benighted \ndisciples; I have beheld religious scenes myself in some of our \npopulous towns which can hardly be surpassed by an American camp-\nmeeting; and I am not aware that any instance of superstitious \nimposture on the one hand, and superstitious credulity on the \nother, has had its origin in the United States, which we cannot \nmore than parallel by the precedents of Mrs. Southcote, Mary Tofts \nthe rabbit-breeder, or even Mr. Thorn of Canterbury:  which latter \ncase arose, some time after the dark ages had passed away.\n\nThe Republican Institutions of America undoubtedly lead the people \nto assert their self-respect and their equality; but a traveller is \nbound to bear those Institutions in his mind, and not hastily to \nresent the near approach of a class of strangers, who, at home, \nwould keep aloof.  This characteristic, when it was tinctured with \nno foolish pride, and stopped short of no honest service, never \noffended me; and I very seldom, if ever, experienced its rude or \nunbecoming display.  Once or twice it was comically developed, as \nin the following case; but this was an amusing incident, and not \nthe rule, or near it.\n\nI wanted a pair of boots at a certain town, for I had none to \ntravel in, but those with the memorable cork soles, which were much \ntoo hot for the fiery decks of a steamboat.  I therefore sent a \nmessage to an artist in boots, importing, with my compliments, that \nI should be happy to see him, if he would do me the polite favour \nto call.  He very kindly returned for answer, that he would 'look \nround' at six o'clock that evening.\n\nI was lying on the sofa, with a book and a wine-glass, at about \nthat time, when the door opened, and a gentleman in a stiff cravat, \nwithin a year or two on either side of thirty, entered, in his hat \nand gloves; walked up to the looking-glass; arranged his hair; took \noff his gloves; slowly produced a measure from the uttermost depths \nof his coat-pocket; and requested me, in a languid tone, to 'unfix' \nmy straps.  I complied, but looked with some curiosity at his hat, \nwhich was still upon his head.  It might have been that, or it \nmight have been the heat - but he took it off.  Then, he sat \nhimself down on a chair opposite to me; rested an arm on each knee; \nand, leaning forward very much, took from the ground, by a great \neffort, the specimen of metropolitan workmanship which I had just \npulled off:  whistling, pleasantly, as he did so.  He turned it \nover and over; surveyed it with a contempt no language can express; \nand inquired if I wished him to fix me a boot like THAT?  I \ncourteously replied, that provided the boots were large enough, I \nwould leave the rest to him; that if convenient and practicable, I \nshould not object to their bearing some resemblance to the model \nthen before him; but that I would be entirely guided by, and would \nbeg to leave the whole subject to, his judgment and discretion.  \n'You an't partickler, about this scoop in the heel, I suppose \nthen?' says he:  'we don't foller that, here.'  I repeated my last \nobservation.  He looked at himself in the glass again; went closer \nto it to dash a grain or two of dust out of the corner of his eye; \nand settled his cravat.  All this time, my leg and foot were in the \nair.  'Nearly ready, sir?' I inquired.  'Well, pretty nigh,' he \nsaid; 'keep steady.'  I kept as steady as I could, both in foot and \nface; and having by this time got the dust out, and found his \npencil-case, he measured me, and made the necessary notes.  When he \nhad finished, he fell into his old attitude, and taking up the boot \nagain, mused for some time.  'And this,' he said, at last, 'is an \nEnglish boot, is it?  This is a London boot, eh?'  'That, sir,' I \nreplied, 'is a London boot.'  He mused over it again, after the \nmanner of Hamlet with Yorick's skull; nodded his head, as who \nshould say, 'I pity the Institutions that led to the production of \nthis boot!'; rose; put up his pencil, notes, and paper - glancing \nat himself in the glass, all the time - put on his hat - drew on \nhis gloves very slowly; and finally walked out.  When he had been \ngone about a minute, the door reopened, and his hat and his head \nreappeared.  He looked round the room, and at the boot again, which \nwas still lying on the floor; appeared thoughtful for a minute; and \nthen said 'Well, good arternoon.'  'Good afternoon, sir,' said I:  \nand that was the end of the interview.\n\nThere is but one other head on which I wish to offer a remark; and \nthat has reference to the public health.  In so vast a country, \nwhere there are thousands of millions of acres of land yet \nunsettled and uncleared, and on every rood of which, vegetable \ndecomposition is annually taking place; where there are so many \ngreat rivers, and such opposite varieties of climate; there cannot \nfail to be a great amount of sickness at certain seasons.  But I \nmay venture to say, after conversing with many members of the \nmedical profession in America, that I am not singular in the \nopinion that much of the disease which does prevail, might be \navoided, if a few common precautions were observed.  Greater means \nof personal cleanliness, are indispensable to this end; the custom \nof hastily swallowing large quantities of animal food, three times \na-day, and rushing back to sedentary pursuits after each meal, must \nbe changed; the gentler sex must go more wisely clad, and take more \nhealthful exercise; and in the latter clause, the males must be \nincluded also.  Above all, in public institutions, and throughout \nthe whole of every town and city, the system of ventilation, and \ndrainage, and removal of impurities requires to be thoroughly \nrevised.  There is no local Legislature in America which may not \nstudy Mr. Chadwick's excellent Report upon the Sanitary Condition \nof our Labouring Classes, with immense advantage.\n\n* * * * * *\n\nI HAVE now arrived at the close of this book.  I have little reason \nto believe, from certain warnings I have had since I returned to \nEngland, that it will be tenderly or favourably received by the \nAmerican people; and as I have written the Truth in relation to the \nmass of those who form their judgments and express their opinions, \nit will be seen that I have no desire to court, by any adventitious \nmeans, the popular applause.\n\nIt is enough for me, to know, that what I have set down in these \npages, cannot cost me a single friend on the other side of the \nAtlantic, who is, in anything, deserving of the name.  For the \nrest, I put my trust, implicitly, in the spirit in which they have \nbeen conceived and penned; and I can bide my time.\n\nI have made no reference to my reception, nor have I suffered it to \ninfluence me in what I have written; for, in either case, I should \nhave offered but a sorry acknowledgment, compared with that I bear \nwithin my breast, towards those partial readers of my former books, \nacross the Water, who met me with an open hand, and not with one \nthat closed upon an iron muzzle.\n\n\nTHE END\n\n\n\nPOSTSCRIPT\n\n\n\nAT a Public Dinner given to me on Saturday the 18th of April, 1868, \nin the City of New York, by two hundred representatives of the \nPress of the United States of America, I made the following \nobservations among others:\n\n'So much of my voice has lately been heard in the land, that I \nmight have been contented with troubling you no further from my \npresent standing-point, were it not a duty with which I henceforth \ncharge myself, not only here but on every suitable occasion, \nwhatsoever and wheresoever, to express my high and grateful sense \nof my second reception in America, and to bear my honest testimony \nto the national generosity and magnanimity.  Also, to declare how \nastounded I have been by the amazing changes I have seen around me \non every side, - changes moral, changes physical, changes in the \namount of land subdued and peopled, changes in the rise of vast new \ncities, changes in the growth of older cities almost out of \nrecognition, changes in the graces and amenities of life, changes \nin the Press, without whose advancement no advancement can take \nplace anywhere.  Nor am I, believe me, so arrogant as to suppose \nthat in five and twenty years there have been no changes in me, and \nthat I had nothing to learn and no extreme impressions to correct \nwhen I was here first.  And this brings me to a point on which I \nhave, ever since I landed in the United States last November, \nobserved a strict silence, though sometimes tempted to break it, \nbut in reference to which I will, with your good leave, take you \ninto my confidence now.  Even the Press, being human, may be \nsometimes mistaken or misinformed, and I rather think that I have \nin one or two rare instances observed its information to be not \nstrictly accurate with reference to myself.  Indeed, I have, now \nand again, been more surprised by printed news that I have read of \nmyself, than by any printed news that I have ever read in my \npresent state of existence.  Thus, the vigour and perseverance with \nwhich I have for some months past been collecting materials for, \nand hammering away at, a new book on America has much astonished \nme; seeing that all that time my declaration has been perfectly \nwell known to my publishers on both sides of the Atlantic, that no \nconsideration on earth would induce me to write one.  But what I \nhave intended, what I have resolved upon (and this is the \nconfidence I seek to place in you) is, on my return to England, in \nmy own person, in my own journal, to bear, for the behoof of my \ncountrymen, such testimony to the gigantic changes in this country \nas I have hinted at to-night.  Also, to record that wherever I have \nbeen, in the smallest places equally with the largest, I have been \nreceived with unsurpassable politeness, delicacy, sweet temper, \nhospitality, consideration, and with unsurpassable respect for the \nprivacy daily enforced upon me by the nature of my avocation here \nand the state of my health.  This testimony, so long as I live, and \nso long as my descendants have any legal right in my books, I shall \ncause to be republished, as an appendix to every copy of those two \nbooks of mine in which I have referred to America.  And this I will \ndo and cause to be done, not in mere love and thankfulness, but \nbecause I regard it as an act of plain justice and honour.'\n\nI said these words with the greatest earnestness that I could lay \nupon them, and I repeat them in print here with equal earnestness.  \nSo long as this book shall last, I hope that they will form a part \nof it, and will be fairly read as inseparable from my experiences \nand impressions of America.\n\nCHARLES DICKENS.\n\nMAY, 1868.\n\n\n\nFootnotes:\n\n(1) NOTE TO THE ORIGINAL EDITION. - Or let him refer to an able, \nand perfectly truthful article, in THE FOREIGN QUARTERLY REVIEW, \npublished in the present month of October; to which my attention \nhas been attracted, since these sheets have been passing through \nthe press.  He will find some specimens there, by no means \nremarkable to any man who has been in America, but sufficiently \nstriking to one who has not.\n\n\n\n\nEnd of the Project Gutenberg Etext of American Notes, by Charles Dickens\n\nProject Gutenberg Etext of The Battle of Life by Charles Dickens\n#10 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nThe Battle of Life\n\nby Charles Dickens\n\nOctober, 1996  [Etext #676]\n\n\nProject Gutenberg Etext of The Battle of Life by Charles Dickens\n*****This file should be named batlf10.txt or batlf10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, batlf11.txt.\nVERSIONS based on separate sources get new LETTER, batlf10a.txt.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\n\n\nThe Battle of Life by Charles Dickens\nScanned and proofed by David Price\nemail ccx074@coventry.ac.uk\n\n\n\n\n\nThe Battle of Life\n\n\n\n\n\nCHAPTER I - Part The First\n\n\n\nOnce upon a time, it matters little when, and in stalwart England, \nit matters little where, a fierce battle was fought.  It was fought \nupon a long summer day when the waving grass was green.  Many a \nwild flower formed by the Almighty Hand to be a perfumed goblet for \nthe dew, felt its enamelled cup filled high with blood that day, \nand shrinking dropped.  Many an insect deriving its delicate colour \nfrom harmless leaves and herbs, was stained anew that day by dying \nmen, and marked its frightened way with an unnatural track.  The \npainted butterfly took blood into the air upon the edges of its \nwings.  The stream ran red.  The trodden ground became a quagmire, \nwhence, from sullen pools collected in the prints of human feet and \nhorses' hoofs, the one prevailing hue still lowered and glimmered \nat the sun.\n\nHeaven keep us from a knowledge of the sights the moon beheld upon \nthat field, when, coming up above the black line of distant rising-\nground, softened and blurred at the edge by trees, she rose into \nthe sky and looked upon the plain, strewn with upturned faces that \nhad once at mothers' breasts sought mothers' eyes, or slumbered \nhappily.  Heaven keep us from a knowledge of the secrets whispered \nafterwards upon the tainted wind that blew across the scene of that \nday's work and that night's death and suffering!  Many a lonely \nmoon was bright upon the battle-ground, and many a star kept \nmournful watch upon it, and many a wind from every quarter of the \nearth blew over it, before the traces of the fight were worn away.\n\nThey lurked and lingered for a long time, but survived in little \nthings; for, Nature, far above the evil passions of men, soon \nrecovered Her serenity, and smiled upon the guilty battle-ground as \nshe had done before, when it was innocent.  The larks sang high \nabove it; the swallows skimmed and dipped and flitted to and fro; \nthe shadows of the flying clouds pursued each other swiftly, over \ngrass and corn and turnip-field and wood, and over roof and church-\nspire in the nestling town among the trees, away into the bright \ndistance on the borders of the sky and earth, where the red sunsets \nfaded.  Crops were sown, and grew up, and were gathered in; the \nstream that had been crimsoned, turned a watermill; men whistled at \nthe plough; gleaners and haymakers were seen in quiet groups at \nwork; sheep and oxen pastured; boys whooped and called, in fields, \nto scare away the birds; smoke rose from cottage chimneys; sabbath \nbells rang peacefully; old people lived and died; the timid \ncreatures of the field, the simple flowers of the bush and garden, \ngrew and withered in their destined terms:  and all upon the fierce \nand bloody battle-ground, where thousands upon thousands had been \nkilled in the great fight.  But, there were deep green patches in \nthe growing corn at first, that people looked at awfully.  Year \nafter year they re-appeared; and it was known that underneath those \nfertile spots, heaps of men and horses lay buried, \nindiscriminately, enriching the ground.  The husbandmen who \nploughed those places, shrunk from the great worms abounding there; \nand the sheaves they yielded, were, for many a long year, called \nthe Battle Sheaves, and set apart; and no one ever knew a Battle \nSheaf to be among the last load at a Harvest Home.  For a long \ntime, every furrow that was turned, revealed some fragments of the \nfight.  For a long time, there were wounded trees upon the battle-\nground; and scraps of hacked and broken fence and wall, where \ndeadly struggles had been made; and trampled parts where not a leaf \nor blade would grow.  For a long time, no village girl would dress \nher hair or bosom with the sweetest flower from that field of \ndeath:  and after many a year had come and gone, the berries \ngrowing there, were still believed to leave too deep a stain upon \nthe hand that plucked them.\n\nThe Seasons in their course, however, though they passed as lightly \nas the summer clouds themselves, obliterated, in the lapse of time, \neven these remains of the old conflict; and wore away such \nlegendary traces of it as the neighbouring people carried in their \nminds, until they dwindled into old wives' tales, dimly remembered \nround the winter fire, and waning every year.  Where the wild \nflowers and berries had so long remained upon the stem untouched, \ngardens arose, and houses were built, and children played at \nbattles on the turf.  The wounded trees had long ago made Christmas \nlogs, and blazed and roared away.  The deep green patches were no \ngreener now than the memory of those who lay in dust below.  The \nploughshare still turned up from time to time some rusty bits of \nmetal, but it was hard to say what use they had ever served, and \nthose who found them wondered and disputed.  An old dinted \ncorselet, and a helmet, had been hanging in the church so long, \nthat the same weak half-blind old man who tried in vain to make \nthem out above the whitewashed arch, had marvelled at them as a \nbaby.  If the host slain upon the field, could have been for a \nmoment reanimated in the forms in which they fell, each upon the \nspot that was the bed of his untimely death, gashed and ghastly \nsoldiers would have stared in, hundreds deep, at household door and \nwindow; and would have risen on the hearths of quiet homes; and \nwould have been the garnered store of barns and granaries; and \nwould have started up between the cradled infant and its nurse; and \nwould have floated with the stream, and whirled round on the mill, \nand crowded the orchard, and burdened the meadow, and piled the \nrickyard high with dying men.  So altered was the battle-ground, \nwhere thousands upon thousands had been killed in the great fight.\n\nNowhere more altered, perhaps, about a hundred years ago, than in \none little orchard attached to an old stone house with a \nhoneysuckle porch; where, on a bright autumn morning, there were \nsounds of music and laughter, and where two girls danced merrily \ntogether on the grass, while some half-dozen peasant women standing \non ladders, gathering the apples from the trees, stopped in their \nwork to look down, and share their enjoyment.  It was a pleasant, \nlively, natural scene; a beautiful day, a retired spot; and the two \ngirls, quite unconstrained and careless, danced in the freedom and \ngaiety of their hearts.\n\nIf there were no such thing as display in the world, my private \nopinion is, and I hope you agree with me, that we might get on a \ngreat deal better than we do, and might be infinitely more \nagreeable company than we are.  It was charming to see how these \ngirls danced.  They had no spectators but the apple-pickers on the \nladders.  They were very glad to please them, but they danced to \nplease themselves (or at least you would have supposed so); and you \ncould no more help admiring, than they could help dancing.  How \nthey did dance!\n\nNot like opera-dancers.  Not at all.  And not like Madame Anybody's \nfinished pupils.  Not the least.  It was not quadrille dancing, nor \nminuet dancing, nor even country-dance dancing.  It was neither in \nthe old style, nor the new style, nor the French style, nor the \nEnglish style:  though it may have been, by accident, a trifle in \nthe Spanish style, which is a free and joyous one, I am told, \nderiving a delightful air of off-hand inspiration, from the \nchirping little castanets.  As they danced among the orchard trees, \nand down the groves of stems and back again, and twirled each other \nlightly round and round, the influence of their airy motion seemed \nto spread and spread, in the sun-lighted scene, like an expanding \ncircle in the water.  Their streaming hair and fluttering skirts, \nthe elastic grass beneath their feet, the boughs that rustled in \nthe morning air - the flashing leaves, the speckled shadows on the \nsoft green ground - the balmy wind that swept along the landscape, \nglad to turn the distant windmill, cheerily - everything between \nthe two girls, and the man and team at plough upon the ridge of \nland, where they showed against the sky as if they were the last \nthings in the world - seemed dancing too.\n\nAt last, the younger of the dancing sisters, out of breath, and \nlaughing gaily, threw herself upon a bench to rest.  The other \nleaned against a tree hard by.  The music, a wandering harp and \nfiddle, left off with a flourish, as if it boasted of its \nfreshness; though the truth is, it had gone at such a pace, and \nworked itself to such a pitch of competition with the dancing, that \nit never could have held on, half a minute longer.  The apple-\npickers on the ladders raised a hum and murmur of applause, and \nthen, in keeping with the sound, bestirred themselves to work again \nlike bees.\n\nThe more actively, perhaps, because an elderly gentleman, who was \nno other than Doctor Jeddler himself - it was Doctor Jeddler's \nhouse and orchard, you should know, and these were Doctor Jeddler's \ndaughters - came bustling out to see what was the matter, and who \nthe deuce played music on his property, before breakfast.  For he \nwas a great philosopher, Doctor Jeddler, and not very musical.\n\n'Music and dancing TO-DAY!' said the Doctor, stopping short, and \nspeaking to himself.  'I thought they dreaded to-day.  But it's a \nworld of contradictions.  Why, Grace, why, Marion!' he added, \naloud, 'is the world more mad than usual this morning?'\n\n'Make some allowance for it, father, if it be,' replied his younger \ndaughter, Marion, going close to him, and looking into his face, \n'for it's somebody's birth-day.'\n\n'Somebody's birth-day, Puss!' replied the Doctor.  'Don't you know \nit's always somebody's birth-day?  Did you never hear how many new \nperformers enter on this - ha! ha! ha! - it's impossible to speak \ngravely of it - on this preposterous and ridiculous business called \nLife, every minute?'\n\n'No, father!'\n\n'No, not you, of course; you're a woman - almost,' said the Doctor.  \n'By-the-by,' and he looked into the pretty face, still close to \nhis, 'I suppose it's YOUR birth-day.'\n\n'No!  Do you really, father?' cried his pet daughter, pursing up \nher red lips to be kissed.\n\n'There!  Take my love with it,' said the Doctor, imprinting his \nupon them; 'and many happy returns of the - the idea! - of the day.  \nThe notion of wishing happy returns in such a farce as this,' said \nthe Doctor to himself, 'is good!  Ha! ha! ha!'\n\nDoctor Jeddler was, as I have said, a great philosopher, and the \nheart and mystery of his philosophy was, to look upon the world as \na gigantic practical joke; as something too absurd to be considered \nseriously, by any rational man.  His system of belief had been, in \nthe beginning, part and parcel of the battle-ground on which he \nlived, as you shall presently understand.\n\n'Well!  But how did you get the music?' asked the Doctor.  \n'Poultry-stealers, of course!  Where did the minstrels come from?'\n\n'Alfred sent the music,' said his daughter Grace, adjusting a few \nsimple flowers in her sister's hair, with which, in her admiration \nof that youthful beauty, she had herself adorned it half-an-hour \nbefore, and which the dancing had disarranged.\n\n'Oh!  Alfred sent the music, did he?' returned the Doctor.\n\n'Yes.  He met it coming out of the town as he was entering early.  \nThe men are travelling on foot, and rested there last night; and as \nit was Marion's birth-day, and he thought it would please her, he \nsent them on, with a pencilled note to me, saying that if I thought \nso too, they had come to serenade her.'\n\n'Ay, ay,' said the Doctor, carelessly, 'he always takes your \nopinion.'\n\n'And my opinion being favourable,' said Grace, good-humouredly; and \npausing for a moment to admire the pretty head she decorated, with \nher own thrown back; 'and Marion being in high spirits, and \nbeginning to dance, I joined her.  And so we danced to Alfred's \nmusic till we were out of breath.  And we thought the music all the \ngayer for being sent by Alfred.  Didn't we, dear Marion?'\n\n'Oh, I don't know, Grace.  How you tease me about Alfred.'\n\n'Tease you by mentioning your lover?' said her sister.\n\n'I am sure I don't much care to have him mentioned,' said the \nwilful beauty, stripping the petals from some flowers she held, and \nscattering them on the ground.  'I am almost tired of hearing of \nhim; and as to his being my lover - '\n\n'Hush!  Don't speak lightly of a true heart, which is all your own, \nMarion,' cried her sister, 'even in jest.  There is not a truer \nheart than Alfred's in the world!'\n\n'No-no,' said Marion, raising her eyebrows with a pleasant air of \ncareless consideration, 'perhaps not.  But I don't know that \nthere's any great merit in that.  I - I don't want him to be so \nvery true.  I never asked him.  If he expects that I -  But, dear \nGrace, why need we talk of him at all, just now!'\n\nIt was agreeable to see the graceful figures of the blooming \nsisters, twined together, lingering among the trees, conversing \nthus, with earnestness opposed to lightness, yet, with love \nresponding tenderly to love.  And it was very curious indeed to see \nthe younger sister's eyes suffused with tears, and something \nfervently and deeply felt, breaking through the wilfulness of what \nshe said, and striving with it painfully.\n\nThe difference between them, in respect of age, could not exceed \nfour years at most; but Grace, as often happens in such cases, when \nno mother watches over both (the Doctor's wife was dead), seemed, \nin her gentle care of her young sister, and in the steadiness of \nher devotion to her, older than she was; and more removed, in \ncourse of nature, from all competition with her, or participation, \notherwise than through her sympathy and true affection, in her \nwayward fancies, than their ages seemed to warrant.  Great \ncharacter of mother, that, even in this shadow and faint reflection \nof it, purifies the heart, and raises the exalted nature nearer to \nthe angels!\n\nThe Doctor's reflections, as he looked after them, and heard the \npurport of their discourse, were limited at first to certain merry \nmeditations on the folly of all loves and likings, and the idle \nimposition practised on themselves by young people, who believed \nfor a moment, that there could be anything serious in such bubbles, \nand were always undeceived - always!\n\nBut, the home-adorning, self-denying qualities of Grace, and her \nsweet temper, so gentle and retiring, yet including so much \nconstancy and bravery of spirit, seemed all expressed to him in the \ncontrast between her quiet household figure and that of his younger \nand more beautiful child; and he was sorry for her sake - sorry for \nthem both - that life should be such a very ridiculous business as \nit was.\n\nThe Doctor never dreamed of inquiring whether his children, or \neither of them, helped in any way to make the scheme a serious one.  \nBut then he was a Philosopher.\n\nA kind and generous man by nature, he had stumbled, by chance, over \nthat common Philosopher's stone (much more easily discovered than \nthe object of the alchemist's researches), which sometimes trips up \nkind and generous men, and has the fatal property of turning gold \nto dross and every precious thing to poor account.\n\n'Britain!' cried the Doctor.  'Britain!  Holloa!'\n\nA small man, with an uncommonly sour and discontented face, emerged \nfrom the house, and returned to this call the unceremonious \nacknowledgment of 'Now then!'\n\n'Where's the breakfast table?' said the Doctor.\n\n'In the house,' returned Britain.\n\n'Are you going to spread it out here, as you were told last night?' \nsaid the Doctor.  'Don't you know that there are gentlemen coming?  \nThat there's business to be done this morning, before the coach \ncomes by?  That this is a very particular occasion?'\n\n'I couldn't do anything, Dr. Jeddler, till the women had done \ngetting in the apples, could I?' said Britain, his voice rising \nwith his reasoning, so that it was very loud at last.\n\n'Well, have they done now?' replied the Doctor, looking at his \nwatch, and clapping his hands.  'Come! make haste! where's \nClemency?'\n\n'Here am I, Mister,' said a voice from one of the ladders, which a \npair of clumsy feet descended briskly.  'It's all done now.  Clear \naway, gals.  Everything shall be ready for you in half a minute, \nMister.'\n\nWith that she began to bustle about most vigorously; presenting, as \nshe did so, an appearance sufficiently peculiar to justify a word \nof introduction.\n\nShe was about thirty years old, and had a sufficiently plump and \ncheerful face, though it was twisted up into an odd expression of \ntightness that made it comical.  But, the extraordinary homeliness \nof her gait and manner, would have superseded any face in the \nworld.  To say that she had two left legs, and somebody else's \narms, and that all four limbs seemed to be out of joint, and to \nstart from perfectly wrong places when they were set in motion, is \nto offer the mildest outline of the reality.  To say that she was \nperfectly content and satisfied with these arrangements, and \nregarded them as being no business of hers, and that she took her \narms and legs as they came, and allowed them to dispose of \nthemselves just as it happened, is to render faint justice to her \nequanimity.  Her dress was a prodigious pair of self-willed shoes, \nthat never wanted to go where her feet went; blue stockings; a \nprinted gown of many colours, and the most hideous pattern \nprocurable for money; and a white apron.  She always wore short \nsleeves, and always had, by some accident, grazed elbows, in which \nshe took so lively an interest, that she was continually trying to \nturn them round and get impossible views of them.  In general, a \nlittle cap placed somewhere on her head; though it was rarely to be \nmet with in the place usually occupied in other subjects, by that \narticle of dress; but, from head to foot she was scrupulously \nclean, and maintained a kind of dislocated tidiness.  Indeed, her \nlaudable anxiety to be tidy and compact in her own conscience as \nwell as in the public eye, gave rise to one of her most startling \nevolutions, which was to grasp herself sometimes by a sort of \nwooden handle (part of her clothing, and familiarly called a busk), \nand wrestle as it were with her garments, until they fell into a \nsymmetrical arrangement.\n\nSuch, in outward form and garb, was Clemency Newcome; who was \nsupposed to have unconsciously originated a corruption of her own \nChristian name, from Clementina (but nobody knew, for the deaf old \nmother, a very phenomenon of age, whom she had supported almost \nfrom a child, was dead, and she had no other relation); who now \nbusied herself in preparing the table, and who stood, at intervals, \nwith her bare red arms crossed, rubbing her grazed elbows with \nopposite hands, and staring at it very composedly, until she \nsuddenly remembered something else she wanted, and jogged off to \nfetch it.\n\n'Here are them two lawyers a-coming, Mister!' said Clemency, in a \ntone of no very great good-will.\n\n'Ah!' cried the Doctor, advancing to the gate to meet them.  'Good \nmorning, good morning!  Grace, my dear!  Marion!  Here are Messrs. \nSnitchey and Craggs.  Where's Alfred!'\n\n'He'll be back directly, father, no doubt,' said Grace.  'He had so \nmuch to do this morning in his preparations for departure, that he \nwas up and out by daybreak.  Good morning, gentlemen.'\n\n'Ladies!' said Mr. Snitchey, 'for Self and Craggs,' who bowed, \n'good morning!  Miss,' to Marion, 'I kiss your hand.'  Which he \ndid.  'And I wish you' - which he might or might not, for he didn't \nlook, at first sight, like a gentleman troubled with many warm \noutpourings of soul, in behalf of other people, 'a hundred happy \nreturns of this auspicious day.'\n\n'Ha ha ha!' laughed the Doctor thoughtfully, with his hands in his \npockets.  'The great farce in a hundred acts!'\n\n'You wouldn't, I am sure,' said Mr. Snitchey, standing a small \nprofessional blue bag against one leg of the table, 'cut the great \nfarce short for this actress, at all events, Doctor Jeddler.'\n\n'No,' returned the Doctor.  'God forbid!  May she live to laugh at \nit, as long as she CAN laugh, and then say, with the French wit, \n\"The farce is ended; draw the curtain.\"'\n\n'The French wit,' said Mr. Snitchey, peeping sharply into his blue \nbag, 'was wrong, Doctor Jeddler, and your philosophy is altogether \nwrong, depend upon it, as I have often told you.  Nothing serious \nin life!  What do you call law?'\n\n'A joke,' replied the Doctor.\n\n'Did you ever go to law?' asked Mr. Snitchey, looking out of the \nblue bag.\n\n'Never,' returned the Doctor.\n\n'If you ever do,' said Mr. Snitchey, 'perhaps you'll alter that \nopinion.'\n\nCraggs, who seemed to be represented by Snitchey, and to be \nconscious of little or no separate existence or personal \nindividuality, offered a remark of his own in this place.  It \ninvolved the only idea of which he did not stand seized and \npossessed in equal moieties with Snitchey; but, he had some \npartners in it among the wise men of the world.\n\n'It's made a great deal too easy,' said Mr. Craggs.\n\n'Law is?' asked the Doctor.\n\n'Yes,' said Mr. Craggs, 'everything is.  Everything appears to me \nto be made too easy, now-a-days.  It's the vice of these times.  If \nthe world is a joke (I am not prepared to say it isn't), it ought \nto be made a very difficult joke to crack.  It ought to be as hard \na struggle, sir, as possible.  That's the intention.  But, it's \nbeing made far too easy.  We are oiling the gates of life.  They \nought to be rusty.  We shall have them beginning to turn, soon, \nwith a smooth sound.  Whereas they ought to grate upon their \nhinges, sir.'\n\nMr. Craggs seemed positively to grate upon his own hinges, as he \ndelivered this opinion; to which he communicated immense effect - \nbeing a cold, hard, dry, man, dressed in grey and white, like a \nflint; with small twinkles in his eyes, as if something struck \nsparks out of them.  The three natural kingdoms, indeed, had each a \nfanciful representative among this brotherhood of disputants; for \nSnitchey was like a magpie or raven (only not so sleek), and the \nDoctor had a streaked face like a winter-pippin, with here and \nthere a dimple to express the peckings of the birds, and a very \nlittle bit of pigtail behind that stood for the stalk.\n\nAs the active figure of a handsome young man, dressed for a \njourney, and followed by a porter bearing several packages and \nbaskets, entered the orchard at a brisk pace, and with an air of \ngaiety and hope that accorded well with the morning, these three \ndrew together, like the brothers of the sister Fates, or like the \nGraces most effectually disguised, or like the three weird prophets \non the heath, and greeted him.\n\n'Happy returns, Alf!' said the Doctor, lightly.\n\n'A hundred happy returns of this auspicious day, Mr. Heathfield!' \nsaid Snitchey, bowing low.\n\n'Returns!' Craggs murmured in a deep voice, all alone.\n\n'Why, what a battery!' exclaimed Alfred, stopping short, 'and one - \ntwo - three - all foreboders of no good, in the great sea before \nme.  I am glad you are not the first I have met this morning:  I \nshould have taken it for a bad omen.  But, Grace was the first - \nsweet, pleasant Grace - so I defy you all!'\n\n'If you please, Mister, I was the first you know,' said Clemency \nNewcome.  'She was walking out here, before sunrise, you remember.  \nI was in the house.'\n\n'That's true!  Clemency was the first,' said Alfred.  'So I defy \nyou with Clemency.'\n\n'Ha, ha, ha, - for Self and Craggs,' said Snitchey.  'What a \ndefiance!'\n\n'Not so bad a one as it appears, may be,' said Alfred, shaking \nhands heartily with the Doctor, and also with Snitchey and Craggs, \nand then looking round.  'Where are the - Good Heavens!'\n\nWith a start, productive for the moment of a closer partnership \nbetween Jonathan Snitchey and Thomas Craggs than the subsisting \narticles of agreement in that wise contemplated, he hastily betook \nhimself to where the sisters stood together, and - however, I \nneedn't more particularly explain his manner of saluting Marion \nfirst, and Grace afterwards, than by hinting that Mr. Craggs may \npossibly have considered it 'too easy.'\n\nPerhaps to change the subject, Dr. Jeddler made a hasty move \ntowards the breakfast, and they all sat down at table.  Grace \npresided; but so discreetly stationed herself, as to cut off her \nsister and Alfred from the rest of the company.  Snitchey and \nCraggs sat at opposite corners, with the blue bag between them for \nsafety; the Doctor took his usual position, opposite to Grace.  \nClemency hovered galvanically about the table, as waitress; and the \nmelancholy Britain, at another and a smaller board, acted as Grand \nCarver of a round of beef and a ham.\n\n'Meat?' said Britain, approaching Mr. Snitchey, with the carving \nknife and fork in his hands, and throwing the question at him like \na missile.\n\n'Certainly,' returned the lawyer.\n\n'Do YOU want any?' to Craggs.\n\n'Lean and well done,' replied that gentleman.\n\nHaving executed these orders, and moderately supplied the Doctor \n(he seemed to know that nobody else wanted anything to eat), he \nlingered as near the Firm as he decently could, watching with an \naustere eye their disposition of the viands, and but once relaxing \nthe severe expression of his face.  This was on the occasion of Mr. \nCraggs, whose teeth were not of the best, partially choking, when \nhe cried out with great animation, 'I thought he was gone!'\n\n'Now, Alfred,' said the Doctor, 'for a word or two of business, \nwhile we are yet at breakfast.'\n\n'While we are yet at breakfast,' said Snitchey and Craggs, who \nseemed to have no present idea of leaving off.\n\nAlthough Alfred had not been breakfasting, and seemed to have quite \nenough business on his hands as it was, he respectfully answered:\n\n'If you please, sir.'\n\n'If anything could be serious,' the Doctor began, 'in such a - '\n\n'Farce as this, sir,' hinted Alfred.\n\n'In such a farce as this,' observed the Doctor, 'it might be this \nrecurrence, on the eve of separation, of a double birthday, which \nis connected with many associations pleasant to us four, and with \nthe recollection of a long and amicable intercourse.  That's not to \nthe purpose.'\n\n'Ah! yes, yes, Dr. Jeddler,' said the young man.  'It is to the \npurpose.  Much to the purpose, as my heart bears witness this \nmorning; and as yours does too, I know, if you would let it speak.  \nI leave your house to-day; I cease to be your ward to-day; we part \nwith tender relations stretching far behind us, that never can be \nexactly renewed, and with others dawning - yet before us,' he \nlooked down at Marion beside him, 'fraught with such considerations \nas I must not trust myself to speak of now.  Come, come!' he added, \nrallying his spirits and the Doctor at once, 'there's a serious \ngrain in this large foolish dust-heap, Doctor.  Let us allow to-\nday, that there is One.'\n\n'To-day!' cried the Doctor.  'Hear him!  Ha, ha, ha!  Of all days \nin the foolish year.  Why, on this day, the great battle was fought \non this ground.  On this ground where we now sit, where I saw my \ntwo girls dance this morning, where the fruit has just been \ngathered for our eating from these trees, the roots of which are \nstruck in Men, not earth, - so many lives were lost, that within my \nrecollection, generations afterwards, a churchyard full of bones, \nand dust of bones, and chips of cloven skulls, has been dug up from \nunderneath our feet here.  Yet not a hundred people in that battle \nknew for what they fought, or why; not a hundred of the \ninconsiderate rejoicers in the victory, why they rejoiced.  Not \nhalf a hundred people were the better for the gain or loss.  Not \nhalf-a-dozen men agree to this hour on the cause or merits; and \nnobody, in short, ever knew anything distinct about it, but the \nmourners of the slain.  Serious, too!' said the Doctor, laughing.  \n'Such a system!'\n\n'But, all this seems to me,' said Alfred, 'to be very serious.'\n\n'Serious!' cried the Doctor.  'If you allowed such things to be \nserious, you must go mad, or die, or climb up to the top of a \nmountain, and turn hermit.'\n\n'Besides - so long ago,' said Alfred.\n\n'Long ago!' returned the Doctor.  'Do you know what the world has \nbeen doing, ever since?  Do you know what else it has been doing?  \nI don't!'\n\n'It has gone to law a little,' observed Mr. Snitchey, stirring his \ntea.\n\n'Although the way out has been always made too easy,' said his \npartner.\n\n'And you'll excuse my saying, Doctor,' pursued Mr. Snitchey, \n'having been already put a thousand times in possession of my \nopinion, in the course of our discussions, that, in its having gone \nto law, and in its legal system altogether, I do observe a serious \nside - now, really, a something tangible, and with a purpose and \nintention in it - '\n\nClemency Newcome made an angular tumble against the table, \noccasioning a sounding clatter among the cups and saucers.\n\n'Heyday! what's the matter there?' exclaimed the Doctor.\n\n'It's this evil-inclined blue bag,' said Clemency, 'always tripping \nup somebody!'\n\n'With a purpose and intention in it, I was saying,' resumed \nSnitchey, 'that commands respect.  Life a farce, Dr. Jeddler?  With \nlaw in it?'\n\nThe Doctor laughed, and looked at Alfred.\n\n'Granted, if you please, that war is foolish,' said Snitchey.  \n'There we agree.  For example.  Here's a smiling country,' pointing \nit out with his fork, 'once overrun by soldiers - trespassers every \nman of 'em - and laid waste by fire and sword.  He, he, he!  The \nidea of any man exposing himself, voluntarily, to fire and sword!  \nStupid, wasteful, positively ridiculous; you laugh at your fellow-\ncreatures, you know, when you think of it!  But take this smiling \ncountry as it stands.  Think of the laws appertaining to real \nproperty; to the bequest and devise of real property; to the \nmortgage and redemption of real property; to leasehold, freehold, \nand copyhold estate; think,' said Mr. Snitchey, with such great \nemotion that he actually smacked his lips, 'of the complicated laws \nrelating to title and proof of title, with all the contradictory \nprecedents and numerous acts of parliament connected with them; \nthink of the infinite number of ingenious and interminable chancery \nsuits, to which this pleasant prospect may give rise; and \nacknowledge, Dr. Jeddler, that there is a green spot in the scheme \nabout us!  I believe,' said Mr. Snitchey, looking at his partner, \n'that I speak for Self and Craggs?'\n\nMr. Craggs having signified assent, Mr. Snitchey, somewhat \nfreshened by his recent eloquence, observed that he would take a \nlittle more beef and another cup of tea.\n\n'I don't stand up for life in general,' he added, rubbing his hands \nand chuckling, 'it's full of folly; full of something worse.  \nProfessions of trust, and confidence, and unselfishness, and all \nthat!  Bah, bah, bah!  We see what they're worth.  But, you mustn't \nlaugh at life; you've got a game to play; a very serious game \nindeed!  Everybody's playing against you, you know, and you're \nplaying against them.  Oh! it's a very interesting thing.  There \nare deep moves upon the board.  You must only laugh, Dr. Jeddler, \nwhen you win - and then not much.  He, he, he!  And then not much,' \nrepeated Snitchey, rolling his head and winking his eye, as if he \nwould have added, 'you may do this instead!'\n\n'Well, Alfred!' cried the Doctor, 'what do you say now?'\n\n'I say, sir,' replied Alfred, 'that the greatest favour you could \ndo me, and yourself too, I am inclined to think, would be to try \nsometimes to forget this battle-field and others like it in that \nbroader battle-field of Life, on which the sun looks every day.'\n\n'Really, I'm afraid that wouldn't soften his opinions, Mr. Alfred,' \nsaid Snitchey.  'The combatants are very eager and very bitter in \nthat same battle of Life.  There's a great deal of cutting and \nslashing, and firing into people's heads from behind.  There is \nterrible treading down, and trampling on.  It is rather a bad \nbusiness.'\n\n'I believe, Mr. Snitchey,' said Alfred, 'there are quiet victories \nand struggles, great sacrifices of self, and noble acts of heroism, \nin it - even in many of its apparent lightnesses and contradictions \n- not the less difficult to achieve, because they have no earthly \nchronicle or audience - done every day in nooks and corners, and in \nlittle households, and in men's and women's hearts - any one of \nwhich might reconcile the sternest man to such a world, and fill \nhim with belief and hope in it, though two-fourths of its people \nwere at war, and another fourth at law; and that's a bold word.'\n\nBoth the sisters listened keenly.\n\n'Well, well!' said the Doctor, 'I am too old to be converted, even \nby my friend Snitchey here, or my good spinster sister, Martha \nJeddler; who had what she calls her domestic trials ages ago, and \nhas led a sympathising life with all sorts of people ever since; \nand who is so much of your opinion (only she's less reasonable and \nmore obstinate, being a woman), that we can't agree, and seldom \nmeet.  I was born upon this battle-field.  I began, as a boy, to \nhave my thoughts directed to the real history of a battle-field.  \nSixty years have gone over my head, and I have never seen the \nChristian world, including Heaven knows how many loving mothers and \ngood enough girls like mine here, anything but mad for a battle-\nfield.  The same contradictions prevail in everything.  One must \neither laugh or cry at such stupendous inconsistencies; and I \nprefer to laugh.'\n\nBritain, who had been paying the profoundest and most melancholy \nattention to each speaker in his turn, seemed suddenly to decide in \nfavour of the same preference, if a deep sepulchral sound that \nescaped him might be construed into a demonstration of risibility.  \nHis face, however, was so perfectly unaffected by it, both before \nand afterwards, that although one or two of the breakfast party \nlooked round as being startled by a mysterious noise, nobody \nconnected the offender with it.\n\nExcept his partner in attendance, Clemency Newcome; who rousing him \nwith one of those favourite joints, her elbows, inquired, in a \nreproachful whisper, what he laughed at.\n\n'Not you!' said Britain.\n\n'Who then?'\n\n'Humanity,' said Britain.  'That's the joke!'\n\n'What between master and them lawyers, he's getting more and more \naddle-headed every day!' cried Clemency, giving him a lunge with \nthe other elbow, as a mental stimulant.  'Do you know where you \nare?  Do you want to get warning?'\n\n'I don't know anything,' said Britain, with a leaden eye and an \nimmovable visage.  'I don't care for anything.  I don't make out \nanything.  I don't believe anything.  And I don't want anything.'\n\nAlthough this forlorn summary of his general condition may have \nbeen overcharged in an access of despondency, Benjamin Britain - \nsometimes called Little Britain, to distinguish him from Great; as \nwe might say Young England, to express Old England with a decided \ndifference - had defined his real state more accurately than might \nbe supposed.  For, serving as a sort of man Miles to the Doctor's \nFriar Bacon, and listening day after day to innumerable orations \naddressed by the Doctor to various people, all tending to show that \nhis very existence was at best a mistake and an absurdity, this \nunfortunate servitor had fallen, by degrees, into such an abyss of \nconfused and contradictory suggestions from within and without, \nthat Truth at the bottom of her well, was on the level surface as \ncompared with Britain in the depths of his mystification.  The only \npoint he clearly comprehended, was, that the new element usually \nbrought into these discussions by Snitchey and Craggs, never served \nto make them clearer, and always seemed to give the Doctor a \nspecies of advantage and confirmation.  Therefore, he looked upon \nthe Firm as one of the proximate causes of his state of mind, and \nheld them in abhorrence accordingly.\n\n'But, this is not our business, Alfred,' said the Doctor.  'Ceasing \nto be my ward (as you have said) to-day; and leaving us full to the \nbrim of such learning as the Grammar School down here was able to \ngive you, and your studies in London could add to that, and such \npractical knowledge as a dull old country Doctor like myself could \ngraft upon both; you are away, now, into the world.  The first term \nof probation appointed by your poor father, being over, away you go \nnow, your own master, to fulfil his second desire.  And long before \nyour three years' tour among the foreign schools of medicine is \nfinished, you'll have forgotten us.  Lord, you'll forget us easily \nin six months!'\n\n'If I do - But you know better; why should I speak to you!' said \nAlfred, laughing.\n\n'I don't know anything of the sort,' returned the Doctor.  'What do \nyou say, Marion?'\n\nMarion, trifling with her teacup, seemed to say - but she didn't \nsay it - that he was welcome to forget, if he could.  Grace pressed \nthe blooming face against her cheek, and smiled.\n\n'I haven't been, I hope, a very unjust steward in the execution of \nmy trust,' pursued the Doctor; 'but I am to be, at any rate, \nformally discharged, and released, and what not this morning; and \nhere are our good friends Snitchey and Craggs, with a bagful of \npapers, and accounts, and documents, for the transfer of the \nbalance of the trust fund to you (I wish it was a more difficult \none to dispose of, Alfred, but you must get to be a great man and \nmake it so), and other drolleries of that sort, which are to be \nsigned, sealed, and delivered.'\n\n'And duly witnessed as by law required,' said Snitchey, pushing \naway his plate, and taking out the papers, which his partner \nproceeded to spread upon the table; 'and Self and Crags having been \nco-trustees with you, Doctor, in so far as the fund was concerned, \nwe shall want your two servants to attest the signatures - can you \nread, Mrs. Newcome?'\n\n'I an't married, Mister,' said Clemency.\n\n'Oh!  I beg your pardon.  I should think not,' chuckled Snitchey, \ncasting his eyes over her extraordinary figure.  'You CAN read?'\n\n'A little,' answered Clemency.\n\n'The marriage service, night and morning, eh?' observed the lawyer, \njocosely.\n\n'No,' said Clemency.  'Too hard.  I only reads a thimble.'\n\n'Read a thimble!' echoed Snitchey.  'What are you talking about, \nyoung woman?'\n\nClemency nodded.  'And a nutmeg-grater.'\n\n'Why, this is a lunatic! a subject for the Lord High Chancellor!' \nsaid Snitchey, staring at her.\n\n- 'If possessed of any property,' stipulated Craggs.\n\nGrace, however, interposing, explained that each of the articles in \nquestion bore an engraved motto, and so formed the pocket library \nof Clemency Newcome, who was not much given to the study of books.\n\n'Oh, that's it, is it, Miss Grace!' said Snitchey.\n\n'Yes, yes.  Ha, ha, ha!  I thought our friend was an idiot.  She \nlooks uncommonly like it,' he muttered, with a supercilious glance.  \n'And what does the thimble say, Mrs. Newcome?'\n\n'I an't married, Mister,' observed Clemency.\n\n'Well, Newcome.  Will that do?' said the lawyer.  'What does the \nthimble say, Newcome?'\n\nHow Clemency, before replying to this question, held one pocket \nopen, and looked down into its yawning depths for the thimble which \nwasn't there, - and how she then held an opposite pocket open, and \nseeming to descry it, like a pearl of great price, at the bottom, \ncleared away such intervening obstacles as a handkerchief, an end \nof wax candle, a flushed apple, an orange, a lucky penny, a cramp \nbone, a padlock, a pair of scissors in a sheath more expressively \ndescribable as promising young shears, a handful or so of loose \nbeads, several balls of cotton, a needle-case, a cabinet collection \nof curl-papers, and a biscuit, all of which articles she entrusted \nindividually and separately to Britain to hold, - is of no \nconsequence.\n\nNor how, in her determination to grasp this pocket by the throat \nand keep it prisoner (for it had a tendency to swing, and twist \nitself round the nearest corner), she assumed and calmly \nmaintained, an attitude apparently inconsistent with the human \nanatomy and the laws of gravity.  It is enough that at last she \ntriumphantly produced the thimble on her finger, and rattled the \nnutmeg-grater:  the literature of both those trinkets being \nobviously in course of wearing out and wasting away, through \nexcessive friction.\n\n'That's the thimble, is it, young woman?' said Mr. Snitchey, \ndiverting himself at her expense.  'And what does the thimble say?'\n\n'It says,' replied Clemency, reading slowly round as if it were a \ntower, 'For-get and For-give.'\n\nSnitchey and Craggs laughed heartily.  'So new!' said Snitchey.  \n'So easy!' said Craggs.  'Such a knowledge of human nature in it!' \nsaid Snitchey.  'So applicable to the affairs of life!' said \nCraggs.\n\n'And the nutmeg-grater?' inquired the head of the Firm.\n\n'The grater says,' returned Clemency, 'Do as you - wold - be - done \nby.'\n\n'Do, or you'll be done brown, you mean,' said Mr. Snitchey.\n\n'I don't understand,' retorted Clemency, shaking her head vaguely.  \n'I an't no lawyer.'\n\n'I am afraid that if she was, Doctor,' said Mr. Snitchey, turning \nto him suddenly, as if to anticipate any effect that might \notherwise be consequent on this retort, 'she'd find it to be the \ngolden rule of half her clients.  They are serious enough in that - \nwhimsical as your world is - and lay the blame on us afterwards.  \nWe, in our profession, are little else than mirrors after all, Mr. \nAlfred; but, we are generally consulted by angry and quarrelsome \npeople who are not in their best looks, and it's rather hard to \nquarrel with us if we reflect unpleasant aspects.  I think,' said \nMr. Snitchey, 'that I speak for Self and Craggs?'\n\n'Decidedly,' said Craggs.\n\n'And so, if Mr. Britain will oblige us with a mouthful of ink,' \nsaid Mr. Snitchey, returning to the papers, 'we'll sign, seal, and \ndeliver as soon as possible, or the coach will be coming past \nbefore we know where we are.'\n\nIf one might judge from his appearance, there was every probability \nof the coach coming past before Mr. Britain knew where HE was; for \nhe stood in a state of abstraction, mentally balancing the Doctor \nagainst the lawyers, and the lawyers against the Doctor, and their \nclients against both, and engaged in feeble attempts to make the \nthimble and nutmeg-grater (a new idea to him) square with anybody's \nsystem of philosophy; and, in short, bewildering himself as much as \never his great namesake has done with theories and schools.  But, \nClemency, who was his good Genius - though he had the meanest \npossible opinion of her understanding, by reason of her seldom \ntroubling herself with abstract speculations, and being always at \nhand to do the right thing at the right time - having produced the \nink in a twinkling, tendered him the further service of recalling \nhim to himself by the application of her elbows; with which gentle \nflappers she so jogged his memory, in a more literal construction \nof that phrase than usual, that he soon became quite fresh and \nbrisk.\n\nHow he laboured under an apprehension not uncommon to persons in \nhis degree, to whom the use of pen and ink is an event, that he \ncouldn't append his name to a document, not of his own writing, \nwithout committing himself in some shadowy manner, or somehow \nsigning away vague and enormous sums of money; and how he \napproached the deeds under protest, and by dint of the Doctor's \ncoercion, and insisted on pausing to look at them before writing \n(the cramped hand, to say nothing of the phraseology, being so much \nChinese to him), and also on turning them round to see whether \nthere was anything fraudulent underneath; and how, having signed \nhis name, he became desolate as one who had parted with his \nproperty and rights; I want the time to tell.  Also, how the blue \nbag containing his signature, afterwards had a mysterious interest \nfor him, and he couldn't leave it; also, how Clemency Newcome, in \nan ecstasy of laughter at the idea of her own importance and \ndignity, brooded over the whole table with her two elbows, like a \nspread eagle, and reposed her head upon her left arm as a \npreliminary to the formation of certain cabalistic characters, \nwhich required a deal of ink, and imaginary counterparts whereof \nshe executed at the same time with her tongue.  Also, how, having \nonce tasted ink, she became thirsty in that regard, as tame tigers \nare said to be after tasting another sort of fluid, and wanted to \nsign everything, and put her name in all kinds of places.  In \nbrief, the Doctor was discharged of his trust and all its \nresponsibilities; and Alfred, taking it on himself, was fairly \nstarted on the journey of life.\n\n'Britain!' said the Doctor.  'Run to the gate, and watch for the \ncoach.  Time flies, Alfred.'\n\n'Yes, sir, yes,' returned the young man, hurriedly.  'Dear Grace! a \nmoment!  Marion - so young and beautiful, so winning and so much \nadmired, dear to my heart as nothing else in life is - remember!  I \nleave Marion to you!'\n\n'She has always been a sacred charge to me, Alfred.  She is doubly \nso, now.  I will be faithful to my trust, believe me.'\n\n'I do believe it, Grace.  I know it well.  Who could look upon your \nface, and hear your voice, and not know it!  Ah, Grace!  If I had \nyour well-governed heart, and tranquil mind, how bravely I would \nleave this place to-day!'\n\n'Would you?' she answered with a quiet smile.\n\n'And yet, Grace - Sister, seems the natural word.'\n\n'Use it!' she said quickly.  'I am glad to hear it.  Call me \nnothing else.'\n\n'And yet, sister, then,' said Alfred, 'Marion and I had better have \nyour true and steadfast qualities serving us here, and making us \nboth happier and better.  I wouldn't carry them away, to sustain \nmyself, if I could!'\n\n'Coach upon the hill-top!' exclaimed Britain.\n\n'Time flies, Alfred,' said the Doctor.\n\nMarion had stood apart, with her eyes fixed upon the ground; but, \nthis warning being given, her young lover brought her tenderly to \nwhere her sister stood, and gave her into her embrace.\n\n'I have been telling Grace, dear Marion,' he said, 'that you are \nher charge; my precious trust at parting.  And when I come back and \nreclaim you, dearest, and the bright prospect of our married life \nlies stretched before us, it shall be one of our chief pleasures to \nconsult how we can make Grace happy; how we can anticipate her \nwishes; how we can show our gratitude and love to her; how we can \nreturn her something of the debt she will have heaped upon us.'\n\nThe younger sister had one hand in his; the other rested on her \nsister's neck.  She looked into that sister's eyes, so calm, \nserene, and cheerful, with a gaze in which affection, admiration, \nsorrow, wonder, almost veneration, were blended.  She looked into \nthat sister's face, as if it were the face of some bright angel.  \nCalm, serene, and cheerful, the face looked back on her and on her \nlover.\n\n'And when the time comes, as it must one day,' said Alfred, - 'I \nwonder it has never come yet, but Grace knows best, for Grace is \nalways right - when SHE will want a friend to open her whole heart \nto, and to be to her something of what she has been to us - then, \nMarion, how faithful we will prove, and what delight to us to know \nthat she, our dear good sister, loves and is loved again, as we \nwould have her!'\n\nStill the younger sister looked into her eyes, and turned not - \neven towards him.  And still those honest eyes looked back, so \ncalm, serene, and cheerful, on herself and on her lover.\n\n'And when all that is past, and we are old, and living (as we \nmust!) together - close together - talking often of old times,' \nsaid Alfred - 'these shall be our favourite times among them - this \nday most of all; and, telling each other what we thought and felt, \nand hoped and feared at parting; and how we couldn't bear to say \ngood bye - '\n\n'Coach coming through the wood!' cried Britain.\n\n'Yes!  I am ready - and how we met again, so happily in spite of \nall; we'll make this day the happiest in all the year, and keep it \nas a treble birth-day.  Shall we, dear?'\n\n'Yes!' interposed the elder sister, eagerly, and with a radiant \nsmile.  'Yes!  Alfred, don't linger.  There's no time.  Say good \nbye to Marion.  And Heaven be with you!'\n\nHe pressed the younger sister to his heart.  Released from his \nembrace, she again clung to her sister; and her eyes, with the same \nblended look, again sought those so calm, serene, and cheerful.\n\n'Farewell, my boy!' said the Doctor.  'To talk about any serious \ncorrespondence or serious affections, and engagements and so forth, \nin such a - ha ha ha! - you know what I mean - why that, of course, \nwould be sheer nonsense.  All I can say is, that if you and Marion \nshould continue in the same foolish minds, I shall not object to \nhave you for a son-in-law one of these days.'\n\n'Over the bridge!' cried Britain.\n\n'Let it come!' said Alfred, wringing the Doctor's hand stoutly.  \n'Think of me sometimes, my old friend and guardian, as seriously as \nyou can!  Adieu, Mr. Snitchey!  Farewell, Mr. Craggs!'\n\n'Coming down the road!' cried Britain.\n\n'A kiss of Clemency Newcome for long acquaintance' sake!  Shake \nhands, Britain!  Marion, dearest heart, good bye!  Sister Grace! \nremember!'\n\nThe quiet household figure, and the face so beautiful in its \nserenity, were turned towards him in reply; but Marion's look and \nattitude remained unchanged.\n\nThe coach was at the gate.  There was a bustle with the luggage.  \nThe coach drove away.  Marion never moved.\n\n'He waves his hat to you, my love,' said Grace.  'Your chosen \nhusband, darling.  Look!'\n\nThe younger sister raised her head, and, for a moment, turned it.  \nThen, turning back again, and fully meeting, for the first time, \nthose calm eyes, fell sobbing on her neck.\n\n'Oh, Grace.  God bless you!  But I cannot bear to see it, Grace!  \nIt breaks my heart.'\n\n\n\nCHAPTER II - Part The Second\n\n\n\nSNITCHEY AND CRAGGS had a snug little office on the old Battle \nGround, where they drove a snug little business, and fought a great \nmany small pitched battles for a great many contending parties.  \nThough it could hardly be said of these conflicts that they were \nrunning fights - for in truth they generally proceeded at a snail's \npace - the part the Firm had in them came so far within the general \ndenomination, that now they took a shot at this Plaintiff, and now \naimed a chop at that Defendant, now made a heavy charge at an \nestate in Chancery, and now had some light skirmishing among an \nirregular body of small debtors, just as the occasion served, and \nthe enemy happened to present himself.  The Gazette was an \nimportant and profitable feature in some of their fields, as in \nfields of greater renown; and in most of the Actions wherein they \nshowed their generalship, it was afterwards observed by the \ncombatants that they had had great difficulty in making each other \nout, or in knowing with any degree of distinctness what they were \nabout, in consequence of the vast amount of smoke by which they \nwere surrounded.\n\nThe offices of Messrs. Snitchey and Craggs stood convenient, with \nan open door down two smooth steps, in the market-place; so that \nany angry farmer inclining towards hot water, might tumble into it \nat once.  Their special council-chamber and hall of conference was \nan old back-room up-stairs, with a low dark ceiling, which seemed \nto be knitting its brows gloomily in the consideration of tangled \npoints of law.  It was furnished with some high-backed leathern \nchairs, garnished with great goggle-eyed brass nails, of which, \nevery here and there, two or three had fallen out - or had been \npicked out, perhaps, by the wandering thumbs and forefingers of \nbewildered clients.  There was a framed print of a great judge in \nit, every curl in whose dreadful wig had made a man's hair stand on \nend.  Bales of papers filled the dusty closets, shelves, and \ntables; and round the wainscot there were tiers of boxes, padlocked \nand fireproof, with people's names painted outside, which anxious \nvisitors felt themselves, by a cruel enchantment, obliged to spell \nbackwards and forwards, and to make anagrams of, while they sat, \nseeming to listen to Snitchey and Craggs, without comprehending one \nword of what they said.\n\nSnitchey and Craggs had each, in private life as in professional \nexistence, a partner of his own.  Snitchey and Craggs were the best \nfriends in the world, and had a real confidence in one another; but \nMrs. Snitchey, by a dispensation not uncommon in the affairs of \nlife, was on principle suspicious of Mr. Craggs; and Mrs. Craggs \nwas on principle suspicious of Mr. Snitchey.  'Your Snitcheys \nindeed,' the latter lady would observe, sometimes, to Mr. Craggs; \nusing that imaginative plural as if in disparagement of an \nobjectionable pair of pantaloons, or other articles not possessed \nof a singular number; 'I don't see what you want with your \nSnitcheys, for my part.  You trust a great deal too much to your \nSnitcheys, I think, and I hope you may never find my words come \ntrue.'  While Mrs. Snitchey would observe to Mr. Snitchey, of \nCraggs, 'that if ever he was led away by man he was led away by \nthat man, and that if ever she read a double purpose in a mortal \neye, she read that purpose in Craggs's eye.'  Notwithstanding this, \nhowever, they were all very good friends in general:  and Mrs. \nSnitchey and Mrs. Craggs maintained a close bond of alliance \nagainst 'the office,' which they both considered the Blue chamber, \nand common enemy, full of dangerous (because unknown) machinations.\n\nIn this office, nevertheless, Snitchey and Craggs made honey for \ntheir several hives.  Here, sometimes, they would linger, of a fine \nevening, at the window of their council-chamber overlooking the old \nbattle-ground, and wonder (but that was generally at assize time, \nwhen much business had made them sentimental) at the folly of \nmankind, who couldn't always be at peace with one another and go to \nlaw comfortably.  Here, days, and weeks, and months, and years, \npassed over them:  their calendar, the gradually diminishing number \nof brass nails in the leathern chairs, and the increasing bulk of \npapers on the tables.  Here, nearly three years' flight had thinned \nthe one and swelled the other, since the breakfast in the orchard; \nwhen they sat together in consultation at night.\n\nNot alone; but, with a man of about thirty, or that time of life, \nnegligently dressed, and somewhat haggard in the face, but well-\nmade, well-attired, and well-looking, who sat in the armchair of \nstate, with one hand in his breast, and the other in his \ndishevelled hair, pondering moodily.  Messrs. Snitchey and Craggs \nsat opposite each other at a neighbouring desk.  One of the \nfireproof boxes, unpadlocked and opened, was upon it; a part of its \ncontents lay strewn upon the table, and the rest was then in course \nof passing through the hands of Mr. Snitchey; who brought it to the \ncandle, document by document; looked at every paper singly, as he \nproduced it; shook his head, and handed it to Mr. Craggs; who \nlooked it over also, shook his head, and laid it down.  Sometimes, \nthey would stop, and shaking their heads in concert, look towards \nthe abstracted client.  And the name on the box being Michael \nWarden, Esquire, we may conclude from these premises that the name \nand the box were both his, and that the affairs of Michael Warden, \nEsquire, were in a bad way.\n\n'That's all,' said Mr. Snitchey, turning up the last paper.  \n'Really there's no other resource.  No other resource.'\n\n'All lost, spent, wasted, pawned, borrowed, and sold, eh?' said the \nclient, looking up.\n\n'All,' returned Mr. Snitchey.\n\n'Nothing else to be done, you say?'\n\n'Nothing at all.'\n\nThe client bit his nails, and pondered again.\n\n'And I am not even personally safe in England?  You hold to that, \ndo you?'\n\n'In no part of the United Kingdom of Great Britain and Ireland,' \nreplied Mr. Snitchey.\n\n'A mere prodigal son with no father to go back to, no swine to \nkeep, and no husks to share with them?  Eh?' pursued the client, \nrocking one leg over the other, and searching the ground with his \neyes.\n\nMr. Snitchey coughed, as if to deprecate the being supposed to \nparticipate in any figurative illustration of a legal position.  \nMr. Craggs, as if to express that it was a partnership view of the \nsubject, also coughed.\n\n'Ruined at thirty!' said the client.  'Humph!'\n\n'Not ruined, Mr. Warden,' returned Snitchey.  'Not so bad as that.  \nYou have done a good deal towards it, I must say, but you are not \nruined.  A little nursing - '\n\n'A little Devil,' said the client.\n\n'Mr. Craggs,' said Snitchey, 'will you oblige me with a pinch of \nsnuff?  Thank you, sir.'\n\nAs the imperturbable lawyer applied it to his nose with great \napparent relish and a perfect absorption of his attention in the \nproceeding, the client gradually broke into a smile, and, looking \nup, said:\n\n'You talk of nursing.  How long nursing?'\n\n'How long nursing?' repeated Snitchey, dusting the snuff from his \nfingers, and making a slow calculation in his mind.  'For your \ninvolved estate, sir?  In good hands? S. and C.'s, say?  Six or \nseven years.'\n\n'To starve for six or seven years!' said the client with a fretful \nlaugh, and an impatient change of his position.\n\n'To starve for six or seven years, Mr. Warden,' said Snitchey, \n'would be very uncommon indeed.  You might get another estate by \nshowing yourself, the while.  But, we don't think you could do it - \nspeaking for Self and Craggs - and consequently don't advise it.'\n\n'What DO you advise?'\n\n'Nursing, I say,' repeated Snitchey.  'Some few years of nursing by \nSelf and Craggs would bring it round.  But to enable us to make \nterms, and hold terms, and you to keep terms, you must go away; you \nmust live abroad.  As to starvation, we could ensure you some \nhundreds a-year to starve upon, even in the beginning - I dare say, \nMr. Warden.'\n\n'Hundreds,' said the client.  'And I have spent thousands!'\n\n'That,' retorted Mr. Snitchey, putting the papers slowly back into \nthe cast-iron box, 'there is no doubt about.  No doubt about,' he \nrepeated to himself, as he thoughtfully pursued his occupation.\n\nThe lawyer very likely knew HIS man; at any rate his dry, shrewd, \nwhimsical manner, had a favourable influence on the client's moody \nstate, and disposed him to be more free and unreserved.  Or, \nperhaps the client knew HIS man, and had elicited such \nencouragement as he had received, to render some purpose he was \nabout to disclose the more defensible in appearance.  Gradually \nraising his head, he sat looking at his immovable adviser with a \nsmile, which presently broke into a laugh.\n\n'After all,' he said, 'my iron-headed friend - '\n\nMr. Snitchey pointed out his partner.  'Self and - excuse me - \nCraggs.'\n\n'I beg Mr. Craggs's pardon,' said the client.  'After all, my iron-\nheaded friends,' he leaned forward in his chair, and dropped his \nvoice a little, 'you don't know half my ruin yet.'\n\nMr. Snitchey stopped and stared at him.  Mr. Craggs also stared.\n\n'I am not only deep in debt,' said the client, 'but I am deep in - \n'\n\n'Not in love!' cried Snitchey.\n\n'Yes!' said the client, falling back in his chair, and surveying \nthe Firm with his hands in his pockets.  'Deep in love.'\n\n'And not with an heiress, sir?' said Snitchey.\n\n'Not with an heiress.'\n\n'Nor a rich lady?'\n\n'Nor a rich lady that I know of - except in beauty and merit.'\n\n'A single lady, I trust?' said Mr. Snitchey, with great expression.\n\n'Certainly.'\n\n'It's not one of Dr. Jeddler's daughters?' said Snitchey, suddenly \nsquaring his elbows on his knees, and advancing his face at least a \nyard.\n\n'Yes!' returned the client.\n\n'Not his younger daughter?' said Snitchey.\n\n'Yes!' returned the client.\n\n'Mr. Craggs,' said Snitchey, much relieved, 'will you oblige me \nwith another pinch of snuff?  Thank you!  I am happy to say it \ndon't signify, Mr. Warden; she's engaged, sir, she's bespoke.  My \npartner can corroborate me.  We know the fact.'\n\n'We know the fact,' repeated Craggs.\n\n'Why, so do I perhaps,' returned the client quietly.  'What of \nthat!  Are you men of the world, and did you never hear of a woman \nchanging her mind?'\n\n'There certainly have been actions for breach,' said Mr. Snitchey, \n'brought against both spinsters and widows, but, in the majority of \ncases - '\n\n'Cases!' interposed the client, impatiently.  'Don't talk to me of \ncases.  The general precedent is in a much larger volume than any \nof your law books.  Besides, do you think I have lived six weeks in \nthe Doctor's house for nothing?'\n\n'I think, sir,' observed Mr. Snitchey, gravely addressing himself \nto his partner, 'that of all the scrapes Mr. Warden's horses have \nbrought him into at one time and another - and they have been \npretty numerous, and pretty expensive, as none know better than \nhimself, and you, and I - the worst scrape may turn out to be, if \nhe talks in this way, this having ever been left by one of them at \nthe Doctor's garden wall, with three broken ribs, a snapped collar-\nbone, and the Lord knows how many bruises.  We didn't think so much \nof it, at the time when we knew he was going on well under the \nDoctor's hands and roof; but it looks bad now, sir.  Bad?  It looks \nvery bad.  Doctor Jeddler too - our client, Mr. Craggs.'\n\n'Mr. Alfred Heathfield too - a sort of client, Mr. Snitchey,' said \nCraggs.\n\n'Mr. Michael Warden too, a kind of client,' said the careless \nvisitor, 'and no bad one either:  having played the fool for ten or \ntwelve years.  However, Mr. Michael Warden has sown his wild oats \nnow - there's their crop, in that box; and he means to repent and \nbe wise.  And in proof of it, Mr. Michael Warden means, if he can, \nto marry Marion, the Doctor's lovely daughter, and to carry her \naway with him.'\n\n'Really, Mr. Craggs,' Snitchey began.\n\n'Really, Mr. Snitchey, and Mr. Craggs, partners both,' said the \nclient, interrupting him; 'you know your duty to your clients, and \nyou know well enough, I am sure, that it is no part of it to \ninterfere in a mere love affair, which I am obliged to confide to \nyou.  I am not going to carry the young lady off, without her own \nconsent.  There's nothing illegal in it.  I never was Mr. \nHeathfield's bosom friend.  I violate no confidence of his.  I love \nwhere he loves, and I mean to win where he would win, if I can.'\n\n'He can't, Mr. Craggs,' said Snitchey, evidently anxious and \ndiscomfited.  'He can't do it, sir.  She dotes on Mr. Alfred.'\n\n'Does she?' returned the client.\n\n'Mr. Craggs, she dotes on him, sir,' persisted Snitchey.\n\n'I didn't live six weeks, some few months ago, in the Doctor's \nhouse for nothing; and I doubted that soon,' observed the client.  \n'She would have doted on him, if her sister could have brought it \nabout; but I watched them.  Marion avoided his name, avoided the \nsubject:  shrunk from the least allusion to it, with evident \ndistress.'\n\n'Why should she, Mr. Craggs, you know?  Why should she, sir?' \ninquired Snitchey.\n\n'I don't know why she should, though there are many likely \nreasons,' said the client, smiling at the attention and perplexity \nexpressed in Mr. Snitchey's shining eye, and at his cautious way of \ncarrying on the conversation, and making himself informed upon the \nsubject; 'but I know she does.  She was very young when she made \nthe engagement - if it may be called one, I am not even sure of \nthat - and has repented of it, perhaps.  Perhaps - it seems a \nfoppish thing to say, but upon my soul I don't mean it in that \nlight - she may have fallen in love with me, as I have fallen in \nlove with her.'\n\n'He, he!  Mr. Alfred, her old playfellow too, you remember, Mr. \nCraggs,' said Snitchey, with a disconcerted laugh; 'knew her almost \nfrom a baby!'\n\n'Which makes it the more probable that she may be tired of his \nidea,' calmly pursued the client, 'and not indisposed to exchange \nit for the newer one of another lover, who presents himself (or is \npresented by his horse) under romantic circumstances; has the not \nunfavourable reputation - with a country girl - of having lived \nthoughtlessly and gaily, without doing much harm to anybody; and \nwho, for his youth and figure, and so forth - this may seem foppish \nagain, but upon my soul I don't mean it in that light - might \nperhaps pass muster in a crowd with Mr. Alfred himself.'\n\nThere was no gainsaying the last clause, certainly; and Mr. \nSnitchey, glancing at him, thought so.  There was something \nnaturally graceful and pleasant in the very carelessness of his \nair.  It seemed to suggest, of his comely face and well-knit \nfigure, that they might be greatly better if he chose:  and that, \nonce roused and made earnest (but he never had been earnest yet), \nhe could be full of fire and purpose.  'A dangerous sort of \nlibertine,' thought the shrewd lawyer, 'to seem to catch the spark \nhe wants, from a young lady's eyes.'\n\n'Now, observe, Snitchey,' he continued, rising and taking him by \nthe button, 'and Craggs,' taking him by the button also, and \nplacing one partner on either side of him, so that neither might \nevade him.  'I don't ask you for any advice.  You are right to keep \nquite aloof from all parties in such a matter, which is not one in \nwhich grave men like you could interfere, on any side.  I am \nbriefly going to review in half-a-dozen words, my position and \nintention, and then I shall leave it to you to do the best for me, \nin money matters, that you can:  seeing, that, if I run away with \nthe Doctor's beautiful daughter (as I hope to do, and to become \nanother man under her bright influence), it will be, for the \nmoment, more chargeable than running away alone.  But I shall soon \nmake all that up in an altered life.'\n\n'I think it will be better not to hear this, Mr. Craggs?' said \nSnitchey, looking at him across the client.\n\n'I think not,' said Craggs. - Both listened attentively.\n\n'Well!  You needn't hear it,' replied their client.  'I'll mention \nit, however.  I don't mean to ask the Doctor's consent, because he \nwouldn't give it me.  But I mean to do the Doctor no wrong or harm, \nbecause (besides there being nothing serious in such trifles, as he \nsays) I hope to rescue his child, my Marion, from what I see - I \nKNOW - she dreads, and contemplates with misery:  that is, the \nreturn of this old lover.  If anything in the world is true, it is \ntrue that she dreads his return.  Nobody is injured so far.  I am \nso harried and worried here just now, that I lead the life of a \nflying-fish.  I skulk about in the dark, I am shut out of my own \nhouse, and warned off my own grounds; but, that house, and those \ngrounds, and many an acre besides, will come back to me one day, as \nyou know and say; and Marion will probably be richer - on your \nshowing, who are never sanguine - ten years hence as my wife, than \nas the wife of Alfred Heathfield, whose return she dreads (remember \nthat), and in whom or in any man, my passion is not surpassed.  Who \nis injured yet?  It is a fair case throughout.  My right is as good \nas his, if she decide in my favour; and I will try my right by her \nalone.  You will like to know no more after this, and I will tell \nyou no more.  Now you know my purpose, and wants.  When must I \nleave here?'\n\n'In a week,' said Snitchey.  'Mr. Craggs?'\n\n'In something less, I should say,' responded Craggs.\n\n'In a month,' said the client, after attentively watching the two \nfaces.  'This day month.  To-day is Thursday.  Succeed or fail, on \nthis day month I go.'\n\n'It's too long a delay,' said Snitchey; 'much too long.  But let it \nbe so.  I thought he'd have stipulated for three,' he murmured to \nhimself.  'Are you going?  Good night, sir!'\n\n'Good night!' returned the client, shaking hands with the Firm.\n\n'You'll live to see me making a good use of riches yet.  Henceforth \nthe star of my destiny is, Marion!'\n\n'Take care of the stairs, sir,' replied Snitchey; 'for she don't \nshine there.  Good night!'\n\n'Good night!'\n\nSo they both stood at the stair-head with a pair of office-candles, \nwatching him down.  When he had gone away, they stood looking at \neach other.\n\n'What do you think of all this, Mr. Craggs?' said Snitchey.\n\nMr. Craggs shook his head.\n\n'It was our opinion, on the day when that release was executed, \nthat there was something curious in the parting of that pair; I \nrecollect,' said Snitchey.\n\n'It was,' said Mr. Craggs.\n\n'Perhaps he deceives himself altogether,' pursued Mr. Snitchey, \nlocking up the fireproof box, and putting it away; 'or, if he \ndon't, a little bit of fickleness and perfidy is not a miracle, Mr. \nCraggs.  And yet I thought that pretty face was very true.  I \nthought,' said Mr. Snitchey, putting on his great-coat (for the \nweather was very cold), drawing on his gloves, and snuffing out one \ncandle, 'that I had even seen her character becoming stronger and \nmore resolved of late.  More like her sister's.'\n\n'Mrs. Craggs was of the same opinion,' returned Craggs.\n\n'I'd really give a trifle to-night,' observed Mr. Snitchey, who was \na good-natured man, 'if I could believe that Mr. Warden was \nreckoning without his host; but, light-headed, capricious, and \nunballasted as he is, he knows something of the world and its \npeople (he ought to, for he has bought what he does know, dear \nenough); and I can't quite think that.  We had better not \ninterfere:  we can do nothing, Mr. Craggs, but keep quiet.'\n\n'Nothing,' returned Craggs.\n\n'Our friend the Doctor makes light of such things,' said Mr. \nSnitchey, shaking his head.  'I hope he mayn't stand in need of his \nphilosophy.  Our friend Alfred talks of the battle of life,' he \nshook his head again, 'I hope he mayn't be cut down early in the \nday.  Have you got your hat, Mr. Craggs?  I am going to put the \nother candle out.'  Mr. Craggs replying in the affirmative, Mr. \nSnitchey suited the action to the word, and they groped their way \nout of the council-chamber, now dark as the subject, or the law in \ngeneral.\n\n\nMy story passes to a quiet little study, where, on that same night, \nthe sisters and the hale old Doctor sat by a cheerful fireside.  \nGrace was working at her needle.  Marion read aloud from a book \nbefore her.  The Doctor, in his dressing-gown and slippers, with \nhis feet spread out upon the warm rug, leaned back in his easy-\nchair, and listened to the book, and looked upon his daughters.\n\nThey were very beautiful to look upon.  Two better faces for a \nfireside, never made a fireside bright and sacred.  Something of \nthe difference between them had been softened down in three years' \ntime; and enthroned upon the clear brow of the younger sister, \nlooking through her eyes, and thrilling in her voice, was the same \nearnest nature that her own motherless youth had ripened in the \nelder sister long ago.  But she still appeared at once the lovelier \nand weaker of the two; still seemed to rest her head upon her \nsister's breast, and put her trust in her, and look into her eyes \nfor counsel and reliance.  Those loving eyes, so calm, serene, and \ncheerful, as of old.\n\n'\"And being in her own home,\"' read Marion, from the book; '\"her \nhome made exquisitely dear by these remembrances, she now began to \nknow that the great trial of her heart must soon come on, and could \nnot be delayed.  O Home, our comforter and friend when others fall \naway, to part with whom, at any step between the cradle and the \ngrave\"'-\n\n'Marion, my love!' said Grace.\n\n'Why, Puss!' exclaimed her father, 'what's the matter?'\n\nShe put her hand upon the hand her sister stretched towards her, \nand read on; her voice still faltering and trembling, though she \nmade an effort to command it when thus interrupted.\n\n'\"To part with whom, at any step between the cradle and the grave, \nis always sorrowful.  O Home, so true to us, so often slighted in \nreturn, be lenient to them that turn away from thee, and do not \nhaunt their erring footsteps too reproachfully!  Let no kind looks, \nno well-remembered smiles, be seen upon thy phantom face.  Let no \nray of affection, welcome, gentleness, forbearance, cordiality, \nshine from thy white head.  Let no old loving word, or tone, rise \nup in judgment against thy deserter; but if thou canst look harshly \nand severely, do, in mercy to the Penitent!\"'\n\n'Dear Marion, read no more to-night,' said Grace for she was \nweeping.\n\n'I cannot,' she replied, and closed the book.  'The words seem all \non fire!'\n\nThe Doctor was amused at this; and laughed as he patted her on the \nhead.\n\n'What! overcome by a story-book!' said Doctor Jeddler.  'Print and \npaper!  Well, well, it's all one.  It's as rational to make a \nserious matter of print and paper as of anything else.  But, dry \nyour eyes, love, dry your eyes.  I dare say the heroine has got \nhome again long ago, and made it up all round - and if she hasn't, \na real home is only four walls; and a fictitious one, mere rags and \nink.  What's the matter now?'\n\n'It's only me, Mister,' said Clemency, putting in her head at the \ndoor.\n\n'And what's the matter with YOU?' said the Doctor.\n\n'Oh, bless you, nothing an't the matter with me,' returned Clemency \n- and truly too, to judge from her well-soaped face, in which there \ngleamed as usual the very soul of good-humour, which, ungainly as \nshe was, made her quite engaging.  Abrasions on the elbows are not \ngenerally understood, it is true, to range within that class of \npersonal charms called beauty-spots.  But, it is better, going \nthrough the world, to have the arms chafed in that narrow passage, \nthan the temper:  and Clemency's was sound and whole as any \nbeauty's in the land.\n\n'Nothing an't the matter with me,' said Clemency, entering, 'but - \ncome a little closer, Mister.'\n\nThe Doctor, in some astonishment, complied with this invitation.\n\n'You said I wasn't to give you one before them, you know,' said \nClemency.\n\nA novice in the family might have supposed, from her extraordinary \nogling as she said it, as well as from a singular rapture or \necstasy which pervaded her elbows, as if she were embracing \nherself, that 'one,' in its most favourable interpretation, meant a \nchaste salute.  Indeed the Doctor himself seemed alarmed, for the \nmoment; but quickly regained his composure, as Clemency, having had \nrecourse to both her pockets - beginning with the right one, going \naway to the wrong one, and afterwards coming back to the right one \nagain - produced a letter from the Post-office.\n\n'Britain was riding by on a errand,' she chuckled, handing it to \nthe Doctor, 'and see the mail come in, and waited for it.  There's \nA. H. in the corner.  Mr. Alfred's on his journey home, I bet.  We \nshall have a wedding in the house - there was two spoons in my \nsaucer this morning.  Oh Luck, how slow he opens it!'\n\nAll this she delivered, by way of soliloquy, gradually rising \nhigher and higher on tiptoe, in her impatience to hear the news, \nand making a corkscrew of her apron, and a bottle of her mouth.  At \nlast, arriving at a climax of suspense, and seeing the Doctor still \nengaged in the perusal of the letter, she came down flat upon the \nsoles of her feet again, and cast her apron, as a veil, over her \nhead, in a mute despair, and inability to bear it any longer.\n\n'Here!  Girls!' cried the Doctor.  'I can't help it:  I never could \nkeep a secret in my life.  There are not many secrets, indeed, \nworth being kept in such a - well! never mind that.  Alfred's \ncoming home, my dears, directly.'\n\n'Directly!' exclaimed Marion.\n\n'What!  The story-book is soon forgotten!' said the Doctor, \npinching her cheek.  'I thought the news would dry those tears.  \nYes.  \"Let it be a surprise,\" he says, here.  But I can't let it be \na surprise.  He must have a welcome.'\n\n'Directly!' repeated Marion.\n\n'Why, perhaps not what your impatience calls \"directly,\"' returned \nthe doctor; 'but pretty soon too.  Let us see.  Let us see.  To-day \nis Thursday, is it not?  Then he promises to be here, this day \nmonth.'\n\n'This day month!' repeated Marion, softly.\n\n'A gay day and a holiday for us,' said the cheerful voice of her \nsister Grace, kissing her in congratulation.  'Long looked forward \nto, dearest, and come at last.'\n\nShe answered with a smile; a mournful smile, but full of sisterly \naffection.  As she looked in her sister's face, and listened to the \nquiet music of her voice, picturing the happiness of this return, \nher own face glowed with hope and joy.\n\nAnd with a something else; a something shining more and more \nthrough all the rest of its expression; for which I have no name.  \nIt was not exultation, triumph, proud enthusiasm.  They are not so \ncalmly shown.  It was not love and gratitude alone, though love and \ngratitude were part of it.  It emanated from no sordid thought, for \nsordid thoughts do not light up the brow, and hover on the lips, \nand move the spirit like a fluttered light, until the sympathetic \nfigure trembles.\n\nDr. Jeddler, in spite of his system of philosophy - which he was \ncontinually contradicting and denying in practice, but more famous \nphilosophers have done that - could not help having as much \ninterest in the return of his old ward and pupil as if it had been \na serious event.  So he sat himself down in his easy-chair again, \nstretched out his slippered feet once more upon the rug, read the \nletter over and over a great many times, and talked it over more \ntimes still.\n\n'Ah!  The day was,' said the Doctor, looking at the fire, 'when you \nand he, Grace, used to trot about arm-in-arm, in his holiday time, \nlike a couple of walking dolls.  You remember?'\n\n'I remember,' she answered, with her pleasant laugh, and plying her \nneedle busily.\n\n'This day month, indeed!' mused the Doctor.  'That hardly seems a \ntwelve month ago.  And where was my little Marion then!'\n\n'Never far from her sister,' said Marion, cheerily, 'however \nlittle.  Grace was everything to me, even when she was a young \nchild herself.'\n\n'True, Puss, true,' returned the Doctor.  'She was a staid little \nwoman, was Grace, and a wise housekeeper, and a busy, quiet, \npleasant body; bearing with our humours and anticipating our \nwishes, and always ready to forget her own, even in those times.  I \nnever knew you positive or obstinate, Grace, my darling, even then, \non any subject but one.'\n\n'I am afraid I have changed sadly for the worse, since,' laughed \nGrace, still busy at her work.  'What was that one, father?'\n\n'Alfred, of course,' said the Doctor.  'Nothing would serve you but \nyou must be called Alfred's wife; so we called you Alfred's wife; \nand you liked it better, I believe (odd as it seems now), than \nbeing called a Duchess, if we could have made you one.'\n\n'Indeed?' said Grace, placidly.\n\n'Why, don't you remember?' inquired the Doctor.\n\n'I think I remember something of it,' she returned, 'but not much.  \nIt's so long ago.'  And as she sat at work, she hummed the burden \nof an old song, which the Doctor liked.\n\n'Alfred will find a real wife soon,' she said, breaking off; 'and \nthat will be a happy time indeed for all of us.  My three years' \ntrust is nearly at an end, Marion.  It has been a very easy one.  I \nshall tell Alfred, when I give you back to him, that you have loved \nhim dearly all the time, and that he has never once needed my good \nservices.  May I tell him so, love?'\n\n'Tell him, dear Grace,' replied Marion, 'that there never was a \ntrust so generously, nobly, steadfastly discharged; and that I have \nloved YOU, all the time, dearer and dearer every day; and O! how \ndearly now!'\n\n'Nay,' said her cheerful sister, returning her embrace, 'I can \nscarcely tell him that; we will leave my deserts to Alfred's \nimagination.  It will be liberal enough, dear Marion; like your \nown.'\n\nWith that, she resumed the work she had for a moment laid down, \nwhen her sister spoke so fervently:  and with it the old song the \nDoctor liked to hear.  And the Doctor, still reposing in his easy-\nchair, with his slippered feet stretched out before him on the rug, \nlistened to the tune, and beat time on his knee with Alfred's \nletter, and looked at his two daughters, and thought that among the \nmany trifles of the trifling world, these trifles were agreeable \nenough.\n\nClemency Newcome, in the meantime, having accomplished her mission \nand lingered in the room until she had made herself a party to the \nnews, descended to the kitchen, where her coadjutor, Mr. Britain, \nwas regaling after supper, surrounded by such a plentiful \ncollection of bright pot-lids, well-scoured saucepans, burnished \ndinner-covers, gleaming kettles, and other tokens of her \nindustrious habits, arranged upon the walls and shelves, that he \nsat as in the centre of a hall of mirrors.  The majority did not \ngive forth very flattering portraits of him, certainly; nor were \nthey by any means unanimous in their reflections; as some made him \nvery long-faced, others very broad-faced, some tolerably well-\nlooking, others vastly ill-looking, according to their several \nmanners of reflecting:  which were as various, in respect of one \nfact, as those of so many kinds of men.  But they all agreed that \nin the midst of them sat, quite at his ease, an individual with a \npipe in his mouth, and a jug of beer at his elbow, who nodded \ncondescendingly to Clemency, when she stationed herself at the same \ntable.\n\n'Well, Clemmy,' said Britain, 'how are you by this time, and what's \nthe news?'\n\nClemency told him the news, which he received very graciously.  A \ngracious change had come over Benjamin from head to foot.  He was \nmuch broader, much redder, much more cheerful, and much jollier in \nall respects.  It seemed as if his face had been tied up in a knot \nbefore, and was now untwisted and smoothed out.\n\n'There'll be another job for Snitchey and Craggs, I suppose,' he \nobserved, puffing slowly at his pipe.  'More witnessing for you and \nme, perhaps, Clemmy!'\n\n'Lor!' replied his fair companion, with her favourite twist of her \nfavourite joints.  'I wish it was me, Britain!'\n\n'Wish what was you?'\n\n'A-going to be married,' said Clemency.\n\nBenjamin took his pipe out of his mouth and laughed heartily.  \n'Yes! you're a likely subject for that!' he said.  'Poor Clem!'  \nClemency for her part laughed as heartily as he, and seemed as much \namused by the idea.  'Yes,' she assented, 'I'm a likely subject for \nthat; an't I?'\n\n'YOU'LL never be married, you know,' said Mr. Britain, resuming his \npipe.\n\n'Don't you think I ever shall though?' said Clemency, in perfect \ngood faith.\n\nMr. Britain shook his head.  'Not a chance of it!'\n\n'Only think!' said Clemency.  'Well! - I suppose you mean to, \nBritain, one of these days; don't you?'\n\nA question so abrupt, upon a subject so momentous, required \nconsideration.  After blowing out a great cloud of smoke, and \nlooking at it with his head now on this side and now on that, as if \nit were actually the question, and he were surveying it in various \naspects, Mr. Britain replied that he wasn't altogether clear about \nit, but - ye-es - he thought he might come to that at last.\n\n'I wish her joy, whoever she may be!' cried Clemency.\n\n'Oh she'll have that,' said Benjamin, 'safe enough.'\n\n'But she wouldn't have led quite such a joyful life as she will \nlead, and wouldn't have had quite such a sociable sort of husband \nas she will have,' said Clemency, spreading herself half over the \ntable, and staring retrospectively at the candle, 'if it hadn't \nbeen for - not that I went to do it, for it was accidental, I am \nsure - if it hadn't been for me; now would she, Britain?'\n\n'Certainly not,' returned Mr. Britain, by this time in that high \nstate of appreciation of his pipe, when a man can open his mouth \nbut a very little way for speaking purposes; and sitting \nluxuriously immovable in his chair, can afford to turn only his \neyes towards a companion, and that very passively and gravely.  \n'Oh!  I'm greatly beholden to you, you know, Clem.'\n\n'Lor, how nice that is to think of!' said Clemency.\n\nAt the same time, bringing her thoughts as well as her sight to \nbear upon the candle-grease, and becoming abruptly reminiscent of \nits healing qualities as a balsam, she anointed her left elbow with \na plentiful application of that remedy.\n\n'You see I've made a good many investigations of one sort and \nanother in my time,' pursued Mr. Britain, with the profundity of a \nsage, 'having been always of an inquiring turn of mind; and I've \nread a good many books about the general Rights of things and \nWrongs of things, for I went into the literary line myself, when I \nbegan life.'\n\n'Did you though!' cried the admiring Clemency.\n\n'Yes,' said Mr. Britain:  'I was hid for the best part of two years \nbehind a bookstall, ready to fly out if anybody pocketed a volume; \nand after that, I was light porter to a stay and mantua maker, in \nwhich capacity I was employed to carry about, in oilskin baskets, \nnothing but deceptions - which soured my spirits and disturbed my \nconfidence in human nature; and after that, I heard a world of \ndiscussions in this house, which soured my spirits fresh; and my \nopinion after all is, that, as a safe and comfortable sweetener of \nthe same, and as a pleasant guide through life, there's nothing \nlike a nutmeg-grater.'\n\nClemency was about to offer a suggestion, but he stopped her by \nanticipating it.\n\n'Com-bined,' he added gravely, 'with a thimble.'\n\n'Do as you wold, you know, and cetrer, eh!' observed Clemency, \nfolding her arms comfortably in her delight at this avowal, and \npatting her elbows.  'Such a short cut, an't it?'\n\n'I'm not sure,' said Mr. Britain, 'that it's what would be \nconsidered good philosophy.  I've my doubts about that; but it \nwears well, and saves a quantity of snarling, which the genuine \narticle don't always.'\n\n'See how you used to go on once, yourself, you know!' said \nClemency.\n\n'Ah!' said Mr. Britain.  'But the most extraordinary thing, Clemmy, \nis that I should live to be brought round, through you.  That's the \nstrange part of it.  Through you!  Why, I suppose you haven't so \nmuch as half an idea in your head.'\n\nClemency, without taking the least offence, shook it, and laughed \nand hugged herself, and said, 'No, she didn't suppose she had.'\n\n'I'm pretty sure of it,' said Mr. Britain.\n\n'Oh!  I dare say you're right,' said Clemency.  'I don't pretend to \nnone.  I don't want any.'\n\nBenjamin took his pipe from his lips, and laughed till the tears \nran down his face.  'What a natural you are, Clemmy!' he said, \nshaking his head, with an infinite relish of the joke, and wiping \nhis eyes.  Clemency, without the smallest inclination to dispute \nit, did the like, and laughed as heartily as he.\n\n'I can't help liking you,' said Mr. Britain; 'you're a regular good \ncreature in your way, so shake hands, Clem.  Whatever happens, I'll \nalways take notice of you, and be a friend to you.'\n\n'Will you?' returned Clemency.  'Well! that's very good of you.'\n\n'Yes, yes,' said Mr. Britain, giving her his pipe to knock the \nashes out of it; 'I'll stand by you.  Hark!  That's a curious \nnoise!'\n\n'Noise!' repeated Clemency.\n\n'A footstep outside.  Somebody dropping from the wall, it sounded \nlike,' said Britain.  'Are they all abed up-stairs?'\n\n'Yes, all abed by this time,' she replied.\n\n'Didn't you hear anything?'\n\n'No.'\n\nThey both listened, but heard nothing.\n\n'I tell you what,' said Benjamin, taking down a lantern.  'I'll \nhave a look round, before I go to bed myself, for satisfaction's \nsake.  Undo the door while I light this, Clemmy.'\n\nClemency complied briskly; but observed as she did so, that he \nwould only have his walk for his pains, that it was all his fancy, \nand so forth.  Mr. Britain said 'very likely;' but sallied out, \nnevertheless, armed with the poker, and casting the light of the \nlantern far and near in all directions.\n\n'It's as quiet as a churchyard,' said Clemency, looking after him; \n'and almost as ghostly too!'\n\nGlancing back into the kitchen, she cried fearfully, as a light \nfigure stole into her view, 'What's that!'\n\n'Hush!' said Marion in an agitated whisper.  'You have always loved \nme, have you not!'\n\n'Loved you, child!  You may be sure I have.'\n\n'I am sure.  And I may trust you, may I not?  There is no one else \njust now, in whom I CAN trust.'\n\n'Yes,' said Clemency, with all her heart.\n\n'There is some one out there,' pointing to the door, 'whom I must \nsee, and speak with, to-night.  Michael Warden, for God's sake \nretire!  Not now!'\n\nClemency started with surprise and trouble as, following the \ndirection of the speaker's eyes, she saw a dark figure standing in \nthe doorway.\n\n'In another moment you may be discovered,' said Marion.  'Not now!  \nWait, if you can, in some concealment.  I will come presently.'\n\nHe waved his hand to her, and was gone.  'Don't go to bed.  Wait \nhere for me!' said Marion, hurriedly.  'I have been seeking to \nspeak to you for an hour past.  Oh, be true to me!'\n\nEagerly seizing her bewildered hand, and pressing it with both her \nown to her breast - an action more expressive, in its passion of \nentreaty, than the most eloquent appeal in words, - Marion \nwithdrew; as the light of the returning lantern flashed into the \nroom.\n\n'All still and peaceable.  Nobody there.  Fancy, I suppose,' said \nMr. Britain, as he locked and barred the door.  'One of the effects \nof having a lively imagination.  Halloa!  Why, what's the matter?'\n\nClemency, who could not conceal the effects of her surprise and \nconcern, was sitting in a chair:  pale, and trembling from head to \nfoot.\n\n'Matter!' she repeated, chafing her hands and elbows, nervously, \nand looking anywhere but at him.  'That's good in you, Britain, \nthat is!  After going and frightening one out of one's life with \nnoises and lanterns, and I don't know what all.  Matter!  Oh, yes!'\n\n'If you're frightened out of your life by a lantern, Clemmy,' said \nMr. Britain, composedly blowing it out and hanging it up again, \n'that apparition's very soon got rid of.  But you're as bold as \nbrass in general,' he said, stopping to observe her; 'and were, \nafter the noise and the lantern too.  What have you taken into your \nhead?  Not an idea, eh?'\n\nBut, as Clemency bade him good night very much after her usual \nfashion, and began to bustle about with a show of going to bed \nherself immediately, Little Britain, after giving utterance to the \noriginal remark that it was impossible to account for a woman's \nwhims, bade her good night in return, and taking up his candle \nstrolled drowsily away to bed.\n\nWhen all was quiet, Marion returned.\n\n'Open the door,' she said; 'and stand there close beside me, while \nI speak to him, outside.'\n\nTimid as her manner was, it still evinced a resolute and settled \npurpose, such as Clemency could not resist.  She softly unbarred \nthe door:  but before turning the key, looked round on the young \ncreature waiting to issue forth when she should open it.\n\nThe face was not averted or cast down, but looking full upon her, \nin its pride of youth and beauty.  Some simple sense of the \nslightness of the barrier that interposed itself between the happy \nhome and honoured love of the fair girl, and what might be the \ndesolation of that home, and shipwreck of its dearest treasure, \nsmote so keenly on the tender heart of Clemency, and so filled it \nto overflowing with sorrow and compassion, that, bursting into \ntears, she threw her arms round Marion's neck.\n\n'It's little that I know, my dear,' cried Clemency, 'very little; \nbut I know that this should not be.  Think of what you do!'\n\n'I have thought of it many times,' said Marion, gently.\n\n'Once more,' urged Clemency.  'Till to-morrow.'  Marion shook her \nhead.\n\n'For Mr. Alfred's sake,' said Clemency, with homely earnestness.  \n'Him that you used to love so dearly, once!'\n\nShe hid her face, upon the instant, in her hands, repeating 'Once!' \nas if it rent her heart.\n\n'Let me go out,' said Clemency, soothing her.  'I'll tell him what \nyou like.  Don't cross the door-step to-night.  I'm sure no good \nwill come of it.  Oh, it was an unhappy day when Mr. Warden was \never brought here!  Think of your good father, darling - of your \nsister.'\n\n'I have,' said Marion, hastily raising her head.  'You don't know \nwhat I do.  I MUST speak to him.  You are the best and truest \nfriend in all the world for what you have said to me, but I must \ntake this step.  Will you go with me, Clemency,' she kissed her on \nher friendly face, 'or shall I go alone?'\n\nSorrowing and wondering, Clemency turned the key, and opened the \ndoor.  Into the dark and doubtful night that lay beyond the \nthreshold, Marion passed quickly, holding by her hand.\n\nIn the dark night he joined her, and they spoke together earnestly \nand long; and the hand that held so fast by Clemeney's, now \ntrembled, now turned deadly cold, now clasped and closed on hers, \nin the strong feeling of the speech it emphasised unconsciously.  \nWhen they returned, he followed to the door, and pausing there a \nmoment, seized the other hand, and pressed it to his lips.  Then, \nstealthily withdrew.\n\nThe door was barred and locked again, and once again she stood \nbeneath her father's roof.  Not bowed down by the secret that she \nbrought there, though so young; but, with that same expression on \nher face for which I had no name before, and shining through her \ntears.\n\nAgain she thanked and thanked her humble friend, and trusted to \nher, as she said, with confidence, implicitly.  Her chamber safely \nreached, she fell upon her knees; and with her secret weighing on \nher heart, could pray!\n\nCould rise up from her prayers, so tranquil and serene, and bending \nover her fond sister in her slumber, look upon her face and smile - \nthough sadly:  murmuring as she kissed her forehead, how that Grace \nhad been a mother to her, ever, and she loved her as a child!\n\nCould draw the passive arm about her neck when lying down to rest - \nit seemed to cling there, of its own will, protectingly and \ntenderly even in sleep - and breathe upon the parted lips, God \nbless her!\n\nCould sink into a peaceful sleep, herself; but for one dream, in \nwhich she cried out, in her innocent and touching voice, that she \nwas quite alone, and they had all forgotten her.\n\nA month soon passes, even at its tardiest pace.  The month \nappointed to elapse between that night and the return, was quick of \nfoot, and went by, like a vapour.\n\nThe day arrived.  A raging winter day, that shook the old house, \nsometimes, as if it shivered in the blast.  A day to make home \ndoubly home.  To give the chimney-corner new delights.  To shed a \nruddier glow upon the faces gathered round the hearth, and draw \neach fireside group into a closer and more social league, against \nthe roaring elements without.  Such a wild winter day as best \nprepares the way for shut-out night; for curtained rooms, and \ncheerful looks; for music, laughter, dancing, light, and jovial \nentertainment!\n\nAll these the Doctor had in store to welcome Alfred back.  They \nknew that he could not arrive till night; and they would make the \nnight air ring, he said, as he approached.  All his old friends \nshould congregate about him.  He should not miss a face that he had \nknown and liked.  No!  They should every one be there!\n\nSo, guests were bidden, and musicians were engaged, and tables \nspread, and floors prepared for active feet, and bountiful \nprovision made, of every hospitable kind.  Because it was the \nChristmas season, and his eyes were all unused to English holly and \nits sturdy green, the dancing-room was garlanded and hung with it; \nand the red berries gleamed an English welcome to him, peeping from \namong the leaves.\n\nIt was a busy day for all of them:  a busier day for none of them \nthan Grace, who noiselessly presided everywhere, and was the \ncheerful mind of all the preparations.  Many a time that day (as \nwell as many a time within the fleeting month preceding it), did \nClemency glance anxiously, and almost fearfully, at Marion.  She \nsaw her paler, perhaps, than usual; but there was a sweet composure \non her face that made it lovelier than ever.\n\nAt night when she was dressed, and wore upon her head a wreath that \nGrace had proudly twined about it - its mimic flowers were Alfred's \nfavourites, as Grace remembered when she chose them - that old \nexpression, pensive, almost sorrowful, and yet so spiritual, high, \nand stirring, sat again upon her brow, enhanced a hundred-fold.\n\n'The next wreath I adjust on this fair head, will be a marriage \nwreath,' said Grace; 'or I am no true prophet, dear.'\n\nHer sister smiled, and held her in her arms.\n\n'A moment, Grace.  Don't leave me yet.  Are you sure that I want \nnothing more?'\n\nHer care was not for that.  It was her sister's face she thought \nof, and her eyes were fixed upon it, tenderly.\n\n'My art,' said Grace, 'can go no farther, dear girl; nor your \nbeauty.  I never saw you look so beautiful as now.'\n\n'I never was so happy,' she returned.\n\n'Ay, but there is a greater happiness in store.  In such another \nhome, as cheerful and as bright as this looks now,' said Grace, \n'Alfred and his young wife will soon be living.'\n\nShe smiled again.  'It is a happy home, Grace, in your fancy.  I \ncan see it in your eyes.  I know it WILL be happy, dear.  How glad \nI am to know it.'\n\n'Well,' cried the Doctor, bustling in.  'Here we are, all ready for \nAlfred, eh?  He can't be here until pretty late - an hour or so \nbefore midnight - so there'll be plenty of time for making merry \nbefore he comes.  He'll not find us with the ice unbroken.  Pile up \nthe fire here, Britain!  Let it shine upon the holly till it winks \nagain.  It's a world of nonsense, Puss; true lovers and all the \nrest of it - all nonsense; but we'll be nonsensical with the rest \nof 'em, and give our true lover a mad welcome.  Upon my word!' said \nthe old Doctor, looking at his daughters proudly, 'I'm not clear \nto-night, among other absurdities, but that I'm the father of two \nhandsome girls.'\n\n'All that one of them has ever done, or may do - may do, dearest \nfather - to cause you pain or grief, forgive her,' said Marion, \n'forgive her now, when her heart is full.  Say that you forgive \nher.  That you will forgive her.  That she shall always share your \nlove, and -,' and the rest was not said, for her face was hidden on \nthe old man's shoulder.\n\n'Tut, tut, tut,' said the Doctor gently.  'Forgive!  What have I to \nforgive?  Heyday, if our true lovers come back to flurry us like \nthis, we must hold 'em at a distance; we must send expresses out to \nstop 'em short upon the road, and bring 'em on a mile or two a day, \nuntil we're properly prepared to meet 'em.  Kiss me, Puss.  \nForgive!  Why, what a silly child you are!  If you had vexed and \ncrossed me fifty times a day, instead of not at all, I'd forgive \nyou everything, but such a supplication.  Kiss me again, Puss.  \nThere!  Prospective and retrospective - a clear score between us.  \nPile up the fire here!  Would you freeze the people on this bleak \nDecember night!  Let us be light, and warm, and merry, or I'll not \nforgive some of you!'\n\nSo gaily the old Doctor carried it!  And the fire was piled up, and \nthe lights were bright, and company arrived, and a murmuring of \nlively tongues began, and already there was a pleasant air of \ncheerful excitement stirring through all the house.\n\nMore and more company came flocking in.  Bright eyes sparkled upon \nMarion; smiling lips gave her joy of his return; sage mothers \nfanned themselves, and hoped she mightn't be too youthful and \ninconstant for the quiet round of home; impetuous fathers fell into \ndisgrace for too much exaltation of her beauty; daughters envied \nher; sons envied him; innumerable pairs of lovers profited by the \noccasion; all were interested, animated, and expectant.\n\nMr. and Mrs. Craggs came arm in arm, but Mrs. Snitchey came alone.  \n'Why, what's become of HIM?' inquired the Doctor.\n\nThe feather of a Bird of Paradise in Mrs. Snitchey's turban, \ntrembled as if the Bird of Paradise were alive again, when she said \nthat doubtless Mr. Craggs knew.  SHE was never told.\n\n'That nasty office,' said Mrs. Craggs.\n\n'I wish it was burnt down,' said Mrs. Snitchey.\n\n'He's - he's - there's a little matter of business that keeps my \npartner rather late,' said Mr. Craggs, looking uneasily about him.\n\n'Oh-h!  Business.  Don't tell me!' said Mrs. Snitchey.\n\n'WE know what business means,' said Mrs. Craggs.\n\nBut their not knowing what it meant, was perhaps the reason why \nMrs. Snitchey's Bird of Paradise feather quivered so portentously, \nand why all the pendant bits on Mrs. Craggs's ear-rings shook like \nlittle bells.\n\n'I wonder YOU could come away, Mr. Craggs,' said his wife.\n\n'Mr. Craggs is fortunate, I'm sure!' said Mrs. Snitchey.\n\n'That office so engrosses 'em,' said Mrs. Craggs.\n\n'A person with an office has no business to be married at all,' \nsaid Mrs. Snitchey.\n\nThen, Mrs. Snitchey said, within herself, that that look of hers \nhad pierced to Craggs's soul, and he knew it; and Mrs. Craggs \nobserved to Craggs, that 'his Snitcheys' were deceiving him behind \nhis back, and he would find it out when it was too late.\n\nStill, Mr. Craggs, without much heeding these remarks, looked \nuneasily about until his eye rested on Grace, to whom he \nimmediately presented himself.\n\n'Good evening, ma'am,' said Craggs.  'You look charmingly.  Your - \nMiss - your sister, Miss Marion, is she - '\n\n'Oh, she's quite well, Mr. Craggs.'\n\n'Yes - I - is she here?' asked Craggs.\n\n'Here!  Don't you see her yonder?  Going to dance?' said Grace.\n\nMr. Craggs put on his spectacles to see the better; looked at her \nthrough them, for some time; coughed; and put them, with an air of \nsatisfaction, in their sheath again, and in his pocket.\n\nNow the music struck up, and the dance commenced.  The bright fire \ncrackled and sparkled, rose and fell, as though it joined the dance \nitself, in right good fellowship.  Sometimes, it roared as if it \nwould make music too.  Sometimes, it flashed and beamed as if it \nwere the eye of the old room:  it winked too, sometimes, like a \nknowing patriarch, upon the youthful whisperers in corners.  \nSometimes, it sported with the holly-boughs; and, shining on the \nleaves by fits and starts, made them look as if they were in the \ncold winter night again, and fluttering in the wind.  Sometimes its \ngenial humour grew obstreperous, and passed all bounds; and then it \ncast into the room, among the twinkling feet, with a loud burst, a \nshower of harmless little sparks, and in its exultation leaped and \nbounded, like a mad thing, up the broad old chimney.\n\nAnother dance was near its close, when Mr. Snitchey touched his \npartner, who was looking on, upon the arm.\n\nMr. Craggs started, as if his familiar had been a spectre.\n\n'Is he gone?' he asked.\n\n'Hush!  He has been with me,' said Snitchey, 'for three hours and \nmore.  He went over everything.  He looked into all our \narrangements for him, and was very particular indeed.  He - Humph!'\n\nThe dance was finished.  Marion passed close before him, as he \nspoke.  She did not observe him, or his partner; but, looked over \nher shoulder towards her sister in the distance, as she slowly made \nher way into the crowd, and passed out of their view.\n\n'You see!  All safe and well,' said Mr. Craggs.  'He didn't recur \nto that subject, I suppose?'\n\n'Not a word.'\n\n'And is he really gone?  Is he safe away?'\n\n'He keeps to his word.  He drops down the river with the tide in \nthat shell of a boat of his, and so goes out to sea on this dark \nnight! - a dare-devil he is - before the wind.  There's no such \nlonely road anywhere else.  That's one thing.  The tide flows, he \nsays, an hour before midnight - about this time.  I'm glad it's \nover.'  Mr. Snitchey wiped his forehead, which looked hot and \nanxious.\n\n'What do you think,' said Mr. Craggs, 'about - '\n\n'Hush!' replied his cautious partner, looking straight before him.  \n'I understand you.  Don't mention names, and don't let us, seem to \nbe talking secrets.  I don't know what to think; and to tell you \nthe truth, I don't care now.  It's a great relief.  His self-love \ndeceived him, I suppose.  Perhaps the young lady coquetted a \nlittle.  The evidence would seem to point that way.  Alfred not \narrived?'\n\n'Not yet,' said Mr. Craggs.  'Expected every minute.'\n\n'Good.' Mr. Snitchey wiped his forehead again.  'It's a great \nrelief.  I haven't been so nervous since we've been in partnership.  \nI intend to spend the evening now, Mr. Craggs.'\n\nMrs. Craggs and Mrs. Snitchey joined them as he announced this \nintention.  The Bird of Paradise was in a state of extreme \nvibration, and the little bells were ringing quite audibly.\n\n'It has been the theme of general comment, Mr. Snitchey,' said Mrs. \nSnitchey.  'I hope the office is satisfied.'\n\n'Satisfied with what, my dear?' asked Mr. Snitchey.\n\n'With the exposure of a defenceless woman to ridicule and remark,' \nreturned his wife.  'That is quite in the way of the office, THAT \nis.'\n\n'I really, myself,' said Mrs. Craggs, 'have been so long accustomed \nto connect the office with everything opposed to domesticity, that \nI am glad to know it as the avowed enemy of my peace.  There is \nsomething honest in that, at all events.'\n\n'My dear,' urged Mr. Craggs, 'your good opinion is invaluable, but \nI never avowed that the office was the enemy of your peace.'\n\n'No,' said Mrs. Craggs, ringing a perfect peal upon the little \nbells.  'Not you, indeed.  You wouldn't be worthy of the office, if \nyou had the candour to.'\n\n'As to my having been away to-night, my dear,' said Mr. Snitchey, \ngiving her his arm, 'the deprivation has been mine, I'm sure; but, \nas Mr. Craggs knows - '\n\nMrs. Snitchey cut this reference very short by hitching her husband \nto a distance, and asking him to look at that man.  To do her the \nfavour to look at him!\n\n'At which man, my dear?' said Mr. Snitchey.\n\n'Your chosen companion; I'M no companion to you, Mr. Snitchey.'\n\n'Yes, yes, you are, my dear,' he interposed.\n\n'No, no, I'm not,' said Mrs. Snitchey with a majestic smile.  'I \nknow my station.  Will you look at your chosen companion, Mr. \nSnitchey; at your referee, at the keeper of your secrets, at the \nman you trust; at your other self, in short?'\n\nThe habitual association of Self with Craggs, occasioned Mr. \nSnitchey to look in that direction.\n\n'If you can look that man in the eye this night,' said Mrs. \nSnitchey, 'and not know that you are deluded, practised upon, made \nthe victim of his arts, and bent down prostrate to his will by some \nunaccountable fascination which it is impossible to explain and \nagainst which no warning of mine is of the least avail, all I can \nsay is - I pity you!'\n\nAt the very same moment Mrs. Craggs was oracular on the cross \nsubject.  Was it possible, she said, that Craggs could so blind \nhimself to his Snitcheys, as not to feel his true position?  Did he \nmean to say that he had seen his Snitcheys come into that room, and \ndidn't plainly see that there was reservation, cunning, treachery, \nin the man? Would he tell her that his very action, when he wiped \nhis forehead and looked so stealthily about him, didn't show that \nthere was something weighing on the conscience of his precious \nSnitcheys (if he had a conscience), that wouldn't bear the light?  \nDid anybody but his Snitcheys come to festive entertainments like a \nburglar? - which, by the way, was hardly a clear illustration of \nthe case, as he had walked in very mildly at the door.  And would \nhe still assert to her at noon-day (it being nearly midnight), that \nhis Snitcheys were to be justified through thick and thin, against \nall facts, and reason, and experience?\n\nNeither Snitchey nor Craggs openly attempted to stem the current \nwhich had thus set in, but, both were content to be carried gently \nalong it, until its force abated.  This happened at about the same \ntime as a general movement for a country dance; when Mr. Snitchey \nproposed himself as a partner to Mrs. Craggs, and Mr. Craggs \ngallantly offered himself to Mrs. Snitchey; and after some such \nslight evasions as 'why don't you ask somebody else?' and 'you'll \nbe glad, I know, if I decline,' and 'I wonder you can dance out of \nthe office' (but this jocosely now), each lady graciously accepted, \nand took her place.\n\nIt was an old custom among them, indeed, to do so, and to pair off, \nin like manner, at dinners and suppers; for they were excellent \nfriends, and on a footing of easy familiarity.  Perhaps the false \nCraggs and the wicked Snitchey were a recognised fiction with the \ntwo wives, as Doe and Roe, incessantly running up and down \nbailiwicks, were with the two husbands:  or, perhaps the ladies had \ninstituted, and taken upon themselves, these two shares in the \nbusiness, rather than be left out of it altogether.  But, certain \nit is, that each wife went as gravely and steadily to work in her \nvocation as her husband did in his, and would have considered it \nalmost impossible for the Firm to maintain a successful and \nrespectable existence, without her laudable exertions.\n\nBut, now, the Bird of Paradise was seen to flutter down the middle; \nand the little bells began to bounce and jingle in poussette; and \nthe Doctor's rosy face spun round and round, like an expressive \npegtop highly varnished; and breathless Mr. Craggs began to doubt \nalready, whether country dancing had been made 'too easy,' like the \nrest of life; and Mr. Snitchey, with his nimble cuts and capers, \nfooted it for Self and Craggs, and half-a-dozen more.\n\nNow, too, the fire took fresh courage, favoured by the lively wind \nthe dance awakened, and burnt clear and high.  It was the Genius of \nthe room, and present everywhere.  It shone in people's eyes, it \nsparkled in the jewels on the snowy necks of girls, it twinkled at \ntheir ears as if it whispered to them slyly, it flashed about their \nwaists, it flickered on the ground and made it rosy for their feet, \nit bloomed upon the ceiling that its glow might set off their \nbright faces, and it kindled up a general illumination in Mrs. \nCraggs's little belfry.\n\nNow, too, the lively air that fanned it, grew less gentle as the \nmusic quickened and the dance proceeded with new spirit; and a \nbreeze arose that made the leaves and berries dance upon the wall, \nas they had often done upon the trees; and the breeze rustled in \nthe room as if an invisible company of fairies, treading in the \nfoot-steps of the good substantial revellers, were whirling after \nthem.  Now, too, no feature of the Doctor's face could be \ndistinguished as he spun and spun; and now there seemed a dozen \nBirds of Paradise in fitful flight; and now there were a thousand \nlittle bells at work; and now a fleet of flying skirts was ruffled \nby a little tempest, when the music gave in, and the dance was \nover.\n\nHot and breathless as the Doctor was, it only made him the more \nimpatient for Alfred's coming.\n\n'Anything been seen, Britain?  Anything been heard?'\n\n'Too dark to see far, sir.  Too much noise inside the house to \nhear.'\n\n'That's right!  The gayer welcome for him.  How goes the time?'\n\n'Just twelve, sir.  He can't be long, sir.'\n\n'Stir up the fire, and throw another log upon it,' said the Doctor.  \n'Let him see his welcome blazing out upon the night - good boy! - \nas he comes along!'\n\nHe saw it - Yes!  From the chaise he caught the light, as he turned \nthe corner by the old church.  He knew the room from which it \nshone.  He saw the wintry branches of the old trees between the \nlight and him.  He knew that one of those trees rustled musically \nin the summer time at the window of Marion's chamber.\n\nThe tears were in his eyes.  His heart throbbed so violently that \nhe could hardly bear his happiness.  How often he had thought of \nthis time - pictured it under all circumstances - feared that it \nmight never come - yearned, and wearied for it - far away!\n\nAgain the light!  Distinct and ruddy; kindled, he knew, to give him \nwelcome, and to speed him home.  He beckoned with his hand, and \nwaved his hat, and cheered out, loud, as if the light were they, \nand they could see and hear him, as he dashed towards them through \nthe mud and mire, triumphantly.\n\nStop!  He knew the Doctor, and understood what he had done.  He \nwould not let it be a surprise to them.  But he could make it one, \nyet, by going forward on foot.  If the orchard-gate were open, he \ncould enter there; if not, the wall was easily climbed, as he knew \nof old; and he would be among them in an instant.\n\nHe dismounted from the chaise, and telling the driver - even that \nwas not easy in his agitation - to remain behind for a few minutes, \nand then to follow slowly, ran on with exceeding swiftness, tried \nthe gate, scaled the wall, jumped down on the other side, and stood \npanting in the old orchard.\n\nThere was a frosty rime upon the trees, which, in the faint light \nof the clouded moon, hung upon the smaller branches like dead \ngarlands.  Withered leaves crackled and snapped beneath his feet, \nas he crept softly on towards the house.  The desolation of a \nwinter night sat brooding on the earth, and in the sky.  But, the \nred light came cheerily towards him from the windows; figures \npassed and repassed there; and the hum and murmur of voices greeted \nhis ear sweetly.\n\nListening for hers:  attempting, as he crept on, to detach it from \nthe rest, and half believing that he heard it:  he had nearly \nreached the door, when it was abruptly opened, and a figure coming \nout encountered his.  It instantly recoiled with a half-suppressed \ncry.\n\n'Clemency,' he said, 'don't you know me?'\n\n'Don't come in!' she answered, pushing him back.  'Go away.  Don't \nask me why.  Don't come in.'\n\n'What is the matter?' he exclaimed.\n\n'I don't know.  I - I am afraid to think.  Go back.  Hark!'\n\nThere was a sudden tumult in the house.  She put her hands upon her \nears.  A wild scream, such as no hands could shut out, was heard; \nand Grace - distraction in her looks and manner - rushed out at the \ndoor.\n\n'Grace!'  He caught her in his arms.  'What is it!  Is she dead!'\n\nShe disengaged herself, as if to recognise his face, and fell down \nat his feet.\n\nA crowd of figures came about them from the house.  Among them was \nher father, with a paper in his hand.\n\n'What is it!' cried Alfred, grasping his hair with his hands, and \nlooking in an agony from face to face, as he bent upon his knee \nbeside the insensible girl.  'Will no one look at me?  Will no one \nspeak to me?  Does no one know me?  Is there no voice among you \nall, to tell me what it is!'\n\nThere was a murmur among them.  'She is gone.'\n\n'Gone!' he echoed.\n\n'Fled, my dear Alfred!' said the Doctor, in a broken voice, and \nwith his hands before his face.  'Gone from her home and us.  To-\nnight!  She writes that she has made her innocent and blameless \nchoice - entreats that we will forgive her - prays that we will not \nforget her - and is gone.'\n\n'With whom?  Where?'\n\nHe started up, as if to follow in pursuit; but, when they gave way \nto let him pass, looked wildly round upon them, staggered back, and \nsunk down in his former attitude, clasping one of Grace's cold \nhands in his own.\n\nThere was a hurried running to and fro, confusion, noise, disorder, \nand no purpose.  Some proceeded to disperse themselves about the \nroads, and some took horse, and some got lights, and some conversed \ntogether, urging that there was no trace or track to follow.  Some \napproached him kindly, with the view of offering consolation; some \nadmonished him that Grace must be removed into the house, and that \nhe prevented it.  He never heard them, and he never moved.\n\nThe snow fell fast and thick.  He looked up for a moment in the \nair, and thought that those white ashes strewn upon his hopes and \nmisery, were suited to them well.  He looked round on the whitening \nground, and thought how Marion's foot-prints would be hushed and \ncovered up, as soon as made, and even that remembrance of her \nblotted out.  But he never felt the weather and he never stirred.\n\n\n\nCHAPTER III - Part The Third\n\n\n\nTHE world had grown six years older since that night of the return.  \nIt was a warm autumn afternoon, and there had been heavy rain.  The \nsun burst suddenly from among the clouds; and the old battle-\nground, sparkling brilliantly and cheerfully at sight of it in one \ngreen place, flashed a responsive welcome there, which spread along \nthe country side as if a joyful beacon had been lighted up, and \nanswered from a thousand stations.\n\nHow beautiful the landscape kindling in the light, and that \nluxuriant influence passing on like a celestial presence, \nbrightening everything!  The wood, a sombre mass before, revealed \nits varied tints of yellow, green, brown, red:  its different forms \nof trees, with raindrops glittering on their leaves and twinkling \nas they fell.  The verdant meadow-land, bright and glowing, seemed \nas if it had been blind, a minute since, and now had found a sense \nof sight where-with to look up at the shining sky.  Corn-fields, \nhedge-rows, fences, homesteads, and clustered roofs, the steeple of \nthe church, the stream, the water-mill, all sprang out of the \ngloomy darkness smiling.  Birds sang sweetly, flowers raised their \ndrooping heads, fresh scents arose from the invigorated ground; the \nblue expanse above extended and diffused itself; already the sun's \nslanting rays pierced mortally the sullen bank of cloud that \nlingered in its flight; and a rainbow, spirit of all the colours \nthat adorned the earth and sky, spanned the whole arch with its \ntriumphant glory.\n\nAt such a time, one little roadside Inn, snugly sheltered behind a \ngreat elm-tree with a rare seat for idlers encircling its capacious \nbole, addressed a cheerful front towards the traveller, as a house \nof entertainment ought, and tempted him with many mute but \nsignificant assurances of a comfortable welcome.  The ruddy sign-\nboard perched up in the tree, with its golden letters winking in \nthe sun, ogled the passer-by, from among the green leaves, like a \njolly face, and promised good cheer.  The horse-trough, full of \nclear fresh water, and the ground below it sprinkled with droppings \nof fragrant hay, made every horse that passed, prick up his ears.  \nThe crimson curtains in the lower rooms, and the pure white \nhangings in the little bed-chambers above, beckoned, Come in! with \nevery breath of air.  Upon the bright green shutters, there were \ngolden legends about beer and ale, and neat wines, and good beds; \nand an affecting picture of a brown jug frothing over at the top.  \nUpon the window-sills were flowering plants in bright red pots, \nwhich made a lively show against the white front of the house; and \nin the darkness of the doorway there were streaks of light, which \nglanced off from the surfaces of bottles and tankards.\n\nOn the door-step, appeared a proper figure of a landlord, too; for, \nthough he was a short man, he was round and broad, and stood with \nhis hands in his pockets, and his legs just wide enough apart to \nexpress a mind at rest upon the subject of the cellar, and an easy \nconfidence - too calm and virtuous to become a swagger - in the \ngeneral resources of the Inn.  The superabundant moisture, \ntrickling from everything after the late rain, set him off well.  \nNothing near him was thirsty.  Certain top-heavy dahlias, looking \nover the palings of his neat well-ordered garden, had swilled as \nmuch as they could carry - perhaps a trifle more - and may have \nbeen the worse for liquor; but the sweet-briar, roses, wall-\nflowers, the plants at the windows, and the leaves on the old tree, \nwere in the beaming state of moderate company that had taken no \nmore than was wholesome for them, and had served to develop their \nbest qualities.  Sprinkling dewy drops about them on the ground, \nthey seemed profuse of innocent and sparkling mirth, that did good \nwhere it lighted, softening neglected corners which the steady rain \ncould seldom reach, and hurting nothing.\n\nThis village Inn had assumed, on being established, an uncommon \nsign.  It was called The Nutmeg-Grater.  And underneath that \nhousehold word, was inscribed, up in the tree, on the same flaming \nboard, and in the like golden characters, By Benjamin Britain.\n\nAt a second glance, and on a more minute examination of his face, \nyou might have known that it was no other than Benjamin Britain \nhimself who stood in the doorway - reasonably changed by time, but \nfor the better; a very comfortable host indeed.\n\n'Mrs. B.,' said Mr. Britain, looking down the road, 'is rather \nlate.  It's tea-time.'\n\nAs there was no Mrs. Britain coming, he strolled leisurely out into \nthe road and looked up at the house, very much to his satisfaction.  \n'It's just the sort of house,' said Benjamin, 'I should wish to \nstop at, if I didn't keep it.'\n\nThen, he strolled towards the garden-paling, and took a look at the \ndahlias.  They looked over at him, with a helpless drowsy hanging \nof their heads:  which bobbed again, as the heavy drops of wet \ndripped off them.\n\n'You must be looked after,' said Benjamin.  'Memorandum, not to \nforget to tell her so.  She's a long time coming!'\n\nMr. Britain's better half seemed to be by so very much his better \nhalf, that his own moiety of himself was utterly cast away and \nhelpless without her.\n\n'She hadn't much to do, I think,' said Ben.  'There were a few \nlittle matters of business after market, but not many.  Oh! here we \nare at last!'\n\nA chaise-cart, driven by a boy, came clattering along the road:  \nand seated in it, in a chair, with a large well-saturated umbrella \nspread out to dry behind her, was the plump figure of a matronly \nwoman, with her bare arms folded across a basket which she carried \non her knee, several other baskets and parcels lying crowded around \nher, and a certain bright good nature in her face and contented \nawkwardness in her manner, as she jogged to and fro with the motion \nof her carriage, which smacked of old times, even in the distance.  \nUpon her nearer approach, this relish of by-gone days was not \ndiminished; and when the cart stopped at the Nutmeg-Grater door, a \npair of shoes, alighting from it, slipped nimbly through Mr. \nBritain's open arms, and came down with a substantial weight upon \nthe pathway, which shoes could hardly have belonged to any one but \nClemency Newcome.\n\nIn fact they did belong to her, and she stood in them, and a rosy \ncomfortable-looking soul she was:  with as much soap on her glossy \nface as in times of yore, but with whole elbows now, that had grown \nquite dimpled in her improved condition.\n\n'You're late, Clemmy!' said Mr. Britain.\n\n'Why, you see, Ben, I've had a deal to do!' she replied, looking \nbusily after the safe removal into the house of all the packages \nand baskets:  'eight, nine, ten - where's eleven?  Oh! my basket's \neleven!  It's all right.  Put the horse up, Harry, and if he coughs \nagain give him a warm mash to-night.  Eight, nine, ten.  Why, \nwhere's eleven?  Oh! forgot, it's all right.  How's the children, \nBen?'\n\n'Hearty, Clemmy, hearty.'\n\n'Bless their precious faces!' said Mrs. Britain, unbonneting her \nown round countenance (for she and her husband were by this time in \nthe bar), and smoothing her hair with her open hands.  'Give us a \nkiss, old man!'\n\nMr. Britain promptly complied.\n\n'I think,' said Mrs. Britain, applying herself to her pockets and \ndrawing forth an immense bulk of thin books and crumpled papers:  a \nvery kennel of dogs'-ears:  'I've done everything.  Bills all \nsettled - turnips sold - brewer's account looked into and paid - \n'bacco pipes ordered - seventeen pound four, paid into the Bank - \nDoctor Heathfield's charge for little Clem - you'll guess what that \nis - Doctor Heathfield won't take nothing again, Ben.'\n\n'I thought he wouldn't,' returned Ben.\n\n'No.  He says whatever family you was to have, Ben, he'd never put \nyou to the cost of a halfpenny.  Not if you was to have twenty.'\n\nMr. Britain's face assumed a serious expression, and he looked hard \nat the wall.\n\n'An't it kind of him?' said Clemency.\n\n'Very,' returned Mr. Britain.  'It's the sort of kindness that I \nwouldn't presume upon, on any account.'\n\n'No,' retorted Clemency.  'Of course not.  Then there's the pony - \nhe fetched eight pound two; and that an't bad, is it?'\n\n'It's very good,' said Ben.\n\n'I'm glad you're pleased!' exclaimed his wife.  'I thought you \nwould be; and I think that's all, and so no more at present from \nyours and cetrer, C. Britain.  Ha ha ha! There!  Take all the \npapers, and lock 'em up.  Oh!  Wait a minute.  Here's a printed \nbill to stick on the wall.  Wet from the printer's.  How nice it \nsmells!'\n\n'What's this?' said Ben, looking over the document.\n\n'I don't know,' replied his wife.  'I haven't read a word of it.'\n\n'\"To be sold by Auction,\"' read the host of the Nutmeg-Grater, \n'\"unless previously disposed of by private contract.\"'\n\n'They always put that,' said Clemency.\n\n'Yes, but they don't always put this,' he returned.  'Look here, \n\"Mansion,\" &c. - \"offices,\" &c., \"shrubberies,\" &c., \"ring fence,\" \n&c. \"Messrs. Snitchey and Craggs,\" &c., \"ornamental portion of the \nunencumbered freehold property of Michael Warden, Esquire, \nintending to continue to reside abroad\"!'\n\n'Intending to continue to reside abroad!' repeated Clemency.\n\n'Here it is,' said Britain.  'Look!'\n\n'And it was only this very day that I heard it whispered at the old \nhouse, that better and plainer news had been half promised of her, \nsoon!' said Clemency, shaking her head sorrowfully, and patting her \nelbows as if the recollection of old times unconsciously awakened \nher old habits.  'Dear, dear, dear!  There'll be heavy hearts, Ben, \nyonder.'\n\nMr. Britain heaved a sigh, and shook his head, and said he couldn't \nmake it out:  he had left off trying long ago.  With that remark, \nhe applied himself to putting up the bill just inside the bar \nwindow.  Clemency, after meditating in silence for a few moments, \nroused herself, cleared her thoughtful brow, and bustled off to \nlook after the children.\n\nThough the host of the Nutmeg-Grater had a lively regard for his \ngood-wife, it was of the old patronising kind, and she amused him \nmightily.  Nothing would have astonished him so much, as to have \nknown for certain from any third party, that it was she who managed \nthe whole house, and made him, by her plain straightforward thrift, \ngood-humour, honesty, and industry, a thriving man.  So easy it is, \nin any degree of life (as the world very often finds it), to take \nthose cheerful natures that never assert their merit, at their own \nmodest valuation; and to conceive a flippant liking of people for \ntheir outward oddities and eccentricities, whose innate worth, if \nwe would look so far, might make us blush in the comparison!\n\nIt was comfortable to Mr. Britain, to think of his own \ncondescension in having married Clemency.  She was a perpetual \ntestimony to him of the goodness of his heart, and the kindness of \nhis disposition; and he felt that her being an excellent wife was \nan illustration of the old precept that virtue is its own reward.\n\nHe had finished wafering up the bill, and had locked the vouchers \nfor her day's proceedings in the cupboard - chuckling all the time, \nover her capacity for business - when, returning with the news that \nthe two Master Britains were playing in the coach-house under the \nsuperintendence of one Betsey, and that little Clem was sleeping \n'like a picture,' she sat down to tea, which had awaited her \narrival, on a little table.  It was a very neat little bar, with \nthe usual display of bottles and glasses; a sedate clock, right to \nthe minute (it was half-past five); everything in its place, and \neverything furbished and polished up to the very utmost.\n\n'It's the first time I've sat down quietly to-day, I declare,' said \nMrs. Britain, taking a long breath, as if she had sat down for the \nnight; but getting up again immediately to hand her husband his \ntea, and cut him his bread-and-butter; 'how that bill does set me \nthinking of old times!'\n\n'Ah!' said Mr. Britain, handling his saucer like an oyster, and \ndisposing of its contents on the same principle.\n\n'That same Mr. Michael Warden,' said Clemency, shaking her head at \nthe notice of sale, 'lost me my old place.'\n\n'And got you your husband,' said Mr. Britain.\n\n'Well!  So he did,' retorted Clemency, 'and many thanks to him.'\n\n'Man's the creature of habit,' said Mr. Britain, surveying her, \nover his saucer.  'I had somehow got used to you, Clem; and I found \nI shouldn't be able to get on without you.  So we went and got made \nman and wife.  Ha! ha!  We!  Who'd have thought it!'\n\n'Who indeed!' cried Clemency.  'It was very good of you, Ben.'\n\n'No, no, no,' replied Mr. Britain, with an air of self-denial.  \n'Nothing worth mentioning.'\n\n'Oh yes it was, Ben,' said his wife, with great simplicity; 'I'm \nsure I think so, and am very much obliged to you.  Ah!' looking \nagain at the bill; 'when she was known to be gone, and out of \nreach, dear girl, I couldn't help telling - for her sake quite as \nmuch as theirs - what I knew, could I?'\n\n'You told it, anyhow,' observed her husband.\n\n'And Dr. Jeddler,' pursued Clemency, putting down her tea-cup, and \nlooking thoughtfully at the bill, 'in his grief and passion turned \nme out of house and home!  I never have been so glad of anything in \nall my life, as that I didn't say an angry word to him, and hadn't \nany angry feeling towards him, even then; for he repented that \ntruly, afterwards.  How often he has sat in this room, and told me \nover and over again he was sorry for it! - the last time, only \nyesterday, when you were out.  How often he has sat in this room, \nand talked to me, hour after hour, about one thing and another, in \nwhich he made believe to be interested! - but only for the sake of \nthe days that are gone by, and because he knows she used to like \nme, Ben!'\n\n'Why, how did you ever come to catch a glimpse of that, Clem?' \nasked her husband:  astonished that she should have a distinct \nperception of a truth which had only dimly suggested itself to his \ninquiring mind.\n\n'I don't know, I'm sure,' said Clemency, blowing her tea, to cool \nit.  'Bless you, I couldn't tell you, if you was to offer me a \nreward of a hundred pound.'\n\nHe might have pursued this metaphysical subject but for her \ncatching a glimpse of a substantial fact behind him, in the shape \nof a gentleman attired in mourning, and cloaked and booted like a \nrider on horseback, who stood at the bar-door.  He seemed attentive \nto their conversation, and not at all impatient to interrupt it.\n\nClemency hastily rose at this sight.  Mr. Britain also rose and \nsaluted the guest.  'Will you please to walk up-stairs, sir?  \nThere's a very nice room up-stairs, sir.'\n\n'Thank you,' said the stranger, looking earnestly at Mr. Britain's \nwife.  'May I come in here?'\n\n'Oh, surely, if you like, sir,' returned Clemency, admitting him.\n\n'What would you please to want, sir?'\n\nThe bill had caught his eye, and he was reading it.\n\n'Excellent property that, sir,' observed Mr. Britain.\n\nHe made no answer; but, turning round, when he had finished \nreading, looked at Clemency with the same observant curiosity as \nbefore.  'You were asking me,' - he said, still looking at her, - \n'What you would please to take, sir,' answered Clemency, stealing a \nglance at him in return.\n\n'If you will let me have a draught of ale,' he said, moving to a \ntable by the window, 'and will let me have it here, without being \nany interruption to your meal, I shall be much obliged to you.'  He \nsat down as he spoke, without any further parley, and looked out at \nthe prospect.  He was an easy, well-knit figure of a man in the \nprime of life.  His face, much browned by the sun, was shaded by a \nquantity of dark hair; and he wore a moustache.  His beer being set \nbefore him, he filled out a glass, and drank, good-humouredly, to \nthe house; adding, as he put the tumbler down again:\n\n'It's a new house, is it not?'\n\n'Not particularly new, sir,' replied Mr. Britain.\n\n'Between five and six years old,' said Clemency; speaking very \ndistinctly.\n\n'I think I heard you mention Dr. Jeddler's name, as I came in,' \ninquired the stranger.  'That bill reminds me of him; for I happen \nto know something of that story, by hearsay, and through certain \nconnexions of mine. - Is the old man living?'\n\n'Yes, he's living, sir,' said Clemency.\n\n'Much changed?'\n\n'Since when, sir?' returned Clemency, with remarkable emphasis and \nexpression.\n\n'Since his daughter - went away.'\n\n'Yes! he's greatly changed since then,' said Clemency.  'He's grey \nand old, and hasn't the same way with him at all; but, I think he's \nhappy now.  He has taken on with his sister since then, and goes to \nsee her very often.  That did him good, directly.  At first, he was \nsadly broken down; and it was enough to make one's heart bleed, to \nsee him wandering about, railing at the world; but a great change \nfor the better came over him after a year or two, and then he began \nto like to talk about his lost daughter, and to praise her, ay and \nthe world too! and was never tired of saying, with the tears in his \npoor eyes, how beautiful and good she was.  He had forgiven her \nthen.  That was about the same time as Miss Grace's marriage.  \nBritain, you remember?'\n\nMr. Britain remembered very well.\n\n'The sister is married then,' returned the stranger.  He paused for \nsome time before he asked, 'To whom?'\n\nClemency narrowly escaped oversetting the tea-board, in her emotion \nat this question.\n\n'Did YOU never hear?' she said.\n\n'I should like to hear,' he replied, as he filled his glass again, \nand raised it to his lips.\n\n'Ah!  It would be a long story, if it was properly told,' said \nClemency, resting her chin on the palm of her left hand, and \nsupporting that elbow on her right hand, as she shook her head, and \nlooked back through the intervening years, as if she were looking \nat a fire.  'It would be a long story, I am sure.'\n\n'But told as a short one,' suggested the stranger.\n\nTold as a short one,' repeated Clemency in the same thoughtful \ntone, and without any apparent reference to him, or consciousness \nof having auditors, 'what would there be to tell?  That they \ngrieved together, and remembered her together, like a person dead; \nthat they were so tender of her, never would reproach her, called \nher back to one another as she used to be, and found excuses for \nher!  Every one knows that.  I'm sure I do.  No one better,' added \nClemency, wiping her eyes with her hand.\n\n'And so,' suggested the stranger.\n\n'And so,' said Clemency, taking him up mechanically, and without \nany change in her attitude or manner, 'they at last were married.  \nThey were married on her birth-day - it comes round again to-morrow \n- very quiet, very humble like, but very happy.  Mr. Alfred said, \none night when they were walking in the orchard, \"Grace, shall our \nwedding-day be Marion's birth-day?\"  And it was.'\n\n'And they have lived happily together?' said the stranger.\n\n'Ay,' said Clemency.  'No two people ever more so.  They have had \nno sorrow but this.'\n\nShe raised her head as with a sudden attention to the circumstances \nunder which she was recalling these events, and looked quickly at \nthe stranger.  Seeing that his face was turned toward the window, \nand that he seemed intent upon the prospect, she made some eager \nsigns to her husband, and pointed to the bill, and moved her mouth \nas if she were repeating with great energy, one word or phrase to \nhim over and over again.  As she uttered no sound, and as her dumb \nmotions like most of her gestures were of a very extraordinary \nkind, this unintelligible conduct reduced Mr. Britain to the \nconfines of despair.  He stared at the table, at the stranger, at \nthe spoons, at his wife - followed her pantomime with looks of deep \namazement and perplexity - asked in the same language, was it \nproperty in danger, was it he in danger, was it she - answered her \nsignals with other signals expressive of the deepest distress and \nconfusion - followed the motions of her lips - guessed half aloud \n'milk and water,' 'monthly warning,' 'mice and walnuts' - and \ncouldn't approach her meaning.\n\nClemency gave it up at last, as a hopeless attempt; and moving her \nchair by very slow degrees a little nearer to the stranger, sat \nwith her eyes apparently cast down but glancing sharply at him now \nand then, waiting until he should ask some other question.  She had \nnot to wait long; for he said, presently:\n\n'And what is the after history of the young lady who went away?  \nThey know it, I suppose?'\n\nClemency shook her head.  'I've heard,' she said, 'that Doctor \nJeddler is thought to know more of it than he tells.  Miss Grace \nhas had letters from her sister, saying that she was well and \nhappy, and made much happier by her being married to Mr. Alfred:  \nand has written letters back.  But there's a mystery about her life \nand fortunes, altogether, which nothing has cleared up to this \nhour, and which - '\n\nShe faltered here, and stopped.\n\n'And which' - repeated the stranger.\n\n'Which only one other person, I believe, could explain,' said \nClemency, drawing her breath quickly.\n\n'Who may that be?' asked the stranger.\n\n'Mr. Michael Warden!' answered Clemency, almost in a shriek:  at \nonce conveying to her husband what she would have had him \nunderstand before, and letting Michael Warden know that he was \nrecognised.\n\n'You remember me, sir?' said Clemency, trembling with emotion; 'I \nsaw just now you did!  You remember me, that night in the garden.  \nI was with her!'\n\n'Yes.  You were,' he said.\n\n'Yes, sir,' returned Clemency.  'Yes, to be sure.  This is my \nhusband, if you please.  Ben, my dear Ben, run to Miss Grace - run \nto Mr. Alfred - run somewhere, Ben!  Bring somebody here, \ndirectly!'\n\n'Stay!' said Michael Warden, quietly interposing himself between \nthe door and Britain.  'What would you do?'\n\n'Let them know that you are here, sir,' answered Clemency, clapping \nher hands in sheer agitation.  'Let them know that they may hear of \nher, from your own lips; let them know that she is not quite lost \nto them, but that she will come home again yet, to bless her father \nand her loving sister - even her old servant, even me,' she struck \nherself upon the breast with both hands, 'with a sight of her sweet \nface.  Run, Ben, run!'  And still she pressed him on towards the \ndoor, and still Mr. Warden stood before it, with his hand stretched \nout, not angrily, but sorrowfully.\n\n'Or perhaps,' said Clemency, running past her husband, and catching \nin her emotion at Mr. Warden's cloak, 'perhaps she's here now; \nperhaps she's close by.  I think from your manner she is.  Let me \nsee her, sir, if you please.  I waited on her when she was a little \nchild.  I saw her grow to be the pride of all this place.  I knew \nher when she was Mr. Alfred's promised wife.  I tried to warn her \nwhen you tempted her away.  I know what her old home was when she \nwas like the soul of it, and how it changed when she was gone and \nlost.  Let me speak to her, if you please!'\n\nHe gazed at her with compassion, not unmixed with wonder:  but, he \nmade no gesture of assent.\n\n'I don't think she CAN know,' pursued Clemency, 'how truly they \nforgive her; how they love her; what joy it would be to them, to \nsee her once more.  She may be timorous of going home.  Perhaps if \nshe sees me, it may give her new heart.  Only tell me truly, Mr. \nWarden, is she with you?'\n\n'She is not,' he answered, shaking his head.\n\nThis answer, and his manner, and his black dress, and his coming \nback so quietly, and his announced intention of continuing to live \nabroad, explained it all.  Marion was dead.\n\nHe didn't contradict her; yes, she was dead!  Clemency sat down, \nhid her face upon the table, and cried.\n\nAt that moment, a grey-headed old gentleman came running in:  quite \nout of breath, and panting so much that his voice was scarcely to \nbe recognised as the voice of Mr. Snitchey.\n\n'Good Heaven, Mr. Warden!' said the lawyer, taking him aside, 'what \nwind has blown - '  He was so blown himself, that he couldn't get \non any further until after a pause, when he added, feebly, 'you \nhere?'\n\n'An ill-wind, I am afraid,' he answered.  'If you could have heard \nwhat has just passed - how I have been besought and entreated to \nperform impossibilities - what confusion and affliction I carry \nwith me!'\n\n'I can guess it all.  But why did you ever come here, my good sir?' \nretorted Snitchey.\n\n'Come!  How should I know who kept the house?  When I sent my \nservant on to you, I strolled in here because the place was new to \nme; and I had a natural curiosity in everything new and old, in \nthese old scenes; and it was outside the town.  I wanted to \ncommunicate with you, first, before appearing there.  I wanted to \nknow what people would say to me.  I see by your manner that you \ncan tell me.  If it were not for your confounded caution, I should \nhave been possessed of everything long ago.'\n\n'Our caution!' returned the lawyer, 'speaking for Self and Craggs - \ndeceased,' here Mr. Snitchey, glancing at his hat-band, shook his \nhead, 'how can you reasonably blame us, Mr. Warden?  It was \nunderstood between us that the subject was never to be renewed, and \nthat it wasn't a subject on which grave and sober men like us (I \nmade a note of your observations at the time) could interfere.  Our \ncaution too!  When Mr. Craggs, sir, went down to his respected \ngrave in the full belief - '\n\n'I had given a solemn promise of silence until I should return, \nwhenever that might be,' interrupted Mr. Warden; 'and I have kept \nit.'\n\n'Well, sir, and I repeat it,' returned Mr. Snitchey, 'we were bound \nto silence too.  We were bound to silence in our duty towards \nourselves, and in our duty towards a variety of clients, you among \nthem, who were as close as wax.  It was not our place to make \ninquiries of you on such a delicate subject.  I had my suspicions, \nsir; but, it is not six months since I have known the truth, and \nbeen assured that you lost her.'\n\n'By whom?' inquired his client.\n\n'By Doctor Jeddler himself, sir, who at last reposed that \nconfidence in me voluntarily.  He, and only he, has known the whole \ntruth, years and years.'\n\n'And you know it?' said his client.\n\n'I do, sir!' replied Snitchey; 'and I have also reason to know that \nit will be broken to her sister to-morrow evening.  They have given \nher that promise.  In the meantime, perhaps you'll give me the \nhonour of your company at my house; being unexpected at your own.  \nBut, not to run the chance of any more such difficulties as you \nhave had here, in case you should be recognised - though you're a \ngood deal changed; I think I might have passed you myself, Mr. \nWarden - we had better dine here, and walk on in the evening.  It's \na very good place to dine at, Mr. Warden:  your own property, by-\nthe-bye.  Self and Craggs (deceased) took a chop here sometimes, \nand had it very comfortably served.  Mr. Craggs, sir,' said \nSnitchey, shutting his eyes tight for an instant, and opening them \nagain, 'was struck off the roll of life too soon.'\n\n'Heaven forgive me for not condoling with you,' returned Michael \nWarden, passing his hand across his forehead, 'but I'm like a man \nin a dream at present.  I seem to want my wits.  Mr. Craggs - yes - \nI am very sorry we have lost Mr. Craggs.'  But he looked at \nClemency as he said it, and seemed to sympathise with Ben, \nconsoling her.\n\n'Mr. Craggs, sir,' observed Snitchey, 'didn't find life, I regret \nto say, as easy to have and to hold as his theory made it out, or \nhe would have been among us now.  It's a great loss to me.  He was \nmy right arm, my right leg, my right ear, my right eye, was Mr. \nCraggs.  I am paralytic without him.  He bequeathed his share of \nthe business to Mrs. Craggs, her executors, administrators, and \nassigns.  His name remains in the Firm to this hour.  I try, in a \nchildish sort of a way, to make believe, sometimes, he's alive.  \nYou may observe that I speak for Self and Craggs - deceased, sir - \ndeceased,' said the tender-hearted attorney, waving his pocket-\nhandkerchief.\n\nMichael Warden, who had still been observant of Clemency, turned to \nMr. Snitchey when he ceased to speak, and whispered in his ear.\n\n'Ah, poor thing!' said Snitchey, shaking his head.  'Yes.  She was \nalways very faithful to Marion.  She was always very fond of her.  \nPretty Marion!  Poor Marion!  Cheer up, Mistress - you are married \nnow, you know, Clemency.'\n\nClemency only sighed, and shook her head.\n\n'Well, well!  Wait till to-morrow,' said the lawyer, kindly.\n\n'To-morrow can't bring back' the dead to life, Mister,' said \nClemency, sobbing.\n\n'No.  It can't do that, or it would bring back Mr. Craggs, \ndeceased,' returned the lawyer.  'But it may bring some soothing \ncircumstances; it may bring some comfort.  Wait till to-morrow!'\n\nSo Clemency, shaking his proffered hand, said she would; and \nBritain, who had been terribly cast down at sight of his despondent \nwife (which was like the business hanging its head), said that was \nright; and Mr. Snitchey and Michael Warden went up-stairs; and \nthere they were soon engaged in a conversation so cautiously \nconducted, that no murmur of it was audible above the clatter of \nplates and dishes, the hissing of the frying-pan, the bubbling of \nsaucepans, the low monotonous waltzing of the jack - with a \ndreadful click every now and then as if it had met with some mortal \naccident to its head, in a fit of giddiness - and all the other \npreparations in the kitchen for their dinner.\n\n\nTo-morrow was a bright and peaceful day; and nowhere were the \nautumn tints more beautifully seen, than from the quiet orchard of \nthe Doctor's house.  The snows of many winter nights had melted \nfrom that ground, the withered leaves of many summer times had \nrustled there, since she had fled.  The honey-suckle porch was \ngreen again, the trees cast bountiful and changing shadows on the \ngrass, the landscape was as tranquil and serene as it had ever \nbeen; but where was she!\n\nNot there.  Not there.  She would have been a stranger sight in her \nold home now, even than that home had been at first, without her.  \nBut, a lady sat in the familiar place, from whose heart she had \nnever passed away; in whose true memory she lived, unchanging, \nyouthful, radiant with all promise and all hope; in whose affection \n- and it was a mother's now, there was a cherished little daughter \nplaying by her side - she had no rival, no successor; upon whose \ngentle lips her name was trembling then.\n\nThe spirit of the lost girl looked out of those eyes.  Those eyes \nof Grace, her sister, sitting with her husband in the orchard, on \ntheir wedding-day, and his and Marion's birth-day.\n\nHe had not become a great man; he had not grown rich; he had not \nforgotten the scenes and friends of his youth; he had not fulfilled \nany one of the Doctor's old predictions.  But, in his useful, \npatient, unknown visiting of poor men's homes; and in his watching \nof sick beds; and in his daily knowledge of the gentleness and \ngoodness flowering the by-paths of this world, not to be trodden \ndown beneath the heavy foot of poverty, but springing up, elastic, \nin its track, and making its way beautiful; he had better learned \nand proved, in each succeeding year, the truth of his old faith.  \nThe manner of his life, though quiet and remote, had shown him how \noften men still entertained angels, unawares, as in the olden time; \nand how the most unlikely forms - even some that were mean and ugly \nto the view, and poorly clad - became irradiated by the couch of \nsorrow, want, and pain, and changed to ministering spirits with a \nglory round their heads.\n\nHe lived to better purpose on the altered battle-ground, perhaps, \nthan if he had contended restlessly in more ambitious lists; and he \nwas happy with his wife, dear Grace.\n\nAnd Marion.  Had HE forgotten her?\n\n'The time has flown, dear Grace,' he said, 'since then;' they had \nbeen talking of that night; 'and yet it seems a long long while \nago.  We count by changes and events within us.  Not by years.'\n\n'Yet we have years to count by, too, since Marion was with us,' \nreturned Grace.  'Six times, dear husband, counting to-night as \none, we have sat here on her birth-day, and spoken together of that \nhappy return, so eagerly expected and so long deferred.  Ah when \nwill it be!  When will it be!'\n\nHer husband attentively observed her, as the tears collected in her \neyes; and drawing nearer, said:\n\n'But, Marion told you, in that farewell letter which she left for \nyou upon your table, love, and which you read so often, that years \nmust pass away before it COULD be.  Did she not?'\n\nShe took a letter from her breast, and kissed it, and said 'Yes.'\n\n'That through these intervening years, however happy she might be, \nshe would look forward to the time when you would meet again, and \nall would be made clear; and that she prayed you, trustfully and \nhopefully to do the same.  The letter runs so, does it not, my \ndear?'\n\n'Yes, Alfred.'\n\n'And every other letter she has written since?'\n\n'Except the last - some months ago - in which she spoke of you, and \nwhat you then knew, and what I was to learn to-night.'\n\nHe looked towards the sun, then fast declining, and said that the \nappointed time was sunset.\n\n'Alfred!' said Grace, laying her hand upon his shoulder earnestly, \n'there is something in this letter - this old letter, which you say \nI read so often - that I have never told you.  But, to-night, dear \nhusband, with that sunset drawing near, and all our life seeming to \nsoften and become hushed with the departing day, I cannot keep it \nsecret.'\n\n'What is it, love?'\n\n'When Marion went away, she wrote me, here, that you had once left \nher a sacred trust to me, and that now she left you, Alfred, such a \ntrust in my hands:  praying and beseeching me, as I loved her, and \nas I loved you, not to reject the affection she believed (she knew, \nshe said) you would transfer to me when the new wound was healed, \nbut to encourage and return it.'\n\n' - And make me a proud, and happy man again, Grace.  Did she say \nso?'\n\n'She meant, to make myself so blest and honoured in your love,' was \nhis wife's answer, as he held her in his arms.\n\n'Hear me, my dear!' he said. - 'No.  Hear me so!' - and as he \nspoke, he gently laid the head she had raised, again upon his \nshoulder.  'I know why I have never heard this passage in the \nletter, until now.  I know why no trace of it ever showed itself in \nany word or look of yours at that time.  I know why Grace, although \nso true a friend to me, was hard to win to be my wife.  And knowing \nit, my own! I know the priceless value of the heart I gird within \nmy arms, and thank GOD for the rich possession!'\n\nShe wept, but not for sorrow, as he pressed her to his heart.  \nAfter a brief space, he looked down at the child, who was sitting \nat their feet playing with a little basket of flowers, and bade her \nlook how golden and how red the sun was.\n\n'Alfred,' said Grace, raising her head quickly at these words.  \n'The sun is going down.  You have not forgotten what I am to know \nbefore it sets.'\n\n'You are to know the truth of Marion's history, my love,' he \nanswered.\n\n'All the truth,' she said, imploringly.  'Nothing veiled from me, \nany more.  That was the promise.  Was it not?'\n\n'It was,' he answered.\n\n'Before the sun went down on Marion's birth-day.  And you see it, \nAlfred?  It is sinking fast.'\n\nHe put his arm about her waist, and, looking steadily into her \neyes, rejoined:\n\n'That truth is not reserved so long for me to tell, dear Grace.  It \nis to come from other lips.'\n\n'From other lips!' she faintly echoed.\n\n'Yes.  I know your constant heart, I know how brave you are, I know \nthat to you a word of preparation is enough.  You have said, truly, \nthat the time is come.  It is.  Tell me that you have present \nfortitude to bear a trial - a surprise - a shock:  and the \nmessenger is waiting at the gate.'\n\n'What messenger?' she said.  'And what intelligence does he bring?'\n\n'I am pledged,' he answered her, preserving his steady look, 'to \nsay no more.  Do you think you understand me?'\n\n'I am afraid to think,' she said.\n\nThere was that emotion in his face, despite its steady gaze, which \nfrightened her.  Again she hid her own face on his shoulder, \ntrembling, and entreated him to pause - a moment.\n\n'Courage, my wife!  When you have firmness to receive the \nmessenger, the messenger is waiting at the gate.  The sun is \nsetting on Marion's birth-day.  Courage, courage, Grace!'\n\nShe raised her head, and, looking at him, told him she was ready.  \nAs she stood, and looked upon him going away, her face was so like \nMarion's as it had been in her later days at home, that it was \nwonderful to see.  He took the child with him.  She called her back \n- she bore the lost girl's name - and pressed her to her bosom.  \nThe little creature, being released again, sped after him, and \nGrace was left alone.\n\nShe knew not what she dreaded, or what hoped; but remained there, \nmotionless, looking at the porch by which they had disappeared.\n\nAh! what was that, emerging from its shadow; standing on its \nthreshold!  That figure, with its white garments rustling in the \nevening air; its head laid down upon her father's breast, and \npressed against it to his loving heart!  O God! was it a vision \nthat came bursting from the old man's arms, and with a cry, and \nwith a waving of its hands, and with a wild precipitation of itself \nupon her in its boundless love, sank down in her embrace!\n\n'Oh, Marion, Marion!  Oh, my sister!  Oh, my heart's dear love!  \nOh, joy and happiness unutterable, so to meet again!'\n\nIt was no dream, no phantom conjured up by hope and fear, but \nMarion, sweet Marion!  So beautiful, so happy, so unalloyed by care \nand trial, so elevated and exalted in her loveliness, that as the \nsetting sun shone brightly on her upturned face, she might have \nbeen a spirit visiting the earth upon some healing mission.\n\nClinging to her sister, who had dropped upon a seat and bent down \nover her - and smiling through her tears - and kneeling, close \nbefore her, with both arms twining round her, and never turning for \nan instant from her face - and with the glory of the setting sun \nupon her brow, and with the soft tranquillity of evening gathering \naround them - Marion at length broke silence; her voice, so calm, \nlow, clear, and pleasant, well-tuned to the time.\n\n'When this was my dear home, Grace, as it will be now again - '\n\n'Stay, my sweet love!  A moment!  O Marion, to hear you speak \nagain.'\n\nShe could not bear the voice she loved so well, at first.\n\n'When this was my dear home, Grace, as it will be now again, I \nloved him from my soul.  I loved him most devotedly.  I would have \ndied for him, though I was so young.  I never slighted his \naffection in my secret breast for one brief instant.  It was far \nbeyond all price to me.  Although it is so long ago, and past, and \ngone, and everything is wholly changed, I could not bear to think \nthat you, who love so well, should think I did not truly love him \nonce.  I never loved him better, Grace, than when he left this very \nscene upon this very day.  I never loved him better, dear one, than \nI did that night when I left here.'\n\nHer sister, bending over her, could look into her face, and hold \nher fast.\n\n'But he had gained, unconsciously,' said Marion, with a gentle \nsmile, 'another heart, before I knew that I had one to give him.  \nThat heart - yours, my sister! - was so yielded up, in all its \nother tenderness, to me; was so devoted, and so noble; that it \nplucked its love away, and kept its secret from all eyes but mine - \nAh! what other eyes were quickened by such tenderness and \ngratitude! - and was content to sacrifice itself to me.  But, I \nknew something of its depths.  I knew the struggle it had made.  I \nknew its high, inestimable worth to him, and his appreciation of \nit, let him love me as he would.  I knew the debt I owed it.  I had \nits great example every day before me.  What you had done for me, I \nknew that I could do, Grace, if I would, for you.  I never laid my \nhead down on my pillow, but I prayed with tears to do it.  I never \nlaid my head down on my pillow, but I thought of Alfred's own words \non the day of his departure, and how truly he had said (for I knew \nthat, knowing you) that there were victories gained every day, in \nstruggling hearts, to which these fields of battle were nothing.  \nThinking more and more upon the great endurance cheerfully \nsustained, and never known or cared for, that there must be, every \nday and hour, in that great strife of which he spoke, my trial \nseemed to grow light and easy.  And He who knows our hearts, my \ndearest, at this moment, and who knows there is no drop of \nbitterness or grief - of anything but unmixed happiness - in mine, \nenabled me to make the resolution that I never would be Alfred's \nwife.  That he should be my brother, and your husband, if the \ncourse I took could bring that happy end to pass; but that I never \nwould (Grace, I then loved him dearly, dearly!) be his wife!'\n\n'O Marion!  O Marion!'\n\n'I had tried to seem indifferent to him;' and she pressed her \nsister's face against her own; 'but that was hard, and you were \nalways his true advocate.  I had tried to tell you of my \nresolution, but you would never hear me; you would never understand \nme.  The time was drawing near for his return.  I felt that I must \nact, before the daily intercourse between us was renewed.  I knew \nthat one great pang, undergone at that time, would save a \nlengthened agony to all of us.  I knew that if I went away then, \nthat end must follow which HAS followed, and which has made us both \nso happy, Grace!  I wrote to good Aunt Martha, for a refuge in her \nhouse:  I did not then tell her all, but something of my story, and \nshe freely promised it.  While I was contesting that step with \nmyself, and with my love of you, and home, Mr. Warden, brought here \nby an accident, became, for some time, our companion.'\n\n'I have sometimes feared of late years, that this might have been,' \nexclaimed her sister; and her countenance was ashy-pale.  'You \nnever loved him - and you married him in your self-sacrifice to \nme!'\n\n'He was then,' said Marion, drawing her sister closer to her, 'on \nthe eve of going secretly away for a long time.  He wrote to me, \nafter leaving here; told me what his condition and prospects really \nwere; and offered me his hand.  He told me he had seen I was not \nhappy in the prospect of Alfred's return.  I believe he thought my \nheart had no part in that contract; perhaps thought I might have \nloved him once, and did not then; perhaps thought that when I tried \nto seem indifferent, I tried to hide indifference - I cannot tell.  \nBut I wished that you should feel me wholly lost to Alfred - \nhopeless to him - dead.  Do you understand me, love?'\n\nHer sister looked into her face, attentively.  She seemed in doubt.\n\n'I saw Mr. Warden, and confided in his honour; charged him with my \nsecret, on the eve of his and my departure.  He kept it.  Do you \nunderstand me, dear?'\n\nGrace looked confusedly upon her.  She scarcely seemed to hear.\n\n'My love, my sister!' said Marion, 'recall your thoughts a moment; \nlisten to me.  Do not look so strangely on me.  There are \ncountries, dearest, where those who would abjure a misplaced \npassion, or would strive, against some cherished feeling of their \nhearts and conquer it, retire into a hopeless solitude, and close \nthe world against themselves and worldly loves and hopes for ever.  \nWhen women do so, they assume that name which is so dear to you and \nme, and call each other Sisters.  But, there may be sisters, Grace, \nwho, in the broad world out of doors, and underneath its free sky, \nand in its crowded places, and among its busy life, and trying to \nassist and cheer it and to do some good, - learn the same lesson; \nand who, with hearts still fresh and young, and open to all \nhappiness and means of happiness, can say the battle is long past, \nthe victory long won.  And such a one am I!  You understand me \nnow?'\n\nStill she looked fixedly upon her, and made no reply.\n\n'Oh Grace, dear Grace,' said Marion, clinging yet more tenderly and \nfondly to that breast from which she had been so long exiled, 'if \nyou were not a happy wife and mother - if I had no little namesake \nhere - if Alfred, my kind brother, were not your own fond husband - \nfrom whence could I derive the ecstasy I feel to-night!  But, as I \nleft here, so I have returned.  My heart has known no other love, \nmy hand has never been bestowed apart from it.  I am still your \nmaiden sister, unmarried, unbetrothed:  your own loving old Marion, \nin whose affection you exist alone and have no partner, Grace!'\n\nShe understood her now.  Her face relaxed:  sobs came to her \nrelief; and falling on her neck, she wept and wept, and fondled her \nas if she were a child again.\n\nWhen they were more composed, they found that the Doctor, and his \nsister good Aunt Martha, were standing near at hand, with Alfred.\n\n'This is a weary day for me,' said good Aunt Martha, smiling \nthrough her tears, as she embraced her nieces; 'for I lose my dear \ncompanion in making you all happy; and what can you give me, in \nreturn for my Marion?'\n\n'A converted brother,' said the Doctor.\n\n'That's something, to be sure,' retorted Aunt Martha, 'in such a \nfarce as - '\n\n'No, pray don't,' said the doctor penitently.\n\n'Well, I won't,' replied Aunt Martha.  'But, I consider myself ill \nused.  I don't know what's to become of me without my Marion, after \nwe have lived together half-a-dozen years.'\n\n'You must come and live here, I suppose,' replied the Doctor.  'We \nshan't quarrel now, Martha.'\n\n'Or you must get married, Aunt,' said Alfred.\n\n'Indeed,' returned the old lady, 'I think it might be a good \nspeculation if I were to set my cap at Michael Warden, who, I hear, \nis come home much the better for his absence in all respects.  But \nas I knew him when he was a boy, and I was not a very young woman \nthen, perhaps he mightn't respond.  So I'll make up my mind to go \nand live with Marion, when she marries, and until then (it will not \nbe very long, I dare say) to live alone.  What do YOU say, \nBrother?'\n\n'I've a great mind to say it's a ridiculous world altogether, and \nthere's nothing serious in it,' observed the poor old Doctor.\n\n'You might take twenty affidavits of it if you chose, Anthony,' \nsaid his sister; 'but nobody would believe you with such eyes as \nthose.'\n\n'It's a world full of hearts,' said the Doctor, hugging his \nyoungest daughter, and bending across her to hug Grace - for he \ncouldn't separate the sisters; 'and a serious world, with all its \nfolly - even with mine, which was enough to have swamped the whole \nglobe; and it is a world on which the sun never rises, but it looks \nupon a thousand bloodless battles that are some set-off against the \nmiseries and wickedness of Battle-Fields; and it is a world we need \nbe careful how we libel, Heaven forgive us, for it is a world of \nsacred mysteries, and its Creator only knows what lies beneath the \nsurface of His lightest image!'\n\n\nYou would not be the better pleased with my rude pen, if it \ndissected and laid open to your view the transports of this family, \nlong severed and now reunited.  Therefore, I will not follow the \npoor Doctor through his humbled recollection of the sorrow he had \nhad, when Marion was lost to him; nor, will I tell how serious he \nhad found that world to be, in which some love, deep-anchored, is \nthe portion of all human creatures; nor, how such a trifle as the \nabsence of one little unit in the great absurd account, had \nstricken him to the ground.  Nor, how, in compassion for his \ndistress, his sister had, long ago, revealed the truth to him by \nslow degrees, and brought him to the knowledge of the heart of his \nself-banished daughter, and to that daughter's side.\n\nNor, how Alfred Heathfield had been told the truth, too, in the \ncourse of that then current year; and Marion had seen him, and had \npromised him, as her brother, that on her birth-day, in the \nevening, Grace should know it from her lips at last.\n\n'I beg your pardon, Doctor,' said Mr. Snitchey, looking into the \norchard, 'but have I liberty to come in?'\n\nWithout waiting for permission, he came straight to Marion, and \nkissed her hand, quite joyfully.\n\n'If Mr. Craggs had been alive, my dear Miss Marion,' said Mr. \nSnitchey, 'he would have had great interest in this occasion.  It \nmight have suggested to him, Mr. Alfred, that our life is not too \neasy perhaps:  that, taken altogether, it will bear any little \nsmoothing we can give it; but Mr. Craggs was a man who could endure \nto be convinced, sir.  He was always open to conviction.  If he \nwere open to conviction, now, I - this is weakness.  Mrs. Snitchey, \nmy dear,' - at his summons that lady appeared from behind the door, \n'you are among old friends.'\n\nMrs. Snitchey having delivered her congratulations, took her \nhusband aside.\n\n'One moment, Mr. Snitchey,' said that lady.  'It is not in my \nnature to rake up the ashes of the departed.'\n\n'No, my dear,' returned her husband.\n\n'Mr. Craggs is - '\n\n'Yes, my dear, he is deceased,' said Snitchey.\n\n'But I ask you if you recollect,' pursued his wife, 'that evening \nof the ball?  I only ask you that.  If you do; and if your memory \nhas not entirely failed you, Mr. Snitchey; and if you are not \nabsolutely in your dotage; I ask you to connect this time with that \n- to remember how I begged and prayed you, on my knees - '\n\n'Upon your knees, my dear?' said Mr. Snitchey.\n\n'Yes,' said Mrs. Snitchey, confidently, 'and you know it - to \nbeware of that man - to observe his eye - and now to tell me \nwhether I was right, and whether at that moment he knew secrets \nwhich he didn't choose to tell.'\n\n'Mrs. Snitchey,' returned her husband, in her ear, 'Madam.  Did you \never observe anything in MY eye?'\n\n'No,' said Mrs. Snitchey, sharply.  'Don't flatter yourself.'\n\n'Because, Madam, that night,' he continued, twitching her by the \nsleeve, 'it happens that we both knew secrets which we didn't \nchoose to tell, and both knew just the same professionally.  And so \nthe less you say about such things the better, Mrs. Snitchey; and \ntake this as a warning to have wiser and more charitable eyes \nanother time.  Miss Marion, I brought a friend of yours along with \nme.  Here!  Mistress!'\n\nPoor Clemency, with her apron to her eyes, came slowly in, escorted \nby her husband; the latter doleful with the presentiment, that if \nshe abandoned herself to grief, the Nutmeg-Grater was done for.\n\n'Now, Mistress,' said the lawyer, checking Marion as she ran \ntowards her, and interposing himself between them, 'what's the \nmatter with YOU?'\n\n'The matter!' cried poor Clemency. - When, looking up in wonder, \nand in indignant remonstrance, and in the added emotion of a great \nroar from Mr. Britain, and seeing that sweet face so well \nremembered close before her, she stared, sobbed, laughed, cried, \nscreamed, embraced her, held her fast, released her, fell on Mr. \nSnitchey and embraced him (much to Mrs. Snitchey's indignation), \nfell on the Doctor and embraced him, fell on Mr. Britain and \nembraced him, and concluded by embracing herself, throwing her \napron over her head, and going into hysterics behind it.\n\nA stranger had come into the orchard, after Mr. Snitchey, and had \nremained apart, near the gate, without being observed by any of the \ngroup; for they had little spare attention to bestow, and that had \nbeen monopolised by the ecstasies of Clemency.  He did not appear \nto wish to be observed, but stood alone, with downcast eyes; and \nthere was an air of dejection about him (though he was a gentleman \nof a gallant appearance) which the general happiness rendered more \nremarkable.\n\nNone but the quick eyes of Aunt Martha, however, remarked him at \nall; but, almost as soon as she espied him, she was in conversation \nwith him.  Presently, going to where Marion stood with Grace and \nher little namesake, she whispered something in Marion's ear, at \nwhich she started, and appeared surprised; but soon recovering from \nher confusion, she timidly approached the stranger, in Aunt \nMartha's company, and engaged in conversation with him too.\n\n'Mr. Britain,' said the lawyer, putting his hand in his pocket, and \nbringing out a legal-looking document, while this was going on, 'I \ncongratulate you.  You are now the whole and sole proprietor of \nthat freehold tenement, at present occupied and held by yourself as \na licensed tavern, or house of public entertainment, and commonly \ncalled or known by the sign of the Nutmeg-Grater.  Your wife lost \none house, through my client Mr. Michael Warden; and now gains \nanother.  I shall have the pleasure of canvassing you for the \ncounty, one of these fine mornings.'\n\n'Would it make any difference in the vote if the sign was altered, \nsir?' asked Britain.\n\n'Not in the least,' replied the lawyer.\n\n'Then,' said Mr. Britain, handing him back the conveyance, 'just \nclap in the words, \"and Thimble,\" will you be so good; and I'll \nhave the two mottoes painted up in the parlour instead of my wife's \nportrait.'\n\n'And let me,' said a voice behind them; it was the stranger's - \nMichael Warden's; 'let me claim the benefit of those inscriptions.  \nMr. Heathfield and Dr. Jeddler, I might have deeply wronged you \nboth.  That I did not, is no virtue of my own.  I will not say that \nI am six years wiser than I was, or better.  But I have known, at \nany rate, that term of self-reproach.  I can urge no reason why you \nshould deal gently with me.  I abused the hospitality of this \nhouse; and learnt by my own demerits, with a shame I never have \nforgotten, yet with some profit too, I would fain hope, from one,' \nhe glanced at Marion, 'to whom I made my humble supplication for \nforgiveness, when I knew her merit and my deep unworthiness.  In a \nfew days I shall quit this place for ever.  I entreat your pardon.  \nDo as you would be done by!  Forget and Forgive!'\n\n\nTIME - from whom I had the latter portion of this story, and with \nwhom I have the pleasure of a personal acquaintance of some five-\nand-thirty years' duration - informed me, leaning easily upon his \nscythe, that Michael Warden never went away again, and never sold \nhis house, but opened it afresh, maintained a golden means of \nhospitality, and had a wife, the pride and honour of that \ncountryside, whose name was Marion.  But, as I have observed that \nTime confuses facts occasionally, I hardly know what weight to give \nto his authority.\n\n\n\n\nEnd of the Project Gutenberg Etext of The Battle of Life by Charles Dickens\n\n*The Project Gutenberg Etext of Bleak House by Charles Dickens*\n#33 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nBleak House\n\nby Charles Dickens\n\nAugust, 1997  [Etext #1023]\n\n\n*The Project Gutenberg Etext of Bleak House by Charles Dickens*\n******This file should be named blkhs10.txt or blkhs10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, blkhs11.txt.\nVERSIONS based on separate sources get new LETTER, blkhs10a.txt.\n\n\nThis etext was prepared by Donald Lainson, Toronto, Canada\n(charlie@idirect.com)\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month, or 384 more Etexts in 1997 for a total of 1000+\nIf these reach just 10% of the computerized population, then the\ntotal should reach over 100 billion Etexts given away.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/CMU\": and are\ntax deductible to the extent allowable by law.  (CMU = Carnegie-\nMellon University).\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nCarnegie-Mellon University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association/Carnegie-Mellon\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Carnegie-Mellon University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThis etext was prepared by Donald Lainson, Toronto, Canada\n(charlie@idirect.com)\n\n\n\n\n\nBLEAK HOUSE\n\nby Charles Dickens\n\n\n\n\nPREFACE\n\n\nA Chancery judge once had the kindness to inform me, as one of a \ncompany of some hundred and fifty men and women not labouring under \nany suspicions of lunacy, that the Court of Chancery, though the \nshining subject of much popular prejudice (at which point I thought \nthe judge's eye had a cast in my direction), was almost immaculate.  \nThere had been, he admitted, a trivial blemish or so in its rate of \nprogress, but this was exaggerated and had been entirely owing to \nthe \"parsimony of the public,\" which guilty public, it appeared, \nhad been until lately bent in the most determined manner on by no \nmeans enlarging the number of Chancery judges appointed--I believe \nby Richard the Second, but any other king will do as well.\n\nThis seemed to me too profound a joke to be inserted in the body of \nthis book or I should have restored it to Conversation Kenge or to \nMr. Vholes, with one or other of whom I think it must have \noriginated.  In such mouths I might have coupled it with an apt \nquotation from one of Shakespeare's sonnets:\n\n\"My nature is subdued\nTo what it works in, like the dyer's hand:\nPity me, then, and wish I were renewed!\"\n\nBut as it is wholesome that the parsimonious public should know \nwhat has been doing, and still is doing, in this connexion, I \nmention here that everything set forth in these pages concerning \nthe Court of Chancery is substantially true, and within the truth.  \nThe case of Gridley is in no essential altered from one of actual \noccurrence, made public by a disinterested person who was \nprofessionally acquainted with the whole of the monstrous wrong \nfrom beginning to end.  At the present moment (August, 1853) there \nis a suit before the court which was commenced nearly twenty years \nago, in which from thirty to forty counsel have been known to \nappear at one time, in which costs have been incurred to the amount \nof seventy thousand pounds, which is A FRIENDLY SUIT, and which is \n(I am assured) no nearer to its termination now than when it was \nbegun.  There is another well-known suit in Chancery, not yet \ndecided, which was commenced before the close of the last century \nand in which more than double the amount of seventy thousand pounds \nhas been swallowed up in costs.  If I wanted other authorities for \nJarndyce and Jarndyce, I could rain them on these pages, to the \nshame of--a parsimonious public.\n\nThere is only one other point on which I offer a word of remark.  \nThe possibility of what is called spontaneous combustion has been \ndenied since the death of Mr. Krook; and my good friend Mr. Lewes \n(quite mistaken, as he soon found, in supposing the thing to have \nbeen abandoned by all authorities) published some ingenious letters \nto me at the time when that event was chronicled, arguing that \nspontaneous combustion could not possibly be.  I have no need to \nobserve that I do not wilfully or negligently mislead my readers \nand that before I wrote that description I took pains to \ninvestigate the subject.  There are about thirty cases on record, \nof which the most famous, that of the Countess Cornelia de Baudi \nCesenate, was minutely investigated and described by Giuseppe \nBianchini, a prebendary of Verona, otherwise distinguished in \nletters, who published an account of it at Verona in 1731, which he \nafterwards republished at Rome.  The appearances, beyond all \nrational doubt, observed in that case are the appearances observed \nin Mr. Krook's case.  The next most famous instance happened at \nRheims six years earlier, and the historian in that case is Le Cat, \none of the most renowned surgeons produced by France.  The subject \nwas a woman, whose husband was ignorantly convicted of having \nmurdered her; but on solemn appeal to a higher court, he was \nacquitted because it was shown upon the evidence that she had died \nthe death of which this name of spontaneous combustion is given.  I \ndo not think it necessary to add to these notable facts, and that \ngeneral reference to the authorities which will be found at page \n30, vol. ii.,* the recorded opinions and experiences of \ndistinguished medical professors, French, English, and Scotch, in \nmore modern days, contenting myself with observing that I shall not \nabandon the facts until there shall have been a considerable \nspontaneous combustion of the testimony on which human occurrences \nare usually received.\n\nIn Bleak House I have purposely dwelt upon the romantic side of \nfamiliar things.\n\n\n1853\n\n\n* Another case, very clearly described by a dentist, occurred at \nthe town of Columbus, in the United States of America, quite \nrecently.  The subject was a German who kept a liquor-shop aud was \nan inveterate drunkard.\n\n\n\nCHAPTER I\n\nIn Chancery\n\n\nLondon.  Michaelmas term lately over, and the Lord Chancellor \nsitting in Lincoln's Inn Hall.  Implacable November weather.  As \nmuch mud in the streets as if the waters had but newly retired from \nthe face of the earth, and it would not be wonderful to meet a \nMegalosaurus, forty feet long or so, waddling like an elephantine \nlizard up Holborn Hill.  Smoke lowering down from chimney-pots, \nmaking a soft black drizzle, with flakes of soot in it as big as \nfull-grown snowflakes--gone into mourning, one might imagine, for \nthe death of the sun.  Dogs, undistinguishable in mire.  Horses, \nscarcely better; splashed to their very blinkers.  Foot passengers, \njostling one another's umbrellas in a general infection of ill \ntemper, and losing their foot-hold at street-corners, where tens of \nthousands of other foot passengers have been slipping and sliding \nsince the day broke (if this day ever broke), adding new deposits \nto the crust upon crust of mud, sticking at those points \ntenaciously to the pavement, and accumulating at compound interest.\n\nFog everywhere.  Fog up the river, where it flows among green aits \nand meadows; fog down the river, where it rolls deified among the \ntiers of shipping and the waterside pollutions of a great (and \ndirty) city.  Fog on the Essex marshes, fog on the Kentish heights.  \nFog creeping into the cabooses of collier-brigs; fog lying out on \nthe yards and hovering in the rigging of great ships; fog drooping \non the gunwales of barges and small boats.  Fog in the eyes and \nthroats of ancient Greenwich pensioners, wheezing by the firesides \nof their wards; fog in the stem and bowl of the afternoon pipe of \nthe wrathful skipper, down in his close cabin; fog cruelly pinching \nthe toes and fingers of his shivering little 'prentice boy on deck.  \nChance people on the bridges peeping over the parapets into a \nnether sky of fog, with fog all round them, as if they were up in a \nballoon and hanging in the misty clouds.\n\nGas looming through the fog in divers places in the streets, much \nas the sun may, from the spongey fields, be seen to loom by \nhusbandman and ploughboy.  Most of the shops lighted two hours \nbefore their time--as the gas seems to know, for it has a haggard \nand unwilling look.\n\nThe raw afternoon is rawest, and the dense fog is densest, and the \nmuddy streets are muddiest near that leaden-headed old obstruction, \nappropriate ornament for the threshold of a leaden-headed old \ncorporation, Temple Bar.  And hard by Temple Bar, in Lincoln's Inn \nHall, at the very heart of the fog, sits the Lord High Chancellor \nin his High Court of Chancery.\n\nNever can there come fog too thick, never can there come mud and \nmire too deep, to assort with the groping and floundering condition \nwhich this High Court of Chancery, most pestilent of hoary sinners, \nholds this day in the sight of heaven and earth.\n\nOn such an afternoon, if ever, the Lord High Chancellor ought to be \nsitting her--as here he is--with a foggy glory round his head, \nsoftly fenced in with crimson cloth and curtains, addressed by a \nlarge advocate with great whiskers, a little voice, and an \ninterminable brief, and outwardly directing his contemplation to \nthe lantern in the roof, where he can see nothing but fog.  On such \nan afternoon some score of members of the High Court of Chancery \nbar ought to be--as here they are--mistily engaged in one of the \nten thousand stages of an endless cause, tripping one another up on \nslippery precedents, groping knee-deep in technicalities, running \ntheir goat-hair and horsehair warded heads against walls of words \nand making a pretence of equity with serious faces, as players \nmight.  On such an afternoon the various solicitors in the cause, \nsome two or three of whom have inherited it from their fathers, who \nmade a fortune by it, ought to be--as are they not?--ranged in a \nline, in a long matted well (but you might look in vain for truth \nat the bottom of it) between the registrar's red table and the silk \ngowns, with bills, cross-bills, answers, rejoinders, injunctions, \naffidavits, issues, references to masters, masters' reports, \nmountains of costly nonsense, piled before them.  Well may the \ncourt be dim, with wasting candles here and there; well may the fog \nhang heavy in it, as if it would never get out; well may the \nstained-glass windows lose their colour and admit no light of day \ninto the place; well may the uninitiated from the streets, who peep \nin through the glass panes in the door, be deterred from entrance \nby its owlish aspect and by the drawl, languidly echoing to the \nroof from the padded dais where the Lord High Chancellor looks into \nthe lantern that has no light in it and where the attendant wigs \nare all stuck in a fog-bank!  This is the Court of Chancery, which \nhas its decaying houses and its blighted lands in every shire, \nwhich has its worn-out lunatic in every madhouse and its dead in \nevery churchyard, which has its ruined suitor with his slipshod \nheels and threadbare dress borrowing and begging through the round \nof every man's acquaintance, which gives to monied might the means \nabundantly of wearying out the right, which so exhausts finances, \npatience, courage, hope, so overthrows the brain and breaks the \nheart, that there is not an honourable man among its practitioners \nwho would not give--who does not often give--the warning, \"Suffer \nany wrong that can be done you rather than come here!\"\n\nWho happen to be in the Lord Chancellor's court this murky \nafternoon besides the Lord Chancellor, the counsel in the cause, \ntwo or three counsel who are never in any cause, and the well of \nsolicitors before mentioned?  There is the registrar below the \njudge, in wig and gown; and there are two or three maces, or petty-\nbags, or privy purses, or whatever they may be, in legal court \nsuits.  These are all yawning, for no crumb of amusement ever falls \nfrom Jarndyce and Jarndyce (the cause in hand), which was squeezed \ndry years upon years ago.  The short-hand writers, the reporters of \nthe court, and the reporters of the newspapers invariably decamp \nwith the rest of the regulars when Jarndyce and Jarndyce comes on.  \nTheir places are a blank.  Standing on a seat at the side of the \nhall, the better to peer into the curtained sanctuary, is a little \nmad old woman in a squeezed bonnet who is always in court, from its \nsitting to its rising, and always expecting some incomprehensible \njudgment to be given in her favour.  Some say she really is, or \nwas, a party to a suit, but no one knows for certain because no one \ncares.  She carries some small litter in a reticule which she calls \nher documents, principally consisting of paper matches and dry \nlavender.  A sallow prisoner has come up, in custody, for the half-\ndozenth time to make a personal application \"to purge himself of \nhis contempt,\" which, being a solitary surviving executor who has \nfallen into a state of conglomeration about accounts of which it is \nnot pretended that he had ever any knowledge, he is not at all \nlikely ever to do.  In the meantime his prospects in life are \nended.  Another ruined suitor, who periodically appears from \nShropshire and breaks out into efforts to address the Chancellor at \nthe close of the day's business and who can by no means be made to \nunderstand that the Chancellor is legally ignorant of his existence \nafter making it desolate for a quarter of a century, plants himself \nin a good place and keeps an eye on the judge, ready to call out \n\"My Lord!\" in a voice of sonorous complaint on the instant of his \nrising.  A few lawyers' clerks and others who know this suitor by \nsight linger on the chance of his furnishing some fun and \nenlivening the dismal weather a little.\n\nJarndyce and Jarndyce drones on.  This scarecrow of a suit has, in \ncourse of time, become so complicated that no man alive knows what \nit means.  The parties to it understand it least, but it has been \nobserved that no two Chancery lawyers can talk about it for five \nminutes without coming to a total disagreement as to all the \npremises.  Innumerable children have been born into the cause; \ninnumerable young people have married into it; innumerable old \npeople have died out of it.  Scores of persons have deliriously \nfound themselves made parties in Jarndyce and Jarndyce without \nknowing how or why; whole families have inherited legendary hatreds \nwith the suit.  The little plaintiff or defendant who was promised \na new rocking-horse when Jarndyce and Jarndyce should be settled \nhas grown up, possessed himself of a real horse, and trotted away \ninto the other world.  Fair wards of court have faded into mothers \nand grandmothers; a long procession of Chancellors has come in and \ngone out; the legion of bills in the suit have been transformed \ninto mere bills of mortality; there are not three Jarndyces left \nupon the earth perhaps since old Tom Jarndyce in despair blew his \nbrains out at a coffee-house in Chancery Lane; but Jarndyce and \nJarndyce still drags its dreary length before the court, \nperennially hopeless.\n\nJarndyce and Jarndyce has passed into a joke.  That is the only \ngood that has ever come of it.  It has been death to many, but it \nis a joke in the profession.  Every master in Chancery has had a \nreference out of it.  Every Chancellor was \"in it,\" for somebody or \nother, when he was counsel at the bar.  Good things have been said \nabout it by blue-nosed, bulbous-shoed old benchers in select port-\nwine committee after dinner in hall.  Articled clerks have been in \nthe habit of fleshing their legal wit upon it.  The last Lord \nChancellor handled it neatly, when, correcting Mr. Blowers, the \neminent silk gown who said that such a thing might happen when the \nsky rained potatoes, he observed, \"or when we get through Jarndyce \nand Jarndyce, Mr. Blowers\"--a pleasantry that particularly tickled \nthe maces, bags, and purses.\n\nHow many people out of the suit Jarndyce and Jarndyce has stretched \nforth its unwholesome hand to spoil and corrupt would be a very \nwide question.  From the master upon whose impaling files reams of \ndusty warrants in Jarndyce and Jarndyce have grimly writhed into \nmany shapes, down to the copying-clerk in the Six Clerks' Office \nwho has copied his tens of thousands of Chancery folio-pages under \nthat eternal heading, no man's nature has been made better by it.  \nIn trickery, evasion, procrastination, spoliation, botheration, \nunder false pretences of all sorts, there are influences that can \nnever come to good.  The very solicitors' boys who have kept the \nwretched suitors at bay, by protesting time out of mind that Mr. \nChizzle, Mizzle, or otherwise was particularly engaged and had \nappointments until dinner, may have got an extra moral twist and \nshuffle into themselves out of Jarndyce and Jarndyce.  The receiver \nin the cause has acquired a goodly sum of money by it but has \nacquired too a distrust of his own mother and a contempt for his \nown kind.  Chizzle, Mizzle, and otherwise have lapsed into a habit \nof vaguely promising themselves that they will look into that \noutstanding little matter and see what can be done for Drizzle--who \nwas not well used--when Jarndyce and Jarndyce shall be got out of \nthe office.  Shirking and sharking in all their many varieties have \nbeen sown broadcast by the ill-fated cause; and even those who have \ncontemplated its history from the outermost circle of such evil \nhave been insensibly tempted into a loose way of letting bad things \nalone to take their own bad course, and a loose belief that if the \nworld go wrong it was in some off-hand manner never meant to go \nright.\n\nThus, in the midst of the mud and at the heart of the fog, sits the \nLord High Chancellor in his High Court of Chancery.\n\n\"Mr. Tangle,\" says the Lord High Chancellor, latterly something \nrestless under the eloquence of that learned gentleman.\n\n\"Mlud,\" says Mr. Tangle.  Mr. Tangle knows more of Jarndyce and \nJarndyce than anybody.  He is famous for it--supposed never to have \nread anything else since he left school.\n\n\"Have you nearly concluded your argument?\"\n\n\"Mlud, no--variety of points--feel it my duty tsubmit--ludship,\" is \nthe reply that slides out of Mr. Tangle.\n\n\"Several members of the bar are still to be heard, I believe?\" says \nthe Chancellor with a slight smile.\n\nEighteen of Mr. Tangle's learned friends, each armed with a little \nsummary of eighteen hundred sheets, bob up like eighteen hammers in \na pianoforte, make eighteen bows, and drop into their eighteen \nplaces of obscurity.\n\n\"We will proceed with the hearing on Wednesday fortnight,\" says the \nChancellor.  For the question at issue is only a question of costs, \na mere bud on the forest tree of the parent suit, and really will \ncome to a settlement one of these days.\n\nThe Chancellor rises; the bar rises; the prisoner is brought \nforward in a hurry; the man from Shropshire cries, \"My lord!\"  \nMaces, bags, and purses indignantly proclaim silence and frown at \nthe man from Shropshire.\n\n\"In reference,\" proceeds the Chancellor, still on Jarndyce and \nJarndyce, \"to the young girl--\" \n\n\"Begludship's pardon--boy,\" says Mr. Tangle prematurely.  \"In \nreference,\" proceeds the Chancellor with extra distinctness, \"to \nthe young girl and boy, the two young people\"--Mr. Tangle crushed--\n\"whom I directed to be in attendance to-day and who are now in my \nprivate room, I will see them and satisfy myself as to the \nexpediency of making the order for their residing with their \nuncle.\"\n\nMr. Tangle on his legs again.  \"Begludship's pardon--dead.\"\n\n\"With their\"--Chancellor looking through his double eyeglass at the \npapers on his desk--\"grandfather.\"\n\n\"Begludship's pardon--victim of rash action--brains.\"\n\nSuddenly a very little counsel with a terrific bass voice arises, \nfully inflated, in the back settlements of the fog, and says, \"Will \nyour lordship allow me?  I appear for him.  He is a cousin, several \ntimes removed.  I am not at the moment prepared to inform the court \nin what exact remove he is a cousin, but he IS a cousin.\n\nLeaving this address (delivered like a sepulchral message) ringing \nin the rafters of the roof, the very little counsel drops, and the \nfog knows him no more.  Everybody looks for him.  Nobody can see \nhim.\n\n\"I will speak with both the young people,\" says the Chancellor \nanew, \"and satisfy myself on the subject of their residing with \ntheir cousin.  I will mention the matter to-morrow morning when I \ntake my seat.\"\n\nThe Chancellor is about to bow to the bar when the prisoner is \npresented.  Nothing can possibly come of the prisoner's \nconglomeration but his being sent back to prison, which is soon \ndone.  The man from Shropshire ventures another remonstrative \"My \nlord!\" but the Chancellor, being aware of him, has dexterously \nvanished.  Everybody else quickly vanishes too.  A battery of blue \nbags is loaded with heavy charges of papers and carried off by \nclerks; the little mad old woman marches off with her documents; \nthe empty court is locked up.  If all the injustice it has \ncommitted and all the misery it has caused could only be locked up \nwith it, and the whole burnt away in a great funeral pyre--why so \nmuch the better for other parties than the parties in Jarndyce and \nJarndyce!\n\n\n\nCHAPTER II\n\nIn Fashion\n\n\nIt is but a glimpse of the world of fashion that we want on this \nsame miry afternoon.  It is not so unlike the Court of Chancery but \nthat we may pass from the one scene to the other, as the crow \nflies.  Both the world of fashion and the Court of Chancery are \nthings of precedent and usage: oversleeping Rip Van Winkles who \nhave played at strange games through a deal of thundery weather; \nsleeping beauties whom the knight will wake one day, when all the \nstopped spits in the kitchen shall begin to turn prodigiously!\n\nIt is not a large world.  Relatively even to this world of ours, \nwhich has its limits too (as your Highness shall find when you have \nmade the tour of it and are come to the brink of the void beyond), \nit is a very little speck.  There is much good in it; there are \nmany good and true people in it; it has its appointed place.  But \nthe evil of it is that it is a world wrapped up in too much \njeweller's cotton and fine wool, and cannot hear the rushing of the \nlarger worlds, and cannot see them as they circle round the sun.  \nIt is a deadened world, and its growth is sometimes unhealthy for \nwant of air.\n\nMy Lady Dedlock has returned to her house in town for a few days \nprevious to her departure for Paris, where her ladyship intends to \nstay some weeks, after which her movements are uncertain.  The \nfashionable intelligence says so for the comfort of the Parisians, \nand it knows all fashionable things.  To know things otherwise were \nto be unfashionable.  My Lady Dedlock has been down at what she \ncalls, in familiar conversation, her \"place\" in Lincolnshire.  The \nwaters are out in Lincolnshire.  An arch of the bridge in the park \nhas been sapped and sopped away.  The adjacent low-lying ground for \nhalf a mile in breadth is a stagnant river with melancholy trees \nfor islands in it and a surface punctured all over, all day long, \nwith falling rain.  My Lady Dedlock's place has been extremely \ndreary.  The weather for many a day and night has been so wet that \nthe trees seem wet through, and the soft loppings and prunings of \nthe woodman's axe can make no crash or crackle as they fall.  The \ndeer, looking soaked, leave quagmires where they pass.  The shot of \na rifle loses its sharpness in the moist air, and its smoke moves \nin a tardy little cloud towards the green rise, coppice-topped, \nthat makes a background for the falling rain.  The view from my \nLady Dedlock's own windows is alternately a lead-coloured view and \na view in Indian ink.  The vases on the stone terrace in the \nforeground catch the rain all day; and the heavy drops fall--drip, \ndrip, drip--upon the broad flagged pavement, called from old time \nthe Ghost's Walk, all night.  On Sundays the little church in the \npark is mouldy; the oaken pulpit breaks out into a cold sweat; and \nthere is a general smell and taste as of the ancient Dedlocks in \ntheir graves.  My Lady Dedlock (who is childless), looking out in \nthe early twilight from her boudoir at a keeper's lodge and seeing \nthe light of a fire upon the latticed panes, and smoke rising from \nthe chimney, and a child, chased by a woman, running out into the \nrain to meet the shining figure of a wrapped-up man coming through \nthe gate, has been put quite out of temper.  My Lady Dedlock says \nshe has been \"bored to death.\"\n\nTherefore my Lady Dedlock has come away from the place in \nLincolnshire and has left it to the rain, and the crows, and the \nrabbits, and the deer, and the partridges and pheasants.  The \npictures of the Dedlocks past and gone have seemed to vanish into \nthe damp walls in mere lowness of spirits, as the housekeeper has \npassed along the old rooms shutting up the shutters.  And when they \nwill next come forth again, the fashionable intelligence--which, \nlike the fiend, is omniscient of the past and present, but not the \nfuture--cannot yet undertake to say.\n\nSir Leicester Dedlock is only a baronet, but there is no mightier \nbaronet than he.  His family is as old as the hills, and infinitely \nmore respectable.  He has a general opinion that the world might \nget on without hills but would be done up without Dedlocks.  He \nwould on the whole admit nature to be a good idea (a little low, \nperhaps, when not enclosed with a park-fence), but an idea \ndependent for its execution on your great county families.  He is a \ngentleman of strict conscience, disdainful of all littleness and \nmeanness and ready on the shortest notice to die any death you may \nplease to mention rather than give occasion for the least \nimpeachment of his integrity.  He is an honourable, obstinate, \ntruthful, high-spirited, intensely prejudiced, perfectly \nunreasonable man.\n\nSir Leicester is twenty years, full measure, older than my Lady.  \nHe will never see sixty-five again, nor perhaps sixty-six, nor yet \nsixty-seven.  He has a twist of the gout now and then and walks a \nlittle stiffly.  He is of a worthy presence, with his light-grey \nhair and whiskers, his fine shirt-frill, his pure-white waistcoat, \nand his blue coat with bright buttons always buttoned.  He is \nceremonious, stately, most polite on every occasion to my Lady, and \nholds her personal attractions in the highest estimation.  His \ngallantry to my Lady, which has never changed since he courted her, \nis the one little touch of romantic fancy in him.\n\nIndeed, he married her for love.  A whisper still goes about that \nshe had not even family; howbeit, Sir Leicester had so much family \nthat perhaps he had enough and could dispense with any more.  But \nshe had beauty, pride, ambition, insolent resolve, and sense enough \nto portion out a legion of fine ladies.  Wealth and station, added \nto these, soon floated her upward, and for years now my Lady \nDedlock has been at the centre of the fashionable intelligence and \nat the top of the fashionable tree.\n\nHow Alexander wept when he had no more worlds to conquer, everybody \nknows--or has some reason to know by this time, the matter having \nbeen rather frequently mentioned.  My Lady Dedlock, having \nconquered HER world, fell not into the melting, but rather into the \nfreezing, mood.  An exhausted composure, a worn-out placidity, an \nequanimity of fatigue not to be ruffled by interest or satisfaction, \nare the trophies of her victory.  She is perfectly well-bred.  \nIf she could be translated to heaven to-morrow, she might be \nexpected to ascend without any rapture.\n\nShe has beauty still, and if it be not in its heyday, it is not yet \nin its autumn.  She has a fine face--originally of a character that \nwould be rather called very pretty than handsome, but improved into \nclassicality by the acquired expression of her fashionable state.  \nHer figure is elegant and has the effect of being tall.  Not that \nshe is so, but that \"the most is made,\" as the Honourable Bob \nStables has frequently asserted upon oath, \"of all her points.\"  \nThe same authority observes that she is perfectly got up and \nremarks in commendation of her hair especially that she is the \nbest-groomed woman in the whole stud.\n\nWith all her perfections on her head, my Lady Dedlock has come up \nfrom her place in Lincolnshire (hotly pursued by the fashionable \nintelligence) to pass a few days at her house in town previous to \nher departure for Paris, where her ladyship intends to stay some \nweeks, after which her movements are uncertain.  And at her house \nin town, upon this muddy, murky afternoon, presents himself an old-\nfashioned old gentleman, attorney-at-law and eke solicitor of the \nHigh Court of Chancery, who has the honour of acting as legal \nadviser of the Dedlocks and has as many cast-iron boxes in his \noffice with that name outside as if the present baronet were the \ncoin of the conjuror's trick and were constantly being juggled \nthrough the whole set.  Across the hall, and up the stairs, and \nalong the passages, and through the rooms, which are very brilliant \nin the season and very dismal out of it--fairy-land to visit, but a \ndesert to live in--the old gentleman is conducted by a Mercury in \npowder to my Lady's presence.\n\nThe old gentleman is rusty to look at, but is reputed to have made \ngood thrift out of aristocratic marriage settlements and \naristocratic wills, and to be very rich.  He is surrounded by a \nmysterious halo of family confidences, of which he is known to be \nthe silent depository.  There are noble mausoleums rooted for \ncenturies in retired glades of parks among the growing timber and \nthe fern, which perhaps hold fewer noble secrets than walk abroad \namong men, shut up in the breast of Mr. Tulkinghorn.  He is of what \nis called the old school--a phrase generally meaning any school \nthat seems never to have been young--and wears knee-breeches tied \nwith ribbons, and gaiters or stockings.  One peculiarity of his \nblack clothes and of his black stockings, be they silk or worsted, \nis that they never shine.  Mute, close, irresponsive to any \nglancing light, his dress is like himself.  He never converses when \nnot professionaly consulted.  He is found sometimes, speechless but \nquite at home, at corners of dinner-tables in great country houses \nand near doors of drawing-rooms, concerning which the fashionable \nintelligence is eloquent, where everybody knows him and where half \nthe Peerage stops to say \"How do you do, Mr. Tulkinghorn?\"  He \nreceives these salutations with gravity and buries them along with \nthe rest of his knowledge.\n\nSir Leicester Dedlock is with my Lady and is happy to see Mr. \nTulkinghorn.  There is an air of prescription about him which is \nalways agreeable to Sir Leicester; he receives it as a kind of \ntribute.  He likes Mr. Tulkinghorn's dress; there is a kind of \ntribute in that too.  It is eminently respectable, and likewise, in \na general way, retainer-like.  It expresses, as it were, the \nsteward of the legal mysteries, the butler of the legal cellar, of \nthe Dedlocks.\n\nHas Mr. Tulkinghorn any idea of this himself?  It may be so, or it \nmay not, but there is this remarkable circumstance to be noted in \neverything associated with my Lady Dedlock as one of a class--as \none of the leaders and representatives of her little world.  She \nsupposes herself to be an inscrutable Being, quite out of the reach \nand ken of ordinary mortals--seeing herself in her glass, where \nindeed she looks so.  Yet every dim little star revolving about \nher, from her maid to the manager of the Italian Opera, knows her \nweaknesses, prejudices, follies, haughtinesses, and caprices and \nlives upon as accurate a calculation and as nice a measure of her \nmoral nature as her dressmaker takes of her physical proportions.  \nIs a new dress, a new custom, a new singer, a new dancer, a new \nform of jewellery, a new dwarf or giant, a new chapel, a new \nanything, to be set up?  There are deferential people in a dozen \ncallings whom my Lady Dedlock suspects of nothing but prostration \nbefore her, who can tell you how to manage her as if she were a \nbaby, who do nothing but nurse her all their lives, who, humbly \naffecting to follow with profound subservience, lead her and her \nwhole troop after them; who, in hooking one, hook all and bear them \noff as Lemuel Gulliver bore away the stately fleet of the majestic \nLilliput.  \"If you want to address our people, sir,\" say Blaze and \nSparkle, the jewellers--meaning by our people Lady Dedlock and the \nrest--\"you must remember that you are not dealing with the general \npublic; you must hit our people in their weakest place, and their \nweakest place is such a place.\"  \"To make this article go down, \ngentlemen,\" say Sheen and Gloss, the mercers, to their friends the \nmanufacturers, \"you must come to us, because we know where to have \nthe fashionable people, and we can make it fashionable.\"  \"If you \nwant to get this print upon the tables of my high connexion, sir,\" \nsays Mr. Sladdery, the librarian, \"or if you want to get this dwarf \nor giant into the houses of my high connexion, sir, or if you want \nto secure to this entertainment the patronage of my high connexion, \nsir, you must leave it, if you please, to me, for I have been \naccustomed to study the leaders of my high connexion, sir, and I \nmay tell you without vanity that I can turn them round my finger\"--\nin which Mr. Sladdery, who is an honest man, does not exaggerate at \nall.\n\nTherefore, while Mr. Tulkinghorn may not know what is passing in \nthe Dedlock mind at present, it is very possible that he may.\n\n\"My Lady's cause has been again before the Chancellor, has it, Mr. \nTulkinghorn?\" says Sir Leicester, giving him his hand.\n\n\"Yes.  It has been on again to-day,\" Mr. Tulkinghorn replies, \nmaking one of his quiet bows to my Lady, who is on a sofa near the \nfire, shading her face with a hand-screen.\n\n\"It would be useless to ask,\" says my Lady with the dreariness of \nthe place in Lincolnshire still upon her, \"whether anything has \nbeen done.\"\n\n\"Nothing that YOU would call anything has been done to-day,\" \nreplies Mr. Tulkinghorn.\n\n\"Nor ever will be,\" says my Lady.\n\nSir Leicester has no objection to an interminable Chancery suit.  \nIt is a slow, expensive, British, constitutional kind of thing.  To \nbe sure, he has not a vital interest in the suit in question, her \npart in which was the only property my Lady brought him; and he has \na shadowy impression that for his name--the name of Dedlock--to be \nin a cause, and not in the title of that cause, is a most \nridiculous accident.  But he regards the Court of Chancery, even if \nit should involve an occasional delay of justice and a trifling \namount of confusion, as a something devised in conjunction with a \nvariety of other somethings by the perfection of human wisdom for \nthe eternal settlement (humanly speaking) of everything.  And he is \nupon the whole of a fixed opinion that to give the sanction of his \ncountenance to any complaints respecting it would be to encourage \nsome person in the lower classes to rise up somewhere--like Wat \nTyler.\n\n\"As a few fresh affidavits have been put upon the file,\" says Mr. \nTulkinghorn, \"and as they are short, and as I proceed upon the \ntroublesome principle of begging leave to possess my clients with \nany new proceedings in a cause\"--cautious man Mr. Tulkinghorn, \ntaking no more responsibility than necessary--\"and further, as I \nsee you are going to Paris, I have brought them in my pocket.\"\n\n(Sir Leicester was going to Paris too, by the by, but the delight \nof the fashionable intelligence was in his Lady.)\n\nMr. Tulkinghorn takes out his papers, asks permission to place them \non a golden talisman of a table at my Lady's elbow, puts on his \nspectacles, and begins to read by the light of a shaded lamp.\n\n\"'In Chancery.  Between John Jarndyce--'\"\n\nMy Lady interrupts, requesting him to miss as many of the formal \nhorrors as he can.\n\nMr. Tulkinghorn glances over his spectacles and begins again lower \ndown.  My Lady carelessly and scornfully abstracts her attention.  \nSir Leicester in a great chair looks at the file and appears to \nhave a stately liking for the legal repetitions and prolixities as \nranging among the national bulwarks.  It happens that the fire is \nhot where my Lady sits and that the hand-screen is more beautiful \nthan useful, being priceless but small.  My Lady, changing her \nposition, sees the papers on the table--looks at them nearer--looks \nat them nearer still--asks impulsively, \"Who copied that?\"\n\nMr. Tulkinghorn stops short, surprised by my Lady's animation and \nher unusual tone.\n\n\"Is it what you people call law-hand?\" she asks, looking full at \nhim in her careless way again and toying with her screen.\n\n\"Not quite.  Probably\"--Mr. Tulkinghorn examines it as he speaks--\n\"the legal character which it has was acquired after the original \nhand was formed.  Why do you ask?\"\n\n\"Anything to vary this detestable monotony.  Oh, go on, do!\"\n\nMr. Tulkinghorn reads again.  The heat is greater; my Lady screens \nher face.  Sir Leicester dozes, starts up suddenly, and cries, \"Eh?  \nWhat do you say?\"\n\n\"I say I am afraid,\" says Mr. Tulkinghorn, who had risen hastily, \n\"that Lady Dedlock is ill.\"\n\n\"Faint,\" my Lady murmurs with white lips, \"only that; but it is \nlike the faintness of death.  Don't speak to me.  Ring, and take me \nto my room!\"\n\nMr. Tulkinghorn retires into another chamber; bells ring, feet \nshuffle and patter, silence ensues.  Mercury at last begs Mr. \nTulkinghorn to return.\n\n\"Better now,\" quoth Sir Leicester, motioning the lawyer to sit down \nand read to him alone.  \"I have been quite alarmed.  I never knew \nmy Lady swoon before.  But the weather is extremely trying, and she \nreally has been bored to death down at our place in Lincolnshire.\"\n\n\n\nCHAPTER III\n\nA Progress\n\n\nI have a great deal of difficulty in beginning to write my portion \nof these pages, for I know I am not clever.  I always knew that.  I \ncan remember, when I was a very little girl indeed, I used to say \nto my doll when we were alone together, \"Now, Dolly, I am not \nclever, you know very well, and you must be patient with me, like a \ndear!\"  And so she used to sit propped up in a great arm-chair, \nwith her beautiful complexion and rosy lips, staring at me--or not \nso much at me, I think, as at nothing--while I busily stitched away \nand told her every one of my secrets.\n\nMy dear old doll!  I was such a shy little thing that I seldom \ndared to open my lips, and never dared to open my heart, to anybody \nelse.  It almost makes me cry to think what a relief it used to be \nto me when I came home from school of a day to run upstairs to my \nroom and say, \"Oh, you dear faithful Dolly, I knew you would be \nexpecting me!\" and then to sit down on the floor, leaning on the \nelbow of her great chair, and tell her all I had noticed since we \nparted.  I had always rather a noticing way--not a quick way, oh, \nno!--a silent way of noticing what passed before me and thinking I \nshould like to understand it better.  I have not by any means a \nquick understanding.  When I love a person very tenderly indeed, it \nseems to brighten.  But even that may be my vanity.\n\nI was brought up, from my earliest remembrance--like some of the \nprincesses in the fairy stories, only I was not charming--by my \ngodmother.  At least, I only knew her as such.  She was a good, \ngood woman!  She went to church three times every Sunday, and to \nmorning prayers on Wednesdays and Fridays, and to lectures whenever \nthere were lectures; and never missed.  She was handsome; and if \nshe had ever smiled, would have been (I used to think) like an \nangel--but she never smiled.  She was always grave and strict.  She \nwas so very good herself, I thought, that the badness of other \npeople made her frown all her life.  I felt so different from her, \neven making every allowance for the differences between a child and \na woman; I felt so poor, so trifling, and so far off that I never \ncould be unrestrained with her--no, could never even love her as I \nwished.  It made me very sorry to consider how good she was and how \nunworthy of her I was, and I used ardently to hope that I might \nhave a better heart; and I talked it over very often with the dear \nold doll, but I never loved my godmother as I ought to have loved \nher and as I felt I must have loved her if I had been a better \ngirl.\n\nThis made me, I dare say, more timid and retiring than I naturally \nwas and cast me upon Dolly as the only friend with whom I felt at \nease.  But something happened when I was still quite a little thing \nthat helped it very much.\n\nI had never heard my mama spoken of.  I had never heard of my papa \neither, but I felt more interested about my mama.  I had never worn \na black frock, that I could recollect.  I had never been shown my \nmama's grave.  I had never been told where it was.  Yet I had never \nbeen taught to pray for any relation but my godmother.  I had more \nthan once approached this subject of my thoughts with Mrs. Rachael, \nour only servant, who took my light away when I was in bed (another \nvery good woman, but austere to me), and she had only said, \n\"Esther, good night!\" and gone away and left me.\n\nAlthough there were seven girls at the neighbouring school where I \nwas a day boarder, and although they called me little Esther \nSummerson, I knew none of them at home.  All of them were older \nthan I, to be sure (I was the youngest there by a good deal), but \nthere seemed to be some other separation between us besides that, \nand besides their being far more clever than I was and knowing much \nmore than I did.  One of them in the first week of my going to the \nschool (I remember it very well) invited me home to a little party, \nto my great joy.  But my godmother wrote a stiff letter declining \nfor me, and I never went.  I never went out at all.\n\nIt was my birthday.  There were holidays at school on other \nbirthdays--none on mine.  There were rejoicings at home on other \nbirthdays, as I knew from what I heard the girls relate to one \nanother--there were none on mine.  My birthday was the most \nmelancholy day at home in the whole year.\n\nI have mentioned that unless my vanity should deceive me (as I know \nit may, for I may be very vain without suspecting it, though indeed \nI don't), my comprehension is quickened when my affection is.  My \ndisposition is very affectionate, and perhaps I might still feel \nsuch a wound if such a wound could be received more than once with \nthe quickness of that birthday.\n\nDinner was over, and my godmother and I were sitting at the table \nbefore the fire.  The clock ticked, the fire clicked; not another \nsound had been heard in the room or in the house for I don't know \nhow long.  I happened to look timidly up from my stitching, across \nthe table at my godmother, and I saw in her face, looking gloomily \nat me, \"It would have been far better, little Esther, that you had \nhad no birthday, that you had never been born!\"\n\nI broke out crying and sobbing, and I said, \"Oh, dear godmother, \ntell me, pray do tell me, did Mama die on my birthday?\"\n\n\"No,\" she returned.  \"Ask me no more, child!\"\n\n\"Oh, do pray tell me something of her.  Do now, at last, dear \ngodmother, if you please!  What did I do to her?  How did I lose \nher?  Why am I so different from other children, and why is it my \nfault, dear godmother?  No, no, no, don't go away.  Oh, speak to \nme!\"\n\nI was in a kind of fright beyond my grief, and I caught hold of her \ndress and was kneeling to her.  She had been saying all the while, \n\"Let me go!\"  But now she stood still.\n\nHer darkened face had such power over me that it stopped me in the \nmidst of my vehemence.  I put up my trembling little hand to clasp \nhers or to beg her pardon with what earnestness I might, but \nwithdrew it as she looked at me, and laid it on my fluttering \nheart.  She raised me, sat in her chair, and standing me before \nher, said slowly in a cold, low voice--I see her knitted brow and \npointed finger--\"Your mother, Esther, is your disgrace, and you \nwere hers.  The time will come--and soon enough--when you will \nunderstand this better and will feel it too, as no one save a woman \ncan.  I have forgiven her\"--but her face did not relent--\"the wrong \nshe did to me, and I say no more of it, though it was greater than \nyou will ever know--than any one will ever know but I, the \nsufferer.  For yourself, unfortunate girl, orphaned and degraded \nfrom the first of these evil anniversaries, pray daily that the \nsins of others be not visited upon your head, according to what is \nwritten.  Forget your mother and leave all other people to forget \nher who will do her unhappy child that greatest kindness.  Now, \ngo!\"\n\nShe checked me, however, as I was about to depart from her--so \nfrozen as I was!--and added this, \"Submission, self-denial, \ndiligent work, are the preparations for a life begun with such a \nshadow on it.  You are different from other children, Esther, \nbecause you were not born, like them, in common sinfulness and \nwrath.  You are set apart.\"\n\nI went up to my room, and crept to bed, and laid my doll's cheek \nagainst mine wet with tears, and holding that solitary friend upon \nmy bosom, cried myself to sleep.  Imperfect as my understanding of \nmy sorrow was, I knew that I had brought no joy at any time to \nanybody's heart and that I was to no one upon earth what Dolly was \nto me.\n\nDear, dear, to think how much time we passed alone together \nafterwards, and how often I repeated to the doll the story of my \nbirthday and confided to her that I would try as hard as ever I \ncould to repair the fault I had been born with (of which I \nconfessedly felt guilty and yet innocent) and would strive as I \ngrew up to be industrious, contented, and kind-hearted and to do \nsome good to some one, and win some love to myself if I could.  I \nhope it is not self-indulgent to shed these tears as I think of it.  \nI am very thankful, I am very cheerful, but I cannot quite help \ntheir coming to my eyes.\n\nThere! I have wiped them away now and can go on again properly.\n\nI felt the distance between my godmother and myself so much more \nafter the birthday, and felt so sensible of filling a place in her \nhouse which ought to have been empty, that I found her more \ndifficult of approach, though I was fervently grateful to her in my \nheart, than ever.  I felt in the same way towards my school \ncompanions; I felt in the same way towards Mrs. Rachael, who was a \nwidow; and oh, towards her daughter, of whom she was proud, who \ncame to see her once a fortnight!  I was very retired and quiet, \nand tried to be very diligent.\n\nOne sunny afternoon when I had come home from school with my books \nand portfolio, watching my long shadow at my side, and as I was \ngliding upstairs to my room as usual, my godmother looked out of \nthe parlour-door and called me back.  Sitting with her, I found--\nwhich was very unusual indeed--a stranger.  A portly, important-\nlooking gentleman, dressed all in black, with a white cravat, large \ngold watch seals, a pair of gold eye-glasses, and a large seal-ring \nupon his little finger.\n\n\"This,\" said my godmother in an undertone, \"is the child.\"  Then \nshe said in her naturally stern way of speaking, \"This is Esther, \nsir.\"\n\nThe gentleman put up his eye-glasses to look at me and said, \"Come \nhere, my dear!\"  He shook hands with me and asked me to take off my \nbonnet, looking at me all the while.  When I had complied, he said, \n\"Ah!\" and afterwards \"Yes!\"  And then, taking off his eye-glasses \nand folding them in a red case, and leaning back in his arm-chair, \nturning the case about in his two hands, he gave my godmother a \nnod.  Upon that, my godmother said, \"You may go upstairs, Esther!\"  \nAnd I made him my curtsy and left him.\n\nIt must have been two years afterwards, and I was almost fourteen, \nwhen one dreadful night my godmother and I sat at the fireside.  I \nwas reading aloud, and she was listening.  I had come down at nine \no'clock as I always did to read the Bible to her, and was reading \nfrom St. John how our Saviour stooped down, writing with his finger \nin the dust, when they brought the sinful woman to him.\n\n\"'So when they continued asking him, he lifted up himself and said \nunto them, He that is without sin among you, let him first cast a \nstone at her!'\"\n\nI was stopped by my godmother's rising, putting her hand to her \nhead, and crying out in an awful voice from quite another part of \nthe book, \"'Watch ye, therefore, lest coming suddenly he find you \nsleeping.  And what I say unto you, I say unto all, Watch!'\"\n\nIn an instant, while she stood before me repeating these words, she \nfell down on the floor.  I had no need to cry out; her voice had \nsounded through the house and been heard in the street.\n\nShe was laid upon her bed.  For more than a week she lay there, \nlittle altered outwardly, with her old handsome resolute frown that \nI so well knew carved upon her face.  Many and many a time, in the \nday and in the night, with my head upon the pillow by her that my \nwhispers might be plainer to her, I kissed her, thanked her, prayed \nfor her, asked her for her blessing and forgiveness, entreated her \nto give me the least sign that she knew or heard me.  No, no, no.  \nHer face was immovable.  To the very last, and even afterwards, her \nfrown remained unsoftened.\n\nOn the day after my poor good godmother was buried, the gentleman \nin black with the white neckcloth reappeared.  I was sent for by \nMrs. Rachael, and found him in the same place, as if he had never \ngone away.\n\n\"My name is Kenge,\" he said; \"you may remember it, my child; Kenge \nand Carboy, Lincoln's Inn.\"\n\nI replied that I remembered to have seen him once before.\n\n\"Pray be seated--here near me.  Don't distress yourself; it's of no \nuse.  Mrs. Rachael, I needn't inform you who were acquainted with \nthe late Miss Barbary's affairs, that her means die with her and \nthat this young lady, now her aunt is dead--\"\n\n\"My aunt, sir!\"\n\n\"It is really of no use carrying on a deception when no object is \nto be gained by it,\" said Mr. Kenge smoothly, \"Aunt in fact, though \nnot in law.  Don't distress yourself!  Don't weep!  Don't tremble!  \nMrs. Rachael, our young friend has no doubt heard of--the--a--\nJarndyce and Jarndyce.\"\n\n\"Never,\" said Mrs. Rachael.\n\n\"Is it possible,\" pursued Mr. Kenge, putting up his eye-glasses, \n\"that our young friend--I BEG you won't distress yourself!--never \nheard of Jarndyce and Jarndyce!\"\n\nI shook my head, wondering even what it was.\n\n\"Not of Jarndyce and Jarndyce?\" said Mr. Kenge, looking over his \nglasses at me and softly turning the case about and about as if he \nwere petting something.  \"Not of one of the greatest Chancery suits \nknown?  Not of Jarndyce and Jarndyce--the--a--in itself a monument \nof Chancery practice.  In which (I would say) every difficulty, \nevery contingency, every masterly fiction, every form of procedure \nknown in that court, is represented over and over again?  It is a \ncause that could not exist out of this free and great country.  I \nshould say that the aggregate of costs in Jarndyce and Jarndyce, \nMrs. Rachael\"--I was afraid he addressed himself to her because I \nappeared inattentive\"--amounts at the present hour to from SIX-ty \nto SEVEN-ty THOUSAND POUNDS!\" said Mr. Kenge, leaning back in his \nchair.\n\nI felt very ignorant, but what could I do?  I was so entirely \nunacquainted with the subject that I understood nothing about it \neven then.\n\n\"And she really never heard of the cause!\" said Mr. Kenge.  \n\"Surprising!\"\n\n\"Miss Barbary, sir,\" returned Mrs. Rachael, \"who is now among the \nSeraphim--\"\n\n\"I hope so, I am sure,\" said Mr. Kenge politely.\n\n\"--Wished Esther only to know what would be serviceable to her.  \nAnd she knows, from any teaching she has had here, nothing more.\"\n\n\"Well!\" said Mr. Kenge.  \"Upon the whole, very proper.  Now to the \npoint,\" addressing me.  \"Miss Barbary, your sole relation (in fact \nthat is, for I am bound to observe that in law you had none) being \ndeceased and it naturally not being to be expected that Mrs. \nRachael--\"\n\n\"Oh, dear no!\" said Mrs. Rachael quickly.\n\n\"Quite so,\" assented Mr. Kenge; \"--that Mrs. Rachael should charge \nherself with your maintenance and support (I beg you won't distress \nyourself), you are in a position to receive the renewal of an offer \nwhich I was instructed to make to Miss Barbary some two years ago \nand which, though rejected then, was understood to be renewable \nunder the lamentable circumstances that have since occurred.  Now, \nif I avow that I represent, in Jarndyce and Jarndyce and otherwise, \na highly humane, but at the same time singular, man, shall I \ncompromise myself by any stretch of my professional caution?\" said \nMr. Kenge, leaning back in his chair again and looking calmly at us \nboth.\n\nHe appeared to enjoy beyond everything the sound of his own voice.  \nI couldn't wonder at that, for it was mellow and full and gave \ngreat importance to every word he uttered.  He listened to himself \nwith obvious satisfaction and sometimes gently beat time to his own \nmusic with his head or rounded a sentence with his hand.  I was \nvery much impressed by him--even then, before I knew that he formed \nhimself on the model of a great lord who was his client and that he \nwas generally called Conversation Kenge.\n\n\"Mr. Jarndyce,\" he pursued, \"being aware of the--I would say, \ndesolate--position of our young friend, offers to place her at a \nfirst-rate establishment where her education shall be completed, \nwhere her comfort shall be secured, where her reasonable wants \nshall be anticipated, where she shall be eminently qualified to \ndischarge her duty in that station of life unto which it has \npleased--shall I say Providence?--to call her.\"\n\nMy heart was filled so full, both by what he said and by his \naffecting manner of saying it, that I was not able to speak, though \nI tried.\n\n\"Mr. Jarndyce,\" he went on, \"makes no condition beyond expressing \nhis expectation that our young friend will not at any time remove \nherself from the establishment in question without his knowledge \nand concurrence.  That she will faithfully apply herself to the \nacquisition of those accomplishments, upon the exercise of which \nshe will be ultimately dependent.  That she will tread in the paths \nof virtue and honour, and--the--a--so forth.\"\n\nI was still less able to speak than before.\n\n\"Now, what does our young friend say?\" proceeded Mr, Kenge.  \"Take \ntime, take time!  I pause for her reply.  But take time!\"\n\nWhat the destitute subject of such an offer tried to say, I need \nnot repeat.  What she did say, I could more easily tell, if it were \nworth the telling.  What she felt, and will feel to her dying hour, \nI could never relate.\n\nThis interview took place at Windsor, where I had passed (as far as \nI knew) my whole life.  On that day week, amply provided with all \nnecessaries, I left it, inside the stagecoach, for Reading.\n\nMrs. Rachael was too good to feel any emotion at parting, but I was \nnot so good, and wept bitterly.  I thought that I ought to have \nknown her better after so many years and ought to have made myself \nenough of a favourite with her to make her sorry then.  When she \ngave me one cold parting kiss upon my forehead, like a thaw-drop \nfrom the stone porch--it was a very frosty day--I felt so miserable \nand self-reproachful that I clung to her and told her it was my \nfault, I knew, that she could say good-bye so easily!\n\n\"No, Esther!\" she returned.  \"It is your misfortune!\"\n\nThe coach was at the little lawn-gate--we had not come out until we \nheard the wheels--and thus I left her, with a sorrowful heart.  She \nwent in before my boxes were lifted to the coach-roof and shut the \ndoor.  As long as I could see the house, I looked back at it from \nthe window through my tears.  My godmother had left Mrs. Rachael \nall the little property she possessed; and there was to be a sale; \nand an old hearth-rug with roses on it, which always seemed to me \nthe first thing in the world I had ever seen, was hanging outside \nin the frost and snow.  A day or two before, I had wrapped the dear \nold doll in her own shawl and quietly laid her--I am half ashamed \nto tell it--in the garden-earth under the tree that shaded my old \nwindow.  I had no companion left but my bird, and him I carried \nwith me in his cage.\n\nWhen the house was out of sight, I sat, with my bird-cage in the \nstraw at my feet, forward on the low seat to look out of the high \nwindow, watching the frosty trees, that were like beautiful pieces \nof spar, and the fields all smooth and white with last night's \nsnow, and the sun, so red but yielding so little heat, and the ice, \ndark like metal where the skaters and sliders had brushed the snow \naway.  There was a gentleman in the coach who sat on the opposite \nseat and looked very large in a quantity of wrappings, but he sat \ngazing out of the other window and took no notice of me.\n\nI thought of my dead godmother, of the night when I read to her, of \nher frowning so fixedly and sternly in her bed, of the strange \nplace I was going to, of the people I should find there, and what \nthey would be like, and what they would say to me, when a voice in \nthe coach gave me a terrible start.\n\nIt said, \"What the de-vil are you crying for?\"\n\nI was so frightened that I lost my voice and could only answer in a \nwhisper, \"Me, sir?\"  For of course I knew it must have been the \ngentleman in the quantity of wrappings, though he was still looking \nout of his window.\n\n\"Yes, you,\" he said, turning round.\n\n\"I didn't know I was crying, sir,\" I faltered.\n\n\"But you are!\" said the gentleman.  \"Look here!\"  He came quite \nopposite to me from the other corner of the coach, brushed one of \nhis large furry cuffs across my eyes (but without hurting me), and \nshowed me that it was wet.\n\n\"There!  Now you know you are,\" he said.  \"Don't you?\"\n\n\"Yes, sir,\" I said.\n\n\"And what are you crying for?\" said the genfleman, \"Don't you want \nto go there?\"\n\n\"Where, sir?\"\n\n\"Where?  Why, wherever you are going,\" said the gentleman.\n\n\"I am very glad to go there, sir,\" I answered.\n\n\"Well, then!  Look glad!\" said the gentleman.\n\nI thought he was very strange, or at least that what I could see of \nhim was very strange, for he was wrapped up to the chin, and his \nface was almost hidden in a fur cap with broad fur straps at the \nside of his head fastened under his chin; but I was composed again, \nand not afraid of him.  So I told him that I thought I must have \nbeen crying because of my godmother's death and because of Mrs. \nRachael's not being sorry to part with me.\n\n\"Confound Mrs. Rachael!\" said the gentleman.  \"Let her fly away in \na high wind on a broomstick!\"\n\nI began to be really afraid of him now and looked at him with the \ngreatest astonishment.  But I thought that he had pleasant eyes, \nalthough he kept on muttering to himself in an angry manner and \ncalling Mrs. Rachael names.\n\nAfter a little while he opened his outer wrapper, which appeared to \nme large enough to wrap up the whole coach, and put his arm down \ninto a deep pocket in the side.\n\n\"Now, look here!\" he said.  \"In this paper,\" which was nicely \nfolded, \"is a piece of the best plum-cake that can be got for \nmoney--sugar on the outside an inch thick, like fat on mutton \nchops.  Here's a little pie (a gem this is, both for size and \nquality), made in France.  And what do you suppose it's made of?  \nLivers of fat geese.  There's a pie!  Now let's see you eat 'em.\"\n\n\"Thank you, sir,\" I replied; \"thank you very much indeed, but I \nhope you won't be offended--they are too rich for me.\"\n\n\"Floored again!\" said the gentleman, which I didn't at all \nunderstand, and threw them both out of window.\n\nHe did not speak to me any more until he got out of the coach a \nlittle way short of Reading, when he advised me to be a good girl \nand to be studious, and shook hands with me.  I must say I was \nrelieved by his departure.  We left him at a milestone.  I often \nwalked past it afterwards, and never for a long time without \nthinking of him and half expecting to meet him.  But I never did; \nand so, as time went on, he passed out of my mind.\n\nWhen the coach stopped, a very neat lady looked up at the window \nand said, \"Miss Donny.\"\n\n\"No, ma'am, Esther Summerson.\"\n\n\"That is quite right,\" said the lady, \"Miss Donny.\"\n\nI now understood that she introduced herself by that name, and \nbegged Miss Donny's pardon for my mistake, and pointed out my boxes \nat her request.  Under the direction of a very neat maid, they were \nput outside a very small green carriage; and then Miss Donny, the \nmaid, and I got inside and were driven away.\n\n\"Everything is ready for you, Esther,\" said Miss Donny, \"and the \nscheme of your pursuits has been arranged in exact accordance with \nthe wishes of your guardian, Mr. Jarndyce.\"\n\n\"Of--did you say, ma'am?\"\n\n\"Of your guardian, Mr. Jarndyce,\" said Miss Donny.\n\nI was so bewildered that Miss Donny thought the cold had been too \nsevere for me and lent me her smelling-bottle.\n\n\"Do you know my--guardian, Mr. Jarndyce, ma'am?\" I asked after a \ngood deal of hesitation.\n\n\"Not personally, Esther,\" said Miss Donny; \"merely through his \nsolicitors, Messrs. Kenge and Carboy, of London.  A very superior \ngentleman, Mr. Kenge.  Truly eloquent indeed.  Some of his periods \nquite majestic!\"\n\nI felt this to be very true but was too confused to attend to it.  \nOur speedy arrival at our destination, before I had time to recover \nmyself, increased my confusion, and I never shall forget the \nuncertain and the unreal air of everything at Greenleaf (Miss \nDonny's house) that afternoon!\n\nBut I soon became used to it.  I was so adapted to the routine of \nGreenleaf before long that I seemed to have been there a great \nwhile and almost to have dreamed rather than really lived my old \nlife at my godmother's.  Nothing could be more precise, exact, and \norderly than Greenleaf.  There was a time for everything all round \nthe dial of the clock, and everything was done at its appointed \nmoment.\n\nWe were twelve boarders, and there were two Miss Donnys, twins.  It \nwas understood that I would have to depend, by and by, on my \nqualifications as a governess, and I was not only instructed in \neverything that was taught at Greenleaf, but was very soon engaged \nin helping to instruct others.  Although I was treated in every \nother respect like the rest of the school, this single difference \nwas made in my case from the first.  As I began to know more, I \ntaught more, and so in course of time I had plenty to do, which I \nwas very fond of doing because it made the dear girls fond of me.  \nAt last, whenever a new pupil came who was a little downcast and \nunhappy, she was so sure--indeed I don't know why--to make a friend \nof me that all new-comers were confided to my care.  They said I \nwas so gentle, but I am sure THEY were!  I often thought of the \nresolution I had made on my birthday to try to be industrious, \ncontented, and true-hearted and to do some good to some one and win \nsome love if I could; and indeed, indeed, I felt almost ashamed to \nhave done so little and have won so much.\n\nI passed at Greenleaf six happy, quiet years.  I never saw in any \nface there, thank heaven, on my birthday, that it would have been \nbetter if I had never been born.  When the day came round, it \nbrought me so many tokens of affectionate remembrance that my room \nwas beautiful with them from New Year's Day to Christmas.\n\nIn those six years I had never been away except on visits at \nholiday time in the neighbourhood.  After the first six months or \nso I had taken Miss Donny's advice in reference to the propriety of \nwriting to Mr. Kenge to say that I was happy and grateful, and with \nher approval I had written such a letter.  I had received a formal \nanswer acknowledging its receipt and saying, \"We note the contents \nthereof, which shall be duly communicated to our client.\"  After \nthat I sometimes heard Miss Donny and her sister mention how \nregular my accounts were paid, and about twice a year I ventured to \nwrite a similar letter.  I always received by return of post \nexactly the same answer in the same round hand, with the signature \nof Kenge and Carboy in another writing, which I supposed to be Mr. \nKenge's.\n\nIt seems so curious to me to be obliged to write all this about \nmyself!  As if this narrative were the narrative of MY life!  But \nmy little body will soon fall into the background now.\n\nSix quiet years (I find I am saying it for the second time) I had \npassed at Greenleaf, seeing in those around me, as it might be in a \nlooking-glass, every stage of my own growth and change there, when, \none November morning, I received this letter.  I omit the date.\n\n\nOld Square, Lincoln's Inn\n\nMadam,\n\nJarndyce and Jarndyce\n\nOur clt Mr. Jarndyce being abt to rece into his house, under an \nOrder of the Ct of Chy, a Ward of the Ct in this cause, for whom he \nwishes to secure an elgble compn, directs us to inform you that he \nwill be glad of your serces in the afsd capacity.\n\nWe have arrngd for your being forded, carriage free, pr eight \no'clock coach from Reading, on Monday morning next, to White Horse \nCellar, Piccadilly, London, where one of our clks will be in \nwaiting to convey you to our offe as above.\n\nWe are, Madam, Your obedt Servts,\n\nKenge and Carboy\n\nMiss Esther Summerson\n\n\nOh, never, never, never shall I forget the emotion this letter \ncaused in the house!  It was so tender in them to care so much for \nme, it was so gracious in that father who had not forgotten me to \nhave made my orphan way so smooth and easy and to have inclined so \nmany youthful natures towards me, that I could hardly bear it.  Not \nthat I would have had them less sorry--I am afraid not; but the \npleasure of it, and the pain of it, and the pride and joy of it, \nand the humble regret of it were so blended that my heart seemed \nalmost breaking while it was full of rapture.\n\nThe letter gave me only five days' notice of my removal.  When \nevery minute added to the proofs of love and kindness that were \ngiven me in those five days, and when at last the morning came and \nwhen they took me through all the rooms that I might see them for \nthe last time, and when some cried, \"Esther, dear, say good-bye to \nme here at my bedside, where you first spoke so kindly to me!\" and \nwhen others asked me only to write their names, \"With Esther's \nlove,\" and when they all surrounded me with their parting presents \nand clung to me weeping and cried, \"What shall we do when dear, \ndear Esther's gone!\" and when I tried to tell them how forbearing \nand how good they had all been to me and how I blessed and thanked \nthem every one, what a heart I had!\n\nAnd when the two Miss Donnys grieved as much to part with me as the \nleast among them, and when the maids said, \"Bless you, miss, \nwherever you go!\" and when the ugly lame old gardener, who I \nthought had hardly noticed me in all those years, came panting \nafter the coach to give me a little nosegay of geraniums and told \nme I had been the light of his eyes--indeed the old man said so!--\nwhat a heart I had then!\n\nAnd could I help it if with all this, and the coming to the little \nschool, and the unexpected sight of the poor children outside \nwaving their hats and bonnets to me, and of a grey-haired gentleman \nand lady whose daughter I had helped to teach and at whose house I \nhad visited (who were said to be the proudest people in all that \ncountry), caring for nothing but calling out, \"Good-bye, Esther.  \nMay you be very happy!\"--could I help it if I was quite bowed down \nin the coach by myself and said \"Oh, I am so thankful, I am so \nthankful!\" many times over!\n\nBut of course I soon considered that I must not take tears where I \nwas going after all that had been done for me.  Therefore, of \ncourse, I made myself sob less and persuaded myself to be quiet by \nsaying very often, \"Esther, now you really must!  This WILL NOT \ndo!\" I cheered myself up pretty well at last, though I am afraid I \nwas longer about it than I ought to have been; and when I had \ncooled my eyes with lavender water, it was time to watch for \nLondon.\n\nI was quite persuaded that we were there when we were ten miles \noff, and when we really were there, that we should never get there.  \nHowever, when we began to jolt upon a stone pavement, and \nparticularly when every other conveyance seemed to be running into \nus, and we seemed to be running into every other conveyance, I \nbegan to believe that we really were approaching the end of our \njourney.  Very soon afterwards we stopped.\n\nA young gentleman who had inked himself by accident addressed me \nfrom the pavement and said, \"I am from Kenge and Carboy's, miss, of \nLincoln's Inn.\"\n\n\"If you please, sir,\" said I.\n\nHe was very obliging, and as he handed me into a fly after \nsuperintending the removal of my boxes, I asked him whether there \nwas a great fire anywhere?  For the streets were so full of dense \nbrown smoke that scarcely anything was to be seen.\n\n\"Oh, dear no, miss,\" he said.  \"This is a London particular.\"\n\nI had never heard of such a thing.\n\n\"A fog, miss,\" said the young gentleman.\n\n\"Oh, indeed!\" said I.\n\nWe drove slowly through the dirtiest and darkest streets that ever \nwere seen in the world (I thought) and in such a distracting state \nof confusion that I wondered how the people kept their senses, \nuntil we passed into sudden quietude under an old gateway and drove \non through a silent square until we came to an odd nook in a \ncorner, where there was an entrance up a steep, broad flight of \nstairs, like an entrance to a church.  And there really was a \nchurchyard outside under some cloisters, for I saw the gravestones \nfrom the staircase window.\n\nThis was Kenge and Carboy's.  The young gentleman showed me through \nan outer office into Mr. Kenge's room--there was no one in it--and \npolitely put an arm-chair for me by the fire.  He then called my \nattention to a little looking-glass hanging from a nail on one side \nof the chimney-piece.\n\n\"In case you should wish to look at yourself, miss, after the \njourney, as you're going before the Chancellor.  Not that it's \nrequisite, I am sure,\" said the young gentleman civilly.\n\n\"Going before the Chancellor?\" I said, startled for a moment.\n\n\"Only a matter of form, miss,\" returned the young gentleman.  \"Mr. \nKenge is in court now.  He left his compliments, and would you \npartake of some refreshment\"--there were biscuits and a decanter of \nwine on a small table--\"and look over the paper,\" which the young \ngentleman gave me as he spoke.  He then stirred the fire and left \nme.\n\nEverything was so strange--the stranger from its being night in the \nday-time, the candles burning with a white flame, and looking raw \nand cold--that I read the words in the newspaper without knowing \nwhat they meant and found myself reading the same words repeatedly.  \nAs it was of no use going on in that way, I put the paper down, \ntook a peep at my bonnet in the glass to see if it was neat, and \nlooked at the room, which was not half lighted, and at the shabby, \ndusty tables, and at the piles of writings, and at a bookcase full \nof the most inexpressive-looking books that ever had anything to \nsay for themselves.  Then I went on, thinking, thinking, thinking; \nand the fire went on, burning, burning, burning; and the candles \nwent on flickering and guttering, and there were no snuffers--until \nthe young gentleman by and by brought a very dirty pair--for two \nhours.\n\nAt last Mr. Kenge came.  HE was not altered, but he was surprised \nto see how altered I was and appeared quite pleased.  \"As you are \ngoing to be the companion of the young lady who is now in the \nChancellor's private room, Miss Summerson,\" he said, \"we thought it \nwell that you should be in attendance also.  You will not be \ndiscomposed by the Lord Chancellor, I dare say?\"\n\n\"No, sir,\" I said, \"I don't think I shall,\" really not seeing on \nconsideration why I should be.\n\nSo Mr. Kenge gave me his arm and we went round the corner, under a \ncolonnade, and in at a side door.  And so we came, along a passage, \ninto a comfortable sort of room where a young lady and a young \ngentleman were standing near a great, loud-roaring fire.  A screen \nwas interposed between them and it, and they were leaning on the \nscreen, talking.\n\nThey both looked up when I came in, and I saw in the young lady, \nwith the fire shining upon her, such a beautiful girl!  With such \nrich golden hair, such soft blue eyes, and such a bright, innocent, \ntrusting face!\n\n\"Miss Ada,\" said Mr. Kenge, \"this is Miss Summerson.\"\n\nShe came to meet me with a smile of welcome and her hand extended, \nbut seemed to change her mind in a moment and kissed me.  In short, \nshe had such a natural, captivating, winning manner that in a few \nminutes we were sitting in the window-seat, with the light of the \nfire upon us, talking together as free and happy as could be.\n\nWhat a load off my mind!  It was so delightful to know that she \ncould confide in me and like me!  It was so good of her, and so \nencouraging to me!\n\nThe young gentleman was her distant cousin, she told me, and his \nname Richard Carstone.  He was a handsome youth with an ingenuous \nface and a most engaging laugh; and after she had called him up to \nwhere we sat, he stood by us, in the light of the fire, talking \ngaily, like a light-hearted boy.  He was very young, not more than \nnineteen then, if quite so much, but nearly two years older than \nshe was.  They were both orphans and (what was very unexpected and \ncurious to me) had never met before that day.  Our all three coming \ntogether for the first time in such an unusual place was a thing to \ntalk about, and we talked about it; and the fire, which had left \noff roaring, winked its red eyes at us--as Richard said--like a \ndrowsy old Chancery lion.\n\nWe conversed in a low tone because a full-dressed gentleman in a \nbag wig frequenfly came in and out, and when he did so, we could \nhear a drawling sound in the distance, which he said was one of the \ncounsel in our case addressing the Lord Chancellor.  He told Mr. \nKenge that the Chancellor would be up in five minutes; and \npresently we heard a bustle and a tread of feet, and Mr. Kenge said \nthat the Court had risen and his lordship was in the next room.\n\nThe gentleman in the bag wig opened the door almost directly and \nrequested Mr. Kenge to come in.  Upon that, we all went into the \nnext room, Mr. Kenge first, with my darling--it is so natural to me \nnow that I can't help writing it; and there, plainly dressed in \nblack and sitting in an arm-chair at a table near the fire, was his \nlordship, whose robe, trimmed with beautiful gold lace, was thrown \nupon another chair.  He gave us a searching look as we entered, but \nhis manner was both courtly and kind.\n\nThe gentleman in the bag wig laid bundles of papers on his \nlordship's table, and his lordship silently selected one and turned \nover the leaves.\n\n\"Miss Clare,\" said the Lord Chancellor.  \"Miss Ada Clare?\"\n\nMr. Kenge presented her, and his lordship begged her to sit down \nnear him.  That he admired her and was interested by her even I \ncould see in a moment.  It touched me that the home of such a \nbeautiful young creature should be represented by that dry, \nofficial place.  The Lord High Chancellor, at his best, appeared so \npoor a substitute for the love and pride of parents.\n\n\"The Jarndyce in question,\" said the Lord Chancellor, still turning \nover leaves, \"is Jarndyce of Bleak House.\"\n\n\"Jarndyce of Bleak House, my lord,\" said Mr. Kenge.\n\n\"A dreary name,\" said the Lord Chancellor.\n\n\"But not a dreary place at present, my lord,\" said Mr. Kenge.\n\n\"And Bleak House,\" said his lordship, \"is in--\"\n\n\"Hertfordshire, my lord.\"\n\n\"Mr. Jarndyce of Bleak House is not married?\" said his lordship.\n\n\"He is not, my lord,\" said Mr. Kenge.\n\nA pause.\n\n\"Young Mr. Richard Carstone is present?\" said the Lord Chancellor, \nglancing towards him.\n\nRichard bowed and stepped forward.\n\n\"Hum!\" said the Lord Chancellor, turning over more leaves.\n\n\"Mr. Jarndyce of Bleak House, my lord,\" Mr. Kenge observed in a low \nvoice, \"if I may venture to remind your lordship, provides a \nsuitable companion for--\"\n\n\"For Mr. Richard Carstone?\" I thought (but I am not quite sure) I \nheard his lordship say in an equally low voice and with a smile.\n\n\"For Miss Ada Clare.  This is the young lady.  Miss Summerson.\"\n\nHis lordship gave me an indulgent look and acknowledged my curtsy \nvery graciously.\n\n\"Miss Summerson is not related to any party in the cause, I think?\"\n\n\"No, my lord.\"\n\nMr. Kenge leant over before it was quite said and whispered.  His \nlordship, with his eyes upon his papers, listened, nodded twice or \nthrice, turned over more leaves, and did not look towards me again \nuntil we were going away.\n\nMr. Kenge now retired, and Richard with him, to where I was, near \nthe door, leaving my pet (it is so natural to me that again I can't \nhelp it!) sitting near the Lord Chancellor, with whom his lordship \nspoke a little part, asking her, as she told me afterwards, whether \nshe had well reflected on the proposed arrangement, and if she \nthought she would be happy under the roof of Mr. Jarndyce of Bleak \nHouse, and why she thought so?  Presently he rose courteously and \nreleased her, and then he spoke for a minute or two with Richard \nCarstone, not seated, but standing, and altogether with more ease \nand less ceremony, as if he still knew, though he WAS Lord \nChancellor, how to go straight to the candour of a boy.\n\n\"Very well!\" said his lordship aloud.  \"I shall make the order.  \nMr. Jarndyce of Bleak House has chosen, so far as I may judge,\" and \nthis was when he looked at me, \"a very good companion for the young \nlady, and the arrangement altogether seems the best of which the \ncircumstances admit.\"\n\nHe dismissed us pleasantly, and we all went out, very much obliged \nto him for being so affable and polite, by which he had certainly \nlost no dignity but seemed to us to have gained some.\n\nWhen we got under the colonnade, Mr. Kenge remembered that he must \ngo back for a moment to ask a question and left us in the fog, with \nthe Lord Chancellor's carriage and servants waiting for him to come \nout.\n\n\"Well!\" said Richard Carstone.  \"THAT'S over!  And where do we go \nnext, Miss Summerson?\"\n\n\"Don't you know?\" I said.\n\n\"Not in the least,\" said he.\n\n\"And don't YOU know, my love?\" I asked Ada.\n\n\"No!\" said she.  \"Don't you?\"\n\n\"Not at all!\" said I.\n\nWe looked at one another, half laughing at our being like the \nchildren in the wood, when a curious little old woman in a squeezed \nbonnet and carrying a reticule came curtsying and smiling up to us \nwith an air of great ceremony.\n\n\"Oh!\" said she.  \"The wards in Jarndyce!  Ve-ry happy, I am sure, \nto have the honour!  It is a good omen for youth, and hope, and \nbeauty when they find themselves in this place, and don't know \nwhat's to come of it.\"\n\n\"Mad!\" whispered Richard, not thinking she could hear him.\n\n\"Right!  Mad, young gentleman,\" she returned so quickly that he was \nquite abashed.  \"I was a ward myself.  I was not mad at that time,\" \ncurtsying low and smiling between every little sentence.  \"I had \nyouth and hope.  I believe, beauty.  It matters very little now.  \nNeither of the three served or saved me.  I have the honour to \nattend court regularly.  With my documents.  I expect a judgment.  \nShortly.  On the Day of Judgment.  I have discovered that the sixth \nseal mentioned in the Revelations is the Great Seal.  It has been \nopen a long time!  Pray accept my blessing.\"\n\nAs Ada was a little frightened, I said, to humour the poor old \nlady, that we were much obliged to her.\n\n\"Ye-es!\" she said mincingly.  \"I imagine so.  And here is \nConversation Kenge.  With HIS documents!  How does your honourable \nworship do?\"\n\n\"Quite well, quite well!  Now don't be troublesome, that's a good \nsoul!\" said Mr. Kenge, leading the way back.\n\n\"By no means,\" said the poor old lady, keeping up with Ada and me.  \n\"Anything but troublesome.  I shall confer estates on both--which \nis not being troublesome, I trust?  I expect a judgment.  Shortly.  \nOn the Day of Judgment.  This is a good omen for you.  Accept my \nblessing!\"\n\nShe stopped at the bottom of the steep, broad flight of stairs; but \nwe looked back as we went up, and she was still there, saying, \nstill with a curtsy and a smile between every little sentence, \n\"Youth.  And hope.  And beauty.  And Chancery.  And Conversation \nKenge!  Ha!  Pray accept my blessing!\"\n\n\n\nCHAPTER IV\n\nTelescopic Philanthropy\n\n\nWe were to pass the night, Mr. Kenge told us when we arrived in his \nroom, at Mrs. Jellyby's; and then he turned to me and said he took \nit for granted I knew who Mrs. Jellyby was.\n\n\"I really don't, sir,\" I returned.  \"Perhaps Mr. Carstone--or Miss \nClare--\"\n\nBut no, they knew nothing whatever about Mrs. Jellyby.  \"In-deed!  \nMrs. Jellyby,\" said Mr. Kenge, standing with his back to the fire \nand casting his eyes over the dusty hearth-rug as if it were Mrs. \nJellyby's biography, \"is a lady of very remarkable strength of \ncharacter who devotes herself entirely to the public.  She has \ndevoted herself to an extensive variety of public subjects at \nvarious times and is at present (until something else attracts her) \ndevoted to the subject of Africa, with a view to the general \ncultivation of the coffee berry--AND the natives--and the happy \nsettlement, on the banks of the African rivers, of our \nsuperabundant home population.  Mr. Jarndyce, who is desirous to \naid any work that is considered likely to be a good work and who is \nmuch sought after by philanthropists, has, I believe, a very high \nopinion of Mrs. Jellyby.\"\n\nMr. Kenge, adjusting his cravat, then looked at us.\n\n\"And Mr. Jellyby, sir?\" suggested Richard.\n\n\"Ah!  Mr. Jellyby,\" said Mr. Kenge, \"is--a--I don't know that I can \ndescribe him to you better than by saying that he is the husband of \nMrs. Jellyby.\"\n\n\"A nonentity, sir?\" said Richard with a droll look.\n\n\"I don't say that,\" returned Mr. Kenge gravely.  \"I can't say that, \nindeed, for I know nothing whatever OF Mr. Jellyby.  I never, to my \nknowledge, had the pleasure of seeing Mr. Jellyby.  He may be a \nvery superior man, but he is, so to speak, merged--merged--in the \nmore shining qualities of his wife.\"  Mr. Kenge proceeded to tell \nus that as the road to Bleak House would have been very long, dark, \nand tedious on such an evening, and as we had been travelling \nalready, Mr. Jarndyce had himself proposed this arrangement.  A \ncarriage would be at Mrs. Jellyby's to convey us out of town early \nin the forenoon of to-morrow.\n\nHe then rang a little bell, and the young gentleman came in.  \nAddressing him by the name of Guppy, Mr. Kenge inquired whether \nMiss Summerson's boxes and the rest of the baggage had been \"sent \nround.\"  Mr. Guppy said yes, they had been sent round, and a coach \nwas waiting to take us round too as soon as we pleased.\n\n\"Then it only remains,\" said Mr. Kenge, shaking hands with us, \"for \nme to express my lively satisfaction in (good day, Miss Clare!) the \narrangement this day concluded and my (GOOD-bye to you, Miss \nSummerson!) lively hope that it will conduce to the happiness, the \n(glad to have had the honour of making your acquaintance, Mr. \nCarstone!) welfare, the advantage in all points of view, of all \nconcerned!  Guppy, see the party safely there.\"\n\n\"Where IS 'there,' Mr. Guppy?\" said Richard as we went downstairs.\n\n\"No distance,\" said Mr. Guppy; \"round in Thavies Inn, you know.\"\n\n\"I can't say I know where it is, for I come from Winchester and am \nstrange in London.\"\n\n\"Only round the corner,\" said Mr. Guppy.  \"We just twist up \nChancery Lane, and cut along Holborn, and there we are in four \nminutes' time, as near as a toucher.  This is about a London \nparticular NOW, ain't it, miss?\"  He seemed quite delighted with it \non my account.\n\n\"The fog is very dense indeed!\" said I.\n\n\"Not that it affects you, though, I'm sure,\" said Mr. Guppy, \nputting up the steps.  \"On the contrary, it seems to do you good, \nmiss, judging from your appearance.\"\n\nI knew he meant well in paying me this compliment, so I laughed at \nmyself for blushing at it when he had shut the door and got upon \nthe box; and we all three laughed and chatted about our \ninexperience and the strangeness of London until we turned up under \nan archway to our destination--a narrow street of high houses like \nan oblong cistern to hold the fog.  There was a confused little \ncrowd of people, principally children, gathered about the house at \nwhich we stopped, which had a tarnished brass plate on the door \nwith the inscription JELLYBY.\n\n\"Don't be frightened!\" said Mr. Guppy, looking in at the coach-\nwindow.  \"One of the young Jellybys been and got his head through \nthe area railings!\"\n\n\"Oh, poor child,\" said I; \"let me out, if you please!\"\n\n\"Pray be careful of yourself, miss.  The young Jellybys are always \nup to something,\" said Mr. Guppy.\n\nI made my way to the poor child, who was one of the dirtiest little \nunfortunates I ever saw, and found him very hot and frightened and \ncrying loudly, fixed by the neck between two iron railings, while a \nmilkman and a beadle, with the kindest intentions possible, were \nendeavouring to drag him back by the legs, under a general \nimpression that his skull was compressible by those means.  As I \nfound (after pacifying him) that he was a little boy with a \nnaturally large head, I thought that perhaps where his head could \ngo, his body could follow, and mentioned that the best mode of \nextrication might be to push him forward.  This was so favourably \nreceived by the milkman and beadle that he would immediately have \nbeen pushed into the area if I had not held his pinafore while \nRichard and Mr. Guppy ran down through the kitchen to catch him \nwhen he should be released.  At last he was happily got down \nwithout any accident, and then he began to beat Mr. Guppy with a \nhoop-stick in quite a frantic manner.\n\nNobody had appeared belonging to the house except a person in \npattens, who had been poking at the child from below with a broom; \nI don't know with what object, and I don't think she did.  I \ntherefore supposed that Mrs. Jellyby was not at home, and was quite \nsurprised when the person appeared in the passage without the \npattens, and going up to the back room on the first floor before \nAda and me, announced us as, \"Them two young ladies, Missis \nJellyby!\"  We passed several more children on the way up, whom it \nwas difficult to avoid treading on in the dark; and as we came into \nMrs. Jellyby's presence, one of the poor little things fell \ndownstairs--down a whole flight (as it sounded to me), with a great \nnoise.\n\nMrs. Jellyby, whose face reflected none of the uneasiness which we \ncould not help showing in our own faces as the dear child's head \nrecorded its passage with a bump on every stair--Richard afterwards \nsaid he counted seven, besides one for the landing--received us \nwith perfect equanimity.  She was a pretty, very diminutive, plump \nwoman of from forty to fifty, with handsome eyes, though they had a \ncurious habit of seeming to look a long way off.  As if--I am \nquoting Richard again--they could see nothing nearer than Africa!\n\n\"I am very glad indeed,\" said Mrs. Jellyby in an agreeable voice, \n\"to have the pleasure of receiving you.  I have a great respect for \nMr. Jarndyce, and no one in whom he is interested can be an object \nof indifference to me.\"\n\nWe expressed our acknowledgments and sat down behind the door, \nwhere there was a lame invalid of a sofa.  Mrs. Jellyby had very \ngood hair but was too much occupied with her African duties to \nbrush it.  The shawl in which she had been loosely muffled dropped \nonto her chair when she advanced to us; and as she turned to resume \nher seat, we could not help noticing that her dress didn't nearly \nmeet up the back and that the open space was railed across with a \nlattice-work of stay-lace--like a summer-house.\n\nThe room, which was strewn with papers and nearly filled by a great \nwriting-table covered with similar litter, was, I must say, not \nonly very untidy but very dirty.  We were obliged to take notice of \nthat with our sense of sight, even while, with our sense of \nhearing, we followed the poor child who had tumbled downstairs: I \nthink into the back kitchen, where somebody seemed to stifle him.\n\nBut what principally struck us was a jaded and unhealthy-looking \nthough by no means plain girl at the writing-table, who sat biting \nthe feather of her pen and staring at us.  I suppose nobody ever \nwas in such a state of ink.  And from her tumbled hair to her \npretty feet, which were disfigured with frayed and broken satin \nslippers trodden down at heel, she really seemed to have no article \nof dress upon her, from a pin upwards, that was in its proper \ncondition or its right place.\n\n\"You find me, my dears,\" said Mrs. Jellyby, snuffing the two great \noffice candles in tin candlesticks, which made the room taste \nstrongly of hot tallow (the fire had gone out, and there was \nnothing in the grate but ashes, a bundle of wood, and a poker), \n\"you find me, my dears, as usual, very busy; but that you will \nexcuse.  The African project at present employs my whole time.  It \ninvolves me in correspondence with public bodies and with private \nindividuals anxious for the welfare of their species all over the \ncountry.  I am happy to say it is advancing.  We hope by this time \nnext year to have from a hundred and fifty to two hundred healthy \nfamilies cultivating coffee and educating the natives of \nBorrioboola-Gha, on the left bank of the Niger.\"\n\nAs Ada said nothing, but looked at me, I said it must be very \ngratifying.\n\n\"It IS gratifying,\" said Mrs. Jellyby.  \"It involves the devotion \nof all my energies, such as they are; but that is nothing, so that \nit succeeds; and I am more confident of success every day.  Do you \nknow, Miss Summerson, I almost wonder that YOU never turned your \nthoughts to Africa.\"\n\nThis application of the subject was really so unexpected to me that \nI was quite at a loss how to receive it.  I hinted that the \nclimate--\n\n\"The finest climate in the world!\" said Mrs. Jellyby.\n\n\"Indeed, ma'am?\"\n\n\"Certainly.  With precaution,\" said Mrs. Jellyby.  \"You may go into \nHolborn, without precaution, and be run over.  You may go into \nHolborn, with precaution, and never be run over.  Just so with \nAfrica.\"\n\nI said, \"No doubt.\"  I meant as to Holborn.\n\n\"If you would like,\" said Mrs. Jellyby, putting a number of papers \ntowards us, \"to look over some remarks on that head, and on the \ngeneral subject, which have been extensively circulated, while I \nfinish a letter I am now dictating to my eldest daughter, who is my \namanuensis--\"\n\nThe girl at the table left off biting her pen and made a return to \nour recognition, which was half bashful and half sulky.\n\n\"--I shall then have finished for the present,\" proceeded Mrs. \nJellyby with a sweet smile, \"though my work is never done.  Where \nare you, Caddy?\"\n\n\"'Presents her compliments to Mr. Swallow, and begs--'\" said Caddy.\n\n\"'And begs,'\" said Mrs. Jellyby, dictating, \"'to inform him, in \nreference to his letter of inquiry on the African project--' No, \nPeepy!  Not on my account!\"\n\nPeepy (so self-named) was the unfortunate child who had fallen \ndownstairs, who now interrupted the correspondence by presenting \nhimself, with a strip of plaster on his forehead, to exhibit his \nwounded knees, in which Ada and I did not know which to pity most--\nthe bruises or the dirt.  Mrs. Jellyby merely added, with the \nserene composure with which she said everything, \"Go along, you \nnaughty Peepy!\" and fixed her fine eyes on Africa again.\n\nHowever, as she at once proceeded with her dictation, and as I \ninterrupted nothing by doing it, I ventured quietly to stop poor \nPeepy as he was going out and to take him up to nurse.  He looked \nvery much astonished at it and at Ada's kissing him, but soon fell \nfast asleep in my arms, sobbing at longer and longer intervals, \nuntil he was quiet.  I was so occupied with Peepy that I lost the \nletter in detail, though I derived such a general impression from \nit of the momentous importance of Africa, and the utter \ninsignificance of all other places and things, that I felt quite \nashamed to have thought so little about it.\n\n\"Six o'clock!\" said Mrs. Jellyby.  \"And our dinner hour is \nnominally (for we dine at all hours) five!  Caddy, show Miss Clare \nand Miss Summerson their rooms.  You will like to make some change, \nperhaps?  You will excuse me, I know, being so much occupied.  Oh, \nthat very bad child!  Pray put him down, Miss Summerson!\"\n\nI begged permission to retain him, truly saying that he was not at \nall troublesome, and carried him upstairs and laid him on my bed.  \nAda and I had two upper rooms with a door of communication between.  \nThey were excessively bare and disorderly, and the curtain to my \nwindow was fastened up with a fork.\n\n\"You would like some hot water, wouldn't you?\" said Miss Jellyby, \nlooking round for a jug with a handle to it, but looking in vain.\n\n\"If it is not being troublesome,\" said we.\n\n\"Oh, it's not the trouble,\" returned Miss Jellyby; \"the question \nis, if there IS any.\"\n\nThe evening was so very cold and the rooms had such a marshy smell \nthat I must confess it was a little miserable, and Ada was half \ncrying.  We soon laughed, however, and were busily unpacking when \nMiss Jellyby came back to say that she was sorry there was no hot \nwater, but they couldn't find the kettle, and the boiler was out of \norder.\n\nWe begged her not to mention it and made all the haste we could to \nget down to the fire again.  But all the little children had come \nup to the landing outside to look at the phenomenon of Peepy lying \non my bed, and our attention was distracted by the constant \napparition of noses and fingers in situations of danger between the \nhinges of the doors.  It was impossible to shut the door of either \nroom, for my lock, with no knob to it, looked as if it wanted to be \nwound up; and though the handle of Ada's went round and round with \nthe greatest smoothness, it was attended with no effect whatever on \nthe door.  Therefore I proposed to the children that they should \ncome in and be very good at my table, and I would tell them the \nstory of Little Red Riding Hood while I dressed; which they did, \nand were as quiet as mice, including Peepy, who awoke opportunely \nbefore the appearance of the wolf.\n\nWhen we went downstairs we found a mug with \"A Present from \nTunbridge Wells\" on it lighted up in the staircase window with a \nfloating wick, and a young woman, with a swelled face bound up in a \nflannel bandage blowing the fire of the drawing-room (now connected \nby an open door with Mrs. Jellyby's room) and choking dreadfully.  \nIt smoked to that degree, in short, that we all sat coughing and \ncrying with the windows open for half an hour, during which Mrs. \nJellyby, with the same sweetness of temper, directed letters about \nAfrica.  Her being so employed was, I must say, a great relief to \nme, for Richard told us that he had washed his hands in a pie-dish \nand that they had found the kettle on his dressing-table, and he \nmade Ada laugh so that they made me laugh in the most ridiculous \nmanner.\n\nSoon after seven o'clock we went down to dinner, carefully, by Mrs. \nJellyby's advice, for the stair-carpets, besides being very \ndeficient in stair-wires, were so torn as to be absolute traps.  We \nhad a fine cod-fish, a piece of roast beef, a dish of cutlets, and \na pudding; an excellent dinner, if it had had any cooking to speak \nof, but it was almost raw.  The young woman with the flannel \nbandage waited, and dropped everything on the table wherever it \nhappened to go, and never moved it again until she put it on the \nstairs.  The person I had seen in pattens, who I suppose to have \nbeen the cook, frequently came and skirmished with her at the door, \nand there appeared to be ill will between them.\n\nAll through dinner--which was long, in consequence of such \naccidents as the dish of potatoes being mislaid in the coal skuttle \nand the handle of the corkscrew coming off and striking the young \nwoman in the chin--Mrs. Jellyby preserved the evenness of her \ndisposition.  She told us a great deal that was interesting about \nBorrioboola-Gha and the natives, and received so many letters that \nRichard, who sat by her, saw four envelopes in the gravy at once.  \nSome of the letters were proceedings of ladies' committees or \nresolutions of ladies' meetings, which she read to us; others were \napplications from people excited in various ways about the \ncultivation of coffee, and natives; others required answers, and \nthese she sent her eldest daughter from the table three or four \ntimes to write.  She was full of business and undoubtedly was, as \nshe had told us, devoted to the cause.\n\nI was a little curious to know who a mild bald gentleman in \nspectacles was, who dropped into a vacant chair (there was no top \nor bottom in particular) after the fish was taken away and seemed \npassively to submit himself to Borriohoola-Gha but not to be \nactively interested in that settlement.  As he never spoke a word, \nhe might have been a native but for his complexion.  It was not \nuntil we left the table and he remained alone with Richard that the \npossibility of his being Mr. Jellyby ever entered my head.  But he \nWAS Mr. Jellyby; and a loquacious young man called Mr. Quale, with \nlarge shining knobs for temples and his hair all brushed to the \nback of his head, who came in the evening, and told Ada he was a \nphilanthropist, also informed her that he called the matrimonial \nalliance of Mrs. Jellyby with Mr. Jellyby the union of mind and \nmatter.\n\nThis young man, besides having a great deal to say for himself \nabout Africa and a project of his for teaching the coffee colonists \nto teach the natives to turn piano-forte legs and establish an \nexport trade, delighted in drawing Mrs. Jellyby out by saving, \"I \nbelieve now, Mrs. Jellyby, you have received as many as from one \nhundred and fifty to two hundred letters respecting Africa in a \nsingle day, have you not?\" or, \"If my memory does not deceive me, \nMrs. Jellyby, you once mentioned that you had sent off five \nthousand circulars from one post-office at one time?\"--always \nrepeating Mrs. Jellyby's answer to us like an interpreter.  During \nthe whole evening, Mr. Jellyby sat in a corner with his head \nagainst the wall as if he were subject to low spirits.  It seemed \nthat he had several times opened his mouth when alone with Richard \nafter dinner, as if he had something on his mind, but had always \nshut it again, to Richard's extreme confusion, without saying \nanything.\n\nMrs. Jellyby, sitting in quite a nest of waste paper, drank coffee \nall the evening and dictated at intervals to her eldest daughter.  \nShe also held a discussion with Mr. Quale, of which the subject \nseemed to be--if I understood it--the brotherhood of humanity, and \ngave utterance to some beautiful sentiments.  I was not so \nattentive an auditor as I might have wished to be, however, for \nPeepy and the other children came flocking about Ada and me in a \ncorner of the drawing-room to ask for another story; so we sat down \namong them and told them in whispers \"Puss in Boots\" and I don't \nknow what else until Mrs. Jellyby, accidentally remembering them, \nsent them to bed.  As Peepy cried for me to take him to bed, I \ncarried him upstairs, where the young woman with the flannel \nbandage charged into the midst of the little family like a dragon \nand overturned them into cribs.\n\nAfter that I occupied myself in making our room a little tidy and \nin coaxing a very cross fire that had been lighted to burn, which \nat last it did, quite brightly.  On my return downstairs, I felt \nthat Mrs. Jellyby looked down upon me rather for being so \nfrivolous, and I was sorry for it, though at the same time I knew \nthat I had no higher pretensions.\n\nIt was nearly midnight before we found an opportunity of going to \nbed, and even then we left Mrs. Jellyby among her papers drinking \ncoffee and Miss Jellyby biting the feather of her pen.\n\n\"What a strange house!\" said Ada when we got upstairs.  \"How \ncurious of my cousin Jarndyce to send us here!\"\n\n\"My love,\" said I, \"it quite confuses me.  I want to understand it, \nand I can't understand it at all.\"\n\n\"What?\" asked Ada with her pretty smile.\n\n\"All this, my dear,\" said I.  \"It MUST be very good of Mrs. Jellyby \nto take such pains about a scheme for the benefit of natives--and \nyet--Peepy and the housekeeping!\"\n\nAda laughed and put her arm about my neck as I stood looking at the \nfire, and told me I was a quiet, dear, good creature and had won \nher heart.  \"You are so thoughtful, Esther,\" she said, \"and yet so \ncheerful!  And you do so much, so unpretendingly!  You would make a \nhome out of even this house.\"\n\nMy simple darling!  She was quite unconscious that she only praised \nherself and that it was in the goodness of her own heart that she \nmade so much of me!\n\n\"May I ask you a question?\" said I when we had sat before the fire \na little while.\n\n\"Five hundred,\" said Ada.\n\n\"Your cousin, Mr. Jarndyce.  I owe so much to him.  Would you mind \ndescribing him to me?\"\n\nShaking her golden hair, Ada turned her eyes upon me with such \nlaughing wonder that I was full of wonder too, partly at her \nbeauty, partly at her surprise.\n\n\"Esther!\" she cried.\n\n\"My dear!\"\n\n\"You want a description of my cousin Jarndyce?\"\n\n\"My dear, I never saw him.\"\n\n\"And I never saw him!\" returned Ada.\n\nWell, to be sure!\n\nNo, she had never seen him.  Young as she was when her mama died, \nshe remembered how the tears would come into her eyes when she \nspoke of him and of the noble generosity of his character, which \nshe had said was to be trusted above all earthly things; and Ada \ntrusted it.  Her cousin Jarndyce had written to her a few months \nago--\"a plain, honest letter,\" Ada said--proposing the arrangement \nwe were now to enter on and telling her that \"in time it might heal \nsome of the wounds made by the miserable Chancery suit.\"  She had \nreplied, gratefully accepting his proposal.  Richard had received a \nsimilar letter and had made a similar response.  He HAD seen Mr. \nJarndyce once, but only once, five years ago, at Winchester school.  \nHe had told Ada, when they were leaning on the screen before the \nfire where I found them, that he recollected him as \"a bluff, rosy \nfellow.\"  This was the utmost description Ada could give me.\n\nIt set me thinking so that when Ada was asleep, I still remained \nbefore the fire, wondering and wondering about Bleak House, and \nwondering and wondering that yesterday morning should seem so long \nago.  I don't know where my thoughts had wandered when they were \nrecalled by a tap at the door.\n\nI opened it softly and found Miss Jellyby shivering there with a \nbroken candle in a broken candlestick in one hand and an egg-cup in \nthe other.\n\n\"Good night!\" she said very sulkily.\n\n\"Good night!\" said I.\n\n\"May I come in?\" she shortly and unexpectedly asked me in the same \nsulky way.\n\n\"Certainly,\" said I.  \"Don't wake Miss Clare.\"\n\nShe would not sit down, but stood by the fire dipping her inky \nmiddle finger in the egg-cup, which contained vinegar, and smearing \nit over the ink stains on her face, frowning the whole time and \nlooking very gloomy.\n\n\"I wish Africa was dead!\" she said on a sudden.\n\nI was going to remonstrate.\n\n\"I do!\" she said \"Don't talk to me, Miss Summerson.  I hate it and \ndetest it.  It's a beast!\"\n\nI told her she was tired, and I was sorry.  I put my hand upon her \nhead, and touched her forehead, and said it was hot now but would \nbe cool tomorrow.  She still stood pouting and frowning at me, but \npresently put down her egg-cup and turned softly towards the bed \nwhere Ada lay.\n\n\"She is very pretty!\" she said with the same knitted brow and in \nthe same uncivil manner.\n\nI assented with a smile.\n\n\"An orphan.  Ain't she?\"\n\n\"Yes.\"\n\n\"But knows a quantity, I suppose?  Can dance, and play music, and \nsing?  She can talk French, I suppose, and do geography, and \nglobes, and needlework, and everything?\"\n\n\"No doubt,\" said I.\n\n\"I can't,\" she returned.  \"I can't do anything hardly, except \nwrite.  I'm always writing for Ma.  I wonder you two were not \nashamed of yourselves to come in this afternoon and see me able to \ndo nothing else.  It was like your ill nature.  Yet you think \nyourselves very fine, I dare say!\"\n\nI could see that the poor girl was near crying, and I resumed my \nchair without speaking and looked at her (I hope) as mildly as I \nfelt towards her.\n\n\"It's disgraceful,\" she said.  \"You know it is.  The whole house is \ndisgraceful.  The children are disgraceful.  I'M disgraceful.  Pa's \nmiserable, and no wonder!  Priscilla drinks--she's always drinking.  \nIt's a great shame and a great story of you if you say you didn't \nsmell her today.  It was as bad as a public-house, waiting at \ndinner; you know it was!\"\n\n\"My dear, I don't know it,\" said I.\n\n\"You do,\" she said very shortly.  \"You shan't say you don't.  You \ndo!\"\n\n\"Oh, my dear!\" said I.  \"If you won't let me speak--\"\n\n\"You're speaking now.  You know you are.  Don't tell stories, Miss \nSummerson.\"\n\n\"My dear,\" said I, \"as long as you won't hear me out--\"\n\n\"I don't want to hear you out.\"\n\n\"Oh, yes, I think you do,\" said I, \"because that would be so very \nunreasonable.  I did not know what you tell me because the servant \ndid not come near me at dinner; but I don't doubt what you tell me, \nand I am sorry to hear it.\"\n\n\"You needn't make a merit of that,\" said she.\n\n\"No, my dear,\" said I.  \"That would be very foolish.\"\n\nShe was still standing by the bed, and now stooped down (but still \nwith the same discontented face) and kissed Ada.  That done, she \ncame softly back and stood by the side of my chair.  Her bosom was \nheaving in a distressful manner that I greatly pitied, but I \nthought it better not to speak.\n\n\"I wish I was dead!\" she broke out.  \"I wish we were all dead.  It \nwould be a great deal better for us.\n\nIn a moment afterwards, she knelt on the ground at my side, hid her \nface in my dress, passionately begged my pardon, and wept.  I \ncomforted her and would have raised her, but she cried no, no; she \nwanted to stay there!\n\n\"You used to teach girls,\" she said, \"If you could only have taught \nme, I could have learnt from you!  I am so very miserable, and I \nlike you so much!\"\n\nI could not persuade her to sit by me or to do anything but move a \nragged stool to where she was kneeling, and take that, and still \nhold my dress in the same manner.  By degrees the poor tired girl \nfell asleep, and then I contrived to raise her head so that it \nshould rest on my lap, and to cover us both with shawls.  The fire \nwent out, and all night long she slumbered thus before the ashy \ngrate.  At first I was painfully awake and vainly tried to lose \nmyself, with my eyes closed, among the scenes of the day.  At \nlength, by slow degrees, they became indistinct and mingled.  I \nbegan to lose the identity of the sleeper resting on me.  Now it \nwas Ada, now one of my old Reading friends from whom I could not \nbelieve I had so recently parted.  Now it was the little mad woman \nworn out with curtsying and smiling, now some one in authority at \nBleak House.  Lastly, it was no one, and I was no one.\n\nThe purblind day was feebly struggling with the fog when I opened \nmy eyes to encounter those of a dirty-faced little spectre fixed \nupon me.  Peepy had scaled his crib, and crept down in his bed-gown \nand cap, and was so cold that his teeth were chattering as if he \nhad cut them all.\n\n\n\nCHAPTER V\n\nA Morning Adventure\n\n\nAlthough the morning was raw, and although the fog still seemed \nheavy--I say seemed, for the windows were so encrusted with dirt \nthat they would have made midsummer sunshine dim--I was \nsufficiently forewarned of the discomfort within doors at that \nearly hour and sufficiently curious about London to think it a good \nidea on the part of Miss Jellyby when she proposed that we should \ngo out for a walk.\n\n\"Ma won't be down for ever so long,\" she said, \"and then it's a \nchance if breakfast's ready for an hour afterwards, they dawdle so.  \nAs to Pa, he gets what he can and goes to the office.  He never has \nwhat you would call a regular breakfast.  Priscilla leaves him out \nthe loaf and some milk, when there is any, overnight.  Sometimes \nthere isn't any milk, and sometimes the cat drinks it.  But I'm \nafraid you must be tired, Miss Summerson, and perhaps you would \nrather go to bed.\"\n\n\"I am not at all tired, my dear,\" said I, \"and would much prefer to \ngo out.\"\n\n\"If you're sure you would,\" returned Miss Jellyby, \"I'll get my \nthings on.\"\n\nAda said she would go too, and was soon astir.  I made a proposal \nto Peepy, in default of being able to do anything better for him, \nthat he should let me wash him and afterwards lay him down on my \nbed again.  To this he submitted with the best grace possible, \nstaring at me during the whole operation as if he never had been, \nand never could again be, so astonished in his life--looking very \nmiserable also, certainly, but making no complaint, and going \nsnugly to sleep as soon as it was over.  At first I was in two \nminds about taking such a liberty, but I soon reflected that nobody \nin the house was likely to notice it.\n\nWhat with the bustle of dispatching Peepy and the bustle of getting \nmyself ready and helping Ada, I was soon quite in a glow.  We found \nMiss Jellyby trying to warm herself at the fire in the writing-\nroom, which Priscilla was then lighting with a smutty parlour \ncandlestick, throwing the candle in to make it burn better.  \nEverything was just as we had left it last night and was evidently \nintended to remain so.  Below-stairs the dinner-cloth had not been \ntaken away, but had been left ready for breakfast.  Crumbs, dust, \nand waste-paper were all over the house.  Some pewter pots and a \nmilk-can hung on the area railings; the door stood open; and we met \nthe cook round the corner coming out of a public-house, wiping her \nmouth.  She mentioned, as she passed us, that she had been to see \nwhat o'clock it was.\n\nBut before we met the cook, we met Richard, who was dancing up and \ndown Thavies Inn to warm his feet.  He was agreeably surprised to \nsee us stirring so soon and said he would gladly share our walk.  \nSo he took care of Ada, and Miss Jellyby and I went first.  I may \nmention that Miss Jellyby had relapsed into her sulky manner and \nthat I really should not have thought she liked me much unless she \nhad told me so.\n\n\"Where would you wish to go?\" she asked.\n\n\"Anywhere, my dear,\" I replied.\n\n\"Anywhere's nowhere,\" said Miss Jellyby, stopping perversely.\n\n\"Let us go somewhere at any rate,\" said I.\n\nShe then walked me on very fast.\n\n\"I don't care!\" she said.  \"Now, you are my witness, Miss \nSummerson, I say I don't care-but if he was to come to our house \nwith his great, shining, lumpy forehead night after night till he \nwas as old as Methuselah, I wouldn't have anything to say to him.  \nSuch ASSES as he and Ma make of themselves!\"\n\n\"My dear!\" I remonstrated, in allusion to the epithet and the \nvigorous emphasis Miss Jellyby set upon it.  \"Your duty as a child--\"\n\n\"Oh!  Don't talk of duty as a child, Miss Summerson; where's Ma's \nduty as a parent?  All made over to the public and Africa, I \nsuppose!  Then let the public and Africa show duty as a child; it's \nmuch more their affair than mine.  You are shocked, I dare say!  \nVery well, so am I shocked too; so we are both shocked, and there's \nan end of it!\"\n\nShe walked me on faster yet.\n\n\"But for all that, I say again, he may come, and come, and come, \nand I won't have anything to say to him.  I can't bear him.  If \nthere's any stuff in the world that I hate and detest, it's the \nstuff he and Ma talk.  I wonder the very paving-stones opposite our \nhouse can have the patience to stay there and be a witness of such \ninconsistencies and contradictions as all that sounding nonsense, \nand Ma's management!\"\n\nI could not but understand her to refer to Mr. Quale, the young \ngentleman who had appeared after dinner yesterday.  I was saved the \ndisagreeable necessity of pursuing the subject by Richard and Ada \ncoming up at a round pace, laughing and asking us if we meant to \nrun a race.  Thus interrupted, Miss Jellyby became silent and \nwalked moodily on at my side while I admired the long successions \nand varieties of streets, the quantity of people already going to \nand fro, the number of vehicles passing and repassing, the busy \npreparations in the setting forth of shop windows and the sweeping \nout of shops, and the extraordinary creatures in rags secretly \ngroping among the swept-out rubbish for pins and other refuse.\n\n\"So, cousin,\" said the cheerful voice of Richard to Ada behind me.  \n\"We are never to get out of Chancery!  We have come by another way \nto our place of meeting yesterday, and--by the Great Seal, here's \nthe old lady again!\"\n\nTruly, there she was, immediately in front of us, curtsying, and \nsmiling, and saying with her yesterday's air of patronage, \"The \nwards in Jarndyce!  Ve-ry happy, I am sure!\"\n\n\"You are out early, ma'am,\" said I as she curtsied to me.\n\n\"Ye-es!  I usually walk here early.  Before the court sits.  It's \nretired.  I collect my thoughts here for the business of the day,\" \nsaid the old lady mincingly.  \"The business of the day requires a \ngreat deal of thought.  Chancery justice is so ve-ry difficult to \nfollow.\"\n\n\"Who's this, Miss Summerson?\" whispered Miss Jellyby, drawing my \narm tighter through her own.\n\nThe little old lady's hearing was remarkably quick.  She answered \nfor herself directly.\n\n\"A suitor, my child.  At your service.  I have the honour to attend \ncourt regularly.  With my documents.  Have I the pleasure of \naddressing another of the youthful parties in Jarndyce?\" said the \nold lady, recovering herself, with her head on one side, from a \nvery low curtsy.\n\nRichard, anxious to atone for his thoughtlessness of yesterday, \ngood-naturedly explained that Miss Jellyby was not connected with \nthe suit.\n\n\"Ha!\" said the old lady.  \"She does not expect a judgment?  She \nwill still grow old.  But not so old.  Oh, dear, no!  This is the \ngarden of Lincoln's Inn.  I call it my garden.  It is quite a bower \nin the summer-time.  Where the birds sing melodiously.  I pass the \ngreater part of the long vacation here.  In contemplation.  You \nfind the long vacation exceedingly long, don't you?\"\n\nWe said yes, as she seemed to expect us to say so.\n\n\"When the leaves are falling from the trees and there are no more \nflowers in bloom to make up into nosegays for the Lord Chancellor's \ncourt,\" said the old lady, \"the vacation is fulfilled and the sixth \nseal, mentioned in the Revelations, again prevails.  Pray come and \nsee my lodging.  It will be a good omen for me.  Youth, and hope, \nand beauty are very seldom there.  It is a long, long time since I \nhad a visit from either.\"\n\nShe had taken my hand, and leading me and Miss Jellyby away, \nbeckoned Richard and Ada to come too.  I did not know how to excuse \nmyself and looked to Richard for aid.  As he was half amused and \nhalf curious and all in doubt how to get rid of the old lady \nwithout offence, she continued to lead us away, and he and Ada \ncontinued to follow, our strange conductress informing us all the \ntime, with much smiling condescension, that she lived close by.\n\nIt was quite true, as it soon appeared.  She lived so close by that \nwe had not time to have done humouring her for a few moments before \nshe was at home.  Slipping us out at a little side gate, the old \nlady stopped most unexpectedly in a narrow back street, part of \nsome courts and lanes immediately outside the wall of the inn, and \nsaid, \"This is my lodging.  Pray walk up!\"\n\nShe had stopped at a shop over which was written KROOK, RAG AND \nBOTTLE WAREHOUSE.  Also, in long thin letters, KROOK, DEALER IN \nMARINE STORES.  In one part of the window was a picture of a red \npaper mill at which a cart was unloading a quantity of sacks of old \nrags.  In another was the inscription BONES BOUGHT.  In another, \nKITCHEN-STUFF BOUGHT.  In another, OLD IRON BOUGHT.  In another, \nWASTE-PAPER BOUGHT.  In another, LADIES' AND GENTLEMEN'S WARDROBES \nBOUGHT.  Everything seemed to be bought and nothing to be sold \nthere.  In all parts of the window were quantities of dirty \nbottles--blacking bottles, medicine bottles, ginger-beer and soda-\nwater bottles, pickle bottles, wine bottles, ink bottles; I am \nreminded by mentioning the latter that the shop had in several \nlittle particulars the air of being in a legal neighbourhood and of \nbeing, as it were, a dirty hanger-on and disowned relation of the \nlaw.  There were a great many ink bottles.  There was a little \ntottering bench of shabby old volumes outside the door, labelled \n\"Law Books, all at 9d.\"  Some of the inscriptions I have enumerated \nwere written in law-hand, like the papers I had seen in Kenge and \nCarboy's office and the letters I had so long received from the \nfirm.  Among them was one, in the same writing, having nothing to \ndo with the business of the shop, but announcing that a respectable \nman aged forty-five wanted engrossing or copying to execute with \nneatness and dispatch: Address to Nemo, care of Mr. Krook, within.  \nThere were several second-hand bags, blue and red, hanging up.  A \nlittle way within the shop-door lay heaps of old crackled parchment \nscrolls and discoloured and dog's-eared law-papers.  I could have \nfancied that all the rusty keys, of which there must have been \nhundreds huddled together as old iron, had once belonged to doors \nof rooms or strong chests in lawyers' offices.  The litter of rags \ntumbled partly into and partly out of a one-legged wooden scale, \nhanging without any counterpoise from a beam, might have been \ncounsellors' bands and gowns torn up.  One had only to fancy, as \nRichard whispered to Ada and me while we all stood looking in, that \nyonder bones in a corner, piled together and picked very clean, \nwere the bones of clients, to make the picture complete.\n\nAs it was still foggy and dark, and as the shop was blinded besides \nby the wall of Lincoln's Inn, intercepting the light within a \ncouple of yards, we should not have seen so much but for a lighted \nlantern that an old man in spectacles and a hairy cap was carrying \nabout in the shop.  Turning towards the door, he now caught sight \nof us.  He was short, cadaverous, and withered, with his head sunk \nsideways between his shoulders and the breath issuing in visible \nsmoke from his mouth as if he were on fire within.  His throat, \nchin, and eyebrows were so frosted with white hairs and so gnarled \nwith veins and puckered skin that he looked from his breast upward \nlike some old root in a fall of snow.\n\n\"Hi, hi!\" said the old man, coming to the door.  \"Have you anything \nto sell?\"\n\nWe naturally drew back and glanced at our conductress, who had been \ntrying to open the house-door with a key she had taken from her \npocket, and to whom Richard now said that as we had had the \npleasure of seeing where she lived, we would leave her, being \npressed for time.  But she was not to be so easily left.  She \nbecame so fantastically and pressingly earnest in her entreaties \nthat we would walk up and see her apartment for an instant, and was \nso bent, in her harmless way, on leading me in, as part of the good \nomen she desired, that I (whatever the others might do) saw nothing \nfor it but to comply.  I suppose we were all more or less curious; \nat any rate, when the old man added his persuasions to hers and \nsaid, \"Aye, aye!  Please her!  It won't take a minute!  Come in, \ncome in!  Come in through the shop if t'other door's out of order!\" \nwe all went in, stimulated by Richard's laughing encouragement and \nrelying on his protection.\n\n\"My landlord, Krook,\" said the little old lady, condescending to \nhim from her lofty station as she presented him to us.  \"He is \ncalled among the neighbours the Lord Chancellor.  His shop is \ncalled the Court of Chancery.  He is a very eccentric person.  He \nis very odd.  Oh, I assure you he is very odd!\"\n\nShe shook her head a great many times and tapped her forehead with \nher finger to express to us that we must have the goodness to \nexcuse him, \"For he is a little--you know--M!\" said the old lady \nwith great stateliness.  The old man overheard, and laughed.\n\n\"It's true enough,\" he said, going before us with the lantern, \n\"that they call me the lord chancellor and call my shop Chancery.  \nAnd why do you think they call me the Lord Chancellor and my shop \nChancery?\"\n\n\"I don't know, I am sure!\" said Richard rather carelessly.\n\n\"You see,\" said the old man, stopping and turning round, \"they--Hi!  \nHere's lovely hair!  I have got three sacks of ladies' hair below, \nbut none so beautiful and fine as this.  What colour, and what \ntexture!\"\n\n\"That'll do, my good friend!\" said Richard, strongly disapproving \nof his having drawn one of Ada's tresses through his yellow hand.  \n\"You can admire as the rest of us do without taking that liberty.\"\n\nThe old man darted at him a sudden look which even called my \nattention from Ada, who, startled and blushing, was so remarkably \nbeautiful that she seemed to fix the wandering attention of the \nlittle old lady herself.  But as Ada interposed and laughingly said \nshe could only feel proud of such genuine admiration, Mr. Krook \nshrunk into his former self as suddenly as he had leaped out of it.\n\n\"You see, I have so many things here,\" he resumed, holding up the \nlantern, \"of so many kinds, and all as the neighbours think (but \nTHEY know nothing), wasting away and going to rack and ruin, that \nthat's why they have given me and my place a christening.  And I \nhave so many old parchmentses and papers in my stock.  And I have a \nliking for rust and must and cobwebs.  And all's fish that comes to \nmy net.  And I can't abear to part with anything I once lay hold of \n(or so my neighbours think, but what do THEY know?) or to alter \nanything, or to have any sweeping, nor scouring, nor cleaning, nor \nrepairing going on about me.  That's the way I've got the ill name \nof Chancery.  I don't mind.  I go to see my noble and learned \nbrother pretty well every day, when he sits in the Inn.  He don't \nnotice me, but I notice him.  There's no great odds betwixt us.  We \nboth grub on in a muddle.  Hi, Lady Jane!\"\n\nA large grey cat leaped from some neighbouring shelf on his \nshoulder and startled us all.\n\n\"Hi!  Show 'em how you scratch.  Hi!  Tear, my lady!\" said her \nmaster.\n\nThe cat leaped down and ripped at a bundle of rags with her \ntigerish claws, with a sound that it set my teeth on edge to hear.\n\n\"She'd do as much for any one I was to set her on,\" said the old \nman.  \"I deal in cat-skins among other general matters, and hers \nwas offered to me.  It's a very fine skin, as you may see, but I \ndidn't have it stripped off!  THAT warn't like Chancery practice \nthough, says you!\"\n\nHe had by this time led us across the shop, and now opened a door \nin the back part of it, leading to the house-entry.  As he stood \nwith his hand upon the lock, the little old lady graciously \nobserved to him before passing out, \"That will do, Krook.  You mean \nwell, but are tiresome.  My young friends are pressed for time.  I \nhave none to spare myself, having to attend court very soon.  My \nyoung friends are the wards in Jarndyce.\"\n\n\"Jarndyce!\" said the old man with a start.\n\n\"Jarndyce and Jarndyce.  The great suit, Krook,\" returned his \nlodger.\n\n\"Hi!\" exclaimed the old man in a tone of thoughtful amazement and \nwith a wider stare than before.  \"Think of it!\"\n\nHe seemed so rapt all in a moment and looked so curiously at us \nthat Richard said, \"Why, you appear to trouble yourself a good deal \nabout the causes before your noble and learned brother, the other \nChancellor!\"\n\n\"Yes,\" said the old man abstractedly.  \"Sure!  YOUR name now will \nbe--\"\n\n\"Richard Carstone.\"\n\n\"Carstone,\" he repeated, slowly checking off that name upon his \nforefinger; and each of the others he went on to mention upon a \nseparate finger.  \"Yes.  There was the name of Barbary, and the \nname of Clare, and the name of Dedlock, too, I think.\"\n\n\"He knows as much of the cause as the real salaried Chancellor!\" \nsaid Richard, quite astonished, to Ada and me.\n\n\"Aye!\" said the old man, coming slowly out of his abstraction.  \n\"Yes!  Tom Jarndyce--you'll excuse me, being related; but he was \nnever known about court by any other name, and was as well known \nthere as--she is now,\" nodding slightly at his lodger.  \"Tom \nJarndyce was often in here.  He got into a restless habit of \nstrolling about when the cause was on, or expected, talking to the \nlittle shopkeepers and telling 'em to keep out of Chancery, \nwhatever they did.  'For,' says he, 'it's being ground to bits in a \nslow mill; it's being roasted at a slow fire; it's being stung to \ndeath by single bees; it's being drowned by drops; it's going mad \nby grains.'  He was as near making away with himself, just where \nthe young lady stands, as near could be.\"\n\nWe listened with horror.\n\n\"He come in at the door,\" said the old man, slowly pointing an \nimaginary track along the shop, \"on the day he did it--the whole \nneighbourhood had said for months before that he would do it, of a \ncertainty sooner or later--he come in at the door that day, and \nwalked along there, and sat himself on a bench that stood there, \nand asked me (you'll judge I was a mortal sight younger then) to \nfetch him a pint of wine.  'For,' says he, 'Krook, I am much \ndepressed; my cause is on again, and I think I'm nearer judgment \nthan I ever was.'  I hadn't a mind to leave him alone; and I \npersuaded him to go to the tavern over the way there, t'other side \nmy lane (I mean Chancery Lane); and I followed and looked in at the \nwindow, and saw him, comfortable as I thought, in the arm-chair by \nthe fire, and company with him.  I hadn't hardly got back here when \nI heard a shot go echoing and rattling right away into the inn.  I \nran out--neighbours ran out--twenty of us cried at once, 'Tom \nJarndyce!'\"\n\nThe old man stopped, looked hard at us, looked down into the \nlantern, blew the light out, and shut the lantern up.\n\n\"We were right, I needn't tell the present hearers.  Hi!  To be \nsure, how the neighbourhood poured into court that afternoon while \nthe cause was on!  How my noble and learned brother, and all the \nrest of 'em, grubbed and muddled away as usual and tried to look as \nif they hadn't heard a word of the last fact in the case or as if \nthey had--Oh, dear me!--nothing at all to do with it if they had \nheard of it by any chance!\"\n\nAda's colour had entirely left her, and Richard was scarcely less \npale.  Nor could I wonder, judging even from my emotions, and I was \nno party in the suit, that to hearts so untried and fresh it was a \nshock to come into the inheritance of a protracted misery, attended \nin the minds of many people with such dreadful recollections.  I \nhad another uneasiness, in the application of the painful story to \nthe poor half-witted creature who had brought us there; but, to my \nsurprise, she seemed perfectly unconscious of that and only led the \nway upstairs again, informing us with the toleration of a superior \ncreature for the infirmities of a common mortal that her landlord \nwas \"a little M, you know!\"\n\nShe lived at the top of the house, in a pretty large room, from \nwhich she had a glimpse of Lincoln's Inn Hall.  This seemed to have \nbeen her principal inducement, originally, for taking up her \nresidence there.  She could look at it, she said, in the night, \nespecially in the moonshine.  Her room was clean, but very, very \nbare.  I noticed the scantiest necessaries in the way of furniture; \na few old prints from books, of Chancellors and barristers, wafered \nagainst the wall; and some half-dozen reticles and work-bags, \n\"containing documents,\" as she informed us.  There were neither \ncoals nor ashes in the grate, and I saw no articles of clothing \nanywhere, nor any kind of food.  Upon a shelf in an open cupboard \nwere a plate or two, a cup or two, and so forth, but all dry and \nempty.  There was a more affecting meaning in her pinched \nappearance, I thought as I looked round, than I had understood \nbefore.\n\n\"Extremely honoured, I am sure,\" said our poor hostess with the \ngreatest suavity, \"by this visit from the wards in Jarndyce.  And \nvery much indebted for the omen.  It is a retired situation.  \nConsidering.  I am limited as to situation.  In consequence of the \nnecessity of attending on the Chancellor.  I have lived here many \nyears.  I pass my days in court, my evenings and my nights here.  I \nfind the nights long, for I sleep but little and think much.  That \nis, of course, unavoidable, being in Chancery.  I am sorry I cannot \noffer chocolate.  I expect a judgment shortly and shall then place \nmy establishment on a superior footing.  At present, I don't mind \nconfessing to the wards in Jarndyce (in strict confidence) that I \nsometimes find it difficult to keep up a genteel appearance.  I \nhave felt the cold here.  I have felt something sharper than cold.  \nIt matters very little.  Pray excuse the introduction of such mean \ntopics.\"\n\nShe partly drew aside the curtain of the long, low garret window \nand called our attention to a number of bird-cages hanging there, \nsome containing several birds.  There were larks, linnets, and \ngoldfinches--I should think at least twenty.\n\n\"I began to keep the little creatures,\" she said, \"with an object \nthat the wards will readily comprehend.  With the intention of \nrestoring them to liberty.  When my judgment should be given.  Ye-\nes!  They die in prison, though.  Their lives, poor silly things, \nare so short in comparison with Chancery proceedings that, one by \none, the whole collection has died over and over again.  I doubt, \ndo you know, whether one of these, though they are all young, will \nlive to be free!  Ve-ry mortifying, is it not?\"\n\nAlthough she sometimes asked a question, she never seemed to expect \na reply, but rambled on as if she were in the habit of doing so \nwhen no one but herself was present.\n\n\"Indeed,\" she pursued, \"I positively doubt sometimes, I do assure \nyou, whether while matters are still unsettled, and the sixth or \nGreat Seal still prevails, I may not one day be found lying stark \nand senseless here, as I have found so many birds!\"\n\nRichard, answering what he saw in Ada's compassionate eyes, took \nthe opportunity of laying some money, softly and unobserved, on the \nchimney-piece.  We all drew nearer to the cages, feigning to \nexamine the birds.\n\n\"I can't allow them to sing much,\" said the little old lady, \"for \n(you'll think this curious) I find my mind confused by the idea \nthat they are singing while I am following the arguments in court.  \nAnd my mind requires to be so very clear, you know!  Another time, \nI'll tell you their names.  Not at present.  On a day of such good \nomen, they shall sing as much as they like.  In honour of youth,\" a \nsmile and curtsy, \"hope,\" a smile and curtsy, \"and beauty,\" a smile \nand curtsy.  \"There!  We'll let in the full light.\"\n\nThe birds began to stir and chirp.\n\n\"I cannot admit the air freely,\" said the little old lady--the room \nwas close, and would have been the better for it--\"because the cat \nyou saw downstairs, called Lady Jane, is greedy for their lives.  \nShe crouches on the parapet outside for hours and hours.  I have \ndiscovered,\" whispering mysteriously, \"that her natural cruelty is \nsharpened by a jealous fear of their regaining their liberty.  In \nconsequence of the judgment I expect being shortly given.  She is \nsly and full of malice.  I half believe, sometimes, that she is no \ncat, but the wolf of the old saying.  It is so very difficult to \nkeep her from the door.\"\n\nSome neighbouring bells, reminding the poor soul that it was half-\npast nine, did more for us in the way of bringing our visit to an \nend than we could easily have done for ourselves.  She hurriedly \ntook up her little bag of documents, which she had laid upon the \ntable on coming in, and asked if we were also going into court.  On \nour answering no, and that we would on no account detain her, she \nopened the door to attend us downstairs.\n\n\"With such an omen, it is even more necessary than usual that I \nshould be there before the Chancellor comes in,\" said she, \"for he \nmight mention my case the first thing.  I have a presentiment that \nhe WILL mention it the first thing this morning\"\n\nShe stopped to tell us in a whisper as we were going down that the \nwhole house was filled with strange lumber which her landlord had \nbought piecemeal and had no wish to sell, in consequence of being a \nlittle M.  This was on the first floor.  But she had made a \nprevious stoppage on the second floor and had silently pointed at a \ndark door there.\n\n\"The only other lodger,\" she now whispered in explanation, \"a law-\nwriter.  The children in the lanes here say he has sold himself to \nthe devil.  I don't know what he can have done with the money.  \nHush!\"\n\nShe appeared to mistrust that the lodger might hear her even there, \nand repeating \"Hush!\" went before us on tiptoe as though even the \nsound of her footsteps might reveal to him what she had said.\n\nPassing through the shop on our way out, as we had passed through \nit on our way in, we found the old man storing a quantity of \npackets of waste-paper in a kind of well in the floor.  He seemed \nto be working hard, with the perspiration standing on his forehead, \nand had a piece of chalk by him, with which, as he put each \nseparate package or bundle down, he made a crooked mark on the \npanelling of the wall.\n\nRichard and Ada, and Miss Jellyby, and the little old lady had gone \nby him, and I was going when he touched me on the arm to stay me, \nand chalked the letter J upon the wall--in a very curious manner, \nbeginning with the end of the letter and shaping it backward.  It \nwas a capital letter, not a printed one, but just such a letter as \nany clerk in Messrs. Kenge and Carboy's office would have made.\n\n\"Can you read it?\" he asked me with a keen glance.\n\n\"Surely,\" said I.  \"It's very plain.\"\n\n\"What is it?\"\n\n\"J.\"\n\nWith another glance at me, and a glance at the door, he rubbed it \nout and turned an \"a\" in its place (not a capital letter this \ntime), and said, \"What's that?\"\n\nI told him.  He then rubbed that out and turned the letter \"r,\" and \nasked me the same question.  He went on quickly until he had formed \nin the same curious manner, beginning at the ends and bottoms of \nthe letters, the word Jarndyce, without once leaving two letters on \nthe wall together.\n\n\"What does that spell?\" he asked me.\n\nWhen I told him, he laughed.  In the same odd way, yet with the \nsame rapidity, he then produced singly, and rubbed out singly, the \nletters forming the words Bleak House.  These, in some \nastonishment, I also read; and he laughed again.\n\n\"Hi!\" said the old man, laying aside the chalk.  \"I have a turn for \ncopying from memory, you see, miss, though I can neither read nor \nwrite.\"\n\nHe looked so disagreeable and his cat looked so wickedly at me, as \nif I were a blood-relation of the birds upstairs, that I was quite \nrelieved by Richard's appearing at the door and saying, \"Miss \nSummerson, I hope you are not bargaining for the sale of your hair.  \nDon't be tempted.  Three sacks below are quite enough for Mr. Krook!\"\n\nI lost no time in wishing Mr. Krook good morning and joining my \nfriends outside, where we parted with the little old lady, who gave \nus her blessing with great ceremony and renewed her assurance of \nyesterday in reference to her intention of settling estates on Ada \nand me.  Before we finally turned out of those lanes, we looked \nback and saw Mr. Krook standing at his shop-door, in his \nspectacles, looking after us, with his cat upon his shoulder, and \nher tail sticking up on one side of his hairy cap like a tall \nfeather.\n\n\"Quite an adventure for a morning in London!\" said Richard with a \nsigh.  \"Ah, cousin, cousin, it's a weary word this Chancery!\"\n\n\"It is to me, and has been ever since I can remember,\" returned \nAda.  \"I am grieved that I should be the enemy---as I suppose I am\n--of a great number of relations and others, and that they should be \nmy enemies--as I suppose they are--and that we should all be \nruining one another without knowing how or why and be in constant \ndoubt and discord all our lives.  It seems very strange, as there \nmust be right somewhere, that an honest judge in real earnest has \nnot been able to find out through all these years where it is.\"\n\n\"Ah, cousin!\" said Richard.  \"Strange, indeed!  All this wasteful, \nwanton chess-playing IS very strange.  To see that composed court \nyesterday jogging on so serenely and to think of the wretchedness \nof the pieces on the board gave me the headache and the heartache \nboth together.  My head ached with wondering how it happened, if \nmen were neither fools nor rascals; and my heart ached to think \nthey could possibly be either.  But at all events, Ada--I may call \nyou Ada?\"\n\n\"Of course you may, cousin Richard.\"\n\n\"At all events, Chancery will work none of its bad influences on \nUS.  We have happily been brought together, thanks to our good \nkinsman, and it can't divide us now!\"\n\n\"Never, I hope, cousin Richard!\" said Ada gently.\n\nMiss Jellyby gave my arm a squeeze and me a very significant look.  \nI smiled in return, and we made the rest of the way back very \npleasantly.\n\nIn half an hour after our arrival, Mrs. Jellyby appeared; and in \nthe course of an hour the various things necessary for breakfast \nstraggled one by one into the dining-room.  I do not doubt that \nMrs. Jellyby had gone to bed and got up in the usual manner, but \nshe presented no appearance of having changed her dress.  She was \ngreatly occupied during breakfast, for the morning's post brought a \nheavy correspondence relative to Borrioboola-Gha, which would \noccasion her (she said) to pass a busy day.  The children tumbled \nabout, and notched memoranda of their accidents in their legs, \nwhich were perfect little calendars of distress; and Peepy was lost \nfor an hour and a half, and brought home from Newgate market by a \npoliceman.  The equable manner in which Mrs. Jellyby sustained both \nhis absence and his restoration to the family circle surprised us \nall.\n\nShe was by that time perseveringly dictating to Caddy, and Caddy \nwas fast relapsing into the inky condition in which we had found \nher.  At one o'clock an open carriage arrived for us, and a cart \nfor our luggage.  Mrs. Jellyby charged us with many remembrances to \nher good friend Mr. Jarndyce; Caddy left her desk to see us depart, \nkissed me in the passage, and stood biting her pen and sobbing on \nthe steps; Peepy, I am happy to say, was asleep and spared the pain \nof separation (I was not without misgivings that he had gone to \nNewgate market in search of me); and all the other children got up \nbehind the barouche and fell off, and we saw them, with great \nconcern, scattered over the surface of Thavies Inn as we rolled out \nof its precincts.\n\n\n\nCHAPTER VI\n\nQuite at Home\n\n\nThe day had brightened very much, and still brightened as we went \nwestward.  We went our way through the sunshine and the fresh air, \nwondering more and more at the extent of the streets, the \nbrilliancy of the shops, the great traffic, and the crowds of \npeople whom the pleasanter weather seemed to have brought out like \nmany-coloured flowers.  By and by we began to leave the wonderful \ncity and to proceed through suburbs which, of themselves, would \nhave made a pretty large town in my eyes; and at last we got into a \nreal country road again, with windmills, rick-yards, milestones, \nfarmers' waggons, scents of old hay, swinging signs, and horse \ntroughs: trees, fields, and hedge-rows.  It was delightful to see \nthe green landscape before us and the immense metropolis behind; \nand when a waggon with a train of beautiful horses, furnished with \nred trappings and clear-sounding bells, came by us with its music, \nI believe we could all three have sung to the bells, so cheerful \nwere the influences around.\n\n\"The whole road has been reminding me of my name-sake Whittington,\" \nsaid Richard, \"and that waggon is the finishing touch.  Halloa!  \nWhat's the matter?\"\n\nWe had stopped, and the waggon had stopped too.  Its music changed \nas the horses came to a stand, and subsided to a gentle tinkling, \nexcept when a horse tossed his head or shook himself and sprinkled \noff a little shower of bell-ringing.\n\n\"Our postilion is looking after the waggoner,\" said Richard, \"and \nthe waggoner is coming back after us.  Good day, friend!\"  The \nwaggoner was at our coach-door.  \"Why, here's an extraordinary \nthing!\" added Richard, looking closely at the man.  \"He has got \nyour name, Ada, in his hat!\"\n\nHe had all our names in his hat.  Tucked within the band were three \nsmall notes--one addressed to Ada, one to Richard, one to me.  \nThese the waggoner delivered to each of us respectively, reading \nthe name aloud first.  In answer to Richard's inquiry from whom \nthey came, he briefly answered, \"Master, sir, if you please\"; and \nputting on his hat again (which was like a soft bowl), cracked his \nwhip, re-awakened his music, and went melodiously away.\n\n\"Is that Mr. Jarndyce's waggon?\" said Richard, calling to our post-\nboy.\n\n\"Yes, sir,\" he replied.  \"Going to London.\"\n\nWe opened the notes.  Each was a counterpart of the other and \ncontained these words in a solid, plain hand.\n\n\n\"I look forward, my dear, to our meeting easily and without \nconstraint on either side.  I therefore have to propose that we \nmeet as old friends and take the past for granted.  It will be a \nrelief to you possibly, and to me certainly, and so my love to you.\n\nJohn Jarndyce\"\n\n\nI had perhaps less reason to be surprised than either of my \ncompanions, having never yet enjoyed an opportunity of thanking one \nwho had been my benefactor and sole earthly dependence through so \nmany years.  I had not considered how I could thank him, my \ngratitude lying too deep in my heart for that; but I now began to \nconsider how I could meet him without thanking him, and felt it \nwould be very difficult indeed.\n\nThe notes revived in Richard and Ada a general impression that they \nboth had, without quite knowing how they came by it, that their \ncousin Jarndyce could never bear acknowledgments for any kindness \nhe performed and that sooner than receive any he would resort to \nthe most singular expedients and evasions or would even run away.  \nAda dimly remembered to have heard her mother tell, when she was a \nvery little child, that he had once done her an act of uncommon \ngenerosity and that on her going to his house to thank him, he \nhappened to see her through a window coming to the door, and \nimmediately escaped by the back gate, and was not heard of for \nthree months.  This discourse led to a great deal more on the same \ntheme, and indeed it lasted us all day, and we talked of scarcely \nanything else.  If we did by any chance diverge into another \nsubject, we soon returned to this, and wondered what the house \nwould be like, and when we should get there, and whether we should \nsee Mr. Jarndyce as soon as we arrived or after a delay, and what \nhe would say to us, and what we should say to him.  All of which we \nwondered about, over and over again.\n\nThe roads were very heavy for the horses, but the pathway was \ngenerally good, so we alighted and walked up all the hills, and \nliked it so well that we prolonged our walk on the level ground \nwhen we got to the top.  At Barnet there were other horses waiting \nfor us, but as they had only just been fed, we had to wait for them \ntoo, and got a long fresh walk over a common and an old battle-\nfield before the carriage came up.  These delays so protracted the \njourney that the short day was spent and the long night had closed \nin before we came to St. Albans, near to which town Bleak House \nwas, we knew.\n\nBy that time we were so anxious and nervous that even Richard \nconfessed, as we rattled over the stones of the old street, to \nfeeling an irrational desire to drive back again.  As to Ada and \nme, whom he had wrapped up with great care, the night being sharp \nand frosty, we trembled from head to foot.  When we turned out of \nthe town, round a corner, and Richard told us that the post-boy, \nwho had for a long time sympathized with our heightened \nexpectation, was looking back and nodding, we both stood up in the \ncarriage (Richard holding Ada lest she should be jolted down) and \ngazed round upon the open country and the starlight night for our \ndestination.  There was a light sparkling on the top of a hill \nbefore us, and the driver, pointing to it with his whip and crying, \n\"That's Bleak House!\" put his horses into a canter and took us \nforward at such a rate, uphill though it was, that the wheels sent \nthe road drift flying about our heads like spray from a water-mill.  \nPresently we lost the light, presently saw it, presently lost it, \npresently saw it, and turned into an avenue of trees and cantered \nup towards where it was beaming brightly.  It was in a window of \nwhat seemed to be an old-fashioned house with three peaks in the \nroof in front and a circular sweep leading to the porch.  A bell \nwas rung as we drew up, and amidst the sound of its deep voice in \nthe still air, and the distant barking of some dogs, and a gush of \nlight from the opened door, and the smoking and steaming of the \nheated horses, and the quickened beating of our own hearts, we \nalighted in no inconsiderable confusion.\n\n\"Ada, my love, Esther, my dear, you are welcome.  I rejoice to see \nyou!  Rick, if I had a hand to spare at present, I would give it \nyou!\"\n\nThe gentleman who said these words in a clear, bright, hospitable \nvoice had one of his arms round Ada's waist and the other round \nmine, and kissed us both in a fatherly way, and bore us across the \nhall into a ruddy little room, all in a glow with a blazing fire.  \nHere he kissed us again, and opening his arms, made us sit down \nside by side on a sofa ready drawn out near the hearth.  I felt \nthat if we had been at all demonstrative, he would have run away in \na moment.\n\n\"Now, Rick!\" said he.  \"I have a hand at liberty.  A word in \nearnest is as good as a speech.  I am heartily glad to see you.  \nYou are at home.  Warm yourself!\"\n\nRichard shook him by both hands with an intuitive mixture of \nrespect and frankness, and only saying (though with an earnestness \nthat rather alarmed me, I was so afraid of Mr. Jarndyce's suddenly \ndisappearing), \"You are very kind, sir!  We are very much obliged \nto you!\" laid aside his hat and coat and came up to the fire.\n\n\"And how did you like the ride?  And how did you like Mrs. Jellyby, \nmy dear?\" said Mr. Jarndyce to Ada.\n\nWhile Ada was speaking to him in reply, I glanced (I need not say \nwith how much interest) at his face.  It was a handsome, lively, \nquick face, full of change and motion; and his hair was a silvered \niron-grey.  I took him to be nearer sixty than fifty, but he was \nupright, hearty, and robust.  From the moment of his first speaking \nto us his voice had connected itself with an association in my mind \nthat I could not define; but now, all at once, a something sudden \nin his manner and a pleasant expression in his eyes recalled the \ngentleman in the stagecoach six years ago on the memorable day of \nmy journey to Reading.  I was certain it was he.  I never was so \nfrightened in my life as when I made the discovery, for he caught \nmy glance, and appearing to read my thoughts, gave such a look at \nthe door that I thought we had lost him.\n\nHowever, I am happy to say he remained where he was, and asked me \nwhat I thought of Mrs. Jellyby.\n\n\"She exerts herself very much for Africa, sir,\" I said.\n\n\"Nobly!\" returned Mr. Jarndyce.  \"But you answer like Ada.\"  Whom I \nhad not heard.  \"You all think something else, I see.\"\n\n\"We rather thought,\" said I, glancing at Richard and Ada, who \nentreated me with their eyes to speak, \"that perhaps she was a \nlittle unmindful of her home.\"\n\n\"Floored!\" cried Mr. Jarndyce.\n\nI was rather alarmed again.\n\n\"Well!  I want to know your real thoughts, my dear.  I may have \nsent you there on purpose.\"\n\n\"We thought that, perhaps,\" said I, hesitating, \"it is right to \nbegin with the obligations of home, sir; and that, perhaps, while \nthose are overlooked and neglected, no other duties can possibly be \nsubstituted for them.\"\n\n\"The little Jellybys,\" said Richard, coming to my relief, \"are \nreally--I can't help expressing myself strongly, sir--in a devil of \na state.\"\n\n\"She means well,\" said Mr. Jarndyce hastily.  \"The wind's in the \neast.\"\n\n\"It was in the north, sir, as we came down,\" observed Richard.\n\n\"My dear Rick,\" said Mr. Jarndyce, poking the fire, \"I'll take an \noath it's either in the east or going to be.  I am always conscious \nof an uncomfortable sensation now and then when the wind is blowing \nin the east.\"\n\n\"Rheumatism, sir?\" said Richard.\n\n\"I dare say it is, Rick.  I believe it is.  And so the little Jell\n--I had my doubts about 'em--are in a--oh, Lord, yes, it's \neasterly!\" said Mr. Jarndyce.\n\nHe had taken two or three undecided turns up and down while \nuttering these broken sentences, retaining the poker in one hand \nand rubbing his hair with the other, with a good-natured vexation \nat once so whimsical and so lovable that I am sure we were more \ndelighted with him than we could possibly have expressed in any \nwords.  He gave an arm to Ada and an arm to me, and bidding Richard \nbring a candle, was leading the way out when he suddenly turned us \nall back again.\n\n\"Those little Jellybys.  Couldn't you--didn't you--now, if it had \nrained sugar-plums, or three-cornered raspberry tarts, or anything \nof that sort!\" said Mr. Jarndyce.\n\n\"Oh, cousin--\" Ada hastily began.\n\n\"Good, my pretty pet.  I like cousin.  Cousin John, perhaps, is \nbetter.\"\n\n\"Then, cousin John--\" Ada laughingly began again.\n\n\"Ha, ha!  Very good indeed!\" said Mr. Jarndyce with great \nenjoyment.  \"Sounds uncommonly natural.  Yes, my dear?\"\n\n\"It did better than that.  It rained Esther.\"\n\n\"Aye?\" said Mr. Jarndyce.  \"What did Esther do?\"\n\n\"Why, cousin John,\" said Ada, clasping her hands upon his arm and \nshaking her head at me across him--for I wanted her to be quiet--\n\"Esther was their friend directly.  Esther nursed them, coaxed them \nto sleep, washed and dressed them, told them stories, kept them \nquiet, bought them keepsakes\"--My dear girl!  I had only gone out \nwith Peepy after he was found and given him a little, tiny horse!--\n\"and, cousin John, she softened poor Caroline, the eldest one, so \nmuch and was so thoughtful for me and so amiable!  No, no, I won't \nbe contradicted, Esther dear!  You know, you know, it's true!\"\n\nThe warm-hearted darling leaned across her cousin John and kissed \nme, and then looking up in his face, boldly said, \"At all events, \ncousin John, I WILL thank you for the companion you have given me.\"  \nI felt as if she challenged him to run away.  But he didn't.\n\n\"Where did you say the wind was, Rick?\" asked Mr. Jarndyce.\n\n\"In the north as we came down, sir.\"\n\n\"You are right.  There's no east in it.  A mistake of mine.  Come, \ngirls, come and see your home!\"\n\nIt was one of those delightfully irregular houses where you go up \nand down steps out of one room into another, and where you come \nupon more rooms when you think you have seen all there are, and \nwhere there is a bountiful provision of little halls and passages, \nand where you find still older cottage-rooms in unexpected places \nwith lattice windows and green growth pressing through them.  Mine, \nwhich we entered first, was of this kind, with an up-and-down roof \nthat had more corners in it than I ever counted afterwards and a \nchimney (there was a wood fire on the hearth) paved all around with \npure white tiles, in every one of which a bright miniature of the \nfire was blazing.  Out of this room, you went down two steps into a \ncharming little sitting-room looking down upon a flower-garden, \nwhich room was henceforth to belong to Ada and me.  Out of this you \nwent up three steps into Ada's bedroom, which had a fine broad \nwindow commanding a beautiful view (we saw a great expanse of \ndarkness lying underneath the stars), to which there was a hollow \nwindow-seat, in which, with a spring-lock, three dear Adas might \nhave been lost at once.  Out of this room you passed into a little \ngallery, with which the other best rooms (only two) communicated, \nand so, by a little staircase of shallow steps with a number of \ncorner stairs in it, considering its length, down into the hall.  \nBut if instead of going out at Ada's door you came back into my \nroom, and went out at the door by which you had entered it, and \nturned up a few crooked steps that branched off in an unexpected \nmanner from the stairs, you lost yourself in passages, with mangles \nin them, and three-cornered tables, and a native Hindu chair, which \nwas also a sofa, a box, and a bedstead, and looked in every form \nsomething between a bamboo skeleton and a great bird-cage, and had \nbeen brought from India nobody knew by whom or when.  From these \nyou came on Richard's room, which was part library, part sitting-\nroom, part bedroom, and seemed indeed a comfortable compound of \nmany rooms.  Out of that you went straight, with a little interval \nof passage, to the plain room where Mr. Jarndyce slept, all the \nyear round, with his window open, his bedstead without any \nfurniture standing in the middle of the floor for more air, and his \ncold bath gaping for him in a smaller room adjoining.  Out of that \nyou came into another passage, where there were back-stairs and \nwhere you could hear the horses being rubbed down outside the \nstable and being told to \"Hold up\" and \"Get over,\" as they slipped \nabout very much on the uneven stones.  Or you might, if you came \nout at another door (every room had at least two doors), go \nstraight down to the hall again by half-a-dozen steps and a low \narchway, wondering how you got back there or had ever got out of \nit.\n\nThe furniture, old-fashioned rather than old, like the house, was \nas pleasantly irregular.  Ada's sleeping-room was all flowers--in \nchintz and paper, in velvet, in needlework, in the brocade of two \nstiff courtly chairs which stood, each attended by a little page of \na stool for greater state, on either side of the fire-place.  Our \nsitting-room was green and had framed and glazed upon the walls \nnumbers of surprising and surprised birds, staring out of pictures \nat a real trout in a case, as brown and shining as if it had been \nserved with gravy; at the death of Captain Cook; and at the whole \nprocess of preparing tea in China, as depicted by Chinese artists.  \nIn my room there were oval engravings of the months--ladies \nhaymaking in short waists and large hats tied under the chin, for \nJune; smooth-legged noblemen pointing with cocked-hats to village \nsteeples, for October.  Half-length portraits in crayons abounded \nall through the house, but were so dispersed that I found the \nbrother of a youthful officer of mine in the china-closet and the \ngrey old age of my pretty young bride, with a flower in her bodice, \nin the breakfast-room.  As substitutes, I had four angels, of Queen \nAnne's reign, taking a complacent gentleman to heaven, in festoons, \nwith some difficulty; and a composition in needlework representing \nfruit, a kettle, and an alphabet.  All the movables, from the \nwardrobes to the chairs and tables, hangings, glasses, even to the \npincushions and scent-bottles on the dressing-tables, displayed the \nsame quaint variety.  They agreed in nothing but their perfect \nneatness, their display of the whitest linen, and their storing-up, \nwheresoever the existence of a drawer, small or large, rendered it \npossible, of quantities of rose-leaves and sweet lavender.  Such, \nwith its illuminated windows, softened here and there by shadows of \ncurtains, shining out upon the starlight night; with its light, and \nwarmth, and comfort; with its hospitable jingle, at a distance, of \npreparations for dinner; with the face of its generous master \nbrightening everything we saw; and just wind enough without to \nsound a low accompaniment to everything we heard, were our first \nimpressions of Bleak House.\n\n\"I am glad you like it,\" said Mr. Jarndyce when he had brought us \nround again to Ada's sitting-room.  \"It makes no pretensions, but \nit is a comfortable little place, I hope, and will be more so with \nsuch bright young looks in it.  You have barely half an hour before \ndinner.  There's no one here but the finest creature upon earth--a \nchild.\"\n\n\"More children, Esther!\" said Ada.\n\n\"I don't mean literally a child,\" pursued Mr. Jarndyce; \"not a \nchild in years.  He is grown up--he is at least as old as I am--but \nin simplicity, and freshness, and enthusiasm, and a fine guileless \ninaptitude for all worldly affairs, he is a perfect child.\"\n\nWe felt that he must be very interesting.\n\n\"He knows Mrs. Jellyby,\" said Mr. Jarndyce.  \"He is a musical man, \nan amateur, but might have been a professional.  He is an artist \ntoo, an amateur, but might have been a professional.  He is a man \nof attainments and of captivating manners.  He has been unfortunate \nin his affairs, and unfortunate in his pursuits, and unfortunate in \nhis family; but he don't care--he's a child!\"\n\n\"Did you imply that he has children of his own, sir?\" inquired \nRichard.\n\n\"Yes, Rick!  Half-a-dozen.  More!  Nearer a dozen, I should think.  \nBut he has never looked after them.  How could he?  He wanted \nsomebody to look after HIM.  He is a child, you know!\" said Mr. \nJarndyce.\n\n\"And have the children looked after themselves at all, sir?\" \ninquired Richard.\n\n\"Why, just as you may suppose,\" said Mr. Jarndyce, his countenance \nsuddenly falling.  \"It is said that the children of the very poor \nare not brought up, but dragged up.  Harold Skimpole's children \nhave tumbled up somehow or other.  The wind's getting round again, \nI am afraid.  I feel it rather!\"\n\nRichard observed that the situation was exposed on a sharp night.\n\n\"It IS exposed,\" said Mr. Jarndyce.  \"No doubt that's the cause.  \nBleak House has an exposed sound.  But you are coming my way.  Come \nalong!\"\n\nOur luggage having arrived and being all at hand, I was dressed in \na few minutes and engaged in putting my worldly goods away when a \nmaid (not the one in attendance upon Ada, but another, whom I had \nnot seen) brought a basket into my room with two bunches of keys in \nit, all labelled.\n\n\"For you, miss, if you please,\" said she.\n\n\"For me?\" said I.\n\n\"The housekeeping keys, miss.\"\n\nI showed my surprise, for she added with some little surprise on \nher own part, \"I was told to bring them as soon as you was alone, \nmiss.  Miss Summerson, if I don't deceive myself?\"\n\n\"Yes,\" said I.  \"That is my name.\"\n\n\"The large bunch is the housekeeping, and the little bunch is the \ncellars, miss.  Any time you was pleased to appoint tomorrow \nmorning, I was to show you the presses and things they belong to.\"\n\nI said I would be ready at half-past six, and after she was gone, \nstood looking at the basket, quite lost in the magnitude of my \ntrust.  Ada found me thus and had such a delightful confidence in \nme when I showed her the keys and told her about them that it would \nhave been insensibility and ingratitude not to feel encouraged.  I \nknew, to be sure, that it was the dear girl's kindness, but I liked \nto be so pleasantly cheated.\n\nWhen we went downstairs, we were presented to Mr. Skimpole, who was \nstanding before the fire telling Richard how fond he used to be, in \nhis school-time, of football.  He was a little bright creature with \na rather large head, but a delicate face and a sweet voice, and \nthere was a perfect charm in him.  All he said was so free from \neffort and spontaneous and was said with such a captivating gaiety \nthat it was fascinating to hear him talk.  Being of a more slender \nfigure than Mr. Jarndyce and having a richer complexion, with \nbrowner hair, he looked younger.  Indeed, he had more the \nappearance in all respects of a damaged young man than a well-\npreserved elderly one.  There was an easy negligence in his manner \nand even in his dress (his hair carelessly disposed, and his \nneckkerchief loose and flowing, as I have seen artists paint their \nown portraits) which I could not separate from the idea of a \nromantic youth who had undergone some unique process of \ndepreciation.  It struck me as being not at all like the manner or \nappearance of a man who had advanced in life by the usual road of \nyears, cares, and experiences.\n\nI gathered from the conversation that Mr. Skimpole had been \neducated for the medical profession and had once lived, in his \nprofessional capacity, in the household of a German prince.  He \ntold us, however, that as he had always been a mere child in point \nof weights and measures and had never known anything about them \n(except that they disgusted him), he had never been able to \nprescribe with the requisite accuracy of detail.  In fact, he said, \nhe had no head for detail.  And he told us, with great humour, that \nwhen he was wanted to bleed the prince or physic any of his people, \nhe was generally found lying on his back in bed, reading the \nnewspapers or making fancy-sketches in pencil, and couldn't come.  \nThe prince, at last, objecting to this, \"in which,\" said Mr. \nSkimpole, in the frankest manner, \"he was perfectly right,\" the \nengagement terminated, and Mr. Skimpole having (as he added with \ndelightful gaiety) \"nothing to live upon but love, fell in love, \nand married, and surrounded himself with rosy cheeks.\"  His good \nfriend Jarndyce and some other of his good friends then helped him, \nin quicker or slower succession, to several openings in life, but \nto no purpose, for he must confess to two of the oldest infirmities \nin the world: one was that he had no idea of time, the other that \nhe had no idea of money.  In consequence of which he never kept an \nappointment, never could transact any business, and never knew the \nvalue of anything!  Well!  So he had got on in life, and here he \nwas!  He was very fond of reading the papers, very fond of making \nfancy-sketches with a pencil, very fond of nature, very fond of \nart.  All he asked of society was to let him live.  THAT wasn't \nmuch.  His wants were few.  Give him the papers, conversation, \nmusic, mutton, coffee, landscape, fruit in the season, a few sheets \nof Bristol-board, and a little claret, and he asked no more.  He \nwas a mere child in the world, but he didn't cry for the moon.  He \nsaid to the world, \"Go your several ways in peace!  Wear red coats, \nblue coats, lawn sleeves; put pens behind your ears, wear aprons; \ngo after glory, holiness, commerce, trade, any object you prefer; \nonly--let Harold Skimpole live!\"\n\nAll this and a great deal more he told us, not only with the utmost \nbrilliancy and enjoyment, but with a certain vivacious candour--\nspeaking of himself as if he were not at all his own affair, as if \nSkimpole were a third person, as if he knew that Skimpole had his \nsingularities but still had his claims too, which were the general \nbusiness of the community and must not be slighted.  He was quite \nenchanting.  If I felt at all confused at that early time in \nendeavouring to reconcile anything he said with anything I had \nthought about the duties and accountabilities of life (which I am \nfar from sure of), I was confused by not exactly understanding why \nhe was free of them.  That he WAS free of them, I scarcely doubted; \nhe was so very clear about it himself.\n\n\"I covet nothing,\" said Mr. Skimpole in the same light way.  \n\"Possession is nothing to me.  Here is my friend Jarndyce's \nexcellent house.  I feel obliged to him for possessing it.  I can \nsketch it and alter it.  I can set it to music.  When I am here, I \nhave sufficient possession of it and have neither trouble, cost, \nnor responsibility.  My steward's name, in short, is Jarndyce, and \nhe can't cheat me.  We have been mentioning Mrs. Jellyby.  There is \na bright-eyed woman, of a strong will and immense power of business \ndetail, who throws herself into objects with surprising ardour!  I \ndon't regret that I have not a strong will and an immense power of \nbusiness detail to throw myself into objects with surprising \nardour.  I can admire her without envy.  I can sympathize with the \nobjects.  I can dream of them.  I can lie down on the grass--in \nfine weather--and float along an African river, embracing all the \nnatives I meet, as sensible of the deep silence and sketching the \ndense overhanging tropical growth as accurately as if I were there.  \nI don't know that it's of any direct use my doing so, but it's all \nI can do, and I do it thoroughly.  Then, for heaven's sake, having \nHarold Skimpole, a confiding child, petitioning you, the world, an \nagglomeration of practical people of business habits, to let him \nlive and admire the human family, do it somehow or other, like good \nsouls, and suffer him to ride his rocking-horse!\"\n\nIt was plain enough that Mr. Jarndyce had not been neglectful of \nthe adjuration.  Mr. Skimpole's general position there would have \nrendered it so without the addition of what he presently said.\n\n\"It's only you, the generous creatures, whom I envy,\" said Mr. \nSkimpole, addressing us, his new friends, in an impersonal manner.  \n\"I envy you your power of doing what you do.  It is what I should \nrevel in myself.  I don't feel any vulgar gratitude to you.  I \nalmost feel as if YOU ought to be grateful to ME for giving you the \nopportunity of enjoying the luxury of generosity.  I know you like \nit.  For anything I can tell, I may have come into the world \nexpressly for the purpose of increasing your stock of happiness.  I \nmay have been born to be a benefactor to you by sometimes giving \nyou an opportunity of assisting me in my little perplexities.  Why \nshould I regret my incapacity for details and worldly affairs when \nit leads to such pleasant consequences?  I don't regret it \ntherefore.\"\n\nOf all his playful speeches (playful, yet always fully meaning what \nthey expressed) none seemed to be more to the taste of Mr. Jarndyce \nthan this.  I had often new temptations, afterwards, to wonder \nwhether it was really singular, or only singular to me, that he, \nwho was probably the most grateful of mankind upon the least \noccasion, should so desire to escape the gratitude of others.\n\nWe were all enchanted.  I felt it a merited tribute to the engaging \nqualities of Ada and Richard that Mr. Skimpole, seeing them for the \nfirst time, should he so unreserved and should lay himself out to \nbe so exquisitely agreeable.  They (and especially Richard) were \nnaturally pleased; for similar reasons, and considered it no common \nprivilege to be so freely confided in by such an attractive man.  \nThe more we listened, the more gaily Mr. Skimpole talked.  And what \nwith his fine hilarious manner and his engaging candour and his \ngenial way of lightly tossing his own weaknesses about, as if he \nhad said, \"I am a child, you know!  You are designing people \ncompared with me\" (he really made me consider myself in that light) \n\"but I am gay and innocent; forget your worldly arts and play with \nme!\" the effect was absolutely dazzling.\n\nHe was so full of feeling too and had such a delicate sentiment for \nwhat was beautiful or tender that he could have won a heart by that \nalone.  In the evening, when I was preparing to make tea and Ada \nwas touching the piano in the adjoining room and softly humming a \ntune to her cousin Richard, which they had happened to mention, he \ncame and sat down on the sofa near me and so spoke of Ada that I \nalmost loved him.\n\n\"She is like the morning,\" he said.  \"With that golden hair, those \nblue eyes, and that fresh bloom on her cheek, she is like the \nsummer morning.  The birds here will mistake her for it.  We will \nnot call such a lovely young creature as that, who is a joy to all \nmankind, an orphan.  She is the child of the universe.\"\n\nMr. Jarndyce, I found, was standing near us with his hands behind \nhim and an attentive smile upon his face.\n\n\"The universe,\" he observed, \"makes rather an indifferent parent, I \nam afraid.\"\n\n\"Oh! I don't know!\" cried Mr. Skimpole buoyantly.\n\n\"I think I do know,\" said Mr. Jarndyce.\n\n\"Well!\" cried Mr. Skimpole.  \"You know the world (which in your \nsense is the universe), and I know nothing of it, so you shall have \nyour way.  But if I had mine,\" glancing at the cousins, \"there \nshould be no brambles of sordid realities in such a path as that.  \nIt should be strewn with roses; it should lie through bowers, where \nthere was no spring, autumn, nor winter, but perpetual summer.  Age \nor change should never wither it.  The base word money should never \nbe breathed near it!\"\n\nMr. Jarndyce patted him on the head with a smile, as if he had been \nreally a child, and passing a step or two on, and stopping a \nmoment, glanced at the young cousins.  His look was thoughtful, but \nhad a benignant expression in it which I often (how often!) saw \nagain, which has long been engraven on my heart.  The room in which \nthey were, communicating with that in which he stood, was only \nlighted by the fire.  Ada sat at the piano; Richard stood beside \nher, bending down.  Upon the wall, their shadows blended together, \nsurrounded by strange forms, not without a ghostly motion caught \nfrom the unsteady fire, though reflecting from motionless objects.  \nAda touched the notes so softly and sang so low that the wind, \nsighing away to the distant hills, was as audible as the music.  \nThe mystery of the future and the little clue afforded to it by the \nvoice of the present seemed expressed in the whole picture.\n\nBut it is not to recall this fancy, well as I remember it, that I \nrecall the scene.  First, I was not quite unconscious of the \ncontrast in respect of meaning and intention between the silent \nlook directed that way and the flow of words that had preceded it.  \nSecondly, though Mr. Jarndyce's glance as he withdrew it rested for \nbut a moment on me, I felt as if in that moment he confided to me--\nand knew that he confided to me and that I received the confidence\n--his hope that Ada and Richard might one day enter on a dearer \nrelationship.\n\nMr. Skimpole could play on the piano and the violoncello, and he \nwas a composer--had composed half an opera once, but got tired of \nit--and played what he composed with taste.  After tea we had quite \na little concert, in which Richard--who was enthralled by Ada's \nsinging and told me that she seemed to know all the songs that ever \nwere written--and Mr. Jarndyce, and I were the audience.  After a \nlittle while I missed first Mr. Skimpole and afterwards Richard, \nand while I was thinking how could Richard stay away so long and \nlose so much, the maid who had given me the keys looked in at the \ndoor, saying, \"If you please, miss, could you spare a minute?\"\n\nWhen I was shut out with her in the hall, she said, holding up her \nhands, \"Oh, if you please, miss, Mr. Carstone says would you come \nupstairs to Mr. Skimpole's room.  He has been took, miss!\"\n\n\"Took?\" said I. \n\n\"Took, miss.  Sudden,\" said the maid.\n\nI was apprehensive that his illness might be of a dangerous kind, \nbut of course I begged her to be quiet and not disturb any one and \ncollected myself, as I followed her quickly upstairs, sufficiently \nto consider what were the best remedies to be applied if it should \nprove to be a fit.  She threw open a door and I went into a \nchamber, where, to my unspeakable surprise, instead of finding Mr. \nSkimpole stretched upon the bed or prostrate on the floor, I found \nhim standing before the fire smiling at Richard, while Richard, \nwith a face of great embarrassment, looked at a person on the sofa, \nin a white great-coat, with smooth hair upon his head and not much \nof it, which he was wiping smoother and making less of with a \npocket-handkerchief.\n\n\"Miss Summerson,\" said Richard hurriedly, \"I am glad you are come.  \nYou will be able to advise us.  Our friend Mr. Skimpole--don't be \nalarmed!--is arrested for debt.\"\n\n\"And really, my dear Miss Summerson,\" said Mr. Skimpole with his \nagreeable candour, \"I never was in a situation in which that \nexcellent sense and quiet habit of method and usefulness, which \nanybody must observe in you who has the happiness of being a \nquarter of an hour in your society, was more needed.\"\n\nThe person on the sofa, who appeared to have a cold in his head, \ngave such a very loud snort that he startled me.\n\n\"Are you arrested for much, sir?\" I inquired of Mr. Skimpole.\n\n\"My dear Miss Summerson,\" said he, shaking his head pleasantly, \"I \ndon't know.  Some pounds, odd shillings, and halfpence, I think, \nwere mentioned.\"\n\n\"It's twenty-four pound, sixteen, and sevenpence ha'penny,\" \nobserved the stranger.  \"That's wot it is.\"\n\n\"And it sounds--somehow it sounds,\" said Mr. Skimpole, \"like a \nsmall sum?\"\n\nThe strange man said nothing but made another snort.  It was such a \npowerful one that it seemed quite to lift him out of his seat.\n\n\"Mr. Skimpole,\" said Richard to me, \"has a delicacy in applying to \nmy cousin Jarndyce because he has lately--I think, sir, I \nunderstood you that you had lately--\"\n\n\"Oh, yes!\" returned Mr. Skimpole, smiling.  \"Though I forgot how \nmuch it was and when it was.  Jarndyce would readily do it again, \nbut I have the epicure-like feeling that I would prefer a novelty \nin help, that I would rather,\" and he looked at Richard and me, \n\"develop generosity in a new soil and in a new form of flower.\"\n\n\"What do you think will be best, Miss Summerson?\" said Richard, \naside.\n\nI ventured to inquire, generally, before replying, what would \nhappen if the money were not produced.\n\n\"Jail,\" said the strange man, coolly putting his handkerchief into \nhis hat, which was on the floor at his feet.  \"Or Coavinses.\"\n\n\"May I ask, sir, what is--\"\n\n\"Coavinses?\" said the strange man.  \"A 'ouse.\"\n\nRichard and I looked at one another again.  It was a most singular \nthing that the arrest was our embarrassment and not Mr. Skimpole's.  \nHe observed us with a genial interest, but there seemed, if I may \nventure on such a contradiction, nothing selfish in it.  He had \nentirely washed his hands of the difficulty, and it had become \nours.\n\n\"I thought,\" he suggested, as if good-naturedly to help us out, \n\"that being parties in a Chancery suit concerning (as people say) a \nlarge amount of property, Mr. Richard or his beautiful cousin, or \nboth, could sign something, or make over something, or give some \nsort of undertaking, or pledge, or bond?  I don't know what the \nbusiness name of it may be, but I suppose there is some instrument \nwithin their power that would settle this?\"\n\n\"Not a bit on it,\" said the strange man.\n\n\"Really?\" returned Mr. Skimpole.  \"That seems odd, now, to one who \nis no judge of these things!\"\n\n\"Odd or even,\" said the stranger gruffly, \"I tell you, not a bit on \nit!\"\n\n\"Keep your temper, my good fellow, keep your temper!\" Mr. Skimpole \ngently reasoned with him as he made a little drawing of his head on \nthe fly-leaf of a book.  \"Don't be ruffled by your occupation.  We \ncan separate you from your office; we can separate the individual \nfrom the pursuit.  We are not so prejudiced as to suppose that in \nprivate life you are otherwise than a very estimable man, with a \ngreat deal of poetry in your nature, of which you may not be \nconscious.\n\nThe stranger only answered with another violent snort, whether in \nacceptance of the poetry-tribute or in disdainful rejection of it, \nhe did not express to me.\n\n\"Now, my dear Miss Summerson, and my dear Mr. Richard,\" said Mr. \nSkimpole gaily, innocently, and confidingly as he looked at his \ndrawing with his head on one side, \"here you see me utterly \nincapable of helping myself, and entirely in your hands!  I only \nask to be free.  The butterflies are free.  Mankind will surely not \ndeny to Harold Skimpole what it concedes to the butterflies!\"\n\n\"My dear Miss Summerson,\" said Richard in a whisper, \"I have ten \npounds that I received from Mr. Kenge.  I must try what that will \ndo.\"\n\nI possessed fifteen pounds, odd shillings, which I had saved from \nmy quarterly allowance during several years.  I had always thought \nthat some accident might happen which would throw me suddenly, \nwithout any relation or any property, on the world and had always \ntried to keep some little money by me that I might not be quite \npenniless.  I told Richard of my having this little store and \nhaving no present need of it, and I asked him delicately to inform \nMr. Skimpole, while I should be gone to fetch it, that we would \nhave the pleasure of paying his debt.\n\nWhen I came back, Mr. Skimpole kissed my hand and seemed quite \ntouched.  Not on his own account (I was again aware of that \nperplexing and extraordinary contradiction), but on ours, as if \npersonal considerations were impossible with him and the \ncontemplation of our happiness alone affected him.  Richard, \nbegging me, for the greater grace of the transaction, as he said, \nto settle with Coavinses (as Mr. Skimpole now jocularly called \nhim), I counted out the money and received the necessary \nacknowledgment.  This, too, delighted Mr. Skimpole.\n\nHis compliments were so delicately administered that I blushed less \nthan I might have done and settled with the stranger in the white \ncoat without making any mistakes.  He put the money in his pocket \nand shortly said, \"Well, then, I'll wish you a good evening, miss.\n\n\"My friend,\" said Mr. Skimpole, standing with his back to the fire \nafter giving up the sketch when it was half finished, \"I should \nlike to ask you something, without offence.\"\n\nI think the reply was, \"Cut away, then!\"\n\n\"Did you know this morning, now, that you were coming out on this \nerrand?\" said Mr. Skimpole.\n\n\"Know'd it yes'day aft'noon at tea-time,\" said Coavinses.\n\n\"It didn't affect your appetite?  Didn't make you at all uneasy?\"\n\n\"Not a hit,\" said Coavinses.  \"I know'd if you wos missed to-day, \nyou wouldn't be missed to-morrow.  A day makes no such odds.\"\n\n\"But when you came down here,\" proceeded Mr. Skimpole, \"it was a \nfine day.  The sun was shining, the wind was blowing, the lights \nand shadows were passing across the fields, the birds were \nsinging.\"\n\n\"Nobody said they warn't, in MY hearing,\" returned Coavinses.\n\n\"No,\" observed Mr. Skimpole.  \"But what did you think upon the \nroad?\"\n\n\"Wot do you mean?\" growled Coavinses with an appearance of strong \nresentment.  \"Think!  I've got enough to do, and little enough to \nget for it without thinking.  Thinking!\" (with profound contempt).\n\n\"Then you didn't think, at all events,\" proceeded Mr. Skimpole, \"to \nthis effect: 'Harold Skimpole loves to see the sun shine, loves to \nhear the wind blow, loves to watch the changing lights and shadows, \nloves to hear the birds, those choristers in Nature's great \ncathedral.  And does it seem to me that I am about to deprive \nHarold Skimpole of his share in such possessions, which are his \nonly birthright!'  You thought nothing to that effect?\"\n\n\"I--certainly--did--NOT,\" said Coavinses, whose doggedness in \nutterly renouncing the idea was of that intense kind that he could \nonly give adequate expression to it by putting a long interval \nbetween each word, and accompanying the last with a jerk that might \nhave dislocated his neck.\n\n\"Very odd and very curious, the mental process is, in you men of \nbusiness!\" said Mr. Skimpole thoughtfully.  \"Thank you, my friend.  \nGood night.\"\n\nAs our absence had been long enough already to seem strange \ndownstairs, I returned at once and found Ada sitting at work by the \nfireside talking to her cousin John.  Mr. Skimpole presently \nappeared, and Richard shortly after him.  I was sufficiently \nengaged during the remainder of the evening in taking my first \nlesson in backgammon from Mr. Jarndyce, who was very fond of the \ngame and from whom I wished of course to learn it as quickly as I \ncould in order that I might be of the very small use of being able \nto play when he had no better adversary.  But I thought, \noccasionally, when Mr. Skimpole played some fragments of his own \ncompositions or when, both at the piano and the violoncello, and at \nour table, he preserved with an absence of all effort his \ndelightful spirits and his easy flow of conversation, that Richard \nand I seemed to retain the transferred impression of having been \narrested since dinner and that it was very curious altogether.\n\nIt was late before we separated, for when Ada was going at eleven \no'clock, Mr. Skimpole went to the piano and rattled hilariously \nthat the best of all ways to lengthen our days was to steal a few \nhours from night, my dear!  It was past twelve before he took his \ncandle and his radiant face out of the room, and I think he might \nhave kept us there, if he had seen fit, until daybreak.  Ada and \nRichard were lingering for a few moments by the fire, wondering \nwhether Mrs. Jellyby had yet finished her dictation for the day, \nwhen Mr. Jarndyce, who had been out of the room, returned.\n\n\"Oh, dear me, what's this, what's this!\" he said, rubbing his head \nand walking about with his good-humoured vexation.  \"What's this \nthey tell me?  Rick, my boy, Esther, my dear, what have you been \ndoing?  Why did you do it?  How could you do it?  How much apiece \nwas it?  The wind's round again.  I feel it all over me!\"\n\nWe neither of us quite knew what to answer.\n\n\"Come, Rick, come!  I must settle this before I sleep.  How much \nare you out of pocket?  You two made the money up, you know!  Why \ndid you?  How could you?  Oh, Lord, yes, it's due east--must be!\"\n\n\"Really, sir,\" said Richard, \"I don't think it would be honourable \nin me to tell you.  Mr. Skimpole relied upon us--\"\n\n\"Lord bless you, my dear boy!  He relies upon everybody!\" said Mr. \nJarndyce, giving his head a great rub and stopping short.\n\n\"Indeed, sir?\"\n\n\"Everybody!  And he'll be in the same scrape again next week!\" said \nMr. Jarndyce, walking again at a great pace, with a candle in his \nhand that had gone out.  \"He's always in the same scrape.  He was \nborn in the same scrape.  I verily believe that the announcement in \nthe newspapers when his mother was confined was 'On Tuesday last, \nat her residence in Botheration Buildings, Mrs. Skimpole of a son \nin difficulties.'\"\n\nRichard laughed heartily but added, \"Still, sir, I don't want to \nshake his confidence or to break his confidence, and if I submit to \nyour better knowledge again, that I ought to keep his secret, I \nhope you will consider before you press me any more.  Of course, if \nyou do press me, sir, I shall know I am wrong and will tell you.\"\n\n\"Well!\" cried Mr. Jarndyce, stopping again, and making several \nabsent endeavours to put his candlestick in his pocket.  \"I--here!  \nTake it away, my dear.  I don't know what I am about with it; it's \nall the wind--invariably has that effect--I won't press you, Rick; \nyou may be right.  But really--to get hold of you and Esther--and \nto squeeze you like a couple of tender young Saint Michael's \noranges!  It'll blow a gale in the course of the night!\"\n\nHe was now alternately putting his hands into his pockets as if he \nwere going to keep them there a long time, and taking them out \nagain and vehemently rubbing them all over his head.\n\nI ventured to take this opportunity of hinting that Mr. Skimpole, \nbeing in all such matters quite a child--\n\n\"Eh, my dear?\" said Mr. Jarndyce, catching at the word.\n\nBeing quite a child, sir,\" said I, \"and so different from other \npeople--\"\n\n\"You are right!\" said Mr. Jarndyce, brightening.  \"Your woman's wit \nhits the mark.  He is a child--an absolute child.  I told you he \nwas a child, you know, when I first mentioned him.\"\n\nCertainly! Certainly! we said.\n\n\"And he IS a child.  Now, isn't he?\" asked Mr. Jarndyce, \nbrightening more and more.\n\nHe was indeed, we said.\n\n\"When you come to think of it, it's the height of childishness in \nyou--I mean me--\" said Mr. Jarodyce, \"to regard him for a moment as \na man.  You can't make HIM responsible.  The idea of Harold \nSkimpole with designs or plans, or knowledge of consequences!  Ha, \nha, ha!\"\n\nIt was so delicious to see the clouds about his bright face \nclearing, and to see him so heartily pleased, and to know, as it \nwas impossible not to know, that the source of his pleasure was the \ngoodness which was tortured by condemning, or mistrusting, or \nsecretly accusing any one, that I saw the tears in Ada's eyes, \nwhile she echoed his laugh, and felt them in my own.\n\n\"Why, what a cod's head and shoulders I am,\" said Mr. Jarndyce, \"to \nrequire reminding of it!  The whole business shows the child from \nbeginning to end.  Nobody but a child would have thought of \nsingling YOU two out for parties in the affair!  Nobody but a child \nwould have thought of YOUR having the money!  If it had been a \nthousand pounds, it would have been just the same!\" said Mr. \nJarndyce with his whole face in a glow.\n\nWe all confirmed it from our night's experience.\n\n\"To be sure, to be sure!\" said Mr. Jarndyce.  \"However, Rick, \nEsther, and you too, Ada, for I don't know that even your little \npurse is safe from his inexperience--I must have a promise all \nround that nothing of this sort shall ever be done any more.  No \nadvances!  Not even sixpences.\"\n\nWe all promised faithfully, Richard with a merry glance at me \ntouching his pocket as if to remind me that there was no danger of \nOUR transgressing.\n\n\"As to Skimpole,\" said Mr. Jarndyce, \"a habitable doll's house with \ngood board and a few tin people to get into debt with and borrow \nmoney of would set the boy up in life.  He is in a child's sleep by \nthis time, I suppose; it's time I should take my craftier head to \nmy more worldly pillow.  Good night, my dears.  God bless you!\"\n\nHe peeped in again, with a smiling face, before we had lighted our \ncandles, and said, \"Oh! I have been looking at the weather-cock.  I \nfind it was a false alarm about the wind.  It's in the south!\" And \nwent away singing to himself.\n\nAda and I agreed, as we talked together for a little while \nupstairs, that this caprice about the wind was a fiction and that \nhe used the pretence to account for any disappointment he could not \nconceal, rather than he would blame the real cause of it or \ndisparage or depreciate any one.  We thought this very \ncharacteristic of his eccentric gentleness and of the difference \nbetween him and those petulant people who make the weather and the \nwinds (particularly that unlucky wind which he had chosen for such \na different purpose) the stalking-horses of their splenetic and \ngloomy humours.\n\nIndeed, so much affection for him had been added in this one \nevening to my gratitude that I hoped I already began to understand \nhim through that mingled feeling.  Any seeming inconsistencies in \nMr. Skimpole or in Mrs. Jellyby I could not expect to be able to \nreconcile, having so little experience or practical knowledge.  \nNeither did I try, for my thoughts were busy when I was alone, with \nAda and Richard and with the confidence I had seemed to receive \nconcerning them.  My fancy, made a little wild by the wind perhaps, \nwould not consent to be all unselfish, either, though I would have \npersuaded it to be so if I could.  It wandered back to my \ngodmother's house and came along the intervening track, raising up \nshadowy speculations which had sometimes trembled there in the dark \nas to what knowledge Mr. Jarndyce had of my earliest history--even \nas to the possibility of his being my father, though that idle \ndream was quite gone now.\n\nIt was all gone now, I remembered, getting up from the fire.  It was \nnot for me to muse over bygones, but to act with a cheerful spirit \nand a grateful heart.  So I said to myself, \"Esther, Esther, Esther!  \nDuty, my dear!\" and gave my little basket of housekeeping keys such \na shake that they sounded like little bells and rang me hopefully to \nbed.\n\n\n\nCHAPTER VII\n\nThe Ghost's Walk\n\n\nWhile Esther sleeps, and while Esther wakes, it is still wet weather \ndown at the place in Lincolnshire.  The rain is ever falling--drip, \ndrip, drip--by day and night upon the broad flagged terrace-\npavement, the Ghost's Walk.  The weather is so very bad down in \nLincolnshire that the liveliest imagination can scarcely apprehend \nits ever being fine again.  Not that there is any superabundant life \nof imagination on the spot, for Sir Leicester is not here (and, \ntruly, even if he were, would not do much for it in that \nparticular), but is in Paris with my Lady; and solitude, with dusky \nwings, sits brooding upon Chesney Wold.\n\nThere may be some motions of fancy among the lower animals at \nChesney Wold.  The horses in the stables--the long stables in a \nbarren, red-brick court-yard, where there is a great bell in a \nturret, and a clock with a large face, which the pigeons who live \nnear it and who love to perch upon its shoulders seem to be always \nconsulting--THEY may contemplate some mental pictures of fine \nweather on occasions, and may be better artists at them than the \ngrooms.  The old roan, so famous for cross-country work, turning his \nlarge eyeball to the grated window near his rack, may remember the \nfresh leaves that glisten there at other times and the scents that \nstream in, and may have a fine run with the hounds, while the human \nhelper, clearing out the next stall, never stirs beyond his \npitchfork and birch-broom.  The grey, whose place is opposite the \ndoor and who with an impatient rattle of his halter pricks his ears \nand turns his head so wistfully when it is opened, and to whom the \nopener says, \"'Woa grey, then, steady!  Noabody wants you to-day!\" \nmay know it quite as well as the man.  The whole seemingly \nmonotonous and uncompanionable half-dozen, stabled together, may \npass the long wet hours when the door is shut in livelier \ncommunication than is held in the servants' hall or at the Dedlock \nArms, or may even beguile the time by improving (perhaps corrupting) \nthe pony in the loose-box in the corner.\n\nSo the mastiff, dozing in his kennel in the court-yard with his \nlarge head on his paws, may think of the hot sunshine when the \nshadows of the stable-buildings tire his patience out by changing \nand leave him at one time of the day no broader refuge than the \nshadow of his own house, where he sits on end, panting and growling \nshort, and very much wanting something to worry besides himself and \nhis chain.  So now, half-waking and all-winking, he may recall the \nhouse full of company, the coach-houses full of vehicles, the \nstables fall of horses, and the out-buildings full of attendants \nupon horses, until he is undecided about the present and comes forth \nto see how it is.  Then, with that impatient shake of himself, he \nmay growl in the spirit, \"Rain, rain, rain!  Nothing but rain--and \nno family here!\" as he goes in again and lies down with a gloomy \nyawn.\n\nSo with the dogs in the kennel-buildings across the park, who have \ntheir resfless fits and whose doleful voices when the wind has been \nvery obstinate have even made it known in the house itself--\nupstairs, downstairs, and in my Lady's chamber.  They may hunt the \nwhole country-side, while the raindrops are pattering round their \ninactivity.  So the rabbits with their self-betraying tails, \nfrisking in and out of holes at roots of trees, may be lively with \nideas of the breezy days when their ears are blown about or of those \nseasons of interest when there are sweet young plants to gnaw.  The \nturkey in the poultry-yard, always troubled with a class-grievance \n(probably Christmas), may be reminiscent of that summer morning \nwrongfully taken from him when he got into the lane among the felled \ntrees, where there was a barn and barley.  The discontented goose, \nwho stoops to pass under the old gateway, twenty feet high, may \ngabble out, if we only knew it, a waddling preference for weather \nwhen the gateway casts its shadow on the ground.\n\nBe this as it may, there is not much fancy otherwise stirring at \nChesney Wold.  If there be a little at any odd moment, it goes, \nlike a little noise in that old echoing place, a long way and \nusually leads off to ghosts and mystery.\n\nIt has rained so hard and rained so long down in Lincolnshire that \nMrs. Rouncewell, the old housekeeper at Chesney Wold, has several \ntimes taken off her spectacles and cleaned them to make certain \nthat the drops were not upon the glasses.  Mrs. Rouncewell might \nhave been sufficiently assured by hearing the rain, but that she is \nrather deaf, which nothing will induce her to believe.  She is a \nfine old lady, handsome, stately, wonderfully neat, and has such a \nback and such a stomacher that if her stays should turn out when \nshe dies to have been a broad old-fashioned family fire-grate, \nnobody who knows her would have cause to be surprised.  Weather \naffects Mrs. Rouncewell little.  The house is there in all \nweathers, and the house, as she expresses it, \"is what she looks \nat.\"  She sits in her room (in a side passage on the ground floor, \nwith an arched window commanding a smooth quadrangle, adorned at \nregular intervals with smooth round trees and smooth round blocks \nof stone, as if the trees were going to play at bowls with the \nstones), and the whole house reposes on her mind.  She can open it \non occasion and be busy and fluttered, but it is shut up now and \nlies on the breadth of Mrs. Rouncewell's iron-bound bosom in a \nmajestic sleep.\n\nIt is the next difficult thing to an impossibility to imagine \nChesney Wold without Mrs. Rouncewell, but she has only been here \nfifty years.  Ask her how long, this rainy day, and she shall \nanswer \"fifty year, three months, and a fortnight, by the blessing \nof heaven, if I live till Tuesday.\"  Mr. Rouncewell died some time \nbefore the decease of the pretty fashion of pig-tails, and modestly \nhid his own (if he took it with him) in a corner of the churchyard \nin the park near the mouldy porch.  He was born in the market-town, \nand so was his young widow.  Her progress in the family began in \nthe time of the last Sir Leicester and originated in the still-room.\n\nThe present representative of the Dedlocks is an excellent master.  \nHe supposes all his dependents to be utterly bereft of individual \ncharacters, intentions, or opinions, and is persuaded that he was \nborn to supersede the necessity of their having any.  If he were to \nmake a discovery to the contrary, he would be simply stunned--would \nnever recover himself, most likely, except to gasp and die.  But he \nis an excellent master still, holding it a part of his state to be \nso.  He has a great liking for Mrs. Rouncewell; he says she is a \nmost respectable, creditable woman.  He always shakes hands with \nher when he comes down to Chesney Wold and when he goes away; and \nif he were very ill, or if he were knocked down by accident, or run \nover, or placed in any situation expressive of a Dedlock at a \ndisadvantage, he would say if he could speak, \"Leave me, and send \nMrs. Rouncewell here!\" feeling his dignity, at such a pass, safer \nwith her than with anybody else.\n\nMrs. Rouncewell has known trouble.  She has had two sons, of whom \nthe younger ran wild, and went for a soldier, and never came back.  \nEven to this hour, Mrs. Rouncewell's calm hands lose their \ncomposure when she speaks of him, and unfolding themselves from her \nstomacher, hover about her in an agitated manner as she says what a \nlikely lad, what a fine lad, what a gay, good-humoured, clever lad \nhe was!  Her second son would have been provided for at Chesney \nWold and would have been made steward in due season, but he took, \nwhen he was a schoolboy, to constructing steam-engines out of \nsaucepans and setting birds to draw their own water with the least \npossible amount of labour, so assisting them with artful \ncontrivance of hydraulic pressure that a thirsty canary had only, \nin a literal sense, to put his shoulder to the wheel and the job \nwas done.  This propensity gave Mrs. Rouncewell great uneasiness.  \nShe felt it with a mother's anguish to be a move in the Wat Tyler \ndirection, well knowing that Sir Leicester had that general \nimpression of an aptitude for any art to which smoke and a tall \nchimney might be considered essential.  But the doomed young rebel \n(otherwise a mild youth, and very persevering), showing no sign of \ngrace as he got older but, on the contrary, constructing a model of \na power-loom, she was fain, with many tears, to mention his \nbackslidings to the baronet.  \"Mrs. Rouncewell,\" said Sir \nLeicester, \"I can never consent to argue, as you know, with any one \non any subject.  You had better get rid of your boy; you had better \nget him into some Works.  The iron country farther north is, I \nsuppose, the congenial direction for a boy with these tendencies.\"  \nFarther north he went, and farther north he grew up; and if Sir \nLeicester Dedlock ever saw him when he came to Chesney Wold to \nvisit his mother, or ever thought of him afterwards, it is certain \nthat he only regarded him as one of a body of some odd thousand \nconspirators, swarthy and grim, who were in the habit of turning \nout by torchlight two or three nights in the week for unlawful \npurposes.\n\nNevertheless, Mrs. Rouncewell's son has, in the course of nature \nand art, grown up, and established himself, and married, and called \nunto him Mrs. Rouncewell's grandson, who, being out of his \napprenticeship, and home from a journey in far countries, whither \nhe was sent to enlarge his knowledge and complete his preparations \nfor the venture of this life, stands leaning against the chimney-\npiece this very day in Mrs. Rouncewell's room at Chesney Wold.\n\n\"And, again and again, I am glad to see you, Watt!  And, once \nagain, I am glad to see you, Watt!\" says Mrs. Rouncewell.  \"You are \na fine young fellow.  You are like your poor uncle George.  Ah!\"  \nMrs. Rouncewell's hands unquiet, as usual, on this reference.\n\n\"They say I am like my father, grandmother.\"\n\n\"Like him, also, my dear--but most like your poor uncle George!  \nAnd your dear father.\"  Mrs. Rouncewell folds her hands again.  \"He \nis well?\"\n\n\"Thriving, grandmother, in every way.\"\n\n\"I am thankful!\"  Mrs. Rouncewell is fond of her son but has a \nplaintive feeling towards him, much as if he were a very honourable \nsoldier who had gone over to the enemy.\n\n\"He is quite happy?\" says she.\n\n\"Quite.\"\n\n\"I am thankful!  So he has brought you up to follow in his ways and \nhas sent you into foreign countries and the like?  Well, he knows \nbest.  There may be a world beyond Chesney Wold that I don't \nunderstand.  Though I am not young, either.  And I have seen a \nquantity of good company too!\"\n\n\"Grandmother,\" says the young man, changing the subject, \"what a \nvery pretty girl that was I found with you just now.  You called \nher Rosa?\"\n\n\"Yes, child.  She is daughter of a widow in the village.  Maids are \nso hard to teach, now-a-days, that I have put her about me young.  \nShe's an apt scholar and will do well.  She shows the house \nalready, very pretty.  She lives with me at my table here.\"\n\n\"I hope I have not driven her away?\"\n\n\"She supposes we have family affairs to speak about, I dare say.  \nShe is very modest.  It is a fine quality in a young woman.  And \nscarcer,\" says Mrs. Rouncewell, expanding her stomacher to its \nutmost limits, \"than it formerly was!\"\n\nThe young man inclines his head in acknowledgment of the precepts \nof experience.  Mrs. Rouncewell listens.\n\n\"Wheels!\" says she.  They have long been audible to the younger \nears of her companion.  \"What wheels on such a day as this, for \ngracious sake?\"\n\nAfter a short interval, a tap at the door.  \"Come in!\"  A dark-\neyed, dark-haired, shy, village beauty comes in--so fresh in her \nrosy and yet delicate bloom that the drops of rain which have \nbeaten on her hair look like the dew upon a flower fresh gathered.\n\n\"What company is this, Rosa?\" says Mrs. Rouncewell.\n\n\"It's two young men in a gig, ma'am, who want to see the house--\nyes, and if you please, I told them so!\" in quick reply to a \ngesture of dissent from the housekeeper.  \"I went to the hall-door \nand told them it was the wrong day and the wrong hour, but the \nyoung man who was driving took off his hat in the wet and begged me \nto bring this card to you.\"\n\n\"Read it, my dear Watt,\" says the housekeeper.\n\nRosa is so shy as she gives it to him that they drop it between \nthem and almost knock their foreheads together as they pick it up.  \nRosa is shyer than before.\n\n\"Mr. Guppy\" is all the information the card yields.\n\n\"Guppy!\" repeats Mrs. Rouncewell, \"MR. Guppy!  Nonsense, I never \nheard of him!\"\n\n\"If you please, he told ME that!\" says Rosa.  \"But he said that he \nand the other young gentleman came from London only last night by \nthe mail, on business at the magistrates' meeting, ten miles off, \nthis morning, and that as their business was soon over, and they \nhad heard a great deal said of Chesney Wold, and really didn't know \nwhat to do with themselves, they had come through the wet to see \nit.  They are lawyers.  He says he is not in Mr. Tulkinghorn's \noffice, but he is sure he may make use of Mr. Tulkinghorn's name if \nnecessary.\"  Finding, now she leaves off, that she has been making \nquite a long speech, Rosa is shyer than ever.\n\nNow, Mr. Tulkinghorn is, in a manner, part and parcel of the place, \nand besides, is supposed to have made Mrs. Rouncewell's will.  The \nold lady relaxes, consents to the admission of the visitors as a \nfavour, and dismisses Rosa.  The grandson, however, being smitten \nby a sudden wish to see the house himself, proposes to join the \nparty.  The grandmother, who is pleased that he should have that \ninterest, accompanies him--though to do him justice, he is \nexceedingly unwilling to trouble her.\n\n\"Much obliged to you, ma'am!\" says Mr. Guppy, divesting himself of \nhis wet dreadnought in the hall.  \"Us London lawyers don't often \nget an out, and when we do, we like to make the most of it, you \nknow.\"\n\nThe old housekeeper, with a gracious severity of deportment, waves \nher hand towards the great staircase.  Mr. Guppy and his friend \nfollow Rosa; Mrs. Rouncewell and her grandson follow them; a young \ngardener goes before to open the shutters.\n\nAs is usually the case with people who go over houses, Mr. Guppy \nand his friend are dead beat before they have well begun.  They \nstraggle about in wrong places, look at wrong things, don't care \nfor the right things, gape when more rooms are opened, exhibit \nprofound depression of spirits, and are clearly knocked up.  In \neach successive chamber that they enter, Mrs. Rouncewell, who is as \nupright as the house itself, rests apart in a window-seat or other \nsuch nook and listens with stately approval to Rosa's exposition.  \nHer grandson is so attentive to it that Rosa is shyer than ever--\nand prettier.  Thus they pass on from room to room, raising the \npictured Dedlocks for a few brief minutes as the young gardener \nadmits the light, and reconsigning them to their graves as he shuts \nit out again.  It appears to the afflicted Mr. Guppy and his \ninconsolable friend that there is no end to the Dedlocks, whose \nfamily greatness seems to consist in their never having done \nanything to distinguish themselves for seven hundred years.\n\nEven the long drawing-room of Chesney Wold cannot revive Mr. \nGuppy's spirits.  He is so low that he droops on the threshold and \nhas hardly strength of mind to enter.  But a portrait over the \nchimney-piece, painted by the fashionable artist of the day, acts \nupon him like a charm.  He recovers in a moment.  He stares at it \nwith uncommon interest; he seems to be fixed and fascinated by it.\n\n\"Dear me!\" says Mr. Guppy.  \"Who's that?\"\n\n\"The picture over the fire-place,\" says Rosa, \"is the portrait of \nthe present Lady Dedlock.  It is considered a perfect likeness, and \nthe best work of the master.\"\n\n\"'Blest,\" says Mr. Guppy, staring in a kind of dismay at his \nfriend, \"if I can ever have seen her.  Yet I know her!  Has the \npicture been engraved, miss?\"\n\n\"The picture has never been engraved.  Sir Leicester has always \nrefused permission.\"\n\n\"Well!\" says Mr. Guppy in a low voice.  \"I'll be shot if it ain't \nvery curious how well I know that picture!  So that's Lady Dedlock, \nis it!\"\n\n\"The picture on the right is the present Sir Leicester Dedlock.  \nThe picture on the left is his father, the late Sir Leicester.\"\n\nMr. Guppy has no eyes for either of these magnates.  \"It's \nunaccountable to me,\" he says, still staring at the portrait, \"how \nwell I know that picture!  I'm dashed,\" adds Mr. Guppy, looking \nround, \"if I don't think I must have had a dream of that picture, \nyou know!\"\n\nAs no one present takes any especial interest in Mr. Guppy's \ndreams, the probability is not pursued.  But he still remains so \nabsorbed by the portrait that he stands immovable before it until \nthe young gardener has closed the shutters, when he comes out of \nthe room in a dazed state that is an odd though a sufficient \nsubstitute for interest and follows into the succeeding rooms with \na confused stare, as if he were looking everywhere for Lady Dedlock \nagain.\n\nHe sees no more of her.  He sees her rooms, which are the last \nshown, as being very elegant, and he looks out of the windows from \nwhich she looked out, not long ago, upon the weather that bored her \nto death.  All things have an end, even houses that people take \ninfinite pains to see and are tired of before they begin to see \nthem.  He has come to the end of the sight, and the fresh village \nbeauty to the end of her description; which is always this: \"The \nterrace below is much admired.  It is called, from an old story in \nthe family, the Ghost's Walk.\"\n\n\"No?\" says Mr. Guppy, greedily curious.  \"What's the story, miss?  \nIs it anything about a picture?\"\n\n\"Pray tell us the story,\" says Watt in a half whisper.\n\n\"I don't know it, sir.\"  Rosa is shyer than ever.\n\n\"It is not related to visitors; it is almost forgotten,\" says the \nhousekeeper, advancing.  \"It has never been more than a family \nanecdote.\"\n\n\"You'll excuse my asking again if it has anything to do with a \npicture, ma'am,\" observes Mr. Guppy, \"because I do assure you that \nthe more I think of that picture the better I know it, without \nknowing how I know it!\"\n\nThe story has nothing to do with a picture; the housekeeper can \nguarantee that.  Mr. Guppy is obliged to her for the information \nand is, moreover, generally obliged.  He retires with his friend, \nguided down another staircase by the young gardener, and presently \nis heard to drive away.  It is now dusk.  Mrs. Rouncewell can trust \nto the discretion of her two young hearers and may tell THEM how \nthe terrace came to have that ghostly name.\n\nShe seats herself in a large chair by the fast-darkening window and \ntells them: \"In the wicked days, my dears, of King Charles the \nFirst--I mean, of course, in the wicked days of the rebels who \nleagued themselves against that excellent king--Sir Morbury Dedlock \nwas the owner of Chesney Wold.  Whether there was any account of a \nghost in the family before those days, I can't say.  I should think \nit very likely indeed.\"\n\nMrs. Rouncewell holds this opinion because she considers that a \nfamily of such antiquity and importance has a right to a ghost.  \nShe regards a ghost as one of the privileges of the upper classes, \na genteel distinction to which the common people have no claim.\n\n\"Sir Morbury Dedlock,\" says Mrs. Rouncewell, \"was, I have no \noccasion to say, on the side of the blessed martyr.  But it IS \nsupposed that his Lady, who had none of the family blood in her \nveins, favoured the bad cause.  It is said that she had relations \namong King Charles's enemies, that she was in correspondence with \nthem, and that she gave them information.  When any of the country \ngentlemen who followed his Majesty's cause met here, it is said \nthat my Lady was always nearer to the door of their council-room \nthan they supposed.  Do you hear a sound like a footstep passing \nalong the terrace, Watt?\"\n\nRosa draws nearer to the housekeeper.\n\n\"I hear the rain-drip on the stones,\" replies the young man, \"and I \nhear a curious echo--I suppose an echo--which is very like a \nhalting step.\"\n\nThe housekeeper gravely nods and continues: \"Partly on account of \nthis division between them, and partly on other accounts, Sir \nMorbury and his Lady led a troubled life.  She was a lady of a \nhaughty temper.  They were not well suited to each other in age or \ncharacter, and they had no children to moderate between them.  \nAfter her favourite brother, a young gentleman, was killed in the \ncivil wars (by Sir Morbury's near kinsman), her feeling was so \nviolent that she hated the race into which she had married.  When \nthe Dedlocks were about to ride out from Chesney Wold in the king's \ncause, she is supposed to have more than once stolen down into the \nstables in the dead of night and lamed their horses; and the story \nis that once at such an hour, her husband saw her gliding down the \nstairs and followed her into the stall where his own favourite \nhorse stood.  There he seized her by the wrist, and in a struggle \nor in a fall or through the horse being frightened and lashing out, \nshe was lamed in the hip and from that hour began to pine away.\"\n\nThe housekeeper has dropped her voice to a little more than a \nwhisper.\n\n\"She had been a lady of a handsome figure and a noble carriage.  \nShe never complained of the change; she never spoke to any one of \nbeing crippled or of being in pain, but day by day she tried to \nwalk upon the terrace, and with the help of the stone balustrade, \nwent up and down, up and down, up and down, in sun and shadow, with \ngreater difficulty every day.  At last, one afternoon her husband \n(to whom she had never, on any persuasion, opened her lips since \nthat night), standing at the great south window, saw her drop upon \nthe pavement.  He hastened down to raise her, but she repulsed him \nas he bent over her, and looking at him fixedly and coldly, said, \n'I will die here where I have walked.  And I will walk here, though \nI am in my grave.  I will walk here until the pride of this house \nis humbled.  And when calamity or when disgrace is coming to it, \nlet the Dedlocks listen for my step!'\n\nWatt looks at Rosa.  Rosa in the deepening gloom looks down upon \nthe ground, half frightened and half shy.\n\n\"There and then she died.  And from those days,\" says Mrs. \nRouncewell, \"the name has come down--the Ghost's Walk.  If the \ntread is an echo, it is an echo that is only heard after dark, and \nis often unheard for a long while together.  But it comes back from \ntime to time; and so sure as there is sickness or death in the \nfamily, it will be heard then.\"\n\n\"And disgrace, grandmother--\" says Watt.\n\n\"Disgrace never comes to Chesney Wold,\" returns the housekeeper.\n\nHer grandson apologizes with \"True.  True.\"\n\n\"That is the story.  Whatever the sound is, it is a worrying \nsound,\" says Mrs. Rouncewell, getting up from her chair; \"and what \nis to be noticed in it is that it MUST BE HEARD.  My Lady, who is \nafraid of nothing, admits that when it is there, it must be heard.  \nYou cannot shut it out.  Watt, there is a tall French clock behind \nyou (placed there, 'a purpose) that has a loud beat when it is in \nmotion and can play music.  You understand how those things are \nmanaged?\"\n\n\"Pretty well, grandmother, I think.\"\n\n\"Set it a-going.\"\n\nWatt sets it a-going--music and all.\n\n\"Now, come hither,\" says the housekeeper.  \"Hither, child, towards \nmy Lady's pillow.  I am not sure that it is dark enough yet, but \nlisten!  Can you hear the sound upon the terrace, through the \nmusic, and the beat, and everything?\"\n\n\"I certainly can!\"\n\n\"So my Lady says.\"\n\n\n\nCHAPTER VIII\n\nCovering a Multitude of Sins\n\n\nIt was interesting when I dressed before daylight to peep out of \nwindow, where my candles were reflected in the black panes like two \nbeacons, and finding all beyond still enshrouded in the \nindistinctness of last night, to watch how it turned out when the \nday came on.  As the prospect gradually revealed itself and \ndisclosed the scene over which the wind had wandered in the dark, \nlike my memory over my life, I had a pleasure in discovering the \nunknown objects that had been around me in my sleep.  At first they \nwere faintly discernible in the mist, and above them the later \nstars still glimmered.  That pale interval over, the picture began \nto enlarge and fill up so fast that at every new peep I could have \nfound enough to look at for an hour.  Imperceptibly my candles \nbecame the only incongruous part of the morning, the dark places in \nmy room all melted away, and the day shone bright upon a cheerful \nlandscape, prominent in which the old Abbey Church, with its \nmassive tower, threw a softer train of shadow on the view than \nseemed compatible with its rugged character.  But so from rough \noutsides (I hope I have learnt), serene and gentle influences often \nproceed.\n\nEvery part of the house was in such order, and every one was so \nattentive to me, that I had no trouble with my two bunches of keys, \nthough what with trying to remember the contents of each little \nstore-room drawer and cupboard; and what with making notes on a \nslate about jams, and pickles, and preserves, and bottles, and \nglass, and china, and a great many other things; and what with \nbeing generally a methodical, old-maidish sort of foolish little \nperson, I was so busy that I could not believe it was breakfast-\ntime when I heard the bell ring.  Away I ran, however, and made \ntea, as I had already been installed into the responsibility of the \ntea-pot; and then, as they were all rather late and nobody was down \nyet, I thought I would take a peep at the garden and get some \nknowledge of that too.  I found it quite a delightful place--in \nfront, the pretty avenue and drive by which we had approached (and \nwhere, by the by, we had cut up the gravel so terribly with our \nwheels that I asked the gardener to roll it); at the back, the \nflower-garden, with my darling at her window up there, throwing it \nopen to smile out at me, as if she would have kissed me from that \ndistance.  Beyond the flower-garden was a kitchen-garden, and then \na paddock, and then a snug little rick-yard, and then a dear little \nfarm-yard.  As to the house itself, with its three peaks in the \nroof; its various-shaped windows, some so large, some so small, and \nall so pretty; its trellis-work, against the southfront for roses \nand honey-suckle, and its homely, comfortable, welcoming look--it \nwas, as Ada said when she came out to meet me with her arm through \nthat of its master, worthy of her cousin John, a bold thing to say, \nthough he only pinched her dear cheek for it.\n\nMr. Skimpole was as agreeable at breakfast as he had been \novernight.  There was honey on the table, and it led him into a \ndiscourse about bees.  He had no objection to honey, he said (and I \nshould think he had not, for he seemed to like it), but he \nprotested against the overweening assumptions of bees.  He didn't \nat all see why the busy bee should be proposed as a model to him; \nhe supposed the bee liked to make honey, or he wouldn't do it--\nnobody asked him.  It was not necessary for the bee to make such a \nmerit of his tastes.  If every confectioner went buzzing about the \nworld banging against everything that came in his way and \negotistically calling upon everybody to take notice that he was \ngoing to his work and must not be interrupted, the world would be \nquite an unsupportable place.  Then, after all, it was a ridiculous \nposition to be smoked out of your fortune with brimstone as soon as \nyou had made it.  You would have a very mean opinion of a \nManchester man if he spun cotton for no other purpose.  He must say \nhe thought a drone the embodiment of a pleasanter and wiser idea.  \nThe drone said unaffectedly, \"You will excuse me; I really cannot \nattend to the shop!  I find myself in a world in which there is so \nmuch to see and so short a time to see it in that I must take the \nliberty of looking about me and begging to be provided for by \nsomebody who doesn't want to look about him.\"  This appeared to Mr. \nSkimpole to be the drone philosophy, and he thought it a very good \nphilosophy, always supposing the drone to be willing to be on good \nterms with the bee, which, so far as he knew, the easy fellow \nalways was, if the consequential creature would only let him, and \nnot be so conceited about his honey!\n\nHe pursued this fancy with the lightest foot over a variety of \nground and made us all merry, though again he seemed to have as \nserious a meaning in what he said as he was capable of having.  I \nleft them still listening to him when I withdrew to attend to my \nnew duties.  They had occupied me for some time, and I was passing \nthrough the passages on my return with my basket of keys on my arm \nwhen Mr. Jarndyce called me into a small room next his bed-chamber, \nwhich I found to be in part a little library of books and papers \nand in part quite a little museum of his boots and shoes and hat-\nboxes.\n\n\"Sit down, my dear,\" said Mr. Jarndyce.  \"This, you must know, is \nthe growlery.  When I am out of humour, I come and growl here.\"\n\n\"You must be here very seldom, sir,\" said I.\n\n\"Oh, you don't know me!\" he returned.  \"When I am deceived or \ndisappointed in--the wind, and it's easterly, I take refuge here.  \nThe growlery is the best-used room in the house.  You are not aware \nof half my humours yet.  My dear, how you are trembling!\"\n\nI could not help it; I tried very hard, but being alone with that \nbenevolent presence, and meeting his kind eyes, and feeling so \nhappy and so honoured there, and my heart so full--\n\nI kissed his hand.  I don't know what I said, or even that I spoke.  \nHe was disconcerted and walked to the window; I almost believed \nwith an intention of jumping out, until he turned and I was \nreassured by seeing in his eyes what he had gone there to hide.  He \ngently patted me on the head, and I sat down.\n\n\"There!  There!\" he said.  \"That's over.  Pooh!  Don't be foolish.\"\n\n\"It shall not happen again, sir,\" I returned, \"but at first it is \ndifficult--\"\n\n\"Nonsense!\" he said.  \"It's easy, easy.  Why not?  I hear of a good \nlittle orphan girl without a protector, and I take it into my head \nto be that protector.  She grows up, and more than justifies my \ngood opinion, and I remain her guardian and her friend.  What is \nthere in all this?  So, so!  Now, we have cleared off old scores, \nand I have before me thy pleasant, trusting, trusty face again.\"\n\nI said to myself, \"Esther, my dear, you surprise me!  This really \nis not what I expected of you!\"  And it had such a good effect that \nI folded my hands upon my basket and quite recovered myself.  Mr. \nJarndyce, expressing his approval in his face, began to talk to me \nas confidentially as if I had been in the habit of conversing with \nhim every morning for I don't know how long.  I almost felt as if I \nhad.\n\n\"Of course, Esther,\" he said, \"you don't understand this Chancery \nbusiness?\"\n\nAnd of course I shook my head.\n\n\"I don't know who does,\" he returned.  \"The lawyers have twisted it \ninto such a state of bedevilment that the original merits of the \ncase have long disappeared from the face of the earth.  It's about \na will and the trusts under a will--or it was once.  It's about \nnothing but costs now.  We are always appearing, and disappearing, \nand swearing, and interrogating, and filing, and cross-filing, and \narguing, and sealing, and motioning, and referring, and reporting, \nand revolving about the Lord Chancellor and all his satellites, and \nequitably waltzing ourselves off to dusty death, about costs.  \nThat's the great question.  All the rest, by some extraordinary \nmeans, has melted away.\"\n\n\"But it was, sir,\" said I, to bring him back, for he began to rub \nhis head, \"about a will?\"\n\n\"Why, yes, it was about a will when it was about anything,\" he \nreturned.   \"A certain Jarndyce, in an evil hour, made a great \nfortune, and made a great will.  In the question how the trusts \nunder that will are to be administered, the fortune left by the \nwill is squandered away; the legatees under the will are reduced to \nsuch a miserable condition that they would be sufficiently punished \nif they had committed an enormous crime in having money left them, \nand the will itself is made a dead letter.  All through the \ndeplorable cause, everything that everybody in it, except one man, \nknows already is referred to that only one man who don't know it to \nfind out--all through the deplorable cause, everybody must have \ncopies, over and over again, of everything that has accumulated \nabout it in the way of cartloads of papers (or must pay for them \nwithout having them, which is the usual course, for nobody wants \nthem) and must go down the middle and up again through such an \ninfernal country-dance of costs and fees and nonsense and \ncorruption as was never dreamed of in the wildest visions of a \nwitch's Sabbath.  Equity sends questions to law, law sends \nquestions back to equity; law finds it can't do this, equity finds \nit can't do that; neither can so much as say it can't do anything, \nwithout this solicitor instructing and this counsel appearing for \nA, and that solicitor instructing and that counsel appearing for B; \nand so on through the whole alphabet, like the history of the apple \npie.  And thus, through years and years, and lives and lives, \neverything goes on, constantly beginning over and over again, and \nnothing ever ends.  And we can't get out of the suit on any terms, \nfor we are made parties to it, and MUST BE parties to it, whether \nwe like it or not.  But it won't do to think of it!  When my great \nuncle, poor Tom Jarndyce, began to think of it, it was the \nbeginning of the end!\"\n\n\"The Mr. Jarndyce, sir, whose story I have heard?\"\n\nHe nodded gravely.  \"I was his heir, and this was his house, \nEsther.  When I came here, it was bleak indeed.  He had left the \nsigns of his misery upon it.\"\n\n\"How changed it must be now!\" I said.\n\n\"It had been called, before his time, the Peaks.  He gave it its \npresent name and lived here shut up, day and night poring over the \nwicked heaps of papers in the suit and hoping against hope to \ndisentangle it from its mystification and bring it to a close.  In \nthe meantime, the place became dilapidated, the wind whistled \nthrough the cracked walls, the rain fell through the broken roof, \nthe weeds choked the passage to the rotting door.  When I brought \nwhat remained of him home here, the brains seemed to me to have \nbeen blown out of the house too, it was so shattered and ruined.\"\n\nHe walked a little to and fro after saying this to himself with a \nshudder, and then looked at me, and brightened, and came and sat \ndown again with his hands in his pockets.\n\n\"I told you this was the growlery, my dear.  Where was I?\"\n\nI reminded him, at the hopeful change he had made in Bleak House.\n\n\"Bleak House; true.  There is, in that city of London there, some \nproperty of ours which is much at this day what Bleak House was \nthen; I say property of ours, meaning of the suit's, but I ought to \ncall it the property of costs, for costs is the only power on earth \nthat will ever get anything out of it now or will ever know it for \nanything but an eyesore and a heartsore.  It is a street of \nperishing blind houses, with their eyes stoned out, without a pane \nof glass, without so much as a window-frame, with the bare blank \nshutters tumbling from their hinges and falling asunder, the iron \nrails peeling away in flakes of rust, the chimneys sinking in, the \nstone steps to every door (and every door might be death's door) \nturning stagnant green, the very crutches on which the ruins are \npropped decaying.  Although Bleak House was not in Chancery, its \nmaster was, and it was stamped with the same seal.  These are the \nGreat Seal's impressions, my dear, all over England--the children \nknow them!\"\n\n\"How changed it is!\" I said again.\n\n\"Why, so it is,\" he answered much more cheerfully; \"and it is \nwisdom in you to keep me to the bright side of the picture.\"  (The \nidea of my wisdom!)  \"These are things I never talk about or even \nthink about, excepting in the growlery here.  If you consider it \nright to mention them to Rick and Ada,\" looking seriously at me, \n\"you can.  I leave it to your discretion, Esther.\"\n\n\"I hope, sir--\" said I.\n\n\"I think you had better call me guardian, my dear.\"\n\nI felt that I was choking again--I taxed myself with it, \"Esther, \nnow, you know you are!\"--when he feigned to say this slightly, as \nif it were a whim instead of a thoughtful tenderness.  But I gave \nthe housekeeping keys the least shake in the world as a reminder to \nmyself, and folding my hands in a still more determined manner on \nthe basket, looked at him quietly.\n\n\"I hope, guardian,\" said I, \"that you may not trust too much to my \ndiscretion.  I hope you may not mistake me.  I am afraid it will be \na disappointment to you to know that I am not clever, but it really \nis the truth, and you would soon find it out if I had not the \nhonesty to confess it.\"\n\nHe did not seem at all disappointed; quite the contrary.  He told \nme, with a smile all over his face, that he knew me very well \nindeed and that I was quite clever enough for him.\n\n\"I hope I may turn out so,\" said I, \"but I am much afraid of it, \nguardian.\"\n\n\"You are clever enough to be the good little woman of our lives \nhere, my dear,\" he returned playfully; \"the little old woman of the \nchild's (I don't mean Skimpole's) rhyme:\n\n\n     'Little old woman, and whither so high?'\n     'To sweep the cobwebs out of the sky.'\n\n\nYou will sweep them so neatly out of OUR sky in the course of your \nhousekeeping, Esther, that one of these days we shall have to \nabandon the growlery and nail up the door.\"\n\nThis was the beginning of my being called Old Woman, and Little Old \nWoman, and Cobweb, and Mrs. Shipton, and Mother Hubbard, and Dame \nDurden, and so many names of that sort that my own name soon became \nquite lost among them.\n\n\"However,\" said Mr. Jarndyce, \"to return to our gossip.  Here's \nRick, a fine young fellow full of promise.  What's to be done with \nhim?\"\n\nOh, my goodness, the idea of asking my advice on such a point!\n\n\"Here he is, Esther,\" said Mr. Jarndyce, comfortably putting his \nhands into his pockets and stretching out his legs.  \"He must have \na profession; he must make some choice for himself.  There will be \na world more wiglomeration about it, I suppose, but it must be \ndone.\"\n\n\"More what, guardian?\" said I.\n\n\"More wiglomeration,\" said he.  \"It's the only name I know for the \nthing.  He is a ward in Chancery, my dear.  Kenge and Carboy will \nhave something to say about it; Master Somebody--a sort of \nridiculous sexton, digging graves for the merits of causes in a \nback room at the end of Quality Court, Chancery Lane--will have \nsomething to say about it; counsel will have something to say about \nit; the Chancellor will have something to say about it; the \nsatellites will have something to say about it; they will all have \nto be handsomely feed, all round, about it; the whole thing will be \nvastly ceremonious, wordy, unsatisfactory, and expensive, and I \ncall it, in general, wiglomeration.  How mankind ever came to be \nafflicted with wiglomeration, or for whose sins these young people \never fell into a pit of it, I don't know; so it is.\"\n\nHe began to rub his head again and to hint that he felt the wind.  \nBut it was a delightful instance of his kindness towards me that \nwhether he rubbed his head, or walked about, or did both, his face \nwas sure to recover its benignant expression as it looked at mine; \nand he was sure to turn comfortable again and put his hands in his \npockets and stretch out his legs.\n\n\"Perhaps it would be best, first of all,\" said I, \"to ask Mr. \nRichard what he inclines to himself.\"\n\n\"Exactly so,\" he returned.  \"That's what I mean!  You know, just \naccustom yourself to talk it over, with your tact and in your quiet \nway, with him and Ada, and see what you all make of it.  We are \nsure to come at the heart of the matter by your means, little \nwoman.\"\n\nI really was frightened at the thought of the importance I was \nattaining and the number of things that were being confided to me.  \nI had not meant this at all; I had meant that he should speak to \nRichard.  But of course I said nothing in reply except that I would \ndo my best, though I feared (I realty felt it necessary to repeat \nthis) that he thought me much more sagacious than I was.  At which \nmy guardian only laughed the pleasantest laugh I ever heard.\n\n\"Come!\" he said, rising and pushing back his chair.  \"I think we \nmay have done with the growlery for one day!  Only a concluding \nword.  Esther, my dear, do you wish to ask me anything?\"\n\nHe looked so attentively at me that I looked attentively at him and \nfelt sure I understood him.\n\n\"About myself, sir?\" said I.\n\n\"Yes.\"\n\n\"Guardian,\" said I, venturing to put my hand, which was suddenly \ncolder than I could have wished, in his, \"nothing!  I am quite sure \nthat if there were anything I ought to know or had any need to \nknow, I should not have to ask you to tell it to me.  If my whole \nreliance and confidence were not placed in you, I must have a hard \nheart indeed.  I have nothing to ask you, nothing in the world.\"\n\nHe drew my hand through his arm and we went away to look for Ada.  \nFrom that hour I felt quite easy with him, quite unreserved, quite \ncontent to know no more, quite happy.\n\nWe lived, at first, rather a busy life at Bleak House, for we had \nto become acquainted with many residents in and out of the \nneighbourhood who knew Mr. Jarndyce.  It seemed to Ada and me that \neverybody knew him who wanted to do anything with anybody else's \nmoney.  It amazed us when we began to sort his letters and to \nanswer some of them for him in the growlery of a morning to find \nhow the great object of the lives of nearly all his correspondents \nappeared to be to form themselves into committees for getting in \nand laying out money.  The ladies were as desperate as the \ngentlemen; indeed, I think they were even more so.  They threw \nthemselves into committees in the most impassioned manner and \ncollected subscriptions with a vehemence quite extraordinary.  It \nappeared to us that some of them must pass their whole lives in \ndealing out subscription-cards to the whole post-office directory--\nshilling cards, half-crown cards, half-sovereign cards, penny \ncards.  They wanted everything.  They wanted wearing apparel, they \nwanted linen rags, they wanted money, they wanted coals, they \nwanted soup, they wanted interest, they wanted autographs, they \nwanted flannel, they wanted whatever Mr. Jarndyce had--or had not.  \nTheir objects were as various as their demands.  They were going to \nraise new buildings, they were going to pay off debts on old \nbuildings, they were going to establish in a picturesque building \n(engraving of proposed west elevation attached) the Sisterhood of \nMediaeval Marys, they were going to give a testimonial to Mrs. \nJellyby, they were going to have their secretary's portrait painted \nand presented to his mother-in-law, whose deep devotion to him was \nwell known, they were going to get up everything, I really believe, \nfrom five hundred thousand tracts to an annuity and from a marble \nmonument to a silver tea-pot.  They took a multitude of titles.  \nThey were the Women of England, the Daughters of Britain, the \nSisters of all the cardinal virtues separately, the Females of \nAmerica, the Ladies of a hundred denominations.  They appeared to \nbe always excited about canvassing and electing.  They seemed to \nour poor wits, and according to their own accounts, to be \nconstantly polling people by tens of thousands, yet never bringing \ntheir candidates in for anything.  It made our heads ache to think, \non the whole, what feverish lives they must lead.\n\nAmong the ladies who were most distinguished for this rapacious \nbenevolence (if I may use the expression) was a Mrs. Pardiggle, who \nseemed, as I judged from the number of her letters to Mr. Jarndyce, \nto be almost as powerful a correspondent as Mrs. Jellyby herself.  \nWe observed that the wind always changed when Mrs. Pardiggle became \nthe subject of conversation and that it invariably interrupted Mr. \nJarndyce and prevented his going any farther, when he had remarked \nthat there were two classes of charitable people; one, the people \nwho did a little and made a great deal of noise; the other, the \npeople who did a great deal and made no noise at all.  We were \ntherefore curious to see Mrs. Pardiggle, suspecting her to be a \ntype of the former class, and were glad when she called one day \nwith her five young sons.\n\nShe was a formidable style of lady with spectacles, a prominent \nnose, and a loud voice, who had the effect of wanting a great deal \nof room.  And she really did, for she knocked down little chairs \nwith her skirts that were quite a great way off.  As only Ada and I \nwere at home, we received her timidly, for she seemed to come in \nlike cold weather and to make the little Pardiggles blue as they \nfollowed.\n\n\"These, young ladies,\" said Mrs. Pardiggle with great volubility \nafter the first salutations, \"are my five boys.  You may have seen \ntheir names in a printed subscription list (perhaps more than one) \nin the possession of our esteemed friend Mr. Jarndyce.  Egbert, my \neldest (twelve), is the boy who sent out his pocket-money, to the \namount of five and threepence, to the Tockahoopo Indians.  Oswald, \nmy second (ten and a half), is the child who contributed two and \nnine-pence to the Great National Smithers Testimonial.  Francis, my \nthird (nine), one and sixpence halfpenny; Felix, my fourth (seven), \neightpence to the Superannuated Widows; Alfred, my youngest (five), \nhas voluntarily enrolled himself in the Infant Bonds of Joy, and is \npledged never, through life, to use tobacco in any form.\"\n\nWe had never seen such dissatisfied children.  It was not merely \nthat they were weazened and shrivelled--though they were certainly \nthat to--but they looked absolutely ferocious with discontent.  At \nthe mention of the Tockahoopo Indians, I could really have supposed \nEghert to be one of the most baleful members of that tribe, he gave \nme such a savage frown.  The face of each child, as the amount of \nhis contribution was mentioned, darkened in a peculiarly vindictive \nmanner, but his was by far the worst.  I must except, however, the \nlittle recruit into the Infant Bonds of Joy, who was stolidly and \nevenly miserable.\n\n\"You have been visiting, I understand,\" said Mrs. Pardiggle, \"at \nMrs. Jellyby's?\"\n\nWe said yes, we had passed one night there.\n\n\"Mrs. Jellyby,\" pursued the lady, always speaking in the same \ndemonstrative, loud, hard tone, so that her voice impressed my \nfancy as if it had a sort of spectacles on too--and I may take the \nopportunity of remarking that her spectacles were made the less \nengaging by her eyes being what Ada called \"choking eyes,\" meaning \nvery prominent--\"Mrs. Jellyby is a benefactor to society and \ndeserves a helping hand.  My boys have contributed to the African \nproject--Egbert, one and six, being the entire allowance of nine \nweeks; Oswald, one and a penny halfpenny, being the same; the rest, \naccording to their little means.  Nevertheless, I do not go with \nMrs. Jellyby in all things.  I do not go with Mrs. Jellyby in her \ntreatment of her young family.  It has been noticed.  It has been \nobserved that her young family are excluded from participation in \nthe objects to which she is devoted.  She may be right, she may be \nwrong; but, right or wrong, this is not my course with MY young \nfamily.  I take them everywhere.\"\n\nI was afterwards convinced (and so was Ada) that from the ill-\nconditioned eldest child, these words extorted a sharp yell.  He \nturned it off into a yawn, but it began as a yell.\n\n\"They attend matins with me (very prettily done) at half-past six \no'clock in the morning all the year round, including of course the \ndepth of winter,\" said Mrs. Pardiggle rapidly, \"and they are with \nme during the revolving duties of the day.  I am a School lady, I \nam a Visiting lady, I am a Reading lady, I am a Distributing lady; \nI am on the local Linen Box Committee and many general committees; \nand my canvassing alone is very extensive--perhaps no one's more \nso.  But they are my companions everywhere; and by these means they \nacquire that knowledge of the poor, and that capacity of doing \ncharitable business in general--in short, that taste for the sort \nof thing--which will render them in after life a service to their \nneighbours and a satisfaction to themselves.  My young family are \nnot frivolous; they expend the entire amount of their allowance in \nsubscriptions, under my direction; and they have attended as many \npublic meetings and listened to as many lectures, orations, and \ndiscussions as generally fall to the lot of few grown people.  \nAlfred (five), who, as I mentioned, has of his own election joined \nthe Infant Bonds of Joy, was one of the very few children who \nmanifested consciousness on that occasion after a fervid address of \ntwo hours from the chairman of the evening.\"\n\nAlfred glowered at us as if he never could, or would, forgive the \ninjury of that night.\n\n\"You may have observed, Miss Summerson,\" said Mrs. Pardiggle, \"in \nsome of the lists to which I have referred, in the possession of \nour esteemed friend Mr. Jarndyce, that the names of my young family \nare concluded with the name of O. A. Pardiggle, F.R.S., one pound.  \nThat is their father.  We usually observe the same routine.  I put \ndown my mite first; then my young family enrol their contributions, \naccording to their ages and their little means; and then Mr. \nPardiggle brings up the rear.  Mr. Pardiggle is happy to throw in \nhis limited donation, under my direction; and thus things are made \nnot only pleasant to ourselves, but, we trust, improving to \nothers.\"\n\nSuppose Mr. Pardiggle were to dine with Mr. Jellyby, and suppose \nMr. Jellyby were to relieve his mind after dinner to Mr. Pardiggle, \nwould Mr. Pardiggle, in return, make any confidential communication \nto Mr. Jellyby?  I was quite confused to find myself thinking this, \nbut it came into my head.\n\n\"You are very pleasantly situated here!\" said Mrs. Pardiggle.\n\nWe were glad to change the subject, and going to the window, \npointed out the beauties of the prospect, on which the spectacles \nappeared to me to rest with curious indifference.\n\n\"You know Mr. Gusher?\" said our visitor.\n\nWe were obliged to say that we had not the pleasure of Mr. Gusher's \nacquaintance.\n\n\"The loss is yours, I assure you,\" said Mrs. Pardiggle with her \ncommanding deportment.  \"He is a very fervid, impassioned speaker-\nfull of fire!  Stationed in a waggon on this lawn, now, which, from \nthe shape of the land, is naturally adapted to a public meeting, he \nwould improve almost any occasion you could mention for hours and \nhours!  By this time, young ladies,\" said Mrs. Pardiggle, moving \nback to her chair and overturning, as if by invisible agency, a \nlittle round table at a considerable distance with my work-basket \non it, \"by this time you have found me out, I dare say?\"\n\nThis was really such a confusing question that Ada looked at me in \nperfect dismay.  As to the guilty nature of my own consciousness \nafter what I had been thinking, it must have been expressed in the \ncolour of my cheeks.\n\n\"Found out, I mean,\" said Mrs. Pardiggle, \"the prominent point in \nmy character.  I am aware that it is so prominent as to be \ndiscoverable immediately.  I lay myself open to detection, I know.  \nWell!  I freely admit, I am a woman of business.  I love hard work; \nI enjoy hard work.  The excitement does me good.  I am so \naccustomed and inured to hard work that I don't know what fatigue \nis.\"\n\nWe murmured that it was very astonishing and very gratifying, or \nsomething to that effect.  I don't think we knew what it was \neither, but this is what our politeness expressed.\n\n\"I do not understand what it is to be tired; you cannot tire me if \nyou try!\" said Mrs. Pardiggle.  \"The quantity of exertion (which is \nno exertion to me), the amount of business (which I regard as \nnothing), that I go through sometimes astonishes myself.  I have \nseen my young family, and Mr. Pardiggle, quite worn out with \nwitnessing it, when I may truly say I have been as fresh as a \nlark!\"\n\nIf that dark-visaged eldest boy could look more malicious than he \nhad already looked, this was the time when he did it.  I observed \nthat he doubled his right fist and delivered a secret blow into the \ncrown of his cap, which was under his left arm.\n\n\"This gives me a great advantage when I am making my rounds,\" said \nMrs. Pardiggle.  \"If I find a person unwilling to hear what I have \nto say, I tell that person directly, 'I am incapable of fatigue, my \ngood friend, I am never tired, and I mean to go on until I have \ndone.'  It answers admirably!  Miss Summerson, I hope I shall have \nyour assistance in my visiting rounds immediately, and Miss Clare's \nvery soon.\"\n\nAt first I tried to excuse myself for the present on the general \nground of having occupations to attend to which I must not neglect.  \nBut as this was an ineffectual protest, I then said, more \nparticularly, that I was not sure of my qualifications.  That I was \ninexperienced in the art of adapting my mind to minds very \ndifferently situated, and addressing them from suitable points of \nview.  That I had not that delicate knowledge of the heart which \nmust be essential to such a work.  That I had much to learn, \nmyself, before I could teach others, and that I could not confide \nin my good intentions alone.  For these reasons I thought it best \nto be as useful as I could, and to render what kind services I \ncould to those immediately about me, and to try to let that circle \nof duty gradually and naturally expand itself.  All this I said \nwith anything but confidence, because Mrs. Pardiggle was much older \nthan I, and had great experience, and was so very military in her \nmanners.\n\n\"You are wrong, Miss Summerson,\" said she, \"but perhaps you are not \nequal to hard work or the excitement of it, and that makes a vast \ndifference.  If you would like to see how I go through my work, I \nam now about--with my young family--to visit a brickmaker in the \nneighbourhood (a very bad character) and shall be glad to take you \nwith me.  Miss Clare also, if she will do me the favour.\"\n\nAda and I interchanged looks, and as we were going out in any case, \naccepted the offer.  When we hastily returned from putting on our \nbonnets, we found the young family languishing in a corner and Mrs. \nPardiggle sweeping about the room, knocking down nearly all the \nlight objects it contained.  Mrs. Pardiggle took possession of Ada, \nand I followed with the family.\n\nAda told me afterwards that Mrs. Pardiggle talked in the same loud \ntone (that, indeed, I overheard) all the way to the brickmaker's \nabout an exciting contest which she had for two or three years \nwaged against another lady relative to the bringing in of their \nrival candidates for a pension somewhere.  There had been a \nquantity of printing, and promising, and proxying, and polling, and \nit appeared to have imparted great liveliness to all concerned, \nexcept the pensioners--who were not elected yet.\n\nI am very fond of being confided in by children and am happy in \nbeing usually favoured in that respect, but on this occasion it \ngave me great uneasiness.  As soon as we were out of doors, Egbert, \nwith the manner of a little footpad, demanded a shilling of me on \nthe ground that his pocket-money was \"boned\" from him.  On my \npointing out the great impropriety of the word, especially in \nconnexion with his parent (for he added sulkily \"By her!\"), he \npinched me and said, \"Oh, then!  Now!  Who are you!  YOU wouldn't \nlike it, I think?  What does she make a sham for, and pretend to \ngive me money, and take it away again?  Why do you call it my \nallowance, and never let me spend it?\"  These exasperating \nquestions so inflamed his mind and the minds of Oswald and Francis \nthat they all pinched me at once, and in a dreadfully expert way--\nscrewing up such little pieces of my arms that I could hardly \nforbear crying out.  Felix, at the same time, stamped upon my toes.  \nAnd the Bond of Joy, who on account of always having the whole of \nhis little income anticipated stood in fact pledged to abstain from \ncakes as well as tobacco, so swelled with grief and rage when we \npassed a pastry-cook's shop that he terrified me by becoming \npurple.  I never underwent so much, both in body and mind, in the \ncourse of a walk with young people as from these unnaturally \nconstrained children when they paid me the compliment of being \nnatural.\n\nI was glad when we came to the brickmaker's house, though it was \none of a cluster of wretched hovels in a brick-field, with pigsties \nclose to the broken windows and miserable little gardens before the \ndoors growing nothing but stagnant pools.  Here and there an old \ntub was put to catch the droppings of rain-water from a roof, or \nthey were banked up with mud into a little pond like a large dirt-\npie.  At the doors and windows some men and women lounged or \nprowled about, and took little notice of us except to laugh to one \nanother or to say something as we passed about gentlefolks minding \ntheir own business and not troubling their heads and muddying their \nshoes with coming to look after other people's.\n\nMrs. Pardiggle, leading the way with a great show of moral \ndetermination and talking with much volubility about the untidy \nhabits of the people (though I doubted if the best of us could have \nbeen tidy in such a place), conducted us into a cottage at the \nfarthest corner, the ground-floor room of which we nearly filled.  \nBesides ourselves, there were in this damp, offensive room a woman \nwith a black eye, nursing a poor little gasping baby by the fire; a \nman, all stained with clay and mud and looking very dissipated, \nlying at full length on the ground, smoking a pipe; a powerful \nyoung man fastening a collar on a dog; and a bold girl doing some \nkind of washing in very dirty water.  They all looked up at us as \nwe came in, and the woman seemed to turn her face towards the fire \nas if to hide her bruised eye; nobody gave us any welcome.\n\n\"Well, my friends,\" said Mrs. Pardiggle, but her voice had not a \nfriendly sound, I thought; it was much too businesslike and \nsystematic.  \"How do you do, all of you?  I am here again.  I told \nyou, you couldn't tire me, you know.  I am fond of hard work, and \nam true to my word.\"\n\n\"There an't,\" growled the man on the floor, whose head rested on \nhis hand as he stared at us, \"any more on you to come in, is \nthere?\"\n\n\"No, my friend,\" said Mrs. Pardiggle, seating herself on one stool \nand knocking down another.  \"We are all here.\"\n\n\"Because I thought there warn't enough of you, perhaps?\" said the \nman, with his pipe between his lips as he looked round upon us.\n\nThe young man and the girl both laughed.  Two friends of the young \nman, whom we had attracted to the doorway and who stood there with \ntheir hands in their pockets, echoed the laugh noisily.\n\n\"You can't tire me, good people,\" said Mrs. Pardiggle to these \nlatter.  \"I enjoy hard work, and the harder you make mine, the \nbetter I like it.\"\n\n\"Then make it easy for her!\" growled the man upon the floor.  \"I \nwants it done, and over.  I wants a end of these liberties took \nwith my place.  I wants an end of being drawed like a badger.  Now \nyou're a-going to poll-pry and question according to custom--I know \nwhat you're a-going to be up to.  Well!  You haven't got no \noccasion to be up to it.  I'll save you the trouble.  Is my \ndaughter a-washin?  Yes, she IS a-washin.  Look at the water.  \nSmell it!  That's wot we drinks.  How do you like it, and what do \nyou think of gin instead!  An't my place dirty?  Yes, it is dirty--\nit's nat'rally dirty, and it's nat'rally onwholesome; and we've had \nfive dirty and onwholesome children, as is all dead infants, and so \nmuch the better for them, and for us besides.  Have I read the \nlittle book wot you left?  No, I an't read the little book wot you \nleft.  There an't nobody here as knows how to read it; and if there \nwos, it wouldn't be suitable to me.  It's a book fit for a babby, \nand I'm not a babby.  If you was to leave me a doll, I shouldn't \nnuss it.  How have I been conducting of myself?  Why, I've been \ndrunk for three days; and I'da been drunk four if I'da had the \nmoney.  Don't I never mean for to go to church?  No, I don't never \nmean for to go to church.  I shouldn't be expected there, if I did; \nthe beadle's too gen-teel for me.  And how did my wife get that \nblack eye?  Why, I give it her; and if she says I didn't, she's a \nlie!\"\n\nHe had pulled his pipe out of his mouth to say all this, and he now \nturned over on his other side and smoked again.  Mrs. Pardiggle, \nwho had been regarding him through her spectacles with a forcible \ncomposure, calculated, I could not help thinking, to increase his \nantagonism, pulled out a good book as if it were a constable's \nstaff and took the whole family into custody.  I mean into \nreligious custody, of course; but she really did it as if she were \nan inexorable moral policeman carrying them all off to a station-\nhouse.\n\nAda and I were very uncomfortable.  We both felt intrusive and out \nof place, and we both thought that Mrs. Pardiggle would have got on \ninfinitely better if she had not had such a mechanical way of \ntaking possession of people.  The children sulked and stared; the \nfamily took no notice of us whatever, except when the young man \nmade the dog bark, which he usually did when Mrs. Pardiggle was \nmost emphatic.  We both felt painfully sensible that between us and \nthese people there was an iron barrier which could not be removed \nby our new friend.  By whom or how it could be removed, we did not \nknow, but we knew that.  Even what she read and said seemed to us \nto be ill-chosen for such auditors, if it had been imparted ever so \nmodestly and with ever so much tact.  As to the little book to \nwhich the man on the floor had referred, we acqulred a knowledge of \nit afterwards, and Mr. Jarndyce said he doubted if Robinson Crusoe \ncould have read it, though he had had no other on his desolate \nisland.\n\nWe were much relieved, under these circumstances, when Mrs. \nPardiggle left off.\n\nThe man on the floor, then turning his bead round again, said \nmorosely, \"Well!  You've done, have you?\"\n\n\"For to-day, I have, my friend.  But I am never fatigued.  I shall \ncome to you again in your regular order,\" returned Mrs. Pardiggle \nwith demonstrative cheerfulness.\n\n\"So long as you goes now,\" said he, folding his arms and shutting \nhis eyes with an oath, \"you may do wot you like!\"\n\nMrs. Pardiggle accordingly rose and made a little vortex in the \nconfined room from which the pipe itself very narrowly escaped.  \nTaking one of her young family in each hand, and telling the others \nto follow closely, and expressing her hope that the brickmaker and \nall his house would be improved when she saw them next, she then \nproceeded to another cottage.  I hope it is not unkind in me to say \nthat she certainly did make, in this as in everything else, a show \nthat was not conciliatory of doing charity by wholesale and of \ndealing in it to a large extent.\n\nShe supposed that we were following her, but as soon as the space \nwas left clear, we approached the woman sitting by the fire to ask \nif the baby were ill.\n\nShe only looked at it as it lay on her lap.  We had observed before \nthat when she looked at it she covered her discoloured eye with her \nhand, as though she wished to separate any association with noise \nand violence and ill treatment from the poor little child.\n\nAda, whose gentle heart was moved by its appearance, bent down to \ntouch its little face.  As she did so, I saw what happened and drew \nher back.  The child died.\n\n\"Oh, Esther!\" cried Ada, sinking on her knees beside it.  \"Look \nhere!  Oh, Esther, my love, the little thing!  The suffering, \nquiet, pretty little thing!  I am so sorry for it.  I am so sorry \nfor the mother.  I never saw a sight so pitiful as this before!  \nOh, baby, baby!\"\n\nSuch compassion, such gentleness, as that with which she bent down \nweeping and put her hand upon the mother's might have softened any \nmother's heart that ever beat.  The woman at first gazed at her in \nastonishment and then burst into tears.\n\nPresently I took the light burden from her lap, did what I could to \nmake the baby's rest the prettier and gentler, laid it on a shelf, \nand covered it with my own handkerchief.  We tried to comfort the \nmother, and we whispered to her what Our Saviour said of children.  \nShe answered nothing, but sat weeping--weeping very much.\n\nWhen I turned, I found that the young man had taken out the dog and \nwas standing at the door looking in upon us with dry eyes, but \nquiet.  The girl was quiet too and sat in a corner looking on the \nground.  The man had risen.  He still smoked his pipe with an air \nof defiance, but he was silent.\n\nAn ugly woman, very poorly clothed, hurried in while I was glancing \nat them, and coming straight up to the mother, said, \"Jenny!  \nJenny!\"  The mother rose on being so addressed and fell upon the \nwoman's neck.\n\nShe also had upon her face and arms the marks of ill usage.  She \nhad no kind of grace about her, but the grace of sympathy; but when \nshe condoled with the woman, and her own tears fell, she wanted no \nbeauty.  I say condoled, but her only words were \"Jenny!  Jenny!\"  \nAll the rest was in the tone in which she said them.\n\nI thought it very touching to see these two women, coarse and \nshabby and beaten, so united; to see what they could be to one \nanother; to see how they felt for one another, how the heart of \neach to each was softened by the hard trials of their lives.  I \nthink the best side of such people is almost hidden from us.  What \nthe poor are to the poor is little known, excepting to themselves \nand God.\n\nWe felt it better to withdraw and leave them uninterrupted.  We \nstole out quietly and without notice from any one except the man.  \nHe was leaning against the wall near the door, and finding that \nthere was scarcely room for us to pass, went out before us.  He \nseemed to want to hide that he did this on our account, but we \nperceived that be did, and thanked him.  He made no answer.\n\nAda was so full of grief all the way home, and Richard, whom we \nfound at home, was so distressed to see her in tears (though he \nsaid to me, when she was not present, how beautiful it was too!), \nthat we arranged to return at night with some little comforts and \nrepeat our visit at the brick-maker's house.  We said as little as \nwe could to Mr. Jarndyce, but the wind changed directly.\n\nRichard accompanied us at night to the scene of our morning \nexpedition.  On our way there, we had to pass a noisy drinking-\nhouse, where a number of men were flocking about the door.  Among \nthem, and prominent in some dispute, was the father of the little \nchild.  At a short distance, we passed the young man and the dog, \nin congenial company.  The sister was standing laughing and talking \nwith some other young women at the corner of the row of cottages, \nbut she seemed ashamed and turned away as we went by.\n\nWe left our escort within sight of the brickmaker's dwelling and \nproceeded by ourselves.  When we came to the door, we found the \nwoman who had brought such consolation with her standing there \nlooking anxiously out.\n\n\"It's you, young ladies, is it?\" she said in a whisper.  \"I'm a-\nwatching for my master.  My heart's in my mouth.  If he was to \ncatch me away from home, he'd pretty near murder me.\"\n\n\"Do you mean your husband?\" said I.\n\n\"Yes, miss, my master.  Jennys asleep, quite worn out.  She's \nscarcely had the child off her lap, poor thing, these seven days \nand nights, except when I've been able to take it for a minute or \ntwo.\"\n\nAs she gave way for us, she went softly in and put what we had \nbrought near the miserable bed on which the mother slept.  No \neffort had been made to clean the room--it seemed in its nature \nalmost hopeless of being clean; but the small waxen form from which \nso much solemnity diffused itself had been composed afresh, and \nwashed, and neatly dressed in some fragments of white linen; and on \nmy handkerchief, which still covered the poor baby, a little bunch \nof sweet herbs had been laid by the same rough, scarred hands, so \nlightly, so tenderly!\n\n\"May heaven reward you!\" we said to her.  \"You are a good woman.\"\n\n\"Me, young ladies?\" she returned with surprise.  \"Hush!  Jenny, \nJenny!\"\n\nThe mother had moaned in her sleep and moved.  The sound of the \nfamiliar voice seemed to calm her again.  She was quiet once more.\n\nHow little I thought, when I raised my handkerchief to look upon \nthe tiny sleeper underneath and seemed to see a halo shine around \nthe child through Ada's drooping hair as her pity bent her head--\nhow little I thought in whose unquiet bosom that handkerchief would \ncome to lie after covering the motionless and peaceful breast!  I \nonly thought that perhaps the Angel of the child might not be all \nunconscious of the woman who replaced it with so compassionate a \nhand; not all unconscious of her presently, when we had taken \nleave, and left her at the door, by turns looking, and listening in \nterror for herself, and saying in her old soothing manner, \"Jenny, \nJenny!\"\n\n\n\nCHAPTER IX\n\nSigns and Tokens\n\n\nI don't know how it is I seem to be always writing about myself.  I \nmean all the time to write about other people, and I try to think \nabout myself as little as possible, and I am sure, when I find \nmyself coming into the story again, I am really vexed and say, \n\"Dear, dear, you tiresome little creature, I wish you wouldn't!\" \nbut it is all of no use.  I hope any one who may read what I write \nwill understand that if these pages contain a great deal about me, \nI can only suppose it must be because I have really something to do \nwith them and can't be kept out.\n\nMy darling and I read together, and worked, and practised, and \nfound so much employment for our time that the winter days flew by \nus like bright-winged birds.  Generally in the afternoons, and \nalways in the evenings, Richard gave us his company.  Although he \nwas one of the most restless creatures in the world, he certainly \nwas very fond of our society.\n\nHe was very, very, very fond of Ada.  I mean it, and I had better \nsay it at once.  I had never seen any young people falling in love \nbefore, but I found them out quite soon.  I could not say so, of \ncourse, or show that I knew anything about it.  On the contrary, I \nwas so demure and used to seem so unconscious that sometimes I \nconsidered within myself while I was sitting at work whether I was \nnot growing quite deceitful.\n\nBut there was no help for it.  All I had to do was to be quiet, and \nI was as quiet as a mouse.  They were as quiet as mice too, so far \nas any words were concerned, but the innocent manner in which they \nrelied more and more upon me as they took more and more to one \nanother was so charming that I had great difficulty in not showing \nhow it interested me.\n\n\"Our dear little old woman is such a capital old woman,\" Richard \nwould say, coming up to meet me in the garden early, with his \npleasant laugh and perhaps the least tinge of a blush, \"that I \ncan't get on without her.  Before I begin my harum-scarum day--\ngrinding away at those books and instruments and then galloping up \nhill and down dale, all the country round, like a highwayman--it \ndoes me so much good to come and have a steady walk with our \ncomfortable friend, that here I am again!\"\n\n\"You know, Dame Durden, dear,\" Ada would say at night, with her \nhead upon my shoulder and the firelight shining in her thoughtful \neyes, \"I don't want to talk when we come upstairs here.  Only to \nsit a little while thinking, with your dear face for company, and \nto hear the wind and remember the poor sailors at sea--\"\n\nAh!  Perhaps Richard was going to be a sailor.  We had talked it \nover very often now, and there was some talk of gratifying the \ninclination of his childhood for the sea.  Mr. Jarndyce had written \nto a relation of the family, a great Sir Leicester Dedlock, for his \ninterest in Richard's favour, generally; and Sir Leicester had \nreplied in a gracious manner that he would be happy to advance the \nprospects of the young gentleman if it should ever prove to be \nwithin his power, which was not at all probable, and that my Lady \nsent her compliments to the young gentleman (to whom she perfectly \nremembered that she was allied by remote consanguinity) and trusted \nthat he would ever do his duty in any honourable profession to \nwhich he might devote himself.\n\n\"So I apprehend it's pretty clear,\" said Richard to me, \"that I \nshall have to work my own way.  Never mind!  Plenty of people have \nhad to do that before now, and have done it.  I only wish I had the \ncommand of a clipping privateer to begin with and could carry off \nthe Chancellor and keep him on short allowance until he gave \njudgment in our cause.  He'd find himself growing thin, if he \ndidn't look sharp!\"\n\nWith a buoyancy and hopefulness and a gaiety that hardly ever \nflagged, Richard had a carelessness in his character that quite \nperplexed me, principally because he mistook it, in such a very odd \nway, for prudence.  It entered into all his calculations about \nmoney in a singular manner which I don't think I can better explain \nthan by reverting for a moment to our loan to Mr. Skimpole.\n\nMr. Jarndyce had ascertained the amount, either from Mr. Skimpole \nhimself or from Coavinses, and had placed the money in my hands \nwith instructions to me to retain my own part of it and hand the \nrest to Richard.  The number of little acts of thoughtless \nexpenditure which Richard justified by the recovery of his ten \npounds, and the number of times he talked to me as if he had saved \nor realized that amount, would form a sum in simple addition.\n\n\"My prudent Mother Hubbard, why not?\" he said to me when he wanted, \nwithout the least consideration, to bestow five pounds on the \nbrickmaker.  \"I made ten pounds, clear, out of Coavinses' \nbusiness.\"\n\n\"How was that?\" said I.\n\n\"Why, I got rid of ten pounds which I was quite content to get rid \nof and never expected to see any more.  You don't deny that?\"\n\n\"No,\" said I.\n\n\"Very well!  Then I came into possession of ten pounds--\"\n\n\"The same ten pounds,\" I hinted.\n\n\"That has nothing to do with it!\" returned Richard.  \"I have got \nten pounds more than I expected to have, and consequently I can \nafford to spend it without being particular.\"\n\nIn exactly the same way, when he was persuaded out of the sacrifice \nof these five pounds by being convinced that it would do no good, \nhe carried that sum to his credit and drew upon it.\n\n\"Let me see!\" he would say.  \"I saved five pounds out of the \nbrickmaker's affair, so if I have a good rattle to London and back \nin a post-chaise and put that down at four pounds, I shall have \nsaved one.  And it's a very good thing to save one, let me tell \nyou: a penny saved is a penny got!\"\n\nI believe Richard's was as frank and generous a nature as there \npossibly can be.  He was ardent and brave, and in the midst of all \nhis wild restlessness, was so gentle that I knew him like a brother \nin a few weeks.  His gentleness was natural to him and would have \nshown itself abundantly even without Ada's influence; but with it, \nhe became one of the most winning of companions, always so ready to \nbe interested and always so happy, sanguine, and light-hearted.  I \nam sure that I, sitting with them, and walking with them, and \ntalking with them, and noticing from day to day how they went on, \nfalling deeper and deeper in love, and saying nothing about it, and \neach shyly thinking that this love was the greatest of secrets, \nperhaps not yet suspected even by the other--I am sure that I was \nscarcely less enchanted than they were and scarcely less pleased \nwith the pretty dream.\n\nWe were going on in this way, when one morning at breakfast Mr. \nJarndyce received a letter, and looking at the superscription, \nsaid, \"From Boythorn?  Aye, aye!\" and opened and read it with \nevident pleasure, announcing to us in a parenthesis when he was \nabout half-way through, that Boythorn was \"coming down\" on a visit.  \nNow who was Boythorn, we all thought.  And I dare say we all \nthought too--I am sure I did, for one--would Boythorn at all \ninterfere with what was going forward?\n\n\"I went to school with this fellow, Lawrence Boythorn,\" said Mr. \nJarndyce, tapping the letter as he laid it on the table, \"more than \nfive and forty years ago.  He was then the most impetuous boy in \nthe world, and he is now the most impetuous man.  He was then the \nloudest boy in the world, and he is now the loudest man.  He was \nthen the heartiest and sturdiest boy in the world, and he is now \nthe heartiest and sturdiest man.  He is a tremendous fellow.\"\n\n\"In stature, sir?\" asked Richard.\n\n\"Pretty well, Rick, in that respect,\" said Mr. Jarndyce; \"being \nsome ten years older than I and a couple of inches taller, with his \nhead thrown back like an old soldier, his stalwart chest squared, \nhis hands like a clean blacksmith's, and his lungs!  There's no \nsimile for his lungs.  Talking, laughing, or snoring, they make the \nbeams of the house shake.\"\n\nAs Mr. Jarndyce sat enjoying the image of his friend Boythorn, we \nobserved the favourable omen that there was not the least \nindication of any change in the wind.\n\n\"But it's the inside of the man, the warm heart of the man, the \npassion of the man, the fresh blood of the man, Rick--and Ada, and \nlittle Cobweb too, for you are all interested in a visitor--that I \nspeak of,\" he pursued.  \"His language is as sounding as his voice.  \nHe is always in extremes, perpetually in the superlative degree.  \nIn his condemnation he is all ferocity.  You might suppose him to \nbe an ogre from what he says, and I believe he has the reputation \nof one with some people.  There!  I tell you no more of him \nbeforehand.  You must not be surprised to see him take me under his \nprotection, for he has never forgotten that I was a low boy at \nschool and that our friendship began in his knocking two of my head \ntyrant's teeth out (he says six) before breakfast.  Boythorn and \nhis man,\" to me, \"will be here this afternoon, my dear.\"\n\nI took care that the necessary preparations were made for Mr. \nBoythorn's reception, and we looked forward to his arrival with \nsome curiosity.  The afternoon wore away, however, and he did not \nappear.  The dinner-hour arrived, and still he did not appear.  The \ndinner was put back an hour, and we were sitting round the fire \nwith no light but the blaze when the hall-door suddenly burst open \nand the hall resounded with these words, uttered with the greatest \nvehemence and in a stentorian tone: \"We have been misdirected, \nJarndyce, by a most abandoned ruffian, who told us to take the \nturning to the right instead of to the left.  He is the most \nintolerable scoundrel on the face of the earth.  His father must \nhave been a most consummate villain, ever to have such a son.  I \nwould have had that fellow shot without the least remorse!\"\n\n\"Did he do it on purpose?\" Mr. Jarndyce inquired.\n\n\"I have not the slightest doubt that the scoundrel has passed his \nwhole existence in misdirecting travellers!\" returned the other.  \n\"By my soul, I thought him the worst-looking dog I had ever beheld \nwhen he was telling me to take the turning to the right.  And yet I \nstood before that fellow face to face and didn't knock his brains \nout!\"\n\n\"Teeth, you mean?\" said Mr. Jarndyce.\n\n\"Ha, ha, ha!\" laughed Mr. Lawrence Boythorn, really making the \nwhole house vibrate.  \"What, you have not forgotten it yet!  Ha, \nha, ha!  And that was another most consummate vagabond!  By my \nsoul, the countenance of that fellow when he was a boy was the \nblackest image of perfidy, cowardice, and cruelty ever set up as a \nscarecrow in a field of scoundrels.  If I were to meet that most \nunparalleled despot in the streets to-morrow, I would fell him like \na rotten tree!\"\n\n\"I have no doubt of it,\" said Mr. Jarndyce.  \"Now, will you come \nupstairs?\"\n\n\"By my soul, Jarndyce,\" returned his guest, who seemed to refer to \nhis watch, \"if you had been married, I would have turned back at \nthe garden-gate and gone away to the remotest summits of the \nHimalaya Mountains sooner than I would have presented myself at \nthis unseasonable hour.\"\n\n\"Not quite so far, I hope?\" said Mr. Jarndyce.\n\n\"By my life and honour, yes!\" cried the visitor.  \"I wouldn't be \nguilty of the audacious insolence of keeping a lady of the house \nwaiting all this time for any earthly consideration.  I would \ninfinitely rather destroy myself--infinitely rather!\"\n\nTalking thus, they went upstairs, and presently we heard him in his \nbedroom thundering \"Ha, ha, ha!\" and again \"Ha, ha, ha!\" until the \nflattest echo in the neighbourhood seemed to catch the contagion \nand to laugh as enjoyingly as he did or as we did when we heard him \nlaugh.\n\nWe all conceived a prepossession in his favour, for there was a \nsterling quality in this laugh, and in his vigorous, healthy voice, \nand in the roundness and fullness with which he uttered every word \nhe spoke, and in the very fury of his superlatives, which seemed to \ngo off like blank cannons and hurt nothing.  But we were hardly \nprepared to have it so confirmed by his appearance when Mr. \nJarndyce presented him.  He was not only a very handsome old \ngentleman--upright and stalwart as he had been described to us--\nwith a massive grey head, a fine composure of face when silent, a \nfigure that might have become corpulent but for his being so \ncontinually in earnest that he gave it no rest, and a chin that \nmight have subsided into a double chin but for the vehement \nemphasis in which it was constantly required to assist; but he was \nsuch a true gentleman in his manner, so chivalrously polite, his \nface was lighted by a smile of so much sweetness and tenderness, \nand it seemed so plain that he had nothing to hide, but showed \nhimself exactly as he was--incapable, as Richard said, of anything \non a limited scale, and firing away with those blank great guns \nbecause he carried no small arms whatever--that really I could not \nhelp looking at him with equal pleasure as he sat at dinner, \nwhether he smilingly conversed with Ada and me, or was led by Mr. \nJarndyce into some great volley of superlatives, or threw up his \nhead like a bloodhound and gave out that tremendous \"Ha, ha, ha!\"\n\n\"You have brought your bird with you, I suppose?\" said Mr. \nJarndyce.\n\n\"By heaven, he is the most astonishing bird in Europe!\" replied the \nother.  \"He IS the most wonderful creature!  I wouldn't take ten \nthousand guineas for that bird.  I have left an annuity for his \nsole support in case he should outlive me.  He is, in sense and \nattachment, a phenomenon.  And his father before him was one of the \nmost astonishing birds that ever lived!\"\n\nThe subject of this laudation was a very little canary, who was so \ntame that he was brought down by Mr. Boythorn's man, on his \nforefinger, and after taking a gentle flight round the room, \nalighted on his master's head.  To hear Mr. Boythorn presently \nexpressing the most implacable and passionate sentiments, with this \nfragile mite of a creature quietly perched on his forehead, was to \nhave a good illustration of his character, I thought.\n\n\"By my soul, Jarndyce,\" he said, very gently holding up a bit of \nbread to the canary to peck at, \"if I were in your place I would \nseize every master in Chancery by the throat tomorrow morning and \nshake him until his money rolled out of his pockets and his bones \nrattled in his skin.  I would have a settlement out of somebody, by \nfair means or by foul.  If you would empower me to do it, I would \ndo it for you with the greatest satisfaction!\"  (All this time the \nvery small canary was eating out of his hand.)\n\n\"I thank you, Lawrence, but the suit is hardly at such a point at \npresent,\" returned Mr. Jarndyce, laughing, \"that it would be \ngreatly advanced even by the legal process of shaking the bench and \nthe whole bar.\"\n\n\"There never was such an infernal cauldron as that Chancery on the \nface of the earth!\" said Mr. Boythorn.  \"Nothing but a mine below \nit on a busy day in term time, with all its records, rules, and \nprecedents collected in it and every functionary belonging to it \nalso, high and low, upward and downward, from its son the \nAccountant-General to its father the Devil, and the whole blown to \natoms with ten thousand hundredweight of gunpowder, would reform it \nin the least!\"\n\nIt was impossible not to laugh at the energetic gravity with which \nhe recommended this strong measure of reform.  When we laughed, he \nthrew up his head and shook his broad chest, and again the whole \ncountry seemed to echo to his \"Ha, ha, ha!\"  It had not the least \neffect in disturbing the bird, whose sense of security was complete \nand who hopped about the table with its quick head now on this side \nand now on that, turning its bright sudden eye on its master as if \nhe were no more than another bird.\n\n\"But how do you and your neighbour get on about the disputed right \nof way?\" said Mr. Jarndyce.  \"You are not free from the toils of \nthe law yourself!\"\n\n\"The fellow has brought actions against ME for trespass, and I have \nbrought actions against HIM for trespass,\" returned Mr. Boythorn.  \n\"By heaven, he is the proudest fellow breathing.  It is morally \nimpossible that his name can be Sir Leicester.  It must be Sir \nLucifer.\"\n\n\"Complimentary to our distant relation!\" said my guardian \nlaughingly to Ada and Richard.\n\n\"I would beg Miss Clare's pardon and Mr. Carstone's pardon,\" \nresumed our visitor, \"if I were not reassured by seeing in the fair \nface of the lady and the smile of the gentleman that it is quite \nunnecessary and that they keep their distant relation at a \ncomfortable distance.\"\n\n\"Or he keeps us,\" suggested Richard.\n\n\"By my soul,\" exclaimed Mr. Boythorn, suddenly firing another \nvolley, \"that fellow is, and his father was, and his grandfather \nwas, the most stiff-necked, arrogant imbecile, pig-headed numskull, \never, by some inexplicable mistake of Nature, born in any station \nof life but a walking-stick's!  The whole of that family are the \nmost solemnly conceited and consummate blockheads!  But it's no \nmatter; he should not shut up my path if he were fifty baronets \nmelted into one and living in a hundred Chesney Wolds, one within \nanother, like the ivory balls in a Chinese carving.  The fellow, by \nhis agent, or secretary, or somebody, writes to me 'Sir Leicester \nDedlock, Baronet, presents his compliments to Mr. Lawrence \nBoythorn, and has to call his attention to the fact that the green \npathway by the old parsonage-house, now the property of Mr. \nLawrence Boythorn, is Sir Leicester's right of way, being in fact a \nportion of the park of chesney Wold, and that Sir Leicester finds \nit convenient to close up the same.'  I write to the fellow, 'Mr. \nLawrence Boythorn presents his compliments to Sir Leicester \nDedlock, Baronet, and has to call HIS attention to the fact that he \ntotally denies the whole of Sir Leicester Dedlock's positions on \nevery possible subject and has to add, in reference to closing up \nthe pathway, that he will be glad to see the man who may undertake \nto do it.'  The fellow sends a most abandoned villain with one eye \nto construct a gateway.  I play upon that execrable scoundrel with \na fire-engine until the breath is nearly driven out of his body.  \nThe fellow erects a gate in the night.  I chop it down and burn it \nin the morning.  He sends his myrmidons to come over the fence and \npass and repass.  I catch them in humane man traps, fire split peas \nat their legs, play upon them with the engine--resolve to free \nmankind from the insupportable burden of the existence of those \nlurking ruffians.  He brings actions for trespass; I bring actions \nfor trespass.  He brings actions for assault and battery; I defend \nthem and continue to assault and batter.  Ha, ha, ha!\"\n\nTo hear him say all this with unimaginable energy, one might have \nthought him the angriest of mankind.  To see him at the very same \ntime, looking at the bird now perched upon his thumb and softly \nsmoothing its feathers with his forefinger, one might have thought \nhim the gentlest.  To hear him laugh and see the broad good nature \nof his face then, one might have supposed that he had not a care in \nthe world, or a dispute, or a dislike, but that his whole existence \nwas a summer joke.\n\n\"No, no,\" he said, \"no closing up of my paths by any Dedlock!  \nThough I willingly confess,\" here he softened in a moment, \"that \nLady Dedlock is the most accomplished lady in the world, to whom I \nwould do any homage that a plain gentleman, and no baronet with a \nhead seven hundred years thick, may.  A man who joined his regiment \nat twenty and within a week challenged the most imperious and \npresumptuous coxcomb of a commanding officer that ever drew the \nbreath of life through a tight waist--and got broke for it--is not \nthe man to be walked over by all the Sir Lucifers, dead or alive, \nlocked or unlocked.  Ha, ha, ha!\"\n\n\"Nor the man to allow his junior to be walked over either?\" said my \nguardian.\n\n\"Most assuredly not!\" said Mr. Boythorn, clapping him on the \nshoulder with an air of protection that had something serious in \nit, though he laughed.  \"He will stand by the low boy, always.  \nJarndyce, you may rely upon him!  But speaking of this trespass--\nwith apologies to Miss Clare and Miss Summerson for the length at \nwhich I have pursued so dry a subject--is there nothing for me from \nyour men Kenge and Carboy?\"\n\n\"I think not, Esther?\" said Mr. Jarndyce.\n\n\"Nothing, guardian.\"\n\n\"Much obliged!\" said Mr. Boythorn.  \"Had no need to ask, after even \nmy slight experience of Miss Summerson's forethought for every one \nabout her.\"  (They all encouraged me; they were determined to do \nit.)  \"I inquired because, coming from Lincolnshire, I of course \nhave not yet been in town, and I thought some letters might have \nbeen sent down here.  I dare say they will report progress to-\nmorrow morning.\"\n\nI saw him so often in the course of the evening, which passed very \npleasantly, contemplate Richard and Ada with an interest and a \nsatisfaction that made his fine face remarkably agreeable as he sat \nat a little distance from the piano listening to the music--and he \nhad small occasion to tell us that he was passionately fond of \nmusic, for his face showed it--that I asked my guardian as we sat \nat the backgammon board whether Mr. Boythorn had ever been married.\n\n\"No,\" said he.  \"No.\"\n\n\"But he meant to be!\" said I.\n\n\"How did you find out that?\" he returned with a smile.  \"Why, \nguardian,\" I explained, not without reddening a little at hazarding \nwhat was in my thoughts, \"there is something so tender in his \nmanner, after all, and he is so very courtly and gentle to us, and\n--\"\n\nMr. Jarndyce directed his eyes to where he was sitting as I have \njust described him.\n\nI said no more.\n\n\"You are right, little woman,\" he answered.  \"He was all but \nmarried once.  Long ago.  And once.\"\n\n\"Did the lady die?\"\n\n\"No--but she died to him.  That time has had its influence on all \nhis later life.  Would you suppose him to have a head and a heart \nfull of romance yet?\"\n\n\"I think, guardian, I might have supposed so.  But it is easy to \nsay that when you have told me so.\"\n\n\"He has never since been what he might have been,\" said Mr. \nJarndyce, \"and now you see him in his age with no one near him but \nhis servant and his little yellow friend.  It's your throw, my \ndear!\"\n\nI felt, from my guardian's manner, that beyond this point I could \nnot pursue the subject without changing the wind.  I therefore \nforbore to ask any further questions.  I was interested, but not \ncurious.  I thought a little while about this old love story in the \nnight, when I was awakened by Mr. Boythorn's lusty snoring; and I \ntried to do that very difficult thing, imagine old people young \nagain and invested with the graces of youth.  But I fell asleep \nbefore I had succeeded, and dreamed of the days when I lived in my \ngodmother's house.  I am not sufficiently acquainted with such \nsubjects to know whether it is at all remarkable that I almost \nalways dreamed of that period of my life.\n\nWith the morning there came a letter from Messrs. Kenge and Carboy \nto Mr. Boythorn informing him that one of their clerks would wait \nupon him at noon.  As it was the day of the week on which I paid the \nbills, and added up my books, and made all the household affairs as \ncompact as possible, I remained at home while Mr. Jarndyce, Ada, and \nRichard took advantage of a very fine day to make a little \nexcursion, Mr. Boythorn was to wait for Kenge and Carboy's clerk and \nthen was to go on foot to meet them on their return.\n\nWell!  I was full of business, examining tradesmen's books, adding \nup columns, paying money, filing receipts, and I dare say making a \ngreat bustle about it when Mr. Guppy was announced and shown in.  I \nhad had some idea that the clerk who was to be sent down might be \nthe young gentleman who had met me at the coach-office, and I was \nglad to see him, because he was associated with my present \nhappiness.\n\nI scarcely knew him again, he was so uncommonly smart.  He had an \nentirely new suit of glossy clothes on, a shining hat, lilac-kid \ngloves, a neckerchief of a variety of colours, a large hot-house \nflower in his button-hole, and a thick gold ring on his little \nfinger.  Besides which, he quite scented the dining-room with \nbear's-grease and other perfumery.  He looked at me with an \nattention that quite confused me when I begged him to take a seat \nuntil the servant should return; and as he sat there crossing and \nuncrossing his legs in a corner, and I asked him if he had had a \npleasant ride, and hoped that Mr. Kenge was well, I never looked at \nhim, but I found him looking at me in the same scrutinizing and \ncurious way.\n\nWhen the request was brought to him that he would go up-stairs to \nMr. Boythorn's room, I mentioned that he would find lunch prepared \nfor him when he came down, of which Mr. Jarndyce hoped he would \npartake.  He said with some embarrassment, holding the handle of the \ndoor, '\"Shall I have the honour of finding you here, miss?\"  I \nreplied yes, I should be there; and he went out with a bow and \nanother look.\n\nI thought him only awkward and shy, for he was evidently much \nembarrassed; and I fancied that the best thing I could do would be \nto wait until I saw that he had everything he wanted and then to \nleave him to himself.  The lunch was soon brought, but it remained \nfor some time on the table.  The interview with Mr. Boythorn was a \nlong one, and a stormy one too, I should think, for although his \nroom was at some distance I heard his loud voice rising every now \nand then like a high wind, and evidently blowing perfect broadsides \nof denunciation.\n\nAt last Mr. Guppy came back, looking something the worse for the \nconference.  \"My eye, miss,\" he said in a low voice, \"he's a \nTartar!\"\n\n\"Pray take some refreshment, sir,\" said I.\n\nMr. Guppy sat down at the table and began nervously sharpening the \ncarving-knife on the carving-fork, still looking at me (as I felt \nquite sure without looking at him) in the same unusual manner.  The \nsharpening lasted so long that at last I felt a kind of obligation \non me to raise my eyes in order that I might break the spell under \nwhich he seemed to labour, of not being able to leave off.\n\nHe immediately looked at the dish and began to carve.\n\n\"What will you take yourself, miss?  You'll take a morsel of \nsomething?\"\n\n\"No, thank you,\" said I.\n\n\"Shan't I give you a piece of anything at all, miss?\" said Mr. \nGuppy, hurriedly drinking off a glass of wine.\n\n\"Nothing, thank you,\" said I.  \"I have only waited to see that you \nhave everything you want.  Is there anything I can order for you?\"\n\n\"No, I am much obliged to you, miss, I'm sure.  I've everything that \nI can require to make me comfortable--at least I--not comfortable--\nI'm never that.\"  He drank off two more glasses of wine, one after \nanother.\n\nI thought I had better go.\n\n\"I beg your pardon, miss!\" said Mr. Guppy, rising when he saw me \nrise.  \"But would you allow me the favour of a minute's private \nconversation?\"\n\nNot knowing what to say, I sat down again.\n\n\"What follows is without prejudice, miss?\" said Mr. Guppy, anxiously \nbringing a chair towards my table.\n\n\"I don't understand what you mean,\" said I, wondering.\n\n\"It's one of our law terms, miss.  You won't make any use of it to \nmy detriment at Kenge and Carboy's or elsewhere.  If our \nconversation shouldn't lead to anything, I am to be as I was and am \nnot to be prejudiced in my situation or worldly prospects.  In \nshort, it's in total confidence.\"\n\n\"I am at a loss, sir,\" said I, \"to imagine what you can have to \ncommunicate in total confidence to me, whom you have never seen but \nonce; but I should be very sorry to do you any injury.\"\n\n\"Thank you, miss.  I'm sure of it--that's quite sufficient.\"  All \nthis time Mr. Guppy was either planing his forehead with his \nhandkerchief or tightly rubbing the palm of his left hand with the \npalm of his right.  \"If you would excuse my taking another glass of \nwine, miss, I think it might assist me in getting on without a \ncontinual choke that cannot fail to be mutually unpleasant.\"\n\nHe did so, and came back again.  I took the opportunity of moving \nwell behind my table.\n\n\"You wouldn't allow me to offer you one, would you miss?\" said Mr. \nGuppy, apparently refreshed.\n\n\"Not any,\" said I.\n\n\"Not half a glass?\" said Mr. Guppy.  \"Quarter?  No!  Then, to \nproceed.  My present salary, Miss Summerson, at Kenge and Carboy's, \nis two pound a week.  When I first had the happiness of looking upon \nyou, it was one fifteen, and had stood at that figure for a \nlengthened period.  A rise of five has since taken place, and a \nfurther rise of five is guaranteed at the expiration of a term not \nexceeding twelve months from the present date.  My mother has a \nlittle property, which takes the form of a small life annuity, upon \nwhich she lives in an independent though unassuming manner in the \nOld Street Road.  She is eminently calculated for a mother-in-law.  \nShe never interferes, is all for peace, and her disposition easy.  \nShe has her failings--as who has not?--but I never knew her do it \nwhen company was present, at which time you may freely trust her \nwith wines, spirits, or malt liquors.  My own abode is lodgings at \nPenton Place, Pentonville.  It is lowly, but airy, open at the back, \nand considered one of the 'ealthiest outlets.  Miss Summerson!  In \nthe mildest language, I adore you.  Would you be so kind as to allow \nme (as I may say) to file a declaration--to make an offer!\"\n\nMr. Guppy went down on his knees.  I was well behind my table and \nnot much frightened.  I said, \"Get up from that ridiculous position \nlmmediately, sir, or you will oblige me to break my implied promise \nand ring the bell!\"\n\n\"Hear me out, miss!\" said Mr. Guppy, folding his hands.\n\n\"I cannot consent to hear another word, sir,\" I returned, \"Unless \nyou get up from the carpet directly and go and sit down at the table \nas you ought to do if you have any sense at all.\"\n\nHe looked piteously, but slowly rose and did so.\n\n\"Yet what a mockery it is, miss,\" he said with his hand upon his \nheart and shaking his head at me in a melancholy manner over the \ntray, \"to be stationed behind food at such a moment.  The soul \nrecoils from food at such a moment, miss.\"\n\n\"I beg you to conclude,\" said I; \"you have asked me to hear you out, \nand I beg you to conclude.\"\n\n\"I will, miss,\" said Mr. Guppy.  \"As I love and honour, so likewise \nI obey.  Would that I could make thee the subject of that vow before \nthe shrine!\"\n\n\"That is quite impossible,\" said I, \"and entirely out of the \nquestion.\"\n\n\"I am aware,\" said Mr. Guppy, leaning forward over the tray and \nregarding me, as I again strangely felt, though my eyes were not \ndirected to him, with his late intent look, \"I am aware that in a \nworldly point of view, according to all appearances, my offer is a \npoor one.  But, Miss Summerson!  Angel!  No, don't ring--I have been \nbrought up in a sharp school and am accustomed to a variety of \ngeneral practice.  Though a young man, I have ferreted out evidence, \ngot up cases, and seen lots of life.  Blest with your hand, what \nmeans might I not find of advancing your interests and pushing your \nfortunes!  What might I not get to know, nearly concerning you?  I \nknow nothing now, certainly; but what MIGHT I not if I had your \nconfidence, and you set me on?\"\n\nI told him that he addressed my interest or what he supposed to be \nmy interest quite as unsuccessfully as he addressed my inclination, \nand he would now understand that I requested him, if he pleased, to \ngo away immediately.\n\n\"Cruel miss,\" said Mr. Guppy, \"hear but another word!  I think you \nmust have seen that I was struck with those charms on the day when I \nwaited at the Whytorseller.  I think you must have remarked that I \ncould not forbear a tribute to those charms when I put up the steps \nof the 'ackney-coach.  It was a feeble tribute to thee, but it was \nwell meant.  Thy image has ever since been fixed in my breast.  I \nhave walked up and down of an evening opposite Jellyby's house only \nto look upon the bricks that once contained thee.  This out of to-\nday, quite an unnecessary out so far as the attendance, which was \nits pretended object, went, was planned by me alone for thee alone.  \nIf I speak of interest, it is only to recommend myself and my \nrespectful wretchedness.  Love was before it, and is before it.\"\n\n\"I should be pained, Mr. Guppy,\" said I, rising and putting my hand \nupon the bell-rope, \"to do you or any one who was sincere the \ninjustice of slighting any honest feeling, however disagreeably \nexpressed.  If you have really meant to give me a proof of your good \nopinion, though ill-timed and misplaced, I feel that I ought to \nthank you.  I have very little reason to be proud, and I am not \nproud.  I hope,\" I think I added, without very well knowing what I \nsaid, \"that you will now go away as if you had never been so \nexceedingly foolish and attend to Messrs. Kenge and Carboy's \nbusiness.\"\n\n\"Half a minute, miss!\" cried Mr. Guppy, checking me as I was about \nto ring.  \"This has been without prejudice?\"\n\n\"I will never mention it,\" said I, \"unless you should give me future \noccasion to do so.\"\n\n\"A quarter of a minute, miss!  In case you should think better at \nany time, however distant--THAT'S no consequence, for my feelings \ncan never alter--of anything I have said, particularly what might I \nnot do, Mr. William Guppy, eighty-seven, Penton Place, or if \nremoved, or dead (of blighted hopes or anything of that sort), care \nof Mrs. Guppy, three hundred and two, Old Street Road, will be \nsufficient.\"\n\nI rang the bell, the servant came, and Mr. Guppy, laying his written \ncard upon the table and making a dejected bow, departed.  Raising my \neyes as he went out, I once more saw him looking at me after he had \npassed the door.\n\nI sat there for another hour or more, finishing my books and \npayments and getting through plenty of business.  Then I arranged my \ndesk, and put everything away, and was so composed and cheerful that \nI thought I had quite dismissed this unexpected incident.  But, when \nI went upstairs to my own room, I surprised myself by beginning to \nlaugh about it and then surprised myself still more by beginning to \ncry about it.  In short, I was in a flutter for a little while and \nfelt as if an old chord had been more coarsely touched than it ever \nhad been since the days of the dear old doll, long buried in the \ngarden.\n\n\n\nCHAPTER X\n\nThe Law-Writer\n\n\nOn the eastern borders of Chancery Lane, that is to say, more \nparticularly in Cook's Court, Cursitor Street, Mr. Snagsby, law-\nstationer, pursues his lawful calling.  In the shade of Cook's \nCourt, at most times a shady place, Mr. Snagsby has dealt in all \nsorts of blank forms of legal process; in skins and rolls of \nparchment; in paper--foolscap, brief, draft, brown, white, whitey-\nbrown, and blotting; in stamps; in office-quills, pens, ink, India-\nrubber, pounce, pins, pencils, sealing-wax, and wafers; in red tape \nand green ferret; in pocket-books, almanacs, diaries, and law lists; \nin string boxes, rulers, inkstands--glass and leaden--pen-knives, \nscissors, bodkins, and other small office-cutlery; in short, in \narticles too numerous to mention, ever since he was out of his time \nand went into partnership with Peffer.  On that occasion, Cook's \nCourt was in a manner revolutionized by the new inscription in fresh \npaint, PEFFER AND SNAGSBY, displacing the time-honoured and not \neasily to be deciphered legend PEFFER only.  For smoke, which is the \nLondon ivy, had so wreathed itself round Peffer's name and clung to \nhis dwelling-place that the affectionate parasite quite overpowered \nthe parent tree.\n\nPeffer is never seen in Cook's Court now.  He is not expected there, \nfor he has been recumbent this quarter of a century in the \nchurchyard of St. Andrews, Holborn, with the waggons and hackney-\ncoaches roaring past him all the day and half the night like one \ngreat dragon.  If he ever steal forth when the dragon is at rest to \nair himself again in Cook's Court until admonished to return by the \ncrowing of the sanguine cock in the cellar at the little dairy in \nCursitor Street, whose ideas of daylight it would be curious to \nascertain, since he knows from his personal observation next to \nnothing about it--if Peffer ever do revisit the pale glimpses of \nCook's Court, which no law-stationer in the trade can positively \ndeny, he comes invisibly, and no one is the worse or wiser.\n\nIn his lifetime, and likewise in the period of Snagsby's \"time\" of \nseven long years, there dwelt with Peffer in the same law-\nstationering premises a niece--a short, shrewd niece, something too \nviolently compressed about the waist, and with a sharp nose like a \nsharp autumn evening, inclining to be frosty towards the end.  The \nCook's Courtiers had a rumour flying among them that the mother of \nthis niece did, in her daughter's childhood, moved by too jealous a \nsolicitude that her figure should approach perfection, lace her up \nevery morning with her maternal foot against the bed-post for a \nstronger hold and purchase; and further, that she exhibited \ninternally pints of vinegar and lemon-juice, which acids, they held, \nhad mounted to the nose and temper of the patient.  With whichsoever \nof the many tongues of Rumour this frothy report originated, it \neither never reached or never influenced the ears of young Snagsby, \nwho, having wooed and won its fair subject on his arrival at man's \nestate, entered into two partnerships at once.  So now, in Cook's \nCourt, Cursitor Street, Mr. Snagsby and the niece are one; and the \nniece still cherishes her figure, which, however tastes may differ, \nis unquestionably so far precious that there is mighty little of it.\n\nMr. and Mrs. Snagsby are not only one bone and one flesh, but, to \nthe neighbours' thinking, one voice too.  That voice, appearing to \nproceed from Mrs. Snagsby alone, is heard in Cook's Court very \noften.  Mr. Snagsby, otherwise than as he finds expression through \nthese dulcet tones, is rarely heard.  He is a mild, bald, timid man \nwith a shining head and a scrubby clump of black hair sticking out \nat the back.  He tends to meekness and obesity.  As he stands at his \ndoor in Cook's Court in his grey shop-coat and black calico sleeves, \nlooking up at the clouds, or stands behind a desk in his dark shop \nwith a heavy flat ruler, snipping and slicing at sheepskin in \ncompany with his two 'prentices, he is emphatically a retiring and \nunassuming man.  From beneath his feet, at such times, as from a \nshrill ghost unquiet in its grave, there frequently arise \ncomplainings and lamentations in the voice already mentioned; and \nhaply, on some occasions when these reach a sharper pitch than \nusual, Mr. Snagsby mentions to the 'prentices, \"I think my little \nwoman is a-giving it to Guster!\"\n\nThis proper name, so used by Mr. Snagsby, has before now sharpened \nthe wit of the Cook's Courtiers to remark that it ought to be the \nname of Mrs. Snagsby, seeing that she might with great force and \nexpression be termed a Guster, in compliment to her stormy \ncharacter.  It is, however, the possession, and the only possession \nexcept fifty shillings per annum and a very small box indifferently \nfilled with clothing, of a lean young woman from a workhouse (by \nsome supposed to have been christened Augusta) who, although she was \nfarmed or contracted for during her growing time by an amiable \nbenefactor of his species resident at Tooting, and cannot fail to \nhave been developed under the most favourable circumstances, \"has \nfits,\" which the parish can't account for.\n\nGuster, really aged three or four and twenty, but looking a round \nten years older, goes cheap with this unaccountable drawback of \nfits, and is so apprehensive of being returned on the hands of her \npatron saint that except when she is found with her head in the \npail, or the sink, or the copper, or the dinner, or anything else \nthat happens to be near her at the time of her seizure, she is \nalways at work.  She is a satisfaction to the parents and guardians \nof the 'prentices, who feel that there is little danger of her \ninspiring tender emotions in the breast of youth; she is a \nsatisfaction to Mrs. Snagsby, who can always find fault with her; \nshe is a satisfaction to Mr. Snagsby, who thinks it a charity to \nkeep her.  The law-stationer's establishment is, in Guster's eyes, a \ntemple of plenty and splendour.  She believes the little drawing-\nroom upstairs, always kept, as one may say, with its hair in papers \nand its pinafore on, to be the most elegant apartment in \nChristendom.  The view it commands of Cook's Court at one end (not \nto mention a squint into Cursitor Street) and of Coavinses' the \nsheriff's officer's backyard at the other she regards as a prospect \nof unequalled beauty.  The portraits it displays in oil--and plenty \nof it too--of Mr. Snagsby looking at Mrs. Snagsby and of Mrs. \nSnagsby looking at Mr. Snagsby are in her eyes as achievements of \nRaphael or Titian.  Guster has some recompenses for her many \nprivations.\n\nMr. Snagsby refers everything not in the practical mysteries of the \nbusiness to Mrs. Snagsby.  She manages the money, reproaches the \ntax-gatherers, appoints the times and places of devotion on Sundays, \nlicenses Mr. Snagsby's entertainments, and acknowledges no \nresponsibility as to what she thinks fit to provide for dinner, \ninsomuch that she is the high standard of comparison among the \nneighbouring wives a long way down Chancery Lane on both sides, and \neven out in Holborn, who in any domestic passages of arms habitually \ncall upon their husbands to look at the difference between their \n(the wives') position and Mrs. Snagsby's, and their (the husbands') \nbehaviour and Mr. Snagsby's.  Rumour, always flying bat-like about \nCook's Court and skimming in and out at everybody's windows, does \nsay that Mrs. Snagsby is jealous and inquisitive and that Mr. \nSnagsby is sometimes worried out of house and home, and that if he \nhad the spirit of a mouse he wouldn't stand it.  It is even observed \nthat the wives who quote him to their self-willed husbands as a \nshining example in reality look down upon him and that nobody does \nso with greater superciliousness than one particular lady whose lord \nis more than suspected of laying his umbrella on her as an \ninstrument of correction.  But these vague whisperings may arise \nfrom Mr. Snagsby's being in his way rather a meditative and poetical \nman, loving to walk in Staple Inn in the summer-time and to observe \nhow countrified the sparrows and the leaves are, also to lounge \nabout the Rolls Yard of a Sunday afternoon and to remark (if in good \nspirits) that there were old times once and that you'd find a stone \ncoffin or two now under that chapel, he'll be bound, if you was to \ndig for it.  He solaces his imagination, too, by thinking of the \nmany Chancellors and Vices, and Masters of the Rolls who are \ndeceased; and he gets such a flavour of the country out of telling \nthe two 'prentices how he HAS heard say that a brook \"as clear as \ncrystial\" once ran right down the middle of Holborn, when Turnstile \nreally was a turnstile, leading slap away into the meadows--gets \nsuch a flavour of the country out of this that he never wants to go \nthere.\n\nThe day is closing in and the gas is lighted, but is not yet fully \neffective, for it is not quite dark.  Mr. Snagsby standing at his \nshop-door looking up at the clouds sees a crow who is out late skim \nwestward over the slice of sky belonging to Cook's Court.  The crow \nflies straight across Chancery Lane and Lincoln's Inn Garden into \nLincoln's Inn Fields.\n\nHere, in a large house, formerly a house of state, lives Mr. \nTulkinghorn.  It is let off in sets of chambers now, and in those \nshrunken fragments of its greatness, lawyers lie like maggots in \nnuts.  But its roomy staircases, passages, and antechambers still \nremain; and even its painted ceilings, where Allegory, in Roman \nhelmet and celestial linen, sprawls among balustrades and pillars, \nflowers, clouds, and big-legged boys, and makes the head ache--as \nwould seem to be Allegory's object always, more or less.  Here, \namong his many boxes labelled with transcendent names, lives Mr. \nTulkinghorn, when not speechlessly at home in country-houses where \nthe great ones of the earth are bored to death.  Here he is to-day, \nquiet at his table.  An oyster of the old school whom nobody can \nopen.\n\nLike as he is to look at, so is his apartment in the dusk of the \npresent afternoon.  Rusty, out of date, withdrawing from attention, \nable to afford it.  Heavy, broad-backed, old-fashioned, mahogany-\nand-horsehair chairs, not easily lifted; obsolete tables with \nspindle-legs and dusty baize covers; presentation prints of the \nholders of great titles in the last generation or the last but one, \nenviron him.  A thick and dingy Turkey-carpet muffles the floor \nwhere he sits, attended by two candles in old-fashioned silver \ncandlesticks that give a very insufficient light to his large room.  \nThe titles on the backs of his books have retired into the binding; \neverything that can have a lock has got one; no key is visible.  \nVery few loose papers are about.  He has some manuscript near him, \nbut is not referring to it.  With the round top of an inkstand and \ntwo broken bits of sealing-wax he is silently and slowly working out \nwhatever train of indecision is in his mind.  Now tbe inkstand top \nis in the middle, now the red bit of sealing-wax, now the black bit.  \nThat's not it.  Mr. Tulkinghorn must gather them all up and begin \nagain.\n\nHere, beneath the painted ceiling, with foreshortened Allegory \nstaring down at his intrusion as if it meant to swoop upon him, and \nhe cutting it dead, Mr. Tulkinghorn has at once his house and \noffice.  He keeps no staff, only one middle-aged man, usually a \nlittle out at elbows, who sits in a high pew in the hall and is \nrarely overburdened with business.  Mr. Tulkinghorn is not in a \ncommon way.  He wants no clerks.  He is a great reservoir of \nconfidences, not to be so tapped.  His clients want HIM; he is all \nin all.  Drafts that he requires to be drawn are drawn by special-\npleaders in the temple on mysterious instructions; fair copies that \nhe requires to be made are made at the stationers', expense being no \nconsideration.  The middle-aged man in the pew knows scarcely more \nof the affairs of the peerage than any crossing-sweeper in Holborn.\n\nThe red bit, the black bit, the inkstand top, the other inkstand \ntop, the little sand-box.  So!  You to the middle, you to the right, \nyou to the left.  This train of indecision must surely be worked out \nnow or never.  Now!  Mr. Tulkinghorn gets up, adjusts his \nspectacles, puts on his hat, puts the manuscript in his pocket, goes \nout, tells the middle-aged man out at elbows, \"I shall be back \npresently.\"  Very rarely tells him anything more explicit.\n\nMr. Tulkinghorn goes, as the crow came--not quite so straight, but \nnearly--to Cook's Court, Cursitor Street.  To Snagsby's, Law-\nStationer's, Deeds engrossed and copied, Law-Writing executed in all \nits branches, &c., &c., &c.\n\nIt is somewhere about five or six o'clock in the afternoon, and a \nbalmy fragrance of warm tea hovers in Cook's Court.  It hovers about \nSnagsby's door.  The hours are early there: dinner at half-past one \nand supper at half-past nine.  Mr. Snagsby was about to descend into \nthe subterranean regions to take tea when he looked out of his door \njust now and saw the crow who was out late.\n\n\"Master at home?\"\n\nGuster is minding the shop, for the 'prentices take tea in the \nkitchen with Mr. and Mrs. Snagsby; consequently, the robe-maker's \ntwo daughters, combing their curls at the two glasses in the two \nsecond-floor windows of the opposite house, are not driving the two \n'prentices to distraction as they fondly suppose, but are merely \nawakening the unprofitable admiration of Guster, whose hair won't \ngrow, and never would, and it is confidently thought, never will.\n\n\"Master at home?\" says Mr. Tulkinghorn.\n\nMaster is at home, and Guster will fetch him.  Guster disappears, \nglad to get out of the shop, which she regards with mingled dread \nand veneration as a storehouse of awful implements of the great \ntorture of the law--a place not to be entered after the gas is \nturned off.\n\nMr. Snagsby appears, greasy, warm, herbaceous, and chewing.  Bolts a \nbit of bread and butter.  Says, \"Bless my soul, sir!  Mr. \nTulkinghorn!\"\n\n\"I want half a word with you, Snagsby.\"\n\n\"Certainly, sir!  Dear me, sir, why didn't you send your young man \nround for me?  Pray walk into the back shop, sir.\"  Snagsby has \nbrightened in a moment.\n\nThe confined room, strong of parchment-grease, is warehouse, \ncounting-house, and copying-office.  Mr. Tulkinghorn sits, facing \nround, on a stool at the desk.\n\n\"Jarndyce and Jarndyce, Snagsby.\"\n\n\"Yes, sir.\"  Mr. Snagsby turns up the gas and coughs behind his \nhand, modestly anticipating profit.  Mr. Snagsby, as a timid man, is \naccustomed to cough with a variety of expressions, and so to save \nwords.\n\n\"You copied some affidavits in that cause for me lately.\"\n\n\"Yes, sir, we did.\"\n\n\"There was one of them,\" says Mr. Tulkinghorn, carelessly feeling--\ntight, unopenable oyster of the old school!--in the wrong coat-\npocket, \"the handwriting of which is peculiar, and I rather like.  \nAs I happened to be passing, and thought I had it about me, I looked \nin to ask you--but I haven't got it.  No matter, any other time will \ndo.  Ah! here it is!  I looked in to ask you who copied this.\"\n\n'\"Who copied this, sir?\" says Mr. Snagsby, taking it, laying it flat \non the desk, and separating all the sheets at once with a twirl and \na twist of the left hand peculiar to lawstationers.  \"We gave this \nout, sir.  We were giving out rather a large quantity of work just \nat that time.  I can tell you in a moment who copied it, sir, by \nreferring to my book.\"\n\nMr. Snagsby takes his book down from the safe, makes another bolt of \nthe bit of bread and butter which seemed to have stopped short, eyes \nthe affidavit aside, and brings his right forefinger travelling down \na page of the book, \"Jewby--Packer--Jarndyce.\"\n\n\"Jarndyce!  Here we are, sir,\" says Mr. Snagsby.  \"To be sure!  I \nmight have remembered it.  This was given out, sir, to a writer who \nlodges just over on the opposite side of the lane.\"\n\nMr. Tulkinghorn has seen the entry, found it before the law-\nstationer, read it while the forefinger was coming down the hill.\n\n\"WHAT do you call him?  Nemo?\" says Mr. Tulkinghorn.  \"Nemo, sir.  \nHere it is.  Forty-two folio.  Given out on the Wednesday night at \neight o'clock, brought in on the Thursday morning at half after \nnine.\"\n\n\"Nemo!\" repeats Mr. Tulkinghorn.  \"Nemo is Latin for no one.\"\n\n\"It must be English for some one, sir, I think,\" Mr. Snagsby submits \nwith his deferential cough.  \"It is a person's name.  Here it is, \nyou see, sir!  Forty-two folio.  Given out Wednesday night, eight \no'clock; brought in Thursday morning, half after nine.\"\n\nThe tail of Mr. Snagsby's eye becomes conscious of the head of Mrs. \nSnagsby looking in at the shop-door to know what he means by \ndeserting his tea.  Mr. Snagsby addresses an explanatory cough to \nMrs. Snagsby, as who should say, \"My dear, a customer!\"\n\n\"Half after nine, sir,\" repeats Mr. Snagsby.  \"Our law-writers, who \nlive by job-work, are a queer lot; and this may not be his name, but \nit's the name he goes by.  I remember now, sir, that he gives it in \na written advertisement he sticks up down at the Rule Office, and \nthe King's Bench Office, and the Judges' Chambers, and so forth.  \nYou know the kind of document, sir--wanting employ?\"\n\nMr. Tulkinghorn glances through the little window at the back of \nCoavinses', the sheriff's officer's, where lights shine in \nCoavinses' windows.  Coavinses' coffee-room is at the back, and the \nshadows of several gentlemen under a cloud loom cloudily upon the \nblinds.  Mr. Snagsby takes the opportunity of slightly turning his \nhead to glance over his shoulder at his little woman and to make \napologetic motions with his mouth to this effect: \"Tul-king-horn--\nrich--in-flu-en-tial!\"\n\n\"Have you given this man work before?\" asks Mr. Tulkinghorn.\n\n\"Oh, dear, yes, sir!  Work of yours.\"\n\n\"Thinking of more important matters, I forget where you said he \nlived?\"\n\n\"Across the lane, sir.  In fact, he lodges at a--\" Mr. Snagsby makes \nanother bolt, as if the bit of bread and buffer were insurmountable \n\"--at a rag and bottle shop.\"\n\n\"Can you show me the place as I go back?\"\n\n\"With the greatest pleasure, sir!\"\n\nMr. Snagsby pulls off his sleeves and his grey coat, pulls on his \nblack coat, takes his hat from its peg.  \"Oh! Here is my little \nwoman!\" he says aloud.  \"My dear, will you be so kind as to tell one \nof the lads to look after the shop while I step across the lane with \nMr. Tulkinghorn?  Mrs. Snagsby, sir--I shan't be two minutes, my \nlove!\"\n\nMrs. Snagsby bends to the lawyer, retires behind the counter, peeps \nat them through the window-blind, goes softly into the back office, \nrefers to the entries in the book still lying open.  Is evidently \ncurious.\n\n\"You will find that the place is rough, sir,\" says Mr. Snagsby, \nwalking deferentially in the road and leaving the narrow pavement to \nthe lawyer; \"and the party is very rough.  But they're a wild lot in \ngeneral, sir.  The advantage of this particular man is that he never \nwants sleep.  He'll go at it right on end if you want him to, as \nlong as ever you like.\"\n\nIt is quite dark now, and the gas-lamps have acquired their full \neffect.  Jostling against clerks going to post the day's letters, \nand against counsel and attorneys going home to dinner, and against \nplaintiffs and defendants and suitors of all sorts, and against the \ngeneral crowd, in whose way the forensic wisdom of ages has \ninterposed a million of obstacles to the transaction of the \ncommonest business of life; diving through law and equity, and \nthrough that kindred mystery, the street mud, which is made of \nnobody knows what and collects about us nobody knows whence or how--\nwe only knowing in general that when there is too much of it we find \nit necessary to shovel it away--the lawyer and the law-stationer \ncome to a rag and bottle shop and general emporium of much \ndisregarded merchandise, lying and being in the shadow of the wall \nof Lincoln's Inn, and kept, as is announced in paint, to all whom it \nmay concern, by one Krook.\n\n\"This is where he lives, sir,\" says the law-stationer.\n\n\"This is where he lives, is it?\" says the lawyer unconcernedly.  \n\"Thank you.\"\n\n\"Are you not going in, sir?\"\n\n\"No, thank you, no; I am going on to the Fields at present.  Good \nevening.  Thank you!\"  Mr. Snagsby lifts his hat and returns to his \nlittle woman and his tea.\n\nBut Mr. Tulkinghorn does not go on to the Fields at present.  He \ngoes a short way, turns back, comes again to the shop of Mr. Krook, \nand enters it straight.  It is dim enough, with a blot-headed candle \nor so in the windows, and an old man and a cat sitting in the back \npart by a fire.  The old man rises and comes forward, with another \nblot-headed candle in his hand.\n\n\"Pray is your lodger within?\"\n\n\"Male or female, sir?\" says Mr. Krook.\n\n\"Male.  The person who does copying.\"\n\nMr. Krook has eyed his man narrowly.  Knows him by sight.  Has an \nindistinct impression of his aristocratic repute.\n\n\"Did you wish to see him, sir?\"\n\n\"Yes.\"\n\n\"It's what I seldom do myself,\" says Mr. Krook with a grin.  \"Shall \nI call him down?  But it's a weak chance if he'd come, sir!\"\n\n\"I'll go up to him, then,\" says Mr. Tulkinghorn.\n\n\"Second floor, sir.  Take the candle.  Up there!\"  Mr. Krook, with \nhis cat beside him, stands at the bottom of the staircase, looking \nafter Mr. Tulkinghorn.  \"Hi-hi!\" he says when Mr. Tulkinghorn has \nnearly disappeared.  The lawyer looks down over the hand-rail.  The \ncat expands her wicked mouth and snarls at him.\n\n\"Order, Lady Jane!  Behave yourself to visitors, my lady!  You know \nwhat they say of my lodger?\" whispers Krook, going up a step or two.\n\n\"What do they say of him?\"\n\n\"They say he has sold himself to the enemy, but you and I know \nbetter--he don't buy.  I'll tell you what, though; my lodger is so \nblack-humoured and gloomy that I believe he'd as soon make that \nbargain as any other.  Don't put him out, sir.  That's my advice!\"\n\nMr. Tulkinghorn with a nod goes on his way.  He comes to the dark \ndoor on the second floor.  He knocks, receives no answer, opens it, \nand accidentally extinguishes his candle in doing so.\n\nThe air of the room is almost bad enough to have extinguished it if \nhe had not.  It is a small room, nearly black with soot, and grease, \nand dirt.  In the rusty skeleton of a grate, pinched at the middle \nas if poverty had gripped it, a red coke fire burns low.  In the \ncorner by the chimney stand a deal table and a broken desk, a \nwilderness marked with a rain of ink.  In another corner a ragged \nold portmanteau on one of the two chairs serves for cabinet or \nwardrobe; no larger one is needed, for it collapses like the cheeks \nof a starved man.  The floor is bare, except that one old mat, \ntrodden to shreds of rope-yarn, lies perishing upon the hearth.  No \ncurtain veils the darkness of the night, but the discoloured \nshutters are drawn together, and through the two gaunt holes pierced \nin them, famine might be staring in--the banshee of the man upon the \nbed.\n\nFor, on a low bed opposite the fire, a confusion of dirty patchwork, \nlean-ribbed ticking, and coarse sacking, the lawyer, hesitating just \nwithin the doorway, sees a man.  He lies there, dressed in shirt and \ntrousers, with bare feet.  He has a yellow look in the spectral \ndarkness of a candle that has guttered down until the whole length \nof its wick (still burning) has doubled over and left a tower of \nwinding-sheet above it.  His hair is ragged, mingling with his \nwhiskers and his beard--the latter, ragged too, and grown, like the \nscum and mist around him, in neglect.  Foul and filthy as the room \nis, foul and filthy as the air is, it is not easy to perceive what \nfumes those are which most oppress the senses in it; but through the \ngeneral sickliness and faintness, and the odour of stale tobacco, \nthere comes into the lawyer's mouth the bitter, vapid taste of \nopium.\n\n\"Hallo, my friend!\" he cries, and strikes his iron candlestick \nagainst the door.\n\nHe thinks he has awakened his friend.  He lies a little turned away, \nbut his eyes are surely open.\n\n\"Hallo, my friend!\" he cries again.  \"Hallo!  Hallo!\"\n\nAs he rattles on the door, the candle which has drooped so long goes \nout and leaves him in the dark, with the gaunt eyes in the shutters \nstaring down upon the bed.\n\n\n\nCHAPTER XI\n\nOur Dear Brother\n\n\nA touch on the lawyer's wrinkled hand as he stands in the dark room, \nirresolute, makes him start and say, \"What's that?\"\n\n\"It's me,\" returns the old man of the house, whose breath is in his \near.  \"Can't you wake him?\"\n\n\"No.\"\n\n\"What have you done with your candle?\"\n\n\"It's gone out.  Here it is.\"\n\nKrook takes it, goes to the fire, stoops over the red embers, and \ntries to get a light.  The dying ashes have no light to spare, and \nhis endeavours are vain.  Muttering, after an ineffectual call to \nhis lodger, that he will go downstairs and bring a lighted candle \nfrom the shop, the old man departs.  Mr. Tulkinghorn, for some new \nreason that he has, does not await his return in the room, but on \nthe stairs outside.\n\nThe welcome light soon shines upon the wall, as Krook comes slowly \nup with his green-eyed cat following at his heels.  \"Does the man \ngenerally sleep like this?\" inquired the lawyer in a low voice.  \n\"Hi!  I don't know,\" says Krook, shaking his head and lifting his \neyebrows.  \"I know next to nothing of his habits except that he \nkeeps himself very close.\"\n\nThus whispering, they both go in together.  As the light goes in, \nthe great eyes in the shutters, darkening, seem to close.  Not so \nthe eyes upon the bed.\n\n\"God save us!\" exclaims Mr. Tulkinghorn.  \"He is dead!\"  Krook drops \nthe heavy hand he has taken up so suddenly that the arm swings over \nthe bedside.\n\nThey look at one another for a moment.\n\n\"Send for some doctor!  Call for Miss Flite up the stairs, sir.  \nHere's poison by the bed!  Call out for Flite, will you?\" says \nKrook, with his lean hands spread out above the body like a \nvampire's wings.\n\nMr. Tulkinghorn hurries to the landing and calls, \"Miss Flite!  \nFlite!  Make haste, here, whoever you are!  Flite!\"  Krook follows \nhim with his eyes, and while he is calling, finds opportunity to \nsteal to the old portmanteau and steal back again.\n\n\"Run, Flite, run!  The nearest doctor!  Run!\"  So Mr. Krook \naddresses a crazy little woman who is his female lodger, who appears \nand vanishes in a breath, who soon returns accompanied by a testy \nmedical man brought from his dinner, with a broad, snuffy upper lip \nand a broad Scotch tongue.\n\n\"Ey!  Bless the hearts o' ye,\" says the medical man, looking up at \nthem after a moment's examination.  \"He's just as dead as Phairy!\"\n\nMr. Tulkinghorn (standing by the old portmanteau) inquires if he has \nbeen dead any time.\n\n\"Any time, sir?\" says the medical gentleman.  \"It's probable he wull \nhave been dead aboot three hours.\"\n\n\"About that time, I should say,\" observes a dark young man on the \nother side of the bed.\n\n\"Air you in the maydickle prayfession yourself, sir?\" inquires the \nfirst.\n\nThe dark young man says yes.\n\n\"Then I'll just tak' my depairture,\" replies the other, \"for I'm nae \ngude here!\"  With which remark he finishes his brief attendance and \nreturns to finish his dinner.\n\nThe dark young surgeon passes the candle across and across the face \nand carefully examines the law-writer, who has established his \npretensions to his name by becoming indeed No one.\n\n\"I knew this person by sight very well,\" says he.  \"He has purchased \nopium of me for the last year and a half.  Was anybody present \nrelated to him?\" glancing round upon the three bystanders.\n\n\"I was his landlord,\" grimly answers Krook, taking the candle from \nthe surgeon's outstretched hand.  \"He told me once I was the nearest \nrelation he had.\"\n\n\"He has died,\" says the surgeon, \"of an over-dose of opium, there is \nno doubt.  The room is strongly flavoured with it.  There is enough \nhere now,\" taking an old teapot from Mr. Krook, \"to kill a dozen \npeople.\"\n\n\"Do you think he did it on purpose?\" asks Krook.\n\n\"Took the over-dose?\"\n\n\"Yes!\"  Krook almost smacks his lips with the unction of a horrible \ninterest.\n\n\"I can't say.  I should think it unlikely, as he has been in the \nhabit of taking so much.  But nobody can tell.  He was very poor, I \nsuppose?\"\n\n\"I suppose he was.  His room--don't look rich,\" says Krook, who \nmight have changed eyes with his cat, as he casts his sharp glance \naround.  \"But I have never been in it since he had it, and he was \ntoo close to name his circumstances to me.\"\n\n\"Did he owe you any rent?\"\n\n\"Six weeks.\"\n\n\"He will never pay it!\" says the young man, resuming his \nexamination.  \"It is beyond a doubt that he is indeed as dead as \nPharaoh; and to judge from his appearance and condition, I should \nthink it a happy release.  Yet he must have been a good figure when \na youth, and I dare say, good-looking.\"  He says this, not \nunfeelingly, while sitting on the bedstead's edge with his face \ntowards that other face and his hand upon the region of the heart.  \n\"I recollect once thinking there was something in his manner, \nuncouth as it was, that denoted a fall in life.  Was that so?\" he \ncontinues, looking round.\n\nKrook replies, \"You might as well ask me to describe the ladies \nwhose heads of hair I have got in sacks downstairs.  Than that he \nwas my lodger for a year and a half and lived--or didn't live--by \nlaw-writing, I know no more of him.\"\n\nDuring this dialogue Mr. Tulkinghorn has stood aloof by the old \nportmanteau, with his hands behind him, equally removed, to all \nappearance, from all three kinds of interest exhibited near the \nbed--from the young surgeon's professional interest in death, \nnoticeable as being quite apart from his remarks on the deceased as \nan individual; from the old man's unction; and the little crazy \nwoman's awe.  His imperturbable face has been as inexpressive as \nhis rusty clothes.  One could not even say he has been thinking all \nthis while.  He has shown neither patience nor impatience, nor \nattention nor abstraction.  He has shown nothing but his shell.  As \neasily might the tone of a delicate musical instrument be inferred \nfrom its case, as the tone of Mr. Tulkinghorn from his case.\n\nHe now interposes, addressing the young surgeon in his unmoved, \nprofessional way.\n\n\"I looked in here,\" he observes, \"just before you, with the \nintention of giving this deceased man, whom I never saw alive, some \nemployment at his trade of copying.  I had heard of him from my \nstationer--Snagsby of Cook's Court.  Since no one here knows \nanything about him, it might be as well to send for Snagsby.  Ah!\" \nto the little crazy woman, who has often seen him in court, and \nwhom he has often seen, and who proposes, in frightened dumb-show, \nto go for the law-stationer.  \"Suppose you do!\"\n\nWhile she is gone, the surgeon abandons his hopeless investigation \nand covers its subject with the patchwork counterpane.  Mr. Krook \nand he interchange a word or two.  Mr. Tulkinghorn says nothing, \nbut stands, ever, near the old portmanteau.\n\nMr. Snagsby arrives hastily in his grey coat and his black sleeves.  \n\"Dear me, dear me,\" he says; \"and it has come to this, has it!  \nBless my soul!\"\n\n\"Can you give the person of the house any information about this \nunfortunate creature, Snagsby?\" inquires Mr. Tulkinghorn.  \"He was \nin arrears with his rent, it seems.  And he must be buried, you \nknow.\"\n\n\"Well, sir,\" says Mr. Snagsby, coughing his apologetic cough behind \nhis hand, \"I really don't know what advice I could offer, except \nsending for the beadle.\"\n\n\"I don't speak of advice,\" returns Mr. Tulkinghorn.  \"I could \nadvise--\"\n\n\"No one better, sir, I am sure,\" says Mr. Snagsby, with his \ndeferential cough.\n\n\"I speak of affording some clue to his connexions, or to where he \ncame from, or to anything concerning him.\"\n\n\"I assure you, sir,\" says Mr. Snagsby after prefacing his reply \nwith his cough of general propitiation, \"that I no more know where \nhe came from than I know--\"\n\n\"Where he has gone to, perhaps,\" suggests the surgeon to help him \nout.\n\nA pause.  Mr. Tulkinghorn looking at the law-stationer.  Mr. Krook, \nwith his mouth open, looking for somebody to speak next.\n\n\"As to his connexions, sir,\" says Mr. Snagsby, \"if a person was to \nsay to me, \"Snagsby, here's twenty thousand pound down, ready for \nyou in the Bank of England if you'll only name one of 'em,' I \ncouldn't do it, sir!  About a year and a half ago--to the best of my \nbelief, at the time when he first came to lodge at the present rag \nand bottle shop--\"\n\n\"That was the time!\" says Krook with a nod.\n\n\"About a year and a half ago,\" says Mr. Snagsby, strengthened, \"he \ncame into our place one morning after breakfast, and finding my \nlittle woman (which I name Mrs. Snagsby when I use that appellation) \nin our shop, produced a specimen of his handwriting and gave her to \nunderstand that he was in want of copying work to do and was, not to \nput too fine a point upon it,\" a favourite apology for plain \nspeaking with Mr. Snagsby, which he always offers with a sort of \nargumentative frankness, \"hard up!  My little woman is not in \ngeneral partial to strangers, particular--not to put too fine a \npoint upon it--when they want anything.  But she was rather took by \nsomething about this person, whether by his being unshaved, or by \nhis hair being in want of attention, or by what other ladies' \nreasons, I leave you to judge; and she accepted of the specimen, and \nlikewise of the address.  My little woman hasn't a good ear for \nnames,\" proceeds Mr. Snagsby after consulting his cough of \nconsideration behind his hand, \"and she considered Nemo equally the \nsame as Nimrod.  In consequence of which, she got into a habit of \nsaying to me at meals, 'Mr. Snagsby, you haven't found Nimrod any \nwork yet!' or 'Mr. Snagsby, why didn't you give that eight and \nthirty Chancery folio in Jarndyce to Nimrod?' or such like.  And \nthat is the way he gradually fell into job-work at our place; and \nthat is the most I know of him except that he was a quick hand, and \na hand not sparing of night-work, and that if you gave him out, say, \nfive and forty folio on the Wednesday night, you would have it \nbrought in on the Thursday morning.  All of which--\" Mr. Snagsby \nconcludes by politely motioning with his hat towards the bed, as \nmuch as to add, \"I have no doubt my honourable friend would confirm \nif he were in a condition to do it.\"\n\n\"Hadn't you better see,\" says Mr. Tulkinghorn to Krook, \"whether he \nhad any papers that may enlighten you?  There will be an inquest, \nand you will be asked the question.  You can read?\"\n\n\"No, I can't,\" returns the old man with a sudden grin.\n\n\"Snagsby,\" says Mr. Tulkinghorn, \"look over the room for him.  He \nwill get into some trouble or difficulty otherwise.  Being here, \nI'll wait if you make haste, and then I can testify on his behalf, \nif it should ever be necessary, that all was fair and right.  If you \nwill hold the candle for Mr. Snagsby, my friend, he'll soon see \nwhether there is anything to help you.\"\n\n\"In the first place, here's an old portmanteau, sir,\" says Snagsby.\n\nAh, to be sure, so there is!  Mr. Tulkinghorn does not appear to \nhave seen it before, though he is standing so close to it, and \nthough there is very little else, heaven knows.\n\nThe marine-store merchant holds the light, and the law-stationer \nconducts the search.  The surgeon leans against the corner of the \nchimney-piece; Miss Flite peeps and trembles just within the door.  \nThe apt old scholar of the old school, with his dull black breeches \ntied with ribbons at the knees, his large black waistcoat, his long-\nsleeved black coat, and his wisp of limp white neckerchief tied in \nthe bow the peerage knows so well, stands in exactly the same place \nand attitude.\n\nThere are some worthless articles of clothing in the old \nportmanteau; there is a bundle of pawnbrokers' duplicates, those \nturnpike tickets on the road of poverty; there is a crumpled paper, \nsmelling of opium, on which are scrawled rough memoranda--as, took, \nsuch a day, so many grains; took, such another day, so many more--\nbegun some time ago, as if with the intention of being regularly \ncontinued, but soon left off.  There are a few dirty scraps of \nnewspapers, all referring to coroners' inquests; there is nothing \nelse.  They search the cupboard and the drawer of the ink-splashed \ntable.  There is not a morsel of an old letter or of any other \nwriting in either.  The young surgeon examines the dress on the law-\nwriter.  A knife and some odd halfpence are all he finds.  Mr. \nSnagsby's suggestion is the practical suggestion after all, and the \nbeadle must be called in.\n\nSo the little crazy lodger goes for the beadle, and the rest come \nout of the room.  \"Don't leave the cat there!\" says the surgeon; \n\"that won't do!\"  Mr. Krook therefore drives her out before him, and \nshe goes furtively downstairs, winding her lithe tail and licking \nher lips.\n\n\"Good night!\" says Mr. Tulkinghorn, and goes home to Allegory and \nmeditation.\n\nBy this time the news has got into the court.  Groups of its \ninhabitants assemble to discuss the thing, and the outposts of the \narmy of observation (principally boys) are pushed forward to Mr. \nKrook's window, which they closely invest.  A policeman has already \nwalked up to the room, and walked down again to the door, where he \nstands like a tower, only condescending to see the boys at his base \noccasionally; but whenever he does see them, they quail and fall \nback.  Mrs. Perkins, who has not been for some weeks on speaking \nterms with Mrs. Piper in consequence for an unpleasantness \noriginating in young Perkins' having \"fetched\" young Piper \"a \ncrack,\" renews her friendly intercourse on this auspicious occasion.  \nThe potboy at the corner, who is a privileged amateur, as possessing \nofficial knowledge of life and having to deal with drunken men \noccasionally, exchanges confidential communications with the \npoliceman and has the appearance of an impregnable youth, \nunassailable by truncheons and unconfinable in station-houses.  \nPeople talk across the court out of window, and bare-headed scouts \ncome hurrying in from Chancery Lane to know what's the matter.  The \ngeneral feeling seems to be that it's a blessing Mr. Krook warn't \nmade away with first, mingled with a little natural disappointment \nthat he was not.  In the midst of this sensation, the beadle \narrives.\n\nThe beadle, though generally understood in the neighbourhood to be a \nridiculous institution, is not without a certain popularity for the \nmoment, if it were only as a man who is going to see the body.  The \npoliceman considers him an imbecile civilian, a remnant of the \nbarbarous watchmen times, but gives him admission as something that \nmust be borne with until government shall abolish him.  The \nsensation is heightened as the tidings spread from mouth to mouth \nthat the beadle is on the ground and has gone in.\n\nBy and by the beadle comes out, once more intensifying the \nsensation, which has rather languished in the interval.  He is \nunderstood to be in want of witnesses for the inquest to-morrow who \ncan tell the coroner and jury anything whatever respecting the \ndeceased.  Is immediately referred to innumerable people who can \ntell nothing whatever.  Is made more imbecile by being constantly \ninformed that Mrs. Green's son \"was a law-writer his-self and knowed \nhim better than anybody,\" which son of Mrs. Green's appears, on \ninquiry, to be at the present time aboard a vessel bound for China, \nthree months out, but considered accessible by telegraph on \napplication to the Lords of the Admiralty.  Beadle goes into various \nshops and parlours, examining the inhabitants, always shutting the \ndoor first, and by exclusion, delay, and general idiotcy \nexasperating the public.  Policeman seen to smile to potboy.  Public \nloses interest and undergoes reaction.  Taunts the beadle in shrill \nyouthful voices with having boiled a boy, choruses fragments of a \npopular song to that effect and importing that the boy was made into \nsoup for the workhouse.  Policeman at last finds it necessary to \nsupport the law and seize a vocalist, who is released upon the \nflight of the rest on condition of his getting out of this then, \ncome, and cutting it--a condition he immediately observes.  So the \nsensation dies off for the time; and the unmoved policeman (to whom \na little opium, more or less, is nothing), with his shining hat, \nstiff stock, inflexible great-coat, stout belt and bracelet, and all \nthings fitting, pursues his lounging way with a heavy tread, beating \nthe palms of his white gloves one against the other and stopping now \nand then at a street-corner to look casually about for anything \nbetween a lost child and a murder.\n\nUnder cover of the night, the feeble-minded beadle comes flitting \nabout Chancery Lane with his summonses, in which every juror's name \nis wrongly spelt, and nothing rightly spelt but the beadle's own \nname, which nobody can read or wants to know.  The summonses served \nand his witnesses forewarned, the beadle goes to Mr. Krook's to keep \na small appointment he has made with certain paupers, who, presently \narriving, are conducted upstairs, where they leave the great eyes in \nthe shutter something new to stare at, in that last shape which \nearthly lodgings take for No one--and for Every one.\n\nAnd all that night the coffin stands ready by the old portmanteau; \nand the lonely figure on the bed, whose path in life has lain \nthrough five and forty years, lies there with no more track behind \nhim that any one can trace than a deserted infant.\n\nNext day the court is all alive--is like a fair, as Mrs. Perkins, \nmore than reconciled to Mrs. Piper, says in amicable conversation \nwith that excellent woman.  The coroner is to sit in the first-floor \nroom at the Sol's Arms, where the Harmonic Meetings take place twice \na week and where the chair is filled by a gentleman of professional \ncelebrity, faced by Little Swills, the comic vocalist, who hopes \n(according to the bill in the window) that his friends will rally \nround him and support first-rate talent.  The Sol's Arms does a \nbrisk stroke of business all the morning.  Even children so require \nsustaining under the general excitement that a pieman who has \nestablished himself for the occasion at the corner of the court says \nhis brandy-balls go off like smoke.  What time the beadle, hovering \nbetween the door of Mr. Krook's establishment and the door of the \nSol's Arms, shows the curiosity in his keeping to a few discreet \nspirits and accepts the compliment of a glass of ale or so in \nreturn.\n\nAt the appointed hour arrives the coroner, for whom the jurymen are \nwaiting and who is received with a salute of skittles from the good \ndry skittle-ground attached to the Sol's Arms.  The coroner \nfrequents more public-houses than any man alive.  The smell of \nsawdust, beer, tobacco-smoke, and spirits is inseparable in his \nvocation from death in its most awful shapes.  He is conducted by \nthe beadle and the landlord to the Harmonic Meeting Room, where he \nputs his hat on the piano and takes a Windsor-chair at the head of a \nlong table formed of several short tables put together and \nornamented with glutinous rings in endless involutions, made by pots \nand glasses.  As many of the jury as can crowd together at the table \nsit there.  The rest get among the spittoons and pipes or lean \nagainst the piano.  Over the coroner's head is a small iron garland, \nthe pendant handle of a bell, which rather gives the majesty of the \ncourt the appearance of going to be hanged presently.\n\nCall over and swear the jury!  While the ceremony is in progress, \nsensation is created by the entrance of a chubby little man in a \nlarge shirt-collar, with a moist eye and an inflamed nose, who \nmodestly takes a position near the door as one of the general \npublic, but seems familiar with the room too.  A whisper circulates \nthat this is Little Swills.  It is considered not unlikely that he \nwill get up an imitation of the coroner and make it the principal \nfeature of the Harmonic Meeting in the evenlng.\n\n\"Well, gentlemen--\" the coroner begins.\n\n\"Silence there, will you!\" says the beadle.  Not to the coroner, \nthough it might appear so.\n\n\"Well, gentlemen,\" resumes the coroner.  \"You are impanelled here to \ninquire into the death of a certain man.  Evidence will be given \nbefore you as to the circumstances attending that death, and you \nwill give your verdict according to the--skittles; they must be \nstopped, you know, beadle!--evidence, and not according to anything \nelse.  The first thing to be done is to view the body.\"\n\n\"Make way there!\" cries the beadle.\n\nSo they go out in a loose procession, something after the manner of \na straggling funeral, and make their inspection in Mr. Krook's back \nsecond floor, from which a few of the jurymen retire pale and \nprecipitately.  The beadle is very careful that two gentlemen not \nvery neat about the cuffs and buttons (for whose accommodation he \nhas provided a special little table near the coroner in the Harmonic \nMeeting Room) should see all that is to be seen.  For they are the \npublic chroniclers of such inquiries by the line; and he is not \nsuperior to the universal human infirmity, but hopes to read in \nprint what \"Mooney, the active and intelligent beadle of the \ndistrict,\" said and did and even aspires to see the name of Mooney \nas familiarly and patronizingly mentioned as the name of the hangman \nis, according to the latest examples.\n\nLittle Swills is waiting for the coroner and jury on their return.  \nMr. Tulkinghorn, also.  Mr. Tulkinghorn is received with distinction \nand seated near the coroner between that high judicial officer, a \nbagatelle-board, and the coal-box.  The inquiry proceeds.  The jury \nlearn how the subject of their inquiry died, and learn no more about \nhim.  \"A very eminent solicitor is in attendance, gentlemen,\" says \nthe coroner, \"who, I am informed, was accidentally present when \ndiscovery of the death was made, but he could only repeat the \nevidence you have already heard from the surgeon, the landlord, the \nlodger, and the law-stationer, and it is not necessary to trouble \nhim.  Is anybody in attendance who knows anything more?\"\n\nMrs. Piper pushed forward by Mrs. Perkins.  Mrs. Piper sworn.\n\nAnastasia Piper, gentlemen.  Married woman.  Now, Mrs. Piper, what \nhave you got to say about this?\n\nWhy, Mrs. Piper has a good deal to say, chiefly in parentheses and \nwithout punctuation, but not much to tell.  Mrs. Piper lives in the \ncourt (which her husband is a cabinet-maker), and it has long been \nwell beknown among the neighbours (counting from the day next but \none before the half-baptizing of Alexander James Piper aged eighteen \nmonths and four days old on accounts of not being expected to live \nsuch was the sufferings gentlemen of that child in his gums) as the \nplaintive--so Mrs. Piper insists on calling the deceased--was \nreported to have sold himself.  Thinks it was the plaintive's air in \nwhich that report originatinin.  See the plaintive often and \nconsidered as his air was feariocious and not to be allowed to go \nabout some children being timid (and if doubted hoping Mrs. Perkins \nmay be brought forard for she is here and will do credit to her \nhusband and herself and family).  Has seen the plaintive wexed and \nworrited by the children (for children they will ever be and you \ncannot expect them specially if of playful dispositions to be \nMethoozellers which you was not yourself).  On accounts of this and \nhis dark looks has often dreamed as she see him take a pick-axe from \nhis pocket and split Johnny's head (which the child knows not fear \nand has repeatually called after him close at his eels).  Never \nhowever see the plaintive take a pick-axe or any other wepping far \nfrom it.  Has seen him hurry away when run and called after as if \nnot partial to children and never see him speak to neither child nor \ngrown person at any time (excepting the boy that sweeps the crossing \ndown the lane over the way round the corner which if he was here \nwould tell you that he has been seen a-speaking to him frequent).\n\nSays the coroner, is that boy here?  Says the beadle, no, sir, he is \nnot here.  Says the coroner, go and fetch him then.  In the absence \nof the active and intelligent, the coroner converses with Mr. \nTulkinghorn.\n\nOh! Here's the boy, gentlemen!\n\nHere he is, very muddy, very hoarse, very ragged.  Now, boy!  But \nstop a minute.  Caution.  This boy must be put through a few \npreliminary paces.\n\nName, Jo.  Nothing else that he knows on.  Don't know that everybody \nhas two names.  Never heerd of sich a think.  Don't know that Jo is \nshort for a longer name.  Thinks it long enough for HIM.  HE don't \nfind no fault with it.  Spell it?  No.  HE can't spell it.  No \nfather, no mother, no friends.  Never been to school.  What's home?  \nKnows a broom's a broom, and knows it's wicked to tell a lie.  Don't \nrecollect who told him about the broom or about the lie, but knows \nboth.  Can't exactly say what'll be done to him arter he's dead if \nhe tells a lie to the gentlemen here, but believes it'll be \nsomething wery bad to punish him, and serve him right--and so he'll \ntell the truth.\n\n\"This won't do, gentlemen!\" says the coroner with a melancholy shake \nof the head.\n\n\"Don't you think you can receive his evidence, sir?\" asks an \nattentive juryman.\n\n\"Out of the question,\" says the coroner.  \"You have heard the boy.  \n'Can't exactly say' won't do, you know.  We can't take THAT in a \ncourt of justice, gentlemen.  It's terrible depravity.  Put the boy \naside.\"\n\nBoy put aside, to the great edification of the audience, especially \nof Little Swills, the comic vocalist.\n\nNow.  Is there any other witness?  No other witness.\n\nVery well, gentlemen!  Here's a man unknown, proved to have been in \nthe habit of taking opium in large quantities for a year and a half, \nfound dead of too much opium.  If you think you have any evidence to \nlead you to the conclusion that he committed suicide, you will come \nto that conclusion.  If you think it is a case of accidental death, \nyou will find a verdict accordingly.\n\nVerdict accordingly.  Accidental death.  No doubt.  Gentlemen, you \nare discharged.  Good afternoon.\n\nWhile the coroner buttons his great-coat, Mr. Tulkinghorn and he \ngive private audience to the rejected witness in a corner.\n\nThat graceless creature only knows that the dead man (whom he \nrecognized just now by his yellow face and black hair) was sometimes \nhooted and pursued about the streets.  That one cold winter night \nwhen he, the boy, was shivering in a doorway near his crossing, the \nman turned to look at him, and came back, and having questioned him \nand found that he had not a friend in the world, said, \"Neither have \nI.  Not one!\" and gave him the price of a supper and a night's \nlodging.  That the man had often spoken to him since and asked him \nwhether he slept sound at night, and how he bore cold and hunger, \nand whether he ever wished to die, and similar strange questions.  \nThat when the man had no money, he would say in passing, \"I am as \npoor as you to-day, Jo,\" but that when he had any, he had always (as \nthe boy most heartily believes) been glad to give him some.\n\n\"He was wery good to me,\" says the boy, wiping his eyes with his \nwretched sleeve.  \"Wen I see him a-layin' so stritched out just now, \nI wished he could have heerd me tell him so.  He wos wery good to \nme, he wos!\"\n\nAs he shuffles downstairs, Mr. Snagsby, lying in wait for him, puts \na half-crown in his hand.  \"If you ever see me coming past your \ncrossing with my little woman--I mean a lady--\" says Mr. Snagsby \nwith his finger on his nose, \"don't allude to it!\"\n\nFor some little time the jurymen hang about the Sol's Arms \ncolloquially.  In the sequel, half-a-dozen are caught up in a cloud \nof pipe-smoke that pervades the parlour of the Sol's Arms; two \nstroll to Hampstead; and four engage to go half-price to the play at \nnight, and top up with oysters.  Little Swills is treated on several \nhands.  Being asked what he thinks of the proceedings, characterizes \nthem (his strength lying in a slangular direction) as \"a rummy \nstart.\"  The landlord of the Sol's Arms, finding Little Swills so \npopular, commends him highly to the jurymen and public, observing \nthat for a song in character he don't know his equal and that that \nman's character-wardrobe would fill a cart.\n\nThus, gradually the Sol's Arms melts into the shadowy night and then \nflares out of it strong in gas.  The Harmonic Meeting hour arriving, \nthe gentleman of professional celebrity takes the chair, is faced \n(red-faced) by Little Swills; their friends rally round them and \nsupport first-rate talent.  In the zenith of the evening, Little \nSwills says, \"Gentlemen, if you'll permit me, I'll attempt a short \ndescription of a scene of real life that came off here to-day.\"  Is \nmuch applauded and encouraged; goes out of the room as Swills; comes \nin as the coroner (not the least in the world like him); describes \nthe inquest, with recreative intervals of piano-forte accompaniment, \nto the refrain: With his (the coroner's) tippy tol li doll, tippy \ntol lo doll, tippy tol li doll, Dee!\n\nThe jingling piano at last is silent, and the Harmonic friends rally \nround their pillows.  Then there is rest around the lonely figure, \nnow laid in its last earthly habitation; and it is watched by the \ngaunt eyes in the shutters through some quiet hours of night.  If \nthis forlorn man could have been prophetically seen lying here by \nthe mother at whose breast he nestled, a little child, with eyes \nupraised to her loving face, and soft hand scarcely knowing how to \nclose upon the neck to which it crept, what an impossibility the \nvision would have seemed!  Oh, if in brighter days the now-\nextinguished fire within him ever burned for one woman who held him \nin her heart, where is she, while these ashes are above the ground!\n\nIt is anything but a night of rest at Mr. Snagsby's, in Cook's \nCourt, where Guster murders sleep by going, as Mr. Snagsby himself \nallows--not to put too fine a point upon it--out of one fit into \ntwenty.  The occasion of this seizure is that Guster has a tender \nheart and a susceptible something that possibly might have been \nimagination, but for Tooting and her patron saint.  Be it what it \nmay, now, it was so direfully impressed at tea-time by Mr. Snagsby's \naccount of the inquiry at which he had assisted that at supper-time \nshe projected herself into the kitchen, preceded by a flying Dutch \ncheese, and fell into a fit of unusual duration, which she only came \nout of to go into another, and another, and so on through a chain of \nfits, with short intervals between, of which she has pathetically \navailed herself by consuming them in entreaties to Mrs. Snagsby not \nto give her warning \"when she quite comes to,\" and also in appeals \nto the whole establishment to lay her down on the stones and go to \nbed.  Hence, Mr. Snagsby, at last hearing the cock at the little \ndairy in Cursitor Street go into that disinterested ecstasy of his \non the subject of daylight, says, drawing a long breath, though the \nmost patient of men, \"I thought you was dead, I am sure!\"\n\nWhat question this enthusiastic fowl supposes he settles when he \nstrains himself to such an extent, or why he should thus crow (so \nmen crow on various triumphant public occasions, however) about what \ncannot be of any moment to him, is his affair.  It is enough that \ndaylight comes, morning comes, noon comes.\n\nThen the active and intelligent, who has got into the morning papers \nas such, comes with his pauper company to Mr. Krook's and bears off \nthe body of our dear brother here departed to a hemmed-in \nchurchyard, pestiferous and obscene, whence malignant diseases are \ncommunicated to the bodies of our dear brothers and sisters who have \nnot departed, while our dear brothers and sisters who hang about \nofficial back-stairs--would to heaven they HAD departed!--are very \ncomplacent and agreeable.  Into a beastly scrap of ground which a \nTurk would reject as a savage abomination and a Caffre would shudder \nat, they bring our dear brother here departed to receive Christian \nburial.\n\nWith houses looking on, on every side, save where a reeking little \ntunnel of a court gives access to the iron gate--with every villainy \nof life in action close on death, and every poisonous element of \ndeath in action close on life--here they lower our dear brother down \na foot or two, here sow him in corruption, to be raised in \ncorruption: an avenging ghost at many a sick-bedside, a shameful \ntestimony to future ages how civilization and barbarism walked this \nboastful island together.\n\nCome night, come darkness, for you cannot come too soon or stay too \nlong by such a place as this!  Come, straggling lights into the \nwindows of the ugly houses; and you who do iniquity therein, do it \nat least with this dread scene shut out!  Come, flame of gas, \nburning so sullenly above the iron gate, on which the poisoned air \ndeposits its witch-ointment slimy to the touch!  It is well that you \nshould call to every passerby, \"Look here!\"\n\nWith the night comes a slouching figure through the tunnel-court to \nthe outside of the iron gate.  It holds the gate with its hands and \nlooks in between the bars, stands looking in for a little while.\n\nIt then, with an old broom it carries, softly sweeps the step and \nmakes the archway clean.  It does so very busily and trimly, looks \nin again a little while, and so departs.\n\nJo, is it thou?  Well, well!  Though a rejected witness, who \"can't \nexactly say\" what will be done to him in greater hands than men's, \nthou art not quite in outer darkness.  There is something like a \ndistant ray of light in thy muttered reason for this: \"He wos wery \ngood to me, he wos!\"\n\n\n\nCHAPTER XII\n\nOn the Watch\n\n\nIt has left off raining down in Lincolnshire at last, and Chesney \nWold has taken heart.  Mrs. Rouncewell is full of hospitable cares, \nfor Sir Leicester and my Lady are coming home from Paris.  The \nfashionable intelligence has found it out and communicates the glad \ntidings to benighted England.  It has also found out that they will \nentertain a brilliant and distinguished circle of the ELITE of the \nBEAU MONDE (the fashionable intelligence is weak in English, but a \ngiant refreshed in French) at the ancient and hospitable family seat \nin Lincolnshire.\n\nFor the greater honour of the brilliant and distinguished circle, \nand of Chesney Wold into the bargain, the broken arch of the bridge \nin the park is mended; and the water, now retired within its proper \nlimits and again spanned gracefully, makes a figure in the prospect \nfrom the house.  The clear, cold sunshine glances into the brittle \nwoods and approvingly beholds the sharp wind scattering the leaves \nand drying the moss.  It glides over the park after the moving \nshadows of the clouds, and chases them, and never catches them, all \nday.  It looks in at the windows and touches the ancestral portraits \nwith bars and patches of brightness never contemplated by the \npainters.  Athwart the picture of my Lady, over the great chimney-\npiece, it throws a broad bend-sinister of light that strikes down \ncrookedly into the hearth and seems to rend it.\n\nThrough the same cold sunshine and the same sharp wind, my Lady and \nSir Leicester, in their travelling chariot (my Lady's woman and Sir \nLeicester's man affectionate in the rumble), start for home.  With a \nconsiderable amount of jingling and whip-cracking, and many plunging \ndemonstrations on the part of two bare-backed horses and two \ncentaurs with glazed hats, jack-boots, and flowing manes and tails, \nthey rattle out of the yard of the Hotel Bristol in the Place \nVendome and canter between the sun-and-shadow-chequered colonnade of \nthe Rue de Rivoli and the garden of the ill-fated palace of a \nheadless king and queen, off by the Place of Concord, and the \nElysian Fields, and the Gate of the Star, out of Paris.\n\nSooth to say, they cannot go away too fast, for even here my Lady \nDedlock has been bored to death.  Concert, assembly, opera, theatre, \ndrive, nothing is new to my Lady under the worn-out heavens.  Only \nlast Sunday, when poor wretches were gay--within the walls playing \nwith children among the clipped trees and the statues in the Palace \nGarden; walking, a score abreast, in the Elysian Fields, made more \nElysian by performing dogs and wooden horses; between whiles \nfiltering (a few) through the gloomy Cathedral of Our Lady to say a \nword or two at the base of a pillar within flare of a rusty little \ngridiron-full of gusty little tapers; without the walls encompassing \nParis with dancing, love-making, wine-drinking, tobacco-smoking, \ntomb-visiting, billiard card and domino playing, quack-doctoring, \nand much murderous refuse, animate and inanimate--only last Sunday, \nmy Lady, in the desolation of Boredom and the clutch of Giant \nDespair, almost hated her own maid for being in spirits.\n\nShe cannot, therefore, go too fast from Paris.  Weariness of soul \nlies before her, as it lies behind--her Ariel has put a girdle of it \nround the whole earth, and it cannot be unclasped--but the imperfect \nremedy is always to fly from the last place where it has been \nexperienced.  Fling Paris back into the distance, then, exchanging \nit for endless avenues and cross-avenues of wintry trees!  And, when \nnext beheld, let it be some leagues away, with the Gate of the Star \na white speck glittering in the sun, and the city a mere mound in a \nplain--two dark square towers rising out of it, and light and shadow \ndescending on it aslant, like the angels in Jacob's dream!\n\nSir Leicester is generally in a complacent state, and rarely bored.  \nWhen he has nothing else to do, he can always contemplate his own \ngreatness.  It is a considerable advantage to a man to have so \ninexhaustible a subject.  After reading his letters, he leans back \nin his corner of the carriage and generally reviews his importance \nto society.\n\n\"You have an unusual amount of correspondence this morning?\" says my \nLady after a long time.  She is fatigued with reading.  Has almost \nread a page in twenty miles.\n\n\"Nothing in it, though.  Nothing whatever.\"\n\n\"I saw one of Mr. Tulkinghorn's long effusions, I think?\"\n\n\"You see everything,\" says Sir Leicester with admiration.\n\n\"Ha!\" sighs my Lady.  \"He is the most tiresome of men!\"\n\n\"He sends--I really beg your pardon--he sends,\" says Sir Leicester, \nselecting the letter and unfolding it, \"a message to you.  Our \nstopping to change horses as I came to his postscript drove it out \nof my memory.  I beg you'll excuse me.  He says--\"  Sir Leicester is \nso long in taking out his eye-glass and adjusting it that my Lady \nlooks a little irritated.  \"He says 'In the matter of the right of \nway--'  I beg your pardon, that's not the place.  He says--yes!  \nHere I have it!  He says, 'I beg my respectful compliments to my \nLady, who, I hope, has benefited by the change.  Will you do me the \nfavour to mention (as it may interest her) that I have something to \ntell her on her return in reference to the person who copied the \naffidavit in the Chancery suit, which so powerfully stimulated her \ncuriosity.  I have seen him.'\"\n\nMy Lady, leaning forward, looks out of her window.\n\n\"That's the message,\" observes Sir Leicester.\n\n\"I should like to walk a little,\" says my Lady, still looking out of \nher window.\n\n\"Walk?\" repeats Sir Leicester in a tone of surprise.\n\n\"I should like to walk a little,\" says my Lady with unmistakable \ndistinctness.  \"Please to stop the carriage.\"\n\nThe carriage is stopped, the affectionate man alights from the \nrumble, opens the door, and lets down the steps, obedient to an \nimpatient motion of my Lady's hand.  My Lady alights so quickly and \nwalks away so quickly that Sir Leicester, for all his scrupulous \npoliteness, is unable to assist her, and is left behind.  A space of \na minute or two has elapsed before he comes up with her.  She \nsmiles, looks very handsome, takes his arm, lounges with him for a \nquarter of a mile, is very much bored, and resumes her seat in the \ncarriage.\n\nThe rattle and clatter continue through the greater part of three \ndays, with more or less of bell-jingling and whip-cracking, and more \nor less plunging of centaurs and bare-backed horses.  Their courtly \npoliteness to each other at the hotels where they tarry is the theme \nof general admiration.  Though my Lord IS a little aged for my Lady, \nsays Madame, the hostess of the Golden Ape, and though he might be \nher amiable father, one can see at a glance that they love each \nother.  One observes my Lord with his white hair, standing, hat in \nhand, to help my Lady to and from the carriage.  One observes my \nLady, how recognisant of my Lord's politeness, with an inclination \nof her gracious head and the concession of her so-genteel fingers!  \nIt is ravishing!\n\nThe sea has no appreciation of great men, but knocks them about like \nthe small fry.  It is habitually hard upon Sir Leicester, whose \ncountenance it greenly mottles in the manner of sage-cheese and in \nwhose aristocratic system it effects a dismal revolution.  It is the \nRadical of Nature to him.  Nevertheless, his dignity gets over it \nafter stopping to refit, and he goes on with my Lady for Chesney \nWold, lying only one night in London on the way to Lincolnshire.\n\nThrough the same cold sunlight, colder as the day declines, and \nthrough the same sharp wind, sharper as the separate shadows of bare \ntrees gloom together in the woods, and as the Ghost's Walk, touched \nat the western corner by a pile of fire in the sky, resigns itself \nto coming night, they drive into the park.  The rooks, swinging in \ntheir lofty houses in the elm-tree avenue, seem to discuss the \nquestion of the occupancy of the carriage as it passes underneath, \nsome agreeing that Sir Leicester and my Lady are come down, some \narguing with malcontents who won't admit it, now all consenting to \nconsider the question disposed of, now all breaking out again in \nviolent debate, incited by one obstinate and drowsy bird who will \npersist in putting in a last contradictory croak.  Leaving them to \nswing and caw, the travelling chariot rolls on to the house, where \nfires gleam warmly through some of the windows, though not through \nso many as to give an inhabited expression to the darkening mass of \nfront.  But the brilliant and distinguished circle will soon do \nthat.\n\nMrs. Rouncewell is in attendance and receives Sir Leicester's \ncustomary shake of the hand with a profound curtsy.\n\n\"How do you do, Mrs. Rouncewell?  I am glad to see you.\"\n\n\"I hope I have the honour of welcoming you in good health, Sir \nLeicester?\"\n\n\"In excellent health, Mrs. Rouncewell.\"\n\n\"My Lady is looking charmingly well,\" says Mrs. Rouncewell with \nanother curtsy.\n\nMy Lady signifies, without profuse expenditure of words, that she is \nas wearily well as she can hope to be.\n\nBut Rosa is in the distance, behind the housekeeper; and my Lady, \nwho has not subdued the quickness of her observation, whatever else \nshe may have conquered, asks, \"Who is that girl?\"\n\n\"A young scholar of mine, my Lady.  Rosa.\"\n\n\"Come here, Rosa!\"  Lady Dedlock beckons her, with even an \nappearance of interest.  \"Why, do you know how pretty you are, \nchild?\" she says, touching her shoulder with her two forefingers.\n\nRosa, very much abashed, says, \"No, if you please, my Lady!\" and \nglances up, and glances down, and don't know where to look, but \nlooks all the prettier.\n\n\"How old are you?\"\n\n\"Nineteen, my Lady.\"\n\n\"Nineteen,\" repeats my Lady thoughtfully.  \"Take care they don't \nspoil you by flattery.\"\n\n\"Yes, my Lady.\"\n\nMy Lady taps her dimpled cheek with the same delicate gloved fingers \nand goes on to the foot of the oak staircase, where Sir Leicester \npauses for her as her knightly escort.  A staring old Dedlock in a \npanel, as large as life and as dull, looks as if he didn't know what \nto make of it, which was probably his general state of mind in the \ndays of Queen Elizabeth.\n\nThat evening, in the housekeeper's room, Rosa can do nothing but \nmurmur Lady Dedlock's praises.  She is so affable, so graceful, so \nbeautiful, so elegant; has such a sweet voice and such a thrilling \ntouch that Rosa can feel it yet!  Mrs. Rouncewell confirms all this, \nnot without personal pride, reserving only the one point of \naffability.  Mrs. Rouncewell is not quite sure as to that.  Heaven \nforbid that she should say a syllable in dispraise of any member of \nthat excellent family, above all, of my Lady, whom the whole world \nadmires; but if my Lady would only be \"a little more free,\" not \nquite so cold and distant, Mrs. Rounceweil thinks she would be more \naffable.\n\n\"'Tis almost a pity,\" Mrs. Rouncewell adds--only \"almost\" because it \nborders on impiety to suppose that anything could be better than it \nis, in such an express dispensation as the Dedlock affairs--\"that my \nLady has no family.  If she had had a daughter now, a grown young \nlady, to interest her, I think she would have had the only kind of \nexcellence she wants.\"\n\n\"Might not that have made her still more proud, grandmother?\" says \nWatt, who has been home and come back again, he is such a good \ngrandson.\n\n\"More and most, my dear,\" returns the housekeeper with dignity, \"are \nwords it's not my place to use--nor so much as to hear--applied to \nany drawback on my Lady.\"\n\n\"I beg your pardon, grandmother.  But she is proud, is she not?\"\n\n\"If she is, she has reason to be.  The Dedlock family have always \nreason to be.\"\n\n\"Well,\" says Watt, \"it's to be hoped they line out of their prayer-\nbooks a certain passage for the common people about pride and \nvainglory.  Forgive me, grandmother!  Only a joke!\"\n\n\"Sir Leicester and Lady Dedlock, my dear, are not fit subjects for \njoking.\"\n\n\"Sir Leicester is no joke by any means,\" says Watt, \"and I humbly \nask his pardon.  I suppose, grandmother, that even with the family \nand their guests down here, there is no ojection to my prolonging my \nstay at the Dedlock Arms for a day or two, as any other traveller \nmight?\"\n\n\"Surely, none in the world, child.\"\n\n\"I am glad of that,\" says Watt, \"because I have an inexpressible \ndesire to extend my knowledge of this beautiful neighbourhood.\"\n\nHe happens to glance at Rosa, who looks down and is very shy indeed.  \nBut according to the old superstition, it should be Rosa's ears that \nburn, and not her fresh bright cheeks, for my Lady's maid is holding \nforth about her at this moment with surpassing energy.\n\nMy Lady's maid is a Frenchwoman of two and thirty, from somewhere in \nthe southern country about Avignon and Marseilles, a large-eyed \nbrown woman with black hair who would be handsome but for a certain \nfeline mouth and general uncomfortable tightness of face, rendering \nthe jaws too eager and the skull too prominent.  There is something \nindefinably keen and wan about her anatomy, and she has a watchful \nway of looking out of the corners of her eyes without turning her \nhead which could be pleasantly dispensed with, especially when she \nis in an ill humour and near knives.  Through all the good taste of \nher dress and little adornments, these objections so express \nthemselves that she seems to go about like a very neat she-wolf \nimperfectly tamed.  Besides being accomplished in all the knowledge \nappertaining to her post, she is almost an Englishwoman in her \nacquaintance with the language; consequently, she is in no want of \nwords to shower upon Rosa for having attracted my Lady's attention, \nand she pours them out with such grim ridicule as she sits at dinner \nthat her companion, the affectionate man, is rather relieved when \nshe arrives at the spoon stage of that performance.\n\nHa, ha, ha!  She, Hortense, been in my Lady's service since five \nyears and always kept at the distance, and this doll, this puppet, \ncaressed--absolutely caressed--by my Lady on the moment of her \narriving at the house!  Ha, ha, ha!  \"And do you know how pretty you \nare, child?\"  \"No, my Lady.\"  You are right there!  \"And how old are \nyou, child!  And take care they do not spoil you by flattery, \nchild!\"  Oh, how droll!  It is the BEST thing altogether.\n\nIn short, it is such an admirable thing that Mademoiselle Hortense \ncan't forget it; but at meals for days afterwards, even among her \ncountrywomen and others attached in like capacity to the troop of \nvisitors, relapses into silent enjoyment of the joke--an enjoyment \nexpressed, in her own convivial manner, by an additional tightness \nof face, thin elongation of compressed lips, and sidewise look, \nwhich intense appreciation of humour is frequently reflected in my \nLady's mirrors when my Lady is not among them.\n\nAll the mirrors in the house are brought into action now, many of \nthem after a long blank.  They reflect handsome faces, simpering \nfaces, youthful faces, faces of threescore and ten that will not \nsubmit to be old; the entire collection of faces that have come to \npass a January week or two at Chesney Wold, and which the \nfashionable intelligence, a mighty hunter before the Lord, hunts \nwith a keen scent, from their breaking cover at the Court of St. \nJames's to their being run down to death.  The place in Lincolnshire \nis all alive.  By day guns and voices are heard ringing in the \nwoods, horsemen and carriages enliven the park roads, servants and \nhangers-on pervade the village and the Dedlock Arms.  Seen by night \nfrom distant openings in the trees, the row of windows in the long \ndrawing-room, where my Lady's picture hangs over the great chimney-\npiece, is like a row of jewels set in a black frame.  On Sunday the \nchill little church is almost warmed by so much gallant company, and \nthe general flavour of the Dedlock dust is quenched in delicate \nperfumes.\n\nThe brilliant and distinguished circle comprehends within it no \ncontracted amount of education, sense, courage, honour, beauty, and \nvirtue.  Yet there is something a little wrong about it in despite \nof its immense advantages.  What can it be?\n\nDandyism?  There is no King George the Fourth now (more the pity) to \nset the dandy fashion; there are no clear-starched jack-towel \nneckcloths, no short-waisted coats, no false calves, no stays.  \nThere are no caricatures, now, of effeminate exquisites so arrayed, \nswooning in opera boxes with excess of delight and being revived by \nother dainty creatures poking long-necked scent-bottles at their \nnoses.  There is no beau whom it takes four men at once to shake \ninto his buckskins, or who goes to see all the executions, or who is \ntroubled with the self-reproach of having once consumed a pea.  But \nis there dandyism in the brilliant and distinguished circle \nnotwithstanding, dandyism of a more mischievous sort, that has got \nbelow the surface and is doing less harmless things than jack-\ntowelling itself and stopping its own digestion, to which no \nrational person need particularly object?\n\nWhy, yes.  It cannot be disguised.  There ARE at Chesney Wold this \nJanuary week some ladies and gentlemen of the newest fashion, who \nhave set up a dandyism--in religion, for instance.  Who in mere \nlackadaisical want of an emotion have agreed upon a little dandy \ntalk about the vulgar wanting faith in things in general, meaning in \nthe things that have been tried and found wanting, as though a low \nfellow should unaccountably lose faith in a bad shilling after \nfinding it out!  Who would make the vulgar very picturesque and \nfaithful by putting back the hands upon the clock of time and \ncancelling a few hundred years of history.\n\nThere are also ladies and gentlemen of another fashion, not so new, \nbut very elegant, who have agreed to put a smooth glaze on the world \nand to keep down all its realities.  For whom everything must be \nlanguid and pretty.  Who have found out the perpetual stoppage.  Who \nare to rejoice at nothing and be sorry for nothing.  Who are not to \nbe disturbed by ideas.  On whom even the fine arts, attending in \npowder and walking backward like the Lord Chamberlain, must array \nthemselves in the milliners' and tailors' patterns of past \ngenerations and be particularly careful not to be in earnest or to \nreceive any impress from the moving age.\n\nThen there is my Lord Boodle, of considerable reputation with his \nparty, who has known what office is and who tells Sir Leicester \nDedlock with much gravity, after dinner, that he really does not see \nto what the present age is tending.  A debate is not what a debate \nused to be; the House is not what the House used to be; even a \nCabinet is not what it formerly was.  He perceives with astonishment \nthat supposing the present government to be overthrown, the limited \nchoice of the Crown, in the formation of a new ministry, would lie \nbetween Lord Coodle and Sir Thomas Doodle--supposing it to be \nimpossible for the Duke of Foodle to act with Goodle, which may be \nassumed to be the case in consequence of the breach arising out of \nthat affair with Hoodle.  Then, giving the Home Department and the \nleadership of the House of Commons to Joodle, the Exchequer to \nKoodle, the Colonies to Loodle, and the Foreign Office to Moodle, \nwhat are you to do with Noodle?  You can't offer him the Presidency \nof the Council; that is reserved for Poodle.  You can't put him in \nthe Woods and Forests; that is hardly good enough for Quoodle.  What \nfollows?  That the country is shipwrecked, lost, and gone to pieces \n(as is made manifest to the patriotism of Sir Leicester Dedlock) \nbecause you can't provide for Noodle!\n\nOn the other hand, the Right Honourable William Buffy, M.P., \ncontends across the table with some one else that the shipwreck of \nthe country--about which there is no doubt; it is only the manner of \nit that is in question--is attributable to Cuffy.  If you had done \nwith Cuffy what you ought to have done when he first came into \nParliament, and had prevented him from going over to Duffy, you \nwould have got him into alliance with Fuffy, you would have had with \nyou the weight attaching as a smart debater to Guffy, you would have \nbrought to bear upon the elections the wealth of Huffy, you would \nhave got in for three counties Juffy, Kuffy, and Luffy, and you \nwould have strengthened your administration by the official \nknowledge and the business habits of Muffy.  All this, instead of \nbeing as you now are, dependent on the mere caprice of Puffy!\n\nAs to this point, and as to some minor topics, there are differences \nof opinion; but it is perfectly clear to the brilliant and \ndistinguished circle, all round, that nobody is in question but \nBoodle and his retinue, and Buffy and HIS retinue.  These are the \ngreat actors for whom the stage is reserved.  A People there are, no \ndoubt--a certain large number of supernumeraries, who are to be \noccasionally addressed, and relied upon for shouts and choruses, as \non the theatrical stage; but Boodle and Buffy, their followers and \nfamilies, their heirs, executors, administrators, and assigns, are \nthe born first-actors, managers, and leaders, and no others can \nappear upon the scene for ever and ever.\n\nIn this, too, there is perhaps more dandyism at Chesney Wold than \nthe brilliant and distinguished circle will find good for itself in \nthe long run.  For it is, even with the stillest and politest \ncircles, as with the circle the necromancer draws around him--very \nstrange appearances may be seen in active motion outside.  With this \ndifference, that being realities and not phantoms, there is the \ngreater danger of their breaking in.\n\nChesney Wold is quite full anyhow, so full that a burning sense of \ninjury arises in the breasts of ill-lodged ladies'-maids, and is not \nto he extinguished.  Only one room is empty.  It is a turret chamber \nof the third order of merit, plainly but comfortably furnished and \nhaving an old-fashioned business air.  It is Mr. Tulkinghorn's room, \nand is never bestowed on anybody else, for he may come at any time.  \nHe is not come yet.  It is his quiet habit to walk across the park \nfrom the village in fine weather, to drop into this room as if he \nhad never been out of it since he was last seen there, to request a \nservant to inform Sir Leicester that he is arrived in case he should \nbe wanted, and to appear ten minutes before dinner in the shadow of \nthe library-door.  He sleeps in his turret with a complaining flag-\nstaff over his head, and has some leads outside on which, any fine \nmorning when he is down here, his black figure may be seen walking \nbefore breakfast like a larger species of rook.\n\nEvery day before dinner, my Lady looks for him in the dusk of the \nlibrary, but he is not there.  Every day at dinner, my Lady glances \ndown the table for the vacant place that would be waiting to receive \nhim if he had just arrived, but there is no vacant place.  Every \nnight my Lady casually asks her maid, \"Is Mr. Tulkinghorn come?\"\n\nEvery night the answer is, \"No, my Lady, not yet.\"\n\nOne night, while having her hair undressed, my Lady loses herself in \ndeep thought after this reply until she sees her own brooding face \nin the opposite glass, and a pair of black eyes curiously observing \nher.\n\n\"Be so good as to attend,\" says my Lady then, addressing the \nreflection of Hortense, \"to your business.  You can contemplate your \nbeauty at another time.\"\n\n\"Pardon!  It was your Ladyship's beauty.\"\n\n\"That,\" says my Lady, \"you needn't contemplate at all.\"\n\nAt length, one afternoon a little before sunset, when the bright \ngroups of figures which have for the last hour or two enlivened the \nGhost's Walk are all dispersed and only Sir Leicester and my Lady \nremain upon the terrace, Mr. Tulkinghorn appears.  He comes towards \nthem at his usual methodical pace, which is never quickened, never \nslackened.  He wears his usual expressionless mask--if it be a mask\n--and carries family secrets in every limb of his body and every \ncrease of his dress.  Whether his whole soul is devoted to the great \nor whether he yields them nothing beyond the services he sells is \nhis personal secret.  He keeps it, as he keeps the secrets of his \nclients; he is his own client in that matter, and will never betray \nhimself.\n\n\"How do you do, Mr. Tulkinghorn?\" says Sir Leicester, giving him his \nhand.\n\nMr. Tulkinghorn is quite well.  Sir Leicester is quite well.  My \nLady is quite well.  All highly satisfactory.  The lawyer, with his \nhands behind him, walks at Sir Leicester's side along the terrace.  \nMy Lady walks upon the other side.\n\n\"We expected you before,\" says Sir Leicester.  A gracious \nobservation.  As much as to say, \"Mr. Tulkinghorn, we remember your \nexistence when you are not here to remind us of it by your presence.  \nWe bestow a fragment of our minds upon you, sir, you see!\"\n\nMr. Tulkinghorn, comprehending it, inclines his head and says he is \nmuch obliged.\n\n\"I should have come down sooner,\" he explains, \"but that I have been \nmuch engaged with those matters in the several suits between \nyourself and Boythorn.\"\n\n\"A man of a very ill-regulated mind,\" observes Sir Leicester with \nseverity.  \"An extremely dangerous person in any community.  A man \nof a very low character of mind.\"\n\n\"He is obstinate,\" says Mr. Tulkinghorn.\n\n\"It is natural to such a man to be so,\" says Sir Leicester, looking \nmost profoundly obstinate himself.  \"I am not at all surprised to \nhear it.\"\n\n\"The only question is,\" pursues the lawyer, \"whether you will give \nup anything.\"\n\n\"No, sir,\" replies Sir Leicester.  \"Nothing.  I give up?\"\n\n\"I don't mean anything of importance.  That, of course, I know you \nwould not abandon.  I mean any minor point.\"\n\n\"Mr. Tulkinghorn,\" returns Sir Leicester, \"there can be no minor \npoint between myself and Mr. Boythorn.  If I go farther, and observe \nthat I cannot readily conceive how ANY right of mine can be a minor \npoint, I speak not so much in reference to myself as an individual \nas in reference to the family position I have it in charge to \nmaintain.\"\n\nMr. Tulkinghorn inclines his head again.  \"I have now my \ninstructions,\" he says.  \"Mr. Boythorn will give us a good deal of \ntrouble--\"\n\n\"It is the character of such a mind, Mr. Tulkinghorn,\" Sir Leicester \ninterrupts him, \"TO give trouble.  An exceedingly ill-conditioned, \nlevelling person.  A person who, fifty years ago, would probably \nhave been tried at the Old Bailey for some demagogue proceeding, and \nseverely punished--if not,\" adds Sir Leicester after a moment's \npause, \"if not hanged, drawn, and quartered.\"\n\nSir Leicester appears to discharge his stately breast of a burden in \npassing this capital sentence, as if it were the next satisfactory \nthing to having the sentence executed.\n\n\"But night is coming on,\" says he, \"and my Lady will take cold.  My \ndear, let us go in.\"\n\nAs they turn towards the hall-door, Lady Dedlock addresses Mr. \nTulkinghorn for the first time.\n\n\"You sent me a message respecting the person whose writing I \nhappened to inquire about.  It was like you to remember the \ncircumstance; I had quite forgotten it.  Your message reminded me of \nit again.  I can't imagine what association I had with a hand like \nthat, but I surely had some.\"\n\n\"You had some?\" Mr. Tulkinghorn repeats.\n\n\"Oh, yes!\" returns my Lady carelessly.  \"I think I must have had \nsome.  And did you really take the trouble to find out the writer of \nthat actual thing--what is it!--affidavit?\"\n\n\"Yes.\"\n\n\"How very odd!\"\n\nThey pass into a sombre breakfast-room on the ground floor, lighted \nin the day by two deep windows.  It is now twilight.  The fire glows \nbrightly on the panelled wall and palely on the window-glass, where, \nthrough the cold reflection of the blaze, the colder landscape \nshudders in the wind and a grey mist creeps along, the only \ntraveller besides the waste of clouds.\n\nMy Lady lounges in a great chair in the chimney-corner, and Sir \nLeicester takes another great chair opposite.  The lawyer stands \nbefore the fire with his hand out at arm's length, shading his face.  \nHe looks across his arm at my Lady.\n\n\"Yes,\" he says, \"I inquired about the man, and found him.  And, what \nis very strange, I found him--\"\n\n\"Not to be any out-of-the-way person, I am afraid!\" Lady Dedlock \nlanguidly anticipates.\n\n\"I found him dead.\"\n\n\"Oh, dear me!\" remonstrated Sir Leicester.  Not so much shocked by \nthe fact as by the fact of the fact being mentioned.\n\n\"I was directed to his lodging--a miserable, poverty-stricken place\n--and I found him dead.\"\n\n\"You will excuse me, Mr. Tulkinghorn,\" observes Sir Leicester.  \"I \nthink the less said--\"\n\n\"Pray, Sir Leicester, let me hear the story out\" (it is my Lady \nspeaking).  \"It is quite a story for twilight.  How very shocking!  \nDead?\"\n\nMr, Tulkinghorn re-asserts it by another inclination of his head.  \n\"Whether by his own hand--\"\n\n\"Upon my honour!\" cries Sir Leicester.  \"Really!\"\n\n\"Do let me hear the story!\" says my Lady.\n\n\"Whatever you desire, my dear.  But, I must say--\"\n\n\"No, you mustn't say!  Go on, Mr. Tulkinghorn.\"\n\nSir Leicester's gallantry concedes the point, though he still feels \nthat to bring this sort of squalor among the upper classes is \nreally--really--\n\n\"I was about to say,\" resumes the lawyer with undisturbed calmness, \n\"that whether he had died by his own hand or not, it was beyond my \npower to tell you.  I should amend that phrase, however, by saying \nthat he had unquestionably died of his own act, though whether by \nhis own deliberate intention or by mischance can never certainly be \nknown.  The coroner's jury found that he took the poison \naccidentally.\"\n\n\"And what kind of man,\" my Lady asks, \"was this deplorable \ncreature?\"\n\n\"Very difficult to say,\" returns the lawyer, shaking his bead.  \"He \nhad lived so wretchedly and was so neglected, with his gipsy colour \nand his wild black hair and beard, that I should have considered him \nthe commonest of the common.  The surgeon had a notion that he had \nonce been something better, both in appearance and condition.\"\n\n\"What did they call the wretched being?\"\n\n\"They called him what he had called himself, but no one knew his \nname.\"\n\n\"Not even any one who had attended on him?\"\n\n\"No one had attended on him.  He was found dead.  In fact, I found \nhim.\"\n\n\"Without any clue to anything more?\"\n\n\"Without any; there was,\" says the lawyer meditatively, \"an old \nportmanteau, but--  No, there were no papers.\"\n\nDuring the utterance of every word of this short dialogue, Lady \nDedlock and Mr. Tulkinghorn, without any other alteration in their \ncustomary deportment, have looked very steadily at one another--as \nwas natural, perhaps, in the discussion of so unusual a subject.  \nSir Leicester has looked at the fire, with the general expression of \nthe Dedlock on the staircase.  The story being told, he renews his \nstately protest, saying that as it is quite clear that no \nassociation in my Lady's mind can possibly be traceable to this poor \nwretch (unless he was a begging-letter writer), he trusts to hear no \nmore about a subject so far removed from my Lady's station.\n\n\"Certainly, a collection of horrors,\" says my Lady, gathering up her \nmantles and furs, \"but they interest one for the moment!  Have the \nkindness, Mr. Tulkinghorn, to open the door for me.\"\n\nMr. Tulkinghorn does so with deference and holds it open while she \npasses out.  She passes close to him, with her usual fatigued manner \nand insolent grace.  They meet again at dinner--again, next day--\nagain, for many days in succession.  Lady Dedlock is always the same \nexhausted deity, surrounded by worshippers, and terribly liable to \nbe bored to death, even while presiding at her own shrine.  Mr. \nTulkinghorn is always the same speechless repository of noble \nconfidences, so oddly but of place and yet so perfectly at home.  \nThey appear to take as little note of one another as any two people \nenclosed within the same walls could.  But whether each evermore \nwatches and suspects the other, evermore mistrustful of some great \nreservation; whether each is evermore prepared at all points for the \nother, and never to be taken unawares; what each would give to know \nhow much the other knows--all this is hidden, for the time, in their \nown hearts.\n\n\n\nCHAPTER XIII\n\nEsther's Narrative\n\n\nWe held many consultations about what Richard was to be, first \nwithout Mr. Jarndyce, as he had requested, and afterwards with him, \nbut it was a long time before we seemed to make progress.  Richard \nsaid he was ready for anything.  When Mr. Jarndyce doubted whether \nhe might not already be too old to enter the Navy, Richard said he \nhad thought of that, and perhaps he was.  When Mr. Jarndyce asked \nhim what he thought of the Army, Richard said he had thought of \nthat, too, and it wasn't a bad idea.  When Mr. Jarndyce advised him \nto try and decide within himself whether his old preference for the \nsea was an ordinary boyish inclination or a strong impulse, Richard \nanswered, Well he really HAD tried very often, and he couldn't make \nout.\n\n\"How much of this indecision of character,\" Mr. Jarndyce said to me, \n\"is chargeable on that incomprehensible heap of uncertainty and \nprocrastination on which he has been thrown from his birth, I don't \npretend to say; but that Chancery, among its other sins, is \nresponsible for some of it, I can plainly see.  It has engendered or \nconfirmed in him a habit of putting off--and trusting to this, that, \nand the other chance, without knowing what chance--and dismissing \neverything as unsettled, uncertain, and confused.  The character of \nmuch older and steadier people may be even changed by the \ncircumstances surrounding them.  It would be too much to expect that \na boy's, in its formation, should be the subject of such influences \nand escape them.\"\n\nI felt this to be true; though if I may venture to mention what I \nthought besides, I thought it much to be regretted that Richard's \neducation had not counteracted those influences or directed his \ncharacter.  He had been eight years at a public school and had \nlearnt, I understood, to make Latin verses of several sorts in the \nmost admirable manner.  But I never heard that it had been anybody's \nbusiness to find out what his natural bent was, or where his \nfailings lay, or to adapt any kind of knowledge to HIM.  HE had been \nadapted to the verses and had learnt the art of making them to such \nperfection that if he had remained at school until he was of age, I \nsuppose he could only have gone on making them over and over again \nunless he had enlarged his education by forgetting how to do it.  \nStill, although I had no doubt that they were very beautiful, and \nvery improving, and very sufficient for a great many purposes of \nlife, and always remembered all through life, I did doubt whether \nRichard would not have profited by some one studying him a little, \ninstead of his studying them quite so much.\n\nTo be sure, I knew nothing of the subject and do not even now know \nwhether the young gentlemen of classic Rome or Greece made verses to \nthe same extent--or whether the young gentlemen of any country ever \ndid.\n\n\"I haven't the least idea,\" said Richard, musing, \"what I had better \nbe.  Except that I am quite sure I don't want to go into the Church, \nit's a toss-up.\"\n\n\"You have no inclination in Mr. Kenge's way?\" suggested Mr. \nJarndyce.\n\n\"I don't know that, sir!\" replied Richard.  \"I am fond of boating.  \nArticled clerks go a good deal on the water.  It's a capital \nprofession!\"\n\n\"Surgeon--\" suggested Mr. Jarndyce.\n\n\"That's the thing, sir!\" cried Richard.\n\nI doubt if he had ever once thought of it before.\n\n\"That's the thing, sir,\" repeated Richard with the greatest \nenthusiasm.  \"We have got it at last.  M.R.C.S.!\"\n\nHe was not to be laughed out of it, though he laughed at it \nheartily.  He said he had chosen his profession, and the more he \nthought of it, the more he felt that his destiny was clear; the art \nof healing was the art of all others for him.  Mistrusting that he \nonly came to this conclusion because, having never had much chance \nof finding out for himself what he was fitted for and having never \nbeen guided to the discovery, he was taken by the newest idea and \nwas glad to get rid of the trouble of consideration, I wondered \nwhether the Latin verses often ended in this or whether Richard's \nwas a solitary case.\n\nMr. Jarndyce took great pains to talk with him seriously and to put \nit to his good sense not to deceive himself in so important a \nmatter.  Richard was a little grave after these interviews, but \ninvariably told Ada and me that it was all right, and then began to \ntalk about something else.\n\n\"By heaven!\" cried Mr. Boythorn, who interested himself strongly in \nthe subject--though I need not say that, for he could do nothing \nweakly; \"I rejoice to find a young gentleman of spirit and gallantry \ndevoting himself to that noble profession!  The more spirit there is \nin it, the better for mankind and the worse for those mercenary \ntask-masters and low tricksters who delight in putting that \nillustrious art at a disadvantage in the world.  By all that is base \nand despicable,\" cried Mr. Boythorn, \"the treatment of surgeons \naboard ship is such that I would submit the legs--both legs--of \nevery member of the Admiralty Board to a compound fracture and \nrender it a transportable offence in any qualified practitioner to \nset them if the system were not wholly changed in eight and forty \nhours!\"\n\n\"Wouldn't you give them a week?\" asked Mr. Jarndyce.\n\n\"No!\" cried Mr. Boythorn firmly.  \"Not on any consideration!  Eight \nand forty hours!  As to corporations, parishes, vestry-boards, and \nsimilar gatherings of jolter-headed clods who assemble to exchange \nsuch speeches that, by heaven, they ought to be worked in \nquicksilver mines for the short remainder of their miserable \nexistence, if it were only to prevent their detestable English from \ncontaminating a language spoken in the presence of the sun--as to \nthose fellows, who meanly take advantage of the ardour of gentlemen \nin the pursuit of knowledge to recompense the inestimable services \nof the best years of their lives, their long study, and their \nexpensive education with pittances too small for the acceptance of \nclerks, I would have the necks of every one of them wrung and their \nskulls arranged in Surgeons' Hall for the contemplation of the whole \nprofession in order that its younger members might understand from \nactual measurement, in early life, HOW thick skulls may become!\"\n\nHe wound up this vehement declaration by looking round upon us with \na most agreeable smile and suddenly thundering, \"Ha, ha, ha!\" over \nand over again, until anybody else might have been expected to be \nquite subdued by the exertion.\n\nAs Richard still continued to say that he was fixed in his choice \nafter repeated periods for consideration had been recommended by Mr. \nJarndyce and had expired, and he still continued to assure Ada and \nme in the same final manner that it was \"all right,\" it became \nadvisable to take Mr. Kenge into council.  Mr. Kenge, therefore, \ncame down to dinner one day, and leaned back in his chair, and \nturned his eye-glasses over and over, and spoke in a sonorous voice, \nand did exactly what I remembered to have seen him do when I was a \nlittle girl.\n\n\"Ah!\" said Mr. Kenge.  \"Yes.  Well!  A very good profession, Mr. \nJarndyce, a very good profession.\"\n\n\"The course of study and preparation requires to be diligently \npursued,\" observed my guardian with a glance at Richard.\n\n\"Oh, no doubt,\" said Mr. Kenge.  \"Diligently.\"\n\n\"But that being the case, more or less, with all pursuits that are \nworth much,\" said Mr. Jarndyce, \"it is not a special consideration \nwhich another choice would be likely to escape.\"\n\n\"Truly,\" said Mr. Kenge.  \"And Mr. Richard Carstone, who has so \nmeritoriously acquitted himself in the--shall I say the classic \nshades?--in which his youth had been passed, will, no doubt, apply \nthe habits, if not the principles and practice, of versification in \nthat tongue in which a poet was said (unless I mistake) to be born, \nnot made, to the more eminently practical field of action on which \nhe enters.\"\n\n\"You may rely upon it,\" said Richard in his off-hand manner, \"that I \nshall go at it and do my best.\"\n\n\"Very well, Mr. Jarndyce!\" said Mr. Kenge, gently nodding his head.  \n\"Really, when we are assured by Mr. Richard that he means to go at \nit and to do his best,\" nodding feelingly and smoothly over those \nexpressions, \"I would submit to you that we have only to inquire \ninto the best mode of carrying out the object of his ambition.  Now, \nwith reference to placing Mr. Richard with some sufficiently eminent \npractitioner.  Is there any one in view at present?\"\n\n\"No one, Rick, I think?\" said my guardian.\n\n\"No one, sir,\" said Richard.\n\n\"Quite so!\" observed Mr. Kenge.  \"As to situation, now.  Is there \nany particular feeling on that head?\"\n\n\"N--no,\" said Richard.\n\n\"Quite so!\" observed Mr. Kenge again.\n\n\"I should like a little variety,\" said Richard; \"I mean a good range \nof experience.\"\n\n\"Very requisite, no doubt,\" returned Mr. Kenge.  \"I think this may \nbe easily arranged, Mr. Jarndyce?  We have only, in the first place, \nto discover a sufficiently eligible practitioner; and as soon as we \nmake our want--and shall I add, our ability to pay a premium?--\nknown, our only difficulty will be in the selection of one from a \nlarge number.  We have only, in the second place, to observe those \nlittle formalities which are rendered necessary by our time of life \nand our being under the guardianship of the court.  We shall soon \nbe--shall I say, in Mr. Richard's own light-hearted manner, 'going \nat it'--to our heart's content.  It is a coincidence,\" said Mr. \nKenge with a tinge of melancholy in his smile, \"one of those \ncoincidences which may or may not require an explanation beyond our \npresent limited faculties, that I have a cousin in the medical \nprofession.  He might be deemed eligible by you and might be \ndisposed to respond to this proposal.  I can answer for him as \nlittle as for you, but he MIGHT!\"\n\nAs this was an opening in the prospect, it was arranged that Mr. \nKenge should see his cousin.  And as Mr. Jarndyce had before \nproposed to take us to London for a few weeks, it was settled next \nday that we should make our visit at once and combine Richard's \nbusiness with it.\n\nMr. Boythorn leaving us within a week, we took up our abode at a \ncheerful lodging near Oxford Street over an upholsterer's shop.  \nLondon was a great wonder to us, and we were out for hours and hours \nat a time, seeing the sights, which appeared to be less capable of \nexhaustion than we were.  We made the round of the principal \ntheatres, too, with great delight, and saw all the plays that were \nworth seeing.  I mention this because it was at the theatre that I \nbegan to be made uncomfortable again by Mr. Guppy.\n\nI was sitting in front of the box one night with Ada, and Richard \nwas in the place he liked best, behind Ada's chair, when, happening \nto look down into the pit, I saw Mr. Guppy, with his hair flattened \ndown upon his head and woe depicted in his face, looking up at me.  \nI felt all through the performance that he never looked at the \nactors but constantly looked at me, and always with a carefully \nprepared expression of the deepest misery and the profoundest \ndejection.\n\nIt quite spoiled my pleasure for that night because it was so very \nembarrassing and so very ridiculous.  But from that time forth, we \nnever went to the play without my seeing Mr. Guppy in the pit, \nalways with his hair straight and flat, his shirt-collar turned \ndown, and a general feebleness about him.  If he were not there when \nwe went in, and I began to hope he would not come and yielded myself \nfor a little while to the interest of the scene, I was certain to \nencounter his languishing eyes when I least expected it and, from \nthat time, to be quite sure that they were fixed upon me all the \nevening.\n\nI really cannot express how uneasy this made me.  If he would only \nhave brushed up his hair or turned up his collar, it would have been \nbad enough; but to know that that absurd figure was always gazing at \nme, and always in that demonstrative state of despondency, put such \na constraint upon me that I did not like to laugh at the play, or to \ncry at it, or to move, or to speak.  I seemed able to do nothing \nnaturally.  As to escaping Mr. Guppy by going to the back of the \nbox, I could not bear to do that because I knew Richard and Ada \nrelied on having me next them and that they could never have talked \ntogether so happily if anybody else had been in my place.  So there \nI sat, not knowing where to look--for wherever I looked, I knew Mr. \nGuppy's eyes were following me--and thinking of the dreadful expense \nto which this young man was putting himself on my account.\n\nSometimes I thought of telling Mr. Jarndyce.  Then I feared that the \nyoung man would lose his situation and that I might ruin him.  \nSometimes I thought of confiding in Richard, but was deterred by the \npossibility of his fighting Mr. Guppy and giving him black eyes.  \nSometimes I thought, should I frown at him or shake my head.  Then I \nfelt I could not do it.  Sometimes I considered whether I should \nwrite to his mother, but that ended in my being convinced that to \nopen a correspondence would he to make the matter worse.  I always \ncame to the conclusion, finally, that I could do nothing.  Mr. \nGuppy's perseverance, all this time, not only produced him regularly \nat any theatre to which we went, but caused him to appear in the \ncrowd as we were coming out, and even to get up behind our fly--\nwhere I am sure I saw him, two or three times, struggling among the \nmost dreadful spikes.  After we got home, he haunted a post opposite \nour house.  The upholsterer's where we lodged being at the corner of \ntwo streets, and my bedroom window being opposite the post, I was \nafraid to go near the window when I went upstairs, lest I should see \nhim (as I did one moonlight night) leaning against the post and \nevidenfly catching cold.  If Mr. Guppy had not been, fortunately for \nme, engaged in the daytime, I really should have had no rest from \nhim.\n\nWhile we were making this round of gaieties, in which Mr. Guppy so \nextraordinarily participated, the business which had helped to bring \nus to town was not neglected.  Mr. Kenge's cousin was a Mr. Bayham \nBadger, who had a good practice at Chelsea and attended a large \npublic institution besides.  He was quite willing to receive Richard \ninto his house and to superintend his studies, and as it seemed that \nthose could be pursued advantageously under Mr. Badger's roof, and \nMr. Badger liked Richard, and as Richard said he liked Mr. Badger \n\"well enough,\" an agreement was made, the Lord Chancellor's consent \nwas obtained, and it was all settled.\n\nOn the day when matters were concluded between Richard and Mr. \nBadger, we were all under engagement to dine at Mr. Badger's house.  \nWe were to be \"merely a family party,\" Mrs. Badger's note said; and \nwe found no lady there but Mrs. Badger herself.  She was surrounded \nin the drawing-room by various objects, indicative of her painting a \nlittle, playing the piano a little, playing the guitar a little, \nplaying the harp a little, singing a little, working a little, \nreading a little, writing poetry a little, and botanizing a little.  \nShe was a lady of about fifty, I should think, youthfully dressed, \nand of a very fine complexion.  If I add to the little list of her \naccomplishments that she rouged a little, I do not mean that there \nwas any harm in it.\n\nMr. Bayham Badger himself was a pink, fresh-faced, crisp-looking \ngentleman with a weak voice, white teeth, light hair, and surprised \neyes, some years younger, I should say, than Mrs. Bayham Badger.  He \nadmired her exceedingly, but principally, and to begin with, on the \ncurious ground (as it seemed to us) of her having had three \nhusbands.  We had barely taken our seats when he said to Mr. \nJarndyce quite triumphantly, \"You would hardly suppose that I am \nMrs. Bayham Badger's third!\"\n\n\"Indeed?\" said Mr. Jarndyce.\n\n\"Her third!\" said Mr. Badger.  \"Mrs. Bayham Badger has not the \nappearance, Miss Summerson, of a lady who has had two former \nhusbands?\"\n\nI said \"Not at all!\"\n\n\"And most remarkable men!\" said Mr. Badger in a tone of confidence.  \n\"Captain Swosser of the Royal Navy, who was Mrs. Badger's first \nhusband, was a very distinguished officer indeed.  The name of \nProfessor Dingo, my immediate predecessor, is one of European \nreputation.\"\n\nMrs. Badger overheard him and smiled.\n\n\"Yes, my dear!\" Mr. Badger replied to the smile, \"I was observing to \nMr. Jarndyce and Miss Summerson that you had had two former \nhusbands--both very distinguished men.  And they found it, as people \ngenerally do, difficult to believe.\"\n\n\"I was barely twenty,\" said Mrs. Badger, \"when I married Captain \nSwosser of the Royal Navy.  I was in the Mediterranean with him; I \nam quite a sailor.  On the twelfth anniversary of my wedding-day, I \nbecame the wife of Professor Dingo.\"\n\n\"Of European reputation,\" added Mr. Badger in an undertone.\n\n\"And when Mr. Badger and myself were married,\" pursued Mrs. Badger, \n\"we were married on the same day of the year.  I had become attached \nto the day.\"\n\n\"So that Mrs. Badger has been married to three husbands--two of them \nhighly distinguished men,\" said Mr. Badger, summing up the facts, \n\"and each time upon the twenty-first of March at eleven in the \nforenoon!\"\n\nWe all expressed our admiration.\n\n\"But for Mr. Badger's modesty,\" said Mr. Jarndyce, \"I would take \nleave to correct him and say three distinguished men.\"\n\n\"Thank you, Mr. Jarndyce!  What I always tell him!\" observed Mrs. \nBadger.\n\n\"And, my dear,\" said Mr. Badger, \"what do I always tell you?  That \nwithout any affectation of disparaging such professional distinction \nas I may have attained (which our friend Mr. Carstone will have many \nopportunities of estimating), I am not so weak--no, really,\" said \nMr. Badger to us generally, \"so unreasonable--as to put my \nreputation on the same footing with such first-rate men as Captain \nSwosser and Professor Dingo.  Perhaps you may be interested, Mr. \nJarndyce,\" continued Mr. Bayham Badger, leading the way into the \nnext drawing-room, \"in this portrait of Captain Swosser.  It was \ntaken on his return home from the African station, where he had \nsuffered from the fever of the country.  Mrs. Badger considers it \ntoo yellow.  But it's a very fine head.  A very fine head!\"\n\nWe all echoed, \"A very fine head!\"\n\n\"I feel when I look at it,\" said Mr. Badger, \"'That's a man I should \nlike to have seen!'  It strikingly bespeaks the first-class man that \nCaptain Swosser pre-eminently was.  On the other side, Professor \nDingo.  I knew him well--attended him in his last illness--a \nspeaking likeness!  Over the piano, Mrs. Bayham Badger when Mrs. \nSwosser.  Over the sofa, Mrs. Bayham Badger when Mrs. Dingo.  Of \nMrs. Bayham Badger IN ESSE, I possess the original and have no \ncopy.\"\n\nDinner was now announced, and we went downstairs.  It was a very \ngenteel entertainment, very handsomely served.  But the captain and \nthe professor still ran in Mr. Badger's head, and as Ada and I had \nthe honour of being under his particular care, we had the full \nbenefit of them.\n\n\"Water, Miss Summerson?  Allow me!  Not in that tumbler, pray.  \nBring me the professor's goblet, James!\"\n\nAda very much admired some artificial flowers under a glass.\n\n\"Astonishing how they keep!\" said Mr. Badger.  \"They were presented \nto Mrs. Bayham Badger when she was in the Mediterranean.\"\n\nHe invited Mr. Jarndyce to take a glass of claret.\n\n\"Not that claret!\" he said.  \"Excuse me!  This is an occasion, and \nON an occasion I produce some very special claret I happen to have.  \n(James, Captain Swosser's wine!)  Mr. Jarndyce, this is a wine that \nwas imported by the captain, we will not say how many years ago.  \nYou will find it very curious.  My dear, I shall he happy to take \nsome of this wine with you.  (Captain Swosser's claret to your \nmistress, James!)  My love, your health!\"\n\nAfter dinner, when we ladies retired, we took Mrs. Badger's first \nand second husband with us.  Mrs. Badger gave us in the drawing-room \na biographical sketch of the life and services of Captain Swosser \nbefore his marriage and a more minute account of him dating from the \ntime when he fell in love with her at a ball on board the Crippler, \ngiven to the officers of that ship when she lay in Plymouth Harbour.\n\n\"The dear old Crippler!\" said Mrs. Badger, shaking her head.  \"She \nwas a noble vessel.  Trim, ship-shape, all a taunto, as Captain \nSwosser used to say.  You must excuse me if I occasionally introduce \na nautical expression; I was quite a sailor once.  Captain Swosser \nloved that craft for my sake.  When she was no longer in commission, \nhe frequently said that if he were rich enough to buy her old hulk, \nhe would have an inscription let into the timbers of the quarter-\ndeck where we stood as partners in the dance to mark the spot where \nhe fell--raked fore and aft (Captain Swosser used to say) by the \nfire from my tops.  It was his naval way of mentioning my eyes.\"\n\nMrs. Badger shook her head, sighed, and looked in the glass.\n\n\"It was a great change from Captain Swosser to Professor Dingo,\" she \nresumed with a plaintive smile.  \"I felt it a good deal at first.  \nSuch an entire revolution in my mode of life!  But custom, combined \nwith science--particularly science--inured me to it.  Being the \nprofessor's sole companion in his botanical excursions, I almost \nforgot that I had ever been afloat, and became quite learned.  It is \nsingular that the professor was the antipodes of Captain Swosser and \nthat Mr. Badger is not in the least like either!\"\n\nWe then passed into a narrative of the deaths of Captain Swosser and \nProfessor Dingo, both of whom seem to have had very bad complaints.  \nIn the course of it, Mrs. Badger signified to us that she had never \nmadly loved but once and that the object of that wild affection, \nnever to be recalled in its fresh enthusiasm, was Captain Swosser.  \nThe professor was yet dying by inches in the most dismal manner, and \nMrs. Badger was giving us imitations of his way of saying, with \ngreat difficulty, \"Where is Laura?  Let Laura give me my toast and \nwater!\" when the entrance of the gentlemen consigned him to the \ntomb.\n\nNow, I observed that evening, as I had observed for some days past, \nthat Ada and Richard were more than ever attached to each other's \nsociety, which was but natural, seeing that they were going to be \nseparated so soon.  I was therefore not very much surprised when we \ngot home, and Ada and I retired upstairs, to find Ada more silent \nthan usual, though I was not quite prepared for her coming into my \narms and beginning to speak to me, with her face hidden.\n\n\"My darling Esther!\" murmured Ada.  \"I have a great secret to tell \nyou!\"\n\nA mighty secret, my pretty one, no doubt!\n\n\"What is it, Ada?\"\n\n\"Oh, Esther, you would never guess!\"\n\n\"Shall I try to guess?\" said I.\n\n\"Oh, no!  Don't!  Pray don't!\" cried Ada, very much startled by the \nidea of my doing so.\n\n\"Now, I wonder who it can be about?\" said I, pretending to consider.\n\n\"It's about--\" said Ada in a whisper.  \"It's about--my cousin \nRichard!\"\n\n\"Well, my own!\" said I, kissing her bright hair, which was all I \ncould see.  \"And what about him?\"\n\n\"Oh, Esther, you would never guess!\"\n\nIt was so pretty to have her clinging to me in that way, hiding her \nface, and to know that she was not crying in sorrow but in a little \nglow of joy, and pride, and hope, that I would not help her just \nyet.\n\n\"He says--I know it's very foolish, we are both so young--but he \nsays,\" with a burst of tears, \"that he loves me dearly, Esther.\"\n\n\"Does he indeed?\" said I.  \"I never heard of such a thing!  Why, my \npet of pets, I could have told you that weeks and weeks ago!\"\n\nTo see Ada lift up her flushed face in joyful surprise, and hold me \nround the neck, and laugh, and cry, and blush, was so pleasant!\n\n\"Why, my darling,\" said I, \"what a goose you must take me for!  Your \ncousin Richard has been loving you as plainly as he could for I \ndon't know how long!\"\n\n\"And yet you never said a word about it!\" cried Ada, kissing me.\n\n\"No, my love,\" said I.  \"I waited to be told.\"\n\n\"But now I have told you, you don't think it wrong of me, do you?\" \nreturned Ada.  She might have coaxed me to say no if I had been the \nhardest-hearted duenna in the world.  Not being that yet, I said no \nvery freely.\n\n\"And now,\" said I, \"I know the worst of it.\"\n\n\"Oh, that's not quite the worst of it, Esther dear!\" cried Ada, \nholding me tighter and laying down her face again upon my breast.\n\n\"No?\" said I.  \"Not even that?\"\n\n\"No, not even that!\" said Ada, shaking her head.\n\n\"Why, you never mean to say--\" I was beginning in joke.\n\nBut Ada, looking up and smiling through her tear's, cried, \"Yes, I \ndo!  You know, you know I do!\" And then sobbed out, \"With all my \nheart I do!  With all my whole heart, Esther!\"\n\nI told her, laughing, why I had known that, too, just as well as I \nhad known the other!  And we sat before the fire, and I had all the \ntalking to myself for a little while (though there was not much of \nit); and Ada was soon quiet and happy.\n\n\"Do you think my cousin John knows, dear Dame Durden?\" she asked.\n\n\"Unless my cousin John is blind, my pet,\" said I, \"I should think my \ncousin John knows pretty well as much as we know.\"\n\n\"We want to speak to him before Richard goes,\" said Ada timidly, \n\"and we wanted you to advise us, and to tell him so.  Perhaps you \nwouldn't mind Richard's coming in, Dame Durden?\"\n\n\"Oh!  Richard is outside, is he, my dear?\" said I.\n\n\"I am not quite certain,\" returned Ada with a bashful simplicity \nthat would have won my heart if she had not won it long before, \"but \nI think he's waiting at the door.\"\n\nThere he was, of course.  They brought a chair on either side of me, \nand put me between them, and really seemed to have fallen in love \nwith me instead of one another, they were so confiding, and so \ntrustful, and so fond of me.  They went on in their own wild way for \na little while--I never stopped them; I enjoyed it too much myself--\nand then we gradually fell to considering how young they were, and \nhow there must be a lapse of several years before this early love \ncould come to anything, and how it could come to happiness only if \nit were real and lasting and inspired them with a steady resolution \nto do their duty to each other, with constancy, fortitude, and \nperseverance, each always for the other's sake.  Well!  Richard said \nthat he would work his fingers to the bone for Ada, and Ada said \nthat she would work her fingers to the bone for Richard, and they \ncalled me all sorts of endearing and sensible names, and we sat \nthere, advising and talking, half the night.  Finally, before we \nparted, I gave them my promise to speak to their cousin John to-\nmorrow.\n\nSo, when to-morrow came, I went to my guardian after breakfast, in \nthe room that was our town-substitute for the growlery, and told him \nthat I had it in trust to tell him something.\n\n\"Well, little woman,\" said he, shutting up his book, \"if you have \naccepted the trust, there can be no harm in it.\"\n\n\"I hope not, guardian,\" said I.  \"I can guarantee that there is no \nsecrecy in it.  For it only happened yesterday.\"\n\n\"Aye?  And what is it, Esther?\"\n\n\"Guardian,\" said I, \"you remember the happy night when first we came \ndown to Bleak House?  When Ada was singing in the dark room?\"\n\nI wished to call to his remembrance the look he had given me then.  \nUnless I am much mistaken, I saw that I did so.\n\n\"Because--\" said I with a little hesitation.\n\n\"Yes, my dear!\" said he.  \"Don't hurry.\"\n\n\"Because,\" said I, \"Ada and Richard have fallen in love.  And have \ntold each other so.\"\n\n\"Already!\" cried my guardian, quite astonished.\n\n\"Yes!\" said I.  \"And to tell you the truth, guardian, I rather \nexpected it.\"\n\n\"The deuce you did!\" said he.\n\nHe sat considering for a minute or two, with his smile, at once so \nhandsome and so kind, upon his changing face, and then requested me \nto let them know that he wished to see them.  When they came, he \nencircled Ada with one arm in his fatherly way and addressed himself \nto Richard with a cheerful gravity.\n\n\"Rick,\" said Mr. Jarndyce, \"I am glad to have won your confidence.  \nI hope to preserve it.  When I contemplated these relations between \nus four which have so brightened my life and so invested it with new \ninterests and pleasures, I certainly did contemplate, afar off, the \npossibility of you and your pretty cousin here (don't be shy, Ada, \ndon't be shy, my dear!) being in a mind to go through life together.  \nI saw, and do see, many reasons to make it desirable.  But that was \nafar off, Rick, afar off!\"\n\n\"We look afar off, sir,\" returned Richard.\n\n\"Well!\" said Mr. Jarndyce.  \"That's rational.  Now, hear me, my \ndears!  I might tell you that you don't know your own minds yet, \nthat a thousand things may happen to divert you from one another, \nthat it is well this chain of flowers you have taken up is very \neasily broken, or it might become a chain of lead.  But I will not \ndo that.  Such wisdom will come soon enough, I dare say, if it is to \ncome at all.  I will assume that a few years hence you will be in \nyour hearts to one another what you are to-day.  All I say before \nspeaking to you according to that assumption is, if you DO change--\nif you DO come to find that you are more commonplace cousins to each \nother as man and woman than you were as boy and girl (your manhood \nwill excuse me, Rick!)--don't be ashamed still to confide in me, for \nthere will be nothing monstrous or uncommon in it.  I am only your \nfriend and distant kinsman.  I have no power over you whatever.  But \nI wish and hope to retain your confidence if I do nothing to forfeit \nit.\"\n\n\"I am very sure, sir,\" returned Richard, \"that I speak for Ada too \nwhen I say that you have the strongest power over us both--rooted in \nrespect, gratitude, and affection--strengthening every day.\"\n\n\"Dear cousin John,\" said Ada, on his shoulder, \"my father's place \ncan never be empty again.  All the love and duty I could ever have \nrendered to him is transferred to you.\"\n\n\"Come!\" said Mr. Jarndyce.  \"Now for our assumption.  Now we lift \nour eyes up and look hopefully at the distance!  Rick, the world is \nbefore you; and it is most probable that as you enter it, so it will \nreceive you.  Trust in nothing but in Providence and your own \nefforts.  Never separate the two, like the heathen waggoner.  \nConstancy in love is a good thing, but it means nothing, and is \nnothing, without constancy in every kind of effort.  If you had the \nabilities of all the great men, past and present, you could do \nnothing well without sincerely meaning it and setting about it.  If \nyou entertain the supposition that any real success, in great things \nor in small, ever was or could be, ever will or can be, wrested from \nFortune by fits and starts, leave that wrong idea here or leave your \ncousin Ada here.\"\n\n\"I will leave IT here, sir,\" replied Richard smiling, \"if I brought \nit here just now (but I hope I did not), and will work my way on to \nmy cousin Ada in the hopeful distance.\"\n\n\"Right!\" said Mr. Jarndyce.  \"If you are not to make her happy, why \nshould you pursue her?\"\n\n\"I wouldn't make her unhappy--no, not even for her love,\" retorted \nRichard proudly.\n\n\"Well said!\" cried Mr. Jarndyce.  \"That's well said!  She remains \nhere, in her home with me.  Love her, Rick, in your active life, no \nless than in her home when you revisit it, and all will go well.  \nOtherwise, all will go ill.  That's the end of my preaching.  I \nthink you and Ada had better take a walk.\"\n\nAda tenderly embraced him, and Richard heartily shook hands with \nhim, and then the cousins went out of the room, looking back again \ndirectly, though, to say that they would wait for me.\n\nThe door stood open, and we both followed them with our eyes as \nthey passed down the adjoining room, on which the sun was shining, \nand out at its farther end.  Richard with his head bent, and her \nhand drawn through his arm, was talking to her very earnestly; and \nshe looked up in his face, listening, and seemed to see nothing \nelse.  So young, so beautiful, so full of hope and promise, they \nwent on lightly through the sunlight as their own happy thoughts \nmight then be traversing the years to come and making them all \nyears of brightness.  So they passed away into the shadow and were \ngone.  It was only a burst of light that had been so radiant.  The \nroom darkened as they went out, and the sun was clouded over.\n\n\"Am I right, Esther?\" said my guardian when they were gone.\n\nHe was so good and wise to ask ME whether he was right!\n\n\"Rick may gain, out of this, the quality he wants.  Wants, at the \ncore of so much that is good!\" said Mr. Jarndyce, shaking his head.  \n\"I have said nothing to Ada, Esther.  She has her friend and \ncounsellor always near.\"  And he laid his hand lovingly upon my \nhead.\n\nI could not help showing that I was a little moved, though I did \nall I could to conceal it.\n\n\"Tut tut!\" said he.  \"But we must take care, too, that our little \nwoman's life is not all consumed in care for others.\"\n\n\"Care?  My dear guardian, I believe I am the happiest creature in \nthe world!\"\n\n\"I believe so, too,\" said he.  \"But some one may find out what \nEsther never will--that the little woman is to be held in \nremembrance above all other people!\"\n\nI have omitted to mention in its place that there was some one else \nat the family dinner party.  It was not a lady.  It was a \ngentleman.  It was a gentleman of a dark complexion--a young \nsurgeon.  He was rather reserved, but I thought him very sensible \nand agreeable.  At least, Ada asked me if I did not, and I said \nyes.\n\n\n\nCHAPTER XIV\n\nDeportment\n\n\nRichard left us on the very next evening to begin his new career, \nand committed Ada to my charge with great love for her and great \ntrust in me.  It touched me then to reflect, and it touches me now, \nmore nearly, to remember (having what I have to tell) how they both \nthought of me, even at that engrossing time.  I was a part of all \ntheir plans, for the present and the future, I was to write Richard \nonce a week, making my faithful report of Ada, who was to write to \nhim every alternate day.  I was to be informed, under his own hand, \nof all his labours and successes; I was to observe how resolute and \npersevering he would be; I was to be Ada's bridesmaid when they \nwere married; I was to live with them afterwards; I was to keep all \nthe keys of their house; I was to be made happy for ever and a day.\n\n\"And if the suit SHOULD make us rich, Esther--which it may, you \nknow!\" said Richard to crown all.\n\nA shade crossed Ada's face.\n\n\"My dearest Ada,\" asked Richard, \"why not?\"\n\n\"It had better declare us poor at once,\" said Ada.\n\n\"Oh! I don't know about that,\" returned Richard, \"but at all \nevents, it won't declare anything at once.  It hasn't declared \nanything in heaven knows how many years.\"\n\n\"Too true,\" said Ada.\n\n\"Yes, but,\" urged Richard, answering what her look suggested rather \nthan her words, \"the longer it goes on, dcar cousin, the nearer it \nmust be to a settlement one way or other.  Now, is not that \nreasonable?\"\n\n\"You know best, Richard.  But I am afraid if we trust to it, it \nwill make us unhappy.\"\n\n\"But, my Ada, we are not going to trust to it!\" cried Richard \ngaily.  \"We know it better than to trust to it.  We only say that \nif it SHOULD make us rich, we have no constitutional objection to \nbeing rich.  The court is, by solemn settlement of law, our grim \nold guardian, and we are to suppose that what it gives us (when it \ngives us anything) is our right.  It is not necessary to quarrel \nwith our right.\"\n\n\"No,\" Said Ada, \"but it may be better to forget all about it.\"\n\n\"Well, well,\" cried Richard, \"then we will forget all about it!  We \nconsign the whole thing to oblivion.  Dame Durden puts on her \napproving face, and it's done!\"\n\n\"Dame Durden's approving face,\" said I, looking out of the box in \nwhich I was packing his books, \"was not very visible when you \ncalled it by that name; but it does approve, and she thinks you \ncan't do better.\"\n\nSo, Richard said there was an end of it, and immediately began, on \nno other foundation, to build as many castles in the air as would \nman the Great Wall of China.  He went away in high spirits.  Ada \nand I, prepared to miss him very much, commenced our quieter \ncareer.\n\nOn our arrival in London, we had called with Mr. Jarndyce at Mrs. \nJellyby's but had not been so fortunate as to find her at home.  It \nappeared that she had gone somewhere to a tea-drinking and had \ntaken Miss Jellyby with her.  Besides the tea-drinking, there was \nto be some considerable speech-making and letter-writing on the \ngeneral merits of the cultivation of coffee, conjointly with \nnatives, at the Settlement of Borrioboola-Gha.  All this involved, \nno doubt, sufficient active exercise of pen and ink to make her \ndaughter's part in the proceedings anything but a holiday.\n\nIt being now beyond the time appointed for Mrs. Jellyby's return, \nwe called again.  She was in town, but not at home, having gone to \nMile End directly after breakfast on some Borrioboolan business, \narising out of a society called the East London Branch Aid \nRamification.  As I had not seen Peepy on the occasion of our last \ncall (when he was not to be found anywhere, and when the cook \nrather thought he must have strolled away with the dustman's cart), \nI now inquired for him again.  The oyster shells he had been \nbuilding a house with were still in the passage, but he was nowhere \ndiscoverable, and the cook supposed that he had \"gone after the \nsheep.\"  When we repeated, with some surprise, \"The sheep?\" she \nsaid, Oh, yes, on market days he sometimes followed them quite out \nof town and came back in such a state as never was!\n\nI was sitting at the window with my guardian on the following \nmorning, and Ada was busy writing-of course to Richard--when Miss \nJellyby was announced, and entered, leading the identical Peepy, \nwhom she had made some endeavours to render presentable by wiping \nthe dirt into corners of his face and hands and making his hair \nvery wet and then violently frizzling it with her fingers.  \nEverything the dear child wore was either too large for him or too \nsmall.  Among his other contradictory decorations he had the hat of \na bishop and the little gloves of a baby.  His boots were, on a \nsmall scale, the boots of a ploughman, while his legs, so crossed \nand recrossed with scratches that they looked like maps, were bare \nbelow a very short pair of plaid drawers finished off with two \nfrills of perfectly different patterns.  The deficient buttons on \nhis plaid frock had evidently been supplied from one of Mr. \nJellyby's coats, they were so extremely brazen and so much too \nlarge.  Most extraordinary specimens of needlework appeared on \nseveral parts of his dress, where it had been hastily mended, and I \nrecognized the same hand on Miss Jellyby's.  She was, however, \nunaccountably improved in her appearance and looked very pretty.  \nShe was conscious of poor little Peepy being but a failure after \nall her trouble, and she showed it as she came in by the way in \nwhich she glanced first at him and then at us.\n\n\"Oh, dear me!\" said my guardian.  \"Due east!\"\n\nAda and I gave her a cordial welcome and presented her to Mr. \nJarndyce, to whom she said as she sat down, \"Ma's compliments, and \nshe hopes you'll excuse her, because she's correcting proofs of the \nplan.  She's going to put out five thousand new circulars, and she \nknows you'll be interested to hear that.  I have brought one of \nthem with me.  Ma's compliments.\"  With which she presented it \nsulkily enough.\n\n\"Thank you,\" said my guardian.  \"I am much obliged to Mrs. Jellyby.  \nOh, dear me!  This is a very trying wind!\"\n\nWe were busy with Peepy, taking off his clerical hat, asking him if \nhe remembered us, and so on.  Peepy retired behind his elbow at \nfirst, but relented at the sight of sponge-cake and allowed me to \ntake him on my lap, where he sat munching quietly.  Mr. Jarndyce \nthen withdrawing into the temporary growlery, Miss Jellyby opened a \nconversation with her usual abruptness.\n\n\"We are going on just as bad as ever in Thavies Inn,\" said she.  \"I \nhave no peace of my life.  Talk of Africa!  I couldn't be worse off \nif I was a what's-his-name--man and a brother!\"\n\nI tried to say something soothing.\n\n\"Oh, it's of no use, Miss Summerson,\" exclaimed Miss Jellyby, \n\"though I thank you for the kind intention all the same.  I know \nhow I am used, and I am not to be talked over.  YOU wouldn't be \ntalked over if you were used so.  Peepy, go and play at Wild Beasts \nunder the piano!\"\n\n\"I shan't!\" said Peepy.\n\n\"Very well, you ungrateful, naughty, hard-hearted boy!\" returned \nMiss Jellyby with tears in her eyes.  \"I'll never take pains to \ndress you any more.\"\n\n\"Yes, I will go, Caddy!\" cried Peepy, who was really a good child \nand who was so moved by his sister's vexation that he went at once.\n\n\"It seems a little thing to cry about,\" said poor Miss Jellyby \napologetically, \"but I am quite worn out.  I was directing the new \ncirculars till two this morning.  I detest the whole thing so that \nthat alone makes my head ache till I can't see out of my eyes.  And \nlook at that poor unfortunate child!  Was there ever such a fright \nas he is!\"\n\nPeepy, happily unconscious of the defects in his appearance, sat on \nthe carpet behind one of the legs of the piano, looking calmly out \nof his den at us while he ate his cake.\n\n\"I have sent him to the other end of the room,\" observed Miss \nJellyby, drawing her chair nearer ours, \"because I don't want him \nto hear the conversation.  Those little things are so sharp!  I was \ngoing to say, we really are going on worse than ever.  Pa will be a \nbankrupt before long, and then I hope Ma will be satisfied.  \nThere'll he nobody but Ma to thank for it.\"\n\nWe said we hoped Mr. Jellyby's affairs were not in so bad a state \nas that.\n\n\"It's of no use hoping, though it's very kind of you,\" returned \nMiss Jellyby, shaking her head.  \"Pa told me only yesterday morning \n(and dreadfully unhappy he is) that he couldn't weather the storm.  \nI should be surprised if he could.  When all our tradesmen send \ninto our house any stuff they like, and the servants do what they \nlike with it, and I have no time to improve things if I knew how, \nand Ma don't care about anything, I should like to make out how Pa \nis to weather the storm.  I declare if I was Pa, I'd run away.\"\n\n\"My dear!\" said I, smiling.  \"Your papa, no doubt, considers his \nfamily.\"\n\n\"Oh, yes, his family is all very fine, Miss Summerson,\" replied \nMiss Jellyby; \"but what comfort is his family to him?  His family \nis nothing but bills, dirt, waste, noise, tumbles downstairs, \nconfusion, and wretchedness.  His scrambling home, from week's end \nto week's end, is like one great washing-day--only nothing's \nwashed!\"\n\nMiss Jellyby tapped her foot upon the floor and wiped her eyes.\n\n\"I am sure I pity Pa to that degree,\" she said, \"and am so angry \nwith Ma that I can't find words to express myself!  However, I am \nnot going to bear it, I am determined.  I won't be a slave all my \nlife, and I won't submit to be proposed to by Mr. Quale.  A pretty \nthing, indeed, to marry a philanthropist. As if I hadn't had enough \nof THAT!\" said poor Miss Jellyby.\n\nI must confess that I could not help feeling rather angry with Mrs. \nJellyby myself, seeing and hearing this neglected girl and knowing \nhow much of bitterly satirical truth there was in what she said.\n\n\"If it wasn't that we had been intimate when you stopped at our \nhouse,\" pursued Miss Jellyby, \"I should have been ashamed to come \nhere to-day, for I know what a figure I must seem to you two.  But \nas it is, I made up my mind to call, especially as I am not likely \nto see you again the next time you come to town.\"\n\nShe said this with such great significance that Ada and I glanced \nat one another, foreseeing something more.\n\n\"No!\" said Miss Jellyby, shaking her head.  \"Not at all likely!  I \nknow I may trust you two.  I am sure you won't betray me.  I am \nengaged.\"\n\n\"Without their knowledge at home?\" said I.\n\n\"Why, good gracious me, Miss Summerson,\" she returned, justifying \nherself in a fretful but not angry manner, \"how can it be \notherwise?  You know what Ma is--and I needn't make poor Pa more \nmiserable by telling HIM.\"\n\n\"But would it not he adding to his unhappiness to marry without his \nknowledge or consent, my dear?\" said I.\n\n\"No,\" said Miss Jellyby, softening.  \"\"I hope not.  I should try to \nmake him happy and comfortable when he came to see me, and Peepy \nand the others should take it in turns to come and stay with me, \nand they should have some care taken of them then.\"\n\nThere was a good deal of affection in poor Caddy.  She softened \nmore and more while saying this and cried so much over the unwonted \nlittle home-picture she had raised in her mind that Peepy, in his \ncave under the piano, was touched, and turned himself over on his \nback with loud lamentations.  It was not until I had brought him to \nkiss his sister, and had restored him to his place on my lap, and \nhad shown him that Caddy was laughing (she laughed expressly for \nthe purpose), that we could recall his peace of mind; even then it \nwas for some time conditional on his taking us in turns by the chin \nand smoothing our faces all over with his hand.  At last, as his \nspirits were not equal to the piano, we put him on a chair to look \nout of window; and Miss Jellyby, holding him by one leg, resumed \nher confidence.\n\n\"It began in your coming to our house,\" she said.\n\nWe naturally asked how.\n\n\"I felt I was so awkward,\" she replied, \"that I made up my mind to \nbe improved in that respect at all events and to learn to dance.  I \ntold Ma I was ashamed of myself, and I must be taught to dance.  Ma \nlooked at me in that provoking way of hers as if I wasn't in sight, \nbut I was quite determined to be taught to dance, and so I went to \nMr. Turveydrop's Academy in Newman Street.\"\n\n\"And was it there, my dear--\" I began.\n\n\"Yes, it was there,\" said Caddy, \"and I am engaged to Mr. \nTurveydrop.  There are two Mr. Turveydrops, father and son.  My Mr. \nTurveydrop is the son, of course.  I only wish I had been better \nbrought up and was likely to make him a better wife, for I am very \nfond of him.\"\n\n\"I am sorry to hear this,\" said I, \"I must confess.\"\n\n\"I don't know why you should be sorry,\" she retorted a little \nanxiously, \"but I am engaged to Mr. Turveydrop, whether or no, and \nhe is very fond of me.  It's a secret as yet, even on his side, \nbecause old Mr. Turveydrop has a share in the connexion and it \nmight break his heart or give him some other shock if he was told \nof it abruptly.  Old Mr. Turveydrop is a very gentlemanly man \nindeed--very gentlemanly.\"\n\n\"Does his wife know of it?\" asked Ada.\n\n\"Old Mr. Turveydrop's wife, Miss Clare?\" returned Miss Jellyby, \nopening her eyes.  \"There's no such person.  He is a widower.\"\n\nWe were here interrupted by Peepy, whose leg had undergone so much \non account of his sister's unconsciously jerking it like a bell-\nrope whenever she was emphatic that the afflicted child now \nbemoaned his sufferings with a very low-spirited noise.  As he \nappealed to me for compassion, and as I was only a listener, I \nundertook to hold him.  Miss Jellyby proceeded, after begging \nPeepy's pardon with a kiss and assuring him that she hadn't meant \nto do it.\n\n\"That's the state of the case,\" said Caddy.  \"If I ever blame \nmyself, I still think it's Ma's fault.  We are to be married \nwhenever we can, and then I shall go to Pa at the office and write \nto Ma.  It won't much agitate Ma; I am only pen and ink to HER.  \nOne great comfort is,\" said Caddy with a sob, \"that I shall never \nhear of Africa after I am married.  Young Mr. Turveydrop hates it \nfor my sake, and if old Mr. Turveydrop knows there is such a place, \nit's as much as he does.\"\n\n\"It was he who was very gentlemanly, I think!\" said I.\n\n\"Very gentlemanly indeed,\" said Caddy.  \"He is celebrated almost \neverywhere for his deportment.\"\n\n\"Does he teach?\" asked Ada.\n\n\"No, he don't teach anything in particular,\" replied Caddy.  \"But \nhis deportment is beautiful.\"\n\nCaddy went on to say with considerable hesitation and reluctance \nthat there was one thing more she wished us to know, and felt we \nought to know, and which she hoped would not offend us.  It was \nthat she had improved her acquaintance with Miss Flite, the little \ncrazy old lady, and that she frequently went there early in the \nmorning and met her lover for a few minutes before breakfast--only \nfor a few minutes.  \"I go there at other times,\" said Caddy, \"but \nPrince does not come then.  Young Mr. Turveydrop's name is Prince; \nI wish it wasn't, because it sounds like a dog, but of course be \ndidn't christen himself.  Old Mr. Turveydrop had him christened \nPrince in remembrance of the Prince Regent.  Old Mr. Turveydrop \nadored the Prince Regent on account of his deportment.  I hope you \nwon't think the worse of me for having made these little \nappointments at Miss Flite's, where I first went with you, because \nI like the poor thing for her own sake and I believe she likes me.  \nIf you could see young Mr. Turveydrop, I am sure you would think \nwell of him--at least, I am sure you couldn't possibly think any \nill of him.  I am going there now for my lesson.  I couldn't ask \nyou to go with me, Miss Summerson; but if you would,\" said Caddy, \nwho had said all this earnestly and tremblingly, \"I should be very \nglad--very glad.\"\n\nIt happened that we had arranged with my guardian to go to Miss \nFlite's that day.  We had told him of our former visit, and our \naccount had interested him; but something had always happened to \nprevent our going there again.  As I trusted that I might have \nsufficient influence with Miss Jellyby to prevent her taking any \nvery rash step if I fully accepted the confidence she was so \nwilling to place in me, poor girl, I proposed that she and I and \nPeepy should go to the academy and afterwards meet my guardian and \nAda at Miss Flite's, whose name I now learnt for the first time.  \nThis was on condition that Miss Jellyby and Peepy should come back \nwith us to dinner.  The last article of the agreement being \njoyfully acceded to by both, we smartened Peepy up a little with \nthe assistance of a few pins, some soap and water, and a hair-\nbrush, and went out, bending our steps towards Newman Street, which \nwas very near.\n\nI found the academy established in a sufficiently dingy house at \nthe corner of an archway, with busts in all the staircase windows.  \nIn the same house there were also established, as I gathered from \nthe plates on the door, a drawing-master, a coal-merchant (there \nwas, certainly, no room for his coals), and a lithographic artist.  \nOn the plate which, in size and situation, took precedence of all \nthe rest, I read, MR. TURVEYDROP.  The door was open, and the hall \nwas blocked up by a grand piano, a harp, and several other musical \ninstruments in cases, all in progress of removal, and all looking \nrakish in the daylight.  Miss Jellyby informed me that the academy \nhad been lent, last night, for a concert.\n\nWe went upstairs--it had been quite a fine house once, when it was \nanybody's business to keep it clean and fresh, and nobody's \nbusiness to smoke in it all day--and into Mr. Turveydrop's great \nroom, which was built out into a mews at the back and was lighted \nby a skylight.  It was a bare, resounding room smelling of stables, \nwith cane forms along the walls, and the walls ornamented at \nregular intervals with painted lyres and little cut-glass branches \nfor candles, which seemed to be shedding their old-fashioned drops \nas other branches might shed autumn leaves.  Several young lady \npupils, ranging from thirteen or fourteen years of age to two or \nthree and twenty, were assembled; and I was looking among them for \ntheir instructor when Caddy, pinching my arm, repeated the ceremony \nof introduction.  \"Miss Summerson, Mr. Prince Turveydrop!\"\n\nI curtsied to a little blue-eyed fair man of youthful appearance \nwith flaxen hair parted in the middle and curling at the ends all \nround his head.  He had a little fiddle, which we used to call at \nschool a kit, under his left arm, and its little bow in the same \nhand.  His little dancing-shoes were particularly diminutive, and \nhe had a little innocent, feminine manner which not only appealed \nto me in an amiable way, but made this singular effect upon me, \nthat I received the impression that he was like his mother and that \nhis mother had not been much considered or well used.\n\n\"I am very happy to see Miss Jellyby's friend,\" he said, bowing low \nto me.  \"I began to fear,\" with timid tenderness, \"as it was past \nthe usual time, that Miss Jellyby was not coming.\"\n\n\"I beg you will have the goodness to attribute that to me, who have \ndetained her, and to receive my excuses, sir,\" said I.\n\n\"Oh, dear!\" said he.\n\n\"And pray,\" I entreated, \"do not allow me to be the cause of any \nmore delay.\"\n\nWith that apology I withdrew to a seat between Peepy (who, being \nwell used to it, had already climbed into a corner place) and an \nold lady of a censorious countenance whose two nieces were in the \nclass and who was very indignant with Peepy's boots.  Prince \nTurveydrop then tinkled the strings of his kit with his fingers, \nand the young ladies stood up to dance.  Just then there appeared \nfrom a side-door old Mr. Turveydrop, in the full lustre of his \ndeportment.\n\nHe was a fat old gentleman with a false complexion, false teeth, \nfalse whiskers, and a wig.  He had a fur collar, and he had a \npadded breast to his coat, which only wanted a star or a broad blue \nribbon to be complete.  He was pinched in, and swelled out, and got \nup, and strapped down, as much as he could possibly bear.  He had \nsuch a neckcloth on (puffing his very eyes out of their natural \nshape), and his chin and even his ears so sunk into it, that it \nseemed as though be must inevitably double up if it were cast \nloose.  He had under his arm a hat of great size and weight, \nshelving downward from the crown to the brim, and in his hand a \npair of white gloves with which he flapped it as he stood poised on \none leg in a high-shouldered, round-elbowed state of elegance not \nto be surpassed.  He had a cane, he had an eye-glass, he had a \nsnuff-box, he had rings, he had wristbands, he had everything but \nany touch of nature; he was not like youth, he was not like age, he \nwas not like anything in the world but a model of deportment.\n\n\"Father!  A visitor.  Miss Jellyby's friend, Miss Summerson.\"\n\n\"Distinguished,\" said Mr. Turveydrop, \"by Miss Summerson's \npresence.\"  As he bowed to me in that tight state, I almost believe \nI saw creases come into the whites of his eyes.\n\n\"My father,\" said the son, aside, to me with quite an affecting \nbelief in him, \"is a celebrated character.  My father is greatly \nadmired.\"\n\n\"Go on, Prince!  Go on!\" said Mr. Turveydrop, standing with his \nback to the fire and waving his gloves condescendingly.  \"Go on, my \nson!\"\n\nAt this command, or by this gracious permission, the lesson went \non.  Prince Turveydrop sometimes played the kit, dancing; sometimes \nplayed the piano, standing; sometimes hummed the tune with what \nlittle breath he could spare, while he set a pupil right; always \nconscientiously moved with the least proficient through every step \nand every part of the figure; and never rested for an instant.  His \ndistinguished father did nothing whatever but stand before the \nfire, a model of deportment.\n\n\"And he never does anything else,\" said the old lady of the \ncensorious countenance.  \"Yet would you believe that it's HIS name \non the door-plate?\"\n\n\"His son's name is the same, you know,\" said I.\n\n\"He wouldn't let his son have any name if he could take it from \nhim,\" returned the old lady.  \"Look at the son's dress!\"  It \ncertainly was plain--threadbare--almost shabby.  \"Yet the father \nmust be garnished and tricked out,\" said the old lady, \"because of \nhis deportment.  I'd deport him!  Transport him would be better!\"\n\nI felt curious to know more concerning this person.  I asked, \"Does \nhe give lessons in deportment now?\"\n\n\"Now!\" returned the old lady shortly.  \"Never did.\"\n\nAfter a moment's consideration, I suggested that perhaps fencing \nhad been his accomplishment.\n\n\"I don't believe he can fence at all, ma'am,\" said the old lady.\n\nI looked surprised and inquisitive.  The old lady, becoming more \nand more incensed against the master of deportment as she dwelt \nupon the subject, gave me some particulars of his career, with \nstrong assurances that they were mildly stated.\n\nHe had married a meek little dancing-mistress, with a tolerable \nconnexion (having never in his life before done anything but deport \nhimself), and had worked her to death, or had, at the best, \nsuffered her to work herself to death, to maintain him in those \nexpenses which were indispensable to his position.  At once to \nexhibit his deportment to the best models and to keep the best \nmodels constantly before himself, he had found it necessary to \nfrequent all public places of fashionable and lounging resort, to \nbe seen at Brighton and elsewhere at fashionable times, and to lead \nan idle life in the very best clothes.  To enable him to do this, \nthe affectionate little dancing-mistress had toiled and laboured \nand would have toiled and laboured to that hour if her strength had \nlasted so long.  For the mainspring of the story was that in spite \nof the man's absorbing selfishness, his wife (overpowered by his \ndeportment) had, to the last, believed in him and had, on her \ndeath-bed, in the most moving terms, confided him to their son as \none who had an inextinguishable claim upon him and whom he could \nnever regard with too much pride and deference.  The son, \ninheriting his mother's belief, and having the deportment always \nbefore him, had lived and grown in the same faith, and now, at \nthirty years of age, worked for his father twelve hours a day and \nlooked up to him with veneration on the old imaginary pinnacle.\n\n\"The airs the fellow gives himself!\" said my informant, shaking her \nhead at old Mr. Turveydrop with speechless indignation as he drew \non his tight gloves, of course unconscious of the homage she was \nrendering.  \"He fully believes he is one of the aristocracy!  And \nhe is so condescending to the son he so egregiously deludes that \nyou might suppose him the most virtuous of parents.  Oh!\" said the \nold lady, apostrophizing him with infinite vehemence.  \"I could \nbite you!\"\n\nI could not help being amused, though I heard the old lady out with \nfeelings of real concern.  It was difficult to doubt her with the \nfather and son before me.  What I might have thought of them \nwithout the old lady's account, or what I might have thought of the \nold lady's account without them, I cannot say.  There was a fitness \nof things in the whole that carried conviction with it.\n\nMy eyes were yet wandering, from young Mr. Turveydrop working so \nhard, to old Mr. Turveydrop deporting himself so beautifully, when \nthe latter came ambling up to me and entered into conversation.\n\nHe asked me, first of all, whether I conferred a charm and a \ndistinction on London by residing in it?  I did not think it \nnecessary to reply that I was perfectly aware I should not do that, \nin any case, but merely told him where I did reside.\n\n\"A lady so graceful and accomplished,\" he said, kissing his right \nglove and afterwards extending it towards the pupils, \"will look \nleniently on the deficiencies here.  We do our best to polish--\npolish--polish!\"\n\nHe sat down beside me, taking some pains to sit on the form.  I \nthought, in imitation of the print of his illustrious model on the \nsofa.  And really he did look very like it.\n\n\"To polish--polish--polish!\" he repeated, taking a pinch of snuff \nand gently fluttering his fingers.  \"But we are not, if I may say \nso to one formed to be graceful both by Nature and Art--\" with the \nhigh-shouldered bow, which it seemed impossible for him to make \nwithout lifting up his eyebrows and shutting his eyes \"--we are not \nwhat we used to be in point of deportment.\"\n\n\"Are we not, sir?\" said I.\n\n\"We have degenerated,\" he returned, shaking his head, which he \ncould do to a very limited extent in his cravat.  \"A levelling age \nis not favourable to deportment.  It develops vulgarity.  Perhaps I \nspeak with some little partiality.  It may not be for me to say \nthat I have been called, for some years now, Gentleman Turveydrop, \nor that his Royal Highness the Prince Regent did me the honour to \ninquire, on my removing my hat as he drove out of the Pavilion at \nBrighton (that fine building), 'Who is he?  Who the devil is he?  \nWhy don't I know him?  Why hasn't he thirty thousand a year?'  But \nthese are little matters of anecdote--the general property, ma'am--\nstill repeated occasionally among the upper classes.\"\n\n\"Indeed?\" said I.\n\nHe replied with the high-shouldered bow.  \"Where what is left among \nus of deportment,\" he added, \"still lingers.  England--alas, my \ncountry!--has degenerated very much, and is degenerating every day.  \nShe has not many gentlemen left.  We are few.  I see nothing to \nsucceed us but a race of weavers.\"\n\n\"One might hope that the race of gentlemen would be perpetuated \nhere,\" said I.\n\n\"You are very good.\"  He smiled with a high-shouldered bow again.  \n\"You flatter me.  But, no--no!  I have never been able to imbue my \npoor boy with that part of his art.  Heaven forbid that I should \ndisparage my dear child, but he has--no deportment.\"\n\n\"He appears to be an excellent master,\" I observed.\n\n\"Understand me, my dear madam, he IS an excellent master.  All that \ncan be acquired, he has acquired.  All that can be imparted, he can \nimpart.  But there ARE things--\"  He took another pinch of snuff \nand made the bow again, as if to add, \"This kind of thing, for \ninstance.\"\n\nI glanced towards the centre of the room, where Miss Jellyby's \nlover, now engaged with single pupils, was undergoing greater \ndrudgery than ever.\n\n\"My amiable child,\" murmured Mr. Turveydrop, adjusting his cravat.\n\n\"Your son is indefatigable,\" said I.\n\n\"It is my reward,\" said Mr. Turveydrop, \"to hear you say so.  In \nsome respects, he treads in the footsteps of his sainted mother.  \nShe was a devoted creature.  But wooman, lovely wooman,\" said Mr. \nTurveydrop with very disagreeable gallantry, \"what a sex you are!\"\n\nI rose and joined Miss Jellyby, who was by this time putting on her \nbonnet.  The time allotted to a lesson having fully elapsed, there \nwas a general putting on of bonnets.  When Miss Jellyby and the \nunfortunate Prince found an opportunity to become betrothed I don't \nknow, but they certainly found none on this occasion to exchange a \ndozen words.\n\n\"My dear,\" said Mr. Turveydrop benignly to his son, \"do you know \nthe hour?\"\n\n\"No, father.\"  The son had no watch.  The father had a handsome \ngold one, which he pulled out with an air that was an example to \nmankind.\n\n\"My son,\" said he, \"it's two o'clock.  Recollect your school at \nKensington at three.\"\n\n\"That's time enough for me, father,\" said Prince.  \"I can take a \nmorsel of dinner standing and be off.\"\n\n\"My dear boy,\" returned his father, \"you must be very quick.  You \nwill find the cold mutton on the table.\"\n\n\"Thank you, father.  Are YOU off now, father?\"\n\n\"Yes, my dear.  I suppose,\" said Mr. Turveydrop, shutting his eyes \nand lifting up his shoulders with modest consciousness, \"that I \nmust show myself, as usual, about town.\"\n\n\"You had better dine out comfortably somewhere,\" said his son.\n\n\"My dear child, I intend to.  I shall take my little meal, I think, \nat the French house, in the Opera Colonnade.\"\n\n\"That's right.  Good-bye, father!\" said Prince, shaking hands.\n\n\"Good-bye, my son.  Bless you!\"\n\nMr. Turveydrop said this in quite a pious manner, and it seemed to \ndo his son good, who, in parting from him, was so pleased with him, \nso dutiful to him, and so proud of him that I almost felt as if it \nwere an unkindness to the younger man not to be able to believe \nimplicitly in the elder.  The few moments that were occupied by \nPrince in taking leave of us (and particularly of one of us, as I \nsaw, being in the secret), enhanced my favourable impression of his \nalmost childish character.  I felt a liking for him and a \ncompassion for him as he put his little kit in his pocket--and with \nit his desire to stay a little while with Caddy--and went away \ngood-humouredly to his cold mutton and his school at Kensington, \nthat made me scarcely less irate with his father than the \ncensorious old lady.\n\nThe father opened the room door for us and bowed us out in a \nmanner, I must acknowledge, worthy of his shining original.  In the \nsame style he presently passed us on the other side of the street, \non his way to the aristocratic part of the town, where he was going \nto show himself among the few other gentlemen left.  For some \nmoments, I was so lost in reconsidering what I had heard and seen \nin Newman Street that I was quite unable to talk to Caddy or even \nto fix my attention on what she said to me, especially when I began \nto inquire in my mind whether there were, or ever had been, any \nother gentlemen, not in the dancing profession, who lived and \nfounded a reputation entirely on their deportment.  This became so \nbewildering and suggested the possibility of so many Mr. \nTurveydrops that I said, \"Esther, you must make up your mind to \nabandon this subject altogether and attend to Caddy.\"  I \naccordingly did so, and we chatted all the rest of the way to \nLincoln's Inn.\n\nCaddy told me that her lover's education had been so neglected that \nit was not always easy to read his notes.  She said if he were not \nso anxious about his spelling and took less pains to make it clear, \nhe would do better; but he put so many unnecessary letters into \nshort words that they sometimes quite lost their English \nappearance.  \"He does it with the best intention,\" observed Caddy, \n\"but it hasn't the effect he means, poor fellow!\"  Caddy then went \non to reason, how could he be expected to be a scholar when he had \npassed his whole life in the dancing-school and had done nothing \nbut teach and fag, fag and teach, morning, noon, and night!  And \nwhat did it matter?  She could write letters enough for both, as \nshe knew to her cost, and it was far better for him to be amiable \nthan learned.  \"Besides, it's not as if I was an accomplished girl \nwho had any right to give herself airs,\" said Caddy.  \"I know \nlittle enough, I am sure, thanks to Ma!\n\n\"There's another thing I want to tell you, now we are alone,\" \ncontinued Caddy, \"which I should not have liked to mention unless \nyou had seen Prince, Miss Summerson.  You know what a house ours \nis.  It's of no use my trying to learn anything that it would be \nuseful for Prince's wife to know in OUR house.  We live in such a \nstate of muddle that it's impossible, and I have only been more \ndisheartened whenever I have tried.  So I get a little practice \nwith--who do you think?  Poor Miss Flite!  Early in the morning I \nhelp her to tidy her room and clean her birds, and I make her cup \nof coffee for her (of course she taught me), and I have learnt to \nmake it so well that Prince says it's the very best coffee he ever \ntasted, and would quite delight old Mr. Turveydrop, who is very \nparticular indeed about his coffee.  I can make little puddings \ntoo; and I know how to buy neck of mutton, and tea, and sugar, and \nbutter, and a good many housekeeping things.  I am not clever at my \nneedle, yet,\" said Caddy, glancing at the repairs on Peepy's frock, \n\"but perhaps I shall improve, and since I have been engaged to \nPrince and have been doing all this, I have felt better-tempered, I \nhope, and more forgiving to Ma.  It rather put me out at first this \nmorning to see you and Miss Clare looking so neat and pretty and to \nfeel ashamed of Peepy and myself too, but on the whole I hope I am \nbetter-tempered than I was and more forgiving to Ma.\"\n\nThe poor girl, trying so hard, said it from her heart, and touched \nmine.  \"Caddy, my love,\" I replied, \"I begin to have a great \naffection for you, and I hope we shall become friends.\"\n\n\"Oh, do you?\" cried Caddy.  \"How happy that would make me!\"\n\n\"My dear Caddy,\" said I, \"let us be friends from this time, and let \nus often have a chat about these matters and try to find the right \nway through them.\"  Caddy was overjoyed.  I said everything I could \nin my old-fashioned way to comfort and encourage her, and I would \nnot have objected to old Mr. Turveydrop that day for any smaller \nconsideration than a settlement on his daughter-in-law.\n\nBy this time we were come to Mr. Krook's, whose private door stood \nopen.  There was a bill, pasted on the door-post, announcing a room \nto let on the second floor.  It reminded Caddy to tell me as we \nproceeded upstairs that there had been a sudden death there and an \ninquest and that our little friend had been ill of the fright.  The \ndoor and window of the vacant room being open, we looked in.  It \nwas the room with the dark door to which Miss Flite had secretly \ndirected my attention when I was last in the house.  A sad and \ndesolate place it was, a gloomy, sorrowful place that gave me a \nstrange sensation of mournfulness and even dread.  \"You look pale,\" \nsaid Caddy when we came out, \"and cold!\"  I felt as if the room had \nchilled me.\n\nWe had walked slowly while we were talking, and my guardian and Ada \nwere here before us.  We found them in Miss Flite's garret.  They \nwere looking at the birds, while a medical gentleman who was so \ngood as to attend Miss Flite with much solicitude and compassion \nspoke with her cheerfully by the fire.\n\n\"I have finished my professional visit,\" he said, coming forward.  \n\"Miss Flite is much better and may appear in court (as her mind is \nset upon it) to-morrow.  She has been greatly missed there, I \nunderstand.\"\n\nMiss Flite received the compliment with complacency and dropped a \ngeneral curtsy to us.\n\n\"Honoured, indeed,\" said she, \"by another visit from the wards in \nJarndyce!  Ve-ry happy to receive Jarndyce of Bleak House beneath \nmy humble roof!\" with a special curtsy.  \"Fitz-Jarndyce, my dear\"--\nshe had bestowed that name on Caddy, it appeared, and always called \nher by it--\"a double welcome!\"\n\n\"Has she been very ill?\" asked Mr. Jarndyce of the gentleman whom \nwe had found in attendance on her.  She answered for herself \ndirectly, though he had put the question in a whisper.\n\n\"Oh, decidedly unwell!  Oh, very unwell indeed,\" she said \nconfidentially.  \"Not pain, you know--trouble.  Not bodily so much \nas nervous, nervous!  The truth is,\" in a subdued voice and \ntrembling, \"we have had death here.  There was poison in the house.  \nI am very susceptible to such horrid things.  It frightened me.  \nOnly Mr. Woodcourt knows how much.  My physician, Mr, Woodcourt!\" \nwith great stateliness.  \"The wards in Jarndyce--Jarndyce of Bleak \nHouse--Fitz-Jarndyce!\"\n\n\"Miss Flite,\" said Mr. Woodcourt in a grave kind of voice, as if he \nwere appealing to her while speaking to us, and laying his hand \ngently on her arm, \"Miss Flite describes her illness with her usual \naccuracy.  She was alarmed by an occurrence in the house which \nmight have alarmed a stronger person, and was made ill by the \ndistress and agitation.  She brought me here in the first hurry of \nthe discovery, though too late for me to be of any use to the \nunfortunate man.  I have compensated myself for that disappointment \nby coming here since and being of some small use to her.\"\n\n\"The kindest physician in the college,\" whispered Miss Flite to me.  \n\"I expect a judgment.  On the day of judgment.  And shall then \nconfer estates.\"\n\n\"She will be as well in a day or two,\" said Mr. Woodcourt, looking \nat her with an observant smile, \"as she ever will be.  In other \nwords, quite well of course.  Have you heard of her good fortune?\"\n\n\"Most extraordinary!\" said Miss Flite, smiling brightly.  \"You \nnever heard of such a thing, my dear!  Every Saturday, Conversation \nKenge or Guppy (clerk to Conversation K.) places in my hand a paper \nof shillings.  Shillings.  I assure you!  Always the same number in \nthe paper.  Always one for every day in the week.  Now you know, \nreally!  So well-timed, is it not?  Ye-es!  From whence do these \npapers come, you say?  That is the great question.  Naturally.  \nShall I tell you what I think?  I think,\" said Miss Flite, drawing \nherself back with a very shrewd look and shaking her right \nforefinger in a most significant manner, \"that the Lord Chancellor, \naware of the length of time during which the Great Seal has been \nopen (for it has been open a long time!), forwards them.  Until the \njudgment I expect is given.  Now that's very creditable, you know.  \nTo confess in that way that he IS a little slow for human life.  So \ndelicate!  Attending court the other day--I attend it regularly, \nwith my documents--I taxed him with it, and he almost confessed.  \nThat is, I smiled at him from my bench, and HE smiled at me from \nhis bench.  But it's great good fortune, is it not?  And Fitz-\nJarndyce lays the money out for me to great advantage.  Oh, I \nassure you to the greatest advantage!\"\n\nI congratulated her (as she addressed herself to me) upon this \nfortunate addition to her income and wished her a long continuance \nof it.  I did not speculate upon the source from which it came or \nwonder whose humanity was so considerate.  My guardian stood before \nme, contemplating the birds, and I had no need to look beyond him.\n\n\"And what do you call these little fellows, ma'am?\" said he in his \npleasant voice.  \"Have they any names?\"\n\n\"I can answer for Miss Elite that they have,\" said I, \"for she \npromised to tell us what they were.  Ada remembers?\"\n\nAda remembered very well.\n\n\"Did I?\" said Miss Elite.  \"Who's that at my door?  What are you \nlistening at my door for, Krook?\"\n\nThe old man of the house, pushing it open before him, appeared \nthere with his fur cap in his hand and his cat at his heels.\n\n\"I warn't listening, Miss Flite,\" he said, \"I was going to give a \nrap with my knuckles, only you're so quick!\"\n\n\"Make your cat go down.  Drive her away!\" the old lady angrily \nexclaimed.\n\n\"Bah, bah!  There ain't no danger, gentlefolks,\" said Mr. Krook, \nlooking slowly and sharply from one to another until he had looked \nat all of us; \"she'd never offer at the birds when I was here \nunless I told her to it.\"\n\n\"You will excuse my landlord,\" said the old lady with a dignified \nair.  \"M, quite M!  What do you want, Krook, when I have company?\"\n\n\"Hi!\" said the old man.  \"You know I am the Chancellor.\"\n\n\"Well?\" returned Miss Elite.  \"What of that?\"\n\n\"For the Chancellor,\" said the old man with a chuckle, \"not to be \nacquainted with a Jarndyce is queer, ain't it, Miss Flite?  \nMightn't I take the liberty?  Your servant, sir.  I know Jarndyce \nand Jarndyce a'most as well as you do, sir.  I knowed old Squire \nTom, sir.  I never to my knowledge see you afore though, not even \nin court.  Yet, I go there a mortal sight of times in the course of \nthe year, taking one day with another.\"\n\n\"I never go there,\" said Mr. Jarndyce (which he never did on any \nconsideration).  \"I would sooner go--somewhere else.\"\n\n\"Would you though?\" returned Krook, grinning.  \"You're bearing hard \nupon my noble and learned brother in your meaning, sir, though \nperhaps it is but nat'ral in a Jarndyce.  The burnt child, sir!  \nWhat, you're looking at my lodger's birds, Mr. Jarndyce?\"  The old \nman had come by little and little into the room until he now \ntouched my guardian with his elbow and looked close up into his \nface with his spectacled eyes.  \"It's one of her strange ways that \nshe'll never tell the names of these birds if she can help it, \nthough she named 'em all.\"  This was in a whisper.  \"Shall I run \n'em over, Flite?\" he asked aloud, winking at us and pointing at her \nas she turned away, affecting to sweep the grate.\n\n\"If you like,\" she answered hurriedly.\n\nThe old man, looking up at the cages after another look at us, went \nthrough the list.\n\n\"Hope, Joy, Youth, Peace, Rest, Life, Dust, Ashes, Waste, Want, \nRuin, Despair, Madness, Death, Cunning, Folly, Words, Wigs, Rags, \nSheepskin, Plunder, Precedent, Jargon, Gammon, and Spinach.  That's \nthe whole collection,\" said the old man, \"all cooped up together, \nby my noble and learned brother.\"\n\n\"This is a bitter wind!\" muttered my guardian.\n\n\"When my noble and learned brother gives his judgment, they're to \nbe let go free,\" said Krook, winking at us again.  \"And then,\" he \nadded, whispering and grinning, \"if that ever was to happen--which \nit won't--the birds that have never been caged would kill 'em.\"\n\n\"If ever the wind was in the east,\" said my guardian, pretending to \nlook out of the window for a weathercock, \"I think it's there to-\nday!\"\n\nWe found it very difficult to get away from the house.  It was not \nMiss Flite who detained us; she was as reasonable a little creature \nin consulting the convenience of others as there possibly could be.  \nIt was Mr. Krook.  He seemed unable to detach himself from Mr. \nJarndyce.  If he had been linked to him, he could hardly have \nattended him more closely.  He proposed to show us his Court of \nChancery and all the strange medley it contained; during the whole \nof our inspection (prolonged by himself) he kept close to Mr. \nJarndyce and sometimes detained him under one pretence or other \nuntil we had passed on, as if he were tormented by an inclination \nto enter upon some secret subject which he could not make up his \nmind to approach.  I cannot imagine a countenance and manner more \nsingularly expressive of caution and indecision, and a perpetual \nimpulse to do something he could not resolve to venture on, than \nMr. Krook's was that day.  His watchfulness of my guardian was \nincessant.  He rarely removed his eyes from his face.  If he went \non beside him, he observed him with the slyness of an old white \nfox.  If he went before, he looked back.  When we stood still, he \ngot opposite to him, and drawing his hand across and across his \nopen mouth with a curious expression of a sense of power, and \nturning up his eyes, and lowering his grey eyebrows until they \nappeared to be shut, seemed to scan every lineament of his face.\n\nAt last, having been (always attended by the cat) all over the \nhouse and having seen the whole stock of miscellaneous lumber, \nwhich was certainly curious, we came into the back part of the \nshop.  Here on the head of an empty barrel stood on end were an \nink-bottle, some old stumps of pens, and some dirty playbills; and \nagainst the wall were pasted several large printed alphabets in \nseveral plain hands.\n\n\"What are you doing here?\" asked my guardian.\n\n\"Trying to learn myself to read and write,\" said Krook.\n\n\"And how do you get on?\"\n\n\"Slow.  Bad,\" returned the old man impatiently.  \"It's hard at my \ntime of life.\"\n\n\"It would be easier to be taught by some one,\" said my guardian.\n\n\"Aye, but they might teach me wrong!\" returned the old man with a \nwonderfully suspicious flash of his eye.  \"I don't know what I may \nhave lost by not being learned afore.  I wouldn't like to lose \nanything by being learned wrong now.\"\n\n\"Wrong?\" said my guardian with his good-humoured smile.  \"Who do \nyou suppose would teach you wrong?\"\n\n\"I don't know, Mr. Jarndyce of Bleak House!\" replied the old man, \nturning up his spectacles on his forehead and rubbing his hands.  \n\"I don't suppose as anybody would, but I'd rather trust my own self \nthan another!\"\n\nThese answers and his manner were strange enough to cause my \nguardian to inquire of Mr. Woodcourt, as we all walked across \nLincoln's Inn together, whether Mr. Krook were really, as his \nlodger represented him, deranged.  The young surgeon replied, no, \nhe had seen no reason to think so.  He was exceedingly distrustful, \nas ignorance usually was, and he was always more or less under the \ninfluence of raw gin, of which he drank great quantities and of \nwhich he and his back-shop, as we might have observed, smelt \nstrongly; but he did not think him mad as yet.\n\nOn our way home, I so conciliated Peepy's affections by buying him \na windmill and two flour-sacks that he would suffer nobody else to \ntake off his hat and gloves and would sit nowhere at dinner but at \nmy side.  Caddy sat upon the other side of me, next to Ada, to whom \nwe imparted the whole history of the engagement as soon as we got \nback.  We made much of Caddy, and Peepy too; and Caddy brightened \nexceedingly; and my guardian was as merry as we were; and we were \nall very happy indeed until Caddy went home at night in a hackney-\ncoach, with Peepy fast asleep, but holding tight to the windmill.\n\nI have forgotten to mention--at least I have not mentioned--that \nMr. Woodcourt was the same dark young surgeon whom we had met at \nMr. Badger's.  Or that Mr. Jarndyce invited him to dinner that day.  \nOr that he came.  Or that when they were all gone and I said to \nAda, \"Now, my darling, let us have a little talk about Richard!\"  \nAda laughed and said--\n\nBut I don't think it matters what my darling said.  She was always \nmerry.\n\n\n\nCHAPTER XV\n\nBell Yard\n\n\nWhile we were in London Mr. Jarndyce was constantly beset by the \ncrowd of excitable ladies and gentlemen whose proceedings had so \nmuch astonished us.  Mr. Quale, who presented himself soon after \nour arrival, was in all such excitements.  He seemed to project \nthose two shining knobs of temples of his into everything that went \non and to brush his hair farther and farther back, until the very \nroots were almost ready to fly out of his head in inappeasable \nphilanthropy.  All objects were alike to him, but he was always \nparticularly ready for anything in the way of a testimonial to any \none.  His great power seemed to be his power of indiscriminate \nadmiration.  He would sit for any length of time, with the utmost \nenjoyment, bathing his temples in the light of any order of \nluminary.  Having first seen him perfectly swallowed up in \nadmiration of Mrs. Jellyby, I had supposed her to be the absorbing \nobject of his devotion.  I soon discovered my mistake and found him \nto be train-bearer and organ-blower to a whole procession of \npeople.\n\nMrs. Pardiggle came one day for a subscription to something, and \nwith her, Mr. Quale.  Whatever Mrs. Pardiggle said, Mr. Quale \nrepeated to us; and just as he had drawn Mrs. Jellyby out, he drew \nMrs. Pardiggle out.  Mrs. Pardiggle wrote a letter of introduction \nto my guardian in behalf of her eloquent friend Mr. Gusher.  With \nMr. Gusher appeared Mr. Quale again.  Mr. Gusher, being a flabby \ngentleman with a moist surface and eyes so much too small for his \nmoon of a face that they seemed to have been originally made for \nsomebody else, was not at first sight prepossessing; yet he was \nscarcely seated before Mr. Quale asked Ada and me, not inaudibly, \nwhether he was not a great creature--which he certainly was, \nflabbily speaking, though Mr. Quale meant in intellectual beauty--\nand whether we were not struck by his massive configuration of \nbrow.  In short, we heard of a great many missions of various sorts \namong this set of people, but nothing respecting them was half so \nclear to us as that it was Mr. Quale's mission to be in ecstasies \nwith everybody else's mission and that it was the most popular \nmission of all.\n\nMr. Jarndyce had fallen into this company in the tenderness of his \nheart and his earnest desire to do all the good in his power; but \nthat he felt it to be too often an unsatisfactory company, where \nbenevolence took spasmodic forms, where charity was assumed as a \nregular uniform by loud professors and speculators in cheap \nnotoriety, vehement in profession, restless and vain in action, \nservile in the last degree of meanness to the great, adulatory of \none another, and intolerable to those who were anxious quietly to \nhelp the weak from failing rather than with a great deal of bluster \nand self-laudation to raise them up a little way when they were \ndown, he plainly told us.  When a testimonial was originated to Mr. \nQuale by Mr. Gusher (who had already got one, originated by Mr. \nQuale), and when Mr. Gusher spoke for an hour and a half on the \nsubject to a meeting, including two charity schools of small boys \nand girls, who were specially reminded of the widow's mite, and \nrequested to come forward with halfpence and be acceptable \nsacrifices, I think the wind was in the east for three whole weeks.\n\nI mention this because I am coming to Mr. Skimpole again.  It \nseemed to me that his off-hand professions of childishness and \ncarelessness were a great relief to my guardian, by contrast with \nsuch things, and were the more readily believed in since to find \none perfectly undesigning and candid man among many opposites could \nnot fail to give him pleasure.  I should be sorry to imply that Mr. \nSkimpole divined this and was politic; I really never understood \nhim well enough to know.  What he was to my guardian, he certainly \nwas to the rest of the world.\n\nHe had not been very well; and thus, though he lived in London, we \nhad seen nothing of him until now.  He appeared one morning in his \nusual agreeable way and as full of pleasant spirits as ever.\n\nWell, he said, here he was!  He had been bilious, but rich men were \noften bilious, and therefore he had been persuading himself that he \nwas a man of property.  So he was, in a certain point of view--in \nhis expansive intentions.  He had been enriching his medical \nattendant in the most lavish manner.  He had always doubled, and \nsometimes quadrupled, his fees.  He had said to the doctor, \"Now, \nmy dear doctor, it is quite a delusion on your part to suppose that \nyou attend me for nothing.  I am overwhelming you with money--in my \nexpansive intentions--if you only knew it!\"  And really (he said) \nhe meant it to that degree that he thought it much the same as \ndoing it.  If he had had those bits of metal or thin paper to which \nmankind attached so much importance to put in the doctor's hand, he \nwould have put them in the doctor's hand.  Not having them, he \nsubstituted the will for the deed.  Very well!  If he really meant \nit--if his will were genuine and real, which it was--it appeared to \nhim that it was the same as coin, and cancelled the obligation.\n\n\"It may be, partly, because I know nothing of the value of money,\" \nsaid Mr. Skimpole, \"but I often feel this.  It seems so reasonable!  \nMy butcher says to me he wants that little bill.  It's a part of \nthe pleasant unconscious poetry of the man's nature that he always \ncalls it a 'little' bill--to make the payment appear easy to both \nof us.  I reply to the butcher, 'My good friend, if you knew it, \nyou are paid.  You haven't had the trouble of coming to ask for the \nlittle bill.  You are paid.  I mean it.'\"\n\n\"But, suppose,\" said my guardian, laughing, \"he had meant the meat \nin the bill, instead of providing it?\"\n\n\"My dear Jarndyce,\" he returned, \"you surprise me.  You take the \nbutcher's position.  A butcher I once dealt with occupied that very \nground.  Says he, 'Sir, why did you eat spring lamb at eighteen \npence a pound?'  'Why did I eat spring lamb at eighteen-pence a \npound, my honest friend?' said I, naturally amazed by the question.  \n'I like spring lamb!'  This was so far convincing.  'Well, sir,' \nsays he, 'I wish I had meant the lamb as you mean the money!'  'My \ngood fellow,' said I, 'pray let us reason like intellectual beings.  \nHow could that be?  It was impossible.  You HAD got the lamb, and I \nhave NOT got the money.  You couldn't really mean the lamb without \nsending it in, whereas I can, and do, really mean the money without \npaying it!'  He had not a word.  There was an end of the subject.\"\n\n\"Did he take no legal proceedings?\" inquired my guardian.\n\n\"Yes, he took legal proceedings,\" said Mr. Skimpole.  \"But in that \nhe was influenced by passion, not by reason.  Passion reminds me of \nBoythorn.  He writes me that you and the ladies have promised him a \nshort visit at his bachelor-house in Lincolnshire.\"\n\n\"He is a great favourite with my girls,\" said Mr. Jarndyce, \"and I \nhave promised for them.\"\n\n\"Nature forgot to shade him off, I think,\" observed Mr. Skimpole to \nAda and me.  \"A little too boisterous--like the sea.  A little too \nvehement--like a bull who has made up his mind to consider every \ncolour scarlet.  But I grant a sledge-hammering sort of merit in \nhim!\"\n\nI should have been surprised if those two could have thought very \nhighly of one another, Mr. Boythorn attaching so much importance to \nmany things and Mr. Skimpole caring so little for anything.  \nBesides which, I had noticed Mr. Boythorn more than once on the \npoint of breaking out into some strong opinion when Mr. Skimpole \nwas referred to.  Of course I merely joined Ada in saying that we \nhad been greatly pleased with him.\n\n\"He has invited me,\" said Mr. Skimpole; \"and if a child may trust \nhimself in such hands--which the present child is encouraged to do, \nwith the united tenderness of two angels to guard him--I shall go.  \nHe proposes to frank me down and back again.  I suppose it will \ncost money?  Shillings perhaps?  Or pounds?  Or something of that \nsort?  By the by, Coavinses.  You remember our friend Coavinses, \nMiss Summerson?\"\n\nHe asked me as the subject arose in his mind, in his graceful, \nlight-hearted manner and without the least embarrassment.\n\n\"Oh, yes!\" said I.\n\n\"Coavinses has been arrested by the Great Bailiff,\" said Mr. \nSkimpole.  \"He will never do violence to the sunshine any more.\"\n\nIt quite shocked me to hear it, for I had already recalled with \nanything but a serious association the image of the man sitting on \nthe sofa that night wiping his head.\n\n\"His successor informed me of it yesterday,\" said Mr. Skimpole.  \n\"His successor is in my house now--in possession, I think he calls \nit.  He came yesterday, on my blue-eyed daughter's birthday.  I put \nit to him, 'This is unreasonable and inconvenient.  If you had a \nblue-eyed daughter you wouldn't like ME to come, uninvited, on HER \nbirthday?'  But he stayed.\"\n\nMr. Skimpole laughed at the pleasant absurdity and lightly touched \nthe piano by which he was seated.\n\n\"And he told me,\" he said, playing little chords where I shall put \nfull stops, \"The Coavinses had left.  Three children.  No mother.  \nAnd that Coavinses' profession.  Being unpopular.  The rising \nCoavinses.  Were at a considerable disadvantage.\"\n\nMr. Jarndyce got up, rubbing his head, and began to walk about.  \nMr. Skimpole played the melody of one of Ada's favourite songs.  \nAda and I both looked at Mr. Jarndyce, thinking that we knew what \nwas passing in his mind.\n\nAfter walking and stopping, and several times leaving off rubbing \nhis head, and beginning again, my guardian put his hand upon the \nkeys and stopped Mr. Skimpole's playing.  \"I don't like this, \nSkimpole,\" he said thoughtfully.\n\nMr. Skimpole, who had quite forgotten the subject, looked up \nsurprised.\n\n\"The man was necessary,\" pursued my guardian, walking backward and \nforward in the very short space between the piano and the end of \nthe room and rubbing his hair up from the back of his head as if a \nhigh east wind had blown it into that form.  \"If we make such men \nnecessary by our faults and follies, or by our want of worldly \nknowledge, or by our misfortunes, we must not revenge ourselves \nupon them.  There was no harm in his trade.  He maintained his \nchildren.  One would like to know more about this.\"\n\n\"Oh!  Coavinses?\" cried Mr. Skimpole, at length perceiving what he \nmeant.  \"Nothing easier.  A walk to Coavinses' headquarters, and \nyou can know what you will.\"\n\nMr. Jarndyce nodded to us, who were only waiting for the signal.  \n\"Come!  We will walk that way, my dears.  Why not that way as soon \nas another!\"  We were quickly ready and went out.  Mr. Skimpole \nwent with us and quite enjoyed the expedition.  It was so new and \nso refreshing, he said, for him to want Coavinses instead of \nCoavinses wanting him!\n\nHe took us, first, to Cursitor Street, Chancery Lane, where there \nwas a house with barred windows, which he called Coavinses' Castle.  \nOn our going into the entry and ringing a bell, a very hideous boy \ncame out of a sort of office and looked at us over a spiked wicket.\n\n\"Who did you want?\" said the boy, fitting two of the spikes into \nhis chin.\n\n\"There was a follower, or an officer, or something, here,\" said Mr. \nJarndyce, \"who is dead.\"\n\n\"Yes?\" said the boy.  \"Well?\"\n\n\"I want to know his name, if you please?\"\n\n\"Name of Neckett,\" said the boy.\n\n\"And his address?\"\n\n\"Bell Yard,\" said the boy.  \"Chandler's shop, left hand side, name \nof Blinder.\"\n\n\"Was he--I don't know how to shape the question--\" murmured my \nguardian, \"industrious?\"\n\n\"Was Neckett?\" said the boy.  \"Yes, wery much so.  He was never \ntired of watching.  He'd set upon a post at a street corner eight \nor ten hours at a stretch if he undertook to do it.\"\n\n\"He might have done worse,\" I heard my guardian soliloquize.  \"He \nmight have undertaken to do it and not done it.  Thank you.  That's \nall I want.\"\n\nWe left the boy, with his head on one side and his arms on the \ngate, fondling and sucking the spikes, and went back to Lincoln's \nInn, where Mr. Skimpole, who had not cared to remain nearer \nCoavinses, awaited us.  Then we all went to Bell Yard, a narrow \nalley at a very short distance.  We soon found the chandler's shop.  \nIn it was a good-natured-looking old woman with a dropsy, or an \nasthma, or perhaps both.\n\n\"Neckett's children?\" said she in reply to my inquiry.  \"Yes, \nSurely, miss.  Three pair, if you please.  Door right opposite the \nstairs.\"  And she handed me the key across the counter.\n\nI glanced at the key and glanced at her, but she took it for \ngranted that I knew what to do with it.  As it could only be \nintended for the children's door, I came out without askmg any more \nquestions and led the way up the dark stairs.  We went as quietly \nas we could, but four of us made some noise on the aged boards, and \nwhen we came to the second story we found we had disturbed a man \nwho was standing there looking out of his room.\n\n\"Is it Gridley that's wanted?\" he said, fixing his eyes on me with \nan angry stare.\n\n\"No, sir,\" said I; \"I am going higher up.\"\n\nHe looked at Ada, and at Mr. Jarndyce, and at Mr. Skimpole, fixing \nthe same angry stare on each in succession as they passed and \nfollowed me.  Mr. Jarndyce gave him good day.  \"Good day!\" he said \nabruptly and fiercely.  He was a tall, sallow man with a careworn \nhead on which but little hair remained, a deeply lined face, and \nprominent eyes.  He had a combative look and a chafing, irritable \nmanner which, associated with his figure--still large and powerful, \nthough evidently in its decline--rather alarmed me.  He had a pen \nin his hand, and in the glimpse I caught of his room in passing, I \nsaw that it was covered with a litter of papers.\n\nLeaving him standing there, we went up to the top room.  I tapped \nat the door, and a little shrill voice inside said, \"We are locked \nin.  Mrs. Blinder's got the key!\"\n\nI applied the key on hearing this and opened the door.  In a poor \nroom with a sloping ceiling and containing very little furniture \nwas a mite of a boy, some five or six years old, nursing and \nhushing a heavy child of eighteen months.  There was no fire, \nthough the weather was cold; both children were wrapped in some \npoor shawls and tippets as a substitute.  Their clothing was not so \nwarm, however, but that their noses looked red and pinched and \ntheir small figures shrunken as the boy walked up and down nursing \nand hushing the child with its head on his shoulder.\n\n\"Who has locked you up here alone?\" we naturally asked.\n\n\"Charley,\" said the boy, standing still to gaze at us.\n\n\"Is Charley your brother?\"\n\n\"No.  She's my sister, Charlotte.  Father called her Charley.\"\n\n\"Are there any more of you besides Charley?\"\n\n\"Me,\" said the boy, \"and Emma,\" patting the limp bonnet of the \nchild he was nursing.  \"And Charley.\"\n\n\"Where is Charley now?\"\n\n\"Out a-washing,\" said the boy, beginning to walk up and down again \nand taking the nankeen bonnet much too near the bedstead by trying \nto gaze at us at the same time.\n\nWe were looking at one another and at these two children when there \ncame into the room a very little girl, childish in figure but \nshrewd and older-looking in the face--pretty-faced too--wearing a \nwomanly sort of bonnet much too large for her and drying her bare \narms on a womanly sort of apron.  Her fingers were white and \nwrinkled with washing, and the soap-suds were yet smoking which she \nwiped off her arms.  But for this, she might have been a child \nplaying at washing and imitating a poor working-woman with a quick \nobservation of the truth.\n\nShe had come running from some place in the neighbourhood and had \nmade all the haste she could.  Consequently, though she was very \nlight, she was out of breath and could not speak at first, as she \nstood panting, and wiping her arms, and looking quietly at us.\n\n\"Oh, here's Charley!\" said the boy.\n\nThe child he was nursing stretched forth its arms and cried out to \nbe taken by Charley.  The little girl took it, in a womanly sort of \nmanner belonging to the apron and the bonnet, and stood looking at \nus over the burden that clung to her most affectionately.\n\n\"Is it possible,\" whispered my guardian as we put a chair for the \nlittle creature and got her to sit down with her load, the boy \nkeeping close to her, holding to her apron, \"that this child works \nfor the rest?  Look at this!  For God's sake, look at this!\"\n\nIt was a thing to look at.  The three children close together, and \ntwo of them relying solely on the third, and the third so young and \nyet with an air of age and steadiness that sat so strangely on the \nchildish figure.\n\n\"Charley, Charley!\" said my guardian.  \"How old are you?\"\n\n\"Over thirteen, sir,\" replied the child.\n\n\"Oh! What a great age,\" said my guardian.  \"What a great age, \nCharley!\"\n\nI cannot describe the tenderness with which he spoke to her, half \nplayfully yet all the more compassionately and mournfully.\n\n\"And do you live alone here with these babies, Charley?\" said my \nguardian.\n\n\"Yes, sir,\" returned the child, looking up into his face with \nperfect confidence, \"since father died.\"\n\n\"And how do you live, Charley?  Oh! Charley,\" said my guardian, \nturning his face away for a moment, \"how do you live?\"\n\n\"Since father died, sir, I've gone out to work.  I'm out washing \nto-day.\"\n\n\"God help you, Charley!\" said my guardian.  \"You're not tall enough \nto reach the tub!\"\n\n\"In pattens I am, sir,\" she said quickly.  \"I've got a high pair as \nbelonged to mother.\"\n\n\"And when did mother die?  Poor mother!\"\n\n\"Mother died just after Emma was born,\" said the child, glancing at \nthe face upon her bosom.  \"Then father said I was to be as good a \nmother to her as I could.  And so I tried.  And so I worked at home \nand did cleaning and nursing and washing for a long time before I \nbegan to go out.  And that's how I know how; don't you see, sir?\"\n\n\"And do you often go out?\"\n\n\"As often as I can,\" said Charley, opening her eyes and smiling, \n\"because of earning sixpences and shillings!\"\n\n\"And do you always lock the babies up when you go out?\"\n\n'To keep 'em safe, sir, don't you see?\" said Charley.  \"Mrs. \nBlinder comes up now and then, and Mr. Gridley comes up sometimes, \nand perhaps I can run in sometimes, and they can play you know, and \nTom an't afraid of being locked up, are you, Tom?\"\n\n'\"No-o!\" said Tom stoutly.\n\n\"When it comes on dark, the lamps are lighted down in the court, \nand they show up here quite bright--almost quite bright.  Don't \nthey, Tom?\"\n\n\"Yes, Charley,\" said Tom, \"almost quite bright.\"\n\n\"Then he's as good as gold,\" said the little creature--Oh, in such \na motherly, womanly way!  \"And when Emma's tired, he puts her to \nbed.  And when he's tired he goes to bed himself.  And when I come \nhome and light the candle and has a bit of supper, he sits up again \nand has it with me.  Don't you, Tom?\"\n\n\"Oh, yes, Charley!\" said Tom.  \"That I do!\"  And either in this \nglimpse of the great pleasure of his life or in gratitude and love \nfor Charley, who was all in all to him, he laid his face among the \nscanty folds of her frock and passed from laughing into crying.\n\nIt was the first time since our entry that a tear had been shed \namong these children.  The little orphan girl had spoken of their \nfather and their mother as if all that sorrow were subdued by the \nnecessity of taking courage, and by her childish importance in \nbeing able to work, and by her bustling busy way.  But now, when \nTom cried, although she sat quite tranquil, looking quietly at us, \nand did not by any movement disturb a hair of the head of either of \nher little charges, I saw two silent tears fall down her face.\n\nI stood at the window with Ada, pretending to look at the \nhousetops, and the blackened stack of chimneys, and the poor \nplants, and the birds in little cages belonging to the neighbours, \nwhen I found that Mrs. Blinder, from the shop below, had come in \n(perhaps it had taken her all this time to get upstairs) and was \ntalking to my guardian.\n\n\"It's not much to forgive 'em the rent, sir,\" she said; \"who could \ntake it from them!\"\n\n'\"Well, well!\" said my guardian to us two.  \"It is enough that the \ntime will come when this good woman will find that it WAS much, and \nthat forasmuch as she did it unto the least of these--This child,\" \nhe added after a few moments, \"could she possibly continue this?\"\n\n\"Really, sir, I think she might,\" said Mrs. Blinder, getting her \nheavy breath by painful degrees.  \"She's as handy as it's possible \nto be.  Bless you, sir, the way she tended them two children after \nthe mother died was the talk of the yard!  And it was a wonder to \nsee her with him after he was took ill, it really was!  'Mrs. \nBlinder,' he said to me the very last he spoke--he was lying there\n--'Mrs. Blinder, whatever my calling may have been, I see a angel \nsitting in this room last night along with my child, and I trust \nher to Our Father!'\"\n\n\"He had no other calling?\" said my guardian.\n\n\"No, sir,\" returned Mrs. Blinder, \"he was nothing but a follerers.  \nWhen he first came to lodge here, I didn't know what he was, and I \nconfess that when I found out I gave him notice.  It wasn't liked \nin the yard.  It wasn't approved by the other lodgers.  It is NOT a \ngenteel calling,\" said Mrs. Blinder, \"and most people do object to \nit.  Mr. Gridley objected to it very strong, and he is a good \nlodger, though his temper has been hard tried.\"\n\n\"So you gave him notice?\" said my guardian.\n\n\"So I gave him notice,\" said Mrs. Blinder.  \"But really when the \ntime came, and I knew no other ill of him, I was in doubts.  He was \npunctual and diligent; he did what he had to do, sir,\" said Mrs. \nBlinder, unconsciously fixing Mr. Skimpole with her eye, \"and it's \nsomething in this world even to do that.\"\n\n\"So you kept him after all?\"\n\n\"Why, I said that if he could arrange with Mr. Gridley, I could \narrange it with the other lodgers and should not so much mind its \nbeing liked or disliked in the yard.  Mr. Gridley gave his consent \ngruff--but gave it.  He was always gruff with him, but he has been \nkind to the children since.  A person is never known till a person \nis proved.\"\n\n\"Have many people been kind to the children?\" asked Mr. Jarndyce.\n\n\"Upon the whole, not so bad, sir,\" said Mrs. Blinder; \"but \ncertainly not so many as would have been if their father's calling \nhad been different.  Mr. Coavins gave a guinea, and the follerers \nmade up a little purse.  Some neighbours in the yard that had \nalways joked and tapped their shoulders when he went by came \nforward with a little subscription, and--in general--not so bad.  \nSimilarly with Charlotte.  Some people won't employ her because she \nwas a follerer's child; some people that do employ her cast it at \nher; some make a merit of having her to work for them, with that \nand all her draw-backs upon her, and perhaps pay her less and put \nupon her more.  But she's patienter than others would be, and is \nclever too, and always willing, up to the full mark of her strength \nand over.  So I should say, in general, not so bad, sir, but might \nbe better.\"\n\nMrs. Blinder sat down to give herself a more favourable opportunity \nof recovering her breath, exhausted anew by so much talking before \nit was fully restored.  Mr. Jarndyce was turning to speak to us \nwhen his attention was attracted by the abrupt entrance into the \nroom of the Mr. Gridley who had been mentioned and whom we had seen \non our way up.\n\n\"I don't know what you may be doing here, ladies and gentlemen,\" he \nsaid, as if he resented our presence, \"but you'll excuse my coming \nin.  I don't come in to stare about me.  Well, Charley!  Well, Tom!  \nWell, little one!  How is it with us all to-day?\"\n\nHe bent over the group in a caressing way and clearly was regarded \nas a friend by the children, though his face retained its stern \ncharacter and his manner to us was as rude as it could be.  My \nguardian noticed it and respected it.\n\n\"No one, surely, would come here to stare about him,\" he said \nmildly.\n\n\"May be so, sir, may be so,\" returned the other, taking Tom upon \nhis knee and waving him off impatiently.  \"I don't want to argue \nwith ladies and gentlemen.  I have had enough of arguing to last \none man his life.\"\n\n\"You have sufficient reason, I dare say,\" said Mr. Jarndyce, \"for \nbeing chafed and irritated--\"\n\n\"There again!\" exclaimed the man, becoming violently angry.  \"I am \nof a quarrelsome temper.  I am irascible.  I am not polite!\"\n\n\"Not very, I think.\"\n\n\"Sir,\" said Gridley, putting down the child and going up to him as \nif he meant to strike him, \"do you know anything of Courts of \nEquity?\"\n\n\"Perhaps I do, to my sorrow.\"\n\n\"To your sorrow?\" said the man, pausing in his wrath.  \"if so, I \nbeg your pardon.  I am not polite, I know.  I beg your pardon!  \nSir,\" with renewed violence, \"I have been dragged for five and \ntwenty years over burning iron, and I have lost the habit of \ntreading upon velvet.  Go into the Court of Chancery yonder and ask \nwhat is one of the standing jokes that brighten up their business \nsometimes, and they will tell you that the best joke they have is \nthe man from Shropshire.  I,\" he said, beating one hand on the \nother passionately, \"am the man from Shropshire.\"\n\n\"I believe I and my family have also had the honour of furnishing \nsome entertainment in the same grave place,\" said my guardian \ncomposedly.  \"You may have heard my name--Jarndyce.\"\n\n\"Mr. Jarndyce,\" said Gridley with a rough sort of salutation, \"you \nbear your wrongs more quietly than I can bear mine.  More than \nthat, I tell you--and I tell this gentleman, and these young \nladies, if they are friends of yours--that if I took my wrongs in \nany other way, I should be driven mad!  It is only by resenting \nthem, and by revenging them in my mind, and by angrily demanding \nthe justice I never get, that I am able to keep my wits together.  \nIt is only that!\" he said, speaking in a homely, rustic way and \nwith great vehemence.  \"You may tell me that I over-excite myself.  \nI answer that it's in my nature to do it, under wrong, and I must \ndo it.  There's nothing between doing it, and sinking into the \nsmiling state of the poor little mad woman that haunts the court.  \nIf I was once to sit down under it, I should become imbecile.\"\n\nThe passion and heat in which he was, and the manner in which his \nface worked, and the violent gestures with which he accompanied \nwhat he said, were most painful to see.\n\n\"Mr. Jarndyce,\" he said, \"consider my case.  As true as there is a \nheaven above us, this is my case.  I am one of two brothers.  My \nfather (a farmer) made a will and left his farm and stock and so \nforth to my mother for her life.  After my mother's death, all was \nto come to me except a legacy of three hundred pounds that I was \nthen to pay my brother.  My mother died.  My brother some time \nafterwards claimed his legacy.  I and some of my relations said \nthat he had had a part of it already in board and lodging and some \nother things.  Now mind!  That was the question, and nothing else.  \nNo one disputed the will; no one disputed anything but whether part \nof that three hundred pounds had been already paid or not.  To \nsettle that question, my brother filing a bill, I was obliged to go \ninto this accursed Chancery; I was forced there because the law \nforced me and would let me go nowhere else.  Seventeen people were \nmade defendants to that simple suit!  It first came on after two \nyears.  It was then stopped for another two years while the master \n(may his head rot off!) inquired whether I was my father's son, \nabout which there was no dispute at all with any mortal creature.  \nHe then found out that there were not defendants enough--remember, \nthere were only seventeen as yet!--but that we must have another \nwho had been left out and must begin all over again.  The costs at \nthat time--before the thing was begun!--were three times the \nlegacy.  My brother would have given up the legacy, and joyful, to \nescape more costs.  My whole estate, left to me in that will of my \nfather's, has gone in costs.  The suit, still undecided, has fallen \ninto rack, and ruin, and despair, with everything else--and here I \nstand, this day!  Now, Mr. Jarndyce, in your suit there are \nthousands and thousands involved, where in mine there are hundreds.  \nIs mine less hard to bear or is it harder to bear, when my whole \nliving was in it and has been thus shamefully sucked away?\"\n\nMr. Jarndyce said that he condoled with him with all his heart and \nthat he set up no monopoly himself in being unjustly treated by \nthis monstrous system.\n\n\"There again!\" said Mr. Gridley with no diminution of his rage.  \n\"The system!  I am told on all hands, it's the system.  I mustn't \nlook to individuals.  It's the system.  I mustn't go into court and \nsay, 'My Lord, I beg to know this from you--is this right or wrong?  \nHave you the face to tell me I have received justice and therefore \nam dismissed?'  My Lord knows nothing of it.  He sits there to \nadminister the system.  I mustn't go to Mr. Tulkinghorn, the \nsolicitor in Lincoln's Inn Fields, and say to him when he makes me \nfurious by being so cool and satisfied--as they all do, for I know \nthey gain by it while I lose, don't I?--I mustn't say to him, 'I \nwill have something out of some one for my ruin, by fair means or \nfoul!'  HE is not responsible.  It's the system.  But, if I do no \nviolence to any of them, here--I may!  I don't know what may happen \nif I am carried beyond myself at last!  I will accuse the \nindividual workers of that system against me, face to face, before \nthe great eternal bar!\"\n\nHis passion was fearful.  I could not have believed in such rage \nwithout seeing it.\n\n\"I have done!\" he said, sitting down and wiping his face.  \"Mr. \nJarndyce, I have done!  I am violent, I know.  I ought to know it.  \nI have been in prison for contempt of court.  I have been in prison \nfor threatening the solicitor.  I have been in this trouble, and \nthat trouble, and shall be again.  I am the man from Shropshire, \nand I sometimes go beyond amusing them, though they have found it \namusing, too, to see me committed into custody and brought up in \ncustody and all that.  It would be better for me, they tell me, if \nI restrained myself.  I tell them that if I did restrain myself I \nshould become imbecile.  I was a good-enough-tempered man once, I \nbelieve.  People in my part of the country say they remember me so, \nbut now I must have this vent under my sense of injury or nothing \ncould hold my wits together.  It would be far better for you, Mr. \nGridley,' the Lord Chancellor told me last week, 'not to waste your \ntime here, and to stay, usefully employed, down in Shropshire.'  \n'My Lord, my Lord, I know it would,' said I to him, 'and it would \nhave been far better for me never to have heard the name of your \nhigh office, but unhappily for me, I can't undo the past, and the \npast drives me here!'  Besides,\" he added, breaking fiercely out, \n\"I'll shame them.  To the last, I'll show myself in that court to \nits shame.  If I knew when I was going to die, and could be carried \nthere, and had a voice to speak with, I would die there, saying, \n'You have brought me here and sent me from here many and many a \ntime.  Now send me out feet foremost!'\"\n\nHis countenance had, perhaps for years, become so set in its \ncontentious expression that it did not soften, even now when he was \nquiet.\n\n\"I came to take these babies down to my room for an hour,\" he said, \ngoing to them again, \"and let them play about.  I didn't mean to \nsay all this, but it don't much signify.  You're not afraid of me, \nTom, are you?\"\n\n\"No!\" said Tom.  \"You ain't angry with ME.\"\n\n\"You are right, my child.  You're going back, Charley?  Aye?  Come \nthen, little one!\"  He took the youngest child on his arm, where \nshe was willing enough to be carried.  \"I shouldn't wonder if we \nfound a ginger-bread soldier downstairs.  Let's go and look for \nhim!\"\n\nHe made his former rough salutation, which was not deficient in a \ncertain respect, to Mr. Jarndyce, and bowing slightly to us, went \ndownstairs to his room.\n\nUpon that, Mr. Skimpole began to talk, for the first time since our \narrival, in his usual gay strain.  He said, Well, it was really \nvery pleasant to see how things lazily adapted themselves to \npurposes.  Here was this Mr. Gridley, a man of a robust will and \nsurprising energy--intellectually speaking, a sort of inharmonious \nblacksmith--and he could easily imagine that there Gridley was, \nyears ago, wandering about in life for something to expend his \nsuperfluous combativeness upon--a sort of Young Love among the \nthorns--when the Court of Chancery came in his way and accommodated \nhim with the exact thing he wanted.  There they were, matched, ever \nafterwards!  Otherwise he might have been a great general, blowing \nup all sorts of towns, or he might have been a great politician, \ndealing in all sorts of parliamentary rhetoric; but as it was, he \nand the Court of Chancery had fallen upon each other in the \npleasantest way, and nobody was much the worse, and Gridley was, so \nto speak, from that hour provided for.  Then look at Coavinses!  \nHow delightfully poor Coavinses (father of these charming children) \nillustrated the same principle!  He, Mr. Skimpole, himself, had \nsometimes repined at the existence of Coavinses.  He had found \nCoavinses in his way.  He could had dispensed with Coavinses.  \nThere had been times when, if he had been a sultan, and his grand \nvizier had said one morning, \"What does the Commander of the \nFaithful require at the hands of his slave?\" he might have even \ngone so far as to reply, \"The head of Coavinses!\"  But what turned \nout to be the case?  That, all that time, he had been giving \nemployment to a most deserving man, that he had been a benefactor \nto Coavinses, that he had actually been enabling Coavinses to bring \nup these charming children in this agreeable way, developing these \nsocial virtues!  Insomuch that his heart had just now swelled and \nthe tears had come into his eyes when he had looked round the room \nand thought, \"I was the great patron of Coavinses, and his little \ncomforts were MY work!\"\n\nThere was something so captivating in his light way of touching \nthese fantastic strings, and he was such a mirthful child by the \nside of the graver childhood we had seen, that he made my guardian \nsmile even as he turned towards us from a little private talk with \nMrs. Blinder.  We kissed Charley, and took her downstairs with us, \nand stopped outside the house to see her run away to her work.  I \ndon't know where she was going, but we saw her run, such a little, \nlittle creature in her womanly bonnet and apron, through a covered \nway at the bottom of the court and melt into the city's strife and \nsound like a dewdrop in an ocean.\n\n\n\nCHAPTER XVI\n\nTom-all-Alone's\n\n\nMy Lady Dedlock is restless, very restless.  The astonished \nfashionable intelligence hardly knows where to have her.  To-day \nshe is at Chesney Wold; yesterday she was at her house in town; to-\nmorrow she may be abroad, for anything the fashionable intelligence \ncan with confidence predict.  Even Sir Leicester's gallantry has \nsome trouble to keep pace with her.  It would have more but that \nhis other faithful ally, for better and for worse--the gout--darts \ninto the old oak bedchamber at Chesney Wold and grips him by both \nlegs.\n\nSir Leicester receives the gout as a troublesome demon, but still a \ndemon of the patrician order.  All the Dedlocks, in the direct male \nline, through a course of time during and beyond which the memory \nof man goeth not to the contrary, have had the gout.  It can be \nproved, sir.  Other men's fathers may have died of the rheumatism \nor may have taken base contagion from the tainted blood of the sick \nvulgar, but the Dedlock family have communicated something \nexclusive even to the levelling process of dying by dying of their \nown family gout.  It has come down through the illustrious line \nlike the plate, or the pictures, or the place in Lincolnshire.  It \nis among their dignities.  Sir Leicester is perhaps not wholly \nwithout an impression, though he has never resolved it into words, \nthat the angel of death in the discharge of his necessary duties \nmay observe to the shades of the aristocracy, \"My lords and \ngentlemen, I have the honour to present to you another Dedlock \ncertified to have arrived per the family gout.\"\n\nHence Sir Leicester yields up his family legs to the family \ndisorder as if he held his name and fortune on that feudal tenure.  \nHe feels that for a Dedlock to be laid upon his back and \nspasmodically twitched and stabbed in his extremities is a liberty \ntaken somewhere, but he thinks, \"We have all yielded to this; it \nbelongs to us; it has for some hundreds of years been understood \nthat we are not to make the vaults in the park interesting on more \nignoble terms; and I submit myself to the compromise.\n\nAnd a goodly show he makes, lying in a flush of crimson and gold in \nthe midst of the great drawing-room before his favourite picture of \nmy Lady, with broad strips of sunlight shining in, down the long \nperspective, through the long line of windows, and alternating with \nsoft reliefs of shadow.  Outside, the stately oaks, rooted for ages \nin the green ground which has never known ploughshare, but was \nstill a chase when kings rode to battle with sword and shield and \nrode a-hunting with bow and arrow, bear witness to his greatness.  \nInside, his forefathers, looking on him from the walls, say, \"Each \nof us was a passing reality here and left this coloured shadow of \nhimself and melted into remembrance as dreamy as the distant voices \nof the rooks now lulling you to rest,\" and hear their testimony to \nhis greatness too.  And he is very great this day.  And woe to \nBoythorn or other daring wight who shall presumptuously contest an \ninch with him!\n\nMy Lady is at present represented, near Sir Leicester, by her \nportrait.  She has flitted away to town, with no intention of \nremaining there, and will soon flit hither again, to the confusion \nof the fashionable intelligence.  The house in town is not prepared \nfor her reception.  It is muffled and dreary.  Only one Mercury in \npowder gapes disconsolate at the hall-window; and he mentioned last \nnight to another Mercury of his acquaintance, also accustomed to \ngood society, that if that sort of thing was to last--which it \ncouldn't, for a man of his spirits couldn't bear it, and a man of \nhis figure couldn't be expected to bear it--there would be no \nresource for him, upon his honour, but to cut his throat!\n\nWhat connexion can there be between the place in Lincolnshire, the \nhouse in town, the Mercury in powder, and the whereabout of Jo the \noutlaw with the broom, who had that distant ray of light upon him \nwhen he swept the churchyard-step?  What connexion can there have \nbeen between many people in the innumerable histories of this world \nwho from opposite sides of great gulfs have, nevertheless, been \nvery curiously brought together!\n\nJo sweeps his crossing all day long, unconscious of the link, if \nany link there be.  He sums up his mental condition when asked a \nquestion by replying that he \"don't know nothink.\"  He knows that \nit's hard to keep the mud off the crossing in dirty weather, and \nharder still to live by doing it.  Nobody taught him even that \nmuch; he found it out.\n\nJo lives--that is to say, Jo has not yet died--in a ruinous place \nknown to the like of him by the name of Tom-all-Alone's.  It is a \nblack, dilapidated street, avoided by all decent people, where the \ncrazy houses were seized upon, when their decay was far advanced, \nby some bold vagrants who after establishing their own possession \ntook to letting them out in lodgings.  Now, these tumbling \ntenements contain, by night, a swarm of misery.  As on the ruined \nhuman wretch vermin parasites appear, so these ruined shelters have \nbred a crowd of foul existence that crawls in and out of gaps in \nwalls and boards; and coils itself to sleep, in maggot numbers, \nwhere the rain drips in; and comes and goes, fetching and carrying \nfever and sowing more evil in its every footprint than Lord Coodle, \nand Sir Thomas Doodle, and the Duke of Foodle, and all the fine \ngentlemen in office, down to Zoodle, shall set right in five \nhundred years--though born expressly to do it.\n\nTwice lately there has been a crash and a cloud of dust, like the \nspringing of a mine, in Tom-all-Alone's; and each time a house has \nfallen.  These accidents have made a paragraph in the newspapers \nand have filled a bed or two in the nearest hospital.  The gaps \nremain, and there are not unpopular lodgings among the rubbish.  As \nseveral more houses are nearly ready to go, the next crash in Tom-\nall-Alone's may be expected to be a good one.\n\nThis desirable property is in Chancery, of course.  It would be an \ninsult to the discernment of any man with half an eye to tell him \nso.  Whether \"Tom\" is the popular representative of the original \nplaintiff or defendant in Jarndyce and Jarndyce, or whether Tom \nlived here when the suit had laid the street waste, all alone, \nuntil other settlers came to join him, or whether the traditional \ntitle is a comprehensive name for a retreat cut off from honest \ncompany and put out of the pale of hope, perhaps nobody knows.  \nCertainly Jo don't know.\n\n\"For I don't,\" says Jo, \"I don't know nothink.\"\n\nIt must be a strange state to be like Jo!  To shuffle through the \nstreets, unfamiliar with the shapes, and in utter darkness as to \nthe meaning, of those mysterious symbols, so abundant over the \nshops, and at the corners of streets, and on the doors, and in the \nwindows!  To see people read, and to see people write, and to see \nthe postmen deliver letters, and not to have the least idea of all \nthat language--to be, to every scrap of it, stone blind and dumb!  \nIt must be very puzzling to see the good company going to the \nchurches on Sundays, with their books in their hands, and to think \n(for perhaps Jo DOES think at odd times) what does it all mean, and \nif it means anything to anybody, how comes it that it means nothing \nto me?  To be hustled, and jostled, and moved on; and really to \nfeel that it would appear to be perfectly true that I have no \nbusiness here, or there, or anywhere; and yet to be perplexed by \nthe consideration that I AM here somehow, too, and everybody \noverlooked me until I became the creature that I am!  It must be a \nstrange state, not merely to be told that I am scarcely human (as \nin the case of my offering myself for a witness), but to feel it of \nmy own knowledge all my life!  To see the horses, dogs, and cattle \ngo by me and to know that in ignorance I belong to them and not to \nthe superior beings in my shape, whose delicacy I offend!  Jo's \nideas of a criminal trial, or a judge, or a bishop, or a govemment, \nor that inestimable jewel to him (if he only knew it) the \nConstitution, should be strange!  His whole material and immaterial \nlife is wonderfully strange; his death, the strangest thing of all.\n\nJo comes out of Tom-all-Alone's, meeting the tardy morning which is \nalways late in getting down there, and munches his dirty bit of \nbread as he comes along.  His way lying through many streets, and \nthe houses not yet being open, he sits down to breakfast on the \ndoor-step of the Society for the Propagation of the Gospel in \nForeign Parts and gives it a brush when he has finished as an \nacknowledgment of the accommodation.  He admires the size of the \nedifice and wonders what it's all about.  He has no idea, poor \nwretch, of the spiritual destitution of a coral reef in the Pacific \nor what it costs to look up the precious souls among the coco-nuts \nand bread-fruit.\n\nHe goes to his crossing and begins to lay it out for the day.  The \ntown awakes; the great tee-totum is set up for its daily spin and \nwhirl; all that unaccountable reading and writing, which has been \nsuspended for a few hours, recommences.  Jo and the other lower \nanimals get on in the unintelligible mess as they can.  It is \nmarket-day.  The blinded oxen, over-goaded, over-driven, never \nguided, run into wrong places and are beaten out, and plunge red-\neyed and foaming at stone walls, and often sorely hurt the \ninnocent, and often sorely hurt themselves.  Very like Jo and his \norder; very, very like!\n\nA band of music comes and plays.  Jo listens to it.  So does a dog\n--a drover's dog, waiting for his master outside a butcher's shop, \nand evidently thinking about those sheep he has had upon his mind \nfor some hours and is happily rid of.  He seems perplexed \nrespecting three or four, can't remember where he left them, looks \nup and down the street as half expecting to see them astray, \nsuddenly pricks up his ears and remembers all about it.  A \nthoroughly vagabond dog, accustomed to low company and public-\nhouses; a terrific dog to sheep, ready at a whistle to scamper over \ntheir backs and tear out mouthfuls of their wool; but an educated, \nimproved, developed dog who has been taught his duties and knows \nhow to discharge them.  He and Jo listen to the music, probably \nwith much the same amount of animal satisfaction; likewise as to \nawakened association, aspiration, or regret, melancholy or joyful \nreference to things beyond the senses, they are probably upon a \npar.  But, otherwise, how far above the human listener is the \nbrute!\n\nTurn that dog's descendants wild, like Jo, and in a very few years \nthey will so degenerate that they will lose even their bark--but \nnot their bite.\n\nThe day changes as it wears itself away and becomes dark and \ndrizzly.  Jo fights it out at his crossing among the mud and \nwheels, the horses, whips, and umbrellas, and gets but a scanty sum \nto pay for the unsavoury shelter of Tom-all-Alone's.  Twilight \ncomes on; gas begins to start up in the shops; the lamplighter, \nwith his ladder, runs along the margin of the pavement.  A wretched \nevening is beginning to close in.\n\nIn his chambers Mr. Tulkinghorn sits meditating an application to \nthe nearest magistrate to-morrow morning for a warrant.  Gridley, a \ndisappointed suitor, has been here to-day and has been alarming.  \nWe are not to be put in bodily fear, and that ill-conditioned \nfellow shall be held to bail again.  From the ceiling, \nforeshortened Allegory, in the person of one impossible Roman \nupside down, points with the arm of Samson (out of joint, and an \nodd one) obtrusively toward the window.  Why should Mr. \nTulkinghorn, for such no reason, look out of window?  Is the hand \nnot always pointing there?  So he does not look out of window.\n\nAnd if he did, what would it be to see a woman going by?  There are \nwomen enough in the world, Mr. Tulkinghorn thinks--too many; they \nare at the bottom of all that goes wrong in it, though, for the \nmatter of that, they create business for lawyers.  What would it be \nto see a woman going by, even though she were going secretly?  They \nare all secret.  Mr. Tulkinghorn knows that very well.\n\nBut they are not all like the woman who now leaves him and his \nhouse behind, between whose plain dress and her refined manner \nthere is something exceedingly inconsistent.  She should be an \nupper servant by her attire, yet in her air and step, though both \nare hurried and assumed--as far as she can assume in the muddy \nstreets, which she treads with an unaccustomed foot--she is a lady.  \nHer face is veiled, and still she sufficiently betrays herself to \nmake more than one of those who pass her look round sharply.\n\nShe never turns her head.  Lady or servant, she has a purpose in \nher and can follow it.  She never turns her head until she comes to \nthe crossing where Jo plies with his broom.  He crosses with her \nand begs.  Still, she does not turn her head until she has landed \non the other side.  Then she slightly beckons to him and says, \n\"Come here!\"\n\nJo follows her a pace or two into a quiet court.\n\n\"Are you the boy I've read of in the papers?\" she asked behind her \nveil.\n\n\"I don't know,\" says Jo, staring moodily at the veil, \"nothink \nabout no papers.  I don't know nothink about nothink at all.\"\n\n\"Were you examined at an inquest?\"\n\n\"I don't know nothink about no--where I was took by the beadle, do \nyou mean?\" says Jo.  \"Was the boy's name at the inkwhich Jo?\"\n\n\"Yes.\"\n\n\"That's me!\" says Jo.\n\n\"Come farther up.\"\n\n\"You mean about the man?\" says Jo, following.  \"Him as wos dead?\"\n\n\"Hush!  Speak in a whisper!  Yes.  Did he look, when he was living, \nso very ill and poor?\"\n\n\"Oh, jist!\" says Jo.\n\n\"Did he look like--not like YOU?\" says the woman with abhorrence.\n\n\"Oh, not so bad as me,\" says Jo.  \"I'm a reg'lar one I am!  You \ndidn't know him, did you?\"\n\n\"How dare you ask me if I knew him?\"\n\n\"No offence, my lady,\" says Jo with much humility, for even he has \ngot at the suspicion of her being a lady.\n\n\"I am not a lady.  I am a servant.\"\n\n\"You are a jolly servant!\" says Jo without the least idea of saying \nanything offensive, merely as a tribute of admiration.\n\n\"Listen and be silent.  Don't talk to me, and stand farther from \nme!  Can you show me all those places that were spoken of in the \naccount I read?  The place he wrote for, the place he died at, the \nplace where you were taken to, and the place where he was buried?  \nDo you know the place where he was buried?\"\n\nJo answers with a nod, having also nodded as each other place was \nmentioned.\n\n\"Go before me and show me all those dreadful places.  Stop opposite \nto each, and don't speak to me unless I speak to you.  Don't look \nback.  Do what I want, and I will pay you well.\"\n\nJo attends closely while the words are being spoken; tells them off \non his broom-handle, finding them rather hard; pauses to consider \ntheir meaning; considers it satisfactory; and nods his ragged head.\n\n\"I'm fly,\" says Jo.  \"But fen larks, you know.  Stow hooking it!\"\n\n\"What does the horrible creature mean?\" exclaims the servant, \nrecoiling from him.\n\n\"Stow cutting away, you know!\" says Jo.\n\n\"I don't understand you.  Go on before!  I will give you more money \nthan you ever had in your life.\"\n\nJo screws up his mouth into a whistle, gives his ragged head a rub, \ntakes his broom under his arm, and leads the way, passing deftly \nwith his bare feet over the hard stones and through the mud and \nmire.\n\nCook's Court.  Jo stops.  A pause.\n\n\"Who lives here?\"\n\n\"Him wot give him his writing and give me half a bull,\" says Jo in \na whisper without looking over his shoulder.\n\n\"Go on to the next.\"\n\nKrook's house.  Jo stops again.  A longer pause.\n\n\"Who lives here?\"\n\n\"HE lived here,\" Jo answers as before.\n\nAfter a silence he is asked, \"In which room?\"\n\n\"In the back room up there.  You can see the winder from this \ncorner.  Up there!  That's where I see him stritched out.  This is \nthe public-ouse where I was took to.\"\n\n\"Go on to the next!\"\n\nIt is a longer walk to the next, but Jo, relieved of his first \nsuspicions, sticks to the forms imposed upon him and does not look \nround.  By many devious ways, reeking with offence of many kinds, \nthey come to the little tunnel of a court, and to the gas-lamp \n(lighted now), and to the iron gate.\n\n\"He was put there,\" says Jo, holding to the bars and looking in.\n\n\"Where?  Oh, what a scene of horror!\"\n\n\"There!\" says Jo, pointing.  \"Over yinder.  Arnong them piles of \nbones, and close to that there kitchin winder!  They put him wery \nnigh the top.  They was obliged to stamp upon it to git it in.  I \ncould unkiver it for you with my broom if the gate was open.  \nThat's why they locks it, I s'pose,\" giving it a shake.  \"It's \nalways locked.  Look at the rat!\" cries Jo, excited.  \"Hi!  Look!  \nThere he goes!  Ho!  Into the ground!\"\n\nThe servant shrinks into a corner, into a corner of that hideous \narchway, with its deadly stains contaminating her dress; and \nputting out her two hands and passionately telling him to keep away \nfrom her, for he is loathsome to her, so remains for some moments.  \nJo stands staring and is still staring when she recovers herself.\n\n\"Is this place of abomination consecrated ground?\"\n\n\"I don't know nothink of consequential ground,\" says Jo, still \nstaring.\n\n\"Is it blessed?\"\n\n\"Which?\" says Jo, in the last degree amazed.\n\n\"Is it blessed?\"\n\n\"I'm blest if I know,\" says Jo, staring more than ever; \"but I \nshouldn't think it warn't.  Blest?\" repeats Jo, something troubled \nin his mind.  \"It an't done it much good if it is.  Blest?  I \nshould think it was t'othered myself.  But I don't know nothink!\"\n\nThe servant takes as little heed of what he says as she seems to \ntake of what she has said herself.  She draws off her glove to get \nsome money from her purse.  Jo silently notices how white and small \nher hand is and what a jolly servant she must be to wear such \nsparkling rings.\n\nShe drops a piece of money in his hand without touching it, and \nshuddering as their hands approach.  \"Now,\" she adds, \"show me the \nspot again!\"\n\nJo thrusts the handle of his broom between the bars of the gate, \nand with his utmost power of elaboration, points it out.  At \nlength, looking aside to see if he has made himself intelligible, \nhe finds that he is alone.\n\nHis first proceeding is to hold the piece of money to the gas-light \nand to be overpowered at finding that it is yellow--gold.  His next \nis to give it a one-sided bite at the edge as a test of its \nquality.  His next, to put it in his mouth for safety and to sweep \nthe step and passage with great care.  His job done, he sets off \nfor Tom-all-Alone's, stopping in the light of innumerable gas-lamps \nto produce the piece of gold and give it another one-sided bite as \na reassurance of its being genuine.\n\nThe Mercury in powder is in no want of society to-night, for my \nLady goes to a grand dinner and three or four balls.  Sir Leicester \nis fidgety down at Chesney Wold, with no better company than the \ngoat; he complains to Mrs. Rouncewell that the rain makes such a \nmonotonous pattering on the terrace that he can't read the paper \neven by the fireside in his own snug dressing-room.\n\n\"Sir Leicester would have done better to try the other side of the \nhouse, my dear,\" says Mrs. Rouncewell to Rosa.  \"His dressing-room \nis on my Lady's side.  And in all these years I never heard the \nstep upon the Ghost's Walk more distinct than it is to-night!\"\n\n\n\nCHAPTER XVII\n\nEsther's Narrative\n\n\nRichard very often came to see us while we remained in London \n(though he soon failed in his letter-writing), and with his quick \nabilities, his good spirits, his good temper, his gaiety and \nfreshness, was always delightful.  But though I liked him more and \nmore the better I knew him, I still felt more and more how much it \nwas to be regretted that he had been educated in no habits of \napplication and concentration.  The system which had addressed him \nin exactly the same manner as it had addressed hundreds of other \nboys, all varying in character and capacity, had enabled him to \ndash through his tasks, always with fair credit and often with \ndistinction, but in a fitful, dazzling way that had confirmed his \nreliance on those very qualities in himself which it had been most \ndesirable to direct and train.  They were good qualities, without \nwhich no high place can be meritoriously won, but like fire and \nwater, though excellent servants, they were very bad masters.  If \nthey had been under Richard's direction, they would have been his \nfriends; but Richard being under their direction, they became his \nenemies.\n\nI write down these opinions not because I believe that this or any \nother thing was so because I thought so, but only because I did \nthink so and I want to be quite candid about all I thought and did.  \nThese were my thoughts about Richard.  I thought I often observed \nbesides how right my guardian was in what he had said, and that the \nuncertainties and delays of the Chancery suit had imparted to his \nnature something of the careless spirit of a gamester who felt that \nhe was part of a great gaming system.\n\nMr. and Mrs. Bayham Badger coming one afternoon when my guardian \nwas not at home, in the course of conversation I naturally inquired \nafter Richard.\n\n\"Why, Mr. Carstone,\" said Mrs. Badger, \"is very well and is, I \nassure you, a great acquisition to our society.  Captain Swosser \nused to say of me that I was always better than land a-head and a \nbreeze a-starn to the midshipmen's mess when the purser's junk had \nbecome as tough as the fore-topsel weather earings.  It was his \nnaval way of mentioning generally that I was an acquisition to any \nsociety.  I may render the same tribute, I am sure, to Mr. \nCarstone.  But I--you won't think me premature if I mention it?\"\n\nI said no, as Mrs. Badger's insinuating tone seemed to require such \nan answer.\n\n\"Nor Miss Clare?\" said Mrs. Bayham Badger sweetly.\n\nAda said no, too, and looked uneasy.\n\n\"Why, you see, my dears,\" said Mrs. Badger, \"--you'll excuse me \ncalling you my dears?\"\n\nWe entreated Mrs. Badger not to mention it.\n\n\"Because you really are, if I may take the liberty of saying so,\" \npursued Mrs. Badger, \"so perfectly charming.  You see, my dears, \nthat although I am still young--or Mr. Bayham Badger pays me the \ncompliment of saying so--\"\n\n\"No,\" Mr. Badger called out like some one contradicting at a public \nmeeting.  \"Not at all!\"\n\n\"Very well,\" smiled Mrs. Badger, \"we will say still young.\"\n\n\"Undoubtedly,\" said Mr. Badger.\n\n\"My dears, though still young, I have had many opportunities of \nobserving young men.  There were many such on board the dear old \nCrippler, I assure you.  After that, when I was with Captain \nSwosser in the Mediterranean, I embraced every opportunity of \nknowing and befriending the midshipmen under Captain Swosser's \ncommand.  YOU never heard them called the young gentlemen, my \ndears, and probably wonld not understand allusions to their pipe-\nclaying their weekly accounts, but it is otherwise with me, for \nblue water has been a second home to me, and I have been quite a \nsailor.  Again, with Professor Dingo.\"\n\n\"A man of European reputation,\" murmured Mr. Badger.\n\n\"When I lost my dear first and became the wife of my dear second,\" \nsaid Mrs. Badger, speaking of her former husbands as if they were \nparts of a charade, \"I still enjoyed opportunities of observing \nyouth.  The class attendant on Professor Dingo's lectures was a \nlarge one, and it became my pride, as the wife of an eminent \nscientific man seeking herself in science the utmost consolation it \ncould impart, to throw our house open to the students as a kind of \nScientific Exchange.  Every Tuesday evening there was lemonade and \na mixed biscuit for all who chose to partake of those refreshments.  \nAnd there was science to an unlimited extent.\"\n\n\"Remarkable assemblies those, Miss Summerson,\" said Mr. Badger \nreverentially.  \"There must have been great intellectual friction \ngoing on there under the auspices of such a man!\"\n\n\"And now,\" pursued Mrs. Badger, \"now that I am the wife of my dear \nthird, Mr. Badger, I still pursue those habits of observation which \nwere formed during the lifetime of Captain Swosser and adapted to \nnew and unexpected purposes during the lifetime of Professor Dingo.  \nI therefore have not come to the consideration of Mr. Carstone as a \nneophyte.  And yet I am very much of the opinion, my dears, that he \nhas not chosen his profession advisedly.\"\n\nAda looked so very anxious now that I asked Mrs. Badger on what she \nfounded her supposition.\n\n\"My dear Miss Summerson,\" she replied, \"on Mr. Carstone's character \nand conduct.  He is of such a very easy disposition that probably \nhe would never think it worthwhile to mention how he really feels, \nbut he feels languid about the profession.  He has not that \npositive interest in it which makes it his vocation.  If he has any \ndecided impression in reference to it, I should say it was that it \nis a tiresome pursuit.  Now, this is not promising.  Young men like \nMr. Allan Woodcourt who take it from a strong interest in all that \nit can do will find some reward in it through a great deal of work \nfor a very little money and through years of considerable endurance \nand disappointment.  But I am quite convinced that this would never \nbe the case with Mr. Carstone.\"\n\n\"Does Mr. Badger think so too?\" asked Ada timidly.\n\n\"Why,\" said Mr. Badger, \"to tell the truth, Miss Clare, this view \nof the matter had not occurred to me until Mrs. Badger mentioned \nit.  But when Mrs. Badger put it in that light, I naturally gave \ngreat consideration to it, knowing that Mrs. Badger's mind, in \naddition to its natural advantages, has had the rare advantage of \nbeing formed by two such very distinguished (I will even say \nillustrious) public men as Captain Swosser of the Royal Navy and \nProfessor Dingo.  The conclusion at which I have arrived is--in \nshort, is Mrs. Badger's conclusion.\"\n\n\"It was a maxim of Captain Swosser's,\" said Mrs. Badger, \"speaking \nin his figurative naval manner, that when you make pitch hot, you \ncannot make it too hot; and that if you only have to swab a plank, \nyou should swab it as if Davy Jones were after you.  It appears to \nme that this maxim is applicable to the medical as well as to the \nnautical profession.\n\n\"To all professions,\" observed Mr. Badger.  \"It was admirably said \nby Captain Swosser.  Beautifully said.\"\n\n\"People objected to Professor Dingo when we were staying in the \nnorth of Devon after our marriage,\" said Mrs. Badger, \"that he \ndisfigured some of the houses and other buildings by chipping off \nfragments of those edifices with his little geological hammer.  But \nthe professor replied that he knew of no building save the Temple \nof Science.  The principle is the same, I think?\"\n\n\"Precisely the same,\" said Mr. Badger.  \"Finely expressed!  The \nprofessor made the same remark, Miss Summerson, in his last \nillness, when (his mind wandering) he insisted on keeping his \nlittle hammer under the pillow and chipping at the countenances of \nthe attendants.  The ruling passion!\"\n\nAlthough we could have dispensed with the length at which Mr. and \nMrs. Badger pursued the conversation, we both felt that it was \ndisinterested in them to express the opinion they had communicated \nto us and that there was a great probability of its being sound.  \nWe agreed to say nothing to Mr. Jarndyce until we had spoken to \nRichard; and as he was coming next evening, we resolved to have a \nvery serious talk with him.\n\nSo after he had been a little while with Ada, I went in and found \nmy darling (as I knew she would be) prepared to consider him \nthoroughly right in whatever he said.\n\n\"And how do you get on, Richard?\" said I.  I always sat down on the \nother side of him.  He made quite a sister of me.\n\n\"Oh! Well enough!\" said Richard.\n\n\"He can't say better than that, Esther, can he?\" cried my pet \ntriumphantly.\n\nI tried to look at my pet in the wisest manner, but of course I \ncouldn't.\n\n\"Well enough?\" I repeated.\n\n\"Yes,\" said Richard, \"well enough.  It's rather jog-trotty and \nhumdrum.  But it'll do as well as anything else!\"\n\n\"Oh! My dear Richard!\" I remonstrated.\n\n\"What's the matter?\" said Richard.\n\n\"Do as well as anything else!\"\n\n\"I don't think there's any harm in that, Dame Durden,\" said Ada, \nlooking so confidingly at me across him; \"because if it will do as \nwell as anything else, it will do very well, I hope.\"\n\n\"Oh, yes, I hope so,\" returned Richard, carelessly tossing his hair \nfrom his forehead.  \"After all, it may be only a kind of probation \ntill our suit is--I forgot though.  I am not to mention the suit.  \nForbidden ground!  Oh, yes, it's all right enough.  Let us talk \nabout something else.\"\n\nAda would have done so willingly, and with a full persuasion that \nwe had brought the question to a most satisfactory state.  But I \nthought it would be useless to stop there, so I began again.\n\n\"No, but Richard,\" said I, \"and my dear Ada!  Consider how \nimportant it is to you both, and what a point of honour it is \ntowards your cousin, that you, Richard, should be quite in earnest \nwithout any reservation.  I think we had better talk about this, \nreally, Ada.  It will be too late very soon.\"\n\n\"Oh, yes!  We must talk about it!\" said Ada.  \"But I think Richard \nis right.\"\n\nWhat was the use of my trying to look wise when she was so pretty, \nand so engaging, and so fond of him!\n\n\"Mr. and Mrs. Badger were here yesterday, Richard,\" said I, \"and \nthey seemed disposed to think that you had no great liking for the \nprofession.\"\n\n\"Did they though?\" said Richard.  \"Oh! Well, that rather alters the \ncase, because I had no idea that they thought so, and I should not \nhave liked to disappoint or inconvenience them.  The fact is, I \ndon't care much about it.  But, oh, it don't matter!  It'll do as \nwell as anything else!\"\n\n\"You hear him, Ada!\" said I.\n\n\"The fact is,\" Richard proceeded, half thoughtfully and half \njocosely, \"it is not quite in my way.  I don't take to it.  And I \nget too much of Mrs. Bayham Badger's first and second.\"\n\n\"I am sure THAT'S very natural!\" cried Ada, quite delighted.  \"The \nvery thing we both said yesterday, Esther!\"\n\n\"Then,\" pursued Richard, \"it's monotonous, and to-day is too like \nyesterday, and to-morrow is too like to-day.\"\n\n\"But I am afraid,\" said I, \"this is an objection to all kinds of \napplication--to life itself, except under some very uncommon \ncircumstances.\"\n\n\"Do you think so?\" returned Richard, still considering.  \"Perhaps!  \nHa!  Why, then, you know,\" he added, suddenly becoming gay again, \n\"we travel outside a circle to what I said just now.  It'll do as \nwell as anything else.  Oh, it's all right enough!  Let us talk \nabout something else.\"\n\nBut even Ada, with her loving face--and if it had seemed innocent \nand trusting when I first saw it in that memorable November fog, \nhow much more did it seem now when I knew her innocent and trusting \nheart--even Ada shook her head at this and looked serious.  So I \nthought it a good opportunity to hint to Richard that if he were \nsometimes a little careless of himself, I was very sure he never \nmeant to be careless of Ada, and that it was a part of his \naffectionate consideration for her not to slight the importance of \na step that might influence both their lives.  This made him almost \ngrave.\n\n\"My dear Mother Hubbard,\" he said, \"that's the very thing!  I have \nthought of that several times and have been quite angry with myself \nfor meaning to be so much in earnest and--somehow--not exactly \nbeing so.  I don't know how it is; I seem to want something or \nother to stand by.  Even you have no idea how fond I am of Ada (my \ndarling cousin, I love you, so much!), but I don't settle down to \nconstancy in other things.  It's such uphill work, and it takes \nsuch a time!\" said Richard with an air of vexation.\n\n\"That may be,\" I suggested, \"because you don't like what you have \nchosen.\"\n\n\"Poor fellow!\" said Ada.  \"I am sure I don't wonder at it!\"\n\nNo.  It was not of the least use my trying to look wise.  I tried \nagain, but how could I do it, or how could it have any effect if I \ncould, while Ada rested her clasped hands upon his shoulder and \nwhile he looked at her tender blue eyes, and while they looked at \nhim!\n\n\"You see, my precious girl,\" said Richard, passing her golden curls \nthrough and through his hand, \"I was a little hasty perhaps; or I \nmisunderstood my own inclinations perhaps.  They don't seem to lie \nin that direction.  I couldn't tell till I tried.  Now the question \nis whether it's worth-while to undo all that has been done.  It \nseems like making a great disturbance about nothing particular.\"\n\n\"My dear Richard,\" said I, \"how CAN you say about nothing \nparticular?\"\n\n\"I don't mean absolutely that,\" he returned.  \"I mean that it MAY \nbe nothing particular because I may never want it.\"\n\nBoth Ada and I urged, in reply, not only that it was decidedly \nworth-while to undo what had been done, but that it must be undone.  \nI then asked Richard whether he had thought of any more congenial \npursuit.\n\n\"There, my dear Mrs. Shipton,\" said Richard, \"you touch me home.  \nYes, I have.  I have been thinking that the law is the boy for me.\"\n\n\"The law!\" repeated Ada as if she were afraid of the name.\n\n\"If I went into Kenge's office,\" said Richard, \"and if I were \nplaced under articles to Kenge, I should have my eye on the--hum!--\nthe forbidden ground--and should be able to study it, and master \nit, and to satisfy myself that it was not neglected and was being \nproperly conducted.  I should be able to look after Ada's interests \nand my own interests (the same thing!); and I should peg away at \nBlackstone and all those fellows with the most tremendous ardour.\"\n\nI was not by any means so sure of that, and I saw how his hankering \nafter the vague things yet to come of those long-deferred hopes \ncast a shade on Ada's face.  But I thought it best to encourage him \nin any project of continuous exertion, and only advised him to be \nquite sure that his mind was made up now.\n\n\"My dear Minerva,\" said Richard, \"I am as steady as you are.  I \nmade a mistake; we are all liable to mistakes; I won't do so any \nmore, and I'll become such a lawyer as is not often seen.  That is, \nyou know,\" said Richard, relapsing into doubt, \"if it really is \nworth-while, after all, to make such a disturbance about nothing \nparticular!\"\n\nThis led to our saying again, with a great deal of gravity, all \nthat we had said already and to our coming to much the same \nconclusion afterwards.  But we so strongly advised Richard to be \nfrank and open with Mr. Jarndyce, without a moment's delay, and his \ndisposition was naturally so opposed to concealment that he sought \nhim out at once (taking us with him) and made a full avowal.  \n\"Rick,\" said my guardian, after hearing him attentively, \"we can \nretreat with honour, and we will.  But we must he careful--for our \ncousin s sake, Rick, for our cousin's sake--that we make no more \nsuch mistakes.  Therefore, in the matter of the law, we will have a \ngood trial before we decide.  We will look before we leap, and take \nplenty of time about it.\"\n\nRichard's energy was of such an impatient and fitful kind that he \nwould have liked nothing better than to have gone to Mr. Kenge's \noffice in that hour and to have entered into articles with him on \nthe spot.  Submitting, however, with a good grace to the caution \nthat we had shown to be so necessary, he contented himself with \nsitting down among us in his lightest spirits and talking as if his \none unvarying purpose in life from childhood had been that one \nwhich now held possession of him.  My guardian was very kind and \ncordial with him, but rather grave, enough so to cause Ada, when he \nhad departed and we were going upstairs to bed, to say, \"Cousin \nJohn, I hope you don't think the worse of Richard?\"\n\n\"No, my love,\" said he.\n\n\"Because it was very natural that Richard should be mistaken in \nsuch a difficult case.  It is not uncommon.\"\n\n\"No, no, my love,\" said he.  \"Don't look unhappy.\"\n\n\"Oh, I am not unhappy, cousin John!\" said Ada, smiling cheerfully, \nwith her hand upon his shoulder, where she had put it in bidding \nhim good night.  \"But I should be a little so if you thought at all \nthe worse of Richard.\"\n\n\"My dear,\" said Mr. Jarndyce, \"I should think the worse of him only \nif you were ever in the least unhappy through his means.  I should \nbe more disposed to quarrel with myself even then, than with poor \nRick, for I brought you together.  But, tut, all this is nothing!  \nHe has time before him, and the race to run.  I think the worse of \nhim?  Not I, my loving cousin!  And not you, I swear!\"\n\n\"No, indeed, cousin John,\" said Ada, \"I am sure I could not--I am \nsure I would not--think any ill of Richard if the whole world did.  \nI could, and I would, think better of him then than at any other \ntime!\"\n\nSo quietly and honestly she said it, with her hands upon his \nshoulders--both hands now--and looking up into his face, like the \npicture of truth!\n\n\"I think,\" said my guardian, thoughtfully regarding her, \"I think \nit must be somewhere written that the virtues of the mothers shall \noccasionally be visited on the children, as well as the sins of the \nfather.  Good night, my rosebud.  Good night, little woman.  \nPleasant slumbers!  Happy dreams!\"\n\nThis was the first time I ever saw him follow Ada with his eyes \nwith something of a shadow on their benevolent expression.  I well \nremembered the look with which he had contemplated her and Richard \nwhen she was singing in the firelight; it was but a very little \nwhile since he had watched them passing down the room in which the \nsun was shining, and away into the shade; but his glance was \nchanged, and even the silent look of confidence in me which now \nfollowed it once more was not quite so hopeful and untroubled as it \nhad originally been.\n\nAda praised Richard more to me that night than ever she had praised \nhim yet.  She went to sleep with a little bracelet he had given her \nclasped upon her arm.  I fancied she was dreaming of him when I \nkissed her cheek after she had slept an hour and saw how tranquil \nand happy she looked.\n\nFor I was so little inclined to sleep myself that night that I sat \nup working.  It would not be worth mentioning for its own sake, but \nI was wakeful and rather low-spirited.  I don't know why.  At least \nI don't think I know why.  At least, perhaps I do, but I don't \nthink it matters.\n\nAt any rate, I made up my mind to be so dreadfully industrious that \nI would leave myself not a moment's leisure to be low-spirited.  \nFor I naturally said, \"Esther!  You to be low-spirited.  YOU!\"  And \nit really was time to say so, for I--yes, I really did see myself \nin the glass, almost crying.  \"As if you had anything to make you \nunhappy, instead of everything to make you happy, you ungrateful \nheart!\" said I.\n\nIf I could have made myself go to sleep, I would have done it \ndirectly, but not being able to do that, I took out of my basket \nsome ornamental work for our house (I mean Bleak House) that I was \nbusy with at that time and sat down to it with great determination.  \nIt was necessary to count all the stitches in that work, and I \nresolved to go on with it until I couldn't keep my eyes open, and \nthen to go to bed.\n\nI soon found myself very busy.  But I had left some silk downstairs \nin a work-table drawer in the temporary growlery, and coming to a \nstop for want of it, I took my candle and went softly down to get \nit.  To my great surprise, on going in I found my guardian still \nthere, and sitting looking at the ashes.  He was lost in thought, \nhis book lay unheeded by his side, his silvered iron-grey hair was \nscattered confusedly upon his forehead as though his hand had been \nwandering among it while his thoughts were elsewhere, and his face \nlooked worn.  Almost frightened by coming upon him so unexpectedly, \nI stood still for a moment and should have retired without speaking \nhad he not, in again passing his hand abstractedly through his \nhair, seen me and started.\n\n\"Esther!\"\n\nI told him what I had come for.\n\n\"At work so late, my dear?\"\n\n\"I am working late to-night,\" said I, \"because I couldn't sleep and \nwished to tire myself.  But, dear guardian, you are late too, and \nlook weary.  You have no trouble, I hope, to keep you waking?\"\n\n\"None, little woman, that YOU would readily understand,\" said he.\n\nHe spoke in a regretful tone so new to me that I inwardly repeated, \nas if that would help me to his meaning, \"That I could readily \nunderstand!\"\n\n\"Remain a moment, Esther,\" said he, \"You were in my thoughts.\"\n\n\"I hope I was not the trouble, guardian?\"\n\nHe slightly waved his hand and fell into his usual manner.  The \nchange was so remarkable, and he appeared to make it by dint of so \nmuch self-command, that I found myself again inwardly repeating, \n\"None that I could understand!\"\n\n\"Little woman,\" said my guardian, \"I was thinking--that is, I have \nbeen thinking since I have been sitting here--that you ought to \nknow of your own history all I know.  It is very little.  Next to \nnothing.\"\n\n\"Dear guardian,\" I replied, \"when you spoke to me before on that \nsubject--\"\n\n\"But since then,\" he gravely interposed, anticipating what I meant \nto say, \"I have reflected that your having anything to ask me, and \nmy having anything to tell you, are different considerations, \nEsther.  It is perhaps my duty to impart to you the little I know.\"\n\n\"If you think so, guardian, it is right.\"\n\n\"I think so,\" he returned very gently, and kindly, and very \ndistinctly.  \"My dear, I think so now.  If any real disadvantage \ncan attach to your position in the mind of any man or woman worth a \nthought, it is right that you at least of all the world should not \nmagnify it to yourself by having vague impressions of its nature.\"\n\nI sat down and said after a little effort to be as calm as I ought \nto be, \"One of my earliest remembrances, guardian, is of these \nwords: 'Your mother, Esther, is your disgrace, and you were hers.  \nThe time will come, and soon enough, when you will understand this \nbetter, and will feel it too, as no one save a woman can.'\"  I had \ncovered my face with my hands in repeating the words, but I took \nthem away now with a better kind of shame, I hope, and told him \nthat to him I owed the blessing that I had from my childhood to \nthat hour never, never, never felt it.  He put up his hand as if to \nstop me.  I well knew that he was never to be thanked, and said no \nmore.\n\n\"Nine years, my dear,\" he said after thinking for a little while, \n\"have passed since I received a letter from a lady living in \nseclusion, written with a stern passion and power that rendered it \nunlike all other letters I have ever read.  It was written to me \n(as it told me in so many words), perhaps because it was the \nwriter's idiosyncrasy to put that trust in me, perhaps because it \nwas mine to justify it.  It told me of a child, an orphan girl then \ntwelve years old, in some such cruel words as those which live in \nyour remembrance.  It told me that the writer had bred her in \nsecrecy from her birth, had blotted out all trace of her existence, \nand that if the writer were to die before the child became a woman, \nshe would be left entirely friendless, nameless, and unknown.  It \nasked me to consider if I would, in that case, finish what the \nwriter had begun.\"\n\nI listened in silence and looked attentively at him.\n\n\"Your early recollection, my dear, will supply the gloomy medium \nthrough which all this was seen and expressed by the writer, and \nthe distorted religion which clouded her mind with impressions of \nthe need there was for the child to expiate an offence of which she \nwas quite innocent.  I felt concerned for the little creature, in \nher darkened life, and replied to the letter.\"\n\nI took his hand and kissed it.\n\n\"It laid the injunction on me that I should never propose to see \nthe writer, who had long been estranged from all intercourse with \nthe world, but who would see a confidential agent if I would \nappoint one.  I accredited Mr. Kenge.  The lady said, of her own \naccord and not of his seeking, that her name was an assumed one.  \nThat she was, if there were any ties of blood in such a case, the \nchild's aunt.  That more than this she would never (and he was well \npersuaded of the steadfastness of her resolution) for any human \nconsideration disclose.  My dear, I have told you all.\"\n\nI held his hand for a little while in mine.\n\n\"I saw my ward oftener than she saw me,\" he added, cheerily making \nlight of it, \"and I always knew she was beloved, useful, and happy.  \nShe repays me twenty-thousandfold, and twenty more to that, every \nhour in every day!\"\n\n\"And oftener still,\" said I, '\"she blesses the guardian who is a \nfather to her!\"\n\nAt the word father, I saw his former trouble come into his face.  \nHe subdued it as before, and it was gone in an instant; but it had \nbeen there and it had come so swiftly upon my words that I felt as \nif they had given him a shock.  I again inwardly repeated, \nwondering, \"That I could readily understand.  None that I could \nreadily understand!\"  No, it was true.  I did not understand it.  \nNot for many and many a day.\n\n\"Take a fatherly good night, my dear,\" said he, kissing me on the \nforehead, \"and so to rest.  These are late hours for working and \nthinking.  You do that for all of us, all day long, little \nhousekeeper!\"\n\nI neither worked nor thought any more that night.  I opened my \ngrateful heart to heaven in thankfulness for its providence to me \nand its care of me, and fell asleep.\n\nWe had a visitor next day.  Mr. Allan Woodcourt came.  He came to \ntake leave of us; he had settled to do so beforehand.  He was going \nto China and to India as a surgeon on board ship.  He was to be \naway a long, long time.\n\nI believe--at least I know--that he was not rich.  All his widowed \nmother could spare had been spent in qualifying him for his \nprofession.  It was not lucrative to a young practitioner, with \nvery little influence in London; and although he was, night and \nday, at the service of numbers of poor people and did wonders of \ngentleness and skill for them, he gained very little by it in \nmoney.  He was seven years older than I.  Not that I need mention \nit, for it hardly seems to belong to anything.\n\nI think--I mean, he told us--that he had been in practice three or \nfour years and that if he could have hoped to contend through three \nor four more, he would not have made the voyage on which he was \nbound.  But he had no fortune or private means, and so he was going \naway.  He had been to see us several times altogether.  We thought \nit a pity he should go away.  Because he was distinguished in his \nart among those who knew it best, and some of the greatest men \nbelonging to it had a high opinion of him.\n\nWhen he came to bid us good-bye, he brought his mother with him for \nthe first time.  She was a pretty old lady, with bright black eyes, \nbut she seemed proud.  She came from Wales and had had, a long time \nago, an eminent person for an ancestor, of the name of Morgan ap-\nKerrig--of some place that sounded like Gimlet--who was the most \nillustrious person that ever was known and all of whose relations \nwere a sort of royal family.  He appeared to have passed his life \nin always getting up into mountains and fighting somebody; and a \nbard whose name sounded like Crumlinwallinwer had sung his praises \nin a piece which was called, as nearly as I could catch it, \nMewlinnwillinwodd.\n\nMrs. Woodcourt, after expatiating to us on the fame of her great \nkinsman, said that no doubt wherever her son Allan went he would \nremember his pedigree and would on no account form an alliance \nbelow it.  She told him that there were many handsome English \nladies in India who went out on speculation, and that there were \nsome to be picked up with property, but that neither charms nor \nwealth would suffice for the descendant from such a line without \nbirth, which must ever be the first consideration.  She talked so \nmuch about birth that for a moment I half fancied, and with pain--  \nBut what an idle fancy to suppose that she could think or care what \nMINE was!\n\nMr. Woodcourt seemed a little distressed by her prolixity, but he \nwas too considerate to let her see it and contrived delicately to \nbring the conversation round to making his acknowledgments to my \nguardian for his hospitality and for the very happy hours--he \ncalled them the very happy hours--he had passed with us.  The \nrecollection of them, he said, would go with him wherever he went \nand would be always treasured.  And so we gave him our hands, one \nafter another--at least, they did--and I did; and so he put his \nlips to Ada's hand--and to mine; and so he went away upon his long, \nlong voyage!\n\nI was very busy indeed all day and wrote directions home to the \nservants, and wrote notes for my guardian, and dusted his books and \npapers, and jingled my housekeeping keys a good deal, one way and \nanother.  I was still busy between the lights, singing and working \nby the window, when who should come in but Caddy, whom I had no \nexpectation of seeing!\n\n\"Why, Caddy, my dear,\" said I, \"what beautiful flowers!\"\n\nShe had such an exquisite little nosegay in her hand.\n\n\"Indeed, I think so, Esther,\" replied Caddy.  \"They are the \nloveliest I ever saw.\"\n\n\"Prince, my dear?\" said I in a whisper.\n\n\"No,\" answered Caddy, shaking her head and holding them to me to \nsmell.  \"Not Prince.\"\n\n\"Well, to be sure, Caddy!\" said I.  \"You must have two lovers!\"\n\n\"What?  Do they look like that sort of thing?\" said Caddy.\n\n\"Do they look like that sort of thing?\" I repeated, pinching her \ncheek.\n\nCaddy only laughed in return, and telling me that she had come for \nhalf an hour, at the expiration of which time Prince would be \nwaiting for her at the corner, sat chatting with me and Ada in the \nwindow, every now and then handing me the flowers again or trying \nhow they looked against my hair.  At last, when she was going, she \ntook me into my room and put them in my dress.\n\n\"For me?\" said I, surprised.\n\n\"For you,\" said Caddy with a kiss.  \"They were left behind by \nsomebody.\"\n\n\"Left behind?\"\n\n\"At poor Miss Flite's,\" said Caddy.  \"Somebody who has been very \ngood to her was hurrying away an hour ago to join a ship and left \nthese flowers behind.  No, no!  Don't take them out.  Let the \npretty little things lie here,\" said Caddy, adjusting them with a \ncareful hand, \"because I was present myself, and I shouldn't wonder \nif somebody left them on purpose!\"\n\n\"Do they look like that sort of thing?\" said Ada, coming laughingly \nbehind me and clasping me merrily round the waist.  \"Oh, yes, \nindeed they do, Dame Durden!  They look very, very like that sort \nof thing.  Oh, very like it indeed, my dear!\"\n\n\n\nCHAPTER XVIII\n\nLady Dedlock\n\n\nIt was not so easy as it had appeared at first to arrange for \nRichard's making a trial of Mr. Kenge's office.  Richard himself \nwas the chief impediment.  As soon as he had it in his power to \nleave Mr. Badger at any moment, he began to doubt whether he wanted \nto leave him at all.  He didn't know, he said, really.  It wasn't a \nbad profession; he couldn't assert that he disliked it; perhaps he \nliked it as well as he liked any other--suppose he gave it one more \nchance!  Upon that, he shut himself up for a few weeks with some \nbooks and some bones and seemed to acquire a considerable fund of \ninformation with great rapidity.  His fervour, after lasting about \na month, began to cool, and when it was quite cooled, began to grow \nwarm again.  His vacillations between law and medicine lasted so \nlong that midsummer arrived before he finally separated from Mr. \nBadger and entered on an experimental course of Messrs. Kenge and \nCarboy.  For all his waywardness, he took great credit to himself \nas being determined to be in earnest \"this time.\"  And he was so \ngood-natured throughout, and in such high spirits, and so fond of \nAda, that it was very difficult indeed to be otherwise than pleased \nwith him.\n\n\"As to Mr. Jarndyce,\" who, I may mention, found the wind much \ngiven, during this period, to stick in the east; \"As to Mr. \nJarndyce,\" Richard would say to me, \"he is the finest fellow in the \nworld, Esther!  I must be particularly careful, if it were only for \nhis satisfaction, to take myself well to task and have a regular \nwind-up of this business now.\"\n\nThe idea of his taking himself well to task, with that laughing \nface and heedless manner and with a fancy that everything could \ncatch and nothing could hold, was ludicrously anomalous.  However, \nhe told us between-whiles that he was doing it to such an extent \nthat he wondered his hair didn't turn grey.  His regular wind-up of \nthe business was (as I have said) that he went to Mr. Kenge's about \nmidsummer to try how he liked it.\n\nAll this time he was, in money affairs, what I have described him \nin a former illustration--generous, profuse, wildly careless, but \nfully persuaded that he was rather calculating and prudent.  I \nhappened to say to Ada, in his presence, half jestingly, half \nseriously, about the time of his going to Mr. Kenge's, that he \nneeded to have Fortunatus' purse, he made so light of money, which \nhe answered in this way, \"My jewel of a dear cousin, you hear this \nold woman!  Why does she say that?  Because I gave eight pounds odd \n(or whatever it was) for a certain neat waistcoat and buttons a few \ndays ago.  Now, if I had stayed at Badger's I should have been \nobliged to spend twelve pounds at a blow for some heart-breaking \nlecture-fees.  So I make four pounds--in a lump--by the \ntransaction!\"\n\nIt was a question much discussed between him and my guardian what \narrangements should be made for his living in London while he \nexperimented on the law, for we had long since gone back to Bleak \nHouse, and it was too far off to admit of his coming there oftener \nthan once a week.  My guardian told me that if Richard were to \nsettle down at Mr. Kenge's he would take some apartments or \nchambers where we too could occasionally stay for a few days at a \ntime; \"but, little woman,\" he added, rubbing his head very \nsignificantly, \"he hasn't settled down there yet!\"  The discussions \nended in our hiring for him, by the month, a neat little furnished \nlodging in a quiet old house near Queen Square.  He immediately \nbegan to spend all the money he had in buying the oddest little \nornaments and luxuries for this lodging; and so often as Ada and I \ndissuaded him from making any purchase that he had in contemplation \nwhich was particularly unnecessary and expensive, he took credit \nfor what it would have cost and made out that to spend anything \nless on something else was to save the difference.\n\nWhile these affairs were in abeyance, our visit to Mr. Boythorn's \nwas postponed.  At length, Richard having taken possession of his \nlodging, there was nothing to prevent our departure.  He could have \ngone with us at that time of the year very well, but he was in the \nfull novelty of his new position and was making most energetic \nattempts to unravel the mysteries of the fatal suit.  Consequently \nwe went without him, and my darling was delighted to praise him for \nbeing so busy.\n\nWe made a pleasant journey down into Lincolnshire by the coach and \nhad an entertaining companion in Mr. Skimpole.  His furniture had \nbeen all cleared off, it appeared, by the person who took \npossession of it on his blue-eyed daughter's birthday, but he \nseemed quite relieved to think that it was gone.  Chairs and table, \nhe said, were wearisome objects; they were monotonous ideas, they \nhad no variety of expression, they looked you out of countenance, \nand you looked them out of countenance.  How pleasant, then, to be \nbound to no particular chairs and tables, but to sport like a \nbutterfly among all the furniture on hire, and to flit from \nrosewood to mahogany, and from mahogany to walnut, and from this \nshape to that, as the humour took one!\n\n\"The oddity of the thing is,\" said Mr. Skimpole with a quickened \nsense of the ludicrous, \"that my chairs and tables were not paid \nfor, and yet my landlord walks off with them as composedly as \npossible.  Now, that seems droll!  There is something grotesque in \nit.  The chair and table merchant never engaged to pay my landlord \nmy rent.  Why should my landlord quarrel with HIM?  If I have a \npimple on my nose which is disagreeable to my landlord's peculiar \nideas of beauty, my landlord has no business to scratch my chair \nand table merchant's nose, which has no pimple on it.  His \nreasoning seems defective!\"\n\n\"Well,\" said my guardian good-humouredly, \"it's pretty clear that \nwhoever became security for those chairs and tables will have to \npay for them.\"\n\n\"Exactly!\" returned Mr. Skimpole.  \"That's the crowning point of \nunreason in the business!  I said to my landlord, 'My good man, you \nare not aware that my excellent friend Jarndyce will have to pay \nfor those things that you are sweeping off in that indelicate \nmanner.  Have you no consideration for HIS property?' He hadn't the \nleast.\"\n\n\"And refused all proposals,\" said my guardian.\n\n\"Refused all proposals,\" returned Mr. Skimpole.  \"I made him \nbusiness proposals.  I had him into my room.  I said, 'You are a \nman of business, I believe?'  He replied, 'I am,'  'Very well,' \nsaid I, 'now let us be business-like.  Here is an inkstand, here \nare pens and paper, here are wafers.  What do you want?  I have \noccupied your house for a considerable period, I believe to our \nmutual satisfaction until this unpleasant misunderstanding arose; \nlet us be at once friendly and business-like.  What do you want?'  \nIn reply to this, he made use of the figurative expression--which \nhas something Eastern about it--that he had never seen the colour \nof my money.  'My amiable friend,' said I, 'I never have any money.  \nI never know anything about money.'  'Well, sir,' said he, 'what do \nyou offer if I give you time?'  'My good fellow,' said I, 'I have \nno idea of time; but you say you are a man of business, and \nwhatever you can suggest to be done in a business-like way with \npen, and ink, and paper--and wafers--I am ready to do.  Don't pay \nyourself at another man's expense (which is foolish), but be \nbusiness-like!'  However, he wouldn't be, and there was an end of \nit.\"\n\nIf these were some of the inconveniences of Mr. Skimpole's \nchildhood, it assuredly possessed its advantages too.  On the \njourney he had a very good appetite for such refreshment as came in \nour way (including a basket of choice hothouse peaches), but never \nthought of paying for anything.  So when the coachman came round \nfor his fee, he pleasantly asked him what he considered a very good \nfee indeed, now--a liberal one--and on his replying half a crown \nfor a single passenger, said it was little enough too, all things \nconsidered, and left Mr. Jarndyce to give it him.\n\nIt was delightful weather.  The green corn waved so beautifully, \nthe larks sang so joyfully, the hedges were so full of wild \nflowers, the trees were so thickly out in leaf, the bean-fields, \nwith a light wind blowing over them, filled the air with such a \ndelicious fragrance!  Late in the afternoon we came to the market-\ntown where we were to alight from the coach--a dull little town \nwith a church-spire, and a marketplace, and a market-cross, and one \nintensely sunny street, and a pond with an old horse cooling his \nlegs in it, and a very few men sleepily lying and standing about in \nnarrow little bits of shade.  After the rustling of the leaves and \nthe waving of the corn all along the road, it looked as still, as \nhot, as motionless a little town as England could produce.\n\nAt the inn we found Mr. Boythorn on horseback, waiting with an open \ncarriage to take us to his house, which was a few miles off.  He \nwas over-joyed to see us and dismounted with great alacrity.\n\n\"By heaven!\" said he after giving us a courteous greeting.  This a \nmost infamous coach.  It is the most flagrant example of an \nabominable public vehicle that ever encumbered the face of the \nearth.  It is twenty-five minutes after its time this afternoon.  \nThe coachman ought to be put to death!\"\n\n\"IS he after his time?\" said Mr. Skimpole, to whom he happened to \naddress himself.  \"You know my infirmity.\"\n\n\"Twenty-five minutes!  Twenty-six minutes!\" replied Mr. Boythorn, \nreferring to his watch.  \"With two ladies in the coach, this \nscoundrel has deliberately delayed his arrival six and twenty \nminutes.  Deliberately!  It is impossible that it can be \naccidental!  But his father--and his uncle--were the most \nprofligate coachmen that ever sat upon a box.\"\n\nWhile he said this in tones of the greatest indignation, he handed \nus into the little phaeton with the utmost gentleness and was all \nsmiles and pleasure.\n\n\"I am sorry, ladies,\" he said, standing bare-headed at the \ncarriage-door when all was ready, \"that I am obliged to conduct you \nnearly two miles out of the way.  But our direct road lies through \nSir Leicester Dedlock's park, and in that fellow's property I have \nsworn never to set foot of mine, or horse's foot of mine, pending \nthe present relations between us, while I breathe the breath of \nlife!\"  And here, catching my guardian's eye, he broke into one of \nhis tremendous laughs, which seemed to shake even the motionless \nlittle market-town.\n\n\"Are the Dedlocks down here, Lawrence?\" said my guardian as we \ndrove along and Mr. Boythorn trotted on the green turf by the \nroadside.\n\n\"Sir Arrogant Numskull is here,\" replied Mr. Boythorn.  \"Ha ha ha!  \nSir Arrogant is here, and I am glad to say, has been laid by the \nheels here.  My Lady,\" in naming whom he always made a courtly \ngesture as if particularly to exclude her from any part in the \nquarrel, \"is expected, I believe, daily.  I am not in the least \nsurprised that she postpones her appearance as long as possible.  \nWhatever can have induced that transcendent woman to marry that \neffigy and figure-head of a baronet is one of the most impenetrable \nmysteries that ever baffled human inquiry.  Ha ha ha ha!\"\n\n\"I suppose, said my guardian, laughing, \"WE may set foot in the \npark while we are here?  The prohibition does not extend to us, \ndoes it?\"\n\n\"I can lay no prohibition on my guests,\" he said, bending his head \nto Ada and me with the smiling politeness which sat so gracefully \nupon him, \"except in the matter of their departure.  I am only \nsorry that I cannot have the happiness of being their escort about \nChesney Wold, which is a very fine place!  But by the light of this \nsummer day, Jarndyce, if you call upon the owner while you stay \nwith me, you are likely to have but a cool reception.  He carries \nhimself like an eight-day clock at all times, like one of a race of \neight-day clocks in gorgeous cases that never go and never went--Ha \nha ha!--but he will have some extra stiffness, I can promise you, \nfor the friends of his friend and neighbour Boythorn!\"\n\n\"I shall not put him to the proof,\" said my guardian.  \"He is as \nindifferent to the honour of knowing me, I dare say, as I am to the \nhonour of knowing him.  The air of the grounds and perhaps such a \nview of the house as any other sightseer might get are quite enough \nfor me.\"\n\n\"Well!\" said Mr. Boythorn.  \"I am glad of it on the whole.  It's in \nbetter keeping.  I am looked upon about here as a second Ajax \ndefying the lightning.  Ha ha ha ha!  When I go into our little \nchurch on a Sunday, a considerable part of the inconsiderable \ncongregation expect to see me drop, scorched and withered, on the \npavement under the Dedlock displeasure.  Ha ha ha ha!  I have no \ndoubt he is surprised that I don't.  For he is, by heaven, the most \nself-satisfied, and the shallowest, and the most coxcombical and \nutterly brainless ass!\"\n\nOur coming to the ridge of a hill we had been ascending enabled our \nfriend to point out Chesney Wold itself to us and diverted his \nattention from its master.\n\nIt was a picturesque old house in a fine park richly wooded.  Among \nthe trees and not far from the residence he pointed out the spire \nof the little church of which he had spoken.  Oh, the solemn woods \nover which the light and shadow travelled swiftly, as if heavenly \nwings were sweeping on benignant errands through the summer air; \nthe smooth green slopes, the glittering water, the garden where the \nflowers were so symmetrically arranged in clusters of the richest \ncolours, how beautiful they looked!  The house, with gable and \nchimney, and tower, and turret, and dark doorway, and broad \nterrace-walk, twining among the balustrades of which, and lying \nheaped upon the vases, there was one great flush of roses, seemed \nscarcely real in its light solidity and in the serene and peaceful \nhush that rested on all around it.  To Ada and to me, that above \nall appeared the pervading influence.  On everything, house, \ngarden, terrace, green slopes, water, old oaks, fern, moss, woods \nagain, and far away across the openings in the prospect to the \ndistance lying wide before us with a purple bloom upon it, there \nseemed to be such undisturbed repose.\n\nWhen we came into the little village and passed a small inn with \nthe sign of the Dedlock Arms swinging over the road in front, Mr. \nBoythorn interchanged greetings with a young gentleman sitting on a \nbench outside the inn-door who had some fishing-tackle lying beside \nhim.\n\n\"That's the housekeeper's grandson, Mr. Rouncewell by name,\" said, \nhe, \"and he is in love with a pretty girl up at the house.  Lady \nDedlock has taken a fancy to the pretty girl and is going to keep \nher about her own fair person--an honour which my young friend \nhimself does not at all appreciate.  However, he can't marry just \nyet, even if his Rosebud were willing; so he is fain to make the \nbest of it.  In the meanwhile, he comes here pretty often for a day \nor two at a time to--fish.  Ha ha ha ha!\"\n\n\"Are he and the pretty girl engaged, Mr. Boythorn?\" asked Ada.\n\n\"Why, my dear Miss Clare,\" he returned, \"I think they may perhaps \nunderstand each other; but you will see them soon, I dare say, and \nI must learn from you on such a point--not you from me.\"\n\nAda blushed, and Mr. Boythorn, trotting forward on his comely grey \nhorse, dismounted at his own door and stood ready with extended arm \nand uncovered head to welcome us when we arrived.\n\nHe lived in a pretty house, formerly the parsonage house, with a \nlawn in front, a bright flower-garden at the side, and a well-\nstocked orchard and kitchen-garden in the rear, enclosed with a \nvenerable wall that had of itself a ripened ruddy look.  But, \nindeed, everything about the place wore an aspect of maturity and \nabundance.  The old lime-tree walk was like green cloisters, the \nvery shadows of the cherry-trees and apple-trees were heavy with \nfruit, the gooseberry-bushes were so laden that their branches \narched and rested on the earth, the strawberries and raspberries \ngrew in like profusion, and the peaches basked by the hundred on \nthe wall.  Tumbled about among the spread nets and the glass frames \nsparkling and winking in the sun there were such heaps of drooping \npods, and marrows, and cucumbers, that every foot of ground \nappeared a vegetable treasury, while the smell of sweet herbs and \nall kinds of wholesome growth (to say nothing of the neighbouring \nmeadows where the hay was carrying) made the whole air a great \nnosegay.  Such stillness and composure reigned within the orderly \nprecincts of the old red wall that even the feathers hung in \ngarlands to scare the birds hardly stirred; and the wall had such a \nripening influence that where, here and there high up, a disused \nnail and scrap of list still clung to it, it was easy to fancy that \nthey had mellowed with the changing seasons and that they had \nrusted and decayed according to the common fate.\n\nThe house, though a little disorderly in comparison with the \ngarden, was a real old house with settles in the chimney of the \nbrick-floored kitchen and great beams across the ceilings.  On one \nside of it was the terrible piece of ground in dispute, where Mr. \nBoythorn maintained a sentry in a smock-frock day and night, whose \nduty was supposed to be, in cases of aggression, immediately to \nring a large bell hung up there for the purpose, to unchain a great \nbull-dog established in a kennel as his ally, and generally to deal \ndestruction on the enemy.  Not content with these precautions, Mr. \nBoythorn had himself composed and posted there, on painted boards \nto which his name was attached in large letters, the following \nsolemn warnings: \"Beware of the bull-dog.  He is most ferocious.  \nLawrence Boythorn.\"  \"The blunderbus is loaded with slugs.  \nLawrence Boythorn.\"  \"Man-traps and spring-guns are set here at all \ntimes of the day and night.  Lawrence Boythorn.\"  \"Take notice.  \nThat any person or persons audaciously presuming to trespass on \nthis property will be punished with the utmost severity of private \nchastisement and prosecuted with the utmost rigour of the law.  \nLawrence Boythorn.\"  These he showed us from the drawing-room \nwindow, while his bird was hopping about his head, and he laughed, \n\"Ha ha ha ha!  Ha ha ha ha!\" to that extent as he pointed them out \nthat I really thought he would have hurt himself.\n\n\"But this is taking a good deal of trouble,\" said Mr. Skimpole in \nhis light way, \"when you are not in earnest after all.\"\n\n\"Not in earnest!\" returned Mr. Boythorn with unspeakable warmth.  \n\"Not in earnest!  If I could have hoped to train him, I would have \nbought a lion instead of that dog and would have turned him loose \nupon the first intolerable robber who should dare to make an \nencroachment on my rights.  Let Sir Leicester Dedlock consent to \ncome out and decide this question by single combat, and I will meet \nhim with any weapon known to mankind in any age or country.  I am \nthat much in earnest.  Not more!\"\n\nWe arrived at his house on a Saturday.  On the Sunday morning we \nall set forth to walk to the little church in the park.  Entering \nthe park, almost immediately by the disputed ground, we pursued a \npleasant footpath winding among the verdant turf and the beautiful \ntrees until it brought us to the church-porch.\n\nThe congregation was extremely small and quite a rustic one with \nthe exception of a large muster of servants from the house, some of \nwhom were already in their seats, while others were yet dropping \nin.  There were some stately footmen, and there was a perfect \npicture of an old coachman, who looked as if he were the official \nrepresentative of all the pomps and vanities that had ever been put \ninto his coach.  There was a very pretty show of young women, and \nabove them, the handsome old face and fine responsible portly \nfigure of the housekeeper towered pre-eminent.  The pretty girl of \nwhom Mr. Boythorn had told us was close by her.  She was so very \npretty that I might have known her by her beauty even if I had not \nseen how blushingly conscious she was of the eyes of the young \nfisherman, whom I discovered not far off.  One face, and not an \nagreeable one, though it was handsome, seemed maliciously watchful \nof this pretty girl, and indeed of every one and everything there.  \nIt was a Frenchwoman's.\n\nAs the bell was yet ringing and the great people were not yet come, \nI had leisure to glance over the church, which smelt as earthy as a \ngrave, and to think what a shady, ancient, solemn little church it \nwas.  The windows, heavily shaded by trees, admitted a subdued \nlight that made the faces around me pale, and darkened the old \nbrasses in the pavement and the time and damp-worn monuments, and \nrendered the sunshine in the little porch, where a monotonous \nringer was working at the bell, inestimably bright.  But a stir in \nthat direction, a gathering of reverential awe in the rustic faces, \nand a blandly ferocious assumption on the part of Mr. Boythorn of \nbeing resolutely unconscious of somebody's existence forewarned me \nthat the great people were come and that the service was going to \nbegin.\n\n\"'Enter not into judgment with thy servant, O Lord, for in thy \nsight--'\"\n\nShall I ever forget the rapid beating at my heart, occasioned by \nthe look I met as I stood up!  Shall I ever forget the manner in \nwhich those handsome proud eyes seemed to spring out of their \nlanguor and to hold mine!  It was only a moment before I cast mine \ndown--released again, if I may say so--on my book; but I knew the \nbeautiful face quite well in that short space of time.\n\nAnd, very strangely, there was something quickened within me, \nassociated with the lonely days at my godmother's; yes, away even \nto the days when I had stood on tiptoe to dress myself at my little \nglass after dressing my doll.  And this, although I had never seen \nthis lady's face before in all my life--I was quite sure of it--\nabsolutely certain.\n\nIt was easy to know that the ceremonious, gouty, grey-haired \ngentleman, the only other occupant of the great pew, was Sir \nLeicester Dedlock, and that the lady was Lady Dedlock.  But why her \nface should be, in a confused way, like a broken glass to me, in \nwhich I saw scraps of old remembrances, and why I should be so \nfluttered and troubled (for I was still) by having casually met her \neyes, I could not think.\n\nI felt it to be an unmeaning weakness in me and tried to overcome \nit by attending to the words I heard.  Then, very strangely, I \nseemed to hear them, not in the reader's voice, but in the well-\nremembered voice of my godmother.  This made me think, did Lady \nDedlock's face accidentally resemble my godmother's?  It might be \nthat it did, a little; but the expression was so different, and the \nstern decision which had worn into my godmother's face, like \nweather into rocks, was so completely wanting in the face before me \nthat it could not be that resemblance which had struck me.  Neither \ndid I know the loftiness and haughtiness of Lady Dedlock's face, at \nall, in any one.  And yet I--I, little Esther Summerson, the child \nwho lived a life apart and on whose birthday there was no \nrejoicing--seemed to arise before my own eyes, evoked out of the \npast by some power in this fashionable lady, whom I not only \nentertained no fancy that I had ever seen, but whom I perfectly \nwell knew I had never seen until that hour.\n\nIt made me tremble so to be thrown into this unaccountable \nagitation that I was conscious of being distressed even by the \nobservation of the French maid, though I knew she had been looking \nwatchfully here, and there, and everywhere, from the moment of her \ncoming into the church.  By degrees, though very slowly, I at last \novercame my strange emotion.  After a long time, I looked towards \nLady Dedlock again.  It was while they were preparing to sing, \nbefore the sermon.  She took no heed of me, and the beating at my \nheart was gone.  Neither did it revive for more than a few moments \nwhen she once or twice afterwards glanced at Ada or at me through \nher glass.\n\nThe service being concluded, Sir Leicester gave his arm with much \ntaste and gallantry to Lady Dedlock--though he was obliged to walk \nby the help of a thick stick--and escorted her out of church to the \npony carriage in which they had come.  The servants then dispersed, \nand so did the congregation, whom Sir Leicester had contemplated \nall along (Mr. Skimpole said to Mr. Boythorn's infinite delight) as \nif he were a considerable landed proprietor in heaven.\n\n\"He believes he is!\" said Mr. Boythorn.  \"He firmly believes it.  \nSo did his father, and his grandfather, and his great-grandfather!\"\n\n\"Do you know,\" pursued Mr. Skimpole very unexpectedly to Mr. \nBoythorn, \"it's agreeable to me to see a man of that sort.\"\n\n\"IS it!\" said Mr. Boytborn.\n\n\"Say that he wants to patronize me,\" pursued Mr. Skimpole.  \"Very \nwell!  I don't object.\"\n\n\"I do,\" said Mr. Boythorn with great vigour.\n\n\"Do you really?\" returned Mr. Skimpole in his easy light vein.  \n\"But that's taking trouble, surely.  And why should you take \ntrouble?  Here am I, content to receive things childishly as they \nfall out, and I never take trouble!  I come down here, for \ninstance, and I find a mighty potentate exacting homage.  Very \nwell!  I say 'Mighty potentate, here IS my homage!  It's easier to \ngive it than to withhold it.  Here it is.  If you have anything of \nan agreeable nature to show me, I shall be happy to see it; if you \nhave anything of an agreeable nature to give me, I shall be happy \nto accept it.'  Mighty potentate replies in effect, 'This is a \nsensible fellow.  I find him accord with my digestion and my \nbilious system.  He doesn't impose upon me the necessity of rolling \nmyself up like a hedgehog with my points outward.  I expand, I \nopen, I turn my silver lining outward like Milton's cloud, and it's \nmore agreeable to both of us.'  That's my view of such things, \nspeaking as a child!\"\n\n\"But suppose you went down somewhere else to-morrow,\" said Mr. \nBoythorn, \"where there was the opposite of that fellow--or of this \nfellow.  How then?\"\n\n\"How then?\" said Mr. Skimpole with an appearance of the utmost \nsimplicity and candour.  \"Just the same then!  I should say, 'My \nesteemed Boythorn'--to make you the personification of our \nimaginary friend--'my esteemed Boythorn, you object to the mighty \npotentate?  Very good.  So do I.  I take it that my business in the \nsocial system is to be agreeable; I take it that everybody's \nbusiness in the social system is to be agreeable.  It's a system of \nharmony, in short.  Therefore if you object, I object.  Now, \nexcellent Boythorn, let us go to dinner!'\"\n\n\"But excellent Boythorn might say,\" returned our host, swelling and \ngrowing very red, \"I'll be--\"\n\n\"I understand,\" said Mr. Skimpole.  \"Very likely he would.\"\n\n\"--if I WILL go to dinner!\" cried Mr. Boythorn in a violent burst \nand stopping to strike his stick upon the ground.  \"And he would \nprobably add, 'Is there such a thing as principle, Mr. Harold \nSkimpole?'\"\n\n\"To which Harold Skimpole would reply, you know,\" he returned in \nhis gayest manner and with his most ingenuous smile, \"'Upon my life \nI have not the least idea!  I don't know what it is you call by \nthat name, or where it is, or who possesses it.  If you possess it \nand find it comfortable, I am quite delighted and congratulate you \nheartily.  But I know nothing about it, I assure you; for I am a \nmere child, and I lay no claim to it, and I don't want it!'  So, \nyou see, excellent Boythorn and I would go to dinner after all!\"\n\nThis was one of many little dialogues between them which I always \nexpected to end, and which I dare say would have ended under other \ncircumstances, in some violent explosion on the part of our host.  \nBut he had so high a sense of his hospitable and responsible \nposition as our entertainer, and my guardian laughed so sincerely \nat and with Mr. Skimpole, as a child who blew bubbles and broke \nthem all day long, that matters never went beyond this point.  Mr. \nSkimpole, who always seemed quite unconscious of having been on \ndelicate ground, then betook himself to beginning some sketch in \nthe park which be never finished, or to playing fragments of airs \non the piano, or to singing scraps of songs, or to lying down on \nhis back under a tree and looking at the sky--which he couldn't \nhelp thinking, he said, was what he was meant for; it suited him so \nexactly.\n\n\"Enterprise and effort,\" he would say to us (on his back), are \ndelightful to me.  I believe I am truly cosmopolitan.  I have the \ndeepest sympathy with them.  I lie in a shady place like this and \nthink of adventurous spirits going to the North Pole or penetrating \nto the heart of the Torrid Zone with admiration.  Mercenary \ncreatures ask, 'What is the use of a man's going to the North Pole?  \nWhat good does it do?'  I can't say; but, for anything I CAN say, \nhe may go for the purpose--though he don't know it--of employing my \nthoughts as I lie here.  Take an extreme case.  Take the case of \nthe slaves on American plantations.  I dare say they are worked \nhard, I dare say they don't altogether like it.  I dare say theirs \nis an unpleasant experience on the whole; but they people the \nlandscape for me, they give it a poetry for me, and perhaps that is \none of the pleasanter objects of their existence.  I am very \nsensible of it, if it be, and I shouldn't wonder if it were!\"\n\nI always wondered on these occasions whether he ever thought of \nMrs. Skimpole and the children, and in what point of view they \npresented themselves to his cosmopolitan mind.  So far as I could \nunderstand, they rarely presented themselves at all.\n\nThe week had gone round to the Saturday following that beating of \nmy heart in the church; and every day had been so bright and blue \nthat to ramble in the woods, and to see the light striking down \namong the transparent leaves and sparkling in the beautiful \ninterlacings of the shadows of the trees, while the birds poured \nout their songs and the air was drowsy with the hum of insects, had \nbeen most delightful.  We had one favourite spot, deep in moss and \nlast year's leaves, where there were some felled trees from which \nthe bark was all stripped off.  Seated among these, we looked \nthrough a green vista supported by thousands of natural columns, \nthe whitened stems of trees, upon a distant prospect made so \nradiant by its contrast with the shade in which we sat and made so \nprecious by the arched perspective through which we saw it that it \nwas like a glimpse of the better land.  Upon the Saturday we sat \nhere, Mr. Jarndyce, Ada, and I, until we heard thunder muttering in \nthe distance and felt the large raindrops rattle through the \nleaves.\n\nThe weather had been all the week extremely sultry, but the storm \nbroke so suddenly--upon us, at least, in that sheltered spot--that \nbefore we reached the outskirts of the wood the thunder and \nlightning were frequent and the rain came plunging through the \nleaves as if every drop were a great leaden bead.  As it was not a \ntime for standing among trees, we ran out of the wood, and up and \ndown the moss-grown steps which crossed the plantation-fence like \ntwo broad-staved ladders placed back to back, and made for a \nkeeper's lodge which was close at hand.  We had often noticed the \ndark beauty of this lodge standing in a deep twilight of trees, and \nhow the ivy clustered over it, and how there was a steep hollow \nnear, where we had once seen the keeper's dog dive down into the \nfern as if it were water.\n\nThe lodge was so dark within, now the sky was overcast, that we \nonly clearly saw the man who came to the door when we took shelter \nthere and put two chairs for Ada and me.  The lattice-windows were \nall thrown open, and we sat just within the doorway watching the \nstorm.  It was grand to see how the wind awoke, and bent the trees, \nand drove the rain before it like a cloud of smoke; and to hear the \nsolemn thunder and to see the lightning; and while thinking with \nawe of the tremendous powers by which our little lives are \nencompassed, to consider how beneficent they are and how upon the \nsmallest flower and leaf there was already a freshness poured from \nall this seeming rage which seemed to make creation new again.\n\n\"Is it not dangerous to sit in so exposed a place?\"\n\n\"Oh, no, Esther dear!\" said Ada quietly.\n\nAda said it to me, but I had not spoken.\n\nThe beating of my heart came back again.  I had never heard the \nvoice, as I had never seen the face, but it affected me in the same \nstrange way.  Again, in a moment, there arose before my mind \ninnumerable pictures of myself.\n\nLady Dedlock had taken shelter in the lodge before our arrival \nthere and had come out of the gloom within.  She stood behind my \nchair with her hand upon it.  I saw her with her hand close to my \nshoulder when I turned my head.\n\n\"I have frightened you?\" she said.\n\nNo.  It was not fright.  Why should I be frightened!\n\n\"I believe,\" said Lady Dedlock to my guardian, \"I have the pleasure \nof speaking to Mr. Jarndyce.\"\n\n\"Your remembrance does me more honour than I had supposed it would, \nLady Dedlock,\" he returned.\n\n\"I recognized you in church on Sunday.  I am sorry that any local \ndisputes of Sir Leicester's--they are not of his seeking, however, \nI believe--should render it a matter of some absurd difficulty to \nshow you any attention here.\"\n\n\"I am aware of the circumstances,\" returned my guardian with a \nsmile, \"and am sufficiently obliged.\"\n\nShe had given him her hand in an indifferent way that seemed \nhabitual to her and spoke in a correspondingly indifferent manner, \nthough in a very pleasant voice.  She was as graceful as she was \nbeautiful, perfectly self-possessed, and had the air, I thought, of \nbeing able to attract and interest any one if she had thought it \nworth her while.  The keeper had brought her a chair on which she \nsat in the middle of the porch between us.\n\n\"Is the young gentleman disposed of whom you wrote to Sir Leicester \nabout and whose wishes Sir Leicester was sorry not to have it in \nhis power to advance in any way?\" she said over her shoulder to my \nguardian.\n\n\"I hope so,\" said he.\n\nShe seemed to respect him and even to wish to conciliate him.  \nThere was something very winning in her haughty manner, and it \nbecame more familiar--I was going to say more easy, but that could \nhardly be--as she spoke to him over her shoulder.\n\n\"I presume this is your other ward, Miss Clare?\"\n\nHe presented Ada, in form.\n\n\"You will lose the disinterested part of your Don Quixote \ncharacter,\" said Lady Dedlock to Mr. Jarndyce over her shoulder \nagain, \"if you only redress the wrongs of beauty like this.  But \npresent me,\" and she turned full upon me, \"to this young lady too!\"\n\n\"Miss Summerson really is my ward,\" said Mr. Jarndyce.  \"I am \nresponsible to no Lord Chancellor in her case.\"\n\n\"Has Miss Summerson lost both her parents?\" said my Lady.\n\n\"Yes.\"\n\n\"She is very fortunate in her guardian.\"\n\nLady Dedlock looked at me, and I looked at her and said I was \nindeed.  All at once she turned from me with a hasty air, almost \nexpressive of displeasure or dislike, and spoke to him over her \nshoulder again.\n\n\"Ages have passed since we were in the habit of meeting, Mr. \nJarndyce.\"\n\n\"A long time.  At least I thought it was a long time, until I saw \nyou last Sunday,\" he returned.\n\n\"What!  Even you are a courtier, or think it necessary to become \none to me!\" she said with some disdain.  \"I have achieved that \nreputation, I suppose.\"\n\n\"You have achieved so much, Lady Dedlock,\" said my guardian, \"that \nyou pay some little penalty, I dare say.  But none to me.\"\n\n\"So much!\" she repeated, slightly laughing.  \"Yes!\"\n\nWith her air of superiority, and power, and fascination, and I know \nnot what, she seemed to regard Ada and me as little more than \nchildren.  So, as she slightly laughed and afterwards sat looking \nat the rain, she was as self-possessed and as free to occupy \nherself with her own thoughts as if she had been alone.\n\n\"I think you knew my sister when we were abroad together better \nthan you know me?\" she said, looking at him again.\n\n\"Yes, we happened to meet oftener,\" he returned.\n\n\"We went our several ways,\" said Lady Dedlock, \"and had little in \ncommon even before we agreed to differ.  It is to be regretted, I \nsuppose, but it could not be helped.\"\n\nLady Dedlock again sat looking at the rain.  The storm soon began \nto pass upon its way.  The shower greatly abated, the lightning \nceased, the thunder rolled among the distant hills, and the sun \nbegan to glisten on the wet leaves and the falling rain.  As we sat \nthere, silently, we saw a little pony phaeton coming towards us at \na merry pace.\n\n\"The messenger is coming back, my Lady,\" said the keeper, \"with the \ncarriage.\"\n\nAs it drove up, we saw that there were two people inside.  There \nalighted from it, with some cloaks and wrappers, first the \nFrenchwoman whom I had seen in church, and secondly the pretty \ngirl, the Frenchwoman with a defiant confidence, the pretty girl \nconfused and hesitating.\n\n\"What now?\" said Lady Dedlock.  \"Two!\"\n\n\"I am your maid, my Lady, at the present,\" said the Frenchwoman.  \n\"The message was for the attendant.\"\n\n\"I was afraid you might mean me, my Lady,\" said the pretty girl.\n\n\"I did mean you, child,\" replied her mistress calmly.  \"Put that \nshawl on me.\"\n\nShe slightly stooped her shoulders to receive it, and the pretty \ngirl lightly dropped it in its place.  The Frenchwoman stood \nunnoticed, looking on with her lips very tightly set.\n\n\"I am sorry,\" said Lady Dedlock to Mr. Jarndyce, \"that we are not \nlikely to renew our former acquaintance.  You will allow me to send \nthe carriage back for your two wards.  It shall be here directly.\"\n\nBut as he would on no account accept this offer, she took a \ngraceful leave of Ada--none of me--and put her hand upon his \nproffered arm, and got into the carriage, which was a little, low, \npark carriage with a hood.\n\n\"Come in, child,\" she said to the pretty girl; \"I shall want you.  \nGo on!\"\n\nThe carriage rolled away, and the Frenchwoman, with the wrappers \nshe had brought hanging over her arm, remained standing where she \nhad alighted.\n\nI suppose there is nothing pride can so little bear with as pride \nitself, and that she was punished for her imperious manner.  Her \nretaliation was the most singular I could have imagined.  She \nremained perfectly still until the carriage had turned into the \ndrive, and then, without the least discomposure of countenance, \nslipped off her shoes, left them on the ground, and walked \ndeliberately in the same direction through the wettest of the wet \ngrass.\n\n\"Is that young woman mad?\" said my guardian.\n\n\"Oh, no, sir!\" said the keeper, who, with his wife, was looking \nafter her.  \"Hortense is not one of that sort.  She has as good a \nhead-piece as the best.  But she's mortal high and passionate--\npowerful high and passionate; and what with having notice to leave, \nand having others put above her, she don't take kindly to it.\"\n\n\"But why should she walk shoeless through all that water?\" said my \nguardian.\n\n\"Why, indeed, sir, unless it is to cool her down!\" said the man.\n\n\"Or unless she fancies it's blood,\" said the woman.  \"She'd as soon \nwalk through that as anything else, I think, when her own's up!\"\n\nWe passed not far from the house a few minutes afterwards.  \nPeaceful as it had looked when we first saw it, it looked even more \nso now, with a diamond spray glittering all about it, a light wind \nblowing, the birds no longer hushed but singing strongly, \neverything refreshed by the late rain, and the little carriage \nshining at the doorway like a fairy carriage made of silver.  \nStill, very steadfastly and quietly walking towards it, a peaceful \nfigure too in the landscape, went Mademoiselle Hortense, shoeless, \nthrough the wet grass.\n\n\n\nCHAPTER XIX\n\nMoving On\n\n\nIt is the long vacation in the regions of Chancery Lane.  The good \nships Law and Equity, those teak-built, copper-bottomed, iron-\nfastened, brazen-faced, and not by any means fast-sailing clippers \nare laid up in ordinary.  The Flying Dutchman, with a crew of \nghostly clients imploring all whom they may encounter to peruse \ntheir papers, has drifted, for the time being, heaven knows where.  \nThe courts are all shut up; the public offices lie in a hot sleep.  \nWestminster Hall itself is a shady solitude where nightingales \nmight sing, and a tenderer class of suitors than is usually found \nthere, walk.\n\nThe Temple, Chancery Lane, Serjeants' Inn, and Lincoln's Inn even \nunto the Fields are like tidal harbours at low water, where \nstranded proceedings, offices at anchor, idle clerks lounging on \nlop-sided stools that will not recover their perpendicular until \nthe current of Term sets in, lie high and dry upon the ooze of the \nlong vacation.  Outer doors of chambers are shut up by the score, \nmessages and parcels are to be left at the Porter's Lodge by the \nbushel.  A crop of grass would grow in the chinks of the stone \npavement outside Lincoln's Inn Hall, but that the ticket-porters, \nwho have nothing to do beyond sitting in the shade there, with \ntheir white aprons over their heads to keep the flies off, grub it \nup and eat it thoughtfully.\n\nThere is only one judge in town.  Even he only comes twice a week \nto sit in chambers.  If the country folks of those assize towns on \nhis circuit could see him now!  No full-bottomed wig, no red \npetticoats, no fur, no javelin-men, no white wands.  Merely a \nclose-shaved gentleman in white trousers and a white hat, with sea-\nbronze on the judicial countenance, and a strip of bark peeled by \nthe solar rays from the judicial nose, who calls in at the shell-\nfish shop as he comes along and drinks iced ginger-beer!\n\nThe bar of England is scattered over the face of the earth.  How \nEngland can get on through four long summer months without its bar\n--which is its acknowledged refuge in adversity and its only \nlegitimate triumph in prosperity--is beside the question; assuredly \nthat shield and buckler of Britannia are not in present wear.  The \nlearned gentleman who is always so tremendously indignant at the \nunprecedented outrage committed on the feelings of his client by \nthe opposite party that he never seems likely to recover it is \ndoing infinitely better than might be expected in Switzerland.  The \nlearned gentleman who does the withering business and who blights \nall opponents with his gloomy sarcasm is as merry as a grig at a \nFrench watering-place.  The learned gentleman who weeps by the pint \non the smallest provocation has not shed a tear these six weeks.  \nThe very learned gentleman who has cooled the natural heat of his \ngingery complexion in pools and fountains of law until he has \nbecome great in knotty arguments for term-time, when he poses the \ndrowsy bench with legal \"chaff,\" inexplicable to the uninitiated \nand to most of the initiated too, is roaming, with a characteristic \ndelight in aridity and dust, about Constantinople.  Other dispersed \nfragments of the same great palladium are to be found on the canals \nof Venice, at the second cataract of the Nile, in the baths of \nGermany, and sprinkled on the sea-sand all over the English coast.  \nScarcely one is to be encountered in the deserted region of \nChancery Lane.  If such a lonely member of the bar do flit across \nthe waste and come upon a prowling suitor who is unable to leave \noff haunting the scenes of his anxiety, they frighten one another \nand retreat into opposite shades.\n\nIt is the hottest long vacation known for many years.  All the \nyoung clerks are madly in love, and according to their various \ndegrees, pine for bliss with the beloved object, at Margate, \nRamsgate, or Gravesend.  All the middle-aged clerks think their \nfamilies too large.  All the unowned dogs who stray into the Inns \nof Court and pant about staircases and other dry places seeking \nwater give short howls of aggravation.  All the blind men's dogs in \nthe streets draw their masters against pumps or trip them over \nbuckets.  A shop with a sun-blind, and a watered pavement, and a \nbowl of gold and silver fish in the window, is a sanctuary.  Temple \nBar gets so hot that it is, to the adjacent Strand and Fleet \nStreet, what a heater is in an urn, and keeps them simmering all \nnight.\n\nThere are offices about the Inns of Court in which a man might be \ncool, if any coolness were worth purchasing at such a price in \ndullness; but the little thoroughfares immediately outside those \nretirements seem to blaze.  In Mr. Krook's court, it is so hot that \nthe people turn their houses inside out and sit in chairs upon the \npavement--Mr. Krook included, who there pursues his studies, with \nhis cat (who never is too hot) by his side.  The Sol's Arms has \ndiscontinued the Harmonic Meetings for the season, and Little \nSwills is engaged at the Pastoral Gardens down the river, where he \ncomes out in quite an innocent manner and sings comic ditties of a \njuvenile complexion calculated (as the bill says) not to wound the \nfeelings of the most fastidious mind.\n\nOver all the legal neighbourhood there hangs, like some great veil \nof rust or gigantic cobweb, the idleness and pensiveness of the \nlong vacation.  Mr. Snagsby, law-stationer of Cook's Court, \nCursitor Street, is sensible of the influence not only in his mind \nas a sympathetic and contemplative man, but also in his business as \na law-stationer aforesaid.  He has more leisure for musing in \nStaple Inn and in the Rolls Yard during the long vacation than at \nother seasons, and he says to the two 'prentices, what a thing it \nis in such hot weather to think that you live in an island with the \nsea a-rolling and a-bowling right round you.\n\nGuster is busy in the little drawing-room on this present afternoon \nin the long vacation, when Mr. and Mrs. Snagsby have it in \ncontemplation to receive company.  The expected guests are rather \nselect than numerous, being Mr. and Mrs. Chadband and no more.  \nFrom Mr. Chadband's being much given to describe himself, both \nverbally and in writing, as a vessel, he is occasionally mistaken \nby strangers for a gentleman connected with navigation, but he is, \nas he expresses it, \"in the ministry.\"  Mr. Chadband is attached to \nno particular denomination and is considered by his persecutors to \nhave nothing so very remarkable to say on the greatest of subjects \nas to render his volunteering, on his own account, at all incumbent \non his conscience; but he has his followers, and Mrs. Snagsby is of \nthe number.  Mrs. Snagsby has but recently taken a passage upward \nby the vessel, Chadband; and her attention was attracted to that \nBark A 1 when she was something flushed by the hot weather.\n\n\"My little woman,\" says Mr. Snagsby to the sparrows in Staple Inn, \n\"likes to have her religion rather sharp, you see!\"\n\nSo Guster, much impressed by regarding herself for the time as the \nhandmaid of Chadband, whom she knows to be endowed with the gift of \nholding forth for four hours at a stretch, prepares the little \ndrawing-room for tea.  All the furniture is shaken and dusted, the \nportraits of Mr. and Mrs. Snagsby are touched up with a wet cloth, \nthe best tea-service is set forth, and there is excellent provision \nmade of dainty new bread, crusty twists, cool fresh butter, thin \nslices of ham, tongue, and German sausage, and delicate little rows \nof anchovies nestling in parsley, not to mention new-laid eggs, to \nbe brought up warm in a napkin, and hot buttered toast.  For \nChadband is rather a consuming vessel--the persecutors say a \ngorging vessel--and can wield such weapons of the flesh as a knife \nand fork remarkably well.\n\nMr. Snagsby in his best coat, looking at all the preparations when \nthey are completed and coughing his cough of deference behind his \nhand, says to Mrs. Snagsby, \"At what time did you expect Mr. and \nMrs. Chadband, my love?\"\n\n\"At six,\" says Mrs. Snagsby.\n\nMr. Snagsby observes in a mild and casual way that \"it's gone \nthat.\"\n\n\"Perhaps you'd like to begin without them,\" is Mrs. Snagsby's \nreproachful remark.\n\nMr. Snagsby does look as if he would like it very much, but he \nsays, with his cough of mildness, \"No, my dear, no.  I merely named \nthe time.\"\n\n\"What's time,\" says Mrs. Snagsby, \"to eternity?\"\n\n\"Very true, my dear,\" says Mr. Snagsby.  \"Only when a person lays \nin victuals for tea, a person does it with a view--perhaps--more to \ntime.  And when a time is named for having tea, it's better to come \nup to it.\"\n\n\"To come up to it!\" Mrs. Snagsby repeats with severity.  \"Up to it!  \nAs if Mr. Chadband was a fighter!\"\n\n\"Not at all, my dear,\" says Mr. Snagsby.\n\nHere, Guster, who had been looking out of the bedroom window, comes \nrustling and scratching down the little staircase like a popular \nghost, and falling flushed into the drawing-room, announces that \nMr. and Mrs. Chadband have appeared in the court.  The bell at the \ninner door in the passage immediately thereafter tinkling, she is \nadmonished by Mrs. Snagsby, on pain of instant reconsignment to her \npatron saint, not to omit the ceremony of announcement.  Much \ndiscomposed in her nerves (which were previously in the best order) \nby this threat, she so fearfully mutilates that point of state as \nto announce \"Mr. and Mrs. Cheeseming, least which, Imeantersay, \nwhatsername!\" and retires conscience-stricken from the presence.\n\nMr. Chadband is a large yellow man with a fat smile and a general \nappearance of having a good deal of train oil in his system.  Mrs. \nChadband is a stern, severe-looking, silent woman.  Mr. Chadband \nmoves softly and cumbrously, not unlike a bear who has been taught \nto walk upright.  He is very much embarrassed about the arms, as if \nthey were inconvenient to him and he wanted to grovel, is very much \nin a perspiration about the head, and never speaks without first \nputting up his great hand, as delivering a token to his hearers \nthat he is going to edify them.\n\n\"My friends,\" says Mr. Chadband, \"peace be on this house!  On the \nmaster thereof, on the mistress thereof, on the young maidens, and \non the young men!  My friends, why do I wish for peace?  What is \npeace?  Is it war?  No.  Is it strife?  No.  Is it lovely, and \ngentle, and beautiful, and pleasant, and serene, and joyful?  Oh, \nyes!  Therefore, my friends, I wish for peace, upon you and upon \nyours.\"\n\nIn consequence of Mrs. Snagsby looking deeply edified, Mr. Snagsby \nthinks it expedient on the whole to say amen, which is well \nreceived.\n\n\"Now, my friends,\" proceeds Mr. Chadband, \"since I am upon this \ntheme--\"\n\nGuster presents herself.  Mrs. Snagsby, in a spectral bass voice \nand without removing her eyes from Chadband, says with dreadful \ndistinctness, \"Go away!\"\n\n\"Now, my friends,\" says Chadband, \"since I am upon this theme, and \nin my lowly path improving it--\"\n\nGuster is heard unaccountably to murmur \"one thousing seven hundred \nand eighty-two.\"  The spectral voice repeats more solemnly, \"Go \naway!\"\n\n\"Now, my friends,\" says Mr. Chadband, \"we will inquire in a spirit \nof love--\"\n\nStill Guster reiterates \"one thousing seven hundred and eighty-\ntwo.\"\n\nMr. Chadband, pausing with the resignation of a man accustomed to \nbe persecuted and languidly folding up his chin into his fat smile, \nsays, \"Let us hear the maiden!  Speak, maiden!\"\n\n\"One thousing seven hundred and eighty-two, if you please, sir.  \nWhich he wish to know what the shilling ware for,\" says Guster, \nbreathless.\n\n\"For?\" returns Mrs. Chadband.  \"For his fare!\"\n\nGuster replied that \"he insistes on one and eightpence or on \nsummonsizzing the party.\"  Mrs. Snagsby and Mrs. Chadband are \nproceeding to grow shrill in indignation when Mr. Chadband quiets \nthe tumult by lifting up his hand.\n\n\"My friends,\" says he, \"I remember a duty unfulfilled yesterday.  \nIt is right that I should be chastened in some penalty.  I ought \nnot to murmur.  Rachael, pay the eightpence!\"\n\nWhile Mrs. Snagsby, drawing her breath, looks hard at Mr. Snagsby, \nas who should say, \"You hear this apostle!\" and while Mr. Chadband \nglows with humility and train oil, Mrs. Chadband pays the money.  \nIt is Mr. Chadband's habit--it is the head and front of his \npretensions indeed--to keep this sort of debtor and creditor \naccount in the smallest items and to post it publicly on the most \ntrivial occasions.\n\n\"My friends,\" says Chadband, \"eightpence is not much; it might \njustly have been one and fourpence; it might justly have been half \na crown.  O let us be joyful, joyful!  O let us be joyful!\"\n\nWith which remark, which appears from its sound to be an extract in \nverse, Mr. Chadband stalks to the table, and before taking a chair, \nlifts up his admonitory hand.\n\n\"My friends,\" says he, \"what is this which we now behold as being \nspread before us?  Refreshment.  Do we need refreshment then, my \nfriends?  We do.  And why do we need refreshment, my friends?  \nBecause we are but mortal, because we are but sinful, because we \nare but of the earth, because we are not of the air.  Can we fly, \nmy friends?  We cannot.  Why can we not fly, my friends?\"\n\nMr. Snagsby, presuming on the success of his last point, ventures \nto observe in a cheerful and rather knowing tone, \"No wings.\"  But \nis immediately frowned down by Mrs. Snagsby.\n\n\"I say, my friends,\" pursues Mr. Chadband, utterly rejecting and \nobliterating Mr. Snagsby's suggestion, \"why can we not fly?  Is it \nbecause we are calculated to walk?  It is.  Could we walk, my \nfriends, without strength?  We could not.  What should we do \nwithout strength, my friends?  Our legs would refuse to bear us, \nour knees would double up, our ankles would turn over, and we \nshould come to the ground.  Then from whence, my friends, in a \nhuman point of view, do we derive the strength that is necessary to \nour limbs?  Is it,\" says Chadband, glancing over the table, \"from \nbread in various forms, from butter which is churned from the milk \nwhich is yielded unto us by the cow, from the eggs which are laid \nby the fowl, from ham, from tongue, from sausage, and from such \nlike?  It is.  Then let us partake of the good things which are set \nbefore us!\"\n\nThe persecutors denied that there was any particular gift in Mr. \nChadband's piling verbose flights of stairs, one upon another, \nafter this fashion.  But this can only be received as a proof of \ntheir determination to persecute, since it must be within \neverybody's experience that the Chadband style of oratory is widely \nreceived and much admired.\n\nMr. Chadband, however, having concluded for the present, sits down \nat Mr. Snagsby's table and lays about him prodigiously.  The \nconversion of nutriment of any sort into oil of the quality already \nmentioned appears to be a process so inseparable from the \nconstitution of this exemplary vessel that in beginning to eat and \ndrink, he may be described as always becoming a kind of \nconsiderable oil mills or other large factory for the production of \nthat article on a wholesale scale.  On the present evening of the \nlong vacation, in Cook's Court, Cursitor Street, he does such a \npowerful stroke of business that the warehouse appears to be quite \nfull when the works cease.\n\nAt this period of the entertainment, Guster, who has never \nrecovered her first failure, but has neglected no possible or \nimpossible means of bringing the establishment and herself into \ncontempt--among which may be briefly enumerated her unexpectedly \nperforming clashing military music on Mr. Chadband's head with \nplates, and afterwards crowning that gentleman with muffins--at \nwhich period of the entertainment, Guster whispers Mr. Snagsby that \nhe is wanted.\n\n\"And being wanted in the--not to put too fine a point upon it--in \nthe shop,\" says Mr. Snagsby, rising, \"perhaps this good company \nwill excuse me for half a minute.\"\n\nMr. Snagsby descends and finds the two 'prentices intently \ncontemplating a police constable, who holds a ragged boy by the \narm.\n\n\"Why, bless my heart,\" says Mr. Snagsby, \"what's the matter!\"\n\n\"This boy,\" says the constable, \"although he's repeatedly told to, \nwon't move on--\"\n\n\"I'm always a-moving on, sar, cries the boy, wiping away his grimy \ntears with his arm.  \"I've always been a-moving and a-moving on, \never since I was born.  Where can I possibly move to, sir, more nor \nI do move!\"\n\n\"He won't move on,\" says the constable calmly, with a slight \nprofessional hitch of his neck involving its better settlement in \nhis stiff stock, \"although he has been repeatedly cautioned, and \ntherefore I am obliged to take him into custody.  He's as obstinate \na young gonoph as I know.  He WON'T move on.\"\n\n\"Oh, my eye!  Where can I move to!\" cries the boy, clutching quite \ndesperately at his hair and beating his bare feet upon the floor of \nMr. Snagsby's passage.\n\n\"Don't you come none of that or I shall make blessed short work of \nyou!\" says the constable, giving him a passionless shake.  \"My \ninstructions are that you are to move on.  I have told you so five \nhundred times.\"\n\n\"But where?\" cries the boy.\n\n\"Well!  Really, constable, you know,\" says Mr. Snagsby wistfully, \nand coughing behind his hand his cough of great perplexity and \ndoubt, \"really, that does seem a question.  Where, you know?\"\n\n\"My instructions don't go to that,\" replies the constable.  \"My \ninstructions are that this boy is to move on.\"\n\nDo you hear, Jo?  It is nothing to you or to any one else that the \ngreat lights of the parliamentary sky have failed for some few \nyears in this business to set you the example of moving on.  The \none grand recipe remains for you--the profound philosophical \nprescription--the be-all and the end-all of your strange existence \nupon earth.  Move on!  You are by no means to move off, Jo, for the \ngreat lights can't at all agree about that.  Move on!\n\nMr. Snagsby says nothing to this effect, says nothing at all \nindeed, but coughs his forlornest cough, expressive of no \nthoroughfare in any direction.  By this time Mr. and Mrs. Chadband \nand Mrs. Snagsby, hearing the altercation, have appeared upon the \nstairs.  Guster having never left the end of the passage, the whole \nhousehold are assembled.\n\n\"The simple question is, sir,\" says the constable, \"whether you \nknow this boy.  He says you do.\"\n\nMrs. Snagsby, from her elevation, instantly cries out, \"No he \ndon't!\"\n\n\"My lit-tle woman!\" says Mr. Snagsby, looking up the staircase.  \n\"My love, permit me!  Pray have a moment's patience, my dear.  I do \nknow something of this lad, and in what I know of him, I can't say \nthat there's any harm; perhaps on the contrary, constable.\"  To \nwhom the law-stationer relates his Joful and woful experience, \nsuppressing the half-crown fact.\n\n\"Well!\" says the constable, \"so far, it seems, he had grounds for \nwhat he said.  When I took him into custody up in Holborn, he said \nyou knew him.  Upon that, a young man who was in the crowd said he \nwas acquainted with you, and you were a respectable housekeeper, \nand if I'd call and make the inquiry, he'd appear.  The young man \ndon't seem inclined to keep his word, but--  Oh! Here IS the young \nman!\"\n\nEnter Mr. Guppy, who nods to Mr. Snagsby and touches his hat with \nthe chivalry of clerkship to the ladies on the stairs.\n\n\"I was strolling away from the office just now when I found this \nrow going on,\" says Mr. Guppy to the law-stationer, \"and as your \nname was mentioned, I thought it was right the thing should be \nlooked into.\"\n\n\"It was very good-natured of you, sir,\" says Mr. Snagsby, \"and I am \nobliged to you.\"  And Mr. Snagsby again relates his experience, \nagain suppressing the half-crown fact.\n\n\"Now, I know where you live,\" says the constable, then, to Jo.  \n\"You live down in Tom-all-Alone's.  That's a nice innocent place to \nlive in, ain't it?\"\n\n\"I can't go and live in no nicer place, sir,\" replies Jo.  \"They \nwouldn't have nothink to say to me if I wos to go to a nice \ninnocent place fur to live.  Who ud go and let a nice innocent \nlodging to such a reg'lar one as me!\"\n\n\"You are very poor, ain't you?\" says the constable.\n\n\"Yes, I am indeed, sir, wery poor in gin'ral,\" replies Jo.  \"I \nleave you to judge now!  I shook these two half-crowns out of him,\" \nsays the constable, producing them to the company, \"in only putting \nmy hand upon him!\"\n\n\"They're wot's left, Mr. Snagsby,\" says Jo, \"out of a sov-ring as \nwos give me by a lady in a wale as sed she wos a servant and as \ncome to my crossin one night and asked to be showd this 'ere ouse \nand the ouse wot him as you giv the writin to died at, and the \nberrin-ground wot he's berrid in.  She ses to me she ses 'are you \nthe boy at the inkwhich?' she ses.  I ses 'yes' I ses.  She ses to \nme she ses 'can you show me all them places?'  I ses 'yes I can' I \nses.  And she ses to me 'do it' and I dun it and she giv me a \nsov'ring and hooked it.  And I an't had much of the sov'ring \nneither,\" says Jo, with dirty tears, \"fur I had to pay five bob, \ndown in Tom-all-Alone's, afore they'd square it fur to give me \nchange, and then a young man he thieved another five while I was \nasleep and another boy he thieved ninepence and the landlord he \nstood drains round with a lot more on it.\"\n\n\"You don't expect anybody to believe this, about the lady and the \nsovereign, do you?\" says the constable, eyeing him aside with \nineffable disdain.\n\n\"I don't know as I do, sir,\" replies Jo.  \"I don't expect nothink \nat all, sir, much, but that's the true hist'ry on it.\"\n\n\"You see what he is!\" the constable observes to the audience.  \n\"Well, Mr. Snagsby, if I don't lock him up this time, will you \nengage for his moving on?\"\n\n\"No!\" cries Mrs. Snagsby from the stairs.\n\n\"My little woman!\" pleads her husband.  \"Constable, I have no doubt \nhe'll move on.  You know you really must do it,\" says Mr. Snagsby.\n\n\"I'm everyways agreeable, sir,\" says the hapless Jo.\n\n\"Do it, then,\" observes the constable.  \"You know what you have got \nto do.  Do it!  And recollect you won't get off so easy next time.  \nCatch hold of your money.  Now, the sooner you're five mile off, \nthe better for all parties.\"\n\nWith this farewell hint and pointing generally to the setting sun \nas a likely place to move on to, the constable bids his auditors \ngood afternoon and makes the echoes of Cook's Court perform slow \nmusic for him as he walks away on the shady side, carrying his \niron-bound hat in his hand for a little ventilation.\n\nNow, Jo's improbable story concerning the lady and the sovereign \nhas awakened more or less the curiosity of all the company.  Mr. \nGuppy, who has an inquiring mind in matters of evidence and who has \nbeen suffering severely from the lassitude of the long vacation, \ntakes that interest in the case that he enters on a regular cross-\nexamination of the witness, which is found so interesting by the \nladies that Mrs. Snagsby politely invites him to step upstairs and \ndrink a cup of tea, if he will excuse the disarranged state of the \ntea-table, consequent on their previous exertions.  Mr. Guppy \nyielding his assent to this proposal, Jo is requested to follow \ninto the drawing-room doorway, where Mr. Guppy takes him in hand as \na witness, patting him into this shape, that shape, and the other \nshape like a butterman dealing with so much butter, and worrying \nhim according to the best models.  Nor is the examination unlike \nmany such model displays, both in respect of its eliciting nothing \nand of its being lengthy, for Mr. Guppy is sensible of his talent, \nand Mrs. Snagsby feels not only that it gratifies her inquisitive \ndisposition, but that it lifts her husband's establishment higher \nup in the law.  During the progress of this keen encounter, the \nvessel Chadband, being merely engaged in the oil trade, gets \naground and waits to be floated off.\n\n\"Well!\" says Mr. Guppy.  \"Either this boy sticks to it like \ncobbler's-wax or there is something out of the common here that \nbeats anything that ever came into my way at Kenge and Carboy's.\"\n\nMrs. Chadband whispers Mrs. Snagsby, who exclaims, \"You don't say \nso!\"\n\n\"For years!\" replied Mrs. Chadband.\n\n\"Has known Kenge and Carboy's office for years,\" Mrs. Snagsby \ntriumphantly explains to Mr. Guppy.  \"Mrs. Chadband--this \ngentleman's wife--Reverend Mr. Chadband.\"\n\n\"Oh, indeed!\" says Mr. Guppy.\n\n\"Before I married my present husband,\" says Mrs. Chadband.\n\n\"Was you a party in anything, ma'am?\" says Mr. Guppy, transferring \nhis cross-examination.\n\n\"No.\"\n\n\"NOT a party in anything, ma'am?\" says Mr. Guppy.\n\nMrs. Chadband shakes her head.\n\n\"Perhaps you were acquainted with somebody who was a party in \nsomething, ma'am?\" says Mr. Guppy, who likes nothing better than to \nmodel his conversation on forensic principles.\n\n\"Not exactly that, either,\" replies Mrs. Chadband, humouring the \njoke with a hard-favoured smile.\n\n\"Not exactly that, either!\" repeats Mr. Guppy.  \"Very good.  Pray, \nma'am, was it a lady of your acquaintance who had some transactions \n(we will not at present say what transactions) with Kenge and \nCarboy's office, or was it a gentleman of your acquaintance?  Take \ntime, ma'am.  We shall come to it presently.  Man or woman, ma'am?\"\n\n\"Neither,\" says Mrs. Chadband as before.\n\n\"Oh!  A child!\" says Mr. Guppy, throwing on the admiring Mrs. \nSnagsby the regular acute professional eye which is thrown on \nBritish jurymen.  \"Now, ma'am, perhaps you'll have the kindness to \ntell us WHAT child.\"\n\n\"You have got it at last, sir,\" says Mrs. Chadband with another \nhard-favoured smile.  \"Well, sir, it was before your time, most \nlikely, judging from your appearance.  I was left in charge of a \nchild named Esther Summerson, who was put out in life by Messrs. \nKenge and Carboy.\"\n\n\"Miss Summerson, ma'am!\" cries Mr. Guppy, excited.\n\n\"I call her Esther Summerson,\" says Mrs. Chadband with austerity.  \n\"There was no Miss-ing of the girl in my time.  It was Esther.  \n'Esther, do this!  Esther, do that!' and she was made to do it.\"\n\n\"My dear ma'am,\" returns Mr. Guppy, moving across the small \napartment, \"the humble individual who now addresses you received \nthat young lady in London when she first came here from the \nestablishment to which you have alluded.  Allow me to have the \npleasure of taking you by the hand.\"\n\nMr. Chadband, at last seeing his opportunity, makes his accustomed \nsignal and rises with a smoking head, which he dabs with his \npocket-handkerchief.  Mrs. Snagsby whispers \"Hush!\"\n\n\"My friends,\" says Chadband, \"we have partaken in moderation\" \n(which was certainly not the case so far as he was concerned) \"of \nthe comforts which have been provided for us.  May this house live \nupon the fatness of the land; may corn and wine be plentiful \ntherein; may it grow, may it thrive, may it prosper, may it \nadvance, may it proceed, may it press forward!  But, my friends, \nhave we partaken of any-hing else?  We have.  My friends, of what \nelse have we partaken?  Of spiritual profit?  Yes.  From whence \nhave we derived that spiritual profit?  My young friend, stand \nforth!\"\n\nJo, thus apostrophized, gives a slouch backward, and another slouch \nforward, and another slouch to each side, and confronts the \neloquent Chadband with evident doubts of his intentions.\n\n\"My young friend,\" says Chadband, \"you are to us a pearl, you are \nto us a diamond, you are to us a gem, you are to us a jewel.  And \nwhy, my young friend?\"\n\n\"I don't know,\" replies Jo.  \"I don't know nothink.\"\n\n\"My young friend,\" says Chadband, \"it is because you know nothing \nthat you are to us a gem and jewel.  For what are you, my young \nfriend?  Are you a beast of the field?  No.  A bird of the air?  \nNo.  A fish of the sea or river?  No.  You are a human boy, my \nyoung friend.  A human boy.  O glorious to be a human boy!  And why \nglorious, my young friend?  Because you are capable of receiving \nthe lessons of wisdom, because you are capable of profiting by this \ndiscourse which I now deliver for your good, because you are not a \nstick, or a staff, or a stock, or a stone, or a post, or a pillar.\n\n\n     O running stream of sparkling joy\n     To be a soaring human boy!\n\n\nAnd do you cool yourself in that stream now, my young friend?  No.  \nWhy do you not cool yourself in that stream now?  Because you are \nin a state of darkness, because you are in a state of obscurity, \nbecause you are in a state of sinfulness, because you are in a \nstate of bondage.  My young friend, what is bondage?  Let us, in a \nspirit of love, inquire.\"\n\nAt this threatening stage of the discourse, Jo, who seems to have \nbeen gradually going out of his mind, smears his right arm over his \nface and gives a terrible yawn.  Mrs. Snagsby indignantly expresses \nher belief that he is a limb of the arch-fiend.\n\n\"My friends,\" says Mr. Chadband with his persecuted chin folding \nitself into its fat smile again as he looks round, \"it is right \nthat I should be humbled, it is right that I should be tried, it is \nright that I should be mortified, it is right that I should be \ncorrected.  I stumbled, on Sabbath last, when I thought with pride \nof my three hours' improving.  The account is now favourably \nbalanced: my creditor has accepted a composition.  O let us be \njoyful, joyful!  O let us be joyful!\"\n\nGreat sensation on the part of Mrs. Snagsby.\n\n\"My friends,\" says Chadband, looking round him in conclusion, \"I \nwill not proceed with my young friend now.  Will you come to-\nmorrow, my young friend, and inquire of this good lady where I am \nto be found to deliver a discourse unto you, and will you come like \nthe thirsty swallow upon the next day, and upon the day after that, \nand upon the day after that, and upon many pleasant days, to hear \ndiscourses?\"  (This with a cow-like lightness.)\n\nJo, whose immediate object seems to be to get away on any terms, \ngives a shuffling nod.  Mr. Guppy then throws him a penny, and Mrs. \nSnagsby calls to Guster to see him safely out of the house.  But \nbefore he goes downstairs, Mr. Snagsby loads him with some broken \nmeats from the table, which he carries away, hugging in his arms.\n\nSo, Mr. Chadband--of whom the persecutors say that it is no wonder \nhe should go on for any length of time uttering such abominable \nnonsense, but that the wonder rather is that he should ever leave \noff, having once the audacity to begin--retires into private life \nuntil he invests a little capital of supper in the oil-trade.  Jo \nmoves on, through the long vacation, down to Blackfriars Bridge, \nwhere he finds a baking stony corner wherein to settle to his \nrepast.\n\nAnd there he sits, munching and gnawing, and looking up at the \ngreat cross on the summit of St. Paul's Cathedral, glittering above \na red-and-violet-tinted cloud of smoke.  From the boy's face one \nmight suppose that sacred emblem to be, in his eyes, the crowning \nconfusion of the great, confused city--so golden, so high up, so \nfar out of his reach.  There he sits, the sun going down, the river \nrunning fast, the crowd flowing by him in two streams--everything \nmoving on to some purpose and to one end--until he is stirred up \nand told to \"move on\" too.\n\n\n\nCHAPTER XX\n\nA New Lodger\n\n\nThe long vacation saunters on towards term-time like an idle river \nvery leisurely strolling down a flat country to the sea.  Mr. Guppy \nsaunters along with it congenially.  He has blunted the blade of \nhis penknife and broken the point off by sticking that instrument \ninto his desk in every direction.  Not that he bears the desk any \nill will, but he must do something, and it must be something of an \nunexciting nature, which will lay neither his physical nor his \nintellectual energies under too heavy contribution.  He finds that \nnothing agrees with him so well as to make little gyrations on one \nleg of his stool, and stab his desk, and gape.\n\nKenge and Carboy are out of town, and the articled clerk has taken \nout a shooting license and gone down to his father's, and Mr. \nGuppy's two fellow-stipendiaries are away on leave.  Mr. Guppy and \nMr. Richard Carstone divide the dignity of the office.  But Mr. \nCarstone is for the time being established in Kenge's room, whereat \nMr. Guppy chafes.  So exceedingly that he with biting sarcasm \ninforms his mother, in the confidential moments when he sups with \nher off a lobster and lettuce in the Old Street Road, that he is \nafraid the office is hardly good enough for swells, and that if he \nhad known there was a swell coming, he would have got it painted.\n\nMr. Guppy suspects everybody who enters on the occupation of a \nstool in Kenge and Carboy's office of entertaining, as a matter of \ncourse, sinister designs upon him.  He is clear that every such \nperson wants to depose him.  If he be ever asked how, why, when, or \nwherefore, he shuts up one eye and shakes his head.  On the \nstrength of these profound views, he in the most ingenious manner \ntakes infinite pains to counterplot when there is no plot, and \nplays the deepest games of chess without any adversary.\n\nIt is a source of much gratification to Mr. Guppy, therefore, to \nfind the new-comer constantly poring over the papers in Jarndyce \nand Jarndyce, for he well knows that nothing but confusion and \nfailure can come of that.  His satisfaction communicates itself to \na third saunterer through the long vacation in Kenge and Carboy's \noffice, to wit, Young Smallweed.\n\nWhether Young Smallweed (metaphorically called Small and eke Chick \nWeed, as it were jocularly to express a fledgling) was ever a boy \nis much doubted in Lincoln's Inn.  He is now something under \nfifteen and an old limb of the law.  He is facetiously understood \nto entertain a passion for a lady at a cigar-shop in the \nneighbourhood of Chancery Lane and for her sake to have broken off \na contract with another lady, to whom he had been engaged some \nyears.  He is a town-made article, of small stature and weazen \nfeatures, but may be perceived from a considerable distance by \nmeans of his very tall hat.  To become a Guppy is the object of his \nambition.  He dresses at that gentleman (by whom he is patronized), \ntalks at him, walks at him, founds himself entirely on him.  He is \nhonoured with Mr. Guppy's particular confidence and occasionally \nadvises him, from the deep wells of his experience, on difficult \npoints in private life.\n\nMr. Guppy has been lolling out of window all the morning after \ntrying all the stools in succession and finding none of them easy, \nand after several times putting his head into the iron safe with a \nnotion of cooling it.  Mr. Smallweed has been twice dispatched for \neffervescent drinks, and has twice mixed them in the two official \ntumblers and stirred them up with the ruler.  Mr. Guppy propounds \nfor Mr. Smallweed's consideration the paradox that the more you \ndrink the thirstier you are and reclines his head upon the window-\nsill in a state of hopeless languor.\n\nWhile thus looking out into the shade of Old Square, Lincoln's Inn, \nsurveying the intolerable bricks and mortar, Mr. Guppy becomes \nconscious of a manly whisker emerging from the cloistered walk \nbelow and turning itself up in the direction of his face.  At the \nsame time, a low whistle is wafted through the Inn and a suppressed \nvoice cries, \"Hip!  Gup-py!\"\n\n\"Why, you don't mean it!\" says Mr. Guppy, aroused.  \"Small!  Here's \nJobling!\"  Small's head looks out of window too and nods to \nJobling.\n\n\"Where have you sprung up from?\" inquires Mr. Guppy.\n\n\"From the market-gardens down by Deptford.  I can't stand it any \nlonger.  I must enlist.  I say!  I wish you'd lend me half a crown.  \nUpon my soul, I'm hungry.\"\n\nJobling looks hungry and also has the appearance of having run to \nseed in the market-gardens down by Deptford.\n\n\"I say!  Just throw out half a crown if you have got one to spare.  \nI want to get some dinner.\"\n\n\"Will you come and dine with me?\" says Mr. Guppy, throwing out the \ncoin, which Mr. Jobling catches neatly.\n\n\"How long should I have to hold out?\" says Jobling.\n\n\"Not half an hour.  I am only waiting here till the enemy goes, \nreturns Mr. Guppy, butting inward with his head.\n\n\"What enemy?\"\n\n\"A new one.  Going to be articled.  Will you wait?\"\n\n\"Can you give a fellow anything to read in the meantime?\" says Mr \nJobling.\n\nSmallweed suggests the law list.  But Mr. Jobling declares with \nmuch earnestness that he \"can't stand it.\"\n\n\"You shall have the paper,\" says Mr. Guppy.  \"He shall bring it \ndown.  But you had better not be seen about here.  Sit on our \nstaircase and read.  It's a quiet place.\"\n\nJobling nods intelligence and acquiescence.  The sagacious \nSmallweed supplies him with the newspaper and occasionally drops \nhis eye upon him from the landing as a precaution against his \nbecoming disgusted with waiting and making an untimely departure.  \nAt last the enemy retreats, and then Smallweed fetches Mr. Jobling \nup.\n\n\"Well, and how are you?\" says Mr. Guppy, shaking hands with him.\n\n\"So, so.  How are you?\"\n\nMr. Guppy replying that he is not much to boast of, Mr. Jobling \nventures on the question, \"How is SHE?\"  This Mr. Guppy resents as \na liberty, retorting, \"Jobling, there ARE chords in the human \nmind--\"  Jobling begs pardon.\n\n\"Any subject but that!\" says Mr. Guppy with a gloomy enjoyment of \nhis injury.  \"For there ARE chords, Jobling--\"\n\nMr. Jobling begs pardon again.\n\nDuring this short colloquy, the active Smallweed, who is of the \ndinner party, has written in legal characters on a slip of paper, \n\"Return immediately.\"  This notification to all whom it may \nconcern, he inserts in the letter-box, and then putting on the tall \nhat at the angle of inclination at which Mr. Guppy wears his, \ninforms his patron that they may now make themselves scarce.\n\nAccordingly they betake themselves to a neighbouring dining-house, \nof the class known among its frequenters by the denomination slap-\nbang, where the waitress, a bouncing young female of forty, is \nsupposed to have made some impression on the susceptible Smallweed, \nof whom it may be remarked that he is a weird changeling to whom \nyears are nothing.  He stands precociously possessed of centuries \nof owlish wisdom.  If he ever lay in a cradle, it seems as if he \nmust have lain there in a tail-coat.  He has an old, old eye, has \nSmallweed; and he drinks and smokes in a monkeyish way; and his \nneck is stiff in his collar; and he is never to be taken in; and he \nknows all about it, whatever it is.  In short, in his bringing up \nhe has been so nursed by Law and Equity that he has become a kind \nof fossil imp, to account for whose terrestrial existence it is \nreported at the public offices that his father was John Doe and his \nmother the only female member of the Roe family, also that his \nfirst long-clothes were made from a blue bag.\n\nInto the dining-house, unaffected by the seductive show in the \nwindow of artificially whitened cauliflowers and poultry, verdant \nbaskets of peas, coolly blooming cucumbers, and joints ready for \nthe spit, Mr. Smallweed leads the way.  They know him there and \ndefer to him.  He has his favourite box, he bespeaks all the \npapers, he is down upon bald patriarchs, who keep them more than \nten minutes afterwards.  It is of no use trying him with anything \nless than a full-sized \"bread\" or proposing to him any joint in cut \nunless it is in the very best cut.  In the matter of gravy he is \nadamant.\n\nConscious of his elfin power and submitting to his dread \nexperience, Mr. Guppy consults him in the choice of that day's \nbanquet, turning an appealing look towards him as the waitress \nrepeats the catalogue of viands and saying \"What do YOU take, \nChick?\"  Chick, out of the profundity of his artfulness, preferring \n\"veal and ham and French beans--and don't you forget the stuffing, \nPolly\" (with an unearthly cock of his venerable eye), Mr. Guppy and \nMr. Jobling give the like order.  Three pint pots of half-and-half \nare superadded.  Quickly the waitress returns bearing what is \napparently a model of the Tower of Babel but what is really a pile \nof plates and flat tin dish-covers.  Mr. Smallweed, approving of \nwhat is set before him, conveys intelligent benignity into his \nancient eye and winks upon her.  Then, amid a constant coming in, \nand going out, and running about, and a clatter of crockery, and a \nrumbling up and down of the machine which brings the nice cuts from \nthe kitchen, and a shrill crying for more nice cuts down the \nspeaking-pipe, and a shrill reckoning of the cost of nice cuts that \nhave been disposed of, and a general flush and steam of hot joints, \ncut and uncut, and a considerably heated atmosphere in which the \nsoiled knives and tablecloths seem to break out spontaneously into \neruptions of grease and blotches of beer, the legal triumvirate \nappease their appetites.\n\nMr. Jobling is buttoned up closer than mere adornment might \nrequire.  His hat presents at the rims a peculiar appearance of a \nglistening nature, as if it had been a favourite snail-promenade.  \nThe same phenomenon is visible on some parts of his coat, and \nparticularly at the seams.  He has the faded appearance of a \ngentleman in embarrassed circumstances; even his light whiskers \ndroop with something of a shabby air.\n\nHis appetite is so vigorous that it suggests spare living for some \nlittle time back.  He makes such a speedy end of his plate of veal \nand ham, bringing it to a close while his companions are yet midway \nin theirs, that Mr. Guppy proposes another.  \"Thank you, Guppy,\" \nsays Mr. Jobling, \"I really don't know but what I WILL take \nanother.\"\n\nAnother being brought, he falls to with great goodwill.\n\nMr. Guppy takes silent notice of him at intervals until he is half \nway through this second plate and stops to take an enjoying pull at \nhis pint pot of half-and-half (also renewed) and stretches out his \nlegs and rubs his hands.  Beholding him in which glow of \ncontentment, Mr. Guppy says, \"You are a man again, Tony!\"\n\n\"Well, not quite yet,\" says Mr. Jobling.  \"Say, just born.\"\n\n\"Will you take any other vegetables?  Grass?  Peas?  Summer \ncabbage?\"\n\n\"Thank you, Guppy,\" says Mr. Jobling.  \"I really don't know but \nwhat I WILL take summer cabbage.\"\n\nOrder given; with the sarcastic addition (from Mr. Smallweed) of \n\"Without slugs, Polly!\"  And cabbage produced.\n\n\"I am growing up, Guppy,\" says Mr. Jobling, plying his knife and \nfork with a relishing steadiness.\n\n\"Glad to hear it.\"\n\n\"In fact, I have just turned into my teens,\" says Mr. Jobling.\n\nHe says no more until he has performed his task, which he achieves \nas Messrs. Guppy and Smallweed finish theirs, thus getting over the \nground in excellent style and beating those two gentlemen easily by \na veal and ham and a cabbage.\n\n\"Now, Small,\" says Mr. Guppy, \"what would you recommend about \npastry?\"\n\n\"Marrow puddings,\" says Mr. Smallweed instantly.\n\n\"Aye, aye!\" cries Mr. Jobling with an arch look.  \"You're there, \nare you?  Thank you, Mr. Guppy, I don't know but what I WILL take a \nmarrow pudding.\"\n\nThree marrow puddings being produced, Mr. Jobling adds in a \npleasant humour that he is coming of age fast.  To these succeed, \nby command of Mr. Smallweed, \"three Cheshires,\" and to those \"three \nsmall rums.\"  This apex of the entertainment happily reached, Mr. \nJobling puts up his legs on the carpeted seat (having his own side \nof the box to himself), leans against the wall, and says, \"I am \ngrown up now, Guppy.  I have arrived at maturity.\"\n\n\"What do you think, now,\" says Mr. Guppy, \"about--you don't mind \nSmallweed?\"\n\n\"Not the least in the worid.  I have the pleasure of drinking his \ngood health.\"\n\n\"Sir, to you!\" says Mr. Smallweed.\n\n\"I was saying, what do you think NOW,\" pursues Mr. Guppy, \"of \nenlisting?\"\n\n\"Why, what I may think after dinner,\" returns Mr. Jobling, \"is one \nthing, my dear Guppy, and what I may think before dinner is another \nthing.  Still, even after dinner, I ask myself the question, What \nam I to do?  How am I to live?  Ill fo manger, you know,\" says Mr. \nJobling, pronouncing that word as if he meant a necessary fixture \nin an English stable.  \"Ill fo manger.  That's the French saying, \nand mangering is as necessary to me as it is to a Frenchman.  Or \nmore so.\"\n\nMr. Smallweed is decidedly of opinion \"much more so.\"\n\n\"If any man had told me,\" pursues Jobling, \"even so lately as when \nyou and I had the frisk down in Lincolnshire, Guppy, and drove over \nto see that house at Castle Wold--\"\n\nMr. Smallweed corrects him--Chesney Wold.\n\n\"Chesney Wold.  (I thank my honourable friend for that cheer.) If \nany man had told me then that I should be as hard up at the present \ntime as I literally find myself, I should have--well, I should have \npitched into him,\" says Mr. Jobling, taking a little rum-and-water \nwith an air of desperate resignation; \"I should have let fly at his \nhead.\"\n\n\"Still, Tony, you were on the wrong side of the post then,\" \nremonstrates Mr. Guppy.  \"You were talking about nothing else in \nthe gig.\"\n\n\"Guppy,\" says Mr. Jobling, \"I will not deny it.  I was on the wrong \nside of the post.  But I trusted to things coming round.\"\n\nThat very popular trust in flat things coming round!  Not in their \nbeing beaten round, or worked round, but in their \"coming\" round!  \nAs though a lunatic should trust in the world's \"coming\" \ntriangular!\n\n\"I had confident expectations that things would come round and be \nall square,\" says Mr. Jobling with some vagueness of expression and \nperhaps of meaning too.  \"But I was disappointed.  They never did.  \nAnd when it came to creditors making rows at the office and to \npeople that the office dealt with making complaints about dirty \ntrifles of borrowed money, why there was an end of that connexion.  \nAnd of any new professional connexion too, for if I was to give a \nreference to-morrow, it would be mentioned and would sew me up.  \nThen what's a fellow to do?  I have been keeping out of the way and \nliving cheap down about the market-gardens, but what's the use of \nliving cheap when you have got no money?  You might as well live \ndear.\"\n\n\"Better,\" Mr. Smallweed thinks.\n\n\"Certainly.  It's the fashionable way; and fashion and whiskers \nhave been my weaknesses, and I don't care who knows it,\" says Mr. \nJobling.  \"They are great weaknesses--Damme, sir, they are great.  \nWell,\" proceeds Mr. Jobling after a defiant visit to his rum-and-\nwater, \"what can a fellow do, I ask you, BUT enlist?\"\n\nMr. Guppy comes more fully into the conversation to state what, in \nhis opinion, a fellow can do.  His manner is the gravely impressive \nmanner of a man who has not committed himself in life otherwise \nthan as he has become the victim of a tender sorrow of the heart.\n\n\"Jobling,\" says Mr. Guppy, \"myself and our mutual friend Smallweed--\"\n\nMr. Smallweed modestly observes, \"Gentlemen both!\" and drinks.\n\n\"--Have had a little conversation on this matter more than once \nsince you--\"\n\n\"Say, got the sack!\" cries Mr. Jobling bitterly.  \"Say it, Guppy.  \nYou mean it.\"\n\n\"No-o-o!  Left the Inn,\" Mr. Smallweed delicately suggests.\n\n\"Since you left the Inn, Jobling,\" says Mr. Guppy; \"and I have \nmentioned to our mutual friend Smallweed a plan I have lately \nthought of proposing.  You know Snagsby the stationer?\"\n\n\"I know there is such a stationer,\" returns Mr. Jobling.  \"He was \nnot ours, and I am not acquainted with him.\"\n\n\"He IS ours, Jobling, and I AM acquainted with him,\" Mr. Guppy \nretorts.  \"Well, sir!  I have lately become better acquainted with \nhim through some accidental circumstances that have made me a \nvisitor of his in private life.  Those circumstances it is not \nnecessary to offer in argument.  They may--or they may not--have \nsome reference to a subject which may--or may not--have cast its \nshadow on my existence.\"\n\nAs it is Mr. Guppy's perplexing way with boastful misery to tempt \nhis particular friends into this subject, and the moment they touch \nit, to turn on them with that trenchant severity about the chords \nin the human mind, both Mr. Jobling and Mr. Smallweed decline the \npitfall by remaining silent.\n\n\"Such things may be,\" repeats Mr. Guppy, \"or they may not be.  They \nare no part of the case.  It is enough to mention that both Mr. and \nMrs. Snagsby are very willing to oblige me and that Snagsby has, in \nbusy times, a good deal of copying work to give out.  He has all \nTulkinghorn's, and an excellent business besides.  I believe if our \nmutual friend Smallweed were put into the box, he could prove \nthis?\"\n\nMr. Smallweed nods and appears greedy to be sworn.\n\n\"Now, gentlemen of the jury,\" says Mr. Guppy, \"--I mean, now, \nJobling--you may say this is a poor prospect of a living.  Granted.  \nBut it's better than nothing, and better than enlistment.  You want \ntime.  There must be time for these late affairs to blow over.  You \nmight live through it on much worse terms than by writing for \nSnagsby.\"\n\nMr. Jobling is about to interrupt when the sagacious Smallweed \nchecks him with a dry cough and the words, \"Hem!  Shakspeare!\"\n\n\"There are two branches to this subject, Jobling,\" says Mr. Guppy.  \n\"That is the first.  I come to the second.  You know Krook, the \nChancellor, across the lane.  Come, Jobling,\" says Mr. Guppy in his \nencouraging cross-examination-tone, \"I think you know Krook, the \nChancellor, across the lane?\"\n\n\"I know him by sight,\" says Mr. Jobling.\n\n\"You know him by sight.  Very well.  And you know little Flite?\"\n\n\"Everybody knows her,\" says Mr. Jobling.\n\n\"Everybody knows her.  VERY well.  Now it has been one of my duties \nof late to pay Flite a certain weekly allowance, deducting from it \nthe amount of her weekly rent, which I have paid (in consequence of \ninstructions I have received) to Krook himself, regularly in her \npresence.  This has brought me into communication with Krook and \ninto a knowledge of his house and his habits.  I know he has a room \nto let.  You may live there at a very low charge under any name you \nlike, as quietly as if you were a hundred miles off.  He'll ask no \nquestions and would accept you as a tenant at a word from me--\nbefore the clock strikes, if you chose.  And I tell you another \nthing, Jobling,\" says Mr. Guppy, who has suddenly lowered his voice \nand become familiar again, \"he's an extraordinary old chap--always \nrummaging among a litter of papers and grubbing away at teaching \nhimself to read and write, without getting on a bit, as it seems to \nme.  He is a most extraordinary old chap, sir.  I don't know but \nwhat it might be worth a fellow's while to look him up a bit.\"\n\n\"You don't mean--\" Mr. Jobling begins.\n\n\"I mean,\" returns Mr. Guppy, shrugging his shoulders with becoming \nmodesty, \"that I can't make him out.  I appeal to our mutual friend \nSmallweed whether he has or has not heard me remark that I can't \nmake him out.\"\n\nMr. Smallweed bears the concise testimony, \"A few!\"\n\n\"I have seen something of the profession and something of life, \nTony,\" says Mr. Guppy, \"and it's seldom I can't make a man out, \nmore or less.  But such an old card as this, so deep, so sly, and \nsecret (though I don't believe he is ever sober), I never came \nacross.  Now, he must be precious old, you know, and he has not a \nsoul about him, and he is reported to be immensely rich; and \nwhether he is a smuggler, or a receiver, or an unlicensed \npawnbroker, or a money-lender--all of which I have thought likely \nat different times--it might pay you to knock up a sort of \nknowledge of him.  I don't see why you shouldn't go in for it, when \neverything else suits.\"\n\nMr. Jobling, Mr. Guppy, and Mr. Smallweed all lean their elbows on \nthe table and their chins upon their hands, and look at the \nceiling.  After a time, they all drink, slowly lean back, put their \nhands in their pockets, and look at one another.\n\n\"If I had the energy I once possessed, Tony!\" says Mr. Guppy with a \nsigh.  \"But there are chords in the human mind--\"\n\nExpressing the remainder of the desolate sentiment in rum-and-\nwater, Mr. Guppy concludes by resigning the adventure to Tony \nJobling and informing him that during the vacation and while things \nare slack, his purse, \"as far as three or four or even five pound \ngoes,\" will be at his disposal.  \"For never shall it be said,\" Mr. \nGuppy adds with emphasis, \"that William Guppy turned his back upon \nhis friend!\"\n\nThe latter part of the proposal is so directly to the purpose that \nMr. Jobling says with emotion, \"Guppy, my trump, your fist!\"  Mr. \nGuppy presents it, saying, \"Jobling, my boy, there it is!\"  Mr. \nJobling returns, \"Guppy, we have been pals now for some years!\"  \nMr. Guppy replies, \"Jobling, we have.\"\n\nThey then shake hands, and Mr. Jobling adds in a feeling manner, \n\"Thank you, Guppy, I don't know but what I WILL take another glass \nfor old acquaintance sake.\"\n\n\"Krook's last lodger died there,\" observes Mr. Guppy in an \nincidental way.\n\n\"Did he though!\" says Mr. Jobling.\n\n\"There was a verdict.  Accidental death.  You don't mind that?\"\n\n\"No,\" says Mr. Jobling, \"I don't mind it; but he might as well have \ndied somewhere else.  It's devilish odd that he need go and die at \nMY place!\"  Mr. Jobling quite resents this liberty, several times \nreturning to it with such remarks as, \"There are places enough to \ndie in, I should think!\" or, \"He wouldn't have liked my dying at \nHIS place, I dare say!\"\n\nHowever, the compact being virtually made, Mr. Guppy proposes to \ndispatch the trusty Smallweed to ascertain if Mr. Krook is at home, \nas in that case they may complete the negotiation without delay.  \nMr. Jobling approving, Smallweed puts himself under the tall hat \nand conveys it out of the dining-rooms in the Guppy manner.  He \nsoon returns with the intelligence that Mr. Krook is at home and \nthat he has seen him through the shop-door, sitting in the back \npremises, sleeping \"like one o'clock.\"\n\n\"Then I'll pay,\" says Mr. Guppy, \"and we'll go and see him.  Small, \nwhat will it be?\"\n\nMr. Smallweed, compelling the attendance of the waitress with one \nhitch of his eyelash, instantly replies as follows: \"Four veals and \nhams is three, and four potatoes is three and four, and one summer \ncabbage is three and six, and three marrows is four and six, and \nsix breads is five, and three Cheshires is five and three, and four \nhalf-pints of half-and-half is six and three, and four small rums \nis eight and three, and three Pollys is eight and six.  Eight and \nsix in half a sovereign, Polly, and eighteenpence out!\"\n\nNot at all excited by these stupendous calculations, Smallweed \ndismisses his friends with a cool nod and remains behind to take a \nlittle admiring notice of Polly, as opportunity may serve, and to \nread the daily papers, which are so very large in proportion to \nhimself, shorn of his hat, that when he holds up the Times to run \nhis eye over the columns, he seems to have retired for the night \nand to have disappeared under the bedclothes.\n\nMr. Guppy and Mr. Jobling repair to the rag and bottle shop, where \nthey find Krook still sleeping like one o'clock, that is to say, \nbreathing stertorously with his chin upon his breast and quite \ninsensible to any external sounds or even to gentle shaking.  On \nthe table beside him, among the usual lumber, stand an empty gin-\nbottle and a glass.  The unwholesome air is so stained with this \nliquor that even the green eyes of the cat upon her shelf, as they \nopen and shut and glimmer on the visitors, look drunk.\n\n\"Hold up here!\" says Mr. Guppy, giving the relaxed figure of the \nold man another shake.  \"Mr. Krook!  Halloa, sir!\"\n\nBut it would seem as easy to wake a bundle of old clothes with a \nspirituous heat smouldering in it.  \"Did you ever see such a stupor \nas he falls into, between drink and sleep?\" says Mr. Guppy.\n\n\"If this is his regular sleep,\" returns Jobling, rather alarmed, \n\"it'll last a long time one of these days, I am thinking.\"\n\n\"It's always more like a fit than a nap,\" says Mr. Guppy, shaking \nhim again.  \"Halloa, your lordship!  Why, he might be robbed fifty \ntimes over!  Open your eyes!\"\n\nAfter much ado, he opens them, but without appearing to see his \nvisitors or any other objects.  Though he crosses one leg on \nanother, and folds his hands, and several times closes and opens \nhis parched lips, he seems to all intents and purposes as \ninsensible as before.\n\n\"He is alive, at any rate,\" says Mr. Guppy.  \"How are you, my Lord \nChancellor.  I have brought a friend of mine, sir, on a little \nmatter of business.\"\n\nThe old man still sits, often smacking his dry lips without the \nleast consciousness.  After some minutes he makes an attempt to \nrise.  They help him up, and he staggers against the wall and \nstares at them.\n\n\"How do you do, Mr. Krook?\" says Mr. Guppy in some discomfiture.  \n\"How do you do, sir?  You are looking charming, Mr. Krook.  I hope \nyou are pretty well?\"\n\nThe old man, in aiming a purposeless blow at Mr. Guppy, or at \nnothing, feebly swings himself round and comes with his face \nagainst the wall.  So he remains for a minute or two, heaped up \nagainst it, and then staggers down the shop to the front door.  The \nair, the movement in the court, the lapse of time, or the \ncombination of these things recovers him.  He comes back pretty \nsteadily, adjusting his fur cap on his head and looking keenly at \nthem.\n\n\"Your servant, gentlemen; I've been dozing.  Hi! I am hard to wake, \nodd times.\"\n\n\"Rather so, indeed, sir,\" responds Mr. Guppy.\n\n\"What?  You've been a-trying to do it, have you?\" says the \nsuspicious Krook.\n\n\"Only a little,\" Mr. Guppy explains.\n\nThe old man's eye resting on the empty bottle, he takes it up, \nexamines it, and slowly tilts it upside down.\n\n\"I say!\" he cries like the hobgoblin in the story.  \"Somebody's \nbeen making free here!\"\n\n\"I assure you we found it so,\" says Mr. Guppy.  \"Would you allow me \nto get it filled for you?\"\n\n\"Yes, certainly I would!\" cries Krook in high glee.  \"Certainly I \nwould!  Don't mention it!  Get it filled next door--Sol's Arms--the \nLord Chancellor's fourteenpenny.  Bless you, they know ME!\"\n\nHe so presses the empty bottle upon Mr. Guppy that that gentleman, \nwith a nod to his friend, accepts the trust and hurries out and \nhurries in again with the bottle filled.  The old man receives it \nin his arms like a beloved grandchild and pats it tenderly.\n\n\"But, I say,\" he whispers, with his eyes screwed up, after tasting \nit, \"this ain't the Lord Chancellor's fourteenpenny.  This is \neighteenpenny!\"\n\n\"I thought you might like that better,\" says Mr. Guppy.\n\n\"You're a nobleman, sir,\" returns Krook with another taste, and his \nhot breath seems to come towards them like a flame.  \"You're a \nbaron of the land.\"\n\nTaking advantage of this auspicious moment, Mr. Guppy presents his \nfriend under the impromptu name of Mr. Weevle and states the object \nof their visit.  Krook, with his bottle under his arm (he never \ngets beyond a certain point of either drunkenness or sobriety), \ntakes time to survey his proposed lodger and seems to approve of \nhim.  \"You'd like to see the room, young man?\" he says.  \"Ah!  It's \na good room!  Been whitewashed.  Been cleaned down with soft soap \nand soda.  Hi!  It's worth twice the rent, letting alone my company \nwhen you want it and such a cat to keep the mice away.\"\n\nCommending the room after this manner, the old man takes them \nupstairs, where indeed they do find it cleaner than it used to be \nand also containing some old articles of furniture which he has dug \nup from his inexhaustible stores.  The terms are easily concluded--\nfor the Lord Chancellor cannot be hard on Mr. Guppy, associated as \nhe is with Kenge and Carboy, Jarndyce and Jarndyce, and other \nfamous claims on his professional consideration--and it is agreed \nthat Mr. Weevle shall take possession on the morrow.  Mr. Weevle \nand Mr. Guppy then repair to Cook's Court, Cursitor Street, where \nthe personal introduction of the former to Mr. Snagsby is effected \nand (more important) the vote and interest of Mrs. Snagsby are \nsecured.  They then report progress to the eminent Smallweed, \nwaiting at the office in his tall hat for that purpose, and \nseparate, Mr. Guppy explaining that he would terminate his little \nentertainment by standing treat at the play but that there are \nchords in the human mind which would render it a hollow mockery.\n\nOn the morrow, in the dusk of evening, Mr. Weevle modestly appears \nat Krook's, by no means incommoded with luggage, and establishes \nhimself in his new lodging, where the two eyes in the shutters \nstare at him in his sleep, as if they were full of wonder.  On the \nfollowing day Mr. Weevle, who is a handy good-for-nothing kind of \nyoung fellow, borrows a needle and thread of Miss Flite and a \nhammer of his landlord and goes to work devising apologies for \nwindow-curtains, and knocking up apologies for shelves, and hanging \nup his two teacups, milkpot, and crockery sundries on a pennyworth \nof little hooks, like a shipwrecked sailor making the best of it.\n\nBut what Mr. Weevle prizes most of all his few possessions (next \nafter his light whiskers, for which he has an attachment that only \nwhiskers can awaken in the breast of man) is a choice collection of \ncopper-plate impressions from that truly national work The \nDivinities of Albion, or Galaxy Gallery of British Beauty, \nrepresenting ladies of title and fashion in every variety of smirk \nthat art, combined with capital, is capable of producing.  With \nthese magnificent portraits, unworthily confined in a band-box \nduring his seclusion among the market-gardens, he decorates his \napartment; and as the Galaxy Gallery of British Beauty wears every \nvariety of fancy dress, plays every variety of musical instrument, \nfondles every variety of dog, ogles every variety of prospect, and \nis backed up by every variety of flower-pot and balustrade, the \nresult is very imposing.\n\nBut fashion is Mr. Weevle's, as it was Tony Jobling's, weakness.  \nTo borrow yesterday's paper from the Sol's Arms of an evening and \nread about the brilliant and distinguished meteors that are \nshooting across the fashionable sky in every direction is \nunspeakable consolation to him.  To know what member of what \nbrilliant and distinguished circle accomplished the brilliant and \ndistinguished feat of joining it yesterday or contemplates the no \nless brilliant and distinguished feat of leaving it to-morrow gives \nhim a thrill of joy.  To be informed what the Galaxy Gallery of \nBritish Beauty is about, and means to be about, and what Galaxy \nmarriages are on the tapis, and what Galaxy rumours are in \ncirculation, is to become acquainted with the most glorious \ndestinies of mankind.  Mr. Weevle reverts from this intelligence to \nthe Galaxy portraits implicated, and seems to know the originals, \nand to be known of them.\n\nFor the rest he is a quiet lodger, full of handy shifts and devices \nas before mentioned, able to cook and clean for himself as well as \nto carpenter, and developing social inclinations after the shades \nof evening have fallen on the court.  At those times, when he is \nnot visited by Mr. Guppy or by a small light in his likeness \nquenched in a dark hat, he comes out of his dull room--where he has \ninherited the deal wilderness of desk bespattered with a rain of \nink--and talks to Krook or is \"very free,\" as they call it in the \ncourt, commendingly, with any one disposed for conversation.  \nWherefore, Mrs. Piper, who leads the court, is impelled to offer \ntwo remarks to Mrs. Perkins: firstly, that if her Johnny was to \nhave whiskers, she could wish 'em to be identically like that young \nman's; and secondly, \"Mark my words, Mrs. Perkins, ma'am, and don't \nyou be surprised, Lord bless you, if that young man comes in at \nlast for old Krook's money!\"\n\n\n\nCHAPTER XXI\n\nThe Smallweed Family\n\n\nIn a rather ill-favoured and ill-savoured neighbourhood, though one \nof its rising grounds bears the name of Mount Pleasant, the Elfin \nSmallweed, christened Bartholomew and known on the domestic hearth \nas Bart, passes that limited portion of his time on which the \noffice and its contingencies have no claim.  He dwells in a little \nnarrow street, always solitary, shady, and sad, closely bricked in \non all sides like a tomb, but where there yet lingers the stump of \nan old forest tree whose flavour is about as fresh and natural as \nthe Smallweed smack of youth.\n\nThere has been only one child in the Smallweed family for several \ngenerations.  Little old men and women there have been, but no \nchild, until Mr. Smallweed's grandmother, now living, became weak \nin her intellect and fell (for the first time) into a childish \nstate.  With such infantine graces as a total want of observation, \nmemory, understanding, and interest, and an eternal disposition to \nfall asleep over the fire and into it, Mr. Smallweed's grandmother \nhas undoubtedly brightened the family.\n\nMr. Smallweed's grandfather is likewise of the party.  He is in a \nhelpless condition as to his lower, and nearly so as to his upper, \nlimbs, but his mind is unimpaired.  It holds, as well as it ever \nheld, the first four rules of arithmetic and a certain small \ncollection of the hardest facts.  In respect of ideality, \nreverence, wonder, and other such phrenological attributes, it is \nno worse off than it used to be.  Everything that Mr. Smallweed's \ngrandfather ever put away in his mind was a grub at first, and is a \ngrub at last.  In all his life he has never bred a single \nbutterfly.\n\nThe father of this pleasant grandfather, of the neighbourhood of \nMount Pleasant, was a horny-skinned, two-legged, money-getting \nspecies of spider who spun webs to catch unwary flies and retired \ninto holes until they were entrapped.  The name of this old pagan's \ngod was Compound Interest.  He lived for it, married it, died of \nit.  Meeting with a heavy loss in an honest little enterprise in \nwhich all the loss was intended to have been on the other side, he \nbroke something--something necessary to his existence, therefore it \ncouldn't have been his heart--and made an end of his career.  As \nhis character was not good, and he had been bred at a charity \nschool in a complete course, according to question and answer, of \nthose ancient people the Amorites and Hittites, he was frequently \nquoted as an example of the failure of education.\n\nHis spirit shone through his son, to whom he had always preached of \n\"going out\" early in life and whom he made a clerk in a sharp \nscrivener's office at twelve years old.  There the young gentleman \nimproved his mind, which was of a lean and anxious character, and \ndeveloping the family gifts, gradually elevated himself into the \ndiscounting profession.  Going out early in life and marrying late, \nas his father had done before him, he too begat a lean and anxious-\nminded son, who in his turn, going out early in life and marrying \nlate, became the father of Bartholomew and Judith Smallweed, twins.  \nDuring the whole time consumed in the slow growth of this family \ntree, the house of Smallweed, always early to go out and late to \nmarry, has strengthened itself in its practical character, has \ndiscarded all amusements, discountenanced all story-books, fairy-\ntales, fictions, and fables, and banished all levities whatsoever.  \nHence the gratifying fact that it has had no child born to it and \nthat the complete little men and women whom it has produced have \nbeen observed to bear a likeness to old monkeys with something \ndepressing on their minds.\n\nAt the present time, in the dark little parlour certain feet below \nthe level of the street--a grim, hard, uncouth parlour, only \nornamented with the coarsest of baize table-covers, and the hardest \nof sheet-iron tea-trays, and offering in its decorative character \nno bad allegorical representation of Grandfather Smallweed's mind--\nseated in two black horsehair porter's chairs, one on each side of \nthe fire-place, the superannuated Mr. and Mrs. Smallweed while away \nthe rosy hours.  On the stove are a couple of trivets for the pots \nand kettles which it is Grandfather Smallweed's usual occupation to \nwatch, and projecting from the chimney-piece between them is a sort \nof brass gallows for roasting, which he also superintends when it \nis in action.  Under the venerable Mr. Smallweed's seat and guarded \nby his spindle legs is a drawer in his chair, reported to contain \nproperty to a fabulous amount.  Beside him is a spare cushion with \nwhich he is always provided in order that he may have something to \nthrow at the venerable partner of his respected age whenever she \nmakes an allusion to money--a subject on which he is particularly \nsensitive.\n\n\"And where's Bart?\" Grandfather Smallweed inquires of Judy, Bart's \ntwin sister.\n\n\"He an't come in yet,\" says Judy.\n\n\"It's his tea-time, isn't it?\"\n\n\"No.\"\n\n\"How much do you mean to say it wants then?\"\n\n\"Ten minutes.\"\n\n\"Hey?\"\n\n\"Ten minutes.\" (Loud on the part of Judy.)\n\n\"Ho!\" says Grandfather Smallweed.  \"Ten minutes.\"\n\nGrandmother Smallweed, who has been mumbling and shaking her head \nat the trivets, hearing figures mentioned, connects them with money \nand screeches like a horrible old parrot without any plumage, \"Ten \nten-pound notes!\"\n\nGrandfather Smallweed immediately throws the cushion at her.\n\n\"Drat you, be quiet!\" says the good old man.\n\nThe effect of this act of jaculation is twofold.  It not only \ndoubles up Mrs. Smallweed's head against the side of her porter's \nchair and causes her to present, when extricated by her \ngranddaughter, a highly unbecoming state of cap, but the necessary \nexertion recoils on Mr. Smallweed himself, whom it throws back into \nHIS porter's chair like a broken puppet.  The excellent old \ngentleman being at these times a mere clothes-bag with a black \nskull-cap on the top of it, does not present a very animated \nappearance until he has undergone the two operations at the hands \nof his granddaughter of being shaken up like a great bottle and \npoked and punched like a great bolster.  Some indication of a neck \nbeing developed in him by these means, he and the sharer of his \nlife's evening again fronting one another in their two porter's \nchairs, like a couple of sentinels long forgotten on their post by \nthe Black Serjeant, Death.\n\nJudy the twin is worthy company for these associates.  She is so \nindubitably sister to Mr. Smallweed the younger that the two \nkneaded into one would hardly make a young person of average \nproportions, while she so happily exemplifies the before-mentioned \nfamily likeness to the monkey tribe that attired in a spangled robe \nand cap she might walk about the table-land on the top of a barrel-\norgan without exciting much remark as an unusual specimen.  Under \nexisting circumstances, however, she is dressed in a plain, spare \ngown of brown stuff.\n\nJudy never owned a doll, never heard of Cinderella, never played at \nany game.  She once or twice fell into children's company when she \nwas about ten years old, but the children couldn't get on with \nJudy, and Judy couldn't get on with them.  She seemed like an \nanimal of another species, and there was instinctive repugnance on \nboth sides.  It is very doubtful whether Judy knows how to laugh.  \nShe has so rarely seen the thing done that the probabilities are \nstrong the other way.  Of anything like a youthful laugh, she \ncertainly can have no conception.  If she were to try one, she \nwould find her teeth in her way, modelling that action of her face, \nas she has unconsciously modelled all its other expressions, on her \npattern of sordid age.  Such is Judy.\n\nAnd her twin brother couldn't wind up a top for his life.  He knows \nno more of Jack the Giant Killer or of Sinbad the Sailor than he \nknows of the people in the stars.  He could as soon play at leap-\nfrog or at cricket as change into a cricket or a frog himself.  But \nhe is so much the better off than his sister that on his narrow \nworld of fact an opening has dawned into such broader regions as \nlie within the ken of Mr. Guppy.  Hence his admiration and his \nemulation of that shining enchanter.\n\nJudy, with a gong-like clash and clatter, sets one of the sheet-\niron tea-trays on the table and arranges cups and saucers.  The \nbread she puts on in an iron basket, and the butter (and not much \nof it) in a small pewter plate.  Grandfather Smallweed looks hard \nafter the tea as it is served out and asks Judy where the girl is.\n\n\"Charley, do you mean?\" says Judy.\n\n\"Hey?\" from Grandfather Smallweed.\n\n\"Charley, do you mean?\"\n\nThis touches a spring in Grandmother Smallweed, who, chuckling as \nusual at the trivets, cries, \"Over the water!  Charley over the \nwater, Charley over the water, over the water to Charley, Charley \nover the water, over the water to Charley!\" and becomes quite \nenergetic about it.  Grandfather looks at the cushion but has not \nsufficiently recovered his late exertion.\n\n\"Ha!\" he says when there is silence.  \"If that's her name.  She \neats a deal.  It would be better to allow her for her keep.\"\n\nJudy, with her brother's wink, shakes her head and purses up her \nmouth into no without saying it.\n\n\"No?\" returns the old man.  \"Why not?\"\n\n\"She'd want sixpence a day, and we can do it for less,\" says Judy.\n\n\"Sure?\"\n\nJudy answers with a nod of deepest meaning and calls, as she \nscrapes the butter on the loaf with every precaution against waste \nand cuts it into slices, \"You, Charley, where are you?\"  Timidly \nobedient to the summons, a little girl in a rough apron and a large \nbonnet, with her hands covered with soap and water and a scrubbing \nbrush in one of them, appears, and curtsys.\n\n\"What work are you about now?\" says Judy, making an ancient snap at \nher like a very sharp old beldame.\n\n\"I'm a-cleaning the upstairs back room, miss,\" replies Charley.\n\n\"Mind you do it thoroughly, and don't loiter.  Shirking won't do \nfor me.  Make haste!  Go along!\" cries Judy with a stamp upon the \nground.  \"You girls are more trouble than you're worth, by half.\"\n\nOn this severe matron, as she returns to her task of scraping the \nbutter and cutting the bread, falls the shadow of her brother, \nlooking in at the window.  For whom, knife and loaf in hand, she \nopens the street-door.\n\n\"Aye, aye, Bart!\" says Grandfather Smallweed.  \"Here you are, hey?\"\n\n\"Here I am,\" says Bart.\n\n\"Been along with your friend again, Bart?\"\n\nSmall nods.\n\n\"Dining at his expense, Bart?\"\n\nSmall nods again.\n\n\"That's right.  Live at his expense as much as you can, and take \nwarning by his foolish example.  That's the use of such a friend.  \nThe only use you can put him to,\" says the venerable sage.\n\nHis grandson, without receiving this good counsel as dutifully as \nhe might, honours it with all such acceptance as may lie in a \nslight wink and a nod and takes a chair at the tea-table.  The four \nold faces then hover over teacups like a company of ghastly \ncherubim, Mrs. Smallweed perpetually twitching her head and \nchattering at the trivets and Mr. Smallweed requiring to be \nrepeatedly shaken up like a large black draught.\n\n\"Yes, yes,\" says the good old gentleman, reverting to his lesson of \nwisdom.  \"That's such advice as your father would have given you, \nBart.  You never saw your father.  More's the pity.  He was my true \nson.\"  Whether it is intended to be conveyed that he was \nparticularly pleasant to look at, on that account, does not appear.\n\n\"He was my true son,\" repeats the old gentleman, folding his bread \nand butter on his knee, \"a good accountant, and died fifteen years \nago.\"\n\nMrs. Smallweed, following her usual instinct, breaks out with \n\"Fifteen hundred pound.  Fifteen hundred pound in a black box, \nfifteen hundred pound locked up, fifteen hundred pound put away and \nhid!\"  Her worthy husband, setting aside his bread and butter, \nimmediately discharges the cushion at her, crushes her against the \nside of her chair, and falls back in his own, overpowered.  His \nappearance, after visiting Mrs. Smallweed with one of these \nadmonitions, is particularly impressive and not wholly \nprepossessing, firstly because the exertion generally twists his \nblack skull-cap over one eye and gives him an air of goblin \nrakishness, secondly because he mutters violent imprecations \nagainst Mrs. Smallweed, and thirdly because the contrast between \nthose powerful expressions and his powerless figure is suggestive \nof a baleful old malignant who would be very wicked if he could.  \nAll this, however, is so common in the Smallweed family circle that \nit produces no impression.  The old gentleman is merely shaken and \nhas his internal feathers beaten up, the cushion is restored to its \nusual place beside him, and the old lady, perhaps with her cap \nadjusted and perhaps not, is planted in her chair again, ready to \nbe bowled down like a ninepin.\n\nSome time elapses in the present instance before the old gentleman \nis sufficiently cool to resume his discourse, and even then he \nmixes it up with several edifying expletives addressed to the \nunconscious partner of his bosom, who holds communication with \nnothing on earth but the trivets.  As thus: \"If your father, Bart, \nhad lived longer, he might have been worth a deal of money--you \nbrimstone chatterer!--but just as he was beginning to build up the \nhouse that he had been making the foundations for, through many a \nyear--you jade of a magpie, jackdaw, and poll-parrot, what do you \nmean!--he took ill and died of a low fever, always being a sparing \nand a spare man, fule been a good son, and I think I meant to \nhave been one.  But I wasn't.  I was a thundering bad son, that's \nthe long and the short of it, and never was a credit to anybody.\"\n\n\"Surprising!\" cries the old man.\n\n\"However,\" Mr. George resumes, \"the less said about it, the better \nnow.  Come! You know the agreement.  Always a pipe out of the two \nmonths' interest!  (Bosh! It's all correct.  You needn't be afraid \nto order the pipe.  Here's the new bill, and here's the two months' \ninterest-money, and a devil-and-all of a scrape it is to get it \ntogether in my business.)\"\n\nMr. George sits, with his arms folded, consuming the family and the \nparlour while Grandfather Smallweed is assisted by Judy to two \nblack leathern cases out of a locked bureau, in one of which he \nsecures the document he has just received, and from the other takes \nanother similar document which hl of business care--I should like to throw a \ncat at you instead of a cushion, and I will too if you make such a \nconfounded fool of yourself!--and your mother, who was a prudent \nwoman as dry as a chip, just dwindled away like touchwood after you \nand Judy were born--you are an old pig.  You are a brimstone pig.  \nYou're a head of swine!\"\n\nJudy, not interested in what she has often heard, begins to collect \nin a basin various tributary streams of tea, from the bottoms of \ncups and saucers and from the bottom of the teapot for the little \ncharwoman's evening meal.  In like manner she gets together, in the \niron bread-basket, as many outside fragments and worn-down heels of \nloaves as the rigid economy of the house has left in existence.\n\n\"But your father and me were partners, Bart,\" says the old \ngentleman, \"and when I am gone, you and Judy will have all there \nis.  It's rare for you both that you went out early in life--Judy \nto the flower business, and you to the law.  You won't want to \nspend it.  You'll get your living without it, and put more to it.  \nWhen I am gone, Judy will go back to the flower business and you'll \nstill stick to the law.\"\n\nOne might infer from Judy's appearance that her business rather lay \nwith the thorns than the flowers, but she has in her time been \napprenticed to the art and mystery of artificial flower-making.  A \nclose observer might perhaps detect both in her eye and her \nbrother's, when their venerable grandsire anticipates his being \ngone, some little impatience to know when he may be going, and some \nresentful opinion that it is time he went.\n\n\"Now, if everybody has done,\" says Judy, completing her \npreparations, \"I'll have that girl in to her tea.  She would never \nleave off if she took it by herself in the kitchen.\"\n\nCharley is accordingly introduced, and under a heavy fire of eyes, \nsits down to her basin and a Druidical ruin of bread and butter.  \nIn the active superintendence of this young person, Judy Smallweed \nappears to attain a perfectly geological age and to date from the \nremotest periods.  Her systematic manner of flying at her and \npouncing on her, with or without pretence, whether or no, is \nwonderful, evincing an accomplishment in the art of girl-driving \nseldom reached by the oldest practitioners.\n\n\"Now, don't stare about you all the afternoon,\" cries Judy, shaking \nher head and stamping her foot as she happens to catch the glance \nwhich has been previously sounding the basin of tea, \"but take your \nvictuals and get back to your work.\"\n\n\"Yes, miss,\" says Charley.\n\n\"Don't say yes,\" returns Miss Smallweed, \"for I know what you girls \nare.  Do it without saying it, and then I may begin to believe \nyou.\"\n\nCharley swallows a great gulp of tea in token of submission and so \ndisperses the Druidical ruins that Miss Smallweed charges her not \nto gormandize, which \"in you girls,\" she observes, is disgusting.  \nCharley might find some more difficulty in meeting her views on the \ngeneral subject of girls but for a knock at the door.\n\n\"See who it is, and don't chew when you open it!\" cries Judy.\n\nThe object of her attentions withdrawing for the purpose, Miss \nSmallweed takes that opportunity of jumbling the remainder of the \nbread and butter together and launching two or three dirty tea-cups \ninto the ebb-tide of the basin of tea as a hint that she considers \nthe eating and drinking terminated.\n\n\"Now!  Who is it, and what's wanted?\" says the snappish Judy.\n\nIt is one Mr. George, it appears.  Without other announcement or \nceremony, Mr. George walks in.\n\n\"Whew!\" says Mr. George.  \"You are hot here.  Always a fire, eh?  \nWell!  Perhaps you do right to get used to one.\"  Mr. George makes \nthe latter remark to himself as he nods to Grandfather Smallweed.\n\n\"Ho! It's you!\" cries the old gentleman.  \"How de do?  How de do?\"\n\n\"Middling,\" replies Mr. George, taking a chair.  \"Your \ngranddaughter I have had the honour of seeing before; my service to \nyou, miss.\"\n\n\"This is my grandson,\" says Grandfather Smallweed.  \"You ha'n't \nseen him before.  He is in the law and not much at home.\"\n\n\"My service to him, too!  He is like his sister.  He is very like \nhis sister.  He is devilish like his sister,\" says Mr. George, \nlaying a great and not altogether complimentary stress on his last \nadjective.\n\n\"And how does the world use you, Mr. George?\" Grandfather Smallweed \ninquires, slowly rubbing his legs.\n\n\"Pretty much as usual.  Like a football.\"\n\nHe is a swarthy brown man of fifty, well made, and good looking, \nwith crisp dark hair, bright eyes, and a broad chest.  His sinewy \nand powerful hands, as sunburnt as his face, have evidently been \nused to a pretty rough life.  What is curious about him is that he \nsits forward on his chair as if he were, from long habit, allowing \nspace for some dress or accoutrements that he has altogether laid \naside.  His step too is measured and heavy and would go well with a \nweighty clash and jingle of spurs.  He is close-shaved now, but his \nmouth is set as if his upper lip had been for years familiar with a \ngreat moustache; and his manner of occasionally laying the open \npalm of his broad brown hand upon it is to the same effect.  \nAltogether one might guess Mr. George to have been a trooper once \nupon a time.\n\nA special contrast Mr. George makes to the Smallweed family.  \nTrooper was never yet billeted upon a household more unlike him.  \nIt is a broadsword to an oyster-knife.  His developed figure and \ntheir stunted forms, his large manner filling any amount of room \nand their little narrow pinched ways, his sounding voice and their \nsharp spare tones, are in the strongest and the strangest \nopposition.  As he sits in the middle of the grim parlour, leaning \na little forward, with his hands upon his thighs and his elbows \nsquared, he looks as though, if he remained there long, he would \nabsorb into himself the whole family and the whole four-roomed \nhouse, extra little back-kitchen and all.\n\n\"Do you rub your legs to rub life into 'em?\" he asks of Grandfather \nSmallweed after looking round the room.\n\n\"Why, it's partly a habit, Mr. George, and--yes--it partly helps \nthe circulation,\" he replies.\n\n\"The cir-cu-la-tion!\" repeats Mr. George, folding his arms upon his \nchest and seeming to become two sizes larger.  \"Not much of that, I \nshould think.\"\n\n\"Truly I'm old, Mr. George,\" says Grandfather Smallweed.  \"But I \ncan carry my years.  I'm older than HER,\" nodding at his wife, \"and \nsee what she is?  You're a brimstone chatterer!\" with a sudden \nrevival of his late hostility.\n\n\"Unlucky old soul!\" says Mr. George, turning his head in that \ndirection.  \"Don't scold the old lady.  Look at her here, with her \npoor cap half off her head and her poor hair all in a muddle.  Hold \nup, ma'am.  That's better.  There we are!  Think of your mother, \nMr. Smallweed,\" says Mr. George, coming back to his seat from \nassisting her, \"if your wife an't enough.\"\n\n\"I suppose you were an excellent son, Mr. George?\" the old man \nhints with a leer.\n\nThe colour of Mr. George's face rather deepens as he replies, \"Why \nno.  I wasn't.\"\n\n\"I am astonished at it.\"\n\n\"So am I.  I ought to have hands to Mr. George, who twists \nit up for a pipelight.  As the old man inspects, through his \nglasses, every up-stroke and down-stroke of both documents before \nhe releases them from their leathern prison, and as he counts the \nmoney three times over and requires Judy to say every word she \nutters at least twice, and is as tremulously slow of speech and \naction as it is possible to be, this business is a long time in \nprogress.  When it is quite concluded, and not before, he \ndisengages his ravenous eyes and fingers from it and answers Mr. \nGeorge's last remark by saying, \"Afraid to order the pipe?  We are \nnot so mercenary as that, sir.  Judy, see directly to the pipe and \nthe glass of cold brandy-and-water for Mr. George.\"\n\nThe sportive twins, who have been looking straight before them all \nthis time except when they have been engrossed by the black \nleathern cases, retire together, generally disdainful of the \nvisitor, but leaving him to the old man as two young cubs might \nleave a traveller to the parental bear.\n\n\"And there you sit, I suppose, all the day long, eh?\" says Mr. \nGeorge with folded arms.\n\n\"Just so, just so,\" the old man nods.\n\n\"And don't you occupy yourself at all?\"\n\n\"I watch the fire--and the boiling and the roasting--\"\n\n\"When there is any,\" says Mr. George with great expression.\n\n\"Just so.  When there is any.\"\n\n\"Don't you read or get read to?\"\n\nThe old man shakes his head with sharp sly triumph.  \"No, no.  We \nhave never been readers in our family.  It don't pay.  Stuff.  \nIdleness.  Folly.  No, no!\"\n\n\"There's not much to choose between your two states,\" says the \nvisitor in a key too low for the old man's dull hearing as he looks \nfrom him to the old woman and back again.  \"I say!\" in a louder \nvoice.\n\n\"I hear you.\"\n\n\"You'll sell me up at last, I suppose, when I am a day in arrear.\"\n\n\"My dear friend!\" cries Grandfather Smallweed, stretching out both \nhands to embrace him.  \"Never!  Never, my dear friend!  But my \nfriend in the city that I got to lend you the money--HE might!\"\n\n\"Oh! You can't answer for him?\" says Mr. George, finishing the \ninquiry in his lower key with the words \"You lying old rascal!\"\n\n\"My dear friend, he is not to be depended on.  I wouldn't trust \nhim.  He will have his bond, my dear friend.\"\n\n\"Devil doubt him,\" says Mr. George.  Charley appearing with a tray, \non which are the pipe, a small paper of tobacco, and the brandy-\nand-water, he asks her, \"How do you come here!  You haven't got the \nfamily face.\"\n\n\"I goes out to work, sir,\" returns Charley.\n\nThe trooper (if trooper he be or have been) takes her bonnet off, \nwith a light touch for so strong a hand, and pats her on the head.  \n\"You give the house almost a wholesome look.  It wants a bit of \nyouth as much as it wants fresh air.\"  Then he dismisses her, \nlights his pipe, and drinks to Mr. Smallweed's friend in the city--\nthe one solitary flight of that esteemed old gentleman's \nimagination.\n\n\"So you think he might be hard upon me, eh?\"\n\n\"I think he might--I am afraid he would.  I have known him do it,\" \nsays Grandfather Smallweed incautiously, \"twenty times.\"\n\nIncautiously, because his stricken better-half, who has been dozing \nover the fire for some time, is instantly aroused and jabbers \n\"Twenty thousand pounds, twenty twenty-pound notes in a money-box, \ntwenty guineas, twenty million twenty per cent, twenty--\" and is \nthen cut short by the flying cushion, which the visitor, to whom \nthis singular experiment appears to be a novelty, snatches from her \nface as it crushes her in the usual manner.\n\n\"You're a brimstone idiot.  You're a scorpion--a brimstone \nscorpion!  You're a sweltering toad.  You're a chattering \nclattering broomstick witch that ought to be burnt!\" gasps the old \nman, prostrate in his chair.  \"My dear friend, will you shake me up \na little?\"\n\nMr. George, who has been looking first at one of them and then at \nthe other, as if he were demented, takes his venerable acquaintance \nby the throat on receiving this request, and dragging him upright \nin his chalr as easily as if he were a doll, appears in two minds \nwhether or no to shake all future power of cushioning out of him \nand shake him into his grave.  Resisting the temptation, but \nagitating him violently enough to make his head roll like a \nharlequin's, he puts him smartly down in his chair again and \nadjusts his skull-cap with such a rub that the old man winks with \nboth eyes for a minute afterwards.\n\n\"O Lord!\" gasps Mr. Smallweed.  \"That'll do.  Thank you, my dear \nfriend, that'll do.  Oh, dear me, I'm out of breath.  O Lord!\"  And \nMr. Smallweed says it not without evident apprehensions of his dear \nfriend, who still stands over him looming larger than ever.\n\nThe alarming presence, however, gradually subsides into its chair \nand falls to smoking in long puffs, consoling itself with the \nphilosophical reflection, \"The name of your friend in the city \nbegins with a D, comrade, and you're about right respecting the \nbond.\"\n\n\"Did you speak, Mr. George?\" inquires the old man.\n\nThe trooper shakes his head, and leaning forward with his right \nelbow on his right knee and his pipe supported in that hand, while \nhis other hand, resting on his left leg, squares his left elbow in \na martial manner, continues to smoke.  Meanwhile he looks at Mr. \nSmallweed with grave attention and now and then fans the cloud of \nsmoke away in order that he may see him the more clearly.\n\n\"I take it,\" he says, making just as much and as little change in \nhis position as will enable him to reach the glass to his lips with \na round, full action, \"that I am the only man alive (or dead \neither) that gets the value of a pipe out of YOU?\"\n\n\"Well,\" returns the old man, \"it's true that I don't see company, \nMr. George, and that I don't treat.  I can't afford to it.  But as \nyou, in your pleasant way, made your pipe a condition--\"\n\n\"Why, it's not for the value of it; that's no great thing.  It was \na fancy to get it out of you.  To have something in for my money.\"\n\n\"Ha! You're prudent, prudent, sir!\" cries Grandfather Smallweed, \nrubbing his legs.\n\n\"Very.  I always was.\"  Puff.  \"It's a sure sign of my prudence \nthat I ever found the way here.\"  Puff.  \"Also, that I am what I \nam.\"  Puff.  \"I am well known to be prudent,\" says Mr. George, \ncomposedly smoking.  \"I rose in life that way.\"\n\n\"Don't he down-hearted, sir.  You may rise yet.\"\n\nMr. George laughs and drinks.\n\n\"Ha'n't you no relations, now,\" asks Grandfather Smallweed with a \ntwinkle in his eyes, \"who would pay off this little principal or \nwho would lend you a good name or two that I could persuade my \nfriend in the city to make you a further advance upon?  Two good \nnames would be sufficient for my friend in the city.  Ha'n't you no \nsuch relations, Mr. George?\"\n\nMr. George, still composedly smoking, replies, \"If I had, I \nshouldn't trouble them.  I have been trouble enough to my \nbelongings in my day.  It MAY be a very good sort of penitence in a \nvagabond, who has wasted the best time of his life, to go back then \nto decent people that he never was a credit to and live upon them, \nbut it's not my sort.  The best kind of amends then for having gone \naway is to keep away, in my opinion.\"\n\n\"But natural affection, Mr. George,\" hints Grandfather Smallweed.\n\n\"For two good names, hey?\" says Mr. George, shaking his head and \nstill composedly smoking.  \"No.  That's not my sort either.\"\n\nGrandfather Smallweed has been gradually sliding down in his chair \nsince his last adjustment and is now a bundle of clothes with a \nvoice in it calling for Judy.  That houri, appearing, shakes him up \nin the usual manner and is charged by the old gentleman to remain \nnear him.  For he seems chary of putting his visitor to the trouble \nof repeating his late attentions.\n\n\"Ha!\" he observes when he is in trim again.  \"If you could have \ntraced out the captain, Mr. George, it would have been the making \nof you.  If when you first came here, in consequence of our \nadvertisement in the newspapers--when I say 'our,' I'm alluding to \nthe advertisements of my friend in the city, and one or two others \nwho embark their capital in the same way, and are so friendly \ntowards me as sometimes to give me a lift with my little pittance--\nif at that time you could have helped us, Mr. George, it would have \nbeen the making of you.\"\n\n\"I was willing enough to be 'made,' as you call it,\" says Mr. \nGeorge, smoking not quite so placidly as before, for since the \nentrance of Judy he has been in some measure disturbed by a \nfascination, not of the admiring kind, which obliges him to look at \nher as she stands by her grandfather's chair, \"but on the whole, I \nam glad I wasn't now.\"\n\n\"Why, Mr. George?  In the name of--of brimstone, why?\" says \nGrandfather Smallweed with a plain appearance of exasperation.  \n(Brimstone apparently suggested by his eye lighting on Mrs. \nSmallweed in her slumber.)\n\n\"For two reasons, comrade.\"\n\n\"And what two reasons, Mr. George?  In the name of the--\"\n\n\"Of our friend in the city?\" suggests Mr. George, composedly \ndrinking.\n\n\"Aye, if you like.  What two reasons?\"\n\n\"In the first place,\" returns Mr. George, but still looking at Judy \nas if she being so old and so like her grandfather it is \nindifferent which of the two he addresses, \"you gentlemen took me \nin.  You advertised that Mr. Hawdon (Captain Hawdon, if you hold to \nthe saying 'Once a captain, always a captain') was to hear of \nsomething to his advantage.\"\n\n\"Well?\" returns the old man shrilly and sharply.\n\n\"Well!\" says Mr. George, smoking on.  \"It wouldn't have been much \nto his advantage to have been clapped into prison by the whole bill \nand judgment trade of London.\"\n\n\"How do you know that?  Some of his rich relations might have paid \nhis debts or compounded for 'em.  Besides, he had taken US in.  He \nowed us immense sums all round.  I would sooner have strangled him \nthan had no return.  If I sit here thinking of him,\" snarls the old \nman, holding up his impotent ten fingers, \"I want to strangle him \nnow.\"  And in a sudden access of fury, he throws the cushion at the \nunoffending Mrs. Smallweed, but it passes harmlessly on one side of \nher chair.\n\n\"I don't need to be told,\" returns the trooper, taking his pipe \nfrom his lips for a moment and carrying his eyes back from \nfollowing the progress of the cushion to the pipe-bowl which is \nburning low, \"that he carried on heavily and went to ruin.  I have \nbeen at his right hand many a day when he was charging upon ruin \nfull-gallop.  I was with him when he was sick and well, rich and \npoor.  I laid this hand upon him after he had run through \neverything and broken down everything beneath him--when he held a \npistol to his head.\"\n\n\"I wish he had let it off,\" says the benevolent old man, \"and blown \nhis head into as many pieces as he owed pounds!\"\n\n\"That would have been a smash indeed,\" returns the trooper coolly; \n\"any way, he had been young, hopeful, and handsome in the days gone \nby, and I am glad I never found him, when he was neither, to lead \nto a result so much to his advantage.  That's reason number one.\"\n\n\"I hope number two's as good?\" snarls the old man.\n\n\"Why, no.  It's more of a selfish reason.  If I had found him, I \nmust have gone to the other world to look.  He was there.\"\n\n\"How do you know he was there?\"\n\n\"He wasn't here.\"\n\n\"How do you know he wasn't here?\"\n\n\"Don't lose your temper as well as your money,\" says Mr. George, \ncalmly knocking the ashes out of his pipe.  \"He was drowned long \nbefore.  I am convinced of it.  He went over a ship's side.  \nWhether intentionally or accidentally, I don't know.  Perhaps your \nfriend in the city does.  Do you know what that tune is, Mr. \nSmallweed?\" he adds after breaking off to whistle one, accompanied \non the table with the empty pipe.\n\n\"Tune!\" replied the old man.  \"No.  We never have tunes here.\"\n\n\"That's the Dead March in Saul.  They bury soldiers to it, so it's \nthe natural end of the subject.  Now, if your pretty granddaughter\n--excuse me, miss--will condescend to take care of this pipe for two \nmonths, we shall save the cost of one next time.  Good evening, Mr. \nSmallweed!\"\n\n\"My dear friend!\" the old man gives him both his hands.\n\n\"So you think your friend in the city will be hard upon me if I \nfall in a payment?\" says the trooper, looking down upon him like a \ngiant.\n\n\"My dear friend, I am afraid he will,\" returns the old man, looking \nup at him like a pygmy.\n\nMr. George laughs, and with a glance at Mr. Smallweed and a parting \nsalutation to the scornful Judy, strides out of the parlour, \nclashing imaginary sabres and other metallic appurtenances as he \ngoes.\n\n\"You're a damned rogue,\" says the old gentleman, making a hideous \ngrimace at the door as he shuts it.  \"But I'll lime you, you dog, \nI'll lime you!\"\n\nAfter this amiable remark, his spirit soars into those enchanting \nregions of reflection which its education and pursuits have opened \nto it, and again he and Mrs. Smallweed while away the rosy hours, \ntwo unrelieved sentinels forgotten as aforesaid by the Black \nSerjeant.\n\nWhile the twain are faithful to their post, Mr. George strides \nthrough the streets with a massive kind of swagger and a grave-\nenough face.  It is eight o'clock now, and the day is fast drawing \nin.  He stops hard by Waterloo Bridge and reads a playbill, decides \nto go to Astley's Theatre.  Being there, is much delighted with the \nhorses and the feats of strength; looks at the weapons with a \ncritical eye; disapproves of the combats as giving evidences of \nunskilful swordsmanship; but is touched home by the sentiments.  In \nthe last scene, when the Emperor of Tartary gets up into a cart and \ncondescends to bless the united lovers by hovering over them with \nthe Union Jack, his eyelashes are moistened with emotion.\n\nThe theatre over, Mr. George comes across the water again and makes \nhis way to that curious region lying about the Haymarket and \nLeicester Square which is a centre of attraction to indifferent \nforeign hotels and indifferent foreigners, racket-courts, fighting-\nmen, swordsmen, footguards, old china, gaming-houses, exhibitions, \nand a large medley of shabbiness and shrinking out of sight.  \nPenetrating to the heart of this region, he arrives by a court and \na long whitewashed passage at a great brick building composed of \nbare walls, floors, roof-rafters, and skylights, on the front of \nwhich, if it can be said to have any front, is painted GEORGE'S \nSHOOTING GALLERY, &c.\n\nInto George's Shooting Gallery, &c., he goes; and in it there are \ngaslights (partly turned off now), and two whitened targets for \nrifle-shooting, and archery accommodation, and fencing appliances, \nand all necessaries for the British art of boxing.  None of these \nsports or exercises being pursued in George's Shooting Gallery to-\nnight, which is so devoid of company that a little grotesque man \nwith a large head has it all to himself and lies asleep upon the \nfloor.\n\nThe little man is dressed something like a gunsmith, in a green-\nbaize apron and cap; and his face and hands are dirty with \ngunpowder and begrimed with the loading of guns.  As he lies in the \nlight before a glaring white target, the black upon him shines \nagain.  Not far off is the strong, rough, primitive table with a \nvice upon it at which he has been working.  He is a little man with \na face all crushed together, who appears, from a certain blue and \nspeckled appearance that one of his cheeks presents, to have been \nblown up, in the way of business, at some odd time or times.\n\n\"Phil!\" says the trooper in a quiet voice.\n\n\"All right!\" cries Phil, scrambling to his feet.\n\n\"Anything been doing?\"\n\n\"Flat as ever so much swipes,\" says Phil.  \"Five dozen rifle and a \ndozen pistol.  As to aim!\"  Phil gives a howl at the recollection.\n\n\"Shut up shop, Phil!\"\n\nAs Phil moves about to execute this order, it appears that he is \nlame, though able to move very quickly.  On the speckled side of \nhis face he has no eyebrow, and on the other side he has a bushy \nblack one, which want of uniformity gives him a very singular and \nrather sinister appearance.  Everything seems to have happened to \nhis hands that could possibly take place consistently with the \nretention of all the fingers, for they are notched, and seamed, and \ncrumpled all over.  He appears to be very strong and lifts heavy \nbenches about as if he had no idea what weight was.  He has a \ncurious way of limping round the gallery with his shoulder against \nthe wall and tacking off at objects he wants to lay hold of instead \nof going straight to them, which has left a smear all round the \nfour walls, conventionally called \"Phil's mark.\"\n\nThis custodian of George's Gallery in George's absence concludes \nhis proceedings, when he has locked the great doors and turned out \nall the lights but one, which he leaves to glimmer, by dragging out \nfrom a wooden cabin in a corner two mattresses and bedding.  These \nbeing drawn to opposite ends of the gallery, the trooper makes his \nown bed and Phil makes his.\n\n\"Phil!\" says the master, walking towards him without his coat and \nwaistcoat, and looking more soldierly than ever in his braces.  \n\"You were found in a doorway, weren't you?\"\n\n\"Gutter,\" says Phil.  \"Watchman tumbled over me.\"\n\n\"Then vagabondizing came natural to YOU from the beginning.\"\n\n\"As nat'ral as possible,\" says Phil.\n\n\"Good night!\"\n\n\"Good night, guv'ner.\"\n\nPhil cannot even go straight to bed, but finds it necessary to \nshoulder round two sides of the gallery and then tack off at his \nmattress.  The trooper, after taking a turn or two in the rifle-\ndistance and looking up at the moon now shining through the \nskylights, strides to his own mattress by a shorter route and goes \nto bed too.\n\n\n\nCHAPTER XXII\n\nMr. Bucket\n\n\nAllegory looks pretty cool in Lincoln's Inn Fields, though the \nevening is hot, for both Mr. Tulkinghorn's windows are wide open, \nand the room is lofty, gusty, and gloomy.  These may not be \ndesirable characteristics when November comes with fog and sleet or \nJanuary with ice and snow, but they have their merits in the sultry \nlong vacation weather.  They enable Allegory, though it has cheeks \nlike peaches, and knees like bunches of blossoms, and rosy \nswellings for calves to its legs and muscles to its arms, to look \ntolerably cool to-night.\n\nPlenty of dust comes in at Mr. Tulkinghorn's windows, and plenty \nmore has generated among his furniture and papers.  It lies thick \neverywhere.  When a breeze from the country that has lost its way \ntakes fright and makes a blind hurry to rush out again, it flings \nas much dust in the eyes of Allegory as the law-or Mr. Tulkinghorn, \none of its trustiest representatives--may scatter, on occasion, in \nthe eyes of the laity.\n\nIn his lowering magazine of dust, the universal article into which \nhis papers and himself, and all his clients, and all things of \nearth, animate and inanimate, are resolving, Mr. Tulkinghorn sits \nat one of the open windows enjoying a bottle of old port.  Though a \nhard-grained man, close, dry, and silent, he can enjoy old wine \nwith the best.  He has a priceless bin of port in some artful \ncellar under the Fields, which is one of his many secrets.  When he \ndines alone in chambers, as he has dined to-day, and has his bit of \nfish and his steak or chicken brought in from the coffee-house, he \ndescends with a candle to the echoing regions below the deserted \nmansion, and heralded by a remote reverberation of thundering \ndoors, comes gravely back encircled by an earthy atmosphere and \ncarrying a bottle from which he pours a radiant nectar, two score \nand ten years old, that blushes in the glass to find itself so \nfamous and fills the whole room with the fragrance of southern \ngrapes.\n\nMr. Tulkinghorn, sitting in the twilight by the open window, enjoys \nhis wine.  As if it whispered to him of its fifty years of silence \nand seclusion, it shuts him up the closer.  More impenetrable than \never, he sits, and drinks, and mellows as it were in secrecy, \npondering at that twilight hour on all the mysteries he knows, \nassociated with darkening woods in the country, and vast blank \nshut-up houses in town, and perhaps sparing a thought or two for \nhimself, and his family history, and his money, and his will--all a \nmystery to every one--and that one bachelor friend of his, a man of \nthe same mould and a lawyer too, who lived the same kind of life \nuntil he was seventy-five years old, and then suddenly conceiving \n(as it is supposed) an impression that it was too monotonous, gave \nhis gold watch to his hair-dresser one summer evening and walked \nleisurely home to the Temple and hanged himself.\n\nBut Mr. Tulkinghorn is not alone to-night to ponder at his usual \nlength.  Seated at the same table, though with his chair modestly \nand uncomfortably drawn a little way from it, sits a bald, mild, \nshining man who coughs respectfully behind his hand when the lawyer \nbids him fill his glass.\n\n\"Now, Snagsby,\" says Mr. Tulkinghorn, \"to go over this odd story \nagain.\"\n\n\"If you please, sir.\"\n\n\"You told me when you were so good as to step round here last \nnight--\"\n\n\"For which I must ask you to excuse me if it was a liberty, sir; \nbut I remember that you had taken a sort of an interest in that \nperson, and I thought it possible that you might--just--wish--to--\"\n\nMr. Tulkinghorn is not the man to help him to any conclusion or to \nadmit anything as to any possibility concerning himself.  So Mr. \nSnagsby trails off into saying, with an awkward cough, \"I must ask \nyou to excuse the liberty, sir, I am sure.\"\n\n\"Not at all,\" says Mr. Tulkinghorn.  \"You told me, Snagsby, that \nyou put on your hat and came round without mentioning your \nintention to your wife.  That was prudent I think, because it's not \na matter of such importance that it requires to be mentioned.\"\n\n\"Well, sir,\" returns Mr. Snagsby, \"you see, my little woman is--not \nto put too fine a point upon it--inquisitive.  She's inquisitive.  \nPoor little thing, she's liable to spasms, and it's good for her to \nhave her mind employed.  In consequence of which she employs it--I \nshould say upon every individual thing she can lay hold of, whether \nit concerns her or not--especially not.  My little woman has a very \nactive mind, sir.\"\n\nMr. Snagsby drinks and murmurs with an admiring cough behind his \nhand, \"Dear me, very fine wine indeed!\"\n\n\"Therefore you kept your visit to yourself last night?\" says Mr. \nTulkinghorn.  \"And to-night too?\"\n\n\"Yes, sir, and to-night, too.  My little woman is at present in--\nnot to put too fine a point on it--in a pious state, or in what she \nconsiders such, and attends the Evening Exertions (which is the \nname they go by) of a reverend party of the name of Chadband.  He \nhas a great deal of eloquence at his command, undoubtedly, but I am \nnot quite favourable to his style myself.  That's neither here nor \nthere.  My little woman being engaged in that way made it easier \nfor me to step round in a quiet manner.\"\n\nMr. Tulkinghorn assents.  \"Fill your glass, Snagsby.\"\n\n\"Thank you, sir, I am sure,\" returns the stationer with his cough \nof deference.  \"This is wonderfully fine wine, sir!\"\n\n\"It is a rare wine now,\" says Mr. Tulkinghorn.  \"It is fifty years \nold.\"\n\n\"Is it indeed, sir?  But I am not surprised to hear it, I am sure.  \nIt might be--any age almost.\"  After rendering this general tribute \nto the port, Mr. Snagsby in his modesty coughs an apology behind \nhis hand for drinking anything so precious.\n\n\"Will you run over, once again, what the boy said?\" asks Mr. \nTulkinghorn, putting his hands into the pockets of his rusty \nsmallclothes and leaning quietly back in his chair.\n\n\"With pleasure, sir.\"\n\nThen, with fidelity, though with some prolixity, the law-stationer \nrepeats Jo's statement made to the assembled guests at his house.  \nOn coming to the end of his narrative, he gives a great start and \nbreaks off with, \"Dear me, sir, I wasn't aware there was any other \ngentleman present!\"\n\nMr. Snagsby is dismayed to see, standing with an attentive face \nbetween himself and the lawyer at a little distance from the table, \na person with a hat and stick in his hand who was not there when he \nhimself came in and has not since entered by the door or by either \nof the windows.  There is a press in the room, but its hinges have \nnot creaked, nor has a step been audible upon the floor.  Yet this \nthird person stands there with his attentive face, and his hat and \nstick in his hands, and his hands behind him, a composed and quiet \nlistener.  He is a stoutly built, steady-looking, sharp-eyed man in \nblack, of about the middle-age.  Except that he looks at Mr. \nSnagsby as if he were going to take his portrait, there is nothing \nremarkable about him at first sight but his ghostly manner of \nappearing.\n\n\"Don't mind this gentleman,\" says Mr. Tulkinghorn in his quiet way.  \n\"This is only Mr. Bucket.\"\n\n\"Oh, indeed, sir?\" returns the stationer, expressing by a cough \nthat he is quite in the dark as to who Mr. Bucket may be.\n\n\"I wanted him to hear this story,\" says the lawyer, \"because I have \nhalf a mind (for a reason) to know more of it, and he is very \nintelligent in such things.  What do you say to this, Bucket?\"\n\n\"It's very plain, sir.  Since our people have moved this boy on, \nand he's not to be found on his old lay, if Mr. Snagsby don't \nobject to go down with me to Tom-all-Alone's and point him out, we \ncan have him here in less than a couple of hours' time.  I can do \nit without Mr. Snagsby, of course, but this is the shortest way.\"\n\n\"Mr. Bucket is a detective officer, Snagsby,\" says the lawyer in \nexplanation.\n\n\"Is he indeed, sir?\" says Mr. Snagsby with a strong tendency in his \nclump of hair to stand on end.\n\n\"And if you have no real objection to accompany Mr. Bucket to the \nplace in question,\" pursues the lawyer, \"I shall feel obliged to \nyou if you will do so.\"\n\nIn a moment's hesitation on the part of Mr. Snagsby, Bucket dips \ndown to the bottom of his mind.\n\n\"Don't you be afraid of hurting the boy,\" he says.  \"You won't do \nthat.  It's all right as far as the boy's concerned.  We shall only \nbring him here to ask him a question or so I want to put to him, \nand he'll be paid for his trouble and sent away again.  It'll be a \ngood job for him.  I promise you, as a man, that you shall see the \nboy sent away all right.  Don't you be afraid of hurting him; you \nan't going to do that.\"\n\n\"Very well, Mr. Tulkinghorn!\" cries Mr. Snagsby cheerfully.  And \nreassured, \"Since that's the case--\"\n\n\"Yes!  And lookee here, Mr. Snagsby,\" resumes Bucket, taking him \naside by the arm, tapping him familiarly on the breast, and \nspeaking in a confidential tone.  \"You're a man of the world, you \nknow, and a man of business, and a man of sense.  That's what YOU \nare.\"\n\n\"I am sure I am much obliged to you for your good opinion,\" returns \nthe stationer with his cough of modesty, \"but--\"\n\n\"That's what YOU are, you know,\" says Bucket.  \"Now, it an't \nnecessary to say to a man like you, engaged in your business, which \nis a business of trust and requires a person to be wide awake and \nhave his senses about him and his head screwed on tight (I had an \nuncle in your business once)--it an't necessary to say to a man \nlike you that it's the best and wisest way to keep little matters \nlike this quiet.  Don't you see?  Quiet!\"\n\n\"Certainly, certainly,\" returns the other.\n\n\"I don't mind telling YOU,\" says Bucket with an engaging appearance \nof frankness, \"that as far as I can understand it, there seems to \nbe a doubt whether this dead person wasn't entitled to a little \nproperty, and whether this female hasn't been up to some games \nrespecting that property, don't you see?\"\n\n\"Oh!\" says Mr. Snagsby, but not appearing to see quite distinctly.\n\n\"Now, what YOU want,\" pursues Bucket, again tapping Mr. Snagsby on \nthe breast in a comfortable and soothing manner, \"is that every \nperson should have their rights according to justice.  That's what \nYOU want.\"\n\n\"To be sure,\" returns Mr. Snagsby with a nod.\n\n\"On account of which, and at the same time to oblige a--do you call \nit, in your business, customer or client?  I forget how my uncle \nused to call it.\"\n\n\"Why, I generally say customer myself,\" replies Mr. Snagsby.\n\n\"You're right!\" returns Mr. Bucket, shaking hands with him quite \naffectionately.  \"--On account of which, and at the same time to \noblige a real good customer, you mean to go down with me, in \nconfidence, to Tom-all-Alone's and to keep the whole thing quiet \never afterwards and never mention it to any one.  That's about your \nintentions, if I understand you?\"\n\n\"You are right, sir.  You are right,\" says Mr. Snagsby.\n\n\"Then here's your hat,\" returns his new friend, quite as intimate \nwith it as if he had made it; \"and if you're ready, I am.\"\n\nThey leave Mr. Tulkinghorn, without a ruffle on the surface of his \nunfathomable depths, drinking his old wine, and go down into the \nstreets.\n\n\"You don't happen to know a very good sort of person of the name of \nGridley, do you?\" says Bucket in friendly converse as they descend \nthe stairs.\n\n\"No,\" says Mr. Snagsby, considering, \"I don't know anybody of that \nname.  Why?\"\n\n\"Nothing particular,\" says Bucket; \"only having allowed his temper \nto get a little the better of him and having been threatening some \nrespectable people, he is keeping out of the way of a warrant I \nhave got against him--which it's a pity that a man of sense should \ndo.\"\n\nAs they walk along, Mr. Snagsby observes, as a novelty, that \nhowever quick their pace may be, his companion still seems in some \nundefinable manner to lurk and lounge; also, that whenever he is \ngoing to turn to the right or left, he pretends to have a fixed \npurpose in his mind of going straight ahead, and wheels off, \nsharply, at the very last moment.  Now and then, when they pass a \npolice-constable on his beat, Mr. Snagsby notices that both the \nconstable and his guide fall into a deep abstraction as they come \ntowards each other, and appear entirely to overlook each other, and \nto gaze into space.  In a few instances, Mr. Bucket, coming behind \nsome under-sized young man with a shining hat on, and his sleek \nhair twisted into one flat curl on each side of his head, almost \nwithout glancing at him touches him with his stick, upon which the \nyoung man, looking round, instantly evaporates.  For the most part \nMr. Bucket notices things in general, with a face as unchanging as \nthe great mourning ring on his little finger or the brooch, \ncomposed of not much diamond and a good deal of setting, which he \nwears in his shirt.\n\nWhen they come at last to Tom-all-Alone's, Mr. Bucket stops for a \nmoment at the corner and takes a lighted bull's-eye from the \nconstable on duty there, who then accompanies him with his own \nparticular bull's-eye at his waist.  Between his two conductors, \nMr. Snagsby passes along the middle of a villainous street, \nundrained, unventilated, deep in black mud and corrupt water--\nthough the roads are dry elsewhere--and reeking with such smells \nand sights that he, who has lived in London all his life, can \nscarce believe his senses.  Branching from this street and its \nheaps of ruins are other streets and courts so infamous that Mr. \nSnagsby sickens in body and mind and feels as if he were going \nevery moment deeper down into the infernal gulf.\n\n\"Draw off a bit here, Mr. Snagsby,\" says Bucket as a kind of shabby \npalanquin is borne towards them, surrounded by a noisy crowd.  \n\"Here's the fever coming up the street!\"\n\nAs the unseen wretch goes by, the crowd, leaving that object of \nattraction, hovers round the three visitors like a dream of \nhorrible faces and fades away up alleys and into ruins and behind \nwalls, and with occasional cries and shrill whistles of warning, \nthenceforth flits about them until they leave the place.\n\n\"Are those the fever-houses, Darby?\"  Mr. Bucket coolly asks as he \nturns his bull's-eye on a line of stinking ruins.\n\nDarby replies that \"all them are,\" and further that in all, for \nmonths and months, the people \"have been down by dozens\" and have \nbeen carried out dead and dying \"like sheep with the rot.\"  Bucket \nobserving to Mr. Snagsby as they go on again that he looks a little \npoorly, Mr. Snagsby answers that he feels as if he couldn't breathe \nthe dreadful air.\n\nThere is inquiry made at various houses for a boy named Jo.  As few \npeople are known in Tom-all-Alone's by any Christian sign, there is \nmuch reference to Mr. Snagsby whether he means Carrots, or the \nColonel, or Gallows, or Young Chisel, or Terrier Tip, or Lanky, or \nthe Brick.  Mr. Snagsby describes over and over again.  There are \nconflicting opinions respecting the original of his picture.  Some \nthink it must be Carrots, some say the Brick.  The Colonel is \nproduced, but is not at all near the thing.  Whenever Mr. Snagsby \nand his conductors are stationary, the crowd flows round, and from \nits squalid depths obsequious advice heaves up to Mr. Bucket.  \nWhenever they move, and the angry bull's-eyes glare, it fades away \nand flits about them up the alleys, and in the ruins, and behind \nthe walls, as before.\n\nAt last there is a lair found out where Toughy, or the Tough \nSubject, lays him down at night; and it is thought that the Tough \nSubject may be Jo.  Comparison of notes between Mr. Snagsby and the \nproprietress of the house--a drunken face tied up in a black \nbundle, and flaring out of a heap of rags on the floor of a dog-\nhutch which is her private apartment--leads to the establishment of \nthis conclusion.  Toughy has gone to the doctor's to get a bottle \nof stuff for a sick woman but will be here anon.\n\n\"And who have we got here to-night?\" says Mr. Bucket, opening \nanother door and glaring in with his bull's-eye.  \"Two drunken men, \neh?  And two women?  The men are sound enough,\" turning back each \nsleeper's arm from his face to look at him.  \"Are these your good \nmen, my dears?\"\n\n\"Yes, sir,\" returns one of the women.  \"They are our husbands.\"\n\n\"Brickmakers, eh?\"\n\n\"Yes, sir.\"\n\n\"What are you doing here?  You don't belong to London.\"\n\n\"No, sir.  We belong to Hertfordshire.\"\n\n\"Whereabouts in Hertfordshire?\"\n\n\"Saint Albans.\"\n\n\"Come up on the tramp?\"\n\n\"We walked up yesterday.  There's no work down with us at present, \nbut we have done no good by coming here, and shall do none, I \nexpect.\"\n\n\"That's not the way to do much good,\" says Mr. Bucket, turning his \nhead in the direction of the unconscious figures on the ground.\n\n\"It an't indeed,\" replies the woman with a sigh.  \"Jenny and me \nknows it full well.\"\n\nThe room, though two or three feet higher than the door, is so low \nthat the head of the tallest of the visitors would touch the \nblackened ceiling if he stood upright.  It is offensive to every \nsense; even the gross candle burns pale and sickly in the polluted \nair.  There are a couple of benches and a higher bench by way of \ntable.  The men lie asleep where they stumbled down, but the women \nsit by the candle.  Lying in the arms of the woman who has spoken \nis a very young child.\n\n\"Why, what age do you call that little creature?\" says Bucket.  \"It \nlooks as if it was born yesterday.\"  He is not at all rough about \nit; and as he turns his light gently on the infant, Mr. Snagsby is \nstrangely reminded of another infant, encircled with light, that he \nhas seen in pictures.\n\n\"He is not three weeks old yet, sir,\" says the woman.\n\n\"Is he your child?\"\n\n\"Mine.\"\n\nThe other woman, who was bending over it when they came in, stoops \ndown again and kisses it as it lies asleep.\n\n\"You seem as fond of it as if you were the mother yourself,\" says \nMr. Bucket.\n\n\"I was the mother of one like it, master, and it died.\"\n\n\"Ah, Jenny, Jenny!\" says the other woman to her.  \"Better so.  Much \nbetter to think of dead than alive, Jenny!  Much better!\"\n\n\"Why, you an't such an unnatural woman, I hope,\" returns Bucket \nsternly, \"as to wish your own child dead?\"\n\n\"God knows you are right, master,\" she returns.  \"I am not.  I'd \nstand between it and death with my own life if I could, as true as \nany pretty lady.\"\n\n\"Then don't talk in that wrong manner,\" says Mr. Bucket, mollified \nagain.  \"Why do you do it?\"\n\n\"It's brought into my head, master,\" returns the woman, her eyes \nfilling with tears, \"when I look down at the child lying so.  If it \nwas never to wake no more, you'd think me mad, I should take on so.  \nI know that very well.  I was with Jenny when she lost hers--warn't \nI, Jenny?--and I know how she grieved.  But look around you at this \nplace.  Look at them,\" glancing at the sleepers on the ground.  \n\"Look at the boy you're waiting for, who's gone out to do me a good \nturn.  Think of the children that your business lays with often and \noften, and that YOU see grow up!\"\n\n\"Well, well,\" says Mr. Bucket, \"you train him respectable, and \nhe'll be a comfort to you, and look after you in your old age, you \nknow.\"\n\n\"I mean to try hard,\" she answers, wiping her eyes.  \"But I have \nbeen a-thinking, being over-tired to-night and not well with the \nague, of all the many things that'll come in his way.  My master \nwill be against it, and he'll be beat, and see me beat, and made to \nfear his home, and perhaps to stray wild.  If I work for him ever \nso much, and ever so hard, there's no one to help me; and if he \nshould be turned bad 'spite of all I could do, and the time should \ncome when I should sit by him in his sleep, made hard and changed, \nan't it likely I should think of him as he lies in my lap now and \nwish he had died as Jenny's child died!\"\n\n\"There, there!\" says Jenny.  \"Liz, you're tired and ill.  Let me \ntake him.\"\n\nIn doing so, she displaces the mother's dress, but quickly \nreadjusts it over the wounded and bruised bosom where the baby has \nbeen lying.\n\n\"It's my dead child,\" says Jenny, walking up and down as she \nnurses, \"that makes me love this child so dear, and it's my dead \nchild that makes her love it so dear too, as even to think of its \nbeing taken away from her now.  While she thinks that, I think what \nfortune would I give to have my darling back.  But we mean the same \nthing, if we knew how to say it, us two mothers does in our poor \nhearts!\"\n\nAs Mr. Snagsby blows his nose and coughs his cough of sympathy, a \nstep is heard without.  Mr. Bucket throws his light into the \ndoorway and says to Mr. Snagsby, \"Now, what do you say to Toughy?  \nWill HE do?\"\n\n\"That's Jo,\" says Mr. Snagsby.\n\nJo stands amazed in the disk of light, like a ragged figure in a \nmagic-lantern, trembling to think that he has offended against the \nlaw in not having moved on far enough.  Mr. Snagsby, however, \ngiving him the consolatory assurance, \"It's only a job you will be \npaid for, Jo,\" he recovers; and on being taken outside by Mr. \nBucket for a little private confabulation, tells his tale \nsatisfactorily, though out of breath.\n\n\"I have squared it with the lad,\" says Mr. Bucket, returning, \"and \nit's all right.  Now, Mr. Snagsby, we're ready for you.\"\n\nFirst, Jo has to complete his errand of good nature by handing over \nthe physic he has been to get, which he delivers with the laconic \nverbal direction that \"it's to be all took d'rectly.\"  Secondly, \nMr. Snagsby has to lay upon the table half a crown, his usual \npanacea for an immense variety of afflictions.  Thirdly, Mr. Bucket \nhas to take Jo by the arm a little above the elbow and walk him on \nbefore him, without which observance neither the Tough Subject nor \nany other Subject could be professionally conducted to Lincoln's \nInn Fields.  These arrangements completed, they give the women good \nnight and come out once more into black and foul Tom-all-Alone's.\n\nBy the noisome ways through which they descended into that pit, \nthey gradually emerge from it, the crowd flitting, and whistling, \nand skulking about them until they come to the verge, where \nrestoration of the bull's-eyes is made to Darby.  Here the crowd, \nlike a concourse of imprisoned demons, turns back, yelling, and is \nseen no more.  Through the clearer and fresher streets, never so \nclear and fresh to Mr. Snagsby's mind as now, they walk and ride \nuntil they come to Mr. Tulkinghorn's gate.\n\nAs they ascend the dim stairs (Mr. Tulkinghorn's chambers being on \nthe first floor), Mr. Bucket mentions that he has the key of the \nouter door in his pocket and that there is no need to ring.  For a \nman so expert in most things of that kind, Bucket takes time to \nopen the door and makes some noise too.  It may be that he sounds a \nnote of preparation.\n\nHowbeit, they come at last into the hall, where a lamp is burning, \nand so into Mr. Tulkinghorn's usual room--the room where he drank \nhis old wine to-night.  He is not there, but his two old-fashioned \ncandlesticks are, and the room is tolerably light.\n\nMr. Bucket, still having his professional hold of Jo and appearing \nto Mr. Snagsby to possess an unlimited number of eyes, makes a \nlittle way into this room, when Jo starts and stops.\n\n\"What's the matter?\" says Bucket in a whisper.\n\n\"There she is!\" cries Jo.\n\n\"Who!\"\n\n\"The lady!\"\n\nA female figure, closely veiled, stands in the middle of the room, \nwhere the light falls upon it.  It is quite still and silent.  The \nfront of the figure is towards them, but it takes no notice of \ntheir entrance and remains like a statue.\n\n\"Now, tell me,\" says Bucket aloud, \"how you know that to be the \nlady.\"\n\n\"I know the wale,\" replies Jo, staring, \"and the bonnet, and the \ngownd.\"\n\n\"Be quite sure of what you say, Tough,\" returns Bucket, narrowly \nobservant of him.  \"Look again.\"\n\n\"I am a-looking as hard as ever I can look,\" says Jo with starting \neyes, \"and that there's the wale, the bonnet, and the gownd.\"\n\n\"What about those rings you told me of?\" asks Bucket.\n\n\"A-sparkling all over here,\" says Jo, rubbing the fingers of his \nleft hand on the knuckles of his right without taking his eyes from \nthe figure.\n\nThe figure removes the right-hand glove and shows the hand.\n\n\"Now, what do you say to that?\" asks Bucket.\n\nJo shakes his head.  \"Not rings a bit like them.  Not a hand like \nthat.\"\n\n\"What are you talking of?\" says Bucket, evidently pleased though, \nand well pleased too.\n\n\"Hand was a deal whiter, a deal delicater, and a deal smaller,\" \nreturns Jo.\n\n\"Why, you'll tell me I'm my own mother next,\" says Mr. Bucket.  \"Do \nyou recollect the lady's voice?\"\n\n\"I think I does,\" says Jo.\n\nThe figure speaks.  \"Was it at all like this?  I will speak as long \nas you like if you are not sure.  Was it this voice, or at all like \nthis voice?\"\n\nJo looks aghast at Mr. Bucket.  \"Not a bit!\"\n\n\"Then, what,\" retorts that worthy, pointing to the figure, \"did you \nsay it was the lady for?\"\n\n\"Cos,\" says Jo with a perplexed stare but without being at all \nshaken in his certainty, \"cos that there's the wale, the bonnet, \nand the gownd.  It is her and it an't her.  It an't her hand, nor \nyet her rings, nor yet her woice.  But that there's the wale, the \nbonnet, and the gownd, and they're wore the same way wot she wore \n'em, and it's her height wot she wos, and she giv me a sov'ring and \nhooked it.\"\n\n\"Well!\" says Mr. Bucket slightly, \"we haven't got much good out of \nYOU.  But, however, here's five shillings for you.  Take care how \nyou spend it, and don't get yourself into trouble.\"  Bucket \nstealthily tells the coins from one hand into the other like \ncounters--which is a way he has, his principal use of them being in \nthese games of skill--and then puts them, in a little pile, into \nthe boy's hand and takes him out to the door, leaving Mr. Snagsby, \nnot by any means comfortable under these mysterious circumstances, \nalone with the veiled figure.  But on Mr. Tulkinghorn's coming into \nthe room, the veil is raised and a sufficiently good-looking \nFrenchwoman is revealed, though her expression is something of the \nintensest.\n\n\"Thank you, Mademoiselle Hortense,\" says Mr. Tulkinghorn with his \nusual equanimity.  \"I will give you no further trouble about this \nlittle wager.\"\n\n\"You will do me the kindness to remember, sir, that I am not at \npresent placed?\" says mademoiselle.\n\n\"Certainly, certainly!\"\n\n\"And to confer upon me the favour of your distinguished \nrecommendation?\"\n\n\"By all means, Mademoiselle Hortense.\"\n\n\"A word from Mr. Tulkinghorn is so powerful.\"\n\n\"It shall not be wanting, mademoiselle.\"\n\n\"Receive the assurance of my devoted gratitude, dear sir.\"\n\n\"Good night.\"\n\nMademoiselle goes out with an air of native gentility; and Mr. \nBucket, to whom it is, on an emergency, as natural to be groom of \nthe ceremonies as it is to be anything else, shows her downstairs, \nnot without gallantry.\n\n\"Well, Bucket?\" quoth Mr. Tulkinghorn on his return.\n\n\"It's all squared, you see, as I squared it myself, sir.  There \nan't a doubt that it was the other one with this one's dress on.  \nThe boy was exact respecting colours and everything.  Mr. Snagsby, \nI promised you as a man that he should be sent away all right.  \nDon't say it wasn't done!\"\n\n\"You have kept your word, sir,\" returns the stationer; \"and if I \ncan be of no further use, Mr. Tulkinghorn, I think, as my little \nwoman will be getting anxious--\"\n\n\"Thank you, Snagsby, no further use,\" says Mr. Tulkinghorn.  \"I am \nquite indebted to you for the trouble you have taken already.\"\n\n\"Not at all, sir.  I wish you good night.\"\n\n\"You see, Mr. Snagsby,\" says Mr. Bucket, accompanying him to the \ndoor and shaking hands with him over and over again, \"what I like \nin you is that you're a man it's of no use pumping; that's what YOU \nare.  When you know you have done a right thing, you put it away, \nand it's done with and gone, and there's an end of it.  That's what \nYOU do.\"\n\n\"That is certainly what I endeavour to do, sir,\" returns Mr. \nSnagsby.\n\n\"No, you don't do yourself justice.  It an't what you endeavour to \ndo,\" says Mr. Bucket, shaking hands with him and blessing him in \nthe tenderest manner, \"it's what you DO.  That's what I estimate in \na man in your way of business.\"\n\nMr. Snagsby makes a suitable response and goes homeward so confused \nby the events of the evening that he is doubtful of his being awake \nand out--doubtful of the reality of the streets through which he \ngoes--doubtful of the reality of the moon that shines above him.  \nHe is presently reassured on these subjects by the unchallengeable \nreality of Mrs. Snagsby, sitting up with her head in a perfect \nbeehive of curl-papers and night-cap, who has dispatched Guster to \nthe police-station with official intelligence of her husband's \nbeing made away with, and who within the last two hours has passed \nthrough every stage of swooning with the greatest decorum.  But as \nthe little woman feelingly says, many thanks she gets for it!\n\n\n\nCHAPTER XXIII\n\nEsther's Narrative\n\n\nWe came home from Mr. Boythorn's after six pleasant weeks.  We were \noften in the park and in the woods and seldom passed the lodge \nwhere we had taken shelter without looking in to speak to the \nkeeper's wife; but we saw no more of Lady Dedlock, except at church \non Sundays.  There was company at Chesney Wold; and although \nseveral beautiful faces surrounded her, her face retained the same \ninfluence on me as at first.  I do not quite know even now whether \nit was painful or pleasurable, whether it drew me towards her or \nmade me shrink from her.  I think I admired her with a kind of \nfear, and I know that in her presence my thoughts always wandered \nback, as they had done at first, to that old time of my life.\n\nI had a fancy, on more than one of these Sundays, that what this \nlady so curiously was to me, I was to her--I mean that I disturbed \nher thoughts as she influenced mine, though in some different way.  \nBut when I stole a glance at her and saw her so composed and \ndistant and unapproachable, I felt this to be a foolish weakness.  \nIndeed, I felt the whole state of my mind in reference to her to be \nweak and unreasonable, and I remonstrated with myself about it as \nmuch as I could.\n\nOne incident that occurred before we quitted Mr. Boythorn's house, \nI had better mention in this place.\n\nI was walking in the garden with Ada and when I was told that some \none wished to see me.  Going into the breakfast-room where this \nperson was waiting, I found it to be the French maid who had cast \noff her shoes and walked through the wet grass on the day when it \nthundered and lightened.\n\n\"Mademoiselle,\" she began, looking fixedly at me with her too-eager \neyes, though otherwise presenting an agreeable appearance and \nspeaking neither with boldness nor servility, \"I have taken a great \nliberty in coming here, but you know how to excuse it, being so \namiable, mademoiselle.\"\n\n\"No excuse is necessary,\" I returned, \"if you wish to speak to me.\"\n\n\"That is my desire, mademoiselle.  A thousand thanks for the \npermission.  I have your leave to speak.  Is it not?\" she said in a \nquick, natural way.\n\n\"Certainly,\" said I.\n\n\"Mademoiselle, you are so amiable!  Listen then, if you please.  I \nhave left my Lady.  We could not agree.  My Lady is so high, so \nvery high.  Pardon!  Mademoiselle, you are right!\"  Her quickness \nanticipated what I might have said presently but as yet had only \nthought.  \"It is not for me to come here to complain of my Lady.  \nBut I say she is so high, so very high.  I will not say a word \nmore.  All the world knows that.\"\n\n\"Go on, if you please,\" said I.\n\n\"Assuredly; mademoiselle, I am thankful for your politeness.  \nMademoiselle, I have an inexpressible desire to find service with a \nyoung lady who is good, accomplished, beautiful.  You are good, \naccomplished, and beautiful as an angel.  Ah, could I have the \nhonour of being your domestic!\"\n\n\"I am sorry--\" I began.\n\n\"Do not dismiss me so soon, mademoiselle!\" she said with an \ninvoluntary contraction of her fine black eyebrows.  \"Let me hope a \nmoment!  Mademoiselle, I know this service would be more retired \nthan that which I have quitted.  Well! I wish that.  I know this \nservice would be less distinguished than that which I have quitted.  \nWell! I wish that, I know that I should win less, as to wages here.  \nGood.  I am content.\"\n\n\"I assure you,\" said I, quite embarrassed by the mere idea of \nhaving such an attendant, \"that I keep no maid--\"\n\n\"Ah, mademoiselle, but why not?  Why not, when you can have one so \ndevoted to you!  Who would be enchanted to serve you; who would be \nso true, so zealous, and so faithful every day!  Mademoiselle, I \nwish with all my heart to serve you.  Do not speak of money at \npresent.  Take me as I am.  For nothing!\"\n\nShe was so singularly earnest that I drew back, almost afraid of \nher.  Without appearing to notice it, in her ardour she still \npressed herself upon me, speaking in a rapid subdued voice, though \nalways with a certain grace and propriety.\n\n\"Mademoiselle, I come from the South country where we are quick and \nwhere we like and dislike very strong.  My Lady was too high for \nme; I was too high for her.  It is done--past--finlshed!  Receive \nme as your domestic, and I will serve you well.  I will do more for \nyou than you figure to yourself now.  Chut!  Mademoiselle, I will--\nno matter, I will do my utmost possible in all things.  If you \naccept my service, you will not repent it.  Mademoiselle, you will \nnot repent it, and I will serve you well.  You don't know how \nwell!\"\n\nThere was a lowering energy in her face as she stood looking at me \nwhile I explained the impossibility of my engagmg her (without \nthinking it necessary to say how very little I desired to do so), \nwhich seemed to bring visibly before me some woman from the streets \nof Paris in the reign of terror.\n\nShe heard me out without interruption and then said with her pretty \naccent and in her mildest voice, \"Hey, mademoiselle, I have \nreceived my answer!  I am sorry of it.  But I must go elsewhere and \nseek what I have not found here.  Will you graciously let me kiss \nyour hand?\"\n\nShe looked at me more intently as she took it, and seemed to take \nnote, with her momentary touch, of every vein in it.  \"I fear I \nsurprised you, mademoiselle, on the day of the storm?\" she said \nwith a parting curtsy.\n\nI confessed that she had surprised us all.\n\n\"I took an oath, mademoiselle,\" she said, smiling, \"and I wanted to \nstamp it on my mind so that I might keep it faithfully.  And I \nwill!  Adieu, mademoiselle!\"\n\nSo ended our conference, which I was very glad to bring to a close.  \nI supposed she went away from the village, for I saw her no more; \nand nothing else occurred to disturb our tranquil summer pleasures \nuntil six weeks were out and we returned home as I began just now \nby saying.\n\nAt that time, and for a good many weeks after that time, Richard \nwas constant in his visits.  Besides coming every Saturday or \nSunday and remaining with us until Monday morning, he sometimes \nrode out on horseback unexpectedly and passed the evening with us \nand rode back again early next day.  He was as vivacious as ever \nand told us he was very industrious, but I was not easy in my mind \nabout him.  It appeared to me that his industry was all \nmisdirected.  I could not find that it led to anything but the \nformation of delusive hopes in connexion with the suit already the \npernicious cause of so much sorrow and ruin.  He had got at the \ncore of that mystery now, he told us, and nothing could be plainer \nthan that the will under which he and Ada were to take I don't know \nhow many thousands of pounds must be finally established if there \nwere any sense or justice in the Court of Chancery--but oh, what a \ngreat IF that sounded in my ears--and that this happy conclusion \ncould not be much longer delayed.  He proved this to himself by all \nthe weary arguments on that side he had read, and every one of them \nsunk him deeper in the infatuation.  He had even begun to haunt the \ncourt.  He told us how he saw Miss Flite there daily, how they \ntalked together, and how he did her little kindnesses, and how, \nwhile he laughed at her, he pitied her from his heart.  But he \nnever thought--never, my poor, dear, sanguine Richard, capable of \nso much happiness then, and with such better things before him--\nwhat a fatal link was riveting between his fresh youth and her \nfaded age, between his free hopes and her caged birds, and her \nhungry garret, and her wandering mind.\n\nAda loved him too well to mistrust him much in anything he said or \ndid, and my guardian, though he frequently complained of the east \nwind and read more than usual in the growlery, preserved a strict \nsilence on the subject.  So I thought one day when I went to London \nto meet Caddy Jellyby, at her solicitation, I would ask Richard to \nbe in waiting for me at the coach-office, that we might have a \nlittle talk together.  I found him there when I arrived, and we \nwalked away arm in arm.\n\n\"Well, Richard,\" said I as soon as I could begin to be grave with \nhim, \"are you beginning to feel more settled now?\"\n\n\"Oh, yes, my dear!\" returned Richard.  \"I'm all right enough.\"\n\n\"But settled?\" said I.\n\n\"How do you mean, settled?\" returned Richard with his gay laugh.\n\n\"Settled in the law,\" said I.\n\n\"Oh, aye,\" replied Richard, \"I'm all right enough.\"\n\n\"You said that before, my dear Richard.\"\n\n\"And you don't think it's an answer, eh?  Well! Perhaps it's not.  \nSettled?  You mean, do I feel as if I were settling down?\"\n\n\"Yes.\"\n\n\"Why, no, I can't say I am settling down,\" said Richard, strongly \nemphasizing \"down,\" as if that expressed the difficulty, \"because \none can't settle down while this business remains in such an \nunsettled state.  When I say this business, of course I mean the--\nforbidden subject.\"\n\n\"Do you think it will ever be in a settled state?\" said I.\n\n\"Not the least doubt of it,\" answered Richard.\n\nWe walked a little way without speaking, and presently Richard \naddressed me in his frankest and most feeling manner, thus: \"My \ndear Esther, I understand you, and I wish to heaven I were a more \nconstant sort of fellow.  I don't mean constant to Ada, for I love \nher dearly--better and better every day--but constant to myself.  \n(Somehow, I mean something that I can't very well express, but \nyou'll make it out.)  If I were a more constant sort of fellow, I \nshould have held on either to Badger or to Kenge and Carboy like \ngrim death, and should have begun to be steady and systematic by \nthis time, and shouldn't be in debt, and--\"\n\n\"ARE you in debt, Richard?\"\n\n\"Yes,\" said Richard, \"I am a little so, my dear.  Also, I have \ntaken rather too much to billiards and that sort of thing.  Now the \nmurder's out; you despise me, Esther, don't you?\"\n\n\"You know I don't,\" said I.\n\n\"You are kinder to me than I often am to myself,\" he returned.  \"My \ndear Esther, I am a very unfortunate dog not to be more settled, \nbut how CAN I be more settled?  If you lived in an unfinished \nhouse, you couldn't settle down in it; if you were condemned to \nleave everything you undertook unfinished, you would find it hard \nto apply yourself to anything; and yet that's my unhappy case.  I \nwas born into this unfinished contention with all its chances and \nchanges, and it began to unsettle me before I quite knew the \ndifference between a suit at law and a suit of clothes; and it has \ngone on unsettling me ever since; and here I am now, conscious \nsometimes that I am but a worthless fellow to love my confiding \ncousin Ada.\"\n\nWe were in a solitary place, and he put his hands before his eyes \nand sobbed as he said the words.\n\n\"Oh, Richard!\" said I.  \"Do not be so moved.  You have a noble \nnature, and Ada's love may make you worthier every day.\"\n\n\"I know, my dear,\" he replied, pressing my arm, \"I know all that.  \nYou mustn't mind my being a little soft now, for I have had all \nthis upon my mind for a long time, and have often meant to speak to \nyou, and have sometimes wanted opportunity and sometimes courage.  \nI know what the thought of Ada ought to do for me, but it doesn't \ndo it.  I am too unsettled even for that.  I love her most \ndevotedly, and yet I do her wrong, in doing myself wrong, every day \nand hour.  But it can't last for ever.  We shall come on for a \nfinal hearing and get judgment in our favour, and then you and Ada \nshall see what I can really be!\"\n\nIt had given me a pang to hear him sob and see the tears start out \nbetween his fingers, but that was infinitely less affecting to me \nthan the hopeful animation with which he said these words.\n\n\"I have looked well into the papers, Esther.  I have been deep in \nthem for months,\" he continued, recovering his cheerfulness in a \nmoment, \"and you may rely upon it that we shall come out \ntriumphant.  As to years of delay, there has been no want of them, \nheaven knows!  And there is the greater probability of our bringing \nthe matter to a speedy close; in fact, it's on the paper now.  It \nwill be all right at last, and then you shall see!\"\n\nRecalling how he had just now placed Messrs. Kenge and Carboy in \nthe same category with Mr. Badger, I asked him when he intended to \nbe articled in Lincoln's Inn.\n\n\"There again!  I think not at all, Esther,\" he returned with an \neffort.  \"I fancy I have had enough of it.  Having worked at \nJarndyce and Jarndyce like a galley slave, I have slaked my thirst \nfor the law and satisfied myself that I shouldn't like it.  \nBesides, I find it unsettles me more and more to be so constantly \nupon the scene of action.  So what,\" continued Richard, confident \nagain by this time, \"do I naturally turn my thoughts to?\"\n\n\"I can't imagine,\" said I.\n\n\"Don't look so serious,\" returned Richard, \"because it's the best \nthing I can do, my dear Esther, I am certain.  It's not as if I \nwanted a profession for life.  These proceedings will come to a \ntermination, and then I am provided for.  No.  I look upon it as a \npursuit which is in its nature more or less unsettled, and \ntherefore suited to my temporary condition--I may say, precisely \nsuited.  What is it that I naturally turn my thoughts to?\"\n\nI looked at him and shook my head.\n\n\"What,\" said Richard, in a tone of perfect conviction, \"but the \narmy!\"\n\n\"The army?\" said I.\n\n\"The army, of course.  What I have to do is to get a commission; \nand--there I am, you know!\" said Richard.\n\nAnd then he showed me, proved by elaborate calculations in his \npocket-book, that supposing he had contracted, say, two hundred \npounds of debt in six months out of the army; and that he \ncontracted no debt at all within a corresponding period in the \narmy--as to which he had quite made up his mind; this step must \ninvolve a saving of four hundred pounds in a year, or two thousand \npounds in five years, which was a considerable sum.  And then he \nspoke so ingenuously and sincerely of the sacrifice he made in \nwithdrawing himself for a time from Ada, and of the earnestness \nwith which he aspired--as in thought he always did, I know full \nwell--to repay her love, and to ensure her happiness, and to \nconquer what was amiss in himself, and to acquire the very soul of \ndecision, that he made my heart ache keenly, sorely.  For, I \nthought, how would this end, how could this end, when so soon and \nso surely all his manly qualities were touched by the fatal blight \nthat ruined everything it rested on!\n\nI spoke to Richard with all the earnestness I felt, and all the \nhope I could not quite feel then, and implored him for Ada's sake \nnot to put any trust in Chancery.  To all I said, Richard readily \nassented, riding over the court and everything else in his easy way \nand drawing the brightest pictures of the character he was to \nsettle into--alas, when the grievous suit should loose its hold \nupon him!  We had a long talk, but it always came back to that, in \nsubstance.\n\nAt last we came to Soho Square, where Caddy Jellyby had appointed \nto wait for me, as a quiet place in the neighbourhood of Newman \nStreet.  Caddy was in the garden in the centre and hurried out as \nsoon as I appeared.  After a few cheerful words, Richard left us \ntogether.\n\n\"Prince has a pupil over the way, Esther,\" said Caddy, \"and got the \nkey for us.  So if you will walk round and round here with me, we \ncan lock ourselves in and I can tell you comfortably what I wanted \nto see your dear good face about.\"\n\n\"Very well, my dear,\" said I.  \"Nothing could be better.\"  So \nCaddy, after affectionately squeezing the dear good face as she \ncalled it, locked the gate, and took my arm, and we began to walk \nround the garden very cosily.\n\n\"You see, Esther,\" said Caddy, who thoroughly enjoyed a little \nconfidence, \"after you spoke to me about its being wrong to marry \nwithout Ma's knowledge, or even to keep Ma long in the dark \nrespecting our engagement--though I don't believe Ma cares much for \nme, I must say--I thought it right to mention your opinions to \nPrince.  In the first place because I want to profit by everything \nyou tell me, and in the second place because I have no secrets from \nPrince.\"\n\n\"I hope he approved, Caddy?\"\n\n\"Oh, my dear!  I assure you he would approve of anything you could \nsay.  You have no idea what an opimon he has of you!\"\n\n\"Indeed!\"\n\n\"Esther, it's enough to make anybody but me jealous,\" said Caddy, \nlaughing and shaking her head; \"but it only makes me joyful, for \nyou are the first friend I ever had, and the best friend I ever can \nhave, and nobody can respect and love you too much to please me.\"\n\n\"Upon my word, Caddy,\" said I, \"you are in the general conspiracy \nto keep me in a good humour.  Well, my dear?\"\n\n\"Well! I am going to tell you,\" replied Caddy, crossing her hands \nconfidentially upon my arm.  \"So we talked a good deal about it, \nand so I said to Prince, 'Prince, as Miss Summerson--\"\n\n\"I hope you didn't say 'Miss Summerson'?\"\n\n\"No.  I didn't!\" cried Caddy, greatly pleased and with the \nbrightest of faces.  \"I said, 'Esther.'  I said to Prince, 'As \nEsther is decidedly of that opinion, Prince, and has expressed it \nto me, and always hints it when she writes those kind notes, which \nyou are so fond of hearing me read to you, I am prepared to \ndisclose the truth to Ma whenever you think proper.  And I think, \nPrince,' said I, 'that Esther thinks that I should be in a better, \nand truer, and more honourable position altogether if you did the \nsame to your papa.'\"\n\n\"Yes, my dear,\" said I.  \"Esther certainly does think so.\"\n\n\"So I was right, you see!\" exclaimed Caddy.  \"Well! This troubled \nPrince a good deal, not because he had the least doubt about it, \nbut because he is so considerate of the feelings of old Mr. \nTurveydrop; and he had his apprehensions that old Mr. Turveydrop \nmight break his heart, or faint away, or be very much overcome in \nsome affecting manner or other if he made such an announcement.  He \nfeared old Mr. Turveydrop might consider it undutiful and might \nreceive too great a shock.  For old Mr. Turveydrop's deportment is \nvery beautiful, you know, Esther,\" said Caddy, \"and his feelings \nare extremely sensitive.\"\n\n\"Are they, my dear?\"\n\n\"Oh, extremely sensitive.  Prince says so.  Now, this has caused my \ndarling child--I didn't mean to use the expression to you, Esther,\" \nCaddy apologized, her face suffused with blushes, \"but I generally \ncall Prince my darling child.\"\n\nI laughed; and Caddy laughed and blushed, and went on'\n\n\"This has caused him, Esther--\"\n\n\"Caused whom, my dear?\"\n\n\"Oh, you tiresome thing!\" said Caddy, laughing, with her pretty \nface on fire.  \"My darling child, if you insist upon it!  This has \ncaused him weeks of uneasiness and has made him delay, from day to \nday, in a very anxious manner.  At last he said to me, 'Caddy, if \nMiss Summerson, who is a great favourite with my father, could be \nprevailed upon to be present when I broke the subject, I think I \ncould do it.'  So I promised I would ask you.  And I made up my \nmind, besides,\" said Caddy, looking at me hopefully but timidly, \n\"that if you consented, I would ask you afterwards to come with me \nto Ma.  This is what I meant when I said in my note that I had a \ngreat favour and a great assistance to beg of you.  And if you \nthought you could grant it, Esther, we should both be very \ngrateful.\"\n\n\"Let me see, Caddy,\" said I, pretending to consider.  \"Really, I \nthink I could do a greater thing than that if the need were \npressing.  I am at your service and the darling child's, my dear, \nwhenever you like.\"\n\nCaddy was quite transported by this reply of mine, being, I \nbelieve, as susceptible to the least kindness or encouragement as \nany tender heart that ever beat in this world; and after another \nturn or two round the garden, during which she put on an entirely \nnew pair of gloves and made herself as resplendent as possible that \nshe might do no avoidable discredit to the Master of Deportment, we \nwent to Newman Street direct.\n\nPrince was teaching, of course.  We found him engaged with a not \nvery hopeful pupil--a stubborn little girl with a sulky forehead, a \ndeep voice, and an inanimate, dissatisfied mama--whose case was \ncertainly not rendered more hopeful by the confusion into which we \nthrew her preceptor.  The lesson at last came to an end, after \nproceeding as discordantly as possible; and when the little girl \nhad changed her shoes and had had her white muslin extinguished in \nshawls, she was taken away.  After a few words of preparation, we \nthen went in search of Mr. Turveydrop, whom we found, grouped with \nhis hat and gloves, as a model of deportment, on the sofa in his \nprivate apartment--the only comfortable room in the house.  He \nappeared to have dressed at his leisure in the intervals of a light \ncollation, and his dressing-case, brushes, and so forth, all of \nquite an elegant kind, lay about.\n\n\"Father, Miss Summerson; Miss Jellyby.\"\n\n\"Charmed!  Enchanted!\" said Mr. Turveydrop, rising with his high-\nshouldered bow.  \"Permit me!\"  Handing chairs.  \"Be seated!\"  \nKissing the tips of his left fingers.  \"Overjoyed!\"  Shutting his \neyes and rolling.  \"My little retreat is made a paradise.\"  \nRecomposing himself on the sofa like the second gentleman in \nEurope.\n\n\"Again you find us, Miss Summerson,\" said he, \"using our little \narts to polish, polish!  Again the sex stimulates us and rewards us \nby the condescension of its lovely presence.  It is much in these \ntimes (and we have made an awfully degenerating business of it \nsince the days of his Royal Highness the Prince Regent--my patron, \nif I may presume to say so) to experience that deportment is not \nwholly trodden under foot by mechanics.  That it can yet bask in \nthe smile of beauty, my dear madam.\"\n\nI said nothing, which I thought a suitable reply; and he took a \npinch of snuff.\n\n\"My dear son,\" said Mr. Turveydrop, \"you have four schools this \nafternoon.  I would recommend a hasty sandwich.\"\n\n\"Thank you, father,\" returned Prince, \"I will be sure to be \npunctual.  My dear father, may I beg you to prepare your mind for \nwhat I am going to say?\"\n\n\"Good heaven!\" exclaimed the model, pale and aghast as Prince and \nCaddy, hand in hand, bent down before him.  \"What is this?  Is this \nlunacy!  Or what is this?\"\n\n\"Father,\" returned Prince with great submission, \"I love this young \nlady, and we are engaged.\"\n\n\"Engaged!\" cried Mr. Turveydrop, reclining on the sofa and shutting \nout the sight with his hand.  \"An arrow launched at my brain by my \nown child!\"\n\n\"We have been engaged for some time, father,\" faltered Prince, \"and \nMiss Summerson, hearing of it, advised that we should declare the \nfact to you and was so very kind as to attend on the present \noccasion.  Miss Jellyby is a young lady who deeply respects you, \nfather.\"\n\nMr. Turveydrop uttered a groan.\n\n\"No, pray don't!  Pray don't, father,\" urged his son.  \"Miss \nJellyby is a young lady who deeply respects you, and our first \ndesire is to consider your comfort.\"\n\nMr. Turveydrop sobbed.\n\n\"No, pray don't, father!\" cried his son.\n\n\"Boy,\" said Mr. Turveydrop, \"it is well that your sainted mother is \nspared this pang.  Strike deep, and spare not.  Strike home, sir, \nstrike home!\"\n\n\"Pray don't say so, father,\" implored Prince, in tears.  \"It goes \nto my heart.  I do assure you, father, that our first wish and \nintention is to consider your comfort.  Caroline and I do not \nforget our duty--what is my duty is Caroline's, as we have often \nsaid together--and with your approval and consent, father, we will \ndevote ourselves to making your life agreeable.\"\n\n\"Strike home,\" murmured Mr. Turveydrop.  \"Strike home!\"  But he \nseemed to listen, I thought, too.\n\n\"My dear father,\" returned Prince, \"we well know what little \ncomforts you are accustomed to and have a right to, and it will \nalways be our study and our pride to provide those before anything.  \nIf you will bless us with your approval and consent, father, we \nshall not think of being married until it is quite agreeable to \nyou; and when we ARE married, we shall always make you--of course--\nour first consideration.  You must ever be the head and master \nhere, father; and we feel how truly unnatural it would be in us if \nwe failed to know it or if we failed to exert ourselves in every \npossible way to please you.\"\n\nMr. Turveydrop underwent a severe internal struggle and came \nupright on the sofa again with his cheeks puffing over his stiff \ncravat, a perfect model of parental deportment.\n\n\"My son!\" said Mr. Turveydrop.  \"My children!  I cannot resist your \nprayer.  Be happy!\"\n\nHis benignity as he raised his future daughter-in-law and stretched \nout his hand to his son (who kissed it with affectionate respect \nand gratitude) was the most confusing sight I ever saw.\n\n\"My children,\" said Mr. Turveydrop, paternally encircling Caddy \nwith his left arm as she sat beside him, and putting his right hand \ngracefully on his hip.  \"My son and daughter, your happiness shall \nbe my care.  I will watch over you.  You shall always live with \nme\"--meaning, of course, I will always live with you--\"this house \nis henceforth as much yours as mine; consider it your home.  May \nyou long live to share it with me!\"\n\nThe power of his deportment was such that they really were as much \novercome with thankfulness as if, instead of quartering himself \nupon them for the rest of his life, he were making some munificent \nsacrifice in their favour.\n\n\"For myself, my children,\" said Mr. Turveydrop, \"I am falling into \nthe sear and yellow leaf, and it is impossible to say how long the \nlast feeble traces of gentlemanly deportment may linger in this \nweaving and spinning age.  But, so long, I will do my duty to \nsociety and will show myself, as usual, about town.  My wants are \nfew and simple.  My little apartment here, my few essentials for \nthe toilet, my frugal morning meal, and my little dinner will \nsuffice.  I charge your dutiful affection with the supply of these \nrequirements, and I charge myself with all the rest.\"\n\nThey were overpowered afresh by his uncommon generosity.\n\n\"My son,\" said Mr. Turveydrop, \"for those little points in which \nyou are deficient--points of deportment, which are born with a man, \nwhich may be improved by cultivation, but can never be originated--\nyou may still rely on me.  I have been faithful to my post since \nthe days of his Royal Highness the Prince Regent, and I will not \ndesert it now.  No, my son.  If you have ever contemplated your \nfather's poor position with a feeling of pride, you may rest \nassured that he will do nothing to tarnish it.  For yourself, \nPrince, whose character is different (we cannot be all alike, nor \nis it advisable that we should), work, be industrious, earn money, \nand extend the connexion as much as possible.\"\n\n\"That you may depend I will do, dear father, with all my heart,\" \nreplied Prince.\n\n\"I have no doubt of it,\" said Mr. Turveydrop.  \"Your qualities are \nnot shining, my dear child, but they are steady and useful.  And to \nboth of you, my children, I would merely observe, in the spirit of \na sainted wooman on whose path I had the happiness of casting, I \nbelieve, SOME ray of light, take care of the establishment, take \ncare of my simple wants, and bless you both!\"\n\nOld Mr. Turveydrop then became so very gallant, in honour of the \noccasion, that I told Caddy we must really go to Thavies Inn at \nonce if we were to go at all that day.  So we took our departure \nafter a very loving farewell between Caddy and her betrothed, and \nduring our walk she was so happy and so full of old Mr. \nTurveydrop's praises that I would not have said a word in his \ndisparagement for any consideration.\n\nThe house in Thavies Inn had bills in the windows annoucing that it \nwas to let, and it looked dirtier and gloomier and ghastlier than \never.  The name of poor Mr. Jellyby had appeared in the list of \nbankrupts but a day or two before, and he was shut up in the \ndining-room with two gentlemen and a heap of blue bags, account-\nbooks, and papers, making the most desperate endeavours to \nunderstand his affairs.  They appeared to me to be quite beyond his \ncomprehension, for when Caddy took me into the dining-room by \nmistake and we came upon Mr. Jellyby in his spectacles, forlornly \nfenced into a corner by the great dining-table and the two \ngentlemen, he seemed to have given up the whole thing and to be \nspeechless and insensible.\n\nGoing upstairs to Mrs. Jellyby's room (the children were all \nscreaming in the kitchen, and there was no servant to be seen), we \nfound that lady in the midst of a voluminous correspondence, \nopening, reading, and sorting letters, with a great accumulation of \ntorn covers on the floor.  She was so preoccupied that at first she \ndid not know me, though she sat looking at me with that curious, \nbright-eyed, far-off look of hers.\n\n\"Ah! Miss Summerson!\" she said at last.  \"I was thinking of \nsomething so different!  I hope you are well.  I am happy to see \nyou.  Mr. Jarndyce and Miss Clare quite well?\"\n\nI hoped in return that Mr. Jellyby was quite well.\n\n\"Why, not quite, my dear,\" said Mrs. Jellyby in the calmest manner.  \n\"He has been unfortunate in his affairs and is a little out of \nspirits.  Happily for me, I am so much engaged that I have no time \nto think about it.  We have, at the present moment, one hundred and \nseventy families, Miss Summerson, averaging five persons in each, \neither gone or going to the left bank of the Niger.\"\n\nI thought of the one family so near us who were neither gone nor \ngoing to the left bank of the Niger, and wondered how she could be \nso placid.\n\n\"You have brought Caddy back, I see,\" observed Mrs. Jellyby with a \nglance at her daughter.  \"It has become quite a novelty to see her \nhere.  She has almost deserted her old employment and in fact \nobliges me to employ a boy.\"\n\n\"I am sure, Ma--\" began Caddy.\n\n\"Now you know, Caddy,\" her mother mildly interposed, \"that I DO \nemploy a boy, who is now at his dinner.  What is the use of your \ncontradicting?\"\n\n\"I was not going to contradict, Ma,\" returned Caddy.  \"I was only \ngoing to say that surely you wouldn't have me be a mere drudge all \nmy life.\"\n\n\"I believe, my dear,\" said Mrs. Jellyby, still opening her letters, \ncasting her bright eyes smilingly over them, and sorting them as \nshe spoke, \"that you have a business example before you in your \nmother.  Besides.  A mere drudge?  If you had any sympathy with the \ndestinies of the human race, it would raise you high above any such \nidea.  But you have none.  I have often told you, Caddy, you have \nno such sympathy.\"\n\n\"Not if it's Africa, Ma, I have not.\"\n\n\"Of course you have not.  Now, if I were not happily so much \nengaged, Miss Summerson,\" said Mrs. Jellyby, sweetly casting her \neyes for a moment on me and considering where to put the particular \nletter she had just opened, \"this would distress and disappoint me.  \nBut I have so much to think of, in connexion with Borrioboola-Gha \nand it is so necessary I should concentrate myself that there is my \nremedy, you see.\"\n\nAs Caddy gave me a glance of entreaty, and as Mrs. Jellyby was \nlooking far away into Africa straight through my bonnet and head, I \nthought it a good opportunity to come to the subject of my visit \nand to attract Mrs. Jellyby's attention.\n\n\"Perhaps,\" I began, \"you will wonder what has brought me here to \ninterrupt you.\"\n\n\"I am always delighted to see Miss Summerson,\" said Mrs. Jellyby, \npursuing her employment with a placid smile.  \"Though I wish,\" and \nshe shook her head, \"she was more interested in the Borrioboolan \nproject.\"\n\n\"I have come with Caddy,\" said I, \"because Caddy justly thinks she \nought not to have a secret from her mother and fancies I shall \nencourage and aid her (though I am sure I don't know how) in \nimparting one.\"\n\n\"Caddy,\" said Mrs. Jellyby, pausing for a moment in her occupation \nand then serenely pursuing it after shaking her head, \"you are \ngoing to tell me some nonsense.\"\n\nCaddy untied the strings of her bonnet, took her bonnet off, and \nletting it dangle on the floor by the strings, and crying heartily, \nsaid, \"Ma, I am engaged.\"\n\n\"Oh, you ridiculous child!\" observed Mrs. Jellyby with an \nabstracted air as she looked over the dispatch last opened; \"what a \ngoose you are!\"\n\n\"I am engaged, Ma,\" sobbed Caddy, \"to young Mr. Turveydrop, at the \nacademy; and old Mr. Turveydrop (who is a very gentlemanly man \nindeed) has given his consent, and I beg and pray you'll give us \nyours, Ma, because I never could be happy without it.  I never, \nnever could!\" sobbed Caddy, quite forgetful of her general \ncomplainings and of everything but her natural affection.\n\n\"You see again, Miss Summerson,\" observed Mrs. Jellyby serenely, \n\"what a happiness it is to be so much occupied as I am and to have \nthis necessity for self-concentration that I have.  Here is Caddy \nengaged to a dancing-master's son--mixed up with people who have no \nmore sympathy with the destinies of the human race than she has \nherself!  This, too, when Mr. Quale, one of the first \nphilanthropists of our time, has mentioned to me that he was really \ndisposed to be interested in her!\"\n\n\"Ma, I always hated and detested Mr. Quale!\" sobbed Caddy.\n\n\"Caddy, Caddy!\" returned Mrs. Jellyby, opening another letter with \nthe greatest complacency.  \"I have no doubt you did.  How could you \ndo otherwise, being totally destitute of the sympathies with which \nhe overflows!  Now, if my public duties were not a favourite child \nto me, if I were not occupied with large measures on a vast scale, \nthese petty details might grieve me very much, Miss Summerson.  But \ncan I permit the film of a silly proceeding on the part of Caddy \n(from whom I expect nothing else) to interpose between me and the \ngreat African continent?  No.  No,\" repeated Mrs. Jellyby in a calm \nclear voice, and with an agreeable smile, as she opened more \nletters and sorted them.  \"No, indeed.\"\n\nI was so unprepared for the perfect coolness of this reception, \nthough I might have expected it, that I did not know what to say.  \nCaddy seemed equally at a loss.  Mrs. Jellyby continued to open and \nsort letters and to repeat occasionally in quite a charming tone of \nvoice and with a smile of perfect composure, \"No, indeed.\"\n\n\"I hope, Ma,\" sobbed poor Caddy at last, \"you are not angry?\"\n\n\"Oh, Caddy, you really are an absurd girl,\" returned Mrs. Jellyby, \n\"to ask such questions after what I have said of the preoccupation \nof my mind.\"\n\n\"And I hope, Ma, you give us your consent and wish us well?\" said \nCaddy.\n\n\"You are a nonsensical child to have done anything of this kind,\" \nsaid Mrs. Jellyby; \"and a degenerate child, when you might have \ndevoted yourself to the great public measure.  But the step is \ntaken, and I have engaged a boy, and there is no more to be said.  \nNow, pray, Caddy,\" said Mrs. Jellyby, for Caddy was kissing her, \n\"don't delay me in my work, but let me clear off this heavy batch \nof papers before the afternoon post comes in!\"\n\nI thought I could not do better than take my leave; I was detained \nfor a moment by Caddy's saying, \"You won't object to my bringing \nhim to see you, Ma?\"\n\n\"Oh, dear me, Caddy,\" cried Mrs. Jellyby, who had relapsed into \nthat distant contemplation, \"have you begun again?  Bring whom?\"\n\n\"Him, Ma.\"\n\n\"Caddy, Caddy!\" said Mrs. Jellyby, quite weary of such little \nmatters.  \"Then you must bring him some evening which is not a \nParent Society night, or a Branch night, or a Ramification night.  \nYou must accommodate the visit to the demands upon my time.  My \ndear Miss Summerson, it was very kind of you to come here to help \nout this silly chit.  Good-bye!  When I tell you that I have fifty-\neight new letters from manufacturing families anxious to understand \nthe details of the native and coffee-cultivation question this \nmorning, I need not apologize for having very little leisure.\"\n\nI was not surprised by Caddy's being in low spirits when we went \ndownstairs, or by her sobbing afresh on my neck, or by her saying \nshe would far rather have been scolded than treated with such \nindifference, or by her confiding to me that she was so poor in \nclothes that how she was ever to be married creditably she didn't \nknow.  I gradually cheered her up by dwelling on the many things \nshe would do for her unfortunate father and for Peepy when she had \na home of her own; and finally we went downstairs into the damp \ndark kitchen, where Peepy and his little brothers and sisters were \ngrovelling on the stone floor and where we had such a game of play \nwith them that to prevent myself from being quite torn to pieces I \nwas obliged to fall back on my fairy-tales.  From time to time I \nheard loud voices in the parlour overhead, and occasionally a \nviolent tumbling about of the furniture.  The last effect I am \nafraid was caused by poor Mr. Jellyby's breaking away from the \ndining-table and making rushes at the window with the intention of \nthrowing himself into the area whenever he made any new attempt to \nunderstand his affairs.\n\nAs I rode quietly home at night after the day's bustle, I thought a \ngood deal of Caddy's engagement and felt confirmed in my hopes (in \nspite of the elder Mr. Turveydrop) that she would be the happier \nand better for it.  And if there seemed to be but a slender chance \nof her and her husband ever finding out what the model of \ndeportment really was, why that was all for the best too, and who \nwould wish them to be wiser?  I did not wish them to be any wiser \nand indeed was half ashamed of not entirely believing in him \nmyself.  And I looked up at the stars, and thought about travellers \nin distant countries and the stars THEY saw, and hoped I might \nalways be so blest and happy as to be useful to some one in my \nsmall way.\n\nThey were so glad to see me when I got home, as they always were, \nthat I could have sat down and cried for joy if that had not been a \nmethod of making myself disagreeable.  Everybody in the house, from \nthe lowest to the highest, showed me such a bright face of welcome, \nand spoke so cheerily, and was so happy to do anything for me, that \nI suppose there never was such a fortunate little creature in the \nworld.\n\nWe got into such a chatty state that night, through Ada and my \nguardian drawing me out to tell them all about Caddy, that I went \non prose, prose, prosing for a length of time.  At last I got up to \nmy own room, quite red to think how I had been holding forth, and \nthen I heard a soft tap at my door.  So I said, \"Come in!\" and \nthere came in a pretty little girl, neatly dressed in mourning, who \ndropped a curtsy.\n\n\"If you please, miss,\" said the little girl in a soft voice, \"I am \nCharley.\"\n\n\"Why, so you are,\" said I, stooping down in astonishment and giving \nher a kiss.  \"How glad am I to see you, Charley!\"\n\n\"If you please, miss,\" pursued Charley in the same soft voice, \"I'm \nyour maid.\"\n\n\"Charley?\"\n\n\"If you please, miss, I'm a present to you, with Mr. Jarndyce's \nlove.\"\n\nI sat down with my hand on Charley's neck and looked at Charley.\n\n\"And oh, miss,\" says Charley, clapping her hands, with the tears \nstarting down her dimpled cheeks, \"Tom's at school, if you please, \nand learning so good!  And little Emma, she's with Mrs. Blinder, \nmiss, a-being took such care of!  And Tom, he would have been at \nschool--and Emma, she would have been left with Mrs. Blinder--and \nme, I should have been here--all a deal sooner, miss; only Mr. \nJarndyce thought that Tom and Emma and me had better get a little \nused to parting first, we was so small.  Don't cry, if you please, \nmiss!\"\n\n\"I can't help it, Charley.\"\n\n\"No, miss, nor I can't help it,\" says Charley.  \"And if you please, \nmiss, Mr. Jarndyce's love, and he thinks you'll like to teach me \nnow and then.  And if you please, Tom and Emma and me is to see \neach other once a month.  And I'm so happy and so thankful, miss,\" \ncried Charley with a heaving heart, \"and I'll try to be such a good \nmaid!\"\n\n\"Oh, Charley dear, never forget who did all this!\"\n\n\"No, miss, I never will.  Nor Tom won't.  Nor yet Emma.  It was all \nyou, miss.\"\n\n\"I have known nothing of it.  It was Mr. Jarndyce, Charley.\"\n\n\"Yes, miss, but it was all done for the love of you and that you \nmight be my mistress.  If you please, miss, I am a little present \nwith his love, and it was all done for the love of you.  Me and Tom \nwas to be sure to remember it.\"\n\nCharley dried her eyes and entered on her functions, going in her \nmatronly little way about and about the room and folding up \neverything she could lay her hands upon.  Presently Charley came \ncreeping back to my side and said, \"Oh, don't cry, if you please, \nmiss.\"\n\nAnd I said again, \"I can't help it, Charley.\"\n\nAnd Charley said again, \"No, miss, nor I can't help it.\"  And so, \nafter all, I did cry for joy indeed, and so did she.\n\n\n\nCHAPTER XXIV\n\nAn Appeal Case\n\n\nAs soon as Richard and I had held the conversation of which I have \ngiven an account, Richard communicated the state of his mind to Mr. \nJarndyce.  I doubt if my guardian were altogether taken by surprise \nwhen he received the representation, though it caused him much \nuneasiness and disappointment.  He and Richard were often closeted \ntogether, late at night and early in the morning, and passed whole \ndays in London, and had innumerable appointments with Mr. Kenge, \nand laboured through a quantity of disagreeable business.  While \nthey were thus employed, my guardian, though he underwent \nconsiderable inconvenience from the state of the wind and rubbed \nhis head so constantly that not a single hair upon it ever rested \nin its right place, was as genial with Ada and me as at any other \ntime, but maintained a steady reserve on these matters.  And as our \nutmost endeavours could only elicit from Richard himself sweeping \nassurances that everything was going on capitally and that it \nreally was all right at last, our anxiety was not much relieved by \nhim.\n\nWe learnt, however, as the time went on, that a new application was \nmade to the Lord Chancellor on Richard's behalf as an infant and a \nward, and I don't know what, and that there was a quantity of \ntalking, and that the Lord Chancellor described him in open court \nas a vexatious and capricious infant, and that the matter was \nadjourned and readjourned, and referred, and reported on, and \npetitioned about until Richard began to doubt (as he told us) \nwhether, if he entered the army at all, it would not be as a \nveteran of seventy or eighty years of age.  At last an appointment \nwas made for him to see the Lord Chancellor again in his private \nroom, and there the Lord Chancellor very seriously reproved him for \ntrifling with time and not knowing his mind--\"a pretty good joke, I \nthink,\" said Richard, \"from that quarter!\"--and at last it was \nsettled that his application should be granted.  His name was \nentered at the Horse Guards as an applicant for an ensign's \ncommission; the purchase-money was deposited at an agent's; and \nRichard, in his usual characteristic way, plunged into a violent \ncourse of military study and got up at five o'clock every morning \nto practise the broadsword exercise.\n\nThus, vacation succeeded term, and term succeeded vacation.  We \nsometimes heard of Jarndyce and Jarndyce as being in the paper or \nout of the paper, or as being to be mentioned, or as being to be \nspoken to; and it came on, and it went off.  Richard, who was now \nin a professor's house in London, was able to be with us less \nfrequently than before; my guardian still maintained the same \nreserve; and so time passed until the commission was obtained and \nRichard received directions with it to join a regiment in Ireland.\n\nHe arrived post-haste with the intelligence one evening, and had a \nlong conference with my guardian.  Upwards of an hour elapsed \nbefore my guardian put his head into the room where Ada and I were \nsitting and said, \"Come in, my dears!\"  We went in and found \nRichard, whom we had last seen in high spirits, leaning on the \nchimney-piece looking mortified and angry.\n\n\"Rick and I, Ada,\" said Mr. Jarndyce, \"are not quite of one mind.  \nCome, come, Rick, put a brighter face upon it!\"\n\n\"You are very hard with me, sir,\" said Richard.  \"The harder \nbecause you have been so considerate to me in all other respects \nand have done me kindnesses that I can never acknowledge.  I never \ncould have been set right without you, sir.\"\n\n\"Well, well!\" said Mr. Jarndyce.  \"I want to set you more right \nyet.  I want to set you more right with yourself.\"\n\n\"I hope you will excuse my saying, sir,\" returned Richard in a \nfiery way, but yet respectfully, \"that I think I am the best judge \nabout myself.\"\n\n\"I hope you will excuse my saying, my dear Rick,\" observed Mr. \nJarndyce with the sweetest cheerfulness and good humour, \"that's \nit's quite natural in you to think so, but I don't think so.  I \nmust do my duty, Rick, or you could never care for me in cool \nblood; and I hope you will always care for me, cool and hot.\"\n\nAda had turned so pale that he made her sit down in his reading-\nchair and sat beside her.\n\n\"It's nothing, my dear,\" he said, \"it's nothing.  Rick and I have \nonly had a friendly difference, which we must state to you, for you \nare the theme.  Now you are afraid of what's coming.\"\n\n\"I am not indeed, cousin John,\" replied Ada with a smile, \"if it is \nto come from you.\"\n\n\"Thank you, my dear.  Do you give me a minute's calm attention, \nwithout looking at Rick.  And, little woman, do you likewise.  My \ndear girl,\" putting his hand on hers as it lay on the side of the \neasy-chair, \"you recollect the talk we had, we four when the little \nwoman told me of a little love affair?\"\n\n\"It is not likely that either Richard or I can ever forget your \nkindness that day, cousin John.\"\n\n\"I can never forget it,\" said Richard.\n\n\"And I can never forget it,\" said Ada.\n\n\"So much the easier what I have to say, and so much the easier for \nus to agree,\" returned my guardian, his face irradiated by the \ngentleness and honour of his heart.  \"Ada, my bird, you should know \nthat Rick has now chosen his profession for the last time.  All \nthat he has of certainty will be expended when he is fully \nequipped.  He has exhausted his resources and is bound henceforward \nto the tree he has planted.\"\n\n\"Quite true that I have exhausted my present resources, and I am \nquite content to know it.  But what I have of certainty, sir,\" said \nRichard, \"is not all I have.\"\n\n\"Rick, Rick!\" cried my guardian with a sudden terror in his manner, \nand in an altered voice, and putting up his hands as if he would \nhave stopped his ears.  \"For the love of God, don't found a hope or \nexpectation on the family curse!  Whatever you do on this side the \ngrave, never give one lingering glance towards the horrible phantom \nthat has haunted us so many years.  Better to borrow, better to \nbeg, better to die!\"\n\nWe were all startled by the fervour of this warning.  Richard bit \nhis lip and held his breath, and glanced at me as if he felt, and \nknew that I felt too, how much he needed it.\n\n\"Ada, my dear,\" said Mr. Jarndyce, recovering his cheerfulness, \n\"these are strong words of advice, but I live in Bleak House and \nhave seen a sight here.  Enough of that.  All Richard had to start \nhim in the race of life is ventured.  I recommend to him and you, \nfor his sake and your own, that he should depart from us with the \nunderstanding that there is no sort of contract between you.  I \nmust go further.  1 will be plain with you both.  You were to \nconfide freely in me, and I will confide freely in you.  I ask you \nwholly to relinquish, for the present, any tie but your \nrelationship.\"\n\n\"Better to say at once, sir,\" returned Richard, \"that you renounce \nall confidence in me and that you advise Ada to do the same.\"\n\n\"Better to say nothing of the sort, Rick, because I don't mean it.\"\n\n\"You think I have begun ill, sir,\" retorted Richard.  \"I HAVE, I \nknow.\"\n\n\"How I hoped you would begin, and how go on, I told you when we \nspoke of these things last,\" said Mr. Jarndyce in a cordial and \nencouraging manner.  \"You have not made that beginning yet, but \nthere is a time for all things, and yours is not gone by; rather, \nit is just now fully come.  Make a clear beginning altogether.  You \ntwo (very young, my dears) are cousins.  As yet, you are nothing \nmore.  What more may come must come of being worked out, Rick, and \nno sooner.\"\n\n\"You are very hard with me, sir,\" said Richard.  \"Harder than I \ncould have supposed you would be.\"\n\n\"My dear boy,\" said Mr. Jarndyce, \"I am harder with myself when I \ndo anything that gives you pain.  You have your remedy in your own \nhands.  Ada, it is better for him that he should be free and that \nthere should be no youthful engagement between you.  Rick, it is \nbetter for her, much better; you owe it to her.  Come!  Each of you \nwill do what is best for the other, if not what is best for \nyourselves.\"\n\n\"Why is it best, sir?\" returned Richard hastily.  \"It was not when \nwe opened our hearts to you.  You did not say so then.\"\n\n\"I have had experience since.  I don't blame you, Rick, but I have \nhad experience since.\"\n\n\"You mean of me, sir.\"\n\n\"Well!  Yes, of both of you,\" said Mr. Jarndyce kindly.  \"The time \nis not come for your standing pledged to one another.  It is not \nright, and I must not recognize it.  Come, come, my young cousins, \nbegin afresh!  Bygones shall be bygones, and a new page turned for \nyou to write your lives in.\"\n\nRichard gave an anxious glance at Ada but said nothing.\n\n\"I have avoided saying one word to either of you or to Esther,\" \nsaid Mr. Jarndyce, \"until now, in order that we might be open as \nthe day, and all on equal terms.  I now affectionately advise, I \nnow most earnestly entreat, you two to part as you came here.  \nLeave all else to time, truth, and steadfastness.  If you do \notherwise, you will do wrong, and you will have made me do wrong in \never bringing you together.\"\n\nA long silence succeeded.\n\n\"Cousin Richard,\" said Ada then, raising her blue eyes tenderly to \nhis face, \"after what our cousin John has said, I think no choice \nis left us.  Your mind may he quite at ease about me, for you will \nleave me here under his care and will be sure that I can have \nnothing to wish for--quite sure if I guide myself by his advice.  \nI--I don't doubt, cousin Richard,\" said Ada, a little confused, \n\"that you are very fond of me, and I--I don't think you will fall \nin love with anybody else.  But I should like you to consider well \nabout it too, as I should like you to be in all things very happy.  \nYou may trust in me, cousin Richard.  I am not at all changeable; \nbut I am not unreasonable, and should never blame you.  Even \ncousins may be sorry to part; and in truth I am very, very sorry, \nRichard, though I know it's for your welfare.  I shall always think \nof you affectionately, and often talk of you with Esther, and--and \nperhaps you will sometimes think a little of me, cousin Richard.  \nSo now,\" said Ada, going up to him and giving him her trembling \nhand, \"we are only cousins again, Richard--for the time perhaps--\nand I pray for a blessing on my dear cousin, wherever he goes!\"\n\nIt was strange to me that Richard should not be able to forgive my \nguardian for entertaining the very same opinion of him which he \nhimself had expressed of himself in much stronger terms to me.  But \nit was certainly the case.  I observed with great regret that from \nthis hour he never was as free and open with Mr. Jarndyce as he had \nbeen before.  He had every reason given him to be so, but he was \nnot; and solely on his side, an estrangement began to arise between \nthem.\n\nIn the business of preparation and equipment he soon lost himself, \nand even his grief at parting from Ada, who remained in \nHertfordshire while he, Mr. Jarndyce, and I went up to London for a \nweek.  He remembered her by fits and starts, even with bursts of \ntears, and at such times would confide to me the heaviest self-\nreproaches.  But in a few minutes he would recklessly conjure up \nsome undefinable means by which they were both to be made rich and \nhappy for ever, and would become as gay as possible.\n\nIt was a busy time, and I trotted about with him all day long, \nbuying a variety of things of which he stood in need.  Of the \nthings he would have bought if he had been left to his own ways I \nsay nothing.  He was perfectly confidential with me, and often \ntalked so sensibly and feelingly about his faults and his vigorous \nresolutions, and dwelt so much upon the encouragement he derived \nfrom these conversations that I could never have been tired if I \nhad tried.\n\nThere used, in that week, to come backward and forward to our \nlodging to fence with Richard a person who had formerly been a \ncavalry soldier; he was a fine bluff-looking man, of a frank free \nbearing, with whom Richard had practised for some months.  I heard \nso much about him, not only from Richard, but from my guardian too, \nthat I was purposely in the room with my work one morning after \nbreakfast when he came.\n\n\"Good morning, Mr. George,\" said my guardian, who happened to be \nalone with me.  \"Mr. Carstone will be here directly.  Meanwhile, \nMiss Summerson is very happy to see you, I know.  Sit down.\"\n\nHe sat down, a little disconcerted by my presence, I thought, and \nwithout looking at me, drew his heavy sunburnt hand across and \nacross his upper lip.\n\n\"You are as punctual as the sun,\" said Mr. Jarndyce.\n\n\"Military time, sir,\" he replied.  \"Force of habit.  A mere habit \nin me, sir.  I am not at all business-like.\"\n\n\"Yet you have a large establishment, too, I am told?\" said Mr. \nJarndyce.\n\n\"Not much of a one, sir.  I keep a shooting gallery, but not much \nof a one.\"\n\n\"And what kind of a shot and what kind of a swordsman do you make \nof Mr. Carstone?\" said my guardian.\n\n\"Pretty good, sir,\" he replied, folding his arms upon his broad \nchest and looking very large.  \"If Mr. Carstone was to give his \nfull mind to it, he would come out very good.\"\n\n\"But he don't, I suppose?\" said my guardian.\n\n\"He did at first, sir, but not afterwards.  Not his full mind.  \nPerhaps he has something else upon it--some young lady, perhaps.\"  \nHis bright dark eyes glanced at me for the first time.\n\n\"He has not me upon his mind, I assure you, Mr. George,\" said I, \nlaughing, \"though you seem to suspect me.\"\n\nHe reddened a little through his brown and made me a trooper's bow.  \n\"No offence, I hope, miss.  I am one of the roughs.\"\n\n\"Not at all,\" said I.  \"I take it as a compliment.\"\n\nIf he had not looked at me before, he looked at me now in three or \nfour quick successive glances.  \"I beg your pardon, sir,\" he said \nto my guardian with a manly kind of diffidence, \"but you did me the \nhonour to mention the young lady's name--\"\n\n\"Miss Summerson.\"\n\n\"Miss Summerson,\" he repeated, and looked at me again.\n\n\"Do you know the name?\" I asked.\n\n\"No, miss.  To my knowledge I never heard it.  I thought I had seen \nyou somewhere.\"\n\n\"I think not,\" I returned, raising my head from my work to look at \nhim; and there was something so genuine in his speech and manner \nthat I was glad of the opportunity.  \"I remember faces very well.\"\n\n\"So do I, miss!\" he returned, meeting my look with the fullness of \nhis dark eyes and broad forehead.  \"Humph!  What set me off, now, \nupon that!\"\n\nHis once more reddening through his brown and being disconcerted by \nhis efforts to remember the association brought my guardian to his \nrelief.\n\n\"Have you many pupils, Mr. George?\"\n\n\"They vary in their number, sir.  Mostly they're but a small lot to \nlive by.\"\n\n\"And what classes of chance people come to practise at your \ngallery?\"\n\n\"All sorts, sir.  Natives and foreigners.  From gentlemen to \n'prentices.  I have had Frenchwomen come, before now, and show \nthemselves dabs at pistol-shooting.  Mad people out of number, of \ncourse, but THEY go everywhere where the doors stand open.\"\n\n\"People don't come with grudges and schemes of finishing their \npractice with live targets, I hope?\" said my guardian, smiling.\n\n\"Not much of that, sir, though that HAS happened.  Mostly they come \nfor skill--or idleness.  Six of one, and half-a-dozen of the other.  \nI beg your pardon,\" said Mr. George, sitting stiffly upright and \nsquaring an elbow on each knee, \"but I believe you're a Chancery \nsuitor, if I have heard correct?\"\n\n\"I am sorry to say I am.\"\n\n\"I have had one of YOUR compatriots in my time, sir.\"\n\n\"A Chancery suitor?\" returned my guardian.  \"How was that?\"\n\n\"Why, the man was so badgered and worried and tortured by being \nknocked about from post to pillar, and from pillar to post,\" said \nMr. George, \"that he got out of sorts.  I don't believe he had any \nidea of taking aim at anybody, but he was in that condition of \nresentment and violence that he would come and pay for fifty shots \nand fire away till he was red hot.  One day I said to him when \nthere was nobody by and he had been talking to me angrily about his \nwrongs, 'If this practice is a safety-valve, comrade, well and \ngood; but I don't altogether like your being so bent upon it in \nyour present state of mind; I'd rather you took to something else.'  \nI was on my guard for a blow, he was that passionate; but he \nreceived it in very good part and left off directly.  We shook \nhands and struck up a sort of friendship.\"\n\n\"What was that man?\" asked my guardian in a new tone of interest.\n\n\"Why, he began by being a small Shropshire farmer before they made \na baited bull of him,\" said Mr. George.\n\n\"Was his name Gridley?\"\n\n\"It was, sir.\"\n\nMr. George directed another succession of quick bright glances at \nme as my guardian and I exchanged a word or two of surprise at the \ncoincidence, and I therefore explained to him how we knew the name.  \nHe made me another of his soldierly bows in acknowledgment of what \nhe called my condescension.\n\n\"I don't know,\" he said as he looked at me, \"what it is that sets \nme off again--but--bosh!  What's my head running against!\"  He \npassed one of his heavy hands over his crisp dark hair as if to \nsweep the broken thoughts out of his mind and sat a little forward, \nwith one arm akimbo and the other resting on his leg, looking in a \nbrown study at the ground.\n\n\"I am sorry to learn that the same state of mind has got this \nGridley into new troubles and that he is in hiding,\" said my \nguardian.\n\n\"So I am told, sir,\" returned Mr. George, still musing and looking \non the ground.  \"So I am told.\"\n\n\"You don't know where?\"\n\n\"No, sir,\" returned the trooper, lifting up his eyes and coming out \nof his reverie.  \"I can't say anything about him.  He will be worn \nout soon, I expect.  You may file a strong man's heart away for a \ngood many years, but it will tell all of a sudden at last.\"\n\nRichard's entrance stopped the conversation.  Mr. George rose, made \nme another of his soldierly bows, wished my guardian a good day, \nand strode heavily out of the room.\n\nThis was the morning of the day appointed for Richard's departure.  \nWe had no more purchases to make now; I had completed all his \npacking early in the afternoon; and our time was disengaged until \nnight, when he was to go to Liverpool for Holyhead.  Jarndyce and \nJarndyce being again expected to come on that day, Richard proposed \nto me that we should go down to the court and hear what passed.  As \nit was his last day, and he was eager to go, and I had never been \nthere, I gave my consent and we walked down to Westminster, where \nthe court was then sitting.  We beguiled the way with arrangements \nconcerning the letters that Richard was to write to me and the \nletters that I was to write to him and with a great many hopeful \nprojects.  My guardian knew where we were going and therefore was \nnot with us.\n\nWhen we came to the court, there was the Lord Chancellor--the same \nwhom I had seen in his private room in Lincoln's Inn--sitting in \ngreat state and gravity on the bench, with the mace and seals on a \nred table below him and an immense flat nosegay, like a little \ngarden, which scented the whole court.  Below the table, again, was \na long row of solicitors, with bundles of papers on the matting at \ntheir feet; and then there were the gentlemen of the bar in wigs \nand gowns--some awake and some asleep, and one talking, and nobody \npaying much attention to what he said.  The Lord Chancellor leaned \nback in his very easy chair with his elbow on the cushioned arm and \nhis forehead resting on his hand; some of those who were present \ndozed; some read the newspapers; some walked about or whispered in \ngroups: all seemed perfectly at their ease, by no means in a hurry, \nvery unconcerned, and extremely comfortable.\n\nTo see everything going on so smoothly and to think of the \nroughness of the suitors' lives and deaths; to see all that full \ndress and ceremony and to think of the waste, and want, and \nbeggared misery it represented; to consider that while the sickness \nof hope deferred was raging in so many hearts this polite show went \ncalmly on from day to day, and year to year, in such good order and \ncomposure; to behold the Lord Chancellor and the whole array of \npractitioners under him looking at one another and at the \nspectators as if nobody had ever heard that all over England the \nname in which they were assembled was a bitter jest, was held in \nuniversal horror, contempt, and indignation, was known for \nsomething so flagrant and bad that little short of a miracle could \nbring any good out of it to any one--this was so curious and self-\ncontradictory to me, who had no experience of it, that it was at \nfirst incredible, and I could not comprehend it.  I sat where \nRichard put me, and tried to listen, and looked about me; but there \nseemed to be no reality in the whole scene except poor little Miss \nFlite, the madwoman, standing on a bench and nodding at it.\n\nMiss Flite soon espied us and came to where we sat.  She gave me a \ngracious welcome to her domain and indicated, with much \ngratification and pride, its principal attractions.  Mr. Kenge also \ncame to speak to us and did the honours of the place in much the \nsame way, with the bland modesty of a proprietor.  It was not a \nvery good day for a visit, he said; he would have preferred the \nfirst day of term; but it was imposing, it was imposing.\n\nWhen we had been there half an hour or so, the case in progress--if \nI may use a phrase so ridiculous in such a connexion--seemed to die \nout of its own vapidity, without coming, or being by anybody \nexpected to come, to any resuIt.  The Lord Chancellor then threw \ndown a bundle of papers from his desk to the gentlemen below him, \nand somebody said, \"Jarndyce and Jarndyce.\"  Upon this there was a \nbuzz, and a laugh, and a general withdrawal of the bystanders, and \na bringing in of great heaps, and piles, and bags and bags full of \npapers.\n\nI think it came on \"for further directions\"--about some bill of \ncosts, to the best of my understanding, which was confused enough.  \nBut I counted twenty-three gentlemen in wigs who said they were \"in \nit,\" and none of them appeared to understand it much better than I.  \nThey chatted about it with the Lord Chancellor, and contradicted \nand explained among themselves, and some of them said it was this \nway, and some of them said it was that way, and some of them \njocosely proposed to read huge volumes of affidavits, and there was \nmore buzzing and laughing, and everybody concerned was in a state \nof idle entertainment, and nothing could be made of it by anybody.  \nAfter an hour or so of this, and a good many speeches being begun \nand cut short, it was \"referred back for the present,\" as Mr. Kenge \nsaid, and the papers were bundled up again before the clerks had \nfinished bringing them in.\n\nI glanced at Richard on the termination of these hopeless \nproceedings and was shocked to see the worn look of his handsome \nyoung face.  \"It can't last for ever, Dame Durden.  Better luck \nnext time!\" was all he said.\n\nI had seen Mr. Guppy bringing in papers and arranging them for Mr. \nKenge; and he had seen me and made me a forlorn bow, which rendered \nme desirous to get out of the court.  Richard had given me his arm \nand was taking me away when Mr. Guppy came up.\n\n\"I beg your pardon, Mr. Carstone,\" said he in a whisper, \"and Miss \nSummerson's also, but there's a lady here, a friend of mine, who \nknows her and wishes to have the pleasure of shaking hands.\"  As he \nspoke, I saw before me, as if she had started into bodily shape \nfrom my remembrance, Mrs. Rachael of my godmother's house.\n\n\"How do you do, Esther?\" said she.  \"Do you recollect me?\"\n\nI gave her my hand and told her yes and that she was very little \naltered.\n\n\"I wonder you remember those times, Esther,\" she returned with her \nold asperity.  \"They are changed now.  Well! I am glad to see you, \nand glad you are not too proud to know me.\"  But indeed she seemed \ndisappointed that I was not.\n\n\"Proud, Mrs. Rachael!\" I remonstrated.\n\n\"I am married, Esther,\" she returned, coldly correcting me, \"and am \nMrs. Chadband.  Well! I wish you good day, and I hope you'll do \nwell.\"\n\nMr. Guppy, who had been attentive to this short dialogue, heaved a \nsigh in my ear and elbowed his own and Mrs. Rachael's way through \nthe confused little crowd of people coming in and going out, which \nwe were in the midst of and which the change in the business had \nbrought together.  Richard and I were making our way through it, \nand I was yet in the first chill of the late unexpected recognition \nwhen I saw, coming towards us, but not seeing us, no less a person \nthan Mr. George.  He made nothing of the people about him as he \ntramped on, staring over their heads into the body of the court.\n\n\"George!\" said Richard as I called his attention to him.\n\n\"You are well met, sir,\" he returned.  \"And you, miss.  Could you \npoint a person out for me, I want?  I don't understand these \nplaces.\"\n\nTurning as he spoke and making an easy way for us, he stopped when \nwe were out of the press in a corner behind a great red curtain.\n\n\"There's a little cracked old woman,\" he began, \"that--\"\n\nI put up my finger, for Miss Flite was close by me, having kept \nbeside me all the time and having called the attention of several \nof her legal acquaintance to me (as I had overheard to my \nconfusion) by whispering in their ears, \"Hush!  Fitz Jarndyce on my \nleft!\"\n\n\"Hem!\" said Mr. George.  \"You remember, miss, that we passed some \nconversation on a certain man this morning?  Gridley,\" in a low \nwhisper behind his hand.\n\n\"Yes,\" said I.\n\n\"He is hiding at my place.  I couldn't mention it.  Hadn't his \nauthority.  He is on his last march, miss, and has a whim to see \nher.  He says they can feel for one another, and she has been \nalmost as good as a friend to him here.  I came down to look for \nher, for when I sat by Gridley this afternoon, I seemed to hear the \nroll of the muffled drums.\"\n\n\"Shall I tell her?\" said I.\n\n\"Would you be so good?\" he returned with a glance of something like \napprehension at Miss Flite.  \"It's a providence I met you, miss; I \ndoubt if I should have known how to get on with that lady.\"  And he \nput one hand in his breast and stood upright in a martial attitude \nas I informed little Miss Flite, in her ear, of the purport of his \nkind errand.\n\n\"My angry friend from Shropshire!  Almost as celebrated as myself!\" \nshe exclaimed.  \"Now really!  My dear, I will wait upon him with \nthe greatest pleasure.\"\n\n\"He is living concealed at Mr. George's,\" said I.  \"Hush!  This is \nMr. George.\"\n\n\"In--deed!\" returned Miss Flite.  \"Very proud to have the honour!  \nA military man, my dear.  You know, a perfect general!\" she \nwhispered to me.\n\nPoor Miss Flite deemed it necessary to be so courtly and polite, as \na mark of her respect for the army, and to curtsy so very often \nthat it was no easy matter to get her out of the court.  When this \nwas at last done, and addressing Mr. George as \"General,\" she gave \nhim her arm, to the great entertainment of some idlers who were \nlooking on, he was so discomposed and begged me so respectfully \n\"not to desert him\" that I could not make up my mind to do it, \nespecially as Miss Flite was always tractable with me and as she \ntoo said, \"Fitz Jarndyce, my dear, you will accompany us, of \ncourse.\"  As Richard seemed quite willing, and even anxious, that \nwe should see them safely to their destination, we agreed to do so.  \nAnd as Mr. George informed us that Gridley's mind had run on Mr. \nJarndyce all the afternoon after hearing of their interview in the \nmorning, I wrote a hasty note in pencil to my guardian to say where \nwe were gone and why.  Mr. George sealed it at a coffee-house, that \nit might lead to no discovery, and we sent it off by a ticket-\nporter.\n\nWe then took a hackney-coach and drove away to the neighbourhood of \nLeicester Square.  We walked through some narrow courts, for which \nMr. George apologized, and soon came to the shooting gallery, the \ndoor of which was closed.  As he pulled a bell-handle which hung by \na chain to the door-post, a very respectable old gentleman with \ngrey hair, wearing spectacles, and dressed in a black spencer and \ngaiters and a broad-brimmed hat, and carrying a large gold-beaded \ncane, addressed him.\n\n\"I ask your pardon, my good friend,\" said he, \"but is this George's \nShooting Gallery?\"\n\n\"It is, sir,\" returned Mr. George, glancing up at the great letters \nin which that inscription was painted on the whitewashed wall.\n\n\"Oh! To be sure!\" said the old gentleman, following his eyes.  \n\"Thank you.  Have you rung the bell?\"\n\n\"My name is George, sir, and I have rung the bell.\"\n\n\"Oh, indeed?\" said the old gentleman.  \"Your name is George?  Then \nI am here as soon as you, you see.  You came for me, no doubt?\"\n\n\"No, sir.  You have the advantage of me.\"\n\n\"Oh, indeed?\" said the old gentleman.  \"Then it was your young man \nwho came for me.  I am a physician and was requested--five minutes \nago--to come and visit a sick man at George's Shooting Gallery.\"\n\n\"The muffled drums,\" said Mr. George, turning to Richard and me and \ngravely shaking his head.  \"It's quite correct, sir.  Will you \nplease to walk in.\"\n\nThe door being at that moment opened by a very singular-looking \nlittle man in a green-baize cap and apron, whose face and hands and \ndress were blackened all over, we passed along a dreary passage \ninto a large building with bare brick walls where there were \ntargets, and guns, and swords, and other things of that kind.  When \nwe had all arrived here, the physician stopped, and taking off his \nhat, appeared to vanish by magic and to leave another and quite a \ndifferent man in his place.\n\n\"Now lookee here, George,\" said the man, turning quickly round upon \nhim and tapping him on the breast with a large forefinger.  \"You \nknow me, and I know you.  You're a man of the world, and I'm a man \nof the world.  My name's Bucket, as you are aware, and I have got a \npeace-warrant against Gridley.  You have kept him out of the way a \nlong time, and you have been artful in it, and it does you credit.\"\n\nMr. George, looking hard at him, bit his lip and shook his head.\n\n\"Now, George,\" said the other, keeping close to him, \"you're a \nsensible man and a well-conducted man; that's what YOU are, beyond \na doubt.  And mind you, I don't talk to you as a common character, \nbecause you have served your country and you know that when duty \ncalls we must obey.  Consequently you're very far from wanting to \ngive trouble.  If I required assistance, you'd assist me; that's \nwhat YOU'D do.  Phil Squod, don't you go a-sidling round the \ngallery like that\"--the dirty little man was shuffling about with \nhis shoulder against the wall, and his eyes on the intruder, in a \nmanner that looked threatening--\"because I know you and won't have \nit.\"\n\n\"Phil!\" said Mr. George.\n\n\"Yes, guv'ner.\"\n\n\"Be quiet.\"\n\nThe little man, with a low growl, stood still.\n\n\"Ladies and gentlemen,\" said Mr. Bucket, \"you'll excuse anything \nthat may appear to be disagreeable in this, for my name's Inspector \nBucket of the Detective, and I have a duty to perform.  George, I \nknow where my man is because I was on the roof last night and saw \nhim through the skylight, and you along with him.  He is in there, \nyou know,\" pointing; \"that's where HE is--on a sofy.  Now I must \nsee my man, and I must tell my man to consider himself in custody; \nbut you know me, and you know I don't want to take any \nuncomfortable measures.  You give me your word, as from one man to \nanother (and an old soldier, mind you, likewise), that it's \nhonourable between us two, and I'll accommodate you to the utmost \nof my power.\"\n\n\"I give it,\" was the reply.  '\"But it wasn't handsome in you, Mr. \nBucket.\"\n\n\"Gammon, George!  Not handsome?\" said Mr. Bucket, tapping him on \nhis broad breast again and shaking hands with him.  \"I don't say it \nwasn't handsome in you to keep my man so close, do I?  Be equally \ngood-tempered to me, old boy!  Old William Tell, Old Shaw, the Life \nGuardsman!  Why, he's a model of the whole British army in himself, \nladies and gentlemen.  I'd give a fifty-pun' note to be such a \nfigure of a man!\"\n\nThe affair being brought to this head, Mr. George, after a little \nconsideration, proposed to go in first to his comrade (as he called \nhim), taking Miss Flite with him.  Mr. Bucket agreeing, they went \naway to the further end of the gallery, leaving us sitting and \nstanding by a table covered with guns.  Mr. Bucket took this \nopportunity of entering into a little light conversation, asking me \nif I were afraid of fire-arms, as most young ladies were; asking \nRichard if he were a good shot; asking Phil Squod which he \nconsidered the best of those rifles and what it might be worth \nfirst-hand, telling him in return that it was a pity he ever gave \nway to his temper, for he was naturally so amiable that he might \nhave been a young woman, and making himself generally agreeable.\n\nAfter a time he followed us to the further end of the gallery, and \nRichard and I were going quietly away when Mr. George came after \nus.  He said that if we had no objection to see his comrade, he \nwould take a visit from us very kindly.  The words had hardly \npassed his lips when the bell was rung and my guardian appeared, \n\"on the chance,\" he slightly observed, \"of being able to do any \nlittle thing for a poor fellow involved in the same misfortune as \nhimself.\"  We all four went back together and went into the place \nwhere Gridley was.\n\nIt was a bare room, partitioned off from the gallery with unpainted \nwood.  As the screening was not more than eight or ten feet high \nand only enclosed the sides, not the top, the rafters of the high \ngallery roof were overhead, and the skylight through which Mr. \nBucket had looked down.  The sun was low--near setting--and its \nlight came redly in above, without descending to the ground.  Upon \na plain canvas-covered sofa lay the man from Shropshire, dressed \nmuch as we had seen him last, but so changed that at first I \nrecognized no likeness in his colourless face to what I \nrecollected.\n\nHe had been still writing in his hiding-place, and still dwelling \non his grievances, hour after hour.  A table and some shelves were \ncovered with manuscript papers and with worn pens and a medley of \nsuch tokens.  Touchingly and awfully drawn together, he and the \nlittle mad woman were side by side and, as it were, alone.  She sat \non a chair holding his hand, and none of us went close to them.\n\nHis voice had faded, with the old expression of his face, with his \nstrength, with his anger, with his resistance to the wrongs that \nhad at last subdued him.  The faintest shadow of an object full of \nform and colour is such a picture of it as he was of the man from \nShropshire whom we had spoken with before.\n\nHe inclined his head to Richard and me and spoke to my guardian.\n\n\"Mr. Jarndyce, it is very kind of you to come to see me.  I am not \nlong to be seen, I think.  I am very glad to take your hand, sir.  \nYou are a good man, superior to injustice, and God knows I honour \nyou.\"\n\nThey shook hands earnestly, and my guardian said some words of \ncomfort to him.\n\n\"It may seem strange to you, sir,\" returned Gridley; \"I should not \nhave liked to see you if this had been the flrst time of our \nmeeting.  But you know I made a fight for it, you know I stood up \nwith my single hand against them all, you know I told them the \ntruth to the last, and told them what they were, and what they had \ndone to me; so I don't mind your seeing me, this wreck.\"\n\n\"You have been courageous with them many and many a time,\" returned \nmy guardian.\n\n\"Sir, I have been,\" with a faint smile.  \"I told you what would \ncome of it when I ceased to be so, and see here!  Look at us--look \nat us!\"  He drew the hand Miss Flite held through her arm and \nbrought her something nearer to him.\n\n\"This ends it.  Of all my old associations, of all my old pursuits \nand hopes, of all the living and the dead world, this one poor soul \nalone comes natural to me, and I am fit for.  There is a tie of \nmany suffering years between us two, and it is the only tie I ever \nhad on earth that Chancery has not broken.\"\n\n\"Accept my blessing, Gridley,\" said Miss Flite in tears.  \"Accept \nmy blessing!\"\n\n\"I thought, boastfully, that they never could break my heart, Mr. \nJarndyce.  I was resolved that they should not.  I did believe that \nI could, and would, charge them with being the mockery they were \nuntil I died of some bodily disorder.  But I am worn out.  How long \nI have been wearing out, I don't know; I seemed to break down in an \nhour.  I hope they may never come to hear of it.  I hope everybody \nhere will lead them to believe that I died defying them, \nconsistently and perseveringly, as I did through so many years.\"\n\nHere Mr. Bucket, who was sitting in a corner by the door, good-\nnaturedly offered such consolation as he could administer.\n\n\"Come, come!\" he said from his corner.  \"Don't go on in that way, \nMr. Gridley.  You are only a little low.  We are all of us a little \nlow sometimes.  I am.  Hold up, hold up!  You'll lose your temper \nwith the whole round of 'em, again and again; and I shall take you \non a score of warrants yet, if I have luck.\"\n\nHe only shook his head.\n\n\"Don't shake your head,\" said Mr. Bucket.  \"Nod it; that's what I \nwant to see you do.  Why, Lord bless your soul, what times we have \nhad together!  Haven't I seen you in the Fleet over and over again \nfor contempt?  Haven't I come into court, twenty afternoons for no \nother purpose than to see you pin the Chancellor like a bull-dog?  \nDon't you remember when you first began to threaten the lawyers, \nand the peace was sworn against you two or three times a week?  Ask \nthe little old lady there; she has been always present.  Hold up, \nMr. Gridley, hold up, sir!\"\n\n\"What are you going to do about him?\" asked George in a low voice.\n\n\"I don't know yet,\" said Bucket in the same tone.  Then resuming \nhis encouragement, he pursued aloud: \"Worn out, Mr. Gridley?  After \ndodging me for all these weeks and forcing me to climb the roof \nhere like a tom cat and to come to see you as a doctor?  That ain't \nlike being worn out.  I should think not!  Now I tell you what you \nwant.  You want excitement, you know, to keep YOU up; that's what \nYOU want.  You're used to it, and you can't do without it.  I \ncouldn't myself.  Very well, then; here's this warrant got by Mr. \nTulkinghorn of Lincoln's Inn Fields, and backed into half-a-dozen \ncounties since.  What do you say to coming along with me, upon this \nwarrant, and having a good angry argument before the magistrates?  \nIt'll do you good; it'll freshen you up and get you into training \nfor another turn at the Chancellor.  Give in?  Why, I am surprised \nto hear a man of your energy talk of giving in.  You mustn't do \nthat.  You're half the fun of the fair in the Court of Chancery.  \nGeorge, you lend Mr. Gridley a hand, and let's see now whether he \nwon't be better up than down.\"\n\n\"He is very weak,\" said the trooper in a low voice.\n\n\"Is he?\" returned Bucket anxiously.  \"I only want to rouse him.  I \ndon't like to see an old acquaintance giving in like this.  It \nwould cheer him up more than anything if I could make him a little \nwaxy with me.  He's welcome to drop into me, right and left, if he \nlikes.  I shall never take advantage of it.\"\n\nThe roof rang with a scream from Miss Flite, which still rings in \nmy ears.\n\n\"Oh, no, Gridley!\" she cried as he fell heavily and calmly back \nfrom before her.  \"Not without my blessing.  After so many years!\"\n\nThe sun was down, the light had gradually stolen from the roof, and \nthe shadow had crept upward.  But to me the shadow of that pair, \none living and one dead, fell heavier on Richard's departure than \nthe darkness of the darkest night.  And through Richard's farewell \nwords I heard it echoed: \"Of all my old associations, of all my old \npursuits and hopes, of all the living and the dead world, this one \npoor soul alone comes natural to me, and I am fit for.  There is a \ntie of many suffering years between us two, and it is the only tie \nI ever had on earth that Chancery has not broken!\"\n\n\n\nCHAPTER XXV\n\nMrs. Snagsby Sees It All\n\n\nThere is disquietude in Cook's Court, Cursitor Street.  Black \nsuspicion hides in that peaceful region.  The mass of Cook's \nCourtiers are in their usual state of mind, no better and no worse; \nbut Mr. Snagsby is changed, and his little woman knows it.\n\nFor Tom-all-Alone's and Lincoln's Inn Fields persist in harnessing \nthemselves, a pair of ungovernable coursers, to the chariot of Mr. \nSnagsby's imagination; and Mr. Bucket drives; and the passengers \nare Jo and Mr. Tulkinghorn; and the complete equipage whirls though \nthe law-stationery business at wild speed all round the clock.  \nEven in the little front kitchen where the family meals are taken, \nit rattles away at a smoking pace from the dinner-table, when Mr. \nSnagsby pauses in carving the first slice of the leg of mutton \nbaked with potatoes and stares at the kitchen wall.\n\nMr. Snagsby cannot make out what it is that he has had to do with.  \nSomething is wrong somewhere, but what something, what may come of \nit, to whom, when, and from which unthought of and unheard of \nquarter is the puzzle of his life.  His remote impressions of the \nrobes and coronets, the stars and garters, that sparkle through the \nsurface-dust of Mr. Tulkinghorn's chambers; his veneration for the \nmysteries presided over by that best and closest of his customers, \nwhom all the Inns of Court, all Chancery Lane, and all the legal \nneighbourhood agree to hold in awe; his remembrance of Detective \nMr. Bucket with his forefinger and his confidential manner, \nimpossible to be evaded or declined, persuade him that he is a \nparty to some dangerous secret without knowing what it is.  And it \nis the fearful peculiarity of this condition that, at any hour of \nhis daily life, at any opening of the shop-door, at any pull of the \nbell, at any entrance of a messenger, or any delivery of a letter, \nthe secret may take air and fire, explode, and blow up--Mr. Bucket \nonly knows whom.\n\nFor which reason, whenever a man unknown comes into the shop (as \nmany men unknown do) and says, \"Is Mr. Snagsby in?\" or words to \nthat innocent effect, Mr. Snagsby's heart knocks hard at his guilty \nbreast.  He undergoes so much from such inquiries that when they \nare made by boys he revenges himself by flipping at their ears over \nthe counter and asking the young dogs what they mean by it and why \nthey can't speak out at once?  More impracticable men and boys \npersist in walking into Mr. Snagsby's sleep and terrifying him with \nunaccountable questions, so that often when the cock at the little \ndairy in Cursitor Street breaks out in his usual absurd way about \nthe morning, Mr. Snagsby finds himself in a crisis of nightmare, \nwith his little woman shaking him and saying \"What's the matter \nwith the man!\"\n\nThe little woman herself is not the least item in his difficulty.  \nTo know that he is always keeping a secret from her, that he has \nunder all circumstances to conceal and hold fast a tender double \ntooth, which her sharpness is ever ready to twist out of his head, \ngives Mr. Snagsby, in her dentistical presence, much of the air of \na dog who has a reservation from his master and will look anywhere \nrather than meet his eye.\n\nThese various signs and tokens, marked by the little woman, are not \nlost upon her.  They impel her to say, \"Snagsby has something on \nhis mind!\"  And thus suspicion gets into Cook's Court, Cursitor \nStreet.  From suspicion to jealousy, Mrs. Snagsby finds the road as \nnatural and short as from Cook's Court to Chancery Lane.  And thus \njealousy gets into Cook's Court, Cursitor Street.  Once there (and \nit was always lurking thereabout), it is very active and nimble in \nMrs. Snagsby's breast, prompting her to nocturnal examinations of \nMr. Snagsby's pockets; to secret perusals of Mr. Snagsby's letters; \nto private researches in the day book and ledger, till, cash-box, \nand iron safe; to watchings at windows, listenings behind doors, \nand a general putting of this and that together by the wrong end.\n\nMrs. Snagsby is so perpetually on the alert that the house becomes \nghostly with creaking boards and rustling garments.  The 'prentices \nthink somebody may have been murdered there in bygone times.  \nGuster holds certain loose atoms of an idea (picked up at Tooting, \nwhere they were found floating among the orphans) that there is \nburied money underneath the cellar, guarded by an old man with a \nwhite beard, who cannot get out for seven thousand years because he \nsaid the Lord's Prayer backwards.\n\n\"Who was Nimrod?\" Mrs. Snagsby repeatedly inquires of herself.  \n\"Who was that lady--that creature?  And who is that boy?\"  Now, \nNimrod being as dead as the mighty hunter whose name Mrs. Snagsby \nhas appropriated, and the lady being unproducible, she directs her \nmental eye, for the present, with redoubled vigilance to the boy.  \n\"And who,\" quoth Mrs. Snagsby for the thousand and first time, \"is \nthat boy?  Who is that--!\"  And there Mrs. Snagsby is seized with \nan inspiration.\n\nHe has no respect for Mr. Chadband.  No, to be sure, and he \nwouldn't have, of course.  Naturally he wouldn't, under those \ncontagious circumstances.  He was invited and appointed by Mr. \nChadband--why, Mrs. Snagsby heard it herself with her own ears!--to \ncome back, and be told where he was to go, to be addressed by Mr. \nChadband; and he never came!  Why did he never come?  Because he \nwas told not to come.  Who told him not to come?  Who?  Ha, ha!  \nMrs. Snagsby sees it all.\n\nBut happily (and Mrs. Snagsby tightly shakes her head and tightly \nsmiles) that boy was met by Mr. Chadband yesterday in the streets; \nand that boy, as affording a subject which Mr. Chadband desires to \nimprove for the spiritual delight of a select congregation, was \nseized by Mr. Chadband and threatened with being delivered over to \nthe police unless he showed the reverend gentleman where he lived \nand unless he entered into, and fulfilled, an undertaking to appear \nin Cook's Court to-morrow night, \"'to--mor--row--night,\" Mrs. \nSnagsby repeats for mere emphasis with another tight smile and \nanother tight shake of her head; and to-morrow night that boy will \nbe here, and to-morrow night Mrs. Snagsby will have her eye upon \nhim and upon some one else; and oh, you may walk a long while in \nyour secret ways (says Mrs. Snagsby with haughtiness and scorn), \nbut you can't blind ME!\n\nMrs. Snagsby sounds no timbrel in anybody's ears, but holds her \npurpose quietly, and keeps her counsel.  To-morrow comes, the \nsavoury preparations for the Oil Trade come, the evening comes.  \nComes Mr. Snagsby in his black coat; come the Chadbands; come (when \nthe gorging vessel is replete) the 'prentices and Guster, to be \nedified; comes at last, with his slouching head, and his shuflle \nbackward, and his shuffle forward, and his shuffle to the right, \nand his shuffle to the left, and his bit of fur cap in his muddy \nhand, which he picks as if it were some mangy bird he had caught \nand was plucking before eating raw, Jo, the very, very tough \nsubject Mr. Chadband is to improve.\n\nMrs. Snagsby screws a watchful glance on Jo as he is brought into \nthe little drawing-room by Guster.  He looks at Mr. Snagsby the \nmoment he comes in.  Aha!  Why does he look at Mr. Snagsby?  Mr. \nSnagsby looks at him.  Why should he do that, but that Mrs. Snagsby \nsees it all?  Why else should that look pass between them, why else \nshould Mr. Snagsby be confused and cough a signal cough behind his \nhand?  It is as clear as crystal that Mr. Snagsby is that boy's \nfather.\n\n'\"Peace, my friends,\" says Chadband, rising and wiping the oily \nexudations from his reverend visage.  \"Peace be with us!  My \nfriends, why with us?  Because,\" with his fat smile, \"it cannot be \nagainst us, because it must be for us; because it is not hardening, \nbecause it is softening; because it does not make war like the \nhawk, but comes home unto us like the dove.  Therefore, my friends, \npeace be with us!  My human boy, come forward!\"\n\nStretching forth his flabby paw, Mr. Chadband lays the same on Jo's \narm and considers where to station him.  Jo, very doubtful of his \nreverend friend's intentions and not at all clear but that \nsomething practical and painful is going to be done to him, \nmutters, \"You let me alone.  I never said nothink to you.  You let \nme alone.\"\n\n\"No, my young friend,\" says Chadband smoothly, \"I will not let you \nalone.  And why?  Because I am a harvest-labourer, because I am a \ntoiler and a moiler, because you are delivered over unto me and are \nbecome as a precious instrument in my hands.  My friends, may I so \nemploy this instrument as to use it to your advantage, to your \nprofit, to your gain, to your welfare, to your enrichment!  My \nyoung friend, sit upon this stool.\"\n\nJo, apparently possessed by an impression that the reverend \ngentleman wants to cut his hair, shields his head with both arms \nand is got into the required position with great difficulty and \nevery possible manifestation of reluctance.\n\nWhen he is at last adjusted like a lay-figure, Mr. Chadband, \nretiring behind the table, holds up his bear's-paw and says, \"My \nfriends!\"  This is the signal for a general settlement of the \naudience.  The 'prentices giggle internally and nudge each other.  \nGuster falls into a staring and vacant state, compounded of a \nstunned admiration of Mr. Chadband and pity for the friendless \noutcast whose condition touches her nearly.  Mrs. Snagsby silently \nlays trains of gunpowder.  Mrs. Chadband composes herself grimly by \nthe fire and warms her knees, finding that sensation favourable to \nthe reception of eloquence.\n\nIt happens that Mr. Chadband has a pulpit habit of fixing some \nmember of his congregation with his eye and fatly arguing his \npoints with that particular person, who is understood to be \nexpected to be moved to an occasional grunt, groan, gasp, or other \naudible expression of inward working, which expression of inward \nworking, being echoed by some elderly lady in the next pew and so \ncommunicated like a game of forfeits through a circle of the more \nfermentable sinners present, serves the purpose of parliamentary \ncheering and gets Mr. Chadband's steam up.  From mere force of \nhabit, Mr. Chadband in saying \"My friends!\" has rested his eye on \nMr. Snagsby and proceeds to make that ill-starred stationer, \nalready sufficiently confused, the immediate recipient of his \ndiscourse.\n\n\"We have here among us, my friends,\" says Chadband, \"a Gentile and \na heathen, a dweller in the tents of Tom-all-Alone's and a mover-on \nupon the surface of the earth.  We have here among us, my friends,\" \nand Mr. Chadband, untwisting the point with his dirty thumb-nail, \nbestows an oily smile on Mr. Snagsby, signifying that he will throw \nhim an argumentative back-fall presently if he be not already down, \n\"a brother and a boy.  Devoid of parents, devoid of relations, \ndevoid of flocks and herds, devoid of gold and silver and of \nprecious stones.  Now, my friends, why do I say he is devoid of \nthese possessions?  Why?  Why is he?\"  Mr. Chadband states the \nquestion as if he were propoundlng an entirely new riddle of much \ningenuity and merit to Mr. Snagsby and entreating him not to give \nit up.\n\nMr. Snagsby, greatly perplexed by the mysterious look he received \njust now from his little woman--at about the period when Mr. \nChadband mentioned the word parents--is tempted into modestly \nremarking, \"I don't know, I'm sure, sir.\"  On which interruption \nMrs. Chadband glares and Mrs. Snagsby says, \"For shame!\"\n\n\"I hear a voice,\" says Chadband; \"is it a still small voice, my \nfriends?  I fear not, though I fain would hope so--\"\n\n\"Ah--h!\" from Mrs. Snagsby.\n\n\"Which says, 'I don't know.'  Then I will tell you why.  I say this \nbrother present here among us is devoid of parents, devoid of \nrelations, devoid of flocks and herds, devoid of gold, of silver, \nand of precious stones because he is devoid of the light that \nshines in upon some of us.  What is that light?  What is it?  I ask \nyou, what is that light?\"\n\nMr. Chadband draws back his head and pauses, but Mr. Snagsby is not \nto be lured on to his destruction again.  Mr. Chadband, leaning \nforward over the table, pierces what he has got to follow directly \ninto Mr. Snagsby with the thumb-nail already mentioned.\n\n\"It is,\" says Chadband, \"the ray of rays, the sun of suns, the moon \nof moons, the star of stars.  It is the light of Terewth.\"\n\nMr. Chadband draws himself up again and looks triumphantly at Mr. \nSnagsby as if he would be glad to know how he feels after that.\n\n\"Of Terewth,\" says Mr. Chadband, hitting him again.  \"Say not to me \nthat it is NOT the lamp of lamps.  I say to you it is.  I say to \nyou, a million of times over, it is.  It is!  I say to you that I \nwill proclaim it to you, whether you like it or not; nay, that the \nless you like it, the more I will proclaim it to you.  With a \nspeaking-trumpet!  I say to you that if you rear yourself against \nit, you shall fall, you shall be bruised, you shall be battered, \nyou shall be flawed, you shall be smashed.\"\n\nThe present effect of this flight of oratory--much admired for its \ngeneral power by Mr. Chadband's followers--being not only to make \nMr. Chadband unpleasantly warm, but to represent the innocent Mr. \nSnagsby in the light of a determined enemy to virtue, with a \nforehead of brass and a heart of adamant, that unfortunate \ntradesman becomes yet more disconcerted and is in a very advanced \nstate of low spirits and false position when Mr. Chadband \naccidentally finishes him.\n\n\"My friends,\" he resumes after dabbing his fat head for some time--\nand it smokes to such an extent that he seems to light his pocket-\nhandkerchief at it, which smokes, too, after every dab--\"to pursue \nthe subject we are endeavouring with our lowly gifts to improve, \nlet us in a spirit of love inquire what is that Terewth to which I \nhave alluded.  For, my young friends,\" suddenly addressing the \n'prentices and Guster, to their consternation, \"if I am told by the \ndoctor that calomel or castor-oil is good for me, I may naturally \nask what is calomel, and what is castor-oil.  I may wish to be \ninformed of that before I dose myself with either or with both.  \nNow, my young friends, what is this Terewth then?  Firstly (in a \nspirit of love), what is the common sort of Terewth--the working \nclothes--the every-day wear, my young friends?  Is it deception?\"\n\n\"Ah--h!\" from Mrs. Snagsby.\n\n\"Is it suppression?\"\n\nA shiver in the negative from Mrs. Snagsby.\n\n\"Is it reservation?\"\n\nA shake of the head from Mrs. Snagsby--very long and very tight.\n\n\"No, my friends, it is neither of these.  Neither of these names \nbelongs to it.  When this young heathen now among us--who is now, \nmy friends, asleep, the seal of indifference and perdition being \nset upon his eyelids; but do not wake him, for it is right that I \nshould have to wrestle, and to combat and to struggle, and to \nconquer, for his sake--when this young hardened heathen told us a \nstory of a cock, and of a bull, and of a lady, and of a sovereign, \nwas THAT the Terewth?  No.  Or if it was partly, was it wholly and \nentirely?  No, my friends, no!\"\n\nIf Mr. Snagsby could withstand his little woman's look as it enters \nat his eyes, the windows of his soul, and searches the whole \ntenement, he were other than the man he is.  He cowers and droops.\n\n\"Or, my juvenile friends,\" says Chadband, descending to the level \nof their comprehension with a very obtrusive demonstration in his \ngreasily meek smile of coming a long way downstairs for the \npurpose, \"if the master of this house was to go forth into the city \nand there see an eel, and was to come back, and was to call unto \nhim the mistress of this house, and was to say, 'Sarah, rejoice \nwith me, for I have seen an elephant!' would THAT be Terewth?\"\n\nMrs. Snagsby in tears.\n\n\"Or put it, my juvenile friends, that he saw an elephant, and \nreturning said 'Lo, the city is barren, I have seen but an eel,' \nwould THAT be Terewth?\"\n\nMrs. Snagsby sobbing loudly.\n\n\"Or put it, my juvenile friends,\" said Chadband, stimulated by the \nsound, \"that the unnatural parents of this slumbering heathen--for \nparents he had, my juvenile friends, beyond a doubt--after casting \nhim forth to the wolves and the vultures, and the wild dogs and the \nyoung gazelles, and the serpents, went back to their dwellings and \nhad their pipes, and their pots, and their flutings and their \ndancings, and their malt liquors, and their butcher's meat and \npoultry, would THAT be Terewth?\"\n\nMrs. Snagsby replies by delivering herself a prey to spasms, not an \nunresisting prey, but a crying and a tearing one, so that Cook's \nCourt re-echoes with her shrieks.  Finally, becoming cataleptic, \nshe has to be carried up the narrow staircase like a grand piano.  \nAfter unspeakable suffering, productive of the utmost \nconsternation, she is pronounced, by expresses from the bedroom, \nfree from pain, though much exhausted, in which state of affairs \nMr. Snagsby, trampled and crushed in the piano-forte removal, and \nextremely timid and feeble, ventures to come out from behind the \ndoor in the drawing-room.\n\nAll this time Jo has been standing on the spot where he woke up, \never picking his cap and putting bits of fur in his mouth.  He \nspits them out with a remorseful air, for he feels that it is in \nhis nature to be an unimprovable reprobate and that it's no good \nHIS trying to keep awake, for HE won't never know nothink.  Though \nit may be, Jo, that there is a history so interesting and affecting \neven to minds as near the brutes as thine, recording deeds done on \nthis earth for common men, that if the Chadbands, removing their \nown persons from the light, would but show it thee in simple \nreverence, would but leave it unimproved, would but regard it as \nbeing eloquent enough without their modest aid--it might hold thee \nawake, and thou might learn from it yet!\n\nJo never heard of any such book.  Its compilers and the Reverend \nChadband are all one to him, except that he knows the Reverend \nChadband and would rather run away from him for an hour than hear \nhim talk for five minutes.  \"It an't no good my waiting here no \nlonger,\" thinks Jo.  \"Mr. Snagsby an't a-going to say nothink to me \nto-night.\"  And downstairs he shuffles.\n\nBut downstairs is the charitable Guster, holding by the handrail of \nthe kitchen stairs and warding off a fit, as yet doubtfully, the \nsame having been induced by Mrs. Snagsby's screaming.  She has her \nown supper of bread and cheese to hand to Jo, with whom she \nventures to interchange a word or so for the first time.\n\n\"Here's something to eat, poor boy,\" says Guster.\n\n\"Thank'ee, mum,\" says Jo.\n\n\"Are you hungry?\"\n\n\"Jist!\" says Jo.\n\n\"What's gone of your father and your mother, eh?\"\n\nJo stops in the middle of a bite and looks petrified.  For this \norphan charge of the Christian saint whose shrine was at Tooting \nhas patted him on the shoulder, and it is the first time in his \nlife that any decent hand has been so laid upon him.\n\n\"I never know'd nothink about 'em,\" says Jo.\n\n\"No more didn't I of mine,\" cries Guster.  She is repressing \nsymptoms favourable to the fit when she seems to take alarm at \nsomething and vanishes down the stairs.\n\n\"Jo,\" whispers the law-stationer softly as the boy lingers on the \nstep.\n\n\"Here I am, Mr. Snagsby!\"\n\n\"I didn't know you were gone--there's another half-crown, Jo.  It \nwas quite right of you to say nothing about the lady the other \nnight when we were out together.  It would breed trouble.  You \ncan't be too quiet, Jo.\"\n\n\"I am fly, master!\"\n\nAnd so, good night.\n\nA ghostly shade, frilled and night-capped, follows the law-\nstationer to the room he came from and glides higher up.  And \nhenceforth he begins, go where he will, to be attended by another \nshadow than his own, hardly less constant than his own, hardly less \nquiet than his own.  And into whatsoever atmosphere of secrecy his \nown shadow may pass, let all concerned in the secrecy beware!  For \nthe watchful Mrs. Snagsby is there too--bone of his bone, flesh of \nhis flesh, shadow of his shadow.\n\n\n\nCHAPTER XXVI\n\nSharpshooters\n\n\nWintry morning, looking with dull eyes and sallow face upon the \nneighbourhood of Leicester Square, finds its inhabitants unwilling \nto get out of bed.  Many of them are not early risers at the \nbrightest of times, being birds of night who roost when the sun is \nhigh and are wide awake and keen for prey when the stars shine out.  \nBehind dingy blind and curtain, in upper story and garret, skulking \nmore or less under false names, false hair, false titles, false \njewellery, and false histories, a colony of brigands lie in their \nfirst sleep.  Gentlemen of the green-baize road who could discourse \nfrom personal experience of foreign galleys and home treadmills; \nspies of strong governments that eternally quake with weakness and \nmiserable fear, broken traitors, cowards, bullies, gamesters, \nshufflers, swindlers, and false witnesses; some not unmarked by the \nbranding-iron beneath their dirty braid; all with more cruelty in \nthem than was in Nero, and more crime than is in Newgate.  For \nhowsoever bad the devil can be in fustian or smock-frock (and he \ncan be very bad in both), he is a more designing, callous, and \nintolerable devil when he sticks a pin in his shirt-front, calls \nhimself a gentleman, backs a card or colour, plays a game or so of \nbilliards, and knows a little about bills and promissory notes than \nin any other form he wears.  And in such form Mr. Bucket shall find \nhim, when he will, still pervading the tributary channels of \nLeicester Square.\n\nBut the wintry morning wants him not and wakes him not.  It wakes \nMr. George of the shooting gallery and his familiar.  They arise, \nroll up and stow away their mattresses.  Mr. George, having shaved \nhimself before a looking-glass of minute proportions, then marches \nout, bare-headed and bare-chested, to the pump in the little yard \nand anon comes back shining with yellow soap, friction, drifting \nrain, and exceedingly cold water.  As he rubs himself upon a large \njack-towel, blowing like a military sort of diver just come up, his \nhair curling tighter and tighter on his sunburnt temples the more \nhe rubs it so that it looks as if it never could be loosened by any \nless coercive instrument than an iron rake or a curry-comb--as he \nrubs, and puffs, and polishes, and blows, turning his head from \nside to side the more conveniently to excoriate his throat, and \nstanding with his body well bent forward to keep the wet from his \nmartial legs, Phil, on his knees lighting a fire, looks round as if \nit were enough washing for him to see all that done, and sufficient \nrenovation for one day to take in the superfluous health his master \nthrows off.\n\nWhen Mr. George is dry, he goes to work to brush his head with two \nhard brushes at once, to that unmerciful degree that Phil, \nshouldering his way round the gallery in the act of sweeping it, \nwinks with sympathy.  This chafing over, the ornamental part of Mr. \nGeorge's toilet is soon performed.  He fills his pipe, lights it, \nand marches up and down smoking, as his custom is, while Phil, \nraising a powerful odour of hot rolls and coffee, prepares \nbreakfast.  He smokes gravely and marches in slow time.  Perhaps \nthis morning's pipe is devoted to the memory of Gridley in his \ngrave.\n\n\"And so, Phil,\" says George of the shooting gallery after several \nturns in silence, \"you were dreaming of the country last night?\"\n\nPhil, by the by, said as much in a tone of surprise as he scrambled \nout of bed.\n\n\"Yes, guv'ner.\"\n\n\"What was it like?\"\n\n\"I hardly know what it was like, guv'ner,\" said Phil, considering.\n\n\"How did you know it was the country?\"\n\n\"On account of the grass, I think.  And the swans upon it,\" says \nPhil after further consideration.\n\n\"What were the swans doing on the grass?\"\n\n\"They was a-eating of it, I expect,\" says Phil.\n\nThe master resumes his march, and the man resumes his preparation \nof breakfast.  It is not necessarily a lengthened preparation, \nbeing limited to the setting forth of very simple breakfast \nrequisites for two and the broiling of a rasher of bacon at the \nfire in the rusty grate; but as Phil has to sidle round a \nconsiderable part of the gallery for every object he wants, and \nnever brings two objects at once, it takes time under the \ncircumstances.  At length the breakfast is ready.  Phil announcing \nit, Mr. George knocks the ashes out of his pipe on the hob, stands \nhis pipe itself in the chimney corner, and sits down to the meal.  \nWhen he has helped himself, Phil follows suit, sitting at the \nextreme end of the little oblong table and taking his plate on his \nknees.  Either in humility, or to hide his blackened hands, or \nbecause it is his natural manner of eating.\n\n\"The country,\" says Mr. George, plying his knife and fork; \"why, I \nsuppose you never clapped your eyes on the country, Phil?\"\n\n\"I see the marshes once,\" says Phil, contentedly eating his \nbreakfast.\n\n\"What marshes?\"\n\n\"THE marshes, commander,\" returns Phil.\n\n\"Where are they?\"\n\n\"I don't know where they are,\" says Phil; \"but I see 'em, guv'ner.  \nThey was flat.  And miste.\"\n\nGovernor and commander are interchangeable terms with Phil, \nexpressive of the same respect and deference and applicable to \nnobody but Mr. George.\n\n\"I was born in the country, Phil.\"\n\n\"Was you indeed, commander?\"\n\n\"Yes.  And bred there.\"\n\nPhil elevates his one eyebrow, and after respectfully staring at \nhis master to express interest, swallows a great gulp of coffee, \nstill staring at him.\n\n\"There's not a bird's note that I don't know,\" says Mr. George.  \n\"Not many an English leaf or berry that I couldn't name.  Not many \na tree that I couldn't climb yet if I was put to it.  I was a real \ncountry boy, once.  My good mother lived in the country.\"\n\n\"She must have been a fine old lady, guv'ner,\" Phil observes.\n\n\"Aye! And not so old either, five and thirty years ago,\" says Mr. \nGeorge.  \"But I'll wager that at ninety she would be near as \nupright as me, and near as broad across the shoulders.\"\n\n\"Did she die at ninety, guv'ner?\" inquires Phil.\n\n\"No.  Bosh! Let her rest in peace, God bless her!\" says the \ntrooper.  \"What set me on about country boys, and runaways, and \ngood-for-nothings?  You, to be sure!  So you never clapped your \neyes upon the country--marshes and dreams excepted.  Eh?\"\n\nPhil shakes his head.\n\n\"Do you want to see it?\"\n\n\"N-no, I don't know as I do, particular,\" says Phil.\n\n\"The town's enough for you, eh?\"\n\n\"Why, you see, commander,\" says Phil, \"I ain't acquainted with \nanythink else, and I doubt if I ain't a-getting too old to take to \nnovelties.\"\n\n\"How old ARE you, Phil?\" asks the trooper, pausing as he conveys \nhis smoking saucer to his lips.\n\n\"I'm something with a eight in it,\" says Phil.  \"It can't be \neighty.  Nor yet eighteen.  It's betwixt 'em, somewheres.\"\n\nMr. George, slowly putting down his saucer without tasting its \ncontents, is laughingly beginning, \"Why, what the deuce, Phil--\" \nwhen he stops, seeing that Phil is counting on his dirty fingers.\n\n\"I was just eight,\" says Phil, \"agreeable to the parish \ncalculation, when I went with the tinker.  I was sent on a errand, \nand I see him a-sittin under a old buildin with a fire all to \nhimself wery comfortable, and he says, 'Would you like to come \nalong a me, my man?'  I says 'Yes,' and him and me and the fire \ngoes home to Clerkenwell together.  That was April Fool Day.  I was \nable to count up to ten; and when April Fool Day come round again, \nI says to myself, 'Now, old chap, you're one and a eight in it.'  \nApril Fool Day after that, I says, 'Now, old chap, you're two and a \neight in it.'  In course of time, I come to ten and a eight in it; \ntwo tens and a eight in it.  When it got so high, it got the upper \nhand of me, but this is how I always know there's a eight in it.\"\n\n\"Ah!\" says Mr. George, resuming his breakfast.  \"And where's the \ntinker?\"\n\n\"Drink put him in the hospital, guv'ner, and the hospital put him--\nin a glass-case, I HAVE heerd,\" Phil replies mysteriously.\n\n\"By that means you got promotion?  Took the business, Phil?\"\n\n\"Yes, commander, I took the business.  Such as it was.  It wasn't \nmuch of a beat--round Saffron Hill, Hatton Garden, Clerkenwell, \nSmiffeld, and there--poor neighbourhood, where they uses up the \nkettles till they're past mending.  Most of the tramping tinkers \nused to come and lodge at our place; that was the best part of my \nmaster's earnings.  But they didn't come to me.  I warn't like him.  \nHe could sing 'em a good song.  I couldn't!  He could play 'em a \ntune on any sort of pot you please, so as it was iron or block tin.  \nI never could do nothing with a pot but mend it or bile it--never \nhad a note of music in me.  Besides, I was too ill-looking, and \ntheir wives complained of me.\"\n\n\"They were mighty particular.  You would pass muster in a crowd, \nPhil!\" says the trooper with a pleasant smile.\n\n\"No, guv'ner,\" returns Phil, shaking his head.  \"No, I shouldn't.  \nI was passable enough when I went with the tinker, though nothing \nto boast of then; but what with blowing the fire with my mouth when \nI was young, and spileing my complexion, and singeing my hair off, \nand swallering the smoke, and what with being nat'rally unfort'nate \nin the way of running against hot metal and marking myself by sich \nmeans, and what with having turn-ups with the tinker as I got \nolder, almost whenever he was too far gone in drink--which was \nalmost always--my beauty was queer, wery queer, even at that time.  \nAs to since, what with a dozen years in a dark forge where the men \nwas given to larking, and what with being scorched in a accident at \na gas-works, and what with being blowed out of winder case-filling \nat the firework business, I am ugly enough to be made a show on!\"\n\nResigning himself to which condition with a perfectly satisfied \nmanner, Phil begs the favour of another cup of coffee.  While \ndrinking it, he says, \"It was after the case-filling blow-up when I \nfirst see you, commander.  You remember?\"\n\n\"I remember, Phil.  You were walking along in the sun.\"\n\n\"Crawling, guv'ner, again a wall--\"\n\n\"True, Phil--shouldering your way on--\"\n\n\"In a night-cap!\" exclaims Phil, excited.\n\n\"In a night-cap--\"\n\n\"And hobbling with a couple of sticks!\" cries Phil, still more \nexcited.\n\n\"With a couple of sticks.  When--\"\n\n\"When you stops, you know,\" cries Phil, putting down his cup and \nsaucer and hastily removing his plate from his knees, \"and says to \nme, 'What, comrade!  You have been in the wars!'  I didn't say much \nto you, commander, then, for I was took by surprise that a person \nso strong and healthy and bold as you was should stop to speak to \nsuch a limping bag of bones as I was.  But you says to me, says \nyou, delivering it out of your chest as hearty as possible, so that \nit was like a glass of something hot, 'What accident have you met \nwith?  You have been badly hurt.  What's amiss, old boy?  Cheer up, \nand tell us about it!'  Cheer up!  I was cheered already!  I says \nas much to you, you says more to me, I says more to you, you says \nmore to me, and here I am, commander!  Here I am, commander!\" cries \nPhil, who has started from his chair and unaccountably begun to \nsidle away.  \"If a mark's wanted, or if it will improve the \nbusiness, let the customers take aim at me.  They can't spoil MY \nbeauty.  I'M all right.  Come on!  If they want a man to box at, \nlet 'em box at me.  Let 'em knock me well about the head.  I don't \nmind.  If they want a light-weight to be throwed for practice, \nCornwall, Devonshire, or Lancashire, let 'em throw me.  They won't \nhurt ME.  I have been throwed, all sorts of styles, all my life!\"\n\nWith this unexpected speech, energetically delivered and \naccompanied by action illustrative of the various exercises \nreferred to, Phil Squod shoulders his way round three sides of the \ngallery, and abruptly tacking off at his commander, makes a butt at \nhim with his head, intended to express devotion to his service.  He \nthen begins to clear away the breakfast.\n\nMr. George, after laughing cheerfully and clapping him on the \nshoulder, assists in these arrangements and helps to get the \ngallery into business order.  That done, he takes a turn at the \ndumb-bells, and afterwards weighing himself and opining that he is \ngetting \"too fleshy,\" engages with great gravity in solitary \nbroadsword practice.  Meanwhile Phil has fallen to work at his \nusual table, where he screws and unscrews, and cleans, and files, \nand whistles into small apertures, and blackens himself more and \nmore, and seems to do and undo everything that can be done and \nundone about a gun.\n\nMaster and man are at length disturbed by footsteps in the passage, \nwhere they make an unusual sound, denoting the arrival of unusual \ncompany.  These steps, advancing nearer and nearer to the gallery, \nbring into it a group at first sight scarcely reconcilable with any \nday in the year but the fifth of November.\n\nIt consists of a limp and ugly figure carried in a chair by two \nbearers and attended by a lean female with a face like a pinched \nmask, who might be expected immediately to recite the popular \nverses commemorative of the time when they did contrive to blow Old \nEngland up alive but for her keeping her lips tightly and defiantly \nclosed as the chair is put down.  At which point the figure in it \ngasping, \"O Lord!  Oh, dear me!  I am shaken!\" adds, \"How de do, my \ndear friend, how de do?\"  Mr. George then descries, in the \nprocession, the venerable Mr. Smallweed out for an airing, attended \nby his granddaughter Judy as body-guard.\n\n\"Mr. George, my dear friend,\" says Grandfather Smallweed, removing \nhis right arm from the neck of one of his bearers, whom he has \nnearly throttled coming along, \"how de do?  You're surprised to see \nme, my dear friend.\"\n\n\"I should hardly have been more surprised to have seen your friend \nin the city,\" returns Mr. George.\n\n\"I am very seldom out,\" pants Mr. Smallweed.  \"I haven't been out \nfor many months.  It's inconvenient--and it comes expensive.  But I \nlonged so much to see you, my dear Mr. George.  How de do, sir?\"\n\n\"I am well enough,\" says Mr. George.  \"I hope you are the same.\"\n\n\"You can't be too well, my dear friend.\"  Mr. Smallweed takes him \nby both hands.  \"I have brought my granddaughter Judy.  I couldn't \nkeep her away.  She longed so much to see you.\"\n\n\"Hum!  She hears it calmly!\" mutters Mr. George.\n\n\"So we got a hackney-cab, and put a chair in it, and just round the \ncorner they lifted me out of the cab and into the chair, and \ncarried me here that I might see my dear friend in his own \nestablishment!  This,\" says Grandfather Smallweed, alluding to the \nbearer, who has been in danger of strangulation and who withdraws \nadjusting his windpipe, \"is the driver of the cab.  He has nothing \nextra.  It is by agreement included in his fare.  This person,\" the \nother bearer, \"we engaged in the street outside for a pint of beer.  \nWhich is twopence.  Judy, give the person twopence.  I was not sure \nyou had a workman of your own here, my dear friend, or we needn't \nhave employed this person.\"\n\nGrandfather Smallweed refers to Phil with a glance of considerable \nterror and a half-subdued \"O Lord!  Oh, dear me!\"  Nor in his \napprehension, on the surface of things, without some reason, for \nPhil, who has never beheld the apparition in the black-velvet cap \nbefore, has stopped short with a gun in his hand with much of the \nair of a dead shot intent on picking Mr. Smallweed off as an ugly \nold bird of the crow species.\n\n\"Judy, my child,\" says Grandfather Smallweed, \"give the person his \ntwopence.  It's a great deal for what he has done.\"\n\nThe person, who is one of those extraordinary specimens of human \nfungus that spring up spontaneously in the western streets of \nLondon, ready dressed in an old red jacket, with a \"mission\" for \nholding horses and calling coaches, received his twopence with \nanything but transport, tosses the money into the air, catches it \nover-handed, and retires.\n\n\"My dear Mr. George,\" says Grandfather Smallweed, \"would you be so \nkind as help to carry me to the fire?  I am accustomed to a fire, \nand I am an old man, and I soon chill.  Oh, dear me!\"\n\nHis closing exclamation is jerked out of the venerable gentleman by \nthe suddenness with which Mr. Squod, like a genie, catches him up, \nchair and all, and deposits him on the hearth-stone.\n\n\"O Lord!\" says Mr. Smallweed, panting.  \"Oh, dear me!  Oh, my \nstars!  My dear friend, your workman is very strong--and very \nprompt.  O Lord, he is very prompt!  Judy, draw me back a little.  \nI'm being scorched in the legs,\" which indeed is testified to the \nnoses of all present by the smell of his worsted stockings.\n\nThe gentle Judy, having backed her grandfather a little way from \nthe fire, and having shaken him up as usual, and having released \nhis overshadowed eye from its black-velvet extinguisher, Mr. \nSmallweed again says, \"Oh, dear me!  O Lord!\" and looking about and \nmeeting Mr. George's glance, again stretches out both hands.\n\n\"My dear friend!  So happy in this meeting!  And this is your \nestablishment?  It's a delightful place.  It's a picture!  You \nnever find that anything goes off here accidentally, do you, my \ndear friend?\" adds Grandfather Smallweed, very ill at ease.\n\n\"No, no.  No fear of that.\"\n\n\"And your workman.  He--Oh, dear me!--he never lets anything off \nwithout meaning it, does he, my dear friend?\"\n\n\"He has never hurt anybody but himself,\" says Mr. George, smiling.\n\n\"But he might, you know.  He seems to have hurt himself a good \ndeal, and he might hurt somebody else,\" the old gentleman returns.  \n\"He mightn't mean it--or he even might.  Mr. George, will you order \nhim to leave his infernal firearms alone and go away?\"\n\nObedient to a nod from the trooper, Phil retires, empty-handed, to \nthe other end of the gallery.  Mr. Smallweed, reassured, falls to \nrubbing his legs.\n\n\"And you're doing well, Mr. George?\" he says to the trooper, \nsquarely standing faced about towards him with his broadsword in \nhis hand.  \"You are prospering, please the Powers?\"\n\nMr. George answers with a cool nod, adding, \"Go on.  You have not \ncome to say that, I know.\"\n\n\"You are so sprightly, Mr. George,\" returns the venerable \ngrandfather.  \"You are such good company.\"\n\n\"Ha ha!  Go on!\" says Mr. George.\n\n\"My dear friend!  But that sword looks awful gleaming and sharp.  \nIt might cut somebody, by accident.  It makes me shiver, Mr. \nGeorge.  Curse him!\" says the excellent old gentleman apart to Judy \nas the trooper takes a step or two away to lay it aside.  \"He owes \nme money, and might think of paying off old scores in this \nmurdering place.  I wish your brimstone grandmother was here, and \nhe'd shave her head off.\"\n\nMr. George, returning, folds his arms, and looking down at the old \nman, sliding every moment lower and lower in his chair, says \nquietly, \"Now for it!\"\n\n\"Ho!\" cries Mr. Smallweed, rubbing his hands with an artful \nchuckle.  \"Yes.  Now for it.  Now for what, my dear friend?\"\n\n\"For a pipe,\" says Mr. George, who with great composure sets his \nchair in the chimney-corner, takes his pipe from the grate, fills \nit and lights it, and falls to smoking peacefully.\n\nThis tends to the discomfiture of Mr. Smallweed, who finds it so \ndifficult to resume his object, whatever it may be, that he becomes \nexasperated and secretly claws the air with an impotent \nvindictiveness expressive of an intense desire to tear and rend the \nvisage of Mr. George.  As the excellent old gentleman's nails are \nlong and leaden, and his hands lean and veinous, and his eyes green \nand watery; and, over and above this, as he continues, while he \nclaws, to slide down in his chair and to collapse into a shapeless \nbundle, he becomes such a ghastly spectacle, even in the accustomed \neyes of Judy, that that young virgin pounces at him with something \nmore than the ardour of affection and so shakes him up and pats and \npokes him in divers parts of his body, but particularly in that \npart which the science of self-defence would call his wind, that in \nhis grievous distress he utters enforced sounds like a paviour's \nrammer.\n\nWhen Judy has by these means set him up again in his chair, with a \nwhite face and a frosty nose (but still clawing), she stretches out \nher weazen forefinger and gives Mr. George one poke in the back.  \nThe trooper raising his head, she makes another poke at her \nesteemed grandfather, and having thus brought them together, stares \nrigidly at the fire.\n\n\"Aye, aye!  Ho, ho!  U--u--u--ugh!\" chatters Grandfather Smallweed, \nswallowing his rage.  \"My dear friend!\"  (still clawing).\n\n\"I tell you what,\" says Mr. George.  \"If you want to converse with \nme, you must speak out.  I am one of the roughs, and I can't go \nabout and about.  I haven't the art to do it.  I am not clever \nenough.  It don't suit me.  When you go winding round and round \nme,\" says the trooper, putting his pipe between his lips again, \n\"damme, if I don't feel as if I was being smothered!\"\n\nAnd he inflates his broad chest to its utmost extent as if to \nassure himself that he is not smothered yet.\n\n\"If you have come to give me a friendly call,\" continues Mr. \nGeorge, \"I am obliged to you; how are you?  If you have come to see \nwhether there's any property on the premises, look about you; you \nare welcome.  If you want to out with something, out with it!\"\n\nThe blooming Judy, without removing her gaze from the fire, gives \nher grandfather one ghostly poke.\n\n\"You see!  It's her opinion too.  And why the devil that young \nwoman won't sit down like a Christian,\" says Mr. George with his \neyes musingly fixed on Judy, \"I can't comprehend.\"\n\n\"She keeps at my side to attend to me, sir,\" says Grandfather \nSmallweed.  \"I am an old man, my dear Mr. George, and I need some \nattention.  I can carry my years; I am not a brimstone poll-parrot\" \n(snarling and looking unconsciously for the cushion), \"but I need \nattention, my dear friend.\"\n\n\"Well!\" returns the trooper, wheeling his chair to face the old \nman.  \"Now then?\"\n\n\"My friend in the city, Mr. George, has done a little business with \na pupil of yours.\"\n\n\"Has he?\" says Mr. George.  \"I am sorry to hear it.\"\n\n\"Yes, sir.\" Grandfather Smallweed rubs his legs.  \"He is a fine \nyoung soldier now, Mr. George, by the name of Carstone.  Friends \ncame forward and paid it all up, honourable.\"\n\n\"Did they?\" returns Mr. George.  \"Do you think your friend in the \ncity would like a piece of advice?\"\n\n\"I think he would, my dear friend.  From you.\"\n\n\"I advise him, then, to do no more business in that quarter.  \nThere's no more to be got by it.  The young gentleman, to my \nknowledge, is brought to a dead halt.\"\n\n\"No, no, my dear friend.  No, no, Mr. George.  No, no, no, sir,\" \nremonstrates Grandfather Smallweed, cunningly rubbing his spare \nlegs.  \"Not quite a dead halt, I think.  He has good friends, and \nhe is good for his pay, and he is good for the selling price of his \ncommission, and he is good for his chance in a lawsuit, and he is \ngood for his chance in a wife, and--oh, do you know, Mr. George, I \nthink my friend would consider the young gentleman good for \nsomething yet?\" says Grandfather Smallweed, turning up his velvet \ncap and scratching his ear like a monkey.\n\nMr. George, who has put aside his pipe and sits with an arm on his \nchair-back, beats a tattoo on the ground with his right foot as if \nhe were not particularly pleased with the turn the conversation has \ntaken.\n\n\"But to pass from one subject to another,\" resumes Mr. Smallweed.  \n\"'To promote the conversation, as a joker might say.  To pass, Mr. \nGeorge, from the ensign to the captain.\"\n\n\"What are you up to, now?\" asks Mr. George, pausing with a frown in \nstroking the recollection of his moustache.  \"What captain?\"\n\n\"Our captain.  The captain we know of.  Captain Hawdon.\"\n\n\"Oh! That's it, is it?\" says Mr. George with a low whistle as he \nsees both grandfather and granddaughter looking hard at him.  \"You \nare there!  Well?  What about it?  Come, I won't be smothered any \nmore.  Speak!\"\n\n\"My dear friend,\" returns the old man, \"I was applied--Judy, shake \nme up a little!--I was applied to yesterday about the captain, and \nmy opinion still is that the captain is not dead.\"\n\n\"Bosh!\" observes Mr. George.\n\n\"What was your remark, my dear friend?\" inquires the old man with \nhis hand to his ear.\n\n\"Bosh!\"\n\n\"Ho!\" says Grandfather Smallweed.  \"Mr. George, of my opinion you \ncan judge for yourself according to the questions asked of me and \nthe reasons given for asking 'em.  Now, what do you think the \nlawyer making the inquiries wants?\"\n\n\"A job,\" says Mr. George.\n\n\"Nothing of the kind!\"\n\n\"Can't be a lawyer, then,\" says Mr. George, folding his arms with \nan air of confirmed resolution.\n\n\"My dear friend, he is a lawyer, and a famous one.  He wants to see \nsome fragment in Captain Hawdon's writing.  He don't want to keep \nit.  He only wants to see it and compare it with a writing in his \npossession.\"\n\n\"Well?\"\n\n\"Well, Mr. George.  Happening to remember the advertisement \nconcerning Captain Hawdon and any information that could be given \nrespecting him, he looked it up and came to me--just as you did, my \ndear friend.  WILL you shake hands?  So glad you came that day!  I \nshould have missed forming such a friendship if you hadn't come!\"\n\n\"Well, Mr. Smallweed?\" says Mr. George again after going through \nthe ceremony with some stiffness.\n\n\"I had no such thing.  I have nothing but his signature.  Plague \npestilence and famine, battle murder and sudden death upon him,\" \nsays the old man, making a curse out of one of his few remembrances \nof a prayer and squeezing up his velvet cap between his angry \nhands, \"I have half a million of his signatures, I think!  But \nyou,\" breathlessly recovering his mildness of speech as Judy re-\nadjusts the cap on his skittle-ball of a head, \"you, my dear Mr. \nGeorge, are likely to have some letter or paper that would suit the \npurpose.  Anything would suit the purpose, written in the hand.\"\n\n\"Some writing in that hand,\" says the trooper, pondering; \"may be, \nI have.\"\n\n\"My dearest friend!\"\n\n\"May be, I have not.\"\n\n\"Ho!\" says Grandfather Smallweed, crest-fallen.\n\n\"But if I had bushels of it, I would not show as much as would make \na cartridge without knowing why.\"\n\n\"Sir, I have told you why.  My dear Mr. George, I have told you \nwhy.\"\n\n\"Not enough,\" says the trooper, shaking his head.  \"I must know \nmore, and approve it.\"\n\n\"Then, will you come to the lawyer?  My dear friend, will you come \nand see the gentleman?\" urges Grandfather Smallweed, pulling out a \nlean old silver watch with hands like the leg of a skeleton.  \"I \ntold him it was probable I might call upon him between ten and \neleven this forenoon, and it's now half after ten.  Will you come \nand see the gentleman, Mr. George?\"\n\n\"Hum!\" says he gravely.  \"I don't mind that.  Though why this \nshould concern you so much, I don't know.\"\n\n\"Everything concerns me that has a chance in it of bringing \nanything to light about him.  Didn't he take us all in?  Didn't he \nowe us immense sums, all round?  Concern me?  Who can anything \nabout him concern more than me?  Not, my dear friend,\" says \nGrandfather Smallweed, lowering his tone, \"that I want YOU to \nbetray anything.  Far from it.  Are you ready to come, my dear \nfriend?\"\n\n\"Aye! I'll come in a moment.  I promise nothing, you know.\"\n\n\"No, my dear Mr. George; no.\"\n\n\"And you mean to say you're going to give me a lift to this place, \nwherever it is, without charging for it?\" Mr. George inquires, \ngetting his hat and thick wash-leather gloves.\n\nThis pleasantry so tickles Mr. Smallweed that he laughs, long and \nlow, before the fire.  But ever while he laughs, he glances over \nhis paralytic shoulder at Mr. George and eagerly watches him as he \nunlocks the padlock of a homely cupboard at the distant end of the \ngallery, looks here and there upon the higher shelves, and \nultimately takes something out with a rustling of paper, folds it, \nand puts it in his breast.  Then Judy pokes Mr. Smallweed once, and \nMr. Smallweed pokes Judy once.\n\n\"I am ready,\" says the trooper, coming back.  \"Phil, you can carry \nthis old gentleman to his coach, and make nothing of him.\"\n\n\"Oh, dear me!  O Lord!  Stop a moment!\" says Mr. Smallweed.  \"He's \nso very prompt!  Are you sure you can do it carefully, my worthy \nman?\"\n\nPhil makes no reply, but seizing the chair and its load, sidles \naway, tightly bugged by the now speechless Mr. Smallweed, and bolts \nalong the passage as if he had an acceptable commission to carry \nthe old gentleman to the nearest volcano.  His shorter trust, \nhowever, terminating at the cab, he deposits him there; and the \nfair Judy takes her place beside him, and the chair embellishes the \nroof, and Mr. George takes the vacant place upon the box.\n\nMr. George is quite confounded by the spectacle he beholds from \ntime to time as he peeps into the cab through the window behind \nhim, where the grim Judy is always motionless, and the old \ngentleman with his cap over one eye is always sliding off the seat \ninto the straw and looking upward at him out of his other eye with \na helpless expression of being jolted in the back.\n\n\n\nCHAPTER XXVII\n\nMore Old Soldiers Than One\n\n\nMr. George has not far to ride with folded arms upon the box, for \ntheir destination is Lincoln's Inn Fields.  When the driver stops \nhis horses, Mr. George alights, and looking in at the window, says, \n\"What, Mr. Tulkinghorn's your man, is he?\"\n\n\"Yes, my dear friend.  Do you know him, Mr. George?\"\n\n\"Why, I have heard of him--seen him too, I think.  But I don't know \nhim, and he don't know me.\"\n\nThere ensues the carrying of Mr. Smallweed upstairs, which is done \nto perfection with the trooper's help.  He is borne into Mr. \nTulkinghorn's great room and deposited on the Turkey rug before the \nfire.  Mr. Tulkinghorn is not within at the present moment but will \nbe back directly.  The occupant of the pew in the hall, having said \nthus much, stirs the fire and leaves the triumvirate to warm \nthemselves.\n\nMr. George is mightily curious in respect of the room.  He looks up \nat the painted ceiling, looks round at the old law-books, \ncontemplates the portraits of the great clients, reads aloud the \nnames on the boxes.\n\n\"'Sir Leicester Dedlock, Baronet,'\" Mr. George reads thoughtfully.  \n\"Ha!  'Manor of Chesney Wold.'  Humph!\"  Mr. George stands looking \nat these boxes a long while--as if they were pictures--and comes \nback to the fire repeating, \"Sir Leicester Dedlock, Baronet, and \nManor of Chesney Wold, hey?\"\n\n\"Worth a mint of money, Mr. George!\" whispers Grandfather \nSmallweed, rubbing his legs.  \"Powerfully rich!\"\n\n\"Who do you mean?  This old gentleman, or the Baronet?\"\n\n\"This gentleman, this gentleman.\"\n\n\"So I have heard; and knows a thing or two, I'll hold a wager.  Not \nbad quarters, either,\" says Mr. George, looking round again.  \"See \nthe strong-box yonder!\"\n\nThis reply is cut short by Mr. Tulkinghorn's arrival.  There is no \nchange in him, of course.  Rustily drest, with his spectacles in \nhis hand, and their very case worn threadbare.  In manner, close \nand dry.  In voice, husky and low.  In face, watchful behind a \nblind; habitually not uncensorious and contemptuous perhaps.  The \npeerage may have warmer worshippers and faithfuller believers than \nMr. Tulkinghorn, after all, if everything were known.\n\n\"Good morning, Mr. Smallweed, good morning!\" he says as he comes \nin.  \"You have brought the sergeant, I see.  Sit down, sergeant.\"\n\nAs Mr. Tulkinghorn takes off his gloves and puts them in his hat, \nhe looks with half-closed eyes across the room to where the trooper \nstands and says within himself perchance, \"You'll do, my friend!\"\n\n\"Sit down, sergeant,\" he repeats as he comes to his table, which is \nset on one side of the fire, and takes his easy-chair.  \"Cold and \nraw this morning, cold and raw!\"  Mr. Tulkinghorn warms before the \nbars, alternately, the palms and knuckles of his hands and looks \n(from behind that blind which is always down) at the trio sitting \nin a little semicircle before him.\n\n\"Now, I can feel what I am about\" (as perhaps he can in two \nsenses), \"Mr. Smallweed.\"  The old gentleman is newly shaken up by \nJudy to bear his part in the conversation.  \"You have brought our \ngood friend the sergeant, I see.\"\n\n\"Yes, sir,\" returns Mr. Smallweed, very servile to the lawyer's \nwealth and influence.\n\n\"And what does the sergeant say about this business?\"\n\n\"Mr. George,\" says Grandfather Smallweed with a tremulous wave of \nhis shrivelled hand, \"this is the gentleman, sir.\"\n\nMr. George salutes the gentleman but otherwise sits bolt upright \nand profoundly silent--very forward in his chair, as if the full \ncomplement of regulation appendages for a field-day hung about him.\n\nMr. Tulkinghorn proceeds, \"Well, George--I believe your name is \nGeorge?\"\n\n\"It is so, Sir.\"\n\n\"What do you say, George?\"\n\n\"I ask your pardon, sir,\" returns the trooper, \"but I should wish \nto know what YOU say?\"\n\n\"Do you mean in point of reward?\"\n\n\"I mean in point of everything, sir.\"\n\nThis is so very trying to Mr. Smallweed's temper that he suddenly \nbreaks out with \"You're a brimstone beast!\" and as suddenly asks \npardon of Mr. Tulkinghorn, excusing himself for this slip of the \ntongue by saying to Judy, \"I was thinking of your grandmother, my \ndear.\"\n\n\"I supposed, sergeant,\" Mr. Tulkinghorn resumes as he leans on one \nside of his chair and crosses his legs, \"that Mr. Smallweed might \nhave sufficiently explained the matter.  It lies in the smallest \ncompass, however.  You served under Captain Hawdon at one time, and \nwere his attendant in illness, and rendered him many little \nservices, and were rather in his confidence, I am told.  That is \nso, is it not?\"\n\n\"Yes, sir, that is so,\" says Mr. George with military brevity.\n\n\"Therefore you may happen to have in your possession something--\nanything, no matter what; accounts, instructions, orders, a letter, \nanything--in Captain Hawdon's writing.  I wish to compare his \nwriting with some that I have.  If you can give me the opportunity, \nyou shall be rewarded for your trouble.  Three, four, five, \nguineas, you would consider handsome, I dare say.\"\n\n\"Noble, my dear friend!\" cries Grandfather Smallweed, screwing up \nhis eyes.\n\n\"If not, say how much more, in your conscience as a soldier, you \ncan demand.  There is no need for you to part with the writing, \nagainst your inclination--though I should prefer to have it.\"\n\nMr. George sits squared in exactly the same attitude, looks at the \npainted ceiling, and says never a word.  The irascible Mr. \nSmallweed scratches the air.\n\n\"The question is,\" says Mr. Tulkinghorn in his methodical, subdued, \nuninterested way, \"first, whether you have any of Captain Hawdon's \nwriting?\"\n\n\"First, whether I have any of Captain Hawdon's writing, sir,\" \nrepeats Mr. George.\n\n\"Secondly, what will satisfy you for the trouble of producing it?\"\n\n\"Secondly, what will satisfy me for the trouble of producing it, \nsir,\" repeats Mr. George.\n\n\"Thirdly, you can judge for yourself whether it is at all like \nthat,\" says Mr. Tulkinghorn, suddenly handing him some sheets of \nwritten paper tied together.\n\n\"Whether it is at all like that, sir.  Just so,\" repeats Mr. \nGeorge.\n\nAll three repetitions Mr. George pronounces in a mechanical manner, \nlooking straight at Mr. Tulkinghorn; nor does he so much as glance \nat the affidavit in Jarndyce and Jarndyce, that has been given to \nhim for his inspection (though he still holds it in his hand), but \ncontinues to look at the lawyer with an air of troubled meditation.\n\n\"Well?\" says Mr. Tulkinghorn.  \"What do you say?\"\n\n\"Well, sir,\" replies Mr. George, rising erect and looking immense, \n\"I would rather, if you'll excuse me, have nothing to do with \nthis.\"\n\nMr. Tulkinghorn, outwardly quite undisturbed, demands, \"Why not?\"\n\n\"Why, sir,\" returns the trooper.  \"Except on military compulsion, I \nam not a man of business.  Among civilians I am what they call in \nScotland a ne'er-do-weel.  I have no head for papers, sir.  I can \nstand any fire better than a fire of cross questions.  I mentioned \nto Mr. Smallweed, only an hour or so ago, that when I come into \nthings of this kind I feel as if I was being smothered.  And that \nis my sensation,\" says Mr. George, looking round upon the company, \n\"at the present moment.\"\n\nWith that, he takes three strides forward to replace the papers on \nthe lawyer's table and three strides backward to resume his former \nstation, where he stands perfectly upright, now looking at the \nground and now at the painted ceillhg, with his hands behind him as \nif to prevent himself from accepting any other document whatever.\n\nUnder this provocation, Mr. Smallweed's favourite adjective of \ndisparagement is so close to his tongue that he begins the words \n\"my dear friend\" with the monosyllable \"brim,\" thus converting the \npossessive pronoun into brimmy and appearing to have an impediment \nin his speech.  Once past this difficulty, however, he exhorts his \ndear friend in the tenderest manner not to be rash, but to do what \nso eminent a gentleman requires, and to do it with a good grace, \nconfident that it must be unobjectionable as well as profitable.  \nMr. Tulkinghorn merely utters an occasional sentence, as, \"You are \nthe best judge of your own interest, sergeant.\"  \"Take care you do \nno harm by this.\"  \"Please yourself, please yourself.\"  \"If you \nknow what you mean, that's quite enough.\"  These he utters with an \nappearance of perfect indifference as he looks over the papers on \nhis table and prepares to write a letter.\n\nMr. George looks distrustfully from the painted ceiling to the \nground, from the ground to Mr. Smallweed, from Mr. Smallweed to Mr. \nTulkinghorn, and from Mr. Tulkinghorn to the painted ceiling again, \noften in his perplexity changing the leg on which he rests.\n\n\"I do assure you, sir,\" says Mr. George, \"not to say it \noffensively, that between you and Mr. Smallweed here, I really am \nbeing smothered fifty times over.  I really am, sir.  I am not a \nmatch for you gentlemen.  Will you allow me to ask why you want to \nsee the captain's hand, in the case that I could find any specimen \nof it?\"\n\nMr. Tulkinghorn quietly shakes his head.  \"No.  If you were a man \nof business, sergeant, you would not need to be informed that there \nare confidential reasons, very harmless in themselves, for many \nsuch wants in the profession to which I belong.  But if you are \nafraid of doing any injury to Captain Hawdon, you may set your mind \nat rest about that.\"\n\n\"Aye!  He is dead, sir.\"\n\n\"IS he?\"  Mr. Tulkinghorn quietly sits down to write.\n\n\"Well, sir,\" says the trooper, looking into his hat after another \ndisconcerted pause, \"I am sorry not to have given you more \nsatisfaction.  If it would be any satisfaction to any one that I \nshould be confirmed in my judgment that I would rather have nothing \nto do with this by a friend of mine who has a better head for \nbusiness than I have, and who is an old soldier, I am willing to \nconsult with him.  I--I really am so completely smothered myself at \npresent,\" says Mr. George, passing his hand hopelessly across his \nbrow, \"that I don't know but what it might be a satisfaction to \nme.\"\n\nMr. Smallweed, hearing that this authority is an old soldier, so \nstrongly inculcates the expediency of the trooper's taking counsel \nwith him, and particularly informing him of its being a question of \nfive guineas or more, that Mr. George engages to go and see him.  \nMr. Tulkinghorn says nothing either way.\n\n\"I'll consult my friend, then, by your leave, sir,\" says the \ntrooper, \"and I'll take the liberty of looking in again with the \nfinal answer in the course of the day.  Mr. Smallweed, if you wish \nto be carried downstairs--\"\n\n\"In a moment, my dear friend, in a moment.  Will you first let me \nspeak half a word with this gentleman in private?\"\n\n\"Certainly, sir.  Don't hurry yourself on my account.\"  The trooper \nretires to a distant part of the room and resumes his curious \ninspection of the boxes, strong and otherwise.\n\n\"If I wasn't as weak as a brimstone baby, sir,\" whispers \nGrandfather Smallweed, drawing the lawyer down to his level by the \nlapel of his coat and flashing some half-quenched green fire out of \nhis angry eyes, \"I'd tear the writing away from him.  He's got it \nbuttoned in his breast.  I saw him put it there.  Judy saw him put \nit there.  Speak up, you crabbed image for the sign of a walking-\nstick shop, and say you saw him put it there!\"\n\nThis vehement conjuration the old gentleman accompanies with such a \nthrust at his granddaughter that it is too much for his strength, \nand he slips away out of his chair, drawing Mr. Tulkinghorn with \nhim, until he is arrested by Judy, and well shaken.\n\n\"Violence will not do for me, my friend,\" Mr. Tulkinghorn then \nremarks coolly.\n\n\"No, no, I know, I know, sir.  But it's chafing and galling--it's--\nit's worse than your smattering chattering magpie of a grandmother,\" \nto the imperturbable Judy, who only looks at the fire, \"to know he \nhas got what's wanted and won't give it up.  He, not to give it up!  \nHE!  A vagabond!  But never mind, sir, never mind.  At the most, he \nhas only his own way for a little while.  I have him periodically \nin a vice.  I'll twist him, sir.  I'll screw him, sir.  If he won't \ndo it with a good grace, I'll make him do it with a bad one, sir!  \nNow, my dear Mr. George,\" says Grandfather Smallweed, winking at \nthe lawyer hideously as he releases him, \"I am ready for your kind \nassistance, my excellent friend!\"\n\nMr. Tulkinghorn, with some shadowy sign of amusement manifesting \nitself through his self-possession, stands on the hearth-rug with \nhis back to the fire, watching the disappearance of Mr. Smallweed \nand acknowledging the trooper's parting salute with one slight nod.\n\nIt is more difficult to get rid of the old gentleman, Mr. George \nfinds, than to bear a hand in carrying him downstairs, for when he \nis replaced in his conveyance, he is so loquacious on the subject \nof the guineas and retains such an affectionate hold of his button\n--having, in truth, a secret longing to rip his coat open and rob \nhim--that some degree of force is necessary on the trooper's part \nto effect a separation.  It is accomplished at last, and he \nproceeds alone in quest of his adviser.\n\nBy the cloisterly Temple, and by Whitefriars (there, not without a \nglance at Hanging-Sword Alley, which would seem to be something in \nhis way), and by Blackfriars Bridge, and Blackfriars Road, Mr. \nGeorge sedately marches to a street of little shops lying somewhere \nin that ganglion of roads from Kent and Surrey, and of streets from \nthe bridges of London, centring in the far-famed elephant who has \nlost his castle formed of a thousand four-horse coaches to a \nstronger iron monster than he, ready to chop him into mince-meat \nany day he dares.  To one of the little shops in this street, which \nis a musician's shop, having a few fiddles in the window, and some \nPan's pipes and a tambourine, and a triangle, and certain elongated \nscraps of music, Mr. George directs his massive tread.  And halting \nat a few paces from it, as he sees a soldierly looking woman, with \nher outer skirts tucked up, come forth with a small wooden tub, and \nin that tub commence a-whisking and a-splashing on the margin of \nthe pavement, Mr. George says to himself, \"She's as usual, washing \ngreens.  I never saw her, except upon a baggage-waggon, when she \nwasn't washing greens!\"\n\nThe subject of this reflection is at all events so occupied in \nwashing greens at present that she remains unsuspicious of Mr. \nGeorge's approach until, lifting up herself and her tub together \nwhen she has poured the water off into the gutter, she finds him \nstanding near her.  Her reception of him is not flattering.\n\n\"George, I never see you but I wish you was a hundred mile away!\"\n\nThe trooper, without remarking on this welcome, follows into the \nmusical-instrument shop, where the lady places her tub of greens \nupon the counter, and having shaken hands with him, rests her arms \nupon it.\n\n\"I never,\" she says, \"George, consider Matthew Bagnet safe a minute \nwhen you're near him.  You are that resfless and that roving--\"\n\n\"Yes!  I know I am, Mrs. Bagnet.  I know I am.\"\n\n\"You know you are!\" says Mrs. Bagnet.  \"What's the use of that?  \nWHY are you?\"\n\n\"The nature of the animal, I suppose,\" returns the trooper good-\nhumouredly.\n\n\"Ah!\" cries Mrs. Bagnet, something shrilly.  \"But what satisfaction \nwill the nature of the animal be to me when the animal shall have \ntempted my Mat away from the musical business to New Zealand or \nAustraley?\"\n\nMrs. Bagnet is not at all an ill-looking woman.  Rather large-\nboned, a little coarse in the grain, and freckled by the sun and \nwind which have tanned her hair upon the forehead, but healthy, \nwholesome, and bright-eyed.  A strong, busy, active, honest-faced \nwoman of from forty-five to fifty.  Clean, hardy, and so \neconomically dressed (though substantially) that the only article \nof ornament of which she stands possessed appear's to be her \nwedding-ring, around which her finger has grown to be so large \nsince it was put on that it will never come off again until it \nshall mingle with Mrs. Bagnet's dust.\n\n\"Mrs. Bagnet,\" says the trooper, \"I am on my parole with you.  Mat \nwill get no harm from me.  You may trust me so far.\"\n\n\"Well, I think I may.  But the very looks of you are unsettling,\" \nMrs. Bagnet rejoins.  \"Ah, George, George!  If you had only settled \ndown and married Joe Pouch's widow when he died in North America, \nSHE'D have combed your hair for you.\"\n\n\"It was a chance for me, certainly,\" returns the trooper half \nlaughingly, half seriously, \"but I shall never settle down into a \nrespectable man now.  Joe Pouch's widow might have done me good--\nthere was something in her, and something of her--but I couldn't \nmake up my mind to it.  If I had had the luck to meet with such a \nwife as Mat found!\"\n\nMrs. Bagnet, who seems in a virtuous way to be under little reserve \nwith a good sort of fellow, but to be another good sort of fellow \nherself for that matter, receives this compliment by flicking Mr. \nGeorge in the face with a head of greens and taking her tub into \nthe little room behind the shop.\n\n\"Why, Quebec, my poppet,\" says George, following, on invitation, \ninto that department.  \"And little Malta, too!  Come and kiss your \nBluffy!\"\n\nThese young ladies--not supposed to have been actually christened \nby the names applied to them, though always so called in the family \nfrom the places of their birth in barracks--are respectively \nemployed on three-legged stools, the younger (some five or six \nyears old) in learning her letters out of a penny primer, the elder \n(eight or nine perhaps) in teaching her and sewing with great \nassiduity.  Both hail Mr. George with acclamations as an old friend \nand after some kissing and romping plant their stools beside him.\n\n\"And how's young Woolwich?\" says Mr. George.\n\n\"Ah!  There now!\" cries Mrs. Bagnet, turning about from her \nsaucepans (for she is cooking dinner) with a bright flush on her \nface.  \"Would you believe it?  Got an engagement at the theayter, \nwith his father, to play the fife in a military piece.\"\n\n\"Well done, my godson!\" cries Mr. George, slapping his thigh.\n\n\"I believe you!\" says Mrs. Bagnet.  \"He's a Briton.  That's what \nWoolwich is.  A Briton!\"\n\n\"And Mat blows away at his bassoon, and you're respectable \ncivilians one and all,\" says Mr. George.  \"Family people.  Children \ngrowing up.  Mat's old mother in Scotland, and your old father \nsomewhere else, corresponded with, and helped a little, and--well, \nwell!  To be sure, I don't know why I shouldn't be wished a hundred \nmile away, for I have not much to do with all this!\"\n\nMr. George is becoming thoughtful, sitting before the fire in the \nwhitewashed room, which has a sanded floor and a barrack smell and \ncontains nothing superfluous and has not a visible speck of dirt or \ndust in it, from the faces of Quebec and Malta to the bright tin \npots and pannikins upon the dresser shelves--Mr. George is becoming \nthoughtful, sitting here while Mrs. Bagnet is busy, when Mr. Bagnet \nand young Woolwich opportunely come home.  Mr. Bagnet is an ex-\nartilleryman, tall and upright, with shaggy eyebrows and whiskers \nlike the fibres of a coco-nut, not a hair upon his head, and a \ntorrid complexion.  His voice, short, deep, and resonant, is not at \nall unlike the tones of the instrument to which he is devoted.  \nIndeed there may be generally observed in him an unbending, \nunyielding, brass-bound air, as if he were himself the bassoon of \nthe human orchestra.  Young Woolwich is the type and model of a \nyoung drummer.\n\nBoth father and son salute the trooper heartily.  He saying, in due \nseason, that he has come to advise with Mr. Bagnet, Mr. Bagnet \nhospitably declares that he will hear of no business until after \ndinner and that his friend shall not partake of his counsel without \nfirst partaking of boiled pork and greens.  The trooper yielding to \nthis invitation, he and Mr. Bagnet, not to embarrass the domestic \npreparations, go forth to take a turn up and down the little \nstreet, which they promenade with measured tread and folded arms, \nas if it were a rampart.\n\n\"George,\" says Mr. Bagnet.  \"You know me.  It's my old girl that \nadvises.  She has the head.  But I never own to it before her.  \nDiscipline must be maintained.  Wait till the greens is off her \nmind.  Then we'll consult.  Whatever the old girl says, do--do it!\"\n\n\"I intend to, Mat,\" replies the other.  \"I would sooner take her \nopinion than that of a college.\"\n\n\"College,\" returns Mr. Bagnet in short sentences, bassoon-like.  \n\"What college could you leave--in another quarter of the world--\nwith nothing but a grey cloak and an umbrella--to make its way home \nto Europe?  The old girl would do it to-morrow.  Did it once!\"\n\n\"You are right,\" says Mr. George.\n\n\"What college,\" pursues Bagnet, \"could you set up in life--with two \npenn'orth of white lime--a penn'orth of fuller's earth--a ha'porth \nof sand--and the rest of the change out of sixpence in money?  \nThat's what the old girl started on.  In the present business.\"\n\n\"I am rejoiced to hear it's thriving, Mat.\"\n\n\"The old girl,\" says Mr. Bagnet, acquiescing, \"saves.  Has a \nstocking somewhere.  With money in it.  I never saw it.  But I know \nshe's got it.  Wait till the greens is off her mind.  Then she'll \nset you up.\"\n\n\"She is a treasure!\" exclaims Mr. George.\n\n\"She's more.  But I never own to it before her.  Discipline must be \nmaintained.  It was the old girl that brought out my musical \nabilities.  I should have been in the artillery now but for the old \ngirl.  Six years I hammered at the fiddle.  Ten at the flute.  The \nold girl said it wouldn't do; intention good, but want of \nflexibility; try the bassoon.  The old girl borrowed a bassoon from \nthe bandmaster of the Rifle Regiment.  I practised in the trenches.  \nGot on, got another, get a living by it!\"\n\nGeorge remarks that she looks as fresh as a rose and as sound as an \napple.\n\n\"The old girl,\" says Mr. Bagnet in reply, \"is a thoroughly fine \nwoman.  Consequently she is like a thoroughly fine day.  Gets finer \nas she gets on.  I never saw the old girl's equal.  But I never own \nto it before her.  Discipline must be maintained!\"\n\nProceeding to converse on indifferent matters, they walk up and \ndown the little street, keeping step and time, until summoned by \nQuebec and Malta to do justice to the pork and greens, over which \nMrs. Bagnet, like a military chaplain, says a short grace.  In the \ndistribution of these comestibles, as in every other household \nduty, Mrs. Bagnet developes an exact system, sitting with every \ndish before her, allotting to every portion of pork its own portion \nof pot-liquor, greens, potatoes, and even mustard, and serving it \nout complete.  Having likewise served out the beer from a can and \nthus supplied the mess with all things necessary, Mrs. Bagnet \nproceeds to satisfy her own hunger, which is in a healthy state.  \nThe kit of the mess, if the table furniture may be so denominated, \nis chiefly composed of utensils of horn and tin that have done duty \nin several parts of the world.  Young Woolwich's knife, in \nparticular, which is of the oyster kind, with the additional \nfeature of a strong shutting-up movement which frequently balks the \nappetite of that young musician, is mentioned as having gone in \nvarious hands the complete round of foreign service.\n\nThe dinner done, Mrs. Bagnet, assisted by the younger branches (who \npolish their own cups and platters, knives and forks), makes all \nthe dinner garniture shine as brightly as before and puts it all \naway, first sweeping the hearth, to the end that Mr. Bagnet and the \nvisitor may not be retarded in the smoking of their pipes.  These \nhousehold cares involve much pattening and counter-pattening in the \nbackyard and considerable use of a pail, which is finally so happy \nas to assist in the ablutions of Mrs. Bagnet herself.  That old \ngirl reappearing by and by, quite fresh, and sitting down to her \nneedlework, then and only then--the greens being only then to be \nconsidered as entirely off her mind--Mr. Bagnet requests the \ntrooper to state his case.\n\nThis Mr. George does with great discretion, appearing to address \nhimself to Mr. Bagnet, but having an eye solely on the old girl all \nthe time, as Bagnet has himself.  She, equally discreet, busies \nherself with her needlework.  The case fully stated, Mr. Bagnet \nresorts to his standard artifice for the maintenance of discipline.\n\n\"That's the whole of it, is it, George?\" says he.\n\n\"That's the whole of it.\"\n\n\"You act according to my opinion?\"\n\n\"I shall be guided,\" replies George, \"entirely by it.\"\n\n\"Old girl,\" says Mr. Bagnet, \"give him my opinion.  You know it.  \nTell him what it is.\"\n\nIt is that he cannot have too little to do with people who are too \ndeep for him and cannot be too careful of interference with matters \nhe does not understand--that the plain rule is to do nothing in the \ndark, to be a party to nothing underhanded or mysterious, and never \nto put his foot where he cannot see the ground.  This, in effect, \nis Mr. Bagnet's opinion, as delivered through the old girl, and it \nso relieves Mr. George's mind by confirming his own opinion and \nbanishing his doubts that he composes himself to smoke another pipe \non that exceptional occasion and to have a talk over old times with \nthe whole Bagnet family, according to their various ranges of \nexperience.\n\nThrough these means it comes to pass that Mr. George does not again \nrise to his full height in that parlour until the time is drawing \non when the bassoon and fife are expected by a British public at \nthe theatre; and as it takes time even then for Mr. George, in his \ndomestic character of Bluffy, to take leave of Quebec and Malta and \ninsinuate a sponsorial shilling into the pocket of his godson with \nfelicitations on his success in life, it is dark when Mr. George \nagain turns his face towards Lincoln's Inn Fields.\n\n\"A family home,\" he ruminates as he marches along, \"however small \nit is, makes a man like me look lonely.  But it's well I never made \nthat evolution of matrimony.  I shouldn't have been fit for it.  I \nam such a vagabond still, even at my present time of life, that I \ncouldn't hold to the gallery a month together if it was a regular \npursuit or if I didn't camp there, gipsy fashion.  Come!  I \ndisgrace nobody and cumber nobody; that's something.  I have not \ndone that for many a long year!\"\n\nSo he whistles it off and marches on.\n\nArrived in Lincoln's Inn Fields and mounting Mr. Tulkinghorn's \nstair, he finds the outer door closed and the chambers shut, but \nthe trooper not knowing much about outer doors, and the staircase \nbeing dark besides, he is yet fumbling and groping about, hoping to \ndiscover a bell-handle or to open the door for himself, when Mr. \nTulkinghorn comes up the stairs (quietly, of course) and angrily \nasks, \"Who is that?  What are you doing there?\"\n\n\"I ask your pardon, sir.  It's George.  The sergeant.\"\n\n\"And couldn't George, the sergeant, see that my door was locked?\"\n\n\"Why, no, sir, I couldn't.  At any rate, I didn't,\" says the \ntrooper, rather nettled.\n\n\"Have you changed your mind?  Or are you in the same mind?\" Mr. \nTulkinghorn demands.  But he knows well enough at a glance.\n\n\"In the same mind, sir.\"\n\n\"I thought so.  That's sufficient.  You can go.  So you are the \nman,\" says Mr. Tulkinghorn, opening his door with the key, \"in \nwhose hiding-place Mr. Gridley was found?\"\n\n\"Yes, I AM the man,\" says the trooper, stopping two or three stairs \ndown.  \"What then, sir?\"\n\n\"What then?  I don't like your associates.  You should not have \nseen the inside of my door this morning if I had thought of your \nbeing that man.  Gridley?  A threatening, murderous, dangerous \nfellow.\"\n\nWith these words, spoken in an unusually high tone for him, the \nlawyer goes into his rooms and shuts the door with a thundering \nnoise.\n\nMr. George takes his dismissal in great dudgeon, the greater \nbecause a clerk coming up the stairs has heard the last words of \nall and evidently applies them to him.  \"A pretty character to \nbear,\" the trooper growls with a hasty oath as he strides \ndownstairs.  \"A threatening, murderous, dangerous fellow!\"  And \nlooking up, he sees the clerk looking down at him and marking him \nas he passes a lamp.  This so intensifies his dudgeon that for five \nminutes he is in an ill humour.  But he whistles that off like the \nrest of it and marches home to the shooting gallery.\n\n\n\nCHAPTER XXVIII\n\nThe Ironmaster\n\n\nSir Leicester Dedlock has got the better, for the time being, of \nthe family gout and is once more, in a literal no less than in a \nfigurative point of view, upon his legs.  He is at his place in \nLincolnshire; but the waters are out again on the low-lying \ngrounds, and the cold and damp steal into Chesney Wold, though well \ndefended, and eke into Sir Leicester's bones.  The blazing fires of \nfaggot and coal--Dedlock timber and antediluvian forest--that blaze \nupon the broad wide hearths and wink in the twilight on the \nfrowning woods, sullen to see how trees are sacrificed, do not \nexclude the enemy.  The hot-water pipes that trail themselves all \nover the house, the cushioned doors and windows, and the screens \nand curtains fail to supply the fires' deficiencies and to satisfy \nSir Leicester's need.  Hence the fashionable intelligence proclaims \none morning to the listening earth that Lady Dedlock is expected \nshortly to return to town for a few weeks.\n\nIt is a melancholy truth that even great men have their poor \nrelations.  Indeed great men have often more than their fair share \nof poor relations, inasmuch as very red blood of the superior \nquality, like inferior blood unlawfully shed, WILL cry aloud and \nWILL be heard.  Sir Leicester's cousins, in the remotest degree, \nare so many murders in the respect that they \"will out.\"  Among \nwhom there are cousins who are so poor that one might almost dare \nto think it would have been the happier for them never to have been \nplated links upon the Dedlock chain of gold, but to have been made \nof common iron at first and done base service.\n\nService, however (with a few limited reservations, genteel but not \nprofitable), they may not do, being of the Dedlock dignity.  So \nthey visit their richer cousins, and get into debt when they can, \nand live but shabbily when they can't, and find--the women no \nhusbands, and the men no wives--and ride in borrowed carriages, and \nsit at feasts that are never of their own making, and so go through \nhigh life.  The rich family sum has been divided by so many \nfigures, and they are the something over that nobody knows what to \ndo with.\n\nEverybody on Sir Leicester Dedlock's side of the question and of \nhis way of thinking would appear to be his cousin more or less.  \nFrom my Lord Boodle, through the Duke of Foodle, down to Noodle, \nSir Leicester, like a glorious spider, stretches his threads of \nrelationship.  But while he is stately in the cousinship of the \nEverybodys, he is a kind and generous man, according to his \ndignified way, in the cousinship of the Nobodys; and at the present \ntime, in despite of the damp, he stays out the visit of several \nsuch cousins at Chesney Wold with the constancy of a martyr.\n\nOf these, foremost in the front rank stands Volumnia Dedlock, a \nyoung lady (of sixty) who is doubly highly related, having the \nhonour to be a poor relation, by the mother's side, to another \ngreat family.  Miss Volumnia, displaying in early life a pretty \ntalent for cutting ornaments out of coloured paper, and also for \nsinging to the guitar in the Spanish tongue, and propounding French \nconundrums in country houses, passed the twenty years of her \nexistence between twenty and forty in a sufficiently agreeable \nmanner.  Lapsing then out of date and being considered to bore \nmankind by her vocal performances in the Spanish language, she \nretired to Bath, where she lives slenderly on an annual present \nfrom Sir Leicester and whence she makes occasional resurrections in \nthe country houses of her cousins.  She has an extensive \nacquaintance at Bath among appalling old gentlemen with thin legs \nand nankeen trousers, and is of high standing in that dreary city.  \nBut she is a little dreaded elsewhere in consequence of an \nindiscreet profusion in the article of rouge and persistency in an \nobsolete pearl necklace like a rosary of little bird's-eggs.\n\nIn any country in a wholesome state, Volumnia would be a clear case \nfor the pension list.  Efforts have been made to get her on it, and \nwhen William Buffy came in, it was fully expected that her name \nwould be put down for a couple of hundred a year.  But William \nBuffy somehow discovered, contrary to all expectation, that these \nwere not the times when it could be done, and this was the first \nclear indication Sir Leicester Dedlock had conveyed to him that the \ncountry was going to pieces.\n\nThere is likewise the Honourable Bob Stables, who can make warm \nmashes with the skill of a veterinary surgeon and is a better shot \nthan most gamekeepers.  He has been for some time particularly \ndesirous to serve his country in a post of good emoluments, \nunaccompanied by any trouble or responsibility.  In a well-\nregulated body politic this natural desire on the part of a \nspirited young gentleman so highly connected would be speedily \nrecognized, but somehow William Buffy found when he came in that \nthese were not times in which he could manage that little matter \neither, and this was the second indication Sir Leicester Dedlock \nhad conveyed to him that the country was going to pieces.\n\nThe rest of the cousins are ladies and gentlemen of various ages \nand capacities, the major part amiable and sensible and likely to \nhave done well enough in life if they could have overcome their \ncousinship; as it is, they are almost all a little worsted by it, \nand lounge in purposeless and listless paths, and seem to be quite \nas much at a loss how to dispose of themselves as anybody else can \nbe how to dispose of them.\n\nIn this society, and where not, my Lady Dedlock reigns supreme.  \nBeautiful, elegant, accomplished, and powerful in her little world \n(for the world of fashion does not stretch ALL the way from pole to \npole), her influence in Sir Leicester's house, however haughty and \nindifferent her manner, is greatly to improve it and refine it.  \nThe cousins, even those older cousins who were paralysed when Sir \nLeicester married her, do her feudal homage; and the Honourable Bob \nStables daily repeats to some chosen person between breakfast and \nlunch his favourite original remark, that she is the best-groomed \nwoman in the whole stud.\n\nSuch the guests in the long drawing-room at Chesney Wold this \ndismal night when the step on the Ghost's Walk (inaudible here, \nhowever) might be the step of a deceased cousin shut out in the \ncold.  It is near bed-time.  Bedroom fires blaze brightly all over \nthe house, raising ghosts of grim furniture on wall and ceiling.  \nBedroom candlesticks bristle on the distant table by the door, and \ncousins yawn on ottomans.  Cousins at the piano, cousins at the \nsoda-water tray, cousins rising from the card-table, cousins \ngathered round the fire.  Standing on one side of his own peculiar \nfire (for there are two), Sir Leicester.  On the opposite side of \nthe broad hearth, my Lady at her table.  Volumnia, as one of the \nmore privileged cousins, in a luxurious chair between them.  Sir \nLeicester glancing, with magnificent displeasure, at the rouge and \nthe pearl necklace.\n\n\"I occasionally meet on my staircase here,\" drawls Volumnia, whose \nthoughts perhaps are already hopping up it to bed, after a long \nevening of very desultory talk, \"one of the prettiest girls, I \nthink, that I ever saw in my life.\"\n\n\"A PROTEGEE of my Lady's,\" observes Sir Leicester.\n\n\"I thought so.  I felt sure that some uncommon eye must have picked \nthat girl out.  She really is a marvel.  A dolly sort of beauty \nperhaps,\" says Miss Volumnia, reserving her own sort, \"but in its \nway, perfect; such bloom I never saw!\"\n\nSir Leicester, with his magnificent glance of displeasure at the \nrouge, appears to say so too.\n\n\"Indeed,\" remarks my Lady languidly, \"if there is any uncommon eye \nin the case, it is Mrs. Rouncewell's, and not mine.  Rosa is her \ndiscovery.\"\n\n\"Your maid, I suppose?\"\n\n\"No.  My anything; pet--secretary--messenger--I don't know what.\"\n\n\"You like to have her about you, as you would like to have a \nflower, or a bird, or a picture, or a poodle--no, not a poodle, \nthough--or anything else that was equally pretty?\" says Volumnia, \nsympathizing.  \"Yes, how charming now!  And how well that \ndelightful old soul Mrs. Rouncewell is looking.  She must be an \nimmense age, and yet she is as active and handsome!  She is the \ndearest friend I have, positively!\"\n\nSir Leicester feels it to be right and fitting that the housekeeper \nof Chesney Wold should be a remarkable person.  Apart from that, he \nhas a real regard for Mrs. Rouncewell and likes to hear her \npraised.  So he says, \"You are right, Volumnia,\" which Volumnia is \nextremely glad to hear.\n\n\"She has no daughter of her own, has she?\"\n\n\"Mrs. Rouncewell?  No, Volumnia.  She has a son.  Indeed, she had \ntwo.\"\n\nMy Lady, whose chronic malady of boredom has been sadly aggravated \nby Volumnia this evening, glances wearily towards the candlesticks \nand heaves a noiseless sigh.\n\n\"And it is a remarkable example of the confusion into which the \npresent age has fallen; of the obliteration of landmarks, the \nopening of floodgates, and the uprooting of distinctions,\" says Sir \nLeicester with stately gloom, \"that I have been informed by Mr. \nTulkinghorn that Mrs. Rouncewell's son has been invited to go into \nParliament.\"\n\nMiss Volumnia utters a little sharp scream.\n\n\"Yes, indeed,\" repeats Sir Leicester.  \"Into Parliament.\"\n\n\"I never heard of such a thing!  Good gracious, what is the man?\" \nexclaims Volumnia.\n\n\"He is called, I believe--an--ironmaster.\"  Sir Leicester says it \nslowly and with gravity and doubt, as not being sure but that he is \ncalled a lead-mistress or that the right word may be some other \nword expressive of some other relationship to some other metal.\n\nVolumnia utters another little scream.\n\n\"He has declined the proposal, if my information from Mr. \nTulkinghorn be correct, as I have no doubt it is.  Mr. Tulkinghorn \nbeing always correct and exact; still that does not,\" says Sir \nLeicester, \"that does not lessen the anomaly, which is fraught with \nstrange considerations--startling considerations, as it appears to \nme.\"\n\nMiss Volumnia rising with a look candlestick-wards, Sir Leicester \npolitely performs the grand tour of the drawing-room, brings one, \nand lights it at my Lady's shaded lamp.\n\n\"I must beg you, my Lady,\" he says while doing so, \"to remain a few \nmoments, for this individual of whom I speak arrived this evening \nshortly before dinner and requested in a very becoming note\"--Sir \nLeicester, with his habitual regard to truth, dwells upon it--\"I am \nbound to say, in a very becoming and well-expressed note, the \nfavour of a short interview with yourself and MYself on the subject \nof this young girl.  As it appeared that he wished to depart to-\nnight, I replied that we would see him before retiring.\"\n\nMiss Volumnia with a third little scream takes flight, wishing her \nhosts--O Lud!--well rid of the--what is it?--ironmaster!\n\nThe other cousins soon disperse, to the last cousin there.  Sir \nLeicester rings the bell, \"Make my compliments to Mr. Rouncewell, \nin the housekeeper's apartments, and say I can receive him now.\"\n\nMy Lady, who has beard all this with slight attention outwardly, \nlooks towards Mr. Rouncewell as he comes in.  He is a little over \nfifty perhaps, of a good figure, like his mother, and has a clear \nvoice, a broad forehead from which his dark hair has retired, and a \nshrewd though open face.  He is a responsible-looking gentleman \ndressed in black, portly enough, but strong and active.  Has a \nperfectly natural and easy air and is not in the least embarrassed \nby the great presence into which he comes.\n\n\"Sir Leicester and Lady Dedlock, as I have already apologized for \nintruding on you, I cannot do better than be very brief.  I thank \nyou, Sir Leicester.\"\n\nThe head of the Dedlocks has motioned towards a sofa between \nhimself and my Lady.  Mr. Rouncewell quietly takes his seat there.\n\n\"In these busy times, when so many great undertakings are in \nprogress, people like myself have so many workmen in so many places \nthat we are always on the flight.\"\n\nSir Leicester is content enough that the ironmaster should feel \nthat there is no hurry there; there, in that ancient house, rooted \nin that quiet park, where the ivy and the moss have had time to \nmature, and the gnarled and warted elms and the umbrageous oaks \nstand deep in the fern and leaves of a hundred years; and where the \nsun-dial on the terrace has dumbly recorded for centuries that time \nwhich was as much the property of every Dedlock--while he lasted--\nas the house and lands.  Sir Leicester sits down in an easy-chair, \nopposing his repose and that of Chesney Wold to the restless \nflights of ironmasters.\n\n\"Lady Dedlock has been so kind,\" proceeds Mr. Rouncewell with a \nrespectful glance and a bow that way, \"as to place near her a young \nbeauty of the name of Rosa.  Now, my son has fallen in love with \nRosa and has asked my consent to his proposing marriage to her and \nto their becoming engaged if she will take him--which I suppose she \nwill.  I have never seen Rosa until to-day, but I have some \nconfidence in my son's good sense--even in love.  I find her what \nhe represents her, to the best of my judgment; and my mother speaks \nof her with great commendation.\"\n\n\"She in all respects deserves it,\" says my Lady.\n\n\"I am happy, Lady Dedlock, that you say so, and I need not comment \non the value to me of your kind opinion of her.\"\n\n\"That,\" observes Sir Leicester with unspeakable grandeur, for he \nthinks the ironmaster a little too glib, \"must be quite \nunnecessary.\"\n\n\"Quite unnecessary, Sir Leicester.  Now, my son is a very young \nman, and Rosa is a very young woman.  As I made my way, so my son \nmust make his; and his being married at present is out of the \nquestion.  But supposing I gave my consent to his engaging himself \nto this pretty girl, if this pretty girl will engage herself to \nhim, I think it a piece of candour to say at once--I am sure, Sir \nLeicester and Lady Dedlock, you will understand and excuse me--I \nshould make it a condition that she did not remain at Chesney Wold.  \nTherefore, before communicating further with my son, I take the \nliberty of saying that if her removal would be in any way \ninconvenient or objectionable, I will hold the matter over with him \nfor any reasonable time and leave it precisely where it is.\"\n\nNot remain at Chesney Wold!  Make it a condition!  All Sir \nLeicester's old misgivings relative to Wat Tyler and the people in \nthe iron districts who do nothing but turn out by torchlight come \nin a shower upon his head, the fine grey hair of which, as well as \nof his whiskers, actually stirs with indignation.\n\n\"Am I to understand, sir,\" says Sir Leicester, \"and is my Lady to \nunderstand\"--he brings her in thus specially, first as a point of \ngallantry, and next as a point of prudence, having great reliance \non her sense--\"am I to understand, Mr. Rouncewell, and is my Lady \nto understand, sir, that you consider this young woman too good for \nChesney Wold or likely to be injured by remaining here?\"\n\n\"Certainly not, Sir Leicester,\"\n\n\"I am glad to hear it.\"  Sir Leicester very lofty indeed.\n\n\"Pray, Mr. Rouncewell,\" says my Lady, warning Sir Leicester off \nwith the slightest gesture of her pretty hand, as if he were a fly, \n\"explain to me what you mean.\"\n\n\"Willingly, Lady Dedlock.  There is nothing I could desire more.\"\n\nAddressing her composed face, whose intelligence, however, is too \nquick and active to be concealed by any studied impassiveness, \nhowever habitual, to the strong Saxon face of the visitor, a \npicture of resolution and perseverance, my Lady listens with \nattention, occasionally slightly bending her head.\n\n\"I am the son of your housekeeper, Lady Dedlock, and passed my \nchildhood about this house.  My mother has lived here half a \ncentury and will die here I have no doubt.  She is one of those \nexamples--perhaps as good a one as there is--of love, and \nattachment, and fidelity in such a nation, which England may well \nbe proud of, but of which no order can appropriate the whole pride \nor the whole merit, because such an instance bespeaks high worth on \ntwo sides--on the great side assuredly, on the small one no less \nassuredly.\"\n\nSir Leicester snorts a little to hear the law laid down in this \nway, but in his honour and his love of truth, he freely, though \nsilently, admits the justice of the ironmaster's proposition.\n\n\"Pardon me for saying what is so obvious, but I wouldn't have it \nhastily supposed,\" with the least turn of his eyes towards Sir \nLeicester, \"that I am ashamed of my mother's position here, or \nwanting in all just respect for Chesney Wold and the family.  I \ncertainly may have desired--I certainly have desired, Lady Dedlock\n--that my mother should retire after so many years and end her days \nwith me.  But as I have found that to sever this strong bond would \nbe to break her heart, I have long abandoned that idea.\"\n\nSir Leicester very magnificent again at the notion of Mrs. \nRouncewell being spirited off from her natural home to end her days \nwith an ironmaster.\n\n\"I have been,\" proceeds the visitor in a modest, clear way, \"an \napprentice and a workman.  I have lived on workman's wages, years \nand years, and beyond a certain point have had to educate myself.  \nMy wife was a foreman's daughter, and plainly brought up.  We have \nthree daughters besides this son of whom I have spoken, and being \nfortunately able to give them greater advantages than we have had \nourselves, we have educated them well, very well.  It has been one \nof our great cares and pleasures to make them worthy of any \nstation.\"\n\nA little boastfulness in his fatherly tone here, as if he added in \nhis heart, \"even of the Chesney Wold station.\"  Not a little more \nmagnificence, therefore, on the part of Sir Leicester.\n\n\"All this is so frequent, Lady Dedlock, where I live, and among the \nclass to which I belong, that what would be generally called \nunequal marriages are not of such rare occurrence with us as \nelsewhere.  A son will sometimes make it known to his father that \nhe has fallen in love, say, with a young woman in the factory.  The \nfather, who once worked in a factory himself, will be a little \ndisappointed at first very possibly.  It may be that he had other \nviews for his son.  However, the chances are that having \nascertained the young woman to be of unblemished character, he will \nsay to his son, 'I must be quite sure you are in earnest here.  \nThis is a serious matter for both of you.  Therefore I shall have \nthis girl educated for two years,' or it may be, 'I shall place \nthis girl at the same school with your sisters for such a time, \nduring which you will give me your word and honour to see her only \nso often.  If at the expiration of that time, when she has so far \nprofited by her advantages as that you may be upon a fair equality, \nyou are both in the same mind, I will do my part to make you \nhappy.'  I know of several cases such as I describe, my Lady, and I \nthink they indicate to me my own course now.\"\n\nSir Leicester's magnificence explodes.  Calmly, but terribly.\n\n\"Mr. Rouncewell,\" says Sir Leicester with his right hand in the \nbreast of his blue coat, the attitude of state in which he is \npainted in the gallery, \"do you draw a parallel between Chesney \nWold and a--\"  Here he resists a disposition to choke, \"a factory?\"\n\n\"I need not reply, Sir Leicester, that the two places are very \ndifferent; but for the purposes of this case, I think a parallel \nmay be justly drawn between them.\"\n\nSir Leicester directs his majestic glance down one side of the long \ndrawing-room and up the other before he can believe that he is \nawake.\n\n\"Are you aware, sir, that this young woman whom my Lady--my Lady--\nhas placed near her person was brought up at the village school \noutside the gates?\"\n\n\"Sir Leicester, I am quite aware of it.  A very good school it is, \nand handsomely supported by this family.\"\n\n\"Then, Mr. Rouncewell,\" returns Sir Leicester, \"the application of \nwhat you have said is, to me, incomprehensible.\"\n\n\"Will it be more comprehensible, Sir Leicester, if I say,\" the \nironmaster is reddening a little, \"that I do not regard the village \nschool as teaching everything desirable to be known by my son's \nwife?\"\n\nFrom the village school of Chesney Wold, intact as it is this \nminute, to the whole framework of society; from the whole framework \nof society, to the aforesaid framework receiving tremendous cracks \nin consequence of people (iron-masters, lead-mistresses, and what \nnot) not minding their catechism, and getting out of the station \nunto which they are called--necessarily and for ever, according to \nSir Leicester's rapid logic, the first station in which they happen \nto find themselves; and from that, to their educating other people \nout of THEIR stations, and so obliterating the landmarks, and \nopening the floodgates, and all the rest of it; this is the swift \nprogress of the Dedlock mind.\n\n\"My Lady, I beg your pardon.  Permit me, for one moment!\"  She has \ngiven a faint indication of intending to speak.  \"Mr. Rouncewell, \nour views of duty, and our views of station, and our views of \neducation, and our views of--in short, ALL our views--are so \ndiametrically opposed, that to prolong this discussion must be \nrepellent to your feelings and repellent to my own.  This young \nwoman is honoured with my Lady's notice and favour.  If she wishes \nto withdraw herself from that notice and favour or if she chooses \nto place herself under the influence of any one who may in his \npeculiar opinions--you will allow me to say, in his peculiar \nopinions, though I readily admit that he is not accountable for \nthem to me--who may, in his peculiar opinions, withdraw her from \nthat notice and favour, she is at any time at liberty to do so.  We \nare obliged to you for the plainness with which you have spoken.  \nIt will have no effect of itself, one way or other, on the young \nwoman's position here.  Beyond this, we can make no terms; and here \nwe beg--if you will be so good--to leave the subject.\"\n\nThe visitor pauses a moment to give my Lady an opportunity, but she \nsays nothing.  He then rises and replies, \"Sir Leicester and Lady \nDedlock, allow me to thank you for your attention and only to \nobserve that I shall very seriously recommend my son to conquer his \npresent inclinations.  Good night!\"\n\n\"Mr. Rouncewell,\" says Sir Leicester with all the nature of a \ngentleman shining in him, \"it is late, and the roads are dark.  I \nhope your time is not so precious but that you will allow my Lady \nand myself to offer you the hospitality of Chesney Wold, for to-\nnight at least.\"\n\n\"I hope so,\" adds my Lady.\n\n\"I am much obliged to you, but I have to travel all night in order \nto reach a distant part of the country punctually at an appointed \ntime in the morning.\"\n\nTherewith the ironmaster takes his departure, Sir Leicester ringing \nthe bell and my Lady rising as he leaves the room.\n\nWhen my Lady goes to her boudoir, she sits down thoughtfully by the \nfire, and inattentive to the Ghost's Walk, looks at Rosa, writing \nin an inner room.  Presently my Lady calls her.\n\n\"Come to me, child.  Tell me the truth.  Are you in love?\"\n\n\"Oh! My Lady!\"\n\nMy Lady, looking at the downcast and blushing face, says smiling, \n\"Who is it?  Is it Mrs. Rouncewell's grandson?\"\n\n\"Yes, if you please, my Lady.  But I don't know that I am in love \nwith him--yet.\"\n\n\"Yet, you silly little thing!  Do you know that he loves YOU, yet?\"\n\n\"I think he likes me a little, my Lady.\"  And Rosa bursts into \ntears.\n\nIs this Lady Dedlock standing beside the village beauty, smoothing \nher dark hair with that motherly touch, and watching her with eyes \nso full of musing interest?  Aye, indeed it is!\n\n\"Listen to me, child.  You are young and true, and I believe you \nare attached to me.\"\n\n\"Indeed I am, my Lady.  Indeed there is nothing in the world I \nwouldn't do to show how much.\"\n\n\"And I don't think you would wish to leave me just yet, Rosa, even \nfor a lover?\"\n\n\"No, my Lady!  Oh, no!\"  Rosa looks up for the first time, quite \nfrightened at the thought.\n\n\"Confide in me, my child.  Don't fear me.  I wish you to be happy, \nand will make you so--if I can make anybody happy on this earth.\"\n\nRosa, with fresh tears, kneels at her feet and kisses her hand.  My \nLady takes the hand with which she has caught it, and standing with \nher eyes fixed on the fire, puts it about and about between her own \ntwo hands, and gradually lets it fall.  Seeing her so absorbed, \nRosa softly withdraws; but still my Lady's eyes are on the fire.\n\nIn search of what?  Of any hand that is no more, of any hand that \nnever was, of any touch that might have magically changed her life?  \nOr does she listen to the Ghost's Walk and think what step does it \nmost resemble?  A man's?  A woman's?  The pattering of a little \nchild's feet, ever coming on--on--on?  Some melancholy influence is \nupon her, or why should so proud a lady close the doors and sit \nalone upon the hearth so desolate?\n\nVolumnia is away next day, and all the cousins are scattered before \ndinner.  Not a cousin of the batch but is amazed to hear from Sir \nLeicester at breakfast-time of the obliteration of landmarks, and \nopening of floodgates, and cracking of the framework of society, \nmanifested through Mrs. Rouncewell's son.  Not a cousin of the \nbatch but is really indignant, and connects it with the feebleness \nof William Buffy when in office, and really does feel deprived of a \nstake in the country--or the pension list--or something--by fraud \nand wrong.  As to Volumnia, she is handed down the great staircase \nby Sir Leicester, as eloquent upon the theme as if there were a \ngeneral rising in the north of England to obtain her rouge-pot and \npearl necklace.  And thus, with a clatter of maids and valets--for \nit is one appurtenance of their cousinship that however difficult \nthey may find it to keep themselves, they MUST keep maids and \nvalets--the cousins disperse to the four winds of heaven; and the \none wintry wind that blows to-day shakes a shower from the trees \nnear the deserted house, as if all the cousins had been changed \ninto leaves.\n\n\n\nCHAPTER XXIX\n\nThe Young Man\n\n\nChesney Wold is shut up, carpets are rolled into great scrolls in \ncorners of comfortless rooms, bright damask does penance in brown \nholland, carving and gilding puts on mortification, and the Dedlock \nancestors retire from the light of day again.  Around and around \nthe house the leaves fall thick, but never fast, for they come \ncircling down with a dead lightness that is sombre and slow.  Let \nthe gardener sweep and sweep the turf as he will, and press the \nleaves into full barrows, and wheel them off, still they lie ankle-\ndeep.  Howls the shrill wind round Chesney Wold; the sharp rain \nbeats, the windows rattle, and the chimneys growl.  Mists hide in \nthe avenues, veil the points of view, and move in funeral-wise \nacross the rising grounds.  On all the house there is a cold, blank \nsmell like the smell of a little church, though something dryer, \nsuggesting that the dead and buried Dedlocks walk there in the long \nnights and leave the flavour of their graves behind them.\n\nBut the house in town, which is rarely in the same mind as Chesney \nWold at the same time, seldom rejoicing when it rejoices or \nmourning when it mourns, expecting when a Dedlock dies--the house \nin town shines out awakened.  As warm and bright as so much state \nmay be, as delicately redolent of pleasant scents that bear no \ntrace of winter as hothouse flowers can make it, soft and hushed so \nthat the ticking of the clocks and the crisp burning of the fires \nalone disturb the stillness in the rooms, it seems to wrap those \nchilled bones of Sir Leicester's in rainbow-coloured wool.  And Sir \nLeicester is glad to repose in dignified contentment before the \ngreat fire in the library, condescendingly perusing the backs of \nhis books or honouring the fine arts with a glance of approbation.  \nFor he has his pictures, ancient and modern.  Some of the Fancy \nBall School in which art occasionally condescends to become a \nmaster, which would be best catalogued like the miscellaneous \narticles in a sale.  As '\"Three high-backed chairs, a table and \ncover, long-necked bottle (containing wine), one flask, one Spanish \nfemale's costume, three-quarter face portrait of Miss Jogg the \nmodel, and a suit of armour containing Don Quixote.\"  Or \"One stone \nterrace (cracked), one gondola in distance, one Venetian senator's \ndress complete, richly embroidered white satin costume with profile \nportrait of Miss Jogg the model, one Scimitar superbly mounted in \ngold with jewelled handle, elaborate Moorish dress (very rare), and \nOthello.\"\n\nMr. Tulkinghorn comes and goes pretty often, there being estate \nbusiness to do, leases to be renewed, and so on.  He sees my Lady \npretty often, too; and he and she are as composed, and as \nindifferent, and take as little heed of one another, as ever.  Yet \nit may be that my Lady fears this Mr. Tulkinghorn and that he knows \nit.  It may be that he pursues her doggedly and steadily, with no \ntouch of compunction, remorse, or pity.  It may be that her beauty \nand all the state and brilliancy surrounding her only gives him the \ngreater zest for what he is set upon and makes him the more \ninflexible in it.  Whether he be cold and cruel, whether immovable \nin what he has made his duty, whether absorbed in love of power, \nwhether determined to have nothing hidden from him in ground where \nhe has burrowed among secrets all his life, whether he in his heart \ndespises the splendour of which he is a distant beam, whether he is \nalways treasuring up slights and offences in the affability of his \ngorgeous clients--whether he be any of this, or all of this, it may \nbe that my Lady had better have five thousand pairs of fashionahle \neyes upon her, in distrustful vigilance, than the two eyes of this \nrusty lawyer with his wisp of neckcloth and his dull black breeches \ntied with ribbons at the knees.\n\nSir Leicester sits in my Lady's room--that room in which Mr. \nTulkinghorn read the affidavit in Jarndyce and Jarndyce--\nparticularly complacent.  My Lady, as on that day, sits before the \nfire with her screen in her hand.  Sir Leicester is particularly \ncomplacent because he has found in his newspaper some congenial \nremarks bearing directly on the floodgates and the framework of \nsociety.  They apply so happily to the late case that Sir Leicester \nhas come from the library to my Lady's room expressly to read them \naloud.  \"The man who wrote this article,\" he observes by way of \npreface, nodding at the fire as if he were nodding down at the man \nfrom a mount, \"has a well-balanced mind.\"\n\nThe man's mind is not so well balanced but that he bores my Lady, \nwho, after a languid effort to listen, or rather a languid \nresignation of herself to a show of listening, becomes distraught \nand falls into a contemplation of the fire as if it were her fire \nat Chesney Wold, and she had never left it.  Sir Leicester, quite \nunconscious, reads on through his double eye-glass, occasionally \nstopping to remove his glass and express approval, as \"Very true \nindeed,\" \"Very properly put,\" \"I have frequently made the same \nremark myself,\" invariably losing his place after each observation, \nand going up and down the column to find it again.\n\nSir Leicester is reading with infinite gravity and state when the \ndoor opens, and the Mercury in powder makes this strange \nannouncement, \"The young man, my Lady, of the name of Guppy.\"\n\nSir Leicester pauses, stares, repeats in a killing voice, \"The \nyoung man of the name of Guppy?\"\n\nLooking round, he beholds the young man of the name of Guppy, much \ndiscomfited and not presenting a very impressive letter of \nintroduction in his manner and appearance.\n\n\"Pray,\" says Sir Leicester to Mercury, \"what do you mean by \nannouncing with this abruptness a young man of the name of Guppy?\"\n\n\"I beg your pardon, Sir Leicester, but my Lady said she would see \nthe young man whenever he called.  I was not aware that you were \nhere, Sir Leicester.\"\n\nWith this apology, Mercury directs a scornful and indignant look at \nthe young man of the name of Guppy which plainly says, \"What do you \ncome calling here for and getting ME into a row?\"\n\n\"It's quite right.  I gave him those directions,\" says my Lady.  \n\"Let the young man wait.\"\n\n\"By no means, my Lady.  Since he has your orders to come, I will \nnot interrupt you.\"  Sir Leicester in his gallantry retires, rather \ndeclining to accept a bow from the young man as he goes out and \nmajestically supposing him to be some shoemaker of intrusive \nappearance.\n\nLady Dedlock looks imperiously at her visitor when the servant has \nleft the room, casting her eyes over him from head to foot.  She \nsuffers him to stand by the door and asks him what he wants.\n\n\"That your ladyship would have the kindness to oblige me with a \nlittle conversation,\" returns Mr. Guppy, embarrassed.\n\n\"You are, of course, the person who has written me so many \nletters?\"\n\n\"Several, your ladyship.  Several before your ladyship condescended \nto favour me with an answer.\"\n\n\"And could you not take the same means of rendering a Conversation \nunnecessary?  Can you not still?\"\n\nMr. Guppy screws his mouth into a silent \"No!\" and shakes his head.\n\n\"You have been strangely importunate.  If it should appear, after \nall, that what you have to say does not concern me--and I don't \nknow how it can, and don't expect that it will--you will allow me \nto cut you short with but little ceremony.  Say what you have to \nsay, if you please.\"\n\nMy Lady, with a careless toss of her screen, turns herself towards \nthe fire again, sitting almost with her back to the young man of \nthe name of Guppy.\n\n\"With your ladyship's permission, then,\" says the young man, \"I \nwill now enter on my business.  Hem!  I am, as I told your ladyship \nin my first letter, in the law.  Being in the law, I have learnt \nthe habit of not committing myself in writing, and therefore I did \nnot mention to your ladyship the name of the firm with which I am \nconnected and in which my standing--and I may add income--is \ntolerably good.  I may now state to your ladyship, in confidence, \nthat the name of that firm is Kenge and Carboy, of Lincoln's Inn, \nwhich may not be altogether unknown to your ladyship in connexion \nwith the case in Chancery of Jarndyce and Jarndyce.\"\n\nMy Lady's figure begins to be expressive of some attention.  She \nhas ceased to toss the screen and holds it as if she were \nlistening.\n\n\"Now, I may say to your ladyship at once,\" says Mr. Guppy, a little \nemboldened, \"it is no matter arising out of Jarndyce and Jarndyce \nthat made me so desirous to speak to your ladyship, which conduct I \nhave no doubt did appear, and does appear, obtrusive--in fact, \nalmost blackguardly.\"\n\nAfter waiting for a moment to receive some assurance to the \ncontrary, and not receiving any, Mr. Guppy proceeds, \"If it had \nbeen Jarndyce and Jarndyce, I should have gone at once to your \nladyship's solicitor, Mr. Tulkinghorn, of the Fields.  I have the \npleasure of being acquainted with Mr. Tulkinghorn--at least we move \nwhen we meet one another--and if it had been any business of that \nsort, I should have gone to him.\"\n\nMy Lady turns a little round and says, \"You had better sit down.\"\n\n\"Thank your ladyship.\"  Mr. Guppy does so.  \"Now, your ladyship\"--\nMr. Guppy refers to a little slip of paper on which he has made \nsmall notes of his line of argument and which seems to involve him \nin the densest obscurity whenever he looks at it--\"I--Oh, yes!--I \nplace myself entirely in your ladyship's hands.  If your ladyship \nwas to make any complaint to Kenge and Carboy or to Mr. Tulkinghorn \nof the present visit, I should be placed in a very disagreeable \nsituation.  That, I openly admit.  Consequently, I rely upon your \nladyship's honour.\"\n\nMy Lady, with a disdainful gesture of the hand that holds the \nscreen, assures him of his being worth no complaint from her.\n\n\"Thank your ladyship,\" says Mr. Guppy; \"quite satisfactory.  Now--\nI--dash it!--The fact is that I put down a head or two here of the \norder of the points I thought of touching upon, and they're written \nshort, and I can't quite make out what they mean.  If your ladyship \nwill excuse me taking it to the window half a moment, I--\"\n\nMr. Guppy, going to the window, tumbles into a pair of love-birds, \nto whom he says in his confusion, \"I beg your pardon, I am sure.\"  \nThis does not tend to the greater legibility of his notes.  He \nmurmurs, growing warm and red and holding the slip of paper now \nclose to his eyes, now a long way off, \"C.S.  What's C.S. for?  Oh!  \nC.S.!  Oh, I know!  Yes, to be sure!\"  And comes back enlightened.\n\n\"I am not aware,\" says Mr. Guppy, standing midway between my Lady \nand his chair, \"whether your ladyship ever happened to hear of, or \nto see, a young lady of the name of Miss Esther Summerson.\"\n\nMy Lady's eyes look at him full.  \"I saw a young lady of that name \nnot long ago.  This past autumn.\"\n\n\"Now, did it strike your ladyship that she was like anybody?\" asks \nMr. Guppy, crossing his arms, holding his head on one side, and \nscratching the corner of his mouth with his memoranda.\n\nMy Lady removes her eyes from him no more.\n\n\"No.\"\n\n\"Not like your ladyship's family?\"\n\n\"No.\"\n\n\"I think your ladyship,\" says Mr. Guppy, \"can hardly remember Miss \nSummerson's face?\"\n\n\"I remember the young lady very well.  What has this to do with \nme?\"\n\n\"Your ladyship, I do assure you that having Miss Summerson's image \nimprinted on my 'eart--which I mention in confidence--I found, when \nI had the honour of going over your ladyship's mansion of Chesney \nWold while on a short out in the county of Lincolnshire with a \nfriend, such a resemblance between Miss Esther Summerson and your \nladyship's own portrait that it completely knocked me over, so much \nso that I didn't at the moment even know what it WAS that knocked \nme over.  And now I have the honour of beholding your ladyship near \n(I have often, since that, taken the liberty of looking at your \nladyship in your carriage in the park, when I dare say you was not \naware of me, but I never saw your ladyship so near), it's really \nmore surprising than I thought it.\"\n\nYoung man of the name of Guppy!  There have been times, when ladies \nlived in strongholds and had unscrupulous attendants within call, \nwhen that poor life of yours would NOT have been worth a minute's \npurchase, with those beautiful eyes looking at you as they look at \nthis moment.\n\nMy Lady, slowly using her little hand-screen as a fan, asks him \nagain what he supposes that his taste for likenesses has to do with \nher.\n\n\"Your ladyship,\" replies Mr. Guppy, again referring to his paper, \n\"I am coming to that.  Dash these notes!  Oh!  'Mrs. Chadband.'  \nYes.\"  Mr. Guppy draws his chair a little forward and seats himself \nagain.  My Lady reclines in her chair composedly, though with a \ntrifle less of graceful ease than usual perhaps, and never falters \nin her steady gaze.  \"A--stop a minute, though!\"  Mr. Guppy refers \nagain.  \"E.S. twice?  Oh, yes!  Yes, I see my way now, right on.\"\n\nRolling up the slip of paper as an instrument to point his speech \nwith, Mr. Guppy proceeds.\n\n\"Your ladyship, there is a mystery about Miss Esther Summerson's \nbirth and bringing up.  I am informed of that fact because--which I \nmention in confidence--I know it in the way of my profession at \nKenge and Carboy's.  Now, as I have already mentioned to your \nladyship, Miss Summerson's image is imprinted on my 'eart.  If I \ncould clear this mystery for her, or prove her to be well related, \nor find that having the honour to be a remote branch of your \nladyship's family she had a right to be made a party in Jarndyce \nand Jarndyce, why, I might make a sort of a claim upon Miss \nSummerson to look with an eye of more dedicated favour on my \nproposals than she has exactly done as yet.  In fact, as yet she \nhasn't favoured them at all.\"\n\nA kind of angry smile just dawns upon my Lady's face.\n\n\"Now, it's a very singular circumstance, your ladyship,\" says Mr. \nGuppy, \"though one of those circumstances that do fall in the way \nof us professional men--which I may call myself, for though not \nadmitted, yet I have had a present of my articles made to me by \nKenge and Carboy, on my mother's advancing from the principal of \nher little income the money for the stamp, which comes heavy--that \nI have encountered the person who lived as servant with the lady \nwho brought Miss Summerson up before Mr. Jarndyce took charge of \nher.  That lady was a Miss Barbary, your ladyship.\"\n\nIs the dead colour on my Lady's face reflected from the screen \nwhich has a green silk ground and which she holds in her raised \nhand as if she had forgotten it, or is it a dreadful paleness that \nhas fallen on her?\n\n\"Did your ladyship,\" says Mr. Guppy, \"ever happen to hear of Miss \nBarbary?\"\n\n\"I don't know.  I think so.  Yes.\"\n\n\"Was Miss Barbary at all connected with your ladyship's family?\"\n\nMy Lady's lips move, but they utter nothing.  She shakes her head.\n\n\"NOT connected?\" says Mr. Guppy.  \"Oh! Not to your ladyship's \nknowledge, perhaps?  Ah! But might be?  Yes.\"  After each of these \ninterrogatories, she has inclined her head.  \"Very good!  Now, this \nMiss Barbary was extremely close--seems to have been \nextraordinarily close for a female, females being generally (in \ncommon life at least) rather given to conversation--and my witness \nnever had an idea whether she possessed a single relative.  On one \noccasion, and only one, she seems to have been confidential to my \nwitness on a single point, and she then told her that the little \ngirl's real name was not Esther Summerson, but Esther Hawdon.\"\n\n\"My God!\"\n\nMr. Guppy stares.  Lady Dedlock sits before him looking him \nthrough, with the same dark shade upon her face, in the same \nattitude even to the holding of the screen, with her lips a little \napart, her brow a little contracted, but for the moment dead.  He \nsees her consciousness return, sees a tremor pass across her frame \nlike a ripple over water, sees her lips shake, sees her compose \nthem by a great effort, sees her force herself back to the \nknowledge of his presence and of what he has said.  All this, so \nquickly, that her exclamation and her dead condition seem to have \npassed away like the features of those long-preserved dead bodies \nsometimes opened up in tombs, which, struck by the air like \nlightning, vanish in a breath.\n\n\"Your ladyship is acquainted with the name of Hawdon?\"\n\n\"I have heard it before.\"\n\n\"Name of any collateral or remote branch of your ladyship's \nfamily?\"\n\n\"No.\"\n\n\"Now, your ladyship,\" says Mr. Guppy, \"I come to the last point of \nthe case, so far as I have got it up.  It's going on, and I shall \ngather it up closer and closer as it goes on.  Your ladyship must \nknow--if your ladyship don't happen, by any chance, to know \nalready--that there was found dead at the house of a person named \nKrook, near Chancery Lane, some time ago, a law-writer in great \ndistress.  Upon which law-writer there was an inquest, and which \nlaw-writer was an anonymous character, his name being unknown.  \nBut, your ladyship, I have discovered very lately that that law-\nwriter's name was Hawdon.\"\n\n\"And what is THAT to me?\"\n\n\"Aye, your ladyship, that's the question!  Now, your ladyship, a \nqueer thing happened after that man's death.  A lady started up, a \ndisguised lady, your ladyship, who went to look at the scene of \naction and went to look at his grave.  She hired a crossing-\nsweeping boy to show it her.  If your ladyship would wish to have \nthe boy produced in corroboration of this statement, I can lay my \nhand upon him at any time.\"\n\nThe wretched boy is nothing to my Lady, and she does NOT wish to \nhave him produced.\n\n\"Oh, I assure your ladyship it's a very queer start indeed,\" says \nMr. Guppy.  \"If you was to hear him tell about the rings that \nsparkled on her fingers when she took her glove off, you'd think it \nquite romantic.\"\n\nThere are diamonds glittering on the hand that holds the screen.  \nMy Lady trifles with the screen and makes them glitter more, again \nwith that expression which in other times might have been so \ndangerous to the young man of the name of Guppy.\n\n\"It was supposed, your ladyship, that he left no rag or scrap \nbehind him by which he could be possibly identified.  But he did.  \nHe left a bundle of old letters.\"\n\nThe screen still goes, as before.  All this time her eyes never \nonce release him.\n\n\"They were taken and secreted.  And to-morrow night, your ladyship, \nthey will come into my possession.\"\n\n\"Still I ask you, what is this to me?\"\n\n\"Your ladyship, I conclude with that.\"  Mr. Guppy rises.  \"If you \nthink there's enough in this chain of circumstances put together--\nin the undoubted strong likeness of this young lady to your \nladyship, which is a positive fact for a jury; in her having been \nbrought up by Miss Barbary; in Miss Barbary stating Miss \nSummerson's real name to be Hawdon; in your ladyship's knowing both \nthese names VERY WELL; and in Hawdon's dying as he did--to give \nyour ladyship a family interest in going further into the case, I \nwill bring these papers here.  I don't know what they are, except \nthat they are old letters: I have never had them in my posession \nyet.  I will bring those papers here as soon as I get them and go \nover them for the first time with your ladyship.  I have told your \nladyship my object.  I have told your ladyship that I should be \nplaced in a very disagreeable situation if any complaint was made, \nand all is in strict confidence.\"\n\nIs this the full purpose of the young man of the name of Guppy, or \nhas he any other?  Do his words disclose the length, breadth, \ndepth, of his object and suspicion in coming here; or if not, what \ndo they hide?  He is a match for my Lady there.  She may look at \nhim, but he can look at the table and keep that witness-box face of \nhis from telling anything.\n\n\"You may bring the letters,\" says my Lady, \"if you choose.\"\n\n\"Your ladyship is not very encouraging, upon my word and honour,\" \nsays Mr. Guppy, a little injured.\n\n\"You may bring the letters,\" she repeats in the same tone, \"if you\n--please.\"\n\n\"It shall he done.  I wish your ladyship good day.\"\n\nOn a table near her is a rich bauble of a casket, barred and \nclasped like an old strong-chest.  She, looking at him still, takes \nit to her and unlocks it.\n\n\"Oh! I assure your ladyship I am not actuated by any motives of \nthat sort,\" says Mr. Guppy, \"and I couldn't accept anything of the \nkind.  I wish your ladyship good day, and am much obliged to you \nall the same.\"\n\nSo the young man makes his bow and goes downstairs, where the \nsupercilious Mercury does not consider himself called upon to leave \nhis Olympus by the hall-fire to let the young man out.\n\nAs Sir Leicester basks in his library and dozes over his newspaper, \nis there no influence in the house to startle him, not to say to \nmake the very trees at Chesney Wold fling up their knotted arms, \nthe very portraits frown, the very armour stir?\n\nNo.  Words, sobs, and cries are but air, and air is so shut in and \nshut out throughout the house in town that sounds need be uttered \ntrumpet-tongued indeed by my Lady in her chamber to carry any faint \nvibration to Sir Leicester's ears; and yet this cry is in the \nhouse, going upward from a wild figure on its knees.\n\n\"O my child, my child!  Not dead in the first hours of her life, as \nmy cruel sister told me, but sternly nurtured by her, after she had \nrenounced me and my name!  O my child, O my child!\"\n\n\n\nCHAPTER XXX\n\nEsther's Narrative\n\n\nRichard had been gone away some time when a visitor came to pass a \nfew days with us.  It was an elderly lady.  It was Mrs. Woodcourt, \nwho, having come from Wales to stay with Mrs. Bayham Badger and \nhaving written to my guardian, \"by her son Allan's desire,\" to \nreport that she had heard from him and that he was well \"and sent \nhis kind remembrances to all of us,\" had been invited by my \nguardian to make a visit to Bleak House.  She stayed with us nearly \nthree weeks.  She took very kindly to me and was extremely \nconfidential, so much so that sometimes she almost made me \nuncomfortable.  I had no right, I knew very well, to be \nuncomfortable because she confided in me, and I felt it was \nunreasonable; still, with all I could do, I could not quite help it.\n\nShe was such a sharp little lady and used to sit with her hands \nfolded in each other looking so very watchful while she talked to \nme that perhaps I found that rather irksome.  Or perhaps it was her \nbeing so upright and trim, though I don't think it was that, \nbecause I thought that quaintly pleasant.  Nor can it have been the \ngeneral expression of her face, which was very sparkling and pretty \nfor an old lady.  I don't know what it was.  Or at least if I do \nnow, I thought I did not then.  Or at least--but it don't matter.\n\nOf a night when I was going upstairs to bed, she would invite me \ninto her room, where she sat before the fire in a great chair; and, \ndear me, she would tell me about Morgan ap-Kerrig until I was quite \nlow-spirited!  Sometimes she recited a few verses from \nCrumlinwallinwer and the Mewlinn-willinwodd (if those are the right \nnames, which I dare say they are not), and would become quite fiery \nwith the sentiments they expressed.  Though I never knew what they \nwere (being in Welsh), further than that they were highly \neulogistic of the lineage of Morgan ap-Kerrig.\n\n\"So, Miss Summerson,\" she would say to me with stately triumph, \n\"this, you see, is the fortune inherited by my son.  Wherever my \nson goes, he can claim kindred with Ap-Kerrig.  He may not have \nmoney, but he always has what is much better--family, my dear.\"\n\nI had my doubts of their caring so very much for Morgan ap-Kerrig \nin India and China, but of course I never expressed them.  I used \nto say it was a great thing to be so highly connected.\n\n\"It IS, my dear, a great thing,\" Mrs. Woodcourt would reply.  \"It \nhas its disadvantages; my son's choice of a wife, for instance, is \nlimited by it, but the matrimonial choice of the royal family is \nlimited in much the same manner.\"\n\nThen she would pat me on the arm and smooth my dress, as much as to \nassure me that she had a good opinion of me, the distance between \nus notwithstanding.\n\n\"Poor Mr. Woodcourt, my dear,\" she would say, and always with some \nemotion, for with her lofty pedigree she had a very affectionate \nheart, \"was descended from a great Highland family, the MacCoorts \nof MacCoort.  He served his king and country as an officer in the \nRoyal Highlanders, and he died on the field.  My son is one of the \nlast representatives of two old families.  With the blessing of \nheaven he will set them up again and unite them with another old \nfamily.\"\n\nIt was in vain for me to try to change the subject, as I used to \ntry, only for the sake of novelty or perhaps because--but I need \nnot be so particular.  Mrs. Woodcourt never would let me change it.\n\n\"My dear,\" she said one night, \"you have so much sense and you look \nat the world in a quiet manner so superior to your time of life \nthat it is a comfort to me to talk to you about these family \nmatters of mine.  You don't know much of my son, my dear; but you \nknow enough of him, I dare say, to recollect him?\"\n\n\"Yes, ma'am.  I recollect him.\"\n\n\"Yes, my dear.  Now, my dear, I think you are a judge of character, \nand I should like to have your opinion of him.\"\n\n\"Oh, Mrs. Woodcourt,\" said I, \"that is so difficult!\"\n\n\"Why is it so difficult, my dear?\" she returned.  \"I don't see it \nmyself.\"\n\n\"To give an opinion--\"\n\n\"On so slight an acquaintance, my dear.  THAT'S true.\"\n\nI didn't mean that, because Mr. Woodcourt had been at our house a \ngood deal altogether and had become quite intimate with my \nguardian.  I said so, and added that he seemed to be very clever in \nhis profession--we thought--and that his kindness and gentleness to \nMiss Flite were above all praise.\n\n\"You do him justice!\" said Mrs. Woodcourt, pressing my hand.  \"You \ndefine him exactly.  Allan is a dear fellow, and in his profession \nfaultless.  I say it, though I am his mother.  Still, I must \nconfess he is not without faults, love.\"\n\n\"None of us are,\" said I.\n\n\"Ah! But his really are faults that he might correct, and ought to \ncorrect,\" returned the sharp old lady, sharply shaking her head.  \n\"I am so much attached to you that I may confide in you, my dear, \nas a third party wholly disinterested, that he is fickleness \nitself.\"\n\nI said I should have thought it hardly possible that he could have \nbeen otherwise than constant to his profession and zealous in the \npursuit of it, judging from the reputation he had earned.\n\n\"You are right again, my dear,\" the old lady retorted, \"but I don't \nrefer to his profession, look you.\"\n\n\"Oh!\" said I.\n\n\"No,\" said she.  \"I refer, my dear, to his social conduct.  He is \nalways paying trivial attentions to young ladies, and always has \nbeen, ever since he was eighteen.  Now, my dear, he has never \nreally cared for any one of them and has never meant in doing this \nto do any harm or to express anything but politeness and good \nnature.  Still, it's not right, you know; is it?\"\n\n\"No,\" said I, as she seemed to wait for me.\n\n\"And it might lead to mistaken notions, you see, my dear.\"\n\nI supposed it might.\n\n\"Therefore, I have told him many times that he really should be \nmore careful, both in justice to himself and in justice to others.  \nAnd he has always said, 'Mother, I will be; but you know me better \nthan anybody else does, and you know I mean no harm--in short, mean \nnothing.'  All of which is very true, my dear, but is no \njustification.  However, as he is now gone so far away and for an \nindefinite time, and as he will have good opportunities and \nintroductions, we may consider this past and gone.  And you, my \ndear,\" said the old lady, who was now all nods and smiles, \n\"regarding your dear self, my love?\"\n\n\"Me, Mrs. Woodcourt?\"\n\n\"Not to be always selfish, talking of my son, who has gone to seek \nhis fortune and to find a wife--when do you mean to seek YOUR \nfortune and to find a husband, Miss Summerson?  Hey, look you!  Now \nyou blush!\"\n\nI don't think I did blush--at all events, it was not important if I \ndid--and I said my present fortune perfectly contented me and I had \nno wish to change it.\n\n\"Shall I tell you what I always think of you and the fortune yet to \ncome for you, my love?\" said Mrs. Woodcourt.\n\n\"If you believe you are a good prophet,\" said I. \n\n\"Why, then, it is that you will marry some one very rich and very \nworthy, much older--five and twenty years, perhaps--than yourself.  \nAnd you will be an excellent wife, and much beloved, and very \nhappy.\"\n\n\"That is a good fortune,\" said I.  \"But why is it to be mine?\"\n\n\"My dear,\" she returned, \"there's suitability in it--you are so \nbusy, and so neat, and so peculiarly situated altogether that \nthere's suitability in it, and it will come to pass.  And nobody, \nmy love, will congratulate you more sincerely on such a marriage \nthan I shall.\"\n\nIt was curious that this should make me uncomfortable, but I think \nit did.  I know it did.  It made me for some part of that night \nuncomfortable.  I was so ashamed of my folly that I did not like to \nconfess it even to Ada, and that made me more uncomfortable still.  \nI would have given anything not to have been so much in the bright \nold lady's confidence if I could have possibly declined it.  It \ngave me the most inconsistent opinions of her.  At one time I \nthought she was a story-teller, and at another time that she was \nthe pink of truth.  Now I suspected that she was very cunning, next \nmoment I believed her honest Welsh heart to be perfectly innocent \nand simple.  And after all, what did it matter to me, and why did \nit matter to me?  Why could not I, going up to bed with my basket \nof keys, stop to sit down by her fire and accommodate myself for a \nlittle while to her, at least as well as to anybody else, and not \ntrouble myself about the harmless things she said to me?  Impelled \ntowards her, as I certainly was, for I was very anxious that she \nshould like me and was very glad indeed that she did, why should I \nharp afterwards, with actual distress and pain, on every word she \nsaid and weigh it over and over again in twenty scales?  Why was it \nso worrying to me to have her in our house, and confidential to me \nevery night, when I yet felt that it was better and safer somehow \nthat she should be there than anywhere else?  These were \nperplexities and contradictions that I could not account for.  At \nleast, if I could--but I shall come to all that by and by, and it \nis mere idleness to go on about it now.\n\nSo when Mrs. Woodcourt went away, I was sorry to lose her but was \nrelieved too.  And then Caddy Jellyby came down, and Caddy brought \nsuch a packet of domestic news that it gave us abundant occupation.\n\nFirst Caddy declared (and would at first declare nothing else) that \nI was the best adviser that ever was known.  This, my pet said, was \nno news at all; and this, I said, of course, was nonsense.  Then \nCaddy told us that she was going to be married in a month and that \nif Ada and I would be her bridesmaids, she was the happiest girl in \nthe world.  To be sure, this was news indeed; and I thought we \nnever should have done talking about it, we had so much to say to \nCaddy, and Caddy had so much to say to us.\n\nIt seemed that Caddy's unfortunate papa had got over his \nbankruptcy--\"gone through the Gazette,\" was the expression Caddy \nused, as if it were a tunnel--with the general clemency and \ncommiseration of his creditors, and had got rid of his affairs in \nsome blessed manner without succeeding in understanding them, and \nhad given up everything he possessed (which was not worth much, I \nshould think, to judge from the state of the furniture), and had \nsatisfied every one concerned that he could do no more, poor man.  \nSo, he had been honourably dismissed to \"the office\" to begin the \nworld again.  What he did at the office, I never knew; Caddy said \nhe was a \"custom-house and general agent,\" and the only thing I \never understood about that business was that when he wanted money \nmore than usual he went to the docks to look for it, and hardly \never found it.\n\nAs soon as her papa had tranquillized his mind by becoming this \nshorn lamb, and they had removed to a furnished lodging in Hatton \nGarden (where I found the children, when I afterwards went there, \ncutting the horse hair out of the seats of the chairs and choking \nthemselves with it), Caddy had brought about a meeting between him \nand old Mr. Turveydrop; and poor Mr. Jellyby, being very humble and \nmeek, had deferred to Mr. Turveydrop's deportment so submissively \nthat they had become excellent friends.  By degrees, old Mr. \nTurveydrop, thus familiarized with the idea of his son's marriage, \nhad worked up his parental feelings to the height of contemplating \nthat event as being near at hand and had given his gracious consent \nto the young couple commencing housekeeping at the academy in \nNewman Street when they would.\n\n\"And your papa, Caddy.  What did he say?\"\n\n\"Oh! Poor Pa,\" said Caddy, \"only cried and said he hoped we might \nget on better than he and Ma had got on.  He didn't say so before \nPrince, he only said so to me.  And he said, 'My poor girl, you \nhave not been very well taught how to make a home for your husband, \nbut unless you mean with all your heart to strive to do it, you bad \nbetter murder him than marry him--if you really love him.'\"\n\n\"And how did you reassure him, Caddy?\"\n\n\"Why, it was very distressing, you know, to see poor Pa so low and \nhear him say such terrible things, and I couldn't help crying \nmyself.  But I told him that I DID mean it with all my heart and \nthat I hoped our house would be a place for him to come and find \nsome comfort in of an evening and that I hoped and thought I could \nbe a better daughter to him there than at home.  Then I mentioned \nPeepy's coming to stay with me, and then Pa began to cry again and \nsaid the children were Indians.\"\n\n\"Indians, Caddy?\"\n\n\"Yes,\" said Caddy, \"wild Indians.  And Pa said\"--here she began to \nsob, poor girl, not at all like the happiest girl in the world--\n\"that he was sensible the best thing that could happen to them was \ntheir being all tomahawked together.\"\n\nAda suggested that it was comfortable to know that Mr. Jellyby did \nnot mean these destructive sentiments.\n\n\"No, of course I know Pa wouldn't like his family to be weltering \nin their blood,\" said Caddy, \"but he means that they are very \nunfortunate in being Ma's children and that he is very unfortunate \nin being Ma's husband; and I am sure that's true, though it seems \nunnatural to say so.\"\n\nI asked Caddy if Mrs. Jellyby knew that her wedding-day was fixed.\n\n\"Oh! You know what Ma is, Esther,\" she returned.  \"It's impossible \nto say whether she knows it or not.  She has been told it often \nenough; and when she IS told it, she only gives me a placid look, \nas if I was I don't know what--a steeple in the distance,\" said \nCaddy with a sudden idea; \"and then she shakes her head and says \n'Oh, Caddy, Caddy, what a tease you are!' and goes on with the \nBorrioboola letters.\"\n\n\"And about your wardrobe, Caddy?\" said I.  For she was under no \nrestraint with us.\n\n\"Well, my dear Esther,'' she returned, drying her eyes, \"I must do \nthe best I can and trust to my dear Prince never to have an unkind \nremembrance of my coming so shabbily to him.  If the question \nconcerned an outfit for Borrioboola, Ma would know all about it and \nwould be quite excited.  Being what it is, she neither knows nor \ncares.\"\n\nCaddy was not at all deficient in natural affection for her mother, \nbut mentioned this with tears as an undeniable fact, which I am \nafraid it was.  We were sorry for the poor dear girl and found so \nmuch to admire in the good disposition which had survived under \nsuch discouragement that we both at once (I mean Ada and I) \nproposed a little scheme that made her perfectly joyful.  This was \nher staying with us for three weeks, my staying with her for one, \nand our all three contriving and cutting out, and repairing, and \nsewing, and saving, and doing the very best we could think of to \nmake the most of her stock.  My guardian being as pleased with the \nidea as Caddy was, we took her home next day to arrange the matter \nand brought her out again in triumph with her boxes and all the \npurchases that could be squeezed out of a ten-pound note, which Mr. \nJellyby had found in the docks I suppose, but which he at all \nevents gave her.  What my guardian would not have given her if we \nhad encouraged him, it would be difficult to say, but we thought it \nright to compound for no more than her wedding-dress and bonnet.  \nHe agreed to this compromise, and if Caddy had ever been happy in \nher life, she was happy when we sat down to work.\n\nShe was clumsy enough with her needle, poor girl, and pricked her \nfingers as much as she had been used to ink them.  She could not \nhelp reddening a little now and then, partly with the smart and \npartly with vexation at being able to do no better, but she soon \ngot over that and began to improve rapidly.  So day after day she, \nand my darling, and my little maid Charley, and a milliner out of \nthe town, and I, sat hard at work, as pleasantly as possible.\n\nOver and above this, Caddy was very anxious \"to learn \nhousekeeping,\" as she said.  Now, mercy upon us!  The idea of her \nlearning housekeeping of a person of my vast experience was such a \njoke that I laughed, and coloured up, and fell into a comical \nconfusion when she proposed it.  However, I said, \"Caddy, I am sure \nyou are very welcome to learn anything that you can learn of ME, my \ndear,\" and I showed her all my books and methods and all my fidgety \nways.  You would have supposed that I was showing her some \nwonderful inventions, by her study of them; and if you had seen \nher, whenever I jingled my housekeeping keys, get up and attend me, \ncertainly you might have thought that there never was a greater \nimposter than I with a blinder follower than Caddy Jellyby.\n\nSo what with working and housekeeping, and lessons to Charley, and \nbackgammon in the evening with my guardian, and duets with Ada, the \nthree weeks slipped fast away.  Then I went home with Caddy to see \nwhat could be done there, and Ada and Charley remained behind to \ntake care of my guardian.\n\nWhen I say I went home with Caddy, I mean to the furnished lodging \nin Hatton Garden.  We went to Newman Street two or three times, \nwhere preparations were in progress too--a good many, I observed, \nfor enhancing the comforts of old Mr. Turveydrop, and a few for \nputting the newly married couple away cheaply at the top of the \nhouse--but our great point was to make the furnished lodging decent \nfor the wedding-breakfast and to imbue Mrs. Jellyby beforehand with \nsome faint sense of the occasion.\n\nThe latter was the more difficult thing of the two because Mrs. \nJellyby and an unwholesome boy occupied the front sitting-room (the \nback one was a mere closet), and it was littered down with waste-\npaper and Borrioboolan documents, as an untidy stable might be \nlittered with straw.  Mrs. Jellyby sat there all day drinking \nstrong coffee, dictating, and holding Borrioboolan interviews by \nappointment.  The unwholesome boy, who seemed to me to be going \ninto a decline, took his meals out of the house.  When Mr. Jellyby \ncame home, he usually groaned and went down into the kitchen.  \nThere he got something to eat if the servant would give him \nanything, and then, feeling that he was in the way, went out and \nwalked about Hatton Garden in the wet.  The poor children scrambled \nup and tumbled down the house as they had always been accustomed to \ndo.\n\nThe production of these devoted little sacrifices in any \npresentable condition being quite out of the question at a week's \nnotice, I proposed to Caddy that we should make them as happy as we \ncould on her marriage morning in the attic where they all slept, \nand should confine our greatest efforts to her mama and her mama's \nroom, and a clean breakfast.  In truth Mrs. Jellyby required a good \ndeal of attention, the lattice-work up her back having widened \nconsiderably since I first knew her and her hair looking like the \nmane of a dustman's horse.\n\nThinking that the display of Caddy's wardrobe would be the best \nmeans of approaching the subject, I invited Mrs. Jellyby to come \nand look at it spread out on Caddy's bed in the evening after the \nunwholesome boy was gone.\n\n\"My dear Miss Summerson,\" said she, rising from her desk with her \nusual sweetness of temper, \"these are really ridiculous \npreparations, though your assisting them is a proof of your \nkindness.  There is something so inexpressibly absurd to me in the \nidea of Caddy being married!  Oh, Caddy, you silly, silly, silly \npuss!\"\n\nShe came upstairs with us notwithstanding and looked at the clothes \nin her customary far-off manner.  They suggested one distinct idea \nto her, for she said with her placid smile, and shaking her head, \n\"My good Miss Summerson, at half the cost, this weak child might \nhave been equipped for Africa!\"\n\nOn our going downstairs again, Mrs. Jellyby asked me whether this \ntroublesome business was really to take place next Wednesday.  And \non my replying yes, she said, \"Will my room be required, my dear \nMiss Summerson?  For it's quite impossible that I can put my papers \naway.\"\n\nI took the liberty of saying that the room would certainly be \nwanted and that I thought we must put the papers away somewhere.  \n\"Well, my dear Miss Summerson,\" said Mrs. Jellyby, \"you know best, \nI dare say.  But by obliging me to employ a boy, Caddy has \nembarrassed me to that extent, overwhelmed as I am with public \nbusiness, that I don't know which way to turn.  We have a \nRamification meeting, too, on Wednesday afternoon, and the \ninconvenience is very serious.\"\n\n\"It is not likely to occur again,\" said I, smiling.  \"Caddy will be \nmarried but once, probably.\"\n\n\"That's true,\" Mrs. Jellyby replied; \"that's true, my dear.  I \nsuppose we must make the best of it!\"\n\nThe next question was how Mrs. Jellyby should be dressed on the \noccasion.  I thought it very curious to see her looking on serenely \nfrom her writing-table while Caddy and I discussed it, occasionally \nshaking her head at us with a half-reproachful smile like a \nsuperior spirit who could just bear with our trifling.\n\nThe state in which her dresses were, and the extraordinary \nconfusion in which she kept them, added not a little to our \ndifficulty; but at length we devised something not very unlike what \na common-place mother might wear on such an occasion.  The \nabstracted manner in which Mrs. Jellyby would deliver herself up to \nhaving this attire tried on by the dressmaker, and the sweetness \nwith which she would then observe to me how sorry she was that I \nhad not turned my thoughts to Africa, were consistent with the rest \nof her behaviour.\n\nThe lodging was rather confined as to space, but I fancied that if \nMrs. Jellyby's household had been the only lodgers in Saint Paul's \nor Saint Peter's, the sole advantage they would have found in the \nsize of the building would have been its affording a great deal of \nroom to be dirty in.  I believe that nothing belonging to the \nfamily which it had been possible to break was unbroken at the time \nof those preparations for Caddy's marriage, that nothing which it \nhad been possible to spoil in any way was unspoilt, and that no \ndomestic object which was capable of collecting dirt, from a dear \nchild's knee to the door-plate, was without as much dirt as could \nwell accumulate upon it.\n\nPoor Mr. Jellyby, who very seldom spoke and almost always sat when \nhe was at home with his head against the wall, became interested \nwhen he saw that Caddy and I were attempting to establish some \norder among all this waste and ruin and took off his coat to help.  \nBut such wonderful things came tumbling out of the closets when \nthey were opened--bits of mouldy pie, sour bottles, Mrs. Jellyby's \ncaps, letters, tea, forks, odd boots and shoes of children, \nfirewood, wafers, saucepan-lids, damp sugar in odds and ends of \npaper bags, footstools, blacklead brushes, bread, Mrs. Jellyby's \nbonnets, books with butter sticking to the binding, guttered candle \nends put out by being turned upside down in broken candlesticks, \nnutshells, heads and tails of shrimps, dinner-mats, gloves, coffee-\ngrounds, umbrellas--that he looked frightened, and left off again.  \nBut he came regularly every evening and sat without his coat, with \nhis head against the wall, as though he would have helped us if he \nhad known how.\n\n\"Poor Pa!\" said Caddy to me on the night before the great day, when \nwe really had got things a little to rights.  \"It seems unkind to \nleave him, Esther.  But what could I do if I stayed!  Since I first \nknew you, I have tidied and tidied over and over again, but it's \nuseless.  Ma and Africa, together, upset the whole house directly.  \nWe never have a servant who don't drink.  Ma's ruinous to \neverything.\"\n\nMr. Jellyby could not hear what she said, but he seemed very low \nindeed and shed tears, I thought.\n\n\"My heart aches for him; that it does!\" sobbed Caddy.  \"I can't \nhelp thinking to-night, Esther, how dearly I hope to be happy with \nPrince, and how dearly Pa hoped, I dare say, to be happy with Ma.  \nWhat a disappointed life!\"\n\n\"My dear Caddy!\" said Mr. Jellyby, looking slowly round from the \nwail.  It was the first time, I think, I ever heard him say three \nwords together.\n\n\"Yes, Pa!\" cried Caddy, going to him and embracing him \naffectionately.\n\n\"My dear Caddy,\" said Mr. Jellyby.  \"Never have--\"\n\n\"Not Prince, Pa?\" faltered Caddy.  \"Not have Prince?\"\n\n\"Yes, my dear,\" said Mr. Jellyby.  \"Have him, certainly.  But, \nnever have--\"\n\nI mentioned in my account of our first visit in Thavies Inn that \nRichard described Mr. Jellyby as frequently opening his mouth after \ndinner without saying anything.  It was a habit of his.  He opened \nhis mouth now a great many times and shook his head in a melancholy \nmanner.\n\n\"What do you wish me not to have?  Don't have what, dear Pa?\" asked \nCaddy, coaxing him, with her arms round his neck.\n\n\"Never have a mission, my dear child.\"\n\nMr. Jellyby groaned and laid his head against the wall again, and \nthis was the only time I ever heard him make any approach to \nexpressing his sentiments on the Borrioboolan question.  I suppose \nhe had been more talkative and lively once, but he seemed to have \nbeen completely exhausted long before I knew him.\n\nI thought Mrs. Jellyby never would have left off serenely looking \nover her papers and drinking coffee that night.  It was twelve \no'clock before we could obtain possession of the room, and the \nclearance it required then was so discouraging that Caddy, who was \nalmost tired out, sat down in the middle of the dust and cried.  \nBut she soon cheered up, and we did wonders with it before we went \nto bed.\n\nIn the morning it looked, by the aid of a few flowers and a \nquantity of soap and water and a little arrangement, quite gay.  \nThe plain breakfast made a cheerful show, and Caddy was perfectly \ncharming.  But when my darling came, I thought--and I think now--\nthat I never had seen such a dear face as my beautiful pet's.\n\nWe made a little feast for the children upstairs, and we put Peepy \nat the head of the table, and we showed them Caddy in her bridal \ndress, and they clapped their hands and hurrahed, and Caddy cried \nto think that she was going away from them and hugged them over and \nover again until we brought Prince up to fetch her away--when, I am \nsorry to say, Peepy bit him.  Then there was old Mr. Turveydrop \ndownstairs, in a state of deportment not to be expressed, benignly \nblessing Caddy and giving my guardian to understand that his son's \nhappiness was his own parental work and that he sacrificed personal \nconsiderations to ensure it.  \"My dear sir,\" said Mr. Turveydrop, \n\"these young people will live with me; my house is large enough for \ntheir accommodation, and they shall not want the shelter of my \nroof.  I could have wished--you will understand the allusion, Mr. \nJarndyce, for you remember my illustrious patron the Prince Regent\n--I could have wished that my son had married into a family where \nthere was more deportment, but the will of heaven be done!\"\n\nMr. and Mrs. Pardiggle were of the party--Mr. Pardiggle, an \nobstinate-looking man with a large waistcoat and stubbly hair, who \nwas always talking in a loud bass voice about his mite, or Mrs. \nPardiggle's mite, or their five boys' mites.  Mr. Quale, with his \nhair brushed back as usual and his knobs of temples shining very \nmuch, was also there, not in the character of a disappointed lover, \nbut as the accepted of a young--at least, an unmarried--lady, a \nMiss Wisk, who was also there.  Miss Wisk's mission, my guardian \nsaid, was to show the world that woman's mission was man's mission \nand that the only genuine mission of both man and woman was to be \nalways moving declaratory resolutions about things in general at \npublic meetings.  The guests were few, but were, as one might \nexpect at Mrs. Jellyby's, all devoted to public objects only.  \nBesides those I have mentioned, there was an extremely dirty lady \nwith her bonnet all awry and the ticketed price of her dress still \nsticking on it, whose neglected home, Caddy told me, was like a \nfilthy wilderness, but whose church was like a fancy fair.  A very \ncontentious gentleman, who said it was his mission to be \neverybody's brother but who appeared to be on terms of coolness \nwith the whole of his large family, completed the party.\n\nA party, having less in common with such an occasion, could hardly \nhave been got together by any ingenuity.  Such a mean mission as \nthe domestic mission was the very last thing to be endured among \nthem; indeed, Miss Wisk informed us, with great indignation, before \nwe sat down to breakfast, that the idea of woman's mission lying \nchiefly in the narrow sphere of home was an outrageous slander on \nthe part of her tyrant, man.  One other singularity was that nobody \nwith a mission--except Mr. Quale, whose mission, as I think I have \nformerly said, was to be in ecstasies with everybody's mission--\ncared at all for anybody's mission.  Mrs. Pardiggle being as clear \nthat the only one infallible course was her course of pouncing upon \nthe poor and applying benevolence to them like a strait-waistcoat; \nas Miss Wisk was that the only practical thing for the world was \nthe emancipation of woman from the thraldom of her tyrant, man.  \nMrs. Jellyby, all the while, sat smiling at the limited vision that \ncould see anything but Borrioboola-Gha.\n\nBut I am anticipating now the purport of our conversation on the \nride home instead of first marrying Caddy.  We all went to church, \nand Mr. Jellyby gave her away.  Of the air with which old Mr. \nTurveydrop, with his hat under his left arm (the inside presented \nat the clergyman like a cannon) and his eyes creasing themselves up \ninto his wig, stood stiff and high-shouldered behind us bridesmaids \nduring the ceremony, and afterwards saluted us, I could never say \nenough to do it justice.  Miss Wisk, whom I cannot report as \nprepossessing in appearance, and whose manner was grim, listened to \nthe proceedings, as part of woman's wrongs, with a disdainful face.  \nMrs. Jellyby, with her calm smile and her bright eyes, looked the \nleast concerned of all the company.\n\nWe duly came back to breakfast, and Mrs. Jellyby sat at the head of \nthe table and Mr. Jellyby at the foot.  Caddy had previously stolen \nupstairs to hug the children again and tell them that her name was \nTurveydrop.  But this piece of information, instead of being an \nagreeable surprise to Peepy, threw him on his back in such \ntransports of kicking grief that I could do nothing on being sent \nfor but accede to the proposal that he should be admitted to the \nbreakfast table.  So he came down and sat in my lap; and Mrs. \nJellyby, after saying, in reference to the state of his pinafore, \n\"Oh, you naughty Peepy, what a shocking little pig you are!\" was \nnot at all discomposed.  He was very good except that he brought \ndown Noah with him (out of an ark I had given him before we went to \nchurch) and WOULD dip him head first into the wine-glasses and then \nput him in his mouth.\n\nMy guardian, with his sweet temper and his quick perception and his \namiable face, made something agreeable even out of the ungenial \ncompany.  None of them seemed able to talk about anything but his, \nor her, own one subject, and none of them seemed able to talk about \neven that as part of a world in which there was anything else; but \nmy guardian turned it all to the merry encouragement of Caddy and \nthe honour of the occasion, and brought us through the breakfast \nnobly.  What we should have done without him, I am afraid to think, \nfor all the company despising the bride and bridegroom and old Mr. \nTurveydrop--and old Mr. Thrveydrop, in virtue of his deportment, \nconsidering himself vastly superior to all the company--it was a \nvery unpromising case.\n\nAt last the time came when poor Caddy was to go and when all her \nproperty was packed on the hired coach and pair that was to take \nher and her husband to Gravesend.  It affected us to see Caddy \nclinging, then, to her deplorable home and hanging on her mother's \nneck with the greatest tenderness.\n\n\"I am very sorry I couldn't go on writing from dictation, Ma,\" \nsobbed Caddy.  \"I hope you forgive me now.\"\n\n\"Oh, Caddy, Caddy!\" said Mrs. Jellyby.  \"I have told you over and \nover again that I have engaged a boy, and there's an end of it.\"\n\n\"You are sure you are not the least angry with me, Ma?  Say you are \nsure before I go away, Ma?\"\n\n\"You foolish Caddy,\" returned Mrs. Jellyby, \"do I look angry, or \nhave I inclination to be angry, or time to be angry?  How CAN you?\"\n\n\"Take a little care of Pa while I am gone, Mama!\"\n\nMrs. Jellyby positively laughed at the fancy.  \"You romantic \nchild,\" said she, lightly patting Caddy's back.  \"Go along.  I am \nexcellent friends with you.  Now, good-bye, Caddy, and be very \nhappy!\"\n\nThen Caddy hung upon her father and nursed his cheek against hers \nas if he were some poor dull child in pain.  All this took place in \nthe hall.  Her father released her, took out his pocket \nhandkerchief, and sat down on the stairs with his head against the \nwall.  I hope he found some consolation in walls.  I almost think \nhe did.\n\nAnd then Prince took her arm in his and turned with great emotion \nand respect to his father, whose deportment at that moment was \noverwhelming.\n\n\"Thank you over and over again, father!\" said Prince, kissing his \nhand.  \"I am very grateful for all your kindness and consideration \nregarding our marriage, and so, I can assure you, is Caddy.\"\n\n\"Very,\" sobbed Caddy.  \"Ve-ry!\"\n\n\"My dear son,\" said Mr. Turveydrop, \"and dear daughter, I have done \nmy duty.  If the spirit of a sainted wooman hovers above us and \nlooks down on the occasion, that, and your constant affection, will \nbe my recompense.  You will not fail in YOUR duty, my son and \ndaughter, I believe?\"\n\n\"Dear father, never!\" cried Prince.\n\n\"Never, never, dear Mr. Turveydrop!\" said Caddy.\n\n\"This,\" returned Mr. Turveydrop, \"is as it should be.  My children, \nmy home is yours, my heart is yours, my all is yours.  I will never \nleave you; nothing but death shall part us.  My dear son, you \ncontemplate an absence of a week, I think?\"\n\n\"A week, dear father.  We shall return home this day week.\"\n\n\"My dear child,\" said Mr. Turveydrop, \"let me, even under the \npresent exceptional circumstances, recommend strict punctuality.  \nIt is highly important to keep the connexion together; and schools, \nif at all neglected, are apt to take offence.\"\n\n\"This day week, father, we shall be sure to be home to dinner.\"\n\n\"Good!\" said Mr. Turveydrop.  \"You will find fires, my dear \nCaroline, in your own room, and dinner prepared in my apartment.  \nYes, yes, Prince!\" anticipating some self-denying objection on his \nson's part with a great air.  \"You and our Caroline will be strange \nin the upper part of the premises and will, therefore, dine that \nday in my apartment.  Now, bless ye!\"\n\nThey drove away, and whether I wondered most at Mrs. Jellyby or at \nMr. Turveydrop, I did not know.  Ada and my guardian were in the \nsame condition when we came to talk it over.  But before we drove \naway too, I received a most unexpected and eloquent compliment from \nMr. Jellyby.  He came up to me in the hall, took both my hands, \npressed them earnestly, and opened his mouth twice.  I was so sure \nof his meaning that I said, quite flurried, \"You are very welcome, \nsir.  Pray don't mention it!\"\n\n\"I hope this marriage is for the best, guardian,\" said I when we \nthree were on our road home.\n\n\"I hope it is, little woman.  Patience.  We shall see.\"\n\n\"Is the wind in the east to-day?\" I ventured to ask him.\n\nHe laughed heartily and answered, \"No.\"\n\n\"But it must have been this morning, I think,\" said I.\n\nHe answered \"No\" again, and this time my dear girl confidently \nanswered \"No\" too and shook the lovely head which, with its \nblooming flowers against the golden hair, was like the very spring.  \n\"Much YOU know of east winds, my ugly darling,\" said I, kissing her \nin my admiration--I couldn't help it.\n\nWell!  It was only their love for me, I know very well, and it is a \nlong time ago.  I must write it even if I rub it out again, because \nit gives me so much pleasure.  They said there could be no east \nwind where Somebody was; they said that wherever Dame Durden went, \nthere was sunshine and summer air.\n\n\n\nCHAPTER XXXI\n\nNurse and Patient\n\n\nI had not been at home again many days when one evening I went \nupstairs into my own room to take a peep over Charley's shoulder \nand see how she was getting on with her copy-book.  Writing was a \ntrying business to Charley, who seemed to have no natural power \nover a pen, but in whose hand every pen appeared to become \nperversely animated, and to go wrong and crooked, and to stop, and \nsplash, and sidle into corners like a saddle-donkey.  It was very \nodd to see what old letters Charley's young hand had made, they so \nwrinkled, and shrivelled, and tottering, it so plump and round.  \nYet Charley was uncommonly expert at other things and had as nimble \nlittle fingers as I ever watched.\n\n\"Well, Charley,\" said I, looking over a copy of the letter O in \nwhich it was represented as square, triangular, pear-shaped, and \ncollapsed in all kinds of ways, \"we are improving.  If we only get \nto make it round, we shall be perfect, Charley.\"\n\nThen I made one, and Charley made one, and the pen wouldn't join \nCharley's neatly, but twisted it up into a knot.\n\n\"Never mind, Charley.  We shall do it in time.\"\n\nCharley laid down her pen, the copy being finished, opened and shut \nher cramped little hand, looked gravely at the page, half in pride \nand half in doubt, and got up, and dropped me a curtsy.\n\n\"Thank you, miss.  If you please, miss, did you know a poor person \nof the name of Jenny?\"\n\n\"A brickmaker's wife, Charley?  Yes.\"\n\n\"She came and spoke to me when I was out a little while ago, and \nsaid you knew her, miss.  She asked me if I wasn't the young lady's \nlittle maid--meaning you for the young lady, miss--and I said yes, \nmiss.\"\n\n\"I thought she had left this neighbourhood altogether, Charley.\"\n\n\"So she had, miss, but she's come back again to where she used to \nlive--she and Liz.  Did you know another poor person of the name of \nLiz, miss?\"\n\n\"I think I do, Charley, though not by name.\"\n\n\"That's what she said!\" returned Chariey.  \"They have both come \nback, miss, and have been tramping high and low.\"\n\n\"Tramping high and low, have they, Charley?\"\n\n\"Yes, miss.\"  If Charley could only have made the letters in her \ncopy as round as the eyes with which she looked into my face, they \nwould have been excellent.  \"And this poor person came about the \nhouse three or four days, hoping to get a glimpse of you, miss--all \nshe wanted, she said--but you were away.  That was when she saw me.  \nShe saw me a-going about, miss,\" said Charley with a short laugh of \nthe greatest delight and pride, \"and she thought I looked like your \nmaid!\"\n\n\"Did she though, really, Charley?\"\n\n\"Yes, miss!\" said Charley.  \"Really and truly.\"  And Charley, with \nanother short laugh of the purest glee, made her eyes very round \nagain and looked as serious as became my maid.  I was never tired \nof seeing Charley in the full enjoyment of that great dignity, \nstanding before me with her youthful face and figure, and her \nsteady manner, and her childish exultation breaking through it now \nand then in the pleasantest way.\n\n\"And where did you see her, Charley?\" said I.\n\nMy little maid's countenance fell as she replied, \"By the doctor's \nshop, miss.\"  For Charley wore her black frock yet.\n\nI asked if the brickmaker's wife were ill, but Charley said no.  It \nwas some one else.  Some one in her cottage who had tramped down to \nSaint Albans and was tramping he didn't know where.  A poor boy, \nCharley said.  No father, no mother, no any one.  \"Like as Tom \nmight have been, miss, if Emma and me had died after father,\" said \nCharley, her round eyes filling with tears.\n\n\"And she was getting medicine for him, Charley?\"\n\n\"She said, miss,\" returned Charley, \"how that he had once done as \nmuch for her.\"\n\nMy little maid's face was so eager and her quiet hands were folded \nso closely in one another as she stood looking at me that I had no \ngreat difficulty in reading her thoughts.  \"Well, Charley,\" said I, \n\"it appears to me that you and I can do no better than go round to \nJenny's and see what's the matter.\"\n\nThe alacrity with which Charley brought my bonnet and veil, and \nhaving dressed me, quaintly pinned herself into her warm shawl and \nmade herself look like a little old woman, sufficiently expressed \nher readiness.  So Charley and I, without saying anything to any \none, went out.\n\nIt was a cold, wild night, and the trees shuddered in the wind.  \nThe rain had been thick and heavy all day, and with little \nintermission for many days.  None was falling just then, however.  \nThe sky had partly cleared, but was very gloomy--even above us, \nwhere a few stars were shining.  In the north and north-west, where \nthe sun had set three hours before, there was a pale dead light \nboth beautiful and awful; and into it long sullen lines of cloud \nwaved up like a sea stricken immovable as it was heaving.  Towards \nLondon a lurid glare overhung the whole dark waste, and the \ncontrast between these two lights, and the fancy which the redder \nlight engendered of an unearthly fire, gleaming on all the unseen \nbuildings of the city and on all the faces of its many thousands of \nwondering inhabitants, was as solemn as might be.\n\nI had no thought that night--none, I am quite sure--of what was \nsoon to happen to me.  But I have always remembered since that when \nwe had stopped at the garden-gate to look up at the sky, and when \nwe went upon our way, I had for a moment an undefinable impression \nof myself as being something different from what I then was.  I \nknow it was then and there that I had it.  I have ever since \nconnected the feeling with that spot and time and with everything \nassociated with that spot and time, to the distant voices in the \ntown, the barking of a dog, and the sound of wheels coming down the \nmiry hill.\n\nIt was Saturday night, and most of the people belonging to the \nplace where we were going were drinking elsewhere.  We found it \nquieter than I had previously seen it, though quite as miserable.  \nThe kilns were burning, and a stifling vapour set towards us with a \npale-blue glare.\n\nWe came to the cottage, where there was a feeble candle in the \npatched window.  We tapped at the door and went in.  The mother of \nthe little child who had died was sitting in a chair on one side of \nthe poor fire by the bed; and opposite to her, a wretched boy, \nsupported by the chimney-piece, was cowering on the floor.  He held \nunder his arm, like a little bundle, a fragment of a fur cap; and \nas he tried to warm himself, he shook until the crazy door and \nwindow shook.  The place was closer than before and had an \nunhealthy and a very peculiar smell.\n\nI had not lifted by veil when I first spoke to the woman, which was \nat the moment of our going in.  The boy staggered up instantly and \nstared at me with a remarkable expression of surprise and terror.\n\nHis action was so quick and my being the cause of it was so evident \nthat I stood still instead of advancing nearer.\n\n\"I won't go no more to the berryin ground,\" muttered the boy; \"I \nain't a-going there, so I tell you!\"\n\nI lifted my veil and spoke to the woman.  She said to me in a low \nvoice, \"Don't mind him, ma'am.  He'll soon come back to his head,\" \nand said to him, \"Jo, Jo, what's the matter?\"\n\n\"I know wot she's come for!\" cried the boy.\n\n\"Who?\"\n\n\"The lady there.  She's come to get me to go along with her to the \nberryin ground.  I won't go to the berryin ground.  I don't like \nthe name on it.  She might go a-berryin ME.\"  His shivering came on \nagain, and as he leaned against the wall, he shook the hovel.\n\n\"He has been talking off and on about such like all day, ma'am,\" \nsaid Jenny softly.  \"Why, how you stare!  This is MY lady, Jo.\"\n\n\"Is it?\" returned the boy doubtfully, and surveying me with his arm \nheld out above his burning eyes.  \"She looks to me the t'other one.  \nIt ain't the bonnet, nor yet it ain't the gownd, but she looks to \nme the t'other one.\"\n\nMy little Charley, with her premature experience of illness and \ntrouble, had pulled off her bonnet and shawl and now went quietly \nup to him with a chair and sat him down in it like an old sick \nnurse.  Except that no such attendant could have shown him \nCharley's youthful face, which seemed to engage his confidence.\n\n\"I say!\" said the boy.  \"YOU tell me.  Ain't the lady the t'other \nlady?\"\n\nCharley shook her head as she methodically drew his rags about him \nand made him as warm as she could.\n\n\"Oh!\" the boy muttered.  \"Then I s'pose she ain't.\"\n\n\"I came to see if I could do you any good,\" said I.  \"What is the \nmatter with you?\"\n\n\"I'm a-being froze,\" returned the boy hoarsely, with his haggard \ngaze wandering about me, \"and then burnt up, and then froze, and \nthen burnt up, ever so many times in a hour.  And my head's all \nsleepy, and all a-going mad-like--and I'm so dry--and my bones \nisn't half so much bones as pain.\n\n\"When did he come here?\" I asked the woman.\n\n\"This morning, ma'am, I found him at the corner of the town.  I had \nknown him up in London yonder.  Hadn't I, Jo?\"\n\n\"Tom-all-Alone's,\" the boy replied.\n\nWhenever he fixed his attention or his eyes, it was only for a very \nlittle while.  He soon began to droop his head again, and roll it \nheavily, and speak as if he were half awake.\n\n\"When did he come from London?\" I asked.\n\n\"I come from London yes'day,\" said the boy himself, now flushed and \nhot.  \"I'm a-going somewheres.\"\n\n\"Where is he going?\" I asked.\n\n\"Somewheres,\" repeated the boy in a louder tone.  \"I have been \nmoved on, and moved on, more nor ever I was afore, since the \nt'other one give me the sov'ring.  Mrs. Snagsby, she's always a-\nwatching, and a-driving of me--what have I done to her?--and \nthey're all a-watching and a-driving of me.  Every one of 'em's \ndoing of it, from the time when I don't get up, to the time when I \ndon't go to bed.  And I'm a-going somewheres.  That's where I'm a-\ngoing.  She told me, down in Tom-all-Alone's, as she came from \nStolbuns, and so I took the Stolbuns Road.  It's as good as \nanother.\"\n\nHe always concluded by addressing Charley.\n\n\"What is to be done with him?\" said I, taking the woman aside.  \"He \ncould not travel in this state even if he had a purpose and knew \nwhere he was going!\"\n\n\"I know no more, ma'am, than the dead,\" she replied, glancing \ncompassionately at him.  \"Perhaps the dead know better, if they \ncould only tell us.  I've kept him here all day for pity's sake, \nand I've given him broth and physic, and Liz has gone to try if any \none will take him in (here's my pretty in the bed--her child, but I \ncall it mine); but I can't keep him long, for if my husband was to \ncome home and find him here, he'd be rough in putting him out and \nmight do him a hurt.  Hark! Here comes Liz back!\"\n\nThe other woman came hurriedly in as she spoke, and the boy got up \nwith a half-obscured sense that he was expected to be going.  When \nthe little child awoke, and when and how Charley got at it, took it \nout of bed, and began to walk about hushing it, I don't know.  \nThere she was, doing all this in a quiet motherly manner as if she \nwere living in Mrs. Blinder's attic with Tom and Emma again.\n\nThe friend had been here and there, and had been played about from \nhand to hand, and had come back as she went.  At first it was too \nearly for the boy to be received into the proper refuge, and at \nlast it was too late.  One official sent her to another, and the \nother sent her back again to the first, and so backward and \nforward, until it appeared to me as if both must have been \nappointed for their skill in evading their duties instead of \nperforming them.  And now, after all, she said, breathing quickly, \nfor she had been running and was frightened too, \"Jenny, your \nmaster's on the road home, and mine's not far behind, and the Lord \nhelp the boy, for we can do no more for him!\"  They put a few \nhalfpence together and hurried them into his hand, and so, in an \noblivious, half-thankful, half-insensible way, he shuffled out of \nthe house.\n\n\"Give me the child, my dear,\" said its mother to Charley, \"and \nthank you kindly too!  Jenny, woman dear, good night!\n\nYoung lady, if my master don't fall out with me, I'll look down by \nthe kiln by and by, where the boy will be most like, and again in \nthe morning!\"  She hurried off, and presenfty we passed her hushing \nand singing to her child at her own door and looking anxiously \nalong the road for her drunken husband.\n\nI was afraid of staying then to speak to either woman, lest I \nshould bring her into trouble.  But I said to Charley that we must \nnot leave the boy to die.  Charley, who knew what to do much better \nthan I did, and whose quickness equalled her presence of mind, \nglided on before me, and presently we came up with Jo, just short \nof the brick-kiln.\n\nI think he must have begun his journey with some small bundle under \nhis arm and must have had it stolen or lost it.  For he still \ncarried his wretched fragment of fur cap like a bundle, though he \nwent bareheaded through the rain, which now fell fast.  He stopped \nwhen we called to him and again showed a dread of me when I came \nup, standing with his lustrous eyes fixed upon me, and even \narrested in his shivering fit.\n\nI asked him to come with us, and we would take care that he had \nsome shelter for the night.\n\n\"I don't want no shelter,\" he said; \"I can lay amongst the warm \nbricks.\"\n\n\"But don't you know that people die there?\" replied Charley.\n\n\"They dies everywheres,\" said the boy.  \"They dies in their \nlodgings--she knows where; I showed her--and they dies down in Tom-\nall-Alone's in heaps.  They dies more than they lives, according to \nwhat I see.\"  Then he hoarsely whispered Charley, \"If she ain't the \nt'other one, she ain't the forrenner.  Is there THREE of 'em then?\"\n\nCharley looked at me a little frightened.  I felt half frightened \nat myself when the boy glared on me so.\n\nBut he turned and followed when I beckoned to him, and finding that \nhe acknowledged that influence in me, I led the way straight home.  \nIt was not far, only at the summit of the hill.  We passed but one \nman.  I doubted if we should have got home without assistance, the \nboy's steps were so uncertain and tremulous.  He made no complaint, \nhowever, and was strangely unconcerned about himself, if I may say \nso strange a thing.\n\nLeaving him in the hall for a moment, shrunk into the corner of the \nwindow-seat and staring with an indifference that scarcely could be \ncalled wonder at the comfort and brightness about him, I went into \nthe drawing-room to speak to my guardian.  There I found Mr. \nSkimpole, who had come down by the coach, as he frequently did \nwithout notice, and never bringing any clothes with him, but always \nborrowing everything he wanted.\n\nThey came out with me directly to look at the boy.  The servants \nhad gathered in the hall too, and he shivered in the window-seat \nwith Charley standing by him, like some wounded animal that had \nbeen found in a ditch.\n\n\"This is a sorrowful case,\" said my guardian after asking him a \nquestion or two and touching him and examining his eyes.  \"What do \nyou say, Harold?\"\n\n\"You had better turn him out,\" said Mr. Skimpole.\n\n\"What do you mean?\" inquired my guardian, almost sternly.\n\n\"My dear Jarndyce,\" said Mr. Skimpole, \"you know what I am: I am a \nchild.  Be cross to me if I deserve it.  But I have a \nconstitutional objection to this sort of thing.  I always had, when \nI was a medical man.  He's not safe, you know.  There's a very bad \nsort of fever about him.\"\n\nMr. Skimpole had retreated from the hall to the drawing-room again \nand said this in his airy way, seated on the music-stool as we \nstood by.\n\n\"You'll say it's childish,\" observed Mr. Skimpole, looking gaily at \nus.  \"Well, I dare say it may be; but I AM a child, and I never \npretend to be anything else.  If you put him out in the road, you \nonly put him where he was before.  He will be no worse off than he \nwas, you know.  Even make him better off, if you like.  Give him \nsixpence, or five shillings, or five pound ten--you are \narithmeticians, and I am not--and get rid of him!\"\n\n\"And what is he to do then?\" asked my guardian.\n\n\"Upon my life,\" said Mr. Skimpole, shrugging his shoulders with his \nengaging smile, \"I have not the least idea what he is to do then.  \nBut I have no doubt he'll do it.\"\n\n\"Now, is it not a horrible reflection,\" said my guardian, to whom I \nhad hastily explained the unavailing efforts of the two women, \"is \nit not a horrible reflection,\" walking up and down and rumpling his \nhair, \"that if this wretched creature were a convicted prisoner, \nhis hospital would be wide open to him, and he would be as well \ntaken care of as any sick boy in the kingdom?\"\n\n\"My dear Jarndyce,\" returned Mr. Skimpole, \"you'll pardon the \nsimplicity of the question, coming as it does from a creature who \nis perfectly simple in worldly matters, but why ISN'T he a prisoner \nthen?\"\n\nMy guardian stopped and looked at him with a whimsical mixture of \namusement and indignation in his face.\n\n\"Our young friend is not to be suspected of any delicacy, I should \nimagine,\" said Mr. Skimpole, unabashed and candid.  \"It seems to me \nthat it would be wiser, as well as in a certain kind of way more \nrespectable, if he showed some misdirected energy that got him into \nprison.  There would be more of an adventurous spirit in it, and \nconsequently more of a certain sort of poetry.\"\n\n\"I believe,\" returned my guardian, resuming his uneasy walk, \"that \nthere is not such another child on earth as yourself.\"\n\n\"Do you really?\" said Mr. Skimpole.  \"I dare say!  But I confess I \ndon't see why our young friend, in his degree, should not seek to \ninvest himself with such poetry as is open to him.  He is no doubt \nborn with an appetite--probably, when he is in a safer state of \nhealth, he has an excellent appetite.  Very well.  At our young \nfriend's natural dinner hour, most likely about noon, our young \nfriend says in effect to society, 'I am hungry; will you have the \ngoodness to produce your spoon and feed me?'  Society, which has \ntaken upon itself the general arrangement of the whole system of \nspoons and professes to have a spoon for our young friend, does NOT \nproduce that spoon; and our young friend, therefore, says 'You \nreally must excuse me if I seize it.'  Now, this appears to me a \ncase of misdirected energy, which has a certain amount of reason in \nit and a certain amount of romance; and I don't know but what I \nshould be more interested in our young friend, as an illustration \nof such a case, than merely as a poor vagabond--which any one can \nbe.\"\n\n\"In the meantime,\" I ventured to observe, \"he is getting worse.\"\n\n\"In the meantime,\" said Mr. Skimpole cheerfully, \"as Miss \nSummerson, with her practical good sense, observes, he is getting \nworse.  Therefore I recommend your turning him out before he gets \nstill worse.\"\n\nThe amiable face with which he said it, I think I shall never \nforget.\n\n\"Of course, little woman,\" observed my guardian, tuming to me, \"I \ncan ensure his admission into the proper place by merely going \nthere to enforce it, though it's a bad state of things when, in his \ncondition, that is necessary.  But it's growing late, and is a very \nbad night, and the boy is worn out already.  There is a bed in the \nwholesome loft-room by the stable; we had better keep him there \ntill morning, when he can be wrapped up and removed.  We'll do \nthat.\"\n\n\"Oh!\" said Mr. Skimpole, with his hands upon the keys of the piano \nas we moved away.  \"Are you going back to our young friend?\"\n\n\"Yes,\" said my guardian.\n\n\"How I envy you your constitution, Jarndyce!\" returned Mr. Skimpole \nwith playful admiration.  \"You don't mind these things; neither \ndoes Miss Summerson.  You are ready at all times to go anywhere, \nand do anything.  Such is will!  I have no will at all--and no \nwon't--simply can't.\"\n\n\"You can't recommend anything for the boy, I suppose?\" said my \nguardian, looking back over his shoulder half angrily; only half \nangrily, for he never seemed to consider Mr. Skimpole an \naccountable being.\n\n\"My dear Jarndyce, I observed a bottle of cooling medicine in his \npocket, and it's impossible for him to do better than take it.  You \ncan tell them to sprinkle a little vinegar about the place where he \nsleeps and to keep it moderately cool and him moderately warm.  But \nit is mere impertinence in me to offer any recommendation.  Miss \nSummerson has such a knowledge of detail and such a capacity for \nthe administration of detail that she knows all about it.\"\n\nWe went back into the hall and explained to Jo what we proposed to \ndo, which Charley explained to him again and which he received with \nthe languid unconcern I had already noticed, wearily looking on at \nwhat was done as if it were for somebody else.  The servants \ncompassionating his miserable state and being very anxious to help, \nwe soon got the loft-room ready; and some of the men about the \nhouse carried him across the wet yard, well wrapped up.  It was \npleasant to observe how kind they were to him and how there \nappeared to be a general impression among them that frequently \ncalling him \"Old Chap\" was likely to revive his spirits.  Charley \ndirected the operations and went to and fro between the loft-room \nand the house with such little stimulants and comforts as we \nthought it safe to give him.  My guardian himself saw him before he \nwas left for the night and reported to me when he returned to the \ngrowlery to write a letter on the boy's behalf, which a messenger \nwas charged to deliver at day-light in the morning, that he seemed \neasier and inclined to sleep.  They had fastened his door on the \noutside, he said, in case of his being delirious, but had so \narranged that he could not make any noise without being heard.\n\nAda being in our room with a cold, Mr. Skimpole was left alone all \nthis time and entertained himself by playing snatches of pathetic \nairs and sometimes singing to them (as we heard at a distance) with \ngreat expression and feeling.  When we rejoined him in the drawing-\nroom he said he would give us a little ballad which had come into \nhis head \"apropos of our young friend,\" and he sang one about a \npeasant boy,\n\n\n   \"Thrown on the wide world, doomed to wander and roam,\n    Bereft of his parents, bereft of a home.\"\n\n\nquite exquisitely.  It was a song that always made him cry, he told \nus.\n\nHe was extremely gay all the rest of the evening, for he absolutely \nchirped--those were his delighted words--when he thought by what a \nhappy talent for business he was surrounded.  He gave us, in his \nglass of negus, \"Better health to our young friend!\" and supposed \nand gaily pursued the case of his being reserved like Whittington \nto become Lord Mayor of London.  In that event, no doubt, he would \nestablish the Jarndyce Institution and the Summerson Almshouses, \nand a little annual Corporation Pilgrimage to St. Albans.  He had \nno doubt, he said, that our young friend was an excellent boy in \nhis way, but his way was not the Harold Skimpole way; what Harold \nSkimpole was, Harold Skimpole had found himself, to his \nconsiderable surprise, when he first made his own acquaintance; he \nhad accepted himself with all his failings and had thought it sound \nphilosophy to make the best of the bargain; and he hoped we would \ndo the same.\n\nCharley's last report was that the boy was quiet.  I could see, \nfrom my window, the lantern they had left him burning quietly; and \nI went to bed very happy to think that he was sheltered.\n\nThere was more movement and more talking than usual a little before \ndaybreak, and it awoke me.  As I was dressing, I looked out of my \nwindow and asked one of our men who had been among the active \nsympathizers last night whether there was anything wrong about the \nhouse.  The lantern was still burning in the loft-window.\n\n\"It's the boy, miss,\" said he.\n\n\"Is he worse?\" I inquired.\n\n\"Gone, miss.\n\n\"Dead!\"\n\n\"Dead, miss?  No.  Gone clean off.\"\n\nAt what time of the night he had gone, or how, or why, it seemed \nhopeless ever to divine.  The door remaining as it had been left, \nand the lantern standing in the window, it could only be supposed \nthat he had got out by a trap in the floor which communicated with \nan empty cart-house below.  But he had shut it down again, if that \nwere so; and it looked as if it had not been raised.  Nothing of \nany kind was missing.  On this fact being clearly ascertained, we \nall yielded to the painful belief that delirium had come upon him \nin the night and that, allured by some imaginary object or pursued \nby some imaginary horror, he had strayed away in that worse than \nhelpless state; all of us, that is to say, but Mr. Skimpole, who \nrepeatedly suggested, in his usual easy light style, that it had \noccurred to our young friend that he was not a safe inmate, having \na bad kind of fever upon him, and that he had with great natural \npoliteness taken himself off.\n\nEvery possible inquiry was made, and every place was searched.  The \nbrick-kilns were examined, the cottages were visited, the two women \nwere particularly questioned, but they knew nothing of him, and \nnobody could doubt that their wonder was genuine.  The weather had \nfor some time been too wet and the night itself had been too wet to \nadmit of any tracing by footsteps.  Hedge and ditch, and wall, and \nrick and stack, were examined by our men for a long distance round, \nlest the boy should be lying in such a place insensible or dead; \nbut nothing was seen to indicate that he had ever been near.  From \nthe time when he was left in the loft-room, he vanished.\n\nThe search continued for five days.  I do not mean that it ceased \neven then, but that my attention was then diverted into a current \nvery memorable to me.\n\nAs Charley was at her writing again in my room in the evening, and \nas I sat opposite to her at work, I felt the table tremble.  \nLooking up, I saw my little maid shivering from head to foot.\n\n\"Charley,\" said I, \"are you so cold?\"\n\n\"I think I am, miss,\" she replied.  \"I don't know what it is.  I \ncan't hold myself still.  I felt so yesterday at about this same \ntime, miss.  Don't be uneasy, I think I'm ill.\"\n\nI heard Ada's voice outside, and I hurried to the door of \ncommunication between my room and our pretty sitting-room, and \nlocked it.  Just in time, for she tapped at it while my hand was \nyet upon the key.\n\nAda called to me to let her in, but I said, \"Not now, my dearest.  \nGo away.  There's nothing the matter; I will come to you \npresently.\"  Ah! It was a long, long time before my darling girl \nand I were companions again.\n\nCharley fell ill.  In twelve hours she was very ill.  I moved her \nto my room, and laid her in my bed, and sat down quietly to nurse \nher.  I told my guardian all about it, and why I felt it was \nnecessary that I should seclude myself, and my reason for not \nseeing my darling above all.  At first she came very often to the \ndoor, and called to me, and even reproached me with sobs and tears; \nbut I wrote her a long letter saying that she made me anxious and \nunhappy and imploring her, as she loved me and wished my mind to be \nat peace, to come no nearer than the garden.  After that she came \nbeneath the window even oftener than she had come to the door, and \nif I had learnt to love her dear sweet voice before when we were \nhardly ever apart, how did I learn to love it then, when I stood \nbehind the window-curtain listening and replying, but not so much \nas looking out!  How did I learn to love it afterwards, when the \nharder time came!\n\nThey put a bed for me in our sitting-room; and by keeping the door \nwide open, I turned the two rooms into one, now that Ada had \nvacated that part of the house, and kept them always fresh and \nairy.  There was not a servant in or about the house but was so \ngood that they would all most gladly have come to me at any hour of \nthe day or night without the least fear or unwillingness, but I \nthought it best to choose one worthy woman who was never to see Ada \nand whom I could trust to come and go with all precaution.  Through \nher means I got out to take the air with my guardian when there was \nno fear of meeting Ada, and wanted for nothing in the way of \nattendance, any more than in any other respect.\n\nAnd thus poor Charley sickened and grew worse, and fell into heavy \ndanger of death, and lay severely ill for many a long round of day \nand night.  So patient she was, so uncomplaining, and inspired by \nsuch a gentle fortitude that very often as I sat by Charley holding \nher head in my arms--repose would come to her, so, when it would \ncome to her in no other attitude--I silently prayed to our Father \nin heaven that I might not forget the lesson which this little \nsister taught me.\n\nI was very sorrowful to think that Charley's pretty looks would \nchange and be disfigured, even if she recovered--she was such a \nchild with her dimpled face--but that thought was, for the greater \npart, lost in her greater peril.  When she was at the worst, and \nher mind rambled again to the cares of her father's sick bed and \nthe little children, she still knew me so far as that she would be \nquiet in my arms when she could lie quiet nowhere else, and murmur \nout the wanderings of her mind less restlessly.  At those times I \nused to think, how should I ever tell the two remaining babies that \nthe baby who had learned of her faithful heart to be a mother to \nthem in their need was dead!\n\nThere were other times when Charley knew me well and talked to me, \ntelling me that she sent her love to Tom and Emma and that she was \nsure Tom would grow up to be a good man.  At those times Charley \nwould speak to me of what she had read to her father as well as she \ncould to comfort him, of that young man carried out to be buried \nwho was the only son of his mother and she was a widow, of the \nruler's daughter raised up by the gracious hand upon her bed of \ndeath.  And Charley told me that when her father died she had \nkneeled down and prayed in her first sorrow that he likewise might \nbe raised up and given back to his poor children, and that if she \nshould never get better and should die too, she thought it likely \nthat it might come into Tom's mind to offer the same prayer for \nher.  Then would I show Tom how these people of old days had been \nbrought back to life on earth, only that we might know our hope to \nbe restored to heaven!\n\nBut of all the various times there were in Charley's illness, there \nwas not one when she lost the gentle qualities I have spoken of.  \nAnd there were many, many when I thought in the night of the last \nhigh belief in the watching angel, and the last higher trust in \nGod, on the part of her poor despised father.\n\nAnd Charley did not die.  She flutteringiy and slowly turned the \ndangerous point, after long lingering there, and then began to \nmend.  The hope that never had been given, from the first, of \nCharley being in outward appearance Charley any more soon began to \nbe encouraged; and even that prospered, and I saw her growing into \nher old childish likeness again.\n\nIt was a great morning when I could tell Ada all this as she stood \nout in the garden; and it was a great evening when Charley and I at \nlast took tea together in the next room.  But on that same evening, \nI felt that I was stricken cold.\n\nHappily for both of us, it was not until Charley was safe in bed \nagain and placidly asleep that I began to think the contagion of \nher illness was upon me.  I had been able easily to hide what I \nfelt at tea-time, but I was past that already now, and I knew that \nI was rapidly following in Charley's steps.\n\nI was well enough, however, to be up early in the morning, and to \nreturn my darling's cheerful blessing from the garden, and to talk \nwith her as long as usual.  But I was not free from an impression \nthat I had been walking about the two rooms in the night, a little \nbeside myself, though knowing where I was; and I felt confused at \ntimes--with a curious sense of fullness, as if I were becoming too \nlarge altogether.\n\nIn the evening I was so much worse that I resolved to prepare \nCharley, with which view I said, \"You're getting quite strong, \nCharley, are you not?'\n\n\"Oh, quite!\" said Charley.\n\n\"Strong enough to be told a secret, I think, Charley?\"\n\n\"Quite strong enough for that, miss!\" cried Charley.  But Charley's \nface fell in the height of her delight, for she saw the secret in \nMY face; and she came out of the great chair, and fell upon my \nbosom, and said \"Oh, miss, it's my doing!  It's my doing!\" and a \ngreat deal more out of the fullness of her grateful heart.\n\n\"Now, Charley,\" said I after letting her go on for a little while, \n\"if I am to be ill, my great trust, humanly speaking, is in you.  \nAnd unless you are as quiet and composed for me as you always were \nfor yourself, you can never fulfil it, Charley.\"\n\n\"If you'll let me cry a little longer, miss,\" said Charley.  \"Oh, \nmy dear, my dear!  If you'll only let me cry a little longer.  Oh, \nmy dear!\"--how affectionately and devotedly she poured this out as \nshe clung to my neck, I never can remember without tears--\"I'll be \ngood.\"\n\nSo I let Charley cry a little longer, and it did us both good.\n\n\"Trust in me now, if you please, miss,\" said Charley quietly.  \"I \nam listening to everything you say.\"\n\n\"It's very little at present, Charley.  I shall tell your doctor \nto-night that I don't think I am well and that you are going to \nnurse me.\"\n\nFor that the poor child thanked me with her whole heart.  \"And in \nthe morning, when you hear Miss Ada in the garden, if I should not \nbe quite able to go to the window-curtain as usual, do you go, \nCharley, and say I am asleep--that I have rather tired myself, and \nam asleep.  At all times keep the room as I have kept it, Charley, \nand let no one come.\"\n\nCharley promised, and I lay down, for I was very heavy.  I saw the \ndoctor that night and asked the favour of him that I wished to ask \nrelative to his saying nothing of my illness in the house as yet.  \nI have a very indistinct remembrance of that night melting into \nday, and of day melting into night again; but I was just able on \nthe first morning to get to the window and speak to my darling.\n\nOn the second morning I heard her dear voice--Oh, how dear now!--\noutside; and I asked Charley, with some difficulty (speech being \npainful to me), to go and say I was asleep.  I heard her answer \nsoftly, \"Don't disturb her, Charley, for the world!\"\n\n\"How does my own Pride look, Charley?\" I inquired.\n\n\"Disappointed, miss,\" said Charley, peeping through the curtain.\n\n\"But I know she is very beautiful this morning.\"\n\n\"She is indeed, miss,\" answered Charley, peeping.  \"Still looking \nup at the window.\"\n\nWith her blue clear eyes, God bless them, always loveliest when \nraised like that!\n\nI called Charley to me and gave her her last charge.\n\n\"Now, Charley, when she knows I am ill, she will try to make her \nway into the room.  Keep her out, Charley, if you love me truly, to \nthe last!  Charley, if you let her in but once, only to look upon \nme for one moment as I lie here, I shall die.\"\n\n\"I never will!  I never will!\" she promised me.\n\n\"I believe it, my dear Charley.  And now come and sit beside me for \na little while, and touch me with your hand.  For I cannot see you, \nCharley; I am blind.\"\n\n\n\nCHAPTER XXXII\n\nThe Appointed Time\n\n\nIt is night in Lincoln's Inn--perplexed and troublous valley of the \nshadow of the law, where suitors generally find but little day--and \nfat candles are snuffed out in offices, and clerks have rattled \ndown the crazy wooden stairs and dispersed.  The bell that rings at \nnine o'clock has ceased its doleful clangour about nothing; the \ngates are shut; and the night-porter, a solemn warder with a mighty \npower of sleep, keeps guard in his lodge.  From tiers of staircase \nwindows clogged lamps like the eyes of Equity, bleared Argus with a \nfathomless pocket for every eye and an eye upon it, dimly blink at \nthe stars.  In dirty upper casements, here and there, hazy little \npatches of candlelight reveal where some wise draughtsman and \nconveyancer yet toils for the entanglement of real estate in meshes \nof sheep-skin, in the average ratio of about a dozen of sheep to an \nacre of land.  Over which bee-like industry these benefactors of \ntheir species linger yet, though office-hours be past, that they \nmay give, for every day, some good account at last.\n\nIn the neighbouring court, where the Lord Chancellor of the rag and \nbottle shop dwells, there is a general tendency towards beer and \nsupper.  Mrs. Piper and Mrs. Perkins, whose respective sons, \nengaged with a circle of acquaintance in the game of hide and seek, \nhave been lying in ambush about the by-ways of Chancery Lane for \nsome hours and scouring the plain of the same thoroughfare to the \nconfusion of passengers--Mrs. Piper and Mrs. Perkins have but now \nexchanged congratulations on the children being abed, and they \nstill linger on a door-step over a few parting words.  Mr. Krook \nand his lodger, and the fact of Mr. Krook's being \"continually in \nliquor,\" and the testamentary prospects of the young man are, as \nusual, the staple of their conversation.  But they have something \nto say, likewise, of the Harmonic Meeting at the Sol's Arms, where \nthe sound of the piano through the partly opened windows jingles \nout into the court, and where Little Swills, after keeping the \nlovers of harmony in a roar like a very Yorick, may now be heard \ntaking the gruff line in a concerted piece and sentimentally \nadjuring his friends and patrons to \"Listen, listen, listen, tew \nthe wa-ter fall!\"  Mrs. Perkins and Mrs. Piper compare opinions on \nthe subject of the young lady of professional celebrity who assists \nat the Harmonic Meetings and who has a space to herself in the \nmanuscript announcement in the window, Mrs. Perkins possessing \ninformation that she has been married a year and a half, though \nannounced as Miss M. Melvilleson, the noted siren, and that her \nbaby is clandestinely conveyed to the Sol's Arms every night to \nreceive its natural nourishment during the entertainments.  \"Sooner \nthan which, myself,\" says Mrs. Perkins, \"I would get my living by \nselling lucifers.\"  Mrs. Piper, as in duty bound, is of the same \nopinion, holding that a private station is better than public \napplause, and thanking heaven for her own (and, by implication, \nMrs. Perkins') respectability.  By this time the pot-boy of the \nSol's Arms appearing with her supper-pint well frothed, Mrs. Piper \naccepts that tankard and retires indoors, first giving a fair good \nnight to Mrs. Perkins, who has had her own pint in her hand ever \nsince it was fetched from the same hostelry by young Perkins before \nhe was sent to bed.  Now there is a sound of putting up shop-\nshutters in the court and a smell as of the smoking of pipes; and \nshooting stars are seen in upper windows, further indicating \nretirement to rest.  Now, too, the policeman begins to push at \ndoors; to try fastenings; to be suspicious of bundles; and to \nadminister his beat, on the hypothesis that every one is either \nrobbing or being robbed.\n\nIt is a close night, though the damp cold is searching too, and \nthere is a laggard mist a little way up in the air.  It is a fine \nsteaming night to turn the slaughter-houses, the unwholesome \ntrades, the sewerage, bad water, and burial-grounds to account, and \ngive the registrar of deaths some extra business.  It may be \nsomething in the air--there is plenty in it--or it may be something \nin himself that is in fault; but Mr. Weevle, otherwise Jobling, is \nvery ill at ease.  He comes and goes between his own room and the \nopen street door twenty times an hour.  He has been doing so ever \nsince it fell dark.  Since the Chancellor shut up his shop, which \nhe did very early to-night, Mr. Weevle has been down and up, and \ndown and up (with a cheap tight velvet skull-cap on his head, \nmaking his whiskers look out of all proportion), oftener than \nbefore.\n\nIt is no phenomenon that Mr. Snagsby should be ill at ease too, for \nhe always is so, more or less, under the oppressive influence of \nthe secret that is upon him.  Impelled by the mystery of which he \nis a partaker and yet in which he is not a sharer, Mr. Snagsby \nhaunts what seems to be its fountain-head--the rag and bottle shop \nin the court.  It has an irresistible attraction for him.  Even \nnow, coming round by the Sol's Arms with the intention of passing \ndown the court, and out at the Chancery Lane end, and so \nterminating his unpremeditated after-supper stroll of ten minutes' \nlong from his own door and back again, Mr. Snagsby approaches.\n\n\"What, Mr. Weevle?\" says the stationer, stopping to speak.  \"Are \nYOU there?\"\n\n\"Aye!\" says Weevle, \"Here I am, Mr. Snagsby.\"\n\n\"Airing yourself, as I am doing, before you go to bed?\" the \nstationer inquires.\n\n\"Why, there's not much air to be got here; and what there is, is \nnot very freshening,\" Weevle answers, glancing up and down the \ncourt.\n\n\"Very true, sir.  Don't you observe,\" says Mr. Snagsby, pausing to \nsniff and taste the air a little, \"don't you observe, Mr. Weevle, \nthat you're--not to put too fine a point upon it--that you're \nrather greasy here, sir?\"\n\n\"Why, I have noticed myself that there is a queer kind of flavour \nin the place to-night,\" Mr. Weevle rejoins.  \"I suppose it's chops \nat the Sol's Arms.\"\n\n\"Chops, do you think?  Oh! Chops, eh?\"  Mr. Snagsby sniffs and \ntastes again.  \"Well, sir, I suppose it is.  But I should say their \ncook at the Sol wanted a little looking after.  She has been \nburning 'em, sir!  And I don't think\"--Mr. Snagsby sniffs and \ntastes again and then spits and wipes his mouth--\"I don't think--\nnot to put too fine a point upon it--that they were quite fresh \nwhen they were shown the gridiron.\"\n\n\"That's very likely.  It's a tainting sort of weather.\"\n\n\"It IS a tainting sort of weather,\" says Mr. Snagsby, \"and I find \nit sinking to the spirits.\"\n\n\"By George!  I find it gives me the horrors,\" returns Mr. Weevle.\n\n\"Then, you see, you live in a lonesome way, and in a lonesome room, \nwith a black circumstance hanging over it,\" says Mr. Snagsby, \nlooking in past the other's shoulder along the dark passage and \nthen falling back a step to look up at the house.  \"I couldn't live \nin that room alone, as you do, sir.  I should get so fidgety and \nworried of an evening, sometimes, that I should be driven to come \nto the door and stand here sooner than sit there.  But then it's \nvery true that you didn't see, in your room, what I saw there.  \nThat makes a difference.\"\n\n\"I know quite enough about it,\" returns Tony.\n\n\"It's not agreeable, is it?\" pursues Mr. Snagsby, coughing his \ncough of mild persuasion behind his hand.  \"Mr. Krook ought to \nconsider it in the rent.  I hope he does, I am sure.\"\n\n\"I hope he does,\" says Tony.  \"But I doubt it.\"\n\n\"You find the rent too high, do you, sir?\" returns the stationer.  \n\"Rents ARE high about here.  I don't know how it is exactly, but \nthe law seems to put things up in price.  Not,\" adds Mr. Snagsby \nwith his apologetic cough, \"that I mean to say a word against the \nprofession I get my living by.\"\n\nMr. Weevle again glances up and down the court and then looks at \nthe stationer.  Mr. Snagsby, blankly catching his eye, looks upward \nfor a star or so and coughs a cough expressive of not exactly \nseeing his way out of this conversation.\n\n\"It's a curious fact, sir,\" he observes, slowly rubbing his hands, \n\"that he should have been--\"\n\n\"Who's he?\" interrupts Mr. Weevle.\n\n\"The deceased, you know,\" says Mr. Snagsby, twitching his head and \nright eyebrow towards the staircase and tapping his acquaintance on \nthe button.\n\n\"Ah, to be sure!\" returns the other as if he were not over-fond of \nthe subject.  \"I thought we had done with him.\"\n\n\"I was only going to say it's a curious fact, sir, that he should \nhave come and lived here, and been one of my writers, and then that \nyou should come and live here, and be one of my writers too.  Which \nthere is nothing derogatory, but far from it in the appellation,\" \nsays Mr. Snagsby, breaking off with a mistrust that he may have \nunpolitely asserted a kind of proprietorship in Mr. Weevle, \n\"because I have known writers that have gone into brewers' houses \nand done really very respectable indeed.  Eminently respectable, \nsir,\" adds Mr. Snagsby with a misgiving that he has not improved \nthe matter.\n\n\"It's a curious coincidence, as you say,\" answers Weevle, once more \nglancing up and down the court.\n\n\"Seems a fate in it, don't there?\" suggests the stationer.\n\n\"There does.\"\n\n\"Just so,\" observes the stationer with his confirmatory cough.  \n\"Quite a fate in it.  Quite a fate.  Well, Mr. Weevle, I am afraid \nI must bid you good night\"--Mr. Snagsby speaks as if it made him \ndesolate to go, though he has been casting about for any means of \nescape ever since he stopped to speak--\"my little woman will be \nlooking for me else.  Good night, sir!\"\n\nIf Mr. Snagsby hastens home to save his little woman the trouble of \nlooking for him, he might set his mind at rest on that score.  His \nlittle woman has had her eye upon him round the Sol's Arms all this \ntime and now glides after him with a pocket handkerchief wrapped \nover her head, honourmg Mr. Weevle and his doorway with a searching \nglance as she goes past.\n\n\"You'll know me again, ma'am, at all events,\" says Mr. Weevle to \nhimself; \"and I can't compliment you on your appearance, whoever \nyou are, with your head tied up in a bundle.  Is this fellow NEVER \ncoming!\"\n\nThis fellow approaches as he speaks.  Mr. Weevle softly holds up \nhis finger, and draws him into the passage, and closes the street \ndoor.  Then they go upstairs, Mr. Weevle heavily, and Mr. Guppy \n(for it is he) very lightly indeed.  When they are shut into the \nback room, they speak low.\n\n\"I thought you had gone to Jericho at least instead of coming \nhere,\" says Tony.\n\n\"Why, I said about ten.\"\n\n\"You said about ten,\" Tony repeats.  \"Yes, so you did say about \nten.  But according to my count, it's ten times ten--it's a hundred \no'clock.  I never had such a night in my life!\"\n\n\"What has been the matter?\"\n\n\"That's it!\" says Tony.  \"Nothing has been the matter.  But here \nhave I been stewing and fuming in this jolly old crib till I have \nhad the horrors falling on me as thick as hail.  THERE'S a blessed-\nlooking candle!\" says Tony, pointing to the heavily burning taper \non his table with a great cabbage head and a long winding-sheet.\n\n\"That's easily improved,\" Mr. Guppy observes as he takes the \nsnuffers in hand.\n\n\"IS it?\" returns his friend.  \"Not so easily as you think.  It has \nbeen smouldering like that ever since it was lighted.\"\n\n\"Why, what's the matter with you, Tony?\" inquires Mr. Guppy, \nlooking at him, snuffers in hand, as he sits down with his elbow on \nthe table.\n\n\"William Guppy,\" replies the other, \"I am in the downs.  It's this \nunbearably dull, suicidal room--and old Boguey downstairs, I \nsuppose.\"  Mr. Weevle moodily pushes the snuffers-tray from him \nwith his elbow, leans his head on his hand, puts his feet on the \nfender, and looks at the fire.  Mr. Guppy, observing him, slightly \ntosses his head and sits down on the other side of the table in an \neasy attitude.\n\n\"Wasn't that Snagsby talking to you, Tony?\"\n\n\"Yes, and he--yes, it was Snagsby,\" said Mr. Weevle, altering the \nconstruction of his sentence.\n\n\"On business?\"\n\n\"No.  No business.  He was only sauntering by and stopped to \nprose.\"\n\n\"I thought it was Snagsby,\" says Mr. Guppy, \"and thought it as well \nthat he shouldn't see me, so I waited till he was gone.\"\n\n\"There we go again, William G.!\" cried Tony, looking up for an \ninstant.  \"So mysterious and secret!  By George, if we were going \nto commit a murder, we couldn't have more mystery about it!\"\n\nMr. Guppy affects to smile, and with the view of changing the \nconversation, looks with an admiration, real or pretended, round \nthe room at the Galaxy Gallery of British Beauty, terminating his \nsurvey with the portrait of Lady Dedlock over the mantelshelf, in \nwhich she is represented on a terrace, with a pedestal upon the \nterrace, and a vase upon the pedestal, and her shawl upon the vase, \nand a prodigious piece of fur upon the shawl, and her arm on the \nprodigious piece of fur, and a bracelet on her arm.\n\n\"That's very like Lady Dedlock,\" says Mr. Guppy.  \"It's a speaking \nlikeness.\"\n\n\"I wish it was,\" growls Tony, without changing his position.  \"I \nshould have some fashionable conversation, here, then.\"\n\nFinding by this time that his friend is not to be wheedled into a \nmore sociable humour, Mr. Guppy puts about upon the ill-used tack \nand remonstrates with him.\n\n\"Tony,\" says he, \"I can make allowances for lowness of spirits, for \nno man knows what it is when it does come upon a man better than I \ndo, and no man perhaps has a better right to know it than a man who \nhas an unrequited image imprinted on his 'eart.  But there are \nbounds to these things when an unoffending party is in question, \nand I will acknowledge to you, Tony, that I don't think your manner \non the present occasion is hospitable or quite gentlemanly.\"\n\n\"This is strong language, William Guppy,\" returns Mr. Weevle.\n\n\"Sir, it may be,\" retorts Mr. William Guppy, \"but I feel strongly \nwhen I use it.\"\n\nMr. Weevle admits that he has been wrong and begs Mr. William Guppy \nto think no more about it.  Mr. William Guppy, however, having got \nthe advantage, cannot quite release it without a little more \ninjured remonstrance.\n\n\"No!  Dash it, Tony,\" says that gentleman, \"you really ought to be \ncareful how you wound the feelings of a man who has an unrequited \nimage imprinted on his 'eart and who is NOT altogether happy in \nthose chords which vibrate to the tenderest emotions.  You, Tony, \npossess in yourself all that is calculated to charm the eye and \nallure the taste.  It is not--happily for you, perhaps, and I may \nwish that I could say the same--it is not your character to hover \naround one flower.  The ole garden is open to you, and your airy \npinions carry you through it.  Still, Tony, far be it from me, I am \nsure, to wound even your feelings without a cause!\"\n\nTony again entreats that the subject may be no longer pursued, \nsaying emphatically, \"William Guppy, drop it!\"  Mr. Guppy \nacquiesces, with the reply, \"I never should have taken it up, Tony, \nof my own accord.\"\n\n\"And now,\" says Tony, stirring the fire, \"touching this same bundle \nof letters.  Isn't it an extraordinary thing of Krook to have \nappointed twelve o'clock to-night to hand 'em over to me?\"\n\n\"Very.  What did he do it for?\"\n\n\"What does he do anything for?  HE don't know.  Said to-day was his \nbirthday and he'd hand 'em over to-night at twelve o'clock.  He'll \nhave drunk himself blind by that time.  He has been at it all day.\"\n\n\"He hasn't forgotten the appointment, I hope?\"\n\n\"Forgotten?  Trust him for that.  He never forgets anything.  I saw \nhim to-night, about eight--helped him to shut up his shop--and he \nhad got the letters then in his hairy cap.  He pulled it off and \nshowed 'em me.  When the shop was closed, he took them out of his \ncap, hung his cap on the chair-back, and stood turning them over \nbefore the fire.  I heard him a little while afterwards, through \nthe floor here, humming like the wind, the only song he knows--\nabout Bibo, and old Charon, and Bibo being drunk when he died, or \nsomething or other.  He has been as quiet since as an old rat \nasleep in his hole.\"\n\n\"And you are to go down at twelve?\"\n\n\"At twelve.  And as I tell you, when you came it seemed to me a \nhundred.\"\n\n\"Tony,\" says Mr. Guppy after considering a little with his legs \ncrossed, \"he can't read yet, can he?\"\n\n\"Read!  He'll never read.  He can make all the letters separately, \nand he knows most of them separately when he sees them; he has got \non that much, under me; but he can't put them together.  He's too \nold to acquire the knack of it now--and too drunk.\"\n\n\"Tony,\" says Mr. Guppy, uncrossing and recrossing his legs, \"how do \nyou suppose he spelt out that name of Hawdon?\"\n\n\"He never spelt it out.  You know what a curious power of eye he \nhas and how he has been used to employ himself in copying things by \neye alone.  He imitated it, evidently from the direction of a \nletter, and asked me what it meant.\"\n\n\"Tony,\" says Mr. Guppy, uncrossing and recrossing his legs again, \n\"should you say that the original was a man's writing or a \nwoman's?\"\n\n\"A woman's.  Fifty to one a lady's--slopes a good deal, and the end \nof the letter 'n,' long and hasty.\"\n\nMr. Guppy has been biting his thumb-nail during this dialogue, \ngenerally changing the thumb when he has changed the cross leg.  As \nhe is going to do so again, he happens to look at his coat-sleeve.  \nIt takes his attention.  He stares at it, aghast.\n\n\"Why, Tony, what on earth is going on in this house to-night?  Is \nthere a chimney on fire?\"\n\n\"Chimney on fire!\"\n\n\"Ah!\" returns Mr. Guppy.  \"See how the soot's falling.  See here, \non my arm!  See again, on the table here!  Confound the stuff, it \nwon't blow off--smears like black fat!\"\n\nThey look at one another, and Tony goes listening to the door, and \na little way upstairs, and a little way downstairs.  Comes back and \nsays it's all right and all quiet, and quotes the remark he lately \nmade to Mr. Snagsby about their cooking chops at the Sol's Arms.\n\n\"And it was then,\" resumes Mr. Guppy, still glancing with \nremarkable aversion at the coat-sleeve, as they pursue their \nconversation before the fire, leaning on opposite sides of the \ntable, with their heads very near together, \"that he told you of \nhis having taken the bundle of letters from his lodger's \nportmanteau?\"\n\n\"That was the time, sir,\" answers Tony, faintly adjusting his \nwhiskers.  \"Whereupon I wrote a line to my dear boy, the Honourable \nWilliam Guppy, informing him of the appointment for to-night and \nadvising him not to call before, Boguey being a slyboots.\"\n\nThe light vivacious tone of fashionable life which is usually \nassumed by Mr. Weevle sits so ill upon him to-night that he \nabandons that and his whiskers together, and after looking over his \nshoulder, appears to yield himself up a prey to the horrors again.\n\n\"You are to bring the letters to your room to read and compare, and \nto get yourself into a position to tell him all about them.  That's \nthe arrangement, isn't it, Tony?\" asks Mr. Guppy, anxiously biting \nhis thumb-nail.\n\n\"You can't speak too low.  Yes.  That's what he and I agreed.\"\n\n\"I tell you what, Tony--\"\n\n\"You can't speak too low,\" says Tony once more.  Mr. Guppy nods his \nsagacious head, advances it yet closer, and drops into a whisper.\n\n\"I tell you what.  The first thing to be done is to make another \npacket like the real one so that if he should ask to see the real \none while it's in my possession, you can show him the dummy.\"\n\n\"And suppose he detects the dummy as soon as he sees it, which with \nhis biting screw of an eye is about five hundred times more likely \nthan not,\" suggests Tony.\n\n\"Then we'll face it out.  They don't belong to him, and they never \ndid.  You found that, and you placed them in my hands--a legal \nfriend of yours--for security.  If he forces us to it, they'll be \nproducible, won't they?\"\n\n\"Ye-es,\" is Mr. Weevle's reluctant admission.\n\n\"Why, Tony,\" remonstrates his friend, \"how you look!  You don't \ndoubt William Guppy?  You don't suspect any harm?\"\n\n\"I don't suspect anything more than I know, William,\" returns the \nother gravely.\n\n\"And what do you know?\" urges Mr. Guppy, raising his voice a \nlittle; but on his friend's once more warning him, \"I tell you, you \ncan't speak too low,\" he repeats his question without any sound at \nall, forming with his lips only the words, \"What do you know?\"\n\n\"I know three things.  First, I know that here we are whispering in \nsecrecy, a pair of conspirators.\"\n\n\"Well!\" says Mr. Guppy.  \"And we had better be that than a pair of \nnoodles, which we should be if we were doing anything else, for \nit's the only way of doing what we want to do.  Secondly?\"\n\n\"Secondly, it's not made out to me how it's likely to be \nprofitable, after all.\"\n\nMr. Guppy casts up his eyes at the portrait of Lady Dedlock over \nthe mantelshelf and replies, \"Tony, you are asked to leave that to \nthe honour of your friend.  Besides its being calculated to serve \nthat friend in those chords of the human mind which--which need not \nbe called into agonizing vibration on the present occasion--your \nfriend is no fool.  What's that?\"\n\n\"It's eleven o'clock striking by the bell of Saint Paul's.  Listen \nand you'll hear all the bells in the city jangling.\"\n\nBoth sit silent, listening to the metal voices, near and distant, \nresounding from towers of various heights, in tones more various \nthan their situations.  When these at length cease, all seems more \nmysterious and quiet than before.  One disagreeable result of \nwhispering is that it seems to evoke an atmosphere of silence, \nhaunted by the ghosts of sound--strange cracks and tickings, the \nrustling of garments that have no substance in them, and the tread \nof dreadful feet that would leave no mark on the sea-sand or the \nwinter snow.  So sensitive the two friends happen to be that the \nair is full of these phantoms, and the two look over their \nshoulders by one consent to see that the door is shut.\n\n\"Yes, Tony?\" says Mr. Guppy, drawing nearer to the fire and biting \nhis unsteady thumb-nail.  \"You were going to say, thirdly?\"\n\n\"It's far from a pleasant thing to be plotting about a dead man in \nthe room where he died, especially when you happen to live in it.\"\n\n\"But we are plotting nothing against him, Tony.\"\n\n\"May be not, still I don't like it.  Live here by yourself and see \nhow YOU like it.\"\n\n\"As to dead men, Tony,\" proceeds Mr. Guppy, evading this proposal, \n\"there have been dead men in most rooms.\"\n\n\"I know there have, but in most rooms you let them alone, and--and \nthey let you alone,\" Tony answers.\n\nThe two look at each other again.  Mr. Guppy makes a hurried remark \nto the effect that they may be doing the deceased a service, that \nhe hopes so.  There is an oppressive blank until Mr. Weevle, by \nstirring the fire suddenly, makes Mr. Guppy start as if his heart \nhad been stirred instead.\n\n\"Fah! Here's more of this hateful soot hanging about,\" says he.  \n\"Let us open the window a bit and get a mouthful of air.  It's too \nclose.\"\n\nHe raises the sash, and they both rest on the window-sill, half in \nand half out of the room.  The neighbouring houses are too near to \nadmit of their seeing any sky without craning their necks and \nlooking up, but lights in frowsy windows here and there, and the \nrolling of distant carriages, and the new expression that there is \nof the stir of men, they find to be comfortable.  Mr. Guppy, \nnoiselessly tapping on the window-sill, resumes his whisperirig in \nquite a light-comedy tone.\n\n\"By the by, Tony, don't forget old Smallweed,\" meaning the younger \nof that name.  \"I have not let him into this, you know.  That \ngrandfather of his is too keen by half.  It runs in the family.\"\n\n\"I remember,\" says Tony.  \"I am up to all that.\"\n\n\"And as to Krook,\" resumes Mr. Guppy.  \"Now, do you suppose he \nreally has got hold of any other papers of importance, as he has \nboasted to you, since you have been such allies?\"\n\nTony shakes his head.  \"I don't know.  Can't Imagine.  If we get \nthrough this business without rousing his suspicions, I shall be \nbetter informed, no doubt.  How can I know without seeing them, \nwhen he don't know himself?  He is always spelling out words from \nthem, and chalking them over the table and the shop-wall, and \nasking what this is and what that is; but his whole stock from \nbeginning to end may easily be the waste-paper he bought it as, for \nanything I can say.  It's a monomania with him to think he is \npossessed of documents.  He has been going to learn to read them \nthis last quarter of a century, I should judge, from what he tells \nme.\"\n\n\"How did he first come by that idea, though?  That's the question,\" \nMr. Guppy suggests with one eye shut, after a little forensic \nmeditation.  \"He may have found papers in something he bought, \nwhere papers were not supposed to be, and may have got it into his \nshrewd head from the manner and place of their concealment that \nthey are worth something.\"\n\n\"Or he may have been taken in, in some pretended bargain.  Or he \nmay have been muddled altogether by long staring at whatever he HAS \ngot, and by drink, and by hanging about the Lord Chancellor's Court \nand hearing of documents for ever,\" returns Mr. Weevle.\n\nMr. Guppy sitting on the window-sill, nodding his head and \nbalancing all these possibilities in his mind, continues \nthoughtfully to tap it, and clasp it, and measure it with his hand, \nuntil he hastily draws his hand away.\n\n\"What, in the devil's name,\" he says, \"is this!  Look at my \nfingers!\"\n\nA thick, yellow liquor defiles them, which is offensive to the \ntouch and sight and more offensive to the smell.  A stagnant, \nsickening oil with some natural repulsion in it that makes them \nboth shudder.\n\n\"What have you been doing here?  What have you been pouring out of \nwindow?\"\n\n\"I pouring out of window!  Nothing, I swear!  Never, since I have \nbeen here!\" cries the lodger.\n\nAnd yet look here--and look here!  When he brings the candle here, \nfrom the corner of the window-sill, it slowly drips and creeps away \ndown the bricks, here lies in a little thick nauseous pool.\n\n\"This is a horrible house,\" says Mr. Guppy, shutting down the \nwindow.  \"Give me some water or I shall cut my hand off.\"\n\nHe so washes, and rubs, and scrubs, and smells, and washes, that he \nhas not long restored himself with a glass of brandy and stood \nsilently before the fire when Saint Paul's bell strikes twelve and \nall those other bells strike twelve from their towers of various \nheights in the dark air, and in their many tones.  When all is \nquiet again, the lodger says, \"It's the appointed time at last.  \nShall I go?\"\n\nMr. Guppy nods and gives him a \"lucky touch\" on the back, but not \nwith the washed hand, though it is his right hand.\n\nHe goes downstairs, and Mr. Guppy tries to compose himself before \nthe fire for waiting a long time.  But in no more than a minute or \ntwo the stairs creak and Tony comes swiftly back.\n\n\"Have you got them?\"\n\n\"Got them!  No.  The old man's not there.\"\n\nHe has been so horribly frightened in the short interval that his \nterror seizes the other, who makes a rush at him and asks loudly, \n\"What's the matter?\"\n\n\"I couldn't make him hear, and I softly opened the door and looked \nin.  And the burning smell is there--and the soot is there, and the \noil is there--and he is not there!\"  Tony ends this with a groan.\n\nMr. Guppy takes the light.  They go down, more dead than alive, and \nholding one another, push open the door of the back shop.  The cat \nhas retreated close to it and stands snarling, not at them, at \nsomething on the ground before the fire.  There is a very little \nfire left in the grate, but there is a smouldering, suffocating \nvapour in the room and a dark, greasy coating on the walls and \nceiling.  The chairs and table, and the bottle so rarely absent \nfrom the table, all stand as usual.  On one chair-back hang the old \nman's hairy cap and coat.\n\n\"Look!\" whispers the lodger, pointing his friend's attention to \nthese objects with a trembling finger.  \"I told you so.  When I saw \nhim last, he took his cap off, took out the little bundle of old \nletters, hung his cap on the back of the chair--his coat was there \nalready, for he had pulled that off before he went to put the \nshutters up--and I left him turning the letters over in his hand, \nstanding just where that crumbled black thing is upon the floor.\"\n\nIs he hanging somewhere?  They look up.  No.\n\n\"See!\" whispers Tony.  \"At the foot of the same chair there lies a \ndirty bit of thin red cord that they tie up pens with.  That went \nround the letters.  He undid it slowly, leering and laughing at me, \nbefore he began to turn them over, and threw it there.  I saw it \nfall.\"\n\n\"What's the matter with the cat?\" says Mr. Guppy.  \"Look at her!\"\n\n\"Mad, I think.  And no wonder in this evil place.\"\n\nThey advance slowly, looking at all these things.  The cat remains \nwhere they found her, still snarling at the something on the ground \nbefore the fire and between the two chairs.  What is it?  Hold up \nthe light.\n\nHere is a small burnt patch of flooring; here is the tinder from a \nlittle bundle of burnt paper, but not so light as usual, seeming to \nbe steeped in something; and here is--is it the cinder of a small \ncharred and broken log of wood sprinkled with white ashes, or is it \ncoal?  Oh, horror, he IS here!  And this from which we run away, \nstriking out the light and overturning one another into the street, \nis all that represents him.\n\nHelp, help, help!  Come into this house for heaven's sake!  Plenty \nwill come in, but none can help.  The Lord Chancellor of that \ncourt, true to his title in his last act, has died the death of all \nlord chancellors in all courts and of all authorities in all places \nunder all names soever, where false pretences are made, and where \ninjustice is done.  Call the death by any name your Highness will, \nattribute it to whom you will, or say it might have been prevented \nhow you will, it is the same death eternally--inborn, inbred, \nengendered in the corrupted humours of the vicious body itself, and \nthat only--spontaneous combustion, and none other of all the deaths \nthat can be died.\n\n\n\nCHAPTER XXXIII\n\nInterlopers\n\n\nNow do those two gentlemen not very neat about the cuffs and \nbuttons who attended the last coroner's inquest at the Sol's Arms \nreappear in the precincts with surprising swiftness (being, in \nfact, breathlessly fetched by the active and intelligent beadle), \nand institute perquisitions through the court, and dive into the \nSol's parlour, and write with ravenous little pens on tissue-paper.  \nNow do they note down, in the watches of the night, how the \nneighbourhood of Chancery Lane was yesterday, at about midnight, \nthrown into a state of the most intense agitation and excitement by \nthe following alarming and horrible discovery.  Now do they set \nforth how it will doubtless be remembered that some time back a \npainful sensation was created in the public mind by a case of \nmysterious death from opium occurring in the first floor of the \nhouse occupied as a rag, bottle, and general marine store shop, by \nan eccentric individual of intemperate habits, far advanced in \nlife, named Krook; and how, by a remarkable coincidence, Krook was \nexamined at the inquest, which it may be recollected was held on \nthat occasion at the Sol's Arms, a well-conducted tavern \nimmediately adjoining the premises in question on the west side and \nlicensed to a highly respectable landlord, Mr. James George Bogsby.  \nNow do they show (in as many words as possible) how during some \nhours of yesterday evening a very peculiar smell was observed by \nthe inhabitants of the court, in which the tragical occurrence \nwhich forms the subject of that present account transpired; and \nwhich odour was at one time so powerful that Mr. Swills, a comic \nvocalist professionally engaged by Mr. J. G. Bogsby, has himself \nstated to our reporter that he mentioned to Miss M. Melvilleson, a \nlady of some pretensions to musical ability, likewise engaged by \nMr. J. G. Bogsby to sing at a series of concerts called Harmonic \nAssemblies, or Meetings, which it would appear are held at the \nSol's Arms under Mr. Bogsby's direction pursuant to the Act of \nGeorge the Second, that he (Mr. Swills) found his voice seriously \naffected by the impure state of the atmosphere, his jocose \nexpression at the time being that he was like an empty post-office, \nfor he hadn't a single note in him.  How this account of Mr. Swills \nis entirely corroborated by two intelligent married females \nresiding in the same court and known respectively by the names of \nMrs. Piper and Mrs. Perkins, both of whom observed the foetid \neffluvia and regarded them as being emitted from the premises in \nthe occupation of Krook, the unfortunate deceased.  All this and a \ngreat deal more the two gentlemen who have formed an amicable \npartnership in the melancholy catastrophe write down on the spot; \nand the boy population of the court (out of bed in a moment) swarm \nup the shutters of the Sol's Arms parlour, to behold the tops of \ntheir heads while they are about it.\n\nThe whole court, adult as well as boy, is sleepless for that night, \nand can do nothing but wrap up its many heads, and talk of the ill-\nfated house, and look at it.  Miss Flite has been bravely rescued \nfrom her chamber, as if it were in flames, and accommodated with a \nbed at the Sol's Arms.  The Sol neither turns off its gas nor shuts \nits door all night, for any kind of public excitement makes good \nfor the Sol and causes the court to stand in need of comfort.  The \nhouse has not done so much in the stomachic article of cloves or in \nbrandy-and-water warm since the inquest.  The moment the pot-boy \nheard what had happened, he rolled up his shirt-sleeves tight to \nhis shoulders and said, \"There'll be a run upon us!\"  In the first \noutcry, young Piper dashed off for the fire-engines and returned in \ntriumph at a jolting gallop perched up aloft on the Phoenix and \nholding on to that fabulous creature with all his might in the \nmidst of helmets and torches.  One helmet remains behind after \ncareful investigation of all chinks and crannies and slowly paces \nup and down before the house in company with one of the two \npolicemen who have likewise been left in charge thereof.  To this \ntrio everybody in the court possessed of sixpence has an insatiate \ndesire to exhibit hospitality in a liquid form.\n\nMr. Weevle and his friend Mr. Guppy are within the bar at the Sol \nand are worth anything to the Sol that the bar contains if they \nwill only stay there.  \"This is not a time, says Mr. Bogsby, \"to \nhaggle about money,\" though he looks something sharply after it, \nover the counter; \"give your orders, you two gentlemen, and you're \nwelcome to whatever you put a name to.\"\n\nThus entreated, the two gentlemen (Mr. Weevle especially) put names \nto so many things that in course of time they find it difficult to \nput a name to anything quite distinctly, though they still relate \nto all new-comers some version of the night they have had of it, \nand of what they said, and what they thought, and what they saw.  \nMeanwhile, one or other of the policemen often flits about the \ndoor, and pushing it open a little way at the full length of his \narm, looks in from outer gloom.  Not that he has any suspicions, \nbut that he may as well know what they are up to in there.\n\nThus night pursues its leaden course, finding the court still out \nof bed through the unwonted hours, still treating and being \ntreated, still conducting itself similarly to a court that has had \na little money left it unexpectedly.  Thus night at length with \nslow-retreating steps departs, and the lamp-lighter going his \nrounds, like an executioner to a despotic king, strikes off the \nlittle heads of fire that have aspired to lessen the darkness.  \nThus the day cometh, whether or no.\n\nAnd the day may discern, even with its dim London eye, that the \ncourt has been up all night.  Over and above the faces that have \nfallen drowsily on tables and the heels that lie prone on hard \nfloors instead of beds, the brick and mortar physiognomy of the \nvery court itself looks worn and jaded.  And now the neighbourhood, \nwaking up and beginning to hear of what has happened, comes \nstreaming in, half dressed, to ask questions; and the two policemen \nand the helmet (who are far less impressible externally than the \ncourt) have enough to do to keep the door.\n\n\"Good gracious, gentlemen!\" says Mr. Snagsby, coming up.  \"What's \nthis I hear!\"\n\n\"Why, it's true,\" returns one of the policemen.  \"That's what it \nis.  Now move on here, come!\"\n\n\"Why, good gracious, gentlemen,\" says Mr. Snagsby, somewhat \npromptly backed away, \"I was at this door last night betwixt ten \nand eleven o'clock in conversation with the young man who lodges \nhere.\"\n\n\"Indeed?\" returns the policeman.  \"You will find the young man next \ndoor then.  Now move on here, some of you,\"\n\n\"Not hurt, I hope?\" says Mr. Snagsby.\n\n\"Hurt?  No.  What's to hurt him!\"\n\nMr. Snagsby, wholly unable to answer this or any question in his \ntroubled mind, repairs to the Sol's Arms and finds Mr. Weevle \nlanguishing over tea and toast with a considerable expression on \nhim of exhausted excitement and exhausted tobacco-smoke.\n\n\"And Mr. Guppy likewise!\" quoth Mr. Snagsby.  \"Dear, dear, dear!  \nWhat a fate there seems in all this!  And my lit--\"\n\nMr. Snagsby's power of speech deserts him in the formation of the \nwords \"my little woman.\"  For to see that injured female walk into \nthe Sol's Arms at that hour of the morning and stand before the \nbeer-engine, with her eyes fixed upon him like an accusing spirit, \nstrikes him dumb.\n\n\"My dear,\" says Mr. Snagsby when his tongue is loosened, \"will you \ntake anything?  A little--not to put too fine a point upon it--drop \nof shrub?\"\n\n\"No,\" says Mrs. Snagsby.\n\n\"My love, you know these two gentlemen?\"\n\n\"Yes!\" says Mrs. Snagsby, and in a rigid manner acknowledges their \npresence, still fixing Mr. Snagsby with her eye.\n\nThe devoted Mr. Snagsby cannot bear this treatment.  He takes Mrs. \nSnagsby by the hand and leads her aside to an adjacent cask.\n\n\"My little woman, why do you look at me in that way?  Pray don't do \nit.\"\n\n\"I can't help my looks,\" says Mrs. Snagsby, \"and if I could I \nwouldn't.\"\n\nMr. Snagsby, with his cough of meekness, rejoins, \"Wouldn't you \nreally, my dear?\" and meditates.  Then coughs his cough of trouble \nand says, \"This is a dreadful mystery, my love!\" still fearfully \ndisconcerted by Mrs. Snagsby's eye.\n\n\"It IS,\" returns Mrs. Snagsby, shaking her head, \"a dreadful \nmystery.\"\n\n\"My little woman,\" urges Mr. Snagsby in a piteous manner, \"don't \nfor goodness' sake speak to me with that bitter expression and look \nat me in that searching way!  I beg and entreat of you not to do \nit.  Good Lord, you don't suppose that I would go spontaneously \ncombusting any person, my dear?\"\n\n\"I can't say,\" returns Mrs. Snagsby.\n\nOn a hasty review of his unfortunate position, Mr. Snagsby \"can't \nsay\" either.  He is not prepared positively to deny that he may \nhave had something to do with it.  He has had something--he don't \nknow what--to do with so much in this connexion that is mysterious \nthat it is possible he may even be implicated, without knowing it, \nin the present transaction.  He faintly wipes his forehead with his \nhandkerchief and gasps.\n\n\"My life,\" says the unhappy stationer, \"would you have any \nobjections to mention why, being in general so delicately \ncircumspect in your conduct, you come into a wine-vaults before \nbreakfast?\"\n\n\"Why do YOU come here?\" inquires Mrs. Snagsby.\n\n\"My dear, merely to know the rights of the fatal accident which has \nhappened to the venerable party who has been--combusted.\"  Mr. \nSnagsby has made a pause to suppress a groan.  \"I should then have \nrelated them to you, my love, over your French roll.\"\n\n\"I dare say you would!  You relate everything to me, Mr. Snagsby.\"\n\n\"Every--my lit--\"\n\n\"I should be glad,\" says Mrs. Snagsby after contemplating his \nincreased confusion with a severe and sinister smile, \"if you would \ncome home with me; I think you may be safer there, Mr. Snagsby, \nthan anywhere else.\"\n\n\"My love, I don't know but what I may be, I am sure.  I am ready to \ngo.\"\n\nMr. Snagsby casts his eye forlornly round the bar, gives Messrs. \nWeevle and Guppy good morning, assures them of the satisfaction \nwith which he sees them uninjured, and accompanies Mrs. Snagsby \nfrom the Sol's Arms.  Before night his doubt whether he may not be \nresponsible for some inconceivable part in the catastrophe which is \nthe talk of the whole neighbourhood is almost resolved into \ncertainty by Mrs. Snagsby's pertinacity in that fixed gaze.  His \nmental sufferings are so great that he entertains wandering ideas \nof delivering himself up to justice and requiring to be cleared if \ninnocent and punished with the utmost rigour of the law if guilty.\n\nMr. Weevle and Mr. Guppy, having taken their breakfast, step into \nLincoln's Inn to take a little walk about the square and clear as \nmany of the dark cobwebs out of their brains as a little walk may.\n\n\"There can be no more favourable time than the present, Tony,\" says \nMr. Guppy after they have broodingly made out the four sides of the \nsquare, \"for a word or two between us upon a point on which we \nmust, with very little delay, come to an understanding.\"\n\n\"Now, I tell you what, William G.!\" returns the other, eyeing his \ncompanion with a bloodshot eye.  \"If it's a point of conspiracy, \nyou needn't take the trouble to mention it.  I have had enough of \nthat, and I ain't going to have any more.  We shall have YOU taking \nfire next or blowing up with a bang.\"\n\nThis supposititious phenomenon is so very disagreeable to Mr. Guppy \nthat his voice quakes as he says in a moral way, \"Tony, I should \nhave thought that what we went through last night would have been a \nlesson to you never to be personal any more as long as you lived.\"  \nTo which Mr. Weevle returns, \"William, I should have thought it \nwould have been a lesson to YOU never to conspire any more as long \nas you lived.\"  To which Mr. Guppy says, \"Who's conspiring?\"  To \nwhich Mr. Jobling replies, \"Why, YOU are!\"  To which Mr. Guppy \nretorts, \"No, I am not.\"  To which Mr. Jobling retorts again, \"Yes, \nyou are!\"  To which Mr. Guppy retorts, \"Who says so?\"  To which Mr. \nJobling retorts, \"I say so!\"  To which Mr. Guppy retorts, \"Oh, \nindeed?\"  To which Mr. Jobling retorts, \"Yes, indeed!\"  And both \nbeing now in a heated state, they walk on silently for a while to \ncool down again.\n\n\"Tony,\" says Mr. Guppy then, \"if you heard your friend out instead \nof flying at him, you wouldn't fall into mistakes.  But your temper \nis hasty and you are not considerate.  Possessing in yourself, \nTony, all that is calculated to charm the eye--\"\n\n\"Oh! Blow the eye!\" cries Mr. Weevle, cutting him short.  \"Say what \nyou have got to say!\"\n\nFinding his friend in this morose and material condition, Mr. Guppy \nonly expresses the finer feelings of his soul through the tone of \ninjury in which he recommences, \"Tony, when I say there is a point \non which we must come to an understanding pretty soon, I say so \nquite apart from any kind of conspiring, however innocent.  You \nknow it is professionally arranged beforehand in all cases that are \ntried what facts the witnesses are to prove.  Is it or is it not \ndesirable that we should know what facts we are to prove on the \ninquiry into the death of this unfortunate old mo--gentleman?\"  \n(Mr. Guppy was going to say \"mogul,\" but thinks \"gentleman\" better \nsuited to the circumstances.)\n\n\"What facts?  THE facts.\"\n\n\"The facts bearing on that inquiry.  Those are\"--Mr. Guppy tells \nthem off on his fingers--\"what we knew of his habits, when you saw \nhim last, what his condition was then, the discovery that we made, \nand how we made it.\"\n\n\"Yes,\" says Mr. Weevle.  \"Those are about the facts.\"\n\n\"We made the discovery in consequence of his having, in his \neccentric way, an appointment with you at twelve o'clock at night, \nwhen you were to explain some writing to him as you had often done \nbefore on account of his not being able to read.  I, spending the \nevening with you, was called down--and so forth.  The inquiry being \nonly into the circumstances touching the death of the deceased, \nit's not necessary to go beyond these facts, I suppose you'll \nagree?\"\n\n\"No!\" returns Mr. Weevle.  \"I suppose not.\"\n\n\"And this is not a conspiracy, perhaps?\" says the injured Guppy.\n\n\"No,\" returns his friend; \"if it's nothing worse than this, I \nwithdraw the observation.\"\n\n\"Now, Tony,\" says Mr. Guppy, taking his arm again and walking him \nslowly on, \"I should like to know, in a friendly way, whether you \nhave yet thought over the many advantages of your continuing to \nlive at that place?\"\n\n\"What do you mean?\" says Tony, stopping.\n\n\"Whether you have yet thought over the many advantages of your \ncontinuing to live at that place?\" repeats Mr. Guppy, walking him \non again.\n\n\"At what place?  THAT place?\" pointing in the direction of the rag \nand bottle shop.\n\nMr. Guppy nods.\n\n\"Why, I wouldn't pass another night there for any consideration \nthat you could offer me,\" says Mr. Weevle, haggardly staring.\n\n\"Do you mean it though, Tony?\"\n\n\"Mean it!  Do I look as if I mean it?  I feel as if I do; I know \nthat,\" says Mr. Weevle with a very genuine shudder.\n\n\"Then the possibility or probability--for such it must be \nconsidered--of your never being disturbed in possession of those \neffects lately belonging to a lone old man who seemed to have no \nrelation in the world, and the certainty of your being able to find \nout what he really had got stored up there, don't weigh with you at \nall against last night, Tony, if I understand you?\" says Mr. Guppy, \nbiting his thumb with the appetite of vexation.\n\n\"Certainly not.  Talk in that cool way of a fellow's living there?\" \ncries Mr. Weevle indignantly.  \"Go and live there yourself.\"\n\n\"Oh! I, Tony!\" says Mr. Guppy, soothing him.  \"I have never lived \nthere and couldn't get a lodging there now, whereas you have got \none.\"\n\n\"You are welcome to it,\" rejoins his friend, \"and--ugh!--you may \nmake yourself at home in it.\"\n\n\"Then you really and truly at this point,\" says Mr. Guppy, \"give up \nthe whole thing, if I understand you, Tony?\"\n\n\"You never,\" returns Tony with a most convincing steadfastness, \n\"said a truer word in all your life.  I do!\"\n\nWhile they are so conversing, a hackney-coach drives into the \nsquare, on the box of which vehicle a very tall hat makes itself \nmanifest to the public.  Inside the coach, and consequently not so \nmanifest to the multitude, though sufficiently so to the two \nfriends, for the coach stops almost at their feet, are the \nvenerable Mr. Smallweed and Mrs. Smallweed, accompanied by their \ngranddaughter Judy.\n\nAn air of haste and excitement pervades the party, and as the tall \nhat (surmounting Mr. Smallweed the younger) alights, Mr. Smallweed \nthe elder pokes his head out of window and bawls to Mr. Guppy, \"How \nde do, sir!  How de do!\"\n\n\"What do Chick and his family want here at this time of the \nmorning, I wonder!\" says Mr. Guppy, nodding to his familiar.\n\n\"My dear sir,\" cries Grandfather Smallweed, \"would you do me a \nfavour?  Would you and your friend be so very obleeging as to carry \nme into the public-house in the court, while Bart and his sister \nbring their grandmother along?  Would you do an old man that good \nturn, sir?\"\n\nMr. Guppy looks at his friend, repeating inquiringly, \"The public-\nhouse in the court?\"  And they prepare to bear the venerable burden \nto the Sol's Arms.\n\n\"There's your fare!\" says the patriarch to the coachman with a \nfierce grin and shaking his incapable fist at him.  \"Ask me for a \npenny more, and I'll have my lawful revenge upon you.  My dear \nyoung men, be easy with me, if you please.  Allow me to catch you \nround the neck.  I won't squeeze you tighter than I can help.  Oh, \nLord!  Oh, dear me!  Oh, my bones!\"\n\nIt is well that the Sol is not far off, for Mr. Weevle presents an \napoplectic appearance before half the distance is accomplished.  \nWith no worse aggravation of his symptoms, however, than the \nutterance of divers croaking sounds expressive of obstructed \nrespiration, he fulils his share of the porterage and the \nbenevolent old gentleman is deposited by his own desire in the \nparlour of the Sol's Arms.\n\n\"Oh, Lord!\" gasps Mr. Smallweed, looking about him, breathless, \nfrom an arm-chair.  \"Oh, dear me!  Oh, my bones and back!  Oh, my \naches and pains!  Sit down, you dancing, prancing, shambling, \nscrambling poll-parrot!  Sit down!\"\n\nThis little apostrophe to Mrs. Smallweed is occasioned by a \npropensity on the part of that unlucky old lady whenever she finds \nherself on her feet to amble about and \"set\" to inanimate objects, \naccompanying herself with a chattering noise, as in a witch dance.  \nA nervous affection has probably as much to do with these \ndemonstrations as any imbecile intention in the poor old woman, but \non the present occasion they are so particularly lively in \nconnexion with the Windsor arm-chair, fellow to that in which Mr. \nSmallweed is seated, that she only quite desists when her \ngrandchildren have held her down in it, her lord in the meanwhile \nbestowing upon her, with great volubility, the endearing epithet of \n\"a pig-headed jackdaw,\" repeated a surprising number of times.\n\n\"My dear sir,\" Grandfather Smallweed then proceeds, addressing Mr. \nGuppy, \"there has been a calamity here.  Have you heard of it, \neither of you?\"\n\n\"Heard of it, sir!  Why, we discovered it.\"\n\n\"You discovered it.  You two discovered it!  Bart, THEY discovered \nit!\"\n\nThe two discoverers stare at the Smallweeds, who return the \ncompliment.\n\n\"My dear friends,\" whines Grandfather Smallweed, putting out both \nhis hands, \"I owe you a thousand thanks for discharging the \nmelancholy office of discovering the ashes of Mrs. Smallweed's \nbrother.\"\n\n\"Eh?\" says Mr. Guppy.\n\n\"Mrs. Smallweed's brother, my dear friend--her only relation.  We \nwere not on terms, which is to be deplored now, but he never WOULD \nbe on terms.  He was not fond of us.  He was eccentric--he was very \neccentric.  Unless he has left a will (which is not at all likely) \nI shall take out letters of administration.  I have come down to \nlook after the property; it must be sealed up, it must be \nprotected.  I have come down,\" repeats Grandfather Smallweed, \nhooking the air towards him with all his ten fingers at once, \"to \nlook after the property.\"\n\n\"I think, Small,\" says the disconsolate Mr. Guppy, \"you might have \nmentioned that the old man was your uncle.\"\n\n\"You two were so close about him that I thought you would like me \nto be the same,\" returns that old bird with a secretly glistening \neye.  \"Besides, I wasn't proud of him.\"\n\n\"Besides which, it was nothing to you, you know, whether he was or \nnot,\" says Judy.  Also with a secretly glistening eye.\n\n\"He never saw me in his life to know me,\" observed Small; \"I don't \nknow why I should introduce HIM, I am sure!\"\n\n\"No, he never communicated with us, which is to be deplored,\" the \nold gentleman strikes in, \"but I have come to look after the \nproperty--to look over the papers, and to look after the property.  \nWe shall make good our title.  It is in the hands of my solicitor.  \nMr. Tulkinghorn, of Lincoln's Inn Fields, over the way there, is so \ngood as to act as my solicitor; and grass don't grow under HIS \nfeet, I can tell ye.  Krook was Mrs. Smallweed's only brother; she \nhad no relation but Krook, and Krook had no relation but Mrs. \nSmallweed.  I am speaking of your brother, you brimstone black-\nbeetle, that was seventy-six years of age.\"\n\nMrs. Smallweed instantly begins to shake her head and pipe up, \n\"Seventy-six pound seven and sevenpence!  Seventysix thousand bags \nof money!  Seventy-six hundred thousand million of parcels of bank-\nnotes!\"\n\n\"Will somebody give me a quart pot?\" exclaims her exasperated \nhusband, looking helplessly about him and finding no missile within \nhis reach.  \"Will somebody obleege me with a spittoon?  Will \nsomebody hand me anything hard and bruising to pelt at her?  You \nhag, you cat, you dog, you brimstone barker!\"  Here Mr. Smallweed, \nwrought up to the highest pitch by his own eloquence, actually \nthrows Judy at her grandmother in default of anything else, by \nbutting that young virgin at the old lady with such force as he can \nmuster and then dropping into his chair in a heap.\n\n\"Shake me up, somebody, if you'll he so good,\" says the voice from \nwithin the faintly struggling bundle into which he has collapsed.  \n\"I have come to look after the property.  Shake me up, and call in \nthe police on duty at the next house to be explained to about the \nproperty.  My solicitor will be here presently to protect the \nproperty.  Transportation or the gallows for anybody who shall \ntouch the property!\"  As his dutiful grandchildren set him up, \npanting, and putting him through the usual restorative process of \nshaking and punching, he still repeats like an echo, \"The--the \nproperty!  The property!  Property!\"\n\nMr. Weevle and Mr. Guppy look at each other, the former as having \nrelinquished the whole affair, the latter with a discomfited \ncountenance as having entertained some lingering expectations yet.  \nBut there is nothing to be done in opposition to the Smallweed \ninterest.  Mr. Tulkinghorn's clerk comes down from his official pew \nin the chambers to mention to the police that Mr. Tulkinghorn is \nanswerable for its being all correct about the next of kin and that \nthe papers and effects will be formally taken possession of in due \ntime and course.  Mr. Smallweed is at once permitted so far to \nassert his supremacy as to be carried on a visit of sentiment into \nthe next house and upstairs into Miss Flite's deserted room, where \nhe looks like a hideous bird of prey newly added to her aviary.\n\nThe arrival of this unexpected heir soon taking wind in the court \nstill makes good for the Sol and keeps the court upon its mettle.  \nMrs. Piper and Mrs. Perkins think it hard upon the young man if \nthere really is no will, and consider that a handsome present ought \nto be made him out of the estate.  Young Piper and young Perkins, \nas members of that restless juvenile circle which is the terror of \nthe foot-passengers in Chancery Lane, crumble into ashes behind the \npump and under the archway all day long, where wild yells and \nhootings take place over their remains.  Little Swills and Miss M. \nMelvilleson enter into affable conversation with their patrons, \nfeeling that these unusual occurrences level the barriers between \nprofessionals and non-professionals.  Mr. Bogsby puts up \"The \npopular song of King Death, with chorus by the whole strength of \nthe company,\" as the great Harmonic feature of the week and \nannounces in the bill that \"J. G. B. is induced to do so at a \nconsiderable extra expense in consequence of a wish which has been \nvery generally expressed at the bar by a large body of respectable \nindividuals and in homage to a late melancholy event which has \naroused so much sensation.\"  There is one point connected with the \ndeceased upon which the court is particularly anxious, namely, that \nthe fiction of a full-sized coffin should be preserved, though \nthere is so little to put in it.  Upon the undertaker's stating in \nthe Sol's bar in the course of the day that he has received orders \nto construct \"a six-footer,\" the general solicitude is much \nrelieved, and it is considered that Mr. Smallweed's conduct does \nhim great honour.\n\nOut of the court, and a long way out of it, there is considerable \nexcitement too, for men of science and philosophy come to look, and \ncarriages set down doctors at the corner who arrive with the same \nintent, and there is more learned talk about inflammable gases and \nphosphuretted hydrogen than the court has ever imagined.  Some of \nthese authorities (of course the wisest) hold with indignation that \nthe deceased had no business to die in the alleged manner; and \nbeing reminded by other authorities of a certain inquiry into the \nevidence for such deaths reprinted in the sixth volume of the \nPhilosophical Transactions; and also of a book not quite unknown on \nEnglish medical jurisprudence; and likewise of the Italian case of \nthe Countess Cornelia Baudi as set forth in detail by one \nBianchini, prebendary of Verona, who wrote a scholarly work or so \nand was occasionally heard of in his time as having gleams of \nreason in him; and also of the testimony of Messrs. Fodere and \nMere, two pestilent Frenchmen who WOULD investigate the subject; \nand further, of the corroborative testimony of Monsieur Le Cat, a \nrather celebrated French surgeon once upon a time, who had the \nunpoliteness to live in a house where such a case occurred and even \nto write an account of it--still they regard the late Mr. Krook's \nobstinacy in going out of the world by any such by-way as wholly \nunjustifiable and personally offensive.  The less the court \nunderstands of all this, the more the court likes it, and the \ngreater enjoyment it has in the stock in trade of the Sol's Arms.  \nThen there comes the artist of a picture newspaper, with a \nforeground and figures ready drawn for anything from a wreck on the \nCornish coast to a review in Hyde Park or a meeting in Manchester, \nand in Mrs. Perkins' own room, memorable evermore, he then and \nthere throws in upon the block Mr. Krook's house, as large as life; \nin fact, considerably larger, making a very temple of it.  \nSimilarly, being permitted to look in at the door of the fatal \nchamber, he depicts that apartment as three-quarters of a mile long \nby fifty yards high, at which the court is particularly charmed.  \nAll this time the two gentlemen before mentioned pop in and out of \nevery house and assist at the philosophical disputations--go \neverywhere and listen to everybody--and yet are always diving into \nthe Sol's parlour and writing with the ravenous little pens on the \ntissue-paper.\n\nAt last come the coroner and his inquiry, like as before, except \nthat the coroner cherishes this case as being out of the common way \nand tells the gentlemen of the jury, in his private capacity, that \n\"that would seem to be an unlucky house next door, gentlemen, a \ndestined house; but so we sometimes find it, and these are \nmysteries we can't account for!\"  After which the six-footer comes \ninto action and is much admired.\n\nIn all these proceedings Mr. Guppy has so slight a part, except \nwhen he gives his evidence, that he is moved on like a private \nindividual and can only haunt the secret house on the outside, \nwhere he has the mortification of seeing Mr. Smallweed padlocking \nthe door, and of bitterly knowing himself to be shut out.  But \nbefore these proceedings draw to a close, that is to say, on the \nnight next after the catastrophe, Mr. Guppy has a thing to say that \nmust be said to Lady Dedlock.\n\nFor which reason, with a sinking heart and with that hang-dog sense \nof guilt upon him which dread and watching enfolded in the Sol's \nArms have produced, the young man of the name of Guppy presents \nhimself at the town mansion at about seven o'clock in the evening \nand requests to see her ladyship.  Mercury replies that she is \ngoing out to dinner; don't he see the carriage at the door?  Yes, \nhe does see the carriage at the door; but he wants to see my Lady \ntoo.\n\nMercury is disposed, as he will presently declare to a fellow-\ngentleman in waiting, \"to pitch into the young man\"; but his \ninstructions are positive.  Therefore he sulkily supposes that the \nyoung man must come up into the library.  There he leaves the young \nman in a large room, not over-light, while he makes report of him.\n\nMr. Guppy looks into the shade in all directions, discovering \neverywhere a certain charred and whitened little heap of coal or \nwood.  Presently he hears a rustling.  Is it--?  No, it's no ghost, \nbut fair flesh and blood, most brilliantly dressed.\n\n\"I have to beg your ladyship's pardon,\" Mr. Guppy stammers, very \ndowncast.  \"This is an inconvenient time--\"\n\n\"I told you, you could come at any time.\"  She takes a chair, \nlooking straight at him as on the last occasion.\n\n\"Thank your ladyship.  Your ladyship is very affable.\"\n\n\"You can sit down.\"  There is not much affability in her tone.\n\n\"I don't know, your ladyship, that it's worth while my sitting down \nand detaining you, for I--I have not got the letters that I \nmentioned when I had the honour of waiting on your ladyship.\"\n\n\"Have you come merely to say so?\"\n\n\"Merely to say so, your ladyship.\"  Mr. Guppy besides being \ndepressed, disappointed, and uneasy, is put at a further \ndisadvantage by the splendour and beauty of her appearance.\n\nShe knows its influence perfectly, has studied it too well to miss \na grain of its effect on any one.  As she looks at him so steadily \nand coldly, he not only feels conscious that he has no guide in the \nleast perception of what is really the complexion of her thoughts, \nbut also that he is being every moment, as it were, removed further \nand further from her.\n\nShe will not speak, it is plain.  So he must.\n\n\"In short, your ladyship,\" says Mr. Guppy like a meanly penitent \nthief, \"the person I was to have had the letters of, has come to a \nsudden end, and--\"  He stops.  Lady Dedlock calmly finishes the \nsentence.\n\n\"And the letters are destroyed with the person?\"\n\nMr. Guppy would say no if he could--as he is unable to hide.\n\n\"I believe so, your ladyship.\"\n\nIf he could see the least sparkle of relief in her face now?  No, \nhe could see no such thing, even if that brave outside did not \nutterly put him away, and he were not looking beyond it and about \nit.\n\nHe falters an awkward excuse or two for his failure.\n\n\"Is this all you have to say?\" inquires Lady Dedlock, having heard \nhim out--or as nearly out as he can stumble.\n\nMr. Guppy thinks that's all.\n\n\"You had better be sure that you wish to say nothing more to me, \nthis being the last time you will have the opportunity.\"\n\nMr. Guppy is quite sure.  And indeed he has no such wish at \npresent, by any means.\n\n\"That is enough.  I will dispense with excuses.  Good evening to \nyou!\"  And she rings for Mercury to show the young man of the name \nof Guppy out.\n\nBut in that house, in that same moment, there happens to be an old \nman of the name of Tulkinghorn.  And that old man, coming with his \nquiet footstep to the library, has his hand at that moment on the \nhandle of the door--comes in--and comes face to face with the young \nman as he is leaving the room.\n\nOne glance between the old man and the lady, and for an instant the \nblind that is always down flies up.  Suspicion, eager and sharp, \nlooks out.  Another instant, close again.\n\n\"I beg your pardon, Lady Dedlock.  I beg your pardon a thousand \ntimes.  It is so very unusual to find you here at this hour.  I \nsupposed the room was empty.  I beg your pardon!\"\n\n\"Stay!\"  She negligently calls him back.  \"Remain here, I beg.  I \nam going out to dinner.  I have nothing more to say to this young \nman!\"\n\nThe disconcerted young man bows, as he goes out, and cringingly \nhopes that Mr. Tulkinghorn of the Fields is well.\n\n\"Aye, aye?\" says the lawyer, looking at him from under his bent \nbrows, though he has no need to look again--not he.  \"From Kenge \nand Carboy's, surely?\"\n\n\"Kenge and Carboy's, Mr. Tulkinghorn.  Name of Guppy, sir.\"\n\n\"To be sure.  Why, thank you, Mr. Guppy, I am very well!\"\n\n\"Happy to hear it, sir.  You can't be too well, sir, for the credit \nof the profession.\"\n\n\"Thank you, Mr. Guppy!\"\n\nMr. Guppy sneaks away.  Mr. Tulkinghorn, such a foil in his old-\nfashioned rusty black to Lady Dedlock's brightness, hands her down \nthe staircase to her carriage.  He returns rubbing his chin, and \nrubs it a good deal in the course of the evening.\n\n\n\nCHAPTER XXXIV\n\nA Turn of the Screw\n\n\n\"Now, what,\" says Mr. George, \"may this be?  Is it blank cartridge \nor ball?  A flash in the pan or a shot?\"\n\nAn open letter is the subject of the trooper's speculations, and it \nseems to perplex him mightily.  He looks at it at arm's length, \nbrings it close to him, holds it in his right hand, holds it in his \nleft hand, reads it with his head on this side, with his head on \nthat side, contracts his eyebrows, elevates them, still cannot \nsatisfy himself.  He smooths it out upon the table with his heavy \npalm, and thoughtfully walking up and down the gallery, makes a \nhalt before it every now and then to come upon it with a fresh eye.  \nEven that won't do.  \"Is it,\" Mr. George still muses, \"blank \ncartridge or ball?\"\n\nPhil Squod, with the aid of a brush and paint-pot, is employed in \nthe distance whitening the targets, softly whistling in quick-march \ntime and in drum-and-fife manner that he must and will go back \nagain to the girl he left behind him.\n\n\"Phil!\"  The trooper beckons as he calls him.\n\nPhil approaches in his usual way, sidling off at first as if he \nwere going anywhere else and then bearing down upon his commander \nlike a bayonet-charge.  Certain splashes of white show in high \nrelief upon his dirty face, and he scrapes his one eyebrow with the \nhandle of the brush.\n\n\"Attention, Phil!  Listen to this.\"\n\n\"Steady, commander, steady.\"\n\n\"'Sir.  Allow me to remind you (though there is no legal necessity \nfor my doing so, as you are aware) that the bill at two months' \ndate drawn on yourself by Mr. Matthew Bagnet, and by you accepted, \nfor the sum of ninety-seven pounds four shillings and ninepence, \nwill become due to-morrow, when you will please be prepared to take \nup the same on presentation.  Yours, Joshua Smallweed.'  What do \nyou make of that, Phil?\"\n\n\"Mischief, guv'ner.\"\n\n\"Why?\"\n\n\"I think,\" replies Phil after pensively tracing out a cross-wrinkle \nin his forehead with the brush-handle, \"that mischeevious \nconsequences is always meant when money's asked for.\"\n\n\"Lookye, Phil,\" says the trooper, sitting on the table.  \"First and \nlast, I have paid, I may say, half as much again as this principal \nin interest and one thing and another.\"\n\nPhil intimates by sidling back a pace or two, with a very \nunaccountable wrench of his wry face, that he does not regard the \ntransaction as being made more promising by this incident.\n\n\"And lookye further, Phil,\" says the trooper, staying his premature \nconclusions with a wave of his hand.  \"There has always been an \nunderstanding that this bill was to be what they call renewed.  And \nit has been renewed no end of times.  What do you say now?\"\n\n\"I say that I think the times is come to a end at last.\"\n\n\"You do?  Humph!  I am much of the same mind myself.\"\n\n\"Joshua Smallweed is him that was brought here in a chair?\"\n\n\"The same.\"\n\n\"Guv'ner,\" says Phil with exceeding gravity, \"he's a leech in his \ndispositions, he's a screw and a wice in his actions, a snake in \nhis twistings, and a lobster in his claws.\"\n\nHaving thus expressively uttered his sentiments, Mr. Squod, after \nwaiting a little to ascertain if any further remark be expected of \nhim, gets back by his usual series of movements to the target he \nhas in hand and vigorously signifies through his former musical \nmedium that he must and he will return to that ideal young lady.  \nGeorge, having folded the letter, walks in that direction.\n\n\"There IS a way, commander,\" says Phil, looking cunningly at him, \n\"of settling this.\"\n\n\"Paying the money, I suppose?  I wish I could.\"\n\nPhil shakes his head.  \"No, guv'ner, no; not so bad as that.  There \nIS a way,\" says Phil with a highly artistic turn of his brush; \n\"what I'm a-doing at present.\"\n\n\"Whitewashing.\"\n\nPhil nods.\n\n\"A pretty way that would be!  Do you know what would become of the \nBagnets in that case?  Do you know they would be ruined to pay off \nmy old scores?  YOU'RE a moral character,\" says the trooper, eyeing \nhim in his large way with no small indignation; \"upon my life you \nare, Phil!\"\n\nPhil, on one knee at the target, is in course of protesting \nearnestly, though not without many allegorical scoops of his brush \nand smoothings of the white surface round the rim with his thumb, \nthat he had forgotten the Bagnet responsibility and would not so \nmuch as injure a hair of the head of any member of that worthy \nfamily when steps are audible in the long passage without, and a \ncheerful voice is heard to wonder whether George is at home.  Phil, \nwith a look at his master, hobbles up, saying, \"Here's the guv'ner, \nMrs. Bagnet!  Here he is!\" and the old girl herself, accompanied by \nMr. Bagnet, appears.\n\nThe old girl never appears in walking trim, in any season of the \nyear, without a grey cloth cloak, coarse and much worn but very \nclean, which is, undoubtedly, the identical garment rendered so \ninteresting to Mr. Bagnet by having made its way home to Europe \nfrom another quarter of the globe in company with Mrs. Bagnet and \nan umbrella.  The latter faithful appendage is also invariably a \npart of the old girl's presence out of doors.  It is of no colour \nknown in this life and has a corrugated wooden crook for a handle, \nwith a metallic object let into its prow, or beak, resembling a \nlittle model of a fanlight over a street door or one of the oval \nglasses out of a pair of spectacles, which ornamental object has \nnot that tenacious capacity of sticking to its post that might be \ndesired in an article long associated with the British army.  The \nold girl's umbrella is of a flabby habit of waist and seems to be \nin need of stays--an appearance that is possibly referable to its \nhaving served through a series of years at home as a cupboard and \non journeys as a carpet bag.  She never puts it up, having the \ngreatest reliance on her well-proved cloak with its capacious hood, \nbut generally uses the instrument as a wand with which to point out \njoints of meat or bunches of greens in marketing or to arrest the \nattention of tradesmen by a friendly poke.  Without her market-\nbasket, which is a sort of wicker well with two flapping lids, she \nnever stirs abroad.  Attended by these her trusty companions, \ntherefore, her honest sunburnt face looking cheerily out of a rough \nstraw bonnet, Mrs. Bagnet now arrives, fresh-coloured and bright, \nin George's Shooting Gallery.\n\n\"Well, George, old fellow,\" says she, \"and how do YOU do, this \nsunshiny morning?\"\n\nGiving him a friendly shake of the hand, Mrs. Bagnet draws a long \nbreath after her walk and sits down to enjoy a rest.  Having a \nfaculty, matured on the tops of baggage-waggons and in other such \npositions, of resting easily anywhere, she perches on a rough \nbench, unties her bonnet-strings, pushes back her bonnet, crosses \nher arms, and looks perfectly comfortable.\n\nMr. Bagnet in the meantime has shaken hands with his old comrade \nand with Phil, on whom Mrs. Bagnet likewise bestows a good-humoured \nnod and smile.\n\n\"Now, George,\" said Mrs. Bagnet briskly, \"here we are, Lignum and \nmyself\"--she often speaks of her husband by this appellation, on \naccount, as it is supposed, of Lignum Vitae having been his old \nregimental nickname when they first became acquainted, in \ncompliment to the extreme hardness and toughness of his \nphysiognomy--\"just looked in, we have, to make it all correct as \nusual about that security.  Give him the new bill to sign, George, \nand he'll sign it like a man.\"\n\n\"I was coming to you this morning,\" observes the trooper \nreluctantly.\n\n\"Yes, we thought you'd come to us this morning, but we turned out \nearly and left Woolwich, the best of boys, to mind his sisters and \ncame to you instead--as you see!  For Lignum, he's tied so close \nnow, and gets so little exercise, that a walk does him good.  But \nwhat's the matter, George?\" asks Mrs. Bagnet, stopping in her \ncheerful talk.  \"You don't look yourself.\"\n\n\"I am not quite myself,\" returns the trooper; \"I have been a little \nput out, Mrs. Bagnet.\"\n\nHer bright quick eye catches the truth directly.  \"George!\" holding \nup her forefinger.  \"Don't tell me there's anything wrong about \nthat security of Lignum's!  Don't do it, George, on account of the \nchildren!\"\n\nThe trooper looks at her with a troubled visage.\n\n\"George,\" says Mrs. Bagnet, using both her arms for emphasis and \noccasionally bringing down her open hands upon her knees.  \"If you \nhave allowed anything wrong to come to that security of Lignum's, \nand if you have let him in for it, and if you have put us in danger \nof being sold up--and I see sold up in your face, George, as plain \nas print--you have done a shameful action and have deceived us \ncruelly.  I tell you, cruelly, George.  There!\"\n\nMr. Bagnet, otherwise as immovable as a pump or a lamp-post, puts \nhis large right hand on the top of his bald head as if to defend it \nfrom a shower-bath and looks with great uneasiness at Mrs. Bagnet.\n\n\"George,\" says that old girl, \"I wonder at you!  George, I am \nashamed of you!  George, I couldn't have believed you would have \ndone it!  I always knew you to be a rolling sone that gathered no \nmoss, but I never thought you would have taken away what little \nmoss there was for Bagnet and the children to lie upon.  You know \nwhat a hard-working, steady-going chap he is.  You know what Quebec \nand Malta and Woolwich are, and I never did think you would, or \ncould, have had the heart to serve us so.  Oh, George!\"  Mrs. \nBagnet gathers up her cloak to wipe her eyes on in a very genuine \nmanner, \"How could you do it?\"\n\nMrs. Bagnet ceasing, Mr. Bagnet removes his hand from his head as \nif the shower-bath were over and looks disconsolately at Mr. \nGeorge, who has turned quite white and looks distressfully at the \ngrey cloak and straw bonnet.\n\n\"Mat,\" says the trooper in a subdued voice, addressing him but \nstill looking at his wife, \"I am sorry you take it so much to \nheart, because I do hope it's not so bad as that comes to.  I \ncertainly have, this morning, received this letter\"--which he reads \naloud--\"but I hope it may be set right yet.  As to a rolling stone, \nwhy, what you say is true.  I AM a rolling stone, and I never \nrolled in anybody's way, I fully believe, that I rolled the least \ngood to.  But it's impossible for an old vagabond comrade to like \nyour wife and family better than I like 'em, Mat, and I trust \nyou'll look upon me as forgivingly as you can.  Don't think I've \nkept anything from you.  I haven't had the letter more than a \nquarter of an hour.\"\n\n\"Old girl,\" murmurs Mr. Bagnet after a short silence, \"will you \ntell him my opinion?\"\n\n\"Oh! Why didn't he marry,\" Mrs. Bagnet answers, half laughing and \nhalf crying, \"Joe Pouch's widder in North America?  Then he \nwouldn't have got himself into these troubles.\"\n\n\"The old girl,\" says Mr. Baguet, \"puts it correct--why didn't you?\"\n\n\"Well, she has a better husband by this time, I hope,\" returns the \ntrooper.  \"Anyhow, here I stand, this present day, NOT married to \nJoe Pouch's widder.  What shall I do?  You see all I have got about \nme.  It's not mine; it's yours.  Give the word, and I'll sell off \nevery morsel.  If I could have hoped it would have brought in \nnearly the sum wanted, I'd have sold all long ago.  Don't believe \nthat I'll leave you or yours in the lurch, Mat.  I'd sell myself \nfirst.  I only wish,\" says the trooper, giving himself a \ndisparaging blow in the chest, \"that I knew of any one who'd buy \nsuch a second-hand piece of old stores.\"\n\n\"Old girl,\" murmurs Mr. Bagnet, \"give him another bit of my mind.\"\n\n\"George,\" says the old girl, \"you are not so much to be blamed, on \nfull consideration, except for ever taking this business without \nthe means.\"\n\n\"And that was like me!\" observes the penitent trooper, shaking his \nhead.  \"Like me, I know.\"\n\n\"Silence!  The old girl,\" says Mr. Bagnet, \"is correct--in her way \nof giving my opinions--hear me out!\"\n\n\"That was when you never ought to have asked for the security, \nGeorge, and when you never ought to have got it, all things \nconsidered.  But what's done can't be undone.  You are always an \nhonourable and straightforward fellow, as far as lays in your \npower, though a little flighty.  On the other hand, you can't admit \nbut what it's natural in us to be anxious with such a thing hanging \nover our heads.  So forget and forgive all round, George.  Come!  \nForget and forgive all round!\"\n\nMrs. Bagnet, giving him one of her honest hands and giving her \nhusband the other, Mr. George gives each of them one of his and \nholds them while he speaks.\n\n\"I do assure you both, there's nothing I wouldn't do to discharge \nthis obligation.  But whatever I have been able to scrape together \nhas gone every two months in keeping it up.  We have lived plainly \nenough here, Phil and I.  But the gallery don't quite do what was \nexpected of it, and it's not--in short, it's not the mint.  It was \nwrong in me to take it?  Well, so it was.  But I was in a manner \ndrawn into that step, and I thought it might steady me, and set me \nup, and you'll try to overlook my having such expectations, and \nupon my soul, I am very much obliged to you, and very much ashamed \nof myself.\"  With these concluding words, Mr. George gives a shake \nto each of the hands he holds, and relinquishing them, backs a pace \nor two in a broad-chested, upright attitude, as if he had made a \nfinal confession and were immediately going to be shot with all \nmilitary honours.\n\n\"George, hear me out!\" says Mr. Bagnet, glancing at his wife.  \"Old \ngirl, go on!\"\n\nMr. Bagnet, being in this singular manner heard out, has merely to \nobserve that the letter must be attended to without any delay, that \nit is advisable that George and he should immediately wait on Mr. \nSmallweed in person, and that the primary object is to save and \nhold harmless Mr. Bagnet, who had none of the money.  Mr. George, \nentirely assenting, puts on his hat and prepares to march with Mr. \nBagnet to the enemy's camp.\n\n\"Don't you mind a woman's hasty word, George,\" says Mrs. Bagnet, \npatting him on the shoulder.  \"I trust my old Lignum to you, and I \nam sure you'll bring him through it.\"\n\nThe trooper returns that this is kindly said and that he WILL bring \nLignum through it somehow.  Upon which Mrs. Bagnet, with her cloak, \nbasket, and umbrella, goes home, bright-eyed again, to the rest of \nher family, and the comrades sally forth on the hopeful errand of \nmollifying Mr. Smallweed.\n\nWhether there are two people in England less likely to come \nsatisfactorily out of any negotiation with Mr. Smallweed than Mr. \nGeorge and Mr. Matthew Bagnet may be very reasonably questioned.  \nAlso, notwithstanding their martial appearance, broad square \nshoulders, and heavy tread, whether there are within the same \nlimits two more simple and unaccustomed children in all the \nSmallweedy affairs of life.  As they proceed with great gravity \nthrough the streets towards the region of Mount Pleasant, Mr. \nBagnet, observing his companion to be thoughtful, considers it a \nfriendly part to refer to Mrs. Bagnet's late sally.\n\n\"George, you know the old girl--she's as sweet and as mild as milk.  \nBut touch her on the children--or myself--and she's off like \ngunpowder.\"\n\n\"It does her credit, Mat!\"\n\n\"George,\" says Mr. Bagnet, looking straight before him, \"the old \ngirl--can't do anything--that don't do her credit.  More or less.  \nI never say so.  Discipline must he maintained.\"\n\n\"She's worth her weight in gold,\" says the trooper.\n\n\"In gold?\" says Mr. Bagnet.  \"I'll tell you what.  The old girl's \nweight--is twelve stone six.  Would I take that weight--in any \nmetal--for the old girl?  No.  Why not?  Because the old girl's \nmetal is far more precious---than the preciousest metal.  And she's \nALL metal!\"\n\n\"You are right, Mat!\"\n\n\"When she took me--and accepted of the ring--she 'listed under me \nand the children--heart and head, for life.  She's that earnest,\" \nsays Mr. Bagnet, \"and true to her colours--that, touch us with a \nfinger--and she turns out--and stands to her arms.  If the old girl \nfires wide--once in a way--at the call of duty--look over it, \nGeorge.  For she's loyal!\"\n\n\"Why, bless her, Mat,\" returns the trooper, \"I think the higher of \nher for it!\"\n\n\"You are right!\" says Mr. Bagnet with the warmest enthusiasm, \nthough without relaxing the rigidity of a single muscle.  \"Think as \nhigh of the old girl--as the rock of Gibraltar--and still you'll be \nthinking low--of such merits.  But I never own to it before her.  \nDiscipline must be maintained.\"\n\nThese encomiums bring them to Mount Pleasant and to Grandfather \nSmallweed's house.  The door is opened by the perennial Judy, who, \nhaving surveyed them from top to toe with no particular favour, but \nindeed with a malignant sneer, leaves them standing there while she \nconsults the oracle as to their admission.  The oracle may be \ninferred to give consent from the circumstance of her returning \nwith the words on her honey lips that they can come in if they want \nto it.  Thus privileged, they come in and find Mr. Smallweed with \nhis feet in the drawer of his chair as if it were a paper foot-bath \nand Mrs. Smallweed obscured with the cushion like a bird that is \nnot to sing.\n\n\"My dear friend,\" says Grandfather Smallweed with those two lean \naffectionate arms of his stretched forth.  \"How de do?  How de do?  \nWho is our friend, my dear friend?\"\n\n\"Why this,\" returns George, not able to be very conciliatory at \nfirst, \"is Matthew Bagnet, who has obliged me in that matter of \nours, you know.\"\n\n\"Oh! Mr. Bagnet?  Surely!\"  The old man looks at him under his \nhand.\n\n\"Hope you're well, Mr. Bagnet?  Fine man, Mr. George!  Military \nair, sir!\"\n\nNo chairs being offered, Mr. George brings one forward for Bagnet \nand one for himself.  They sit down, Mr. Bagnet as if he had no \npower of bending himself, except at the hips, for that purpose.\n\n\"Judy,\" says Mr. Smallweed, \"bring the pipe.\"\n\n\"Why, I don't know,\" Mr. George interposes, \"that the young woman \nneed give herself that trouble, for to tell you the truth, I am not \ninclined to smoke it to-day.\"\n\n\"Ain't you?\" returns the old man.  \"Judy, bring the pipe.\"\n\n\"The fact is, Mr. Smallweed,\" proceeds George, \"that I find myself \nin rather an unpleasant state of mind.  It appears to me, sir, that \nyour friend in the city has been playing tricks.\"\n\n\"Oh, dear no!\" says Grandfather Smallweed.  \"He never does that!\"\n\n\"Don't he?  Well, I am glad to hear it, because I thought it might \nbe HIS doing.  This, you know, I am speaking of.  This letter.\"\n\nGrandfather Smallweed smiles in a very ugly way in recognition of \nthe letter.\n\n\"What does it mean?\" asks Mr. George.\n\n\"Judy,\" says the old man.  \"Have you got the pipe?  Give it to me.  \nDid you say what does it mean, my good friend?\"\n\n\"Aye!  Now, come, come, you know, Mr. Smallweed,\" urges the \ntrooper, constraining himself to speak as smoothly and \nconfidentially as he can, holding the open letter in one hand and \nresting the broad knuckles of the other on his thigh, \"a good lot \nof money has passed between us, and we are face to face at the \npresent moment, and are both well aware of the understanding there \nhas always been.  I am prepared to do the usual thing which I have \ndone regularly and to keep this matter going.  I never got a letter \nlike this from you before, and I have been a little put about by it \nthis morning, because here's my friend Matthew Bagnet, who, you \nknow, had none of the money--\"\n\n\"I DON'T know it, you know,\" says the old man quietly.\n\n\"Why, con-found you--it, I mean--I tell you so, don't I?\"\n\n\"Oh, yes, you tell me so,\" returns Grandfather Smallweed.  \"But I \ndon't know it.\"\n\n\"Well!\" says the trooper, swallowing his fire.  \"I know it.\"\n\nMr. Smallweed replies with excellent temper, \"Ah!  That's quite \nanother thing!\"  And adds, \"But it don't matter.  Mr. Bagnet's \nsituation is all one, whether or no.\"\n\nThe unfortunate George makes a great effort to arrange the affair \ncomfortably and to propitiate Mr. Smallweed by taking him upon his \nown terms.\n\n\"That's just what I mean.  As you say, Mr. Smallweed, here's \nMatthew Bagnet liable to be fixed whether or no.  Now, you see, \nthat makes his good lady very uneasy in her mind, and me too, for \nwhereas I'm a harurn-scarum sort of a good-for-nought that more \nkicks than halfpence come natural to, why he's a steady family man, \ndon't you see?  Now, Mr. Smallweed,\" says the trooper, gaining \nconfidence as he proceeds in his soldierly mode of doing business, \n\"although you and I are good friends enough in a certain sort of a \nway, I am well aware that I can't ask you to let my friend Bagnet \noff entirely.\"\n\n\"Oh, dear, you are too modest.  You can ASK me anything, Mr. \nGeorge.\"  (There is an ogreish kind of jocularity in Grandfather \nSmallweed to-day.)\n\n\"And you can refuse, you mean, eh?  Or not you so much, perhaps, as \nyour friend in the city?  Ha ha ha!\"\n\n\"Ha ha ha!\" echoes Grandfather Smallweed.  In such a very hard \nmanner and with eyes so particularly green that Mr. Bagnet's \nnatural gravity is much deepened by the contemplation of that \nvenerable man.\n\n\"Come!\" says the sanguine George.  \"I am glad to find we can be \npleasant, because I want to arrange this pleasantly.  Here's my \nfriend Bagnet, and here am I.  We'll settle the matter on the spot, \nif you please, Mr. Smallweed, in the usual way.  And you'll ease my \nfriend Bagnet's mind, and his family's mind, a good deal if you'll \njust mention to him what our understanding is.\"\n\nHere some shrill spectre cries out in a mocking manner, \"Oh, good \ngracious!  Oh!\"  Unless, indeed, it be the sportive Judy, who is \nfound to be silent when the startled visitors look round, but whose \nchin has received a recent toss, expressive of derision and \ncontempt.  Mr. Bagnet's gravity becomes yet more profound.\n\n\"But I think you asked me, Mr. George\"--old Smallweed, who all this \ntime has had the pipe in his hand, is the speaker now--\"I think you \nasked me, what did the letter mean?\"\n\n\"Why, yes, I did,\" returns the trooper in his off-hand way, \"but I \ndon't care to know particularly, if it's all correct and pleasant.\"\n\nMr. Smallweed, purposely balking himself in an aim at the trooper's \nhead, throws the pipe on the ground and breaks it to pieces.\n\n\"That's what it means, my dear friend.  I'll smash you.  I'll \ncrumble you.  I'll powder you.  Go to the devil!\"\n\nThe two friends rise and look at one another.  Mr. Bagnet's gravity \nhas now attained its profoundest point.\n\n\"Go to the devil!\" repeats the old man.  \"I'll have no more of your \npipe-smokings and swaggerings.  What?  You're an independent \ndragoon, too!  Go to my lawyer (you remember where; you have been \nthere before) and show your independeuce now, will you?  Come, my \ndear friend, there's a chance for you.  Open the street door, Judy; \nput these blusterers out!  Call in help if they don't go.  Put 'em \nout!\"\n\nHe vociferates this so loudly that Mr. Bagnet, laying his hands on \nthe shoulders of his comrade before the latter can recover from his \namazement, gets him on the outside of the street door, which is \ninstantly slammed by the triumphant Judy.  Utterly confounded, Mr. \nGeorge awhile stands looking at the knocker.  Mr. Bagnet, in a \nperfect abyss of gravity, walks up and down before the little \nparlour window like a sentry and looks in every time he passes, \napparently revolving something in his mind.\n\n\"Come, Mat,\" says Mr. George when he has recovered himself, \"we \nmust try the lawyer.  Now, what do you think of this rascal?\"\n\nMr. Bagnet, stopping to take a farewell look into the parlour, \nreplies with one shake of his head directed at the interior, \"If my \nold girl had been here--I'd have told him!\"  Having so discharged \nhimself of the subject of his cogitations, he falls into step and \nmarches off with the trooper, shoulder to shoulder.\n\nWhen they present themselves in Lincoln's Inn Fields, Mr. \nTulkinghorn is engaged and not to be seen.  He is not at all \nwilling to see them, for when they have waited a full hour, and the \nclerk, on his bell being rung, takes the opportunity of mentioning \nas much, he brings forth no more encouraging message than that Mr. \nTulkinghorn has nothing to say to them and they had better not \nwait.  They do wait, however, with the perseverance of military \ntactics, and at last the bell rings again and the client in \npossession comes out of Mr. Tulkinghorn's room.\n\nThe client is a handsome old lady, no other than Mrs. Rouncewell, \nhousekeeper at Chesney Wold.  She comes out of the sanctuary with a \nfair old-fashioned curtsy and softly shuts the door.  She is \ntreated with some distinction there, for the clerk steps out of his \npew to show her through the outer office and to let her out.  The \nold lady is thanking him for his attention when she observes the \ncomrades in waiting.\n\n\"I beg your pardon, sir, but I think those gentlemen are military?\"\n\nThe clerk referring the question to them with his eye, and Mr. \nGeorge not turning round from the almanac over the fire-place.  Mr. \nBagnet takes upon himself to reply, \"Yes, ma'am.  Formerly.\"\n\n\"I thought so.  I was sure of it.  My heart warms, gentlemen, at \nthe sight of you.  It always does at the sight of such.  God bless \nyou, gentlemen!  You'll excuse an old woman, but I had a son once \nwho went for a soldier.  A fine handsome youth he was, and good in \nhis bold way, though some people did disparage him to his poor \nmother.  I ask your pardon for troubling you, sir.  God bless you, \ngentlemen!\"\n\n\"Same to you, ma'am!\" returns Mr. Bagnet with right good will.\n\nThere is something very touching in the earnestness of the old \nlady's voice and in the tremble that goes through her quaint old \nfigure.  But Mr. George is so occupied with the almanac over the \nfireplace (calculating the coming months by it perhaps) that he \ndoes not look round until she has gone away and the door is closed \nupon her.\n\n\"George,\" Mr. Bagnet gruffly whispers when he does turn from the \nalmanac at last.  \"Don't be cast down!  'Why, soldiers, why--should \nwe be melancholy, boys?'  Cheer up, my hearty!\"\n\nThe clerk having now again gone in to say that they are still there \nand Mr. Tulkinghorn being heard to return with some irascibility, \n\"Let 'em come in then!\" they pass into the great room with the \npainted ceiling and find him standing before the fire.\n\n\"Now, you men, what do you want?  Sergeant, I told you the last \ntime I saw you that I don't desire your company here.\"\n\nSergeant replies--dashed within the last few minutes as to his \nusual manner of speech, and even as to his usual carriage--that he \nhas received this letter, has been to Mr. Smallweed about it, and \nhas been referred there.\n\n\"I have nothing to say to you,\" rejoins Mr. Tulkinghorn.  \"If you \nget into debt, you must pay your debts or take the consequences.  \nYou have no occasion to come here to learn that, I suppose?\"\n\nSergeant is sorry to say that he is not prepared with the money.\n\n\"Very well!  Then the other man--this man, if this is he--must pay \nit for you.\"\n\nSergeant is sorry to add that the other man is not prepared with \nthe money either.\n\n\"Very well!  Then you must pay it between you or you must both be \nsued for it and both suffer.  You have had the money and must \nrefund it.  You are not to pocket other people's pounds, shillings, \nand pence and escape scot-free.\"\n\nThe lawyer sits down in his easy-chair and stirs the fire.  Mr. \nGeorge hopes he will have the goodness to--\n\n\"I tell you, sergeant, I have nothing to say to you.  I don't like \nyour associates and don't want you here.  This matter is not at all \nin my course of practice and is not in my office.  Mr. Smallweed is \ngood enough to offer these affairs to me, but they are not in my \nway.  You must go to Melchisedech's in Clifford's Inn.\"\n\n\"I must make an apology to you, sir,\" says Mr. George, \"for \npressing myself upon you with so little encouragement--which is \nalmost as unpleasant to me as it can be to you--but would you let \nme say a private word to you?\"\n\nMr. Tulkinghorn rises with his hands in his pockets and walks into \none of the window recesses.  \"Now!  I have no time to waste.\"  In \nthe midst of his perfect assumption of indifference, he directs a \nsharp look at the trooper, taking care to stand with his own back \nto the light and to have the other with his face towards it.\n\n\"Well, sir,\" says Mr. George, \"this man with me is the other party \nimplicated in this unfortunate affair--nominally, only nominally--\nand my sole object is to prevent his getting into trouble on my \naccount.  He is a most respectable man with a wife and family, \nformerly in the Royal Artillery--\"\n\n\"My friend, I don't care a pinch of snuff for the whole Royal \nArtillery establishment--officers, men, tumbrils, waggons, horses, \nguns, and ammunition.\"\n\n\"'Tis likely, sir.  But I care a good deal for Bagnet and his wife \nand family being injured on my account.  And if I could bring them \nthrough this matter, I should have no help for it but to give up \nwithout any other consideration what you wanted of me the other \nday.\"\n\n\"Have you got it here?\"\n\n\"I have got it here, sir.\"\n\n\"Sergeant,\" the lawyer proceeds in his dry passionless manner, far \nmore hopeless in the dealing with than any amount of vehemence, \n\"make up your mind while I speak to you, for this is final.  After \nI have finished speaking I have closed the subject, and I won't re-\nopen it.  Understand that.  You can leave here, for a few days, \nwhat you say you have brought here if you choose; you can take it \naway at once if you choose.  In case you choose to leave it here, I \ncan do this for you--I can replace this matter on its old footing, \nand I can go so far besides as to give you a written undertaking \nthat this man Bagnet shall never be troubled in any way until you \nhave been proceeded against to the utmost, that your means shall be \nexhausted before the creditor looks to his.  This is in fact all \nbut freeing him.  Have you decided?\"\n\nThe trooper puts his hand into his breast and answers with a long \nbreath, \"I must do it, sir.\"\n\nSo Mr. Tulkinghorn, putting on his spectacles, sits down and writes \nthe undertaking, which he slowly reads and explains to Bagnet, who \nhas all this time been staring at the ceiling and who puts his hand \non his bald head again, under this new verbal shower-bath, and \nseems exceedingly in need of the old girl through whom to express \nhis sentiments.  The trooper then takes from his breast-pocket a \nfolded paper, which he lays with an unwilling hand at the lawyer's \nelbow.  \"'Tis ouly a letter of instructions, sir.  The last I ever \nhad from him.\"\n\nLook at a millstone, Mr. George, for some change in its expression, \nand you will find it quite as soon as in the face of Mr. \nTulkinghorn when he opens and reads the letter!  He refolds it and \nlays it in his desk with a countenance as unperturbable as death.\n\nNor has he anything more to say or do but to nod once in the same \nfrigid and discourteous manner and to say briefly, \"You can go.  \nShow these men out, there!\"  Being shown out, they repair to Mr. \nBagnet's residence to dine.\n\nBoiled beef and greens constitute the day's variety on the former \nrepast of boiled pork and greens, and Mrs. Bagnet serves out the \nmeal in the same way and seasons it with the best of temper, being \nthat rare sort of old girl that she receives Good to her arms \nwithout a hint that it might be Better and catches light from any \nlittle spot of darkness near her.  The spot on this occasion is the \ndarkened brow of Mr. George; he is unusually thoughtful and \ndepressed.  At first Mrs. Bagnet trusts to the combined endearments \nof Quebec and Malta to restore him, but finding those young ladies \nsensible that their existing Bluffy is not the Bluffy of their \nusual frolicsome acquaintance, she winks off the light infantry and \nleaves him to deploy at leisure on the open ground of the domestic \nhearth.\n\nBut he does not.  He remains in close order, clouded and depressed.  \nDuring the lengthy cleaning up and pattening process, when he and \nMr. Bagnet are supplied with their pipes, he is no better than he \nwas at dinner.  He forgets to smoke, looks at the fire and ponders, \nlets his pipe out, fills the breast of Mr. Bagnet with perturbation \nand dismay by showing that he has no enjoyment of tobacco.\n\nTherefore when Mrs. Bagnet at last appears, rosy from the \ninvigorating pail, and sits down to her work, Mr. Bagnet growls, \n\"Old girl!\" and winks monitions to her to find out what's the \nmatter.\n\n\"Why, George!\" says Mrs. Bagnet, quietly threading her needle.  \n\"How low you are!\"\n\n\"Am I?  Not good company?  Well, I am afraid I am not.\"\n\n\"He ain't at all like Blulfy, mother!\" cries little Malta.\n\n\"Because he ain't well, I think, mother,\" adds Quebec.\n\n\"Sure that's a bad sign not to be like Bluffy, too!\" returns the \ntrooper, kissing the young damsels.  \"But it's true,\" with a sigh, \n\"true, I am afraid.  These little ones are always right!\"\n\n\"George,\" says Mrs. Bagnet, working busily, \"if I thought you cross \nenough to think of anything that a shrill old soldier's wife--who \ncould have bitten her tongue off afterwards and ought to have done \nit almost--said this morning, I don't know what I shouldn't say to \nyou now.\"\n\n\"My kind soul of a darling,\" returns the trooper.  \"Not a morsel of \nit.\"\n\n\"Because really and truly, George, what I said and meant to say was \nthat I trusted Lignum to you and was sure you'd bring him through \nit.  And you HAVE brought him through it, noble!\"\n\n\"Thankee, my dear!\" says George.  \"I am glad of your good opinion.\"\n\nIn giving Mrs. Bagnet's hand, with her work in it, a friendly \nshake--for she took her seat beside him--the trooper's attention is \nattracted to her face.  After looking at it for a little while as \nshe plies her needle, he looks to young Woolwich, sitting on his \nstool in the corner, and beckons that fifer to him.\n\n\"See there, my boy,\" says George, very gently smoothing the \nmother's hair with his hand, \"there's a good loving forehead for \nyou!  All bright with love of you, my boy.  A little touched by the \nsun and the weather through following your father about and taking \ncare of you, but as fresh and wholesome as a ripe apple on a tree.\"\n\nMr. Bagnet's face expresses, so far as in its wooden material lies, \nthe highest approbation and acquiescence.\n\n\"The time will come, my boy,\" pursues the trooper, \"when this hair \nof your mother's will be grey, and this forehead all crossed and \nre-crossed with wrinkles, and a fine old lady she'll be then.  Take \ncare, while you are young, that you can think in those days, 'I \nnever whitened a hair of her dear head--I never marked a sorrowful \nline in her face!'  For of all the many things that you can think \nof when you are a man, you had better have THAT by you, Woolwich!\"\n\nMr. George concludes by rising from his chair, seating the boy \nbeside his mother in it, and saying, with something of a hurry \nabout him, that he'll smoke his pipe in the street a bit.\n\n\n\nCHAPTER XXXV\n\nEsther's Narrative\n\n\nI lay ill through several weeks, and the usual tenor of my life \nbecame like an old remembrance.  But this was not the effect of \ntime so much as of the change in all my habits made by the \nhelplessness and inaction of a sick-room.  Before I had been \nconfined to it many days, everything else seemed to have retired \ninto a remote distance where there was little or no separation \nbetween the various stages of my life which had been really divided \nby years.  In falling ill, I seemed to have crossed a dark lake and \nto have left all my experiences, mingled together by the great \ndistance, on the healthy shore.\n\nMy housekeeping duties, though at first it caused me great anxiety \nto think that they were unperformed, were soon as far off as the \noldest of the old duties at Greenleaf or the summer afternoons when \nI went home from school with my portfolio under my arm, and my \nchildish shadow at my side, to my godmother's house.  I had never \nknown before how short life really was and into how small a space \nthe mind could put it.\n\nWhile I was very ill, the way in which these divisions of time \nbecame confused with one another distressed my mind exceedingly.  \nAt once a child, an elder girl, and the little woman I had been so \nhappy as, I was not only oppressed by cares and difficulties \nadapted to each station, but by the great perplexity of endlessly \ntrying to reconcile them.  I suppose that few who have not been in \nsuch a condition can quite understand what I mean or what painful \nunrest arose from this source.\n\nFor the same reason I am almost afraid to hint at that time in my \ndisorder--it seemed one long night, but I believe there were both \nnights and days in it--when I laboured up colossal staircases, ever \nstriving to reach the top, and ever turned, as I have seen a worm \nin a garden path, by some obstruction, and labouring again.  I knew \nperfectly at intervals, and I think vaguely at most times, that I \nwas in my bed; and I talked with Charley, and felt her touch, and \nknew her very well; yet I would find myself complaining, \"Oh, more \nof these never-ending stairs, Charley--more and more--piled up to \nthe sky', I think!\" and labouring on again.\n\nDare I hint at that worse time when, strung together somewhere in \ngreat black space, there was a flaming necklace, or ring, or starry \ncircle of some kind, of which I was one of the beads!  And when my \nonly prayer was to be taken off from the rest and when it was such \ninexplicable agony and misery to be a part of the dreadful thing?\n\nPerhaps the less I say of these sick experiences, the less tedious \nand the more intelligible I shall be.  I do not recall them to make \nothers unhappy or because I am now the least unhappy in remembering \nthem.  It may be that if we knew more of such strange afflictions \nwe might be the better able to alleviate their intensity.\n\nThe repose that succeeded, the long delicious sleep, the blissful \nrest, when in my weakness I was too calm to have any care for \nmyself and could have heard (or so I think now) that I was dying, \nwith no other emotion than with a pitying love for those I left \nbehind--this state can be perhaps more widely understood.  I was in \nthis state when I first shrunk from the light as it twinkled on me \nonce more, and knew with a boundless joy for which no words are \nrapturous enough that I should see again.\n\nI had heard my Ada crying at the door, day and night; I had heard \nher calling to me that I was cruel and did not love her; I had \nheard her praying and imploring to be let in to nurse and comfort \nme and to leave my bedside no more; but I had only said, when I \ncould speak, \"Never, my sweet girl, never!\" and I had over and over \nagain reminded Charley that she was to keep my darling from the \nroom whether I lived or died.  Charley had been true to me in that \ntime of need, and with her little hand and her great heart had kept \nthe door fast.\n\nBut now, my sight strengthening and the glorious light coming every \nday more fully and brightly on me, I could read the letters that my \ndear wrote to me every morning and evening and could put them to my \nlips and lay my cheek upon them with no fear of hurting her.  I \ncould see my little maid, so tender and so careful, going about the \ntwo rooms setting everything in order and speaking cheerfully to \nAda from the open window again.  I could understand the stillness \nin the house and the thoughtfulness it expressed on the part of all \nthose who had always been so good to me.  I could weep in the \nexquisite felicity of my heart and be as happy in my weakness as \never I had been in my strength.\n\nBy and by my strength began to be restored.  Instead of lying, with \nso strange a calmness, watching what was done for me, as if it were \ndone for some one else whom I was quietly sorry for, I helped it a \nlittle, and so on to a little more and much more, until I became \nuseful to myself, and interested, and attached to life again.\n\nHow well I remember the pleasant afternoon when I was raised in bed \nwith pillows for the first time to enjoy a great tea-drinking with \nCharley!  The little creature--sent into the world, surely, to \nminister to the weak and sick--was so happy, and so busy, and \nstopped so often in her preparations to lay her head upon my bosom, \nand fondle me, and cry with joyful tears she was so glad, she was \nso glad, that I was obliged to say, \"Charley, if you go on in this \nway, I must lie down again, my darling, for I am weaker than I \nthought I was!\"  So Charley became as quiet as a mouse and took her \nbright face here and there across and across the two rooms, out of \nthe shade into the divine sunshine, and out of the sunshine into \nthe shade, while I watched her peacefully.  When all her \npreparations were concluded and the pretty tea-table with its \nlittle delicacies to tempt me, and its white cloth, and its \nflowers, and everything so lovingly and beautifully arranged for me \nby Ada downstairs, was ready at the bedside, I felt sure I was \nsteady enough to say something to Charley that was not new to my \nthoughts.\n\nFirst I complimented Charley on the room, and indeed it was so \nfresh and airy, so spotless and neat, that I could scarce believe I \nhad been lying there so long.  This delighted Charley, and her face \nwas brighter than before.\n\n\"Yet, Charley,\" said I, looking round, \"I miss something, surely, \nthat I am accustomed to?\"\n\nPoor little Charley looked round too and pretended to shake her \nhead as if there were nothing absent.\n\n\"Are the pictures all as they used to be?\" I asked her.\n\n\"Every one of them, miss,\" said Charley.\n\n\"And the furniture, Charley?\"\n\n\"Except where I have moved it about to make more room, miss.\"\n\n\"And yet,\" said I, \"I miss some familiar object.  Ah, I know what \nit is, Charley!  It's the looking-glass.\"\n\nCharley got up from the table, making as if she had forgotten \nsomething, and went into the next room; and I heard her sob there.\n\nI had thought of this very often.  I was now certain of it.  I \ncould thank God that it was not a shock to me now.  I called \nCharley back, and when she came--at first pretending to smile, but \nas she drew nearer to me, looking grieved--I took her in my arms \nand said, \"It matters very little, Charley.  I hope I can do \nwithout my old face very well.\"\n\nI was presently so far advanced as to be able to sit up in a great \nchair and even giddily to walk into the adjoining room, leaning on \nCharley.  The mirror was gone from its usual place in that room \ntoo, but what I had to bear was none the harder to bear for that.\n\nMy guardian had throughout been earnest to visit me, and there was \nnow no good reason why I should deny myself that happiness.  He \ncame one morning, and when he first came in, could only hold me in \nhis embrace and say, \"My dear, dear girl!\"  I had long known--who \ncould know better?--what a deep fountain of affection and \ngenerosity his heart was; and was it not worth my trivial suffering \nand change to fill such a place in it?  \"Oh, yes!\" I thought.  \"He \nhas seen me, and he loves me better than he did; he has seen me and \nis even fonder of me than he was before; and what have I to mourn \nfor!\"\n\nHe sat down by me on the sofa, supporting me with his arm.  For a \nlittle while he sat with his hand over his face, but when he \nremoved it, fell into his usual manner.  There never can have been, \nthere never can be, a pleasanter manner.\n\n\"My little woman,\" said he, \"what a sad time this has been.  Such \nan inflexible little woman, too, through all!\"\n\n\"Only for the best, guardian,\" said I.\n\n\"For the best?\" he repeated tenderly.  \"Of course, for the best.  \nBut here have Ada and I been perfectly forlorn and miserable; here \nhas your friend Caddy been coming and going late and early; here \nhas every one about the house been utterly lost and dejected; here \nhas even poor Rick been writing--to ME too--in his anxiety for \nyou!\"\n\nI had read of Caddy in Ada's letters, but not of Richard.  I told \nhim so.\n\n\"Why, no, my dear,\" he replied.  \"I have thought it better not to \nmention it to her.\"\n\n\"And you speak of his writing to YOU,\" said I, repeating his \nemphasis.  \"As if it were not natural for him to do so, guardian; \nas if he could write to a better friend!\"\n\n\"He thinks he could, my love,\" returned my guardian, \"and to many a \nbetter.  The truth is, he wrote to me under a sort of protest while \nunable to write to you with any hope of an answer--wrote coldly, \nhaughtily, distantly, resentfully.  Well, dearest little woman, we \nmust look forbearingly on it.  He is not to blame.  Jarndyce and \nJarndyce has warped him out of himself and perverted me in his \neyes.  I have known it do as bad deeds, and worse, many a time.  If \ntwo angels could be concerned in it, I believe it would change \ntheir nature.\"\n\n\"It has not changed yours, guardian.\"\n\n\"Oh, yes, it has, my dear,\" he said laughingly.  \"It has made the \nsouth wind easterly, I don't know how often.  Rick mistrusts and \nsuspects me--goes to lawyers, and is taught to mistrust and suspect \nme.  Hears I have conflicting interests, claims clashing against \nhis and what not.  Whereas, heaven knows that if I could get out of \nthe mountains of wiglomeration on which my unfortunate name has \nbeen so long bestowed (which I can't) or could level them by the \nextinction of my own original right (which I can't either, and no \nhuman power ever can, anyhow, I believe, to such a pass have we \ngot), I would do it this hour.  I would rather restore to poor Rick \nhis proper nature than be endowed with all the money that dead \nsuitors, broken, heart and soul, upon the wheel of Chancery, have \nleft unclaimed with the Accountant-General--and that's money \nenough, my dear, to be cast into a pyramid, in memory of Chancery's \ntranscendent wickedness.\"\n\n\"IS it possible, guardian,\" I asked, amazed, \"that Richard can be \nsuspicious of you?\"\n\n\"Ah, my love, my love,\" he said, \"it is in the subtle poison of \nsuch abuses to breed such diseases.  His blood is infected, and \nobjects lose their natural aspects in his sight.  It is not HIS \nfault.\"\n\n\"But it is a terrible misfortune, guardian.\"\n\n\"It is a terrible misfortune, little woman, to be ever drawn within \nthe influences of Jarndyce and Jarndyce.  I know none greater.  By \nlittle and little he has been induced to trust in that rotten reed, \nand it communicates some portion of its rottenness to everything \naround him.  But again I say with all my soul, we must be patient \nwith poor Rick and not blame him.  What a troop of fine fresh \nhearts like his have I seen in my time turned by the same means!\"\n\nI could not help expressing something of my wonder and regret that \nhis benevolent, disinterested intentions had prospered so little.\n\n\"We must not say so, Dame Durden,\" he cheerfully rephed; \"Ada is \nthe happier, I hope, and that is much.  I did think that I and both \nthese young creatures might be friends instead of distrustful foes \nand that we might so far counter-act the suit and prove too strong \nfor it.  But it was too much to expect.  Jarndyce and Jarndyce was \nthe curtain of Rick's cradle.\"\n\n\"But, guardian, may we not hope that a little experience will teach \nhim what a false and wretched thing it is?\"\n\n\"We WILL hope so, my Esther,\" said Mr. Jarndyce, \"and that it may \nnot teach him so too late.  In any case we must not be hard on him.  \nThere are not many grown and matured men living while we speak, \ngood men too, who if they were thrown into this same court as \nsuitors would not be vitally changed and depreciated within three \nyears--within two--within one.  How can we stand amazed at poor \nRick?  A young man so unfortunate,\" here he fell into a lower tone, \nas if he were thinking aloud, \"cannot at first believe (who could?) \nthat Chancery is what it is.  He looks to it, flushed and fitfully, \nto do something with his interests and bring them to some \nsettlement.  It procrastinates, disappoints, tries, tortures him; \nwears out his sanguine hopes and patience, thread by thread; but he \nstill looks to it, and hankers after it, and finds his whole world \ntreacherous and hollow.  Well, well, well!  Enough of this, my \ndear!\"\n\nHe had supported me, as at first, all this time, and his tenderness \nwas so precious to me that I leaned my head upon his shoulder and \nloved him as if he had been my father.  I resolved in my own mind \nin this little pause, by some means, to see Richard when I grew \nstrong and try to set him right.\n\n\"There are better subjects than these,\" said my guardian, \"for such \na joyful time as the time of our dear girl's recovery.  And I had a \ncommission to broach one of them as soon as I should begin to talk.  \nWhen shall Ada come to see you, my love?\"\n\nI had been thinking of that too.  A little in connexion with the \nabsent mirrors, but not much, for I knew my loving girl would be \nchanged by no change in my looks.\n\n\"Dear guardian,\" said I, \"as I have shut her out so long--though \nindeed, indeed, she is like the light to me--\"\n\n\"I know it well, Dame Durden, well.\"\n\nHe was so good, his touch expressed such endearing compassion and \naffection, and the tone of his voice carried such comfort into my \nheart that I stopped for a little while, quite unable to go on.  \n\"Yes, yes, you are tired,\" said he, \"Rest a little.\"\n\n\"As I have kept Ada out so long,\" I began afresh after a short \nwhile, \"I think I should like to have my own way a little longer, \nguardian.  It would be best to be away from here before I see her.  \nIf Charley and I were to go to some country lodging as soon as I \ncan move, and if I had a week there in which to grow stronger and \nto be revived by the sweet air and to look forward to the happiness \nof having Ada with me again, I think it would be better for us.\"\n\nI hope it was not a poor thing in me to wish to be a little more \nused to my altered self before I met the eyes of the dear girl I \nlonged so ardently to see, but it is the truth.  I did.  He \nunderstood me, I was sure; but I was not afraid of that.  If it \nwere a poor thing, I knew he would pass it over.\n\n\"Our spoilt little woman,\" said my guardian, \"shall have her own \nway even in her inflexibility, though at the price, I know, of \ntears downstairs.  And see here!  Here is Boythorn, heart of \nchivalry, breathing such ferocious vows as never were breathed on \npaper before, that if you don't go and occupy his whole house, he \nhaving already turned out of it expressly for that purpose, by \nheaven and by earth he'll pull it down and not leave one brick \nstanding on another!\"\n\nAnd my guardian put a letter in my hand, without any ordinary \nbeginning such as \"My dear Jarndyce,\" but rushing at once into the \nwords, \"I swear if Miss Summerson do not come down and take \npossession of my house, which I vacate for her this day at one \no'clock, P.M.,\" and then with the utmost seriousness, and in the \nmost emphatic terms, going on to make the extraordinary declaration \nhe had quoted.  We did not appreciate the writer the less for \nlaughing heartily over it, and we settled that I should send him a \nletter of thanks on the morrow and accept his offer.  It was a most \nagreeable one to me, for all the places I could have thought of, I \nshould have liked to go to none so well as Chesney Wold.\n\n\"Now, little housewife,\" said my guardian, looking at his watch, \"I \nwas strictly timed before I came upstairs, for you must not be \ntired too soon; and my time has waned away to the last minute.  I \nhave one other petition.  Little Miss Flite, hearing a rumour that \nyou were ill, made nothing of walking down here--twenty miles, poor \nsoul, in a pair of dancing shoes--to inquire.  It was heaven's \nmercy we were at home, or she would have walked back again.\"\n\nThe old conspiracy to make me happy!  Everybody seemed to be in it!\n\n\"Now, pet,\" said my guardian, \"if it would not be irksome to you to \nadmit the harmless little creature one afternoon before you save \nBoythorn's otherwise devoted house from demolition, I believe you \nwould make her prouder and better pleased with herself than I--\nthough my eminent name is Jarndyce--could do in a lifetime.\"\n\nI have no doubt he knew there would be something in the simple \nimage of the poor afflicted creature that would fall like a gentle \nlesson on my mind at that time.  I felt it as he spoke to me.  I \ncould not tell him heartily enough how ready I was to receive her.  \nI had always pitied her, never so much as now.  I had always been \nglad of my little power to soothe her under her calamity, but \nnever, never, half so glad before.\n\nWe arranged a time for Miss Flite to come out by the coach and \nshare my early dinner.  When my guardian left me, I turned my face \naway upon my couch and prayed to be forgiven if I, surrounded by \nsuch blessings, had magnified to myself the little trial that I had \nto undergo.  The childish prayer of that old birthday when I had \naspired to be industrious, contented, and true-hearted and to do \ngood to some one and win some love to myself if I could came back \ninto my mind with a reproachful sense of all the happiness I had \nsince enjoyed and all the affectionate hearts that had been turned \ntowards me.  If I were weak now, what had I profited by those \nmercies?  I repeated the old childish prayer in its old childish \nwords and found that its old peace had not departed from it.\n\nMy guardian now came every day.  In a week or so more I could walk \nabout our rooms and hold long talks with Ada from behind the \nwindow-curtain.  Yet I never saw her, for I had not as yet the \ncourage to look at the dear face, though I could have done so \neasily without her seeing me.\n\nOn the appointed day Miss Flite arrived.  The poor little creature \nran into my room quite forgetful of her usual dignity, and crying \nfrom her very heart of hearts, \"My dear Fitz Jarndyce!\" fell upon \nmy neck and kissed me twenty times.\n\n\"Dear me!\" said she, putting her hand into her reticule, \"I have \nnothing here but documents, my dear Fitz Jarndyce; I must borrow a \npocket handkerchief.\"\n\nCharley gave her one, and the good creature certainly made use of \nit, for she held it to her eyes with both hands and sat so, \nshedding tears for the next ten minutes.\n\n\"With pleasure, my dear Fitz Jarndyce,\" she was careful to explain.  \n\"Not the least pain.  Pleasure to see you well again.  Pleasure at \nhaving the honour of being admitted to see you.  I am so much \nfonder of you, my love, than of the Chancellor.  Though I DO attend \ncourt regularly.  By the by, my dear, mentioning pocket \nhandkerchiefs--\"\n\nMiss Flite here looked at Charley, who had been to meet her at the \nplace where the coach stopped.  Charley glanced at me and looked \nunwilling to pursue the suggestion.\n\n\"Ve-ry right!\" said Miss Flite, \"Ve-ry correct.  Truly!  Highly \nindiscreet of me to mention it; but my dear Miss Fitz Jarndyce, I \nam afraid I am at times (between ourselves, you wouldn't think it) \na little--rambling you know,\" said Miss Flite, touching her \nforehead.  \"Nothing more,\"\n\n\"What were you going to tell me?\" said I, smiling, for I saw she \nwanted to go on.  \"You have roused my curiosity, and now you must \ngratify it.\"\n\nMiss Flite looked at Charley for advice in this important crisis, \nwho said, \"If you please, ma'am, you had better tell then,\" and \ntherein gratified Miss Flite beyond measure.\n\n\"So sagacious, our young friend,\" said she to me in her mysterious \nway.  \"Diminutive.  But ve-ry sagacious!  Well, my dear, it's a \npretty anecdote.  Nothing more.  Still I think it charming.  Who \nshould follow us down the road from the coach, my dear, but a poor \nperson in a very ungenteel bonnet--\"\n\n\"Jenny, if you please, miss,\" said Charley.\n\n\"Just so!\" Miss Flite acquiesced with the greatest suavity.  \n\"Jenny.  Ye-es!  And what does she tell our young friend but that \nthere has been a lady with a veil inquiring at her cottage after my \ndear Fitz Jarndyce's health and taking a handkerchief away with her \nas a little keepsake merely because it was my amiable Fitz \nJarndyce's!  Now, you know, so very prepossessing in the lady with \nthe veil!\"\n\n\"If you please, miss,\" said Charley, to whom I looked in some \nastonishment, \"Jenny says that when her baby died, you left a \nhandkerchief there, and that she put it away and kept it with the \nbaby's little things.  I think, if you please, partly because it \nwas yours, miss, and partly because it had covered the baby.\"\n\n\"Diminutive,\" whispered Miss Flite, making a variety of motions \nabout her own forehead to express intellect in Charley.  \"But ex-\nceedingly sagacious!  And so dear!  My love, she's clearer than any \ncounsel I ever heard!\"\n\n\"Yes, Charley,\" I returned.  \"I remember it.  Well?\"\n\n\"Well, miss,\" said Charley, \"and that's the handkerchief the lady \ntook.  And Jenny wants you to know that she wouldn't have made away \nwith it herself for a heap of money but that the lady took it and \nleft some money instead.  Jenny don't know her at all, if you \nplease, miss!\"\n\n\"Why, who can she be?\" said I.\n\n\"My love,\" Miss Flite suggested, advancing her lips to my ear with \nher most mysterious look, \"in MY opinion--don't mention this to our \ndiminutive friend--she's the Lord Chancellor's wife.  He's married, \nyou know.  And I understand she leads him a terrible life.  Throws \nhis lordship's papers into the fire, my dear, if he won't pay the \njeweller!\"\n\nI did not think very much about this lady then, for I had an \nimpression that it might be Caddy.  Besides, my attention was \ndiverted by my visitor, who was cold after her ride and looked \nhungry and who, our dinner being brought in, required some little \nassistance in arraying herself with great satisfaction in a \npitiable old scarf and a much-worn and often-mended pair of gloves, \nwhich she had brought down in a paper parcel.  I had to preside, \ntoo, over the entertainment, consisting of a dish of fish, a roast \nfowl, a sweetbread, vegetables, pudding, and Madeira; and it was so \npleasant to see how she enjoyed it, and with what state and \nceremony she did honour to it, that I was soon thinking of nothing \nelse.\n\nWhen we had finished and had our little dessert before us, \nembellished by the hands of my dear, who would yield the \nsuperintendence of everything prepared for me to no one, Miss Flite \nwas so very chatty and happy that I thought I would lead her to her \nown history, as she was always pleased to talk about herself.  I \nbegan by saying \"You have attended on the Lord Chancellor many \nyears, Miss Flite?\"\n\n\"Oh, many, many, many years, my dear.  But I expect a judgment.  \nShortly.\"\n\nThere was an anxiety even in her hopefulness that made me doubtful \nif I had done right in approaching the subject.  I thought I would \nsay no more about it.\n\n\"My father expected a judgment,\" said Miss Flite.  \"My brother.  My \nsister.  They all expected a judgment.  The same that I expect.\"\n\n\"They are all--\"\n\n\"Ye-es.  Dead of course, my dear,\" said she.\n\nAs I saw she would go on, I thought it best to try to be \nserviceable to her by meeting the theme rather than avoiding it.\n\n\"Would it not be wiser,\" said I, \"to expect this judgment no more?\"\n\n\"Why, my dear,\" she answered promptly, \"of course it would!\"\n\n\"And to attend the court no more?\"\n\n\"Equally of course,\" said she.  \"Very wearing to be always in \nexpectation of what never comes, my dear Fitz Jarndyce!  Wearing, I \nassure you, to the bone!\"\n\nShe slightly showed me her arm, and it was fearfully thin indeed.\n\n\"But, my dear,\" she went on in her mysterious way, \"there's a \ndreadful attraction in the place.  Hush!  Don't mention it to our \ndiminutive friend when she comes in.  Or it may frighten her.  With \ngood reason.  There's a cruel attraction in the place.  You CAN'T \nleave it.  And you MUST expect.\"\n\nI tried to assure her that this was not so.  She heard me patiently \nand smilingly, but was ready with her own answer.\n\n\"Aye, aye, aye!  You think so because I am a little rambling.  Ve-\nry absurd, to be a little rambling, is it not?  Ve-ry confusing, \ntoo.  To the head.  I find it so.  But, my dear, I have been there \nmany years, and I have noticed.  It's the mace and seal upon the \ntable.\"\n\nWhat could they do, did she think?  I mildly asked her.\n\n\"Draw,\" returned Miss Flite.  \"Draw people on, my dear.  Draw peace \nout of them.  Sense out of them.  Good looks out of them.  Good \nqualities out of them.  I have felt them even drawing my rest away \nin the night.  Cold and glittering devils!\"\n\nShe tapped me several times upon the arm and nodded good-humouredly \nas if she were anxious I should understand that I had no cause to \nfear her, though she spoke so gloomily, and confided these awful \nsecrets to me.\n\n\"Let me see,\" said she.  \"I'll tell you my own case.  Before they \never drew me--before I had ever seen them--what was it I used to \ndo?  Tambourine playing?  No.  Tambour work.  I and my sister \nworked at tambour work.  Our father and our brother had a builder's \nbusiness.  We all lived together.  Ve-ry respectably, my dear!  \nFirst, our father was drawn--slowly.  Home was drawn with him.  In \na few years he was a fierce, sour, angry bankrupt without a kind \nword or a kind look for any one.  He had been so different, Fitz \nJarndyce.  He was drawn to a debtors' prison.  There he died.  Then \nour brother was drawn--swiftly--to drunkenness.  And rags.  And \ndeath.  Then my sister was drawn.  Hush!  Never ask to what!  Then \nI was ill and in misery, and heard, as I had often heard before, \nthat this was all the work of Chancery.  When I got better, I went \nto look at the monster.  And then I found out how it was, and I was \ndrawn to stay there.\"\n\nHaving got over her own short narrative, in the delivery of which \nshe had spoken in a low, strained voice, as if the shock were fresh \nupon her, she gradually resumed her usual air of amiable \nimportance.\n\n\"You don't quite credit me, my dear!  Well, well!  You will, some \nday.  I am a little rambling.  But I have noticed.  I have seen \nmany new faces come, unsuspicious, within the influence of the mace \nand seal in these many years.  As my father's came there.  As my \nbrother's.  As my sister's.  As my own.  I hear Conversation Kenge \nand the rest of them say to the new faces, 'Here's little Miss \nFlite.  Oh, you are new here; and you must come and be presented to \nlittle Miss Flite!'  Ve-ry good.  Proud I am sure to have the \nhonour!  And we all laugh.  But, Fitz Jarndyce, I know what will \nhappen.  I know, far better than they do, when the attraction has \nbegun.  I know the signs, my dear.  I saw them begin in Gridley.  \nAnd I saw them end.  Fitz Jarndyce, my love,\" speaking low again, \n\"I saw them beginning in our friend the ward in Jarndyce.  Let some \none hold him back.  Or he'll be drawn to ruin.\n\nShe looked at me in silence for some moments, with her face \ngradually softening into a smile.  Seeming to fear that she had \nbeen too gloomy, and seeming also to lose the connexion in her \nmind, she said politely as she sipped her glass of wine, \"Yes, my \ndear, as I was saying, I expect a judgment shortly.  Then I shall \nrelease my birds, you know, and confer estates.\"\n\nI was much impressed by her allusion to Richard and by the sad \nmeaning, so sadly illustrated in her poor pinched form, that made \nits way through all her incoherence.  But happily for her, she was \nquite complacent again now and beamed with nods and smiles.\n\n\"But, my dear,\" she said, gaily, reaching another hand to put it \nupon mine.  \"You have not congratulated me on my physician.  \nPositively not once, yet!\"\n\nI was obliged to confess that I did not quite know what she meant.\n\n\"My physician, Mr. Woodcourt, my dear, who was so exceedingly \nattentive to me.  Though his services were rendered quite \ngratuitously.  Until the Day of Judgment.  I mean THE judgment that \nwill dissolve the spell upon me of the mace and seal.\"\n\n\"Mr. Woodcourt is so far away, now,\" said I, \"that I thought the \ntime for such congratulation was past, Miss Flite.\"\n\n\"But, my child,\" she returned, \"is it possible that you don't know \nwhat has happened?\"\n\n\"No,\" said I.\n\n\"Not what everybody has been talking of, my beloved Fitz Jarndyce!\"\n\n\"No,\" said I.  \"You forget how long I have been here.\"\n\n\"True!  My dear, for the moment--true.  I blame myself.  But my \nmemory has been drawn out of me, with everything else, by what I \nmentioned.  Ve-ry strong influence, is it not?  Well, my dear, \nthere has been a terrible shipwreck over in those East Indian \nseas.\"\n\n\"Mr. Woodcourt shipwrecked!\"\n\n\"Don't be agitated, my dear.  He is safe.  An awful scene.  Death \nin all shapes.  Hundreds of dead and dying.  Fire, storm, and \ndarkness.  Numbers of the drowning thrown upon a rock.  There, and \nthrough it all, my dear physician was a hero.  Calm and brave \nthrough everything.  Saved many lives, never complained in hunger \nand thirst, wrapped naked people in his spare clothes, took the \nlead, showed them what to do, governed them, tended the sick, \nburied the dead, and brought the poor survivors safely off at last!  \nMy dear, the poor emaciated creatures all but worshipped him.  They \nfell down at his feet when they got to the land and blessed him.  \nThe whole country rings with it.  Stay!  Where's my bag of \ndocuments?  I have got it there, and you shall read it, you shall \nread it!\"\n\nAnd I DID read all the noble history, though very slowly and \nimperfectly then, for my eyes were so dimmed that I could not see \nthe words, and I cried so much that I was many times obliged to lay \ndown the long account she had cut out of the newspaper.  I felt so \ntriumphant ever to have known the man who had done such generous \nand gallant deeds, I felt such glowing exultation in his renown, I \nso admired and loved what he had done, that I envied the storm-worn \npeople who had fallen at his feet and blessed him as their \npreserver.  I could myself have kneeled down then, so far away, and \nblessed him in my rapture that he should be so truly good and \nbrave.  I felt that no one--mother, sister, wife--could honour him \nmore than I.  I did, indeed!\n\nMy poor little visitor made me a present of the account, and when \nas the evening began to close in she rose to take her leave, lest \nshe should miss the coach by which she was to return, she was still \nfull of the shipwreck, which I had not yet sufflciently composed \nmyself to understand in all its details.\n\n\"My dear,\" said she as she carefully folded up her scarf and \ngloves, \"my brave physician ought to have a title bestowed upon \nhim.  And no doubt he will.  You are of that opinlon?\"\n\nThat he well deserved one, yes.  That he would ever have one, no.\n\n\"Why not, Fitz Jarndyce?\" she asked rather sharply.\n\nI said it was not the custom in England to confer titles on men \ndistinguished by peaceful services, however good and great, unless \noccasionally when they consisted of the accumulation of some very \nlarge amount of money.\n\n\"Why, good gracious,\" said Miss Flite, \"how can you say that?  \nSurely you know, my dear, that all the greatest ornaments of \nEngland in knowledge, imagination, active humanity, and improvement \nof every sort are added to its nobility!  Look round you, my dear, \nand consider.  YOU must be rambling a little now, I think, if you \ndon't know that this is the great reason why titles will always \nlast in the land!\"\n\nI am afraid she believed what she said, for there were moments when \nshe was very mad indeed.\n\nAnd now I must part with the little secret I have thus far tried to \nkeep.  I had thought, sometimes, that Mr. Woodcourt loved me and \nthat if he had been richer he would perhaps have told me that he \nloved me before he went away.  I had thought, sometimes, that if he \nhad done so, I should have been glad of it.  But how much better it \nwas now that this had never happened!  What should I have suffered \nif I had had to write to him and tell him that the poor face he had \nknown as mine was quite gone from me and that I freely released him \nfrom his bondage to one whom he had never seen!\n\nOh, it was so much better as it was!  With a great pang mercifully \nspared me, I could take back to my heart my childish prayer to be \nall he had so brightly shown himself; and there was nothing to be \nundone: no chain for me to break or for him to drag; and I could \ngo, please God, my lowly way along the path of duty, and he could \ngo his nobler way upon its broader road; and though we were apart \nupon the journey, I might aspire to meet him, unselfishly, \ninnocently, better far than he had thought me when I found some \nfavour in his eyes, at the journey's end.\n\n\n\nCHAPTER XXXVI\n\nChesney Wold\n\n\nCharley and I did not set off alone upon our expedition into \nLincolnshire.  My guardian had made up his mind not to lose sight \nof me until I was safe in Mr. Boythorn's house, so he accompanied \nus, and we were two days upon the road.  I found every breath of \nair, and every scent, and every flower and leaf and blade of grass, \nand every passing cloud, and everything in nature, more beautiful \nand wonderful to me than I had ever found it yet.  This was my \nfirst gain from my illness.  How little I had lost, when the wide \nworld was so full of delight for me.\n\nMy guardian intending to go back immediately, we appointed, on our \nway down, a day when my dear girl should come.  I wrote her a \nletter, of which he took charge, and he left us within half an hour \nof our arrival at our destination, on a delightful evening in the \nearly summer-time.\n\nIf a good fairy had built the house for me with a wave of her wand, \nand I had been a princess and her favoured god-child, I could not \nhave been more considered in it.  So many preparations were made \nfor me and such an endearing remembrance was shown of all my little \ntastes and likings that I could have sat down, overcome, a dozen \ntimes before I had revisited half the rooms.  I did better than \nthat, however, by showing them all to Charley instead.  Charley's \ndelight calmed mine; and after we had had a walk in the garden, and \nCharley had exhausted her whole vocabulary of admiring expressions, \nI was as tranquilly happy as I ought to have been.  It was a great \ncomfort to be able to say to myself after tea, \"Esther, my dear, I \nthink you are quite sensible enough to sit down now and write a \nnote of thanks to your host.\"  He had left a note of welcome for \nme, as sunny as his own face, and had confided his bird to my care, \nwhich I knew to be his highest mark of confidence.  Accordingly I \nwrote a little note to him in London, telling him how all his \nfavourite plants and trees were looking, and how the most \nastonishing of birds had chirped the honours of the house to me in \nthe most hospitable manner, and how, after singing on my shoulder, \nto the inconceivable rapture of my little maid, he was then at \nroost in the usual corner of his cage, but whether dreaming or no I \ncould not report.  My note finished and sent off to the post, I \nmade myself very busy in unpacking and arranging; and I sent \nCharley to bed in good time and told her I should want her no more \nthat night.\n\nFor I had not yet looked in the glass and had never asked to have \nmy own restored to me.  I knew this to be a weakness which must be \novercome, but I had always said to myself that I would begin afresh \nwhen I got to where I now was.  Therefore I had wanted to be alone, \nand therefore I said, now alone, in my own room, \"Esther, if you \nare to be happy, if you are to have any right to pray to be true-\nhearted, you must keep your word, my dear.\"  I was quite resolved \nto keep it, but I sat down for a little while first to reflect upon \nall my blessings.  And then I said my prayers and thought a little \nmore.\n\nMy hair had not been cut off, though it had been in danger more \nthan once.  It was long and thick.  I let it down, and shook it \nout, and went up to the glass upon the dressing-table.  There was a \nlittle muslin curtain drawn across it.  I drew it back and stood \nfor a moment looking through such a veil of my own hair that I \ncould see nothing else.  Then I put my hair aside and looked at the \nreflection in the mirror, encouraged by seeing how placidly it \nlooked at me.  I was very much changed--oh, very, very much.  At \nfirst my face was so strange to me that I think I should have put \nmy hands before it and started back but for the encouragement I \nhave mentioned.  Very soon it became more familiar, and then I knew \nthe extent of the alteration in it better than I had done at first.  \nIt was not like what I had expected, but I had expected nothing \ndefinite, and I dare say anything definite would have surprised me.\n\nI had never been a beauty and had never thought myself one, but I \nhad been very different from this.  It was all gone now.  Heaven \nwas so good to me that I could let it go with a few not bitter \ntears and could stand there arranging my hair for the night quite \nthankfully.\n\nOne thing troubled me, and I considered it for a long time before I \nwent to sleep.  I had kept Mr. Woodcourt's flowers.  When they were \nwithered I had dried them and put them in a book that I was fond \nof.  Nobody knew this, not even Ada.  I was doubtful whether I had \na right to preserve what he had sent to one so different--whether \nit was generous towards him to do it.  I wished to be generous to \nhim, even in the secret depths of my heart, which he would never \nknow, because I could have loved him--could have been devoted to \nhim.  At last I came to the conclusion that I might keep them if I \ntreasured them only as a remembrance of what was irrevocably past \nand gone, never to be looked back on any more, in any other light.  \nI hope this may not seem trivial.  I was very much in earnest.\n\nI took care to be up early in the morning and to be before the \nglass when Charley came in on tiptoe.\n\n\"Dear, dear, miss!\" cried Charley, starting.  \"Is that you?\"\n\n\"Yes, Charley,\" said I, quietly putting up my hair.  \"And I am very \nwell indeed, and very happy.\"\n\nI saw it was a weight off Charley's mind, but it was a greater \nweight off mine.  I knew the worst now and was composed to it.  I \nshall not conceal, as I go on, the weaknesses I could not quite \nconquer, but they always passed from me soon and the happier frame \nof mind stayed by me faithfully.\n\nWishing to be fully re-established in my strength and my good \nspirits before Ada came, I now laid down a little series of plans \nwith Charley for being in the fresh air all day long.  We were to \nbe out before breakfast, and were to dine early, and were to be out \nagain before and after dinner, and were to talk in the garden after \ntea, and were to go to rest betimes, and were to climb every hill \nand explore every road, lane, and field in the neighbourhood.  As \nto restoratives and strengthening delicacies, Mr. Boythorn's good \nhousekeeper was for ever trotting about with something to eat or \ndrink in her hand; I could not even be heard of as resting in the \npark but she would come trotting after me with a basket, her \ncheerful face shining with a lecture on the importance of frequent \nnourishment.  Then there was a pony expressly for my riding, a \nchubby pony with a short neck and a mane all over his eyes who \ncould canter--when he would--so easily and quietly that he was a \ntreasure.  In a very few days he would come to me in the paddock \nwhen I called him, and eat out of my hand, and follow me about.  We \narrived at such a capital understanding that when he was jogging \nwith me lazily, and rather obstinately, down some shady lane, if I \npatted his neck and said, \"Stubbs, I am surprised you don't canter \nwhen you know how much I like it; and I think you might oblige me, \nfor you are only getting stupid and going to sleep,\" he would give \nhis head a comical shake or two and set off directly, while Charley \nwould stand still and laugh with such enjoyment that her laughter \nwas like music.  I don't know who had given Stubbs his name, but it \nseemed to belong to him as naturally as his rough coat.  Once we \nput him in a little chaise and drove him triumphantly through the \ngreen lanes for five miles; but all at once, as we were extolling \nhim to the skies, he seemed to take it ill that he should have been \naccompanied so far by the circle of tantalizing little gnats that \nhad been hovering round and round his ears the whole way without \nappearing to advance an inch, and stopped to think about it.  I \nsuppose he came to the decision that it was not to be borne, for he \nsteadily refused to move until I gave the reins to Charley and got \nout and walked, when he followed me with a sturdy sort of good \nhumour, putting his head under my arm and rubbing his ear against \nmy sleeve.  It was in vain for me to say, \"Now, Stubbs, I feel \nquite sure from what I know of you that you will go on if I ride a \nlittle while,\" for the moment I left him, he stood stock still \nagain.  Consequently I was obliged to lead the way, as before; and \nin this order we returned home, to the great delight of the \nvillage.\n\nCharley and I had reason to call it the most friendly of villages, \nI am sure, for in a week's time the people were so glad to see us \ngo by, though ever so frequently in the course of a day, that there \nwere faces of greeting in every cottage.  I had known many of the \ngrown people before and almost all the children, but now the very \nsteeple began to wear a familiar and affectionate look.  Among my \nnew friends was an old old woman who lived in such a little \nthatched and whitewashed dwelling that when the outside shutter was \nturned up on its hinges, it shut up the whole house-front.  This \nold lady had a grandson who was a sailor, and I wrote a letter to \nhim for her and drew at the top of it the chimney-corner in which \nshe had brought him up and where his old stool yet occupied its old \nplace.  This was considered by the whole village the most wonderful \nachievement in the world, but when an answer came back all the way \nfrom Plymouth, in which he mentioned that he was going to take the \npicture all the way to America, and from America would write again, \nI got all the credit that ought to have been given to the post-\noffice and was invested with the merit of the whole system.\n\nThus, what with being so much in the air, playing with so many \nchildren, gossiping with so many people, sitting on invitation in \nso many cottages, going on with Charley's education, and writing \nlong letters to Ada every day, I had scarcely any time to think \nabout that little loss of mine and was almost always cheerful.  If \nI did think of it at odd moments now and then, I had only to be \nbusy and forget it.  I felt it more than I had hoped I should once \nwhen a child said, \"Mother, why is the lady not a pretty lady now \nlike she used to be?\"  But when I found the child was not less fond \nof me, and drew its soft hand over my face with a kind of pitying \nprotection in its touch, that soon set me up again.  There were \nmany little occurrences which suggested to me, with great \nconsolation, how natural it is to gentle hearts to be considerate \nand delicate towards any inferiority.  One of these particularly \ntouched me.  I happened to stroll into the little church when a \nmarriage was just concluded, and the young couple had to sign the \nregister.\n\nThe bridegroom, to whom the pen was handed first, made a rude cross \nfor his mark; the bride, who came next, did the same.  Now, I had \nknown the bride when I was last there, not only as the prettiest \ngirl in the place, but as having quite distinguished herself in the \nschool, and I could not help looking at her with some surprise.  \nShe came aside and whispered to me, while tears of honest love and \nadmiration stood in her bright eyes, \"He's a dear good fellow, \nmiss; but he can't write yet--he's going to learn of me--and I \nwouldn't shame him for the world!\"  Why, what had I to fear, I \nthought, when there was this nobility in the soul of a labouring \nman's daughter!\n\nThe air blew as freshly and revivingly upon me as it had ever \nblown, and the healthy colour came into my new face as it had come \ninto my old one.  Charley was wonderful to see, she was so radiant \nand so rosy; and we both enjoyed the whole day and slept soundly \nthe whole night.\n\nThere was a favourite spot of mine in the park-woods of Chesney \nWold where a seat had been erected commanding a lovely view.  The \nwood had been cleared and opened to improve this point of sight, \nand the bright sunny landscape beyond was so beautiful that I \nrested there at least once every day.  A picturesque part of the \nHall, called the Ghost's Walk, was seen to advantage from this \nhigher ground; and the startling name, and the old legend in the \nDedlock family which I had heard from Mr. Boythorn accounting for \nit, mingled with the view and gave it something of a mysterious \ninterest in addition to its real charms.  There was a bank here, \ntoo, which was a famous one for violets; and as it was a daily \ndelight of Charley's to gather wild flowers, she took as much to \nthe spot as I did.\n\nIt would be idle to inquire now why I never went close to the house \nor never went inside it.  The family were not there, I had heard on \nmy arrival, and were not expected.  I was far from being incurious \nor uninterested about the building; on the contrary, I often sat in \nthis place wondering how the rooms ranged and whether any echo like \na footstep really did resound at times, as the story said, upon the \nlonely Ghost's Walk.  The indefinable feeling with which Lady \nDedlock had impressed me may have had some influence in keeping me \nfrom the house even when she was absent.  I am not sure.  Her face \nand figure were associated with it, naturally; but I cannot say \nthat they repelled me from it, though something did.  For whatever \nreason or no reason, I had never once gone near it, down to the day \nat which my story now arrives.\n\nI was resting at my favourite point after a long ramble, and \nCharley was gathering violets at a little distance from me.  I had \nbeen looking at the Ghost's Walk lying in a deep shade of masonry \nafar off and picturing to myself the female shape that was said to \nhaunt it when I became aware of a figure approaching through the \nwood.  The perspective was so long and so darkened by leaves, and \nthe shadows of the branches on the ground made it so much more \nintricate to the eye, that at first I could not discern what figure \nit was.  By little and little it revealed itself to be a woman's--a \nlady's--Lady Dedlock's.  She was alone and coming to where I sat \nwith a much quicker step, I observed to my surprise, than was usual \nwith her.\n\nI was fluttered by her being unexpectedly so near (she was almost \nwithin speaking distance before I knew her) and would have risen to \ncontinue my walk.  But I could not.  I was rendered motionless.  \nNot so much by her hurried gesture of entreaty, not so much by her \nquick advance and outstretched hands, not so much by the great \nchange in her manner and the absence of her haughty self-restraint, \nas by a something in her face that I had pined for and dreamed of \nwhen I was a little child, something I had never seen in any face, \nsomething I had never seen in hers before.\n\nA dread and faintness fell upon me, and I called to Charley.  Lady \nDedlock stopped upon the instant and changed back almost to what I \nhad known her.\n\n\"Miss Summerson, I am afraid I have startled you,\" she said, now \nadvancing slowly.  \"You can scarcely be strong yet.  You have been \nvery ill, I know.  I have been much concerned to hear it.\"\n\nI could no more have removed my eyes from her pale face than I \ncould have stirred from the bench on which I sat.  She gave me her \nhand, and its deadly coldness, so at variance with the enforced \ncomposure of her features, deepened the fascination that \noverpowered me.  I cannot say what was in my whirling thoughts.\n\n\"You are recovering again?\" she asked kindly.\n\n\"I was quite well but a moment ago, Lady Dedlock.\"\n\n\"Is this your young attendant?\"\n\n\"Yes.\"\n\n\"Will you send her on before and walk towards your house with me?\"\n\n\"Charley,\" said I, \"take your flowers home, and I will follow you \ndirectly.\"\n\nCharley, with her best curtsy, blushingly tied on her bonnet and \nwent her way.  When she was gone, Lady Dedlock sat down on the seat \nbeside me.\n\nI cannot tell in any words what the state of my mind was when I saw \nin her hand my handkerchief with which I had covered the dead baby.\n\nI looked at her, but I could not see her, I could not hear her, I \ncould not draw my breath.  The beating of my heart was so violent \nand wild that I felt as if my life were breaking from me.  But when \nshe caught me to her breast, kissed me, wept over me, \ncompassionated me, and called me back to myself; when she fell down \non her knees and cried to me, \"Oh, my child, my child, I am your \nwicked and unhappy mother!  Oh, try to forgive me!\"--when I saw her \nat my feet on the bare earth in her great agony of mind, I felt, \nthrough all my tumult of emotion, a burst of gratitude to the \nprovidence of God that I was so changed as that I never could \ndisgrace her by any trace of likeness, as that nobody could ever \nnow look at me and look at her and remotely think of any near tie \nbetween us.\n\nI raised my mother up, praying and beseeching her not to stoop \nbefore me in such affliction and humiliation.  I did so in broken, \nincoherent words, for besides the trouble I was in, it frightened \nme to see her at MY feet.  I told her--or I tried to tell her--that \nif it were for me, her child, under any circumstances to take upon \nme to forgive her, I did it, and had done it, many, many years.  I \ntold her that my heart overflowed with love for her, that it was \nnatural love which nothing in the past had changed or could change.  \nThat it was not for me, then resting for the first time on my \nmother's bosom, to take her to account for having given me life, \nbut that my duty was to bless her and receive her, though the whole \nworld turned from her, and that I only asked her leave to do it.  I \nheld my mother in my embrace, and she held me in hers, and among \nthe still woods in the silence of the summer day there seemed to be \nnothing but our two troubled minds that was not at peace.\n\n\"To bless and receive me,\" groaned my mother, \"it is far too late.  \nI must travel my dark road alone, and it will lead me where it \nwill.  From day to day, sometimes from hour to hour, I do not see \nthe way before my guilty feet.  This is the earthly punishment I \nhave brought upon myself.  I bear it, and I hide it.\"\n\nEven in the thinking of her endurance, she drew her habitual air of \nproud indifference about her like a veil, though she soon cast it \noff again.\n\n\"I must keep this secret, if by any means it can be kept, not \nwholly for myself.  I have a husband, wretched and dishonouring \ncreature that I am!\"\n\nThese words she uttered with a suppressed cry of despair, more \nterrible in its sound than any shriek.  Covering her face with her \nhands, she shrank down in my embrace as if she were unwilling that \nI should touch her; nor could I, by my utmost persuasions or by any \nendearments I could use, prevail upon her to rise.  She said, no, \nno, no, she could only speak to me so; she must be proud and \ndisdainful everywhere else; she would be humbled and ashamed there, \nin the only natural moments of her life.\n\nMy unhappy mother told me that in my illness she had been nearly \nfrantic.  She had but then known that her child was living.  She \ncould not have suspected me to be that child before.  She had \nfollowed me down here to speak to me but once in all her life.  We \nnever could associate, never could communicate, never probably from \nthat time forth could interchange another word on earth.  She put \ninto my hands a letter she had written for my reading only and said \nwhen I had read it and destroyed it--but not so much for her sake, \nsince she asked nothing, as for her husband's and my own--I must \nevermore consider her as dead.  If I could believe that she loved \nme, in this agony in which I saw her, with a mother's love, she \nasked me to do that, for then I might think of her with a greater \npity, imagining what she suffered.  She had put herself beyond all \nhope and beyond all help.  Whether she preserved her secret until \ndeath or it came to be discovered and she brought dishonour and \ndisgrace upon the name she had taken, it was her solitary struggle \nalways; and no affection could come near her, and no human creature \ncould render her any aid.\n\n\"But is the secret safe so far?\" I asked.  \"Is it safe now, dearest \nmother?\"\n\n\"No,\" replied my mother.  \"It has been very near discovery.  It was \nsaved by an accident.  It may be lost by another accident--to-\nmorrow, any day.\"\n\n\"Do you dread a particular person?\"\n\n\"Hush!  Do not tremble and cry so much for me.  I am not worthy of \nthese tears,\" said my mother, kissing my hands.  \"I dread one \nperson very much.\"\n\n\"An enemy?\"\n\n\"Not a friend.  One who is too passionless to be either.  He is Sir \nLeicester Dedlock's lawyer, mechanically faithful without \nattachment, and very jealous of the profit, privilege, and \nreputation of being master of the mysteries of great houses.\"\n\n\"Has he any suspicions?\"\n\n\"Many.\"\n\n\"Not of you?\" I said alarmed.\n\n\"Yes!  He is always vigilant and always near me.  I may keep him at \na standstill, but I can never shake him off.\"\n\n\"Has he so little pity or compunction?\"\n\n\"He has none, and no anger.  He is indifferent to everything but \nhis calling.  His calling is the acquisition of secrets and the \nholding possession of such power as they give him, with no sharer \nor opponent in it.\"\n\n\"Could you trust in him?\"\n\n\"I shall never try.  The dark road I have trodden for so many years \nwill end where it will.  I follow it alone to the end, whatever the \nend be.  It may be near, it may be distant; while the road lasts, \nnothing turns me.\"\n\n\"Dear mother, are you so resolved?\"\n\n\"I AM resolved.  I have long outbidden folly with folly, pride with \npride, scorn with scorn, insolence with insolence, and have \noutlived many vanities with many more.  I will outlive this danger, \nand outdie it, if I can.  It has closed around me almost as awfully \nas if these woods of Chesney Wold had closed around the house, but \nmy course through it is the same.  I have but one; I can have but \none.\"\n\n\"Mr. Jarndyce--\"  I was beginning when my mother hurriedly \ninquired, \"Does HE suspect?\"\n\n\"No,\" said I.  \"No, indeed!  Be assured that he does not!\"  And I \ntold her what he had related to me as his knowledge of my story.  \n\"But he is so good and sensible,\" said I, \"that perhaps if he knew--\"\n\nMy mother, who until this time had made no change in her position, \nraised her hand up to my lips and stopped me.\n\n\"Confide fully in him,\" she said after a little while.  \"You have \nmy free consent--a small gift from such a mother to her injured \nchild!- -but do not tell me of it.  Some pride is left in me even \nyet.\"\n\nI explained, as nearly as I could then, or can recall now--for my \nagitation and distress throughout were so great that I scarcely \nunderstood myself, though every word that was uttered in the \nmother's voice, so unfamiliar and so melancholy to me, which in my \nchildhood I had never learned to love and recognize, had never been \nsung to sleep with, had never heard a blessing from, had never had \na hope inspired by, made an enduring impression on my memory--I say \nI explained, or tried to do it, how I had only hoped that Mr. \nJarndyce, who had been the best of fathers to me, might be able to \nafford some counsel and support to her.  But my mother answered no, \nit was impossible; no one could help her.  Through the desert that \nlay before her, she must go alone.\n\n\"My child, my child!\" she said.  \"For the last time!  These kisses \nfor the last time!  These arms upon my neck for the last time!  We \nshall meet no more.  To hope to do what I seek to do, I must be \nwhat I have been so long.  Such is my reward and doom.  If you hear \nof Lady Dedlock, brilliant, prosperous, and flattered, think of \nyour wretched mother, conscience-stricken, underneath that mask!  \nThink that the reality is in her suffering, in her useless remorse, \nin her murdering within her breast the only love and truth of which \nit is capable!  And then forgive her if you can, and cry to heaven \nto forgive her, which it never can!\"\n\nWe held one another for a little space yet, but she was so firm \nthat she took my hands away, and put them back against my breast, \nand with a last kiss as she held them there, released them, and \nwent from me into the wood.  I was alone, and calm and quiet below \nme in the sun and shade lay the old house, with its terraces and \nturrets, on which there had seemed to me to be such complete repose \nwhen I first saw it, but which now looked like the obdurate and \nunpitying watcher of my mother's misery.\n\nStunned as I was, as weak and helpless at first as I had ever been \nin my sick chamber, the necessity of guarding against the danger of \ndiscovery, or even of the remotest suspicion, did me service.  I \ntook such precautions as I could to hide from Charley that I had \nbeen crying, and I constrained myself to think of every sacred \nobligation that there was upon me to be careful and collected.  It \nwas not a little while before I could succeed or could even \nrestrain bursts of grief, but after an hour or so I was better and \nfelt that I might return.  I went home very slowly and told \nCharley, whom I found at the gate looking for me, that I had been \ntempted to extend my walk after Lady Dedlock had left me and that I \nwas over-tired and would lie down.  Safe in my own room, I read the \nletter.  I clearly derived from it--and that was much then--that I \nhad not been abandoned by my mother.  Her elder and only sister, \nthe godmother of my childhood, discovering signs of life in me when \nI had been laid aside as dead, had in her stern sense of duty, with \nno desire or willingness that I should live, reared me in rigid \nsecrecy and had never again beheld my mother's face from within a \nfew hours of my birth.  So strangely did I hold my place in this \nworld that until within a short time back I had never, to my own \nmother's knowledge, breathed--had been buried--had never been \nendowed with life--had never borne a name.  When she had first seen \nme in the church she had been startled and had thought of what \nwould have been like me if it had ever lived, and had lived on, but \nthat was all then.\n\nWhat more the letter told me needs not to be repeated here.  It has \nits own times and places in my story.\n\nMy first care was to burn what my mother had written and to consume \neven its ashes.  I hope it may not appear very unnatural or bad in \nme that I then became heavily sorrowful to think I had ever been \nreared.  That I felt as if I knew it would have been better and \nhappier for many people if indeed I had never breathed.  That I had \na terror of myself as the danger and the possible disgrace of my \nown mother and of a proud family name.  That I was so confused and \nshaken as to be possessed by a belief that it was right and had \nbeen intended that I should die in my birth, and that it was wrong \nand not intended that I should be then alive.\n\nThese are the real feelings that I had.  I fell asleep worn out, \nand when I awoke I cried afresh to think that I was back in the \nworld with my load of trouble for others.  I was more than ever \nfrightened of myself, thinking anew of her against whom I was a \nwitness, of the owner of Chesney Wold, of the new and terrible \nmeaning of the old words now moaning in my ear like a surge upon \nthe shore, \"Your mother, Esther, was your disgrace, and you are \nhers.  The time will come--and soon enough--when you will \nunderstand this better, and will feel it too, as no one save a \nwoman can.\"  With them, those other words returned, \"Pray daily \nthat the sins of others be not visited upon your head.\"  I could \nnot disentangle all that was about me, and I felt as if the blame \nand the shame were all in me, and the visitation had come down.\n\nThe day waned into a gloomy evening, overcast and sad, and I still \ncontended with the same distress.  I went out alone, and after \nwalking a little in the park, watching the dark shades falling on \nthe trees and the fitful flight of the bats, which sometimes almost \ntouched me, was attracted to the house for the first time.  Perhaps \nI might not have gone near it if I had been in a stronger frame of \nmind.  As it was, I took the path that led close by it.\n\nI did not dare to linger or to look up, but I passed before the \nterrace garden with its fragrant odours, and its broad walks, and \nits well-kept beds and smooth turf; and I saw how beautiful and \ngrave it was, and how the old stone balustrades and parapets, and \nwide flights of shallow steps, were seamed by time and weather; and \nhow the trained moss and ivy grew about them, and around the old \nstone pedestal of the sun-dial; and I heard the fountain falling.  \nThen the way went by long lines of dark windows diversified by \nturreted towers and porches of eccentric shapes, where old stone \nlions and grotesque monsters bristled outside dens of shadow and \nsnarled at the evening gloom over the escutcheons they held in \ntheir grip.  Thence the path wound underneath a gateway, and \nthrough a court-yard where the principal entrance was (I hurried \nquickly on), and by the stables where none but deep voices seemed \nto be, whether in the murmuring of the wind through the strong mass \nof ivy holding to a high red wall, or in the low complaining of the \nweathercock, or in the barking of the dogs, or in the slow striking \nof a clock.  So, encountering presently a sweet smell of limes, \nwhose rustling I could hear, I turned with the turning of the path \nto the south front, and there above me were the balustrades of the \nGhost's Walk and one lighted window that might be my mother's.\n\nThe way was paved here, like the terrace overhead, and my footsteps \nfrom being noiseless made an echoing sound upon the flags.  \nStopping to look at nothing, but seeing all I did see as I went, I \nwas passing quickly on, and in a few moments should have passed the \nlighted window, when my echoing footsteps brought it suddenly into \nmy mind that there was a dreadful truth in the legend of the \nGhost's Walk, that it was I who was to bring calamity upon the \nstately house and that my warning feet were haunting it even then.  \nSeized with an augmented terror of myself which turned me cold, I \nran from myself and everything, retraced the way by which I had \ncome, and never paused until I had gained the lodge-gate, and the \npark lay sullen and black behind me.\n\nNot before I was alone in my own room for the night and had again \nbeen dejected and unhappy there did I begin to know how wrong and \nthankless this state was.  But from my darling who was coming on \nthe morrow, I found a joyful letter, full of such loving \nanticipation that I must have been of marble if it had not moved \nme; from my guardian, too, I found another letter, asking me to \ntell Dame Durden, if I should see that little woman anywhere, that \nthey had moped most pitiably without her, that the housekeeping was \ngoing to rack and ruin, that nobody else could manage the keys, and \nthat everybody in and about the house declared it was not the same \nhouse and was becoming rebellious for her return.  Two such letters \ntogether made me think how far beyond my deserts I was beloved and \nhow happy I ought to be.  That made me think of all my past life; \nand that brought me, as it ought to have done before, into a better \ncondition.\n\nFor I saw very well that I could not have been intended to die, or \nI should never have lived; not to say should never have been \nreserved for such a happy life.  I saw very well how many things \nhad worked together for my welfare, and that if the sins of the \nfathers were sometimes visited upon the children, the phrase did \nnot mean what I had in the morning feared it meant.  I knew I was \nas innocent of my birth as a queen of hers and that before my \nHeavenly Father I should not be punished for birth nor a queen \nrewarded for it.  I had had experience, in the shock of that very \nday, that I could, even thus soon, find comforting reconcilements \nto the change that had fallen on me.  I renewed my resolutions and \nprayed to be strengthened in them, pouring out my heart for myself \nand for my unhappy mother and feeling that the darkness of the \nmorning was passing away.  It was not upon my sleep; and when the \nnext day's light awoke me, it was gone.\n\nMy dear girl was to arrive at five o'clock in the afternoon.  How \nto help myself through the intermediate time better than by taking \na long walk along the road by which she was to come, I did not \nknow; so Charley and I and Stubbs--Stubbs saddled, for we never \ndrove him after the one great occasion--made a long expedition \nalong that road and back.  On our return, we held a great review of \nthe house and garden and saw that everything was in its prettiest \ncondition, and had the bird out ready as an important part of the \nestablishment.\n\nThere were more than two full hours yet to elapse before she could \ncome, and in that interval, which seemed a long one, I must confess \nI was nervously anxious about my altered looks.  I loved my darling \nso well that I was more concerned for their effect on her than on \nany one.  I was not in this slight distress because I at all \nrepined--I am quite certain I did not, that day--but, I thought, \nwould she be wholly prepared?  When she first saw me, might she not \nbe a little shocked and disappointed?  Might it not prove a little \nworse than she expected?  Might she not look for her old Esther and \nnot find her?  Might she not have to grow used to me and to begin \nall over again?\n\nI knew the various expressions of my sweet girl's face so well, and \nit was such an honest face in its loveliness, that I was sure \nbeforehand she could not hide that first look from me.  And I \nconsidered whether, if it should signify any one of these meanings, \nwhich was so very likely, could I quite answer for myself?\n\nWell, I thought I could.  After last night, I thought I could.  But \nto wait and wait, and expect and expect, and think and think, was \nsuch bad preparation that I resolved to go along the road again and \nmeet her.\n\nSo I said to Charley, '\"Charley, I will go by myself and walk along \nthe road until she comes.\"  Charley highly approving of anything \nthat pleased me, I went and left her at home.\n\nBut before I got to the second milestone, I had been in so many \npalpitations from seeing dust in the distance (though I knew it was \nnot, and could not, be the coach yet) that I resolved to turn back \nand go home again.  And when I had turned, I was in such fear of \nthe coach coming up behind me (though I still knew that it neither \nwould, nor could, do any such thing) that I ran the greater part of \nthe way to avoid being overtaken.\n\nThen, I considered, when I had got safe back again, this was a nice \nthing to have done!  Now I was hot and had made the worst of it \ninstead of the best.\n\nAt last, when I believed there was at least a quarter of an hour \nmore yet, Charley all at once cried out to me as I was trembling in \nthe garden, \"Here she comes, miss!  Here she is!\"\n\nI did not mean to do it, but I ran upstairs into my room and hid \nmyself behind the door.  There I stood trembling, even when I heard \nmy darling calling as she came upstairs, \"Esther, my dear, my love, \nwhere are you?  Little woman, dear Dame Durden!\"\n\nShe ran in, and was running out again when she saw me.  Ah, my \nangel girl!  The old dear look, all love, all fondness, all \naffection.  Nothing else in it--no, nothing, nothing!\n\nOh, how happy I was, down upon the floor, with my sweet beautiful \ngirl down upon the floor too, holding my scarred face to her lovely \ncheek, bathing it with tears and kisses, rocking me to and fro like \na child, calling me by every tender name that she could think of, \nand pressing me to her faithful heart.\n\n\n\nCHAPTER XXXVII\n\nJarndyce and Jarndyce\n\n\nIf the secret I had to keep had been mine, I must have confided it \nto Ada before we had been long together.  But it was not mine, and \nI did not feel that I had a right to tell it, even to my guardian, \nunless some great emergency arose.  It was a weight to bear alone; \nstill my present duty appeared to be plain, and blest in the \nattachment of my dear, I did not want an impulse and encouragement \nto do it.  Though often when she was asleep and all was quiet, the \nremembrance of my mother kept me waking and made the night \nsorrowful, I did not yield to it at another time; and Ada found me \nwhat I used to be--except, of course, in that particular of which I \nhave said enough and which I have no intention of mentioning any \nmore just now, if I can help it.\n\nThe difficulty that I felt in being quite composed that first \nevening when Ada asked me, over our work, if the family were at the \nhouse, and when I was obliged to answer yes, I believed so, for \nLady Dedlock had spoken to me in the woods the day before \nyesterday, was great.  Greater still when Ada asked me what she had \nsaid, and when I replied that she had been kind and interested, and \nwhen Ada, while admitting her beauty and elegance, remarked upon \nher proud manner and her imperious chilling air.  But Charley \nhelped me through, unconsciously, by telling us that Lady Dedlock \nhad only stayed at the house two nights on her way from London to \nvisit at some other great house in the next county and that she had \nleft early on the morning after we had seen her at our view, as we \ncalled it.  Charley verified the adage about little pitchers, I am \nsure, for she heard of more sayings and doings in a day than would \nhave come to my ears in a month.\n\nWe were to stay a month at Mr. Boythorn's.  My pet had scarcely \nbeen there a bright week, as I recollect the time, when one evening \nafter we had finished helping the gardener in watering his flowers, \nand just as the candles were lighted, Charley, appearing with a \nvery important air behind Ada's chair, beckoned me mysteriously out \nof the room.\n\n\"Oh! If you please, miss,\" said Charley in a whisper, with her eyes \nat their roundest and largest.  \"You're wanted at the Dedlock \nArms.\"\n\n\"Why, Charley,\" said I, \"who can possibly want me at the public-\nhouse?\"\n\n\"I don't know, miss,\" returned Charley, putting her head forward \nand folding her hands tight upon the band of her little apron, \nwhich she always did in the enjoyment of anything mysterious or \nconfidential, \"but it's a gentleman, miss, and his compliments, and \nwill you please to come without saying anything about it.\"\n\n\"Whose compliments, Charley?\"\n\n\"His'n, miss,\" returned Charley, whose grammatical education was \nadvancing, but not very rapidly.\n\n\"And how do you come to be the messenger, Charley?\"\n\n\"I am not the messenger, if you please, miss,\" returned my little \nmaid.  \"It was W. Grubble, miss.\"\n\n\"And who is W. Grubble, Charley?\"\n\n\"Mister Grubble, miss,\" returned Charley.  \"Don't you know, miss?  \nThe Dedlock Arms, by W. Grubble,\" which Charley delivered as if she \nwere slowly spelling out the sign.\n\n\"Aye?  The landlord, Charley?\"\n\n\"Yes, miss.  If you please, miss, his wife is a beautiful woman, \nbut she broke her ankle, and it never joined.  And her brother's \nthe sawyer that was put in the cage, miss, and they expect he'll \ndrink himself to death entirely on beer,\" said Charley.\n\nNot knowing what might be the matter, and being easily apprehensive \nnow, I thought it best to go to this place by myself.  I bade \nCharley be quick with my bonnet and veil and my shawl, and having \nput them on, went away down the little hilly street, where I was as \nmuch at home as in Mr. Boythorn's garden.\n\nMr. Grubble was standing in his shirt-sleeves at the door of his \nvery clean little tavern waiting for me.  He lifted off his hat \nwith both hands when he saw me coming, and carrying it so, as if it \nwere an iron vessel (it looked as heavy), preceded me along the \nsanded passage to his best parlour, a neat carpeted room with more \nplants in it than were quite convenient, a coloured print of Queen \nCaroline, several shells, a good many tea-trays, two stuffed and \ndried fish in glass cases, and either a curious egg or a curious \npumpkin (but I don't know which, and I doubt if many people did) \nhanging from his ceiling.  I knew Mr. Grubble very well by sight, \nfrom his often standing at his door.  A pleasant-looking, stoutish, \nmiddle-aged man who never seemed to consider himself cozily dressed \nfor his own fire-side without his hat and top-boots, but who never \nwore a coat except at church.\n\nHe snuffed the candle, and backing away a little to see how it \nlooked, backed out of the room--unexpectedly to me, for I was going \nto ask him by whom he had been sent.  The door of the opposite \nparlour being then opened, I heard some voices, familiar in my ears \nI thought, which stopped.  A quick light step approached the room \nin which I was, and who should stand before me but Richard!\n\n\"My dear Esther!\" he said.  \"My best friend!\"  And he really was so \nwarm-hearted and earnest that in the first surprise and pleasure of \nhis brotherly greeting I could scarcely find breath to tell him \nthat Ada was well.\n\n\"Answering my very thoughts--always the same dear girl!\" said \nRichard, leading me to a chair and seating himself beside me.\n\nI put my veil up, but not quite.\n\n\"Always the same dear girl!\" said Richard just as heartily as \nbefore.\n\nI put up my veil altogether, and laying my hand on Richard's sleeve \nand looking in his face, told him how much I thanked him for his \nkind welcome and how greatly I rejoiced to see him, the more so \nbecause of the determination I had made in my illness, which I now \nconveyed to him.\n\n\"My love,\" said Richard, \"there is no one with whom I have a \ngreater wish to talk than you, for I want you to understand me.\"\n\n\"And I want you, Richard,\" said I, shaking my head, \"to understand \nsome one else.\"\n\n\"Since you refer so immediately to John Jarndyce,\" said Richard, \"\n--I suppose you mean him?\"\n\n\"Of course I do.\"\n\n\"Then I may say at once that I am glad of it, because it is on that \nsubject that I am anxious to be understood.  By you, mind--you, my \ndear!  I am not accountable to Mr. Jarndyce or Mr. Anybody.\"\n\nI was pained to find him taking this tone, and he observed it.\n\n\"Well, well, my dear,\" said Richard, \"we won't go into that now.  I \nwant to appear quietly in your country-house here, with you under \nmy arm, and give my charming cousin a surprise.  I suppose your \nloyalty to John Jarndyce will allow that?\"\n\n\"My dear Richard,\" I returned, \"you know you would be heartily \nwelcome at his house--your home, if you will but consider it so; \nand you are as heartily welcome here!\"\n\n\"Spoken like the best of little women!\" cried Richard gaily.\n\nI asked him how he liked his profession.\n\n\"Oh, I like it well enough!\" said Richard.  \"It's all right.  It \ndoes as well as anything else, for a time.  I don't know that I \nshall care about it when I come to be settled, but I can sell out \nthen and--however, never mind all that botheration at present.\"\n\nSo young and handsome, and in all respects so perfectly the \nopposite of Miss Flite!  And yet, in the clouded, eager, seeking \nlook that passed over him, so dreadfully like her!\n\n\"I am in town on leave just now,\" said Richard.\n\n\"Indeed?\"\n\n\"Yes.  I have run over to look after my--my Chancery interests \nbefore the long vacation,\" said Richard, forcing a careless laugh.  \n\"We are beginning to spin along with that old suit at last, I \npromise you.\"\n\nNo wonder that I shook my head!\n\n\"As you say, it's not a pleasant subject.\"  Richard spoke with the \nsame shade crossing his face as before.  \"Let it go to the four \nwinds for to-night.  Puff!  Gone!  Who do you suppose is with me?\"\n\n\"Was it Mr. Skimpole's voice I heard?\"\n\n\"That's the man!  He does me more good than anybody.  What a \nfascinating child it is!\"\n\nI asked Richard if any one knew of their coming down together.  He \nanswered, no, nobody.  He had been to call upon the dear old \ninfant--so he called Mr. Skimpole--and the dear old infant had told \nhim where we were, and he had told the dear old infant he was bent \non coming to see us, and the dear old infant had directly wanted to \ncome too; and so he had brought him.  \"And he is worth--not to say \nhis sordid expenses--but thrice his weight in gold,\" said Richard.  \n\"He is such a cheery fellow.  No worldliness about him.  Fresh and \ngreen-hearted!\"\n\nI certainly did not see the proof of Mr. Skimpole's worldliness in \nhis having his expenses paid by Richard, but I made no remark about \nthat.  Indeed, he came in and turned our conversation.  He was \ncharmed to see me, said he had been shedding delicious tears of joy \nand sympathy at intervals for six weeks on my account, had never \nbeen so happy as in hearing of my progress, began to understand the \nmixture of good and evil in the world now, felt that he appreciated \nhealth the more when somebody else was ill, didn't know but what it \nmight be in the scheme of things that A should squint to make B \nhappier in looking straight or that C should carry a wooden leg to \nmake D better satisfied with his flesh and blood in a silk \nstocking.\n\n\"My dear Miss Summerson, here is our friend Richard,\" said Mr. \nSkimpole, \"full of the brightest visions of the future, which he \nevokes out of the darkness of Chancery.  Now that's delightful, \nthat's inspiriting, that's full of poetry!  In old times the woods \nand solitudes were made joyous to the shepherd by the imaginary \npiping and dancing of Pan and the nymphs.  This present shepherd, \nour pastoral Richard, brightens the dull Inns of Court by making \nFortune and her train sport through them to the melodious notes of \na judgment from the bench.  That's very pleasant, you know!  Some \nill-conditioned growling fellow may say to me, 'What's the use of \nthese legal and equitable abuses?  How do you defend them?'  I \nreply, 'My growling friend, I DON'T defend them, but they are very \nagreeable to me.  There is a shepherd--youth, a friend of mine, who \ntransmutes them into something highly fascinating to my simplicity.  \nI don't say it is for this that they exist--for I am a child among \nyou worldly grumblers, and not called upon to account to you or \nmyself for anything--but it may be so.'\"\n\nI began seriously to think that Richard could scarcely have found a \nworse friend than this.  It made me uneasy that at such a time when \nhe most required some right principle and purpose he should have \nthis captivating looseness and putting-off of everything, this airy \ndispensing with all principle and purpose, at his elbow.  I thought \nI could understand how such a nature as my guardian's, experienced \nin the world and forced to contemplate the miserable evasions and \ncontentions of the family misfortune, found an immense relief in \nMr. Skimpole's avowal of his weaknesses and display of guileless \ncandour; but I could not satisfy myself that it was as artless as \nit seemed or that it did not serve Mr. Skimpole's idle turn quite \nas well as any other part, and with less trouble.\n\nThey both walked back with me, and Mr. Skimpole leaving us at the \ngate, I walked softly in with Richard and said, \"Ada, my love, I \nhave brought a gentleman to visit you.\"  It was not difficult to \nread the blushing, startled face.  She loved him dearly, and he \nknew it, and I knew it.  It was a very transparent business, that \nmeeting as cousins only.\n\nI almost mistrusted myself as growing quite wicked in my \nsuspicions, but I was not so sure that Richard loved her dearly.  \nHe admired her very much--any one must have done that--and I dare \nsay would have renewed their youthful engagement with great pride \nand ardour but that he knew how she would respect her promise to my \nguardian.  Still I had a tormenting idea that the influence upon \nhim extended even here, that he was postponing his best truth and \nearnestness in this as in all things until Jarndyce and Jarndyce \nshould be off his mind.  Ah me!  What Richard would have been \nwithout that blight, I never shall know now!\n\nHe told Ada, in his most ingenuous way, that he had not come to \nmake any secret inroad on the terms she had accepted (rather too \nimplicitly and confidingly, he thought) from Mr. Jarndyce, that he \nhad come openly to see her and to see me and to justify himself for \nthe present terms on which he stood with Mr. Jarndyce.  As the dear \nold infant would be with us directly, he begged that I would make \nan appointment for the morning, when he might set himself right \nthrough the means of an unreserved conversation with me.  I \nproposed to walk with him in the park at seven o'clock, and this \nwas arranged.  Mr. Skimpole soon afterwards appeared and made us \nmerry for an hour.  He particularly requested to see little \nCoavinses (meaning Charley) and told her, with a patriarchal air, \nthat he had given her late father all the business in his power and \nthat if one of her little brothers would make haste to get set up \nin the same profession, he hoped he should still be able to put a \ngood deal of employment in his way.\n\n\"For I am constantly being taken in these nets,\" said Mr. Skimpole, \nlooking beamingly at us over a glass of wine-and-water, \"and am \nconstantly being bailed out--like a boat.  Or paid off--like a \nship's company.  Somebody always does it for me.  I can't do it, \nyou know, for I never have any money.  But somebody does it.  I get \nout by somebody's means; I am not like the starling; I get out.  If \nyou were to ask me who somebody is, upon my word I couldn't tell \nyou.  Let us drink to somebody.  God bless him!\"\n\nRichard was a little late in the morning, but I had not to wait for \nhim long, and we turned into the park.  The air was bright and dewy \nand the sky without a cloud.  The birds sang delightfully; the \nsparkles in the fern, the grass, and trees, were exquisite to see; \nthe richness of the woods seemed to have increased twenty-fold \nsince yesterday, as if, in the still night when they had looked so \nmassively hushed in sleep, Nature, through all the minute details \nof every wonderful leaf, had been more wakeful than usual for the \nglory of that day.\n\n\"This is a lovely place,\" said Richard, looking round.  \"None of \nthe jar and discord of law-suits here!\"\n\nBut there was other trouble.\n\n\"I tell you what, my dear girl,\" said Richard, \"when I get affairs \nin general settled, I shall come down here, I think, and rest.\"\n\n\"Would it not be better to rest now?\" I asked.\n\n\"Oh, as to resting NOW,\" said Richard, \"or as to doing anything \nvery definite NOW, that's not easy.  In short, it can't be done; I \ncan't do it at least.\"\n\n\"Why not?\" said I.\n\n\"You know why not, Esther.  If you were living in an unfinished \nhouse, liable to have the roof put on or taken off--to be from top \nto bottom pulled down or built up--to-morrow, next day, next week, \nnext month, next year--you would find it hard to rest or settle.  \nSo do I.  Now?  There's no now for us suitors.\"\n\nI could almost have believed in the attraction on which my poor \nlittle wandering friend had expatiated when I saw again the \ndarkened look of last night.  Terrible to think it bad in it also a \nshade of that unfortunate man who had died.\n\n\"My dear Richard,\" said I, \"this is a bad beginning of our \nconversation.\"\n\n\"I knew you would tell me so, Dame Durden.\"\n\n\"And not I alone, dear Richard.  It was not I who cautioned you \nonce never to found a hope or expectation on the family curse.\"\n\n\"There you come back to John Jarndyce!\" said Richard impatiently.  \n\"Well! We must approach him sooner or later, for he is the staple \nof what I have to say, and it's as well at once.  My dear Esther, \nhow can you be so blind?  Don't you see that he is an interested \nparty and that it may be very well for him to wish me to know \nnothing of the suit, and care nothing about it, but that it may not \nbe quite so well for me?\"\n\n\"Oh, Richard,\" I remonstrated, \"is it possible that you can ever \nhave seen him and heard him, that you can ever have lived under his \nroof and known him, and can yet breathe, even to me in this \nsolitary place where there is no one to hear us, such unworthy \nsuspicions?\"\n\nHe reddened deeply, as if his natural generosity felt a pang of \nreproach.  He was silent for a little while before he replied in a \nsubdued voice, \"Esther, I am sure you know that I am not a mean \nfellow and that I have some sense of suspicion and distrust being \npoor qualities in one of my years.\"\n\n\"I know it very well,\" said I.  \"I am not more sure of anything.\"\n\n\"That's a dear girl,\" retorted Richard, \"and like you, because it \ngives me comfort.  I had need to get some scrap of comfort out of \nall this business, for it's a bad one at the best, as I have no \noccasion to tell you.\"\n\n\"I know perfectly,\" said I.  \"I know as well, Richard--what shall I \nsay? as well as you do--that such misconstructions are foreign to \nyour nature.  And I know, as well as you know, what so changes it.\"\n\n\"Come, sister, come,\" said Richard a little more gaily, \"you will \nbe fair with me at all events.  If I have the misfortune to be \nunder that influence, so has he.  If it has a little twisted me, it \nmay have a little twisted him too.  I don't say that he is not an \nhonourable man, out of all this complication and uncertainty; I am \nsure he is.  But it taints everybody.  You know it taints \neverybody.  You have heard him say so fifty times.  Then why should \nHE escape?\"\n\n\"Because,\" said I, \"his is an uncommon character, and he has \nresolutely kept himself outside the circle, Richard.\"\n\n\"Oh, because and because!\" replied Richard in his vivacious way.  \n\"I am not sure, my dear girl, but that it may be wise and specious \nto preserve that outward indifference.  It may cause other parties \ninterested to become lax about their interests; and people may die \noff, and points may drag themselves out of memory, and many things \nmay smoothly happen that are convenient enough.\"\n\nI was so touched with pity for Richard that I could not reproach \nhim any more, even by a look.  I remembered my guardian's \ngentleness towards his errors and with what perfect freedom from \nresentment he had spoken of them.\n\n\"Esther,\" Richard resumed, \"you are not to suppose that I have come \nhere to make underhanded charges against John Jarndyce.  I have \nonly come to justify myself.  What I say is, it was all very well \nand we got on very well while I was a boy, utterly regardless of \nthis same suit; but as soon as I began to take an interest in it \nand to look into it, then it was quite another thing.  Then John \nJarndyce discovers that Ada and I must break off and that if I \ndon't amend that very objectionable course, I am not fit for her.  \nNow, Esther, I don't mean to amend that very objectionable course: \nI will not hold John Jarndyce's favour on those unfair terms of \ncompromise, which he has no right to dictate.  Whether it pleases \nhim or displeases him, I must maintain my rights and Ada's.  I have \nbeen thinking about it a good deal, and this is the conclusion I \nhave come to.\"\n\nPoor dear Richard!  He had indeed been thinking about it a good \ndeal.  His face, his voice, his manner, all showed that too \nplainly.\n\n\"So I tell him honourably (you are to know I have written to him \nabout all this) that we are at issue and that we had better be at \nissue openly than covertly.  I thank him for his goodwill and his \nprotection, and he goes his road, and I go mine.  The fact is, our \nroads are not the same.  Under one of the wills in dispute, I \nshould take much more than he.  I don't mean to say that it is the \none to be established, but there it is, and it has its chance.\"\n\n\"I have not to learn from you, my dear Richard,\" said I, \"of your \nletter.  I had heard of it already without an offended or angry \nword.\"\n\n\"Indeed?\" replied Richard, softening.  \"I am glad I said he was an \nhonourable man, out of all this wretched affair.  But I always say \nthat and have never doubted it.  Now, my dear Esther, I know these \nviews of mine appear extremely harsh to you, and will to Ada when \nyou tell her what has passed between us.  But if you had gone into \nthe case as I have, if you had only applied yourself to the papers \nas I did when I was at Kenge's, if you only knew what an \naccumulation of charges and counter-charges, and suspicions and \ncross-suspicions, they involve, you would think me moderate in \ncomparison.\"\n\n\"Perhaps so,\" said I.  \"But do you think that, among those many \npapers, there is much truth and justice, Richard?\"\n\n\"There is truth and justice somewhere in the case, Esther--\"\n\n\"Or was once, long ago,\" said I.\n\n\"Is--is--must be somewhere,\" pursued Richard impetuously, \"and must \nbe brought out.  To allow Ada to be made a bribe and hush-money of \nis not the way to bring it out.  You say the suit is changing me; \nJohn Jarndyce says it changes, has changed, and will change \neverybody who has any share in it.  Then the greater right I have \non my side when I resolve to do all I can to bring it to an end.\"\n\n\"All you can, Richard!  Do you think that in these many years no \nothers have done all they could?  Has the difficulty grown easier \nbecause of so many failures?\"\n\n\"It can't last for ever,\" returned Richard with a fierceness \nkindling in him which again presented to me that last sad reminder.  \n\"I am young and earnest, and energy and determination have done \nwonders many a time.  Others have only half thrown themselves into \nit.  I devote myself to it.  I make it the object of my life.\"\n\n\"Oh, Richard, my dear, so much the worse, so much the worse!\"\n\n\"No, no, no, don't you be afraid for me,\" he returned \naffectionately.  \"You're a dear, good, wise, quiet, blessed girl; \nbut you have your prepossessions.  So I come round to John \nJarndyce.  I tell you, my good Esther, when he and I were on those \nterms which he found so convenient, we were not on natural terms.\"\n\n\"Are division and animosity your natural terms, Richard?\"\n\n\"No, I don't say that.  I mean that all this business puts us on \nunnatural terms, with which natural relations are incompatible.  \nSee another reason for urging it on!  I may find out when it's over \nthat I have been mistaken in John Jarndyce.  My head may be clearer \nwhen I am free of it, and I may then agree with what you say to-\nday.  Very well.  Then I shall acknowledge it and make him \nreparation.\"\n\nEverything postponed to that imaginary time!  Everything held in \nconfusion and indecision until then!\n\n\"Now, my best of confidantes,\" said Richard, \"I want my cousin Ada \nto understand that I am not captious, fickle, and wilful about John \nJarndyce, but that I have this purpose and reason at my back.  I \nwish to represent myself to her through you, because she has a \ngreat esteem and respect for her cousin John; and I know you will \nsoften the course I take, even though you disapprove of it; and--\nand in short,\" said Richard, who had been hesitating through these \nwords, \"I--I don't like to represent myself in this litigious, \ncontentious, doubting character to a confiding girl like Ada,\"\n\nI told him that he was more like himself in those latter words than \nin anything he had said yet.\n\n\"Why,\" acknowledged Richard, \"that may be true enough, my love.  I \nrather feel it to be so.  But I shall be able to give myself fair-\nplay by and by.  I shall come all right again, then, don't you be \nafraid.\"\n\nI asked him if this were all he wished me to tell Ada.\n\n\"Not quite,\" said Richard.  \"I am bound not to withhold from her \nthat John Jarndyce answered my letter in his usual manner, \naddressing me as 'My dear Rick,' trying to argue me out of my \nopinions, and telling me that they should make no difference in \nhim.  (All very well of course, but not altering the case.)  I also \nwant Ada to know that if I see her seldom just now, I am looking \nafter her interests as well as my own--we two being in the same \nboat exactly--and that I hope she will not suppose from any flying \nrumours she may hear that I am at all light-headed or imprudent; on \nthe contrary, I am always looking forward to the termination of the \nsuit, and always planning in that direction.  Being of age now and \nhaving taken the step I have taken, I consider myself free from any \naccountability to John Jarndyce; but Ada being still a ward of the \ncourt, I don't yet ask her to renew our engagement.  When she is \nfree to act for herself, I shall be myself once more and we shall \nboth be in very different worldly circumstances, I believe.  If you \ntell her all this with the advantage of your considerate way, you \nwill do me a very great and a very kind service, my dear Esther; \nand I shall knock Jarndyce and Jarndyce on the head with greater \nvigour.  Of course I ask for no secrecy at Bleak House.\"\n\n\"Richard,\" said I, \"you place great confidence in me, but I fear \nyou will not take advice from me?\"\n\n\"It's impossible that I can on this subject, my dear girl.  On any \nother, readily.\"\n\nAs if there were any other in his life!  As if his whole career and \ncharacter were not being dyed one colour!\n\n\"But I may ask you a question, Richard?\"\n\n\"I think so,\" said he, laughing.  \"I don't know who may not, if you \nmay not.\"\n\n\"You say, yourself, you are not leading a very settled life.\"\n\n\"How can I, my dear Esther, with nothing settled!\"\n\n\"Are you in debt again?\"\n\n\"Why, of course I am,\" said Richard, astonished at my simplicity.\n\n\"Is it of course?\"\n\n\"My dear child, certainly.  I can't throw myself into an object so \ncompletely without expense.  You forget, or perhaps you don't know, \nthat under either of the wills Ada and I take something.  It's only \na question between the larger sum and the smaller.  I shall be \nwithin the mark any way.  Bless your heart, my excellent girl,\" \nsaid Richard, quite amused with me, \"I shall be all right!  I shall \npull through, my dear!\"\n\nI felt so deeply sensible of the danger in which he stood that I \ntried, in Ada's name, in my guardian's, in my own, by every fervent \nmeans that I could think of, to warn him of it and to show him some \nof his mistakes.  He received everything I said with patience and \ngentleness, but it all rebounded from him without taking the least \neffect.  I could not wonder at this after the reception his \npreoccupied mind had given to my guardian's letter, but I \ndetermined to try Ada's influence yet.\n\nSo when our walk brought us round to the village again, and I went \nhome to breakfast, I prepared Ada for the account I was going to \ngive her and told her exactly what reason we had to dread that \nRichard was losing himself and scattering his whole life to the \nwinds.  It made her very unhappy, of course, though she had a far, \nfar greater reliance on his correcting his errors than I could \nhave--which was so natural and loving in my dear!--and she \npresently wrote him this little letter:\n\n\nMy dearest cousin,\n\nEsther has told me all you said to her this morning.  I write this \nto repeat most earnestly for myself all that she said to you and to \nlet you know how sure I am that you will sooner or later find our \ncousin John a pattern of truth, sincerity, and goodness, when you \nwill deeply, deeply grieve to have done him (without intending it) \nso much wrong.\n\nI do not quite know how to write what I wish to say next, but I \ntrust you will understand it as I mean it.  I have some fears, my \ndearest cousin, that it may be partly for my sake you are now \nlaying up so much unhappiness for yourself--and if for yourself, \nfor me.  In case this should be so, or in case you should entertain \nmuch thought of me in what you are doing, I most earnestly entreat \nand beg you to desist.  You can do nothing for my sake that will \nmake me half so happy as for ever turning your back upon the shadow \nin which we both were born.  Do not be angry with me for saying \nthis.  Pray, pray, dear Richard, for my sake, and for your own, and \nin a natural repugnance for that source of trouble which had its \nshare in making us both orphans when we were very young, pray, \npray, let it go for ever.  We have reason to know by this time that \nthere is no good in it and no hope, that there is nothing to be got \nfrom it but sorrow.\n\nMy dearest cousin, it is needless for me to say that you are quite \nfree and that it is very likely you may find some one whom you will \nlove much better than your first fancy.  I am quite sure, if you \nwill let me say so, that the object of your choice would greatly \nprefer to follow your fortunes far and wide, however moderate or \npoor, and see you happy, doing your duty and pursuing your chosen \nway, than to have the hope of being, or even to be, very rich with \nyou (if such a thing were possible) at the cost of dragging years \nof procrastination and anxiety and of your indifference to other \naims.  You may wonder at my saying this so confidently with so \nlittle knowledge or experience, but I know it for a certainty from \nmy own heart.\n\nEver, my dearest cousin, your most affectionate\n\nAda\n\n\nThis note brought Richard to us very soon, but it made little \nchange in him if any.  We would fairly try, he said, who was right \nand who was wrong--he would show us--we should see!  He was \nanimated and glowing, as if Ada's tenderness had gratified him; but \nI could only hope, with a sigh, that the letter might have some \nstronger effect upon his mind on re-perusal than it assuredly had \nthen.\n\nAs they were to remain with us that day and had taken their places \nto return by the coach next morning, I sought an opportunity of \nspeaking to Mr. Skimpole.  Our out-of-door life easily threw one in \nmy way, and I delicately said that there was a responsibility in \nencouraging Richard.\n\n\"Responsibility, my dear Miss Summerson?\" he repeated, catching at \nthe word with the pleasantest smile.  \"I am the last man in the \nworld for such a thing.  I never was responsible in my life--I \ncan't be.\"\n\n\"I am afraid everybody is obliged to be,\" said I timidly enough, he \nbeing so much older and more clever than I.\n\n\"No, really?\" said Mr. Skimpole, receiving this new light with a \nmost agreeable jocularity of surprise.  \"But every man's not \nobliged to be solvent?  I am not.  I never was.  See, my dear Miss \nSummerson,\" he took a handful of loose silver and halfpence from \nhis pocket, \"there's so much money.  I have not an idea how much.  \nI have not the power of counting.  Call it four and ninepence--call \nit four pound nine.  They tell me I owe more than that.  I dare say \nI do.  I dare say I owe as much as good-natured people will let me \nowe.  If they don't stop, why should I?  There you have Harold \nSkimpole in little.  If that's responsibility, I am responsible.\"\n\nThe perfect ease of manner with which he put the money up again and \nlooked at me with a smile on his refined face, as if he had been \nmentioning a curious little fact about somebody else, almost made \nme feel as if he really had nothing to do with it.\n\n\"Now, when you mention responsibility,\" he resumed, \"I am disposed \nto say that I never had the happiness of knowing any one whom I \nshould consider so refreshingly responsible as yourself.  You \nappear to me to be the very touchstone of responsibility.  When I \nsee you, my dear Miss Summerson, intent upon the perfect working of \nthe whole little orderly system of which you are the centre, I feel \ninclined to say to myself--in fact I do say to myself very often--\nTHAT'S responsibility!\"\n\nIt was difficult, after this, to explain what I meant; but I \npersisted so far as to say that we all hoped he would check and not \nconfirm Richard in the sanguine views he entertained just then.\n\n\"Most willingly,\" he retorted, \"if I could.  But, my dear Miss \nSummerson, I have no art, no disguise.  If he takes me by the hand \nand leads me through Westminster Hall in an airy procession after \nfortune, I must go.  If he says, 'Skimpole, join the dance!'  I \nmust join it.  Common sense wouldn't, I know, but I have NO common \nsense.\"\n\nIt was very unfortunate for Richard, I said.\n\n\"Do you think so!\" returned Mr. Skimpole.  \"Don't say that, don't \nsay that.  Let us suppose him keeping company with Common Sense--an \nexcellent man--a good deal wrinkled--dreadfully practical--change \nfor a ten-pound note in every pocket--ruled account-book in his \nhand--say, upon the whole, resembling a tax-gatherer.  Our dear \nRichard, sanguine, ardent, overleaping obstacles, bursting with \npoetry like a young bud, says to this highly respectable companion, \n'I see a golden prospect before me; it's very bright, it's very \nbeautiful, it's very joyous; here I go, bounding over the landscape \nto come at it!'  The respectable companion instantly knocks him \ndown with the ruled account-book; tells him in a literal, prosaic \nway that he sees no such thing; shows him it's nothing but fees, \nfraud, horsehair wigs, and black gowns.  Now you know that's a \npainful change--sensible in the last degree, I have no doubt, but \ndisagreeable.  I can't do it.  I haven't got the ruled account-\nbook, I have none of the tax-gatherlng elements in my composition, \nI am not at all respectable, and I don't want to be.  Odd perhaps, \nbut so it is!\"\n\nIt was idle to say more, so I proposed that we should join Ada and \nRichard, who were a little in advance, and I gave up Mr. Skimpole \nin despair.  He had been over the Hall in the course of the morning \nand whimsically described the family pictures as we walked.  There \nwere such portentous shepherdesses among the Ladies Dedlock dead \nand gone, he told us, that peaceful crooks became weapons of \nassault in their hands.  They tended their flocks severely in \nbuckram and powder and put their sticking-plaster patches on to \nterrify commoners as the chiefs of some other tribes put on their \nwar-paint.  There was a Sir Somebody Dedlock, with a battle, a \nsprung-mine, volumes of smoke, flashes of lightning, a town on \nfire, and a stormed fort, all in full action between his horse's \ntwo hind legs, showing, he supposed, how little a Dedlock made of \nsuch trifles.  The whole race he represented as having evidently \nbeen, in life, what he called \"stuffed people\"--a large collection, \nglassy eyed, set up in the most approved manner on their various \ntwigs and perches, very correct, perfectly free from animation, and \nalways in glass cases.\n\nI was not so easy now during any reference to the name but that I \nfelt it a relief when Richard, with an exclamation of surprise, \nhurried away to meet a stranger whom he first descried coming \nslowly towards us.\n\n\"Dear me!\" said Mr. Skimpole.  \"Vholes!\"\n\nWe asked if that were a friend of Richard's.\n\n\"Friend and legal adviser,\" said Mr. Skimpole.  \"Now, my dear Miss \nSummerson, if you want common sense, responsibility, and \nrespectability, all united--if you want an exemplary man--Vholes is \nTHE man.\"\n\nWe had not known, we said, that Richard was assisted by any \ngentleman of that name.\n\n\"When he emerged from legal infancy,\" returned Mr. Skimpole, \"he \nparted from our conversational friend Kenge and took up, I believe, \nwith Vholes.  Indeed, I know he did, because I introduced him to \nVholes.\"\n\n\"Had you known him long?\" asked Ada.\n\n\"Vholes?  My dear Miss Clare, I had had that kind of acquaintance \nwith him which I have had with several gentlemen of his profession.  \nHe had done something or other in a very agreeable, civil manner--\ntaken proceedings, I think, is the expression--which ended in the \nproceeding of his taking ME.  Somebody was so good as to step in \nand pay the money--something and fourpence was the amount; I forget \nthe pounds and shillings, but I know it ended with fourpence, \nbecause it struck me at the time as being so odd that I could owe \nanybody fourpence--and after that I brought them together.  Vholes \nasked me for the introduction, and I gave it.  Now I come to think \nof it,\" he looked inquiringly at us with his frankest smile as he \nmade the discovery, \"Vholes bribed me, perhaps?  He gave me \nsomething and called it commission.  Was it a five-pound note?  Do \nyou know, I think it MUST have been a five-pound note!\"\n\nHis further consideration of the point was prevented by Richard's \ncoming back to us in an excited state and hastily representing Mr. \nVholes--a sallow man with pinched lips that looked as if they were \ncold, a red eruption here and there upon his face, tall and thin, \nabout fifty years of age, high-shouldered, and stooping.  Dressed \nin black, black-gloved, and buttoned to the chin, there was nothing \nso remarkable in him as a lifeless manner and a slow, fixed way he \nhad of looking at Richard.\n\n\"I hope I don't disturb you, ladies,\" said Mr. Vholes, and now I \nobserved that he was further remarkable for an inward manner of \nspeaking.  \"I arranged with Mr. Carstone that he should always know \nwhen his cause was in the Chancelor's paper, and being informed by \none of my clerks last night after post time that it stood, rather \nunexpectedly, in the paper for to-morrow, I put myself into the \ncoach early this morning and came down to confer with him.\"\n\n\"Yes,\" said Richard, flushed, and looking triumphantly at Ada and \nme, \"we don't do these things in the old slow way now.  We spin \nalong now!  Mr. Vholes, we must hire something to get over to the \npost town in, and catch the mail to-night, and go up by it!\"\n\n\"Anything you please, sir,\" returned Mr. Vholes.  \"I am quite at \nyour service.\"\n\n\"Let me see,\" said Richard, looking at his watch.  \"If I run down \nto the Dedlock, and get my portmanteau fastened up, and order a \ngig, or a chaise, or whatever's to be got, we shall have an hour \nthen before starting.  I'll come back to tea.  Cousin Ada, will you \nand Esther take care of Mr. Vholes when I am gone?\"\n\nHe was away directly, in his heat and hurry, and was soon lost in \nthe dusk of evening.  We who were left walked on towards the house.\n\n\"Is Mr. Carstone's presence necessary to-morrow, Sir?\" said I.  \n\"Can it do any good?\"\n\n\"No, miss,\" Mr. Vholes replied.  \"I am not aware that it can.\"\n\nBoth Ada and I expressed our regret that he should go, then, only \nto be disappointed.\n\n\"Mr. Carstone has laid down the principle of watching his own \ninterests,\" said Mr. Vholes, \"and when a client lays down his own \nprinciple, and it is not immoral, it devolves upon me to carry it \nout.  I wish in business to be exact and open.  I am a widower with \nthree daughters--Emma, Jane, and Caroline--and my desire is so to \ndischarge the duties of life as to leave them a good name.  This \nappears to be a pleasant spot, miss.\"\n\nThe remark being made to me in consequence of my being next him as \nwe walked, I assented and enumerated its chief attractions.\n\n\"Indeed?\" said Mr. Vholes.  \"I have the privilege of supporting an \naged father in the Vale of Taunton--his native place--and I admire \nthat country very much.  I had no idea there was anything so \nattractive here.\"\n\nTo keep up the conversation, I asked Mr. Vholes if he would like to \nlive altogether in the country.\n\n\"There, miss,\" said he, \"you touch me on a tender string.  My \nhealth is not good (my digestion being much impaired), and if I had \nonly myself to consider, I should take refuge in rural habits, \nespecially as the cares of business have prevented me from ever \ncoming much into contact with general society, and particularly \nwith ladies' society, which I have most wished to mix in.  But with \nmy three daughters, Emma, Jane, and Caroline--and my aged father--I \ncannot afford to be selfish.  It is true I have no longer to \nmaintain a dear grandmother who died in her hundred and second \nyear, but enough remains to render it indispensable that the mill \nshould be always going.\"\n\nIt required some attention to hear him on account of his inward \nspeaking and his lifeless manner.\n\n\"You will excuse my having mentioned my daughters,\" he said.  \"They \nare my weak point.  I wish to leave the poor girls some little \nindependence, as well as a good name.\"\n\nWe now arrived at Mr. Boythorn's house, where the tea-table, all \nprepared, was awaiting us.  Richard came in restless and hurried \nshortly afterwards, and leaning over Mr. Vholes's chair, whispered \nsomething in his ear.  Mr. Vholes replied aloud--or as nearly aloud \nI suppose as he had ever replied to anything--\"You will drive me, \nwill you, sir?  It is all the same to me, sir.  Anything you \nplease.  I am quite at your service.\"\n\nWe understood from what followed that Mr. Skimpole was to be left \nuntil the morning to occupy the two places which had been already \npaid for.  As Ada and I were both in low spirits concerning Richard \nand very sorry so to part with him, we made it as plain as we \npolitely could that we should leave Mr. Skimpole to the Dedlock \nArms and retire when the night-travellers were gone.\n\nRichard's high spirits carrying everything before them, we all went \nout together to the top of the hill above the village, where he had \nordered a gig to wait and where we found a man with a lantern \nstanding at the head of the gaunt pale horse that had been \nharnessed to it.\n\nI never shall forget those two seated side by side in the lantern's \nlight, Richard all flush and fire and laughter, with the reins in \nhis hand; Mr. Vholes quite still, black-gloved, and buttoned up, \nlooking at him as if he were looking at his prey and charming it.  \nI have before me the whole picture of the warm dark night, the \nsummer lightning, the dusty track of road closed in by hedgerows \nand high trees, the gaunt pale horse with his ears pricked up, and \nthe driving away at speed to Jarndyce and Jarndyce.\n\nMy dear girl told me that night how Richard's being thereafter \nprosperous or ruined, befriended or deserted, could only make this \ndifference to her, that the more he needed love from one unchanging \nheart, the more love that unchanging heart would have to give him; \nhow he thought of her through his present errors, and she would \nthink of him at all times--never of herself if she could devote \nherself to him, never of her own delights if she could minister to \nhis.\n\nAnd she kept her word?\n\nI look along the road before me, where the distance already \nshortens and the journey's end is growing visible; and true and \ngood above the dead sea of the Chancery suit and all the ashy fruit \nit cast ashore, I think I see my darling.\n\n\n\nCHAPTER XXXVIII\n\nA Struggle\n\n\nWhen our time came for returning to Bleak House again, we were \npunctual to the day and were received with an overpowering welcome.  \nI was perfectly restored to health and strength, and finding my \nhousekeeping keys laid ready for me in my room, rang myself in as \nif I had been a new year, with a merry little peal.  \"Once more, \nduty, duty, Esther,\" said I; \"and if you are not overjoyed to do \nit, more than cheerfully and contentedly, through anything and \neverything, you ought to be.  That's all I have to say to you, my \ndear!\"\n\nThe first few mornings were mornings of so much bustle and \nbusiness, devoted to such settlements of accounts, such repeated \njourneys to and fro between the growlery and all other parts of the \nhouse, so many rearrangements of drawers and presses, and such a \ngeneral new beginning altogether, that I had not a moment's \nleisure.  But when these arrangements were completed and everything \nwas in order, I paid a visit of a few hours to London, which \nsomething in the letter I had destroyed at Chesney Wold had induced \nme to decide upon in my own mind.\n\nI made Caddy Jellyby--her maiden name was so natural to me that I \nalways called her by it--the pretext for this visit and wrote her a \nnote previously asking the favour of her company on a little \nbusiness expedition.  Leaving home very early in the morning, I got \nto London by stage-coach in such good time that I got to Newman \nStreet with the day before me.\n\nCaddy, who had not seen me since her wedding-day, was so glad and \nso affectionate that I was half inclined to fear I should make her \nhusband jealous.  But he was, in his way, just as bad--I mean as \ngood; and in short it was the old story, and nobody would leave me \nany possibility of doing anything meritorious.\n\nThe elder Mr. Turveydrop was in bed, I found, and Caddy was milling \nhis chocolate, which a melancholy little boy who was an apprentice\n--it seemed such a curious thing to be apprenticed to the trade of \ndancing--was waiting to carry upstairs.  Her father-in-law was \nextremely kind and considerate, Caddy told me, and they lived most \nhappily together.  (When she spoke of their living together, she \nmeant that the old gentleman had all the good things and all the \ngood lodging, while she and her husband had what they could get, \nand were poked into two corner rooms over the Mews.)\n\n\"And how is your mama, Caddy?\" said I.\n\n\"Why, I hear of her, Esther,\" replied Caddy, \"through Pa, but I see \nvery little of her.  We are good friends, I am glad to say, but Ma \nthinks there is something absurd in my having married a dancing-\nmaster, and she is rather afraid of its extending to her.\"\n\nIt struck me that if Mrs. Jellyby had discharged her own natural \nduties and obligations before she swept the horizon with a \ntelescope in search of others, she would have taken the best \nprecautions against becoming absurd, but I need scarcely observe \nthat I kept this to myself.\n\n\"And your papa, Caddy?\"\n\n\"He comes here every evening,\" returned Caddy, \"and is so fond of \nsitting in the corner there that it's a treat to see him.\"\n\nLooking at the corner, I plainly perceived the mark of Mr. \nJellyby's head against the wall.  It was consolatory to know that \nhe had found such a resting-place for it.\n\n\"And you, Caddy,\" said I, \"you are always busy, I'll be bound?\"\n\n\"Well, my dear,\" returned Caddy, \"I am indeed, for to tell you a \ngrand secret, I am qualifying myself to give lessons.  Prince's \nhealth is not strong, and I want to be able to assist him.  What \nwith schools, and classes here, and private pupils, AND the \napprentices, he really has too much to do, poor fellow!\"\n\nThe notion of the apprentices was still so odd to me that I asked \nCaddy if there were many of them.\n\n\"Four,\" said Caddy.  \"One in-door, and three out.  They are very \ngood children; only when they get together they WILL play--\nchildren-like--instead of attending to their work.  So the little \nboy you saw just now waltzes by himself in the empty kitchen, and \nwe distribute the others over the house as well as we can.\"\n\n\"That is only for their steps, of course?\" said I.\n\n\"Only for their steps,\" said Caddy.  \"In that way they practise, so \nmany hours at a time, whatever steps they happen to be upon.  They \ndance in the academy, and at this time of year we do figures at \nfive every morning.\"\n\n\"Why, what a laborious life!\" I exclaimed.\n\n\"I assure you, my dear,\" returned Caddy, smiling, \"when the out-\ndoor apprentices ring us up in the morning (the bell rings into our \nroom, not to disturb old Mr. Turveydrop), and when I put up the \nwindow and see them standing on the door-step with their little \npumps under their arms, I am actually reminded of the Sweeps.\"\n\nAll this presented the art to me in a singular light, to be sure.  \nCaddy enjoyed the effect of her communication and cheerfully \nrecounted the particulars of her own studies.\n\n\"You see, my dear, to save expense I ought to know something of the \npiano, and I ought to know something of the kit too, and \nconsequently I have to practise those two instruments as well as \nthe details of our profession.  If Ma had been like anybody else, I \nmight have had some little musical knowledge to begin upon.  \nHowever, I hadn't any; and that part of the work is, at first, a \nlittle discouraging, I must allow.  But I have a very good ear, and \nI am used to drudgery--I have to thank Ma for that, at all events--\nand where there's a will there's a way, you know, Esther, the world \nover.\"  Saying these words, Caddy laughingly sat down at a little \njingling square piano and really rattled off a quadrille with great \nspirit.  Then she good-humouredly and blushingly got up again, and \nwhile she still laughed herself, said, \"Don't laugh at me, please; \nthat's a dear girl!\"\n\nI would sooner have cried, but I did neither.  I encouraged her and \npraised her with all my heart.  For I conscientiously believed, \ndancing-master's wife though she was, and dancing-mistress though \nin her limited ambition she aspired to be, she had struck out a \nnatural, wholesome, loving course of industry and perseverance that \nwas quite as good as a mission.\n\n\"My dear,\" said Caddy, delighted, \"you can't think how you cheer \nme.  I shall owe you, you don't know how much.  What changes, \nEsther, even in my small world!  You recollect that first night, \nwhen I was so unpolite and inky?  Who would have thought, then, of \nmy ever teaching people to dance, of all other possibilities and \nimpossibilities!\"\n\nHer husband, who had left us while we had this chat, now coming \nback, preparatory to exercising the apprentices in the ball-room, \nCaddy informed me she was quite at my disposal.  But it was not my \ntime yet, I was glad to tell her, for I should have been vexed to \ntake her away then.  Therefore we three adjourned to the \napprentices together, and I made one in the dance.\n\nThe apprentices were the queerest little people.  Besides the \nmelancholy boy, who, I hoped, had not been made so by waltzing \nalone in the empty kitchen, there were two other boys and one dirty \nlittle limp girl in a gauzy dress.  Such a precocious little girl, \nwith such a dowdy bonnet on (that, too, of a gauzy texture), who \nbrought her sandalled shoes in an old threadbare velvet reticule.  \nSuch mean little boys, when they were not dancing, with string, and \nmarbles, and cramp-bones in their pockets, and the most untidy legs \nand feet--and heels particularly.\n\nI asked Caddy what had made their parents choose this profession \nfor them.  Caddy said she didn't know; perhaps they were designed \nfor teachers, perhaps for the stage.  They were all people in \nhumble circumstances, and the melancholy boy's mother kept a \nginger-beer shop.\n\nWe danced for an hour with great gravity, the melancholy child \ndoing wonders with his lower extremities, in which there appeared \nto be some sense of enjoyment though it never rose above his waist.  \nCaddy, while she was observant of her husband and was evidently \nfounded upon him, had acquired a grace and self-possession of her \nown, which, united to her pretty face and figure, was uncommonly \nagreeable.  She already relieved him of much of the instruction of \nthese young people, and he seldom interfered except to walk his \npart in the figure if he had anything to do in it.  He always \nplayed the tune.  The affectation of the gauzy child, and her \ncondescension to the boys, was a sight.  And thus we danced an hour \nby the clock.\n\nWhen the practice was concluded, Caddy's husband made himself ready \nto go out of town to a school, and Caddy ran away to get ready to \ngo out with me.  I sat in the ball-room in the interval, \ncontemplating the apprentices.  The two out-door boys went upon the \nstaircase to put on their half-boots and pull the in-door boy's \nhair, as I judged from the nature of his objections.  Returning \nwith their jackets buttoned and their pumps stuck in them, they \nthen produced packets of cold bread and meat and bivouacked under a \npainted lyre on the wall.  The little gauzy child, having whisked \nher sandals into the reticule and put on a trodden-down pair of \nshoes, shook her head into the dowdy bonnet at one shake, and \nanswering my inquiry whether she liked dancing by replying, \"Not \nwith boys,\" tied it across her chin, and went home contemptuous.\n\n\"Old Mr. Turveydrop is so sorry,\" said Caddy, \"that he has not \nfinished dressing yet and cannot have the pleasure of seeing you \nbefore you go.  You are such a favourite of his, Esther.\"\n\nI expressed myself much obliged to him, but did not think it \nnecessary to add that I readily dispensed with this attention.\n\n\"It takes him a long time to dress,\" said Caddy, \"because he is \nvery much looked up to in such things, you know, and has a \nreputation to support.  You can't think how kind he is to Pa.  He \ntalks to Pa of an evening about the Prince Regent, and I never saw \nPa so interested.\"\n\nThere was something in the picture of Mr. Turveydrop bestowing his \ndeportment on Mr. Jellyby that quite took my fancy.  I asked Caddy \nif he brought her papa out much.\n\n\"No,\" said Caddy, \"I don't know that he does that, but he talks to \nPa, and Pa greatly admires him, and listens, and likes it.  Of \ncourse I am aware that Pa has hardly any claims to deportment, but \nthey get on together delightfully.  You can't think what good \ncompanions they make.  I never saw Pa take snuff before in my life, \nbut he takes one pinch out of Mr. Turveydrop's box regularly and \nkeeps putting it to his nose and taking it away again all the \nevening.\"\n\nThat old Mr. Turveydrop should ever, in the chances and changes of \nlife, have come to the rescue of Mr. Jellyby from Borrioboola-Gha \nappeared to me to be one of the pleasantest of oddities.\n\n\"As to Peepy,\" said Caddy with a little hesitation, \"whom I was \nmost afraid of--next to having any family of my own, Esther--as an \ninconvenience to Mr. Turveydrop, the kindness of the old gentleman \nto that child is beyond everything.  He asks to see him, my dear!  \nHe lets him take the newspaper up to him in bed; he gives him the \ncrusts of his toast to eat; he sends him on little errands about \nthe house; he tells him to come to me for sixpences.  In short,\" \nsaid Caddy cheerily, \"and not to prose, I am a very fortunate girl \nand ought to be very grateful.  Where are we going, Esther?\"\n\n\"To the Old Street Road,\" said I, \"where I have a few words to say \nto the solicitor's clerk who was sent to meet me at the coach-\noffice on the very day when I came to London and first saw you, my \ndear.  Now I think of it, the gentleman who brought us to your \nhouse.\"\n\n\"Then, indeed, I seem to be naturally the person to go with you,\" \nreturned Caddy.\n\nTo the Old Street Road we went and there inquired at Mrs. Guppy's \nresidence for Mrs. Guppy.  Mrs. Guppy, occupying the parlours and \nhaving indeed been visibly in danger of cracking herself like a nut \nin the front-parlour door by peeping out before she was asked for, \nimmediately presented herself and requested us to walk in.  She was \nan old lady in a large cap, with rather a red nose and rather an \nunsteady eye, but smiling all over.  Her close little sitting-room \nwas prepared for a visit, and there was a portrait of her son in it \nwhich, I had almost written here, was more like than life: it \ninsisted upon him with such obstinacy, and was so determined not to \nlet him off.\n\nNot only was the portrait there, but we found the original there \ntoo.  He was dressed in a great many colours and was discovered at \na table reading law-papers with his forefinger to his forehead.\n\n\"Miss Summerson,\" said Mr. Guppy, rising, \"this is indeed an oasis.  \nMother, will you be so good as to put a chair for the other lady \nand get out of the gangway.\"\n\nMrs. Guppy, whose incessant smiling gave her quite a waggish \nappearance, did as her son requested and then sat down in a corner, \nholding her pocket handkerchief to her chest, like a fomentation, \nwith both hands.\n\nI presented Caddy, and Mr. Guppy said that any friend of mine was \nmore than welcome.  I then proceeded to the object of my visit.\n\n\"I took the liberty of sending you a note, sir,\" said I.\n\nMr. Guppy acknowledged the receipt by taking it out of his breast-\npocket, putting it to his lips, and returning it to his pocket with \na bow.  Mr. Guppy's mother was so diverted that she rolled her head \nas she smiled and made a silent appeal to Caddy with her elbow.\n\n\"Could I speak to you alone for a moment?\" said I.\n\nAnything like the jocoseness of Mr. Guppy's mother just now, I \nthink I never saw.  She made no sound of laughter, but she rolled \nher head, and shook it, and put her handkerchief to her mouth, and \nappealed to Caddy with her elbow, and her hand, and her shoulder, \nand was so unspeakably entertained altogether that it was with some \ndifficulty she could marshal Caddy through the little folding-door \ninto her bedroom adjoining.\n\n\"Miss Summerson,\" said Mr. Guppy, \"you will excuse the waywardness \nof a parent ever mindful of a son's appiness.  My mother, though \nhighly exasperating to the feelings, is actuated by maternal \ndictates.\"\n\nI could hardly have believed that anybody could in a moment have \nturned so red or changed so much as Mr. Guppy did when I now put up \nmy veil.\n\n\"I asked the favour of seeing you for a few moments here,\" said I, \n\"in preference to calling at Mr. Kenge's because, remembering what \nyou said on an occasion when you spoke to me in confidence, I \nfeared I might otherwise cause you some embarrassment, Mr. Guppy.\"\n\nI caused him embarrassment enough as it was, I am sure.  I never \nsaw such faltering, such confusion, such amazement and \napprehension.\n\n\"Miss Summerson,\" stammered Mr. Guppy, \"I--I--beg your pardon, but \nin our profession--we--we--find it necessary to be explicit.  You \nhave referred to an occasion, miss, when I--when I did myself the \nhonour of making a declaration which--\"\n\nSomething seemed to rise in his throat that he could not possibly \nswallow.  He put his hand there, coughed, made faces, tried again \nto swallow it, coughed again, made faces again, looked all round \nthe room, and fluttered his papers.\n\n\"A kind of giddy sensation has come upon me, miss,\" he explained, \n\"which rather knocks me over.  I--er--a little subject to this sort \nof thing--er--by George!\"\n\nI gave him a little time to recover.  He consumed it in putting his \nhand to his forehead and taking it away again, and in backing his \nchair into the corner behind him.\n\n\"My intention was to remark, miss,\" said Mr. Guppy, \"dear me--\nsomething bronchial, I think--hem!--to remark that you was so good \non that occasion as to repel and repudiate that declaration.  You--\nyou wouldn't perhaps object to admit that?  Though no witnesses are \npresent, it might be a satisfaction to--to your mind--if you was to \nput in that admission.\"\n\n\"There can be no doubt,\" said I, \"that I declined your proposal \nwithout any reservation or qualification whatever, Mr. Guppy.\"\n\n\"Thank you, miss,\" he returned, measuring the table with his \ntroubled hands.  \"So far that's satisfactory, and it does you \ncredit.  Er--this is certainly bronchial!--must be in the tubes--\ner--you wouldn't perhaps be offended if I was to mention--not that \nit's necessary, for your own good sense or any person's sense must \nshow 'em that--if I was to mention that such declaration on my part \nwas final, and there terminated?\"\n\n\"I quite understand that,\" said I.\n\n\"Perhaps--er--it may not be worth the form, but it might be a \nsatisfaction to your mind--perhaps you wouldn't object to admit \nthat, miss?\" said Mr. Guppy.\n\n\"I admit it most fully and freely,\" said I.\n\n\"Thank you,\" returned Mr. Guppy.  \"Very honourable, I am sure.  I \nregret that my arrangements in life, combined with circumstances \nover which I have no control, will put it out of my power ever to \nfall back upon that offer or to renew it in any shape or form \nwhatever, but it will ever be a retrospect entwined--er--with \nfriendship's bowers.\"  Mr. Guppy's bronchitis came to his relief \nand stopped his measurement of the table.\n\n\"I may now perhaps mention what I wished to say to you?\" I began.\n\n\"I shall be honoured, I am sure,\" said Mr. Guppy.  \"I am so \npersuaded that your own good sense and right feeling, miss, will--\nwill keep you as square as possible--that I can have nothing but \npleasure, I am sure, in hearing any observations you may wish to \noffer.\"\n\n\"You were so good as to imply, on that occasion--\"\n\n\"Excuse me, miss,\" said Mr. Guppy, \"but we had better not travel \nout of the record into implication.  I cannot admit that I implied \nanything.\"\n\n\"You said on that occasion,\" I recommenced, \"that you might \npossibly have the means of advancing my interests and promoting my \nfortunes by making discoveries of which I should be the subject.  I \npresume that you founded that belief upon your general knowledge of \nmy being an orphan girl, indebted for everything to the benevolence \nof Mr. Jarndyce.  Now, the beginning and the end of what I have \ncome to beg of you is, Mr. Guppy, that you will have the kindness \nto relinquish all idea of so serving me.  I have thought of this \nsometimes, and I have thought of it most lately--since I have been \nill.  At length I have decided, in case you should at any time \nrecall that purpose and act upon it in any way, to come to you and \nassure you that you are altogether mistaken.  You could make no \ndiscovery in reference to me that would do me the least service or \ngive me the least pleasure.  I am acquainted with my personal \nhistory, and I have it in my power to assure you that you never can \nadvance my welfare by such means.  You may, perhaps, have abandoned \nthis project a long time.  If so, excuse my giving you unnecessary \ntrouble.  If not, I entreat you, on the assurance I have given you, \nhenceforth to lay it aside.  I beg you to do this, for my peace.\"\n\n\"I am bound to confess,\" said Mr. Guppy, \"that you express \nyourself, miss, with that good sense and right feeling for which I \ngave you credit.  Nothing can be more satisfactory than such right \nfeeling, and if I mistook any intentions on your part just now, I \nam prepared to tender a full apology.  I should wish to be \nunderstood, miss, as hereby offering that apology--limiting it, as \nyour own good sense and right feeling will point out the necessity \nof, to the present proceedings.\"\n\nI must say for Mr. Guppy that the snuffling manner he had had upon \nhim improved very much.  He seemed truly glad to be able to do \nsomething I asked, and he looked ashamed.\n\n\"If you will allow me to finish what I have to say at once so that \nI may have no occasion to resume,\" I went on, seeing him about to \nspeak, \"you will do me a kindness, sir.  I come to you as privately \nas possible because you announced this impression of yours to me in \na confidence which I have really wished to respect--and which I \nalways have respected, as you remember.  I have mentioned my \nillness.  There really is no reason why I should hesitate to say \nthat I know very well that any little delicacy I might have had in \nmaking a request to you is quite removed.  Therefore I make the \nentreaty I have now preferred, and I hope you will have sufficient \nconsideration for me to accede to it.\"\n\nI must do Mr. Guppy the further justice of saying that he had \nlooked more and more ashamed and that he looked most ashamed and \nvery earnest when he now replied with a burning face, \"Upon my word \nand honour, upon my life, upon my soul, Miss Summerson, as I am a \nliving man, I'll act according to your wish!  I'll never go another \nstep in opposition to it.  I'll take my oath to it if it will be \nany satisfaction to you.  In what I promise at this present time \ntouching the matters now in question,\" continued Mr. Guppy rapidly, \nas if he were repeating a familiar form of words, \"I speak the \ntruth, the whole truth, and nothing but the truth, so--\"\n\n\"I am quite satisfied,\" said I, rising at this point, \"and I thank \nyou very much.  Caddy, my dear, I am ready!\"\n\nMr. Guppy's mother returned with Caddy (now making me the recipient \nof her silent laughter and her nudges), and we took our leave.  Mr. \nGuppy saw us to the door with the air of one who was either \nimperfectly awake or walking in his sleep; and we left him there, \nstaring.\n\nBut in a minute he came after us down the street without any hat, \nand with his long hair all blown about, and stopped us, saying \nfervently, \"Miss Summerson, upon my honour and soul, you may depend \nupon me!\"\n\n\"I do,\" said I, \"quite confidently.\"\n\n\"I beg your pardon, miss,\" said Mr. Guppy, going with one leg and \nstaying with the other, \"but this lady being present--your own \nwitness--it might be a satisfaction to your mind (which I should \nwish to set at rest) if you was to repeat those admissions.\"\n\n\"Well, Caddy,\" said I, turning to her, \"perhaps you will not be \nsurprised when I tell you, my dear, that there never has been any \nengagement--\"\n\n\"No proposal or promise of marriage whatsoever,\" suggested Mr. \nGuppy.\n\n\"No proposal or promise of marriage whatsoever,\" said I, \"between \nthis gentleman--\"\n\n\"William Guppy, of Penton Place, Pentonville, in the county of \nMiddlesex,\" he murmured.\n\n\"Between this gentleman, Mr. William Guppy, of Penton Place, \nPentonville, in the county of Middlesex, and myself.\"\n\n\"Thank you, miss,\" said Mr. Guppy.  \"Very full--er--excuse me--\nlady's name, Christian and surname both?\"\n\nI gave them.\n\n\"Married woman, I believe?\" said Mr. Guppy.  \"Married woman.  Thank \nyou.  Formerly Caroline Jellyby, spinster, then of Thavies Inn, \nwithin the city of London, but extra-parochial; now of Newman \nStreet, Oxford Street.  Much obliged.\"\n\nHe ran home and came running back again.\n\n\"Touching that matter, you know, I really and truly am very sorry \nthat my arrangements in life, combined with circumstances over \nwhich I have no control, should prevent a renewal of what was \nwholly terminated some time back,\" said Mr. Guppy to me forlornly \nand despondently, \"but it couldn't be.  Now COULD it, you know!  I \nonly put it to you.\"\n\nI replied it certainly could not.  The subject did not admit of a \ndoubt.  He thanked me and ran to his mother's again--and back \nagain.\n\n\"It's very honourable of you, miss, I am sure,\" said Mr. Guppy.  \n\"If an altar could be erected in the bowers of friendship--but, \nupon my soul, you may rely upon me in every respect save and except \nthe tender passion only!\"\n\nThe struggle in Mr. Guppy's breast and the numerous oscillations it \noccasioned him between his mother's door and us were sufficiently \nconspicuous in the windy street (particularly as his hair wanted \ncutting) to make us hurry away.  I did so with a lightened heart; \nbut when we last looked back, Mr. Guppy was still oscillating in \nthe same troubled state of mind.\n\n\n\nCHAPTER XXXIX\n\nAttorney and Client\n\n\nThe name of Mr. Vholes, preceded by the legend Ground-Floor, is \ninscribed upon a door-post in Symond's Inn, Chancery Lane--a \nlittle, pale, wall-eyed, woebegone inn like a large dust-binn of \ntwo compartments and a sifter.  It looks as if Symond were a \nsparing man in his way and constructed his inn of old building \nmaterials which took kindly to the dry rot and to dirt and all \nthings decaying and dismal, and perpetuated Symond's memory with \ncongenial shabbiness.  Quartered in this dingy hatchment \ncommemorative of Symond are the legal bearings of Mr. Vholes.\n\nMr. Vholes's office, in disposition retiring and in situation \nretired, is squeezed up in a corner and blinks at a dead wall.  \nThree feet of knotty-floored dark passage bring the client to Mr. \nVholes's jet-black door, in an angle profoundly dark on the \nbrightest midsummer morning and encumbered by a black bulk-head of \ncellarage staircase against which belated civilians generally \nstrike their brows.  Mr. Vholes's chambers are on so small a scale \nthat one clerk can open the door without getting off his stool, \nwhile the other who elbows him at the same desk has equal \nfacilities for poking the fire.  A smell as of unwholesome sheep \nblending with the smell of must and dust is referable to the \nnightly (and often daily) consumption of mutton fat in candles and \nto the fretting of parchment forms and skins in greasy drawers.  \nThe atmosphere is otherwise stale and close.  The place was last \npainted or whitewashed beyond the memory of man, and the two \nchimneys smoke, and there is a loose outer surface of soot \nevervwhere, and the dull cracked windows in their heavy frames have \nbut one piece of character in them, which is a determination to be \nalways dirty and always shut unless coerced.  This accounts for the \nphenomenon of the weaker of the two usually having a bundle of \nfirewood thrust between its jaws in hot weather.\n\nMr. Vholes is a very respectable man.  He has not a large business, \nbut he is a very respectable man.  He is allowed by the greater \nattorneys who have made good fortunes or are making them to be a \nmost respectable man.  He never misses a chance in his practice, \nwhich is a mark of respectability.  He never takes any pleasure, \nwhich is another mark of respectability.  He is reserved and \nserious, which is another mark of respectability.  His digestion is \nimpaired, which is highly respectable.  And he is making hay of the \ngrass which is flesh, for his three daughters.  And his father is \ndependent on him in the Vale of Taunton.\n\nThe one great principle of the English law is to make business for \nitself.  There is no other principle distinctly, certainly, and \nconsistently maintained through all its narrow turnings.  Viewed by \nthis light it becomes a coherent scheme and not the monstrous maze \nthe laity are apt to think it.  Let them but once clearly perceive \nthat its grand principle is to make business for itself at their \nexpense, and surely they will cease to grumble.\n\nBut not perceiving this quite plainly--only seeing it by halves in \na confused way--the laity sometimes suffer in peace and pocket, \nwith a bad grace, and DO grumble very much.  Then this \nrespectability of Mr. Vholes is brought into powerful play against \nthem.  \"Repeal this statute, my good sir?\" says Mr. Kenge to a \nsmarting client.  \"Repeal it, my dear sir?  Never, with my consent.  \nAlter this law, sir, and what will be the effect of your rash \nproceeding on a class of practitioners very worthily represented, \nallow me to say to you, by the opposite attorney in the case, Mr. \nVholes?  Sir, that class of practitioners would be swept from the \nface of the earth.  Now you cannot afford--I will say, the social \nsystem cannot afford--to lose an order of men like Mr. Vholes.  \nDiligent, persevering, steady, acute in business.  My dear sir, I \nunderstand your present feelings against the existing state of \nthings, which I grant to be a little hard in your case; but I can \nnever raise my voice for the demolition of a class of men like Mr. \nVholes.\"  The respectability of Mr. Vholes has even been cited with \ncrushing effect before Parliamentary committees, as in the \nfollowing blue minutes of a distinguished attorney's evidence.   \n\"Question (number five hundred and seventeen thousand eight hundred \nand sixty-nine): If I understand you, these forms of practice \nindisputably occasion delay?  Answer: Yes, some delay.  Question: \nAnd great expense?  Answer: Most assuredly they cannot be gone \nthrough for nothing.  Question: And unspeakable vexation?  Answer: \nI am not prepared to say that.  They have never given ME any \nvexation; quite the contrary.  Question: But you think that their \nabolition would damage a class of practitioners?  Answer: I have no \ndoubt of it.  Question: Can you instance any type of that class?  \nAnswer: Yes.  I would unhesitatingly mention Mr. Vholes.  He would \nbe ruined.  Question: Mr. Vholes is considered, in the profession, \na respectable man?  Answer: \"--which proved fatal to the inquiry \nfor ten years--\"Mr. Vholes is considered, in the profession, a MOST \nrespectable man.\"\n\nSo in familiar conversation, private authorities no less \ndisinterested will remark that they don't know what this age is \ncoming to, that we are plunging down precipices, that now here is \nsomething else gone, that these changes are death to people like \nVholes--a man of undoubted respectability, with a father in the \nVale of Taunton, and three daughters at home.  Take a few steps \nmore in this direction, say they, and what is to become of Vholes's \nfather?  Is he to perish?  And of Vholes's daughters?  Are they to \nbe shirt-makers, or governesses?  As though, Mr. Vholes and his \nrelations being minor cannibal chiefs and it being proposed to \nabolish cannibalism, indignant champions were to put the case thus: \nMake man-eating unlawful, and you starve the Vholeses!\n\nIn a word, Mr. Vholes, with his three daughters and his father in \nthe Vale of Taunton, is continually doing duty, like a piece of \ntimber, to shore up some decayed foundation that has become a \npitfall and a nuisance.  And with a great many people in a great \nmany instances, the question is never one of a change from wrong to \nright (which is quite an extraneous consideration), but is always \none of injury or advantage to that eminently respectable legion, \nVholes.\n\nThe Chancellor is, within these ten minutes, \"up\" for the long \nvacation.  Mr. Vholes, and his young client, and several blue bags \nhastily stuffed out of all regularity of form, as the larger sort \nof serpents are in their first gorged state, have returned to the \nofficial den.  Mr. Vholes, quiet and unmoved, as a man of so much \nrespectability ought to be, takes off his close black gloves as if \nhe were skinning his hands, lifts off his tight hat as if he were \nscalping himself, and sits down at his desk.  The client throws his \nhat and gloves upon the ground--tosses them anywhere, without \nlooking after them or caring where they go; flings himself into a \nchair, half sighing and half groaning; rests his aching head upon \nhis hand and looks the portrait of young despair.\n\n\"Again nothing done!\" says Richard.  \"Nothing, nothing done!\"\n\n\"Don't say nothing done, sir,\" returns the placid Vholes.  \"That is \nscarcely fair, sir, scarcely fair!\"\n\n\"Why, what IS done?\" says Richard, turning gloomily upon him.\n\n\"That may not be the whole question,\" returns Vholes, \"The question \nmay branch off into what is doing, what is doing?\"\n\n\"And what is doing?\" asks the moody client.\n\nVholes, sitting with his arms on the desk, quietly bringing the \ntips of his five right fingers to meet the tips of his five left \nfingers, and quietly separating them again, and fixedly and slowly \nlooking at his client, replies, \"A good deal is doing, sir.  We \nhave put our shoulders to the wheel, Mr. Carstone, and the wheel is \ngoing round.\"\n\n\"Yes, with Ixion on it.  How am I to get through the next four or \nfive accursed months?\" exclaims the young man, rising from his \nchair and walking about the room.\n\n\"Mr. C.,\" returns Vholes, following him close with his eyes \nwherever he goes, \"your spirits are hasty, and I am sorry for it on \nyour account.  Excuse me if I recommend you not to chafe so much, \nnot to be so impetuous, not to wear yourself out so.  You should \nhave more patience.  You should sustain yourself better.\"\n\n\"I ought to imitate you, in fact, Mr. Vholes?\" says Richard, \nsitting down again with an impatient laugh and beating the devil's \ntattoo with his boot on the patternless carpet.\n\n\"Sir,\" returns Vholes, always looking at the client as if he were \nmaking a lingering meal of him with his eyes as well as with his \nprofessional appetite.  \"Sir,\" returns Vholes with his inward \nmanner of speech and his bloodless quietude, \"I should not have had \nthe presumption to propose myself as a model for your imitation or \nany man's.  Let me but leave the good name to my three daughters, \nand that is enough for me; I am not a self-seeker.  But since you \nmention me so pointedly, I will acknowledge that I should like to \nimpart to you a little of my--come, sir, you are disposed to call \nit insensibility, and I am sure I have no objection--say \ninsensibility--a little of my insensibility.\"\n\n\"Mr. Vholes,\" explains the client, somewhat abashed, \"I had no \nintention to accuse you of insensibility.\"\n\n\"I think you had, sir, without knowing it,\" returns the equable \nVholes.  \"Very naturally.  It is my duty to attend to your \ninterests with a cool head, and I can quite understand that to your \nexcited feelings I may appear, at such times as the present, \ninsensible.  My daughters may know me better; my aged father may \nknow me better.  But they have known me much longer than you have, \nand the confiding eye of affection is not the distrustful eye of \nbusiness.  Not that I complain, sir, of the eye of business being \ndistrustful; quite the contrary.  In attending to your interests, I \nwish to have all possible checks upon me; it is right that I should \nhave them; I court inquiry.  But your interests demand that I \nshould be cool and methodical, Mr. Carstone; and I cannot be \notherwise--no, sir, not even to please you.\"\n\nMr. Vholes, after glancing at the official cat who is patiently \nwatching a mouse's hole, fixes his charmed gaze again on his young \nclient and proceeds in his buttoned-up, half-audible voice as if \nthere were an unclean spirit in him that will neither come out nor \nspeak out, \"What are you to do, sir, you inquire, during the \nvacation.  I should hope you gentlemen of the army may find many \nmeans of amusing yourselves if you give your minds to it.  If you \nhad asked me what I was to do during the vacation, I could have \nanswered you more readily.  I am to attend to your interests.  I am \nto be found here, day by day, attending to your interests.  That is \nmy duty, Mr. C., and term-time or vacation makes no difference to \nme.  If you wish to consult me as to your interests, you will find \nme here at all times alike.  Other professional men go out of town.  \nI don't.  Not that I blame them for going; I merely say I don't go.  \nThis desk is your rock, sir!\"\n\nMr. Vholes gives it a rap, and it sounds as hollow as a coffin.  \nNot to Richard, though.  There is encouragement in the sound to \nhim.  Perhaps Mr. Vholes knows there is.\n\n\"I am perfectly aware, Mr. Vholes,\" says Richard, more familiarly \nand good-humouredly, \"that you are the most reliable fellow in the \nworld and that to have to do with you is to have to do with a man \nof business who is not to be hoodwinked.  But put yourself in my \ncase, dragging on this dislocated life, sinking deeper and deeper \ninto difficulty every day, continually hoping and continually \ndisappointed, conscious of change upon change for the worse in \nmyself, and of no change for the better in anything else, and you \nwill find it a dark-looking case sometimes, as I do.\"\n\n\"You know,\" says Mr. Vholes, \"that I never give hopes, sir.  I told \nyou from the first, Mr. C., that I never give hopes.  Particularly \nin a case like this, where the greater part of the costs comes out \nof the estate, I should not be considerate of my good name if I \ngave hopes.  It might seem as if costs were my object.  Still, when \nyou say there is no change for the better, I must, as a bare matter \nof fact, deny that.\"\n\n\"Aye?\" returns Richard, brightening.  \"But how do you make it out?\"\n\n\"Mr. Carstone, you are represented by--\"\n\n\"You said just now--a rock.\"\n\n\"Yes, sir,\" says Mr. Vholes, gently shaking his head and rapping \nthe hollow desk, with a sound as if ashes were falling on ashes, \nand dust on dust, \"a rock.  That's something.  You are separately \nrepresented, and no longer hidden and lost in the interests of \nothers.  THAT'S something.  The suit does not sleep; we wake it up, \nwe air it, we walk it about.  THAT'S something.  It's not all \nJarndyce, in fact as well as in name.  THAT'S something.  Nobody \nhas it all his own way now, sir.  And THAT'S something, surely.\"\n\nRichard, his face flushing suddenly, strikes the desk with his \nclenched hand.\n\n\"Mr. Vholes!  If any man had told me when I first went to John \nJarndyce's house that he was anything but the disinterested friend \nhe seemed--that he was what he has gradually turned out to be--I \ncould have found no words strong enough to repel the slander; I \ncould not have defended him too ardently.  So little did I know of \nthe world!  Whereas now I do declare to you that he becomes to me \nthe embodiment of the suit; that in place of its being an \nabstraction, it is John Jarndyce; that the more I suffer, the more \nindignant I am with him; that every new delay and every new \ndisappointment is only a new injury from John Jarndyce's hand.\"\n\n\"No, no,\" says vholes.  \"Don't say so.  We ought to have patience, \nall of us.  Besides, I never disparage, sir.  I never disparage.\"\n\n\"Mr. Vholes,\" returns the angry client.  \"You know as well as I \nthat he would have strangled the suit if he could.\"\n\n\"He was not active in it,\" Mr. Vholes admits with an appearance of \nreluctance.  \"He certainly was not active in it.  But however, but \nhowever, he might have had amiable intentions.  Who can read the \nheart, Mr. C.!\"\n\n\"You can,\" returns Richard.\n\n\"I, Mr. C.?\"\n\n\"Well enough to know what his intentions were.  Are or are not our \ninterests conflicting?  Tell--me--that!\" says Richard, accompanying \nhis last three words with three raps on his rock of trust.\n\n\"Mr. C.,\" returns Vholes, immovable in attitude and never winking \nhis hungry eyes, \"I should be wanting in my duty as your \nprofessional adviser, I should be departing from my fidelity to \nyour interests, if I represented those interests as identical with \nthe interests of Mr. Jarndyce.  They are no such thing, sir.  I \nnever impute motives; I both have and am a father, and I never \nimpute motives.  But I must not shrink from a professional duty, \neven if it sows dissensions in families.  I understand you to be \nnow consulting me professionally as to your interests?  You are so?  \nI reply, then, they are not identical with those of Mr. Jarndyce.\"\n\n\"Of course they are not!\" cries Richard.  \"You found that out long \nago.\"\n\n\"Mr. C.,\" returns Vholes, \"I wish to say no more of any third party \nthan is necessary.  I wish to leave my good name unsullied, \ntogether with any little property of which I may become possessed \nthrough industry and perseverance, to my daughters Emma, Jane, and \nCaroline.  I also desire to live in amity with my professional \nbrethren.  When Mr. Skimpole did me the honour, sir--I will not say \nthe very high honour, for I never stoop to flattery--of bringing us \ntogether in this room, I mentioned to you that I could offer no \nopinion or advice as to your interests while those interests were \nentrusted to another member of the profession.  And I spoke in such \nterms as I was bound to speak of Kenge and Carboy's office, which \nstands high.  You, sir, thought fit to withdraw your interests from \nthat keeping nevertheless and to offer them to me.  You brought \nthem with clean hands, sir, and I accepted them with clean hands.  \nThose interests are now paramount in this office.  My digestive \nfunctions, as you may have heard me mention, are not in a good \nstate, and rest might improve them; but I shall not rest, sir, \nwhile I am your representative.  Whenever you want me, you will \nfind me here.  Summon me anywhere, and I will come.  During the \nlong vacation, sir, I shall devote my leisure to studying your \ninterests more and more closely and to making arrangements for \nmoving heaven and earth (including, of course, the Chancellor) \nafter Michaelmas term; and when I ultimately congratulate you, \nsir,\" says Mr. Vholes with the severity of a determined man, \"when \nI ultimately congratulate you, sir, with all my heart, on your \naccession to fortune--which, but that I never give hopes, I might \nsay something further about--you will owe me nothing beyond \nwhatever little balance may be then outstanding of the costs as \nbetween solicitor and client not included in the taxed costs \nallowed out of the estate.  I pretend to no claim upon you, Mr. C., \nbut for the zealous and active discharge--not the languid and \nroutine discharge, sir: that much credit I stipulate for--of my \nprofessional duty.  My duty prosperously ended, all between us is \nended.\"\n\nVholes finally adds, by way of rider to this declaration of his \nprinciples, that as Mr. Carstone is about to rejoin his regiment, \nperhaps Mr. C. will favour him with an order on his agent for \ntwenty pounds on account.\n\n\"For there have been many little consultations and attendances of \nlate, sir,\" observes Vholes, turning over the leaves of his diary, \n\"and these things mount up, and I don't profess to be a man of \ncapital.  When we first entered on our present relations I stated \nto you openly--it is a principle of mine that there never can be \ntoo much openness between solicitor and client--that I was not a \nman of capital and that if capital was your object you had better \nleave your papers in Kenge's office.  No, Mr. C., you will find \nnone of the advantages or disadvantages of capital here, sir.  \nThis,\" Vholes gives the desk one hollow blow again, \"is your rock; \nit pretends to be nothing more.\"\n\nThe client, with his dejection insensibly relieved and his vague \nhopes rekindled, takes pen and ink and writes the draft, not \nwithout perplexed consideration and calculation of the date it may \nbear, implying scant effects in the agent's hands.  All the while, \nVholes, buttoned up in body and mind, looks at him attentively.  \nAll the while, Vholes's official cat watches the mouse's hole.\n\nLastly, the client, shaking hands, beseeches Mr. Vholes, for \nheaven's sake and earth's sake, to do his utmost to \"pull him \nthrough\" the Court of Chancery.  Mr. Vholes, who never gives hopes, \nlays his palm upon the client's shoulder and answers with a smile, \n\"Always here, sir.  Personally, or by letter, you will always find \nme here, sir, with my shoulder to the wheel.\"  Thus they part, and \nVholes, left alone, employs himself in carrying sundry little \nmatters out of his diary into his draft bill book for the ultimate \nbehoof of his three daughters.  So might an industrious fox or bear \nmake up his account of chickens or stray travellers with an eye to \nhis cubs, not to disparage by that word the three raw-visaged, \nlank, and buttoned-up maidens who dwell with the parent Vholes in \nan earthy cottage situated in a damp garden at Kennington.\n\nRichard, emerging from the heavy shade of Symond's Inn into the \nsunshine of Chancery Lane--for there happens to be sunshine there \nto-day--walks thoughtfully on, and turns into Lincoln's Inn, and \npasses under the shadow of the Lincoln's Inn trees.  On many such \nloungers have the speckled shadows of those trees often fallen; on \nthe like bent head, the bitten nail, the lowering eye, the \nlingering step, the purposeless and dreamy air, the good consuming \nand consumed, the life turned sour.  This lounger is not shabby \nyet, but that may come.  Chancery, which knows no wisdom but in \nprecedent, is very rich in such precedents; and why should one be \ndifferent from ten thousand?\n\nYet the time is so short since his depreciation began that as he \nsaunters away, reluctant to leave the spot for some long months \ntogether, though he hates it, Richard himself may feel his own case \nas if it were a startling one.  While his heart is heavy with \ncorroding care, suspense, distrust, and doubt, it may have room for \nsome sorrowful wonder when he recalls how different his first visit \nthere, how different he, how different all the colours of his mind.  \nBut injustice breeds injustice; the fighting with shadows and being \ndefeated by them necessitates the setting up of substances to \ncombat; from the impalpable suit which no man alive can understand, \nthe time for that being long gone by, it has become a gloomy relief \nto turn to the palpable figure of the friend who would have saved \nhim from this ruin and make HIM his enemy.  Richard has told Vholes \nthe truth.  Is he in a hardened or a softened mood, he still lays \nhis injuries equally at that door; he was thwarted, in that \nquarter, of a set purpose, and that purpose could only originate in \nthe one subject that is resolving his existence into itself; \nbesides, it is a justification to him in his own eyes to have an \nembodied antagonist and oppressor.\n\nIs Richard a monster in all this, or would Chancery be found rich \nin such precedents too if they could be got for citation from the \nRecording Angel?\n\nTwo pairs of eyes not unused to such people look after him, as, \nbiting his nails and brooding, he crosses the square and is \nswallowed up by the shadow of the southern gateway.  Mr. Guppy and \nMr. Weevle are the possessors of those eyes, and they have been \nleaning in conversation against the low stone parapet under the \ntrees.  He passes close by them, seeing nothing but the ground.\n\n\"William,\" says Mr. Weevle, adjusting his whiskers, \"there's \ncombustion going on there!  It's not a case of spontaneous, but \nit's smouldering combustion it is.\"\n\n\"Ah!\" says Mr. Guppy.  \"He wouldn't keep out of Jarndyce, and I \nsuppose he's over head and ears in debt.  I never knew much of him.  \nHe was as high as the monument when he was on trial at our place.  \nA good riddance to me, whether as clerk or client!  Well, Tony, \nthat as I was mentioning is what they're up to.\"\n\nMr. Guppy, refolding his arms, resettles himself against the \nparapet, as resuming a conversation of interest.\n\n\"They are still up to it, sir,\" says Mr. Guppy, \"still taking \nstock, still examining papers, still going over the heaps and heaps \nof rubbish.  At this rate they'll be at it these seven years.\"\n\n\"And Small is helping?\"\n\n\"Small left us at a week's notice.  Told Kenge his grandfather's \nbusiness was too much for the old gentleman and he could better \nhimself by undertaking it.  There had been a coolness between \nmyself and Small on account of his being so close.  But he said you \nand I began it, and as he had me there--for we did--I put our \nacquaintance on the old footing.  That's how I come to know what \nthey're up to.\"\n\n\"You haven't looked in at all?\"\n\n\"Tony,\" says Mr. Guppy, a little disconcerted, \"to be unreserved \nwith you, I don't greatly relish the house, except in your company, \nand therefore I have not; and therefore I proposed this little \nappointment for our fetching away your things.  There goes the hour \nby the clock!  Tony\"--Mr. Guppy becomes mysteriously and tenderly \neloquent--\"it is necessary that I should impress upon your mind \nonce more that circumstances over which I have no control have made \na melancholy alteration in my most cherished plans and in that \nunrequited image which I formerly mentioned to you as a friend.  \nThat image is shattered, and that idol is laid low.  My only wish \nnow in connexion with the objects which I had an idea of carrying \nout in the court with your aid as a friend is to let 'em alone and \nbury 'em in oblivion.  Do you think it possible, do you think it at \nall likely (I put it to you, Tony, as a friend), from your \nknowledge of that capricious and deep old character who fell a prey \nto the--spontaneous element, do you, Tony, think it at all likely \nthat on second thoughts he put those letters away anywhere, after \nyou saw him alive, and that they were not destroyed that night?\"\n\nMr. Weevle reflects for some time.  Shakes his head.  Decidedly \nthinks not.\n\n\"Tony,\" says Mr. Guppy as they walk towards the court, \"once again \nunderstand me, as a friend.  Without entering into further \nexplanations, I may repeat that the idol is down.  I have no \npurpose to serve now but burial in oblivion.  To that I have \npledged myself.  I owe it to myself, and I owe it to the shattered \nimage, as also to the circumstances over which I have no control.  \nIf you was to express to me by a gesture, by a wink, that you saw \nlying anywhere in your late lodgings any papers that so much as \nlooked like the papers in question, I would pitch them into the \nfire, sir, on my own responsibility.\"\n\nMr. Weevle nods.  Mr. Guppy, much elevated in his own opinion by \nhaving delivered these observations, with an air in part forensic \nand in part romantic--this gentleman having a passion for \nconducting anything in the form of an examination, or delivering \nanything in the form of a summing up or a speech--accompanies his \nfriend with dignity to the court.\n\nNever since it has been a court has it had such a Fortunatus' purse \nof gossip as in the proceedings at the rag and bottle shop.  \nRegularly, every morning at eight, is the elder Mr. Smallweed \nbrought down to the corner and carried in, accompanied by Mrs. \nSmallweed, Judy, and Bart; and regularly, all day, do they all \nremain there until nine at night, solaced by gipsy dinners, not \nabundant in quantity, from the cook's shop, rummaging and \nsearching, digging, delving, and diving among the treasures of the \nlate lamented.  What those treasures are they keep so secret that \nthe court is maddened.  In its delirium it imagines guineas pouring \nout of tea-pots, crown-pieces overflowing punch-bowls, old chairs \nand mattresses stuffed with Bank of England notes.  It possesses \nitself of the sixpenny history (with highly coloured folding \nfrontispiece) of Mr. Daniel Dancer and his sister, and also of Mr. \nElwes, of Suffolk, and transfers all the facts from those authentic \nnarratives to Mr. Krook.  Twice when the dustman is called in to \ncarry off a cartload of old paper, ashes, and broken bottles, the \nwhole court assembles and pries into the baskets as they come \nforth.  Many times the two gentlemen who write with the ravenous \nlittle pens on the tissue-paper are seen prowling in the \nneighbourhood--shy of each other, their late partnership being \ndissolved.  The Sol skilfully carries a vein of the prevailing \ninterest through the Harmonic nights.  Little Swills, in what are \nprofessionally known as \"patter\" allusions to the subject, is \nreceived with loud applause; and the same vocalist \"gags\" in the \nregular business like a man inspired.  Even Miss M. Melvilleson, in \nthe revived Caledonian melody of \"We're a-Nodding,\" points the \nsentiment that \"the dogs love broo\" (whatever the nature of that \nrefreshment may be) with such archness and such a turn of the head \ntowards next door that she is immediately understood to mean Mr. \nSmallweed loves to find money, and is nightly honoured with a \ndouble encore.  For all this, the court discovers nothing; and as \nMrs. Piper and Mrs. Perkins now communicate to the late lodger whose \nappearance is the signal for a general rally, it is in one \ncontinual ferment to discover everything, and more.\n\nMr. Weevle and Mr. Guppy, with every eye in the court's head upon \nthem, knock at the closed door of the late lamented's house, in a \nhigh state of popularity.  But being contrary to the court's \nexpectation admitted, they immediately become unpopular and are \nconsidered to mean no good.\n\nThe shutters are more or less closed all over the house, and the \nground-floor is sufficiently dark to require candles.  Introduced \ninto the back shop by Mr. Smallweed the younger, they, fresh from \nthe sunlight, can at first see nothing save darkness and shadows; \nbut they gradually discern the elder Mr. Smallweed seated in his \nchair upon the brink of a well or grave of waste-paper, the \nvirtuous Judy groping therein like a female sexton, and Mrs. \nSmallweed on the level ground in the vicinity snowed up in a heap \nof paper fragments, print, and manuscript which would appear to be \nthe accumulated compliments that have been sent flying at her in \nthe course of the day.  The whole party, Small included, are \nblackened with dust and dirt and present a fiendish appearance not \nrelieved by the general aspect of the room.  There is more litter \nand lumber in it than of old, and it is dirtier if possible; \nlikewise, it is ghostly with traces of its dead inhabitant and even \nwith his chalked writing on the wall.\n\nOn the entrance of visitors, Mr. Smallweed and Judy simultaneously \nfold their arms and stop in their researches.\n\n\"Aha!\" croaks the old gentleman.  \"How de do, gentlemen, how de do!  \nCome to fetch your property, Mr. Weevle?  That's well, that's well.  \nHa! Ha!  We should have been forced to sell you up, sir, to pay \nyour warehouse room if you had left it here much longer.  You feel \nquite at home here again, I dare say?  Glad to see you, glad to see \nyou!\"\n\nMr. Weevle, thanking him, casts an eye about.  Mr. Guppy's eye \nfollows Mr. Weevle's eye.  Mr. Weevle's eye comes back without any \nnew intelligence in it.  Mr. Guppy's eye comes back and meets Mr. \nSmallweed's eye.  That engaging old gentleman is still murmuring, \nlike some wound-up instrument running down, \"How de do, sir--how \nde--how--\"  And then having run down, he lapses into grinning \nsilence, as Mr. Guppy starts at seeing Mr. Tulkinghorn standing in \nthe darkness opposite with his hands behind him.\n\n\"Gentleman so kind as to act as my solicitor,\" says Grandfather \nSmallweed.  \"I am not the sort of client for a gentleman of such \nnote, but he is so good!\"\n\nMr. Guppy, slightly nudging his friend to take another look, makes \na shuffling bow to Mr. Tulkinghorn, who returns it with an easy \nnod.  Mr. Tulkinghorn is looking on as if he had nothing else to do \nand were rather amused by the novelty.\n\n\"A good deal of property here, sir, I should say,\" Mr. Guppy \nobserves to Mr. Smallweed.\n\n\"Principally rags and rubbish, my dear friend!  Rags and rubbish!  \nMe and Bart and my granddaughter Judy are endeavouring to make out \nan inventory of what's worth anything to sell.  But we haven't come \nto much as yet; we--haven't--come--to--hah!\"\n\nMr. Smallweed has run down again, while Mr. Weevle's eye, attended \nby Mr. Guppy's eye, has again gone round the room and come back.\n\n\"Well, sir,\" says Mr. Weevle.  \"We won't intrude any longer if \nyou'll allow us to go upstairs.\"\n\n\"Anywhere, my dear sir, anywhere!  You're at home.  Make yourself \nso, pray!\"\n\nAs they go upstairs, Mr. Guppy lifts his eyebrows inquiringly and \nlooks at Tony.  Tony shakes his head.  They find the old room very \ndull and dismal, with the ashes of the fire that was burning on \nthat memorable night yet in the discoloured grate.  They have a \ngreat disinclination to touch any object, and carefully blow the \ndust from it first.  Nor are they desirous to prolong their visit, \npacking the few movables with all possible speed and never speaking \nabove a whisper.\n\n\"Look here,\" says Tony, recoiling.  \"Here's that horrible cat \ncoming in!\"\n\nMr. Guppy retreats behind a chair.  \"Small told me of her.  She \nwent leaping and bounding and tearing about that night like a \ndragon, and got out on the house-top, and roamed about up there for \na fortnight, and then came tumbling down the chimney very thin.  \nDid you ever see such a brute?  Looks as if she knew all about it, \ndon't she?  Almost looks as if she was Krook.  Shoohoo!  Get out, \nyou goblin!\"\n\nLady Jane, in the doorway, with her tiger snarl from ear to ear and \nher club of a tail, shows no intention of obeying; but Mr. \nTulkinghorn stumbling over her, she spits at his rusty legs, and \nswearing wrathfully, takes her arched back upstairs.  Possibly to \nroam the house-tops again and return by the chimney.\n\n\"Mr. Guppy,\" says Mr. Tulkinghorn, \"could I have a word with you?\"\n\nMr. Guppy is engaged in collecting the Galaxy Gallery of British \nBeauty from the wall and depositing those works of art in their old \nignoble band-box.  \"Sir,\" he returns, reddening, \"I wish to act \nwith courtesy towards every member of the profession, and \nespecially, I am sure, towards a member of it so well known as \nyourself--I will truly add, sir, so distinguished as yourself.  \nStill, Mr. Tulkinghorn, sir, I must stipulate that if you have any \nword with me, that word is spoken in the presence of my friend.\"\n\n\"Oh, indeed?\" says Mr. Tulkinghorn.\n\n\"Yes, sir.  My reasons are not of a personal nature at all, but \nthey are amply sufficient for myself.\"\n\n\"No doubt, no doubt.\"  Mr. Tulkinghorn is as imperturbable as the \nhearthstone to which he has quietly walked.  \"The matter is not of \nthat consequence that I need put you to the trouble of making any \nconditions, Mr. Guppy.\"  He pauses here to smile, and his smile is \nas dull and rusty as his pantaloons.  \"You are to be congratulated, \nMr. Guppy; you are a fortunate young man, sir.\"\n\n\"Pretty well so, Mr. Tulkinghorn; I don't complain.\"\n\n\"Complain?  High friends, free admission to great houses, and \naccess to elegant ladies!  Why, Mr. Guppy, there are people in \nLondon who would give their ears to be you.\"\n\nMr. Guppy, looking as if he would give his own reddening and still \nreddening ears to be one of those people at present instead of \nhimself, replies, \"Sir, if I attend to my profession and do what is \nright by Kenge and Carboy, my friends and acquaintances are of no \nconsequence to them nor to any member of the profession, not \nexcepting Mr. Tulkinghorn of the Fields.  I am not under any \nobligation to explain myself further; and with all respect for you, \nsir, and without offence--I repeat, without offence--\"\n\n\"Oh, certainly!\"\n\n\"--I don't intend to do it.\"\n\n\"Quite so,\" says Mr. Tulkinghorn with a calm nod.  \"Very good; I \nsee by these portraits that you take a strong interest in the \nfashionable great, sir?\"\n\nHe addresses this to the astounded Tony, who admits the soft \nimpeachment.\n\n\"A virtue in which few Englishmen are deficient,\" observes Mr. \nTulkinghorn.  He has been standing on the hearthstone with his back \nto the smoked chimney-piece, and now turns round with his glasses \nto his eyes.  \"Who is this?  'Lady Dedlock.'  Ha!  A very good \nlikeness in its way, but it wants force of character.  Good day to \nyou, gentlemen; good day!\"\n\nWhen he has walked out, Mr. Guppy, in a great perspiration, nerves \nhimself to the hasty completion of the taking down of the Galaxy \nGallery, concluding with Lady Dedlock.\n\n\"Tony,\" he says hurriedly to his astonished companion, \"let us be \nquick in putting the things together and in getting out of this \nplace.  It were in vain longer to conceal from you, Tony, that \nbetween myself and one of the members of a swan-like aristocracy \nwhom I now hold in my hand, there has been undivulged communication \nand association.  The time might have been when I might have \nrevealed it to you.  It never will be more.  It is due alike to the \noath I have taken, alike to the shattered idol, and alike to \ncircumstances over which I have no control, that the whole should \nbe buried in oblivion.  I charge you as a friend, by the interest \nyou have ever testified in the fashionable intelligence, and by any \nlittle advances with which I may have been able to accommodate you, \nso to bury it without a word of inquiry!\"\n\nThis charge Mr. Guppy delivers in a state little short of forensic \nlunacy, while his friend shows a dazed mind in his whole head of \nhair and even in his cultivated whiskers.\n\n\n\nCHAPTER XL\n\nNational and Domestic\n\n\nEngland has been in a dreadful state for some weeks.  Lord Coodle \nwould go out, Sir Thomas Doodle wouldn't come in, and there being \nnobody in Great Britain (to speak of) except Coodle and Doodle, \nthere has been no government.  It is a mercy that the hostile \nmeeting between those two great men, which at one time seemed \ninevitable, did not come off, because if both pistols had taken \neffect, and Coodle and Doodle had killed each other, it is to be \npresumed that England must have waited to be governed until young \nCoodle and young Doodle, now in frocks and long stockings, were \ngrown up.  This stupendous national calamity, however, was averted \nby Lord Coodle's making the timely discovery that if in the heat of \ndebate he had said that he scorned and despised the whole ignoble \ncareer of Sir Thomas Doodle, he had merely meant to say that party \ndifferences should never induce him to withhold from it the tribute \nof his warmest admiration; while it as opportunely turned out, on \nthe other hand, that Sir Thomas Doodle had in his own bosom \nexpressly booked Lord Coodle to go down to posterity as the mirror \nof virtue and honour.  Still England has been some weeks in the \ndismal strait of having no pilot (as was well observed by Sir \nLeicester Dedlock) to weather the storm; and the marvellous part of \nthe matter is that England has not appeared to care very much about \nit, but has gone on eating and drinking and marrying and giving in \nmarriage as the old world did in the days before the flood.  But \nCoodle knew the danger, and Doodle knew the danger, and all their \nfollowers and hangers-on had the clearest possible perception of \nthe danger.  At last Sir Thomas Doodle has not only condescended to \ncome in, but has done it handsomely, bringing in with him all his \nnephews, all his male cousins, and all his brothers-in-law.  So \nthere is hope for the old ship yet.\n\nDoodle has found that he must throw himself upon the country, \nchiefly in the form of sovereigns and beer.  In this metamorphosed \nstate he is available in a good many places simultaneously and can \nthrow himself upon a considerable portion of the country at one \ntime.  Britannia being much occupied in pocketing Doodle in the \nform of sovereigns, and swallowing Doodle in the form of beer, and \nin swearing herself black in the face that she does neither--\nplainly to the advancement of her glory and morality--the London \nseason comes to a sudden end, through all the Doodleites and \nCoodleites dispersing to assist Britannia in those religious \nexercises.\n\nHence Mrs. Rouncewell, housekeeper at Chesney Wold, foresees, \nthough no instructions have yet come down, that the family may \nshortly be expected, together with a pretty large accession of \ncousins and others who can in any way assist the great \nConstitutional work.  And hence the stately old dame, taking Time \nby the forelock, leads him up and down the staircases, and along \nthe galleries and passages, and through the rooms, to witness \nbefore he grows any older that everything is ready, that floors are \nrubbed bright, carpets spread, curtains shaken out, beds puffed and \npatted, still-room and kitchen cleared for action--all things \nprepared as beseems the Dedlock dignity.\n\nThis present summer evening, as the sun goes down, the preparations \nare complete.  Dreary and solemn the old house looks, with so many \nappliances of habitation and with no inhabitants except the \npictured forms upon the walls.  So did these come and go, a Dedlock \nin possession might have ruminated passing along; so did they see \nthis gallery hushed and quiet, as I see it now; so think, as I \nthink, of the gap that they would make in this domain when they \nwere gone; so find it, as I find it, difficult to believe that it \ncould be without them; so pass from my world, as I pass from \ntheirs, now closing the reverberating door; so leave no blank to \nmiss them, and so die.\n\nThrough some of the fiery windows beautiful from without, and set, \nat this sunset hour, not in dull-grey stone but in a glorious house \nof gold, the light excluded at other windows pours in rich, lavish, \noverflowing like the summer plenty in the land.  Then do the frozen \nDedlocks thaw.  Strange movements come upon their features as the \nshadows of leaves play there.  A dense justice in a corner is \nbeguiled into a wink.  A staring baronet, with a truncheon, gets a \ndimple in his chin.  Down into the bosom of a stony shepherdess \nthere steals a fleck of light and warmth that would have done it \ngood a hundred years ago.  One ancestress of Volumnia, in high-\nheeled shoes, very like her--casting the shadow of that virgin \nevent before her full two centuries--shoots out into a halo and \nbecomes a saint.  A maid of honour of the court of Charles the \nSecond, with large round eyes (and other charms to correspond), \nseems to bathe in glowing water, and it ripples as it glows.\n\nBut the fire of the sun is dying.  Even now the floor is dusky, and \nshadow slowly mounts the walls, bringing the Dedlocks down like age \nand death.  And now, upon my Lady's picture over the great chimney-\npiece, a weird shade falls from some old tree, that turns it pale, \nand flutters it, and looks as if a great arm held a veil or hood, \nwatching an opportunity to draw it over her.  Higher and darker \nrises shadow on the wall--now a red gloom on the ceiling--now the \nfire is out.\n\nAll that prospect, which from the terrace looked so near, has moved \nsolemnly away and changed--not the first nor the last of beautiful \nthings that look so near and will so change--into a distant \nphantom.  Light mists arise, and the dew falls, and all the sweet \nscents in the garden are heavv in the air.  Now the woods settle \ninto great masses as if they were each one profound tree.  And now \nthe moon rises to separate them, and to glimmer here and there in \nhorizontal lines behind their stems, and to make the avenue a \npavement of light among high cathedral arches fantastically broken.\n\nNow the moon is high; and the great house, needing habitation more \nthan ever, is like a body without life.  Now it is even awful, \nstealing through it, to think of the live people who have slept in \nthe solitary bedrooms, to say nothing of the dead.  Now is the time \nfor shadow, when every corner is a cavern and every downward step a \npit, when the stained glass is reflected in pale and faded hues \nupon the floors, when anything and everything can be made of the \nheavy staircase beams excepting their own proper shapes, when the \narmour has dull lights upon it not easily to be distinguished from \nstealthy movement, and when barred helmets are frightfully \nsuggestive of heads inside.  But of all the shadows in Chesney \nWold, the shadow in the long drawing-room upon my Lady's picture is \nthe first to come, the last to be disturbed.  At this hour and by \nthis light it changes into threatening hands raised up and menacing \nthe handsome face with every breath that stirs.\n\n\"She is not well, ma'am,\" says a groom in Mrs. Rouncewell's \naudience-chamber.\n\n\"My Lady not well!  What's the matter?\"\n\n\"Why, my Lady has been but poorly, ma'am, since she was last here--\nI don't mean with the family, ma'am, but when she was here as a \nbird of passage like.  My Lady has not been out much for her and \nhas kept her room a good deal.\"\n\n\"Chesney Wold, Thomas,\" rejoins the housekeeper with proud \ncomplacency, \"will set my Lady up!  There is no finer air and no \nhealthier soil in the world!\"\n\nThomas may have his own personal opinions on this subject, probably \nhints them in his manner of smoothing his sleek head from the nape \nof his neck to his temples, but he forbears to express them further \nand retires to the servants' hall to regale on cold meat-pie and \nale.\n\nThis groom is the pilot-fish before the nobler shark.  Next \nevening, down come Sir Leicester and my Lady with their largest \nretinue, and down come the cousins and others from all the points \nof the compass.  Thenceforth for some weeks backward and forward \nrush mysterious men with no names, who fly about all those \nparticular parts of the country on which Doodle is at present \nthrowing himself in an auriferous and malty shower, but who are \nmerely persons of a restless disposition and never do anything \nanywhere.\n\nOn these national occasions Sir Leicester finds the cousins useful.  \nA better man than the Honourable Bob Stables to meet the Hunt at \ndinner, there could not possibly be.  Better got up gentlemen than \nthe other cousins to ride over to polling-booths and hustings here \nand there, and show themselves on the side of England, it would be \nhard to find.  Volumnia is a little dim, but she is of the true \ndescent; and there are many who appreciate her sprightly \nconversation, her French conundrums so old as to have become in the \ncycles of time almost new again, the honour of taking the fair \nDedlock in to dinner, or even the privilege of her hand in the \ndance.  On these national occasions dancing may be a patriotic \nservice, and Volumnia is constantly seen hopping about for the good \nof an ungrateful and unpensioning country.\n\nMy Lady takes no great pains to entertain the numerous guests, and \nbeing still unwell, rarely appears until late in the day.  But at \nall the dismal dinners, leaden lunches, basilisk balls, and other \nmelancholy pageants, her mere appearance is a relief.  As to Sir \nLeicester, he conceives it utterly impossible that anything can be \nwanting, in any direction, by any one who has the good fortune to \nbe received under that roof; and in a state of sublime \nsatisfaction, he moves among the company, a magnificent \nrefrigerator.\n\nDaily the cousins trot through dust and canter over roadside turf, \naway to hustings and polling-booths (with leather gloves and \nhunting-whips for the counties and kid gloves and riding-canes for \nthe boroughs), and daily bring back reports on which Sir Leicester \nholds forth after dinner.  Daily the restless men who have no \noccupation in life present the appearance of being rather busy.  \nDaily Volumnia has a little cousinly talk with Sir Leicester on the \nstate of the nation, from which Sir Leicester is disposed to \nconclude that Volumnia is a more reflecting woman than he had \nthought her.\n\n\"How are we getting on?\" says Miss Volumnia, clasping her hands.  \n\"ARE we safe?\"\n\nThe mighty business is nearly over by this time, and Doodle will \nthrow himself off the country in a few days more.  Sir Leicester \nhas just appeared in the long drawing-room after dinner, a bright \nparticular star surrounded by clouds of cousins.\n\n\"Volumnia,\" replies Sir Leicester, who has a list in his hand, \"we \nare doing tolerably.\"\n\n\"Only tolerably!\"\n\nAlthough it is summer weather, Sir Leicester always has his own \nparticular fire in the evening.  He takes his usual screened seat \nnear it and repeats with much firmness and a little displeasure, as \nwho should say, I am not a common man, and when I say tolerably, it \nmust not be understood as a common expression, \"Volumnia, we are \ndoing tolerably.\"\n\n\"At least there is no opposition to YOU,\" Volumnia asserts with \nconfidence.\n\n\"No, Volumnia.  This distracted country has lost its senses in many \nrespects, I grieve to say, but--\"\n\n\"It is not so mad as that.  I am glad to hear it!\"\n\nVolumnia's finishing the sentence restores her to favour.  Sir \nLeicester, with a gracious inclination of his head, seems to say to \nhimself, \"A sensible woman this, on the whole, though occasionally \nprecipitate.\"\n\nIn fact, as to this question of opposition, the fair Dedlock's \nobservation was superfluous, Sir Leicester on these occasions \nalways delivering in his own candidateship, as a kind of handsome \nwholesale order to be promptly executed.  Two other little seats \nthat belong to him he treats as retail orders of less importance, \nmerely sending down the men and signifying to the tradespeople, \n\"You will have the goodness to make these materials into two \nmembers of Parliament and to send them home when done.\"\n\n\"I regret to say, Volumnia, that in many places the people have \nshown a bad spirit, and that this opposition to the government has \nbeen of a most determined and most implacable description.\"\n\n\"W-r-retches!\" says Volumnia.\n\n\"Even,\" proceeds Sir Leicester, glancing at the circumjacent \ncousins on sofas and ottomans, \"even in many--in fact, in most--of \nthose places in which the government has carried it against a \nfaction--\"\n\n(Note, by the way, that the Coodleites are always a faction with \nthe Doodleites, and that the Doodleites occupy exactly the same \nposition towards the Coodleites.)\n\n\"--Even in them I am shocked, for the credit of Englishmen, to be \nconstrained to inform you that the party has not triumphed without \nbeing put to an enormous expense.  Hundreds,\" says Sir Leicester, \neyeing the cousins with increasing dignity and swelling \nindignation, \"hundreds of thousands of pounds!\"\n\nIf Volumnia have a fault, it is the fault of being a trifle too \ninnocent, seeing that the innocence which would go extremely well \nwith a sash and tucker is a little out of keeping with the rouge \nand pearl necklace.  Howbeit, impelled by innocence, she asks, \n\"What for?\"\n\n\"Volumnia,\" remonstrates Sir Leicester with his utmost severity.  \n\"Volumnia!\"\n\n\"No, no, I don't mean what for,\" cries Volumnia with her favourite \nlittle scream.  \"How stupid I am!  I mean what a pity!\"\n\n\"I am glad,\" returns Sir Leicester, \"that you do mean what a pity.\"\n\nVolumnia hastens to express her opinion that the shocking people \nought to be tried as traitors and made to support the party.\n\n\"I am glad, Volumnia,\" repeats Sir Leicester, unmindful of these \nmollifying sentiments, \"that you do mean what a pity.  It is \ndisgraceful to the electors.  But as you, though inadvertently and \nwithout intending so unreasonable a question, asked me 'what for?' \nlet me reply to you.  For necessary expenses.  And I trust to your \ngood sense, Volumnia, not to pursue the subject, here or \nelsewhere.\"\n\nSir Leicester feels it incumbent on him to observe a crushing \naspect towards Volumnia because it is whispered abroad that these \nnecessary expenses will, in some two hundred election petitions, be \nunpleasantly connected with the word bribery, and because some \ngraceless jokers have consequently suggested the omission from the \nChurch service of the ordinary supplication in behalf of the High \nCourt of Parliament and have recommended instead that the prayers \nof the congregation be requested for six hundred and fifty-eight \ngentlemen in a very unhealthy state.\n\n\"I suppose,\" observes Volumnia, having taken a little time to \nrecover her spirits after her late castigation, \"I suppose Mr. \nTulkinghorn has been worked to death.\"\n\n\"I don't know,\" says Sir Leicester, opening his eyes, \"why Mr. \nTulkinghorn should be worked to death.  I don't know what Mr. \nTulkinghorn's engagements may be.  He is not a candidate.\"\n\nVolumnia had thought he might have been employed.  Sir Leicester \ncould desire to know by whom, and what for.  Volumnia, abashed \nagain, suggests, by somebody--to advise and make arrangements.  Sir \nLeicester is not aware that any client of Mr. Tulkinghorn has been \nin need of his assistance.\n\nLady Dedlock, seated at an open window with her arm upon its \ncushioned ledge and looking out at the evening shadows falling on \nthe park, has seemed to attend since the lawyer's name was \nmentioned.\n\nA languid cousin with a moustache in a state of extreme debility \nnow observes from his couch that man told him ya'as'dy that \nTulkinghorn had gone down t' that iron place t' give legal 'pinion \n'bout something, and that contest being over t' day, 'twould be \nhighly jawlly thing if Tulkinghorn should 'pear with news that \nCoodle man was floored.\n\nMercury in attendance with coffee informs Sir Leicester, hereupon, \nthat Mr. Tulkinghorn has arrived and is taking dinner.  My Lady \nturns her head inward for the moment, then looks out again as \nbefore.\n\nVolumnia is charmed to hear that her delight is come.  He is so \noriginal, such a stolid creature, such an immense being for knowing \nall sorts of things and never telling them!  Volumnia is persuaded \nthat he must be a Freemason.  Is sure he is at the head of a lodge, \nand wears short aprons, and is made a perfect idol of with \ncandlesticks and trowels.  These lively remarks the fair Dedlock \ndelivers in her youthful manner, while making a purse.\n\n\"He has not been here once,\" she adds, \"since I came.  I really had \nsome thoughts of breaking my heart for the inconstant creature.  I \nhad almost made up my mind that he was dead.\"\n\nIt may be the gathering gloom of evening, or it may be the darker \ngloom within herself, but a shade is on my Lady's face, as if she \nthought, \"I would he were!\"\n\n\"Mr. Tulkinghorn,\" says Sir Leicester, \"is always welcome here and \nalways discreet wheresoever he is.  A very valuable person, and \ndeservedly respected.\"\n\nThe debilitated cousin supposes he is \"'normously rich fler.\"\n\n\"He has a stake in the country,\" says Sir Leicester, \"I have no \ndoubt.  He is, of course, handsomely paid, and he associates almost \non a footing of equality with the highest society.\"\n\nEverybody starts.  For a gun is fired close by.\n\n\"Good gracious, what's that?\" cries Volumnia with her little \nwithered scream.\n\n\"A rat,\" says my Lady.  \"And they have shot him.\"\n\nEnter Mr. Tulkinghorn, followed by Mercuries with lamps and \ncandles.\n\n\"No, no,\" says Sir Leicester, \"I think not.  My Lady, do you object \nto the twilight?\"\n\nOn the contrary, my Lady prefers it.\n\n\"Volumnia?\"\n\nOh!  Nothing is so delicious to Volumnia as to sit and talk in the \ndark.\n\n\"Then take them away,\" says Sir Leicester.  \"Tulkinghorn, I beg \nyour pardon.  How do you do?\"\n\nMr. Tulkinghorn with his usual leisurely ease advances, renders his \npassing homage to my Lady, shakes Sir Leicester's hand, and \nsubsides into the chair proper to him when he has anything to \ncommunicate, on the opposite side of the Baronet's little \nnewspaper-table.  Sir Leicester is apprehensive that my Lady, not \nbeing very well, will take cold at that open window.  My Lady is \nobliged to him, but would rather sit there for the air.  Sir \nLeicester rises, adjusts her scarf about her, and returns to his \nseat.  Mr. Tulkinghorn in the meanwhile takes a pinch of snuff.\n\n\"Now,\" says Sir Leicester.  \"How has that contest gone?\"\n\n\"Oh, hollow from the beginning.  Not a chance.  They have brought \nin both their people.  You are beaten out of all reason.  Three to \none.\"\n\nIt is a part of Mr. Tulkinghorn's policy and mastery to have no \npolitical opinions; indeed, NO opinions.  Therefore he says \"you\" \nare beaten, and not \"we.\"\n\nSir Leicester is majestically wroth.  Volumnia never heard of such \na thing.  'The debilitated cousin holds that it's sort of thing \nthat's sure tapn slongs votes--giv'n--Mob.\n\n\"It's the place, you know,\" Mr. Tulkinghorn goes on to say in the \nfast-increasing darkness when there is silence again, \"where they \nwanted to put up Mrs. Rouncewell's son.\"\n\n\"A proposal which, as you correctly informed me at the time, he had \nthe becoming taste and perception,\" observes Sir Leicester, \"to \ndecline.  I cannot say that I by any means approve of the \nsentiments expressed by Mr. Rouncewell when he was here for some \nhalf-hour in this room, but there was a sense of propriety in his \ndecision which I am glad to acknowledge.\"\n\n\"Ha!\" says Mr. Tulkinghorn.  \"It did not prevent him from being \nvery active in this election, though.\"\n\nSir Leicester is distinctly heard to gasp before speaking.  \"Did I \nunderstand you?  Did you say that Mr. Rouncewell had been very \nactive in this election?\"\n\n\"Uncommonly active.\"\n\n\"Against--\"\n\n\"Oh, dear yes, against you.  He is a very good speaker.  Plain and \nemphatic.  He made a damaging effect, and has great influence.  In \nthe business part of the proceedings he carried all before him.\"\n\nIt is evident to the whole company, though nobody can see him, that \nSir Leicester is staring majestically.\n\n\"And he was much assisted,\" says Mr. Tulkinghorn as a wind-up, \"by \nhis son.\"\n\n\"By his son, sir?\" repeats Sir Leicester with awful politeness.\n\n\"By his son.\"\n\n\"The son who wished to marry the young woman in my Lady's service?\"\n\n\"That son.  He has but one.\"\n\n\"Then upon my honour,\" says Sir Leicester after a terrific pause \nduring which he has been heard to snort and felt to stare, \"then \nupon my honour, upon my life, upon my reputation and principles, \nthe floodgates of society are burst open, and the waters have--a--\nobliterated the landmarks of the framework of the cohesion by which \nthings are held together!\"\n\nGeneral burst of cousinly indignation.  Volumnia thinks it is \nreally high time, you know, for somebody in power to step in and do \nsomething strong.  Debilitated cousin thinks--country's going--\nDayvle--steeple-chase pace.\n\n\"I beg,\" says Sir Leicester in a breathless condition, \"that we may \nnot comment further on this circumstance.  Comment is superfluous.  \nMy Lady, let me suggest in reference to that young woman--\"\n\n\"I have no intention,\" observes my Lady from her window in a low \nbut decided tone, \"of parting with her.\"\n\n\"That was not my meaning,\" returns Sir Leicester.  \"I am glad to \nhear you say so.  I would suggest that as you think her worthy of \nyour patronage, you should exert your influence to keep her from \nthese dangerous hands.  You might show her what violence would be \ndone in such association to her duties and principles, and you \nmight preserve her for a better fate.  You might point out to her \nthat she probably would, in good time, find a husband at Chesney \nWold by whom she would not be--\"  Sir Leicester adds, after a \nmoment's consideration, \"dragged from the altars of her \nforefathers.\"\n\nThese remarks he offers with his unvarying politeness and deference \nwhen he addresses himself to his wife.  She merely moves her head \nin reply.  The moon is rising, and where she sits there is a little \nstream of cold pale light, in which her head is seen.\n\n\"It is worthy of remark,\" says Mr. Tulkinghorn, \"however, that \nthese people are, in their way, very proud.\"\n\n\"Proud?\"  Sir Leicester doubts his hearing.\n\n\"I should not be surprised if they all voluntarily abandoned the \ngirl--yes, lover and all--instead of her abandoning them, supposing \nshe remained at Chesney Wold under such circumstances.\"\n\n\"Well!\" says Sir Leicester tremulously.  \"Well! You should know, \nMr. Tulkinghorn.  You have been among them.\"\n\n\"Really, Sir Leicester,\" returns the lawyer, \"I state the fact.  \nWhy, I could tell you a story--with Lady Dedlock's permission.\"\n\nHer head concedes it, and Volumnia is enchanted.  A story!  Oh, he \nis going to tell something at last!  A ghost in it, Volumnia hopes?\n\n\"No.  Real flesh and blood.\"  Mr. Tulkinghorn stops for an instant \nand repeats with some little emphasis grafted upon his usual \nmonotony, \"Real flesh and blood, Miss Dedlock.  Sir Leicester, \nthese particulars have only lately become known to me.  They are \nvery brief.  They exemplify what I have said.  I suppress names for \nthe present.  Lady Dedlock will not think me ill-bred, I hope?\"\n\nBy the light of the fire, which is low, he can be seen looking \ntowards the moonlight.  By the light of the moon Lady Dedlock can \nbe seen, perfecfly still.\n\n\"A townsman of this Mrs. Rouncewell, a man in exactly parallel \ncircumstances as I am told, had the good fortune to have a daughter \nwho attracted the notice of a great lady.  I speak of really a \ngreat lady, not merely great to him, but married to a gentleman of \nyour condition, Sir Leicester.\"\n\nSir Leicester condescendingly says, \"Yes, Mr. Tulkinghorn,\" \nimplying that then she must have appeared of very considerable \nmoral dimensions indeed in the eyes of an iron-master.\n\n\"The lady was wealthy and beautiful, and had a liking for the girl, \nand treated her with great kindness, and kept her always near her.  \nNow this lady preserved a secret under all her greatness, which she \nhad preserved for many years.  In fact, she had in early life been \nengaged to marry a young rake--he was a captain in the army--\nnothing connected with whom came to any good.  She never did marry \nhim, but she gave birth to a child of which he was the father.\"\n\nBy the light of the fire he can be seen looking towards the \nmoonlight.  By the moonlight, Lady Dedlock can be seen in profile, \nperfectly still.\n\n\"The captain in the army being dead, she believed herself safe; but \na train of circumstances with which I need not trouble you led to \ndiscovery.  As I received the story, they began in an imprudence on \nher own part one day when she was taken by surprise, which shows \nhow difficult it is for the firmest of us (she was very firm) to be \nalways guarded.  There was great domestic trouble and amazement, \nyou may suppose; I leave you to imagine, Sir Leicester, the \nhusband's grief.  But that is not the present point.  When Mr. \nRouncewell's townsman heard of the disclosure, he no more allowed \nthe girl to be patronized and honoured than he would have suffered \nher to be trodden underfoot before his eyes.  Such was his pride, \nthat he indignantly took her away, as if from reproach and \ndisgrace.  He had no sense of the honour done him and his daughter \nby the lady's condescension; not the least.  He resented the girl's \nposition, as if the lady had been the commonest of commoners.  That \nis the story.  I hope Lady Dedlock will excuse its painful nature.\"\n\nThere are various opinions on the merits, more or less conflicting \nwith Volumnia's.  That fair young creature cannot believe there \never was any such lady and rejects the whole history on the \nthreshold.  The majority incline to the debilitated cousin's \nsentiment, which is in few words--\"no business--Rouncewell's fernal \ntownsman.\"  Sir Leicester generally refers back in his mind to Wat \nTyler and arranges a sequence of events on a plan of his own.\n\nThere is not much conversation in all, for late hours have been \nkept at Chesney Wold since the necessary expenses elsewhere began, \nand this is the first night in many on which the family have been \nalone.  It is past ten when Sir Leicester begs Mr. Tulkinghorn to \nring for candles.  Then the stream of moonlight has swelled into a \nlake, and then Lady Dedlock for the first time moves, and rises, \nand comes forward to a table for a glass of water.  Winking \ncousins, bat-like in the candle glare, crowd round to give it; \nVolumnia (always ready for something better if procurable) takes \nanother, a very mild sip of which contents her; Lady Dedlock, \ngraceful, self-possessed, looked after by admiring eyes, passes \naway slowly down the long perspective by the side of that nymph, \nnot at all improving her as a question of contrast.\n\n\n\nCHAPTER XLI\n\nIn Mr. Tulkinghorn's Room\n\n\nMr. Tulkinghorn arrives in his turret-room a little breathed by the \njourney up, though leisurely performed.  There is an expression on \nhis face as if he had discharged his mind of some grave matter and \nwere, in his close way, satisfied.  To say of a man so severely and \nstrictly self-repressed that he is triumphant would be to do him as \ngreat an injustice as to suppose him troubled with love or \nsentiment or any romantic weakness.  He is sedately satisfied.  \nPerhaps there is a rather increased sense of power upon him as he \nloosely grasps one of his veinous wrists with his other hand and \nholding it behind his back walks noiselessly up and down.\n\nThere is a capacious writing-table in the room on which is a pretty \nlarge accumulation of papers.  The green lamp is lighted, his \nreading-glasses lie upon the desk, the easy-chair is wheeled up to \nit, and it would seem as though he had intended to bestow an hour \nor so upon these claims on his attention before going to bed.  But \nhe happens not to be in a business mind.  After a glance at the \ndocuments awaiting his notice--with his head bent low over the \ntable, the old man's sight for print or writing being defective at \nnight--he opens the French window and steps out upon the leads.  \nThere he again walks slowly up and down in the same attitude, \nsubsiding, if a man so cool may have any need to subside, from the \nstory he has related downstairs.\n\nThe time was once when men as knowing as Mr. Tulkinghorn would walk \non turret-tops in the starlight and look up into the sky to read \ntheir fortunes there.  Hosts of stars are visible to-night, though \ntheir brilliancy is eclipsed by the splendour of the moon.  If he \nbe seeking his own star as he methodically turns and turns upon the \nleads, it should be but a pale one to be so rustily represented \nbelow.  If he be tracing out his destiny, that may be written in \nother characters nearer to his hand.\n\nAs he paces the leads with his eyes most probably as high above his \nthoughts as they are high above the earth, he is suddenly stopped \nin passing the window by two eyes that meet his own.  The ceiling \nof his room is rather low; and the upper part of the door, which is \nopposite the window, is of glass.  There is an inner baize door, \ntoo, but the night being warm he did not close it when he came \nupstairs.  These eyes that meet his own are looking in through the \nglass from the corridor outside.  He knows them well.  The blood \nhas not flushed into his face so suddenly and redly for many a long \nyear as when he recognizes Lady Dedlock.\n\nHe steps into the room, and she comes in too, closing both the \ndoors behind her.  There is a wild disturbance--is it fear or \nanger?--in her eyes.  In her carriage and all else she looks as she \nlooked downstairs two hours ago.\n\nIs it fear or is it anger now?  He cannot be sure.  Both might be \nas pale, both as intent.\n\n\"Lady Dedlock?\"\n\nShe does not speak at first, nor even when she has slowly dropped \ninto the easy-chair by the table.  They look at each other, like \ntwo pictures.\n\n\"Why have you told my story to so many persons?\"\n\n\"Lady Dedlock, it was necessary for me to inform you that I knew \nit.\"\n\n\"How long have you known it?\"\n\n\"I have suspected it a long while--fully known it a little while.\"\n\n\"Months?\"\n\n\"Days.\"\n\nHe stands before her with one hand on a chair-back and the other in \nhis old-fashioned waistcoat and shirt-frill, exactly as he has \nstood before her at any time since her marriage.  The same formal \npoliteness, the same composed deference that might as well be \ndefiance; the whole man the same dark, cold object, at the same \ndistance, which nothing has ever diminished.\n\n\"Is this true concerning the poor girl?\"\n\nHe slightly inclines and advances his head as not quite \nunderstanding the question.\n\n\"You know what you related.  Is it true?  Do her friends know my \nstory also?  Is it the town-talk yet?  Is it chalked upon the walls \nand cried in the streets?\"\n\nSo!  Anger, and fear, and shame.  All three contending.  What power \nthis woman has to keep these raging passions down!  Mr. \nTulkinghorn's thoughts take such form as he looks at her, with his \nragged grey eyebrows a hair's breadth more contracted than usual \nunder her gaze.\n\n\"No, Lady Dedlock.  That was a hypothetical case, arising out of \nSir Leicester's unconsciously carrying the matter with so high a \nhand.  But it would be a real case if they knew--what we know.\"\n\n\"Then they do not know it yet?\"\n\n\"No.\"\n\n\"Can I save the poor girl from injury before they know it?\"\n\n\"Really, Lady Dedlock,\" Mr. Tulkinghorn replies, \"I cannot give a \nsatisfactory opinion on that point.\"\n\nAnd he thinks, with the interest of attentive curiosity, as he \nwatches the struggle in her breast, \"The power and force of this \nwoman are astonishing!\"\n\n\"Sir,\" she says, for the moment obliged to set her lips with all \nthe energy she has, that she may speak distinctly, \"I will make it \nplainer.  I do not dispute your hypothetical case.  I anticipated \nit, and felt its truth as strongly as you can do, when I saw Mr. \nRouncewell here.  I knew very well that if he could have had the \npower of seeing me as I was, he would consider the poor girl \ntarnished by having for a moment been, although most innocently, \nthe subject of my great and distinguished patronage.  But I have an \ninterest in her, or I should rather say--no longer belonging to \nthis place--I had, and if you can find so much consideration for \nthe woman under your foot as to remember that, she will be very \nsensible of your mercy.\"\n\nMr. Tulkinghorn, profoundly attentive, throws this off with a shrug \nof self-depreciation and contracts his eyebrows a little more.\n\n\"You have prepared me for my exposure, and I thank you for that \ntoo.  Is there anything that you require of me?  Is there any claim \nthat I can release or any charge or trouble that I can spare my \nhusband in obtaining HIS release by certifying to the exactness of \nyour discovery?  I will write anything, here and now, that you will \ndictate.  I am ready to do it.\"\n\nAnd she would do it, thinks the lawver, watchful of the firm hand \nwith which she takes the pen!\n\n\"I will not trouble you, Lady Dedlock.  Pray spare yourself.\"\n\n\"I have long expected this, as you know.  I neither wish to spare \nmyself nor to be spared.  You can do nothing worse to me than you \nhave done.  Do what remains now.\"\n\n\"Lady Dedlock, there is nothing to be done.  I will take leave to \nsay a few words when you have finished.\"\n\nTheir need for watching one another should be over now, but they do \nit all this time, and the stars watch them both through the opened \nwindow.  Away in the moonlight lie the woodland fields at rest, and \nthe wide house is as quiet as the narrow one.  The narrow one!  \nWhere are the digger and the spade, this peaceful night, destined \nto add the last great secret to the many secrets of the Tulkinghorn \nexistence?  Is the man born yet, is the spade wrought yet?  Curious \nquestions to consider, more curious perhaps not to consider, under \nthe watching stars upon a summer night.\n\n\"Of repentance or remorse or any feeling of mine,\" Lady Dedlock \npresently proceeds, \"I say not a word.  If I were not dumb, you \nwould be deaf.  Let that go by.  It is not for your ears.\"\n\nHe makes a feint of offering a protest, but she sweeps it away with \nher disdainful hand.\n\n\"Of other and very different things I come to speak to you.  My \njewels are all in their proper places of keeping.  They will be \nfound there.  So, my dresses.  So, all the valuables I have.  Some \nready money I had with me, please to say, but no large amount.  I \ndid not wear my own dress, in order that I might avoid observation.  \nI went to be henceforward lost.  Make this known.  I leave no other \ncharge with you.\"\n\n\"Excuse me, Lady Dedlock,\" says Mr. Tulkinghorn, quite unmoved.  \"I \nam not sure that I understand you.  You want--\"\n\n\"To be lost to all here.  I leave Chesney Wold to-night.  I go this \nhour.\"\n\nMr. Tulkinghorn shakes his head.  She rises, but he, without moving \nhand from chair-back or from old-fashioned waistcoat and shirt-\nfrill, shakes his head.\n\n\"What?  Not go as I have said?\"\n\n\"No, Lady Dedlock,\" he very calmly replies.\n\n\"Do you know the relief that my disappearance will be?  Have you \nforgotten the stain and blot upon this place, and where it is, and \nwho it is?\"\n\n\"No, Lady Dedlock, not by any means.\"\n\nWithout deigning to rejoin, she moves to the inner door and has it \nin her hand when he says to her, without himself stirring hand or \nfoot or raising his voice, \"Lady Dedlock, have the goodness to stop \nand hear me, or before you reach the staircase I shall ring the \nalarm-bell and rouse the house.  And then I must speak out before \nevery guest and servant, every man and woman, in it.\"\n\nHe has conquered her.  She falters, trembles, and puts her hand \nconfusedly to her head.  Slight tokens these in any one else, but \nwhen so practised an eye as Mr. Tulkinghorn's sees indecision for a \nmoment in such a subject, he thoroughly knows its value.\n\nHe promptly says again, \"Have the goodness to hear me, Lady \nDedlock,\" and motions to the chair from which she has risen.  She \nhesitates, but he motions again, and she sits down.\n\n\"The relations between us are of an unfortunate description, Lady \nDedlock; but as they are not of my making, I will not apologize for \nthem.  The position I hold in reference to Sir Leicester is so well \nknown to you that I can hardly imagine but that I must long have \nappeared in your eyes the natural person to make this discovery.\"\n\n\"Sir,\" she returns without looking up from the ground on which her \neyes are now fixed, \"I had better have gone.  It would have been \nfar better not to have detained me.  I have no more to say.\"\n\n\"Excuse me, Lady Dedlock, if I add a little more to hear.\"\n\n\"I wish to hear it at the window, then.  I can't breathe where I \nam.\"\n\nHis jealous glance as she walks that way betrays an instant's \nmisgiving that she may have it in her thoughts to leap over, and \ndashing against ledge and cornice, strike her life out upon the \nterrace below.  But a moment's observation of her figure as she \nstands in the window without any support, looking out at the stars\n--not up-gloomily out at those stars which are low in the heavens, \nreassures him.  By facing round as she has moved, he stands a \nlittle behind her.\n\n\"Lady Dedlock, I have not yet been able to come to a decision \nsatisfactory to myself on the course before me.  I am not clear \nwhat to do or how to act next.  I must request you, in the \nmeantime, to keep your secret as you have kept it so long and not \nto wonder that I keep it too.\"\n\nHe pauses, but she makes no reply.\n\n\"Pardon me, Lady Dedlock.  This is an important subject.  You are \nhonouring me with your attention?\"\n\n\"I am.\"\n\n\"'Thank you.  I might have known it from what I have seen of your \nstrength of character.  I ought not to have asked the question, but \nI have the habit of making sure of my ground, step by step, as I go \non.  The sole consideration in this unhappy case is Sir Leicester.\"\n\n\"'Then why,\" she asks in a low voice and without removing her \ngloomy look from those distant stars, \"do you detain me in his \nhouse?\"\n\n\"Because he IS the consideration.  Lady Dedlock, I have no occasion \nto tell you that Sir Leicester is a very proud man, that his \nreliance upon you is implicit, that the fall of that moon out of \nthe sky would not amaze him more than your fall from your high \nposition as his wife.\"\n\nShe breathes quickly and heavily, but she stands as unflinchingly \nas ever he has seen her in the midst of her grandest company.\n\n\"I declare to you, Lady Dedlock, that with anything short of this \ncase that I have, I would as soon have hoped to root up by means of \nmy own strength and my own hands the oldest tree on this estate as \nto shake your hold upon Sir Leicester and Sir Leicester's trust and \nconfidence in you.  And even now, with this case, I hesitate.  Not \nthat he could doubt (that, even with him, is impossible), but that \nnothing can prepare him for the blow.\"\n\n\"Not my flight?\" she returned.  \"Think of it again.\"\n\n\"Your flight, Lady Dedlock, would spread the whole truth, and a \nhundred times the whole truth, far and wide.  It would be \nimpossible to save the family credit for a day.  It is not to be \nthought of.\"\n\nThere is a quiet decision in his reply which admits of no \nremonstrance.\n\n\"When I speak of Sir Leicester being the sole consideration, he and \nthe family credit are one.  Sir Leicester and the baronetcy, Sir \nLeicester and Chesney Wold, Sir Leicester and his ancestors and his \npatrimony\"--Mr. Tulkinghorn very dry here--\"are, I need not say to \nyou, Lady Dedlock, inseparable.\"\n\n\"Go on!\"\n\n\"Therefore,\" says Mr. Tulkinghorn, pursuing his case in his jog-\ntrot style, \"I have much to consider.  This is to be hushed up if \nit can be.  How can it be, if Sir Leicester is driven out of his \nwits or laid upon a death-bed?  If I inflicted this shock upon him \nto-morrow morning, how could the immediate change in him be \naccounted for?  What could have caused it?  What could have divided \nyou?  Lady Dedlock, the wall-chalking and the street-crying would \ncome on directly, and you are to remember that it would not affect \nyou merely (whom I cannot at all consider in this business) but \nyour husband, Lady Dedlock, your husband.\"\n\nHe gets plainer as he gets on, but not an atom more emphatic or \nanimated.\n\n\"There is another point of view,\" he continues, \"in which the case \npresents itself.  Sir Leicester is devoted to you almost to \ninfatuation.  He might not be able to overcome that infatuation, \neven knowing what we know.  I am putting an extreme case, but it \nmight be so.  If so, it were better that he knew nothing.  Better \nfor common sense, better for him, better for me.  I must take all \nthis into account, and it combines to render a decision very \ndifficult.\"\n\nShe stands looking out at the same stars without a word.  They are \nbeginning to pale, and she looks as if their coldness froze her.\n\n\"My experience teaches me,\" says Mr. Tulkinghorn, who has by this \ntime got his hands in his pockets and is going on in his business \nconsideration of the matter like a machine.  \"My experience teaches \nme, Lady Dedlock, that most of the people I know would do far \nbetter to leave marriage alone.  It is at the bottom of three \nfourths of their troubles.  So I thought when Sir Leicester \nmarried, and so I always have thought since.  No more about that.  \nI must now be guided by circumstances.  In the meanwhile I must beg \nyou to keep your own counsel, and I will keep mine.\"\n\n\"I am to drag my present life on, holding its pains at your \npleasure, day by day?\" she asks, still looking at the distant sky.\n\n\"Yes, I am afraid so, Lady Dedlock.\"\n\n\"It is necessary, you think, that I should be so tied to the \nstake?\"\n\n\"I am sure that what I recommend is necessary.\"\n\n\"I am to remain on this gaudy platforna on which my miserable \ndeception has been so long acted, and it is to fall beneath me when \nyou give the signal?\" she said slowly.\n\n\"Not without notice, Lady Dedlock.  I shall take no step without \nforewarning you.\"\n\nShe asks all her questions as if she were repeating them from \nmemory or calling them over in her sleep.\n\n\"We are to meet as usual?\"\n\n\"Precisely as usual, if you please.\"\n\n\"And I am to hide my guilt, as I have done so many years?\"\n\n\"As you have done so many years.  I should not have made that \nreference myself, Lady Dedlock, but I may now remind you that your \nsecret can be no heavier to you than it was, and is no worse and no \nbetter than it was.  I know it certainly, but I believe we have \nnever wholly trusted each other.\"\n\nShe stands absorbed in the same frozen way for some little time \nbefore asking, \"Is there anything more to be sald to-night?\"\n\n\"Why,\" Mr. Tulkinghorn returns methodically as he softly rubs his \nhands, \"I should like to be assured of your acquiescence in my \narrangements, Lady Dedlock.\"\n\n\"You may be assured of it.\"\n\n\"Good.  And I would wish in conclusion to remind you, as a business \nprecaution, in case it should be necessary to recall the fact in \nany communication with Sir Leicester, that throughout our interview \nI have expressly stated my sole consideration to be Sir Leicester's \nfeelings and honour and the family reputation.  I should have been \nhappy to have made Lady Dedlock a prominent consideration, too, if \nthe case had admitted of it; but unfortunately it does not.\"\n\n\"I can attest your fidelity, sir.\"\n\nBoth before and after saving it she remains absorbed, but at length \nmoves, and turns, unshaken in her natural and acquired presence, \ntowards the door.  Mr. Tulkinghorn opens both the doors exactly as \nhe would have done yesterday, or as he would have done ten years \nago, and makes his old-fashioned bow as she passes out.  It is not \nan ordinary look that he receives from the handsome face as it goes \ninto the darkness, and it is not an ordinary movement, though a \nvery slight one, that acknowledges his courtesy.  But as he \nreflects when he is left alone, the woman has been putting no \ncommon constraint upon herself.\n\nHe would know it all the better if he saw the woman pacing her own \nrooms with her hair wildly thrown from her flung-back face, her \nhands clasped behind her head, her figure twisted as if by pain.  \nHe would think so all the more if he saw the woman thus hurrying up \nand down for hours, without fatigue, without intermission, followed \nby the faithful step upon the Ghost's Walk.  But he shuts out the \nnow chilled air, draws the window-curtain, goes to bed, and falls \nasleep.  And truly when the stars go out and the wan day peeps into \nthe turret-chamber, finding him at his oldest, he looks as if the \ndigger and the spade were both commissioned and would soon be \ndigging.\n\nThe same wan day peeps in at Sir Leicester pardoning the repentant \ncountry in a majestically condescending dream; and at the cousins \nentering on various public employments, principally receipt of \nsalary; and at the chaste Volumnia, bestowing a dower of fifty \nthousand pounds upon a hideous old general with a mouth of false \nteeth like a pianoforte too full of keys, long the admiration of \nBath and the terror of every other commuuity.  Also into rooms high \nin the roof, and into offices in court-yards, and over stables, \nwhere humbler ambition dreams of bliss, in keepers' lodges, and in \nholy matrimony with Will or Sally.  Up comes the bright sun, \ndrawing everything up with it--the Wills and Sallys, the latent \nvapour in the earth, the drooping leaves and flowers, the birds and \nbeasts and creeping things, the gardeners to sweep the dewy turf \nand unfold emerald velvet where the roller passes, the smoke of the \ngreat kitchen fire wreathing itself straight and high into the \nlightsome air.  Lastly, up comes the flag over Mr. Tulkinghorn's \nunconscious head cheerfully proclaiming that Sir Leicester and Lady \nDedlock are in their happy home and that there is hospitality at \nthe place in Lincolnshire.\n\n\n\nCHAPTER XLII\n\nIn Mr. Tulkinghorn's Chambers\n\n\nFrom the verdant undulations and the spreading oaks of the Dedlock \nproperty, Mr. Tulkinghorn transfers himself to the stale heat and \ndust of London.  His manner of coming and going between the two \nplaces is one of his impenetrabilities.  He walks into Chesney Wold \nas if it were next door to his chambers and returns to his chambers \nas if he had never been out of Lincoln's Inn Fields.  He neither \nchanges his dress before the journey nor talks of it afterwards.  \nHe melted out of his turret-room this morning, just as now, in the \nlate twilight, he melts into his own square.\n\nLike a dingy London bird among the birds at roost in these pleasant \nfields, where the sheep are all made into parchment, the goats into \nwigs, and the pasture into chaff, the lawyer, smoke-dried and \nfaded, dwelling among mankind but not consorting with them, aged \nwithout experience of genial youth, and so long used to make his \ncramped nest in holes and corners of human nature that he has \nforgotten its broader and better range, comes sauntering home.  In \nthe oven made by the hot pavements and hot buildings, he has baked \nhimself dryer than usual; and he has in his thirsty mind his \nmellowed port-wine half a century old.\n\nThe lamplighter is skipping up and down his ladder on Mr. \nTulkinghorn's side of the Fields when that high-priest of noble \nmysteries arrives at his own dull court-yard.  He ascends the door-\nsteps and is gliding into the dusky hall when he encounters, on the \ntop step, a bowing and propitiatory little man.\n\n\"Is that Snagsby?\"\n\n\"Yes, sir.  I hope you are well, sir.  I was just giving you up, \nsir, and going home.\"\n\n\"Aye?  What is it?  What do you want with me?\"\n\n\"Well, sir,\" says Mr. Snagsby, holding his hat at the side of his \nhead in his deference towards his best customer, \"I was wishful to \nsay a word to you, sir.\"\n\n\"Can you say it here?\"\n\n\"Perfectly, sir.\"\n\n\"Say it then.\"  The lawyer turns, leans his arms on the iron \nrailing at the top of the steps, and looks at the lamplighter \nlighting the court-yard.\n\n\"It is relating,\" says Mr. Snagsby in a mysterious low voice, \"it \nis relating--not to put too fine a point upon it--to the foreigner, \nsir!\"\n\nMr. Tulkinghorn eyes him with some surprise.  \"What foreigner?\"\n\n\"The foreign female, sir.  French, if I don't mistake?  I am not \nacquainted with that language myself, but I should judge from her \nmanners and appearance that she was French; anyways, certainly \nforeign.  Her that was upstairs, sir, when Mr. Bucket and me had \nthe honour of waiting upon you with the sweeping-boy that night.\"\n\n\"Oh! Yes, yes.  Mademoiselle Hortense.\"\n\n\"Indeed, sir?\" Mr. Snagsby coughs his cough of submission behind \nhis hat.  \"I am not acquainted myself with the names of foreigners \nin general, but I have no doubt it WOULD be that.\"  Mr. Snagsby \nappears to have set out in this reply with some desperate design of \nrepeating the name, but on reflection coughs again to excuse \nhimself.\n\n\"And what can you have to say, Snagsby,\" demands Mr. Tulkinghorn, \n\"about her?\"\n\n\"Well, sir,\" returns the stationer, shading his communication with \nhis hat, \"it falls a little hard upon me.  My domestic happiness is \nvery great--at least, it's as great as can be expected, I'm sure--\nbut my little woman is rather given to jealousy.  Not to put too \nfine a point upon it, she is very much given to jealousy.  And you \nsee, a foreign female of that genteel appearance coming into the \nshop, and hovering--I should be the last to make use of a strong \nexpression if I could avoid it, but hovering, sir--in the court--\nyou know it is--now ain't it?  I only put it to yourself, sir.\n\nMr. Snagsby, having said this in a very plaintive manner, throws in \na cough of general application to fill up all the blanks.\n\n\"Why, what do you mean?\" asks Mr. Tulkinghorn.\n\n\"Just so, sir,\" returns Mr. Snagsby; \"I was sure you would feel it \nyourself and would excuse the reasonableness of MY feelings when \ncoupled with the known excitableness of my little woman.  You see, \nthe foreign female--which you mentioned her name just now, with \nquite a native sound I am sure--caught up the word Snagsby that \nnight, being uncommon quick, and made inquiry, and got the \ndirection and come at dinner-time.  Now Guster, our young woman, is \ntimid and has fits, and she, taking fright at the foreigner's \nlooks--which are fierce--and at a grinding manner that she has of \nspeaking--which is calculated to alarm a weak mind--gave way to it, \ninstead of bearing up against it, and tumbled down the kitchen \nstairs out of one into another, such fits as I do sometimes think \nare never gone into, or come out of, in any house but ours.  \nConsequently there was by good fortune ample occupation for my \nlittle woman, and only me to answer the shop.  When she DID say \nthat Mr. Tulkinghorn, being always denied to her by his employer \n(which I had no doubt at the time was a foreign mode of viewing a \nclerk), she would do herself the pleasure of continually calling at \nmy place until she was let in here.  Since then she has been, as I \nbegan by saying, hovering, hovering, sir\"--Mr. Snagsby repeats the \nword with pathetic emphasis--\"in the court.  The effects of which \nmovement it is impossible to calculate.  I shouldn't wonder if it \nmight have already given rise to the painfullest mistakes even in \nthe neighbours' minds, not mentioning (if such a thing was \npossible) my little woman.  Whereas, goodness knows,\" says Mr. \nSnagsby, shaking his head, \"I never had an idea of a foreign \nfemale, except as being formerly connected with a bunch of brooms \nand a baby, or at the present time with a tambourine and earrings.  \nI never had, I do assure you, sir!\"\n\nMr. Tulkinghorn had listened gravely to this complaint and inquires \nwhen the stationer has finished, \"And that's all, is it, Snagsby?\"\n\n\"Why yes, sir, that's all,\" says Mr. Snagsby, ending with a cough \nthat plainly adds, \"and it's enough too--for me.\"\n\n\"I don't know what Mademoiselle Hortense may want or mean, unless \nshe is mad,\" says the lawyer.\n\n\"Even if she was, you know, sir,\" Mr. Snagsby pleads, \"it wouldn't \nbe a consolation to have some weapon or another in the form of a \nforeign dagger planted in the family.\"\n\n\"No,\" says the other.  \"Well, well!  This shall be stopped.  I am \nsorry you have been inconvenienced.  If she comes again, send her \nhere.\"\n\nMr. Snagsby, with much bowing and short apologetic coughing, takes \nhis leave, lightened in heart.  Mr. Tulkinghorn goes upstairs, \nsaying to himself, \"These women were created to give trouble the \nwhole earth over.  The mistress not being enough to deal with, \nhere's the maid now!  But I will be short with THIS jade at least!\"\n\nSo saying, he unlocks his door, gropes his way into his murky \nrooms, lights his candles, and looks about him.  It is too dark to \nsee much of the Allegory over-head there, but that importunate \nRoman, who is for ever toppling out of the clouds and pointing, is \nat his old work pretty distinctly.  Not honouring him with much \nattention, Mr. Tulkinghorn takes a small key from his pocket, \nunlocks a drawer in which there is another key, which unlocks a \nchest in which there is another, and so comes to the cellar-key, \nwith which he prepares to descend to the regions of old wine.  He \nis going towards the door with a candle in his hand when a knock \ncomes.\n\n\"Who's this?  Aye, aye, mistress, it's you, is it?  You appear at a \ngood time.  I have just been hearing of you.  Now! What do you \nwant?\"\n\nHe stands the candle on the chimney-piece in the clerk's hall and \ntaps his dry cheek with the key as he addresses these words of \nwelcome to Mademoiselle Hortense.  That feline personage, with her \nlips tightly shut and her eyes looking out at him sideways, softly \ncloses the door before replying.\n\n\"I have had great deal of trouble to find you, sir.\"\n\n\"HAVE you!\"\n\n\"I have been here very often, sir.  It has always been said to me, \nhe is not at home, he is engage, he is this and that, he is not for \nyou.\"\n\n\"Quite right, and quite true.\"\n\n\"Not true.  Lies!\"\n\nAt times there is a suddenness in the manner of Mademoiselle \nHortense so like a bodily spring upon the subject of it that such \nsubject involuntarily starts and fails back.  It is Mr. \nTulkinghorn's case at present, though Mademoiselle Hortense, with \nher eyes almost shut up (but still looking out sideways), is only \nsmiling contemptuously and shaking her head.\n\n\"Now, mistress,\" says the lawyer, tapping the key hastily upon the \nchimney-piece.  \"If you have anything to say, say it, say it.\"\n\n\"Sir, you have not use me well.  You have been mean and shabby.\"\n\n\"Mean and shabby, eh?\" returns the lawyer, rubbing his nose with \nthe key.\n\n\"Yes.  What is it that I tell you?  You know you have.  You have \nattrapped me--catched me--to give you information; you have asked \nme to show you the dress of mine my Lady must have wore that night, \nyou have prayed me to come in it here to meet that boy.  Say! Is it \nnot?\"  Mademoiselle Hortense makes another spring.\n\n\"You are a vixen, a vixen!\"  Mr. Tulkinghorn seems to meditate as \nhe looks distrustfully at her, then he replies, \"Well, wench, well.  \nI paid you.\"\n\n\"You paid me!\" she repeats with fierce disdain.  \"Two sovereign!  I \nhave not change them, I re-fuse them, I des-pise them, I throw them \nfrom me!\"  Which she literally does, taking them out of her bosom \nas she speaks and flinging them with such violence on the floor \nthat they jerk up again into the light before they roll away into \ncorners and slowly settle down there after spinning vehemently.\n\n\"Now!\" says Mademoiselle Hortense, darkening her large eyes again.  \n\"You have paid me?  Eh, my God, oh yes!\"\n\nMr. Tulkinghorn rubs his head with the key while she entertains \nherself with a sarcastic laugh.\n\n\"You must be rich, my fair friend,\" he composedly observes, \"to \nthrow money about in that way!\"\n\n\"I AM rich,\" she returns.  \"I am very rich in hate.  I hate my \nLady, of all my heart.  You know that.\"\n\n\"Know it?  How should I know it?\"\n\n\"Because you have known it perfectly before you prayed me to give \nyou that information.  Because you have known perfectly that I was \nen-r-r-r-raged!\"  It appears impossible for mademoiselle to roll \nthe letter \"r\" sufficiently in this word, notwithstanding that she \nassists her energetic delivery by clenching both her hands and \nsetting all her teeth.\n\n\"Oh! I knew that, did I?\" says Mr. Tulkinghorn, examining the wards \nof the key.\n\n\"Yes, without doubt.  I am not blind.  You have made sure of me \nbecause you knew that.  You had reason!  I det-est her.\"  \nMademoiselle folds her arms and throws this last remark at him over \none of her shoulders.\n\n\"Having said this, have you anything else to say, mademoiselle?\"\n\n\"I am not yet placed.  Place me well.  Find me a good condition!  \nIf you cannot, or do not choose to do that, employ me to pursue \nher, to chase her, to disgrace and to dishonour her.  I will help \nyou well, and with a good will.  It is what YOU do.  Do I not know \nthat?\"\n\n\"You appear to know a good deal,\" Mr. Tulkinghorn retorts.\n\n\"Do I not?  Is it that I am so weak as to believe, like a child, \nthat I come here in that dress to rec-cive that boy only to decide \na little bet, a wager?  Eh, my God, oh yes!\"  In this reply, down \nto the word \"wager\" inclusive, mademoiselle has been ironically \npolite and tender, then as suddenly dashed into the bitterest and \nmost defiant scorn, with her black eyes in one and the same moment \nvery nearly shut and staringly wide open.\n\n\"Now, let us see,\" says Mr. Tulkinghorn, tapping his chin with the \nkey and looking imperturbably at her, \"how this matter stands.\"\n\n\"Ah! Let us see,\" mademoiselle assents, with many angry and tight \nnods of her head.\n\n\"You come here to make a remarkably modest demand, which you have \njust stated, and it not being conceded, you will come again.\"\n\n\"And again,\" says mademoiselle with more tight and angry nods.  \n\"And yet again.  And yet again.  And many times again.  In effect, \nfor ever!\"\n\n\"And not only here, but you will go to Mr, Snagsby's too, perhaps?  \nThat visit not succeeding either, you will go again perhaps?\"\n\n\"And again,\" repeats mademoiselle, cataleptic with determination.  \n\"And yet again.  And yet again.  And many times again.  In effect, \nfor ever!\"\n\n\"Very well.  Now, Mademoiselle Hortense, let me recommend you to \ntake the candle and pick up that money of yours.  I think you will \nfind it behind the clerk's partition in the corner yonder.\"\n\nShe merely throws a laugh over her shoulder and stands her ground \nwith folded arms.\n\n\"You will not, eh?\"\n\n\"No, I will not!\"\n\n\"So much the poorer you; so much the richer I!  Look, mistress, \nthis is the key of my wine-cellar.  It is a large key, but the keys \nof prisons are larger.  In this city there are houses of correction \n(where the treadmills are, for women), the gates of which are very \nstrong and heavy, and no doubt the keys too.  I am afraid a lady of \nyour spirit and activity would find it an inconvenience to have one \nof those keys turned upon her for any length of time.  What do you \nthink?\"\n\n\"I think,\" mademoiselle replies without any action and in a clear, \nobliging voice, \"that you are a miserable wretch.\"\n\n\"Probably,\" returns Mr. Tulkinghorn, quietly blowing his nose.  \n\"But I don't ask what you think of myself; I ask what you think of \nthe prison.\"\n\n\"Nothing.  What does it matter to me?\"\n\n\"Why, it matters this much, mistress,\" says the lawyer, \ndeliberately putting away his handkerchief and adjusting his frill; \n\"the law is so despotic here that it interferes to prevent any of \nour good English citizens from being troubled, even by a lady's \nvisits against his desire.  And on his complaining that he is so \ntroubled, it takes hold of the troublesome lady and shuts her up in \nprison under hard discipline.  Turns the key upon her, mistress.\"  \nIllustrating with the cellar-key.\n\n\"Truly?\" returns mademoiselle in the same pleasant voice.  \"That is \ndroll!  But--my faith! --still what does it matter to me?\"\n\n\"My fair friend,\" says Mr. Tulkinghorn, \"make another visit here, \nor at Mr. Snagsby's, and you shall learn.\"\n\n\"In that case you will send me to the prison, perhaps?\"\n\n\"Perhaps.\"\n\nIt would be contradictory for one in mademoiselle's state of \nagreeable jocularity to foam at the mouth, otherwise a tigerish \nexpansion thereabouts might look as if a very little more would \nmake her do it.\n\n\"In a word, mistress,\" says Mr. Tulkinghorn, \"I am sorry to be \nunpolite, but if you ever present yourself uninvited here--or \nthere--again, I will give you over to the police.  Their gallantry \nis great, but they carry troublesome people through the streets in \nan ignominious manner, strapped down on a board, my good wench.\"\n\n\"I will prove you,\" whispers mademoiselle, stretching out her hand, \n\"I will try if you dare to do it!\"\n\n\"And if,\" pursues the lawyer without minding her, \"I place you in \nthat good condition of being locked up in jail, it will be some \ntime before you find yourself at liberty again.\"\n\n\"I will prove you,\" repeats mademoiselle in her former whisper.\n\n\"And now,\" proceeds the lawyer, still without minding her, \"you had \nbetter go.  Think twice before you come here again.\"\n\n\"Think you,\" she answers, \"twice two hundred times!\"\n\n\"You were dismissed by your lady, you know,\" Mr. Tulkinghorn \nobserves, following her out upon the staircase, \"as the most \nimplacable and unmanageable of women.  Now turn over a new leaf and \ntake warning by what I say to you.  For what I say, I mean; and \nwhat I threaten, I will do, mistress.\"\n\nShe goes down without answering or looking behind her.  When she is \ngone, he goes down too, and returning with his cobweb-covered \nbottle, devotes himself to a leisurely enjoyment of its contents, \nnow and then, as he throws his head back in his chair, catching \nsight of the pertinacious Roman pointing from the ceiling.\n\n\n\nCHAPTER XLIII\n\nEsther's Narrative\n\n\nIt matters little now how much I thought of my living mother who \nhad told me evermore to consider her dead.  I could not venture to \napproach her or to communicate with her in writing, for my sense of \nthe peril in which her life was passed was only to be equalled by \nmy fears of increasing it.  Knowing that my mere existence as a \nliving creature was an unforeseen danger in her way, I could not \nalways conquer that terror of myself which had seized me when I \nfirst knew the secret.  At no time did I dare to utter her name.  I \nfelt as if I did not even dare to hear it.  If the conversation \nanywhere, when I was present, took that direction, as it sometimes \nnaturally did, I tried not to hear: I mentally counted, repeated \nsomething that I knew, or went out of the room.  I am conscious now \nthat I often did these things when there can have been no danger of \nher being spoken of, but I did them in the dread I had of hearing \nanything that might lead to her betrayal, and to her betrayal \nthrough me.\n\nIt matters little now how often I recalled the tones of my mother's \nvoice, wondered whether I should ever hear it again as I so longed \nto do, and thought how strange and desolate it was that it should \nbe so new to me.  It matters little that I watched for every public \nmention of my mother's name; that I passed and repassed the door of \nher house in town, loving it, but afraid to look at it; that I once \nsat in the theatre when my mother was there and saw me, and when we \nwere so wide asunder before the great company of all degrees that \nany link or confidence between us seemed a dream.  It is all, all \nover.  My lot has been so blest that I can relate little of myself \nwhich is not a story of goodness and generosity in others.  I may \nwell pass that little and go on.\n\nWhen we were settled at home again, Ada and I had many \nconversations with my guardian of which Richard was the theme.  My \ndear girl was deeply grieved that he should do their kind cousin so \nmuch wrong, but she was so faithful to Richard that she could not \nbear to blame him even for that.  My guardian was assured of it, \nand never coupled his name with a word of reproof.  \"Rick is \nmistaken, my dear,\" he would say to her.  \"Well, well!  We have all \nbeen mistaken over and over again.  We must trust to you and time \nto set him right.\"\n\nWe knew afterwards what we suspected then, that he did not trust to \ntime until he had often tried to open Richard's eyes.  That he had \nwritten to him, gone to him, talked with him, tried every gentle \nand persuasive art his kindness could devise.  Our poor devoted \nRichard was deaf and blind to all.  If he were wrong, he would make \namends when the Chancery suit was over.  If he were groping in the \ndark, he could not do better than do his utmost to clear away those \nclouds in which so much was confused and obscured.  Suspicion and \nmisunderstanding were the fault of the suit?  Then let him work the \nsuit out and come through it to his right mind.  This was his \nunvarying reply.  Jarndyce and Jarndyce had obtained such \npossession of his whole nature that it was impossible to place any \nconsideration before him which he did not, with a distorted kind of \nreason, make a new argument in favour of his doing what he did.  \n\"So that it is even more mischievous,\" said my guardian once to me, \n\"to remonstrate with the poor dear fellow than to leave him alone.\"\n\nI took one of these opportunities of mentioning my doubts of Mr. \nSkimpole as a good adviser for Richard.\n\n\"Adviser!\" returned my guardian, laughing, \"My dear, who would \nadvise with Skimpole?\"\n\n\"Encourager would perhaps have been a better word,\" said I.\n\n\"Encourager!\" returned my guardian again.  \"Who could be encouraged \nby Skimpole?\"\n\n\"Not Richard?\" I asked.\n\n\"No,\" he replied.  \"Such an unworldly, uncalculating, gossamer \ncreature is a relief to him and an amusement.  But as to advising \nor encouraging or occupying a serious station towards anybody or \nanything, it is simply not to be thought of in such a child as \nSkimpole.\"\n\n\"Pray, cousin John,\" said Ada, who had just joined us and now \nlooked over my shoulder, \"what made him such a child?\"\n\n\"What made him such a child?\" inquired my guardian, rubbing his \nhead, a little at a loss.\n\n\"Yes, cousin John.\"\n\n\"Why,\" he slowly replied, roughening his head more and more, \"he is \nall sentiment, and--and susceptibility, and--and sensibility, and--\nand imagination.  And these qualities are not regulated in him, \nsomehow.  I suppose the people who admired him for them in his \nyouth attached too much importance to them and too little to any \ntraining that would have balanced and adjusted them, and so he \nbecame what he is.  Hey?\" said my guardian, stopping short and \nlooking at us hopefully.  \"What do you think, you two?\"\n\nAda, glancing at me, said she thought it was a pity he should be an \nexpense to Richard.\n\n\"So it is, so it is,\" returned my guardian hurriedly.  \"That must \nnot be.  We must arrange that.  I must prevent it.  That will never \ndo.\"\n\nAnd I said I thought it was to be regretted that he had ever \nintroduced Richard to Mr. Vholes for a present of five pounds.\n\n\"Did he?\" said my guardian with a passing shade of vexation on his \nface.  \"But there you have the man.  There you have the man!  There \nis nothing mercenary in that with him.  He has no idea of the value \nof money.  He introduces Rick, and then he is good friends with Mr. \nVholes and borrows five pounds of him.  He means nothing by it and \nthinks nothing of it.  He told you himself, I'll be bound, my \ndear?\"\n\n\"Oh, yes!\" said I.\n\n\"Exactly!\" cried my guardian, quite triumphant.  \"There you have \nthe man!  If he had meant any harm by it or was conscious of any \nharm in it, he wouldn't tell it.  He tells it as he does it in mere \nsimplicity.  But you shall see him in his own home, and then you'll \nunderstand him better.  We must pay a visit to Harold Skimpole and \ncaution him on these points.  Lord bless you, my dears, an infant, \nan infant!\"\n\nIn pursuance of this plan, we went into London on an early day and \npresented ourselves at Mr. Skimpole's door.\n\nHe lived in a place called the Polygon, in Somers Town, where there \nwere at that time a number of poor Spanish refugees walking about \nin cloaks, smoking little paper cigars.  Whether he was a better \ntenant than one might have supposed, in consequence of his friend \nSomebody always paying his rent at last, or whether his inaptitude \nfor business rendered it particularly difficult to turn him out, I \ndon't know; but he had occupied the same house some years.  It was \nin a state of dilapidation quite equal to our expectation.  Two or \nthree of the area railings were gone, the water-butt was broken, \nthe knocker was loose, the bell-handle had been pulled off a long \ntime to judge from the rusty state of the wire, and dirty \nfootprints on the steps were the only signs of its being inhabited.\n\nA slatternly full-blown girl who seemed to be bursting out at the \nrents in her gown and the cracks in her shoes like an over-ripe \nberry answered our knock by opening the door a very little way and \nstopping up the gap with her figure.  As she knew Mr. Jarndyce \n(indeed Ada and I both thought that she evidently associated him \nwith the receipt of her wages), she immediately relented and \nallowed us to pass in.  The lock of the door being in a disabled \ncondition, she then applied herself to securing it with the chain, \nwhich was not in good action either, and said would we go upstairs?\n\nWe went upstairs to the first floor, still seeing no other \nfurniture than the dirty footprints.  Mr. Jarndyce without further \nceremony entered a room there, and we followed.  It was dingy \nenough and not at all clean, but furnished with an odd kind of \nshabby luxury, with a large footstool, a sofa, and plenty of \ncushions, an easy-chair, and plenty of pillows, a piano, books, \ndrawing materials, music, newspapers, and a few sketches and \npictures.  A broken pane of glass in one of the dirty windows was \npapered and wafered over, but there was a little plate of hothouse \nnectarines on the table, and there was another of grapes, and \nanother of sponge-cakes, and there was a bottle of light wine.  Mr. \nSkimpole himself reclined upon the sofa in a dressing-gown, \ndrinking some fragrant coffee from an old china cup--it was then \nabout mid-day--and looking at a collection of wallflowers in the \nbalcony.\n\nHe was not in the least disconcerted by our appearance, but rose \nand received us in his usual airy manner.\n\n\"Here I am, you see!\" he said when we were seated, not without some \nlittle difficulty, the greater part of the chairs being broken.  \n\"Here I am!  This is my frugal breakfast.  Some men want legs of \nbeef and mutton for breakfast; I don't.  Give me my peach, my cup \nof coffee, and my claret; I am content.  I don't want them for \nthemselves, but they remind me of the sun.  There's nothing solar \nabout legs of beef and mutton.  Mere animal satisfaction!\"\n\n\"This is our friend's consulting-room (or would be, if he ever \nprescribed), his sanctum, his studio,\" said my guardian to us.\n\n\"Yes,\" said Mr. Skimpole, turning his bright face about, \"this is \nthe bird's cage.  This is where the bird lives and sings.  They \npluck his feathers now and then and clip his wings, but he sings, \nhe sings!\"\n\nHe handed us the grapes, repeating in his radiant way, \"He sings!  \nNot an ambitious note, but still he sings.\"\n\n\"These are very fine,\" said my guardian.  \"A present?\"\n\n\"No,\" he answered.  \"No! Some amiable gardener sells them.  His man \nwanted to know, when he brought them last evening, whether he \nshould wait for the money.  'Really, my friend,' I said, 'I think \nnot--if your time is of any value to you.'  I suppose it was, for \nhe went away.\"\n\nMy guardian looked at us with a smile, as though he asked us, \"Is \nit possible to be worldly with this baby?\"\n\n\"This is a day,\" said Mr. Skimpole, gaily taking a little claret in \na tumbler, \"that will ever be remembered here.  We shall call it \nSaint Clare and Saint Summerson day.  You must see my daughters.  I \nhave a blue-eyed daughter who is my Beauty daughter, I have a \nSentiment daughter, and I have a Comedy daughter.  You must see \nthem all.  They'll be enchanted.\"\n\nHe was going to summon them when my guardian interposed and asked \nhim to pause a moment, as he wished to say a word to him first.  \n\"My dear Jarndyce,\" he cheerfully replied, going back to his sofa, \n\"as many moments as you please.  Time is no object here.  We never \nknow what o'clock it is, and we never care.  Not the way to get on \nin life, you'll tell me?  Certainly.  But we DON'T get on in life.  \nWe don't pretend to do it.\"\n\nMy guardian looked at us again, plainly saying, \"You hear him?\"\n\n\"Now, Harold,\" he began, \"the word I have to say relates to Rick.\"\n\n\"The dearest friend I have!\" returned Mr. Skimpole cordially.  \"I \nsuppose he ought not to be my dearest friend, as he is not on terms \nwith you.  But he is, I can't help it; he is full of youthful \npoetry, and I love him.  If you don't like it, I can't help it.  I \nlove him.\"\n\nThe engaging frankness with which he made this declaration really \nhad a disinterested appearance and captivated my guardian, if not, \nfor the moment, Ada too.\n\n\"You are welcome to love him as much as you like,\" returned Mr. \nJarndyce, \"but we must save his pocket, Harold.\"\n\n\"Oh!\" said Mr. Skimpole.  \"His pocket?  Now you are coming to what \nI don't understand.\"  Taking a little more claret and dipping one \nof the cakes in it, he shook his head and smiled at Ada and me with \nan ingenuous foreboding that he never could be made to understand.\n\n\"If you go with him here or there,\" said my guardian plainly, \"you \nmust not let him pay for both.\"\n\n\"My dear Jarndyce,\" returned Mr. Skimpole, his genial face \nirradiated by the comicality of this idea, \"what am I to do?  If he \ntakes me anywhere, I must go.  And how can I pay?  I never have any \nmoney.  If I had any money, I don't know anything about it.  \nSuppose I say to a man, how much?  Suppose the man says to me seven \nand sixpence?  I know nothing about seven and sixpence.  It is \nimpossible for me to pursue the subject with any consideration for \nthe man.  I don't go about asking busy people what seven and \nsixpence is in Moorish--which I don't understand.  Why should I go \nabout asking them what seven and sixpence is in Money--which I \ndon't understand?\"\n\n\"Well,\" said my guardian, by no means displeased with this artless \nreply, \"if you come to any kind of journeying with Rick, you must \nborrow the money of me (never breathing the least allusion to that \ncircumstance), and leave the calculation to him.\"\n\n\"My dear Jarndyce,\" returned Mr. Skimpole, \"I will do anything to \ngive you pleasure, but it seems an idle form--a superstition.  \nBesides, I give you my word, Miss Clare and my dear Miss Summerson, \nI thought Mr. Carstone was immensely rich.  I thought he had only \nto make over something, or to sign a bond, or a draft, or a cheque, \nor a bill, or to put something on a file somewhere, to bring down a \nshower of money.\"\n\n\"Indeed it is not so, sir,\" said Ada.  \"He is poor.\"\n\n\"No, really?\" returned Mr. Skimpole with his bright smile.  \"You \nsurprise me.\n\n\"And not being the richer for trusting in a rotten reed,\" said my \nguardian, laying his hand emphatically on the sleeve of Mr. \nSkimpole's dressing-gown, \"be you very careful not to encourage him \nin that reliance, Harold.\"\n\n\"My dear good friend,\" returned Mr. Skimpole, \"and my dear Miss \nSiunmerson, and my dear Miss Clare, how can I do that?  It's \nbusiness, and I don't know business.  It is he who encourages me.  \nHe emerges from great feats of business, presents the brightest \nprospects before me as their result, and calls upon me to admire \nthem.  I do admire them--as bright prospects.  But I know no more \nabout them, and I tell him so.\"\n\nThe helpless kind of candour with which he presented this before \nus, the light-hearted manner in which he was amused by his \ninnocence, the fantastic way in which he took himself under his own \nprotection and argued about that curious person, combined with the \ndelightful ease of everything he said exactly to make out my \nguardian's case.  The more I saw of him, the more unlikely it \nseemed to me, when he was present, that he could design, conceal, \nor influence anything; and yet the less likely that appeared when \nhe was not present, and the less agreeable it was to think of his \nhaving anything to do with any one for whom I cared.\n\nHearing that his examination (as he called it) was now over, Mr. \nSkimpole left the room with a radiant face to fetch his daughters \n(his sons had run away at various times), leaving my guardian quite \ndelighted by the manner in which he had vindicated his childish \ncharacter.  He soon came back, bringing with him the three young \nladies and Mrs. Skimpole, who had once been a beauty but was now a \ndelicate high-nosed invalid suffering under a complication of \ndisorders.\n\n\"This,\" said Mr. Skimpole, \"is my Beauty daughter, Arethusa--plays \nand sings odds and ends like her father.  This is my Sentiment \ndaughter, Laura--plays a little but don't sing.  This is my Comedy \ndaughter, Kitty--sings a little but don't play.  We all draw a \nlittle and compose a little, and none of us have any idea of time \nor money.\"\n\nMrs. Skimpole sighed, I thought, as if she would have been glad to \nstrike out this item in the family attainments.  I also thought \nthat she rather impressed her sigh upon my guardian and that she \ntook every opportunity of throwing in another.\n\n\"It is pleasant,\" said Mr. Skimpole, turning his sprightly eyes \nfrom one to the other of us, \"and it is whimsically interesting to \ntrace peculiarities in families.  In this family we are all \nchildren, and I am the youngest.\"\n\nThe daughters, who appeared to be very fond of him, were amused by \nthis droll fact, particularly the Comedy daughter.\n\n\"My dears, it is true,\" said Mr. Skimpole, \"is it not?  So it is, \nand so it must be, because like the dogs in the hymn, 'it is our \nnature to.'  Now, here is Miss Summerson with a fine administrative \ncapacity and a knowledge of details perfectly surprising.  It will \nsound very strange in Miss Summerson's ears, I dare say, that we \nknow nothing about chops in this house.  But we don't, not the \nleast.  We can't cook anything whatever.  A needle and thread we \ndon't know how to use.  We admire the people who possess the \npractical wisdom we want, but we don't quarrel with them.  Then why \nshould they quarrel with us?  Live and let live, we say to them.  \nLive upon your practical wisdom, and let us live upon you!\"\n\nHe laughed, but as usual seemed quite candid and really to mean \nwhat he said.\n\n\"We have sympathy, my roses,\" said Mr. Skimpole, \"sympathy for \neverything.  Have we not?\"\n\n\"Oh, yes, papa!\" cried the three daughters.\n\n\"In fact, that is our family department,\" said Mr. Skimpole, \"in \nthis hurly-burly of life.  We are capable of looking on and of \nbeing interested, and we DO look on, and we ARE interested.  What \nmore can we do?  Here is my Beauty daughter, married these three \nyears.  Now I dare say her marrying another child, and having two \nmore, was all wrong in point of political economy, but it was very \nagreeable.  We had our little festivities on those occasions and \nexchanged social ideas.  She brought her young husband home one \nday, and they and their young fledglings have their nest upstairs.  \nI dare say at some time or other Sentiment and Comedy will bring \nTHEIR husbands home and have THEIR nests upstairs too.  So we get \non, we don't know how, but somehow.\"\n\nShe looked very young indeed to be the mother of two children, and \nI could not help pitying both her and them.  It was evident that \nthe three daughters had grown up as they could and had had just as \nlittle haphazard instruction as qualified them to be their father's \nplaythings in his idlest hours.  His pictorial tastes were \nconsulted, I observed, in their respective styles of wearing their \nhair, the Beauty daughter being in the classic manner, the \nSentiment daughter luxuriant and flowing, and the Comedy daughter \nin the arch style, with a good deal of sprightly forehead, and \nvivacious little curls dotted about the corners of her eyes.  They \nwere dressed to correspond, though in a most untidy and negligent \nway.\n\nAda and I conversed with these young ladies and found them \nwonderfully like their father.  In the meanwhile Mr. Jarndyce (who \nhad been rubbing his head to a great extent, and hinted at a change \nin the wind) talked with Mrs. Skimpole in a corner, where we could \nnot help hearing the chink of money.  Mr. Skimpole had previously \nvolunteered to go home with us and had withdrawn to dress himself \nfor the purpose.\n\n\"My roses,\" he said when he came back, \"take care of mama.  She is \npoorly to-day.  By going home with Mr. Jarndyce for a day or two, I \nshall hear the larks sing and preserve my amiability.  It has been \ntried, you know, and would be tried again if I remained at home.\"\n\n\"That bad man!\" said the Comedy daughter.\n\n\"At the very time when he knew papa was lying ill by his \nwallflowers, looking at the blue sky,\" Laura complained.\n\n\"And when the smell of hay was in the air!\" said Arethusa.\n\n\"It showed a want of poetry in the man,\" Mr. Skimpole assented, but \nwith perfect good humour.  \"It was coarse.  There was an absence of \nthe finer touches of humanity in it!  My daughters have taken great \noffence,\" he explained to us, \"at an honest man--\"\n\n\"Not honest, papa.  Impossible!\" they all three protested.\n\n\"At a rough kind of fellow--a sort of human hedgehog rolled up,\" \nsaid Mr. Skimpole, \"who is a baker in this neighbourhood and from \nwhom we borrowed a couple of armchairs.  We wanted a couple of arm-\nchairs, and we hadn't got them, and therefore of course we looked \nto a man who HAD got them, to lend them.  Well! This morose person \nlent them, and we wore them out.  When they were worn out, he \nwanted them back.  He had them back.  He was contented, you will \nsay.  Not at all.  He objected to their being worn.  I reasoned \nwith him, and pointed out his mistake.  I said, 'Can you, at your \ntime of life, be so headstrong, my friend, as to persist that an \narm-chair is a thing to put upon a shelf and look at?  That it is \nan object to contemplate, to survey from a distance, to consider \nfrom a point of sight?  Don't you KNOW that these arm-chairs were \nborrowed to be sat upon?'  He was unreasonable and unpersuadable \nand used intemperate language.  Being as patient as I am at this \nminute, I addressed another appeal to him.  I said, 'Now, my good \nman, however our business capacities may vary, we are all children \nof one great mother, Nature.  On this blooming summer morning here \nyou see me' (I was on the sofa) 'with flowers before me, fruit upon \nthe table, the cloudless sky above me, the air full of fragrance, \ncontemplating Nature.  I entreat you, by our common brotherhood, \nnot to interpose between me and a subject so sublime, the absurd \nfigure of an angry baker!'  But he did,\" said Mr. Skimpole, raising \nhis laughing eyes in playful astonishinent; \"he did interpose that \nridiculous figure, and he does, and he will again.  And therefore I \nam very glad to get out of his way and to go home with my friend \nJarndyce.\"\n\nIt seemed to escape his consideration that Mrs. Skimpole and the \ndaughters remained behind to encounter the baker, but this was so \nold a story to all of them that it had become a matter of course.  \nHe took leave of his family with a tenderness as airy and graceful \nas any other aspect in which he showed himself and rode away with \nus in perfect harmony of mind.  We had an opportunity of seeing \nthrough some open doors, as we went downstairs, that his own \napartment was a palace to the rest of the house.\n\nI could have no anticipation, and I had none, that something very \nstartling to me at the moment, and ever memorable to me in what \nensued from it, was to happen before this day was out.  Our guest \nwas in such spirits on the way home that I could do nothing but \nlisten to him and wonder at him; nor was I alone in this, for Ada \nyielded to the same fascination.  As to my guardian, the wind, \nwhich had threatened to become fixed in the east when we left \nSomers Town, veered completely round before we were a couple of \nmiles from it.\n\nWhether of questionable childishness or not in any other matters, \nMr. Skimpole had a child's enjoyment of change and bright weather.  \nIn no way wearied by his sallies on the road, he was in the \ndrawing-room before any of us; and I heard him at the piano while I \nwas yet looking after my housekeeping, singing refrains of \nbarcaroles and drinking songs, Italian and German, by the score.\n\nWe were all assembled shortly before dinner, and he was still at \nthe piano idly picking out in his luxurious way little strains of \nmusic, and talking between whiles of finishing some sketches of the \nruined old Verulam wall to-morrow, which he had begun a year or two \nago and had got tired of, when a card was brought in and my \nguardian read aloud in a surprised voice, \"Sir Leicester Dedlock!\"\n\nThe visitor was in the room while it was yet turning round with me \nand before I had the power to stir.  If I had had it, I should have \nhurried away.  I had not even the presence of mind, in my \ngiddiness, to retire to Ada in the window, or to see the window, or \nto know where it was.  I heard my name and found that my guardian \nwas presenting me before I could move to a chair.\n\n\"Pray be seated, Sir Leicester.\"\n\n\"Mr. Jarndyce,\" said Sir Leicester in reply as he bowed and seated \nhimself, \"I do myself the honour of calling here--\"\n\n\"You do ME the honour, Sir Leicester.\"\n\n\"Thank you--of calling here on my road from Lincolnshire to express \nmy regret that any cause of complaint, however strong, that I may \nhave against a gentleman who--who is known to you and has been your \nhost, and to whom therefore I will make no farther reference, \nshould have prevented you, still more ladies under your escort and \ncharge, from seeing whatever little there may be to gratify a \npolite and refined taste at my house, Chesney Wold.\"\n\n\"You are exceedingly obliging, Sir Leicester, and on behalf of \nthose ladies (who are present) and for myself, I thank you very \nmuch.\"\n\n\"It is possible, Mr. Jarndyce, that the gentleman to whom, for the \nreasons I have mentioned, I refrain from making further allusion--\nit is possible, Mr. Jarndyce, that that gentleman may have done me \nthe honour so far to misapprehend my character as to induce you to \nbelieve that you would not have been received by my local \nestablishment in Lincolnshire with that urbanity, that courtesy, \nwhich its members are instructed to show to all ladies and \ngentlemen who present themselves at that house.  I merely beg to \nobserve, sir, that the fact is the reverse.\"\n\nMy guardian delicately dismissed this remark without making any \nverbal answer.\n\n\"It has given me pain, Mr. Jarndyce,\" Sir Leicester weightily \nproceeded.  \"I assure you, sir, it has given--me--pain--to learn \nfrom the housekeeper at Chesney Wold that a gentleman who was in \nyour company in that part of the county, and who would appear to \npossess a cultivated taste for the fine arts, was likewise deterred \nby some such cause from examining the family pictures with that \nleisure, that attention, that care, which he might have desired to \nbestow upon them and which some of them might possibly have \nrepaid.\"  Here he produced a card and read, with much gravity and a \nlittle trouble, through his eye-glass, \"Mr. Hirrold--Herald--\nHarold--Skampling--Skumpling--I beg your pardon--Skimpole.\"\n\n\"This is Mr. Harold Skimpole,\" said my guardian, evidently \nsurprised.\n\n\"Oh!\" exclaimed Sir Leicester, \"I am happy to meet Mr. Skimpole and \nto have the opportunity of tendering my personal regrets.  I hope, \nsir, that when you again find yourself in my part of the county, \nyou will be under no similar sense of restraint.\"\n\n\"You are very obliging, Sir Leicester Dedlock.  So encouraged, I \nshall certainly give myself the pleasure and advantage of another \nvisit to your beautiful house.  The owners of such places as \nChesney Wold,\" said Mr. Skimpole with his usual happy and easy air, \n\"are public benefactors.  They are good enough to maintain a number \nof delightful objects for the admiration and pleasure of us poor \nmen; and not to reap all the admiration and pleasure that they \nyield is to be ungrateful to our benefactors.\"\n\nSir Leicester seemed to approve of this sentiment highly.  \"An \nartist, sir?\"\n\n\"No,\" returned Mr. Skimpole.  \"A perfectly idle man.  A mere \namateur.\"\n\nSir Leicester seemed to approve of this even more.  He hoped he \nmight have the good fortune to be at Chesney Wold when Mr. Skimpole \nnext came down into Lincolnshire.  Mr. Skimpole professed himself \nmuch flattered and honoured.\n\n\"Mr. Skimpole mentioned,\" pursued Sir Leicester, addressing himself \nagain to my guardian, \"mentioned to the house-keeper, who, as he \nmay have observed, is an old and attached retainer of the family--\"\n\n(\"That is, when I walked through the house the other day, on the \noccasion of my going down to visit Miss Summerson and Miss Clare,\" \nMr. Skimpole airily explained to us.)\n\n\"--That the friend with whom he had formerly been staying there was \nMr. Jarndyce.\"  Sir Leicester bowed to the bearer of that name.  \n\"And hence I became aware of the circumstance for which I have \nprofessed my regret.  That this should have occurred to any \ngentleman, Mr. Jarndyce, but especially a gentleman formerly known \nto Lady Dedlock, and indeed claiming some distant connexion with \nher, and for whom (as I learn from my Lady herself) she entertains \na high respect, does, I assure you, give--me--pain.\"\n\n\"Pray say no more about it, Sir Leicester,\" returned my guardian.  \n\"I am very sensible, as I am sure we all are, of your \nconsideration.  Indeed the mistake was mine, and I ought to \napologize for it.\"\n\nI had not once looked up.  I had not seen the visitor and had not \neven appeared to myself to hear the conversation.  It surprises me \nto find that I can recall it, for it seemed to make no impression \non me as it passed.  I heard them speaking, but my mind was so \nconfused and my instinctive avoidance of this gentleman made his \npresence so distressing to me that I thought I understood nothing, \nthrough the rushing in my head and the beating of my heart.\n\n\"I mentioned the subject to Lady Dedlock,\" said Sir Leicester, \nrising, \"and my Lady informed me that she had had the pleasure of \nexchanging a few words with Mr. Jarndyce and his wards on the \noccasion of an accidental meeting during their sojourn in the \nvicinity.  Permit me, Mr. Jarndyce, to repeat to yourself, and to \nthese ladies, the assurance I have already tendered to Mr. \nSkimpole.  Circumstances undoubtedly prevent my saying that it \nwould afford me any gratification to hear that Mr. Boythorn had \nfavoured my house with his presence, but those circumstances are \nconfined to that gentleman himself and do not extend beyond him.\"\n\n\"You know my old opinion of him,\" said Mr. Skimpole, lightly \nappealing to us.  \"An amiable bull who is detenined to make every \ncolour scarlet!\"\n\nSir Leicester Dedlock coughed as if he could not possibly hear \nanother word in reference to such an individual and took his leave \nwith great ceremony and politeness.  I got to my own room with all \npossible speed and remained there until I had recovered my self-\ncommand.  It had been very much disturbed, but I was thankful to \nfind when I went downstairs again that they only rallied me for \nhaving been shy and mute before the great Lincolnshire baronet.\n\nBy that time I had made up my mind that the period was come when I \nmust tell my guardian what I knew.  The possibility of my being \nbrought into contact with my mother, of my being taken to her \nhouse, even of Mr. Skimpole's, however distantly associated with \nme, receiving kindnesses and obligations from her husband, was so \npainful that I felt I could no longer guide myself without his \nassistance.\n\nWhen we had retired for the night, and Ada and I had had our usual \ntalk in our pretty room, I went out at my door again and sought my \nguardian among his books.  I knew he always read at that hour, and \nas I drew near I saw the light shining out into the passage from \nhis reading-lamp.\n\n\"May I come in, guardian?\"\n\n\"Surely, little woman.  What's the matter?\"\n\n\"Nothing is the matter.  I thought I would like to take this quiet \ntime of saying a word to you about myself.\"\n\nHe put a chair for me, shut his book, and put it by, and turned his \nkind attentive face towards me.  I could not help observing that it \nwore that curious expression I had observed in it once before--on \nthat night when he had said that he was in no trouble which I could \nreadily understand.\n\n\"What concerns you, my dear Esther,\" said he, \"concerns us all.  \nYou cannot be more ready to speak than I am to hear.\"\n\n\"I know that, guardian.  But I have such need of your advice and \nsupport.  Oh! You don't know how much need I have to-night.\"\n\nHe looked unprepared for my being so earnest, and even a little \nalarmed.\n\n\"Or how anxious I have been to speak to you,\" said I, \"ever since \nthe visitor was here to-day.\"\n\n\"The visitor, my dear!  Sir Leicester Dedlock?\"\n\n\"Yes.\"\n\nHe folded his arms and sat looking at me with an air of the \nprofoundest astonishment, awaiting what I should say next.  I did \nnot know how to prepare him.\n\n\"Why, Esther,\" said he, breaking into a smile, \"our visitor and you \nare the two last persons on earth I should have thought of \nconnecting together!\"\n\n\"Oh, yes, guardian, I know it.  And I too, but a little while ago.\"\n\nThe smile passed from his face, and he became graver than before.  \nHe crossed to the door to see that it was shut (but I had seen to \nthat) and resumed his seat before me.\n\n\"Guardian,\" said I, \"do you remensher, when we were overtaken by \nthe thunder-storm, Lady Dedlock's speaking to you of her sister?\"\n\n\"Of course.  Of course I do.\"\n\n\"And reminding you that she and her sister had differed, had gone \ntheir several ways?\"\n\n\"Of course.\"\n\n\"Why did they separate, guardian?\"\n\nHis face quite altered as he looked at me.  \"My child, what \nquestions are these!  I never knew.  No one but themselves ever did \nknow, I believe.  Who could tell what the secrets of those two \nhandsome and proud women were!  You have seen Lady Dedlock.  If you \nhad ever seen her sister, you would know her to have been as \nresolute and haughty as she.\"\n\n\"Oh, guardian, I have seen her many and many a time!\"\n\n\"Seen her?\"\n\nHe paused a little, biting his lip.  \"Then, Esther, when you spoke \nto me long ago of Boythorn, and when I told you that he was all but \nmarried once, and that the lady did not die, but died to him, and \nthat that time had had its influence on his later life--did you \nknow it all, and know who the lady was?\"\n\n\"No, guardian,\" I returned, fearful of the light that dimly broke \nupon me.  \"Nor do I know yet.\"\n\n\"Lady Dedlock's sister.\"\n\n\"And why,\" I could scarcely ask him, \"why, guardian, pray tell me \nwhy were THEY parted?\"\n\n\"It was her act, and she kept its motives in her inflexible heart.  \nHe afterwards did conjecture (but it was mere conjecture) that some \ninjury which her haughty spirit had received in her cause of \nquarrel with her sister had wounded her beyond all reason, but she \nwrote him that from the date of that letter she died to him--as in \nliteral truth she did--and that the resolution was exacted from her \nby her knowledge of his proud temper and his strained sense of \nhonour, which were both her nature too.  In consideration for those \nmaster points in him, and even in consideration for them in \nherself, she made the sacrifice, she said, and would live in it and \ndie in it.  She did both, I fear; certainly he never saw her, never \nheard of her from that hour.  Nor did any one.\"\n\n\"Oh, guardian, what have I done!\" I cried, giving way to my grief; \n\"what sorrow have I innocently caused!\"\n\n\"You caused, Esther?\"\n\n\"Yes, guardian.  Innocently, but most surely.  That secluded sister \nis my first remembrance.\"\n\n\"No, no!\" he cried, starting.\n\n\"Yes, guardian, yes!  And HER sister is my mother!\"\n\nI would have told him all my mother's letter, but he would not hear \nit then.  He spoke so tenderly and wisely to me, and he put so \nplainly before me all I had myself imperfectly thought and hoped in \nmy better state of mind, that, penetrated as I had been with \nfervent gratitude towards him through so many years, I believed I \nhad never loved him so dearly, never thanked him in my heart so \nfully, as I did that night.  And when he had taken me to my room \nand kissed me at the door, and when at last I lay down to sleep, my \nthought was how could I ever be busy enough, how could I ever be \ngood enough, how in my little way could I ever hope to be forgetful \nenough of myself, devoted enough to him, and useful enough to \nothers, to show him how I blessed and honoured him.\n\n\n\nCHAPTER XLIV\n\nThe Letter and the Answer\n\n\nMy guardian called me into his room next morning, and then I told \nhim what had been left untold on the previous night.  There was \nnothing to be done, he said, but to keep the secret and to avoid \nanother such encounter as that of yesterday.  He understood my \nfeeling and entirely shared it.  He charged himself even with \nrestraining Mr. Skimpole from improving his opportunity.  One \nperson whom he need not name to me, it was not now possible for him \nto advise or help.  He wished it were, but no such thing could be.  \nIf her mistrust of the lawyer whom she had mentioned were well-\nfounded, which he scarcely doubted, he dreaded discovery.  He knew \nsomething of him, both by sight and by reputation, and it was \ncertain that he was a dangerous man.  Whatever happened, he \nrepeatedly impressed upon me with anxious affection and kindness, I \nwas as innocent of as himself and as unable to influence.\n\n\"Nor do I understand,\" said he, \"that any doubts tend towards you, \nmy dear.  Much suspicion may exist without that connexion.\"\n\n\"With the lawyer,\" I returned.  \"But two other persons have come \ninto my mind since I have been anxious.  Then I told him all about \nMr. Guppy, who I feared might have had his vague surmises when I \nlittle understood his meaning, but in whose silence after our last \ninterview I expressed perfect confidence.\n\n\"Well,\" said my guardian.  \"Then we may dismiss him for the \npresent.  Who is the other?\"\n\nI called to his recollection the French maid and the eager offer of \nherself she had made to me.\n\n\"Ha!\" he returned thoughtfully.  \"That is a more alarming person \nthan the clerk.  But after all, my dear, it was but seeking for a \nnew service.  She had seen you and Ada a little while before, and \nit was natural that you should come into her head.  She merely \nproposed herself for your maid, you know.  She did nothing more.\"\n\n\"Her manner was strange,\" said I.\n\n\"Yes, and her manner was strange when she took her shoes off and \nshowed that cool relish for a walk that might have ended in her \ndeath-bed,\" said my guardian.  \"It would be useless self-distress \nand torment to reckon up such chances and possibilities.  There are \nvery few harmless circumstances that would not seem full of \nperilous meaning, so considered.  Be hopeful, little woman.  You \ncan be nothing better than yourself; be that, through this \nknowledge, as you were before you had it.  It is the best you can \ndo for everybody's sake.  I, sharing the secret with you--\"\n\n\"And lightening it, guardian, so much,\" said I.\n\n\"--will be attentive to what passes in that family, so far as I can \nobserve it from my distance.  And if the time should come when I \ncan stretch out a hand to render the least service to one whom it \nis better not to name even here, I will not fail to do it for her \ndear daughter's sake.\"\n\nI thanked him with my whole heart.  What could I ever do but thank \nhim!  I was going out at the door when he asked me to stay a \nmoment.  Quickly turning round, I saw that same expression on his \nface again; and all at once, I don't know how, it flashed upon me \nas a new and far-off possibility that I understood it.\n\n\"My dear Esther,\" said my guardian, \"I have long had something in \nmy thoughts that I have wished to say to you.\"\n\n\"Indeed?\"\n\n\"I have had some difficulty in approaching it, and I still have.  I \nshould wish it to be so deliberately said, and so deliberately \nconsidered.  Would you object to my writing it?\"\n\n\"Dear guardian, how could I object to your writing anything for ME \nto read?\"\n\n\"Then see, my love,\" said he with his cheery smile, \"am I at this \nmoment quite as plain and easy--do I seem as open, as honest and \nold-fashioned--as I am at any time?\"\n\nI answered in all earnestness, \"Quite.\"  With the strictest truth, \nfor his momentary hesitation was gone (it had not lasted a minute), \nand his fine, sensible, cordial, sterling manner was restored.\n\n\"Do I look as if I suppressed anything, meant anything but what I \nsaid, had any reservation at all, no matter what?\" said he with his \nbright clear eyes on mine.\n\nI answered, most assuredly he did not.\n\n\"Can you fully trust me, and thoroughly rely on what I profess, \nEsther?\"\n\n\"Most thoroughly,\" said I with my whole heart.\n\n\"My dear girl,\" returned my guardian, \"give me your hand.\"\n\nHe took it in his, holding me lightly with his arm, and looking \ndown into my face with the same genuine freshness and faithfulness \nof manner--the old protecting manner which had made that house my \nhome in a moment--said, \"You have wrought changes in me, little \nwoman, since the winter day in the stage-coach.  First and last you \nhave done me a world of good since that time.\"\n\n\"Ah, guardian, what have you done for me since that time!\"\n\n\"But,\" said he, \"that is not to be remembered now.\"\n\n\"It never can be forgotten.\"\n\n\"Yes, Esther,\" said he with a gentle seriousness, \"it is to be \nforgotten now, to be forgotten for a while.  You are only to \nremember now that nothing can change me as you know me.  Can you \nfeel quite assured of that, my dear?\"\n\n\"I can, and I do,\" I said.\n\n\"That's much,\" he answered.  \"That's everything.  But I must not \ntake that at a word.  I will not write this something in my \nthoughts until you have quite resolved within yourself that nothing \ncan change me as you know me.  If you doubt that in the least \ndegree, I will never write it.  If you are sure of that, on good \nconsideration, send Charley to me this night week--'for the \nletter.'  But if you are not quite certain, never send.  Mind, I \ntrust to your truth, in this thing as in everything.  If you are \nnot quite certain on that one point, never send!\"\n\n\"Guardian,\" said I, \"I am already certain, I can no more be changed \nin that conviction than you can be changed towards me.  I shall \nsend Charley for the letter.\"\n\nHe shook my hand and said no more.  Nor was any more said in \nreference to this conversation, either by him or me, through the \nwhole week.  When the appointed night came, I said to Charley as \nsoon as I was alone, \"Go and knock at Mr. Jarndyce's door, Charley, \nand say you have come from me--'for the letter.'\"  Charley went up \nthe stairs, and down the stairs, and along the passages--the zig-\nzag way about the old-fashioned house seemed very long in my \nlistening ears that night--and so came back, along the passages, \nand down the stairs, and up the stairs, and brought the letter.  \n\"Lay it on the table, Charley,\" said I.  So Charley laid it on the \ntable and went to bed, and I sat looking at it without taking it \nup, thinking of many things.\n\nI began with my overshadowed childhood, and passed through those \ntimid days to the heavy time when my aunt lay dead, with her \nresolute face so cold and set, and when I was more solitary with \nMrs. Rachael than if I had had no one in the world to speak to or \nto look at.  I passed to the altered days when I was so blest as to \nfind friends in all around me, and to be beloved.  I came to the \ntime when I first saw my dear girl and was received into that \nsisterly affection which was the grace and beauty of my life.  I \nrecalled the first bright gleam of welcome which had shone out of \nthose very windows upon our expectant faces on that cold bright \nnight, and which had never paled.  I lived my happy life there over \nagain, I went through my illness and recovery, I thought of myself \nso altered and of those around me so unchanged; and all this \nhappiness shone like a light from one central figure, represented \nbefore me by the letter on the table.\n\nI opened it and read it.  It was so impressive in its love for me, \nand in the unselfish caution it gave me, and the consideration it \nshowed for me in every word, that my eyes were too often blinded to \nread much at a time.  But I read it through three times before I \nlaid it down.  I had thought beforehand that I knew its purport, \nand I did.  It asked me, would I be the mistress of Bleak House.\n\nIt was not a love letter, though it expressed so much love, but was \nwritten just as he would at any time have spoken to me.  I saw his \nface, and heard his voice, and felt the influence of his kind \nprotecting manner in every line.  It addressed me as if our places \nwere reversed, as if all the good deeds had been mine and all the \nfeelings they had awakened his.  It dwelt on my being young, and he \npast the prime of life; on his having attained a ripe age, while I \nwas a child; on his writing to me with a silvered head, and knowing \nall this so well as to set it in full before me for mature \ndeliberation.  It told me that I would gain nothing by such a \nmarriage and lose nothing by rejecting it, for no new relation \ncould enhance the tenderness in which he held me, and whatever my \ndecision was, he was certain it would be right.  But he had \nconsidered this step anew since our late confidence and had decided \non taking it, if it only served to show me through one poor \ninstance that the whole world would readily unite to falsify the \nstern prediction of my childhood.  I was the last to know what \nhappiness I could bestow upon him, but of that he said no more, for \nI was always to remember that I owed him nothing and that he was my \ndebtor, and for very much.  He had often thought of our future, and \nforeseeing that the time must come, and fearing that it might come \nsoon, when Ada (now very nearly of age) would leave us, and when \nour present mode of life must be broken up, had become accustomed \nto reflect on this proposal.  Thus he made it.  If I felt that I \ncould ever give him the best right he could have to be my \nprotector, and if I felt that I could happily and justly become the \ndear companion of his remaining life, superior to all lighter \nchances and changes than death, even then he could not have me bind \nmyself irrevocably while this letter was yet so new to me, but even \nthen I must have ample time for reconsideration.  In that case, or \nin the opposite case, let him be unchanged in his old relation, in \nhis old manner, in the old name by which I called him.  And as to \nhis bright Dame Durden and little housekeeper, she would ever be \nthe same, he knew.\n\nThis was the substance of the letter, written throughout with a \njustice and a dignity as if he were indeed my responsible guardian \nimpartially representing the proposal of a friend against whom in \nhis integrity he stated the full case.\n\nBut he did not hint to me that when I had been better looking he \nhad had this same proceeding in his thoughts and had refrained from \nit.  That when my old face was gone from me, and I had no \nattractions, he could love me just as well as in my fairer days.  \nThat the discovery of my birth gave him no shock.  That his \ngenerosity rose above my disfigurement and my inheritance of shame.  \nThat the more I stood in need of such fidelity, the more firmly I \nmight trust in him to the last.\n\nBut I knew it, I knew it well now.  It came upon me as the close of \nthe benignant history I had been pursuing, and I felt that I had \nbut one thing to do.  To devote my life to his happiness was to \nthank him poorly, and what had I wished for the other night but \nsome new means of thanking him?\n\nStill I cried very much, not only in the fullness of my heart after \nreading the letter, not only in the strangeness of the prospect--\nfor it was strange though I had expected the contents--but as if \nsomething for which there was no name or distinct idea were \nindefinitely lost to me.  I was very happy, very thankful, very \nhopeful; but I cried very much.\n\nBy and by I went to my old glass.  My eyes were red and swollen, \nand I said, \"Oh, Esther, Esther, can that be you!\"  I am afraid the \nface in the glass was going to cry again at this reproach, but I \nheld up my finger at it, and it stopped.\n\n\"That is more like the composed look you comforted me with, my \ndear, when you showed me such a change!\" said I, beginning to let \ndown my hair.  \"When you are mistress of Bleak House, you are to be \nas cheerful as a bird.  In fact, you are always to be cheerful; so \nlet us begin for once and for all.\"\n\nI went on with my hair now, quite comfortably.  I sobbed a little \nstill, but that was because I had been crying, not because I was \ncrying then.\n\n\"And so Esther, my dear, you are happy for life.  Happy with your \nbest friends, happy in your old home, happy in the power of doing a \ngreat deal of good, and happy in the undeserved love of the best of \nmen.\"\n\nI thought, all at once, if my guardian had married some one else, \nhow should I have felt, and what should I have done!  That would \nhave been a change indeed.  It presented my life in such a new and \nblank form that I rang my housekeeping keys and gave them a kiss \nbefore I laid them down in their basket again.\n\nThen I went on to think, as I dressed my hair before the glass, how \noften had I considered within myself that the deep traces of my \nillness and the circumstances of my birth were only new reasons why \nI should be busy, busy, busy--useful, amiable, serviceable, in all \nhonest, unpretending ways.  This was a good time, to be sure, to \nsit down morbidly and cry!  As to its seeming at all strange to me \nat first (if that were any excuse for crying, which it was not) \nthat I was one day to be the mistress of Bleak House, why should it \nseem strange?  Other people had thought of such things, if I had \nnot.  \"Don't you remember, my plain dear,\" I asked myself, looking \nat the glass, \"what Mrs. Woodcourt said before those scars were \nthere about your marrying--\"\n\nPerhaps the name brought them to my remembrance.  The dried remains \nof the flowers.  It would be better not to keep them now.  They had \nonly been preserved in memory of something wholly past and gone, \nbut it would be better not to keep them now.\n\nThey were in a book, and it happened to be in the next room--our \nsitting-room, dividing Ada's chamber from mine.  I took a candle \nand went softly in to fetch it from its shelf.  After I had it in \nmy hand, I saw my beautiful darling, through the open door, lying \nasleep, and I stole in to kiss her.\n\nIt was weak in me, I know, and I could have no reason for crying; \nbut I dropped a tear upon her dear face, and another, and another.  \nWeaker than that, I took the withered flowers out and put them for \na moment to her lips.  I thought about her love for Richard, \nthough, indeed, the flowers had nothing to do with that.  Then I \ntook them into my own room and burned them at the candle, and they \nwere dust in an instant.\n\nOn entering the breakfast-room next morning, I found my guardian \njust as usual, quite as frank, as open, and free.  There being not \nthe least constraint in his manner, there was none (or I think \nthere was none) in mine.  I was with him several times in the \ncourse of the morning, in and out, when there was no one there, and \nI thought it not unlikely that he might speak to me about the \nletter, but he did not say a word.\n\nSo, on the next morning, and the next, and for at least a week, \nover which time Mr. Skimpole prolonged his stay.  I expected, every \nday, that my guardian might speak to me about the letter, but he \nnever did.\n\nI thought then, growing uneasy, that I ought to write an answer.  I \ntried over and over again in my own room at night, but I could not \nwrite an answer that at all began like a good answer, so I thought \neach night I would wait one more day.  And I waited seven more \ndays, and he never said a word.\n\nAt last, Mr. Skimpole having departed, we three were one afternoon \ngoing out for a ride; and I, being dressed before Ada and going \ndown, came upon my guardian, with his back towards me, standing at \nthe drawing-room window looking out.\n\nHe turned on my coming in and said, smiling, \"Aye, it's you, little \nwoman, is it?\" and looked out again.\n\nI had made up my mind to speak to him now.  In short, I had come \ndown on purpose.  \"Guardian,\" I said, rather hesitating and \ntrembling, \"when would you like to have the answer to the letter \nCharley came for?\"\n\n\"When it's ready, my dear,\" he replied.\n\n\"I think it is ready,\" said I.\n\n\"Is Charley to bring it?\" he asked pleasantly.\n\n\"No.  I have brought it myself, guardian,\" I returned.\n\nI put my two arms round his neck and kissed him, and he said was \nthis the mistress of Bleak House, and I said yes; and it made no \ndifference presently, and we all went out together, and I said \nnothing to my precious pet about it.\n\n\n\nCHAPTER XLV\n\nIn Trust\n\n\nOne morning when I had done jingling about with my baskets of keys, \nas my beauty and I were walking round and round the garden I \nhappened to turn my eyes towards the house and saw a long thin \nshadow going in which looked like Mr. Vholes.  Ada had been telling \nme only that morning of her hopes that Richard might exhaust his \nardour in the Chancery suit by being so very earnest in it; and \ntherefore, not to damp my dear girl's spirits, I said nothing about \nMr. Vholes's shadow.\n\nPresently came Charley, lightly winding among the bushes and \ntripping along the paths, as rosy and pretty as one of Flora's \nattendants instead of my maid, saying, \"Oh, if you please, miss, \nwould you step and speak to Mr. Jarndyce!\"\n\nIt was one of Charley's peculiarities that whenever she was charged \nwith a message she always began to deliver it as soon as she \nbeheld, at any distance, the person for whom it was intended.  \nTherefore I saw Charley asking me in her usual form of words to \n\"step and speak\" to Mr. Jarndyce long before I heard her.  And when \nI did hear her, she had said it so often that she was out of \nbreath.\n\nI told Ada I would make haste back and inquired of Charley as we \nwent in whether there was not a gentleman with Mr. Jarndyce.  To \nwhich Charley, whose grammar, I confess to my shame, never did any \ncredit to my educational powers, replied, \"Yes, miss.  Him as come \ndown in the country with Mr. Richard.\"\n\nA more complete contrast than my guardian and Mr. Vholes I suppose \nthere could not be.  I found them looking at one another across a \ntable, the one so open and the other so close, the one so broad and \nupright and the other so narrow and stooping, the one giving out \nwhat he had to say in such a rich ringing voice and the other \nkeeping it in in such a cold-blooded, gasping, fish-like manner \nthat I thought I never had seen two people so unmatched.\n\n\"You know Mr. Vholes, my dear,\" said my guardian.  Not with the \ngreatest urbanity, I must say.\n\nMr. Vholes rose, gloved and buttoned up as usual, and seated \nhimself again, just as he had seated himself beside Richard in the \ngig.  Not having Richard to look at, he looked straight before him.\n\n\"Mr. Vholes,\" said my guardian, eyeing his black figure as if he \nwere a bird of ill omen, \"has brought an ugly report of our most \nunfortunate Rick.\"  Laying a marked emphasis on \"most unfortunate\" \nas if the words were rather descriptive of his connexion with Mr. \nVholes.\n\nI sat down between them; Mr. Vholes remained immovable, except that \nhe secretly picked at one of the red pimples on his yellow face \nwith his black glove.\n\n\"And as Rick and you are happily good friends, I should like to \nknow,\" said my guardian, \"what you think, my dear.  Would you be so \ngood as to--as to speak up, Mr. Vholes?\"\n\nDoing anything but that, Mr. Vholes observed, \"I have been saying \nthat I have reason to know, Miss Summerson, as Mr. C.'s \nprofessional adviser, that Mr. C.'s circumstances are at the \npresent moment in an embarrassed state.  Not so much in point of \namount as owing to the peculiar and pressing nature of liabilities \nMr. C. has incurred and the means he has of liquidating or meeting \nthe same.  I have staved off many little matters for Mr. C., but \nthere is a limit to staving off, and we have reached it.  I have \nmade some advances out of pocket to accommodate these \nunpleasantnesses, but I necessarily look to being repaid, for I do \nnot pretend to be a man of capital, and I have a father to support \nin the Vale of Taunton, besides striving to realize some little \nindependence for three dear girls at home.  My apprehension is, Mr. \nC.'s circumstances being such, lest it should end in his obtaining \nleave to part with his commission, which at all events is desirable \nto be made known to his connexions.\"\n\nMr. Vholes, who had looked at me while speaking, here emerged into \nthe silence he could hardly be said to have broken, so stifled was \nhis tone, and looked before him again.\n\n\"Imagine the poor fellow without even his present resource,\" said \nmy guardian to me.  \"Yet what can I do?  You know him, Esther.  He \nwould never accept of help from me now.  To offer it or hint at it \nwould be to drive him to an extremity, if nothing else did.\"\n\nMr. Vholes hereupon addressed me again.\n\n\"What Mr. Jarndyce remarks, miss, is no doubt the case, and is the \ndifficulty.  I do not see that anything is to be done, I do not say \nthat anything is to be done.  Far from it.  I merely come down here \nunder the seal of confidence and mention it in order that \neverything may be openly carried on and that it may not be said \nafterwards that everything was not openly carried on.  My wish is \nthat everything should be openly carried on.  I desire to leave a \ngood name behind me.  If I consulted merely my own interests with \nMr. C., I should not be here.  So insurmountable, as you must well \nknow, would be his objections.  This is not a professional \nattendance.  This can he charged to nobody.  I have no interest in \nit except as a member of society and a father--AND a son,\" said Mr. \nVholes, who had nearly forgotten that point.\n\nIt appeared to us that Mr. Vholes said neither more nor less than \nthe truth in intimating that he sought to divide the \nresponsibility, such as it was, of knowing Richard's situation.  I \ncould only suggest that I should go down to Deal, where Richard was \nthen stationed, and see him, and try if it were possible to avert \nthe worst.  Without consulting Mr. Vholes on this point, I took my \nguardian aside to propose it, while Mr. Vholes gauntly stalked to \nthe fire and warmed his funeral gloves.\n\nThe fatigue of the journey formed an immediate objection on my \nguardian's part, but as I saw he had no other, and as I was only \ntoo happy to go, I got his consent.  We had then merely to dispose \nof Mr. Vholes.\n\n\"Well, sir,\" said Mr. Jarndyce, \"Miss Summerson will communicate \nwith Mr. Carstone, and you can only hope that his position may be \nyet retrievable.  You will allow me to order you lunch after your \njourney, sir.\"\n\n\"I thank you, Mr. Jarndyce,\" said Mr. Vholes, putting out his long \nblack sleeve to check the ringing of the bell, \"not any.  I thank \nyou, no, not a morsel.  My digestion is much impaired, and I am but \na poor knife and fork at any time.  If I was to partake of solid \nfood at this period of the day, I don't know what the consequences \nmight be.  Everything having been openly carried on, sir, I will \nnow with your permission take my leave.\"\n\n\"And I would that you could take your leave, and we could all take \nour leave, Mr. Vholes,\" returned my guardian bitterly, \"of a cause \nyou know of.\"\n\nMr. Vholes, whose black dye was so deep from head to foot that it \nhad quite steamed before the fire, diffusing a very unpleasant \nperfume, made a short one-sided inclination of his head from the \nneck and slowly shook it.\n\n\"We whose ambition it is to be looked upon in the light of \nrespectable practitioners, sir, can but put our shoulders to the \nwheel.  We do it, sir.  At least, I do it myself; and I wish to \nthink well of my professional brethren, one and all.  You are \nsensible of an obligation not to refer to me, miss, in \ncommunicating with Mr. C.?\"\n\nI said I would be careful not to do it.\n\n\"Just so, miss.  Good morning.  Mr. Jarndyce, good morning, sir.\"  \nMr. Vholes put his dead glove, which scarcely seemed to have any \nhand in it, on my fingers, and then on my guardian's fingers, and \ntook his long thin shadow away.  I thought of it on the outside of \nthe coach, passing over all the sunny landscape between us and \nLondon, chilling the seed in the ground as it glided along.\n\nOf course it became necessary to tell Ada where I was going and why \nI was going, and of course she was anxious and distressed.  But she \nwas too true to Richard to say anything but words of pity and words \nof excuse, and in a more loving spirit still--my dear devoted \ngirl!--she wrote him a long letter, of which I took charge.\n\nCharley was to be my travelling companion, though I am sure I \nwanted none and would willingly have left her at home.  We all went \nto London that afternoon, and finding two places in the mail, \nsecured them.  At our usual bed-time, Charley and I were rolling \naway seaward with the Kentish letters.\n\nIt was a night's journey in those coach times, but we had the mail \nto ourselves and did not find the night very tedious.  It passed \nwith me as I suppose it would with most people under such \ncircumstances.  At one while my journey looked hopeful, and at \nanother hopeless.  Now I thought I should do some good, and now I \nwondered how I could ever have supposed so.  Now it seemed one of \nthe most reasonable things in the world that I should have come, \nand now one of the most unreasonable.  In what state I should find \nRichard, what I should say to him, and what he would say to me \noccupied my mind by turns with these two states of feeling; and the \nwheels seemed to play one tune (to which the burden of my \nguardian's letter set itself) over and over again all night.\n\nAt last we came into the narrow streets of Deal, and very gloomy \nthey were upon a raw misty morning.  The long flat beach, with its \nlittle irregular houses, wooden and brick, and its litter of \ncapstans, and great boats, and sheds, and bare upright poles with \ntackle and blocks, and loose gravelly waste places overgrown with \ngrass and weeds, wore as dull an appearance as any place I ever \nsaw.  The sea was heaving under a thick white fog; and nothing else \nwas moving but a few early ropemakers, who, with the yarn twisted \nround their bodies, looked as if, tired of their present state of \nexistence, they were spinning themselves into cordage.\n\nBut when we got into a warm room in an excellent hotel and sat \ndown, comfortably washed and dressed, to an early breakfast (for it \nwas too late to think of going to bed), Deal began to look more \ncheerful.  Our little room was like a ship's cabin, and that \ndelighted Charley very much.  Then the fog began to rise like a \ncurtain, and numbers of ships that we had had no idea were near \nappeared.  I don't know how many sail the waiter told us were then \nlying in the downs.  Some of these vessels were of grand size--one \nwas a large Indiaman just come home; and when the sun shone through \nthe clouds, maktng silvery pools in the dark sea, the way in which \nthese ships brightened, and shadowed, and changed, amid a bustle of \nboats pulling off from the shore to them and from them to the \nshore, and a general life and motion in themselves and everything \naround them, was most beautiful.\n\nThe large Indiaman was our great attraction because she had come \ninto the downs in the night.  She was surrounded by boats, and we \nsaid how glad the people on board of her must be to come ashore.  \nCharley was curious, too, about the voyage, and about the heat in \nIndia, and the serpents and the tigers; and as she picked up such \ninformation much faster than grammar, I told her what I knew on \nthose points.  I told her, too, how people in such voyages were \nsometimes wrecked and cast on rocks, where they were saved by the \nintrepidity and humanity of one man.  And Charley asking how that \ncould be, I told her how we knew at home of such a case.\n\nI had thought of sending Richard a note saying I was there, but it \nseemed so much better to go to him without preparation.  As he \nlived in barracks I was a little doubtful whether this was \nfeasible, but we went out to reconnoitre.  Peeping in at the gate \nof the barrack-yard, we found everything very quiet at that time in \nthe morning, and I asked a sergeant standing on the guardhouse-\nsteps where he lived.  He sent a man before to show me, who went up \nsome bare stairs, and knocked with his knuckles at a door, and left \nus.\n\n\"Now then!\" cried Richard from within.  So I left Charley in the \nlittle passage, and going on to the half-open door, said, \"Can I \ncome in, Richard?  It's only Dame Durden.\"\n\nHe was writing at a table, with a great confusion of clothes, tin \ncases, books, boots, brushes, and portmanteaus strewn all about the \nfloor.  He was only half dressed--in plain clothes, I observed, not \nin uniform--and his hair was unbrushed, and he looked as wild as \nhis room.  All this I saw after he had heartily welcomed me and I \nwas seated near him, for he started upon hearing my voice and \ncaught me in his arms in a moment.  Dear Richard!  He was ever the \nsame to me.  Down to--ah, poor poor fellow!--to the end, he never \nreceived me but with something of his old merry boyish manner.\n\n\"Good heaven, my dear little woman,\" said he, \"how do you come \nhere?  Who could have thought of seeing you!  Nothing the matter?  \nAda is well?\"\n\n\"Quite well.  Lovelier than ever, Richard!\"\n\n\"Ah!\" he said, lenning back in his chair.  \"My poor cousin!  I was \nwriting to you, Esther.\"\n\nSo worn and haggard as he looked, even in the fullness of his \nhandsome youth, leaning back in his chair and crushing the closely \nwritten sheet of paper in his hand!\n\n\"Have you been at the trouble of writing all that, and am I not to \nread it after all?\" I asked.\n\n\"Oh, my dear,\" he returned with a hopeless gesture.  \"You may read \nit in the whole room.  It is all over here.\"\n\nI mildly entreated him not to be despondent.  I told him that I had \nheard by chance of his being in difficulty and had come to consult \nwith him what could best be done.\n\n\"Like you, Esther, but useless, and so NOT like you!\" said he with \na melancholy smile.  \"I am away on leave this day--should have been \ngone in another hour--and that is to smooth it over, for my selling \nout.  Well! Let bygones be bygones.  So this calling follows the \nrest.  I only want to have been in the church to have made the \nround of all the professions.\"\n\n\"Richard,\" I urged, \"it is not so hopeless as that?\"\n\n\"Esther,\" he returned, \"it is indeed.  I am just so near disgrace \nas that those who are put in authority over me (as the catechism \ngoes) would far rather be without me than with me.  And they are \nright.  Apart from debts and duns and all such drawbacks, I am not \nfit even for this employment.  I have no care, no mind, no heart, \nno soul, but for one thing.  Why, if this bubble hadn't broken \nnow,\" he said, tearing the letter he had written into fragments and \nmoodily casting them away, by driblets, \"how could I have gone \nabroad?  I must have been ordered abroad, but how could I have \ngone?  How could I, with my experience of that thing, trust even \nVholes unless I was at his back!\"\n\nI suppose he knew by my face what I was about to say, but he caught \nthe hand I had laid upon his arm and touched my own lips with it to \nprevent me from going on.\n\n\"No, Dame Durden!  Two subjects I forbid--must forbid.  The first \nis John Jarndyce.  The second, you know what.  Call it madness, and \nI tell you I can't help it now, and can't be sane.  But it is no \nsuch thing; it is the one object I have to pursue.  It is a pity I \never was prevailed upon to turn out of my road for any other.  It \nwould be wisdom to abandon it now, after all the time, anxiety, and \npains I have bestowed upon it!  Oh, yes, true wisdom.  It would be \nvery agreeable, too, to some people; but I never will.\"\n\nHe was in that mood in which I thought it best not to increase his \ndetermination (if anything could increase it) by opposing him.  I \ntook out Ada's letter and put it in his hand.\n\n\"Am I to read it now?\" he asked.\n\nAs I told him yes, he laid it on the table, and resting his head \nupon his hand, began.  He had not read far when he rested his head \nupon his two hands--to hide his face from me.  In a little while he \nrose as if the light were bad and went to the window.  He finished \nreading it there, with his back towards me, and after he had \nfinished and had folded it up, stood there for some minutes with \nthe letter in his hand.  When he came back to his chair, I saw \ntears in his eyes.\n\n\"Of course, Esther, you know what she says here?\"  He spoke in a \nsoftened voice and kissed the letter as he asked me.\n\n\"Yes, Richard.\"\n\n\"Offers me,\" he went on, tapping his foot upon the floor, \"the \nlittle inheritance she is certain of so soon--just as little and as \nmuch as I have wasted--and begs and prays me to take it, set myself \nright with it, and remain in the service.\"\n\n\"I know your welfare to be the dearest wish of her heart,\" said I.  \n\"And, oh, my dear Richard, Ada's is a noble heart.\"\n\n\"I am sure it is.  I--I wish I was dead!\"\n\nHe went back to the window, and laying his arm across it, leaned \nhis head down on his arm.  It greatly affected me to see him so, \nbut I hoped he might become more yielding, and I remained silent.  \nMy experience was very limited; I was not at all prepared for his \nrousing himself out of this emotion to a new sense of injury.\n\n\"And this is the heart that the same John Jarndyce, who is not \notherwise to be mentioned between us, stepped in to estrange from \nme,\" said he indignantly.  \"And the dear girl makes me this \ngenerous offer from under the same John Jarndyce's roof, and with \nthe same John Jarndyce's gracious consent and connivance, I dare \nsay, as a new means of buying me off.\"\n\n\"Richard!\" I cried out, rising hastily.  \"I will not hear you say \nsuch shameful words!\"  I was very angry with him indeed, for the \nfirst time in my life, but it only lasted a moment.  When I saw his \nworn young face looking at me as if he were sorry, I put my hand on \nhis shoulder and said, \"If you please, my dear Richard, do not \nspeak in such a tone to me.  Consider!\"\n\nHe blamed himself exceedingly and told me in the most generous \nmanner that he had been very wrong and that he begged my pardon a \nthousand times.  At that I laughed, but trembled a little too, for \nI was rather fluttered after being so fiery.\n\n\"To accept this offer, my dear Esther,\" said he, sitting down \nbeside me and resuming our conversation, \"--once more, pray, pray \nforgive me; I am deeply grieved--to accept my dearest cousin's \noffer is, I need not say, impossible.  Besides, I have letters and \npapers that I could show you which would convince you it is all \nover here.  I have done with the red coat, believe me.  But it is \nsome satisfaction, in the midst of my troubles and perplexities, to \nknow that I am pressing Ada's interests in pressing my own.  Vholes \nhas his shoulder to the wheel, and he cannot help urging it on as \nmuch for her as for me, thank God!\"\n\nHis sanguine hopes were rising within him and lighting up his \nfeatures, but they made his face more sad to me than it had been \nbefore.\n\n\"No, no!\" cried Richard exultingly.  \"If every farthing of Ada's \nlittle fortune were mine, no part of it should be spent in \nretaining me in what I am not fit for, can take no interest in, and \nam weary of.  It should be devoted to what promises a better \nreturn, and should be used where she has a larger stake.  Don't be \nuneasy for me!  I shall now have only one thing on my mind, and \nVholes and I will work it.  I shall not be without means.  Free of \nmy commission, I shall be able to compound with some small usurers \nwho will hear of nothing but their bond now--Vholes says so.  I \nshould have a balance in my favour anyway, but that would swell it.  \nCome, come!  You shall carry a letter to Ada from me, Esther, and \nyou must both of you be more hopeful of me and not believe that I \nam quite cast away just yet, my dear.\"\n\nI will not repeat what I said to Richard.  I know it was tiresome, \nand nobody is to suppose for a moment that it was at all wise.  It \nonly came from my heart.  He heard it patiently and feelingly, but \nI saw that on the two subjects he had reserved it was at present \nhopeless to make any representation to him.  I saw too, and had \nexperienced in this very interview, the sense of my guardian's \nremark that it was even more mischievous to use persuasion with him \nthan to leave him as he was.\n\nTherefore I was driven at last to asking Richard if he would mind \nconvincing me that it really was all over there, as he had said, \nand that it was not his mere impression.  He showed me without \nhesitation a correspondence making it quite plain that his \nretirement was arranged.  I found, from what he told me, that Mr. \nVholes had copies of these papers and had been in consultation with \nhim throughout.  Beyond ascertaining this, and having been the \nbearer of Ada's letter, and being (as I was going to be) Richard's \ncompanion back to London, I had done no good by coming down.  \nAdmitting this to myself with a reluctant heart, I said I would \nreturn to the hotel and wait until he joined me there, so he threw \na cloak over his shoulders and saw me to the gate, and Charley and \nI went back along the beach.\n\nThere was a concourse of people in one spot, surrounding some naval \nofficers who were landing from a boat, and pressing about them with \nunusual interest.  I said to Charley this would be one of the great \nIndiaman's boats now, and we stopped to look.\n\nThe gentlemen came slowly up from the waterside, speaking good-\nhumouredly to each other and to the people around and glancing \nabout them as if they were glad to be in England again.  \"Charley, \nCharley,\" said I, \"come away!\"  And I hurried on so swiftly that my \nlittle maid was surprised.\n\nIt was not until we were shut up in our cabin-room and I had had \ntime to take breath that I began to think why I had made such \nhaste.  In one of the sunburnt faces I had recognized Mr. Allan \nWoodcourt, and I had been afraid of his recognizing me.  I had been \nunwilling that he should see my altered looks.  I had been taken by \nsurprise, and my courage had quite failed me.\n\nBut I knew this would not do, and I now said to myself, \"My dear, \nthere is no reason--there is and there can be no reason at all--why \nit should be worse for you now than it ever has been.  What you \nwere last month, you are to-day; you are no worse, you are no \nbetter.  This is not your resolution; call it up, Esther, call it \nup!\"  I was in a great tremble--with running--and at first was \nquite unable to calm myself; but I got better, and I was very glad \nto know it.\n\nThe party came to the hotel.  I heard them speaking on the \nstaircase.  I was sure it was the same gentlemen because I knew \ntheir voices again--I mean I knew Mr. Woodcourt's.  It would still \nhave been a great relief to me to have gone away without making \nmyself known, but I was determined not to do so.  \"No, my dear, no.  \nNo, no, no!\"\n\nI untied my bonnet and put my veil half up--I think I mean half \ndown, but it matters very little--and wrote on one of my cards that \nI happened to be there with Mr. Richard Carstone, and I sent it in \nto Mr. Woodcourt.  He came immediately.  I told him I was rejoiced \nto be by chance among the first to welcome him home to England.  \nAnd I saw that he was very sorry for me.\n\n\"You have been in shipwreck and peril since you left us, Mr. \nWoodcourt,\" said I, \"but we can hardly call that a misfortune which \nenabled you to be so useful and so brave.  We read of it with the \ntruest interest.  It first came to my knowledge through your old \npatient, poor Miss Flite, when I was recovering from my severe \nillness.\"\n\n\"Ah! Little Miss Flite!\" he said.  \"She lives the same life yet?\"\n\n\"Just the same.\"\n\nI was so comfortable with myself now as not to mind the veil and to \nbe able to put it aside.\n\n\"Her gratitude to you, Mr. Woodcourt, is delightful.  She is a most \naffectionate creature, as I have reason to say.\"\n\n\"You--you have found her so?\" he returned.  \"I--I am glad of that.\"  \nHe was so very sorry for me that he could scarcely speak.\n\n\"I assure you,\" said I, \"that I was deeply touched by her sympathy \nand pleasure at the time I have referred to.\"\n\n\"I was grieved to hear that you had been very ill.\"\n\n\"I was very ill.\"\n\n\"But you have quite recovered?\"\n\n\"I have quite recovered my health and my cheerfulness,\" said I.  \n\"You know how good my guardian is and what a happy life we lead, \nand I have everything to be thankful for and nothing in the world \nto desire.\"\n\nI felt as if he had greater commiseration for me than I had ever \nhad for myself.  It inspired me with new fortitude and new calmness \nto find that it was I who was under the necessity of reassuring \nhim.  I spoke to him of his voyage out and home, and of his future \nplans, and of his probable return to India.  He said that was very \ndoubtful.  He had not found himself more favoured by fortune there \nthan here.  He had gone out a poor ship's surgeon and had come home \nnothing better.  While we were talking, and when I was glad to \nbelieve that I had alleviated (if I may use such a term) the shock \nhe had had in seeing me, Richard came in.  He had heard downstairs \nwho was with me, and they met with cordial pleasure.\n\nI saw that after their first greetings were over, and when they \nspoke of Richard's career, Mr. Woodcourt had a perception that all \nwas not going well with him.  He frequently glanced at his face as \nif there were something in it that gave him pain, and more than \nonce he looked towards me as though he sought to ascertain whether \nI knew what the truth was.  Yet Richard was in one of his sanguine \nstates and in good spirits and was thoroughly pleased to see Mr. \nWoodcourt again, whom he had always liked.\n\nRichard proposed that we all should go to London together; but Mr. \nWoodcourt, having to remain by his ship a little longer, could not \njoin us.  He dined with us, however, at an early hour, and became \nso much more like what he used to be that I was still more at peace \nto think I had been able to soften his regrets.  Yet his mind was \nnot relieved of Richard.  When the coach was almost ready and \nRichard ran down to look after his luggage, he spoke to me about \nhim.\n\nI was not sure that I had a right to lay his whole story open, but \nI referred in a few words to his estrangement from Mr Jarndyce and \nto his being entangled in the ill-fated Chancery suit.  Mr. \nWoodcourt listened with interest and expressed his regret.\n\n\"I saw you observe him rather closely,\" said I, \"Do you think him \nso changed?\"\n\n\"He is changed,\" he returned, shaking his head.\n\nI felt the blood rush into my face for the first time, but it was \nonly an instantaneous emotion.  I turned my head aside, and it was \ngone.\n\n\"It is not,\" said Mr. Woodcourt, \"his being so much younger or \nolder, or thinner or fatter, or paler or ruddier, as there being \nupon his face such a singular expression.  I never saw so \nremarkable a look in a young person.  One cannot say that it is all \nanxiety or all weariness; yet it is both, and like ungrown \ndespair.\"\n\n\"You do not think he is ill?\" said I.\n\nNo.  He looked robust in body.\n\n\"That he cannot be at peace in mind, we have too much reason to \nknow,\" I proceeded.  \"Mr. Woodcourt, you are going to London?\"\n\n\"To-morrow or the next day.\"\n\n\"There is nothing Richard wants so much as a friend.  He always \nliked you.  Pray see him when you get there.  Pray help him \nsometimes with your companionship if you can.  You do not know of \nwhat service it might be.  You cannot think how Ada, and Mr. \nJarndyce, and even I--how we should all thank you, Mr. Woodcourt!\"\n\n\"Miss Summerson,\" he said, more moved than he had been from the \nfirst, \"before heaven, I will be a true friend to him!  I will \naccept him as a trust, and it shall be a sacred one!\"\n\n\"God bless you!\" said I, with my eyes filling fast; but I thought \nthey might, when it was not for myself.  \"Ada loves him--we all \nlove him, but Ada loves him as we cannot.  I will tell her what you \nsay.  Thank you, and God bless you, in her name!\"\n\nRichard came back as we finished exchanging these hurried words and \ngave me his arm to take me to the coach.\n\n\"Woodcourt,\" he said, unconscious with what application, \"pray let \nus meet in London!\"\n\n\"Meet?\" returned the other.  \"I have scarcely a friend there now \nbut you.  Where shall I find you?\"\n\n\"Why, I must get a lodging of some sort,\" said Richard, pondering.  \n\"Say at Vholes's, Symond's Inn.\"\n\n\"Good!  Without loss of time.\"\n\nThey shook hands heartily.  When I was seated in the coach and \nRichard was yet standing in the street, Mr. Woodcourt laid his \nfriendly hand on Richard's shoulder and looked at me.  I understood \nhim and waved mine in thanks.\n\nAnd in his last look as we drove away, I saw that he was very sorry \nfor me.  I was glad to see it.  I felt for my old self as the dead \nmay feel if they ever revisit these scenes.  I was glad to be \ntenderly remembered, to be gently pitied, not to be quite \nforgotten.\n\n\n\nCHAPTER XLVI\n\nStop Him!\n\n\nDarkness rests upon Tom-All-Alone's.  Dilating and dilating since \nthe sun went down last night, it has gradually swelled until it \nfills every void in the place.  For a time there were some dungeon \nlights burning, as the lamp of life hums in Tom-all-Alone's, \nheavily, heavily, in the nauseous air, and winking--as that lamp, \ntoo, winks in Tom-all-Alone's--at many horrible things.  But they \nare blotted out.  The moon has eyed Tom with a dull cold stare, as \nadmitting some puny emulation of herself in his desert region unfit \nfor life and blasted by volcanic fires; but she has passed on and \nis gone.  The blackest nightmare in the infernal stables grazes on \nTom-all-Alone's, and Tom is fast asleep.\n\nMuch mighty speech-making there has been, both in and out of \nParliament, concerning Tom, and much wrathful disputation how Tom \nshall be got right.  Whether he shall be put into the main road by \nconstables, or by beadles, or by bell-ringing, or by force of \nfigures, or by correct principles of taste, or by high church, or \nby low church, or by no church; whether he shall be set to \nsplitting trusses of polemical straws with the crooked knife of his \nmind or whether he shall be put to stone-breaking instead.  In the \nmidst of which dust and noise there is but one thing perfectly \nclear, to wit, that Tom only may and can, or shall and will, be \nreclaimed according to somebody's theory but nobody's practice.  \nAnd in the hopeful meantime, Tom goes to perdition head foremost in \nhis old determined spirit.\n\nBut he has his revenge.  Even the winds are his messengers, and \nthey serve him in these hours of darkness.  There is not a drop of \nTom's corrupted blood but propagates infection and contagion \nsomewhere.  It shall pollute, this very night, the choice stream \n(in which chemists on analysis would find the genuine nobility) of \na Norman house, and his Grace shall not be able to say nay to the \ninfamous alliance.  There is not an atom of Tom's slime, not a \ncubic inch of any pestilential gas in which he lives, not one \nobscenity or degradation about him, not an ignorance, not a \nwickedness, not a brutality of his committing, but shall work its \nretribution through every order of society up to the proudest of \nthe proud and to the highest of the high.  Verily, what with \ntainting, plundering, and spoiling, Tom has his revenge.\n\nIt is a moot point whether Tom-all-Alone's be uglier by day or by \nnight, but on the argument that the more that is seen of it the \nmore shocking it must be, and that no part of it left to the \nimagination is at all likely to be made so bad as the reality, day \ncarries it.  The day begins to break now; and in truth it might be \nbetter for the national glory even that the sun should sometimes \nset upon the British dominions than that it should ever rise upon \nso vile a wonder as Tom.\n\nA brown sunburnt gentleman, who appears in some inaptitude for \nsleep to be wandering abroad rather than counting the hours on a \nrestless pillow, strolls hitherward at this quiet time.  Attracted \nby curiosity, he often pauses and looks about him, up and down the \nmiserable by-ways.  Nor is he merely curious, for in his bright \ndark eye there is compassionate interest; and as he looks here and \nthere, he seems to understand such wretchedness and to have studied \nit before.\n\nOn the banks of the stagnant channel of mud which is the main \nstreet of Tom-all-Alone's, nothing is to be seen but the crazy \nhouses, shut up and silent.  No waking creature save himself \nappears except in one direction, where he sees the solitary figure \nof a woman sitting on a door-step.  He walks that way.  \nApproaching, he observes that she has journeyed a long distance and \nis footsore and travel-stained.  She sits on the door-step in the \nmanner of one who is waiting, with her elbow on her knee and her \nhead upon her hand.  Beside her is a canvas bag, or bundle, she has \ncarried.  She is dozing probably, for she gives no heed to his \nsteps as he comes toward her.\n\nThe broken footway is so narrow that when Allan Woodcourt comes to \nwhere the woman sits, he has to turn into the road to pass her.  \nLooking down at her face, his eye meets hers, and he stops.\n\n\"What is the matter?\"\n\n\"Nothing, sir.\"\n\n\"Can't you make them hear?  Do you want to be let in?\"\n\n\"I'm walting till they get up at another house--a lodging-house--\nnot here,\" the woman patiently returns.  \"I'm waiting here because \nthere will be sun here presently to warm me.\"\n\n\"I am afraid you are tired.  I am sorry to see you sitting in the \nstreet.\"\n\n\"Thank you, sir.  It don't matter.\"\n\nA habit in him of speaking to the poor and of avoiding patronage or \ncondescension or childishness (which is the favourite device, many \npeople deeming it quite a subtlety to talk to them like little \nspelling books) has put him on good terms with the woman easily.\n\n\"Let me look at your forehead,\" he says, bending down.  \"I am a \ndoctor.  Don't be afraid.  I wouldn't hurt you for the world.\"\n\nHe knows that by touching her with his skilful and accustomed hand \nhe can soothe her yet more readily.  She makes a slight objection, \nsaying, \"It's nothing\"; but he has scarcely laid his fingers on the \nwounded place when she lifts it up to the light.\n\n\"Aye! A bad bruise, and the skin sadly broken.  This must be very \nsore.\"\n\n\"It do ache a little, sir,\" returns the woman with a started tear \nupon her cheek.\n\n\"Let me try to make it more comfortable.  My handkerchief won't \nhurt you.\"\n\n\"Oh, dear no, sir, I'm sure of that!\"\n\nHe cleanses the injured place and dries it, and having carefully \nexamined it and gently pressed it with the palm of his hand, takes \na small case from his pocket, dresses it, and binds it up.  While \nhe is thus employed, he says, after laughing at his establishing a \nsurgery in the street, \"And so your husband is a brickmaker?\"\n\n\"How do you know that, sir?\" asks the woman, astonished.\n\n\"Why, I suppose so from the colour of the clay upon your bag and on \nyour dress.  And I know brickmakers go about working at piecework \nin different places.  And I am sorry to say I have known them cruel \nto their wives too.\"\n\nThe woman hastily lifts up her eyes as if she would deny that her \ninjury is referable to such a cause.  But feeling the hand upon her \nforehead, and seeing his busy and composed face, she quietly drops \nthem again.\n\n\"Where is he now?\" asks the surgeon.\n\n\"He got into trouble last night, sir; but he'll look for me at the \nlodging-house.\"\n\n\"He will get into worse trouble if he often misuses his large and \nheavy hand as he has misused it here.  But you forgive him, brutal \nas he is, and I say no more of him, except that I wish he deserved \nit.  You have no young child?\"\n\nThe woman shakes her head.  \"One as I calls mine, sir, but it's \nLiz's.\"\n\n\"Your own is dead.  I see!  Poor little thing!\"\n\nBy this time he has finished and is putting up his case.  \"I \nsuppose you have some settled home.  Is it far from here?\" he asks, \ngood-humouredly making light of what he has done as she gets up and \ncurtsys.\n\n\"It's a good two or three and twenty mile from here, sir.  At Saint \nAlbans.  You know Saint Albans, sir?  I thought you gave a start \nlike, as if you did.\"\n\n\"Yes, I know something of it.  And now I will ask you a question in \nreturn.  Have you money for your lodging?\"\n\n\"Yes, sir,\" she says, \"really and truly.\"  And she shows it.  He \ntells her, in acknowledgment of her many subdued thanks, that she \nis very welcome, gives her good day, and walks away.  Tom-all-\nAlone's is still asleep, and nothing is astir.\n\nYes, something is!  As he retraces his way to the point from which \nhe descried the woman at a distance sitting on the step, he sees a \nragged figure coming very cautiously along, crouching close to the \nsoiled walls--which the wretchedest figure might as well avoid--and \nfurtively thrusting a hand before it.  It is the figure of a youth \nwhose face is hollow and whose eyes have an emaciated glare.  He is \nso intent on getting along unseen that even the apparition of a \nstranger in whole garments does not tempt him to look back.  He \nshades his face with his ragged elbow as he passes on the other \nside of the way, and goes shrinking and creeping on with his \nanxious hand before him and his shapeless clothes hanging in \nshreds.  Clothes made for what purpose, or of what material, it \nwould be impossible to say.  They look, in colour and in substance, \nlike a bundle of rank leaves of swampy growth that rotted long ago.\n\nAllan Woodcourt pauses to look after him and note all this, with a \nshadowy belief that he has seen the boy before.  He cannot recall \nhow or where, but there is some association in his mind with such a \nform.  He imagines that he must have seen it in some hospital or \nrefuge, still, cannot make out why it comes with any special force \non his remembrance.\n\nHe is gradually emerging from Tom-all-Alone's in the morning light, \nthinking about it, when he hears running feet behind him, and \nlooking round, sees the boy scouring towards him at great speed, \nfollowed by the woman.\n\n\"Stop him, stop him!\" cries the woman, almost breath less.  \"Stop \nhim, sir!\"\n\nHe darts across the road into the boy's path, but the boy is \nquicker than he, makes a curve, ducks, dives under his hands, comes \nup half-a-dozen yards beyond him, and scours away again.  Still the \nwoman follows, crying, \"Stop him, sir, pray stop him!\"  Allan, not \nknowing but that he has just robbed her of her money, follows in \nchase and runs so hard that he runs the boy down a dozen times, but \neach time he repeats the curve, the duck, the dive, and scours away \nagain.  To strike at him on any of these occasions would be to fell \nand disable him, but the pursuer cannot resolve to do that, and so \nthe grimly ridiculous pursuit continues.  At last the fugitive, \nhard-pressed, takes to a narrow passage and a court which has no \nthoroughfare.  Here, against a hoarding of decaying timber, he is \nbrought to bay and tumbles down, lying gasping at his pursuer, who \nstands and gasps at him until the woman comes up.\n\n\"Oh, you, Jo!\" cries the woman.  \"What?  I have found you at last!\"\n\n\"Jo,\" repeats Allan, looking at him with attention, \"Jo!  Stay.  To \nbe sure!  I recollect this lad some time ago being brought before \nthe coroner.\"\n\n\"Yes, I see you once afore at the inkwhich,\" whimpers Jo.  \"What of \nthat?  Can't you never let such an unfortnet as me alone?  An't I \nunfortnet enough for you yet?  How unfortnet do you want me fur to \nbe?  I've been a-chivied and a-chivied, fust by one on you and nixt \nby another on you, till I'm worritted to skins and bones.  The \ninkwhich warn't MY fault.  I done nothink.  He wos wery good to me, \nhe wos; he wos the only one I knowed to speak to, as ever come \nacross my crossing.  It ain't wery likely I should want him to be \ninkwhiched.  I only wish I wos, myself.  I don't know why I don't \ngo and make a hole in the water, I'm sure I don't.\"\n\nHe says it with such a pitiable air, and his grimy tears appear so \nreal, and he lies in the corner up against the hoarding so like a \ngrowth of fungus or any unwholesome excrescence produced there in \nneglect and impurity, that Allan Woodcourt is softened towards him.  \nHe says to the woman, \"Miserable creature, what has he done?\"\n\nTo which she only replies, shaking her head at the prostrate figure \nmore amazedly than angrily, \"Oh, you Jo, you Jo.  I have found you \nat last!\"\n\n\"What has he done?\" says Allan.  \"Has he robbed you?\"\n\n\"No, sir, no.  Robbed me?  He did nothing but what was kind-hearted \nby me, and that's the wonder of it.\"\n\nAllan looks from Jo to the woman, and from the woman to Jo, waiting \nfor one of them to unravel the riddle.\n\n\"But he was along with me, sir,\" says the woman.  \"Oh, you Jo!  He \nwas along with me, sir, down at Saint Albans, ill, and a young \nlady, Lord bless her for a good friend to me, took pity on him when \nI durstn't, and took him home--\"\n\nAllan shrinks back from him with a sudden horror.\n\n\"Yes, sir, yes.  Took him home, and made him comfortable, and like \na thankless monster he ran away in the night and never has been \nseen or heard of since till I set eyes on him just now.  And that \nyoung lady that was such a pretty dear caught his illness, lost her \nbeautiful looks, and wouldn't hardly be known for the same young \nlady now if it wasn't for her angel temper, and her pretty shape, \nand her sweet voice.  Do you know it?  You ungrateful wretch, do \nyou know that this is all along of you and of her goodness to you?\" \ndemands the woman, beginning to rage at him as she recalls it and \nbreaking into passionate tears.\n\nThe boy, in rough sort stunned by what he hears, falls to smearing \nhis dirty forehead with his dirty palm, and to staring at the \nground, and to shaking from head to foot until the crazy hoarding \nagainst which he leans rattles.\n\nAllan restrains the woman, merely by a quiet gesture, but \neffectually.\n\n\"Richard told me--\"  He falters.  \"I mean, I have heard of this--\ndon't mind me for a moment, I will speak presently.\"\n\nHe turns away and stands for a while looking out at the covered \npassage.  When he comes back, he has recovered his composure, \nexcept that he contends against an avoidance of the boy, which is \nso very remarkable that it absorbs the woman's attention.\n\n\"You hear what she says.  But get up, get up!\"\n\nJo, shaking and chattering, slowly rises and stands, after the \nmanner of his tribe in a difficulty, sideways against the hoarding, \nresting one of his high shoulders against it and covertly rubbing \nhis right hand over his left and his left foot over his right.\n\n\"You hear what she says, and I know it's true.  Have you been here \never since?\"\n\n\"Wishermaydie if I seen Tom-all-Alone's till this blessed morning,\" \nreplies Jo hoarsely.\n\n\"Why have you come here now?\"\n\nJo looks all round the confined court, looks at his questioner no \nhigher than the knees, and finally answers, \"I don't know how to do \nnothink, and I can't get nothink to do.  I'm wery poor and ill, and \nI thought I'd come back here when there warn't nobody about, and \nlay down and hide somewheres as I knows on till arter dark, and \nthen go and beg a trifle of Mr. Snagsby.  He wos allus willin fur \nto give me somethink he wos, though Mrs. Snagsby she was allus a-\nchivying on me--like everybody everywheres.\"\n\n\"Where have you come from?\"\n\nJo looks all round the court again, looks at his questioner's knees \nagain, and concludes by laying his profile against the hoarding in \na sort of resignation.\n\n\"Did you hear me ask you where you have come from?\"\n\n\"Tramp then,\" says Jo.\n\n\"Now tell me,\" proceeds Allan, making a strong effort to overcome \nhis repugnance, going very near to him, and leaning over him with \nan expression of confidence, \"tell me how it came about that you \nleft that house when the good young lady had been so unfortunate as \nto pity you and take you home.\"\n\nJo suddenly comes out of his resignation and excitedly declares, \naddressing the woman, that he never known about the young lady, \nthat he never heern about it, that he never went fur to hurt her, \nthat he would sooner have hurt his own self, that he'd sooner have \nhad his unfortnet ed chopped off than ever gone a-nigh her, and \nthat she wos wery good to him, she wos.  Conducting himself \nthroughout as if in his poor fashion he really meant it, and \nwinding up with some very miserable sobs.\n\nAllan Woodcourt sees that this is not a sham.  He constrains \nhimself to touch him.  \"Come, Jo.  Tell me.\"\n\n\"No.  I dustn't,\" says Jo, relapsing into the profile state.  \"I \ndustn't, or I would.\"\n\n\"But I must know,\" returns the other, \"all the same.  Come, Jo.\"\n\nAfter two or three such adjurations, Jo lifts up his head again, \nlooks round the court again, and says in a low voice, \"Well, I'll \ntell you something.  I was took away.  There!\"\n\n\"Took away?  In the night?\"\n\n\"Ah!\"  Very apprehensive of being overheard, Jo looks about him and \neven glances up some ten feet at the top of the hoarding and \nthrough the cracks in it lest the object of his distrust should be \nlooking over or hidden on the other side.\n\n\"Who took you away?\"\n\n\"I dustn't name him,\" says Jo.  \"I dustn't do it, sir.\n\n\"But I want, in the young lady's name, to know.  You may trust me.  \nNo one else shall hear.\"\n\n\"Ah, but I don't know,\" replies Jo, shaking his head fearfulty, \"as \nhe DON'T hear.\"\n\n\"Why, he is not in this place.\"\n\n\"Oh, ain't he though?\" says Jo.  \"He's in all manner of places, all \nat wanst.\"\n\nAllan looks at him in perplexity, but discovers some real meaning \nand good faith at the bottom of this bewildering reply.  He \npatiently awaits an explicit answer; and Jo, more baffled by his \npatience than by anything else, at last desperately whispers a name \nin his ear.\n\n\"Aye!\" says Allan.  \"Why, what had you been doing?\"\n\n\"Nothink, sir.  Never done nothink to get myself into no trouble, \n'sept in not moving on and the inkwhich.  But I'm a-moving on now.  \nI'm a-moving on to the berryin ground--that's the move as I'm up \nto.\"\n\n\"No, no, we will try to prevent that.  But what did he do with \nyou?\"\n\n\"Put me in a horsepittle,\" replied Jo, whispering, \"till I was \ndischarged, then giv me a little money--four half-bulls, wot you \nmay call half-crowns--and ses 'Hook it!  Nobody wants you here,' he \nses.  'You hook it.  You go and tramp,' he ses.  'You move on,' he \nses.  'Don't let me ever see you nowheres within forty mile of \nLondon, or you'll repent it.'  So I shall, if ever he doos see me, \nand he'll see me if I'm above ground,\" concludes Jo, nervously \nrepeating all his former precautions and investigations.\n\nAllan considers a little, then remarks, turning to the woman but \nkeeping an encouraging eye on Jo, \"He is not so ungrateful as you \nsupposed.  He had a reason for going away, though it was an \ninsufficient one.\"\n\n\"Thankee, sir, thankee!\" exclaims Jo.  \"There now!  See how hard \nyou wos upon me.  But ony you tell the young lady wot the genlmn \nses, and it's all right.  For YOU wos wery good to me too, and I \nknows it.\"\n\n\"Now, Jo,\" says Allan, keeping his eye upon him, \"come with me and \nI will find you a better place than this to lie down and hide in.  \nIf I take one side of the way and you the other to avoid \nobservation, you will not run away, I know very well, if you make \nme a promise.\"\n\n\"I won't, not unless I wos to see HIM a-coming, sir.\"\n\n\"Very well.  I take your word.  Half the town is getting up by this \ntime, and the whole town will be broad awake in another hour.  Come \nalong.  Good day again, my good woman.\"\n\n\"Good day again, sir, and I thank you kindly many times again.\"\n\nShe has been sitting on her bag, deeply attentive, and now rises \nand takes it up.  Jo, repeating, \"Ony you tell the young lady as I \nnever went fur to hurt her and wot the genlmn ses!\" nods and \nshambles and shivers, and smears and blinks, and half laughs and \nhalf cries, a farewell to her, and takes his creeping way along \nafter Allan Woodcourt, close to the houses on the opposite side of \nthe street.  In this order, the two come up out of Tom-all-Alone's \ninto the broad rays of the sunlight and the purer air.\n\n\n\nCHAPTER XLVII\n\nJo's Will\n\n\nAs Allan Woodcourt and Jo proceed along the streets where the high \nchurch spires and the distances are so near and clear in the \nmorning light that the city itself seems renewed by rest, Allan \nrevolves in his mind how and where he shall bestow his companion.  \n\"It surely is a strange fact,\" he considers, \"that in the heart of \na civilized world this creature in human form should be more \ndifficult to dispose of than an unowned dog.\"  But it is none the \nless a fact because of its strangeness, and the difficulty remains.\n\nAt first he looks behind him often to assure himself that Jo is \nstill really following.  But look where he will, he still beholds \nhim close to the opposite houses, making his way with his wary hand \nfrom brick to brick and from door to door, and often, as he creeps \nalong, glancing over at him watchfully.  Soon satisfied that the \nlast thing in his thoughts is to give him the slip, Allan goes on, \nconsidering with a less divided attention what he shall do.\n\nA breakfast-stall at a street-corner suggests the first thing to be \ndone.  He stops there, looks round, and beckons Jo.  Jo crosses and \ncomes halting and shuffling up, slowly scooping the knuckles of his \nright hand round and round in the hollowed palm of his left, \nkneading dirt with a natural pestle and mortar.  What is a dainty \nrepast to Jo is then set before him, and he begins to gulp the \ncoffee and to gnaw the bread and butter, looking anxiously about \nhim in all directions as he eats and drinks, like a scared animal.\n\nBut he is so sick and miserable that even hunger has abandoned him.  \n\"I thought I was amost a-starvin, sir,\" says Jo, soon putting down \nhis food, \"but I don't know nothink--not even that.  I don't care \nfor eating wittles nor yet for drinking on 'em.\"  And Jo stands \nshivering and looking at the breakfast wonderingly.\n\nAllan Woodcourt lays his hand upon his pulse and on his chest.  \n\"Draw breath, Jo!\"  \"It draws,\" says Jo, \"as heavy as a cart.\"  He \nmight add, \"And rattles like it,\" but he only mutters, \"I'm a-\nmoving on, sir.\"\n\nAllan looks about for an apothecary's shop.  There is none at hand, \nbut a tavern does as well or better.  He obtains a little measure \nof wine and gives the lad a portion of it very carefully.  He \nbegins to revive almost as soon as it passes his lips.  \"We may \nrepeat that dose, Jo,\" observes Allan after watching him with his \nattentive face.  \"So!  Now we will take five minutes' rest, and \nthen go on again.\"\n\nLeaving the boy sitting on the bench of the breakfast-stall, with \nhis back against an iron railing, Allan Woodcourt paces up and down \nin the early sunshine, casting an occasional look towards him \nwithout appearing to watch him.  It requires no discernment to \nperceive that he is warmed and refreshed.  If a face so shaded can \nbrighten, his face brightens somewhat; and by little and little he \neats the slice of bread he had so hopelessly laid down.  Observant \nof these signs of improvement, Allan engages him in conversation \nand elicits to his no small wonder the adventure of the lady in the \nveil, with all its consequences.  Jo slowly munches as he slowly \ntells it.  When he has finished his story and his bread, they go on \nagain.\n\nIntending to refer his difficulty in finding a temporary place of \nrefuge for the boy to his old patient, zealous little Miss Flite, \nAllan leads the way to the court where he and Jo first \nforegathered.  But all is changed at the rag and bottle shop; Miss \nFlite no longer lodges there; it is shut up; and a hard-featured \nfemale, much obscured by dust, whose age is a problem, but who is \nindeed no other than the interesting Judy, is tart and spare in her \nreplies.  These sufficing, however, to inform the visitor that Miss \nFlite and her birds are domiciled with a Mrs. Blinder, in Bell \nYard, he repairs to that neighbouring place, where Miss Flite (who \nrises early that she may be punctual at the divan of justice held \nby her excellent friend the Chancellor) comes running downstairs \nwith tears of welcome and with open arms.\n\n\"My dear physician!\" cries Miss Flite.  \"My meritorious, \ndistinguished, honourable officer!\"  She uses some odd expressions, \nbut is as cordial and full of heart as sanity itself can be--more \nso than it often is.  Allan, very patient with her, waits until she \nhas no more raptures to express, then points out Jo, trembling in a \ndoorway, and tells her how he comes there.\n\n\"Where can I lodge him hereabouts for the present?  Now, you have a \nfund of knowledge and good sense and can advise me.\n\nMiss Flite, mighty proud of the compliment, sets herself to \nconsider; but it is long before a bright thought occurs to her.  \nMrs. Blinder is entirely let, and she herself occupies poor \nGridley's room.  \"Gridley!\" exclaims Miss Flite, clapping her hands \nafter a twentieth repetition of this remark.  \"Gridley!  To be \nsure!  Of course!  My dear physician!  General George will help us \nout.\"\n\nIt is hopeless to ask for any information about General George, and \nwould be, though Miss Flite had not akeady run upstairs to put on \nher pinched bonnet and her poor little shawl and to arm herself \nwith her reticule of documents.  But as she informs her physician \nin her disjointed manner on coming down in full array that General \nGeorge, whom she often calls upon, knows her dear Fitz Jarndyce and \ntakes a great interest in all connected with her, Allan is induced \nto think that they may be in the right way.  So he tells Jo, for \nhis encouragement, that this walking about will soon be over now; \nand they repair to the general's.  Fortunately it is not far.\n\nFrom the exterior of George's Shooting Gallery, and the long entry, \nand the bare perspective beyond it, Allan Woodcourt augurs well.  \nHe also descries promise in the figure of Mr. George himself, \nstriding towards them in his mornmg exercise with his pipe in his \nmouth, no stock on, and his muscular arms, developed by broadsword \nand dumbbell, weightily asserting themselves through his light \nshirt-sleeves.\n\n\"Your servant, sir,\" says Mr. George with a military salute.  Good-\nhumouredly smiling all over his broad forehead up into his crisp \nhair, he then defers to Miss Flite, as, with great stateliness, and \nat some length, she performs the courtly ceremony of presentation.  \nHe winds it up with another \"Your servant, sir!\" and another \nsalute.\n\n\"Excuse me, sir.  A sailor, I believe?\" says Mr. George.\n\n\"I am proud to find I have the air of one,\" returns Allan; \"but I \nam only a sea-going doctor.\"\n\n\"Indeed, sir!  I should have thought you was a regular blue-jacket \nmyself.\"\n\nAllan hopes Mr. George will forgive his intrusion the more readily \non that account, and particularly that he will not lay aside his \npipe, which, in his politeness, he has testifled some intention of \ndoing.  \"You are very good, sir,\" returns the trooper.  \"As I know \nby experience that it's not disagreeable to Miss Flite, and since \nit's equally agreeable to yourself--\" and finishes the sentence by \nputting it between his lips again.  Allan proceeds to tell him all \nhe knows about Jo, unto which the trooper listens with a grave \nface.\n\n\"And that's the lad, sir, is it?\" he inquires, looking along the \nentry to where Jo stands staring up at the great letters on the \nwhitewashed front, which have no meaning in his eyes.\n\n\"That's he,\" says Allan.  \"And, Mr. George, I am in this difficulty \nabout him.  I am unwilling to place him in a hospital, even if I \ncould procure him immediate admission, because I foresee that he \nwould not stay there many hours if he could be so much as got \nthere.  The same objection applies to a workhouse, supposing I had \nthe patience to be evaded and shirked, and handed about from post \nto pillar in trying to get him into one, which is a system that I \ndon't take kindly to.\"\n\n\"No man does, sir,\" returns Mr. George.\n\n\"I am convinced that he would not remain in either place, because \nhe is possessed by an extraordinary terror of this person who \nordered him to keep out of the way; in his ignorance, he believes \nthis person to be everywhere, and cognizant of everything.\"\n\n\"I ask your pardon, sir,\" says Mr. George.  \"But you have not \nmentioned that party's name.  Is it a secret, sir?\"\n\n\"The boy makes it one.  But his name is Bucket.\"\n\n\"Bucket the detective, sir?\"\n\n\"The same man.\"\n\n\"The man is known to me, sir,\" returns the trooper after blowing \nout a cloud of smoke and squaring his chest, \"and the boy is so far \ncorrect that he undoubtedly is a--rum customer.\"  Mr. George smokes \nwith a profound meaning after this and surveys Miss Flite in \nsilence.\n\n\"Now, I wish Mr. Jarndyce and Miss Summerson at least to know that \nthis Jo, who tells so strange a story, has reappeared, and to have \nit in their power to speak with him if they should desire to do so.  \nTherefore I want to get him, for the present moment, into any poor \nlodging kept by decent people where he would be admitted.  Decent \npeople and Jo, Mr. George,\" says Allan, following the direction of \nthe trooper's eyes along the entry, \"have not been much acquainted, \nas you see.  Hence the difficulty.  Do you happen to know any one \nin this neighbourhood who would receive him for a while on my \npaying for him beforehand?\"\n\nAs he puts the question, he becomes aware of a dirty-faced little \nman standing at the trooper's elbow and looking up, with an oddly \ntwisted figure and countenance, into the trooper's face.  After a \nfew more puffs at his pipe, the trooper looks down askant at the \nlittle man, and the little man winks up at the trooper.\n\n\"Well, sir,\" says Mr. George, \"I can assure you that I would \nwillingiy be knocked on the head at any time if it would be at all \nagreeable to Miss Summerson, and consequently I esteem it a \nprivilege to do that young lady any service, however small.  We are \nnaturally in the vagabond way here, sir, both myself and Phil.  You \nsee what the place is.  You are welcome to a quiet corner of it for \nthe boy if the same would meet your views.  No charge made, except \nfor rations.  We are not in a flourishing state of circumstances \nhere, sir.  We are liable to be tumbled out neck and crop at a \nmoment's notice.  However, sir, such as the place is, and so long \nas it lasts, here it is at your service.\"\n\nWith a comprehensive wave of his pipe, Mr. George places the whole \nbuilding at his visitor's disposal.\n\n\"I take it for granted, sir,\" he adds, \"you being one of the \nmedical staff, that there is no present infection about this \nunfortunate subject?\"\n\nAllan is quite sure of it.\n\n\"Because, sir,\" says Mr. George, shaking his head sorrowfully, \"we \nhave had enough of that.\"\n\nHis tone is no less sorrowfully echoed by his new acquaintance.  \n'Still I am bound to tell you,\" observes Allan after repeating his \nformer assurance, \"that the boy is deplorably low and reduced and \nthat he may be--I do not say that he is--too far gone to recover.\"\n\n\"Do you consider him in present danger, sir?\" inquires the trooper.\n\n\"Yes, I fear so.\"\n\n\"Then, sir,\" returns the trooper in a decisive manner, \"it appears \nto me--being naturally in the vagabond way myself--that the sooner \nhe comes out of the street, the better.  You, Phil!  Bring him in!\"\n\nMr. Squod tacks out, all on one side, to execute the word of \ncommand; and the trooper, having smoked his pipe, lays it by.  Jo \nis brought in.  He is not one of Mrs. Pardiggle's Tockahoopo \nIndians; he is not one of Mrs. Jellyby's lambs, being wholly \nunconnected with Borrioboola-Gha; he is not softened by distance \nand unfamiliarity; he is not a genuine foreign-grown savage; he is \nthe ordinary home-made article.  Dirty, ugly, disagreeable to all \nthe senses, in body a common creature of the common streets, only \nin soul a heathen.  Homely filth begrimes him, homely parasites \ndevour him, homely sores are in him, homely rags are on him; native \nignorance, the growth of English soil and climate, sinks his \nimmortal nature lower than the beasts that perish.  Stand forth, \nJo, in uncompromising colours!  From the sole of thy foot to the \ncrown of thy head, there is nothing interesting about thee.\n\nHe shuffles slowly into Mr. George's gallery and stands huddled \ntogether in a bundle, looking all about the floor.  He seems to \nknow that they have an inclination to shrink from him, partly for \nwhat he is and partly for what he has caused.  He, too, shrinks \nfrom them.  He is not of the same order of things, not of the same \nplace in creation.  He is of no order and no place, neither of the \nbeasts nor of humanity.\n\n\"Look here, Jo!\" says Allan.  \"This is Mr. George.\"\n\nJo searches the floor for some time longer, then looks up for a \nmoment, and then down again.\n\n\"He is a kind friend to you, for he is going to give you lodging \nroom here.\"\n\nJo makes a scoop with one hand, which is supposed to be a bow.  \nAfter a little more consideration and some backing and changing of \nthe foot on which he rests, he mutters that he is \"wery thankful.\"\n\n\"You are quite safe here.  All you have to do at present is to be \nobedient and to get strong.  And mind you tell us the truth here, \nwhatever you do, Jo.\"\n\n\"Wishermaydie if I don't, sir,\" says Jo, reverting to his favourite \ndeclaration.  \"I never done nothink yit, but wot you knows on, to \nget myself into no trouble.  I never was in no other trouble at \nall, sir, 'sept not knowin' nothink and starwation.\"\n\n\"I believe it, now attend to Mr. George.  I see he is going to \nspeak to you.\"\n\n\"My intention merely was, sir,\" observes Mr. George, amazingly \nbroad and upright, \"to point out to him where he can lie down and \nget a thorough good dose of sleep.  Now, look here.\"  As the \ntrooper speaks, he conducts them to the other end of the gallery \nand opens one of the little cabins.  \"There you are, you see!  Here \nis a mattress, and here you may rest, on good behaviour, as long as \nMr., I ask your pardon, sir\"--he refers apologetically to the card \nAllan has given him--\"Mr. Woodcourt pleases.  Don't you be alarmed \nif you hear shots; they'll be aimed at the target, and not you.  \nNow, there's another thing I would recommend, sir,\" says the \ntrooper, turning to his visitor.  \"Phil, come here!\"\n\nPhil bears down upon them according to his usual tactics.  \"Here is \na man, sir, who was found, when a baby, in the gutter.  \nConsequently, it is to be expected that he takes a natural interest \nin this poor creature.  You do, don't you, Phil?\"\n\n\"Certainly and surely I do, guv'ner,\" is Phil's reply.\n\n\"Now I was thinking, sir,\" says Mr. George in a martial sort of \nconfidence, as if he were giving his opinion in a council of war at \na drum-head, \"that if this man was to take him to a bath and was to \nlay out a few shillings in getting him one or two coarse articles--\"\n\n\"Mr. George, my considerate friend,\" returns Allan, taking out his \npurse, \"it is the very favour I would have asked.\"\n\nPhil Squod and Jo are sent out immediately on this work of \nimprovement.  Miss Flite, quite enraptured by her success, makes \nthe best of her way to court, having great fears that otherwise her \nfriend the Chancellor may be uneasy about her or may give the \njudgment she has so long expected in her absence, and observing \n\"which you know, my dear physician, and general, after so many \nyears, would be too absurdly unfortunate!\"  Allan takes the \nopportunity of going out to procure some restorative medicines, and \nobtaining them near at hand, soon returns to find the trooper \nwalking up and down the gallery, and to fall into step and walk \nwith him.\n\n\"I take it, sir,\" says Mr. George, \"that you know Miss Summerson \npretty well?\"\n\nYes, it appears.\n\n\"Not related to her, sir?\"\n\nNo, it appears.\n\n\"Excuse the apparent curiosity,\" says Mr. George.  \"It seemed to me \nprobable that you might take more than a common interest in this \npoor creature because Miss Summerson had taken that unfortunate \ninterest in him.  'Tis MY case, sir, I assure you.\"\n\n\"And mine, Mr. George.\"\n\nThe trooper looks sideways at Allan's sunburnt cheek and bright \ndark eye, rapidly measures his height and build, and seems to \napprove of him.\n\n\"Since you have been out, sir, I have been thinking that I \nunquestionably know the rooms in Lincoln's Inn Fields, where Bucket \ntook the lad, according to his account.  Though he is not \nacquainted with the name, I can help you to it.  It's Tulkinghorn.  \nThat's what it is.\"\n\nAllan looks at him inquiringly, repeating the name.\n\n\"Tulkinghorn.  That's the name, sir.  I know the man, and know him \nto have been in communication with Bucket before, respecting a \ndeceased person who had given him offence.  I know the man, sir.  \nTo my sorrow.\"\n\nAllan naturally asks what kind of man he is.\n\n\"What kind of man!  Do you mean to look at?\"\n\n\"I think I know that much of him.  I mean to deal with.  Generally, \nwhat kind of man?\"\n\n\"Why, then I'll tell you, sir,\" returns the trooper, stopping short \nand folding his arms on his square chest so angrily that his face \nfires and flushes all over; \"he is a confoundedly bad kind of man.  \nHe is a slow-torturing kind of man.  He is no more like flesh and \nblood than a rusty old carbine is.  He is a kind of man--by \nGeorge!--that has caused me more restlessness, and more uneasiness, \nand more dissatisfaction with myself than all other men put \ntogether.  That's the kind of man Mr. Tulkinghorn is!\"\n\n\"I am sorry,\" says Allan, \"to have touched so sore a place.\"\n\n\"Sore?\"  The trooper plants his legs wider apart, wets the palm of \nhis broad right hand, and lays it on the imaginary moustache.  \n\"It's no fault of yours, sir; but you shall judge.  He has got a \npower over me.  He is the man I spoke of just now as being able to \ntumble me out of this place neck and crop.  He keeps me on a \nconstant see-saw.  He won't hold off, and he won't come on.  If I \nhave a payment to make him, or time to ask him for, or anything to \ngo to him about, he don't see me, don't hear me--passes me on to \nMelchisedech's in Clifford's Inn, Melchisedech's in Clifford's Inn \npasses me back again to him--he keeps me prowling and dangling \nabout him as if I was made of the same stone as himself.  Why, I \nspend half my life now, pretty well, loitering and dodging about \nhis door.  What does he care?  Nothing.  Just as much as the rusty \nold carbine I have compared him to.  He chafes and goads me till--  \nBah!  Nonsense!  I am forgetting myself.  Mr. Woodcourt,\" the \ntrooper resumes his march, \"all I say is, he is an old man; but I \nam glad I shall never have the chance of setting spurs to my horse \nand riding at him in a fair field.  For if I had that chance, in \none of the humours he drives me into--he'd go down, sir!\"\n\nMr. George has been so excited that he finds it necessary to wipe \nhis forehead on his shirt-sleeve.  Even while he whistles his \nimpetuosity away with the national anthem, some involuntary \nshakings of his head and heavings of his chest still linger behind, \nnot to mention an occasional hasty adjustment with both hands of \nhis open shirt-collar, as if it were scarcely open enough to \nprevent his being troubled by a choking sensation.  In short, Allan \nWoodcourt has not much doubt about the going down of Mr. \nTulkinghorn on the field referred to.\n\nJo and his conductor presently return, and Jo is assisted to his \nmattress by the careful Phil, to whom, after due administration of \nmedicine by his own hands, Allan confides all needful means and \ninstructions.  The morning is by this time getting on apace.  He \nrepairs to his lodgings to dress and breakfast, and then, without \nseeking rest, goes away to Mr. Jarndyce to communicate his \ndiscovery.\n\nWith him Mr. Jarndyce returns alone, confidentially telling him \nthat there are reasons for keeping this matter very quiet indeed \nand showing a serious interest in it.  To Mr. Jarndyce, Jo repeats \nin substance what he said in the morning, without any material \nvariation.  Only that cart of his is heavier to draw, and draws \nwith a hollower sound.\n\n\"Let me lay here quiet and not be chivied no more,\" falters Jo, \n\"and be so kind any person as is a-passin nigh where I used fur to \nsleep, as jist to say to Mr. Sangsby that Jo, wot he known once, is \na-moving on right forards with his duty, and I'll be wery thankful.  \nI'd be more thankful than I am aready if it wos any ways possible \nfor an unfortnet to be it.\"\n\nHe makes so many of these references to the law-stationer in the \ncourse of a day or two that Allan, after conferring with Mr. \nJarndyce, good-naturedly resolves to call in Cook's Court, the \nrather, as the cart seems to be breaking down.\n\nTo Cook's Court, therefore, he repairs.  Mr. Snagsby is behind his \ncounter in his grey coat and sleeves, inspecting an indenture of \nseveral skins which has just come in from the engrosser's, an \nimmense desert of law-hand and parchment, with here and there a \nresting-place of a few large letters to break the awful monotony \nand save the traveller from despair.  Mr Snagsby puts up at one of \nthese inky wells and greets the stranger with his cough of general \npreparation for business.\n\n\"You don't remember me, Mr. Snagsby?\"\n\nThe stationer's heart begins to thump heavily, for his old \napprehensions have never abated.  It is as much as he can do to \nanswer, \"No, sir, I can't say I do.  I should have considered--not \nto put too fine a point upon it--that I never saw you before, sir.\"\n\n\"Twice before,\" says Allan Woodcourt.  \"Once at a poor bedside, and \nonce--\"\n\n\"It's come at last!\" thinks the afflicted stationer, as \nrecollection breaks upon him.  \"It's got to a head now and is going \nto burst!\"  But he has sufficient presence of mind to conduct his \nvisitor into the little counting-house and to shut the door.\n\n\"Are you a married man, sir?\"\n\n\"No, I am not.\"\n\n\"Would you make the attempt, though single,\" says Mr. Snagsby in a \nmelancholy whisper, \"to speak as low as you can?  For my little \nwoman is a-listening somewheres, or I'll forfeit the business and \nfive hundred pound!\"\n\nIn deep dejection Mr. Snagsby sits down on his stool, with his back \nagainst his desk, protesting, \"I never had a secret of my own, sir.  \nI can't charge my memory with ever having once attempted to deceive \nmy little woman on my own account since she named the day.  I \nwouldn't have done it, sir.  Not to put too fine a point upon it, I \ncouldn't have done it, I dursn't have done it.  Whereas, and \nnevertheless, I find myself wrapped round with secrecy and mystery, \ntill my life is a burden to me.\"\n\nHis visitor professes his regret to bear it and asks him does he \nremember Jo.  Mr. Snagsby answers with a suppressed groan, oh, \ndon't he!\n\n\"You couldn't name an individual human being--except myself--that \nmy little woman is more set and determined against than Jo,\" says \nMr. Snagsby.\n\nAllan asks why.\n\n\"Why?\" repeats Mr. Snagsby, in his desperation clutching at the \nclump of hair at the back of his bald head.  \"How should 1 know \nwhy?  But you are a single person, sir, and may you long be spared \nto ask a married person such a question!\"\n\nWith this beneficent wish, Mr. Snagsby coughs a cough of dismal \nresignation and submits himself to hear what the visitor has to \ncommunicate.\n\n\"There again!\" says Mr. Snagsby, who, between the earnestness of \nhis feelings and the suppressed tones of his voice is discoloured \nin the face.  \"At it again, in a new direction!  A certain person \ncharges me, in the solemnest way, not to talk of Jo to any one, \neven my little woman.  Then comes another certain person, in the \nperson of yourself, and charges me, in an equally solemn way, not \nto mention Jo to that other certain person above all other persons.  \nWhy, this is a private asylum!  Why, not to put too fine a point \nupon it, this is Bedlam, sir!\" says Mr. Snagsby.\n\nBut it is better than he expected after all, being no explosion of \nthe mine below him or deepening of the pit into which he has \nfallen.  And being tender-hearted and affected by the account he \nhears of Jo's condition, he readily engages to \"look round\" as \nearly in the evening as he can manage it quietly.  He looks round \nvery quietly when the evening comes, but it may turn out that Mrs. \nSnagsby is as quiet a manager as he.\n\nJo is very glad to see his old friend and says, when they are left \nalone, that he takes it uncommon kind as Mr. Sangsby should come so \nfar out of his way on accounts of sich as him.  Mr. Snagsby, \ntouched by the spectacle before him, immediately lays upon the \ntable half a crown, that magic balsam of his for all kinds of \nwounds.\n\n\"And how do you find yourself, my poor lad?\" inquires the stationer \nwith his cough of sympathy.\n\n\"I am in luck, Mr. Sangsby, I am,\" returns Jo, \"and don't want for \nnothink.  I'm more cumfbler nor you can't think.  Mr. Sangsby!  I'm \nwery sorry that I done it, but I didn't go fur to do it, sir.\"\n\nThe stationer softly lays down another half-crown and asks him what \nit is that he is sorry for having done.\n\n\"Mr. Sangsby,\" says Jo, \"I went and giv a illness to the lady as \nwos and yit as warn't the t'other lady, and none of 'em never says \nnothink to me for having done it, on accounts of their being ser \ngood and my having been s'unfortnet.  The lady come herself and see \nme yesday, and she ses, 'Ah, Jo!' she ses.  'We thought we'd lost \nyou, Jo!' she ses.  And she sits down a-smilin so quiet, and don't \npass a word nor yit a look upon me for having done it, she don't, \nand I turns agin the wall, I doos, Mr. Sangsby.  And Mr. Jarnders, \nI see him a-forced to turn away his own self.  And Mr. Woodcot, he \ncome fur to giv me somethink fur to ease me, wot he's allus a-doin' \non day and night, and wen he come a-bending over me and a-speakin \nup so bold, I see his tears a-fallin, Mr. Sangsby.\"\n\nThe softened stationer deposits another half-crown on the table.  \nNothing less than a repetition of that infallible remedy will \nrelieve his feelings.\n\n\"Wot I was a-thinkin on, Mr. Sangsby,\" proceeds Jo, \"wos, as you \nwos able to write wery large, p'raps?\"\n\n\"Yes, Jo, please God,\" returns the stationer.\n\n\"Uncommon precious large, p'raps?\" says Jo with eagerness.\n\n\"Yes, my poor boy.\"\n\nJo laughs with pleasure.  \"Wot I wos a-thinking on then, Mr. \nSangsby, wos, that when I wos moved on as fur as ever I could go \nand couldn't he moved no furder, whether you might be so good \np'raps as to write out, wery large so that any one could see it \nanywheres, as that I wos wery truly hearty sorry that I done it and \nthat I never went fur to do it, and that though I didn't know \nnothink at all, I knowd as Mr. Woodcot once cried over it and wos \nallus grieved over it, and that I hoped as he'd be able to forgive \nme in his mind.  If the writin could be made to say it wery large, \nhe might.\"\n\n\"It shall say it, Jo.  Very large.\"\n\nJo laughs again.  \"Thankee, Mr. Sangsby.  It's wery kind of you, \nsir, and it makes me more cumfbler nor I was afore.\"\n\nThe meek little stationer, with a broken and unfinished cough, \nslips down his fourth half-crown--he has never been so close to a \ncase requiring so many--and is fain to depart.  And Jo and he, upon \nthis little earth, shall meet no more.  No more.\n\nFor the cart so hard to draw is near its journey's end and drags \nover stony ground.  All round the clock it labours up the broken \nsteps, shattered and worn.  Not many times can the sun rise and \nbehold it still upon its weary road.\n\nPhil Squod, with his smoky gunpowder visage, at once acts as nurse \nand works as armourer at his little table in a corner, often \nlooking round and saying with a nod of his green-baize cap and an \nencouraging elevation of his one eyebrow, \"Hold up, my boy!  Hold \nup!\"  There, too, is Mr. Jarndyce many a time, and Allan Woodcourt \nalmost always, both thinking, much, how strangely fate has \nentangled this rough outcast in the web of very different lives.  \nThere, too, the trooper is a frequent visitor, filling the doorway \nwith his athletic figure and, from his superfluity of life and \nstrength, seeming to shed down temporary vigour upon Jo, who never \nfails to speak more robustly in answer to his cheerful words.\n\nJo is in a sleep or in a stupor to-day, and Allan Woodcourt, newly \narrived, stands by him, looking down upon his wasted form.  After a \nwhile he softly seats himself upon the bedside with his face \ntowards him--just as he sat in the law-writer's room--and touches \nhis chest and heart.  The cart had very nearly given up, but \nlabours on a little more.\n\nThe trooper stands in the doorway, still and silent.  Phil has \nstopped in a low clinking noise, with his little hammer in his \nhand.  Mr. Woodcourt looks round with that grave professional \ninterest and attention on his face, and glancing significantly at \nthe trooper, signs to Phil to carry his table out.  When the little \nhammer is next used, there will be a speck of rust upon it.\n\n\"Well, Jo!  What is the matter?  Don't be frightened.\"\n\n\"I thought,\" says Jo, who has started and is looking round, \"I \nthought I was in Tom-all-Alone's agin.  Ain't there nobody here but \nyou, Mr. Woodcot?\"\n\n\"Nobody.\"\n\n\"And I ain't took back to Tom-all-Alone's.  Am I, sir?\"\n\n\"No.\"  Jo closes his eyes, muttering, \"I'm wery thankful.\"\n\nAfter watching him closely a little while, Allan puts his mouth \nvery near his ear and says to him in a low, distinct voice, \"Jo!  \nDid you ever know a prayer?\"\n\n\"Never knowd nothink, sir.\"\n\n\"Not so much as one short prayer?\"\n\n\"No, sir.  Nothink at all.  Mr. Chadbands he wos a-prayin wunst at \nMr. Sangsby's and I heerd him, but he sounded as if he wos a-\nspeakin to hisself, and not to me.  He prayed a lot, but I couldn't \nmake out nothink on it.  Different times there was other genlmen \ncome down Tom-all-Alone's a-prayin, but they all mostly sed as the \nt'other 'wuns prayed wrong, and all mostly sounded to be a-talking \nto theirselves, or a-passing blame on the t'others, and not a-\ntalkin to us.  WE never knowd nothink.  I never knowd what it wos \nall about.\"\n\nIt takes him a long time to say this, and few but an experienced \nand attentive listener could hear, or, hearing, understand him.  \nAfter a short relapse into sleep or stupor, he makes, of a sudden, \na strong effort to get out of bed.\n\n\"Stay, Jo!  What now?\"\n\n\"It's time for me to go to that there berryin ground, sir,\" he \nreturns with a wild look.\n\n\"Lie down, and tell me.  What burying ground, Jo?\"\n\n\"Where they laid him as wos wery good to me, wery good to me \nindeed, he wos.  It's time fur me to go down to that there berryin \nground, sir, and ask to be put along with him.  I wants to go there \nand be berried.  He used fur to say to me, 'I am as poor as you to-\nday, Jo,' he ses.  I wants to tell him that I am as poor as him now \nand have come there to be laid along with him.\"\n\n\"By and by, Jo.  By and by.\"\n\n\"Ah!  P'raps they wouldn't do it if I wos to go myself.  But will \nyou promise to have me took there, sir, and laid along with him?\"\n\n\"I will, indeed.\"\n\n\"Thankee, sir.  Thankee, sir.  They'll have to get the key of the \ngate afore they can take me in, for it's allus locked.  And there's \na step there, as I used for to clean with my broom.  It's turned \nwery dark, sir.  Is there any light a-comin?\"\n\n\"It is coming fast, Jo.\"\n\nFast.  The cart is shaken all to pieces, and the rugged road is \nvery near its end.\n\n\"Jo, my poor fellow!\"\n\n\"I hear you, sir, in the dark, but I'm a-gropin--a-gropin--let me \ncatch hold of your hand.\"\n\n\"Jo, can you say what I say?\"\n\n\"I'll say anythink as you say, sir, for I knows it's good.\"\n\n\"Our Father.\"\n\n\"Our Father!  Yes, that's wery good, sir.\"\n\n\"Which art in heaven.\"\n\n\"Art in heaven--is the light a-comin, sir?\"\n\n\"It is close at hand.  Hallowed by thy name!\"\n\n\"Hallowed be--thy--\"\n\nThe light is come upon the dark benighted way.  Dead!\n\nDead, your Majesty.  Dead, my lords and gentlemen.  Dead, right \nreverends and wrong reverends of every order.  Dead, men and women, \nborn with heavenly compassion in your hearts.  And dying thus \naround us every day.\n\n\n\nCHAPTER XLVIII\n\nClosing in\n\n\nThe place in Lincolnshire has shut its many eyes again, and the \nhouse in town is awake.  In Lincolnshire the Dedlocks of the past \ndoze in their picture-frames, and the low wind murmurs through the \nlong drawing-room as if they were breathing pretty regularly.  In \ntown the Dedlocks of the present rattle in their fire-eyed \ncarriages through the darkness of the night, and the Dedlock \nMercuries, with ashes (or hair-powder) on their heads, symptomatic \nof their great humility, loll away the drowsy mornings in the \nlittle windows of the hall.  The fashionable world--tremendous orb, \nnearly five miles round--is in full swing, and the solar system \nworks respectfully at its appointed distances.\n\nWhere the throng is thickest, where the lights are brightest, where \nall the senses are ministered to with the greatest delicacy and \nrefinement, Lady Dedlock is.  From the shining heights she has \nscaled and taken, she is never absent.  Though the belief she of \nold reposed in herself as one able to reserve whatsoever she would \nunder her mantle of pride is beaten down, though she has no \nassurance that what she is to those around her she will remain \nanother day, it is not in her nature when envious eyes are looking \non to yield or to droop.  They say of her that she has lately grown \nmore handsome and more haughty.  The debilitated cousin says of \nher that she's beauty nough--tsetup shopofwomen--but rather \nlarming kind--remindingmanfact--inconvenient woman--who WILL \ngetoutofbedandbawthstahlishment--Shakespeare.\n\nMr. Tulkinghorn says nothing, looks nothing.  Now, as heretofore, \nhe is to be found in doorways of rooms, with his limp white cravat \nloosely twisted into its old-fashioned tie, receiving patronage \nfrom the peerage and making no sign.  Of all men he is still the \nlast who might be supposed to have any influence upon my Lady.  Of \nall woman she is still the last who might be supposed to have any \ndread of him.\n\nOne thing has been much on her mind since their late interview in \nhis turret-room at Chesney Wold.  She is now decided, and prepared \nto throw it off.\n\nIt is morning in the great world, afternoon according to the little \nsun.  The Mercuries, exhausted by looking out of window, are \nreposing in the hall and hang their heavy heads, the gorgeous \ncreatures, like overblown sunflowers.  Like them, too, they seem to \nrun to a deal of seed in their tags and trimmings.  Sir Leicester, \nin the library, has fallen asleep for the good of the country over \nthe report of a Parliamentary committee.  My Lady sits in the room \nin which she gave audience to the young man of the name of Guppy.  \nRosa is with her and has been writing for her and reading to her.  \nRosa is now at work upon embroidery or some such pretty thing, and \nas she bends her head over it, my Lady watches her in silence.  Not \nfor the first time to-day.\n\n\"Rosa.\"\n\nThe pretty village face looks brightly up.  Then, seeing how \nserious my Lady is, looks puzzled and surprised.\n\n\"See to the door.  Is it shut?\"\n\nYes.  She goes to it and returns, and looks yet more surprised.\n\n\"I am about to place confidence in you, child, for I know I may \ntrust your attachment, if not your judgment.  In what I am going to \ndo, I will not disguise myself to you at least.  But I confide in \nyou.  Say nothing to any one of what passes between us.\"\n\nThe timid little beauty promises in all earnestness to be \ntrustworthy.\n\n\"Do you know,\" Lady Dedlock asks her, signing to her to bring her \nchair nearer, \"do you know, Rosa, that I am different to you from \nwhat I am to any one?\"\n\n\"Yes, my Lady.  Much kinder.  But then I often think I know you as \nyou really are.\"\n\n\"You often think you know me as I really am?  Poor child, poor \nchild!\"\n\nShe says it with a kind of scorn--though not of Rosa--and sits \nbrooding, looking dreamily at her.\n\n\"Do you think, Rosa, you are any relief or comfort to me?  Do you \nsuppose your being young and natural, and fond of me and grateful \nto me, makes it any pleasure to me to have you near me?\"\n\n\"I don't know, my Lady; I can scarcely hope so.  But with all my \nheart, I wish it was so.\"\n\n\"It is so, little one.\"\n\nThe pretty face is checked in its flush of pleasure by the dark \nexpression on the handsome face before it.  It looks timidly for an \nexplanation.\n\n\"And if I were to say to-day, 'Go! Leave me!' I should say what \nwould give me great pain and disquiet, child, and what would leave \nme very solitary.\"\n\n\"My Lady!  Have I offended you?\"\n\n\"In nothing.  Come here.\"\n\nRosa bends down on the footstool at my Lady's feet.  My Lady, with \nthat motherly touch of the famous ironmaster night, lays her hand \nupon her dark hair and gently keeps it there.\n\n\"I told you, Rosa, that I wished you to be happy and that I would \nmake you so if I could make anybody happy on this earth.  I cannot.  \nThere are reasons now known to me, reasons in which you have no \npart, rendering it far better for you that you should not remain \nhere.  You must not remain here.  I have determined that you shall \nnot.  I have written to the father of your lover, and he will be \nhere to-day.  All this I have done for your sake.\"\n\nThe weeping girl covers her hand with kisses and says what shall \nshe do, what shall she do, when they are separated!  Her mistress \nkisses her on the cheek and makes no other answer.\n\n\"Now, be happy, child, under better circumstances.  Be beloved and \nhappy!\"\n\n\"Ah, my Lady, I have sometimes thought--forgive my being so free--\nthat YOU are not happy.\"\n\n\"I!\"\n\n\"Will you be more so when you have sent me away?  Pray, pray, think \nagain.  Let me stay a little while!\"\n\n\"I have said, my child, that what I do, I do for your sake, not my \nown.  It is done.  What I am towards you, Rosa, is what I am now--\nnot what I shall be a little while hence.  Remember this, and keep \nmy confidence.  Do so much for my sake, and thus all ends between \nus!\"\n\nShe detaches herself from her simple-hearted companion and leaves \nthe room.  Late in the afternoon, when she next appears upon the \nstaircase, she is in her haughtiest and coldest state.  As \nindifferent as if all passion, feeling, and interest had been worn \nout in the earlier ages of the world and had perished from its \nsurface with its other departed monsters.\n\nMercury has announced Mr. Rouncewell, which is the cause of her \nappearance.  Mr. Rouncewell is not in the library, but she repairs \nto the library.  Sir Leicester is there, and she wishes to speak to \nhim first.\n\n\"Sir Leicester, I am desirous--but you are engaged.\"\n\nOh, dear no!  Not at all.  Only Mr. Tulkinghorn.\n\nAlways at hand.  Haunting every place.  No relief or security from \nhim for a moment.\n\n\"I beg your pardon, Lady Dedlock.  Will you allow me to retire?\"\n\nWith a look that plainly says, \"You know you have the power to \nremain if you will,\" she tells him it is not necessary and moves \ntowards a chair.  Mr. Tulkinghorn brings it a little forward for \nher with his clumsy bow and retires into a window opposite.  \nInterposed between her and the fading light of day in the now quiet \nstreet, his shadow falls upon her, and he darkens all before her.  \nEven so does he darken her life.\n\nIt is a dull street under the best conditions, where the two long \nrows of houses stare at each other with that severity that half-a-\ndozen of its greatest mansions seem to have been slowly stared into \nstone rather than originally built in that material.  It is a \nstreet of such dismal grandeur, so determined not to condescend to \nliveliness, that the doors and windows hold a gloomy state of their \nown in black paint and dust, and the echoing mews behind have a dry \nand massive appearance, as if they were reserved to stable the \nstone chargers of noble statues.  Complicated garnish of iron-work \nentwines itself over the flights of steps in this awful street, and \nfrom these petrified bowers, extinguishers for obsolete flambeaux \ngasp at the upstart gas.  Here and there a weak little iron hoop, \nthrough which bold boys aspire to throw their friends' caps (its \nonly present use), retains its place among the rusty foliage, \nsacred to the memory of departed oil.  Nay, even oil itself, yet \nlingering at long intervals in a little absurd glass pot, with a \nknob in the bottom like an oyster, blinks and sulks at newer lights \nevery night, like its high and dry master in the House of Lords.\n\nTherefore there is not much that Lady Dedlock, seated in her chair, \ncould wish to see through the window in which Mr. Tulkinghorn \nstands.  And yet--and yet--she sends a look in that direction as if \nit were her heart's desire to have that figure moved out of the \nway.\n\nSir Leicester begs his Lady's pardon.  She was about to say?\n\n\"Only that Mr. Rouncewell is here (he has called by my appointment) \nand that we had better make an end of the question of that girl.  I \nam tired to death of the matter.\"\n\n\"What can I do--to--assist?\" demands Sir Leicester in some \nconsiderable doubt.\n\n\"Let us see him here and have done with it.  Will you tell them to \nsend him up?\"\n\n\"Mr. Tulkinghorn, be so good as to ring.  Thank you.  Request,\" \nsays Sir Leicester to Mercury, not immediately remembering the \nbusiness term, \"request the iron gentleman to walk this way.\"\n\nMercury departs in search of the iron gentleman, finds, and \nproduces him.  Sir Leicester receives that ferruginous person \ngraciously.\n\n\"I hope you are well, Mr. Rouncewell.  Be seated.  (My solicitor, \nMr. Tulkinghorn.)  My Lady was desirous, Mr. Rouncewell,\" Sir \nLeicester skilfully transfers him with a solemn wave of his hand, \n\"was desirous to speak with you.  Hem!\"\n\n\"I shall be very happy,\" returns the iron gentleman, \"to give my \nbest attention to anything Lady Dedlock does me the honour to say.\"\n\nAs he turns towards her, he finds that the impression she makes \nupon him is less agreeable than on the former occasion.  A distant \nsupercilious air makes a cold atmosphere about her, and there is \nnothing in her bearing, as there was before, to encourage openness.\n\n\"Pray, sir,\" says Lady Dedlock listlessly, \"may I be allowed to \ninquire whether anything has passed between you and your son \nrespecting your son's fancy?\"\n\nIt is almost too troublesome to her languid eyes to bestow a look \nupon him as she asks this question.\n\n\"If my memory serves me, Lady Dedlock, I said, when I had the \npleasure of seeing you before, that I should seriously advise my \nson to conquer that--fancy.\"  The ironmaster repeats her expression \nwith a little emphasis.\n\n\"And did you?\"\n\n\"Oh! Of course I did.\"\n\nSir Leicester gives a nod, approving and confirmatory.  Very \nproper.  The iron gentleman, having said that he would do it, was \nbound to do it.  No difference in this respect between the base \nmetals and the precious.  Highly proper.\n\n\"And pray has he done so?\"\n\n\"Really, Lady Dedlock, I cannot make you a definite reply.  I fear \nnot.  Probably not yet.  In our condition of life, we sometimes \ncouple an intention with our--our fancies which renders them not \naltogether easy to throw off.  I think it is rather our way to be \nin earnest.\"\n\nSir Leicester has a misgiving that there may be a hidden Wat \nTylerish meaning in this expression, and fumes a little.  Mr. \nRouncewell is perfectly good-humoured and polite, but within such \nlimits, evidently adapts his tone to his reception.\n\n\"Because,\" proceeds my Lady, \"I have been thinking of the subject, \nwhich is tiresome to me.\"\n\n\"I am very sorry, I am sure.\"\n\n\"And also of what Sir Leicester said upon it, in which I quite \nconcur\"--Sir Leicester flattered--\"and if you cannot give us the \nassurance that this fancy is at an end, I have come to the \nconclusion that the girl had better leave me.\"\n\n\"I can give no such assurance, Lady Dedlock.  Nothing of the kind.\"\n\n\"Then she had better go.\"\n\n\"Excuse me, my Lady,\" Sir Leicester considerately interposes, \"but \nperhaps this may be doing an injury to the young woman which she \nhas not merited.  Here is a young woman,\" says Sir Leicester, \nmagnificently laying out the matter with his right hand like a \nservice of plate, \"whose good fortune it is to have attracted the \nnotice and favour of an eminent lady and to live, under the \nprotection of that eminent lady, surrounded by the various \nadvantages which such a position confers, and which are \nunquestionably very great--I believe unquestionably very great, \nsir--for a young woman in that station of life.  The question then \narises, should that young woman be deprived of these many \nadvantages and that good fortune simply because she has\"--Sir \nLeicester, with an apologetic but dignified inclination of his head \ntowards the ironmaster, winds up his sentence--\"has attracted the \nnotice of Mr Rouncewell's son?  Now, has she deserved this \npunishment?  Is this just towards her?  Is this our previous \nunderstanding?\"\n\n\"I beg your pardon,\" interposes Mr. Rouncewell's son's father.  \n\"Sir Leicester, will you allow me?  I think I may shorten the \nsubject.  Pray dismiss that from your consideration.  If you \nremember anything so unimportant--which is not to be expected--you \nwould recollect that my first thought in the affair was directly \nopposed to her remaining here.\"\n\nDismiss the Dedlock patronage from consideration?  Oh! Sir \nLeicester is bound to believe a pair of ears that have been handed \ndown to him through such a family, or he really might have \nmistrusted their report of the iron gentleman's observations.\n\n\"It is not necessary,\" observes my Lady in her coldest manner \nbefore he can do anything but breathe amazedly, \"to enter into \nthese matters on either side.  The girl is a very good girl; I have \nnothing whatever to say against her, but she is so far insensible \nto her many advantages and her good fortune that she is in love--or \nsupposes she is, poor little fool--and unable to appreciate them.\"\n\nSir Leicester begs to observe that wholly alters the case.  He \nmight have been sure that my Lady had the best grounds and reasons \nin support of her view.  He entirely agrees with my Lady.  The \nyoung woman had better go.\n\n\"As Sir Leicester observed, Mr. Rouncewell, on the last occasion \nwhen we were fatigued by this business,\" Lady Dedlock languidly \nproceeds, \"we cannot make conditions with you.  Without conditions, \nand under present circumstances, the girl is quite misplaced here \nand had better go.  I have told her so.  Would you wish to have her \nsent back to the village, or would you like to take her with you, \nor what would you prefer?\"\n\n\"Lady Dedlock, if I may speak plainly--\"\n\n\"By all means.\"\n\n\"--I should prefer the course which will the soonest relieve you of \nthe incumbrance and remove her from her present position.\"\n\n\"And to speak as plainly,\" she returns with the same studied \ncarelessness, \"so should I.  Do I understand that you will take her \nwith you?\"\n\nThe iron gentleman makes an iron bow.\n\n\"Sir Leicester, will you ring?\"  Mr. Tulkinghorn steps forward from \nhis window and pulls the bell.  \"I had forgotten you.  Thank you.\"  \nHe makes his usual bow and goes quietly back again.  Mercury, \nswift-responsive, appears, receives instructions whom to produce, \nskims away, produces the aforesaid, and departs.\n\nRosa has been crying and is yet in distress.  On her coming in, the \nironmaster leaves his chair, takes her arm in his, and remains with \nher near the door ready to depart.\n\n\"You are taken charge of, you see,\" says my Lady in her weary \nmanner, \"and are going away well protected.  I have mentioned that \nyou are a very good girl, and you have nothing to cry for.\"\n\n\"She seems after all,\" observes Mr. Tulkinghorn, loitering a little \nforward with his hands behind him, \"as if she were crying at going \naway.\"\n\n\"Why, she is not well-bred, you see,\" returns Mr. Rouncewell with \nsome quickness in his manner, as if he were glad to have the lawyer \nto retort upon, \"and she is an inexperienced little thing and knows \nno better.  If she had remained here, sir, she would have improved, \nno doubt.\"\n\n\"No doubt,\" is Mr. Tulkinghorn's composed reply.\n\nRosa sobs out that she is very sorry to leave my Lady, and that she \nwas happy at Chesney Wold, and has been happy with my Lady, and \nthat she thanks my Lady over and over again.  \"Out, you silly \nlittle puss!\" says the ironmaster, checking her in a low voice, \nthough not angrily.  \"Have a spirit, if you're fond of Watt!\"  My \nLady merely waves her off with indifference, saying, \"There, there, \nchild!  You are a good girl.  Go away!\"  Sir Leicester has \nmagnificently disengaged himself from the subject and retired into \nthe sanctuary of his blue coat.  Mr. Tulkinghorn, an indistinct \nform against the dark street now dotted with lamps, looms in my \nLady's view, bigger and blacker than before.\n\n\"Sir Leicester and Lady Dedlock,\" says Mr. Rouncewell after a pause \nof a few moments, \"I beg to take my leave, with an apology for \nhaving again troubled you, though not of my own act, on this \ntiresome subject.  I can very well understand, I assure you, how \ntiresome so small a matter must have become to Lady Dedlock.  If I \nam doubtful of my dealing with it, it is only because I did not at \nfirst quietly exert my influence to take my young friend here away \nwithout troubling you at all.  But it appeared to me--I dare say \nmagnifying the importance of the thing--that it was respectful to \nexplain to you how the matter stood and candid to consult your \nwishes and convenience.  I hope you will excuse my want of \nacquaintance with the polite world.\"\n\nSir Leicester considers himself evoked out of the sanctuary by \nthese remarks.  \"Mr. Rouncewell,\" he returns, \"do not menfion it.  \nJustifications are unnecessary, I hope, on either side.\"\n\n\"I am glad to hear it, Sir Leicester; and if I may, by way of a \nlast word, revert to what I said before of my mother's long \nconnexion with the family and the worth it bespeaks on both sides, \nI would point out this little instance here on my arm who shows \nherself so affectionate and faithful in parting and in whom my \nmother, I dare say, has done something to awaken such feelings--\nthough of course Lady Dedlock, by her heartfelt interest and her \ngenial condescension, has done much more.\n\nIf he mean this ironically, it may be truer than he thinks.  He \npoints it, however, by no deviation from his straightforward manner \nof speech, though in saying it he turns towards that part of the \ndim room where my Lady sits.  Sir Leicester stands to return his \nparting salutation, Mr. Tulkinghorn again rings, Mercury takes \nanother flight, and Mr. Rouncewell and Rosa leave the house.\n\nThen lights are brought in, discovering Mr. Tulkinghorn still \nstanding in his window with his hands behind him and my Lady still \nsitting with his figure before her, closing up her view of the \nnight as well as of the day.  She is very pale.  Mr. Tulkinghorn, \nobserving it as she rises to retire, thinks, \"Well she may be!  The \npower of this woman is astonishing.  She has been acting a part the \nwhole time.\"  But he can act a part too--his one unchanging \ncharacter--and as he holds the door open for this woman, fifty \npairs of eyes, each fifty times sharper than Sir Leicester's pair, \nshould find no flaw in him.\n\nLady Dedlock dines alone in her own room to-day.  Sir Leicester is \nwhipped in to the rescue of the Doodle Party and the discomfiture \nof the Coodle Faction.  Lady Dedlock asks on sitting down to \ndinner, still deadly pale (and quite an illustration of the \ndebilitated cousin's text), whether he is gone out?  Yes.  Whether \nMr. Tulkinghorn is gone yet?  No.  Presently she asks again, is he \ngone YET?  No.  What is he doing?  Mercury thinks he is writing \nletters in the library.  Would my Lady wish to see him?  Anything \nbut that.\n\nBut he wishes to see my Lady.  Within a few more minutes he is \nreported as sending his respects, and could my Lady please to \nreceive him for a word or two after her dinner?  My Lady will \nreceive him now.  He comes now, apologizing for intruding, even by \nher permission, while she is at table.  When they are alone, my \nLady waves her hand to dispense with such mockeries.\n\n\"What do you want, sir?\"\n\n\"Why, Lady Dedlock,\" says the lawyer, taking a chair at a little \ndistance from her and slowly rubbing his rusty legs up and down, up \nand down, up and down, \"I am rather surprised by the course you \nhave taken.\"\n\n\"Indeed?\"\n\n\"Yes, decidedly.  I was not prepared for it.  I consider it a \ndeparture from our agreement and your promise.  It puts us in a new \nposition, Lady Dedlock.  I feel myself under the necessity of \nsaying that I don't approve of it.\"\n\nHe stops in his rubbing and looks at her, with his hands on his \nknees.  Imperturbable and unchangeable as he is, there is still an \nindefinable freedom in his manner which is new and which does not \nescape this woman's observation.\n\n\"I do not quite understand you.\"\n\n\"Oh, yes you do, I think.  I think you do.  Come, come, Lady \nDedlock, we must not fence and parry now.  You know you like this \ngirl.\"\n\n\"Well, sir?\"\n\n\"And you know--and I know--that you have not sent her away for the \nreasons you have assigned, but for the purpose of separating her as \nmuch as possible from--excuse my mentioning it as a matter of \nbusiness--any reproach and exposure that impend over yourself.\"\n\n\"Well, sir?\"\n\n\"Well, Lady Dedlock,\" returns the lawyer, crossing his legs and \nnursing the uppermost knee.  \"I object to that.  I consider that a \ndangerous proceeding.  I know it to be unnecessary and calculated \nto awaken speculation, doubt, rumour, I don't know what, in the \nhouse.  Besides, it is a violation of our agreement.  You were to \nbe exactly what you were before.  Whereas, it must be evident to \nyourself, as it is to me, that you have been this evening very \ndifferent from what you were before.  Why, bless my soul, Lady \nDedlock, transparenfly so!\"\n\n\"If, sir,\" she begins, \"in my knowledge of my secret--\"  But he \ninterrupts her.\n\n\"Now, Lady Dedlock, this is a matter of business, and in a matter \nof business the ground cannot be kept too clear.  It is no longer \nyour secret.  Excuse me.  That is just the mistake.  It is my \nsecret, in trust for Sir Leicester and the family.  If it were your \nsecret, Lady Dedlock, we should not be here holding this \nconversation.\"\n\n\"That is very true.  If in my knowledge of THE secret I do what I \ncan to spare an innocent girl (especially, remembering your own \nreference to her when you told my story to the assembled guests at \nChesney Wold) from the taint of my impending shame, I act upon a \nresolution I have taken.  Nothing in the world, and no one in the \nworld, could shake it or could move me.\"  This she says with great \ndeliberation and distinctness and with no more outward passion than \nhimself.  As for him, he methodically discusses his matter of \nbusiness as if she were any insensible instrument used in business.\n\n\"Really?  Then you see, Lady Dedlock,\" he returns, \"you are not to \nbe trusted.  You have put the case in a perfecfly plain way, and \naccording to the literal fact; and that being the case, you are not \nto be trusted.\"\n\n\"Perhaps you may remember that I expressed some anxiety on this \nsame point when we spoke at night at Chesney Wold?\"\n\n\"Yes,\" says Mr. Tulkinghorn, coolly getting up and standing on the \nhearth.  \"Yes.  I recollect, Lady Dedlock, that you certainly \nreferred to the girl, but that was before we came to our \narrangement, and both the letter and the spirit of our arrangement \naltogether precluded any action on your part founded upon my \ndiscovery.  There can be no doubt about that.  As to sparing the \ngirl, of what importance or value is she?  Spare!  Lady Dedlock, \nhere is a family name compromised.  One might have supposed that \nthe course was straight on--over everything, neither to the right \nnor to the left, regardless of all considerations in the way, \nsparing nothing, treading everything under foot.\"\n\nShe has been looking at the table.  She lifts up her eyes and looks \nat him.  There is a stern expression on her face and a part of her \nlower lip is compressed under her teeth.  \"This woman understands \nme,\" Mr. Tulkinghorn thinks as she lets her glance fall again.  \n\"SHE cannot be spared.  Why should she spare others?\"\n\nFor a little while they are silent.  Lady Dedlock has eaten no \ndinner, but has twice or thrice poured out water with a steady hand \nand drunk it.  She rises from table, takes a lounging-chair, and \nreclines in it, shading her face.  There is nothing in her manner \nto express weakness or excite compassion.  It is thoughtful, \ngloomy, concentrated.  \"This woman,\" thinks Mr. Tulkinghorn, \nstanding on the hearth, again a dark object closing up her view, \n\"is a study.\"\n\nHe studies her at his leisure, not speaking for a time.  She too \nstudies something at her leisure.  She is not the first to speak, \nappearing indeed so unlikely to be so, though he stood there until \nmidnight, that even he is driven upon breaking silence.\n\n\"Lady Dedlock, the most disagreeable part of this business \ninterview remains, but it is business.  Our agreement is broken.  A \nlady of your sense and strength of character will be prepared for \nmy now declaring it void and taking my own course.\"\n\n\"I am quite prepared.\"\n\nMr. Tulkinghorn inclines his head.  \"That is all I have to trouble \nyou with, Lady Dedlock.\"\n\nShe stops him as he is moving out of the room by asking, \"This is \nthe notice I was to receive?  I wish not to misapprehend you.\"\n\n\"Not exactly the notice you were to receive, Lady Dedlock, because \nthe contemplated notice supposed the agreement to have been \nobserved.  But virtually the same, virtually the same.  The \ndifference is merely in a lawyer's mind.\"\n\n\"You intend to give me no other notice?\"\n\n\"You are right.  No.\"\n\n\"Do you contemplate undeceiving Sir Leicester to-night?\"\n\n\"A home question!\" says Mr. Tulkinghorn with a slight smile and \ncautiously shaking his head at the shaded face.  \"No, not to-\nnight.\"\n\n\"To-morrow?\"\n\n\"All things considered, I had better decline answering that \nquestion, Lady Dedlock.  If I were to say I don't know when, \nexactly, you would not believe me, and it would answer no purpose.  \nIt may be to-morrow.  I would rather say no more.  You are \nprepared, and I hold out no expectations which circumstances might \nfail to justify.  I wish you good evening.\"\n\nShe removes her hand, turns her pale face towards him as he walks \nsilently to the door, and stops him once again as he is about to \nopen it.\n\n\"Do you intend to remain in the house any time?  I heard you were \nwriting in the library.  Are you going to return there?\"\n\n\"Only for my hat.  I am going home.\"\n\nShe bows her eyes rather than her head, the movement is so slight \nand curious, and he withdraws.  Clear of the room he looks at his \nwatch but is inclined to doubt it by a minute or thereabouts.  \nThere is a splendid clock upon the staircase, famous, as splendid \nclocks not often are, for its accuracy.  \"And what do YOU say,\" Mr. \nTulkinghorn inquires, referring to it.  \"What do you say?\"\n\nIf it said now, \"Don't go home!\"  What a famous clock, hereafter, \nif it said to-night of all the nights that it has counted off, to \nthis old man of all the young and old men who have ever stood \nbefore it, \"Don't go home!\"  With its sharp clear bell it strikes \nthree quarters after seven and ticks on again.  \"Why, you are worse \nthan I thought you,\" says Mr. Tulkinghorn, muttering reproof to his \nwatch.  \"Two minutes wrong?  At this rate you won't last my time.\"  \nWhat a watch to return good for evil if it ticked in answer, \"Don't \ngo home!\"\n\nHe passes out into the streets and walks on, with his hands behind \nhim, under the shadow of the lofty houses, many of whose mysteries, \ndifficulties, mortgages, delicate affairs of all kinds, are \ntreasured up within his old black satin waistcoat.  He is in the \nconfidence of the very bricks and mortar.  The high chimney-stacks \ntelegraph family secrets to him.  Yet there is not a voice in a \nmile of them to whisper, \"Don't go home!\"\n\nThrough the stir and motion of the commoner streets; through the \nroar and jar of many vehicles, many feet, many voices; with the \nblazing shop-lights lighting him on, the west wind blowing him on, \nand the crowd pressing him on, he is pitilessly urged upon his way, \nand nothing meets him murmuring, \"Don't go home!\"  Arrived at last \nin his dull room to light his candles, and look round and up, and \nsee the Roman pointing from the ceiling, there is no new \nsignificance in the Roman's hand to-night or in the flutter of the \nattendant groups to give him the late warning, \"Don't come here!\"\n\nIt is a moonlight night, but the moon, being past the full, is only \nnow rising over the great wilderness of London.  The stars are \nshining as they shone above the turret-leads at Chesney Wold.  This \nwoman, as he has of late been so accustomed to call her, looks out \nupon them.  Her soul is turbulent within her; she is sick at heart \nand restless.  The large rooms are too cramped and close.  She \ncannot endure their restraint and will walk alone in a neighbouring \ngarden.\n\nToo capricious and imperious in all she does to be the cause of \nmuch surprise in those about her as to anything she does, this \nwoman, loosely muffled, goes out into the moonlight.  Mercury \nattends with the key.  Having opened the garden-gate, he delivers \nthe key into his Lady's hands at her request and is bidden to go \nback.  She will walk there some time to ease her aching head.  She \nmay be an hour, she may be more.  She needs no further escort.  The \ngate shuts upon its spring with a clash, and he leaves her passing \non into the dark shade of some trees.\n\nA fine night, and a bright large moon, and multitudes of stars.  \nMr. Tulkinghorn, in repairing to his cellar and in opening and \nshutting those resounding doors, has to cross a little prison-like \nyard.  He looks up casually, thinking what a fine night, what a \nbright large moon, what multitudes of stars!  A quiet night, too.\n\nA very quiet night.  When the moon shines very brilliantly, a \nsolitude and stillness seem to proceed from her that influence even \ncrowded places full of life.  Not only is it a still night on dusty \nhigh roads and on hill-summits, whence a wide expanse of country \nmay be seen in repose, quieter and quieter as it spreads away into \na fringe of trees against the sky with the grey ghost of a bloom \nupon them; not only is it a still night in gardens and in woods, \nand on the river where the water-meadows are fresh and green, and \nthe stream sparkles on among pleasant islands, murmuring weirs, and \nwhispering rushes; not only does the stillness attend it as it \nflows where houses cluster thick, where many bridges are reflected \nin it, where wharves and shipping make it black and awful, where it \nwinds from these disfigurements through marshes whose grim beacons \nstand like skeletons washed ashore, where it expands through the \nbolder region of rising grounds, rich in cornfield wind-mill and \nsteeple, and where it mingles with the ever-heaving sea; not only \nis it a still night on the deep, and on the shore where the watcher \nstands to see the ship with her spread wings cross the path of \nlight that appears to be presented to only him; but even on this \nstranger's wilderness of London there is some rest.  Its steeples \nand towers and its one great dome grow more ethereal; its smoky \nhouse-tops lose their grossness in the pale effulgence; the noises \nthat arise from the streets are fewer and are softened, and the \nfootsteps on the pavements pass more tranquilly away.  In these \nfields of Mr. Tulkinghorn's inhabiting, where the shepherds play on \nChancery pipes that have no stop, and keep their sheep in the fold \nby hook and by crook until they have shorn them exceeding close, \nevery noise is merged, this moonlight night, into a distant ringing \nhum, as if the city were a vast glass, vibrating.\n\nWhat's that?  Who fired a gun or pistol?  Where was it?\n\nThe few foot-passengers start, stop, and stare about them.  Some \nwindows and doors are opened, and people come out to look.  It was \na loud report and echoed and rattled heavily.  It shook one house, \nor so a man says who was passing.  It has aroused all the dogs in \nthe neighbourhood, who bark vehemently.  Terrified cats scamper \nacross the road.  While the dogs are yet barking and howling--there \nis one dog howling like a demon--the church-clocks, as if they were \nstartled too, begin to strike.  The hum from the streets, likewise, \nseems to swell into a shout.  But it is soon over.  Before the last \nclock begins to strike ten, there is a lull.  When it has ceased, \nthe fine night, the bright large moon, and multitudes of stars, are \nleft at peace again.\n\nHas Mr. Tulkinghorn been disturbed?  His windows are dark and \nquiet, and his door is shut.  It must be something unusual indeed \nto bring him out of his shell.  Nothing is heard of him, nothing is \nseen of him.  What power of cannon might it take to shake that \nrusty old man out of his immovable composure?\n\nFor many years the persistent Roman has been pointing, with no \nparticular meaning, from that ceiling.  It is not likely that he \nhas any new meaning in him to-night.  Once pointing, always \npointing--like any Roman, or even Briton, with a single idea.  \nThere he is, no doubt, in his impossible attitude, pointing, \nunavailingly, all night long.  Moonlight, darkness, dawn, sunrise, \nday.  There he is still, eagerly pointing, and no one minds him.\n\nBut a little after the coming of the day come people to clean the \nrooms.  And either the Roman has some new meaning in him, not \nexpressed before, or the foremost of them goes wild, for looking up \nat his outstretched hand and looking down at what is below it, that \nperson shrieks and flies.  The others, looking in as the first one \nlooked, shriek and fly too, and there is an alarm in the street.\n\nWhat does it mean?  No light is admitted into the darkened chamber, \nand people unaccustomed to it enter, and treading softly but \nheavily, carry a weight into the bedroom and lay it down.  There is \nwhispering and wondering all day, strict search of every corner, \ncareful tracing of steps, and careful noting of the disposition of \nevery article of furniture.  All eyes look up at the Roman, and all \nvoices murmur, \"If he could only tell what he saw!\"\n\nHe is pointing at a table with a bottle (nearly full of wine) and a \nglass upon it and two candles that were blown out suddenly soon \nafter being lighted.  He is pointing at an empty chair and at a \nstain upon the ground before it that might be almost covered with a \nhand.  These objects lie directly within his range.  An excited \nimagination might suppose that there was something in them so \nterrific as to drive the rest of the composition, not only the \nattendant big-legged boys, but the clouds and flowers and pillars \ntoo--in short, the very body and soul of Allegory, and all the \nbrains it has--stark mad.  It happens surely that every one who \ncomes into the darkened room and looks at these things looks up at \nthe Roman and that he is invested in all eyes with mystery and awe, \nas if he were a paralysed dumb witness.\n\nSo it shall happen surely, through many years to come, that ghostly \nstories shall be told of the stain upon the floor, so easy to be \ncovered, so hard to be got out, and that the Roman, pointing from \nthe ceiling shall point, so long as dust and damp and spiders spare \nhim, with far greater significance than he ever had in Mr. \nTulkinghorn's time, and with a deadly meaning.  For Mr. \nTulkinghorn's time is over for evermore, and the Roman pointed at \nthe murderous hand uplifted against his life, and pointed \nhelplessly at him, from night to morning, lying face downward on \nthe floor, shot through the heart.\n\n\n\nCHAPTER XLIX\n\nDutiful Friendship\n\n\nA great annual occasion has come round in the establishment of Mr. \nMatthew Bagnet, otherwise Lignum Vitae, ex-artilleryman and present \nbassoon-player.  An occasion of feasting and festival.  The \ncelebration of a birthday in the family.\n\nIt is not Mr. Bagnet's birthday.  Mr. Bagnet merely distinguishes \nthat epoch in the musical instrument business by kissing the \nchildren with an extra smack before breakfast, smoking an \nadditional pipe after dinner, and wondering towards evening what \nhis poor old mother is thinking about it--a subject of infinite \nspeculation, and rendered so by his mother having departed this \nlife twenty years.  Some men rarely revert to their father, but \nseem, in the bank-books of their remembrance, to have transferred \nall the stock of filial affection into their mother's name.  Mr. \nBagnet is one of like his trade the better for that.  If I had kept \nclear of his old girl causes him usually to make the noun-\nsubstantive \"goodness\" of the feminine gender.\n\nIt is not the birthday of one of the three children.  Those \noccasions are kept with some marks of distinction, but they rarely \noverleap the bounds of happy returns and a pudding.  On young \nWoolwich's last birthday, Mr. Bagnet certainly did, after observing \non his growth and general advancement, proceed, in a moment of \nprofound reflection on the changes wrought by time, to examine him \nin the catechism, accomplishing with extreme accuracy the questions \nnumber one and two, \"What is your name?\" and \"Who gave you that \nname?\" but there failing in the exact precision of his memory and \nsubstituting for number three the question \"And how do you like \nthat name?\" which he propounded with a sense of its importance, in \nitself so edifying and improving as to give it quite an orthodox \nair.  This, however, was a speciality on that particular birthday, \nand not a general solemnity.\n\nIt is the old girl's birthday, and that is the greatest holiday and \nreddest-letter day in Mr. Bagnet's calendar.  The auspicious event \nis always commemorated according to certain forms settled and \nprescribed by Mr. Bagnet some years since.  Mr. Bagnet, being \ndeeply convinced that to have a pair of fowls for dinner is to \nattain the highest pitch of imperial luxury, invariably goes forth \nhimself very early in the morning of this day to buy a pair; he is, \nas invariably, taken in by the vendor and installed in the \npossession of the oldest inhabitants of any coop in Europe.  \nReturning with these triumphs of toughness tied up in a clean blue \nand white cotton handkerchief (essential to the arrangements), he \nin a casual manner invites Mrs. Bagnet to declare at breakfast what \nshe would like for dinner.  Mrs. Bagnet, by a coincidence never \nknown to fail, replying fowls, Mr. Bagnet instantly produces his \nbundle from a place of concealment amidst general amazement and \nrejoicing.  He further requires that the old girl shall do nothing \nall day long but sit in her very best gown and be served by himself \nand the young people.  As he is not illustrious for his cookery, \nthis may be supposed to be a matter of state rather than enjoyment \non the old girl's part, but she keeps her state with all imaginable \ncheerfulness.\n\nOn this present birthday, Mr. Bagnet has accomplished the usual \npreliminaries.  He has bought two specimens of poultry, which, if \nthere be any truth in adages, were certainly not caught with chaff, \nto be prepared for the spit; he has amazed and rejoiced the family \nby their unlooked-for production; he is himself directing the \nroasting of the poultry; and Mrs. Bagnet, with her wholesome brown \nfingers itching to prevent what she sees going wrong, sits in her \ngown of ceremony, an honoured guest.\n\nQuebec and Malta lay the cloth for dinner, while Woolwich, serving, \nas beseems him, under his father, keeps the fowls revolving.  To \nthese young scullions Mrs. Bagnet occasionally imparts a wink, or a \nshake of the head, or a crooked face, as they made mistakes.\n\n\"At half after one.\"  Says Mr. Bagnet.  \"To the minute.  They'll be \ndone.\"\n\nMrs. Bagnet, with anguish, beholds one of them at a standstill \nbefore the fire and beginning to burn.\n\n\"You shall have a dinner, old girl,\" says Mr. Bagnet.  \"Fit for a \nqueen.\"\n\nMrs. Bagnet shows her white teeth cheerfully, but to the perception \nof her son, betrays so much uneasiness of spirit that he is \nimpelled by the dictates of affection to ask her, with his eyes, \nwhat is the matter, thus standing, with his eyes wide open, more \noblivious of the fowls than before, and not affording the least \nhope of a return to consciousness.  Fortunately his elder sister \nperceives the cause of the agitation in Mrs. Bagnet's breast and \nwith an admonitory poke recalls him.  The stopped fowls going round \nagain, Mrs. Bagnet closes her eyes in the intensity of her relief.\n\n\"George will look us up,\" says Mr. Bagnet.  \"At half after four.  \nTo the moment.  How many years, old girl.  Has George looked us up.  \nThis afternoon?\"\n\n\"Ah, Lignum, Lignum, as many as make an old woman of a young one, I \nbegin to think.  Just about that, and no less,\" returns Mrs. \nBagnet, laughing and shaking her head.\n\n\"Old girl,\" says Mr. Bagnet, \"never mind.  You'd be as young as \never you was.  If you wasn't younger.  Which you are.  As everybody \nknows.\"\n\nQuebec and Malta here exclaim, with clapping of hands, that Bluffy \nis sure to bring mother something, and begin to speculate on what \nit will be.\n\n\"Do you know, Lignum,\" says Mrs. Bagnet, casting a glance on the \ntable-cloth, and winking \"salt!\" at Malta with her right eye, and \nshaking the pepper away from Quebec with her head, \"I begin to \nthink George is in the roving way again.\n\n\"George,\" returns Mr. Bagnet, \"will never desert.  And leave his \nold comrade.  In the lurch.  Don't be afraid of it.\"\n\n\"No, Lignum.  No.  I don't say he will.  I don't think he will.  \nBut if he could get over this money trouble of his, I believe he \nwould be off.\"\n\nMr. Bagnet asks why.\n\n\"Well,\" returns his wife, considering, \"George seems to me to be \ngetting not a little impatient and restless.  I don't say but what \nhe's as free as ever.  Of course he must be free or he wouldn't be \nGeorge, but he smarts and seems put out.\"\n\n\"He's extra-drilled,\" says Mr. Bagnet.  \"By a lawyer.  Who would \nput the devil out.\"\n\n\"There's something in that,\" his wife assents; \"but so it is, \nLignum.\"\n\nFurther conversation is prevented, for the time, by the necessity \nunder which Mr. Bagnet finds himself of directing the whole force \nof his mind to the dinner, which is a little endangered by the dry \nhumour of the fowls in not yielding any gravy, and also by the made \ngravy acquiring no flavour and turning out of a flaxen complexion.  \nWith a similar perverseness, the potatoes crumble off forks in the \nprocess of peeling, upheaving from their centres in every \ndirection, as if they were subject to earthquakes.  The legs of the \nfowls, too, are longer than could be desired, and extremely scaly.  \nOvercoming these disadvantages to the best of his ability, Mr. \nBagnet at last dishes and they sit down at table, Mrs. Bagnet \noccupying the guest's place at his right hand.\n\nIt is well for the old girl that she has but one birthday in a \nyear, for two such indulgences in poultry might be injurious.  \nEvery kind of finer tendon and ligament that is in the nature of \npoultry to possess is developed in these specimens in the singular \nform of guitar-strings.  Their limbs appear to have struck roots \ninto their breasts and bodies, as aged trees strike roots into the \nearth.  Their legs are so hard as to encourage the idea that they \nmust have devoted the greater part of their long and arduous lives \nto pedestrian exercises and the walking of matches.  But Mr. \nBagnet, unconscious of these little defects, sets his heart on Mrs. \nBagnet eating a most severe quantity of the delicacies before her; \nand as that good old girl would not cause him a moment's \ndisappointment on any day, least of all on such a day, for any \nconsideration, she imperils her digestion fearfully.  How young \nWoolwich cleans the drum-sticks without being of ostrich descent, \nhis anxious mother is at a loss to understand.\n\nThe old girl has another trial to undergo after the conclusion of \nthe repast in sitting in state to see the room cleared, the hearth \nswept, and the dinner-service washed up and polished in the \nbackyard.  The great delight and energy with which the two young \nladies apply themselves to these duties, turning up their skirts in \nimitation of their mother and skating in and out on little \nscaffolds of pattens, inspire the highest hopes for the future, but \nsome anxiety for the present.  The same causes lead to confusion of \ntongues, a clattering of crockery, a rattling of tin mugs, a \nwhisking of brooms, and an expenditure of water, all in excess, \nwhile the saturation of the young ladies themselves is almost too \nmoving a spectacle for Mrs. Bagnet to look upon with the calmness \nproper to her position.  At last the various cleansing processes \nare triumphantly completed; Quebec and Malta appear in fresh \nattire, smiling and dry; pipes, tobacco, and something to drink are \nplaced upon the table; and the old girl enjoys the first peace of \nmind she ever knows on the day of this delightful entertainment.\n\nWhen Mr. Bagnet takes his usual seat, the hands of the clock are \nvery near to half-past four; as they mark it accurately, Mr. Bagnet \nannounces, \"George!  Military time.\"\n\nIt is George, and he has hearty congratulations for the old girl \n(whom he kisses on the great occasion), and for the children, and \nfor Mr. Bagnet.  \"Happy returns to all!\" says Mr. George.\n\n\"But, George, old man!\" cries Mrs. Bagnet, looking at him \ncuriously.  \"What's come to you?\"\n\n\"Come to me?\"\n\n\"Ah! You are so white, George--for you--and look so shocked.  Now \ndon't he, Lignum?\"\n\n\"George,\" says Mr. Bagnet, \"tell the old girl.  What's the matter.\"\n\n\"I didn't know I looked white,\" says the trooper, passing his hand \nover his brow, \"and I didn't know I looked shocked, and I'm sorry I \ndo.  But the truth is, that boy who was taken in at my place died \nyesterday afternoon, and it has rather knocked me over.\"\n\n\"Poor creetur!\" says Mrs. Bagnet with a mother's pity.  \"Is he \ngone?  Dear, dear!\"\n\n\"I didn't mean to say anything about it, for it's not birthday \ntalk, but you have got it out of me, you see, before I sit down.  I \nshould have roused up in a minute,\" says the trooper, making \nhimself speak more gaily, \"but you're so quick, Mrs. Bagnet.\"\n\n\"You're right.  The old girl,\" says Mr. Bagnet.  \"Is as quick.  As \npowder.\"\n\n\"And what's more, she's the subject of the day, and we'll stick to \nher,\" cries Mr. George.  \"See here, I have brought a little brooch \nalong with me.  It's a poor thing, you know, but it's a keepsake.  \nThat's all the good it is, Mrs. Bagnet.\"\n\nMr. George produces his present, which is greeted with admiring \nleapings and clappings by the young family, and with a species of \nreverential admiration by Mr. Bagnet.  \"Old girl,\" says Mr. Bagnet.  \n\"Tell him my opinion of it.\"\n\n\"Why, it's a wonder, George!\" Mrs. Bagnet exclaims.  \"It's the \nbeautifullest thing that ever was seen!\"\n\n\"Good!\" says Mr. Bagnet.  \"My opinion.\"\n\n\"It's so pretty, George,\" cries Mrs. Bagnet, turning it on all \nsides and holding it out at arm's length, \"that it seems too choice \nfor me.\"\n\n\"Bad!\" says Mr. Bagnet.  \"Not my opinlon.\"\n\n\"But whatever it is, a hundred thousand thanks, old fellow,\" says \nMrs. Bagnet, her eyes sparkling with pleasure and her hand \nstretched out to him; \"and though I have been a crossgrained \nsoldier's wife to you sometimes, George, we are as strong friends, \nI am sure, in reality, as ever can be.  Now you shall fasten it on \nyourself, for good luck, if you will, George.\"\n\nThe children close up to see it done, and Mr. Bagnet looks over \nyoung Woolwich's head to see it done with an interest so maturely \nwooden, yet pleasantly childish, that Mrs. Bagnet cannot help \nlaughing in her airy way and saying, \"Oh, Lignum, Lignum, what a \nprecious old chap you are!\"  But the trooper fails to fasten the \nbrooch.  His hand shakes, he is nervous, and it falls off.  \"Would \nany one believe this?\" says he, catching it as it drops and looking \nround.  \"I am so out of sorts that I bungle at an easy job like \nthis!\"\n\nMrs. Bagnet concludes that for such a case there is no remedy like \na pipe, and fastening the brooch herself in a twinkling, causes the \ntrooper to be inducted into his usual snug place and the pipes to \nbe got into action.  \"If that don't bring you round, George,\" says \nshe, \"just throw your eye across here at your present now and then, \nand the two together MUST do it.\"\n\n\"You ought to do it of yourself,\" George answers; \"I know that very \nwell, Mrs. Bagnet.  I'll tell you how, one way and another, the \nblues have got to be too many for me.  Here was this poor lad.  \n'Twas dull work to see him dying as he did, and not be able to help \nhim.\"\n\n\"What do you mean, George?  You did help him.  You took him under \nyour roof.\"\n\n\"I helped him so far, but that's little.  I mean, Mrs. Bagnet, \nthere he was, dying without ever having been taught much more than \nto know his right hand from his left.  And he was too far gone to \nbe helped out of that.\"\n\n\"Ah, poor creetur!\" says Mrs. Bagnet.\n\n\"Then,\" says the trooper, not yet lighting his pipe, and passing \nhis heavy hand over his hair, \"that brought up Gridley in a man's \nmind.  His was a bad case too, in a different way.  Then the two \ngot mixed up in a man's mind with a flinty old rascal who had to do \nwith both.  And to think of that rusty carbine, stock and barrel, \nstanding up on end in his corner, hard, indifferent, taking \neverything so evenly--it made flesh and blood tingle, I do assure \nyou.\"\n\n\"My advice to you,\" returns Mrs. Bagnet, \"is to light your pipe and \ntingle that way.  It's wholesomer and comfortabler, and better for \nthe health altogether.\"\n\n\"You're right,\" says the trooper, \"and I'll do it.\"\n\nSo he does it, though still with an indignant gravity that \nimpresses the young Bagnets, and even causes Mr. Bagnet to defer \nthe ceremony of drinking Mrs. Bagnet's health, always given by \nhimself on these occasions in a speech of exemplary terseness.  But \nthe young ladies having composed what Mr. Bagnet is in the habit of \ncalling \"the mixtur,\" and George's pipe being now in a glow, Mr. \nBagnet considers it his duty to proceed to the toast of the \nevening.  He addresses the assembled company in the following \nterms.\n\n\"George.  Woolwich.  Quebec.  Malta.  This is her birthday.  Take a \nday's march.  And you won't find such another.  Here's towards \nher!\"\n\nThe toast having been drunk with enthusiasm, Mrs. Bagnet returns \nthanks in a neat address of corresponding brevity.  This model \ncomposition is limited to the three words \"And wishing yours!\" \nwhich the old girl follows up with a nod at everybody in succession \nand a well-regulated swig of the mixture.  This she again follows \nup, on the present occasion, by the wholly unexpected exclamation, \n\"Here's a man!\"\n\nHere IS a man, much to the astonishment of the little company, \nlooking in at the parlour-door.  He is a sharp-eyed man--a quick \nkeen man--and he takes in everybody's look at him, all at once, \nindividually and collectively, in a manner that stamps him a \nremarkable man.\n\n\"George,\" says the man, nodding, \"how do you find yourself?\"\n\n\"Why, it's Bucket!\" cries Mr. George.\n\n\"Yes,\" says the man, coming in and closing the door.  \"I was going \ndown the street here when I happened to stop and look in at the \nmusical instruments in the shop-window--a friend of mine is in want \nof a second-hand wiolinceller of a good tone--and I saw a party \nenjoying themselves, and I thought it was you in the corner; I \nthought I couldn't be mistaken.  How goes the world with you, \nGeorge, at the present moment?  Pretty smooth?  And with you, \nma'am?  And with you, governor?  And Lord,\" says Mr. Bucket, \nopening his arms, \"here's children too!  You may do anything with \nme if you only show me children.  Give us a kiss, my pets.  No \noccasion to inquire who YOUR father and mother is.  Never saw such \na likeness in my life!\"\n\nMr. Bucket, not unwelcome, has sat himself down next to Mr. George \nand taken Quebec and Malta on his knees.  \"You pretty dears,\" says \nMr. Bucket, \"give us another kiss; it's the only thing I'm greedy \nin.  Lord bless you, how healthy you look!  And what may be the \nages of these two, ma'am?  I should put 'em down at the figures of \nabout eight and ten.\"\n\n\"You're very near, sir,\" says Mrs. Bagnet.\n\n\"I generally am near,\" returns Mr. Bucket, \"being so fond of \nchildren.  A friend of mine has had nineteen of 'em, ma'am, all by \none mother, and she's still as fresh and rosy as the morning.  Not \nso much so as yourself, but, upon my soul, she comes near you!  And \nwhat do you call these, my darling?\" pursues Mr. Bucket, pinching \nMalta's cheeks.  \"These are peaches, these are.  Bless your heart!  \nAnd what do you think about father?  Do you think father could \nrecommend a second-hand wiolinceller of a good tone for Mr. \nBucket's friend, my dear?  My name's Bucket.  Ain't that a funny \nname?\"\n\nThese blandishments have entirely won the family heart.  Mrs. \nBagnet forgets the day to the extent of filling a pipe and a glass \nfor Mr. Bucket and waiting upon him hospitably.  She would be glad \nto receive so pleasant a character under any circumstances, but she \ntells him that as a friend of George's she is particularly glad to \nsee him this evening, for George has not been in his usual spirits.\n\n\"Not in his usual spirits?\" exclaims Mr. Bucket.  \"Why, I never \nheard of such a thing!  What's the matter, George?  You don't \nintend to tell me you've been out of spirits.  What should you be \nout of spirits for?  You haven't got anything on your mind, you \nknow.\"\n\n\"Nothing particular,\" returns the trooper.\n\n\"I should think not,\" rejoins Mr. Bucket.  \"What could you have on \nyour mind, you know!  And have these pets got anything on THEIR \nminds, eh?  Not they, but they'll be upon the minds of some of the \nyoung fellows, some of these days, and make 'em precious low-\nspirited.  I ain't much of a prophet, but I can tell you that, \nma'am.\"\n\nMrs. Bagnet, quite charmed, hopes Mr. Bucket has a family of his \nown.\n\n\"There, ma'am!\" says Mr. Bucket.  \"Would you believe it?  No, I \nhaven't.  My wife and a lodger constitute my family.  Mrs. Bucket \nis as fond of children as myself and as wishful to have 'em, but \nno.  So it is.  Worldly goods are divided unequally, and man must \nnot repine.  What a very nice backyard, ma'am!  Any way out of that \nyard, now?\"\n\nThere is no way out of that yard.\n\n\"Ain't there really?\" says Mr. Bucket.  \"I should have thought \nthere might have been.  Well, I don't know as I ever saw a backyard \nthat took my fancy more.  Would you allow me to look at it?  Thank \nyou.  No, I see there's no way out.  But what a very good-\nproportioned yard it is!\"\n\nHaving cast his sharp eye all about it, Mr. Bucket returns to his \nchair next his friend Mr. George and pats Mr. George affectionately \non the shoulder.\n\n\"How are your spirits now, George?\"\n\n\"All right now,\" returns the trooper.\n\n\"That's your sort!\" says Mr. Bucket.  \"Why should you ever have \nbeen otherwise?  A man of your fine figure and constitution has no \nright to be out of spirits.  That ain't a chest to be out of \nspirits, is it, ma'am?  And you haven't got anything on your mind, \nyou know, George; what could you have on your mind!\"\n\nSomewhat harping on this phrase, considering the extent and variety \nof his conversational powers, Mr. Bucket twice or thrice repeats it \nto the pipe he lights, and with a listening face that is \nparticularly his own.  But the sun of his sociality soon recovers \nfrom this brief eclipse and shines again.\n\n\"And this is brother, is it, my dears?\" says Mr. Bucket, referring \nto Quebec and Malta for information on the subject of young \nWoolwich.  \"And a nice brother he is--half-brother I mean to say.  \nFor he's too old to be your boy, ma'am.\"\n\n\"I can certify at all events that he is not anybody else's,\" \nreturns Mrs. Bagnet, laughing.\n\n\"Well, you do surprise me!  Yet he's like you, there's no denying.  \nLord, he's wonderfully like you!  But about what you may call the \nbrow, you know, THERE his father comes out!\"  Mr. Bucket compares \nthe faces with one eye shut up, while Mr. Bagnet smokes in stolid \nsatisfaction.\n\nThis is an opportunity for Mrs. Bagnet to inform him that the boy \nis George's godson.\n\n\"George's godson, is he?\" rejoins Mr. Bucket with extreme \ncordiality.  \"I must shake hands over again with George's godson.  \nGodfather and godson do credit to one another.  And what do you \nintend to make of him, ma'am?  Does he show any turn for any \nmusical instrument?\"\n\nMr. Bagnet suddenly interposes, \"Plays the fife.  Beautiful.\"\n\n\"Would you believe it, governor,\" says Mr. Bucket, struck by the \ncoincidence, \"that when I was a boy I played the fife myself?  Not \nin a scientific way, as I expect he does, but by ear.  Lord bless \nyou!  'British Grenadiers'--there's a tune to warm an Englishman \nup!  COULD you give us 'British Grenadiers,' my fine fellow?\"\n\nNothing could be more acceptable to the little circle than this \ncall upon young Woolwich, who immediately fetches his fife and \nperforms the stirring melody, during which performance Mr. Bucket, \nmuch enlivened, beats time and never falls to come in sharp with \nthe burden, \"British Gra-a-anadeers!\"  In short, he shows so much \nmusical taste that Mr. Bagnet actually takes his pipe from his lips \nto express his conviction that he is a singer.  Mr. Bucket receives \nthe harmonious impeachment so modestly, confessing how that he did \nonce chaunt a little, for the expression of the feelings of his own \nbosom, and with no presumptuous idea of entertaining his friends, \nthat he is asked to sing.  Not to be behindhand in the sociality of \nthe evening, he complies and gives them \"Believe Me, if All Those \nEndearing Young Charms.\"  This ballad, he informs Mrs. Bagnet, he \nconsiders to have been his most powerful ally in moving the heart \nof Mrs. Bucket when a maiden, and inducing her to approach the \naltar--Mr. Bucket's own words are \"to come up to the scratch.\"\n\nThis sparkling stranger is such a new and agreeable feature in the \nevening that Mr. George, who testified no great emotions of \npleasure on his entrance, begins, in spite of himself, to be rather \nproud of him.  He is so friendly, is a man of so many resources, \nand so easy to get on with, that it is something to have made him \nknown there.  Mr. Bagnet becomes, after another pipe, so sensible \nof the value of his acquaintance that he solicits the honour of his \ncompany on the old girl's next birthday.  If anything can more \nclosely cement and consolidate the esteem which Mr. Bucket has \nformed for the family, it is the discovery of the nature of the \noccasion.  He drinks to Mrs. Bagnet with a warmth approaching to \nrapture, engages himself for that day twelvemonth more than \nthankfully, makes a memorandum of the day in a large black pocket-\nbook with a girdle to it, and breathes a hope that Mrs. Bucket and \nMrs. Bagnet may before then become, in a manner, sisters.  As he \nsays himself, what is public life without private ties?  He is in \nhis humble way a public man, but it is not in that sphere that he \nfinds happiness.  No, it must be sought within the confines of \ndomestic bliss.\n\nIt is natural, under these circumstances, that he, in his turn, \nshould remember the friend to whom he is indebted for so promising \nan acquaintance.  And he does.  He keeps very close to him.  \nWhatever the subject of the conversation, he keeps a tender eye \nupon him.  He waits to walk home with him.  He is interested in his \nvery boots and observes even them attentively as Mr. George sits \nsmoking cross-legged in the chimney-corner.\n\nAt length Mr. George rises to depart.  At the same moment Mr. \nBucket, with the secret sympathy of friendship, also rises.  He \ndotes upon the children to the last and remembers the commission he \nhas undertaken for an absent friend.\n\n\"Respecting that second-hand wiolinceller, governor--could you \nrecommend me such a thing?\"\n\n\"Scores,\" says Mr. Bagnet.\n\n\"I am obliged to you,\" returns Mr. Bucket, squeezing his hand.  \n\"You're a friend in need.  A good tone, mind you!  My friend is a \nregular dab at it.  Ecod, he saws away at Mozart and Handel and the \nrest of the big-wigs like a thorough workman.  And you needn't,\" \nsays Mr. Bucket in a considerate and private voice, \"you needn't \ncommit yourself to too low a figure, governor.  I don't want to pay \ntoo large a price for my friend, but I want you to have your proper \npercentage and be remunerated for your loss of time.  That is but \nfair.  Every man must live, and ought to it.\"\n\nMr. Bagnet shakes his head at the old girl to the effect that they \nhave found a jewel of price.\n\n\"Suppose I was to give you a look in, say, at half arter ten to-\nmorrow morning.  Perhaps you could name the figures of a few \nwiolincellers of a good tone?\" says Mr. Bucket.\n\nNothing easier.  Mr. and Mrs. Bagnet both engage to have the \nrequisite information ready and even hint to each other at the \npracticability of having a small stock collected there for \napproval.\n\n\"Thank you,\" says Mr. Bucket, \"thank you.  Good night, ma'am.  Good \nnight, governor.  Good night, darlings.  I am much obliged to you \nfor one of the pleasantest evenings I ever spent in my life.\"\n\nThey, on the contrary, are much obliged to him for the pleasure he \nhas given them in his company; and so they part with many \nexpressions of goodwill on both sides.  \"Now George, old boy,\" says \nMr. Bucket, taking his arm at the shop-door, \"come along!\"  As they \ngo down the little street and the Bagnets pause for a minute \nlooking after them, Mrs. Bagnet remarks to the worthy Lignum that \nMr. Bucket \"almost clings to George like, and seems to be really \nfond of him.\"\n\nThe neighbouring streets being narrow and ill-paved, it is a little \ninconvenient to walk there two abreast and arm in arm.  Mr. George \ntherefore soon proposes to walk singly.  But Mr. Bucket, who cannot \nmake up his mind to relinquish his friendly hold, replies, \"Wait \nhalf a minute, George.  I should wish to speak to you first.\"  \nImmediately afterwards, he twists him into a public-house and into \na parlour, where he confronts him and claps his own back against \nthe door.\n\n\"Now, George,\" says Mr. Bucket, \"duty is duty, and friendship is \nfriendship.  I never want the two to clash if I can help it.  I \nhave endeavoured to make things pleasant to-night, and I put it to \nyou whether I have done it or not.  You must consider yourself in \ncustody, George.\"\n\n\"Custody?  What for?\" returns the trooper, thunderstruck.\n\n\"Now, George,\" says Mr. Bucket, urging a sensible view of the case \nupon him with his fat forefinger, \"duty, as you know very well, is \none thing, and conversation is another.  It's my duty to inform you \nthat any observations you may make will be liable to be used \nagainst you.  Therefore, George, be careful what you say.  You \ndon't happen to have heard of a murder?\"\n\n\"Murder!\"\n\n\"Now, George,\" says Mr. Bucket, keeping his forefinger in an \nimpressive state of action, \"bear in mind what I've said to you.  I \nask you nothing.  You've been in low spirits this afternoon.  I \nsay, you don't happen to have heard of a murder?\"\n\n\"No.  Where has there been a murder?\"\n\n\"Now, George,\" says Mr. Bucket, \"don't you go and commit yourself.  \nI'm a-going to tell you what I want you for.  There has been a \nmurder in Lincoln's Inn Fields--gentleman of the name of \nTulkinghorn.  He was shot last night.  I want you for that.\"\n\nThe trooper sinks upon a seat behind him, and great drops start out \nupon his forehead, and a deadly pallor overspreads his face.\n\n\"Bucket!  It's not possible that Mr. Tulkinghorn has been killed \nand that you suspect ME?\"\n\n\"George,\" returns Mr. Bucket, keeping his forefinger going, \"it is \ncertainly possible, because it's the case.  This deed was done last \nnight at ten o'clock.  Now, you know where you were last night at \nten o'clock, and you'll be able to prove it, no doubt.\"\n\n\"Last night!  Last night?\" repeats the trooper thoughtfully.  Then \nit flashes upon him.  \"Why, great heaven, I was there last night!\"\n\n\"So I have understood, George,\" returns Mr. Bucket with great \ndeliberation.  \"So I have understood.  Likewise you've been very \noften there.  You've been seen hanging about the place, and you've \nbeen heard more than once in a wrangle with him, and it's possible\n--I don't say it's certainly so, mind you, but it's possible--that \nhe may have been heard to call you a threatening, murdering, \ndangerous fellow.\"\n\nThe trooper gasps as if he would admit it all if he could speak.\n\n\"Now, George,\" continues Mr. Bucket, putting his hat upon the table \nwith an air of business rather in the upholstery way than \notherwise, \"my wish is, as it has been all the evening, to make \nthings pleasant.  I tell you plainly there's a reward out, of a \nhundred guineas, offered by Sir Leicester Dedlock, Baronet.  You \nand me have always been pleasant together; but I have got a duty to \ndischarge; and if that hundred guineas is to be made, it may as \nwell be made by me as any other man.  On all of which accounts, I \nshould hope it was clear to you that I must have you, and that I'm \ndamned if I don't have you.  Am I to call in any assistance, or is \nthe trick done?\"\n\nMr. George has recovered himself and stands up like a soldier.  \n\"Come,\" he says; \"I am ready.\"\n\n\"George,\" continues Mr. Bucket, \"wait a bit!\"  With his upholsterer \nmanner, as if the trooper were a window to be fitted up, he takes \nfrom his pocket a pair of handcuffs.  \"This is a serious charge, \nGeorge, and such is my duty.\"\n\nThe trooper flushes angrily and hesitates a moment, but holds out \nhis two hands, clasped together, and says, \"There!  Put them on!\"\n\nMr. Bucket adjusts them in a moment.  \"How do you find them?  Are \nthey comfortable?  If not, say so, for I wish to make things as \npleasant as is consistent with my duty, and I've got another pair \nin my pocket.\"  This remark he offers like a most respectable \ntradesman anxious to execute an order neatly and to the perfect \nsatisfaction of his customer.  \"They'll do as they are?  Very well!  \nNow, you see, George\"--he takes a cloak from a corner and begins \nadjusting it about the trooper's neck--\"I was mindful of your \nfeelings when I come out, and brought this on purpose.  There!  \nWho's the wiser?\"\n\n\"Only I,\" returns the trooper, \"but as I know it, do me one more \ngood turn and pull my hat over my eyes.\"\n\n\"Really, though!  Do you mean it?  Ain't it a pity?  It looks so.\"\n\n\"I can't look chance men in the face with these things on,\" Mr. \nGeorge hurriedly replies.  \"Do, for God's sake, pull my hat \nforward.\"\n\nSo strongly entreated, Mr. Bucket complies, puts his own hat on, \nand conducts his prize into the streets, the trooper marching on as \nsteadily as usual, though with his head less erect, and Mr. Bucket \nsteering him with his elbow over the crossings and up the turnings.\n\n\n\nCHAPTER L\n\nEsther's Narrative\n\n\nIt happened that when I came home from Deal I found a note from \nCaddy Jellyby (as we always continued to call her), informing me \nthat her health, which had been for some time very delicate, was \nworse and that she would be more glad than she could tell me if I \nwould go to see her.  It was a note of a few lines, written from \nthe couch on which she lay and enclosed to me in another from her \nhusband, in which he seconded her entreaty with much solicitude.  \nCaddy was now the mother, and I the godmother, of such a poor \nlittle baby--such a tiny old-faced mite, with a countenance that \nseemed to be scarcely anything but cap-border, and a little lean, \nlong-fingered hand, always clenched under its chin.  It would lie \nin this attitude all day, with its bright specks of eyes open, \nwondering (as I used to imagine) how it came to be so small and \nweak.  Whenever it was moved it cried, but at all other times it \nwas so patient that the sole desire of its life appeared to be to \nlie quiet and think.  It had curious little dark veins in its face \nand curious little dark marks under its eyes like faint \nremembrances of poor Caddy's inky days, and altogether, to those \nwho were not used to it, it was quite a piteous little sight.\n\nBut it was enough for Caddy that SHE was used to it.  The projects \nwith which she beguiled her illness, for little Esther's education, \nand little Esther's marriage, and even for her own old age as the \ngrandmother of little Esther's little Esthers, was so prettily \nexpressive of devotion to this pride of her life that I should be \ntempted to recall some of them but for the timely remembrance that \nI am getting on irregularly as it is.\n\nTo return to the letter.  Caddy had a superstition about me which \nhad been strengthening in her mind ever since that night long ago \nwhen she had lain asleep with her head in my lap.  She almost--I \nthink I must say quite--believed that I did her good whenever I was \nnear her.  Now although this was such a fancy of the affectionate \ngirl's that I am almost ashamed to mention it, still it might have \nall the force of a fact when she was really ill.  Therefore I set \noff to Caddy, with my guardian's consent, post-haste; and she and \nPrince made so much of me that there never was anything like it.\n\nNext day I went again to sit with her, and next day I went again.  \nIt was a very easy journey, for I had only to rise a little earlier \nin the morning, and keep my accounts, and attend to housekeeping \nmatters before leaving home.\n\nBut when I had made these three visits, my guardian said to me, on \nmy return at night, \"Now, little woman, little woman, this will \nnever do.  Constant dropping will wear away a stone, and constant \ncoaching will wear out a Dame Durden.  We will go to London for a \nwhile and take possession of our old lodgings.\"\n\n\"Not for me, dear guardian,\" said I, \"for I never feel tired,\" \nwhich was strictly true.  I was only too happy to be in such \nrequest.\n\n\"For me then,\" returned my guardian, \"or for Ada, or for both of \nus.  It is somebody's birthday to-morrow, I think.\"\n\n\"Truly I think it is,\" said I, kissing my darling, who would be \ntwenty-one to-morrow.\n\n\"Well,\" observed my guardian, half pleasantly, half seriously, \n\"that's a great occasion and will give my fair cousin some \nnecessary business to transact in assertion of her independence, \nand will make London a more convenient place for all of us.  So to \nLondon we will go.  That being settled, there is another thing--how \nhave you left Caddy?\"\n\n\"Very unwell, guardian.  I fear it will be some time before she \nregains her health and strength.\"\n\n\"What do you call some time, now?\" asked my guardian thoughtfully.\n\n\"Some weeks, I am afraid.\"\n\n\"Ah!\"   He began to walk about the room with his hands in his \npockets, showing that he had been thinking as much.  \"Now, what do \nyou say about her doctor?  Is he a good doctor, my love?\"\n\nI felt obliged to confess that I knew nothing to the contrary but \nthat Prince and I had agreed only that evening that we would like \nhis opinion to be confirmed by some one.\n\n\"Well, you know,\" returned my guardian quickly, \"there's \nWoodcourt.\"\n\nI had not meant that, and was rather taken by surprise.  For a \nmoment all that I had had in my mind in connexion with Mr. \nWoodcourt seemed to come back and confuse me.\n\n\"You don't object to him, little woman?\"\n\n\"Object to him, guardian?  Oh no!\"\n\n\"And you don't think the patient would object to him?\"\n\nSo far from that, I had no doubt of her being prepared to have a \ngreat reliance on him and to like him very much.  I said that he \nwas no stranger to her personally, for she had seen him often in \nhis kind attendance on Miss Flite.\n\n\"Very good,\" said my guardian.  \"He has been here to-day, my dear, \nand I will see him about it to-morrow.\"\n\nI felt in this short conversation--though I did not know how, for \nshe was quiet, and we interchanged no look--that my dear girl well \nremembered how merrily she had clasped me round the waist when no \nother hands than Caddy's had brought me the little parting token.  \nThis caused me to feel that I ought to tell her, and Caddy too, \nthat I was going to be the mistress of Bleak House and that if I \navoided that disclosure any longer I might become less worthy in my \nown eyes of its master's love.  Therefore, when we went upstairs \nand had waited listening until the clock struck twelve in order \nthat only I might be the first to wish my darling all good wishes \non her birthday and to take her to my heart, I set before her, just \nas I had set before myself, the goodness and honour of her cousin \nJohn and the happy life that was in store for for me.  If ever my \ndarling were fonder of me at one time than another in all our \nintercourse, she was surely fondest of me that night.  And I was so \nrejoiced to know it and so comforted by the sense of having done \nright in casting this last idle reservation away that I was ten \ntimes happier than I had been before.  I had scarcely thought it a \nreservation a few hours ago, but now that it was gone I felt as if \nI understood its nature better.\n\nNext day we went to London.  We found our old lodging vacant, and \nin half an hour were quietly established there, as if we had never \ngone away.  Mr. Woodcourt dined with us to celebrate my darling's \nbirthday, and we were as pleasant as we could be with the great \nblank among us that Richard's absence naturally made on such an \noccasion.  After that day I was for some weeks--eight or nine as I \nremember--very much with Caddy, and thus it fell out that I saw \nless of Ada at this time than any other since we had first come \ntogether, except the time of my own illness.  She often came to \nCaddy's, but our function there was to amuse and cheer her, and we \ndid not talk in our usual confidential manner.  Whenever I went \nhome at night we were together, but Caddy's rest was broken by \npain, and I often remained to nurse her.\n\nWith her husband and her poor little mite of a baby to love and \ntheir home to strive for, what a good creature Caddy was!  So self-\ndenying, so uncomplaining, so anxious to get well on their account, \nso afraid of giving trouble, and so thoughtful of the unassisted \nlabours of her husband and the comforts of old Mr. Turveydrop; I \nhad never known the best of her until now.  And it seemed so \ncurious that her pale face and helpless figure should be lying \nthere day after day where dancing was the business of life, where \nthe kit and the apprentices began early every morning in the ball-\nroom, and where the untidy little boy waltzed by himself in the \nkitchen all the afternoon.\n\nAt Caddy's request I took the supreme direction of her apartment, \ntrimmed it up, and pushed her, couch and all, into a lighter and \nmore airy and more cheerful corner than she had yet occupied; then, \nevery day, when we were in our neatest array, I used to lay my \nsmall small namesake in her arms and sit down to chat or work or \nread to her.  It was at one of the first of these quiet times that \nI told Caddy about Bleak House.\n\nWe had other visitors besides Ada.  First of all we had Prince, who \nin his hurried intervals of teaching used to come softly in and sit \nsoftly down, with a face of loving anxiety for Caddy and the very \nlittle child.  Whatever Caddy's condition really was, she never \nfailed to declare to Prince that she was all but well--which I, \nheaven forgive me, never failed to confirm.  This would put Prince \nin such good spirits that he would sometimes take the kit from his \npocket and play a chord or two to astonish the baby, which I never \nknew it to do in the least degree, for my tiny namesake never \nnoticed it at all.\n\nThen there was Mrs. Jellyby.  She would come occasionally, with her \nusual distraught manner, and sit calmly looking miles beyond her \ngrandchild as if her attention were absorbed by a young \nBorrioboolan on its native shores.  As bright-eyed as ever, as \nserene, and as untidy, she would say, \"Well, Caddy, child, and how \ndo you do to-day?\"  And then would sit amiably smiling and taking \nno notice of the reply or would sweetly glide off into a \ncalculation of the number of letters she had lately received and \nanswered or of the coffee-bearing power of Borrioboola-Gha.  This \nshe would always do with a serene contempt for our limited sphere \nof action, not to be disguised.\n\nThen there was old Mr. Turveydrop, who was from morning to night \nand from night to morning the subject of innumerable precautions.  \nIf the baby cried, it was nearly stifled lest the noise should make \nhim uncomfortable.  If the fire wanted stirring in the night, it \nwas surreptitiously done lest his rest should be broken.  If Caddy \nrequired any little comfort that the house contained, she first \ncarefully discussed whether he was likely to require it too.  In \nreturn for this consideration he would come into the room once a \nday, all but blessing it--showing a condescension, and a patronage, \nand a grace of manner in dispensing the light of his high-\nshouldered presence from which I might have supposed him (if I had \nnot known better) to have been the benefactor of Caddy's life.\n\n\"My Caroline,\" he would say, making the nearest approach that he \ncould to bending over her.  \"Tell me that you are better to-day.\"\n\n\"Oh, much better, thank you, Mr. Turveydrop,\" Caddy would reply.\n\n\"Delighted!  Enchanted!  And our dear Miss Summerson.  She is not \nqulte prostrated by fatigue?\"  Here he would crease up his eyelids \nand kiss his fingers to me, though I am happy to say he had ceased \nto be particular in his attentions since I had been so altered.\n\n\"Not at all,\" I would assure him.\n\n\"Charming!  We must take care of our dear Caroline, Miss Summerson.  \nWe must spare nothing that will restore her.  We must nourish her.  \nMy dear Caroline\"--he would turn to his daughter-in-law with \ninfinite generosity and protection--\"want for nothing, my love.  \nFrame a wish and gratify it, my daughter.  Everything this house \ncontains, everything my room contains, is at your service, my dear.  \nDo not,\" he would sometimes add in a burst of deportment, \"even \nallow my simple requirements to be considered if they should at any \ntime interfere with your own, my Caroline.  Your necessities are \ngreater than mine.\"\n\nHe had established such a long prescriptive right to this \ndeportment (his son's inheritance from his mother) that I several \ntimes knew both Caddy and her husband to be melted to tears by \nthese affectionate self-sacrifices.\n\n\"Nay, my dears,\" he would remonstrate; and when I saw Caddy's thin \narm about his fat neck as he said it, I would be melted too, though \nnot by the same process.  \"Nay, nay!  I have promised never to \nleave ye.  Be dutiful and affectionate towards me, and I ask no \nother return.  Now, bless ye!  I am going to the Park.\"\n\nHe would take the air there presently and get an appetite for his \nhotel dinner.  I hope I do old Mr. Turveydrop no wrong, but I never \nsaw any better traits in him than these I faithfully record, except \nthat he certainly conceived a liking for Peepy and would take the \nchild out walking with great pomp, always on those occasions \nsending him home before he went to dinner himself, and occasionally \nwith a halfpenny in his pocket.  But even this disinterestedness \nwas attended with no inconsiderable cost, to my knowledge, for \nbefore Peepy was sufficiently decorated to walk hand in hand with \nthe professor of deportment, he had to be newly dressed, at the \nexpense of Caddy and her husband, from top to toe.\n\nLast of our visitors, there was Mr. Jellyby.  Really when he used \nto come in of an evening, and ask Caddy in his meek voice how she \nwas, and then sit down with his head against the wall, and make no \nattempt to say anything more, I liked him very much.  If he found \nme bustling about doing any little thing, he sometimes half took \nhis coat off, as if with an intention of helping by a great \nexertion; but he never got any further.  His sole occupation was to \nsit with his head against the wall, looking hard at the thoughtful \nbaby; and I could not quite divest my mind of a fancy that they \nunderstood one another.\n\nI have not counted Mr. Woodcourt among our visitors because he was \nnow Caddy's regular attendant.  She soon began to improve under his \ncare, but he was so gentle, so skilful, so unwearying in the pains \nhe took that it is not to be wondered at, I am sure.  I saw a good \ndeal of Mr. Woodcourt during this time, though not so much as might \nbe supposed, for knowing Caddy to be safe in his hands, I often \nslipped home at about the hours when he was expected.  We \nfrequently met, notwithstanding.  I was quite reconciled to myself \nnow, but I still felt glad to think that he was sorry for me, and \nhe still WAS sorry for me I believed.  He helped Mr. Badger in his \nprofessional engagements, which were numerous, and had as yet no \nsettled projects for the future.\n\nIt was when Caddy began to recover that I began to notice a change \nin my dear girl.  I cannot say how it first presented itself to me, \nbecause I observed it in many slight particulars which were nothing \nin themselves and only became something when they were pieced \ntogether.  But I made it out, by putting them together, that Ada \nwas not so frankly cheerful with me as she used to be.  Her \ntenderness for me was as loving and true as ever; I did not for a \nmoment doubt that; but there was a quiet sorrow about her which she \ndid not confide to me, and in which I traced some hidden regret.\n\nNow, I could not understand this, and I was so anxious for the \nhappiness of my own pet that it caused me some uneasiness and set \nme thinking often.  At length, feeling sure that Ada suppressed \nthis something from me lest it should make me unhappy too, it came \ninto my head that she was a little grieved--for me--by what I had \ntold her about Bleak House.\n\nHow I persuaded myself that this was likely, I don't know.  I had \nno idea that there was any selfish reference in my doing so.  I was \nnot grieved for myself: I was quite contented and quite happy.  \nStill, that Ada might be thinking--for me, though I had abandoned \nall such thoughts--of what once was, but was now all changed, \nseemed so easy to believe that I believed it.\n\nWhat could I do to reassure my darling (I considered then) and show \nher that I had no such feelings?  Well! I could only be as brisk \nand busy as possible, and that I had tried to be all along.  \nHowever, as Caddy's illness had certainly interfered, more or less, \nwith my home duties--though I had always been there in the morning \nto make my guardian's breakfast, and he had a hundred times laughed \nand said there must be two little women, for his little woman was \nnever missing--I resolved to be doubly diligent and gay.  So I went \nabout the house humming all the tunes I knew, and I sat working and \nworking in a desperate manner, and I talked and talked, morning, \nnoon, and night.\n\nAnd still there was the same shade between me and my darling.\n\n\"So, Dame Trot,\" observed my guardian, shutting up his book one \nnight when we were all three together, \"so Woodcourt has restored \nCaddy Jellyby to the full enjoyment of life again?\"\n\n\"Yes,\" I said; \"and to be repaid by such gratitude as hers is to be \nmade rich, guardian.\"\n\n\"I wish it was,\" he returned, \"with all my heart.\"\n\nSo did I too, for that matter.  I said so.\n\n\"Aye! We would make him as rich as a Jew if we knew how.  Would we \nnot, little woman?\"\n\nI laughed as I worked and replied that I was not sure about that, \nfor it might spoil him, and he might not be so useful, and there \nmight be many who could ill spare him.  As Miss Flite, and Caddy \nherself, and many others.\n\n\"True,\" said my guardian.  \"I had forgotten that.  But we would \nagree to make him rich enough to live, I suppose?  Rich enough to \nwork with tolerable peace of mind?  Rich enough to have his own \nhappy home and his own household gods--and household goddess, too, \nperhaps?\"\n\nThat was quite another thing, I said.  We must all agree in that.\n\n\"To be sure,\" said my guardian.  \"All of us.  I have a great regard \nfor Woodcourt, a high esteem for him; and I have been sounding him \ndelicately about his plans.  It is difficult to offer aid to an \nindependent man with that just kind of pride which he possesses.  \nAnd yet I would be glad to do it if I might or if I knew how.  He \nseems half inclined for another voyage.  But that appears like \ncasting such a man away.\"\n\n\"It might open a new world to him,\" said I.\n\n''So it might, little woman,\" my guardian assented.  ''I doubt if \nhe expects much of the old world.  Do you know I have fancied that \nhe sometimes feels some particular disappointment or misfortune \nencountered in it.  You never heard of anything of that sort?\"\n\nI shook my head.\n\n\"Humph,\" said my guardian.  \"I am mistaken, I dare say.\"  As there \nwas a little pause here, which I thought, for my dear girl's \nsatisfaction, had better be filled up, I hummed an air as I worked \nwhich was a favourite with my guardian.\n\n\"And do you think Mr. Woodcourt will make another voyage?\" I asked \nhim when I had hummed it quietly all through.\n\n\"I don't quite know what to think, my dear, but I should say it was \nlikely at present that he will give a long trip to another \ncountry.\"\n\n\"I am sure he will take the best wishes of all our hearts with him \nwherever he goes,\" said I; \"and though they are not riches, he will \nnever be the poorer for them, guardian, at least.\"\n\n\"Never, little woman,\" he replied.\n\nI was sitting in my usual place, which was now beside my guardian's \nchair.  That had not been my usual place before the letter, but it \nwas now.  I looked up to Ada, who was sitting opposite, and I saw, \nas she looked at me, that her eyes were filled with tears and that \ntears were falling down her face.  I felt that I had only to be \nplacid and merry once for all to undeceive my dear and set her \nloving heart at rest.  I really was so, and I had nothing to do but \nto be myself.\n\nSo I made my sweet girl lean upon my shoulder--how little thinking \nwhat was heavy on her mind!--and I said she was not quite well, and \nput my arm about her, and took her upstairs.  When we were in our \nown room, and when she might perhaps have told me what I was so \nunprepared to hear, I gave her no encouragement to confide in me; I \nnever thought she stood in need of it.\n\n\"Oh, my dear good Esther,\" said Ada, \"if I could only make up my \nmind to speak to you and my cousin John when you are together!\"\n\n\"Why, my love!\" I remonstrated.  \"Ada, why should you not speak to \nus!\"\n\nAda only dropped her head and pressed me closer to her heart.\n\n\"You surely don't forget, my beauty,\" said I, smiling, \"what quiet, \nold-fashioned people we are and how I have settled down to be the \ndiscreetest of dames?  You don't forget how happily and peacefully \nmy life is all marked out for me, and by whom?  I am certain that \nyou don't forget by what a noble character, Ada.  That can never \nbe.\"\n\n\"No, never, Esther.\"\n\n\"Why then, my dear,\" said I, \"there can be nothing amiss--and why \nshould you not speak to us?\"\n\n\"Nothing amiss, Esther?\" returned Ada.  \"Oh, when I think of all \nthese years, and of his fatherly care and kindness, and of the old \nrelations among us, and of you, what shall I do, what shall I do!\"\n\nI looked at my child in some wonder, but I thought it better not to \nanswer otherwise than by cheering her, and so I turned off into \nmany little recollections of our life together and prevented her \nfrom saying more.  When she lay down to sleep, and not before, I \nreturned to my guardian to say good night, and then I came back to \nAda and sat near her for a little while.\n\nShe was asleep, and I thought as I looked at her that she was a \nlittle changed.  I had thought so more than once lately.  I could \nnot decide, even looking at her while she was unconscious, how she \nwas changed, but something in the familiar beauty of her face \nlooked different to me.  My guardian's old hopes of her and Richard \narose sorrowfully in my mind, and I said to myself, \"She has been \nanxious about him,\" and I wondered how that love would end.\n\nWhen I had come home from Caddy's while she was ill, I had often \nfound Ada at work, and she had always put her work away, and I had \nnever known what it was.  Some of it now lay in a drawer near her, \nwhich was not quite closed.  I did not open the drawer, but I still \nrather wondered what the work could he, for it was evidently \nnothing for herself.\n\nAnd I noticed as I kissed my dear that she lay with one hand under \nher pillow so that it was hidden.\n\nHow much less amiable I must have been than they thought me, how \nmuch less amiable than I thought myself, to be so preoccupied with \nmy own cheerfulness and contentment as to think that it only rested \nwith me to put my dear girl right and set her mind at peace!\n\nBut I lay down, self-deceived, in that belief.  And I awoke in it \nnext day to find that there was still the same shade between me and \nmy darling.\n\n\n\nCHAPTER LI\n\nEnlightened\n\n\nWhen Mr. Woodcourt arrived in London, he went, that very same day, \nto Mr. Vholes's in Symond's Inn.  For he never once, from the \nmoment when I entreated him to be a friend to Richard, neglected or \nforgot his promise.  He had told me that he accepted the charge as \na sacred trust, and he was ever true to it in that spirit.\n\nHe found Mr. Vholes in his office and informed Mr. Vholes of his \nagreement with Richard that he should call there to learn his \naddress.\n\n\"Just so, sir,\" said Mr. Vholes.  \"Mr. C.'s address is not a \nhundred miles from here, sir, Mr. C.'s address is not a hundred \nmiles from here.  Would you take a seat, sir?\"\n\nMr. Woodcourt thanked Mr. Vholes, but he had no business with him \nbeyond what he had mentioned.\n\n\"Just so, sir.  I believe, sir,\" said Mr. Vholes, still quietly \ninsisting on the seat by not giving the address, \"that you have \ninfluence with Mr. C.  Indeed I am aware that you have.\"\n\n\"I was not aware of it myself,\" returned Mr. Woodcourt; \"but I \nsuppose you know best.\"\n\n\"Sir,\" rejoined Mr. Vholes, self-contained as usual, voice and all, \n\"it is a part of my professional duty to know best.  It is a part \nof my professional duty to study and to understand a gentleman who \nconfides his interests to me.  In my professional duty I shall not \nbe wanting, sir, if I know it.  I may, with the best intentions, be \nwanting in it without knowing it; but not if I know it, sir.\"\n\nMr. Woodcourt again mentioned the address.\n\n\"Give me leave, sir,\" said Mr. Vholes.  \"Bear with me for a moment.  \nSir, Mr. C. is playing for a considerable stake, and cannot play \nwithout--need I say what?\"\n\n\"Money, I presume?\"\n\n\"Sir,\" said Mr. Vholes, \"to be honest with you (honesty being my \ngolden rule, whether I gain by it or lose, and I find that I \ngenerally lose), money is the word.  Now, sir, upon the chances of \nMr. C.'s game I express to you no opinion, NO opinion.  It might be \nhighly impolitic in Mr. C., after playing so long and so high, to \nleave off; it might be the reverse; I say nothing.  No, sir,\" said \nMr. Vholes, bringing his hand flat down upon his desk in a positive \nmanner, \"nothing.\"\n\n\"You seem to forget,\" returned Mr, Woodcourt, \"that I ask you to \nsay nothing and have no interest in anything you say.\"\n\n\"Pardon me, sir!\" retorted Mr. Vholes.  \"You do yourself an \ninjustice.  No, sir!  Pardon me!  You shall not--shall not in my \noffice, if I know it--do yourself an injustice.  You are interested \nin anything, and in everything, that relates to your friend.  I \nknow human nature much better, sir, than to admit for an instant \nthat a gentleman of your appearance is not interested in whatever \nconcerns his friend.\"\n\n\"Well,\" replied Mr. Woodcourt, \"that may be.  I am particularly \ninterested in his address.\"\n\n\"The number, sir,\" said Mr. Vholes parenthetically, \"I believe I \nhave already mentioned.  If Mr. C. is to continue to play for this \nconsiderable stake, sir, he must have funds.  Understand me!  There \nare funds in hand at present.  I ask for nothing; there are funds \nin hand.  But for the onward play, more funds must be provided, \nunless Mr. C. is to throw away what he has already ventured, which \nis wholly and solely a point for his consideration.  This, sir, I \ntake the opportunity of stating openly to you as the friend of Mr. \nC.  Without funds I shall always be happy to appear and act for Mr. \nC. to the extent of all such costs as are safe to be allowed out of \nthe estate, not beyond that.  I could not go beyond that, sir, \nwithout wronging some one.  I must either wrong my three dear girls \nor my venerable father, who is entirely dependent on me, in the \nVale of Taunton; or some one.  Whereas, sir, my resolution is (call \nit weakness or folly if you please) to wrong no one.\"\n\nMr. Woodcourt rather sternly rejoined that he was glad to hear it.\n\n\"I wish, sir,\" said Mr. Vholes, \"to leave a good name behind me.  \nTherefore I take every opportunity of openly stating to a friend of \nMr. C. how Mr. C. is situated.  As to myself, sir, the labourer is \nworthy of his hire.  If I undertake to put my shoulder to the \nwheel, I do it, and I earn what I get.  I am here for that purpose.  \nMy name is painted on the door outside, with that object.\"\n\n\"And Mr. Carstone's address, Mr. Vholes?\"\n\n\"Sir,\" returned Mr. Vholes, \"as I believe I have already mentioned, \nit is next door.  On the second story you will find Mr. C.'s \napartments.  Mr. C. desires to be near his professional adviser, \nand I am far from objecting, for I court inquiry.\"\n\nUpon this Mr. Woodcourt wished Mr. Vholes good day and went in \nsearch of Richard, the change in whose appearance he began to \nunderstand now but too well.\n\nHe found him in a dull room, fadedly furnished, much as I had found \nhim in his barrack-room but a little while before, except that he \nwas not writing but was sitting with a book before him, from which \nhis eyes and thoughts were far astray.  As the door chanced to be \nstanding open, Mr. Woodcourt was in his presence for some moments \nwithout being perceived, and he told me that he never could forget \nthe haggardness of his face and the dejection of his manner before \nhe was aroused from his dream.\n\n\"Woodcourt, my dear fellow,\" cried Richard, starting up with \nextended hands, \"you come upon my vision like a ghost.\"\n\n\"A friendly one,\" he replied, \"and only waiting, as they say ghosts \ndo, to be addressed.  How does the mortal world go?\"  They were \nseated now, near together.\n\n\"Badly enough, and slowly enough,\" said Richard, \"speaking at least \nfor my part of it.\"\n\n\"What part is that?\"\n\n\"The Chancery part.\"\n\n\"I never heard,\" returned Mr. Woodcourt, shaking his head, \"of its \ngoing well yet.\"\n\n\"Nor I,\" said Richard moodily.  \"Who ever did?\"  He brightened \nagain in a moment and said with his natural openness, \"Woodcourt, I \nshould be sorry to be misunderstood by you, even if I gained by it \nin your estimation.  You must know that I have done no good this \nlong time.  I have not intended to do much harm, but I seem to have \nbeen capable of nothing else.  It may be that I should have done \nbetter by keeping out of the net into which my destiny has worked \nme, but I think not, though I dare say you will soon hear, if you \nhave not already heard, a very different opinion.  To make short of \na long story, I am afraid I have wanted an object; but I have an \nobject now--or it has me--and it is too late to discuss it.  Take \nme as I am, and make the best of me.\"\n\n\"A bargain,\" said Mr. Woodcourt.  \"Do as much by me in return.\"\n\n\"Oh!  You,\" returned Richard, \"you can pursue your art for its own \nsake, and can put your hand upon the plough and never turn, and can \nstrike a purpose out of anything.  You and I are very different \ncreatures.\"\n\nHe spoke regretfully and lapsed for a moment into his weary \ncondition.\n\n\"Well, well!\" he cried, shaking it off.  \"Everything has an end.  \nWe shall see!  So you will take me as I am, and make the best of \nme?\"\n\n\"Aye!  Indeed I will.\"  They shook hands upon it laughingly, but in \ndeep earnestness.  I can answer for one of them with my heart of \nhearts.\n\n\"You come as a godsend,\" said Richard, \"for I have seen nobody here \nyet but Vholes.  Woodcourt, there is one subject I should like to \nmention, for once and for all, in the beginning of our treaty.  You \ncan hardly make the best of me if I don't.  You know, I dare say, \nthat I have an attachment to my cousin Ada?\"\n\nMr. Woodcourt replied that I had hinted as much to him.  \"Now \npray,\" returned Richard, \"don't think me a heap of selfishness.  \nDon't suppose that I am splitting my head and half breaking my \nheart over this miserable Chancery suit for my own rights and \ninterests alone.  Ada's are bound up with mine; they can't be \nseparated; Vholes works for both of us.  Do think of that!\"\n\nHe was so very solicitous on this head that Mr. Woodcourt gave him \nthe strongest assurances that he did him no injustice.\n\n\"You see,\" said Richard, with something pathetic in his manner of \nlingering on the point, though it was off-hand and unstudied, \"to \nan upright fellow like you, bringing a friendly face like yours \nhere, I cannot bear the thought of appearing selfish and mean.  I \nwant to see Ada righted, Woodcourt, as well as myself; I want to do \nmy utmost to right her, as well as myself; I venture what I can \nscrape together to extricate her, as well as myself.  Do, I beseech \nyou, think of that!\"\n\nAfterwards, when Mr. Woodcourt came to reflect on what had passed, \nhe was so very much impressed by the strength of Richard's anxiety \non this point that in telling me generally of his first visit to \nSymond's Inn he particularly dwelt upon it.  It revived a fear I \nhad had before that my dear girl's little property would be \nabsorbed by Mr. Vholes and that Richard's justification to himself \nwould be sincerely this.  It was just as I began to take care of \nCaddy that the interview took place, and I now return to the time \nwhen Caddy had recovered and the shade was still between me and my \ndarling.\n\nI proposed to Ada that morning that we should go and see Richard.  \nIt a little surprised me to find that she hesitated and was not so \nradiantly willing as I had expected.\n\n\"My dear,\" said I, \"you have not had any difference with Richard \nsince I have been so much away?\"\n\n\"No, Esther.\"\n\n\"Not heard of him, perhaps?\" said I.\n\n\"Yes, I have heard of him,\" said Ada.\n\nSuch tears in her eyes, and such love in her face.  I could not \nmake my darling out.  Should I go to Richard's by myself? I said.  \nNo, Ada thought I had better not go by myself.  Would she go with \nme?  Yes, Ada thought she had better go with me.  Should we go now?  \nYes, let us go now.  Well, I could not understand my darling, with \nthe tears in her eyes and the love in her face!\n\nWe were soon equipped and went out.  It was a sombre day, and drops \nof chill rain fell at intervals.  It was one of those colourless \ndays when everything looks heavy and harsh.  The houses frowned at \nus, the dust rose at us, the smoke swooped at us, nothing made any \ncompromise about itself or wore a softened aspect.  I fancied my \nbeautiful girl quite out of place in the rugged streets, and I \nthought there were more funerals passing along the dismal pavements \nthan I had ever seen before.\n\nWe had first to find out Symond's Inn.  We were going to inquire in \na shop when Ada said she thought it was near Chancery Lane.  \"We \nare not likely to be far out, my love, if we go in that direction,\" \nsaid I.  So to Chancery Lane we went, and there, sure enough, we \nsaw it written up.  Symond's Inn.\n\nWe had next to find out the number.  \"Or Mr. Vholes's office will \ndo,\" I recollected, \"for Mr. Vholes's office is next door.\"  Upon \nwhich Ada said, perhaps that was Mr. Vholes's office in the corner \nthere.  And it really was.\n\nThen came the question, which of the two next doors?  I was going \nfor the one, and my darling was going for the other; and my darling \nwas right again.  So up we went to the second story, when we came \nto Richard's name in great white letters on a hearse-like panel.\n\nI should have knocked, but Ada said perhaps we had better turn the \nhandle and go in.  Thus we came to Richard, poring over a table \ncovered with dusty bundles of papers which seemed to me like dusty \nmirrors reflecting his own mind.  Wherever I looked I saw the \nominous words that ran in it repeated.  Jarndyce and Jarndyce.\n\nHe received us very affectionately, and we sat down.  \"If you had \ncome a little earlier,\" he said, \"you would have found Woodcourt \nhere.  There never was such a good fellow as Woodcourt is.  He \nfinds time to look in between-whiles, when anybody else with half \nhis work to do would be thinking about not being able to come.  And \nhe is so cheery, so fresh, so sensible, so earnest, so--everything \nthat I am not, that the place brightens whenever he comes, and \ndarkens whenever he goes again.\"\n\n\"God bless him,\" I thought, \"for his truth to me!\"\n\n\"He is not so sanguine, Ada,\" continued Richard, casting his \ndejected look over the bundles of papers, \"as Vholes and I are \nusually, but he is only an outsider and is not in the mysteries.  \nWe have gone into them, and he has not.  He can't be expected to \nknow much of such a labyrinth.\"\n\nAs his look wandered over the papers again and he passed his two \nhands over his head, I noticed how sunken and how large his eyes \nappeared, how dry his lips were, and how his finger-nails were all \nbitten away.\n\n\"Is this a healthy place to live in, Richard, do you think?\" said I.\n\n\"Why, my dear Minerva,\" answered Richard with his old gay laugh, \n\"it is neither a rural nor a cheerful place; and when the sun \nshines here, you may lay a pretty heavy wager that it is shining \nbrightly in an open spot.  But it's well enough for the time.  It's \nnear the offices and near Vholes.\"\n\n\"Perhaps,\" I hinted, \"a change from both--\"\n\n\"Might do me good?\" said Richard, forcing a laugh as he finished \nthe sentence.  \"I shouldn't wonder!  But it can only come in one \nway now--in one of two ways, I should rather say.  Either the suit \nmust be ended, Esther, or the suitor.  But it shall be the suit, my \ndear girl, the suit, my dear girl!\"\n\nThese latter words were addressed to Ada, who was sitting nearest \nto him.  Her face being turned away from me and towards him, I \ncould not see it.\n\n\"We are doing very well,\" pursued Richard.  \"Vholes will tell you \nso.  We are really spinning along.  Ask Vholes.  We are giving them \nno rest.  Vholes knows all their windings and turnings, and we are \nupon them everywhere.  We have astonished them already.  We shall \nrouse up that nest of sleepers, mark my words!\"\n\nHis hopefulness had long been more painful to me than his \ndespondency; it was so unlike hopefulness, had something so fierce \nin its determination to be it, was so hungry and eager, and yet so \nconscious of being forced and unsustainable that it had long \ntouched me to the heart.  But the commentary upon it now indelibly \nwritten in his handsome face made it far more distressing than it \nused to be.  I say indelibly, for I felt persuaded that if the \nfatal cause could have been for ever terminated, according to his \nbrightest visions, in that same hour, the traces of the premature \nanxiety, self-reproach, and disappointment it had occasioned him \nwould have remained upon his features to the hour of his death.\n\n\"The sight of our dear little woman,\" said Richard, Ada still \nremaining silent and quiet, \"is so natural to me, and her \ncompassionate face is so like the face of old days--\"\n\nAh!  No, no.  I smiled and shook my head.\n\n\"--So exactly like the face of old days,\" said Richard in his \ncordial voice, and taking my hand with the brotherly regard which \nnothing ever changed, \"that I can't make pretences with her.  I \nfluctuate a little; that's the truth.  Sometimes I hope, my dear, \nand sometimes I--don't quite despair, but nearly.  I get,\" said \nRichard, relinquishing my hand gently and walking across the room, \n\"so tired!\"\n\nHe took a few turns up and down and sunk upon the sofa.  \"I get,\" \nhe repeated gloomily, \"so tired.  It is such weary, weary work!\"\n\nHe was leaning on his arm saying these words in a meditative voice \nand looking at the ground when my darling rose, put off her bonnet, \nkneeled down beside him with her golden hair falling like sunlight \non his head, clasped her two arms round his neck, and turned her \nface to me.  Oh, what a loving and devoted face I saw!\n\n\"Esther, dear,\" she said very quietly, \"I am not going home again.\"\n\nA light shone in upon me all at once.\n\n\"Never any more.  I am going to stay with my dear husband.  We have \nbeen married above two months.  Go home without me, my own Esther; \nI shall never go home any more!\"  With those words my darling drew \nhis head down on her breast and held it there.  And if ever in my \nlife I saw a love that nothing but death could change, I saw it \nthen before me.\n\n\"Speak to Esther, my dearest,\" said Richard, breaking the silence \npresently.  \"Tell her how it was.\"\n\nI met her before she could come to me and folded her in my arms.  \nWe neither of us spoke, but with her cheek against my own I wanted \nto hear nothing.  \"My pet,\" said I.  \"My love.  My poor, poor \ngirl!\"  I pitied her so much.  I was very fond of Richard, but the \nimpulse that I had upon me was to pity her so much.\n\n\"Esther, will you forgive me?  Will my cousin John forgive me?\"\n\n\"My dear,\" said I, \"to doubt it for a moment is to do him a great \nwrong.  And as to me!\"  Why, as to me, what had I to forgive!\n\nI dried my sobbing darling's eyes and sat beside her on the sofa, \nand Richard sat on my other side; and while I was reminded of that \nso different night when they had first taken me into their \nconfidence and had gone on in their own wild happy way, they told \nme between them how it was.\n\n\"All I had was Richard's,\" Ada said; \"and Richard would not take \nit, Esther, and what could I do but be his wife when I loved him \ndearly!\"\n\n\"And you were so fully and so kindly occupied, excellent Dame \nDurden,\" said Richard, \"that how could we speak to you at such a \ntime!  And besides, it was not a long-considered step.  We went out \none morning and were married.\"\n\n\"And when it was done, Esther,\" said my darling, \"I was always \nthinking how to tell you and what to do for the best.  And \nsometimes I thought you ought to know it directly, and sometimes I \nthought you ought not to know it and keep it from my cousin John; \nand I could not tell what to do, and I fretted very much.\"\n\nHow selfish I must have been not to have thought of this before!  I \ndon't know what I said now.  I was so sorry, and yet I was so fond \nof them and so glad that they were fond of me; I pitied them so \nmuch, and yet I felt a kind of pride in their loving one another.  \nI never had experienced such painful and pleasurable emotion at one \ntime, and in my own heart I did not know which predominated.  But I \nwas not there to darken their way; I did not do that.\n\nWhen I was less foolish and more composed, my darling took her \nwedding-ring from her bosom, and kissed it, and put it on.  Then I \nremembered last night and told Richard that ever since her marriage \nshe had worn it at night when there was no one to see.  Then Ada \nblushingly asked me how did I know that, my dear.  Then I told Ada \nhow I had seen her hand concealed under her pillow and had little \nthought why, my dear.  Then they began telling me how it was all \nover again, and I began to be sorry and glad again, and foolish \nagain, and to hide my plain old face as much as I could lest I \nshould put them out of heart.\n\nThus the time went on until it became necessary for me to think of \nreturning.  When that time arrived it was the worst of all, for \nthen my darling completely broke down.  She clung round my neck, \ncalling me by every dear name she could think of and saying what \nshould she do without me!  Nor was Richard much better; and as for \nme, I should have been the worst of the three if I had not severely \nsaid to myself, \"Now Esther, if you do, I'll never speak to you \nagain!\"\n\n\"Why, I declare,\" said I, \"I never saw such a wife.  I don't think \nshe loves her husband at all.  Here, Richard, take my child, for \ngoodness' sake.\"  But I held her tight all the while, and could \nhave wept over her I don't know how long.\n\n\"I give this dear young couple notice,\" said I, \"that I am only \ngoing away to come back to-morrow and that I shall be always coming \nbackwards and forwards until Symond's Inn is tired of the sight of \nme.  So I shall not say good-bye, Richard.  For what would be the \nuse of that, you know, when I am coming back so soon!\"\n\nI had given my darling to him now, and I meant to go; but I \nlingered for one more look of the precious face which it seemed to \nrive my heart to turn from.\n\nSo I said (in a merry, bustling manner) that unless they gave me \nsome encouragement to come back, I was not sure that I could take \nthat liberty, upon which my dear girl looked up, faintly smiling \nthrough her tears, and I folded her lovely face between my hands, \nand gave it one last kiss, and laughed, and ran away.\n\nAnd when I got downstairs, oh, how I cried!  It almost seemed to me \nthat I had lost my Ada for ever.  I was so lonely and so blank \nwithout her, and it was so desolate to be going home with no hope \nof seeing her there, that I could get no comfort for a little while \nas I walked up and down in a dim corner sobbing and crying.\n\nI came to myself by and by, after a little scolding, and took a \ncoach home.  The poor boy whom I had found at St. Albans had \nreappeared a short time before and was lying at the point of death; \nindeed, was then dead, though I did not know it.  My guardian had \ngone out to inquire about him and did not return to dinner.  Being \nquite alone, I cried a little again, though on the whole I don't \nthink I behaved so very, very ill.\n\nIt was only natural that I should not be quite accustomed to the \nloss of my darling yet.  Three or four hours were not a long time \nafter years.  But my mind dwelt so much upon the uncongenial scene \nin which I had left her, and I pictured it as such an overshadowed \nstony-hearted one, and I so longed to be near her and taking some \nsort of care of her, that I determined to go back in the evening \nonly to look up at her windows.\n\nIt was foolish, I dare say, but it did not then seem at all so to \nme, and it does not seem quite so even now.  I took Charley into my \nconfidence, and we went out at dusk.  It was dark when we came to \nthe new strange home of my dear girl, and there was a light behind \nthe yellow blinds.  We walked past cautiously three or four times, \nlooking up, and narrowly missed encountering Mr. Vholes, who came \nout of his office while we were there and turned his head to look \nup too before going home.  The sight of his lank black figure and \nthe lonesome air of that nook in the dark were favourable to the \nstate of my mind.  I thought of the youth and love and beauty of my \ndear girl, shut up in such an ill-assorted refuge, almost as if it \nwere a cruel place.\n\nIt was very solitary and very dull, and I did not doubt that I \nmight safely steal upstairs.  I left Charley below and went up with \na light foot, not distressed by any glare from the feeble oil \nlanterns on the way.  I listened for a few moments, and in the \nmusty rotting silence of the house believed that I could hear the \nmurmur of their young voices.  I put my lips to the hearse-like \npanel of the door as a kiss for my dear and came quietly down \nagain, thinking that one of these days I would confess to the \nvisit.\n\nAnd it really did me good, for though nobody but Charley and I knew \nanything about it, I somehow felt as if it had diminished the \nseparation between Ada and me and had brought us together again for \nthose moments.  I went back, not quite accustomed yet to the \nchange, but all the better for that hovering about my darling.\n\nMy guardian had come home and was standing thoughtfully by the dark \nwindow.  When I went in, his face cleared and he came to his seat, \nbut he caught the light upon my face as I took mine.\n\n\"Little woman,\" said he, \"You have been crying.\"\n\n\"Why, yes, guardian,\" said I, \"I am afraid I have been, a little.  \nAda has been in such distress, and is so very sorry, guardian.\"\n\nI put my arm on the back of his chair, and I saw in his glance that \nmy words and my look at her empty place had prepared him.\n\n\"Is she married, my dear?\"\n\nI told him all about it and how her first entreaties had referred \nto his forgiveness.\n\n\"She has no need of it,\" said he.  \"Heaven bless her and her \nhusband!\"  But just as my first impulse had been to pity her, so \nwas his.  \"Poor girl, poor girl!  Poor Rick!  Poor Ada!\"\n\nNeither of us spoke after that, until he said with a sigh, \"Well, \nwell, my dear!  Bleak House is thinning fast.\"\n\n\"But its mistress remains, guardian.\"  Though I was timid about \nsaying it, I ventured because of the sorrowful tone in which he had \nspoken.  \"She will do all she can to make it happy,\" said I.\n\n\"She will succeed, my love!\"\n\nThe letter had made no difference between us except that the seat \nby his side had come to be mine; it made none now.  He turned his \nold bright fatherly look upon me, laid his hand on my hand in his \nold way, and said again, \"She will succeed, my dear.  Nevertheless, \nBleak House is thinning fast, O little woman!\"\n\nI was sorry presently that this was all we said about that.  I was \nrather disappointed.  I feared I might not quite have been all I \nhad meant to be since the letter and the answer.\n\n\n\nCHAPTER LII\n\nObstinacy\n\n\nBut one other day had intervened when, early in the morning as we \nwere going to breakfast, Mr. Woodcourt came in haste with the \nastounding news that a terrible murder had been committed for which \nMr. George had been apprehended and was in custody.  When he told \nus that a large reward was offered by Sir Leicester Dedlock for the \nmurderer's apprehension, I did not in my first consternation \nunderstand why; but a few more words explained to me that the \nmurdered person was Sir Leicester's lawyer, and immediately my \nmother's dread of him rushed into my remembrance.\n\nThis unforeseen and violent removal of one whom she had long \nwatched and distrusted and who had long watched and distrusted her, \none for whom she could have had few intervals of kindness, always \ndreading in him a dangerous and secret enemy, appeared so awful \nthat my first thoughts were of her.  How appalling to hear of such \na death and be able to feel no pity!  How dreadful to remember, \nperhaps, that she had sometimes even wished the old man away who \nwas so swiftly hurried out of life!\n\nSuch crowding reflections, increasing the distress and fear I \nalways felt when the name was mentioned, made me so agitated that I \ncould scarcely hold my place at the table.  I was quite unable to \nfollow the conversation until I had had a little time to recover.  \nBut when I came to myself and saw how shocked my guardian was and \nfound that they were earnestly speaking of the suspected man and \nrecalling every favourable impression we had formed of him out of \nthe good we had known of him, my interest and my fears were so \nstrongly aroused in his behalf that I was quite set up again.\n\n\"Guardian, you don't think it possible that he is justly accused?\"\n\n\"My dear, I CAN'T think so.  This man whom we have seen so open-\nhearted and compassionate, who with the might of a giant has the \ngentleness of a child, who looks as brave a fellow as ever lived \nand is so simple and quiet with it, this man justly accused of such \na crime?  I can't believe it.  It's not that I don't or I won't.  I \ncan't!\"\n\n\"And I can't,\" said Mr. Woodcourt.  \"Still, whatever we believe or \nknow of him, we had better not forget that some appearances are \nagainst him.  He bore an animosity towards the deceased gentleman.  \nHe has openly mentioned it in many places.  He is said to have \nexpressed himself violently towards him, and he certainly did about \nhim, to my knowledge.  He admits that he was alone on the scene of \nthe murder within a few minutes of its commission.  I sincerely \nbelieve him to be as innocent of any participation in it as I am, \nbut these are all reasons for suspicion falling upon him.\"\n\n\"True,\" said my guardian.  And he added, turning to me, \"It would \nbe doing him a very bad service, my dear, to shut our eyes to the \ntruth in any of these respects.\"\n\nI felt, of course, that we must admit, not only to ourselves but to \nothers, the full force of the circumstances against him.  Yet I \nknew withal (I could not help saying) that their weight would not \ninduce us to desert him in his need.\n\n\"Heaven forbid!\" returned my guardian.  \"We will stand by him, as \nhe himself stood by the two poor creatures who are gone.\"  He meant \nMr. Gridley and the boy, to both of whom Mr. George had given \nshelter.\n\nMr. Woodcourt then told us that the trooper's man had been with him \nbefore day, after wandering about the streets all night like a \ndistracted creature.  That one of the trooper's first anxieties was \nthat we should not suppose him guilty.  That he had charged his \nmessenger to represent his perfect innocence with every solemn \nassurance be could send us.  That Mr. Woodcourt had only quieted \nthe man by undertaking to come to our house very early in the \nmorning with these representations.  He added that he was now upon \nhis way to see the prisoner himself.\n\nMy guardian said directly he would go too.  Now, besides that I \nliked the retired soldier very much and that he liked me, I had \nthat secret interest in what had happened which was only known to \nmy guardian.  I felt as if it came close and near to me.  It seemed \nto become personally important to myself that the truth should be \ndiscovered and that no innocent people should be suspected, for \nsuspicion, once run wild, might run wilder.\n\nIn a word, I felt as if it were my duty and obligation to go with \nthem.  My guardian did not seek to dissuade me, and I went.\n\nIt was a large prison with many courts and passages so like one \nanother and so uniformly paved that I seemed to gain a new \ncomprehension, as I passed along, of the fondness that solitary \nprisoners, shut up among the same staring walls from year to year, \nhave had--as I have read--for a weed or a stray blade of grass.  In \nan arched room by himself, like a cellar upstairs, with walls so \nglaringly white that they made the massive iron window-bars and \niron-bound door even more profoundly black than they were, we found \nthe trooper standing in a corner.  He had been sitting on a bench \nthere and had risen when he heard the locks and bolts turn.\n\nWhen he saw us, he came forward a step with his usual heavy tread, \nand there stopped and made a slight bow.  But as I still advanced, \nputting out my hand to him, he understood us in a moment.\n\n\"This is a load off my mind, I do assure you, miss and gentlemen,\" \nsaid he, saluting us with great heartiness and drawing a long \nbreath.  \"And now I don't so much care how it ends.\"\n\nHe scarcely seemed to be the prisoner.  What with his coolness and \nhis soldierly bearing, he looked far more like the prison guard.\n\n\"This is even a rougher place than my gallery to receive a lady \nin,\" said Mr. George, \"but I know Miss Summerson will make the best \nof it.\"  As he handed me to the bench on which he had been sitting, \nI sat down, which seemed to give him great satisfaction.\n\n\"I thank you, miss,\" said he.\n\n\"Now, George,\" observed my guardian, \"as we require no new \nassurances on your part, so I believe we need give you none on \nours.\"\n\n\"Not at all, sir.  I thank you with all my heart.  If I was not \ninnocent of this crime, I couldn't look at you and keep my secret \nto myself under the condescension of the present visit.  I feel the \npresent visit very much.  I am not one of the eloquent sort, but I \nfeel it, Miss Summerson and gentlemen, deeply.\"\n\nHe laid his hand for a moment on his broad chest and bent his bead \nto us.  Although he squared himself again directly, he expressed a \ngreat amount of natural emotion by these simple means.\n\n\"First,\" said my guardian, \"can we do anything for your personal \ncomfort, George?\"\n\n\"For which, sir?\" he inquired, clearing his throat.\n\n\"For your personal comfort.  Is there anything you want that would \nlessen the hardship of this confinement?\"\n\n\"Well, sir,\" replied George, after a little cogitation, \"I am \nequally obliged to you, but tobacco being against the rules, I \ncan't say that there is.\"\n\n\"You will think of many little things perhaps, by and by.  \n'Whenever you do, George, let us know.\"\n\n\"Thank you, sir.  Howsoever,\" observed Mr. George with one of his \nsunburnt smiles, \"a man who has been knocking about the world in a \nvagabond kind of a way as long as I have gets on well enough in a \nplace like the present, so far as that goes.\"\n\n\"Next, as to your case,\" observed my guardian.\n\n\"Exactly so, sir,\" returned Mr. George, folding his arms upon his \nbreast with perfect self-possession and a little curiosity.\n\n\"How does it stand now?\"\n\n\"Why, sir, it is under remand at present.  Bucket gives me to \nunderstand that he will probably apply for a series of remands from \ntime to time until the case is more complete.  How it is to be made \nmore complete I don't myself see, but I dare say Bucket will manage \nit somehow.\"\n\n\"Why, heaven save us, man,\" exclaimed my guardian, surprised into \nhis old oddity and vehemence, \"you talk of yourself as if you were \nsomebody else!\"\n\n\"No offence, sir,\" said Mr. George.  \"I am very sensible of your \nkindness.  But I don't see how an innocent man is to make up his \nmind to this kind of thing without knocking his head against the \nwalls unless he takes it in that point of view.\n\n\"That is true enough to a certain extent,\" returned my guardian, \nsoftened.  \"But my good fellow, even an innocent man must take \nordinary precautions to defend himself.\"\n\n\"Certainly, sir.  And I have done so.  I have stated to the \nmagistrates, 'Gentlemen, I am as innocent of this charge as \nyourselves; what has been stated against me in the way of facts is \nperfectly true; I know no more about it.'  I intend to continue \nstating that, sir.  What more can I do?  It's the truth.\"\n\n\"But the mere truth won't do,\" rejoined my guardian.\n\n\"Won't it indeed., sir?  Rather a bad look-out for me!\" Mr. George \ngood-humouredly observed.\n\n\"You must have a lawyer,\" pursued my guardian.  \"We must engage a \ngood one for you.\"\n\n\"I ask your pardon, sir,\" said Mr. George with a step backward.  \"I \nam equally obliged.  But I must decidedly beg to be excused from \nanything of that sort.\"\n\n\"You won't have a lawyer?\"\n\n\"No, sir.\"  Mr. George shook his head in the most emphatic manner.  \n\"I thank you all the same, sir, but--no lawyer!\"\n\n\"Why not?\"\n\n\"I don't take kindly to the breed,\" said Mr. George.  \"Gridley \ndidn't.  And--if you'll excuse my saying so much--I should hardly \nhave thought you did yourself, sir.\"\n\n\"That's equity,\" my guardian explained, a little at a loss; \"that's \nequity, George.\"\n\n\"Is it, indeed, sir?\" returned the trooper in his off-hand manner.  \n\"I am not acquainted with those shades of names myself, but in a \ngeneral way I object to the breed.\"\n\nUnfolding his arms and changing his position, he stood with one \nmassive hand upon the table and the other on his hip, as complete a \npicture of a man who was not to be moved from a fixed purpose as \never I saw.  It was in vain that we all three talked to him and \nendeavoured to persuade him; he listened with that gentleness which \nwent so well with his bluff bearing, but was evidently no more \nshaken by our representations that his place of confinement was.\n\n\"Pray think, once more, Mr. George,\" said I.  \"Have you no wish in \nreference to your case?\"\n\n\"I certainly could wish it to be tried, miss,\" he returned, \"by \ncourt-martial; but that is out of the question, as I am well aware.  \nIf you will be so good as to favour me with your attention for a \ncouple of minutes, miss, not more, I'll endeavour to explain myself \nas clearly as I can.\"\n\nHe looked at us all three in turn, shook his head a little as if he \nwere adjusting it in the stock and collar of a tight uniform, and \nafter a moment's reflection went on.\n\n\"You see, miss, I have been handcuffed and taken into custody and \nbrought here.  I am a marked and disgraced man, and here I am.  My \nshooting gallery is rummaged, high and low, by Bucket; such \nproperty as I have--'tis small--is turned this way and that till it \ndon't know itself; and (as aforesaid) here I am!  I don't \nparticular complain of that.  Though I am in these present quarters \nthrough no immediately preceding fault of mine, I can very well \nunderstand that if I hadn't gone into the vagabond way in my youth, \nthis wouldn't have happened.  It HAS happened.  Then comes the \nquestion how to meet it\"\n\nHe rubbed his swarthy forehead for a moment with a good-humoured \nlook and said apologetically, \"I am such a short-winded talker that \nI must think a bit.\"  Having thought a bit, he looked up again and \nresumed.\n\n\"How to meet it.  Now, the unfortunate deceased was himself a \nlawyer and had a pretty tight hold of me.  I don't wish to rake up \nhis ashes, but he had, what I should call if he was living, a devil \nof a tight hold of me.  I don't like his trade the better for that.  \nIf I had kept clear of his trade, I should have kept outside this \nplace.  But that's not what I mean.  Now, suppose I had killed him.  \nSuppose I really had discharged into his body any one of those \npistols recently fired off that Bucket has found at my place, and \ndear me, might have found there any day since it has been my place.  \nWhat should I have done as soon as I was hard and fast here?  Got a \nlawyer.\"\n\nHe stopped on hearing some one at the locks and bolts and did not \nresume until the door had been opened and was shut again.  For what \npurpose opened, I will mention presently.\n\n\"I should have got a lawyer, and he would have said (as I have \noften read in the newspapers), 'My client says nothing, my client \nreserves his defence': my client this, that, and t'other.  Well, \n'tis not the custom of that breed to go straight, according to my \nopinion, or to think that other men do.  Say I am innocent and I \nget a lawyer.  He would be as likely to believe me guilty as not; \nperhaps more.  What would he do, whether or not?  Act as if I was--\nshut my mouth up, tell me not to commit myself, keep circumstances \nback, chop the evidence small, quibble, and get me off perhaps!  \nBut, Miss Summerson, do I care for getting off in that way; or \nwould I rather be hanged in my own way--if you'll excuse my \nmentioning anything so disagreeable to a lady?\"\n\nHe had warmed into his subject now, and was under no further \nnecessity to wait a bit.\n\n\"I would rather be hanged in my own way.  And I mean to be!  I \ndon't intend to say,\" looking round upon us with his powerful arms \nakimbo and his dark eyebrows raised, \"that I am more partial to \nbeing hanged than another man.  What I say is, I must come off \nclear and full or not at all.  Therefore, when I hear stated \nagainst me what is true, I say it's true; and when they tell me, \n'whatever you say will be used,' I tell them I don't mind that; I \nmean it to be used.  If they can't make me innocent out of the \nwhole truth, they are not likely to do it out of anything less, or \nanything else.  And if they are, it's worth nothing to me.\"\n\nTaking a pace or two over the stone floor, he came back to the \ntable and finished what he had to say.\n\n\"I thank you, miss and gentlemen both, many times for your \nattention, and many times more for your interest.  That's the plain \nstate of the matter as it points itself out to a mere trooper with \na blunt broadsword kind of a mind.  I have never done well in life \nbeyond my duty as a soldier, and if the worst comes after all, I \nshall reap pretty much as I have sown.  When I got over the first \ncrash of being seized as a murderer--it don't take a rover who has \nknocked about so much as myself so very long to recover from a \ncrash--I worked my way round to what you find me now.  As such I \nshall remain.  No relations will be disgraced by me or made unhappy \nfor me, and--and that's all I've got to say.\"\n\nThe door had been opened to admit another soldier-looking man of \nless prepossessing appearance at first sight and a weather-tanned, \nbright-eyed wholesome woman with a basket, who, from her entrance, \nhad been exceedingly attentive to all Mr. George had said.  Mr. \nGeorge had received them with a familiar nod and a friendly look, \nbut without any more particular greeting in the midst of his \naddress.  He now shook them cordially by the hand and said, \"Miss \nSummerson and gentlemen, this is an old comrade of mine, Matthew \nBagnet.  And this is his wife, Mrs. Bagnet.\"\n\nMr. Bagnet made us a stiff military bow, and Mrs. Bagnet dropped us \na curtsy.\n\n\"Real good friends of mine, they are,\" sald Mr. George.  \"It was at \ntheir house I was taken.\"\n\n\"With a second-hand wiolinceller,\" Mr. Bagnet put in, twitching his \nhead angrily.  \"Of a good tone.  For a friend.  That money was no \nobject to.\"\n\n\"Mat,\" said Mr. George, \"you have heard pretty well all I have been \nsaying to this lady and these two gentlemen.  I know it meets your \napproval?\"\n\nMr. Bagnet, after considering, referred the point to his wife.  \n\"Old girl,\" said he.  \"Tell him.  Whether or not.  It meets my \napproval.\"\n\n\"Why, George,\" exclaimed Mrs. Bagnet, who had been unpacking her \nbasket, in which there was a piece of cold pickled pork, a little \ntea and sugar, and a brown loaf, \"you ought to know it don't.  You \nought to know it's enough to drive a person wild to hear you.  You \nwon't be got off this way, and you won't be got off that way--what \ndo you mean by such picking and choosing?  It's stuff and nonsense, \nGeorge.\"\n\n\"Don't be severe upon me in my misfortunes, Mrs. Bagnet,\" said the \ntrooper lightly.\n\n\"Oh! Bother your misfortunes,\" cried Mrs. Bagnet, \"if they don't \nmake you more reasonable than that comes to.  I never was so \nashamed in my life to hear a man talk folly as I have been to hear \nyou talk this day to the present company.  Lawyers?  Why, what but \ntoo many cooks should hinder you from having a dozen lawyers if the \ngentleman recommended them to you\"\n\n\"This is a very sensible woman,\" said my guardian.  \"I hope you \nwill persuade him, Mrs. Bagnet.\"\n\n\"Persuade him, sir?\" she returned.  \"Lord bless you, no.  You don't \nknow George.  Now, there!\"  Mrs. Bagnet left her basket to point \nhim out with both her bare brown hands.  \"There he stands!  As \nself-willed and as determined a man, in the wrong way, as ever put \na human creature under heaven out of patience!  You could as soon \ntake up and shoulder an eight and forty pounder by your own \nstrength as turn that man when he has got a thing into his head and \nfixed it there.  Why, don't I know him!\" cried Mrs. Bagnet.  \"Don't \nI know you, George!  You don't mean to set up for a new character \nwith ME after all these years, I hope?\"\n\nHer friendly indignation had an exemplary effect upon her husband, \nwho shook his head at the trooper several times as a silent \nrecommendation to him to yield.  Between whiles, Mrs. Bagnet looked \nat me; and I understood from the play of her eyes that she wished \nme to do something, though I did not comprehend what.\n\n\"But I have given up talking to you, old fellow, years and years,\" \nsaid Mrs. Bagnet as she blew a little dust off the pickled pork, \nlooking at me again; \"and when ladies and gentlemen know you as \nwell as I do, they'll give up talking to you too.  If you are not \ntoo headstrong to accept of a bit of dinner, here it is.\"\n\n\"I accept it with many thanks,\" returned the trooper.\n\n\"Do you though, indeed?\" said Mrs. Bagnet, continuing to grumble on \ngood-humouredly.  \"I'm sure I'm surprised at that I wonder you \ndon't starve in your own way also.  It would only be like you.  \nPerhaps you'll set your mind upon THAT next.\"  Here she again \nlooked at me, and I now perceived from her glances at the door and \nat me, by turns, that she wished us to retire and to await her \nfollowing us outside the prison.  Communicating this by similar \nmeans to my guardian and Mr. Woodcourt, I rose.\n\n\"We hope you will think better of it, Mr. George,\" said I, \"and we \nshall come to see you again, trusting to find you more reasonable.\"\n\n\"More grateful, Miss Summerson, you can't find me,\" he returned.\n\n\"But more persuadable we can, I hope,\" said I.  \"And let me entreat \nyou to consider that the clearing up of this mystery and the \ndiscovery of the real perpetrator of this deed may be of the last \nimportance to others besides yourself.\"\n\nHe heard me respectfully but without much heeding these words, \nwhich I spoke a little turned from him, already on my way to the \ndoor; he was observing (this they afterwards told me) my height and \nfigure, which seemed to catch his attention all at once.\n\n\"'Tis curious,\" said he.  \"And yet I thought so at the time!\"\n\nMy guardian asked him what he meant.\n\n\"Why, sir,\" he answered, \"when my ill fortune took me to the dead \nman's staircase on the night of his murder, I saw a shape so like \nMiss Summerson's go by me in the dark that I had half a mind to \nspeak to it.\"\n\nFor an instant I felt such a shudder as I never felt before or \nsince and hope I shall never feel again.\n\n\"It came downstairs as I went up,\" said the trooper, \"and crossed \nthe moonlighted window with a loose black mantle on; I noticed a \ndeep fringe to it.  However, it has nothing to do with the present \nsubject, excepting that Miss Summerson looked so like it at the \nmoment that it came into my head.\"\n\nI cannot separate and define the feelings that arose in me after \nthis; it is enough that the vague duty and obligation I had felt \nupon me from the first of following the investigation was, without \nmy distinctly daring to ask myself any question, increased, and \nthat I was indignantly sure of there being no possibility of a \nreason for my being afraid.\n\nWe three went out of the prison and walked up and down at some short \ndistance from the gate, which was in a retired place.  We had not \nwaited long when Mr. and Mrs. Bagnet came out too and quickly \njoined us.\n\nThere was a tear in each of Mrs. Bagnet's eyes, and her face was \nflushed and hurried.  \"I didn't let George see what I thought about \nit, you know, miss,\" was her first remark when she came up, \"but \nhe's in a bad way, poor old fellow!\"\n\n\"Not with care and prudence and good help,\" said my guardian.\n\n\"A gentleman like you ought to know best, sir,\" returned Mrs. \nBagnet, hurriedly drying her eyes on the hem of her grey cloak, \n\"but I am uneasy for him.  He has been so careless and said so much \nthat he never meant.  The gentlemen of the juries might not \nunderstand him as Lignum and me do.  And then such a number of \ncircumstances have happened bad for him, and such a number of \npeople will be brought forward to speak against him, and Bucket is \nso deep.\"\n\n\"With a second-hand wiolinceller.  And said he played the fife.  \nWhen a boy,\" Mr. Bagnet added with great solemnity.\n\n\"Now, I tell you, miss,\" said Mrs. Bagnet; \"and when I say miss, I \nmean all!  Just come into the corner of the wall and I'll tell \nyou!\"\n\nMrs. Bagnet hurried us into a more secluded place and was at first \ntoo breathless to proceed, occasioning Mr. Bagnet to say, \"Old \ngirl!  Tell 'em!\"\n\n\"Why, then, miss,\" the old girl proceeded, untying the strings of \nher bonnet for more air, \"you could as soon move Dover Castle as \nmove George on this point unless you had got a new power to move \nhim with.  And I have got it!\"\n\n\"You are a jewel of a woman,\" said my guardian.  \"Go on!\"\n\n\"Now, I tell you, miss,\" she proceeded, clapping her hands in her \nhurry and agitation a dozen times in every sentence, \"that what he \nsays concerning no relations is all bosh.  They don't know of him, \nbut he does know of them.  He has said more to me at odd times than \nto anybody else, and it warn't for nothing that he once spoke to my \nWoolwich about whitening and wrinkling mothers' heads.  For fifty \npounds he had seen his mother that day.  She's alive and must be \nbrought here straight!\"\n\nInstantly Mrs. Bagnet put some pins into her mouth and began \npinning up her skirts all round a little higher than the level of \nher grey cloak, which she accomplished with surpassing dispatch and \ndexterity.\n\n\"Lignum,\" said Mrs. Bagnet, \"you take care of the children, old \nman, and give me the umbrella!  I'm away to Lincolnshire to bring \nthat old lady here.\"\n\n\"But, bless the woman,\" cried my guardian with his hand in his \npocket, \"how is she going?  What money has she got?\"\n\nMrs. Bagnet made another application to her skirts and brought \nforth a leathern purse in which she hastily counted over a few \nshillings and which she then shut up with perfect satisfaction.\n\n\"Never you mind for me, miss.  I'm a soldier's wife and accustomed \nto travel my own way.  Lignum, old boy,\" kissing him, \"one for \nyourself, three for the children.  Now I'm away into Lincolnshire \nafter George's mother!\"\n\nAnd she actually set off while we three stood looking at one \nanother lost in amazement.  She actually trudged away in her grey \ncloak at a sturdy pace, and turned the corner, and was gone.\n\n\"Mr. Bagnet,\" said my guardian.  \"Do you mean to let her go in that \nway?\"\n\n\"Can't help it,\" he returned.  \"Made her way home once from another \nquarter of the world.  With the same grey cloak.  And same \numbrella.  Whatever the old girl says, do.  Do it!  Whenever the \nold girl says, I'LL do it.  She does it.\"\n\n\"Then she is as honest and genuine as she looks,\" rejoined my \nguardian, \"and it is impossible to say more for her.\"\n\n\"She's Colour-Sergeant of the Nonpareil battalion,\" said Mr. \nBagnet, looking at us over his shoulder as he went his way also.  \n\"And there's not such another.  But I never own to it before her.  \nDiscipline must be maintained.\"\n\n\n\nCHAPTER LIII\n\nThe Track\n\n\nMr. Bucket and his fat forefinger are much in consultation together \nunder existing circumstances.  When Mr. Bucket has a matter of this \npressing interest under his consideration, the fat forefinger seems \nto rise, to the dignity of a familiar demon.  He puts it to his \nears, and it whispers information; he puts it to his lips, and it \nenjoins him to secrecy; he rubs it over his nose, and it sharpens \nhis scent; he shakes it before a guilty man, and it charms him to \nhis destruction.  The Augurs of the Detective Temple invariably \npredict that when Mr. Bucket and that finger are in much \nconference, a terrible avenger will be heard of before long.\n\nOtherwise mildly studious in his observation of human nature, on \nthe whole a benignant philosopher not disposed to be severe upon \nthe follies of mankind, Mr. Bucket pervades a vast number of houses \nand strolls about an infinity of streets, to outward appearance \nrather languishing for want of an object.  He is in the friendliest \ncondition towards his species and will drink with most of them.  He \nis free with his money, affable in his manners, innocent in his \nconversation--but through the placid stream of his life there \nglides an under-current of forefinger.\n\nTime and place cannot bind Mr. Bucket.  Like man in the abstract, \nhe is here to-day and gone to-morrow--but, very unlike man indeed, \nhe is here again the next day.  This evening he will be casually \nlooking into the iron extinguishers at the door of Sir Leicester \nDedlock's house in town; and to-morrow morning he will be walking \non the leads at Chesney Wold, where erst the old man walked whose \nghost is propitiated with a hundred guineas.  Drawers, desks, \npockets, all things belonging to him, Mr. Bucket examines.  A few \nhours afterwards, he and the Roman will be alone together comparing \nforefingers.\n\nIt is likely that these occupations are irreconcilable with home \nenjoyment, but it is certain that Mr. Bucket at present does not go \nhome.  Though in general he highly appreciates the society of Mrs. \nBucket--a lady of a natural detective genius, which if it had been \nimproved by professional exercise, might have done great things, \nbut which has paused at the level of a clever amateur--he holds \nhimself aloof from that dear solace.  Mrs. Bucket is dependent on \ntheir lodger (fortunately an amiable lady in whom she takes an \ninterest) for companionship and conversation.\n\nA great crowd assembles in Lincoln's Inn Fields on the day of the \nfuneral.  Sir Leicester Dedlock attends the ceremony in person; \nstrictly speaking, there are only three other human followers, that \nis to say, Lord Doodle, William Buffy, and the debilitated cousin \n(thrown in as a make-weight), but the amount of inconsolable \ncarriages is immense.  The peerage contributes more four-wheeled \naffliction than has ever been seen in that neighbourhood.  Such is \nthe assemblage of armorial bearings on coach panels that the \nHerald's College might be supposed to have lost its father and \nmother at a blow.  The Duke of Foodle sends a splendid pile of dust \nand ashes, with silver wheel-boxes, patent axles, all the last \nimprovements, and three bereaved worms, six feet high, holding on \nbehind, in a bunch of woe.  All the state coachmen in London seem \nplunged into mourning; and if that dead old man of the rusty garb \nbe not beyond a taste in horseflesh (which appears impossible), it \nmust be highly gratified this day.\n\nQuiet among the undertakers and the equipages and the calves of so \nmany legs all steeped in grief, Mr. Bucket sits concealed in one of \nthe inconsolable carriages and at his ease surveys the crowd \nthrough the lattice blinds.  He has a keen eye for a crowd--as for \nwhat not?--and looking here and there, now from this side of the \ncarriage, now from the other, now up at the house windows, now \nalong the people's heads, nothing escapes him.\n\n\"And there you are, my partner, eh?\" says Mr. Bucket to himself, \napostrophizing Mrs. Bucket, stationed, by his favour, on the steps \nof the deceased's house.  \"And so you are.  And so you are!  And \nvery well indeed you are looking, Mrs. Bucket!\"\n\nThe procession has not started yet, but is waiting for the cause of \nits assemblage to be brought out.  Mr. Bucket, in the foremost \nemblazoned carriage, uses his two fat forefingers to hold the \nlattice a hair's breadth open while he looks.\n\nAnd it says a great deal for his attachment, as a husband, that he \nis still occupied with Mrs. B.  \"There you are, my partner, eh?\" he \nmurmuringly repeats.  \"And our lodger with you.  I'm taking notice \nof you, Mrs. Bucket; I hope you're all right in your health, my \ndear!\"\n\nNot another word does Mr. Bucket say, but sits with most attentive \neyes until the sacked depository of noble secrets is brought down--\nWhere are all those secrets now?  Does he keep them yet?  Did they \nfly with him on that sudden journey?--and until the procession \nmoves, and Mr. Bucket's view is changed.  After which he composes \nhimself for an easy ride and takes note of the fittings of the \ncarriage in case he should ever find such knowledge useful.\n\nContrast enough between Mr. Tulkinghorn shut up in his dark \ncarriage and Mr. Bucket shut up in HIS.  Between the immeasurable \ntrack of space beyond the little wound that has thrown the one into \nthe fixed sleep which jolts so heavily over the stones of the \nstreets, and the narrow track of blood which keeps the other in the \nwatchful state expressed in every hair of his head!  But it is all \none to both; neither is troubled about that.\n\nMr. Bucket sits out the procession in his own easy manner and \nglides from the carriage when the opportunity he has settled with \nhimself arrives.  He makes for Sir Leicester Dedlock's, which is at \npresent a sort of home to him, where he comes and goes as he likes \nat all hours', where he is always welcome and made much of, where \nhe knows the whole establishment, and walks in an atmosphere of \nmysterious greatness.\n\nNo knocking or ringing for Mr. Bucket.  He has caused himself to be \nprovided with a key and can pass in at his pleasure.  As he is \ncrossing the hall, Mercury informs him, \"Here's another letter for \nyou, Mr. Bucket, come by post,\" and gives it him.\n\n\"Another one, eh?\" says Mr. Bucket.\n\nIf Mercury should chance to be possessed by any lingering curiosity \nas to Mr. Bucket's letters, that wary person is not the man to \ngratify it.  Mr. Bucket looks at him as if his face were a vista of \nsome miles in length and he were leisurely contemplating the same.\n\n\"Do you happen to carry a box?\" says Mr. Bucket.\n\nUnfortunately Mercury is no snuff-taker.\n\n\"Could you fetch me a pinch from anywheres?\" says Mr. Bucket.  \n\"Thankee.  It don't matter what it is; I'm not particular as to the \nkind.  Thankee!\"\n\nHaving leisurely helped himself from a canister borrowed from \nsomebody downstairs for the purpose, and having made a considerable \nshow of tasting it, first with one side of his nose and then with \nthe other, Mr. Bucket, with much deliberation, pronounces it of the \nright sort and goes on, letter in hand.\n\nNow although Mr. Bucket walks upstairs to the little library within \nthe larger one with the face of a man who receives some scores of \nletters every day, it happens that much correspondence is not \nincidental to his life.  He is no great scribe, rather handling his \npen like the pocket-staff he carries about with him always \nconvenient to his grasp, and discourages correspondence with \nhimself in others as being too artless and direct a way of doing \ndelicate business.  Further, he often sees damaging letters \nproduced in evidence and has occasion to reflect that it was a \ngreen thing to write them.  For these reasons he has very little to \ndo with letters, either as sender or receiver.  And yet he has \nreceived a round half-dozen within the last twenty-four hours.\n\n\"And this,\" says Mr. Bucket, spreading it out on the table, \"is in \nthe same hand, and consists of the same two words.\"\n\nWhat two words?\n\nHe turns the key in the door, ungirdles his black pocket-book (book \nof fate to many), lays another letter by it, and reads, boldly \nwritten in each, \"Lady Dedlock.\"\n\n\"Yes, yes,\" says Mr. Bucket.  \"But I could have made the money \nwithout this anonymous information.\"\n\nHaving put the letters in his book of fate and girdled it up again, \nhe unlocks the door just in time to admit his dinner, which is \nbrought upon a goodly tray with a decanter of sherry.  Mr. Bucket \nfrequently observes, in friendly circles where there is no \nrestraint, that he likes a toothful of your fine old brown East \nInder sherry better than anything you can offer him.  Consequently \nhe fills and empties his glass with a smack of his lips and is \nproceeding with his refreshment when an idea enters his mind.\n\nMr. Bucket softly opens the door of communication between that room \nand the next and looks in.  The library is deserted, and the fire \nis sinking low.  Mr. Bucket's eye, after taking a pigeon-flight \nround the room, alights upon a table where letters are usually put \nas they arrive.  Several letters for Sir Leicester are upon it.  \nMr. Bucket draws near and examines the directions.  \"No,\" he says, \n\"there's none in that hand.  It's only me as is written to.  I can \nbreak it to Sir Leicester Dedlock, Baronet, to-morrow.\"\n\nWith that he returns to finish his dinner with a good appetite, and \nafter a light nap, is summoned into the drawing-room.  Sir \nLeicester has received him there these several evenings past to \nknow whether he has anything to report.  The debilitated cousin \n(much exhausted by the funeral) and Volumnia are in attendance.\n\nMr. Bucket makes three distinctly different bows to these three \npeople.  A bow of homage to Sir Leicester, a bow of gallantry to \nVolumnia, and a bow of recognition to the debilitated Cousin, to \nwhom it airily says, \"You are a swell about town, and you know me, \nand I know you.\"  Having distributed these little specimens of his \ntact, Mr. Bucket rubs his hands.\n\n\"Have you anything new to communicate, officer?\" inquires Sir \nLeicester.  \"Do you wish to hold any conversation with me in \nprivate?\"\n\n\"Why--not tonight, Sir Leicester Dedlock, Baronet.\"\n\n\"Because my time,\" pursues Sir Leicester, \"is wholly at your \ndisposal with a view to the vindication of the outraged majesty of \nthe law.\"\n\nMr. Bucket coughs and glances at Volumnia, rouged and necklaced, as \nthough he would respectfully observe, \"I do assure you, you're a \npretty creetur.  I've seen hundreds worse looking at your time of \nlife, I have indeed.\"\n\nThe fair Volumnia, not quite unconscious perhaps of the humanizing \ninfluence of her charms, pauses in the writing of cocked-hat notes \nand meditatively adjusts the pearl necklace.  Mr. Bucket prices \nthat decoration in his mind and thinks it as likely as not that \nVolumnia is writing poetry.\n\n\"If I have not,\" pursues Sir Leicester, \"in the most emphatic \nmanner, adjured you, officer, to exercise your utmost skill in this \natrocious case, I particularly desire to take the present \nopportunity of rectifying any omission I may have made.  Let no \nexpense be a consideration.  I am prepared to defray all charges.  \nYou can incur none in pursuit of the object you have undertaken \nthat I shall hesitate for a moment to bear.\"\n\nMr. Bucket made Sir Leicester's bow again as a response to this \nliberality.\n\n\"My mind,\" Sir Leicester adds with a generous warmth, \"has not, as \nmay be easily supposed, recovered its tone since the late \ndiabolical occurrence.  It is not likely ever to recover its tone.  \nBut it is full of indignation to-night after undergoing the ordeal \nof consigning to the tomb the remains of a faithful, a zealous, a \ndevoted adherent.\"\n\nSir Leicester's voice trembles and his grey hair stirs upon his \nhead.  Tears are in his eyes; the best part of his nature is \naroused.\n\n\"I declare,\" he says, \"I solemnly declare that until this crime is \ndiscovered and, in the course of justice, punished, I almost feel \nas if there were a stain upon my name.  A gentleman who has devoted \na large portion of his life to me, a gentleman who has devoted the \nlast day of his life to me, a gentleman who has constantly sat at \nmy table and slept under my roof, goes from my house to his own, \nand is struck down within an hour of his leaving my house.  I \ncannot say but that he may have been followed from my house, \nwatched at my house, even first marked because of his association \nwith my house--which may have suggested his possessing greater \nwealth and being altogether of greater importance than his own \nretiring demeanour would have indicated.  If I cannot with my means \nand influence and my position bring all the perpetrators of such a \ncrime to light, I fail in the assertion of my respect for that \ngentleman's memory and of my fidelity towards one who was ever \nfaithful to me.\"\n\nWhile he makes this protestation with great emotion and \nearnestness, looking round the room as if he were addressing an \nassembly, Mr. Bucket glances at him with an observant gravity in \nwhich there might be, but for the audacity of the thought, a touch \nof compassion.\n\n\"The ceremony of to-day,\" continues Sir Leicester, \"strikingly \nillustrative of the respect in which my deceased friend\"--he lays a \nstress upon the word, for death levels all distinctions--\"was held \nby the flower of the land, has, I say, aggravated the shock I have \nreceived from this most horrible and audacious crime.  If it were \nmy brother who had committed it, I would not spare him.\"\n\nMr. Bucket looks very grave.  Volumnia remarks of the deceased that \nhe was the trustiest and dearest person!\n\n\"You must feel it as a deprivation to you, miss, replies Mr. Bucket \nsoothingly, \"no doubt.  He was calculated to BE a deprivation, I'm \nsure he was.\"\n\nVolumnia gives Mr. Bucket to understand, in reply, that her \nsensitive mind is fully made up never to get the better of it as \nlong as she lives, that her nerves are unstrung for ever, and that \nshe has not the least expectation of ever smiling again.  Meanwhile \nshe folds up a cocked hat for that redoubtable old general at Bath, \ndescriptive of her melancholy condition.\n\n\"It gives a start to a delicate female,\" says Mr. Bucket \nsympathetically, \"but it'll wear off.\"\n\nVolumnia wishes of all things to know what is doing?  Whether they \nare going to convict, or whatever it is, that dreadful soldier?  \nWhether he had any accomplices, or whatever the thing is called in \nthe law?  And a great deal more to the like artless purpose.\n\n\"Why you see, miss,\" returns Mr. Bucket, bringing the finger into \npersuasive action--and such is his natural gallantry that he had \nalmost said \"my dear\"--\"it ain't easy to answer those questions at \nthe present moment.  Not at the present moment.  I've kept myself \non this case, Sir Leicester Dedlock, Baronet,\" whom Mr. Bucket \ntakes into the conversation in right of his importance, \"morning, \nnoon, and night.  But for a glass or two of sherry, I don't think I \ncould have had my mind so much upon the stretch as it has been.  I \nCOULD answer your questions, miss, but duty forbids it.  Sir \nLeicester Dedlock, Baronet, will very soon be made acquainted with \nall that has been traced.  And I hope that he may find it\"--Mr. \nBucket again looks grave--\"to his satisfaction.\"\n\nThe debilitated cousin only hopes some fler'll be executed--zample.  \nThinks more interest's wanted--get man hanged presentime--than get \nman place ten thousand a year.  Hasn't a doubt--zample--far better \nhang wrong fler than no fler.\n\n\"YOU know life, you know, sir,\" says Mr. Bucket with a \ncomplimentary twinkle of his eye and crook of his finger, \"and you \ncan confirm what I've mentioned to this lady.  YOU don't want to be \ntold that from information I have received I have gone to work.  \nYou're up to what a lady can't be expected to be up to.  Lord!  \nEspecially in your elevated station of society, miss,\" says Mr. \nBucket, quite reddening at another narrow escape from \"my dear.\"\n\n\"The officer, Volumnia,\" observes Sir Leicester, \"is faithful to \nhis duty, and perfectly right.\"\n\nMr. Bucket murmurs, \"Glad to have the honour of your approbation, \nSir Leicester Dedlock, Baronet.\"\n\n\"In fact, Volumnia,\" proceeds Sir Leicester, \"it is not holding up \na good model for imitation to ask the officer any such questions as \nyou have put to him.  He is the best judge of his own \nresponsibility; he acts upon his responsibility.  And it does not \nbecome us, who assist in making the laws, to impede or interfere \nwith those who carry them into execution.  Or,\" says Sir Leicester \nsomewhat sternly, for Volumnia was going to cut in before he had \nrounded his sentence, \"or who vindicate their outraged majesty.\"\n\nVolumnia with all humility explains that she had not merely the \nplea of curiosity to urge (in common with the giddy youth of her \nsex in general) but that she is perfectly dying with regret and \ninterest for the darling man whose loss they all deplore.\n\n\"Very well, Volumnia,\" returns Sir Leicester.  \"Then you cannot be \ntoo discreet.\"\n\nMr. Bucket takes the opportunity of a pause to be heard again.\n\n\"Sir Leicester Dedlock, Baronet, I have no objections to telling \nthis lady, with your leave and among ourselves, that I look upon \nthe case as pretty well complete.  It is a beautiful case--a \nbeautiful case--and what little is wanting to complete it, I expect \nto be able to supply in a few hours.\"\n\n\"I am very glad indeed to hear it,\" says Sir Leicester.  \"Highly \ncreditable to you.\"\n\n\"Sir Leicester Dedlock, Baronet,\" returns Mr. Bucket very \nseriously, \"I hope it may at one and the same time do me credit and \nprove satisfactory to all.  When I depict it as a beautiful case, \nyou see, miss,\" Mr. Bucket goes on, glancing gravely at Sir \nLeicester, \"I mean from my point of view.  As considered from other \npoints of view, such cases will always involve more or less \nunpleasantness.  Very strange things comes to our knowledge in \nfamilies, miss; bless your heart, what you would think to be \nphenomenons, quite.\"\n\nVolumnia, with her innocent little scream, supposes so.\n\n\"Aye, and even in gen-teel families, in high families, in great \nfamilies,\" says Mr. Bucket, again gravely eyeing Sir Leicester \naside.  \"I have had the honour of being employed in high families \nbefore, and you have no idea--come, I'll go so far as to say not \neven YOU have any idea, sir,\" this to the debilitated cousin, \"what \ngames goes on!\"\n\nThe cousin, who has been casting sofa-pillows on his head, in a \nprostration of boredom yawns, \"Vayli,\" being the used-up for \"very \nlikely.\"\n\nSir Leicester, deeming it time to dismiss the officer, here \nmajestically interposes with the words, \"Very good.  Thank you!\" \nand also with a wave of his hand, implying not only that there is \nan end of the discourse, but that if high families fall into low \nhabits they must take the consequences.  \"You will not forget, \nofficer,\" he adds with condescension, \"that I am at your disposal \nwhen you please.\"\n\nMr. Bucket (still grave) inquires if to-morrow morning, now, would \nsuit, in case he should be as for'ard as he expects to be.  Sir \nLeicester replies, \"All times are alike to me.\"  Mr. Bucket makes \nhis three bows and is withdrawing when a forgotten point occurs to \nhim.\n\n\"Might I ask, by the by,\" he says in a low voice, cautiously \nreturning, \"who posted the reward-bill on the staircase.\"\n\n\"I ordered it to be put up there,\" replies Sir Leicester.\n\n\"Would it be considered a liberty, Sir Leicester Dedlock, Baronet, \nif I was to ask you why?\"\n\n\"Not at all.  I chose it as a conspicuous part of the house.  I \nthink it cannot be too prominently kept before the whole \nestablishment.  I wish my people to be impressed with the enormity \nof the crime, the determination to punish it, and the hopelessness \nof escape.  At the same time, officer, if you in your better \nknowledge of the subject see any objection--\"\n\nMr. Bucket sees none now; the bill having been put up, had better \nnot be taken down.  Repeating his three bows he withdraws, closing \nthe door on Volumnia's little scream, which is a preliminary to her \nremarking that that charmingly horrible person is a perfect Blue \nChamber.\n\nIn his fondness for society and his adaptability to all grades, Mr. \nBucket is presently standing before the hall-fire--bright and warm \non the early winter night--admiring Mercury.\n\n\"Why, you're six foot two, I suppose?\" says Mr. Bucket.\n\n\"Three,\" says Mercury.\n\n\"Are you so much?  But then, you see, you're broad in proportion \nand don't look it.  You're not one of the weak-legged ones, you \nain't.  Was you ever modelled now?\"  Mr. Bucket asks, conveying the \nexpression of an artist into the turn of his eye and head.\n\nMercury never was modelled.\n\n\"Then you ought to be, you know,\" says Mr. Bucket; \"and a friend of \nmine that you'll hear of one day as a Royal Academy sculptor would \nstand something handsome to make a drawing of your proportions for \nthe marble.  My Lady's out, ain't she?\"\n\n\"Out to dinner.\"\n\n\"Goes out pretty well every day, don't she?\"\n\n\"Yes.\"\n\n\"Not to be wondered at!\" says Mr. Bucket.  \"Such a fine woman as \nher, so handsome and so graceful and so elegant, is like a fresh \nlemon on a dinner-table, ornamental wherever she goes.  Was your \nfather in the same way of life as yourself?\"\n\nAnswer in the negative.\n\n\"Mine was,\" says Mr. Bucket.  \"My father was first a page, then a \nfootman, then a butler, then a steward, then an inn-keeper.  Lived \nuniversally respected, and died lamented.  Said with his last \nbreath that he considered service the most honourable part of his \ncareer, and so it was.  I've a brother in service, AND a brother-\nin-law.  My Lady a good temper?\"\n\nMercury replies, \"As good as you can expect.\"\n\n\"Ah!\" says Mr. Bucket.  \"A little spoilt?  A little capricious?  \nLord!  What can you anticipate when they're so handsome as that?  \nAnd we like 'em all the better for it, don't we?\"\n\nMercury, with his hands in the pockets of his bright peach-blossom \nsmall-clothes, stretches his symmetrical silk legs with the air of \na man of gallantry and can't deny it.  Come the roll of wheels and \na violent ringing at the bell.  \"Talk of the angels,\" says Mr. \nBucket.  \"Here she is!\"\n\nThe doors are thrown open, and she passes through the hall.  Still \nvery pale, she is dressed in slight mourning and wears two \nbeautiful bracelets.  Either their beauty or the beauty of her arms \nis particularly attractive to Mr. Bucket.  He looks at them with an \neager eye and rattles something in his pocket--halfpence perhaps.\n\nNoticing him at his distance, she turns an inquiring look on the \nother Mercury who has brought her home.\n\n\"Mr. Bucket, my Lady.\"\n\nMr. Bucket makes a leg and comes forward, passing his familiar \ndemon over the region of his mouth.\n\n\"Are you waiting to see Sir Leicester?\"\n\n\"No, my Lady, I've seen him!\"\n\n\"Have you anything to say to me?\"\n\n\"Not just at present, my Lady.\"\n\n\"Have you made any new discoveries?\"\n\n\"A few, my Lady.\"\n\nThis is merely in passing.  She scarcely makes a stop, and sweeps \nupstairs alone.  Mr. Bucket, moving towards the staircase-foot, \nwatches her as she goes up the steps the old man came down to his \ngrave, past murderous groups of statuary repeated with their \nshadowy weapons on the wall, past the printed bill, which she looks \nat going by, out of view.\n\n\"She's a lovely woman, too, she really is,\" says Mr. Bucket, coming \nback to Mercury.  \"Don't look quite healthy though.\"\n\nIs not quite healthy, Mercury informs him.  Suffers much from \nheadaches.\n\nReally?  That's a pity!  Walking, Mr. Bucket would recommend for \nthat.  Well, she tries walking, Mercury rejoins.  Walks sometimes \nfor two hours when she has them bad.  By night, too.\n\n\"Are you sure you're quite so much as six foot three?\" asks Mr. \nBucket.  \"Begging your pardon for interrupting you a moment?\"\n\nNot a doubt about it.\n\n\"You're so well put together that I shouldn't have thought it.  But \nthe household troops, though considered fine men, are built so \nstraggling.  Walks by night, does she?  When it's moonlight, \nthough?\"\n\nOh, yes.  When it's moonlight!  Of course.  Oh, of course!  \nConversational and acquiescent on both sides.\n\n\"I suppose you ain't in the habit of walking yourself?\" says Mr. \nBucket.  \"Not much time for it, I should say?\"\n\nBesides which, Mercury don't like it.  Prefers carriage exercise.\n\n\"To be sure,\" says Mr. Bucket.  \"That makes a difference.  Now I \nthink of it,\" says Mr. Bucket, warming his hands and looking \npleasantly at the blaze, \"she went out walking the very night of \nthis business.\"\n\n\"To be sure she did!  I let her into the garden over the way.\n\n\"And left her there.  Certainly you did.  I saw you doing it.\"\n\n\"I didn't see YOU,\" says Mercury.\n\n\"I was rather in a hurry,\" returns Mr. Bucket, \"for I was going to \nvisit a aunt of mine that lives at Chelsea--next door but two to \nthe old original Bun House--ninety year old the old lady is, a \nsingle woman, and got a little property.  Yes, I chanced to be \npassing at the time.  Let's see.  What time might it be?  It wasn't \nten.\"\n\n\"Half-past nine.\"\n\n\"You're right.  So it was.  And if I don't deceive myself, my Lady \nwas muffled in a loose black mantle, with a deep fringe to it?\"\n\n\"Of course she was.\"\n\nOf course she was.  Mr. Bucket must return to a little work he has \nto get on with upstairs, but he must shake hands with Mercury in \nacknowledgment of his agreeable conversation, and will he--this is \nall he asks--will he, when he has a leisure half-hour, think of \nbestowing it on that Royal Academy sculptor, for the advantage of \nboth parties?\n\n\n\nCHAPTER LIV\n\nSpringing a Mine\n\n\nRefreshed by sleep, Mr. Bucket rises betimes in the morning and \nprepares for a field-day.  Smartened up by the aid of a clean shirt \nand a wet hairbrush, with which instrument, on occasions of \nceremony, he lubricates such thin locks as remain to him after his \nlife of severe study, Mr. Bucket lays in a breakfast of two mutton \nchops as a foundation to work upon, together with tea, eggs, toast, \nand marmalade on a corresponding scale.  Having much enjoyed these \nstrengthening matters and having held subtle conference with his \nfamiliar demon, he confidently instructs Mercury \"just to mention \nquietly to Sir Leicester Dedlock, Baronet, that whenever he's ready \nfor me, I'm ready for him.\"  A gracious message being returned that \nSir Leicester will expedite his dressing and join Mr. Bucket in the \nlibrary within ten minutes, Mr. Bucket repairs to that apartment \nand stands before the fire with his finger on his chin, looking at \nthe blazing coals.\n\nThoughtful Mr. Bucket is, as a man may be with weighty work to do, \nbut composed, sure, confident.  From the expression of his face he \nmight be a famous whist-player for a large stake--say a hundred \nguineas certain--with the game in his hand, but with a high \nreputation involved in his playing his hand out to the last card in \na masterly way.  Not in the least anxious or disturbed is Mr. \nBucket when Sir Leicester appears, but he eyes the baronet aside as \nhe comes slowly to his easy-chair with that observant gravity of \nyesterday in which there might have been yesterday, but for the \naudacity of the idea, a touch of compassion.\n\n\"I am sorry to have kept you waiting, officer, but I am rather \nlater than my usual hour this morning.  I am not well.  The \nagitation and the indignation from which I have recently suffered \nhave been too much for me.  I am subject to--gout\"--Sir Leicester \nwas going to say indisposition and would have said it to anybody \nelse, but Mr. Bucket palpably knows all about it--\"and recent \ncircumstances have brought it on.\"\n\nAs he takes his seat with some difficulty and with an air of pain, \nMr. Bucket draws a little nearer, standing with one of his large \nhands on the library-table.\n\n\"I am not aware, officer,\" Sir Leicester observes; raising his eyes \nto his face, \"whether you wish us to be alone, but that is entirely \nas you please.  If you do, well and good.  If not, Miss Dedlock \nwould be interested--\"\n\n\"Why, Sir Leicester Dedlock, Baronet,\" returns Mr. Bucket with his \nhead persuasively on one side and his forefinger pendant at one ear \nlike an earring, \"we can't be too private just at present.  You \nwill presently see that we can't be too private.  A lady, under the \ncircumstances, and especially in Miss Dedlock's elevated station of \nsociety, can't but be agreeable to me, but speaking without a view \nto myself, I will take the liberty of assuring you that I know we \ncan't be too private.\"\n\n\"That is enough.\"\n\n\"So much so, Sir Leicester Dedlock, Baronet,\" Mr. Bucket resumes, \n\"that I was on the point of asking your permission to turn the key \nin the door.\"\n\n\"By all means.\"  Mr. Bucket skilfully and softly takes that \nprecaution, stooping on his knee for a moment from mere force of \nhabit so to adjust the key in the lock as that no one shall peep in \nfrom the outerside.\n\n\"Sir Leicester Dedlock, Baronet, I mentioned yesterday evening that \nI wanted but a very little to complete this case.  I have now \ncompleted it and collected proof against the person who did this \ncrime.\"\n\n\"Against the soldier?\"\n\n\"No, Sir Leicester Dedlock; not the soldier.\"\n\nSir Leicester looks astounded and inquires, \"Is the man in \ncustody?\"\n\nMr. Bucket tells him, after a pause, \"It was a woman.\"\n\nSir Leicester leans back in his chair, and breathlessly ejaculates, \n\"Good heaven!\"\n\n\"Now, Sir Leicester Dedlock, Baronet,\" Mr. Bucket begins, standing \nover him with one hand spread out on the library-table and the \nforefinger of the other in impressive use, \"it's my duty to prepare \nyou for a train of circumstances that may, and I go so far as to \nsay that will, give you a shock.  But Sir Leicester Dedlock, \nBaronet, you are a gentleman, and I know what a gentleman is and \nwhat a gentleman is capable of.  A gentleman can bear a shock when \nit must come, boldly and steadily.  A gentleman can make up his \nmind to stand up against almost any blow.  Why, take yourself, Sir \nLeicester Dedlock, Baronet.  If there's a blow to be inflicted on \nyou, you naturally think of your family.  You ask yourself, how \nwould all them ancestors of yours, away to Julius Caesar--not to go \nbeyond him at present--have borne that blow; you remember scores of \nthem that would have borne it well; and you bear it well on their \naccounts, and to maintain the family credit.  That's the way you \nargue, and that's the way you act, Sir Leicester Dedlock, Baronet.\"\n\nSir Leicester, leaning back in his chair and grasping the elbows, \nsits looking at him with a stony face.\n\n\"Now, Sir Leicester Dedlock,\" proceeds Mr. Bucket, \"thus preparing \nyou, let me beg of you not to trouble your mind for a moment as to \nanything having come to MY knowledge.  I know so much about so many \ncharacters, high and low, that a piece of information more or less \ndon't signify a straw.  I don't suppose there's a move on the board \nthat would surprise ME, and as to this or that move having taken \nplace, why my knowing it is no odds at all, any possible move \nwhatever (provided it's in a wrong direction) being a probable move \naccording to my experience.  Therefore, what I say to you, Sir \nLeicester Dedlock, Baronet, is, don't you go and let yourself be \nput out of the way because of my knowing anything of your family \naffairs.\"\n\n\"I thank you for your preparation,\" returns Sir Leicester after a \nsilence, without moving hand, foot, or feature, \"which I hope is \nnot necessary; though I give it credit for being well intended.  Be \nso good as to go on.  Also\"--Sir Leicester seems to shrink in the \nshadow of his figure--\"also, to take a seat, if you have no \nobjection.\"\n\nNone at all.  Mr. Bucket brings a chair and diminishes his shadow.  \n\"Now, Sir Leicester Dedlock, Baronet, with this short preface I \ncome to the point.  Lady Dedlock--\"\n\nSir Leicester raises himself in his seat and stares at him \nfiercely.  Mr. Bucket brings the finger into play as an emollient.\n\n\"Lady Dedlock, you see she's universally admired.  That's what her \nladyship is; she's universally admired,\" says Mr. Bucket.\n\n\"I would greatly prefer, officer,\" Sir Leicester returns stiffly, \n\"my Lady's name being entirely omitted from this discussion.\"\n\n\"So would I, Sir Leicester Dedlock, Baronet, but--it's impossible.\"\n\n\"Impossible?\"\n\nMr. Bucket shakes his relentless head.\n\n\"Sir Leicester Dedlock, Baronet, it's altogether impossible.  What \nI have got to say is about her ladyship.  She is the pivot it all \nturns on.\"\n\n\"Officer,\" retorts Sir Leicester with a fiery eye and a quivering \nlip, \"you know your duty.  Do your duty, but be careful not to \noverstep it.  I would not suffer it.  I would not endure it.  You \nbring my Lady's name into this communication upon your \nresponsibility--upon your responsibility.  My Lady's name is not a \nname for common persons to trifle with!\"\n\n\"Sir Leicester Dedlock, Baronet, I say what I must say, and no \nmore.\"\n\n\"I hope it may prove so.  Very well.  Go on.  Go on, sir!\"  \nGlancing at the angry eyes which now avoid him and at the angry \nfigure trembling from head to foot, yet striving to be still, Mr. \nBucket feels his way with his forefinger and in a low voice \nproceeds.\n\n\"Sir Leicester Dedlock, Baronet, it becomes my duty to tell you \nthat the deceased Mr. Tulkinghorn long entertained mistrusts and \nsuspicions of Lady Dedlock.\"\n\n\"If he had dared to breathe them to me, sir--which he never did--I \nwould have killed him myself!\" exclaims Sir Leicester, striking his \nhand upon the table.  But in the very heat and fury of the act he \nstops, fixed by the knowing eyes of Mr. Bucket, whose forefinger is \nslowly going and who, with mingled confidence and patience, shakes \nhis head.\n\n\"Sir Leicester Dedlock, the deceased Mr. Tulkinghorn was deep and \nclose, and what he fully had in his mind in the very beginning I \ncan't quite take upon myself to say.  But I know from his lips that \nhe long ago suspected Lady Dedlock of having discovered, through \nthe sight of some handwriting--in this very house, and when you \nyourself, Sir Leicester Dedlock, were present--the existence, in \ngreat poverty, of a certain person who had been her lover before \nyou courted her and who ought to have been her husband.\"  Mr. \nBucket stops and deliberately repeats, \"Ought to have been her \nhusband, not a doubt about it.  I know from his lips that when that \nperson soon afterwards died, he suspected Lady Dedlock of visiting \nhis wretched lodging and his wretched grave, alone and in secret.  \nI know from my own inquiries and through my eyes and ears that Lady \nDedlock did make such visit in the dress of her own maid, for the \ndeceased Mr. Tulkinghorn employed me to reckon up her ladyship--if \nyou'll excuse my making use of the term we commonly employ--and I \nreckoned her up, so far, completely.  I confronted the maid in the \nchambers in Lincoln's Inn Fields with a witness who had been Lady \nDedlock's guide, and there couldn't be the shadow of a doubt that \nshe had worn the young woman's dress, unknown to her.  Sir \nLeicester Dedlock, Baronet, I did endeavour to pave the way a \nlittle towards these unpleasant disclosures yesterday by saying \nthat very strange things happened even in high families sometimes.  \nAll this, and more, has happened in your own family, and to and \nthrough your own Lady.  It's my belief that the deceased Mr. \nTulkinghorn followed up these inquiries to the hour of his death \nand that he and Lady Dedlock even had bad blood between them upon \nthe matter that very night.  Now, only you put that to Lady \nDedlock, Sir Leicester Dedlock, Baronet, and ask her ladyship \nwhether, even after he had left here, she didn't go down to his \nchambers with the intention of saying something further to him, \ndressed in a loose black mantle with a deep fringe to it.\"\n\nSir Leicester sits like a statue, gazing at the cruel finger that \nis probing the life-blood of his heart.\n\n\"You put that to her ladyship, Sir Leicester Dedlock, Baronet, from \nme, Inspector Bucket of the Detective.  And if her ladyship makes \nany difficulty about admitting of it, you tell her that it's no \nuse, that Inspector Bucket knows it and knows that she passed the \nsoldier as you called him (though he's not in the army now) and \nknows that she knows she passed him on the staircase.  Now, Sir \nLeicester Dedlock, Baronet, why do I relate all this?\"\n\nSir Leicester, who has covered his face with his hands, uttering a \nsingle groan, requests him to pause for a moment.  By and by he \ntakes his hands away, and so preserves his dignity and outward \ncalmness, though there is no more colour in his face than in his \nwhite hair, that Mr. Bucket is a little awed by him.  Something \nfrozen and fixed is upon his manner, over and above its usual shell \nof haughtiness, and Mr. Bucket soon detects an unusual slowness in \nhis speech, with now and then a curious trouble in beginning, which \noccasions him to utter inarticulate sounds.  With such sounds he \nnow breaks silence, soon, however, controlling himself to say that \nhe does not comprehend why a gentleman so faithful and zealous as \nthe late Mr. Tulkinghorn should have communicated to him nothing of \nthis painful, this distressing, this unlooked-for, this \noverwhelming, this incredible intelligence.\n\n\"Again, Sir Leicester Dedlock, Baronet,\" returns Mr. Bucket, \"put \nit to her ladyship to clear that up.  Put it to her ladyship, if \nyou think it right, from Inspector Bucket of the Detective.  You'll \nfind, or I'm much mistaken, that the deceased Mr. Tulkinghorn had \nthe intention of communicating the whole to you as soon as he \nconsidered it ripe, and further, that he had given her ladyship so \nto understand.  Why, he might have been going to reveal it the very \nmorning when I examined the body!  You don't know what I'm going to \nsay and do five minutes from this present time, Sir Leicester \nDedlock, Baronet; and supposing I was to be picked off now, you \nmight wonder why I hadn't done it, don't you see?\"\n\nTrue.  Sir Leicester, avoiding, with some trouble those obtrusive \nsounds, says, \"True.\"  At this juncture a considerable noise of \nvoices is heard in the hall.  Mr. Bucket, after listening, goes to \nthe library-door, softly unlocks and opens it, and listens again.  \nThen he draws in his head and whispers hurriedly but composedly, \n\"Sir Leicester Dedlock, Baronet, this unfortunate family affair has \ntaken air, as I expected it might, the deceased Mr. Tulkinghorn \nbeing cut down so sudden.  The chance to hush it is to let in these \npeople now in a wrangle with your footmen.  Would you mind sitting \nquiet--on the family account--while I reckon 'em up?  And would you \njust throw in a nod when I seem to ask you for it?\"\n\nSir Leicester indistinctly answers, \"Officer.  The best you can, \nthe best you can!\" and Mr. Bucket, with a nod and a sagacious crook \nof the forefinger, slips down into the hall, where the voices \nquickly die away.  He is not long in returning; a few paces ahead \nof Mercury and a brother deity also powdered and in peach-blossomed \nsmalls, who bear between them a chair in which is an incapable old \nman.  Another man and two women come behind.  Directing the \npitching of the chair in an affable and easy manner, Mr. Bucket \ndismisses the Mercuries and locks the door again.  Sir Leicester \nlooks on at this invasion of the sacred precincts with an icy \nstare.\n\n\"Now, perhaps you may know me, ladies and gentlemen,\" says Mr. \nBucket in a confidential voice.  \"I am Inspector Bucket of the \nDetective, I am; and this,\" producing the tip of his convenient \nlittle staff from his breast-pocket, \"is my authority.  Now, you \nwanted to see Sir Leicester Dedlock, Baronet.  Well! You do see \nhim, and mind you, it ain't every one as is admitted to that \nhonour.  Your name, old gentleman, is Smallweed; that's what your \nname is; I know it well.\"\n\n\"Well, and you never heard any harm of it!\" cries Mr. Smallweed in \na shrill loud voice.\n\n\"You don't happen to know why they killed the pig, do you?\" retorts \nMr. Bucket with a steadfast look, but without loss of temper.\n\n\"No!\"\n\n\"Why, they killed him,\" says Mr. Bucket, \"on account of his having \nso much cheek.  Don't YOU get into the same position, because it \nisn't worthy of you.  You ain't in the habit of conversing with a \ndeaf person, are you?\"\n\n\"Yes,\" snarls Mr. Smallweed, \"my wife's deaf.\"\n\n\"That accounts for your pitching your voice so high.  But as she \nain't here; just pitch it an octave or two lower, will you, and \nI'll not only be obliged to you, but it'll do you more credit,\" \nsays Mr. Bucket.  \"This other gentleman is in the preaching line, I \nthink?\"\n\n\"Name of Chadband,\" Mr. Smallweed puts in, speaking henceforth in a \nmuch lower key.\n\n\"Once had a friend and brother serjeant of the same name,\" says Mr. \nBucket, offering his hand, \"and consequently feel a liking for it.  \nMrs. Chadband, no doubt?\"\n\n\"And Mrs. Snagsby,\" Mr. Smallweed introduces.\n\n\"Husband a law-stationer and a friend of my own,\" says Mr. Bucket.  \n\"Love him like a brother!  Now, what's up?\"\n\n\"Do you mean what business have we come upon?\" Mr. Smallweed asks, \na little dashed by the suddenness of this turn.\n\n\"Ah! You know what I mean.  Let us hear what it's all about in \npresence of Sir Leicester Dedlock, Baronet.  Come.\"\n\nMr. Smallweed, beckoning Mr. Chadband, takes a moment's counsel \nwith him in a whisper.  Mr. Chadband, expressing a considerable \namount of oil from the pores of his forehead and the palms of his \nhands, says aloud, \"Yes.  You first!\" and retires to his former \nplace.\n\n\"I was the client and friend of Mr. Tulkinghorn,\" pipes Grandfather \nSmallweed then; \"I did business with him.  I was useful to him, and \nhe was useful to me.  Krook, dead and gone, was my brother-in-law.  \nHe was own brother to a brimstone magpie--leastways Mrs. Smallweed.  \nI come into Krook's property.  I examined all his papers and all \nhis effects.  They was all dug out under my eyes.  There was a \nbundle of letters belonging to a dead and gone lodger as was hid \naway at the back of a shelf in the side of Lady Jane's bed--his \ncat's bed.  He hid all manner of things away, everywheres.  Mr. \nTulkinghorn wanted 'em and got 'em, but I looked 'em over first.  \nI'm a man of business, and I took a squint at 'em.  They was \nletters from the lodger's sweetheart, and she signed Honoria.  Dear \nme, that's not a common name, Honoria, is it?  There's no lady in \nthis house that signs Honoria is there?  Oh, no, I don't think so!  \nOh, no, I don't think so!  And not in the same hand, perhaps?  Oh, \nno, I don't think so!\"\n\nHere Mr. Smallweed, seized with a fit of coughing in the midst of \nhis triumph, breaks off to ejaculate, \"Oh, dear me!  Oh, Lord!  I'm \nshaken all to pieces!\"\n\n\"Now, when you're ready,\" says Mr. Bucket after awaiting his \nrecovery, \"to come to anything that concerns Sir Leicester Dedlock, \nBaronet, here the gentleman sits, you know.\"\n\n\"Haven't I come to it, Mr. Bucket?\" cries Grandfather Smallweed.  \n\"Isn't the gentleman concerned yet?  Not with Captain Hawdon, and \nhis ever affectionate Honoria, and their child into the bargain?  \nCome, then, I want to know where those letters are.  That concerns \nme, if it don't concern Sir Leicester Dedlock.  I will know where \nthey are.  I won't have 'em disappear so quietly.  I handed 'em \nover to my friend and solicitor, Mr. Tulkinghorn, not to anybody \nelse.\"\n\n\"Why, he paid you for them, you know, and handsome too,\" says Mr. \nBucket.\n\n\"I don't care for that.  I want to know who's got 'em.  And I tell \nyou what we want--what we all here want, Mr. Bucket.  We want more \npainstaking and search-making into this murder.  We know where the \ninterest and the motive was, and you have not done enough.  If \nGeorge the vagabond dragoon had any hand in it, he was only an \naccomplice, and was set on.  You know what I mean as well as any \nman.\"\n\n\"Now I tell you what,\" says Mr. Bucket, instantaneously altering \nhis manner, coming close to him, and communicating an extraordinary \nfascination to the forefinger, \"I am damned if I am a-going to have \nmy case spoilt, or interfered with, or anticipated by so much as \nhalf a second of time by any human being in creation.  YOU want \nmore painstaking and search-making!  YOU do?  Do you see this hand, \nand do you think that I don't know the right time to stretch it out \nand put it on the arm that fired that shot?\"\n\nSuch is the dread power of the man, and so terribly evident it is \nthat he makes no idle boast, that Mr. Smallweed begins to \napologize.  Mr. Bucket, dismissing his sudden anger, checks him.\n\n\"The advice I give you is, don't you trouble your head about the \nmurder.  That's my affair.  You keep half an eye on the newspapers, \nand I shouldn't wonder if you was to read something about it before \nlong, if you look sharp.  I know my business, and that's all I've \ngot to say to you on that subject.  Now about those letters.  You \nwant to know who's got 'em.  I don't mind telling you.  I have got \n'em.  Is that the packet?\"\n\nMr. Smallweed looks, with greedy eyes, at the little bundle Mr. \nBucket produces from a mysterious part of his coat, and identifles \nit as the same.\n\n\"What have you got to say next?\" asks Mr. Bucket.  \"Now, don't open \nyour mouth too wide, because you don't look handsome when you do \nit.\"\n\n\"I want five hundred pound.\"\n\n\"No, you don't; you mean fifty,\" says Mr. Bucket humorously.\n\nIt appears, however, that Mr. Smallweed means five hundred.\n\n\"That is, I am deputed by Sir Leicester Dedlock, Baronet, to \nconsider (without admitting or promising anything) this bit of \nbusiness,\" says Mr. Bucket--Sir Leicester mechanically bows his \nhead--\"and you ask me to consider a proposal of five hundred \npounds.  Why, it's an unreasonable proposal!  Two fifty would be \nbad enough, but better than that.  Hadn't you better say two \nfifty?\"\n\nMr. Smallweed is quite clear that he had better not.\n\n\"Then,\" says Mr. Bucket, \"let's hear Mr. Chadband.  Lord!  Many a \ntime I've heard my old fellow-serjeant of that name; and a moderate \nman he was in all respects, as ever I come across!\"\n\nThus invited, Mr. Chadband steps forth, and after a little sleek \nsmiling and a little oil-grinding with the palms of his hands, \ndelivers himself as follows, \"My friends, we are now--Rachael, my \nwife, and I--in the mansions of the rich and great.  Why are we now \nin the mansions of the rich and great, my friends?  Is it because \nwe are invited?  Because we are bidden to feast with them, because \nwe are bidden to rejoice with them, because we are bidden to play \nthe lute with them, because we are bidden to dance with them?  No.  \nThen why are we here, my friends?  Air we in possession of a sinful \nsecret, and do we require corn, and wine, and oil, or what is much \nthe same thing, money, for the keeping thereof?  Probably so, my \nfriends.\"\n\n\"You're a man of business, you are,\" returns Mr. Bucket, very \nattentive, \"and consequently you're going on to mention what the \nnature of your secret is.  You are right.  You couldn't do better.\"\n\n\"Let us then, my brother, in a spirit of love,\" says Mr. Chadband \nwith a cunning eye, \"proceed unto it. Rachael, my wife, advance!\"\n\nMrs. Chadband, more than ready, so advances as to jostle her \nhusband into the background and confronts Mr. Bucket with a hard, \nfrowning smile.\n\n\"Since you want to know what we know,\" says she, \"I'll tell you.  I \nhelped to bring up Miss Hawdon, her ladyship's daughter.  I was in \nthe service of her ladyship's sister, who was very sensitive to the \ndisgrace her ladyship brought upon her, and gave out, even to her \nladyship, that the child was dead--she WAS very nearly so--when she \nwas born.  But she's alive, and I know her.\"  With these words, and \na laugh, and laying a bitter stress on the word \"ladyship,\" Mrs. \nChadband folds her arms and looks implacably at Mr. Bucket.\n\n\"I suppose now,\" returns that officer, \"YOU will he expecting a \ntwenty-pound note or a present of about that figure?\"\n\nMrs. Chadband merely laughs and contemptuously tells him he can \n\"offer\" twenty pence.\n\n\"My friend the law-stationer's good lady, over there,\" says Mr. \nBucket, luring Mrs. Snagsby forward with the finger.  \"What may \nYOUR game be, ma'am?\"\n\nMrs. Snagsby is at first prevented, by tears and lamentations, from \nstating the nature of her game, but by degrees it confusedly comes \nto light that she is a woman overwhelmed with injuries and wrongs, \nwhom Mr. Snagsby has habitually deceived, abandoned, and sought to \nkeep in darkness, and whose chief comfort, under her afflictions, \nhas been the sympathy of the late Mr. Tulkinghorn, who showed so \nmuch commiseration for her on one occasion of his calling in Cook's \nCourt in the absence of her perjured husband that she has of late \nhabitually carried to him all her woes.  Everybody it appears, the \npresent company excepted, has plotted against Mrs. Snagsby's peace.  \nThere is Mr. Guppy, clerk to Kenge and Carboy, who was at first as \nopen as the sun at noon, but who suddenly shut up as close as \nmidnight, under the influence--no doubt--of Mr. Snagsby's suborning \nand tampering.  There is Mr. Weevle, friend of Mr. Guppy, who lived \nmysteriously up a court, owing to the like coherent causes.  There \nwas Krook, deceased; there was Nimrod, deceased; and there was Jo, \ndeceased; and they were \"all in it.\"  In what, Mrs. Snagsby does \nnot with particularity express, but she knows that Jo was Mr. \nSnagsby's son, \"as well as if a trumpet had spoken it,\" and she \nfollowed Mr. Snagsby when he went on his last visit to the boy, and \nif he was not his son why did he go?  The one occupation of her \nlife has been, for some time back, to follow Mr. Snagsby to and \nfro, and up and down, and to piece suspicious circumstances \ntogether--and every circumstance that has happened has been most \nsuspicious; and in this way she has pursued her object of detecting \nand confounding her false husband, night and day.  Thus did it come \nto pass that she brought the Chadbands and Mr. Tulkinghorn \ntogether, and conferred with Mr. Tulkinghorn on the change in Mr. \nGuppy, and helped to turn up the circumstances in which the present \ncompany are interested, casually, by the wayside, being still and \never on the great high road that is to terminate in Mr. Snagsby's \nfull exposure and a matrimonial separation.  All this, Mrs. \nSnagsby, as an injured woman, and the friend of Mrs. Chadband, and \nthe follower of Mr. Chadband, and the mourner of the late Mr. \nTulkinghorn, is here to certify under the seal of confidence, with \nevery possible confusion and involvement possible and impossible, \nhaving no pecuniary motive whatever, no scheme or project but the \none mentioned, and bringing here, and taking everywhere, her own \ndense atmosphere of dust, arising from the ceaseless working of her \nmill of jealousy.\n\nWhile this exordium is in hand--and it takes some time--Mr. Bucket, \nwho has seen through the transparency of Mrs. Snagsby's vinegar at \na glance, confers with his familiar demon and bestows his shrewd \nattention on the Chadbands and Mr. Smallweed.  Sir Leicester \nDedlock remains immovable, with the same icy surface upon him, \nexcept that he once or twice looks towards Mr. Bucket, as relying \non that officer alone of all mankind.\n\n\"Very good,\" says Mr. Bucket.  \"Now I understand you, you know, and \nbeing deputed by Sir Leicester Dedlock, Baronet, to look into this \nlittle matter,\" again Sir Leicester mechanically bows in \nconfirmation of the statement, \"can give it my fair and full \nattention.  Now I won't allude to conspiring to extort money or \nanything of that sort, because we are men and women of the world \nhere, and our object is to make things pleasant.  But I tell you \nwhat I DO wonder at; I am surprised that you should think of making \na noise below in the hall.  It was so opposed to your interests.  \nThat's what I look at.\"\n\n\"We wanted to get in,\" pleads Mr. Smallweed.\n\n\"Why, of course you wanted to get in,\" Mr. Bucket asserts with \ncheerfulness; \"but for a old gentleman at your time of life--what I \ncall truly venerable, mind you!--with his wits sharpened, as I have \nno doubt they are, by the loss of the use of his limbs, which \noccasions all his animation to mount up into his head, not to \nconsider that if he don't keep such a business as the present as \nclose as possible it can't be worth a mag to him, is so curious!  \nYou see your temper got the better of you; that's where you lost \nground,\" says Mr. Bucket in an argumentative and friendly way.\n\n\"I only said I wouldn't go without one of the servants came up to \nSir Leicester Dedlock,\" returns Mr. Smallweed.\n\n\"That's it!  That's where your temper got the better of you. Now, \nyou keep it under another time and you'll make money by it.  Shall \nI ring for them to carry you down?\"\n\n\"When are we to hear more of this?\" Mrs. Chadband sternly demands.\n\n\"Bless your heart for a true woman!  Always curious, your \ndelightful sex is!\" replies Mr. Bucket with gallantry.  \"I shall \nhave the pleasure of giving you a call to-morrow or next day--not \nforgetting Mr. Smallweed and his proposal of two fifty.\"\n\n\"Five hundred!\" exclaims Mr. Smallweed.\n\n\"All right!  Nominally five hundred.\"  Mr. Bucket has his hand on \nthe bell-rope.  \"SHALL I wish you good day for the present on the \npart of myself and the gentleman of the house?\" he asks in an \ninsinuating tone.\n\nNobody having the hardihood to object to his doing so, he does it, \nand the party retire as they came up.  Mr. Bucket follows them to \nthe door, and returning, says with an air of serious business, \"Sir \nLeicester Dedlock, Baronet, it's for you to consider whether or not \nto buy this up.  I should recommend, on the whole, it's being \nbought up myself; and I think it may be bought pretty cheap.  You \nsee, that little pickled cowcumber of a Mrs. Snagsby has been used \nby all sides of the speculation and has done a deal more harm in \nbringing odds and ends together than if she had meant it.  Mr. \nTulkinghorn, deceased, he held all these horses in his hand and \ncould have drove 'em his own way, I haven't a doubt; but he was \nfetched off the box head-foremost, and now they have got their legs \nover the traces, and are all dragging and pulling their own ways.  \nSo it is, and such is life.  The cat's away, and the mice they \nplay; the frost breaks up, and the water runs.  Now, with regard to \nthe party to be apprehended.\"\n\nSir Leicester seems to wake, though his eyes have been wide open, \nand he looks intently at Mr. Bucket as Mr. Bucket refers to his \nwatch.\n\n\"The party to be apprehended is now in this house,\" proceeds Mr. \nBucket, putting up his watch with a steady hand and with rising \nspirits, \"and I'm about to take her into custody in your presence.  \nSir Leicester Dedlock, Baronet, don't you say a word nor yet stir.  \nThere'll be no noise and no disturbance at all.  I'll come back in \nthe course of the evening, if agreeable to you, and endeavour to \nmeet your wishes respecting this unfortunate family matter and the \nnobbiest way of keeping it quiet.  Now, Sir Leicester Dedlock, \nBaronet, don't you be nervous on account of the apprehension at \npresent coming off.  You shall see the whole case clear, from first \nto last.\"\n\nMr. Bucket rings, goes to the door, briefly whispers Mercury, shuts \nthe door, and stands behind it with his arms folded.  After a \nsuspense of a minute or two the door slowly opens and a Frenchwoman \nenters.  Mademoiselle Hortense.\n\nThe moment she is in the room Mr. Bucket claps the door to and puts \nhis back against it.  The suddenness of the noise occasions her to \nturn, and then for the first time she sees Sir Leicester Dedlock in \nhis chair.\n\n\"I ask you pardon,\" she mutters hurriedly.  \"They tell me there was \nno one here.\"\n\nHer step towards the door brings her front to front with Mr. \nBucket.  Suddenly a spasm shoots across her face and she turns \ndeadly pale.\n\n\"This is my lodger, Sir Leicester Dedlock,\" says Mr. Bucket, \nnodding at her.  \"This foreign young woman has been my lodger for \nsome weeks back.\"\n\n\"What do Sir Leicester care for that, you think, my angel?\" returns \nmademoiselle in a jocular strain.\n\n\"Why, my angel,\" returns Mr. Bucket, \"we shall see.\"\n\nMademoiselle Hortense eyes him with a scowl upon her tight face, \nwhich gradually changes into a smile of scorn, \"You are very \nmysterieuse.  Are you drunk?\"\n\n\"Tolerable sober, my angel,\" returns Mr. Bucket.\n\n\"I come from arriving at this so detestable house with your wife.  \nYour wife have left me since some minutes.  They tell me downstairs \nthat your wife is here.  I come here, and your wife is not here.  \nWhat is the intention of this fool's play, say then?\" mademoiselle \ndemands, with her arms composedly crossed, but with something in \nher dark cheek beating like a clock.\n\nMr. Bucket merely shakes the finger at her.\n\n\"Ah, my God, you are an unhappy idiot!\" cries mademoiselle with a \ntoss of her head and a laugh.  \"Leave me to pass downstairs, great \npig.\"  With a stamp of her foot and a menace.\n\n\"Now, mademoiselle,\" says Mr. Bucket in a cool determined way, \"you \ngo and sit down upon that sofy.\"\n\n\"I will not sit down upon nothing,\" she replies with a shower of \nnods.\n\n\"Now, mademoiselle,\" repeats Mr. Bucket, making no demonstration \nexcept with the finger, \"you sit down upon that sofy.\"\n\n\"Why?\"\n\n\"Because I take you into custody on a charge of murder, and you \ndon't need to be told it.  Now, I want to be polite to one of your \nsex and a foreigner if I can.  If I can't, I must be rough, and \nthere's rougher ones outside.  What I am to be depends on you.  So \nI recommend you, as a friend, afore another half a blessed moment \nhas passed over your head, to go and sit down upon that sofy.\"\n\nMademoiselle complies, saying in a concentrated voice while that \nsomething in her cheek beats fast and hard, \"You are a devil.\"\n\n\"Now, you see,\" Mr. Bucket proceeds approvingly, \"you're \ncomfortable and conducting yourself as I should expect a foreign \nyoung woman of your sense to do.  So I'll give you a piece of \nadvice, and it's this, don't you talk too much.  You're not \nexpected to say anything here, and you can't keep too quiet a \ntongue in your head.  In short, the less you PARLAY, the better, \nyou know.\"  Mr. Bucket is very complacent over this French \nexplanation.\n\nMademoiselle, with that tigerish expansion of the mouth and her \nblack eyes darting fire upon him, sits upright on the sofa in a \nrigid state, with her hands clenched--and her feet too, one might \nsuppose--muttering, \"Oh, you Bucket, you are a devil!\"\n\n\"Now, Sir Leicester Dedlock, Baronet,\" says Mr. Bucket, and from \nthis time forth the finger never rests, \"this young woman, my \nlodger, was her ladyship's maid at the time I have mentioned to \nyou; and this young woman, besides being extraordinary vehement and \npassionate against her ladyship after being discharged--\"\n\n\"Lie!\" cries mademoiselle.  \"I discharge myself.\"\n\n\"Now, why don't you take my advice?\" returns Mr. Bucket in an \nimpressive, almost in an imploring, tone.  \"I'm surprised at the \nindiscreetness you commit.  You'll say something that'll be used \nagainst you, you know.  You're sure to come to it.  Never you mind \nwhat I say till it's given in evidence.  It is not addressed to \nyou.\"\n\n\"Discharge, too,\" cries mademoiselle furiously, \"by her ladyship!  \nEh, my faith, a pretty ladyship!  Why, I r-r-r-ruin my character hy \nremaining with a ladyship so infame!\"\n\n\"Upon my soul I wonder at you!\" Mr. Bucket remonstrates.  \"I \nthought the French were a polite nation, I did, really.  Yet to \nhear a female going on like that before Sir Leicester Dedlock, \nBaronet!\"\n\n\"He is a poor abused!\" cries mademoiselle.  \"I spit upon his house, \nupon his name, upon his imbecility,\" all of which she makes the \ncarpet represent.  \"Oh, that he is a great man!  Oh, yes, superb!  \nOh, heaven!  Bah!\"\n\n\"Well, Sir Leicester Dedlock,\" proceeds Mr. Bucket, \"this \nintemperate foreigner also angrily took it into her head that she \nhad established a claim upon Mr. Tulkinghorn, deceased, by \nattending on the occasion I told you of at his chambers, though she \nwas liberally paid for her time and trouble.\"\n\n\"Lie!\" cries mademoiselle.  \"I ref-use his money all togezzer.\"\n\n\"If you WILL PARLAY, you know,\" says Mr. Bucket parenthetically, \n\"you must take the consequences.  Now, whether she became my \nlodger, Sir Leicester Dedlock, with any deliberate intention then \nof doing this deed and blinding me, I give no opinion on; but she \nlived in my house in that capacity at the time that she was \nhovering about the chambers of the deceased Mr. Tulkinghorn with a \nview to a wrangle, and likewise persecuting and half frightening \nthe life out of an unfortunate stationer.\"\n\n\"Lie!\" cries mademoiselle.  \"All lie!\"\n\n\"The murder was commttted, Sir Leicester Dedlock, Baronet, and you \nknow under what circumstances.  Now, I beg of you to follow me \nclose with your attention for a minute or two.  I was sent for, and \nthe case was entrusted to me.  I examined the place, and the body, \nand the papers, and everything.  From information I received (from \na clerk in the same house) I took George into custody as having \nbeen seen hanging about there on the night, and at very nigh the \ntime of the murder, also as having been overheard in high words \nwith the deceased on former occasions--even threatening him, as the \nwitness made out.  If you ask me, Sir Leicester Dedlock, whether \nfrom the first I believed George to be the murderer, I tell you \ncandidly no, but he might be, notwithstanding, and there was enough \nagainst him to make it my duty to take him and get him kept under \nremand.  Now, observe!\"\n\nAs Mr. Bucket bends forward in some excitement--for him--and \ninaugurates what he is going to say with one ghostly beat of his \nforefinger in the air, Mademoiselle Hortense fixes her black eyes \nupon him with a dark frown and sets her dry lips closely and firmly \ntogether.\n\n\"I went home, Sir Leicester Dedlock, Baronet, at night and found \nthis young woman having supper with my wife, Mrs. Bucket.  She had \nmade a mighty show of being fond of Mrs. Bucket from her first \noffering herself as our lodger, but that night she made more than \never--in fact, overdid it.  Likewise she overdid her respect, and \nall that, for the lamented memory of the deceased Mr. Tulkinghorn.  \nBy the living Lord it flashed upon me, as I sat opposite to her at \nthe table and saw her with a knife in her hand, that she had done \nit!\"\n\nMademoiselle is hardly audible in straining through her teeth and \nlips the words, \"You are a devil.\"\n\n\"Now where,\" pursues Mr. Bucket, \"had she been on the night of the \nmurder?  She had been to the theayter.  (She really was there, I \nhave since found, both before the deed and after it.)  I knew I had \nan artful customer to deal with and that proof would be very \ndifficult; and I laid a trap for her--such a trap as I never laid \nyet, and such a venture as I never made yet.  I worked it out in my \nmind while I was talking to her at supper.  When I went upstairs to \nbed, our house being small and this young woman's ears sharp, I \nstuffed the sheet into Mrs. Bucket's mouth that she shouldn't say a \nword of surprise and told her all about it.  My dear, don't you \ngive your mind to that again, or I shall link your feet together at \nthe ankles.\"  Mr. Bucket, breaking off, has made a noiseless \ndescent upon mademoiselle and laid his heavy hand upon her \nshoulder.\n\n\"What is the matter with you now?\" she asks him.\n\n\"Don't you think any more,\" returns Mr. Bucket with admonitory \nfinger, \"of throwing yourself out of window.  That's what's the \nmatter with me.  Come!  Just take my arm.  You needn't get up; I'll \nsit down by you.  Now take my arm, will you?  I'm a married man, \nyou know; you're acquainted with my wife.  Just take my arm.\"\n\nVaiuly endeavouring to moisten those dry lips, with a painful sound \nshe struggles with herself and complies.\n\n\"Now we're all right again.  Sir Leicester Dedlock, Baronet, this \ncase could never have been the case it is but for Mrs. Bucket, who \nis a woman in fifty thousand--in a hundred and fifty thousand!  To \nthrow this young woman off her guard, I have never set foot in our \nhouse since, though I've communicated with Mrs. Bucket in the \nbaker's loaves and in the milk as often as required.  My whispered \nwords to Mrs. Bucket when she had the sheet in her mouth were, 'My \ndear, can you throw her off continually with natural accounts of my \nsuspicions against George, and this, and that, and t'other?  Can \nyou do without rest and keep watch upon her night and day?  Can you \nundertake to say, \"She shall do nothing without my knowledge, she \nshall be my prisoner without suspecting it, she shall no more \nescape from me than from death, and her life shall be my life, and \nher soul my soul, till I have got her, if she did this murder?\"'   \nMrs. Bucket says to me, as well as she could speak on account of \nthe sheet, 'Bucket, I can!'  And she has acted up to it glorious!\"\n\n\"Lies!\" mademoiselle interposes.  \"All lies, my friend!\"\n\n\"Sir Leicester Dedlock, Baronet, how did my calculations come out \nunder these circumstances?  When I calculated that this impetuous \nyoung woman would overdo it in new directions, was I wrong or \nright?  I was right.  What does she try to do?  Don't let it give \nyou a turn?  To throw the murder on her ladyship.\"\n\nSir Leicester rises from his chair and staggers down again.\n\n\"And she got encouragement in it from hearing that I was always \nhere, which was done a-purpose.  Now, open that pocket-book of \nmine, Sir Leicester Dedlock, if I may take the liberty of throwing \nit towards you, and look at the letters sent to me, each with the \ntwo words 'Lady Dedlock' in it.  Open the one directed to yourself, \nwhich I stopped this very morning, and read the three words 'Lady \nDedlock, Murderess' in it.  These letters have been falling about \nlike a shower of lady-birds.  What do you say now to Mrs. Bucket, \nfrom her spy-place having seen them all 'written by this young \nwoman?  What do you say to Mrs. Bucket having, within this half-\nhour, secured the corresponding ink and paper, fellow half-sheets \nand what not?  What do you say to Mrs. Bucket having watched the \nposting of 'em every one by this young woman, Sir Leicester \nDedlock, Baronet?\"  Mr. Bucket asks, triumphant in his admiration \nof his lady's genius.\n\nTwo things are especially observable as Mr. Bucket proceeds to a \nconclusion.  First, that he seems imperceptibly to establish a \ndreadful right of property in mademoiselle.  Secondly, that the \nvery atmosphere she breathes seems to narrow and contract about her \nas if a close net or a pall were being drawn nearer and yet nearer \naround her breathless figure.\n\n\"There is no doubt that her ladyship was on the spot at the \neventful period,\" says Mr. Bucket, \"and my foreign friend here saw \nher, I believe, from the upper part of the staircase.  Her ladyship \nand George and my foreign friend were all pretty close on one \nanother's heels.  But that don't signify any more, so I'll not go \ninto it.  I found the wadding of the pistol with which the deceased \nMr. Tulkinghorn was shot.  It was a bit of the printed description \nof your house at Chesney Wold.  Not much in that, you'll say, Sir \nLeicester Dedlock, Baronet.  No.  But when my foreign friend here \nis so thoroughly off her guard as to think it a safe time to tear \nup the rest of that leaf, and when Mrs. Bucket puts the pieces \ntogether and finds the wadding wanting, it begins to look like \nQueer Street.\"\n\n\"These are very long lies,\" mademoiselle interposes.  \"You prose \ngreat deal.  Is it that you have almost all finished, or are you \nspeaking always?\"\n\n\"Sir Leicester Dedlock, Baronet,\" proceeds Mr. Bucket, who delights \nin a full title and does violence to himself when he dispenses with \nany fragment of it, \"the last point in the case which I am now \ngoing to mention shows the necessity of patience in our business, \nand never doing a thing in a hurry.  I watched this young woman \nyesterday without her knowledge when she was looking at the \nfuneral, in company with my wife, who planned to take her there; \nand I had so much to convict her, and I saw such an expression in \nher face, and my mind so rose against her malice towards her \nladyship, and the time was altogether such a time for bringing down \nwhat you may call retribution upon her, that if I had been a \nyounger hand with less experience, I should have taken her, \ncertain.  Equally, last night, when her ladyship, as is so \nuniversally admired I am sure, come home looking--why, Lord, a man \nmight almost say like Venus rising from the ocean--it was so \nunpleasant and inconsistent to think of her being charged with a \nmurder of which she was innocent that I felt quite to want to put \nan end to the job.  What should I have lost?  Sir Leicester \nDedlock, Baronet, I should have lost the weapon.  My prisoner here \nproposed to Mrs. Bucket, after the departure of the funeral, that \nthey should go per bus a little ways into the country and take tea \nat a very decent house of entertainment.  Now, near that house of \nentertainment there's a piece of water.  At tea, my prisoner got up \nto fetch her pocket handkercher from the bedroom where the bonnets \nwas; she was rather a long time gone and came back a little out of \nwind.  As soon as they came home this was reported to me by Mrs. \nBucket, along with her observations and suspicions.  I had the \npiece of water dragged by moonlight, in presence of a couple of our \nmen, and the pocket pistol was brought up before it had been there \nhalf-a-dozen hours.  Now, my dear, put your arm a little further \nthrough mine, and hold it steady, and I shan't hurt you!\"\n\nIn a trice Mr. Bucket snaps a handcuff on her wrist.  \"That's one,\" \nsays Mr. Bucket.  \"Now the other, darling.  Two, and all told!\"\n\nHe rises; she rises too.  \"Where,\" she asks him, darkening her \nlarge eyes until their drooping lids almost conceal them--and yet \nthey stare, \"where is your false, your treacherous, and cursed \nwife?\"\n\n\"She's gone forrard to the Police Office,\" returns Mr. Bucket.  \n\"You'll see her there, my dear.\"\n\n\"I would like to kiss her!\" exclaims Mademoiselle Hortense, panting \ntigress-like.\n\n\"You'd bite her, I suspect,\" says Mr. Bucket.\n\n\"I would!\" making her eyes very large.  \"I would love to tear her \nlimb from limb.\"\n\n\"Bless you, darling,\" says Mr. Bucket with the greatest composure, \n\"I'm fully prepared to hear that.  Your sex have such a surprising \nanimosity against one another when you do differ.  You don't mind \nme half so much, do you?\"\n\n\"No.  Though you are a devil still.\"\n\n\"Angel and devil by turns, eh?\" cries Mr. Bucket.  \"But I am in my \nregular employment, you must consider.  Let me put your shawl tidy.  \nI've been lady's maid to a good many before now.  Anything wanting \nto the bonnet?  There's a cab at the door.\"\n\nMademoiselle Hortense, casting an indignant eye at the glass, \nshakes herself perfectly neat in one shake and looks, to do her \njustice, uncommonly genteel.\n\n\"Listen then, my angel,\" says she after several sarcastic nods.  \n\"You are very spiritual.  But can you restore him back to life?\"\n\nMr. Bucket answers, \"Not exactly.\"\n\n\"That is droll.  Listen yet one time.  You are very spiritual.  Can \nyou make a honourahle lady of her?\"\n\n\"Don't be so malicious,\" says Mr. Bucket.\n\n\"Or a haughty gentleman of HIM?\" cries mademoiselle, referring to \nSir Leicester with ineffable disdain.  \"Eh!  Oh, then regard him!  \nThe poor infant!  Ha! Ha! Ha!\"\n\n\"Come, come, why this is worse PARLAYING than the other,\" says Mr. \nBucket.  \"Come along!\"\n\n\"You cannot do these things?  Then you can do as you please with \nme.  It is but the death, it is all the same.  Let us go, my angel.  \nAdieu, you old man, grey.  I pity you, and I despise you!\"\n\nWith these last words she snaps her teeth together as if her mouth \nclosed with a spring.  It is impossible to describe how Mr. Bucket \ngets her out, but he accomplishes that feat in a manner so peculiar \nto himself, enfolding and pervading her like a cloud, and hovering \naway with her as if he were a homely Jupiter and she the object of \nhis affections.\n\nSir Leicester, left alone, remains in the same attitude, as though \nhe were still listening and his attention were still occupied.  At \nlength he gazes round the empty room, and finding it deserted, \nrises unsteadily to his feet, pushes back his chair, and walks a \nfew steps, supporting himself by the table.  Then he stops, and \nwith more of those inarticulate sounds, lifts up his eyes and seems \nto stare at something.\n\nHeaven knows what he sees.  The green, green woods of Chesney Wold, \nthe noble house, the pictures of his forefathers, strangers \ndefacing them, officers of police coarsely handling his most \nprecious heirlooms, thousands of fingers pointing at him, thousands \nof faces sneering at him.  But if such shadows flit before him to \nhis bewilderment, there is one other shadow which he can name with \nsomething like distinctness even yet and to which alone he \naddresses his tearing of his white hair and his extended arms.\n\nIt is she in association with whom, saving that she has been for \nyears a main fibre of the root of his dignity and pride, he has \nnever had a selfish thought.  It is she whom he has loved, admired, \nhonoured, and set up for the world to respect.  It is she who, at \nthe core of all the constrained formalities and conventionalities \nof his life, has been a stock of living tenderness and love, \nsusceptible as nothing else is of being struck with the agony he \nfeels.  He sees her, almost to the exclusion of himself, and cannot \nbear to look upon her cast down from the high place she has graced \nso well.\n\nAnd even to the point of his sinking on the ground, oblivious of \nhis suffering, he can yet pronounce her name with something like \ndistinctness in the midst of those intrusive sounds, and in a tone \nof mourning and compassion rather than reproach.\n\n\n\nCHAPTER LV\n\nFlight\n\n\nInspector Bucket of the Detective has not yet struck his great \nblow, as just now chronicled, but is yet refreshing himself with \nsleep preparatory to his field-day, when through the night and \nalong the freezing wintry roads a chaise and pair comes out of \nLincolnshire, making its way towards London.\n\nRailroads shall soon traverse all this country, and with a rattle \nand a glare the engine and train shall shoot like a meteor over the \nwide night-landscape, turning the moon paler; but as yet such \nthings are non-existent in these parts, though not wholly \nunexpected.  Preparations are afoot, measurements are made, ground \nis staked out.  Bridges are begun, and their not yet united piers \ndesolately look at one another over roads and streams like brick \nand mortar couples with an obstacle to their union; fragments of \nembankments are thrown up and left as precipices with torrents of \nrusty carts and barrows tumbling over them; tripods of tall poles \nappear on hilltops, where there are rumours of tunnels; everything \nlooks chaotic and abandoned in full hopelessness.  Along the \nfreezing roads, and through the night, the post-chaise makes its \nway without a railroad on its mind.\n\nMrs. Rouncewell, so many years housekeeper at Chesney Wold, sits \nwithin the chaise; and by her side sits Mrs. Bagnet with her grey \ncloak and umbrella.  The old girl would prefer the bar in front, as \nbeing exposed to the weather and a primitive sort of perch more in \naccordance with her usual course of travelling, but Mrs. Rouncewell \nis too thoughtful of her comfort to admit of her proposing it.  The \nold lady cannot make enough of the old girl.  She sits, in her \nstately manner, holding her hand, and regardless of its roughness, \nputs it often to her lips.  \"You are a mother, my dear soul,\" says \nshe many times, \"and you found out my George's mother!\"\n\n\"Why, George,\" returns Mrs. Bagnet, \"was always free with me, \nma'am, and when he said at our house to my Woolwich that of all the \nthings my Woolwich could have to think of when he grew to be a man, \nthe comfortablest would be that he had never brought a sorrowful \nline into his mother's face or turned a hair of her head grey, then \nI felt sure, from his way, that something fresh had brought his own \nmother into his mind.  I had often known him say to me, in past \ntimes, that he had behaved bad to her.\"\n\n\"Never, my dear!\" returns Mrs. Rouncewell, bursting into tears.  \n\"My blessing on him, never!  He was always fond of me, and loving \nto me, was my George!  But he had a bold spirit, and he ran a \nlittle wild and went for a soldier.  And I know he waited at first, \nin letting us know about himself, till he should rise to be an \nofficer; and when he didn't rise, I know he considered himself \nbeneath us, and wouldn't be a disgrace to us.  For he had a lion \nheart, had my George, always from a baby!\"\n\nThe old lady's hands stray about her as of yore, while she recalls, \nall in a tremble, what a likely lad, what a fine lad, what a gay \ngood-humoured clever lad he was; how they all took to him down at \nChesney Wold; how Sir Leicester took to him when he was a young \ngentleman; how the dogs took to him; how even the people who had \nbeen angry with him forgave him the moment he was gone, poor boy.  \nAnd now to see him after all, and in a prison too!  And the broad \nstomacher heaves, and the quaint upright old-fashioned figure bends \nunder its load of affectionate distress.\n\nMrs. Bagnet, with the instinctive skill of a good warm heart, \nleaves the old housekeeper to her emotions for a little while--not \nwithout passing the back of her hand across her own motherly eyes--\nand presently chirps up in her cheery manner, \"So I says to George \nwhen I goes to call him in to tea (he pretended to be smoking his \npipe outside), 'What ails you this afternoon, George, for gracious \nsake?  I have seen all sorts, and I have seen you pretty often in \nseason and out of season, abroad and at home, and I never see you \nso melancholy penitent.'  'Why, Mrs. Bagnet,' says George, 'it's \nbecause I AM melancholy and penitent both, this afternoon, that you \nsee me so.'  'What have you done, old fellow?' I says.  'Why, Mrs. \nBagnet,' says George, shaking his head, 'what I have done has been \ndone this many a long year, and is best not tried to be undone now.  \nIf I ever get to heaven it won't be for being a good son to a \nwidowed mother; I say no more.'  Now, ma'am, when George says to me \nthat it's best not tried to be undone now, I have my thoughts as I \nhave often had before, and I draw it out of George how he comes to \nhave such things on him that afternoon.  Then George tells me that \nhe has seen by chance, at the lawyer's office, a fine old lady that \nhas brought his mother plain before him, and he runs on about that \nold lady till he quite forgets himself and paints her picture to me \nas she used to be, years upon years back.  So I says to George when \nhe has done, who is this old lady he has seen?  And George tells me \nit's Mrs. Rouncewell, housekeeper for more than half a century to \nthe Dedlock family down at Chesney Wold in Lincolnshire.  George \nhas frequently told me before that he's a Lincolnshire man, and I \nsays to my old Lignum that night, 'Lignum, that's his mother for \nfive and for-ty pound!'\"\n\nAll this Mrs. Bagnet now relates for the twentieth time at least \nwithin the last four hours.  Trilling it out like a kind of bird, \nwith a pretty high note, that it may be audible to the old lady \nabove the hum of the wheels.\n\n\"Bless you, and thank you,\" says Mrs. Rouncewell.  \"Bless you, and \nthank you, my worthy soul!\"\n\n\"Dear heart!\" cries Mrs. Bagnet in the most natural manner.  \"No \nthanks to me, I am sure.  Thanks to yourself, ma'am, for being so \nready to pay 'em!  And mind once more, ma'am, what you had best do \non finding George to be your own son is to make him--for your sake\n--have every sort of help to put himself in the right and clear \nhimself of a charge of which he is as innocent as you or me.  It \nwon't do to have truth and justice on his side; he must have law \nand lawyers,\" exclaims the old girl, apparently persuaded that the \nlatter form a separate establishment and have dissolved partnership \nwith truth and justice for ever and a day.\n\n\"He shall have,\" says Mrs. Rouncewell, \"all the help that can be \ngot for him in the world, my dear.  I will spend all I have, and \nthankfully, to procure it.  Sir Leicester will do his best, the \nwhole family will do their best.  I--I know something, my dear; and \nwill make my own appeal, as his mother parted from him all these \nyears, and finding him in a jail at last.\"\n\nThe extreme disquietude of the old housekeeper's manner in saying \nthis, her broken words, and her wringing of her hands make a \npowerful impression on Mrs. Bagnet and would astonish her but that \nshe refers them all to her sorrow for her son's condition.  And yet \nMrs. Bagnet wonders too why Mrs. Rouncewell should murmur so \ndistractedly, \"My Lady, my Lady, my Lady!\" over and over again.\n\nThe frosty night wears away, and the dawn breaks, and the post-\nchaise comes rolling on through the early mist like the ghost of a \nchaise departed.  It has plenty of spectral company in ghosts of \ntrees and hedges, slowly vanishing and giving place to the \nrealities of day.  London reached, the travellers alight, the old \nhousekeeper in great tribulation and confusion, Mrs. Bagnet quite \nfresh and collected--as she would be if her next point, with no new \nequipage and outfit, were the Cape of Good Hope, the Island of \nAscension, Hong Kong, or any other military station.\n\nBut when they set out for the prison where the trooper is confined, \nthe old lady has managed to draw about her, with her lavender-\ncoloured dress, much of the staid calmness which is its usual \naccompaniment.  A wonderfully grave, precise, and handsome piece of \nold china she looks, though her heart beats fast and her stomacher \nis ruffled more than even the remembrance of this wayward son has \nruffled it these many years.\n\nApproaching the cell, they find the door opening and a warder in \nthe act of coming out.  The old girl promptly makes a sign of \nentreaty to him to say nothing; assenting with a nod, he suffers \nthem to enter as he shuts the door.\n\nSo George, who is writing at his table, supposing himself to be \nalone, does not raise his eyes, but remains absorbed.  The old \nhousekeeper looks at him, and those wandering hands of hers are \nquite enough for Mrs. Bagnet's confirmation, even if she could see \nthe mother and the son together, knowing what she knows, and doubt \ntheir relationship.\n\nNot a rustle of the housekeeper's dress, not a gesture, not a word \nbetrays her.  She stands looking at him as he writes on, all \nunconscious, and only her fluttering hands give utterance to her \nemotions.  But they are very eloquent, very, very eloquent.  Mrs. \nBagnet understands them.  They speak of gratitude, of joy, of \ngrief, of hope; of inextinguishable affection, cherished with no \nreturn since this stalwart man was a stripling; of a better son \nloved less, and this son loved so fondly and so proudly; and they \nspeak in such touching language that Mrs. Bagnet's eyes brim up \nwith tears and they run glistening down her sun-brown face.\n\n\"George Rouncewell!  Oh, my dear child, turn and look at me!\"\n\nThe trooper starts up, clasps his mother round the neck, and falls \ndown on his knees before her.  Whether in a late repentance, \nwhether in the first association that comes back upon him, he puts \nhis hands together as a child does when it says its prayers, and \nraising them towards her breast, bows down his head, and cries.\n\n\"My George, my dearest son!  Always my favourite, and my favourite \nstill, where have you been these cruel years and years?  Grown such \na man too, grown such a fine strong man.  Grown so like what I knew \nhe must be, if it pleased God he was alive!\"\n\nShe can ask, and he can answer, nothing connected for a time.  All \nthat time the old girl, turned away, leans one arm against the \nwhitened wall, leans her honest forehead upon it, wipes her eyes \nwith her serviceable grey cloak, and quite enjoys herself like the \nbest of old girls as she is.\n\n\"Mother,\" says the trooper when they are more composed, \"forgive me \nfirst of all, for I know my need of it.\"\n\nForgive him!  She does it with all her heart and soul.  She always \nhas done it.  She tells him how she has had it written in her will, \nthese many years, that he was her beloved son George.  She has \nnever believed any ill of him, never.  If she had died without this \nhappiness--and she is an old woman now and can't look to live very \nlong--she would have blessed him with her last breath, if she had \nhad her senses, as her beloved son George.\n\n\"Mother, I have been an undutiful trouble to you, and I have my \nreward; but of late years I have had a kind of glimmering of a \npurpose in me too.  When I left home I didn't care much, mother--I \nam afraid not a great deal--for leaving; and went away and 'listed, \nharum-scarum, making believe to think that I cared for nobody, no \nnot I, and that nobody cared for me.\"\n\nThe trooper has dried his eyes and put away his handkerchief, but \nthere is an extraordinary contrast between his habitual manner of \nexpressing himself and carrying himself and the softened tone in \nwhich he speaks, interrupted occasionally by a half-stifled sob.\n\n\"So I wrote a line home, mother, as you too well know, to say I had \n'listed under another name, and I went abroad.  Abroad, at one time \nI thought I would write home next year, when I might be better off; \nand when that year was out, I thought I would write home next year, \nwhen I might be better off; and when that year was out again, \nperhaps I didn't think much about it.  So on, from year to year, \nthrough a service of ten years, till I began to get older, and to \nask myself why should I ever write.\"\n\n\"I don't find any fault, child--but not to ease my mind, George?  \nNot a word to your loving mother, who was growing older too?\"\n\nThis almost overturns the trooper afresh, but he sets himself up \nwith a great, rough, sounding clearance of his throat.\n\n\"Heaven forgive me, mother, but I thought there would be small \nconsolation then in hearing anything about me.  There were you, \nrespected and esteemed.  There was my brother, as I read in chance \nNorth Country papers now and then, rising to be prosperous and \nfamous.  There was I a dragoon, roving, unsettled, not self-made \nlike him, but self-unmade--all my earlier advantages thrown away, \nall my little learning unlearnt, nothing picked up but what \nunfitted me for most things that I could think of.  What business \nhad I to make myself known?  After letting all that time go by me, \nwhat good could come of it?  The worst was past with you, mother.  \nI knew by that time (being a man) how you had mourned for me, and \nwept for me, and prayed for me; and the pain was over, or was \nsoftened down, and I was better in your mind as it was.\"\n\nThe old lady sorrowfully shakes her head, and taking one of his \npowerful hands, lays it lovingly upon her shoulder.\n\n\"No, I don't say that it was so, mother, but that I made it out to \nbe so.  I said just now, what good could come of it?  Well, my dear \nmother, some good might have come of it to myself--and there was \nthe meanness of it.  You would have sought me out; you would have \npurchased my discharge; you would have taken me down to Chesney \nWold; you would have brought me and my brother and my brother's \nfamily together; you would all have considered anxiously how to do \nsomething for me and set me up as a respectable civilian.  But how \ncould any of you feel sure of me when I couldn't so much as feel \nsure of myself?  How could you help regarding as an incumbrance and \na discredit to you an idle dragooning chap who was an incumbrance \nand a discredit to himself, excepting under discipline?  How could \nI look my brother's children in the face and pretend to set them an \nexample--I, the vagabond boy who had run away from home and been \nthe grief and unhappiness of my mother's life?  'No, George.'  Such \nwere my words, mother, when I passed this in review before me: 'You \nhave made your bed.  Now, lie upon it.'\"\n\nMrs. Rouncewell, drawing up her stately form, shakes her head at \nthe old girl with a swelling pride upon her, as much as to say, \"I \ntold you so!\"  The old girl relieves her feelings and testifies her \ninterest in the conversation by giving the trooper a great poke \nbetween the shoulders with her umbrella; this action she afterwards \nrepeats, at intervals, in a species of affectionate lunacy, never \nfailing, after the administration of each of these remonstrances, \nto resort to the whitened wall and the grey cloak again.\n\n\"This was the way I brought myself to think, mother, that my best \namends was to lie upon that bed I had made, and die upon it.  And I \nshould have done it (though I have been to see you more than once \ndown at Chesney Wold, when you little thought of me) but for my old \ncomrade's wife here, who I find has been too many for me.  But I \nthank her for it.  I thank you for it, Mrs. Bagnet, with all my \nheart and might.\"\n\nTo which Mrs. Bagnet responds with two pokes.\n\nAnd now the old lady impresses upon her son George, her own dear \nrecovered boy, her joy and pride, the light of her eyes, the happy \nclose of her life, and every fond name she can think of, that he \nmust be governed by the best advice obtainable by money and \ninfluence, that he must yield up his case to the greatest lawyers \nthat can be got, that he must act in this serious plight as he \nshall be advised to act and must not be self-willed, however right, \nbut must promise to think only of his poor old mother's anxiety and \nsuffering until he is released, or he will break her heart.\n\n\"Mother, 'tis little enough to consent to,\" returns the trooper, \nstopping her with a kiss; \"tell me what I shall do, and I'll make a \nlate beginning and do it.  Mrs. Bagnet, you'll take care of my \nmother, I know?\"\n\nA very hard poke from the old girl's umbrella.\n\n\"If you'll bring her acquainted with Mr. Jarndyce and Miss \nSummerson, she will find them of her way of thinking, and they will \ngive her the best advice and assistance.\"\n\n\"And, George,\" says the old lady, \"we must send with all haste for \nyour brother.  He is a sensible sound man as they tell me--out in \nthe world beyond Chesney Wold, my dear, though I don't know much of \nit myself--and will be of great service.\"\n\n\"Mother,\" returns the trooper, \"is it too soon to ask a favour?\"\n\n\"Surely not, my dear.\"\n\n\"Then grant me this one great favour.  Don't let my brother know.\"\n\n\"Not know what, my dear?\"\n\n\"Not know of me.  In fact, mother, I can't bear it; I can't make up \nmy mmd to it.  He has proved himself so different from me and has \ndone so much to raise himself while I've been soldiering that I \nhaven't brass enough in my composition to see him in this place and \nunder this charge.  How could a man like him be expected to have \nany pleasure in such a discovery?  It's impossible.  No, keep my \nsecret from him, mother; do me a greater kindness than I deserve \nand keep my secret from my brother, of all men.\"\n\n\"But not always, dear George?\"\n\n\"Why, mother, perhaps not for good and all--though I may come to \nask that too--but keep it now, I do entreat you.  If it's ever \nbroke to him that his rip of a brother has turned up, I could \nwish,\" says the trooper, shaking his head very doubtfully, \"to \nbreak it myself and be governed as to advancing or retreating by \nthe way in which he seems to take it.\"\n\nAs he evidently has a rooted feeling on this point, and as the \ndepth of it is recognized in Mrs. Bagnet's face, his mother yields \nher implicit assent to what he asks.  For this he thanks her \nkindly.\n\n\"In all other respects, my dear mother, I'll be as tractable and \nobedient as you can wish; on this one alone, I stand out.  So now I \nam ready even for the lawyers.  I have been drawing up,\" he glances \nat his writing on the table, \"an exact account of what I knew of \nthe deceased and how I came to be involved in this unfortunate \naffair.  It's entered, plain and regular, like an orderly-book; not \na word in it but what's wanted for the facts.  I did intend to read \nit, straight on end, whensoever I was called upon to say anything \nin my defence.  I hope I may be let to do it still; but I have no \nlonger a will of my own in this case, and whatever is said or done, \nI give my promise not to have any.\"\n\nMatters being brought to this so far satisfactory pass, and time \nbeing on the wane, Mrs. Bagnet proposes a departure.  Again and \nagain the old lady hangs upon her son's neck, and again and again \nthe trooper holds her to his broad chest.\n\n\"Where are you going to take my mother, Mrs. Bagnet?\"\n\n\"I am going to the town house, my dear, the family house.  I have \nsome business there that must be looked to directly,\" Mrs. \nRouncewell answers.\n\n\"Will you see my mother safe there in a coach, Mrs. Bagnet?  But of \ncourse I know you will.  Why should I ask it!\"\n\nWhy indeed, Mrs. Bagnet expresses with the umbrella.\n\n\"Take her, my old friend, and take my gratitude along with you.  \nKisses to Quebec and Malta, love to my godson, a hearty shake of \nthe hand to Lignum, and this for yourself, and I wish it was ten \nthousand pound in gold, my dear!\"  So saying, the trooper puts his \nlips to the old girl's tanned forehead, and the door shuts upon him \nin his cell.\n\nNo entreaties on the part of the good old housekeeper will induce \nMrs. Bagnet to retain the coach for her own conveyance home.  \nJumping out cheerfully at the door of the Dedlock mansion and \nhanding Mrs. Rouncewell up the steps, the old girl shakes hands and \ntrudges off, arriving soon afterwards in the bosom of the Bagnet \nfamily and falling to washing the greens as if nothing had \nhappened.\n\nMy Lady is in that room in which she held her last conference with \nthe murdered man, and is sitting where she sat that night, and is \nlooking at the spot where he stood upon the hearth studying her so \nleisurely, when a tap comes at the door.  Who is it?  Mrs. \nRouncewell.  What has brought Mrs. Rouncewell to town so \nunexpectedly?\n\n\"Trouble, my Lady.  Sad trouble.  Oh, my Lady, may I beg a word \nwith you?\"\n\nWhat new occurrence is it that makes this tranquil old woman \ntremble so?  Far happier than her Lady, as her Lady has often \nthought, why does she falter in this manner and look at her with \nsuch strange mistrust?\n\n\"What is the matter?  Sit down and take your breath.\"\n\n\"Oh, my Lady, my Lady.  I have found my son--my youngest, who went \naway for a soldier so long ago.  And he is in prison.\"\n\n\"For debt?\"\n\n\"Oh, no, my Lady; I would have paid any debt, and joyful.\"\n\n\"For what is he in prison then?\"\n\n\"Charged with a murder, my Lady, of which he is as innocent as--as \nI am.  Accused of the murder of Mr. Tulkinghorn.\"\n\nWhat does she mean by this look and this imploring gesture?  Why \ndoes she come so close?  What is the letter that she holds?\n\n\"Lady Dedlock, my dear Lady, my good Lady, my kind Lady!  You must \nhave a heart to feel for me, you must have a heart to forgive me.  \nI was in this family before you were born.  I am devoted to it.  \nBut think of my dear son wrongfully accused.\"\n\n\"I do not accuse him.\"\n\n\"No, my Lady, no.  But others do, and he is in prison and in \ndanger.  Oh, Lady Dedlock, if you can say but a word to help to \nclear him, say it!\"\n\nWhat delusion can this be?  What power does she suppose is in the \nperson she petitions to avert this unjust suspicion, if it be \nunjust?  Her Lady's handsome eyes regard her with astonishment, \nalmost with fear.\n\n\"My Lady, I came away last night from Chesney Wold to find my son \nin my old age, and the step upon the Ghost's Walk was so constant \nand so solemn that I never heard the like in all these years.  \nNight after night, as it has fallen dark, the sound has echoed \nthrough your rooms, but last night it was awfullest.  And as it \nfell dark last night, my Lady, I got this letter.\"\n\n\"What letter is it?\"\n\n\"Hush!  Hush!\"  The housekeeper looks round and answers in a \nfrightened whisper, \"My Lady, I have not breathed a word of it, I \ndon't believe what's written in it, I know it can't be true, I am \nsure and certain that it is not true.  But my son is in danger, and \nyou must have a heart to pity me.  If you know of anything that is \nnot known to others, if you have any suspicion, if you have any \nclue at all, and any reason for keeping it in your own breast, oh, \nmy dear Lady, think of me, and conquer that reason, and let it be \nknown!  This is the most I consider possible.  I know you are not a \nhard lady, but you go your own way always without help, and you are \nnot familiar with your friends; and all who admire you--and all do\n--as a beautiful and elegant lady, know you to be one far away from \nthemselves who can't be approached close.  My Lady, you may have \nsome proud or angry reasons for disdaining to utter something that \nyou know; if so, pray, oh, pray, think of a faithful servant whose \nwhole life has been passed in this family which she dearly loves, \nand relent, and help to clear my son!  My Lady, my good Lady,\" the \nold housekeeper pleads with genuine simplicity, \"I am so humble in \nmy place and you are by nature so high and distant that you may not \nthink what I feel for my child, but I feel so much that I have come \nhere to make so bold as to beg and pray you not to be scornful of \nus if you can do us any right or justice at this fearful time!\"\n\nLady Dedlock raises her without one word, until she takes the \nletter from her hand.\n\n\"Am I to read this?\"\n\n\"When I am gone, my Lady, if you please, and then remembering the \nmost that I consider possible.\"\n\n\"I know of nothing I can do.  I know of nothing I reserve that can \naffect your son.  I have never accused him.\"\n\n\"My Lady, you may pity him the more under a false accusation after \nreading the letter.\"\n\nThe old housekeeper leaves her with the letter in her hand.  In \ntruth she is not a hard lady naturally, and the time has been when \nthe sight of the venerable figure suing to her with such strong \nearnestness would have moved her to great compassion.  But so long \naccustomed to suppress emotion and keep down reality, so long \nschooled for her own purposes in that destructive school which \nshuts up the natural feelings of the heart like flies in amber and \nspreads one uniform and dreary gloss over the good and bad, the \nfeeling and the unfeeling, the sensible and the senseless, she had \nsubdued even her wonder until now.\n\nShe opens the letter.  Spread out upon the paper is a printed \naccount of the discovery of the body as it lay face downward on the \nfloor, shot through the heart; and underneath is written her own \nname, with the word \"murderess\" attached.\n\nIt falls out of her hand.  How long it may have lain upon the \nground she knows not, but it lies where it fell when a servant \nstands before her announcing the young man of the name of Guppy.  \nThe words have probably been repeated several times, for they are \nringing in her head before she begins to understand them.\n\n\"Let him come in!\"\n\nHe comes in.  Holding the letter in her hand, which she has taken \nfrom the floor, she tries to collect her thoughts.  In the eyes of \nMr. Guppy she is the same Lady Dedlock, holding the same prepared, \nproud, chilling state.\n\n\"Your ladyship may not be at first disposed to excuse this visit \nfrom one who has never been welcome to your ladyship\"--which he \ndon't complain of, for he is bound to confess that there never has \nbeen any particular reason on the face of things why he should be--\n\"but I hope when I mention my motives to your ladyship you will not \nfind fault with me,\" says Mr. Guppy.\n\n\"Do so.\"\n\n\"Thank your ladyship.  I ought first to explain to your ladyship,\" \nMr. Guppy sits on the edge of a chair and puts his hat on the \ncarpet at his feet, \"that Miss Summerson, whose image, as I \nformerly mentioned to your ladyship, was at one period of my life \nimprinted on my 'eart until erased by circumstances over which I \nhad no control, communicated to me, after I had the pleasure of \nwaiting on your ladyship last, that she particularly wished me to \ntake no steps whatever in any manner at all relating to her.  And \nMiss Summerson's wishes being to me a law (except as connected with \ncircumstances over which I have no control), I consequently never \nexpected to have the distinguished honour of waiting on your \nladyship again.\"\n\nAnd yet he is here now, Lady Dedlock moodily reminds him.\n\n\"And yet I am here now,\" Mr. Guppy admits.  \"My object being to \ncommunicate to your ladyship, under the seal of confidence, why I \nam here.\"\n\nHe cannot do so, she tells him, too plainly or too briefly.  \"Nor \ncan I,\" Mr. Guppy returns with a sense of injury upon him, \"too \nparticularly request your ladyship to take particular notice that \nit's no personal affair of mine that brings me here.  I have no \ninterested views of my own to serve in coming here.  If it was not \nfor my promise to Miss Summerson and my keeping of it sacred--I, in \npoint of fact, shouldn't have darkened these doors again, but \nshould have seen 'em further first.\"\n\nMr. Guppy considers this a favourable moment for sticking up his \nhair with both hands.\n\n\"Your ladyship will remember when I mention it that the last time I \nwas here I run against a party very eminent in our profession and \nwhose loss we all deplore.  That party certainly did from that time \napply himself to cutting in against me in a way that I will call \nsharp practice, and did make it, at every turn and point, extremely \ndifficult for me to be sure that I hadn't inadvertently led up to \nsomething contrary to Miss Summerson's wishes.  Self-praise is no \nrecommendation, but I may say for myself that I am not so bad a man \nof business neither.\"\n\nLady Dedlock looks at him in stern inquiry.  Mr. Guppy immediately \nwithdraws his eyes from her face and looks anywhere else.\n\n\"Indeed, it has been made so hard,\" he goes on, \"to have any idea \nwhat that party was up to in combination with others that until the \nloss which we all deplore I was gravelled--an expression which your \nladyship, moving in the higher circles, will be so good as to \nconsider tantamount to knocked over.  Small likewise--a name by \nwhich I refer to another party, a friend of mine that your ladyship \nis not acquainted with--got to be so close and double-faced that at \ntimes it wasn't easy to keep one's hands off his 'ead.  However, \nwhat with the exertion of my humble abilities, and what with the \nhelp of a mutual friend by the name of Mr. Tony Weevle (who is of a \nhigh aristocratic turn and has your ladyship's portrait always \nhanging up in his room), I have now reasons for an apprehension as \nto which I come to put your ladyship upon your guard.  First, will \nyour ladyship allow me to ask you whether you have had any strange \nvisitors this morning?  I don't mean fashionable visitors, but such \nvisitors, for instance, as Miss Barbary's old servant, or as a \nperson without the use of his lower extremities, carried upstairs \nsimilarly to a guy?\"\n\n\"No!\"\n\n\"Then I assure your ladyship that such visitors have been here and \nhave been received here.  Because I saw them at the door, and \nwaited at the corner of the square till they came out, and took \nhalf an hour's turn afterwards to avoid them.\"\n\n\"What have I to do with that, or what have you?  I do not \nunderstand you.  What do you mean?\"\n\n\"Your ladyship, I come to put you on your guard.  There may be no \noccasion for it.  Very well.  Then I have only done my best to keep \nmy promise to Miss Summerson.  I strongly suspect (from what Small \nhas dropped, and from what we have corkscrewed out of him) that \nthose letters I was to have brought to your ladyship were not \ndestroyed when I supposed they were.  That if there was anything to \nbe blown upon, it IS blown upon.  That the visitors I have alluded \nto have been here this morning to make money of it.  And that the \nmoney is made, or making.\"\n\nMr. Guppy picks up his hat and rises.\n\n\"Your ladyship, you know best whether there's anything in what I \nsay or whether there's nothing.  Something or nothing, I have acted \nup to Miss Summerson's wishes in letting things alone and in \nundoing what I had begun to do, as far as possible; that's \nsufficient for me.  In case I should be taking a liberty in putting \nyour ladyship on your guard when there's no necessity for it, you \nwill endeavour, I should hope, to outlive my presumption, and I \nshall endeavour to outlive your disapprobation.  I now take my \nfarewell of your ladyship, and assure you that there's no danger of \nyour ever being waited on by me again.\"\n\nShe scarcely acknowledges these parting words by any look, but when \nhe has been gone a little while, she rings her bell.\n\n\"Where is Sir Leicester?\"\n\nMercury reports that he is at present shut up in the library alone.\n\n\"Has Sir Leicester had any visitors this morning?\"\n\nSeveral, on business.  Mercury proceeds to a description of them, \nwhich has been anticipated by Mr. Guppy.  Enough; he may go.\n\nSo!  All is broken down.  Her name is in these many mouths, her \nhusband knows his wrongs, her shame will be published--may be \nspreading while she thinks about it--and in addition to the \nthunderbolt so long foreseen by her, so unforeseen by him, she is \ndenounced by an invisible accuser as the murderess of her enemy.\n\nHer enemy he was, and she has often, often, often wished him dead.  \nHer enemy he is, even in his grave.  This dreadful accusation comes \nupon her like a new torment at his lifeless hand.  And when she \nrecalls how she was secretly at his door that night, and how she \nmay be represented to have sent her favourite girl away so soon \nbefore merely to release herself from observation, she shudders as \nif the hangman's hands were at her neck.\n\nShe has thrown herself upon the floor and lies with her hair all \nwildly scattered and her face buried in the cushions of a couch.  \nShe rises up, hurries to and fro, flings herself down again, and \nrocks and moans.  The horror that is upon her is unutterable.  If \nshe really were the murderess, it could hardly be, for the moment, \nmore intense.\n\nFor as her murderous perspective, before the doing of the deed, \nhowever subtle the precautions for its commission, would have been \nclosed up by a gigantic dilatation of the hateful figure, \npreventing her from seeing any consequences beyond it; and as those \nconsequences would have rushed in, in an unimagined flood, the \nmoment the figure was laid low--which always happens when a murder \nis done; so, now she sees that when he used to be on the watch \nbefore her, and she used to think, \"if some mortal stroke would but \nfall on this old man and take him from my way!\" it was but wishing \nthat all he held against her in his hand might be flung to the \nwinds and chance-sown in many places.  So, too, with the wicked \nrelief she has felt in his death.  What was his death but the key-\nstone of a gloomy arch removed, and now the arch begins to fall in \na thousand fragments, each crushing and mangling piecemeal!\n\nThus, a terrible impression steals upon and overshadows her that \nfrom this pursuer, living or dead--obdurate and imperturbable \nbefore her in his well-remembered shape, or not more obdurate and \nimperturbable in his coffin-bed--there is no escape but in death.  \nHunted, she flies.  The complication of her shame, her dread, \nremorse, and misery, overwhelms her at its height; and even her \nstrength of self-reliance is overturned and whirled away like a \nleaf before a mighty wind.\n\nShe hurriedly addresses these lines to her husband, seals, and \nleaves them on her table:\n\n\nIf I am sought for, or accused of, his murder, believe that I am \nwholly innocent.  Believe no other good of me, for I am innocent of \nnothing else that you have heard, or will hear, laid to my charge.  \nHe prepared me, on that fatal night, for his disclosure of my guilt \nto you.  After he had left me, I went out on pretence of walking in \nthe garden where I sometimes walk, but really to follow him and \nmake one last petition that he would not protract the dreadful \nsuspense on which I have been racked by him, you do not know how \nlong, but would mercifully strike next morning.\n\nI found his house dark and silent.  I rang twice at his door, but \nthere was no reply, and I came home.\n\nI have no home left.  I will encumber you no more.  May you, in \nyour just resentment, be able to forget the unworthy woman on whom \nyou have wasted a most generous devotion--who avoids you only with \na deeper shame than that with which she hurries from herself--and \nwho writes this last adieu.\n\n\nShe veils and dresses quickly, leaves all her jewels and her money, \nlistens, goes downstairs at a moment when the hall is empty, opens \nand shuts the great door, flutters away in the shrill frosty wind.\n\n\nCHAPTER LVI\n\nPursuit\n\n\nImpassive, as behoves its high breeding, the Dedlock town house \nstares at the other houses in the street of dismal grandeur and \ngives no outward sign of anything going wrong within.  Carriages \nrattle, doors are battered at, the world exchanges calls; ancient \ncharmers with skeleton throats and peachy cheeks that have a rather \nghastly bloom upon them seen by daylight, when indeed these \nfascinating creatures look like Death and the Lady fused together, \ndazzle the eyes of men.  Forth from the frigid mews come easily \nswinging carriages guided by short-legged coachmen in flaxen wigs, \ndeep sunk into downy hammercloths, and up behind mount luscious \nMercuries bearing sticks of state and wearing cocked hats \nbroadwise, a spectacle for the angels.\n\nThe Dedlock town house changes not externally, and hours pass \nbefore its exalted dullness is disturbed within.  But Volumnia the \nfair, being subject to the prevalent complaint of boredom and \nfinding that disorder attacking her spirits with some virulence, \nventures at length to repair to the library for change of scene.  \nHer gentle tapping at the door producing no response, she opens it \nand peeps in; seeing no one there, takes possession.\n\nThe sprightly Dedlock is reputed, in that grass-grown city of the \nancients, Bath, to be stimulated by an urgent curiosity which \nimpels her on all convenient and inconvenient occasions to sidle \nabout with a golden glass at her eye, peering into objects of every \ndescription.  Certain it is that she avails herself of the present \nopportunity of hovering over her kinsman's letters and papers like \na bird, taking a short peck at this document and a blink with her \nhead on one side at that document, and hopping about from table to \ntable with her glass at her eye in an inquisitive and restless \nmanner.  In the course of these researches she stumbles over \nsomething, and turning her glass in that direction, sees her \nkinsman lying on the ground like a felled tree.\n\nVolumnia's pet little scream acquires a considerable augmentation \nof reality from this surprise, and the house is quickly in \ncommotion.  Servants tear up and down stairs, bells are violently \nrung, doctors are sent for, and Lady Dedlock is sought in all \ndirections, but not found.  Nobody has seen or heard her since she \nlast rang her bell.  Her letter to Sir Leicester is discovered on \nher table, but it is doubtful yet whether he has not received \nanother missive from another world requiring to be personally \nanswered, and all the living languages, and all the dead, are as \none to him.\n\nThey lay him down upon his bed, and chafe, and rub, and fan, and \nput ice to his head, and try every means of restoration.  Howbeit, \nthe day has ebbed away, and it is night in his room before his \nstertorous breathing lulls or his fixed eyes show any consciousness \nof the candle that is occasionally passed before them.  But when \nthis change begins, it goes on; and by and by he nods or moves his \neyes or even his hand in token that he hears and comprehends.\n\nHe fell down, this morning, a handsome stately gentleman, somewhat \ninfirm, but of a fine presence, and with a well-filled face.  He \nlies upon his bed, an aged man with sunken cheeks, the decrepit \nshadow of himself.  His voice was rich and mellow and he had so \nlong been thoroughly persuaded of the weight and import to mankind \nof any word he said that his words really had come to sound as if \nthere were something in them.  But now he can only whisper, and \nwhat he whispers sounds like what it is--mere jumble and jargon.\n\nHis favourite and faithful housekeeper stands at his bedside.  It \nis the first act he notices, and he clearly derives pleasure from \nit.  After vainly trying to make himself understood in speech, he \nmakes signs for a pencil.  So inexpressively that they cannot at \nfirst understand him; it is his old housekeeper who makes out what \nhe wants and brings in a slate.\n\nAfter pausing for some time, he slowly scrawls upon it in a hand \nthat is not his, \"Chesney Wold?\"\n\nNo, she tells him; he is in London.  He was taken ill in the \nlibrary this morning.  Right thankful she is that she happened to \ncome to London and is able to attend upon him.\n\n\"It is not an illness of any serious consequence, Sir Leicester.  \nYou will be much better to-morrow, Sir Leicester.  All the \ngentlemen say so.\"  This, with the tears coursing down her fair old \nface.\n\nAfter making a survey of the room and looking with particular \nattention all round the bed where the doctors stand, he writes, \"My \nLady.\"\n\n\"My Lady went out, Sir Leicester, before you were taken ill, and \ndon't know of your illness yet.\"\n\nHe points again, in great agitation, at the two words.  They all \ntry to quiet him, but he points again with increased agitation.  On \ntheir looking at one another, not knowing what to say, he takes the \nslate once more and writes \"My Lady.  For God's sake, where?\"  And \nmakes an imploring moan.\n\nIt is thought better that his old housekeeper should give him Lady \nDedlock's letter, the contents of which no one knows or can \nsurmise.  She opens it for him and puts it out for his perusal.  \nHaving read it twice by a great effort, he turns it down so that it \nshall not be seen and lies moaning.  He passes into a kind of \nrelapse or into a swoon, and it is an hour before he opens his \neyes, reclining on his faithful and attached old servant's arm.  \nThe doctors know that he is best with her, and when not actively \nengaged about him, stand aloof.\n\nThe slate comes into requisition again, but the word he wants to \nwrite he cannot remember.  His anxiety, his eagerness, and \naffliction at this pass are pitiable to behold.  It seems as if he \nmust go mad in the necessity he feels for haste and the inability \nunder which he labours of expressing to do what or to fetch whom.  \nHe has written the letter B, and there stopped.  Of a sudden, in \nthe height of his misery, he puts Mr. before it.  The old \nhousekeeper suggests Bucket.  Thank heaven!  That's his meaning.\n\nMr. Bucket is found to be downstairs, by appointment.  Shall he \ncome up?\n\nThere is no possibility of misconstruing Sir Leicester's burning \nwish to see him or the desire he signifies to have the room cleared \nof every one but the housekeeper.  It is speedily done, and Mr. \nBucket appears.  Of all men upon earth, Sir Leicester seems fallen \nfrom his high estate to place his sole trust and reliance upon this \nman.\n\n\"Sir Leicester Dedlock, Baronet, I'm sorry to see you like this.  I \nhope you'll cheer up.  I'm sure you will, on account of the family \ncredit.\"\n\nLeicester puts her letter in his hands and looks intently in his \nface while he reads it.  A new intelligence comes into Mr. Bucket's \neye as he reads on; with one hook of his finger, while that eye is \nstill glancing over the words, he indicates, \"Sir Leicester \nDedlock, Baronet, I understand you.\"\n\nSir Leicester writes upon the slate.  \"Full forgiveness.  Find--\"  \nMr. Bucket stops his hand.\n\n\"Sir Leicester Dedlock, Baronet, I'll find her.  But my search \nafter her must be begun out of hand.  Not a minute must be lost.\"\n\nWith the quickness of thought, he follows Sir Leicester Dedlock's \nlook towards a little box upon a table.\n\n\"Bring it here, Sir Leicester Dedlock, Baronet?  Certainly.  Open \nit with one of these here keys?  Certainly.  The littlest key?  TO \nbe sure.  Take the notes out?  So I will.  Count 'em?  That's soon \ndone.  Twenty and thirty's fifty, and twenty's seventy, and fifty's \none twenty, and forty's one sixty.  Take 'em for expenses?  That \nI'll do, and render an account of course.  Don't spare money?  No I \nwon't.\"\n\nThe velocity and certainty of Mr. Bucket's interpretation on all \nthese heads is little short of miraculous.  Mrs. Rouncewell, who \nholds the light, is giddy with the swiftness of his eyes and hands \nas he starts up, furnished for his journey.\n\n\"You're George's mother, old lady; that's about what you are, I \nbelieve?\" says Mr. Bucket aside, with his hat already on and \nbuttoning his coat.\n\n\"Yes, sir, I am his distressed mother.\"\n\n\"So I thought, according to what he mentioned to me just now.  \nWell, then, I'll tell you something.  You needn't be distressed no \nmore.  Your son's all right.  Now, don't you begin a-crying, \nbecause what you've got to do is to take care of Sir Leicester \nDedlock, Baronet, and you won't do that by crying.  As to your son, \nhe's all right, I tell you; and he sends his loving duty, and \nhoping you're the same.  He's discharged honourable; that's about \nwhat HE is; with no more imputation on his character than there is \non yours, and yours is a tidy one, I'LL bet a pound.  You may trust \nme, for I took your son.  He conducted himself in a game way, too, \non that occasion; and he's a fine-made man, and you're a fine-made \nold lady, and you're a mother and son, the pair of you, as might be \nshowed for models in a caravan.  Sir Leicester Dedlock, Baronet, \nwhat you've trusted to me I'll go through with.  Don't you be \nafraid of my turing out of my way, right or left, or taking a \nsleep, or a wash, or a shave till I have found what I go in search \nof.  Say everything as is kind and forgiving on your part?  Sir \nLeicester Dedlock, Baronet, I will.  And I wish you better, and \nthese family affairs smoothed over--as, Lord, many other family \naffairs equally has been, and equally wlll be, to the end of time.\"\n\nWith this peroration, Mr. Bucket, buttoned up, goes quietly out, \nlooking steadily before him as if he were already piercing the \nnight in quest of the fugitive.\n\nHis first step is to take himself to Lady Dedlock's rooms and look \nall over them for any trifling indication that may help him.  The \nrooms are in darkness now; and to see Mr. Bucket with a wax-light \nin his hand, holding it above his head and taking a sharp mental \ninventory of the many delicate objects so curiously at variance \nwith himself, would be to see a sight--which nobody DOES see, as he \nis particular to lock himself in.\n\n\"A spicy boudoir, this,\" says Mr. Bucket, who feels in a manner \nfurbished up in his French by the blow of the morning.  \"Must have \ncost a sight of money.  Rum articles to cut away from, these; she \nmust have been hard put to it!\"\n\nOpening and shutting table-drawers and looking into caskets and \njewel-cases, he sees the reflection of himself in various mirrors, \nand moralizes thereon.\n\n\"One might suppose I was a-moving in the fashionable circles and \ngetting myself up for almac's,\" says Mr. Bucket.  \"I begin to think \nI must be a swell in the Guards without knowing it.\"\n\nEver looking about, he has opened a dainty little chest in an inner \ndrawer.  His great hand, turning over some gloves which it can \nscarcely feel, they are so light and soft within it, comes upon a \nwhite handkerchief.\n\n\"Hum!  Let's have a look at YOU,\" says Mr. Bucket, putting down the \nlight.  \"What should YOU be kept by yourself for?  What's YOUR \nmotive?  Are you her ladyship's property, or somebody else's?  \nYou've got a mark upon you somewheres or another, I suppose?\"\n\nHe finds it as he speaks, \"Esther Summerson.\"\n\n\"Oh!\" says Mr. Bucket, pausing, with his finger at his ear.  \"Come, \nI'll take YOU.\"\n\nHe completes his observations as quietly and carefully as he has \ncarried them on, leaves everything else precisely as he found it, \nglides away after some five minutes in all, and passes into the \nstreet.  With a glance upward at the dimly lighted windows of Sir \nLeicester's room, he sets off, full-swing, to the nearest coach-\nstand, picks out the horse for his money, and directs to be driven \nto the shooting gallery.  Mr. Bucket does not claim to be a \nscientific judge of horses, but he lays out a little money on the \nprincipal events in that line, and generally sums up his knowledge \nof the subject in the remark that when he sees a horse as can go, \nhe knows him.\n\nHis knowledge is not at fault in the present instance.  Clattering \nover the stones at a dangerous pace, yet thoughtfully bringing his \nkeen eyes to bear on every slinking creature whom he passes in the \nmidnight streets, and even on the lights in upper windows where \npeople are going or gone to bed, and on all the turnings that he \nrattles by, and alike on the heavy sky, and on the earth where the \nsnow lies thin--for something may present itself to assist him, \nanywhere--he dashes to his destination at such a speed that when he \nstops the horse half smothers him in a cloud of steam.\n\n\"Unbear him half a moment to freshen him up, and I'll be back.\"\n\nHe runs up the long wooden entry and finds the trooper smoking his \npipe.\n\n\"I thought I should, George, after what you have gone through, my \nlad.  I haven't a word to spare.  Now, honour!  All to save a \nwoman.  Miss Summerson that was here when Gridley died--that was \nthe name, I know--all right--where does she live?\"\n\nThe trooper has just come from there and gives him the address, \nnear Oxford Street.\n\n\"You won't repent it, George.  Good night!\"\n\nHe is off again, with an impression of having seen Phil sitting by \nthe frosty fire staring at him open-mouthed, and gallops away \nagain, and gets out in a cloud of steam again.\n\nMr. Jarndyce, the only person up in the house, is just going to \nbed, rises from his book on hearing the rapid ringing at the bell, \nand comes down to the door in his dressing-gown.\n\n\"Don't be alarmed, sir.\"  In a moment his visitor is confidential \nwith him in the hall, has shut the door, and stands with his hand \nupon the lock.  \"I've had the pleasure of seeing you before.  \nInspector Bucket.  Look at that handkerchief, sir, Miss Esther \nSummerson's.  Found it myself put away in a drawer of Lady \nDedlock's, quarter of an hour ago.  Not a moment to lose.  Matter \nof life or death.  You know Lady Dedlock?\"\n\n\"Yes.\"\n\n\"There has been a discovery there to-day.  Family affairs have come \nout.  Sir Leicester Dedlock, Baronet, has had a fit--apoplexy or \nparalysis--and couldn't be brought to, and precious time has been \nlost.  Lady Dedlock disappeared this afternoon and left a letter \nfor him that looks bad.  Run your eye over it.  Here it is!\"\n\nMr. Jarndyce, having read it, asks him what he thinks.\n\n\"I don't know.  It looks like suicide.  Anyways, there's more and \nmore danger, every minute, of its drawing to that.  I'd give a \nhundred pound an hour to have got the start of the present time.  \nNow, Mr. Jarndyce, I am employed by Sir Leicester Dedlock, Baronet, \nto follow her and find her, to save her and take her his \nforgiveness.  I have money and full power, but I want something \nelse.  I want Miss Summerson.\"\n\nMr. Jarndyce in a troubled voice repeats, \"Miss Summerson?\"\n\n\"Now, Mr. Jarndyce\"--Mr. Bucket has read his face with the greatest \nattention all along--\"I speak to you as a gentleman of a humane \nheart, and under such pressing circumstances as don't often happen.  \nIf ever delay was dangerous, it's dangerous now; and if ever you \ncouldn't afterwards forgive yourself for causing it, this is the \ntime.  Eight or ten hours, worth, as I tell you, a hundred pound \napiece at least, have been lost since Lady Dedlock disappeared.  I \nam charged to find her.  I am Inspector Bucket.  Besides all the \nrest that's heavy on her, she has upon her, as she believes, \nsuspicion of murder.  If I follow her alone, she, being in \nignorance of what Sir Leicester Dedlock, Baronet, has communicated \nto me, may be driven to desperation.  But if I follow her in \ncompany with a young lady, answering to the description of a young \nlady that she has a tenderness for--I ask no question, and I say no \nmore than that--she will give me credit for being friendly.  Let me \ncome up with her and be able to have the hold upon her of putting \nthat young lady for'ard, and I'll save her and prevail with her if \nshe is alive.  Let me come up with her alone--a hard matter--and \nI'll do my best, but I don't answer for what the best may be.  Time \nflies; it's getting on for one o'clock.  When one strikes, there's \nanother hour gone, and it's worth a thousand pound now instead of a \nhundred.\"\n\nThis is all true, and the pressing nature of the case cannot be \nquestioned.  Mr. Jarndyce begs him to remain there while he speaks \nto Miss Summerson.  Mr. Bucket says he will, but acting on his \nusual principle, does no such thing, following upstairs instead and \nkeeping his man in sight.  So he remains, dodging and lurking about \nin the gloom of the staircase while they confer.  In a very little \ntime Mr. Jarndyce comes down and tells him that Miss Summerson will \njoin him directly and place herself under his protection to \naccompany him where he pleases.  Mr. Bucket, satisfied, expresses \nhigh approval and awaits her coming at the door.\n\nThere he mounts a high tower in his mind and looks out far and \nwide.  Many solitary figures he perceives creeping through the \nstreets; many solitary figures out on heaths, and roads, and lying \nunder haystacks.  But the figure that he seeks is not among them.  \nOther solitaries he perceives, in nooks of bridges, looking over; \nand in shadowed places down by the river's level; and a dark, dark, \nshapeless object drifting with the tide, more solitary than all, \nclings with a drowning hold on his attention.\n\nWhere is she?  Living or dead, where is she?  If, as he folds the \nhandkerchief and carefully puts it up, it were able with an \nenchanted power to bring before him the place where she found it \nand the night-landscape near the cottage where it covered the \nlittle child, would he descry her there?  On the waste where the \nbrick-kilns are burning with a pale blue flare, where the straw-\nroofs of the wretched huts in which the bricks are made are being \nscattered by the wind, where the clay and water are hard frozen and \nthe mill in which the gaunt blind horse goes round all day looks \nlike an instrument of human torture--traversing this deserted, \nblighted spot there is a lonely figure with the sad world to \nitself, pelted by the snow and driven by the wind, and cast out, it \nwould seem, from all companionship.  It is the figure of a woman, \ntoo; but it is miserably dressed, and no such clothes ever came \nthrough the hall and out at the great door of the Dedlock mansion.\n\n\n\nCHAPTER LVII\n\nEsther's Narrative\n\n\nI had gone to bed and fallen asleep when my guardian knocked at the \ndoor of my room and begged me to get up directly.  On my hurrying \nto speak to him and learn what had happened, he told me, after a \nword or two of preparation, that there had been a discovery at Sir \nLeicester Dedlock's.  That my mother had fled, that a person was \nnow at our door who was empowered to convey to her the fullest \nassurances of affectionate protection and forgiveness if he could \npossibly find her, and that I was sought for to accompany him in \nthe hope that my entreaties might prevail upon her if his failed.  \nSomething to this general purpose I made out, but I was thrown into \nsuch a tumult of alarm, and hurry and distress, that in spite of \nevery effort I could make to subdue my agitation, I did not seem, \nto myself, fully to recover my right mind until hours had passed.\n\nBut I dressed and wrapped up expeditiously without waking Charley \nor any one and went down to Mr. Bucket, who was the person \nentrusted with the secret.  In taking me to him my guardian told me \nthis, and also explained how it was that he had come to think of \nme.  Mr. Bucket, in a low voice, by the light of my guardian's \ncandle, read to me in the hall a letter that my mother had left \nupon her table; and I suppose within ten minutes of my having been \naroused I was sitting beside him, rolling swiftly through the \nstreets.\n\nHis manner was very keen, and yet considerate when he explained to \nme that a great deal might depend on my being able to answer, \nwithout confusion, a few questions that he wished to ask me.  These \nwere, chiefly, whether I had had much communication with my mother \n(to whom he only referred as Lady Dedlock), when and where I had \nspoken with her last, and how she had become possessed of my \nhandkerchief.  When I had satisfied him on these points, he asked \nme particularly to consider--taking time to think--whether within \nmy knowledge there was any one, no matter where, in whom she might \nbe at all likely to confide under circumstances of the last \nnecessity.  I could think of no one but my guardian.  But by and by \nI mentioned Mr. Boythorn.  He came into my mind as connected with \nhis old chivalrous manner of mentioning my mother's name and with \nwhat my guardian had informed me of his engagement to her sister \nand his unconscious connexion with her unhappy story.\n\nMy companion had stopped the driver while we held this \nconversation, that we might the better hear each other.  He now \ntold him to go on again and said to me, after considering within \nhimself for a few moments, that he had made up his mind how to \nproceed.  He was quite willing to tell me what his plan was, but I \ndid not feel clear enough to understand it.\n\nWe had not driven very far from our lodgings when we stopped in a \nby-street at a public-looking place lighted up with gas.  Mr. \nBucket took me in and sat me in an armchair by a bright fire.  It \nwas now past one, as I saw by the clock against the wall.  Two \npolice officers, looking in their perfectly neat uniform not at all \nlike people who were up all night, were quietly writing at a desk; \nand the place seemed very quiet altogether, except for some beating \nand calling out at distant doors underground, to which nobody paid \nany attention.\n\nA third man in uniform, whom Mr. Bucket called and to whom he \nwhispered his instructions, went out; and then the two others \nadvised together while one wrote from Mr. Bucket's subdued \ndictation.  It was a description of my mother that they were busy \nwith, for Mr. Bucket brought it to me when it was done and read it \nin a whisper.  It was very accurate indeed.\n\nThe second officer, who had attended to it closely, then copied it \nout and called in another man in uniform (there were several in an \nouter room), who took it up and went away with it.  All this was \ndone with the greatest dispatch and without the waste of a moment; \nyet nobody was at all hurried.  As soon as the paper was sent out \nupon its travels, the two officers resumed their former quiet work \nof writing with neatness and care.  Mr. Bucket thoughtfully came \nand warmed the soles of his boots, first one and then the other, at \nthe fire.\n\n\"Are you well wrapped up, Miss Summerson?\" he asked me as his eyes \nmet mine.  \"It's a desperate sharp night for a young lady to be out \nin.\"\n\nI told him I cared for no weather and was warmly clothed.\n\n\"It may be a long job,\" he observed; \"but so that it ends well, \nnever mind, miss.\"\n\n\"I pray to heaven it may end well!\" said I.\n\nHe nodded comfortingly.  \"You see, whatever you do, don't you go \nand fret yourself.  You keep yourself cool and equal for anything \nthat may happen, and it'll be the better for you, the better for \nme, the better for Lady Dedlock, and the better for Sir Leicester \nDedlock, Baronet.\"\n\nHe was really very kind and gentle, and as he stood before the fire \nwarming his boots and rubbing his face with his forefinger, I felt \na confidence in his sagacity which reassured me.  It was not yet a \nquarter to two when I heard horses' feet and wheels outside.  \"Now, \nMiss Summerson,\" said he, \"we are off, if you please!\"\n\nHe gave me his arm, and the two officers courteously bowed me out, \nand we found at the door a phaeton or barouche with a postilion and \npost horses.  Mr. Bucket handed me in and took his own seat on the \nbox.  The man in uniform whom he had sent to fetch this equipage \nthen handed him up a dark lantern at his request, and when he had \ngiven a few directions to the driver, we rattled away.\n\nI was far from sure that I was not in a dream.  We rattled with \ngreat rapidity through such a labyrinth of streets that I soon lost \nall idea where we were, except that we had crossed and re-crossed \nthe river, and still seemed to be traversing a low-lying, \nwaterside, dense neighbourhood of narrow thoroughfares chequered by \ndocks and basins, high piles of warehouses, swing-bridges, and \nmasts of ships.  At length we stopped at the corner of a little \nslimy turning, which the wind from the river, rushing up it, did \nnot purify; and I saw my companion, by the light of his lantern, in \nconference with several men who looked like a mixture of police and \nsailors.  Against the mouldering wall by which they stood, there \nwas a bill, on which I could discern the words, \"Found Drowned\"; \nand this and an inscription about drags possessed me with the awful \nsuspicion shadowed forth in our visit to that place.\n\nI had no need to remind myself that I was not there by the \nindulgence of any feeling of mine to increase the difficulties of \nthe search, or to lessen its hopes, or enhance its delays.  I \nremained quiet, but what I suffered in that dreadful spot I never \ncan forget.  And still it was like the horror of a dream.  A man \nyet dark and muddy, in long swollen sodden boots and a hat like \nthem, was called out of a boat and whispered with Mr. Bucket, who \nwent away with him down some slippery steps--as if to look at \nsomething secret that he had to show.  They came back, wiping their \nhands upon their coats, after turning over something wet; but thank \nGod it was not what I feared!\n\nAfter some further conference, Mr. Bucket (whom everybody seemed to \nknow and defer to) went in with the others at a door and left me in \nthe carriage, while the driver walked up and down by his horses to \nwarm himself.  The tide was coming in, as I judged from the sound \nit made, and I could hear it break at the end of the alley with a \nlittle rush towards me.  It never did so--and I thought it did so, \nhundreds of times, in what can have been at the most a quarter of \nan hour, and probably was less--but the thought shuddered through \nme that it would cast my mother at the horses' feet.\n\nMr. Bucket came out again, exhorting the others to be vigilant, \ndarkened his lantern, and once more took his seat.  \"Don't you be \nalarmed, Miss Summerson, on account of our coming down here,\" he \nsaid, turning to me.  \"I only want to have everything in train and \nto know that it is in train by looking after it myself.  Get on, my \nlad!\"\n\nWe appeared to retrace the way we had come.  Not that I had taken \nnote of any particular objects in my perturbed state of mind, but \njudging from the general character of the streets.  We called at \nanother office or station for a minute and crossed the river again.  \nDuring the whole of this time, and during the whole search, my \ncompanion, wrapped up on the box, never relaxed in his vigilance a \nsingle moment; but when we crossed the bridge he seemed, if \npossible, to be more on the alert than before.  He stood up to look \nover the parapet, he alighted and went back after a shadowy female \nfigure that flitted past us, and he gazed into the profound black \npit of water with a face that made my heart die within me.  The \nriver had a fearful look, so overcast and secret, creeping away so \nfast between the low flat lines of shore--so heavy with indistinct \nand awful shapes, both of substance and shadow; so death-like and \nmysterious.  I have seen it many times since then, by sunlight and \nby moonlight, but never free from the impressions of that journey.  \nIn my memory the lights upon the bridge are always burning dim, the \ncutting wind is eddying round the homeless woman whom we pass, the \nmonotonous wheels are whirling on, and the light of the carriage-\nlamps reflected back looks palely in upon me--a face rising out of \nthe dreaded water.\n\nClattering and clattering through the empty streets, we came at \nlength from the pavement on to dark smooth roads and began to leave \nthe houses behind us.  After a while I recognized the familiar way \nto Saint Albans.  At Barnet fresh horses were ready for us, and we \nchanged and went on.  It was very cold indeed, and the open country \nwas white with snow, though none was falling then.\n\n\"An old acquaintance of yours, this road, Miss Summerson,\" said Mr. \nBucket cheerfully.\n\n\"Yes,\" I returned.  \"Have you gathered any intelligence?\"\n\n\"None that can be quite depended on as yet,\" he answered, \"but it's \nearly times as yet.\"\n\nHe had gone into every late or early public-house where there was a \nlight (they were not a few at that time, the road being then much \nfrequented by drovers) and had got down to talk to the turnpike-\nkeepers.  I had heard him ordering drink, and chinking money, and \nmaking himself agreeable and merry everywhere; but whenever he took \nhis seat upon the box again, his face resumed its watchful steady \nlook, and he always said to the driver in the same business tone, \n\"Get on, my lad!\"\n\nWith all these stoppages, it was between five and six o'clock and \nwe were yet a few miles short of Saint Albans when he came out of \none of these houses and handed me in a cup of tea.\n\n\"Drink it, Miss Summerson, it'll do you good.  You're beginning to \nget more yourself now, ain't you?\"\n\nI thanked him and said I hoped so.\n\n\"You was what you may call stunned at first,\" he returned; \"and \nLord, no wonder!  Don't speak loud, my dear.  It's all right.  \nShe's on ahead.\"\n\nI don't know what joyful exclamation I made or was going to make, \nbut he put up his finger and I stopped myself.\n\n\"Passed through here on foot this evening about eight or nine.  I \nheard of her first at the archway toll, over at Highgate, but \ncouldn't make quite sure.  Traced her all along, on and off.  \nPicked her up at one place, and dropped her at another; but she's \nbefore us now, safe.  Take hold of this cup and saucer, ostler.  \nNow, if you wasn't brought up to the butter trade, look out and see \nif you can catch half a crown in your t'other hand.  One, two, \nthree, and there you are!  Now, my lad, try a gallop!\"\n\nWe were soon in Saint Albans and alighted a little before day, when \nI was just beginning to arrange and comprehend the occurrences of \nthe night and really to believe that they were not a dream.  \nLeaving the carriage at the posting-house and ordering fresh horses \nto be ready, my companion gave me his arm, and we went towards \nhome.\n\n\"As this is your regular abode, Miss Summerson, you see,\" he \nobserved, \"I should like to know whether you've been asked for by \nany stranger answering the description, or whether Mr. Jarndyce \nhas.  I don't much expect it, but it might be.\"\n\nAs we ascended the hill, he looked about him with a sharp eye--the \nday was now breaking--and reminded me that I had come down it one \nnight, as I had reason for remembering, with my little servant and \npoor Jo, whom he called Toughey.\n\nI wondered how he knew that.\n\n\"When you passed a man upon the road, just yonder, you know,\" said \nMr. Bucket.\n\nYes, I remembered that too, very well.\n\n\"That was me,\" said Mr. Bucket.\n\nSeeing my surprise, he went on, \"I drove down in a gig that \nafternoon to look after that boy.  You might have heard my wheels \nwhen you came out to look after him yourself, for I was aware of \nyou and your little maid going up when I was walking the horse \ndown.  Making an inquiry or two about him in the town, I soon heard \nwhat company he was in and was coming among the brick-fields to \nlook for him when I observed you bringing him home here.\"\n\n\"Had he committed any crime?\" I asked.\n\n\"None was charged against him,\" said Mr. Bucket, coolly lifting off \nhis hat, \"but I suppose he wasn't over-particular.  No.  What I \nwanted him for was in connexion with keeping this very matter of \nLady Dedlock quiet.  He had been making his tongue more free than \nwelcome as to a small accidental service he had been paid for by \nthe deceased Mr. Tulkinghorn; and it wouldn't do, at any sort of \nprice, to have him playing those games.  So having warned him out \nof London, I made an afternoon of it to warn him to keep out of it \nnow he WAS away, and go farther from it, and maintain a bright \nlook-out that I didn't catch him coming back again.\"\n\n\"Poor creature!\" said I.\n\n\"Poor enough,\" assented Mr. Bucket, \"and trouble enough, and well \nenough away from London, or anywhere else.  I was regularly turned \non my back when I found him taken up by your establishment, I do \nassure you.\n\nI asked him why.  \"Why, my dear?\" said Mr. Bucket.  \"Naturally \nthere was no end to his tongue then.  He might as well have been \nborn with a yard and a half of it, and a remnant over.\"\n\nAlthough I remember this conversation now, my head was in confusion \nat the time, and my power of attention hardly did more than enable \nme to understand that he entered into these particulars to divert \nme.  With the same kind intention, manifestly, he often spoke to me \nof indifferent things, while his face was busy with the one object \nthat we had in view.  He still pursued this subject as we turned in \nat the garden-gate.\n\n\"Ah!\" said Mr. Bucket.  \"Here we are, and a nice retired place it \nis.  Puts a man in mind of the country house in the Woodpecker-\ntapping, that was known by the smoke which so gracefully curled.  \nThey're early with the kitchen fire, and that denotes good \nservants.  But what you've always got to be careful of with \nservants is who comes to see 'em; you never know what they're up to \nif you don't know that.  And another thing, my dear.  Whenever you \nfind a young man behind the kitchen-door, you give that young man \nin charge on suspicion of being secreted in a dwelling-house with \nan unlawful purpose.\"\n\nWe were now in front of the house; he looked attentively and \nclosely at the gravel for footprints before he raised his eyes to \nthe windows.\n\n\"Do you generally put that elderly young gentleman in the same room \nwhen he's on a visit here, Miss Summerson?\" he inquired, glancing \nat Mr. Skimpole's usual chamber.\n\n\"You know Mr. Skimpole!\" said I.\n\n\"What do you call him again?\" returned Mr. Bucket, bending down his \near.  \"Skimpole, is it?  I've often wondered what his name might \nbe.  Skimpole.  Not John, I should say, nor yet Jacob?\"\n\n\"Harold,\" I told him.\n\n\"Harold.  Yes.  He's a queer bird is Harold,\" said Mr. Bucket, \neyeing me with great expression.\n\n\"He is a singular character,\" said I.\n\n\"No idea of money,\" observed Mr. Bucket.  \"He takes it, though!\"\n\nI involuntarily returned for answer that I perceived Mr. Bucket \nknew him.\n\n\"Why, now I'll tell you, Miss Summerson,\" he replied.  \"Your mind \nwill be all the better for not running on one point too \ncontinually, and I'll tell you for a change.  It was him as pointed \nout to me where Toughey was.  I made up my mind that night to come \nto the door and ask for Toughey, if that was all; but willing to \ntry a move or so first, if any such was on the board, I just \npitched up a morsel of gravel at that window where I saw a shadow.  \nAs soon as Harold opens it and I have had a look at him, thinks I, \nyou're the man for me.  So I smoothed him down a bit about not \nwanting to disturb the family after they was gone to bed and about \nits being a thing to be regretted that charitable young ladies \nshould harbour vagrants; and then, when I pretty well understood \nhis ways, I said I should consider a fypunnote well bestowed if I \ncould relieve the premises of Toughey without causing any noise or \ntrouble.  Then says he, lifting up his eyebrows in the gayest way, \n'It's no use menfioning a fypunnote to me, my friend, because I'm a \nmere child in such matters and have no idea of money.'  Of course I \nunderstood what his taking it so easy meant; and being now quite \nsure he was the man for me, I wrapped the note round a little stone \nand threw it up to him.  Well! He laughs and beams, and looks as \ninnocent as you like, and says, 'But I don't know the value of \nthese things.  What am I to DO with this?'  'Spend it, sir,' says \nI.  'But I shall be taken in,' he says, 'they won't give me the \nright change, I shall lose it, it's no use to me.'  Lord, you never \nsaw such a face as he carried it with!  Of course he told me where \nto find Toughey, and I found him.\"\n\nI regarded this as very treacherous on the part of Mr. Skimpole \ntowards my guardian and as passing the usual bounds of his childish \ninnocence.\n\n\"Bounds, my dear?\" returned Mr. Bucket.  \"Bounds?  Now, Miss \nSummerson, I'll give you a piece of advice that your husband will \nfind useful when you are happily married and have got a family \nabout you.  Whenever a person says to you that they are as innocent \nas can be in all concerning money, look well after your own money, \nfor they are dead certain to collar it if they can.  Whenever a \nperson proclaims to you 'In worldly matters I'm a child,' you \nconsider that that person is only a-crying off from being held \naccountable and that you have got that person's number, and it's \nNumber One.  Now, I am not a poetical man myself, except in a vocal \nway when it goes round a company, but I'm a practical one, and \nthat's my experience.  So's this rule.  Fast and loose in one \nthing, fast and loose in everything.  I never knew it fail.  No \nmore will you.  Nor no one.  With which caution to the unwary, my \ndear, I take the liberty of pulling this here bell, and so go back \nto our business.\"\n\nI believe it had not been for a moment out of his mind, any more \nthan it had been out of my mind, or out of his face.  The whole \nhousehold were amazed to see me, without any notice, at that time \nin the morning, and so accompanied; and their surprise was not \ndiminished by my inquiries.  No one, however, had been there.  It \ncould not be doubted that this was the truth.\n\n\"Then, Miss Summerson,\" said my companion, \"we can't be too soon at \nthe cottage where those brickmakers are to be found.  Most \ninquiries there I leave to you, if you'll be so good as to make \n'em.  The naturalest way is the best way, and the naturalest way is \nyour own way.\"\n\nWe set off again immediately.  On arriving at the cottage, we found \nit shut up and apparently deserted, but one of the neighbours who \nknew me and who came out when I was trying to make some one hear \ninformed me that the two women and their husbands now lived \ntogether in another house, made of loose rough bricks, which stood \non the margin of the piece of ground where the kilns were and where \nthe long rows of bricks were drying.  We lost no time in repairing \nto this place, which was within a few hundred yards; and as the \ndoor stood ajar, I pushed it open.\n\nThere were only three of them sitting at breakfast, the child lying \nasleep on a bed in the corner.  It was Jenny, the mother of the \ndead child, who was absent.  The other woman rose on seeing me; and \nthe men, though they were, as usual, sulky and silent, each gave me \na morose nod of recognition.  A look passed between them when Mr. \nBucket followed me in, and I was surprised to see that the woman \nevidently knew him.\n\nI had asked leave to enter of course.  Liz (the only name by which \nI knew her) rose to give me her own chair, but I sat down on a \nstool near the fire, and Mr. Bucket took a corner of the bedstead.  \nNow that I had to speak and was among people with whom I was not \nfamiliar, I became conscious of being hurried and giddy.  It was \nvery difficult to begin, and I could not help bursting into tears.\n\n\"Liz,\" said I, \"I have come a long way in the night and through the \nsnow to inquire after a lady--\"\n\n\"Who has been here, you know,\" Mr. Bucket struck in, addressing the \nwhole group with a composed propitiatory face; \"that's the lady the \nyoung lady means.  The lady that was here last night, you know.\"\n\n\"And who told YOU as there was anybody here?\" inquired Jenny's \nhusband, who had made a surly stop in his eating to listen and now \nmeasured him with his eye.\n\n\"A person of the name of Michael Jackson, with a blue welveteen \nwaistcoat with a double row of mother of pearl buttons,\" Mr. Bucket \nimmediately answered.\n\n\"He had as good mind his own business, whoever he is,\" growled the \nman.\n\n\"He's out of employment, I believe,\" said Mr. Bucket apologetically \nfor Michael Jackson, \"and so gets talking.\"\n\nThe woman had not resumed her chair, but stood faltering with her \nhand upon its broken back, looking at me.  I thought she would have \nspoken to me privately if she had dared.  She was still in this \nattitude of uncertainty when her husband, who was eating with a \nlump of bread and fat in one hand and his clasp-knife in the other, \nstruck the handle of his knife violently on the table and told her \nwith an oath to mind HER own business at any rate and sit down.\n\n\"I should like to have seen Jenny very much,\" said I, \"for I am \nsure she would have told me all she could about this lady, whom I \nam very anxious indeed--you cannot think how anxious--to overtake.  \nWill Jenny be here soon?  Where is she?\"\n\nThe woman had a great desire to answer, but the man, with another \noath, openly kicked at her foot with his heavy boot.  He left it to \nJenny's husband to say what he chose, and after a dogged silence \nthe latter turned his shaggy head towards me.\n\n\"I'm not partial to gentlefolks coming into my place, as you've \nheerd me say afore now, I think, miss.  I let their places be, and \nit's curious they can't let my place be.  There'd be a pretty shine \nmade if I was to go a-wisitin THEM, I think.  Howsoever, I don't so \nmuch complain of you as of some others, and I'm agreeable to make \nyou a civil answer, though I give notice that I'm not a-going to be \ndrawed like a badger.  Will Jenny be here soon?  No she won't.  \nWhere is she?  She's gone up to Lunnun.\"\n\n\"Did she go last night?\" I asked.\n\n\"Did she go last night?  Ah! She went last night,\" he answered with \na sulky jerk of his head.\n\n\"But was she here when the lady came?  And what did the lady say to \nher?  And where is the lady gone?  I beg and pray you to be so kind \nas to tell me,\" said I, \"for I am in great distress to know.\"\n\n\"If my master would let me speak, and not say a word of harm--\" the \nwoman timidly began.\n\n\"Your master,\" said her husband, muttering an imprecation with slow \nemphasis, \"will break your neck if you meddle with wot don't \nconcern you.\"\n\nAfter another silence, the husband of the absent woman, turning to \nme again, answered me with his usual grumbling unwillingness.\n\n\"Wos Jenny here when the lady come?  Yes, she wos here when the \nlady come.  Wot did the lady say to her?  Well, I'll tell you wot \nthe lady said to her.  She said, 'You remember me as come one time \nto talk to you about the young lady as had been a-wisiting of you?  \nYou remember me as give you somethink handsome for a handkercher \nwot she had left?'  Ah, she remembered.  So we all did.  Well, \nthen, wos that young lady up at the house now?  No, she warn't up \nat the house now.  Well, then, lookee here.  The lady was upon a \njourney all alone, strange as we might think it, and could she rest \nherself where you're a setten for a hour or so.  Yes she could, and \nso she did.  Then she went--it might be at twenty minutes past \neleven, and it might be at twenty minutes past twelve; we ain't got \nno watches here to know the time by, nor yet clocks.  Where did she \ngo?  I don't know where she go'd.  She went one way, and Jenny went \nanother; one went right to Lunnun, and t'other went right from it.  \nThat's all about it.  Ask this man.  He heerd it all, and see it \nall.  He knows.\"\n\nThe other man repeated, \"That's all about it.\"\n\n\"Was the lady crying?\" I inquired.\n\n\"Devil a bit,\" returned the first man.  \"Her shoes was the worse, \nand her clothes was the worse, but she warn't--not as I see.\"\n\nThe woman sat with her arms crossed and her eyes upon the ground.  \nHer husband had turned his seat a little so as to face her and kept \nhis hammer-like hand upon the table as if it were in readiness to \nexecute his threat if she disobeyed him.\n\n\"I hope you will not object to my asking your wife,\" said I, \"how \nthe lady looked.\"\n\n\"Come, then!\" he gruffly cried to her.  \"You hear what she says.  \nCut it short and tell her.\"\n\n\"Bad,\" replied the woman.  \"Pale and exhausted.  Very bad.\"\n\n\"Did she speak much?\"\n\n\"Not much, but her voice was hoarse.\"\n\nShe answered, looking all the while at her husband for leave.\n\n\"Was she faint?\" said I.  \"Did she eat or drink here?\"\n\n\"Go on!\" said the husband in answer to her look.  \"Tell her and cut \nit short.\"\n\n\"She had a little water, miss, and Jenny fetched her some bread and \ntea.  But she hardly touched it.\"\n\n\"And when she went from here,\" I was proceeding, when Jenny's \nhusband impatiently took me up.\n\n\"When she went from here, she went right away nor'ard by the high \nroad.  Ask on the road if you doubt me, and see if it warn't so.  \nNow, there's the end.  That's all about it.\"\n\nI glanced at my companion, and finding that he had already risen \nand was ready to depart, thanked them for what they had told me, \nand took my leave.  The woman looked full at Mr. Bucket as he went \nout, and he looked full at her.\n\n\"Now, Miss Summerson,\" he said to me as we walked quickly away.  \n\"They've got her ladyship's watch among 'em.  That's a positive \nfact.\"\n\n\"You saw it?\" I exclaimed.\n\n\"Just as good as saw it,\" he returned.  \"Else why should he talk \nabout his 'twenty minutes past' and about his having no watch to \ntell the time by?  Twenty minutes!  He don't usually cut his time \nso fine as that.  If he comes to half-hours, it's as much as HE \ndoes.  Now, you see, either her ladyship gave him that watch or he \ntook it.  I think she gave it him.  Now, what should she give it \nhim for?  What should she give it him for?\"\n\nHe repeated this question to himself several times as we hurried \non, appearing to balance between a variety of answers that arose in \nhis mind.\n\n\"If time could be spared,\" said Mr. Bucket, \"which is the only \nthing that can't be spared in this case, I might get it out of that \nwoman; but it's too doubtful a chance to trust to under present \ncircumstances.  They are up to keeping a close eye upon her, and \nany fool knows that a poor creetur like her, beaten and kicked and \nscarred and bruised from head to foot, will stand by the husband \nthat ill uses her through thick and thin.  There's something kept \nback.  It's a pity but what we had seen the other woman.\"\n\nI regretted it exceedingly, for she was very grateful, and I felt \nsure would have resisted no entreaty of mine.\n\n\"It's possible, Miss Summerson,\" said Mr. Bucket, pondering on it, \n\"that her ladyship sent her up to London with some word for you, \nand it's possible that her husband got the watch to let her go.  It \ndon't come out altogether so plain as to please me, but it's on the \ncards.  Now, I don't take kindly to laying out the money of Sir \nLeicester Dedlock, Baronet, on these roughs, and I don't see my way \nto the usefulness of it at present.  No!  So far our road, Miss \nSummerson, is for'ard--straight ahead--and keeping everything \nquiet!\"\n\nWe called at home once more that I might send a hasty note to my \nguardian, and then we hurried back to where we had left the \ncarriage.  The horses were brought out as soon as we were seen \ncoming, and we were on the road again in a few minutes.\n\nIt had set in snowing at daybreak, and it now snowed hard.  The air \nwas so thick with the darkness of the day and the density of the \nfall that we could see but a very little way in any direction.  \nAlthough it was extremely cold, the snow was but partially frozen, \nand it churned--with a sound as if it were a beach of small shells\n--under the hoofs of the horses into mire and water.  They sometimes \nslipped and floundered for a mile together, and we were obliged to \ncome to a standstill to rest them.  One horse fell three times in \nthis first stage, and trembled so and was so shaken that the driver \nhad to dismount from his saddle and lead him at last.\n\nI could eat nothing and could not sleep, and I grew so nervous \nunder those delays and the slow pace at which we travelled that I \nhad an unreasonable desire upon me to get out and walk.  Yielding \nto my companion's better sense, however, I remained where I was.  \nAll this time, kept fresh by a certain enjoyment of the work in \nwhich he was engaged, he was up and down at every house we came to, \naddressing people whom he had never beheld before as old \nacquaintances, running in to warm himself at every fire he saw, \ntalking and drinking and shaking hands at every bar and tap, \nfriendly with every waggoner, wheelwright, blacksmith, and toll-\ntaker, yet never seeming to lose time, and always mounting to the \nbox again with his watchful, steady face and his business-like \"Get \non, my lad!\"\n\nWhen we were changing horses the next time, he came from the \nstable-yard, with the wet snow encrusted upon him and dropping off \nhim--plashing and crashing through it to his wet knees as he had \nbeen doing frequently since we left Saint Albans--and spoke to me \nat the carriage side.\n\n\"Keep up your spirits.  It's certainly true that she came on here, \nMiss Summerson.  There's not a doubt of the dress by this time, and \nthe dress has been seen here.\"\n\n\"Still on foot?\" said I.\n\n\"Still on foot.  I think the gentleman you mentioned must be the \npoint she's aiming at, and yet I don't like his living down in her \nown part of the country neither.\"\n\n\"I know so little,\" said I.  \"There may be some one else nearer \nhere, of whom I never heard.\"\n\n\"That's true.  But whatever you do, don't you fall a-crying, my \ndear; and don't you worry yourself no more than you can help.  Get \non, my lad!\"\n\nThe sleet fell all that day unceasingly, a thick mist came on \nearly, and it never rose or lightened for a moment.  Such roads I \nhad never seen.  I sometimes feared we had missed the way and got \ninto the ploughed grounds or the marshes.  If I ever thought of the \ntime I had been out, it presented itself as an indefinite period of \ngreat duration, and I seemed, in a strange way, never to have been \nfree from the anxiety under which I then laboured.\n\nAs we advanced, I began to feel misgivings that my companion lost \nconfidence.  He was the same as before with all the roadside \npeople, but he looked graver when he sat by himself on the box.  I \nsaw his finger uneasily going across and across his mouth during \nthe whole of one long weary stage.  I overheard that he began to \nask the drivers of coaches and other vehicles coming towards us \nwhat passengers they had seen in other coaches and vehicles that \nwere in advance.  Their replies did not encourage him.  He always \ngave me a reassuring beck of his finger and lift of his eyelid as \nhe got upon the box again, but he seemed perplexed now when he \nsaid, \"Get on, my lad!\"\n\nAt last, when we were changing, he told me that he had lost the \ntrack of the dress so long that he began to be surprised.  It was \nnothing, he said, to lose such a track for one while, and to take \nit up for another while, and so on; but it had disappeared here in \nan unaccountable manner, and we had not come upon it since.  This \ncorroborated the apprehensions I had formed, when he began to look \nat direction-posts, and to leave the carriage at cross roads for a \nquarter of an hour at a time while he explored them.  But I was not \nto be down-hearted, he told me, for it was as likely as not that \nthe next stage might set us right again.\n\nThe next stage, however, ended as that one ended; we had no new \nclue.  There was a spacious inn here, solitary, but a comfortable \nsubstantial building, and as we drove in under a large gateway \nbefore I knew it, where a landlady and her pretty daughters came to \nthe carriage-door, entreating me to alight and refresh myself while \nthe horses were making ready, I thought it would be uncharitable to \nrefuse.  They took me upstairs to a warm room and left me there.\n\nIt was at the corner of the house, I remember, looking two ways.  \nOn one side to a stable-yard open to a by-road, where the ostlers \nwere unharnessing the splashed and tired horses from the muddy \ncarriage, and beyond that to the by-road itself, across which the \nsign was heavily swinging; on the other side to a wood of dark \npine-trees.  Their branches were encumbered with snow, and it \nsilently dropped off in wet heaps while I stood at the window.  \nNight was setting in, and its bleakness was enhanced by the \ncontrast of the pictured fire glowing and gleaming in the window-\npane.  As I looked among the stems of the trees and followed the \ndiscoloured marks in the snow where the thaw was sinking into it \nand undermining it, I thought of the motherly face brightly set off \nby daughters that had just now welcomed me and of MY mother lying \ndown in such a wood to die.\n\nI was frightened when I found them all about me, but I remembered \nthat before I fainted I tried very hard not to do it; and that was \nsome little comfort.  They cushioned me up on a large sofa by the \nfire, and then the comely landlady told me that I must travel no \nfurther to-night, but must go to bed.  But this put me into such a \ntremble lest they should detain me there that she soon recalled her \nwords and compromised for a rest of half an hour.\n\nA good endearing creature she was.  She and her three fair girls, \nall so busy about me.  I was to take hot soup and broiled fowl, \nwhile Mr. Bucket dried himself and dined elsewhere; but I could not \ndo it when a snug round table was presently spread by the fireside, \nthough I was very unwilling to disappoint them.  However, I could \ntake some toast and some hot negus, and as I really enjoyed that \nrefreshment, it made some recompense.\n\nPunctual to the time, at the half-hour's end the carriage came \nrumbling under the gateway, and they took me down, warmed, \nrefreshed, comforted by kindness, and safe (I assured them) not to \nfaint any more.  After I had got in and had taken a grateful leave \nof them all, the youngest daughter--a blooming girl of nineteen, \nwho was to be the first married, they had told me--got upon the \ncarriage step, reached in, and kissed me.  I have never seen her, \nfrom that hour, but I think of her to this hour as my friend.\n\nThe transparent windows with the fire and light, looking so bright \nand warm from the cold darkness out of doors, were soon gone, and \nagain we were crushing and churning the loose snow.  We went on \nwith toil enough, but the dismal roads were not much worse than \nthey had been, and the stage was only nine miles.  My companion \nsmoking on the box--I had thought at the last inn of begging him to \ndo so when I saw him standing at a great fire in a comfortable \ncloud of tobacco--was as vigilant as ever and as quickly down and \nup again when we came to any human abode or any human creature.  He \nhad lighted his little dark lantern, which seemed to be a favourite \nwith him, for we had lamps to the carriage; and every now and then \nhe turned it upon me to see that I was doing well.  There was a \nfolding-window to the carriage-head, but I never closed it, for it \nseemed like shutting out hope.\n\nWe came to the end of the stage, and still the lost trace was not \nrecovered.  I looked at him anxiously when we stopped to change, \nbut I knew by his yet graver face as he stood watching the ostlers \nthat he had heard nothing.  Almost in an instant afterwards, as I \nleaned back in my seat, he looked in, with his lighted lantern in \nhis hand, an excited and quite different man.\n\n\"What is it?\" said I, starting.  \"Is she here?\"\n\n\"No, no.  Don't deceive yourself, my dear.  Nobody's here.  But \nI've got it!\"\n\nThe crystallized snow was in his eyelashes, in his hair, lying in \nridges on his dress.  He had to shake it from his face and get his \nbreath before he spoke to me.\n\n\"Now, Miss Summerson,\" said he, beating his finger on the apron, \n\"don't you be disappointed at what I'm a-going to do.  You know me.  \nI'm Inspector Bucket, and you can trust me.  We've come a long way; \nnever mind.  Four horses out there for the next stage up!  Quick!\"\n\nThere was a commotion in the yard, and a man came running out of \nthe stables to know if he meant up or down.\n\n\"Up, I tell you!  Up!  Ain't it English?  Up!\"\n\n\"Up?\" said I, astonished.  \"To London!  Are we going back?\"\n\n\"Miss Summerson,\" he answered, \"back.  Straight back as a die.  You \nknow me.  Don't be afraid.  I'll follow the other, by G--\"\n\n\"The other?\" I repeated.  \"Who?\"\n\n\"You called her Jenny, didn't you?  I'll follow her.  Bring those \ntwo pair out here for a crown a man.  Wake up, some of you!\"\n\n\"You will not desert this lady we are in search of; you will not \nabandon her on such a night and in such a state of mind as I know \nher to be in!\" said I, in an agony, and grasping his hand.\n\n\"You are right, my dear, I won't.  But I'll follow the other.  Look \nalive here with them horses.  Send a man for'ard in the saddle to \nthe next stage, and let him send another for'ard again, and order \nfour on, up, right through.  My darling, don't you be afraid!\"\n\nThese orders and the way in which he ran about the yard urging them \ncaused a general excitement that was scarcely less bewildering to \nme than the sudden change.  But in the height of the confusion, a \nmounted man galloped away to order the relays, and our horses were \nput to with great speed.\n\n\"My dear,\" said Mr. Bucket, jumping to his seat and looking in \nagain, \"--you'll excuse me if I'm too familiar--don't you fret and \nworry yourself no more than you can help.  I say nothing else at \npresent; but you know me, my dear; now, don't you?\"\n\nI endeavoured to say that I knew he was far more capable than I of \ndeciding what we ought to do, but was he sure that this was right?  \nCould I not go forward by myself in search of--I grasped his hand \nagain in my distress and whispered it to him--of my own mother.\n\n\"My dear,\" he answered, \"I know, I know, and would I put you wrong, \ndo you think?  Inspector Bucket.  Now you know me, don't you?\"\n\nWhat could I say but yes!\n\n\"Then you keep up as good a heart as you can, and you rely upon me \nfor standing by you, no less than by Sir Leicester Dedlock, \nBaronet.  Now, are you right there?\"\n\n\"All right, sir!\"\n\n\"Off she goes, then.  And get on, my lads!\"\n\nWe were again upon the melancholy road by which we had come, \ntearing up the miry sleet and thawing snow as if they were torn up \nby a waterwheel.\n\n\n\nCHAPTER LVIII\n\nA Wintry Day and Night\n\n\nStill impassive, as behoves its breeding, the Dedlock town house \ncarries itself as usual towards the street of dismal grandeur.  \nThere are powdered heads from time to time in the little windows of \nthe hall, looking out at the untaxed powder falling all day from \nthe sky; and in the same conservatory there is peach blossom \nturning itself exotically to the great hall fire from the nipping \nweather out of doors.  It is given out that my Lady has gone down \ninto Lincolnshire, but is expected to return presently.\n\nRumour, busy overmuch, however, will not go down into Lincolnshire.  \nIt persists in flitting and chattering about town.  It knows that \nthat poor unfortunate man, Sir Leicester, has been sadly used.  It \nhears, my dear child, all sorts of shocking things.  It makes the \nworld of five miles round quite merry.  Not to know that there is \nsomething wrong at the Dedlocks' is to augur yourself unknown.  One \nof the peachy-cheeked charmers with the skeleton throats is already \napprised of all the principal circumstances that will come out \nbefore the Lords on Sir Leicester's application for a bill of \ndivorce.\n\nAt Blaze and Sparkle's the jewellers and at Sheen and Gloss's the \nmercers, it is and will be for several hours the topic of the age, \nthe feature of the century.  The patronesses of those \nestablishments, albeit so loftily inscrutable, being as nicely \nweighed and measured there as any other article of the stock-in-\ntrade, are perfectly understood in this new fashion by the rawest \nhand behind the counter.  \"Our people, Mr. Jones,\" said Blaze and \nSparkle to the hand in question on engaging him, \"our people, sir, \nare sheep--mere sheep.  Where two or three marked ones go, all the \nrest follow.  Keep those two or three in your eye, Mr. Jones, and \nyou have the flock.\"  So, likewise, Sheen and Gloss to THEIR Jones, \nin reference to knowing where to have the fashionable people and \nhow to bring what they (Sheen and Gloss) choose into fashion.  On \nsimilar unerring principles, Mr. Sladdery the librarian, and indeed \nthe great farmer of gorgeous sheep, admits this very day, \"Why yes, \nsir, there certainly ARE reports concerning Lady Dedlock, very \ncurrent indeed among my high connexion, sir.  You see, my high \nconnexion must talk about something, sir; and it's only to get a \nsubject into vogue with one or two ladies I could name to make it \ngo down with the whole.  Just what I should have done with those \nladies, sir, in the case of any novelty you had left to me to bring \nin, they have done of themselves in this case through knowing Lady \nDedlock and being perhaps a little innocently jealous of her too, \nsir.  You'll find, sir, that this topic will be very popular among \nmy high connexion.  If it had been a speculation, sir, it would \nhave brought money.  And when I say so, you may trust to my being \nright, sir, for I have made it my business to study my high \nconnexion and to be able to wind it up like a clock, sir.\"\n\nThus rumour thrives in the capital, and will not go down into \nLincolnshire.  By half-past five, post meridian, Horse Guards' \ntime, it has even elicited a new remark from the Honourable Mr. \nStables, which bids fair to outshine the old one, on which he has \nso long rested his colloquial reputation.  This sparkling sally is \nto the effect that although he always knew she was the best-groomed \nwoman in the stud, he had no idea she was a bolter.  It is \nimmensely received in turf-circles.\n\nAt feasts and festivals also, in firmaments she has often graced, \nand among constellations she outshone but yesterday, she is still \nthe prevalent subject.  What is it?  Who is it?  When was it?  \nWhere was it?  How was it?  She is discussed by her dear friends \nwith all the genteelest slang in vogue, with the last new word, the \nlast new manner, the last new drawl, and the perfection of polite \nindifference.  A remarkable feature of the theme is that it is \nfound to be so inspiring that several people come out upon it who \nnever came out before--positively say things!  William Buffy \ncarries one of these smartnesses from the place where he dines down \nto the House, where the Whip for his party hands it about with his \nsnuff-box to keep men together who want to be off, with such effect \nthat the Speaker (who has had it privately insinuated into his own \near under the corner of his wig) cries, \"Order at the bar!\" three \ntimes without making an impression.\n\nAnd not the least amazing circumstance connected with her being \nvaguely the town talk is that people hovering on the confines of \nMr. Sladdery's high connexion, people who know nothing and ever did \nknow nothing about her, think it essential to their reputation to \npretend that she is their topic too, and to retail her at second-\nhand with the last new word and the last new manner, and the last \nnew drawl, and the last new polite indifference, and all the rest \nof it, all at second-hand but considered equal to new in inferior \nsystems and to fainter stars.  If there be any man of letters, art, \nor science among these little dealers, how noble in him to support \nthe feeble sisters on such majestic crutches!\n\nSo goes the wintry day outside the Dedlock mansion.  How within it?\n\nSir Leicester, lying in his bed, can speak a little, though with \ndifficulty and indistinctness.  He is enjoined to silence and to \nrest, and they have given him some opiate to lull his pain, for his \nold enemy is very hard with him.  He is never asleep, though \nsometimes he seems to fall into a dull waking doze.  He caused his \nbedstead to be moved out nearer to the window when he heard it was \nsuch inclement weather, and his head to be so adjusted that he \ncould see the driving snow and sleet.  He watches it as it falls, \nthroughout the whole wintry day.\n\nUpon the least noise in the house, which is kept hushed, his hand \nis at the pencil.  The old housekeeper, sitting by him, knows what \nhe would write and whispers, \"No, he has not come back yet, Sir \nLeicester.  It was late last night when he went.  He has been but a \nlittle time gone yet.\"\n\nHe withdraws his hand and falls to looking at the sleet and snow \nagain until they seem, by being long looked at, to fall so thick \nand fast that he is obliged to close his eyes for a minute on the \ngiddy whirl of white flakes and icy blots.\n\nHe began to look at them as soon as it was light.  The day is not \nyet far spent when he conceives it to be necessary that her rooms \nshould be prepared for her.  It is very cold and wet.  Let there be \ngood fires.  Let them know that she is expected.  Please see to it \nyourself.  He writes to this purpose on his slate, and Mrs. \nRouncewell with a heavy heart obeys.\n\n\"For I dread, George,\" the old lady says to her son, who waits \nbelow to keep her company when she has a little leisure, \"I dread, \nmy dear, that my Lady will never more set foot within these walls.\"\n\n\"That's a bad presentiment, mother.\"\n\n\"Nor yet within the walls of Chesney Wold, my dear.\"\n\n\"That's worse.  But why, mother?\"\n\n\"When I saw my Lady yesterday, George, she looked to me--and I may \nsay at me too--as if the step on the Ghost's Walk had almost walked \nher down.\"\n\n\"Come, come!  You alarm yourself with old-story fears, mother.\"\n\n\"No I don't, my dear.  No I don't.  It's going on for sixty year \nthat I have been in this family, and I never had any fears for it \nbefore.  But it's breaking up, my dear; the great old Dedlock \nfamily is breaking up.\"\n\n\"I hope not, mother.\"\n\n\"I am thankful I have lived long enough to be with Sir Leicester in \nthis illness and trouble, for I know I am not too old nor too \nuseless to be a welcomer sight to him than anybody else in my place \nwould be.  But the step on the Ghost's Walk will walk my Lady down, \nGeorge; it has been many a day behind her, and now it will pass her \nand go on.\"\n\n\"Well, mother dear, I say again, I hope not.\"\n\n\"Ah, so do I, George,\" the old lady returns, shaking her head and \nparting her folded hands.  \"But if my fears come true, and he has \nto know it, who will tell him!\"\n\n\"Are these her rooms?\"\n\n\"These are my Lady's rooms, just as she left them.\"\n\n\"Why, now,\" says the trooper, glancing round him and speaking in a \nlower voice, \"I begin to understand how you come to think as you do \nthink, mother.  Rooms get an awful look about them when they are \nfitted up, like these, for one person you are used to see in them, \nand that person is away under any shadow, let alone being God knows \nwhere.\"\n\nHe is not far out.  As all partings foreshadow the great final one, \nso, empty rooms, bereft of a familiar presence, mournfully whisper \nwhat your room and what mine must one day be.  My Lady's state has \na hollow look, thus gloomy and abandoned; and in the inner \napartment, where Mr. Bucket last night made his secret \nperquisition, the traces of her dresses and her ornaments, even the \nmirrors accustomed to reflect them when they were a portion of \nherself, have a desolate and vacant air.  Dark and cold as the \nwintry day is, it is darker and colder in these deserted chambers \nthan in many a hut that will barely exclude the weather; and though \nthe servants heap fires in the grates and set the couches and the \nchairs within the warm glass screens that let their ruddy light \nshoot through to the furthest corners, there is a heavy cloud upon \nthe rooms which no light will dispel.\n\nThe old housekeeper and her son remain until the preparations are \ncomplete, and then she returns upstairs.  Volumnia has taken Mrs. \nRouncewell's place in the meantime, though pearl necklaces and \nrouge pots, however calculated to embellish Bath, are but \nindifferent comforts to the invalid under present circumstances.  \nVolumnia, not being supposed to know (and indeed not knowing) what \nis the matter, has found it a ticklish task to offer appropriate \nobservations and consequently has supplied their place with \ndistracting smoothings of the bed-linen, elaborate locomotion on \ntiptoe, vigilant peeping at her kinsman's eyes, and one \nexasperating whisper to herself of, \"He is asleep.\"  In disproof of \nwhich superfluous remark Sir Leicester has indignantly written on \nthe slate, \"I am not.\"\n\nYielding, therefore, the chair at the bedside to the quaint old \nhousekeeper, Volumnia sits at a table a little removed, \nsympathetically sighing.  Sir Leicester watches the sleet and snow \nand listens for the returning steps that he expects.  In the ears \nof his old servant, looking as if she had stepped out of an old \npicture-frame to attend a summoned Dedlock to another world, the \nsilence is fraught with echoes of her own words, \"who will tell \nhim!\"\n\nHe has been under his valet's hands this morning to be made \npresentable and is as well got up as the circumstances will allow.  \nHe is propped with pillows, his grey hair is brushed in its usual \nmanner, his linen is arranged to a nicety, and he is wrapped in a \nresponsible dressing-gown.  His eye-glass and his watch are ready \nto his hand.  It is necessary--less to his own dignity now perhaps \nthan for her sake--that he should be seen as little disturbed and \nas much himself as may be.  Women will talk, and Volumnia, though a \nDedlock, is no exceptional case.  He keeps her here, there is \nlittle doubt, to prevent her talking somewhere else.  He is very \nill, but he makes his present stand against distress of mind and \nbody most courageously.\n\nThe fair Volumnia, being one of those sprightly girls who cannot \nlong continue silent without imminent peril of seizure by the \ndragon Boredom, soon indicates the approach of that monster with a \nseries of undisguisable yawns.  Finding it impossible to suppress \nthose yawns by any other process than conversation, she compliments \nMrs. Rouncewell on her son, declaring that he positively is one of \nthe finest figures she ever saw and as soldierly a looking person, \nshe should think, as what's his name, her favourite Life Guardsman\n--the man she dotes on, the dearest of creatures--who was killed at \nWaterloo.\n\nSir Leicester hears this tribute with so much surprise and stares \nabout him in such a confused way that Mrs. Rouncewell feels it \nnecesary to explain.\n\n\"Miss Dedlock don't speak of my eldest son, Sir Leicester, but my \nyoungest.  I have found him.  He has come home.\"\n\nSir Leicester breaks silence with a harsh cry.  \"George?  Your son \nGeorge come home, Mrs. Rouncewell?\"\n\nThe old housekeeper wipes her eyes.  \"Thank God.  Yes, Sir \nLeicester.\"\n\nDoes this discovery of some one lost, this return of some one so \nlong gone, come upon him as a strong confirmation of his hopes?  \nDoes he think, \"Shall I not, with the aid I have, recall her safely \nafter this, there being fewer hours in her case than there are \nyears in his?\"\n\nIt is of no use entreating him; he is determined to speak now, and \nhe does.  In a thick crowd of sounds, but still intelligibly enough \nto be understood.\n\n\"Why did you not tell me, Mrs. Rouncewell?\"\n\n\"It happened only yesterday, Sir Leicester, and I doubted your \nbeing well enough to be talked to of such things.\"\n\nBesides, the giddy Volumnia now remembers with her little scream \nthat nobody was to have known of his being Mrs. Rouncewell's son \nand that she was not to have told.  But Mrs. Rouncewell protests, \nwith warmth enough to swell the stomacher, that of course she would \nhave told Sir Leicester as soon as he got better.\n\n\"Where is your son George, Mrs. Rouncewell?\" asks Sir Leicester,\n\nMrs. Rouncewell, not a little alarmed by his disregard of the \ndoctor's injunctions, replies, in London.\n\n\"Where in London?\"\n\nMrs. Rouncewell is constrained to admit that he is in the house.\n\n\"Bring him here to my room.  Bring him directly.\"\n\nThe old lady can do nothing but go in search of him.  Sir \nLeicester, with such power of movement as he has, arranges himself \na little to receive him.  When he has done so, he looks out again \nat the falling sleet and snow and listens again for the returning \nsteps.  A quantity of straw has been tumbled down in the street to \ndeaden the noises there, and she might be driven to the door \nperhaps without his hearing wheels.\n\nHe is lying thus, apparently forgetful of his newer and minor \nsurprise, when the housekeeper returns, accompanied by her trooper \nson.  Mr. George approaches softly to the bedside, makes his bow, \nsquares his chest, and stands, with his face flushed, very heartily \nashamed of himself.\n\n\"Good heaven, and it is really George Rouncewell!\" exclaims Sir \nLeicester.  \"Do you remember me, George?\"\n\nThe trooper needs to look at him and to separate this sound from \nthat sound before he knows what he has said, but doing this and \nbeing a little helped by his mother, he replies, \"I must have a \nvery bad memory, indeed, Sir Leicester, if I failed to remember \nyou.\"\n\n\"When I look at you, George Rouncewell,\" Sir Leicester observes \nwith difficulty, \"I see something of a boy at Chesney Wold--I \nremember well--very well.\"\n\nHe looks at the trooper until tears come into his eyes, and then he \nlooks at the sleet and snow again.\n\n\"I ask your pardon, Sir Leicester,\" says the trooper, \"but would \nyou accept of my arms to raise you up?  You would lie easier, Sir \nLeicester, if you would allow me to move you.\"\n\n\"If you please, George Rouncewell; if you will be so good.\"\n\nThe trooper takes him in his arms like a child, lightly raises him, \nand turns him with his face more towards the window.  \"Thank you.  \nYou have your mother's gentleness,\" returns Sir Leicester, \"and \nyour own strength.  Thank you.\"\n\nHe signs to him with his hand not to go away.  George quietly \nremains at the bedside, waiting to be spoken to.\n\n\"Why did you wish for secrecy?\"  It takes Sir Leicester some time \nto ask this.\n\n\"Truly I am not much to boast of, Sir Leicester, and I--I should \nstill, Sir Leicester, if you was not so indisposed--which I hope \nyou will not be long--I should still hope for the favour of being \nallowed to remain unknown in general.  That involves explanations \nnot very hard to be guessed at, not very well timed here, and not \nvery creditable to myself.  However opinions may differ on a \nvariety of subjects, I should think it would be universally agreed, \nSir Leicester, that I am not much to boast of.\"\n\n\"You have been a soldier,\" observes Sir Leicester, \"and a faithful \none.\"\n\nGeorge makes his military how.  \"As far as that goes, Sir \nLeicester, I have done my duty under discipline, and it was the \nleast I could do.\"\n\n\"You find me,\" says Sir Leicester, whose eyes are much attracted \ntowards him, \"far from well, George Rouncewell.\"\n\n\"I am very sorry both to hear it and to see it, Sir Leicester.\"\n\n\"I am sure you are.  No.  In addition to my older malady, I have \nhad a sudden and bad attack.  Something that deadens,\" making an \nendeavour to pass one hand down one side, \"and confuses,\" touching \nhis lips.\n\nGeorge, with a look of assent and sympathy, makes another bow.  The \ndifferent times when they were both young men (the trooper much the \nyounger of the two) and looked at one another down at Chesney Wold \narise before them both and soften both.\n\nSir Leicester, evidently with a great determination to say, in his \nown manner, something that is on his mind before relapsing into \nsilence, tries to raise himself among his pillows a little more.  \nGeorge, observant of the action, takes him in his arms again and \nplaces him as he desires to be.  \"Thank you, George.  You are \nanother self to me.  You have often carried my spare gun at Chesney \nWold, George.  You are familiar to me in these strange \ncircumstances, very familiar.\"  He has put Sir Leicester's sounder \narm over his shoulder in lifting him up, and Sir Leicester is slow \nin drawing it away again as he says these words.\n\n\"I was about to add,\" he presently goes on, \"I was about to add, \nrespecting this attack, that it was unfortunately simultaneous with \na slight misunderstanding between my Lady and myself.  I do not \nmean that there was any difference between us (for there has been \nnone), but that there was a misunderstanding of certain \ncircumstances important only to ourselves, which deprives me, for a \nlittle while, of my Lady's society.  She has found it necessary to \nmake a journey--I trust will shortly return.  Volumnia, do I make \nmyself intelligible?  The words are not quite under my command in \nthe manner of pronouncing them.\"\n\nVolumnia understands him perfectly, and in truth be delivers \nhimself with far greater plainness than could have been supposed \npossible a minute ago.  The effort by which he does so is written \nin the anxious and labouring expression of his face.  Nothing but \nthe strength of his purpose enables him to make it.\n\n\"Therefore, Volumnia, I desire to say in your presence--and in the \npresence of my old retainer and friend, Mrs. Rouncewell, whose \ntruth and fidelity no one can question, and in the presence of her \nson George, who comes back like a familiar recollection of my youth \nin the home of my ancestors at Chesney Wold--in case I should \nrelapse, in case I should not recover, in case I should lose both \nmy speech and the power of writing, though I hope for better \nthings--\"\n\nThe old housekeeper weeping silently; Volumnia in the greatest \nagitation, with the freshest bloom on her cheeks; the trooper with \nhis arms folded and his head a little bent, respectfully attentive.\n\n\"Therefore I desire to say, and to call you all to witness--\nbeginning, Volumnia, with yourself, most solemnly--that I am on \nunaltered terms with Lady Dedlock.  That I assert no cause whatever \nof complaint against her.  That I have ever had the strongest \naffection for her, and that I retain it undiminished.  Say this to \nherself, and to every one.  If you ever say less than this, you \nwill be guilty of deliberate falsehood to me.\"\n\nVolumnia tremblingly protests that she will observe his injunctions \nto the letter.\n\n\"My Lady is too high in position, too handsome, too accomplished, \ntoo superior in most respects to the best of those by whom she is \nsurrounded, not to have her enemies and traducers, I dare say.  Let \nit be known to them, as I make it known to you, that being of sound \nmind, memory, and understanding, I revoke no disposition I have \nmade in her favour.  I abridge nothing I have ever bestowed upon \nher.  I am on unaltered terms with her, and I recall--having the \nfull power to do it if I were so disposed, as you see--no act I \nhave done for her advantage and happiness.\"\n\nHis formal array of words might have at any other time, as it has \noften had, something ludicrous in it, but at this time it is \nserious and affecting.  His noble earnestness, his fidelity, his \ngallant shielding of her, his generous conquest of his own wrong \nand his own pride for her sake, are simply honourable, manly, and \ntrue.  Nothing less worthy can be seen through the lustre of such \nqualities in the commonest mechanic, nothing less worthy can be \nseen in the best-born gentleman.  In such a light both aspire \nalike, both rise alike, both children of the dust shine equally.\n\nOverpowered by his exertions, he lays his head back on his pillows \nand closes his eyes for not more than a minute, when he again \nresumes his watching of the weather and his attention to the \nmuffled sounds.  In the rendering of those little services, and in \nthe manner of their acceptance, the trooper has become installed as \nnecessary to him.  Nothing has been said, but it is quite \nunderstood.  He falls a step or two backward to be out of sight and \nmounts guard a little behind his mother's chair.\n\nThe day is now beginning to decline.  The mist and the sleet into \nwhich the snow has all resolved itself are darker, and the blaze \nbegins to tell more vividly upon the room walls and furniture.  The \ngloom augments; the bright gas springs up in the streets; and the \npertinacious oil lamps which yet hold their ground there, with \ntheir source of life half frozen and half thawed, twinkle gaspingly \nlike fiery fish out of water--as they are.  The world, which has \nbeen rumbling over the straw and pulling at the bell, \"to inquire,\" \nbegins to go home, begins to dress, to dine, to discuss its dear \nfriend with all the last new modes, as already mentioned.\n\nNow does Sir Leicester become worse, restless, uneasy, and in great \npain.  Volumnia, lighting a candle (with a predestined aptitude for \ndoing something objectionable), is bidden to put it out again, for \nit is not yet dark enough.  Yet it is very dark too, as dark as it \nwill be all night.  By and by she tries again.  No!  Put it out.  \nIt is not dark enough yet.\n\nHis old housekeeper is the first to understand that he is striving \nto uphold the fiction with himself that it is not growing late.\n\n\"Dear Sir Leicester, my honoured master,\" she softly whispers, \"I \nmust, for your own good, and my duty, take the freedom of begging \nand praying that you will not lie here in the lone darkness \nwatching and waiting and dragging through the time.  Let me draw \nthe curtains, and light the candles, and make things more \ncomfortable about you.  The church-clocks will strike the hours \njust the same, Sir Leicester, and the night will pass away just the \nsame.  My Lady will come back, just the same.\"\n\n\"I know it, Mrs. Rouncewell, but I am weak--and he has been so long \ngone.\"\n\n\"Not so very long, Sir Leicester.  Not twenty-four hours yet.\"\n\n\"But that is a long time.  Oh, it is a long time!\"\n\nHe says it with a groan that wrings her heart.\n\nShe knows that this is not a period for bringing the rough light \nupon him; she thinks his tears too sacred to be seen, even by her.  \nTherefore she sits in the darkness for a while without a word, then \ngently begins to move about, now stirring the fire, now standing at \nthe dark window looking out.  Finally he tells her, with recovered \nself-command, \"As you say, Mrs. Rouncewell, it is no worse for \nbeing confessed.  It is getting late, and they are not come.  Light \nthe room!\"  When it is lighted and the weather shut out, it is only \nleft to him to listen.\n\nBut they find that however dejected and ill he is, he brightens \nwhen a quiet pretence is made of looking at the fires in her rooms \nand being sure that everything is ready to receive her.  Poor \npretence as it is, these allusions to her being expected keep up \nhope within him.\n\nMidnight comes, and with it the same blank.  The carriages in the \nstreets are few, and other late sounds in that neighbourhood there \nare none, unless a man so very nomadically drunk as to stray into \nthe frigid zone goes brawling and bellowing along the pavement.  \nUpon this wintry night it is so still that listening to the intense \nsilence is like looking at intense darkness.  If any distant sound \nbe audible in this case, it departs through the gloom like a feeble \nlight in that, and all is heavier than before.\n\nThe corporation of servants are dismissed to bed (not unwilling to \ngo, for they were up all last night), and only Mrs. Rouncewell and \nGeorge keep watch in Sir Leicester's room.  As the night lags \ntardily on--or rather when it seems to stop altogether, at between \ntwo and three o'clock--they find a restless craving on him to know \nmore about the weather, now he cannot see it.  Hence George, \npatrolling regularly every half-hour to the rooms so carefully \nlooked after, extends his march to the hall-door, looks about him, \nand brings back the best report he can make of the worst of nights, \nthe sleet still falling and even the stone footways lying ankle-\ndeep in icy sludge.\n\nVolumnia, in her room up a retired landing on the stair-case--the \nsecond turning past the end of the carving and gilding, a cousinly \nroom containing a fearful abortion of a portrait of Sir Leicester \nbanished for its crimes, and commanding in the day a solemn yard \nplanted with dried-up shrubs like antediluvian specimens of black \ntea--is a prey to horrors of many kinds.  Not last nor least among \nthem, possibly, is a horror of what may befall her little income in \nthe event, as she expresses it, \"of anything happening\" to Sir \nLeicester.  Anything, in this sense, meaning one thing only; and \nthat the last thing that can happen to the consciousness of any \nbaronet in the known world.\n\nAn effect of these horrors is that Volumnia finds she cannot go to \nbed in her own room or sit by the fire in her own room, but must \ncome forth with her fair head tied up in a profusion of shawl, and \nher fair form enrobed in drapery, and parade the mansion like a \nghost, particularly haunting the rooms, warm and luxurious, \nprepared for one who still does not return.  Solitude under such \ncircumstances being not to be thought of, Volumnia is attended by \nher maid, who, impressed from her own bed for that purpose, \nextremely cold, very sleepy, and generally an injured maid as \ncondemned by circumstances to take office with a cousin, when she \nhad resolved to be maid to nothing less than ten thousand a year, \nhas not a sweet expression of countenance.\n\nThe periodical visits of the trooper to these rooms, however, in \nthe course of his patrolling is an assurance of protection and \ncompany both to mistress and maid, which renders them very \nacceptable in the small hours of the night.  Whenever he is heard \nadvancing, they both make some little decorative preparation to \nreceive him; at other times they divide their watches into short \nscraps of oblivion and dialogues not wholly free from acerbity, as \nto whether Miss Dedlock, sitting with her feet upon the fender, was \nor was not falling into the fire when rescued (to her great \ndispleasure) by her guardian genius the maid.\n\n\"How is Sir Leicester now, Mr. George?\" inquires Volumnia, \nadjusting her cowl over her head.\n\n\"Why, Sir Leicester is much the same, miss.  He is very low and \nill, and he even wanders a little sometimes.\"\n\n\"Has he asked for me?\" inquires Volumnia tenderly.\n\n\"Why, no, I can't say he has, miss.  Not within my hearing, that is \nto say.\"\n\n\"This is a truly sad time, Mr. George.\"\n\n\"It is indeed, miss.  Hadn't you better go to bed?\"\n\n\"You had a deal better go to bed, Miss Dedlock,\" quoth the maid \nsharply.\n\nBut Volumnia answers No! No!  She may be asked for, she may be \nwanted at a moment's notice.  She never should forgive herself \"if \nanything was to happen\" and she was not on the spot.  She declines \nto enter on the question, mooted by the maid, how the spot comes to \nbe there, and not in her room (which is nearer to Sir Leicester's), \nbut staunchly declares that on the spot she will remain.  Volumnia \nfurther makes a merit of not having \"closed an eye\"--as if she had \ntwenty or thirty--though it is hard to reconcile this statement \nwith her having most indisputably opened two within five minutes.\n\nBut when it comes to four o'clock, and still the same blank, \nVolumnia's constancy begins to fail her, or rather it begins to \nstrengthen, for she now considers that it is her duty to be ready \nfor the morrow, when much may be expected of her, that, in fact, \nhowsoever anxious to remain upon the spot, it may be required of \nher, as an act of self-devotion, to desert the spot.  So when the \ntrooper reappears with his, \"Hadn't you better go to bed, miss?\" \nand when the maid protests, more sharply than before, \"You had a \ndeal better go to bed, Miss Dedlock!\" she meekly rises and says, \n\"Do with me what you think best!\"\n\nMr. George undoubtedly thinks it best to escort her on his arm to \nthe door of her cousinly chamber, and the maid as undoubtedly \nthinks it best to hustle her into bed with mighty little ceremony.  \nAccordingly, these steps are taken; and now the trooper, in his \nrounds, has the house to himself.\n\nThere is no improvement in the weather.  From the portico, from the \neaves, from the parapet, from every ledge and post and pillar, \ndrips the thawed snow.  It has crept, as if for shelter, into the \nlintels of the great door--under it, into the corners of the \nwindows, into every chink and crevice of retreat, and there wastes \nand dies.  It is falling still; upon the roof, upon the skylight, \neven through the skylight, and drip, drip, drip, with the \nregularity of the Ghost's Walk, on the stone floor below.\n\nThe trooper, his old recollections awakened by the solitary \ngrandeur of a great house--no novelty to him once at Chesney Wold--\ngoes up the stairs and through the chief rooms, holding up his \nlight at arm's length.  Thinking of his varied fortunes within the \nlast few weeks, and of his rustic boyhood, and of the two periods \nof his life so strangely brought together across the wide \nintermediate space; thinking of the murdered man whose image is \nfresh in his mind; thinking of the lady who has disappeared from \nthese very rooms and the tokens of whose recent presence are all \nhere; thinking of the master of the house upstairs and of the \nforeboding, \"Who will tell him!\" he looks here and looks there, and \nreflects how he MIGHT see something now, which it would tax his \nboldness to walk up to, lay his hand upon, and prove to be a fancy.  \nBut it is all blank, blank as the darkness above and below, while \nhe goes up the great staircase again, blank as the oppressive \nsilence.\n\n\"All is still in readiness, George Rouncewell?\"\n\n\"Quite orderly and right, Sir Leicester.\"\n\n\"No word of any kind?\"\n\nThe trooper shakes his head.\n\n\"No letter that can possibly have been overlooked?\"\n\nBut he knows there is no such hope as that and lays his head down \nwithout looking for an answer.\n\nVery familiar to him, as he said himself some hours ago, George \nRouncewell lifts him into easier positions through the long \nremainder of the blank wintry night, and equally familiar with his \nunexpressed wish, extinguishes the light and undraws the curtains \nat the first late break of day.  The day comes like a phantom.  \nCold, colourless, and vague, it sends a warning streak before it of \na deathlike hue, as if it cried out, \"Look what I am bringing you \nwho watch there!  Who will tell him!\"\n\n\n\nCHAPTER LIX\n\nEsther's Narrative\n\n\nIt was three o'clock in the morning when the houses outside London \ndid at last begin to exclude the country and to close us in with \nstreets.  We had made our way along roads in a far worse condition \nthan when we had traversed them by daylight, both the fall and the \nthaw having lasted ever since; but the energy of my companion never \nslackened.  It had only been, as I thought, of less assistance than \nthe horses in getting us on, and it had often aided them.  They had \nstopped exhausted halfway up hills, they had been driven through \nstreams of turbulent water, they had slipped down and become \nentangled with the harness; but he and his little lantern had been \nalways ready, and when the mishap was set right, I had never heard \nany variation in his cool, \"Get on, my lads!\"\n\nThe steadiness and confidence with which he had directed our \njourney back I could not account for.  Never wavering, he never \neven stopped to make an inquiry until we were within a few miles of \nLondon.  A very few words, here and there, were then enough for \nhim; and thus we came, at between three and four o'clock in the \nmorning, into Islington.\n\nI will not dwell on the suspense and anxiety with which I reflected \nall this time that we were leaving my mother farther and farther \nbehind every minute.  I think I had some strong hope that he must \nbe right and could not fail to have a satisfactory object in \nfollowing this woman, but I tormented myself with questioning it \nand discussing it during the whole journey.  What was to ensue when \nwe found her and what could compensate us for this loss of time \nwere questions also that I could not possibly dismiss; my mind was \nquite tortured by long dwelling on such reflections when we \nstopped.\n\nWe stopped in a high-street where there was a coach-stand.  My \ncompanion paid our two drivers, who were as completely covered with \nsplashes as if they had been dragged along the roads like the \ncarriage itself, and giving them some brief direction where to take \nit, lifted me out of it and into a hackney-coach he had chosen from \nthe rest.\n\n\"Why, my dear!\" he said as he did this.  \"How wet you are!\"\n\nI had not been conscious of it.  But the melted snow had found its \nway into the carriage, and I had got out two or three times when a \nfallen horse was plunging and had to be got up, and the wet had \npenetrated my dress.  I assured him it was no matter, but the \ndriver, who knew him, would not be dissuaded by me from running \ndown the street to his stable, whence he brought an armful of clean \ndry straw.  They shook it out and strewed it well about me, and I \nfound it warm and comfortable.\n\n\"Now, my dear,\" said Mr. Bucket, with his head in at the window \nafter I was shut up.  \"We're a-going to mark this person down.  It \nmay take a little time, but you don't mind that.  You're pretty \nsure that I've got a motive.  Ain't you?\"\n\nI little thought what it was, little thought in how short a time I \nshould understand it better, but I assured him that I had \nconfidence in him.\n\n\"So you may have, my dear,\" he returned.  \"And I tell you what!  If \nyou only repose half as much confidence in me as I repose in you \nafter what I've experienced of you, that'll do.  Lord!  You're no \ntrouble at all.  I never see a young woman in any station of \nsociety--and I've seen many elevated ones too--conduct herself like \nyou have conducted yourself since you was called out of your bed.  \nYou're a pattern, you know, that's what you are,\" said Mr. Bucket \nwarmly; \"you're a pattern.\"\n\nI told him I was very glad, as indeed I was, to have been no \nhindrance to him, and that I hoped I should be none now.\n\n\"My dear,\" he returned, \"when a young lady is as mild as she's \ngame, and as game as she's mild, that's all I ask, and more than I \nexpect.  She then becomes a queen, and that's about what you are \nyourself.\"\n\nWith these encouraging words--they really were encouraging to me \nunder those lonely and anxious circumstances--he got upon the box, \nand we once more drove away.  Where we drove I neither knew then \nnor have ever known since, but we appeared to seek out the \nnarrowest and worst streets in London.  Whenever I saw him \ndirecting the driver, I was prepared for our descending into a \ndeeper complication of such streets, and we never failed to do so.\n\nSometimes we emerged upon a wider thoroughfare or came to a larger \nbuilding than the generality, well lighted.  Then we stopped at \noffices like those we had visited when we began our journey, and I \nsaw him in consultation with others.  Sometimes he would get down \nby an archway or at a street corner and mysteriously show the light \nof his little lantern.  This would attract similar lights from \nvarious dark quarters, like so many insects, and a fresh \nconsultation would be held.  By degrees we appeared to contract our \nsearch within narrower and easier limits.  Single police-officers \non duty could now tell Mr. Bucket what he wanted to know and point \nto him where to go.  At last we stopped for a rather long \nconversation between him and one of these men, which I supposed to \nbe satisfactory from his manner of nodding from time to time.  When \nit was finished he came to me looking very busy and very attentive.\n\n\"Now, Miss Summerson, he said to me, \"you won't be alarmed whatever \ncomes off, I know.  It's not necessary for me to give you any \nfurther caution than to tell you that we have marked this person \ndown and that you may be of use to me before I know it myself.  I \ndon't like to ask such a thing, my dear, but would you walk a \nlittle way?\"\n\nOf course I got out directly and took his arm.\n\n\"It ain't so easy to keep your feet,\" said Mr. Bucket, \"but take \ntime.\"\n\nAlthough I looked about me confusedly and hurriedly as we crossed \nthe street, I thought I knew the place.  \"Are we in Holborn?\" I \nasked him.\n\n\"Yes,\" said Mr. Bucket.  \"Do you know this turning?\"\n\n\"It looks like Chancery Lane.\"\n\n\"And was christened so, my dear,\" said Mr. Bucket.\n\nWe turned down it, and as we went shuffling through the sleet, I \nheard the clocks strike half-past five.  We passed on in silence \nand as quickly as we could with such a foothold, when some one \ncoming towards us on the narrow pavement, wrapped in a cloak, \nstopped and stood aside to give me room.  In the same moment I \nheard an exclamation of wonder and my own name from Mr. Woodcourt.  \nI knew his voice very well.\n\nIt was so unexpected and so--I don't know what to call it, whether \npleasant or painful--to come upon it after my feverish wandering \njourney, and in the midst of the night, that I could not keep back \nthe tears from my eyes.  It was like hearing his voice in a strange \ncountry.\n\n\"My dear Miss Summerson, that you should be out at this hour, and \nin such weather!\"\n\nHe had heard from my guardian of my having been called away on some \nuncommon business and said so to dispense with any explanation.  I \ntold him that we had but just left a coach and were going--but then \nI was obliged to look at my companion.\n\n\"Why, you see, Mr. Woodcourt\"--he had caught the name from me--\"we \nare a-going at present into the next street.  Inspector Bucket.\"\n\nMr. Woodcourt, disregarding my remonstrances, had hurriedly taken \noff his cloak and was putting it about me.  \"That's a good move, \ntoo,\" said Mr. Bucket, assisting, \"a very good move.\"\n\n\"May I go with you?\" said Mr. Woodcourt.  I don't know whether to \nme or to my companion.\n\n\"Why, Lord!\" exclaimed Mr. Bucket, taking the answer on himself.  \n\"Of course you may.\"\n\nIt was all said in a moment, and they took me between them, wrapped \nin the cloak.\n\n\"I have just left Richard,\" said Mr. Woodcourt.  \"I have been \nsitting with him since ten o'clock last night.\"\n\n\"Oh, dear me, he is ill!\"\n\n\"No, no, believe me; not ill, but not quite well.  He was depressed \nand faint--you know he gets so worried and so worn sometimes--and \nAda sent to me of course; and when I came home I found her note and \ncame straight here.  Well! Richard revived so much after a little \nwhile, and Ada was so happy and so convinced of its being my doing, \nthough God knows I had little enough to do with it, that I remained \nwith him until he had been fast asleep some hours.  As fast asleep \nas she is now, I hope!\"\n\nHis friendly and familiar way of speaking of them, his unaffected \ndevotion to them, the grateful confidence with which I knew he had \ninspired my darling, and the comfort he was to her; could I \nseparate all this from his promise to me?  How thankless I must \nhave been if it had not recalled the words he said to me when he \nwas so moved by the change in my appearance: \"I will accept him as \na trust, and it shall be a sacred one!\"\n\nWe now turned into another narrow street.  \"Mr. Woodcourt,\" said \nMr. Bucket, who had eyed him closely as we came along, \"our \nbusiness takes us to a law-stationer's here, a certain Mr. \nSnagsby's.  What, you know him, do you?\"  He was so quick that he \nsaw it in an instant.\n\n\"Yes, I know a little of him and have called upon him at this \nplace.\"\n\n\"Indeed, sir?\" said Mr. Bucket.  \"Then you will be so good as to \nlet me leave Miss Summerson with you for a moment while I go and \nhave half a word with him?\"\n\nThe last police-officer with whom he had conferred was standing \nsilently behind us.  I was not aware of it until he struck in on my \nsaying I heard some one crying.\n\n\"Don't be alarmed, miss,\" he returned.  \"It's Snagsby's servant.\"\n\n\"Why, you see,\" said Mr. Bucket, \"the girl's subject to fits, and \nhas 'em bad upon her to-night.  A most contrary circumstance it is, \nfor I want certain information out of that girl, and she must be \nbrought to reason somehow.\"\n\n\"At all events, they wouldn't be up yet if it wasn't for her, Mr. \nBucket,\" said the other man.  \"She's been at it pretty well all \nnight, sir.\"\n\n\"Well, that's true,\" he returned.  \"My light's burnt out.  Show \nyours a moment.\"\n\nAll this passed in a whisper a door or two from the house in which \nI could faintly hear crying and moaning.  In the little round of \nlight produced for the purpose, Mr. Bucket went up to the door and \nknocked.  The door was opened after he had knocked twice, and he \nwent in, leaving us standing in the street.\n\n\"Miss Summerson,\" said Mr. Woodcourt, \"if without obtruding myself \non your confidence I may remain near you, pray let me do so.\"\n\n\"You are truly kind,\" I answered.  \"I need wish to keep no secret \nof my own from you; if I keep any, it is another's.\"\n\n\"I quite understand.  Trust me, I will remain near you only so long \nas I can fully respect it.\"\n\n\"I trust implicitly to you,\" I said.  \"I know and deeply feel how \nsacredly you keep your promise.\n\nAfter a short time the little round of light shone out again, and \nMr. Bucket advanced towards us in it with his earnest face.  \n\"Please to come in, Miss Summerson,\" he said, \"and sit down by the \nfire.  Mr. Woodcourt, from information I have received I understand \nyou are a medical man.  Would you look to this girl and see if \nanything can be done to bring her round.  She has a letter \nsomewhere that I particularly want.  It's not in her box, and I \nthink it must be about her; but she is so twisted and clenched up \nthat she is difficult to handle without hurting.\"\n\nWe all three went into the house together; although it was cold and \nraw, it smelt close too from being up all night.  In the passage \nbehind the door stood a scared, sorrowful-looking little man in a \ngrey coat who seemed to have a naturally polite manner and spoke \nmeekly.\n\n\"Downstairs, if you please, Mr. Bucket,\" said he.  \"The lady will \nexcuse the front kitchen; we use it as our workaday sitting-room.  \nThe back is Guster's bedroom, and in it she's a-carrying on, poor \nthing, to a frightful extent!\"\n\nWe went downstairs, followed by Mr. Snagsby, as I soon found the \nlittle man to be.  In the front kitchen, sitting by the fire, was \nMrs. Snagsby, with very red eyes and a very severe expression of \nface.\n\n\"My little woman,\" said Mr. Snagsby, entering behind us, \"to wave--\nnot to put too fine a point upon it, my dear--hostilities for one \nsingle moment in the course of this prolonged night, here is \nInspector Bucket, Mr. Woodcourt, and a lady.\"\n\nShe looked very much astonished, as she had reason for doing, and \nlooked particularly hard at me.\n\n\"My little woman,\" said Mr. Snagsby, sitting down in the remotest \ncorner by the door, as if he were taking a liberty, \"it is not \nunlikely that you may inquire of me why Inspector Bucket, Mr. \nWoodcourt, and a lady call upon us in Cook's Court, Cursitor \nStreet, at the present hour.  I don't know.  I have not the least \nidea.  If I was to be informed, I should despair of understanding, \nand I'd rather not be told.\"\n\nHe appeared so miserable, sitting with his head upon his hand, and \nI appeared so unwelcome, that I was going to offer an apology when \nMr. Bucket took the matter on himself.\n\n\"Now, Mr. Snagsby,\" said he, \"the best thing you can do is to go \nalong with Mr. Woodcourt to look after your Guster--\"\n\n\"My Guster, Mr. Bucket!\" cried Mr. Snagsby.  \"Go on, sir, go on.  I \nshall be charged with that next.\"\n\n\"And to hold the candle,\" pursued Mr. Bucket without correcting \nhimself, \"or hold her, or make yourself useful in any way you're \nasked.  Which there's not a man alive more ready to do, for you're \na man of urbanity and suavity, you know, and you've got the sort of \nheart that can feel for another.  Mr. Woodcourt, would you be so \ngood as see to her, and if you can get that letter from her, to let \nme have it as soon as ever you can?\"\n\nAs they went out, Mr. Bucket made me sit down in a corner by the \nfire and take off my wet shoes, which he turned up to dry upon the \nfender, talking all the time.\n\n\"Don't you be at all put out, miss, by the want of a hospitable \nlook from Mrs. Snagsby there, because she's under a mistake \naltogether.  She'll find that out sooner than will be agreeable to \na lady of her generally correct manner of forming her thoughts, \nbecause I'm a-going to explain it to her.\"  Here, standing on the \nhearth with his wet hat and shawls in his hand, himself a pile of \nwet, he turned to Mrs. Snagsby.  \"Now, the first thing that I say \nto you, as a married woman possessing what you may call charms, you \nknow--'Believe Me, if All Those Endearing,' and cetrer--you're well \nacquainted with the song, because it's in vain for you to tell me \nthat you and good society are strangers--charms--attractions, mind \nyou, that ought to give you confidence in yourself--is, that you've \ndone it.\"\n\nMrs. Snagsby looked rather alarmed, relented a little and faltered, \nwhat did Mr. Bucket mean.\n\n\"What does Mr. Bucket mean?\" he repeated, and I saw by his face \nthat all the time he talked he was listening for the discovery of \nthe letter, to my own great agitation, for I knew then how \nimportant it must be; \"I'll tell you what he means, ma'am.  Go and \nsee Othello acted.  That's the tragedy for you.\"\n\nMrs. Snagsby consciously asked why.\n\n\"Why?\" said Mr. Bucket.  \"Because you'll come to that if you don't \nlook out.  Why, at the very moment while I speak, I know what your \nmind's not wholly free from respecting this young lady.  But shall \nI tell you who this young lady is?  Now, come, you're what I call \nan intellectual woman--with your soul too large for your body, if \nyou come to that, and chafing it--and you know me, and you \nrecollect where you saw me last, and what was talked of in that \ncircle.  Don't you?  Yes!  Very well.  This young lady is that \nyoung lady.\"\n\nMrs. Snagsby appeared to understand the reference better than I did \nat the time.\n\n\"And Toughey--him as you call Jo--was mixed up in the same \nbusiness, and no other; and the law-writer that you know of was \nmixed up in the same business, and no other; and your husband, with \nno more knowledge of it than your great grandfather, was mixed up \n(by Mr. Tulkinghorn, deceased, his best customer) in the same \nbusiness, and no other; and the whole bileing of people was mixed \nup in the same business, and no other.  And yet a married woman, \npossessing your attractions, shuts her eyes (and sparklers too), \nand goes and runs her delicate-formed head against a wall.  Why, I \nam ashamed of you!  (I expected Mr. Woodcourt might have got it by \nthis time.)\"\n\nMrs. Snagsby shook her head and put her handkerchief to her eyes.\n\n\"Is that all?\" said Mr. Bucket excitedly.  \"No.  See what happens.  \nAnother person mixed up in that business and no other, a person in \na wretched state, comes here to-night and is seen a-speaking to \nyour maid-servant; and between her and your maid-servant there \npasses a paper that I would give a hundred pound for, down.  What \ndo you do?  You hide and you watch 'em, and you pounce upon that \nmaid-servant--knowing what she's subject to and what a little thing \nwill bring 'em on--in that surprising manner and with that severity \nthat, by the Lord, she goes off and keeps off, when a life may be \nhanging upon that girl's words!\"\n\nHe so thoroughly meant what he said now that I involuntarily \nclasped my hands and felt the room turning away from me.  But it \nstopped.  Mr. Woodcourt came in, put a paper into his hand, and \nwent away again.\n\n\"Now, Mrs, Snagsby, the only amends you can make,\" said Mr. Bucket, \nrapidly glancing at it, \"is to let me speak a word to this young \nlady in private here.  And if you know of any help that you can \ngive to that gentleman in the next kitchen there or can think of \nany one thing that's likelier than another to bring the girl round, \ndo your swiftest and best!\"  In an instant she was gone, and he had \nshut the door.  \"Now my dear, you're steady and quite sure of \nyourself?\"\n\n\"Quite,\" said I.\n\n\"Whose writing is that?\"\n\nIt was my mother's.  A pencil-writing, on a crushed and torn piece \nof paper, blotted with wet.  Folded roughly like a letter, and \ndirected to me at my guardian's.\n\n\"You know the hand,\" he said, \"and if you are firm enough to read \nit to me, do!  But be particular to a word.\"\n\nIt had been written in portions, at different times.  I read what \nfollows:\n\n\n\"I came to the cottage with two objects.  First, to see the dear \none, if I could, once more--but only to see her--not to speak to \nher or let her know that I was near.  The other object, to elude \npursuit and to be lost.  Do not blame the mother for her share.  \nThe assistance that she rendered me, she rendered on my strongest \nassurance that it was for the dear one's good.  You remember her \ndead child.  The men's consent I bought, but her help was freely \ngiven.\"\n\n\n\"'I came.'  That was written,\" said my companion, \"when she rested \nthere.  It bears out what I made of it.  I was right.\"\n\nThe next was written at another time:\n\n\n\"I have wandered a long distance, and for many hours, and I know \nthat I must soon die.  These streets!  I have no purpose but to \ndie.  When I left, I had a worse, but I am saved from adding that \nguilt to the rest.  Cold, wet, and fatigue are sufficient causes \nfor my being found dead, but I shall die of others, though I suffer \nfrom these.  It was right that all that had sustained me should \ngive way at once and that I should die of terror and my conscience.\n\n\n\"Take courage,\" said Mr. Bucket.  \"There's only a few words more.\"\n\nThose, too, were written at another time.  To all appearance, \nalmost in the dark:\n\n\n\"I have done all I could do to be lost.  I shall be soon forgotten \nso, and shall disgrace him least.  I have nothing about me by which \nI can be recognized.  This paper I part with now.  The place where \nI shall lie down, if I can get so far, has been often in my mind.  \nFarewell.  Forgive.\"\n\n\nMr. Bucket, supporting me with his arm, lowered me gently into my \nchair.  \"Cheer up!  Don't think me hard with you, my dear, but as \nsoon as ever you feel equal to it, get your shoes on and be ready.\"\n\nI did as he required, but I was left there a long time, praying for \nmy unhappy mother.  They were all occupied with the poor girl, and \nI heard Mr. Woodcourt directing them and speaking to her often.  At \nlength he came in with Mr. Bucket and said that as it was important \nto address her gently, he thought it best that I should ask her for \nwhatever information we desired to obtain.  There was no doubt that \nshe could now reply to questions if she were soothed and not \nalarmed.  The questions, Mr. Bucket said, were how she came by the \nletter, what passed between her and the person who gave her the \nletter, and where the person went.  Holding my mind as steadily as \nI could to these points, I went into the next room with them.  Mr. \nWoodcourt would have remained outside, but at my solicitation went \nin with us.\n\nThe poor girl was sitting on the floor where they had laid her \ndown.  They stood around her, though at a little distance, that she \nmight have air.  She was not pretty and looked weak and poor, but \nshe had a plaintive and a good face, though it was still a little \nwild.  I kneeled on the ground beside her and put her poor head \nupon my shoulder, whereupon she drew her arm round my neck and \nburst into tears.\n\n\"My poor girl,\" said I, laying my face against her forehead, for \nindeed I was crying too, and trembling, \"it seems cruel to trouble \nyou now, but more depends on our knowing something about this \nletter than I could tell you in an hour.\"\n\nShe began piteously declaring that she didn't mean any harm, she \ndidn't mean any harm, Mrs. Snagsby!\n\n\"We are all sure of that,\" said I.  \"But pray tell me how you got \nit.\"\n\n\"Yes, dear lady, I will, and tell you true.  I'll tell true, \nindeed, Mrs. Snagsby.\"\n\n\"I am sure of that,\" said I.  \"And how was it?\"\n\n\"I had been out on an errand, dear lady--long after it was dark--\nquite late; and when I came home, I found a common-looking person, \nall wet and muddy, looking up at our house.  When she saw me coming \nin at the door, she called me back and said did I live here.  And I \nsaid yes, and she said she knew only one or two places about here, \nbut had lost her way and couldn't find them.  Oh, what shall I do, \nwhat shall I do!  They won't believe me!  She didn't say any harm \nto me, and I didn't say any harm to her, indeed, Mrs. Snagsby!\"\n\nIt was necessary for her mistress to comfort her--which she did, I \nmust say, with a good deal of contrition--before she could be got \nbeyond this.\n\n\"She could not find those places,\" said I.\n\n\"No!\" cried the girl, shaking her head.  \"No!  Couldn't find them.  \nAnd she was so faint, and lame, and miserable, Oh so wretched, that \nif you had seen her, Mr. Snagsby, you'd have given her half a \ncrown, I know!\"\n\n\"Well, Guster, my girl,\" said he, at first not knowing what to say.  \n\"I hope I should.\"\n\n\"And yet she was so well spoken,\" said the girl, looking at me with \nwide open eyes, \"that it made a person's heart bleed.  And so she \nsaid to me, did I know the way to the burying ground?  And I asked \nher which burying ground.  And she said, the poor burying ground.  \nAnd so I told her I had been a poor child myself, and it was \naccording to parishes.  But she said she meant a poor burying \nground not very far from here, where there was an archway, and a \nstep, and an iron gate.\"\n\nAs I watched her face and soothed her to go on, I saw that Mr. \nBucket received this with a look which I could not separate from \none of alarm.\n\n\"Oh, dear, dear!\" cried the girl, pressing her hair back with her \nhands.  \"What shall I do, what shall I do!  She meant the burying \nground where the man was buried that took the sleeping-stuff--that \nyou came home and told us of, Mr. Snagsby--that frightened me so, \nMrs. Snagsby.  Oh, I am frightened again.  Hold me!\"\n\n\"You are so much better now,\" sald I.  \"Pray, pray tell me more.\"\n\n\"Yes I will, yes I will!  But don't be angry with me, that's a dear \nlady, because I have been so ill.\"\n\nAngry with her, poor soul!\n\n\"There!  Now I will, now I will.  So she said, could I tell her how \nto find it, and I said yes, and I told her; and she looked at me \nwith eyes like almost as if she was blind, and herself all waving \nback.  And so she took out the letter, and showed it me, and said \nif she was to put that in the post-office, it would be rubbed out \nand not minded and never sent; and would I take it from her, and \nsend it, and the messenger would be paid at the house.  And so I \nsaid yes, if it was no harm, and she said no--no harm.  And so I \ntook it from her, and she said she had nothing to give me, and I \nsaid I was poor myself and consequently wanted nothing.  And so she \nsaid God bless you, and went.\"\n\n\"And did she go--\"\n\n\"Yes,\" cried the girl, anticipating the inquiry.  \"Yes!  She went \nthe way I had shown her.  Then I came in, and Mrs. Snagsby came \nbehind me from somewhere and laid hold of me, and I was \nfrightened.\"\n\nMr. Woodcourt took her kindly from me.  Mr. Bucket wrapped me up, \nand immediately we were in the street.  Mr. Woodcourt hesitated, \nbut I said, \"Don't leave me now!\" and Mr. Bucket added, \"You'll be \nbetter with us, we may want you; don't lose time!\"\n\nI have the most confused impressions of that walk.  I recollect \nthat it was neither night nor day, that morning was dawning but the \nstreet-lamps were not yet put out, that the sleet was still falling \nand that all the ways were deep with it.  I recollect a few chilled \npeople passing in the streets.  I recollect the wet house-tops, the \nclogged and bursting gutters and water-spouts, the mounds of \nblackened ice and snow over which we passed, the narrowness of the \ncourts by which we went.  At the same time I remember that the poor \ngirl seemed to be yet telling her story audibly and plainly in my \nhearing, that I could feel her resting on my arm, that the stained \nhouse-fronts put on human shapes and looked at me, that great \nwater-gates seemed to be opening and closing in my head or in the \nair, and that the unreal things were more substantial than the \nreal.\n\nAt last we stood under a dark and miserable covered way, where one \nlamp was burning over an iron gate and where the morning faintly \nstruggled in.  The gate was closed.  Beyond it was a burial ground\n--a dreadful spot in which the night was very slowly stirring, but \nwhere I could dimly see heaps of dishonoured graves and stones, \nhemmed in by filthy houses with a few dull lights in their windows \nand on whose walls a thick humidity broke out like a disease.  On \nthe step at the gate, drenched in the fearful wet of such a place, \nwhich oozed and splashed down everywhere, I saw, with a cry of pity \nand horror, a woman lying--Jenny, the mother of the dead child.\n\nI ran forward, but they stopped me, and Mr. Woodcourt entreated me \nwith the greatest earnestness, even with tears, before I went up to \nthe figure to listen for an instant to what Mr. Bucket said.  I did \nso, as I thought.  I did so, as I am sure.\n\n\"Miss Summerson, you'll understand me, if you think a moment.  They \nchanged clothes at the cottage.\"\n\nThey changed clothes at the cottage.  I could repeat the words in \nmy mind, and I knew what they meant of themselves, but I attached \nno meaning to them in any other connexion.\n\n\"And one returned,\" said Mr. Bucket, \"and one went on.  And the one \nthat went on only went on a certain way agreed upon to deceive and \nthen turned across country and went home.  Think a moment!\"\n\nI could repeat this in my mind too, but I had not the least idea \nwhat it meant.  I saw before me, lying on the step, the mother of \nthe dead child.  She lay there with one arm creeping round a bar of \nthe iron gate and seeming to embrace it.  She lay there, who had so \nlately spoken to my mother.  She lay there, a distressed, \nunsheltered, senseless creature.  She who had brought my mother's \nletter, who could give me the only clue to where my mother was; \nshe, who was to guide us to rescue and save her whom we had sought \nso far, who had come to this condition by some means connected with \nmy mother that I could not follow, and might be passing beyond our \nreach and help at that moment; she lay there, and they stopped me!  \nI saw but did not comprehend the solemn and compassionate look in \nMr. Woodcourt's face.  I saw but did not comprehend his touching \nthe other on the breast to keep him back.  I saw him stand \nuncovered in the bitter air, with a reverence for something.  But \nmy understanding for all this was gone.\n\nI even heard it said between them, \"Shall she go?\"\n\n\"She had better go.  Her hands should be the first to touch her.  \nThey have a higher right than ours.\"\n\nI passed on to the gate and stooped down.  I lifted the heavy head, \nput the long dank hair aside, and turned the face.  And it was my \nmother, cold and dead.\n\n\n\nCHAPTER LX\n\nPerspective\n\n\nI proceed to other passages of my narrative.  From the goodness of \nall about me I derived such consolation as I can never think of \nunmoved.  I have already said so much of myself, and so much still \nremains, that I will not dwell upon my sorrow.  I had an illness, \nbut it was not a long one; and I would avoid even this mention of \nit if I could quite keep down the recollection of their sympathy.\n\nI proceed to other passages of my narrative.\n\nDuring the time of my illness, we were still in London, where Mrs. \nWoodcourt had come, on my guardian's invitation, to stay with us.  \nWhen my guardian thought me well and cheerful enough to talk with \nhim in our old way--though I could have done that sooner if he \nwould have believed me--I resumed my work and my chair beside his.  \nHe had appointed the time himself, and we were alone.\n\n\"Dame Trot,\" said he, receiving me with a kiss, \"welcome to the \ngrowlery again, my dear.  I have a scheme to develop, little woman.  \nI propose to remain here, perhaps for six months, perhaps for a \nlonger time--as it may be.  Quite to settle here for a while, in \nshort.\"\n\n\"And in the meanwhile leave Bleak House?\" said I.\n\n\"Aye, my dear?  Bleak House,\" he returned, \"must learn to take care \nof itself.\"\n\nI thought his tone sounded sorrowful, but looking at him, I saw his \nkind face lighted up by its pleasantest smile.\n\n\"Bleak House,\" he repeated--and his tone did NOT sound sorrowful, I \nfound--\"must learn to take care of itself.  It is a long way from \nAda, my dear, and Ada stands much in need of you.\"\n\n\"It's like you, guardian,\" said I, \"to have been taking that into \nconsideration for a happy surprise to both of us.\"\n\n\"Not so disinterested either, my dear, if you mean to extol me for \nthat virtue, since if you were generally on the road, you could be \nseldom with me.  And besides, I wish to hear as much and as often \nof Ada as I can in this condition of estrangement from poor Rick.  \nNot of her alone, but of him too, poor fellow.\"\n\n\"Have you seen Mr. Woodcourt, this morning, guardian?\"\n\n\"I see Mr. Woodcourt every morning, Dame Durden.\"\n\n\"Does he still say the same of Richard?\"\n\n\"Just the same.  He knows of no direct bodily illness that he has; \non the contrary, he believes that he has none.  Yet he is not easy \nabout him; who CAN be?\"\n\nMy dear girl had been to see us lately every day, some times twice \nin a day.  But we had foreseen, all along, that this would only \nlast until I was quite myself.  We knew full well that her fervent \nheart was as full of affection and gratitude towards her cousin \nJohn as it had ever been, and we acquitted Richard of laying any \ninjunctions upon her to stay away; but we knew on the other hand \nthat she felt it a part of her duty to him to be sparing of her \nvisits at our house.  My guardian's delicacy had soon perceived \nthis and had tried to convey to her that he thought she was right.\n\n\"Dear, unfortunate, mistaken Richard,\" said I.  \"When will he awake \nfrom his delusion!\"\n\n\"He is not in the way to do so now, my dear,\" replied my guardian.  \n\"The more he suffers, the more averse he will be to me, having made \nme the principal representative of the great occasion of his \nsuffering.\"\n\nI could not help adding, \"So unreasonably!\"\n\n\"Ah, Dame Trot, Dame Trot,\" returned my guardian, \"what shall we \nfind reasonable in Jarndyce and Jarndyce!  Unreason and injustice \nat the top, unreason and injustice at the heart and at the bottom, \nunreason and injustice from beginning to end--if it ever has an \nend--how should poor Rick, always hovering near it, pluck reason \nout of it?  He no more gathers grapes from thorns or figs from \nthistles than older men did in old times.\"\n\nHis gentleness and consideration for Richard whenever we spoke of \nhim touched me so that I was always silent on this subject very \nsoon.\n\n\"I suppose the Lord Chancellor, and the Vice Chancellors, and the \nwhole Chancery battery of great guns would be infinitely astonished \nby such unreason and injustice in one of their suitors,\" pursued my \nguardian.  \"When those learned gentlemen begin to raise moss-roses \nfrom the powder they sow in their wigs, I shall begin to be \nastonished too!\"\n\nHe checked himself in glancing towards the window to look where the \nwind was and leaned on the back of my chair instead.\n\n\"Well, well, little woman!  To go on, my dear.  This rock we must \nleave to time, chance, and hopeful circumstance.  We must not \nshipwreck Ada upon it.  She cannot afford, and he cannot afford, \nthe remotest chance of another separation from a friend.  Therefore \nI have particularly begged of Woodcourt, and I now particularly beg \nof you, my dear, not to move this subject with Rick.  Let it rest.  \nNext week, next month, next year, sooner or later, he will see me \nwith clearer eyes.  I can wait.\"\n\nBut I had already discussed it with him, I confessed; and so, I \nthought, had Mr. Woodcourt.\n\n\"So he tells me,\" returned my guardian.  \"Very good.  He has made \nhis protest, and Dame Durden has made hers, and there is nothing \nmore to be said about it.  Now I come to Mrs. Woodcourt.  How do \nyou like her, my dear?\"\n\nIn answer to this question, which was oddly abrupt, I said I liked \nher very much and thought she was more agreeable than she used to \nbe.\n\n\"I think so too,\" said my guardian.  \"Less pedigree?  Not so much \nof Morgan ap--what's his name?\"\n\nThat was what I meant, I acknowledged, though he was a very \nharmless person, even when we had had more of him.\n\n\"Still, upon the whole, he is as well in his native mountains,\" \nsaid my guardian.  \"I agree with you.  Then, little woman, can I do \nbetter for a time than retain Mrs. Woodcourt here?\"\n\nNo.  And yet--\n\nMy guardian looked at me, waiting for what I had to say.\n\nI had nothing to say.  At least I had nothing in my mind that I \ncould say.  I had an undefined impression that it might have been \nbetter if we had had some other inmate, but I could hardly have \nexplained why even to myself.  Or, if to myself, certainly not to \nanybody else.\n\n\"You see,\" said my guardian, \"our neighbourhood is in Woodcourt's \nway, and he can come here to see her as often as he likes, which is \nagreeable to them both; and she is familiar to us and fond of you.\"\n\nYes.  That was undeniable.  I had nothing to say against it.  I \ncould not have suggested a better arrangement, but I was not quite \neasy in my mind.  Esther, Esther, why not?  Esther, think!\n\n\"It is a very good plan indeed, dear guardian, and we could not do \nbetter.\"\n\n\"Sure, little woman?\"\n\nQuite sure.  I had had a moment's time to think, since I had urged \nthat duty on myself, and I was quite sure.\n\n\"Good,\" said my guardian.  \"It shall be done.  Carried \nunanimously.\"\n\n\"Carried unanimously,\" I repeated, going on with my work.\n\nIt was a cover for his book-table that I happened to be \nornamenting.  It had been laid by on the night preceding my sad \njourney and never resumed.  I showed it to him now, and he admired \nit highly.  After I had explained the pattern to him and all the \ngreat effects that were to come out by and by, I thought I would go \nback to our last theme.\n\n\"You said, dear guardian, when we spoke of Mr. Woodcourt before Ada \nleft us, that you thought he would give a long trial to another \ncountry.  Have you been advising him since?\"\n\n\"Yes, little woman, pretty often.\"\n\n\"Has he decided to do so?\"\n\n\"I rather think not.\"\n\n\"Some other prospect has opened to him, perhaps?\" said I.\n\n\"Why--yes--perhaps,\" returned my guardian, beginning his answer in \na very deliberate manner.  \"About half a year hence or so, there is \na medical attendant for the poor to be appointed at a certain place \nin Yorkshire.  It is a thriving place, pleasantly situated--streams \nand streets, town and country, mill and moor--and seems to present \nan opening for such a man.  I mean a man whose hopes and aims may \nsometimes lie (as most men's sometimes do, I dare say) above the \nordinary level, but to whom the ordinary level will be high enough \nafter all if it should prove to be a way of usefulness and good \nservice leading to no other.  All generous spirits are ambitious, I \nsuppose, but the ambition that calmly trusts itself to such a road, \ninstead of spasmodically trying to fly over it, is of the kind I \ncare for.  It is Woodcourt's kind.\"\n\n\"And will he get this appointment?\" I asked.\n\n\"Why, little woman,\" returned my guardian, smiling, \"not being an \noracle, I cannot confidently say, but I think so.  His reputation \nstands very high; there were people from that part of the country \nin the shipwreck; and strange to say, I believe the best man has \nthe best chance.  You must not suppose it to be a fine endowment.  \nIt is a very, very commonplace affair, my dear, an appointment to a \ngreat amount of work and a small amount of pay; but better things \nwill gather about it, it may be fairly hoped.\"\n\n\"The poor of that place will have reason to bless the choice if it \nfalls on Mr. Woodcourt, guardian.\"\n\n\"You are right, little woman; that I am sure they will.\"\n\nWe said no more about it, nor did he say a word about the future of \nBleak House.  But it was the first time I had taken my seat at his \nside in my mourning dress, and that accounted for it, I considered.\n\nI now began to visit my dear girl every day in the dull dark corner \nwhere she lived.  The morning was my usual time, but whenever I \nfound I had an hour or so to spare, I put on my bonnet and bustled \noff to Chancery Lane.  They were both so glad to see me at all \nhours, and used to brighten up so when they heard me opening the \ndoor and coming in (being quite at home, I never knocked), that I \nhad no fear of becoming troublesome just yet.\n\nOn these occasions I frequently found Richard absent.  At other \ntimes he would be writing or reading papers in the cause at that \ntable of his, so covered with papers, which was never disturbed.  \nSometimes I would come upon him lingering at the door of Mr. \nVholes's office.  Sometimes I would meet him in the neighbourhood \nlounging about and biting his nails.  I often met him wandering in \nLincoln's Inn, near the place where I had first seen him, oh how \ndifferent, how different!\n\nThat the money Ada brought him was melting away with the candles I \nused to see burning after dark in Mr. Vholes's office I knew very \nwell.  It was not a large amount in the beginning, he had married \nin debt, and I could not fail to understand, by this time, what was \nmeant by Mr. Vholes's shoulder being at the wheel--as I still heard \nit was.  My dear made the best of housekeepers and tried hard to \nsave, but I knew that they were getting poorer and poorer every \nday.\n\nShe shone in the miserable corner like a beautiful star.  She \nadorned and graced it so that it became another place.  Paler than \nshe had been at home, and a little quieter than I had thought \nnatural when she was yet so cheerful and hopeful, her face was so \nunshadowed that I half believed she was blinded by her love for \nRichard to his ruinous career.\n\nI went one day to dine with them while I was under this impression.  \nAs I turned into Symond's Inn, I met little Miss Flite coming out.  \nShe had been to make a stately call upon the wards in Jarndyce, as \nshe still called them, and had derived the highest gratification \nfrom that ceremony.  Ada had already told me that she called every \nMonday at five o'clock, with one little extra white bow in her \nbonnet, which never appeared there at any other time, and with her \nlargest reticule of documents on her arm.\n\n\"My dear!\" she began.  \"So delighted!  How do you do!  So glad to \nsee you.  And you are going to visit our interesting Jarndyce \nwards?  TO be sure!  Our beauty is at home, my dear, and will be \ncharmed to see you.\"\n\n\"Then Richard is not come in yet?\" said I.  \"I am glad of that, for \nI was afraid of being a little late.\"\n\n\"No, he is not come in,\" returned Miss Flite.  \"He has had a long \nday in court.  I left him there with Vholes.  You don't like \nVholes, I hope?  DON'T like Vholes.  Dan-gerous man!\"\n\n\"I am afraid you see Richard oftener than ever now,\" said I.\n\n\"My dearest,\" returned Miss Flite, \"daily and hourly.  You know \nwhat I told you of the attraction on the Chancellor's table?  My \ndear, next to myself he is the most constant suitor in court.  He \nbegins quite to amuse our little party.  Ve-ry friendly little \nparty, are we not?\"\n\nIt was miserable to hear this from her poor mad lips, though it was \nno surprise.\n\n\"In short, my valued friend,\" pursued Miss Flite, advancing her \nlips to my ear with an air of equal patronage and mystery, \"I must \ntell you a secret.  I have made him my executor.  Nominated, \nconstituted, and appointed him.  In my will.  Ye-es.\"\n\n\"Indeed?\" said I.\n\n\"Ye-es,\" repeated Miss Flite in her most genteel accents, \"my \nexecutor, administrator, and assign.  (Our Chancery phrases, my \nlove.)  I have reflected that if I should wear out, he will be able \nto watch that judgment.  Being so very regular in his attendance.\"\n\nIt made me sigh to think of him.\n\n\"I did at one time mean,\" said Miss Flite, echoing the sigh, \"to \nnominate, constitute, and appoint poor Gridley.  Also very regular, \nmy charming girl.  I assure you, most exemplary!  But he wore out, \npoor man, so I have appointed his successor.  Don't mention it.  \nThis is in confidence.\"\n\nShe carefully opened her reticule a little way and showed me a \nfolded piece of paper inside as the appointment of which she spoke.\n\n\"Another secret, my dear.  I have added to my collection of birds.\"\n\n\"Really, Miss Flite?\" said I, knowing how it pleased her to have \nher confidence received with an appearance of interest.\n\nShe nodded several times, and her face became overcast and gloomy.  \n\"Two more.  I call them the Wards in Jarndyce.  They are caged up \nwith all the others.  With Hope, Joy, Youth, Peace, Rest, Life, \nDust, Ashes, Waste, Want, Ruin, Despair, Madness, Death, Cunning, \nFolly, Words, Wigs, Rags, Sheepskin, Plunder, Precedent, Jargon, \nGammon, and Spinach!\"\n\nThe poor soul kissed me with the most troubled look I had ever seen \nin her and went her way.  Her manner of running over the names of \nher birds, as if she were afraid of hearing them even from her own \nlips, quite chilled me.\n\nThis was not a cheering preparation for my visit, and I could have \ndispensed with the company of Mr. Vholes, when Richard (who arrived \nwithin a minute or two after me) brought him to share our dinner.  \nAlthough it was a very plain one, Ada and Richard were for some \nminutes both out of the room together helping to get ready what we \nwere to eat and drink.  Mr. Vholes took that opportunity of holding \na little conversation in a low voice with me.  He came to the \nwindow where I was sitting and began upon Symond's Inn.\n\n\"A dull place, Miss Summerson, for a life that is not an official \none,\" said Mr. Vholes, smearing the glass with his black glove to \nmake it clearer for me.\n\n\"There is not much to see here,\" said I.\n\n\"Nor to hear, miss,\" returned Mr. Vholes.  \"A little music does \noccasionally stray in, but we are not musical in the law and soon \neject it.  I hope Mr. Jarndyce is as well as his friends could wish \nhim?\"\n\nI thanked Mr. Vholes and said he was quite well.\n\n\"I have not the pleasure to be admitted among the number of his \nfriends myself,\" said Mr. Vholes, \"and I am aware that the \ngentlemen of our profession are sometimes regarded in such quarters \nwith an unfavourable eye.  Our plain course, however, under good \nreport and evil report, and all kinds of prejudice (we are the \nvictims of prejudice), is to have everything openly carried on.  \nHow do you find Mr. C. looking, Miss Summerson?\"\n\n\"He looks very ill.  Dreadfully anxious.\"\n\n\"Just so,\" said Mr. Vholes.\n\nHe stood behind me with his long black figure reaching nearly to \nthe ceiling of those low rooms, feeling the pimples on his face as \nif they were ornaments and speaking inwardly and evenly as though \nthere were not a human passion or emotion in his nature.\n\n\"Mr. Woodcourt is in attendance upon Mr. C., I believe?\" he \nresumed.\n\n\"Mr. Woodcourt is his disinterested friend,\" I answered.\n\n\"But I mean in professional attendance, medical attendance.\"\n\n\"That can do little for an unhappy mind,\" said I.\n\n\"Just so,\" said Mr. Vholes.\n\nSo slow, so eager, so bloodless and gaunt, I felt as if Richard \nwere wasting away beneath the eyes of this adviser and there were \nsomething of the vampire in him.\n\n\"Miss Summerson,\" said Mr. Vholes, very slowly rubbing his gloved \nhands, as if, to his cold sense of touch, they were much the same \nin black kid or out of it, \"this was an ill-advised marriage of Mr. \nC.'s.\"\n\nI begged he would excuse me from discussing it.  They had been \nengaged when they were both very young, I told him (a little \nindignantly) and when the prospect before them was much fairer and \nbrighter.  When Richard had not yielded himself to the unhappy \ninfluence which now darkened his life.\n\n\"Just so,\" assented Mr. Vholes again.  \"Still, with a view to \neverything being openly carried on, I will, with your permission, \nMiss Summerson, observe to you that I consider this a very ill-\nadvised marriage indeed.  I owe the opinion not only to Mr. C.'s \nconnexions, against whom I should naturally wish to protect myself, \nbut also to my own reputation--dear to myself as a professional man \naiming to keep respectable; dear to my three girls at home, for \nwhom I am striving to realize some little independence; dear, I \nwill even say, to my aged father, whom it is my privilege to \nsupport.\"\n\n\"It would become a very different marriage, a much happier and \nbetter marriage, another marriage altogether, Mr. Vholes,\" said I, \n\"if Richard were persuaded to turn his back on the fatal pursuit in \nwhich you are engaged with him.\"\n\nMr. Vholes, with a noiseless cough--or rather gasp--into one of his \nblack gloves, inclined his head as if he did not wholly dispute \neven that.\n\n\"Miss Summerson,\" he said, \"it may be so; and I freely admit that \nthe young lady who has taken Mr. C.'s name upon herself in so ill-\nadvised a manner--you will I am sure not quarrel with me for \nthrowing out that remark again, as a duty I owe to Mr. C.'s \nconnexions--is a highly genteel young lady.  Business has prevented \nme from mixing much with general society in any but a professional \ncharacter; still I trust I am competent to perceive that she is a \nhighly genteel young lady.  As to beauty, I am not a judge of that \nmyself, and I never did give much attention to it from a boy, but I \ndare say the young lady is equally eligible in that point of view.  \nShe is considered so (I have heard) among the clerks in the Inn, \nand it is a point more in their way than in mine.  In reference to \nMr. C.'s pursult of his interests--\"\n\n\"Oh! His interests, Mr. Vholes!\"\n\n\"Pardon me,\" returned Mr. Vholes, going on in exactly the same \ninward and dispassionate manner.  \"Mr. C. takes certain interests \nunder certain wills disputed in the suit.  It is a term we use.  In \nreference to Mr. C,'s pursuit of his interests, I mentioned to you, \nMiss Summerson, the first time I had the pleasure of seeing you, in \nmy desire that everything should he openly carried on--I used those \nwords, for I happened afterwards to note them in my diary, which is \nproducible at any time--I mentioned to you that Mr. C. had laid \ndown the principle of watching his own interests, and that when a \nclient of mine laid down a principle which was not of an immoral \n(that is to say, unlawful) nature, it devolved upon me to carry it \nout.  I HAVE carried it out; I do carry it out.  But I will not \nsmooth things over to any connexion of Mr. C.'s on any account.  As \nopen as I was to Mr. Jarndyce, I am to you.  I regard it in the \nlight of a professional duty to be so, though it can be charged to \nno one.  I openly say, unpalatable as it may be, that I consider \nMr. C.'s affairs in a very bad way, that I consider Mr. C. himself \nin a very bad way, and that I regard this as an exceedingly ill-\nadvised marriage.  Am I here, sir?  Yes, I thank you; I am here, \nMr. C., and enjoying the pleasure of some agreeable conversation \nwith Miss Summerson, for which I have to thank you very much, sir!\"\n\nHe broke off thus in answer to Richard, who addressed him as he \ncame into the room.  By this time I too well understood Mr. \nVholes's scrupulous way of saving himself and his respectability \nnot to feel that our worst fears did but keep pace with his \nclient's progress.\n\nWe sat down to dinner, and I had an opportunity of observing \nRichard, anxiously.  I was not disturbed by Mr. Vholes (who took \noff his gloves to dine), though he sat opposite to me at the small \ntable, for I doubt if, looking up at all, he once removed his eyes \nfrom his host's face.  I found Richard thin and languid, slovenly \nin his dress, abstracted in his manner, forcing his spirits now and \nthen, and at other intervals relapsing into a dull thoughtfulness.  \nAbout his large bright eyes that used to be so merry there was a \nwanness and a restlessness that changed them altogether.  1 cannot \nuse the expression that he looked old.  There is a ruin of youth \nwhich is not like age, and into such a ruin Richard's youth and \nyouthful beauty had all fallen away.\n\nHe ate little and seemed indifferent what it was, showed himself to \nbe much more impatient than he used to be, and was quick even with \nAda.  I thought at first that his old light-hearted manner was all \ngone, but it shone out of him sometimes as I had occasionally known \nlittle momentary glimpses of my own old face to look out upon me \nfrom the glass.  His laugh had not quite left him either, but it \nwas like the echo of a joyful sound, and that is always sorrowful.\n\nYet he was as glad as ever, in his old affectionate way, to have me \nthere, and we talked of the old times pleasantly.  These did not \nappear to be interesting to Mr. Vholes, though he occasionally made \na gasp which I believe was his smile.  He rose shortly after dinner \nand said that with the permission of the ladies he would retire to \nhis office.\n\n\"Always devoted to business, Vholes!\" cried Richard.\n\n\"Yes, Mr. C.,\" he returned, \"the interests of clients are never to \nbe neglected, sir.  They are paramount in the thoughts of a \nprofessional man like myself, who wishes to preserve a good name \namong his fellow-practitioners and society at large.  My denying \nmyself the pleasure of the present agreeable conversation may not \nbe wholly irrespective of your own interests, Mr. C.\"\n\nRichard expressed himself quite sure of that and lighted Mr. Vholes \nout.  On his return he told us, more than once, that Vholes was a \ngood fellow, a safe fellow, a man who did what he pretended to do, \na very good fellow indeed!  He was so defiant about it that it \nstruck me he had begun to doubt Mr. Vholes.\n\nThen he threw himself on the sofa, tired out; and Ada and I put \nthings to rights, for they had no other servant than the woman who \nattended to the chambers.  My dear girl had a cottage piano there \nand quietly sat down to sing some of Richard's favourites, the lamp \nbeing first removed into the next room, as he complained of its \nhurting his eyes.\n\nI sat between them, at my dear girl's side, and felt very \nmelancholy listening to her sweet voice.  I think Richard did too; \nI think he darkened the room for that reason.  She had been singing \nsome time, rising between whiles to bend over him and speak to him, \nwhen Mr. Woodcourt came in.  Then he sat down by Richard and half \nplayfully, half earnestly, quite naturally and easily, found out \nhow he felt and where he had been all day.  Presently he proposed \nto accompany him in a short walk on one of the bridges, as it was a \nmoonlight airy night; and Richard readily consenting, they went out \ntogether.\n\nThey left my dear girl still sitting at the piano and me still \nsitting beside her.  When they were gone out, I drew my arm round \nher waist.  She put her left hand in mine (I was sitting on that \nside), but kept her right upon the keys, going over and over them \nwithout striking any note.\n\n\"Esther, my dearest,\" she said, breaking silence, \"Richard is never \nso well and I am never so easy about him as when he is with Allan \nWoodcourt.  We have to thank you for that.\"\n\nI pointed out to my darling how this could scarcely be, because Mr. \nWoodcourt had come to her cousin John's house and had known us all \nthere, and because he had always liked Richard, and Richard had \nalways liked him, and--and so forth.\n\n\"All true,\" said Ada, \"but that he is such a devoted friend to us \nwe owe to you.\"\n\nI thought it best to let my dear girl have her way and to say no \nmore about it.  So I said as much.  I said it lightly, because I \nfelt her trembling.\n\n\"Esther, my dearest, I want to be a good wife, a very, very good \nwife indeed.  You shall teach me.\"\n\nI teach!  I said no more, for I noticed the hand that was \nfluttering over the keys, and I knew that it was not I who ought to \nspeak, that it was she who had something to say to me.\n\n\"When I married Richard I was not insensible to what was before \nhim.  I had been perfectly happy for a long time with you, and I \nhad never known any trouble or anxiety, so loved and cared for, but \nI understood the danger he was in, dear Esther.\"\n\n\"I know, I know, my darling.\"\n\n\"When we were married I had some little hope that I might be able \nto convince him of his mistake, that he might come to regard it in \na new way as my husband and not pursue it all the more desperately \nfor my sake--as he does.  But if I had not had that hope, I would \nhave married him just the same, Esther.  Just the same!\"\n\nIn the momentary firmness of the hand that was never still--a \nfirmness inspired by the utterance of these last words, and dying \naway with them--I saw the confirmation of her earnest tones.\n\n\"You are not to think, my dearest Esther, that I fail to see what \nyou see and fear what you fear.  No one can understand him better \nthan I do.  The greatest wisdom that ever lived in the world could \nscarcely know Richard better than my love does.\"\n\nShe spoke so modestly and softly and her trembling hand expressed \nsuch agitation as it moved to and fro upon the silent notes!  My \ndear, dear girl!\n\n\"I see him at his worst every day.  I watch him in his sleep.  I \nknow every change of his face.  But when I married Richard I was \nquite determined, Esther, if heaven would help me, never to show \nhim that I grieved for what he did and so to make him more unhappy.  \nI want him, when he comes home, to find no trouble in my face.  I \nwant him, when he looks at me, to see what he loved in me.  I \nmarried him to do this, and this supports me.\"\n\nI felt her trembling more.  I waited for what was yet to come, and \nI now thought I began to know what it was.\n\n\"And something else supports me, Esther.\"\n\nShe stopped a minute.  Stopped speaking only; her hand was still in \nmotion.\n\n\"I look forward a little while, and I don't know what great aid may \ncome to me.  When Richard turns his eyes upon me then, there may be \nsomething lying on my breast more eloquent than I have been, with \ngreater power than mine to show him his true course and win him \nback.\"\n\nHer hand stopped now.  She clasped me in her arms, and I clasped \nher in mine.\n\n\"If that little creature should fail too, Esther, I still look \nforward.  I look forward a long while, through years and years, and \nthink that then, when I am growing old, or when I am dead perhaps, \na beautiful woman, his daughter, happily married, may be proud of \nhim and a blessing to him.  Or that a generous brave man, as \nhandsome as he used to be, as hopeful, and far more happy, may walk \nin the sunshine with him, honouring his grey head and saying to \nhimself, 'I thank God this is my father!  Ruined by a fatal \ninheritance, and restored through me!'\"\n\nOh, my sweet girl, what a heart was that which beat so fast against \nme!\n\n\"These hopes uphold me, my dear Esther, and I know they will.  \nThough sometimes even they depart from me before a dread that \narises when I look at Richard.\"\n\nI tried to cheer my darling, and asked her what it was.  Sobbing \nand weeping, she replied, \"That he may not live to see his child.\"\n\n\n\nCHAPTER LXI\n\nA Discovery\n\n\nThe days when I frequented that miserable corner which my dear girl \nbrightened can never fade in my remembrance.  I never see it, and I \nnever wish to see it now; I have been there only once since, but in \nmy memory there is a mournful glory shining on the place which will \nshine for ever.\n\nNot a day passed without my going there, of course.  At first I \nfound Mr. Skimpole there, on two or three occasions, idly playing \nthe piano and talking in his usual vivacious strain.  Now, besides \nmy very much mistrusting the probability of his being there without \nmaking Richard poorer, I felt as if there were something in his \ncareless gaiety too inconsistent with what I knew of the depths of \nAda's life.  I clearly perceived, too, that Ada shared my feelings.  \nI therefore resolved, after much thinking of it, to make a private \nvisit to Mr. Skimpole and try delicately to explain myself.  My \ndear girl was the great consideration that made me bold.\n\nI set off one morning, accompanied by Charley, for Somers Town.  As \nI approached the house, I was strongly inclined to turn back, for I \nfelt what a desperate attempt it was to make an impression on Mr. \nSkimpole and how extremely likely it was that he would signally \ndefeat me.  However, I thought that being there, I would go through \nwith it.  I knocked with a trembling hand at Mr. Skimpole's door--\nliterally with a hand, for the knocker was gone--and after a long \nparley gained admission from an Irishwoman, who was in the area \nwhen I knocked, breaking up the lid of a water-butt with a poker to \nlight the fire with.\n\nMr. Skimpole, lying on the sofa in his room, playing the flute a \nlittle, was enchanted to see me.  Now, who should receive me, he \nasked.  Who would I prefer for mistress of the ceremonies?  Would I \nhave his Comedy daughter, his Beauty daughter, or his Sentiment \ndaughter?  Or would I have all the daughters at once in a perfect \nnosegay?\n\nI replied, half defeated already, that I wished to speak to himself \nonly if he would give me leave.\n\n'My dear Miss Summerson, most joyfully!  Of course,\" he said, \nbringing his chair nearer mine and breaking into his fascinating \nsmile, of course it's not business.  Then it's pleasure!\"\n\nI said it certainly was not business that I came upon, but it was \nnot quite a pleasant matter.\n\n\"Then, my dear Miss Summerson,\" said he with the frankest gaiety, \n\"don't allude to it.  Why should you allude to anything that is NOT \na pleasant matter?  I never do.  And you are a much pleasanter \ncreature, in every point of view, than I.  You are perfectly \npleasant; I am imperfectly pleasant; then, if I never allude to an \nunpleasant matter, how much less should you!  So that's disposed \nof, and we will talk of something else.\"\n\nAlthough I was embarrassed, I took courage to intimate that I still \nwished to pursue the subject.\n\n\"I should think it a mistake,\" said Mr. Skimpole with his airy \nlaugh, \"if I thought Miss Summerson capable of making one.  But I \ndon't!\"\n\n\"Mr. Skimpole,\" said I, raising my eyes to his, \"I have so often \nheard you say that you are unacquainted with the common affairs of \nlife--\"\n\n\"Meaning our three banking-house friends, L, S, and who's the \njunior partner?  D?\" said Mr. Skimpole, brightly.  \"Not an idea of \nthem!\"\n\n\"--That perhaps,\" I went on, \"you will excuse my boldness on that \naccount.  I think you ought most seriously to know that Richard is \npoorer than he was.\"\n\n\"Dear me!\" said Mr. Skimpole.  \"So am I, they tell me.\"\n\n\"And in very embarrassed circumstances.\"\n\n\"Parallel case, exactly!\" said Mr. Skimpole with a delighted \ncountenance.\n\n\"This at present naturally causes Ada much secret anxiety, and as I \nthink she is less anxious when no claims are made upon her by \nvisitors, and as Richard has one uneasiness always heavy on his \nmind, it has occurred to me to take the liberty of saying that--if \nyou would--not--\"\n\nI was coming to the point with great difficulty when he took me by \nboth hands and with a radiant face and in the liveliest way \nanticipated it.\n\n\"Not go there?  Certainly not, my dear Miss Summerson, most \nassuredly not.  Why SHOULD I go there?  When I go anywhere, I go \nfor pleasure.  I don't go anywhere for pain, because I was made for \npleasure.  Pain comes to ME when it wants me.  Now, I have had very \nlittle pleasure at our dear Richard's lately, and your practical \nsagacity demonstrates why.  Our young friends, losing the youthful \npoetry which was once so captivating in them, begin to think, 'This \nis a man who wants pounds.'  So I am; I always want pounds; not for \nmyself, but because tradespeople always want them of me.  Next, our \nyoung friends begin to think, becoming mercenary, 'This is the man \nwho HAD pounds, who borrowed them,' which I did.  I always borrow \npounds.  So our young friends, reduced to prose (which is much to \nbe regretted), degenerate in their power of imparting pleasure to \nme.  Why should I go to see them, therefore?  Absurd!\"\n\nThrough the beaming smile with which he regarded me as he reasoned \nthus, there now broke forth a look of disinterested benevolence \nquite astonishing.\n\n\"Besides,\" he said, pursuing his argument in his tone of light-\nhearted conviction, \"if I don't go anywhere for pain--which would \nbe a perversion of the intention of my being, and a monstrous thing \nto do--why should I go anywhere to be the cause of pain?  If I went \nto see our young friends in their present ill-regulated state of \nmind, I should give them pain.  The associations with me would be \ndisagreeable.  They might say, 'This is the man who had pounds and \nwho can't pay pounds,' which I can't, of course; nothing could be \nmore out of the question!  Then kindness requires that I shouldn't \ngo near them--and I won't.\"\n\nHe finished by genially kissing my hand and thanking me.  Nothing \nbut Miss Summerson's fine tact, he said, would have found this out \nfor him.\n\nI was much disconcerted, but I reflected that if the main point \nwere gained, it mattered little how strangely he perverted \neverything leading to it.  I had determined to mention something \nelse, however, and I thought I was not to be put off in that.\n\n\"Mr. Skimpole,\" said I, \"I must take the liberty of saying before I \nconclude my visit that I was much surprised to learn, on the best \nauthority, some little time ago, that you knew with whom that poor \nboy left Bleak House and that you accepted a present on that \noccasion.  I have not mentioned it to my guardian, for I fear it \nwould hurt him unnecessarily; but I may say to you that I was much \nsurprised.\"\n\n\"No?  Really surprised, my dear Miss Summerson?\" he returned \ninquiringly, raising his pleasant eyebrows.\n\n\"Greatly surprised.\"\n\nHe thought about it for a little while with a highly agreeable and \nwhimsical expression of face, then quite gave it up and said in his \nmost engaging manner, \"You know what a child I am.  Why surprised?\"\n\nI was reluctant to enter minutely into that question, but as he \nbegged I would, for he was really curious to know, I gave him to \nunderstand in the gentlest words I could use that his conduct \nseemed to involve a disregard of several moral obligations.  He was \nmuch amused and interested when he heard this and said, \"No, \nreally?\" with ingenuous simplicity.\n\n\"You know I don't intend to be responsible.  I never could do it.  \nResponsibility is a thing that has always been above me--or below \nme,\" said Mr. Skimpole.  \"I don't even know which; but as I \nunderstand the way in which my dear Miss Summerson (always \nremarkable for her practical good sense and clearness) puts this \ncase, I should imagine it was chiefly a question of money, do you \nknow?\"\n\nI incautiously gave a qualified assent to this.\n\n\"Ah!  Then you see,\" said Mr. Skimpole, shaking his head, \"I am \nhopeless of understanding it.\"\n\nI suggested, as I rose to go, that it was not right to betray my \nguardian's confidence for a bribe.\n\n\"My dear Miss Summerson,\" he returned with a candid hilarity that \nwas all his own, \"I can't be bribed.\"\n\n\"Not by Mr. Bucket?\" said I.\n\n\"No,\" said he.  \"Not by anybody.  I don't attach any value to \nmoney.  I don't care about it, I don't know about it, I don't want \nit, I don't keep it--it goes away from me directly.  How can I be \nbribed?\"\n\nI showed that I was of a different opinion, though I had not the \ncapacity for arguing the question.\n\n\"On the contrary,\" said Mr. Skimpole, \"I am exactly the man to be \nplaced in a superior position in such a case as that.  I am above \nthe rest of mankind in such a case as that.  I can act with \nphilosophy in such a case as that.  I am not warped by prejudices, \nas an Italian baby is by bandages.  I am as free as the air.  I \nfeel myself as far above suspicion as Caesar's wife.\"\n\nAnything to equal the lightness of his manner and the playful \nimpartiality with which he seemed to convince himself, as he tossed \nthe matter about like a ball of feathers, was surely never seen in \nanybody else!\n\n\"Observe the case, my dear Miss Summerson.  Here is a boy received \ninto the house and put to bed in a state that I strongly object to.  \nThe boy being in bed, a man arrives--like the house that Jack \nbuilt.  Here is the man who demands the boy who is received into \nthe house and put to bed in a state that I strongly object to.  \nHere is a bank-note produced by the man who demands the boy who is \nreceived into the house and put to bed in a state that I strongly \nobject to.  Here is the Skimpole who accepts the bank-note produced \nby the man who demands the boy who is received into the house and \nput to bed in a state that I strongly object to.  Those are the \nfacts.  Very well.  Should the Skimpole have refused the note?  WHY \nshould the Skimpole have refused the note?  Skimpole protests to \nBucket, 'What's this for?  I don't understand it, it is of no use \nto me, take it away.'  Bucket still entreats Skimpole to accept it.  \nAre there reasons why Skimpole, not being warped by prejudices, \nshould accept it?  Yes.  Skimpole perceives them.  What are they?  \nSkimpole reasons with himself, this is a tamed lynx, an active \npolice-officer, an intelligent man, a person of a peculiarly \ndirected energy and great subtlety both of conception and \nexecution, who discovers our friends and enemies for us when they \nrun away, recovers our property for us when we are robbed, avenges \nus comfortably when we are murdered.  This active police-officer \nand intelligent man has acquired, in the exercise of his art, a \nstrong faith in money; he finds it very useful to him, and he makes \nit very useful to society.  Shall I shake that faith in Bucket \nbecause I want it myself; shall I deliberately blunt one of \nBucket's weapons; shall I positively paralyse Bucket in his next \ndetective operation?  And again.  If it is blameable in Skimpole to \ntake the note, it is blameable in Bucket to offer the note--much \nmore blameable in Bucket, because he is the knowing man.  Now, \nSkimpole wishes to think well of Bucket; Skimpole deems it \nessential, in its little place, to the general cohesion of things, \nthat he SHOULD think well of Bucket.  The state expressly asks him \nto trust to Bucket.  And he does.  And that's all he does!\"\n\nI had nothing to offer in reply to this exposition and therefore \ntook my leave.  Mr. Skimpole, however, who was in excellent \nspirits, would not hear of my returning home attended only by \n\"Little Coavinses,\" and accompanied me himself.  He entertained me \non the way with a variety of delightful conversation and assured \nme, at parting, that he should never forget the fine tact with \nwhich I had found that out for him about our young friends.\n\nAs it so happened that I never saw Mr. Skimpole again, I may at \nonce finish what I know of his history.  A coolness arose between \nhim and my guardian, based principally on the foregoing grounds and \non his having heartlessly disregarded my guardian's entreaties (as \nwe afterwards learned from Ada) in reference to Richard.  His being \nheavily in my guardian's debt had nothing to do with their \nseparation.  He died some five years afterwards and left a diary \nbehind him, with letters and other materials towards his life, \nwhich was published and which showed him to have been the victim of \na combination on the part of mankind against an amiable child.  It \nwas considered very pleasant reading, but I never read more of it \nmyself than the sentence on which I chanced to light on opening the \nbook.  It was this: \"Jarndyce, in common with most other men I have \nknown, is the incarnation of selfishness.\"\n\nAnd now I come to a part of my story touching myself very nearly \nindeed, and for which I was quite unprepared when the circumstance \noccurred.  Whatever little lingerings may have now and then revived \nin my mind associated with my poor old face had only revived as \nbelonging to a part of my life that was gone--gone like my infancy \nor my childhood.  I have suppressed none of my many weaknesses on \nthat subject, but have written them as faithfully as my memory has \nrecalled them.  And I hope to do, and mean to do, the same down to \nthe last words of these pages, which I see now not so very far \nbefore me.\n\nThe months were gliding away, and my dear girl, sustained by the \nhopes she had confided in me, was the same beautiful star in the \nmiserable corner.  Richard, more worn and haggard, haunted the \ncourt day after day, listlessly sat there the whole day long when \nhe knew there was no remote chance of the suit being mentioned, and \nbecame one of the stock sights of the place.  I wonder whether any \nof the gentlemen remembered him as he was when he first went there.\n\nSo completely was he absorbed in his fixed idea that he used to \navow in his cheerful moments that he should never have breathed the \nfresh air now \"but for Woodcourt.\"  It was only Mr. Woodcourt who \ncould occasionally divert his attention for a few hours at a time \nand rouse him, even when he sunk into a lethargy of mind and body \nthat alarmed us greatly, and the returns of which became more \nfrequent as the months went on.  My dear girl was right in saying \nthat he only pursued his errors the more desperately for her sake.  \nI have no doubt that his desire to retrieve what he had lost was \nrendered the more intense by his grief for his young wife, and \nbecame like the madness of a gamester.\n\nI was there, as I have mentioned, at all hours.  When I was there \nat night, I generally went home with Charley in a coach; sometimes \nmy guardian would meet me in the neighbourhood, and we would walk \nhome together.  One evening he had arranged to meet me at eight \no'clock.  I could not leave, as I usually did, quite punctually at \nthe time, for I was working for my dear girl and had a few stitches \nmore to do to finish what I was about; but it was within a few \nminutes of the hour when I bundled up my little work-basket, gave \nmy darling my last kiss for the night, and hurried downstairs.  Mr. \nWoodcourt went with me, as it was dusk.\n\nWhen we came to the usual place of meeting--it was close by, and \nMr. Woodcourt had often accompanied me before--my guardian was not \nthere.  We waited half an hour, walking up and down, but there were \nno signs of him.  We agreed that he was either prevented from \ncoming or that he had come and gone away, and Mr. Woodcourt \nproposed to walk home with me.\n\nIt was the first walk we had ever taken together, except that very \nshort one to the usual place of meeting.  We spoke of Richard and \nAda the whole way.  I did not thank him in words for what he had \ndone--my appreciation of it had risen above all words then--but I \nhoped he might not be without some understanding of what I felt so \nstrongly.\n\nArriving at home and going upstairs, we found that my guardian was \nout and that Mrs. Woodcourt was out too.  We were in the very same \nroom into which I had brought my blushing girl when her youthful \nlover, now her so altered husband, was the choice of her young \nheart, the very same room from which my guardian and I had watched \nthem going away through the sunlight in the fresh bloom of their \nhope and promise.\n\nWe were standing by the opened window looking down into the street \nwhen Mr. Woodcourt spoke to me.  I learned in a moment that he \nloved me.  I learned in a moment that my scarred face was all \nunchanged to him.  I learned in a moment that what I had thought \nwas pity and compassion was devoted, generous, faithful love.  Oh, \ntoo late to know it now, too late, too late.  That was the first \nungrateful thought I had.  Too late.\n\n\"When I returned,\" he told me, \"when I came back, no richer than \nwhen I went away, and found you newly risen from a sick bed, yet so \ninspired by sweet consideration for others and so free from a \nselfish thought--\"\n\n\"Oh, Mr. Woodcourt, forbear, forbear!\" I entreated him.  \"I do not \ndeserve your high praise.  I had many selfish thoughts at that \ntime, many!\"\n\n\"Heaven knows, beloved of my life,\" said he, \"that my praise is not \na lover's praise, but the truth.  You do not know what all around \nyou see in Esther Summerson, how many hearts she touches and \nawakens, what sacred admiration and what love she wins.\"\n\n\"Oh, Mr. Woodcourt,\" cried I, \"it is a great thing to win love, it \nis a great thing to win love!  I am proud of it, and honoured by \nit; and the hearing of it causes me to shed these tears of mingled \njoy and sorrow--joy that I have won it, sorrow that I have not \ndeserved it better; but I am not free to think of yours.\"\n\nI said it with a stronger heart, for when he praised me thus and \nwhen I heard his voice thrill with his belief that what he said was \ntrue, I aspired to be more worthy of it.  It was not too late for \nthat.  Although I closed this unforeseen page in my life to-night, \nI could be worthier of it all through my life.  And it was a \ncomfort to me, and an impulse to me, and I felt a dignity rise up \nwithin me that was derived from him when I thought so.\n\nHe broke the silence.\n\n\"I should poorly show the trust that I have in the dear one who \nwill evermore be as dear to me as now\"--and the deep earnestness \nwith which he said it at once strengthened me and made me weep--\n\"if, after her assurance that she is not free to think of my love, \nI urged it.  Dear Esther, let me only tell you that the fond idea \nof you which I took abroad was exalted to the heavens when I came \nhome.  I have always hoped, in the first hour when I seemed to \nstand in any ray of good fortune, to tell you this.  I have always \nfeared that I should tell it you in vain.  My hopes and fears are \nboth fulfilled to-night.  I distress you.  I have said enough.\"\n\nSomething seemed to pass into my place that was like the angel he \nthought me, and I felt so sorrowful for the loss he had sustained!  \nI wished to help him in his trouble, as I had wished to do when he \nshowed that first commiseration for me.\n\n\"Dear Mr. Woodcourt,\" said I, \"before we part to-night, something \nis left for me to say.  I never could say it as I wish--I never \nshall--but--\"\n\nI had to think again of being more deserving of his love and his \naffliction before I could go on.\n\n\"--I am deeply sensible of your generosity, and I shall treasure \nits remembrance to my dying hour.  I know full well how changed I \nam, I know you are not unacquainted with my history, and I know \nwhat a noble love that is which is so faithful.  What you have said \nto me could have affected me so much from no other lips, for there \nare none that could give it such a value to me.  It shall not be \nlost.  It shall make me better.\"\n\nHe covered his eyes with his hand and turned away his head.  How \ncould I ever be worthy of those tears?\n\n\"If, in the unchanged intercourse we shall have together--in \ntending Richard and Ada, and I hope in many happier scenes of life\n--you ever find anything in me which you can honestly think is \nbetter than it used to be, believe that it will have sprung up from \nto-night and that I shall owe it to you.  And never believe, dear \ndear Mr. Woodcourt, never believe that I forget this night or that \nwhile my heart beats it can be insensible to the pride and joy of \nhaving been beloved by you.\"\n\nHe took my hand and kissed it.  He was like himself again, and I \nfelt still more encouraged.\n\n\"I am induced by what you said just now,\" said I, \"to hope that you \nhave succeeded in your endeavour.\"\n\n\"I have,\" he answered.  \"With such help from Mr. Jarndyce as you \nwho know him so well can imagine him to have rendered me, I have \nsucceeded.\"\n\n\"Heaven bless him for it,\" said I, giving him my hand; \"and heaven \nbless you in all you do!\"\n\n\"I shall do it better for the wish,\" he answered; \"it will make me \nenter on these new duties as on another sacred trust from you.\"\n\n\"Ah!  Richard!\" I exclaimed involuntarily, \"What will he do when \nyou are gone!\"\n\n\"I am not required to go yet; I would not desert him, dear Miss \nSummerson, even if I were.\"\n\nOne other thing I felt it needful to touch upon before he left me.  \nI knew that I should not be worthier of the love I could not take \nif I reserved it.\n\n\"Mr. Woodcourt,\" said I, \"you will be glad to know from my lips \nbefore I say good night that in the future, which is clear and \nbright before me, I am most happy, most fortunate, have nothing to \nregret or desire.\"\n\nIt was indeed a glad hearing to him, he replied.\n\n\"From my childhood I have been,\" said I, \"the object of the \nuntiring goodness of the best of human beings, to whom I am so \nbound by every tie of attachment, gratitude, and love, that nothing \nI could do in the compass of a life could express the feelings of a \nsingle day.\"\n\n\"I share those feelings,\" he returned.  \"You speak of Mr. \nJarndyce.\"\n\n\"You know his virtues well,\" said I, \"but few can know the \ngreatness of his character as I know it.  All its highest and best \nqualities have been revealed to me in nothing more brightly than in \nthe shaping out of that future in which I am so happy.  And if your \nhighest homage and respect had not been his already--which I know \nthey are--they would have been his, I think, on this assurance and \nin the feeling it would have awakened in you towards him for my \nsake.\"\n\nHe fervently replied that indeed indeed they would have been.  I \ngave him my hand again.\n\n\"Good night,\" I said, \"Good-bye.\"\n\n\"The first until we meet to-morrow, the second as a farewell to \nthis theme between us for ever.\"\n\n\"Yes.\"\n\n\"Good night; good-bye.\"\n\nHe left me, and I stood at the dark window watching the street.  \nHis love, in all its constancy and generosity, had come so suddenly \nupon me that he had not left me a minute when my fortitude gave way \nagain and the street was blotted out by my rushing tears.\n\nBut they were not tears of regret and sorrow.  No.  He had called \nme the beloved of his life and had said I would be evermore as dear \nto him as I was then, and I felt as if my heart would not hold the \ntriumph of having heard those words.  My first wild thought had \ndied away.  It was not too late to hear them, for it was not too \nlate to be animated by them to be good, true, grateful, and \ncontented.  How easy my path, how much easier than his!\n\n\n\nCHAPTER LXII\n\nAnother Discovery\n\n\nI had not the courage to see any one that night.  I had not even \nthe courage to see myself, for I was afraid that my tears might a \nlittle reproach me.  I went up to my room in the dark, and prayed \nin the dark, and lay down in the dark to sleep.  I had no need of \nany light to read my guardian's letter by, for I knew it by heart.  \nI took it from the place where I kept it, and repeated its contents \nby its own clear light of integrity and love, and went to sleep \nwith it on my pillow.\n\nI was up very early in the morning and called Charley to come for a \nwalk.  We bought flowers for the breakfast-table, and came back and \narranged them, and were as busy as possible.  We were so early that \nI had a good time still for Charley's lesson before breakfast; \nCharley (who was not in the least improved in the old defective \narticle of grammar) came through it with great applause; and we \nwere altogether very notable.  When my guardian appeared he said, \n\"Why, little woman, you look fresher than your flowers!\"  And Mrs. \nWoodcourt repeated and translated a passage from the \nMewlinnwillinwodd expressive of my being like a mountain with the \nsun upon it.\n\nThis was all so pleasant that I hope it made me still more like the \nmountain than I had been before.  After breakfast I waited my \nopportunity and peeped about a little until I saw my guardian in \nhis own room--the room of last night--by himself.  Then I made an \nexcuse to go in with my housekeeping keys, shutting the door after \nme.\n\n\"Well, Dame Durden?\" said my guardian; the post had brought him \nseveral letters, and he was writing.  \"You want money?\"\n\n\"No, indeed, I have plenty in hand.\"\n\n\"There never was such a Dame Durden,\" said my guardian, \"for making \nmoney last.\"\n\nHe had laid down his pen and leaned back in his chair looking at \nme.  I have often spoken of his bright face, but I thought I had \nnever seen it look so bright and good.  There was a high happiness \nupon it which made me think, \"He has been doing some great kindness \nthis morning.\"\n\n\"There never was,\" said my guardian, musing as he smiled upon me, \n\"such a Dame Durden for making money last.\"\n\nHe had never yet altered his old manner.  I loved it and him so \nmuch that when I now went up to him and took my usual chair, which \nwas always put at his side--for sometimes I read to him, and \nsometimes I talked to him, and sometimes I silently worked by him--\nI hardly liked to disturb it by laying my hand on his breast.  But \nI found I did not disturb it at all.\n\n\"Dear guardian,\" said I, \"I want to speak to you.  Have I been \nremiss in anything?\"\n\n\"Remiss in anything, my dear!\"\n\n\"Have I not been what I have meant to be since--I brought the \nanswer to your letter, guardian?\"\n\n\"You have been everything I could desire, my love.\"\n\n\"I am very glad indeed to hear that,\" I returned.  \"You know, you \nsaid to me, was this the mistress of Bleak House.  And I said, \nyes.\"\n\n\"Yes,\" said my guardian, nodding his head.  He had put his arm \nabout me as if there were something to protect me from and looked \nin my face, smiling.\n\n\"Since then,\" said I, \"we have never spoken on the subject except \nonce.\"\n\n\"And then I said Bleak House was thinning fast; and so it was, my \ndear.\"\n\n\"And I said,\" I timidly reminded him, \"but its mistress remained.\"\n\nHe still held me in the same protecting manner and with the same \nbright goodness in his face.\n\n\"Dear guardian,\" said I, \"I know how you have felt all that has \nhappened, and how considerate you have been.  As so much time has \npassed, and as you spoke only this morning of my being so well \nagain, perhaps you expect me to renew the subject.  Perhaps I ought \nto do so.  I will be the mistress of Bleak House when you please.\"\n\n\"See,\" he returned gaily, \"what a sympathy there must be between \nus!  I have had nothing else, poor Rick excepted--it's a large \nexception--in my mind.  When you came in, I was full of it.  When \nshall we give Bleak House its mistress, little woman?\"\n\n\"When you please.\"\n\n\"Next month?\"\n\n\"Next month, dear guardian.\"\n\n\"The day on which I take the happiest and best step of my life--the \nday on which I shall be a man more exulting and more enviable than \nany other man in the world--the day on which I give Bleak House its \nlittle mistress--shall be next month then,\" said my guardian.\n\nI put my arms round his neck and kissed him just as I had done on \nthe day when I brought my answer.\n\nA servant came to the door to announce Mr. Bucket, which was quite \nunnecessary, for Mr. Bucket was already looking in over the \nservant's shoulder.  \"Mr. Jarndyce and Miss Summerson,\" said he, \nrather out of breath, \"with all apologies for intruding, WILL you \nallow me to order up a person that's on the stairs and that objects \nto being left there in case of becoming the subject of observations \nin his absence?  Thank you.  Be so good as chair that there member \nin this direction, will you?\" said Mr. Bucket, beckoning over the \nbanisters.\n\nThis singular request produced an old man in a black skull-cap, \nunable to walk, who was carried up by a couple of bearers and \ndeposited in the room near the door.  Mr. Bucket immediately got \nrid of the bearers, mysteriously shut the door, and bolted it.\n\n\"Now you see, Mr. Jarndyce,\" he then began, putting down his hat \nand opening his subject with a flourish of his well-remembered \nfinger, \"you know me, and Miss Summerson knows me.  This gentleman \nlikewise knows me, and his name is Smallweed.  The discounting line \nis his line principally, and he's what you may call a dealer in \nbills.  That's about what YOU are, you know, ain't you?\" said Mr. \nBucket, stopping a little to address the gentleman in question, who \nwas exceedingly suspicious of him.\n\nHe seemed about to dispute this designation of himself when he was \nseized with a violent fit of coughing.\n\n\"Now, moral, you know!\" said Mr. Bucket, improving the accident.  \n\"Don't you contradict when there ain't no occasion, and you won't \nbe took in that way.  Now, Mr. Jarndyce, I address myself to you.  \nI've been negotiating with this gentleman on behalf of Sir \nLeicester Dedlock, Baronet, and one way and another I've been in \nand out and about his premises a deal.  His premises are the \npremises formerly occupied by Krook, marine store dealer--a \nrelation of this gentleman's that you saw in his life-time if I \ndon't mistake?\"\n\nMy guardian replied, \"Yes.\"\n\n\"Well! You are to understand,\" said Mr. Bucket, \"that this \ngentleman he come into Krook's property, and a good deal of magpie \nproperty there was.  Vast lots of waste-paper among the rest.  Lord \nbless you, of no use to nobody!\"\n\nThe cunning of Mr. Bucket's eye and the masterly manner in which he \ncontrived, without a look or a word against which his watchful \nauditor could protest, to let us know that he stated the case \naccording to previous agreement and could say much more of Mr. \nSmallweed if he thought it advisable, deprived us of any merit in \nquite understanding him.  His difficulty was increased by Mr. \nSmallweed's being deaf as well as suspicious and watching his face \nwith the closest attention.\n\n\"Among them odd heaps of old papers, this gentleman, when he comes \ninto the property, naturally begins to rummage, don't you see?\" \nsaid Mr. Bucket.\n\n\"To which?  Say that again,\" cried Mr. Smallweed in a shrill, sharp \nvoice.\n\n\"To rummage,\" repeated Mr. Bucket.  \"Being a prudent man and \naccustomed to take care of your own affairs, you begin to rummage \namong the papers as you have come into; don't you?\"\n\n\"Of course I do,\" cried Mr. Smallweed.\n\n\"Of course you do,\" said Mr. Bucket conversationally, \"and much to \nblame you would be if you didn't.  And so you chance to find, you \nknow,\" Mr. Bucket went on, stooping over him with an air of \ncheerful raillery which Mr. Smallweed by no means reciprocated, \n\"and so you chance to find, you know, a paper with the signature of \nJarndyce to it.  Don't you?\"\n\nMr. Smallweed glanced with a troubled eye at us and grudgingly \nnodded assent.\n\n\"And coming to look at that paper at your full leisure and \nconvenience--all in good time, for you're not curious to read it, \nand why should you be?--what do you find it to be but a will, you \nsee.  That's the drollery of it,\" said Mr. Bucket with the same \nlively air of recalling a joke for the enjoyment of Mr. Smallweed, \nwho still had the same crest-fallen appearance of not enjoying it \nat all; \"what do you find it to be but a will?\"\n\n\"I don't know that it's good as a will or as anything else,\" \nsnarled Mr. Smallweed.\n\nMr. Bucket eyed the old man for a moment--he had slipped and shrunk \ndown in his chair into a mere bundle--as if he were much disposed \nto pounce upon him; nevertheless, he continued to bend over him \nwith the same agreeable air, keeping the corner of one of his eyes \nupon us.\n\n\"Notwithstanding which,\" said Mr. Bucket, \"you get a little \ndoubtful and uncomfortable in your mind about it, having a very \ntender mind of your own.\"\n\n\"Eh?  What do you say I have got of my own?\" asked Mr. Smallweed \nwith his hand to his ear.\n\n\"A very tender mind.\"\n\n\"Ho!  Well, go on,\" said Mr. Smallweed.\n\n\"And as you've heard a good deal mentioned regarding a celebrated \nChancery will case of the same name, and as you know what a card \nKrook was for buying all manner of old pieces of furniter, and \nbooks, and papers, and what not, and never liking to part with 'em, \nand always a-going to teach himself to read, you begin to think--\nand you never was more correct in your born days--'Ecod, if I don't \nlook about me, I may get into trouble regarding this will.'\"\n\n\"Now, mind how you put it, Bucket,\" cried the old man anxiously \nwith his hand at his ear.  \"Speak up; none of your brimstone \ntricks.  Pick me up; I want to hear better.  Oh, Lord, I am shaken \nto bits!\"\n\nMr. Bucket had certainly picked him up at a dart.  However, as soon \nas he could be heard through Mr. Smallweed's coughing and his \nvicious ejaculations of \"Oh, my bones!  Oh, dear!  I've no breath \nin my body!  I'm worse than the chattering, clattering, brimstone \npig at home!\" Mr. Bucket proceeded in the same convivial manner as \nbefore.\n\n\"So, as I happen to be in the habit of coming about your premises, \nyou take me into your confidence, don't you?\"\n\nI think it would be impossible to make an admission with more ill \nwill and a worse grace than Mr. Smallweed displayed when he \nadmitted this, rendering it perfectly evident that Mr. Bucket was \nthe very last person he would have thought of taking into his \nconfidence if he could by any possibility have kept him out of it.\n\n\"And I go into the business with you--very pleasant we are over it; \nand I confirm you in your well-founded fears that you will get \nyourself into a most precious line if you don't come out with that \nthere will,\" said Mr. Bucket emphatically; \"and accordingly you \narrange with me that it shall be delivered up to this present Mr. \nJarndyce, on no conditions.  If it should prove to be valuable, you \ntrusting yourself to him for your reward; that's about where it is, \nain't it?\"\n\n\"That's what was agreed,\" Mr. Smallweed assented with the same bad \ngrace.\n\n\"In consequence of which,\" said Mr. Bucket, dismissing his \nagreeable manner all at once and becoming strictly businesslike, \n\"you've got that will upon your person at the present time, and the \nonly thing that remains for you to do is just to out with it!\"\n\nHaving given us one glance out of the watching corner of his eye, \nand having given his nose one triumphant rub with his forefinger, \nMr. Bucket stood with his eyes fastened on his confidential friend \nand his hand stretched forth ready to take the paper and present it \nto my guardian.  It was not produced without much reluctance and \nmany declarations on the part of Mr. Smallweed that he was a poor \nindustrious man and that he left it to Mr. Jarndyce's honour not to \nlet him lose by his honesty.  Little by little he very slowly took \nfrom a breast-pocket a stained, discoloured paper which was much \nsinged upon the outside and a little burnt at the edges, as if it \nhad long ago been thrown upon a fire and hastily snatched off \nagain.  Mr. Bucket lost no time in transferring this paper, with \nthe dexterity of a conjuror, from Mr. Smallweed to Mr. Jarndyce.  \nAs he gave it to my guardian, he whispered behind his fingers, \n\"Hadn't settled how to make their market of it.  Quarrelled and \nhinted about it.  I laid out twenty pound upon it.  First the \navaricious grandchildren split upon him on account of their \nobjections to his living so unreasonably long, and then they split \non one another.  Lord!  There ain't one of the family that wouldn't \nsell the other for a pound or two, except the old lady--and she's \nonly out of it because she's too weak in her mind to drive a \nbargain.\"\n\n\"Mr Bucket,\" said my guardian aloud, \"whatever the worth of this \npaper may be to any one, my obligations are great to you; and if it \nbe of any worth, I hold myself bound to see Mr. Smallweed \nremunerated accordingly.\"\n\n\"Not according to your merits, you know,\" said Mr. Bucket in \nfriendly explanation to Mr. Smallweed.  \"Don't you be afraid of \nthat.  According to its value.\"\n\n\"That is what I mean,\" said my guardian.  \"You may observe, Mr. \nBucket, that I abstain from examining this paper myself.  The plain \ntruth is, I have forsworn and abjured the whole business these many \nyears, and my soul is sick of it.  But Miss Summerson and I will \nimmediately place the paper in the hands of my solicitor in the \ncause, and its existence shall be made known without delay to all \nother parties interested.\"\n\n\"Mr. Jarndyce can't say fairer than that, you understand,\" observed \nMr. Bucket to his fellow-visitor.  \"And it being now made clear to \nyou that nobody's a-going to be wronged--which must be a great \nrelief to YOUR mind--we may proceed with the ceremony of chairing \nyou home again.\"\n\nHe unbolted the door, called in the bearers, wished us good \nmorning, and with a look full of meaning and a crook of his finger \nat parting went his way.\n\nWe went our way too, which was to Lincoln's Inn, as quickly as \npossible.  Mr. Kenge was disengaged, and we found him at his table \nin his dusty room with the inexpressive-looking books and the piles \nof papers.  Chairs having been placed for us by Mr. Guppy, Mr. \nKenge expressed the surprise and gratification he felt at the \nunusual sight of Mr. Jarndyce in his office.  He turned over his \ndouble eye-glass as he spoke and was more Conversation Kenge than \never.\n\n\"I hope,\" said Mr. Kenge, \"that the genial influence of Miss \nSummerson,\" he bowed to me, \"may have induced Mr. Jarndyce,\" he \nbowed to him, \"to forego some little of his animosity towards a \ncause and towards a court which are--shall I say, which take their \nplace in the stately vista of the pillars of our profession?\"\n\n\"I am inclined to think,\" returned my guardian, \"that Miss \nSummerson has seen too much of the effects of the court and the \ncause to exert any influence in their favour.  Nevertheless, they \nare a part of the occasion of my being here.  Mr. Kenge, before I \nlay this paper on your desk and have done with it, let me tell you \nhow it has come into my hands.\"\n\nHe did so shortly and distinctly.\n\n\"It could not, sir,\" said Mr. Kenge, \"have been stated more plainly \nand to the purpose if it had been a case at law.\"\n\n\"Did you ever know English law, or equity either, plain and to the \npurpose?\" said my guardian.\n\n\"Oh, fie!\" said Mr. Kenge.\n\nAt first he had not seemed to attach much importance to the paper, \nbut when he saw it he appeared more interested, and when he had \nopened and read a little of it through his eye-glass, he became \namazed.  \"Mr. Jarndyce,\" he said, looking off it, \"you have perused \nthis?\"\n\n\"Not I!\" returned my guardian.\n\n\"But, my dear sir,\" said Mr. Kenge, \"it is a will of later date \nthan any in the suit.  It appears to be all in the testator's \nhandwriting.  It is duly executed and attested.  And even if \nintended to be cancelled, as might possibly be supposed to be \ndenoted by these marks of fire, it is NOT cancelled.  Here it is, a \nperfect instrument!\"\n\n\"Well!\" said my guardian.  \"What is that to me?\"\n\n\"Mr. Guppy!\" cried Mr. Kenge, raising his voice.  \"I beg your \npardon, Mr. Jarndyce.\"\n\n\"Sir.\"\n\n\"Mr. Vholes of Symond's Inn.  My compliments.  Jarndyce and \nJarndyce.  Glad to speak with him.\"\n\nMr. Guppy disappeared.\n\n\"You ask me what is this to you, Mr. Jarndyce.  If you had perused \nthis document, you would have seen that it reduces your interest \nconsiderably, though still leaving it a very handsome one, still \nleaving it a very handsome one,\" said Mr. Kenge, waving his hand \npersuasively and blandly.  \"You would further have seen that the \ninterests of Mr. Richard Carstone and of Miss Ada Clare, now Mrs. \nRichard Carstone, are very materially advanced by it.\"\n\n\"Kenge,\" said my guardian, \"if all the flourishing wealth that the \nsuit brought into this vile court of Chancery could fall to my two \nyoung cousins, I should be well contented.  But do you ask ME to \nbelieve that any good is to come of Jarndyce and Jarndyce?\"\n\n\"Oh, really, Mr. Jarndyce!  Prejudice, prejudice.  My dear sir, \nthis is a very great country, a very great country.  Its system of \nequity is a very great system, a very great system.  Really, \nreally!\"\n\nMy guardian said no more, and Mr. Vholes arrived.  He was modestly \nimpressed by Mr. Kenge's professional eminence.\n\n\"How do you do, Mr. Vholes?  Willl you be so good as to take a \nchair here by me and look over this paper?\"\n\nMr. Vholes did as he was asked and seemed to read it every word.  \nHe was not excited by it, but he was not excited by anything.  When \nhe had well examined it, he retired with Mr. Kenge into a window, \nand shading his mouth with his black glove, spoke to him at some \nlength.  I was not surprised to observe Mr. Kenge inclined to \ndispute what he said before he had said much, for I knew that no \ntwo people ever did agree about anything in Jarndyce and Jarndyce.  \nBut he seemed to get the better of Mr. Kenge too in a conversation \nthat sounded as if it were almost composed of the words \"Receiver-\nGeneral,\" \"Accountant-General,\" \"report,\" \"estate,\" and \"costs.\"  \nWhen they had finished, they came back to Mr. Kenge's table and \nspoke aloud.\n\n\"Well!  But this is a very remarkable document, Mr. Vholes,\" said \nMr. Kenge.\n\nMr. Vholes said, \"Very much so.\"\n\n\"And a very important document, Mr. Vholes,\" said Mr. Kenge.\n\nAgain Mr. Vholes said, \"Very much so.\"\n\n\"And as you say, Mr. Vholes, when the cause is in the paper next \nterm, this document will be an unexpected and interesting feature \nin it,\" said Mr. Kenge, looking loftily at my guardian.\n\nMr. Vholes was gratified, as a smaller practitioner striving to \nkeep respectable, to be confirmed in any opinion of his own by such \nan authority.\n\n\"And when,\" asked my guardian, rising after a pause, during which \nMr. Kenge had rattled his money and Mr. Vholes had picked his \npimples, \"when is next term?\"\n\n\"Next term, Mr. Jarndyce, will be next month,\" said Mr. Kenge.  \"Of \ncourse we shall at once proceed to do what is necessary with this \ndocument and to collect the necessary evidence concerning it; and \nof course you will receive our usual notification of the cause \nbeing in the paper.\"\n\n\"To which I shall pay, of course, my usual attention.\"\n\n\"Still bent, my dear sir,\" said Mr. Kenge, showing us through the \nouter office to the door, \"still bent, even with your enlarged \nmind, on echoing a popular prejudice?  We are a prosperous \ncommunity, Mr. Jarndyce, a very prosperous community.  We are a \ngreat country, Mr. Jarndyce, we are a very great country.  This is \na great system, Mr. Jarndyce, and would you wish a great country to \nhave a little system?  Now, really, really!\"\n\nHe said this at the stair-head, gently moving his right hand as if \nit were a silver trowel with which to spread the cement of his \nwords on the structure of the system and consolidate it for a \nthousand ages.\n\n\n\nCHAPTER LXIII\n\nSteel and Iron\n\n\nGeorge's Shooting Gallery is to let, and the stock is sold off, and \nGeorge himself is at Chesney Wold attending on Sir Leicester in his \nrides and riding very near his bridle-rein because of the uncertain \nhand with which he guides his horse.  But not to-day is George so \noccupied.  He is journeying to-day into the iron country farther \nnorth to look about him.\n\nAs he comes into the iron country farther north, such fresh green \nwoods as those of Chesney Wold are left behind; and coal pits and \nashes, high chimneys and red bricks, blighted verdure, scorching \nfires, and a heavy never-lightening cloud of smoke become the \nfeatures of the scenery.  Among such objects rides the trooper, \nlooking about him and always looking for something he has come to \nfind.\n\nAt last, on the black canal bridge of a busy town, with a clang of \niron in it, and more fires and more smoke than he has seen yet, the \ntrooper, swart with the dust of the coal roads, checks his horse \nand asks a workman does he know the name of Rouncewell thereabouts.\n\n\"Why, master,\" quoth the workman, \"do I know my own name?\"\n\n\"'Tis so well known here, is it, comrade?\" asks the trooper.\n\n\"Rouncewell's?  Ah!  You're right.\"\n\n\"And where might it be now?\" asks the trooper with a glance before \nhim.\n\n\"The bank, the factory, or the house?\" the workman wants to know.\n\n\"Hum!  Rouncewell's is so great apparently,\" mutters the trooper, \nstroking his chin, \"that I have as good as half a mind to go back \nagain.  Why, I don't know which I want.  Should I find Mr. \nRouncewell at the factory, do you think?\"\n\n\"Tain't easy to say where you'd find him--at this time of the day \nyou might find either him or his son there, if he's in town; but \nhis contracts take him away.\"\n\nAnd which is the factory?  Why, he sees those chimneys--the tallest \nones!  Yes, he sees THEM.  Well!  Let him keep his eye on those \nchimneys, going on as straight as ever he can, and presently he'll \nsee 'em down a turning on the left, shut in by a great brick wall \nwhich forms one side of the street.  That's Rouncewell's.\n\nThe trooper thanks his informant and rides slowly on, looking about \nhim.  He does not turn back, but puts up his horse (and is much \ndisposed to groom him too) at a public-house where some of \nRouncewell's hands are dining, as the ostler tells him.  Some of \nRouncewell's hands have just knocked off for dinner-time and seem \nto be invading the whole town.  They are very sinewy and strong, \nare Rouncewell's hands--a little sooty too.\n\nHe comes to a gateway in the brick wall, looks in, and sees a great \nperplexity of iron lying about in every stage and in a vast variety \nof shapes--in bars, in wedges, in sheets; in tanks, in boilers, in \naxles, in wheels, in cogs, in cranks, in rails; twisted and \nwrenched into eccentric and perverse forms as separate parts of \nmachinery; mountains of it broken up, and rusty in its age; distant \nfurnaces of it glowing and bubbling in its youth; bright fireworks \nof it showering about under the blows of the steam-hammer; red-hot \niron, white-hot iron, cold-black iron; an iron taste, an iron \nsmell, and a Babel of iron sounds.\n\n\"This is a place to make a man's head ache too!\" says the trooper, \nlooking about him for a counting-house.  \"Who comes here?  This is \nvery like me before I was set up.  This ought to be my nephew, if \nlikenesses run in families.  Your servant, sir.\"\n\n\"Yours, sir.  Are you looking for any one?\"\n\n\"Excuse me.  Young Mr. Rouncewell, I believe?\"\n\n\"Yes.\"\n\n\"I was looking for your father, sir.  I wish to have a word with \nhim.\"\n\nThe young man, telling him he is fortunate in his choice of a time, \nfor his father is there, leads the way to the office where he is to \nbe found.  \"Very like me before I was set up--devilish like me!\" \nthinks the trooper as he follows.  They come to a building in the \nyard with an office on an upper floor.  At sight of the gentleman \nin the office, Mr. George turns very red.\n\n\"What name shall I say to my father?\" asks the young man.\n\nGeorge, full of the idea of iron, in desperation answers \"Steel,\" \nand is so presented.  He is left alone with the gentleman in the \noffice, who sits at a table with account-books before him and some \nsheets of paper blotted with hosts of figures and drawings of \ncunning shapes.  It is a bare office, with bare windows, looking on \nthe iron view below.  Tumbled together on the table are some pieces \nof iron, purposely broken to be tested at various periods of their \nservice, in various capacities.  There is iron-dust on everything; \nand the smoke is seen through the windows rolling heavily out of \nthe tall chimneys to mingle with the smoke from a vaporous Babylon \nof other chimneys.\n\n\"I am at your service, Mr. Steel,\" says the gentleman when his \nvisitor has taken a rusty chair.\n\n\"Well, Mr. Rouncewell,\" George replies, leaning forward with his \nleft arm on his knee and his hat in his hand, and very chary of \nmeeting his brother's eye, \"I am not without my expectations that \nin the present visit I may prove to be more free than welcome.  I \nhave served as a dragoon in my day, and a comrade of mine that I \nwas once rather partial to was, if I don't deceive myself, a \nbrother of yours.  I believe you had a brother who gave his family \nsome trouble, and ran away, and never did any good but in keeping \naway?\"\n\n\"Are you quite sure,\" returns the ironmaster in an altered voice, \n\"that your name is Steel?\"\n\nThe trooper falters and looks at him.  His brother starts up, calls \nhim by his name, and grasps him by both hands.\n\n\"You are too quick for me!\" cries the trooper with the tears \nspringing out of his eyes.  \"How do you do, my dear old fellow?  I \nnever could have thought you would have been half so glad to see me \nas all this.  How do you do, my dear old fellow, how do you do!\"\n\nThey shake hands and embrace each other over and over again, the \ntrooper still coupling his \"How do you do, my dear old fellow!\" \nwith his protestation that he never thought his brother would have \nbeen half so glad to see him as all this!\n\n\"So far from it,\" he declares at the end of a full account of what \nhas preceded his arrival there, \"I had very little idea of making \nmyself known.  I thought if you took by any means forgivingly to my \nname I might gradually get myself up to the point of writing a \nletter.  But I should not have been surprised, brother, if you had \nconsidered it anything but welcome news to hear of me.\"\n\n\"We will show you at home what kind of news we think it, George,\" \nreturns his brother.  \"This is a great day at home, and you could \nnot have arrived, you bronzed old soldier, on a better.  I make an \nagreement with my son Watt to-day that on this day twelvemonth he \nshall marry as pretty and as good a girl as you have seen in all \nyour travels.  She goes to Germany to-morrow with one of your \nnieces for a little polishing up in her education.  We make a feast \nof the event, and you will be made the hero of it.\"\n\nMr. George is so entirely overcome at first by this prospect that \nhe resists the proposed honour with great earnestness.  Being \noverborne, however, by his brother and his nephew--concerning whom \nhe renews his protestations that he never could have thought they \nwould have been half so glad to see him--he is taken home to an \nelegant house in all the arrangements of which there is to be \nobserved a pleasant mixture of the originally simple habits of the \nfather and mother with such as are suited to their altered station \nand the higher fortunes of their children.  Here Mr. George is much \ndismayed by the graces and accomplishments of his nieces that are \nand by the beauty of Rosa, his niece that is to be, and by the \naffectionate salutations of these young ladies, which he receives \nin a sort of dream.  He is sorely taken aback, too, by the dutiful \nbehaviour of his nephew and has a woeful consciousness upon him of \nbeing a scapegrace.  However, there is great rejoicing and a very \nhearty company and infinite enjoyment, and Mr. George comes bluff \nand martial through it all, and his pledge to be present at the \nmarriage and give away the bride is received with universal favour.  \nA whirling head has Mr. George that night when he lies down in the \nstate-bed of his brother's house to think of all these things and \nto see the images of his nieces (awful all the evening in their \nfloating muslins) waltzing, after the German manner, over his \ncounterpane.\n\nThe brothers are closeted next morning in the ironmaster's room, \nwhere the elder is proceeding, in his clear sensible way, to show \nhow he thinks he may best dispose of George in his business, when \nGeorge squeezes his hand and stops him.\n\n\"Brother, I thank you a million times for your more than brotherly \nwelcome, and a million times more to that for your more than \nbrotherly intentions.  But my plans are made.  Before I say a word \nas to them, I wish to consult you upon one family point.  How,\" \nsays the trooper, folding his arms and looking with indomitable \nfirmness at his brother, \"how is my mother to be got to scratch \nme?\"\n\n\"I am not sure that I understand you, George,\" replies the \nironmaster.\n\n\"I say, brother, how is my mother to be got to scratch me?  She \nmust be got to do it somehow.\"\n\n\"Scratch you out of her will, I think you mean?\"\n\n\"Of course I do.  In short,\" says the trooper, folding his arms \nmore resolutely yet, \"I mean--TO--scratch me!\"\n\n\"My dear George,\" returns his brother, \"is it so indispensable that \nyou should undergo that process?\"\n\n\"Quite!  Absolutely!  I couldn't be guilty of the meanness of \ncoming back without it.  I should never be safe not to be off \nagain.  I have not sneaked home to rob your children, if not \nyourself, brother, of your rights.  I, who forfeited mine long ago!  \nIf I am to remain and hold up my head, I must be scratched.  Come.  \nYou are a man of celebrated penetration and intelligence, and you \ncan tell me how it's to be brought about.\"\n\n\"I can tell you, George,\" replies the ironmaster deliberately, \"how \nit is not to be brought about, which I hope may answer the purpose \nas well.  Look at our mother, think of her, recall her emotion when \nshe recovered you.  Do you believe there is a consideration in the \nworld that would induce her to take such a step against her \nfavourite son?  Do you believe there is any chance of her consent, \nto balance against the outrage it would be to her (loving dear old \nlady!) to propose it?  If you do, you are wrong.  No, George!  You \nmust make up your mind to remain UNscratched, I think.\"  There is \nan amused smile on the ironmaster's face as he watches his brother, \nwho is pondering, deeply disappointed.  \"I think you may manage \nalmost as well as if the thing were done, though.\"\n\n\"How, brother?\"\n\n\"Being bent upon it, you can dispose by will of anything you have \nthe misfortune to inherit in any way you like, you know.\"\n\n\"That's true!\" says the trooper, pondering again.  Then he \nwistfully asks, with his hand on his brother's, \"Would you mind \nmentioning that, brother, to your wife and family?\"\n\n\"Not at all.\"\n\n\"Thank you.  You wouldn't object to say, perhaps, that although an \nundoubted vagabond, I am a vagabond of the harum-scarum order, and \nnot of the mean sort?\"\n\nThe ironmaster, repressing his amused smile, assents.\n\n\"Thank you.  Thank you.  It's a weight off my mind,\" says the \ntrooper with a heave of his chest as he unfolds his arms and puts a \nhand on each leg, \"though I had set my heart on being scratched, \ntoo!\"\n\nThe brothers are very like each other, sitting face to face; but a \ncertain massive simplicity and absence of usage in the ways of the \nworld is all on the trooper's side.\n\n\"Well,\" he proceeds, throwing off his disappointment, \"next and \nlast, those plans of mine.  You have been so brotherly as to \npropose to me to fall in here and take my place among the products \nof your perseverance and sense.  I thank you heartily.  It's more \nthan brotherly, as I said before, and I thank you heartily for it,\" \nshaking him a long time by the hand.  \"But the truth is, brother, I \nam a--I am a kind of a weed, and it's too late to plant me in a \nregular garden.\"\n\n\"My dear George,\" returns the elder, concentrating his strong \nsteady brow upon him and smiling confidently, \"leave that to me, \nand let me try.\"\n\nGeorge shakes his head.  \"You could do it, I have not a doubt, if \nanybody could; but it's not to be done.  Not to be done, sir!  \nWhereas it so falls out, on the other hand, that I am able to be of \nsome trifle of use to Sir Leicester Dedlock since his illness--\nbrought on by family sorrows--and that he would rather have that \nhelp from our mother's son than from anybody else.\"\n\n\"Well, my dear George,\" returns the other with a very slight shade \nupon his open face, \"if you prefer to serve in Sir Leicester \nDedlock's household brigade--\"\n\n\"There it is, brother,\" cries the trooper, checking him, with his \nhand upon his knee again; \"there it is!  You don't take kindly to \nthat idea; I don't mind it.  You are not used to being officered; I \nam.  Everything about you is in perfect order and discipline; \neverything about me requires to be kept so.  We are not accustomed \nto carry things with the same hand or to look at 'em from the same \npoint.  I don't say much about my garrison manners because I found \nmyself pretty well at my ease last night, and they wouldn't be \nnoticed here, I dare say, once and away.  But I shall get on best \nat Chesney Wold, where there's more room for a weed than there is \nhere; and the dear old lady will be made happy besides.  Therefore \nI accept of Sir Leicester Dedlock's proposals.  When I come over \nnext year to give away the bride, or whenever I come, I shall have \nthe sense to keep the household brigade in ambuscade and not to \nmanoeuvre it on your ground.  I thank you heartily again and am \nproud to think of the Rouncewells as they'll be founded by you.\"\n\n\"You know yourself, George,\" says the elder brother, returning the \ngrip of his hand, \"and perhaps you know me better than I know \nmyself.  Take your way.  So that we don't quite lose one another \nagain, take your way.\"\n\n\"No fear of that!\" returns the trooper.  \"Now, before I turn my \nhorse's head homewards, brother, I will ask you--if you'll be so \ngood--to look over a letter for me.  I brought it with me to send \nfrom these parts, as Chesney Wold might be a painful name just now \nto the person it's written to.  I am not much accustomed to \ncorrespondence myself, and I am particular respecting this present \nletter because I want it to be both straightforward and delicate.\"\n\nHerewith he hands a letter, closely written in somewhat pale ink \nbut in a neat round hand, to the ironmaster, who reads as follows:\n\n\nMiss Esther Summerson, \n\nA communication having been made to me by Inspector Bucket of a \nletter to myself being found among the papers of a certain person, \nI take the liberty to make known to you that it was but a few lines \nof instruction from abroad, when, where, and how to deliver an \nenclosed letter to a young and beautiful lady, then unmarried, in \nEngland.  I duly observed the same.\n\nI further take the liberty to make known to you that it was got \nfrom me as a proof of handwriting only and that otherwise I would \nnot have given it up, as appearing to be the most harmless in my \npossession, without being previously shot through the heart.\n\nI further take the liberty to mention that if I could have supposed \na certain unfortunate gentleman to have been in existence, I never \ncould and never would have rested until I had discovered his \nretreat and shared my last farthing with him, as my duty and my \ninclination would have equally been.  But he was (officially) \nreported drowned, and assuredly went over the side of a transport-\nship at night in an Irish harbour within a few hours of her arrival \nfrom the West Indies, as I have myself heard both from officers and \nmen on board, and know to have been (officially) confirmed.\n\nI further take the liberty to state that in my humble quality as \none of the rank and file, I am, and shall ever continue to be, your \nthoroughly devoted and admiring servant and that I esteem the \nqualities you possess above all others far beyond the limits of the \npresent dispatch.\n\nI have the honour to be,\n\nGEORGE\n\n\n\"A little formal,\" observes the elder brother, refolding it with a \npuzzled face.\n\n\"But nothing that might not be sent to a pattern young lady?\" asks \nthe younger.\n\n\"Nothing at all.\"\n\nTherefore it is sealed and deposited for posting among the iron \ncorrespondence of the day.  This done, Mr. George takes a hearty \nfarewell of the family party and prepares to saddle and mount.  His \nbrother, however, unwilling to part with him so soon, proposes to \nride with him in a light open carriage to the place where he will \nbait for the night, and there remain with him until morning, a \nservant riding for so much of the journey on the thoroughbred old \ngrey from Chesney Wold.  The offer, being gladly accepted, is \nfollowed by a pleasant ride, a pleasant dinner, and a pleasant \nbreakfast, all in brotherly communion.  Then they once more shake \nhands long and heartily and part, the ironmaster turning his face \nto the smoke and fires, and the trooper to the green country.  \nEarly in the afternoon the subdued sound of his heavy military trot \nis heard on the turf in the avenue as he rides on with imaginary \nclank and jingle of accoutrements under the old elm-trees.\n\n\n\nCHAPTER LXIV\n\nEsther's Narrative\n\n\nSoon after I had that convertion with my guardian, he put a sealed \npaper in my hand one morning and said, \"This is for next month, my \ndear.\"  I found in it two hundred pounds.\n\nI now began very quietly to make such preparations as I thought \nwere necessary.  Regulating my purchases by my guardian's taste, \nwhich I knew very well of course, I arranged my wardrobe to please \nhim and hoped I should be highly successful.  I did it all so \nquietly because I was not quite free from my old apprehension that \nAda would be rather sorry and because my guardian was so quiet \nhimself.  I had no doubt that under all the circumstances we should \nbe married in the most private and simple manner.  Perhaps I should \nonly have to say to Ada, \"Would you like to come and see me married \nto-morrow, my pet?\"  Perhaps our wedding might even be as \nunpretending as her own, and I might not find it necessary to say \nanything about it until it was over.  I thought that if I were to \nchoose, I would like this best.\n\nThe only exception I made was Mrs. Woodcourt.  I told her that I \nwas going to be married to my guardian and that we had been engaged \nsome time.  She highly approved.  She could never do enough for me \nand was remarkably softened now in comparison with what she had \nbeen when we first knew her.  There was no trouble she would not \nhave taken to have been of use to me, but I need hardly say that I \nonly allowed her to take as little as gratified her kindness \nwithout tasking it.\n\nOf course this was not a time to neglect my guardian, and of course \nit was not a time for neglecting my darling.  So I had plenty of \noccupation, which I was glad of; and as to Charley, she was \nabsolutely not to be seen for needlework.  To surround herself with \ngreat heaps of it--baskets full and tables full--and do a little, \nand spend a great deal of time in staring with her round eyes at \nwhat there was to do, and persuade herself that she was going to do \nit, were Charley's great dignities and delights.\n\nMeanwhile, I must say, I could not agree with my guardian on the \nsubject of the will, and I had some sanguine hopes of Jarndyce and \nJarndyce.  Which of us was right will soon appear, but I certainly \ndid encourage expectations.  In Richard, the discovery gave \noccasion for a burst of business and agitation that buoyed him up \nfor a little time, but he had lost the elasticity even of hope now \nand seemed to me to retain only its feverish anxieties.  From \nsomething my guardian said one day when we were talking about this, \nI understood that my marriage would not take place until after the \nterm-time we had been told to look forward to; and I thought the \nmore, for that, how rejoiced I should be if I could be married when \nRichard and Ada were a little more prosperous.\n\nThe term was very near indeed when my guardian was called out of \ntown and went down into Yorkshire on Mr. Woodcourt's business.  He \nhad told me beforehand that his presence there would be necessary.  \nI had just come in one night from my dear girl's and was sitting in \nthe midst of all my new clothes, looking at them all around me and \nthinking, when a letter from my guardian was brought to me.  It \nasked me to join him in the country and mentioned by what stage-\ncoach my place was taken and at what time in the morning I should \nhave to leave town.  It added in a postscript that I would not be \nmany hours from Ada.\n\nI expected few things less than a journey at that tinae, but I was \nready for it in half an hour and set off as appointed early next \nmorning.  I travelled all day, wondering all day what I could be \nwanted for at such a distance; now I thought it might be for this \npurpose, and now I thought it might be for that purpose, but I was \nnever, never, never near the truth.\n\nIt was night when I came to my journey's end and found my guardian \nwaiting for me.  This was a great relief, for towards evening I had \nbegun to fear (the more so as his letter was a very short one) that \nhe might be ill.  However, there he was, as well as it was possible \nto be; and when I saw his genial face again at its brightest and \nbest, I said to myself, he has been doing some other great \nkindness.  Not that it required much penetration to say that, \nbecause I knew that his being there at all was an act of kindness.\n\nSupper was ready at the hotel, and when we were alone at table he \nsaid, \"Full of curiosity, no doubt, little woman, to know why I \nhave brought you here?\"\n\n\"Well, guardian,\" said I, \"without thinking myself a Fatima or you \na Blue Beard, I am a little curious about it.\"\n\n\"Then to ensure your night's rest, my love,\" he returned gaily, \"I \nwon't wait until to-morrow to tell you.  I have very much wished to \nexpress to Woodcourt, somehow, my sense of his humanity to poor \nunfortunate Jo, his inestimable services to my young cousins, and \nhis value to us all.  When it was decided that he should settle \nhere, it came into my head that I might ask his acceptance of some \nunpretending and suitable little place to lay his own head in.  I \ntherefore caused such a place to be looked out for, and such a \nplace was found on very easy terms, and I have been touching it up \nfor him and making it habitable.  However, when I walked over it \nthe day before yesterday and it was reported ready, I found that I \nwas not housekeeper enough to know whether things were all as they \nought to be.  So I sent off for the best little housekeeper that \ncould possibly be got to come and give me her advice and opinion.  \nAnd here she is,\" said my guardian, \"laughing and crying both \ntogether!\"\n\nBecause he was so dear, so good, so admirable.  I tried to tell him \nwhat I thought of him, but I could not articulate a word.\n\n\"Tut, tut!\" said my guardian.  \"You make too much of it, little \nwoman.  Why, how you sob, Dame Durden, how you sob!\"\n\n\"It is with exquisite pleasure, guardian--with a heart full of \nthanks.\"\n\n\"Well, well,\" said he.  \"I am delighted that you approve.  I \nthought you would.  I meant it as a pleasant surprise for the \nlittle mistress of Bleak House.\"\n\nI kissed him and dried my eyes.  \"I know now!\" said I.  \"I have \nseen this in your face a long while.\"\n\n\"No; have you really, my dear?\" said he.  \"What a Dame Durden it is \nto read a face!\"\n\nHe was so quaintly cheerful that I could not long be otherwise, and \nwas almost ashamed of having been otherwise at all.  When I went to \nbed, I cried.  I am bound to confess that I cried; but I hope it \nwas with pleasure, though I am not quite sure it was with pleasure.  \nI repeated every word of the letter twice over.\n\nA most beautiful summer morning succeeded, and after breakfast we \nwent out arm in arm to see the house of which I was to give my \nmighty housekeeping opinion.  We entered a flower-garden by a gate \nin a side wall, of which he had the key, and the first thing I saw \nwas that the beds and flowers were all laid out according to the \nmanner of my beds and flowers at home.\n\n\"You see, my dear,\" observed my guardian, standing still with a \ndelighted face to watch my looks, \"knowing there could be no better \nplan, I borrowed yours.\"\n\nWe went on by a pretty little orchard, where the cherries were \nnestling among the green leaves and the shadows of the apple-trees \nwere sporting on the grass, to the house itself--a cottage, quite a \nrustic cottage of doll's rooms; but such a lovely place, so \ntranquil and so beautiful, with such a rich and smiling country \nspread around it; with water sparkling away into the distance, here \nall overhung with summer-growth, there turning a humming mill; at \nits nearest point glancing through a meadow by the cheerful town, \nwhere cricket-players were assembling in bright groups and a flag \nwas flying from a white tent that rippled in the sweet west wind.  \nAnd still, as we went through the pretty rooms, out at the little \nrustic verandah doors, and underneath the tiny wooden colonnades \ngarlanded with woodbine, jasmine, and honey-suckle, I saw in the \npapering on the walls, in the colours of the furniture, in the \narrangement of all the pretty objects, MY little tastes and \nfancies, MY little methods and inventions which they used to laugh \nat while they praised them, my odd ways everywhere.\n\nI could not say enough in admiration of what was all so beautiful, \nbut one secret doubt arose in my mind when I saw this, I thought, \noh, would he be the happier for it!  Would it not have been better \nfor his peace that I should not have been so brought before him?  \nBecause although I was not what he thought me, still he loved me \nvery dearly, and it might remind him mournfully of what be believed \nhe had lost.  I did not wish him to forget me--perhaps he might not \nhave done so, without these aids to his memory--but my way was \neasier than his, and I could have reconciled myself even to that so \nthat he had been the happier for it.\n\n\"And now, little woman,\" said my guardian, whom I had never seen so \nproud and joyful as in showing me these things and watching my \nappreciation of them, \"now, last of all, for the name of this \nhouse.\"\n\n\"What is it called, dear guardian?\"\n\n\"My child,\" said he, \"come and see,\"\n\nHe took me to the porch, which he had hitherto avoided, and said, \npausing before we went out, \"My dear child, don't you guess the \nname?\"\n\n\"No!\" said I.\n\nWe went out of the porch and he showed me written over it, Bleak \nHouse.\n\nHe led me to a seat among the leaves close by, and sitting down \nbeside me and taking my hand in his, spoke to me thus, \"My darling \ngirl, in what there has been between us, I have, I hope, been \nreally solicitous for your happiness.  When I wrote you the letter \nto which you brought the answer,\" smiling as he referred to it, \"I \nhad my own too much in view; but I had yours too.  Whether, under \ndifferent circumstances, I might ever have renewed the old dream I \nsometimes dreamed when you were very young, of making you my wife \none day, I need not ask myself.  I did renew it, and I wrote my \nletter, and you brought your answer.  You are following what I say, \nmy child?\"\n\nI was cold, and I trembled violently, but not a word he uttered was \nlost.  As I sat looking fixedly at him and the sun's rays \ndescended, softly shining through the leaves upon his bare head, I \nfelt as if the brightness on him must be like the brightness of the \nangels.\n\n\"Hear me, my love, but do not speak.  It is for me to speak now.  \nWhen it was that I began to doubt whether what I had done would \nreally make you happy is no matter.  Woodcourt came home, and I \nsoon had no doubt at all.\"\n\nI clasped him round the neck and hung my bead upon his breast and \nwept.  \"Lie lightly, confidently here, my child,\" said he, pressing \nme gently to him.  \"I am your guardian and your father now.  Rest \nconfidently here.\"\n\nSoothingly, like the gentle rustling of the leaves; and genially, \nlike the ripening weather; and radiantly and beneficently, like the \nsunshine, he went on.\n\n\"Understand me, my dear girl.  I had no doubt of your being \ncontented and happy with me, being so dutiful and so devoted; but I \nsaw with whom you would be happier.  That I penetrated his secret \nwhen Dame Durden was blind to it is no wonder, for I knew the good \nthat could never change in her better far than she did.  Well! I \nhave long been in Allan Woodcourt's confidence, although he was \nnot, until yesterday, a few hours before you came here, in mine.  \nBut I would not have my Esther's bright example lost; I would not \nhave a jot of my dear girl's virtues unobserved and unhonoured; I \nwould not have her admitted on sufferance into the line of Morgan \nap-Kerrig, no, not for the weight in gold of all the mountains in \nWales!\"\n\nHe stopped to kiss me on the forehead, and I sobbed and wept \nafresh.  For I felt as if I could not bear the painful delight of \nhis praise.\n\n\"Hush, little woman!  Don't cry; this is to be a day of joy.  I \nhave looked forward to it,\" he said exultingly, \"for months on \nmonths!  A few words more, Dame Trot, and I have said my say.  \nDetermined not to throw away one atom of my Esther's worth, I took \nMrs. Woodcourt into a separate confidence.  'Now, madam,' said I, \n'I clearly perceive--and indeed I know, to boot--that your son \nloves my ward.  I am further very sure that my ward loves your son, \nbut will sacrifice her love to a sense of duty and affection, and \nwill sacrifice it so completely, so entirely, so religiously, that \nyou should never suspect it though you watched her night and day.'  \nThen I told her all our story--ours--yours and mine.  'Now, madam,' \nsaid I, 'come you, knowing this, and live with us.  Come you, and \nsee my child from hour to hour; set what you see against her \npedigree, which is this, and this'--for I scorned to mince it--'and \ntell me what is the true legitimacy when you shall have quite made \nup your mind on that subject.'  Why, honour to her old Welsh blood, \nmy dear,\" cried my guardian with enthusiasm, \"I believe the heart \nit animates beats no less warmly, no less admiringly, no less \nlovingly, towards Dame Durden than my own!\"\n\nHe tenderly raised my head, and as I clung to him, kissed me in his \nold fatherly way again and again.  What a light, now, on the \nprotecting manner I had thought about!\n\n\"One more last word.  When Allan Woodcourt spoke to you, my dear, \nhe spoke with my knowledge and consent--but I gave him no \nencouragement, not I, for these surprises were my great reward, and \nI was too miserly to part with a scrap of it.  He was to come and \ntell me all that passed, and he did.  I have no more to say.  My \ndearest, Allan Woodcourt stood beside your father when he lay dead\n--stood beside your mother.  This is Bleak House.  This day I give \nthis house its little mistress; and before God, it is the brightest \nday in all my life!\"\n\nHe rose and raised me with him.  We were no longer alone.  My \nhusband--I have called him by that name full seven happy years now\n--stood at my side.\n\n\"Allan,\" said my guardian, \"take from me a willing gift, the best \nwife that ever man had.  What more can I say for you than that I \nknow you deserve her!  Take with her the little home she brings \nyou.  You know what she will make it, Allan; you know what she has \nmade its namesake.  Let me share its felicity sometimes, and what \ndo I sacrifice?  Nothing, nothing.\"\n\nHe kissed me once again, and now the tears were in his eyes as he \nsaid more softly, \"Esther, my dearest, after so many years, there \nis a kind of parting in this too.  I know that my mistake has \ncaused you some distress.  Forgive your old guardian, in restoring \nhim to his old place in your affections; and blot it out of your \nmemory.  Allan, take my dear.\"\n\nHe moved away from under the green roof of leaves, and stopping in \nthe sunlight outside and turning cheerfully towards us, said, \"I \nshall be found about here somewhere.  It's a west wind, little \nwoman, due west!  Let no one thank me any more, for I am going to \nrevert to my bachelor habits, and if anybody disregards this \nwarning, I'll run away and never come back!\"\n\nWhat happiness was ours that day, what joy, what rest, what hope, \nwhat gratitude, what bliss!  We were to be married before the month \nwas out, but when we were to come and take possession of our own \nhouse was to depend on Richard and Ada.\n\nWe all three went home together next day.  As soon as we arrived in \ntown, Allan went straight to see Richard and to carry our joyful \nnews to him and my darling.  Late as it was, I meant to go to her \nfor a few minutes before lying down to sleep, but I went home with \nmy guardian first to make his tea for him and to occupy the old \nchair by his side, for I did not like to think of its being empty \nso soon.\n\nWhen we came home we found that a young man had called three times \nin the course of that one day to see me and that having been told \non the occasion of his third call that I was not expected to return \nbefore ten o'clock at night, he had left word that he would call \nabout then.  He had left his card three times.  Mr. Guppy.\n\nAs I naturally speculated on the object of these visits, and as I \nalways associated something ludicrous with the visitor, it fell out \nthat in laughing about Mr. Guppy I told my guardian of his old \nproposal and his subsequent retraction.  \"After that,\" said my \nguardian, \"we will certainly receive this hero.\"  So instructions \nwere given that Mr. Guppy should be shown in when he came again, \nand they were scarcely given when he did come again.\n\nHe was embarrassed when he found my guardian with me, but recovered \nhimself and said, \"How de do, sir?\"\n\n\"How do you do, sir?\" returned my guardian.\n\n\"Thank you, sir, I am tolerable,\" returned Mr. Guppy.  \"Will you \nallow me to introduce my mother, Mrs. Guppy of the Old Street Road, \nand my particular friend, Mr. Weevle.  That is to say, my friend \nhas gone by the name of Weevle, but his name is really and truly \nJobling.\"\n\nMy guardian begged them to be seated, and they all sat down.\n\n\"Tony,\" said Mr. Guppy to his friend after an awkward silence.  \n\"Will you open the case?\"\n\n\"Do it yourself,\" returned the friend rather tartly.\n\n\"Well, Mr. Jarndyce, sir,\" Mr. Guppy, after a moment's \nconsideration, began, to the great diversion of his mother, which \nshe displayed by nudging Mr. Jobling with her elbow and winking at \nme in a most remarkable manner, \"I had an idea that I should see \nMiss Summerson by herself and was not quite prepared for your \nesteemed presence.  But Miss Summerson has mentioned to you, \nperhaps, that something has passed between us on former occasions?\"\n\n\"Miss Summerson,\" returned my guardian, smiling, \"has made a \ncommunication to that effect to me.\"\n\n\"That,\" said Mr. Guppy, \"makes matters easier.  Sir, I have come \nout of my articles at Kenge and Carboy's, and I believe with \nsatisfaction to all parties.  I am now admitted (after undergoing \nan examination that's enough to badger a man blue, touching a pack \nof nonsense that he don't want to know) on the roll of attorneys \nand have taken out my certificate, if it would be any satisfaction \nto you to see it.\"\n\n\"Thank you, Mr. Guppy,\" returned my guardian.  \"I am quite willing\n--I believe I use a legal phrase--to admit the certificate.\"\n\nMr. Guppy therefore desisted from taking something out of his \npocket and proceeded without it.\n\nI have no capital myself, but my mother has a little property which \ntakes the form of an annuity\"--here Mr. Guppy's mother rolled her \nhead as if she never could sufficiently enjoy the observation, and \nput her handkerchief to her mouth, and again winked at me--\"and a \nfew pounds for expenses out of pocket in conducting business will \nnever be wanting, free of interest, which is an advantage, you \nknow,\" said Mr. Guppy feelingly.\n\n\"Certainly an advantage,\" returned my guardian.\n\n\"I HAVE some connexion,\" pursued Mr. Guppy, \"and it lays in the \ndirection of Walcot Square, Lambeth.  I have therefore taken a \n'ouse in that locality, which, in the opinion of my friends, is a \nhollow bargain (taxes ridiculous, and use of fixtures included in \nthe rent), and intend setting up professionally for myself there \nforthwith.\"\n\nHere Mr. Guppy's mother fell into an extraordinary passion of \nrolling her head and smiling waggishly at anybody who would look at \nher.\n\n\"It's a six-roomer, exclusive of kitchens,\" said Mr. Guppy, \"and in \nthe opinion of my friends, a commodious tenement.  When I mention \nmy friends, I refer principally to my friend Jobling, who I believe \nhas known me,\" Mr. Guppy looked at him with a sentimental air, \n\"from boyhood's hour.\"\n\nMr. Jobling confirmed this with a sliding movement of his legs.\n\n\"My friend Jobling will render me his assistance in the capacity of \nclerk and will live in the 'ouse,\" said Mr. Guppy.  \"My mother will \nlikewise live in the 'ouse when her present quarter in the Old \nStreet Road shall have ceased and expired; and consequently there \nwill be no want of society.  My friend Jobling is naturally \naristocratic by taste, and besides being acquainted with the \nmovements of the upper circles, fully backs me in the intentions I \nam now developing.\"\n\nMr. Jobling said \"Certainly\" and withdrew a little from the elbow \nof Mr Guppy's mother.\n\n\"Now, I have no occasion to mention to you, sir, you being in the \nconfidence of Miss Summerson,\" said Mr. Guppy, \"(mother, I wish \nyou'd be so good as to keep still), that Miss Summerson's image was \nformerly imprinted on my 'eart and that I made her a proposal of \nmarriage.\"\n\n\"That I have heard,\" returned my guardian.\n\n\"Circumstances,\" pursued Mr. Guppy, \"over which I had no control, \nbut quite the contrary, weakened the impression of that image for a \ntime.  At which time Miss Summerson's conduct was highly genteel; I \nmay even add, magnanimous.\"\n\nMy guardian patted me on the shoulder and seemed much amused.\n\n\"Now, sir,\" said Mr. Guppy, \"I have got into that state of mind \nmyself that I wish for a reciprocity of magnanimous behaviour.  I \nwish to prove to Miss Summerson that I can rise to a heighth of \nwhich perhaps she hardly thought me capable.  I find that the image \nwhich I did suppose had been eradicated from my 'eart is NOT \neradicated.  Its influence over me is still tremenjous, and \nyielding to it, I am willing to overlook the circumstances over \nwhich none of us have had any control and to renew those proposals \nto Miss Summerson which I had the honour to make at a former \nperiod.  I beg to lay the 'ouse in Walcot Square, the business, and \nmyself before Miss Summerson for her acceptance.\"\n\n\"Very magnanimous indeed, sir,\" observed my guardian.\n\n\"Well, sir,\" replied Mr. Guppy with candour, \"my wish is to BE \nmagnanimous.  I do not consider that in making this offer to Miss \nSummerson I am by any means throwing myself away; neither is that \nthe opinion of my friends.  Still, there are circumstances which I \nsubmit may be taken into account as a set off against any little \ndrawbacks of mine, and so a fair and equitable balance arrived at.\"\n\n\"I take upon myself, sir,\" said my guardian, laughing as he rang \nthe bell, \"to reply to your proposals on behalf of Miss Summerson.  \nShe is very sensible of your handsome intentions, and wishes you \ngood evening, and wishes you well.\"\n\n\"Oh!\" said Mr. Guppy with a blank look.  \"Is that tantamount, sir, \nto acceptance, or rejection, or consideration?\"\n\n\"To decided rejection, if you please,\" returned my guardian.\n\nMr. Guppy looked incredulously at his friend, and at his mother, \nwho suddenly turned very angry, and at the floor, and at the \nceiling.\n\n\"Indeed?\" said he.  \"Then, Jobling, if you was the friend you \nrepresent yourself, I should think you might hand my mother out of \nthe gangway instead of allowing her to remain where she ain't \nwanted.\"\n\nBut Mrs. Guppy positively refused to come out of the gangway.  She \nwouldn't hear of it.  \"Why, get along with you,\" said she to my \nguardian, \"what do you mean?  Ain't my son good enough for you?  \nYou ought to be ashamed of yourself.  Get out with you!\"\n\n\"My good lady,\" returned my guardian, \"it is hardly reasonable to \nask me to get out of my own room.\"\n\n\"I don't care for that,\" said Mrs. Guppy.  \"Get out with you.  If \nwe ain't good enough for you, go and procure somebody that is good \nenough.  Go along and find 'em.\"\n\nI was quite unprepared for the rapid manner in which Mrs. Guppy's \npower of jocularity merged into a power of taking the profoundest \noffence.\n\n\"Go along and find somebody that's good enough for you,\" repeated \nMrs. Guppy.  \"Get out!\"  Nothing seemed to astonish Mr. Guppy's \nmother so much and to make her so very indignant as our not getting \nout.  \"Why don't you get out?\" said Mrs. Guppy.  \"What are you \nstopping here for?\"\n\n\"Mother,\" interposed her son, always getting before her and pushing \nher back with one shoulder as she sidled at my guardian, \"WILL you \nhold your tongue?\"\n\n\"No, William,\" she returned, \"I won't!  Not unless he gets out, I \nwon't!\"\n\nHowever, Mr. Guppy and Mr. Jobling together closed on Mr. Guppy's \nmother (who began to be quite abusive) and took her, very much \nagainst her will, downstairs, her voice rising a stair higher every \ntime her figure got a stair lower, and insisting that we should \nimmediately go and find somebody who was good enough for us, and \nabove all things that we should get out.\n\n\n\nCHAPTER LXV\n\nBeginning the World\n\n\nThe term had commenced, and my guardian found an intimation from \nMr. Kenge that the cause would come on in two days.  As I had \nsufficient hopes of the will to be in a flutter about it, Allan and \nI agreed to go down to the court that morning.  Richard was \nextremely agitated and was so weak and low, though his illness was \nstill of the mind, that my dear girl indeed had sore occasion to be \nsupported.  But she looked forward--a very little way now--to the \nhelp that was to come to her, and never drooped.\n\nIt was at Westminster that the cause was to come on.  It had come \non there, I dare say, a hundred times before, but I could not \ndivest myself of an idea that it MIGHT lead to some result now.  We \nleft home directly after breakfast to be at Westminster Hall in \ngood time and walked down there through the lively streets--so \nhappily and strangely it seemed!--together.\n\nAs we were going along, planning what we should do for Richard and \nAda, I heard somebody calling \"Esther!  My dear Esther!  Esther!\"  \nAnd there was Caddy Jellyby, with her head out of the window of a \nlittle carriage which she hired now to go about in to her pupils \n(she had so many), as if she wanted to embrace me at a hundred \nyards' distance.  I had written her a note to tell her of all that \nmy guardian had done, but had not had a moment to go and see her.  \nOf course we turned back, and the affectionate girl was in that \nstate of rapture, and was so overjoyed to talk about the night when \nshe brought me the flowers, and was so determined to squeeze my \nface (bonnet and all) between her hands, and go on in a wild manner \naltogether, calling me all kinds of precious names, and telling \nAllan I had done I don't know what for her, that I was just obliged \nto get into the little carriage and caln her down by letting her \nsay and do exactly what she liked.  Allan, standing at the window, \nwas as pleased as Caddy; and I was as pleased as either of them; \nand I wonder that I got away as I did, rather than that I came off \nlaughing, and red, and anything but tidy, and looking after Caddy, \nwho looked after us out of the coach-window as long as she could \nsee us.\n\nThis made us some quarter of an hour late, and when we came to \nWestminster Hall we found that the day's business was begun.  Worse \nthan that, we found such an unusual crowd in the Court of Chancery \nthat it was full to the door, and we could neither see nor hear \nwhat was passing within.  It appeared to be something droll, for \noccasionally there was a laugh and a cry of \"Silence!\"  It appeared \nto be something interesting, for every one was pushing and striving \nto get nearer.  It appeared to be something that made the \nprofessional gentlemen very merry, for there were several young \ncounsellors in wigs and whiskers on the outside of the crowd, and \nwhen one of them told the others about it, they put their hands in \ntheir pockets, and quite doubled themselves up with laughter, and \nwent stamping about the pavement of the Hall.\n\nWe asked a gentleman by us if he knew what cause was on.  He told \nus Jarndyce and Jarndyce.  We asked him if he knew what was doing \nin it.  He said really, no he did not, nobody ever did, but as well \nas he could make out, it was over.  Over for the day? we asked him.  \nNo, he said, over for good.\n\nOver for good!\n\nWhen we heard this unaccountable answer, we looked at one another \nquite lost in amazement.  Could it be possible that the will had \nset things right at last and that Richard and Ada were going to be \nrich?  It seemed too good to be true.  Alas it was!\n\nOur suspense was short, for a break-up soon took place in the \ncrowd, and the people came streaming out looking flushed and hot \nand bringing a quantity of bad air with them.  Still they were all \nexceedingly amused and were more like people coming out from a \nfarce or a juggler than from a court of justice.  We stood aside, \nwatching for any countenance we knew, and presently great bundles \nof paper began to be carried out--bundles in bags, bundles too \nlarge to be got into any bags, immense masses of papers of all \nshapes and no shapes, which the bearers staggered under, and threw \ndown for the time being, anyhow, on the Hall pavement, while they \nwent back to bring out more.  Even these clerks were laughing.  We \nglanced at the papers, and seeing Jarndyce and Jarndyce everywhere, \nasked an official-looking person who was standing in the midst of \nthem whether the cause was over.  Yes, he said, it was all up with \nit at last, and burst out laughing too.\n\nAt this juncture we perceived Mr. Kenge coming out of court with an \naffable dignity upon him, listening to Mr. Vholes, who was \ndeferential and carried his own bag.  Mr. Vholes was the first to \nsee us.  \"Here is Miss Summerson, sir,\" he said.  \"And Mr. \nWoodcourt.\"\n\n\"Oh, indeed!  Yes.  Truly!\" said Mr. Kenge, raising his hat to me \nwith polished politeness.  \"How do you do?  Glad to see you.  Mr. \nJarndyce is not here?\"\n\nNo.  He never came there, I reminded him.\n\n\"Really,\" returned Mr. Kenge, \"it is as well that he is NOT here \nto-day, for his--shall I say, in my good friend's absence, his \nindomitable singularity of opinion?--might have been strengthened, \nperhaps; not reasonably, but might have been strengthened.\"\n\n\"Pray what has been done to-day?\" asked Allan.\n\n\"I beg your pardon?\" said Mr. Kenge with excessive urbanity.\n\n\"What has been done to-day?\"\n\n\"What has been done,\" repeated Mr. Kenge.  \"Quite so.  Yes.  Why, \nnot much has been done; not much.  We have been checked--brought up \nsuddenly, I would say--upon the--shall I term it threshold?\"\n\n\"Is this will considered a genuine document, sir?\" said Allan.  \n\"Will you tell us that?\"\n\n\"Most certainly, if I could,\" said Mr. Kenge; \"but we have not gone \ninto that, we have not gone into that.\"\n\n\"We have not gone into that,\" repeated Mr. Vholes as if his low \ninward voice were an echo.\n\n\"You are to reflect, Mr. Woodcourt,\" observed Mr. Kenge, using his \nsilver trowel persuasively and smoothingly, \"that this has been a \ngreat cause, that this has been a protracted cause, that this has \nbeen a complex cause.  Jarndyce and Jarndyce has been termed, not \ninaptly, a monument of Chancery practice.\"\n\n\"And patience has sat upon it a long time,\" said Allan.\n\n\"Very well indeed, sir,\" returned Mr. Kenge with a certain \ncondeseending laugh he had.  \"Very well!  You are further to \nreflect, Mr. Woodcourt,\" becoming dignified almost to severity, \n\"that on the numerous difficulties, contingencies, masterly \nfictions, and forms of procedure in this great cause, there has \nbeen expended study, ability, eloquence, knowledge, intellect, Mr. \nWoodcourt, high intellect.  For many years, the--a--I would say the \nflower of the bar, and the--a--I would presume to add, the matured \nautumnal fruits of the woolsack--have been lavished upon Jarndyce \nand Jarndyce.  If the public have the benefit, and if the country \nhave the adornment, of this great grasp, it must be paid for in \nmoney or money's worth, sir.\"\n\n\"Mr. Kenge,\" said Allan, appearing enlightened all in a moment.  \n\"Excuse me, our time presses.  Do I understand that the whole \nestate is found to have been absorbed in costs?\"\n\n\"Hem!  I believe so,\" returned Mr. Kenge.  \"Mr. Vholes, what do YOU \nsay?\"\n\n\"I believe so,\" said Mr. Vholes.\n\n\"And that thus the suit lapses and melts away?\"\n\n\"Probably,\" returned Mr. Kenge.  \"Mr. Vholes?\"\n\n\"Probably,\" said Mr. Vholes.\n\n\"My dearest life,\" whispered Allan, \"this will break Richard's \nheart!\"\n\nThere was such a shock of apprehension in his face, and he knew \nRichard so perfectly, and I too had seen so much of his gradual \ndecay, that what my dear girl had said to me in the fullness of her \nforeboding love sounded like a knell in my ears.\n\n\"In case you should be wanting Mr. C., sir,\" said Mr. Vholes, \ncoming after us, \"you'll find him in court.  I left him there \nresting himself a little.  Good day, sir; good day, Miss \nSummerson.\"  As he gave me that slowly devouring look of his, while \ntwisting up the strings of his bag before he hastened with it after \nMr. Kenge, the benignant shadow of whose conversational presence he \nseemed afraid to leave, he gave one gasp as if he had swallowed the \nlast morsel of his client, and his black buttoned-up unwholesome \nfigure glided away to the low door at the end of the Hall.\n\n\"My dear love,\" said Allan, \"leave to me, for a little while, the \ncharge you gave me.  Go home with this intelligence and come to \nAda's by and by!\"\n\nI would not let him take me to a coach, but entreated him to go to \nRichard without a moment's delay and leave me to do as he wished.  \nHurrying home, I found my guardian and told him gradually with what \nnews I had returned.  \"Little woman,\" said he, quite unmoved for \nhimself, \"to have done with the suit on any terms is a greater \nblessing than I had looked for.  But my poor young cousins!\"\n\nWe talked about them all the morning and discussed what it was \npossible to do.  In the afternoon my guardian walked with me to \nSymond's Inn and left me at the door.  I went upstairs.  When my \ndarling heard my footsteps, she came out into the small passage and \nthrew her arms round my neck, but she composed herself direcfly and \nsaid that Richard had asked for me several times.  Allan had found \nhim sitting in the corner of the court, she told me, like a stone \nfigure.  On being roused, he had broken away and made as if he \nwould have spoken in a fierce voice to the judge.  He was stopped \nby his mouth being full of blood, and Allan had brought him home.\n\nHe was lying on a sofa with his eyes closed when I went in.  There \nwere restoratives on the table; the room was made as airy as \npossible, and was darkened, and was very orderly and quiet.  Allan \nstood behind him watching him gravely.  His face appeared to me to \nbe quite destitute of colour, and now that I saw him without his \nseeing me, I fully saw, for the first time, how worn away he was.  \nBut he looked handsomer than I had seen him look for many a day.\n\nI sat down by his side in silence.  Opening his eyes by and by, he \nsaid in a weak voice, but with his old smile, \"Dame Durden, kiss \nme, my dear!\"\n\nIt was a great comfort and surprise to me to find him in his low \nstate cheerful and looking forward.  He was happier, he said, in \nour intended marriage than he could find words to tell me.  My \nhusband had been a guardian angel to him and Ada, and he blessed us \nboth and wished us all the joy that life could yield us.  I almost \nfelt as if my own heart would have broken when I saw him take my \nhusband's hand and hold it to his breast.\n\nWe spoke of the future as much as possible, and he said several \ntimes that he must be present at our marriage if he could stand \nupon his feet.  Ada would contrive to take him, somehow, he said.  \n\"Yes, surely, dearest Richard!\"  But as my darling answered him \nthus hopefully, so serene and beautiful, with the help that was to \ncome to her so near--I knew--I knew!\n\nIt was not good for him to talk too much, and when he was silent, \nwe were silent too.  Sitting beside him, I made a pretence of \nworking for my dear, as he had always been used to joke about my \nbeing busy.  Ada leaned upon his pillow, holding his head upon her \narm.  He dozed often, and whenever he awoke without seeing him, \nsaid first of all, \"Where is Woodcourt?\"\n\nEvening had come on when I lifted up my eyes and saw my guardian \nstanding in the little hall.  \"Who is that, Dame Durden?\" Richard \nasked me.  The door was behind him, but he had observed in my face \nthat some one was there.\n\nI looked to Allan for advice, and as he nodded \"Yes,\" bent over \nRichard and told him.  My guardian saw what passed, came softly by \nme in a moment, and laid his hand on Richard's.  \"Oh, sir,\" said \nRichard, \"you are a good man, you are a good man!\" and burst into \ntears for the first time.\n\nMy guardian, the picture of a good man, sat down in my place, \nkeeping his hand on Richard's.\n\n\"My dear Rick,\" said he, \"the clouds have cleared away, and it is \nbright now.  We can see now.  We were all bewildered, Rick, more or \nless.  What matters!  And how are you, my dear boy?\"\n\n\"I am very weak, sir, but I hope I shall be stronger.  I have to \nbegin the world.\"\n\n\"Aye, truly; well said!\" cried my guardian.\n\n\"I will not begin it in the old way now,\" said Richard with a sad \nsmile.  \"I have learned a lesson now, sir.  It was a hard one, but \nyou shall be assured, indeed, that I have learned it.\"\n\n\"Well, well,\" said my guardian, comforting him; \"well, well, well, \ndear boy!\"\n\n\"I was thinking, sir,\" resumed Richard, \"that there is nothing on \nearth I should so much like to see as their house--Dame Durden's \nand Woodcourt's house.  If I could be removed there when I begin to \nrecover my strength, I feel as if I should get well there sooner \nthan anywhere.\"\n\n\"Why, so have I been thinking too, Rick,\" said my guardian, \"and \nour little woman likewise; she and I have been talking of it this \nvery day.  I dare say her husband won't object.  What do you \nthink?\"\n\nRichard smiled and lifted up his arm to touch him as he stood \nbehind the head of the couch.\n\n\"I say nothing of Ada,\" said Richard, \"but I think of her, and have \nthought of her very much.  Look at her!  See her here, sir, bending \nover this pillow when she has so much need to rest upon it herself, \nmy dear love, my poor girl!\"\n\nHe clasped her in his arms, and none of us spoke.  He gradually \nreleased her, and she looked upon us, and looked up to heaven, and \nmoved her lips.\n\n\"When I get down to Bleak House,\" said Richard, \"I shall have much \nto tell you, sir, and you will have much to show me.  You will go, \nwon't you?\"\n\n\"Undoubtedly, dear Rick.\"\n\n\"Thank you; like you, like you,\" said Richard.  \"But it's all like \nyou.  They have been telling me how you planned it and how you \nremembered all Esther's familiar tastes and ways.  It will be like \ncoming to the old Bleak House again.\"\n\n\"And you will come there too, I hope, Rick.  I am a solitary man \nnow, you know, and it will be a charity to come to me.  A charity \nto come to me, my love!\" he repeated to Ada as he gently passed his \nhand over her golden hair and put a lock of it to his lips.  (I \nthink he vowed within himself to cherish her if she were left \nalone.)\n\n\"It was a troubled dream?\" said Richard, clasping both my \nguardian's hands eagerly.\n\n\"Nothing more, Rick; nothing more.\"\n\n\"And you, being a good man, can pass it as such, and forgive and \npity the dreamer, and be lenient and encouraging when he wakes?\"\n\n\"Indeed I can.  What am I but another dreamer, Rick?\"\n\n\"I will begin the world!\" said Richard with a light in his eyes.\n\nMy husband drew a little nearer towards Ada, and I saw him solemnly \nlift up his hand to warn my guardian.\n\n\"When shall I go from this place to that pleasant country where the \nold times are, where I shall have strength to tell what Ada has \nbeen to me, where I shall be able to recall my many faults and \nblindnesses, where I shall prepare myself to be a guide to my \nunborn child?\" said Richard.  \"When shall I go?\"\n\n\"Dear Rick, when you are strong enough,\" returned my guardian.\n\n\"Ada, my darling!\"\n\nHe sought to raise himself a little.  Allan raised him so that she \ncould hold him on her bosom, which was what he wanted.\n\n\"I have done you many wrongs, my own.  I have fallen like a poor \nstray shadow on your way, I have married you to poverty and \ntrouble, I have scattered your means to the winds.  You will \nforgive me all this, my Ada, before I begin the world?\"\n\nA smile irradiated his face as she bent to kiss him.  He slowly \nlaid his face down upon her bosom, drew his arms closer round her \nneck, and with one parting sob began the world.  Not this world, \noh, not this!  The world that sets this right.\n\nWhen all was still, at a late hour, poor crazed Miss Flite came \nweeping to me and told me she had given her birds their liberty.\n\n\n\nCHAPTER LXVI\n\nDown in Lincolnshire\n\n\nThere is a hush upon Chesney Wold in these altered days, as there \nis upon a portion of the family history.  The story goes that Sir \nLeicester paid some who could have spoken out to hold their peace; \nbut it is a lame story, feebly whispering and creeping about, and \nany brighter spark of life it shows soon dies away.  It is known \nfor certain that the handsome Lady Dedlock lies in the mausoleum in \nthe park, where the trees arch darkly overhead, and the owl is \nheard at night making the woods ring; but whence she was brought \nhome to be laid among the echoes of that solitary place, or how she \ndied, is all mystery.  Some of her old friends, principally to be \nfound among the peachy-cheeked charmers with the skeleton throats, \ndid once occasionally say, as they toyed in a ghastly manner with \nlarge fans--like charmers reduced to flirting with grim death, \nafter losing all their other beaux--did once occasionally say, when \nthe world assembled together, that they wondered the ashes of the \nDedlocks, entombed in the mausoleum, never rose against the \nprofanation of her company.  But the dead-and-gone Dedlocks take it \nvery calmly and have never been known to object.\n\nUp from among the fern in the hollow, and winding by the bridle-\nroad among the trees, comes sometimes to this lonely spot the sound \nof horses' hoofs.  Then may be seen Sir Leicester--invalided, bent, \nand almost blind, but of worthy presence yet--riding with a \nstalwart man beside him, constant to his bridle-rein.  When they \ncome to a certain spot before the mausoleum-door, Sir Leicester's \naccustomed horse stops of his own accord, and Sir Leicester, \npulling off his hat, is still for a few moments before they ride \naway.\n\nWar rages yet with the audacious Boythorn, though at uncertain \nintervals, and now hotly, and now coolly, flickering like an \nunsteady fire.  The truth is said to be that when Sir Leicester \ncame down to Lincolnshire for good, Mr. Boythorn showed a manifest \ndesire to abandon his right of way and do whatever Sir Leicester \nwould, which Sir Leicester, conceiving to be a condescension to his \nillness or misfortune, took in such high dudgeon, and was so \nmagnificently aggrieved by, that Mr. Boythorn found himself under \nthe necessity of committing a flagrant trespass to restore his \nneighbour to himself.  Similarly, Mr. Boythorn continues to post \ntremendous placards on the disputed thoroughfare and (with his bird \nupon his head) to hold forth vehemently against Sir Leicester in \nthe sanctuary of his own home; similarly, also, he defies him as of \nold in the little church by testifying a bland unconsciousness of \nhis existence.  But it is whispered that when he is most ferocious \ntowards his old foe, he is really most considerate, and that Sir \nLeicester, in the dignity of being implacable, little supposes how \nmuch he is humoured.  As little does he think how near together he \nand his antagonist have suffered in the fortunes of two sisters, \nand his antagonist, who knows it now, is not the man to tell him.  \nSo the quarrel goes on to the satisfaction of both.\n\nIn one of the lodges of the park--that lodge within sight of the \nhouse where, once upon a time, when the waters were out down in \nLincolnshire, my Lady used to see the keeper's child--the stalwart \nman, the trooper formerly, is housed.  Some relics of his old \ncalling hang upon the walls, and these it is the chosen recreation \nof a little lame man about the stable-yard to keep gleaming bright.  \nA busy little man he always is, in the polishing at harness-house \ndoors, of stirrup-irons, bits, curb-chains, harness bosses, \nanything in the way of a stable-yard that will take a polish, \nleading a life of friction.  A shaggy little damaged man, withal, \nnot unlike an old dog of some mongrel breed, who has been \nconsiderably knocked about.  He answers to the name of Phil.\n\nA goodly sight it is to see the grand old housekeeper (harder of \nhearing now) going to church on the arm of her son and to observe--\nwhich few do, for the house is scant of company in these times--the \nrelations of both towards Sir Leicester, and his towards them.  \nThey have visitors in the high summer weather, when a grey cloak \nand umbrella, unknown to Chesney Wold at other periods, are seen \namong the leaves; when two young ladies are occasionally found \ngambolling in sequestered saw-pits and such nooks of the park; and \nwhen the smoke of two pipes wreathes away into the fragrant evening \nair from the trooper's door.  Then is a fife heard trolling within \nthe lodge on the inspiring topic of the \"British Grenadiers\"; and \nas the evening closes in, a gruff inflexible voice is heard to say, \nwhile two men pace together up and down, \"But I never own to it \nbefore the old girl.  Discipline must be maintained.\"\n\nThe greater part of the house is shut up, and it is a show-house no \nlonger; yet Sir Leicester holds his shrunken state in the long \ndrawing-room for all that, and reposes in his old place before my \nLady's picture.  Closed in by night with broad screens, and \nillumined only in that part, the light of the drawing-room seems \ngradually contracting and dwindling until it shall be no more.  A \nlittle more, in truth, and it will be all extinguished for Sir \nLeicester; and the damp door in the mausoleum which shuts so tight, \nand looks so obdurate, will have opened and received him.\n\nVolumnia, growing with the flight of time pinker as to the red in \nher face, and yellower as to the white, reads to Sir Leicester in \nthe long evenings and is driven to various artifices to conceal her \nyawns, of which the chief and most efficacious is the insertion of \nthe pearl necklace between her rosy lips.  Long-winded treatises on \nthe Buffy and Boodle question, showing how Buffy is immaculate and \nBoodle villainous, and how the country is lost by being all Boodle \nand no Buffy, or saved by being all Buffy and no Boodle (it must be \none of the two, and cannot be anything else), are the staple of her \nreading.  Sir Leicester is not particular what it is and does not \nappear to follow it very closely, further than that he always comes \nbroad awake the moment Volumnia ventures to leave off, and \nsonorously repeating her last words, begs with some displeasure to \nknow if she finds herself fatigued.  However, Volumnia, in the \ncourse of her bird-like hopping about and pecking at papers, has \nalighted on a memorandum concerning herself in the event of \n\"anything happening\" to her kinsman, which is handsome compensation \nfor an extensive course of reading and holds even the dragon \nBoredom at bay.\n\nThe cousins generally are rather shy of Chesney Wold in its \ndullness, but take to it a little in the shooting season, when guns \nare heard in the plantations, and a few scattered beaters and \nkeepers wait at the old places of appointment for low-spirited twos \nand threes of cousins.  The debilitated cousin, more debilitated by \nthe dreariness of the place, gets into a fearful state of \ndepression, groaning under penitential sofa-pillows in his gunless \nhours and protesting that such fernal old jail's--nough t'sew fler \nup--frever.\n\nThe only great occasions for Volumnia in this changed aspect of the \nplace in Lincolnshire are those occasions, rare and widely \nseparated, when something is to be done for the county or the \ncountry in the way of gracing a public ball.  Then, indeed, does \nthe tuckered sylph come out in fairy form and proceed with joy \nunder cousinly escort to the exhausted old assembly-room, fourteen \nheavy miles off, which, during three hundred and sixty-four days \nand nights of every ordinary year, is a kind of antipodean lumber-\nroom full of old chairs and tables upside down.  Then, indeed, does \nshe captivate all hearts by her condescension, by her girlish \nvivacity, and by her skipping about as in the days when the hideous \nold general with the mouth too full of teeth had not cut one of \nthem at two guineas each.  Then does she twirl and twine, a \npastoral nymph of good family, through the mazes of the dance.  \nThen do the swains appear with tea, with lemonade, with sandwiches, \nwith homage.  Then is she kind and cruel, stately and unassuming, \nvarious, beautifully wilful.  Then is there a singular kind of \nparallel between her and the little glass chandeliers of another \nage embellishing that assembly-room, which, with their meagre \nstems, their spare little drops, their disappointing knobs where no \ndrops are, their bare little stalks from which knobs and drops have \nboth departed, and their little feeble prismatic twinkling, all \nseem Volumnias.\n\nFor the rest, Lincolnshire life to Volumnia is a vast blank of \novergrown house looking out upon trees, sighing, wringing their \nhands, bowing their heads, and casting their tears upon the window-\npanes in monotonous depressions.  A labyrinth of grandeur, less the \nproperty of an old family of human beings and their ghostly \nlikenesses than of an old family of echoings and thunderings which \nstart out of their hundred graves at every sound and go resounding \nthrough the building.  A waste of unused passages and staircases in \nwhich to drop a comb upon a bedroom floor at night is to send a \nstealthy footfall on an errand through the house.  A place where \nfew people care to go about alone, where a maid screams if an ash \ndrops from the fire, takes to crying at all times and seasons, \nbecomes the victim of a low disorder of the spirits, and gives \nwarning and departs.\n\nThus Chesney Wold.  With so much of itself abandoned to darkness \nand vacancy; with so little change under the summer shining or the \nwintry lowering; so sombre and motionless always--no flag flying \nnow by day, no rows of lights sparkling by night; with no family to \ncome and go, no visitors to be the souls of pale cold shapes of \nrooms, no stir of life about it--passion and pride, even to the \nstranger's eye, have died away from the place in Lincolnshire and \nyielded it to dull repose.\n\n\n\nCHAPTER LXVII\n\nThe Close of Esther's Narrative\n\n\nFull seven happy years I have been the mistress of Bleak House.  \nThe few words that I have to add to what I have written are soon \npenned; then I and the unknown friend to whom I write will part for \never.  Not without much dear remembrance on my side.  Not without \nsome, I hope, on his or hers.\n\nThey gave my darling into my arms, and through many weeks I never \nleft her.  The little child who was to have done so much was born \nbefore the turf was planted on its father's grave.  It was a boy; \nand I, my husband, and my guardian gave him his father's name.\n\nThe help that my dear counted on did come to her, though it came, \nin the eternal wisdom, for another purpose.  Though to bless and \nrestore his mother, not his father, was the errand of this baby, \nits power was mighty to do it.  When I saw the strength of the weak \nlittle hand and how its touch could heal my darling's heart and \nraised hope within her, I felt a new sense of the goodness and the \ntenderness of God.\n\nThey throve, and by degrees I saw my dear girl pass into my country \ngarden and walk there with her infant in her arms.  I was married \nthen.  I was the happiest of the happy.\n\nIt was at this time that my guardian joined us and asked Ada when \nshe would come home.\n\n\"Both houses are your home, my dear,\" said he, \"but the older Bleak \nHouse claims priority.  When you and my boy are strong enough to do \nit, come and take possession of your home.\"\n\nAda called him \"her dearest cousin, John.\"  But he said, no, it \nmust be guardian now.  He was her guardian henceforth, and the \nboy's; and he had an old association with the name.  So she called \nhim guardian, and has called him guardian ever since.  The children \nknow him by no other name.  I say the children; I have two little \ndaughters.\n\nIt is difficult to believe that Charley (round-eyed still, and not \nat all grammatical) is married to a miller in our neighbourhood; \nyet so it is; and even now, looking up from my desk as I write \nearly in the morning at my summer window, I see the very mill \nbeginning to go round.  I hope the miller will not spoil Charley; \nbut he is very fond of her, and Charley is rather vain of such a \nmatch, for he is well to do and was in great request.  So far as my \nsmall maid is concerned, I might suppose time to have stood for \nseven years as still as the mill did half an hour ago, since little \nEmma, Charley's sister, is exactly what Charley used to be.  As to \nTom, Charley's brother, I am really afraid to say what he did at \nschool in ciphering, but I think it was decimals.  He is \napprenticed to the miller, whatever it was, and is a good bashful \nfellow, always falling in love with somebody and being ashamed of \nit.\n\nCaddy Jellyby passed her very last holidays with us and was a \ndearer creature than ever, perpetually dancing in and out of the \nhouse with the children as if she had never given a dancing-lesson \nin her life.  Caddy keeps her own little carriage now instead of \nhiring one, and lives full two miles further westward than Newman \nStreet.  She works very hard, her husband (an excellent one) being \nlame and able to do very little.  Still, she is more than contented \nand does all she has to do with all her heart.  Mr. Jellyby spends \nhis evenings at her new house with his head against the wall as he \nused to do in her old one.  I have heard that Mrs. Jellyby was \nunderstood to suffer great mortification from her daughter's \nignoble marriage and pursuits, but I hope she got over it in time.  \nShe has been disappointed in Borrioboola-Gha, which turned out a \nfailure in consequence of the king of Boorioboola wanting to sell \neverybody--who survived the climate--for rum, but she has taken up \nwith the rights of women to sit in Parliament, and Caddy tells me \nit is a mission involving more correspondence than the old one.  I \nhad almost forgotten Caddy's poor little girl.  She is not such a \nmite now, but she is deaf and dumb.  I believe there never was a \nbetter mother than Caddy, who learns, in her scanty intervals of \nleisure, innumerable deaf and dumb arts to soften the affliction of \nher child.\n\nAs if I were never to have done with Caddy, I am reminded here of \nPeepy and old Mr. Turveydrop.  Peepy is in the Custom House, and \ndoing extremely well.  Old Mr. Turveydrop, very apoplectic, still \nexhibits his deportment about town, still enjoys himself in the old \nmanner, is still believed in in the old way.  He is constant in his \npatronage of Peepy and is understood to have bequeathed him a \nfavourite French clock in his dressing-room--which is not his \nproperty.\n\nWith the first money we saved at home, we added to our pretty house \nby throwing out a little growlery expressly for my guardian, which \nwe inaugurated with great splendour the next time he came down to \nsee us.  I try to write all this lightly, because my heart is full \nin drawing to an end, but when I write of him, my tears will have \ntheir way.\n\nI never look at him but I hear our poor dear Richard calling him a \ngood man.  To Ada and her pretty boy, he is the fondest father; to \nme he is what he has ever been, and what name can I give to that?  \nHe is my husband's best and dearest friend, he is our children's \ndarling, he is the object of our deepest love and veneration.  Yet \nwhile I feel towards him as if he were a superior being, I am so \nfamiliar with him and so easy with him that I almost wonder at \nmyself.  I have never lost my old names, nor has he lost his; nor \ndo I ever, when he is with us, sit in any other place than in my \nold chair at his side, Dame Trot, Dame Durden, Little Woman--all \njust the same as ever; and I answer, \"Yes, dear guardian!\" just the \nsame.\n\nI have never known the wind to be in the east for a single moment \nsince the day when he took me to the porch to read the name.  I \nremarked to him once that the wind seemed never in the east now, \nand he said, no, truly; it had finally departed from that quarter \non that very day.\n\nI think my darling girl is more beautiful than ever.  The sorrow \nthat has been in her face--for it is not there now--seems to have \npurified even its innocent expression and to have given it a \ndiviner quality.  Sometimes when I raise my eyes and see her in the \nblack dress that she still wears, teaching my Richard, I feel--it \nis difficult to express--as if it were so good to know that she \nremembers her dear Esther in her prayers.\n\nI call him my Richard!  But he says that he has two mamas, and I am \none.\n\nWe are not rich in the bank, but we have always prospered, and we \nhave quite enough.  I never walk out with my husband but I hear the \npeople bless him.  I never go into a house of any degree but I hear \nhis praises or see them in grateful eyes.  I never lie down at \nnight but I know that in the course of that day he has alleviated \npain and soothed some fellow-creature in the time of need.  I know \nthat from the beds of those who were past recovery, thanks have \noften, often gone up, in the last hour, for his patient \nministration.  Is not this to be rich?\n\nThe people even praise me as the doctor's wife.  The people even \nlike me as I go about, and make so much of me that I am quite \nabashed.  I owe it all to him, my love, my pride!  They like me for \nhis sake, as I do everything I do in life for his sake.\n\nA night or two ago, after bustling about preparing for my darling \nand my guardian and little Richard, who are coming to-morrow, I was \nsitting out in the porch of all places, that dearly memorable \nporch, when Allan came home.  So he said, \"My precious little \nwoman, what are you doing here?\"  And I said, \"The moon is shining \nso brightly, Allan, and the night is so delicious, that I have been \nsitting here thinking.\"\n\n\"What have you been thinking about, my dear?\" said Allan then.\n\n\"How curious you are!\" said I.  \"I am almost ashamed to tell you, \nbut I will.  I have been thinking about my old looks--such as they \nwere.\"\n\n\"And what have you been thinking about THEM, my busy bee?\" said \nAllan.\n\n\"I have been thinking that I thought it was impossible that you \nCOULD have loved me any better, even if I had retained them.\"\n\n\"'Such as they were'?\" said Allan, laughing.\n\n\"Such as they were, of course.\"\n\n\"My dear Dame Durden,\" said Allan, drawing my arm through his, \"do \nyou ever look in the glass?\"\n\n\"You know I do; you see me do it.\"\n\n\"And don't you know that you are prettier than you ever were?\"\n\n\"I did not know that; I am not certain that I know it now.  But I \nknow that my dearest little pets are very pretty, and that my \ndarling is very beautiful, and that my husband is very handsome, \nand that my guardian has the brightest and most benevolent face \nthat ever was seen, and that they can very well do without much \nbeauty in me--even supposing--.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of Bleak House by Charles Dickens\n\n********The Project Gutenberg Etext of A Christmas Carol.********\n#1 in our series by Charles Dickens\n*******This file should be named carol12.txt or carol12.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, carol13.txt.\nVERSIONS based on separate sources get new LETTER, carol10a.txt.\n\nInformation about Project Gutenberg (one page)\n\nWe produce about one million dollars for each hour we work.  One\nhundred hours is a conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar, then we produce a\nmillion dollars per hour; next year we will have to do four text\nfiles per month, thus upping our productivity to two million/hr.\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers.\n\nWe need your donations more than ever!\n\nAll donations should be made to \"Project Gutenberg/IBC\", and are\ntax deductible to the extent allowable by law (\"IBC\" is Illinois\nBenedictine College).  (Subscriptions to our paper newsletter go\nto IBC, too)\n\nFor these and other matters, please mail to:\n\nDavid Turner, Project Gutenberg\nIllinois  Benedictine  College\n5700  College  Road\nLisle, IL 60532-0900\n\nEmail requests to:\nInternet:    chipmonk@eagle.ibc.edu (David Turner)\nCompuserve:  chipmonk@eagle.ibc.edu (David Turner)\nAttmail:     internet!chipmonk@eagle.ibc.edu (David Turner)\nMCImail:     (David Turner)\nADDRESS TYPE: MCI / EMS: INTERNET / MBX:chipmonk@eagle.ibc.edu\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please:\n\nFTP directly to the Project Gutenberg archives:\nftp mrcnext.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext91\nor cd etext92 [for new books]  [now also cd etext/etext92]\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX and AAINDEX\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n****START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START****\n\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\n\nBy using or reading any part of this PROJECT GUTENBERG-tm etext,\nyou indicate that you understand, agree to and accept this\n\"Small Print!\" statement.  If you do not, you can receive a\nrefund of the money (if any) you paid for this etext by sending\na request within 30 days of receiving it to the person you got\nit from.  If you received this etext on a physical medium (such\nas a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\n\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-tm\netexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association (the\n\"Project\").  Among other things, this means that no one owns a\nUnited States copyright on or for this work, so the Project (and\nyou!) can copy and distribute it in the United States without\npermission and without paying copyright royalties.  Special\nrules, set forth below, apply if you wish to copy and distribute\nthis etext under the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable efforts\nto identify, transcribe and proofread public domain works.\nDespite these efforts, the Project's etexts and any medium they\nmay be on may contain \"Defects\".  Among other things, Defects\nmay take the form of incomplete, inaccurate or corrupt data,\ntranscription errors, a copyright or other intellectual property\ninfringement, a defective or damaged disk or other etext medium,\na computer virus, or computer codes that damage or cannot be\nread by your equipment.\n\nDISCLAIMER\n\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this etext\nfrom as a PROJECT GUTENBERG-tm etext) disclaims all liability to\nyou for damages, costs and expenses, including legal fees, and\n[2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR UNDER STRICT LIABILI-\nTY, OR FOR BREACH OF WARRANTY OR CONTRACT, INCLUDING BUT NOT\nLIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL\nDAMAGES, EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any) you\npaid for it by sending an explanatory note within that time to\nthe person you received it from.  If you received it on a\nphysical medium, you must return it with your note, and such\nperson may choose to alternatively give you a replacement copy.\nIf you received it electronically, such person may choose to\nalternatively give you a second opportunity to receive it elec-\ntronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\n\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise from any\ndistribution of this etext for which you are responsible, and\nfrom [1] any alteration, modification or addition to the etext\nfor which you are responsible, or [2] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\n\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this \"Small\nPrint!\" and all other references to Project Gutenberg, or:\n\n[1]  Only give exact copies of it.  Among other things, this re-\n     quires that you do not remove, alter or modify the etext or\n     this \"small print!\" statement.  You may however, if you\n     wish, distribute this etext in machine readable binary,\n     compressed, mark-up, or proprietary form, including any\n     form resulting from conversion by word processing or hyper-\n     text software, but only so long as *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable.  We\n          consider an etext *not* clearly readable if it\n          contains characters other than those intended by the\n          author of the work, although tilde (~), asterisk (*)\n          and underline (_) characters may be used to convey\n          punctuation intended by the author, and additional\n          characters may be used to indicate hypertext links.\n\n     [*]  The etext may be readily converted by the reader at no\n          expense into plain ASCII, EBCDIC or equivalent form\n          by the program that displays the etext (as is the\n          case, for instance, with most word processors).\n\n     [*]  You provide, or agree to also provide on request at no\n          additional cost, fee or expense, a copy of the etext\n          in its original plain ASCII form (or in EBCDIC or\n          other equivalent proprietary form).\n\n[2]   Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee of 20% (twenty percent) of the\n     net profits you derive from distributing this etext under\n     the trademark, determined in accordance with generally\n     accepted accounting practices.  The license fee:\n\n     [*]  Is required only if you derive such profits.  In\n          distributing under our trademark, you incur no\n          obligation to charge money or earn profits for your\n          distribution.\n\n     [*]  Shall be paid to \"Project Gutenberg Association /\n          Illinois Benedictine College\" (or to such other person\n          as the Project Gutenberg Association may direct)\n          within the 60 days following each date you prepare (or\n          were legally required to prepare) your year-end tax\n          return with respect to your income for that year.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\n\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Illinois Benedictine College\".\n\nWRITE TO US!  We can be reached at:\n\nProject Gutenberg Director of Communications (DIRCOMPG)\n\nInternet:     dircompg@ux1.cso.uiuc.edu\nBitnet:       dircom@uiucux1\nCompuServe:   >internet:dircompg@ux1.cso.uiuc.edu\nAttmail:      internet!ux1.cso.uiuc.edu!dircompg\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.07.02.92*END*\n\n\n\n\n\n\n\nA CHRISTMAS CAROL\n\nby Charles Dickens\n\n\n\n\n\n\nI have endeavoured in this Ghostly little book, \nto raise the Ghost of an Idea, which shall not put my \nreaders out of humour with themselves, with each other, \nwith the season, or with me.  May it haunt their houses\npleasantly, and no one wish to lay it.\n\nTheir faithful Friend and Servant, \n                                   C. D. \nDecember, 1843.\n\n\n\n\n\n\nStave 1:  Marley's Ghost\n\nMarley was dead: to begin with. There is no doubt\nwhatever about that. The register of his burial was\nsigned by the clergyman, the clerk, the undertaker,\nand the chief mourner. Scrooge signed it. And\nScrooge's name was good upon 'Change, for anything he \nchose to put his hand to.\n\nOld Marley was as dead as a door-nail.\n\nMind! I don't mean to say that I know, of my\nown knowledge, what there is particularly dead about\na door-nail. I might have been inclined, myself, to\nregard a coffin-nail as the deadest piece of ironmongery \nin the trade. But the wisdom of our ancestors \nis in the simile; and my unhallowed hands\nshall not disturb it, or the Country's done for. You\nwill therefore permit me to repeat, emphatically, that\nMarley was as dead as a door-nail.\n\nScrooge knew he was dead? Of course he did.\nHow could it be otherwise? Scrooge and he were\npartners for I don't know how many years. Scrooge\nwas his sole executor, his sole administrator, his sole\nassign, his sole residuary legatee, his sole friend, and\nsole mourner. And even Scrooge was not so dreadfully \ncut up by the sad event, but that he was an excellent \nman of business on the very day of the funeral,\nand solemnised it with an undoubted bargain.\nThe mention of Marley's funeral brings me back to\nthe point I started from. There is no doubt that Marley \nwas dead. This must be distinctly understood, or\nnothing wonderful can come of the story I am going\nto relate. If we were not perfectly convinced that\nHamlet's Father died before the play began, there\nwould be nothing more remarkable in his taking a\nstroll at night, in an easterly wind, upon his own ramparts, \nthan there would be in any other middle-aged\ngentleman rashly turning out after dark in a breezy\nspot -- say Saint Paul's Churchyard for instance -- \nliterally to astonish his son's weak mind.\n\nScrooge never painted out Old Marley's name.\nThere it stood, years afterwards, above the warehouse\ndoor: Scrooge and Marley. The firm was known as\nScrooge and Marley. Sometimes people new to the\nbusiness called Scrooge Scrooge, and sometimes Marley, \nbut he answered to both names. It was all the\nsame to him.\n\nOh! But he was a tight-fisted hand at the grind-\nstone, Scrooge! a squeezing, wrenching, grasping,\nscraping, clutching, covetous, old sinner! Hard and\nsharp as flint, from which no steel had ever struck out\ngenerous fire; secret, and self-contained, and solitary\nas an oyster. The cold within him froze his old features, \nnipped his pointed nose, shrivelled his cheek,\nstiffened his gait; made his eyes red, his thin lips blue;\nand spoke out shrewdly in his grating voice. A frosty\nrime was on his head, and on his eyebrows, and his\nwiry chin. He carried his own low temperature always\nabout with him; he iced his office in the dogdays; and\ndidn't thaw it one degree at Christmas.\n\nExternal heat and cold had little influence on\nScrooge. No warmth could warm, no wintry weather\nchill him. No wind that blew was bitterer than he,\nno falling snow was more intent upon its purpose, no\npelting rain less open to entreaty. Foul weather didn't\nknow where to have him. The heaviest rain, and\nsnow, and hail, and sleet, could boast of the advantage\nover him in only one respect. They often `came down'\nhandsomely, and Scrooge never did.\n\nNobody ever stopped him in the street to say, with\ngladsome looks, `My dear Scrooge, how are you?\nWhen will you come to see me?' No beggars implored \nhim to bestow a trifle, no children asked him\nwhat it was o'clock, no man or woman ever once in all\nhis life inquired the way to such and such a place, of\nScrooge. Even the blind men's dogs appeared to\nknow him; and when they saw him coming on, would\ntug their owners into doorways and up courts; and\nthen would wag their tails as though they said, `No\neye at all is better than an evil eye, dark master!'\n\nBut what did Scrooge care! It was the very thing\nhe liked. To edge his way along the crowded paths\nof life, warning all human sympathy to keep its distance, \nwas what the knowing ones call `nuts' to Scrooge.\n\nOnce upon a time -- of all the good days in the year,\non Christmas Eve -- old Scrooge sat busy in his \ncounting-house. It was cold, bleak, biting weather: foggy\nwithal: and he could hear the people in the court outside, \ngo wheezing up and down, beating their hands\nupon their breasts, and stamping their feet upon the\npavement stones to warm them. The city clocks had\nonly just gone three, but it was quite dark already --\nit had not been light all day -- and candles were flaring \nin the windows of the neighbouring offices, like\nruddy smears upon the palpable brown air. The fog\ncame pouring in at every chink and keyhole, and was\nso dense without, that although the court was of the\nnarrowest, the houses opposite were mere phantoms.\nTo see the dingy cloud come drooping down, obscuring\neverything, one might have thought that Nature\nlived hard by, and was brewing on a large scale.\n\nThe door of Scrooge's counting-house was open\nthat he might keep his eye upon his clerk, who in a\ndismal little cell beyond, a sort of tank, was copying\nletters. Scrooge had a very small fire, but the clerk's\nfire was so very much smaller that it looked like one\ncoal. But he couldn't replenish it, for Scrooge kept\nthe coal-box in his own room; and so surely as the\nclerk came in with the shovel, the master predicted\nthat it would be necessary for them to part. Wherefore \nthe clerk put on his white comforter, and tried to\nwarm himself at the candle; in which effort, not being \na man of a strong imagination, he failed.\n\n`A merry Christmas, uncle! God save you!' cried\na cheerful voice. It was the voice of Scrooge's\nnephew, who came upon him so quickly that this was\nthe first intimation he had of his approach.\n\n`Bah!' said Scrooge, `Humbug!'\n\nHe had so heated himself with rapid walking in the\nfog and frost, this nephew of Scrooge's, that he was\nall in a glow; his face was ruddy and handsome; his\neyes sparkled, and his breath smoked again.\n`Christmas a humbug, uncle!' said Scrooge's\nnephew. `You don't mean that, I am sure?'\n\n`I do,' said Scrooge. `Merry Christmas! What\nright have you to be merry? What reason have you\nto be merry? You're poor enough.'\n\n`Come, then,' returned the nephew gaily. `What\nright have you to be dismal? What reason have you\nto be morose? You're rich enough.'\n\nScrooge having no better answer ready on the spur\nof the moment, said `Bah!' again; and followed it up\nwith `Humbug.'\n\n`Don't be cross, uncle!' said the nephew.\n\n`What else can I be,' returned the uncle, `when I\nlive in such a world of fools as this? Merry Christmas! \nOut upon merry Christmas! What's Christmas \ntime to you but a time for paying bills without\nmoney; a time for finding yourself a year older, but\nnot an hour richer; a time for balancing your books\nand having every item in 'em through a round dozen\nof months presented dead against you? If I could\nwork my will,' said Scrooge indignantly, `every idiot\nwho goes about with \"Merry Christmas\" on his lips,\nshould be boiled with his own pudding, and buried\nwith a stake of holly through his heart. He should!'\n\n`Uncle!' pleaded the nephew.\n\n`Nephew!' returned the uncle sternly, `keep Christmas \nin your own way, and let me keep it in mine.'\n\n`Keep it!' repeated Scrooge's nephew. `But you\ndon't keep it.'\n\n`Let me leave it alone, then,' said Scrooge. `Much\ngood may it do you! Much good it has ever done\nyou!'\n\n`There are many things from which I might have\nderived good, by which I have not profited, I dare\nsay,' returned the nephew. `Christmas among the\nrest. But I am sure I have always thought of Christmas \ntime, when it has come round -- apart from the\nveneration due to its sacred name and origin, if anything\nbelonging to it can be apart from that -- as a\ngood time; a kind, forgiving, charitable, pleasant\ntime: the only time I know of, in the long calendar\nof the year, when men and women seem by one consent \nto open their shut-up hearts freely, and to think\nof people below them as if they really were \nfellow-passengers to the grave, and not another race \nof creatures bound on other journeys. And therefore,\nuncle, though it has never put a scrap of gold or\nsilver in my pocket, I believe that it has done me\ngood, and will do me good; and I say, God bless it!'\n\nThe clerk in the Tank involuntarily applauded.\nBecoming immediately sensible of the impropriety,\nhe poked the fire, and extinguished the last frail spark\nfor ever.\n\n`Let me hear another sound from you,' said\nScrooge, `and you'll keep your Christmas by losing\nyour situation! You're quite a powerful speaker,\nsir,' he added, turning to his nephew. `I wonder you\ndon't go into Parliament.'\n\n`Don't be angry, uncle. Come! Dine with us tomorrow.'\n\nScrooge said that he would see him -- yes, indeed he\ndid. He went the whole length of the expression,\nand said that he would see him in that extremity first.\n\n`But why?' cried Scrooge's nephew. `Why?'\n\n`Why did you get married?' said Scrooge.\n\n`Because I fell in love.'\n\n`Because you fell in love!' growled Scrooge, as if\nthat were the only one thing in the world more ridiculous \nthan a merry Christmas. `Good afternoon!'\n\n`Nay, uncle, but you never came to see me before\nthat happened. Why give it as a reason for not\ncoming now?'\n\n`Good afternoon,' said Scrooge.\n\n`I want nothing from you; I ask nothing of you;\nwhy cannot we be friends?'\n\n`Good afternoon,' said Scrooge.\n\n`I am sorry, with all my heart, to find you so \nresolute. We have never had any quarrel, to which I\nhave been a party. But I have made the trial in\nhomage to Christmas, and I'll keep my Christmas\nhumour to the last. So A Merry Christmas, uncle!'\n\n`Good afternoon,' said Scrooge.\n\n`And A Happy New Year!'\n\n`Good afternoon,' said Scrooge.\n\nHis nephew left the room without an angry word,\nnotwithstanding. He stopped at the outer door to\nbestow the greetings of the season on the clerk, who\ncold as he was, was warmer than Scrooge; for he returned \nthem cordially.\n\n`There's another fellow,' muttered Scrooge; who\noverheard him: `my clerk, with fifteen shillings a\nweek, and a wife and family, talking about a merry\nChristmas. I'll retire to Bedlam.'\n\nThis lunatic, in letting Scrooge's nephew out, had\nlet two other people in. They were portly gentlemen,\npleasant to behold, and now stood, with their hats off,\nin Scrooge's office. They had books and papers in\ntheir hands, and bowed to him.\n\n`Scrooge and Marley's, I believe,' said one of the\ngentlemen, referring to his list. `Have I the pleasure\nof addressing Mr. Scrooge, or Mr. Marley?'\n\n`Mr. Marley has been dead these seven years,'\nScrooge replied. `He died seven years ago, this very\nnight.'\n\n`We have no doubt his liberality is well represented\nby his surviving partner,' said the gentleman, presenting \nhis credentials.\n\nIt certainly was; for they had been two kindred\nspirits. At the ominous word `liberality,' Scrooge\nfrowned, and shook his head, and handed the credentials \nback.\n\n`At this festive season of the year, Mr. Scrooge,'\nsaid the gentleman, taking up a pen, `it is more than\nusually desirable that we should make some slight\nprovision for the Poor and Destitute, who suffer\ngreatly at the present time. Many thousands are in\nwant of common necessaries; hundreds of thousands\nare in want of common comforts, sir.'\n\n`Are there no prisons?' asked Scrooge.\n\n`Plenty of prisons,' said the gentleman, laying down\nthe pen again.\n\n`And the Union workhouses?' demanded Scrooge.\n`Are they still in operation?'\n\n`They are. Still,' returned the gentleman, `I wish\nI could say they were not.'\n\n`The Treadmill and the Poor Law are in full vigour,\nthen?' said Scrooge.\n\n`Both very busy, sir.'\n\n`Oh! I was afraid, from what you said at first,\nthat something had occurred to stop them in their\nuseful course,' said Scrooge. `I'm very glad to\nhear it.'\n\n`Under the impression that they scarcely furnish\nChristian cheer of mind or body to the multitude,'\nreturned the gentleman, `a few of us are endeavouring\nto raise a fund to buy the Poor some meat and drink.\nand means of warmth. We choose this time, because\nit is a time, of all others, when Want is keenly felt,\nand Abundance rejoices. What shall I put you down\nfor?'\n\n`Nothing!' Scrooge replied.\n\n`You wish to be anonymous?'\n\n`I wish to be left alone,' said Scrooge. `Since you\nask me what I wish, gentlemen, that is my answer.\nI don't make merry myself at Christmas and I can't\nafford to make idle people merry. I help to support \nthe establishments I have mentioned -- they cost\nenough; and those who are badly off must go there.'\n\n`Many can't go there; and many would rather die.'\n\n`If they would rather die,' said Scrooge, `they had\nbetter do it, and decrease the surplus population.\nBesides -- excuse me -- I don't know that.'\n\n`But you might know it,' observed the gentleman.\n\n`It's not my business,' Scrooge returned. `It's\nenough for a man to understand his own business, and\nnot to interfere with other people's. Mine occupies\nme constantly. Good afternoon, gentlemen!'\n\nSeeing clearly that it would be useless to pursue\ntheir point, the gentlemen withdrew. Scrooge returned \nhis labours with an improved opinion of himself, \nand in a more facetious temper than was usual\nwith him.\n\nMeanwhile the fog and darkness thickened so, that\npeople ran about with flaring links, proffering their\nservices to go before horses in carriages, and conduct\nthem on their way. The ancient tower of a church,\nwhose gruff old bell was always peeping slily down\nat Scrooge out of a Gothic window in the wall, became\ninvisible, and struck the hours and quarters in the\nclouds, with tremulous vibrations afterwards as if\nits teeth were chattering in its frozen head up there.\nThe cold became intense. In the main street at the\ncorner of the court, some labourers were repairing\nthe gas-pipes, and had lighted a great fire in a brazier,\nround which a party of ragged men and boys were\ngathered: warming their hands and winking their\neyes before the blaze in rapture. The water-plug\nbeing left in solitude, its overflowing sullenly congealed, \nand turned to misanthropic ice. The brightness \nof the shops where holly sprigs and berries\ncrackled in the lamp heat of the windows, made pale\nfaces ruddy as they passed. Poulterers' and grocers'\ntrades became a splendid joke; a glorious pageant,\nwith which it was next to impossible to believe that\nsuch dull principles as bargain and sale had anything\nto do. The Lord Mayor, in the stronghold of the\nmighty Mansion House, gave orders to his fifty cooks\nand butlers to keep Christmas as a Lord Mayor's\nhousehold should; and even the little tailor, whom he\nhad fined five shillings on the previous Monday for\nbeing drunk and bloodthirsty in the streets, stirred up\nto-morrow's pudding in his garret, while his lean\nwife and the baby sallied out to buy the beef.\n\nFoggier yet, and colder! Piercing, searching, biting \ncold. If the good Saint Dunstan had but nipped\nthe Evil Spirit's nose with a touch of such weather\nas that, instead of using his familiar weapons, then\nindeed he would have roared to lusty purpose. The\nowner of one scant young nose, gnawed and mumbled\nby the hungry cold as bones are gnawed by dogs,\nstooped down at Scrooge's keyhole to regale him with\na Christmas carol: but at the first sound of\n\n`God bless you, merry gentleman!\nMay nothing you dismay!'\n\nScrooge seized the ruler with such energy of action,\nthat the singer fled in terror, leaving the keyhole to\nthe fog and even more congenial frost.\n\nAt length the hour of shutting up the counting-\nhouse arrived. With an ill-will Scrooge dismounted\nfrom his stool, and tacitly admitted the fact to the\nexpectant clerk in the Tank, who instantly snuffed\nhis candle out, and put on his hat.\n\n`You'll want all day to-morrow, I suppose?' said\nScrooge.\n\n`If quite convenient, sir.'\n\n`It's not convenient,' said Scrooge, `and it's not\nfair. If I was to stop half-a-crown for it, you'd think\nyourself ill-used, I'll be bound?'\n\nThe clerk smiled faintly.\n\n`And yet,' said Scrooge, `you don't think me ill-used,\nwhen I pay a day's wages for no work.'\n\nThe clerk observed that it was only once a year.\n\n`A poor excuse for picking a man's pocket every\ntwenty-fifth of December!' said Scrooge, buttoning\nhis great-coat to the chin. `But I suppose you must\nhave the whole day. Be here all the earlier next\nmorning.'\n\nThe clerk promised that he would; and Scrooge\nwalked out with a growl. The office was closed in a\ntwinkling, and the clerk, with the long ends of his\nwhite comforter dangling below his waist (for he\nboasted no great-coat), went down a slide on Cornhill, \nat the end of a lane of boys, twenty times, in\nhonour of its being Christmas Eve, and then ran home\nto Camden Town as hard as he could pelt, to play\nat blindman's-buff.\n\nScrooge took his melancholy dinner in his usual\nmelancholy tavern; and having read all the newspapers, and\nbeguiled the rest of the evening with his\nbanker's-book, went home to bed. He lived in\nchambers which had once belonged to his deceased\npartner. They were a gloomy suite of rooms, in a\nlowering pile of building up a yard, where it had so\nlittle business to be, that one could scarcely help\nfancying it must have run there when it was a young\nhouse, playing at hide-and-seek with other houses,\nand forgotten the way out again. It was old enough\nnow, and dreary enough, for nobody lived in it but\nScrooge, the other rooms being all let out as offices.\nThe yard was so dark that even Scrooge, who knew\nits every stone, was fain to grope with his hands.\nThe fog and frost so hung about the black old gateway \nof the house, that it seemed as if the Genius of\nthe Weather sat in mournful meditation on the\nthreshold.\n\nNow, it is a fact, that there was nothing at all \nparticular about the knocker on the door, except that it\nwas very large. It is also a fact, that Scrooge had\nseen it, night and morning, during his whole residence\nin that place; also that Scrooge had as little of what\nis called fancy about him as any man in the city of\nLondon, even including -- which is a bold word -- the\ncorporation, aldermen, and livery. Let it also be\nborne in mind that Scrooge had not bestowed one\nthought on Marley, since his last mention of his\nseven years' dead partner that afternoon. And then\nlet any man explain to me, if he can, how it happened\nthat Scrooge, having his key in the lock of the door,\nsaw in the knocker, without its undergoing any intermediate\nprocess of change -- not a knocker, but Marley's face.\n\nMarley's face. It was not in impenetrable shadow\nas the other objects in the yard were, but had a\ndismal light about it, like a bad lobster in a dark\ncellar. It was not angry or ferocious, but looked\nat Scrooge as Marley used to look: with ghostly\nspectacles turned up on its ghostly forehead. The\nhair was curiously stirred, as if by breath or hot air;\nand, though the eyes were wide open, they were perfectly\nmotionless. That, and its livid colour, made\nit horrible; but its horror seemed to be in spite of the\nface and beyond its control, rather than a part or\nits own expression.\n\nAs Scrooge looked fixedly at this phenomenon, it\nwas a knocker again.\n\nTo say that he was not startled, or that his blood\nwas not conscious of a terrible sensation to which it\nhad been a stranger from infancy, would be untrue.\nBut he put his hand upon the key he had relinquished,\nturned it sturdily, walked in, and lighted his candle.\n\nHe did pause, with a moment's irresolution, before\nhe shut the door; and he did look cautiously behind\nit first, as if he half-expected to be terrified with the\nsight of Marley's pigtail sticking out into the hall.\nBut there was nothing on the back of the door, except\nthe screws and nuts that held the knocker on, so he\nsaid `Pooh, pooh!' and closed it with a bang.\n\nThe sound resounded through the house like thunder. \nEvery room above, and every cask in the wine-merchant's \ncellars below, appeared to have a separate peal \nof echoes of its own. Scrooge was not a man to\nbe frightened by echoes. He fastened the door, and\nwalked across the hall, and up the stairs; slowly too:\ntrimming his candle as he went.\n\nYou may talk vaguely about driving a coach-and-six \nup a good old flight of stairs, or through a bad\nyoung Act of Parliament; but I mean to say you\nmight have got a hearse up that staircase, and taken\nit broadwise, with the splinter-bar towards the wall\nand the door towards the balustrades: and done it\neasy. There was plenty of width for that, and room\nto spare; which is perhaps the reason why Scrooge\nthought he saw a locomotive hearse going on before\nhim in the gloom. Half a dozen gas-lamps out of\nthe street wouldn't have lighted the entry too well,\nso you may suppose that it was pretty dark with\nScrooge's dip.\n\nUp Scrooge went, not caring a button for that.\nDarkness is cheap, and Scrooge liked it. But before\nhe shut his heavy door, he walked through his rooms\nto see that all was right. He had just enough recollection \nof the face to desire to do that.\n\nSitting-room, bedroom, lumber-room. All as they\nshould be. Nobody under the table, nobody under\nthe sofa; a small fire in the grate; spoon and basin\nready; and the little saucepan of gruel (Scrooge had\na cold in his head) upon the hob. Nobody under the\nbed; nobody in the closet; nobody in his dressing-gown, \nwhich was hanging up in a suspicious attitude\nagainst the wall. Lumber-room as usual. Old fire-guards, \nold shoes, two fish-baskets, washing-stand on three \nlegs, and a poker.\n\nQuite satisfied, he closed his door, and locked \nhimself in; double-locked himself in, which was not his\ncustom. Thus secured against surprise, he took off\nhis cravat; put on his dressing-gown and slippers, and\nhis nightcap; and sat down before the fire to take\nhis gruel.\n\nIt was a very low fire indeed; nothing on such a\nbitter night. He was obliged to sit close to it, and\nbrood over it, before he could extract the least \nsensation of warmth from such a handful of fuel. \nThe fireplace was an old one, built by some Dutch \nmerchant long ago, and paved all round with quaint \nDutch tiles, designed to illustrate the Scriptures.\nThere were Cains and Abels, Pharaohs' daughters;\nQueens of Sheba, Angelic messengers descending\nthrough the air on clouds like feather-beds, Abrahams,\nBelshazzars, Apostles putting off to sea in butter-boats,\nhundreds of figures to attract his thoughts --\nand yet that face of Marley, seven years dead, came\nlike the ancient Prophet's rod, and swallowed up the\nwhole. If each smooth tile had been a blank at first,\nwith power to shape some picture on its surface from\nthe disjointed fragments of his thoughts, there would\nhave been a copy of old Marley's head on every one.\n\n`Humbug!' said Scrooge; and walked across the\nroom.\n\nAfter several turns, he sat down again. As he\nthrew his head back in the chair, his glance happened\nto rest upon a bell, a disused bell, that hung in the\nroom, and communicated for some purpose now forgotten \nwith a chamber in the highest story of the\nbuilding. It was with great astonishment, and with\na strange, inexplicable dread, that as he looked, he\nsaw this bell begin to swing. It swung so softly in\nthe outset that it scarcely made a sound; but soon it\nrang out loudly, and so did every bell in the house.\n\nThis might have lasted half a minute, or a minute,\nbut it seemed an hour. The bells ceased as they had\nbegun, together. They were succeeded by a clanking \nnoise, deep down below; as if some person were\ndragging a heavy chain over the casks in the wine\nmerchant's cellar. Scrooge then remembered to have\nheard that ghosts in haunted houses were described\nas dragging chains.\n\nThe cellar-door flew open with a booming sound,\nand then he heard the noise much louder, on the floors\nbelow; then coming up the stairs; then coming straight\ntowards his door.\n\n`It's humbug still!' said Scrooge. `I won't believe it.'\n\nHis colour changed though, when, without a pause,\nit came on through the heavy door, and passed into\nthe room before his eyes. Upon its coming in, the\ndying flame leaped up, as though it cried `I know\nhim; Marley's Ghost!' and fell again.\n\nThe same face: the very same. Marley in his pigtail, \nusual waistcoat, tights and boots; the tassels on\nthe latter bristling, like his pigtail, and his coat-skirts,\nand the hair upon his head. The chain he drew was\nclasped about his middle. It was long, and wound\nabout him like a tail; and it was made (for Scrooge\nobserved it closely) of cash-boxes, keys, padlocks,\nledgers, deeds, and heavy purses wrought in steel.\nHis body was transparent; so that Scrooge, observing him, \nand looking through his waistcoat, could see\nthe two buttons on his coat behind.\n\nScrooge had often heard it said that Marley had no\nbowels, but he had never believed it until now.\n\nNo, nor did he believe it even now. Though he\nlooked the phantom through and through, and saw\nit standing before him; though he felt the chilling\ninfluence of its death-cold eyes; and marked the very\ntexture of the folded kerchief bound about its head\nand chin, which wrapper he had not observed before;\nhe was still incredulous, and fought against his senses.\n\n`How now!' said Scrooge, caustic and cold as ever.\n`What do you want with me?'\n\n`Much!' -- Marley's voice, no doubt about it.\n\n`Who are you?'\n\n`Ask me who I was.'\n\n`Who were you then?' said Scrooge, raising his\nvoice. `You're particular, for a shade.' He was going\nto say `to a shade,' but substituted this, as more\nappropriate.\n\n`In life I was your partner, Jacob Marley.'\n\n`Can you -- can you sit down?' asked Scrooge, looking\ndoubtfully at him.\n\n`I can.'\n\n`Do it, then.'\n\nScrooge asked the question, because he didn't know\nwhether a ghost so transparent might find himself in\na condition to take a chair; and felt that in the event\nof its being impossible, it might involve the necessity\nof an embarrassing explanation. But the ghost sat\ndown on the opposite side of the fireplace, as if he\nwere quite used to it.\n\n`You don't believe in me,' observed the Ghost.\n\n`I don't.' said Scrooge.\n\n`What evidence would you have of my reality beyond that of\nyour senses?'\n\n`I don't know,' said Scrooge.\n\n`Why do you doubt your senses?'\n\n`Because,' said Scrooge, `a little thing affects them.\nA slight disorder of the stomach makes them cheats. You may \nbe an undigested bit of beef, a blot of mustard, a crumb of\ncheese, a fragment of an underdone potato. There's more of \ngravy than of grave about you, whatever you are!'\n\nScrooge was not much in the habit of cracking\njokes, nor did he feel, in his heart, by any means\nwaggish then. The truth is, that he tried to be\nsmart, as a means of distracting his own attention,\nand keeping down his terror; for the spectre's voice\ndisturbed the very marrow in his bones.\n\nTo sit, staring at those fixed glazed eyes, in silence\nfor a moment, would play, Scrooge felt, the very\ndeuce with him. There was something very awful,\ntoo, in the spectre's being provided with an infernal\natmosphere of its own. Scrooge could not feel it\nhimself, but this was clearly the case; for though the\nGhost sat perfectly motionless, its hair, and skirts,\nand tassels, were still agitated as by the hot vapour\nfrom an oven.\n\n`You see this toothpick?' said Scrooge, returning\nquickly to the charge, for the reason just assigned;\nand wishing, though it were only for a second, to\ndivert the vision's stony gaze from himself.\n\n`I do,' replied the Ghost.\n\n`You are not looking at it,' said Scrooge.\n\n`But I see it,' said the Ghost, `notwithstanding.'\n\n`Well!' returned Scrooge, `I have but to swallow\nthis, and be for the rest of my days persecuted by a\nlegion of goblins, all of my own creation. Humbug,\nI tell you! humbug!'\n\nAt this the spirit raised a frightful cry, and shook\nits chain with such a dismal and appalling noise, that\nScrooge held on tight to his chair, to save himself\nfrom falling in a swoon. But how much greater was\nhis horror, when the phantom taking off the bandage\nround its head, as if it were too warm to wear indoors,\nits lower jaw dropped down upon its breast!\n\nScrooge fell upon his knees, and clasped his hands\nbefore his face.\n\n`Mercy!' he said. `Dreadful apparition, why do\nyou trouble me?'\n\n`Man of the worldly mind!' replied the Ghost, `do\nyou believe in me or not?'\n\n`I do,' said Scrooge. `I must. But why do spirits\nwalk the earth, and why do they come to me?'\n\n`It is required of every man,' the Ghost returned,\n`that the spirit within him should walk abroad among\nhis fellowmen, and travel far and wide; and if that\nspirit goes not forth in life, it is condemned to do so\nafter death. It is doomed to wander through the\nworld -- oh, woe is me! -- and witness what it cannot\nshare, but might have shared on earth, and turned to\nhappiness!'\n\nAgain the spectre raised a cry, and shook its chain\nand wrung its shadowy hands.\n\n`You are fettered,' said Scrooge, trembling. `Tell\nme why?'\n\n`I wear the chain I forged in life,' replied the Ghost.\n`I made it link by link, and yard by yard; I girded\nit on of my own free will, and of my own free will I\nwore it. Is its pattern strange to you?'\n\nScrooge trembled more and more.\n\n`Or would you know,' pursued the Ghost, `the\nweight and length of the strong coil you bear yourself? \nIt was full as heavy and as long as this, seven\nChristmas Eves ago. You have laboured on it, since.\nIt is a ponderous chain!'\n\nScrooge glanced about him on the floor, in the \nexpectation of finding himself surrounded by some fifty\nor sixty fathoms of iron cable: but he could see\nnothing.\n\n`Jacob,' he said, imploringly. `Old Jacob Marley,\ntell me more. Speak comfort to me, Jacob!'\n\n`I have none to give,' the Ghost replied. `It comes\nfrom other regions, Ebenezer Scrooge, and is conveyed\nby other ministers, to other kinds of men. Nor\ncan I tell you what I would. A very little more, is\nall permitted to me. I cannot rest, I cannot stay, I\ncannot linger anywhere. My spirit never walked\nbeyond our counting-house -- mark me! -- in life my\nspirit never roved beyond the narrow limits of our\nmoney-changing hole; and weary journeys lie before\nme!'\n\nIt was a habit with Scrooge, whenever he became\nthoughtful, to put his hands in his breeches pockets.\nPondering on what the Ghost had said, he did so now,\nbut without lifting up his eyes, or getting off his\nknees.\n\n`You must have been very slow about it, Jacob,'\nScrooge observed, in a business-like manner, though\nwith humility and deference.\n\n`Slow!' the Ghost repeated.\n\n`Seven years dead,' mused Scrooge. `And travelling\nall the time!'\n\n`The whole time,' said the Ghost. `No rest, no\npeace. Incessant torture of remorse.'\n\n`You travel fast?' said Scrooge.\n\n`On the wings of the wind,' replied the Ghost.\n\n`You might have got over a great quantity of\nground in seven years,' said Scrooge.\n\nThe Ghost, on hearing this, set up another cry, and\nclanked its chain so hideously in the dead silence of\nthe night, that the Ward would have been justified in\nindicting it for a nuisance.\n\n`Oh! captive, bound, and double-ironed,' cried the\nphantom, `not to know, that ages of incessant labour,\nby immortal creatures, for this earth must pass into\neternity before the good of which it is susceptible is\nall developed. Not to know that any Christian spirit\nworking kindly in its little sphere, whatever it may\nbe, will find its mortal life too short for its vast\nmeans of usefulness. Not to know that no space of\nregret can make amends for one life's opportunity\nmisused! Yet such was I! Oh! such was I!'\n\n`But you were always a good man of business,\nJacob,' faltered Scrooge, who now began to apply this\nto himself.\n\n`Business!' cried the Ghost, wringing its hands\nagain. `Mankind was my business. The common\nwelfare was my business; charity, mercy, forbearance,\nand benevolence, were, all, my business. The dealings \nof my trade were but a drop of water in the\ncomprehensive ocean of my business!'\n\nIt held up its chain at arm's length, as if that were\nthe cause of all its unavailing grief, and flung it\nheavily upon the ground again.\n\n`At this time of the rolling year,' the spectre said\n`I suffer most. Why did I walk through crowds of\nfellow-beings with my eyes turned down, and never\nraise them to that blessed Star which led the Wise\nMen to a poor abode! Were there no poor homes to\nwhich its light would have conducted me!'\n\nScrooge was very much dismayed to hear the\nspectre going on at this rate, and began to quake\nexceedingly.\n\n`Hear me!' cried the Ghost. `My time is nearly\ngone.'\n\n`I will,' said Scrooge. `But don't be hard upon\nme! Don't be flowery, Jacob! Pray!'     \n`How it is that I appear before you in a shape that\nyou can see, I may not tell. I have sat invisible\nbeside you many and many a day.'\n\nIt was not an agreeable idea. Scrooge shivered,\nand wiped the perspiration from his brow.\n\n`That is no light part of my penance,' pursued \nthe Ghost. `I am here to-night to warn you, that you\nhave yet a chance and hope of escaping my fate. A\nchance and hope of my procuring, Ebenezer.'\n\n`You were always a good friend to me,' said\nScrooge. `Thank 'ee!'\n\n`You will be haunted,' resumed the Ghost, `by\nThree Spirits.'\n\nScrooge's countenance fell almost as low as the\nGhost's had done.\n\n`Is that the chance and hope you mentioned,\nJacob?' he demanded, in a faltering voice.\n\n`It is.'\n\n`I -- I think I'd rather not,' said Scrooge.\n\n`Without their visits,' said the Ghost, `you cannot\nhope to shun the path I tread. Expect the first tomorrow, \nwhen the bell tolls One.'\n\n`Couldn't I take `em all at once, and have it over,\nJacob?' hinted Scrooge.\n\n`Expect the second on the next night at the same\nhour. The third upon the next night when the last\nstroke of Twelve has ceased to vibrate. Look to see\nme no more; and look that, for your own sake, you\nremember what has passed between us!'\n\nWhen it had said these words, the spectre took its\nwrapper from the table, and bound it round its head,\nas before. Scrooge knew this, by the smart sound its\nteeth made, when the jaws were brought together\nby the bandage. He ventured to raise his eyes again,\nand found his supernatural visitor confronting him\nin an erect attitude, with its chain wound over and\nabout its arm.\n\nThe apparition walked backward from him; and at\nevery step it took, the window raised itself a little,\nso that when the spectre reached it, it was wide open.\nIt beckoned Scrooge to approach, which he did.\nWhen they were within two paces of each other,\nMarley's Ghost held up its hand, warning him to\ncome no nearer. Scrooge stopped.\n\nNot so much in obedience, as in surprise and fear:\nfor on the raising of the hand, he became sensible\nof confused noises in the air; incoherent sounds of\nlamentation and regret; wailings inexpressibly sorrowful and\nself-accusatory. The spectre, after listening for a moment,\njoined in the mournful dirge;\nand floated out upon the bleak, dark night.\n\nScrooge followed to the window: desperate in his\ncuriosity. He looked out.\n\nThe air was filled with phantoms, wandering hither\nand thither in restless haste, and moaning as they\nwent. Every one of them wore chains like Marley's\nGhost; some few (they might be guilty governments)\nwere linked together; none were free. Many had\nbeen personally known to Scrooge in their lives. He\nhad been quite familiar with one old ghost, in a white\nwaistcoat, with a monstrous iron safe attached to\nits ankle, who cried piteously at being unable to assist\na wretched woman with an infant, whom it saw below,\nupon a door-step. The misery with them all was,\nclearly, that they sought to interfere, for good, in\nhuman matters, and had lost the power for ever.\n\nWhether these creatures faded into mist, or mist\nenshrouded them, he could not tell. But they and\ntheir spirit voices faded together; and the night became \nas it had been when he walked home.\n\nScrooge closed the window, and examined the door\nby which the Ghost had entered. It was double-locked, \nas he had locked it with his own hands, and\nthe bolts were undisturbed. He tried to say `Humbug!' \nbut stopped at the first syllable. And being,\nfrom the emotion he had undergone, or the fatigues\nof the day, or his glimpse of the Invisible World, or\nthe dull conversation of the Ghost, or the lateness of\nthe hour, much in need of repose; went straight to\nbed, without undressing, and fell asleep upon the\ninstant.\n\n\nStave 2:  The First of the Three Spirits\n\nWhen Scrooge awoke, it was so dark, that looking out of bed,\nhe could scarcely distinguish the transparent window from\nthe opaque walls of his chamber. He was endeavouring to\npierce the darkness with his ferret eyes, when the chimes of a\nneighbouring church struck the four quarters. So he listened\nfor the hour.\n\nTo his great astonishment the heavy bell went on from\nsix to seven, and from seven to eight, and regularly up to\ntwelve; then stopped. Twelve. It was past two when he\nwent to bed. The clock was wrong. An icicle must have\ngot into the works. Twelve.\n\nHe touched the spring of his repeater, to correct this most\npreposterous clock. Its rapid little pulse beat twelve:\nand stopped.\n\n`Why, it isn't possible,' said Scrooge, `that I can have\nslept through a whole day and far into another night. It\nisn't possible that anything has happened to the sun, and\nthis is twelve at noon.'\n\nThe idea being an alarming one, he scrambled out of bed,\nand groped his way to the window. He was obliged to rub\nthe frost off with the sleeve of his dressing-gown before he\ncould see anything; and could see very little then. All he\ncould make out was, that it was still very foggy and extremely\ncold, and that there was no noise of people running to and fro,\nand making a great stir, as there unquestionably would have been\nif night had beaten off bright day, and taken possession of the\nworld.  This was a great relief, because \"Three days after sight\nof this First of Exchange pay to Mr. Ebenezer Scrooge on his\norder,\" and so forth, would have become a mere United States\nsecurity if there were no days to count by.\n\nScrooge went to bed again, and thought, and thought, and thought\nit over and over, and could make nothing of it.  The more he\nthought, the more perplexed he was; and, the more he endeavoured\nnot to think, the more he thought.\n\nMarley's Ghost bothered him exceedingly. Every time he resolved\nwithin himself, after mature inquiry that it was all a dream, his\nmind flew back again, like a strong spring released, to its first\nposition, andpresented the same problem to be worked all through,\n\"Was it a dream or not?\"\n\nScrooge lay in this state until the chime had gone three-quarters\nmore, when he remembered, on a sudden, that the Ghost hadwarned\nhim of a visitation when the bell tolled one.  He resolved to lie\nawake until the hour\nwas passed; and, considering that he could no more go to sleep\nthan go to heaven, this was, perhaps, the wisest resolution in\nhis power.\n\nThe quarter was so long, that he was more than once convinced he\nmust have sunk into a doze unconsciously, and missed the clock. \nAt length it broke upon his listening ear.\n\n\"Ding, dong!\"\n\n\"A quarter past,\" said Scrooge, counting.\n\n\"Ding, dong!\"\n\n\"Half past,\" said Scrooge.\n\n\"Ding, dong!\"\n\n\"A quarter to it,\" said Scrooge.\n\"Ding, dong!\"\n\n\"The hour itself,\" said Scrooge triumphantly, \"and nothing else!\"\n\nHe spoke before the hour bell sounded, which it now did with a\ndeep, dull, hollow, melancholy ONE.  Light flashed up in the room\nupon the instant, and the curtains of his bed were drawn.\n\nThe curtains of his bed were drawn aside, I tell you, by a\nhand. Not the curtains at his feet, nor the curtains at his\nback, but those to which his face was addressed. The curtains\nof his bed were drawn aside; and Scrooge, starting up into a\nhalf-recumbent attitude, found himself face to face with the\nunearthly visitor who drew them: as close to it as I am now \nto you, and I am standing in the spirit at your elbow.\n\nIt was a strange figure -- like a child: yet not so like a\nchild as like an old man, viewed through some supernatural\nmedium, which gave him the appearance of having receded\nfrom the view, and being diminished to a child's proportions.\nIts hair, which hung about its neck and down its back, was\nwhite as if with age; and yet the face had not a wrinkle in\nit, and the tenderest bloom was on the skin. The arms were\nvery long and muscular; the hands the same, as if its hold\nwere of uncommon strength. Its legs and feet, most delicately\nformed, were, like those upper members, bare. It wore a tunic\nof the purest white, and round its waist was bound\na lustrous belt, the sheen of which was beautiful. It held\na branch of fresh green holly in its hand; and, in singular\ncontradiction of that wintry emblem, had its dress trimmed\nwith summer flowers. But the strangest thing about it was,\nthat from the crown of its head there sprung a bright clear\njet of light, by which all this was visible; and which was\ndoubtless the occasion of its using, in its duller moments, a\ngreat extinguisher for a cap, which it now held under its arm.\n\nEven this, though, when Scrooge looked at it with increasing\nsteadiness, was not its strangest quality. For as its belt\nsparkled and glittered now in one part and now in another,\nand what was light one instant, at another time was dark, so\nthe figure itself fluctuated in its distinctness: being now a\nthing with one arm, now with one leg, now with twenty legs,\nnow a pair of legs without a head, now a head without a\nbody: of which dissolving parts, no outline would be visible\nin the dense gloom wherein they melted away. And in the\nvery wonder of this, it would be itself again; distinct and\nclear as ever.\n\n`Are you the Spirit, sir, whose coming was foretold to\nme.' asked Scrooge.\n\n`I am.'\n\nThe voice was soft and gentle. Singularly low, as if\ninstead of being so close beside him, it were at a distance.\n\n`Who, and what are you.' Scrooge demanded.\n\n`I am the Ghost of Christmas Past.'\n\n`Long Past.' inquired Scrooge: observant of its dwarfish\nstature.\n\n`No. Your past.'\n\nPerhaps, Scrooge could not have told anybody why, if\nanybody could have asked him; but he had a special desire\nto see the Spirit in his cap; and begged him to be covered.\n\n`What.' exclaimed the Ghost, `would you so soon put out,\nwith worldly hands, the light I give. Is it not enough\nthat you are one of those whose passions made this cap, and\nforce me through whole trains of years to wear it low upon\nmy brow.' \n\nScrooge reverently disclaimed all intention to offend \nor any knowledge of having wilfully bonneted the Spirit at \nany period of his life. He then made bold to inquire what\nbusiness brought him there.\n\n`Your welfare.' said the Ghost.\n\nScrooge expressed himself much obliged, but could not\nhelp thinking that a night of unbroken rest would have been\nmore conducive to that end. The Spirit must have heard\nhim thinking, for it said immediately:\n\n`Your reclamation, then. Take heed.'\n\nIt put out its strong hand as it spoke, and clasped him\ngently by the arm.\n\n`Rise. and walk with me.'\n\nIt would have been in vain for Scrooge to plead that the\nweather and the hour were not adapted to pedestrian purposes;\nthat bed was warm, and the thermometer a long way below\nfreezing; that he was clad but lightly in his slippers,\ndressing-gown, and nightcap; and that he had a cold upon him at\nthat time. The grasp, though gentle as a woman's hand, \nwas not to be resisted. He rose: but finding that the Spirit\nmade towards the window, clasped his robe in supplication.\n\n`I am mortal,' Scrooge remonstrated, `and liable to fall.'\n\n`Bear but a touch of my hand there,' said the Spirit,\nlaying it upon his heart,' and you shall be upheld in more\nthan this.'\n\nAs the words were spoken, they passed through the wall,\nand stood upon an open country road, with fields on either\nhand. The city had entirely vanished. Not a vestige of it\nwas to be seen. The darkness and the mist had vanished\nwith it, for it was a clear, cold, winter day, with snow upon\nthe ground.\n\n`Good Heaven!' said Scrooge, clasping his hands together,\nas he looked about him. `I was bred in this place. I was\na boy here.' \n\nThe Spirit gazed upon him mildly. Its gentle touch,\nthough it had been light and instantaneous, appeared still\npresent to the old man's sense of feeling. He was conscious\nof a thousand odours floating in the air, each one connected\nwith a thousand thoughts, and hopes, and joys, and cares\nlong, long, forgotten.\n\n`Your lip is trembling,' said the Ghost. `And what is\nthat upon your cheek.' \n\nScrooge muttered, with an unusual catching in his voice,\nthat it was a pimple; and begged the Ghost to lead him\nwhere he would.\n\n`You recollect the way.' inquired the Spirit.\n\n`Remember it.' cried Scrooge with fervour; `I could\nwalk it blindfold.' \n\n`Strange to have forgotten it for so many years.' observed\nthe Ghost. `Let us go on.' \n\nThey walked along the road, Scrooge recognising every\ngate, and post, and tree; until a little market-town appeared\nin the distance, with its bridge, its church, and winding river.\nSome shaggy ponies now were seen trotting towards them\nwith boys upon their backs, who called to other boys in\ncountry gigs and carts, driven by farmers. All these boys\nwere in great spirits, and shouted to each other, until the\nbroad fields were so full of merry music, that the crisp air\nlaughed to hear it.\n\n`These are but shadows of the things that have been,' said\nthe Ghost. `They have no consciousness of us.' \n\nThe jocund travellers came on; and as they came, Scrooge\nknew and named them every one. Why was he rejoiced beyond\nall bounds to see them. Why did his cold eye glisten, and\nhis heart leap up as they went past. Why was he filled\nwith gladness when he heard them give each other Merry\nChristmas, as they parted at cross-roads and bye-ways, for\ntheir several homes. What was merry Christmas to Scrooge.\nOut upon merry Christmas. What good had it ever done\nto him.\n\n`The school is not quite deserted,' said the Ghost. `A\nsolitary child, neglected by his friends, is left there still.' \n\nScrooge said he knew it. And he sobbed.\n\nThey left the high-road, by a well-remembered lane, and\nsoon approached a mansion of dull red brick, with a little\nweathercock-surmounted cupola, on the roof, and a bell\nhanging in it. It was a large house, but one of broken\nfortunes; for the spacious offices were little used, their walls\nwere damp and mossy, their windows broken, and their\ngates decayed. Fowls clucked and strutted in the stables;\nand the coach-houses and sheds were over-run with grass.\nNor was it more retentive of its ancient state, within; for\nentering the dreary hall, and glancing through the open\ndoors of many rooms, they found them poorly furnished,\ncold, and vast. There was an earthy savour in the air, a\nchilly bareness in the place, which associated itself somehow\nwith too much getting up by candle-light, and not too\nmuch to eat. \n\nThey went, the Ghost and Scrooge, across the hall, to a\ndoor at the back of the house. It opened before them, and\ndisclosed a long, bare, melancholy room, made barer still by\nlines of plain deal forms and desks. At one of these a lonely\nboy was reading near a feeble fire; and Scrooge sat down\nupon a form, and wept to see his poor forgotten self as he\nused to be.\n\nNot a latent echo in the house, not a squeak and scuffle\nfrom the mice behind the panelling, not a drip from the\nhalf-thawed water-spout in the dull yard behind, not a sigh among\nthe leafless boughs of one despondent poplar, not the idle\nswinging of an empty store-house door, no, not a clicking in\nthe fire, but fell upon the heart of Scrooge with a softening\ninfluence, and gave a freer passage to his tears.\n\nThe Spirit touched him on the arm, and pointed to his\nyounger self, intent upon his reading. Suddenly a man, in\nforeign garments: wonderfully real and distinct to look at:\nstood outside the window, with an axe stuck in his belt, and\nleading by the bridle an ass laden with wood.\n\n`Why, it's Ali Baba.' Scrooge exclaimed in ecstasy. `It's\ndear old honest Ali Baba. Yes, yes, I know. One Christmas\ntime, when yonder solitary child was left here all alone,\nhe did come, for the first time, just like that. Poor boy. And\nValentine,' said Scrooge,' and his wild brother, Orson; there\nthey go. And what's his name, who was put down in his\ndrawers, asleep, at the Gate of Damascus; don't you see him.\nAnd the Sultan's Groom turned upside down by the Genii;\nthere he is upon his head. Serve him right. I'm glad of it.\nWhat business had he to be married to the Princess.' \n\nTo hear Scrooge expending all the earnestness of his nature\non such subjects, in a most extraordinary voice between\nlaughing and crying; and to see his heightened and excited\nface; would have been a surprise to his business friends in\nthe city, indeed.\n\n`There's the Parrot.' cried Scrooge. `Green body and\nyellow tail, with a thing like a lettuce growing out of the\ntop of his head; there he is. Poor Robin Crusoe, he called\nhim, when he came home again after sailing round the\nisland. `Poor Robin Crusoe, where have you been, Robin\nCrusoe.'  The man thought he was dreaming, but he wasn't.\nIt was the Parrot, you know. There goes Friday, running\nfor his life to the little creek. Halloa. Hoop. Hallo.' \n\nThen, with a rapidity of transition very foreign to his\nusual character, he said, in pity for his former self, `Poor\nboy.' and cried again.\n\n`I wish,' Scrooge muttered, putting his hand in his\npocket, and looking about him, after drying his eyes with his\ncuff: `but it's too late now.' \n\n`What is the matter.' asked the Spirit.\n\n`Nothing,' said Scrooge. `Nothing. There was a boy\nsinging a Christmas Carol at my door last night. I should\nlike to have given him something: that's all.' \n\nThe Ghost smiled thoughtfully, and waved its hand:\nsaying as it did so, `Let us see another Christmas.' \n\nScrooge's former self grew larger at the words, and the \nroom became a little darker and more dirty. The panels shrunk,\nthe windows cracked; fragments of plaster fell out of the\nceiling, and the naked laths were shown instead; but how\nall this was brought about, Scrooge knew no more than you\ndo. He only knew that it was quite correct; that everything\nhad happened so; that there he was, alone again, when all\nthe other boys had gone home for the jolly holidays.\n\nHe was not reading now, but walking up and down\ndespairingly.\n\nScrooge looked at the Ghost, and with a mournful \nshaking of his head, glanced anxiously towards the door.\n\nIt opened; and a little girl, much younger than the boy,\ncame darting in, and putting her arms about his neck, and\noften kissing him, addressed him as her `Dear, dear\nbrother.'\n\n`I have come to bring you home, dear brother.' said the\nchild, clapping her tiny hands, and bending down to laugh.\n`To bring you home, home, home.' \n\n`Home, little Fan.' returned the boy.\n\n`Yes.' said the child, brimful of glee. `Home, for good\nand all. Home, for ever and ever. Father is so much kinder\nthan he used to be, that home's like Heaven. He spoke so\ngently to me one dear night when I was going to bed, that\nI was not afraid to ask him once more if you might come\nhome; and he said Yes, you should; and sent me in a coach\nto bring you. And you're to be a man.' said the child,\nopening her eyes,' and are never to come back here; but\nfirst, we're to be together all the Christmas long, and have\nthe merriest time in all the world.' \n\n`You are quite a woman, little Fan.' exclaimed the boy.\n\nShe clapped her hands and laughed, and tried to touch his\nhead; but being too little, laughed again, and stood on\ntiptoe to embrace him. Then she began to drag him, in her\nchildish eagerness, towards the door; and he, nothing loth to\ngo, accompanied her.\n\nA terrible voice in the hall cried. `Bring down Master\nScrooge's box, there.' and in the hall appeared the schoolmaster\nhimself, who glared on Master Scrooge with a ferocious\ncondescension, and threw him into a dreadful state of mind\nby shaking hands with him. He then conveyed him and his\nsister into the veriest old well of a shivering best-parlour that\never was seen, where the maps upon the wall, and the celestial\nand terrestrial globes in the windows, were waxy with cold.\nHere he produced a decanter of curiously light wine, and a\nblock of curiously heavy cake, and administered instalments\nof those dainties to the young people: at the same time,\nsending out a meagre servant to offer a glass of something\nto the postboy, who answered that he thanked the gentleman,\nbut if it was the same tap as he had tasted before, he had\nrather not. Master Scrooge's trunk being by this time tied\non to the top of the chaise, the children bade the schoolmaster\ngood-bye right willingly; and getting into it, drove\ngaily down the garden-sweep: the quick wheels dashing the\nhoar-frost and snow from off the dark leaves of the evergreens\nlike spray.\n\n`Always a delicate creature, whom a breath might have\nwithered,' said the Ghost. `But she had a large heart.' \n\n`So she had,' cried Scrooge. `You're right. I will not\ngainsay it, Spirit. God forbid.' \n\n`She died a woman,' said the Ghost, `and had, as I think,\nchildren.' \n\n`One child,' Scrooge returned.\n\n`True,' said the Ghost. `Your nephew.' \n\nScrooge seemed uneasy in his mind; and answered briefly,\n`Yes.' \n\nAlthough they had but that moment left the school behind\nthem, they were now in the busy thoroughfares of a city,\nwhere shadowy passengers passed and repassed; where shadowy\ncarts and coaches battle for the way, and all the strife and\ntumult of a real city were. It was made plain enough, by\nthe dressing of the shops, that here too it was Christmas\ntime again; but it was evening, and the streets were\nlighted up.\n\nThe Ghost stopped at a certain warehouse door, and asked\nScrooge if he knew it.\n\n`Know it.' said Scrooge. `I was apprenticed here.' \n\nThey went in. At sight of an old gentleman in a Welsh \nwig, sitting behind such a high desk, that if he had been two\ninches taller he must have knocked his head against the\nceiling, Scrooge cried in great excitement:\n\n`Why, it's old Fezziwig. Bless his heart; it's Fezziwig\nalive again.' \n\nOld Fezziwig laid down his pen, and looked up at the\nclock, which pointed to the hour of seven. He rubbed his\nhands; adjusted his capacious waistcoat; laughed all over\nhimself, from his shows to his organ of benevolence; and\ncalled out in a comfortable, oily, rich, fat, jovial voice:\n\n`Yo ho, there. Ebenezer. Dick.' \n\nScrooge's former self, now grown a young man, came briskly\nin, accompanied by his fellow-prentice.\n\n`Dick Wilkins, to be sure.' said Scrooge to the Ghost.\n`Bless me, yes. There he is. He was very much attached\nto me, was Dick. Poor Dick. Dear, dear.' \n\n`Yo ho, my boys.' said Fezziwig. `No more work to-night.\nChristmas Eve, Dick. Christmas, Ebenezer. Let's\nhave the shutters up,' cried old Fezziwig, with a sharp clap\nof his hands,' before a man can say Jack Robinson.' \n\nYou wouldn't believe how those two fellows went at it.\nThey charged into the street with the shutters -- one, two,\nthree -- had them up in their places -- four, five, six -- barred\nthem and pinned then -- seven, eight, nine -- and came back\nbefore you could have got to twelve, panting like race-horses.\n\n`Hilli-ho!' cried old Fezziwig, skipping down from the\nhigh desk, with wonderful agility. `Clear away, my lads,\nand let's have lots of room here. Hilli-ho, Dick. Chirrup,\nEbenezer.' \n\nClear away. There was nothing they wouldn't have cleared\naway, or couldn't have cleared away, with old Fezziwig looking\non. It was done in a minute. Every movable was packed off, as if\nit were dismissed from public life for evermore; the floor was\nswept and watered, the lamps were trimmed, fuel was heaped upon\nthe fire; and the warehouse was as snug, and warm, and dry, and\nbright a ball-room, as you would desire to see upon a winter's\nnight.\n\nIn came a fiddler with a music-book, and went up to the\nlofty desk, and made an orchestra of it, and tuned like fifty\nstomach-aches. In came Mrs Fezziwig, one vast substantial\nsmile. In came the three Miss Fezziwigs, beaming and\nlovable. In came the six young followers whose hearts they\nbroke. In came all the young men and women employed in\nthe business. In came the housemaid, with her cousin, the\nbaker. In came the cook, with her brother's particular friend,\nthe milkman. In came the boy from over the way, who was\nsuspected of not having board enough from his master; trying\nto hide himself behind the girl from next door but one, who\nwas proved to have had her ears pulled by her mistress.\nIn they all came, one after another; some shyly, some boldly,\nsome gracefully, some awkwardly, some pushing, some pulling;\nin they all came, anyhow and everyhow. Away they all went,\ntwenty couples at once; hands half round and back again\nthe other way; down the middle and up again; round\nand round in various stages of affectionate grouping; old\ntop couple always turning up in the wrong place; new top\ncouple starting off again, as soon as they got there; all top\ncouples at last, and not a bottom one to help them. When\nthis result was brought about, old Fezziwig, clapping his\nhands to stop the dance, cried out,' Well done.' and the\nfiddler plunged his hot face into a pot of porter, especially\nprovided for that purpose. But scorning rest, upon his\nreappearance, he instantly began again, though there were no\ndancers yet, as if the other fiddler had been carried home, \nexhausted, on a shutter, and he were a bran-new man\nresolved to beat him out of sight, or perish.\n\nThere were more dances, and there were forfeits, and more\ndances, and there was cake, and there was negus, and there\nwas a great piece of Cold Roast, and there was a great piece\nof Cold Boiled, and there were mince-pies, and plenty of beer.\nBut the great effect of the evening came after the Roast\nand Boiled, when the fiddler (an artful dog, mind. The sort\nof man who knew his business better than you or I could\nhave told it him.) struck up Sir Roger de Coverley.'  Then\nold Fezziwig stood out to dance with Mrs Fezziwig. Top\ncouple, too; with a good stiff piece of work cut out for them;\nthree or four and twenty pair of partners; people who were\nnot to be trifled with; people who would dance, and had no\nnotion of walking.\n\nBut if they had been twice as many -- ah, four times --\nold Fezziwig would have been a match for them, and so would\nMrs Fezziwig. As to her, she was worthy to be his partner\nin every sense of the term. If that's not high praise, tell me\nhigher, and I'll use it. A positive light appeared to issue\nfrom Fezziwig's calves. They shone in every part of the\ndance like moons. You couldn't have predicted, at any given\ntime, what would have become of them next. And when old\nFezziwig and Mrs Fezziwig had gone all through the dance;\nadvance and retire, both hands to your partner, bow and\ncurtsey, corkscrew, thread-the-needle, and back again to\nyour place; Fezziwig cut -- cut so deftly, that he appeared\nto wink with his legs, and came upon his feet again without\na stagger.\n\nWhen the clock struck eleven, this domestic ball broke up.\nMr and Mrs Fezziwig took their stations, one on either side\nof the door, and shaking hands with every person individually\nas he or she went out, wished him or her a Merry Christmas.\nWhen everybody had retired but the two prentices, they did\nthe same to them; and thus the cheerful voices died away,\nand the lads were left to their beds; which were under a\ncounter in the back-shop.\n\nDuring the whole of this time, Scrooge had acted like a\nman out of his wits. His heart and soul were in the scene,\nand with his former self. He corroborated everything,\nremembered everything, enjoyed everything, and underwent\nthe strangest agitation. It was not until now, when the\nbright faces of his former self and Dick were turned from\nthem, that he remembered the Ghost, and became conscious\nthat it was looking full upon him, while the light upon its\nhead burnt very clear.\n\n`A small matter,' said the Ghost, `to make these silly\nfolks so full of gratitude.'\n\n`Small.' echoed Scrooge.\n\nThe Spirit signed to him to listen to the two apprentices,\nwho were pouring out their hearts in praise of Fezziwig:\nand when he had done so, said,\n\n`Why. Is it not. He has spent but a few pounds of\nyour mortal money: three or four perhaps. Is that so\nmuch that he deserves this praise.' \n\n`It isn't that,' said Scrooge, heated by the remark, and\nspeaking unconsciously like his former, not his latter, self.\n`It isn't that, Spirit. He has the power to render us happy\nor unhappy; to make our service light or burdensome; a\npleasure or a toil. Say that his power lies in words and\nlooks; in things so slight and insignificant that it is\nimpossible\nto add and count them up: what then. The happiness\nhe gives, is quite as great as if it cost a fortune.' \n\nHe felt the Spirit's glance, and stopped.\n\n`What is the matter.' asked the Ghost.\n\n`Nothing in particular,' said Scrooge. \n\n`Something, I think.' the Ghost insisted.\n\n`No,' said Scrooge,' No. I should like to be able to say\na word or two to my clerk just now. That's all.' \n\nHis former self turned down the lamps as he gave utterance\nto the wish; and Scrooge and the Ghost again stood side by\nside in the open air.\n\n`My time grows short,' observed the Spirit. `Quick.' \n\nThis was not addressed to Scrooge, or to any one whom he\ncould see, but it produced an immediate effect. For again\nScrooge saw himself. He was older now; a man in the prime\nof life. His face had not the harsh and rigid lines of later\nyears; but it had begun to wear the signs of care and avarice.\nThere was an eager, greedy, restless motion in the eye, which\nshowed the passion that had taken root, and where the\nshadow of the growing tree would fall.\n\nHe was not alone, but sat by the side of a fair young\ngirl in a mourning-dress: in whose eyes there were tears,\nwhich sparkled in the light that shone out of the Ghost of\nChristmas Past.\n\n`It matters little,' she said, softly. `To you, very little.\nAnother idol has displaced me; and if it can cheer and comfort\nyou in time to come, as I would have tried to do, I have\nno just cause to grieve.' \n\n`What Idol has displaced you.' he rejoined.\n\n`A golden one.' \n\n`This is the even-handed dealing of the world.' he said.\n`There is nothing on which it is so hard as poverty; and\nthere is nothing it professes to condemn with such severity\nas the pursuit of wealth.' \n\n`You fear the world too much,' she answered, gently.\n`All your other hopes have merged into the hope of being\nbeyond the chance of its sordid reproach. I have seen your\nnobler aspirations fall off one by one, until the master-passion,\nGain, engrosses you. Have I not.' \n\n`What then.' he retorted. `Even if I have grown so\nmuch wiser, what then. I am not changed towards you.' \n\nShe shook her head.\n\n`Am I.' \n\n`Our contract is an old one. It was made when we were\nboth poor and content to be so, until, in good season, we could\nimprove our worldly fortune by our patient industry. You\nare changed. When it was made, you were another man.' \n\n`I was a boy,' he said impatiently.\n\n`Your own feeling tells you that you were not what you\nare,' she returned. `I am. That which promised happiness\nwhen we were one in heart, is fraught with misery now that\nwe are two. How often and how keenly I have thought of\nthis, I will not say. It is enough that I have thought of it,\nand can release you.' \n\n`Have I ever sought release.' \n\n`In words. No. Never.' \n\n`In what, then.' \n\n`In a changed nature; in an altered spirit; in another\natmosphere of life; another Hope as its great end. In\neverything that made my love of any worth or value in your\nsight. If this had never been between us,' said the girl,\nlooking mildly, but with steadiness, upon him;' tell me,\nwould you seek me out and try to win me now. Ah, no.' \n\nHe seemed to yield to the justice of this supposition, in\nspite of himself. But he said with a struggle,' You think\nnot.' \n\n`I would gladly think otherwise if I could,' she answered,\n`Heaven knows. When I have learned a Truth like this,\nI know how strong and irresistible it must be. But if you\nwere free to-day, to-morrow, yesterday, can even I believe\nthat you would choose a dowerless girl -- you who, in your\nvery confidence with her, weigh everything by Gain: or,\nchoosing her, if for a moment you were false enough to your\none guiding principle to do so, do I not know that your\nrepentance and regret would surely follow. I do; and I\nrelease you. With a full heart, for the love of him you\nonce were.' \n\nHe was about to speak; but with her head turned from\nhim, she resumed.\n\n`You may -- the memory of what is past half makes me\nhope you will -- have pain in this. A very, very brief time,\nand you will dismiss the recollection of it, gladly, as an\nunprofitable dream, from which it happened well that you\nawoke. May you be happy in the life you have chosen.' \n\nShe left him, and they parted.\n\n`Spirit.' said Scrooge,' show me no more. Conduct\nme home. Why do you delight to torture me.' \n\n`One shadow more.' exclaimed the Ghost.\n\n`No more.' cried Scrooge. `No more, I don't wish to\nsee it. Show me no more.' \n\nBut the relentless Ghost pinioned him in both his arms,\nand forced him to observe what happened next.\n\nThey were in another scene and place; a room, not very\nlarge or handsome, but full of comfort. Near to the winter\nfire sat a beautiful young girl, so like that last that Scrooge\nbelieved it was the same, until he saw her, now a comely\nmatron, sitting opposite her daughter. The noise in this\nroom was perfectly tumultuous, for there were more children\nthere, than Scrooge in his agitated state of mind could count;\nand, unlike the celebrated herd in the poem, they were not\nforty children conducting themselves like one, but every\nchild was conducting itself like forty. The consequences\nwere uproarious beyond belief; but no one seemed to care;\non the contrary, the mother and daughter laughed heartily,\nand enjoyed it very much; and the latter, soon beginning to\nmingle in the sports, got pillaged by the young brigands\nmost ruthlessly. What would I not have given to one of\nthem. Though I never could have been so rude, no, no. I\nwouldn't for the wealth of all the world have crushed that\nbraided hair, and torn it down; and for the precious little\nshoe, I wouldn't have plucked it off, God bless my soul. to\nsave my life. As to measuring her waist in sport, as they\ndid, bold young brood, I couldn't have done it; I should\nhave expected my arm to have grown round it for a punishment,\nand never come straight again. And yet I should\nhave dearly liked, I own, to have touched her lips; to have\nquestioned her, that she might have opened them; to have\nlooked upon the lashes of her downcast eyes, and never\nraised a blush; to have let loose waves of hair, an inch of\nwhich would be a keepsake beyond price: in short, I should\nhave liked, I do confess, to have had the lightest licence\nof a child, and yet to have been man enough to know its\nvalue.\n\nBut now a knocking at the door was heard, and such a\nrush immediately ensued that she with laughing face and\nplundered dress was borne towards it the centre of a flushed\nand boisterous group, just in time to greet the father, who\ncame home attended by a man laden with Christmas toys\nand presents. Then the shouting and the struggling, and\nthe onslaught that was made on the defenceless porter.\nThe scaling him with chairs for ladders to dive into his\npockets, despoil him of brown-paper parcels, hold on tight\nby his cravat, hug him round his neck, pommel his back,\nand kick his legs in irrepressible affection. The shouts of\nwonder and delight with which the development of every\npackage was received. The terrible announcement that the\nbaby had been taken in the act of putting a doll's frying-pan\ninto his mouth, and was more than suspected of having\nswallowed a fictitious turkey, glued on a wooden platter.\nThe immense relief of finding this a false alarm. The joy, \nand gratitude, and ecstasy. They are all indescribable alike.\nIt is enough that by degrees the children and their emotions\ngot out of the parlour, and by one stair at a time, up to the\ntop of the house; where they went to bed, and so subsided.\n\nAnd now Scrooge looked on more attentively than ever,\nwhen the master of the house, having his daughter leaning\nfondly on him, sat down with her and her mother at his\nown fireside; and when he thought that such another\ncreature, quite as graceful and as full of promise, might\nhave called him father, and been a spring-time in the\nhaggard winter of his life, his sight grew very dim indeed.\n\n`Belle,' said the husband, turning to his wife with a\nsmile,' I saw an old friend of yours this afternoon.' \n\n`Who was it.' \n\n`Guess.' \n\n`How can I. Tut, don't I know.' she added in the\nsame breath, laughing as he laughed. `Mr Scrooge.' \n\n`Mr Scrooge it was. I passed his office window; and as\nit was not shut up, and he had a candle inside, I could\nscarcely help seeing him. His partner lies upon the point\nof death, I hear; and there he sat alone. Quite alone in\nthe world, I do believe.' \n\n`Spirit.' said Scrooge in a broken voice,' remove me\nfrom this place.' \n\n`I told you these were shadows of the things that have\nbeen,' said the Ghost. `That they are what they are, do\nnot blame me.' \n\n`Remove me.' Scrooge exclaimed,' I cannot bear it.' \n\nHe turned upon the Ghost, and seeing that it looked upon\nhim with a face, in which in some strange way there were\nfragments of all the faces it had shown him, wrestled with it.\n\n`Leave me. Take me back. Haunt me no longer.' \n\nIn the struggle, if that can be called a struggle in which\nthe Ghost with no visible resistance on its own part was\nundisturbed by any effort of its adversary, Scrooge observed\nthat its light was burning high and bright; and dimly\nconnecting that with its influence over him, he seized the\nextinguisher-cap, and by a sudden action pressed it down\nupon its head.\n\nThe Spirit dropped beneath it, so that the extinguisher\ncovered its whole form; but though Scrooge pressed it down\nwith all his force, he could not hide the light, which streamed\nfrom under it, in an unbroken flood upon the ground.\n\nHe was conscious of being exhausted, and overcome by an\nirresistible drowsiness; and, further, of being in his own\nbedroom.  He gave the cap a parting squeeze, in which his hand\nrelaxed; and had barely time to reel to bed, before he sank\ninto a heavy sleep.\n\n\nStave 3:  The Second of the Three Spirits\n\nAwaking in the middle of a prodigiously tough snore, and\nsitting up in bed to get his thoughts together, Scrooge had\nno occasion to be told that the bell was again upon the\nstroke of One. He felt that he was restored to consciousness\nin the right nick of time, for the especial purpose of holding\na conference with the second messenger despatched to him\nthrough Jacob Marley's intervention. But, finding that he\nturned uncomfortably cold when he began to wonder which\nof his curtains this new spectre would draw back, he put\nthem every one aside with his own hands, and lying down\nagain, established a sharp look-out all round the bed. For,\nhe wished to challenge the Spirit on the moment of its\nappearance, and did not wish to be taken by surprise, and\nmade nervous.\n\nGentlemen of the free-and-easy sort, who plume themselves\non being acquainted with a move or two, and being usually\nequal to the time-of-day, express the wide range of their \ncapacity for adventure by observing that they are good for\nanything from pitch-and-toss to manslaughter; between which\nopposite extremes, no doubt, there lies a tolerably wide and\ncomprehensive range of subjects. Without venturing for\nScrooge quite as hardily as this, I don't mind calling on you\nto believe that he was ready for a good broad field of\nstrange appearances, and that nothing between a baby and\nrhinoceros would have astonished him very much.\n\nNow, being prepared for almost anything, he was not by\nany means prepared for nothing; and, consequently, when the\nBell struck One, and no shape appeared, he was taken with a\nviolent fit of trembling. Five minutes, ten minutes, a quarter\nof an hour went by, yet nothing came. All this time, he lay\nupon his bed, the very core and centre of a blaze of ruddy\nlight, which streamed upon it when the clock proclaimed the\nhour; and which, being only light, was more alarming than\na dozen ghosts, as he was powerless to make out what it\nmeant, or would be at; and was sometimes apprehensive\nthat he might be at that very moment an interesting case of\nspontaneous combustion, without having the consolation of\nknowing it. At last, however, he began to think -- as you or\nI would have thought at first; for it is always the person not\nin the predicament who knows what ought to have been done\nin it, and would unquestionably have done it too -- at last, I\nsay, he began to think that the source and secret of this\nghostly light might be in the adjoining room, from whence,\non further tracing it, it seemed to shine. This idea taking\nfull possession of his mind, he got up softly and shuffled in\nhis slippers to the door.\n\nThe moment Scrooge's hand was on the lock, a strange\nvoice called him by his name, and bade him enter. He\nobeyed.\n\nIt was his own room. There was no doubt about that.\nBut it had undergone a surprising transformation. The walls\nand ceiling were so hung with living green, that it looked a\nperfect grove; from every part of which, bright gleaming\nberries glistened. The crisp leaves of holly, mistletoe, and\nivy reflected back the light, as if so many little mirrors had\nbeen scattered there; and such a mighty blaze went roaring\nup the chimney, as that dull petrification of a hearth had\nnever known in Scrooge's time, or Marley's, or for many and\nmany a winter season gone. Heaped up on the floor, to form\na kind of throne, were turkeys, geese, game, poultry, brawn,\ngreat joints of meat, sucking-pigs, long wreaths of sausages,\nmince-pies, plum-puddings, barrels of oysters, red-hot chestnuts,\ncherry-cheeked apples, juicy oranges, luscious pears,\nimmense twelfth-cakes, and seething bowls of punch, that\nmade the chamber dim with their delicious steam. In easy\nstate upon this couch, there sat a jolly Giant, glorious to\nsee, who bore a glowing torch, in shape not unlike Plenty's\nhorn, and held it up, high up, to shed its light on Scrooge,\nas he came peeping round the door.\n\n`Come in.' exclaimed the Ghost. `Come in, and know\nme better, man.'\n\nScrooge entered timidly, and hung his head before this\nSpirit. He was not the dogged Scrooge he had been; and\nthough the Spirit's eyes were clear and kind, he did not like\nto meet them.\n\n`I am the Ghost of Christmas Present,' said the Spirit.\n`Look upon me.'\n\nScrooge reverently did so. It was clothed in one simple\ngreen robe, or mantle, bordered with white fur. This garment\nhung so loosely on the figure, that its capacious breast was\nbare, as if disdaining to be warded or concealed by any\nartifice. Its feet, observable beneath the ample folds of the \ngarment, were also bare; and on its head it wore no other\ncovering than a holly wreath, set here and there with shining\nicicles. Its dark brown curls were long and free; free as its\ngenial face, its sparkling eye, its open hand, its cheery voice,\nits unconstrained demeanour, and its joyful air. Girded\nround its middle was an antique scabbard; but no sword\nwas in it, and the ancient sheath was eaten up with rust.\n\n`You have never seen the like of me before.' exclaimed\nthe Spirit.\n\n`Never,' Scrooge made answer to it.\n\n`Have never walked forth with the younger members of\nmy family; meaning (for I am very young) my elder brothers\nborn in these later years.' pursued the Phantom.\n\n`I don't think I have,' said Scrooge. `I am afraid I have\nnot. Have you had many brothers, Spirit.' \n\n`More than eighteen hundred,' said the Ghost.\n\n`A tremendous family to provide for.' muttered Scrooge.\n\nThe Ghost of Christmas Present rose.\n\n`Spirit,' said Scrooge submissively,' conduct me where\nyou will. I went forth last night on compulsion, and I learnt\na lesson which is working now. To-night, if you have aught\nto teach me, let me profit by it.' \n\n`Touch my robe.' \n\nScrooge did as he was told, and held it fast.\n\nHolly, mistletoe, red berries, ivy, turkeys, geese, game,\npoultry, brawn, meat, pigs, sausages, oysters, pies, puddings,\nfruit, and punch, all vanished instantly. So did the room,\nthe fire, the ruddy glow, the hour of night, and they stood\nin the city streets on Christmas morning, where (for the\nweather was severe) the people made a rough, but brisk and\nnot unpleasant kind of music, in scraping the snow from the\npavement in front of their dwellings, and from the tops of\ntheir houses, whence it was mad delight to the boys to see\nit come plumping down into the road below, and splitting\ninto artificial little snow-storms.\n\nThe house fronts looked black enough, and the windows\nblacker, contrasting with the smooth white sheet of snow\nupon the roofs, and with the dirtier snow upon the ground;\nwhich last deposit had been ploughed up in deep furrows by\nthe heavy wheels of carts and waggons; furrows that crossed\nand recrossed each other hundreds of times where the great\nstreets branched off; and made intricate channels, hard to trace\nin the thick yellow mud and icy water. The sky was gloomy,\nand the shortest streets were choked up with a dingy mist,\nhalf thawed, half frozen, whose heavier particles descended\nin shower of sooty atoms, as if all the chimneys in Great\nBritain had, by one consent, caught fire, and were blazing away\nto their dear hearts' content. There was nothing very cheerful\nin the climate or the town, and yet was there an air of\ncheerfulness abroad that the clearest summer air and brightest\nsummer sun might have endeavoured to diffuse in vain.\n\nFor, the people who were shovelling away on the housetops\nwere jovial and full of glee; calling out to one another\nfrom the parapets, and now and then exchanging a facetious\nsnowball -- better-natured missile far than many a wordy jest --\nlaughing heartily if it went right and not less heartily if it\nwent wrong. The poulterers' shops were still half open, and the\nfruiterers' were radiant in their glory. There were great, round,\nround, pot-bellied baskets of chestnuts, shaped like the waistcoats\nof jolly old gentlemen, lolling at the doors, and tumbling out\ninto the street in their apoplectic opulence. There were\nruddy, brown-faced, broad-girthed Spanish onions, shining in\nthe fatness of their growth like Spanish Friars, and winking\nfrom their shelves in wanton slyness at the girls as they went\nby, and glanced demurely at the hung-up mistletoe. There were\npears and apples, clustered high in blooming pyramids; there\nwere bunches of grapes, made, in the shopkeepers' benevolence\nto dangle from conspicuous hooks, that people's mouths might\nwater gratis as they passed; there were piles of filberts, mossy\nand brown, recalling, in their fragrance, ancient walks among\nthe woods, and pleasant shufflings ankle deep through withered\nleaves; there were Norfolk Biffins, squab and swarthy, setting\noff the yellow of the oranges and lemons, and, in the great\ncompactness of their juicy persons, urgently entreating and\nbeseeching to be carried home in paper bags and eaten after\ndinner. The very gold and silver fish, set forth among\nthese choice fruits in a bowl, though members of a dull and\nstagnant-blooded race, appeared to know that there was\nsomething going on; and, to a fish, went gasping round and\nround their little world in slow and passionless excitement.\n\nThe Grocers'. oh the Grocers'. nearly closed, with perhaps\ntwo shutters down, or one; but through those gaps such\nglimpses. It was not alone that the scales descending on the\ncounter made a merry sound, or that the twine and roller\nparted company so briskly, or that the canisters were rattled\nup and down like juggling tricks, or even that the blended\nscents of tea and coffee were so grateful to the nose, or even\nthat the raisins were so plentiful and rare, the almonds so\nextremely white, the sticks of cinnamon so long and straight,\nthe other spices so delicious, the candied fruits so caked and\nspotted with molten sugar as to make the coldest lookers-on\nfeel faint and subsequently bilious. Nor was it that the figs\nwere moist and pulpy, or that the French plums blushed in\nmodest tartness from their highly-decorated boxes, or that\neverything was good to eat and in its Christmas dress; but\nthe customers were all so hurried and so eager in the hopeful\npromise of the day, that they tumbled up against each other\nat the door, crashing their wicker baskets wildly, and left\ntheir purchases upon the counter, and came running back to\nfetch them, and committed hundreds of the like mistakes, in\nthe best humour possible; while the Grocer and his people\nwere so frank and fresh that the polished hearts with which\nthey fastened their aprons behind might have been their own,\nworn outside for general inspection, and for Christmas daws\nto peck at if they chose.\n\nBut soon the steeples called good people all, to church and\nchapel, and away they came, flocking through the streets in\ntheir best clothes, and with their gayest faces. And at the\nsame time there emerged from scores of bye-streets, lanes, and\nnameless turnings, innumerable people, carrying their dinners\nto the baker' shops. The sight of these poor revellers\nappeared to interest the Spirit very much, for he stood with\nScrooge beside him in a baker's doorway, and taking off the\ncovers as their bearers passed, sprinkled incense on their\ndinners from his torch. And it was a very uncommon kind\nof torch, for once or twice when there were angry words\nbetween some dinner-carriers who had jostled each other, he\nshed a few drops of water on them from it, and their good\nhumour was restored directly. For they said, it was a shame\nto quarrel upon Christmas Day. And so it was. God love\nit, so it was.\n\nIn time the bells ceased, and the bakers were shut up; and\nyet there was a genial shadowing forth of all these dinners\nand the progress of their cooking, in the thawed blotch of\nwet above each baker's oven; where the pavement smoked as\nif its stones were cooking too. \n\n`Is there a peculiar flavour in what you sprinkle from\nyour torch.' asked Scrooge.\n\n`There is. My own.' \n\n`Would it apply to any kind of dinner on this day.' \nasked Scrooge.\n\n`To any kindly given. To a poor one most.' \n\n`Why to a poor one most.' asked Scrooge.\n\n`Because it needs it most.' \n\n`Spirit,' said Scrooge, after a moment's thought,' I wonder\nyou, of all the beings in the many worlds about us, should\ndesire to cramp these people's opportunities of innocent\nenjoyment.' \n\n`I.' cried the Spirit.\n\n`You would deprive them of their means of dining every\nseventh day, often the only day on which they can be said\nto dine at all,' said Scrooge. `Wouldn't you.' \n\n`I.' cried the Spirit.\n\n`You seek to close these places on the Seventh Day.' said\nScrooge. `And it comes to the same thing.' \n\n`I seek.' exclaimed the Spirit.\n\n`Forgive me if I am wrong. It has been done in your\nname, or at least in that of your family,' said Scrooge.\n\n`There are some upon this earth of yours,' returned the Spirit,'\nwho lay claim to know us, and who do their deeds of passion,\npride, ill-will, hatred, envy, bigotry, and selfishness\nin our name, who are as strange to us and all our kith and\nkin, as if they had never lived. Remember that, and charge\ntheir doings on themselves, not us.' \n\nScrooge promised that he would; and they went on,\ninvisible, as they had been before, into the suburbs of the\ntown. It was a remarkable quality of the Ghost (which\nScrooge had observed at the baker's), that notwithstanding\nhis gigantic size, he could accommodate himself to any place\nwith ease; and that he stood beneath a low roof quite as\ngracefully and like a supernatural creature, as it was possible\nhe could have done in any lofty hall.\n\nAnd perhaps it was the pleasure the good Spirit had in\nshowing off this power of his, or else it was his own kind,\ngenerous, hearty nature, and his sympathy with all poor\nmen, that led him straight to Scrooge's clerk's; for there he\nwent, and took Scrooge with him, holding to his robe; and\non the threshold of the door the Spirit smiled, and stopped\nto bless Bob Cratchit's dwelling with the sprinkling of his\ntorch. Think of that. Bob had but fifteen bob a-week\nhimself; he pocketed on Saturdays but fifteen copies of his\nChristian name; and yet the Ghost of Christmas Present\nblessed his four-roomed house.\n\nThen up rose Mrs Cratchit, Cratchit's wife, dressed out\nbut poorly in a twice-turned gown, but brave in ribbons,\nwhich are cheap and make a goodly show for sixpence; and\nshe laid the cloth, assisted by Belinda Cratchit, second of\nher daughters, also brave in ribbons; while Master Peter\nCratchit plunged a fork into the saucepan of potatoes, and\ngetting the corners of his monstrous shirt collar (Bob's private\nproperty, conferred upon his son and heir in honour of the\nday) into his mouth, rejoiced to find himself so gallantly\nattired, and yearned to show his linen in the fashionable Parks.\nAnd now two smaller Cratchits, boy and girl, came tearing\nin, screaming that outside the baker's they had smelt the\ngoose, and known it for their own; and basking in luxurious\nthoughts of sage and onion, these young Cratchits danced\nabout the table, and exalted Master Peter Cratchit to the\nskies, while he (not proud, although his collars nearly choked\nhim) blew the fire, until the slow potatoes bubbling up,\nknocked loudly at the saucepan-lid to be let out and\npeeled.\n\n`What has ever got your precious father then.' said Mrs \nCratchit. `And your brother, Tiny Tim. And Martha\nwarn't as late last Christmas Day by half-an-hour.' \n\n\n`Here's Martha, mother.' said a girl, appearing as she\nspoke.\n\n`Here's Martha, mother.' cried the two young Cratchits.\n`Hurrah. There's such a goose, Martha.' \n\n`Why, bless your heart alive, my dear, how late you are.' \nsaid Mrs Cratchit, kissing her a dozen times, and taking off\nher shawl and bonnet for her with officious zeal.\n\n`We'd a deal of work to finish up last night,' replied the\ngirl,' and had to clear away this morning, mother.' \n\n`Well. Never mind so long as you are come,' said Mrs\nCratchit. `Sit ye down before the fire, my dear, and have\na warm, Lord bless ye.' \n\n`No, no. There's father coming,' cried the two young\nCratchits, who were everywhere at once. `Hide, Martha,\nhide.' \n\nSo Martha hid herself, and in came little Bob, the father,\nwith at least three feet of comforter exclusive of the fringe,\nhanging down before him; and his threadbare clothes darned\nup and brushed, to look seasonable; and Tiny Tim upon his\nshoulder. Alas for Tiny Tim, he bore a little crutch, and\nhad his limbs supported by an iron frame.\n\n`Why, where's our Martha.' cried Bob Cratchit, looking\nround.\n\n`Not coming,' said Mrs Cratchit.\n\n`Not coming.' said Bob, with a sudden declension in his\nhigh spirits; for he had been Tim's blood horse all the way\nfrom church, and had come home rampant. `Not coming\nupon Christmas Day.' \n\nMartha didn't like to see him disappointed, if it were only\nin joke; so she came out prematurely from behind the closet\ndoor, and ran into his arms, while the two young Cratchits\nhustled Tiny Tim, and bore him off into the wash-house,\nthat he might hear the pudding singing in the copper.\n\n`And how did little Tim behave. asked Mrs Cratchit,\nwhen she had rallied Bob on his credulity, and Bob had\nhugged his daughter to his heart's content.\n\n`As good as gold,' said Bob,' and better. Somehow he\ngets thoughtful, sitting by himself so much, and thinks the\nstrangest things you ever heard. He told me, coming home,\nthat he hoped the people saw him in the church, because he\nwas a cripple, and it might be pleasant to them to remember\nupon Christmas Day, who made lame beggars walk, and blind\nmen see.' \n\nBob's voice was tremulous when he told them this, and\ntrembled more when he said that Tiny Tim was growing\nstrong and hearty.\n\nHis active little crutch was heard upon the floor, and back\ncame Tiny Tim before another word was spoken, escorted by\nhis brother and sister to his stool before the fire; and while\nBob, turning up his cuffs -- as if, poor fellow, they were\ncapable of being made more shabby -- compounded some hot\nmixture in a jug with gin and lemons, and stirred it round\nand round and put it on the hob to simmer; Master Peter,\nand the two ubiquitous young Cratchits went to fetch the\ngoose, with which they soon returned in high procession.\n\nSuch a bustle ensued that you might have thought a goose\nthe rarest of all birds; a feathered phenomenon, to which a\nblack swan was a matter of course -- and in truth it was\nsomething very like it in that house. Mrs Cratchit made\nthe gravy (ready beforehand in a little saucepan) hissing hot;\nMaster Peter mashed the potatoes with incredible vigour;\nMiss Belinda sweetened up the apple-sauce; Martha dusted\nthe hot plates; Bob took Tiny Tim beside him in a tiny\ncorner at the table; the two young Cratchits set chairs for\neverybody, not forgetting themselves, and mounting guard \nupon their posts, crammed spoons into their mouths, lest\nthey should shriek for goose before their turn came to be\nhelped. At last the dishes were set on, and grace was\nsaid. It was succeeded by a breathless pause, as Mrs\nCratchit, looking slowly all along the carving-knife, prepared\nto plunge it in the breast; but when she did, and when the\nlong expected gush of stuffing issued forth, one murmur of\ndelight arose all round the board, and even Tiny Tim,\nexcited by the two young Cratchits, beat on the table with\nthe handle of his knife, and feebly cried Hurrah.\n\nThere never was such a goose. Bob said he didn't believe\nthere ever was such a goose cooked. Its tenderness and\nflavour, size and cheapness, were the themes of universal\nadmiration. Eked out by apple-sauce and mashed potatoes,\nit was a sufficient dinner for the whole family; indeed, as\nMrs Cratchit said with great delight (surveying one small\natom of a bone upon the dish), they hadn't ate it all at\nlast. Yet every one had had enough, and the youngest\nCratchits in particular, were steeped in sage and onion to\nthe eyebrows. But now, the plates being changed by Miss\nBelinda, Mrs Cratchit left the room alone -- too nervous to\nbear witnesses -- to take the pudding up and bring it in.\n\nSuppose it should not be done enough. Suppose it should\nbreak in turning out. Suppose somebody should have got\nover the wall of the back-yard, and stolen it, while they\nwere merry with the goose -- a supposition at which the two\nyoung Cratchits became livid. All sorts of horrors were\nsupposed.\n\nHallo. A great deal of steam. The pudding was out of\nthe copper. A smell like a washing-day. That was the\ncloth. A smell like an eating-house and a pastrycook's next\ndoor to each other, with a laundress's next door to that.\nThat was the pudding. In half a minute Mrs Cratchit\nentered -- flushed, but smiling proudly -- with the pudding,\nlike a speckled cannon-ball, so hard and firm, blazing in half\nof half-a-quartern of ignited brandy, and bedight with\nChristmas holly stuck into the top.\n\nOh, a wonderful pudding. Bob Cratchit said, and calmly\ntoo, that he regarded it as the greatest success achieved by\nMrs Cratchit since their marriage. Mrs Cratchit said that\nnow the weight was off her mind, she would confess she had\nhad her doubts about the quantity of flour. Everybody had\nsomething to say about it, but nobody said or thought it\nwas at all a small pudding for a large family. It would have\nbeen flat heresy to do so. Any Cratchit would have blushed\nto hint at such a thing.\n\nAt last the dinner was all done, the cloth was cleared, the\nhearth swept, and the fire made up. The compound in the\njug being tasted, and considered perfect, apples and oranges\nwere put upon the table, and a shovel-full of chestnuts on the\nfire. Then all the Cratchit family drew round the hearth, in\nwhat Bob Cratchit called a circle, meaning half a one; and\nat Bob Cratchit's elbow stood the family display of glass.\nTwo tumblers, and a custard-cup without a handle.\n\nThese held the hot stuff from the jug, however, as well as\ngolden goblets would have done; and Bob served it out with\nbeaming looks, while the chestnuts on the fire sputtered and\ncracked noisily. Then Bob proposed:\n\n`A Merry Christmas to us all, my dears. God bless us.' \n\nWhich all the family re-echoed.\n\n`God bless us every one.' said Tiny Tim, the last of all.\n\nHe sat very close to his father's side upon his little\nstool.\nBob held his withered little hand in his, as if he loved the \nchild, and wished to keep him by his side, and dreaded that\nhe might be taken from him.\n\n`Spirit,' said Scrooge, with an interest he had never felt\nbefore, `tell me if Tiny Tim will live.' \n\n`I see a vacant seat,' replied the Ghost, `in the poor\nchimney-corner, and a crutch without an owner, carefully\npreserved. If these shadows remain unaltered by the Future,\nthe child will die.' \n\n`No, no,' said Scrooge. `Oh, no, kind Spirit. say he\nwill be spared.' \n\n`If these shadows remain unaltered by the Future, none\nother of my race,' returned the Ghost, `will find him here.\nWhat then. If he be like to die, he had better do it, and\ndecrease the surplus population.' \n\nScrooge hung his head to hear his own words quoted by\nthe Spirit, and was overcome with penitence and grief.\n`Man,' said the Ghost, `if man you be in heart, not\nadamant, forbear that wicked cant until you have discovered\nWhat the surplus is, and Where it is. Will you decide what\nmen shall live, what men shall die. It may be, that in the\nsight of Heaven, you are more worthless and less fit to live\nthan millions like this poor man's child. Oh God. to hear\nthe Insect on the leaf pronouncing on the too much life\namong his hungry brothers in the dust.' \n\nScrooge bent before the Ghost's rebuke, and trembling cast\nhis eyes upon the ground. But he raised them speedily, on\nhearing his own name.\n\n`Mr Scrooge.' said Bob; `I'll give you Mr Scrooge, the\nFounder of the Feast.' \n\n`The Founder of the Feast indeed.' cried Mrs Cratchit,\nreddening. `I wish I had him here. I'd give him a piece\nof my mind to feast upon, and I hope he'd have a good\nappetite for it.' \n\n`My dear,' said Bob, `the children. Christmas Day.' \n\n`It should be Christmas Day, I am sure,' said she, `on\nwhich one drinks the health of such an odious, stingy, hard,\nunfeeling man as Mr Scrooge. You know he is, Robert.\nNobody knows it better than you do, poor fellow.' \n\n`My dear,' was Bob's mild answer, `Christmas Day.' \n\n`I'll drink his health for your sake and the Day's,' said\nMrs Cratchit, `not for his. Long life to him. A merry\nChristmas and a happy new year. He'll be very merry and\nvery happy, I have no doubt.' \n\nThe children drank the toast after her. It was the first of\ntheir proceedings which had no heartiness. Tiny Tim drank\nit last of all, but he didn't care twopence for it. Scrooge\nwas the Ogre of the family. The mention of his name cast\na dark shadow on the party, which was not dispelled for full\nfive minutes.\n\nAfter it had passed away, they were ten times merrier than\nbefore, from the mere relief of Scrooge the Baleful being done\nwith. Bob Cratchit told them how he had a situation in his\neye for Master Peter, which would bring in, if obtained, full\nfive-and-sixpence weekly. The two young Cratchits laughed\ntremendously at the idea of Peter's being a man of business;\nand Peter himself looked thoughtfully at the fire from\nbetween his collars, as if he were deliberating what particular\ninvestments he should favour when he came into the receipt\nof that bewildering income. Martha, who was a poor\napprentice at a milliner's, then told them what kind of work\nshe had to do, and how many hours she worked at a stretch,\nand how she meant to lie abed to-morrow morning for a\ngood long rest; to-morrow being a holiday she passed at\nhome. Also how she had seen a countess and a lord some\ndays before, and how the lord was much about as tall as\nPeter; at which Peter pulled up his collars so high that you \ncouldn't have seen his head if you had been there. All this\ntime the chestnuts and the jug went round and round; and\nby-and-bye they had a song, about a lost child travelling in\nthe snow, from Tiny Tim, who had a plaintive little voice,\nand sang it very well indeed.\n\nThere was nothing of high mark in this. They were not\na handsome family; they were not well dressed; their shoes\nwere far from being water-proof; their clothes were scanty;\nand Peter might have known, and very likely did, the inside\nof a pawnbroker's. But, they were happy, grateful, pleased\nwith one another, and contented with the time; and when\nthey faded, and looked happier yet in the bright sprinklings\nof the Spirit's torch at parting, Scrooge had his eye upon\nthem, and especially on Tiny Tim, until the last.\n\nBy this time it was getting dark, and snowing pretty\nheavily; and as Scrooge and the Spirit went along the streets,\nthe brightness of the roaring fires in kitchens, parlours, and\nall sorts of rooms, was wonderful. Here, the flickering of\nthe blaze showed preparations for a cosy dinner, with hot\nplates baking through and through before the fire, and deep\nred curtains, ready to be drawn to shut out cold and darkness.\nThere all the children of the house were running out\ninto the snow to meet their married sisters, brothers, cousins,\nuncles, aunts, and be the first to greet them. Here, again,\nwere shadows on the window-blind of guests assembling; and\nthere a group of handsome girls, all hooded and fur-booted,\nand all chattering at once, tripped lightly off to some near\nneighbour's house; where, woe upon the single man who saw\nthem enter -- artful witches, well they knew it -- in a glow.\n\nBut, if you had judged from the numbers of people on\ntheir way to friendly gatherings, you might have thought\nthat no one was at home to give them welcome when they\ngot there, instead of every house expecting company, and\npiling up its fires half-chimney high. Blessings on it, how\nthe Ghost exulted. How it bared its breadth of breast, and\nopened its capacious palm, and floated on, outpouring, with\na generous hand, its bright and harmless mirth on everything\nwithin its reach. The very lamplighter, who ran on before,\ndotting the dusky street with specks of light, and who was\ndressed to spend the evening somewhere, laughed out loudly\nas the Spirit passed, though little kenned the lamplighter\nthat he had any company but Christmas.\n\nAnd now, without a word of warning from the Ghost, they\nstood upon a bleak and desert moor, where monstrous masses\nof rude stone were cast about, as though it were the burial-place\nof giants; and water spread itself wheresoever it listed,\nor would have done so, but for the frost that held it prisoner;\nand nothing grew but moss and furze, and coarse rank grass.\nDown in the west the setting sun had left a streak of fiery\nred, which glared upon the desolation for an instant, like a\nsullen eye, and frowning lower, lower, lower yet, was lost in\nthe thick gloom of darkest night.\n\n`What place is this.' asked Scrooge.\n\n`A place where Miners live, who labour in the bowels of\nthe earth,' returned the Spirit. `But they know me. See.' \n\nA light shone from the window of a hut, and swiftly they\nadvanced towards it. Passing through the wall of mud and\nstone, they found a cheerful company assembled round a\nglowing fire. An old, old man and woman, with their\nchildren and their children's children, and another generation\nbeyond that, all decked out gaily in their holiday attire.\nThe old man, in a voice that seldom rose above the howling\nof the wind upon the barren waste, was singing them a \nChristmas song -- it had been a very old song when he was a\nboy -- and from time to time they all joined in the chorus.\nSo surely as they raised their voices, the old man got quite\nblithe and loud; and so surely as they stopped, his vigour\nsank again.\n\nThe Spirit did not tarry here, but bade Scrooge hold his\nrobe, and passing on above the moor, sped -- whither. Not\nto sea. To sea. To Scrooge's horror, looking back, he saw\nthe last of the land, a frightful range of rocks, behind them;\nand his ears were deafened by the thundering of water, as it\nrolled and roared, and raged among the dreadful caverns it\nhad worn, and fiercely tried to undermine the earth.\n\nBuilt upon a dismal reef of sunken rocks, some league\nor so from shore, on which the waters chafed and dashed,\nthe wild year through, there stood a solitary lighthouse.\nGreat heaps of sea-weed clung to its base, and storm-birds\n-- born of the wind one might suppose, as sea-weed of the\nwater -- rose and fell about it, like the waves they skimmed.\n\nBut even here, two men who watched the light had made\na fire, that through the loophole in the thick stone wall shed\nout a ray of brightness on the awful sea. Joining their\nhorny hands over the rough table at which they sat, they\nwished each other Merry Christmas in their can of grog; and\none of them: the elder, too, with his face all damaged and\nscarred with hard weather, as the figure-head of an old ship\nmight be: struck up a sturdy song that was like a Gale in\nitself.\n\nAgain the Ghost sped on, above the black and heaving sea\n-- on, on -- until, being far away, as he told Scrooge, from any\nshore, they lighted on a ship. They stood beside the helmsman\nat the wheel, the look-out in the bow, the officers who\nhad the watch; dark, ghostly figures in their several stations;\nbut every man among them hummed a Christmas tune, or\nhad a Christmas thought, or spoke below his breath to his\ncompanion of some bygone Christmas Day, with homeward\nhopes belonging to it. And every man on board, waking or\nsleeping, good or bad, had had a kinder word for another\non that day than on any day in the year; and had shared\nto some extent in its festivities; and had remembered those\nhe cared for at a distance, and had known that they delighted\nto remember him.\n\nIt was a great surprise to Scrooge, while listening to the\nmoaning of the wind, and thinking what a solemn thing it\nwas to move on through the lonely darkness over an unknown\nabyss, whose depths were secrets as profound as Death: it\nwas a great surprise to Scrooge, while thus engaged, to hear\na hearty laugh. It was a much greater surprise to Scrooge\nto recognise it as his own nephew's and to find himself in a\nbright, dry, gleaming room, with the Spirit standing smiling\nby his side, and looking at that same nephew with approving\naffability.\n\n`Ha, ha.' laughed Scrooge's nephew. `Ha, ha, ha.' \n\nIf you should happen, by any unlikely chance, to know a\nman more blest in a laugh than Scrooge's nephew, all I can\nsay is, I should like to know him too. Introduce him to me,\nand I'll cultivate his acquaintance.\n\nIt is a fair, even-handed, noble adjustment of things, that\nwhile there is infection in disease and sorrow, there is nothing\nin the world so irresistibly contagious as laughter and\ngood-humour. When Scrooge's nephew laughed in this way: holding\nhis sides, rolling his head, and twisting his face into the\nmost extravagant contortions: Scrooge's niece, by marriage,\nlaughed as heartily as he. And their assembled friends being\nnot a bit behindhand, roared out lustily.\n\n`Ha, ha. Ha, ha, ha, ha.' \n\n`He said that Christmas was a humbug, as I live.' cried\nScrooge's nephew. `He believed it too.' \n\n`More shame for him, Fred.' said Scrooge's niece, \nindignantly. Bless those women; they never do anything by\nhalves. They are always in earnest.\n\nShe was very pretty: exceedingly pretty. With a dimpled,\nsurprised-looking, capital face; a ripe little mouth, that\nseemed made to be kissed -- as no doubt it was; all kinds of\ngood little dots about her chin, that melted into one another\nwhen she laughed; and the sunniest pair of eyes you ever\nsaw in any little creature's head. Altogether she was what\nyou would have called provoking, you know; but satisfactory.\n\n`He's a comical old fellow,' said Scrooge's nephew,' that's\nthe truth: and not so pleasant as he might be. However,\nhis offences carry their own punishment, and I have nothing\nto say against him.' \n\n`I'm sure he is very rich, Fred,' hinted Scrooge's niece.\n`At least you always tell me so.' \n\n`What of that, my dear.' said Scrooge's nephew. `His\nwealth is of no use to him. He don't do any good with it.\nHe don't make himself comfortable with it. He hasn't the\nsatisfaction of thinking -- ha, ha, ha. -- that he is ever going\nto benefit us with it.' \n\n`I have no patience with him,' observed Scrooge's niece.\nScrooge's niece's sisters, and all the other ladies, expressed\nthe same opinion.\n\n`Oh, I have.' said Scrooge's nephew. `I am sorry for\nhim; I couldn't be angry with him if I tried. Who suffers\nby his ill whims. Himself, always. Here, he takes it into\nhis head to dislike us, and he won't come and dine with us.\nWhat's the consequence. He don't lose much of a dinner.' \n\n`Indeed, I think he loses a very good dinner,' interrupted\nScrooge's niece. Everybody else said the same, and they\nmust be allowed to have been competent judges, because\nthey had just had dinner; and, with the dessert upon the\ntable, were clustered round the fire, by lamplight.\n\n`Well. I'm very glad to hear it,' said Scrooge's nephew,\n`because I haven't great faith in these young housekeepers.\nWhat do you say, Topper.' \n\nTopper had clearly got his eye upon one of Scrooge's niece's\nsisters, for he answered that a bachelor was a wretched outcast,\nwho had no right to express an opinion on the subject.\nWhereat Scrooge's niece's sister -- the plump one with the lace\ntucker: not the one with the roses -- blushed.\n\n`Do go on, Fred,' said Scrooge's niece, clapping her hands.\n`He never finishes what he begins to say. He is such a\nridiculous fellow.' \n\nScrooge's nephew revelled in another laugh, and as it was\nimpossible to keep the infection off; though the plump sister\ntried hard to do it with aromatic vinegar; his example was\nunanimously followed.\n\n`I was only going to say,' said Scrooge's nephew,' that\nthe consequence of his taking a dislike to us, and not making\nmerry with us, is, as I think, that he loses some pleasant\nmoments, which could do him no harm. I am sure he loses\npleasanter companions than he can find in his own thoughts,\neither in his mouldy old office, or his dusty chambers. I\nmean to give him the same chance every year, whether he\nlikes it or not, for I pity him. He may rail at Christmas\ntill he dies, but he can't help thinking better of it -- I defy\nhim -- if he finds me going there, in good temper, year after\nyear, and saying Uncle Scrooge, how are you. If it only\nputs him in the vein to leave his poor clerk fifty pounds,\nthat's something; and I think I shook him yesterday.' \n\nIt was their turn to laugh now at the notion of his shaking\nScrooge. But being thoroughly good-natured, and not much\ncaring what they laughed at, so that they laughed at any\nrate, he encouraged them in their merriment, and passed the\nbottle joyously.\n\nAfter tea. they had some music. For they were a musical\nfamily, and knew what they were about, when they sung a\nGlee or Catch, I can assure you: especially Topper, who\ncould growl away in the bass like a good one, and never\nswell the large veins in his forehead, or get red in the face\nover it. Scrooge's niece played well upon the harp; and\nplayed among other tunes a simple little air (a mere nothing:\nyou might learn to whistle it in two minutes), which had\nbeen familiar to the child who fetched Scrooge from the\nboarding-school, as he had been reminded by the Ghost of\nChristmas Past. When this strain of music sounded, all the\nthings that Ghost had shown him, came upon his mind; he\nsoftened more and more; and thought that if he could have\nlistened to it often, years ago, he might have cultivated the\nkindnesses of life for his own happiness with his own hands,\nwithout resorting to the sexton's spade that buried Jacob\nMarley.\n\nBut they didn't devote the whole evening to music. After\na while they played at forfeits; for it is good to be children\nsometimes, and never better than at Christmas, when its\nmighty Founder was a child himself. Stop. There was first\na game at blind-man's buff. Of course there was. And I\nno more believe Topper was really blind than I believe he\nhad eyes in his boots. My opinion is, that it was a done\nthing between him and Scrooge's nephew; and that the\nGhost of Christmas Present knew it. The way he went after\nthat plump sister in the lace tucker, was an outrage on the\ncredulity of human nature. Knocking down the fire-irons,\ntumbling over the chairs, bumping against the piano,\nsmothering himself among the curtains, wherever she went,\nthere went he. He always knew where the plump sister was.\nHe wouldn't catch anybody else. If you had fallen up\nagainst him (as some of them did), on purpose, he would\nhave made a feint of endeavouring to seize you, which would\nhave been an affront to your understanding, and would instantly\nhave sidled off in the direction of the plump sister.\nShe often cried out that it wasn't fair; and it really was not.\nBut when at last, he caught her; when, in spite of all her\nsilken rustlings, and her rapid flutterings past him, he got\nher into a corner whence there was no escape; then his\nconduct was the most execrable. For his pretending not to\nknow her; his pretending that it was necessary to touch her\nhead-dress, and further to assure himself of her identity by\npressing a certain ring upon her finger, and a certain chain\nabout her neck; was vile, monstrous. No doubt she told\nhim her opinion of it, when, another blind-man being in\noffice, they were so very confidential together, behind the\ncurtains.\n\nScrooge's niece was not one of the blind-man's buff party,\nbut was made comfortable with a large chair and a footstool,\nin a snug corner, where the Ghost and Scrooge were close\nbehind her. But she joined in the forfeits, and loved her\nlove to admiration with all the letters of the alphabet.\nLikewise at the game of How, When, and Where, she was\nvery great, and to the secret joy of Scrooge's nephew, beat\nher sisters hollow: though they were sharp girls too, as\ncould have told you. There might have been twenty people there,\nyoung and old, but they all played, and so did Scrooge, for,\nwholly forgetting the interest he had in what was going on, that\nhis voice made no sound in their ears, he sometimes came out with\nhis guess quite loud, and very often guessed quite right, too;\nfor the sharpest needle, best Whitechapel, warranted not to cut\nin the eye, was not sharper than Scrooge; blunt as he took it in\nhis head to be.\n\nThe Ghost was greatly pleased to find him in this mood,\nand looked upon him with such favour, that he begged like\na boy to be allowed to stay until the guests departed. But\nthis the Spirit said could not be done.\n\n`Here is a new game,' said Scrooge. `One half hour,\nSpirit, only one.' \n\nIt was a Game called Yes and No, where Scrooge's nephew\nhad to think of something, and the rest must find out what;\nhe only answering to their questions yes or no, as the case\nwas. The brisk fire of questioning to which he was exposed,\nelicited from him that he was thinking of an animal, a live\nanimal, rather a disagreeable animal, a savage animal, an\nanimal that growled and grunted sometimes, and talked sometimes,\nand lived in London, and walked about the streets,\nand wasn't made a show of, and wasn't led by anybody, and\ndidn't live in a menagerie, and was never killed in a market,\nand was not a horse, or an ass, or a cow, or a bull, or a\ntiger, or a dog, or a pig, or a cat, or a bear. At every fresh\nquestion that was put to him, this nephew burst into a\nfresh roar of laughter; and was so inexpressibly tickled, that\nhe was obliged to get up off the sofa and stamp. At last\nthe plump sister, falling into a similar state, cried out:\n\n`I have found it out. I know what it is, Fred. I know\nwhat it is.' \n\n`What is it.' cried Fred.\n\n`It's your Uncle Scrooge.' \n\nWhich it certainly was. Admiration was the universal\nsentiment, though some objected that the reply to `Is it a\nbear.' ought to have been `Yes;' inasmuch as an answer\nin the negative was sufficient to have diverted their thoughts\nfrom Mr Scrooge, supposing they had ever had any tendency\nthat way.\n\n`He has given us plenty of merriment, I am sure,' said\nFred,' and it would be ungrateful not to drink his health.\nHere is a glass of mulled wine ready to our hand at the\nmoment; and I say, \"Uncle Scrooge.\"'\n\n`Well. Uncle Scrooge.' they cried.\n\n`A Merry Christmas and a Happy New Year to the old\nman, whatever he is.' said Scrooge's nephew. `He wouldn't\ntake it from me, but may he have it, nevertheless. Uncle\nScrooge.' \n\nUncle Scrooge had imperceptibly become so gay and light\nof heart, that he would have pledged the unconscious\ncompany in return, and thanked them in an inaudible speech,\nif the Ghost had given him time. But the whole scene\npassed off in the breath of the last word spoken by his\nnephew; and he and the Spirit were again upon their travels.\n\nMuch they saw, and far they went, and many homes they\nvisited, but always with a happy end. The Spirit stood\nbeside sick beds, and they were cheerful; on foreign lands,\nand they were close at home; by struggling men, and they\nwere patient in their greater hope; by poverty, and it was\nrich. In almshouse, hospital, and jail, in misery's every\nrefuge, where vain man in his little brief authority had not\nmade fast the door and barred the Spirit out, he left his\nblessing, and taught Scrooge his precepts.\n\nIt was a long night, if it were only a night; but Scrooge\nhad his doubts of this, because the Christmas Holidays appeared\nto be condensed into the space of time they passed\ntogether. It was strange, too, that while Scrooge remained\nunaltered in his outward form, the Ghost grew older, clearly\nolder. Scrooge had observed this change, but never spoke of \nit, until they left a children's Twelfth Night party, when,\nlooking at the Spirit as they stood together in an open place,\nhe noticed that its hair was grey.\n\n`Are spirits' lives so short.' asked Scrooge.\n\n`My life upon this globe, is very brief,' replied the Ghost.\n`It ends to-night.' \n\n`To-night.' cried Scrooge.\n\n`To-night at midnight. Hark. The time is drawing\nnear.' \n\nThe chimes were ringing the three quarters past eleven at\nthat moment.\n\n`Forgive me if I am not justified in what I ask,' said\nScrooge, looking intently at the Spirit's robe,' but I see\nsomething strange, and not belonging to yourself, protruding\nfrom your skirts. Is it a foot or a claw.' \n\n`It might be a claw, for the flesh there is upon it,' was\nthe Spirit's sorrowful reply. `Look here.' \n\nFrom the foldings of its robe, it brought two children;\nwretched, abject, frightful, hideous, miserable. They knelt\ndown at its feet, and clung upon the outside of its garment.\n\n`Oh, Man. look here. Look, look, down here.' exclaimed\nthe Ghost.\n\nThey were a boy and a girl. Yellow, meagre, ragged,\nscowling, wolfish; but prostrate, too, in their humility. Where\ngraceful youth should have filled their features out, and\ntouched them with its freshest tints, a stale and shrivelled\nhand, like that of age, had pinched, and twisted them, and\npulled them into shreds. Where angels might have sat\nenthroned, devils lurked, and glared out menacing. No\nchange, no degradation, no perversion of humanity, in any\ngrade, through all the mysteries of wonderful creation, has\nmonsters half so horrible and dread.\n\nScrooge started back, appalled. Having them shown to\nhim in this way, he tried to say they were fine children, but\nthe words choked themselves, rather than be parties to a lie\nof such enormous magnitude.\n\n`Spirit. are they yours.' Scrooge could say no more.\n\n`They are Man's,' said the Spirit, looking down upon\nthem. `And they cling to me, appealing from their fathers.\nThis boy is Ignorance. This girl is Want. Beware them both,\nand all of their degree, but most of all beware this boy, for\non his brow I see that written which is Doom, unless the\nwriting be erased. Deny it.' cried the Spirit, stretching out\nits hand towards the city. `Slander those who tell it ye.\nAdmit it for your factious purposes, and make it worse.\nAnd abide the end.' \n\n`Have they no refuge or resource.' cried Scrooge.\n\n`Are there no prisons.' said the Spirit, turning on him\nfor the last time with his own words. `Are there no workhouses.' \nThe bell struck twelve.\n\nScrooge looked about him for the Ghost, and saw it \nnot. As the last stroke ceased to vibrate, he remembered the\nprediction of old Jacob Marley, and lifting\nup his eyes, beheld a solemn Phantom, draped and\nhooded, coming, like a mist along the ground, towards\nhim.\n\n\nStave 4:  The Last of the Spirits\n\nThe Phantom slowly, gravely, silently approached. When\nit came, Scrooge bent down upon his knee; for in\nthe very air through which this Spirit moved it seemed to\nscatter gloom and mystery.\n\nIt was shrouded in a deep black garment, which concealed\nits head, its face, its form, and left nothing of it visible \nsave one outstretched hand. But for this it would have been\ndifficult to detach its figure from the night, and separate it\nfrom the darkness by which it was surrounded.\n\nHe felt that it was tall and stately when it came beside\nhim, and that its mysterious presence filled him with a \nsolemn dread. He knew no more, for the Spirit neither\nspoke nor moved.\n\n`I am in the presence of the Ghost of Christmas Yet To\nCome.' said Scrooge.\n\nThe Spirit answered not, but pointed onward with its\nhand.\n\n`You are about to show me shadows of the things that\nhave not happened, but will happen in the time before us,' \nScrooge pursued. `Is that so, Spirit.' \n\nThe upper portion of the garment was contracted for an\ninstant in its folds, as if the Spirit had inclined its head.\nThat was the only answer he received.\n\nAlthough well used to ghostly company by this time,\nScrooge feared the silent shape so much that his legs trembled\nbeneath him, and he found that he could hardly stand when\nhe prepared to follow it. The Spirit pauses a moment, as\nobserving his condition, and giving him time to recover.\n\nBut Scrooge was all the worse for this. It thrilled him\nwith a vague uncertain horror, to know that behind the\ndusky shroud, there were ghostly eyes intently fixed upon\nhim, while he, though he stretched his own to the utmost,\ncould see nothing but a spectral hand and one great heap\nof black.\n\n`Ghost of the Future.' he exclaimed,' I fear you more\nthan any spectre I have seen. But as I know your purpose\nis to do me good, and as I hope to live to be another\nman from what I was, I am prepared to bear you company,\nand do it with a thankful heart. Will you not speak\nto me.' \n\nIt gave him no reply. The hand was pointed straight\nbefore them.\n\n`Lead on.' said Scrooge. `Lead on. The night is\nwaning fast, and it is precious time to me, I know. Lead\non, Spirit.' \n\nThe Phantom moved away as it had come towards him.\nScrooge followed in the shadow of its dress, which bore him\nup, he thought, and carried him along.\n\nThey scarcely seemed to enter the city; for the city rather\nseemed to spring up about them, and encompass them of its\nown act. But there they were, in the heart of it; on\nChange, amongst the merchants; who hurried up and down,\nand chinked the money in their pockets, and conversed in\ngroups, and looked at their watches, and trifled thoughtfully\nwith their great gold seals; and so forth, as Scrooge had\nseen them often.\n\nThe Spirit stopped beside one little knot of business men.\nObserving that the hand was pointed to them, Scrooge\nadvanced to listen to their talk.\n\n`No,' said a great fat man with a monstrous chin,' I\ndon't know much about it, either way. I only know he's\ndead.' \n\n`When did he die.' inquired another.\n\n`Last night, I believe.' \n\n`Why, what was the matter with him.' asked a third,\ntaking a vast quantity of snuff out of a very large snuff-box.\n`I thought he'd never die.' \n\n`God knows,' said the first, with a yawn.\n\n`What has he done with his money.' asked a red-faced\ngentleman with a pendulous excrescence on the end of his\nnose, that shook like the gills of a turkey-cock.\n\n`I haven't heard,' said the man with the large chin, \nyawning again. `Left it to his company, perhaps. He hasn't\nleft it to me. That's all I know.' \n\nThis pleasantry was received with a general laugh.\n\n`It's likely to be a very cheap funeral,' said the same\nspeaker;' for upon my life I don't know of anybody to go\nto it. Suppose we make up a party and volunteer.' \n\n`I don't mind going if a lunch is provided,' observed the\ngentleman with the excrescence on his nose. `But I must\nbe fed, if I make one.' \n\nAnother laugh.\n\n`Well, I am the most disinterested among you, after all,' \nsaid the first speaker,' for I never wear black gloves, and I\nnever eat lunch. But I'll offer to go, if anybody else will.\nWhen I come to think of it, I'm not at all sure that I wasn't\nhis most particular friend; for we used to stop and speak\nwhenever we met. Bye, bye.' \n\nSpeakers and listeners strolled away, and mixed with \nother groups. Scrooge knew the men, and looked towards the\nSpirit for an explanation.\n\nThe Phantom glided on into a street. Its finger pointed\nto two persons meeting. Scrooge listened again, thinking\nthat the explanation might lie here.\n\nHe knew these men, also, perfectly. They were men of aye\nbusiness:  very wealthy, and of great importance. He had made\na point always of standing well in their esteem: in a business\npoint of view, that is; strictly in a business point of view.\n\n`How are you.' said one.\n\n`How are you.' returned the other.\n\n`Well.' said the first. `Old Scratch has got his own at\nlast, hey.' \n\n`So I am told,' returned the second. `Cold, isn't it.' \n\n`Seasonable for Christmas time. You're not a skater, I\nsuppose.' \n\n`No. No. Something else to think of. Good morning.' \n\nNot another word. That was their meeting, their\nconversation, and their parting.\n\nScrooge was at first inclined to be surprised that the\nSpirit should attach importance to conversations apparently so\ntrivial; but feeling assured that they must have some hidden\npurpose, he set himself to consider what it was likely to be.\nThey could scarcely be supposed to have any bearing on the\ndeath of Jacob, his old partner, for that was Past, and this\nGhost's province was the Future. Nor could he think of any\none immediately connected with himself, to whom he could\napply them. But nothing doubting that to whomsoever\nthey applied they had some latent moral for his own improvement,\nhe resolved to treasure up every word he heard,\nand everything he saw; and especially to observe the\nshadow of himself when it appeared. For he had an expectation\nthat the conduct of his future self would give him\nthe clue he missed, and would render the solution of these\nriddles easy.\n\nHe looked about in that very place for his own image; but\nanother man stood in his accustomed corner, and though the\nclock pointed to his usual time of day for being there, he\nsaw no likeness of himself among the multitudes that poured\nin through the Porch. It gave him little surprise, however;\nfor he had been revolving in his mind a change of life, and\nthought and hoped he saw his new-born resolutions carried\nout in this.\n\nQuiet and dark, beside him stood the Phantom, with its\noutstretched hand. When he roused himself from his\nthoughtful quest, he fancied from the turn of the hand, and\nits situation in reference to himself, that the Unseen Eyes\nwere looking at him keenly. It made him shudder, and feel\nvery cold.\n\nThey left the busy scene, and went into an obscure part\nof the town, where Scrooge had never penetrated before,\nalthough he recognised its situation, and its bad repute. The\nways were foul and narrow; the shops and houses wretched;\nthe people half-naked, drunken, slipshod, ugly. Alleys and\narchways, like so many cesspools, disgorged their offences of\nsmell, and dirt, and life, upon the straggling streets; and the\nwhole quarter reeked with crime, with filth, and misery.\n\nFar in this den of infamous resort, there was a low-browed,\nbeetling shop, below a pent-house roof, where iron, old rags,\nbottles, bones, and greasy offal, were bought. Upon the floor \nwithin, were piled up heaps of rusty keys, nails, chains, hinges,\nfiles, scales, weights, and refuse iron of all kinds. Secrets\nthat few would like to scrutinise were bred and hidden in\nmountains of unseemly rags, masses of corrupted fat, and\nsepulchres of bones. Sitting in among the wares he dealt in, by a\ncharcoal stove, made of old bricks, was a grey-haired rascal,\nnearly seventy years of age; who had screened himself from the\ncold air without, by a frousy curtaining of miscellaneous\ntatters, hung upon a line; and smoked his pipe in all the luxury\nof calm retirement.\n\nScrooge and the Phantom came into the presence of this\nman, just as a woman with a heavy bundle slunk into the\nshop. But she had scarcely entered, when another woman,\nsimilarly laden, came in too; and she was closely followed by\na man in faded black, who was no less startled by the sight\nof them, than they had been upon the recognition of each\nother. After a short period of blank astonishment, in which\nthe old man with the pipe had joined them, they all three\nburst into a laugh.\n\n`Let the charwoman alone to be the first.' cried she who\nhad entered first. `Let the laundress alone to be the second;\nand let the undertaker's man alone to be the third. Look\nhere, old Joe, here's a chance. If we haven't all three met\nhere without meaning it.' \n\n`You couldn't have met in a better place,' said old Joe,\nremoving his pipe from his mouth. `Come into the parlour.\nYou were made free of it long ago, you know; and the other\ntwo an't strangers. Stop till I shut the door of the shop.\nAh. How it skreeks. There an't such a rusty bit of metal\nin the place as its own hinges, I believe; and I'm sure there's\nno such old bones here, as mine. Ha, ha. We're all suitable\nto our calling, we're well matched. Come into the\nparlour. Come into the parlour.' \n\nThe parlour was the space behind the screen of rags. The\nold man raked the fire together with an old stair-rod, and\nhaving trimmed his smoky lamp (for it was night), with the\nstem of his pipe, put it in his mouth again.\n\nWhile he did this, the woman who had already spoken\nthrew her bundle on the floor, and sat down in a flaunting\nmanner on a stool; crossing her elbows on her knees, and\nlooking with a bold defiance at the other two.\n\n`What odds then. What odds, Mrs Dilber.' said the\nwoman. `Every person has a right to take care of themselves.\nHe always did.' \n\n`That's true, indeed.' said the laundress. `No man\nmore so.' \n\n`Why then, don't stand staring as if you was afraid,\nwoman; who's the wiser. We're not going to pick holes in\neach other's coats, I suppose.' \n\n`No, indeed.' said Mrs Dilber and the man together.\n`We should hope not.' \n\n`Very well, then.' cried the woman. `That's enough.\nWho's the worse for the loss of a few things like these.\nNot a dead man, I suppose.' \n\n`No, indeed,' said Mrs Dilber, laughing.\n\n`If he wanted to keep them after he was dead, a wicked old\nscrew,' pursued the woman,' why wasn't he natural in his\nlifetime. If he had been, he'd have had somebody to look\nafter him when he was struck with Death, instead of lying\ngasping out his last there, alone by himself.' \n\n`It's the truest word that ever was spoke,' said Mrs\nDilber. `It's a judgment on him.' \n\n`I wish it was a little heavier judgment,' replied the\nwoman;' and it should have been, you may depend upon it,\nif I could have laid my hands on anything else. Open that\nbundle, old Joe, and let me know the value of it. Speak out \nplain. I'm not afraid to be the first, nor afraid for them to\nsee it. We know pretty well that we were helping ourselves,\nbefore we met here, I believe. It's no sin. Open the bundle,\nJoe.' \n\nBut the gallantry of her friends would not allow of this;\nand the man in faded black, mounting the breach first,\nproduced his plunder. It was not extensive. A seal or two,\na pencil-case, a pair of sleeve-buttons, and a brooch of no\ngreat value, were all. They were severally examined and\nappraised by old Joe, who chalked the sums he was disposed\nto give for each, upon the wall, and added them up into a\ntotal when he found there was nothing more to come.\n\n`That's your account,' said Joe,' and I wouldn't give\nanother sixpence, if I was to be boiled for not doing it.\nWho's next.' \n\nMrs Dilber was next. Sheets and towels, a little wearing\napparel, two old-fashioned silver teaspoons, a pair of\nsugar-tongs, and a few boots. Her account was stated on the wall\nin the same manner.\n\n`I always give too much to ladies. It's a weakness of mine,\nand that's the way I ruin myself,' said old Joe. `That's\nyour account. If you asked me for another penny, and made\nit an open question, I'd repent of being so liberal and knock\noff half-a-crown.' \n\n`And now undo my bundle, Joe,' said the first woman.\n\nJoe went down on his knees for the greater convenience\nof opening it, and having unfastened a great many knots,\ndragged out a large and heavy roll of some dark stuff.\n\n`What do you call this.' said Joe. `Bed-curtains.' \n\n`Ah.' returned the woman, laughing and leaning forward\non her crossed arms. `Bed-curtains.' \n\n`You don't mean to say you took them down, rings and\nall, with him lying there.' said Joe.\n\n`Yes I do,' replied the woman. `Why not.' \n\n`You were born to make your fortune,' said Joe,' and\nyou'll certainly do it.' \n\n`I certainly shan't hold my hand, when I can get anything\nin it by reaching it out, for the sake of such a man as he\nwas, I promise you, Joe,' returned the woman coolly. `Don't\ndrop that oil upon the blankets, now.' \n\n`His blankets.' asked Joe.\n\n`Whose else's do you think.' replied the woman. `He\nisn't likely to take cold without them, I dare say.' \n\n`I hope he didn't die of any thing catching. Eh.' said\nold Joe, stopping in his work, and looking up.\n\n`Don't you be afraid of that,' returned the woman. `I\nan't so fond of his company that I'd loiter about him for\nsuch things, if he did. Ah. you may look through that\nshirt till your eyes ache; but you won't find a hole in it, nor\na threadbare place. It's the best he had, and a fine one too.\nThey'd have wasted it, if it hadn't been for me.' \n\n`What do you call wasting of it.' asked old Joe.\n\n`Putting it on him to be buried in, to be sure,' replied\nthe woman with a laugh. `Somebody was fool enough to\ndo it, but I took it off again. If calico an't good enough for\nsuch a purpose, it isn't good enough for anything. It's quite\nas becoming to the body. He can't look uglier than he did\nin that one.' \n\nScrooge listened to this dialogue in horror. As they sat\ngrouped about their spoil, in the scanty light afforded by\nthe old man's lamp, he viewed them with a detestation and\ndisgust, which could hardly have been greater, though the\ndemons, marketing the corpse itself.\n\n`Ha, ha.' laughed the same woman, when old Joe,\nproducing a flannel bag with money in it, told out their\nseveral gains upon the ground. `This is the end of it, you\nsee. He frightened every one away from him when he was \nalive, to profit us when he was dead. Ha, ha, ha.' \n\n`Spirit.' said Scrooge, shuddering from head to foot. `I\nsee, I see. The case of this unhappy man might be my own.\nMy life tends that way, now. Merciful Heaven, what is\nthis.' \n\nHe recoiled in terror, for the scene had changed, and now\nhe almost touched a bed: a bare, uncurtained bed: on which,\nbeneath a ragged sheet, there lay a something covered up,\nwhich, though it was dumb, announced itself in awful\nlanguage.\n\nThe room was very dark, too dark to be observed with\nany accuracy, though Scrooge glanced round it in obedience\nto a secret impulse, anxious to know what kind of room it\nwas. A pale light, rising in the outer air, fell straight upon\nthe bed; and on it, plundered and bereft, unwatched, unwept,\nuncared for, was the body of this man.\n\nScrooge glanced towards the Phantom. Its steady hand\nwas pointed to the head. The cover was so carelessly adjusted\nthat the slightest raising of it, the motion of a finger upon\nScrooge's part, would have disclosed the face. He thought\nof it, felt how easy it would be to do, and longed to do it;\nbut had no more power to withdraw the veil than to dismiss\nthe spectre at his side.\n\nOh cold, cold, rigid, dreadful Death, set up thine altar\nhere, and dress it with such terrors as thou hast at thy\ncommand: for this is thy dominion. But of the loved,\nrevered, and honoured head, thou canst not turn one hair\nto thy dread purposes, or make one feature odious. It is\nnot that the hand is heavy and will fall down when released;\nit is not that the heart and pulse are still; but that the\nhand was open, generous, and true; the heart brave, warm,\nand tender; and the pulse a man's. Strike, Shadow, strike.\nAnd see his good deeds springing from the wound, to sow\nthe world with life immortal.\n\nNo voice pronounced these words in Scrooge's ears, and\nyet he heard them when he looked upon the bed. He\nthought, if this man could be raised up now, what would be\nhis foremost thoughts. Avarice, hard-dealing, griping cares.\nThey have brought him to a rich end, truly.\n\nHe lay, in the dark empty house, with not a man, a\nwoman, or a child, to say that he was kind to me in this\nor that, and for the memory of one kind word I will be\nkind to him. A cat was tearing at the door, and there was\na sound of gnawing rats beneath the hearth-stone. What\nthey wanted in the room of death, and why they were so\nrestless and disturbed, Scrooge did not dare to think.\n\n`Spirit.' he said,' this is a fearful place. In leaving it,\nI shall not leave its lesson, trust me. Let us go.' \n\nStill the Ghost pointed with an unmoved finger to the\nhead.\n\n`I understand you,' Scrooge returned,' and I would do\nit, if I could. But I have not the power, Spirit. I have\nnot the power.' \n\nAgain it seemed to look upon him.\n\n`If there is any person in the town, who feels emotion\ncaused by this man's death,' said Scrooge quite agonised,\n`show that person to me, Spirit, I beseech you.' \n\nThe Phantom spread its dark robe before him for a\nmoment, like a wing; and withdrawing it, revealed a room\nby daylight, where a mother and her children were.\n\nShe was expecting some one, and with anxious eagerness;\nfor she walked up and down the room; started at every\nsound; looked out from the window; glanced at the clock;\ntried, but in vain, to work with her needle; and could hardly\nbear the voices of the children in their play.\n\nAt length the long-expected knock was heard. She hurried\nto the door, and met her husband; a man whose face was \ncareworn and depressed, though he was young. There was\na remarkable expression in it now; a kind of serious delight\nof which he felt ashamed, and which he struggled to repress.\n\nHe sat down to the dinner that had been boarding for\nhim by the fire; and when she asked him faintly what news\n(which was not until after a long silence), he appeared\nembarrassed how to answer.\n\n`Is it good.' she said, `or bad?' -- to help him.\n\n`Bad,' he answered.\n\n`We are quite ruined.' \n\n`No. There is hope yet, Caroline.' \n\n`If he relents,' she said, amazed, `there is. Nothing is\npast hope, if such a miracle has happened.' \n\n`He is past relenting,' said her husband. `He is dead.' \n\nShe was a mild and patient creature if her face spoke\ntruth; but she was thankful in her soul to hear it, and she\nsaid so, with clasped hands. She prayed forgiveness the next\nmoment, and was sorry; but the first was the emotion of\nher heart.\n\n`What the half-drunken woman whom I told you of last\nnight, said to me, when I tried to see him and obtain a\nweek's delay; and what I thought was a mere excuse to avoid\nme; turns out to have been quite true. He was not only\nvery ill, but dying, then.' \n\n`To whom will our debt be transferred.' \n\n`I don't know. But before that time we shall be ready\nwith the money; and even though we were not, it would be\na bad fortune indeed to find so merciless a creditor in his\nsuccessor. We may sleep to-night with light hearts, Caroline.' \n\nYes. Soften it as they would, their hearts were lighter.\nThe children's faces, hushed and clustered round to hear what\nthey so little understood, were brighter; and it was a happier\nhouse for this man's death. The only emotion that the\nGhost could show him, caused by the event, was one of\npleasure.\n\n`Let me see some tenderness connected with a death,' said\nScrooge;' or that dark chamber, Spirit, which we left just\nnow, will be for ever present to me.' \n\nThe Ghost conducted him through several streets familiar\nto his feet; and as they went along, Scrooge looked here and\nthere to find himself, but nowhere was he to be seen. They\nentered poor Bob Cratchit's house; the dwelling he had\nvisited before; and found the mother and the children seated\nround the fire.\n\nQuiet. Very quiet. The noisy little Cratchits were as\nstill as statues in one corner, and sat looking up at Peter,\nwho had a book before him. The mother and her daughters\nwere engaged in sewing. But surely they were very quiet.\n\n`And he took a child, and set him in the midst of\nthem.'\n\nWhere had Scrooge heard those words. He had not\ndreamed them. The boy must have read them out, as he\nand the Spirit crossed the threshold. Why did he not\ngo on.\n\nThe mother laid her work upon the table, and put her\nhand up to her face.\n\n`The colour hurts my eyes,' she said.\n\nThe colour. Ah, poor Tiny Tim.\n\n`They're better now again,' said Cratchit's wife. `It\nmakes them weak by candle-light; and I wouldn't show weak\neyes to your father when he comes home, for the world. It\nmust be near his time.' \n\n`Past it rather,' Peter answered, shutting up his book.\n`But I think he has walked a little slower than he used,\nthese few last evenings, mother.' \n\nThey were very quiet again. At last she said, and in a\nsteady, cheerful voice, that only faltered once:\n\n`I have known him walk with -- I have known him walk\nwith Tiny Tim upon his shoulder, very fast indeed.' \n\n`And so have I,' cried Peter. `Often.' \n\n`And so have I,' exclaimed another. So had all.\n\n`But he was very light to carry,' she resumed, intent upon\nher work,' and his father loved him so, that it was no\ntrouble: no trouble. And there is your father at the door.' \n\nShe hurried out to meet him; and little Bob in his comforter\n-- he had need of it, poor fellow -- came in. His tea\nwas ready for him on the hob, and they all tried who should\nhelp him to it most. Then the two young Cratchits got\nupon his knees and laid, each child a little cheek, against\nhis face, as if they said,' Don't mind it, father. Don't be\ngrieved.' \n\nBob was very cheerful with them, and spoke pleasantly to\nall the family. He looked at the work upon the table, and\npraised the industry and speed of Mrs Cratchit and the girls.\nThey would be done long before Sunday, he said.\n\n`Sunday. You went to-day, then, Robert.' said his\nwife.\n\n`Yes, my dear,' returned Bob. `I wish you could have\ngone. It would have done you good to see how green a\nplace it is. But you'll see it often. I promised him that I\nwould walk there on a Sunday. My little, little child.' \ncried Bob. `My little child.' \n\nHe broke down all at once. He couldn't help it. If he\ncould have helped it, he and his child would have been farther\napart perhaps than they were.\n\nHe left the room, and went up-stairs into the room above,\nwhich was lighted cheerfully, and hung with Christmas.\nThere was a chair set close beside the child, and there were\nsigns of some one having been there, lately. Poor Bob sat\ndown in it, and when he had thought a little and composed\nhimself, he kissed the little face. He was reconciled to what\nhad happened, and went down again quite happy.\n\nThey drew about the fire, and talked; the girls and mother\nworking still. Bob told them of the extraordinary kindness\nof Mr Scrooge's nephew, whom he had scarcely seen but\nonce, and who, meeting him in the street that day, and seeing\nthat he looked a little -' just a little down you know,' said\nBob, inquired what had happened to distress him. `On\nwhich,' said Bob,' for he is the pleasantest-spoken gentleman\nyou ever heard, I told him. `I am heartily sorry for it, Mr\nCratchit,' he said,' and heartily sorry for your good wife.' \nBy the bye, how he ever knew that, I don't know.' \n\n`Knew what, my dear.' \n\n`Why, that you were a good wife,' replied Bob.\n\n`Everybody knows that.' said Peter.\n\n`Very well observed, my boy.' cried Bob. `I hope they\ndo. `Heartily sorry,' he said,' for your good wife. If I\ncan be of service to you in any way,' he said, giving me\nhis card,' that's where I live. Pray come to me.'  Now, it\nwasn't,' cried Bob,' for the sake of anything he might be\nable to do for us, so much as for his kind way, that this was\nquite delightful. It really seemed as if he had known our\nTiny Tim, and felt with us.' \n\n`I'm sure he's a good soul.' said Mrs Cratchit.\n\n`You would be surer of it, my dear,' returned Bob,' if\nyou saw and spoke to him. I shouldn't be at all surprised\n- mark what I say. -- if he got Peter a better situation.' \n\n`Only hear that, Peter,' said Mrs Cratchit.\n\n`And then,' cried one of the girls,' Peter will be keeping\ncompany with some one, and setting up for himself.' \n\n`Get along with you.' retorted Peter, grinning.\n\n`It's just as likely as not,' said Bob,' one of these days;\nthough there's plenty of time for that, my dear. But however\nand when ever we part from one another, I am sure we\nshall none of us forget poor Tiny Tim -- shall we -- or this\nfirst parting that there was among us.' \n\n`Never, father.' cried they all.\n\n`And I know,' said Bob,' I know, my dears, that when\nwe recollect how patient and how mild he was; although he\nwas a little, little child; we shall not quarrel easily among\nourselves, and forget poor Tiny Tim in doing it.' \n\n`No, never, father.' they all cried again.\n\n`I am very happy,' said little Bob,' I am very happy.' \n\nMrs Cratchit kissed him, his daughters kissed him, the\ntwo young Cratchits kissed him, and Peter and himself shook\nhands. Spirit of Tiny Tim, thy childish essence was from\nGod.\n\n`Spectre,' said Scrooge,' something informs me that our\nparting moment is at hand. I know it, but I know not\nhow. Tell me what man that was whom we saw lying dead.' \n\nThe Ghost of Christmas Yet To Come conveyed him, as\nbefore -- though at a different time, he thought: indeed, there\nseemed no order in these latter visions, save that they were\nin the Future -- into the resorts of business men, but showed\nhim not himself. Indeed, the Spirit did not stay for anything,\nbut went straight on, as to the end just now desired,\nuntil besought by Scrooge to tarry for a moment.\n\n`This courts,' said Scrooge,' through which we hurry now,\nis where my place of occupation is, and has been for a length\nof time. I see the house. Let me behold what I shall be,\nin days to come.' \n\nThe Spirit stopped; the hand was pointed elsewhere.\n\n`The house is yonder,' Scrooge exclaimed. `Why do you\npoint away.' \n\nThe inexorable finger underwent no change.\n\nScrooge hastened to the window of his office, and looked\nin. It was an office still, but not his. The furniture was\nnot the same, and the figure in the chair was not himself.\nThe Phantom pointed as before.\n\nHe joined it once again, and wondering why and whither\nhe had gone, accompanied it until they reached an iron gate.\nHe paused to look round before entering.\n\nA churchyard. Here, then, the wretched man whose name\nhe had now to learn, lay underneath the ground. It was a\nworthy place. Walled in by houses; overrun by grass and\nweeds, the growth of vegetation's death, not life; choked up\nwith too much burying; fat with repleted appetite. A\nworthy place.\n\nThe Spirit stood among the graves, and pointed down to\nOne. He advanced towards it trembling. The Phantom was\nexactly as it had been, but he dreaded that he saw new\nmeaning in its solemn shape.\n\n`Before I draw nearer to that stone to which you point,' \nsaid Scrooge, `answer me one question. Are these the\nshadows of the things that Will be, or are they shadows of\nthings that May be, only.' \n\nStill the Ghost pointed downward to the grave by which\nit stood.\n\n`Men's courses will foreshadow certain ends, to which, if\npersevered in, they must lead,' said Scrooge. `But if the\ncourses be departed from, the ends will change. Say it is\nthus with what you show me.' \n\nThe Spirit was immovable as ever.\n\nScrooge crept towards it, trembling as he went; and\nfollowing the finger, read upon the stone of the neglected\ngrave his own name, Ebenezer Scrooge.\n\n`Am I that man who lay upon the bed.' he cried, upon\nhis knees.\n\nThe finger pointed from the grave to him, and back again.\n\n`No, Spirit. Oh no, no.' \n\nThe finger still was there.\n\n`Spirit.' he cried, tight clutching at its robe,' hear me.\nI am not the man I was. I will not be the man I must\nhave been but for this intercourse. Why show me this, if I\nam past all hope.' \n\nFor the first time the hand appeared to shake. \n\n`Good Spirit,' he pursued, as down upon the ground he\nfell before it:' Your nature intercedes for me, and pities\nme. Assure me that I yet may change these shadows you\nhave shown me, by an altered life.' \n\nThe kind hand trembled.\n\n`I will honour Christmas in my heart, and try to keep it\nall the year. I will live in the Past, the Present, and the\nFuture. The Spirits of all Three shall strive within me. I\nwill not shut out the lessons that they teach. Oh, tell me I\nmay sponge away the writing on this stone.' \n\nIn his agony, he caught the spectral hand. It sought to\nfree itself, but he was strong in his entreaty, and detained it.\nThe Spirit, stronger yet, repulsed him.\n\nHolding up his hands in a last prayer to have his fate aye\nreversed, he saw an alteration in the Phantom's hood and dress.\nIt shrunk, collapsed, and dwindled down into a bedpost.\n\n\nStave 5:  The End of It\n\nYes! and the bedpost was his own. The bed was his own,\nthe room was his own. Best and happiest of all, the Time\nbefore him was his own, to make amends in!\n\n`I will live in the Past, the Present, and the Future.' \nScrooge repeated, as he scrambled out of bed. `The Spirits\nof all Three shall strive within me. Oh Jacob Marley.\nHeaven, and the Christmas Time be praised for this. I say\nit on my knees, old Jacob, on my knees.' \n\nHe was so fluttered and so glowing with his good intentions,\nthat his broken voice would scarcely answer to his\ncall. He had been sobbing violently in his conflict with the\nSpirit, and his face was wet with tears.\n\n`They are not torn down.' cried Scrooge, folding one of\nhis bed-curtains in his arms,' they are not torn down, rings\nand all. They are here -- I am here -- the shadows of the\nthings that would have been, may be dispelled. They will\nbe. I know they will.' \n\nHis hands were busy with his garments all this time;\nturning them inside out, putting them on upside down,\ntearing them, mislaying them, making them parties to every\nkind of extravagance.\n\n`I don't know what to do.' cried Scrooge, laughing and\ncrying in the same breath; and making a perfect Laocoon of\nhimself with his stockings. `I am as light as a feather, I\nam as happy as an angel, I am as merry as a schoolboy. I\nam as giddy as a drunken man. A merry Christmas to\neverybody. A happy New Year to all the world. Hallo\nhere. Whoop. Hallo.' \n\nHe had frisked into the sitting-room, and was now standing\nthere: perfectly winded.\n\n`There's the saucepan that the gruel was in.' cried\nScrooge, starting off again, and going round the fireplace.\n`There's the door, by which the Ghost of Jacob Marley\nentered. There's the corner where the Ghost of Christmas\nPresent, sat. There's the window where I saw the wandering\nSpirits. It's all right, it's all true, it all happened.\nHa ha ha.' \n\nReally, for a man who had been out of practice for so\nmany years, it was a splendid laugh, a most illustrious laugh.\nThe father of a long, long line of brilliant laughs.\n\n`I don't know what day of the month it is.' said\nScrooge. `I don't know how long I've been among the\nSpirits. I don't know anything. I'm quite a baby. Never\nmind. I don't care. I'd rather be a baby. Hallo. Whoop.\nHallo here.' \n\nHe was checked in his transports by the churches ringing\nout the lustiest peals he had ever heard. Clash, clang,\nhammer; ding, dong, bell. Bell, dong, ding; hammer, clang,\nclash. Oh, glorious, glorious.\n\nRunning to the window, he opened it, and put out his\nhead. No fog, no mist; clear, bright, jovial, stirring, cold;\ncold, piping for the blood to dance to; Golden sunlight;\nHeavenly sky; sweet fresh air; merry bells. Oh, glorious.\nGlorious.\n\n`What's to-day.' cried Scrooge, calling downward to a\nboy in Sunday clothes, who perhaps had loitered in to look\nabout him.\n\n`Eh.' returned the boy, with all his might of wonder.\n\n`What's to-day, my fine fellow.' said Scrooge.\n\n`To-day.' replied the boy. `Why, Christmas Day.' \n\n`It's Christmas Day.' said Scrooge to himself. `I\nhaven't missed it. The Spirits have done it all in one night.\nThey can do anything they like. Of course they can. Of\ncourse they can. Hallo, my fine fellow.' \n\n`Hallo.' returned the boy.\n\n`Do you know the Poulterer's, in the next street but one,\nat the corner.' Scrooge inquired.\n\n`I should hope I did,' replied the lad.\n\n`An intelligent boy.' said Scrooge. `A remarkable boy.\nDo you know whether they've sold the prize Turkey that\nwas hanging up there -- Not the little prize Turkey: the\nbig one.' \n\n`What, the one as big as me.' returned the boy.\n\n`What a delightful boy.' said Scrooge. `It's a pleasure\nto talk to him. Yes, my buck.' \n\n`It's hanging there now,' replied the boy.\n\n`Is it.' said Scrooge. `Go and buy it.' \n\n`Walk-er.' exclaimed the boy.\n\n`No, no,' said Scrooge, `I am in earnest. Go and buy\nit, and tell them to bring it here, that I may give them the\ndirection where to take it. Come back with the man, and\nI'll give you a shilling. Come back with him in less than\nfive minutes and I'll give you half-a-crown.' \n\nThe boy was off like a shot. He must have had a steady\nhand at a trigger who could have got a shot off half so fast.\n\n`I'll send it to Bon Cratchit's.' whispered Scrooge,\nrubbing his hands, and splitting with a laugh. `He shan't\nknow who sends it. It's twice the size of Tiny Tim. Joe\nMiller never made such a joke as sending it to Bob's\nwill be.' \n\nThe hand in which he wrote the address was not a steady\none, but write it he did, somehow, and went down-stairs to\nopen the street door, ready for the coming of the poulterer's\nman. As he stood there, waiting his arrival, the knocker\ncaught his eye.\n\n`I shall love it, as long as I live.' cried Scrooge, patting\nit with his hand. `I scarcely ever looked at it before.\nWhat an honest expression it has in its face. It's a\nwonderful knocker. -- Here's the Turkey. Hallo. Whoop.\nHow are you. Merry Christmas.' \n\nIt was a Turkey. He never could have stood upon his\nlegs, that bird. He would have snapped them short off in a\nminute, like sticks of sealing-wax.\n\n`Why, it's impossible to carry that to Camden Town,' \nsaid Scrooge. `You must have a cab.' \n\nThe chuckle with which he said this, and the chuckle with\nwhich he paid for the Turkey, and the chuckle with which\nhe paid for the cab, and the chuckle with which he recompensed\nthe boy, were only to be exceeded by the chuckle\nwith which he sat down breathless in his chair again, and\nchuckled till he cried.\n\nShaving was not an easy task, for his hand continued to\nshake very much; and shaving requires attention, even when\nyou don't dance while you are at it. But if he had cut the\nend of his nose off, he would have put a piece of\nsticking-plaster over it, and been quite satisfied.\n\nHe dressed himself all in his best, and at last got out\ninto the streets. The people were by this time pouring forth, \nas he had seen them with the Ghost of Christmas Present;\nand walking with his hands behind him, Scrooge regarded\nevery one with a delighted smile. He looked so irresistibly\npleasant, in a word, that three or four good-humoured fellows\nsaid,' Good morning, sir. A merry Christmas to you.' \nAnd Scrooge said often afterwards, that of all the blithe\nsounds he had ever heard, those were the blithest in his ears.\n\nHe had not gone far, when coming on towards him he\nbeheld the portly gentleman, who had walked into his\ncounting-house the day before, and said,' Scrooge and Marley's, I\nbelieve.'  It sent a pang across his heart to think how this\nold gentleman would look upon him when they met; but he\nknew what path lay straight before him, and he took it.\n\n`My dear sir,' said Scrooge, quickening his pace, and\ntaking the old gentleman by both his hands. `How do you\ndo. I hope you succeeded yesterday. It was very kind of\nyou. A merry Christmas to you, sir.' \n\n`Mr Scrooge.' \n\n`Yes,' said Scrooge. `That is my name, and I fear it\nmay not be pleasant to you. Allow me to ask your pardon.\nAnd will you have the goodness' -- here Scrooge whispered in\nhis ear.\n\n`Lord bless me.' cried the gentleman, as if his breath\nwere taken away. `My dear Mr Scrooge, are you serious.' \n\n`If you please,' said Scrooge. `Not a farthing less. A\ngreat many back-payments are included in it, I assure you.\nWill you do me that favour.' \n\n`My dear sir,' said the other, shaking hands with him.\n`I don't know what to say to such munificence.'\n\n`Don't say anything please,' retorted Scrooge. `Come\nand see me. Will you come and see me.' \n\n`I will.' cried the old gentleman. And it was clear he\nmeant to do it.\n\n`Thank you,' said Scrooge. `I am much obliged to you.\nI thank you fifty times. Bless you.' \n\nHe went to church, and walked about the streets, and\nwatched the people hurrying to and fro, and patted children\non the head, and questioned beggars, and looked down into\nthe kitchens of houses, and up to the windows, and found\nthat everything could yield him pleasure. He had never\ndreamed that any walk -- that anything -- could give him so\nmuch happiness. In the afternoon he turned his steps\ntowards his nephew's house.\n\nHe passed the door a dozen times, before he had the\ncourage to go up and knock. But he made a dash, and\ndid it:\n\n`Is your master at home, my dear.' said Scrooge to the\ngirl. Nice girl. Very.\n\n`Yes, sir.' \n\n`Where is he, my love.' said Scrooge.\n\n`He's in the dining-room, sir, along with mistress. I'll\nshow you up-stairs, if you please.' \n\n`Thank you. He knows me,' said Scrooge, with his hand\nalready on the dining-room lock. `I'll go in here, my dear.' \n\nHe turned it gently, and sidled his face in, round the door.\nThey were looking at the table (which was spread out in\ngreat array); for these young housekeepers are always nervous\non such points, and like to see that everything is right.\n\n`Fred.' said Scrooge.\n\nDear heart alive, how his niece by marriage started.\nScrooge had forgotten, for the moment, about her sitting\nin the corner with the footstool, or he wouldn't have done\nit, on any account.\n\n`Why bless my soul.' cried Fred,' who's that.' \n\n`It's I. Your uncle Scrooge. I have come to dinner.\nWill you let me in, Fred.' \n\nLet him in. It is a mercy he didn't shake his arm off.\nHe was at home in five minutes. Nothing could be heartier.\nHis niece looked just the same. So did Topper when he \ncame. So did the plump sister when she came. So did\nevery one when they came. Wonderful party, wonderful\ngames, wonderful unanimity, wonderful happiness.\n\nBut he was early at the office next morning. Oh, he was\nearly there. If he could only be there first, and catch Bob\nCratchit coming late. That was the thing he had set his\nheart upon.\n\nAnd he did it; yes, he did. The clock struck nine. No\nBob. A quarter past. No Bob. He was full eighteen\nminutes and a half behind his time. Scrooge sat with his\ndoor wide open, that he might see him come into the Tank.\n\nHis hat was off, before he opened the door; his comforter\ntoo. He was on his stool in a jiffy; driving away with his\npen, as if he were trying to overtake nine o'clock.\n\n`Hallo.' growled Scrooge, in his accustomed voice, as\nnear as he could feign it. `What do you mean by coming\nhere at this time of day.' \n\n`I am very sorry, sir,' said Bob. `I am behind my time.' \n\n`You are.' repeated Scrooge. `Yes. I think you are.\nStep this way, sir, if you please.' \n\n`It's only once a year, sir,' pleaded Bob, appearing from\nthe Tank. `It shall not be repeated. I was making rather\nmerry yesterday, sir.' \n\n`Now, I'll tell you what, my friend,' said Scrooge,' I\nam not going to stand this sort of thing any longer. And\ntherefore,' he continued, leaping from his stool, and giving\nBob such a dig in the waistcoat that he staggered back into\nthe Tank again;' and therefore I am about to raise your\nsalary.' \n\nBob trembled, and got a little nearer to the ruler. He\nhad a momentary idea of knocking Scrooge down with it,\nholding him, and calling to the people in the court for help\nand a strait-waistcoat.\n\n`A merry Christmas, Bob,' said Scrooge, with an earnestness\nthat could not be mistaken, as he clapped him on the\nback. `A merrier Christmas, Bob, my good fellow, than I\nhave given you for many a year. I'll raise your salary, and\nendeavour to assist your struggling family, and we will discuss\nyour affairs this very afternoon, over a Christmas bowl of\nsmoking bishop, Bob. Make up the fires, and buy another\ncoal-scuttle before you dot another i, Bob Cratchit.' \n\nScrooge was better than his word. He did it all, and\ninfinitely more; and to Tiny Tim, who did not die, he was\na second father. He became as good a friend, as good a\nmaster, and as good a man, as the good old city knew, or\nany other good old city, town, or borough, in the good old\nworld. Some people laughed to see the alteration in him,\nbut he let them laugh, and little heeded them; for he was\nwise enough to know that nothing ever happened on this\nglobe, for good, at which some people did not have their fill\nof laughter in the outset; and knowing that such as these\nwould be blind anyway, he thought it quite as well that they\nshould wrinkle up their eyes in grins, as have the malady in\nless attractive forms. His own heart laughed: and that was\nquite enough for him.\n\nHe had no further intercourse with Spirits, but lived upon\nthe Total Abstinence Principle, ever afterwards; and it was\nalways said of him, that he knew how to keep Christmas\nwell, if any man alive possessed the knowledge. May that\nbe truly said of us, and all of us! And so, as Tiny Tim\nobserved, God bless Us, Every One!\n\n\n\nEnd of The Project Gutenberg Etext of A Christmas Carol.\n\nProject Gutenberg Etext of David Copperfield, by Charles Dickens\n#14 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nDavid Copperfield\n\nby Charles Dickens\n\nDecember, 1996  [Etext #766]\n\n\nProject Gutenberg Etext of David Copperfield, by Charles Dickens\n*****This file should be named cprfd10.txt or cprfd10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, cprfd11.txt.\nVERSIONS based on separate sources get new LETTER, cprfd10a.txt.\n\n\nThis etext was created by Jo Churcher, Scarborough, Ontario\n(jchurche@io.org)\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nDAVID COPPERFIELD\n\n\nby CHARLES DICKENS\n\n\n\nAFFECTIONATELY INSCRIBED TO\nTHE HON.  Mr. AND Mrs. RICHARD WATSON,\nOF ROCKINGHAM, NORTHAMPTONSHIRE.\n\n\n\nCONTENTS\n\n\nI.      I Am Born\nII.     I Observe\nIII.    I Have a Change\nIV.     I Fall into Disgrace\nV.      I Am Sent Away\nVI.     I Enlarge My Circle of Acquaintance\nVII.    My 'First Half' at Salem House\nVIII.   My Holidays.  Especially One Happy Afternoon\nIX.     I Have a Memorable Birthday\nX.      I Become Neglected, and Am Provided For\nXI.     I Begin Life on My Own Account, and Don't Like It\nXII.    Liking Life on My Own Account No Better, I Form a Great Resolution\nXIII.   The Sequel of My Resolution\nXIV.    My Aunt Makes up Her Mind About Me\nXV.     I Make Another Beginning\nXVI.    I Am a New Boy in More Senses Than One\nXVII.   Somebody Turns Up\nXVIII.  A Retrospect\nXIX.    I Look About Me and Make a Discovery\nXX.     Steerforth's Home\nXXI.    Little Em'ly\nXXII.   Some Old Scenes, and Some New People\nXXIII.  I Corroborate Mr. Dick, and Choose a Profession\nXXIV.   My First Dissipation\nXXV.    Good and Bad Angels\nXXVI.   I Fall into Captivity\nXXVII.  Tommy Traddles\nXXVIII. Mr. Micawber's Gauntlet\nXXIX.   I Visit Steerforth at His Home, Again\nXXX.    A Loss\nXXXI.   A Greater Loss\nXXXII.  The Beginning of a Long Journey\nXXXIII. Blissful\nXXXIV.  My Aunt Astonishes Me\nXXXV.   Depression\nXXXVI.  Enthusiasm\nXXXVII.  A Little Cold Water\nXXXVIII. A Dissolution of Partnership\nXXXIX.   Wickfield and Heep\nXL.      The Wanderer\nXLI.     Dora's Aunts\nXLII.    Mischief\nXLIII.   Another Retrospect\nXLIV.    Our Housekeeping\nXLV.     Mr. Dick Fulfils My Aunt's Predictions\nXLVI.    Intelligence\nXLVII.   Martha\nXLVIII.  Domestic\nXLIX.    I Am Involved in Mystery\nL.       Mr. Peggotty's Dream Comes True\nLI.      The Beginning of a Longer Journey\nLII.     I Assist at an Explosion\nLIII.    Another Retrospect\nLIV.     Mr. Micawber's Transactions\nLV.      Tempest\nLVI.     The New Wound, and the Old\nLVII.    The Emigrants\nLVIII.   Absence\nLIX.     Return\nLX.      Agnes\nLXI.     I Am Shown Two Interesting Penitents\nLXII.    A Light Shines on My Way\nLXIII.   A Visitor\nLXIV.    A Last Retrospect\n\n\n\n\nPREFACE TO 1850 EDITION\n\n\nI do not find it easy to get sufficiently far away from this Book,\nin the first sensations of having finished it, to refer to it with\nthe composure which this formal heading would seem to require.  My\ninterest in it, is so recent and strong; and my mind is so divided\nbetween pleasure and regret - pleasure in the achievement of a long\ndesign, regret in the separation from many companions - that I am\nin danger of wearying the reader whom I love, with personal\nconfidences, and private emotions.\n\nBesides which, all that I could say of the Story, to any purpose,\nI have endeavoured to say in it.\n\nIt would concern the reader little, perhaps, to know, how\nsorrowfully the pen is laid down at the close of a two-years'\nimaginative task; or how an Author feels as if he were dismissing\nsome portion of himself into the shadowy world, when a crowd of the\ncreatures of his brain are going from him for ever.  Yet, I have\nnothing else to tell; unless, indeed, I were to confess (which\nmight be of less moment still) that no one can ever believe this\nNarrative, in the reading, more than I have believed it in the\nwriting.\n\nInstead of looking back, therefore, I will look forward.  I cannot\nclose this Volume more agreeably to myself, than with a hopeful\nglance towards the time when I shall again put forth my two green\nleaves once a month, and with a faithful remembrance of the genial\nsun and showers that have fallen on these leaves of David\nCopperfield, and made me happy.\n     London, October, 1850.\n\n\nPREFACE TO\nTHE CHARLES DICKENS EDITION\n\n\nI REMARKED in the original Preface to this Book, that I did not\nfind it easy to get sufficiently far away from it, in the first\nsensations of having finished it, to refer to it with the composure\nwhich this formal heading would seem to require.  My interest in it\nwas so recent and strong, and my mind was so divided between\npleasure and regret - pleasure in the achievement of a long design,\nregret in the separation from many companions - that I was in\ndanger of wearying the reader with personal confidences and private\nemotions.\n\nBesides which, all that I could have said of the Story to any\npurpose, I had endeavoured to say in it.\n\nIt would concern the reader little, perhaps, to know how\nsorrowfully the pen is laid down at the close of a two-years'\nimaginative task; or how an Author feels as if he were dismissing\nsome portion of himself into the shadowy world, when a crowd of the\ncreatures of his brain are going from him for ever.  Yet, I had\nnothing else to tell; unless, indeed, I were to confess (which\nmight be of less moment still), that no one can ever believe this\nNarrative, in the reading, more than I believed it in the writing.\n\nSo true are these avowals at the present day, that I can now only\ntake the reader into one confidence more.  Of all my books, I like\nthis the best.  It will be easily believed that I am a fond parent\nto every child of my fancy, and that no one can ever love that\nfamily as dearly as I love them.  But, like many fond parents, I\nhave in my heart of hearts a favourite child.  And his name is\nDAVID COPPERFIELD.\n     1869\n\n\n\n\nTHE PERSONAL HISTORY AND\nEXPERIENCE OF\nDAVID COPPERFIELD THE YOUNGER\n\n\n\nCHAPTER 1\nI AM BORN\n\n\n\nWhether I shall turn out to be the hero of my own life, or whether\nthat station will be held by anybody else, these pages must show. \nTo begin my life with the beginning of my life, I record that I was\nborn (as I have been informed and believe) on a Friday, at twelve\no'clock at night.  It was remarked that the clock began to strike,\nand I began to cry, simultaneously.\n\nIn consideration of the day and hour of my birth, it was declared\nby the nurse, and by some sage women in the neighbourhood who had\ntaken a lively interest in me several months before there was any\npossibility of our becoming personally acquainted, first, that I\nwas destined to be unlucky in life; and secondly, that I was\nprivileged to see ghosts and spirits; both these gifts inevitably\nattaching, as they believed, to all unlucky infants of either\ngender, born towards the small hours on a Friday night.\n\nI need say nothing here, on the first head, because nothing can\nshow better than my history whether that prediction was verified or\nfalsified by the result.  On the second branch of the question, I\nwill only remark, that unless I ran through that part of my\ninheritance while I was still a baby, I have not come into it yet. \nBut I do not at all complain of having been kept out of this\nproperty; and if anybody else should be in the present enjoyment of\nit, he is heartily welcome to keep it.\n\nI was born with a caul, which was advertised for sale, in the\nnewspapers, at the low price of fifteen guineas.  Whether sea-going\npeople were short of money about that time, or were short of faith\nand preferred cork jackets, I don't know; all I know is, that there\nwas but one solitary bidding, and that was from an attorney\nconnected with the bill-broking business, who offered two pounds in\ncash, and the balance in sherry, but declined to be guaranteed from\ndrowning on any higher bargain.  Consequently the advertisement was\nwithdrawn at a dead loss - for as to sherry, my poor dear mother's\nown sherry was in the market then - and ten years afterwards, the\ncaul was put up in a raffle down in our part of the country, to\nfifty members at half-a-crown a head, the winner to spend five\nshillings.  I was present myself, and I remember to have felt quite\nuncomfortable and confused, at a part of myself being disposed of\nin that way.  The caul was won, I recollect, by an old lady with a\nhand-basket, who, very reluctantly, produced from it the stipulated\nfive shillings, all in halfpence, and twopence halfpenny short - as\nit took an immense time and a great waste of arithmetic, to\nendeavour without any effect to prove to her.  It is a fact which\nwill be long remembered as remarkable down there, that she was\nnever drowned, but died triumphantly in bed, at ninety-two.  I have\nunderstood that it was, to the last, her proudest boast, that she\nnever had been on the water in her life, except upon a bridge; and\nthat over her tea (to which she was extremely partial) she, to the\nlast, expressed her indignation at the impiety of mariners and\nothers, who had the presumption to go 'meandering' about the world. \nIt was in vain to represent to her that some conveniences, tea\nperhaps included, resulted from this objectionable practice.  She\nalways returned, with greater emphasis and with an instinctive\nknowledge of the strength of her objection, 'Let us have no\nmeandering.'\n\nNot to meander myself, at present, I will go back to my birth.\n\nI was born at Blunderstone, in Suffolk, or 'there by', as they say\nin Scotland.  I was a posthumous child.  My father's eyes had\nclosed upon the light of this world six months, when mine opened on\nit.  There is something strange to me, even now, in the reflection\nthat he never saw me; and something stranger yet in the shadowy\nremembrance that I have of my first childish associations with his\nwhite grave-stone in the churchyard, and of the indefinable\ncompassion I used to feel for it lying out alone there in the dark\nnight, when our little parlour was warm and bright with fire and\ncandle, and the doors of our house were - almost cruelly, it seemed\nto me sometimes - bolted and locked against it.\n\nAn aunt of my father's, and consequently a great-aunt of mine, of\nwhom I shall have more to relate by and by, was the principal\nmagnate of our family.  Miss Trotwood, or Miss Betsey, as my poor\nmother always called her, when she sufficiently overcame her dread\nof this formidable personage to mention her at all (which was\nseldom), had been married to a husband younger than herself, who\nwas very handsome, except in the sense of the homely adage,\n'handsome is, that handsome does' - for he was strongly suspected\nof having beaten Miss Betsey, and even of having once, on a\ndisputed question of supplies, made some hasty but determined\narrangements to throw her out of a two pair of stairs' window. \nThese evidences of an incompatibility of temper induced Miss Betsey\nto pay him off, and effect a separation by mutual consent.  He went\nto India with his capital, and there, according to a wild legend in\nour family, he was once seen riding on an elephant, in company with\na Baboon; but I think it must have been a Baboo - or a Begum. \nAnyhow, from India tidings of his death reached home, within ten\nyears.  How they affected my aunt, nobody knew; for immediately\nupon the separation, she took her maiden name again, bought a\ncottage in a hamlet on the sea-coast a long way off, established\nherself there as a single woman with one servant, and was\nunderstood to live secluded, ever afterwards, in an inflexible\nretirement.\n\nMy father had once been a favourite of hers, I believe; but she was\nmortally affronted by his marriage, on the ground that my mother\nwas 'a wax doll'.  She had never seen my mother, but she knew her\nto be not yet twenty.  My father and Miss Betsey never met again. \nHe was double my mother's age when he married, and of but a\ndelicate constitution.  He died a year afterwards, and, as I have\nsaid, six months before I came into the world.\n\nThis was the state of matters, on the afternoon of, what I may be\nexcused for calling, that eventful and important Friday.  I can\nmake no claim therefore to have known, at that time, how matters\nstood; or to have any remembrance, founded on the evidence of my\nown senses, of what follows.\n\nMy mother was sitting by the fire, but poorly in health, and very\nlow in spirits, looking at it through her tears, and desponding\nheavily about herself and the fatherless little stranger, who was\nalready welcomed by some grosses of prophetic pins, in a drawer\nupstairs, to a world not at all excited on the subject of his\narrival; my mother, I say, was sitting by the fire, that bright,\nwindy March afternoon, very timid and sad, and very doubtful of\never coming alive out of the trial that was before her, when,\nlifting her eyes as she dried them, to the window opposite, she saw\na strange lady coming up the garden.\n\nMY mother had a sure foreboding at the second glance, that it was\nMiss Betsey.  The setting sun was glowing on the strange lady, over\nthe garden-fence, and she came walking up to the door with a fell\nrigidity of figure and composure of countenance that could have\nbelonged to nobody else.\n\nWhen she reached the house, she gave another proof of her identity. \nMy father had often hinted that she seldom conducted herself like\nany ordinary Christian; and now, instead of ringing the bell, she\ncame and looked in at that identical window, pressing the end of\nher nose against the glass to that extent, that my poor dear mother\nused to say it became perfectly flat and white in a moment.\n\nShe gave my mother such a turn, that I have always been convinced\nI am indebted to Miss Betsey for having been born on a Friday.\n\nMy mother had left her chair in her agitation, and gone behind it\nin the corner.  Miss Betsey, looking round the room, slowly and\ninquiringly, began on the other side, and carried her eyes on, like\na Saracen's Head in a Dutch clock, until they reached my mother. \nThen she made a frown and a gesture to my mother, like one who was\naccustomed to be obeyed, to come and open the door.  My mother\nwent.\n\n'Mrs. David Copperfield, I think,' said Miss Betsey; the emphasis\nreferring, perhaps, to my mother's mourning weeds, and her\ncondition.\n\n'Yes,' said my mother, faintly.\n\n'Miss Trotwood,' said the visitor.  'You have heard of her, I dare\nsay?'\n\nMy mother answered she had had that pleasure.  And she had a\ndisagreeable consciousness of not appearing to imply that it had\nbeen an overpowering pleasure.\n\n'Now you see her,' said Miss Betsey.  My mother bent her head, and\nbegged her to walk in.\n\nThey went into the parlour my mother had come from, the fire in the\nbest room on the other side of the passage not being lighted - not\nhaving been lighted, indeed, since my father's funeral; and when\nthey were both seated, and Miss Betsey said nothing, my mother,\nafter vainly trying to restrain herself, began to cry.\n'Oh tut, tut, tut!' said Miss Betsey, in a hurry.  'Don't do that!\nCome, come!'\n\nMy mother couldn't help it notwithstanding, so she cried until she\nhad had her cry out.\n\n'Take off your cap, child,' said Miss Betsey, 'and let me see you.'\n\nMY mother was too much afraid of her to refuse compliance with this\nodd request, if she had any disposition to do so.  Therefore she\ndid as she was told, and did it with such nervous hands that her\nhair (which was luxuriant and beautiful) fell all about her face.\n\n'Why, bless my heart!' exclaimed Miss Betsey.  'You are a very\nBaby!'\n\nMy mother was, no doubt, unusually youthful in appearance even for\nher years; she hung her head, as if it were her fault, poor thing,\nand said, sobbing, that indeed she was afraid she was but a\nchildish widow, and would be but a childish mother if she lived. \nIn a short pause which ensued, she had a fancy that she felt Miss\nBetsey touch her hair, and that with no ungentle hand; but, looking\nat her, in her timid hope, she found that lady sitting with the\nskirt of her dress tucked up, her hands folded on one knee, and her\nfeet upon the fender, frowning at the fire.\n\n'In the name of Heaven,' said Miss Betsey, suddenly, 'why Rookery?'\n\n'Do you mean the house, ma'am?' asked my mother.\n\n'Why Rookery?' said Miss Betsey.  'Cookery would have been more to\nthe purpose, if you had had any practical ideas of life, either of\nyou.'\n\n'The name was Mr. Copperfield's choice,' returned my mother.  'When\nhe bought the house, he liked to think that there were rooks about\nit.'\n\nThe evening wind made such a disturbance just now, among some tall\nold elm-trees at the bottom of the garden, that neither my mother\nnor Miss Betsey could forbear glancing that way.  As the elms bent\nto one another, like giants who were whispering secrets, and after\na few seconds of such repose, fell into a violent flurry, tossing\ntheir wild arms about, as if their late confidences were really too\nwicked for their peace of mind, some weatherbeaten ragged old\nrooks'-nests, burdening their higher branches, swung like wrecks\nupon a stormy sea.\n\n'Where are the birds?' asked Miss Betsey.\n\n'The -? ' My mother had been thinking of something else.\n\n'The rooks - what has become of them?' asked Miss Betsey.\n\n'There have not been any since we have lived here,' said my mother. \n'We thought - Mr. Copperfield thought - it was quite a large\nrookery; but the nests were very old ones, and the birds have\ndeserted them a long while.'\n\n'David Copperfield all over!' cried Miss Betsey.  'David\nCopperfield from head to foot!  Calls a house a rookery when\nthere's not a rook near it, and takes the birds on trust, because\nhe sees the nests!'\n\n'Mr. Copperfield,' returned my mother, 'is dead, and if you dare to\nspeak unkindly of him to me -'\n\nMy poor dear mother, I suppose, had some momentary intention of\ncommitting an assault and battery upon my aunt, who could easily\nhave settled her with one hand, even if my mother had been in far\nbetter training for such an encounter than she was that evening. \nBut it passed with the action of rising from her chair; and she sat\ndown again very meekly, and fainted.\n\nWhen she came to herself, or when Miss Betsey had restored her,\nwhichever it was, she found the latter standing at the window.  The\ntwilight was by this time shading down into darkness; and dimly as\nthey saw each other, they could not have done that without the aid\nof the fire.\n\n'Well?' said Miss Betsey, coming back to her chair, as if she had\nonly been taking a casual look at the prospect; 'and when do you\nexpect -'\n\n'I am all in a tremble,' faltered my mother.  'I don't know what's\nthe matter.  I shall die, I am sure!'\n\n'No, no, no,' said Miss Betsey.  'Have some tea.'\n\n'Oh dear me, dear me, do you think it will do me any good?' cried\nmy mother in a helpless manner.\n\n'Of course it will,' said Miss Betsey.  'It's nothing but fancy. \nWhat do you call your girl?'\n\n'I don't know that it will be a girl, yet, ma'am,' said my mother\ninnocently.\n\n'Bless the Baby!' exclaimed Miss Betsey, unconsciously quoting the\nsecond sentiment of the pincushion in the drawer upstairs, but\napplying it to my mother instead of me, 'I don't mean that.  I mean\nyour servant-girl.'\n\n'Peggotty,' said my mother.\n\n'Peggotty!' repeated Miss Betsey, with some indignation.  'Do you\nmean to say, child, that any human being has gone into a Christian\nchurch, and got herself named Peggotty?'\n'It's her surname,' said my mother, faintly.  'Mr. Copperfield\ncalled her by it, because her Christian name was the same as mine.'\n\n'Here!  Peggotty!' cried Miss Betsey, opening the parlour door. \n'Tea.  Your mistress is a little unwell.  Don't dawdle.'\n\nHaving issued this mandate with as much potentiality as if she had\nbeen a recognized authority in the house ever since it had been a\nhouse, and having looked out to confront the amazed Peggotty coming\nalong the passage with a candle at the sound of a strange voice,\nMiss Betsey shut the door again, and sat down as before: with her\nfeet on the fender, the skirt of her dress tucked up, and her hands\nfolded on one knee.\n\n'You were speaking about its being a girl,' said Miss Betsey.  'I\nhave no doubt it will be a girl.  I have a presentiment that it\nmust be a girl.  Now child, from the moment of the birth of this\ngirl -'\n\n'Perhaps boy,' my mother took the liberty of putting in.\n\n'I tell you I have a presentiment that it must be a girl,' returned\nMiss Betsey.  'Don't contradict.  From the moment of this girl's\nbirth, child, I intend to be her friend.  I intend to be her\ngodmother, and I beg you'll call her Betsey Trotwood Copperfield. \nThere must be no mistakes in life with THIS Betsey Trotwood.  There\nmust be no trifling with HER affections, poor dear.  She must be\nwell brought up, and well guarded from reposing any foolish\nconfidences where they are not deserved.  I must make that MY\ncare.'\n\nThere was a twitch of Miss Betsey's head, after each of these\nsentences, as if her own old wrongs were working within her, and\nshe repressed any plainer reference to them by strong constraint. \nSo my mother suspected, at least, as she observed her by the low\nglimmer of the fire: too much scared by Miss Betsey, too uneasy in\nherself, and too subdued and bewildered altogether, to observe\nanything very clearly, or to know what to say.\n\n'And was David good to you, child?' asked Miss Betsey, when she had\nbeen silent for a little while, and these motions of her head had\ngradually ceased.  'Were you comfortable together?'\n\n'We were very happy,' said my mother.  'Mr. Copperfield was only\ntoo good to me.'\n\n'What, he spoilt you, I suppose?' returned Miss Betsey.\n\n'For being quite alone and dependent on myself in this rough world\nagain, yes, I fear he did indeed,' sobbed my mother.\n\n'Well!  Don't cry!' said Miss Betsey.  'You were not equally\nmatched, child - if any two people can be equally matched - and so\nI asked the question.  You were an orphan, weren't you?'\n'Yes.'\n\n'And a governess?'\n\n'I was nursery-governess in a family where Mr. Copperfield came to\nvisit.  Mr. Copperfield was very kind to me, and took a great deal\nof notice of me, and paid me a good deal of attention, and at last\nproposed to me.  And I accepted him.  And so we were married,' said\nmy mother simply.\n\n'Ha!  Poor Baby!' mused Miss Betsey, with her frown still bent upon\nthe fire.  'Do you know anything?'\n\n'I beg your pardon, ma'am,' faltered my mother.\n\n'About keeping house, for instance,' said Miss Betsey.\n\n'Not much, I fear,' returned my mother.  'Not so much as I could\nwish.  But Mr. Copperfield was teaching me -'\n\n('Much he knew about it himself!') said Miss Betsey in a\nparenthesis.\n\n- 'And I hope I should have improved, being very anxious to learn,\nand he very patient to teach me, if the great misfortune of his\ndeath' - my mother broke down again here, and could get no farther.\n\n'Well, well!' said Miss Betsey.\n\n-'I kept my housekeeping-book regularly, and balanced it with Mr.\nCopperfield every night,' cried my mother in another burst of\ndistress, and breaking down again.\n\n'Well, well!' said Miss Betsey.  'Don't cry any more.'\n\n- 'And I am sure we never had a word of difference respecting it,\nexcept when Mr. Copperfield objected to my threes and fives being\ntoo much like each other, or to my putting curly tails to my sevens\nand nines,' resumed my mother in another burst, and breaking down\nagain.\n\n'You'll make yourself ill,' said Miss Betsey, 'and you know that\nwill not be good either for you or for my god-daughter.  Come!  You\nmustn't do it!'\n\nThis argument had some share in quieting my mother, though her\nincreasing indisposition had a larger one.  There was an interval\nof silence, only broken by Miss Betsey's occasionally ejaculating\n'Ha!' as she sat with her feet upon the fender.\n\n'David had bought an annuity for himself with his money, I know,'\nsaid she, by and by.  'What did he do for you?'\n\n'Mr. Copperfield,' said my mother, answering with some difficulty,\n'was so considerate and good as to secure the reversion of a part\nof it to me.'\n\n'How much?' asked Miss Betsey.\n\n'A hundred and five pounds a year,' said my mother.\n\n'He might have done worse,' said my aunt.\n\nThe word was appropriate to the moment.  My mother was so much\nworse that Peggotty, coming in with the teaboard and candles, and\nseeing at a glance how ill she was, - as Miss Betsey might have\ndone sooner if there had been light enough, - conveyed her upstairs\nto her own room with all speed; and immediately dispatched Ham\nPeggotty, her nephew, who had been for some days past secreted in\nthe house, unknown to my mother, as a special messenger in case of\nemergency, to fetch the nurse and doctor.\n\nThose allied powers were considerably astonished, when they arrived\nwithin a few minutes of each other, to find an unknown lady of\nportentous appearance, sitting before the fire, with her bonnet\ntied over her left arm, stopping her ears with jewellers' cotton. \nPeggotty knowing nothing about her, and my mother saying nothing\nabout her, she was quite a mystery in the parlour; and the fact of\nher having a magazine of jewellers' cotton in her pocket, and\nsticking the article in her ears in that way, did not detract from\nthe solemnity of her presence.\n\nThe doctor having been upstairs and come down again, and having\nsatisfied himself, I suppose, that there was a probability of this\nunknown lady and himself having to sit there, face to face, for\nsome hours, laid himself out to be polite and social.  He was the\nmeekest of his sex, the mildest of little men.  He sidled in and\nout of a room, to take up the less space.  He walked as softly as\nthe Ghost in Hamlet, and more slowly.  He carried his head on one\nside, partly in modest depreciation of himself, partly in modest\npropitiation of everybody else.  It is nothing to say that he\nhadn't a word to throw at a dog.  He couldn't have thrown a word at\na mad dog.  He might have offered him one gently, or half a one, or\na fragment of one; for he spoke as slowly as he walked; but he\nwouldn't have been rude to him, and he couldn't have been quick\nwith him, for any earthly consideration.\n\nMr. Chillip, looking mildly at my aunt with his head on one side,\nand making her a little bow, said, in allusion to the jewellers'\ncotton, as he softly touched his left ear:\n\n'Some local irritation, ma'am?'\n\n'What!' replied my aunt, pulling the cotton out of one ear like a\ncork.\n\nMr. Chillip was so alarmed by her abruptness - as he told my mother\nafterwards - that it was a mercy he didn't lose his presence of\nmind.  But he repeated sweetly:\n\n'Some local irritation, ma'am?'\n\n'Nonsense!' replied my aunt, and corked herself again, at one blow.\n\nMr. Chillip could do nothing after this, but sit and look at her\nfeebly, as she sat and looked at the fire, until he was called\nupstairs again.  After some quarter of an hour's absence, he\nreturned.\n\n'Well?' said my aunt, taking the cotton out of the ear nearest to\nhim.\n\n'Well, ma'am,' returned Mr. Chillip, 'we are- we are progressing\nslowly, ma'am.'\n\n'Ba--a--ah!' said my aunt, with a perfect shake on the contemptuous\ninterjection.  And corked herself as before.\n\nReally - really - as Mr. Chillip told my mother, he was almost\nshocked; speaking in a professional point of view alone, he was\nalmost shocked.  But he sat and looked at her, notwithstanding, for\nnearly two hours, as she sat looking at the fire, until he was\nagain called out.  After another absence, he again returned.\n\n'Well?' said my aunt, taking out the cotton on that side again.\n\n'Well, ma'am,' returned Mr. Chillip, 'we are - we are progressing\n\nslowly, ma'am.'\n\n'Ya--a--ah!' said my aunt.  With such a snarl at him, that Mr.\nChillip absolutely could not bear it.  It was really calculated to\nbreak his spirit, he said afterwards.  He preferred to go and sit\nupon the stairs, in the dark and a strong draught, until he was\nagain sent for.\n\nHam Peggotty, who went to the national school, and was a very\ndragon at his catechism, and who may therefore be regarded as a\ncredible witness, reported next day, that happening to peep in at\nthe parlour-door an hour after this, he was instantly descried by\nMiss Betsey, then walking to and fro in a state of agitation, and\npounced upon before he could make his escape.  That there were now\noccasional sounds of feet and voices overhead which he inferred the\ncotton did not exclude, from the circumstance of his evidently\nbeing clutched by the lady as a victim on whom to expend her\nsuperabundant agitation when the sounds were loudest.  That,\nmarching him constantly up and down by the collar (as if he had\nbeen taking too much laudanum), she, at those times, shook him,\nrumpled his hair, made light of his linen, stopped his ears as if\nshe confounded them with her own, and otherwise tousled and\nmaltreated him.  This was in part confirmed by his aunt, who saw\nhim at half past twelve o'clock, soon after his release, and\naffirmed that he was then as red as I was.\n\nThe mild Mr. Chillip could not possibly bear malice at such a time,\nif at any time.  He sidled into the parlour as soon as he was at\nliberty, and said to my aunt in his meekest manner:\n\n'Well, ma'am, I am happy to congratulate you.'\n\n'What upon?' said my aunt, sharply.\n\nMr. Chillip was fluttered again, by the extreme severity of my\naunt's manner; so he made her a little bow and gave her a little\nsmile, to mollify her.\n\n'Mercy on the man, what's he doing!' cried my aunt, impatiently.\n'Can't he speak?'\n\n'Be calm, my dear ma'am,' said Mr. Chillip, in his softest accents.\n\n'There is no longer any occasion for uneasiness, ma'am.  Be calm.'\n\nIt has since been considered almost a miracle that my aunt didn't\nshake him, and shake what he had to say, out of him.  She only\nshook her own head at him, but in a way that made him quail.\n\n'Well, ma'am,' resumed Mr. Chillip, as soon as he had courage, 'I\nam happy to congratulate you.  All is now over, ma'am, and well\nover.'\n\nDuring the five minutes or so that Mr. Chillip devoted to the\ndelivery of this oration, my aunt eyed him narrowly.\n\n'How is she?' said my aunt, folding her arms with her bonnet still\ntied on one of them.\n\n'Well, ma'am, she will soon be quite comfortable, I hope,' returned\nMr. Chillip.  'Quite as comfortable as we can expect a young mother\nto be, under these melancholy domestic circumstances.  There cannot\nbe any objection to your seeing her presently, ma'am.  It may do\nher good.'\n\n'And SHE.  How is SHE?' said my aunt, sharply.\n\nMr. Chillip laid his head a little more on one side, and looked at\nmy aunt like an amiable bird.\n\n'The baby,' said my aunt.  'How is she?'\n\n'Ma'am,' returned Mr. Chillip, 'I apprehended you had known.  It's\na boy.'\n\nMy aunt said never a word, but took her bonnet by the strings, in\nthe manner of a sling, aimed a blow at Mr. Chillip's head with it,\nput it on bent, walked out, and never came back.  She vanished like\na discontented fairy; or like one of those supernatural beings,\nwhom it was popularly supposed I was entitled to see; and never\ncame back any more.\n\nNo.  I lay in my basket, and my mother lay in her bed; but Betsey\nTrotwood Copperfield was for ever in the land of dreams and\nshadows, the tremendous region whence I had so lately travelled;\nand the light upon the window of our room shone out upon the\nearthly bourne of all such travellers, and the mound above the\nashes and the dust that once was he, without whom I had never been.\n\n\n\nCHAPTER 2\nI OBSERVE\n\n\nThe first objects that assume a distinct presence before me, as I\nlook far back, into the blank of my infancy, are my mother with her\npretty hair and youthful shape, and Peggotty with no shape at all,\nand eyes so dark that they seemed to darken their whole\nneighbourhood in her face, and cheeks and arms so hard and red that\nI wondered the birds didn't peck her in preference to apples.\n\nI believe I can remember these two at a little distance apart,\ndwarfed to my sight by stooping down or kneeling on the floor, and\nI going unsteadily from the one to the other.  I have an impression\non my mind which I cannot distinguish from actual remembrance, of\nthe touch of Peggotty's forefinger as she used to hold it out to\nme, and of its being roughened by needlework, like a pocket\nnutmeg-grater.\n\nThis may be fancy, though I think the memory of most of us can go\nfarther back into such times than many of us suppose; just as I\nbelieve the power of observation in numbers of very young children\nto be quite wonderful for its closeness and accuracy.  Indeed, I\nthink that most grown men who are remarkable in this respect, may\nwith greater propriety be said not to have lost the faculty, than\nto have acquired it; the rather, as I generally observe such men to\nretain a certain freshness, and gentleness, and capacity of being\npleased, which are also an inheritance they have preserved from\ntheir childhood.\n\nI might have a misgiving that I am 'meandering' in stopping to say\nthis, but that it brings me to remark that I build these\nconclusions, in part upon my own experience of myself; and if it\nshould appear from anything I may set down in this narrative that\nI was a child of close observation, or that as a man I have a\nstrong memory of my childhood, I undoubtedly lay claim to both of\nthese characteristics.\n\nLooking back, as I was saying, into the blank of my infancy, the\nfirst objects I can remember as standing out by themselves from a\nconfusion of things, are my mother and Peggotty.  What else do I\nremember?  Let me see.\n\n\nThere comes out of the cloud, our house - not new to me, but quite\nfamiliar, in its earliest remembrance.  On the ground-floor is\nPeggotty's kitchen, opening into a back yard; with a pigeon-house\non a pole, in the centre, without any pigeons in it; a great dog-\nkennel in a corner, without any dog; and a quantity of fowls that\nlook terribly tall to me, walking about, in a menacing and\nferocious manner.  There is one cock who gets upon a post to crow,\nand seems to take particular notice of me as I look at him through\nthe kitchen window, who makes me shiver, he is so fierce.  Of the\ngeese outside the side-gate who come waddling after me with their\nlong necks stretched out when I go that way, I dream at night: as\na man environed by wild beasts might dream of lions.\n\nHere is a long passage - what an enormous perspective I make of it! \n- leading from Peggotty's kitchen to the front door.  A dark\nstore-room opens out of it, and that is a place to be run past at\nnight; for I don't know what may be among those tubs and jars and\nold tea-chests, when there is nobody in there with a dimly-burning\nlight, letting a mouldy air come out of the door, in which there is\nthe smell of soap, pickles, pepper, candles, and coffee, all at one\nwhiff.  Then there are the two parlours: the parlour in which we\nsit of an evening, my mother and I and Peggotty - for Peggotty is\nquite our companion, when her work is done and we are alone - and\nthe best parlour where we sit on a Sunday; grandly, but not so\ncomfortably.  There is something of a doleful air about that room\nto me, for Peggotty has told me - I don't know when, but apparently\nages ago - about my father's funeral, and the company having their\nblack cloaks put on.  One Sunday night my mother reads to Peggotty\nand me in there, how Lazarus was raised up from the dead.  And I am\nso frightened that they are afterwards obliged to take me out of\nbed, and show me the quiet churchyard out of the bedroom window,\nwith the dead all lying in their graves at rest, below the solemn\nmoon.\n\nThere is nothing half so green that I know anywhere, as the grass\nof that churchyard; nothing half so shady as its trees; nothing\nhalf so quiet as its tombstones.  The sheep are feeding there, when\nI kneel up, early in the morning, in my little bed in a closet\nwithin my mother's room, to look out at it; and I see the red light\nshining on the sun-dial, and think within myself, 'Is the sun-dial\nglad, I wonder, that it can tell the time again?'\n\nHere is our pew in the church.  What a high-backed pew!  With a\nwindow near it, out of which our house can be seen, and IS seen\nmany times during the morning's service, by Peggotty, who likes to\nmake herself as sure as she can that it's not being robbed, or is\nnot in flames.  But though Peggotty's eye wanders, she is much\noffended if mine does, and frowns to me, as I stand upon the seat,\nthat I am to look at the clergyman.  But I can't always look at him\n- I know him without that white thing on, and I am afraid of his\nwondering why I stare so, and perhaps stopping the service to\ninquire - and what am I to do?  It's a dreadful thing to gape, but\nI must do something.  I look at my mother, but she pretends not to\nsee me.  I look at a boy in the aisle, and he makes faces at me. \nI look at the sunlight coming in at the open door through the\nporch, and there I see a stray sheep - I don't mean a sinner, but\nmutton - half making up his mind to come into the church.  I feel\nthat if I looked at him any longer, I might be tempted to say\nsomething out loud; and what would become of me then!  I look up at\nthe monumental tablets on the wall, and try to think of Mr. Bodgers\nlate of this parish, and what the feelings of Mrs. Bodgers must\nhave been, when affliction sore, long time Mr. Bodgers bore, and\nphysicians were in vain.  I wonder whether they called in Mr.\nChillip, and he was in vain; and if so, how he likes to be reminded\nof it once a week.  I look from Mr. Chillip, in his Sunday\nneckcloth, to the pulpit; and think what a good place it would be\nto play in, and what a castle it would make, with another boy\ncoming up the stairs to attack it, and having the velvet cushion\nwith the tassels thrown down on his head.  In time my eyes\ngradually shut up; and, from seeming to hear the clergyman singing\na drowsy song in the heat, I hear nothing, until I fall off the\nseat with a crash, and am taken out, more dead than alive, by\nPeggotty.\n\nAnd now I see the outside of our house, with the latticed\nbedroom-windows standing open to let in the sweet-smelling air, and\nthe ragged old rooks'-nests still dangling in the elm-trees at the\nbottom of the front garden.  Now I am in the garden at the back,\nbeyond the yard where the empty pigeon-house and dog-kennel are -\na very preserve of butterflies, as I remember it, with a high\nfence, and a gate and padlock; where the fruit clusters on the\ntrees, riper and richer than fruit has ever been since, in any\nother garden, and where my mother gathers some in a basket, while\nI stand by, bolting furtive gooseberries, and trying to look\nunmoved.  A great wind rises, and the summer is gone in a moment. \nWe are playing in the winter twilight, dancing about the parlour. \nWhen my mother is out of breath and rests herself in an\nelbow-chair, I watch her winding her bright curls round her\nfingers, and straitening her waist, and nobody knows better than I\ndo that she likes to look so well, and is proud of being so pretty.\n\nThat is among my very earliest impressions.  That, and a sense that\nwe were both a little afraid of Peggotty, and submitted ourselves\nin most things to her direction, were among the first opinions - if\nthey may be so called - that I ever derived from what I saw.\n\nPeggotty and I were sitting one night by the parlour fire, alone. \nI had been reading to Peggotty about crocodiles.  I must have read\nvery perspicuously, or the poor soul must have been deeply\ninterested, for I remember she had a cloudy impression, after I had\ndone, that they were a sort of vegetable.  I was tired of reading,\nand dead sleepy; but having leave, as a high treat, to sit up until\nmy mother came home from spending the evening at a neighbour's, I\nwould rather have died upon my post (of course) than have gone to\nbed.  I had reached that stage of sleepiness when Peggotty seemed\nto swell and grow immensely large.  I propped my eyelids open with\nmy two forefingers, and looked perseveringly at her as she sat at\nwork; at the little bit of wax-candle she kept for her thread - how\nold it looked, being so wrinkled in all directions! - at the little\nhouse with a thatched roof, where the yard-measure lived; at her\nwork-box with a sliding lid, with a view of St. Paul's Cathedral\n(with a pink dome) painted on the top; at the brass thimble on her\nfinger; at herself, whom I thought lovely.  I felt so sleepy, that\nI knew if I lost sight of anything for a moment, I was gone.\n\n'Peggotty,' says I, suddenly, 'were you ever married?'\n\n'Lord, Master Davy,' replied Peggotty.  'What's put marriage in\nyour head?'\n\nShe answered with such a start, that it quite awoke me.  And then\nshe stopped in her work, and looked at me, with her needle drawn\nout to its thread's length.\n\n'But WERE you ever married, Peggotty?' says I.  'You are a very\nhandsome woman, an't you?'\n\nI thought her in a different style from my mother, certainly; but\nof another school of beauty, I considered her a perfect example. \nThere was a red velvet footstool in the best parlour, on which my\nmother had painted a nosegay.  The ground-work of that stool, and\nPeggotty's complexion appeared to me to be one and the same thing. \nThe stool was smooth, and Peggotty was rough, but that made no\ndifference.\n\n'Me handsome, Davy!' said Peggotty.  'Lawk, no, my dear!  But what\nput marriage in your head?'\n\n'I don't know! - You mustn't marry more than one person at a time,\nmay you, Peggotty?'\n\n'Certainly not,' says Peggotty, with the promptest decision.\n\n'But if you marry a person, and the person dies, why then you may\nmarry another person, mayn't you, Peggotty?'\n\n'YOU MAY,' says Peggotty, 'if you choose, my dear.  That's a matter\nof opinion.'\n\n'But what is your opinion, Peggotty?' said I.\n\nI asked her, and looked curiously at her, because she looked so\ncuriously at me.\n\n'My opinion is,' said Peggotty, taking her eyes from me, after a\nlittle indecision and going on with her work, 'that I never was\nmarried myself, Master Davy, and that I don't expect to be.  That's\nall I know about the subject.'\n\n'You an't cross, I suppose, Peggotty, are you?' said I, after\nsitting quiet for a minute.\n\nI really thought she was, she had been so short with me; but I was\nquite mistaken: for she laid aside her work (which was a stocking\nof her own), and opening her arms wide, took my curly head within\nthem, and gave it a good squeeze.  I know it was a good squeeze,\nbecause, being very plump, whenever she made any little exertion\nafter she was dressed, some of the buttons on the back of her gown\nflew off.  And I recollect two bursting to the opposite side of the\nparlour, while she was hugging me.\n\n'Now let me hear some more about the Crorkindills,' said Peggotty,\nwho was not quite right in the name yet, 'for I an't heard half\nenough.'\n\nI couldn't quite understand why Peggotty looked so queer, or why\nshe was so ready to go back to the crocodiles.  However, we\nreturned to those monsters, with fresh wakefulness on my part, and\nwe left their eggs in the sand for the sun to hatch; and we ran\naway from them, and baffled them by constantly turning, which they\nwere unable to do quickly, on account of their unwieldy make; and\nwe went into the water after them, as natives, and put sharp pieces\nof timber down their throats; and in short we ran the whole\ncrocodile gauntlet.  I did, at least; but I had my doubts of\nPeggotty, who was thoughtfully sticking her needle into various\nparts of her face and arms, all the time.\n\nWe had exhausted the crocodiles, and begun with the alligators,\nwhen the garden-bell rang.  We went out to the door; and there was\nmy mother, looking unusually pretty, I thought, and with her a\ngentleman with beautiful black hair and whiskers, who had walked\nhome with us from church last Sunday.\n\nAs my mother stooped down on the threshold to take me in her arms\nand kiss me, the gentleman said I was a more highly privileged\nlittle fellow than a monarch - or something like that; for my later\nunderstanding comes, I am sensible, to my aid here.\n\n'What does that mean?' I asked him, over her shoulder.\n\nHe patted me on the head; but somehow, I didn't like him or his\ndeep voice, and I was jealous that his hand should touch my\nmother's in touching me - which it did.  I put it away, as well as\nI could.\n\n'Oh, Davy!' remonstrated my mother.\n\n'Dear boy!' said the gentleman.  'I cannot wonder at his devotion!'\n\nI never saw such a beautiful colour on my mother's face before. \nShe gently chid me for being rude; and, keeping me close to her\nshawl, turned to thank the gentleman for taking so much trouble as\nto bring her home.  She put out her hand to him as she spoke, and,\nas he met it with his own, she glanced, I thought, at me.\n\n'Let us say \"good night\", my fine boy,' said the gentleman, when he\nhad bent his head - I saw him! - over my mother's little glove.\n\n'Good night!' said I.\n\n'Come!  Let us be the best friends in the world!' said the\ngentleman, laughing.  'Shake hands!'\n\nMy right hand was in my mother's left, so I gave him the other.\n\n'Why, that's the Wrong hand, Davy!' laughed the gentleman.\n\nMY mother drew my right hand forward, but I was resolved, for my\nformer reason, not to give it him, and I did not.  I gave him the\nother, and he shook it heartily, and said I was a brave fellow, and\nwent away.\n\nAt this minute I see him turn round in the garden, and give us a\nlast look with his ill-omened black eyes, before the door was shut.\n\nPeggotty, who had not said a word or moved a finger, secured the\nfastenings instantly, and we all went into the parlour.  My mother,\ncontrary to her usual habit, instead of coming to the elbow-chair\nby the fire, remained at the other end of the room, and sat singing\nto herself.\n\n- 'Hope you have had a pleasant evening, ma'am,' said Peggotty,\nstanding as stiff as a barrel in the centre of the room, with a\ncandlestick in her hand.\n\n'Much obliged to you, Peggotty,' returned my mother, in a cheerful\nvoice, 'I have had a VERY pleasant evening.'\n\n'A stranger or so makes an agreeable change,' suggested Peggotty.\n\n'A very agreeable change, indeed,' returned my mother.\n\nPeggotty continuing to stand motionless in the middle of the room,\nand my mother resuming her singing, I fell asleep, though I was not\nso sound asleep but that I could hear voices, without hearing what\nthey said.  When I half awoke from this uncomfortable doze, I found\nPeggotty and my mother both in tears, and both talking.\n\n'Not such a one as this, Mr. Copperfield wouldn't have liked,' said\nPeggotty.  'That I say, and that I swear!'\n\n'Good Heavens!' cried my mother, 'you'll drive me mad!  Was ever\nany poor girl so ill-used by her servants as I am!  Why do I do\nmyself the injustice of calling myself a girl?  Have I never been\nmarried, Peggotty?'\n\n'God knows you have, ma'am,' returned Peggotty.\n'Then, how can you dare,' said my mother - 'you know I don't mean\nhow can you dare, Peggotty, but how can you have the heart - to\nmake me so uncomfortable and say such bitter things to me, when you\nare well aware that I haven't, out of this place, a single friend\nto turn to?'\n\n'The more's the reason,' returned Peggotty, 'for saying that it\nwon't do.  No!  That it won't do.  No!  No price could make it do. \nNo!' - I thought Peggotty would have thrown the candlestick away,\nshe was so emphatic with it.\n\n'How can you be so aggravating,' said my mother, shedding more\ntears than before, 'as to talk in such an unjust manner!  How can\nyou go on as if it was all settled and arranged, Peggotty, when I\ntell you over and over again, you cruel thing, that beyond the\ncommonest civilities nothing has passed!  You talk of admiration. \nWhat am I to do?  If people are so silly as to indulge the\nsentiment, is it my fault?  What am I to do, I ask you?  Would you\nwish me to shave my head and black my face, or disfigure myself\nwith a burn, or a scald, or something of that sort?  I dare say you\nwould, Peggotty.  I dare say you'd quite enjoy it.'\n\nPeggotty seemed to take this aspersion very much to heart, I\nthought.\n\n'And my dear boy,' cried my mother, coming to the elbow-chair in\nwhich I was, and caressing me, 'my own little Davy!  Is it to be\nhinted to me that I am wanting in affection for my precious\ntreasure, the dearest little fellow that ever was!'\n\n'Nobody never went and hinted no such a thing,' said Peggotty.\n\n'You did, Peggotty!' returned my mother.  'You know you did.  What\nelse was it possible to infer from what you said, you unkind\ncreature, when you know as well as I do, that on his account only\nlast quarter I wouldn't buy myself a new parasol, though that old\ngreen one is frayed the whole way up, and the fringe is perfectly\nmangy?  You know it is, Peggotty.  You can't deny it.'  Then,\nturning affectionately to me, with her cheek against mine, 'Am I a\nnaughty mama to you, Davy?  Am I a nasty, cruel, selfish, bad mama? \nSay I am, my child; say \"yes\", dear boy, and Peggotty will love\nyou; and Peggotty's love is a great deal better than mine, Davy. \nI don't love you at all, do I?'\n\nAt this, we all fell a-crying together.  I think I was the loudest\nof the party, but I am sure we were all sincere about it.  I was\nquite heart-broken myself, and am afraid that in the first\ntransports of wounded tenderness I called Peggotty a 'Beast'.  That\nhonest creature was in deep affliction, I remember, and must have\nbecome quite buttonless on the occasion; for a little volley of\nthose explosives went off, when, after having made it up with my\nmother, she kneeled down by the elbow-chair, and made it up with\nme.\n\nWe went to bed greatly dejected.  My sobs kept waking me, for a\nlong time; and when one very strong sob quite hoisted me up in bed,\nI found my mother sitting on the coverlet, and leaning over me.  I\nfell asleep in her arms, after that, and slept soundly.\n\nWhether it was the following Sunday when I saw the gentleman again,\nor whether there was any greater lapse of time before he\nreappeared, I cannot recall.  I don't profess to be clear about\ndates.  But there he was, in church, and he walked home with us\nafterwards.  He came in, too, to look at a famous geranium we had,\nin the parlour-window.  It did not appear to me that he took much\nnotice of it, but before he went he asked my mother to give him a\nbit of the blossom.  She begged him to choose it for himself, but\nhe refused to do that - I could not understand why - so she plucked\nit for him, and gave it into his hand.  He said he would never,\nnever part with it any more; and I thought he must be quite a fool\nnot to know that it would fall to pieces in a day or two.\n\nPeggotty began to be less with us, of an evening, than she had\nalways been.  My mother deferred to her very much - more than\nusual, it occurred to me - and we were all three excellent friends;\nstill we were different from what we used to be, and were not so\ncomfortable among ourselves.  Sometimes I fancied that Peggotty\nperhaps objected to my mother's wearing all the pretty dresses she\nhad in her drawers, or to her going so often to visit at that\nneighbour's; but I couldn't, to my satisfaction, make out how it\nwas.\n\nGradually, I became used to seeing the gentleman with the black\nwhiskers.  I liked him no better than at first, and had the same\nuneasy jealousy of him; but if I had any reason for it beyond a\nchild's instinctive dislike, and a general idea that Peggotty and\nI could make much of my mother without any help, it certainly was\nnot THE reason that I might have found if I had been older.  No\nsuch thing came into my mind, or near it.  I could observe, in\nlittle pieces, as it were; but as to making a net of a number of\nthese pieces, and catching anybody in it, that was, as yet, beyond\nme.\n\nOne autumn morning I was with my mother in the front garden, when\nMr. Murdstone - I knew him by that name now - came by, on\nhorseback.  He reined up his horse to salute my mother, and said he\nwas going to Lowestoft to see some friends who were there with a\nyacht, and merrily proposed to take me on the saddle before him if\nI would like the ride.\n\nThe air was so clear and pleasant, and the horse seemed to like the\nidea of the ride so much himself, as he stood snorting and pawing\nat the garden-gate, that I had a great desire to go.  So I was sent\nupstairs to Peggotty to be made spruce; and in the meantime Mr.\nMurdstone dismounted, and, with his horse's bridle drawn over his\narm, walked slowly up and down on the outer side of the sweetbriar\nfence, while my mother walked slowly up and down on the inner to\nkeep him company.  I recollect Peggotty and I peeping out at them\nfrom my little window; I recollect how closely they seemed to be\nexamining the sweetbriar between them, as they strolled along; and\nhow, from being in a perfectly angelic temper, Peggotty turned\ncross in a moment, and brushed my hair the wrong way, excessively\nhard.\n\nMr. Murdstone and I were soon off, and trotting along on the green\nturf by the side of the road.  He held me quite easily with one\narm, and I don't think I was restless usually; but I could not make\nup my mind to sit in front of him without turning my head\nsometimes, and looking up in his face.  He had that kind of shallow\nblack eye - I want a better word to express an eye that has no\ndepth in it to be looked into - which, when it is abstracted, seems\nfrom some peculiarity of light to be disfigured, for a moment at a\ntime, by a cast.  Several times when I glanced at him, I observed\nthat appearance with a sort of awe, and wondered what he was\nthinking about so closely.  His hair and whiskers were blacker and\nthicker, looked at so near, than even I had given them credit for\nbeing.  A squareness about the lower part of his face, and the\ndotted indication of the strong black beard he shaved close every\nday, reminded me of the wax-work that had travelled into our\nneighbourhood some half-a-year before.  This, his regular eyebrows,\nand the rich white, and black, and brown, of his complexion -\nconfound his complexion, and his memory! - made me think him, in\nspite of my misgivings, a very handsome man.  I have no doubt that\nmy poor dear mother thought him so too.\n\nWe went to an hotel by the sea, where two gentlemen were smoking\ncigars in a room by themselves.  Each of them was lying on at least\nfour chairs, and had a large rough jacket on.  In a corner was a\nheap of coats and boat-cloaks, and a flag, all bundled up together.\n\nThey both rolled on to their feet in an untidy sort of manner, when\nwe came in, and said, 'Halloa, Murdstone!  We thought you were\ndead!'\n\n'Not yet,' said Mr. Murdstone.\n\n'And who's this shaver?' said one of the gentlemen, taking hold of\nme.\n\n'That's Davy,' returned Mr. Murdstone.\n\n'Davy who?' said the gentleman.  'Jones?'\n\n'Copperfield,' said Mr. Murdstone.\n\n'What!  Bewitching Mrs. Copperfield's encumbrance?' cried the\ngentleman.  'The pretty little widow?'\n\n'Quinion,' said Mr. Murdstone, 'take care, if you please. \nSomebody's sharp.'\n\n'Who is?' asked the gentleman, laughing.\nI looked up, quickly; being curious to know.\n\n'Only Brooks of Sheffield,' said Mr. Murdstone.\n\nI was quite relieved to find that it was only Brooks of Sheffield;\nfor, at first, I really thought it was I.\n\nThere seemed to be something very comical in the reputation of Mr.\nBrooks of Sheffield, for both the gentlemen laughed heartily when\nhe was mentioned, and Mr. Murdstone was a good deal amused also. \nAfter some laughing, the gentleman whom he had called Quinion,\nsaid:\n\n'And what is the opinion of Brooks of Sheffield, in reference to\nthe projected business?'\n\n'Why, I don't know that Brooks understands much about it at\npresent,' replied Mr. Murdstone; 'but he is not generally\nfavourable, I believe.'\n\nThere was more laughter at this, and Mr. Quinion said he would ring\nthe bell for some sherry in which to drink to Brooks.  This he did;\nand when the wine came, he made me have a little, with a biscuit,\nand, before I drank it, stand up and say, 'Confusion to Brooks of\nSheffield!'  The toast was received with great applause, and such\nhearty laughter that it made me laugh too; at which they laughed\nthe more.  In short, we quite enjoyed ourselves.\n\nWe walked about on the cliff after that, and sat on the grass, and\nlooked at things through a telescope - I could make out nothing\nmyself when it was put to my eye, but I pretended I could - and\nthen we came back to the hotel to an early dinner.  All the time we\nwere out, the two gentlemen smoked incessantly - which, I thought,\nif I might judge from the smell of their rough coats, they must\nhave been doing, ever since the coats had first come home from the\ntailor's.  I must not forget that we went on board the yacht, where\nthey all three descended into the cabin, and were busy with some\npapers.  I saw them quite hard at work, when I looked down through\nthe open skylight.  They left me, during this time, with a very\nnice man with a very large head of red hair and a very small shiny\nhat upon it, who had got a cross-barred shirt or waistcoat on, with\n'Skylark' in capital letters across the chest.  I thought it was\nhis name; and that as he lived on board ship and hadn't a street\ndoor to put his name on, he put it there instead; but when I called\nhim Mr. Skylark, he said it meant the vessel.\n\nI observed all day that Mr. Murdstone was graver and steadier than\nthe two gentlemen.  They were very gay and careless.  They joked\nfreely with one another, but seldom with him.  It appeared to me\nthat he was more clever and cold than they were, and that they\nregarded him with something of my own feeling.  I remarked that,\nonce or twice when Mr. Quinion was talking, he looked at Mr.\nMurdstone sideways, as if to make sure of his not being displeased;\nand that once when Mr. Passnidge (the other gentleman) was in high\nspirits, he trod upon his foot, and gave him a secret caution with\nhis eyes, to observe Mr. Murdstone, who was sitting stern and\nsilent.  Nor do I recollect that Mr. Murdstone laughed at all that\nday, except at the Sheffield joke - and that, by the by, was his\nown.\n\nWe went home early in the evening.  It was a very fine evening, and\nmy mother and he had another stroll by the sweetbriar, while I was\nsent in to get my tea.  When he was gone, my mother asked me all\nabout the day I had had, and what they had said and done.  I\nmentioned what they had said about her, and she laughed, and told\nme they were impudent fellows who talked nonsense - but I knew it\npleased her.  I knew it quite as well as I know it now.  I took the\nopportunity of asking if she was at all acquainted with Mr. Brooks\nof Sheffield, but she answered No, only she supposed he must be a\nmanufacturer in the knife and fork way.\n\nCan I say of her face - altered as I have reason to remember it,\nperished as I know it is - that it is gone, when here it comes\nbefore me at this instant, as distinct as any face that I may\nchoose to look on in a crowded street?  Can I say of her innocent\nand girlish beauty, that it faded, and was no more, when its breath\nfalls on my cheek now, as it fell that night?  Can I say she ever\nchanged, when my remembrance brings her back to life, thus only;\nand, truer to its loving youth than I have been, or man ever is,\nstill holds fast what it cherished then?\n\nI write of her just as she was when I had gone to bed after this\ntalk, and she came to bid me good night.  She kneeled down\nplayfully by the side of the bed, and laying her chin upon her\nhands, and laughing, said:\n\n'What was it they said, Davy?  Tell me again.  I can't believe it.'\n\n'\"Bewitching -\"' I began.\n\nMy mother put her hands upon my lips to stop me.\n\n'It was never bewitching,' she said, laughing.  'It never could\nhave been bewitching, Davy.  Now I know it wasn't!'\n\n'Yes, it was.  \"Bewitching Mrs. Copperfield\",' I repeated stoutly. \n'And, \"pretty.\"'\n\n'No, no, it was never pretty.  Not pretty,' interposed my mother,\nlaying her fingers on my lips again.\n\n'Yes it was.  \"Pretty little widow.\"'\n\n'What foolish, impudent creatures!' cried my mother, laughing and\ncovering her face.  'What ridiculous men!  An't they?  Davy dear -'\n\n'Well, Ma.'\n\n'Don't tell Peggotty; she might be angry with them.  I am\ndreadfully angry with them myself; but I would rather Peggotty\ndidn't know.'\n\nI promised, of course; and we kissed one another over and over\nagain, and I soon fell fast asleep.\n\nIt seems to me, at this distance of time, as if it were the next\nday when Peggotty broached the striking and adventurous proposition\nI am about to mention; but it was probably about two months\nafterwards.\n\nWe were sitting as before, one evening (when my mother was out as\nbefore), in company with the stocking and the yard-measure, and the\nbit of wax, and the box with St. Paul's on the lid, and the\ncrocodile book, when Peggotty, after looking at me several times,\nand opening her mouth as if she were going to speak, without doing\nit - which I thought was merely gaping, or I should have been\nrather alarmed - said coaxingly:\n\n'Master Davy, how should you like to go along with me and spend a\nfortnight at my brother's at Yarmouth?  Wouldn't that be a treat?'\n\n'Is your brother an agreeable man, Peggotty?' I inquired,\nprovisionally.\n\n'Oh, what an agreeable man he is!' cried Peggotty, holding up her\nhands.  'Then there's the sea; and the boats and ships; and the\nfishermen; and the beach; and Am to play with -'\n\nPeggotty meant her nephew Ham, mentioned in my first chapter; but\nshe spoke of him as a morsel of English Grammar.\n\nI was flushed by her summary of delights, and replied that it would\nindeed be a treat, but what would my mother say?\n\n'Why then I'll as good as bet a guinea,' said Peggotty, intent upon\nmy face, 'that she'll let us go.  I'll ask her, if you like, as\nsoon as ever she comes home.  There now!'\n\n'But what's she to do while we're away?' said I, putting my small\nelbows on the table to argue the point.  'She can't live by\nherself.'\n\nIf Peggotty were looking for a hole, all of a sudden, in the heel\nof that stocking, it must have been a very little one indeed, and\nnot worth darning.\n\n'I say!  Peggotty!  She can't live by herself, you know.'\n\n'Oh, bless you!' said Peggotty, looking at me again at last. \n'Don't you know?  She's going to stay for a fortnight with Mrs.\nGrayper.  Mrs. Grayper's going to have a lot of company.'\n\nOh!  If that was it, I was quite ready to go.  I waited, in the\nutmost impatience, until my mother came home from Mrs. Grayper's\n(for it was that identical neighbour), to ascertain if we could get\nleave to carry out this great idea.  Without being nearly so much\nsurprised as I had expected, my mother entered into it readily; and\nit was all arranged that night, and my board and lodging during the\nvisit were to be paid for.\n\nThe day soon came for our going.  It was such an early day that it\ncame soon, even to me, who was in a fever of expectation, and half\nafraid that an earthquake or a fiery mountain, or some other great\nconvulsion of nature, might interpose to stop the expedition.  We\nwere to go in a carrier's cart, which departed in the morning after\nbreakfast.  I would have given any money to have been allowed to\nwrap myself up over-night, and sleep in my hat and boots.\n\nIt touches me nearly now, although I tell it lightly, to recollect\nhow eager I was to leave my happy home; to think how little I\nsuspected what I did leave for ever.\n\nI am glad to recollect that when the carrier's cart was at the\ngate, and my mother stood there kissing me, a grateful fondness for\nher and for the old place I had never turned my back upon before,\nmade me cry.  I am glad to know that my mother cried too, and that\nI felt her heart beat against mine.\n\nI am glad to recollect that when the carrier began to move, my\nmother ran out at the gate, and called to him to stop, that she\nmight kiss me once more.  I am glad to dwell upon the earnestness\nand love with which she lifted up her face to mine, and did so.\n\nAs we left her standing in the road, Mr. Murdstone came up to where\nshe was, and seemed to expostulate with her for being so moved.  I\nwas looking back round the awning of the cart, and wondered what\nbusiness it was of his.  Peggotty, who was also looking back on the\nother side, seemed anything but satisfied; as the face she brought\nback in the cart denoted.\n\nI sat looking at Peggotty for some time, in a reverie on this\nsupposititious case: whether, if she were employed to lose me like\nthe boy in the fairy tale, I should be able to track my way home\nagain by the buttons she would shed.\n\n\n\nCHAPTER 3\nI HAVE A CHANGE\n\n\nThe carrier's horse was the laziest horse in the world, I should\nhope, and shuffled along, with his head down, as if he liked to\nkeep people waiting to whom the packages were directed.  I fancied,\nindeed, that he sometimes chuckled audibly over this reflection,\nbut the carrier said he was only troubled with a cough.\nThe carrier had a way of keeping his head down, like his horse, and\nof drooping sleepily forward as he drove, with one of his arms on\neach of his knees.  I say 'drove', but it struck me that the cart\nwould have gone to Yarmouth quite as well without him, for the\nhorse did all that; and as to conversation, he had no idea of it\nbut whistling.\n\nPeggotty had a basket of refreshments on her knee, which would have\nlasted us out handsomely, if we had been going to London by the\nsame conveyance.  We ate a good deal, and slept a good deal. \nPeggotty always went to sleep with her chin upon the handle of the\nbasket, her hold of which never relaxed; and I could not have\nbelieved unless I had heard her do it, that one defenceless woman\ncould have snored so much.\n\nWe made so many deviations up and down lanes, and were such a long\ntime delivering a bedstead at a public-house, and calling at other\nplaces, that I was quite tired, and very glad, when we saw\nYarmouth.  It looked rather spongy and soppy, I thought, as I\ncarried my eye over the great dull waste that lay across the river;\nand I could not help wondering, if the world were really as round\nas my geography book said, how any part of it came to be so flat. \nBut I reflected that Yarmouth might be situated at one of the\npoles; which would account for it.\n\nAs we drew a little nearer, and saw the whole adjacent prospect\nlying a straight low line under the sky, I hinted to Peggotty that\na mound or so might have improved it; and also that if the land had\nbeen a little more separated from the sea, and the town and the\ntide had not been quite so much mixed up, like toast and water, it\nwould have been nicer.  But Peggotty said, with greater emphasis\nthan usual, that we must take things as we found them, and that,\nfor her part, she was proud to call herself a Yarmouth Bloater.\n\nWhen we got into the street (which was strange enough to me) and\nsmelt the fish, and pitch, and oakum, and tar, and saw the sailors\nwalking about, and the carts jingling up and down over the stones,\nI felt that I had done so busy a place an injustice; and said as\nmuch to Peggotty, who heard my expressions of delight with great\ncomplacency, and told me it was well known (I suppose to those who\nhad the good fortune to be born Bloaters) that Yarmouth was, upon\nthe whole, the finest place in the universe.\n\n'Here's my Am!' screamed Peggotty, 'growed out of knowledge!'\n\nHe was waiting for us, in fact, at the public-house; and asked me\nhow I found myself, like an old acquaintance.  I did not feel, at\nfirst, that I knew him as well as he knew me, because he had never\ncome to our house since the night I was born, and naturally he had\nthe advantage of me.  But our intimacy was much advanced by his\ntaking me on his back to carry me home.  He was, now, a huge,\nstrong fellow of six feet high, broad in proportion, and\nround-shouldered; but with a simpering boy's face and curly light\nhair that gave him quite a sheepish look.  He was dressed in a\ncanvas jacket, and a pair of such very stiff trousers that they\nwould have stood quite as well alone, without any legs in them. \nAnd you couldn't so properly have said he wore a hat, as that he\nwas covered in a-top, like an old building, with something pitchy.\n\nHam carrying me on his back and a small box of ours under his arm,\nand Peggotty carrying another small box of ours, we turned down\nlanes bestrewn with bits of chips and little hillocks of sand, and\nwent past gas-works, rope-walks, boat-builders' yards, shipwrights'\nyards, ship-breakers' yards, caulkers' yards, riggers' lofts,\nsmiths' forges, and a great litter of such places, until we came\nout upon the dull waste I had already seen at a distance; when Ham\nsaid,\n\n'Yon's our house, Mas'r Davy!'\n\nI looked in all directions, as far as I could stare over the\nwilderness, and away at the sea, and away at the river, but no\nhouse could I make out.  There was a black barge, or some other\nkind of superannuated boat, not far off, high and dry on the\nground, with an iron funnel sticking out of it for a chimney and\nsmoking very cosily; but nothing else in the way of a habitation\nthat was visible to me.\n\n'That's not it?' said I.  'That ship-looking thing?'\n\n'That's it, Mas'r Davy,' returned Ham.\n\nIf it had been Aladdin's palace, roc's egg and all, I suppose I\ncould not have been more charmed with the romantic idea of living\nin it.  There was a delightful door cut in the side, and it was\nroofed in, and there were little windows in it; but the wonderful\ncharm of it was, that it was a real boat which had no doubt been\nupon the water hundreds of times, and which had never been intended\nto be lived in, on dry land.  That was the captivation of it to me. \nIf it had ever been meant to be lived in, I might have thought it\nsmall, or inconvenient, or lonely; but never having been designed\nfor any such use, it became a perfect abode.\n\nIt was beautifully clean inside, and as tidy as possible.  There\nwas a table, and a Dutch clock, and a chest of drawers, and on the\nchest of drawers there was a tea-tray with a painting on it of a\nlady with a parasol, taking a walk with a military-looking child\nwho was trundling a hoop.  The tray was kept from tumbling down, by\na bible; and the tray, if it had tumbled down, would have smashed\na quantity of cups and saucers and a teapot that were grouped\naround the book.  On the walls there were some common coloured\npictures, framed and glazed, of scripture subjects; such as I have\nnever seen since in the hands of pedlars, without seeing the whole\ninterior of Peggotty's brother's house again, at one view.  Abraham\nin red going to sacrifice Isaac in blue, and Daniel in yellow cast\ninto a den of green lions, were the most prominent of these.  Over\nthe little mantelshelf, was a picture of the 'Sarah Jane' lugger,\nbuilt at Sunderland, with a real little wooden stern stuck on to\nit; a work of art, combining composition with carpentry, which I\nconsidered to be one of the most enviable possessions that the\nworld could afford.  There were some hooks in the beams of the\nceiling, the use of which I did not divine then; and some lockers\nand boxes and conveniences of that sort, which served for seats and\neked out the chairs.\n\nAll this I saw in the first glance after I crossed the threshold -\nchild-like, according to my theory - and then Peggotty opened a\nlittle door and showed me my bedroom.  It was the completest and\nmost desirable bedroom ever seen - in the stern of the vessel; with\na little window, where the rudder used to go through; a little\nlooking-glass, just the right height for me, nailed against the\nwall, and framed with oyster-shells; a little bed, which there was\njust room enough to get into; and a nosegay of seaweed in a blue\nmug on the table.  The walls were whitewashed as white as milk, and\nthe patchwork counterpane made my eyes quite ache with its\nbrightness.  One thing I particularly noticed in this delightful\nhouse, was the smell of fish; which was so searching, that when I\ntook out my pocket-handkerchief to wipe my nose, I found it smelt\nexactly as if it had wrapped up a lobster.  On my imparting this\ndiscovery in confidence to Peggotty, she informed me that her\nbrother dealt in lobsters, crabs, and crawfish; and I afterwards\nfound that a heap of these creatures, in a state of wonderful\nconglomeration with one another, and never leaving off pinching\nwhatever they laid hold of, were usually to be found in a little\nwooden outhouse where the pots and kettles were kept.\n\nWe were welcomed by a very civil woman in a white apron, whom I had\nseen curtseying at the door when I was on Ham's back, about a\nquarter of a mile off.  Likewise by a most beautiful little girl\n(or I thought her so) with a necklace of blue beads on, who\nwouldn't let me kiss her when I offered to, but ran away and hid\nherself.  By and by, when we had dined in a sumptuous manner off\nboiled dabs, melted butter, and potatoes, with a chop for me, a\nhairy man with a very good-natured face came home.  As he called\nPeggotty 'Lass', and gave her a hearty smack on the cheek, I had no\ndoubt, from the general propriety of her conduct, that he was her\nbrother; and so he turned out - being presently introduced to me as\nMr. Peggotty, the master of the house.\n\n'Glad to see you, sir,' said Mr. Peggotty.  'You'll find us rough,\nsir, but you'll find us ready.'\n\nI thanked him, and replied that I was sure I should be happy in\nsuch a delightful place.\n\n'How's your Ma, sir?' said Mr. Peggotty.  'Did you leave her pretty\njolly?'\n\nI gave Mr. Peggotty to understand that she was as jolly as I could\nwish, and that she desired her compliments - which was a polite\nfiction on my part.\n\n'I'm much obleeged to her, I'm sure,' said Mr. Peggotty.  'Well,\nsir, if you can make out here, fur a fortnut, 'long wi' her,'\nnodding at his sister, 'and Ham, and little Em'ly, we shall be\nproud of your company.'\n\nHaving done the honours of his house in this hospitable manner, Mr.\nPeggotty went out to wash himself in a kettleful of hot water,\nremarking that 'cold would never get his muck off'.  He soon\nreturned, greatly improved in appearance; but so rubicund, that I\ncouldn't help thinking his face had this in common with the\nlobsters, crabs, and crawfish, - that it went into the hot water\nvery black, and came out very red.\n\nAfter tea, when the door was shut and all was made snug (the nights\nbeing cold and misty now), it seemed to me the most delicious\nretreat that the imagination of man could conceive.  To hear the\nwind getting up out at sea, to know that the fog was creeping over\nthe desolate flat outside, and to look at the fire, and think that\nthere was no house near but this one, and this one a boat, was like\nenchantment.  Little Em'ly had overcome her shyness, and was\nsitting by my side upon the lowest and least of the lockers, which\nwas just large enough for us two, and just fitted into the chimney\ncorner.  Mrs. Peggotty with the white apron, was knitting on the\nopposite side of the fire.  Peggotty at her needlework was as much\nat home with St. Paul's and the bit of wax-candle, as if they had\nnever known any other roof.  Ham, who had been giving me my first\nlesson in all-fours, was trying to recollect a scheme of telling\nfortunes with the dirty cards, and was printing off fishy\nimpressions of his thumb on all the cards he turned.  Mr. Peggotty\nwas smoking his pipe.  I felt it was a time for conversation and\nconfidence.\n\n'Mr. Peggotty!' says I.\n\n'Sir,' says he.\n\n'Did you give your son the name of Ham, because you lived in a sort\nof ark?'\n\nMr. Peggotty seemed to think it a deep idea, but answered:\n\n'No, sir.  I never giv him no name.'\n\n'Who gave him that name, then?' said I, putting question number two\nof the catechism to Mr. Peggotty.\n\n'Why, sir, his father giv it him,' said Mr. Peggotty.\n\n'I thought you were his father!'\n\n'My brother Joe was his father,' said Mr. Peggotty.\n\n'Dead, Mr. Peggotty?' I hinted, after a respectful pause.\n\n'Drowndead,' said Mr. Peggotty.\n\nI was very much surprised that Mr. Peggotty was not Ham's father,\nand began to wonder whether I was mistaken about his relationship\nto anybody else there.  I was so curious to know, that I made up my\nmind to have it out with Mr. Peggotty.\n\n'Little Em'ly,' I said, glancing at her.  'She is your daughter,\nisn't she, Mr. Peggotty?'\n\n'No, sir.  My brother-in-law, Tom, was her father.'\n\nI couldn't help it.  '- Dead, Mr. Peggotty?' I hinted, after\nanother respectful silence.\n\n'Drowndead,' said Mr. Peggotty.\n\nI felt the difficulty of resuming the subject, but had not got to\nthe bottom of it yet, and must get to the bottom somehow.  So I\nsaid:\n\n'Haven't you ANY children, Mr. Peggotty?'\n\n'No, master,' he answered with a short laugh.  'I'm a bacheldore.'\n\n'A bachelor!' I said, astonished.  'Why, who's that, Mr. Peggotty?'\npointing to the person in the apron who was knitting.\n\n'That's Missis Gummidge,' said Mr. Peggotty.\n\n'Gummidge, Mr. Peggotty?'\n\nBut at this point Peggotty - I mean my own peculiar Peggotty - made\nsuch impressive motions to me not to ask any more questions, that\nI could only sit and look at all the silent company, until it was\ntime to go to bed.  Then, in the privacy of my own little cabin,\nshe informed me that Ham and Em'ly were an orphan nephew and niece,\nwhom my host had at different times adopted in their childhood,\nwhen they were left destitute: and that Mrs. Gummidge was the widow\nof his partner in a boat, who had died very poor.  He was but a\npoor man himself, said Peggotty, but as good as gold and as true as\nsteel - those were her similes.  The only subject, she informed me,\non which he ever showed a violent temper or swore an oath, was this\ngenerosity of his; and if it were ever referred to, by any one of\nthem, he struck the table a heavy blow with his right hand (had\nsplit it on one such occasion), and swore a dreadful oath that he\nwould be 'Gormed' if he didn't cut and run for good, if it was ever\nmentioned again.  It appeared, in answer to my inquiries, that\nnobody had the least idea of the etymology of this terrible verb\npassive to be gormed; but that they all regarded it as constituting\na most solemn imprecation.\n\nI was very sensible of my entertainer's goodness, and listened to\nthe women's going to bed in another little crib like mine at the\nopposite end of the boat, and to him and Ham hanging up two\nhammocks for themselves on the hooks I had noticed in the roof, in\na very luxurious state of mind, enhanced by my being sleepy.  As\nslumber gradually stole upon me, I heard the wind howling out at\nsea and coming on across the flat so fiercely, that I had a lazy\napprehension of the great deep rising in the night.  But I\nbethought myself that I was in a boat, after all; and that a man\nlike Mr. Peggotty was not a bad person to have on board if anything\ndid happen.\n\nNothing happened, however, worse than morning.  Almost as soon as\nit shone upon the oyster-shell frame of my mirror I was out of bed,\nand out with little Em'ly, picking up stones upon the beach.\n\n'You're quite a sailor, I suppose?' I said to Em'ly.  I don't know\nthat I supposed anything of the kind, but I felt it an act of\ngallantry to say something; and a shining sail close to us made\nsuch a pretty little image of itself, at the moment, in her bright\neye, that it came into my head to say this.\n\n'No,' replied Em'ly, shaking her head, 'I'm afraid of the sea.'\n\n'Afraid!' I said, with a becoming air of boldness, and looking very\nbig at the mighty ocean.  'I an't!'\n\n'Ah! but it's cruel,' said Em'ly.  'I have seen it very cruel to\nsome of our men.  I have seen it tear a boat as big as our house,\nall to pieces.'\n\n'I hope it wasn't the boat that -'\n\n'That father was drownded in?' said Em'ly.  'No.  Not that one, I\nnever see that boat.'\n\n'Nor him?' I asked her.\n\nLittle Em'ly shook her head.  'Not to remember!'\n\nHere was a coincidence!  I immediately went into an explanation how\nI had never seen my own father; and how my mother and I had always\nlived by ourselves in the happiest state imaginable, and lived so\nthen, and always meant to live so; and how my father's grave was in\nthe churchyard near our house, and shaded by a tree, beneath the\nboughs of which I had walked and heard the birds sing many a\npleasant morning.  But there were some differences between Em'ly's\norphanhood and mine, it appeared.  She had lost her mother before\nher father; and where her father's grave was no one knew, except\nthat it was somewhere in the depths of the sea.\n\n'Besides,' said Em'ly, as she looked about for shells and pebbles,\n'your father was a gentleman and your mother is a lady; and my\nfather was a fisherman and my mother was a fisherman's daughter,\nand my uncle Dan is a fisherman.'\n\n'Dan is Mr. Peggotty, is he?' said I.\n\n'Uncle Dan - yonder,' answered Em'ly, nodding at the boat-house.\n\n'Yes.  I mean him.  He must be very good, I should think?'\n\n'Good?' said Em'ly.  'If I was ever to be a lady, I'd give him a\nsky-blue coat with diamond buttons, nankeen trousers, a red velvet\nwaistcoat, a cocked hat, a large gold watch, a silver pipe, and a\nbox of money.'\n\nI said I had no doubt that Mr. Peggotty well deserved these\ntreasures.  I must acknowledge that I felt it difficult to picture\nhim quite at his ease in the raiment proposed for him by his\ngrateful little niece, and that I was particularly doubtful of the\npolicy of the cocked hat; but I kept these sentiments to myself.\n\nLittle Em'ly had stopped and looked up at the sky in her\nenumeration of these articles, as if they were a glorious vision. \nWe went on again, picking up shells and pebbles.\n\n'You would like to be a lady?' I said.\n\nEmily looked at me, and laughed and nodded 'yes'.\n\n'I should like it very much.  We would all be gentlefolks together,\nthen.  Me, and uncle, and Ham, and Mrs. Gummidge.  We wouldn't mind\nthen, when there comes stormy weather.  - Not for our own sakes, I\nmean.  We would for the poor fishermen's, to be sure, and we'd help\n'em with money when they come to any hurt.'  This seemed to me to\nbe a very satisfactory and therefore not at all improbable picture. \nI expressed my pleasure in the contemplation of it, and little\nEm'ly was emboldened to say, shyly,\n\n'Don't you think you are afraid of the sea, now?'\n\nIt was quiet enough to reassure me, but I have no doubt if I had\nseen a moderately large wave come tumbling in, I should have taken\nto my heels, with an awful recollection of her drowned relations. \nHowever, I said 'No,' and I added, 'You don't seem to be either,\nthough you say you are,' - for she was walking much too near the\nbrink of a sort of old jetty or wooden causeway we had strolled\nupon, and I was afraid of her falling over.\n\n'I'm not afraid in this way,' said little Em'ly.  'But I wake when\nit blows, and tremble to think of Uncle Dan and Ham and believe I\nhear 'em crying out for help.  That's why I should like so much to\nbe a lady.  But I'm not afraid in this way.  Not a bit.  Look\nhere!'\n\nShe started from my side, and ran along a jagged timber which\nprotruded from the place we stood upon, and overhung the deep water\nat some height, without the least defence.  The incident is so\nimpressed on my remembrance, that if I were a draughtsman I could\ndraw its form here, I dare say, accurately as it was that day, and\nlittle Em'ly springing forward to her destruction (as it appeared\nto me), with a look that I have never forgotten, directed far out\nto sea.\n\nThe light, bold, fluttering little figure turned and came back safe\nto me, and I soon laughed at my fears, and at the cry I had\nuttered; fruitlessly in any case, for there was no one near.  But\nthere have been times since, in my manhood, many times there have\nbeen, when I have thought, Is it possible, among the possibilities\nof hidden things, that in the sudden rashness of the child and her\nwild look so far off, there was any merciful attraction of her into\ndanger, any tempting her towards him permitted on the part of her\ndead father, that her life might have a chance of ending that day? \nThere has been a time since when I have wondered whether, if the\nlife before her could have been revealed to me at a glance, and so\nrevealed as that a child could fully comprehend it, and if her\npreservation could have depended on a motion of my hand, I ought to\nhave held it up to save her.  There has been a time since - I do\nnot say it lasted long, but it has been - when I have asked myself\nthe question, would it have been better for little Em'ly to have\nhad the waters close above her head that morning in my sight; and\nwhen I have answered Yes, it would have been.\n\nThis may be premature.  I have set it down too soon, perhaps.  But\nlet it stand.\n\nWe strolled a long way, and loaded ourselves with things that we\nthought curious, and put some stranded starfish carefully back into\nthe water - I hardly know enough of the race at this moment to be\nquite certain whether they had reason to feel obliged to us for\ndoing so, or the reverse - and then made our way home to Mr.\nPeggotty's dwelling.  We stopped under the lee of the\nlobster-outhouse to exchange an innocent kiss, and went in to\nbreakfast glowing with health and pleasure.\n\n'Like two young mavishes,' Mr. Peggotty said.  I knew this meant,\nin our local dialect, like two young thrushes, and received it as\na compliment.\n\nOf course I was in love with little Em'ly.  I am sure I loved that\nbaby quite as truly, quite as tenderly, with greater purity and\nmore disinterestedness, than can enter into the best love of a\nlater time of life, high and ennobling as it is.  I am sure my\nfancy raised up something round that blue-eyed mite of a child,\nwhich etherealized, and made a very angel of her.  If, any sunny\nforenoon, she had spread a little pair of wings and flown away\nbefore my eyes, I don't think I should have regarded it as much\nmore than I had had reason to expect.\n\nWe used to walk about that dim old flat at Yarmouth in a loving\nmanner, hours and hours.  The days sported by us, as if Time had\nnot grown up himself yet, but were a child too, and always at play. \nI told Em'ly I adored her, and that unless she confessed she adored\nme I should be reduced to the necessity of killing myself with a\nsword.  She said she did, and I have no doubt she did.\n\nAs to any sense of inequality, or youthfulness, or other difficulty\nin our way, little Em'ly and I had no such trouble, because we had\nno future.  We made no more provision for growing older, than we\ndid for growing younger.  We were the admiration of Mrs. Gummidge\nand Peggotty, who used to whisper of an evening when we sat,\nlovingly, on our little locker side by side, 'Lor! wasn't it\nbeautiful!'  Mr. Peggotty smiled at us from behind his pipe, and\nHam grinned all the evening and did nothing else.  They had\nsomething of the sort of pleasure in us, I suppose, that they might\nhave had in a pretty toy, or a pocket model of the Colosseum.\n\nI soon found out that Mrs. Gummidge did not always make herself so\nagreeable as she might have been expected to do, under the\ncircumstances of her residence with Mr. Peggotty.  Mrs. Gummidge's\nwas rather a fretful disposition, and she whimpered more sometimes\nthan was comfortable for other parties in so small an\nestablishment.  I was very sorry for her; but there were moments\nwhen it would have been more agreeable, I thought, if Mrs. Gummidge\nhad had a convenient apartment of her own to retire to, and had\nstopped there until her spirits revived.\n\nMr. Peggotty went occasionally to a public-house called The Willing\nMind.  I discovered this, by his being out on the second or third\nevening of our visit, and by Mrs. Gummidge's looking up at the\nDutch clock, between eight and nine, and saying he was there, and\nthat, what was more, she had known in the morning he would go\nthere.\n\nMrs. Gummidge had been in a low state all day, and had burst into\ntears in the forenoon, when the fire smoked.  'I am a lone lorn\ncreetur',' were Mrs. Gummidge's words, when that unpleasant\noccurrence took place, 'and everythink goes contrary with me.'\n\n'Oh, it'll soon leave off,' said Peggotty - I again mean our\nPeggotty - 'and besides, you know, it's not more disagreeable to\nyou than to us.'\n\n'I feel it more,' said Mrs. Gummidge.\n\nIt was a very cold day, with cutting blasts of wind.  Mrs.\nGummidge's peculiar corner of the fireside seemed to me to be the\nwarmest and snuggest in the place, as her chair was certainly the\neasiest, but it didn't suit her that day at all.  She was\nconstantly complaining of the cold, and of its occasioning a\nvisitation in her back which she called 'the creeps'.  At last she\nshed tears on that subject, and said again that she was 'a lone\nlorn creetur' and everythink went contrary with her'.\n\n'It is certainly very cold,' said Peggotty.  'Everybody must feel\nit so.'\n\n'I feel it more than other people,' said Mrs. Gummidge.\n\nSo at dinner; when Mrs. Gummidge was always helped immediately\nafter me, to whom the preference was given as a visitor of\ndistinction.  The fish were small and bony, and the potatoes were\na little burnt.  We all acknowledged that we felt this something of\na disappointment; but Mrs. Gummidge said she felt it more than we\ndid, and shed tears again, and made that former declaration with\ngreat bitterness.\n\nAccordingly, when Mr. Peggotty came home about nine o'clock, this\nunfortunate Mrs. Gummidge was knitting in her corner, in a very\nwretched and miserable condition.  Peggotty had been working\ncheerfully.  Ham had been patching up a great pair of waterboots;\nand I, with little Em'ly by my side, had been reading to them. \nMrs. Gummidge had never made any other remark than a forlorn sigh,\nand had never raised her eyes since tea.\n\n'Well, Mates,' said Mr. Peggotty, taking his seat, 'and how are\nyou?'\n\nWe all said something, or looked something, to welcome him, except\nMrs. Gummidge, who only shook her head over her knitting.\n\n'What's amiss?' said Mr. Peggotty, with a clap of his hands. \n'Cheer up, old Mawther!'  (Mr. Peggotty meant old girl.)\n\nMrs. Gummidge did not appear to be able to cheer up.  She took out\nan old black silk handkerchief and wiped her eyes; but instead of\nputting it in her pocket, kept it out, and wiped them again, and\nstill kept it out, ready for use.\n\n'What's amiss, dame?' said Mr. Peggotty.\n\n'Nothing,' returned Mrs. Gummidge.  'You've come from The Willing\nMind, Dan'l?'\n\n'Why yes, I've took a short spell at The Willing Mind tonight,'\nsaid Mr. Peggotty.\n\n'I'm sorry I should drive you there,' said Mrs. Gummidge.\n\n'Drive!  I don't want no driving,' returned Mr. Peggotty with an\nhonest laugh.  'I only go too ready.'\n\n'Very ready,' said Mrs. Gummidge, shaking her head, and wiping her\neyes.  'Yes, yes, very ready.  I am sorry it should be along of me\nthat you're so ready.'\n\n'Along o' you!  It an't along o' you!' said Mr. Peggotty.  'Don't\nye believe a bit on it.'\n\n'Yes, yes, it is,' cried Mrs. Gummidge.  'I know what I am.  I know\nthat I am a lone lorn creetur', and not only that everythink goes\ncontrary with me, but that I go contrary with everybody.  Yes, yes. \nI feel more than other people do, and I show it more.  It's my\nmisfortun'.'\n\nI really couldn't help thinking, as I sat taking in all this, that\nthe misfortune extended to some other members of that family\nbesides Mrs. Gummidge.  But Mr. Peggotty made no such retort, only\nanswering with another entreaty to Mrs. Gummidge to cheer up.\n\n'I an't what I could wish myself to be,' said Mrs. Gummidge.  'I am\nfar from it.  I know what I am.  My troubles has made me contrary. \nI feel my troubles, and they make me contrary.  I wish I didn't\nfeel 'em, but I do.  I wish I could be hardened to 'em, but I an't. \nI make the house uncomfortable.  I don't wonder at it.  I've made\nyour sister so all day, and Master Davy.'\n\nHere I was suddenly melted, and roared out, 'No, you haven't, Mrs.\nGummidge,' in great mental distress.\n\n'It's far from right that I should do it,' said Mrs. Gummidge.  'It\nan't a fit return.  I had better go into the house and die.  I am\na lone lorn creetur', and had much better not make myself contrary\nhere.  If thinks must go contrary with me, and I must go contrary\nmyself, let me go contrary in my parish.  Dan'l, I'd better go into\nthe house, and die and be a riddance!'\n\nMrs. Gummidge retired with these words, and betook herself to bed. \nWhen she was gone, Mr. Peggotty, who had not exhibited a trace of\nany feeling but the profoundest sympathy, looked round upon us, and\nnodding his head with a lively expression of that sentiment still\nanimating his face, said in a whisper:\n\n'She's been thinking of the old 'un!'\n\nI did not quite understand what old one Mrs. Gummidge was supposed\nto have fixed her mind upon, until Peggotty, on seeing me to bed,\nexplained that it was the late Mr. Gummidge; and that her brother\nalways took that for a received truth on such occasions, and that\nit always had a moving effect upon him.  Some time after he was in\nhis hammock that night, I heard him myself repeat to Ham, 'Poor\nthing!  She's been thinking of the old 'un!'  And whenever Mrs.\nGummidge was overcome in a similar manner during the remainder of\nour stay (which happened some few times), he always said the same\nthing in extenuation of the circumstance, and always with the\ntenderest commiseration.\n\nSo the fortnight slipped away, varied by nothing but the variation\nof the tide, which altered Mr. Peggotty's times of going out and\ncoming in, and altered Ham's engagements also.  When the latter was\nunemployed, he sometimes walked with us to show us the boats and\nships, and once or twice he took us for a row.  I don't know why\none slight set of impressions should be more particularly\nassociated with a place than another, though I believe this obtains\nwith most people, in reference especially to the associations of\ntheir childhood.  I never hear the name, or read the name, of\nYarmouth, but I am reminded of a certain Sunday morning on the\nbeach, the bells ringing for church, little Em'ly leaning on my\nshoulder, Ham lazily dropping stones into the water, and the sun,\naway at sea, just breaking through the heavy mist, and showing us\nthe ships, like their own shadows.\n\nAt last the day came for going home.  I bore up against the\nseparation from Mr. Peggotty and Mrs. Gummidge, but my agony of\nmind at leaving little Em'ly was piercing.  We went arm-in-arm to\nthe public-house where the carrier put up, and I promised, on the\nroad, to write to her.  (I redeemed that promise afterwards, in\ncharacters larger than those in which apartments are usually\nannounced in manuscript, as being to let.) We were greatly overcome\nat parting; and if ever, in my life, I have had a void made in my\nheart, I had one made that day.\n\nNow, all the time I had been on my visit, I had been ungrateful to\nmy home again, and had thought little or nothing about it.  But I\nwas no sooner turned towards it, than my reproachful young\nconscience seemed to point that way with a ready finger; and I\nfelt, all the more for the sinking of my spirits, that it was my\nnest, and that my mother was my comforter and friend.\n\nThis gained upon me as we went along; so that the nearer we drew,\nthe more familiar the objects became that we passed, the more\nexcited I was to get there, and to run into her arms.  But\nPeggotty, instead of sharing in those transports, tried to check\nthem (though very kindly), and looked confused and out of sorts.\n\nBlunderstone Rookery would come, however, in spite of her, when the\ncarrier's horse pleased - and did.  How well I recollect it, on a\ncold grey afternoon, with a dull sky, threatening rain!\n\nThe door opened, and I looked, half laughing and half crying in my\npleasant agitation, for my mother.  It was not she, but a strange\nservant.\n\n'Why, Peggotty!' I said, ruefully, 'isn't she come home?'\n\n'Yes, yes, Master Davy,' said Peggotty.  'She's come home.  Wait a\nbit, Master Davy, and I'll - I'll tell you something.'\n\nBetween her agitation, and her natural awkwardness in getting out\nof the cart, Peggotty was making a most extraordinary festoon of\nherself, but I felt too blank and strange to tell her so.  When she\nhad got down, she took me by the hand; led me, wondering, into the\nkitchen; and shut the door.\n\n'Peggotty!' said I, quite frightened.  'What's the matter?'\n\n'Nothing's the matter, bless you, Master Davy dear!' she answered,\nassuming an air of sprightliness.\n\n'Something's the matter, I'm sure.  Where's mama?'\n\n'Where's mama, Master Davy?' repeated Peggotty.\n\n'Yes.  Why hasn't she come out to the gate, and what have we come\nin here for?  Oh, Peggotty!'  My eyes were full, and I felt as if\nI were going to tumble down.\n\n'Bless the precious boy!' cried Peggotty, taking hold of me.  'What\nis it?  Speak, my pet!'\n\n'Not dead, too!  Oh, she's not dead, Peggotty?'\n\nPeggotty cried out No! with an astonishing volume of voice; and\nthen sat down, and began to pant, and said I had given her a turn.\n\nI gave her a hug to take away the turn, or to give her another turn\nin the right direction, and then stood before her, looking at her\nin anxious inquiry.\n\n'You see, dear, I should have told you before now,' said Peggotty,\n'but I hadn't an opportunity.  I ought to have made it, perhaps,\nbut I couldn't azackly' - that was always the substitute for\nexactly, in Peggotty's militia of words - 'bring my mind to it.'\n\n'Go on, Peggotty,' said I, more frightened than before.\n\n'Master Davy,' said Peggotty, untying her bonnet with a shaking\nhand, and speaking in a breathless sort of way.  'What do you\nthink?  You have got a Pa!'\n\nI trembled, and turned white.  Something - I don't know what, or\nhow - connected with the grave in the churchyard, and the raising\nof the dead, seemed to strike me like an unwholesome wind.\n\n'A new one,' said Peggotty.\n\n'A new one?' I repeated.\n\nPeggotty gave a gasp, as if she were swallowing something that was\nvery hard, and, putting out her hand, said:\n\n'Come and see him.'\n\n'I don't want to see him.'\n\n- 'And your mama,' said Peggotty.\n\nI ceased to draw back, and we went straight to the best parlour,\nwhere she left me.  On one side of the fire, sat my mother; on the\nother, Mr. Murdstone.  My mother dropped her work, and arose\nhurriedly, but timidly I thought.\n\n'Now, Clara my dear,' said Mr. Murdstone.  'Recollect! control\nyourself, always control yourself!  Davy boy, how do you do?'\n\nI gave him my hand.  After a moment of suspense, I went and kissed\nmy mother: she kissed me, patted me gently on the shoulder, and sat\ndown again to her work.  I could not look at her, I could not look\nat him, I knew quite well that he was looking at us both; and I\nturned to the window and looked out there, at some shrubs that were\ndrooping their heads in the cold.\n\nAs soon as I could creep away, I crept upstairs.  My old dear\nbedroom was changed, and I was to lie a long way off.  I rambled\ndownstairs to find anything that was like itself, so altered it all\nseemed; and roamed into the yard.  I very soon started back from\nthere, for the empty dog-kennel was filled up with a great dog -\ndeep mouthed and black-haired like Him - and he was very angry at\nthe sight of me, and sprang out to get at me.\n\n\n\nCHAPTER 4\nI FALL INTO DISGRACE\n\n\nIf the room to which my bed was removed were a sentient thing that\ncould give evidence, I might appeal to it at this day - who sleeps\nthere now, I wonder! - to bear witness for me what a heavy heart I\ncarried to it.  I went up there, hearing the dog in the yard bark\nafter me all the way while I climbed the stairs; and, looking as\nblank and strange upon the room as the room looked upon me, sat\ndown with my small hands crossed, and thought.\n\nI thought of the oddest things.  Of the shape of the room, of the\ncracks in the ceiling, of the paper on the walls, of the flaws in\nthe window-glass making ripples and dimples on the prospect, of the\nwashing-stand being rickety on its three legs, and having a\ndiscontented something about it, which reminded me of Mrs. Gummidge\nunder the influence of the old one.  I was crying all the time,\nbut, except that I was conscious of being cold and dejected, I am\nsure I never thought why I cried.  At last in my desolation I began\nto consider that I was dreadfully in love with little Em'ly, and\nhad been torn away from her to come here where no one seemed to\nwant me, or to care about me, half as much as she did.  This made\nsuch a very miserable piece of business of it, that I rolled myself\nup in a corner of the counterpane, and cried myself to sleep.\n\nI was awoke by somebody saying 'Here he is!' and uncovering my hot\nhead.  My mother and Peggotty had come to look for me, and it was\none of them who had done it.\n\n'Davy,' said my mother.  'What's the matter?'\n\nI thought it was very strange that she should ask me, and answered,\n'Nothing.'  I turned over on my face, I recollect, to hide my\ntrembling lip, which answered her with greater truth.\n'Davy,' said my mother.  'Davy, my child!'\n\nI dare say no words she could have uttered would have affected me\nso much, then, as her calling me her child.  I hid my tears in the\nbedclothes, and pressed her from me with my hand, when she would\nhave raised me up.\n\n'This is your doing, Peggotty, you cruel thing!' said my mother. \n'I have no doubt at all about it.  How can you reconcile it to your\nconscience, I wonder, to prejudice my own boy against me, or\nagainst anybody who is dear to me?  What do you mean by it,\nPeggotty?'\n\nPoor Peggotty lifted up her hands and eyes, and only answered, in\na sort of paraphrase of the grace I usually repeated after dinner,\n'Lord forgive you, Mrs. Copperfield, and for what you have said\nthis minute, may you never be truly sorry!'\n\n'It's enough to distract me,' cried my mother.  'In my honeymoon,\ntoo, when my most inveterate enemy might relent, one would think,\nand not envy me a little peace of mind and happiness.  Davy, you\nnaughty boy!  Peggotty, you savage creature!  Oh, dear me!' cried\nmy mother, turning from one of us to the other, in her pettish\nwilful manner, 'what a troublesome world this is, when one has the\nmost right to expect it to be as agreeable as possible!'\n\nI felt the touch of a hand that I knew was neither hers nor\nPeggotty's, and slipped to my feet at the bed-side.  It was Mr.\nMurdstone's hand, and he kept it on my arm as he said:\n\n'What's this?  Clara, my love, have you forgotten? - Firmness, my\ndear!'\n\n'I am very sorry, Edward,' said my mother.  'I meant to be very\ngood, but I am so uncomfortable.'\n\n'Indeed!' he answered.  'That's a bad hearing, so soon, Clara.'\n\n'I say it's very hard I should be made so now,' returned my mother,\npouting; 'and it is - very hard - isn't it?'\n\nHe drew her to him, whispered in her ear, and kissed her.  I knew\nas well, when I saw my mother's head lean down upon his shoulder,\nand her arm touch his neck - I knew as well that he could mould her\npliant nature into any form he chose, as I know, now, that he did\nit.\n\n'Go you below, my love,' said Mr. Murdstone.  'David and I will\ncome down, together.  My friend,' turning a darkening face on\nPeggotty, when he had watched my mother out, and dismissed her with\na nod and a smile; 'do you know your mistress's name?'\n\n'She has been my mistress a long time, sir,' answered Peggotty, 'I\nought to know it.'\n'That's true,' he answered.  'But I thought I heard you, as I came\nupstairs, address her by a name that is not hers.  She has taken\nmine, you know.  Will you remember that?'\n\nPeggotty, with some uneasy glances at me, curtseyed herself out of\nthe room without replying; seeing, I suppose, that she was expected\nto go, and had no excuse for remaining.  When we two were left\nalone, he shut the door, and sitting on a chair, and holding me\nstanding before him, looked steadily into my eyes.  I felt my own\nattracted, no less steadily, to his.  As I recall our being opposed\nthus, face to face, I seem again to hear my heart beat fast and\nhigh.\n\n'David,' he said, making his lips thin, by pressing them together,\n'if I have an obstinate horse or dog to deal with, what do you\nthink I do?'\n\n'I don't know.'\n\n'I beat him.'\n\nI had answered in a kind of breathless whisper, but I felt, in my\nsilence, that my breath was shorter now.\n\n'I make him wince, and smart.  I say to myself, \"I'll conquer that\nfellow\"; and if it were to cost him all the blood he had, I should\ndo it.  What is that upon your face?'\n\n'Dirt,' I said.\n\nHe knew it was the mark of tears as well as I.  But if he had asked\nthe question twenty times, each time with twenty blows, I believe\nmy baby heart would have burst before I would have told him so.\n\n'You have a good deal of intelligence for a little fellow,' he\nsaid, with a grave smile that belonged to him, 'and you understood\nme very well, I see.  Wash that face, sir, and come down with me.'\n\nHe pointed to the washing-stand, which I had made out to be like\nMrs. Gummidge, and motioned me with his head to obey him directly. \nI had little doubt then, and I have less doubt now, that he would\nhave knocked me down without the least compunction, if I had\nhesitated.\n\n'Clara, my dear,' he said, when I had done his bidding, and he\nwalked me into the parlour, with his hand still on my arm; 'you\nwill not be made uncomfortable any more, I hope.  We shall soon\nimprove our youthful humours.'\n\nGod help me, I might have been improved for my whole life, I might\nhave been made another creature perhaps, for life, by a kind word\nat that season.  A word of encouragement and explanation, of pity\nfor my childish ignorance, of welcome home, of reassurance to me\nthat it was home, might have made me dutiful to him in my heart\nhenceforth, instead of in my hypocritical outside, and might have\nmade me respect instead of hate him.  I thought my mother was sorry\nto see me standing in the room so scared and strange, and that,\npresently, when I stole to a chair, she followed me with her eyes\nmore sorrowfully still - missing, perhaps, some freedom in my\nchildish tread - but the word was not spoken, and the time for it\nwas gone.\n\nWe dined alone, we three together.  He seemed to be very fond of my\nmother - I am afraid I liked him none the better for that - and she\nwas very fond of him.  I gathered from what they said, that an\nelder sister of his was coming to stay with them, and that she was\nexpected that evening.  I am not certain whether I found out then,\nor afterwards, that, without being actively concerned in any\nbusiness, he had some share in, or some annual charge upon the\nprofits of, a wine-merchant's house in London, with which his\nfamily had been connected from his great-grandfather's time, and in\nwhich his sister had a similar interest; but I may mention it in\nthis place, whether or no.\n\nAfter dinner, when we were sitting by the fire, and I was\nmeditating an escape to Peggotty without having the hardihood to\nslip away, lest it should offend the master of the house, a coach\ndrove up to the garden-gate and he went out to receive the visitor. \nMy mother followed him.  I was timidly following her, when she\nturned round at the parlour door, in the dusk, and taking me in her\nembrace as she had been used to do, whispered me to love my new\nfather and be obedient to him.  She did this hurriedly and\nsecretly, as if it were wrong, but tenderly; and, putting out her\nhand behind her, held mine in it, until we came near to where he\nwas standing in the garden, where she let mine go, and drew hers\nthrough his arm.\n\nIt was Miss Murdstone who was arrived, and a gloomy-looking lady\nshe was; dark, like her brother, whom she greatly resembled in face\nand voice; and with very heavy eyebrows, nearly meeting over her\nlarge nose, as if, being disabled by the wrongs of her sex from\nwearing whiskers, she had carried them to that account.  She\nbrought with her two uncompromising hard black boxes, with her\ninitials on the lids in hard brass nails.  When she paid the\ncoachman she took her money out of a hard steel purse, and she kept\nthe purse in a very jail of a bag which hung upon her arm by a\nheavy chain, and shut up like a bite.  I had never, at that time,\nseen such a metallic lady altogether as Miss Murdstone was.\n\nShe was brought into the parlour with many tokens of welcome, and\nthere formally recognized my mother as a new and near relation. \nThen she looked at me, and said:\n\n'Is that your boy, sister-in-law?'\n\nMy mother acknowledged me.\n\n'Generally speaking,' said Miss Murdstone, 'I don't like boys.  How\nd'ye do, boy?'\n\nUnder these encouraging circumstances, I replied that I was very\nwell, and that I hoped she was the same; with such an indifferent\ngrace, that Miss Murdstone disposed of me in two words:\n\n'Wants manner!'\n\nHaving uttered which, with great distinctness, she begged the\nfavour of being shown to her room, which became to me from that\ntime forth a place of awe and dread, wherein the two black boxes\nwere never seen open or known to be left unlocked, and where (for\nI peeped in once or twice when she was out) numerous little steel\nfetters and rivets, with which Miss Murdstone embellished herself\nwhen she was dressed, generally hung upon the looking-glass in\nformidable array.\n\nAs well as I could make out, she had come for good, and had no\nintention of ever going again.  She began to 'help' my mother next\nmorning, and was in and out of the store-closet all day, putting\nthings to rights, and making havoc in the old arrangements.  Almost\nthe first remarkable thing I observed in Miss Murdstone was, her\nbeing constantly haunted by a suspicion that the servants had a man\nsecreted somewhere on the premises.  Under the influence of this\ndelusion, she dived into the coal-cellar at the most untimely\nhours, and scarcely ever opened the door of a dark cupboard without\nclapping it to again, in the belief that she had got him.\n\nThough there was nothing very airy about Miss Murdstone, she was a\nperfect Lark in point of getting up.  She was up (and, as I believe\nto this hour, looking for that man) before anybody in the house was\nstirring.  Peggotty gave it as her opinion that she even slept with\none eye open; but I could not concur in this idea; for I tried it\nmyself after hearing the suggestion thrown out, and found it\ncouldn't be done.\n\nOn the very first morning after her arrival she was up and ringing\nher bell at cock-crow.  When my mother came down to breakfast and\nwas going to make the tea, Miss Murdstone gave her a kind of peck\non the cheek, which was her nearest approach to a kiss, and said:\n\n'Now, Clara, my dear, I am come here, you know, to relieve you of\nall the trouble I can.  You're much too pretty and thoughtless' -\nmy mother blushed but laughed, and seemed not to dislike this\ncharacter - 'to have any duties imposed upon you that can be\nundertaken by me.  If you'll be so good as give me your keys, my\ndear, I'll attend to all this sort of thing in future.'\n\nFrom that time, Miss Murdstone kept the keys in her own little jail\nall day, and under her pillow all night, and my mother had no more\nto do with them than I had.\n\nMy mother did not suffer her authority to pass from her without a\nshadow of protest.  One night when Miss Murdstone had been\ndeveloping certain household plans to her brother, of which he\nsignified his approbation, my mother suddenly began to cry, and\nsaid she thought she might have been consulted.\n\n'Clara!' said Mr. Murdstone sternly.  'Clara!  I wonder at you.'\n\n'Oh, it's very well to say you wonder, Edward!' cried my mother,\n'and it's very well for you to talk about firmness, but you\nwouldn't like it yourself.'\n\nFirmness, I may observe, was the grand quality on which both Mr.\nand Miss Murdstone took their stand.  However I might have\nexpressed my comprehension of it at that time, if I had been called\nupon, I nevertheless did clearly comprehend in my own way, that it\nwas another name for tyranny; and for a certain gloomy, arrogant,\ndevil's humour, that was in them both.  The creed, as I should\nstate it now, was this.  Mr. Murdstone was firm; nobody in his\nworld was to be so firm as Mr. Murdstone; nobody else in his world\nwas to be firm at all, for everybody was to be bent to his\nfirmness.  Miss Murdstone was an exception.  She might be firm, but\nonly by relationship, and in an inferior and tributary degree.  My\nmother was another exception.  She might be firm, and must be; but\nonly in bearing their firmness, and firmly believing there was no\nother firmness upon earth.\n\n'It's very hard,' said my mother, 'that in my own house -'\n\n'My own house?' repeated Mr. Murdstone.  'Clara!'\n\n'OUR own house, I mean,' faltered my mother, evidently frightened\n- 'I hope you must know what I mean, Edward - it's very hard that\nin YOUR own house I may not have a word to say about domestic\nmatters.  I am sure I managed very well before we were married. \nThere's evidence,' said my mother, sobbing; 'ask Peggotty if I\ndidn't do very well when I wasn't interfered with!'\n\n'Edward,' said Miss Murdstone, 'let there be an end of this.  I go\ntomorrow.'\n\n'Jane Murdstone,' said her brother, 'be silent!  How dare you to\ninsinuate that you don't know my character better than your words\nimply?'\n\n'I am sure,' my poor mother went on, at a grievous disadvantage,\nand with many tears, 'I don't want anybody to go.  I should be very\nmiserable and unhappy if anybody was to go.  I don't ask much.  I\nam not unreasonable.  I only want to be consulted sometimes.  I am\nvery much obliged to anybody who assists me, and I only want to be\nconsulted as a mere form, sometimes.  I thought you were pleased,\nonce, with my being a little inexperienced and girlish, Edward - I\nam sure you said so - but you seem to hate me for it now, you are\nso severe.'\n\n'Edward,' said Miss Murdstone, again, 'let there be an end of this. \nI go tomorrow.'\n\n'Jane Murdstone,' thundered Mr. Murdstone.  'Will you be silent? \nHow dare you?'\n\nMiss Murdstone made a jail-delivery of her pocket-handkerchief, and\nheld it before her eyes.\n\n'Clara,' he continued, looking at my mother, 'you surprise me!  You\nastound me!  Yes, I had a satisfaction in the thought of marrying\nan inexperienced and artless person, and forming her character, and\ninfusing into it some amount of that firmness and decision of which\nit stood in need.  But when Jane Murdstone is kind enough to come\nto my assistance in this endeavour, and to assume, for my sake, a\ncondition something like a housekeeper's, and when she meets with\na base return -'\n\n'Oh, pray, pray, Edward,' cried my mother, 'don't accuse me of\nbeing ungrateful.  I am sure I am not ungrateful.  No one ever said\nI was before.  I have many faults, but not that.  Oh, don't, my\ndear!'\n\n'When Jane Murdstone meets, I say,' he went on, after waiting until\nmy mother was silent, 'with a base return, that feeling of mine is\nchilled and altered.'\n\n'Don't, my love, say that!' implored my mother very piteously. \n'Oh, don't, Edward!  I can't bear to hear it.  Whatever I am, I am\naffectionate.  I know I am affectionate.  I wouldn't say it, if I\nwasn't sure that I am.  Ask Peggotty.  I am sure she'll tell you\nI'm affectionate.'\n\n'There is no extent of mere weakness, Clara,' said Mr. Murdstone in\nreply, 'that can have the least weight with me.  You lose breath.'\n\n'Pray let us be friends,' said my mother, 'I couldn't live under\ncoldness or unkindness.  I am so sorry.  I have a great many\ndefects, I know, and it's very good of you, Edward, with your\nstrength of mind, to endeavour to correct them for me.  Jane, I\ndon't object to anything.  I should be quite broken-hearted if you\nthought of leaving -' My mother was too much overcome to go on.\n\n'Jane Murdstone,' said Mr. Murdstone to his sister, 'any harsh\nwords between us are, I hope, uncommon.  It is not my fault that so\nunusual an occurrence has taken place tonight.  I was betrayed into\nit by another.  Nor is it your fault.  You were betrayed into it by\nanother.  Let us both try to forget it.  And as this,' he added,\nafter these magnanimous words, 'is not a fit scene for the boy -\nDavid, go to bed!'\n\nI could hardly find the door, through the tears that stood in my\neyes.  I was so sorry for my mother's distress; but I groped my way\nout, and groped my way up to my room in the dark, without even\nhaving the heart to say good night to Peggotty, or to get a candle\nfrom her.  When her coming up to look for me, an hour or so\nafterwards, awoke me, she said that my mother had gone to bed\npoorly, and that Mr. and Miss Murdstone were sitting alone.\n\nGoing down next morning rather earlier than usual, I paused outside\nthe parlour door, on hearing my mother's voice.  She was very\nearnestly and humbly entreating Miss Murdstone's pardon, which that\nlady granted, and a perfect reconciliation took place.  I never\nknew my mother afterwards to give an opinion on any matter, without\nfirst appealing to Miss Murdstone, or without having first\nascertained by some sure means, what Miss Murdstone's opinion was;\nand I never saw Miss Murdstone, when out of temper (she was infirm\nthat way), move her hand towards her bag as if she were going to\ntake out the keys and offer to resign them to my mother, without\nseeing that my mother was in a terrible fright.\n\nThe gloomy taint that was in the Murdstone blood, darkened the\nMurdstone religion, which was austere and wrathful.  I have\nthought, since, that its assuming that character was a necessary\nconsequence of Mr. Murdstone's firmness, which wouldn't allow him\nto let anybody off from the utmost weight of the severest penalties\nhe could find any excuse for.  Be this as it may, I well remember\nthe tremendous visages with which we used to go to church, and the\nchanged air of the place.  Again, the dreaded Sunday comes round,\nand I file into the old pew first, like a guarded captive brought\nto a condemned service.  Again, Miss Murdstone, in a black velvet\ngown, that looks as if it had been made out of a pall, follows\nclose upon me; then my mother; then her husband.  There is no\nPeggotty now, as in the old time.  Again, I listen to Miss\nMurdstone mumbling the responses, and emphasizing all the dread\nwords with a cruel relish.  Again, I see her dark eyes roll round\nthe church when she says 'miserable sinners', as if she were\ncalling all the congregation names.  Again, I catch rare glimpses\nof my mother, moving her lips timidly between the two, with one of\nthem muttering at each ear like low thunder.  Again, I wonder with\na sudden fear whether it is likely that our good old clergyman can\nbe wrong, and Mr. and Miss Murdstone right, and that all the angels\nin Heaven can be destroying angels.  Again, if I move a finger or\nrelax a muscle of my face, Miss Murdstone pokes me with her\nprayer-book, and makes my side ache.\n\nYes, and again, as we walk home, I note some neighbours looking at\nmy mother and at me, and whispering.  Again, as the three go on\narm-in-arm, and I linger behind alone, I follow some of those\nlooks, and wonder if my mother's step be really not so light as I\nhave seen it, and if the gaiety of her beauty be really almost\nworried away.  Again, I wonder whether any of the neighbours call\nto mind, as I do, how we used to walk home together, she and I; and\nI wonder stupidly about that, all the dreary dismal day.\n\nThere had been some talk on occasions of my going to boarding-\nschool.  Mr. and Miss Murdstone had originated it, and my mother\nhad of course agreed with them.  Nothing, however, was concluded on\nthe subject yet.  In the meantime, I learnt lessons at home.\nShall I ever forget those lessons!  They were presided over\nnominally by my mother, but really by Mr. Murdstone and his sister,\nwho were always present, and found them a favourable occasion for\ngiving my mother lessons in that miscalled firmness, which was the\nbane of both our lives.  I believe I was kept at home for that\npurpose.  I had been apt enough to learn, and willing enough, when\nmy mother and I had lived alone together.  I can faintly remember\nlearning the alphabet at her knee.  To this day, when I look upon\nthe fat black letters in the primer, the puzzling novelty of their\nshapes, and the easy good-nature of O and Q and S, seem to present\nthemselves again before me as they used to do.  But they recall no\nfeeling of disgust or reluctance.  On the contrary, I seem to have\nwalked along a path of flowers as far as the crocodile-book, and to\nhave been cheered by the gentleness of my mother's voice and manner\nall the way.  But these solemn lessons which succeeded those, I\nremember as the death-blow of my peace, and a grievous daily\ndrudgery and misery.  They were very long, very numerous, very hard\n- perfectly unintelligible, some of them, to me - and I was\ngenerally as much bewildered by them as I believe my poor mother\nwas herself.\n\nLet me remember how it used to be, and bring one morning back\nagain.\n\nI come into the second-best parlour after breakfast, with my books,\nand an exercise-book, and a slate.  My mother is ready for me at\nher writing-desk, but not half so ready as Mr. Murdstone in his\neasy-chair by the window (though he pretends to be reading a book),\nor as Miss Murdstone, sitting near my mother stringing steel beads. \nThe very sight of these two has such an influence over me, that I\nbegin to feel the words I have been at infinite pains to get into\nmy head, all sliding away, and going I don't know where.  I wonder\nwhere they do go, by the by?\n\nI hand the first book to my mother.  Perhaps it is a grammar,\nperhaps a history, or geography.  I take a last drowning look at\nthe page as I give it into her hand, and start off aloud at a\nracing pace while I have got it fresh.  I trip over a word.  Mr.\nMurdstone looks up.  I trip over another word.  Miss Murdstone\nlooks up.  I redden, tumble over half-a-dozen words, and stop.  I\nthink my mother would show me the book if she dared, but she does\nnot dare, and she says softly:\n\n'Oh, Davy, Davy!'\n\n'Now, Clara,' says Mr. Murdstone, 'be firm with the boy.  Don't\nsay, \"Oh, Davy, Davy!\"  That's childish.  He knows his lesson, or\nhe does not know it.'\n\n'He does NOT know it,' Miss Murdstone interposes awfully.\n\n'I am really afraid he does not,' says my mother.\n\n'Then, you see, Clara,' returns Miss Murdstone, 'you should just\ngive him the book back, and make him know it.'\n\n'Yes, certainly,' says my mother; 'that is what I intend to do, my\ndear Jane.  Now, Davy, try once more, and don't be stupid.'\n\nI obey the first clause of the injunction by trying once more, but\nam not so successful with the second, for I am very stupid.  I\ntumble down before I get to the old place, at a point where I was\nall right before, and stop to think.  But I can't think about the\nlesson.  I think of the number of yards of net in Miss Murdstone's\ncap, or of the price of Mr. Murdstone's dressing-gown, or any such\nridiculous problem that I have no business with, and don't want to\nhave anything at all to do with.  Mr. Murdstone makes a movement of\nimpatience which I have been expecting for a long time.  Miss\nMurdstone does the same.  My mother glances submissively at them,\nshuts the book, and lays it by as an arrear to be worked out when\nmy other tasks are done.\n\nThere is a pile of these arrears very soon, and it swells like a\nrolling snowball.  The bigger it gets, the more stupid I get.  The\ncase is so hopeless, and I feel that I am wallowing in such a bog\nof nonsense, that I give up all idea of getting out, and abandon\nmyself to my fate.  The despairing way in which my mother and I\nlook at each other, as I blunder on, is truly melancholy.  But the\ngreatest effect in these miserable lessons is when my mother\n(thinking nobody is observing her) tries to give me the cue by the\nmotion of her lips.  At that instant, Miss Murdstone, who has been\nlying in wait for nothing else all along, says in a deep warning\nvoice:\n\n'Clara!'\n\nMy mother starts, colours, and smiles faintly.  Mr. Murdstone comes\nout of his chair, takes the book, throws it at me or boxes my ears\nwith it, and turns me out of the room by the shoulders.\n\nEven when the lessons are done, the worst is yet to happen, in the\nshape of an appalling sum.  This is invented for me, and delivered\nto me orally by Mr. Murdstone, and begins, 'If I go into a\ncheesemonger's shop, and buy five thousand double-Gloucester\ncheeses at fourpence-halfpenny each, present payment' - at which I\nsee Miss Murdstone secretly overjoyed.  I pore over these cheeses\nwithout any result or enlightenment until dinner-time, when, having\nmade a Mulatto of myself by getting the dirt of the slate into the\npores of my skin, I have a slice of bread to help me out with the\ncheeses, and am considered in disgrace for the rest of the evening.\n\nIt seems to me, at this distance of time, as if my unfortunate\nstudies generally took this course.  I could have done very well if\nI had been without the Murdstones; but the influence of the\nMurdstones upon me was like the fascination of two snakes on a\nwretched young bird.  Even when I did get through the morning with\ntolerable credit, there was not much gained but dinner; for Miss\nMurdstone never could endure to see me untasked, and if I rashly\nmade any show of being unemployed, called her brother's attention\nto me by saying, 'Clara, my dear, there's nothing like work - give\nyour boy an exercise'; which caused me to be clapped down to some\nnew labour, there and then.  As to any recreation with other\nchildren of my age, I had very little of that; for the gloomy\ntheology of the Murdstones made all children out to be a swarm of\nlittle vipers (though there WAS a child once set in the midst of\nthe Disciples), and held that they contaminated one another.\n\nThe natural result of this treatment, continued, I suppose, for\nsome six months or more, was to make me sullen, dull, and dogged. \nI was not made the less so by my sense of being daily more and more\nshut out and alienated from my mother.  I believe I should have\nbeen almost stupefied but for one circumstance.\n\nIt was this.  My father had left a small collection of books in a\nlittle room upstairs, to which I had access (for it adjoined my\nown) and which nobody else in our house ever troubled.  From that\nblessed little room, Roderick Random, Peregrine Pickle, Humphrey\nClinker, Tom Jones, the Vicar of Wakefield, Don Quixote, Gil Blas,\nand Robinson Crusoe, came out, a glorious host, to keep me company. \nThey kept alive my fancy, and my hope of something beyond that\nplace and time, - they, and the Arabian Nights, and the Tales of\nthe Genii, - and did me no harm; for whatever harm was in some of\nthem was not there for me; I knew nothing of it.  It is astonishing\nto me now, how I found time, in the midst of my porings and\nblunderings over heavier themes, to read those books as I did.  It\nis curious to me how I could ever have consoled myself under my\nsmall troubles (which were great troubles to me), by impersonating\nmy favourite characters in them - as I did - and by putting Mr. and\nMiss Murdstone into all the bad ones - which I did too.  I have\nbeen Tom Jones (a child's Tom Jones, a harmless creature) for a\nweek together.  I have sustained my own idea of Roderick Random for\na month at a stretch, I verily believe.  I had a greedy relish for\na few volumes of Voyages and Travels - I forget what, now - that\nwere on those shelves; and for days and days I can remember to have\ngone about my region of our house, armed with the centre-piece out\nof an old set of boot-trees - the perfect realization of Captain\nSomebody, of the Royal British Navy, in danger of being beset by\nsavages, and resolved to sell his life at a great price.  The\nCaptain never lost dignity, from having his ears boxed with the\nLatin Grammar.  I did; but the Captain was a Captain and a hero, in\ndespite of all the grammars of all the languages in the world, dead\nor alive.\n\nThis was my only and my constant comfort.  When I think of it, the\npicture always rises in my mind, of a summer evening, the boys at\nplay in the churchyard, and I sitting on my bed, reading as if for\nlife.  Every barn in the neighbourhood, every stone in the church,\nand every foot of the churchyard, had some association of its own,\nin my mind, connected with these books, and stood for some locality\nmade famous in them.  I have seen Tom Pipes go climbing up the\nchurch-steeple; I have watched Strap, with the knapsack on his\nback, stopping to rest himself upon the wicket-gate; and I know\nthat Commodore Trunnion held that club with Mr. Pickle, in the\nparlour of our little village alehouse.\n\nThe reader now understands, as well as I do, what I was when I came\nto that point of my youthful history to which I am now coming\nagain.\n\nOne morning when I went into the parlour with my books, I found my\nmother looking anxious, Miss Murdstone looking firm, and Mr.\nMurdstone binding something round the bottom of a cane - a lithe\nand limber cane, which he left off binding when I came in, and\npoised and switched in the air.\n\n'I tell you, Clara,' said Mr. Murdstone, 'I have been often flogged\nmyself.'\n\n'To be sure; of course,' said Miss Murdstone.\n\n'Certainly, my dear Jane,' faltered my mother, meekly.  'But - but\ndo you think it did Edward good?'\n\n'Do you think it did Edward harm, Clara?' asked Mr. Murdstone,\ngravely.\n\n'That's the point,' said his sister.\n\nTo this my mother returned, 'Certainly, my dear Jane,' and said no\nmore.\n\nI felt apprehensive that I was personally interested in this\ndialogue, and sought Mr. Murdstone's eye as it lighted on mine.\n\n'Now, David,' he said - and I saw that cast again as he said it -\n'you must be far more careful today than usual.'  He gave the cane\nanother poise, and another switch; and having finished his\npreparation of it, laid it down beside him, with an impressive\nlook, and took up his book.\n\nThis was a good freshener to my presence of mind, as a beginning. \nI felt the words of my lessons slipping off, not one by one, or\nline by line, but by the entire page; I tried to lay hold of them;\nbut they seemed, if I may so express it, to have put skates on, and\nto skim away from me with a smoothness there was no checking.\n\nWe began badly, and went on worse.  I had come in with an idea of\ndistinguishing myself rather, conceiving that I was very well\nprepared; but it turned out to be quite a mistake.  Book after book\nwas added to the heap of failures, Miss Murdstone being firmly\nwatchful of us all the time.  And when we came at last to the five\nthousand cheeses (canes he made it that day, I remember), my mother\nburst out crying.\n\n'Clara!' said Miss Murdstone, in her warning voice.\n\n'I am not quite well, my dear Jane, I think,' said my mother.\n\nI saw him wink, solemnly, at his sister, as he rose and said,\ntaking up the cane:\n\n'Why, Jane, we can hardly expect Clara to bear, with perfect\nfirmness, the worry and torment that David has occasioned her\ntoday.  That would be stoical.  Clara is greatly strengthened and\nimproved, but we can hardly expect so much from her.  David, you\nand I will go upstairs, boy.'\n\nAs he took me out at the door, my mother ran towards us.  Miss\nMurdstone said, 'Clara! are you a perfect fool?' and interfered. \nI saw my mother stop her ears then, and I heard her crying.\n\nHe walked me up to my room slowly and gravely - I am certain he had\na delight in that formal parade of executing justice - and when we\ngot there, suddenly twisted my head under his arm.\n\n'Mr. Murdstone!  Sir!' I cried to him.  'Don't!  Pray don't beat\nme!  I have tried to learn, sir, but I can't learn while you and\nMiss Murdstone are by.  I can't indeed!'\n\n'Can't you, indeed, David?' he said.  'We'll try that.'\n\nHe had my head as in a vice, but I twined round him somehow, and\nstopped him for a moment, entreating him not to beat me.  It was\nonly a moment that I stopped him, for he cut me heavily an instant\nafterwards, and in the same instant I caught the hand with which he\nheld me in my mouth, between my teeth, and bit it through.  It sets\nmy teeth on edge to think of it.\n\nHe beat me then, as if he would have beaten me to death.  Above all\nthe noise we made, I heard them running up the stairs, and crying\nout - I heard my mother crying out - and Peggotty.  Then he was\ngone; and the door was locked outside; and I was lying, fevered and\nhot, and torn, and sore, and raging in my puny way, upon the floor.\n\nHow well I recollect, when I became quiet, what an unnatural\nstillness seemed to reign through the whole house!  How well I\nremember, when my smart and passion began to cool, how wicked I\nbegan to feel!\n\nI sat listening for a long while, but there was not a sound.  I\ncrawled up from the floor, and saw my face in the glass, so\nswollen, red, and ugly that it almost frightened me.  My stripes\nwere sore and stiff, and made me cry afresh, when I moved; but they\nwere nothing to the guilt I felt.  It lay heavier on my breast than\nif I had been a most atrocious criminal, I dare say.\n\nIt had begun to grow dark, and I had shut the window (I had been\nlying, for the most part, with my head upon the sill, by turns\ncrying, dozing, and looking listlessly out), when the key was\nturned, and Miss Murdstone came in with some bread and meat, and\nmilk.  These she put down upon the table without a word, glaring at\nme the while with exemplary firmness, and then retired, locking the\ndoor after her.\n\nLong after it was dark I sat there, wondering whether anybody else\nwould come.  When this appeared improbable for that night, I\nundressed, and went to bed; and, there, I began to wonder fearfully\nwhat would be done to me.  Whether it was a criminal act that I had\ncommitted?  Whether I should be taken into custody, and sent to\nprison?  Whether I was at all in danger of being hanged?\n\nI never shall forget the waking, next morning; the being cheerful\nand fresh for the first moment, and then the being weighed down by\nthe stale and dismal oppression of remembrance.  Miss Murdstone\nreappeared before I was out of bed; told me, in so many words, that\nI was free to walk in the garden for half an hour and no longer;\nand retired, leaving the door open, that I might avail myself of\nthat permission.\n\nI did so, and did so every morning of my imprisonment, which lasted\nfive days.  If I could have seen my mother alone, I should have\ngone down on my knees to her and besought her forgiveness; but I\nsaw no one, Miss Murdstone excepted, during the whole time - except\nat evening prayers in the parlour; to which I was escorted by Miss\nMurdstone after everybody else was placed; where I was stationed,\na young outlaw, all alone by myself near the door; and whence I was\nsolemnly conducted by my jailer, before any one arose from the\ndevotional posture.  I only observed that my mother was as far off\nfrom me as she could be, and kept her face another way so that I\nnever saw it; and that Mr. Murdstone's hand was bound up in a large\nlinen wrapper.\n\nThe length of those five days I can convey no idea of to any one. \nThey occupy the place of years in my remembrance.  The way in which\nI listened to all the incidents of the house that made themselves\naudible to me; the ringing of bells, the opening and shutting of\ndoors, the murmuring of voices, the footsteps on the stairs; to any\nlaughing, whistling, or singing, outside, which seemed more dismal\nthan anything else to me in my solitude and disgrace - the\nuncertain pace of the hours, especially at night, when I would wake\nthinking it was morning, and find that the family were not yet gone\nto bed, and that all the length of night had yet to come - the\ndepressed dreams and nightmares I had - the return of day, noon,\nafternoon, evening, when the boys played in the churchyard, and I\nwatched them from a distance within the room, being ashamed to show\nmyself at the window lest they should know I was a prisoner - the\nstrange sensation of never hearing myself speak - the fleeting\nintervals of something like cheerfulness, which came with eating\nand drinking, and went away with it - the setting in of rain one\nevening, with a fresh smell, and its coming down faster and faster\nbetween me and the church, until it and gathering night seemed to\nquench me in gloom, and fear, and remorse - all this appears to\nhave gone round and round for years instead of days, it is so\nvividly and strongly stamped on my remembrance.\nOn the last night of my restraint, I was awakened by hearing my own\nname spoken in a whisper.  I started up in bed, and putting out my\narms in the dark, said:\n\n'Is that you, Peggotty?'\n\nThere was no immediate answer, but presently I heard my name again,\nin a tone so very mysterious and awful, that I think I should have\ngone into a fit, if it had not occurred to me that it must have\ncome through the keyhole.\n\nI groped my way to the door, and putting my own lips to the\nkeyhole, whispered: 'Is that you, Peggotty dear?'\n\n'Yes, my own precious Davy,' she replied.  'Be as soft as a mouse,\nor the Cat'll hear us.'\n\nI understood this to mean Miss Murdstone, and was sensible of the\nurgency of the case; her room being close by.\n\n'How's mama, dear Peggotty?  Is she very angry with me?'\n\nI could hear Peggotty crying softly on her side of the keyhole, as\nI was doing on mine, before she answered.  'No.  Not very.'\n\n'What is going to be done with me, Peggotty dear?  Do you know?'\n\n'School.  Near London,' was Peggotty's answer.  I was obliged to\nget her to repeat it, for she spoke it the first time quite down my\nthroat, in consequence of my having forgotten to take my mouth away\nfrom the keyhole and put my ear there; and though her words tickled\nme a good deal, I didn't hear them.\n\n'When, Peggotty?'\n\n'Tomorrow.'\n\n'Is that the reason why Miss Murdstone took the clothes out of my\ndrawers?' which she had done, though I have forgotten to mention\nit.\n\n'Yes,' said Peggotty.  'Box.'\n\n'Shan't I see mama?'\n\n'Yes,' said Peggotty.  'Morning.'\n\nThen Peggotty fitted her mouth close to the keyhole, and delivered\nthese words through it with as much feeling and earnestness as a\nkeyhole has ever been the medium of communicating, I will venture\nto assert: shooting in each broken little sentence in a convulsive\nlittle burst of its own.\n\n'Davy, dear.  If I ain't been azackly as intimate with you. \nLately, as I used to be.  It ain't because I don't love you.  just\nas well and more, my pretty poppet.  It's because I thought it\nbetter for you.  And for someone else besides.  Davy, my darling,\nare you listening?  Can you hear?'\n\n'Ye-ye-ye-yes, Peggotty!' I sobbed.\n\n'My own!' said Peggotty, with infinite compassion.  'What I want to\nsay, is.  That you must never forget me.  For I'll never forget\nyou.  And I'll take as much care of your mama, Davy.  As ever I\ntook of you.  And I won't leave her.  The day may come when she'll\nbe glad to lay her poor head.  On her stupid, cross old Peggotty's\narm again.  And I'll write to you, my dear.  Though I ain't no\nscholar.  And I'll - I'll -' Peggotty fell to kissing the keyhole,\nas she couldn't kiss me.\n\n'Thank you, dear Peggotty!' said I.  'Oh, thank you!  Thank you! \nWill you promise me one thing, Peggotty?  Will you write and tell\nMr. Peggotty and little Em'ly, and Mrs. Gummidge and Ham, that I am\nnot so bad as they might suppose, and that I sent 'em all my love\n- especially to little Em'ly?  Will you, if you please, Peggotty?'\n\nThe kind soul promised, and we both of us kissed the keyhole with\nthe greatest affection - I patted it with my hand, I recollect, as\nif it had been her honest face - and parted.  From that night there\ngrew up in my breast a feeling for Peggotty which I cannot very\nwell define.  She did not replace my mother; no one could do that;\nbut she came into a vacancy in my heart, which closed upon her, and\nI felt towards her something I have never felt for any other human\nbeing.  It was a sort of comical affection, too; and yet if she had\ndied, I cannot think what I should have done, or how I should have\nacted out the tragedy it would have been to me.\n\nIn the morning Miss Murdstone appeared as usual, and told me I was\ngoing to school; which was not altogether such news to me as she\nsupposed.  She also informed me that when I was dressed, I was to\ncome downstairs into the parlour, and have my breakfast.  There, I\nfound my mother, very pale and with red eyes: into whose arms I\nran, and begged her pardon from my suffering soul.\n\n'Oh, Davy!' she said.  'That you could hurt anyone I love!  Try to\nbe better, pray to be better!  I forgive you; but I am so grieved,\nDavy, that you should have such bad passions in your heart.'\n\nThey had persuaded her that I was a wicked fellow, and she was more\nsorry for that than for my going away.  I felt it sorely.  I tried\nto eat my parting breakfast, but my tears dropped upon my bread-\nand-butter, and trickled into my tea.  I saw my mother look at me\nsometimes, and then glance at the watchful Miss Murdstone, and than\nlook down, or look away.\n\n'Master Copperfield's box there!' said Miss Murdstone, when wheels\nwere heard at the gate.\n\nI looked for Peggotty, but it was not she; neither she nor Mr.\nMurdstone appeared.  My former acquaintance, the carrier, was at\nthe door.  the box was taken out to his cart, and lifted in.\n\n'Clara!' said Miss Murdstone, in her warning note.\n\n'Ready, my dear Jane,' returned my mother.  'Good-bye, Davy.  You\nare going for your own good.  Good-bye, my child.  You will come\nhome in the holidays, and be a better boy.'\n\n'Clara!' Miss Murdstone repeated.\n\n'Certainly, my dear Jane,' replied my mother, who was holding me. \n'I forgive you, my dear boy.  God bless you!'\n\n'Clara!' Miss Murdstone repeated.\n\nMiss Murdstone was good enough to take me out to the cart, and to\nsay on the way that she hoped I would repent, before I came to a\nbad end; and then I got into the cart, and the lazy horse walked\noff with it.\n\n\n\nCHAPTER 5\nI AM SENT AWAY FROM HOME\n\n\nWe might have gone about half a mile, and my pocket-handkerchief\nwas quite wet through, when the carrier stopped short.  Looking out\nto ascertain for what, I saw, to MY amazement, Peggotty burst from\na hedge and climb into the cart.  She took me in both her arms, and\nsqueezed me to her stays until the pressure on my nose was\nextremely painful, though I never thought of that till afterwards\nwhen I found it very tender.  Not a single word did Peggotty speak. \nReleasing one of her arms, she put it down in her pocket to the\nelbow, and brought out some paper bags of cakes which she crammed\ninto my pockets, and a purse which she put into my hand, but not\none word did she say.  After another and a final squeeze with both\narms, she got down from the cart and ran away; and, my belief is,\nand has always been, without a solitary button on her gown.  I\npicked up one, of several that were rolling about, and treasured it\nas a keepsake for a long time.\n\nThe carrier looked at me, as if to inquire if she were coming back. \nI shook my head, and said I thought not.  'Then come up,' said the\ncarrier to the lazy horse; who came up accordingly.\n\nHaving by this time cried as much as I possibly could, I began to\nthink it was of no use crying any more, especially as neither\nRoderick Random, nor that Captain in the Royal British Navy, had\never cried, that I could remember, in trying situations.  The\ncarrier, seeing me in this resolution, proposed that my pocket-\nhandkerchief should be spread upon the horse's back to dry.  I\nthanked him, and assented; and particularly small it looked, under\nthose circumstances.\n\nI had now leisure to examine the purse.  It was a stiff leather\npurse, with a snap, and had three bright shillings in it, which\nPeggotty had evidently polished up with whitening, for my greater\ndelight.  But its most precious contents were two half-crowns\nfolded together in a bit of paper, on which was written, in my\nmother's hand, 'For Davy.  With my love.'  I was so overcome by\nthis, that I asked the carrier to be so good as to reach me my\npocket-handkerchief again; but he said he thought I had better do\nwithout it, and I thought I really had, so I wiped my eyes on my\nsleeve and stopped myself.\n\nFor good, too; though, in consequence of my previous emotions, I\nwas still occasionally seized with a stormy sob.  After we had\njogged on for some little time, I asked the carrier if he was going\nall the way.\n\n'All the way where?' inquired the carrier.\n\n'There,' I said.\n\n'Where's there?' inquired the carrier.\n\n'Near London,' I said.\n\n'Why that horse,' said the carrier, jerking the rein to point him\nout, 'would be deader than pork afore he got over half the ground.'\n\n'Are you only going to Yarmouth then?' I asked.\n\n'That's about it,' said the carrier.  'And there I shall take you\nto the stage-cutch, and the stage-cutch that'll take you to -\nwherever it is.'\n\nAs this was a great deal for the carrier (whose name was Mr.\nBarkis) to say - he being, as I observed in a former chapter, of a\nphlegmatic temperament, and not at all conversational - I offered\nhim a cake as a mark of attention, which he ate at one gulp,\nexactly like an elephant, and which made no more impression on his\nbig face than it would have done on an elephant's.\n\n'Did SHE make 'em, now?' said Mr. Barkis, always leaning forward,\nin his slouching way, on the footboard of the cart with an arm on\neach knee.\n\n'Peggotty, do you mean, sir?'\n\n'Ah!' said Mr. Barkis.  'Her.'\n\n'Yes.  She makes all our pastry, and does all our cooking.'\n\n'Do she though?' said Mr. Barkis.\nHe made up his mouth as if to whistle, but he didn't whistle.  He\nsat looking at the horse's ears, as if he saw something new there;\nand sat so, for a considerable time.  By and by, he said:\n\n'No sweethearts, I b'lieve?'\n\n'Sweetmeats did you say, Mr. Barkis?'  For I thought he wanted\nsomething else to eat, and had pointedly alluded to that\ndescription of refreshment.\n\n'Hearts,' said Mr. Barkis.  'Sweet hearts; no person walks with\nher!'\n\n'With Peggotty?'\n\n'Ah!' he said.  'Her.'\n\n'Oh, no.  She never had a sweetheart.'\n\n'Didn't she, though!' said Mr. Barkis.\n\nAgain he made up his mouth to whistle, and again he didn't whistle,\nbut sat looking at the horse's ears.\n\n'So she makes,' said Mr. Barkis, after a long interval of\nreflection, 'all the apple parsties, and doos all the cooking, do\nshe?'\n\nI replied that such was the fact.\n\n'Well.  I'll tell you what,' said Mr. Barkis.  'P'raps you might be\nwritin' to her?'\n\n'I shall certainly write to her,' I rejoined.\n\n'Ah!' he said, slowly turning his eyes towards me.  'Well!  If you\nwas writin' to her, p'raps you'd recollect to say that Barkis was\nwillin'; would you?'\n\n'That Barkis is willing,' I repeated, innocently.  'Is that all the\nmessage?'\n\n'Ye-es,' he said, considering.  'Ye-es.  Barkis is willin'.'\n\n'But you will be at Blunderstone again tomorrow, Mr. Barkis,' I\nsaid, faltering a little at the idea of my being far away from it\nthen, and could give your own message so much better.'\n\nAs he repudiated this suggestion, however, with a jerk of his head,\nand once more confirmed his previous request by saying, with\nprofound gravity, 'Barkis is willin'.  That's the message,' I\nreadily undertook its transmission.  While I was waiting for the\ncoach in the hotel at Yarmouth that very afternoon, I procured a\nsheet of paper and an inkstand, and wrote a note to Peggotty, which\nran thus: 'My dear Peggotty.  I have come here safe.  Barkis is\nwilling.  My love to mama.  Yours affectionately.  P.S.  He says he\nparticularly wants you to know - BARKIS IS WILLING.'\n\nWhen I had taken this commission on myself prospectively, Mr.\nBarkis relapsed into perfect silence; and I, feeling quite worn out\nby all that had happened lately, lay down on a sack in the cart and\nfell asleep.  I slept soundly until we got to Yarmouth; which was\nso entirely new and strange to me in the inn-yard to which we\ndrove, that I at once abandoned a latent hope I had had of meeting\nwith some of Mr. Peggotty's family there, perhaps even with little\nEm'ly herself.\n\nThe coach was in the yard, shining very much all over, but without\nany horses to it as yet; and it looked in that state as if nothing\nwas more unlikely than its ever going to London.  I was thinking\nthis, and wondering what would ultimately become of my box, which\nMr. Barkis had put down on the yard-pavement by the pole (he having\ndriven up the yard to turn his cart), and also what would\nultimately become of me, when a lady looked out of a bow-window\nwhere some fowls and joints of meat were hanging up, and said:\n\n'Is that the little gentleman from Blunderstone?'\n\n'Yes, ma'am,' I said.\n\n'What name?' inquired the lady.\n\n'Copperfield, ma'am,' I said.\n\n'That won't do,' returned the lady.  'Nobody's dinner is paid for\nhere, in that name.'\n\n'Is it Murdstone, ma'am?' I said.\n\n'If you're Master Murdstone,' said the lady, 'why do you go and\ngive another name, first?'\n\nI explained to the lady how it was, who than rang a bell, and\ncalled out, 'William! show the coffee-room!' upon which a waiter\ncame running out of a kitchen on the opposite side of the yard to\nshow it, and seemed a good deal surprised when he was only to show\nit to me.\n\nIt was a large long room with some large maps in it.  I doubt if I\ncould have felt much stranger if the maps had been real foreign\ncountries, and I cast away in the middle of them.  I felt it was\ntaking a liberty to sit down, with my cap in my hand, on the corner\nof the chair nearest the door; and when the waiter laid a cloth on\npurpose for me, and put a set of castors on it, I think I must have\nturned red all over with modesty.\n\nHe brought me some chops, and vegetables, and took the covers off\nin such a bouncing manner that I was afraid I must have given him\nsome offence.  But he greatly relieved my mind by putting a chair\nfor me at the table, and saying, very affably, 'Now, six-foot! come\non!'\n\nI thanked him, and took my seat at the board; but found it\nextremely difficult to handle my knife and fork with anything like\ndexterity, or to avoid splashing myself with the gravy, while he\nwas standing opposite, staring so hard, and making me blush in the\nmost dreadful manner every time I caught his eye.  After watching\nme into the second chop, he said:\n\n'There's half a pint of ale for you.  Will you have it now?'\n\nI thanked him and said, 'Yes.'  Upon which he poured it out of a\njug into a large tumbler, and held it up against the light, and\nmade it look beautiful.\n\n'My eye!' he said.  'It seems a good deal, don't it?'\n\n'It does seem a good deal,' I answered with a smile.  For it was\nquite delightful to me, to find him so pleasant.  He was a\ntwinkling-eyed, pimple-faced man, with his hair standing upright\nall over his head; and as he stood with one arm a-kimbo, holding up\nthe glass to the light with the other hand, he looked quite\nfriendly.\n\n'There was a gentleman here, yesterday,' he said - 'a stout\ngentleman, by the name of Topsawyer - perhaps you know him?'\n\n'No,' I said, 'I don't think -'\n\n'In breeches and gaiters, broad-brimmed hat, grey coat, speckled\nchoker,' said the waiter.\n\n'No,' I said bashfully, 'I haven't the pleasure -'\n\n'He came in here,' said the waiter, looking at the light through\nthe tumbler, 'ordered a glass of this ale - WOULD order it - I told\nhim not - drank it, and fell dead.  It was too old for him.  It\noughtn't to be drawn; that's the fact.'\n\nI was very much shocked to hear of this melancholy accident, and\nsaid I thought I had better have some water.\n\n'Why you see,' said the waiter, still looking at the light through\nthe tumbler, with one of his eyes shut up, 'our people don't like\nthings being ordered and left.  It offends 'em.  But I'll drink it,\nif you like.  I'm used to it, and use is everything.  I don't think\nit'll hurt me, if I throw my head back, and take it off quick. \nShall I?'\n\nI replied that he would much oblige me by drinking it, if he\nthought he could do it safely, but by no means otherwise.  When he\ndid throw his head back, and take it off quick, I had a horrible\nfear, I confess, of seeing him meet the fate of the lamented Mr.\nTopsawyer, and fall lifeless on the carpet.  But it didn't hurt\nhim.  On the contrary, I thought he seemed the fresher for it.\n\n'What have we got here?' he said, putting a fork into my dish. \n'Not chops?'\n\n'Chops,' I said.\n\n'Lord bless my soul!' he exclaimed, 'I didn't know they were chops. \nWhy, a chop's the very thing to take off the bad effects of that\nbeer!  Ain't it lucky?'\n\nSo he took a chop by the bone in one hand, and a potato in the\nother, and ate away with a very good appetite, to my extreme\nsatisfaction.  He afterwards took another chop, and another potato;\nand after that, another chop and another potato.  When we had done,\nhe brought me a pudding, and having set it before me, seemed to\nruminate, and to become absent in his mind for some moments.\n\n'How's the pie?' he said, rousing himself.\n\n'It's a pudding,' I made answer.\n\n'Pudding!' he exclaimed.  'Why, bless me, so it is!  What!' looking\nat it nearer.  'You don't mean to say it's a batter-pudding!'\n\n'Yes, it is indeed.'\n\n'Why, a batter-pudding,' he said, taking up a table-spoon, 'is my\nfavourite pudding!  Ain't that lucky?  Come on, little 'un, and\nlet's see who'll get most.'\n\nThe waiter certainly got most.  He entreated me more than once to\ncome in and win, but what with his table-spoon to my tea-spoon, his\ndispatch to my dispatch, and his appetite to my appetite, I was\nleft far behind at the first mouthful, and had no chance with him. \nI never saw anyone enjoy a pudding so much, I think; and he\nlaughed, when it was all gone, as if his enjoyment of it lasted\nstill.\n\nFinding him so very friendly and companionable, it was then that I\nasked for the pen and ink and paper, to write to Peggotty.  He not\nonly brought it immediately, but was good enough to look over me\nwhile I wrote the letter.  When I had finished it, he asked me\nwhere I was going to school.\n\nI said, 'Near London,' which was all I knew.\n\n'Oh! my eye!' he said, looking very low-spirited, 'I am sorry for\nthat.'\n\n'Why?' I asked him.\n\n'Oh, Lord!' he said, shaking his head, 'that's the school where\nthey broke the boy's ribs - two ribs - a little boy he was.  I\nshould say he was - let me see - how old are you, about?'\n\nI told him between eight and nine.\n\n'That's just his age,' he said.  'He was eight years and six months\nold when they broke his first rib; eight years and eight months old\nwhen they broke his second, and did for him.'\n\nI could not disguise from myself, or from the waiter, that this was\nan uncomfortable coincidence, and inquired how it was done.  His\nanswer was not cheering to my spirits, for it consisted of two\ndismal words, 'With whopping.'\n\nThe blowing of the coach-horn in the yard was a seasonable\ndiversion, which made me get up and hesitatingly inquire, in the\nmingled pride and diffidence of having a purse (which I took out of\nmy pocket), if there were anything to pay.\n\n'There's a sheet of letter-paper,' he returned.  'Did you ever buy\na sheet of letter-paper?'\n\nI could not remember that I ever had.\n\n'It's dear,' he said, 'on account of the duty.  Threepence.  That's\nthe way we're taxed in this country.  There's nothing else, except\nthe waiter.  Never mind the ink.  I lose by that.'\n\n'What should you - what should I - how much ought I to - what would\nit be right to pay the waiter, if you please?' I stammered,\nblushing.\n\n'If I hadn't a family, and that family hadn't the cowpock,' said\nthe waiter, 'I wouldn't take a sixpence.  If I didn't support a\naged pairint, and a lovely sister,' - here the waiter was greatly\nagitated - 'I wouldn't take a farthing.  If I had a good place, and\nwas treated well here, I should beg acceptance of a trifle, instead\nof taking of it.  But I live on broken wittles - and I sleep on the\ncoals' - here the waiter burst into tears.\n\nI was very much concerned for his misfortunes, and felt that any\nrecognition short of ninepence would be mere brutality and hardness\nof heart.  Therefore I gave him one of my three bright shillings,\nwhich he received with much humility and veneration, and spun up\nwith his thumb, directly afterwards, to try the goodness of.\n\nIt was a little disconcerting to me, to find, when I was being\nhelped up behind the coach, that I was supposed to have eaten all\nthe dinner without any assistance.  I discovered this, from\noverhearing the lady in the bow-window say to the guard, 'Take care\nof that child, George, or he'll burst!' and from observing that the\nwomen-servants who were about the place came out to look and giggle\nat me as a young phenomenon.  My unfortunate friend the waiter, who\nhad quite recovered his spirits, did not appear to be disturbed by\nthis, but joined in the general admiration without being at all\nconfused.  If I had any doubt of him, I suppose this half awakened\nit; but I am inclined to believe that with the simple confidence of\na child, and the natural reliance of a child upon superior years\n(qualities I am very sorry any children should prematurely change\nfor worldly wisdom), I had no serious mistrust of him on the whole,\neven then.\n\nI felt it rather hard, I must own, to be made, without deserving\nit, the subject of jokes between the coachman and guard as to the\ncoach drawing heavy behind, on account of my sitting there, and as\nto the greater expediency of my travelling by waggon.  The story of\nmy supposed appetite getting wind among the outside passengers,\nthey were merry upon it likewise; and asked me whether I was going\nto be paid for, at school, as two brothers or three, and whether I\nwas contracted for, or went upon the regular terms; with other\npleasant questions.  But the worst of it was, that I knew I should\nbe ashamed to eat anything, when an opportunity offered, and that,\nafter a rather light dinner, I should remain hungry all night - for\nI had left my cakes behind, at the hotel, in my hurry.  My\napprehensions were realized.  When we stopped for supper I couldn't\nmuster courage to take any, though I should have liked it very\nmuch, but sat by the fire and said I didn't want anything.  This\ndid not save me from more jokes, either; for a husky-voiced\ngentleman with a rough face, who had been eating out of a\nsandwich-box nearly all the way, except when he had been drinking\nout of a bottle, said I was like a boa-constrictor who took enough\nat one meal to last him a long time; after which, he actually\nbrought a rash out upon himself with boiled beef.\n\nWe had started from Yarmouth at three o'clock in the afternoon, and\nwe were due in London about eight next morning.  It was Mid-summer\nweather, and the evening was very pleasant.  When we passed through\na village, I pictured to myself what the insides of the houses were\nlike, and what the inhabitants were about; and when boys came\nrunning after us, and got up behind and swung there for a little\nway, I wondered whether their fathers were alive, and whether they\nWere happy at home.  I had plenty to think of, therefore, besides\nmy mind running continually on the kind of place I was going to -\nwhich was an awful speculation.  Sometimes, I remember, I resigned\nmyself to thoughts of home and Peggotty; and to endeavouring, in a\nconfused blind way, to recall how I had felt, and what sort of boy\nI used to be, before I bit Mr. Murdstone: which I couldn't satisfy\nmyself about by any means, I seemed to have bitten him in such a\nremote antiquity.\n\nThe night was not so pleasant as the evening, for it got chilly;\nand being put between two gentlemen (the rough-faced one and\nanother) to prevent my tumbling off the coach, I was nearly\nsmothered by their falling asleep, and completely blocking me up. \nThey squeezed me so hard sometimes, that I could not help crying\nout, 'Oh!  If you please!' - which they didn't like at all, because\nit woke them.  Opposite me was an elderly lady in a great fur\ncloak, who looked in the dark more like a haystack than a lady, she\nwas wrapped up to such a degree.  This lady had a basket with her,\nand she hadn't known what to do with it, for a long time, until she\nfound that on account of my legs being short, it could go\nunderneath me.  It cramped and hurt me so, that it made me\nperfectly miserable; but if I moved in the least, and made a glass\nthat was in the basket rattle against something else (as it was\nsure to do), she gave me the cruellest poke with her foot, and\nsaid, 'Come, don't YOU fidget.  YOUR bones are young enough, I'm\nsure!'\n\nAt last the sun rose, and then my companions seemed to sleep\neasier.  The difficulties under which they had laboured all night,\nand which had found utterance in the most terrific gasps and\nsnorts, are not to be conceived.  As the sun got higher, their\nsleep became lighter, and so they gradually one by one awoke.  I\nrecollect being very much surprised by the feint everybody made,\nthen, of not having been to sleep at all, and by the uncommon\nindignation with which everyone repelled the charge.  I labour\nunder the same kind of astonishment to this day, having invariably\nobserved that of all human weaknesses, the one to which our common\nnature is the least disposed to confess (I cannot imagine why) is\nthe weakness of having gone to sleep in a coach.\n\nWhat an amazing place London was to me when I saw it in the\ndistance, and how I believed all the adventures of all my favourite\nheroes to be constantly enacting and re-enacting there, and how I\nvaguely made it out in my own mind to be fuller of wonders and\nwickedness than all the cities of the earth, I need not stop here\nto relate.  We approached it by degrees, and got, in due time, to\nthe inn in the Whitechapel district, for which we were bound.  I\nforget whether it was the Blue Bull, or the Blue Boar; but I know\nit was the Blue Something, and that its likeness was painted up on\nthe back of the coach.\n\nThe guard's eye lighted on me as he was getting down, and he said\nat the booking-office door:\n\n'Is there anybody here for a yoongster booked in the name of\nMurdstone, from Bloonderstone, Sooffolk, to be left till called\nfor?'\n\nNobody answered.\n\n'Try Copperfield, if you please, sir,' said I, looking helplessly\ndown.\n\n'Is there anybody here for a yoongster, booked in the name of\nMurdstone, from Bloonderstone, Sooffolk, but owning to the name of\nCopperfield, to be left till called for?' said the guard.  'Come!\nIS there anybody?'\n\nNo.  There was nobody.  I looked anxiously around; but the inquiry\nmade no impression on any of the bystanders, if I except a man in\ngaiters, with one eye, who suggested that they had better put a\nbrass collar round my neck, and tie me up in the stable.\n\nA ladder was brought, and I got down after the lady, who was like\na haystack: not daring to stir, until her basket was removed.  The\ncoach was clear of passengers by that time, the luggage was very\nsoon cleared out, the horses had been taken out before the luggage,\nand now the coach itself was wheeled and backed off by some\nhostlers, out of the way.  Still, nobody appeared, to claim the\ndusty youngster from Blunderstone, Suffolk.\n\nMore solitary than Robinson Crusoe, who had nobody to look at him\nand see that he was solitary, I went into the booking-office, and,\nby invitation of the clerk on duty, passed behind the counter, and\nsat down on the scale at which they weighed the luggage.  Here, as\nI sat looking at the parcels, packages, and books, and inhaling the\nsmell of stables (ever since associated with that morning), a\nprocession of most tremendous considerations began to march through\nmy mind.  Supposing nobody should ever fetch me, how long would\nthey consent to keep me there?  Would they keep me long enough to\nspend seven shillings?  Should I sleep at night in one of those\nwooden bins, with the other luggage, and wash myself at the pump in\nthe yard in the morning; or should I be turned out every night, and\nexpected to come again to be left till called for, when the office\nopened next day?  Supposing there was no mistake in the case, and\nMr. Murdstone had devised this plan to get rid of me, what should\nI do?  If they allowed me to remain there until my seven shillings\nwere spent, I couldn't hope to remain there when I began to starve. \nThat would obviously be inconvenient and unpleasant to the\ncustomers, besides entailing on the Blue Whatever-it-was, the risk\nof funeral expenses.  If I started off at once, and tried to walk\nback home, how could I ever find my way, how could I ever hope to\nwalk so far, how could I make sure of anyone but Peggotty, even if\nI got back?  If I found out the nearest proper authorities, and\noffered myself to go for a soldier, or a sailor, I was such a\nlittle fellow that it was most likely they wouldn't take me in. \nThese thoughts, and a hundred other such thoughts, turned me\nburning hot, and made me giddy with apprehension and dismay.  I was\nin the height of my fever when a man entered and whispered to the\nclerk, who presently slanted me off the scale, and pushed me over\nto him, as if I were weighed, bought, delivered, and paid for.\n\nAs I went out of the office, hand in hand with this new\nacquaintance, I stole a look at him.  He was a gaunt, sallow young\nman, with hollow cheeks, and a chin almost as black as Mr.\nMurdstone's; but there the likeness ended, for his whiskers were\nshaved off, and his hair, instead of being glossy, was rusty and\ndry.  He was dressed in a suit of black clothes which were rather\nrusty and dry too, and rather short in the sleeves and legs; and he\nhad a white neck-kerchief on, that was not over-clean.  I did not,\nand do not, suppose that this neck-kerchief was all the linen he\nwore, but it was all he showed or gave any hint of.\n\n'You're the new boy?' he said.\n'Yes, sir,' I said.\n\nI supposed I was.  I didn't know.\n\n'I'm one of the masters at Salem House,' he said.\n\nI made him a bow and felt very much overawed.  I was so ashamed to\nallude to a commonplace thing like my box, to a scholar and a\nmaster at Salem House, that we had gone some little distance from\nthe yard before I had the hardihood to mention it.  We turned back,\non my humbly insinuating that it might be useful to me hereafter;\nand he told the clerk that the carrier had instructions to call for\nit at noon.\n\n'If you please, sir,' I said, when we had accomplished about the\nsame distance as before, 'is it far?'\n\n'It's down by Blackheath,' he said.\n\n'Is that far, sir?' I diffidently asked.\n\n'It's a good step,' he said.  'We shall go by the stage-coach. \nIt's about six miles.'\n\nI was so faint and tired, that the idea of holding out for six\nmiles more, was too much for me.  I took heart to tell him that I\nhad had nothing all night, and that if he would allow me to buy\nsomething to eat, I should be very much obliged to him.  He\nappeared surprised at this - I see him stop and look at me now -\nand after considering for a few moments, said he wanted to call on\nan old person who lived not far off, and that the best way would be\nfor me to buy some bread, or whatever I liked best that was\nwholesome, and make my breakfast at her house, where we could get\nsome milk.\n\nAccordingly we looked in at a baker's window, and after I had made\na series of proposals to buy everything that was bilious in the\nshop, and he had rejected them one by one, we decided in favour of\na nice little loaf of brown bread, which cost me threepence.  Then,\nat a grocer's shop, we bought an egg and a slice of streaky bacon;\nwhich still left what I thought a good deal of change, out of the\nsecond of the bright shillings, and made me consider London a very\ncheap place.  These provisions laid in, we went on through a great\nnoise and uproar that confused my weary head beyond description,\nand over a bridge which, no doubt, was London Bridge (indeed I\nthink he told me so, but I was half asleep), until we came to the\npoor person's house, which was a part of some alms-houses, as I\nknew by their look, and by an inscription on a stone over the gate\nwhich said they were established for twenty-five poor women.\n\nThe Master at Salem House lifted the latch of one of a number of\nlittle black doors that were all alike, and had each a little\ndiamond-paned window on one side, and another little diamond- paned\nwindow above; and we went into the little house of one of these\npoor old women, who was blowing a fire to make a little saucepan\nboil.  On seeing the master enter, the old woman stopped with the\nbellows on her knee, and said something that I thought sounded like\n'My Charley!' but on seeing me come in too, she got up, and rubbing\nher hands made a confused sort of half curtsey.\n\n'Can you cook this young gentleman's breakfast for him, if you\nplease?' said the Master at Salem House.\n\n'Can I?' said the old woman.  'Yes can I, sure!'\n\n'How's Mrs. Fibbitson today?' said the Master, looking at another\nold woman in a large chair by the fire, who was such a bundle of\nclothes that I feel grateful to this hour for not having sat upon\nher by mistake.\n\n'Ah, she's poorly,' said the first old woman.  'It's one of her bad\ndays.  If the fire was to go out, through any accident, I verily\nbelieve she'd go out too, and never come to life again.'\n\nAs they looked at her, I looked at her also.  Although it was a\nwarm day, she seemed to think of nothing but the fire.  I fancied\nshe was jealous even of the saucepan on it; and I have reason to\nknow that she took its impressment into the service of boiling my\negg and broiling my bacon, in dudgeon; for I saw her, with my own\ndiscomfited eyes, shake her fist at me once, when those culinary\noperations were going on, and no one else was looking.  The sun\nstreamed in at the little window, but she sat with her own back and\nthe back of the large chair towards it, screening the fire as if\nshe were sedulously keeping IT warm, instead of it keeping her\nwarm, and watching it in a most distrustful manner.  The completion\nof the preparations for my breakfast, by relieving the fire, gave\nher such extreme joy that she laughed aloud - and a very\nunmelodious laugh she had, I must say.\n\nI sat down to my brown loaf, my egg, and my rasher of bacon, with\na basin of milk besides, and made a most delicious meal.  While I\nwas yet in the full enjoyment of it, the old woman of the house\nsaid to the Master:\n\n'Have you got your flute with you?'\n\n'Yes,' he returned.\n\n'Have a blow at it,' said the old woman, coaxingly.  'Do!'\n\nThe Master, upon this, put his hand underneath the skirts of his\ncoat, and brought out his flute in three pieces, which he screwed\ntogether, and began immediately to play.  My impression is, after\nmany years of consideration, that there never can have been anybody\nin the world who played worse.  He made the most dismal sounds I\nhave ever heard produced by any means, natural or artificial.  I\ndon't know what the tunes were - if there were such things in the\nperformance at all, which I doubt - but the influence of the strain\nupon me was, first, to make me think of all my sorrows until I\ncould hardly keep my tears back; then to take away my appetite; and\nlastly, to make me so sleepy that I couldn't keep my eyes open. \nThey begin to close again, and I begin to nod, as the recollection\nrises fresh upon me.  Once more the little room, with its open\ncorner cupboard, and its square-backed chairs, and its angular\nlittle staircase leading to the room above, and its three peacock's\nfeathers displayed over the mantelpiece - I remember wondering when\nI first went in, what that peacock would have thought if he had\nknown what his finery was doomed to come to - fades from before me,\nand I nod, and sleep.  The flute becomes inaudible, the wheels of\nthe coach are heard instead, and I am on my journey.  The coach\njolts, I wake with a start, and the flute has come back again, and\nthe Master at Salem House is sitting with his legs crossed, playing\nit dolefully, while the old woman of the house looks on delighted. \nShe fades in her turn, and he fades, and all fades, and there is no\nflute, no Master, no Salem House, no David Copperfield, no anything\nbut heavy sleep.\n\nI dreamed, I thought, that once while he was blowing into this\ndismal flute, the old woman of the house, who had gone nearer and\nnearer to him in her ecstatic admiration, leaned over the back of\nhis chair and gave him an affectionate squeeze round the neck,\nwhich stopped his playing for a moment.  I was in the middle state\nbetween sleeping and waking, either then or immediately afterwards;\nfor, as he resumed - it was a real fact that he had stopped playing\n- I saw and heard the same old woman ask Mrs. Fibbitson if it\nwasn't delicious (meaning the flute), to which Mrs. Fibbitson\nreplied, 'Ay, ay! yes!' and nodded at the fire: to which, I am\npersuaded, she gave the credit of the whole performance.\n\nWhen I seemed to have been dozing a long while, the Master at Salem\nHouse unscrewed his flute into the three pieces, put them up as\nbefore, and took me away.  We found the coach very near at hand,\nand got upon the roof; but I was so dead sleepy, that when we\nstopped on the road to take up somebody else, they put me inside\nwhere there were no passengers, and where I slept profoundly, until\nI found the coach going at a footpace up a steep hill among green\nleaves.  Presently, it stopped, and had come to its destination.\n\nA short walk brought us - I mean the Master and me - to Salem\nHouse, which was enclosed with a high brick wall, and looked very\ndull.  Over a door in this wall was a board with SALEM HousE upon\nit; and through a grating in this door we were surveyed when we\nrang the bell by a surly face, which I found, on the door being\nopened, belonged to a stout man with a bull-neck, a wooden leg,\noverhanging temples, and his hair cut close all round his head.\n\n'The new boy,' said the Master.\n\nThe man with the wooden leg eyed me all over - it didn't take long,\nfor there was not much of me - and locked the gate behind us, and\ntook out the key.  We were going up to the house, among some dark\nheavy trees, when he called after my conductor.\n'Hallo!'\n\nWe looked back, and he was standing at the door of a little lodge,\nwhere he lived, with a pair of boots in his hand.\n\n'Here!  The cobbler's been,' he said, 'since you've been out, Mr.\nMell, and he says he can't mend 'em any more.  He says there ain't\na bit of the original boot left, and he wonders you expect it.'\n\nWith these words he threw the boots towards Mr. Mell, who went back\na few paces to pick them up, and looked at them (very\ndisconsolately, I was afraid), as we went on together.  I observed\nthen, for the first time, that the boots he had on were a good deal\nthe worse for wear, and that his stocking was just breaking out in\none place, like a bud.\n\nSalem House was a square brick building with wings; of a bare and\nunfurnished appearance.  All about it was so very quiet, that I\nsaid to Mr. Mell I supposed the boys were out; but he seemed\nsurprised at my not knowing that it was holiday-time.  That all the\nboys were at their several homes.  That Mr. Creakle, the\nproprietor, was down by the sea-side with Mrs. and Miss Creakle;\nand that I was sent in holiday-time as a punishment for my\nmisdoing, all of which he explained to me as we went along.\n\nI gazed upon the schoolroom into which he took me, as the most\nforlorn and desolate place I had ever seen.  I see it now.  A long\nroom with three long rows of desks, and six of forms, and bristling\nall round with pegs for hats and slates.  Scraps of old copy-books\nand exercises litter the dirty floor.  Some silkworms' houses, made\nof the same materials, are scattered over the desks.  Two miserable\nlittle white mice, left behind by their owner, are running up and\ndown in a fusty castle made of pasteboard and wire, looking in all\nthe corners with their red eyes for anything to eat.  A bird, in a\ncage very little bigger than himself, makes a mournful rattle now\nand then in hopping on his perch, two inches high, or dropping from\nit; but neither sings nor chirps.  There is a strange unwholesome\nsmell upon the room, like mildewed corduroys, sweet apples wanting\nair, and rotten books.  There could not well be more ink splashed\nabout it, if it had been roofless from its first construction, and\nthe skies had rained, snowed, hailed, and blown ink through the\nvarying seasons of the year.\n\nMr. Mell having left me while he took his irreparable boots\nupstairs, I went softly to the upper end of the room, observing all\nthis as I crept along.  Suddenly I came upon a pasteboard placard,\nbeautifully written, which was lying on the desk, and bore these\nwords: 'TAKE CARE OF HIM.  HE BITES.'\n\nI got upon the desk immediately, apprehensive of at least a great\ndog underneath.  But, though I looked all round with anxious eyes,\nI could see nothing of him.  I was still engaged in peering about,\nwhen Mr. Mell came back, and asked me what I did up there?\n\n'I beg your pardon, sir,' says I, 'if you please, I'm looking for\nthe dog.'\n\n'Dog?' he says.  'What dog?'\n\n'Isn't it a dog, sir?'\n\n'Isn't what a dog?'\n\n'That's to be taken care of, sir; that bites.'\n\n'No, Copperfield,' says he, gravely, 'that's not a dog.  That's a\nboy.  My instructions are, Copperfield, to put this placard on your\nback.  I am sorry to make such a beginning with you, but I must do\nit.'  With that he took me down, and tied the placard, which was\nneatly constructed for the purpose, on my shoulders like a\nknapsack; and wherever I went, afterwards, I had the consolation of\ncarrying it.\n\nWhat I suffered from that placard, nobody can imagine.  Whether it\nwas possible for people to see me or not, I always fancied that\nsomebody was reading it.  It was no relief to turn round and find\nnobody; for wherever my back was, there I imagined somebody always\nto be.  That cruel man with the wooden leg aggravated my\nsufferings.  He was in authority; and if he ever saw me leaning\nagainst a tree, or a wall, or the house, he roared out from his\nlodge door in a stupendous voice, 'Hallo, you sir!  You\nCopperfield!  Show that badge conspicuous, or I'll report you!' \nThe playground was a bare gravelled yard, open to all the back of\nthe house and the offices; and I knew that the servants read it,\nand the butcher read it, and the baker read it; that everybody, in\na word, who came backwards and forwards to the house, of a morning\nwhen I was ordered to walk there, read that I was to be taken care\nof, for I bit, I recollect that I positively began to have a dread\nof myself, as a kind of wild boy who did bite.\n\nThere was an old door in this playground, on which the boys had a\ncustom of carving their names.  It was completely covered with such\ninscriptions.  In my dread of the end of the vacation and their\ncoming back, I could not read a boy's name, without inquiring in\nwhat tone and with what emphasis HE would read, 'Take care of him. \nHe bites.'  There was one boy - a certain J. Steerforth - who cut\nhis name very deep and very often, who, I conceived, would read it\nin a rather strong voice, and afterwards pull my hair.  There was\nanother boy, one Tommy Traddles, who I dreaded would make game of\nit, and pretend to be dreadfully frightened of me.  There was a\nthird, George Demple, who I fancied would sing it.  I have looked,\na little shrinking creature, at that door, until the owners of all\nthe names - there were five-and-forty of them in the school then,\nMr. Mell said - seemed to send me to Coventry by general\nacclamation, and to cry out, each in his own way, 'Take care of\nhim.  He bites!'\n\nIt was the same with the places at the desks and forms.  It was the\nsame with the groves of deserted bedsteads I peeped at, on my way\nto, and when I was in, my own bed.  I remember dreaming night after\nnight, of being with my mother as she used to be, or of going to a\nparty at Mr. Peggotty's, or of travelling outside the stage-coach,\nor of dining again with my unfortunate friend the waiter, and in\nall these circumstances making people scream and stare, by the\nunhappy disclosure that I had nothing on but my little night-shirt,\nand that placard.\n\nIn the monotony of my life, and in my constant apprehension of the\nre-opening of the school, it was such an insupportable affliction!\nI had long tasks every day to do with Mr. Mell; but I did them,\nthere being no Mr. and Miss Murdstone here, and got through them\nwithout disgrace.  Before, and after them, I walked about -\nsupervised, as I have mentioned, by the man with the wooden leg. \nHow vividly I call to mind the damp about the house, the green\ncracked flagstones in the court, an old leaky water-butt, and the\ndiscoloured trunks of some of the grim trees, which seemed to have\ndripped more in the rain than other trees, and to have blown less\nin the sun!  At one we dined, Mr. Mell and I, at the upper end of\na long bare dining-room, full of deal tables, and smelling of fat. \nThen, we had more tasks until tea, which Mr. Mell drank out of a\nblue teacup, and I out of a tin pot.  All day long, and until seven\nor eight in the evening, Mr. Mell, at his own detached desk in the\nschoolroom, worked hard with pen, ink, ruler, books, and writing-\npaper, making out the bills (as I found) for last half-year.  When\nhe had put up his things for the night he took out his flute, and\nblew at it, until I almost thought he would gradually blow his\nwhole being into the large hole at the top, and ooze away at the\nkeys.\n\nI picture my small self in the dimly-lighted rooms, sitting with my\nhead upon my hand, listening to the doleful performance of Mr.\nMell, and conning tomorrow's lessons.  I picture myself with my\nbooks shut up, still listening to the doleful performance of Mr.\nMell, and listening through it to what used to be at home, and to\nthe blowing of the wind on Yarmouth flats, and feeling very sad and\nsolitary.  I picture myself going up to bed, among the unused\nrooms, and sitting on my bed-side crying for a comfortable word\nfrom Peggotty.  I picture myself coming downstairs in the morning,\nand looking through a long ghastly gash of a staircase window at\nthe school-bell hanging on the top of an out-house with a\nweathercock above it; and dreading the time when it shall ring J.\nSteerforth and the rest to work: which is only second, in my\nforeboding apprehensions, to the time when the man with the wooden\nleg shall unlock the rusty gate to give admission to the awful Mr.\nCreakle.  I cannot think I was a very dangerous character in any of\nthese aspects, but in all of them I carried the same warning on my\nback.\n\nMr. Mell never said much to me, but he was never harsh to me.  I\nsuppose we were company to each other, without talking.  I forgot\nto mention that he would talk to himself sometimes, and grin, and\nclench his fist, and grind his teeth, and pull his hair in an\nunaccountable manner.  But he had these peculiarities: and at first\nthey frightened me, though I soon got used to them.\n\n\n\nCHAPTER 6\nI ENLARGE MY CIRCLE OF ACQUAINTANCE\n\n\nI HAD led this life about a month, when the man with the wooden leg\nbegan to stump about with a mop and a bucket of water, from which\nI inferred that preparations were making to receive Mr. Creakle and\nthe boys.  I was not mistaken; for the mop came into the schoolroom\nbefore long, and turned out Mr. Mell and me, who lived where we\ncould, and got on how we could, for some days, during which we were\nalways in the way of two or three young women, who had rarely shown\nthemselves before, and were so continually in the midst of dust\nthat I sneezed almost as much as if Salem House had been a great\nsnuff-box.\n\nOne day I was informed by Mr. Mell that Mr. Creakle would be home\nthat evening.  In the evening, after tea, I heard that he was come. \nBefore bedtime, I was fetched by the man with the wooden leg to\nappear before him.\n\nMr. Creakle's part of the house was a good deal more comfortable\nthan ours, and he had a snug bit of garden that looked pleasant\nafter the dusty playground, which was such a desert in miniature,\nthat I thought no one but a camel, or a dromedary, could have felt\nat home in it.  It seemed to me a bold thing even to take notice\nthat the passage looked comfortable, as I went on my way,\ntrembling, to Mr. Creakle's presence: which so abashed me, when I\nwas ushered into it, that I hardly saw Mrs. Creakle or Miss Creakle\n(who were both there, in the parlour), or anything but Mr. Creakle,\na stout gentleman with a bunch of watch-chain and seals, in an\narm-chair, with a tumbler and bottle beside him.\n\n'So!' said Mr. Creakle.  'This is the young gentleman whose teeth\nare to be filed!  Turn him round.'\n\nThe wooden-legged man turned me about so as to exhibit the placard;\nand having afforded time for a full survey of it, turned me about\nagain, with my face to Mr. Creakle, and posted himself at Mr.\nCreakle's side.  Mr. Creakle's face was fiery, and his eyes were\nsmall, and deep in his head; he had thick veins in his forehead, a\nlittle nose, and a large chin.  He was bald on the top of his head;\nand had some thin wet-looking hair that was just turning grey,\nbrushed across each temple, so that the two sides interlaced on his\nforehead.  But the circumstance about him which impressed me most,\nwas, that he had no voice, but spoke in a whisper.  The exertion\nthis cost him, or the consciousness of talking in that feeble way,\nmade his angry face so much more angry, and his thick veins so much\nthicker, when he spoke, that I am not surprised, on looking back,\nat this peculiarity striking me as his chief one.\n'Now,' said Mr. Creakle.  'What's the report of this boy?'\n\n'There's nothing against him yet,' returned the man with the wooden\nleg.  'There has been no opportunity.'\n\nI thought Mr. Creakle was disappointed.  I thought Mrs. and Miss\nCreakle (at whom I now glanced for the first time, and who were,\nboth, thin and quiet) were not disappointed.\n\n'Come here, sir!' said Mr. Creakle, beckoning to me.\n\n'Come here!' said the man with the wooden leg, repeating the\ngesture.\n\n'I have the happiness of knowing your father-in-law,' whispered Mr.\nCreakle, taking me by the ear; 'and a worthy man he is, and a man\nof a strong character.  He knows me, and I know him.  Do YOU know\nme?  Hey?' said Mr. Creakle, pinching my ear with ferocious\nplayfulness.\n\n'Not yet, sir,' I said, flinching with the pain.\n\n'Not yet?  Hey?' repeated Mr. Creakle.  'But you will soon.  Hey?'\n\n'You will soon.  Hey?' repeated the man with the wooden leg.  I\nafterwards found that he generally acted, with his strong voice, as\nMr. Creakle's interpreter to the boys.\n\nI was very much frightened, and said, I hoped so, if he pleased. \nI felt, all this while, as if my ear were blazing; he pinched it so\nhard.\n\n'I'll tell you what I am,' whispered Mr. Creakle, letting it go at\nlast, with a screw at parting that brought the water into my eyes. \n'I'm a Tartar.'\n\n'A Tartar,' said the man with the wooden leg.\n\n'When I say I'll do a thing, I do it,' said Mr. Creakle; 'and when\nI say I will have a thing done, I will have it done.'\n\n'- Will have a thing done, I will have it done,' repeated the man\nwith the wooden leg.\n\n'I am a determined character,' said Mr. Creakle.  'That's what I\nam.  I do my duty.  That's what I do.  My flesh and blood' - he\nlooked at Mrs. Creakle as he said this - 'when it rises against me,\nis not my flesh and blood.  I discard it.  Has that fellow' - to\nthe man with the wooden leg -'been here again?'\n\n'No,' was the answer.\n\n'No,' said Mr. Creakle.  'He knows better.  He knows me.  Let him\nkeep away.  I say let him keep away,' said Mr. Creakle, striking\nhis hand upon the table, and looking at Mrs. Creakle, 'for he knows\nme.  Now you have begun to know me too, my young friend, and you\nmay go.  Take him away.'\n\nI was very glad to be ordered away, for Mrs. and Miss Creakle were\nboth wiping their eyes, and I felt as uncomfortable for them as I\ndid for myself.  But I had a petition on my mind which concerned me\nso nearly, that I couldn't help saying, though I wondered at my own\ncourage:\n\n'If you please, sir -'\n\nMr. Creakle whispered, 'Hah!  What's this?' and bent his eyes upon\nme, as if he would have burnt me up with them.\n\n'If you please, sir,' I faltered, 'if I might be allowed (I am very\nsorry indeed, sir, for what I did) to take this writing off, before\nthe boys come back -'\n\nWhether Mr. Creakle was in earnest, or whether he only did it to\nfrighten me, I don't know, but he made a burst out of his chair,\nbefore which I precipitately retreated, without waiting for the\nescort Of the man with the wooden leg, and never once stopped until\nI reached my own bedroom, where, finding I was not pursued, I went\nto bed, as it was time, and lay quaking, for a couple of hours.\n\nNext morning Mr. Sharp came back.  Mr. Sharp was the first master,\nand superior to Mr. Mell.  Mr. Mell took his meals with the boys,\nbut Mr. Sharp dined and supped at Mr. Creakle's table.  He was a\nlimp, delicate-looking gentleman, I thought, with a good deal of\nnose, and a way of carrying his head on one side, as if it were a\nlittle too heavy for him.  His hair was very smooth and wavy; but\nI was informed by the very first boy who came back that it was a\nwig (a second-hand one HE said), and that Mr. Sharp went out every\nSaturday afternoon to get it curled.\n\nIt was no other than Tommy Traddles who gave me this piece of\nintelligence.  He was the first boy who returned.  He introduced\nhimself by informing me that I should find his name on the right-\nhand corner of the gate, over the top-bolt; upon that I said,\n'Traddles?' to which he replied, 'The same,' and then he asked me\nfor a full account of myself and family.\n\nIt was a happy circumstance for me that Traddles came back first. \nHe enjoyed my placard so much, that he saved me from the\nembarrassment of either disclosure or concealment, by presenting me\nto every other boy who came back, great or small, immediately on\nhis arrival, in this form of introduction, 'Look here!  Here's a\ngame!'  Happily, too, the greater part of the boys came back\nlow-spirited, and were not so boisterous at my expense as I had\nexpected.  Some of them certainly did dance about me like wild\nIndians, and the greater part could not resist the temptation of\npretending that I was a dog, and patting and soothing me, lest I\nshould bite, and saying, 'Lie down, sir!' and calling me Towzer. \nThis was naturally confusing, among so many strangers, and cost me\nsome tears, but on the whole it was much better than I had\nanticipated.\n\nI was not considered as being formally received into the school,\nhowever, until J. Steerforth arrived.  Before this boy, who was\nreputed to be a great scholar, and was very good-looking, and at\nleast half-a-dozen years my senior, I was carried as before a\nmagistrate.  He inquired, under a shed in the playground, into the\nparticulars of my punishment, and was pleased to express his\nopinion that it was 'a jolly shame'; for which I became bound to\nhim ever afterwards.\n\n'What money have you got, Copperfield?' he said, walking aside with\nme when he had disposed of my affair in these terms.  I told him\nseven shillings.\n\n'You had better give it to me to take care of,' he said.  'At\nleast, you can if you like.  You needn't if you don't like.'\n\nI hastened to comply with his friendly suggestion, and opening\nPeggotty's purse, turned it upside down into his hand.\n\n'Do you want to spend anything now?' he asked me.\n\n'No thank you,' I replied.\n\n'You can, if you like, you know,' said Steerforth.  'Say the word.'\n\n'No, thank you, sir,' I repeated.\n\n'Perhaps you'd like to spend a couple of shillings or so, in a\nbottle of currant wine by and by, up in the bedroom?' said\nSteerforth.  'You belong to my bedroom, I find.'\n\nIt certainly had not occurred to me before, but I said, Yes, I\nshould like that.\n\n'Very good,' said Steerforth.  'You'll be glad to spend another\nshilling or so, in almond cakes, I dare say?'\n\nI said, Yes, I should like that, too.\n\n'And another shilling or so in biscuits, and another in fruit, eh?'\nsaid Steerforth.  'I say, young Copperfield, you're going it!'\n\nI smiled because he smiled, but I was a little troubled in my mind,\ntoo.\n\n'Well!' said Steerforth.  'We must make it stretch as far as we\ncan; that's all.  I'll do the best in my power for you.  I can go\nout when I like, and I'll smuggle the prog in.'  With these words\nhe put the money in his pocket, and kindly told me not to make\nmyself uneasy; he would take care it should be all right.\nHe was as good as his word, if that were all right which I had a\nsecret misgiving was nearly all wrong - for I feared it was a waste\nof my mother's two half-crowns - though I had preserved the piece\nof paper they were wrapped in: which was a precious saving.  When\nwe went upstairs to bed, he produced the whole seven\nshillings'worth, and laid it out on my bed in the moonlight,\nsaying:\n\n'There you are, young Copperfield, and a royal spread you've got.'\n\nI couldn't think of doing the honours of the feast, at my time of\nlife, while he was by; my hand shook at the very thought of it.  I\nbegged him to do me the favour of presiding; and my request being\nseconded by the other boys who were in that room, he acceded to it,\nand sat upon my pillow, handing round the viands - with perfect\nfairness, I must say - and dispensing the currant wine in a little\nglass without a foot, which was his own property.  As to me, I sat\non his left hand, and the rest were grouped about us, on the\nnearest beds and on the floor.\n\nHow well I recollect our sitting there, talking in whispers; or\ntheir talking, and my respectfully listening, I ought rather to\nsay; the moonlight falling a little way into the room, through the\nwindow, painting a pale window on the floor, and the greater part\nof us in shadow, except when Steerforth dipped a match into a\nphosphorus-box, when he wanted to look for anything on the board,\nand shed a blue glare over us that was gone directly!  A certain\nmysterious feeling, consequent on the darkness, the secrecy of the\nrevel, and the whisper in which everything was said, steals over me\nagain, and I listen to all they tell me with a vague feeling of\nsolemnity and awe, which makes me glad that they are all so near,\nand frightens me (though I feign to laugh) when Traddles pretends\nto see a ghost in the corner.\n\nI heard all kinds of things about the school and all belonging to\nit.  I heard that Mr. Creakle had not preferred his claim to being\na Tartar without reason; that he was the sternest and most severe\nof masters; that he laid about him, right and left, every day of\nhis life, charging in among the boys like a trooper, and slashing\naway, unmercifully.  That he knew nothing himself, but the art of\nslashing, being more ignorant (J. Steerforth said) than the lowest\nboy in the school; that he had been, a good many years ago, a small\nhop-dealer in the Borough, and had taken to the schooling business\nafter being bankrupt in hops, and making away with Mrs. Creakle's\nmoney.  With a good deal more of that sort, which I wondered how\nthey knew.\n\nI heard that the man with the wooden leg, whose name was Tungay,\nwas an obstinate barbarian who had formerly assisted in the hop\nbusiness, but had come into the scholastic line with Mr. Creakle,\nin consequence, as was supposed among the boys, of his having\nbroken his leg in Mr. Creakle's service, and having done a deal of\ndishonest work for him, and knowing his secrets.  I heard that with\nthe single exception of Mr. Creakle, Tungay considered the whole\nestablishment, masters and boys, as his natural enemies, and that\nthe only delight of his life was to be sour and malicious.  I heard\nthat Mr. Creakle had a son, who had not been Tungay's friend, and\nwho, assisting in the school, had once held some remonstrance with\nhis father on an occasion when its discipline was very cruelly\nexercised, and was supposed, besides, to have protested against his\nfather's usage of his mother.  I heard that Mr. Creakle had turned\nhim out of doors, in consequence; and that Mrs. and Miss Creakle\nhad been in a sad way, ever since.\n\nBut the greatest wonder that I heard of Mr. Creakle was, there\nbeing one boy in the school on whom he never ventured to lay a\nhand, and that boy being J. Steerforth.  Steerforth himself\nconfirmed this when it was stated, and said that he should like to\nbegin to see him do it.  On being asked by a mild boy (not me) how\nhe would proceed if he did begin to see him do it, he dipped a\nmatch into his phosphorus-box on purpose to shed a glare over his\nreply, and said he would commence by knocking him down with a blow\non the forehead from the seven-and-sixpenny ink-bottle that was\nalways on the mantelpiece.  We sat in the dark for some time,\nbreathless.\n\nI heard that Mr. Sharp and Mr. Mell were both supposed to be\nwretchedly paid; and that when there was hot and cold meat for\ndinner at Mr. Creakle's table, Mr. Sharp was always expected to say\nhe preferred cold; which was again corroborated by J. Steerforth,\nthe only parlour-boarder.  I heard that Mr. Sharp's wig didn't fit\nhim; and that he needn't be so 'bounceable' - somebody else said\n'bumptious' - about it, because his own red hair was very plainly\nto be seen behind.\n\nI heard that one boy, who was a coal-merchant's son, came as a\nset-off against the coal-bill, and was called, on that account,\n'Exchange or Barter' - a name selected from the arithmetic book as\nexpressing this arrangement.  I heard that the table beer was a\nrobbery of parents, and the pudding an imposition.  I heard that\nMiss Creakle was regarded by the school in general as being in love\nwith Steerforth; and I am sure, as I sat in the dark, thinking of\nhis nice voice, and his fine face, and his easy manner, and his\ncurling hair, I thought it very likely.  I heard that Mr. Mell was\nnot a bad sort of fellow, but hadn't a sixpence to bless himself\nwith; and that there was no doubt that old Mrs. Mell, his mother,\nwas as poor as job.  I thought of my breakfast then, and what had\nsounded like 'My Charley!' but I was, I am glad to remember, as\nmute as a mouse about it.\n\nThe hearing of all this, and a good deal more, outlasted the\nbanquet some time.  The greater part of the guests had gone to bed\nas soon as the eating and drinking were over; and we, who had\nremained whispering and listening half-undressed, at last betook\nourselves to bed, too.\n\n'Good night, young Copperfield,' said Steerforth.  'I'll take care\nof you.'\n'You're very kind,' I gratefully returned.  'I am very much obliged\nto you.'\n\n'You haven't got a sister, have you?' said Steerforth, yawning.\n\n'No,' I answered.\n\n'That's a pity,' said Steerforth.  'If you had had one, I should\nthink she would have been a pretty, timid, little, bright-eyed sort\nof girl.  I should have liked to know her.  Good night, young\nCopperfield.'\n\n'Good night, sir,' I replied.\n\nI thought of him very much after I went to bed, and raised myself,\nI recollect, to look at him where he lay in the moonlight, with his\nhandsome face turned up, and his head reclining easily on his arm. \nHe was a person of great power in my eyes; that was, of course, the\nreason of my mind running on him.  No veiled future dimly glanced\nupon him in the moonbeams.  There was no shadowy picture of his\nfootsteps, in the garden that I dreamed of walking in all night.\n\n\n\nCHAPTER 7\nMY 'FIRST HALF' AT SALEM HOUSE\n\n\nSchool began in earnest next day.  A profound impression was made\nupon me, I remember, by the roar of voices in the schoolroom\nsuddenly becoming hushed as death when Mr. Creakle entered after\nbreakfast, and stood in the doorway looking round upon us like a\ngiant in a story-book surveying his captives.\n\nTungay stood at Mr. Creakle's elbow.  He had no occasion, I\nthought, to cry out 'Silence!' so ferociously, for the boys were\nall struck speechless and motionless.\n\nMr. Creakle was seen to speak, and Tungay was heard, to this\neffect.\n\n'Now, boys, this is a new half.  Take care what you're about, in\nthis new half.  Come fresh up to the lessons, I advise you, for I\ncome fresh up to the punishment.  I won't flinch.  It will be of no\nuse your rubbing yourselves; you won't rub the marks out that I\nshall give you.  Now get to work, every boy!'\n\nWhen this dreadful exordium was over, and Tungay had stumped out\nagain, Mr. Creakle came to where I sat, and told me that if I were\nfamous for biting, he was famous for biting, too.  He then showed\nme the cane, and asked me what I thought of THAT, for a tooth?  Was\nit a sharp tooth, hey?  Was it a double tooth, hey?  Had it a deep\nprong, hey?  Did it bite, hey?  Did it bite?  At every question he\ngave me a fleshy cut with it that made me writhe; so I was very\nsoon made free of Salem House (as Steerforth said), and was very\nsoon in tears also.\n\nNot that I mean to say these were special marks of distinction,\nwhich only I received.  On the contrary, a large majority of the\nboys (especially the smaller ones) were visited with similar\ninstances of notice, as Mr. Creakle made the round of the\nschoolroom.  Half the establishment was writhing and crying, before\nthe day's work began; and how much of it had writhed and cried\nbefore the day's work was over, I am really afraid to recollect,\nlest I should seem to exaggerate.\n\nI should think there never can have been a man who enjoyed his\nprofession more than Mr. Creakle did.  He had a delight in cutting\nat the boys, which was like the satisfaction of a craving appetite. \nI am confident that he couldn't resist a chubby boy, especially;\nthat there was a fascination in such a subject, which made him\nrestless in his mind, until he had scored and marked him for the\nday.  I was chubby myself, and ought to know.  I am sure when I\nthink of the fellow now, my blood rises against him with the\ndisinterested indignation I should feel if I could have known all\nabout him without having ever been in his power; but it rises\nhotly, because I know him to have been an incapable brute, who had\nno more right to be possessed of the great trust he held, than to\nbe Lord High Admiral, or Commander-in-Chief - in either of which\ncapacities it is probable that he would have done infinitely less\nmischief.\n\nMiserable little propitiators of a remorseless Idol, how abject we\nwere to him!  What a launch in life I think it now, on looking\nback, to be so mean and servile to a man of such parts and\npretensions!\n\nHere I sit at the desk again, watching his eye - humbly watching\nhis eye, as he rules a ciphering-book for another victim whose\nhands have just been flattened by that identical ruler, and who is\ntrying to wipe the sting out with a pocket-handkerchief.  I have\nplenty to do.  I don't watch his eye in idleness, but because I am\nmorbidly attracted to it, in a dread desire to know what he will do\nnext, and whether it will be my turn to suffer, or somebody else's. \nA lane of small boys beyond me, with the same interest in his eye,\nwatch it too.  I think he knows it, though he pretends he don't. \nHe makes dreadful mouths as he rules the ciphering-book; and now he\nthrows his eye sideways down our lane, and we all droop over our\nbooks and tremble.  A moment afterwards we are again eyeing him. \nAn unhappy culprit, found guilty of imperfect exercise, approaches\nat his command.  The culprit falters excuses, and professes a\ndetermination to do better tomorrow.  Mr. Creakle cuts a joke\nbefore he beats him, and we laugh at it, - miserable little dogs,\nwe laugh, with our visages as white as ashes, and our hearts\nsinking into our boots.\n\nHere I sit at the desk again, on a drowsy summer afternoon.  A buzz\nand hum go up around me, as if the boys were so many bluebottles. \nA cloggy sensation of the lukewarm fat of meat is upon me (we dined\nan hour or two ago), and my head is as heavy as so much lead.  I\nwould give the world to go to sleep.  I sit with my eye on Mr.\nCreakle, blinking at him like a young owl; when sleep overpowers me\nfor a minute, he still looms through my slumber, ruling those\nciphering-books, until he softly comes behind me and wakes me to\nplainer perception of him, with a red ridge across my back.\n\nHere I am in the playground, with my eye still fascinated by him,\nthough I can't see him.  The window at a little distance from which\nI know he is having his dinner, stands for him, and I eye that\ninstead.  If he shows his face near it, mine assumes an imploring\nand submissive expression.  If he looks out through the glass, the\nboldest boy (Steerforth excepted) stops in the middle of a shout or\nyell, and becomes contemplative.  One day, Traddles (the most\nunfortunate boy in the world) breaks that window accidentally, with\na ball.  I shudder at this moment with the tremendous sensation of\nseeing it done, and feeling that the ball has bounded on to Mr.\nCreakle's sacred head.\n\nPoor Traddles!  In a tight sky-blue suit that made his arms and\nlegs like German sausages, or roly-poly puddings, he was the\nmerriest and most miserable of all the boys.  He was always being\ncaned - I think he was caned every day that half-year, except one\nholiday Monday when he was only ruler'd on both hands - and was\nalways going to write to his uncle about it, and never did.  After\nlaying his head on the desk for a little while, he would cheer up,\nsomehow, begin to laugh again, and draw skeletons all over his\nslate, before his eyes were dry.  I used at first to wonder what\ncomfort Traddles found in drawing skeletons; and for some time\nlooked upon him as a sort of hermit, who reminded himself by those\nsymbols of mortality that caning couldn't last for ever.  But I\nbelieve he only did it because they were easy, and didn't want any\nfeatures.\n\nHe was very honourable, Traddles was, and held it as a solemn duty\nin the boys to stand by one another.  He suffered for this on\nseveral occasions; and particularly once, when Steerforth laughed\nin church, and the Beadle thought it was Traddles, and took him\nout.  I see him now, going away in custody, despised by the\ncongregation.  He never said who was the real offender, though he\nsmarted for it next day, and was imprisoned so many hours that he\ncame forth with a whole churchyard-full of skeletons swarming all\nover his Latin Dictionary.  But he had his reward.  Steerforth said\nthere was nothing of the sneak in Traddles, and we all felt that to\nbe the highest praise.  For my part, I could have gone through a\ngood deal (though I was much less brave than Traddles, and nothing\nlike so old) to have won such a recompense.\n\nTo see Steerforth walk to church before us, arm-in-arm with Miss\nCreakle, was one of the great sights of my life.  I didn't think\nMiss Creakle equal to little Em'ly in point of beauty, and I didn't\nlove her (I didn't dare); but I thought her a young lady of\nextraordinary attractions, and in point of gentility not to be\nsurpassed.  When Steerforth, in white trousers, carried her parasol\nfor her, I felt proud to know him; and believed that she could not\nchoose but adore him with all her heart.  Mr. Sharp and Mr. Mell\nwere both notable personages in my eyes; but Steerforth was to them\nwhat the sun was to two stars.\n\nSteerforth continued his protection of me, and proved a very useful\nfriend; since nobody dared to annoy one whom he honoured with his\ncountenance.  He couldn't - or at all events he didn't - defend me\nfrom Mr. Creakle, who was very severe with me; but whenever I had\nbeen treated worse than usual, he always told me that I wanted a\nlittle of his pluck, and that he wouldn't have stood it himself;\nwhich I felt he intended for encouragement, and considered to be\nvery kind of him.  There was one advantage, and only one that I\nknow of, in Mr. Creakle's severity.  He found my placard in his way\nwhen he came up or down behind the form on which I sat, and wanted\nto make a cut at me in passing; for this reason it was soon taken\noff, and I saw it no more.\n\nAn accidental circumstance cemented the intimacy between Steerforth\nand me, in a manner that inspired me with great pride and\nsatisfaction, though it sometimes led to inconvenience.  It\nhappened on one occasion, when he was doing me the honour of\ntalking to me in the playground, that I hazarded the observation\nthat something or somebody - I forget what now - was like something\nor somebody in Peregrine Pickle.  He said nothing at the time; but\nwhen I was going to bed at night, asked me if I had got that book?\n\nI told him no, and explained how it was that I had read it, and all\nthose other books of which I have made mention.\n\n'And do you recollect them?' Steerforth said.\n\n'Oh yes,' I replied; I had a good memory, and I believed I\nrecollected them very well.\n\n'Then I tell you what, young Copperfield,' said Steerforth, 'you\nshall tell 'em to me.  I can't get to sleep very early at night,\nand I generally wake rather early in the morning.  We'll go over\n'em one after another.  We'll make some regular Arabian Nights of\nit.'\n\nI felt extremely flattered by this arrangement, and we commenced\ncarrying it into execution that very evening.  What ravages I\ncommitted on my favourite authors in the course of my\ninterpretation of them, I am not in a condition to say, and should\nbe very unwilling to know; but I had a profound faith in them, and\nI had, to the best of my belief, a simple, earnest manner of\nnarrating what I did narrate; and these qualities went a long way.\n\nThe drawback was, that I was often sleepy at night, or out of\nspirits and indisposed to resume the story; and then it was rather\nhard work, and it must be done; for to disappoint or to displease\nSteerforth was of course out of the question.  In the morning, too,\nwhen I felt weary, and should have enjoyed another hour's repose\nvery much, it was a tiresome thing to be roused, like the Sultana\nScheherazade, and forced into a long story before the getting-up\nbell rang; but Steerforth was resolute; and as he explained to me,\nin return, my sums and exercises, and anything in my tasks that was\ntoo hard for me, I was no loser by the transaction.  Let me do\nmyself justice, however.  I was moved by no interested or selfish\nmotive, nor was I moved by fear of him.  I admired and loved him,\nand his approval was return enough.  It was so precious to me that\nI look back on these trifles, now, with an aching heart.\n\nSteerforth was considerate, too; and showed his consideration, in\none particular instance, in an unflinching manner that was a little\ntantalizing, I suspect, to poor Traddles and the rest.  Peggotty's\npromised letter - what a comfortable letter it was! - arrived\nbefore 'the half' was many weeks old; and with it a cake in a\nperfect nest of oranges, and two bottles of cowslip wine.  This\ntreasure, as in duty bound, I laid at the feet of Steerforth, and\nbegged him to dispense.\n\n'Now, I'll tell you what, young Copperfield,' said he: 'the wine\nshall be kept to wet your whistle when you are story-telling.'\n\nI blushed at the idea, and begged him, in my modesty, not to think\nof it.  But he said he had observed I was sometimes hoarse - a\nlittle roopy was his exact expression - and it should be, every\ndrop, devoted to the purpose he had mentioned.  Accordingly, it was\nlocked up in his box, and drawn off by himself in a phial, and\nadministered to me through a piece of quill in the cork, when I was\nsupposed to be in want of a restorative.  Sometimes, to make it a\nmore sovereign specific, he was so kind as to squeeze orange juice\ninto it, or to stir it up with ginger, or dissolve a peppermint\ndrop in it; and although I cannot assert that the flavour was\nimproved by these experiments, or that it was exactly the compound\none would have chosen for a stomachic, the last thing at night and\nthe first thing in the morning, I drank it gratefully and was very\nsensible of his attention.\n\nWe seem, to me, to have been months over Peregrine, and months more\nover the other stories.  The institution never flagged for want of\na story, I am certain; and the wine lasted out almost as well as\nthe matter.  Poor Traddles - I never think of that boy but with a\nstrange disposition to laugh, and with tears in my eyes - was a\nsort of chorus, in general; and affected to be convulsed with mirth\nat the comic parts, and to be overcome with fear when there was any\npassage of an alarming character in the narrative.  This rather put\nme out, very often.  It was a great jest of his, I recollect, to\npretend that he couldn't keep his teeth from chattering, whenever\nmention was made of an Alguazill in connexion with the adventures\nof Gil Blas; and I remember that when Gil Blas met the captain of\nthe robbers in Madrid, this unlucky joker counterfeited such an\nague of terror, that he was overheard by Mr. Creakle, who was\nprowling about the passage, and handsomely flogged for disorderly\nconduct in the bedroom.\nWhatever I had within me that was romantic and dreamy, was\nencouraged by so much story-telling in the dark; and in that\nrespect the pursuit may not have been very profitable to me.  But\nthe being cherished as a kind of plaything in my room, and the\nconsciousness that this accomplishment of mine was bruited about\namong the boys, and attracted a good deal of notice to me though I\nwas the youngest there, stimulated me to exertion.  In a school\ncarried on by sheer cruelty, whether it is presided over by a dunce\nor not, there is not likely to be much learnt.  I believe our boys\nwere, generally, as ignorant a set as any schoolboys in existence;\nthey were too much troubled and knocked about to learn; they could\nno more do that to advantage, than any one can do anything to\nadvantage in a life of constant misfortune, torment, and worry. \nBut my little vanity, and Steerforth's help, urged me on somehow;\nand without saving me from much, if anything, in the way of\npunishment, made me, for the time I was there, an exception to the\ngeneral body, insomuch that I did steadily pick up some crumbs of\nknowledge.\n\nIn this I was much assisted by Mr. Mell, who had a liking for me\nthat I am grateful to remember.  It always gave me pain to observe\nthat Steerforth treated him with systematic disparagement, and\nseldom lost an occasion of wounding his feelings, or inducing\nothers to do so.  This troubled me the more for a long time,\nbecause I had soon told Steerforth, from whom I could no more keep\nsuch a secret, than I could keep a cake or any other tangible\npossession, about the two old women Mr. Mell had taken me to see;\nand I was always afraid that Steerforth would let it out, and twit\nhim with it.\n\nWe little thought, any one of us, I dare say, when I ate my\nbreakfast that first morning, and went to sleep under the shadow of\nthe peacock's feathers to the sound of the flute, what consequences\nwould come of the introduction into those alms-houses of my\ninsignificant person.  But the visit had its unforeseen\nconsequences; and of a serious sort, too, in their way.\n\nOne day when Mr. Creakle kept the house from indisposition, which\nnaturally diffused a lively joy through the school, there was a\ngood deal of noise in the course of the morning's work.  The great\nrelief and satisfaction experienced by the boys made them difficult\nto manage; and though the dreaded Tungay brought his wooden leg in\ntwice or thrice, and took notes of the principal offenders' names,\nno great impression was made by it, as they were pretty sure of\ngetting into trouble tomorrow, do what they would, and thought it\nwise, no doubt, to enjoy themselves today.\n\nIt was, properly, a half-holiday; being Saturday.  But as the noise\nin the playground would have disturbed Mr. Creakle, and the weather\nwas not favourable for going out walking, we were ordered into\nschool in the afternoon, and set some lighter tasks than usual,\nwhich were made for the occasion.  It was the day of the week on\nwhich Mr. Sharp went out to get his wig curled; so Mr. Mell, who\nalways did the drudgery, whatever it was, kept school by himself.\nIf I could associate the idea of a bull or a bear with anyone so\nmild as Mr. Mell, I should think of him, in connexion with that\nafternoon when the uproar was at its height, as of one of those\nanimals, baited by a thousand dogs.  I recall him bending his\naching head, supported on his bony hand, over the book on his desk,\nand wretchedly endeavouring to get on with his tiresome work,\namidst an uproar that might have made the Speaker of the House of\nCommons giddy.  Boys started in and out of their places, playing at\npuss in the corner with other boys; there were laughing boys,\nsinging boys, talking boys, dancing boys, howling boys; boys\nshuffled with their feet, boys whirled about him, grinning, making\nfaces, mimicking him behind his back and before his eyes; mimicking\nhis poverty, his boots, his coat, his mother, everything belonging\nto him that they should have had consideration for.\n\n'Silence!' cried Mr. Mell, suddenly rising up, and striking his\ndesk with the book.  'What does this mean!  It's impossible to bear\nit.  It's maddening.  How can you do it to me, boys?'\n\nIt was my book that he struck his desk with; and as I stood beside\nhim, following his eye as it glanced round the room, I saw the boys\nall stop, some suddenly surprised, some half afraid, and some sorry\nperhaps.\n\nSteerforth's place was at the bottom of the school, at the opposite\nend of the long room.  He was lounging with his back against the\nwall, and his hands in his pockets, and looked at Mr. Mell with his\nmouth shut up as if he were whistling, when Mr. Mell looked at him.\n\n'Silence, Mr. Steerforth!' said Mr. Mell.\n\n'Silence yourself,' said Steerforth, turning red.  'Whom are you\ntalking to?'\n\n'Sit down,' said Mr. Mell.\n\n'Sit down yourself,' said Steerforth, 'and mind your business.'\n\nThere was a titter, and some applause; but Mr. Mell was so white,\nthat silence immediately succeeded; and one boy, who had darted out\nbehind him to imitate his mother again, changed his mind, and\npretended to want a pen mended.\n\n'If you think, Steerforth,' said Mr. Mell, 'that I am not\nacquainted with the power you can establish over any mind here' -\nhe laid his hand, without considering what he did (as I supposed),\nupon my head - 'or that I have not observed you, within a few\nminutes, urging your juniors on to every sort of outrage against\nme, you are mistaken.'\n\n'I don't give myself the trouble of thinking at all about you,'\nsaid Steerforth, coolly; 'so I'm not mistaken, as it happens.'\n\n'And when you make use of your position of favouritism here, sir,'\npursued Mr. Mell, with his lip trembling very much, 'to insult a\ngentleman -'\n\n'A what? - where is he?' said Steerforth.\n\nHere somebody cried out, 'Shame, J. Steerforth!  Too bad!'  It was\nTraddles; whom Mr. Mell instantly discomfited by bidding him hold\nhis tongue.\n\n- 'To insult one who is not fortunate in life, sir, and who never\ngave you the least offence, and the many reasons for not insulting\nwhom you are old enough and wise enough to understand,' said Mr.\nMell, with his lips trembling more and more, 'you commit a mean and\nbase action.  You can sit down or stand up as you please, sir. \nCopperfield, go on.'\n\n'Young Copperfield,' said Steerforth, coming forward up the room,\n'stop a bit.  I tell you what, Mr. Mell, once for all.  When you\ntake the liberty of calling me mean or base, or anything of that\nsort, you are an impudent beggar.  You are always a beggar, you\nknow; but when you do that, you are an impudent beggar.'\n\nI am not clear whether he was going to strike Mr. Mell, or Mr. Mell\nwas going to strike him, or there was any such intention on either\nside.  I saw a rigidity come upon the whole school as if they had\nbeen turned into stone, and found Mr. Creakle in the midst of us,\nwith Tungay at his side, and Mrs. and Miss Creakle looking in at\nthe door as if they were frightened.  Mr. Mell, with his elbows on\nhis desk and his face in his hands, sat, for some moments, quite\nstill.\n\n'Mr. Mell,' said Mr. Creakle, shaking him by the arm; and his\nwhisper was so audible now, that Tungay felt it unnecessary to\nrepeat his words; 'you have not forgotten yourself, I hope?'\n\n'No, sir, no,' returned the Master, showing his face, and shaking\nhis head, and rubbing his hands in great agitation.  'No, sir.  No. \nI have remembered myself, I - no, Mr. Creakle, I have not forgotten\nmyself, I - I have remembered myself, sir.  I - I - could wish you\nhad remembered me a little sooner, Mr. Creakle.  It - it - would\nhave been more kind, sir, more just, sir.  It would have saved me\nsomething, sir.'\n\nMr. Creakle, looking hard at Mr. Mell, put his hand on Tungay's\nshoulder, and got his feet upon the form close by, and sat upon the\ndesk.  After still looking hard at Mr. Mell from his throne, as he\nshook his head, and rubbed his hands, and remained in the same\nstate of agitation, Mr. Creakle turned to Steerforth, and said:\n\n'Now, sir, as he don't condescend to tell me, what is this?'\n\nSteerforth evaded the question for a little while; looking in scorn\nand anger on his opponent, and remaining silent.  I could not help\nthinking even in that interval, I remember, what a noble fellow he\nwas in appearance, and how homely and plain Mr. Mell looked opposed\nto him.\n\n'What did he mean by talking about favourites, then?' said\nSteerforth at length.\n\n'Favourites?' repeated Mr. Creakle, with the veins in his forehead\nswelling quickly.  'Who talked about favourites?'\n\n'He did,' said Steerforth.\n\n'And pray, what did you mean by that, sir?' demanded Mr. Creakle,\nturning angrily on his assistant.\n\n'I meant, Mr. Creakle,' he returned in a low voice, 'as I said;\nthat no pupil had a right to avail himself of his position of\nfavouritism to degrade me.'\n\n'To degrade YOU?' said Mr. Creakle.  'My stars!  But give me leave\nto ask you, Mr. What's-your-name'; and here Mr. Creakle folded his\narms, cane and all, upon his chest, and made such a knot of his\nbrows that his little eyes were hardly visible below them;\n'whether, when you talk about favourites, you showed proper respect\nto me?  To me, sir,' said Mr. Creakle, darting his head at him\nsuddenly, and drawing it back again, 'the principal of this\nestablishment, and your employer.'\n\n'It was not judicious, sir, I am willing to admit,' said Mr. Mell. \n'I should not have done so, if I had been cool.'\n\nHere Steerforth struck in.\n\n'Then he said I was mean, and then he said I was base, and then I\ncalled him a beggar.  If I had been cool, perhaps I shouldn't have\ncalled him a beggar.  But I did, and I am ready to take the\nconsequences of it.'\n\nWithout considering, perhaps, whether there were any consequences\nto be taken, I felt quite in a glow at this gallant speech.  It\nmade an impression on the boys too, for there was a low stir among\nthem, though no one spoke a word.\n\n'I am surprised, Steerforth - although your candour does you\nhonour,' said Mr. Creakle, 'does you honour, certainly - I am\nsurprised, Steerforth, I must say, that you should attach such an\nepithet to any person employed and paid in Salem House, sir.'\n\nSteerforth gave a short laugh.\n\n'That's not an answer, sir,' said Mr. Creakle, 'to my remark.  I\nexpect more than that from you, Steerforth.'\n\nIf Mr. Mell looked homely, in my eyes, before the handsome boy, it\nwould be quite impossible to say how homely Mr. Creakle looked.\n'Let him deny it,' said Steerforth.\n\n'Deny that he is a beggar, Steerforth?' cried Mr. Creakle.  'Why,\nwhere does he go a-begging?'\n\n'If he is not a beggar himself, his near relation's one,' said\nSteerforth.  'It's all the same.'\n\nHe glanced at me, and Mr. Mell's hand gently patted me upon the\nshoulder.  I looked up with a flush upon my face and remorse in my\nheart, but Mr. Mell's eyes were fixed on Steerforth.  He continued\nto pat me kindly on the shoulder, but he looked at him.\n\n'Since you expect me, Mr. Creakle, to justify myself,' said\nSteerforth, 'and to say what I mean, - what I have to say is, that\nhis mother lives on charity in an alms-house.'\n\nMr. Mell still looked at him, and still patted me kindly on the\nshoulder, and said to himself, in a whisper, if I heard right:\n'Yes, I thought so.'\n\nMr. Creakle turned to his assistant, with a severe frown and\nlaboured politeness:\n\n'Now, you hear what this gentleman says, Mr. Mell.  Have the\ngoodness, if you please, to set him right before the assembled\nschool.'\n\n'He is right, sir, without correction,' returned Mr. Mell, in the\nmidst of a dead silence; 'what he has said is true.'\n\n'Be so good then as declare publicly, will you,' said Mr. Creakle,\nputting his head on one side, and rolling his eyes round the\nschool, 'whether it ever came to my knowledge until this moment?'\n\n'I believe not directly,' he returned.\n\n'Why, you know not,' said Mr. Creakle.  'Don't you, man?'\n\n'I apprehend you never supposed my worldly circumstances to be very\ngood,' replied the assistant.  'You know what my position is, and\nalways has been, here.'\n\n'I apprehend, if you come to that,' said Mr. Creakle, with his\nveins swelling again bigger than ever, 'that you've been in a wrong\nposition altogether, and mistook this for a charity school.  Mr.\nMell, we'll part, if you please.  The sooner the better.'\n\n'There is no time,' answered Mr. Mell, rising, 'like the present.'\n\n'Sir, to you!' said Mr. Creakle.\n\n'I take my leave of you, Mr. Creakle, and all of you,' said Mr.\nMell, glancing round the room, and again patting me gently on the\nshoulders.  'James Steerforth, the best wish I can leave you is\nthat you may come to be ashamed of what you have done today.  At\npresent I would prefer to see you anything rather than a friend, to\nme, or to anyone in whom I feel an interest.'\n\nOnce more he laid his hand upon my shoulder; and then taking his\nflute and a few books from his desk, and leaving the key in it for\nhis successor, he went out of the school, with his property under\nhis arm.  Mr. Creakle then made a speech, through Tungay, in which\nhe thanked Steerforth for asserting (though perhaps too warmly) the\nindependence and respectability of Salem House; and which he wound\nup by shaking hands with Steerforth, while we gave three cheers -\nI did not quite know what for, but I supposed for Steerforth, and\nso joined in them ardently, though I felt miserable.  Mr. Creakle\nthen caned Tommy Traddles for being discovered in tears, instead of\ncheers, on account of Mr. Mell's departure; and went back to his\nsofa, or his bed, or wherever he had come from.\n\nWe were left to ourselves now, and looked very blank, I recollect,\non one another.  For myself, I felt so much self-reproach and\ncontrition for my part in what had happened, that nothing would\nhave enabled me to keep back my tears but the fear that Steerforth,\nwho often looked at me, I saw, might think it unfriendly - or, I\nshould rather say, considering our relative ages, and the feeling\nwith which I regarded him, undutiful - if I showed the emotion\nwhich distressed me.  He was very angry with Traddles, and said he\nwas glad he had caught it.\n\nPoor Traddles, who had passed the stage of lying with his head upon\nthe desk, and was relieving himself as usual with a burst of\nskeletons, said he didn't care.  Mr. Mell was ill-used.\n\n'Who has ill-used him, you girl?' said Steerforth.\n\n'Why, you have,' returned Traddles.\n\n'What have I done?' said Steerforth.\n\n'What have you done?' retorted Traddles.  'Hurt his feelings, and\nlost him his situation.'\n\n'His feelings?' repeated Steerforth disdainfully.  'His feelings\nwill soon get the better of it, I'll be bound.  His feelings are\nnot like yours, Miss Traddles.  As to his situation - which was a\nprecious one, wasn't it? - do you suppose I am not going to write\nhome, and take care that he gets some money?  Polly?'\n\nWe thought this intention very noble in Steerforth, whose mother\nwas a widow, and rich, and would do almost anything, it was said,\nthat he asked her.  We were all extremely glad to see Traddles so\nput down, and exalted Steerforth to the skies: especially when he\ntold us, as he condescended to do, that what he had done had been\ndone expressly for us, and for our cause; and that he had conferred\na great boon upon us by unselfishly doing it.\nBut I must say that when I was going on with a story in the dark\nthat night, Mr. Mell's old flute seemed more than once to sound\nmournfully in my ears; and that when at last Steerforth was tired,\nand I lay down in my bed, I fancied it playing so sorrowfully\nsomewhere, that I was quite wretched.\n\nI soon forgot him in the contemplation of Steerforth, who, in an\neasy amateur way, and without any book (he seemed to me to know\neverything by heart), took some of his classes until a new master\nwas found.  The new master came from a grammar school; and before\nhe entered on his duties, dined in the parlour one day, to be\nintroduced to Steerforth.  Steerforth approved of him highly, and\ntold us he was a Brick.  Without exactly understanding what learned\ndistinction was meant by this, I respected him greatly for it, and\nhad no doubt whatever of his superior knowledge: though he never\ntook the pains with me - not that I was anybody - that Mr. Mell had\ntaken.\n\nThere was only one other event in this half-year, out of the daily\nschool-life, that made an impression upon me which still survives. \nIt survives for many reasons.\n\nOne afternoon, when we were all harassed into a state of dire\nconfusion, and Mr. Creakle was laying about him dreadfully, Tungay\ncame in, and called out in his usual strong way: 'Visitors for\nCopperfield!'\n\nA few words were interchanged between him and Mr. Creakle, as, who\nthe visitors were, and what room they were to be shown into; and\nthen I, who had, according to custom, stood up on the announcement\nbeing made, and felt quite faint with astonishment, was told to go\nby the back stairs and get a clean frill on, before I repaired to\nthe dining-room.  These orders I obeyed, in such a flutter and\nhurry of my young spirits as I had never known before; and when I\ngot to the parlour door, and the thought came into my head that it\nmight be my mother - I had only thought of Mr. or Miss Murdstone\nuntil then - I drew back my hand from the lock, and stopped to have\na sob before I went in.\n\nAt first I saw nobody; but feeling a pressure against the door, I\nlooked round it, and there, to my amazement, were Mr. Peggotty and\nHam, ducking at me with their hats, and squeezing one another\nagainst the wall.  I could not help laughing; but it was much more\nin the pleasure of seeing them, than at the appearance they made. \nWe shook hands in a very cordial way; and I laughed and laughed,\nuntil I pulled out my pocket-handkerchief and wiped my eyes.\n\nMr. Peggotty (who never shut his mouth once, I remember, during the\nvisit) showed great concern when he saw me do this, and nudged Ham\nto say something.\n\n'Cheer up, Mas'r Davy bor'!' said Ham, in his simpering way.  'Why,\nhow you have growed!'\n\n'Am I grown?' I said, drying my eyes.  I was not crying at anything\nin particular that I know of; but somehow it made me cry, to see\nold friends.\n\n'Growed, Mas'r Davy bor'?  Ain't he growed!' said Ham.\n\n'Ain't he growed!' said Mr. Peggotty.\n\nThey made me laugh again by laughing at each other, and then we all\nthree laughed until I was in danger of crying again.\n\n'Do you know how mama is, Mr. Peggotty?' I said.  'And how my dear,\ndear, old Peggotty is?'\n\n'Oncommon,' said Mr. Peggotty.\n\n'And little Em'ly, and Mrs. Gummidge?'\n\n'On - common,' said Mr. Peggotty.\n\nThere was a silence.  Mr. Peggotty, to relieve it, took two\nprodigious lobsters, and an enormous crab, and a large canvas bag\nof shrimps, out of his pockets, and piled them up in Ham's arms.\n\n'You see,' said Mr. Peggotty, 'knowing as you was partial to a\nlittle relish with your wittles when you was along with us, we took\nthe liberty.  The old Mawther biled 'em, she did.  Mrs. Gummidge\nbiled 'em.  Yes,' said Mr. Peggotty, slowly, who I thought appeared\nto stick to the subject on account of having no other subject\nready, 'Mrs. Gummidge, I do assure you, she biled 'em.'\n\nI expressed my thanks; and Mr. Peggotty, after looking at Ham, who\nstood smiling sheepishly over the shellfish, without making any\nattempt to help him, said:\n\n'We come, you see, the wind and tide making in our favour, in one\nof our Yarmouth lugs to Gravesen'.  My sister she wrote to me the\nname of this here place, and wrote to me as if ever I chanced to\ncome to Gravesen', I was to come over and inquire for Mas'r Davy\nand give her dooty, humbly wishing him well and reporting of the\nfam'ly as they was oncommon toe-be-sure.  Little Em'ly, you see,\nshe'll write to my sister when I go back, as I see you and as you\nwas similarly oncommon, and so we make it quite a merry-\ngo-rounder.'\n\nI was obliged to consider a little before I understood what Mr.\nPeggotty meant by this figure, expressive of a complete circle of\nintelligence.  I then thanked him heartily; and said, with a\nconsciousness of reddening, that I supposed little Em'ly was\naltered too, since we used to pick up shells and pebbles on the\nbeach?\n\n'She's getting to be a woman, that's wot she's getting to be,' said\nMr. Peggotty.  'Ask HIM.'\nHe meant Ham, who beamed with delight and assent over the bag of\nshrimps.\n\n'Her pretty face!' said Mr. Peggotty, with his own shining like a\nlight.\n\n'Her learning!' said Ham.\n\n'Her writing!' said Mr. Peggotty.  'Why it's as black as jet!  And\nso large it is, you might see it anywheres.'\n\nIt was perfectly delightful to behold with what enthusiasm Mr.\nPeggotty became inspired when he thought of his little favourite. \nHe stands before me again, his bluff hairy face irradiating with a\njoyful love and pride, for which I can find no description.  His\nhonest eyes fire up, and sparkle, as if their depths were stirred\nby something bright.  His broad chest heaves with pleasure.  His\nstrong loose hands clench themselves, in his earnestness; and he\nemphasizes what he says with a right arm that shows, in my pigmy\nview, like a sledge-hammer.\n\nHam was quite as earnest as he.  I dare say they would have said\nmuch more about her, if they had not been abashed by the unexpected\ncoming in of Steerforth, who, seeing me in a corner speaking with\ntwo strangers, stopped in a song he was singing, and said: 'I\ndidn't know you were here, young Copperfield!' (for it was not the\nusual visiting room) and crossed by us on his way out.\n\nI am not sure whether it was in the pride of having such a friend\nas Steerforth, or in the desire to explain to him how I came to\nhave such a friend as Mr. Peggotty, that I called to him as he was\ngoing away.  But I said, modestly - Good Heaven, how it all comes\nback to me this long time afterwards! -\n\n'Don't go, Steerforth, if you please.  These are two Yarmouth\nboatmen - very kind, good people - who are relations of my nurse,\nand have come from Gravesend to see me.'\n\n'Aye, aye?' said Steerforth, returning.  'I am glad to see them. \nHow are you both?'\n\nThere was an ease in his manner - a gay and light manner it was,\nbut not swaggering - which I still believe to have borne a kind of\nenchantment with it.  I still believe him, in virtue of this\ncarriage, his animal spirits, his delightful voice, his handsome\nface and figure, and, for aught I know, of some inborn power of\nattraction besides (which I think a few people possess), to have\ncarried a spell with him to which it was a natural weakness to\nyield, and which not many persons could withstand.  I could not but\nsee how pleased they were with him, and how they seemed to open\ntheir hearts to him in a moment.\n\n'You must let them know at home, if you please, Mr. Peggotty,' I\nsaid, 'when that letter is sent, that Mr. Steerforth is very kind\nto me, and that I don't know what I should ever do here without\nhim.'\n\n'Nonsense!' said Steerforth, laughing.  'You mustn't tell them\nanything of the sort.'\n\n'And if Mr. Steerforth ever comes into Norfolk or Suffolk, Mr.\nPeggotty,' I said, 'while I am there, you may depend upon it I\nshall bring him to Yarmouth, if he will let me, to see your house. \nYou never saw such a good house, Steerforth.  It's made out of a\nboat!'\n\n'Made out of a boat, is it?' said Steerforth.  'It's the right sort\nof a house for such a thorough-built boatman.'\n\n'So 'tis, sir, so 'tis, sir,' said Ham, grinning.  'You're right,\nyoung gen'l'm'n!  Mas'r Davy bor', gen'l'm'n's right.  A thorough-\nbuilt boatman!  Hor, hor!  That's what he is, too!'\n\nMr. Peggotty was no less pleased than his nephew, though his\nmodesty forbade him to claim a personal compliment so vociferously.\n\n'Well, sir,' he said, bowing and chuckling, and tucking in the ends\nof his neckerchief at his breast: 'I thankee, sir, I thankee!  I do\nmy endeavours in my line of life, sir.'\n\n'The best of men can do no more, Mr. Peggotty,' said Steerforth. \nHe had got his name already.\n\n'I'll pound it, it's wot you do yourself, sir,' said Mr. Peggotty,\nshaking his head, 'and wot you do well - right well!  I thankee,\nsir.  I'm obleeged to you, sir, for your welcoming manner of me. \nI'm rough, sir, but I'm ready - least ways, I hope I'm ready, you\nunnerstand.  My house ain't much for to see, sir, but it's hearty\nat your service if ever you should come along with Mas'r Davy to\nsee it.  I'm a reg'lar Dodman, I am,' said Mr. Peggotty, by which\nhe meant snail, and this was in allusion to his being slow to go,\nfor he had attempted to go after every sentence, and had somehow or\nother come back again; 'but I wish you both well, and I wish you\nhappy!'\n\nHam echoed this sentiment, and we parted with them in the heartiest\nmanner.  I was almost tempted that evening to tell Steerforth about\npretty little Em'ly, but I was too timid of mentioning her name,\nand too much afraid of his laughing at me.  I remember that I\nthought a good deal, and in an uneasy sort of way, about Mr.\nPeggotty having said that she was getting on to be a woman; but I\ndecided that was nonsense.\n\nWe transported the shellfish, or the 'relish' as Mr. Peggotty had\nmodestly called it, up into our room unobserved, and made a great\nsupper that evening.  But Traddles couldn't get happily out of it. \nHe was too unfortunate even to come through a supper like anybody\nelse.  He was taken ill in the night - quite prostrate he was - in\nconsequence of Crab; and after being drugged with black draughts\nand blue pills, to an extent which Demple (whose father was a\ndoctor) said was enough to undermine a horse's constitution,\nreceived a caning and six chapters of Greek Testament for refusing\nto confess.\n\nThe rest of the half-year is a jumble in my recollection of the\ndaily strife and struggle of our lives; of the waning summer and\nthe changing season; of the frosty mornings when we were rung out\nof bed, and the cold, cold smell of the dark nights when we were\nrung into bed again; of the evening schoolroom dimly lighted and\nindifferently warmed, and the morning schoolroom which was nothing\nbut a great shivering-machine; of the alternation of boiled beef\nwith roast beef, and boiled mutton with roast mutton; of clods of\nbread-and-butter, dog's-eared lesson-books, cracked slates,\ntear-blotted copy-books, canings, rulerings, hair-cuttings, rainy\nSundays, suet-puddings, and a dirty atmosphere of ink, surrounding\nall.\n\nI well remember though, how the distant idea of the holidays, after\nseeming for an immense time to be a stationary speck, began to come\ntowards us, and to grow and grow.  How from counting months, we\ncame to weeks, and then to days; and how I then began to be afraid\nthat I should not be sent for and when I learnt from Steerforth\nthat I had been sent for, and was certainly to go home, had dim\nforebodings that I might break my leg first.  How the breaking-up\nday changed its place fast, at last, from the week after next to\nnext week, this week, the day after tomorrow, tomorrow, today,\ntonight - when I was inside the Yarmouth mail, and going home.\n\nI had many a broken sleep inside the Yarmouth mail, and many an\nincoherent dream of all these things.  But when I awoke at\nintervals, the ground outside the window was not the playground of\nSalem House, and the sound in my ears was not the sound of Mr.\nCreakle giving it to Traddles, but the sound of the coachman\ntouching up the horses.\n\n\n\nCHAPTER 8\nMY HOLIDAYS.  ESPECIALLY ONE HAPPY AFTERNOON\n\n\nWhen we arrived before day at the inn where the mail stopped, which\nwas not the inn where my friend the waiter lived, I was shown up to\na nice little bedroom, with DOLPHIN painted on the door.  Very cold\nI was, I know, notwithstanding the hot tea they had given me before\na large fire downstairs; and very glad I was to turn into the\nDolphin's bed, pull the Dolphin's blankets round my head, and go to\nsleep.\n\nMr. Barkis the carrier was to call for me in the morning at nine\no'clock.  I got up at eight, a little giddy from the shortness of\nmy night's rest, and was ready for him before the appointed time. \nHe received me exactly as if not five minutes had elapsed since we\nwere last together, and I had only been into the hotel to get\nchange for sixpence, or something of that sort.\n\nAs soon as I and my box were in the cart, and the carrier seated,\nthe lazy horse walked away with us all at his accustomed pace.\n\n'You look very well, Mr. Barkis,' I said, thinking he would like to\nknow it.\n\nMr. Barkis rubbed his cheek with his cuff, and then looked at his\ncuff as if he expected to find some of the bloom upon it; but made\nno other acknowledgement of the compliment.\n\n'I gave your message, Mr. Barkis,' I said: 'I wrote to Peggotty.'\n\n'Ah!' said Mr. Barkis.\n\nMr. Barkis seemed gruff, and answered drily.\n\n'Wasn't it right, Mr. Barkis?' I asked, after a little hesitation.\n\n'Why, no,' said Mr. Barkis.\n\n'Not the message?'\n\n'The message was right enough, perhaps,' said Mr. Barkis; 'but it\ncome to an end there.'\n\nNot understanding what he meant, I repeated inquisitively: 'Came to\nan end, Mr. Barkis?'\n\n'Nothing come of it,' he explained, looking at me sideways.  'No\nanswer.'\n\n'There was an answer expected, was there, Mr. Barkis?' said I,\nopening my eyes.  For this was a new light to me.\n\n'When a man says he's willin',' said Mr. Barkis, turning his glance\nslowly on me again, 'it's as much as to say, that man's a-waitin'\nfor a answer.'\n\n'Well, Mr. Barkis?'\n\n'Well,' said Mr. Barkis, carrying his eyes back to his horse's\nears; 'that man's been a-waitin' for a answer ever since.'\n\n'Have you told her so, Mr. Barkis?'\n\n'No - no,' growled Mr. Barkis, reflecting about it.  'I ain't got\nno call to go and tell her so.  I never said six words to her\nmyself, I ain't a-goin' to tell her so.'\n\n'Would you like me to do it, Mr. Barkis?' said I, doubtfully.\n'You might tell her, if you would,' said Mr. Barkis, with another\nslow look at me, 'that Barkis was a-waitin' for a answer.  Says you\n- what name is it?'\n\n'Her name?'\n\n'Ah!' said Mr. Barkis, with a nod of his head.\n\n'Peggotty.'\n\n'Chrisen name?  Or nat'ral name?' said Mr. Barkis.\n\n'Oh, it's not her Christian name.  Her Christian name is Clara.'\n\n'Is it though?' said Mr. Barkis.\n\nHe seemed to find an immense fund of reflection in this\ncircumstance, and sat pondering and inwardly whistling for some\ntime.\n\n'Well!' he resumed at length.  'Says you, \"Peggotty!  Barkis is\nwaitin' for a answer.\"  Says she, perhaps, \"Answer to what?\"  Says\nyou, \"To what I told you.\"  \"What is that?\" says she.  \"Barkis is\nwillin',\" says you.'\n\nThis extremely artful suggestion Mr. Barkis accompanied with a\nnudge of his elbow that gave me quite a stitch in my side.  After\nthat, he slouched over his horse in his usual manner; and made no\nother reference to the subject except, half an hour afterwards,\ntaking a piece of chalk from his pocket, and writing up, inside the\ntilt of the cart, 'Clara Peggotty' - apparently as a private\nmemorandum.\n\nAh, what a strange feeling it was to be going home when it was not\nhome, and to find that every object I looked at, reminded me of the\nhappy old home, which was like a dream I could never dream again!\nThe days when my mother and I and Peggotty were all in all to one\nanother, and there was no one to come between us, rose up before me\nso sorrowfully on the road, that I am not sure I was glad to be\nthere - not sure but that I would rather have remained away, and\nforgotten it in Steerforth's company.  But there I was; and soon I\nwas at our house, where the bare old elm-trees wrung their many\nhands in the bleak wintry air, and shreds of the old rooks'-nests\ndrifted away upon the wind.\n\nThe carrier put my box down at the garden-gate, and left me.  I\nwalked along the path towards the house, glancing at the windows,\nand fearing at every step to see Mr. Murdstone or Miss Murdstone\nlowering out of one of them.  No face appeared, however; and being\ncome to the house, and knowing how to open the door, before dark,\nwithout knocking, I went in with a quiet, timid step.\n\nGod knows how infantine the memory may have been, that was awakened\nwithin me by the sound of my mother's voice in the old parlour,\nwhen I set foot in the hall.  She was singing in a low tone.  I\nthink I must have lain in her arms, and heard her singing so to me\nwhen I was but a baby.  The strain was new to me, and yet it was so\nold that it filled my heart brim-full; like a friend come back from\na long absence.\n\nI believed, from the solitary and thoughtful way in which my mother\nmurmured her song, that she was alone.  And I went softly into the\nroom.  She was sitting by the fire, suckling an infant, whose tiny\nhand she held against her neck.  Her eyes were looking down upon\nits face, and she sat singing to it.  I was so far right, that she\nhad no other companion.\n\nI spoke to her, and she started, and cried out.  But seeing me, she\ncalled me her dear Davy, her own boy! and coming half across the\nroom to meet me, kneeled down upon the ground and kissed me, and\nlaid my head down on her bosom near the little creature that was\nnestling there, and put its hand to my lips.\n\nI wish I had died.  I wish I had died then, with that feeling in my\nheart!  I should have been more fit for Heaven than I ever have\nbeen since.\n\n'He is your brother,' said my mother, fondling me.  'Davy, my\npretty boy!  My poor child!'  Then she kissed me more and more, and\nclasped me round the neck.  This she was doing when Peggotty came\nrunning in, and bounced down on the ground beside us, and went mad\nabout us both for a quarter of an hour.\n\nIt seemed that I had not been expected so soon, the carrier being\nmuch before his usual time.  It seemed, too, that Mr. and Miss\nMurdstone had gone out upon a visit in the neighbourhood, and would\nnot return before night.  I had never hoped for this.  I had never\nthought it possible that we three could be together undisturbed,\nonce more; and I felt, for the time, as if the old days were come\nback.\n\nWe dined together by the fireside.  Peggotty was in attendance to\nwait upon us, but my mother wouldn't let her do it, and made her\ndine with us.  I had my own old plate, with a brown view of a\nman-of-war in full sail upon it, which Peggotty had hoarded\nsomewhere all the time I had been away, and would not have had\nbroken, she said, for a hundred pounds.  I had my own old mug with\nDavid on it, and my own old little knife and fork that wouldn't\ncut.\n\nWhile we were at table, I thought it a favourable occasion to tell\nPeggotty about Mr. Barkis, who, before I had finished what I had to\ntell her, began to laugh, and throw her apron over her face.\n\n'Peggotty,' said my mother.  'What's the matter?'\n\nPeggotty only laughed the more, and held her apron tight over her\nface when my mother tried to pull it away, and sat as if her head\nwere in a bag.\n\n'What are you doing, you stupid creature?' said my mother,\nlaughing.\n\n'Oh, drat the man!' cried Peggotty.  'He wants to marry me.'\n\n'It would be a very good match for you; wouldn't it?' said my\nmother.\n\n'Oh!  I don't know,' said Peggotty.  'Don't ask me.  I wouldn't\nhave him if he was made of gold.  Nor I wouldn't have anybody.'\n\n'Then, why don't you tell him so, you ridiculous thing?' said my\nmother.\n\n'Tell him so,' retorted Peggotty, looking out of her apron.  'He\nhas never said a word to me about it.  He knows better.  If he was\nto make so bold as say a word to me, I should slap his face.'\n\nHer own was as red as ever I saw it, or any other face, I think;\nbut she only covered it again, for a few moments at a time, when\nshe was taken with a violent fit of laughter; and after two or\nthree of those attacks, went on with her dinner.\n\nI remarked that my mother, though she smiled when Peggotty looked\nat her, became more serious and thoughtful.  I had seen at first\nthat she was changed.  Her face was very pretty still, but it\nlooked careworn, and too delicate; and her hand was so thin and\nwhite that it seemed to me to be almost transparent.  But the\nchange to which I now refer was superadded to this: it was in her\nmanner, which became anxious and fluttered.  At last she said,\nputting out her hand, and laying it affectionately on the hand of\nher old servant,\n\n'Peggotty, dear, you are not going to be married?'\n\n'Me, ma'am?' returned Peggotty, staring.  'Lord bless you, no!'\n\n'Not just yet?' said my mother, tenderly.\n\n'Never!' cried Peggotty.\n\nMy mother took her hand, and said:\n\n'Don't leave me, Peggotty.  Stay with me.  It will not be for long,\nperhaps.  What should I ever do without you!'\n\n'Me leave you, my precious!' cried Peggotty.  'Not for all the\nworld and his wife.  Why, what's put that in your silly little\nhead?' - For Peggotty had been used of old to talk to my mother\nsometimes like a child.\n\nBut my mother made no answer, except to thank her, and Peggotty\nwent running on in her own fashion.\n\n'Me leave you?  I think I see myself.  Peggotty go away from you? \nI should like to catch her at it!  No, no, no,' said Peggotty,\nshaking her head, and folding her arms; 'not she, my dear.  It\nisn't that there ain't some Cats that would be well enough pleased\nif she did, but they sha'n't be pleased.  They shall be aggravated. \nI'll stay with you till I am a cross cranky old woman.  And when\nI'm too deaf, and too lame, and too blind, and too mumbly for want\nof teeth, to be of any use at all, even to be found fault with,\nthan I shall go to my Davy, and ask him to take me in.'\n\n'And, Peggotty,' says I, 'I shall be glad to see you, and I'll make\nyou as welcome as a queen.'\n\n'Bless your dear heart!' cried Peggotty.  'I know you will!'  And\nshe kissed me beforehand, in grateful acknowledgement of my\nhospitality.  After that, she covered her head up with her apron\nagain and had another laugh about Mr. Barkis.  After that, she took\nthe baby out of its little cradle, and nursed it.  After that, she\ncleared the dinner table; after that, came in with another cap on,\nand her work-box, and the yard-measure, and the bit of wax-candle,\nall just the same as ever.\n\nWe sat round the fire, and talked delightfully.  I told them what\na hard master Mr. Creakle was, and they pitied me very much.  I\ntold them what a fine fellow Steerforth was, and what a patron of\nmine, and Peggotty said she would walk a score of miles to see him. \nI took the little baby in my arms when it was awake, and nursed it\nlovingly.  When it was asleep again, I crept close to my mother's\nside according to my old custom, broken now a long time, and sat\nwith my arms embracing her waist, and my little red cheek on her\nshoulder, and once more felt her beautiful hair drooping over me -\nlike an angel's wing as I used to think, I recollect - and was very\nhappy indeed.\n\nWhile I sat thus, looking at the fire, and seeing pictures in the\nred-hot coals, I almost believed that I had never been away; that\nMr. and Miss Murdstone were such pictures, and would vanish when\nthe fire got low; and that there was nothing real in all that I\nremembered, save my mother, Peggotty, and I.\n\nPeggotty darned away at a stocking as long as she could see, and\nthen sat with it drawn on her left hand like a glove, and her\nneedle in her right, ready to take another stitch whenever there\nwas a blaze.  I cannot conceive whose stockings they can have been\nthat Peggotty was always darning, or where such an unfailing supply\nof stockings in want of darning can have come from.  From my\nearliest infancy she seems to have been always employed in that\nclass of needlework, and never by any chance in any other.\n\n'I wonder,' said Peggotty, who was sometimes seized with a fit of\nwondering on some most unexpected topic, 'what's become of Davy's\ngreat-aunt?'\n'Lor, Peggotty!' observed my mother, rousing herself from a\nreverie, 'what nonsense you talk!'\n\n'Well, but I really do wonder, ma'am,' said Peggotty.\n\n'What can have put such a person in your head?' inquired my mother. \n'Is there nobody else in the world to come there?'\n\n'I don't know how it is,' said Peggotty, 'unless it's on account of\nbeing stupid, but my head never can pick and choose its people. \nThey come and they go, and they don't come and they don't go, just\nas they like.  I wonder what's become of her?'\n\n'How absurd you are, Peggotty!' returned my mother.  'One would\nsuppose you wanted a second visit from her.'\n\n'Lord forbid!' cried Peggotty.\n\n'Well then, don't talk about such uncomfortable things, there's a\ngood soul,' said my mother.  'Miss Betsey is shut up in her cottage\nby the sea, no doubt, and will remain there.  At all events, she is\nnot likely ever to trouble us again.'\n\n'No!' mused Peggotty.  'No, that ain't likely at all.  - I wonder,\nif she was to die, whether she'd leave Davy anything?'\n\n'Good gracious me, Peggotty,' returned my mother, 'what a\nnonsensical woman you are! when you know that she took offence at\nthe poor dear boy's ever being born at all.'\n\n'I suppose she wouldn't be inclined to forgive him now,' hinted\nPeggotty.\n\n'Why should she be inclined to forgive him now?' said my mother,\nrather sharply.\n\n'Now that he's got a brother, I mean,' said Peggotty.\n\nMY mother immediately began to cry, and wondered how Peggotty dared\nto say such a thing.\n\n'As if this poor little innocent in its cradle had ever done any\nharm to you or anybody else, you jealous thing!' said she.  'You\nhad much better go and marry Mr. Barkis, the carrier.  Why don't\nyou?'\n\n'I should make Miss Murdstone happy, if I was to,' said Peggotty.\n\n'What a bad disposition you have, Peggotty!' returned my mother. \n'You are as jealous of Miss Murdstone as it is possible for a\nridiculous creature to be.  You want to keep the keys yourself, and\ngive out all the things, I suppose?  I shouldn't be surprised if\nyou did.  When you know that she only does it out of kindness and\nthe best intentions!  You know she does, Peggotty - you know it\nwell.'\n\nPeggotty muttered something to the effect of 'Bother the best\nintentions!' and something else to the effect that there was a\nlittle too much of the best intentions going on.\n\n'I know what you mean, you cross thing,' said my mother.  'I\nunderstand you, Peggotty, perfectly.  You know I do, and I wonder\nyou don't colour up like fire.  But one point at a time.  Miss\nMurdstone is the point now, Peggotty, and you sha'n't escape from\nit.  Haven't you heard her say, over and over again, that she\nthinks I am too thoughtless and too - a - a -'\n\n'Pretty,' suggested Peggotty.\n\n'Well,' returned my mother, half laughing, 'and if she is so silly\nas to say so, can I be blamed for it?'\n\n'No one says you can,' said Peggotty.\n\n'No, I should hope not, indeed!' returned my mother.  'Haven't you\nheard her say, over and over again, that on this account she wished\nto spare me a great deal of trouble, which she thinks I am not\nsuited for, and which I really don't know myself that I AM suited\nfor; and isn't she up early and late, and going to and fro\ncontinually - and doesn't she do all sorts of things, and grope\ninto all sorts of places, coal-holes and pantries and I don't know\nwhere, that can't be very agreeable - and do you mean to insinuate\nthat there is not a sort of devotion in that?'\n\n'I don't insinuate at all,' said Peggotty.\n\n'You do, Peggotty,' returned my mother.  'You never do anything\nelse, except your work.  You are always insinuating.  You revel in\nit.  And when you talk of Mr. Murdstone's good intentions -'\n\n'I never talked of 'em,' said Peggotty.\n\n'No, Peggotty,' returned my mother, 'but you insinuated.  That's\nwhat I told you just now.  That's the worst of you.  You WILL\ninsinuate.  I said, at the moment, that I understood you, and you\nsee I did.  When you talk of Mr. Murdstone's good intentions, and\npretend to slight them (for I don't believe you really do, in your\nheart, Peggotty), you must be as well convinced as I am how good\nthey are, and how they actuate him in everything.  If he seems to\nhave been at all stern with a certain person, Peggotty - you\nunderstand, and so I am sure does Davy, that I am not alluding to\nanybody present - it is solely because he is satisfied that it is\nfor a certain person's benefit.  He naturally loves a certain\nperson, on my account; and acts solely for a certain person's good. \nHe is better able to judge of it than I am; for I very well know\nthat I am a weak, light, girlish creature, and that he is a firm,\ngrave, serious man.  And he takes,' said my mother, with the tears\nwhich were engendered in her affectionate nature, stealing down her\nface, 'he takes great pains with me; and I ought to be very\nthankful to him, and very submissive to him even in my thoughts;\nand when I am not, Peggotty, I worry and condemn myself, and feel\ndoubtful of my own heart, and don't know what to do.'\n\nPeggotty sat with her chin on the foot of the stocking, looking\nsilently at the fire.\n\n'There, Peggotty,' said my mother, changing her tone, 'don't let us\nfall out with one another, for I couldn't bear it.  You are my true\nfriend, I know, if I have any in the world.  When I call you a\nridiculous creature, or a vexatious thing, or anything of that\nsort, Peggotty, I only mean that you are my true friend, and always\nhave been, ever since the night when Mr. Copperfield first brought\nme home here, and you came out to the gate to meet me.'\n\nPeggotty was not slow to respond, and ratify the treaty of\nfriendship by giving me one of her best hugs.  I think I had some\nglimpses of the real character of this conversation at the time;\nbut I am sure, now, that the good creature originated it, and took\nher part in it, merely that my mother might comfort herself with\nthe little contradictory summary in which she had indulged.  The\ndesign was efficacious; for I remember that my mother seemed more\nat ease during the rest of the evening, and that Peggotty observed\nher less.\n\nWhen we had had our tea, and the ashes were thrown up, and the\ncandles snuffed, I read Peggotty a chapter out of the Crocodile\nBook, in remembrance of old times - she took it out of her pocket:\nI don't know whether she had kept it there ever since - and then we\ntalked about Salem House, which brought me round again to\nSteerforth, who was my great subject.  We were very happy; and that\nevening, as the last of its race, and destined evermore to close\nthat volume of my life, will never pass out of my memory.\n\nIt was almost ten o'clock before we heard the sound of wheels.  We\nall got up then; and my mother said hurriedly that, as it was so\nlate, and Mr. and Miss Murdstone approved of early hours for young\npeople, perhaps I had better go to bed.  I kissed her, and went\nupstairs with my candle directly, before they came in.  It appeared\nto my childish fancy, as I ascended to the bedroom where I had been\nimprisoned, that they brought a cold blast of air into the house\nwhich blew away the old familiar feeling like a feather.\n\nI felt uncomfortable about going down to breakfast in the morning,\nas I had never set eyes on Mr. Murdstone since the day when I\ncommitted my memorable offence.  However, as it must be done, I\nwent down, after two or three false starts half-way, and as many\nruns back on tiptoe to my own room, and presented myself in the\nparlour.\n\nHe was standing before the fire with his back to it, while Miss\nMurdstone made the tea.  He looked at me steadily as I entered, but\nmade no sign of recognition whatever.\nI went up to him, after a moment of confusion, and said: 'I beg\nyour pardon, sir.  I am very sorry for what I did, and I hope you\nwill forgive me.'\n\n'I am glad to hear you are sorry, David,' he replied.\n\nThe hand he gave me was the hand I had bitten.  I could not\nrestrain my eye from resting for an instant on a red spot upon it;\nbut it was not so red as I turned, when I met that sinister\nexpression in his face.\n\n'How do you do, ma'am?' I said to Miss Murdstone.\n\n'Ah, dear me!' sighed Miss Murdstone, giving me the tea-caddy scoop\ninstead of her fingers.  'How long are the holidays?'\n\n'A month, ma'am.'\n\n'Counting from when?'\n\n'From today, ma'am.'\n\n'Oh!' said Miss Murdstone.  'Then here's one day off.'\n\nShe kept a calendar of the holidays in this way, and every morning\nchecked a day off in exactly the same manner.  She did it gloomily\nuntil she came to ten, but when she got into two figures she became\nmore hopeful, and, as the time advanced, even jocular.\n\nIt was on this very first day that I had the misfortune to throw\nher, though she was not subject to such weakness in general, into\na state of violent consternation.  I came into the room where she\nand my mother were sitting; and the baby (who was only a few weeks\nold) being on my mother's lap, I took it very carefully in my arms. \nSuddenly Miss Murdstone gave such a scream that I all but dropped\nit.\n\n'My dear Jane!' cried my mother.\n\n'Good heavens, Clara, do you see?' exclaimed Miss Murdstone.\n\n'See what, my dear Jane?' said my mother; 'where?'\n\n'He's got it!' cried Miss Murdstone.  'The boy has got the baby!'\n\nShe was limp with horror; but stiffened herself to make a dart at\nme, and take it out of my arms.  Then, she turned faint; and was so\nvery ill that they were obliged to give her cherry brandy.  I was\nsolemnly interdicted by her, on her recovery, from touching my\nbrother any more on any pretence whatever; and my poor mother, who,\nI could see, wished otherwise, meekly confirmed the interdict, by\nsaying: 'No doubt you are right, my dear Jane.'\n\nOn another occasion, when we three were together, this same dear\nbaby - it was truly dear to me, for our mother's sake - was the\ninnocent occasion of Miss Murdstone's going into a passion.  My\nmother, who had been looking at its eyes as it lay upon her lap,\nsaid:\n\n'Davy! come here!' and looked at mine.\n\nI saw Miss Murdstone lay her beads down.\n\n'I declare,' said my mother, gently, 'they are exactly alike.  I\nsuppose they are mine.  I think they are the colour of mine.  But\nthey are wonderfully alike.'\n\n'What are you talking about, Clara?' said Miss Murdstone.\n\n'My dear Jane,' faltered my mother, a little abashed by the harsh\ntone of this inquiry, 'I find that the baby's eyes and Davy's are\nexactly alike.'\n\n'Clara!' said Miss Murdstone, rising angrily, 'you are a positive\nfool sometimes.'\n\n'My dear Jane,' remonstrated my mother.\n\n'A positive fool,' said Miss Murdstone.  'Who else could compare my\nbrother's baby with your boy?  They are not at all alike.  They are\nexactly unlike.  They are utterly dissimilar in all respects.  I\nhope they will ever remain so.  I will not sit here, and hear such\ncomparisons made.'  With that she stalked out, and made the door\nbang after her.\n\nIn short, I was not a favourite with Miss Murdstone.  In short, I\nwas not a favourite there with anybody, not even with myself; for\nthose who did like me could not show it, and those who did not,\nshowed it so plainly that I had a sensitive consciousness of always\nappearing constrained, boorish, and dull.\n\nI felt that I made them as uncomfortable as they made me.  If I\ncame into the room where they were, and they were talking together\nand my mother seemed cheerful, an anxious cloud would steal over\nher face from the moment of my entrance.  If Mr. Murdstone were in\nhis best humour, I checked him.  If Miss Murdstone were in her\nworst, I intensified it.  I had perception enough to know that my\nmother was the victim always; that she was afraid to speak to me or\nto be kind to me, lest she should give them some offence by her\nmanner of doing so, and receive a lecture afterwards; that she was\nnot only ceaselessly afraid of her own offending, but of my\noffending, and uneasily watched their looks if I only moved. \nTherefore I resolved to keep myself as much out of their way as I\ncould; and many a wintry hour did I hear the church clock strike,\nwhen I was sitting in my cheerless bedroom, wrapped in my little\ngreat-coat, poring over a book.\n\nIn the evening, sometimes, I went and sat with Peggotty in the\nkitchen.  There I was comfortable, and not afraid of being myself. \nBut neither of these resources was approved of in the parlour.  The\ntormenting humour which was dominant there stopped them both.  I\nwas still held to be necessary to my poor mother's training, and,\nas one of her trials, could not be suffered to absent myself.\n\n'David,' said Mr. Murdstone, one day after dinner when I was going\nto leave the room as usual; 'I am sorry to observe that you are of\na sullen disposition.'\n\n'As sulky as a bear!' said Miss Murdstone.\n\nI stood still, and hung my head.\n\n'Now, David,' said Mr. Murdstone, 'a sullen obdurate disposition\nis, of all tempers, the worst.'\n\n'And the boy's is, of all such dispositions that ever I have seen,'\nremarked his sister, 'the most confirmed and stubborn.  I think, my\ndear Clara, even you must observe it?'\n\n'I beg your pardon, my dear Jane,' said my mother, 'but are you\nquite sure - I am certain you'll excuse me, my dear Jane - that you\nunderstand Davy?'\n\n'I should be somewhat ashamed of myself, Clara,' returned Miss\nMurdstone, 'if I could not understand the boy, or any boy.  I don't\nprofess to be profound; but I do lay claim to common sense.'\n\n'No doubt, my dear Jane,' returned my mother, 'your understanding\nis very vigorous -'\n\n'Oh dear, no!  Pray don't say that, Clara,' interposed Miss\nMurdstone, angrily.\n\n'But I am sure it is,' resumed my mother; 'and everybody knows it\nis.  I profit so much by it myself, in many ways - at least I ought\nto - that no one can be more convinced of it than myself; and\ntherefore I speak with great diffidence, my dear Jane, I assure\nyou.'\n\n'We'll say I don't understand the boy, Clara,' returned Miss\nMurdstone, arranging the little fetters on her wrists.  'We'll\nagree, if you please, that I don't understand him at all.  He is\nmuch too deep for me.  But perhaps my brother's penetration may\nenable him to have some insight into his character.  And I believe\nmy brother was speaking on the subject when we - not very decently\n- interrupted him.'\n\n'I think, Clara,' said Mr. Murdstone, in a low grave voice, 'that\nthere may be better and more dispassionate judges of such a\nquestion than you.'\n\n'Edward,' replied my mother, timidly, 'you are a far better judge\nof all questions than I pretend to be.  Both you and Jane are.  I\nonly said -'\n\n'You only said something weak and inconsiderate,' he replied.  'Try\nnot to do it again, my dear Clara, and keep a watch upon yourself.'\n\nMY mother's lips moved, as if she answered 'Yes, my dear Edward,'\nbut she said nothing aloud.\n\n'I was sorry, David, I remarked,' said Mr. Murdstone, turning his\nhead and his eyes stiffly towards me, 'to observe that you are of\na sullen disposition.  This is not a character that I can suffer to\ndevelop itself beneath my eyes without an effort at improvement. \nYou must endeavour, sir, to change it.  We must endeavour to change\nit for you.'\n\n'I beg your pardon, sir,' I faltered.  'I have never meant to be\nsullen since I came back.'\n\n'Don't take refuge in a lie, sir!' he returned so fiercely, that I\nsaw my mother involuntarily put out her trembling hand as if to\ninterpose between us.  'You have withdrawn yourself in your\nsullenness to your own room.  You have kept your own room when you\nought to have been here.  You know now, once for all, that I\nrequire you to be here, and not there.  Further, that I require you\nto bring obedience here.  You know me, David.  I will have it\ndone.'\n\nMiss Murdstone gave a hoarse chuckle.\n\n'I will have a respectful, prompt, and ready bearing towards\nmyself,' he continued, 'and towards Jane Murdstone, and towards\nyour mother.  I will not have this room shunned as if it were\ninfected, at the pleasure of a child.  Sit down.'\n\nHe ordered me like a dog, and I obeyed like a dog.\n\n'One thing more,' he said.  'I observe that you have an attachment\nto low and common company.  You are not to associate with servants. \nThe kitchen will not improve you, in the many respects in which you\nneed improvement.  Of the woman who abets you, I say nothing -\nsince you, Clara,' addressing my mother in a lower voice, 'from old\nassociations and long-established fancies, have a weakness\nrespecting her which is not yet overcome.'\n\n'A most unaccountable delusion it is!' cried Miss Murdstone.\n\n'I only say,' he resumed, addressing me, 'that I disapprove of your\npreferring such company as Mistress Peggotty, and that it is to be\nabandoned.  Now, David, you understand me, and you know what will\nbe the consequence if you fail to obey me to the letter.'\n\nI knew well - better perhaps than he thought, as far as my poor\nmother was concerned - and I obeyed him to the letter.  I retreated\nto my own room no more; I took refuge with Peggotty no more; but\nsat wearily in the parlour day after day, looking forward to night,\nand bedtime.\n\nWhat irksome constraint I underwent, sitting in the same attitude\nhours upon hours, afraid to move an arm or a leg lest Miss\nMurdstone should complain (as she did on the least pretence) of my\nrestlessness, and afraid to move an eye lest she should light on\nsome look of dislike or scrutiny that would find new cause for\ncomplaint in mine!  What intolerable dulness to sit listening to\nthe ticking of the clock; and watching Miss Murdstone's little\nshiny steel beads as she strung them; and wondering whether she\nwould ever be married, and if so, to what sort of unhappy man; and\ncounting the divisions in the moulding of the chimney-piece; and\nwandering away, with my eyes, to the ceiling, among the curls and\ncorkscrews in the paper on the wall!\n\nWhat walks I took alone, down muddy lanes, in the bad winter\nweather, carrying that parlour, and Mr. and Miss Murdstone in it,\neverywhere: a monstrous load that I was obliged to bear, a daymare\nthat there was no possibility of breaking in, a weight that brooded\non my wits, and blunted them!\n\nWhat meals I had in silence and embarrassment, always feeling that\nthere were a knife and fork too many, and that mine; an appetite\ntoo many, and that mine; a plate and chair too many, and those\nmine; a somebody too many, and that I!\n\nWhat evenings, when the candles came, and I was expected to employ\nmyself, but, not daring to read an entertaining book, pored over\nsome hard-headed, harder-hearted treatise on arithmetic; when the\ntables of weights and measures set themselves to tunes, as 'Rule\nBritannia', or 'Away with Melancholy'; when they wouldn't stand\nstill to be learnt, but would go threading my grandmother's needle\nthrough my unfortunate head, in at one ear and out at the other! \nWhat yawns and dozes I lapsed into, in spite of all my care; what\nstarts I came out of concealed sleeps with; what answers I never\ngot, to little observations that I rarely made; what a blank space\nI seemed, which everybody overlooked, and yet was in everybody's\nway; what a heavy relief it was to hear Miss Murdstone hail the\nfirst stroke of nine at night, and order me to bed!\n\nThus the holidays lagged away, until the morning came when Miss\nMurdstone said: 'Here's the last day off!' and gave me the closing\ncup of tea of the vacation.\n\nI was not sorry to go.  I had lapsed into a stupid state; but I was\nrecovering a little and looking forward to Steerforth, albeit Mr.\nCreakle loomed behind him.  Again Mr. Barkis appeared at the gate,\nand again Miss Murdstone in her warning voice, said: 'Clara!' when\nmy mother bent over me, to bid me farewell.\n\nI kissed her, and my baby brother, and was very sorry then; but not\nsorry to go away, for the gulf between us was there, and the\nparting was there, every day.  And it is not so much the embrace\nshe gave me, that lives in my mind, though it was as fervent as\ncould be, as what followed the embrace.\n\nI was in the carrier's cart when I heard her calling to me.  I\nlooked out, and she stood at the garden-gate alone, holding her\nbaby up in her arms for me to see.  It was cold still weather; and\nnot a hair of her head, nor a fold of her dress, was stirred, as\nshe looked intently at me, holding up her child.\n\nSo I lost her.  So I saw her afterwards, in my sleep at school - a\nsilent presence near my bed - looking at me with the same intent\nface - holding up her baby in her arms.\n\n\n\nCHAPTER 9\nI HAVE A MEMORABLE BIRTHDAY\n\n\nI PASS over all that happened at school, until the anniversary of\nmy birthday came round in March.  Except that Steerforth was more\nto be admired than ever, I remember nothing.  He was going away at\nthe end of the half-year, if not sooner, and was more spirited and\nindependent than before in my eyes, and therefore more engaging\nthan before; but beyond this I remember nothing.  The great\nremembrance by which that time is marked in my mind, seems to have\nswallowed up all lesser recollections, and to exist alone.\n\nIt is even difficult for me to believe that there was a gap of full\ntwo months between my return to Salem House and the arrival of that\nbirthday.  I can only understand that the fact was so, because I\nknow it must have been so; otherwise I should feel convinced that\nthere was no interval, and that the one occasion trod upon the\nother's heels.\n\nHow well I recollect the kind of day it was!  I smell the fog that\nhung about the place; I see the hoar frost, ghostly, through it; I\nfeel my rimy hair fall clammy on my cheek; I look along the dim\nperspective of the schoolroom, with a sputtering candle here and\nthere to light up the foggy morning, and the breath of the boys\nwreathing and smoking in the raw cold as they blow upon their\nfingers, and tap their feet upon the floor.  It was after\nbreakfast, and we had been summoned in from the playground, when\nMr. Sharp entered and said:\n\n'David Copperfield is to go into the parlour.'\n\nI expected a hamper from Peggotty, and brightened at the order. \nSome of the boys about me put in their claim not to be forgotten in\nthe distribution of the good things, as I got out of my seat with\ngreat alacrity.\n\n'Don't hurry, David,' said Mr. Sharp.  'There's time enough, my\nboy, don't hurry.'\n\nI might have been surprised by the feeling tone in which he spoke,\nif I had given it a thought; but I gave it none until afterwards. \nI hurried away to the parlour; and there I found Mr. Creakle,\nsitting at his breakfast with the cane and a newspaper before him,\nand Mrs. Creakle with an opened letter in her hand.  But no hamper.\n\n'David Copperfield,' said Mrs. Creakle, leading me to a sofa, and\nsitting down beside me.  'I want to speak to you very particularly. \nI have something to tell you, my child.'\n\nMr. Creakle, at whom of course I looked, shook his head without\nlooking at me, and stopped up a sigh with a very large piece of\nbuttered toast.\n\n'You are too young to know how the world changes every day,' said\nMrs. Creakle, 'and how the people in it pass away.  But we all have\nto learn it, David; some of us when we are young, some of us when\nwe are old, some of us at all times of our lives.'\n\nI looked at her earnestly.\n\n'When you came away from home at the end of the vacation,' said\nMrs. Creakle, after a pause, 'were they all well?'  After another\npause, 'Was your mama well?'\n\nI trembled without distinctly knowing why, and still looked at her\nearnestly, making no attempt to answer.\n\n'Because,' said she, 'I grieve to tell you that I hear this morning\nyour mama is very ill.'\n\nA mist rose between Mrs. Creakle and me, and her figure seemed to\nmove in it for an instant.  Then I felt the burning tears run down\nmy face, and it was steady again.\n\n'She is very dangerously ill,' she added.\n\nI knew all now.\n\n'She is dead.'\n\nThere was no need to tell me so.  I had already broken out into a\ndesolate cry, and felt an orphan in the wide world.\n\nShe was very kind to me.  She kept me there all day, and left me\nalone sometimes; and I cried, and wore myself to sleep, and awoke\nand cried again.  When I could cry no more, I began to think; and\nthen the oppression on my breast was heaviest, and my grief a dull\npain that there was no ease for.\n\nAnd yet my thoughts were idle; not intent on the calamity that\nweighed upon my heart, but idly loitering near it.  I thought of\nour house shut up and hushed.  I thought of the little baby, who,\nMrs. Creakle said, had been pining away for some time, and who,\nthey believed, would die too.  I thought of my father's grave in\nthe churchyard, by our house, and of my mother lying there beneath\nthe tree I knew so well.  I stood upon a chair when I was left\nalone, and looked into the glass to see how red my eyes were, and\nhow sorrowful my face.  I considered, after some hours were gone,\nif my tears were really hard to flow now, as they seemed to be,\nwhat, in connexion with my loss, it would affect me most to think\nof when I drew near home - for I was going home to the funeral.  I\nam sensible of having felt that a dignity attached to me among the\nrest of the boys, and that I was important in my affliction.\n\nIf ever child were stricken with sincere grief, I was.  But I\nremember that this importance was a kind of satisfaction to me,\nwhen I walked in the playground that afternoon while the boys were\nin school.  When I saw them glancing at me out of the windows, as\nthey went up to their classes, I felt distinguished, and looked\nmore melancholy, and walked slower.  When school was over, and they\ncame out and spoke to me, I felt it rather good in myself not to be\nproud to any of them, and to take exactly the same notice of them\nall, as before.\n\nI was to go home next night; not by the mail, but by the heavy\nnight-coach, which was called the Farmer, and was principally used\nby country-people travelling short intermediate distances upon the\nroad.  We had no story-telling that evening, and Traddles insisted\non lending me his pillow.  I don't know what good he thought it\nwould do me, for I had one of my own: but it was all he had to\nlend, poor fellow, except a sheet of letter-paper full of\nskeletons; and that he gave me at parting, as a soother of my\nsorrows and a contribution to my peace of mind.\n\nI left Salem House upon the morrow afternoon.  I little thought\nthen that I left it, never to return.  We travelled very slowly all\nnight, and did not get into Yarmouth before nine or ten o'clock in\nthe morning.  I looked out for Mr. Barkis, but he was not there;\nand instead of him a fat, short-winded, merry-looking, little old\nman in black, with rusty little bunches of ribbons at the knees of\nhis breeches, black stockings, and a broad-brimmed hat, came\npuffing up to the coach window, and said:\n\n'Master Copperfield?'\n\n'Yes, sir.'\n\n'Will you come with me, young sir, if you please,' he said, opening\nthe door, 'and I shall have the pleasure of taking you home.'\n\nI put my hand in his, wondering who he was, and we walked away to\na shop in a narrow street, on which was written OMER, DRAPER,\nTAILOR, HABERDASHER, FUNERAL FURNISHER, &c.  It was a close and\nstifling little shop; full of all sorts of clothing, made and\nunmade, including one window full of beaver-hats and bonnets.  We\nwent into a little back-parlour behind the shop, where we found\nthree young women at work on a quantity of black materials, which\nwere heaped upon the table, and little bits and cuttings of which\nwere littered all over the floor.  There was a good fire in the\nroom, and a breathless smell of warm black crape - I did not know\nwhat the smell was then, but I know now.\n\nThe three young women, who appeared to be very industrious and\ncomfortable, raised their heads to look at me, and then went on\nwith their work.  Stitch, stitch, stitch.  At the same time there\ncame from a workshop across a little yard outside the window, a\nregular sound of hammering that kept a kind of tune: RAT - tat-tat,\nRAT - tat-tat, RAT - tat-tat, without any variation.\n\n'Well,' said my conductor to one of the three young women.  'How do\nyou get on, Minnie?'\n\n'We shall be ready by the trying-on time,' she replied gaily,\nwithout looking up.  'Don't you be afraid, father.'\n\nMr. Omer took off his broad-brimmed hat, and sat down and panted. \nHe was so fat that he was obliged to pant some time before he could\nsay:\n\n'That's right.'\n\n'Father!' said Minnie, playfully.  'What a porpoise you do grow!'\n\n'Well, I don't know how it is, my dear,' he replied, considering\nabout it.  'I am rather so.'\n\n'You are such a comfortable man, you see,' said Minnie.  'You take\nthings so easy.'\n\n'No use taking 'em otherwise, my dear,' said Mr. Omer.\n\n'No, indeed,' returned his daughter.  'We are all pretty gay here,\nthank Heaven!  Ain't we, father?'\n\n'I hope so, my dear,' said Mr. Omer.  'As I have got my breath now,\nI think I'll measure this young scholar.  Would you walk into the\nshop, Master Copperfield?'\n\nI preceded Mr. Omer, in compliance with his request; and after\nshowing me a roll of cloth which he said was extra super, and too\ngood mourning for anything short of parents, he took my various\ndimensions, and put them down in a book.  While he was recording\nthem he called my attention to his stock in trade, and to certain\nfashions which he said had 'just come up', and to certain other\nfashions which he said had 'just gone out'.\n\n'And by that sort of thing we very often lose a little mint of\nmoney,' said Mr. Omer.  'But fashions are like human beings.  They\ncome in, nobody knows when, why, or how; and they go out, nobody\nknows when, why, or how.  Everything is like life, in my opinion,\nif you look at it in that point of view.'\n\nI was too sorrowful to discuss the question, which would possibly\nhave been beyond me under any circumstances; and Mr. Omer took me\nback into the parlour, breathing with some difficulty on the way.\n\nHe then called down a little break-neck range of steps behind a\ndoor: 'Bring up that tea and bread-and-butter!' which, after some\ntime, during which I sat looking about me and thinking, and\nlistening to the stitching in the room and the tune that was being\nhammered across the yard, appeared on a tray, and turned out to be\nfor me.\n\n'I have been acquainted with you,' said Mr. Omer, after watching me\nfor some minutes, during which I had not made much impression on\nthe breakfast, for the black things destroyed my appetite, 'I have\nbeen acquainted with you a long time, my young friend.'\n\n'Have you, sir?'\n\n'All your life,' said Mr. Omer.  'I may say before it.  I knew your\nfather before you.  He was five foot nine and a half, and he lays\nin five-and-twen-ty foot of ground.'\n\n'RAT - tat-tat, RAT - tat-tat, RAT - tat-tat,' across the yard.\n\n'He lays in five and twen-ty foot of ground, if he lays in a\nfraction,' said Mr. Omer, pleasantly.  'It was either his request\nor her direction, I forget which.'\n\n'Do you know how my little brother is, sir?' I inquired.\n\nMr. Omer shook his head.\n\n'RAT - tat-tat, RAT - tat-tat, RAT - tat-tat.'\n\n'He is in his mother's arms,' said he.\n\n'Oh, poor little fellow!  Is he dead?'\n\n'Don't mind it more than you can help,' said Mr. Omer.  'Yes.  The\nbaby's dead.'\n\nMy wounds broke out afresh at this intelligence.  I left the\nscarcely-tasted breakfast, and went and rested my head on another\ntable, in a corner of the little room, which Minnie hastily\ncleared, lest I should spot the mourning that was lying there with\nmy tears.  She was a pretty, good-natured girl, and put my hair\naway from my eyes with a soft, kind touch; but she was very\ncheerful at having nearly finished her work and being in good time,\nand was so different from me!\n\nPresently the tune left off, and a good-looking young fellow came\nacross the yard into the room.  He had a hammer in his hand, and\nhis mouth was full of little nails, which he was obliged to take\nout before he could speak.\n\n'Well, Joram!' said Mr. Omer.  'How do you get on?'\n\n'All right,' said Joram.  'Done, sir.'\n\nMinnie coloured a little, and the other two girls smiled at one\nanother.\n\n'What! you were at it by candle-light last night, when I was at the\nclub, then?  Were you?' said Mr. Omer, shutting up one eye.\n\n'Yes,' said Joram.  'As you said we could make a little trip of it,\nand go over together, if it was done, Minnie and me - and you.'\n\n'Oh!  I thought you were going to leave me out altogether,' said\nMr. Omer, laughing till he coughed.\n\n'- As you was so good as to say that,' resumed the young man, 'why\nI turned to with a will, you see.  Will you give me your opinion of\nit?'\n\n'I will,' said Mr. Omer, rising.  'My dear'; and he stopped and\nturned to me: 'would you like to see your -'\n\n'No, father,' Minnie interposed.\n\n'I thought it might be agreeable, my dear,' said Mr. Omer.  'But\nperhaps you're right.'\n\nI can't say how I knew it was my dear, dear mother's coffin that\nthey went to look at.  I had never heard one making; I had never\nseen one that I know of.- but it came into my mind what the noise\nwas, while it was going on; and when the young man entered, I am\nsure I knew what he had been doing.\n\nThe work being now finished, the two girls, whose names I had not\nheard, brushed the shreds and threads from their dresses, and went\ninto the shop to put that to rights, and wait for customers. \nMinnie stayed behind to fold up what they had made, and pack it in\ntwo baskets.  This she did upon her knees, humming a lively little\ntune the while.  Joram, who I had no doubt was her lover, came in\nand stole a kiss from her while she was busy (he didn't appear to\nmind me, at all), and said her father was gone for the chaise, and\nhe must make haste and get himself ready.  Then he went out again;\nand then she put her thimble and scissors in her pocket, and stuck\na needle threaded with black thread neatly in the bosom of her\ngown, and put on her outer clothing smartly, at a little glass\nbehind the door, in which I saw the reflection of her pleased face.\n\nAll this I observed, sitting at the table in the corner with my\nhead leaning on my hand, and my thoughts running on very different\nthings.  The chaise soon came round to the front of the shop, and\nthe baskets being put in first, I was put in next, and those three\nfollowed.  I remember it as a kind of half chaise-cart, half\npianoforte-van, painted of a sombre colour, and drawn by a black\nhorse with a long tail.  There was plenty of room for us all.\n\nI do not think I have ever experienced so strange a feeling in my\nlife (I am wiser now, perhaps) as that of being with them,\nremembering how they had been employed, and seeing them enjoy the\nride.  I was not angry with them; I was more afraid of them, as if\nI were cast away among creatures with whom I had no community of\nnature.  They were very cheerful.  The old man sat in front to\ndrive, and the two young people sat behind him, and whenever he\nspoke to them leaned forward, the one on one side of his chubby\nface and the other on the other, and made a great deal of him. \nThey would have talked to me too, but I held back, and moped in my\ncorner; scared by their love-making and hilarity, though it was far\nfrom boisterous, and almost wondering that no judgement came upon\nthem for their hardness of heart.\n\nSo, when they stopped to bait the horse, and ate and drank and\nenjoyed themselves, I could touch nothing that they touched, but\nkept my fast unbroken.  So, when we reached home, I dropped out of\nthe chaise behind, as quickly as possible, that I might not be in\ntheir company before those solemn windows, looking blindly on me\nlike closed eyes once bright.  And oh, how little need I had had to\nthink what would move me to tears when I came back - seeing the\nwindow of my mother's room, and next it that which, in the better\ntime, was mine!\n\nI was in Peggotty's arms before I got to the door, and she took me\ninto the house.  Her grief burst out when she first saw me; but she\ncontrolled it soon, and spoke in whispers, and walked softly, as if\nthe dead could be disturbed.  She had not been in bed, I found, for\na long time.  She sat up at night still, and watched.  As long as\nher poor dear pretty was above the ground, she said, she would\nnever desert her.\n\nMr. Murdstone took no heed of me when I went into the parlour where\nhe was, but sat by the fireside, weeping silently, and pondering in\nhis elbow-chair.  Miss Murdstone, who was busy at her writing-desk,\nwhich was covered with letters and papers, gave me her cold\nfinger-nails, and asked me, in an iron whisper, if I had been\nmeasured for my mourning.\n\nI said: 'Yes.'\n\n'And your shirts,' said Miss Murdstone; 'have you brought 'em\nhome?'\n\n'Yes, ma'am.  I have brought home all my clothes.'\n\nThis was all the consolation that her firmness administered to me. \nI do not doubt that she had a choice pleasure in exhibiting what\nshe called her self-command, and her firmness, and her strength of\nmind, and her common sense, and the whole diabolical catalogue of\nher unamiable qualities, on such an occasion.  She was particularly\nproud of her turn for business; and she showed it now in reducing\neverything to pen and ink, and being moved by nothing.  All the\nrest of that day, and from morning to night afterwards, she sat at\nthat desk, scratching composedly with a hard pen, speaking in the\nsame imperturbable whisper to everybody; never relaxing a muscle of\nher face, or softening a tone of her voice, or appearing with an\natom of her dress astray.\n\nHer brother took a book sometimes, but never read it that I saw. \nHe would open it and look at it as if he were reading, but would\nremain for a whole hour without turning the leaf, and then put it\ndown and walk to and fro in the room.  I used to sit with folded\nhands watching him, and counting his footsteps, hour after hour. \nHe very seldom spoke to her, and never to me.  He seemed to be the\nonly restless thing, except the clocks, in the whole motionless\nhouse.\n\nIn these days before the funeral, I saw but little of Peggotty,\nexcept that, in passing up or down stairs, I always found her close\nto the room where my mother and her baby lay, and except that she\ncame to me every night, and sat by my bed's head while I went to\nsleep.  A day or two before the burial - I think it was a day or\ntwo before, but I am conscious of confusion in my mind about that\nheavy time, with nothing to mark its progress - she took me into\nthe room.  I only recollect that underneath some white covering on\nthe bed, with a beautiful cleanliness and freshness all around it,\nthere seemed to me to lie embodied the solemn stillness that was in\nthe house; and that when she would have turned the cover gently\nback, I cried: 'Oh no!  oh no!' and held her hand.\n\nIf the funeral had been yesterday, I could not recollect it better. \nThe very air of the best parlour, when I went in at the door, the\nbright condition of the fire, the shining of the wine in the\ndecanters, the patterns of the glasses and plates, the faint sweet\nsmell of cake, the odour of Miss Murdstone's dress, and our black\nclothes.  Mr. Chillip is in the room, and comes to speak to me.\n\n'And how is Master David?' he says, kindly.\n\nI cannot tell him very well.  I give him my hand, which he holds in\nhis.\n\n'Dear me!' says Mr. Chillip, meekly smiling, with something shining\nin his eye.  'Our little friends grow up around us.  They grow out\nof our knowledge, ma'am?'  This is to Miss Murdstone, who makes no\nreply.\n\n'There is a great improvement here, ma'am?' says Mr. Chillip.\n\nMiss Murdstone merely answers with a frown and a formal bend: Mr.\nChillip, discomfited, goes into a corner, keeping me with him, and\nopens his mouth no more.\n\nI remark this, because I remark everything that happens, not\nbecause I care about myself, or have done since I came home.  And\nnow the bell begins to sound, and Mr. Omer and another come to make\nus ready.  As Peggotty was wont to tell me, long ago, the followers\nof my father to the same grave were made ready in the same room.\n\nThere are Mr. Murdstone, our neighbour Mr. Grayper, Mr. Chillip,\nand I.  When we go out to the door, the Bearers and their load are\nin the garden; and they move before us down the path, and past the\nelms, and through the gate, and into the churchyard, where I have\nso often heard the birds sing on a summer morning.\n\nWe stand around the grave.  The day seems different to me from\nevery other day, and the light not of the same colour - of a sadder\ncolour.  Now there is a solemn hush, which we have brought from\nhome with what is resting in the mould; and while we stand\nbareheaded, I hear the voice of the clergyman, sounding remote in\nthe open air, and yet distinct and plain, saying: 'I am the\nResurrection and the Life, saith the Lord!'  Then I hear sobs; and,\nstanding apart among the lookers-on, I see that good and faithful\nservant, whom of all the people upon earth I love the best, and\nunto whom my childish heart is certain that the Lord will one day\nsay: 'Well done.'\n\nThere are many faces that I know, among the little crowd; faces\nthat I knew in church, when mine was always wondering there; faces\nthat first saw my mother, when she came to the village in her\nyouthful bloom.  I do not mind them - I mind nothing but my grief\n- and yet I see and know them all; and even in the background, far\naway, see Minnie looking on, and her eye glancing on her\nsweetheart, who is near me.\n\nIt is over, and the earth is filled in, and we turn to come away. \nBefore us stands our house, so pretty and unchanged, so linked in\nmy mind with the young idea of what is gone, that all my sorrow has\nbeen nothing to the sorrow it calls forth.  But they take me on;\nand Mr. Chillip talks to me; and when we get home, puts some water\nto my lips; and when I ask his leave to go up to my room, dismisses\nme with the gentleness of a woman.\n\nAll this, I say, is yesterday's event.  Events of later date have\nfloated from me to the shore where all forgotten things will\nreappear, but this stands like a high rock in the ocean.\n\nI knew that Peggotty would come to me in my room.  The Sabbath\nstillness of the time (the day was so like Sunday!  I have\nforgotten that) was suited to us both.  She sat down by my side\nupon my little bed; and holding my hand, and sometimes putting it\nto her lips, and sometimes smoothing it with hers, as she might\nhave comforted my little brother, told me, in her way, all that she\nhad to tell concerning what had happened.\n\n'She was never well,' said Peggotty, 'for a long time.  She was\nuncertain in her mind, and not happy.  When her baby was born, I\nthought at first she would get better, but she was more delicate,\nand sunk a little every day.  She used to like to sit alone before\nher baby came, and then she cried; but afterwards she used to sing\nto it - so soft, that I once thought, when I heard her, it was like\na voice up in the air, that was rising away.\n\n'I think she got to be more timid, and more frightened-like, of\nlate; and that a hard word was like a blow to her.  But she was\nalways the same to me.  She never changed to her foolish Peggotty,\ndidn't my sweet girl.'\n\nHere Peggotty stopped, and softly beat upon my hand a little while.\n\n'The last time that I saw her like her own old self, was the night\nwhen you came home, my dear.  The day you went away, she said to\nme, \"I never shall see my pretty darling again.  Something tells me\nso, that tells the truth, I know.\"\n\n'She tried to hold up after that; and many a time, when they told\nher she was thoughtless and light-hearted, made believe to be so;\nbut it was all a bygone then.  She never told her husband what she\nhad told me - she was afraid of saying it to anybody else - till\none night, a little more than a week before it happened, when she\nsaid to him: \"My dear, I think I am dying.\"\n\n'\"It's off my mind now, Peggotty,\" she told me, when I laid her in\nher bed that night.  \"He will believe it more and more, poor\nfellow, every day for a few days to come; and then it will be past. \nI am very tired.  If this is sleep, sit by me while I sleep: don't\nleave me.  God bless both my children!  God protect and keep my\nfatherless boy!\"\n\n'I never left her afterwards,' said Peggotty.  'She often talked to\nthem two downstairs - for she loved them; she couldn't bear not to\nlove anyone who was about her - but when they went away from her\nbed-side, she always turned to me, as if there was rest where\nPeggotty was, and never fell asleep in any other way.\n\n'On the last night, in the evening, she kissed me, and said: \"If my\nbaby should die too, Peggotty, please let them lay him in my arms,\nand bury us together.\"  (It was done; for the poor lamb lived but\na day beyond her.) \"Let my dearest boy go with us to our\nresting-place,\" she said, \"and tell him that his mother, when she\nlay here, blessed him not once, but a thousand times.\"'\n\nAnother silence followed this, and another gentle beating on my\nhand.\n\n'It was pretty far in the night,' said Peggotty, 'when she asked me\nfor some drink; and when she had taken it, gave me such a patient\nsmile, the dear! - so beautiful!\n\n'Daybreak had come, and the sun was rising, when she said to me,\nhow kind and considerate Mr. Copperfield had always been to her,\nand how he had borne with her, and told her, when she doubted\nherself, that a loving heart was better and stronger than wisdom,\nand that he was a happy man in hers.  \"Peggotty, my dear,\" she said\nthen, \"put me nearer to you,\" for she was very weak.  \"Lay your\ngood arm underneath my neck,\" she said, \"and turn me to you, for\nyour face is going far off, and I want it to be near.\"  I put it as\nshe asked; and oh Davy! the time had come when my first parting\nwords to you were true - when she was glad to lay her poor head on\nher stupid cross old Peggotty's arm - and she died like a child\nthat had gone to sleep!'\n\n\nThus ended Peggotty's narration.  From the moment of my knowing of\nthe death of my mother, the idea of her as she had been of late had\nvanished from me.  I remembered her, from that instant, only as the\nyoung mother of my earliest impressions, who had been used to wind\nher bright curls round and round her finger, and to dance with me\nat twilight in the parlour.  What Peggotty had told me now, was so\nfar from bringing me back to the later period, that it rooted the\nearlier image in my mind.  It may be curious, but it is true.  In\nher death she winged her way back to her calm untroubled youth, and\ncancelled all the rest.\n\nThe mother who lay in the grave, was the mother of my infancy; the\nlittle creature in her arms, was myself, as I had once been, hushed\nfor ever on her bosom.\n\n\n\nCHAPTER 10\nI BECOME NEGLECTED, AND AM PROVIDED FOR\n\n\nThe first act of business Miss Murdstone performed when the day of\nthe solemnity was over, and light was freely admitted into the\nhouse, was to give Peggotty a month's warning.  Much as Peggotty\nwould have disliked such a service, I believe she would have\nretained it, for my sake, in preference to the best upon earth. \nShe told me we must part, and told me why; and we condoled with one\nanother, in all sincerity.\n\nAs to me or my future, not a word was said, or a step taken.  Happy\nthey would have been, I dare say, if they could have dismissed me\nat a month's warning too.  I mustered courage once, to ask Miss\nMurdstone when I was going back to school; and she answered dryly,\nshe believed I was not going back at all.  I was told nothing more. \nI was very anxious to know what was going to be done with me, and\nso was Peggotty; but neither she nor I could pick up any\ninformation on the subject.\n\nThere was one change in my condition, which, while it relieved me\nof a great deal of present uneasiness, might have made me, if I had\nbeen capable of considering it closely, yet more uncomfortable\nabout the future.  It was this.  The constraint that had been put\nupon me, was quite abandoned.  I was so far from being required to\nkeep my dull post in the parlour, that on several occasions, when\nI took my seat there, Miss Murdstone frowned to me to go away.  I\nwas so far from being warned off from Peggotty's society, that,\nprovided I was not in Mr. Murdstone's, I was never sought out or\ninquired for.  At first I was in daily dread of his taking my\neducation in hand again, or of Miss Murdstone's devoting herself to\nit; but I soon began to think that such fears were groundless, and\nthat all I had to anticipate was neglect.\n\nI do not conceive that this discovery gave me much pain then.  I\nwas still giddy with the shock of my mother's death, and in a kind\nof stunned state as to all tributary things.  I can recollect,\nindeed, to have speculated, at odd times, on the possibility of my\nnot being taught any more, or cared for any more; and growing up to\nbe a shabby, moody man, lounging an idle life away, about the\nvillage; as well as on the feasibility of my getting rid of this\npicture by going away somewhere, like the hero in a story, to seek\nmy fortune: but these were transient visions, daydreams I sat\nlooking at sometimes, as if they were faintly painted or written on\nthe wall of my room, and which, as they melted away, left the wall\nblank again.\n\n'Peggotty,' I said in a thoughtful whisper, one evening, when I was\nwarming my hands at the kitchen fire, 'Mr. Murdstone likes me less\nthan he used to.  He never liked me much, Peggotty; but he would\nrather not even see me now, if he can help it.'\n\n'Perhaps it's his sorrow,' said Peggotty, stroking my hair.\n\n'I am sure, Peggotty, I am sorry too.  If I believed it was his\nsorrow, I should not think of it at all.  But it's not that; oh,\nno, it's not that.'\n\n'How do you know it's not that?' said Peggotty, after a silence.\n\n'Oh, his sorrow is another and quite a different thing.  He is\nsorry at this moment, sitting by the fireside with Miss Murdstone;\nbut if I was to go in, Peggotty, he would be something besides.'\n\n'What would he be?' said Peggotty.\n\n'Angry,' I answered, with an involuntary imitation of his dark\nfrown.  'If he was only sorry, he wouldn't look at me as he does. \nI am only sorry, and it makes me feel kinder.'\n\nPeggotty said nothing for a little while; and I warmed my hands, as\nsilent as she.\n\n'Davy,' she said at length.\n\n'Yes, Peggotty?'\n'I have tried, my dear, all ways I could think of - all the ways\nthere are, and all the ways there ain't, in short - to get a\nsuitable service here, in Blunderstone; but there's no such a\nthing, my love.'\n\n'And what do you mean to do, Peggotty,' says I, wistfully.  'Do you\nmean to go and seek your fortune?'\n\n'I expect I shall be forced to go to Yarmouth,' replied Peggotty,\n'and live there.'\n\n'You might have gone farther off,' I said, brightening a little,\n'and been as bad as lost.  I shall see you sometimes, my dear old\nPeggotty, there.  You won't be quite at the other end of the world,\nwill you?'\n\n'Contrary ways, please God!' cried Peggotty, with great animation. \n'As long as you are here, my pet, I shall come over every week of\nmy life to see you.  One day, every week of my life!'\n\nI felt a great weight taken off my mind by this promise: but even\nthis was not all, for Peggotty went on to say:\n\n'I'm a-going, Davy, you see, to my brother's, first, for another\nfortnight's visit - just till I have had time to look about me, and\nget to be something like myself again.  Now, I have been thinking\nthat perhaps, as they don't want you here at present, you might be\nlet to go along with me.'\n\nIf anything, short of being in a different relation to every one\nabout me, Peggotty excepted, could have given me a sense of\npleasure at that time, it would have been this project of all\nothers.  The idea of being again surrounded by those honest faces,\nshining welcome on me; of renewing the peacefulness of the sweet\nSunday morning, when the bells were ringing, the stones dropping in\nthe water, and the shadowy ships breaking through the mist; of\nroaming up and down with little Em'ly, telling her my troubles, and\nfinding charms against them in the shells and pebbles on the beach;\nmade a calm in my heart.  It was ruffled next moment, to be sure,\nby a doubt of Miss Murdstone's giving her consent; but even that\nwas set at rest soon, for she came out to take an evening grope in\nthe store-closet while we were yet in conversation, and Peggotty,\nwith a boldness that amazed me, broached the topic on the spot.\n\n'The boy will be idle there,' said Miss Murdstone, looking into a\npickle-jar, 'and idleness is the root of all evil.  But, to be\nsure, he would be idle here - or anywhere, in my opinion.'\n\nPeggotty had an angry answer ready, I could see; but she swallowed\nit for my sake, and remained silent.\n\n'Humph!' said Miss Murdstone, still keeping her eye on the pickles;\n'it is of more importance than anything else - it is of paramount\nimportance - that my brother should not be disturbed or made\nuncomfortable.  I suppose I had better say yes.'\n\nI thanked her, without making any demonstration of joy, lest it\nshould induce her to withdraw her assent.  Nor could I help\nthinking this a prudent course, since she looked at me out of the\npickle-jar, with as great an access of sourness as if her black\neyes had absorbed its contents.  However, the permission was given,\nand was never retracted; for when the month was out, Peggotty and\nI were ready to depart.\n\nMr. Barkis came into the house for Peggotty's boxes.  I had never\nknown him to pass the garden-gate before, but on this occasion he\ncame into the house.  And he gave me a look as he shouldered the\nlargest box and went out, which I thought had meaning in it, if\nmeaning could ever be said to find its way into Mr. Barkis's\nvisage.\n\nPeggotty was naturally in low spirits at leaving what had been her\nhome so many years, and where the two strong attachments of her\nlife - for my mother and myself - had been formed.  She had been\nwalking in the churchyard, too, very early; and she got into the\ncart, and sat in it with her handkerchief at her eyes.\n\nSo long as she remained in this condition, Mr. Barkis gave no sign\nof life whatever.  He sat in his usual place and attitude like a\ngreat stuffed figure.  But when she began to look about her, and to\nspeak to me, he nodded his head and grinned several times.  I have\nnot the least notion at whom, or what he meant by it.\n\n'It's a beautiful day, Mr. Barkis!' I said, as an act of\npoliteness.\n\n'It ain't bad,' said Mr. Barkis, who generally qualified his\nspeech, and rarely committed himself.\n\n'Peggotty is quite comfortable now, Mr. Barkis,' I remarked, for\nhis satisfaction.\n\n'Is she, though?' said Mr. Barkis.\n\nAfter reflecting about it, with a sagacious air, Mr. Barkis eyed\nher, and said:\n\n'ARE you pretty comfortable?'\n\nPeggotty laughed, and answered in the affirmative.\n\n'But really and truly, you know.  Are you?' growled Mr. Barkis,\nsliding nearer to her on the seat, and nudging her with his elbow. \n'Are you?  Really and truly pretty comfortable?  Are you?  Eh?'\n\nAt each of these inquiries Mr. Barkis shuffled nearer to her, and\ngave her another nudge; so that at last we were all crowded\ntogether in the left-hand corner of the cart, and I was so squeezed\nthat I could hardly bear it.\n\nPeggotty calling his attention to my sufferings, Mr. Barkis gave me\na little more room at once, and got away by degrees.  But I could\nnot help observing that he seemed to think he had hit upon a\nwonderful expedient for expressing himself in a neat, agreeable,\nand pointed manner, without the inconvenience of inventing\nconversation.  He manifestly chuckled over it for some time.  By\nand by he turned to Peggotty again, and repeating, 'Are you pretty\ncomfortable though?' bore down upon us as before, until the breath\nwas nearly edged out of my body.  By and by he made another descent\nupon us with the same inquiry, and the same result.  At length, I\ngot up whenever I saw him coming, and standing on the foot-board,\npretended to look at the prospect; after which I did very well.\n\nHe was so polite as to stop at a public-house, expressly on our\naccount, and entertain us with broiled mutton and beer.  Even when\nPeggotty was in the act of drinking, he was seized with one of\nthose approaches, and almost choked her.  But as we drew nearer to\nthe end of our journey, he had more to do and less time for\ngallantry; and when we got on Yarmouth pavement, we were all too\nmuch shaken and jolted, I apprehend, to have any leisure for\nanything else.\n\nMr. Peggotty and Ham waited for us at the old place.  They received\nme and Peggotty in an affectionate manner, and shook hands with Mr.\nBarkis, who, with his hat on the very back of his head, and a\nshame-faced leer upon his countenance, and pervading his very legs,\npresented but a vacant appearance, I thought.  They each took one\nof Peggotty's trunks, and we were going away, when Mr. Barkis\nsolemnly made a sign to me with his forefinger to come under an\narchway.\n\n'I say,' growled Mr. Barkis, 'it was all right.'\n\nI looked up into his face, and answered, with an attempt to be very\nprofound: 'Oh!'\n\n'It didn't come to a end there,' said Mr. Barkis, nodding\nconfidentially.  'It was all right.'\n\nAgain I answered, 'Oh!'\n\n'You know who was willin',' said my friend.  'It was Barkis, and\nBarkis only.'\n\nI nodded assent.\n\n'It's all right,' said Mr. Barkis, shaking hands; 'I'm a friend of\nyour'n.  You made it all right, first.  It's all right.'\n\nIn his attempts to be particularly lucid, Mr. Barkis was so\nextremely mysterious, that I might have stood looking in his face\nfor an hour, and most assuredly should have got as much information\nout of it as out of the face of a clock that had stopped, but for\nPeggotty's calling me away.  As we were going along, she asked me\nwhat he had said; and I told her he had said it was all right.\n\n'Like his impudence,' said Peggotty, 'but I don't mind that!  Davy\ndear, what should you think if I was to think of being married?'\n\n'Why - I suppose you would like me as much then, Peggotty, as you\ndo now?' I returned, after a little consideration.\n\nGreatly to the astonishment of the passengers in the street, as\nwell as of her relations going on before, the good soul was obliged\nto stop and embrace me on the spot, with many protestations of her\nunalterable love.\n\n'Tell me what should you say, darling?' she asked again, when this\nwas over, and we were walking on.\n\n'If you were thinking of being married - to Mr. Barkis, Peggotty?'\n\n'Yes,' said Peggotty.\n\n'I should think it would be a very good thing.  For then you know,\nPeggotty, you would always have the horse and cart to bring you\nover to see me, and could come for nothing, and be sure of coming.'\n\n'The sense of the dear!' cried Peggotty.  'What I have been\nthinking of, this month back!  Yes, my precious; and I think I\nshould be more independent altogether, you see; let alone my\nworking with a better heart in my own house, than I could in\nanybody else's now.  I don't know what I might be fit for, now, as\na servant to a stranger.  And I shall be always near my pretty's\nresting-place,' said Peggotty, musing, 'and be able to see it when\nI like; and when I lie down to rest, I may be laid not far off from\nmy darling girl!'\n\nWe neither of us said anything for a little while.\n\n'But I wouldn't so much as give it another thought,' said Peggotty,\ncheerily 'if my Davy was anyways against it - not if I had been\nasked in church thirty times three times over, and was wearing out\nthe ring in my pocket.'\n\n'Look at me, Peggotty,' I replied; 'and see if I am not really\nglad, and don't truly wish it!'  As indeed I did, with all my\nheart.\n\n'Well, my life,' said Peggotty, giving me a squeeze, 'I have\nthought of it night and day, every way I can, and I hope the right\nway; but I'll think of it again, and speak to my brother about it,\nand in the meantime we'll keep it to ourselves, Davy, you and me. \nBarkis is a good plain creature,' said Peggotty, 'and if I tried to\ndo my duty by him, I think it would be my fault if I wasn't - if I\nwasn't pretty comfortable,' said Peggotty, laughing heartily.\nThis quotation from Mr. Barkis was so appropriate, and tickled us\nboth so much, that we laughed again and again, and were quite in a\npleasant humour when we came within view of Mr. Peggotty's cottage.\n\nIt looked just the same, except that it may, perhaps, have shrunk\na little in my eyes; and Mrs. Gummidge was waiting at the door as\nif she had stood there ever since.  All within was the same, down\nto the seaweed in the blue mug in my bedroom.  I went into the\nout-house to look about me; and the very same lobsters, crabs, and\ncrawfish possessed by the same desire to pinch the world in\ngeneral, appeared to be in the same state of conglomeration in the\n\nsame old corner.\n\nBut there was no little Em'ly to be seen, so I asked Mr. Peggotty\nwhere she was.\n\n'She's at school, sir,' said Mr. Peggotty, wiping the heat\nconsequent on the porterage of Peggotty's box from his forehead;\n'she'll be home,' looking at the Dutch clock, 'in from twenty\nminutes to half-an-hour's time.  We all on us feel the loss of her,\nbless ye!'\n\nMrs. Gummidge moaned.\n\n'Cheer up, Mawther!' cried Mr. Peggotty.\n\n'I feel it more than anybody else,' said Mrs. Gummidge; 'I'm a lone\nlorn creetur', and she used to be a'most the only thing that didn't\ngo contrary with me.'\n\nMrs. Gummidge, whimpering and shaking her head, applied herself to\nblowing the fire.  Mr. Peggotty, looking round upon us while she\nwas so engaged, said in a low voice, which he shaded with his hand:\n'The old 'un!'  From this I rightly conjectured that no improvement\nhad taken place since my last visit in the state of Mrs. Gummidge's\nspirits.\n\nNow, the whole place was, or it should have been, quite as\ndelightful a place as ever; and yet it did not impress me in the\nsame way.  I felt rather disappointed with it.  Perhaps it was\nbecause little Em'ly was not at home.  I knew the way by which she\nwould come, and presently found myself strolling along the path to\nmeet her.\n\nA figure appeared in the distance before long, and I soon knew it\nto be Em'ly, who was a little creature still in stature, though she\nwas grown.  But when she drew nearer, and I saw her blue eyes\nlooking bluer, and her dimpled face looking brighter, and her whole\nself prettier and gayer, a curious feeling came over me that made\nme pretend not to know her, and pass by as if I were looking at\nsomething a long way off.  I have done such a thing since in later\nlife, or I am mistaken.\n\nLittle Em'ly didn't care a bit.  She saw me well enough; but\ninstead of turning round and calling after me, ran away laughing. \nThis obliged me to run after her, and she ran so fast that we were\nvery near the cottage before I caught her.\n\n'Oh, it's you, is it?' said little Em'ly.\n\n'Why, you knew who it was, Em'ly,' said I.\n\n'And didn't YOU know who it was?' said Em'ly.  I was going to kiss\nher, but she covered her cherry lips with her hands, and said she\nwasn't a baby now, and ran away, laughing more than ever, into the\nhouse.\n\nShe seemed to delight in teasing me, which was a change in her I\nwondered at very much.  The tea table was ready, and our little\nlocker was put out in its old place, but instead of coming to sit\nby me, she went and bestowed her company upon that grumbling Mrs.\nGummidge: and on Mr. Peggotty's inquiring why, rumpled her hair all\nover her face to hide it, and could do nothing but laugh.\n\n'A little puss, it is!' said Mr. Peggotty, patting her with his\ngreat hand.\n\n'So sh' is!  so sh' is!' cried Ham.  'Mas'r Davy bor', so sh' is!'\nand he sat and chuckled at her for some time, in a state of mingled\nadmiration and delight, that made his face a burning red.\n\nLittle Em'ly was spoiled by them all, in fact; and by no one more\nthan Mr. Peggotty himself, whom she could have coaxed into\nanything, by only going and laying her cheek against his rough\nwhisker.  That was my opinion, at least, when I saw her do it; and\nI held Mr. Peggotty to be thoroughly in the right.  But she was so\naffectionate and sweet-natured, and had such a pleasant manner of\nbeing both sly and shy at once, that she captivated me more than\never.\n\nShe was tender-hearted, too; for when, as we sat round the fire\nafter tea, an allusion was made by Mr. Peggotty over his pipe to\nthe loss I had sustained, the tears stood in her eyes, and she\nlooked at me so kindly across the table, that I felt quite thankful\nto her.\n\n'Ah!' said Mr. Peggotty, taking up her curls, and running them over\nhis hand like water, 'here's another orphan, you see, sir.  And\nhere,' said Mr. Peggotty, giving Ham a backhanded knock in the\nchest, 'is another of 'em, though he don't look much like it.'\n\n'If I had you for my guardian, Mr. Peggotty,' said I, shaking my\nhead, 'I don't think I should FEEL much like it.'\n\n'Well said, Mas'r Davy bor'!' cried Ham, in an ecstasy.  'Hoorah! \nWell said!  Nor more you wouldn't!  Hor!  Hor!' - Here he returned\nMr. Peggotty's back-hander, and little Em'ly got up and kissed Mr.\nPeggotty.  'And how's your friend, sir?' said Mr. Peggotty to me.\n\n'Steerforth?' said I.\n\n'That's the name!' cried Mr. Peggotty, turning to Ham.  'I knowed\nit was something in our way.'\n\n'You said it was Rudderford,' observed Ham, laughing.\n\n'Well!' retorted Mr. Peggotty.  'And ye steer with a rudder, don't\nye?  It ain't fur off.  How is he, sir?'\n\n'He was very well indeed when I came away, Mr. Peggotty.'\n\n'There's a friend!' said Mr. Peggotty, stretching out his pipe. \n'There's a friend, if you talk of friends!  Why, Lord love my heart\nalive, if it ain't a treat to look at him!'\n\n'He is very handsome, is he not?' said I, my heart warming with\nthis praise.\n\n'Handsome!' cried Mr. Peggotty.  'He stands up to you like - like\na - why I don't know what he don't stand up to you like.  He's so\nbold!'\n\n'Yes!  That's just his character,' said I.  'He's as brave as a\nlion, and you can't think how frank he is, Mr. Peggotty.'\n\n'And I do suppose, now,' said Mr. Peggotty, looking at me through\nthe smoke of his pipe, 'that in the way of book-larning he'd take\nthe wind out of a'most anything.'\n\n'Yes,' said I, delighted; 'he knows everything.  He is\nastonishingly clever.'\n\n'There's a friend!' murmured Mr. Peggotty, with a grave toss of his\nhead.\n\n'Nothing seems to cost him any trouble,' said I.  'He knows a task\nif he only looks at it.  He is the best cricketer you ever saw.  He\nwill give you almost as many men as you like at draughts, and beat\nyou easily.'\n\nMr. Peggotty gave his head another toss, as much as to say: 'Of\ncourse he will.'\n\n'He is such a speaker,' I pursued, 'that he can win anybody over;\nand I don't know what you'd say if you were to hear him sing, Mr.\nPeggotty.'\n\nMr. Peggotty gave his head another toss, as much as to say: 'I have\nno doubt of it.'\n\n'Then, he's such a generous, fine, noble fellow,' said I, quite\ncarried away by my favourite theme, 'that it's hardly possible to\ngive him as much praise as he deserves.  I am sure I can never feel\nthankful enough for the generosity with which he has protected me,\nso much younger and lower in the school than himself.'\n\nI was running on, very fast indeed, when my eyes rested on little\nEm'ly's face, which was bent forward over the table, listening with\nthe deepest attention, her breath held, her blue eyes sparkling\nlike jewels, and the colour mantling in her cheeks.  She looked so\nextraordinarily earnest and pretty, that I stopped in a sort of\nwonder; and they all observed her at the same time, for as I\nstopped, they laughed and looked at her.\n\n'Em'ly is like me,' said Peggotty, 'and would like to see him.'\n\nEm'ly was confused by our all observing her, and hung down her\nhead, and her face was covered with blushes.  Glancing up presently\nthrough her stray curls, and seeing that we were all looking at her\nstill (I am sure I, for one, could have looked at her for hours),\nshe ran away, and kept away till it was nearly bedtime.\n\nI lay down in the old little bed in the stern of the boat, and the\nwind came moaning on across the flat as it had done before.  But I\ncould not help fancying, now, that it moaned of those who were\ngone; and instead of thinking that the sea might rise in the night\nand float the boat away, I thought of the sea that had risen, since\nI last heard those sounds, and drowned my happy home.  I recollect,\nas the wind and water began to sound fainter in my ears, putting a\nshort clause into my prayers, petitioning that I might grow up to\nmarry little Em'ly, and so dropping lovingly asleep.\n\nThe days passed pretty much as they had passed before, except - it\nwas a great exception- that little Em'ly and I seldom wandered on\nthe beach now.  She had tasks to learn, and needle-work to do; and\nwas absent during a great part of each day.  But I felt that we\nshould not have had those old wanderings, even if it had been\notherwise.  Wild and full of childish whims as Em'ly was, she was\nmore of a little woman than I had supposed.  She seemed to have got\na great distance away from me, in little more than a year.  She\nliked me, but she laughed at me, and tormented me; and when I went\nto meet her, stole home another way, and was laughing at the door\nwhen I came back, disappointed.  The best times were when she sat\nquietly at work in the doorway, and I sat on the wooden step at her\nfeet, reading to her.  It seems to me, at this hour, that I have\nnever seen such sunlight as on those bright April afternoons; that\nI have never seen such a sunny little figure as I used to see,\nsitting in the doorway of the old boat; that I have never beheld\nsuch sky, such water, such glorified ships sailing away into golden\nair.\n\nOn the very first evening after our arrival, Mr. Barkis appeared in\nan exceedingly vacant and awkward condition, and with a bundle of\noranges tied up in a handkerchief.  As he made no allusion of any\nkind to this property, he was supposed to have left it behind him\nby accident when he went away; until Ham, running after him to\nrestore it, came back with the information that it was intended for\nPeggotty.  After that occasion he appeared every evening at exactly\nthe same hour, and always with a little bundle, to which he never\nalluded, and which he regularly put behind the door and left there. \nThese offerings of affection were of a most various and eccentric\ndescription.  Among them I remember a double set of pigs' trotters,\na huge pin-cushion, half a bushel or so of apples, a pair of jet\nearrings, some Spanish onions, a box of dominoes, a canary bird and\ncage, and a leg of pickled pork.\n\nMr. Barkis's wooing, as I remember it, was altogether of a peculiar\nkind.  He very seldom said anything; but would sit by the fire in\nmuch the same attitude as he sat in his cart, and stare heavily at\nPeggotty, who was opposite.  One night, being, as I suppose,\ninspired by love, he made a dart at the bit of wax-candle she kept\nfor her thread, and put it in his waistcoat-pocket and carried it\noff.  After that, his great delight was to produce it when it was\nwanted, sticking to the lining of his pocket, in a partially melted\nstate, and pocket it again when it was done with.  He seemed to\nenjoy himself very much, and not to feel at all called upon to\ntalk.  Even when he took Peggotty out for a walk on the flats, he\nhad no uneasiness on that head, I believe; contenting himself with\nnow and then asking her if she was pretty comfortable; and I\nremember that sometimes, after he was gone, Peggotty would throw\nher apron over her face, and laugh for half-an-hour.  Indeed, we\nwere all more or less amused, except that miserable Mrs. Gummidge,\nwhose courtship would appear to have been of an exactly parallel\nnature, she was so continually reminded by these transactions of\nthe old one.\n\nAt length, when the term of my visit was nearly expired, it was\ngiven out that Peggotty and Mr. Barkis were going to make a day's\nholiday together, and that little Em'ly and I were to accompany\nthem.  I had but a broken sleep the night before, in anticipation\nof the pleasure of a whole day with Em'ly.  We were all astir\nbetimes in the morning; and while we were yet at breakfast, Mr.\nBarkis appeared in the distance, driving a chaise-cart towards the\nobject of his affections.\n\nPeggotty was dressed as usual, in her neat and quiet mourning; but\nMr. Barkis bloomed in a new blue coat, of which the tailor had\ngiven him such good measure, that the cuffs would have rendered\ngloves unnecessary in the coldest weather, while the collar was so\nhigh that it pushed his hair up on end on the top of his head.  His\nbright buttons, too, were of the largest size.  Rendered complete\nby drab pantaloons and a buff waistcoat, I thought Mr. Barkis a\nphenomenon of respectability.\n\nWhen we were all in a bustle outside the door, I found that Mr.\nPeggotty was prepared with an old shoe, which was to be thrown\nafter us for luck, and which he offered to Mrs. Gummidge for that\npurpose.\n\n'No.  It had better be done by somebody else, Dan'l,' said Mrs.\nGummidge.  'I'm a lone lorn creetur' myself, and everythink that\nreminds me of creetur's that ain't lone and lorn, goes contrary\nwith me.'\n\n'Come, old gal!' cried Mr. Peggotty.  'Take and heave it.'\n\n'No, Dan'l,' returned Mrs. Gummidge, whimpering and shaking her\nhead.  'If I felt less, I could do more.  You don't feel like me,\nDan'l; thinks don't go contrary with you, nor you with them; you\nhad better do it yourself.'\n\nBut here Peggotty, who had been going about from one to another in\na hurried way, kissing everybody, called out from the cart, in\nwhich we all were by this time (Em'ly and I on two little chairs,\nside by side), that Mrs. Gummidge must do it.  So Mrs. Gummidge did\nit; and, I am sorry to relate, cast a damp upon the festive\ncharacter of our departure, by immediately bursting into tears, and\nsinking subdued into the arms of Ham, with the declaration that she\nknowed she was a burden, and had better be carried to the House at\nonce.  Which I really thought was a sensible idea, that Ham might\nhave acted on.\n\nAway we went, however, on our holiday excursion; and the first\nthing we did was to stop at a church, where Mr. Barkis tied the\nhorse to some rails, and went in with Peggotty, leaving little\nEm'ly and me alone in the chaise.  I took that occasion to put my\narm round Em'ly's waist, and propose that as I was going away so\nvery soon now, we should determine to be very affectionate to one\nanother, and very happy, all day.  Little Em'ly consenting, and\nallowing me to kiss her, I became desperate; informing her, I\nrecollect, that I never could love another, and that I was prepared\nto shed the blood of anybody who should aspire to her affections.\n\nHow merry little Em'ly made herself about it!  With what a demure\nassumption of being immensely older and wiser than I, the fairy\nlittle woman said I was 'a silly boy'; and then laughed so\ncharmingly that I forgot the pain of being called by that\ndisparaging name, in the pleasure of looking at her.\n\nMr. Barkis and Peggotty were a good while in the church, but came\nout at last, and then we drove away into the country.  As we were\ngoing along, Mr. Barkis turned to me, and said, with a wink, - by\nthe by, I should hardly have thought, before, that he could wink:\n\n'What name was it as I wrote up in the cart?'\n\n'Clara Peggotty,' I answered.\n\n'What name would it be as I should write up now, if there was a\ntilt here?'\n\n'Clara Peggotty, again?' I suggested.\n\n'Clara Peggotty BARKIS!' he returned, and burst into a roar of\nlaughter that shook the chaise.\n\nIn a word, they were married, and had gone into the church for no\nother purpose.  Peggotty was resolved that it should be quietly\ndone; and the clerk had given her away, and there had been no\nwitnesses of the ceremony.  She was a little confused when Mr.\nBarkis made this abrupt announcement of their union, and could not\nhug me enough in token of her unimpaired affection; but she soon\nbecame herself again, and said she was very glad it was over.\n\nWe drove to a little inn in a by-road, where we were expected, and\nwhere we had a very comfortable dinner, and passed the day with\ngreat satisfaction.  If Peggotty had been married every day for the\nlast ten years, she could hardly have been more at her ease about\nit; it made no sort of difference in her: she was just the same as\never, and went out for a stroll with little Em'ly and me before\ntea, while Mr. Barkis philosophically smoked his pipe, and enjoyed\nhimself, I suppose, with the contemplation of his happiness.  If\nso, it sharpened his appetite; for I distinctly call to mind that,\nalthough he had eaten a good deal of pork and greens at dinner, and\nhad finished off with a fowl or two, he was obliged to have cold\nboiled bacon for tea, and disposed of a large quantity without any\nemotion.\n\nI have often thought, since, what an odd, innocent, out-of-the-way\nkind of wedding it must have been!  We got into the chaise again\nsoon after dark, and drove cosily back, looking up at the stars,\nand talking about them.  I was their chief exponent, and opened Mr.\nBarkis's mind to an amazing extent.  I told him all I knew, but he\nwould have believed anything I might have taken it into my head to\nimpart to him; for he had a profound veneration for my abilities,\nand informed his wife in my hearing, on that very occasion, that I\nwas 'a young Roeshus' - by which I think he meant prodigy.\n\nWhen we had exhausted the subject of the stars, or rather when I\nhad exhausted the mental faculties of Mr. Barkis, little Em'ly and\nI made a cloak of an old wrapper, and sat under it for the rest of\nthe journey.  Ah, how I loved her!  What happiness (I thought) if\nwe were married, and were going away anywhere to live among the\ntrees and in the fields, never growing older, never growing wiser,\nchildren ever, rambling hand in hand through sunshine and among\nflowery meadows, laying down our heads on moss at night, in a sweet\nsleep of purity and peace, and buried by the birds when we were\ndead!  Some such picture, with no real world in it, bright with the\nlight of our innocence, and vague as the stars afar off, was in my\nmind all the way.  I am glad to think there were two such guileless\nhearts at Peggotty's marriage as little Em'ly's and mine.  I am\nglad to think the Loves and Graces took such airy forms in its\nhomely procession.\n\nWell, we came to the old boat again in good time at night; and\nthere Mr. and Mrs. Barkis bade us good-bye, and drove away snugly\nto their own home.  I felt then, for the first time, that I had\nlost Peggotty.  I should have gone to bed with a sore heart indeed\nunder any other roof but that which sheltered little Em'ly's head.\n\nMr. Peggotty and Ham knew what was in my thoughts as well as I did,\nand were ready with some supper and their hospitable faces to drive\nit away.  Little Em'ly came and sat beside me on the locker for the\nonly time in all that visit; and it was altogether a wonderful\nclose to a wonderful day.\n\nIt was a night tide; and soon after we went to bed, Mr. Peggotty\nand Ham went out to fish.  I felt very brave at being left alone in\nthe solitary house, the protector of Em'ly and Mrs. Gummidge, and\nonly wished that a lion or a serpent, or any ill-disposed monster,\nwould make an attack upon us, that I might destroy him, and cover\nmyself with glory.  But as nothing of the sort happened to be\nwalking about on Yarmouth flats that night, I provided the best\nsubstitute I could by dreaming of dragons until morning.\n\nWith morning came Peggotty; who called to me, as usual, under my\nwindow as if Mr. Barkis the carrier had been from first to last a\ndream too.  After breakfast she took me to her own home, and a\nbeautiful little home it was.  Of all the moveables in it, I must\nhave been impressed by a certain old bureau of some dark wood in\nthe parlour (the tile-floored kitchen was the general\nsitting-room), with a retreating top which opened, let down, and\nbecame a desk, within which was a large quarto edition of Foxe's\nBook of Martyrs.  This precious volume, of which I do not recollect\none word, I immediately discovered and immediately applied myself\nto; and I never visited the house afterwards, but I kneeled on a\nchair, opened the casket where this gem was enshrined, spread my\narms over the desk, and fell to devouring the book afresh.  I was\nchiefly edified, I am afraid, by the pictures, which were numerous,\nand represented all kinds of dismal horrors; but the Martyrs and\nPeggotty's house have been inseparable in my mind ever since, and\nare now.\n\nI took leave of Mr. Peggotty, and Ham, and Mrs. Gummidge, and\nlittle Em'ly, that day; and passed the night at Peggotty's, in a\nlittle room in the roof (with the Crocodile Book on a shelf by the\nbed's head) which was to be always mine, Peggotty said, and should\nalways be kept for me in exactly the same state.\n\n'Young or old, Davy dear, as long as I am alive and have this house\nover my head,' said Peggotty, 'you shall find it as if I expected\nyou here directly minute.  I shall keep it every day, as I used to\nkeep your old little room, my darling; and if you was to go to\nChina, you might think of it as being kept just the same, all the\ntime you were away.'\n\nI felt the truth and constancy of my dear old nurse, with all my\nheart, and thanked her as well as I could.  That was not very well,\nfor she spoke to me thus, with her arms round my neck, in the\nmorning, and I was going home in the morning, and I went home in\nthe morning, with herself and Mr. Barkis in the cart.  They left me\nat the gate, not easily or lightly; and it was a strange sight to\nme to see the cart go on, taking Peggotty away, and leaving me\nunder the old elm-trees looking at the house, in which there was no\nface to look on mine with love or liking any more.\n\nAnd now I fell into a state of neglect, which I cannot look back\nupon without compassion.  I fell at once into a solitary condition,\n- apart from all friendly notice, apart from the society of all\nother boys of my own age, apart from all companionship but my own\nspiritless thoughts, - which seems to cast its gloom upon this\npaper as I write.\n\nWhat would I have given, to have been sent to the hardest school\nthat ever was kept! - to have been taught something, anyhow,\nanywhere!  No such hope dawned upon me.  They disliked me; and they\nsullenly, sternly, steadily, overlooked me.  I think Mr.\nMurdstone's means were straitened at about this time; but it is\nlittle to the purpose.  He could not bear me; and in putting me\nfrom him he tried, as I believe, to put away the notion that I had\nany claim upon him - and succeeded.\n\nI was not actively ill-used.  I was not beaten, or starved; but the\nwrong that was done to me had no intervals of relenting, and was\ndone in a systematic, passionless manner.  Day after day, week\nafter week, month after month, I was coldly neglected.  I wonder\nsometimes, when I think of it, what they would have done if I had\nbeen taken with an illness; whether I should have lain down in my\nlonely room, and languished through it in my usual solitary way, or\nwhether anybody would have helped me out.\n\nWhen Mr. and Miss Murdstone were at home, I took my meals with\nthem; in their absence, I ate and drank by myself.  At all times I\nlounged about the house and neighbourhood quite disregarded, except\nthat they were jealous of my making any friends: thinking, perhaps,\nthat if I did, I might complain to someone.  For this reason,\nthough Mr. Chillip often asked me to go and see him (he was a\nwidower, having, some years before that, lost a little small\nlight-haired wife, whom I can just remember connecting in my own\nthoughts with a pale tortoise-shell cat), it was but seldom that I\nenjoyed the happiness of passing an afternoon in his closet of a\nsurgery; reading some book that was new to me, with the smell of\nthe whole Pharmacopoeia coming up my nose, or pounding something in\na mortar under his mild directions.\n\nFor the same reason, added no doubt to the old dislike of her, I\nwas seldom allowed to visit Peggotty.  Faithful to her promise, she\neither came to see me, or met me somewhere near, once every week,\nand never empty-handed; but many and bitter were the\ndisappointments I had, in being refused permission to pay a visit\nto her at her house.  Some few times, however, at long intervals,\nI was allowed to go there; and then I found out that Mr. Barkis was\nsomething of a miser, or as Peggotty dutifully expressed it, was 'a\nlittle near', and kept a heap of money in a box under his bed,\nwhich he pretended was only full of coats and trousers.  In this\ncoffer, his riches hid themselves with such a tenacious modesty,\nthat the smallest instalments could only be tempted out by\nartifice; so that Peggotty had to prepare a long and elaborate\nscheme, a very Gunpowder Plot, for every Saturday's expenses.\n\nAll this time I was so conscious of the waste of any promise I had\ngiven, and of my being utterly neglected, that I should have been\nperfectly miserable, I have no doubt, but for the old books.  They\nwere my only comfort; and I was as true to them as they were to me,\nand read them over and over I don't know how many times more.\n\nI now approach a period of my life, which I can never lose the\nremembrance of, while I remember anything: and the recollection of\nwhich has often, without my invocation, come before me like a\nghost, and haunted happier times.\n\nI had been out, one day, loitering somewhere, in the listless,\nmeditative manner that my way of life engendered, when, turning the\ncorner of a lane near our house, I came upon Mr. Murdstone walking\nwith a gentleman.  I was confused, and was going by them, when the\ngentleman cried:\n\n'What!  Brooks!'\n\n'No, sir, David Copperfield,' I said.\n\n'Don't tell me.  You are Brooks,' said the gentleman.  'You are\nBrooks of Sheffield.  That's your name.'\n\nAt these words, I observed the gentleman more attentively.  His\nlaugh coming to my remembrance too, I knew him to be Mr. Quinion,\nwhom I had gone over to Lowestoft with Mr. Murdstone to see, before\n- it is no matter - I need not recall when.\n\n'And how do you get on, and where are you being educated, Brooks?'\nsaid Mr. Quinion.\n\nHe had put his hand upon my shoulder, and turned me about, to walk\nwith them.  I did not know what to reply, and glanced dubiously at\nMr. Murdstone.\n\n'He is at home at present,' said the latter.  'He is not being\neducated anywhere.  I don't know what to do with him.  He is a\ndifficult subject.'\n\nThat old, double look was on me for a moment; and then his eyes\ndarkened with a frown, as it turned, in its aversion, elsewhere.\n\n'Humph!' said Mr. Quinion, looking at us both, I thought.  'Fine\nweather!'\n\nSilence ensued, and I was considering how I could best disengage my\nshoulder from his hand, and go away, when he said:\n\n'I suppose you are a pretty sharp fellow still?  Eh, Brooks?'\n\n'Aye!  He is sharp enough,' said Mr. Murdstone, impatiently.  'You\nhad better let him go.  He will not thank you for troubling him.'\n\nOn this hint, Mr. Quinion released me, and I made the best of my\nway home.  Looking back as I turned into the front garden, I saw\nMr. Murdstone leaning against the wicket of the churchyard, and Mr.\nQuinion talking to him.  They were both looking after me, and I\nfelt that they were speaking of me.\n\nMr. Quinion lay at our house that night.  After breakfast, the next\nmorning, I had put my chair away, and was going out of the room,\nwhen Mr. Murdstone called me back.  He then gravely repaired to\nanother table, where his sister sat herself at her desk.  Mr.\nQuinion, with his hands in his pockets, stood looking out of\nwindow; and I stood looking at them all.\n\n'David,' said Mr. Murdstone, 'to the young this is a world for\naction; not for moping and droning in.'  \n\n- 'As you do,' added his sister.\n\n'Jane Murdstone, leave it to me, if you please.  I say, David, to\nthe young this is a world for action, and not for moping and\ndroning in.  It is especially so for a young boy of your\ndisposition, which requires a great deal of correcting; and to\nwhich no greater service can be done than to force it to conform to\nthe ways of the working world, and to bend it and break it.'\n\n'For stubbornness won't do here,' said his sister 'What it wants\nis, to be crushed.  And crushed it must be.  Shall be, too!'\n\nHe gave her a look, half in remonstrance, half in approval, and\nwent on:\n\n'I suppose you know, David, that I am not rich.  At any rate, you\nknow it now.  You have received some considerable education\nalready.  Education is costly; and even if it were not, and I could\nafford it, I am of opinion that it would not be at all advantageous\nto you to be kept at school.  What is before you, is a fight with\nthe world; and the sooner you begin it, the better.'\n\nI think it occurred to me that I had already begun it, in my poor\nway: but it occurs to me now, whether or no.\n\n'You have heard the \"counting-house\" mentioned sometimes,' said Mr.\nMurdstone.\n\n'The counting-house, sir?' I repeated.\n'Of Murdstone and Grinby, in the wine trade,' he replied.\n\nI suppose I looked uncertain, for he went on hastily:\n\n'You have heard the \"counting-house\" mentioned, or the business, or\nthe cellars, or the wharf, or something about it.'\n\n'I think I have heard the business mentioned, sir,' I said,\nremembering what I vaguely knew of his and his sister's resources. \n'But I don't know when.'\n\n'It does not matter when,' he returned.  'Mr. Quinion manages that\nbusiness.'\n\nI glanced at the latter deferentially as he stood looking out of\nwindow.\n\n'Mr. Quinion suggests that it gives employment to some other boys,\nand that he sees no reason why it shouldn't, on the same terms,\ngive employment to you.'\n\n'He having,' Mr. Quinion observed in a low voice, and half turning\nround, 'no other prospect, Murdstone.'\n\nMr. Murdstone, with an impatient, even an angry gesture, resumed,\nwithout noticing what he had said:\n\n'Those terms are, that you will earn enough for yourself to provide\nfor your eating and drinking, and pocket-money.  Your lodging\n(which I have arranged for) will be paid by me.  So will your\nwashing -'\n\n'- Which will be kept down to my estimate,' said his sister.\n\n'Your clothes will be looked after for you, too,' said Mr.\nMurdstone; 'as you will not be able, yet awhile, to get them for\nyourself.  So you are now going to London, David, with Mr. Quinion,\nto begin the world on your own account.'\n\n'In short, you are provided for,' observed his sister; 'and will\nplease to do your duty.'\n\nThough I quite understood that the purpose of this announcement was\nto get rid of me, I have no distinct remembrance whether it pleased\nor frightened me.  My impression is, that I was in a state of\nconfusion about it, and, oscillating between the two points,\ntouched neither.  Nor had I much time for the clearing of my\nthoughts, as Mr. Quinion was to go upon the morrow.\n\nBehold me, on the morrow, in a much-worn little white hat, with a\nblack crape round it for my mother, a black jacket, and a pair of\nhard, stiff corduroy trousers - which Miss Murdstone considered the\nbest armour for the legs in that fight with the world which was now\nto come off.  behold me so attired, and with my little worldly all\nbefore me in a small trunk, sitting, a lone lorn child (as Mrs.\nGummidge might have said), in the post-chaise that was carrying Mr.\nQuinion to the London coach at Yarmouth!  See, how our house and\nchurch are lessening in the distance; how the grave beneath the\ntree is blotted out by intervening objects; how the spire points\nupwards from my old playground no more, and the sky is empty!\n\n\n\nCHAPTER 11\nI BEGIN LIFE ON MY OWN ACCOUNT, AND DON'T LIKE IT\n\n\nI know enough of the world now, to have almost lost the capacity of\nbeing much surprised by anything; but it is matter of some surprise\nto me, even now, that I can have been so easily thrown away at such\nan age.  A child of excellent abilities, and with strong powers of\nobservation, quick, eager, delicate, and soon hurt bodily or\nmentally, it seems wonderful to me that nobody should have made any\nsign in my behalf.  But none was made; and I became, at ten years\nold, a little labouring hind in the service of Murdstone and\nGrinby.\n\nMurdstone and Grinby's warehouse was at the waterside.  It was down\nin Blackfriars.  Modern improvements have altered the place; but it\nwas the last house at the bottom of a narrow street, curving down\nhill to the river, with some stairs at the end, where people took\nboat.  It was a crazy old house with a wharf of its own, abutting\non the water when the tide was in, and on the mud when the tide was\nout, and literally overrun with rats.  Its panelled rooms,\ndiscoloured with the dirt and smoke of a hundred years, I dare say;\nits decaying floors and staircase; the squeaking and scuffling of\nthe old grey rats down in the cellars; and the dirt and rottenness\nof the place; are things, not of many years ago, in my mind, but of\nthe present instant.  They are all before me, just as they were in\nthe evil hour when I went among them for the first time, with my\ntrembling hand in Mr. Quinion's.\n\nMurdstone and Grinby's trade was among a good many kinds of people,\nbut an important branch of it was the supply of wines and spirits\nto certain packet ships.  I forget now where they chiefly went, but\nI think there were some among them that made voyages both to the\nEast and West Indies.  I know that a great many empty bottles were\none of the consequences of this traffic, and that certain men and\nboys were employed to examine them against the light, and reject\nthose that were flawed, and to rinse and wash them.  When the empty\nbottles ran short, there were labels to be pasted on full ones, or\ncorks to be fitted to them, or seals to be put upon the corks, or\nfinished bottles to be packed in casks.  All this work was my work,\nand of the boys employed upon it I was one.\n\nThere were three or four of us, counting me.  My working place was\nestablished in a corner of the warehouse, where Mr. Quinion could\nsee me, when he chose to stand up on the bottom rail of his stool\nin the counting-house, and look at me through a window above the\ndesk.  Hither, on the first morning of my so auspiciously beginning\nlife on my own account, the oldest of the regular boys was summoned\nto show me my business.  His name was Mick Walker, and he wore a\nragged apron and a paper cap.  He informed me that his father was\na bargeman, and walked, in a black velvet head-dress, in the Lord\nMayor's Show.  He also informed me that our principal associate\nwould be another boy whom he introduced by the - to me -\nextraordinary name of Mealy Potatoes.  I discovered, however, that\nthis youth had not been christened by that name, but that it had\nbeen bestowed upon him in the warehouse, on account of his\ncomplexion, which was pale or mealy.  Mealy's father was a\nwaterman, who had the additional distinction of being a fireman,\nand was engaged as such at one of the large theatres; where some\nyoung relation of Mealy's - I think his little sister - did Imps in\nthe Pantomimes.\n\nNo words can express the secret agony of my soul as I sunk into\nthis companionship; compared these henceforth everyday associates\nwith those of my happier childhood - not to say with Steerforth,\nTraddles, and the rest of those boys; and felt my hopes of growing\nup to be a learned and distinguished man, crushed in my bosom.  The\ndeep remembrance of the sense I had, of being utterly without hope\nnow; of the shame I felt in my position; of the misery it was to my\nyoung heart to believe that day by day what I had learned, and\nthought, and delighted in, and raised my fancy and my emulation up\nby, would pass away from me, little by little, never to be brought\nback any more; cannot be written.  As often as Mick Walker went\naway in the course of that forenoon, I mingled my tears with the\nwater in which I was washing the bottles; and sobbed as if there\nwere a flaw in my own breast, and it were in danger of bursting.\n\nThe counting-house clock was at half past twelve, and there was\ngeneral preparation for going to dinner, when Mr. Quinion tapped at\nthe counting-house window, and beckoned to me to go in.  I went in,\nand found there a stoutish, middle-aged person, in a brown surtout\nand black tights and shoes, with no more hair upon his head (which\nwas a large one, and very shining) than there is upon an egg, and\nwith a very extensive face, which he turned full upon me.  His\nclothes were shabby, but he had an imposing shirt-collar on.  He\ncarried a jaunty sort of a stick, with a large pair of rusty\ntassels to it; and a quizzing-glass hung outside his coat, - for\nornament, I afterwards found, as he very seldom looked through it,\nand couldn't see anything when he did.\n\n'This,' said Mr. Quinion, in allusion to myself, 'is he.'\n\n'This,' said the stranger, with a certain condescending roll in his\nvoice, and a certain indescribable air of doing something genteel,\nwhich impressed me very much, 'is Master Copperfield.  I hope I see\nyou well, sir?'\n\nI said I was very well, and hoped he was.  I was sufficiently ill\nat ease, Heaven knows; but it was not in my nature to complain much\nat that time of my life, so I said I was very well, and hoped he\nwas.\n\n'I am,' said the stranger, 'thank Heaven, quite well.  I have\nreceived a letter from Mr. Murdstone, in which he mentions that he\nwould desire me to receive into an apartment in the rear of my\nhouse, which is at present unoccupied - and is, in short, to be let\nas a - in short,' said the stranger, with a smile and in a burst of\nconfidence, 'as a bedroom - the young beginner whom I have now the\npleasure to -' and the stranger waved his hand, and settled his\nchin in his shirt-collar.\n\n'This is Mr. Micawber,' said Mr. Quinion to me.\n\n'Ahem!' said the stranger, 'that is my name.'\n\n'Mr. Micawber,' said Mr. Quinion, 'is known to Mr. Murdstone.  He\ntakes orders for us on commission, when he can get any.  He has\nbeen written to by Mr. Murdstone, on the subject of your lodgings,\nand he will receive you as a lodger.'\n\n'My address,' said Mr. Micawber, 'is Windsor Terrace, City Road. \nI - in short,' said Mr. Micawber, with the same genteel air, and in\nanother burst of confidence - 'I live there.'\n\nI made him a bow.\n\n'Under the impression,' said Mr. Micawber, 'that your\nperegrinations in this metropolis have not as yet been extensive,\nand that you might have some difficulty in penetrating the arcana\nof the Modern Babylon in the direction of the City Road, - in\nshort,' said Mr. Micawber, in another burst of confidence, 'that\nyou might lose yourself - I shall be happy to call this evening,\nand install you in the knowledge of the nearest way.'\n\nI thanked him with all my heart, for it was friendly in him to\noffer to take that trouble.\n\n'At what hour,' said Mr. Micawber, 'shall I -'\n\n'At about eight,' said Mr. Quinion.\n\n'At about eight,' said Mr. Micawber.  'I beg to wish you good day,\nMr. Quinion.  I will intrude no longer.'\n\nSo he put on his hat, and went out with his cane under his arm:\nvery upright, and humming a tune when he was clear of the\ncounting-house.\n\nMr. Quinion then formally engaged me to be as useful as I could in\nthe warehouse of Murdstone and Grinby, at a salary, I think, of six\nshillings a week.  I am not clear whether it was six or seven.  I\nam inclined to believe, from my uncertainty on this head, that it\nwas six at first and seven afterwards.  He paid me a week down\n(from his own pocket, I believe), and I gave Mealy sixpence out of\nit to get my trunk carried to Windsor Terrace that night: it being\ntoo heavy for my strength, small as it was.  I paid sixpence more\nfor my dinner, which was a meat pie and a turn at a neighbouring\npump; and passed the hour which was allowed for that meal, in\nwalking about the streets.\n\nAt the appointed time in the evening, Mr. Micawber reappeared.  I\nwashed my hands and face, to do the greater honour to his\ngentility, and we walked to our house, as I suppose I must now call\nit, together; Mr. Micawber impressing the name of streets, and the\nshapes of corner houses upon me, as we went along, that I might\nfind my way back, easily, in the morning.\n\nArrived at this house in Windsor Terrace (which I noticed was\nshabby like himself, but also, like himself, made all the show it\ncould), he presented me to Mrs. Micawber, a thin and faded lady,\nnot at all young, who was sitting in the parlour (the first floor\nwas altogether unfurnished, and the blinds were kept down to delude\nthe neighbours), with a baby at her breast.  This baby was one of\ntwins; and I may remark here that I hardly ever, in all my\nexperience of the family, saw both the twins detached from Mrs.\nMicawber at the same time.  One of them was always taking\nrefreshment.\n\nThere were two other children; Master Micawber, aged about four,\nand Miss Micawber, aged about three.  These, and a\ndark-complexioned young woman, with a habit of snorting, who was\nservant to the family, and informed me, before half an hour had\nexpired, that she was 'a Orfling', and came from St. Luke's\nworkhouse, in the neighbourhood, completed the establishment.  My\nroom was at the top of the house, at the back: a close chamber;\nstencilled all over with an ornament which my young imagination\nrepresented as a blue muffin; and very scantily furnished.\n\n'I never thought,' said Mrs. Micawber, when she came up, twin and\nall, to show me the apartment, and sat down to take breath, 'before\nI was married, when I lived with papa and mama, that I should ever\nfind it necessary to take a lodger.  But Mr. Micawber being in\ndifficulties, all considerations of private feeling must give way.'\n\nI said: 'Yes, ma'am.'\n\n'Mr. Micawber's difficulties are almost overwhelming just at\npresent,' said Mrs. Micawber; 'and whether it is possible to bring\nhim through them, I don't know.  When I lived at home with papa and\nmama, I really should have hardly understood what the word meant,\nin the sense in which I now employ it, but experientia does it, -\nas papa used to say.'\n\nI cannot satisfy myself whether she told me that Mr. Micawber had\nbeen an officer in the Marines, or whether I have imagined it.  I\nonly know that I believe to this hour that he WAS in the Marines\nonce upon a time, without knowing why.  He was a sort of town\ntraveller for a number of miscellaneous houses, now; but made\nlittle or nothing of it, I am afraid.\n\n'If Mr. Micawber's creditors will not give him time,' said Mrs.\nMicawber, 'they must take the consequences; and the sooner they\nbring it to an issue the better.  Blood cannot be obtained from a\nstone, neither can anything on account be obtained at present (not\nto mention law expenses) from Mr. Micawber.'\n\nI never can quite understand whether my precocious self-dependence\nconfused Mrs. Micawber in reference to my age, or whether she was\nso full of the subject that she would have talked about it to the\nvery twins if there had been nobody else to communicate with, but\nthis was the strain in which she began, and she went on accordingly\nall the time I knew her.\n\nPoor Mrs. Micawber!  She said she had tried to exert herself, and\nso, I have no doubt, she had.  The centre of the street door was\nperfectly covered with a great brass-plate, on which was engraved\n'Mrs. Micawber's Boarding Establishment for Young Ladies': but I\nnever found that any young lady had ever been to school there; or\nthat any young lady ever came, or proposed to come; or that the\nleast preparation was ever made to receive any young lady.  The\nonly visitors I ever saw, or heard of, were creditors.  THEY used\nto come at all hours, and some of them were quite ferocious.  One\ndirty-faced man, I think he was a boot-maker, used to edge himself\ninto the passage as early as seven o'clock in the morning, and call\nup the stairs to Mr. Micawber - 'Come!  You ain't out yet, you\nknow.  Pay us, will you?  Don't hide, you know; that's mean.  I\nwouldn't be mean if I was you.  Pay us, will you?  You just pay us,\nd'ye hear?  Come!'  Receiving no answer to these taunts, he would\nmount in his wrath to the words 'swindlers' and 'robbers'; and\nthese being ineffectual too, would sometimes go to the extremity of\ncrossing the street, and roaring up at the windows of the second\nfloor, where he knew Mr. Micawber was.  At these times, Mr.\nMicawber would be transported with grief and mortification, even to\nthe length (as I was once made aware by a scream from his wife) of\nmaking motions at himself with a razor; but within half-an-hour\nafterwards, he would polish up his shoes with extraordinary pains,\nand go out, humming a tune with a greater air of gentility than\never.  Mrs. Micawber was quite as elastic.  I have known her to be\nthrown into fainting fits by the king's taxes at three o'clock, and\nto eat lamb chops, breaded, and drink warm ale (paid for with two\ntea-spoons that had gone to the pawnbroker's) at four.  On one\noccasion, when an execution had just been put in, coming home\nthrough some chance as early as six o'clock, I saw her lying (of\ncourse with a twin) under the grate in a swoon, with her hair all\ntorn about her face; but I never knew her more cheerful than she\nwas, that very same night, over a veal cutlet before the kitchen\nfire, telling me stories about her papa and mama, and the company\nthey used to keep.\n\nIn this house, and with this family, I passed my leisure time.  My\nown exclusive breakfast of a penny loaf and a pennyworth of milk,\nI provided myself.  I kept another small loaf, and a modicum of\ncheese, on a particular shelf of a particular cupboard, to make my\nsupper on when I came back at night.  This made a hole in the six\nor seven shillings, I know well; and I was out at the warehouse all\nday, and had to support myself on that money all the week.  From\nMonday morning until Saturday night, I had no advice, no counsel,\nno encouragement, no consolation, no assistance, no support, of any\nkind, from anyone, that I can call to mind, as I hope to go to\nheaven!\n\nI was so young and childish, and so little qualified - how could I\nbe otherwise? - to undertake the whole charge of my own existence,\nthat often, in going to Murdstone and Grinby's, of a morning, I\ncould not resist the stale pastry put out for sale at half-price at\nthe pastrycooks' doors, and spent in that the money I should have\nkept for my dinner.  Then, I went without my dinner, or bought a\nroll or a slice of pudding.  I remember two pudding shops, between\nwhich I was divided, according to my finances.  One was in a court\nclose to St. Martin's Church - at the back of the church, - which\nis now removed altogether.  The pudding at that shop was made of\ncurrants, and was rather a special pudding, but was dear,\ntwopennyworth not being larger than a pennyworth of more ordinary\npudding.  A good shop for the latter was in the Strand - somewhere\nin that part which has been rebuilt since.  It was a stout pale\npudding, heavy and flabby, and with great flat raisins in it, stuck\nin whole at wide distances apart.  It came up hot at about my time\nevery day, and many a day did I dine off it.  When I dined\nregularly and handsomely, I had a saveloy and a penny loaf, or a\nfourpenny plate of red beef from a cook's shop; or a plate of bread\nand cheese and a glass of beer, from a miserable old public-house\nopposite our place of business, called the Lion, or the Lion and\nsomething else that I have forgotten.  Once, I remember carrying my\nown bread (which I had brought from home in the morning) under my\narm, wrapped in a piece of paper, like a book, and going to a\nfamous alamode beef-house near Drury Lane, and ordering a 'small\nplate' of that delicacy to eat with it.  What the waiter thought of\nsuch a strange little apparition coming in all alone, I don't know;\nbut I can see him now, staring at me as I ate my dinner, and\nbringing up the other waiter to look.  I gave him a halfpenny for\nhimself, and I wish he hadn't taken it.\n\nWe had half-an-hour, I think, for tea.  When I had money enough, I\nused to get half-a-pint of ready-made coffee and a slice of bread\nand butter.  When I had none, I used to look at a venison shop in\nFleet Street; or I have strolled, at such a time, as far as Covent\nGarden Market, and stared at the pineapples.  I was fond of\nwandering about the Adelphi, because it was a mysterious place,\nwith those dark arches.  I see myself emerging one evening from\nsome of these arches, on a little public-house close to the river,\nwith an open space before it, where some coal-heavers were dancing;\nto look at whom I sat down upon a bench.  I wonder what they\nthought of me!\n\nI was such a child, and so little, that frequently when I went into\nthe bar of a strange public-house for a glass of ale or porter, to\nmoisten what I had had for dinner, they were afraid to give it me. \nI remember one hot evening I went into the bar of a public-house,\nand said to the landlord:\n'What is your best - your very best - ale a glass?'  For it was a\nspecial occasion.  I don't know what.  It may have been my\nbirthday.\n\n'Twopence-halfpenny,' says the landlord, 'is the price of the\nGenuine Stunning ale.'\n\n'Then,' says I, producing the money, 'just draw me a glass of the\nGenuine Stunning, if you please, with a good head to it.'\n\nThe landlord looked at me in return over the bar, from head to\nfoot, with a strange smile on his face; and instead of drawing the\nbeer, looked round the screen and said something to his wife.  She\ncame out from behind it, with her work in her hand, and joined him\nin surveying me.  Here we stand, all three, before me now.  The\nlandlord in his shirt-sleeves, leaning against the bar\nwindow-frame; his wife looking over the little half-door; and I, in\nsome confusion, looking up at them from outside the partition. \nThey asked me a good many questions; as, what my name was, how old\nI was, where I lived, how I was employed, and how I came there.  To\nall of which, that I might commit nobody, I invented, I am afraid,\nappropriate answers.  They served me with the ale, though I suspect\nit was not the Genuine Stunning; and the landlord's wife, opening\nthe little half-door of the bar, and bending down, gave me my money\nback, and gave me a kiss that was half admiring and half\ncompassionate, but all womanly and good, I am sure.\n\nI know I do not exaggerate, unconsciously and unintentionally, the\nscantiness of my resources or the difficulties of my life.  I know\nthat if a shilling were given me by Mr. Quinion at any time, I\nspent it in a dinner or a tea.  I know that I worked, from morning\nuntil night, with common men and boys, a shabby child.  I know that\nI lounged about the streets, insufficiently and unsatisfactorily\nfed.  I know that, but for the mercy of God, I might easily have\nbeen, for any care that was taken of me, a little robber or a\nlittle vagabond.\n\nYet I held some station at Murdstone and Grinby's too.  Besides\nthat Mr. Quinion did what a careless man so occupied, and dealing\nwith a thing so anomalous, could, to treat me as one upon a\ndifferent footing from the rest, I never said, to man or boy, how\nit was that I came to be there, or gave the least indication of\nbeing sorry that I was there.  That I suffered in secret, and that\nI suffered exquisitely, no one ever knew but I.  How much I\nsuffered, it is, as I have said already, utterly beyond my power to\ntell.  But I kept my own counsel, and I did my work.  I knew from\nthe first, that, if I could not do my work as well as any of the\nrest, I could not hold myself above slight and contempt.  I soon\nbecame at least as expeditious and as skilful as either of the\nother boys.  Though perfectly familiar with them, my conduct and\nmanner were different enough from theirs to place a space between\nus.  They and the men generally spoke of me as 'the little gent',\nor 'the young Suffolker.'  A certain man named Gregory, who was\nforeman of the packers, and another named Tipp, who was the carman,\nand wore a red jacket, used to address me sometimes as 'David': but\nI think it was mostly when we were very confidential, and when I\nhad made some efforts to entertain them, over our work, with some\nresults of the old readings; which were fast perishing out of my\nremembrance.  Mealy Potatoes uprose once, and rebelled against my\nbeing so distinguished; but Mick Walker settled him in no time.\n\nMy rescue from this kind of existence I considered quite hopeless,\nand abandoned, as such, altogether.  I am solemnly convinced that\nI never for one hour was reconciled to it, or was otherwise than\nmiserably unhappy; but I bore it; and even to Peggotty, partly for\nthe love of her and partly for shame, never in any letter (though\nmany passed between us) revealed the truth.\n\nMr. Micawber's difficulties were an addition to the distressed\nstate of my mind.  In my forlorn state I became quite attached to\nthe family, and used to walk about, busy with Mrs. Micawber's\ncalculations of ways and means, and heavy with the weight of Mr.\nMicawber's debts.  On a Saturday night, which was my grand treat,\n- partly because it was a great thing to walk home with six or\nseven shillings in my pocket, looking into the shops and thinking\nwhat such a sum would buy, and partly because I went home early, -\nMrs. Micawber would make the most heart-rending confidences to me;\nalso on a Sunday morning, when I mixed the portion of tea or coffee\nI had bought over-night, in a little shaving-pot, and sat late at\nmy breakfast.  It was nothing at all unusual for Mr. Micawber to\nsob violently at the beginning of one of these Saturday night\nconversations, and sing about jack's delight being his lovely Nan,\ntowards the end of it.  I have known him come home to supper with\na flood of tears, and a declaration that nothing was now left but\na jail; and go to bed making a calculation of the expense of\nputting bow-windows to the house, 'in case anything turned up',\nwhich was his favourite expression.  And Mrs. Micawber was just the\nsame.\n\nA curious equality of friendship, originating, I suppose, in our\nrespective circumstances, sprung up between me and these people,\nnotwithstanding the ludicrous disparity in our years.  But I never\nallowed myself to be prevailed upon to accept any invitation to eat\nand drink with them out of their stock (knowing that they got on\nbadly with the butcher and baker, and had often not too much for\nthemselves), until Mrs. Micawber took me into her entire\nconfidence.  This she did one evening as follows:\n\n'Master Copperfield,' said Mrs. Micawber, 'I make no stranger of\nyou, and therefore do not hesitate to say that Mr. Micawber's\ndifficulties are coming to a crisis.'\n\nIt made me very miserable to hear it, and I looked at Mrs.\nMicawber's red eyes with the utmost sympathy.\n\n'With the exception of the heel of a Dutch cheese - which is not\nadapted to the wants of a young family' - said Mrs. Micawber,\n'there is really not a scrap of anything in the larder.  I was\naccustomed to speak of the larder when I lived with papa and mama,\nand I use the word almost unconsciously.  What I mean to express\nis, that there is nothing to eat in the house.'\n\n'Dear me!' I said, in great concern.\n\nI had two or three shillings of my week's money in my pocket - from\nwhich I presume that it must have been on a Wednesday night when we\nheld this conversation - and I hastily produced them, and with\nheartfelt emotion begged Mrs. Micawber to accept of them as a loan. \nBut that lady, kissing me, and making me put them back in my\npocket, replied that she couldn't think of it.\n\n'No, my dear Master Copperfield,' said she, 'far be it from my\nthoughts!  But you have a discretion beyond your years, and can\nrender me another kind of service, if you will; and a service I\nwill thankfully accept of.'\n\nI begged Mrs. Micawber to name it.\n\n'I have parted with the plate myself,' said Mrs. Micawber.  'Six\ntea, two salt, and a pair of sugars, I have at different times\nborrowed money on, in secret, with my own hands.  But the twins are\na great tie; and to me, with my recollections, of papa and mama,\nthese transactions are very painful.  There are still a few trifles\nthat we could part with.  Mr. Micawber's feelings would never allow\nhim to dispose of them; and Clickett' - this was the girl from the\nworkhouse - 'being of a vulgar mind, would take painful liberties\nif so much confidence was reposed in her.  Master Copperfield, if\nI might ask you -'\n\nI understood Mrs. Micawber now, and begged her to make use of me to\nany extent.  I began to dispose of the more portable articles of\nproperty that very evening; and went out on a similar expedition\nalmost every morning, before I went to Murdstone and Grinby's.\n\nMr. Micawber had a few books on a little chiffonier, which he\ncalled the library; and those went first.  I carried them, one\nafter another, to a bookstall in the City Road - one part of which,\nnear our house, was almost all bookstalls and bird shops then - and\nsold them for whatever they would bring.  The keeper of this\nbookstall, who lived in a little house behind it, used to get tipsy\nevery night, and to be violently scolded by his wife every morning. \nMore than once, when I went there early, I had audience of him in\na turn-up bedstead, with a cut in his forehead or a black eye,\nbearing witness to his excesses over-night (I am afraid he was\nquarrelsome in his drink), and he, with a shaking hand,\nendeavouring to find the needful shillings in one or other of the\npockets of his clothes, which lay upon the floor, while his wife,\nwith a baby in her arms and her shoes down at heel, never left off\nrating him.  Sometimes he had lost his money, and then he would ask\nme to call again; but his wife had always got some - had taken his,\nI dare say, while he was drunk - and secretly completed the bargain\non the stairs, as we went down together.\nAt the pawnbroker's shop, too, I began to be very well known.  The\nprincipal gentleman who officiated behind the counter, took a good\ndeal of notice of me; and often got me, I recollect, to decline a\nLatin noun or adjective, or to conjugate a Latin verb, in his ear,\nwhile he transacted my business.  After all these occasions Mrs.\nMicawber made a little treat, which was generally a supper; and\nthere was a peculiar relish in these meals which I well remember.\n\nAt last Mr. Micawber's difficulties came to a crisis, and he was\narrested early one morning, and carried over to the King's Bench\nPrison in the Borough.  He told me, as he went out of the house,\nthat the God of day had now gone down upon him - and I really\nthought his heart was broken and mine too.  But I heard,\nafterwards, that he was seen to play a lively game at skittles,\nbefore noon.\n\nOn the first Sunday after he was taken there, I was to go and see\nhim, and have dinner with him.  I was to ask my way to such a\nplace, and just short of that place I should see such another\nplace, and just short of that I should see a yard, which I was to\ncross, and keep straight on until I saw a turnkey.  All this I did;\nand when at last I did see a turnkey (poor little fellow that I\nwas!), and thought how, when Roderick Random was in a debtors'\nprison, there was a man there with nothing on him but an old rug,\nthe turnkey swam before my dimmed eyes and my beating heart.\n\nMr. Micawber was waiting for me within the gate, and we went up to\nhis room (top story but one), and cried very much.  He solemnly\nconjured me, I remember, to take warning by his fate; and to\nobserve that if a man had twenty pounds a-year for his income, and\nspent nineteen pounds nineteen shillings and sixpence, he would be\nhappy, but that if he spent twenty pounds one he would be\nmiserable.  After which he borrowed a shilling of me for porter,\ngave me a written order on Mrs. Micawber for the amount, and put\naway his pocket-handkerchief, and cheered up.\n\nWe sat before a little fire, with two bricks put within the rusted\ngrate, one on each side, to prevent its burning too many coals;\nuntil another debtor, who shared the room with Mr. Micawber, came\nin from the bakehouse with the loin of mutton which was our\njoint-stock repast.  Then I was sent up to 'Captain Hopkins' in the\nroom overhead, with Mr. Micawber's compliments, and I was his young\nfriend, and would Captain Hopkins lend me a knife and fork.\n\nCaptain Hopkins lent me the knife and fork, with his compliments to\nMr. Micawber.  There was a very dirty lady in his little room, and\ntwo wan girls, his daughters, with shock heads of hair.  I thought\nit was better to borrow Captain Hopkins's knife and fork, than\nCaptain Hopkins's comb.  The Captain himself was in the last\nextremity of shabbiness, with large whiskers, and an old, old brown\ngreat-coat with no other coat below it.  I saw his bed rolled up in\na corner; and what plates and dishes and pots he had, on a shelf;\nand I divined (God knows how) that though the two girls with the\nshock heads of hair were Captain Hopkins's children, the dirty lady\nwas not married to Captain Hopkins.  My timid station on his\nthreshold was not occupied more than a couple of minutes at most;\nbut I came down again with all this in my knowledge, as surely as\nthe knife and fork were in my hand.\n\nThere was something gipsy-like and agreeable in the dinner, after\nall.  I took back Captain Hopkins's knife and fork early in the\nafternoon, and went home to comfort Mrs. Micawber with an account\nof my visit.  She fainted when she saw me return, and made a little\njug of egg-hot afterwards to console us while we talked it over.\n\nI don't know how the household furniture came to be sold for the\nfamily benefit, or who sold it, except that I did not.  Sold it\nwas, however, and carried away in a van; except the bed, a few\nchairs, and the kitchen table.  With these possessions we encamped,\nas it were, in the two parlours of the emptied house in Windsor\nTerrace; Mrs. Micawber, the children, the Orfling, and myself; and\nlived in those rooms night and day.  I have no idea for how long,\nthough it seems to me for a long time.  At last Mrs. Micawber\nresolved to move into the prison, where Mr. Micawber had now\nsecured a room to himself.  So I took the key of the house to the\nlandlord, who was very glad to get it; and the beds were sent over\nto the King's Bench, except mine, for which a little room was hired\noutside the walls in the neighbourhood of that Institution, very\nmuch to my satisfaction, since the Micawbers and I had become too\nused to one another, in our troubles, to part.  The Orfling was\nlikewise accommodated with an inexpensive lodging in the same\nneighbourhood.  Mine was a quiet back-garret with a sloping roof,\ncommanding a pleasant prospect of a timberyard; and when I took\npossession of it, with the reflection that Mr. Micawber's troubles\nhad come to a crisis at last, I thought it quite a paradise.\n\nAll this time I was working at Murdstone and Grinby's in the same\ncommon way, and with the same common companions, and with the same\nsense of unmerited degradation as at first.  But I never, happily\nfor me no doubt, made a single acquaintance, or spoke to any of the\nmany boys whom I saw daily in going to the warehouse, in coming\nfrom it, and in prowling about the streets at meal-times.  I led\nthe same secretly unhappy life; but I led it in the same lonely,\nself-reliant manner.  The only changes I am conscious of are,\nfirstly, that I had grown more shabby, and secondly, that I was now\nrelieved of much of the weight of Mr. and Mrs. Micawber's cares;\nfor some relatives or friends had engaged to help them at their\npresent pass, and they lived more comfortably in the prison than\nthey had lived for a long while out of it.  I used to breakfast\nwith them now, in virtue of some arrangement, of which I have\nforgotten the details.  I forget, too, at what hour the gates were\nopened in the morning, admitting of my going in; but I know that I\nwas often up at six o'clock, and that my favourite lounging-place\nin the interval was old London Bridge, where I was wont to sit in\none of the stone recesses, watching the people going by, or to look\nover the balustrades at the sun shining in the water, and lighting\nup the golden flame on the top of the Monument.  The Orfling met me\nhere sometimes, to be told some astonishing fictions respecting the\nwharves and the Tower; of which I can say no more than that I hope\nI believed them myself.  In the evening I used to go back to the\nprison, and walk up and down the parade with Mr. Micawber; or play\ncasino with Mrs. Micawber, and hear reminiscences of her papa and\nmama.  Whether Mr. Murdstone knew where I was, I am unable to say. \nI never told them at Murdstone and Grinby's.\n\nMr. Micawber's affairs, although past their crisis, were very much\ninvolved by reason of a certain 'Deed', of which I used to hear a\ngreat deal, and which I suppose, now, to have been some former\ncomposition with his creditors, though I was so far from being\nclear about it then, that I am conscious of having confounded it\nwith those demoniacal parchments which are held to have, once upon\na time, obtained to a great extent in Germany.  At last this\ndocument appeared to be got out of the way, somehow; at all events\nit ceased to be the rock-ahead it had been; and Mrs. Micawber\ninformed me that 'her family' had decided that Mr. Micawber should\napply for his release under the Insolvent Debtors Act, which would\nset him free, she expected, in about six weeks.\n\n'And then,' said Mr. Micawber, who was present, 'I have no doubt I\nshall, please Heaven, begin to be beforehand with the world, and to\nlive in a perfectly new manner, if - in short, if anything turns\nup.'\n\nBy way of going in for anything that might be on the cards, I call\nto mind that Mr. Micawber, about this time, composed a petition to\nthe House of Commons, praying for an alteration in the law of\nimprisonment for debt.  I set down this remembrance here, because\nit is an instance to myself of the manner in which I fitted my old\nbooks to my altered life, and made stories for myself, out of the\nstreets, and out of men and women; and how some main points in the\ncharacter I shall unconsciously develop, I suppose, in writing my\nlife, were gradually forming all this while.\n\nThere was a club in the prison, in which Mr. Micawber, as a\ngentleman, was a great authority.  Mr. Micawber had stated his idea\nof this petition to the club, and the club had strongly approved of\nthe same.  Wherefore Mr. Micawber (who was a thoroughly\ngood-natured man, and as active a creature about everything but his\nown affairs as ever existed, and never so happy as when he was busy\nabout something that could never be of any profit to him) set to\nwork at the petition, invented it, engrossed it on an immense sheet\nof paper, spread it out on a table, and appointed a time for all\nthe club, and all within the walls if they chose, to come up to his\nroom and sign it.\n\nWhen I heard of this approaching ceremony, I was so anxious to see\nthem all come in, one after another, though I knew the greater part\nof them already, and they me, that I got an hour's leave of absence\nfrom Murdstone and Grinby's, and established myself in a corner for\nthat purpose.  As many of the principal members of the club as\ncould be got into the small room without filling it, supported Mr.\nMicawber in front of the petition, while my old friend Captain\nHopkins (who had washed himself, to do honour to so solemn an\noccasion) stationed himself close to it, to read it to all who were\nunacquainted with its contents.  The door was then thrown open, and\nthe general population began to come in, in a long file: several\nwaiting outside, while one entered, affixed his signature, and went\nout.  To everybody in succession, Captain Hopkins said: 'Have you\nread it?' - 'No.'  - 'Would you like to hear it read?'  If he\nweakly showed the least disposition to hear it, Captain Hopkins, in\na loud sonorous voice, gave him every word of it.  The Captain\nwould have read it twenty thousand times, if twenty thousand people\nwould have heard him, one by one.  I remember a certain luscious\nroll he gave to such phrases as 'The people's representatives in\nParliament assembled,' 'Your petitioners therefore humbly approach\nyour honourable house,' 'His gracious Majesty's unfortunate\nsubjects,' as if the words were something real in his mouth, and\ndelicious to taste; Mr. Micawber, meanwhile, listening with a\nlittle of an author's vanity, and contemplating (not severely) the\nspikes on the opposite wall.\n\nAs I walked to and fro daily between Southwark and Blackfriars, and\nlounged about at meal-times in obscure streets, the stones of which\nmay, for anything I know, be worn at this moment by my childish\nfeet, I wonder how many of these people were wanting in the crowd\nthat used to come filing before me in review again, to the echo of\nCaptain Hopkins's voice!  When my thoughts go back, now, to that\nslow agony of my youth, I wonder how much of the histories I\ninvented for such people hangs like a mist of fancy over\nwell-remembered facts!  When I tread the old ground, I do not\nwonder that I seem to see and pity, going on before me, an innocent\nromantic boy, making his imaginative world out of such strange\nexperiences and sordid things!\n\n\n\nCHAPTER 12\nLIKING LIFE ON MY OWN ACCOUNT NO BETTER,\n     I FORM A GREAT RESOLUTION\n\n\nIn due time, Mr. Micawber's petition was ripe for hearing; and that\ngentleman was ordered to be discharged under the Act, to my great\njoy.  His creditors were not implacable; and Mrs. Micawber informed\nme that even the revengeful boot-maker had declared in open court\nthat he bore him no malice, but that when money was owing to him he\nliked to be paid.  He said he thought it was human nature.\n\nM r Micawber returned to the King's Bench when his case was over,\nas some fees were to be settled, and some formalities observed,\nbefore he could be actually released.  The club received him with\ntransport, and held an harmonic meeting that evening in his honour;\nwhile Mrs. Micawber and I had a lamb's fry in private, surrounded\nby the sleeping family.\n\n'On such an occasion I will give you, Master Copperfield,' said\nMrs. Micawber, 'in a little more flip,' for we had been having some\nalready, 'the memory of my papa and mama.'\n\n'Are they dead, ma'am?' I inquired, after drinking the toast in a\nwine-glass.\n\n'My mama departed this life,' said Mrs. Micawber, 'before Mr.\nMicawber's difficulties commenced, or at least before they became\npressing.  My papa lived to bail Mr. Micawber several times, and\nthen expired, regretted by a numerous circle.'\n\nMrs. Micawber shook her head, and dropped a pious tear upon the\ntwin who happened to be in hand.\n\nAs I could hardly hope for a more favourable opportunity of putting\na question in which I had a near interest, I said to Mrs. Micawber:\n\n'May I ask, ma'am, what you and Mr. Micawber intend to do, now that\nMr. Micawber is out of his difficulties, and at liberty?  Have you\nsettled yet?'\n\n'My family,' said Mrs. Micawber, who always said those two words\nwith an air, though I never could discover who came under the\ndenomination, 'my family are of opinion that Mr. Micawber should\nquit London, and exert his talents in the country.  Mr. Micawber is\na man of great talent, Master Copperfield.'\n\nI said I was sure of that.\n\n'Of great talent,' repeated Mrs. Micawber.  'My family are of\nopinion, that, with a little interest, something might be done for\na man of his ability in the Custom House.  The influence of my\nfamily being local, it is their wish that Mr. Micawber should go\ndown to Plymouth.  They think it indispensable that he should be\nupon the spot.'\n\n'That he may be ready?' I suggested.\n\n'Exactly,' returned Mrs. Micawber.  'That he may be ready - in case\nof anything turning up.'\n\n'And do you go too, ma'am?'\n\nThe events of the day, in combination with the twins, if not with\nthe flip, had made Mrs. Micawber hysterical, and she shed tears as\nshe replied:\n\n'I never will desert Mr. Micawber.  Mr. Micawber may have concealed\nhis difficulties from me in the first instance, but his sanguine\ntemper may have led him to expect that he would overcome them.  The\npearl necklace and bracelets which I inherited from mama, have been\ndisposed of for less than half their value; and the set of coral,\nwhich was the wedding gift of my papa, has been actually thrown\naway for nothing.  But I never will desert Mr. Micawber.  No!'\ncried Mrs. Micawber, more affected than before, 'I never will do\nit!  It's of no use asking me!'\n\nI felt quite uncomfortable - as if Mrs. Micawber supposed I had\nasked her to do anything of the sort! - and sat looking at her in\nalarm.\n\n'Mr. Micawber has his faults.  I do not deny that he is\nimprovident.  I do not deny that he has kept me in the dark as to\nhis resources and his liabilities both,' she went on, looking at\nthe wall; 'but I never will desert Mr. Micawber!'\n\nMrs. Micawber having now raised her voice into a perfect scream, I\nwas so frightened that I ran off to the club-room, and disturbed\nMr. Micawber in the act of presiding at a long table, and leading\nthe chorus of\n\n     Gee up, Dobbin,\n     Gee ho, Dobbin,\n     Gee up, Dobbin,\n     Gee up, and gee ho - o - o!\n\nwith the tidings that Mrs. Micawber was in an alarming state, upon\nwhich he immediately burst into tears, and came away with me with\nhis waistcoat full of the heads and tails of shrimps, of which he\nhad been partaking.\n\n'Emma, my angel!' cried Mr. Micawber, running into the room; 'what\nis the matter?'\n\n'I never will desert you, Micawber!' she exclaimed.\n\n'My life!' said Mr. Micawber, taking her in his arms.  'I am\nperfectly aware of it.'\n\n'He is the parent of my children!  He is the father of my twins!\nHe is the husband of my affections,' cried Mrs. Micawber,\nstruggling; 'and I ne - ver - will - desert Mr. Micawber!'\n\nMr. Micawber was so deeply affected by this proof of her devotion\n(as to me, I was dissolved in tears), that he hung over her in a\npassionate manner, imploring her to look up, and to be calm.  But\nthe more he asked Mrs. Micawber to look up, the more she fixed her\neyes on nothing; and the more he asked her to compose herself, the\nmore she wouldn't.  Consequently Mr. Micawber was soon so overcome,\nthat he mingled his tears with hers and mine; until he begged me to\ndo him the favour of taking a chair on the staircase, while he got\nher into bed.  I would have taken my leave for the night, but he\nwould not hear of my doing that until the strangers' bell should\nring.  So I sat at the staircase window, until he came out with\nanother chair and joined me.\n\n'How is Mrs. Micawber now, sir?' I said.\n\n'Very low,' said Mr. Micawber, shaking his head; 'reaction.  Ah,\nthis has been a dreadful day!  We stand alone now - everything is\ngone from us!'\n\nMr. Micawber pressed my hand, and groaned, and afterwards shed\ntears.  I was greatly touched, and disappointed too, for I had\nexpected that we should be quite gay on this happy and\nlong-looked-for occasion.  But Mr. and Mrs. Micawber were so used\nto their old difficulties, I think, that they felt quite\nshipwrecked when they came to consider that they were released from\nthem.  All their elasticity was departed, and I never saw them half\nso wretched as on this night; insomuch that when the bell rang, and\nMr. Micawber walked with me to the lodge, and parted from me there\nwith a blessing, I felt quite afraid to leave him by himself, he\nwas so profoundly miserable.\n\nBut through all the confusion and lowness of spirits in which we\nhad been, so unexpectedly to me, involved, I plainly discerned that\nMr. and Mrs. Micawber and their family were going away from London,\nand that a parting between us was near at hand.  It was in my walk\nhome that night, and in the sleepless hours which followed when I\nlay in bed, that the thought first occurred to me - though I don't\nknow how it came into my head - which afterwards shaped itself into\na settled resolution.\n\nI had grown to be so accustomed to the Micawbers, and had been so\nintimate with them in their distresses, and was so utterly\nfriendless without them, that the prospect of being thrown upon\nsome new shift for a lodging, and going once more among unknown\npeople, was like being that moment turned adrift into my present\nlife, with such a knowledge of it ready made as experience had\ngiven me.  All the sensitive feelings it wounded so cruelly, all\nthe shame and misery it kept alive within my breast, became more\npoignant as I thought of this; and I determined that the life was\nunendurable.\n\nThat there was no hope of escape from it, unless the escape was my\nown act, I knew quite well.  I rarely heard from Miss Murdstone,\nand never from Mr. Murdstone: but two or three parcels of made or\nmended clothes had come up for me, consigned to Mr. Quinion, and in\neach there was a scrap of paper to the effect that J. M. trusted D.\nC. was applying himself to business, and devoting himself wholly to\nhis duties - not the least hint of my ever being anything else than\nthe common drudge into which I was fast settling down.\n\nThe very next day showed me, while my mind was in the first\nagitation of what it had conceived, that Mrs. Micawber had not\nspoken of their going away without warrant.  They took a lodging in\nthe house where I lived, for a week; at the expiration of which\ntime they were to start for Plymouth.  Mr. Micawber himself came\ndown to the counting-house, in the afternoon, to tell Mr. Quinion\nthat he must relinquish me on the day of his departure, and to give\nme a high character, which I am sure I deserved.  And Mr. Quinion,\ncalling in Tipp the carman, who was a married man, and had a room\nto let, quartered me prospectively on him - by our mutual consent,\nas he had every reason to think; for I said nothing, though my\nresolution was now taken.\n\nI passed my evenings with Mr. and Mrs. Micawber, during the\nremaining term of our residence under the same roof; and I think we\nbecame fonder of one another as the time went on.  On the last\nSunday, they invited me to dinner; and we had a loin of pork and\napple sauce, and a pudding.  I had bought a spotted wooden horse\nover-night as a parting gift to little Wilkins Micawber - that was\nthe boy - and a doll for little Emma.  I had also bestowed a\nshilling on the Orfling, who was about to be disbanded.\n\nWe had a very pleasant day, though we were all in a tender state\nabout our approaching separation.\n\n'I shall never, Master Copperfield,' said Mrs. Micawber, 'revert to\nthe period when Mr. Micawber was in difficulties, without thinking\nof you.  Your conduct has always been of the most delicate and\nobliging description.  You have never been a lodger.  You have been\na friend.'\n\n'My dear,' said Mr. Micawber; 'Copperfield,' for so he had been\naccustomed to call me, of late, 'has a heart to feel for the\ndistresses of his fellow-creatures when they are behind a cloud,\nand a head to plan, and a hand to - in short, a general ability to\ndispose of such available property as could be made away with.'\n\nI expressed my sense of this commendation, and said I was very\nsorry we were going to lose one another.\n\n'My dear young friend,' said Mr. Micawber, 'I am older than you; a\nman of some experience in life, and - and of some experience, in\nshort, in difficulties, generally speaking.  At present, and until\nsomething turns up (which I am, I may say, hourly expecting), I\nhave nothing to bestow but advice.  Still my advice is so far worth\ntaking, that - in short, that I have never taken it myself, and am\nthe' - here Mr. Micawber, who had been beaming and smiling, all\nover his head and face, up to the present moment, checked himself\nand frowned - 'the miserable wretch you behold.'\n\n'My dear Micawber!' urged his wife.\n\n'I say,' returned Mr. Micawber, quite forgetting himself, and\nsmiling again, 'the miserable wretch you behold.  My advice is,\nnever do tomorrow what you can do today.  Procrastination is the\nthief of time.  Collar him!'\n\n'My poor papa's maxim,' Mrs. Micawber observed.\n\n'My dear,' said Mr. Micawber, 'your papa was very well in his way,\nand Heaven forbid that I should disparage him.  Take him for all in\nall, we ne'er shall - in short, make the acquaintance, probably, of\nanybody else possessing, at his time of life, the same legs for\ngaiters, and able to read the same description of print, without\nspectacles.  But he applied that maxim to our marriage, my dear;\nand that was so far prematurely entered into, in consequence, that\nI never recovered the expense.'  Mr. Micawber looked aside at Mrs.\nMicawber, and added: 'Not that I am sorry for it.  Quite the\ncontrary, my love.'  After which, he was grave for a minute or so.\n\n'My other piece of advice, Copperfield,' said Mr. Micawber, 'you\nknow.  Annual income twenty pounds, annual expenditure nineteen\nnineteen and six, result happiness.  Annual income twenty pounds,\nannual expenditure twenty pounds ought and six, result misery.  The\nblossom is blighted, the leaf is withered, the god of day goes down\nupon the dreary scene, and - and in short you are for ever floored. \nAs I am!'\n\nTo make his example the more impressive, Mr. Micawber drank a glass\nof punch with an air of great enjoyment and satisfaction, and\nwhistled the College Hornpipe.\n\nI did not fail to assure him that I would store these precepts in\nmy mind, though indeed I had no need to do so, for, at the time,\nthey affected me visibly.  Next morning I met the whole family at\nthe coach office, and saw them, with a desolate heart, take their\nplaces outside, at the back.\n\n'Master Copperfield,' said Mrs. Micawber, 'God bless you!  I never\ncan forget all that, you know, and I never would if I could.'\n\n'Copperfield,' said Mr. Micawber, 'farewell!  Every happiness and\nprosperity!  If, in the progress of revolving years, I could\npersuade myself that my blighted destiny had been a warning to you,\nI should feel that I had not occupied another man's place in\nexistence altogether in vain.  In case of anything turning up (of\nwhich I am rather confident), I shall be extremely happy if it\nshould be in my power to improve your prospects.'\n\nI think, as Mrs. Micawber sat at the back of the coach, with the\nchildren, and I stood in the road looking wistfully at them, a mist\ncleared from her eyes, and she saw what a little creature I really\nwas.  I think so, because she beckoned to me to climb up, with\nquite a new and motherly expression in her face, and put her arm\nround my neck, and gave me just such a kiss as she might have given\nto her own boy.  I had barely time to get down again before the\ncoach started, and I could hardly see the family for the\nhandkerchiefs they waved.  It was gone in a minute.  The Orfling\nand I stood looking vacantly at each other in the middle of the\nroad, and then shook hands and said good-bye; she going back, I\nsuppose, to St. Luke's workhouse, as I went to begin my weary day\nat Murdstone and Grinby's.\n\nBut with no intention of passing many more weary days there.  No. \nI had resolved to run away.  - To go, by some means or other, down\ninto the country, to the only relation I had in the world, and tell\nmy story to my aunt, Miss Betsey.\nI have already observed that I don't know how this desperate idea\ncame into my brain.  But, once there, it remained there; and\nhardened into a purpose than which I have never entertained a more\ndetermined purpose in my life.  I am far from sure that I believed\nthere was anything hopeful in it, but my mind was thoroughly made\nup that it must be carried into execution.\n\nAgain, and again, and a hundred times again, since the night when\nthe thought had first occurred to me and banished sleep, I had gone\nover that old story of my poor mother's about my birth, which it\nhad been one of my great delights in the old time to hear her tell,\nand which I knew by heart.  My aunt walked into that story, and\nwalked out of it, a dread and awful personage; but there was one\nlittle trait in her behaviour which I liked to dwell on, and which\ngave me some faint shadow of encouragement.  I could not forget how\nmy mother had thought that she felt her touch her pretty hair with\nno ungentle hand; and though it might have been altogether my\nmother's fancy, and might have had no foundation whatever in fact,\nI made a little picture, out of it, of my terrible aunt relenting\ntowards the girlish beauty that I recollected so well and loved so\nmuch, which softened the whole narrative.  It is very possible that\nit had been in my mind a long time, and had gradually engendered my\ndetermination.\n\nAs I did not even know where Miss Betsey lived, I wrote a long\nletter to Peggotty, and asked her, incidentally, if she remembered;\npretending that I had heard of such a lady living at a certain\nplace I named at random, and had a curiosity to know if it were the\nsame.  In the course of that letter, I told Peggotty that I had a\nparticular occasion for half a guinea; and that if she could lend\nme that sum until I could repay it, I should be very much obliged\nto her, and would tell her afterwards what I had wanted it for.\n\nPeggotty's answer soon arrived, and was, as usual, full of\naffectionate devotion.  She enclosed the half guinea (I was afraid\nshe must have had a world of trouble to get it out of Mr. Barkis's\nbox), and told me that Miss Betsey lived near Dover, but whether at\nDover itself, at Hythe, Sandgate, or Folkestone, she could not say. \nOne of our men, however, informing me on my asking him about these\nplaces, that they were all close together, I deemed this enough for\nmy object, and resolved to set out at the end of that week.\n\nBeing a very honest little creature, and unwilling to disgrace the\nmemory I was going to leave behind me at Murdstone and Grinby's, I\nconsidered myself bound to remain until Saturday night; and, as I\nhad been paid a week's wages in advance when I first came there,\nnot to present myself in the counting-house at the usual hour, to\nreceive my stipend.  For this express reason, I had borrowed the\nhalf-guinea, that I might not be without a fund for my\ntravelling-expenses.  Accordingly, when the Saturday night came,\nand we were all waiting in the warehouse to be paid, and Tipp the\ncarman, who always took precedence, went in first to draw his\nmoney, I shook Mick Walker by the hand; asked him, when it came to\nhis turn to be paid, to say to Mr. Quinion that I had gone to move\nmy box to Tipp's; and, bidding a last good night to Mealy Potatoes,\nran away.\n\nMy box was at my old lodging, over the water, and I had written a\ndirection for it on the back of one of our address cards that we\nnailed on the casks: 'Master David, to be left till called for, at\nthe Coach Office, Dover.'  This I had in my pocket ready to put on\nthe box, after I should have got it out of the house; and as I went\ntowards my lodging, I looked about me for someone who would help me\nto carry it to the booking-office.\n\nThere was a long-legged young man with a very little empty\ndonkey-cart, standing near the Obelisk, in the Blackfriars Road,\nwhose eye I caught as I was going by, and who, addressing me as\n'Sixpenn'orth of bad ha'pence,' hoped 'I should know him agin to\nswear to' - in allusion, I have no doubt, to my staring at him.  I\nstopped to assure him that I had not done so in bad manners, but\nuncertain whether he might or might not like a job.\n\n'Wot job?' said the long-legged young man.\n\n'To move a box,' I answered.\n\n'Wot box?' said the long-legged young man.\n\nI told him mine, which was down that street there, and which I\nwanted him to take to the Dover coach office for sixpence.\n\n'Done with you for a tanner!' said the long-legged young man, and\ndirectly got upon his cart, which was nothing but a large wooden\ntray on wheels, and rattled away at such a rate, that it was as\nmuch as I could do to keep pace with the donkey.\n\nThere was a defiant manner about this young man, and particularly\nabout the way in which he chewed straw as he spoke to me, that I\ndid not much like; as the bargain was made, however, I took him\nupstairs to the room I was leaving, and we brought the box down,\nand put it on his cart.  Now, I was unwilling to put the\ndirection-card on there, lest any of my landlord's family should\nfathom what I was doing, and detain me; so I said to the young man\nthat I would be glad if he would stop for a minute, when he came to\nthe dead-wall of the King's Bench prison.  The words were no sooner\nout of my mouth, than he rattled away as if he, my box, the cart,\nand the donkey, were all equally mad; and I was quite out of breath\nwith running and calling after him, when I caught him at the place\nappointed.\n\nBeing much flushed and excited, I tumbled my half-guinea out of my\npocket in pulling the card out.  I put it in my mouth for safety,\nand though my hands trembled a good deal, had just tied the card on\nvery much to my satisfaction, when I felt myself violently chucked\nunder the chin by the long-legged young man, and saw my half-guinea\nfly out of my mouth into his hand.\n\n'Wot!' said the young man, seizing me by my jacket collar, with a\nfrightful grin.  'This is a pollis case, is it?  You're a-going to\nbolt, are you?  Come to the pollis, you young warmin, come to the\npollis!'\n\n'You give me my money back, if you please,' said I, very much\nfrightened; 'and leave me alone.'\n\n'Come to the pollis!' said the young man.  'You shall prove it\nyourn to the pollis.'\n\n'Give me my box and money, will you,' I cried, bursting into tears.\n\nThe young man still replied: 'Come to the pollis!' and was dragging\nme against the donkey in a violent manner, as if there were any\naffinity between that animal and a magistrate, when he changed his\nmind, jumped into the cart, sat upon my box, and, exclaiming that\nhe would drive to the pollis straight, rattled away harder than\never.\n\nI ran after him as fast as I could, but I had no breath to call out\nwith, and should not have dared to call out, now, if I had.  I\nnarrowly escaped being run over, twenty times at least, in half a\nmile.  Now I lost him, now I saw him, now I lost him, now I was cut\nat with a whip, now shouted at, now down in the mud, now up again,\nnow running into somebody's arms, now running headlong at a post. \nAt length, confused by fright and heat, and doubting whether half\nLondon might not by this time be turning out for my apprehension,\nI left the young man to go where he would with my box and money;\nand, panting and crying, but never stopping, faced about for\nGreenwich, which I had understood was on the Dover Road: taking\nvery little more out of the world, towards the retreat of my aunt,\nMiss Betsey, than I had brought into it, on the night when my\narrival gave her so much umbrage.\n\n\n\nCHAPTER 13\nTHE SEQUEL OF MY RESOLUTION\n\n\nFor anything I know, I may have had some wild idea of running all\nthe way to Dover, when I gave up the pursuit of the young man with\nthe donkey-cart, and started for Greenwich.  My scattered senses\nwere soon collected as to that point, if I had; for I came to a\nstop in the Kent Road, at a terrace with a piece of water before\nit, and a great foolish image in the middle, blowing a dry shell. \nHere I sat down on a doorstep, quite spent and exhausted with the\nefforts I had already made, and with hardly breath enough to cry\nfor the loss of my box and half-guinea.\n\nIt was by this time dark; I heard the clocks strike ten, as I sat\nresting.  But it was a summer night, fortunately, and fine weather. \nWhen I had recovered my breath, and had got rid of a stifling\nsensation in my throat, I rose up and went on.  In the midst of my\ndistress, I had no notion of going back.  I doubt if I should have\nhad any, though there had been a Swiss snow-drift in the Kent Road.\n\nBut my standing possessed of only three-halfpence in the world (and\nI am sure I wonder how they came to be left in my pocket on a\nSaturday night!) troubled me none the less because I went on.  I\nbegan to picture to myself, as a scrap of newspaper intelligence,\nmy being found dead in a day or two, under some hedge; and I\ntrudged on miserably, though as fast as I could, until I happened\nto pass a little shop, where it was written up that ladies' and\ngentlemen's wardrobes were bought, and that the best price was\ngiven for rags, bones, and kitchen-stuff.  The master of this shop\nwas sitting at the door in his shirt-sleeves, smoking; and as there\nwere a great many coats and pairs of trousers dangling from the low\nceiling, and only two feeble candles burning inside to show what\nthey were, I fancied that he looked like a man of a revengeful\ndisposition, who had hung all his enemies, and was enjoying\nhimself.\n\nMy late experiences with Mr. and Mrs. Micawber suggested to me that\nhere might be a means of keeping off the wolf for a little while. \nI went up the next by-street, took off my waistcoat, rolled it\nneatly under my arm, and came back to the shop door.\n\n'If you please, sir,' I said, 'I am to sell this for a fair price.'\n\nMr. Dolloby - Dolloby was the name over the shop door, at least -\ntook the waistcoat, stood his pipe on its head, against the\ndoor-post, went into the shop, followed by me, snuffed the two\ncandles with his fingers, spread the waistcoat on the counter, and\nlooked at it there, held it up against the light, and looked at it\nthere, and ultimately said:\n\n'What do you call a price, now, for this here little weskit?'\n\n'Oh! you know best, sir,' I returned modestly.\n\n'I can't be buyer and seller too,' said Mr. Dolloby.  'Put a price\non this here little weskit.'\n\n'Would eighteenpence be?'- I hinted, after some hesitation.\n\nMr. Dolloby rolled it up again, and gave it me back.  'I should rob\nmy family,' he said, 'if I was to offer ninepence for it.'\n\nThis was a disagreeable way of putting the business; because it\nimposed upon me, a perfect stranger, the unpleasantness of asking\nMr. Dolloby to rob his family on my account.  My circumstances\nbeing so very pressing, however, I said I would take ninepence for\nit, if he pleased.  Mr. Dolloby, not without some grumbling, gave\nninepence.  I wished him good night, and walked out of the shop the\nricher by that sum, and the poorer by a waistcoat.  But when I\nbuttoned my jacket, that was not much.\nIndeed, I foresaw pretty clearly that my jacket would go next, and\nthat I should have to make the best of my way to Dover in a shirt\nand a pair of trousers, and might deem myself lucky if I got there\neven in that trim.  But my mind did not run so much on this as\nmight be supposed.  Beyond a general impression of the distance\nbefore me, and of the young man with the donkey-cart having used me\ncruelly, I think I had no very urgent sense of my difficulties when\nI once again set off with my ninepence in my pocket.\n\nA plan had occurred to me for passing the night, which I was going\nto carry into execution.  This was, to lie behind the wall at the\nback of my old school, in a corner where there used to be a\nhaystack.  I imagined it would be a kind of company to have the\nboys, and the bedroom where I used to tell the stories, so near me:\nalthough the boys would know nothing of my being there, and the\nbedroom would yield me no shelter.\n\nI had had a hard day's work, and was pretty well jaded when I came\nclimbing out, at last, upon the level of Blackheath.  It cost me\nsome trouble to find out Salem House; but I found it, and I found\na haystack in the corner, and I lay down by it; having first walked\nround the wall, and looked up at the windows, and seen that all was\ndark and silent within.  Never shall I forget the lonely sensation\nof first lying down, without a roof above my head!\n\nSleep came upon me as it came on many other outcasts, against whom\nhouse-doors were locked, and house-dogs barked, that night - and I\ndreamed of lying on my old school-bed, talking to the boys in my\nroom; and found myself sitting upright, with Steerforth's name upon\nmy lips, looking wildly at the stars that were glistening and\nglimmering above me.  When I remembered where I was at that\nuntimely hour, a feeling stole upon me that made me get up, afraid\nof I don't know what, and walk about.  But the fainter glimmering\nof the stars, and the pale light in the sky where the day was\ncoming, reassured me: and my eyes being very heavy, I lay down\nagain and slept - though with a knowledge in my sleep that it was\ncold - until the warm beams of the sun, and the ringing of the\ngetting-up bell at Salem House, awoke me.  If I could have hoped\nthat Steerforth was there, I would have lurked about until he came\nout alone; but I knew he must have left long since.  Traddles still\nremained, perhaps, but it was very doubtful; and I had not\nsufficient confidence in his discretion or good luck, however\nstrong my reliance was on his good nature, to wish to trust him\nwith my situation.  So I crept away from the wall as Mr. Creakle's\nboys were getting up, and struck into the long dusty track which I\nhad first known to be the Dover Road when I was one of them, and\nwhen I little expected that any eyes would ever see me the wayfarer\nI was now, upon it.\n\nWhat a different Sunday morning from the old Sunday morning at\nYarmouth!  In due time I heard the church-bells ringing, as I\nplodded on; and I met people who were going to church; and I passed\na church or two where the congregation were inside, and the sound\nof singing came out into the sunshine, while the beadle sat and\ncooled himself in the shade of the porch, or stood beneath the\nyew-tree, with his hand to his forehead, glowering at me going by. \nBut the peace and rest of the old Sunday morning were on\neverything, except me.  That was the difference.  I felt quite\nwicked in my dirt and dust, with my tangled hair.  But for the\nquiet picture I had conjured up, of my mother in her youth and\nbeauty, weeping by the fire, and my aunt relenting to her, I hardly\nthink I should have had the courage to go on until next day.  But\nit always went before me, and I followed.\n\nI got, that Sunday, through three-and-twenty miles on the straight\nroad, though not very easily, for I was new to that kind of toil. \nI see myself, as evening closes in, coming over the bridge at\nRochester, footsore and tired, and eating bread that I had bought\nfor supper.  One or two little houses, with the notice, 'Lodgings\nfor Travellers', hanging out, had tempted me; but I was afraid of\nspending the few pence I had, and was even more afraid of the\nvicious looks of the trampers I had met or overtaken.  I sought no\nshelter, therefore, but the sky; and toiling into Chatham, - which,\nin that night's aspect, is a mere dream of chalk, and drawbridges,\nand mastless ships in a muddy river, roofed like Noah's arks, -\ncrept, at last, upon a sort of grass-grown battery overhanging a\nlane, where a sentry was walking to and fro.  Here I lay down, near\na cannon; and, happy in the society of the sentry's footsteps,\nthough he knew no more of my being above him than the boys at Salem\nHouse had known of my lying by the wall, slept soundly until\nmorning.\n\nVery stiff and sore of foot I was in the morning, and quite dazed\nby the beating of drums and marching of troops, which seemed to hem\nme in on every side when I went down towards the long narrow\nstreet.  Feeling that I could go but a very little way that day, if\nI were to reserve any strength for getting to my journey's end, I\nresolved to make the sale of my jacket its principal business. \nAccordingly, I took the jacket off, that I might learn to do\nwithout it; and carrying it under my arm, began a tour of\ninspection of the various slop-shops.\n\nIt was a likely place to sell a jacket in; for the dealers in\nsecond-hand clothes were numerous, and were, generally speaking, on\nthe look-out for customers at their shop doors.  But as most of\nthem had, hanging up among their stock, an officer's coat or two,\nepaulettes and all, I was rendered timid by the costly nature of\ntheir dealings, and walked about for a long time without offering\nmy merchandise to anyone.\n\nThis modesty of mine directed my attention to the marine-store\nshops, and such shops as Mr. Dolloby's, in preference to the\nregular dealers.  At last I found one that I thought looked\npromising, at the corner of a dirty lane, ending in an enclosure\nfull of stinging-nettles, against the palings of which some\nsecond-hand sailors' clothes, that seemed to have overflowed the\nshop, were fluttering among some cots, and rusty guns, and oilskin\nhats, and certain trays full of so many old rusty keys of so many\nsizes that they seemed various enough to open all the doors in the\nworld.\n\nInto this shop, which was low and small, and which was darkened\nrather than lighted by a little window, overhung with clothes, and\nwas descended into by some steps, I went with a palpitating heart;\nwhich was not relieved when an ugly old man, with the lower part of\nhis face all covered with a stubbly grey beard, rushed out of a\ndirty den behind it, and seized me by the hair of my head.  He was\na dreadful old man to look at, in a filthy flannel waistcoat, and\nsmelling terribly of rum.  His bedstead, covered with a tumbled and\nragged piece of patchwork, was in the den he had come from, where\nanother little window showed a prospect of more stinging-nettles,\nand a lame donkey.\n\n'Oh, what do you want?' grinned this old man, in a fierce,\nmonotonous whine.  'Oh, my eyes and limbs, what do you want?  Oh,\nmy lungs and liver, what do you want?  Oh, goroo, goroo!'\n\nI was so much dismayed by these words, and particularly by the\nrepetition of the last unknown one, which was a kind of rattle in\nhis throat, that I could make no answer; hereupon the old man,\nstill holding me by the hair, repeated:\n\n'Oh, what do you want?  Oh, my eyes and limbs, what do you want? \nOh, my lungs and liver, what do you want?  Oh, goroo!' - which he\nscrewed out of himself, with an energy that made his eyes start in\nhis head.\n\n'I wanted to know,' I said, trembling, 'if you would buy a jacket.'\n\n'Oh, let's see the jacket!' cried the old man.  'Oh, my heart on\nfire, show the jacket to us!  Oh, my eyes and limbs, bring the\njacket out!'\n\nWith that he took his trembling hands, which were like the claws of\na great bird, out of my hair; and put on a pair of spectacles, not\nat all ornamental to his inflamed eyes.\n\n'Oh, how much for the jacket?' cried the old man, after examining\nit.  'Oh - goroo! - how much for the jacket?'\n\n'Half-a-crown,' I answered, recovering myself.\n\n'Oh, my lungs and liver,' cried the old man, 'no!  Oh, my eyes, no! \nOh, my limbs, no!  Eighteenpence.  Goroo!'\n\nEvery time he uttered this ejaculation, his eyes seemed to be in\ndanger of starting out; and every sentence he spoke, he delivered\nin a sort of tune, always exactly the same, and more like a gust of\nwind, which begins low, mounts up high, and falls again, than any\nother comparison I can find for it.\n\n'Well,' said I, glad to have closed the bargain, 'I'll take\neighteenpence.'\n\n'Oh, my liver!' cried the old man, throwing the jacket on a shelf. \n'Get out of the shop!  Oh, my lungs, get out of the shop!  Oh, my\neyes and limbs - goroo! - don't ask for money; make it an\nexchange.'  I never was so frightened in my life, before or since;\nbut I told him humbly that I wanted money, and that nothing else\nwas of any use to me, but that I would wait for it, as he desired,\noutside, and had no wish to hurry him.  So I went outside, and sat\ndown in the shade in a corner.  And I sat there so many hours, that\nthe shade became sunlight, and the sunlight became shade again, and\nstill I sat there waiting for the money.\n\nThere never was such another drunken madman in that line of\nbusiness, I hope.  That he was well known in the neighbourhood, and\nenjoyed the reputation of having sold himself to the devil, I soon\nunderstood from the visits he received from the boys, who\ncontinually came skirmishing about the shop, shouting that legend,\nand calling to him to bring out his gold.  'You ain't poor, you\nknow, Charley, as you pretend.  Bring out your gold.  Bring out\nsome of the gold you sold yourself to the devil for.  Come!  It's\nin the lining of the mattress, Charley.  Rip it open and let's have\nsome!'  This, and many offers to lend him a knife for the purpose,\nexasperated him to such a degree, that the whole day was a\nsuccession of rushes on his part, and flights on the part of the\nboys.  Sometimes in his rage he would take me for one of them, and\ncome at me, mouthing as if he were going to tear me in pieces;\nthen, remembering me, just in time, would dive into the shop, and\nlie upon his bed, as I thought from the sound of his voice, yelling\nin a frantic way, to his own windy tune, the 'Death of Nelson';\nwith an Oh! before every line, and innumerable Goroos interspersed. \nAs if this were not bad enough for me, the boys, connecting me with\nthe establishment, on account of the patience and perseverance with\nwhich I sat outside, half-dressed, pelted me, and used me very ill\nall day.\n\nHe made many attempts to induce me to consent to an exchange; at\none time coming out with a fishing-rod, at another with a fiddle,\nat another with a cocked hat, at another with a flute.  But I\nresisted all these overtures, and sat there in desperation; each\ntime asking him, with tears in my eyes, for my money or my jacket. \nAt last he began to pay me in halfpence at a time; and was full two\nhours getting by easy stages to a shilling.\n\n'Oh, my eyes and limbs!' he then cried, peeping hideously out of\nthe shop, after a long pause, 'will you go for twopence more?'\n\n'I can't,' I said; 'I shall be starved.'\n\n'Oh, my lungs and liver, will you go for threepence?'\n\n'I would go for nothing, if I could,' I said, 'but I want the money\nbadly.'\n\n'Oh, go-roo!' (it is really impossible to express how he twisted\nthis ejaculation out of himself, as he peeped round the door-post\nat me, showing nothing but his crafty old head); 'will you go for\nfourpence?'\n\nI was so faint and weary that I closed with this offer; and taking\nthe money out of his claw, not without trembling, went away more\nhungry and thirsty than I had ever been, a little before sunset. \nBut at an expense of threepence I soon refreshed myself completely;\nand, being in better spirits then, limped seven miles upon my road.\n\nMy bed at night was under another haystack, where I rested\ncomfortably, after having washed my blistered feet in a stream, and\ndressed them as well as I was able, with some cool leaves.  When I\ntook the road again next morning, I found that it lay through a\nsuccession of hop-grounds and orchards.  It was sufficiently late\nin the year for the orchards to be ruddy with ripe apples; and in\na few places the hop-pickers were already at work.  I thought it\nall extremely beautiful, and made up my mind to sleep among the\nhops that night: imagining some cheerful companionship in the long\nperspectives of poles, with the graceful leaves twining round them.\n\nThe trampers were worse than ever that day, and inspired me with a\ndread that is yet quite fresh in my mind.  Some of them were most\nferocious-looking ruffians, who stared at me as I went by; and\nstopped, perhaps, and called after me to come back and speak to\nthem, and when I took to my heels, stoned me.  I recollect one\nyoung fellow - a tinker, I suppose, from his wallet and brazier -\nwho had a woman with him, and who faced about and stared at me\nthus; and then roared to me in such a tremendous voice to come\nback, that I halted and looked round.\n\n'Come here, when you're called,' said the tinker, 'or I'll rip your\nyoung body open.'\n\nI thought it best to go back.  As I drew nearer to them, trying to\npropitiate the tinker by my looks, I observed that the woman had a\nblack eye.\n\n'Where are you going?' said the tinker, gripping the bosom of my\nshirt with his blackened hand.\n\n'I am going to Dover,' I said.\n\n'Where do you come from?' asked the tinker, giving his hand another\nturn in my shirt, to hold me more securely.\n\n'I come from London,' I said.\n\n'What lay are you upon?' asked the tinker.  'Are you a prig?'\n\n'N-no,' I said.\n\n'Ain't you, by G--?  If you make a brag of your honesty to me,'\nsaid the tinker, 'I'll knock your brains out.'\n\nWith his disengaged hand he made a menace of striking me, and then\nlooked at me from head to foot.\n\n'Have you got the price of a pint of beer about you?' said the\ntinker.  'If you have, out with it, afore I take it away!'\n\nI should certainly have produced it, but that I met the woman's\nlook, and saw her very slightly shake her head, and form 'No!' with\nher lips.\n\n'I am very poor,' I said, attempting to smile, 'and have got no\nmoney.'\n\n'Why, what do you mean?' said the tinker, looking so sternly at me,\nthat I almost feared he saw the money in my pocket.\n\n'Sir!' I stammered.\n\n'What do you mean,' said the tinker, 'by wearing my brother's silk\nhandkerchief!  Give it over here!'  And he had mine off my neck in\na moment, and tossed it to the woman.\n\nThe woman burst into a fit of laughter, as if she thought this a\njoke, and tossed it back to me, nodded once, as slightly as before,\nand made the word 'Go!' with her lips.  Before I could obey,\nhowever, the tinker seized the handkerchief out of my hand with a\nroughness that threw me away like a feather, and putting it loosely\nround his own neck, turned upon the woman with an oath, and knocked\nher down.  I never shall forget seeing her fall backward on the\nhard road, and lie there with her bonnet tumbled off, and her hair\nall whitened in the dust; nor, when I looked back from a distance,\nseeing her sitting on the pathway, which was a bank by the\nroadside, wiping the blood from her face with a corner of her\nshawl, while he went on ahead.\n\nThis adventure frightened me so, that, afterwards, when I saw any\nof these people coming, I turned back until I could find a\nhiding-place, where I remained until they had gone out of sight;\nwhich happened so often, that I was very seriously delayed.  But\nunder this difficulty, as under all the other difficulties of my\njourney, I seemed to be sustained and led on by my fanciful picture\nof my mother in her youth, before I came into the world.  It always\nkept me company.  It was there, among the hops, when I lay down to\nsleep; it was with me on my waking in the morning; it went before\nme all day.  I have associated it, ever since, with the sunny\nstreet of Canterbury, dozing as it were in the hot light; and with\nthe sight of its old houses and gateways, and the stately, grey\nCathedral, with the rooks sailing round the towers.  When I came,\nat last, upon the bare, wide downs near Dover, it relieved the\nsolitary aspect of the scene with hope; and not until I reached\nthat first great aim of my journey, and actually set foot in the\ntown itself, on the sixth day of my flight, did it desert me.  But\nthen, strange to say, when I stood with my ragged shoes, and my\ndusty, sunburnt, half-clothed figure, in the place so long desired,\nit seemed to vanish like a dream, and to leave me helpless and\ndispirited.\n\nI inquired about my aunt among the boatmen first, and received\nvarious answers.  One said she lived in the South Foreland Light,\nand had singed her whiskers by doing so; another, that she was made\nfast to the great buoy outside the harbour, and could only be\nvisited at half-tide; a third, that she was locked up in Maidstone\njail for child-stealing; a fourth, that she was seen to mount a\nbroom in the last high wind, and make direct for Calais.  The\nfly-drivers, among whom I inquired next, were equally jocose and\nequally disrespectful; and the shopkeepers, not liking my\nappearance, generally replied, without hearing what I had to say,\nthat they had got nothing for me.  I felt more miserable and\ndestitute than I had done at any period of my running away.  My\nmoney was all gone, I had nothing left to dispose of; I was hungry,\nthirsty, and worn out; and seemed as distant from my end as if I\nhad remained in London.\n\nThe morning had worn away in these inquiries, and I was sitting on\nthe step of an empty shop at a street corner, near the\nmarket-place, deliberating upon wandering towards those other\nplaces which had been mentioned, when a fly-driver, coming by with\nhis carriage, dropped a horsecloth.  Something good-natured in the\nman's face, as I handed it up, encouraged me to ask him if he could\ntell me where Miss Trotwood lived; though I had asked the question\nso often, that it almost died upon my lips.\n\n'Trotwood,' said he.  'Let me see.  I know the name, too.  Old\nlady?'\n\n'Yes,' I said, 'rather.'\n\n'Pretty stiff in the back?' said he, making himself upright.\n\n'Yes,' I said.  'I should think it very likely.'\n\n'Carries a bag?' said he - 'bag with a good deal of room in it - is\ngruffish, and comes down upon you, sharp?'\n\nMy heart sank within me as I acknowledged the undoubted accuracy of\nthis description.\n\n'Why then, I tell you what,' said he.  'If you go up there,'\npointing with his whip towards the heights, 'and keep right on till\nyou come to some houses facing the sea, I think you'll hear of her. \nMy opinion is she won't stand anything, so here's a penny for you.'\n\nI accepted the gift thankfully, and bought a loaf with it. \nDispatching this refreshment by the way, I went in the direction my\nfriend had indicated, and walked on a good distance without coming\nto the houses he had mentioned.  At length I saw some before me;\nand approaching them, went into a little shop (it was what we used\nto call a general shop, at home), and inquired if they could have\nthe goodness to tell me where Miss Trotwood lived.  I addressed\nmyself to a man behind the counter, who was weighing some rice for\na young woman; but the latter, taking the inquiry to herself,\nturned round quickly.\n\n'My mistress?' she said.  'What do you want with her, boy?'\n\n'I want,' I replied, 'to speak to her, if you please.'\n\n'To beg of her, you mean,' retorted the damsel.\n\n'No,' I said, 'indeed.'  But suddenly remembering that in truth I\ncame for no other purpose, I held my peace in confusion, and felt\nmy face burn.\n\nMY aunt's handmaid, as I supposed she was from what she had said,\nput her rice in a little basket and walked out of the shop; telling\nme that I could follow her, if I wanted to know where Miss Trotwood\nlived.  I needed no second permission; though I was by this time in\nsuch a state of consternation and agitation, that my legs shook\nunder me.  I followed the young woman, and we soon came to a very\nneat little cottage with cheerful bow-windows: in front of it, a\nsmall square gravelled court or garden full of flowers, carefully\ntended, and smelling deliciously.\n\n'This is Miss Trotwood's,' said the young woman.  'Now you know;\nand that's all I have got to say.'  With which words she hurried\ninto the house, as if to shake off the responsibility of my\nappearance; and left me standing at the garden-gate, looking\ndisconsolately over the top of it towards the parlour window, where\na muslin curtain partly undrawn in the middle, a large round green\nscreen or fan fastened on to the windowsill, a small table, and a\ngreat chair, suggested to me that my aunt might be at that moment\nseated in awful state.\n\nMy shoes were by this time in a woeful condition.  The soles had\nshed themselves bit by bit, and the upper leathers had broken and\nburst until the very shape and form of shoes had departed from\nthem.  My hat (which had served me for a night-cap, too) was so\ncrushed and bent, that no old battered handleless saucepan on a\ndunghill need have been ashamed to vie with it.  My shirt and\ntrousers, stained with heat, dew, grass, and the Kentish soil on\nwhich I had slept - and torn besides - might have frightened the\nbirds from my aunt's garden, as I stood at the gate.  My hair had\nknown no comb or brush since I left London.  My face, neck, and\nhands, from unaccustomed exposure to the air and sun, were burnt to\na berry-brown.  From head to foot I was powdered almost as white\nwith chalk and dust, as if I had come out of a lime-kiln.  In this\nplight, and with a strong consciousness of it, I waited to\nintroduce myself to, and make my first impression on, my formidable\naunt.\n\nThe unbroken stillness of the parlour window leading me to infer,\nafter a while, that she was not there, I lifted up my eyes to the\nwindow above it, where I saw a florid, pleasant-looking gentleman,\nwith a grey head, who shut up one eye in a grotesque manner, nodded\nhis head at me several times, shook it at me as often, laughed, and\nwent away.\n\nI had been discomposed enough before; but I was so much the more\ndiscomposed by this unexpected behaviour, that I was on the point\nof slinking off, to think how I had best proceed, when there came\nout of the house a lady with her handkerchief tied over her cap,\nand a pair of gardening gloves on her hands, wearing a gardening\npocket like a toll-man's apron, and carrying a great knife.  I knew\nher immediately to be Miss Betsey, for she came stalking out of the\nhouse exactly as my poor mother had so often described her stalking\nup our garden at Blunderstone Rookery.\n\n'Go away!' said Miss Betsey, shaking her head, and making a distant\nchop in the air with her knife.  'Go along!  No boys here!'\n\nI watched her, with my heart at my lips, as she marched to a corner\nof her garden, and stooped to dig up some little root there.  Then,\nwithout a scrap of courage, but with a great deal of desperation,\nI went softly in and stood beside her, touching her with my finger.\n\n'If you please, ma'am,' I began.\n\nShe started and looked up.\n\n'If you please, aunt.'\n\n'EH?' exclaimed Miss Betsey, in a tone of amazement I have never\nheard approached.\n\n'If you please, aunt, I am your nephew.'\n\n'Oh, Lord!' said my aunt.  And sat flat down in the garden-path.\n\n'I am David Copperfield, of Blunderstone, in Suffolk - where you\ncame, on the night when I was born, and saw my dear mama.  I have\nbeen very unhappy since she died.  I have been slighted, and taught\nnothing, and thrown upon myself, and put to work not fit for me. \nIt made me run away to you.  I was robbed at first setting out, and\nhave walked all the way, and have never slept in a bed since I\nbegan the journey.'  Here my self-support gave way all at once; and\nwith a movement of my hands, intended to show her my ragged state,\nand call it to witness that I had suffered something, I broke into\na passion of crying, which I suppose had been pent up within me all\nthe week.\n\nMy aunt, with every sort of expression but wonder discharged from\nher countenance, sat on the gravel, staring at me, until I began to\ncry; when she got up in a great hurry, collared me, and took me\ninto the parlour.  Her first proceeding there was to unlock a tall\npress, bring out several bottles, and pour some of the contents of\neach into my mouth.  I think they must have been taken out at\nrandom, for I am sure I tasted aniseed water, anchovy sauce, and\nsalad dressing.  When she had administered these restoratives, as\nI was still quite hysterical, and unable to control my sobs, she\nput me on the sofa, with a shawl under my head, and the\nhandkerchief from her own head under my feet, lest I should sully\nthe cover; and then, sitting herself down behind the green fan or\nscreen I have already mentioned, so that I could not see her face,\nejaculated at intervals, 'Mercy on us!' letting those exclamations\noff like minute guns.\n\nAfter a time she rang the bell.  'Janet,' said my aunt, when her\nservant came in.  'Go upstairs, give my compliments to Mr. Dick,\nand say I wish to speak to him.'\n\nJanet looked a little surprised to see me lying stiffly on the sofa\n(I was afraid to move lest it should be displeasing to my aunt),\nbut went on her errand.  My aunt, with her hands behind her, walked\nup and down the room, until the gentleman who had squinted at me\nfrom the upper window came in laughing.\n\n'Mr. Dick,' said my aunt, 'don't be a fool, because nobody can be\nmore discreet than you can, when you choose.  We all know that.  So\ndon't be a fool, whatever you are.'\n\nThe gentleman was serious immediately, and looked at me, I thought,\nas if he would entreat me to say nothing about the window.\n\n'Mr. Dick,' said my aunt, 'you have heard me mention David\nCopperfield?  Now don't pretend not to have a memory, because you\nand I know better.'\n\n'David Copperfield?' said Mr. Dick, who did not appear to me to\nremember much about it.  'David Copperfield?  Oh yes, to be sure. \nDavid, certainly.'\n\n'Well,' said my aunt, 'this is his boy - his son.  He would be as\nlike his father as it's possible to be, if he was not so like his\nmother, too.'\n\n'His son?' said Mr. Dick.  'David's son?  Indeed!'\n\n'Yes,' pursued my aunt, 'and he has done a pretty piece of\nbusiness.  He has run away.  Ah!  His sister, Betsey Trotwood,\nnever would have run away.'  My aunt shook her head firmly,\nconfident in the character and behaviour of the girl who never was\nborn.\n\n'Oh! you think she wouldn't have run away?' said Mr. Dick.\n\n'Bless and save the man,' exclaimed my aunt, sharply, 'how he\ntalks!  Don't I know she wouldn't?  She would have lived with her\ngod-mother, and we should have been devoted to one another.  Where,\nin the name of wonder, should his sister, Betsey Trotwood, have run\nfrom, or to?'\n\n'Nowhere,' said Mr. Dick.\n\n'Well then,' returned my aunt, softened by the reply, 'how can you\npretend to be wool-gathering, Dick, when you are as sharp as a\nsurgeon's lancet?  Now, here you see young David Copperfield, and\nthe question I put to you is, what shall I do with him?'\n\n'What shall you do with him?' said Mr. Dick, feebly, scratching his\nhead.  'Oh! do with him?'\n\n'Yes,' said my aunt, with a grave look, and her forefinger held up. \n'Come!  I want some very sound advice.'\n\n'Why, if I was you,' said Mr. Dick, considering, and looking\nvacantly at me, 'I should -' The contemplation of me seemed to\ninspire him with a sudden idea, and he added, briskly, 'I should\nwash him!'\n\n'Janet,' said my aunt, turning round with a quiet triumph, which I\ndid not then understand, 'Mr. Dick sets us all right.  Heat the\nbath!'\n\nAlthough I was deeply interested in this dialogue, I could not help\nobserving my aunt, Mr. Dick, and Janet, while it was in progress,\nand completing a survey I had already been engaged in making of the\nroom.\n\nMY aunt was a tall, hard-featured lady, but by no means\nill-looking.  There was an inflexibility in her face, in her voice,\nin her gait and carriage, amply sufficient to account for the\neffect she had made upon a gentle creature like my mother; but her\nfeatures were rather handsome than otherwise, though unbending and\naustere.  I particularly noticed that she had a very quick, bright\neye.  Her hair, which was grey, was arranged in two plain\ndivisions, under what I believe would be called a mob-cap; I mean\na cap, much more common then than now, with side-pieces fastening\nunder the chin.  Her dress was of a lavender colour, and perfectly\nneat; but scantily made, as if she desired to be as little\nencumbered as possible.  I remember that I thought it, in form,\nmore like a riding-habit with the superfluous skirt cut off, than\nanything else.  She wore at her side a gentleman's gold watch, if\nI might judge from its size and make, with an appropriate chain and\nseals; she had some linen at her throat not unlike a shirt-collar,\nand things at her wrists like little shirt-wristbands.\n\nMr. Dick, as I have already said, was grey-headed, and florid: I\nshould have said all about him, in saying so, had not his head been\ncuriously bowed - not by age; it reminded me of one of Mr.\nCreakle's boys' heads after a beating - and his grey eyes prominent\nand large, with a strange kind of watery brightness in them that\nmade me, in combination with his vacant manner, his submission to\nmy aunt, and his childish delight when she praised him, suspect him\nof being a little mad; though, if he were mad, how he came to be\nthere puzzled me extremely.  He was dressed like any other ordinary\ngentleman, in a loose grey morning coat and waistcoat, and white\ntrousers; and had his watch in his fob, and his money in his\npockets: which he rattled as if he were very proud of it.\n\nJanet was a pretty blooming girl, of about nineteen or twenty, and\na perfect picture of neatness.  Though I made no further\nobservation of her at the moment, I may mention here what I did not\ndiscover until afterwards, namely, that she was one of a series of\nprotegees whom my aunt had taken into her service expressly to\neducate in a renouncement of mankind, and who had generally\ncompleted their abjuration by marrying the baker.\n\nThe room was as neat as Janet or my aunt.  As I laid down my pen,\na moment since, to think of it, the air from the sea came blowing\nin again, mixed with the perfume of the flowers; and I saw the\nold-fashioned furniture brightly rubbed and polished, my aunt's\ninviolable chair and table by the round green fan in the\nbow-window, the drugget-covered carpet, the cat, the kettle-holder,\nthe two canaries, the old china, the punchbowl full of dried\nrose-leaves, the tall press guarding all sorts of bottles and pots,\nand, wonderfully out of keeping with the rest, my dusty self upon\nthe sofa, taking note of everything.\n\nJanet had gone away to get the bath ready, when my aunt, to my\ngreat alarm, became in one moment rigid with indignation, and had\nhardly voice to cry out, 'Janet!  Donkeys!'\n\nUpon which, Janet came running up the stairs as if the house were\nin flames, darted out on a little piece of green in front, and\nwarned off two saddle-donkeys, lady-ridden, that had presumed to\nset hoof upon it; while my aunt, rushing out of the house, seized\nthe bridle of a third animal laden with a bestriding child, turned\nhim, led him forth from those sacred precincts, and boxed the ears\nof the unlucky urchin in attendance who had dared to profane that\nhallowed ground.\n\nTo this hour I don't know whether my aunt had any lawful right of\nway over that patch of green; but she had settled it in her own\nmind that she had, and it was all the same to her.  The one great\noutrage of her life, demanding to be constantly avenged, was the\npassage of a donkey over that immaculate spot.  In whatever\noccupation she was engaged, however interesting to her the\nconversation in which she was taking part, a donkey turned the\ncurrent of her ideas in a moment, and she was upon him straight. \nJugs of water, and watering-pots, were kept in secret places ready\nto be discharged on the offending boys; sticks were laid in ambush\nbehind the door; sallies were made at all hours; and incessant war\nprevailed.  Perhaps this was an agreeable excitement to the\ndonkey-boys; or perhaps the more sagacious of the donkeys,\nunderstanding how the case stood, delighted with constitutional\nobstinacy in coming that way.  I only know that there were three\nalarms before the bath was ready; and that on the occasion of the\nlast and most desperate of all, I saw my aunt engage,\nsingle-handed, with a sandy-headed lad of fifteen, and bump his\nsandy head against her own gate, before he seemed to comprehend\nwhat was the matter.  These interruptions were of the more\nridiculous to me, because she was giving me broth out of a\ntable-spoon at the time (having firmly persuaded herself that I was\nactually starving, and must receive nourishment at first in very\nsmall quantities), and, while my mouth was yet open to receive the\nspoon, she would put it back into the basin, cry 'Janet!  Donkeys!'\nand go out to the assault.\n\nThe bath was a great comfort.  For I began to be sensible of acute\npains in my limbs from lying out in the fields, and was now so\ntired and low that I could hardly keep myself awake for five\nminutes together.  When I had bathed, they (I mean my aunt and\nJanet) enrobed me in a shirt and a pair of trousers belonging to\nMr. Dick, and tied me up in two or three great shawls.  What sort\nof bundle I looked like, I don't know, but I felt a very hot one. \nFeeling also very faint and drowsy, I soon lay down on the sofa\nagain and fell asleep.\n\nIt might have been a dream, originating in the fancy which had\noccupied my mind so long, but I awoke with the impression that my\naunt had come and bent over me, and had put my hair away from my\nface, and laid my head more comfortably, and had then stood looking\nat me.  The words, 'Pretty fellow,' or 'Poor fellow,' seemed to be\nin my ears, too; but certainly there was nothing else, when I\nawoke, to lead me to believe that they had been uttered by my aunt,\nwho sat in the bow-window gazing at the sea from behind the green\nfan, which was mounted on a kind of swivel, and turned any way.\n\nWe dined soon after I awoke, off a roast fowl and a pudding; I\nsitting at table, not unlike a trussed bird myself, and moving my\narms with considerable difficulty.  But as my aunt had swathed me\nup, I made no complaint of being inconvenienced.  All this time I\nwas deeply anxious to know what she was going to do with me; but\nshe took her dinner in profound silence, except when she\noccasionally fixed her eyes on me sitting opposite, and said,\n'Mercy upon us!' which did not by any means relieve my anxiety.\n\nThe cloth being drawn, and some sherry put upon the table (of which\nI had a glass), my aunt sent up for Mr. Dick again, who joined us,\nand looked as wise as he could when she requested him to attend to\nmy story, which she elicited from me, gradually, by a course of\nquestions.  During my recital, she kept her eyes on Mr. Dick, who\nI thought would have gone to sleep but for that, and who,\nwhensoever he lapsed into a smile, was checked by a frown from my\naunt.\n\n'Whatever possessed that poor unfortunate Baby, that she must go\nand be married again,' said my aunt, when I had finished, 'I can't\nconceive.'\n\n'Perhaps she fell in love with her second husband,' Mr. Dick\nsuggested.\n\n'Fell in love!' repeated my aunt.  'What do you mean?  What\nbusiness had she to do it?'\n\n'Perhaps,' Mr. Dick simpered, after thinking a little, 'she did it\nfor pleasure.'\n\n'Pleasure, indeed!' replied my aunt.  'A mighty pleasure for the\npoor Baby to fix her simple faith upon any dog of a fellow, certain\nto ill-use her in some way or other.  What did she propose to\nherself, I should like to know!  She had had one husband.  She had\nseen David Copperfield out of the world, who was always running\nafter wax dolls from his cradle.  She had got a baby - oh, there\nwere a pair of babies when she gave birth to this child sitting\nhere, that Friday night! - and what more did she want?'\n\nMr. Dick secretly shook his head at me, as if he thought there was\nno getting over this.\n\n'She couldn't even have a baby like anybody else,' said my aunt. \n'Where was this child's sister, Betsey Trotwood?  Not forthcoming. \nDon't tell me!'\n\nMr. Dick seemed quite frightened.\n\n'That little man of a doctor, with his head on one side,' said my\naunt, 'Jellips, or whatever his name was, what was he about?  All\nhe could do, was to say to me, like a robin redbreast - as he is -\n\"It's a boy.\"  A boy!  Yah, the imbecility of the whole set of\n'em!'\n\nThe heartiness of the ejaculation startled Mr. Dick exceedingly;\nand me, too, if I am to tell the truth.\n\n'And then, as if this was not enough, and she had not stood\nsufficiently in the light of this child's sister, Betsey Trotwood,'\nsaid my aunt, 'she marries a second time - goes and marries a\nMurderer - or a man with a name like it - and stands in THIS\nchild's light!  And the natural consequence is, as anybody but a\nbaby might have foreseen, that he prowls and wanders.  He's as like\nCain before he was grown up, as he can be.'\n\nMr. Dick looked hard at me, as if to identify me in this character.\n\n'And then there's that woman with the Pagan name,' said my aunt,\n'that Peggotty, she goes and gets married next.  Because she has\nnot seen enough of the evil attending such things, she goes and\ngets married next, as the child relates.  I only hope,' said my\naunt, shaking her head, 'that her husband is one of those Poker\nhusbands who abound in the newspapers, and will beat her well with\none.'\n\nI could not bear to hear my old nurse so decried, and made the\nsubject of such a wish.  I told my aunt that indeed she was\nmistaken.  That Peggotty was the best, the truest, the most\nfaithful, most devoted, and most self-denying friend and servant in\nthe world; who had ever loved me dearly, who had ever loved my\nmother dearly; who had held my mother's dying head upon her arm, on\nwhose face my mother had imprinted her last grateful kiss.  And my\nremembrance of them both, choking me, I broke down as I was trying\nto say that her home was my home, and that all she had was mine,\nand that I would have gone to her for shelter, but for her humble\nstation, which made me fear that I might bring some trouble on her\n- I broke down, I say, as I was trying to say so, and laid my face\nin my hands upon the table.\n\n'Well, well!' said my aunt, 'the child is right to stand by those\nwho have stood by him - Janet!  Donkeys!'\n\nI thoroughly believe that but for those unfortunate donkeys, we\nshould have come to a good understanding; for my aunt had laid her\nhand on my shoulder, and the impulse was upon me, thus emboldened,\nto embrace her and beseech her protection.  But the interruption,\nand the disorder she was thrown into by the struggle outside, put\nan end to all softer ideas for the present, and kept my aunt\nindignantly declaiming to Mr. Dick about her determination to\nappeal for redress to the laws of her country, and to bring actions\nfor trespass against the whole donkey proprietorship of Dover,\nuntil tea-time.\n\nAfter tea, we sat at the window - on the look-out, as I imagined,\nfrom my aunt's sharp expression of face, for more invaders - until\ndusk, when Janet set candles, and a backgammon-board, on the table,\nand pulled down the blinds.\n\n'Now, Mr. Dick,' said my aunt, with her grave look, and her\nforefinger up as before, 'I am going to ask you another question. \nLook at this child.'\n\n'David's son?' said Mr. Dick, with an attentive, puzzled face.\n\n'Exactly so,' returned my aunt.  'What would you do with him, now?'\n\n'Do with David's son?' said Mr. Dick.\n\n'Ay,' replied my aunt, 'with David's son.'\n\n'Oh!' said Mr. Dick.  'Yes.  Do with - I should put him to bed.'\n\n'Janet!' cried my aunt, with the same complacent triumph that I had\nremarked before.  'Mr. Dick sets us all right.  If the bed is\nready, we'll take him up to it.'\n\nJanet reporting it to be quite ready, I was taken up to it; kindly,\nbut in some sort like a prisoner; my aunt going in front and Janet\nbringing up the rear.  The only circumstance which gave me any new\nhope, was my aunt's stopping on the stairs to inquire about a smell\nof fire that was prevalent there; and janet's replying that she had\nbeen making tinder down in the kitchen, of my old shirt.  But there\nwere no other clothes in my room than the odd heap of things I\nwore; and when I was left there, with a little taper which my aunt\nforewarned me would burn exactly five minutes, I heard them lock my\ndoor on the outside.  Turning these things over in my mind I deemed\nit possible that my aunt, who could know nothing of me, might\nsuspect I had a habit of running away, and took precautions, on\nthat account, to have me in safe keeping.\n\nThe room was a pleasant one, at the top of the house, overlooking\nthe sea, on which the moon was shining brilliantly.  After I had\nsaid my prayers, and the candle had burnt out, I remember how I\nstill sat looking at the moonlight on the water, as if I could hope\nto read my fortune in it, as in a bright book; or to see my mother\nwith her child, coming from Heaven, along that shining path, to\nlook upon me as she had looked when I last saw her sweet face.  I\nremember how the solemn feeling with which at length I turned my\neyes away, yielded to the sensation of gratitude and rest which the\nsight of the white-curtained bed - and how much more the lying\nsoftly down upon it, nestling in the snow-white sheets! - inspired. \nI remember how I thought of all the solitary places under the night\nsky where I had slept, and how I prayed that I never might be\nhouseless any more, and never might forget the houseless.  I\nremember how I seemed to float, then, down the melancholy glory of\nthat track upon the sea, away into the world of dreams.\n\n\n\nCHAPTER 14\nMY AUNT MAKES UP HER MIND ABOUT ME\n\n\nOn going down in the morning, I found my aunt musing so profoundly\nover the breakfast table, with her elbow on the tray, that the\ncontents of the urn had overflowed the teapot and were laying the\nwhole table-cloth under water, when my entrance put her meditations\nto flight.  I felt sure that I had been the subject of her\nreflections, and was more than ever anxious to know her intentions\ntowards me.  Yet I dared not express my anxiety, lest it should\ngive her offence.\n\nMy eyes, however, not being so much under control as my tongue,\nwere attracted towards my aunt very often during breakfast.  I\nnever could look at her for a few moments together but I found her\nlooking at me - in an odd thoughtful manner, as if I were an\nimmense way off, instead of being on the other side of the small\nround table.  When she had finished her breakfast, my aunt very\ndeliberately leaned back in her chair, knitted her brows, folded\nher arms, and contemplated me at her leisure, with such a fixedness\nof attention that I was quite overpowered by embarrassment.  Not\nhaving as yet finished my own breakfast, I attempted to hide my\nconfusion by proceeding with it; but my knife tumbled over my fork,\nmy fork tripped up my knife, I chipped bits of bacon a surprising\nheight into the air instead of cutting them for my own eating, and\nchoked myself with my tea, which persisted in going the wrong way\ninstead of the right one, until I gave in altogether, and sat\nblushing under my aunt's close scrutiny.\n\n'Hallo!' said my aunt, after a long time.\n\nI looked up, and met her sharp bright glance respectfully.\n\n'I have written to him,' said my aunt.\n\n'To -?'\n\n'To your father-in-law,' said my aunt.  'I have sent him a letter\nthat I'll trouble him to attend to, or he and I will fall out, I\ncan tell him!'\n\n'Does he know where I am, aunt?' I inquired, alarmed.\n\n'I have told him,' said my aunt, with a nod.\n\n'Shall I - be - given up to him?' I faltered.\n\n'I don't know,' said my aunt.  'We shall see.'\n\n'Oh! I can't think what I shall do,' I exclaimed, 'if I have to go\nback to Mr. Murdstone!'\n\n'I don't know anything about it,' said my aunt, shaking her head. \n'I can't say, I am sure.  We shall see.'\n\nMy spirits sank under these words, and I became very downcast and\nheavy of heart.  My aunt, without appearing to take much heed of\nme, put on a coarse apron with a bib, which she took out of the\npress; washed up the teacups with her own hands; and, when\neverything was washed and set in the tray again, and the cloth\nfolded and put on the top of the whole, rang for Janet to remove\nit.  She next swept up the crumbs with a little broom (putting on\na pair of gloves first), until there did not appear to be one\nmicroscopic speck left on the carpet; next dusted and arranged the\nroom, which was dusted and arranged to a hair'sbreadth already. \nWhen all these tasks were performed to her satisfaction, she took\noff the gloves and apron, folded them up, put them in the\nparticular corner of the press from which they had been taken,\nbrought out her work-box to her own table in the open window, and\nsat down, with the green fan between her and the light, to work.\n\n'I wish you'd go upstairs,' said my aunt, as she threaded her\nneedle, 'and give my compliments to Mr. Dick, and I'll be glad to\nknow how he gets on with his Memorial.'\n\nI rose with all alacrity, to acquit myself of this commission.\n\n'I suppose,' said my aunt, eyeing me as narrowly as she had eyed\nthe needle in threading it, 'you think Mr. Dick a short name, eh?'\n\n'I thought it was rather a short name, yesterday,' I confessed.\n\n'You are not to suppose that he hasn't got a longer name, if he\nchose to use it,' said my aunt, with a loftier air.  'Babley - Mr.\nRichard Babley - that's the gentleman's true name.'\n\nI was going to suggest, with a modest sense of my youth and the\nfamiliarity I had been already guilty of, that I had better give\nhim the full benefit of that name, when my aunt went on to say:\n\n'But don't you call him by it, whatever you do.  He can't bear his\nname.  That's a peculiarity of his.  Though I don't know that it's\nmuch of a peculiarity, either; for he has been ill-used enough, by\nsome that bear it, to have a mortal antipathy for it, Heaven knows. \nMr. Dick is his name here, and everywhere else, now - if he ever\nwent anywhere else, which he don't.  So take care, child, you don't\ncall him anything BUT Mr. Dick.'\n\nI promised to obey, and went upstairs with my message; thinking, as\nI went, that if Mr. Dick had been working at his Memorial long, at\nthe same rate as I had seen him working at it, through the open\ndoor, when I came down, he was probably getting on very well\nindeed.  I found him still driving at it with a long pen, and his\nhead almost laid upon the paper.  He was so intent upon it, that I\nhad ample leisure to observe the large paper kite in a corner, the\nconfusion of bundles of manuscript, the number of pens, and, above\nall, the quantity of ink (which he seemed to have in, in\nhalf-gallon jars by the dozen), before he observed my being\npresent.\n\n'Ha! Phoebus!' said Mr. Dick, laying down his pen.  'How does the\nworld go?  I'll tell you what,' he added, in a lower tone, 'I\nshouldn't wish it to be mentioned, but it's a -' here he beckoned\nto me, and put his lips close to my ear - 'it's a mad world.  Mad\nas Bedlam, boy!' said Mr. Dick, taking snuff from a round box on\nthe table, and laughing heartily.\n\nWithout presuming to give my opinion on this question, I delivered\nmy message.\n\n'Well,' said Mr. Dick, in answer, 'my compliments to her, and I -\nI believe I have made a start.  I think I have made a start,' said\nMr. Dick, passing his hand among his grey hair, and casting\nanything but a confident look at his manuscript.  'You have been to\nschool?'\n\n'Yes, sir,' I answered; 'for a short time.'\n\n'Do you recollect the date,' said Mr. Dick, looking earnestly at\nme, and taking up his pen to note it down, 'when King Charles the\nFirst had his head cut off?'\nI said I believed it happened in the year sixteen hundred and\nforty-nine.\n\n'Well,' returned Mr. Dick, scratching his ear with his pen, and\nlooking dubiously at me.  'So the books say; but I don't see how\nthat can be.  Because, if it was so long ago, how could the people\nabout him have made that mistake of putting some of the trouble out\nof his head, after it was taken off, into mine?'\n\nI was very much surprised by the inquiry; but could give no\ninformation on this point.\n\n'It's very strange,' said Mr. Dick, with a despondent look upon his\npapers, and with his hand among his hair again, 'that I never can\nget that quite right.  I never can make that perfectly clear.  But\nno matter, no matter!' he said cheerfully, and rousing himself,\n'there's time enough!  My compliments to Miss Trotwood, I am\ngetting on very well indeed.'\n\nI was going away, when he directed my attention to the kite.\n\n'What do you think of that for a kite?' he said.\n\nI answered that it was a beautiful one.  I should think it must\nhave been as much as seven feet high.\n\n'I made it.  We'll go and fly it, you and I,' said Mr. Dick.  'Do\nyou see this?'\n\nHe showed me that it was covered with manuscript, very closely and\nlaboriously written; but so plainly, that as I looked along the\nlines, I thought I saw some allusion to King Charles the First's\nhead again, in one or two places.\n\n'There's plenty of string,' said Mr. Dick, 'and when it flies high,\nit takes the facts a long way.  That's my manner of diffusing 'em. \nI don't know where they may come down.  It's according to\ncircumstances, and the wind, and so forth; but I take my chance of\nthat.'\n\nHis face was so very mild and pleasant, and had something so\nreverend in it, though it was hale and hearty, that I was not sure\nbut that he was having a good-humoured jest with me.  So I laughed,\nand he laughed, and we parted the best friends possible.\n\n'Well, child,' said my aunt, when I went downstairs.  'And what of\nMr. Dick, this morning?'\n\nI informed her that he sent his compliments, and was getting on\nvery well indeed.\n\n'What do you think of him?' said my aunt.\n\nI had some shadowy idea of endeavouring to evade the question, by\nreplying that I thought him a very nice gentleman; but my aunt was\nnot to be so put off, for she laid her work down in her lap, and\nsaid, folding her hands upon it:\n\n'Come!  Your sister Betsey Trotwood would have told me what she\nthought of anyone, directly.  Be as like your sister as you can,\nand speak out!'\n\n'Is he - is Mr. Dick - I ask because I don't know, aunt - is he at\nall out of his mind, then?' I stammered; for I felt I was on\ndangerous ground.\n\n'Not a morsel,' said my aunt.\n\n'Oh, indeed!' I observed faintly.\n\n'If there is anything in the world,' said my aunt, with great\ndecision and force of manner, 'that Mr. Dick is not, it's that.'\n\nI had nothing better to offer, than another timid, 'Oh, indeed!'\n\n'He has been CALLED mad,' said my aunt.  'I have a selfish pleasure\nin saying he has been called mad, or I should not have had the\nbenefit of his society and advice for these last ten years and\nupwards - in fact, ever since your sister, Betsey Trotwood,\ndisappointed me.'\n\n'So long as that?' I said.\n\n'And nice people they were, who had the audacity to call him mad,'\npursued my aunt.  'Mr. Dick is a sort of distant connexion of mine\n- it doesn't matter how; I needn't enter into that.  If it hadn't\nbeen for me, his own brother would have shut him up for life. \nThat's all.'\n\nI am afraid it was hypocritical in me, but seeing that my aunt felt\nstrongly on the subject, I tried to look as if I felt strongly too.\n\n'A proud fool!' said my aunt.  'Because his brother was a little\neccentric - though he is not half so eccentric as a good many\npeople - he didn't like to have him visible about his house, and\nsent him away to some private asylum-place: though he had been left\nto his particular care by their deceased father, who thought him\nalmost a natural.  And a wise man he must have been to think so!\nMad himself, no doubt.'\n\nAgain, as my aunt looked quite convinced, I endeavoured to look\nquite convinced also.\n\n'So I stepped in,' said my aunt, 'and made him an offer.  I said,\n\"Your brother's sane - a great deal more sane than you are, or ever\nwill be, it is to be hoped.  Let him have his little income, and\ncome and live with me.  I am not afraid of him, I am not proud, I\nam ready to take care of him, and shall not ill-treat him as some\npeople (besides the asylum-folks) have done.\"  After a good deal of\nsquabbling,' said my aunt, 'I got him; and he has been here ever\nsince.  He is the most friendly and amenable creature in existence;\nand as for advice! - But nobody knows what that man's mind is,\nexcept myself.'\n\nMy aunt smoothed her dress and shook her head, as if she smoothed\ndefiance of the whole world out of the one, and shook it out of the\nother.\n\n'He had a favourite sister,' said my aunt, 'a good creature, and\nvery kind to him.  But she did what they all do - took a husband. \nAnd HE did what they all do - made her wretched.  It had such an\neffect upon the mind of Mr. Dick (that's not madness, I hope!)\nthat, combined with his fear of his brother, and his sense of his\nunkindness, it threw him into a fever.  That was before he came to\nme, but the recollection of it is oppressive to him even now.  Did\nhe say anything to you about King Charles the First, child?'\n\n'Yes, aunt.'\n\n'Ah!' said my aunt, rubbing her nose as if she were a little vexed. \n'That's his allegorical way of expressing it.  He connects his\nillness with great disturbance and agitation, naturally, and that's\nthe figure, or the simile, or whatever it's called, which he\nchooses to use.  And why shouldn't he, if he thinks proper!'\n\nI said: 'Certainly, aunt.'\n\n'It's not a business-like way of speaking,' said my aunt, 'nor a\nworldly way.  I am aware of that; and that's the reason why I\ninsist upon it, that there shan't be a word about it in his\nMemorial.'\n\n'Is it a Memorial about his own history that he is writing, aunt?'\n\n'Yes, child,' said my aunt, rubbing her nose again.  'He is\nmemorializing the Lord Chancellor, or the Lord Somebody or other -\none of those people, at all events, who are paid to be memorialized\n- about his affairs.  I suppose it will go in, one of these days. \nHe hasn't been able to draw it up yet, without introducing that\nmode of expressing himself; but it don't signify; it keeps him\nemployed.'\n\nIn fact, I found out afterwards that Mr. Dick had been for upwards\nof ten years endeavouring to keep King Charles the First out of the\nMemorial; but he had been constantly getting into it, and was there\nnow.\n\n'I say again,' said my aunt, 'nobody knows what that man's mind is\nexcept myself; and he's the most amenable and friendly creature in\nexistence.  If he likes to fly a kite sometimes, what of that!\nFranklin used to fly a kite.  He was a Quaker, or something of that\nsort, if I am not mistaken.  And a Quaker flying a kite is a much\nmore ridiculous object than anybody else.'\n\nIf I could have supposed that my aunt had recounted these\nparticulars for my especial behoof, and as a piece of confidence in\nme, I should have felt very much distinguished, and should have\naugured favourably from such a mark of her good opinion.  But I\ncould hardly help observing that she had launched into them,\nchiefly because the question was raised in her own mind, and with\nvery little reference to me, though she had addressed herself to me\nin the absence of anybody else.\n\nAt the same time, I must say that the generosity of her\nchampionship of poor harmless Mr. Dick, not only inspired my young\nbreast with some selfish hope for myself, but warmed it unselfishly\ntowards her.  I believe that I began to know that there was\nsomething about my aunt, notwithstanding her many eccentricities\nand odd humours, to be honoured and trusted in.  Though she was\njust as sharp that day as on the day before, and was in and out\nabout the donkeys just as often, and was thrown into a tremendous\nstate of indignation, when a young man, going by, ogled Janet at a\nwindow (which was one of the gravest misdemeanours that could be\ncommitted against my aunt's dignity), she seemed to me to command\nmore of my respect, if not less of my fear.\n\nThe anxiety I underwent, in the interval which necessarily elapsed\nbefore a reply could be received to her letter to Mr. Murdstone,\nwas extreme; but I made an endeavour to suppress it, and to be as\nagreeable as I could in a quiet way, both to my aunt and Mr. Dick. \nThe latter and I would have gone out to fly the great kite; but\nthat I had still no other clothes than the anything but ornamental\ngarments with which I had been decorated on the first day, and\nwhich confined me to the house, except for an hour after dark, when\nmy aunt, for my health's sake, paraded me up and down on the cliff\noutside, before going to bed.  At length the reply from Mr.\nMurdstone came, and my aunt informed me, to my infinite terror,\nthat he was coming to speak to her herself on the next day.  On the\nnext day, still bundled up in my curious habiliments, I sat\ncounting the time, flushed and heated by the conflict of sinking\nhopes and rising fears within me; and waiting to be startled by the\nsight of the gloomy face, whose non-arrival startled me every\nminute.\n\nMY aunt was a little more imperious and stern than usual, but I\nobserved no other token of her preparing herself to receive the\nvisitor so much dreaded by me.  She sat at work in the window, and\nI sat by, with my thoughts running astray on all possible and\nimpossible results of Mr. Murdstone's visit, until pretty late in\nthe afternoon.  Our dinner had been indefinitely postponed; but it\nwas growing so late, that my aunt had ordered it to be got ready,\nwhen she gave a sudden alarm of donkeys, and to my consternation\nand amazement, I beheld Miss Murdstone, on a side-saddle, ride\ndeliberately over the sacred piece of green, and stop in front of\nthe house, looking about her.\n\n'Go along with you!' cried my aunt, shaking her head and her fist\nat the window.  'You have no business there.  How dare you\ntrespass?  Go along!  Oh! you bold-faced thing!'\n\nMY aunt was so exasperated by the coolness with which Miss\nMurdstone looked about her, that I really believe she was\nmotionless, and unable for the moment to dart out according to\ncustom.  I seized the opportunity to inform her who it was; and\nthat the gentleman now coming near the offender (for the way up was\nvery steep, and he had dropped behind), was Mr. Murdstone himself.\n\n'I don't care who it is!' cried my aunt, still shaking her head and\ngesticulating anything but welcome from the bow-window.  'I won't\nbe trespassed upon.  I won't allow it.  Go away!  Janet, turn him\nround.  Lead him off!' and I saw, from behind my aunt, a sort of\nhurried battle-piece, in which the donkey stood resisting\neverybody, with all his four legs planted different ways, while\nJanet tried to pull him round by the bridle, Mr. Murdstone tried to\nlead him on, Miss Murdstone struck at Janet with a parasol, and\nseveral boys, who had come to see the engagement, shouted\nvigorously.  But my aunt, suddenly descrying among them the young\nmalefactor who was the donkey's guardian, and who was one of the\nmost inveterate offenders against her, though hardly in his teens,\nrushed out to the scene of action, pounced upon him, captured him,\ndragged him, with his jacket over his head, and his heels grinding\nthe ground, into the garden, and, calling upon Janet to fetch the\nconstables and justices, that he might be taken, tried, and\nexecuted on the spot, held him at bay there.  This part of the\nbusiness, however, did not last long; for the young rascal, being\nexpert at a variety of feints and dodges, of which my aunt had no\nconception, soon went whooping away, leaving some deep impressions\nof his nailed boots in the flower-beds, and taking his donkey in\ntriumph with him.\n\nMiss Murdstone, during the latter portion of the contest, had\ndismounted, and was now waiting with her brother at the bottom of\nthe steps, until my aunt should be at leisure to receive them.  My\naunt, a little ruffled by the combat, marched past them into the\nhouse, with great dignity, and took no notice of their presence,\nuntil they were announced by Janet.\n\n'Shall I go away, aunt?' I asked, trembling.\n\n'No, sir,' said my aunt.  'Certainly not!'  With which she pushed\nme into a corner near her, and fenced Me in with a chair, as if it\nwere a prison or a bar of justice.  This position I continued to\noccupy during the whole interview, and from it I now saw Mr. and\nMiss Murdstone enter the room.\n\n'Oh!' said my aunt, 'I was not aware at first to whom I had the\npleasure of objecting.  But I don't allow anybody to ride over that\nturf.  I make no exceptions.  I don't allow anybody to do it.'\n\n'Your regulation is rather awkward to strangers,' said Miss\nMurdstone.\n\n'Is it!' said my aunt.\n\nMr. Murdstone seemed afraid of a renewal of hostilities, and\ninterposing began:\n\n'Miss Trotwood!'\n\n'I beg your pardon,' observed my aunt with a keen look.  'You are\nthe Mr. Murdstone who married the widow of my late nephew, David\nCopperfield, of Blunderstone Rookery! - Though why Rookery, I don't\nknow!'\n\n'I am,' said Mr. Murdstone.\n\n'You'll excuse my saying, sir,' returned my aunt, 'that I think it\nwould have been a much better and happier thing if you had left\nthat poor child alone.'\n\n'I so far agree with what Miss Trotwood has remarked,' observed\nMiss Murdstone, bridling, 'that I consider our lamented Clara to\nhave been, in all essential respects, a mere child.'\n\n'It is a comfort to you and me, ma'am,' said my aunt, 'who are\ngetting on in life, and are not likely to be made unhappy by our\npersonal attractions, that nobody can say the same of us.'\n\n'No doubt!' returned Miss Murdstone, though, I thought, not with a\nvery ready or gracious assent.  'And it certainly might have been,\nas you say, a better and happier thing for my brother if he had\nnever entered into such a marriage.  I have always been of that\nopinion.'\n\n'I have no doubt you have,' said my aunt.  'Janet,' ringing the\nbell, 'my compliments to Mr. Dick, and beg him to come down.'\n\nUntil he came, my aunt sat perfectly upright and stiff, frowning at\nthe wall.  When he came, my aunt performed the ceremony of\nintroduction.\n\n'Mr. Dick.  An old and intimate friend.  On whose judgement,' said\nmy aunt, with emphasis, as an admonition to Mr. Dick, who was\nbiting his forefinger and looking rather foolish, 'I rely.'\n\nMr. Dick took his finger out of his mouth, on this hint, and stood\namong the group, with a grave and attentive expression of face.\n\nMy aunt inclined her head to Mr. Murdstone, who went on:\n\n'Miss Trotwood: on the receipt of your letter, I considered it an\nact of greater justice to myself, and perhaps of more respect to\nyou-'\n\n'Thank you,' said my aunt, still eyeing him keenly.  'You needn't\nmind me.'\n\n'To answer it in person, however inconvenient the journey,' pursued\nMr. Murdstone, 'rather than by letter.  This unhappy boy who has\nrun away from his friends and his occupation -'\n\n'And whose appearance,' interposed his sister, directing general\nattention to me in my indefinable costume, 'is perfectly scandalous\nand disgraceful.'\n\n'Jane Murdstone,' said her brother, 'have the goodness not to\ninterrupt me.  This unhappy boy, Miss Trotwood, has been the\noccasion of much domestic trouble and uneasiness; both during the\nlifetime of my late dear wife, and since.  He has a sullen,\nrebellious spirit; a violent temper; and an untoward, intractable\ndisposition.  Both my sister and myself have endeavoured to correct\nhis vices, but ineffectually.  And I have felt - we both have felt,\nI may say; my sister being fully in my confidence - that it is\nright you should receive this grave and dispassionate assurance\nfrom our lips.'\n\n'It can hardly be necessary for me to confirm anything stated by my\nbrother,' said Miss Murdstone; 'but I beg to observe, that, of all\nthe boys in the world, I believe this is the worst boy.'\n\n'Strong!' said my aunt, shortly.\n\n'But not at all too strong for the facts,' returned Miss Murdstone.\n\n'Ha!' said my aunt.  'Well, sir?'\n\n'I have my own opinions,' resumed Mr. Murdstone, whose face\ndarkened more and more, the more he and my aunt observed each\nother, which they did very narrowly, 'as to the best mode of\nbringing him up; they are founded, in part, on my knowledge of him,\nand in part on my knowledge of my own means and resources.  I am\nresponsible for them to myself, I act upon them, and I say no more\nabout them.  It is enough that I place this boy under the eye of a\nfriend of my own, in a respectable business; that it does not\nplease him; that he runs away from it; makes himself a common\nvagabond about the country; and comes here, in rags, to appeal to\nyou, Miss Trotwood.  I wish to set before you, honourably, the\nexact consequences - so far as they are within my knowledge - of\nyour abetting him in this appeal.'\n\n'But about the respectable business first,' said my aunt.  'If he\nhad been your own boy, you would have put him to it, just the same,\nI suppose?'\n\n'If he had been my brother's own boy,' returned Miss Murdstone,\nstriking in, 'his character, I trust, would have been altogether\ndifferent.'\n\n'Or if the poor child, his mother, had been alive, he would still\nhave gone into the respectable business, would he?' said my aunt.\n\n'I believe,' said Mr. Murdstone, with an inclination of his head,\n'that Clara would have disputed nothing which myself and my sister\nJane Murdstone were agreed was for the best.'\n\nMiss Murdstone confirmed this with an audible murmur.\n\n'Humph!' said my aunt.  'Unfortunate baby!'\n\nMr. Dick, who had been rattling his money all this time, was\nrattling it so loudly now, that my aunt felt it necessary to check\nhim with a look, before saying:\n\n'The poor child's annuity died with her?'\n\n'Died with her,' replied Mr. Murdstone.\n\n'And there was no settlement of the little property - the house and\ngarden - the what's-its-name Rookery without any rooks in it - upon\nher boy?'\n\n'It had been left to her, unconditionally, by her first husband,'\nMr. Murdstone began, when my aunt caught him up with the greatest\nirascibility and impatience.\n\n'Good Lord, man, there's no occasion to say that.  Left to her\nunconditionally!  I think I see David Copperfield looking forward\nto any condition of any sort or kind, though it stared him\npoint-blank in the face!  Of course it was left to her\nunconditionally.  But when she married again - when she took that\nmost disastrous step of marrying you, in short,' said my aunt, 'to\nbe plain - did no one put in a word for the boy at that time?'\n\n'My late wife loved her second husband, ma'am,' said Mr. Murdstone,\n'and trusted implicitly in him.'\n\n'Your late wife, sir, was a most unworldly, most unhappy, most\nunfortunate baby,' returned my aunt, shaking her head at him. \n'That's what she was.  And now, what have you got to say next?'\n\n'Merely this, Miss Trotwood,' he returned.  'I am here to take\nDavid back - to take him back unconditionally, to dispose of him as\nI think proper, and to deal with him as I think right.  I am not\nhere to make any promise, or give any pledge to anybody.  You may\npossibly have some idea, Miss Trotwood, of abetting him in his\nrunning away, and in his complaints to you.  Your manner, which I\nmust say does not seem intended to propitiate, induces me to think\nit possible.  Now I must caution you that if you abet him once, you\nabet him for good and all; if you step in between him and me, now,\nyou must step in, Miss Trotwood, for ever.  I cannot trifle, or be\ntrifled with.  I am here, for the first and last time, to take him\naway.  Is he ready to go?  If he is not - and you tell me he is\nnot; on any pretence; it is indifferent to me what - my doors are\nshut against him henceforth, and yours, I take it for granted, are\nopen to him.'\n\nTo this address, my aunt had listened with the closest attention,\nsitting perfectly upright, with her hands folded on one knee, and\nlooking grimly on the speaker.  When he had finished, she turned\nher eyes so as to command Miss Murdstone, without otherwise\ndisturbing her attitude, and said:\n\n'Well, ma'am, have YOU got anything to remark?'\n\n'Indeed, Miss Trotwood,' said Miss Murdstone, 'all that I could say\nhas been so well said by my brother, and all that I know to be the\nfact has been so plainly stated by him, that I have nothing to add\nexcept my thanks for your politeness.  For your very great\npoliteness, I am sure,' said Miss Murdstone; with an irony which no\nmore affected my aunt, than it discomposed the cannon I had slept\nby at Chatham.\n\n'And what does the boy say?' said my aunt.  'Are you ready to go,\nDavid?'\n\nI answered no, and entreated her not to let me go.  I said that\nneither Mr. nor Miss Murdstone had ever liked me, or had ever been\nkind to me.  That they had made my mama, who always loved me\ndearly, unhappy about me, and that I knew it well, and that\nPeggotty knew it.  I said that I had been more miserable than I\nthought anybody could believe, who only knew how young I was.  And\nI begged and prayed my aunt - I forget in what terms now, but I\nremember that they affected me very much then - to befriend and\nprotect me, for my father's sake.\n\n'Mr. Dick,' said my aunt, 'what shall I do with this child?'\n\nMr. Dick considered, hesitated, brightened, and rejoined, 'Have him\nmeasured for a suit of clothes directly.'\n\n'Mr. Dick,' said my aunt triumphantly, 'give me your hand, for your\ncommon sense is invaluable.'  Having shaken it with great\ncordiality, she pulled me towards her and said to Mr. Murdstone:\n\n'You can go when you like; I'll take my chance with the boy.  If\nhe's all you say he is, at least I can do as much for him then, as\nyou have done.  But I don't believe a word of it.'\n\n'Miss Trotwood,' rejoined Mr. Murdstone, shrugging his shoulders,\nas he rose, 'if you were a gentleman -'\n\n'Bah!  Stuff and nonsense!' said my aunt.  'Don't talk to me!'\n\n'How exquisitely polite!' exclaimed Miss Murdstone, rising. \n'Overpowering, really!'\n\n'Do you think I don't know,' said my aunt, turning a deaf ear to\nthe sister, and continuing to address the brother, and to shake her\nhead at him with infinite expression, 'what kind of life you must\nhave led that poor, unhappy, misdirected baby?  Do you think I\ndon't know what a woeful day it was for the soft little creature\nwhen you first came in her way - smirking and making great eyes at\nher, I'll be bound, as if you couldn't say boh! to a goose!'\n\n'I never heard anything so elegant!' said Miss Murdstone.\n\n'Do you think I can't understand you as well as if I had seen you,'\npursued my aunt, 'now that I DO see and hear you - which, I tell\nyou candidly, is anything but a pleasure to me?  Oh yes, bless us!\nwho so smooth and silky as Mr. Murdstone at first!  The poor,\nbenighted innocent had never seen such a man.  He was made of\nsweetness.  He worshipped her.  He doted on her boy - tenderly\ndoted on him!  He was to be another father to him, and they were\nall to live together in a garden of roses, weren't they?  Ugh!  Get\nalong with you, do!' said my aunt.\n\n'I never heard anything like this person in my life!' exclaimed\nMiss Murdstone.\n\n'And when you had made sure of the poor little fool,' said my aunt\n- 'God forgive me that I should call her so, and she gone where YOU\nwon't go in a hurry - because you had not done wrong enough to her\nand hers, you must begin to train her, must you? begin to break\nher, like a poor caged bird, and wear her deluded life away, in\nteaching her to sing YOUR notes?'\n\n'This is either insanity or intoxication,' said Miss Murdstone, in\na perfect agony at not being able to turn the current of my aunt's\naddress towards herself; 'and my suspicion is that it's\nintoxication.'\n\nMiss Betsey, without taking the least notice of the interruption,\ncontinued to address herself to Mr. Murdstone as if there had been\nno such thing.\n\n'Mr. Murdstone,' she said, shaking her finger at him, 'you were a\ntyrant to the simple baby, and you broke her heart.  She was a\nloving baby - I know that; I knew it, years before you ever saw her\n- and through the best part of her weakness you gave her the wounds\nshe died of.  There is the truth for your comfort, however you like\nit.  And you and your instruments may make the most of it.'\n\n'Allow me to inquire, Miss Trotwood,' interposed Miss Murdstone,\n'whom you are pleased to call, in a choice of words in which I am\nnot experienced, my brother's instruments?'\n\n'It was clear enough, as I have told you, years before YOU ever saw\nher - and why, in the mysterious dispensations of Providence, you\never did see her, is more than humanity can comprehend - it was\nclear enough that the poor soft little thing would marry somebody,\nat some time or other; but I did hope it wouldn't have been as bad\nas it has turned out.  That was the time, Mr. Murdstone, when she\ngave birth to her boy here,' said my aunt; 'to the poor child you\nsometimes tormented her through afterwards, which is a disagreeable\nremembrance and makes the sight of him odious now.  Aye, aye! you\nneedn't wince!' said my aunt.  'I know it's true without that.'\n\nHe had stood by the door, all this while, observant of her with a\nsmile upon his face, though his black eyebrows were heavily\ncontracted.  I remarked now, that, though the smile was on his face\nstill, his colour had gone in a moment, and he seemed to breathe as\nif he had been running.\n\n'Good day, sir,' said my aunt, 'and good-bye!  Good day to you,\ntoo, ma'am,' said my aunt, turning suddenly upon his sister.  'Let\nme see you ride a donkey over my green again, and as sure as you\nhave a head upon your shoulders, I'll knock your bonnet off, and\ntread upon it!'\n\nIt would require a painter, and no common painter too, to depict my\naunt's face as she delivered herself of this very unexpected\nsentiment, and Miss Murdstone's face as she heard it.  But the\nmanner of the speech, no less than the matter, was so fiery, that\nMiss Murdstone, without a word in answer, discreetly put her arm\nthrough her brother's, and walked haughtily out of the cottage; my\naunt remaining in the window looking after them; prepared, I have\nno doubt, in case of the donkey's reappearance, to carry her threat\ninto instant execution.\n\nNo attempt at defiance being made, however, her face gradually\nrelaxed, and became so pleasant, that I was emboldened to kiss and\nthank her; which I did with great heartiness, and with both my arms\nclasped round her neck.  I then shook hands with Mr. Dick, who\nshook hands with me a great many times, and hailed this happy close\nof the proceedings with repeated bursts of laughter.\n\n'You'll consider yourself guardian, jointly with me, of this child,\nMr. Dick,' said my aunt.\n\n'I shall be delighted,' said Mr. Dick, 'to be the guardian of\nDavid's son.'\n\n'Very good,' returned my aunt, 'that's settled.  I have been\nthinking, do you know, Mr. Dick, that I might call him Trotwood?'\n\n'Certainly, certainly.  Call him Trotwood, certainly,' said Mr.\nDick.  'David's son's Trotwood.'\n\n'Trotwood Copperfield, you mean,' returned my aunt.\n\n'Yes, to be sure.  Yes.  Trotwood Copperfield,' said Mr. Dick, a\nlittle abashed.\n\nMy aunt took so kindly to the notion, that some ready-made clothes,\nwhich were purchased for me that afternoon, were marked 'Trotwood\nCopperfield', in her own handwriting, and in indelible marking-ink,\nbefore I put them on; and it was settled that all the other clothes\nwhich were ordered to be made for me (a complete outfit was bespoke\nthat afternoon) should be marked in the same way.\n\nThus I began my new life, in a new name, and with everything new\nabout me.  Now that the state of doubt was over, I felt, for many\ndays, like one in a dream.  I never thought that I had a curious\ncouple of guardians, in my aunt and Mr. Dick.  I never thought of\nanything about myself, distinctly.  The two things clearest in my\nmind were, that a remoteness had come upon the old Blunderstone\nlife - which seemed to lie in the haze of an immeasurable distance;\nand that a curtain had for ever fallen on my life at Murdstone and\nGrinby's.  No one has ever raised that curtain since.  I have\nlifted it for a moment, even in this narrative, with a reluctant\nhand, and dropped it gladly.  The remembrance of that life is\nfraught with so much pain to me, with so much mental suffering and\nwant of hope, that I have never had the courage even to examine how\nlong I was doomed to lead it.  Whether it lasted for a year, or\nmore, or less, I do not know.  I only know that it was, and ceased\nto be; and that I have written, and there I leave it.\n\n\n\nCHAPTER 15\nI MAKE ANOTHER BEGINNING\n\n\nMr. Dick and I soon became the best of friends, and very often,\nwhen his day's work was done, went out together to fly the great\nkite.  Every day of his life he had a long sitting at the Memorial,\nwhich never made the least progress, however hard he laboured, for\nKing Charles the First always strayed into it, sooner or later, and\nthen it was thrown aside, and another one begun.  The patience and\nhope with which he bore these perpetual disappointments, the mild\nperception he had that there was something wrong about King Charles\nthe First, the feeble efforts he made to keep him out, and the\ncertainty with which he came in, and tumbled the Memorial out of\nall shape, made a deep impression on me.  What Mr. Dick supposed\nwould come of the Memorial, if it were completed; where he thought\nit was to go, or what he thought it was to do; he knew no more than\nanybody else, I believe.  Nor was it at all necessary that he\nshould trouble himself with such questions, for if anything were\ncertain under the sun, it was certain that the Memorial never would\nbe finished.  It was quite an affecting sight, I used to think, to\nsee him with the kite when it was up a great height in the air. \nWhat he had told me, in his room, about his belief in its\ndisseminating the statements pasted on it, which were nothing but\nold leaves of abortive Memorials, might have been a fancy with him\nsometimes; but not when he was out, looking up at the kite in the\nsky, and feeling it pull and tug at his hand.  He never looked so\nserene as he did then.  I used to fancy, as I sat by him of an\nevening, on a green slope, and saw him watch the kite high in the\nquiet air, that it lifted his mind out of its confusion, and bore\nit (such was my boyish thought) into the skies.  As he wound the\nstring in and it came lower and lower down out of the beautiful\nlight, until it fluttered to the ground, and lay there like a dead\nthing, he seemed to wake gradually out of a dream; and I remember\nto have seen him take it up, and look about him in a lost way, as\nif they had both come down together, so that I pitied him with all\nmy heart.\n\nWhile I advanced in friendship and intimacy with Mr. Dick, I did\nnot go backward in the favour of his staunch friend, my aunt.  She\ntook so kindly to me, that, in the course of a few weeks, she\nshortened my adopted name of Trotwood into Trot; and even\nencouraged me to hope, that if I went on as I had begun, I might\ntake equal rank in her affections with my sister Betsey Trotwood.\n\n'Trot,' said my aunt one evening, when the backgammon-board was\nplaced as usual for herself and Mr. Dick, 'we must not forget your\neducation.'\n\nThis was my only subject of anxiety, and I felt quite delighted by\nher referring to it.\n\n'Should you like to go to school at Canterbury?' said my aunt.\n\nI replied that I should like it very much, as it was so near her.\n\n'Good,' said my aunt.  'Should you like to go tomorrow?'\n\nBeing already no stranger to the general rapidity of my aunt's\nevolutions, I was not surprised by the suddenness of the proposal,\nand said: 'Yes.'\n\n'Good,' said my aunt again.  'Janet, hire the grey pony and chaise\ntomorrow morning at ten o'clock, and pack up Master Trotwood's\nclothes tonight.'\n\nI was greatly elated by these orders; but my heart smote me for my\nselfishness, when I witnessed their effect on Mr. Dick, who was so\nlow-spirited at the prospect of our separation, and played so ill\nin consequence, that my aunt, after giving him several admonitory\nraps on the knuckles with her dice-box, shut up the board, and\ndeclined to play with him any more.  But, on hearing from my aunt\nthat I should sometimes come over on a Saturday, and that he could\nsometimes come and see me on a Wednesday, he revived; and vowed to\nmake another kite for those occasions, of proportions greatly\nsurpassing the present one.  In the morning he was downhearted\nagain, and would have sustained himself by giving me all the money\nhe had in his possession, gold and silver too, if my aunt had not\ninterposed, and limited the gift to five shillings, which, at his\nearnest petition, were afterwards increased to ten.  We parted at\nthe garden-gate in a most affectionate manner, and Mr. Dick did not\ngo into the house until my aunt had driven me out of sight of it.\n\nMy aunt, who was perfectly indifferent to public opinion, drove the\ngrey pony through Dover in a masterly manner; sitting high and\nstiff like a state coachman, keeping a steady eye upon him wherever\nhe went, and making a point of not letting him have his own way in\nany respect.  When we came into the country road, she permitted him\nto relax a little, however; and looking at me down in a valley of\ncushion by her side, asked me whether I was happy?\n\n'Very happy indeed, thank you, aunt,' I said.\n\nShe was much gratified; and both her hands being occupied, patted\nme on the head with her whip.\n\n'Is it a large school, aunt?' I asked.\n\n'Why, I don't know,' said my aunt.  'We are going to Mr.\nWickfield's first.'\n\n'Does he keep a school?' I asked.\n\n'No, Trot,' said my aunt.  'He keeps an office.'\n\nI asked for no more information about Mr. Wickfield, as she offered\nnone, and we conversed on other subjects until we came to\nCanterbury, where, as it was market-day, my aunt had a great\nopportunity of insinuating the grey pony among carts, baskets,\nvegetables, and huckster's goods.  The hair-breadth turns and\ntwists we made, drew down upon us a variety of speeches from the\npeople standing about, which were not always complimentary; but my\naunt drove on with perfect indifference, and I dare say would have\ntaken her own way with as much coolness through an enemy's country.\n\nAt length we stopped before a very old house bulging out over the\nroad; a house with long low lattice-windows bulging out still\nfarther, and beams with carved heads on the ends bulging out too,\nso that I fancied the whole house was leaning forward, trying to\nsee who was passing on the narrow pavement below.  It was quite\nspotless in its cleanliness.  The old-fashioned brass knocker on\nthe low arched door, ornamented with carved garlands of fruit and\nflowers, twinkled like a star; the two stone steps descending to\nthe door were as white as if they had been covered with fair linen;\nand all the angles and corners, and carvings and mouldings, and\nquaint little panes of glass, and quainter little windows, though\nas old as the hills, were as pure as any snow that ever fell upon\nthe hills.\n\nWhen the pony-chaise stopped at the door, and my eyes were intent\nupon the house, I saw a cadaverous face appear at a small window on\nthe ground floor (in a little round tower that formed one side of\nthe house), and quickly disappear.  The low arched door then\nopened, and the face came out.  It was quite as cadaverous as it\nhad looked in the window, though in the grain of it there was that\ntinge of red which is sometimes to be observed in the skins of\nred-haired people.  It belonged to a red-haired person - a youth of\nfifteen, as I take it now, but looking much older - whose hair was\ncropped as close as the closest stubble; who had hardly any\neyebrows, and no eyelashes, and eyes of a red-brown, so unsheltered\nand unshaded, that I remember wondering how he went to sleep.  He\nwas high-shouldered and bony; dressed in decent black, with a white\nwisp of a neckcloth; buttoned up to the throat; and had a long,\nlank, skeleton hand, which particularly attracted my attention, as\nhe stood at the pony's head, rubbing his chin with it, and looking\nup at us in the chaise.\n\n'Is Mr. Wickfield at home, Uriah Heep?' said my aunt.\n\n'Mr. Wickfield's at home, ma'am,' said Uriah Heep, 'if you'll\nplease to walk in there' - pointing with his long hand to the room\nhe meant.\n\nWe got out; and leaving him to hold the pony, went into a long low\nparlour looking towards the street, from the window of which I\ncaught a glimpse, as I went in, of Uriah Heep breathing into the\npony's nostrils, and immediately covering them with his hand, as if\nhe were putting some spell upon him.  Opposite to the tall old\nchimney-piece were two portraits: one of a gentleman with grey hair\n(though not by any means an old man) and black eyebrows, who was\nlooking over some papers tied together with red tape; the other, of\na lady, with a very placid and sweet expression of face, who was\nlooking at me.\n\nI believe I was turning about in search of Uriah's picture, when,\na door at the farther end of the room opening, a gentleman entered,\nat sight of whom I turned to the first-mentioned portrait again, to\nmake quite sure that it had not come out of its frame.  But it was\nstationary; and as the gentleman advanced into the light, I saw\nthat he was some years older than when he had had his picture\npainted.\n\n'Miss Betsey Trotwood,' said the gentleman, 'pray walk in.  I was\nengaged for a moment, but you'll excuse my being busy.  You know my\nmotive.  I have but one in life.'\n\nMiss Betsey thanked him, and we went into his room, which was\nfurnished as an office, with books, papers, tin boxes, and so\nforth.  It looked into a garden, and had an iron safe let into the\nwall; so immediately over the mantelshelf, that I wondered, as I\nsat down, how the sweeps got round it when they swept the chimney.\n\n'Well, Miss Trotwood,' said Mr. Wickfield; for I soon found that it\nwas he, and that he was a lawyer, and steward of the estates of a\nrich gentleman of the county; 'what wind blows you here?  Not an\nill wind, I hope?'\n\n'No,' replied my aunt.  'I have not come for any law.'\n\n'That's right, ma'am,' said Mr. Wickfield.  'You had better come\nfor anything else.'\nHis hair was quite white now, though his eyebrows were still black. \nHe had a very agreeable face, and, I thought, was handsome.  There\nwas a certain richness in his complexion, which I had been long\naccustomed, under Peggotty's tuition, to connect with port wine;\nand I fancied it was in his voice too, and referred his growing\ncorpulency to the same cause.  He was very cleanly dressed, in a\nblue coat, striped waistcoat, and nankeen trousers; and his fine\nfrilled shirt and cambric neckcloth looked unusually soft and\nwhite, reminding my strolling fancy (I call to mind) of the plumage\non the breast of a swan.\n\n'This is my nephew,' said my aunt.\n\n'Wasn't aware you had one, Miss Trotwood,' said Mr. Wickfield.\n\n'My grand-nephew, that is to say,' observed my aunt.\n\n'Wasn't aware you had a grand-nephew, I give you my word,' said Mr.\nWickfield.\n\n'I have adopted him,' said my aunt, with a wave of her hand,\nimporting that his knowledge and his ignorance were all one to her,\n'and I have brought him here, to put to a school where he may be\nthoroughly well taught, and well treated.  Now tell me where that\nschool is, and what it is, and all about it.'\n\n'Before I can advise you properly,' said Mr. Wickfield - 'the old\nquestion, you know.  What's your motive in this?'\n\n'Deuce take the man!' exclaimed my aunt.  'Always fishing for\nmotives, when they're on the surface!  Why, to make the child happy\nand useful.'\n\n'It must be a mixed motive, I think,' said Mr. Wickfield, shaking\nhis head and smiling incredulously.\n\n'A mixed fiddlestick,' returned my aunt.  'You claim to have one\nplain motive in all you do yourself.  You don't suppose, I hope,\nthat you are the only plain dealer in the world?'\n\n'Ay, but I have only one motive in life, Miss Trotwood,' he\nrejoined, smiling.  'Other people have dozens, scores, hundreds. \nI have only one.  There's the difference.  However, that's beside\nthe question.  The best school?  Whatever the motive, you want the\nbest?'\n\nMy aunt nodded assent.\n\n'At the best we have,' said Mr. Wickfield, considering, 'your\nnephew couldn't board just now.'\n\n'But he could board somewhere else, I suppose?' suggested my aunt.\n\nMr. Wickfield thought I could.  After a little discussion, he\nproposed to take my aunt to the school, that she might see it and\njudge for herself; also, to take her, with the same object, to two\nor three houses where he thought I could be boarded.  My aunt\nembracing the proposal, we were all three going out together, when\nhe stopped and said:\n\n'Our little friend here might have some motive, perhaps, for\nobjecting to the arrangements.  I think we had better leave him\nbehind?'\n\nMy aunt seemed disposed to contest the point; but to facilitate\nmatters I said I would gladly remain behind, if they pleased; and\nreturned into Mr. Wickfield's office, where I sat down again, in\nthe chair I had first occupied, to await their return.\n\nIt so happened that this chair was opposite a narrow passage, which\nended in the little circular room where I had seen Uriah Heep's\npale face looking out of the window.  Uriah, having taken the pony\nto a neighbouring stable, was at work at a desk in this room, which\nhad a brass frame on the top to hang paper upon, and on which the\nwriting he was making a copy of was then hanging.  Though his face\nwas towards me, I thought, for some time, the writing being between\nus, that he could not see me; but looking that way more\nattentively, it made me uncomfortable to observe that, every now\nand then, his sleepless eyes would come below the writing, like two\nred suns, and stealthily stare at me for I dare say a whole minute\nat a time, during which his pen went, or pretended to go, as\ncleverly as ever.  I made several attempts to get out of their way\n- such as standing on a chair to look at a map on the other side of\nthe room, and poring over the columns of a Kentish newspaper - but\nthey always attracted me back again; and whenever I looked towards\nthose two red suns, I was sure to find them, either just rising or\njust setting.\n\nAt length, much to my relief, my aunt and Mr. Wickfield came back,\nafter a pretty long absence.  They were not so successful as I\ncould have wished; for though the advantages of the school were\nundeniable, my aunt had not approved of any of the boarding-houses\nproposed for me.\n\n'It's very unfortunate,' said my aunt.  'I don't know what to do,\nTrot.'\n\n'It does happen unfortunately,' said Mr. Wickfield.  'But I'll tell\nyou what you can do, Miss Trotwood.'\n\n'What's that?' inquired my aunt.\n\n'Leave your nephew here, for the present.  He's a quiet fellow.  He\nwon't disturb me at all.  It's a capital house for study.  As quiet\nas a monastery, and almost as roomy.  Leave him here.'\n\nMy aunt evidently liked the offer, though she was delicate of\naccepting it.  So did I.\n'Come, Miss Trotwood,' said Mr. Wickfield.  'This is the way out of\nthe difficulty.  It's only a temporary arrangement, you know.  If\nit don't act well, or don't quite accord with our mutual\nconvenience, he can easily go to the right-about.  There will be\ntime to find some better place for him in the meanwhile.  You had\nbetter determine to leave him here for the present!'\n\n'I am very much obliged to you,' said my aunt; 'and so is he, I\nsee; but -'\n\n'Come! I know what you mean,' cried Mr. Wickfield.  'You shall not\nbe oppressed by the receipt of favours, Miss Trotwood.  You may pay\nfor him, if you like.  We won't be hard about terms, but you shall\npay if you will.'\n\n'On that understanding,' said my aunt, 'though it doesn't lessen\nthe real obligation, I shall be very glad to leave him.'\n\n'Then come and see my little housekeeper,' said Mr. Wickfield.\n\nWe accordingly went up a wonderful old staircase; with a balustrade\nso broad that we might have gone up that, almost as easily; and\ninto a shady old drawing-room, lighted by some three or four of the\nquaint windows I had looked up at from the street: which had old\noak seats in them, that seemed to have come of the same trees as\nthe shining oak floor, and the great beams in the ceiling.  It was\na prettily furnished room, with a piano and some lively furniture\nin red and green, and some flowers.  It seemed to be all old nooks\nand corners; and in every nook and corner there was some queer\nlittle table, or cupboard, or bookcase, or seat, or something or\nother, that made me think there was not such another good corner in\nthe room; until I looked at the next one, and found it equal to it,\nif not better.  On everything there was the same air of retirement\nand cleanliness that marked the house outside.\n\nMr. Wickfield tapped at a door in a corner of the panelled wall,\nand a girl of about my own age came quickly out and kissed him.  On\nher face, I saw immediately the placid and sweet expression of the\nlady whose picture had looked at me downstairs.  It seemed to my\nimagination as if the portrait had grown womanly, and the original\nremained a child.  Although her face was quite bright and happy,\nthere was a tranquillity about it, and about her - a quiet, good,\ncalm spirit - that I never have forgotten; that I shall never\nforget.  This was his little housekeeper, his daughter Agnes, Mr.\nWickfield said.  When I heard how he said it, and saw how he held\nher hand, I guessed what the one motive of his life was.\n\nShe had a little basket-trifle hanging at her side, with keys in\nit; and she looked as staid and as discreet a housekeeper as the\nold house could have.  She listened to her father as he told her\nabout me, with a pleasant face; and when he had concluded, proposed\nto my aunt that we should go upstairs and see my room.  We all went\ntogether, she before us: and a glorious old room it was, with more\noak beams, and diamond panes; and the broad balustrade going all\nthe way up to it.\n\nI cannot call to mind where or when, in my childhood, I had seen a\nstained glass window in a church.  Nor do I recollect its subject. \nBut I know that when I saw her turn round, in the grave light of\nthe old staircase, and wait for us, above, I thought of that\nwindow; and I associated something of its tranquil brightness with\nAgnes Wickfield ever afterwards.\n\nMy aunt was as happy as I was, in the arrangement made for me; and\nwe went down to the drawing-room again, well pleased and gratified. \nAs she would not hear of staying to dinner, lest she should by any\nchance fail to arrive at home with the grey pony before dark; and\nas I apprehend Mr. Wickfield knew her too well to argue any point\nwith her; some lunch was provided for her there, and Agnes went\nback to her governess, and Mr. Wickfield to his office.  So we were\nleft to take leave of one another without any restraint.\n\nShe told me that everything would be arranged for me by Mr.\nWickfield, and that I should want for nothing, and gave me the\nkindest words and the best advice.\n\n'Trot,' said my aunt in conclusion, 'be a credit to yourself, to\nme, and Mr. Dick, and Heaven be with you!'\n\nI was greatly overcome, and could only thank her, again and again,\nand send my love to Mr. Dick.\n\n'Never,' said my aunt, 'be mean in anything; never be false; never\nbe cruel.  Avoid those three vices, Trot, and I can always be\nhopeful of you.'\n\nI promised, as well as I could, that I would not abuse her kindness\nor forget her admonition.\n\n'The pony's at the door,' said my aunt, 'and I am off! Stay here.'\nWith these words she embraced me hastily, and went out of the room,\nshutting the door after her.  At first I was startled by so abrupt\na departure, and almost feared I had displeased her; but when I\nlooked into the street, and saw how dejectedly she got into the\nchaise, and drove away without looking up, I understood her better\nand did not do her that injustice.\n\nBy five o'clock, which was Mr. Wickfield's dinner-hour, I had\nmustered up my spirits again, and was ready for my knife and fork. \nThe cloth was only laid for us two; but Agnes was waiting in the\ndrawing-room before dinner, went down with her father, and sat\nopposite to him at table.  I doubted whether he could have dined\nwithout her.\n\nWe did not stay there, after dinner, but came upstairs into the\ndrawing-room again: in one snug corner of which, Agnes set glasses\nfor her father, and a decanter of port wine.  I thought he would\nhave missed its usual flavour, if it had been put there for him by\nany other hands.\n\nThere he sat, taking his wine, and taking a good deal of it, for\ntwo hours; while Agnes played on the piano, worked, and talked to\nhim and me.  He was, for the most part, gay and cheerful with us;\nbut sometimes his eyes rested on her, and he fell into a brooding\nstate, and was silent.  She always observed this quickly, I\nthought, and always roused him with a question or caress.  Then he\ncame out of his meditation, and drank more wine.\n\nAgnes made the tea, and presided over it; and the time passed away\nafter it, as after dinner, until she went to bed; when her father\ntook her in his arms and kissed her, and, she being gone, ordered\ncandles in his office.  Then I went to bed too.\n\nBut in the course of the evening I had rambled down to the door,\nand a little way along the street, that I might have another peep\nat the old houses, and the grey Cathedral; and might think of my\ncoming through that old city on my journey, and of my passing the\nvery house I lived in, without knowing it.  As I came back, I saw\nUriah Heep shutting up the office; and feeling friendly towards\neverybody, went in and spoke to him, and at parting, gave him my\nhand.  But oh, what a clammy hand his was! as ghostly to the touch\nas to the sight!  I rubbed mine afterwards, to warm it, AND TO RUB\nHIS OFF.\n\nIt was such an uncomfortable hand, that, when I went to my room, it\nwas still cold and wet upon my memory.  Leaning out of the window,\nand seeing one of the faces on the beam-ends looking at me\nsideways, I fancied it was Uriah Heep got up there somehow, and\nshut him out in a hurry.\n\n\n\nCHAPTER 16\nI AM A NEW BOY IN MORE SENSES THAN ONE\n\n\nNext morning, after breakfast, I entered on school life again.  I\nwent, accompanied by Mr. Wickfield, to the scene of my future\nstudies - a grave building in a courtyard, with a learned air about\nit that seemed very well suited to the stray rooks and jackdaws who\ncame down from the Cathedral towers to walk with a clerkly bearing\non the grass-plot - and was introduced to my new master, Doctor\nStrong.\n\nDoctor Strong looked almost as rusty, to my thinking, as the tall\niron rails and gates outside the house; and almost as stiff and\nheavy as the great stone urns that flanked them, and were set up,\non the top of the red-brick wall, at regular distances all round\nthe court, like sublimated skittles, for Time to play at.  He was\nin his library (I mean Doctor Strong was), with his clothes not\nparticularly well brushed, and his hair not particularly well\ncombed; his knee-smalls unbraced; his long black gaiters\nunbuttoned; and his shoes yawning like two caverns on the\nhearth-rug.  Turning upon me a lustreless eye, that reminded me of\na long-forgotten blind old horse who once used to crop the grass,\nand tumble over the graves, in Blunderstone churchyard, he said he\nwas glad to see me: and then he gave me his hand; which I didn't\nknow what to do with, as it did nothing for itself.\n\nBut, sitting at work, not far from Doctor Strong, was a very pretty\nyoung lady - whom he called Annie, and who was his daughter, I\nsupposed - who got me out of my difficulty by kneeling down to put\nDoctor Strong's shoes on, and button his gaiters, which she did\nwith great cheerfulness and quickness.  When she had finished, and\nwe were going out to the schoolroom, I was much surprised to hear\nMr. Wickfield, in bidding her good morning, address her as 'Mrs.\nStrong'; and I was wondering could she be Doctor Strong's son's\nwife, or could she be Mrs. Doctor Strong, when Doctor Strong\nhimself unconsciously enlightened me.\n\n'By the by, Wickfield,' he said, stopping in a passage with his\nhand on my shoulder; 'you have not found any suitable provision for\nmy wife's cousin yet?'\n\n'No,' said Mr. Wickfield.  'No.  Not yet.'\n\n'I could wish it done as soon as it can be done, Wickfield,' said\nDoctor Strong, 'for Jack Maldon is needy, and idle; and of those\ntwo bad things, worse things sometimes come.  What does Doctor\nWatts say,' he added, looking at me, and moving his head to the\ntime of his quotation, '\"Satan finds some mischief still, for idle\nhands to do.\"'\n\n'Egad, Doctor,' returned Mr. Wickfield, 'if Doctor Watts knew\nmankind, he might have written, with as much truth, \"Satan finds\nsome mischief still, for busy hands to do.\" The busy people achieve\ntheir full share of mischief in the world, you may rely upon it. \nWhat have the people been about, who have been the busiest in\ngetting money, and in getting power, this century or two?  No\nmischief?'\n\n'Jack Maldon will never be very busy in getting either, I expect,'\nsaid Doctor Strong, rubbing his chin thoughtfully.\n\n'Perhaps not,' said Mr. Wickfield; 'and you bring me back to the\nquestion, with an apology for digressing.  No, I have not been able\nto dispose of Mr. Jack Maldon yet.  I believe,' he said this with\nsome hesitation, 'I penetrate your motive, and it makes the thing\nmore difficult.'\n\n'My motive,' returned Doctor Strong, 'is to make some suitable\nprovision for a cousin, and an old playfellow, of Annie's.'\n\n'Yes, I know,' said Mr. Wickfield; 'at home or abroad.'\n\n'Aye!' replied the Doctor, apparently wondering why he emphasized\nthose words so much.  'At home or abroad.'\n\n'Your own expression, you know,' said Mr. Wickfield.  'Or abroad.'\n\n'Surely,' the Doctor answered.  'Surely.  One or other.'\n\n'One or other?  Have you no choice?' asked Mr. Wickfield.\n\n'No,' returned the Doctor.\n\n'No?' with astonishment.\n\n'Not the least.'\n\n'No motive,' said Mr. Wickfield, 'for meaning abroad, and not at\nhome?'\n\n'No,' returned the Doctor.\n\n'I am bound to believe you, and of course I do believe you,' said\nMr. Wickfield.  'It might have simplified my office very much, if\nI had known it before.  But I confess I entertained another\nimpression.'\n\nDoctor Strong regarded him with a puzzled and doubting look, which\nalmost immediately subsided into a smile that gave me great\nencouragement; for it was full of amiability and sweetness, and\nthere was a simplicity in it, and indeed in his whole manner, when\nthe studious, pondering frost upon it was got through, very\nattractive and hopeful to a young scholar like me.  Repeating 'no',\nand 'not the least', and other short assurances to the same\npurport, Doctor Strong jogged on before us, at a queer, uneven\npace; and we followed: Mr. Wickfield, looking grave, I observed,\nand shaking his head to himself, without knowing that I saw him.\n\nThe schoolroom was a pretty large hall, on the quietest side of the\nhouse, confronted by the stately stare of some half-dozen of the\ngreat urns, and commanding a peep of an old secluded garden\nbelonging to the Doctor, where the peaches were ripening on the\nsunny south wall.  There were two great aloes, in tubs, on the turf\noutside the windows; the broad hard leaves of which plant (looking\nas if they were made of painted tin) have ever since, by\nassociation, been symbolical to me of silence and retirement. \nAbout five-and-twenty boys were studiously engaged at their books\nwhen we went in, but they rose to give the Doctor good morning, and\nremained standing when they saw Mr. Wickfield and me.\n\n'A new boy, young gentlemen,' said the Doctor; 'Trotwood\nCopperfield.'\n\nOne Adams, who was the head-boy, then stepped out of his place and\nwelcomed me.  He looked like a young clergyman, in his white\ncravat, but he was very affable and good-humoured; and he showed me\nmy place, and presented me to the masters, in a gentlemanly way\nthat would have put me at my ease, if anything could.\n\nIt seemed to me so long, however, since I had been among such boys,\nor among any companions of my own age, except Mick Walker and Mealy\nPotatoes, that I felt as strange as ever I have done in my life. \nI was so conscious of having passed through scenes of which they\ncould have no knowledge, and of having acquired experiences foreign\nto my age, appearance, and condition as one of them, that I half\nbelieved it was an imposture to come there as an ordinary little\nschoolboy.  I had become, in the Murdstone and Grinby time, however\nshort or long it may have been, so unused to the sports and games\nof boys, that I knew I was awkward and inexperienced in the\ncommonest things belonging to them.  Whatever I had learnt, had so\nslipped away from me in the sordid cares of my life from day to\nnight, that now, when I was examined about what I knew, I knew\nnothing, and was put into the lowest form of the school.  But,\ntroubled as I was, by my want of boyish skill, and of book-learning\ntoo, I was made infinitely more uncomfortable by the consideration,\nthat, in what I did know, I was much farther removed from my\ncompanions than in what I did not.  My mind ran upon what they\nwould think, if they knew of my familiar acquaintance with the\nKing's Bench Prison?  Was there anything about me which would\nreveal my proceedings in connexion with the Micawber family - all\nthose pawnings, and sellings, and suppers - in spite of myself? \nSuppose some of the boys had seen me coming through Canterbury,\nwayworn and ragged, and should find me out?  What would they say,\nwho made so light of money, if they could know how I had scraped my\nhalfpence together, for the purchase of my daily saveloy and beer,\nor my slices of pudding?  How would it affect them, who were so\ninnocent of London life, and London streets, to discover how\nknowing I was (and was ashamed to be) in some of the meanest phases\nof both?  All this ran in my head so much, on that first day at\nDoctor Strong's, that I felt distrustful of my slightest look and\ngesture; shrunk within myself whensoever I was approached by one of\nmy new schoolfellows; and hurried off the minute school was over,\nafraid of committing myself in my response to any friendly notice\nor advance.\n\nBut there was such an influence in Mr. Wickfield's old house, that\nwhen I knocked at it, with my new school-books under my arm, I\nbegan to feel my uneasiness softening away.  As I went up to my\nairy old room, the grave shadow of the staircase seemed to fall\nupon my doubts and fears, and to make the past more indistinct.  I\nsat there, sturdily conning my books, until dinner-time (we were\nout of school for good at three); and went down, hopeful of\nbecoming a passable sort of boy yet.\n\nAgnes was in the drawing-room, waiting for her father, who was\ndetained by someone in his office.  She met me with her pleasant\nsmile, and asked me how I liked the school.  I told her I should\nlike it very much, I hoped; but I was a little strange to it at\nfirst.\n\n'You have never been to school,' I said, 'have you?'\n'Oh yes!  Every day.'\n\n'Ah, but you mean here, at your own home?'\n\n'Papa couldn't spare me to go anywhere else,' she answered, smiling\nand shaking her head.  'His housekeeper must be in his house, you\nknow.'\n\n'He is very fond of you, I am sure,' I said.\n\nShe nodded 'Yes,' and went to the door to listen for his coming up,\nthat she might meet him on the stairs.  But, as he was not there,\nshe came back again.\n\n'Mama has been dead ever since I was born,' she said, in her quiet\nway.  'I only know her picture, downstairs.  I saw you looking at\nit yesterday.  Did you think whose it was?'\n\nI told her yes, because it was so like herself.\n\n'Papa says so, too,' said Agnes, pleased.  'Hark!  That's papa\nnow!'\n\nHer bright calm face lighted up with pleasure as she went to meet\nhim, and as they came in, hand in hand.  He greeted me cordially;\nand told me I should certainly be happy under Doctor Strong, who\nwas one of the gentlest of men.\n\n'There may be some, perhaps - I don't know that there are - who\nabuse his kindness,' said Mr. Wickfield.  'Never be one of those,\nTrotwood, in anything.  He is the least suspicious of mankind; and\nwhether that's a merit, or whether it's a blemish, it deserves\nconsideration in all dealings with the Doctor, great or small.'\n\nHe spoke, I thought, as if he were weary, or dissatisfied with\nsomething; but I did not pursue the question in my mind, for dinner\nwas just then announced, and we went down and took the same seats\nas before.\n\nWe had scarcely done so, when Uriah Heep put in his red head and\nhis lank hand at the door, and said:\n\n'Here's Mr. Maldon begs the favour of a word, sir.'\n\n'I am but this moment quit of Mr. Maldon,' said his master.\n\n'Yes, sir,' returned Uriah; 'but Mr. Maldon has come back, and he\nbegs the favour of a word.'\n\nAs he held the door open with his hand, Uriah looked at me, and\nlooked at Agnes, and looked at the dishes, and looked at the\nplates, and looked at every object in the room, I thought, - yet\nseemed to look at nothing; he made such an appearance all the while\nof keeping his red eyes dutifully on his master.\n'I beg your pardon.  It's only to say, on reflection,' observed a\nvoice behind Uriah, as Uriah's head was pushed away, and the\nspeaker's substituted - 'pray excuse me for this intrusion - that\nas it seems I have no choice in the matter, the sooner I go abroad\nthe better.  My cousin Annie did say, when we talked of it, that\nshe liked to have her friends within reach rather than to have them\nbanished, and the old Doctor -'\n\n'Doctor Strong, was that?' Mr. Wickfield interposed, gravely.\n\n'Doctor Strong, of course,' returned the other; 'I call him the old\nDoctor; it's all the same, you know.'\n\n'I don't know,' returned Mr. Wickfield.\n\n'Well, Doctor Strong,' said the other - 'Doctor Strong was of the\nsame mind, I believed.  But as it appears from the course you take\nwith me he has changed his mind, why there's no more to be said,\nexcept that the sooner I am off, the better.  Therefore, I thought\nI'd come back and say, that the sooner I am off the better.  When\na plunge is to be made into the water, it's of no use lingering on\nthe bank.'\n\n'There shall be as little lingering as possible, in your case, Mr.\nMaldon, you may depend upon it,' said Mr. Wickfield.\n\n'Thank'ee,' said the other.  'Much obliged.  I don't want to look\na gift-horse in the mouth, which is not a gracious thing to do;\notherwise, I dare say, my cousin Annie could easily arrange it in\nher own way.  I suppose Annie would only have to say to the old\nDoctor -'\n\n'Meaning that Mrs. Strong would only have to say to her husband -\ndo I follow you?' said Mr. Wickfield.\n\n'Quite so,' returned the other, '- would only have to say, that she\nwanted such and such a thing to be so and so; and it would be so\nand so, as a matter of course.'\n\n'And why as a matter of course, Mr. Maldon?' asked Mr. Wickfield,\nsedately eating his dinner.\n\n'Why, because Annie's a charming young girl, and the old Doctor -\nDoctor Strong, I mean - is not quite a charming young boy,' said\nMr. Jack Maldon, laughing.  'No offence to anybody, Mr. Wickfield. \nI only mean that I suppose some compensation is fair and reasonable\nin that sort of marriage.'\n\n'Compensation to the lady, sir?' asked Mr. Wickfield gravely.\n\n'To the lady, sir,' Mr. Jack Maldon answered, laughing.  But\nappearing to remark that Mr. Wickfield went on with his dinner in\nthe same sedate, immovable manner, and that there was no hope of\nmaking him relax a muscle of his face, he added:\n'However, I have said what I came to say, and, with another apology\nfor this intrusion, I may take myself off.  Of course I shall\nobserve your directions, in considering the matter as one to be\narranged between you and me solely, and not to be referred to, up\nat the Doctor's.'\n\n'Have you dined?' asked Mr. Wickfield, with a motion of his hand\ntowards the table.\n\n'Thank'ee.  I am going to dine,' said Mr. Maldon, 'with my cousin\nAnnie.  Good-bye!'\n\nMr. Wickfield, without rising, looked after him thoughtfully as he\nwent out.  He was rather a shallow sort of young gentleman, I\nthought, with a handsome face, a rapid utterance, and a confident,\nbold air.  And this was the first I ever saw of Mr. Jack Maldon;\nwhom I had not expected to see so soon, when I heard the Doctor\nspeak of him that morning.\n\nWhen we had dined, we went upstairs again, where everything went on\nexactly as on the previous day.  Agnes set the glasses and\ndecanters in the same corner, and Mr. Wickfield sat down to drink,\nand drank a good deal.  Agnes played the piano to him, sat by him,\nand worked and talked, and played some games at dominoes with me. \nIn good time she made tea; and afterwards, when I brought down my\nbooks, looked into them, and showed me what she knew of them (which\nwas no slight matter, though she said it was), and what was the\nbest way to learn and understand them.  I see her, with her modest,\norderly, placid manner, and I hear her beautiful calm voice, as I\nwrite these words.  The influence for all good, which she came to\nexercise over me at a later time, begins already to descend upon my\nbreast.  I love little Em'ly, and I don't love Agnes - no, not at\nall in that way - but I feel that there are goodness, peace, and\ntruth, wherever Agnes is; and that the soft light of the coloured\nwindow in the church, seen long ago, falls on her always, and on me\nwhen I am near her, and on everything around.\n\nThe time having come for her withdrawal for the night, and she\nhaving left us, I gave Mr. Wickfield my hand, preparatory to going\naway myself.  But he checked me and said: 'Should you like to stay\nwith us, Trotwood, or to go elsewhere?'\n\n'To stay,' I answered, quickly.\n\n'You are sure?'\n\n'If you please.  If I may!'\n\n'Why, it's but a dull life that we lead here, boy, I am afraid,' he\nsaid.\n\n'Not more dull for me than Agnes, sir.  Not dull at all!'\n\n'Than Agnes,' he repeated, walking slowly to the great\nchimney-piece, and leaning against it.  'Than Agnes!'\n\nHe had drank wine that evening (or I fancied it), until his eyes\nwere bloodshot.  Not that I could see them now, for they were cast\ndown, and shaded by his hand; but I had noticed them a little while\nbefore.\n\n'Now I wonder,' he muttered, 'whether my Agnes tires of me.  When\nshould I ever tire of her!  But that's different, that's quite\ndifferent.'\n\nHe was musing, not speaking to me; so I remained quiet.\n\n'A dull old house,' he said, 'and a monotonous life; but I must\nhave her near me.  I must keep her near me.  If the thought that I\nmay die and leave my darling, or that my darling may die and leave\nme, comes like a spectre, to distress my happiest hours, and is\nonly to be drowned in -'\n\nHe did not supply the word; but pacing slowly to the place where he\nhad sat, and mechanically going through the action of pouring wine\nfrom the empty decanter, set it down and paced back again.\n\n'If it is miserable to bear, when she is here,' he said, 'what\nwould it be, and she away?  No, no, no.  I cannot try that.'\n\nHe leaned against the chimney-piece, brooding so long that I could\nnot decide whether to run the risk of disturbing him by going, or\nto remain quietly where I was, until he should come out of his\nreverie.  At length he aroused himself, and looked about the room\nuntil his eyes encountered mine.\n\n'Stay with us, Trotwood, eh?' he said in his usual manner, and as\nif he were answering something I had just said.  'I am glad of it. \nYou are company to us both.  It is wholesome to have you here. \nWholesome for me, wholesome for Agnes, wholesome perhaps for all of\nus.'\n\n'I am sure it is for me, sir,' I said.  'I am so glad to be here.'\n\n'That's a fine fellow!' said Mr. Wickfield.  'As long as you are\nglad to be here, you shall stay here.'  He shook hands with me upon\nit, and clapped me on the back; and told me that when I had\nanything to do at night after Agnes had left us, or when I wished\nto read for my own pleasure, I was free to come down to his room,\nif he were there and if I desired it for company's sake, and to sit\nwith him.  I thanked him for his consideration; and, as he went\ndown soon afterwards, and I was not tired, went down too, with a\nbook in my hand, to avail myself, for half-an-hour, of his\npermission.\n\nBut, seeing a light in the little round office, and immediately\nfeeling myself attracted towards Uriah Heep, who had a sort of\nfascination for me, I went in there instead.  I found Uriah reading\na great fat book, with such demonstrative attention, that his lank\nforefinger followed up every line as he read, and made clammy\ntracks along the page (or so I fully believed) like a snail.\n\n'You are working late tonight, Uriah,' says I.\n\n'Yes, Master Copperfield,' says Uriah.\n\nAs I was getting on the stool opposite, to talk to him more\nconveniently, I observed that he had not such a thing as a smile\nabout him, and that he could only widen his mouth and make two hard\ncreases down his cheeks, one on each side, to stand for one.\n\n'I am not doing office-work, Master Copperfield,' said Uriah.\n\n'What work, then?' I asked.\n\n'I am improving my legal knowledge, Master Copperfield,' said\nUriah.  'I am going through Tidd's Practice.  Oh, what a writer Mr.\nTidd is, Master Copperfield!'\n\nMy stool was such a tower of observation, that as I watched him\nreading on again, after this rapturous exclamation, and following\nup the lines with his forefinger, I observed that his nostrils,\nwhich were thin and pointed, with sharp dints in them, had a\nsingular and most uncomfortable way of expanding and contracting\nthemselves - that they seemed to twinkle instead of his eyes, which\nhardly ever twinkled at all.\n\n'I suppose you are quite a great lawyer?' I said, after looking at\nhim for some time.\n\n'Me, Master Copperfield?' said Uriah.  'Oh, no!  I'm a very umble\nperson.'\n\nIt was no fancy of mine about his hands, I observed; for he\nfrequently ground the palms against each other as if to squeeze\nthem dry and warm, besides often wiping them, in a stealthy way, on\nhis pocket-handkerchief.\n\n'I am well aware that I am the umblest person going,' said Uriah\nHeep, modestly; 'let the other be where he may.  My mother is\nlikewise a very umble person.  We live in a numble abode, Master\nCopperfield, but have much to be thankful for.  My father's former\ncalling was umble.  He was a sexton.'\n\n'What is he now?' I asked.\n\n'He is a partaker of glory at present, Master Copperfield,' said\nUriah Heep.  'But we have much to be thankful for.  How much have\nI to be thankful for in living with Mr. Wickfield!'\n\nI asked Uriah if he had been with Mr. Wickfield long?\n\n'I have been with him, going on four year, Master Copperfield,'\nsaid Uriah; shutting up his book, after carefully marking the place\nwhere he had left off.  'Since a year after my father's death.  How\nmuch have I to be thankful for, in that!  How much have I to be\nthankful for, in Mr. Wickfield's kind intention to give me my\narticles, which would otherwise not lay within the umble means of\nmother and self!'\n\n'Then, when your articled time is over, you'll be a regular lawyer,\nI suppose?' said I.\n\n'With the blessing of Providence, Master Copperfield,' returned\nUriah.\n\n'Perhaps you'll be a partner in Mr. Wickfield's business, one of\nthese days,' I said, to make myself agreeable; 'and it will be\nWickfield and Heep, or Heep late Wickfield.'\n\n'Oh no, Master Copperfield,' returned Uriah, shaking his head, 'I\nam much too umble for that!'\n\nHe certainly did look uncommonly like the carved face on the beam\noutside my window, as he sat, in his humility, eyeing me sideways,\nwith his mouth widened, and the creases in his cheeks.\n\n'Mr.  Wickfield is a most excellent man, Master Copperfield,' said\nUriah.  'If you have known him long, you know it, I am sure, much\nbetter than I can inform you.'\n\nI replied that I was certain he was; but that I had not known him\nlong myself, though he was a friend of my aunt's.\n\n'Oh, indeed, Master Copperfield,' said Uriah.  'Your aunt is a\nsweet lady, Master Copperfield!'\n\nHe had a way of writhing when he wanted to express enthusiasm,\nwhich was very ugly; and which diverted my attention from the\ncompliment he had paid my relation, to the snaky twistings of his\nthroat and body.\n\n'A sweet lady, Master Copperfield!' said Uriah Heep.  'She has a\ngreat admiration for Miss Agnes, Master Copperfield, I believe?'\n\nI said, 'Yes,' boldly; not that I knew anything about it, Heaven\nforgive me!\n\n'I hope you have, too, Master Copperfield,' said Uriah.  'But I am\nsure you must have.'\n\n'Everybody must have,' I returned.\n\n'Oh, thank you, Master Copperfield,' said Uriah Heep, 'for that\nremark!  It is so true!  Umble as I am, I know it is so true!  Oh,\nthank you, Master Copperfield!'\nHe writhed himself quite off his stool in the excitement of his\nfeelings, and, being off, began to make arrangements for going\nhome.\n\n'Mother will be expecting me,' he said, referring to a pale,\ninexpressive-faced watch in his pocket, 'and getting uneasy; for\nthough we are very umble, Master Copperfield, we are much attached\nto one another.  If you would come and see us, any afternoon, and\ntake a cup of tea at our lowly dwelling, mother would be as proud\nof your company as I should be.'\n\nI said I should be glad to come.\n\n'Thank you, Master Copperfield,' returned Uriah, putting his book\naway upon the shelf - 'I suppose you stop here, some time, Master\nCopperfield?'\n\nI said I was going to be brought up there, I believed, as long as\nI remained at school.\n\n'Oh, indeed!' exclaimed Uriah.  'I should think YOU would come into\nthe business at last, Master Copperfield!'\n\nI protested that I had no views of that sort, and that no such\nscheme was entertained in my behalf by anybody; but Uriah insisted\non blandly replying to all my assurances, 'Oh, yes, Master\nCopperfield, I should think you would, indeed!' and, 'Oh, indeed,\nMaster Copperfield, I should think you would, certainly!' over and\nover again.  Being, at last, ready to leave the office for the\nnight, he asked me if it would suit my convenience to have the\nlight put out; and on my answering 'Yes,' instantly extinguished\nit.  After shaking hands with me - his hand felt like a fish, in\nthe dark - he opened the door into the street a very little, and\ncrept out, and shut it, leaving me to grope my way back into the\nhouse: which cost me some trouble and a fall over his stool.  This\nwas the proximate cause, I suppose, of my dreaming about him, for\nwhat appeared to me to be half the night; and dreaming, among other\nthings, that he had launched Mr. Peggotty's house on a piratical\nexpedition, with a black flag at the masthead, bearing the\ninscription 'Tidd's Practice', under which diabolical ensign he was\ncarrying me and little Em'ly to the Spanish Main, to be drowned.\n\nI got a little the better of my uneasiness when I went to school\nnext day, and a good deal the better next day, and so shook it off\nby degrees, that in less than a fortnight I was quite at home, and\nhappy, among my new companions.  I was awkward enough in their\ngames, and backward enough in their studies; but custom would\nimprove me in the first respect, I hoped, and hard work in the\nsecond.  Accordingly, I went to work very hard, both in play and in\nearnest, and gained great commendation.  And, in a very little\nwhile, the Murdstone and Grinby life became so strange to me that\nI hardly believed in it, while my present life grew so familiar,\nthat I seemed to have been leading it a long time.\n\nDoctor Strong's was an excellent school; as different from Mr.\nCreakle's as good is from evil.  It was very gravely and decorously\nordered, and on a sound system; with an appeal, in everything, to\nthe honour and good faith of the boys, and an avowed intention to\nrely on their possession of those qualities unless they proved\nthemselves unworthy of it, which worked wonders.  We all felt that\nwe had a part in the management of the place, and in sustaining its\ncharacter and dignity.  Hence, we soon became warmly attached to it\n- I am sure I did for one, and I never knew, in all my time, of any\nother boy being otherwise - and learnt with a good will, desiring\nto do it credit.  We had noble games out of hours, and plenty of\nliberty; but even then, as I remember, we were well spoken of in\nthe town, and rarely did any disgrace, by our appearance or manner,\nto the reputation of Doctor Strong and Doctor Strong's boys.\n\nSome of the higher scholars boarded in the Doctor's house, and\nthrough them I learned, at second hand, some particulars of the\nDoctor's history - as, how he had not yet been married twelve\nmonths to the beautiful young lady I had seen in the study, whom he\nhad married for love; for she had not a sixpence, and had a world\nof poor relations (so our fellows said) ready to swarm the Doctor\nout of house and home.  Also, how the Doctor's cogitating manner\nwas attributable to his being always engaged in looking out for\nGreek roots; which, in my innocence and ignorance, I supposed to be\na botanical furor on the Doctor's part, especially as he always\nlooked at the ground when he walked about, until I understood that\nthey were roots of words, with a view to a new Dictionary which he\nhad in contemplation.  Adams, our head-boy, who had a turn for\nmathematics, had made a calculation, I was informed, of the time\nthis Dictionary would take in completing, on the Doctor's plan, and\nat the Doctor's rate of going.  He considered that it might be done\nin one thousand six hundred and forty-nine years, counting from the\nDoctor's last, or sixty-second, birthday.\n\nBut the Doctor himself was the idol of the whole school: and it\nmust have been a badly composed school if he had been anything\nelse, for he was the kindest of men; with a simple faith in him\nthat might have touched the stone hearts of the very urns upon the\nwall.  As he walked up and down that part of the courtyard which\nwas at the side of the house, with the stray rooks and jackdaws\nlooking after him with their heads cocked slyly, as if they knew\nhow much more knowing they were in worldly affairs than he, if any\nsort of vagabond could only get near enough to his creaking shoes\nto attract his attention to one sentence of a tale of distress,\nthat vagabond was made for the next two days.  It was so notorious\nin the house, that the masters and head-boys took pains to cut\nthese marauders off at angles, and to get out of windows, and turn\nthem out of the courtyard, before they could make the Doctor aware\nof their presence; which was sometimes happily effected within a\nfew yards of him, without his knowing anything of the matter, as he\njogged to and fro.  Outside his own domain, and unprotected, he was\na very sheep for the shearers.  He would have taken his gaiters off\nhis legs, to give away.  In fact, there was a story current among\nus (I have no idea, and never had, on what authority, but I have\nbelieved it for so many years that I feel quite certain it is\ntrue), that on a frosty day, one winter-time, he actually did\nbestow his gaiters on a beggar-woman, who occasioned some scandal\nin the neighbourhood by exhibiting a fine infant from door to door,\nwrapped in those garments, which were universally recognized, being\nas well known in the vicinity as the Cathedral.  The legend added\nthat the only person who did not identify them was the Doctor\nhimself, who, when they were shortly afterwards displayed at the\ndoor of a little second-hand shop of no very good repute, where\nsuch things were taken in exchange for gin, was more than once\nobserved to handle them approvingly, as if admiring some curious\nnovelty in the pattern, and considering them an improvement on his\nown.\n\nIt was very pleasant to see the Doctor with his pretty young wife. \nHe had a fatherly, benignant way of showing his fondness for her,\nwhich seemed in itself to express a good man.  I often saw them\nwalking in the garden where the peaches were, and I sometimes had\na nearer observation of them in the study or the parlour.  She\nappeared to me to take great care of the Doctor, and to like him\nvery much, though I never thought her vitally interested in the\nDictionary: some cumbrous fragments of which work the Doctor always\ncarried in his pockets, and in the lining of his hat, and generally\nseemed to be expounding to her as they walked about.\n\nI saw a good deal of Mrs. Strong, both because she had taken a\nliking for me on the morning of my introduction to the Doctor, and\nwas always afterwards kind to me, and interested in me; and because\nshe was very fond of Agnes, and was often backwards and forwards at\nour house.  There was a curious constraint between her and Mr.\nWickfield, I thought (of whom she seemed to be afraid), that never\nwore off.  When she came there of an evening, she always shrunk\nfrom accepting his escort home, and ran away with me instead.  And\nsometimes, as we were running gaily across the Cathedral yard\ntogether, expecting to meet nobody, we would meet Mr. Jack Maldon,\nwho was always surprised to see us.\n\nMrs. Strong's mama was a lady I took great delight in.  Her name\nwas Mrs. Markleham; but our boys used to call her the Old Soldier,\non account of her generalship, and the skill with which she\nmarshalled great forces of relations against the Doctor.  She was\na little, sharp-eyed woman, who used to wear, when she was dressed,\none unchangeable cap, ornamented with some artificial flowers, and\ntwo artificial butterflies supposed to be hovering above the\nflowers.  There was a superstition among us that this cap had come\nfrom France, and could only originate in the workmanship of that\ningenious nation: but all I certainly know about it, is, that it\nalways made its appearance of an evening, wheresoever Mrs.\nMarkleham made HER appearance; that it was carried about to\nfriendly meetings in a Hindoo basket; that the butterflies had the\ngift of trembling constantly; and that they improved the shining\nhours at Doctor Strong's expense, like busy bees.\n\nI observed the Old Soldier - not to adopt the name disrespectfully\n- to pretty good advantage, on a night which is made memorable to\nme by something else I shall relate.  It was the night of a little\nparty at the Doctor's, which was given on the occasion of Mr. Jack\nMaldon's departure for India, whither he was going as a cadet, or\nsomething of that kind: Mr. Wickfield having at length arranged the\nbusiness.  It happened to be the Doctor's birthday, too.  We had\nhad a holiday, had made presents to him in the morning, had made a\nspeech to him through the head-boy, and had cheered him until we\nwere hoarse, and until he had shed tears.  And now, in the evening,\nMr. Wickfield, Agnes, and I, went to have tea with him in his\nprivate capacity.\n\nMr. Jack Maldon was there, before us.  Mrs. Strong, dressed in\nwhite, with cherry-coloured ribbons, was playing the piano, when we\nwent in; and he was leaning over her to turn the leaves.  The clear\nred and white of her complexion was not so blooming and flower-like\nas usual, I thought, when she turned round; but she looked very\npretty, Wonderfully pretty.\n\n'I have forgotten, Doctor,' said Mrs. Strong's mama, when we were\nseated, 'to pay you the compliments of the day - though they are,\nas you may suppose, very far from being mere compliments in my\ncase.  Allow me to wish you many happy returns.'\n\n'I thank you, ma'am,' replied the Doctor.\n\n'Many, many, many, happy returns,' said the Old Soldier.  'Not only\nfor your own sake, but for Annie's, and John Maldon's, and many\nother people's.  It seems but yesterday to me, John, when you were\na little creature, a head shorter than Master Copperfield, making\nbaby love to Annie behind the gooseberry bushes in the\nback-garden.'\n\n'My dear mama,' said Mrs. Strong, 'never mind that now.'\n\n'Annie, don't be absurd,' returned her mother.  'If you are to\nblush to hear of such things now you are an old married woman, when\nare you not to blush to hear of them?'\n\n'Old?' exclaimed Mr. Jack Maldon.  'Annie?  Come!'\n\n'Yes, John,' returned the Soldier.  'Virtually, an old married\nwoman.  Although not old by years - for when did you ever hear me\nsay, or who has ever heard me say, that a girl of twenty was old by\nyears! - your cousin is the wife of the Doctor, and, as such, what\nI have described her.  It is well for you, John, that your cousin\nis the wife of the Doctor.  You have found in him an influential\nand kind friend, who will be kinder yet, I venture to predict, if\nyou deserve it.  I have no false pride.  I never hesitate to admit,\nfrankly, that there are some members of our family who want a\nfriend.  You were one yourself, before your cousin's influence\nraised up one for you.'\n\nThe Doctor, in the goodness of his heart, waved his hand as if to\nmake light of it, and save Mr. Jack Maldon from any further\nreminder.  But Mrs. Markleham changed her chair for one next the\nDoctor's, and putting her fan on his coat-sleeve, said:\n\n'No, really, my dear Doctor, you must excuse me if I appear to\ndwell on this rather, because I feel so very strongly.  I call it\nquite my monomania, it is such a subject of mine.  You are a\nblessing to us.  You really are a Boon, you know.'\n\n'Nonsense, nonsense,' said the Doctor.\n\n'No, no, I beg your pardon,' retorted the Old Soldier.  'With\nnobody present, but our dear and confidential friend Mr. Wickfield,\nI cannot consent to be put down.  I shall begin to assert the\nprivileges of a mother-in-law, if you go on like that, and scold\nyou.  I am perfectly honest and outspoken.  What I am saying, is\nwhat I said when you first overpowered me with surprise - you\nremember how surprised I was? - by proposing for Annie.  Not that\nthere was anything so very much out of the way, in the mere fact of\nthe proposal - it would be ridiculous to say that! - but because,\nyou having known her poor father, and having known her from a baby\nsix months old, I hadn't thought of you in such a light at all, or\nindeed as a marrying man in any way, - simply that, you know.'\n\n'Aye, aye,' returned the Doctor, good-humouredly.  'Never mind.'\n\n'But I DO mind,' said the Old Soldier, laying her fan upon his\nlips.  'I mind very much.  I recall these things that I may be\ncontradicted if I am wrong.  Well!  Then I spoke to Annie, and I\ntold her what had happened.  I said, \"My dear, here's Doctor Strong\nhas positively been and made you the subject of a handsome\ndeclaration and an offer.\" Did I press it in the least?  No.  I\nsaid, \"Now, Annie, tell me the truth this moment; is your heart\nfree?\"  \"Mama,\" she said crying, \"I am extremely young\" - which was\nperfectly true - \"and I hardly know if I have a heart at all.\" \n\"Then, my dear,\" I said, \"you may rely upon it, it's free.  At all\nevents, my love,\" said I, \"Doctor Strong is in an agitated state of\nmind, and must be answered.  He cannot be kept in his present state\nof suspense.\"  \"Mama,\" said Annie, still crying, \"would he be\nunhappy without me?  If he would, I honour and respect him so much,\nthat I think I will have him.\" So it was settled.  And then, and\nnot till then, I said to Annie, \"Annie, Doctor Strong will not only\nbe your husband, but he will represent your late father: he will\nrepresent the head of our family, he will represent the wisdom and\nstation, and I may say the means, of our family; and will be, in\nshort, a Boon to it.\" I used the word at the time, and I have used\nit again, today.  If I have any merit it is consistency.'\n\nThe daughter had sat quite silent and still during this speech,\nwith her eyes fixed on the ground; her cousin standing near her,\nand looking on the ground too.  She now said very softly, in a\ntrembling voice:\n\n'Mama, I hope you have finished?'\n'No, my dear Annie,' returned the Old Soldier, 'I have not quite\nfinished.  Since you ask me, my love, I reply that I have not.  I\ncomplain that you really are a little unnatural towards your own\nfamily; and, as it is of no use complaining to you.  I mean to\ncomplain to your husband.  Now, my dear Doctor, do look at that\nsilly wife of yours.'\n\nAs the Doctor turned his kind face, with its smile of simplicity\nand gentleness, towards her, she drooped her head more.  I noticed\nthat Mr. Wickfield looked at her steadily.\n\n'When I happened to say to that naughty thing, the other day,'\npursued her mother, shaking her head and her fan at her, playfully,\n'that there was a family circumstance she might mention to you -\nindeed, I think, was bound to mention - she said, that to mention\nit was to ask a favour; and that, as you were too generous, and as\nfor her to ask was always to have, she wouldn't.'\n\n'Annie, my dear,' said the Doctor.  'That was wrong.  It robbed me\nof a pleasure.'\n\n'Almost the very words I said to her!' exclaimed her mother.  'Now\nreally, another time, when I know what she would tell you but for\nthis reason, and won't, I have a great mind, my dear Doctor, to\ntell you myself.'\n\n'I shall be glad if you will,' returned the Doctor.\n\n'Shall I?'\n\n'Certainly.'\n\n'Well, then, I will!' said the Old Soldier.  'That's a bargain.'\nAnd having, I suppose, carried her point, she tapped the Doctor's\nhand several times with her fan (which she kissed first), and\nreturned triumphantly to her former station.\n\nSome more company coming in, among whom were the two masters and\nAdams, the talk became general; and it naturally turned on Mr. Jack\nMaldon, and his voyage, and the country he was going to, and his\nvarious plans and prospects.  He was to leave that night, after\nsupper, in a post-chaise, for Gravesend; where the ship, in which\nhe was to make the voyage, lay; and was to be gone - unless he came\nhome on leave, or for his health - I don't know how many years.  I\nrecollect it was settled by general consent that India was quite a\nmisrepresented country, and had nothing objectionable in it, but a\ntiger or two, and a little heat in the warm part of the day.  For\nmy own part, I looked on Mr. Jack Maldon as a modern Sindbad, and\npictured him the bosom friend of all the Rajahs in the East,\nsitting under canopies, smoking curly golden pipes - a mile long,\nif they could be straightened out.\n\nMrs. Strong was a very pretty singer: as I knew, who often heard\nher singing by herself.  But, whether she was afraid of singing\nbefore people, or was out of voice that evening, it was certain\nthat she couldn't sing at all.  She tried a duet, once, with her\ncousin Maldon, but could not so much as begin; and afterwards, when\nshe tried to sing by herself, although she began sweetly, her voice\ndied away on a sudden, and left her quite distressed, with her head\nhanging down over the keys.  The good Doctor said she was nervous,\nand, to relieve her, proposed a round game at cards; of which he\nknew as much as of the art of playing the trombone.  But I remarked\nthat the Old Soldier took him into custody directly, for her\npartner; and instructed him, as the first preliminary of\ninitiation, to give her all the silver he had in his pocket.\n\nWe had a merry game, not made the less merry by the Doctor's\nmistakes, of which he committed an innumerable quantity, in spite\nof the watchfulness of the butterflies, and to their great\naggravation.  Mrs. Strong had declined to play, on the ground of\nnot feeling very well; and her cousin Maldon had excused himself\nbecause he had some packing to do.  When he had done it, however,\nhe returned, and they sat together, talking, on the sofa.  From\ntime to time she came and looked over the Doctor's hand, and told\nhim what to play.  She was very pale, as she bent over him, and I\nthought her finger trembled as she pointed out the cards; but the\nDoctor was quite happy in her attention, and took no notice of\nthis, if it were so.\n\nAt supper, we were hardly so gay.  Everyone appeared to feel that\na parting of that sort was an awkward thing, and that the nearer it\napproached, the more awkward it was.  Mr. Jack Maldon tried to be\nvery talkative, but was not at his ease, and made matters worse. \nAnd they were not improved, as it appeared to me, by the Old\nSoldier: who continually recalled passages of Mr. Jack Maldon's\nyouth.\n\nThe Doctor, however, who felt, I am sure, that he was making\neverybody happy, was well pleased, and had no suspicion but that we\nwere all at the utmost height of enjoyment.\n\n'Annie, my dear,' said he, looking at his watch, and filling his\nglass, 'it is past your cousin jack's time, and we must not detain\nhim, since time and tide - both concerned in this case - wait for\nno man.  Mr. Jack Maldon, you have a long voyage, and a strange\ncountry, before you; but many men have had both, and many men will\nhave both, to the end of time.  The winds you are going to tempt,\nhave wafted thousands upon thousands to fortune, and brought\nthousands upon thousands happily back.'\n\n'It's an affecting thing,' said Mrs. Markleham - 'however it's\nviewed, it's affecting, to see a fine young man one has known from\nan infant, going away to the other end of the world, leaving all he\nknows behind, and not knowing what's before him.  A young man\nreally well deserves constant support and patronage,' looking at\nthe Doctor, 'who makes such sacrifices.'\n\n'Time will go fast with you, Mr. Jack Maldon,' pursued the Doctor,\n'and fast with all of us.  Some of us can hardly expect, perhaps,\nin the natural course of things, to greet you on your return.  The\nnext best thing is to hope to do it, and that's my case.  I shall\nnot weary you with good advice.  You have long had a good model\nbefore you, in your cousin Annie.  Imitate her virtues as nearly as\nyou can.'\n\nMrs. Markleham fanned herself, and shook her head.\n\n'Farewell, Mr. Jack,' said the Doctor, standing up; on which we all\nstood up.  'A prosperous voyage out, a thriving career abroad, and\na happy return home!'\n\nWe all drank the toast, and all shook hands with Mr. Jack Maldon;\nafter which he hastily took leave of the ladies who were there, and\nhurried to the door, where he was received, as he got into the\nchaise, with a tremendous broadside of cheers discharged by our\nboys, who had assembled on the lawn for the purpose.  Running in\namong them to swell the ranks, I was very near the chaise when it\nrolled away; and I had a lively impression made upon me, in the\nmidst of the noise and dust, of having seen Mr. Jack Maldon rattle\npast with an agitated face, and something cherry-coloured in his\nhand.\n\nAfter another broadside for the Doctor, and another for the\nDoctor's wife, the boys dispersed, and I went back into the house,\nwhere I found the guests all standing in a group about the Doctor,\ndiscussing how Mr. Jack Maldon had gone away, and how he had borne\nit, and how he had felt it, and all the rest of it.  In the midst\nof these remarks, Mrs. Markleham cried: 'Where's Annie?'\n\nNo Annie was there; and when they called to her, no Annie replied. \nBut all pressing out of the room, in a crowd, to see what was the\nmatter, we found her lying on the hall floor.  There was great\nalarm at first, until it was found that she was in a swoon, and\nthat the swoon was yielding to the usual means of recovery; when\nthe Doctor, who had lifted her head upon his knee, put her curls\naside with his hand, and said, looking around:\n\n'Poor Annie!  She's so faithful and tender-hearted!  It's the\nparting from her old playfellow and friend - her favourite cousin\n- that has done this.  Ah!  It's a pity!  I am very sorry!'\n\nWhen she opened her eyes, and saw where she was, and that we were\nall standing about her, she arose with assistance: turning her\nhead, as she did so, to lay it on the Doctor's shoulder - or to\nhide it, I don't know which.  We went into the drawing-room, to\nleave her with the Doctor and her mother; but she said, it seemed,\nthat she was better than she had been since morning, and that she\nwould rather be brought among us; so they brought her in, looking\nvery white and weak, I thought, and sat her on a sofa.\n\n'Annie, my dear,' said her mother, doing something to her dress. \n'See here!  You have lost a bow.  Will anybody be so good as find\na ribbon; a cherry-coloured ribbon?'\n\nIt was the one she had worn at her bosom.  We all looked for it; I\nmyself looked everywhere, I am certain - but nobody could find it.\n\n'Do you recollect where you had it last, Annie?' said her mother.\n\nI wondered how I could have thought she looked white, or anything\nbut burning red, when she answered that she had had it safe, a\nlittle while ago, she thought, but it was not worth looking for.\n\nNevertheless, it was looked for again, and still not found.  She\nentreated that there might be no more searching; but it was still\nsought for, in a desultory way, until she was quite well, and the\ncompany took their departure.\n\nWe walked very slowly home, Mr. Wickfield, Agnes, and I - Agnes and\nI admiring the moonlight, and Mr. Wickfield scarcely raising his\neyes from the ground.  When we, at last, reached our own door,\nAgnes discovered that she had left her little reticule behind. \nDelighted to be of any service to her, I ran back to fetch it.\n\nI went into the supper-room where it had been left, which was\ndeserted and dark.  But a door of communication between that and\nthe Doctor's study, where there was a light, being open, I passed\non there, to say what I wanted, and to get a candle.\n\nThe Doctor was sitting in his easy-chair by the fireside, and his\nyoung wife was on a stool at his feet.  The Doctor, with a\ncomplacent smile, was reading aloud some manuscript explanation or\nstatement of a theory out of that interminable Dictionary, and she\nwas looking up at him.  But with such a face as I never saw.  It\nwas so beautiful in its form, it was so ashy pale, it was so fixed\nin its abstraction, it was so full of a wild, sleep-walking, dreamy\nhorror of I don't know what.  The eyes were wide open, and her\nbrown hair fell in two rich clusters on her shoulders, and on her\nwhite dress, disordered by the want of the lost ribbon.  Distinctly\nas I recollect her look, I cannot say of what it was expressive, I\ncannot even say of what it is expressive to me now, rising again\nbefore my older judgement.  Penitence, humiliation, shame, pride,\nlove, and trustfulness - I see them all; and in them all, I see\nthat horror of I don't know what.\n\nMy entrance, and my saying what I wanted, roused her.  It disturbed\nthe Doctor too, for when I went back to replace the candle I had\ntaken from the table, he was patting her head, in his fatherly way,\nand saying he was a merciless drone to let her tempt him into\nreading on; and he would have her go to bed.\n\nBut she asked him, in a rapid, urgent manner, to let her stay - to\nlet her feel assured (I heard her murmur some broken words to this\neffect) that she was in his confidence that night.  And, as she\nturned again towards him, after glancing at me as I left the room\nand went out at the door, I saw her cross her hands upon his knee,\nand look up at him with the same face, something quieted, as he\nresumed his reading.\n\nIt made a great impression on me, and I remembered it a long time\nafterwards; as I shall have occasion to narrate when the time\ncomes.\n\n\n\nCHAPTER 17\nSOMEBODY TURNS UP\n\n\nIt has not occurred to me to mention Peggotty since I ran away;\nbut, of course, I wrote her a letter almost as soon as I was housed\nat Dover, and another, and a longer letter, containing all\nparticulars fully related, when my aunt took me formally under her\nprotection.  On my being settled at Doctor Strong's I wrote to her\nagain, detailing my happy condition and prospects.  I never could\nhave derived anything like the pleasure from spending the money Mr.\nDick had given me, that I felt in sending a gold half-guinea to\nPeggotty, per post, enclosed in this last letter, to discharge the\nsum I had borrowed of her: in which epistle, not before, I\nmentioned about the young man with the donkey-cart.\n\nTo these communications Peggotty replied as promptly, if not as\nconcisely, as a merchant's clerk.  Her utmost powers of expression\n(which were certainly not great in ink) were exhausted in the\nattempt to write what she felt on the subject of my journey.  Four\nsides of incoherent and interjectional beginnings of sentences,\nthat had no end, except blots, were inadequate to afford her any\nrelief.  But the blots were more expressive to me than the best\ncomposition; for they showed me that Peggotty had been crying all\nover the paper, and what could I have desired more?\n\nI made out, without much difficulty, that she could not take quite\nkindly to my aunt yet.  The notice was too short after so long a\nprepossession the other way.  We never knew a person, she wrote;\nbut to think that Miss Betsey should seem to be so different from\nwhat she had been thought to be, was a Moral! - that was her word. \nShe was evidently still afraid of Miss Betsey, for she sent her\ngrateful duty to her but timidly; and she was evidently afraid of\nme, too, and entertained the probability of my running away again\nsoon: if I might judge from the repeated hints she threw out, that\nthe coach-fare to Yarmouth was always to be had of her for the\nasking.\n\nShe gave me one piece of intelligence which affected me very much,\nnamely, that there had been a sale of the furniture at our old\nhome, and that Mr. and Miss Murdstone were gone away, and the house\nwas shut up, to be let or sold.  God knows I had no part in it\nwhile they remained there, but it pained me to think of the dear\nold place as altogether abandoned; of the weeds growing tall in the\ngarden, and the fallen leaves lying thick and wet upon the paths. \nI imagined how the winds of winter would howl round it, how the\ncold rain would beat upon the window-glass, how the moon would make\nghosts on the walls of the empty rooms, watching their solitude all\nnight.  I thought afresh of the grave in the churchyard, underneath\nthe tree: and it seemed as if the house were dead too, now, and all\nconnected with my father and mother were faded away.\n\nThere was no other news in Peggotty's letters.  Mr. Barkis was an\nexcellent husband, she said, though still a little near; but we all\nhad our faults, and she had plenty (though I am sure I don't know\nwhat they were); and he sent his duty, and my little bedroom was\nalways ready for me.  Mr. Peggotty was well, and Ham was well, and\nMrs..  Gummidge was but poorly, and little Em'ly wouldn't send her\nlove, but said that Peggotty might send it, if she liked.\n\nAll this intelligence I dutifully imparted to my aunt, only\nreserving to myself the mention of little Em'ly, to whom I\ninstinctively felt that she would not very tenderly incline.  While\nI was yet new at Doctor Strong's, she made several excursions over\nto Canterbury to see me, and always at unseasonable hours: with the\nview, I suppose, of taking me by surprise.  But, finding me well\nemployed, and bearing a good character, and hearing on all hands\nthat I rose fast in the school, she soon discontinued these visits. \nI saw her on a Saturday, every third or fourth week, when I went\nover to Dover for a treat; and I saw Mr. Dick every alternate\nWednesday, when he arrived by stage-coach at noon, to stay until\nnext morning.\n\nOn these occasions Mr. Dick never travelled without a leathern\nwriting-desk, containing a supply of stationery and the Memorial;\nin relation to which document he had a notion that time was\nbeginning to press now, and that it really must be got out of hand.\n\nMr. Dick was very partial to gingerbread.  To render his visits the\nmore agreeable, my aunt had instructed me to open a credit for him\nat a cake shop, which was hampered with the stipulation that he\nshould not be served with more than one shilling's-worth in the\ncourse of any one day.  This, and the reference of all his little\nbills at the county inn where he slept, to my aunt, before they\nwere paid, induced me to suspect that he was only allowed to rattle\nhis money, and not to spend it.  I found on further investigation\nthat this was so, or at least there was an agreement between him\nand my aunt that he should account to her for all his\ndisbursements.  As he had no idea of deceiving her, and always\ndesired to please her, he was thus made chary of launching into\nexpense.  On this point, as well as on all other possible points,\nMr. Dick was convinced that my aunt was the wisest and most\nwonderful of women; as he repeatedly told me with infinite secrecy,\nand always in a whisper.\n\n'Trotwood,' said Mr. Dick, with an air of mystery, after imparting\nthis confidence to me, one Wednesday; 'who's the man that hides\nnear our house and frightens her?'\n\n'Frightens my aunt, sir?'\n\nMr. Dick nodded.  'I thought nothing would have frightened her,' he\nsaid, 'for she's -' here he whispered softly, 'don't mention it -\nthe wisest and most wonderful of women.'  Having said which, he\ndrew back, to observe the effect which this description of her made\nupon me.\n\n'The first time he came,' said Mr. Dick, 'was- let me see- sixteen\nhundred and forty-nine was the date of King Charles's execution. \nI think you said sixteen hundred and forty-nine?'\n\n'Yes, sir.'\n\n'I don't know how it can be,' said Mr. Dick, sorely puzzled and\nshaking his head.  'I don't think I am as old as that.'\n\n'Was it in that year that the man appeared, sir?' I asked.\n\n'Why, really' said Mr. Dick, 'I don't see how it can have been in\nthat year, Trotwood.  Did you get that date out of history?'\n\n'Yes, sir.'\n\n'I suppose history never lies, does it?' said Mr. Dick, with a\ngleam of hope.\n\n'Oh dear, no, sir!' I replied, most decisively.  I was ingenuous\nand young, and I thought so.\n\n'I can't make it out,' said Mr. Dick, shaking his head.  'There's\nsomething wrong, somewhere.  However, it was very soon after the\nmistake was made of putting some of the trouble out of King\nCharles's head into my head, that the man first came.  I was\nwalking out with Miss Trotwood after tea, just at dark, and there\nhe was, close to our house.'\n\n'Walking about?' I inquired.\n\n'Walking about?' repeated Mr. Dick.  'Let me see, I must recollect\na bit.  N-no, no; he was not walking about.'\n\nI asked, as the shortest way to get at it, what he WAS doing.\n\n'Well, he wasn't there at all,' said Mr. Dick, 'until he came up\nbehind her, and whispered.  Then she turned round and fainted, and\nI stood still and looked at him, and he walked away; but that he\nshould have been hiding ever since (in the ground or somewhere), is\nthe most extraordinary thing!'\n\n'HAS he been hiding ever since?' I asked.\n\n'To be sure he has,' retorted Mr. Dick, nodding his head gravely. \n'Never came out, till last night!  We were walking last night, and\nhe came up behind her again, and I knew him again.'\n\n'And did he frighten my aunt again?'\n\n'All of a shiver,' said Mr. Dick, counterfeiting that affection and\nmaking his teeth chatter.  'Held by the palings.  Cried.  But,\nTrotwood, come here,' getting me close to him, that he might\nwhisper very softly; 'why did she give him money, boy, in the\nmoonlight?'\n\n'He was a beggar, perhaps.'\n\nMr. Dick shook his head, as utterly renouncing the suggestion; and\nhaving replied a great many times, and with great confidence, 'No\nbeggar, no beggar, no beggar, sir!' went on to say, that from his\nwindow he had afterwards, and late at night, seen my aunt give this\nperson money outside the garden rails in the moonlight, who then\nslunk away - into the ground again, as he thought probable - and\nwas seen no more: while my aunt came hurriedly and secretly back\ninto the house, and had, even that morning, been quite different\nfrom her usual self; which preyed on Mr. Dick's mind.\n\nI had not the least belief, in the outset of this story, that the\nunknown was anything but a delusion of Mr. Dick's, and one of the\nline of that ill-fated Prince who occasioned him so much\ndifficulty; but after some reflection I began to entertain the\nquestion whether an attempt, or threat of an attempt, might have\nbeen twice made to take poor Mr. Dick himself from under my aunt's\nprotection, and whether my aunt, the strength of whose kind feeling\ntowards him I knew from herself, might have been induced to pay a\nprice for his peace and quiet.  As I was already much attached to\nMr. Dick, and very solicitous for his welfare, my fears favoured\nthis supposition; and for a long time his Wednesday hardly ever\ncame round, without my entertaining a misgiving that he would not\nbe on the coach-box as usual.  There he always appeared, however,\ngrey-headed, laughing, and happy; and he never had anything more to\ntell of the man who could frighten my aunt.\n\nThese Wednesdays were the happiest days of Mr. Dick's life; they\nwere far from being the least happy of mine.  He soon became known\nto every boy in the school; and though he never took an active part\nin any game but kite-flying, was as deeply interested in all our\nsports as anyone among us.  How often have I seen him, intent upon\na match at marbles or pegtop, looking on with a face of unutterable\ninterest, and hardly breathing at the critical times!  How often,\nat hare and hounds, have I seen him mounted on a little knoll,\ncheering the whole field on to action, and waving his hat above his\ngrey head, oblivious of King Charles the Martyr's head, and all\nbelonging to it!  How many a summer hour have I known to be but\nblissful minutes to him in the cricket-field!  How many winter days\nhave I seen him, standing blue-nosed, in the snow and east wind,\nlooking at the boys going down the long slide, and clapping his\nworsted gloves in rapture!\n\nHe was an universal favourite, and his ingenuity in little things\nwas transcendent.  He could cut oranges into such devices as none\nof us had an idea of.  He could make a boat out of anything, from\na skewer upwards.  He could turn cramp-bones into chessmen; fashion\nRoman chariots from old court cards; make spoked wheels out of\ncotton reels, and bird-cages of old wire.  But he was greatest of\nall, perhaps, in the articles of string and straw; with which we\nwere all persuaded he could do anything that could be done by\nhands.\n\nMr. Dick's renown was not long confined to us.  After a few\nWednesdays, Doctor Strong himself made some inquiries of me about\nhim, and I told him all my aunt had told me; which interested the\nDoctor so much that he requested, on the occasion of his next\nvisit, to be presented to him.  This ceremony I performed; and the\nDoctor begging Mr. Dick, whensoever he should not find me at the\ncoach office, to come on there, and rest himself until our\nmorning's work was over, it soon passed into a custom for Mr. Dick\nto come on as a matter of course, and, if we were a little late, as\noften happened on a Wednesday, to walk about the courtyard, waiting\nfor me.  Here he made the acquaintance of the Doctor's beautiful\nyoung wife (paler than formerly, all this time; more rarely seen by\nme or anyone, I think; and not so gay, but not less beautiful), and\nso became more and more familiar by degrees, until, at last, he\nwould come into the school and wait.  He always sat in a particular\ncorner, on a particular stool, which was called 'Dick', after him;\nhere he would sit, with his grey head bent forward, attentively\nlistening to whatever might be going on, with a profound veneration\nfor the learning he had never been able to acquire.\n\nThis veneration Mr. Dick extended to the Doctor, whom he thought\nthe most subtle and accomplished philosopher of any age.  It was\nlong before Mr. Dick ever spoke to him otherwise than bareheaded;\nand even when he and the Doctor had struck up quite a friendship,\nand would walk together by the hour, on that side of the courtyard\nwhich was known among us as The Doctor's Walk, Mr. Dick would pull\noff his hat at intervals to show his respect for wisdom and\nknowledge.  How it ever came about that the Doctor began to read\nout scraps of the famous Dictionary, in these walks, I never knew;\nperhaps he felt it all the same, at first, as reading to himself. \nHowever, it passed into a custom too; and Mr. Dick, listening with\na face shining with pride and pleasure, in his heart of hearts\nbelieved the Dictionary to be the most delightful book in the\nworld.\n\nAs I think of them going up and down before those schoolroom\nwindows - the Doctor reading with his complacent smile, an\noccasional flourish of the manuscript, or grave motion of his head;\nand Mr. Dick listening, enchained by interest, with his poor wits\ncalmly wandering God knows where, upon the wings of hard words - I\nthink of it as one of the pleasantest things, in a quiet way, that\nI have ever seen.  I feel as if they might go walking to and fro\nfor ever, and the world might somehow be the better for it - as if\na thousand things it makes a noise about, were not one half so good\nfor it, or me.\n\nAgnes was one of Mr. Dick's friends, very soon; and in often coming\nto the house, he made acquaintance with Uriah.  The friendship\nbetween himself and me increased continually, and it was maintained\non this odd footing: that, while Mr. Dick came professedly to look\nafter me as my guardian, he always consulted me in any little\nmatter of doubt that arose, and invariably guided himself by my\nadvice; not only having a high respect for my native sagacity, but\nconsidering that I inherited a good deal from my aunt.\n\nOne Thursday morning, when I was about to walk with Mr. Dick from\nthe hotel to the coach office before going back to school (for we\nhad an hour's school before breakfast), I met Uriah in the street,\nwho reminded me of the promise I had made to take tea with himself\nand his mother: adding, with a writhe, 'But I didn't expect you to\nkeep it, Master Copperfield, we're so very umble.'\n\nI really had not yet been able to make up my mind whether I liked\nUriah or detested him; and I was very doubtful about it still, as\nI stood looking him in the face in the street.  But I felt it quite\nan affront to be supposed proud, and said I only wanted to be\nasked.\n\n' Oh, if that's all, Master Copperfield,' said Uriah, 'and it\nreally isn't our umbleness that prevents you, will you come this\nevening?  But if it is our umbleness, I hope you won't mind owning\nto it, Master Copperfield; for we are well aware of our condition.'\n\nI said I would mention it to Mr. Wickfield, and if he approved, as\nI had no doubt he would, I would come with pleasure.  So, at six\no'clock that evening, which was one of the early office evenings,\nI announced myself as ready, to Uriah.\n\n'Mother will be proud, indeed,' he said, as we walked away\ntogether.  'Or she would be proud, if it wasn't sinful, Master\nCopperfield.'\n\n'Yet you didn't mind supposing I was proud this morning,' I\nreturned.\n\n'Oh dear, no, Master Copperfield!' returned Uriah.  'Oh, believe\nme, no!  Such a thought never came into my head!  I shouldn't have\ndeemed it at all proud if you had thought US too umble for you. \nBecause we are so very umble.'\n\n'Have you been studying much law lately?' I asked, to change the\nsubject.\n\n'Oh, Master Copperfield,' he said, with an air of self-denial, 'my\nreading is hardly to be called study.  I have passed an hour or two\nin the evening, sometimes, with Mr. Tidd.'\n\n'Rather hard, I suppose?' said I.\n'He is hard to me sometimes,' returned Uriah.  'But I don't know\nwhat he might be to a gifted person.'\n\nAfter beating a little tune on his chin as he walked on, with the\ntwo forefingers of his skeleton right hand, he added:\n\n'There are expressions, you see, Master Copperfield - Latin words\nand terms - in Mr. Tidd, that are trying to a reader of my umble\nattainments.'\n\n'Would you like to be taught Latin?' I said briskly.  'I will teach\nit you with pleasure, as I learn it.'\n\n'Oh, thank you, Master Copperfield,' he answered, shaking his head. \n'I am sure it's very kind of you to make the offer, but I am much\ntoo umble to accept it.'\n\n'What nonsense, Uriah!'\n\n'Oh, indeed you must excuse me, Master Copperfield!  I am greatly\nobliged, and I should like it of all things, I assure you; but I am\nfar too umble.  There are people enough to tread upon me in my\nlowly state, without my doing outrage to their feelings by\npossessing learning.  Learning ain't for me.  A person like myself\nhad better not aspire.  If he is to get on in life, he must get on\numbly, Master Copperfield!'\n\nI never saw his mouth so wide, or the creases in his cheeks so\ndeep, as when he delivered himself of these sentiments: shaking his\nhead all the time, and writhing modestly.\n\n'I think you are wrong, Uriah,' I said.  'I dare say there are\nseveral things that I could teach you, if you would like to learn\nthem.'\n\n'Oh, I don't doubt that, Master Copperfield,' he answered; 'not in\nthe least.  But not being umble yourself, you don't judge well,\nperhaps, for them that are.  I won't provoke my betters with\nknowledge, thank you.  I'm much too umble.  Here is my umble\ndwelling, Master Copperfield!'\n\nWe entered a low, old-fashioned room, walked straight into from the\nstreet, and found there Mrs. Heep, who was the dead image of Uriah,\nonly short.  She received me with the utmost humility, and\napologized to me for giving her son a kiss, observing that, lowly\nas they were, they had their natural affections, which they hoped\nwould give no offence to anyone.  It was a perfectly decent room,\nhalf parlour and half kitchen, but not at all a snug room.  The\ntea-things were set upon the table, and the kettle was boiling on\nthe hob.  There was a chest of drawers with an escritoire top, for\nUriah to read or write at of an evening; there was Uriah's blue bag\nlying down and vomiting papers; there was a company of Uriah's\nbooks commanded by Mr. Tidd; there was a corner cupboard: and there\nwere the usual articles of furniture.  I don't remember that any\nindividual object had a bare, pinched, spare look; but I do\nremember that the whole place had.\n\nIt was perhaps a part of Mrs. Heep's humility, that she still wore\nweeds.  Notwithstanding the lapse of time that had occurred since\nMr. Heep's decease, she still wore weeds.  I think there was some\ncompromise in the cap; but otherwise she was as weedy as in the\nearly days of her mourning.\n\n'This is a day to be remembered, my Uriah, I am sure,' said Mrs.\nHeep, making the tea, 'when Master Copperfield pays us a visit.'\n\n'I said you'd think so, mother,' said Uriah.\n\n'If I could have wished father to remain among us for any reason,'\nsaid Mrs. Heep, 'it would have been, that he might have known his\ncompany this afternoon.'\n\nI felt embarrassed by these compliments; but I was sensible, too,\nof being entertained as an honoured guest, and I thought Mrs. Heep\nan agreeable woman.\n\n'My Uriah,' said Mrs. Heep, 'has looked forward to this, sir, a\nlong while.  He had his fears that our umbleness stood in the way,\nand I joined in them myself.  Umble we are, umble we have been,\numble we shall ever be,' said Mrs. Heep.\n\n'I am sure you have no occasion to be so, ma'am,' I said, 'unless\nyou like.'\n\n'Thank you, sir,' retorted Mrs. Heep.  'We know our station and are\nthankful in it.'\n\nI found that Mrs. Heep gradually got nearer to me, and that Uriah\ngradually got opposite to me, and that they respectfully plied me\nwith the choicest of the eatables on the table.  There was nothing\nparticularly choice there, to be sure; but I took the will for the\ndeed, and felt that they were very attentive.  Presently they began\nto talk about aunts, and then I told them about mine; and about\nfathers and mothers, and then I told them about mine; and then Mrs.\nHeep began to talk about fathers-in-law, and then I began to tell\nher about mine - but stopped, because my aunt had advised me to\nobserve a silence on that subject.  A tender young cork, however,\nwould have had no more chance against a pair of corkscrews, or a\ntender young tooth against a pair of dentists, or a little\nshuttlecock against two battledores, than I had against Uriah and\nMrs. Heep.  They did just what they liked with me; and wormed\nthings out of me that I had no desire to tell, with a certainty I\nblush to think of.  the more especially, as in my juvenile\nfrankness, I took some credit to myself for being so confidential\nand felt that I was quite the patron of my two respectful\nentertainers.\n\nThey were very fond of one another: that was certain.  I take it,\nthat had its effect upon me, as a touch of nature; but the skill\nwith which the one followed up whatever the other said, was a touch\nof art which I was still less proof against.  When there was\nnothing more to be got out of me about myself (for on the Murdstone\nand Grinby life, and on my journey, I was dumb), they began about\nMr. Wickfield and Agnes.  Uriah threw the ball to Mrs. Heep, Mrs.\nHeep caught it and threw it back to Uriah, Uriah kept it up a\nlittle while, then sent it back to Mrs. Heep, and so they went on\ntossing it about until I had no idea who had got it, and was quite\nbewildered.  The ball itself was always changing too.  Now it was\nMr. Wickfield, now Agnes, now the excellence of Mr. Wickfield, now\nmy admiration of Agnes; now the extent of Mr. Wickfield's business\nand resources, now our domestic life after dinner; now, the wine\nthat Mr. Wickfield took, the reason why he took it, and the pity\nthat it was he took so much; now one thing, now another, then\neverything at once; and all the time, without appearing to speak\nvery often, or to do anything but sometimes encourage them a\nlittle, for fear they should be overcome by their humility and the\nhonour of my company, I found myself perpetually letting out\nsomething or other that I had no business to let out and seeing the\neffect of it in the twinkling of Uriah's dinted nostrils.\n\nI had begun to be a little uncomfortable, and to wish myself well\nout of the visit, when a figure coming down the street passed the\ndoor - it stood open to air the room, which was warm, the weather\nbeing close for the time of year - came back again, looked in, and\nwalked in, exclaiming loudly, 'Copperfield!  Is it possible?'\n\nIt was Mr. Micawber!  It was Mr. Micawber, with his eye-glass, and\nhis walking-stick, and his shirt-collar, and his genteel air, and\nthe condescending roll in his voice, all complete!\n\n'My dear Copperfield,' said Mr. Micawber, putting out his hand,\n'this is indeed a meeting which is calculated to impress the mind\nwith a sense of the instability and uncertainty of all human - in\nshort, it is a most extraordinary meeting.  Walking along the\nstreet, reflecting upon the probability of something turning up (of\nwhich I am at present rather sanguine), I find a young but valued\nfriend turn up, who is connected with the most eventful period of\nmy life; I may say, with the turning-point of my existence. \nCopperfield, my dear fellow, how do you do?'\n\nI cannot say - I really cannot say - that I was glad to see Mr.\nMicawber there; but I was glad to see him too, and shook hands with\nhim, heartily, inquiring how Mrs. Micawber was.\n\n'Thank you,' said Mr. Micawber, waving his hand as of old, and\nsettling his chin in his shirt-collar.  'She is tolerably\nconvalescent.  The twins no longer derive their sustenance from\nNature's founts - in short,' said Mr. Micawber, in one of his\nbursts of confidence, 'they are weaned - and Mrs. Micawber is, at\npresent, my travelling companion.  She will be rejoiced,\nCopperfield, to renew her acquaintance with one who has proved\nhimself in all respects a worthy minister at the sacred altar of\nfriendship.'\n\nI said I should be delighted to see her.\n\n'You are very good,' said Mr. Micawber.\n\nMr. Micawber then smiled, settled his chin again, and looked about\nhim.\n\n'I have discovered my friend Copperfield,' said Mr. Micawber\ngenteelly, and without addressing himself particularly to anyone,\n'not in solitude, but partaking of a social meal in company with a\nwidow lady, and one who is apparently her offspring - in short,'\nsaid Mr. Micawber, in another of his bursts of confidence, 'her\nson.  I shall esteem it an honour to be presented.'\n\nI could do no less, under these circumstances, than make Mr.\nMicawber known to Uriah Heep and his mother; which I accordingly\ndid.  As they abased themselves before him, Mr. Micawber took a\nseat, and waved his hand in his most courtly manner.\n\n'Any friend of my friend Copperfield's,' said Mr. Micawber, 'has a\npersonal claim upon myself.'\n\n'We are too umble, sir,' said Mrs. Heep, 'my son and me, to be the\nfriends of Master Copperfield.  He has been so good as take his tea\nwith us, and we are thankful to him for his company, also to you,\nsir, for your notice.'\n\n'Ma'am,' returned Mr. Micawber, with a bow, 'you are very obliging:\nand what are you doing, Copperfield?  Still in the wine trade?'\n\nI was excessively anxious to get Mr. Micawber away; and replied,\nwith my hat in my hand, and a very red face, I have no doubt, that\nI was a pupil at Doctor Strong's.\n\n'A pupil?' said Mr. Micawber, raising his eyebrows.  'I am\nextremely happy to hear it.  Although a mind like my friend\nCopperfield's' - to Uriah and Mrs. Heep - 'does not require that\ncultivation which, without his knowledge of men and things, it\nwould require, still it is a rich soil teeming with latent\nvegetation - in short,' said Mr. Micawber, smiling, in another\nburst of confidence, 'it is an intellect capable of getting up the\nclassics to any extent.'\n\nUriah, with his long hands slowly twining over one another, made a\nghastly writhe from the waist upwards, to express his concurrence\nin this estimation of me.\n\n'Shall we go and see Mrs. Micawber, sir?' I said, to get Mr.\nMicawber away.\n\n'If you will do her that favour, Copperfield,' replied Mr.\nMicawber, rising.  'I have no scruple in saying, in the presence of\nour friends here, that I am a man who has, for some years,\ncontended against the pressure of pecuniary difficulties.'  I knew\nhe was certain to say something of this kind; he always would be so\nboastful about his difficulties.  'Sometimes I have risen superior\nto my difficulties.  Sometimes my difficulties have - in short,\nhave floored me.  There have been times when I have administered a\nsuccession of facers to them; there have been times when they have\nbeen too many for me, and I have given in, and said to Mrs.\nMicawber, in the words of Cato, \"Plato, thou reasonest well.  It's\nall up now.  I can show fight no more.\" But at no time of my life,'\nsaid Mr. Micawber, 'have I enjoyed a higher degree of satisfaction\nthan in pouring my griefs (if I may describe difficulties, chiefly\narising out of warrants of attorney and promissory notes at two and\nfour months, by that word) into the bosom of my friend\nCopperfield.'\n\nMr. Micawber closed this handsome tribute by saying, 'Mr. Heep!\nGood evening.  Mrs. Heep!  Your servant,' and then walking out with\nme in his most fashionable manner, making a good deal of noise on\nthe pavement with his shoes, and humming a tune as we went.\n\nIt was a little inn where Mr. Micawber put up, and he occupied a\nlittle room in it, partitioned off from the commercial room, and\nstrongly flavoured with tobacco-smoke.  I think it was over the\nkitchen, because a warm greasy smell appeared to come up through\nthe chinks in the floor, and there was a flabby perspiration on the\nwalls.  I know it was near the bar, on account of the smell of\nspirits and jingling of glasses.  Here, recumbent on a small sofa,\nunderneath a picture of a race-horse, with her head close to the\nfire, and her feet pushing the mustard off the dumb-waiter at the\nother end of the room, was Mrs. Micawber, to whom Mr. Micawber\nentered first, saying, 'My dear, allow me to introduce to you a\npupil of Doctor Strong's.'\n\nI noticed, by the by, that although Mr. Micawber was just as much\nconfused as ever about my age and standing, he always remembered,\nas a genteel thing, that I was a pupil of Doctor Strong's.\n\nMrs. Micawber was amazed, but very glad to see me.  I was very glad\nto see her too, and, after an affectionate greeting on both sides,\nsat down on the small sofa near her.\n\n'My dear,' said Mr. Micawber, 'if you will mention to Copperfield\nwhat our present position is, which I have no doubt he will like to\nknow, I will go and look at the paper the while, and see whether\nanything turns up among the advertisements.'\n\n'I thought you were at Plymouth, ma'am,' I said to Mrs. Micawber,\nas he went out.\n\n'My dear Master Copperfield,' she replied, 'we went to Plymouth.'\n\n'To be on the spot,' I hinted.\n\n'Just so,' said Mrs. Micawber.  'To be on the spot.  But, the truth\nis, talent is not wanted in the Custom House.  The local influence\nof my family was quite unavailing to obtain any employment in that\ndepartment, for a man of Mr. Micawber's abilities.  They would\nrather NOT have a man of Mr. Micawber's abilities.  He would only\nshow the deficiency of the others.  Apart from which,' said Mrs.\nMicawber, 'I will not disguise from you, my dear Master\nCopperfield, that when that branch of my family which is settled in\nPlymouth, became aware that Mr. Micawber was accompanied by myself,\nand by little Wilkins and his sister, and by the twins, they did\nnot receive him with that ardour which he might have expected,\nbeing so newly released from captivity.  In fact,' said Mrs.\nMicawber, lowering her voice, - 'this is between ourselves - our\nreception was cool.'\n\n'Dear me!' I said.\n\n'Yes,' said Mrs. Micawber.  'It is truly painful to contemplate\nmankind in such an aspect, Master Copperfield, but our reception\nwas, decidedly, cool.  There is no doubt about it.  In fact, that\nbranch of my family which is settled in Plymouth became quite\npersonal to Mr. Micawber, before we had been there a week.'\n\nI said, and thought, that they ought to be ashamed of themselves.\n\n'Still, so it was,' continued Mrs. Micawber.  'Under such\ncircumstances, what could a man of Mr. Micawber's spirit do?  But\none obvious course was left.  To borrow, of that branch of my\nfamily, the money to return to London, and to return at any\nsacrifice.'\n\n'Then you all came back again, ma'am?' I said.\n\n'We all came back again,' replied Mrs. Micawber.  'Since then, I\nhave consulted other branches of my family on the course which it\nis most expedient for Mr. Micawber to take - for I maintain that he\nmust take some course, Master Copperfield,' said Mrs. Micawber,\nargumentatively.  'It is clear that a family of six, not including\na domestic, cannot live upon air.'\n\n'Certainly, ma'am,' said I.\n\n'The opinion of those other branches of my family,' pursued Mrs.\nMicawber, 'is, that Mr. Micawber should immediately turn his\nattention to coals.'\n\n'To what, ma'am?'\n\n'To coals,' said Mrs. Micawber.  'To the coal trade.  Mr. Micawber\nwas induced to think, on inquiry, that there might be an opening\nfor a man of his talent in the Medway Coal Trade.  Then, as Mr.\nMicawber very properly said, the first step to be taken clearly\nwas, to come and see the Medway.  Which we came and saw.  I say\n\"we\", Master Copperfield; for I never will,' said Mrs. Micawber\nwith emotion, 'I never will desert Mr. Micawber.'\n\nI murmured my admiration and approbation.\n\n'We came,' repeated Mrs. Micawber, 'and saw the Medway.  My opinion\nof the coal trade on that river is, that it may require talent, but\nthat it certainly requires capital.  Talent, Mr. Micawber has;\ncapital, Mr. Micawber has not.  We saw, I think, the greater part\nof the Medway; and that is my individual conclusion.  Being so near\nhere, Mr. Micawber was of opinion that it would be rash not to come\non, and see the Cathedral.  Firstly, on account of its being so\nwell worth seeing, and our never having seen it; and secondly, on\naccount of the great probability of something turning up in a\ncathedral town.  We have been here,' said Mrs. Micawber, 'three\ndays.  Nothing has, as yet, turned up; and it may not surprise you,\nmy dear Master Copperfield, so much as it would a stranger, to know\nthat we are at present waiting for a remittance from London, to\ndischarge our pecuniary obligations at this hotel.  Until the\narrival of that remittance,' said Mrs. Micawber with much feeling,\n'I am cut off from my home (I allude to lodgings in Pentonville),\nfrom my boy and girl, and from my twins.'\n\nI felt the utmost sympathy for Mr. and Mrs. Micawber in this\nanxious extremity, and said as much to Mr. Micawber, who now\nreturned: adding that I only wished I had money enough, to lend\nthem the amount they needed.  Mr. Micawber's answer expressed the\ndisturbance of his mind.  He said, shaking hands with me,\n'Copperfield, you are a true friend; but when the worst comes to\nthe worst, no man is without a friend who is possessed of shaving\nmaterials.'  At this dreadful hint Mrs. Micawber threw her arms\nround Mr. Micawber's neck and entreated him to be calm.  He wept;\nbut so far recovered, almost immediately, as to ring the bell for\nthe waiter, and bespeak a hot kidney pudding and a plate of shrimps\nfor breakfast in the morning.\n\nWhen I took my leave of them, they both pressed me so much to come\nand dine before they went away, that I could not refuse.  But, as\nI knew I could not come next day, when I should have a good deal to\nprepare in the evening, Mr. Micawber arranged that he would call at\nDoctor Strong's in the course of the morning (having a presentiment\nthat the remittance would arrive by that post), and propose the day\nafter, if it would suit me better.  Accordingly I was called out of\nschool next forenoon, and found Mr. Micawber in the parlour; who\nhad called to say that the dinner would take place as proposed. \nWhen I asked him if the remittance had come, he pressed my hand and\ndeparted.\n\nAs I was looking out of window that same evening, it surprised me,\nand made me rather uneasy, to see Mr. Micawber and Uriah Heep walk\npast, arm in arm: Uriah humbly sensible of the honour that was done\nhim, and Mr. Micawber taking a bland delight in extending his\npatronage to Uriah.  But I was still more surprised, when I went to\nthe little hotel next day at the appointed dinner-hour, which was\nfour o'clock, to find, from what Mr. Micawber said, that he had\ngone home with Uriah, and had drunk brandy-and-water at Mrs.\nHeep's.\n\n'And I'll tell you what, my dear Copperfield,' said Mr. Micawber,\n'your friend Heep is a young fellow who might be attorney-general. \nIf I had known that young man, at the period when my difficulties\ncame to a crisis, all I can say is, that I believe my creditors\nwould have been a great deal better managed than they were.'\n\nI hardly understood how this could have been, seeing that Mr.\nMicawber had paid them nothing at all as it was; but I did not like\nto ask.  Neither did I like to say, that I hoped he had not been\ntoo communicative to Uriah; or to inquire if they had talked much\nabout me.  I was afraid of hurting Mr. Micawber's feelings, or, at\nall events, Mrs. Micawber's, she being very sensitive; but I was\nuncomfortable about it, too, and often thought about it afterwards.\n\nWe had a beautiful little dinner.  Quite an elegant dish of fish;\nthe kidney-end of a loin of veal, roasted; fried sausage-meat; a\npartridge, and a pudding.  There was wine, and there was strong\nale; and after dinner Mrs. Micawber made us a bowl of hot punch\nwith her own hands.\n\nMr. Micawber was uncommonly convivial.  I never saw him such good\ncompany.  He made his face shine with the punch, so that it looked\nas if it had been varnished all over.  He got cheerfully\nsentimental about the town, and proposed success to it; observing\nthat Mrs. Micawber and himself had been made extremely snug and\ncomfortable there and that he never should forget the agreeable\nhours they had passed in Canterbury.  He proposed me afterwards;\nand he, and Mrs. Micawber, and I, took a review of our past\nacquaintance, in the course of which we sold the property all over\nagain.  Then I proposed Mrs. Micawber: or, at least, said,\nmodestly, 'If you'll allow me, Mrs. Micawber, I shall now have the\npleasure of drinking your health, ma'am.'  On which Mr. Micawber\ndelivered an eulogium on Mrs. Micawber's character, and said she\nhad ever been his guide, philosopher, and friend, and that he would\nrecommend me, when I came to a marrying time of life, to marry such\nanother woman, if such another woman could be found.\n\nAs the punch disappeared, Mr. Micawber became still more friendly\nand convivial.  Mrs. Micawber's spirits becoming elevated, too, we\nsang 'Auld Lang Syne'.  When we came to 'Here's a hand, my trusty\nfrere', we all joined hands round the table; and when we declared\nwe would 'take a right gude Willie Waught', and hadn't the least\nidea what it meant, we were really affected.\n\nIn a word, I never saw anybody so thoroughly jovial as Mr. Micawber\nwas, down to the very last moment of the evening, when I took a\nhearty farewell of himself and his amiable wife.  Consequently, I\nwas not prepared, at seven o'clock next morning, to receive the\nfollowing communication, dated half past nine in the evening; a\nquarter of an hour after I had left him: -\n\n'My DEAR YOUNG FRIEND,\n\n'The die is cast - all is over.  Hiding the ravages of care with a\nsickly mask of mirth, I have not informed you, this evening, that\nthere is no hope of the remittance!  Under these circumstances,\nalike humiliating to endure, humiliating to contemplate, and\nhumiliating to relate, I have discharged the pecuniary liability\ncontracted at this establishment, by giving a note of hand, made\npayable fourteen days after date, at my residence, Pentonville,\nLondon.  When it becomes due, it will not be taken up.  The result\nis destruction.  The bolt is impending, and the tree must fall.\n\n'Let the wretched man who now addresses you, my dear Copperfield,\nbe a beacon to you through life.  He writes with that intention,\nand in that hope.  If he could think himself of so much use, one\ngleam of day might, by possibility, penetrate into the cheerless\ndungeon of his remaining existence - though his longevity is, at\npresent (to say the least of it), extremely problematical.\n\n'This is the last communication, my dear Copperfield, you will ever\nreceive\n\n                         'From\n\n                              'The\n\n                                   'Beggared Outcast,\n\n                                        'WILKINS MICAWBER.'\n\n\nI was so shocked by the contents of this heart-rending letter, that\nI ran off directly towards the little hotel with the intention of\ntaking it on my way to Doctor Strong's, and trying to soothe Mr.\nMicawber with a word of comfort.  But, half-way there, I met the\nLondon coach with Mr. and Mrs. Micawber up behind; Mr. Micawber,\nthe very picture of tranquil enjoyment, smiling at Mrs. Micawber's\nconversation, eating walnuts out of a paper bag, with a bottle\nsticking out of his breast pocket.  As they did not see me, I\nthought it best, all things considered, not to see them.  So, with\na great weight taken off my mind, I turned into a by-street that\nwas the nearest way to school, and felt, upon the whole, relieved\nthat they were gone; though I still liked them very much,\nnevertheless.\n\n\n\nCHAPTER 18\nA RETROSPECT\n\n\nMy school-days!  The silent gliding on of my existence - the\nunseen, unfelt progress of my life - from childhood up to youth!\nLet me think, as I look back upon that flowing water, now a dry\nchannel overgrown with leaves, whether there are any marks along\nits course, by which I can remember how it ran.\n\nA moment, and I occupy my place in the Cathedral, where we all went\ntogether, every Sunday morning, assembling first at school for that\npurpose.  The earthy smell, the sunless air, the sensation of the\nworld being shut out, the resounding of the organ through the black\nand white arched galleries and aisles, are wings that take me back,\nand hold me hovering above those days, in a half-sleeping and\nhalf-waking dream.\n\nI am not the last boy in the school.  I have risen in a few months,\nover several heads.  But the first boy seems to me a mighty\ncreature, dwelling afar off, whose giddy height is unattainable. \nAgnes says 'No,' but I say 'Yes,' and tell her that she little\nthinks what stores of knowledge have been mastered by the wonderful\nBeing, at whose place she thinks I, even I, weak aspirant, may\narrive in time.  He is not my private friend and public patron, as\nSteerforth was, but I hold him in a reverential respect.  I chiefly\nwonder what he'll be, when he leaves Doctor Strong's, and what\nmankind will do to maintain any place against him.\n\nBut who is this that breaks upon me?  This is Miss Shepherd, whom\nI love.\n\nMiss Shepherd is a boarder at the Misses Nettingalls'\nestablishment.  I adore Miss Shepherd.  She is a little girl, in a\nspencer, with a round face and curly flaxen hair.  The Misses\nNettingalls' young ladies come to the Cathedral too.  I cannot look\nupon my book, for I must look upon Miss Shepherd.  When the\nchoristers chaunt, I hear Miss Shepherd.  In the service I mentally\ninsert Miss Shepherd's name - I put her in among the Royal Family. \nAt home, in my own room, I am sometimes moved to cry out, 'Oh, Miss\nShepherd!' in a transport of love.\n\nFor some time, I am doubtful of Miss Shepherd's feelings, but, at\nlength, Fate being propitious, we meet at the dancing-school.  I\nhave Miss Shepherd for my partner.  I touch Miss Shepherd's glove,\nand feel a thrill go up the right arm of my jacket, and come out at\nmy hair.  I say nothing to Miss Shepherd, but we understand each\nother.  Miss Shepherd and myself live but to be united.\n\nWhy do I secretly give Miss Shepherd twelve Brazil nuts for a\npresent, I wonder?  They are not expressive of affection, they are\ndifficult to pack into a parcel of any regular shape, they are hard\nto crack, even in room doors, and they are oily when cracked; yet\nI feel that they are appropriate to Miss Shepherd.  Soft, seedy\nbiscuits, also, I bestow upon Miss Shepherd; and oranges\ninnumerable.  Once, I kiss Miss Shepherd in the cloak-room. \nEcstasy!  What are my agony and indignation next day, when I hear\na flying rumour that the Misses Nettingall have stood Miss Shepherd\nin the stocks for turning in her toes!\n\nMiss Shepherd being the one pervading theme and vision of my life,\nhow do I ever come to break with her?  I can't conceive.  And yet\na coolness grows between Miss Shepherd and myself.  Whispers reach\nme of Miss Shepherd having said she wished I wouldn't stare so, and\nhaving avowed a preference for Master Jones - for Jones! a boy of\nno merit whatever!  The gulf between me and Miss Shepherd widens. \nAt last, one day, I meet the Misses Nettingalls' establishment out\nwalking.  Miss Shepherd makes a face as she goes by, and laughs to\nher companion.  All is over.  The devotion of a life - it seems a\nlife, it is all the same - is at an end; Miss Shepherd comes out of\nthe morning service, and the Royal Family know her no more.\n\nI am higher in the school, and no one breaks my peace.  I am not at\nall polite, now, to the Misses Nettingalls' young ladies, and\nshouldn't dote on any of them, if they were twice as many and\ntwenty times as beautiful.  I think the dancing-school a tiresome\naffair, and wonder why the girls can't dance by themselves and\nleave us alone.  I am growing great in Latin verses, and neglect\nthe laces of my boots.  Doctor Strong refers to me in public as a\npromising young scholar.  Mr. Dick is wild with joy, and my aunt\nremits me a guinea by the next post.\n\nThe shade of a young butcher rises, like the apparition of an armed\nhead in Macbeth.  Who is this young butcher?  He is the terror of\nthe youth of Canterbury.  There is a vague belief abroad, that the\nbeef suet with which he anoints his hair gives him unnatural\nstrength, and that he is a match for a man.  He is a broad-faced,\nbull-necked, young butcher, with rough red cheeks, an\nill-conditioned mind, and an injurious tongue.  His main use of\nthis tongue, is, to disparage Doctor Strong's young gentlemen.  He\nsays, publicly, that if they want anything he'll give it 'em.  He\nnames individuals among them (myself included), whom he could\nundertake to settle with one hand, and the other tied behind him. \nHe waylays the smaller boys to punch their unprotected heads, and\ncalls challenges after me in the open streets.  For these\nsufficient reasons I resolve to fight the butcher.\n\nIt is a summer evening, down in a green hollow, at the corner of a\nwall.  I meet the butcher by appointment.  I am attended by a\nselect body of our boys; the butcher, by two other butchers, a\nyoung publican, and a sweep.  The preliminaries are adjusted, and\nthe butcher and myself stand face to face.  In a moment the butcher\nlights ten thousand candles out of my left eyebrow.  In another\nmoment, I don't know where the wall is, or where I am, or where\nanybody is.  I hardly know which is myself and which the butcher,\nwe are always in such a tangle and tussle, knocking about upon the\ntrodden grass.  Sometimes I see the butcher, bloody but confident;\nsometimes I see nothing, and sit gasping on my second's knee;\nsometimes I go in at the butcher madly, and cut my knuckles open\nagainst his face, without appearing to discompose him at all.  At\nlast I awake, very queer about the head, as from a giddy sleep, and\nsee the butcher walking off, congratulated by the two other\nbutchers and the sweep and publican, and putting on his coat as he\ngoes; from which I augur, justly, that the victory is his.\n\nI am taken home in a sad plight, and I have beef-steaks put to my\neyes, and am rubbed with vinegar and brandy, and find a great puffy\nplace bursting out on my upper lip, which swells immoderately.  For\nthree or four days I remain at home, a very ill-looking subject,\nwith a green shade over my eyes; and I should be very dull, but\nthat Agnes is a sister to me, and condoles with me, and reads to\nme, and makes the time light and happy.  Agnes has my confidence\ncompletely, always; I tell her all about the butcher, and the\nwrongs he has heaped upon me; she thinks I couldn't have done\notherwise than fight the butcher, while she shrinks and trembles at\nmy having fought him.\n\nTime has stolen on unobserved, for Adams is not the head-boy in the\ndays that are come now, nor has he been this many and many a day. \nAdams has left the school so long, that when he comes back, on a\nvisit to Doctor Strong, there are not many there, besides myself,\nwho know him.  Adams is going to be called to the bar almost\ndirectly, and is to be an advocate, and to wear a wig.  I am\nsurprised to find him a meeker man than I had thought, and less\nimposing in appearance.  He has not staggered the world yet,\neither; for it goes on (as well as I can make out) pretty much the\nsame as if he had never joined it.\n\nA blank, through which the warriors of poetry and history march on\nin stately hosts that seem to have no end - and what comes next! \nI am the head-boy, now!  I look down on the line of boys below me,\nwith a condescending interest in such of them as bring to my mind\nthe boy I was myself, when I first came there.  That little fellow\nseems to be no part of me; I remember him as something left behind\nupon the road of life - as something I have passed, rather than\nhave actually been - and almost think of him as of someone else.\n\nAnd the little girl I saw on that first day at Mr. Wickfield's,\nwhere is she?  Gone also.  In her stead, the perfect likeness of\nthe picture, a child likeness no more, moves about the house; and\nAgnes - my sweet sister, as I call her in my thoughts, my\ncounsellor and friend, the better angel of the lives of all who\ncome within her calm, good, self-denying influence - is quite a\nwoman.\n\nWhat other changes have come upon me, besides the changes in my\ngrowth and looks, and in the knowledge I have garnered all this\nwhile?  I wear a gold watch and chain, a ring upon my little\nfinger, and a long-tailed coat; and I use a great deal of bear's\ngrease - which, taken in conjunction with the ring, looks bad.  Am\nI in love again?  I am.  I worship the eldest Miss Larkins.\n\nThe eldest Miss Larkins is not a little girl.  She is a tall, dark,\nblack-eyed, fine figure of a woman.  The eldest Miss Larkins is not\na chicken; for the youngest Miss Larkins is not that, and the\neldest must be three or four years older.  Perhaps the eldest Miss\nLarkins may be about thirty.  My passion for her is beyond all\nbounds.\n\nThe eldest Miss Larkins knows officers.  It is an awful thing to\nbear.  I see them speaking to her in the street.  I see them cross\nthe way to meet her, when her bonnet (she has a bright taste in\nbonnets) is seen coming down the pavement, accompanied by her\nsister's bonnet.  She laughs and talks, and seems to like it.  I\nspend a good deal of my own spare time in walking up and down to\nmeet her.  If I can bow to her once in the day (I know her to bow\nto, knowing Mr. Larkins), I am happier.  I deserve a bow now and\nthen.  The raging agonies I suffer on the night of the Race Ball,\nwhere I know the eldest Miss Larkins will be dancing with the\nmilitary, ought to have some compensation, if there be even-handed\njustice in the world.\n\nMy passion takes away my appetite, and makes me wear my newest silk\nneckerchief continually.  I have no relief but in putting on my\nbest clothes, and having my boots cleaned over and over again.  I\nseem, then, to be worthier of the eldest Miss Larkins.  Everything\nthat belongs to her, or is connected with her, is precious to me. \nMr. Larkins (a gruff old gentleman with a double chin, and one of\nhis eyes immovable in his head) is fraught with interest to me. \nWhen I can't meet his daughter, I go where I am likely to meet him. \nTo say 'How do you do, Mr. Larkins?  Are the young ladies and all\nthe family quite well?' seems so pointed, that I blush.\n\nI think continually about my age.  Say I am seventeen, and say that\nseventeen is young for the eldest Miss Larkins, what of that? \nBesides, I shall be one-and-twenty in no time almost.  I regularly\ntake walks outside Mr. Larkins's house in the evening, though it\ncuts me to the heart to see the officers go in, or to hear them up\nin the drawing-room, where the eldest Miss Larkins plays the harp. \nI even walk, on two or three occasions, in a sickly, spoony manner,\nround and round the house after the family are gone to bed,\nwondering which is the eldest Miss Larkins's chamber (and pitching,\nI dare say now, on Mr. Larkins's instead); wishing that a fire\nwould burst out; that the assembled crowd would stand appalled;\nthat I, dashing through them with a ladder, might rear it against\nher window, save her in my arms, go back for something she had left\nbehind, and perish in the flames.  For I am generally disinterested\nin my love, and think I could be content to make a figure before\nMiss Larkins, and expire.\n\nGenerally, but not always.  Sometimes brighter visions rise before\nme.  When I dress (the occupation of two hours), for a great ball\ngiven at the Larkins's (the anticipation of three weeks), I indulge\nmy fancy with pleasing images.  I picture myself taking courage to\nmake a declaration to Miss Larkins.  I picture Miss Larkins sinking\nher head upon my shoulder, and saying, 'Oh, Mr. Copperfield, can I\nbelieve my ears!' I picture Mr. Larkins waiting on me next morning,\nand saying, 'My dear Copperfield, my daughter has told me all. \nYouth is no objection.  Here are twenty thousand pounds.  Be\nhappy!' I picture my aunt relenting, and blessing us; and Mr. Dick\nand Doctor Strong being present at the marriage ceremony.  I am a\nsensible fellow, I believe - I believe, on looking back, I mean -\nand modest I am sure; but all this goes on notwithstanding.\nI repair to the enchanted house, where there are lights,\nchattering, music, flowers, officers (I am sorry to see), and the\neldest Miss Larkins, a blaze of beauty.  She is dressed in blue,\nwith blue flowers in her hair - forget-me-nots - as if SHE had any\nneed to wear forget-me-nots.  It is the first really grown-up party\nthat I have ever been invited to, and I am a little uncomfortable;\nfor I appear not to belong to anybody, and nobody appears to have\nanything to say to me, except Mr. Larkins, who asks me how my\nschoolfellows are, which he needn't do, as I have not come there to\nbe insulted.\n\nBut after I have stood in the doorway for some time, and feasted my\neyes upon the goddess of my heart, she approaches me - she, the\neldest Miss Larkins! - and asks me pleasantly, if I dance?\n\nI stammer, with a bow, 'With you, Miss Larkins.'\n\n'With no one else?' inquires Miss Larkins.\n\n'I should have no pleasure in dancing with anyone else.'\n\nMiss Larkins laughs and blushes (or I think she blushes), and says,\n'Next time but one, I shall be very glad.'\n\nThe time arrives.  'It is a waltz, I think,' Miss Larkins\ndoubtfully observes, when I present myself.  'Do you waltz?  If\nnot, Captain Bailey -'\n\nBut I do waltz (pretty well, too, as it happens), and I take Miss\nLarkins out.  I take her sternly from the side of Captain Bailey. \nHe is wretched, I have no doubt; but he is nothing to me.  I have\nbeen wretched, too.  I waltz with the eldest Miss Larkins!  I don't\nknow where, among whom, or how long.  I only know that I swim about\nin space, with a blue angel, in a state of blissful delirium, until\nI find myself alone with her in a little room, resting on a sofa. \nShe admires a flower (pink camellia japonica, price half-a-crown),\nin my button-hole.  I give it her, and say:\n\n'I ask an inestimable price for it, Miss Larkins.'\n\n'Indeed!  What is that?' returns Miss Larkins.\n\n'A flower of yours, that I may treasure it as a miser does gold.'\n\n'You're a bold boy,' says Miss Larkins.  'There.'\n\nShe gives it me, not displeased; and I put it to my lips, and then\ninto my breast.  Miss Larkins, laughing, draws her hand through my\narm, and says, 'Now take me back to Captain Bailey.'\n\nI am lost in the recollection of this delicious interview, and the\nwaltz, when she comes to me again, with a plain elderly gentleman\nwho has been playing whist all night, upon her arm, and says:\n\n'Oh! here is my bold friend!  Mr. Chestle wants to know you, Mr.\nCopperfield.'\n\nI feel at once that he is a friend of the family, and am much\ngratified.\n\n'I admire your taste, sir,' says Mr. Chestle.  'It does you credit. \nI suppose you don't take much interest in hops; but I am a pretty\nlarge grower myself; and if you ever like to come over to our\nneighbourhood - neighbourhood of Ashford - and take a run about our\nplace, -we shall be glad for you to stop as long as you like.'\n\nI thank Mr. Chestle warmly, and shake hands.  I think I am in a\nhappy dream.  I waltz with the eldest Miss Larkins once again.  She\nsays I waltz so well!  I go home in a state of unspeakable bliss,\nand waltz in imagination, all night long, with my arm round the\nblue waist of my dear divinity.  For some days afterwards, I am\nlost in rapturous reflections; but I neither see her in the street,\nnor when I call.  I am imperfectly consoled for this disappointment\nby the sacred pledge, the perished flower.\n\n'Trotwood,' says Agnes, one day after dinner.  'Who do you think is\ngoing to be married tomorrow?  Someone you admire.'\n\n'Not you, I suppose, Agnes?'\n\n'Not me!' raising her cheerful face from the music she is copying. \n'Do you hear him, Papa? - The eldest Miss Larkins.'\n\n'To - to Captain Bailey?' I have just enough power to ask.\n\n'No; to no Captain.  To Mr. Chestle, a hop-grower.'\n\nI am terribly dejected for about a week or two.  I take off my\nring, I wear my worst clothes, I use no bear's grease, and I\nfrequently lament over the late Miss Larkins's faded flower. \nBeing, by that time, rather tired of this kind of life, and having\nreceived new provocation from the butcher, I throw the flower away,\ngo out with the butcher, and gloriously defeat him.\n\nThis, and the resumption of my ring, as well as of the bear's\ngrease in moderation, are the last marks I can discern, now, in my\nprogress to seventeen.\n\n\n\nCHAPTER 19\nI LOOK ABOUT ME, AND MAKE A DISCOVERY\n\n\nI am doubtful whether I was at heart glad or sorry, when my\nschool-days drew to an end, and the time came for my leaving Doctor\nStrong's.  I had been very happy there, I had a great attachment\nfor the Doctor, and I was eminent and distinguished in that little\nworld.  For these reasons I was sorry to go; but for other reasons,\nunsubstantial enough, I was glad.  Misty ideas of being a young man\nat my own disposal, of the importance attaching to a young man at\nhis own disposal, of the wonderful things to be seen and done by\nthat magnificent animal, and the wonderful effects he could not\nfail to make upon society, lured me away.  So powerful were these\nvisionary considerations in my boyish mind, that I seem, according\nto my present way of thinking, to have left school without natural\nregret.  The separation has not made the impression on me, that\nother separations have.  I try in vain to recall how I felt about\nit, and what its circumstances were; but it is not momentous in my\nrecollection.  I suppose the opening prospect confused me.  I know\nthat my juvenile experiences went for little or nothing then; and\nthat life was more like a great fairy story, which I was just about\nto begin to read, than anything else.\n\nMY aunt and I had held many grave deliberations on the calling to\nwhich I should be devoted.  For a year or more I had endeavoured to\nfind a satisfactory answer to her often-repeated question, 'What I\nwould like to be?'  But I had no particular liking, that I could\ndiscover, for anything.  If I could have been inspired with a\nknowledge of the science of navigation, taken the command of a\nfast-sailing expedition, and gone round the world on a triumphant\nvoyage of discovery, I think I might have considered myself\ncompletely suited.  But, in the absence of any such miraculous\nprovision, my desire was to apply myself to some pursuit that would\nnot lie too heavily upon her purse; and to do my duty in it,\nwhatever it might be.\n\nMr. Dick had regularly assisted at our councils, with a meditative\nand sage demeanour.  He never made a suggestion but once; and on\nthat occasion (I don't know what put it in his head), he suddenly\nproposed that I should be 'a Brazier'.  My aunt received this\nproposal so very ungraciously, that he never ventured on a second;\nbut ever afterwards confined himself to looking watchfully at her\nfor her suggestions, and rattling his money.\n\n'Trot, I tell you what, my dear,' said my aunt, one morning in the\nChristmas season when I left school: 'as this knotty point is still\nunsettled, and as we must not make a mistake in our decision if we\ncan help it, I think we had better take a little breathing-time. \nIn the meanwhile, you must try to look at it from a new point of\nview, and not as a schoolboy.'\n\n'I will, aunt.'\n\n'It has occurred to me,' pursued my aunt, 'that a little change,\nand a glimpse of life out of doors, may be useful in helping you to\nknow your own mind, and form a cooler judgement.  Suppose you were\nto go down into the old part of the country again, for instance,\nand see that - that out-of-the-way woman with the savagest of\nnames,' said my aunt, rubbing her nose, for she could never\nthoroughly forgive Peggotty for being so called.\n\n'Of all things in the world, aunt, I should like it best!'\n\n'Well,' said my aunt, 'that's lucky, for I should like it too.  But\nit's natural and rational that you should like it.  And I am very\nwell persuaded that whatever you do, Trot, will always be natural\nand rational.'\n\n'I hope so, aunt.'\n\n'Your sister, Betsey Trotwood,' said my aunt, 'would have been as\nnatural and rational a girl as ever breathed.  You'll be worthy of\nher, won't you?'\n\n'I hope I shall be worthy of YOU, aunt.  That will be enough for\nme.'\n\n'It's a mercy that poor dear baby of a mother of yours didn't\nlive,' said my aunt, looking at me approvingly, 'or she'd have been\nso vain of her boy by this time, that her soft little head would\nhave been completely turned, if there was anything of it left to\nturn.'  (My aunt always excused any weakness of her own in my\nbehalf, by transferring it in this way to my poor mother.) 'Bless\nme, Trotwood, how you do remind me of her!'\n\n'Pleasantly, I hope, aunt?' said I.\n\n'He's as like her, Dick,' said my aunt, emphatically, 'he's as like\nher, as she was that afternoon before she began to fret - bless my\nheart, he's as like her, as he can look at me out of his two eyes!'\n\n'Is he indeed?' said Mr. Dick.\n\n'And he's like David, too,' said my aunt, decisively.\n\n'He is very like David!' said Mr. Dick.\n\n'But what I want you to be, Trot,' resumed my aunt, '- I don't mean\nphysically, but morally; you are very well physically - is, a firm\nfellow.  A fine firm fellow, with a will of your own.  With\nresolution,' said my aunt, shaking her cap at me, and clenching her\nhand.  'With determination.  With character, Trot - with strength\nof character that is not to be influenced, except on good reason,\nby anybody, or by anything.  That's what I want you to be.  That's\nwhat your father and mother might both have been, Heaven knows, and\nbeen the better for it.'\n\nI intimated that I hoped I should be what she described.\n\n'That you may begin, in a small way, to have a reliance upon\nyourself, and to act for yourself,' said my aunt, 'I shall send you\nupon your trip, alone.  I did think, once, of Mr. Dick's going with\nyou; but, on second thoughts, I shall keep him to take care of me.'\n\nMr. Dick, for a moment, looked a little disappointed; until the\nhonour and dignity of having to take care of the most wonderful\nwoman in the world, restored the sunshine to his face.\n\n'Besides,' said my aunt, 'there's the Memorial -'\n\n'Oh, certainly,' said Mr. Dick, in a hurry, 'I intend, Trotwood, to\nget that done immediately - it really must be done immediately! \nAnd then it will go in, you know - and then -' said Mr. Dick, after\nchecking himself, and pausing a long time, 'there'll be a pretty\nkettle of fish!'\n\nIn pursuance of my aunt's kind scheme, I was shortly afterwards\nfitted out with a handsome purse of money, and a portmanteau, and\ntenderly dismissed upon my expedition.  At parting, my aunt gave me\nsome good advice, and a good many kisses; and said that as her\nobject was that I should look about me, and should think a little,\nshe would recommend me to stay a few days in London, if I liked it,\neither on my way down into Suffolk, or in coming back.  In a word,\nI was at liberty to do what I would, for three weeks or a month;\nand no other conditions were imposed upon my freedom than the\nbefore-mentioned thinking and looking about me, and a pledge to\nwrite three times a week and faithfully report myself.\n\nI went to Canterbury first, that I might take leave of Agnes and\nMr. Wickfield (my old room in whose house I had not yet\nrelinquished), and also of the good Doctor.  Agnes was very glad to\nsee me, and told me that the house had not been like itself since\nI had left it.\n\n'I am sure I am not like myself when I am away,' said I.  'I seem\nto want my right hand, when I miss you.  Though that's not saying\nmuch; for there's no head in my right hand, and no heart.  Everyone\nwho knows you, consults with you, and is guided by you, Agnes.'\n\n'Everyone who knows me, spoils me, I believe,' she answered,\nsmiling.\n\n'No.  it's because you are like no one else.  You are so good, and\nso sweet-tempered.  You have such a gentle nature, and you are\nalways right.'\n\n'You talk,' said Agnes, breaking into a pleasant laugh, as she sat\nat work, 'as if I were the late Miss Larkins.'\n\n'Come!  It's not fair to abuse my confidence,' I answered,\nreddening at the recollection of my blue enslaver.  'But I shall\nconfide in you, just the same, Agnes.  I can never grow out of\nthat.  Whenever I fall into trouble, or fall in love, I shall\nalways tell you, if you'll let me - even when I come to fall in\nlove in earnest.'\n\n'Why, you have always been in earnest!' said Agnes, laughing again.\n\n'Oh! that was as a child, or a schoolboy,' said I, laughing in my\nturn, not without being a little shame-faced.  'Times are altering\nnow, and I suppose I shall be in a terrible state of earnestness\none day or other.  My wonder is, that you are not in earnest\nyourself, by this time, Agnes.'\n\nAgnes laughed again, and shook her head.\n\n'Oh, I know you are not!' said I, 'because if you had been you\nwould have told me.  Or at least' - for I saw a faint blush in her\nface, 'you would have let me find it out for myself.  But there is\nno one that I know of, who deserves to love you, Agnes.  Someone of\na nobler character, and more worthy altogether than anyone I have\never seen here, must rise up, before I give my consent.  In the\ntime to come, I shall have a wary eye on all admirers; and shall\nexact a great deal from the successful one, I assure you.'\n\nWe had gone on, so far, in a mixture of confidential jest and\nearnest, that had long grown naturally out of our familiar\nrelations, begun as mere children.  But Agnes, now suddenly lifting\nup her eyes to mine, and speaking in a different manner, said:\n\n'Trotwood, there is something that I want to ask you, and that I\nmay not have another opportunity of asking for a long time, perhaps\n- something I would ask, I think, of no one else.  Have you\nobserved any gradual alteration in Papa?'\n\nI had observed it, and had often wondered whether she had too.  I\nmust have shown as much, now, in my face; for her eyes were in a\nmoment cast down, and I saw tears in them.\n\n'Tell me what it is,' she said, in a low voice.\n\n'I think - shall I be quite plain, Agnes, liking him so much?'\n\n'Yes,' she said.\n\n'I think he does himself no good by the habit that has increased\nupon him since I first came here.  He is often very nervous - or I\nfancy so.'\n\n'It is not fancy,' said Agnes, shaking her head.\n\n'His hand trembles, his speech is not plain, and his eyes look\nwild.  I have remarked that at those times, and when he is least\nlike himself, he is most certain to be wanted on some business.'\n\n'By Uriah,' said Agnes.\n\n'Yes; and the sense of being unfit for it, or of not having\nunderstood it, or of having shown his condition in spite of\nhimself, seems to make him so uneasy, that next day he is worse,\nand next day worse, and so he becomes jaded and haggard.  Do not be\nalarmed by what I say, Agnes, but in this state I saw him, only the\nother evening, lay down his head upon his desk, and shed tears like\na child.'\n\nHer hand passed softly before my lips while I was yet speaking, and\nin a moment she had met her father at the door of the room, and was\nhanging on his shoulder.  The expression of her face, as they both\nlooked towards me, I felt to be very touching.  There was such deep\nfondness for him, and gratitude to him for all his love and care,\nin her beautiful look; and there was such a fervent appeal to me to\ndeal tenderly by him, even in my inmost thoughts, and to let no\nharsh construction find any place against him; she was, at once, so\nproud of him and devoted to him, yet so compassionate and sorry,\nand so reliant upon me to be so, too; that nothing she could have\nsaid would have expressed more to me, or moved me more.\n\nWe were to drink tea at the Doctor's.  We went there at the usual\nhour; and round the study fireside found the Doctor, and his young\nwife, and her mother.  The Doctor, who made as much of my going\naway as if I were going to China, received me as an honoured guest;\nand called for a log of wood to be thrown on the fire, that he\nmight see the face of his old pupil reddening in the blaze.\n\n'I shall not see many more new faces in Trotwood's stead,\nWickfield,' said the Doctor, warming his hands; 'I am getting lazy,\nand want ease.  I shall relinquish all my young people in another\nsix months, and lead a quieter life.'\n\n'You have said so, any time these ten years, Doctor,' Mr. Wickfield\nanswered.\n\n'But now I mean to do it,' returned the Doctor.  'My first master\nwill succeed me - I am in earnest at last - so you'll soon have to\narrange our contracts, and to bind us firmly to them, like a couple\nof knaves.'\n\n'And to take care,' said Mr. Wickfield, 'that you're not imposed\non, eh?  As you certainly would be, in any contract you should make\nfor yourself.  Well!  I am ready.  There are worse tasks than that,\nin my calling.'\n\n'I shall have nothing to think of then,' said the Doctor, with a\nsmile, 'but my Dictionary; and this other contract-bargain -\nAnnie.'\n\nAs Mr. Wickfield glanced towards her, sitting at the tea table by\nAgnes, she seemed to me to avoid his look with such unwonted\nhesitation and timidity, that his attention became fixed upon her,\nas if something were suggested to his thoughts.\n\n'There is a post come in from India, I observe,' he said, after a\nshort silence.\n\n'By the by! and letters from Mr. Jack Maldon!' said the Doctor.\n\n'Indeed!'\n'Poor dear Jack!' said Mrs. Markleham, shaking her head.  'That\ntrying climate! - like living, they tell me, on a sand-heap,\nunderneath a burning-glass!  He looked strong, but he wasn't.  My\ndear Doctor, it was his spirit, not his constitution, that he\nventured on so boldly.  Annie, my dear, I am sure you must\nperfectly recollect that your cousin never was strong - not what\ncan be called ROBUST, you know,' said Mrs. Markleham, with\nemphasis, and looking round upon us generally, '- from the time\nwhen my daughter and himself were children together, and walking\nabout, arm-in-arm, the livelong day.'\n\nAnnie, thus addressed, made no reply.\n\n'Do I gather from what you say, ma'am, that Mr. Maldon is ill?'\nasked Mr.  Wickfield.\n\n'Ill!' replied the Old Soldier.  'My dear sir, he's all sorts of\nthings.'\n\n'Except well?' said Mr. Wickfield.\n\n'Except well, indeed!' said the Old Soldier.  'He has had dreadful\nstrokes of the sun, no doubt, and jungle fevers and agues, and\nevery kind of thing you can mention.  As to his liver,' said the\nOld Soldier resignedly, 'that, of course, he gave up altogether,\nwhen he first went out!'\n\n'Does he say all this?' asked Mr. Wickfield.\n\n'Say?  My dear sir,' returned Mrs. Markleham, shaking her head and\nher fan, 'you little know my poor Jack Maldon when you ask that\nquestion.  Say?  Not he.  You might drag him at the heels of four\nwild horses first.'\n\n'Mama!' said Mrs. Strong.\n\n'Annie, my dear,' returned her mother, 'once for all, I must really\nbeg that you will not interfere with me, unless it is to confirm\nwhat I say.  You know as well as I do that your cousin Maldon would\nbe dragged at the heels of any number of wild horses - why should\nI confine myself to four!  I WON'T confine myself to four - eight,\nsixteen, two-and-thirty, rather than say anything calculated to\noverturn the Doctor's plans.'\n\n'Wickfield's plans,' said the Doctor, stroking his face, and\nlooking penitently at his adviser.  'That is to say, our joint\nplans for him.  I said myself, abroad or at home.'\n\n'And I said' added Mr. Wickfield gravely, 'abroad.  I was the means\nof sending him abroad.  It's my responsibility.'\n\n'Oh!  Responsibility!' said the Old Soldier.  'Everything was done\nfor the best, my dear Mr. Wickfield; everything was done for the\nkindest and best, we know.  But if the dear fellow can't live\nthere, he can't live there.  And if he can't live there, he'll die\nthere, sooner than he'll overturn the Doctor's plans.  I know him,'\nsaid the Old Soldier, fanning herself, in a sort of calm prophetic\nagony, 'and I know he'll die there, sooner than he'll overturn the\nDoctor's plans.'\n\n'Well, well, ma'am,' said the Doctor cheerfully, 'I am not bigoted\nto my plans, and I can overturn them myself.  I can substitute some\nother plans.  If Mr. Jack Maldon comes home on account of ill\nhealth, he must not be allowed to go back, and we must endeavour to\nmake some more suitable and fortunate provision for him in this\ncountry.'\n\nMrs. Markleham was so overcome by this generous speech - which, I\nneed not say, she had not at all expected or led up to - that she\ncould only tell the Doctor it was like himself, and go several\ntimes through that operation of kissing the sticks of her fan, and\nthen tapping his hand with it.  After which she gently chid her\ndaughter Annie, for not being more demonstrative when such\nkindnesses were showered, for her sake, on her old playfellow; and\nentertained us with some particulars concerning other deserving\nmembers of her family, whom it was desirable to set on their\ndeserving legs.\n\nAll this time, her daughter Annie never once spoke, or lifted up\nher eyes.  All this time, Mr. Wickfield had his glance upon her as\nshe sat by his own daughter's side.  It appeared to me that he\nnever thought of being observed by anyone; but was so intent upon\nher, and upon his own thoughts in connexion with her, as to be\nquite absorbed.  He now asked what Mr. Jack Maldon had actually\nwritten in reference to himself, and to whom he had written?\n\n'Why, here,' said Mrs. Markleham, taking a letter from the\nchimney-piece above the Doctor's head, 'the dear fellow says to the\nDoctor himself - where is it?  Oh! - \"I am sorry to inform you that\nmy health is suffering severely, and that I fear I may be reduced\nto the necessity of returning home for a time, as the only hope of\nrestoration.\" That's pretty plain, poor fellow!  His only hope of\nrestoration!  But Annie's letter is plainer still.  Annie, show me\nthat letter again.'\n\n'Not now, mama,' she pleaded in a low tone.\n\n'My dear, you absolutely are, on some subjects, one of the most\nridiculous persons in the world,' returned her mother, 'and perhaps\nthe most unnatural to the claims of your own family.  We never\nshould have heard of the letter at all, I believe, unless I had\nasked for it myself.  Do you call that confidence, my love, towards\nDoctor Strong?  I am surprised.  You ought to know better.'\n\nThe letter was reluctantly produced; and as I handed it to the old\nlady, I saw how the unwilling hand from which I took it, trembled.\n\n'Now let us see,' said Mrs. Markleham, putting her glass to her\neye, 'where the passage is.  \"The remembrance of old times, my\ndearest Annie\" - and so forth - it's not there.  \"The amiable old\nProctor\" - who's he?  Dear me, Annie, how illegibly your cousin\nMaldon writes, and how stupid I am!  \"Doctor,\" of course.  Ah!\namiable indeed!' Here she left off, to kiss her fan again, and\nshake it at the Doctor, who was looking at us in a state of placid\nsatisfaction.  'Now I have found it.  \"You may not be surprised to\nhear, Annie,\" - no, to be sure, knowing that he never was really\nstrong; what did I say just now? - \"that I have undergone so much\nin this distant place, as to have decided to leave it at all\nhazards; on sick leave, if I can; on total resignation, if that is\nnot to be obtained.  What I have endured, and do endure here, is\ninsupportable.\" And but for the promptitude of that best of\ncreatures,' said Mrs. Markleham, telegraphing the Doctor as before,\nand refolding the letter, 'it would be insupportable to me to think\nof.'\n\nMr. Wickfield said not one word, though the old lady looked to him\nas if for his commentary on this intelligence; but sat severely\nsilent, with his eyes fixed on the ground.  Long after the subject\nwas dismissed, and other topics occupied us, he remained so; seldom\nraising his eyes, unless to rest them for a moment, with a\nthoughtful frown, upon the Doctor, or his wife, or both.\n\nThe Doctor was very fond of music.  Agnes sang with great sweetness\nand expression, and so did Mrs. Strong.  They sang together, and\nplayed duets together, and we had quite a little concert.  But I\nremarked two things: first, that though Annie soon recovered her\ncomposure, and was quite herself, there was a blank between her and\nMr. Wickfield which separated them wholly from each other;\nsecondly, that Mr. Wickfield seemed to dislike the intimacy between\nher and Agnes, and to watch it with uneasiness.  And now, I must\nconfess, the recollection of what I had seen on that night when Mr.\nMaldon went away, first began to return upon me with a meaning it\nhad never had, and to trouble me.  The innocent beauty of her face\nwas not as innocent to me as it had been; I mistrusted the natural\ngrace and charm of her manner; and when I looked at Agnes by her\nside, and thought how good and true Agnes was, suspicions arose\nwithin me that it was an ill-assorted friendship.\n\nShe was so happy in it herself, however, and the other was so happy\ntoo, that they made the evening fly away as if it were but an hour. \nIt closed in an incident which I well remember.  They were taking\nleave of each other, and Agnes was going to embrace her and kiss\nher, when Mr. Wickfield stepped between them, as if by accident,\nand drew Agnes quickly away.  Then I saw, as though all the\nintervening time had been cancelled, and I were still standing in\nthe doorway on the night of the departure, the expression of that\nnight in the face of Mrs. Strong, as it confronted his.\n\nI cannot say what an impression this made upon me, or how\nimpossible I found it, when I thought of her afterwards, to\nseparate her from this look, and remember her face in its innocent\nloveliness again.  It haunted me when I got home.  I seemed to have\nleft the Doctor's roof with a dark cloud lowering on it.  The\nreverence that I had for his grey head, was mingled with\ncommiseration for his faith in those who were treacherous to him,\nand with resentment against those who injured him.  The impending\nshadow of a great affliction, and a great disgrace that had no\ndistinct form in it yet, fell like a stain upon the quiet place\nwhere I had worked and played as a boy, and did it a cruel wrong. \nI had no pleasure in thinking, any more, of the grave old\nbroad-leaved aloe-trees, which remained shut up in themselves a\nhundred years together, and of the trim smooth grass-plot, and the\nstone urns, and the Doctor's walk, and the congenial sound of the\nCathedral bell hovering above them all.  It was as if the tranquil\nsanctuary of my boyhood had been sacked before my face, and its\npeace and honour given to the winds.\n\nBut morning brought with it my parting from the old house, which\nAgnes had filled with her influence; and that occupied my mind\nsufficiently.  I should be there again soon, no doubt; I might\nsleep again - perhaps often - in my old room; but the days of my\ninhabiting there were gone, and the old time was past.  I was\nheavier at heart when I packed up such of my books and clothes as\nstill remained there to be sent to Dover, than I cared to show to\nUriah Heep; who was so officious to help me, that I uncharitably\nthought him mighty glad that I was going.\n\nI got away from Agnes and her father, somehow, with an indifferent\nshow of being very manly, and took my seat upon the box of the\nLondon coach.  I was so softened and forgiving, going through the\ntown, that I had half a mind to nod to my old enemy the butcher,\nand throw him five shillings to drink.  But he looked such a very\nobdurate butcher as he stood scraping the great block in the shop,\nand moreover, his appearance was so little improved by the loss of\na front tooth which I had knocked out, that I thought it best to\nmake no advances.\n\nThe main object on my mind, I remember, when we got fairly on the\nroad, was to appear as old as possible to the coachman, and to\nspeak extremely gruff.  The latter point I achieved at great\npersonal inconvenience; but I stuck to it, because I felt it was a\ngrown-up sort of thing.\n\n'You are going through, sir?' said the coachman.\n\n'Yes, William,' I said, condescendingly (I knew him); 'I am going\nto London.  I shall go down into Suffolk afterwards.'\n\n'Shooting, sir?' said the coachman.\n\nHe knew as well as I did that it was just as likely, at that time\nof year, I was going down there whaling; but I felt complimented,\ntoo.\n\n'I don't know,' I said, pretending to be undecided, 'whether I\nshall take a shot or not.'\n'Birds is got wery shy, I'm told,' said William.\n\n'So I understand,' said I.\n\n'Is Suffolk your county, sir?' asked William.\n\n'Yes,' I said, with some importance.  'Suffolk's my county.'\n\n'I'm told the dumplings is uncommon fine down there,' said William.\n\nI was not aware of it myself, but I felt it necessary to uphold the\ninstitutions of my county, and to evince a familiarity with them;\nso I shook my head, as much as to say, 'I believe you!'\n\n'And the Punches,' said William.  'There's cattle!  A Suffolk\nPunch, when he's a good un, is worth his weight in gold.  Did you\never breed any Suffolk Punches yourself, sir?'\n\n'N-no,' I said, 'not exactly.'\n\n'Here's a gen'lm'n behind me, I'll pound it,' said William, 'as has\nbred 'em by wholesale.'\n\nThe gentleman spoken of was a gentleman with a very unpromising\nsquint, and a prominent chin, who had a tall white hat on with a\nnarrow flat brim, and whose close-fitting drab trousers seemed to\nbutton all the way up outside his legs from his boots to his hips. \nHis chin was cocked over the coachman's shoulder, so near to me,\nthat his breath quite tickled the back of my head; and as I looked\nat him, he leered at the leaders with the eye with which he didn't\nsquint, in a very knowing manner.\n\n'Ain't you?' asked William.\n\n'Ain't I what?' said the gentleman behind.\n\n'Bred them Suffolk Punches by wholesale?'\n\n'I should think so,' said the gentleman.  'There ain't no sort of\norse that I ain't bred, and no sort of dorg.  Orses and dorgs is\nsome men's fancy.  They're wittles and drink to me - lodging, wife,\nand children - reading, writing, and Arithmetic - snuff, tobacker,\nand sleep.'\n\n'That ain't a sort of man to see sitting behind a coach-box, is it\nthough?' said William in my ear, as he handled the reins.\n\nI construed this remark into an indication of a wish that he should\nhave my place, so I blushingly offered to resign it.\n\n'Well, if you don't mind, sir,' said William, 'I think it would be\nmore correct.'\n\nI have always considered this as the first fall I had in life. \nWhen I booked my place at the coach office I had had 'Box Seat'\nwritten against the entry, and had given the book-keeper\nhalf-a-crown.  I was got up in a special great-coat and shawl,\nexpressly to do honour to that distinguished eminence; had\nglorified myself upon it a good deal; and had felt that I was a\ncredit to the coach.  And here, in the very first stage, I was\nsupplanted by a shabby man with a squint, who had no other merit\nthan smelling like a livery-stables, and being able to walk across\nme, more like a fly than a human being, while the horses were at a\ncanter!\n\nA distrust of myself, which has often beset me in life on small\noccasions, when it would have been better away, was assuredly not\nstopped in its growth by this little incident outside the\nCanterbury coach.  It was in vain to take refuge in gruffness of\nspeech.  I spoke from the pit of my stomach for the rest of the\njourney, but I felt completely extinguished, and dreadfully young.\n\nIt was curious and interesting, nevertheless, to be sitting up\nthere behind four horses: well educated, well dressed, and with\nplenty of money in my pocket; and to look out for the places where\nI had slept on my weary journey.  I had abundant occupation for my\nthoughts, in every conspicuous landmark on the road.  When I looked\ndown at the trampers whom we passed, and saw that well-remembered\nstyle of face turned up, I felt as if the tinker's blackened hand\nwere in the bosom of my shirt again.  When we clattered through the\nnarrow street of Chatham, and I caught a glimpse, in passing, of\nthe lane where the old monster lived who had bought my jacket, I\nstretched my neck eagerly to look for the place where I had sat, in\nthe sun and in the shade, waiting for my money.  When we came, at\nlast, within a stage of London, and passed the veritable Salem\nHouse where Mr. Creakle had laid about him with a heavy hand, I\nwould have given all I had, for lawful permission to get down and\nthrash him, and let all the boys out like so many caged sparrows.\n\nWe went to the Golden Cross at Charing Cross, then a mouldy sort of\nestablishment in a close neighbourhood.  A waiter showed me into\nthe coffee-room; and a chambermaid introduced me to my small\nbedchamber, which smelt like a hackney-coach, and was shut up like\na family vault.  I was still painfully conscious of my youth, for\nnobody stood in any awe of me at all: the chambermaid being utterly\nindifferent to my opinions on any subject, and the waiter being\nfamiliar with me, and offering advice to my inexperience.\n\n'Well now,' said the waiter, in a tone of confidence, 'what would\nyou like for dinner?  Young gentlemen likes poultry in general:\nhave a fowl!'\n\nI told him, as majestically as I could, that I wasn't in the humour\nfor a fowl.\n\n'Ain't you?' said the waiter.  'Young gentlemen is generally tired\nof beef and mutton: have a weal cutlet!'\n\nI assented to this proposal, in default of being able to suggest\nanything else.\n\n'Do you care for taters?' said the waiter, with an insinuating\nsmile, and his head on one side.  'Young gentlemen generally has\nbeen overdosed with taters.'\n\nI commanded him, in my deepest voice, to order a veal cutlet and\npotatoes, and all things fitting; and to inquire at the bar if\nthere were any letters for Trotwood Copperfield, Esquire - which I\nknew there were not, and couldn't be, but thought it manly to\nappear to expect.\n\nHe soon came back to say that there were none (at which I was much\nsurprised) and began to lay the cloth for my dinner in a box by the\nfire.  While he was so engaged, he asked me what I would take with\nit; and on my replying 'Half a pint of sherry,'thought it a\nfavourable opportunity, I am afraid, to extract that measure of\nwine from the stale leavings at the bottoms of several small\ndecanters.  I am of this opinion, because, while I was reading the\nnewspaper, I observed him behind a low wooden partition, which was\nhis private apartment, very busy pouring out of a number of those\nvessels into one, like a chemist and druggist making up a\nprescription.  When the wine came, too, I thought it flat; and it\ncertainly had more English crumbs in it, than were to be expected\nin a foreign wine in anything like a pure state, but I was bashful\nenough to drink it, and say nothing.\n\nBeing then in a pleasant frame of mind (from which I infer that\npoisoning is not always disagreeable in some stages of the\nprocess), I resolved to go to the play.  It was Covent Garden\nTheatre that I chose; and there, from the back of a centre box, I\nsaw Julius Caesar and the new Pantomime.  To have all those noble\nRomans alive before me, and walking in and out for my\nentertainment, instead of being the stern taskmasters they had been\nat school, was a most novel and delightful effect.  But the mingled\nreality and mystery of the whole show, the influence upon me of the\npoetry, the lights, the music, the company, the smooth stupendous\nchanges of glittering and brilliant scenery, were so dazzling, and\nopened up such illimitable regions of delight, that when I came out\ninto the rainy street, at twelve o'clock at night, I felt as if I\nhad come from the clouds, where I had been leading a romantic life\nfor ages, to a bawling, splashing, link-lighted,\numbrella-struggling, hackney-coach-jostling, patten-clinking,\nmuddy, miserable world.\n\nI had emerged by another door, and stood in the street for a little\nwhile, as if I really were a stranger upon earth: but the\nunceremonious pushing and hustling that I received, soon recalled\nme to myself, and put me in the road back to the hotel; whither I\nwent, revolving the glorious vision all the way; and where, after\nsome porter and oysters, I sat revolving it still, at past one\no'clock, with my eyes on the coffee-room fire.\n\nI was so filled with the play, and with the past - for it was, in\na manner, like a shining transparency, through which I saw my\nearlier life moving along - that I don't know when the figure of a\nhandsome well-formed young man dressed with a tasteful easy\nnegligence which I have reason to remember very well, became a real\npresence to me.  But I recollect being conscious of his company\nwithout having noticed his coming in - and my still sitting,\nmusing, over the coffee-room fire.\n\nAt last I rose to go to bed, much to the relief of the sleepy\nwaiter, who had got the fidgets in his legs, and was twisting them,\nand hitting them, and putting them through all kinds of contortions\nin his small pantry.  In going towards the door, I passed the\nperson who had come in, and saw him plainly.  I turned directly,\ncame back, and looked again.  He did not know me, but I knew him in\na moment.\n\nAt another time I might have wanted the confidence or the decision\nto speak to him, and might have put it off until next day, and\nmight have lost him.  But, in the then condition of my mind, where\nthe play was still running high, his former protection of me\nappeared so deserving of my gratitude, and my old love for him\noverflowed my breast so freshly and spontaneously, that I went up\nto him at once, with a fast-beating heart, and said:\n\n'Steerforth! won't you speak to me?'\n\nHe looked at me - just as he used to look, sometimes -but I saw no\nrecognition in his face.\n\n'You don't remember me, I am afraid,' said I.\n\n'My God!' he suddenly exclaimed.  'It's little Copperfield!'\n\nI grasped him by both hands, and could not let them go.  But for\nvery shame, and the fear that it might displease him, I could have\nheld him round the neck and cried.\n\n'I never, never, never was so glad!  My dear Steerforth, I am so\noverjoyed to see you!'\n\n'And I am rejoiced to see you, too!' he said, shaking my hands\nheartily.  'Why, Copperfield, old boy, don't be overpowered!' And\nyet he was glad, too, I thought, to see how the delight I had in\nmeeting him affected me.\n\nI brushed away the tears that my utmost resolution had not been\nable to keep back, and I made a clumsy laugh of it, and we sat down\ntogether, side by side.\n\n'Why, how do you come to be here?' said Steerforth, clapping me on\nthe shoulder.\n\n'I came here by the Canterbury coach, today.  I have been adopted\nby an aunt down in that part of the country, and have just finished\nmy education there.  How do YOU come to be here, Steerforth?'\n\n'Well, I am what they call an Oxford man,' he returned; 'that is to\nsay, I get bored to death down there, periodically - and I am on my\nway now to my mother's.  You're a devilish amiable-looking fellow,\nCopperfield.  just what you used to be, now I look at you!  Not\naltered in the least!'\n\n'I knew you immediately,' I said; 'but you are more easily\nremembered.'\n\nHe laughed as he ran his hand through the clustering curls of his\nhair, and said gaily:\n\n'Yes, I am on an expedition of duty.  My mother lives a little way\nout of town; and the roads being in a beastly condition, and our\nhouse tedious enough, I remained here tonight instead of going on. \nI have not been in town half-a-dozen hours, and those I have been\ndozing and grumbling away at the play.'\n\n'I have been at the play, too,' said I.  'At Covent Garden.  What\na delightful and magnificent entertainment, Steerforth!'\n\nSteerforth laughed heartily.\n\n'My dear young Davy,' he said, clapping me on the shoulder again,\n'you are a very Daisy.  The daisy of the field, at sunrise, is not\nfresher than you are.  I have been at Covent Garden, too, and there\nnever was a more miserable business.  Holloa, you sir!'\n\nThis was addressed to the waiter, who had been very attentive to\nour recognition, at a distance, and now came forward deferentially.\n\n'Where have you put my friend, Mr. Copperfield?' said Steerforth.\n\n'Beg your pardon, sir?'\n\n'Where does he sleep?  What's his number?  You know what I mean,'\nsaid Steerforth.\n\n'Well, sir,' said the waiter, with an apologetic air.  'Mr.\nCopperfield is at present in forty-four, sir.'\n\n'And what the devil do you mean,' retorted Steerforth, 'by putting\nMr. Copperfield into a little loft over a stable?'\n\n'Why, you see we wasn't aware, sir,' returned the waiter, still\napologetically, 'as Mr. Copperfield was anyways particular.  We can\ngive Mr. Copperfield seventy-two, sir, if it would be preferred. \nNext you, sir.'\n\n'Of course it would be preferred,' said Steerforth.  'And do it at\nonce.'\nThe waiter immediately withdrew to make the exchange.  Steerforth,\nvery much amused at my having been put into forty-four, laughed\nagain, and clapped me on the shoulder again, and invited me to\nbreakfast with him next morning at ten o'clock - an invitation I\nwas only too proud and happy to accept.  It being now pretty late,\nwe took our candles and went upstairs, where we parted with\nfriendly heartiness at his door, and where I found my new room a\ngreat improvement on my old one, it not being at all musty, and\nhaving an immense four-post bedstead in it, which was quite a\nlittle landed estate.  Here, among pillows enough for six, I soon\nfell asleep in a blissful condition, and dreamed of ancient Rome,\nSteerforth, and friendship, until the early morning coaches,\nrumbling out of the archway underneath, made me dream of thunder\nand the gods.\n\n\n\nCHAPTER 20\nSTEERFORTH'S HOME\n\n\nWhen the chambermaid tapped at my door at eight o'clock, and\ninformed me that my shaving-water was outside, I felt severely the\nhaving no occasion for it, and blushed in my bed.  The suspicion\nthat she laughed too, when she said it, preyed upon my mind all the\ntime I was dressing; and gave me, I was conscious, a sneaking and\nguilty air when I passed her on the staircase, as I was going down\nto breakfast.  I was so sensitively aware, indeed, of being younger\nthan I could have wished, that for some time I could not make up my\nmind to pass her at all, under the ignoble circumstances of the\ncase; but, hearing her there with a broom, stood peeping out of\nwindow at King Charles on horseback, surrounded by a maze of\nhackney-coaches, and looking anything but regal in a drizzling rain\nand a dark-brown fog, until I was admonished by the waiter that the\ngentleman was waiting for me.\n\nIt was not in the coffee-room that I found Steerforth expecting me,\nbut in a snug private apartment, red-curtained and Turkey-carpeted,\nwhere the fire burnt bright, and a fine hot breakfast was set forth\non a table covered with a clean cloth; and a cheerful miniature of\nthe room, the fire, the breakfast, Steerforth, and all, was shining\nin the little round mirror over the sideboard.  I was rather\nbashful at first, Steerforth being so self-possessed, and elegant,\nand superior to me in all respects (age included); but his easy\npatronage soon put that to rights, and made me quite at home.  I\ncould not enough admire the change he had wrought in the Golden\nCross; or compare the dull forlorn state I had held yesterday, with\nthis morning's comfort and this morning's entertainment.  As to the\nwaiter's familiarity, it was quenched as if it had never been.  He\nattended on us, as I may say, in sackcloth and ashes.\n\n'Now, Copperfield,' said Steerforth, when we were alone, 'I should\nlike to hear what you are doing, and where you are going, and all\nabout you.  I feel as if you were my property.'\nGlowing with pleasure to find that he had still this interest in\nme, I told him how my aunt had proposed the little expedition that\nI had before me, and whither it tended.\n\n'As you are in no hurry, then,' said Steerforth, 'come home with me\nto Highgate, and stay a day or two.  You will be pleased with my\nmother - she is a little vain and prosy about me, but that you can\nforgive her - and she will be pleased with you.'\n\n'I should like to be as sure of that, as you are kind enough to say\nyou are,' I answered, smiling.\n\n'Oh!' said Steerforth, 'everyone who likes me, has a claim on her\nthat is sure to be acknowledged.'\n\n'Then I think I shall be a favourite,' said I.\n\n'Good!' said Steerforth.  'Come and prove it.  We will go and see\nthe lions for an hour or two - it's something to have a fresh\nfellow like you to show them to, Copperfield - and then we'll\njourney out to Highgate by the coach.'\n\nI could hardly believe but that I was in a dream, and that I should\nwake presently in number forty-four, to the solitary box in the\ncoffee-room and the familiar waiter again.  After I had written to\nmy aunt and told her of my fortunate meeting with my admired old\nschoolfellow, and my acceptance of his invitation, we went out in\na hackney-chariot, and saw a Panorama and some other sights, and\ntook a walk through the Museum, where I could not help observing\nhow much Steerforth knew, on an infinite variety of subjects, and\nof how little account he seemed to make his knowledge.\n\n'You'll take a high degree at college, Steerforth,' said I, 'if you\nhave not done so already; and they will have good reason to be\nproud of you.'\n\n'I take a degree!' cried Steerforth.  'Not I! my dear Daisy - will\nyou mind my calling you Daisy?'\n\n'Not at all!' said I.\n\n'That's a good fellow!  My dear Daisy,' said Steerforth, laughing. \n'I have not the least desire or intention to distinguish myself in\nthat way.  I have done quite sufficient for my purpose.  I find\nthat I am heavy company enough for myself as I am.'\n\n'But the fame -' I was beginning.\n\n'You romantic Daisy!' said Steerforth, laughing still more\nheartily: 'why should I trouble myself, that a parcel of\nheavy-headed fellows may gape and hold up their hands?  Let them do\nit at some other man.  There's fame for him, and he's welcome to\nit.'\n\nI was abashed at having made so great a mistake, and was glad to\nchange the subject.  Fortunately it was not difficult to do, for\nSteerforth could always pass from one subject to another with a\ncarelessness and lightness that were his own.\n\nLunch succeeded to our sight-seeing, and the short winter day wore\naway so fast, that it was dusk when the stage-coach stopped with us\nat an old brick house at Highgate on the summit of the hill.  An\nelderly lady, though not very far advanced in years, with a proud\ncarriage and a handsome face, was in the doorway as we alighted;\nand greeting Steerforth as 'My dearest James,' folded him in her\narms.  To this lady he presented me as his mother, and she gave me\na stately welcome.\n\nIt was a genteel old-fashioned house, very quiet and orderly.  From\nthe windows of my room I saw all London lying in the distance like\na great vapour, with here and there some lights twinkling through\nit.  I had only time, in dressing, to glance at the solid\nfurniture, the framed pieces of work (done, I supposed, by\nSteerforth's mother when she was a girl), and some pictures in\ncrayons of ladies with powdered hair and bodices, coming and going\non the walls, as the newly-kindled fire crackled and sputtered,\nwhen I was called to dinner.\n\nThere was a second lady in the dining-room, of a slight short\nfigure, dark, and not agreeable to look at, but with some\nappearance of good looks too, who attracted my attention: perhaps\nbecause I had not expected to see her; perhaps because I found\nmyself sitting opposite to her; perhaps because of something really\nremarkable in her.  She had black hair and eager black eyes, and\nwas thin, and had a scar upon her lip.  It was an old scar - I\nshould rather call it seam, for it was not discoloured, and had\nhealed years ago - which had once cut through her mouth, downward\ntowards the chin, but was now barely visible across the table,\nexcept above and on her upper lip, the shape of which it had\naltered.  I concluded in my own mind that she was about thirty\nyears of age, and that she wished to be married.  She was a little\ndilapidated - like a house - with having been so long to let; yet\nhad, as I have said, an appearance of good looks.  Her thinness\nseemed to be the effect of some wasting fire within her, which\nfound a vent in her gaunt eyes.\n\nShe was introduced as Miss Dartle, and both Steerforth and his\nmother called her Rosa.  I found that she lived there, and had been\nfor a long time Mrs. Steerforth's companion.  It appeared to me\nthat she never said anything she wanted to say, outright; but\nhinted it, and made a great deal more of it by this practice.  For\nexample, when Mrs. Steerforth observed, more in jest than earnest,\nthat she feared her son led but a wild life at college, Miss Dartle\nput in thus:\n\n'Oh, really?  You know how ignorant I am, and that I only ask for\ninformation, but isn't it always so?  I thought that kind of life\nwas on all hands understood to be - eh?'\n'It is education for a very grave profession, if you mean that,\nRosa,' Mrs. Steerforth answered with some coldness.\n\n'Oh!  Yes!  That's very true,' returned Miss Dartle.  'But isn't\nit, though? - I want to be put right, if I am wrong - isn't it,\nreally?'\n\n'Really what?' said Mrs. Steerforth.\n\n'Oh!  You mean it's not!' returned Miss Dartle.  'Well, I'm very\nglad to hear it!  Now, I know what to do!  That's the advantage of\nasking.  I shall never allow people to talk before me about\nwastefulness and profligacy, and so forth, in connexion with that\nlife, any more.'\n\n'And you will be right,' said Mrs. Steerforth.  'My son's tutor is\na conscientious gentleman; and if I had not implicit reliance on my\nson, I should have reliance on him.'\n\n'Should you?' said Miss Dartle.  'Dear me!  Conscientious, is he? \nReally conscientious, now?'\n\n'Yes, I am convinced of it,' said Mrs. Steerforth.\n\n'How very nice!' exclaimed Miss Dartle.  'What a comfort!  Really\nconscientious?  Then he's not - but of course he can't be, if he's\nreally conscientious.  Well, I shall be quite happy in my opinion\nof him, from this time.  You can't think how it elevates him in my\nopinion, to know for certain that he's really conscientious!'\n\nHer own views of every question, and her correction of everything\nthat was said to which she was opposed, Miss Dartle insinuated in\nthe same way: sometimes, I could not conceal from myself, with\ngreat power, though in contradiction even of Steerforth.  An\ninstance happened before dinner was done.  Mrs. Steerforth speaking\nto me about my intention of going down into Suffolk, I said at\nhazard how glad I should be, if Steerforth would only go there with\nme; and explaining to him that I was going to see my old nurse, and\nMr. Peggotty's family, I reminded him of the boatman whom he had\nseen at school.\n\n'Oh!  That bluff fellow!' said Steerforth.  'He had a son with him,\nhadn't he?'\n\n'No.  That was his nephew,' I replied; 'whom he adopted, though, as\na son.  He has a very pretty little niece too, whom he adopted as\na daughter.  In short, his house - or rather his boat, for he lives\nin one, on dry land - is full of people who are objects of his\ngenerosity and kindness.  You would be delighted to see that\nhousehold.'\n\n'Should I?' said Steerforth.  'Well, I think I should.  I must see\nwhat can be done.  It would be worth a journey (not to mention the\npleasure of a journey with you, Daisy), to see that sort of people\ntogether, and to make one of 'em.'\n\nMy heart leaped with a new hope of pleasure.  But it was in\nreference to the tone in which he had spoken of 'that sort of\npeople', that Miss Dartle, whose sparkling eyes had been watchful\nof us, now broke in again.\n\n'Oh, but, really?  Do tell me.  Are they, though?' she said.\n\n'Are they what?  And are who what?' said Steerforth.\n\n'That sort of people.  - Are they really animals and clods, and\nbeings of another order?  I want to know SO much.'\n\n'Why, there's a pretty wide separation between them and us,' said\nSteerforth, with indifference.  'They are not to be expected to be\nas sensitive as we are.  Their delicacy is not to be shocked, or\nhurt easily.  They are wonderfully virtuous, I dare say - some\npeople contend for that, at least; and I am sure I don't want to\ncontradict them - but they have not very fine natures, and they may\nbe thankful that, like their coarse rough skins, they are not\neasily wounded.'\n\n'Really!' said Miss Dartle.  'Well, I don't know, now, when I have\nbeen better pleased than to hear that.  It's so consoling!  It's\nsuch a delight to know that, when they suffer, they don't feel!\nSometimes I have been quite uneasy for that sort of people; but now\nI shall just dismiss the idea of them, altogether.  Live and learn. \nI had my doubts, I confess, but now they're cleared up.  I didn't\nknow, and now I do know, and that shows the advantage of asking -\ndon't it?'\n\nI believed that Steerforth had said what he had, in jest, or to\ndraw Miss Dartle out; and I expected him to say as much when she\nwas gone, and we two were sitting before the fire.  But he merely\nasked me what I thought of her.\n\n'She is very clever, is she not?' I asked.\n\n'Clever!  She brings everything to a grindstone,' said Steerforth,\nand sharpens it, as she has sharpened her own face and figure these\nyears past.  She has worn herself away by constant sharpening.  She\nis all edge.'\n\n'What a remarkable scar that is upon her lip!' I said.\n\nSteerforth's face fell, and he paused a moment.\n\n'Why, the fact is,' he returned, 'I did that.'\n\n'By an unfortunate accident!'\n\n'No.  I was a young boy, and she exasperated me, and I threw a\nhammer at her.  A promising young angel I must have been!'\nI was deeply sorry to have touched on such a painful theme, but\nthat was useless now.\n\n'She has borne the mark ever since, as you see,' said Steerforth;\n'and she'll bear it to her grave, if she ever rests in one - though\nI can hardly believe she will ever rest anywhere.  She was the\nmotherless child of a sort of cousin of my father's.  He died one\nday.  My mother, who was then a widow, brought her here to be\ncompany to her.  She has a couple of thousand pounds of her own,\nand saves the interest of it every year, to add to the principal. \nThere's the history of Miss Rosa Dartle for you.'\n\n'And I have no doubt she loves you like a brother?' said I.\n\n'Humph!' retorted Steerforth, looking at the fire.  'Some brothers\nare not loved over much; and some love - but help yourself,\nCopperfield!  We'll drink the daisies of the field, in compliment\nto you; and the lilies of the valley that toil not, neither do they\nspin, in compliment to me - the more shame for me!' A moody smile\nthat had overspread his features cleared off as he said this\nmerrily, and he was his own frank, winning self again.\n\nI could not help glancing at the scar with a painful interest when\nwe went in to tea.  It was not long before I observed that it was\nthe most susceptible part of her face, and that, when she turned\npale, that mark altered first, and became a dull, lead-coloured\nstreak, lengthening out to its full extent, like a mark in\ninvisible ink brought to the fire.  There was a little altercation\nbetween her and Steerforth about a cast of the dice at back gammon\n- when I thought her, for one moment, in a storm of rage; and then\nI saw it start forth like the old writing on the wall.\n\nIt was no matter of wonder to me to find Mrs. Steerforth devoted to\nher son.  She seemed to be able to speak or think about nothing\nelse.  She showed me his picture as an infant, in a locket, with\nsome of his baby-hair in it; she showed me his picture as he had\nbeen when I first knew him; and she wore at her breast his picture\nas he was now.  All the letters he had ever written to her, she\nkept in a cabinet near her own chair by the fire; and she would\nhave read me some of them, and I should have been very glad to hear\nthem too, if he had not interposed, and coaxed her out of the\ndesign.\n\n'It was at Mr. Creakle's, my son tells me, that you first became\nacquainted,' said Mrs. Steerforth, as she and I were talking at one\ntable, while they played backgammon at another.  'Indeed, I\nrecollect his speaking, at that time, of a pupil younger than\nhimself who had taken his fancy there; but your name, as you may\nsuppose, has not lived in my memory.'\n\n'He was very generous and noble to me in those days, I assure you,\nma'am,' said I, 'and I stood in need of such a friend.  I should\nhave been quite crushed without him.'\n\n'He is always generous and noble,' said Mrs. Steerforth, proudly.\n\nI subscribed to this with all my heart, God knows.  She knew I did;\nfor the stateliness of her manner already abated towards me, except\nwhen she spoke in praise of him, and then her air was always lofty.\n\n'It was not a fit school generally for my son,' said she; 'far from\nit; but there were particular circumstances to be considered at the\ntime, of more importance even than that selection.  My son's high\nspirit made it desirable that he should be placed with some man who\nfelt its superiority, and would be content to bow himself before\nit; and we found such a man there.'\n\nI knew that, knowing the fellow.  And yet I did not despise him the\nmore for it, but thought it a redeeming quality in him if he could\nbe allowed any grace for not resisting one so irresistible as\nSteerforth.\n\n'My son's great capacity was tempted on, there, by a feeling of\nvoluntary emulation and conscious pride,' the fond lady went on to\nsay.  'He would have risen against all constraint; but he found\nhimself the monarch of the place, and he haughtily determined to be\nworthy of his station.  It was like himself.'\n\nI echoed, with all my heart and soul, that it was like himself.\n\n'So my son took, of his own will, and on no compulsion, to the\ncourse in which he can always, when it is his pleasure, outstrip\nevery competitor,' she pursued.  'My son informs me, Mr.\nCopperfield, that you were quite devoted to him, and that when you\nmet yesterday you made yourself known to him with tears of joy.  I\nshould be an affected woman if I made any pretence of being\nsurprised by my son's inspiring such emotions; but I cannot be\nindifferent to anyone who is so sensible of his merit, and I am\nvery glad to see you here, and can assure you that he feels an\nunusual friendship for you, and that you may rely on his\nprotection.'\n\nMiss Dartle played backgammon as eagerly as she did everything\nelse.  If I had seen her, first, at the board, I should have\nfancied that her figure had got thin, and her eyes had got large,\nover that pursuit, and no other in the world.  But I am very much\nmistaken if she missed a word of this, or lost a look of mine as I\nreceived it with the utmost pleasure, and honoured by Mrs.\nSteerforth's confidence, felt older than I had done since I left\nCanterbury.\n\nWhen the evening was pretty far spent, and a tray of glasses and\ndecanters came in, Steerforth promised, over the fire, that he\nwould seriously think of going down into the country with me. \nThere was no hurry, he said; a week hence would do; and his mother\nhospitably said the same.  While we were talking, he more than once\ncalled me Daisy; which brought Miss Dartle out again.\n\n'But really, Mr. Copperfield,' she asked, 'is it a nickname?  And\nwhy does he give it you?  Is it - eh? - because he thinks you young\nand innocent?  I am so stupid in these things.'\n\nI coloured in replying that I believed it was.\n\n'Oh!' said Miss Dartle.  'Now I am glad to know that!  I ask for\ninformation, and I am glad to know it.  He thinks you young and\ninnocent; and so you are his friend.  Well, that's quite\ndelightful!'\n\nShe went to bed soon after this, and Mrs. Steerforth retired too. \nSteerforth and I, after lingering for half-an-hour over the fire,\ntalking about Traddles and all the rest of them at old Salem House,\nwent upstairs together.  Steerforth's room was next to mine, and I\nwent in to look at it.  It was a picture of comfort, full of\neasy-chairs, cushions and footstools, worked by his mother's hand,\nand with no sort of thing omitted that could help to render it\ncomplete.  Finally, her handsome features looked down on her\ndarling from a portrait on the wall, as if it were even something\nto her that her likeness should watch him while he slept.\n\nI found the fire burning clear enough in my room by this time, and\nthe curtains drawn before the windows and round the bed, giving it\na very snug appearance.  I sat down in a great chair upon the\nhearth to meditate on my happiness; and had enjoyed the\ncontemplation of it for some time, when I found a likeness of Miss\nDartle looking eagerly at me from above the chimney-piece.\n\nIt was a startling likeness, and necessarily had a startling look. \nThe painter hadn't made the scar, but I made it; and there it was,\ncoming and going; now confined to the upper lip as I had seen it at\ndinner, and now showing the whole extent of the wound inflicted by\nthe hammer, as I had seen it when she was passionate.\n\nI wondered peevishly why they couldn't put her anywhere else\ninstead of quartering her on me.  To get rid of her, I undressed\nquickly, extinguished my light, and went to bed.  But, as I fell\nasleep, I could not forget that she was still there looking, 'Is it\nreally, though?  I want to know'; and when I awoke in the night, I\nfound that I was uneasily asking all sorts of people in my dreams\nwhether it really was or not - without knowing what I meant.\n\n\n\nCHAPTER 21\nLITTLE EM'LY\n\n\nThere was a servant in that house, a man who, I understood, was\nusually with Steerforth, and had come into his service at the\nUniversity, who was in appearance a pattern of respectability.  I\nbelieve there never existed in his station a more\nrespectable-looking man.  He was taciturn, soft-footed, very quiet\nin his manner, deferential, observant, always at hand when wanted,\nand never near when not wanted; but his great claim to\nconsideration was his respectability.  He had not a pliant face, he\nhad rather a stiff neck, rather a tight smooth head with short hair\nclinging to it at the sides, a soft way of speaking, with a\npeculiar habit of whispering the letter S so distinctly, that he\nseemed to use it oftener than any other man; but every peculiarity\nthat he had he made respectable.  If his nose had been upside-down,\nhe would have made that respectable.  He surrounded himself with an\natmosphere of respectability, and walked secure in it.  It would\nhave been next to impossible to suspect him of anything wrong, he\nwas so thoroughly respectable.  Nobody could have thought of\nputting him in a livery, he was so highly respectable.  To have\nimposed any derogatory work upon him, would have been to inflict a\nwanton insult on the feelings of a most respectable man.  And of\nthis, I noticed- the women-servants in the household were so\nintuitively conscious, that they always did such work themselves,\nand generally while he read the paper by the pantry fire.\n\nSuch a self-contained man I never saw.  But in that quality, as in\nevery other he possessed, he only seemed to be the more\nrespectable.  Even the fact that no one knew his Christian name,\nseemed to form a part of his respectability.  Nothing could be\nobjected against his surname, Littimer, by which he was known. \nPeter might have been hanged, or Tom transported; but Littimer was\nperfectly respectable.\n\nIt was occasioned, I suppose, by the reverend nature of\nrespectability in the abstract, but I felt particularly young in\nthis man's presence.  How old he was himself, I could not guess -\nand that again went to his credit on the same score; for in the\ncalmness of respectability he might have numbered fifty years as\nwell as thirty.\n\nLittimer was in my room in the morning before I was up, to bring me\nthat reproachful shaving-water, and to put out my clothes.  When I\nundrew the curtains and looked out of bed, I saw him, in an equable\ntemperature of respectability, unaffected by the east wind of\nJanuary, and not even breathing frostily, standing my boots right\nand left in the first dancing position, and blowing specks of dust\noff my coat as he laid it down like a baby.\n\nI gave him good morning, and asked him what o'clock it was.  He\ntook out of his pocket the most respectable hunting-watch I ever\nsaw, and preventing the spring with his thumb from opening far,\nlooked in at the face as if he were consulting an oracular oyster,\nshut it up again, and said, if I pleased, it was half past eight.\n\n'Mr. Steerforth will be glad to hear how you have rested, sir.'\n\n'Thank you,' said I, 'very well indeed.  Is Mr. Steerforth quite\nwell?'\n\n'Thank you, sir, Mr. Steerforth is tolerably well.'  Another of his\ncharacteristics - no use of superlatives.  A cool calm medium\nalways.\n\n'Is there anything more I can have the honour of doing for you,\nsir?  The warning-bell will ring at nine; the family take breakfast\nat half past nine.'\n\n'Nothing, I thank you.'\n\n'I thank YOU, sir, if you please'; and with that, and with a little\ninclination of his head when he passed the bed-side, as an apology\nfor correcting me, he went out, shutting the door as delicately as\nif I had just fallen into a sweet sleep on which my life depended.\n\nEvery morning we held exactly this conversation: never any more,\nand never any less: and yet, invariably, however far I might have\nbeen lifted out of myself over-night, and advanced towards maturer\nyears, by Steerforth's companionship, or Mrs. Steerforth's\nconfidence, or Miss Dartle's conversation, in the presence of this\nmost respectable man I became, as our smaller poets sing, 'a boy\nagain'.\n\nHe got horses for us; and Steerforth, who knew everything, gave me\nlessons in riding.  He provided foils for us, and Steerforth gave\nme lessons in fencing - gloves, and I began, of the same master, to\nimprove in boxing.  It gave me no manner of concern that Steerforth\nshould find me a novice in these sciences, but I never could bear\nto show my want of skill before the respectable Littimer.  I had no\nreason to believe that Littimer understood such arts himself; he\nnever led me to suppose anything of the kind, by so much as the\nvibration of one of his respectable eyelashes; yet whenever he was\nby, while we were practising, I felt myself the greenest and most\ninexperienced of mortals.\n\nI am particular about this man, because he made a particular effect\non me at that time, and because of what took place thereafter.\n\nThe week passed away in a most delightful manner.  It passed\nrapidly, as may be supposed, to one entranced as I was; and yet it\ngave me so many occasions for knowing Steerforth better, and\nadmiring him more in a thousand respects, that at its close I\nseemed to have been with him for a much longer time.  A dashing way\nhe had of treating me like a plaything, was more agreeable to me\nthan any behaviour he could have adopted.  It reminded me of our\nold acquaintance; it seemed the natural sequel of it; it showed me\nthat he was unchanged; it relieved me of any uneasiness I might\nhave felt, in comparing my merits with his, and measuring my claims\nupon his friendship by any equal standard; above all, it was a\nfamiliar, unrestrained, affectionate demeanour that he used towards\nno one else.  As he had treated me at school differently from all\nthe rest, I joyfully believed that he treated me in life unlike any\nother friend he had.  I believed that I was nearer to his heart\nthan any other friend, and my own heart warmed with attachment to\nhim.\nHe made up his mind to go with me into the country, and the day\narrived for our departure.  He had been doubtful at first whether\nto take Littimer or not, but decided to leave him at home.  The\nrespectable creature, satisfied with his lot whatever it was,\narranged our portmanteaux on the little carriage that was to take\nus into London, as if they were intended to defy the shocks of\nages, and received my modestly proffered donation with perfect\ntranquillity.\n\nWe bade adieu to Mrs. Steerforth and Miss Dartle, with many thanks\non my part, and much kindness on the devoted mother's.  The last\nthing I saw was Littimer's unruffled eye; fraught, as I fancied,\nwith the silent conviction that I was very young indeed.\n\nWhat I felt, in returning so auspiciously to the old familiar\nplaces, I shall not endeavour to describe.  We went down by the\nMail.  I was so concerned, I recollect, even for the honour of\nYarmouth, that when Steerforth said, as we drove through its dark\nstreets to the inn, that, as well as he could make out, it was a\ngood, queer, out-of-the-way kind of hole, I was highly pleased.  We\nwent to bed on our arrival (I observed a pair of dirty shoes and\ngaiters in connexion with my old friend the Dolphin as we passed\nthat door), and breakfasted late in the morning.  Steerforth, who\nwas in great spirits, had been strolling about the beach before I\nwas up, and had made acquaintance, he said, with half the boatmen\nin the place.  Moreover, he had seen, in the distance, what he was\nsure must be the identical house of Mr. Peggotty, with smoke coming\nout of the chimney; and had had a great mind, he told me, to walk\nin and swear he was myself grown out of knowledge.\n\n'When do you propose to introduce me there, Daisy?' he said.  'I am\nat your disposal.  Make your own arrangements.'\n\n'Why, I was thinking that this evening would be a good time,\nSteerforth, when they are all sitting round the fire.  I should\nlike you to see it when it's snug, it's such a curious place.'\n\n'So be it!' returned Steerforth.  'This evening.'\n\n'I shall not give them any notice that we are here, you know,' said\nI, delighted.  'We must take them by surprise.'\n\n'Oh, of course!  It's no fun,' said Steerforth, 'unless we take\nthem by surprise.  Let us see the natives in their aboriginal\ncondition.'\n\n'Though they ARE that sort of people that you mentioned,' I\nreturned.\n\n'Aha!  What! you recollect my skirmishes with Rosa, do you?' he\nexclaimed with a quick look.  'Confound the girl, I am half afraid\nof her.  She's like a goblin to me.  But never mind her.  Now what\nare you going to do?  You are going to see your nurse, I suppose?'\n\n'Why, yes,' I said, 'I must see Peggotty first of all.'\n\n'Well,' replied Steerforth, looking at his watch.  'Suppose I\ndeliver you up to be cried over for a couple of hours.  Is that\nlong enough?'\n\nI answered, laughing, that I thought we might get through it in\nthat time, but that he must come also; for he would find that his\nrenown had preceded him, and that he was almost as great a\npersonage as I was.\n\n'I'll come anywhere you like,' said Steerforth, 'or do anything you\nlike.  Tell me where to come to; and in two hours I'll produce\nmyself in any state you please, sentimental or comical.'\n\nI gave him minute directions for finding the residence of Mr.\nBarkis, carrier to Blunderstone and elsewhere; and, on this\nunderstanding, went out alone.  There was a sharp bracing air; the\nground was dry; the sea was crisp and clear; the sun was diffusing\nabundance of light, if not much warmth; and everything was fresh\nand lively.  I was so fresh and lively myself, in the pleasure of\nbeing there, that I could have stopped the people in the streets\nand shaken hands with them.\n\nThe streets looked small, of course.  The streets that we have only\nseen as children always do, I believe, when we go back to them. \nBut I had forgotten nothing in them, and found nothing changed,\nuntil I came to Mr. Omer's shop.  OMER AND Joram was now written\nup, where OMER used to be; but the inscription, DRAPER, TAILOR,\nHABERDASHER, FUNERAL FURNISHER, &c., remained as it was.\n\nMy footsteps seemed to tend so naturally to the shop door, after I\nhad read these words from over the way, that I went across the road\nand looked in.  There was a pretty woman at the back of the shop,\ndancing a little child in her arms, while another little fellow\nclung to her apron.  I had no difficulty in recognizing either\nMinnie or Minnie's children.  The glass door of the parlour was not\nopen; but in the workshop across the yard I could faintly hear the\nold tune playing, as if it had never left off.\n\n'Is Mr. Omer at home?' said I, entering.  'I should like to see\nhim, for a moment, if he is.'\n\n'Oh yes, sir, he is at home,' said Minnie; 'the weather don't suit\nhis asthma out of doors.  Joe, call your grandfather!'\n\nThe little fellow, who was holding her apron, gave such a lusty\nshout, that the sound of it made him bashful, and he buried his\nface in her skirts, to her great admiration.  I heard a heavy\npuffing and blowing coming towards us, and soon Mr. Omer,\nshorter-winded than of yore, but not much older-looking, stood\nbefore me.\n\n'Servant, sir,' said Mr. Omer.  'What can I do for you, sir?'\n'You can shake hands with me, Mr. Omer, if you please,' said I,\nputting out my own.  'You were very good-natured to me once, when\nI am afraid I didn't show that I thought so.'\n\n'Was I though?' returned the old man.  'I'm glad to hear it, but I\ndon't remember when.  Are you sure it was me?'\n\n'Quite.'\n\n'I think my memory has got as short as my breath,' said Mr. Omer,\nlooking at me and shaking his head; 'for I don't remember you.'\n\n'Don't you remember your coming to the coach to meet me, and my\nhaving breakfast here, and our riding out to Blunderstone together:\nyou, and I, and Mrs. Joram, and Mr. Joram too - who wasn't her\nhusband then?'\n\n'Why, Lord bless my soul!' exclaimed Mr. Omer, after being thrown\nby his surprise into a fit of coughing, 'you don't say so!  Minnie,\nmy dear, you recollect?  Dear me, yes; the party was a lady, I\nthink?'\n\n'My mother,' I rejoined.\n\n'To - be - sure,' said Mr. Omer, touching my waistcoat with his\nforefinger, 'and there was a little child too!  There was two\nparties.  The little party was laid along with the other party. \nOver at Blunderstone it was, of course.  Dear me!  And how have you\nbeen since?'\n\nVery well, I thanked him, as I hoped he had been too.\n\n'Oh! nothing to grumble at, you know,' said Mr. Omer.  'I find my\nbreath gets short, but it seldom gets longer as a man gets older. \nI take it as it comes, and make the most of it.  That's the best\nway, ain't it?'\n\nMr. Omer coughed again, in consequence of laughing, and was\nassisted out of his fit by his daughter, who now stood close beside\nus, dancing her smallest child on the counter.\n\n'Dear me!' said Mr. Omer.  'Yes, to be sure.  Two parties!  Why, in\nthat very ride, if you'll believe me, the day was named for my\nMinnie to marry Joram.  \"Do name it, sir,\" says Joram.  \"Yes, do,\nfather,\" says Minnie.  And now he's come into the business.  And\nlook here!  The youngest!'\n\nMinnie laughed, and stroked her banded hair upon her temples, as\nher father put one of his fat fingers into the hand of the child\nshe was dancing on the counter.\n\n'Two parties, of course!' said Mr. Omer, nodding his head\nretrospectively.  'Ex-actly so!  And Joram's at work, at this\nminute, on a grey one with silver nails, not this measurement' -\nthe measurement of the dancing child upon the counter - 'by a good\ntwo inches.  - Will you take something?'\n\nI thanked him, but declined.\n\n'Let me see,' said Mr. Omer.  'Barkis's the carrier's wife -\nPeggotty's the boatman's sister - she had something to do with your\nfamily?  She was in service there, sure?'\n\nMy answering in the affirmative gave him great satisfaction.\n\n'I believe my breath will get long next, my memory's getting so\nmuch so,' said Mr. Omer.  'Well, sir, we've got a young relation of\nhers here, under articles to us, that has as elegant a taste in the\ndress-making business - I assure you I don't believe there's a\nDuchess in England can touch her.'\n\n'Not little Em'ly?' said I, involuntarily.\n\n'Em'ly's her name,' said Mr. Omer, 'and she's little too.  But if\nyou'll believe me, she has such a face of her own that half the\nwomen in this town are mad against her.'\n\n'Nonsense, father!' cried Minnie.\n\n'My dear,' said Mr. Omer, 'I don't say it's the case with you,'\nwinking at me, 'but I say that half the women in Yarmouth - ah! and\nin five mile round - are mad against that girl.'\n\n'Then she should have kept to her own station in life, father,'\nsaid Minnie, 'and not have given them any hold to talk about her,\nand then they couldn't have done it.'\n\n'Couldn't have done it, my dear!' retorted Mr. Omer.  'Couldn't\nhave done it!  Is that YOUR knowledge of life?  What is there that\nany woman couldn't do, that she shouldn't do - especially on the\nsubject of another woman's good looks?'\n\nI really thought it was all over with Mr. Omer, after he had\nuttered this libellous pleasantry.  He coughed to that extent, and\nhis breath eluded all his attempts to recover it with that\nobstinacy, that I fully expected to see his head go down behind the\ncounter, and his little black breeches, with the rusty little\nbunches of ribbons at the knees, come quivering up in a last\nineffectual struggle.  At length, however, he got better, though he\nstill panted hard, and was so exhausted that he was obliged to sit\non the stool of the shop-desk.\n\n'You see,' he said, wiping his head, and breathing with difficulty,\n'she hasn't taken much to any companions here; she hasn't taken\nkindly to any particular acquaintances and friends, not to mention\nsweethearts.  In consequence, an ill-natured story got about, that\nEm'ly wanted to be a lady.  Now my opinion is, that it came into\ncirculation principally on account of her sometimes saying, at the\nschool, that if she was a lady she would like to do so-and-so for\nher uncle - don't you see? - and buy him such-and-such fine\nthings.'\n\n'I assure you, Mr. Omer, she has said so to me,' I returned\neagerly, 'when we were both children.'\n\nMr. Omer nodded his head and rubbed his chin.  'Just so.  Then out\nof a very little, she could dress herself, you see, better than\nmost others could out of a deal, and that made things unpleasant. \nMoreover, she was rather what might be called wayward - I'll go so\nfar as to say what I should call wayward myself,' said Mr. Omer; '-\ndidn't know her own mind quite - a little spoiled - and couldn't,\nat first, exactly bind herself down.  No more than that was ever\nsaid against her, Minnie?'\n\n'No, father,' said Mrs. Joram.  'That's the worst, I believe.'\n\n'So when she got a situation,' said Mr. Omer, 'to keep a fractious\nold lady company, they didn't very well agree, and she didn't stop.\nAt last she came here, apprenticed for three years.  Nearly two of\n'em are over, and she has been as good a girl as ever was.  Worth\nany six!  Minnie, is she worth any six, now?'\n\n'Yes, father,' replied Minnie.  'Never say I detracted from her!'\n\n'Very good,' said Mr. Omer.  'That's right.  And so, young\ngentleman,' he added, after a few moments' further rubbing of his\nchin, 'that you may not consider me long-winded as well as\nshort-breathed, I believe that's all about it.'\n\nAs they had spoken in a subdued tone, while speaking of Em'ly, I\nhad no doubt that she was near.  On my asking now, if that were not\nso, Mr. Omer nodded yes, and nodded towards the door of the\nparlour.  My hurried inquiry if I might peep in, was answered with\na free permission; and, looking through the glass, I saw her\nsitting at her work.  I saw her, a most beautiful little creature,\nwith the cloudless blue eyes, that had looked into my childish\nheart, turned laughingly upon another child of Minnie's who was\nplaying near her; with enough of wilfulness in her bright face to\njustify what I had heard; with much of the old capricious coyness\nlurking in it; but with nothing in her pretty looks, I am sure, but\nwhat was meant for goodness and for happiness, and what was on a\ngood and\n\nhappy course.\n\nThe tune across the yard that seemed as if it never had left off -\nalas! it was the tune that never DOES leave off - was beating,\nsoftly, all the while.\n\n'Wouldn't you like to step in,' said Mr. Omer, 'and speak to her? \nWalk in and speak to her, sir!  Make yourself at home!'\n\nI was too bashful to do so then - I was afraid of confusing her,\nand I was no less afraid of confusing myself.- but I informed\nmyself of the hour at which she left of an evening, in order that\nour visit might be timed accordingly; and taking leave of Mr. Omer,\nand his pretty daughter, and her little children, went away to my\ndear old Peggotty's.\n\nHere she was, in the tiled kitchen, cooking dinner!  The moment I\nknocked at the door she opened it, and asked me what I pleased to\nwant.  I looked at her with a smile, but she gave me no smile in\nreturn.  I had never ceased to write to her, but it must have been\nseven years since we had met.\n\n'Is Mr. Barkis at home, ma'am?' I said, feigning to speak roughly\nto her.\n\n'He's at home, sir,' returned Peggotty, 'but he's bad abed with the\nrheumatics.'\n\n'Don't he go over to Blunderstone now?' I asked.\n\n'When he's well he do,' she answered.\n\n'Do YOU ever go there, Mrs. Barkis?'\n\nShe looked at me more attentively, and I noticed a quick movement\nof her hands towards each other.\n\n'Because I want to ask a question about a house there, that they\ncall the - what is it? - the Rookery,' said I.\n\nShe took a step backward, and put out her hands in an undecided\nfrightened way, as if to keep me off.\n\n'Peggotty!' I cried to her.\n\nShe cried, 'My darling boy!' and we both burst into tears, and were\nlocked in one another's arms.\n\nWhat extravagances she committed; what laughing and crying over me;\nwhat pride she showed, what joy, what sorrow that she whose pride\nand joy I might have been, could never hold me in a fond embrace;\nI have not the heart to tell.  I was troubled with no misgiving\nthat it was young in me to respond to her emotions.  I had never\nlaughed and cried in all my life, I dare say - not even to her -\nmore freely than I did that morning.\n\n'Barkis will be so glad,' said Peggotty, wiping her eyes with her\napron, 'that it'll do him more good than pints of liniment.  May I\ngo and tell him you are here?  Will you come up and see him, my\ndear?'\n\nOf course I would.  But Peggotty could not get out of the room as\neasily as she meant to, for as often as she got to the door and\nlooked round at me, she came back again to have another laugh and\nanother cry upon my shoulder.  At last, to make the matter easier,\nI went upstairs with her; and having waited outside for a minute,\nwhile she said a word of preparation to Mr. Barkis, presented\nmyself before that invalid.\n\nHe received me with absolute enthusiasm.  He was too rheumatic to\nbe shaken hands with, but he begged me to shake the tassel on the\ntop of his nightcap, which I did most cordially.  When I sat down\nby the side of the bed, he said that it did him a world of good to\nfeel as if he was driving me on the Blunderstone road again.  As he\nlay in bed, face upward, and so covered, with that exception, that\nhe seemed to be nothing but a face - like a conventional cherubim\n- he looked the queerest object I ever beheld.\n\n'What name was it, as I wrote up in the cart, sir?' said Mr.\nBarkis, with a slow rheumatic smile.\n\n'Ah! Mr. Barkis, we had some grave talks about that matter, hadn't\nwe?'\n\n'I was willin' a long time, sir?' said Mr. Barkis.\n\n'A long time,' said I.\n\n'And I don't regret it,' said Mr. Barkis.  'Do you remember what\nyou told me once, about her making all the apple parsties and doing\nall the cooking?'\n\n'Yes, very well,' I returned.\n\n'It was as true,' said Mr. Barkis, 'as turnips is.  It was as\ntrue,' said Mr. Barkis, nodding his nightcap, which was his only\nmeans of emphasis, 'as taxes is.  And nothing's truer than them.'\n\nMr. Barkis turned his eyes upon me, as if for my assent to this\nresult of his reflections in bed; and I gave it.\n\n'Nothing's truer than them,' repeated Mr. Barkis; 'a man as poor as\nI am, finds that out in his mind when he's laid up.  I'm a very\npoor man, sir!'\n\n'I am sorry to hear it, Mr. Barkis.'\n\n'A very poor man, indeed I am,' said Mr. Barkis.\n\nHere his right hand came slowly and feebly from under the\nbedclothes, and with a purposeless uncertain grasp took hold of a\nstick which was loosely tied to the side of the bed.  After some\npoking about with this instrument, in the course of which his face\nassumed a variety of distracted expressions, Mr. Barkis poked it\nagainst a box, an end of which had been visible to me all the time. \nThen his face became composed.\n\n'Old clothes,' said Mr. Barkis.\n\n'Oh!' said I.\n\n'I wish it was Money, sir,' said Mr. Barkis.\n\n'I wish it was, indeed,' said I.\n\n'But it AIN'T,' said Mr. Barkis, opening both his eyes as wide as\nhe possibly could.\n\nI expressed myself quite sure of that, and Mr. Barkis, turning his\neyes more gently to his wife, said:\n\n'She's the usefullest and best of women, C. P.  Barkis.  All the\npraise that anyone can give to C. P.  Barkis, she deserves, and\nmore! My dear, you'll get a dinner today, for company; something\ngood to eat and drink, will you?'\n\nI should have protested against this unnecessary demonstration in\nmy honour, but that I saw Peggotty, on the opposite side of the\nbed, extremely anxious I should not.  So I held my peace.\n\n'I have got a trifle of money somewhere about me, my dear,' said\nMr. Barkis, 'but I'm a little tired.  If you and Mr. David will\nleave me for a short nap, I'll try and find it when I wake.'\n\nWe left the room, in compliance with this request.  When we got\noutside the door, Peggotty informed me that Mr. Barkis, being now\n'a little nearer' than he used to be, always resorted to this same\ndevice before producing a single coin from his store; and that he\nendured unheard-of agonies in crawling out of bed alone, and taking\nit from that unlucky box.  In effect, we presently heard him\nuttering suppressed groans of the most dismal nature, as this\nmagpie proceeding racked him in every joint; but while Peggotty's\neyes were full of compassion for him, she said his generous impulse\nwould do him good, and it was better not to check it.  So he\ngroaned on, until he had got into bed again, suffering, I have no\ndoubt, a martyrdom; and then called us in, pretending to have just\nwoke up from a refreshing sleep, and to produce a guinea from under\nhis pillow.  His satisfaction in which happy imposition on us, and\nin having preserved the impenetrable secret of the box, appeared to\nbe a sufficient compensation to him for all his tortures.\n\nI prepared Peggotty for Steerforth's arrival and it was not long\nbefore he came.  I am persuaded she knew no difference between his\nhaving been a personal benefactor of hers, and a kind friend to me,\nand that she would have received him with the utmost gratitude and\ndevotion in any case.  But his easy, spirited good humour; his\ngenial manner, his handsome looks, his natural gift of adapting\nhimself to whomsoever he pleased, and making direct, when he cared\nto do it, to the main point of interest in anybody's heart; bound\nher to him wholly in five minutes.  His manner to me, alone, would\nhave won her.  But, through all these causes combined, I sincerely\nbelieve she had a kind of adoration for him before he left the\nhouse that night.\n\nHe stayed there with me to dinner - if I were to say willingly, I\nshould not half express how readily and gaily.  He went into Mr.\nBarkis's room like light and air, brightening and refreshing it as\nif he were healthy weather.  There was no noise, no effort, no\nconsciousness, in anything he did; but in everything an\nindescribable lightness, a seeming impossibility of doing anything\nelse, or doing anything better, which was so graceful, so natural,\nand agreeable, that it overcomes me, even now, in the remembrance.\n\nWe made merry in the little parlour, where the Book of Martyrs,\nunthumbed since my time, was laid out upon the desk as of old, and\nwhere I now turned over its terrific pictures, remembering the old\nsensations they had awakened, but not feeling them.  When Peggotty\nspoke of what she called my room, and of its being ready for me at\nnight, and of her hoping I would occupy it, before I could so much\nas look at Steerforth, hesitating, he was possessed of the whole\ncase.\n\n'Of course,' he said.  'You'll sleep here, while we stay, and I\nshall sleep at the hotel.'\n\n'But to bring you so far,' I returned, 'and to separate, seems bad\ncompanionship, Steerforth.'\n\n'Why, in the name of Heaven, where do you naturally belong?' he\nsaid.  'What is \"seems\", compared to that?'  It was settled at\nonce.\n\nHe maintained all his delightful qualities to the last, until we\nstarted forth, at eight o'clock, for Mr. Peggotty's boat.  Indeed,\nthey were more and more brightly exhibited as the hours went on;\nfor I thought even then, and I have no doubt now, that the\nconsciousness of success in his determination to please, inspired\nhim with a new delicacy of perception, and made it, subtle as it\nwas, more easy to him.  If anyone had told me, then, that all this\nwas a brilliant game, played for the excitement of the moment, for\nthe employment of high spirits, in the thoughtless love of\nsuperiority, in a mere wasteful careless course of winning what was\nworthless to him, and next minute thrown away - I say, if anyone\nhad told me such a lie that night, I wonder in what manner of\nreceiving it my indignation would have found a vent!  Probably only\nin an increase, had that been possible, of the romantic feelings of\nfidelity and friendship with which I walked beside him, over the\ndark wintry sands towards the old boat; the wind sighing around us\neven more mournfully, than it had sighed and moaned upon the night\nwhen I first darkened Mr. Peggotty's door.\n\n'This is a wild kind of place, Steerforth, is it not?'\n\n'Dismal enough in the dark,' he said: 'and the sea roars as if it\nwere hungry for us.  Is that the boat, where I see a light yonder?'\n'That's the boat,' said I.\n\n'And it's the same I saw this morning,' he returned.  'I came\nstraight to it, by instinct, I suppose.'\n\nWe said no more as we approached the light, but made softly for the\ndoor.  I laid my hand upon the latch; and whispering Steerforth to\nkeep close to me, went in.\n\nA murmur of voices had been audible on the outside, and, at the\nmoment of our entrance, a clapping of hands: which latter noise, I\nwas surprised to see, proceeded from the generally disconsolate\nMrs. Gummidge.  But Mrs. Gummidge was not the only person there who\nwas unusually excited.  Mr. Peggotty, his face lighted up with\nuncommon satisfaction, and laughing with all his might, held his\nrough arms wide open, as if for little Em'ly to run into them; Ham,\nwith a mixed expression in his face of admiration, exultation, and\na lumbering sort of bashfulness that sat upon him very well, held\nlittle Em'ly by the hand, as if he were presenting her to Mr.\nPeggotty; little Em'ly herself, blushing and shy, but delighted\nwith Mr. Peggotty's delight, as her joyous eyes expressed, was\nstopped by our entrance (for she saw us first) in the very act of\nspringing from Ham to nestle in Mr. Peggotty's embrace.  In the\nfirst glimpse we had of them all, and at the moment of our passing\nfrom the dark cold night into the warm light room, this was the way\nin which they were all employed: Mrs. Gummidge in the background,\nclapping her hands like a madwoman.\n\nThe little picture was so instantaneously dissolved by our going\nin, that one might have doubted whether it had ever been.  I was in\nthe midst of the astonished family, face to face with Mr. Peggotty,\nand holding out my hand to him, when Ham shouted:\n\n'Mas'r Davy!  It's Mas'r Davy!'\n\nIn a moment we were all shaking hands with one another, and asking\none another how we did, and telling one another how glad we were to\nmeet, and all talking at once.  Mr. Peggotty was so proud and\noverjoyed to see us, that he did not know what to say or do, but\nkept over and over again shaking hands with me, and then with\nSteerforth, and then with me, and then ruffling his shaggy hair all\nover his head, and laughing with such glee and triumph, that it was\na treat to see him.\n\n'Why, that you two gent'lmen - gent'lmen growed - should come to\nthis here roof tonight, of all nights in my life,' said Mr.\nPeggotty, 'is such a thing as never happened afore, I do rightly\nbelieve!  Em'ly, my darling, come here!  Come here, my little\nwitch!  There's Mas'r Davy's friend, my dear!  There's the\ngent'lman as you've heerd on, Em'ly.  He comes to see you, along\nwith Mas'r Davy, on the brightest night of your uncle's life as\never was or will be, Gorm the t'other one, and horroar for it!'\n\nAfter delivering this speech all in a breath, and with\nextraordinary animation and pleasure, Mr. Peggotty put one of his\nlarge hands rapturously on each side of his niece's face, and\nkissing it a dozen times, laid it with a gentle pride and love upon\nhis broad chest, and patted it as if his hand had been a lady's. \nThen he let her go; and as she ran into the little chamber where I\nused to sleep, looked round upon us, quite hot and out of breath\nwith his uncommon satisfaction.\n\n'If you two gent'lmen - gent'lmen growed now, and such gent'lmen -'\nsaid Mr. Peggotty.\n\n'So th' are, so th' are!' cried Ham.  'Well said!  So th' are. \nMas'r Davy bor' - gent'lmen growed - so th' are!'\n\n'If you two gent'lmen, gent'lmen growed,' said Mr. Peggotty, 'don't\nex-cuse me for being in a state of mind, when you understand\nmatters, I'll arks your pardon.  Em'ly, my dear! - She knows I'm a\ngoing to tell,' here his delight broke out again, 'and has made\noff.  Would you be so good as look arter her, Mawther, for a\nminute?'\n\nMrs. Gummidge nodded and disappeared.\n\n'If this ain't,' said Mr. Peggotty, sitting down among us by the\nfire, 'the brightest night o' my life, I'm a shellfish - biled too\n- and more I can't say.  This here little Em'ly, sir,' in a low\nvoice to Steerforth, '- her as you see a blushing here just now -'\n\nSteerforth only nodded; but with such a pleased expression of\ninterest, and of participation in Mr. Peggotty's feelings, that the\nlatter answered him as if he had spoken.\n\n'To be sure,' said Mr. Peggotty.  'That's her, and so she is. \nThankee, sir.'\n\nHam nodded to me several times, as if he would have said so too.\n\n'This here little Em'ly of ours,' said Mr. Peggotty, 'has been, in\nour house, what I suppose (I'm a ignorant man, but that's my\nbelief) no one but a little bright-eyed creetur can be in a house. \nShe ain't my child; I never had one; but I couldn't love her more. \nYou understand!  I couldn't do it!'\n\n'I quite understand,' said Steerforth.\n\n'I know you do, sir,' returned Mr. Peggotty, 'and thankee again. \nMas'r Davy, he can remember what she was; you may judge for your\nown self what she is; but neither of you can't fully know what she\nhas been, is, and will be, to my loving art.  I am rough, sir,'\nsaid Mr. Peggotty, 'I am as rough as a Sea Porkypine; but no one,\nunless, mayhap, it is a woman, can know, I think, what our little\nEm'ly is to me.  And betwixt ourselves,' sinking his voice lower\nyet, 'that woman's name ain't Missis Gummidge neither, though she\nhas a world of merits.'\nMr. Peggotty ruffled his hair again, with both hands, as a further\npreparation for what he was going to say, and went on, with a hand\nupon each of his knees:\n\n'There was a certain person as had know'd our Em'ly, from the time\nwhen her father was drownded; as had seen her constant; when a\nbabby, when a young gal, when a woman.  Not much of a person to\nlook at, he warn't,' said Mr. Peggotty, 'something o' my own build\n- rough - a good deal o' the sou'-wester in him - wery salt - but,\non the whole, a honest sort of a chap, with his art in the right\nplace.'\n\nI thought I had never seen Ham grin to anything like the extent to\nwhich he sat grinning at us now.\n\n'What does this here blessed tarpaulin go and do,' said Mr.\nPeggotty, with his face one high noon of enjoyment, 'but he loses\nthat there art of his to our little Em'ly.  He follers her about,\nhe makes hisself a sort o' servant to her, he loses in a great\nmeasure his relish for his wittles, and in the long-run he makes it\nclear to me wot's amiss.  Now I could wish myself, you see, that\nour little Em'ly was in a fair way of being married.  I could wish\nto see her, at all ewents, under articles to a honest man as had a\nright to defend her.  I don't know how long I may live, or how soon\nI may die; but I know that if I was capsized, any night, in a gale\nof wind in Yarmouth Roads here, and was to see the town-lights\nshining for the last time over the rollers as I couldn't make no\nhead against, I could go down quieter for thinking \"There's a man\nashore there, iron-true to my little Em'ly, God bless her, and no\nwrong can touch my Em'ly while so be as that man lives.\"'\n\nMr. Peggotty, in simple earnestness, waved his right arm, as if he\nwere waving it at the town-lights for the last time, and then,\nexchanging a nod with Ham, whose eye he caught, proceeded as\nbefore.\n\n'Well! I counsels him to speak to Em'ly.  He's big enough, but he's\nbashfuller than a little un, and he don't like.  So I speak. \n\"What!  Him!\" says Em'ly.  \"Him that I've know'd so intimate so\nmany years, and like so much.  Oh, Uncle!  I never can have him. \nHe's such a good fellow!\" I gives her a kiss, and I says no more to\nher than, \"My dear, you're right to speak out, you're to choose for\nyourself, you're as free as a little bird.\" Then I aways to him,\nand I says, \"I wish it could have been so, but it can't.  But you\ncan both be as you was, and wot I say to you is, Be as you was with\nher, like a man.\" He says to me, a-shaking of my hand, \"I will!\" he\nsays.  And he was - honourable and manful - for two year going on,\nand we was just the same at home here as afore.'\n\nMr. Peggotty's face, which had varied in its expression with the\nvarious stages of his narrative, now resumed all its former\ntriumphant delight, as he laid a hand upon my knee and a hand upon\nSteerforth's (previously wetting them both, for the greater\nemphasis of the action), and divided the following speech between\nus:\n\n'All of a sudden, one evening - as it might be tonight - comes\nlittle Em'ly from her work, and him with her!  There ain't so much\nin that, you'll say.  No, because he takes care on her, like a\nbrother, arter dark, and indeed afore dark, and at all times.  But\nthis tarpaulin chap, he takes hold of her hand, and he cries out to\nme, joyful, \"Look here!  This is to be my little wife!\" And she\nsays, half bold and half shy, and half a laughing and half a\ncrying, \"Yes, Uncle!  If you please.\" - If I please!' cried Mr.\nPeggotty, rolling his head in an ecstasy at the idea; 'Lord, as if\nI should do anythink else! - \"If you please, I am steadier now, and\nI have thought better of it, and I'll be as good a little wife as\nI can to him, for he's a dear, good fellow!\" Then Missis Gummidge,\nshe claps her hands like a play, and you come in.  Theer! the\nmurder's out!' said Mr. Peggotty - 'You come in!  It took place\nthis here present hour; and here's the man that'll marry her, the\nminute she's out of her time.'\n\nHam staggered, as well he might, under the blow Mr. Peggotty dealt\nhim in his unbounded joy, as a mark of confidence and friendship;\nbut feeling called upon to say something to us, he said, with much\nfaltering and great difficulty:\n\n'She warn't no higher than you was, Mas'r Davy - when you first\ncome - when I thought what she'd grow up to be.  I see her grown up\n- gent'lmen - like a flower.  I'd lay down my life for her - Mas'r\nDavy - Oh! most content and cheerful!  She's more to me - gent'lmen\n- than - she's all to me that ever I can want, and more than ever\nI - than ever I could say.  I - I love her true.  There ain't a\ngent'lman in all the land - nor yet sailing upon all the sea - that\ncan love his lady more than I love her, though there's many a\ncommon man - would say better - what he meant.'\n\nI thought it affecting to see such a sturdy fellow as Ham was now,\ntrembling in the strength of what he felt for the pretty little\ncreature who had won his heart.  I thought the simple confidence\nreposed in us by Mr. Peggotty and by himself, was, in itself,\naffecting.  I was affected by the story altogether.  How far my\nemotions were influenced by the recollections of my childhood, I\ndon't know.  Whether I had come there with any lingering fancy that\nI was still to love little Em'ly, I don't know.  I know that I was\nfilled with pleasure by all this; but, at first, with an\nindescribably sensitive pleasure, that a very little would have\nchanged to pain.\n\nTherefore, if it had depended upon me to touch the prevailing chord\namong them with any skill, I should have made a poor hand of it. \nBut it depended upon Steerforth; and he did it with such address,\nthat in a few minutes we were all as easy and as happy as it was\npossible to be.\n\n'Mr. Peggotty,' he said, 'you are a thoroughly good fellow, and\ndeserve to be as happy as you are tonight.  My hand upon it!  Ham,\nI give you joy, my boy.  My hand upon that, too!  Daisy, stir the\nfire, and make it a brisk one! and Mr. Peggotty, unless you can\ninduce your gentle niece to come back (for whom I vacate this seat\nin the corner), I shall go.  Any gap at your fireside on such a\nnight - such a gap least of all - I wouldn't make, for the wealth\nof the Indies!'\n\nSo Mr. Peggotty went into my old room to fetch little Em'ly.  At\nfirst little Em'ly didn't like to come, and then Ham went. \nPresently they brought her to the fireside, very much confused, and\nvery shy, - but she soon became more assured when she found how\ngently and respectfully Steerforth spoke to her; how skilfully he\navoided anything that would embarrass her; how he talked to Mr.\nPeggotty of boats, and ships, and tides, and fish; how he referred\nto me about the time when he had seen Mr. Peggotty at Salem House;\nhow delighted he was with the boat and all belonging to it; how\nlightly and easily he carried on, until he brought us, by degrees,\ninto a charmed circle, and we were all talking away without any\nreserve.\n\nEm'ly, indeed, said little all the evening; but she looked, and\nlistened, and her face got animated, and she was charming. \nSteerforth told a story of a dismal shipwreck (which arose out of\nhis talk with Mr. Peggotty), as if he saw it all before him - and\nlittle Em'ly's eyes were fastened on him all the time, as if she\nsaw it too.  He told us a merry adventure of his own, as a relief\nto that, with as much gaiety as if the narrative were as fresh to\nhim as it was to us - and little Em'ly laughed until the boat rang\nwith the musical sounds, and we all laughed (Steerforth too), in\nirresistible sympathy with what was so pleasant and light-hearted. \nHe got Mr. Peggotty to sing, or rather to roar, 'When the stormy\nwinds do blow, do blow, do blow'; and he sang a sailor's song\nhimself, so pathetically and beautifully, that I could have almost\nfancied that the real wind creeping sorrowfully round the house,\nand murmuring low through our unbroken silence, was there to\nlisten.\n\nAs to Mrs. Gummidge, he roused that victim of despondency with a\nsuccess never attained by anyone else (so Mr. Peggotty informed\nme), since the decease of the old one.  He left her so little\nleisure for being miserable, that she said next day she thought she\nmust have been bewitched.\n\nBut he set up no monopoly of the general attention, or the\nconversation.  When little Em'ly grew more courageous, and talked\n(but still bashfully) across the fire to me, of our old wanderings\nupon the beach, to pick up shells and pebbles; and when I asked her\nif she recollected how I used to be devoted to her; and when we\nboth laughed and reddened, casting these looks back on the pleasant\nold times, so unreal to look at now; he was silent and attentive,\nand observed us thoughtfully.  She sat, at this time, and all the\nevening, on the old locker in her old little corner by the fire -\nHam beside her, where I used to sit.  I could not satisfy myself\nwhether it was in her own little tormenting way, or in a maidenly\nreserve before us, that she kept quite close to the wall, and away\nfrom him; but I observed that she did so, all the evening.\n\nAs I remember, it was almost midnight when we took our leave.  We\nhad had some biscuit and dried fish for supper, and Steerforth had\nproduced from his pocket a full flask of Hollands, which we men (I\nmay say we men, now, without a blush) had emptied.  We parted\nmerrily; and as they all stood crowded round the door to light us\nas far as they could upon our road, I saw the sweet blue eyes of\nlittle Em'ly peeping after us, from behind Ham, and heard her soft\nvoice calling to us to be careful how we went.\n\n'A most engaging little Beauty!' said Steerforth, taking my arm. \n'Well!  It's a quaint place, and they are quaint company, and it's\nquite a new sensation to mix with them.'\n\n'How fortunate we are, too,' I returned, 'to have arrived to\nwitness their happiness in that intended marriage!  I never saw\npeople so happy.  How delightful to see it, and to be made the\nsharers in their honest joy, as we have been!'\n\n'That's rather a chuckle-headed fellow for the girl; isn't he?'\nsaid Steerforth.\n\nHe had been so hearty with him, and with them all, that I felt a\nshock in this unexpected and cold reply.  But turning quickly upon\nhim, and seeing a laugh in his eyes, I answered, much relieved:\n\n'Ah, Steerforth!  It's well for you to joke about the poor!  You\nmay skirmish with Miss Dartle, or try to hide your sympathies in\njest from me, but I know better.  When I see how perfectly you\nunderstand them, how exquisitely you can enter into happiness like\nthis plain fisherman's, or humour a love like my old nurse's, I\nknow that there is not a joy or sorrow, not an emotion, of such\npeople, that can be indifferent to you.  And I admire and love you\nfor it, Steerforth, twenty times the more!'\n\nHe stopped, and, looking in my face, said, 'Daisy, I believe you\nare in earnest, and are good.  I wish we all were!' Next moment he\nwas gaily singing Mr. Peggotty's song, as we walked at a round pace\nback to Yarmouth.\n\n\n\nCHAPTER 22\nSOME OLD SCENES, AND SOME NEW PEOPLE\n\n\nSteerforth and I stayed for more than a fortnight in that part of\nthe country.  We were very much together, I need not say; but\noccasionally we were asunder for some hours at a time.  He was a\ngood sailor, and I was but an indifferent one; and when he went out\nboating with Mr. Peggotty, which was a favourite amusement of his,\nI generally remained ashore.  My occupation of Peggotty's\nspare-room put a constraint upon me, from which he was free: for,\nknowing how assiduously she attended on Mr. Barkis all day, I did\nnot like to remain out late at night; whereas Steerforth, lying at\nthe Inn, had nothing to consult but his own humour.  Thus it came\nabout, that I heard of his making little treats for the fishermen\nat Mr. Peggotty's house of call, 'The Willing Mind', after I was in\nbed, and of his being afloat, wrapped in fishermen's clothes, whole\nmoonlight nights, and coming back when the morning tide was at\nflood.  By this time, however, I knew that his restless nature and\nbold spirits delighted to find a vent in rough toil and hard\nweather, as in any other means of excitement that presented itself\nfreshly to him; so none of his proceedings surprised me.\n\nAnother cause of our being sometimes apart, was, that I had\nnaturally an interest in going over to Blunderstone, and revisiting\nthe old familiar scenes of my childhood; while Steerforth, after\nbeing there once, had naturally no great interest in going there\nagain.  Hence, on three or four days that I can at once recall, we\nwent our several ways after an early breakfast, and met again at a\nlate dinner.  I had no idea how he employed his time in the\ninterval, beyond a general knowledge that he was very popular in\nthe place, and had twenty means of actively diverting himself where\nanother man might not have found one.\n\nFor my own part, my occupation in my solitary pilgrimages was to\nrecall every yard of the old road as I went along it, and to haunt\nthe old spots, of which I never tired.  I haunted them, as my\nmemory had often done, and lingered among them as my younger\nthoughts had lingered when I was far away.  The grave beneath the\ntree, where both my parents lay - on which I had looked out, when\nit was my father's only, with such curious feelings of compassion,\nand by which I had stood, so desolate, when it was opened to\nreceive my pretty mother and her baby - the grave which Peggotty's\nown faithful care had ever since kept neat, and made a garden of,\nI walked near, by the hour.  It lay a little off the churchyard\npath, in a quiet corner, not so far removed but I could read the\nnames upon the stone as I walked to and fro, startled by the sound\nof the church-bell when it struck the hour, for it was like a\ndeparted voice to me.  My reflections at these times were always\nassociated with the figure I was to make in life, and the\ndistinguished things I was to do.  My echoing footsteps went to no\nother tune, but were as constant to that as if I had come home to\nbuild my castles in the air at a living mother's side.\n\nThere were great changes in my old home.  The ragged nests, so long\ndeserted by the rooks, were gone; and the trees were lopped and\ntopped out of their remembered shapes.  The garden had run wild,\nand half the windows of the house were shut up.  It was occupied,\nbut only by a poor lunatic gentleman, and the people who took care\nof him.  He was always sitting at my little window, looking out\ninto the churchyard; and I wondered whether his rambling thoughts\never went upon any of the fancies that used to occupy mine, on the\nrosy mornings when I peeped out of that same little window in my\nnight-clothes, and saw the sheep quietly feeding in the light of\nthe rising sun.\n\nOur old neighbours, Mr. and Mrs. Grayper, were gone to South\nAmerica, and the rain had made its way through the roof of their\nempty house, and stained the outer walls.  Mr. Chillip was married\nagain to a tall, raw-boned, high-nosed wife; and they had a weazen\nlittle baby, with a heavy head that it couldn't hold up, and two\nweak staring eyes, with which it seemed to be always wondering why\nit had ever been born.\n\nIt was with a singular jumble of sadness and pleasure that I used\nto linger about my native place, until the reddening winter sun\nadmonished me that it was time to start on my returning walk.  But,\nwhen the place was left behind, and especially when Steerforth and\nI were happily seated over our dinner by a blazing fire, it was\ndelicious to think of having been there.  So it was, though in a\nsoftened degree, when I went to my neat room at night; and, turning\nover the leaves of the crocodile-book (which was always there, upon\na little table), remembered with a grateful heart how blest I was\nin having such a friend as Steerforth, such a friend as Peggotty,\nand such a substitute for what I had lost as my excellent and\ngenerous aunt.\n\nMY nearest way to Yarmouth, in coming back from these long walks,\nwas by a ferry.  It landed me on the flat between the town and the\nsea, which I could make straight across, and so save myself a\nconsiderable circuit by the high road.  Mr. Peggotty's house being\non that waste-place, and not a hundred yards out of my track, I\nalways looked in as I went by.  Steerforth was pretty sure to be\nthere expecting me, and we went on together through the frosty air\nand gathering fog towards the twinkling lights of the town.\n\nOne dark evening, when I was later than usual - for I had, that\nday, been making my parting visit to Blunderstone, as we were now\nabout to return home - I found him alone in Mr. Peggotty's house,\nsitting thoughtfully before the fire.  He was so intent upon his\nown reflections that he was quite unconscious of my approach. \nThis, indeed, he might easily have been if he had been less\nabsorbed, for footsteps fell noiselessly on the sandy ground\noutside; but even my entrance failed to rouse him.  I was standing\nclose to him, looking at him; and still, with a heavy brow, he was\nlost in his meditations.\n\nHe gave such a start when I put my hand upon his shoulder, that he\nmade me start too.\n\n'You come upon me,' he said, almost angrily, 'like a reproachful\nghost!'\n\n'I was obliged to announce myself, somehow,' I replied.  'Have I\ncalled you down from the stars?'\n\n'No,' he answered.  'No.'\n\n'Up from anywhere, then?' said I, taking my seat near him.\n\n'I was looking at the pictures in the fire,' he returned.\n\n'But you are spoiling them for me,' said I, as he stirred it\nquickly with a piece of burning wood, striking out of it a train of\nred-hot sparks that went careering up the little chimney, and\nroaring out into the air.\n\n'You would not have seen them,' he returned.  'I detest this\nmongrel time, neither day nor night.  How late you are!  Where have\nyou been?'\n\n'I have been taking leave of my usual walk,' said I.\n\n'And I have been sitting here,' said Steerforth, glancing round the\nroom, 'thinking that all the people we found so glad on the night\nof our coming down, might - to judge from the present wasted air of\nthe place - be dispersed, or dead, or come to I don't know what\nharm.  David, I wish to God I had had a judicious father these last\ntwenty years!'\n\n'My dear Steerforth, what is the matter?'\n\n'I wish with all my soul I had been better guided!' he exclaimed. \n'I wish with all my soul I could guide myself better!'\n\nThere was a passionate dejection in his manner that quite amazed\nme.  He was more unlike himself than I could have supposed\npossible.\n\n'It would be better to be this poor Peggotty, or his lout of a\nnephew,' he said, getting up and leaning moodily against the\nchimney-piece, with his face towards the fire, 'than to be myself,\ntwenty times richer and twenty times wiser, and be the torment to\nmyself that I have been, in this Devil's bark of a boat, within the\nlast half-hour!'\n\nI was so confounded by the alteration in him, that at first I could\nonly observe him in silence, as he stood leaning his head upon his\nhand, and looking gloomily down at the fire.  At length I begged\nhim, with all the earnestness I felt, to tell me what had occurred\nto cross him so unusually, and to let me sympathize with him, if I\ncould not hope to advise him.  Before I had well concluded, he\nbegan to laugh - fretfully at first, but soon with returning\ngaiety.\n\n'Tut, it's nothing, Daisy! nothing!' he replied.  'I told you at\nthe inn in London, I am heavy company for myself, sometimes.  I\nhave been a nightmare to myself, just now - must have had one, I\nthink.  At odd dull times, nursery tales come up into the memory,\nunrecognized for what they are.  I believe I have been confounding\nmyself with the bad boy who \"didn't care\", and became food for\nlions - a grander kind of going to the dogs, I suppose.  What old\nwomen call the horrors, have been creeping over me from head to\nfoot.  I have been afraid of myself.'\n\n'You are afraid of nothing else, I think,' said I.\n\n'Perhaps not, and yet may have enough to be afraid of too,' he\nanswered.  'Well!  So it goes by!  I am not about to be hipped\nagain, David; but I tell you, my good fellow, once more, that it\nwould have been well for me (and for more than me) if I had had a\nsteadfast and judicious father!'\n\nHis face was always full of expression, but I never saw it express\nsuch a dark kind of earnestness as when he said these words, with\nhis glance bent on the fire.\n\n'So much for that!' he said, making as if he tossed something light\ninto the air, with his hand.  \"'Why, being gone, I am a man again,\"\nlike Macbeth.  And now for dinner!  If I have not (Macbeth-like)\nbroken up the feast with most admired disorder, Daisy.'\n\n'But where are they all, I wonder!' said I.\n\n'God knows,' said Steerforth.  'After strolling to the ferry\nlooking for you, I strolled in here and found the place deserted. \nThat set me thinking, and you found me thinking.'\n\nThe advent of Mrs. Gummidge with a basket, explained how the house\nhad happened to be empty.  She had hurried out to buy something\nthat was needed, against Mr. Peggotty's return with the tide; and\nhad left the door open in the meanwhile, lest Ham and little Em'ly,\nwith whom it was an early night, should come home while she was\ngone.  Steerforth, after very much improving Mrs. Gummidge's\nspirits by a cheerful salutation and a jocose embrace, took my arm,\nand hurried me away.\n\nHe had improved his own spirits, no less than Mrs. Gummidge's, for\nthey were again at their usual flow, and he was full of vivacious\nconversation as we went along.\n\n'And so,' he said, gaily, 'we abandon this buccaneer life tomorrow,\ndo we?'\n\n'So we agreed,' I returned.  'And our places by the coach are\ntaken, you know.'\n\n'Ay! there's no help for it, I suppose,' said Steerforth.  'I have\nalmost forgotten that there is anything to do in the world but to\ngo out tossing on the sea here.  I wish there was not.'\n\n'As long as the novelty should last,' said I, laughing.\n\n'Like enough,' he returned; 'though there's a sarcastic meaning in\nthat observation for an amiable piece of innocence like my young\nfriend.  Well! I dare say I am a capricious fellow, David.  I know\nI am; but while the iron is hot, I can strike it vigorously too. \nI could pass a reasonably good examination already, as a pilot in\nthese waters, I think.'\n\n'Mr. Peggotty says you are a wonder,' I returned.\n\n'A nautical phenomenon, eh?' laughed Steerforth.\n\n'Indeed he does, and you know how truly; I know how ardent you are\nin any pursuit you follow, and how easily you can master it.  And\nthat amazes me most in you, Steerforth- that you should be\ncontented with such fitful uses of your powers.'\n\n'Contented?' he answered, merrily.  'I am never contented, except\nwith your freshness, my gentle Daisy.  As to fitfulness, I have\nnever learnt the art of binding myself to any of the wheels on\nwhich the Ixions of these days are turning round and round.  I\nmissed it somehow in a bad apprenticeship, and now don't care about\nit.  - You know I have bought a boat down here?'\n\n'What an extraordinary fellow you are, Steerforth!' I exclaimed,\nstopping - for this was the first I had heard of it.  'When you may\nnever care to come near the place again!'\n\n'I don't know that,' he returned.  'I have taken a fancy to the\nplace.  At all events,' walking me briskly on, 'I have bought a\nboat that was for sale - a clipper, Mr. Peggotty says; and so she\nis - and Mr. Peggotty will be master of her in my absence.'\n\n'Now I understand you, Steerforth!' said I, exultingly.  'You\npretend to have bought it for yourself, but you have really done so\nto confer a benefit on him.  I might have known as much at first,\nknowing you.  My dear kind Steerforth, how can I tell you what I\nthink of your generosity?'\n\n'Tush!' he answered, turning red.  'The less said, the better.'\n\n'Didn't I know?' cried I, 'didn't I say that there was not a joy,\nor sorrow, or any emotion of such honest hearts that was\nindifferent to you?'\n\n'Aye, aye,' he answered, 'you told me all that.  There let it rest. \nWe have said enough!'\n\nAfraid of offending him by pursuing the subject when he made so\nlight of it, I only pursued it in my thoughts as we went on at even\na quicker pace than before.\n\n'She must be newly rigged,' said Steerforth, 'and I shall leave\nLittimer behind to see it done, that I may know she is quite\ncomplete.  Did I tell you Littimer had come down?'\n\n' No.'\n\n'Oh yes! came down this morning, with a letter from my mother.'\n\nAs our looks met, I observed that he was pale even to his lips,\nthough he looked very steadily at me.  I feared that some\ndifference between him and his mother might have led to his being\nin the frame of mind in which I had found him at the solitary\nfireside.  I hinted so.\n\n'Oh no!' he said, shaking his head, and giving a slight laugh. \n'Nothing of the sort!  Yes.  He is come down, that man of mine.'\n\n'The same as ever?' said I.\n\n'The same as ever,' said Steerforth.  'Distant and quiet as the\nNorth Pole.  He shall see to the boat being fresh named.  She's the\n\"Stormy Petrel\" now.  What does Mr. Peggotty care for Stormy\nPetrels!  I'll have her christened again.'\n\n'By what name?' I asked.\n\n'The \"Little Em'ly\".'\n\nAs he had continued to look steadily at me, I took it as a reminder\nthat he objected to being extolled for his consideration.  I could\nnot help showing in my face how much it pleased me, but I said\nlittle, and he resumed his usual smile, and seemed relieved.\n\n'But see here,' he said, looking before us, 'where the original\nlittle Em'ly comes!  And that fellow with her, eh?  Upon my soul,\nhe's a true knight.  He never leaves her!'\n\nHam was a boat-builder in these days, having improved a natural\ningenuity in that handicraft, until he had become a skilled\nworkman.  He was in his working-dress, and looked rugged enough,\nbut manly withal, and a very fit protector for the blooming little\ncreature at his side.  Indeed, there was a frankness in his face,\nan honesty, and an undisguised show of his pride in her, and his\nlove for her, which were, to me, the best of good looks.  I\nthought, as they came towards us, that they were well matched even\nin that particular.\n\nShe withdrew her hand timidly from his arm as we stopped to speak\nto them, and blushed as she gave it to Steerforth and to me.  When\nthey passed on, after we had exchanged a few words, she did not\nlike to replace that hand, but, still appearing timid and\nconstrained, walked by herself.  I thought all this very pretty and\nengaging, and Steerforth seemed to think so too, as we looked after\nthem fading away in the light of a young moon.\n\nSuddenly there passed us - evidently following them - a young woman\nwhose approach we had not observed, but whose face I saw as she\nwent by, and thought I had a faint remembrance of.  She was lightly\ndressed; looked bold, and haggard, and flaunting, and poor; but\nseemed, for the time, to have given all that to the wind which was\nblowing, and to have nothing in her mind but going after them.  As\nthe dark distant level, absorbing their figures into itself, left\nbut itself visible between us and the sea and clouds, her figure\ndisappeared in like manner, still no nearer to them than before.\n\n'That is a black shadow to be following the girl,' said Steerforth,\nstanding still; 'what does it mean?'\n\nHe spoke in a low voice that sounded almost strange to Me.\n\n'She must have it in her mind to beg of them, I think,' said I.\n\n'A beggar would be no novelty,' said Steerforth; 'but it is a\nstrange thing that the beggar should take that shape tonight.'\n\n'Why?' I asked.\n\n'For no better reason, truly, than because I was thinking,' he\nsaid, after a pause, 'of something like it, when it came by.  Where\nthe Devil did it come from, I wonder!'\n\n'From the shadow of this wall, I think,' said I, as we emerged upon\na road on which a wall abutted.\n\n'It's gone!' he returned, looking over his shoulder.  'And all ill\ngo with it.  Now for our dinner!'\n\nBut he looked again over his shoulder towards the sea-line\nglimmering afar off, and yet again.  And he wondered about it, in\nsome broken expressions, several times, in the short remainder of\nour walk; and only seemed to forget it when the light of fire and\ncandle shone upon us, seated warm and merry, at table.\n\nLittimer was there, and had his usual effect upon me.  When I said\nto him that I hoped Mrs. Steerforth and Miss Dartle were well, he\nanswered respectfully (and of course respectably), that they were\ntolerably well, he thanked me, and had sent their compliments. \nThis was all, and yet he seemed to me to say as plainly as a man\ncould say: 'You are very young, sir; you are exceedingly young.'\n\nWe had almost finished dinner, when taking a step or two towards\nthe table, from the corner where he kept watch upon us, or rather\nupon me, as I felt, he said to his master:\n\n'I beg your pardon, sir.  Miss Mowcher is down here.'\n\n'Who?' cried Steerforth, much astonished.\n\n'Miss Mowcher, sir.'\n\n'Why, what on earth does she do here?' said Steerforth.\n\n'It appears to be her native part of the country, sir.  She informs\nme that she makes one of her professional visits here, every year,\nsir.  I met her in the street this afternoon, and she wished to\nknow if she might have the honour of waiting on you after dinner,\nsir.'\n\n'Do you know the Giantess in question, Daisy?' inquired Steerforth.\n\nI was obliged to confess - I felt ashamed, even of being at this\ndisadvantage before Littimer - that Miss Mowcher and I were wholly\nunacquainted.\n\n'Then you shall know her,' said Steerforth, 'for she is one of the\nseven wonders of the world.  When Miss Mowcher comes, show her in.'\n\nI felt some curiosity and excitement about this lady, especially as\nSteerforth burst into a fit of laughing when I referred to her, and\npositively refused to answer any question of which I made her the\nsubject.  I remained, therefore, in a state of considerable\nexpectation until the cloth had been removed some half an hour, and\nwe were sitting over our decanter of wine before the fire, when the\ndoor opened, and Littimer, with his habitual serenity quite\nundisturbed, announced:\n\n'Miss Mowcher!'\n\nI looked at the doorway and saw nothing.  I was still looking at\nthe doorway, thinking that Miss Mowcher was a long while making her\nappearance, when, to my infinite astonishment, there came waddling\nround a sofa which stood between me and it, a pursy dwarf, of about\nforty or forty-five, with a very large head and face, a pair of\nroguish grey eyes, and such extremely little arms, that, to enable\nherself to lay a finger archly against her snub nose, as she ogled\nSteerforth, she was obliged to meet the finger half-way, and lay\nher nose against it.  Her chin, which was what is called a double\nchin, was so fat that it entirely swallowed up the strings of her\nbonnet, bow and all.  Throat she had none; waist she had none; legs\nshe had none, worth mentioning; for though she was more than\nfull-sized down to where her waist would have been, if she had had\nany, and though she terminated, as human beings generally do, in a\npair of feet, she was so short that she stood at a common-sized\nchair as at a table, resting a bag she carried on the seat.  This\nlady - dressed in an off-hand, easy style; bringing her nose and\nher forefinger together, with the difficulty I have described;\nstanding with her head necessarily on one side, and, with one of\nher sharp eyes shut up, making an uncommonly knowing face - after\nogling Steerforth for a few moments, broke into a torrent of words.\n\n'What!  My flower!' she pleasantly began, shaking her large head at\nhim.  'You're there, are you!  Oh, you naughty boy, fie for shame,\nwhat do you do so far away from home?  Up to mischief, I'll be\nbound.  Oh, you're a downy fellow, Steerforth, so you are, and I'm\nanother, ain't I?  Ha, ha, ha!  You'd have betted a hundred pound\nto five, now, that you wouldn't have seen me here, wouldn't you? \nBless you, man alive, I'm everywhere.  I'm here and there, and\nwhere not, like the conjurer's half-crown in the lady's\nhandkercher.  Talking of handkerchers - and talking of ladies -\nwhat a comfort you are to your blessed mother, ain't you, my dear\nboy, over one of my shoulders, and I don't say which!'\n\nMiss Mowcher untied her bonnet, at this passage of her discourse,\nthrew back the strings, and sat down, panting, on a footstool in\nfront of the fire - making a kind of arbour of the dining table,\nwhich spread its mahogany shelter above her head.\n\n'Oh my stars and what's-their-names!' she went on, clapping a hand\non each of her little knees, and glancing shrewdly at me, 'I'm of\ntoo full a habit, that's the fact, Steerforth.  After a flight of\nstairs, it gives me as much trouble to draw every breath I want, as\nif it was a bucket of water.  If you saw me looking out of an upper\nwindow, you'd think I was a fine woman, wouldn't you?'\n\n'I should think that, wherever I saw you,' replied Steerforth.\n\n'Go along, you dog, do!' cried the little creature, making a whisk\nat him with the handkerchief with which she was wiping her face,\n'and don't be impudent!  But I give you my word and honour I was at\nLady Mithers's last week - THERE'S a woman!  How SHE wears! - and\nMithers himself came into the room where I was waiting for her -\nTHERE'S a man!  How HE wears! and his wig too, for he's had it\nthese ten years - and he went on at that rate in the complimentary\nline, that I began to think I should be obliged to ring the bell. \nHa! ha! ha!  He's a pleasant wretch, but he wants principle.'\n\n'What were you doing for Lady Mithers?' asked Steerforth.\n\n'That's tellings, my blessed infant,' she retorted, tapping her\nnose again, screwing up her face, and twinkling her eyes like an\nimp of supernatural intelligence.  'Never YOU mind!  You'd like to\nknow whether I stop her hair from falling off, or dye it, or touch\nup her complexion, or improve her eyebrows, wouldn't you?  And so\nyou shall, my darling - when I tell you!  Do you know what my great\ngrandfather's name was?'\n\n'No,' said Steerforth.\n\n'It was Walker, my sweet pet,' replied Miss Mowcher, 'and he came\nof a long line of Walkers, that I inherit all the Hookey estates\nfrom.'\n\nI never beheld anything approaching to Miss Mowcher's wink except\nMiss Mowcher's self-possession.  She had a wonderful way too, when\nlistening to what was said to her, or when waiting for an answer to\nwhat she had said herself, of pausing with her head cunningly on\none side, and one eye turned up like a magpie's.  Altogether I was\nlost in amazement, and sat staring at her, quite oblivious, I am\nafraid, of the laws of politeness.\n\nShe had by this time drawn the chair to her side, and was busily\nengaged in producing from the bag (plunging in her short arm to the\nshoulder, at every dive) a number of small bottles, sponges, combs,\nbrushes, bits of flannel, little pairs of curling-irons, and other\ninstruments, which she tumbled in a heap upon the chair.  From this\nemployment she suddenly desisted, and said to Steerforth, much to\nmy confusion:\n\n'Who's your friend?'\n\n'Mr. Copperfield,' said Steerforth; 'he wants to know you.'\n\n'Well, then, he shall!  I thought he looked as if he did!' returned\nMiss Mowcher, waddling up to me, bag in hand, and laughing on me as\nshe came.  'Face like a peach!' standing on tiptoe to pinch my\ncheek as I sat.  'Quite tempting!  I'm very fond of peaches.  Happy\nto make your acquaintance, Mr. Copperfield, I'm sure.'\n\nI said that I congratulated myself on having the honour to make\nhers, and that the happiness was mutual.\n\n'Oh, my goodness, how polite we are!' exclaimed Miss Mowcher,\nmaking a preposterous attempt to cover her large face with her\nmorsel of a hand.  'What a world of gammon and spinnage it is,\nthough, ain't it!'\n\nThis was addressed confidentially to both of us, as the morsel of\na hand came away from the face, and buried itself, arm and all, in\nthe bag again.\n\n'What do you mean, Miss Mowcher?' said Steerforth.\n\n'Ha! ha! ha!  What a refreshing set of humbugs we are, to be sure,\nain't we, my sweet child?' replied that morsel of a woman, feeling\nin the bag with her head on one side and her eye in the air.  'Look\nhere!' taking something out.  'Scraps of the Russian Prince's\nnails.  Prince Alphabet turned topsy-turvy, I call him, for his\nname's got all the letters in it, higgledy-piggledy.'\n\n'The Russian Prince is a client of yours, is he?' said Steerforth.\n\n'I believe you, my pet,' replied Miss Mowcher.  'I keep his nails\nin order for him.  Twice a week!  Fingers and toes.'\n\n'He pays well, I hope?' said Steerforth.\n\n'Pays, as he speaks, my dear child - through the nose,' replied\nMiss Mowcher.  'None of your close shavers the Prince ain't.  You'd\nsay so, if you saw his moustachios.  Red by nature, black by art.'\n\n'By your art, of course,' said Steerforth.\n\nMiss Mowcher winked assent.  'Forced to send for me.  Couldn't help\nit.  The climate affected his dye; it did very well in Russia, but\nit was no go here.  You never saw such a rusty Prince in all your\nborn days as he was.  Like old iron!'\n'Is that why you called him a humbug, just now?' inquired\nSteerforth.\n\n'Oh, you're a broth of a boy, ain't you?' returned Miss Mowcher,\nshaking her head violently.  'I said, what a set of humbugs we were\nin general, and I showed you the scraps of the Prince's nails to\nprove it.  The Prince's nails do more for me in private families of\nthe genteel sort, than all my talents put together.  I always carry\n'em about.  They're the best introduction.  If Miss Mowcher cuts\nthe Prince's nails, she must be all right.  I give 'em away to the\nyoung ladies.  They put 'em in albums, I believe.  Ha!  ha! ha! \nUpon my life, \"the whole social system\" (as the men call it when\nthey make speeches in Parliament) is a system of Prince's nails!'\nsaid this least of women, trying to fold her short arms, and\nnodding her large head.\n\nSteerforth laughed heartily, and I laughed too.  Miss Mowcher\ncontinuing all the time to shake her head (which was very much on\none side), and to look into the air with one eye, and to wink with\nthe other.\n\n'Well, well!' she said, smiting her small knees, and rising, 'this\nis not business.  Come, Steerforth, let's explore the polar\nregions, and have it over.'\n\nShe then selected two or three of the little instruments, and a\nlittle bottle, and asked (to my surprise) if the table would bear. \nOn Steerforth's replying in the affirmative, she pushed a chair\nagainst it, and begging the assistance of my hand, mounted up,\npretty nimbly, to the top, as if it were a stage.\n\n'If either of you saw my ankles,' she said, when she was safely\nelevated, 'say so, and I'll go home and destroy myself!'\n\n'I did not,' said Steerforth.\n\n'I did not,' said I.\n\n'Well then,' cried Miss Mowcher,' I'll consent to live.  Now,\nducky, ducky, ducky, come to Mrs. Bond and be killed.'\n\nThis was an invocation to Steerforth to place himself under her\nhands; who, accordingly, sat himself down, with his back to the\ntable, and his laughing face towards me, and submitted his head to\nher inspection, evidently for no other purpose than our\nentertainment.  To see Miss Mowcher standing over him, looking at\nhis rich profusion of brown hair through a large round magnifying\nglass, which she took out of her pocket, was a most amazing\nspectacle.\n\n'You're a pretty fellow!' said Miss Mowcher, after a brief\ninspection.  'You'd be as bald as a friar on the top of your head\nin twelve months, but for me.  just half a minute, my young friend,\nand we'll give you a polishing that shall keep your curls on for\nthe next ten years!'\n\nWith this, she tilted some of the contents of the little bottle on\nto one of the little bits of flannel, and, again imparting some of\nthe virtues of that preparation to one of the little brushes, began\nrubbing and scraping away with both on the crown of Steerforth's\nhead in the busiest manner I ever witnessed, talking all the time.\n\n'There's Charley Pyegrave, the duke's son,' she said.  'You know\nCharley?' peeping round into his face.\n\n'A little,' said Steerforth.\n\n'What a man HE is!  THERE'S a whisker!  As to Charley's legs, if\nthey were only a pair (which they ain't), they'd defy competition. \nWould you believe he tried to do without me - in the Life-Guards,\ntoo?'\n\n'Mad!' said Steerforth.\n\n'It looks like it.  However, mad or sane, he tried,' returned Miss\nMowcher.  'What does he do, but, lo and behold you, he goes into a\nperfumer's shop, and wants to buy a bottle of the Madagascar\nLiquid.'\n\n'Charley does?' said Steerforth.\n\n'Charley does.  But they haven't got any of the Madagascar Liquid.'\n\n'What is it?  Something to drink?' asked Steerforth.\n\n'To drink?' returned Miss Mowcher, stopping to slap his cheek.  'To\ndoctor his own moustachios with, you know.  There was a woman in\nthe shop - elderly female - quite a Griffin - who had never even\nheard of it by name.  \"Begging pardon, sir,\" said the Griffin to\nCharley, \"it's not - not - not ROUGE, is it?\"  \"Rouge,\" said\nCharley to the Griffin.  \"What the unmentionable to ears polite, do\nyou think I want with rouge?\"  \"No offence, sir,\" said the Griffin;\n\"we have it asked for by so many names, I thought it might be.\" Now\nthat, my child,' continued Miss Mowcher, rubbing all the time as\nbusily as ever, 'is another instance of the refreshing humbug I was\nspeaking of.  I do something in that way myself - perhaps a good\ndeal - perhaps a little - sharp's the word, my dear boy - never\nmind!'\n\n'In what way do you mean?  In the rouge way?' said Steerforth.\n\n'Put this and that together, my tender pupil,' returned the wary\nMowcher, touching her nose, 'work it by the rule of Secrets in all\ntrades, and the product will give you the desired result.  I say I\ndo a little in that way myself.  One Dowager, SHE calls it\nlip-salve.  Another, SHE calls it gloves.  Another, SHE calls it\ntucker-edging.  Another, SHE calls it a fan.  I call it whatever\nTHEY call it.  I supply it for 'em, but we keep up the trick so, to\none another, and make believe with such a face, that they'd as soon\nthink of laying it on, before a whole drawing-room, as before me. \nAnd when I wait upon 'em, they'll say to me sometimes - WITH IT ON\n- thick, and no mistake - \"How am I looking, Mowcher?  Am I pale?\"\nHa! ha! ha! ha!  Isn't THAT refreshing, my young friend!'\n\nI never did in my days behold anything like Mowcher as she stood\nupon the dining table, intensely enjoying this refreshment, rubbing\nbusily at Steerforth's head, and winking at me over it.\n\n'Ah!' she said.  'Such things are not much in demand hereabouts. \nThat sets me off again!  I haven't seen a pretty woman since I've\nbeen here, jemmy.'\n\n'No?' said Steerforth.\n\n'Not the ghost of one,' replied Miss Mowcher.\n\n'We could show her the substance of one, I think?' said Steerforth,\naddressing his eyes to mine.  'Eh, Daisy?'\n\n'Yes, indeed,' said I.\n\n'Aha?' cried the little creature, glancing sharply at my face, and\nthen peeping round at Steerforth's.  'Umph?'\n\nThe first exclamation sounded like a question put to both of us,\nand the second like a question put to Steerforth only.  She seemed\nto have found no answer to either, but continued to rub, with her\nhead on one side and her eye turned up, as if she were looking for\nan answer in the air and were confident of its appearing presently.\n\n'A sister of yours, Mr. Copperfield?' she cried, after a pause, and\nstill keeping the same look-out.  'Aye, aye?'\n\n'No,' said Steerforth, before I could reply.  'Nothing of the sort. \nOn the contrary, Mr. Copperfield used - or I am much mistaken - to\nhave a great admiration for her.'\n\n'Why, hasn't he now?' returned Miss Mowcher.  'Is he fickle?  Oh,\nfor shame!  Did he sip every flower, and change every hour, until\nPolly his passion requited? - Is her name Polly?'\n\nThe Elfin suddenness with which she pounced upon me with this\nquestion, and a searching look, quite disconcerted me for a moment.\n\n'No, Miss Mowcher,' I replied.  'Her name is Emily.'\n\n'Aha?' she cried exactly as before.  'Umph?  What a rattle I am!\nMr. Copperfield, ain't I volatile?'\n\nHer tone and look implied something that was not agreeable to me in\nconnexion with the subject.  So I said, in a graver manner than any\nof us had yet assumed:\n'She is as virtuous as she is pretty.  She is engaged to be married\nto a most worthy and deserving man in her own station of life.  I\nesteem her for her good sense, as much as I admire her for her good\nlooks.'\n\n'Well said!' cried Steerforth.  'Hear, hear, hear!  Now I'll quench\nthe curiosity of this little Fatima, my dear Daisy, by leaving her\nnothing to guess at.  She is at present apprenticed, Miss Mowcher,\nor articled, or whatever it may be, to Omer and Joram,\nHaberdashers, Milliners, and so forth, in this town.  Do you\nobserve?  Omer and Joram.  The promise of which my friend has\nspoken, is made and entered into with her cousin; Christian name,\nHam; surname, Peggotty; occupation, boat-builder; also of this\ntown.  She lives with a relative; Christian name, unknown; surname,\nPeggotty; occupation, seafaring; also of this town.  She is the\nprettiest and most engaging little fairy in the world.  I admire\nher - as my friend does - exceedingly.  If it were not that I might\nappear to disparage her Intended, which I know my friend would not\nlike, I would add, that to me she seems to be throwing herself\naway; that I am sure she might do better; and that I swear she was\nborn to be a lady.'\n\nMiss Mowcher listened to these words, which were very slowly and\ndistinctly spoken, with her head on one side, and her eye in the\nair as if she were still looking for that answer.  When he ceased\nshe became brisk again in an instant, and rattled away with\nsurprising volubility.\n\n'Oh!  And that's all about it, is it?' she exclaimed, trimming his\nwhiskers with a little restless pair of scissors, that went\nglancing round his head in all directions.  'Very well: very well!\nQuite a long story.  Ought to end \"and they lived happy ever\nafterwards\"; oughtn't it?  Ah!  What's that game at forfeits?  I\nlove my love with an E, because she's enticing; I hate her with an\nE, because she's engaged.  I took her to the sign of the exquisite,\nand treated her with an elopement, her name's Emily, and she lives\nin the east?  Ha! ha! ha!  Mr. Copperfield, ain't I volatile?'\n\nMerely looking at me with extravagant slyness, and not waiting for\nany reply, she continued, without drawing breath:\n\n'There!  If ever any scapegrace was trimmed and touched up to\nperfection, you are, Steerforth.  If I understand any noddle in the\nworld, I understand yours.  Do you hear me when I tell you that, my\ndarling?  I understand yours,' peeping down into his face.  'Now\nyou may mizzle, jemmy (as we say at Court), and if Mr. Copperfield\nwill take the chair I'll operate on him.'\n\n'What do you say, Daisy?' inquired Steerforth, laughing, and\nresigning his seat.  'Will you be improved?'\n\n'Thank you, Miss Mowcher, not this evening.'\n\n'Don't say no,' returned the little woman, looking at me with the\naspect of a connoisseur; 'a little bit more eyebrow?'\n\n'Thank you,' I returned, 'some other time.'\n\n'Have it carried half a quarter of an inch towards the temple,'\nsaid Miss Mowcher.  'We can do it in a fortnight.'\n\n'No, I thank you.  Not at present.'\n\n'Go in for a tip,' she urged.  'No?  Let's get the scaffolding up,\nthen, for a pair of whiskers.  Come!'\n\nI could not help blushing as I declined, for I felt we were on my\nweak point, now.  But Miss Mowcher, finding that I was not at\npresent disposed for any decoration within the range of her art,\nand that I was, for the time being, proof against the blandishments\nof the small bottle which she held up before one eye to enforce her\npersuasions, said we would make a beginning on an early day, and\nrequested the aid of my hand to descend from her elevated station. \nThus assisted, she skipped down with much agility, and began to tie\nher double chin into her bonnet.\n\n'The fee,' said Steerforth, 'is -'\n\n'Five bob,' replied Miss Mowcher, 'and dirt cheap, my chicken. \nAin't I volatile, Mr. Copperfield?'\n\nI replied politely: 'Not at all.'  But I thought she was rather so,\nwhen she tossed up his two half-crowns like a goblin pieman, caught\nthem, dropped them in her pocket, and gave it a loud slap.\n\n'That's the Till!' observed Miss Mowcher, standing at the chair\nagain, and replacing in the bag a miscellaneous collection of\nlittle objects she had emptied out of it.  'Have I got all my\ntraps?  It seems so.  It won't do to be like long Ned Beadwood,\nwhen they took him to church \"to marry him to somebody\", as he\nsays, and left the bride behind.  Ha! ha! ha!  A wicked rascal,\nNed, but droll!  Now, I know I'm going to break your hearts, but I\nam forced to leave you.  You must call up all your fortitude, and\ntry to bear it.  Good-bye, Mr. Copperfield!  Take care of yourself,\njockey of Norfolk!  How I have been rattling on!  It's all the\nfault of you two wretches.  I forgive you!  \"Bob swore!\" - as the\nEnglishman said for \"Good night\", when he first learnt French, and\nthought it so like English.  \"Bob swore,\" my ducks!'\n\nWith the bag slung over her arm, and rattling as she waddled away,\nshe waddled to the door, where she stopped to inquire if she should\nleave us a lock of her hair.  'Ain't I volatile?' she added, as a\ncommentary on this offer, and, with her finger on her nose,\ndeparted.\n\nSteerforth laughed to that degree, that it was impossible for me to\nhelp laughing too; though I am not sure I should have done so, but\nfor this inducement.  When we had had our laugh quite out, which\nwas after some time, he told me that Miss Mowcher had quite an\nextensive connexion, and made herself useful to a variety of people\nin a variety of ways.  Some people trifled with her as a mere\noddity, he said; but she was as shrewdly and sharply observant as\nanyone he knew, and as long-headed as she was short-armed.  He told\nme that what she had said of being here, and there, and everywhere,\nwas true enough; for she made little darts into the provinces, and\nseemed to pick up customers everywhere, and to know everybody.  I\nasked him what her disposition was: whether it was at all\nmischievous, and if her sympathies were generally on the right side\nof things: but, not succeeding in attracting his attention to these\nquestions after two or three attempts, I forbore or forgot to\nrepeat them.  He told me instead, with much rapidity, a good deal\nabout her skill, and her profits; and about her being a scientific\ncupper, if I should ever have occasion for her service in that\ncapacity.\n\nShe was the principal theme of our conversation during the evening:\nand when we parted for the night Steerforth called after me over\nthe banisters, 'Bob swore!' as I went downstairs.\n\nI was surprised, when I came to Mr. Barkis's house, to find Ham\nwalking up and down in front of it, and still more surprised to\nlearn from him that little Em'ly was inside.  I naturally inquired\nwhy he was not there too, instead of pacing the streets by himself?\n\n'Why, you see, Mas'r Davy,' he rejoined, in a hesitating manner,\n'Em'ly, she's talking to some 'un in here.'\n\n'I should have thought,' said I, smiling, 'that that was a reason\nfor your being in here too, Ham.'\n\n'Well, Mas'r Davy, in a general way, so 't would be,' he returned;\n'but look'ee here, Mas'r Davy,' lowering his voice, and speaking\nvery gravely.  'It's a young woman, sir - a young woman, that Em'ly\nknowed once, and doen't ought to know no more.'\n\nWhen I heard these words, a light began to fall upon the figure I\nhad seen following them, some hours ago.\n\n'It's a poor wurem, Mas'r Davy,' said Ham, 'as is trod under foot\nby all the town.  Up street and down street.  The mowld o' the\nchurchyard don't hold any that the folk shrink away from, more.'\n\n'Did I see her tonight, Ham, on the sand, after we met you?'\n\n'Keeping us in sight?' said Ham.  'It's like you did, Mas'r Davy. \nNot that I know'd then, she was theer, sir, but along of her\ncreeping soon arterwards under Em'ly's little winder, when she see\nthe light come, and whispering \"Em'ly, Em'ly, for Christ's sake,\nhave a woman's heart towards me.  I was once like you!\" Those was\nsolemn words, Mas'r Davy, fur to hear!'\n\n'They were indeed, Ham.  What did Em'ly do?'\n'Says Em'ly, \"Martha, is it you?  Oh, Martha, can it be you?\" - for\nthey had sat at work together, many a day, at Mr. Omer's.'\n\n'I recollect her now!' cried I, recalling one of the two girls I\nhad seen when I first went there.  'I recollect her quite well!'\n\n'Martha Endell,' said Ham.  'Two or three year older than Em'ly,\nbut was at the school with her.'\n\n'I never heard her name,' said I.  'I didn't mean to interrupt\nyou.'\n\n'For the matter o' that, Mas'r Davy,' replied Ham, 'all's told\na'most in them words, \"Em'ly, Em'ly, for Christ's sake, have a\nwoman's heart towards me.  I was once like you!\" She wanted to\nspeak to Em'ly.  Em'ly couldn't speak to her theer, for her loving\nuncle was come home, and he wouldn't - no, Mas'r Davy,' said Ham,\nwith great earnestness, 'he couldn't, kind-natur'd, tender-hearted\nas he is, see them two together, side by side, for all the\ntreasures that's wrecked in the sea.'\n\nI felt how true this was.  I knew it, on the instant, quite as well\nas Ham.\n\n'So Em'ly writes in pencil on a bit of paper,' he pursued, 'and\ngives it to her out o' winder to bring here.  \"Show that,\" she\nsays, \"to my aunt, Mrs. Barkis, and she'll set you down by her\nfire, for the love of me, till uncle is gone out, and I can come.\"\nBy and by she tells me what I tell you, Mas'r Davy, and asks me to\nbring her.  What can I do?  She doen't ought to know any such, but\nI can't deny her, when the tears is on her face.'\n\nHe put his hand into the breast of his shaggy jacket, and took out\nwith great care a pretty little purse.\n\n'And if I could deny her when the tears was on her face, Mas'r\nDavy,' said Ham, tenderly adjusting it on the rough palm of his\nhand, 'how could I deny her when she give me this to carry for her\n- knowing what she brought it for?  Such a toy as it is!' said Ham,\nthoughtfully looking on it.  'With such a little money in it, Em'ly\nmy dear.'\n\nI shook him warmly by the hand when he had put it away again - for\nthat was more satisfactory to me than saying anything - and we\nwalked up and down, for a minute or two, in silence.  The door\nopened then, and Peggotty appeared, beckoning to Ham to come in. \nI would have kept away, but she came after me, entreating me to\ncome in too.  Even then, I would have avoided the room where they\nall were, but for its being the neat-tiled kitchen I have mentioned\nmore than once.  The door opening immediately into it, I found\nmyself among them before I considered whither I was going.\n\nThe girl - the same I had seen upon the sands - was near the fire. \nShe was sitting on the ground, with her head and one arm lying on\na chair.  I fancied, from the disposition of her figure, that Em'ly\nhad but newly risen from the chair, and that the forlorn head might\nperhaps have been lying on her lap.  I saw but little of the girl's\nface, over which her hair fell loose and scattered, as if she had\nbeen disordering it with her own hands; but I saw that she was\nyoung, and of a fair complexion.  Peggotty had been crying.  So had\nlittle Em'ly.  Not a word was spoken when we first went in; and the\nDutch clock by the dresser seemed, in the silence, to tick twice as\nloud as usual.  Em'ly spoke first.\n\n'Martha wants,' she said to Ham, 'to go to London.'\n\n'Why to London?' returned Ham.\n\nHe stood between them, looking on the prostrate girl with a mixture\nof compassion for her, and of jealousy of her holding any\ncompanionship with her whom he loved so well, which I have always\nremembered distinctly.  They both spoke as if she were ill; in a\nsoft, suppressed tone that was plainly heard, although it hardly\nrose above a whisper.\n\n'Better there than here,' said a third voice aloud - Martha's,\nthough she did not move.  'No one knows me there.  Everybody knows\nme here.'\n\n'What will she do there?' inquired Ham.\n\nShe lifted up her head, and looked darkly round at him for a\nmoment; then laid it down again, and curved her right arm about her\nneck, as a woman in a fever, or in an agony of pain from a shot,\nmight twist herself.\n\n'She will try to do well,' said little Em'ly.  'You don't know what\nshe has said to us.  Does he - do they - aunt?'\n\nPeggotty shook her head compassionately.\n\n'I'll try,' said Martha, 'if you'll help me away.  I never can do\nworse than I have done here.  I may do better.  Oh!' with a\ndreadful shiver, 'take me out of these streets, where the whole\ntown knows me from a child!'\n\nAs Em'ly held out her hand to Ham, I saw him put in it a little\ncanvas bag.  She took it, as if she thought it were her purse, and\nmade a step or two forward; but finding her mistake, came back to\nwhere he had retired near me, and showed it to him.\n\n'It's all yourn, Em'ly,' I could hear him say.  'I haven't nowt in\nall the wureld that ain't yourn, my dear.  It ain't of no delight\nto me, except for you!'\n\nThe tears rose freshly in her eyes, but she turned away and went to\nMartha.  What she gave her, I don't know.  I saw her stooping over\nher, and putting money in her bosom.  She whispered something, as\nshe asked was that enough?  'More than enough,' the other said, and\ntook her hand and kissed it.\n\nThen Martha arose, and gathering her shawl about her, covering her\nface with it, and weeping aloud, went slowly to the door.  She\nstopped a moment before going out, as if she would have uttered\nsomething or turned back; but no word passed her lips.  Making the\nsame low, dreary, wretched moaning in her shawl, she went away.\n\nAs the door closed, little Em'ly looked at us three in a hurried\nmanner and then hid her face in her hands, and fell to sobbing.\n\n'Doen't, Em'ly!' said Ham, tapping her gently on the shoulder. \n'Doen't, my dear!  You doen't ought to cry so, pretty!'\n\n'Oh, Ham!' she exclaimed, still weeping pitifully, 'I am not so\ngood a girl as I ought to be!  I know I have not the thankful\nheart, sometimes, I ought to have!'\n\n'Yes, yes, you have, I'm sure,' said Ham.\n\n'No! no! no!' cried little Em'ly, sobbing, and shaking her head. \n'I am not as good a girl as I ought to be.  Not near! not near!'\nAnd still she cried, as if her heart would break.\n\n'I try your love too much.  I know I do!' she sobbed.  'I'm often\ncross to you, and changeable with you, when I ought to be far\ndifferent.  You are never so to me.  Why am I ever so to you, when\nI should think of nothing but how to be grateful, and to make you\nhappy!'\n\n'You always make me so,' said Ham, 'my dear!  I am happy in the\nsight of you.  I am happy, all day long, in the thoughts of you.'\n\n'Ah! that's not enough!' she cried.  'That is because you are good;\nnot because I am!  Oh, my dear, it might have been a better fortune\nfor you, if you had been fond of someone else - of someone steadier\nand much worthier than me, who was all bound up in you, and never\nvain and changeable like me!'\n\n'Poor little tender-heart,' said Ham, in a low voice.  'Martha has\noverset her, altogether.'\n\n'Please, aunt,' sobbed Em'ly, 'come here, and let me lay my head\nupon you.  Oh, I am very miserable tonight, aunt!  Oh, I am not as\ngood a girl as I ought to be.  I am not, I know!'\n\nPeggotty had hastened to the chair before the fire.  Em'ly, with\nher arms around her neck, kneeled by her, looking up most earnestly\ninto her face.\n\n'Oh, pray, aunt, try to help me!  Ham, dear, try to help me!  Mr.\nDavid, for the sake of old times, do, please, try to help me!  I\nwant to be a better girl than I am.  I want to feel a hundred times\nmore thankful than I do.  I want to feel more, what a blessed thing\nit is to be the wife of a good man, and to lead a peaceful life. \nOh me, oh me!  Oh my heart, my heart!'\n\nShe dropped her face on my old nurse's breast, and, ceasing this\nsupplication, which in its agony and grief was half a woman's, half\na child's, as all her manner was (being, in that, more natural, and\nbetter suited to her beauty, as I thought, than any other manner\ncould have been), wept silently, while my old nurse hushed her like\nan infant.\n\nShe got calmer by degrees, and then we soothed her; now talking\nencouragingly, and now jesting a little with her, until she began\nto raise her head and speak to us.  So we got on, until she was\nable to smile, and then to laugh, and then to sit up, half ashamed;\nwhile Peggotty recalled her stray ringlets, dried her eyes, and\nmade her neat again, lest her uncle should wonder, when she got\nhome, why his darling had been crying.\n\nI saw her do, that night, what I had never seen her do before.  I\nsaw her innocently kiss her chosen husband on the cheek, and creep\nclose to his bluff form as if it were her best support.  When they\nwent away together, in the waning moonlight, and I looked after\nthem, comparing their departure in my mind with Martha's, I saw\nthat she held his arm with both her hands, and still kept close to\nhim.\n\n\n\nCHAPTER 23\nI CORROBORATE Mr. DICK, AND CHOOSE A PROFESSION\n\n\nWhen I awoke in the morning I thought very much of little Em'ly,\nand her emotion last night, after Martha had left.  I felt as if I\nhad come into the knowledge of those domestic weaknesses and\ntendernesses in a sacred confidence, and that to disclose them,\neven to Steerforth, would be wrong.  I had no gentler feeling\ntowards anyone than towards the pretty creature who had been my\nplaymate, and whom I have always been persuaded, and shall always\nbe persuaded, to my dying day, I then devotedly loved.  The\nrepetition to any ears - even to Steerforth's - of what she had\nbeen unable to repress when her heart lay open to me by an\naccident, I felt would be a rough deed, unworthy of myself,\nunworthy of the light of our pure childhood, which I always saw\nencircling her head.  I made a resolution, therefore, to keep it in\nmy own breast; and there it gave her image a new grace.\n\nWhile we were at breakfast, a letter was delivered to me from my\naunt.  As it contained matter on which I thought Steerforth could\nadvise me as well as anyone, and on which I knew I should be\ndelighted to consult him, I resolved to make it a subject of\ndiscussion on our journey home.  For the present we had enough to\ndo, in taking leave of all our friends.  Mr. Barkis was far from\nbeing the last among them, in his regret at our departure; and I\nbelieve would even have opened the box again, and sacrificed\nanother guinea, if it would have kept us eight-and-forty hours in\nYarmouth.  Peggotty and all her family were full of grief at our\ngoing.  The whole house of Omer and Joram turned out to bid us\ngood-bye; and there were so many seafaring volunteers in attendance\non Steerforth, when our portmanteaux went to the coach, that if we\nhad had the baggage of a regiment with us, we should hardly have\nwanted porters to carry it.  In a word, we departed to the regret\nand admiration of all concerned, and left a great many people very\nsorry behind US.\n\nDo you stay long here, Littimer?' said I, as he stood waiting to\nsee the coach start.\n\n'No, sir,' he replied; 'probably not very long, sir.'\n\n'He can hardly say, just now,' observed Steerforth, carelessly. \n'He knows what he has to do, and he'll do it.'\n\n'That I am sure he will,' said I.\n\nLittimer touched his hat in acknowledgement of my good opinion, and\nI felt about eight years old.  He touched it once more, wishing us\na good journey; and we left him standing on the pavement, as\nrespectable a mystery as any pyramid in Egypt.\n\nFor some little time we held no conversation, Steerforth being\nunusually silent, and I being sufficiently engaged in wondering,\nwithin myself, when I should see the old places again, and what new\nchanges might happen to me or them in the meanwhile.  At length\nSteerforth, becoming gay and talkative in a moment, as he could\nbecome anything he liked at any moment, pulled me by the arm:\n\n'Find a voice, David.  What about that letter you were speaking of\nat breakfast?'\n\n'Oh!' said I, taking it out of my pocket.  'It's from my aunt.'\n\n'And what does she say, requiring consideration?'\n\n'Why, she reminds me, Steerforth,' said I, 'that I came out on\nthis expedition to look about me, and to think a little.'\n\n'Which, of course, you have done?'\n\n'Indeed I can't say I have, particularly.  To tell you the truth,\nI am afraid I have forgotten it.'\n\n'Well! look about you now, and make up for your negligence,' said\nSteerforth.  'Look to the right, and you'll see a flat country,\nwith a good deal of marsh in it; look to the left, and you'll see\nthe same.  Look to the front, and you'll find no difference; look\nto the rear, and there it is still.'\nI laughed, and replied that I saw no suitable profession in the\nwhole prospect; which was perhaps to be attributed to its flatness.\n\n'What says our aunt on the subject?' inquired Steerforth, glancing\nat the letter in my hand.  'Does she suggest anything?'\n\n'Why, yes,' said I.  'She asks me, here, if I think I should like\nto be a proctor?  What do you think of it?'\n\n'Well, I don't know,' replied Steerforth, coolly.  'You may as well\ndo that as anything else, I suppose?'\n\nI could not help laughing again, at his balancing all callings and\nprofessions so equally; and I told him so.\n\n'What is a proctor, Steerforth?' said I.\n\n'Why, he is a sort of monkish attorney,' replied Steerforth.  'He\nis, to some faded courts held in Doctors' Commons, - a lazy old\nnook near St. Paul's Churchyard - what solicitors are to the courts\nof law and equity.  He is a functionary whose existence, in the\nnatural course of things, would have terminated about two hundred\nyears ago.  I can tell you best what he is, by telling you what\nDoctors' Commons is.  It's a little out-of-the-way place, where\nthey administer what is called ecclesiastical law, and play all\nkinds of tricks with obsolete old monsters of acts of Parliament,\nwhich three-fourths of the world know nothing about, and the other\nfourth supposes to have been dug up, in a fossil state, in the days\nof the Edwards.  It's a place that has an ancient monopoly in suits\nabout people's wills and people's marriages, and disputes among\nships and boats.'\n\n'Nonsense, Steerforth!' I exclaimed.  'You don't mean to say that\nthere is any affinity between nautical matters and ecclesiastical\nmatters?'\n\n'I don't, indeed, my dear boy,' he returned; 'but I mean to say\nthat they are managed and decided by the same set of people, down\nin that same Doctors' Commons.  You shall go there one day, and\nfind them blundering through half the nautical terms in Young's\nDictionary, apropos of the \"Nancy\" having run down the \"Sarah\nJane\", or Mr. Peggotty and the Yarmouth boatmen having put off in\na gale of wind with an anchor and cable to the \"Nelson\" Indiaman in\ndistress; and you shall go there another day, and find them deep in\nthe evidence, pro and con, respecting a clergyman who has\nmisbehaved himself; and you shall find the judge in the nautical\ncase, the advocate in the clergyman's case, or contrariwise.  They\nare like actors: now a man's a judge, and now he is not a judge;\nnow he's one thing, now he's another; now he's something else,\nchange and change about; but it's always a very pleasant,\nprofitable little affair of private theatricals, presented to an\nuncommonly select audience.'\n\n'But advocates and proctors are not one and the same?' said I, a\nlittle puzzled.  'Are they?'\n\n'No,' returned Steerforth, 'the advocates are civilians - men who\nhave taken a doctor's degree at college - which is the first reason\nof my knowing anything about it.  The proctors employ the\nadvocates.  Both get very comfortable fees, and altogether they\nmake a mighty snug little party.  On the whole, I would recommend\nyou to take to Doctors' Commons kindly, David.  They plume them-\nselves on their gentility there, I can tell you, if that's any\nsatisfaction.'\n\nI made allowance for Steerforth's light way of treating the\nsubject, and, considering it with reference to the staid air of\ngravity and antiquity which I associated with that 'lazy old nook\nnear St. Paul's Churchyard', did not feel indisposed towards my\naunt's suggestion; which she left to my free decision, making no\nscruple of telling me that it had occurred to her, on her lately\nvisiting her own proctor in Doctors' Commons for the purpose of\nsettling her will in my favour.\n\n'That's a laudable proceeding on the part of our aunt, at all\nevents,' said Steerforth, when I mentioned it; 'and one deserving\nof all encouragement.  Daisy, my advice is that you take kindly to\nDoctors' Commons.'\n\nI quite made up my mind to do so.  I then told Steerforth that my\naunt was in town awaiting me (as I found from her letter), and that\nshe had taken lodgings for a week at a kind of private hotel at\nLincoln's Inn Fields, where there was a stone staircase, and a\nconvenient door in the roof; my aunt being firmly persuaded that\nevery house in London was going to be burnt down every night.\n\nWe achieved the rest of our journey pleasantly, sometimes recurring\nto Doctors' Commons, and anticipating the distant days when I\nshould be a proctor there, which Steerforth pictured in a variety\nof humorous and whimsical lights, that made us both merry.  When we\ncame to our journey's end, he went home, engaging to call upon me\nnext day but one; and I drove to Lincoln's Inn Fields, where I\nfound my aunt up, and waiting supper.\n\nIf I had been round the world since we parted, we could hardly have\nbeen better pleased to meet again.  My aunt cried outright as she\nembraced me; and said, pretending to laugh, that if my poor mother\nhad been alive, that silly little creature would have shed tears,\nshe had no doubt.\n\n'So you have left Mr. Dick behind, aunt?' said I.  'I am sorry for\nthat.  Ah, Janet, how do you do?'\n\nAs Janet curtsied, hoping I was well, I observed my aunt's visage\nlengthen very much.\n\n'I am sorry for it, too,' said my aunt, rubbing her nose.  'I have\nhad no peace of mind, Trot, since I have been here.'\nBefore I could ask why, she told me.\n\n'I am convinced,' said my aunt, laying her hand with melancholy\nfirmness on the table, 'that Dick's character is not a character to\nkeep the donkeys off.  I am confident he wants strength of purpose. \nI ought to have left Janet at home, instead, and then my mind might\nperhaps have been at ease.  If ever there was a donkey trespassing\non my green,' said my aunt, with emphasis, 'there was one this\nafternoon at four o'clock.  A cold feeling came over me from head\nto foot, and I know it was a donkey!'\n\nI tried to comfort her on this point, but she rejected consolation.\n\n'It was a donkey,' said my aunt; 'and it was the one with the\nstumpy tail which that Murdering sister of a woman rode, when she\ncame to my house.'  This had been, ever since, the only name my\naunt knew for Miss Murdstone.  'If there is any Donkey in Dover,\nwhose audacity it is harder to me to bear than another's, that,'\nsaid my aunt, striking the table, 'is the animal!'\n\nJanet ventured to suggest that my aunt might be disturbing herself\nunnecessarily, and that she believed the donkey in question was\nthen engaged in the sand-and-gravel line of business, and was not\navailable for purposes of trespass.  But my aunt wouldn't hear of\nit.\n\nSupper was comfortably served and hot, though my aunt's rooms were\nvery high up - whether that she might have more stone stairs for\nher money, or might be nearer to the door in the roof, I don't know\n- and consisted of a roast fowl, a steak, and some vegetables, to\nall of which I did ample justice, and which were all excellent. \nBut my aunt had her own ideas concerning London provision, and ate\nbut little.\n\n'I suppose this unfortunate fowl was born and brought up in a\ncellar,' said my aunt, 'and never took the air except on a hackney\ncoach-stand.  I hope the steak may be beef, but I don't believe it. \nNothing's genuine in the place, in my opinion, but the dirt.'\n\n'Don't you think the fowl may have come out of the country, aunt?'\nI hinted.\n\n'Certainly not,' returned my aunt.  'It would be no pleasure to a\nLondon tradesman to sell anything which was what he pretended it\nwas.'\n\nI did not venture to controvert this opinion, but I made a good\nsupper, which it greatly satisfied her to see me do.  When the\ntable was cleared, Janet assisted her to arrange her hair, to put\non her nightcap, which was of a smarter construction than usual\n('in case of fire', my aunt said), and to fold her gown back over\nher knees, these being her usual preparations for warming herself\nbefore going to bed.  I then made her, according to certain\nestablished regulations from which no deviation, however slight,\ncould ever be permitted, a glass of hot wine and water, and a slice\nof toast cut into long thin strips.  With these accompaniments we\nwere left alone to finish the evening, my aunt sitting opposite to\nme drinking her wine and water; soaking her strips of toast in it,\none by one, before eating them; and looking benignantly on me, from\namong the borders of her nightcap.\n\n'Well, Trot,' she began, 'what do you think of the proctor plan? \nOr have you not begun to think about it yet?'\n\n'I have thought a good deal about it, my dear aunt, and I have\ntalked a good deal about it with Steerforth.  I like it very much\nindeed.  I like it exceedingly.'\n\n'Come!' said my aunt.  'That's cheering!'\n\n'I have only one difficulty, aunt.'\n\n'Say what it is, Trot,' she returned.\n\n'Why, I want to ask, aunt, as this seems, from what I understand,\nto be a limited profession, whether my entrance into it would not\nbe very expensive?'\n\n'It will cost,' returned my aunt, 'to article you, just a thousand\npounds.'\n\n'Now, my dear aunt,' said I, drawing my chair nearer, 'I am uneasy\nin my mind about that.  It's a large sum of money.  You have\nexpended a great deal on my education, and have always been as\nliberal to me in all things as it was possible to be.  You have\nbeen the soul of generosity.  Surely there are some ways in which\nI might begin life with hardly any outlay, and yet begin with a\ngood hope of getting on by resolution and exertion.  Are you sure\nthat it would not be better to try that course?  Are you certain\nthat you can afford to part with so much money, and that it is\nright that it should be so expended?  I only ask you, my second\nmother, to consider.  Are you certain?'\n\nMy aunt finished eating the piece of toast on which she was then\nengaged, looking me full in the face all the while; and then\nsetting her glass on the chimney-piece, and folding her hands upon\nher folded skirts, replied as follows:\n\n'Trot, my child, if I have any object in life, it is to provide for\nyour being a good, a sensible, and a happy man.  I am bent upon it\n- so is Dick.  I should like some people that I know to hear Dick's\nconversation on the subject.  Its sagacity is wonderful.  But no\none knows the resources of that man's intellect, except myself!'\n\nShe stopped for a moment to take my hand between hers, and went on:\n\n'It's in vain, Trot, to recall the past, unless it works some\ninfluence upon the present.  Perhaps I might have been better\nfriends with your poor father.  Perhaps I might have been better\nfriends with that poor child your mother, even after your sister\nBetsey Trotwood disappointed me.  When you came to me, a little\nrunaway boy, all dusty and way-worn, perhaps I thought so.  From\nthat time until now, Trot, you have ever been a credit to me and a\npride and a pleasure.  I have no other claim upon my means; at\nleast' - here to my surprise she hesitated, and was confused - 'no,\nI have no other claim upon my means - and you are my adopted child. \nOnly be a loving child to me in my age, and bear with my whims and\nfancies; and you will do more for an old woman whose prime of life\nwas not so happy or conciliating as it might have been, than ever\nthat old woman did for you.'\n\nIt was the first time I had heard my aunt refer to her past\nhistory.  There was a magnanimity in her quiet way of doing so, and\nof dismissing it, which would have exalted her in my respect and\naffection, if anything could.\n\n'All is agreed and understood between us, now, Trot,' said my aunt,\n'and we need talk of this no more.  Give me a kiss, and we'll go to\nthe Commons after breakfast tomorrow.'\n\nWe had a long chat by the fire before we went to bed.  I slept in\na room on the same floor with my aunt's, and was a little disturbed\nin the course of the night by her knocking at my door as often as\nshe was agitated by a distant sound of hackney-coaches or\nmarket-carts, and inquiring, 'if I heard the engines?'  But towards\nmorning she slept better, and suffered me to do so too.\n\nAt about mid-day, we set out for the office of Messrs Spenlow and\nJorkins, in Doctors' Commons.  My aunt, who had this other general\nopinion in reference to London, that every man she saw was a\npickpocket, gave me her purse to carry for her, which had ten\nguineas in it and some silver.\n\nWe made a pause at the toy shop in Fleet Street, to see the giants\nof Saint Dunstan's strike upon the bells - we had timed our going,\nso as to catch them at it, at twelve o'clock - and then went on\ntowards Ludgate Hill, and St. Paul's Churchyard.  We were crossing\nto the former place, when I found that my aunt greatly accelerated\nher speed, and looked frightened.  I observed, at the same time,\nthat a lowering ill-dressed man who had stopped and stared at us in\npassing, a little before, was coming so close after us as to brush\nagainst her.\n\n'Trot!  My dear Trot!' cried my aunt, in a terrified whisper, and\npressing my arm.  'I don't know what I am to do.'\n\n'Don't be alarmed,' said I.  'There's nothing to be afraid of. \nStep into a shop, and I'll soon get rid of this fellow.'\n\n'No, no, child!' she returned.  'Don't speak to him for the world. \nI entreat, I order you!'\n\n'Good Heaven, aunt!' said I.  'He is nothing but a sturdy\nbeggar.'\n\n'You don't know what he is!' replied my aunt.  'You don't know who\nhe is!  You don't know what you say!'\n\nWe had stopped in an empty door-way, while this was passing, and he\nhad stopped too.\n\n'Don't look at him!' said my aunt, as I turned my head indignantly,\n'but get me a coach, my dear, and wait for me in St. Paul's\nChurchyard.'\n\n'Wait for you?' I replied.\n\n'Yes,' rejoined my aunt.  'I must go alone.  I must go with him.'\n\n'With him, aunt?  This man?'\n\n'I am in my senses,' she replied, 'and I tell you I must.  Get mea\ncoach!'\n\nHowever much astonished I might be, I was sensible that I had no\nright to refuse compliance with such a peremptory command.  I\nhurried away a few paces, and called a hackney-chariot which was\npassing empty.  Almost before I could let down the steps, my aunt\nsprang in, I don't know how, and the man followed.  She waved her\nhand to me to go away, so earnestly, that, all confounded as I was,\nI turned from them at once.  In doing so, I heard her say to the\ncoachman, 'Drive anywhere!  Drive straight on!' and presently the\nchariot passed me, going up the hill.\n\nWhat Mr. Dick had told me, and what I had supposed to be a delusion\nof his, now came into my mind.  I could not doubt that this person\nwas the person of whom he had made such mysterious mention, though\nwhat the nature of his hold upon my aunt could possibly be, I was\nquite unable to imagine.  After half an hour's cooling in the\nchurchyard, I saw the chariot coming back.  The driver stopped\nbeside me, and my aunt was sitting in it alone.\n\nShe had not yet sufficiently recovered from her agitation to be\nquite prepared for the visit we had to make.  She desired me to get\ninto the chariot, and to tell the coachman to drive slowly up and\ndown a little while.  She said no more, except, 'My dear child,\nnever ask me what it was, and don't refer to it,' until she had\nperfectly regained her composure, when she told me she was quite\nherself now, and we might get out.  On her giving me her purse to\npay the driver, I found that all the guineas were gone, and only\nthe loose silver remained.\n\nDoctors' Commons was approached by a little low archway.  Before we\nhad taken many paces down the street beyond it, the noise of the\ncity seemed to melt, as if by magic, into a softened distance.  A\nfew dull courts and narrow ways brought us to the sky-lighted\noffices of Spenlow and Jorkins; in the vestibule of which temple,\naccessible to pilgrims without the ceremony of knocking, three or\nfour clerks were at work as copyists.  One of these, a little dry\nman, sitting by himself, who wore a stiff brown wig that looked as\nif it were made of gingerbread, rose to receive my aunt, and show\nus into Mr. Spenlow's room.\n\n'Mr. Spenlow's in Court, ma'am,' said the dry man; 'it's an Arches\nday; but it's close by, and I'll send for him directly.'\n\nAs we were left to look about us while Mr. Spenlow was fetched, I\navailed myself of the opportunity.  The furniture of the room was\nold-fashioned and dusty; and the green baize on the top of the\nwriting-table had lost all its colour, and was as withered and pale\nas an old pauper.  There were a great many bundles of papers on it,\nsome endorsed as Allegations, and some (to my surprise) as Libels,\nand some as being in the Consistory Court, and some in the Arches\nCourt, and some in the Prerogative Court, and some in the Admiralty\nCourt, and some in the Delegates' Court; giving me occasion to\nwonder much, how many Courts there might be in the gross, and how\nlong it would take to understand them all.  Besides these, there\nwere sundry immense manuscript Books of Evidence taken on\naffidavit, strongly bound, and tied together in massive sets, a set\nto each cause, as if every cause were a history in ten or twenty\nvolumes.  All this looked tolerably expensive, I thought, and gave\nme an agreeable notion of a proctor's business.  I was casting my\neyes with increasing complacency over these and many similar\nobjects, when hasty footsteps were heard in the room outside, and\nMr. Spenlow, in a black gown trimmed with white fur, came hurrying\nin, taking off his hat as he came.\n\nHe was a little light-haired gentleman, with undeniable boots, and\nthe stiffest of white cravats and shirt-collars.  He was buttoned\nup, mighty trim and tight, and must have taken a great deal of\npains with his whiskers, which were accurately curled.  His gold\nwatch-chain was so massive, that a fancy came across me, that he\nought to have a sinewy golden arm, to draw it out with, like those\nwhich are put up over the goldbeaters' shops.  He was got up with\nsuch care, and was so stiff, that he could hardly bend himself;\nbeing obliged, when he glanced at some papers on his desk, after\nsitting down in his chair, to move his whole body, from the bottom\nof his spine, like Punch.\n\nI had previously been presented by my aunt, and had been\ncourteously received.  He now said:\n\n'And so, Mr. Copperfield, you think of entering into our\nprofession?  I casually mentioned to Miss Trotwood, when I had the\npleasure of an interview with her the other day,' - with another\ninclination of his body - Punch again - 'that there was a vacancy\nhere.  Miss Trotwood was good enough to mention that she had a\nnephew who was her peculiar care, and for whom she was seeking to\nprovide genteelly in life.  That nephew, I believe, I have now the\npleasure of' - Punch again.\nI bowed my acknowledgements, and said, my aunt had mentioned to me\nthat there was that opening, and that I believed I should like it\nvery much.  That I was strongly inclined to like it, and had taken\nimmediately to the proposal.  That I could not absolutely pledge\nmyself to like it, until I knew something more about it.  That\nalthough it was little else than a matter of form, I presumed I\nshould have an opportunity of trying how I liked it, before I bound\nmyself to it irrevocably.\n\n'Oh surely! surely!' said Mr. Spenlow.  'We always, in this house,\npropose a month - an initiatory month.  I should be happy, myself,\nto propose two months - three - an indefinite period, in fact - but\nI have a partner.  Mr. Jorkins.'\n\n'And the premium, sir,' I returned, 'is a thousand pounds?'\n\n'And the premium, Stamp included, is a thousand pounds,' said Mr.\nSpenlow.  'As I have mentioned to Miss Trotwood, I am actuated by\nno mercenary considerations; few men are less so, I believe; but\nMr. Jorkins has his opinions on these subjects, and I am bound to\nrespect Mr. Jorkins's opinions.  Mr. Jorkins thinks a thousand\npounds too little, in short.'\n\n'I suppose, sir,' said I, still desiring to spare my aunt, 'that it\nis not the custom here, if an articled clerk were particularly\nuseful, and made himself a perfect master of his profession' - I\ncould not help blushing, this looked so like praising myself - 'I\nsuppose it is not the custom, in the later years of his time, to\nallow him any -'\n\nMr. Spenlow, by a great effort, just lifted his head far enough out\nof his cravat to shake it, and answered, anticipating the word\n'salary':\n\n'No.  I will not say what consideration I might give to that point\nmyself, Mr. Copperfield, if I were unfettered.  Mr. Jorkins is\nimmovable.'\n\nI was quite dismayed by the idea of this terrible Jorkins.  But I\nfound out afterwards that he was a mild man of a heavy temperament,\nwhose place in the business was to keep himself in the background,\nand be constantly exhibited by name as the most obdurate and\nruthless of men.  If a clerk wanted his salary raised, Mr. Jorkins\nwouldn't listen to such a proposition.  If a client were slow to\nsettle his bill of costs, Mr. Jorkins was resolved to have it paid;\nand however painful these things might be (and always were) to the\nfeelings of Mr. Spenlow, Mr. Jorkins would have his bond.  The\nheart and hand of the good angel Spenlow would have been always\nopen, but for the restraining demon Jorkins.  As I have grown\nolder, I think I have had experience of some other houses doing\nbusiness on the principle of Spenlow and Jorkins!\n\nIt was settled that I should begin my month's probation as soon as\nI pleased, and that my aunt need neither remain in town nor return\nat its expiration, as the articles of agreement, of which I was to\nbe the subject, could easily be sent to her at home for her\nsignature.  When we had got so far, Mr. Spenlow offered to take me\ninto Court then and there, and show me what sort of place it was. \nAs I was willing enough to know, we went out with this object,\nleaving my aunt behind; who would trust herself, she said, in no\nsuch place, and who, I think, regarded all Courts of Law as a sort\nof powder-mills that might blow up at any time.\n\nMr. Spenlow conducted me through a paved courtyard formed of grave\nbrick houses, which I inferred, from the Doctors' names upon the\ndoors, to be the official abiding-places of the learned advocates\nof whom Steerforth had told me; and into a large dull room, not\nunlike a chapel to my thinking, on the left hand.  The upper part\nof this room was fenced off from the rest; and there, on the two\nsides of a raised platform of the horse-shoe form, sitting on easy\nold-fashioned dining-room chairs, were sundry gentlemen in red\ngowns and grey wigs, whom I found to be the Doctors aforesaid. \nBlinking over a little desk like a pulpit-desk, in the curve of the\nhorse-shoe, was an old gentleman, whom, if I had seen him in an\naviary, I should certainly have taken for an owl, but who, I\nlearned, was the presiding judge.  In the space within the\nhorse-shoe, lower than these, that is to say, on about the level of\nthe floor, were sundry other gentlemen, of Mr. Spenlow's rank, and\ndressed like him in black gowns with white fur upon them, sitting\nat a long green table.  Their cravats were in general stiff, I\nthought, and their looks haughty; but in this last respect I\npresently conceived I had done them an injustice, for when two or\nthree of them had to rise and answer a question of the presiding\ndignitary, I never saw anything more sheepish.  The public,\nrepresented by a boy with a comforter, and a shabby-genteel man\nsecretly eating crumbs out of his coat pockets, was warming itself\nat a stove in the centre of the Court.  The languid stillness of\nthe place was only broken by the chirping of this fire and by the\nvoice of one of the Doctors, who was wandering slowly through a\nperfect library of evidence, and stopping to put up, from time to\ntime, at little roadside inns of argument on the journey. \nAltogether, I have never, on any occasion, made one at such a\ncosey, dosey, old-fashioned, time-forgotten, sleepy-headed little\nfamily-party in all my life; and I felt it would be quite a\nsoothing opiate to belong to it in any character - except perhaps\nas a suitor.\n\nVery well satisfied with the dreamy nature of this retreat, I\ninformed Mr. Spenlow that I had seen enough for that time, and we\nrejoined my aunt; in company with whom I presently departed from\nthe Commons, feeling very young when I went out of Spenlow and\nJorkins's, on account of the clerks poking one another with their\npens to point me out.\n\nWe arrived at Lincoln's Inn Fields without any new adventures,\nexcept encountering an unlucky donkey in a costermonger's cart, who\nsuggested painful associations to my aunt.  We had another long\ntalk about my plans, when we were safely housed; and as I knew she\nwas anxious to get home, and, between fire, food, and pickpockets,\ncould never be considered at her ease for half-an-hour in London,\nI urged her not to be uncomfortable on my account, but to leave me\nto take care of myself.\n\n'I have not been here a week tomorrow, without considering that\ntoo, my dear,' she returned.  'There is a furnished little set of\nchambers to be let in the Adelphi, Trot, which ought to suit you to\na marvel.'\n\nWith this brief introduction, she produced from her pocket an\nadvertisement, carefully cut out of a newspaper, setting forth that\nin Buckingham Street in the Adelphi there was to be let furnished,\nwith a view of the river, a singularly desirable, and compact set\nof chambers, forming a genteel residence for a young gentleman, a\nmember of one of the Inns of Court, or otherwise, with immediate\npossession.  Terms moderate, and could be taken for a month only,\nif required.\n\n'Why, this is the very thing, aunt!' said I, flushed with the\npossible dignity of living in chambers.\n\n'Then come,' replied my aunt, immediately resuming the bonnet she\nhad a minute before laid aside.  'We'll go and look at 'em.'\n\nAway we went.  The advertisement directed us to apply to Mrs. Crupp\non the premises, and we rung the area bell, which we supposed to\ncommunicate with Mrs. Crupp.  It was not until we had rung three or\nfour times that we could prevail on Mrs. Crupp to communicate with\nus, but at last she appeared, being a stout lady with a flounce of\nflannel petticoat below a nankeen gown.\n\n'Let us see these chambers of yours, if you please, ma'am,' said my\naunt.\n\n'For this gentleman?' said Mrs. Crupp, feeling in her pocket for\nher keys.\n\n'Yes, for my nephew,' said my aunt.\n\n'And a sweet set they is for sich!' said Mrs. Crupp.\n\nSo we went upstairs.\n\nThey were on the top of the house - a great point with my aunt,\nbeing near the fire-escape - and consisted of a little half-blind\nentry where you could see hardly anything, a little stone-blind\npantry where you could see nothing at all, a sitting-room, and a\nbedroom.  The furniture was rather faded, but quite good enough for\nme; and, sure enough, the river was outside the windows.\n\nAs I was delighted with the place, my aunt and Mrs. Crupp withdrew\ninto the pantry to discuss the terms, while I remained on the\nsitting-room sofa, hardly daring to think it possible that I could\nbe destined to live in such a noble residence.  After a single\ncombat of some duration they returned, and I saw, to my joy, both\nin Mrs. Crupp's countenance and in my aunt's, that the deed was\ndone.\n\n'Is it the last occupant's furniture?' inquired my aunt.\n\n'Yes, it is, ma'am,' said Mrs. Crupp.\n\n'What's become of him?' asked my aunt.\n\nMrs. Crupp was taken with a troublesome cough, in the midst of\nwhich she articulated with much difficulty.  'He was took ill here,\nma'am, and - ugh! ugh! ugh! dear me! - and he died!'\n\n'Hey!  What did he die of?' asked my aunt.\n\n'Well, ma'am, he died of drink,' said Mrs. Crupp, in confidence. \n'And smoke.'\n\n'Smoke?  You don't mean chimneys?' said my aunt.\n\n'No, ma'am,' returned Mrs. Crupp.  'Cigars and pipes.'\n\n'That's not catching, Trot, at any rate,' remarked my aunt, turning\nto me.\n\n'No, indeed,' said I.\n\nIn short, my aunt, seeing how enraptured I was with the premises,\ntook them for a month, with leave to remain for twelve months when\nthat time was out.  Mrs. Crupp was to find linen, and to cook;\nevery other necessary was already provided; and Mrs. Crupp\nexpressly intimated that she should always yearn towards me as a\nson.  I was to take possession the day after tomorrow, and Mrs.\nCrupp said, thank Heaven she had now found summun she could care\nfor!\n\nOn our way back, my aunt informed me how she confidently trusted\nthat the life I was now to lead would make me firm and\nself-reliant, which was all I wanted.  She repeated this several\ntimes next day, in the intervals of our arranging for the\ntransmission of my clothes and books from Mr. Wickfield's; relative\nto which, and to all my late holiday, I wrote a long letter to\nAgnes, of which my aunt took charge, as she was to leave on the\nsucceeding day.  Not to lengthen these particulars, I need only\nadd, that she made a handsome provision for all my possible wants\nduring my month of trial; that Steerforth, to my great\ndisappointment and hers too, did not make his appearance before she\nwent away; that I saw her safely seated in the Dover coach,\nexulting in the coming discomfiture of the vagrant donkeys, with\nJanet at her side; and that when the coach was gone, I turned my\nface to the Adelphi, pondering on the old days when I used to roam\nabout its subterranean arches, and on the happy changes which had\nbrought me to the surface.\n\n\n\nCHAPTER 24\nMY FIRST DISSIPATION\n\n\nIt was a wonderfully fine thing to have that lofty castle to\nmyself, and to feel, when I shut my outer door, like Robinson\nCrusoe, when he had got into his fortification, and pulled his\nladder up after him.  It was a wonderfully fine thing to walk about\ntown with the key of my house in my pocket, and to know that I\ncould ask any fellow to come home, and make quite sure of its being\ninconvenient to nobody, if it were not so to me.  It was a\nwonderfully fine thing to let myself in and out, and to come and go\nwithout a word to anyone, and to ring Mrs. Crupp up, gasping, from\nthe depths of the earth, when I wanted her - and when she was\ndisposed to come.  All this, I say, was wonderfully fine; but I\nmust say, too, that there were times when it was very dreary.\n\nIt was fine in the morning, particularly in the fine mornings.  It\nlooked a very fresh, free life, by daylight: still fresher, and\nmore free, by sunlight.  But as the day declined, the life seemed\nto go down too.  I don't know how it was; it seldom looked well by\ncandle-light.  I wanted somebody to talk to, then.  I missed Agnes. \nI found a tremendous blank, in the place of that smiling repository\nof my confidence.  Mrs. Crupp appeared to be a long way off.  I\nthought about my predecessor, who had died of drink and smoke; and\nI could have wished he had been so good as to live, and not bother\nme with his decease.\n\nAfter two days and nights, I felt as if I had lived there for a\nyear, and yet I was not an hour older, but was quite as much\ntormented by my own youthfulness as ever.\n\nSteerforth not yet appearing, which induced me to apprehend that he\nmust be ill, I left the Commons early on the third day, and walked\nout to Highgate.  Mrs. Steerforth was very glad to see me, and said\nthat he had gone away with one of his Oxford friends to see another\nwho lived near St. Albans, but that she expected him to return\ntomorrow.  I was so fond of him, that I felt quite jealous of his\nOxford friends.\n\nAs she pressed me to stay to dinner, I remained, and I believe we\ntalked about nothing but him all day.  I told her how much the\npeople liked him at Yarmouth, and what a delightful companion he\nhad been.  Miss Dartle was full of hints and mysterious questions,\nbut took a great interest in all our proceedings there, and said,\n'Was it really though?' and so forth, so often, that she got\neverything out of me she wanted to know.  Her appearance was\nexactly what I have described it, when I first saw her; but the\nsociety of the two ladies was so agreeable, and came so natural to\nme, that I felt myself falling a little in love with her.  I could\nnot help thinking, several times in the course of the evening, and\nparticularly when I walked home at night, what delightful company\nshe would be in Buckingham Street.\n\nI was taking my coffee and roll in the morning, before going to the\nCommons - and I may observe in this place that it is surprising how\nmuch coffee Mrs. Crupp used, and how weak it was, considering -\nwhen Steerforth himself walked in, to my unbounded joy.\n\n'My dear Steerforth,' cried I, 'I began to think I should never see\nyou again!'\n\n'I was carried off, by force of arms,' said Steerforth, 'the very\nnext morning after I got home.  Why, Daisy, what a rare old\nbachelor you are here!'\n\nI showed him over the establishment, not omitting the pantry, with\nno little pride, and he commended it highly.  'I tell you what, old\nboy,' he added, 'I shall make quite a town-house of this place,\nunless you give me notice to quit.'\n\nThis was a delightful hearing.  I told him if he waited for that,\nhe would have to wait till doomsday.\n\n'But you shall have some breakfast!' said I, with my hand on the\nbell-rope, 'and Mrs. Crupp shall make you some fresh coffee, and\nI'll toast you some bacon in a bachelor's Dutch-oven, that I have\ngot here.'\n\n'No, no!' said Steerforth.  'Don't ring!  I can't!  I am going to\nbreakfast with one of these fellows who is at the Piazza Hotel, in\nCovent Garden.'\n\n'But you'll come back to dinner?' said I.\n\n'I can't, upon my life.  There's nothing I should like better, but\nI must remain with these two fellows.  We are all three off\ntogether tomorrow morning.'\n\n'Then bring them here to dinner,' I returned.  'Do you think they\nwould come?'\n\n'Oh! they would come fast enough,' said Steerforth; 'but we should\ninconvenience you.  You had better come and dine with us\nsomewhere.'\n\nI would not by any means consent to this, for it occurred to me\nthat I really ought to have a little house-warming, and that there\nnever could be a better opportunity.  I had a new pride in my rooms\nafter his approval of them, and burned with a desire to develop\ntheir utmost resources.  I therefore made him promise positively in\nthe names of his two friends, and we appointed six o'clock as the\ndinner-hour.\n\nWhen he was gone, I rang for Mrs. Crupp, and acquainted her with my\ndesperate design.  Mrs. Crupp said, in the first place, of course\nit was well known she couldn't be expected to wait, but she knew a\nhandy young man, who she thought could be prevailed upon to do it,\nand whose terms would be five shillings, and what I pleased.  I\nsaid, certainly we would have him.  Next Mrs. Crupp said it was\nclear she couldn't be in two places at once (which I felt to be\nreasonable), and that 'a young gal' stationed in the pantry with a\nbedroom candle, there never to desist from washing plates, would be\nindispensable.  I said, what would be the expense of this young\nfemale? and Mrs. Crupp said she supposed eighteenpence would\nneither make me nor break me.  I said I supposed not; and THAT was\nsettled.  Then Mrs. Crupp said, Now about the dinner.\n\nIt was a remarkable instance of want of forethought on the part of\nthe ironmonger who had made Mrs. Crupp's kitchen fireplace, that it\nwas capable of cooking nothing but chops and mashed potatoes.  As\nto a fish-kittle, Mrs. Crupp said, well! would I only come and look\nat the range?  She couldn't say fairer than that.  Would I come and\nlook at it?  As I should not have been much the wiser if I HAD\nlooked at it, I declined, and said, 'Never mind fish.'  But Mrs.\nCrupp said, Don't say that; oysters was in, why not them?  So THAT\nwas settled.  Mrs. Crupp then said what she would recommend would\nbe this.  A pair of hot roast fowls - from the pastry-cook's; a\ndish of stewed beef, with vegetables - from the pastry-cook's; two\nlittle corner things, as a raised pie and a dish of kidneys - from\nthe pastrycook's; a tart, and (if I liked) a shape of jelly - from\nthe pastrycook's.  This, Mrs. Crupp said, would leave her at full\nliberty to concentrate her mind on the potatoes, and to serve up\nthe cheese and celery as she could wish to see it done.\n\nI acted on Mrs. Crupp's opinion, and gave the order at the\npastry-cook's myself.  Walking along the Strand, afterwards, and\nobserving a hard mottled substance in the window of a ham and beef\nshop, which resembled marble, but was labelled 'Mock Turtle', I\nwent in and bought a slab of it, which I have since seen reason to\nbelieve would have sufficed for fifteen people.  This preparation,\nMrs. Crupp, after some difficulty, consented to warm up; and it\nshrunk so much in a liquid state, that we found it what Steerforth\ncalled 'rather a tight fit' for four.\n\nThese preparations happily completed, I bought a little dessert in\nCovent Garden Market, and gave a rather extensive order at a retail\nwine-merchant's in that vicinity.  When I came home in the\nafternoon, and saw the bottles drawn up in a square on the pantry\nfloor, they looked so numerous (though there were two missing,\nwhich made Mrs. Crupp very uncomfortable), that I was absolutely\nfrightened at them.\n\nOne of Steerforth's friends was named Grainger, and the other\nMarkham.  They were both very gay and lively fellows; Grainger,\nsomething older than Steerforth; Markham, youthful-looking, and I\nshould say not more than twenty.  I observed that the latter always\nspoke of himself indefinitely, as 'a man', and seldom or never in\nthe first person singular.\n\n'A man might get on very well here, Mr. Copperfield,' said Markham\n- meaning himself.\n\n'It's not a bad situation,' said I, 'and the rooms are really\ncommodious.'\n\n'I hope you have both brought appetites with you?' said Steerforth.\n\n'Upon my honour,' returned Markham, 'town seems to sharpen a man's\nappetite.  A man is hungry all day long.  A man is perpetually\neating.'\n\nBeing a little embarrassed at first, and feeling much too young to\npreside, I made Steerforth take the head of the table when dinner\nwas announced, and seated myself opposite to him.  Everything was\nvery good; we did not spare the wine; and he exerted himself so\nbrilliantly to make the thing pass off well, that there was no\npause in our festivity.  I was not quite such good company during\ndinner as I could have wished to be, for my chair was opposite the\ndoor, and my attention was distracted by observing that the handy\nyoung man went out of the room very often, and that his shadow\nalways presented itself, immediately afterwards, on the wall of the\nentry, with a bottle at its mouth.  The 'young gal' likewise\noccasioned me some uneasiness: not so much by neglecting to wash\nthe plates, as by breaking them.  For being of an inquisitive\ndisposition, and unable to confine herself (as her positive\ninstructions were) to the pantry, she was constantly peering in at\nus, and constantly imagining herself detected; in which belief, she\nseveral times retired upon the plates (with which she had carefully\npaved the floor), and did a great deal of destruction.\n\nThese, however, were small drawbacks, and easily forgotten when the\ncloth was cleared, and the dessert put on the table; at which\nperiod of the entertainment the handy young man was discovered to\nbe speechless.  Giving him private directions to seek the society\nof Mrs. Crupp, and to remove the 'young gal' to the basement also,\nI abandoned myself to enjoyment.\n\nI began, by being singularly cheerful and light-hearted; all sorts\nof half-forgotten things to talk about, came rushing into my mind,\nand made me hold forth in a most unwonted manner.  I laughed\nheartily at my own jokes, and everybody else's; called Steerforth\nto order for not passing the wine; made several engagements to go\nto Oxford; announced that I meant to have a dinner-party exactly\nlike that, once a week, until further notice; and madly took so\nmuch snuff out of Grainger's box, that I was obliged to go into the\npantry, and have a private fit of sneezing ten minutes long.\n\nI went on, by passing the wine faster and faster yet, and\ncontinually starting up with a corkscrew to open more wine, long\nbefore any was needed.  I proposed Steerforth's health.  I said he\nwas my dearest friend, the protector of my boyhood, and the\ncompanion of my prime.  I said I was delighted to propose his\nhealth.  I said I owed him more obligations than I could ever\nrepay, and held him in a higher admiration than I could ever\nexpress.  I finished by saying, 'I'll give you Steerforth!  God\nbless him!  Hurrah!' We gave him three times three, and another,\nand a good one to finish with.  I broke my glass in going round the\ntable to shake hands with him, and I said (in two words)\n'Steerforth - you'retheguidingstarofmyexistence.'\n\nI went on, by finding suddenly that somebody was in the middle of\na song.  Markham was the singer, and he sang 'When the heart of a\nman is depressed with care'.  He said, when he had sung it, he\nwould give us 'Woman!' I took objection to that, and I couldn't\nallow it.  I said it was not a respectful way of proposing the\ntoast, and I would never permit that toast to be drunk in my house\notherwise than as 'The Ladies!' I was very high with him, mainly I\nthink because I saw Steerforth and Grainger laughing at me - or at\nhim - or at both of us.  He said a man was not to be dictated to. \nI said a man was.  He said a man was not to be insulted, then.  I\nsaid he was right there - never under my roof, where the Lares were\nsacred, and the laws of hospitality paramount.  He said it was no\nderogation from a man's dignity to confess that I was a devilish\ngood fellow.  I instantly proposed his health.\n\nSomebody was smoking.  We were all smoking.  I was smoking, and\ntrying to suppress a rising tendency to shudder.  Steerforth had\nmade a speech about me, in the course of which I had been affected\nalmost to tears.  I returned thanks, and hoped the present company\nwould dine with me tomorrow, and the day after - each day at five\no'clock, that we might enjoy the pleasures of conversation and\nsociety through a long evening.  I felt called upon to propose an\nindividual.  I would give them my aunt.  Miss Betsey Trotwood, the\nbest of her sex!\n\nSomebody was leaning out of my bedroom window, refreshing his\nforehead against the cool stone of the parapet, and feeling the air\nupon his face.  It was myself.  I was addressing myself as\n'Copperfield', and saying, 'Why did you try to smoke?  You might\nhave known you couldn't do it.'  Now, somebody was unsteadily\ncontemplating his features in the looking-glass.  That was I too. \nI was very pale in the looking-glass; my eyes had a vacant\nappearance; and my hair - only my hair, nothing else - looked\ndrunk.\n\nSomebody said to me, 'Let us go to the theatre, Copperfield!' There\nwas no bedroom before me, but again the jingling table covered with\nglasses; the lamp; Grainger on my right hand, Markham on my left,\nand Steerforth opposite - all sitting in a mist, and a long way\noff.  The theatre?  To be sure.  The very thing.  Come along!  But\nthey must excuse me if I saw everybody out first, and turned the\nlamp off - in case of fire.\n\nOwing to some confusion in the dark, the door was gone.  I was\nfeeling for it in the window-curtains, when Steerforth, laughing,\ntook me by the arm and led me out.  We went downstairs, one behind\nanother.  Near the bottom, somebody fell, and rolled down. \nSomebody else said it was Copperfield.  I was angry at that false\nreport, until, finding myself on my back in the passage, I began to\nthink there might be some foundation for it.\n\nA very foggy night, with great rings round the lamps in the\nstreets!  There was an indistinct talk of its being wet.  I\nconsidered it frosty.  Steerforth dusted me under a lamp-post, and\nput my hat into shape, which somebody produced from somewhere in a\nmost extraordinary manner, for I hadn't had it on before. \nSteerforth then said, 'You are all right, Copperfield, are you\nnot?' and I told him, 'Neverberrer.'\n\nA man, sitting in a pigeon-hole-place, looked out of the fog, and\ntook money from somebody, inquiring if I was one of the gentlemen\npaid for, and appearing rather doubtful (as I remember in the\nglimpse I had of him) whether to take the money for me or not. \nShortly afterwards, we were very high up in a very hot theatre,\nlooking down into a large pit, that seemed to me to smoke; the\npeople with whom it was crammed were so indistinct.  There was a\ngreat stage, too, looking very clean and smooth after the streets;\nand there were people upon it, talking about something or other,\nbut not at all intelligibly.  There was an abundance of bright\nlights, and there was music, and there were ladies down in the\nboxes, and I don't know what more.  The whole building looked to me\nas if it were learning to swim; it conducted itself in such an\nunaccountable manner, when I tried to steady it.\n\nOn somebody's motion, we resolved to go downstairs to the\ndress-boxes, where the ladies were.  A gentleman lounging, full\ndressed, on a sofa, with an opera-glass in his hand, passed before\nmy view, and also my own figure at full length in a glass.  Then I\nwas being ushered into one of these boxes, and found myself saying\nsomething as I sat down, and people about me crying 'Silence!' to\nsomebody, and ladies casting indignant glances at me, and - what!\nyes! - Agnes, sitting on the seat before me, in the same box, with\na lady and gentleman beside her, whom I didn't know.  I see her\nface now, better than I did then, I dare say, with its indelible\nlook of regret and wonder turned upon me.\n\n'Agnes!' I said, thickly, 'Lorblessmer!  Agnes!'\n\n'Hush!  Pray!' she answered, I could not conceive why.  'You\ndisturb the company.  Look at the stage!'\n\nI tried, on her injunction, to fix it, and to hear something of\nwhat was going on there, but quite in vain.  I looked at her again\nby and by, and saw her shrink into her corner, and put her gloved\nhand to her forehead.\n\n'Agnes!' I said.  'I'mafraidyou'renorwell.'\n\n'Yes, yes.  Do not mind me, Trotwood,' she returned.  'Listen!  Are\nyou going away soon?'\n\n'Amigoarawaysoo?' I repeated.\n\n'Yes.'\n\nI had a stupid intention of replying that I was going to wait, to\nhand her downstairs.  I suppose I expressed it, somehow; for after\nshe had looked at me attentively for a little while, she appeared\nto understand, and replied in a low tone:\n\n'I know you will do as I ask you, if I tell you I am very earnest\nin it.  Go away now, Trotwood, for my sake, and ask your friends to\ntake you home.'\n\nShe had so far improved me, for the time, that though I was angry\nwith her, I felt ashamed, and with a short 'Goori!' (which I\nintended for 'Good night!') got up and went away.  They followed,\nand I stepped at once out of the box-door into my bedroom, where\nonly Steerforth was with me, helping me to undress, and where I was\nby turns telling him that Agnes was my sister, and adjuring him to\nbring the corkscrew, that I might open another bottle of wine.\n\nHow somebody, lying in my bed, lay saying and doing all this over\nagain, at cross purposes, in a feverish dream all night - the bed\na rocking sea that was never still!  How, as that somebody slowly\nsettled down into myself, did I begin to parch, and feel as if my\nouter covering of skin were a hard board; my tongue the bottom of\nan empty kettle, furred with long service, and burning up over a\nslow fire; the palms of my hands, hot plates of metal which no ice\ncould cool!\n\nBut the agony of mind, the remorse, and shame I felt when I became\nconscious next day!  My horror of having committed a thousand\noffences I had forgotten, and which nothing could ever expiate - my\nrecollection of that indelible look which Agnes had given me - the\ntorturing impossibility of communicating with her, not knowing,\nBeast that I was, how she came to be in London, or where she stayed\n- my disgust of the very sight of the room where the revel had been\nheld - my racking head - the smell of smoke, the sight of glasses,\nthe impossibility of going out, or even getting up!  Oh, what a day\nit was!\n\nOh, what an evening, when I sat down by my fire to a basin of\nmutton broth, dimpled all over with fat, and thought I was going\nthe way of my predecessor, and should succeed to his dismal story\nas well as to his chambers, and had half a mind to rush express to\nDover and reveal all!  What an evening, when Mrs. Crupp, coming in\nto take away the broth-basin, produced one kidney on a cheese-plate\nas the entire remains of yesterday's feast, and I was really\ninclined to fall upon her nankeen breast and say, in heartfelt\npenitence, 'Oh, Mrs. Crupp, Mrs. Crupp, never mind the broken\nmeats!  I am very miserable!' - only that I doubted, even at that\npass, if Mrs. Crupp were quite the sort of woman to confide in!\n\n\nCHAPTER 25\nGOOD AND BAD ANGELS\n\n\nI was going out at my door on the morning after that deplorable day\nof headache, sickness, and repentance, with an odd confusion in my\nmind relative to the date of my dinner-party, as if a body of\nTitans had taken an enormous lever and pushed the day before\nyesterday some months back, when I saw a ticket-porter coming\nupstairs, with a letter in his hand.  He was taking his time about\nhis errand, then; but when he saw me on the top of the staircase,\nlooking at him over the banisters, he swung into a trot, and came\nup panting as if he had run himself into a state of exhaustion.\n\n'T. Copperfield, Esquire,' said the ticket-porter, touching his hat\nwith his little cane.\n\nI could scarcely lay claim to the name: I was so disturbed by the\nconviction that the letter came from Agnes.  However, I told him I\nwas T. Copperfield, Esquire, and he believed it, and gave me the\nletter, which he said required an answer.  I shut him out on the\nlanding to wait for the answer, and went into my chambers again, in\nsuch a nervous state that I was fain to lay the letter down on my\nbreakfast table, and familiarize myself with the outside of it a\nlittle, before I could resolve to break the seal.\n\nI found, when I did open it, that it was a very kind note,\ncontaining no reference to my condition at the theatre.  All it\nsaid was, 'My dear Trotwood.  I am staying at the house of papa's\nagent, Mr. Waterbrook, in Ely Place, Holborn.  Will you come and\nsee me today, at any time you like to appoint?  Ever yours\naffectionately, AGNES.  '\n\nIt took me such a long time to write an answer at all to my\nsatisfaction, that I don't know what the ticket-porter can have\nthought, unless he thought I was learning to write.  I must have\nwritten half-a-dozen answers at least.  I began one, 'How can I\never hope, my dear Agnes, to efface from your remembrance the\ndisgusting impression' - there I didn't like it, and then I tore it\nup.  I began another, 'Shakespeare has observed, my dear Agnes, how\nstrange it is that a man should put an enemy into his mouth' - that\nreminded me of Markham, and it got no farther.  I even tried\npoetry.  I began one note, in a six-syllable line, 'Oh, do not\nremember' - but that associated itself with the fifth of November,\nand became an absurdity.  After many attempts, I wrote, 'My dear\nAgnes.  Your letter is like you, and what could I say of it that\nwould be higher praise than that?  I will come at four o'clock. \nAffectionately and sorrowfully, T.C.'  With this missive (which I\nwas in twenty minds at once about recalling, as soon as it was out\nof my hands), the ticket-porter at last departed.\n\nIf the day were half as tremendous to any other professional\ngentleman in Doctors' Commons as it was to me, I sincerely believe\nhe made some expiation for his share in that rotten old\necclesiastical cheese.  Although I left the office at half past\nthree, and was prowling about the place of appointment within a few\nminutes afterwards, the appointed time was exceeded by a full\nquarter of an hour, according to the clock of St. Andrew's,\nHolborn, before I could muster up sufficient desperation to pull\nthe private bell-handle let into the left-hand door-post of Mr.\nWaterbrook's house.\n\nThe professional business of Mr. Waterbrook's establishment was\ndone on the ground-floor, and the genteel business (of which there\nwas a good deal) in the upper part of the building.  I was shown\ninto a pretty but rather close drawing-room, and there sat Agnes,\nnetting a purse.\n\nShe looked so quiet and good, and reminded me so strongly of my\nairy fresh school days at Canterbury, and the sodden, smoky, stupid\nwretch I had been the other night, that, nobody being by, I yielded\nto my self-reproach and shame, and - in short, made a fool of\nmyself.  I cannot deny that I shed tears.  To this hour I am\nundecided whether it was upon the whole the wisest thing I could\nhave done, or the most ridiculous.\n\n'If it had been anyone but you, Agnes,' said I, turning away my\nhead, 'I should not have minded it half so much.  But that it\nshould have been you who saw me!  I almost wish I had been dead,\nfirst.'\n\nShe put her hand - its touch was like no other hand - upon my arm\nfor a moment; and I felt so befriended and comforted, that I could\nnot help moving it to my lips, and gratefully kissing it.\n\n'Sit down,' said Agnes, cheerfully.  'Don't be unhappy, Trotwood. \nIf you cannot confidently trust me, whom will you trust?'\n\n'Ah, Agnes!' I returned.  'You are my good Angel!'\n\nShe smiled rather sadly, I thought, and shook her head.\n\n'Yes, Agnes, my good Angel!  Always my good Angel!'\n\n'If I were, indeed, Trotwood,' she returned, 'there is one thing\nthat I should set my heart on very much.'\n\nI looked at her inquiringly; but already with a foreknowledge of\nher meaning.\n\n'On warning you,' said Agnes, with a steady glance, 'against your\nbad Angel.'\n\n'My dear Agnes,' I began, 'if you mean Steerforth -'\n\n'I do, Trotwood,' she returned.\n'Then, Agnes, you wrong him very much.  He my bad Angel, or\nanyone's!  He, anything but a guide, a support, and a friend to me!\nMy dear Agnes!  Now, is it not unjust, and unlike you, to judge him\nfrom what you saw of me the other night?'\n\n'I do not judge him from what I saw of you the other night,' she\nquietly replied.\n\n'From what, then?'\n\n'From many things - trifles in themselves, but they do not seem to\nme to be so, when they are put together.  I judge him, partly from\nyour account of him, Trotwood, and your character, and the\ninfluence he has over you.'\n\nThere was always something in her modest voice that seemed to touch\na chord within me, answering to that sound alone.  It was always\nearnest; but when it was very earnest, as it was now, there was a\nthrill in it that quite subdued me.  I sat looking at her as she\ncast her eyes down on her work; I sat seeming still to listen to\nher; and Steerforth, in spite of all my attachment to him, darkened\nin that tone.\n\n'It is very bold in me,' said Agnes, looking up again, 'who have\nlived in such seclusion, and can know so little of the world, to\ngive you my advice so confidently, or even to have this strong\nopinion.  But I know in what it is engendered, Trotwood, - in how\ntrue a remembrance of our having grown up together, and in how true\nan interest in all relating to you.  It is that which makes me\nbold.  I am certain that what I say is right.  I am quite sure it\nis.  I feel as if it were someone else speaking to you, and not I,\nwhen I caution you that you have made a dangerous friend.'\n\nAgain I looked at her, again I listened to her after she was\nsilent, and again his image, though it was still fixed in my heart,\ndarkened.\n\n'I am not so unreasonable as to expect,' said Agnes, resuming her\nusual tone, after a little while, 'that you will, or that you can,\nat once, change any sentiment that has become a conviction to you;\nleast of all a sentiment that is rooted in your trusting\ndisposition.  You ought not hastily to do that.  I only ask you,\nTrotwood, if you ever think of me - I mean,' with a quiet smile,\nfor I was going to interrupt her, and she knew why, 'as often as\nyou think of me - to think of what I have said.  Do you forgive me\nfor all this?'\n\n'I will forgive you, Agnes,' I replied, 'when you come to do\nSteerforth justice, and to like him as well as I do.'\n\n'Not until then?' said Agnes.\n\nI saw a passing shadow on her face when I made this mention of him,\nbut she returned my smile, and we were again as unreserved in our\nmutual confidence as of old.\n\n'And when, Agnes,' said I, 'will you forgive me the other night?'\n\n'When I recall it,' said Agnes.\n\nShe would have dismissed the subject so, but I was too full of it\nto allow that, and insisted on telling her how it happened that I\nhad disgraced myself, and what chain of accidental circumstances\nhad had the theatre for its final link.  It was a great relief to\nme to do this, and to enlarge on the obligation that I owed to\nSteerforth for his care of me when I was unable to take care of\nmyself.\n\n'You must not forget,' said Agnes, calmly changing the conversation\nas soon as I had concluded, 'that you are always to tell me, not\nonly when you fall into trouble, but when you fall in love.  Who\nhas succeeded to Miss Larkins, Trotwood?'\n\n'No one, Agnes.'\n\n'Someone, Trotwood,' said Agnes, laughing, and holding up her\nfinger.\n\n'No, Agnes, upon my word!  There is a lady, certainly, at Mrs.\nSteerforth's house, who is very clever, and whom I like to talk to\n- Miss Dartle - but I don't adore her.'\n\nAgnes laughed again at her own penetration, and told me that if I\nwere faithful to her in my confidence she thought she should keep\na little register of my violent attachments, with the date,\nduration, and termination of each, like the table of the reigns of\nthe kings and queens, in the History of England.  Then she asked me\nif I had seen Uriah.\n\n'Uriah Heep?' said I.  'No.  Is he in London?'\n\n'He comes to the office downstairs, every day,' returned Agnes. \n'He was in London a week before me.  I am afraid on disagreeable\nbusiness, Trotwood.'\n\n'On some business that makes you uneasy, Agnes, I see,' said I. \n'What can that be?'\n\nAgnes laid aside her work, and replied, folding her hands upon one\nanother, and looking pensively at me out of those beautiful soft\neyes of hers:\n\n'I believe he is going to enter into partnership with papa.'\n\n'What?  Uriah?  That mean, fawning fellow, worm himself into such\npromotion!' I cried, indignantly.  'Have you made no remonstrance\nabout it, Agnes?  Consider what a connexion it is likely to be. \nYou must speak out.  You must not allow your father to take such a\nmad step.  You must prevent it, Agnes, while there's time.'\n\nStill looking at me, Agnes shook her head while I was speaking,\nwith a faint smile at my warmth: and then replied:\n\n'You remember our last conversation about papa?  It was not long\nafter that - not more than two or three days - when he gave me the\nfirst intimation of what I tell you.  It was sad to see him\nstruggling between his desire to represent it to me as a matter of\nchoice on his part, and his inability to conceal that it was forced\nupon him.  I felt very sorry.'\n\n'Forced upon him, Agnes!  Who forces it upon him?'\n\n'Uriah,' she replied, after a moment's hesitation, 'has made\nhimself indispensable to papa.  He is subtle and watchful.  He has\nmastered papa's weaknesses, fostered them, and taken advantage of\nthem, until - to say all that I mean in a word, Trotwood, - until\npapa is afraid of him.'\n\nThere was more that she might have said; more that she knew, or\nthat she suspected; I clearly saw.  I could not give her pain by\nasking what it was, for I knew that she withheld it from me, to\nspare her father.  It had long been going on to this, I was\nsensible: yes, I could not but feel, on the least reflection, that\nit had been going on to this for a long time.  I remained silent.\n\n'His ascendancy over papa,' said Agnes, 'is very great.  He\nprofesses humility and gratitude - with truth, perhaps: I hope so\n- but his position is really one of power, and I fear he makes a\nhard use of his power.'\n\nI said he was a hound, which, at the moment, was a great\nsatisfaction to me.\n\n'At the time I speak of, as the time when papa spoke to me,'\npursued Agnes, 'he had told papa that he was going away; that he\nwas very sorry, and unwilling to leave, but that he had better\nprospects.  Papa was very much depressed then, and more bowed down\nby care than ever you or I have seen him; but he seemed relieved by\nthis expedient of the partnership, though at the same time he\nseemed hurt by it and ashamed of it.'\n\n'And how did you receive it, Agnes?'\n\n'I did, Trotwood,' she replied, 'what I hope was right.  Feeling\nsure that it was necessary for papa's peace that the sacrifice\nshould be made, I entreated him to make it.  I said it would\nlighten the load of his life - I hope it will! - and that it would\ngive me increased opportunities of being his companion.  Oh,\nTrotwood!' cried Agnes, putting her hands before her face, as her\ntears started on it, 'I almost feel as if I had been papa's enemy,\ninstead of his loving child.  For I know how he has altered, in his\ndevotion to me.  I know how he has narrowed the circle of his\nsympathies and duties, in the concentration of his whole mind upon\nme.  I know what a multitude of things he has shut out for my sake,\nand how his anxious thoughts of me have shadowed his life, and\nweakened his strength and energy, by turning them always upon one\nidea.  If I could ever set this right!  If I could ever work out\nhis restoration, as I have so innocently been the cause of his\ndecline!'\n\nI had never before seen Agnes cry.  I had seen tears in her eyes\nwhen I had brought new honours home from school, and I had seen\nthem there when we last spoke about her father, and I had seen her\nturn her gentle head aside when we took leave of one another; but\nI had never seen her grieve like this.  It made me so sorry that I\ncould only say, in a foolish, helpless manner, 'Pray, Agnes, don't!\nDon't, my dear sister!'\n\nBut Agnes was too superior to me in character and purpose, as I\nknow well now, whatever I might know or not know then, to be long\nin need of my entreaties.  The beautiful, calm manner, which makes\nher so different in my remembrance from everybody else, came back\nagain, as if a cloud had passed from a serene sky.\n\n'We are not likely to remain alone much longer,' said Agnes, 'and\nwhile I have an opportunity, let me earnestly entreat you,\nTrotwood, to be friendly to Uriah.  Don't repel him.  Don't resent\n(as I think you have a general disposition to do) what may be\nuncongenial to you in him.  He may not deserve it, for we know no\ncertain ill of him.  In any case, think first of papa and me!'\n\nAgnes had no time to say more, for the room door opened, and Mrs.\nWaterbrook, who was a large lady - or who wore a large dress: I\ndon't exactly know which, for I don't know which was dress and\nwhich was lady - came sailing in.  I had a dim recollection of\nhaving seen her at the theatre, as if I had seen her in a pale\nmagic lantern; but she appeared to remember me perfectly, and still\nto suspect me of being in a state of intoxication.\n\nFinding by degrees, however, that I was sober, and (I hope) that I\nwas a modest young gentleman, Mrs. Waterbrook softened towards me\nconsiderably, and inquired, firstly, if I went much into the parks,\nand secondly, if I went much into society.  On my replying to both\nthese questions in the negative, it occurred to me that I fell\nagain in her good opinion; but she concealed the fact gracefully,\nand invited me to dinner next day.  I accepted the invitation, and\ntook my leave, making a call on Uriah in the office as I went out,\nand leaving a card for him in his absence.\n\nWhen I went to dinner next day, and on the street door being\nopened, plunged into a vapour-bath of haunch of mutton, I divined\nthat I was not the only guest, for I immediately identified the\nticket-porter in disguise, assisting the family servant, and\nwaiting at the foot of the stairs to carry up my name.  He looked,\nto the best of his ability, when he asked me for it confidentially,\nas if he had never seen me before; but well did I know him, and\nwell did he know me.  Conscience made cowards of us both.\n\nI found Mr. Waterbrook to be a middle-aged gentleman, with a short\nthroat, and a good deal of shirt-collar, who only wanted a black\nnose to be the portrait of a pug-dog.  He told me he was happy to\nhave the honour of making my acquaintance; and when I had paid my\nhomage to Mrs. Waterbrook, presented me, with much ceremony, to a\nvery awful lady in a black velvet dress, and a great black velvet\nhat, whom I remember as looking like a near relation of Hamlet's -\nsay his aunt.\n\nMrs. Henry Spiker was this lady's name; and her husband was there\ntoo: so cold a man, that his head, instead of being grey, seemed to\nbe sprinkled with hoar-frost.  Immense deference was shown to the\nHenry Spikers, male and female; which Agnes told me was on account\nof Mr. Henry Spiker being solicitor to something Or to Somebody, I\nforget what or which, remotely connected with the Treasury.\n\nI found Uriah Heep among the company, in a suit of black, and in\ndeep humility.  He told me, when I shook hands with him, that he\nwas proud to be noticed by me, and that he really felt obliged to\nme for my condescension.  I could have wished he had been less\nobliged to me, for he hovered about me in his gratitude all the\nrest of the evening; and whenever I said a word to Agnes, was sure,\nwith his shadowless eyes and cadaverous face, to be looking gauntly\ndown upon us from behind.\n\nThere were other guests - all iced for the occasion, as it struck\nme, like the wine.  But there was one who attracted my attention\nbefore he came in, on account of my hearing him announced as Mr.\nTraddles!  My mind flew back to Salem House; and could it be Tommy,\nI thought, who used to draw the skeletons!\n\nI looked for Mr. Traddles with unusual interest.  He was a sober,\nsteady-looking young man of retiring manners, with a comic head of\nhair, and eyes that were rather wide open; and he got into an\nobscure corner so soon, that I had some difficulty in making him\nout.  At length I had a good view of him, and either my vision\ndeceived me, or it was the old unfortunate Tommy.\n\nI made my way to Mr. Waterbrook, and said, that I believed I had\nthe pleasure of seeing an old schoolfellow there.\n\n'Indeed!' said Mr. Waterbrook, surprised.  'You are too young to\nhave been at school with Mr. Henry Spiker?'\n\n'Oh, I don't mean him!' I returned.  'I mean the gentleman named\nTraddles.'\n\n'Oh!  Aye, aye!  Indeed!' said my host, with much diminished\ninterest.  'Possibly.'\n\n'If it's really the same person,' said I, glancing towards him, 'it\nwas at a place called Salem House where we were together, and he\nwas an excellent fellow.'\n\n'Oh yes.  Traddles is a good fellow,' returned my host nodding his\nhead with an air of toleration.  'Traddles is quite a good fellow.'\n\n'It's a curious coincidence,' said I.\n\n'It is really,' returned my host, 'quite a coincidence, that\nTraddles should be here at all: as Traddles was only invited this\nmorning, when the place at table, intended to be occupied by Mrs.\nHenry Spiker's brother, became vacant, in consequence of his\nindisposition.  A very gentlemanly man, Mrs. Henry Spiker's\nbrother, Mr. Copperfield.'\n\nI murmured an assent, which was full of feeling, considering that\nI knew nothing at all about him; and I inquired what Mr. Traddles\nwas by profession.\n\n'Traddles,' returned Mr. Waterbrook, 'is a young man reading for\nthe bar.  Yes.  He is quite a good fellow - nobody's enemy but his\nown.'\n\n'Is he his own enemy?' said I, sorry to hear this.\n\n'Well,' returned Mr. Waterbrook, pursing up his mouth, and playing\nwith his watch-chain, in a comfortable, prosperous sort of way.  'I\nshould say he was one of those men who stand in their own light. \nYes, I should say he would never, for example, be worth five\nhundred pound.  Traddles was recommended to me by a professional\nfriend.  Oh yes.  Yes.  He has a kind of talent for drawing briefs,\nand stating a case in writing, plainly.  I am able to throw\nsomething in Traddles's way, in the course of the year; something\n- for him - considerable.  Oh yes.  Yes.'\n\nI was much impressed by the extremely comfortable and satisfied\nmanner in which Mr. Waterbrook delivered himself of this little\nword 'Yes', every now and then.  There was wonderful expression in\nit.  It completely conveyed the idea of a man who had been born,\nnot to say with a silver spoon, but with a scaling-ladder, and had\ngone on mounting all the heights of life one after another, until\nnow he looked, from the top of the fortifications, with the eye of\na philosopher and a patron, on the people down in the trenches.\n\nMy reflections on this theme were still in progress when dinner was\nannounced.  Mr. Waterbrook went down with Hamlet's aunt.  Mr. Henry\nSpiker took Mrs. Waterbrook.  Agnes, whom I should have liked to\ntake myself, was given to a simpering fellow with weak legs. \nUriah, Traddles, and I, as the junior part of the company, went\ndown last, how we could.  I was not so vexed at losing Agnes as I\nmight have been, since it gave me an opportunity of making myself\nknown to Traddles on the stairs, who greeted me with great fervour;\nwhile Uriah writhed with such obtrusive satisfaction and\nself-abasement, that I could gladly have pitched him over the\nbanisters.\nTraddles and I were separated at table, being billeted in two\nremote corners: he in the glare of a red velvet lady; I, in the\ngloom of Hamlet's aunt.  The dinner was very long, and the\nconversation was about the Aristocracy - and Blood.  Mrs.\nWaterbrook repeatedly told us, that if she had a weakness, it was\nBlood.\n\nIt occurred to me several times that we should have got on better,\nif we had not been quite so genteel.  We were so exceedingly\ngenteel, that our scope was very limited.  A Mr. and Mrs. Gulpidge\nwere of the party, who had something to do at second-hand (at\nleast, Mr. Gulpidge had) with the law business of the Bank; and\nwhat with the Bank, and what with the Treasury, we were as\nexclusive as the Court Circular.  To mend the matter, Hamlet's aunt\nhad the family failing of indulging in soliloquy, and held forth in\na desultory manner, by herself, on every topic that was introduced. \nThese were few enough, to be sure; but as we always fell back upon\nBlood, she had as wide a field for abstract speculation as her\nnephew himself.\n\nWe might have been a party of Ogres, the conversation assumed such\na sanguine complexion.\n\n'I confess I am of Mrs. Waterbrook's opinion,' said Mr. Waterbrook,\nwith his wine-glass at his eye.  'Other things are all very well in\ntheir way, but give me Blood!'\n\n'Oh!  There is nothing,' observed Hamlet's aunt, 'so satisfactory\nto one!  There is nothing that is so much one's beau-ideal of - of\nall that sort of thing, speaking generally.  There are some low\nminds (not many, I am happy to believe, but there are some) that\nwould prefer to do what I should call bow down before idols. \nPositively Idols!  Before service, intellect, and so on.  But these\nare intangible points.  Blood is not so.  We see Blood in a nose,\nand we know it.  We meet with it in a chin, and we say, \"There it\nis!  That's Blood!\" It is an actual matter of fact.  We point it\nout.  It admits of no doubt.'\n\nThe simpering fellow with the weak legs, who had taken Agnes down,\nstated the question more decisively yet, I thought.\n\n'Oh, you know, deuce take it,' said this gentleman, looking round\nthe board with an imbecile smile, 'we can't forego Blood, you know. \nWe must have Blood, you know.  Some young fellows, you know, may be\na little behind their station, perhaps, in point of education and\nbehaviour, and may go a little wrong, you know, and get themselves\nand other people into a variety of fixes - and all that - but deuce\ntake it, it's delightful to reflect that they've got Blood in 'em!\nMyself, I'd rather at any time be knocked down by a man who had got\nBlood in him, than I'd be picked up by a man who hadn't!'\n\nThis sentiment, as compressing the general question into a\nnutshell, gave the utmost satisfaction, and brought the gentleman\ninto great notice until the ladies retired.  After that, I observed\nthat Mr. Gulpidge and Mr. Henry Spiker, who had hitherto been very\ndistant, entered into a defensive alliance against us, the common\nenemy, and exchanged a mysterious dialogue across the table for our\ndefeat and overthrow.\n\n'That affair of the first bond for four thousand five hundred\npounds has not taken the course that was expected, Spiker,' said\nMr. Gulpidge.\n\n'Do you mean the D. of A.'s?' said Mr. Spiker.\n\n'The C. of B.'s!' said Mr. Gulpidge.\n\nMr. Spiker raised his eyebrows, and looked much concerned.\n\n'When the question was referred to Lord - I needn't name him,' said\nMr. Gulpidge, checking himself -\n\n'I understand,' said Mr. Spiker, 'N.'\n\nMr. Gulpidge darkly nodded - 'was referred to him, his answer was,\n\"Money, or no release.\"'\n\n'Lord bless my soul!' cried Mr. Spiker.\n\n\"'Money, or no release,\"' repeated Mr. Gulpidge, firmly.  'The next\nin reversion - you understand me?'\n\n'K.,' said Mr. Spiker, with an ominous look.\n\n'- K. then positively refused to sign.  He was attended at\nNewmarket for that purpose, and he point-blank refused to do it.'\n\nMr. Spiker was so interested, that he became quite stony.\n\n'So the matter rests at this hour,' said Mr. Gulpidge, throwing\nhimself back in his chair.  'Our friend Waterbrook will excuse me\nif I forbear to explain myself generally, on account of the\nmagnitude of the interests involved.'\n\nMr. Waterbrook was only too happy, as it appeared to me, to have\nsuch interests, and such names, even hinted at, across his table. \nHe assumed an expression of gloomy intelligence (though I am\npersuaded he knew no more about the discussion than I did), and\nhighly approved of the discretion that had been observed.  Mr.\nSpiker, after the receipt of such a confidence, naturally desired\nto favour his friend with a confidence of his own; therefore the\nforegoing dialogue was succeeded by another, in which it was Mr.\nGulpidge's turn to be surprised, and that by another in which the\nsurprise came round to Mr. Spiker's turn again, and so on, turn and\nturn about.  All this time we, the outsiders, remained oppressed by\nthe tremendous interests involved in the conversation; and our host\nregarded us with pride, as the victims of a salutary awe and\nastonishment.\nI was very glad indeed to get upstairs to Agnes, and to talk with\nher in a corner, and to introduce Traddles to her, who was shy, but\nagreeable, and the same good-natured creature still.  As he was\nobliged to leave early, on account of going away next morning for\na month, I had not nearly so much conversation with him as I could\nhave wished; but we exchanged addresses, and promised ourselves the\npleasure of another meeting when he should come back to town.  He\nwas greatly interested to hear that I knew Steerforth, and spoke of\nhim with such warmth that I made him tell Agnes what he thought of\nhim.  But Agnes only looked at me the while, and very slightly\nshook her head when only I observed her.\n\nAs she was not among people with whom I believed she could be very\nmuch at home, I was almost glad to hear that she was going away\nwithin a few days, though I was sorry at the prospect of parting\nfrom her again so soon.  This caused me to remain until all the\ncompany were gone.  Conversing with her, and hearing her sing, was\nsuch a delightful reminder to me of my happy life in the grave old\nhouse she had made so beautiful, that I could have remained there\nhalf the night; but, having no excuse for staying any longer, when\nthe lights of Mr. Waterbrook's society were all snuffed out, I took\nmy leave very much against my inclination.  I felt then, more than\never, that she was my better Angel; and if I thought of her sweet\nface and placid smile, as though they had shone on me from some\nremoved being, like an Angel, I hope I thought no harm.\n\nI have said that the company were all gone; but I ought to have\nexcepted Uriah, whom I don't include in that denomination, and who\nhad never ceased to hover near us.  He was close behind me when I\nwent downstairs.  He was close beside me, when I walked away from\nthe house, slowly fitting his long skeleton fingers into the still\nlonger fingers of a great Guy Fawkes pair of gloves.\n\nIt was in no disposition for Uriah's company, but in remembrance of\nthe entreaty Agnes had made to me, that I asked him if he would\ncome home to my rooms, and have some coffee.\n\n'Oh, really, Master Copperfield,' he rejoined - 'I beg your pardon,\nMister Copperfield, but the other comes so natural, I don't like\nthat you should put a constraint upon yourself to ask a numble\nperson like me to your ouse.'\n\n'There is no constraint in the case,' said I.  'Will you come?'\n\n'I should like to, very much,' replied Uriah, with a writhe.\n\n'Well, then, come along!' said I.\n\nI could not help being rather short with him, but he appeared not\nto mind it.  We went the nearest way, without conversing much upon\nthe road; and he was so humble in respect of those scarecrow\ngloves, that he was still putting them on, and seemed to have made\nno advance in that labour, when we got to my place.\n\nI led him up the dark stairs, to prevent his knocking his head\nagainst anything, and really his damp cold hand felt so like a frog\nin mine, that I was tempted to drop it and run away.  Agnes and\nhospitality prevailed, however, and I conducted him to my fireside. \nWhen I lighted my candles, he fell into meek transports with the\nroom that was revealed to him; and when I heated the coffee in an\nunassuming block-tin vessel in which Mrs. Crupp delighted to\nprepare it (chiefly, I believe, because it was not intended for the\npurpose, being a shaving-pot, and because there was a patent\ninvention of great price mouldering away in the pantry), he\nprofessed so much emotion, that I could joyfully have scalded him.\n\n'Oh, really, Master Copperfield, - I mean Mister Copperfield,' said\nUriah, 'to see you waiting upon me is what I never could have\nexpected!  But, one way and another, so many things happen to me\nwhich I never could have expected, I am sure, in my umble station,\nthat it seems to rain blessings on my ed.  You have heard\nsomething, I des-say, of a change in my expectations, Master\nCopperfield, - I should say, Mister Copperfield?'\n\nAs he sat on my sofa, with his long knees drawn up under his\ncoffee-cup, his hat and gloves upon the ground close to him, his\nspoon going softly round and round, his shadowless red eyes, which\nlooked as if they had scorched their lashes off, turned towards me\nwithout looking at me, the disagreeable dints I have formerly\ndescribed in his nostrils coming and going with his breath, and a\nsnaky undulation pervading his frame from his chin to his boots, I\ndecided in my own mind that I disliked him intensely.  It made me\nvery uncomfortable to have him for a guest, for I was young then,\nand unused to disguise what I so strongly felt.\n\n'You have heard something, I des-say, of a change in my\nexpectations, Master Copperfield, - I should say, Mister\nCopperfield?' observed Uriah.\n\n'Yes,' said I, 'something.'\n\n'Ah! I thought Miss Agnes would know of it!' he quietly returned. \n'I'm glad to find Miss Agnes knows of it.  Oh, thank you, Master -\nMister Copperfield!'\n\nI could have thrown my bootjack at him (it lay ready on the rug),\nfor having entrapped me into the disclosure of anything concerning\nAgnes, however immaterial.  But I only drank my coffee.\n\n'What a prophet you have shown yourself, Mister Copperfield!'\npursued Uriah.  'Dear me, what a prophet you have proved yourself\nto be!  Don't you remember saying to me once, that perhaps I should\nbe a partner in Mr. Wickfield's business, and perhaps it might be\nWickfield and Heep?  You may not recollect it; but when a person is\numble, Master Copperfield, a person treasures such things up!'\n\n'I recollect talking about it,' said I, 'though I certainly did not\nthink it very likely then.'\n'Oh! who would have thought it likely, Mister Copperfield!'\nreturned Uriah, enthusiastically.  'I am sure I didn't myself.  I\nrecollect saying with my own lips that I was much too umble.  So I\nconsidered myself really and truly.'\n\nHe sat, with that carved grin on his face, looking at the fire, as\nI looked at him.\n\n'But the umblest persons, Master Copperfield,' he presently\nresumed, 'may be the instruments of good.  I am glad to think I\nhave been the instrument of good to Mr. Wickfield, and that I may\nbe more so.  Oh what a worthy man he is, Mister Copperfield, but\nhow imprudent he has been!'\n\n'I am sorry to hear it,' said I.  I could not help adding, rather\npointedly, 'on all accounts.'\n\n'Decidedly so, Mister Copperfield,' replied Uriah.  'On all\naccounts.  Miss Agnes's above all!  You don't remember your own\neloquent expressions, Master Copperfield; but I remember how you\nsaid one day that everybody must admire her, and how I thanked you\nfor it!  You have forgot that, I have no doubt, Master\nCopperfield?'\n\n'No,' said I, drily.\n\n'Oh how glad I am you have not!' exclaimed Uriah.  'To think that\nyou should be the first to kindle the sparks of ambition in my\numble breast, and that you've not forgot it!  Oh! - Would you\nexcuse me asking for a cup more coffee?'\n\nSomething in the emphasis he laid upon the kindling of those\nsparks, and something in the glance he directed at me as he said\nit, had made me start as if I had seen him illuminated by a blaze\nof light.  Recalled by his request, preferred in quite another tone\nof voice, I did the honours of the shaving-pot; but I did them with\nan unsteadiness of hand, a sudden sense of being no match for him,\nand a perplexed suspicious anxiety as to what he might be going to\nsay next, which I felt could not escape his observation.\n\nHe said nothing at all.  He stirred his coffee round and round, he\nsipped it, he felt his chin softly with his grisly hand, he looked\nat the fire, he looked about the room, he gasped rather than smiled\nat me, he writhed and undulated about, in his deferential\nservility, he stirred and sipped again, but he left the renewal of\nthe conversation to me.\n\n'So, Mr. Wickfield,' said I, at last, 'who is worth five hundred of\nyou - or me'; for my life, I think, I could not have helped\ndividing that part of the sentence with an awkward jerk; 'has been\nimprudent, has he, Mr. Heep?'\n\n'Oh, very imprudent indeed, Master Copperfield,' returned Uriah,\nsighing modestly.  'Oh, very much so!  But I wish you'd call me\nUriah, if you please.  It's like old times.'\n\n'Well! Uriah,' said I, bolting it out with some difficulty.\n\n'Thank you,' he returned, with fervour.  'Thank you, Master\nCopperfield!  It's like the blowing of old breezes or the ringing\nof old bellses to hear YOU say Uriah.  I beg your pardon.  Was I\nmaking any observation?'\n\n'About Mr. Wickfield,' I suggested.\n\n'Oh!  Yes, truly,' said Uriah.  'Ah!  Great imprudence, Master\nCopperfield.  It's a topic that I wouldn't touch upon, to any soul\nbut you.  Even to you I can only touch upon it, and no more.  If\nanyone else had been in my place during the last few years, by this\ntime he would have had Mr. Wickfield (oh, what a worthy man he is,\nMaster Copperfield, too!) under his thumb.  Un--der--his thumb,'\nsaid Uriah, very slowly, as he stretched out his cruel-looking hand\nabove my table, and pressed his own thumb upon it, until it shook,\nand shook the room.\n\nIf I had been obliged to look at him with him splay foot on Mr.\nWickfield's head, I think I could scarcely have hated him more.\n\n'Oh, dear, yes, Master Copperfield,' he proceeded, in a soft voice,\nmost remarkably contrasting with the action of his thumb, which did\nnot diminish its hard pressure in the least degree, 'there's no\ndoubt of it.  There would have been loss, disgrace, I don't know\nwhat at all.  Mr. Wickfield knows it.  I am the umble instrument of\numbly serving him, and he puts me on an eminence I hardly could\nhave hoped to reach.  How thankful should I be!' With his face\nturned towards me, as he finished, but without looking at me, he\ntook his crooked thumb off the spot where he had planted it, and\nslowly and thoughtfully scraped his lank jaw with it, as if he were\nshaving himself.\n\nI recollect well how indignantly my heart beat, as I saw his crafty\nface, with the appropriately red light of the fire upon it,\npreparing for something else.\n\n'Master Copperfield,' he began - 'but am I keeping you up?'\n\n'You are not keeping me up.  I generally go to bed late.'\n\n'Thank you, Master Copperfield!  I have risen from my umble station\nsince first you used to address me, it is true; but I am umble\nstill.  I hope I never shall be otherwise than umble.  You will not\nthink the worse of my umbleness, if I make a little confidence to\nyou, Master Copperfield?  Will you?'\n\n'Oh no,' said I, with an effort.\n\n'Thank you!' He took out his pocket-handkerchief, and began wiping\nthe palms of his hands.  'Miss Agnes, Master Copperfield -'\n'Well, Uriah?'\n\n'Oh, how pleasant to be called Uriah, spontaneously!' he cried; and\ngave himself a jerk, like a convulsive fish.  'You thought her\nlooking very beautiful tonight, Master Copperfield?'\n\n'I thought her looking as she always does: superior, in all\nrespects, to everyone around her,' I returned.\n\n'Oh, thank you!  It's so true!' he cried.  'Oh, thank you very much\nfor that!'\n\n'Not at all,' I said, loftily.  'There is no reason why you should\nthank me.'\n\n'Why that, Master Copperfield,' said Uriah, 'is, in fact, the\nconfidence that I am going to take the liberty of reposing.  Umble\nas I am,' he wiped his hands harder, and looked at them and at the\nfire by turns, 'umble as my mother is, and lowly as our poor but\nhonest roof has ever been, the image of Miss Agnes (I don't mind\ntrusting you with my secret, Master Copperfield, for I have always\noverflowed towards you since the first moment I had the pleasure of\nbeholding you in a pony-shay) has been in my breast for years.  Oh,\nMaster Copperfield, with what a pure affection do I love the ground\nmy Agnes walks on!'\n\nI believe I had a delirious idea of seizing the red-hot poker out\nof the fire, and running him through with it.  It went from me with\na shock, like a ball fired from a rifle: but the image of Agnes,\noutraged by so much as a thought of this red-headed animal's,\nremained in my mind when I looked at him, sitting all awry as if\nhis mean soul griped his body, and made me giddy.  He seemed to\nswell and grow before my eyes; the room seemed full of the echoes\nof his voice; and the strange feeling (to which, perhaps, no one is\nquite a stranger) that all this had occurred before, at some\nindefinite time, and that I knew what he was going to say next,\ntook possession of me.\n\nA timely observation of the sense of power that there was in his\nface, did more to bring back to my remembrance the entreaty of\nAgnes, in its full force, than any effort I could have made.  I\nasked him, with a better appearance of composure than I could have\nthought possible a minute before, whether he had made his feelings\nknown to Agnes.\n\n'Oh no, Master Copperfield!' he returned; 'oh dear, no!  Not to\nanyone but you.  You see I am only just emerging from my lowly\nstation.  I rest a good deal of hope on her observing how useful I\nam to her father (for I trust to be very useful to him indeed,\nMaster Copperfield), and how I smooth the way for him, and keep him\nstraight.  She's so much attached to her father, Master Copperfield\n(oh, what a lovely thing it is in a daughter!), that I think she\nmay come, on his account, to be kind to me.'\n\nI fathomed the depth of the rascal's whole scheme, and understood\nwhy he laid it bare.\n\n'If you'll have the goodness to keep my secret, Master\nCopperfield,' he pursued, 'and not, in general, to go against me,\nI shall take it as a particular favour.  You wouldn't wish to make\nunpleasantness.  I know what a friendly heart you've got; but\nhaving only known me on my umble footing (on my umblest I should\nsay, for I am very umble still), you might, unbeknown, go against\nme rather, with my Agnes.  I call her mine, you see, Master\nCopperfield.  There's a song that says, \"I'd crowns resign, to call\nher mine!\" I hope to do it, one of these days.'\n\nDear Agnes!  So much too loving and too good for anyone that I\ncould think of, was it possible that she was reserved to be the\nwife of such a wretch as this!\n\n'There's no hurry at present, you know, Master Copperfield,' Uriah\nproceeded, in his slimy way, as I sat gazing at him, with this\nthought in my mind.  'My Agnes is very young still; and mother and\nme will have to work our way upwards, and make a good many new\narrangements, before it would be quite convenient.  So I shall have\ntime gradually to make her familiar with my hopes, as opportunities\noffer.  Oh, I'm so much obliged to you for this confidence!  Oh,\nit's such a relief, you can't think, to know that you understand\nour situation, and are certain (as you wouldn't wish to make\nunpleasantness in the family) not to go against me!'\n\nHe took the hand which I dared not withhold, and having given it a\ndamp squeeze, referred to his pale-faced watch.\n\n'Dear me!' he said, 'it's past one.  The moments slip away so, in\nthe confidence of old times, Master Copperfield, that it's almost\nhalf past one!'\n\nI answered that I had thought it was later.  Not that I had really\nthought so, but because my conversational powers were effectually\nscattered.\n\n'Dear me!' he said, considering.  'The ouse that I am stopping at\n- a sort of a private hotel and boarding ouse, Master Copperfield,\nnear the New River ed - will have gone to bed these two hours.'\n\n'I am sorry,' I returned, 'that there is only one bed here, and\nthat I -'\n\n'Oh, don't think of mentioning beds, Master Copperfield!' he\nrejoined ecstatically, drawing up one leg.  'But would you have any\nobjections to my laying down before the fire?'\n\n'If it comes to that,' I said, 'pray take my bed, and I'll lie down\nbefore the fire.'\n\nHis repudiation of this offer was almost shrill enough, in the\nexcess of its surprise and humility, to have penetrated to the ears\nof Mrs. Crupp, then sleeping, I suppose, in a distant chamber,\nsituated at about the level of low-water mark, soothed in her\nslumbers by the ticking of an incorrigible clock, to which she\nalways referred me when we had any little difference on the score\nof punctuality, and which was never less than three-quarters of an\nhour too slow, and had always been put right in the morning by the\nbest authorities.  As no arguments I could urge, in my bewildered\ncondition, had the least effect upon his modesty in inducing him to\naccept my bedroom, I was obliged to make the best arrangements I\ncould, for his repose before the fire.  The mattress of the sofa\n(which was a great deal too short for his lank figure), the sofa\npillows, a blanket, the table-cover, a clean breakfast-cloth, and\na great-coat, made him a bed and covering, for which he was more\nthan thankful.  Having lent him a night-cap, which he put on at\nonce, and in which he made such an awful figure, that I have never\nworn one since, I left him to his rest.\n\nI never shall forget that night.  I never shall forget how I turned\nand tumbled; how I wearied myself with thinking about Agnes and\nthis creature; how I considered what could I do, and what ought I\nto do; how I could come to no other conclusion than that the best\ncourse for her peace was to do nothing, and to keep to myself what\nI had heard.  If I went to sleep for a few moments, the image of\nAgnes with her tender eyes, and of her father looking fondly on\nher, as I had so often seen him look, arose before me with\nappealing faces, and filled me with vague terrors.  When I awoke,\nthe recollection that Uriah was lying in the next room, sat heavy\non me like a waking nightmare; and oppressed me with a leaden\ndread, as if I had had some meaner quality of devil for a lodger.\n\nThe poker got into my dozing thoughts besides, and wouldn't come\nout.  I thought, between sleeping and waking, that it was still red\nhot, and I had snatched it out of the fire, and run him through the\nbody.  I was so haunted at last by the idea, though I knew there\nwas nothing in it, that I stole into the next room to look at him. \nThere I saw him, lying on his back, with his legs extending to I\ndon't know where, gurglings taking place in his throat, stoppages\nin his nose, and his mouth open like a post-office.  He was so much\nworse in reality than in my distempered fancy, that afterwards I\nwas attracted to him in very repulsion, and could not help\nwandering in and out every half-hour or so, and taking another look\nat him.  Still, the long, long night seemed heavy and hopeless as\never, and no promise of day was in the murky sky.\n\nWhen I saw him going downstairs early in the morning (for, thank\nHeaven! he would not stay to breakfast), it appeared to me as if\nthe night was going away in his person.  When I went out to the\nCommons, I charged Mrs. Crupp with particular directions to leave\nthe windows open, that my sitting-room might be aired, and purged\nof his presence.\n\n\n\nCHAPTER 26\nI FALL INTO CAPTIVITY\n\n\nI saw no more of Uriah Heep, until the day when Agnes left town. \nI was at the coach office to take leave of her and see her go; and\nthere was he, returning to Canterbury by the same conveyance.  It\nwas some small satisfaction to me to observe his spare,\nshort-waisted, high-shouldered, mulberry-coloured great-coat\nperched up, in company with an umbrella like a small tent, on the\nedge of the back seat on the roof, while Agnes was, of course,\ninside; but what I underwent in my efforts to be friendly with him,\nwhile Agnes looked on, perhaps deserved that little recompense.  At\nthe coach window, as at the dinner-party, he hovered about us\nwithout a moment's intermission, like a great vulture: gorging\nhimself on every syllable that I said to Agnes, or Agnes said to\nme.\n\nIn the state of trouble into which his disclosure by my fire had\nthrown me, I had thought very much of the words Agnes had used in\nreference to the partnership.  'I did what I hope was right. \nFeeling sure that it was necessary for papa's peace that the\nsacrifice should be made, I entreated him to make it.'  A miserable\nforeboding that she would yield to, and sustain herself by, the\nsame feeling in reference to any sacrifice for his sake, had\noppressed me ever since.  I knew how she loved him.  I knew what\nthe devotion of her nature was.  I knew from her own lips that she\nregarded herself as the innocent cause of his errors, and as owing\nhim a great debt she ardently desired to pay.  I had no consolation\nin seeing how different she was from this detestable Rufus with the\nmulberry-coloured great-coat, for I felt that in the very\ndifference between them, in the self-denial of her pure soul and\nthe sordid baseness of his, the greatest danger lay.  All this,\ndoubtless, he knew thoroughly, and had, in his cunning, considered\nwell.\n\nYet I was so certain that the prospect of such a sacrifice afar\noff, must destroy the happiness of Agnes; and I was so sure, from\nher manner, of its being unseen by her then, and having cast no\nshadow on her yet; that I could as soon have injured her, as given\nher any warning of what impended.  Thus it was that we parted\nwithout explanation: she waving her hand and smiling farewell from\nthe coach window; her evil genius writhing on the roof, as if he\nhad her in his clutches and triumphed.\n\nI could not get over this farewell glimpse of them for a long time. \nWhen Agnes wrote to tell me of her safe arrival, I was as miserable\nas when I saw her going away.  Whenever I fell into a thoughtful\nstate, this subject was sure to present itself, and all my\nuneasiness was sure to be redoubled.  Hardly a night passed without\nmy dreaming of it.  It became a part of my life, and as inseparable\nfrom my life as my own head.\n\nI had ample leisure to refine upon my uneasiness: for Steerforth\nwas at Oxford, as he wrote to me, and when I was not at the\nCommons, I was very much alone.  I believe I had at this time some\nlurking distrust of Steerforth.  I wrote to him most affectionately\nin reply to his, but I think I was glad, upon the whole, that he\ncould not come to London just then.  I suspect the truth to be,\nthat the influence of Agnes was upon me, undisturbed by the sight\nof him; and that it was the more powerful with me, because she had\nso large a share in my thoughts and interest.\n\nIn the meantime, days and weeks slipped away.  I was articled to\nSpenlow and Jorkins.  I had ninety pounds a year (exclusive of my\nhouse-rent and sundry collateral matters) from my aunt.  My rooms\nwere engaged for twelve months certain: and though I still found\nthem dreary of an evening, and the evenings long, I could settle\ndown into a state of equable low spirits, and resign myself to\ncoffee; which I seem, on looking back, to have taken by the gallon\nat about this period of my existence.  At about this time, too, I\nmade three discoveries: first, that Mrs. Crupp was a martyr to a\ncurious disorder called 'the spazzums', which was generally\naccompanied with inflammation of the nose, and required to be\nconstantly treated with peppermint; secondly, that something\npeculiar in the temperature of my pantry, made the brandy-bottles\nburst; thirdly, that I was alone in the world, and much given to\nrecord that circumstance in fragments of English versification.\n\nOn the day when I was articled, no festivity took place, beyond my\nhaving sandwiches and sherry into the office for the clerks, and\ngoing alone to the theatre at night.  I went to see The Stranger,\nas a Doctors' Commons sort of play, and was so dreadfully cut up,\nthat I hardly knew myself in my own glass when I got home.  Mr.\nSpenlow remarked, on this occasion, when we concluded our business,\nthat he should have been happy to have seen me at his house at\nNorwood to celebrate our becoming connected, but for his domestic\narrangements being in some disorder, on account of the expected\nreturn of his daughter from finishing her education at Paris.  But,\nhe intimated that when she came home he should hope to have the\npleasure of entertaining me.  I knew that he was a widower with one\ndaughter, and expressed my acknowledgements.\n\nMr. Spenlow was as good as his word.  In a week or two, he referred\nto this engagement, and said, that if I would do him the favour to\ncome down next Saturday, and stay till Monday, he would be\nextremely happy.  Of course I said I would do him the favour; and\nhe was to drive me down in his phaeton, and to bring me back.\n\nWhen the day arrived, my very carpet-bag was an object of\nveneration to the stipendiary clerks, to whom the house at Norwood\nwas a sacred mystery.  One of them informed me that he had heard\nthat Mr. Spenlow ate entirely off plate and china; and another\nhinted at champagne being constantly on draught, after the usual\ncustom of table-beer.  The old clerk with the wig, whose name was\nMr. Tiffey, had been down on business several times in the course\nof his career, and had on each occasion penetrated to the\nbreakfast-parlour.  He described it as an apartment of the most\nsumptuous nature, and said that he had drunk brown East India\nsherry there, of a quality so precious as to make a man wink.  We\nhad an adjourned cause in the Consistory that day - about\nexcommunicating a baker who had been objecting in a vestry to a\npaving-rate - and as the evidence was just twice the length of\nRobinson Crusoe, according to a calculation I made, it was rather\nlate in the day before we finished.  However, we got him\nexcommunicated for six weeks, and sentenced in no end of costs; and\nthen the baker's proctor, and the judge, and the advocates on both\nsides (who were all nearly related), went out of town together, and\nMr. Spenlow and I drove away in the phaeton.\n\nThe phaeton was a very handsome affair; the horses arched their\nnecks and lifted up their legs as if they knew they belonged to\nDoctors' Commons.  There was a good deal of competition in the\nCommons on all points of display, and it turned out some very\nchoice equipages then; though I always have considered, and always\nshall consider, that in my time the great article of competition\nthere was starch: which I think was worn among the proctors to as\ngreat an extent as it is in the nature of man to bear.\n\nWe were very pleasant, going down, and Mr. Spenlow gave me some\nhints in reference to my profession.  He said it was the genteelest\nprofession in the world, and must on no account be confounded with\nthe profession of a solicitor: being quite another sort of thing,\ninfinitely more exclusive, less mechanical, and more profitable. \nWe took things much more easily in the Commons than they could be\ntaken anywhere else, he observed, and that set us, as a privileged\nclass, apart.  He said it was impossible to conceal the\ndisagreeable fact, that we were chiefly employed by solicitors; but\nhe gave me to understand that they were an inferior race of men,\nuniversally looked down upon by all proctors of any pretensions.\n\nI asked Mr. Spenlow what he considered the best sort of\nprofessional business?  He replied, that a good case of a disputed\nwill, where there was a neat little estate of thirty or forty\nthousand pounds, was, perhaps, the best of all.  In such a case, he\nsaid, not only were there very pretty pickings, in the way of\narguments at every stage of the proceedings, and mountains upon\nmountains of evidence on interrogatory and counter-interrogatory\n(to say nothing of an appeal lying, first to the Delegates, and\nthen to the Lords), but, the costs being pretty sure to come out of\nthe estate at last, both sides went at it in a lively and spirited\nmanner, and expense was no consideration.  Then, he launched into\na general eulogium on the Commons.  What was to be particularly\nadmired (he said) in the Commons, was its compactness.  It was the\nmost conveniently organized place in the world.  It was the\ncomplete idea of snugness.  It lay in a nutshell.  For example: You\nbrought a divorce case, or a restitution case, into the Consistory. \nVery good.  You tried it in the Consistory.  You made a quiet\nlittle round game of it, among a family group, and you played it\nout at leisure.  Suppose you were not satisfied with the\nConsistory, what did you do then?  Why, you went into the Arches. \nWhat was the Arches?  The same court, in the same room, with the\nsame bar, and the same practitioners, but another judge, for there\nthe Consistory judge could plead any court-day as an advocate. \nWell, you played your round game out again.  Still you were not\nsatisfied.  Very good.  What did you do then?  Why, you went to the\nDelegates.  Who were the Delegates?  Why, the Ecclesiastical\nDelegates were the advocates without any business, who had looked\non at the round game when it was playing in both courts, and had\nseen the cards shuffled, and cut, and played, and had talked to all\nthe players about it, and now came fresh, as judges, to settle the\nmatter to the satisfaction of everybody!  Discontented people might\ntalk of corruption in the Commons, closeness in the Commons, and\nthe necessity of reforming the Commons, said Mr. Spenlow solemnly,\nin conclusion; but when the price of wheat per bushel had been\nhighest, the Commons had been busiest; and a man might lay his hand\nupon his heart, and say this to the whole world, - 'Touch the\nCommons, and down comes the country!'\n\nI listened to all this with attention; and though, I must say, I\nhad my doubts whether the country was quite as much obliged to the\nCommons as Mr. Spenlow made out, I respectfully deferred to his\nopinion.  That about the price of wheat per bushel, I modestly felt\nwas too much for my strength, and quite settled the question.  I\nhave never, to this hour, got the better of that bushel of wheat. \nIt has reappeared to annihilate me, all through my life, in\nconnexion with all kinds of subjects.  I don't know now, exactly,\nwhat it has to do with me, or what right it has to crush me, on an\ninfinite variety of occasions; but whenever I see my old friend the\nbushel brought in by the head and shoulders (as he always is, I\nobserve), I give up a subject for lost.\n\nThis is a digression.  I was not the man to touch the Commons, and\nbring down the country.  I submissively expressed, by my silence,\nmy acquiescence in all I had heard from my superior in years and\nknowledge; and we talked about The Stranger and the Drama, and the\npairs of horses, until we came to Mr. Spenlow's gate.\n\nThere was a lovely garden to Mr. Spenlow's house; and though that\nwas not the best time of the year for seeing a garden, it was so\nbeautifully kept, that I was quite enchanted.  There was a charming\nlawn, there were clusters of trees, and there were perspective\nwalks that I could just distinguish in the dark, arched over with\ntrellis-work, on which shrubs and flowers grew in the growing\nseason.  'Here Miss Spenlow walks by herself,' I thought.  'Dear\nme!'\n\nWe went into the house, which was cheerfully lighted up, and into\na hall where there were all sorts of hats, caps, great-coats,\nplaids, gloves, whips, and walking-sticks.  'Where is Miss Dora?'\nsaid Mr. Spenlow to the servant.  'Dora!' I thought.  'What a\nbeautiful name!'\n\nWe turned into a room near at hand (I think it was the identical\nbreakfast-room, made memorable by the brown East Indian sherry),\nand I heard a voice say, 'Mr. Copperfield, my daughter Dora, and my\ndaughter Dora's confidential friend!' It was, no doubt, Mr.\nSpenlow's voice, but I didn't know it, and I didn't care whose it\nwas.  All was over in a moment.  I had fulfilled my destiny.  I was\na captive and a slave.  I loved Dora Spenlow to distraction!\n\nShe was more than human to me.  She was a Fairy, a Sylph, I don't\nknow what she was - anything that no one ever saw, and everything\nthat everybody ever wanted.  I was swallowed up in an abyss of love\nin an instant.  There was no pausing on the brink; no looking down,\nor looking back; I was gone, headlong, before I had sense to say a\nword to her.\n\n'I,' observed a well-remembered voice, when I had bowed and\nmurmured something, 'have seen Mr. Copperfield before.'\n\nThe speaker was not Dora.  No; the confidential friend, Miss\nMurdstone!\n\nI don't think I was much astonished.  To the best of my judgement,\nno capacity of astonishment was left in me.  There was nothing\nworth mentioning in the material world, but Dora Spenlow, to be\nastonished about.  I said, 'How do you do, Miss Murdstone?  I hope\nyou are well.'  She answered, 'Very well.'  I said, 'How is Mr.\nMurdstone?' She replied, 'My brother is robust, I am obliged to\nyou.'\n\nMr. Spenlow, who, I suppose, had been surprised to see us recognize\neach other, then put in his word.\n\n'I am glad to find,' he said, 'Copperfield, that you and Miss\nMurdstone are already acquainted.'\n\n'Mr. Copperfield and myself,' said Miss Murdstone, with severe\ncomposure, 'are connexions.  We were once slightly acquainted.  It\nwas in his childish days.  Circumstances have separated us since. \nI should not have known him.'\n\nI replied that I should have known her, anywhere.  Which was true\nenough.\n\n'Miss Murdstone has had the goodness,' said Mr. Spenlow to me, 'to\naccept the office - if I may so describe it - of my daughter Dora's\nconfidential friend.  My daughter Dora having, unhappily, no\nmother, Miss Murdstone is obliging enough to become her companion\nand protector.'\n\nA passing thought occurred to me that Miss Murdstone, like the\npocket instrument called a life-preserver, was not so much designed\nfor purposes of protection as of assault.  But as I had none but\npassing thoughts for any subject save Dora, I glanced at her,\ndirectly afterwards, and was thinking that I saw, in her prettily\npettish manner, that she was not very much inclined to be\nparticularly confidential to her companion and protector, when a\nbell rang, which Mr. Spenlow said was the first dinner-bell, and so\ncarried me off to dress.\n\nThe idea of dressing one's self, or doing anything in the way of\naction, in that state of love, was a little too ridiculous.  I\ncould only sit down before my fire, biting the key of my\ncarpet-bag, and think of the captivating, girlish, bright-eyed\nlovely Dora.  What a form she had, what a face she had, what a\ngraceful, variable, enchanting manner!\n\nThe bell rang again so soon that I made a mere scramble of my\ndressing, instead of the careful operation I could have wished\nunder the circumstances, and went downstairs.  There was some\ncompany.  Dora was talking to an old gentleman with a grey head. \nGrey as he was - and a great-grandfather into the bargain, for he\nsaid so - I was madly jealous of him.\n\nWhat a state of mind I was in!  I was jealous of everybody.  I\ncouldn't bear the idea of anybody knowing Mr. Spenlow better than\nI did.  It was torturing to me to hear them talk of occurrences in\nwhich I had had no share.  When a most amiable person, with a\nhighly polished bald head, asked me across the dinner table, if\nthat were the first occasion of my seeing the grounds, I could have\ndone anything to him that was savage and revengeful.\n\nI don't remember who was there, except Dora.  I have not the least\nidea what we had for dinner, besides Dora.  My impression is, that\nI dined off Dora, entirely, and sent away half-a-dozen plates\nuntouched.  I sat next to her.  I talked to her.  She had the most\ndelightful little voice, the gayest little laugh, the pleasantest\nand most fascinating little ways, that ever led a lost youth into\nhopeless slavery.  She was rather diminutive altogether.  So much\nthe more precious, I thought.\n\nWhen she went out of the room with Miss Murdstone (no other ladies\nwere of the party), I fell into a reverie, only disturbed by the\ncruel apprehension that Miss Murdstone would disparage me to her. \nThe amiable creature with the polished head told me a long story,\nwhich I think was about gardening.  I think I heard him say, 'my\ngardener', several times.  I seemed to pay the deepest attention to\nhim, but I was wandering in a garden of Eden all the while, with\nDora.\n\nMy apprehensions of being disparaged to the object of my engrossing\naffection were revived when we went into the drawing-room, by the\ngrim and distant aspect of Miss Murdstone.  But I was relieved of\nthem in an unexpected manner.\n\n'David Copperfield,' said Miss Murdstone, beckoning me aside into\na window.  'A word.'\n\nI confronted Miss Murdstone alone.\n\n'David Copperfield,' said Miss Murdstone, 'I need not enlarge upon\nfamily circumstances.  They are not a tempting subject.'\n'Far from it, ma'am,' I returned.\n\n'Far from it,' assented Miss Murdstone.  'I do not wish to revive\nthe memory of past differences, or of past outrages.  I have\nreceived outrages from a person - a female I am sorry to say, for\nthe credit of my sex - who is not to be mentioned without scorn and\ndisgust; and therefore I would rather not mention her.'\n\nI felt very fiery on my aunt's account; but I said it would\ncertainly be better, if Miss Murdstone pleased, not to mention her. \nI could not hear her disrespectfully mentioned, I added, without\nexpressing my opinion in a decided tone.\n\nMiss Murdstone shut her eyes, and disdainfully inclined her head;\nthen, slowly opening her eyes, resumed:\n\n'David Copperfield, I shall not attempt to disguise the fact, that\nI formed an unfavourable opinion of you in your childhood.  It may\nhave been a mistaken one, or you may have ceased to justify it. \nThat is not in question between us now.  I belong to a family\nremarkable, I believe, for some firmness; and I am not the creature\nof circumstance or change.  I may have my opinion of you.  You may\nhave your opinion of me.'\n\nI inclined my head, in my turn.\n\n'But it is not necessary,' said Miss Murdstone, 'that these\nopinions should come into collision here.  Under existing\ncircumstances, it is as well on all accounts that they should not. \nAs the chances of life have brought us together again, and may\nbring us together on other occasions, I would say, let us meet here\nas distant acquaintances.  Family circumstances are a sufficient\nreason for our only meeting on that footing, and it is quite\nunnecessary that either of us should make the other the subject of\nremark.  Do you approve of this?'\n\n'Miss Murdstone,' I returned, 'I think you and Mr. Murdstone used\nme very cruelly, and treated my mother with great unkindness.  I\nshall always think so, as long as I live.  But I quite agree in\nwhat you propose.'\n\nMiss Murdstone shut her eyes again, and bent her head.  Then, just\ntouching the back of my hand with the tips of her cold, stiff\nfingers, she walked away, arranging the little fetters on her\nwrists and round her neck; which seemed to be the same set, in\nexactly the same state, as when I had seen her last.  These\nreminded me, in reference to Miss Murdstone's nature, of the\nfetters over a jail door; suggesting on the outside, to all\nbeholders, what was to be expected within.\n\nAll I know of the rest of the evening is, that I heard the empress\nof my heart sing enchanted ballads in the French language,\ngenerally to the effect that, whatever was the matter, we ought\nalways to dance, Ta ra la, Ta ra la! accompanying herself on a\nglorified instrument, resembling a guitar.  That I was lost in\nblissful delirium.  That I refused refreshment.  That my soul\nrecoiled from punch particularly.  That when Miss Murdstone took\nher into custody and led her away, she smiled and gave me her\ndelicious hand.  That I caught a view of myself in a mirror,\nlooking perfectly imbecile and idiotic.  That I retired to bed in\na most maudlin state of mind, and got up in a crisis of feeble\ninfatuation.\n\nIt was a fine morning, and early, and I thought I would go and take\na stroll down one of those wire-arched walks, and indulge my\npassion by dwelling on her image.  On my way through the hall, I\nencountered her little dog, who was called Jip - short for Gipsy. \nI approached him tenderly, for I loved even him; but he showed his\nwhole set of teeth, got under a chair expressly to snarl, and\nwouldn't hear of the least familiarity.\n\nThe garden was cool and solitary.  I walked about, wondering what\nmy feelings of happiness would be, if I could ever become engaged\nto this dear wonder.  As to marriage, and fortune, and all that, I\nbelieve I was almost as innocently undesigning then, as when I\nloved little Em'ly.  To be allowed to call her 'Dora', to write to\nher, to dote upon and worship her, to have reason to think that\nwhen she was with other people she was yet mindful of me, seemed to\nme the summit of human ambition - I am sure it was the summit of\nmine.  There is no doubt whatever that I was a lackadaisical young\nspooney; but there was a purity of heart in all this, that prevents\nmy having quite a contemptuous recollection of it, let me laugh as\nI may.\n\nI had not been walking long, when I turned a corner, and met her. \nI tingle again from head to foot as my recollection turns that\ncorner, and my pen shakes in my hand.\n\n'You - are - out early, Miss Spenlow,' said I.\n\n'It's so stupid at home,' she replied, 'and Miss Murdstone is so\nabsurd!  She talks such nonsense about its being necessary for the\nday to be aired, before I come out.  Aired!' (She laughed, here, in\nthe most melodious manner.) 'On a Sunday morning, when I don't\npractise, I must do something.  So I told papa last night I must\ncome out.  Besides, it's the brightest time of the whole day. \nDon't you think so?'\n\nI hazarded a bold flight, and said (not without stammering) that it\nwas very bright to me then, though it had been very dark to me a\nminute before.\n\n'Do you mean a compliment?' said Dora, 'or that the weather has\nreally changed?'\n\nI stammered worse than before, in replying that I meant no\ncompliment, but the plain truth; though I was not aware of any\nchange having taken place in the weather.  It was in the state of\nmy own feelings, I added bashfully: to clench the explanation.\n\nI never saw such curls - how could I, for there never were such\ncurls! - as those she shook out to hide her blushes.  As to the\nstraw hat and blue ribbons which was on the top of the curls, if I\ncould only have hung it up in my room in Buckingham Street, what a\npriceless possession it would have been!\n\n'You have just come home from Paris,' said I.\n\n'Yes,' said she.  'Have you ever been there?'\n\n'No.'\n\n'Oh! I hope you'll go soon!  You would like it so much!'\n\nTraces of deep-seated anguish appeared in my countenance.  That she\nshould hope I would go, that she should think it possible I could\ngo, was insupportable.  I depreciated Paris; I depreciated France. \nI said I wouldn't leave England, under existing circumstances, for\nany earthly consideration.  Nothing should induce me.  In short,\nshe was shaking the curls again, when the little dog came running\nalong the walk to our relief.\n\nHe was mortally jealous of me, and persisted in barking at me.  She\ntook him up in her arms - oh my goodness! - and caressed him, but\nhe persisted upon barking still.  He wouldn't let me touch him,\nwhen I tried; and then she beat him.  It increased my sufferings\ngreatly to see the pats she gave him for punishment on the bridge\nof his blunt nose, while he winked his eyes, and licked her hand,\nand still growled within himself like a little double-bass.  At\nlength he was quiet - well he might be with her dimpled chin upon\nhis head! - and we walked away to look at a greenhouse.\n\n'You are not very intimate with Miss Murdstone, are you?' said\nDora.  -'My pet.'\n\n(The two last words were to the dog.  Oh, if they had only been to\nme!)\n\n'No,' I replied.  'Not at all so.'\n\n'She is a tiresome creature,' said Dora, pouting.  'I can't think\nwhat papa can have been about, when he chose such a vexatious thing\nto be my companion.  Who wants a protector?  I am sure I don't want\na protector.  Jip can protect me a great deal better than Miss\nMurdstone, - can't you, Jip, dear?'\n\nHe only winked lazily, when she kissed his ball of a head.\n\n'Papa calls her my confidential friend, but I am sure she is no\nsuch thing - is she, Jip?  We are not going to confide in any such\ncross people, Jip and I.  We mean to bestow our confidence where we\nlike, and to find out our own friends, instead of having them found\nout for us - don't we, Jip?'\n\njip made a comfortable noise, in answer, a little like a tea-kettle\nwhen it sings.  As for me, every word was a new heap of fetters,\nriveted above the last.\n\n'It is very hard, because we have not a kind Mama, that we are to\nhave, instead, a sulky, gloomy old thing like Miss Murdstone,\nalways following us about - isn't it, Jip?  Never mind, Jip.  We\nwon't be confidential, and we'll make ourselves as happy as we can\nin spite of her, and we'll tease her, and not please her - won't\nwe, Jip?'\n\nIf it had lasted any longer, I think I must have gone down on my\nknees on the gravel, with the probability before me of grazing\nthem, and of being presently ejected from the premises besides. \nBut, by good fortune the greenhouse was not far off, and these\nwords brought us to it.\n\nIt contained quite a show of beautiful geraniums.  We loitered\nalong in front of them, and Dora often stopped to admire this one\nor that one, and I stopped to admire the same one, and Dora,\nlaughing, held the dog up childishly, to smell the flowers; and if\nwe were not all three in Fairyland, certainly I was.  The scent of\na geranium leaf, at this day, strikes me with a half comical half\nserious wonder as to what change has come over me in a moment; and\nthen I see a straw hat and blue ribbons, and a quantity of curls,\nand a little black dog being held up, in two slender arms, against\na bank of blossoms and bright leaves.\n\nMiss Murdstone had been looking for us.  She found us here; and\npresented her uncongenial cheek, the little wrinkles in it filled\nwith hair powder, to Dora to be kissed.  Then she took Dora's arm\nin hers, and marched us into breakfast as if it were a soldier's\nfuneral.\n\nHow many cups of tea I drank, because Dora made it, I don't know. \nBut, I perfectly remember that I sat swilling tea until my whole\nnervous system, if I had had any in those days, must have gone by\nthe board.  By and by we went to church.  Miss Murdstone was\nbetween Dora and me in the pew; but I heard her sing, and the\ncongregation vanished.  A sermon was delivered - about Dora, of\ncourse - and I am afraid that is all I know of the service.\n\nWe had a quiet day.  No company, a walk, a family dinner of four,\nand an evening of looking over books and pictures; Miss Murdstone\nwith a homily before her, and her eye upon us, keeping guard\nvigilantly.  Ah! little did Mr. Spenlow imagine, when he sat\nopposite to me after dinner that day, with his pocket-handkerchief\nover his head, how fervently I was embracing him, in my fancy, as\nhis son-in-law!  Little did he think, when I took leave of him at\nnight, that he had just given his full consent to my being engaged\nto Dora, and that I was invoking blessings on his head!\n\nWe departed early in the morning, for we had a Salvage case coming\non in the Admiralty Court, requiring a rather accurate knowledge of\nthe whole science of navigation, in which (as we couldn't be\nexpected to know much about those matters in the Commons) the judge\nhad entreated two old Trinity Masters, for charity's sake, to come\nand help him out.  Dora was at the breakfast-table to make the tea\nagain, however; and I had the melancholy pleasure of taking off my\nhat to her in the phaeton, as she stood on the door-step with Jip\nin her arms.\n\nWhat the Admiralty was to me that day; what nonsense I made of our\ncase in my mind, as I listened to it; how I saw 'DORA' engraved\nupon the blade of the silver oar which they lay upon the table, as\nthe emblem of that high jurisdiction; and how I felt when Mr.\nSpenlow went home without me (I had had an insane hope that he\nmight take me back again), as if I were a mariner myself, and the\nship to which I belonged had sailed away and left me on a desert\nisland; I shall make no fruitless effort to describe.  If that\nsleepy old court could rouse itself, and present in any visible\nform the daydreams I have had in it about Dora, it would reveal my\ntruth.\n\nI don't mean the dreams that I dreamed on that day alone, but day\nafter day, from week to week, and term to term.  I went there, not\nto attend to what was going on, but to think about Dora.  If ever\nI bestowed a thought upon the cases, as they dragged their slow\nlength before me, it was only to wonder, in the matrimonial cases\n(remembering Dora), how it was that married people could ever be\notherwise than happy; and, in the Prerogative cases, to consider,\nif the money in question had been left to me, what were the\nforemost steps I should immediately have taken in regard to Dora. \nWithin the first week of my passion, I bought four sumptuous\nwaistcoats - not for myself; I had no pride in them; for Dora - and\ntook to wearing straw-coloured kid gloves in the streets, and laid\nthe foundations of all the corns I have ever had.  If the boots I\nwore at that period could only be produced and compared with the\nnatural size of my feet, they would show what the state of my heart\nwas, in a most affecting manner.\n\nAnd yet, wretched cripple as I made myself by this act of homage to\nDora, I walked miles upon miles daily in the hope of seeing her. \nNot only was I soon as well known on the Norwood Road as the\npostmen on that beat, but I pervaded London likewise.  I walked\nabout the streets where the best shops for ladies were, I haunted\nthe Bazaar like an unquiet spirit, I fagged through the Park again\nand again, long after I was quite knocked up.  Sometimes, at long\nintervals and on rare occasions, I saw her.  Perhaps I saw her\nglove waved in a carriage window; perhaps I met her, walked with\nher and Miss Murdstone a little way, and spoke to her.  In the\nlatter case I was always very miserable afterwards, to think that\nI had said nothing to the purpose; or that she had no idea of the\nextent of my devotion, or that she cared nothing about me.  I was\nalways looking out, as may be supposed, for another invitation to\nMr. Spenlow's house.  I was always being disappointed, for I got\nnone.\n\nMrs. Crupp must have been a woman of penetration; for when this\nattachment was but a few weeks old, and I had not had the courage\nto write more explicitly even to Agnes, than that I had been to Mr.\nSpenlow's house, 'whose family,' I added, 'consists of one\ndaughter'; - I say Mrs. Crupp must have been a woman of\npenetration, for, even in that early stage, she found it out.  She\ncame up to me one evening, when I was very low, to ask (she being\nthen afflicted with the disorder I have mentioned) if I could\noblige her with a little tincture of cardamums mixed with rhubarb,\nand flavoured with seven drops of the essence of cloves, which was\nthe best remedy for her complaint; - or, if I had not such a thing\nby me, with a little brandy, which was the next best.  It was not,\nshe remarked, so palatable to her, but it was the next best.  As I\nhad never even heard of the first remedy, and always had the second\nin the closet, I gave Mrs. Crupp a glass of the second, which (that\nI might have no suspicion of its being devoted to any improper use)\nshe began to take in my presence.\n\n'Cheer up, sir,' said Mrs. Crupp.  'I can't abear to see you so,\nsir: I'm a mother myself.'\n\nI did not quite perceive the application of this fact to myself,\nbut I smiled on Mrs. Crupp, as benignly as was in my power.\n\n'Come, sir,' said Mrs. Crupp.  'Excuse me.  I know what it is, sir. \nThere's a lady in the case.'\n\n'Mrs. Crupp?' I returned, reddening.\n\n'Oh, bless you!  Keep a good heart, sir!' said Mrs. Crupp, nodding\nencouragement.  'Never say die, sir!  If She don't smile upon you,\nthere's a many as will.  You are a young gentleman to be smiled on,\nMr. Copperfull, and you must learn your walue, sir.'\n\nMrs. Crupp always called me Mr. Copperfull: firstly, no doubt,\nbecause it was not my name; and secondly, I am inclined to think,\nin some indistinct association with a washing-day.\n\n'What makes you suppose there is any young lady in the case, Mrs.\nCrupp?' said I.\n\n'Mr. Copperfull,' said Mrs. Crupp, with a great deal of feeling,\n'I'm a mother myself.'\n\nFor some time Mrs. Crupp could only lay her hand upon her nankeen\nbosom, and fortify herself against returning pain with sips of her\nmedicine.  At length she spoke again.\n\n'When the present set were took for you by your dear aunt, Mr.\nCopperfull,' said Mrs. Crupp, 'my remark were, I had now found\nsummun I could care for.  \"Thank Ev'in!\" were the expression, \"I\nhave now found summun I can care for!\" - You don't eat enough, sir,\nnor yet drink.'\n\n'Is that what you found your supposition on, Mrs. Crupp?' said I.\n\n'Sir,' said Mrs. Crupp, in a tone approaching to severity, 'I've\nlaundressed other young gentlemen besides yourself.  A young\ngentleman may be over-careful of himself, or he may be\nunder-careful of himself.  He may brush his hair too regular, or\ntoo un-regular.  He may wear his boots much too large for him, or\nmuch too small.  That is according as the young gentleman has his\noriginal character formed.  But let him go to which extreme he may,\nsir, there's a young lady in both of 'em.'\n\nMrs. Crupp shook her head in such a determined manner, that I had\nnot an inch of vantage-ground left.\n\n'It was but the gentleman which died here before yourself,' said\nMrs. Crupp, 'that fell in love - with a barmaid - and had his\nwaistcoats took in directly, though much swelled by drinking.'\n\n'Mrs. Crupp,' said I, 'I must beg you not to connect the young lady\nin my case with a barmaid, or anything of that sort, if you\nplease.'\n\n'Mr. Copperfull,' returned Mrs. Crupp, 'I'm a mother myself, and\nnot likely.  I ask your pardon, sir, if I intrude.  I should never\nwish to intrude where I were not welcome.  But you are a young\ngentleman, Mr. Copperfull, and my adwice to you is, to cheer up,\nsir, to keep a good heart, and to know your own walue.  If you was\nto take to something, sir,' said Mrs. Crupp, 'if you was to take to\nskittles, now, which is healthy, you might find it divert your\nmind, and do you good.'\n\nWith these words, Mrs. Crupp, affecting to be very careful of the\nbrandy - which was all gone - thanked me with a majestic curtsey,\nand retired.  As her figure disappeared into the gloom of the\nentry, this counsel certainly presented itself to my mind in the\nlight of a slight liberty on Mrs. Crupp's part; but, at the same\ntime, I was content to receive it, in another point of view, as a\nword to the wise, and a warning in future to keep my secret better.\n\n\n\nCHAPTER 27\nTOMMY TRADDLES\n\n\nIt may have been in consequence of Mrs. Crupp's advice, and,\nperhaps, for no better reason than because there was a certain\nsimilarity in the sound of the word skittles and Traddles, that it\ncame into my head, next day, to go and look after Traddles.  The\ntime he had mentioned was more than out, and he lived in a little\nstreet near the Veterinary College at Camden Town, which was\nprincipally tenanted, as one of our clerks who lived in that\ndirection informed me, by gentlemen students, who bought live\ndonkeys, and made experiments on those quadrupeds in their private\napartments.  Having obtained from this clerk a direction to the\nacademic grove in question, I set out, the same afternoon, to visit\nmy old schoolfellow.\n\nI found that the street was not as desirable a one as I could have\nwished it to be, for the sake of Traddles.  The inhabitants\nappeared to have a propensity to throw any little trifles they were\nnot in want of, into the road: which not only made it rank and\nsloppy, but untidy too, on account of the cabbage-leaves.  The\nrefuse was not wholly vegetable either, for I myself saw a shoe, a\ndoubled-up saucepan, a black bonnet, and an umbrella, in various\nstages of decomposition, as I was looking out for the number I\nwanted.\n\nThe general air of the place reminded me forcibly of the days when\nI lived with Mr. and Mrs. Micawber.  An indescribable character of\nfaded gentility that attached to the house I sought, and made it\nunlike all the other houses in the street - though they were all\nbuilt on one monotonous pattern, and looked like the early copies\nof a blundering boy who was learning to make houses, and had not\nyet got out of his cramped brick-and-mortar pothooks - reminded me\nstill more of Mr. and Mrs. Micawber.  Happening to arrive at the\ndoor as it was opened to the afternoon milkman, I was reminded of\nMr. and Mrs. Micawber more forcibly yet.\n\n'Now,' said the milkman to a very youthful servant girl.  'Has that\nthere little bill of mine been heerd on?'\n\n'Oh, master says he'll attend to it immediate,' was the reply.\n\n'Because,' said the milkman, going on as if he had received no\nanswer, and speaking, as I judged from his tone, rather for the\nedification of somebody within the house, than of the youthful\nservant - an impression which was strengthened by his manner of\nglaring down the passage - 'because that there little bill has been\nrunning so long, that I begin to believe it's run away altogether,\nand never won't be heerd of.  Now, I'm not a going to stand it, you\nknow!' said the milkman, still throwing his voice into the house,\nand glaring down the passage.\n\nAs to his dealing in the mild article of milk, by the by, there\nnever was a greater anomaly.  His deportment would have been fierce\nin a butcher or a brandy-merchant.\n\nThe voice of the youthful servant became faint, but she seemed to\nme, from the action of her lips, again to murmur that it would be\nattended to immediate.\n\n'I tell you what,' said the milkman, looking hard at her for the\nfirst time, and taking her by the chin, 'are you fond of milk?'\n\n'Yes, I likes it,' she replied.\n'Good,' said the milkman.  'Then you won't have none tomorrow. \nD'ye hear?  Not a fragment of milk you won't have tomorrow.'\n\nI thought she seemed, upon the whole, relieved by the prospect of\nhaving any today.  The milkman, after shaking his head at her\ndarkly, released her chin, and with anything rather than good-will\nopened his can, and deposited the usual quantity in the family jug. \nThis done, he went away, muttering, and uttered the cry of his\ntrade next door, in a vindictive shriek.\n\n'Does Mr. Traddles live here?' I then inquired.\n\nA mysterious voice from the end of the passage replied 'Yes.'  Upon\nwhich the youthful servant replied 'Yes.'\n\n'Is he at home?' said I.\n\nAgain the mysterious voice replied in the affirmative, and again\nthe servant echoed it.  Upon this, I walked in, and in pursuance of\nthe servant's directions walked upstairs; conscious, as I passed\nthe back parlour-door, that I was surveyed by a mysterious eye,\nprobably belonging to the mysterious voice.\n\nWhen I got to the top of the stairs - the house was only a story\nhigh above the ground floor - Traddles was on the landing to meet\nme.  He was delighted to see me, and gave me welcome, with great\nheartiness, to his little room.  It was in the front of the house,\nand extremely neat, though sparely furnished.  It was his only\nroom, I saw; for there was a sofa-bedstead in it, and his\nblacking-brushes and blacking were among his books - on the top\nshelf, behind a dictionary.  His table was covered with papers, and\nhe was hard at work in an old coat.  I looked at nothing, that I\nknow of, but I saw everything, even to the prospect of a church\nupon his china inkstand, as I sat down - and this, too, was a\nfaculty confirmed in me in the old Micawber times.  Various\ningenious arrangements he had made, for the disguise of his chest\nof drawers, and the accommodation of his boots, his shaving-glass,\nand so forth, particularly impressed themselves upon me, as\nevidences of the same Traddles who used to make models of\nelephants' dens in writing-paper to put flies in; and to comfort\nhimself under ill usage, with the memorable works of art I have so\noften mentioned.\n\nIn a corner of the room was something neatly covered up with a\nlarge white cloth.  I could not make out what that was.\n\n'Traddles,' said I, shaking hands with him again, after I had sat\ndown, 'I am delighted to see you.'\n\n'I am delighted to see YOU, Copperfield,' he returned.  'I am very\nglad indeed to see you.  It was because I was thoroughly glad to\nsee you when we met in Ely Place, and was sure you were thoroughly\nglad to see me, that I gave you this address instead of my address\nat chambers.'\n'Oh!  You have chambers?' said I.\n\n'Why, I have the fourth of a room and a passage, and the fourth of\na clerk,' returned Traddles.  'Three others and myself unite to\nhave a set of chambers - to look business-like - and we quarter the\nclerk too.  Half-a-crown a week he costs me.'\n\nHis old simple character and good temper, and something of his old\nunlucky fortune also, I thought, smiled at me in the smile with\nwhich he made this explanation.\n\n'It's not because I have the least pride, Copperfield, you\nunderstand,' said Traddles, 'that I don't usually give my address\nhere.  It's only on account of those who come to me, who might not\nlike to come here.  For myself, I am fighting my way on in the\nworld against difficulties, and it would be ridiculous if I made a\npretence of doing anything else.'\n\n'You are reading for the bar, Mr. Waterbrook informed me?' said I.\n\n'Why, yes,' said Traddles, rubbing his hands slowly over one\nanother.  'I am reading for the bar.  The fact is, I have just\nbegun to keep my terms, after rather a long delay.  It's some time\nsince I was articled, but the payment of that hundred pounds was a\ngreat pull.  A great pull!' said Traddles, with a wince, as if he\nhad had a tooth out.\n\n'Do you know what I can't help thinking of, Traddles, as I sit here\nlooking at you?' I asked him.\n\n'No,' said he.\n\n'That sky-blue suit you used to wear.'\n\n'Lord, to be sure!' cried Traddles, laughing.  'Tight in the arms\nand legs, you know?  Dear me!  Well!  Those were happy times,\nweren't they?'\n\n'I think our schoolmaster might have made them happier, without\ndoing any harm to any of us, I acknowledge,' I returned.\n\n'Perhaps he might,' said Traddles.  'But dear me, there was a good\ndeal of fun going on.  Do you remember the nights in the bedroom? \nWhen we used to have the suppers?  And when you used to tell the\nstories?  Ha, ha, ha!  And do you remember when I got caned for\ncrying about Mr. Mell?  Old Creakle!  I should like to see him\nagain, too!'\n\n'He was a brute to you, Traddles,' said I, indignantly; for his\ngood humour made me feel as if I had seen him beaten but yesterday.\n\n'Do you think so?' returned Traddles.  'Really?  Perhaps he was\nrather.  But it's all over, a long while.  Old Creakle!'\n\n'You were brought up by an uncle, then?' said I.\n\n'Of course I was!' said Traddles.  'The one I was always going to\nwrite to.  And always didn't, eh!  Ha, ha, ha!  Yes, I had an uncle\nthen.  He died soon after I left school.'\n\n'Indeed!'\n\n'Yes.  He was a retired - what do you call it! - draper -\ncloth-merchant - and had made me his heir.  But he didn't like me\nwhen I grew up.'\n\n'Do you really mean that?' said I.  He was so composed, that I\nfancied he must have some other meaning.\n\n'Oh dear, yes, Copperfield!  I mean it,' replied Traddles.  'It was\nan unfortunate thing, but he didn't like me at all.  He said I\nwasn't at all what he expected, and so he married his housekeeper.'\n\n'And what did you do?' I asked.\n\n'I didn't do anything in particular,' said Traddles.  'I lived with\nthem, waiting to be put out in the world, until his gout\nunfortunately flew to his stomach - and so he died, and so she\nmarried a young man, and so I wasn't provided for.'\n\n'Did you get nothing, Traddles, after all?'\n\n'Oh dear, yes!' said Traddles.  'I got fifty pounds.  I had never\nbeen brought up to any profession, and at first I was at a loss\nwhat to do for myself.  However, I began, with the assistance of\nthe son of a professional man, who had been to Salem House -\nYawler, with his nose on one side.  Do you recollect him?'\n\nNo.  He had not been there with me; all the noses were straight in\nmy day.\n\n'It don't matter,' said Traddles.  'I began, by means of his\nassistance, to copy law writings.  That didn't answer very well;\nand then I began to state cases for them, and make abstracts, and\nthat sort of work.  For I am a plodding kind of fellow,\nCopperfield, and had learnt the way of doing such things pithily. \nWell!  That put it in my head to enter myself as a law student; and\nthat ran away with all that was left of the fifty pounds.  Yawler\nrecommended me to one or two other offices, however - Mr.\nWaterbrook's for one - and I got a good many jobs.  I was fortunate\nenough, too, to become acquainted with a person in the publishing\nway, who was getting up an Encyclopaedia, and he set me to work;\nand, indeed' (glancing at his table), 'I am at work for him at this\nminute.  I am not a bad compiler, Copperfield,' said Traddles,\npreserving the same air of cheerful confidence in all he said, 'but\nI have no invention at all; not a particle.  I suppose there never\nwas a young man with less originality than I have.'\n\nAs Traddles seemed to expect that I should assent to this as a\nmatter of course, I nodded; and he went on, with the same sprightly\npatience - I can find no better expression - as before.\n\n'So, by little and little, and not living high, I managed to scrape\nup the hundred pounds at last,' said Traddles; 'and thank Heaven\nthat's paid - though it was - though it certainly was,' said\nTraddles, wincing again as if he had had another tooth out, 'a\npull.  I am living by the sort of work I have mentioned, still, and\nI hope, one of these days, to get connected with some newspaper:\nwhich would almost be the making of my fortune.  Now, Copperfield,\nyou are so exactly what you used to be, with that agreeable face,\nand it's so pleasant to see you, that I sha'n't conceal anything. \nTherefore you must know that I am engaged.'\n\nEngaged!  Oh, Dora!\n\n'She is a curate's daughter,' said Traddles; 'one of ten, down in\nDevonshire.  Yes!' For he saw me glance, involuntarily, at the\nprospect on the inkstand.  'That's the church!  You come round here\nto the left, out of this gate,' tracing his finger along the\ninkstand, 'and exactly where I hold this pen, there stands the\nhouse - facing, you understand, towards the church.'\n\nThe delight with which he entered into these particulars, did not\nfully present itself to me until afterwards; for my selfish\nthoughts were making a ground-plan of Mr. Spenlow's house and\ngarden at the same moment.\n\n'She is such a dear girl!' said Traddles; 'a little older than me,\nbut the dearest girl!  I told you I was going out of town?  I have\nbeen down there.  I walked there, and I walked back, and I had the\nmost delightful time!  I dare say ours is likely to be a rather\nlong engagement, but our motto is \"Wait and hope!\" We always say\nthat.  \"Wait and hope,\" we always say.  And she would wait,\nCopperfield, till she was sixty - any age you can mention - for\nme!'\n\nTraddles rose from his chair, and, with a triumphant smile, put his\nhand upon the white cloth I had observed.\n\n'However,' he said, 'it's not that we haven't made a beginning\ntowards housekeeping.  No, no; we have begun.  We must get on by\ndegrees, but we have begun.  Here,' drawing the cloth off with\ngreat pride and care, 'are two pieces of furniture to commence\nwith.  This flower-pot and stand, she bought herself.  You put that\nin a parlour window,' said Traddles, falling a little back from it\nto survey it with the greater admiration, 'with a plant in it, and\n- and there you are!  This little round table with the marble top\n(it's two feet ten in circumference), I bought.  You want to lay a\nbook down, you know, or somebody comes to see you or your wife, and\nwants a place to stand a cup of tea upon, and - and there you are\nagain!' said Traddles.  'It's an admirable piece of workmanship -\nfirm as a rock!'\nI praised them both, highly, and Traddles replaced the covering as\ncarefully as he had removed it.\n\n'It's not a great deal towards the furnishing,' said Traddles, 'but\nit's something.  The table-cloths, and pillow-cases, and articles\nof that kind, are what discourage me most, Copperfield.  So does\nthe ironmongery - candle-boxes, and gridirons, and that sort of\nnecessaries - because those things tell, and mount up.  However,\n\"wait\n\nand hope!\" And I assure you she's the dearest girl!'\n\n'I am quite certain of it,' said I.\n\n'In the meantime,' said Traddles, coming back to his chair; 'and\nthis is the end of my prosing about myself, I get on as well as I\ncan.  I don't make much, but I don't spend much.  In general, I\nboard with the people downstairs, who are very agreeable people\nindeed.  Both Mr. and Mrs. Micawber have seen a good deal of life,\nand are excellent company.'\n\n'My dear Traddles!' I quickly exclaimed.  'What are you talking\nabout?'\n\nTraddles looked at me, as if he wondered what I was talking about.\n\n'Mr. and Mrs. Micawber!' I repeated.  'Why, I am intimately\nacquainted with them!'\n\nAn opportune double knock at the door, which I knew well from old\nexperience in Windsor Terrace, and which nobody but Mr. Micawber\ncould ever have knocked at that door, resolved any doubt in my mind\nas to their being my old friends.  I begged Traddles to ask his\nlandlord to walk up.  Traddles accordingly did so, over the\nbanister; and Mr. Micawber, not a bit changed - his tights, his\nstick, his shirt-collar, and his eye-glass, all the same as ever -\ncame into the room with a genteel and youthful air.\n\n'I beg your pardon, Mr. Traddles,' said Mr. Micawber, with the old\nroll in his voice, as he checked himself in humming a soft tune. \n'I was not aware that there was any individual, alien to this\ntenement, in your sanctum.'\n\nMr. Micawber slightly bowed to me, and pulled up his shirt-collar.\n\n'How do you do, Mr. Micawber?' said I.\n\n'Sir,' said Mr. Micawber, 'you are exceedingly obliging.  I am in\nstatu quo.'\n\n'And Mrs. Micawber?' I pursued.\n\n'Sir,' said Mr. Micawber, 'she is also, thank God, in statu quo.'\n\n'And the children, Mr. Micawber?'\n\n'Sir,' said Mr. Micawber, 'I rejoice to reply that they are,\nlikewise, in the enjoyment of salubrity.'\n\nAll this time, Mr. Micawber had not known me in the least, though\nhe had stood face to face with me.  But now, seeing me smile, he\nexamined my features with more attention, fell back, cried, 'Is it\npossible!  Have I the pleasure of again beholding Copperfield!' and\nshook me by both hands with the utmost fervour.\n\n'Good Heaven, Mr. Traddles!' said Mr. Micawber, 'to think that I\nshould find you acquainted with the friend of my youth, the\ncompanion of earlier days!  My dear!' calling over the banisters to\nMrs. Micawber, while Traddles looked (with reason) not a little\namazed at this description of me.  'Here is a gentleman in Mr.\nTraddles's apartment, whom he wishes to have the pleasure of\npresenting to you, my love!'\n\nMr. Micawber immediately reappeared, and shook hands with me again.\n\n'And how is our good friend the Doctor, Copperfield?' said Mr.\nMicawber, 'and all the circle at Canterbury?'\n\n'I have none but good accounts of them,' said I.\n\n'I am most delighted to hear it,' said Mr. Micawber.  'It was at\nCanterbury where we last met.  Within the shadow, I may\nfiguratively say, of that religious edifice immortalized by\nChaucer, which was anciently the resort of Pilgrims from the\nremotest corners of - in short,' said Mr. Micawber, 'in the\nimmediate neighbourhood of the Cathedral.'\n\nI replied that it was.  Mr. Micawber continued talking as volubly\nas he could; but not, I thought, without showing, by some marks of\nconcern in his countenance, that he was sensible of sounds in the\nnext room, as of Mrs. Micawber washing her hands, and hurriedly\nopening and shutting drawers that were uneasy in their action.\n\n'You find us, Copperfield,' said Mr. Micawber, with one eye on\nTraddles, 'at present established, on what may be designated as a\nsmall and unassuming scale; but, you are aware that I have, in the\ncourse of my career, surmounted difficulties, and conquered\nobstacles.  You are no stranger to the fact, that there have been\nperiods of my life, when it has been requisite that I should pause,\nuntil certain expected events should turn up; when it has been\nnecessary that I should fall back, before making what I trust I\nshall not be accused of presumption in terming - a spring.  The\npresent is one of those momentous stages in the life of man.  You\nfind me, fallen back, FOR a spring; and I have every reason to\nbelieve that a vigorous leap will shortly be the result.'\n\nI was expressing my satisfaction, when Mrs. Micawber came in; a\nlittle more slatternly than she used to be, or so she seemed now,\nto my unaccustomed eyes, but still with some preparation of herself\nfor company, and with a pair of brown gloves on.\n\n'My dear,' said Mr. Micawber, leading her towards me, 'here is a\ngentleman of the name of Copperfield, who wishes to renew his\nacquaintance with you.'\n\nIt would have been better, as it turned out, to have led gently up\nto this announcement, for Mrs. Micawber, being in a delicate state\nof health, was overcome by it, and was taken so unwell, that Mr.\nMicawber was obliged, in great trepidation, to run down to the\nwater-butt in the backyard, and draw a basinful to lave her brow\nwith.  She presently revived, however, and was really pleased to\nsee me.  We had half-an-hour's talk, all together; and I asked her\nabout the twins, who, she said, were 'grown great creatures'; and\nafter Master and Miss Micawber, whom she described as 'absolute\ngiants', but they were not produced on that occasion.\n\nMr. Micawber was very anxious that I should stay to dinner.  I\nshould not have been averse to do so, but that I imagined I\ndetected trouble, and calculation relative to the extent of the\ncold meat, in Mrs. Micawber's eye.  I therefore pleaded another\nengagement; and observing that Mrs. Micawber's spirits were\nimmediately lightened, I resisted all persuasion to forego it.\n\nBut I told Traddles, and Mr. and Mrs. Micawber, that before I could\nthink of leaving, they must appoint a day when they would come and\ndine with me.  The occupations to which Traddles stood pledged,\nrendered it necessary to fix a somewhat distant one; but an\nappointment was made for the purpose, that suited us all, and then\nI took my leave.\n\nMr. Micawber, under pretence of showing me a nearer way than that\nby which I had come, accompanied me to the corner of the street;\nbeing anxious (he explained to me) to say a few words to an old\nfriend, in confidence.\n\n'My dear Copperfield,' said Mr. Micawber, 'I need hardly tell you\nthat to have beneath our roof, under existing circumstances, a mind\nlike that which gleams - if I may be allowed the expression - which\ngleams - in your friend Traddles, is an unspeakable comfort.  With\na washerwoman, who exposes hard-bake for sale in her\nparlour-window, dwelling next door, and a Bow-street officer\nresiding over the way, you may imagine that his society is a source\nof consolation to myself and to Mrs. Micawber.  I am at present, my\ndear Copperfield, engaged in the sale of corn upon commission.  It\nis not an avocation of a remunerative description - in other words,\nit does not pay - and some temporary embarrassments of a pecuniary\nnature have been the consequence.  I am, however, delighted to add\nthat I have now an immediate prospect of something turning up (I am\nnot at liberty to say in what direction), which I trust will enable\nme to provide, permanently, both for myself and for your friend\nTraddles, in whom I have an unaffected interest.  You may, perhaps,\nbe prepared to hear that Mrs. Micawber is in a state of health\nwhich renders it not wholly improbable that an addition may be\nultimately made to those pledges of affection which - in short, to\nthe infantine group.  Mrs. Micawber's family have been so good as\nto express their dissatisfaction at this state of things.  I have\nmerely to observe, that I am not aware that it is any business of\ntheirs, and that I repel that exhibition of feeling with scorn, and\nwith defiance!'\n\nMr. Micawber then shook hands with me again, and left me.\n\n\n\nCHAPTER 28\nMr. MICAWBER'S GAUNTLET\n\n\nUntil the day arrived on which I was to entertain my newly-found\nold friends, I lived principally on Dora and coffee.  In my\nlove-lorn condition, my appetite languished; and I was glad of it,\nfor I felt as though it would have been an act of perfidy towards\nDora to have a natural relish for my dinner.  The quantity of\nwalking exercise I took, was not in this respect attended with its\nusual consequence, as the disappointment counteracted the fresh\nair.  I have my doubts, too, founded on the acute experience\nacquired at this period of my life, whether a sound enjoyment of\nanimal food can develop itself freely in any human subject who is\nalways in torment from tight boots.  I think the extremities\nrequire to be at peace before the stomach will conduct itself with\nvigour.\n\nOn the occasion of this domestic little party, I did not repeat my\nformer extensive preparations.  I merely provided a pair of soles,\na small leg of mutton, and a pigeon-pie.  Mrs. Crupp broke out into\nrebellion on my first bashful hint in reference to the cooking of\nthe fish and joint, and said, with a dignified sense of injury,\n'No!  No, sir!  You will not ask me sich a thing, for you are\nbetter acquainted with me than to suppose me capable of doing what\nI cannot do with ampial satisfaction to my own feelings!' But, in\nthe end, a compromise was effected; and Mrs. Crupp consented to\nachieve this feat, on condition that I dined from home for a\nfortnight afterwards.\n\nAnd here I may remark, that what I underwent from Mrs. Crupp, in\nconsequence of the tyranny she established over me, was dreadful. \nI never was so much afraid of anyone.  We made a compromise of\neverything.  If I hesitated, she was taken with that wonderful\ndisorder which was always lying in ambush in her system, ready, at\nthe shortest notice, to prey upon her vitals.  If I rang the bell\nimpatiently, after half-a-dozen unavailing modest pulls, and she\nappeared at last - which was not by any means to be relied upon -\nshe would appear with a reproachful aspect, sink breathless on a\nchair near the door, lay her hand upon her nankeen bosom, and\nbecome so ill, that I was glad, at any sacrifice of brandy or\nanything else, to get rid of her.  If I objected to having my bed\nmade at five o'clock in the afternoon - which I do still think an\nuncomfortable arrangement - one motion of her hand towards the same\nnankeen region of wounded sensibility was enough to make me falter\nan apology.  In short, I would have done anything in an honourable\nway rather than give Mrs. Crupp offence; and she was the terror of\nmy life.\n\nI bought a second-hand dumb-waiter for this dinner-party, in\npreference to re-engaging the handy young man; against whom I had\nconceived a prejudice, in consequence of meeting him in the Strand,\none Sunday morning, in a waistcoat remarkably like one of mine,\nwhich had been missing since the former occasion.  The 'young gal'\nwas re-engaged; but on the stipulation that she should only bring\nin the dishes, and then withdraw to the landing-place, beyond the\nouter door; where a habit of sniffing she had contracted would be\nlost upon the guests, and where her retiring on the plates would be\na physical impossibility.\n\nHaving laid in the materials for a bowl of punch, to be compounded\nby Mr. Micawber; having provided a bottle of lavender-water, two\nwax-candles, a paper of mixed pins, and a pincushion, to assist\nMrs. Micawber in her toilette at my dressing-table; having also\ncaused the fire in my bedroom to be lighted for Mrs. Micawber's\nconvenience; and having laid the cloth with my own hands, I awaited\nthe result with composure.\n\nAt the appointed time, my three visitors arrived together.  Mr.\nMicawber with more shirt-collar than usual, and a new ribbon to his\neye-glass; Mrs. Micawber with her cap in a whitey-brown paper\nparcel; Traddles carrying the parcel, and supporting Mrs. Micawber\non his arm.  They were all delighted with my residence.  When I\nconducted Mrs. Micawber to my dressing-table, and she saw the scale\non which it was prepared for her, she was in such raptures, that\nshe called Mr. Micawber to come in and look.\n\n'My dear Copperfield,' said Mr. Micawber, 'this is luxurious.  This\nis a way of life which reminds me of the period when I was myself\nin a state of celibacy, and Mrs. Micawber had not yet been\nsolicited to plight her faith at the Hymeneal altar.'\n\n'He means, solicited by him, Mr. Copperfield,' said Mrs. Micawber,\narchly.  'He cannot answer for others.'\n\n'My dear,' returned Mr. Micawber with sudden seriousness, 'I have\nno desire to answer for others.  I am too well aware that when, in\nthe inscrutable decrees of Fate, you were reserved for me, it is\npossible you may have been reserved for one, destined, after a\nprotracted struggle, at length to fall a victim to pecuniary\ninvolvements of a complicated nature.  I understand your allusion,\nmy love.  I regret it, but I can bear it.'\n\n'Micawber!' exclaimed Mrs. Micawber, in tears.  'Have I deserved\nthis!  I, who never have deserted you; who never WILL desert you,\nMicawber!'\n'My love,' said Mr. Micawber, much affected, 'you will forgive, and\nour old and tried friend Copperfield will, I am sure, forgive, the\nmomentary laceration of a wounded spirit, made sensitive by a\nrecent collision with the Minion of Power - in other words, with a\nribald Turncock attached to the water-works - and will pity, not\ncondemn, its excesses.'\n\nMr. Micawber then embraced Mrs. Micawber, and pressed my hand;\nleaving me to infer from this broken allusion that his domestic\nsupply of water had been cut off that afternoon, in consequence of\ndefault in the payment of the company's rates.\n\nTo divert his thoughts from this melancholy subject, I informed Mr.\nMicawber that I relied upon him for a bowl of punch, and led him to\nthe lemons.  His recent despondency, not to say despair, was gone\nin a moment.  I never saw a man so thoroughly enjoy himself amid\nthe fragrance of lemon-peel and sugar, the odour of burning rum,\nand the steam of boiling water, as Mr. Micawber did that afternoon. \nIt was wonderful to see his face shining at us out of a thin cloud\nof these delicate fumes, as he stirred, and mixed, and tasted, and\nlooked as if he were making, instead of punch, a fortune for his\nfamily down to the latest posterity.  As to Mrs. Micawber, I don't\nknow whether it was the effect of the cap, or the lavender-water,\nor the pins, or the fire, or the wax-candles, but she came out of\nmy room, comparatively speaking, lovely.  And the lark was never\ngayer than that excellent woman.\n\nI suppose - I never ventured to inquire, but I suppose - that Mrs.\nCrupp, after frying the soles, was taken ill.  Because we broke\ndown at that point.  The leg of mutton came up very red within, and\nvery pale without: besides having a foreign substance of a gritty\nnature sprinkled over it, as if if had had a fall into the ashes of\nthat remarkable kitchen fireplace.  But we were not in condition to\njudge of this fact from the appearance of the gravy, forasmuch as\nthe 'young gal' had dropped it all upon the stairs - where it\nremained, by the by, in a long train, until it was worn out.  The\npigeon-pie was not bad, but it was a delusive pie: the crust being\nlike a disappointing head, phrenologically speaking: full of lumps\nand bumps, with nothing particular underneath.  In short, the\nbanquet was such a failure that I should have been quite unhappy -\nabout the failure, I mean, for I was always unhappy about Dora - if\nI had not been relieved by the great good humour of my company, and\nby a bright suggestion from Mr. Micawber.\n\n'My dear friend Copperfield,' said Mr. Micawber, 'accidents will\noccur in the best-regulated families; and in families not regulated\nby that pervading influence which sanctifies while it enhances the\n- a - I would say, in short, by the influence of Woman, in the\nlofty character of Wife, they may be expected with confidence, and\nmust be borne with philosophy.  If you will allow me to take the\nliberty of remarking that there are few comestibles better, in\ntheir way, than a Devil, and that I believe, with a little division\nof labour, we could accomplish a good one if the young person in\nattendance could produce a gridiron, I would put it to you, that\nthis little misfortune may be easily repaired.'\n\nThere was a gridiron in the pantry, on which my morning rasher of\nbacon was cooked.  We had it in, in a twinkling, and immediately\napplied ourselves to carrying Mr. Micawber's idea into effect.  The\ndivision of labour to which he had referred was this: - Traddles\ncut the mutton into slices; Mr. Micawber (who could do anything of\nthis sort to perfection) covered them with pepper, mustard, salt,\nand cayenne; I put them on the gridiron, turned them with a fork,\nand took them off, under Mr. Micawber's direction; and Mrs.\nMicawber heated, and continually stirred, some mushroom ketchup in\na little saucepan.  When we had slices enough done to begin upon,\nwe fell-to, with our sleeves still tucked up at the wrist, more\nslices sputtering and blazing on the fire, and our attention\ndivided between the mutton on our plates, and the mutton then\npreparing.\n\nWhat with the novelty of this cookery, the excellence of it, the\nbustle of it, the frequent starting up to look after it, the\nfrequent sitting down to dispose of it as the crisp slices came off\nthe gridiron hot and hot, the being so busy, so flushed with the\nfire, so amused, and in the midst of such a tempting noise and\nsavour, we reduced the leg of mutton to the bone.  My own appetite\ncame back miraculously.  I am ashamed to record it, but I really\nbelieve I forgot Dora for a little while.  I am satisfied that Mr.\nand Mrs. Micawber could not have enjoyed the feast more, if they\nhad sold a bed to provide it.  Traddles laughed as heartily, almost\nthe whole time, as he ate and worked.  Indeed we all did, all at\nonce; and I dare say there was never a greater success.\n\nWe were at the height of our enjoyment, and were all busily\nengaged, in our several departments, endeavouring to bring the last\nbatch of slices to a state of perfection that should crown the\nfeast, when I was aware of a strange presence in the room, and my\neyes encountered those of the staid Littimer, standing hat in hand\nbefore me.\n\n'What's the matter?' I involuntarily asked.\n\n'I beg your pardon, sir, I was directed to come in.  Is my master\nnot here, sir?'\n\n'No.'\n\n'Have you not seen him, sir?'\n\n'No; don't you come from him?'\n\n'Not immediately so, sir.'\n\n'Did he tell you you would find him here?'\n\n'Not exactly so, sir.  But I should think he might be here\ntomorrow, as he has not been here today.'\n'Is he coming up from Oxford?'\n\n'I beg, sir,' he returned respectfully, 'that you will be seated,\nand allow me to do this.'  With which he took the fork from my\nunresisting hand, and bent over the gridiron, as if his whole\nattention were concentrated on it.\n\nWe should not have been much discomposed, I dare say, by the\nappearance of Steerforth himself, but we became in a moment the\nmeekest of the meek before his respectable serving-man.  Mr.\nMicawber, humming a tune, to show that he was quite at ease,\nsubsided into his chair, with the handle of a hastily concealed\nfork sticking out of the bosom of his coat, as if he had stabbed\nhimself.  Mrs. Micawber put on her brown gloves, and assumed a\ngenteel languor.  Traddles ran his greasy hands through his hair,\nand stood it bolt upright, and stared in confusion on the\ntable-cloth.  As for me, I was a mere infant at the head of my own\ntable; and hardly ventured to glance at the respectable phenomenon,\nwho had come from Heaven knows where, to put my establishment to\nrights.\n\nMeanwhile he took the mutton off the gridiron, and gravely handed\nit round.  We all took some, but our appreciation of it was gone,\nand we merely made a show of eating it.  As we severally pushed\naway our plates, he noiselessly removed them, and set on the\ncheese.  He took that off, too, when it was done with; cleared the\ntable; piled everything on the dumb-waiter; gave us our\nwine-glasses; and, of his own accord, wheeled the dumb-waiter into\nthe pantry.  All this was done in a perfect manner, and he never\nraised his eyes from what he was about.  Yet his very elbows, when\nhe had his back towards me, seemed to teem with the expression of\nhis fixed opinion that I was extremely young.\n\n'Can I do anything more, sir?'\n\nI thanked him and said, No; but would he take no dinner himself?\n\n'None, I am obliged to you, sir.'\n\n'Is Mr. Steerforth coming from Oxford?'\n\n'I beg your pardon, sir?'\n\n'Is Mr. Steerforth coming from Oxford?'\n\n'I should imagine that he might be here tomorrow, sir.  I rather\nthought he might have been here today, sir.  The mistake is mine,\nno doubt, sir.'\n\n'If you should see him first -' said I.\n\n'If you'll excuse me, sir, I don't think I shall see him first.'\n\n'In case you do,' said I, 'pray say that I am sorry he was not here\ntoday, as an old schoolfellow of his was here.'\n\n'Indeed, sir!' and he divided a bow between me and Traddles, with\na glance at the latter.\n\nHe was moving softly to the door, when, in a forlorn hope of saying\nsomething naturally - which I never could, to this man - I said:\n\n'Oh! Littimer!'\n\n'Sir!'\n\n'Did you remain long at Yarmouth, that time?'\n\n'Not particularly so, sir.'\n\n'You saw the boat completed?'\n\n'Yes, sir.  I remained behind on purpose to see the boat\ncompleted.'\n\n'I know!' He raised his eyes to mine respectfully.\n\n'Mr. Steerforth has not seen it yet, I suppose?'\n\n'I really can't say, sir.  I think - but I really can't say, sir. \nI wish you good night, sir.'\n\nHe comprehended everybody present, in the respectful bow with which\nhe followed these words, and disappeared.  My visitors seemed to\nbreathe more freely when he was gone; but my own relief was very\ngreat, for besides the constraint, arising from that extraordinary\nsense of being at a disadvantage which I always had in this man's\npresence, my conscience had embarrassed me with whispers that I had\nmistrusted his master, and I could not repress a vague uneasy dread\nthat he might find it out.  How was it, having so little in reality\nto conceal, that I always DID feel as if this man were finding me\nout?\n\nMr. Micawber roused me from this reflection, which was blended with\na certain remorseful apprehension of seeing Steerforth himself, by\nbestowing many encomiums on the absent Littimer as a most\nrespectable fellow, and a thoroughly admirable servant.  Mr.\nMicawber, I may remark, had taken his full share of the general\nbow, and had received it with infinite condescension.\n\n'But punch, my dear Copperfield,' said Mr. Micawber, tasting it,\n'like time and tide, waits for no man.  Ah! it is at the present\nmoment in high flavour.  My love, will you give me your opinion?'\n\nMrs. Micawber pronounced it excellent.\n\n'Then I will drink,' said Mr. Micawber, 'if my friend Copperfield\nwill permit me to take that social liberty, to the days when my\nfriend Copperfield and myself were younger, and fought our way in\nthe world side by side.  I may say, of myself and Copperfield, in\nwords we have sung together before now, that\n\n\nWe twa hae run about the braes\nAnd pu'd the gowans' fine\n\n\n- in a figurative point of view - on several occasions.  I am not\nexactly aware,' said Mr. Micawber, with the old roll in his voice,\nand the old indescribable air of saying something genteel, 'what\ngowans may be, but I have no doubt that Copperfield and myself\nwould frequently have taken a pull at them, if it had been\nfeasible.'\n\nMr. Micawber, at the then present moment, took a pull at his punch. \nSo we all did: Traddles evidently lost in wondering at what distant\ntime Mr. Micawber and I could have been comrades in the battle of\nthe world.\n\n'Ahem!' said Mr. Micawber, clearing his throat, and warming with\nthe punch and with the fire.  'My dear, another glass?'\n\nMrs. Micawber said it must be very little; but we couldn't allow\nthat, so it was a glassful.\n\n'As we are quite confidential here, Mr. Copperfield,' said Mrs.\nMicawber, sipping her punch, 'Mr. Traddles being a part of our\ndomesticity, I should much like to have your opinion on Mr.\nMicawber's prospects.  For corn,' said Mrs. Micawber\nargumentatively, 'as I have repeatedly said to Mr. Micawber, may be\ngentlemanly, but it is not remunerative.  Commission to the extent\nof two and ninepence in a fortnight cannot, however limited our\nideas, be considered remunerative.'\n\nWe were all agreed upon that.\n\n'Then,' said Mrs. Micawber, who prided herself on taking a clear\nview of things, and keeping Mr. Micawber straight by her woman's\nwisdom, when he might otherwise go a little crooked, 'then I ask\nmyself this question.  If corn is not to be relied upon, what is? \nAre coals to be relied upon?  Not at all.  We have turned our\nattention to that experiment, on the suggestion of my family, and\nwe find it fallacious.'\n\nMr. Micawber, leaning back in his chair with his hands in his\npockets, eyed us aside, and nodded his head, as much as to say that\nthe case was very clearly put.\n\n'The articles of corn and coals,' said Mrs. Micawber, still more\nargumentatively, 'being equally out of the question, Mr.\nCopperfield, I naturally look round the world, and say, \"What is\nthere in which a person of Mr. Micawber's talent is likely to\nsucceed?\" And I exclude the doing anything on commission, because\ncommission is not a certainty.  What is best suited to a person of\nMr. Micawber's peculiar temperament is, I am convinced, a\ncertainty.'\n\nTraddles and I both expressed, by a feeling murmur, that this great\ndiscovery was no doubt true of Mr. Micawber, and that it did him\nmuch credit.\n\n'I will not conceal from you, my dear Mr. Copperfield,' said Mrs.\nMicawber, 'that I have long felt the Brewing business to be\nparticularly adapted to Mr. Micawber.  Look at Barclay and Perkins!\nLook at Truman, Hanbury, and Buxton!  It is on that extensive\nfooting that Mr. Micawber, I know from my own knowledge of him, is\ncalculated to shine; and the profits, I am told, are e-NOR-MOUS!\nBut if Mr. Micawber cannot get into those firms - which decline to\nanswer his letters, when he offers his services even in an inferior\ncapacity - what is the use of dwelling upon that idea?  None.  I\nmay have a conviction that Mr. Micawber's manners -'\n\n'Hem!  Really, my dear,' interposed Mr. Micawber.\n\n'My love, be silent,' said Mrs. Micawber, laying her brown glove on\nhis hand.  'I may have a conviction, Mr. Copperfield, that Mr.\nMicawber's manners peculiarly qualify him for the Banking business. \nI may argue within myself, that if I had a deposit at a\nbanking-house, the manners of Mr. Micawber, as representing that\nbanking-house, would inspire confidence, and must extend the\nconnexion.  But if the various banking-houses refuse to avail\nthemselves of Mr. Micawber's abilities, or receive the offer of\nthem with contumely, what is the use of dwelling upon THAT idea? \nNone.  As to originating a banking-business, I may know that there\nare members of my family who, if they chose to place their money in\nMr. Micawber's hands, might found an establishment of that\ndescription.  But if they do NOT choose to place their money in Mr.\nMicawber's hands - which they don't - what is the use of that? \nAgain I contend that we are no farther advanced than we were\nbefore.'\n\nI shook my head, and said, 'Not a bit.'  Traddles also shook his\nhead, and said, 'Not a bit.'\n\n'What do I deduce from this?' Mrs. Micawber went on to say, still\nwith the same air of putting a case lucidly.  'What is the\nconclusion, my dear Mr. Copperfield, to which I am irresistibly\nbrought?  Am I wrong in saying, it is clear that we must live?'\n\nI answered 'Not at all!' and Traddles answered 'Not at all!' and I\nfound myself afterwards sagely adding, alone, that a person must\neither live or die.\n\n'Just so,' returned Mrs. Micawber, 'It is precisely that.  And the\nfact is, my dear Mr. Copperfield, that we can not live without\nsomething widely different from existing circumstances shortly\nturning up.  Now I am convinced, myself, and this I have pointed\nout to Mr. Micawber several times of late, that things cannot be\nexpected to turn up of themselves.  We must, in a measure, assist\nto turn them up.  I may be wrong, but I have formed that opinion.'\n\nBoth Traddles and I applauded it highly.\n\n'Very well,' said Mrs. Micawber.  'Then what do I recommend?  Here\nis Mr. Micawber with a variety of qualifications - with great\ntalent -'\n\n'Really, my love,' said Mr. Micawber.\n\n'Pray, my dear, allow me to conclude.  Here is Mr. Micawber, with\na variety of qualifications, with great talent - I should say, with\ngenius, but that may be the partiality of a wife -'\n\nTraddles and I both murmured 'No.'\n\n'And here is Mr. Micawber without any suitable position or\nemployment.  Where does that responsibility rest?  Clearly on\nsociety.  Then I would make a fact so disgraceful known, and boldly\nchallenge society to set it right.  It appears to me, my dear Mr.\nCopperfield,' said Mrs. Micawber, forcibly, 'that what Mr. Micawber\nhas to do, is to throw down the gauntlet to society, and say, in\neffect, \"Show me who will take that up.  Let the party immediately\nstep forward.\"'\n\nI ventured to ask Mrs. Micawber how this was to be done.\n\n'By advertising,' said Mrs. Micawber - 'in all the papers.  It\nappears to me, that what Mr. Micawber has to do, in justice to\nhimself, in justice to his family, and I will even go so far as to\nsay in justice to society, by which he has been hitherto\noverlooked, is to advertise in all the papers; to describe himself\nplainly as so-and-so, with such and such qualifications and to put\nit thus: \"Now employ me, on remunerative terms, and address,\npost-paid, to W. M., Post Office, Camden Town.\"'\n\n'This idea of Mrs. Micawber's, my dear Copperfield,' said Mr.\nMicawber, making his shirt-collar meet in front of his chin, and\nglancing at me sideways, 'is, in fact, the Leap to which I alluded,\nwhen I last had the pleasure of seeing you.'\n\n'Advertising is rather expensive,' I remarked, dubiously.\n\n'Exactly so!' said Mrs. Micawber, preserving the same logical air. \n'Quite true, my dear Mr. Copperfield!  I have made the identical\nobservation to Mr. Micawber.  It is for that reason especially,\nthat I think Mr. Micawber ought (as I have already said, in justice\nto himself, in justice to his family, and in justice to society) to\nraise a certain sum of money - on a bill.'\n\nMr. Micawber, leaning back in his chair, trifled with his eye-glass\nand cast his eyes up at the ceiling; but I thought him observant of\nTraddles, too, who was looking at the fire.\n\n'If no member of my family,' said Mrs. Micawber, 'is possessed of\nsufficient natural feeling to negotiate that bill - I believe there\nis a better business-term to express what I mean -'\n\nMr. Micawber, with his eyes still cast up at the ceiling, suggested\n'Discount.'\n\n'To discount that bill,' said Mrs. Micawber, 'then my opinion is,\nthat Mr. Micawber should go into the City, should take that bill\ninto the Money Market, and should dispose of it for what he can\nget.  If the individuals in the Money Market oblige Mr. Micawber to\nsustain a great sacrifice, that is between themselves and their\nconsciences.  I view it, steadily, as an investment.  I recommend\nMr. Micawber, my dear Mr. Copperfield, to do the same; to regard it\nas an investment which is sure of return, and to make up his mind\nto any sacrifice.'\n\nI felt, but I am sure I don't know why, that this was self-denying\nand devoted in Mrs. Micawber, and I uttered a murmur to that\neffect.  Traddles, who took his tone from me, did likewise, still\nlooking at the fire.\n\n'I will not,' said Mrs. Micawber, finishing her punch, and\ngathering her scarf about her shoulders, preparatory to her\nwithdrawal to my bedroom: 'I will not protract these remarks on the\nsubject of Mr. Micawber's pecuniary affairs.  At your fireside, my\ndear Mr. Copperfield, and in the presence of Mr. Traddles, who,\nthough not so old a friend, is quite one of ourselves, I could not\nrefrain from making you acquainted with the course I advise Mr.\nMicawber to take.  I feel that the time is arrived when Mr.\nMicawber should exert himself and - I will add - assert himself,\nand it appears to me that these are the means.  I am aware that I\nam merely a female, and that a masculine judgement is usually\nconsidered more competent to the discussion of such questions;\nstill I must not forget that, when I lived at home with my papa and\nmama, my papa was in the habit of saying, \"Emma's form is fragile,\nbut her grasp of a subject is inferior to none.\" That my papa was\ntoo partial, I well know; but that he was an observer of character\nin some degree, my duty and my reason equally forbid me to doubt.'\n\nWith these words, and resisting our entreaties that she would grace\nthe remaining circulation of the punch with her presence, Mrs.\nMicawber retired to my bedroom.  And really I felt that she was a\nnoble woman - the sort of woman who might have been a Roman matron,\nand done all manner of heroic things, in times of public trouble.\n\nIn the fervour of this impression, I congratulated Mr. Micawber on\nthe treasure he possessed.  So did Traddles.  Mr. Micawber extended\nhis hand to each of us in succession, and then covered his face\nwith his pocket-handkerchief, which I think had more snuff upon it\nthan he was aware of.  He then returned to the punch, in the\nhighest state of exhilaration.\n\nHe was full of eloquence.  He gave us to understand that in our\nchildren we lived again, and that, under the pressure of pecuniary\ndifficulties, any accession to their number was doubly welcome.  He\nsaid that Mrs. Micawber had latterly had her doubts on this point,\nbut that he had dispelled them, and reassured her.  As to her\nfamily, they were totally unworthy of her, and their sentiments\nwere utterly indifferent to him, and they might - I quote his own\nexpression - go to the Devil.\n\nMr. Micawber then delivered a warm eulogy on Traddles.  He said\nTraddles's was a character, to the steady virtues of which he (Mr.\nMicawber) could lay no claim, but which, he thanked Heaven, he\ncould admire.  He feelingly alluded to the young lady, unknown,\nwhom Traddles had honoured with his affection, and who had\nreciprocated that affection by honouring and blessing Traddles with\nher affection.  Mr. Micawber pledged her.  So did I.  Traddles\nthanked us both, by saying, with a simplicity and honesty I had\nsense enough to be quite charmed with, 'I am very much obliged to\nyou indeed.  And I do assure you, she's the dearest girl! -'\n\nMr. Micawber took an early opportunity, after that, of hinting,\nwith the utmost delicacy and ceremony, at the state of MY\naffections.  Nothing but the serious assurance of his friend\nCopperfield to the contrary, he observed, could deprive him of the\nimpression that his friend Copperfield loved and was beloved. \nAfter feeling very hot and uncomfortable for some time, and after\na good deal of blushing, stammering, and denying, I said, having my\nglass in my hand, 'Well! I would give them D.!' which so excited\nand gratified Mr. Micawber, that he ran with a glass of punch into\nmy bedroom, in order that Mrs. Micawber might drink D., who drank\nit with enthusiasm, crying from within, in a shrill voice, 'Hear,\nhear!  My dear Mr. Copperfield, I am delighted.  Hear!' and tapping\nat the wall, by way of applause.\n\nOur conversation, afterwards, took a more worldly turn; Mr.\nMicawber telling us that he found Camden Town inconvenient, and\nthat the first thing he contemplated doing, when the advertisement\nshould have been the cause of something satisfactory turning up,\nwas to move.  He mentioned a terrace at the western end of Oxford\nStreet, fronting Hyde Park, on which he had always had his eye, but\nwhich he did not expect to attain immediately, as it would require\na large establishment.  There would probably be an interval, he\nexplained, in which he should content himself with the upper part\nof a house, over some respectable place of business - say in\nPiccadilly, - which would be a cheerful situation for Mrs.\nMicawber; and where, by throwing out a bow-window, or carrying up\nthe roof another story, or making some little alteration of that\nsort, they might live, comfortably and reputably, for a few years. \nWhatever was reserved for him, he expressly said, or wherever his\nabode might be, we might rely on this - there would always be a\nroom for Traddles, and a knife and fork for me.  We acknowledged\nhis kindness; and he begged us to forgive his having launched into\nthese practical and business-like details, and to excuse it as\nnatural in one who was making entirely new arrangements in life.\n\nMrs. Micawber, tapping at the wall again to know if tea were ready,\nbroke up this particular phase of our friendly conversation.  She\nmade tea for us in a most agreeable manner; and, whenever I went\nnear her, in handing about the tea-cups and bread-and-butter, asked\nme, in a whisper, whether D. was fair, or dark, or whether she was\nshort, or tall: or something of that kind; which I think I liked. \nAfter tea, we discussed a variety of topics before the fire; and\nMrs. Micawber was good enough to sing us (in a small, thin, flat\nvoice, which I remembered to have considered, when I first knew\nher, the very table-beer of acoustics) the favourite ballads of\n'The Dashing White Sergeant', and 'Little Tafflin'.  For both of\nthese songs Mrs. Micawber had been famous when she lived at home\nwith her papa and mama.  Mr. Micawber told us, that when he heard\nher sing the first one, on the first occasion of his seeing her\nbeneath the parental roof, she had attracted his attention in an\nextraordinary degree; but that when it came to Little Tafflin, he\nhad resolved to win that woman or perish in the attempt.\n\nIt was between ten and eleven o'clock when Mrs. Micawber rose to\nreplace her cap in the whitey-brown paper parcel, and to put on her\nbonnet.  Mr. Micawber took the opportunity of Traddles putting on\nhis great-coat, to slip a letter into my hand, with a whispered\nrequest that I would read it at my leisure.  I also took the\nopportunity of my holding a candle over the banisters to light them\ndown, when Mr. Micawber was going first, leading Mrs. Micawber, and\nTraddles was following with the cap, to detain Traddles for a\nmoment on the top of the stairs.\n\n'Traddles,' said I, 'Mr. Micawber don't mean any harm, poor fellow:\nbut, if I were you, I wouldn't lend him anything.'\n\n'My dear Copperfield,' returned Traddles, smiling, 'I haven't got\nanything to lend.'\n\n'You have got a name, you know,' said I.\n\n'Oh!  You call THAT something to lend?' returned Traddles, with a\nthoughtful look.\n\n'Certainly.'\n\n'Oh!' said Traddles.  'Yes, to be sure!  I am very much obliged to\nyou, Copperfield; but - I am afraid I have lent him that already.'\n\n'For the bill that is to be a certain investment?' I inquired.\n\n'No,' said Traddles.  'Not for that one.  This is the first I have\nheard of that one.  I have been thinking that he will most likely\npropose that one, on the way home.  Mine's another.'\n\n'I hope there will be nothing wrong about it,' said I.\n'I hope not,' said Traddles.  'I should think not, though, because\nhe told me, only the other day, that it was provided for.  That was\nMr. Micawber's expression, \"Provided for.\"'\n\nMr. Micawber looking up at this juncture to where we were standing,\nI had only time to repeat my caution.  Traddles thanked me, and\ndescended.  But I was much afraid, when I observed the good-natured\nmanner in which he went down with the cap in his hand, and gave\nMrs. Micawber his arm, that he would be carried into the Money\nMarket neck and heels.\n\nI returned to my fireside, and was musing, half gravely and half\nlaughing, on the character of Mr. Micawber and the old relations\nbetween us, when I heard a quick step ascending the stairs.  At\nfirst, I thought it was Traddles coming back for something Mrs.\nMicawber had left behind; but as the step approached, I knew it,\nand felt my heart beat high, and the blood rush to my face, for it\nwas Steerforth's.\n\nI was never unmindful of Agnes, and she never left that sanctuary\nin my thoughts - if I may call it so - where I had placed her from\nthe first.  But when he entered, and stood before me with his hand\nout, the darkness that had fallen on him changed to light, and I\nfelt confounded and ashamed of having doubted one I loved so\nheartily.  I loved her none the less; I thought of her as the same\nbenignant, gentle angel in my life; I reproached myself, not her,\nwith having done him an injury; and I would have made him any\natonement if I had known what to make, and how to make it.\n\n'Why, Daisy, old boy, dumb-foundered!' laughed Steerforth, shaking\nmy hand heartily, and throwing it gaily away.  'Have I detected you\nin another feast, you Sybarite!  These Doctors' Commons fellows are\nthe gayest men in town, I believe, and beat us sober Oxford people\nall to nothing!' His bright glance went merrily round the room, as\nhe took the seat on the sofa opposite to me, which Mrs. Micawber\nhad recently vacated, and stirred the fire into a blaze.\n\n'I was so surprised at first,' said I, giving him welcome with all\nthe cordiality I felt, 'that I had hardly breath to greet you with,\nSteerforth.'\n\n'Well, the sight of me is good for sore eyes, as the Scotch say,'\nreplied Steerforth, 'and so is the sight of you, Daisy, in full\nbloom.  How are you, my Bacchanal?'\n\n'I am very well,' said I; 'and not at all Bacchanalian tonight,\nthough I confess to another party of three.'\n\n'All of whom I met in the street, talking loud in your praise,'\nreturned Steerforth.  'Who's our friend in the tights?'\n\nI gave him the best idea I could, in a few words, of Mr. Micawber. \nHe laughed heartily at my feeble portrait of that gentleman, and\nsaid he was a man to know, and he must know him.\n'But who do you suppose our other friend is?' said I, in my turn.\n\n'Heaven knows,' said Steerforth.  'Not a bore, I hope?  I thought\nhe looked a little like one.'\n\n'Traddles!' I replied, triumphantly.\n\n'Who's he?' asked Steerforth, in his careless way.\n\n'Don't you remember Traddles?  Traddles in our room at Salem\nHouse?'\n\n'Oh!  That fellow!' said Steerforth, beating a lump of coal on the\ntop of the fire, with the poker.  'Is he as soft as ever?  And\nwhere the deuce did you pick him up?'\n\nI extolled Traddles in reply, as highly as I could; for I felt that\nSteerforth rather slighted him.  Steerforth, dismissing the subject\nwith a light nod, and a smile, and the remark that he would be glad\nto see the old fellow too, for he had always been an odd fish,\ninquired if I could give him anything to eat?  During most of this\nshort dialogue, when he had not been speaking in a wild vivacious\nmanner, he had sat idly beating on the lump of coal with the poker. \nI observed that he did the same thing while I was getting out the\nremains of the pigeon-pie, and so forth.\n\n'Why, Daisy, here's a supper for a king!' he exclaimed, starting\nout of his silence with a burst, and taking his seat at the table. \n'I shall do it justice, for I have come from Yarmouth.'\n\n'I thought you came from Oxford?' I returned.\n\n'Not I,' said Steerforth.  'I have been seafaring - better\nemployed.'\n\n'Littimer was here today, to inquire for you,' I remarked, 'and I\nunderstood him that you were at Oxford; though, now I think of it,\nhe certainly did not say so.'\n\n'Littimer is a greater fool than I thought him, to have been\ninquiring for me at all,' said Steerforth, jovially pouring out a\nglass of wine, and drinking to me.  'As to understanding him, you\nare a cleverer fellow than most of us, Daisy, if you can do that.'\n\n'That's true, indeed,' said I, moving my chair to the table.  'So\nyou have been at Yarmouth, Steerforth!' interested to know all\nabout it.  'Have you been there long?'\n\n'No,' he returned.  'An escapade of a week or so.'\n\n'And how are they all?  Of course, little Emily is not married\nyet?'\n\n'Not yet.  Going to be, I believe - in so many weeks, or months, or\nsomething or other.  I have not seen much of 'em.  By the by'; he\nlaid down his knife and fork, which he had been using with great\ndiligence, and began feeling in his pockets; 'I have a letter for\nyou.'\n\n'From whom?'\n\n'Why, from your old nurse,' he returned, taking some papers out of\nhis breast pocket.  \"'J. Steerforth, Esquire, debtor, to The\nWilling Mind\"; that's not it.  Patience, and we'll find it\npresently.  Old what's-his-name's in a bad way, and it's about\nthat, I believe.'\n\n'Barkis, do you mean?'\n\n'Yes!' still feeling in his pockets, and looking over their\ncontents: 'it's all over with poor Barkis, I am afraid.  I saw a\nlittle apothecary there - surgeon, or whatever he is - who brought\nyour worship into the world.  He was mighty learned about the case,\nto me; but the upshot of his opinion was, that the carrier was\nmaking his last journey rather fast.  - Put your hand into the\nbreast pocket of my great-coat on the chair yonder, and I think\nyou'll find the letter.  Is it there?'\n\n'Here it is!' said I.\n\n'That's right!'\n\nIt was from Peggotty; something less legible than usual, and brief. \nIt informed me of her husband's hopeless state, and hinted at his\nbeing 'a little nearer' than heretofore, and consequently more\ndifficult to manage for his own comfort.  It said nothing of her\nweariness and watching, and praised him highly.  It was written\nwith a plain, unaffected, homely piety that I knew to be genuine,\nand ended with 'my duty to my ever darling' - meaning myself.\n\nWhile I deciphered it, Steerforth continued to eat and drink.\n\n'It's a bad job,' he said, when I had done; 'but the sun sets every\nday, and people die every minute, and we mustn't be scared by the\ncommon lot.  If we failed to hold our own, because that equal foot\nat all men's doors was heard knocking somewhere, every object in\nthis world would slip from us.  No!  Ride on!  Rough-shod if need\nbe, smooth-shod if that will do, but ride on!  Ride on over all\nobstacles, and win the race!'\n\n'And win what race?' said I.\n\n'The race that one has started in,' said he.  'Ride on!'\n\nI noticed, I remember, as he paused, looking at me with his\nhandsome head a little thrown back, and his glass raised in his\nhand, that, though the freshness of the sea-wind was on his face,\nand it was ruddy, there were traces in it, made since I last saw\nit, as if he had applied himself to some habitual strain of the\nfervent energy which, when roused, was so passionately roused\nwithin him.  I had it in my thoughts to remonstrate with him upon\nhis desperate way of pursuing any fancy that he took - such as this\nbuffeting of rough seas, and braving of hard weather, for example\n- when my mind glanced off to the immediate subject of our\nconversation again, and pursued that instead.\n\n'I tell you what, Steerforth,' said I, 'if your high spirits will\nlisten to me -'\n\n'They are potent spirits, and will do whatever you like,' he\nanswered, moving from the table to the fireside again.\n\n'Then I tell you what, Steerforth.  I think I will go down and see\nmy old nurse.  It is not that I can do her any good, or render her\nany real service; but she is so attached to me that my visit will\nhave as much effect on her, as if I could do both.  She will take\nit so kindly that it will be a comfort and support to her.  It is\nno great effort to make, I am sure, for such a friend as she has\nbeen to me.  Wouldn't you go a day's journey, if you were in my\nplace?'\n\nHis face was thoughtful, and he sat considering a little before he\nanswered, in a low voice, 'Well!  Go.  You can do no harm.'\n\n'You have just come back,' said I, 'and it would be in vain to ask\nyou to go with me?'\n\n'Quite,' he returned.  'I am for Highgate tonight.  I have not seen\nmy mother this long time, and it lies upon my conscience, for it's\nsomething to be loved as she loves her prodigal son.  - Bah!\nNonsense! - You mean to go tomorrow, I suppose?' he said, holding\nme out at arm's length, with a hand on each of my shoulders.\n\n'Yes, I think so.'\n\n'Well, then, don't go till next day.  I wanted you to come and stay\na few days with us.  Here I am, on purpose to bid you, and you fly\noff to Yarmouth!'\n\n'You are a nice fellow to talk of flying off, Steerforth, who are\nalways running wild on some unknown expedition or other!'\n\nHe looked at me for a moment without speaking, and then rejoined,\nstill holding me as before, and giving me a shake:\n\n'Come!  Say the next day, and pass as much of tomorrow as you can\nwith us! Who knows when we may meet again, else?  Come!  Say the\nnext day!  I want you to stand between Rosa Dartle and me, and keep\nus asunder.'\n\n'Would you love each other too much, without me?'\n\n'Yes; or hate,' laughed Steerforth; 'no matter which.  Come!  Say\nthe next day!'\n\nI said the next day; and he put on his great-coat and lighted his\ncigar, and set off to walk home.  Finding him in this intention, I\nput on my own great-coat (but did not light my own cigar, having\nhad enough of that for one while) and walked with him as far as the\nopen road: a dull road, then, at night.  He was in great spirits\nall the way; and when we parted, and I looked after him going so\ngallantly and airily homeward, I thought of his saying, 'Ride on\nover all obstacles, and win the race!' and wished, for the first\ntime, that he had some worthy race to run.\n\nI was undressing in my own room, when Mr. Micawber's letter tumbled\non the floor.  Thus reminded of it, I broke the seal and read as\nfollows.  It was dated an hour and a half before dinner.  I am not\nsure whether I have mentioned that, when Mr. Micawber was at any\nparticularly desperate crisis, he used a sort of legal phraseology,\nwhich he seemed to think equivalent to winding up his affairs.\n\n\n'SIR - for I dare not say my dear Copperfield,\n\n'It is expedient that I should inform you that the undersigned is\nCrushed.  Some flickering efforts to spare you the premature\nknowledge of his calamitous position, you may observe in him this\nday; but hope has sunk beneath the horizon, and the undersigned is\nCrushed.\n\n'The present communication is penned within the personal range (I\ncannot call it the society) of an individual, in a state closely\nbordering on intoxication, employed by a broker.  That individual\nis in legal possession of the premises, under a distress for rent. \nHis inventory includes, not only the chattels and effects of every\ndescription belonging to the undersigned, as yearly tenant of this\nhabitation, but also those appertaining to Mr. Thomas Traddles,\nlodger, a member of the Honourable Society of the Inner Temple.\n\n'If any drop of gloom were wanting in the overflowing cup, which is\nnow \"commended\" (in the language of an immortal Writer) to the lips\nof the undersigned, it would be found in the fact, that a friendly\nacceptance granted to the undersigned, by the before-mentioned Mr.\nThomas Traddles, for the sum Of 23l 4s 9 1/2d is over due, and is\nNOT provided for.  Also, in the fact that the living\nresponsibilities clinging to the undersigned will, in the course of\nnature, be increased by the sum of one more helpless victim; whose\nmiserable appearance may be looked for - in round numbers - at the\nexpiration of a period not exceeding six lunar months from the\npresent date.\n\n'After premising thus much, it would be a work of supererogation to\nadd, that dust and ashes are for ever scattered\n\n               'On\n                    'The\n                         'Head\n                              'Of\n                                   'WILKINS MICAWBER.'\n\n\nPoor Traddles!  I knew enough of Mr. Micawber by this time, to\nforesee that he might be expected to recover the blow; but my\nnight's rest was sorely distressed by thoughts of Traddles, and of\nthe curate's daughter, who was one of ten, down in Devonshire, and\nwho was such a dear girl, and who would wait for Traddles (ominous\npraise!) until she was sixty, or any age that could be mentioned.\n\n\n\nCHAPTER 29\nI VISIT STEERFORTH AT HIS HOME, AGAIN\n\n\nI mentioned to Mr. Spenlow in the morning, that I wanted leave of\nabsence for a short time; and as I was not in the receipt of any\nsalary, and consequently was not obnoxious to the implacable\nJorkins, there was no difficulty about it.  I took that\nopportunity, with my voice sticking in my throat, and my sight\nfailing as I uttered the words, to express my hope that Miss\nSpenlow was quite well; to which Mr. Spenlow replied, with no more\nemotion than if he had been speaking of an ordinary human being,\nthat he was much obliged to me, and she was very well.\n\nWe articled clerks, as germs of the patrician order of proctors,\nwere treated with so much consideration, that I was almost my own\nmaster at all times.  As I did not care, however, to get to\nHighgate before one or two o'clock in the day, and as we had\nanother little excommunication case in court that morning, which\nwas called The office of the judge promoted by Tipkins against\nBullock for his soul's correction, I passed an hour or two in\nattendance on it with Mr. Spenlow very agreeably.  It arose out of\na scuffle between two churchwardens, one of whom was alleged to\nhave pushed the other against a pump; the handle of which pump\nprojecting into a school-house, which school-house was under a\ngable of the church-roof, made the push an ecclesiastical offence. \nIt was an amusing case; and sent me up to Highgate, on the box of\nthe stage-coach, thinking about the Commons, and what Mr. Spenlow\nhad said about touching the Commons and bringing down the country.\n\nMrs. Steerforth was pleased to see me, and so was Rosa Dartle.  I\nwas agreeably surprised to find that Littimer was not there, and\nthat we were attended by a modest little parlour-maid, with blue\nribbons in her cap, whose eye it was much more pleasant, and much\nless disconcerting, to catch by accident, than the eye of that\nrespectable man.  But what I particularly observed, before I had\nbeen half-an-hour in the house, was the close and attentive watch\nMiss Dartle kept upon me; and the lurking manner in which she\nseemed to compare my face with Steerforth's, and Steerforth's with\nmine, and to lie in wait for something to come out between the two. \nSo surely as I looked towards her, did I see that eager visage,\nwith its gaunt black eyes and searching brow, intent on mine; or\npassing suddenly from mine to Steerforth's; or comprehending both\nof us at once.  In this lynx-like scrutiny she was so far from\nfaltering when she saw I observed it, that at such a time she only\nfixed her piercing look upon me with a more intent expression\nstill.  Blameless as I was, and knew that I was, in reference to\nany wrong she could possibly suspect me of, I shrunk before her\nstrange eyes, quite unable to endure their hungry lustre.\n\nAll day, she seemed to pervade the whole house.  If I talked to\nSteerforth in his room, I heard her dress rustle in the little\ngallery outside.  When he and I engaged in some of our old\nexercises on the lawn behind the house, I saw her face pass from\nwindow to window, like a wandering light, until it fixed itself in\none, and watched us.  When we all four went out walking in the\nafternoon, she closed her thin hand on my arm like a spring, to\nkeep me back, while Steerforth and his mother went on out of\nhearing: and then spoke to me.\n\n'You have been a long time,' she said, 'without coming here.  Is\nyour profession really so engaging and interesting as to absorb\nyour whole attention?  I ask because I always want to be informed,\nwhen I am ignorant.  Is it really, though?'\n\nI replied that I liked it well enough, but that I certainly could\nnot claim so much for it.\n\n'Oh! I am glad to know that, because I always like to be put right\nwhen I am wrong,' said Rosa Dartle.  'You mean it is a little dry,\nperhaps?'\n\n'Well,' I replied; 'perhaps it was a little dry.'\n\n'Oh! and that's a reason why you want relief and change -\nexcitement and all that?' said she.  'Ah! very true!  But isn't it\na little - Eh? - for him; I don't mean you?'\n\nA quick glance of her eye towards the spot where Steerforth was\nwalking, with his mother leaning on his arm, showed me whom she\nmeant; but beyond that, I was quite lost.  And I looked so, I have\nno doubt.\n\n'Don't it - I don't say that it does, mind I want to know - don't\nit rather engross him?  Don't it make him, perhaps, a little more\nremiss than usual in his visits to his blindly-doting - eh?'  With\nanother quick glance at them, and such a glance at me as seemed to\nlook into my innermost thoughts.\n\n'Miss Dartle,' I returned, 'pray do not think -'\n\n'I don't!' she said.  'Oh dear me, don't suppose that I think\nanything!  I am not suspicious.  I only ask a question.  I don't\nstate any opinion.  I want to found an opinion on what you tell me. \nThen, it's not so?  Well! I am very glad to know it.'\n\n'It certainly is not the fact,' said I, perplexed, 'that I am\naccountable for Steerforth's having been away from home longer than\nusual - if he has been: which I really don't know at this moment,\nunless I understand it from you.  I have not seen him this long\nwhile, until last night.'\n\n'No?'\n\n'Indeed, Miss Dartle, no!'\n\nAs she looked full at me, I saw her face grow sharper and paler,\nand the marks of the old wound lengthen out until it cut through\nthe disfigured lip, and deep into the nether lip, and slanted down\nthe face.  There was something positively awful to me in this, and\nin the brightness of her eyes, as she said, looking fixedly at me:\n\n'What is he doing?'\n\nI repeated the words, more to myself than her, being so amazed.\n\n'What is he doing?' she said, with an eagerness that seemed enough\nto consume her like a fire.  'In what is that man assisting him,\nwho never looks at me without an inscrutable falsehood in his eyes? \nIf you are honourable and faithful, I don't ask you to betray your\nfriend.  I ask you only to tell me, is it anger, is it hatred, is\nit pride, is it restlessness, is it some wild fancy, is it love,\nwhat is it, that is leading him?'\n\n'Miss Dartle,' I returned, 'how shall I tell you, so that you will\nbelieve me, that I know of nothing in Steerforth different from\nwhat there was when I first came here?  I can think of nothing.  I\nfirmly believe there is nothing.  I hardly understand even what you\nmean.'\n\nAs she still stood looking fixedly at me, a twitching or throbbing,\nfrom which I could not dissociate the idea of pain, came into that\ncruel mark; and lifted up the corner of her lip as if with scorn,\nor with a pity that despised its object.  She put her hand upon it\nhurriedly - a hand so thin and delicate, that when I had seen her\nhold it up before the fire to shade her face, I had compared it in\nmy thoughts to fine porcelain - and saying, in a quick, fierce,\npassionate way, 'I swear you to secrecy about this!' said not a\nword more.\n\nMrs. Steerforth was particularly happy in her son's society, and\nSteerforth was, on this occasion, particularly attentive and\nrespectful to her.  It was very interesting to me to see them\ntogether, not only on account of their mutual affection, but\nbecause of the strong personal resemblance between them, and the\nmanner in which what was haughty or impetuous in him was softened\nby age and sex, in her, to a gracious dignity.  I thought, more\nthan once, that it was well no serious cause of division had ever\ncome between them; or two such natures - I ought rather to express\nit, two such shades of the same nature - might have been harder to\nreconcile than the two extremest opposites in creation.  The idea\ndid not originate in my own discernment, I am bound to confess, but\nin a speech of Rosa Dartle's.\n\nShe said at dinner:\n\n'Oh, but do tell me, though, somebody, because I have been thinking\nabout it all day, and I want to know.'\n\n'You want to know what, Rosa?' returned Mrs. Steerforth.  'Pray,\npray, Rosa, do not be mysterious.'\n\n'Mysterious!' she cried.  'Oh! really?  Do you consider me so?'\n\n'Do I constantly entreat you,' said Mrs. Steerforth, 'to speak\nplainly, in your own natural manner?'\n\n'Oh! then this is not my natural manner?' she rejoined.  'Now you\nmust really bear with me, because I ask for information.  We never\nknow ourselves.'\n\n'It has become a second nature,' said Mrs. Steerforth, without any\ndispleasure; 'but I remember, - and so must you, I think, - when\nyour manner was different, Rosa; when it was not so guarded, and\nwas more trustful.'\n\n'I am sure you are right,' she returned; 'and so it is that bad\nhabits grow upon one!  Really?  Less guarded and more trustful? \nHow can I, imperceptibly, have changed, I wonder!  Well, that's\nvery odd!  I must study to regain my former self.'\n\n'I wish you would,' said Mrs. Steerforth, with a smile.\n\n'Oh!  I really will, you know!' she answered.  'I will learn\nfrankness from - let me see - from James.'\n\n'You cannot learn frankness, Rosa,' said Mrs. Steerforth quickly -\nfor there was always some effect of sarcasm in what Rosa Dartle\nsaid, though it was said, as this was, in the most unconscious\nmanner in the world - 'in a better school.'\n\n'That I am sure of,' she answered, with uncommon fervour.  'If I am\nsure of anything, of course, you know, I am sure of that.'\n\nMrs. Steerforth appeared to me to regret having been a little\nnettled; for she presently said, in a kind tone:\n\n'Well, my dear Rosa, we have not heard what it is that you want to\nbe satisfied about?'\n\n'That I want to be satisfied about?' she replied, with provoking\ncoldness.  'Oh!  It was only whether people, who are like each\nother in their moral constitution - is that the phrase?'\n\n'It's as good a phrase as another,' said Steerforth.\n\n'Thank you: - whether people, who are like each other in their\nmoral constitution, are in greater danger than people not so\ncircumstanced, supposing any serious cause of variance to arise\nbetween them, of being divided angrily and deeply?'\n\n'I should say yes,' said Steerforth.\n\n'Should you?' she retorted.  'Dear me!  Supposing then, for\ninstance - any unlikely thing will do for a supposition - that you\nand your mother were to have a serious quarrel.'\n\n'My dear Rosa,' interposed Mrs. Steerforth, laughing\ngood-naturedly, 'suggest some other supposition!  James and I know\nour duty to each other better, I pray Heaven!'\n\n'Oh!' said Miss Dartle, nodding her head thoughtfully.  'To be\nsure.  That would prevent it?  Why, of course it would.  Exactly. \nNow, I am glad I have been so foolish as to put the case, for it is\nso very good to know that your duty to each other would prevent it!\nThank you very much.'\n\nOne other little circumstance connected with Miss Dartle I must not\nomit; for I had reason to remember it thereafter, when all the\nirremediable past was rendered plain.  During the whole of this\nday, but especially from this period of it, Steerforth exerted\nhimself with his utmost skill, and that was with his utmost ease,\nto charm this singular creature into a pleasant and pleased\ncompanion.  That he should succeed, was no matter of surprise to\nme.  That she should struggle against the fascinating influence of\nhis delightful art - delightful nature I thought it then - did not\nsurprise me either; for I knew that she was sometimes jaundiced and\nperverse.  I saw her features and her manner slowly change; I saw\nher look at him with growing admiration; I saw her try, more and\nmore faintly, but always angrily, as if she condemned a weakness in\nherself, to resist the captivating power that he possessed; and\nfinally, I saw her sharp glance soften, and her smile become quite\ngentle, and I ceased to be afraid of her as I had really been all\nday, and we all sat about the fire, talking and laughing together,\nwith as little reserve as if we had been children.\n\nWhether it was because we had sat there so long, or because\nSteerforth was resolved not to lose the advantage he had gained, I\ndo not know; but we did not remain in the dining-room more than\nfive minutes after her departure.  'She is playing her harp,' said\nSteerforth, softly, at the drawing-room door, 'and nobody but my\nmother has heard her do that, I believe, these three years.'  He\nsaid it with a curious smile, which was gone directly; and we went\ninto the room and found her alone.\n\n'Don't get up,' said Steerforth (which she had already done)' my\ndear Rosa, don't!  Be kind for once, and sing us an Irish song.'\n\n'What do you care for an Irish song?' she returned.\n\n'Much!' said Steerforth.  'Much more than for any other.  Here is\nDaisy, too, loves music from his soul.  Sing us an Irish song,\nRosa! and let me sit and listen as I used to do.'\n\nHe did not touch her, or the chair from which she had risen, but\nsat himself near the harp.  She stood beside it for some little\nwhile, in a curious way, going through the motion of playing it\nwith her right hand, but not sounding it.  At length she sat down,\nand drew it to her with one sudden action, and played and sang.\n\nI don't know what it was, in her touch or voice, that made that\nsong the most unearthly I have ever heard in my life, or can\nimagine.  There was something fearful in the reality of it.  It was\nas if it had never been written, or set to music, but sprung out of\npassion within her; which found imperfect utterance in the low\nsounds of her voice, and crouched again when all was still.  I was\ndumb when she leaned beside the harp again, playing it, but not\nsounding it, with her right hand.\n\nA minute more, and this had roused me from my trance: - Steerforth\nhad left his seat, and gone to her, and had put his arm laughingly\nabout her, and had said, 'Come, Rosa, for the future we will love\neach other very much!' And she had struck him, and had thrown him\noff with the fury of a wild cat, and had burst out of the room.\n\n'What is the matter with Rosa?' said Mrs. Steerforth, coming in.\n\n'She has been an angel, mother,' returned Steerforth, 'for a little\nwhile; and has run into the opposite extreme, since, by way of\ncompensation.'\n\n'You should be careful not to irritate her, James.  Her temper has\nbeen soured, remember, and ought not to be tried.'\n\nRosa did not come back; and no other mention was made of her, until\nI went with Steerforth into his room to say Good night.  Then he\nlaughed about her, and asked me if I had ever seen such a fierce\nlittle piece of incomprehensibility.\n\nI expressed as much of my astonishment as was then capable of\nexpression, and asked if he could guess what it was that she had\ntaken so much amiss, so suddenly.\n\n'Oh, Heaven knows,' said Steerforth.  'Anything you like - or\nnothing!  I told you she took everything, herself included, to a\ngrindstone, and sharpened it.  She is an edge-tool, and requires\ngreat care in dealing with.  She is always dangerous.  Good night!'\n\n'Good night!' said I, 'my dear Steerforth!  I shall be gone before\nyou wake in the morning.  Good night!'\n\nHe was unwilling to let me go; and stood, holding me out, with a\nhand on each of my shoulders, as he had done in my own room.\n\n'Daisy,' he said, with a smile - 'for though that's not the name\nyour godfathers and godmothers gave you, it's the name I like best\nto call you by - and I wish, I wish, I wish, you could give it to\nme!'\n\n'Why so I can, if I choose,' said I.\n\n'Daisy, if anything should ever separate us, you must think of me\nat my best, old boy.  Come!  Let us make that bargain.  Think of me\nat my best, if circumstances should ever part us!'\n\n'You have no best to me, Steerforth,' said I, 'and no worst.  You\nare always equally loved, and cherished in my heart.'\n\nSo much compunction for having ever wronged him, even by a\nshapeless thought, did I feel within me, that the confession of\nhaving done so was rising to my lips.  But for the reluctance I had\nto betray the confidence of Agnes, but for my uncertainty how to\napproach the subject with no risk of doing so, it would have\nreached them before he said, 'God bless you, Daisy, and good\nnight!' In my doubt, it did NOT reach them; and we shook hands, and\nwe parted.\n\nI was up with the dull dawn, and, having dressed as quietly as I\ncould, looked into his room.  He was fast asleep; lying, easily,\nwith his head upon his arm, as I had often seen him lie at school.\n\nThe time came in its season, and that was very soon, when I almost\nwondered that nothing troubled his repose, as I looked at him.  But\nhe slept - let me think of him so again - as I had often seen him\nsleep at school; and thus, in this silent hour, I left him.\n\n- Never more, oh God forgive you, Steerforth! to touch that passive\nhand in love and friendship.  Never, never more!\n\n\n\nCHAPTER 30\nA LOSS\n\n\nI got down to Yarmouth in the evening, and went to the inn.  I knew\nthat Peggotty's spare room - my room - was likely to have\noccupation enough in a little while, if that great Visitor, before\nwhose presence all the living must give place, were not already in\nthe house; so I betook myself to the inn, and dined there, and\nengaged my bed.\n\nIt was ten o'clock when I went out.  Many of the shops were shut,\nand the town was dull.  When I came to Omer and Joram's, I found\nthe shutters up, but the shop door standing open.  As I could\nobtain a perspective view of Mr. Omer inside, smoking his pipe by\nthe parlour door, I entered, and asked him how he was.\n\n'Why, bless my life and soul!' said Mr. Omer, 'how do you find\nyourself?  Take a seat.  - Smoke not disagreeable, I hope?'\n\n'By no means,' said I.  'I like it - in somebody else's pipe.'\n\n'What, not in your own, eh?' Mr. Omer returned, laughing.  'All the\nbetter, sir.  Bad habit for a young man.  Take a seat.  I smoke,\nmyself, for the asthma.'\n\nMr. Omer had made room for me, and placed a chair.  He now sat down\nagain very much out of breath, gasping at his pipe as if it\ncontained a supply of that necessary, without which he must perish.\n\n'I am sorry to have heard bad news of Mr. Barkis,' said I.\n\nMr. Omer looked at me, with a steady countenance, and shook his\nhead.\n\n'Do you know how he is tonight?' I asked.\n\n'The very question I should have put to you, sir,' returned Mr.\nOmer, 'but on account of delicacy.  It's one of the drawbacks of\nour line of business.  When a party's ill, we can't ask how the\nparty is.'\n\nThe difficulty had not occurred to me; though I had had my\napprehensions too, when I went in, of hearing the old tune.  On its\nbeing mentioned, I recognized it, however, and said as much.\n\n'Yes, yes, you understand,' said Mr. Omer, nodding his head.  'We\ndursn't do it.  Bless you, it would be a shock that the generality\nof parties mightn't recover, to say \"Omer and Joram's compliments,\nand how do you find yourself this morning?\" - or this afternoon -\nas it may be.'\n\nMr. Omer and I nodded at each other, and Mr. Omer recruited his\nwind by the aid of his pipe.\n\n'It's one of the things that cut the trade off from attentions they\ncould often wish to show,' said Mr. Omer.  'Take myself.  If I have\nknown Barkis a year, to move to as he went by, I have known him\nforty years.  But I can't go and say, \"how is he?\"'\n\nI felt it was rather hard on Mr. Omer, and I told him so.\n\n'I'm not more self-interested, I hope, than another man,' said Mr.\nOmer.  'Look at me!  My wind may fail me at any moment, and it\nain't likely that, to my own knowledge, I'd be self-interested\nunder such circumstances.  I say it ain't likely, in a man who\nknows his wind will go, when it DOES go, as if a pair of bellows\nwas cut open; and that man a grandfather,' said Mr. Omer.\n\nI said, 'Not at all.'\n\n'It ain't that I complain of my line of business,' said Mr. Omer. \n'It ain't that.  Some good and some bad goes, no doubt, to all\ncallings.  What I wish is, that parties was brought up\nstronger-minded.'\n\nMr. Omer, with a very complacent and amiable face, took several\npuffs in silence; and then said, resuming his first point:\n\n'Accordingly we're obleeged, in ascertaining how Barkis goes on, to\nlimit ourselves to Em'ly.  She knows what our real objects are, and\nshe don't have any more alarms or suspicions about us, than if we\nwas so many lambs.  Minnie and Joram have just stepped down to the\nhouse, in fact (she's there, after hours, helping her aunt a bit),\nto ask her how he is tonight; and if you was to please to wait till\nthey come back, they'd give you full partic'lers.  Will you take\nsomething?  A glass of srub and water, now?  I smoke on srub and\nwater, myself,' said Mr. Omer, taking up his glass, 'because it's\nconsidered softening to the passages, by which this troublesome\nbreath of mine gets into action.  But, Lord bless you,' said Mr.\nOmer, huskily, 'it ain't the passages that's out of order!  \"Give\nme breath enough,\" said I to my daughter Minnie, \"and I'll find\npassages, my dear.\"'\n\nHe really had no breath to spare, and it was very alarming to see\nhim laugh.  When he was again in a condition to be talked to, I\nthanked him for the proffered refreshment, which I declined, as I\nhad just had dinner; and, observing that I would wait, since he was\nso good as to invite me, until his daughter and his son-in-law came\nback, I inquired how little Emily was?\n\n'Well, sir,' said Mr. Omer, removing his pipe, that he might rub\nhis chin: 'I tell you truly, I shall be glad when her marriage has\ntaken place.'\n\n'Why so?' I inquired.\n\n'Well, she's unsettled at present,' said Mr. Omer.  'It ain't that\nshe's not as pretty as ever, for she's prettier - I do assure you,\nshe is prettier.  It ain't that she don't work as well as ever, for\nshe does.  She WAS worth any six, and she IS worth any six.  But\nsomehow she wants heart.  If you understand,' said Mr. Omer, after\nrubbing his chin again, and smoking a little, 'what I mean in a\ngeneral way by the expression, \"A long pull, and a strong pull, and\na pull altogether, my hearties, hurrah!\" I should say to you, that\nthat was - in a general way - what I miss in Em'ly.'\n\nMr. Omer's face and manner went for so much, that I could\nconscientiously nod my head, as divining his meaning.  My quickness\nof apprehension seemed to please him, and he went on:\n'Now I consider this is principally on account of her being in an\nunsettled state, you see.  We have talked it over a good deal, her\nuncle and myself, and her sweetheart and myself, after business;\nand I consider it is principally on account of her being unsettled. \nYou must always recollect of Em'ly,' said Mr. Omer, shaking his\nhead gently, 'that she's a most extraordinary affectionate little\nthing.  The proverb says, \"You can't make a silk purse out of a\nsow's ear.\" Well, I don't know about that.  I rather think you may,\nif you begin early in life.  She has made a home out of that old\nboat, sir, that stone and marble couldn't beat.'\n\n'I am sure she has!' said I.\n\n'To see the clinging of that pretty little thing to her uncle,'\nsaid Mr. Omer; 'to see the way she holds on to him, tighter and\ntighter, and closer and closer, every day, is to see a sight.  Now,\nyou know, there's a struggle going on when that's the case.  Why\nshould it be made a longer one than is needful?'\n\nI listened attentively to the good old fellow, and acquiesced, with\nall my heart, in what he said.\n\n'Therefore, I mentioned to them,' said Mr. Omer, in a comfortable,\neasy-going tone, 'this.  I said, \"Now, don't consider Em'ly nailed\ndown in point of time, at all.  Make it your own time.  Her\nservices have been more valuable than was supposed; her learning\nhas been quicker than was supposed; Omer and Joram can run their\npen through what remains; and she's free when you wish.  If she\nlikes to make any little arrangement, afterwards, in the way of\ndoing any little thing for us at home, very well.  If she don't,\nvery well still.  We're no losers, anyhow.\" For - don't you see,'\nsaid Mr. Omer, touching me with his pipe, 'it ain't likely that a\nman so short of breath as myself, and a grandfather too, would go\nand strain points with a little bit of a blue-eyed blossom, like\nher?'\n\n'Not at all, I am certain,' said I.\n\n'Not at all!  You're right!' said Mr. Omer.  'Well, sir, her cousin\n- you know it's a cousin she's going to be married to?'\n\n'Oh yes,' I replied.  'I know him well.'\n\n'Of course you do,' said Mr. Omer.  'Well, sir!  Her cousin being,\nas it appears, in good work, and well to do, thanked me in a very\nmanly sort of manner for this (conducting himself altogether, I\nmust say, in a way that gives me a high opinion of him), and went\nand took as comfortable a little house as you or I could wish to\nclap eyes on.  That little house is now furnished right through, as\nneat and complete as a doll's parlour; and but for Barkis's illness\nhaving taken this bad turn, poor fellow, they would have been man\nand wife - I dare say, by this time.  As it is, there's a\npostponement.'\n\n'And Emily, Mr. Omer?' I inquired.  'Has she become more settled?'\n\n'Why that, you know,' he returned, rubbing his double chin again,\n'can't naturally be expected.  The prospect of the change and\nseparation, and all that, is, as one may say, close to her and far\naway from her, both at once.  Barkis's death needn't put it off\nmuch, but his lingering might.  Anyway, it's an uncertain state of\nmatters, you see.'\n\n'I see,' said I.\n\n'Consequently,' pursued Mr. Omer, 'Em'ly's still a little down, and\na little fluttered; perhaps, upon the whole, she's more so than she\nwas.  Every day she seems to get fonder and fonder of her uncle,\nand more loth to part from all of us.  A kind word from me brings\nthe tears into her eyes; and if you was to see her with my daughter\nMinnie's little girl, you'd never forget it.  Bless my heart\nalive!' said Mr. Omer, pondering, 'how she loves that child!'\n\nHaving so favourable an opportunity, it occurred to me to ask Mr.\nOmer, before our conversation should be interrupted by the return\nof his daughter and her husband, whether he knew anything of\nMartha.\n\n'Ah!' he rejoined, shaking his head, and looking very much\ndejected.  'No good.  A sad story, sir, however you come to know\nit.  I never thought there was harm in the girl.  I wouldn't wish\nto mention it before my daughter Minnie - for she'd take me up\ndirectly - but I never did.  None of us ever did.'\n\nMr. Omer, hearing his daughter's footstep before I heard it,\ntouched me with his pipe, and shut up one eye, as a caution.  She\nand her husband came in immediately afterwards.\n\nTheir report was, that Mr. Barkis was 'as bad as bad could be';\nthat he was quite unconscious; and that Mr. Chillip had mournfully\nsaid in the kitchen, on going away just now, that the College of\nPhysicians, the College of Surgeons, and Apothecaries' Hall, if\nthey were all called in together, couldn't help him.  He was past\nboth Colleges, Mr. Chillip said, and the Hall could only poison\nhim.\n\nHearing this, and learning that Mr. Peggotty was there, I\ndetermined to go to the house at once.  I bade good night to Mr.\nOmer, and to Mr. and Mrs. Joram; and directed my steps thither,\nwith a solemn feeling, which made Mr. Barkis quite a new and\ndifferent creature.\n\nMy low tap at the door was answered by Mr. Peggotty.  He was not so\nmuch surprised to see me as I had expected.  I remarked this in\nPeggotty, too, when she came down; and I have seen it since; and I\nthink, in the expectation of that dread surprise, all other changes\nand surprises dwindle into nothing.\n\nI shook hands with Mr. Peggotty, and passed into the kitchen, while\nhe softly closed the door.  Little Emily was sitting by the fire,\nwith her hands before her face.  Ham was standing near her.\n\nWe spoke in whispers; listening, between whiles, for any sound in\nthe room above.  I had not thought of it on the occasion of my last\nvisit, but how strange it was to me, now, to miss Mr. Barkis out of\nthe kitchen!\n\n'This is very kind of you, Mas'r Davy,' said Mr. Peggotty.\n\n'It's oncommon kind,' said Ham.\n\n'Em'ly, my dear,' cried Mr. Peggotty.  'See here!  Here's Mas'r\nDavy come!  What, cheer up, pretty!  Not a wured to Mas'r Davy?'\n\nThere was a trembling upon her, that I can see now.  The coldness\nof her hand when I touched it, I can feel yet.  Its only sign of\nanimation was to shrink from mine; and then she glided from the\nchair, and creeping to the other side of her uncle, bowed herself,\nsilently and trembling still, upon his breast.\n\n'It's such a loving art,' said Mr. Peggotty, smoothing her rich\nhair with his great hard hand, 'that it can't abear the sorrer of\nthis.  It's nat'ral in young folk, Mas'r Davy, when they're new to\nthese here trials, and timid, like my little bird, - it's nat'ral.'\n\nShe clung the closer to him, but neither lifted up her face, nor\nspoke a word.\n\n'It's getting late, my dear,' said Mr. Peggotty, 'and here's Ham\ncome fur to take you home.  Theer!  Go along with t'other loving\nart!  What' Em'ly?  Eh, my pretty?'\n\nThe sound of her voice had not reached me, but he bent his head as\nif he listened to her, and then said:\n\n'Let you stay with your uncle?  Why, you doen't mean to ask me\nthat!  Stay with your uncle, Moppet?  When your husband that'll be\nso soon, is here fur to take you home?  Now a person wouldn't think\nit, fur to see this little thing alongside a rough-weather chap\nlike me,' said Mr. Peggotty, looking round at both of us, with\ninfinite pride; 'but the sea ain't more salt in it than she has\nfondness in her for her uncle - a foolish little Em'ly!'\n\n'Em'ly's in the right in that, Mas'r Davy!' said Ham.  'Lookee\nhere!  As Em'ly wishes of it, and as she's hurried and frightened,\nlike, besides, I'll leave her till morning.  Let me stay too!'\n\n'No, no,' said Mr. Peggotty.  'You doen't ought - a married man\nlike you - or what's as good - to take and hull away a day's work. \nAnd you doen't ought to watch and work both.  That won't do.  You\ngo home and turn in.  You ain't afeerd of Em'ly not being took good\ncare on, I know.'\nHam yielded to this persuasion, and took his hat to go.  Even when\nhe kissed her.  - and I never saw him approach her, but I felt that\nnature had given him the soul of a gentleman - she seemed to cling\ncloser to her uncle, even to the avoidance of her chosen husband. \nI shut the door after him, that it might cause no disturbance of\nthe quiet that prevailed; and when I turned back, I found Mr.\nPeggotty still talking to her.\n\n'Now, I'm a going upstairs to tell your aunt as Mas'r Davy's here,\nand that'll cheer her up a bit,' he said.  'Sit ye down by the\nfire, the while, my dear, and warm those mortal cold hands.  You\ndoen't need to be so fearsome, and take on so much.  What?  You'll\ngo along with me? - Well! come along with me - come!  If her uncle\nwas turned out of house and home, and forced to lay down in a dyke,\nMas'r Davy,' said Mr. Peggotty, with no less pride than before,\n'it's my belief she'd go along with him, now!  But there'll be\nsomeone else, soon, - someone else, soon, Em'ly!'\n\nAfterwards, when I went upstairs, as I passed the door of my little\nchamber, which was dark, I had an indistinct impression of her\nbeing within it, cast down upon the floor.  But, whether it was\nreally she, or whether it was a confusion of the shadows in the\nroom, I don't know now.\n\nI had leisure to think, before the kitchen fire, of pretty little\nEmily's dread of death - which, added to what Mr. Omer had told me,\nI took to be the cause of her being so unlike herself - and I had\nleisure, before Peggotty came down, even to think more leniently of\nthe weakness of it: as I sat counting the ticking of the clock, and\ndeepening my sense of the solemn hush around me.  Peggotty took me\nin her arms, and blessed and thanked me over and over again for\nbeing such a comfort to her (that was what she said) in her\ndistress.  She then entreated me to come upstairs, sobbing that Mr.\nBarkis had always liked me and admired me; that he had often talked\nof me, before he fell into a stupor; and that she believed, in case\nof his coming to himself again, he would brighten up at sight of\nme, if he could brighten up at any earthly thing.\n\nThe probability of his ever doing so, appeared to me, when I saw\nhim, to be very small.  He was lying with his head and shoulders\nout of bed, in an uncomfortable attitude, half resting on the box\nwhich had cost him so much pain and trouble.  I learned, that, when\nhe was past creeping out of bed to open it, and past assuring\nhimself of its safety by means of the divining rod I had seen him\nuse, he had required to have it placed on the chair at the\nbed-side, where he had ever since embraced it, night and day.  His\narm lay on it now.  Time and the world were slipping from beneath\nhim, but the box was there; and the last words he had uttered were\n(in an explanatory tone) 'Old clothes!'\n\n'Barkis, my dear!' said Peggotty, almost cheerfully: bending over\nhim, while her brother and I stood at the bed's foot.  'Here's my\ndear boy - my dear boy, Master Davy, who brought us together,\nBarkis!  That you sent messages by, you know!  Won't you speak to\nMaster Davy?'\n\nHe was as mute and senseless as the box, from which his form\nderived the only expression it had.\n\n'He's a going out with the tide,' said Mr. Peggotty to me, behind\nhis hand.\n\nMy eyes were dim and so were Mr. Peggotty's; but I repeated in a\nwhisper, 'With the tide?'\n\n'People can't die, along the coast,' said Mr. Peggotty, 'except\nwhen the tide's pretty nigh out.  They can't be born, unless it's\npretty nigh in - not properly born, till flood.  He's a going out\nwith the tide.  It's ebb at half-arter three, slack water half an\nhour.  If he lives till it turns, he'll hold his own till past the\nflood, and go out with the next tide.'\n\nWe remained there, watching him, a long time - hours.  What\nmysterious influence my presence had upon him in that state of his\nsenses, I shall not pretend to say; but when he at last began to\nwander feebly, it is certain he was muttering about driving me to\nschool.\n\n'He's coming to himself,' said Peggotty.\n\nMr. Peggotty touched me, and whispered with much awe and reverence. \n'They are both a-going out fast.'\n\n'Barkis, my dear!' said Peggotty.\n\n'C. P. Barkis,' he cried faintly.  'No better woman anywhere!'\n\n'Look!  Here's Master Davy!' said Peggotty.  For he now opened his\neyes.\n\nI was on the point of asking him if he knew me, when he tried to\nstretch out his arm, and said to me, distinctly, with a pleasant\nsmile:\n\n'Barkis is willin'!'\n\nAnd, it being low water, he went out with the tide.\n\n\n\nCHAPTER 31\nA GREATER LOSS\n\n\nIt was not difficult for me, on Peggotty's solicitation, to resolve\nto stay where I was, until after the remains of the poor carrier\nshould have made their last journey to Blunderstone.  She had long\nago bought, out of her own savings, a little piece of ground in our\nold churchyard near the grave of 'her sweet girl', as she always\ncalled my mother; and there they were to rest.\n\nIn keeping Peggotty company, and doing all I could for her (little\nenough at the utmost), I was as grateful, I rejoice to think, as\neven now I could wish myself to have been.  But I am afraid I had\na supreme satisfaction, of a personal and professional nature, in\ntaking charge of Mr. Barkis's will, and expounding its contents.\n\nI may claim the merit of having originated the suggestion that the\nwill should be looked for in the box.  After some search, it was\nfound in the box, at the bottom of a horse's nose-bag; wherein\n(besides hay) there was discovered an old gold watch, with chain\nand seals, which Mr. Barkis had worn on his wedding-day, and which\nhad never been seen before or since; a silver tobacco-stopper, in\nthe form of a leg; an imitation lemon, full of minute cups and\nsaucers, which I have some idea Mr. Barkis must have purchased to\npresent to me when I was a child, and afterwards found himself\nunable to part with; eighty-seven guineas and a half, in guineas\nand half-guineas; two hundred and ten pounds, in perfectly clean\nBank notes; certain receipts for Bank of England stock; an old\nhorseshoe, a bad shilling, a piece of camphor, and an oyster-shell. \nFrom the circumstance of the latter article having been much\npolished, and displaying prismatic colours on the inside, I\nconclude that Mr. Barkis had some general ideas about pearls, which\nnever resolved themselves into anything definite.\n\nFor years and years, Mr. Barkis had carried this box, on all his\njourneys, every day.  That it might the better escape notice, he\nhad invented a fiction that it belonged to 'Mr. Blackboy', and was\n'to be left with Barkis till called for'; a fable he had\nelaborately written on the lid, in characters now scarcely legible.\n\nHe had hoarded, all these years, I found, to good purpose.  His\nproperty in money amounted to nearly three thousand pounds.  Of\nthis he bequeathed the interest of one thousand to Mr. Peggotty for\nhis life; on his decease, the principal to be equally divided\nbetween Peggotty, little Emily, and me, or the survivor or\nsurvivors of us, share and share alike.  All the rest he died\npossessed of, he bequeathed to Peggotty; whom he left residuary\nlegatee, and sole executrix of that his last will and testament.\n\nI felt myself quite a proctor when I read this document aloud with\nall possible ceremony, and set forth its provisions, any number of\ntimes, to those whom they concerned.  I began to think there was\nmore in the Commons than I had supposed.  I examined the will with\nthe deepest attention, pronounced it perfectly formal in all\nrespects, made a pencil-mark or so in the margin, and thought it\nrather extraordinary that I knew so much.\n\nIn this abstruse pursuit; in making an account for Peggotty, of all\nthe property into which she had come; in arranging all the affairs\nin an orderly manner; and in being her referee and adviser on every\npoint, to our joint delight; I passed the week before the funeral. \nI did not see little Emily in that interval, but they told me she\nwas to be quietly married in a fortnight.\n\nI did not attend the funeral in character, if I may venture to say\nso.  I mean I was not dressed up in a black coat and a streamer, to\nfrighten the birds; but I walked over to Blunderstone early in the\nmorning, and was in the churchyard when it came, attended only by\nPeggotty and her brother.  The mad gentleman looked on, out of my\nlittle window; Mr. Chillip's baby wagged its heavy head, and rolled\nits goggle eyes, at the clergyman, over its nurse's shoulder; Mr.\nOmer breathed short in the background; no one else was there; and\nit was very quiet.  We walked about the churchyard for an hour,\nafter all was over; and pulled some young leaves from the tree\nabove my mother's grave.\n\nA dread falls on me here.  A cloud is lowering on the distant town,\ntowards which I retraced my solitary steps.  I fear to approach it. \nI cannot bear to think of what did come, upon that memorable night;\nof what must come again, if I go on.\n\nIt is no worse, because I write of it.  It would be no better, if\nI stopped my most unwilling hand.  It is done.  Nothing can undo\nit; nothing can make it otherwise than as it was.\n\nMy old nurse was to go to London with me next day, on the business\nof the will.  Little Emily was passing that day at Mr. Omer's.  We\nwere all to meet in the old boathouse that night.  Ham would bring\nEmily at the usual hour.  I would walk back at my leisure.  The\nbrother and sister would return as they had come, and be expecting\nus, when the day closed in, at the fireside.\n\nI parted from them at the wicket-gate, where visionary Strap had\nrested with Roderick Random's knapsack in the days of yore; and,\ninstead of going straight back, walked a little distance on the\nroad to Lowestoft.  Then I turned, and walked back towards\nYarmouth.  I stayed to dine at a decent alehouse, some mile or two\nfrom the Ferry I have mentioned before; and thus the day wore away,\nand it was evening when I reached it.  Rain was falling heavily by\nthat time, and it was a wild night; but there was a moon behind the\nclouds, and it was not dark.\n\nI was soon within sight of Mr. Peggotty's house, and of the light\nwithin it shining through the window.  A little floundering across\nthe sand, which was heavy, brought me to the door, and I went in.\n\nIt looked very comfortable indeed.  Mr. Peggotty had smoked his\nevening pipe and there were preparations for some supper by and by. \nThe fire was bright, the ashes were thrown up, the locker was ready\nfor little Emily in her old place.  In her own old place sat\nPeggotty, once more, looking (but for her dress) as if she had\nnever left it.  She had fallen back, already, on the society of the\nwork-box with St. Paul's upon the lid, the yard-measure in the\ncottage, and the bit of wax-candle; and there they all were, just\nas if they had never been disturbed.  Mrs. Gummidge appeared to be\nfretting a little, in her old corner; and consequently looked quite\nnatural, too.\n\n'You're first of the lot, Mas'r Davy!' said Mr. Peggotty with a\nhappy face.  'Doen't keep in that coat, sir, if it's wet.'\n\n'Thank you, Mr. Peggotty,' said I, giving him my outer coat to hang\nup.  'It's quite dry.'\n\n'So 'tis!' said Mr. Peggotty, feeling my shoulders.  'As a chip!\nSit ye down, sir.  It ain't o' no use saying welcome to you, but\nyou're welcome, kind and hearty.'\n\n'Thank you, Mr. Peggotty, I am sure of that.  Well, Peggotty!' said\nI, giving her a kiss.  'And how are you, old woman?'\n\n'Ha, ha!' laughed Mr. Peggotty, sitting down beside us, and rubbing\nhis hands in his sense of relief from recent trouble, and in the\ngenuine heartiness of his nature; 'there's not a woman in the\nwureld, sir - as I tell her - that need to feel more easy in her\nmind than her!  She done her dooty by the departed, and the\ndeparted know'd it; and the departed done what was right by her, as\nshe done what was right by the departed; - and - and - and it's all\nright!'\n\nMrs. Gummidge groaned.\n\n'Cheer up, my pritty mawther!' said Mr. Peggotty.  (But he shook\nhis head aside at us, evidently sensible of the tendency of the\nlate occurrences to recall the memory of the old one.) 'Doen't be\ndown!  Cheer up, for your own self, on'y a little bit, and see if\na good deal more doen't come nat'ral!'\n\n'Not to me, Dan'l,' returned Mrs. Gummidge.  'Nothink's nat'ral to\nme but to be lone and lorn.'\n\n'No, no,' said Mr. Peggotty, soothing her sorrows.\n\n'Yes, yes, Dan'l!' said Mrs. Gummidge.  'I ain't a person to live\nwith them as has had money left.  Thinks go too contrary with me. \nI had better be a riddance.'\n\n'Why, how should I ever spend it without you?' said Mr. Peggotty,\nwith an air of serious remonstrance.  'What are you a talking on? \nDoen't I want you more now, than ever I did?'\n\n'I know'd I was never wanted before!' cried Mrs. Gummidge, with a\npitiable whimper, 'and now I'm told so!  How could I expect to be\nwanted, being so lone and lorn, and so contrary!'\n\nMr. Peggotty seemed very much shocked at himself for having made a\nspeech capable of this unfeeling construction, but was prevented\nfrom replying, by Peggotty's pulling his sleeve, and shaking her\nhead.  After looking at Mrs. Gummidge for some moments, in sore\ndistress of mind, he glanced at the Dutch clock, rose, snuffed the\ncandle, and put it in the window.\n\n'Theer!'said Mr. Peggotty, cheerily.'Theer we are, Missis\nGummidge!' Mrs. Gummidge slightly groaned.  'Lighted up, accordin'\nto custom!  You're a wonderin' what that's fur, sir!  Well, it's\nfur our little Em'ly.  You see, the path ain't over light or\ncheerful arter dark; and when I'm here at the hour as she's a\ncomin' home, I puts the light in the winder.  That, you see,' said\nMr. Peggotty, bending over me with great glee, 'meets two objects. \nShe says, says Em'ly, \"Theer's home!\" she says.  And likewise, says\nEm'ly, \"My uncle's theer!\" Fur if I ain't theer, I never have no\nlight showed.'\n\n'You're a baby!' said Peggotty; very fond of him for it, if she\nthought so.\n\n'Well,' returned Mr. Peggotty, standing with his legs pretty wide\napart, and rubbing his hands up and down them in his comfortable\nsatisfaction, as he looked alternately at us and at the fire.  'I\ndoen't know but I am.  Not, you see, to look at.'\n\n'Not azackly,' observed Peggotty.\n\n'No,' laughed Mr. Peggotty, 'not to look at, but to - to consider\non, you know.  I doen't care, bless you!  Now I tell you.  When I\ngo a looking and looking about that theer pritty house of our\nEm'ly's, I'm - I'm Gormed,' said Mr. Peggotty, with sudden emphasis\n- 'theer!  I can't say more - if I doen't feel as if the littlest\nthings was her, a'most.  I takes 'em up and I put 'em down, and I\ntouches of 'em as delicate as if they was our Em'ly.  So 'tis with\nher little bonnets and that.  I couldn't see one on 'em rough used\na purpose - not fur the whole wureld.  There's a babby fur you, in\nthe form of a great Sea Porkypine!' said Mr. Peggotty, relieving\nhis earnestness with a roar of laughter.\n\nPeggotty and I both laughed, but not so loud.\n\n'It's my opinion, you see,' said Mr. Peggotty, with a delighted\nface, after some further rubbing of his legs, 'as this is along of\nmy havin' played with her so much, and made believe as we was\nTurks, and French, and sharks, and every wariety of forinners -\nbless you, yes; and lions and whales, and I doen't know what all!\n- when she warn't no higher than my knee.  I've got into the way on\nit, you know.  Why, this here candle, now!' said Mr. Peggotty,\ngleefully holding out his hand towards it, 'I know wery well that\narter she's married and gone, I shall put that candle theer, just\nthe same as now.  I know wery well that when I'm here o' nights\n(and where else should I live, bless your arts, whatever fortun' I\ncome into!) and she ain't here or I ain't theer, I shall put the\ncandle in the winder, and sit afore the fire, pretending I'm\nexpecting of her, like I'm a doing now.  THERE'S a babby for you,'\nsaid Mr. Peggotty, with another roar, 'in the form of a Sea\nPorkypine!  Why, at the present minute, when I see the candle\nsparkle up, I says to myself, \"She's a looking at it!  Em'ly's a\ncoming!\" THERE'S a babby for you, in the form of a Sea Porkypine!\nRight for all that,' said Mr. Peggotty, stopping in his roar, and\nsmiting his hands together; 'fur here she is!'\n\nIt was only Ham.  The night should have turned more wet since I\ncame in, for he had a large sou'wester hat on, slouched over his\nface.\n\n'Wheer's Em'ly?' said Mr. Peggotty.\n\nHam made a motion with his head, as if she were outside.  Mr.\nPeggotty took the light from the window, trimmed it, put it on the\ntable, and was busily stirring the fire, when Ham, who had not\nmoved, said:\n\n'Mas'r Davy, will you come out a minute, and see what Em'ly and me\nhas got to show you?'\n\nWe went out.  As I passed him at the door, I saw, to my\nastonishment and fright, that he was deadly pale.  He pushed me\nhastily into the open air, and closed the door upon us.  Only upon\nus two.\n\n'Ham! what's the matter?'\n\n'Mas'r Davy! -' Oh, for his broken heart, how dreadfully he wept!\n\nI was paralysed by the sight of such grief.  I don't know what I\nthought, or what I dreaded.  I could only look at him.\n\n'Ham!  Poor good fellow!  For Heaven's sake, tell me what's the\nmatter!'\n\n'My love, Mas'r Davy - the pride and hope of my art - her that I'd\nhave died for, and would die for now - she's gone!'\n\n'Gone!'\n\n'Em'ly's run away!  Oh, Mas'r Davy, think HOW she's run away, when\nI pray my good and gracious God to kill her (her that is so dear\nabove all things) sooner than let her come to ruin and disgrace!'\n\nThe face he turned up to the troubled sky, the quivering of his\nclasped hands, the agony of his figure, remain associated with the\nlonely waste, in my remembrance, to this hour.  It is always night\nthere, and he is the only object in the scene.\n\n'You're a scholar,' he said, hurriedly, 'and know what's right and\nbest.  What am I to say, indoors?  How am I ever to break it to\nhim, Mas'r Davy?'\n\nI saw the door move, and instinctively tried to hold the latch on\nthe outside, to gain a moment's time.  It was too late.  Mr.\nPeggotty thrust forth his face; and never could I forget the change\nthat came upon it when he saw us, if I were to live five hundred\nyears.\n\nI remember a great wail and cry, and the women hanging about him,\nand we all standing in the room; I with a paper in my hand, which\nHam had given me; Mr. Peggotty, with his vest torn open, his hair\nwild, his face and lips quite white, and blood trickling down his\nbosom (it had sprung from his mouth, I think), looking fixedly at\nme.\n\n'Read it, sir,' he said, in a low shivering voice.  'Slow, please. \nI doen't know as I can understand.'\n\nIn the midst of the silence of death, I read thus, from a blotted\nletter:\n\n\n'\"When you, who love me so much better than I ever have deserved,\neven when my mind was innocent, see this, I shall be far away.\"'\n\n\n'I shall be fur away,' he repeated slowly.  'Stop!  Em'ly fur away. \nWell!'\n\n\n'\"When I leave my dear home - my dear home - oh, my dear home! - in\nthe morning,\"'\n\nthe letter bore date on the previous night:\n\n\n'\"- it will be never to come back, unless he brings me back a lady. \nThis will be found at night, many hours after, instead of me.  Oh,\nif you knew how my heart is torn.  If even you, that I have wronged\nso much, that never can forgive me, could only know what I suffer!\nI am too wicked to write about myself!  Oh, take comfort in\nthinking that I am so bad.  Oh, for mercy's sake, tell uncle that\nI never loved him half so dear as now.  Oh, don't remember how\naffectionate and kind you have all been to me - don't remember we\nwere ever to be married - but try to think as if I died when I was\nlittle, and was buried somewhere.  Pray Heaven that I am going away\nfrom, have compassion on my uncle!  Tell him that I never loved him\nhalf so dear.  Be his comfort.  Love some good girl that will be\nwhat I was once to uncle, and be true to you, and worthy of you,\nand know no shame but me.  God bless all!  I'll pray for all,\noften, on my knees.  If he don't bring me back a lady, and I don't\npray for my own self, I'll pray for all.  My parting love to uncle. \nMy last tears, and my last thanks, for uncle!\"'\n\nThat was all.\n\nHe stood, long after I had ceased to read, still looking at me.  At\nlength I ventured to take his hand, and to entreat him, as well as\nI could, to endeavour to get some command of himself.  He replied,\n'I thankee, sir, I thankee!' without moving.\n\nHam spoke to him.  Mr. Peggotty was so far sensible of HIS\naffliction, that he wrung his hand; but, otherwise, he remained in\nthe same state, and no one dared to disturb him.\n\nSlowly, at last, he moved his eyes from my face, as if he were\nwaking from a vision, and cast them round the room.  Then he said,\nin a low voice:\n\n'Who's the man?  I want to know his name.'\n\nHam glanced at me, and suddenly I felt a shock that struck me back.\n\n'There's a man suspected,' said Mr. Peggotty.  'Who is it?'\n\n'Mas'r Davy!' implored Ham.  'Go out a bit, and let me tell him\nwhat I must.  You doen't ought to hear it, sir.'\n\nI felt the shock again.  I sank down in a chair, and tried to utter\nsome reply; but my tongue was fettered, and my sight was weak.\n\n'I want to know his name!' I heard said once more.\n\n'For some time past,' Ham faltered, 'there's been a servant about\nhere, at odd times.  There's been a gen'lm'n too.  Both of 'em\nbelonged to one another.'\n\nMr. Peggotty stood fixed as before, but now looking at him.\n\n'The servant,' pursued Ham, 'was seen along with - our poor girl -\nlast night.  He's been in hiding about here, this week or over.  He\nwas thought to have gone, but he was hiding.  Doen't stay, Mas'r\nDavy, doen't!'\n\nI felt Peggotty's arm round my neck, but I could not have moved if\nthe house had been about to fall upon me.\n\n'A strange chay and hosses was outside town, this morning, on the\nNorwich road, a'most afore the day broke,' Ham went on.  'The\nservant went to it, and come from it, and went to it again.  When\nhe went to it again, Em'ly was nigh him.  The t'other was inside. \nHe's the man.'\n\n'For the Lord's love,' said Mr. Peggotty, falling back, and putting\nout his hand, as if to keep off what he dreaded.  'Doen't tell me\nhis name's Steerforth!'\n\n'Mas'r Davy,' exclaimed Ham, in a broken voice, 'it ain't no fault\nof yourn - and I am far from laying of it to you - but his name is\nSteerforth, and he's a damned villain!'\n\nMr. Peggotty uttered no cry, and shed no tear, and moved no more,\nuntil he seemed to wake again, all at once, and pulled down his\nrough coat from its peg in a corner.\n\n'Bear a hand with this!  I'm struck of a heap, and can't do it,' he\nsaid, impatiently.  'Bear a hand and help me.  Well!' when somebody\nhad done so.  'Now give me that theer hat!'\n\nHam asked him whither he was going.\n\n'I'm a going to seek my niece.  I'm a going to seek my Em'ly.  I'm\na going, first, to stave in that theer boat, and sink it where I\nwould have drownded him, as I'm a living soul, if I had had one\nthought of what was in him!  As he sat afore me,' he said, wildly,\nholding out his clenched right hand, 'as he sat afore me, face to\nface, strike me down dead, but I'd have drownded him, and thought\nit right! - I'm a going to seek my niece.'\n\n'Where?' cried Ham, interposing himself before the door.\n\n'Anywhere!  I'm a going to seek my niece through the wureld.  I'm\na going to find my poor niece in her shame, and bring her back.  No\none stop me!  I tell you I'm a going to seek my niece!'\n\n'No, no!' cried Mrs. Gummidge, coming between them, in a fit of\ncrying.  'No, no, Dan'l, not as you are now.  Seek her in a little\nwhile, my lone lorn Dan'l, and that'll be but right! but not as you\nare now.  Sit ye down, and give me your forgiveness for having ever\nbeen a worrit to you, Dan'l - what have my contraries ever been to\nthis! - and let us speak a word about them times when she was first\nan orphan, and when Ham was too, and when I was a poor widder\nwoman, and you took me in.  It'll soften your poor heart, Dan'l,'\nlaying her head upon his shoulder, 'and you'll bear your sorrow\nbetter; for you know the promise, Dan'l, \"As you have done it unto\none of the least of these, you have done it unto me\",- and that can\nnever fail under this roof, that's been our shelter for so many,\nmany year!'\n\nHe was quite passive now; and when I heard him crying, the impulse\nthat had been upon me to go down upon my knees, and ask their\npardon for the desolation I had caused, and curse Steer- forth,\nyielded to a better feeling, My overcharged heart found the same\nrelief, and I cried too.\n\n\n\nCHAPTER 32\nTHE BEGINNING OF A LONG JOURNEY\n\n\nWhat is natural in me, is natural in many other men, I infer, and\nso I am not afraid to write that I never had loved Steerforth\nbetter than when the ties that bound me to him were broken.  In the\nkeen distress of the discovery of his unworthiness, I thought more\nof all that was brilliant in him, I softened more towards all that\nwas good in him, I did more justice to the qualities that might\nhave made him a man of a noble nature and a great name, than ever\nI had done in the height of my devotion to him.  Deeply as I felt\nmy own unconscious part in his pollution of an honest home, I\nbelieved that if I had been brought face to face with him, I could\nnot have uttered one reproach.  I should have loved him so well\nstill - though he fascinated me no longer - I should have held in\nso much tenderness the memory of my affection for him, that I think\nI should have been as weak as a spirit-wounded child, in all but\nthe entertainment of a thought that we could ever be re-united. \nThat thought I never had.  I felt, as he had felt, that all was at\nan end between us.  What his remembrances of me were, I have never\nknown - they were light enough, perhaps, and easily dismissed - but\nmine of him were as the remembrances of a cherished friend, who was\ndead.\n\nYes, Steerforth, long removed from the scenes of this poor history!\nMy sorrow may bear involuntary witness against you at the judgement\nThrone; but my angry thoughts or my reproaches never will, I know!\n\nThe news of what had happened soon spread through the town;\ninsomuch that as I passed along the streets next morning, I\noverheard the people speaking of it at their doors.  Many were hard\nupon her, some few were hard upon him, but towards her second\nfather and her lover there was but one sentiment.  Among all kinds\nof people a respect for them in their distress prevailed, which was\nfull of gentleness and delicacy.  The seafaring men kept apart,\nwhen those two were seen early, walking with slow steps on the\nbeach; and stood in knots, talking compassionately among\nthemselves.\n\nIt was on the beach, close down by the sea, that I found them.  It\nwould have been easy to perceive that they had not slept all last\nnight, even if Peggotty had failed to tell me of their still\nsitting just as I left them, when it was broad day.  They looked\nworn; and I thought Mr. Peggotty's head was bowed in one night more\nthan in all the years I had known him.  But they were both as grave\nand steady as the sea itself, then lying beneath a dark sky,\nwaveless - yet with a heavy roll upon it, as if it breathed in its\nrest - and touched, on the horizon, with a strip of silvery light\nfrom the unseen sun.\n\n'We have had a mort of talk, sir,' said Mr. Peggotty to me, when we\nhad all three walked a little while in silence, 'of what we ought\nand doen't ought to do.  But we see our course now.'\n\nI happened to glance at Ham, then looking out to sea upon the\ndistant light, and a frightful thought came into my mind - not that\nhis face was angry, for it was not; I recall nothing but an\nexpression of stern determination in it - that if ever he\nencountered Steerforth, he would kill him.\n\n'My dooty here, sir,' said Mr. Peggotty, 'is done.  I'm a going to\nseek my -' he stopped, and went on in a firmer voice: 'I'm a going\nto seek her.  That's my dooty evermore.'\n\nHe shook his head when I asked him where he would seek her, and\ninquired if I were going to London tomorrow?  I told him I had not\ngone today, fearing to lose the chance of being of any service to\nhim; but that I was ready to go when he would.\n\n'I'll go along with you, sir,' he rejoined, 'if you're agreeable,\ntomorrow.'\n\nWe walked again, for a while, in silence.\n\n'Ham,'he presently resumed,'he'll hold to his present work, and go\nand live along with my sister.  The old boat yonder -'\n\n'Will you desert the old boat, Mr. Peggotty?' I gently interposed.\n\n'My station, Mas'r Davy,' he returned, 'ain't there no longer; and\nif ever a boat foundered, since there was darkness on the face of\nthe deep, that one's gone down.  But no, sir, no; I doen't mean as\nit should be deserted.  Fur from that.'\n\nWe walked again for a while, as before, until he explained:\n\n'My wishes is, sir, as it shall look, day and night, winter and\nsummer, as it has always looked, since she fust know'd it.  If ever\nshe should come a wandering back, I wouldn't have the old place\nseem to cast her off, you understand, but seem to tempt her to draw\nnigher to 't, and to peep in, maybe, like a ghost, out of the wind\nand rain, through the old winder, at the old seat by the fire. \nThen, maybe, Mas'r Davy, seein' none but Missis Gummidge there, she\nmight take heart to creep in, trembling; and might come to be laid\ndown in her old bed, and rest her weary head where it was once so\ngay.'\n\nI could not speak to him in reply, though I tried.\n\n'Every night,' said Mr. Peggotty, 'as reg'lar as the night comes,\nthe candle must be stood in its old pane of glass, that if ever she\nshould see it, it may seem to say \"Come back, my child, come back!\"\nIf ever there's a knock, Ham (partic'ler a soft knock), arter dark,\nat your aunt's door, doen't you go nigh it.  Let it be her - not\nyou - that sees my fallen child!'\n\nHe walked a little in front of us, and kept before us for some\nminutes.  During this interval, I glanced at Ham again, and\nobserving the same expression on his face, and his eyes still\ndirected to the distant light, I touched his arm.\n\nTwice I called him by his name, in the tone in which I might have\ntried to rouse a sleeper, before he heeded me.  When I at last\ninquired on what his thoughts were so bent, he replied:\n\n'On what's afore me, Mas'r Davy; and over yon.'\n'On the life before you, do you mean?' He had pointed confusedly\nout to sea.\n\n'Ay, Mas'r Davy.  I doen't rightly know how 'tis, but from over yon\nthere seemed to me to come - the end of it like,' looking at me as\nif he were waking, but with the same determined face.\n\n'What end?' I asked, possessed by my former fear.\n\n'I doen't know,'he said, thoughtfully; 'I was calling to mind that\nthe beginning of it all did take place here - and then the end\ncome.  But it's gone!  Mas'r Davy,' he added; answering, as I\nthink, my look; 'you han't no call to be afeerd of me: but I'm\nkiender muddled; I don't fare to feel no matters,' - which was as\nmuch as to say that he was not himself, and quite confounded.\n\nMr. Peggotty stopping for us to join him: we did so, and said no\nmore.  The remembrance of this, in connexion with my former\nthought, however, haunted me at intervals, even until the\ninexorable end came at its appointed time.\n\nWe insensibly approached the old boat, and entered.  Mrs. Gummidge,\nno longer moping in her especial corner, was busy preparing\nbreakfast.  She took Mr. Peggotty's hat, and placed his seat for\nhim, and spoke so comfortably and softly, that I hardly knew her.\n\n'Dan'l, my good man,' said she, 'you must eat and drink, and keep\nup your strength, for without it you'll do nowt.  Try, that's a\ndear soul!  An if I disturb you with my clicketten,' she meant her\nchattering, 'tell me so, Dan'l, and I won't.'\n\nWhen she had served us all, she withdrew to the window, where she\nsedulously employed herself in repairing some shirts and other\nclothes belonging to Mr. Peggotty, and neatly folding and packing\nthem in an old oilskin bag, such as sailors carry.  Meanwhile, she\ncontinued talking, in the same quiet manner:\n\n'All times and seasons, you know, Dan'l,' said Mrs. Gummidge, 'I\nshall be allus here, and everythink will look accordin' to your\nwishes.  I'm a poor scholar, but I shall write to you, odd times,\nwhen you're away, and send my letters to Mas'r Davy.  Maybe you'll\nwrite to me too, Dan'l, odd times, and tell me how you fare to feel\nupon your lone lorn journies.'\n\n'You'll be a solitary woman heer, I'm afeerd!' said Mr. Peggotty.\n\n'No, no, Dan'l,' she returned, 'I shan't be that.  Doen't you mind\nme.  I shall have enough to do to keep a Beein for you' (Mrs.\nGummidge meant a home), 'again you come back - to keep a Beein here\nfor any that may hap to come back, Dan'l.  In the fine time, I\nshall set outside the door as I used to do.  If any should come\nnigh, they shall see the old widder woman true to 'em, a long way\noff.'\n\nWhat a change in Mrs. Gummidge in a little time!  She was another\nwoman.  She was so devoted, she had such a quick perception of what\nit would be well to say, and what it would be well to leave unsaid;\nshe was so forgetful of herself, and so regardful of the sorrow\nabout her, that I held her in a sort of veneration.  The work she\ndid that day!  There were many things to be brought up from the\nbeach and stored in the outhouse - as oars, nets, sails, cordage,\nspars, lobster-pots, bags of ballast, and the like; and though\nthere was abundance of assistance rendered, there being not a pair\nof working hands on all that shore but would have laboured hard for\nMr. Peggotty, and been well paid in being asked to do it, yet she\npersisted, all day long, in toiling under weights that she was\nquite unequal to, and fagging to and fro on all sorts of\nunnecessary errands.  As to deploring her misfortunes, she appeared\nto have entirely lost the recollection of ever having had any.  She\npreserved an equable cheerfulness in the midst of her sympathy,\nwhich was not the least astonishing part of the change that had\ncome over her.  Querulousness was out of the question.  I did not\neven observe her voice to falter, or a tear to escape from her\neyes, the whole day through, until twilight; when she and I and Mr.\nPeggotty being alone together, and he having fallen asleep in\nperfect exhaustion, she broke into a half-suppressed fit of sobbing\nand crying, and taking me to the door, said, 'Ever bless you, Mas'r\nDavy, be a friend to him, poor dear!' Then, she immediately ran out\nof the house to wash her face, in order that she might sit quietly\nbeside him, and be found at work there, when he should awake.  In\nshort I left her, when I went away at night, the prop and staff of\nMr. Peggotty's affliction; and I could not meditate enough upon the\nlesson that I read in Mrs. Gummidge, and the new experience she\nunfolded to me.\n\nIt was between nine and ten o'clock when, strolling in a melancholy\nmanner through the town, I stopped at Mr. Omer's door.  Mr. Omer\nhad taken it so much to heart, his daughter told me, that he had\nbeen very low and poorly all day, and had gone to bed without his\npipe.\n\n'A deceitful, bad-hearted girl,' said Mrs. Joram.  'There was no\ngood in her, ever!'\n\n'Don't say so,' I returned.  'You don't think so.'\n\n'Yes, I do!' cried Mrs. Joram, angrily.\n\n'No, no,' said I.\n\nMrs. Joram tossed her head, endeavouring to be very stern and\ncross; but she could not command her softer self, and began to cry. \nI was young, to be sure; but I thought much the better of her for\nthis sympathy, and fancied it became her, as a virtuous wife and\nmother, very well indeed.\n\n'What will she ever do!' sobbed Minnie.  'Where will she go!  What\nwill become of her!  Oh, how could she be so cruel, to herself and\nhim!'\n\nI remembered the time when Minnie was a young and pretty girl; and\nI was glad she remembered it too, so feelingly.\n\n'My little Minnie,' said Mrs. Joram, 'has only just now been got to\nsleep.  Even in her sleep she is sobbing for Em'ly.  All day long,\nlittle Minnie has cried for her, and asked me, over and over again,\nwhether Em'ly was wicked?  What can I say to her, when Em'ly tied\na ribbon off her own neck round little Minnie's the last night she\nwas here, and laid her head down on the pillow beside her till she\nwas fast asleep!  The ribbon's round my little Minnie's neck now. \nIt ought not to be, perhaps, but what can I do?  Em'ly is very bad,\nbut they were fond of one another.  And the child knows nothing!'\n\nMrs. Joram was so unhappy that her husband came out to take care of\nher.  Leaving them together, I went home to Peggotty's; more\nmelancholy myself, if possible, than I had been yet.\n\nThat good creature - I mean Peggotty - all untired by her late\nanxieties and sleepless nights, was at her brother's, where she\nmeant to stay till morning.  An old woman, who had been employed\nabout the house for some weeks past, while Peggotty had been unable\nto attend to it, was the house's only other occupant besides\nmyself.  As I had no occasion for her services, I sent her to bed,\nby no means against her will, and sat down before the kitchen fire\na little while, to think about all this.\n\nI was blending it with the deathbed of the late Mr. Barkis, and was\ndriving out with the tide towards the distance at which Ham had\nlooked so singularly in the morning, when I was recalled from my\nwanderings by a knock at the door.  There was a knocker upon the\ndoor, but it was not that which made the sound.  The tap was from\na hand, and low down upon the door, as if it were given by a child.\n\nIt made me start as much as if it had been the knock of a footman\nto a person of distinction.  I opened the door; and at first looked\ndown, to my amazement, on nothing but a great umbrella that\nappeared to be walking about of itself.  But presently I discovered\nunderneath it, Miss Mowcher.\n\nI might not have been prepared to give the little creature a very\nkind reception, if, on her removing the umbrella, which her utmost\nefforts were unable to shut up, she had shown me the 'volatile'\nexpression of face which had made so great an impression on me at\nour first and last meeting.  But her face, as she turned it up to\nmine, was so earnest; and when I relieved her of the umbrella\n(which would have been an inconvenient one for the Irish Giant),\nshe wrung her little hands in such an afflicted manner; that I\nrather inclined towards her.\n\n'Miss Mowcher!' said I, after glancing up and down the empty\nstreet, without distinctly knowing what I expected to see besides;\n'how do you come here?  What is the matter?'\nShe motioned to me with her short right arm, to shut the umbrella\nfor her; and passing me hurriedly, went into the kitchen.  When I\nhad closed the door, and followed, with the umbrella in my hand, I\nfound her sitting on the corner of the fender - it was a low iron\none, with two flat bars at top to stand plates upon - in the shadow\nof the boiler, swaying herself backwards and forwards, and chafing\nher hands upon her knees like a person in pain.\n\nQuite alarmed at being the only recipient of this untimely visit,\nand the only spectator of this portentous behaviour, I exclaimed\nagain, 'Pray tell me, Miss Mowcher, what is the matter! are you\nill?'\n\n'My dear young soul,' returned Miss Mowcher, squeezing her hands\nupon her heart one over the other.  'I am ill here, I am very ill. \nTo think that it should come to this, when I might have known it\nand perhaps prevented it, if I hadn't been a thoughtless fool!'\n\nAgain her large bonnet (very disproportionate to the figure) went\nbackwards and forwards, in her swaying of her little body to and\nfro; while a most gigantic bonnet rocked, in unison with it, upon\nthe wall.\n\n'I am surprised,' I began, 'to see you so distressed and serious'-\nwhen she interrupted me.\n\n'Yes, it's always so!' she said.  'They are all surprised, these\ninconsiderate young people, fairly and full grown, to see any\nnatural feeling in a little thing like me!  They make a plaything\nof me, use me for their amusement, throw me away when they are\ntired, and wonder that I feel more than a toy horse or a wooden\nsoldier!  Yes, yes, that's the way.  The old way!'\n\n'It may be, with others,' I returned, 'but I do assure you it is\nnot with me.  Perhaps I ought not to be at all surprised to see you\nas you are now: I know so little of you.  I said, without\nconsideration, what I thought.'\n\n'What can I do?' returned the little woman, standing up, and\nholding out her arms to show herself.  'See!  What I am, my father\nwas; and my sister is; and my brother is.  I have worked for sister\nand brother these many years - hard, Mr. Copperfield - all day.  I\nmust live.  I do no harm.  If there are people so unreflecting or\nso cruel, as to make a jest of me, what is left for me to do but to\nmake a jest of myself, them, and everything?  If I do so, for the\ntime, whose fault is that?  Mine?'\n\nNo.  Not Miss Mowcher's, I perceived.\n\n'If I had shown myself a sensitive dwarf to your false friend,'\npursued the little woman, shaking her head at me, with reproachful\nearnestness, 'how much of his help or good will do you think I\nshould ever have had?  If little Mowcher (who had no hand, young\ngentleman, in the making of herself) addressed herself to him, or\nthe like of him, because of her misfortunes, when do you suppose\nher small voice would have been heard?  Little Mowcher would have\nas much need to live, if she was the bitterest and dullest of\npigmies; but she couldn't do it.  No.  She might whistle for her\nbread and butter till she died of Air.'\n\nMiss Mowcher sat down on the fender again, and took out her\nhandkerchief, and wiped her eyes.\n\n'Be thankful for me, if you have a kind heart, as I think you\nhave,' she said, 'that while I know well what I am, I can be\ncheerful and endure it all.  I am thankful for myself, at any rate,\nthat I can find my tiny way through the world, without being\nbeholden to anyone; and that in return for all that is thrown at\nme, in folly or vanity, as I go along, I can throw bubbles back. \nIf I don't brood over all I want, it is the better for me, and not\nthe worse for anyone.  If I am a plaything for you giants, be\ngentle with me.'\n\nMiss Mowcher replaced her handkerchief in her pocket, looking at me\nwith very intent expression all the while, and pursued:\n\n'I saw you in the street just now.  You may suppose I am not able\nto walk as fast as you, with my short legs and short breath, and I\ncouldn't overtake you; but I guessed where you came, and came after\nyou.  I have been here before, today, but the good woman wasn't at\nhome.'\n\n'Do you know her?' I demanded.\n\n'I know of her, and about her,' she replied, 'from Omer and Joram. \nI was there at seven o'clock this morning.  Do you remember what\nSteerforth said to me about this unfortunate girl, that time when\nI saw you both at the inn?'\n\nThe great bonnet on Miss Mowcher's head, and the greater bonnet on\nthe wall, began to go backwards and forwards again when she asked\nthis question.\n\nI remembered very well what she referred to, having had it in my\nthoughts many times that day.  I told her so.\n\n'May the Father of all Evil confound him,' said the little woman,\nholding up her forefinger between me and her sparkling eyes, 'and\nten times more confound that wicked servant; but I believed it was\nYOU who had a boyish passion for her!'\n\n'I?' I repeated.\n\n'Child, child!  In the name of blind ill-fortune,' cried Miss\nMowcher, wringing her hands impatiently, as she went to and fro\nagain upon the fender, 'why did you praise her so, and blush, and\nlook disturbed?  '\n\nI could not conceal from myself that I had done this, though for a\nreason very different from her supposition.\n\n'What did I know?' said Miss Mowcher, taking out her handkerchief\nagain, and giving one little stamp on the ground whenever, at short\nintervals, she applied it to her eyes with both hands at once.  'He\nwas crossing you and wheedling you, I saw; and you were soft wax in\nhis hands, I saw.  Had I left the room a minute, when his man told\nme that \"Young Innocence\" (so he called you, and you may call him\n\"Old Guilt\" all the days of your life) had set his heart upon her,\nand she was giddy and liked him, but his master was resolved that\nno harm should come of it - more for your sake than for hers - and\nthat that was their business here?  How could I BUT believe him? \nI saw Steerforth soothe and please you by his praise of her!  You\nwere the first to mention her name.  You owned to an old admiration\nof her.  You were hot and cold, and red and white, all at once when\nI spoke to you of her.  What could I think - what DID I think - but\nthat you were a young libertine in everything but experience, and\nhad fallen into hands that had experience enough, and could manage\nyou (having the fancy) for your own good?  Oh! oh! oh!  They were\nafraid of my finding out the truth,' exclaimed Miss Mowcher,\ngetting off the fender, and trotting up and down the kitchen with\nher two short arms distressfully lifted up, 'because I am a sharp\nlittle thing - I need be, to get through the world at all! - and\nthey deceived me altogether, and I gave the poor unfortunate girl\na letter, which I fully believe was the beginning of her ever\nspeaking to Littimer, who was left behind on purpose!'\n\nI stood amazed at the revelation of all this perfidy, looking at\nMiss Mowcher as she walked up and down the kitchen until she was\nout of breath: when she sat upon the fender again, and, drying her\nface with her handkerchief, shook her head for a long time, without\notherwise moving, and without breaking silence.\n\n'My country rounds,' she added at length, 'brought me to Norwich,\nMr. Copperfield, the night before last.  What I happened to find\nthere, about their secret way of coming and going, without you -\nwhich was strange - led to my suspecting something wrong.  I got\ninto the coach from London last night, as it came through Norwich,\nand was here this morning.  Oh, oh, oh! too late!'\n\nPoor little Mowcher turned so chilly after all her crying and\nfretting, that she turned round on the fender, putting her poor\nlittle wet feet in among the ashes to warm them, and sat looking at\nthe fire, like a large doll.  I sat in a chair on the other side of\nthe hearth, lost in unhappy reflections, and looking at the fire\ntoo, and sometimes at her.\n\n'I must go,' she said at last, rising as she spoke.  'It's late. \nYou don't mistrust me?'\n\nMeeting her sharp glance, which was as sharp as ever when she asked\nme, I could not on that short challenge answer no, quite frankly.\n\n'Come!' said she, accepting the offer of my hand to help her over\nthe fender, and looking wistfully up into my face, 'you know you\nwouldn't mistrust me, if I was a full-sized woman!'\n\nI felt that there was much truth in this; and I felt rather ashamed\nof myself.\n\n'You are a young man,' she said, nodding.  'Take a word of advice,\neven from three foot nothing.  Try not to associate bodily defects\nwith mental, my good friend, except for a solid reason.'\n\nShe had got over the fender now, and I had got over my suspicion. \nI told her that I believed she had given me a faithful account of\nherself, and that we had both been hapless instruments in designing\nhands.  She thanked me, and said I was a good fellow.\n\n'Now, mind!' she exclaimed, turning back on her way to the door,\nand looking shrewdly at me, with her forefinger up again.- 'I have\nsome reason to suspect, from what I have heard - my ears are always\nopen; I can't afford to spare what powers I have - that they are\ngone abroad.  But if ever they return, if ever any one of them\nreturns, while I am alive, I am more likely than another, going\nabout as I do, to find it out soon.  Whatever I know, you shall\nknow.  If ever I can do anything to serve the poor betrayed girl,\nI will do it faithfully, please Heaven!  And Littimer had better\nhave a bloodhound at his back, than little Mowcher!'\n\nI placed implicit faith in this last statement, when I marked the\nlook with which it was accompanied.\n\n'Trust me no more, but trust me no less, than you would trust a\nfull-sized woman,' said the little creature, touching me\nappealingly on the wrist.  'If ever you see me again, unlike what\nI am now, and like what I was when you first saw me, observe what\ncompany I am in.  Call to mind that I am a very helpless and\ndefenceless little thing.  Think of me at home with my brother like\nmyself and sister like myself, when my day's work is done.  Perhaps\nyou won't, then, be very hard upon me, or surprised if I can be\ndistressed and serious.  Good night!'\n\nI gave Miss Mowcher my hand, with a very different opinion of her\nfrom that which I had hitherto entertained, and opened the door to\nlet her out.  It was not a trifling business to get the great\numbrella up, and properly balanced in her grasp; but at last I\nsuccessfully accomplished this, and saw it go bobbing down the\nstreet through the rain, without the least appearance of having\nanybody underneath it, except when a heavier fall than usual from\nsome over-charged water-spout sent it toppling over, on one side,\nand discovered Miss Mowcher struggling violently to get it right. \nAfter making one or two sallies to her relief, which were rendered\nfutile by the umbrella's hopping on again, like an immense bird,\nbefore I could reach it, I came in, went to bed, and slept till\nmorning.\n\nIn the morning I was joined by Mr. Peggotty and by my old nurse,\nand we went at an early hour to the coach office, where Mrs.\nGummidge and Ham were waiting to take leave of us.\n\n'Mas'r Davy,' Ham whispered, drawing me aside, while Mr. Peggotty\nwas stowing his bag among the luggage, 'his life is quite broke up. \nHe doen't know wheer he's going; he doen't know -what's afore him;\nhe's bound upon a voyage that'll last, on and off, all the rest of\nhis days, take my wured for 't, unless he finds what he's a seeking\nof.  I am sure you'll be a friend to him, Mas'r Davy?'\n\n'Trust me, I will indeed,' said I, shaking hands with Ham\nearnestly.\n\n'Thankee.  Thankee, very kind, sir.  One thing furder.  I'm in good\nemploy, you know, Mas'r Davy, and I han't no way now of spending\nwhat I gets.  Money's of no use to me no more, except to live.  If\nyou can lay it out for him, I shall do my work with a better art. \nThough as to that, sir,' and he spoke very steadily and mildly,\n'you're not to think but I shall work at all times, like a man, and\nact the best that lays in my power!'\n\nI told him I was well convinced of it; and I hinted that I hoped\nthe time might even come, when he would cease to lead the lonely\nlife he naturally contemplated now.\n\n'No, sir,' he said, shaking his head, 'all that's past and over\nwith me, sir.  No one can never fill the place that's empty.  But\nyou'll bear in mind about the money, as theer's at all times some\nlaying by for him?'\n\nReminding him of the fact, that Mr. Peggotty derived a steady,\nthough certainly a very moderate income from the bequest of his\nlate brother-in-law, I promised to do so.  We then took leave of\neach other.  I cannot leave him even now, without remembering with\na pang, at once his modest fortitude and his great sorrow.\n\nAs to Mrs. Gummidge, if I were to endeavour to describe how she ran\ndown the street by the side of the coach, seeing nothing but Mr.\nPeggotty on the roof, through the tears she tried to repress, and\ndashing herself against the people who were coming in the opposite\ndirection, I should enter on a task of some difficulty.  Therefore\nI had better leave her sitting on a baker's door-step, out of\nbreath, with no shape at all remaining in her bonnet, and one of\nher shoes off, lying on the pavement at a considerable distance.\n\nWhen we got to our journey's end, our first pursuit was to look\nabout for a little lodging for Peggotty, where her brother could\nhave a bed.  We were so fortunate as to find one, of a very clean\nand cheap description, over a chandler's shop, only two streets\nremoved from me.  When we had engaged this domicile, I bought some\ncold meat at an eating-house, and took my fellow-travellers home to\ntea; a proceeding, I regret to state, which did not meet with Mrs.\nCrupp's approval, but quite the contrary.  I ought to observe,\nhowever, in explanation of that lady's state of mind, that she was\nmuch offended by Peggotty's tucking up her widow's gown before she\nhad been ten minutes in the place, and setting to work to dust my\nbedroom.  This Mrs. Crupp regarded in the light of a liberty, and\na liberty, she said, was a thing she never allowed.\n\nMr. Peggotty had made a communication to me on the way to London\nfor which I was not unprepared.  It was, that he purposed first\nseeing Mrs. Steerforth.  As I felt bound to assist him in this, and\nalso to mediate between them; with the view of sparing the mother's\nfeelings as much as possible, I wrote to her that night.  I told\nher as mildly as I could what his wrong was, and what my own share\nin his injury.  I said he was a man in very common life, but of a\nmost gentle and upright character; and that I ventured to express\na hope that she would not refuse to see him in his heavy trouble. \nI mentioned two o'clock in the afternoon as the hour of our coming,\nand I sent the letter myself by the first coach in the morning.\n\nAt the appointed time, we stood at the door - the door of that\nhouse where I had been, a few days since, so happy: where my\nyouthful confidence and warmth of heart had been yielded up so\nfreely: which was closed against me henceforth: which was now a\nwaste, a ruin.\n\nNo Littimer appeared.  The pleasanter face which had replaced his,\non the occasion of my last visit, answered to our summons, and went\nbefore us to the drawing-room.  Mrs. Steerforth was sitting there. \nRosa Dartle glided, as we went in, from another part of the room\nand stood behind her chair.\n\nI saw, directly, in his mother's face, that she knew from himself\nwhat he had done.  It was very pale; and bore the traces of deeper\nemotion than my letter alone, weakened by the doubts her fondness\nwould have raised upon it, would have been likely to create.  I\nthought her more like him than ever I had thought her; and I felt,\nrather than saw, that the resemblance was not lost on my companion.\n\nShe sat upright in her arm-chair, with a stately, immovable,\npassionless air, that it seemed as if nothing could disturb.  She\nlooked very steadfastly at Mr. Peggotty when he stood before her;\nand he looked quite as steadfastly at her.  Rosa Dartle's keen\nglance comprehended all of us.  For some moments not a word was\nspoken.\n\nShe motioned to Mr. Peggotty to be seated.  He said, in a low\nvoice, 'I shouldn't feel it nat'ral, ma'am, to sit down in this\nhouse.  I'd sooner stand.'  And this was succeeded by another\nsilence, which she broke thus:\n\n'I know, with deep regret, what has brought you here.  What do you\nwant of me?  What do you ask me to do?'\n\nHe put his hat under his arm, and feeling in his breast for Emily's\nletter, took it out, unfolded it, and gave it to her.\n'Please to read that, ma'am.  That's my niece's hand!'\n\nShe read it, in the same stately and impassive way, - untouched by\nits contents, as far as I could see, - and returned it to him.\n\n'\"Unless he brings me back a lady,\"' said Mr. Peggotty, tracing out\nthat part with his finger.  'I come to know, ma'am, whether he will\nkeep his wured?'\n\n'No,' she returned.\n\n'Why not?' said Mr. Peggotty.\n\n'It is impossible.  He would disgrace himself.  You cannot fail to\nknow that she is far below him.'\n\n'Raise her up!' said Mr. Peggotty.\n\n'She is uneducated and ignorant.'\n\n'Maybe she's not; maybe she is,' said Mr. Peggotty.  'I think not,\nma'am; but I'm no judge of them things.  Teach her better!'\n\n'Since you oblige me to speak more plainly, which I am very\nunwilling to do, her humble connexions would render such a thing\nimpossible, if nothing else did.'\n\n'Hark to this, ma'am,' he returned, slowly and quietly.  'You know\nwhat it is to love your child.  So do I.  If she was a hundred\ntimes my child, I couldn't love her more.  You doen't know what it\nis to lose your child.  I do.  All the heaps of riches in the\nwureld would be nowt to me (if they was mine) to buy her back! \nBut, save her from this disgrace, and she shall never be disgraced\nby us.  Not one of us that she's growed up among, not one of us\nthat's lived along with her and had her for their all in all, these\nmany year, will ever look upon her pritty face again.  We'll be\ncontent to let her be; we'll be content to think of her, far off,\nas if she was underneath another sun and sky; we'll be content to\ntrust her to her husband, - to her little children, p'raps, - and\nbide the time when all of us shall be alike in quality afore our\nGod!'\n\nThe rugged eloquence with which he spoke, was not devoid of all\neffect.  She still preserved her proud manner, but there was a\ntouch of softness in her voice, as she answered:\n\n'I justify nothing.  I make no counter-accusations.  But I am sorry\nto repeat, it is impossible.  Such a marriage would irretrievably\nblight my son's career, and ruin his prospects.  Nothing is more\ncertain than that it never can take place, and never will.  If\nthere is any other compensation -'\n\n'I am looking at the likeness of the face,' interrupted Mr.\nPeggotty, with a steady but a kindling eye, 'that has looked at me,\nin my home, at my fireside, in my boat - wheer not?  - smiling and\nfriendly, when it was so treacherous, that I go half wild when I\nthink of it.  If the likeness of that face don't turn to burning\nfire, at the thought of offering money to me for my child's blight\nand ruin, it's as bad.  I doen't know, being a lady's, but what\nit's worse.'\n\nShe changed now, in a moment.  An angry flush overspread her\nfeatures; and she said, in an intolerant manner, grasping the\narm-chair tightly with her hands:\n\n'What compensation can you make to ME for opening such a pit\nbetween me and my son?  What is your love to mine?  What is your\nseparation to ours?'\n\nMiss Dartle softly touched her, and bent down her head to whisper,\nbut she would not hear a word.\n\n'No, Rosa, not a word!  Let the man listen to what I say!  My son,\nwho has been the object of my life, to whom its every thought has\nbeen devoted, whom I have gratified from a child in every wish,\nfrom whom I have had no separate existence since his birth, - to\ntake up in a moment with a miserable girl, and avoid me!  To repay\nmy confidence with systematic deception, for her sake, and quit me\nfor her!  To set this wretched fancy, against his mother's claims\nupon his duty, love, respect, gratitude - claims that every day and\nhour of his life should have strengthened into ties that nothing\ncould be proof against!  Is this no injury?'\n\nAgain Rosa Dartle tried to soothe her; again ineffectually.\n\n'I say, Rosa, not a word!  If he can stake his all upon the\nlightest object, I can stake my all upon a greater purpose.  Let\nhim go where he will, with the means that my love has secured to\nhim!  Does he think to reduce me by long absence?  He knows his\nmother very little if he does.  Let him put away his whim now, and\nhe is welcome back.  Let him not put her away now, and he never\nshall come near me, living or dying, while I can raise my hand to\nmake a sign against it, unless, being rid of her for ever, he comes\nhumbly to me and begs for my forgiveness.  This is my right.  This\nis the acknowledgement I WILL HAVE.  This is the separation that\nthere is between us!  And is this,' she added, looking at her\nvisitor with the proud intolerant air with which she had begun, 'no\ninjury?'\n\nWhile I heard and saw the mother as she said these words, I seemed\nto hear and see the son, defying them.  All that I had ever seen in\nhim of an unyielding, wilful spirit, I saw in her.  All the\nunderstanding that I had now of his misdirected energy, became an\nunderstanding of her character too, and a perception that it was,\nin its strongest springs, the same.\n\nShe now observed to me, aloud, resuming her former restraint, that\nit was useless to hear more, or to say more, and that she begged to\nput an end to the interview.  She rose with an air of dignity to\nleave the room, when Mr. Peggotty signified that it was needless.\n\n'Doen't fear me being any hindrance to you, I have no more to say,\nma'am,' he remarked, as he moved towards the door.  'I come beer\nwith no hope, and I take away no hope.  I have done what I thowt\nshould be done, but I never looked fur any good to come of my\nstan'ning where I do.  This has been too evil a house fur me and\nmine, fur me to be in my right senses and expect it.'\n\nWith this, we departed; leaving her standing by her elbow-chair, a\npicture of a noble presence and a handsome face.\n\nWe had, on our way out, to cross a paved hall, with glass sides and\nroof, over which a vine was trained.  Its leaves and shoots were\ngreen then, and the day being sunny, a pair of glass doors leading\nto the garden were thrown open.  Rosa Dartle, entering this way\nwith a noiseless step, when we were close to them, addressed\nherself to me:\n\n'You do well,' she said, 'indeed, to bring this fellow here!'\n\nSuch a concentration of rage and scorn as darkened her face, and\nflashed in her jet-black eyes, I could not have thought\ncompressible even into that face.  The scar made by the hammer was,\nas usual in this excited state of her features, strongly marked. \nWhen the throbbing I had seen before, came into it as I looked at\nher, she absolutely lifted up her hand, and struck it.\n\n'This is a fellow,' she said, 'to champion and bring here, is he\nnot?  You are a true man!'\n\n'Miss Dartle,' I returned, 'you are surely not so unjust as to\ncondemn ME!'\n\n'Why do you bring division between these two mad creatures?' she\nreturned.  'Don't you know that they are both mad with their own\nself-will and pride?'\n\n'Is it my doing?' I returned.\n\n'Is it your doing!' she retorted.  'Why do you bring this man\nhere?' \n\n'He is a deeply-injured man, Miss Dartle,' I replied.  'You may not\nknow it.'\n\n'I know that James Steerforth,' she said, with her hand on her\nbosom, as if to prevent the storm that was raging there, from being\nloud, 'has a false, corrupt heart, and is a traitor.  But what need\nI know or care about this fellow, and his common niece?'\n\n'Miss Dartle,' I returned, 'you deepen the injury.  It is\nsufficient already.  I will only say, at parting, that you do him\na great wrong.'\n\n'I do him no wrong,' she returned.  'They are a depraved, worthless\nset.  I would have her whipped!'\n\nMr. Peggotty passed on, without a word, and went out at the door.\n\n'Oh, shame, Miss Dartle! shame!' I said indignantly.  'How can you\nbear to trample on his undeserved affliction!'\n\n'I would trample on them all,' she answered.  'I would have his\nhouse pulled down.  I would have her branded on the face, dressed\nin rags, and cast out in the streets to starve.  If I had the power\nto sit in judgement on her, I would see it done.  See it done?  I\nwould do it!  I detest her.  If I ever could reproach her with her\ninfamous condition, I would go anywhere to do so.  If I could hunt\nher to her grave, I would.  If there was any word of comfort that\nwould be a solace to her in her dying hour, and only I possessed\nit, I wouldn't part with it for Life itself.'\n\nThe mere vehemence of her words can convey, I am sensible, but a\nweak impression of the passion by which she was possessed, and\nwhich made itself articulate in her whole figure, though her voice,\ninstead of being raised, was lower than usual.  No description I\ncould give of her would do justice to my recollection of her, or to\nher entire deliverance of herself to her anger.  I have seen\npassion in many forms, but I have never seen it in such a form as\nthat.\n\nWhen I joined Mr. Peggotty, he was walking slowly and thoughtfully\ndown the hill.  He told me, as soon as I came up with him, that\nhaving now discharged his mind of what he had purposed doing in\nLondon, he meant 'to set out on his travels', that night.  I asked\nhim where he meant to go?  He only answered, 'I'm a going, sir, to\nseek my niece.'\n\nWe went back to the little lodging over the chandler's shop, and\nthere I found an opportunity of repeating to Peggotty what he had\nsaid to me.  She informed me, in return, that he had said the same\nto her that morning.  She knew no more than I did, where he was\ngoing, but she thought he had some project shaped out in his mind.\n\nI did not like to leave him, under such circumstances, and we all\nthree dined together off a beefsteak pie - which was one of the\nmany good things for which Peggotty was famous - and which was\ncuriously flavoured on this occasion, I recollect well, by a\nmiscellaneous taste of tea, coffee, butter, bacon, cheese, new\nloaves, firewood, candles, and walnut ketchup, continually\nascending from the shop.  After dinner we sat for an hour or so\nnear the window, without talking much; and then Mr. Peggotty got\nup, and brought his oilskin bag and his stout stick, and laid them\non the table.\n\nHe accepted, from his sister's stock of ready money, a small sum on\naccount of his legacy; barely enough, I should have thought, to\nkeep him for a month.  He promised to communicate with me, when\nanything befell him; and he slung his bag about him, took his hat\nand stick, and bade us both 'Good-bye!'\n\n'All good attend you, dear old woman,' he said, embracing Peggotty,\n'and you too, Mas'r Davy!' shaking hands with me.  'I'm a-going to\nseek her, fur and wide.  If she should come home while I'm away -\nbut ah, that ain't like to be! - or if I should bring her back, my\nmeaning is, that she and me shall live and die where no one can't\nreproach her.  If any hurt should come to me, remember that the\nlast words I left for her was, \"My unchanged love is with my\ndarling child, and I forgive her!\"'\n\nHe said this solemnly, bare-headed; then, putting on his hat, he\nwent down the stairs, and away.  We followed to the door.  It was\na warm, dusty evening, just the time when, in the great main\nthoroughfare out of which that by-way turned, there was a temporary\nlull in the eternal tread of feet upon the pavement, and a strong\nred sunshine.  He turned, alone, at the corner of our shady street,\ninto a glow of light, in which we lost him.\n\nRarely did that hour of the evening come, rarely did I wake at\nnight, rarely did I look up at the moon, or stars, or watch the\nfalling rain, or hear the wind, but I thought of his solitary\nfigure toiling on, poor pilgrim, and recalled the words:\n\n'I'm a going to seek her, fur and wide.  If any hurt should come to\nme, remember that the last words I left for her was, \"My unchanged\nlove is with my darling child, and I forgive her!\"'\n\n\n\nCHAPTER 33\nBLISSFUL\n\n\nAll this time, I had gone on loving Dora, harder than ever.  Her\nidea was my refuge in disappointment and distress, and made some\namends to me, even for the loss of my friend.  The more I pitied\nmyself, or pitied others, the more I sought for consolation in the\nimage of Dora.  The greater the accumulation of deceit and trouble\nin the world, the brighter and the purer shone the star of Dora\nhigh above the world.  I don't think I had any definite idea where\nDora came from, or in what degree she was related to a higher order\nof beings; but I am quite sure I should have scouted the notion of\nher being simply human, like any other young lady, with indignation\nand contempt.\n\nIf I may so express it, I was steeped in Dora.  I was not merely\nover head and ears in love with her, but I was saturated through\nand through.  Enough love might have been wrung out of me,\nmetaphorically speaking, to drown anybody in; and yet there would\nhave remained enough within me, and all over me, to pervade my\nentire existence.\n\nThe first thing I did, on my own account, when I came back, was to\ntake a night-walk to Norwood, and, like the subject of a venerable\nriddle of my childhood, to go 'round and round the house, without\never touching the house', thinking about Dora.  I believe the theme\nof this incomprehensible conundrum was the moon.  No matter what it\nwas, I, the moon-struck slave of Dora, perambulated round and round\nthe house and garden for two hours, looking through crevices in the\npalings, getting my chin by dint of violent exertion above the\nrusty nails on the top, blowing kisses at the lights in the\nwindows, and romantically calling on the night, at intervals, to\nshield my Dora - I don't exactly know what from, I suppose from\nfire.  Perhaps from mice, to which she had a great objection.\n\nMy love was so much in my mind and it was so natural to me to\nconfide in Peggotty, when I found her again by my side of an\nevening with the old set of industrial implements, busily making\nthe tour of my wardrobe, that I imparted to her, in a sufficiently\nroundabout way, my great secret.  Peggotty was strongly interested,\nbut I could not get her into my view of the case at all.  She was\naudaciously prejudiced in my favour, and quite unable to understand\nwhy I should have any misgivings, or be low-spirited about it. \n'The young lady might think herself well off,' she observed, 'to\nhave such a beau.  And as to her Pa,' she said, 'what did the\ngentleman expect, for gracious sake!'\n\nI observed, however, that Mr. Spenlow's proctorial gown and stiff\ncravat took Peggotty down a little, and inspired her with a greater\nreverence for the man who was gradually becoming more and more\netherealized in my eyes every day, and about whom a reflected\nradiance seemed to me to beam when he sat erect in Court among his\npapers, like a little lighthouse in a sea of stationery.  And by\nthe by, it used to be uncommonly strange to me to consider, I\nremember, as I sat in Court too, how those dim old judges and\ndoctors wouldn't have cared for Dora, if they had known her; how\nthey wouldn't have gone out of their senses with rapture, if\nmarriage with Dora had been proposed to them; how Dora might have\nsung, and played upon that glorified guitar, until she led me to\nthe verge of madness, yet not have tempted one of those slow-goers\nan inch out of his road!\n\nI despised them, to a man.  Frozen-out old gardeners in the\nflower-beds of the heart, I took a personal offence against them\nall.  The Bench was nothing to me but an insensible blunderer.  The\nBar had no more tenderness or poetry in it, than the bar of a\npublic-house.\n\nTaking the management of Peggotty's affairs into my own hands, with\nno little pride, I proved the will, and came to a settlement with\nthe Legacy Duty-office, and took her to the Bank, and soon got\neverything into an orderly train.  We varied the legal character of\nthese proceedings by going to see some perspiring Wax-work, in\nFleet Street (melted, I should hope, these twenty years); and by\nvisiting Miss Linwood's Exhibition, which I remember as a Mausoleum\nof needlework, favourable to self-examination and repentance; and\nby inspecting the Tower of London; and going to the top of St.\nPaul's.  All these wonders afforded Peggotty as much pleasure as\nshe was able to enjoy, under existing circumstances: except, I\nthink, St. Paul's, which, from her long attachment to her work-box,\nbecame a rival of the picture on the lid, and was, in some\nparticulars, vanquished, she considered, by that work of art.\n\nPeggotty's business, which was what we used to call 'common-form\nbusiness' in the Commons (and very light and lucrative the\ncommon-form business was), being settled, I took her down to the\noffice one morning to pay her bill.  Mr. Spenlow had stepped out,\nold Tiffey said, to get a gentleman sworn for a marriage licence;\nbut as I knew he would be back directly, our place lying close to\nthe Surrogate's, and to the Vicar-General's office too, I told\nPeggotty to wait.\n\nWe were a little like undertakers, in the Commons, as regarded\nProbate transactions; generally making it a rule to look more or\nless cut up, when we had to deal with clients in mourning.  In a\nsimilar feeling of delicacy, we were always blithe and\nlight-hearted with the licence clients.  Therefore I hinted to\nPeggotty that she would find Mr. Spenlow much recovered from the\nshock of Mr. Barkis's decease; and indeed he came in like a\nbridegroom.\n\nBut neither Peggotty nor I had eyes for him, when we saw, in\ncompany with him, Mr. Murdstone.  He was very little changed.  His\nhair looked as thick, and was certainly as black, as ever; and his\nglance was as little to be trusted as of old.\n\n'Ah, Copperfield?' said Mr. Spenlow.  'You know this gentleman, I\nbelieve?'\n\nI made my gentleman a distant bow, and Peggotty barely recognized\nhim.  He was, at first, somewhat disconcerted to meet us two\ntogether; but quickly decided what to do, and came up to me.\n\n'I hope,' he said, 'that you are doing well?'\n\n'It can hardly be interesting to you,' said I.  'Yes, if you wish\nto know.'\n\nWe looked at each other, and he addressed himself to Peggotty.\n\n'And you,' said he.  'I am sorry to observe that you have lost your\nhusband.'\n\n'It's not the first loss I have had in my life, Mr. Murdstone,'\nreplied Peggotty, trembling from head to foot.  'I am glad to hope\nthat there is nobody to blame for this one, - nobody to answer for\nit.'\n\n'Ha!' said he; 'that's a comfortable reflection.  You have done\nyour duty?'\n\n'I have not worn anybody's life away,' said Peggotty, 'I am\nthankful to think!  No, Mr. Murdstone, I have not worrited and\nfrightened any sweet creetur to an early grave!'\n\nHe eyed her gloomily - remorsefully I thought - for an instant; and\nsaid, turning his head towards me, but looking at my feet instead\nof my face:\n\n'We are not likely to encounter soon again; - a source of\nsatisfaction to us both, no doubt, for such meetings as this can\nnever be agreeable.  I do not expect that you, who always rebelled\nagainst my just authority, exerted for your benefit and\nreformation, should owe me any good-will now.  There is an\nantipathy between us -'\n\n'An old one, I believe?' said I, interrupting him.\n\nHe smiled, and shot as evil a glance at me as could come from his\ndark eyes.\n\n'It rankled in your baby breast,' he said.  'It embittered the life\nof your poor mother.  You are right.  I hope you may do better,\nyet; I hope you may correct yourself.'\n\nHere he ended the dialogue, which had been carried on in a low\nvoice, in a corner of the outer office, by passing into Mr.\nSpenlow's room, and saying aloud, in his smoothest manner:\n\n'Gentlemen of Mr. Spenlow's profession are accustomed to family\ndifferences, and know how complicated and difficult they always\nare!' With that, he paid the money for his licence; and, receiving\nit neatly folded from Mr. Spenlow, together with a shake of the\nhand, and a polite wish for his happiness and the lady's, went out\nof the office.\n\nI might have had more difficulty in constraining myself to be\nsilent under his words, if I had had less difficulty in impressing\nupon Peggotty (who was only angry on my account, good creature!)\nthat we were not in a place for recrimination, and that I besought\nher to hold her peace.  She was so unusually roused, that I was\nglad to compound for an affectionate hug, elicited by this revival\nin her mind of our old injuries, and to make the best I could of\nit, before Mr. Spenlow and the clerks.\n\nMr. Spenlow did not appear to know what the connexion between Mr.\nMurdstone and myself was; which I was glad of, for I could not bear\nto acknowledge him, even in my own breast, remembering what I did\nof the history of my poor mother.  Mr. Spenlow seemed to think, if\nhe thought anything about the matter, that my aunt was the leader\nof the state party in our family, and that there was a rebel party\ncommanded by somebody else - so I gathered at least from what he\nsaid, while we were waiting for Mr. Tiffey to make out Peggotty's\nbill of costs.\n\n'Miss Trotwood,' he remarked, 'is very firm, no doubt, and not\nlikely to give way to opposition.  I have an admiration for her\ncharacter, and I may congratulate you, Copperfield, on being on the\nright side.  Differences between relations are much to be deplored\n- but they are extremely general - and the great thing is, to be on\nthe right side': meaning, I take it, on the side of the moneyed\ninterest.\n\n'Rather a good marriage this, I believe?' said Mr. Spenlow.\n\nI explained that I knew nothing about it.\n\n'Indeed!' he said.  'Speaking from the few words Mr. Murdstone\ndropped - as a man frequently does on these occasions - and from\nwhat Miss Murdstone let fall, I should say it was rather a good\nmarriage.'\n\n'Do you mean that there is money, sir?' I asked.\n\n'Yes,' said Mr. Spenlow, 'I understand there's money.  Beauty too,\nI am told.'\n\n'Indeed!  Is his new wife young?'\n\n'Just of age,' said Mr. Spenlow.  'So lately, that I should think\nthey had been waiting for that.'\n\n'Lord deliver her!' said Peggotty.  So very emphatically and\nunexpectedly, that we were all three discomposed; until Tiffey came\nin with the bill.\n\nOld Tiffey soon appeared, however, and handed it to Mr. Spenlow, to\nlook over.  Mr. Spenlow, settling his chin in his cravat and\nrubbing it softly, went over the items with a deprecatory air - as\nif it were all Jorkins's doing - and handed it back to Tiffey with\na bland sigh.\n\n'Yes,' he said.  'That's right.  Quite right.  I should have been\nextremely happy, Copperfield, to have limited these charges to the\nactual expenditure out of pocket, but it is an irksome incident in\nmy professional life, that I am not at liberty to consult my own\nwishes.  I have a partner - Mr. Jorkins.'\n\nAs he said this with a gentle melancholy, which was the next thing\nto making no charge at all, I expressed my acknowledgements on\nPeggotty's behalf, and paid Tiffey in banknotes.  Peggotty then\nretired to her lodging, and Mr. Spenlow and I went into Court,\nwhere we had a divorce-suit coming on, under an ingenious little\nstatute (repealed now, I believe, but in virtue of which I have\nseen several marriages annulled), of which the merits were these. \nThe husband, whose name was Thomas Benjamin, had taken out his\nmarriage licence as Thomas only; suppressing the Benjamin, in case\nhe should not find himself as comfortable as he expected.  NOT\nfinding himself as comfortable as he expected, or being a little\nfatigued with his wife, poor fellow, he now came forward, by a\nfriend, after being married a year or two, and declared that his\nname was Thomas Benjamin, and therefore he was not married at all. \nWhich the Court confirmed, to his great satisfaction.\n\nI must say that I had my doubts about the strict justice of this,\nand was not even frightened out of them by the bushel of wheat\nwhich reconciles all anomalies.  But Mr. Spenlow argued the matter\nwith me.  He said, Look at the world, there was good and evil in\nthat; look at the ecclesiastical law, there was good and evil in\nTHAT.  It was all part of a system.  Very good.  There you were!\n\nI had not the hardihood to suggest to Dora's father that possibly\nwe might even improve the world a little, if we got up early in the\nmorning, and took off our coats to the work; but I confessed that\nI thought we might improve the Commons.  Mr. Spenlow replied that\nhe would particularly advise me to dismiss that idea from my mind,\nas not being worthy of my gentlemanly character; but that he would\nbe glad to hear from me of what improvement I thought the Commons\nsusceptible?\n\nTaking that part of the Commons which happened to be nearest to us\n- for our man was unmarried by this time, and we were out of Court,\nand strolling past the Prerogative Office - I submitted that I\nthought the Prerogative Office rather a queerly managed\ninstitution.  Mr. Spenlow inquired in what respect?  I replied,\nwith all due deference to his experience (but with more deference,\nI am afraid, to his being Dora's father), that perhaps it was a\nlittle nonsensical that the Registry of that Court, containing the\noriginal wills of all persons leaving effects within the immense\nprovince of Canterbury, for three whole centuries, should be an\naccidental building, never designed for the purpose, leased by the\nregistrars for their Own private emolument, unsafe, not even\nascertained to be fire-proof, choked with the important documents\nit held, and positively, from the roof to the basement, a mercenary\nspeculation of the registrars, who took great fees from the public,\nand crammed the public's wills away anyhow and anywhere, having no\nother object than to get rid of them cheaply.  That, perhaps, it\nwas a little unreasonable that these registrars in the receipt of\nprofits amounting to eight or nine thousand pounds a year (to say\nnothing of the profits of the deputy registrars, and clerks of\nseats), should not be obliged to spend a little of that money, in\nfinding a reasonably safe place for the important documents which\nall classes of people were compelled to hand over to them, whether\nthey would or no.  That, perhaps, it was a little unjust, that all\nthe great offices in this great office should be magnificent\nsinecures, while the unfortunate working-clerks in the cold dark\nroom upstairs were the worst rewarded, and the least considered\nmen, doing important services, in London.  That perhaps it was a\nlittle indecent that the principal registrar of all, whose duty it\nwas to find the public, constantly resorting to this place, all\nneedful accommodation, should be an enormous sinecurist in virtue\nof that post (and might be, besides, a clergyman, a pluralist, the\nholder of a staff in a cathedral, and what not), - while the public\nwas put to the inconvenience of which we had a specimen every\nafternoon when the office was busy, and which we knew to be quite\nmonstrous.  That, perhaps, in short, this Prerogative Office of the\ndiocese of Canterbury was altogether such a pestilent job, and such\na pernicious absurdity, that but for its being squeezed away in a\ncorner of St. Paul's Churchyard, which few people knew, it must\nhave been turned completely inside out, and upside down, long ago.\n\nMr. Spenlow smiled as I became modestly warm on the subject, and\nthen argued this question with me as he had argued the other.  He\nsaid, what was it after all?  It was a question of feeling.  If the\npublic felt that their wills were in safe keeping, and took it for\ngranted that the office was not to be made better, who was the\nworse for it?  Nobody.  Who was the better for it?  All the\nSinecurists.  Very well.  Then the good predominated.  It might not\nbe a perfect system; nothing was perfect; but what he objected to,\nwas, the insertion of the wedge.  Under the Prerogative Office, the\ncountry had been glorious.  Insert the wedge into the Prerogative\nOffice, and the country would cease to be glorious.  He considered\nit the principle of a gentleman to take things as he found them;\nand he had no doubt the Prerogative Office would last our time.  I\ndeferred to his opinion, though I had great doubts of it myself. \nI find he was right, however; for it has not only lasted to the\npresent moment, but has done so in the teeth of a great\nparliamentary report made (not too willingly) eighteen years ago,\nwhen all these objections of mine were set forth in detail, and\nwhen the existing stowage for wills was described as equal to the\naccumulation of only two years and a half more.  What they have\ndone with them since; whether they have lost many, or whether they\nsell any, now and then, to the butter shops; I don't know.  I am\nglad mine is not there, and I hope it may not go there, yet awhile.\n\nI have set all this down, in my present blissful chapter, because\nhere it comes into its natural place.  Mr. Spenlow and I falling\ninto this conversation, prolonged it and our saunter to and fro,\nuntil we diverged into general topics.  And so it came about, in\nthe end, that Mr. Spenlow told me this day week was Dora's\nbirthday, and he would be glad if I would come down and join a\nlittle picnic on the occasion.  I went out of my senses\nimmediately; became a mere driveller next day, on receipt of a\nlittle lace-edged sheet of note-paper, 'Favoured by papa.  To\nremind'; and passed the intervening period in a state of dotage.\n\nI think I committed every possible absurdity in the way of\npreparation for this blessed event.  I turn hot when I remember the\ncravat I bought.  My boots might be placed in any collection of\ninstruments of torture.  I provided, and sent down by the Norwood\ncoach the night before, a delicate little hamper, amounting in\nitself, I thought, almost to a declaration.  There were crackers in\nit with the tenderest mottoes that could be got for money.  At six\nin the morning, I was in Covent Garden Market, buying a bouquet for\nDora.  At ten I was on horseback (I hired a gallant grey, for the\noccasion), with the bouquet in my hat, to keep it fresh, trotting\ndown to Norwood.\n\nI suppose that when I saw Dora in the garden and pretended not to\nsee her, and rode past the house pretending to be anxiously looking\nfor it, I committed two small fooleries which other young gentlemen\nin my circumstances might have committed - because they came so\nvery natural to me.  But oh! when I DID find the house, and DID\ndismount at the garden-gate, and drag those stony-hearted boots\nacross the lawn to Dora sitting on a garden-seat under a lilac\ntree, what a spectacle she was, upon that beautiful morning, among\nthe butterflies, in a white chip bonnet and a dress of celestial\nblue!  There was a young lady with her - comparatively stricken in\nyears - almost twenty, I should say.  Her name was Miss Mills.  and\nDora called her Julia.  She was the bosom friend of Dora.  Happy\nMiss Mills!\n\nJip was there, and Jip WOULD bark at me again.  When I presented my\nbouquet, he gnashed his teeth with jealousy.  Well he might.  If he\nhad the least idea how I adored his mistress, well he might!\n\n'Oh, thank you, Mr. Copperfield!  What dear flowers!' said Dora.\n\nI had had an intention of saying (and had been studying the best\nform of words for three miles) that I thought them beautiful before\nI saw them so near HER.  But I couldn't manage it.  She was too\nbewildering.  To see her lay the flowers against her little dimpled\nchin, was to lose all presence of mind and power of language in a\nfeeble ecstasy.  I wonder I didn't say, 'Kill me, if you have a\nheart, Miss Mills.  Let me die here!'\n\nThen Dora held my flowers to Jip to smell.  Then Jip growled, and\nwouldn't smell them.  Then Dora laughed, and held them a little\ncloser to Jip, to make him.  Then Jip laid hold of a bit of\ngeranium with his teeth, and worried imaginary cats in it.  Then\nDora beat him, and pouted, and said, 'My poor beautiful flowers!'\nas compassionately, I thought, as if Jip had laid hold of me.  I\nwished he had!\n\n'You'll be so glad to hear, Mr. Copperfield,' said Dora, 'that that\ncross Miss Murdstone is not here.  She has gone to her brother's\nmarriage, and will be away at least three weeks.  Isn't that\ndelightful?'\n\nI said I was sure it must be delightful to her, and all that was\ndelightful to her was delightful to me.  Miss Mills, with an air of\nsuperior wisdom and benevolence, smiled upon us.\n\n'She is the most disagreeable thing I ever saw,' said Dora.  'You\ncan't believe how ill-tempered and shocking she is, Julia.'\n\n'Yes, I can, my dear!' said Julia.\n\n'YOU can, perhaps, love,' returned Dora, with her hand on julia's. \n'Forgive my not excepting you, my dear, at first.'\n\nI learnt, from this, that Miss Mills had had her trials in the\ncourse of a chequered existence; and that to these, perhaps, I\nmight refer that wise benignity of manner which I had already\nnoticed.  i found, in the course of the day, that this was the\ncase: Miss Mills having been unhappy in a misplaced affection, and\nbeing understood to have retired from the world on her awful stock\nof experience, but still to take a calm interest in the unblighted\nhopes and loves of youth.\n\nBut now Mr. Spenlow came out of the house, and Dora went to him,\nsaying, 'Look, papa, what beautiful flowers!' And Miss Mills smiled\nthoughtfully, as who should say, 'Ye Mayflies, enjoy your brief\nexistence in the bright morning of life!' And we all walked from\nthe lawn towards the carriage, which was getting ready.\n\nI shall never have such a ride again.  I have never had such\nanother.  There were only those three, their hamper, my hamper, and\nthe guitar-case, in the phaeton; and, of course, the phaeton was\nopen; and I rode behind it, and Dora sat with her back to the\nhorses, looking towards me.  She kept the bouquet close to her on\nthe cushion, and wouldn't allow Jip to sit on that side of her at\nall, for fear he should crush it.  She often carried it in her\nhand, often refreshed herself with its fragrance.  Our eyes at\nthose times often met; and my great astonishment is that I didn't\ngo over the head of my gallant grey into the carriage.\n\nThere was dust, I believe.  There was a good deal of dust, I\nbelieve.  I have a faint impression that Mr. Spenlow remonstrated\nwith me for riding in it; but I knew of none.  I was sensible of a\nmist of love and beauty about Dora, but of nothing else.  He stood\nup sometimes, and asked me what I thought of the prospect.  I said\nit was delightful, and I dare say it was; but it was all Dora to\nme.  The sun shone Dora, and the birds sang Dora.  The south wind\nblew Dora, and the wild flowers in the hedges were all Doras, to a\nbud.  My comfort is, Miss Mills understood me.  Miss Mills alone\ncould enter into my feelings thoroughly.\n\nI don't know how long we were going, and to this hour I know as\nlittle where we went.  Perhaps it was near Guildford.  Perhaps some\nArabian-night magician, opened up the place for the day, and shut\nit up for ever when we came away.  It was a green spot, on a hill,\ncarpeted with soft turf.  There were shady trees, and heather, and,\nas far as the eye could see, a rich landscape.\n\nIt was a trying thing to find people here, waiting for us; and my\njealousy, even of the ladies, knew no bounds.  But all of my own\nsex - especially one impostor, three or four years my elder, with\na red whisker, on which he established an amount of presumption not\nto be endured - were my mortal foes.\n\nWe all unpacked our baskets, and employed ourselves in getting\ndinner ready.  Red Whisker pretended he could make a salad (which\nI don't believe), and obtruded himself on public notice.  Some of\nthe young ladies washed the lettuces for him, and sliced them under\nhis directions.  Dora was among these.  I felt that fate had pitted\nme against this man, and one of us must fall.\n\nRed Whisker made his salad (I wondered how they could eat it. \nNothing should have induced ME to touch it!) and voted himself into\nthe charge of the wine-cellar, which he constructed, being an\ningenious beast, in the hollow trunk of a tree.  By and by, I saw\nhim, with the majority of a lobster on his plate, eating his dinner\nat the feet of Dora!\n\nI have but an indistinct idea of what happened for some time after\nthis baleful object presented itself to my view.  I was very merry,\nI know; but it was hollow merriment.  I attached myself to a young\ncreature in pink, with little eyes, and flirted with her\ndesperately.  She received my attentions with favour; but whether\non my account solely, or because she had any designs on Red\nWhisker, I can't say.  Dora's health was drunk.  When I drank it,\nI affected to interrupt my conversation for that purpose, and to\nresume it immediately afterwards.  I caught Dora's eye as I bowed\nto her, and I thought it looked appealing.  But it looked at me\nover the head of Red Whisker, and I was adamant.\n\nThe young creature in pink had a mother in green; and I rather\nthink the latter separated us from motives of policy.  Howbeit,\nthere was a general breaking up of the party, while the remnants of\nthe dinner were being put away; and I strolled off by myself among\nthe trees, in a raging and remorseful state.  I was debating\nwhether I should pretend that I was not well, and fly - I don't\nknow where - upon my gallant grey, when Dora and Miss Mills met me.\n\n'Mr. Copperfield,' said Miss Mills, 'you are dull.'\n\nI begged her pardon.  Not at all.\n\n'And Dora,' said Miss Mills, 'YOU are dull.'\n\nOh dear no!  Not in the least.\n\n'Mr. Copperfield and Dora,' said Miss Mills, with an almost\nvenerable air.  'Enough of this.  Do not allow a trivial\nmisunderstanding to wither the blossoms of spring, which, once put\nforth and blighted, cannot be renewed.  I speak,' said Miss Mills,\n'from experience of the past - the remote, irrevocable past.  The\ngushing fountains which sparkle in the sun, must not be stopped in\nmere caprice; the oasis in the desert of Sahara must not be plucked\nup idly.'\n\nI hardly knew what I did, I was burning all over to that\nextraordinary extent; but I took Dora's little hand and kissed it\n- and she let me!  I kissed Miss Mills's hand; and we all seemed,\nto my thinking, to go straight up to the seventh heaven.\nWe did not come down again.  We stayed up there all the evening. \nAt first we strayed to and fro among the trees: I with Dora's shy\narm drawn through mine: and Heaven knows, folly as it all was, it\nwould have been a happy fate to have been struck immortal with\nthose foolish feelings, and have stayed among the trees for ever!\n\nBut, much too soon, we heard the others laughing and talking, and\ncalling 'where's Dora?' So we went back, and they wanted Dora to\nsing.  Red Whisker would have got the guitar-case out of the\ncarriage, but Dora told him nobody knew where it was, but I.  So\nRed Whisker was done for in a moment; and I got it, and I unlocked\nit, and I took the guitar out, and I sat by her, and I held her\nhandkerchief and gloves, and I drank in every note of her dear\nvoice, and she sang to ME who loved her, and all the others might\napplaud as much as they liked, but they had nothing to do with it!\n\nI was intoxicated with joy.  I was afraid it was too happy to be\nreal, and that I should wake in Buckingham Street presently, and\nhear Mrs. Crupp clinking the teacups in getting breakfast ready. \nBut Dora sang, and others sang, and Miss Mills sang - about the\nslumbering echoes in the caverns of Memory; as if she were a\nhundred years old - and the evening came on; and we had tea, with\nthe kettle boiling gipsy-fashion; and I was still as happy as ever.\n\nI was happier than ever when the party broke up, and the other\npeople, defeated Red Whisker and all, went their several ways, and\nwe went ours through the still evening and the dying light, with\nsweet scents rising up around us.  Mr. Spenlow being a little\ndrowsy after the champagne - honour to the soil that grew the\ngrape, to the grape that made the wine, to the sun that ripened it,\nand to the merchant who adulterated it! - and being fast asleep in\na corner of the carriage, I rode by the side and talked to Dora. \nShe admired my horse and patted him - oh, what a dear little hand\nit looked upon a horse! - and her shawl would not keep right, and\nnow and then I drew it round her with my arm; and I even fancied\nthat Jip began to see how it was, and to understand that he must\nmake up his mind to be friends with me.\n\nThat sagacious Miss Mills, too; that amiable, though quite used up,\nrecluse; that little patriarch of something less than twenty, who\nhad done with the world, and mustn't on any account have the\nslumbering echoes in the caverns of Memory awakened; what a kind\nthing she did!\n\n'Mr. Copperfield,' said Miss Mills, 'come to this side of the\ncarriage a moment - if you can spare a moment.  I want to speak to\nyou.'\n\nBehold me, on my gallant grey, bending at the side of Miss Mills,\nwith my hand upon the carriage door!\n\n'Dora is coming to stay with me.  She is coming home with me the\nday after tomorrow.  If you would like to call, I am sure papa\nwould be happy to see you.'\nWhat could I do but invoke a silent blessing on Miss Mills's head,\nand store Miss Mills's address in the securest corner of my memory!\nWhat could I do but tell Miss Mills, with grateful looks and\nfervent words, how much I appreciated her good offices, and what an\ninestimable value I set upon her friendship!\n\nThen Miss Mills benignantly dismissed me, saying, 'Go back to\nDora!' and I went; and Dora leaned out of the carriage to talk to\nme, and we talked all the rest of the way; and I rode my gallant\ngrey so close to the wheel that I grazed his near fore leg against\nit, and 'took the bark off', as his owner told me, 'to the tune of\nthree pun' sivin' - which I paid, and thought extremely cheap for\nso much joy.  What time Miss Mills sat looking at the moon,\nmurmuring verses- and recalling, I suppose, the ancient days when\nshe and earth had anything in common.\n\nNorwood was many miles too near, and we reached it many hours too\nsoon; but Mr. Spenlow came to himself a little short of it, and\nsaid, 'You must come in, Copperfield, and rest!' and I consenting,\nwe had sandwiches and wine-and-water.  In the light room, Dora\nblushing looked so lovely, that I could not tear myself away, but\nsat there staring, in a dream, until the snoring of Mr. Spenlow\ninspired me with sufficient consciousness to take my leave.  So we\nparted; I riding all the way to London with the farewell touch of\nDora's hand still light on mine, recalling every incident and word\nten thousand times; lying down in my own bed at last, as enraptured\na young noodle as ever was carried out of his five wits by love.\n\nWhen I awoke next morning, I was resolute to declare my passion to\nDora, and know my fate.  Happiness or misery was now the question. \nThere was no other question that I knew of in the world, and only\nDora could give the answer to it.  I passed three days in a luxury\nof wretchedness, torturing myself by putting every conceivable\nvariety of discouraging construction on all that ever had taken\nplace between Dora and me.  At last, arrayed for the purpose at a\nvast expense, I went to Miss Mills's, fraught with a declaration.\n\nHow many times I went up and down the street, and round the square\n- painfully aware of being a much better answer to the old riddle\nthan the original one - before I could persuade myself to go up the\nsteps and knock, is no matter now.  Even when, at last, I had\nknocked, and was waiting at the door, I had some flurried thought\nof asking if that were Mr. Blackboy's (in imitation of poor\nBarkis), begging pardon, and retreating.  But I kept my ground.\n\nMr. Mills was not at home.  I did not expect he would be.  Nobody\nwanted HIM.  Miss Mills was at home.  Miss Mills would do.\n\nI was shown into a room upstairs, where Miss Mills and Dora were. \nJip was there.  Miss Mills was copying music (I recollect, it was\na new song, called 'Affection's Dirge'), and Dora was painting\nflowers.  What were my feelings, when I recognized my own flowers;\nthe identical Covent Garden Market purchase!  I cannot say that\nthey were very like, or that they particularly resembled any\nflowers that have ever come under my observation; but I knew from\nthe paper round them which was accurately copied, what the\ncomposition was.\n\nMiss Mills was very glad to see me, and very sorry her papa was not\nat home: though I thought we all bore that with fortitude.  Miss\nMills was conversational for a few minutes, and then, laying down\nher pen upon 'Affection's Dirge', got up, and left the room.\n\nI began to think I would put it off till tomorrow.\n\n'I hope your poor horse was not tired, when he got home at night,'\nsaid Dora, lifting up her beautiful eyes.  'It was a long way for\nhim.'\n\nI began to think I would do it today.\n\n'It was a long way for him,' said I, 'for he had nothing to uphold\nhim on the journey.'\n\n'Wasn't he fed, poor thing?' asked Dora.\n\nI began to think I would put it off till tomorrow.\n\n'Ye-yes,' I said, 'he was well taken care of.  I mean he had not\nthe unutterable happiness that I had in being so near you.'\n\nDora bent her head over her drawing and said, after a little while\n- I had sat, in the interval, in a burning fever, and with my legs\nin a very rigid state -\n\n'You didn't seem to be sensible of that happiness yourself, at one\ntime of the day.'\n\nI saw now that I was in for it, and it must be done on the spot.\n\n'You didn't care for that happiness in the least,' said Dora,\nslightly raising her eyebrows, and shaking her head, 'when you were\nsitting by Miss Kitt.'\n\nKitt, I should observe, was the name of the creature in pink, with\nthe little eyes.\n\n'Though certainly I don't know why you should,' said Dora, or why\nyou should call it a happiness at all.  But of course you don't\nmean what you say.  And I am sure no one doubts your being at\nliberty to do whatever you like.  Jip, you naughty boy, come here!'\n\nI don't know how I did it.  I did it in a moment.  I intercepted\nJip.  I had Dora in my arms.  I was full of eloquence.  I never\nstopped for a word.  I told her how I loved her.  I told her I\nshould die without her.  I told her that I idolized and worshipped\nher.  Jip barked madly all the time.\n\nWhen Dora hung her head and cried, and trembled, my eloquence\nincreased so much the more.  If she would like me to die for her,\nshe had but to say the word, and I was ready.  Life without Dora's\nlove was not a thing to have on any terms.  I couldn't bear it, and\nI wouldn't.  I had loved her every minute, day and night, since I\nfirst saw her.  I loved her at that minute to distraction.  I\nshould always love her, every minute, to distraction.  Lovers had\nloved before, and lovers would love again; but no lover had loved,\nmight, could, would, or should ever love, as I loved Dora.  The\nmore I raved, the more Jip barked.  Each of us, in his own way, got\nmore mad every moment.\n\nWell, well!  Dora and I were sitting on the sofa by and by, quiet\nenough, and Jip was lying in her lap, winking peacefully at me.  It\nwas off my mind.  I was in a state of perfect rapture.  Dora and I\nwere engaged.\n\nI suppose we had some notion that this was to end in marriage.  We\nmust have had some, because Dora stipulated that we were never to\nbe married without her papa's consent.  But, in our youthful\necstasy, I don't think that we really looked before us or behind\nus; or had any aspiration beyond the ignorant present.  We were to\nkeep our secret from Mr. Spenlow; but I am sure the idea never\nentered my head, then, that there was anything dishonourable in\nthat.\n\nMiss Mills was more than usually pensive when Dora, going to find\nher, brought her back; - I apprehend, because there was a tendency\nin what had passed to awaken the slumbering echoes in the caverns\nof Memory.  But she gave us her blessing, and the assurance of her\nlasting friendship, and spoke to us, generally, as became a Voice\nfrom the Cloister.\n\nWhat an idle time it was!  What an insubstantial, happy, foolish\ntime it was!\n\nWhen I measured Dora's finger for a ring that was to be made of\nForget-me-nots, and when the jeweller, to whom I took the measure,\nfound me out, and laughed over his order-book, and charged me\nanything he liked for the pretty little toy, with its blue stones\n- so associated in my remembrance with Dora's hand, that yesterday,\nwhen I saw such another, by chance, on the finger of my own\ndaughter, there was a momentary stirring in my heart, like pain!\n\nWhen I walked about, exalted with my secret, and full of my own\ninterest, and felt the dignity of loving Dora, and of being\nbeloved, so much, that if I had walked the air, I could not have\nbeen more above the people not so situated, who were creeping on\nthe earth!\n\nWhen we had those meetings in the garden of the square, and sat\nwithin the dingy summer-house, so happy, that I love the London\nsparrows to this hour, for nothing else, and see the plumage of the\ntropics in their smoky feathers!\nWhen we had our first great quarrel (within a week of our\nbetrothal), and when Dora sent me back the ring, enclosed in a\ndespairing cocked-hat note, wherein she used the terrible\nexpression that 'our love had begun in folly, and ended in\nmadness!' which dreadful words occasioned me to tear my hair, and\ncry that all was over!\n\nWhen, under cover of the night, I flew to Miss Mills, whom I saw by\nstealth in a back kitchen where there was a mangle, and implored\nMiss Mills to interpose between us and avert insanity.  When Miss\nMills undertook the office and returned with Dora, exhorting us,\nfrom the pulpit of her own bitter youth, to mutual concession, and\nthe avoidance of the Desert of Sahara!\n\nWhen we cried, and made it up, and were so blest again, that the\nback kitchen, mangle and all, changed to Love's own temple, where\nwe arranged a plan of correspondence through Miss Mills, always to\ncomprehend at least one letter on each side every day!\n\nWhat an idle time!  What an insubstantial, happy, foolish time!  Of\nall the times of mine that Time has in his grip, there is none that\nin one retrospect I can smile at half so much, and think of half so\ntenderly.\n\n\n\nCHAPTER 34\nMY AUNT ASTONISHES ME\n\n\nI wrote to Agnes as soon as Dora and I were engaged.  I wrote her\na long letter, in which I tried to make her comprehend how blest I\nwas, and what a darling Dora was.  I entreated Agnes not to regard\nthis as a thoughtless passion which could ever yield to any other,\nor had the least resemblance to the boyish fancies that we used to\njoke about.  I assured her that its profundity was quite\nunfathomable, and expressed my belief that nothing like it had ever\nbeen known.\n\nSomehow, as I wrote to Agnes on a fine evening by my open window,\nand the remembrance of her clear calm eyes and gentle face came\nstealing over me, it shed such a peaceful influence upon the hurry\nand agitation in which I had been living lately, and of which my\nvery happiness partook in some degree, that it soothed me into\ntears.  I remember that I sat resting my head upon my hand, when\nthe letter was half done, cherishing a general fancy as if Agnes\nwere one of the elements of my natural home.  As if, in the\nretirement of the house made almost sacred to me by her presence,\nDora and I must be happier than anywhere.  As if, in love, joy,\nsorrow, hope, or disappointment; in all emotions; my heart turned\nnaturally there, and found its refuge and best friend.\n\nOf Steerforth I said nothing.  I only told her there had been sad\ngrief at Yarmouth, on account of Emily's flight; and that on me it\nmade a double wound, by reason of the circumstances attending it. \nI knew how quick she always was to divine the truth, and that she\nwould never be the first to breathe his name.\n\nTo this letter, I received an answer by return of post.  As I read\nit, I seemed to hear Agnes speaking to me.  It was like her cordial\nvoice in my ears.  What can I say more!\n\nWhile I had been away from home lately, Traddles had called twice\nor thrice.  Finding Peggotty within, and being informed by Peggotty\n(who always volunteered that information to whomsoever would\nreceive it), that she was my old nurse, he had established a\ngood-humoured acquaintance with her, and had stayed to have a\nlittle chat with her about me.  So Peggotty said; but I am afraid\nthe chat was all on her own side, and of immoderate length, as she\nwas very difficult indeed to stop, God bless her! when she had me\nfor her theme.\n\nThis reminds me, not only that I expected Traddles on a certain\nafternoon of his own appointing, which was now come, but that Mrs.\nCrupp had resigned everything appertaining to her office (the\nsalary excepted) until Peggotty should cease to present herself. \nMrs. Crupp, after holding divers conversations respecting Peggotty,\nin a very high-pitched voice, on the staircase - with some\ninvisible Familiar it would appear, for corporeally speaking she\nwas quite alone at those times - addressed a letter to me,\ndeveloping her views.  Beginning it with that statement of\nuniversal application, which fitted every occurrence of her life,\nnamely, that she was a mother herself, she went on to inform me\nthat she had once seen very different days, but that at all periods\nof her existence she had had a constitutional objection to spies,\nintruders, and informers.  She named no names, she said; let them\nthe cap fitted, wear it; but spies, intruders, and informers,\nespecially in widders' weeds (this clause was underlined), she had\never accustomed herself to look down upon.  If a gentleman was the\nvictim of spies, intruders, and informers (but still naming no\nnames), that was his own pleasure.  He had a right to please\nhimself; so let him do.  All that she, Mrs. Crupp, stipulated for,\nwas, that she should not be 'brought in contract' with such\npersons.  Therefore she begged to be excused from any further\nattendance on the top set, until things were as they formerly was,\nand as they could be wished to be; and further mentioned that her\nlittle book would be found upon the breakfast-table every Saturday\nmorning, when she requested an immediate settlement of the same,\nwith the benevolent view of saving trouble 'and an ill-conwenience'\nto all parties.\n\nAfter this, Mrs. Crupp confined herself to making pitfalls on the\nstairs, principally with pitchers, and endeavouring to delude\nPeggotty into breaking her legs.  I found it rather harassing to\nlive in this state of siege, but was too much afraid of Mrs. Crupp\nto see any way out of it.\n\n'My dear Copperfield,' cried Traddles, punctually appearing at my\ndoor, in spite of all these obstacles, 'how do you do?'\n\n'My dear Traddles,' said I, 'I am delighted to see you at last, and\nvery sorry I have not been at home before.  But I have been so much\nengaged -'\n\n'Yes, yes, I know,' said Traddles, 'of course.  Yours lives in\nLondon, I think.'\n\n'What did you say?'\n\n'She - excuse me - Miss D., you know,' said Traddles, colouring in\nhis great delicacy, 'lives in London, I believe?'\n\n'Oh yes.  Near London.'\n\n'Mine, perhaps you recollect,' said Traddles, with a serious look,\n'lives down in Devonshire - one of ten.  Consequently, I am not so\nmuch engaged as you - in that sense.'\n\n'I wonder you can bear,' I returned, 'to see her so seldom.'\n\n'Hah!' said Traddles, thoughtfully.  'It does seem a wonder.  I\nsuppose it is, Copperfield, because there is no help for it?'\n\n'I suppose so,' I replied with a smile, and not without a blush. \n'And because you have so much constancy and patience, Traddles.'\n\n'Dear me!' said Traddles, considering about it, 'do I strike you in\nthat way, Copperfield?  Really I didn't know that I had.  But she\nis such an extraordinarily dear girl herself, that it's possible\nshe may have imparted something of those virtues to me.  Now you\nmention it, Copperfield, I shouldn't wonder at all.  I assure you\nshe is always forgetting herself, and taking care of the other\nnine.'\n\n'Is she the eldest?' I inquired.\n\n'Oh dear, no,' said Traddles.  'The eldest is a Beauty.'\n\nHe saw, I suppose, that I could not help smiling at the simplicity\nof this reply; and added, with a smile upon his own ingenuous face:\n\n'Not, of course, but that my Sophy - pretty name, Copperfield, I\nalways think?'\n\n'Very pretty!' said I.\n\n'Not, of course, but that Sophy is beautiful too in my eyes, and\nwould be one of the dearest girls that ever was, in anybody's eyes\n(I should think).  But when I say the eldest is a Beauty, I mean\nshe really is a -' he seemed to be describing clouds about himself,\nwith both hands: 'Splendid, you know,' said Traddles,\nenergetically.\n'Indeed!' said I.\n\n'Oh, I assure you,' said Traddles, 'something very uncommon,\nindeed!  Then, you know, being formed for society and admiration,\nand not being able to enjoy much of it in consequence of their\nlimited means, she naturally gets a little irritable and exacting,\nsometimes.  Sophy puts her in good humour!'\n\n'Is Sophy the youngest?' I hazarded.\n\n'Oh dear, no!' said Traddles, stroking his chin.  'The two youngest\nare only nine and ten.  Sophy educates 'em.'\n\n'The second daughter, perhaps?' I hazarded.\n\n'No,' said Traddles.  'Sarah's the second.  Sarah has something the\nmatter with her spine, poor girl.  The malady will wear out by and\nby, the doctors say, but in the meantime she has to lie down for a\ntwelvemonth.  Sophy nurses her.  Sophy's the fourth.'\n\n'Is the mother living?' I inquired.\n\n'Oh yes,' said Traddles, 'she is alive.  She is a very superior\nwoman indeed, but the damp country is not adapted to her\nconstitution, and - in fact, she has lost the use of her limbs.'\n\n'Dear me!' said I.\n\n'Very sad, is it not?' returned Traddles.  'But in a merely\ndomestic view it is not so bad as it might be, because Sophy takes\nher place.  She is quite as much a mother to her mother, as she is\nto the other nine.'\n\nI felt the greatest admiration for the virtues of this young lady;\nand, honestly with the view of doing my best to prevent the\ngood-nature of Traddles from being imposed upon, to the detriment\nof their joint prospects in life, inquired how Mr. Micawber was?\n\n'He is quite well, Copperfield, thank you,' said Traddles.  'I am\nnot living with him at present.'\n\n'No?'\n\n'No.  You see the truth is,' said Traddles, in a whisper, 'he had\nchanged his name to Mortimer, in consequence of his temporary\nembarrassments; and he don't come out till after dark - and then in\nspectacles.  There was an execution put into our house, for rent. \nMrs. Micawber was in such a dreadful state that I really couldn't\nresist giving my name to that second bill we spoke of here.  You\nmay imagine how delightful it was to my feelings, Copperfield, to\nsee the matter settled with it, and Mrs. Micawber recover her\nspirits.'\n\n'Hum!' said I.\n'Not that her happiness was of long duration,' pursued Traddles,\n'for, unfortunately, within a week another execution came in.  It\nbroke up the establishment.  I have been living in a furnished\napartment since then, and the Mortimers have been very private\nindeed.  I hope you won't think it selfish, Copperfield, if I\nmention that the broker carried off my little round table with the\nmarble top, and Sophy's flower-pot and stand?'\n\n'What a hard thing!' I exclaimed indignantly.\n\n'It was a - it was a pull,' said Traddles, with his usual wince at\nthat expression.  'I don't mention it reproachfully, however, but\nwith a motive.  The fact is, Copperfield, I was unable to\nrepurchase them at the time of their seizure; in the first place,\nbecause the broker, having an idea that I wanted them, ran the\nprice up to an extravagant extent; and, in the second place,\nbecause I - hadn't any money.  Now, I have kept my eye since, upon\nthe broker's shop,' said Traddles, with a great enjoyment of his\nmystery, 'which is up at the top of Tottenham Court Road, and, at\nlast, today I find them put out for sale.  I have only noticed them\nfrom over the way, because if the broker saw me, bless you, he'd\nask any price for them!  What has occurred to me, having now the\nmoney, is, that perhaps you wouldn't object to ask that good nurse\nof yours to come with me to the shop - I can show it her from round\nthe corner of the next street - and make the best bargain for them,\nas if they were for herself, that she can!'\n\nThe delight with which Traddles propounded this plan to me, and the\nsense he had of its uncommon artfulness, are among the freshest\nthings in my remembrance.\n\nI told him that my old nurse would be delighted to assist him, and\nthat we would all three take the field together, but on one\ncondition.  That condition was, that he should make a solemn\nresolution to grant no more loans of his name, or anything else, to\nMr. Micawber.\n\n'My dear Copperfield,' said Traddles, 'I have already done so,\nbecause I begin to feel that I have not only been inconsiderate,\nbut that I have been positively unjust to Sophy.  My word being\npassed to myself, there is no longer any apprehension; but I pledge\nit to you, too, with the greatest readiness.  That first unlucky\nobligation, I have paid.  I have no doubt Mr. Micawber would have\npaid it if he could, but he could not.  One thing I ought to\nmention, which I like very much in Mr. Micawber, Copperfield.  It\nrefers to the second obligation, which is not yet due.  He don't\ntell me that it is provided for, but he says it WILL BE.  Now, I\nthink there is something very fair and honest about that!'\n\nI was unwilling to damp my good friend's confidence, and therefore\nassented.  After a little further conversation, we went round to\nthe chandler's shop, to enlist Peggotty; Traddles declining to pass\nthe evening with me, both because he endured the liveliest\napprehensions that his property would be bought by somebody else\nbefore he could re-purchase it, and because it was the evening he\nalways devoted to writing to the dearest girl in the world.\n\nI never shall forget him peeping round the corner of the street in\nTottenham Court Road, while Peggotty was bargaining for the\nprecious articles; or his agitation when she came slowly towards us\nafter vainly offering a price, and was hailed by the relenting\nbroker, and went back again.  The end of the negotiation was, that\nshe bought the property on tolerably easy terms, and Traddles was\ntransported with pleasure.\n\n'I am very much obliged to you, indeed,' said Traddles, on hearing\nit was to be sent to where he lived, that night.  'If I might ask\none other favour, I hope you would not think it absurd,\nCopperfield?'\n\nI said beforehand, certainly not.\n\n'Then if you WOULD be good enough,' said Traddles to Peggotty, 'to\nget the flower-pot now, I think I should like (it being Sophy's,\nCopperfield) to carry it home myself!'\n\nPeggotty was glad to get it for him, and he overwhelmed her with\nthanks, and went his way up Tottenham Court Road, carrying the\nflower-pot affectionately in his arms, with one of the most\ndelighted expressions of countenance I ever saw.\n\nWe then turned back towards my chambers.  As the shops had charms\nfor Peggotty which I never knew them possess in the same degree for\nanybody else, I sauntered easily along, amused by her staring in at\nthe windows, and waiting for her as often as she chose.  We were\nthus a good while in getting to the Adelphi.\n\nOn our way upstairs, I called her attention to the sudden\ndisappearance of Mrs. Crupp's pitfalls, and also to the prints of\nrecent footsteps.  We were both very much surprised, coming higher\nup, to find my outer door standing open (which I had shut) and to\nhear voices inside.\n\nWe looked at one another, without knowing what to make of this, and\nwent into the sitting-room.  What was my amazement to find, of all\npeople upon earth, my aunt there, and Mr. Dick!  My aunt sitting on\na quantity of luggage, with her two birds before her, and her cat\non her knee, like a female Robinson Crusoe, drinking tea.  Mr. Dick\nleaning thoughtfully on a great kite, such as we had often been out\ntogether to fly, with more luggage piled about him!\n\n'My dear aunt!' cried I.  'Why, what an unexpected pleasure!'\n\nWe cordially embraced; and Mr. Dick and I cordially shook hands;\nand Mrs. Crupp, who was busy making tea, and could not be too\nattentive, cordially said she had knowed well as Mr. Copperfull\nwould have his heart in his mouth, when he see his dear relations.\n\n'Holloa!' said my aunt to Peggotty, who quailed before her awful\npresence.  'How are YOU?'\n\n'You remember my aunt, Peggotty?' said I.\n\n'For the love of goodness, child,' exclaimed my aunt, 'don't call\nthe woman by that South Sea Island name!  If she married and got\nrid of it, which was the best thing she could do, why don't you\ngive her the benefit of the change?  What's your name now, - P?'\nsaid my aunt, as a compromise for the obnoxious appellation.\n\n'Barkis, ma'am,' said Peggotty, with a curtsey.\n\n'Well!  That's human,' said my aunt.  'It sounds less as if you\nwanted a missionary.  How d'ye do, Barkis?  I hope you're well?'\n\nEncouraged by these gracious words, and by my aunt's extending her\nhand, Barkis came forward, and took the hand, and curtseyed her\nacknowledgements.\n\n'We are older than we were, I see,' said my aunt.  'We have only\nmet each other once before, you know.  A nice business we made of\nit then!  Trot, my dear, another cup.'\n\nI handed it dutifully to my aunt, who was in her usual inflexible\nstate of figure; and ventured a remonstrance with her on the\nsubject of her sitting on a box.\n\n'Let me draw the sofa here, or the easy-chair, aunt,' said I.  'Why\nshould you be so uncomfortable?'\n\n'Thank you, Trot,' replied my aunt, 'I prefer to sit upon my\nproperty.'  Here my aunt looked hard at Mrs. Crupp, and observed,\n'We needn't trouble you to wait, ma'am.'\n\n'Shall I put a little more tea in the pot afore I go, ma'am?' said\nMrs. Crupp.\n\n'No, I thank you, ma'am,' replied my aunt.\n\n'Would you let me fetch another pat of butter, ma'am?' said Mrs.\nCrupp.  'Or would you be persuaded to try a new-laid hegg?  or\nshould I brile a rasher?  Ain't there nothing I could do for your\ndear aunt, Mr. Copperfull?'\n\n'Nothing, ma'am,' returned my aunt.  'I shall do very well, I thank\nyou.'\n\nMrs. Crupp, who had been incessantly smiling to express sweet\ntemper, and incessantly holding her head on one side, to express a\ngeneral feebleness of constitution, and incessantly rubbing her\nhands, to express a desire to be of service to all deserving\nobjects, gradually smiled herself, one-sided herself, and rubbed\nherself, out of the room.\n'Dick!' said my aunt.  'You know what I told you about time-servers\nand wealth-worshippers?'\n\nMr. Dick - with rather a scared look, as if he had forgotten it -\nreturned a hasty answer in the affirmative.\n\n'Mrs. Crupp is one of them,' said my aunt.  'Barkis, I'll trouble\nyou to look after the tea, and let me have another cup, for I don't\nfancy that woman's pouring-out!'\n\nI knew my aunt sufficiently well to know that she had something of\nimportance on her mind, and that there was far more matter in this\narrival than a stranger might have supposed.  I noticed how her eye\nlighted on me, when she thought my attention otherwise occupied;\nand what a curious process of hesitation appeared to be going on\nwithin her, while she preserved her outward stiffness and\ncomposure.  I began to reflect whether I had done anything to\noffend her; and my conscience whispered me that I had not yet told\nher about Dora.  Could it by any means be that, I wondered!\n\nAs I knew she would only speak in her own good time, I sat down\nnear her, and spoke to the birds, and played with the cat, and was\nas easy as I could be.  But I was very far from being really easy;\nand I should still have been so, even if Mr. Dick, leaning over the\ngreat kite behind my aunt, had not taken every secret opportunity\nof shaking his head darkly at me, and pointing at her.\n\n'Trot,' said my aunt at last, when she had finished her tea, and\ncarefully smoothed down her dress, and wiped her lips - 'you\nneedn't go, Barkis! - Trot, have you got to be firm and\nself-reliant?'\n\n'I hope so, aunt.'\n\n'What do you think?' inquired Miss Betsey.\n\n'I think so, aunt.'\n\n'Then why, my love,' said my aunt, looking earnestly at me, 'why do\nyou think I prefer to sit upon this property of mine tonight?'\n\nI shook my head, unable to guess.\n\n'Because,' said my aunt, 'it's all I have.  Because I'm ruined, my\ndear!'\n\nIf the house, and every one of us, had tumbled out into the river\ntogether, I could hardly have received a greater shock.\n\n'Dick knows it,' said my aunt, laying her hand calmly on my\nshoulder.  'I am ruined, my dear Trot!  All I have in the world is\nin this room, except the cottage; and that I have left Janet to\nlet.  Barkis, I want to get a bed for this gentleman tonight.  To\nsave expense, perhaps you can make up something here for myself. \nAnything will do.  It's only for tonight.  We'll talk about this,\nmore, tomorrow.'\n\nI was roused from my amazement, and concern for her - I am sure,\nfor her - by her falling on my neck, for a moment, and crying that\nshe only grieved for me.  In another moment she suppressed this\nemotion; and said with an aspect more triumphant than dejected:\n\n'We must meet reverses boldly, and not suffer them to frighten us,\nmy dear.  We must learn to act the play out.  We must live\nmisfortune down, Trot!'\n\n\n\nCHAPTER 35\nDEPRESSION\n\n\nAs soon as I could recover my presence of mind, which quite\ndeserted me in the first overpowering shock of my aunt's\nintelligence, I proposed to Mr. Dick to come round to the\nchandler's shop, and take possession of the bed which Mr. Peggotty\nhad lately vacated.  The chandler's shop being in Hungerford\nMarket, and Hungerford Market being a very different place in those\ndays, there was a low wooden colonnade before the door (not very\nunlike that before the house where the little man and woman used to\nlive, in the old weather-glass), which pleased Mr. Dick mightily. \nThe glory of lodging over this structure would have compensated\nhim, I dare say, for many inconveniences; but, as there were really\nfew to bear, beyond the compound of flavours I have already\nmentioned, and perhaps the want of a little more elbow-room, he was\nperfectly charmed with his accommodation.  Mrs. Crupp had\nindignantly assured him that there wasn't room to swing a cat\nthere; but, as Mr. Dick justly observed to me, sitting down on the\nfoot of the bed, nursing his leg, 'You know, Trotwood, I don't want\nto swing a cat.  I never do swing a cat.  Therefore, what does that\nsignify to ME!'\n\nI tried to ascertain whether Mr. Dick had any understanding of the\ncauses of this sudden and great change in my aunt's affairs.  As I\nmight have expected, he had none at all.  The only account he could\ngive of it was, that my aunt had said to him, the day before\nyesterday, 'Now, Dick, are you really and truly the philosopher I\ntake you for?' That then he had said, Yes, he hoped so.  That then\nmy aunt had said, 'Dick, I am ruined.'  That then he had said, 'Oh,\nindeed!' That then my aunt had praised him highly, which he was\nglad of.  And that then they had come to me, and had had bottled\nporter and sandwiches on the road.\n\nMr. Dick was so very complacent, sitting on the foot of the bed,\nnursing his leg, and telling me this, with his eyes wide open and\na surprised smile, that I am sorry to say I was provoked into\nexplaining to him that ruin meant distress, want, and starvation;\nbut I was soon bitterly reproved for this harshness, by seeing his\nface turn pale, and tears course down his lengthened cheeks, while\nhe fixed upon me a look of such unutterable woe, that it might have\nsoftened a far harder heart than mine.  I took infinitely greater\npains to cheer him up again than I had taken to depress him; and I\nsoon understood (as I ought to have known at first) that he had\nbeen so confident, merely because of his faith in the wisest and\nmost wonderful of women, and his unbounded reliance on my\nintellectual resources.  The latter, I believe, he considered a\nmatch for any kind of disaster not absolutely mortal.\n\n'What can we do, Trotwood?' said Mr. Dick.  'There's the Memorial\n-'\n\n'To be sure there is,' said I.  'But all we can do just now, Mr.\nDick, is to keep a cheerful countenance, and not let my aunt see\nthat we are thinking about it.'\n\nHe assented to this in the most earnest manner; and implored me, if\nI should see him wandering an inch out of the right course, to\nrecall him by some of those superior methods which were always at\nmy command.  But I regret to state that the fright I had given him\nproved too much for his best attempts at concealment.  All the\nevening his eyes wandered to my aunt's face, with an expression of\nthe most dismal apprehension, as if he saw her growing thin on the\nspot.  He was conscious of this, and put a constraint upon his\nhead; but his keeping that immovable, and sitting rolling his eyes\nlike a piece of machinery, did not mend the matter at all.  I saw\nhim look at the loaf at supper (which happened to be a small one),\nas if nothing else stood between us and famine; and when my aunt\ninsisted on his making his customary repast, I detected him in the\nact of pocketing fragments of his bread and cheese; I have no doubt\nfor the purpose of reviving us with those savings, when we should\nhave reached an advanced stage of attenuation.\n\nMy aunt, on the other hand, was in a composed frame of mind, which\nwas a lesson to all of us - to me, I am sure.  She was extremely\ngracious to Peggotty, except when I inadvertently called her by\nthat name; and, strange as I knew she felt in London, appeared\nquite at home.  She was to have my bed, and I was to lie in the\nsitting-room, to keep guard over her.  She made a great point of\nbeing so near the river, in case of a conflagration; and I suppose\nreally did find some satisfaction in that circumstance.\n\n'Trot, my dear,' said my aunt, when she saw me making preparations\nfor compounding her usual night-draught, 'No!'\n\n'Nothing, aunt?'\n\n'Not wine, my dear.  Ale.'\n\n'But there is wine here, aunt.  And you always have it made of\nwine.'\n\n'Keep that, in case of sickness,' said my aunt.  'We mustn't use it\ncarelessly, Trot.  Ale for me.  Half a pint.'\n\nI thought Mr. Dick would have fallen, insensible.  My aunt being\nresolute, I went out and got the ale myself.  As it was growing\nlate, Peggotty and Mr. Dick took that opportunity of repairing to\nthe chandler's shop together.  I parted from him, poor fellow, at\nthe corner of the street, with his great kite at his back, a very\nmonument of human misery.\n\nMy aunt was walking up and down the room when I returned, crimping\nthe borders of her nightcap with her fingers.  I warmed the ale and\nmade the toast on the usual infallible principles.  When it was\nready for her, she was ready for it, with her nightcap on, and the\nskirt of her gown turned back on her knees.\n\n'My dear,' said my aunt, after taking a spoonful of it; 'it's a\ngreat deal better than wine.  Not half so bilious.'\n\nI suppose I looked doubtful, for she added:\n\n'Tut, tut, child.  If nothing worse than Ale happens to us, we are\nwell off.'\n\n'I should think so myself, aunt, I am sure,' said I.\n\n'Well, then, why DON'T you think so?' said my aunt.\n\n'Because you and I are very different people,' I returned.\n\n'Stuff and nonsense, Trot!' replied my aunt.\n\nMY aunt went on with a quiet enjoyment, in which there was very\nlittle affectation, if any; drinking the warm ale with a tea-spoon,\nand soaking her strips of toast in it.\n\n'Trot,' said she, 'I don't care for strange faces in general, but\nI rather like that Barkis of yours, do you know!'\n\n'It's better than a hundred pounds to hear you say so!' said I.\n\n'It's a most extraordinary world,' observed my aunt, rubbing her\nnose; 'how that woman ever got into it with that name, is\nunaccountable to me.  It would be much more easy to be born a\nJackson, or something of that sort, one would think.'\n\n'Perhaps she thinks so, too; it's not her fault,' said I.\n\n'I suppose not,' returned my aunt, rather grudging the admission;\n'but it's very aggravating.  However, she's Barkis now.  That's\nsome comfort.  Barkis is uncommonly fond of you, Trot.'\n\n'There is nothing she would leave undone to prove it,' said I.\n\n'Nothing, I believe,' returned my aunt.  'Here, the poor fool has\nbeen begging and praying about handing over some of her money -\nbecause she has got too much of it.  A simpleton!'\n\nMy aunt's tears of pleasure were positively trickling down into the\nwarm ale.\n\n'She's the most ridiculous creature that ever was born,' said my\naunt.  'I knew, from the first moment when I saw her with that poor\ndear blessed baby of a mother of yours, that she was the most\nridiculous of mortals.  But there are good points in Barkis!'\n\nAffecting to laugh, she got an opportunity of putting her hand to\nher eyes.  Having availed herself of it, she resumed her toast and\nher discourse together.\n\n'Ah!  Mercy upon us!' sighed my aunt.  'I know all about it, Trot!\nBarkis and myself had quite a gossip while you were out with Dick. \nI know all about it.  I don't know where these wretched girls\nexpect to go to, for my part.  I wonder they don't knock out their\nbrains against - against mantelpieces,' said my aunt; an idea which\nwas probably suggested to her by her contemplation of mine.\n\n'Poor Emily!' said I.\n\n'Oh, don't talk to me about poor,' returned my aunt.  'She should\nhave thought of that, before she caused so much misery!  Give me a\nkiss, Trot.  I am sorry for your early experience.'\n\nAs I bent forward, she put her tumbler on my knee to detain me, and\nsaid:\n\n'Oh, Trot, Trot!  And so you fancy yourself in love!  Do you?'\n\n'Fancy, aunt!' I exclaimed, as red as I could be.  'I adore her\nwith my whole soul!'\n\n'Dora, indeed!' returned my aunt.  'And you mean to say the little\nthing is very fascinating, I suppose?'\n\n'My dear aunt,' I replied, 'no one can form the least idea what she\nis!'\n\n'Ah!  And not silly?' said my aunt.\n\n'Silly, aunt!'\n\nI seriously believe it had never once entered my head for a single\nmoment, to consider whether she was or not.  I resented the idea,\nof course; but I was in a manner struck by it, as a new one\naltogether.\n\n'Not light-headed?' said my aunt.\n\n'Light-headed, aunt!' I could only repeat this daring speculation\nwith the same kind of feeling with which I had repeated the\npreceding question.\n\n'Well, well!' said my aunt.  'I only ask.  I don't depreciate her. \nPoor little couple!  And so you think you were formed for one\nanother, and are to go through a party-supper-table kind of life,\nlike two pretty pieces of confectionery, do you, Trot?'\n\nShe asked me this so kindly, and with such a gentle air, half\nplayful and half sorrowful, that I was quite touched.\n\n'We are young and inexperienced, aunt, I know,' I replied; 'and I\ndare say we say and think a good deal that is rather foolish.  But\nwe love one another truly, I am sure.  If I thought Dora could ever\nlove anybody else, or cease to love me; or that I could ever love\nanybody else, or cease to love her; I don't know what I should do\n- go out of my mind, I think!'\n\n'Ah, Trot!' said my aunt, shaking her head, and smiling gravely;\n'blind, blind, blind!'\n\n'Someone that I know, Trot,' my aunt pursued, after a pause,\n'though of a very pliant disposition, has an earnestness of\naffection in him that reminds me of poor Baby.  Earnestness is what\nthat Somebody must look for, to sustain him and improve him, Trot. \nDeep, downright, faithful earnestness.'\n\n'If you only knew the earnestness of Dora, aunt!' I cried.\n\n'Oh, Trot!' she said again; 'blind, blind!' and without knowing\nwhy, I felt a vague unhappy loss or want of something overshadow me\nlike a cloud.\n\n'However,' said my aunt, 'I don't want to put two young creatures\nout of conceit with themselves, or to make them unhappy; so, though\nit is a girl and boy attachment, and girl and boy attachments very\noften - mind! I don't say always! - come to nothing, still we'll be\nserious about it, and hope for a prosperous issue one of these\ndays.  There's time enough for it to come to anything!'\n\nThis was not upon the whole very comforting to a rapturous lover;\nbut I was glad to have my aunt in my confidence, and I was mindful\nof her being fatigued.  So I thanked her ardently for this mark of\nher affection, and for all her other kindnesses towards me; and\nafter a tender good night, she took her nightcap into my bedroom.\n\nHow miserable I was, when I lay down!  How I thought and thought\nabout my being poor, in Mr. Spenlow's eyes; about my not being what\nI thought I was, when I proposed to Dora; about the chivalrous\nnecessity of telling Dora what my worldly condition was, and\nreleasing her from her engagement if she thought fit; about how I\nshould contrive to live, during the long term of my articles, when\nI was earning nothing; about doing something to assist my aunt, and\nseeing no way of doing anything; about coming down to have no money\nin my pocket, and to wear a shabby coat, and to be able to carry\nDora no little presents, and to ride no gallant greys, and to show\nmyself in no agreeable light!  Sordid and selfish as I knew it was,\nand as I tortured myself by knowing that it was, to let my mind run\non my own distress so much, I was so devoted to Dora that I could\nnot help it.  I knew that it was base in me not to think more of my\naunt, and less of myself; but, so far, selfishness was inseparable\nfrom Dora, and I could not put Dora on one side for any mortal\ncreature.  How exceedingly miserable I was, that night!\n\nAs to sleep, I had dreams of poverty in all sorts of shapes, but I\nseemed to dream without the previous ceremony of going to sleep. \nNow I was ragged, wanting to sell Dora matches, six bundles for a\nhalfpenny; now I was at the office in a nightgown and boots,\nremonstrated with by Mr. Spenlow on appearing before the clients in\nthat airy attire; now I was hungrily picking up the crumbs that\nfell from old Tiffey's daily biscuit, regularly eaten when St.\nPaul's struck one; now I was hopelessly endeavouring to get a\nlicence to marry Dora, having nothing but one of Uriah Heep's\ngloves to offer in exchange, which the whole Commons rejected; and\nstill, more or less conscious of my own room, I was always tossing\nabout like a distressed ship in a sea of bed-clothes.\n\nMy aunt was restless, too, for I frequently heard her walking to\nand fro.  Two or,three times in the course of the night, attired in\na long flannel wrapper in which she looked seven feet high, she\nappeared, like a disturbed ghost, in my room, and came to the side\nof the sofa on which I lay.  On the first occasion I started up in\nalarm, to learn that she inferred from a particular light in the\nsky, that Westminster Abbey was on fire; and to be consulted in\nreference to the probability of its igniting Buckingham Street, in\ncase the wind changed.  Lying still, after that, I found that she\nsat down near me, whispering to herself 'Poor boy!' And then it\nmade me twenty times more wretched, to know how unselfishly mindful\nshe was of me, and how selfishly mindful I was of myself.\n\nIt was difficult to believe that a night so long to me, could be\nshort to anybody else.  This consideration set me thinking and\nthinking of an imaginary party where people were dancing the hours\naway, until that became a dream too, and I heard the music\nincessantly playing one tune, and saw Dora incessantly dancing one\ndance, without taking the least notice of me.  The man who had been\nplaying the harp all night, was trying in vain to cover it with an\nordinary-sized nightcap, when I awoke; or I should rather say, when\nI left off trying to go to sleep, and saw the sun shining in\nthrough the window at last.\n\nThere was an old Roman bath in those days at the bottom of one of\nthe streets out of the Strand - it may be there still - in which I\nhave had many a cold plunge.  Dressing myself as quietly as I\ncould, and leaving Peggotty to look after my aunt, I tumbled head\nforemost into it, and then went for a walk to Hampstead.  I had a\nhope that this brisk treatment might freshen my wits a little; and\nI think it did them good, for I soon came to the conclusion that\nthe first step I ought to take was, to try if my articles could be\ncancelled and the premium recovered.  I got some breakfast on the\nHeath, and walked back to Doctors' Commons, along the watered roads\n\nand through a pleasant smell of summer flowers, growing in gardens\nand carried into town on hucksters' heads, intent on this first\neffort to meet our altered circumstances.\n\nI arrived at the office so soon, after all, that I had half an\nhour's loitering about the Commons, before old Tiffey, who was\nalways first, appeared with his key.  Then I sat down in my shady\ncorner, looking up at the sunlight on the opposite chimney-pots,\nand thinking about Dora; until Mr. Spenlow came in, crisp and\ncurly.\n\n'How are you, Copperfield?' said he.  'Fine morning!'\n\n'Beautiful morning, sir,' said I.  'Could I say a word to you\nbefore you go into Court?'\n\n'By all means,' said he.  'Come into my room.'\n\nI followed him into his room, and he began putting on his gown, and\ntouching himself up before a little glass he had, hanging inside a\ncloset door.\n\n'I am sorry to say,' said I, 'that I have some rather disheartening\nintelligence from my aunt.'\n\n'No!' said he.  'Dear me!  Not paralysis, I hope?'\n\n'It has no reference to her health, sir,' I replied.  'She has met\nwith some large losses.  In fact, she has very little left,\nindeed.'\n\n'You as-tound me, Copperfield!' cried Mr. Spenlow.\n\nI shook my head.  'Indeed, sir,' said I, 'her affairs are so\nchanged, that I wished to ask you whether it would be possible - at\na sacrifice on our part of some portion of the premium, of course,'\nI put in this, on the spur of the moment, warned by the blank\nexpression of his face - 'to cancel my articles?'\n\nWhat it cost me to make this proposal, nobody knows.  It was like\nasking, as a favour, to be sentenced to transportation from Dora.\n\n'To cancel your articles, Copperfield?  Cancel?'\n\nI explained with tolerable firmness, that I really did not know\nwhere my means of subsistence were to come from, unless I could\nearn them for myself.  I had no fear for the future, I said - and\nI laid great emphasis on that, as if to imply that I should still\nbe decidedly eligible for a son-in-law one of these days - but, for\nthe present, I was thrown upon my own resources.\n'I am extremely sorry to hear this, Copperfield,' said Mr. Spenlow. \n'Extremely sorry.  It is not usual to cancel articles for any such\nreason.  It is not a professional course of proceeding.  It is not\na convenient precedent at all.  Far from it.  At the same time -'\n\n'You are very good, sir,' I murmured, anticipating a concession.\n\n'Not at all.  Don't mention it,' said Mr. Spenlow.  'At the same\ntime, I was going to say, if it had been my lot to have my hands\nunfettered - if I had not a partner - Mr. Jorkins -'\n\nMy hopes were dashed in a moment, but I made another effort.\n\n'Do you think, sir,' said I, 'if I were to mention it to Mr.\nJorkins -'\n\nMr. Spenlow shook his head discouragingly.  'Heaven forbid,\nCopperfield,' he replied, 'that I should do any man an injustice:\nstill less, Mr. jorkins.  But I know my partner, Copperfield.  Mr.\njorkins is not a man to respond to a proposition of this peculiar\nnature.  Mr. jorkins is very difficult to move from the beaten\ntrack.  You know what he is!'\n\nI am sure I knew nothing about him, except that he had originally\nbeen alone in the business, and now lived by himself in a house\nnear Montagu Square, which was fearfully in want of painting; that\nhe came very late of a day, and went away very early; that he never\nappeared to be consulted about anything; and that he had a dingy\nlittle black-hole of his own upstairs, where no business was ever\ndone, and where there was a yellow old cartridge-paper pad upon his\ndesk, unsoiled by ink, and reported to be twenty years of age.\n\n'Would you object to my mentioning it to him, sir?' I asked.\n\n'By no means,' said Mr. Spenlow.  'But I have some experience of\nMr. jorkins, Copperfield.  I wish it were otherwise, for I should\nbe happy to meet your views in any respect.  I cannot have the\nobjection to your mentioning it to Mr. jorkins, Copperfield, if you\nthink it worth while.'\n\nAvailing myself of this permission, which was given with a warm\nshake of the hand, I sat thinking about Dora, and looking at the\nsunlight stealing from the chimney-pots down the wall of the\nopposite house, until Mr. jorkins came.  I then went up to Mr.\njorkins's room, and evidently astonished Mr. jorkins very much by\nmaking my appearance there.\n\n'Come in, Mr. Copperfield,' said Mr. jorkins.  'Come in!'\n\nI went in, and sat down; and stated my case to Mr. jorkins pretty\nmuch as I had stated it to Mr. Spenlow.  Mr. Jorkins was not by any\nmeans the awful creature one might have expected, but a large,\nmild, smooth-faced man of sixty, who took so much snuff that there\nwas a tradition in the Commons that he lived principally on that\nstimulant, having little room in his system for any other article\nof diet.\n\n'You have mentioned this to Mr. Spenlow, I suppose?' said Mr.\njorkins; when he had heard me, very restlessly, to an end.\n\nI answered Yes, and told him that Mr. Spenlow had introduced his\nname.\n\n'He said I should object?' asked Mr. jorkins.\n\nI was obliged to admit that Mr. Spenlow had considered it probable.\n\n'I am sorry to say, Mr. Copperfield, I can't advance your object,'\nsaid Mr. jorkins, nervously.  'The fact is - but I have an\nappointment at the Bank, if you'll have the goodness to excuse me.'\n\nWith that he rose in a great hurry, and was going out of the room,\nwhen I made bold to say that I feared, then, there was no way of\narranging the matter?\n\n'No!' said Mr. jorkins, stopping at the door to shake his head. \n'Oh, no!  I object, you know,' which he said very rapidly, and went\nout.  'You must be aware, Mr. Copperfield,' he added, looking\nrestlessly in at the door again, 'if Mr. Spenlow objects -'\n\n'Personally, he does not object, sir,' said I.\n\n'Oh!  Personally!' repeated Mr. Jorkins, in an impatient manner. \n'I assure you there's an objection, Mr. Copperfield.  Hopeless!\nWhat you wish to be done, can't be done.  I - I really have got an\nappointment at the Bank.'  With that he fairly ran away; and to the\nbest of my knowledge, it was three days before he showed himself in\nthe Commons again.\n\nBeing very anxious to leave no stone unturned, I waited until Mr.\nSpenlow came in, and then described what had passed; giving him to\nunderstand that I was not hopeless of his being able to soften the\nadamantine jorkins, if he would undertake the task.\n\n'Copperfield,' returned Mr. Spenlow, with a gracious smile, 'you\nhave not known my partner, Mr. jorkins, as long as I have.  Nothing\nis farther from my thoughts than to attribute any degree of\nartifice to Mr. jorkins.  But Mr. jorkins has a way of stating his\nobjections which often deceives people.  No, Copperfield!' shaking\nhis head.  'Mr. jorkins is not to be moved, believe me!'\n\nI was completely bewildered between Mr. Spenlow and Mr. jorkins, as\nto which of them really was the objecting partner; but I saw with\nsufficient clearness that there was obduracy somewhere in the firm,\nand that the recovery of my aunt's thousand pounds was out of the\nquestion.  In a state of despondency, which I remember with\nanything but satisfaction, for I know it still had too much\nreference to myself (though always in connexion with Dora), I left\nthe office, and went homeward.\n\nI was trying to familiarize my mind with the worst, and to present\nto myself the arrangements we should have to make for the future in\ntheir sternest aspect, when a hackney-chariot coming after me, and\nstopping at my very feet, occasioned me to look up.  A fair hand\nwas stretched forth to me from the window; and the face I had never\nseen without a feeling of serenity and happiness, from the moment\nwhen it first turned back on the old oak staircase with the great\nbroad balustrade, and when I associated its softened beauty with\nthe stained-glass window in the church, was smiling on me.\n\n'Agnes!' I joyfully exclaimed.  'Oh, my dear Agnes, of all people\nin the world, what a pleasure to see you!'\n\n'Is it, indeed?' she said, in her cordial voice.\n\n'I want to talk to you so much!' said I.  'It's such a lightening\nof my heart, only to look at you!  If I had had a conjuror's cap,\nthere is no one I should have wished for but you!'\n\n'What?' returned Agnes.\n\n'Well! perhaps Dora first,' I admitted, with a blush.\n\n'Certainly, Dora first, I hope,' said Agnes, laughing.\n\n'But you next!' said I.  'Where are you going?'\n\nShe was going to my rooms to see my aunt.  The day being very fine,\nshe was glad to come out of the chariot, which smelt (I had my head\nin it all this time) like a stable put under a cucumber-frame.  I\ndismissed the coachman, and she took my arm, and we walked on\ntogether.  She was like Hope embodied, to me.  How different I felt\nin one short minute, having Agnes at my side!\n\nMy aunt had written her one of the odd, abrupt notes - very little\nlonger than a Bank note - to which her epistolary efforts were\nusually limited.  She had stated therein that she had fallen into\nadversity, and was leaving Dover for good, but had quite made up\nher mind to it, and was so well that nobody need be uncomfortable\nabout her.  Agnes had come to London to see my aunt, between whom\nand herself there had been a mutual liking these many years:\nindeed, it dated from the time of my taking up my residence in Mr.\nWickfield's house.  She was not alone, she said.  Her papa was with\nher - and Uriah Heep.\n\n'And now they are partners,' said I.  'Confound him!'\n\n'Yes,' said Agnes.  'They have some business here; and I took\nadvantage of their coming, to come too.  You must not think my\nvisit all friendly and disinterested, Trotwood, for - I am afraid\nI may be cruelly prejudiced - I do not like to let papa go away\nalone, with him.'\n'Does he exercise the same influence over Mr. Wickfield still,\nAgnes?'\n\nAgnes shook her head.  'There is such a change at home,' said she,\n'that you would scarcely know the dear old house.  They live with\nus now.'\n\n'They?' said I.\n\n'Mr. Heep and his mother.  He sleeps in your old room,' said Agnes,\nlooking up into my face.\n\n'I wish I had the ordering of his dreams,' said I.  'He wouldn't\nsleep there long.'\n\n'I keep my own little room,' said Agnes, 'where I used to learn my\nlessons.  How the time goes!  You remember?  The little panelled\nroom that opens from the drawing-room?'\n\n'Remember, Agnes?  When I saw you, for the first time, coming out\nat the door, with your quaint little basket of keys hanging at your\nside?'\n\n'It is just the same,' said Agnes, smiling.  'I am glad you think\nof it so pleasantly.  We were very happy.'\n\n'We were, indeed,' said I.\n\n'I keep that room to myself still; but I cannot always desert Mrs.\nHeep, you know.  And so,' said Agnes, quietly, 'I feel obliged to\nbear her company, when I might prefer to be alone.  But I have no\nother reason to complain of her.  If she tires me, sometimes, by\nher praises of her son, it is only natural in a mother.  He is a\nvery good son to her.'\n\nI looked at Agnes when she said these words, without detecting in\nher any consciousness of Uriah's design.  Her mild but earnest eyes\nmet mine with their own beautiful frankness, and there was no\nchange in her gentle face.\n\n'The chief evil of their presence in the house,' said Agnes, 'is\nthat I cannot be as near papa as I could wish - Uriah Heep being so\nmuch between us - and cannot watch over him, if that is not too\nbold a thing to say, as closely as I would.  But if any fraud or\ntreachery is practising against him, I hope that simple love and\ntruth will be strong in the end.  I hope that real love and truth\nare stronger in the end than any evil or misfortune in the world.'\n\nA certain bright smile, which I never saw on any other face, died\naway, even while I thought how good it was, and how familiar it had\nonce been to me; and she asked me, with a quick change of\nexpression (we were drawing very near my street), if I knew how the\nreverse in my aunt's circumstances had been brought about.  On my\nreplying no, she had not told me yet, Agnes became thoughtful, and\nI fancied I felt her arm tremble in mine.\n\nWe found my aunt alone, in a state of some excitement.  A\ndifference of opinion had arisen between herself and Mrs. Crupp, on\nan abstract question (the propriety of chambers being inhabited by\nthe gentler sex); and my aunt, utterly indifferent to spasms on the\npart of Mrs. Crupp, had cut the dispute short, by informing that\nlady that she smelt of my brandy, and that she would trouble her to\nwalk out.  Both of these expressions Mrs. Crupp considered\nactionable, and had expressed her intention of bringing before a\n'British Judy' - meaning, it was supposed, the bulwark of our\nnational liberties.\n\nMY aunt, however, having had time to cool, while Peggotty was out\nshowing Mr. Dick the soldiers at the Horse Guards - and being,\nbesides, greatly pleased to see Agnes - rather plumed herself on\nthe affair than otherwise, and received us with unimpaired good\nhumour.  When Agnes laid her bonnet on the table, and sat down\nbeside her, I could not but think, looking on her mild eyes and her\nradiant forehead, how natural it seemed to have her there; how\ntrustfully, although she was so young and inexperienced, my aunt\nconfided in her; how strong she was, indeed, in simple love and\ntruth.\n\nWe began to talk about my aunt's losses, and I told them what I had\ntried to do that morning.\n\n'Which was injudicious, Trot,' said my aunt, 'but well meant.  You\nare a generous boy - I suppose I must say, young man, now - and I\nam proud of you, my dear.  So far, so good.  Now, Trot and Agnes,\nlet us look the case of Betsey Trotwood in the face, and see how it\nstands.'\n\nI observed Agnes turn pale, as she looked very attentively at my\naunt.  My aunt, patting her cat, looked very attentively at Agnes.\n\n'Betsey Trotwood,' said my aunt, who had always kept her money\nmatters to herself.  '- I don't mean your sister, Trot, my dear,\nbut myself - had a certain property.  It don't matter how much;\nenough to live on.  More; for she had saved a little, and added to\nit.  Betsey funded her property for some time, and then, by the\nadvice of her man of business, laid it out on landed security. \nThat did very well, and returned very good interest, till Betsey\nwas paid off.  I am talking of Betsey as if she was a man-of-war. \nWell!  Then, Betsey had to look about her, for a new investment. \nShe thought she was wiser, now, than her man of business, who was\nnot such a good man of business by this time, as he used to be - I\nam alluding to your father, Agnes - and she took it into her head\nto lay it out for herself.  So she took her pigs,' said my aunt,\n'to a foreign market; and a very bad market it turned out to be. \nFirst, she lost in the mining way, and then she lost in the diving\nway - fishing up treasure, or some such Tom Tiddler nonsense,'\nexplained my aunt, rubbing her nose; 'and then she lost in the\nmining way again, and, last of all, to set the thing entirely to\nrights, she lost in the banking way.  I don't know what the Bank\nshares were worth for a little while,' said my aunt; 'cent per cent\nwas the lowest of it, I believe; but the Bank was at the other end\nof the world, and tumbled into space, for what I know; anyhow, it\nfell to pieces, and never will and never can pay sixpence; and\nBetsey's sixpences were all there, and there's an end of them. \nLeast said, soonest mended!'\n\nMy aunt concluded this philosophical summary, by fixing her eyes\nwith a kind of triumph on Agnes, whose colour was gradually\nreturning.\n\n'Dear Miss Trotwood, is that all the history?' said Agnes.\n\n'I hope it's enough, child,' said my aunt.  'If there had been more\nmoney to lose, it wouldn't have been all, I dare say.  Betsey would\nhave contrived to throw that after the rest, and make another\nchapter, I have little doubt.  But there was no more money, and\nthere's no more story.'\n\nAgnes had listened at first with suspended breath.  Her colour\nstill came and went, but she breathed more freely.  I thought I\nknew why.  I thought she had had some fear that her unhappy father\nmight be in some way to blame for what had happened.  My aunt took\nher hand in hers, and laughed.\n\n'Is that all?' repeated my aunt.  'Why, yes, that's all, except,\n\"And she lived happy ever afterwards.\" Perhaps I may add that of\nBetsey yet, one of these days.  Now, Agnes, you have a wise head. \nSo have you, Trot, in some things, though I can't compliment you\nalways'; and here my aunt shook her own at me, with an energy\npeculiar to herself.  'What's to be done?  Here's the cottage,\ntaking one time with another, will produce say seventy pounds a\nyear.  I think we may safely put it down at that.  Well! - That's\nall we've got,' said my aunt; with whom it was an idiosyncrasy, as\nit is with some horses, to stop very short when she appeared to be\nin a fair way of going on for a long while.\n\n'Then,' said my aunt, after a rest, 'there's Dick.  He's good for\na hundred a-year, but of course that must be expended on himself. \nI would sooner send him away, though I know I am the only person\nwho appreciates him, than have him, and not spend his money on\nhimself.  How can Trot and I do best, upon our means?  What do you\nsay, Agnes?'\n\n'I say, aunt,' I interposed, 'that I must do something!'\n\n'Go for a soldier, do you mean?' returned my aunt, alarmed; 'or go\nto sea?  I won't hear of it.  You are to be a proctor.  We're not\ngoing to have any knockings on the head in THIS family, if you\nplease, sir.'\n\nI was about to explain that I was not desirous of introducing that\nmode of provision into the family, when Agnes inquired if my rooms\nwere held for any long term?\n\n'You come to the point, my dear,' said my aunt.  'They are not to\nbe got rid of, for six months at least, unless they could be\nunderlet, and that I don't believe.  The last man died here.  Five\npeople out of six would die - of course - of that woman in nankeen\nwith the flannel petticoat.  I have a little ready money; and I\nagree with you, the best thing we can do, is, to live the term out\nhere, and get a bedroom hard by.'\n\nI thought it my duty to hint at the discomfort my aunt would\nsustain, from living in a continual state of guerilla warfare with\nMrs. Crupp; but she disposed of that objection summarily by\ndeclaring that, on the first demonstration of hostilities, she was\nprepared to astonish Mrs. Crupp for the whole remainder of her\nnatural life.\n\n'I have been thinking, Trotwood,' said Agnes, diffidently, 'that if\nyou had time -'\n\n'I have a good deal of time, Agnes.  I am always disengaged after\nfour or five o'clock, and I have time early in the morning.  In one\nway and another,' said I, conscious of reddening a little as I\nthought of the hours and hours I had devoted to fagging about town,\nand to and fro upon the Norwood Road, 'I have abundance of time.'\n\n'I know you would not mind,' said Agnes, coming to me, and speaking\nin a low voice, so full of sweet and hopeful consideration that I\nhear it now, 'the duties of a secretary.'\n\n'Mind, my dear Agnes?'\n\n'Because,' continued Agnes, 'Doctor Strong has acted on his\nintention of retiring, and has come to live in London; and he asked\npapa, I know, if he could recommend him one.  Don't you think he\nwould rather have his favourite old pupil near him, than anybody\nelse?'\n\n'Dear Agnes!' said I.  'What should I do without you!  You are\nalways my good angel.  I told you so.  I never think of you in any\nother light.'\n\nAgnes answered with her pleasant laugh, that one good Angel\n(meaning Dora) was enough; and went on to remind me that the Doctor\nhad been used to occupy himself in his study, early in the morning,\nand in the evening - and that probably my leisure would suit his\nrequirements very well.  I was scarcely more delighted with the\nprospect of earning my own bread, than with the hope of earning it\nunder my old master; in short, acting on the advice of Agnes, I sat\ndown and wrote a letter to the Doctor, stating my object, and\nappointing to call on him next day at ten in the forenoon.  This I\naddressed to Highgate - for in that place, so memorable to me, he\nlived - and went and posted, myself, without losing a minute.\n\nWherever Agnes was, some agreeable token of her noiseless presence\nseemed inseparable from the place.  When I came back, I found my\naunt's birds hanging, just as they had hung so long in the parlour\nwindow of the cottage; and my easy-chair imitating my aunt's much\neasier chair in its position at the open window; and even the round\ngreen fan, which my aunt had brought away with her, screwed on to\nthe window-sill.  I knew who had done all this, by its seeming to\nhave quietly done itself; and I should have known in a moment who\nhad arranged my neglected books in the old order of my school days,\neven if I had supposed Agnes to be miles away, instead of seeing\nher busy with them, and smiling at the disorder into which they had\nfallen.\n\nMy aunt was quite gracious on the subject of the Thames (it really\ndid look very well with the sun upon it, though not like the sea\nbefore the cottage), but she could not relent towards the London\nsmoke, which, she said, 'peppered everything'.  A complete\nrevolution, in which Peggotty bore a prominent part, was being\neffected in every corner of my rooms, in regard of this pepper; and\nI was looking on, thinking how little even Peggotty seemed to do\nwith a good deal of bustle, and how much Agnes did without any\nbustle at all, when a knock came at the door.\n\n'I think,' said Agnes, turning pale, 'it's papa.  He promised me\nthat he would come.'\n\nI opened the door, and admitted, not only Mr. Wickfield, but Uriah\nHeep.  I had not seen Mr. Wickfield for some time.  I was prepared\nfor a great change in him, after what I had heard from Agnes, but\nhis appearance shocked me.\n\nIt was not that he looked many years older, though still dressed\nwith the old scrupulous cleanliness; or that there was an\nunwholesome ruddiness upon his face; or that his eyes were full and\nbloodshot; or that there was a nervous trembling in his hand, the\ncause of which I knew, and had for some years seen at work.  It was\nnot that he had lost his good looks, or his old bearing of a\ngentleman - for that he had not - but the thing that struck me\nmost, was, that with the evidences of his native superiority still\nupon him, he should submit himself to that crawling impersonation\nof meanness, Uriah Heep.  The reversal of the two natures, in their\nrelative positions, Uriah's of power and Mr. Wickfield's of\ndependence, was a sight more painful to me than I can express.  If\nI had seen an Ape taking command of a Man, I should hardly have\nthought it a more degrading spectacle.\n\nHe appeared to be only too conscious of it himself.  When he came\nin, he stood still; and with his head bowed, as if he felt it. \nThis was only for a moment; for Agnes softly said to him, 'Papa!\nHere is Miss Trotwood - and Trotwood, whom you have not seen for a\nlong while!' and then he approached, and constrainedly gave my aunt\nhis hand, and shook hands more cordially with me.  In the moment's\npause I speak of, I saw Uriah's countenance form itself into a most\nill-favoured smile.  Agnes saw it too, I think, for she shrank from\nhim.\n\nWhat my aunt saw, or did not see, I defy the science of physiognomy\nto have made out, without her own consent.  I believe there never\nwas anybody with such an imperturbable countenance when she chose. \nHer face might have been a dead-wall on the occasion in question,\nfor any light it threw upon her thoughts; until she broke silence\nwith her usual abruptness.\n\n'Well, Wickfield!' said my aunt; and he looked up at her for the\nfirst time.  'I have been telling your daughter how well I have\nbeen disposing of my money for myself, because I couldn't trust it\nto you, as you were growing rusty in business matters.  We have\nbeen taking counsel together, and getting on very well, all things\nconsidered.  Agnes is worth the whole firm, in my opinion.'\n\n'If I may umbly make the remark,' said Uriah Heep, with a writhe,\n'I fully agree with Miss Betsey Trotwood, and should be only too\nappy if Miss Agnes was a partner.'\n\n'You're a partner yourself, you know,' returned my aunt, 'and\nthat's about enough for you, I expect.  How do you find yourself,\nsir?'\n\nIn acknowledgement of this question, addressed to him with\nextraordinary curtness, Mr. Heep, uncomfortably clutching the blue\nbag he carried, replied that he was pretty well, he thanked my\naunt, and hoped she was the same.\n\n'And you, Master - I should say, Mister Copperfield,' pursued\nUriah.  'I hope I see you well!  I am rejoiced to see you, Mister\nCopperfield, even under present circumstances.'  I believed that;\nfor he seemed to relish them very much.  'Present circumstances is\nnot what your friends would wish for you, Mister Copperfield, but\nit isn't money makes the man: it's - I am really unequal with my\numble powers to express what it is,' said Uriah, with a fawning\njerk, 'but it isn't money!'\n\nHere he shook hands with me: not in the common way, but standing at\na good distance from me, and lifting my hand up and down like a\npump handle, that he was a little afraid of.\n\n'And how do you think we are looking, Master Copperfield, - I\nshould say, Mister?' fawned Uriah.  'Don't you find Mr. Wickfield\nblooming, sir?  Years don't tell much in our firm, Master\nCopperfield, except in raising up the umble, namely, mother and\nself - and in developing,' he added, as an afterthought, 'the\nbeautiful, namely, Miss Agnes.'\n\nHe jerked himself about, after this compliment, in such an\nintolerable manner, that my aunt, who had sat looking straight at\nhim, lost all patience.\n\n'Deuce take the man!' said my aunt, sternly, 'what's he about? \nDon't be galvanic, sir!'\n\n'I ask your pardon, Miss Trotwood,' returned Uriah; 'I'm aware\nyou're nervous.'\n\n'Go along with you, sir!' said my aunt, anything but appeased. \n'Don't presume to say so!  I am nothing of the sort.  If you're an\neel, sir, conduct yourself like one.  If you're a man, control your\nlimbs, sir!  Good God!' said my aunt, with great indignation, 'I am\nnot going to be serpentined and corkscrewed out of my senses!'\n\nMr. Heep was rather abashed, as most people might have been, by\nthis explosion; which derived great additional force from the\nindignant manner in which my aunt afterwards moved in her chair,\nand shook her head as if she were making snaps or bounces at him. \nBut he said to me aside in a meek voice:\n\n'I am well aware, Master Copperfield, that Miss Trotwood, though an\nexcellent lady, has a quick temper (indeed I think I had the\npleasure of knowing her, when I was a numble clerk, before you did,\nMaster Copperfield), and it's only natural, I am sure, that it\nshould be made quicker by present circumstances.  The wonder is,\nthat it isn't much worse!  I only called to say that if there was\nanything we could do, in present circumstances, mother or self, or\nWickfield and Heep, -we should be really glad.  I may go so far?'\nsaid Uriah, with a sickly smile at his partner.\n\n'Uriah Heep,' said Mr. Wickfield, in a monotonous forced way, 'is\nactive in the business, Trotwood.  What he says, I quite concur in. \nYou know I had an old interest in you.  Apart from that, what Uriah\nsays I quite concur in!'\n\n'Oh, what a reward it is,' said Uriah, drawing up one leg, at the\nrisk of bringing down upon himself another visitation from my aunt,\n'to be so trusted in!  But I hope I am able to do something to\nrelieve him from the fatigues of business, Master Copperfield!'\n\n'Uriah Heep is a great relief to me,' said Mr. Wickfield, in the\nsame dull voice.  'It's a load off my mind, Trotwood, to have such\na partner.'\n\nThe red fox made him say all this, I knew, to exhibit him to me in\nthe light he had indicated on the night when he poisoned my rest. \nI saw the same ill-favoured smile upon his face again, and saw how\nhe watched me.\n\n'You are not going, papa?' said Agnes, anxiously.  'Will you not\nwalk back with Trotwood and me?'\n\nHe would have looked to Uriah, I believe, before replying, if that\nworthy had not anticipated him.\n\n'I am bespoke myself,' said Uriah, 'on business; otherwise I should\nhave been appy to have kept with my friends.  But I leave my\npartner to represent the firm.  Miss Agnes, ever yours!  I wish you\ngood-day, Master Copperfield, and leave my umble respects for Miss\nBetsey Trotwood.'\n\nWith those words, he retired, kissing his great hand, and leering\nat us like a mask.\n\nWe sat there, talking about our pleasant old Canterbury days, an\nhour or two.  Mr. Wickfield, left to Agnes, soon became more like\nhis former self; though there was a settled depression upon him,\nwhich he never shook off.  For all that, he brightened; and had an\nevident pleasure in hearing us recall the little incidents of our\nold life, many of which he remembered very well.  He said it was\nlike those times, to be alone with Agnes and me again; and he\nwished to Heaven they had never changed.  I am sure there was an\ninfluence in the placid face of Agnes, and in the very touch of her\nhand upon his arm, that did wonders for him.\n\nMy aunt (who was busy nearly all this while with Peggotty, in the\ninner room) would not accompany us to the place where they were\nstaying, but insisted on my going; and I went.  We dined together. \nAfter dinner, Agnes sat beside him, as of old, and poured out his\nwine.  He took what she gave him, and no more - like a child - and\nwe all three sat together at a window as the evening gathered in. \nWhen it was almost dark, he lay down on a sofa, Agnes pillowing his\nhead and bending over him a little while; and when she came back to\nthe window, it was not so dark but I could see tears glittering in\nher eyes.\n\nI pray Heaven that I never may forget the dear girl in her love and\ntruth, at that time of my life; for if I should, I must be drawing\nnear the end, and then I would desire to remember her best!  She\nfilled my heart with such good resolutions, strengthened my\nweakness so, by her example, so directed - I know not how, she was\ntoo modest and gentle to advise me in many words - the wandering\nardour and unsettled purpose within me, that all the little good I\nhave done, and all the harm I have forborne, I solemnly believe I\nmay refer to her.\n\nAnd how she spoke to me of Dora, sitting at the window in the dark;\nlistened to my praises of her; praised again; and round the little\nfairy-figure shed some glimpses of her own pure light, that made it\nyet more precious and more innocent to me!  Oh, Agnes, sister of my\nboyhood, if I had known then, what I knew long afterwards! -\n\nThere was a beggar in the street, when I went down; and as I turned\nmy head towards the window, thinking of her calm seraphic eyes, he\nmade me start by muttering, as if he were an echo of the morning:\n'Blind!  Blind!  Blind!'\n\n\n\nCHAPTER 36\nENTHUSIASM\n\nI began the next day with another dive into the Roman bath, and\nthen started for Highgate.  I was not dispirited now.  I was not\nafraid of the shabby coat, and had no yearnings after gallant\ngreys.  My whole manner of thinking of our late misfortune was\nchanged.  What I had to do, was, to show my aunt that her past\ngoodness to me had not been thrown away on an insensible,\nungrateful object.  What I had to do, was, to turn the painful\ndiscipline of my younger days to account, by going to work with a\nresolute and steady heart.  What I had to do, was, to take my\nwoodman's axe in my hand, and clear my own way through the forest\nof difficulty, by cutting down the trees until I came to Dora.  And\nI went on at a mighty rate, as if it could be done by walking.\n\nWhen I found myself on the familiar Highgate road, pursuing such a\ndifferent errand from that old one of pleasure, with which it was\nassociated, it seemed as if a complete change had come on my whole\nlife.  But that did not discourage me.  With the new life, came new\npurpose, new intention.  Great was the labour; priceless the\nreward.  Dora was the reward, and Dora must be won.\n\nI got into such a transport, that I felt quite sorry my coat was\nnot a little shabby already.  I wanted to be cutting at those trees\nin the forest of difficulty, under circumstances that should prove\nmy strength.  I had a good mind to ask an old man, in wire\nspectacles, who was breaking stones upon the road, to lend me his\nhammer for a little while, and let me begin to beat a path to Dora\nout of granite.  I stimulated myself into such a heat, and got so\nout of breath, that I felt as if I had been earning I don't know\nhow much.\n\nIn this state, I went into a cottage that I saw was to let, and\nexamined it narrowly, - for I felt it necessary to be practical. \nIt would do for me and Dora admirably: with a little front garden\nfor Jip to run about in, and bark at the tradespeople through the\nrailings, and a capital room upstairs for my aunt.  I came out\nagain, hotter and faster than ever, and dashed up to Highgate, at\nsuch a rate that I was there an hour too early; and, though I had\nnot been, should have been obliged to stroll about to cool myself,\nbefore I was at all presentable.\n\nMy first care, after putting myself under this necessary course of\npreparation, was to find the Doctor's house.  It was not in that\npart of Highgate where Mrs. Steerforth lived, but quite on the\nopposite side of the little town.  When I had made this discovery,\nI went back, in an attraction I could not resist, to a lane by Mrs.\nSteerforth's, and looked over the corner of the garden wall.  His\nroom was shut up close.  The conservatory doors were standing open,\nand Rosa Dartle was walking, bareheaded, with a quick, impetuous\nstep, up and down a gravel walk on one side of the lawn.  She gave\nme the idea of some fierce thing, that was dragging the length of\nits chain to and fro upon a beaten track, and wearing its heart\nout.\n\nI came softly away from my place of observation, and avoiding that\npart of the neighbourhood, and wishing I had not gone near it,\nstrolled about until it was ten o'clock.  The church with the\nslender spire, that stands on the top of the hill now, was not\nthere then to tell me the time.  An old red-brick mansion, used as\na school, was in its place; and a fine old house it must have been\nto go to school at, as I recollect it.\n\nWhen I approached the Doctor's cottage - a pretty old place, on\nwhich he seemed to have expended some money, if I might judge from\nthe embellishments and repairs that had the look of being just\ncompleted - I saw him walking in the garden at the side, gaiters\nand all, as if he had never left off walking since the days of my\npupilage.  He had his old companions about him, too; for there were\nplenty of high trees in the neighbourhood, and two or three rooks\nwere on the grass, looking after him, as if they had been written\nto about him by the Canterbury rooks, and were observing him\nclosely in consequence.\n\nKnowing the utter hopelessness of attracting his attention from\nthat distance, I made bold to open the gate, and walk after him, so\nas to meet him when he should turn round.  When he did, and came\ntowards me, he looked at me thoughtfully for a few moments,\nevidently without thinking about me at all; and then his benevolent\nface expressed extraordinary pleasure, and he took me by both\nhands.\n\n'Why, my dear Copperfield,' said the Doctor, 'you are a man!  How\ndo you do?  I am delighted to see you.  My dear Copperfield, how\nvery much you have improved!  You are quite - yes - dear me!'\n\nI hoped he was well, and Mrs. Strong too.\n\n'Oh dear, yes!' said the Doctor; 'Annie's quite well, and she'll be\ndelighted to see you.  You were always her favourite.  She said so,\nlast night, when I showed her your letter.  And - yes, to be sure\n- you recollect Mr. Jack Maldon, Copperfield?'\n\n'Perfectly, sir.'\n\n'Of course,' said the Doctor.  'To be sure.  He's pretty well,\ntoo.'\n\n'Has he come home, sir?' I inquired.\n\n'From India?' said the Doctor.  'Yes.  Mr. Jack Maldon couldn't\nbear the climate, my dear.  Mrs. Markleham - you have not forgotten\nMrs. Markleham?'\n\nForgotten the Old Soldier!  And in that short time!\n\n'Mrs. Markleham,' said the Doctor, 'was quite vexed about him, poor\nthing; so we have got him at home again; and we have bought him a\nlittle Patent place, which agrees with him much better.'\nI knew enough of Mr. Jack Maldon to suspect from this account that\nit was a place where there was not much to do, and which was pretty\nwell paid.  The Doctor, walking up and down with his hand on my\nshoulder, and his kind face turned encouragingly to mine, went on:\n\n'Now, my dear Copperfield, in reference to this proposal of yours. \nIt's very gratifying and agreeable to me, I am sure; but don't you\nthink you could do better?  You achieved distinction, you know,\nwhen you were with us.  You are qualified for many good things. \nYou have laid a foundation that any edifice may be raised upon; and\nis it not a pity that you should devote the spring-time of your\nlife to such a poor pursuit as I can offer?'\n\nI became very glowing again, and, expressing myself in a\nrhapsodical style, I am afraid, urged my request strongly;\nreminding the Doctor that I had already a profession.\n\n'Well, well,' said the Doctor, 'that's true.  Certainly, your\nhaving a profession, and being actually engaged in studying it,\nmakes a difference.  But, my good young friend, what's seventy\npounds a year?'\n\n'It doubles our income, Doctor Strong,' said I.\n\n'Dear me!' replied the Doctor.  'To think of that!  Not that I mean\nto say it's rigidly limited to seventy pounds a-year, because I\nhave always contemplated making any young friend I might thus\nemploy, a present too.  Undoubtedly,' said the Doctor, still\nwalking me up and down with his hand on my shoulder.  'I have\nalways taken an annual present into account.'\n\n'My dear tutor,' said I (now, really, without any nonsense), 'to\nwhom I owe more obligations already than I ever can acknowledge -'\n\n'No, no,' interposed the Doctor.  'Pardon me!'\n\n'If you will take such time as I have, and that is my mornings and\nevenings, and can think it worth seventy pounds a year, you will do\nme such a service as I cannot express.'\n\n'Dear me!' said the Doctor, innocently.  'To think that so little\nshould go for so much!  Dear, dear!  And when you can do better,\nyou will?  On your word, now?' said the Doctor, - which he had\nalways made a very grave appeal to the honour of us boys.\n\n'On my word, sir!' I returned, answering in our old school manner.\n\n'Then be it so,' said the Doctor, clapping me on the shoulder, and\nstill keeping his hand there, as we still walked up and down.\n\n'And I shall be twenty times happier, sir,' said I, with a little\n- I hope innocent - flattery, 'if my employment is to be on the\nDictionary.'\n\nThe Doctor stopped, smilingly clapped me on the shoulder again, and\nexclaimed, with a triumph most delightful to behold, as if I had\npenetrated to the profoundest depths of mortal sagacity, 'My dear\nyoung friend, you have hit it.  It IS the Dictionary!'\n\nHow could it be anything else!  His pockets were as full of it as\nhis head.  It was sticking out of him in all directions.  He told\nme that since his retirement from scholastic life, he had been\nadvancing with it wonderfully; and that nothing could suit him\nbetter than the proposed arrangements for morning and evening work,\nas it was his custom to walk about in the daytime with his\nconsidering cap on.  His papers were in a little confusion, in\nconsequence of Mr. Jack Maldon having lately proffered his\noccasional services as an amanuensis, and not being accustomed to\nthat occupation; but we should soon put right what was amiss, and\ngo on swimmingly.  Afterwards, when we were fairly at our work, I\nfound Mr. Jack Maldon's efforts more troublesome to me than I had\nexpected, as he had not confined himself to making numerous\nmistakes, but had sketched so many soldiers, and ladies' heads,\nover the Doctor's manuscript, that I often became involved in\nlabyrinths of obscurity.\n\nThe Doctor was quite happy in the prospect of our going to work\ntogether on that wonderful performance, and we settled to begin\nnext morning at seven o'clock.  We were to work two hours every\nmorning, and two or three hours every night, except on Saturdays,\nwhen I was to rest.  On Sundays, of course, I was to rest also, and\nI considered these very easy terms.\n\nOur plans being thus arranged to our mutual satisfaction, the\nDoctor took me into the house to present me to Mrs. Strong, whom we\nfound in the Doctor's new study, dusting his books, - a freedom\nwhich he never permitted anybody else to take with those sacred\nfavourites.\n\nThey had postponed their breakfast on my account, and we sat down\nto table together.  We had not been seated long, when I saw an\napproaching arrival in Mrs. Strong's face, before I heard any sound\nof it.  A gentleman on horseback came to the gate, and leading his\nhorse into the little court, with the bridle over his arm, as if he\nwere quite at home, tied him to a ring in the empty coach-house\nwall, and came into the breakfast parlour, whip in hand.  It was\nMr. Jack Maldon; and Mr. Jack Maldon was not at all improved by\nIndia, I thought.  I was in a state of ferocious virtue, however,\nas to young men who were not cutting down trees in the forest of\ndifficulty; and my impression must be received with due allowance.\n\n'Mr. Jack!' said the Doctor.  'Copperfield!'\n\nMr. Jack Maldon shook hands with me; but not very warmly, I\nbelieved; and with an air of languid patronage, at which I secretly\ntook great umbrage.  But his languor altogether was quite a\nwonderful sight; except when he addressed himself to his cousin\nAnnie.\n'Have you breakfasted this morning, Mr. Jack?' said the Doctor.\n\n'I hardly ever take breakfast, sir,' he replied, with his head\nthrown back in an easy-chair.  'I find it bores me.'\n\n'Is there any news today?' inquired the Doctor.\n\n'Nothing at all, sir,' replied Mr. Maldon.  'There's an account\nabout the people being hungry and discontented down in the North,\nbut they are always being hungry and discontented somewhere.'\n\nThe Doctor looked grave, and said, as though he wished to change\nthe subject, 'Then there's no news at all; and no news, they say,\nis good news.'\n\n'There's a long statement in the papers, sir, about a murder,'\nobserved Mr. Maldon.  'But somebody is always being murdered, and\nI didn't read it.'\n\nA display of indifference to all the actions and passions of\nmankind was not supposed to be such a distinguished quality at that\ntime, I think, as I have observed it to be considered since.  I\nhave known it very fashionable indeed.  I have seen it displayed\nwith such success, that I have encountered some fine ladies and\ngentlemen who might as well have been born caterpillars.  Perhaps\nit impressed me the more then, because it was new to me, but it\ncertainly did not tend to exalt my opinion of, or to strengthen my\nconfidence in, Mr. Jack Maldon.\n\n'I came out to inquire whether Annie would like to go to the opera\ntonight,' said Mr. Maldon, turning to her.  'It's the last good\nnight there will be, this season; and there's a singer there, whom\nshe really ought to hear.  She is perfectly exquisite.  Besides\nwhich, she is so charmingly ugly,' relapsing into languor.\n\nThe Doctor, ever pleased with what was likely to please his young\nwife, turned to her and said:\n\n'You must go, Annie.  You must go.'\n\n'I would rather not,' she said to the Doctor.  'I prefer to remain\nat home.  I would much rather remain at home.'\n\nWithout looking at her cousin, she then addressed me, and asked me\nabout Agnes, and whether she should see her, and whether she was\nnot likely to come that day; and was so much disturbed, that I\nwondered how even the Doctor, buttering his toast, could be blind\nto what was so obvious.\n\nBut he saw nothing.  He told her, good-naturedly, that she was\nyoung and ought to be amused and entertained, and must not allow\nherself to be made dull by a dull old fellow.  Moreover, he said,\nhe wanted to hear her sing all the new singer's songs to him; and\nhow could she do that well, unless she went?  So the Doctor\npersisted in making the engagement for her, and Mr. Jack Maldon was\nto come back to dinner.  This concluded, he went to his Patent\nplace, I suppose; but at all events went away on his horse, looking\nvery idle.\n\nI was curious to find out next morning, whether she had been.  She\nhad not, but had sent into London to put her cousin off; and had\ngone out in the afternoon to see Agnes, and had prevailed upon the\nDoctor to go with her; and they had walked home by the fields, the\nDoctor told me, the evening being delightful.  I wondered then,\nwhether she would have gone if Agnes had not been in town, and\nwhether Agnes had some good influence over her too!\n\nShe did not look very happy, I thought; but it was a good face, or\na very false one.  I often glanced at it, for she sat in the window\nall the time we were at work; and made our breakfast, which we took\nby snatches as we were employed.  When I left, at nine o'clock, she\nwas kneeling on the ground at the Doctor's feet, putting on his\nshoes and gaiters for him.  There was a softened shade upon her\nface, thrown from some green leaves overhanging the open window of\nthe low room; and I thought all the way to Doctors' Commons, of the\nnight when I had seen it looking at him as he read.\n\nI was pretty busy now; up at five in the morning, and home at nine\nor ten at night.  But I had infinite satisfaction in being so\nclosely engaged, and never walked slowly on any account, and felt\nenthusiastically that the more I tired myself, the more I was doing\nto deserve Dora.  I had not revealed myself in my altered character\nto Dora yet, because she was coming to see Miss Mills in a few\ndays, and I deferred all I had to tell her until then; merely\ninforming her in my letters (all our communications were secretly\nforwarded through Miss Mills), that I had much to tell her.  In the\nmeantime, I put myself on a short allowance of bear's grease,\nwholly abandoned scented soap and lavender water, and sold off\nthree waistcoats at a prodigious sacrifice, as being too luxurious\nfor my stern career.\n\nNot satisfied with all these proceedings, but burning with\nimpatience to do something more, I went to see Traddles, now\nlodging up behind the parapet of a house in Castle Street, Holborn. \nMr. Dick, who had been with me to Highgate twice already, and had\nresumed his companionship with the Doctor, I took with me.\n\nI took Mr. Dick with me, because, acutely sensitive to my aunt's\nreverses, and sincerely believing that no galley-slave or convict\nworked as I did, he had begun to fret and worry himself out of\nspirits and appetite, as having nothing useful to do.  In this\ncondition, he felt more incapable of finishing the Memorial than\never; and the harder he worked at it, the oftener that unlucky head\nof King Charles the First got into it.  Seriously apprehending that\nhis malady would increase, unless we put some innocent deception\nupon him and caused him to believe that he was useful, or unless we\ncould put him in the way of being really useful (which would be\nbetter), I made up my mind to try if Traddles could help us. \nBefore we went, I wrote Traddles a full statement of all that had\nhappened, and Traddles wrote me back a capital answer, expressive\nof his sympathy and friendship.\n\nWe found him hard at work with his inkstand and papers, refreshed\nby the sight of the flower-pot stand and the little round table in\na corner of the small apartment.  He received us cordially, and\nmade friends with Mr. Dick in a moment.  Mr. Dick professed an\nabsolute certainty of having seen him before, and we both said,\n'Very likely.'\n\nThe first subject on which I had to consult Traddles was this, - I\nhad heard that many men distinguished in various pursuits had begun\nlife by reporting the debates in Parliament.  Traddles having\nmentioned newspapers to me, as one of his hopes, I had put the two\nthings together, and told Traddles in my letter that I wished to\nknow how I could qualify myself for this pursuit.  Traddles now\ninformed me, as the result of his inquiries, that the mere\nmechanical acquisition necessary, except in rare cases, for\nthorough excellence in it, that is to say, a perfect and entire\ncommand of the mystery of short-hand writing and reading, was about\nequal in difficulty to the mastery of six languages; and that it\nmight perhaps be attained, by dint of perseverance, in the course\nof a few years.  Traddles reasonably supposed that this would\nsettle the business; but I, only feeling that here indeed were a\nfew tall trees to be hewn down, immediately resolved to work my way\non to Dora through this thicket, axe in hand.\n\n'I am very much obliged to you, my dear Traddles!' said I.  'I'll\nbegin tomorrow.'\n\nTraddles looked astonished, as he well might; but he had no notion\nas yet of my rapturous condition.\n\n'I'll buy a book,' said I, 'with a good scheme of this art in it;\nI'll work at it at the Commons, where I haven't half enough to do;\nI'll take down the speeches in our court for practice - Traddles,\nmy dear fellow, I'll master it!'\n\n'Dear me,' said Traddles, opening his eyes, 'I had no idea you were\nsuch a determined character, Copperfield!'\n\nI don't know how he should have had, for it was new enough to me. \nI passed that off, and brought Mr. Dick on the carpet.\n\n'You see,' said Mr. Dick, wistfully, 'if I could exert myself, Mr.\nTraddles - if I could beat a drum- or blow anything!'\n\nPoor fellow!  I have little doubt he would have preferred such an\nemployment in his heart to all others.  Traddles, who would not\nhave smiled for the world, replied composedly:\n\n'But you are a very good penman, sir.  You told me so,\nCopperfield?'\n'Excellent!' said I.  And indeed he was.  He wrote with\nextraordinary neatness.\n\n'Don't you think,' said Traddles, 'you could copy writings, sir, if\nI got them for you?'\n\nMr. Dick looked doubtfully at me.  'Eh, Trotwood?'\n\nI shook my head.  Mr. Dick shook his, and sighed.  'Tell him about\nthe Memorial,' said Mr. Dick.\n\nI explained to Traddles that there was a difficulty in keeping King\nCharles the First out of Mr. Dick's manuscripts; Mr. Dick in the\nmeanwhile looking very deferentially and seriously at Traddles, and\nsucking his thumb.\n\n'But these writings, you know, that I speak of, are already drawn\nup and finished,' said Traddles after a little consideration.  'Mr.\nDick has nothing to do with them.  Wouldn't that make a difference,\nCopperfield?  At all events, wouldn't it be well to try?'\n\nThis gave us new hope.  Traddles and I laying our heads together\napart, while Mr. Dick anxiously watched us from his chair, we\nconcocted a scheme in virtue of which we got him to work next day,\nwith triumphant success.\n\nOn a table by the window in Buckingham Street, we set out the work\nTraddles procured for him - which was to make, I forget how many\ncopies of a legal document about some right of way - and on another\ntable we spread the last unfinished original of the great Memorial. \nOur instructions to Mr. Dick were that he should copy exactly what\nhe had before him, without the least departure from the original;\nand that when he felt it necessary to make the slightest allusion\nto King Charles the First, he should fly to the Memorial.  We\nexhorted him to be resolute in this, and left my aunt to observe\nhim.  My aunt reported to us, afterwards, that, at first, he was\nlike a man playing the kettle-drums, and constantly divided his\nattentions between the two; but that, finding this confuse and\nfatigue him, and having his copy there, plainly before his eyes, he\nsoon sat at it in an orderly business-like manner, and postponed\nthe Memorial to a more convenient time.  In a word, although we\ntook great care that he should have no more to do than was good for\nhim, and although he did not begin with the beginning of a week, he\nearned by the following Saturday night ten shillings and\nnine-pence; and never, while I live, shall I forget his going about\nto all the shops in the neighbourhood to change this treasure into\nsixpences, or his bringing them to my aunt arranged in the form of\na heart upon a waiter, with tears of joy and pride in his eyes.  He\nwas like one under the propitious influence of a charm, from the\nmoment of his being usefully employed; and if there were a happy\nman in the world, that Saturday night, it was the grateful creature\nwho thought my aunt the most wonderful woman in existence, and me\nthe most wonderful young man.\n\n'No starving now, Trotwood,' said Mr. Dick, shaking hands with me\nin a corner.  'I'll provide for her, Sir!' and he flourished his\nten fingers in the air, as if they were ten banks.\n\nI hardly know which was the better pleased, Traddles or I.  'It\nreally,' said Traddles, suddenly, taking a letter out of his\npocket, and giving it to me, 'put Mr. Micawber quite out of my\nhead!'\n\nThe letter (Mr. Micawber never missed any possible opportunity of\nwriting a letter) was addressed to me, 'By the kindness of T.\nTraddles, Esquire, of the Inner Temple.'  It ran thus: -\n\n\n'MY DEAR COPPERFIELD,\n\n'You may possibly not be unprepared to receive the intimation that\nsomething has turned up.  I may have mentioned to you on a former\noccasion that I was in expectation of such an event.\n\n'I am about to establish myself in one of the provincial towns of\nour favoured island (where the society may be described as a happy\nadmixture of the agricultural and the clerical), in immediate\nconnexion with one of the learned professions.  Mrs. Micawber and\nour offspring will accompany me.  Our ashes, at a future period,\nwill probably be found commingled in the cemetery attached to a\nvenerable pile, for which the spot to which I refer has acquired a\nreputation, shall I say from China to Peru?\n\n'In bidding adieu to the modern Babylon, where we have undergone\nmany vicissitudes, I trust not ignobly, Mrs. Micawber and myself\ncannot disguise from our minds that we part, it may be for years\nand it may be for ever, with an individual linked by strong\nassociations to the altar of our domestic life.  If, on the eve of\nsuch a departure, you will accompany our mutual friend, Mr. Thomas\nTraddles, to our present abode, and there reciprocate the wishes\nnatural to the occasion, you will confer a Boon\n\n               'On\n                    'One\n                         'Who\n                              'Is\n                                   'Ever yours,\n                                        'WILKINS MICAWBER.'\n\n\nI was glad to find that Mr. Micawber had got rid of his dust and\nashes, and that something really had turned up at last.  Learning\nfrom Traddles that the invitation referred to the evening then\nwearing away, I expressed my readiness to do honour to it; and we\nwent off together to the lodging which Mr. Micawber occupied as Mr.\nMortimer, and which was situated near the top of the Gray's Inn\nRoad.\n\nThe resources of this lodging were so limited, that we found the\ntwins, now some eight or nine years old, reposing in a turn-up\nbedstead in the family sitting-room, where Mr. Micawber had\nprepared, in a wash-hand-stand jug, what he called 'a Brew' of the\nagreeable beverage for which he was famous.  I had the pleasure, on\nthis occasion, of renewing the acquaintance of Master Micawber,\nwhom I found a promising boy of about twelve or thirteen, very\nsubject to that restlessness of limb which is not an unfrequent\nphenomenon in youths of his age.  I also became once more known to\nhis sister, Miss Micawber, in whom, as Mr. Micawber told us, 'her\nmother renewed her youth, like the Phoenix'.\n\n'My dear Copperfield,' said Mr. Micawber, 'yourself and Mr.\nTraddles find us on the brink of migration, and will excuse any\nlittle discomforts incidental to that position.'\n\nGlancing round as I made a suitable reply, I observed that the\nfamily effects were already packed, and that the amount of luggage\nwas by no means overwhelming.  I congratulated Mrs. Micawber on the\napproaching change.\n\n'My dear Mr. Copperfield,' said Mrs. Micawber, 'of your friendly\ninterest in all our affairs, I am well assured.  My family may\nconsider it banishment, if they please; but I am a wife and mother,\nand I never will desert Mr. Micawber.'\n\nTraddles, appealed to by Mrs. Micawber's eye, feelingly acquiesced.\n\n'That,' said Mrs. Micawber, 'that, at least, is my view, my dear\nMr. Copperfield and Mr. Traddles, of the obligation which I took\nupon myself when I repeated the irrevocable words, \"I, Emma, take\nthee, Wilkins.\" I read the service over with a flat-candle on the\nprevious night, and the conclusion I derived from it was, that I\nnever could desert Mr. Micawber.  And,' said Mrs. Micawber, 'though\nit is possible I may be mistaken in my view of the ceremony, I\nnever will!'\n\n'My dear,' said Mr. Micawber, a little impatiently, 'I am not\nconscious that you are expected to do anything of the sort.'\n\n'I am aware, my dear Mr. Copperfield,' pursued Mrs. Micawber, 'that\nI am now about to cast my lot among strangers; and I am also aware\nthat the various members of my family, to whom Mr. Micawber has\nwritten in the most gentlemanly terms, announcing that fact, have\nnot taken the least notice of Mr. Micawber's communication.  Indeed\nI may be superstitious,' said Mrs. Micawber, 'but it appears to me\nthat Mr. Micawber is destined never to receive any answers whatever\nto the great majority of the communications he writes.  I may\naugur, from the silence of my family, that they object to the\nresolution I have taken; but I should not allow myself to be\nswerved from the path of duty, Mr. Copperfield, even by my papa and\nmama, were they still living.'\n\nI expressed my opinion that this was going in the right direction.\n'It may be a sacrifice,' said Mrs. Micawber, 'to immure one's-self\nin a Cathedral town; but surely, Mr. Copperfield, if it is a\nsacrifice in me, it is much more a sacrifice in a man of Mr.\nMicawber's abilities.'\n\n'Oh!  You are going to a Cathedral town?' said I.\n\nMr. Micawber, who had been helping us all, out of the\nwash-hand-stand jug, replied:\n\n'To Canterbury.  In fact, my dear Copperfield, I have entered into\narrangements, by virtue of which I stand pledged and contracted to\nour friend Heep, to assist and serve him in the capacity of - and\nto be - his confidential clerk.'\n\nI stared at Mr. Micawber, who greatly enjoyed my surprise.\n\n'I am bound to state to you,' he said, with an official air, 'that\nthe business habits, and the prudent suggestions, of Mrs. Micawber,\nhave in a great measure conduced to this result.  The gauntlet, to\nwhich Mrs. Micawber referred upon a former occasion, being thrown\ndown in the form of an advertisement, was taken up by my friend\nHeep, and led to a mutual recognition.  Of my friend Heep,' said\nMr. Micawber, 'who is a man of remarkable shrewdness, I desire to\nspeak with all possible respect.  My friend Heep has not fixed the\npositive remuneration at too high a figure, but he has made a great\ndeal, in the way of extrication from the pressure of pecuniary\ndifficulties, contingent on the value of my services; and on the\nvalue of those services I pin my faith.  Such address and\nintelligence as I chance to possess,' said Mr. Micawber, boastfully\ndisparaging himself, with the old genteel air, 'will be devoted to\nmy friend Heep's service.  I have already some acquaintance with\nthe law - as a defendant on civil process - and I shall immediately\napply myself to the Commentaries of one of the most eminent and\nremarkable of our English jurists.  I believe it is unnecessary to\nadd that I allude to Mr. justice Blackstone.'\n\nThese observations, and indeed the greater part of the observations\nmade that evening, were interrupted by Mrs. Micawber's discovering\nthat Master Micawber was sitting on his boots, or holding his head\non with both arms as if he felt it loose, or accidentally kicking\nTraddles under the table, or shuffling his feet over one another,\nor producing them at distances from himself apparently outrageous\nto nature, or lying sideways with his hair among the wine-glasses,\nor developing his restlessness of limb in some other form\nincompatible with the general interests of society; and by Master\nMicawber's receiving those discoveries in a resentful spirit.  I\nsat all the while, amazed by Mr. Micawber's disclosure, and\nwondering what it meant; until Mrs. Micawber resumed the thread of\nthe discourse, and claimed my attention.\n\n'What I particularly request Mr. Micawber to be careful of, is,'\nsaid Mrs. Micawber, 'that he does not, my dear Mr. Copperfield, in\napplying himself to this subordinate branch of the law, place it\nout of his power to rise, ultimately, to the top of the tree.  I am\nconvinced that Mr. Micawber, giving his mind to a profession so\nadapted to his fertile resources, and his flow of language, must\ndistinguish himself.  Now, for example, Mr. Traddles,' said Mrs.\nMicawber, assuming a profound air, 'a judge, or even say a\nChancellor.  Does an individual place himself beyond the pale of\nthose preferments by entering on such an office as Mr. Micawber has\naccepted?'\n\n'My dear,' observed Mr. Micawber - but glancing inquisitively at\nTraddles, too; 'we have time enough before us, for the\nconsideration of those questions.'\n\n'Micawber,' she returned, 'no!  Your mistake in life is, that you\ndo not look forward far enough.  You are bound, in justice to your\nfamily, if not to yourself, to take in at a comprehensive glance\nthe extremest point in the horizon to which your abilities may lead\nyou.'\n\nMr. Micawber coughed, and drank his punch with an air of exceeding\nsatisfaction - still glancing at Traddles, as if he desired to have\nhis opinion.\n\n'Why, the plain state of the case, Mrs. Micawber,' said Traddles,\nmildly breaking the truth to her.  'I mean the real prosaic fact,\nyou know -'\n\n'Just so,' said Mrs. Micawber, 'my dear Mr. Traddles, I wish to be\nas prosaic and literal as possible on a subject of so much\nimportance.'\n\n'- Is,' said Traddles, 'that this branch of the law, even if Mr.\nMicawber were a regular solicitor -'\n\n'Exactly so,' returned Mrs. Micawber.  ('Wilkins, you are\nsquinting, and will not be able to get your eyes back.')\n\n'- Has nothing,' pursued Traddles, 'to do with that.  Only a\nbarrister is eligible for such preferments; and Mr. Micawber could\nnot be a barrister, without being entered at an inn of court as a\nstudent, for five years.'\n\n'Do I follow you?' said Mrs. Micawber, with her most affable air of\nbusiness.  'Do I understand, my dear Mr. Traddles, that, at the\nexpiration of that period, Mr. Micawber would be eligible as a\nJudge or Chancellor?'\n\n'He would be ELIGIBLE,' returned Traddles, with a strong emphasis\non that word.\n\n'Thank you,' said Mrs. Micawber.  'That is quite sufficient.  If\nsuch is the case, and Mr. Micawber forfeits no privilege by\nentering on these duties, my anxiety is set at rest.  I speak,'\nsaid Mrs. Micawber, 'as a female, necessarily; but I have always\nbeen of opinion that Mr. Micawber possesses what I have heard my\npapa call, when I lived at home, the judicial mind; and I hope Mr.\nMicawber is now entering on a field where that mind will develop\nitself, and take a commanding station.'\n\nI quite believe that Mr. Micawber saw himself, in his judicial\nmind's eye, on the woolsack.  He passed his hand complacently over\nhis bald head, and said with ostentatious resignation:\n\n'My dear, we will not anticipate the decrees of fortune.  If I am\nreserved to wear a wig, I am at least prepared, externally,' in\nallusion to his baldness, 'for that distinction.  I do not,' said\nMr. Micawber, 'regret my hair, and I may have been deprived of it\nfor a specific purpose.  I cannot say.  It is my intention, my dear\nCopperfield, to educate my son for the Church; I will not deny that\nI should be happy, on his account, to attain to eminence.'\n\n'For the Church?' said I, still pondering, between whiles, on Uriah\nHeep.\n\n'Yes,' said Mr. Micawber.  'He has a remarkable head-voice, and\nwill commence as a chorister.  Our residence at Canterbury, and our\nlocal connexion, will, no doubt, enable him to take advantage of\nany vacancy that may arise in the Cathedral corps.'\n\nOn looking at Master Micawber again, I saw that he had a certain\nexpression of face, as if his voice were behind his eyebrows; where\nit presently appeared to be, on his singing us (as an alternative\nbetween that and bed) 'The Wood-Pecker tapping'.  After many\ncompliments on this performance, we fell into some general\nconversation; and as I was too full of my desperate intentions to\nkeep my altered circumstances to myself, I made them known to Mr.\nand Mrs. Micawber.  I cannot express how extremely delighted they\nboth were, by the idea of my aunt's being in difficulties; and how\ncomfortable and friendly it made them.\n\nWhen we were nearly come to the last round of the punch, I\naddressed myself to Traddles, and reminded him that we must not\nseparate, without wishing our friends health, happiness, and\nsuccess in their new career.  I begged Mr. Micawber to fill us\nbumpers, and proposed the toast in due form: shaking hands with him\nacross the table, and kissing Mrs. Micawber, to commemorate that\neventful occasion.  Traddles imitated me in the first particular,\nbut did not consider himself a sufficiently old friend to venture\non the second.\n\n'My dear Copperfield,' said Mr. Micawber, rising with one of his\nthumbs in each of his waistcoat pockets, 'the companion of my\nyouth: if I may be allowed the expression - and my esteemed friend\nTraddles: if I may be permitted to call him so - will allow me, on\nthe part of Mrs. Micawber, myself, and our offspring, to thank them\nin the warmest and most uncompromising terms for their good wishes. \nIt may be expected that on the eve of a migration which will\nconsign us to a perfectly new existence,' Mr. Micawber spoke as if\nthey were going five hundred thousand miles, 'I should offer a few\nvaledictory remarks to two such friends as I see before me.  But\nall that I have to say in this way, I have said.  Whatever station\nin society I may attain, through the medium of the learned\nprofession of which I am about to become an unworthy member, I\nshall endeavour not to disgrace, and Mrs. Micawber will be safe to\nadorn.  Under the temporary pressure of pecuniary liabilities,\ncontracted with a view to their immediate liquidation, but\nremaining unliquidated through a combination of circumstances, I\nhave been under the necessity of assuming a garb from which my\nnatural instincts recoil - I allude to spectacles - and possessing\nmyself of a cognomen, to which I can establish no legitimate\npretensions.  All I have to say on that score is, that the cloud\nhas passed from the dreary scene, and the God of Day is once more\nhigh upon the mountain tops.  On Monday next, on the arrival of the\nfour o'clock afternoon coach at Canterbury, my foot will be on my\nnative heath - my name, Micawber!'\n\nMr. Micawber resumed his seat on the close of these remarks, and\ndrank two glasses of punch in grave succession.  He then said with\nmuch solemnity:\n\n'One thing more I have to do, before this separation is complete,\nand that is to perform an act of justice.  My friend Mr. Thomas\nTraddles has, on two several occasions, \"put his name\", if I may\nuse a common expression, to bills of exchange for my accommodation. \nOn the first occasion Mr. Thomas Traddles was left - let me say, in\nshort, in the lurch.  The fulfilment of the second has not yet\narrived.  The amount of the first obligation,' here Mr. Micawber\ncarefully referred to papers, 'was, I believe, twenty-three, four,\nnine and a half, of the second, according to my entry of that\ntransaction, eighteen, six, two.  These sums, united, make a total,\nif my calculation is correct, amounting to forty-one, ten, eleven\nand a half.  My friend Copperfield will perhaps do me the favour to\ncheck that total?'\n\nI did so and found it correct.\n\n'To leave this metropolis,' said Mr. Micawber, 'and my friend Mr.\nThomas Traddles, without acquitting myself of the pecuniary part of\nthis obligation, would weigh upon my mind to an insupportable\nextent.  I have, therefore, prepared for my friend Mr. Thomas\nTraddles, and I now hold in my hand, a document, which accomplishes\nthe desired object.  I beg to hand to my friend Mr. Thomas Traddles\nmy I.O.U.  for forty-one, ten, eleven and a half, and I am happy to\nrecover my moral dignity, and to know that I can once more walk\nerect before my fellow man!'\n\nWith this introduction (which greatly affected him), Mr. Micawber\nplaced his I.O.U.  in the hands of Traddles, and said he wished him\nwell in every relation of life.  I am persuaded, not only that this\nwas quite the same to Mr. Micawber as paying the money, but that\nTraddles himself hardly knew the difference until he had had time\nto think about it.\nMr. Micawber walked so erect before his fellow man, on the strength\nof this virtuous action, that his chest looked half as broad again\nwhen he lighted us downstairs.  We parted with great heartiness on\nboth sides; and when I had seen Traddles to his own door, and was\ngoing home alone, I thought, among the other odd and contradictory\nthings I mused upon, that, slippery as Mr. Micawber was, I was\nprobably indebted to some compassionate recollection he retained of\nme as his boy-lodger, for never having been asked by him for money. \nI certainly should not have had the moral courage to refuse it; and\nI have no doubt he knew that (to his credit be it written), quite\nas well as I did.\n\n\n\nCHAPTER 37\nA LITTLE COLD WATER\n\n\nMy new life had lasted for more than a week, and I was stronger\nthan ever in those tremendous practical resolutions that I felt the\ncrisis required.  I continued to walk extremely fast, and to have\na general idea that I was getting on.  I made it a rule to take as\nmuch out of myself as I possibly could, in my way of doing\neverything to which I applied my energies.  I made a perfect victim\nof myself.  I even entertained some idea of putting myself on a\nvegetable diet, vaguely conceiving that, in becoming a\ngraminivorous animal, I should sacrifice to Dora.\n\nAs yet, little Dora was quite unconscious of my desperate firmness,\notherwise than as my letters darkly shadowed it forth.  But another\nSaturday came, and on that Saturday evening she was to be at Miss\nMills's; and when Mr. Mills had gone to his whist-club (telegraphed\nto me in the street, by a bird-cage in the drawing-room middle\nwindow), I was to go there to tea.\n\nBy this time, we were quite settled down in Buckingham Street,\nwhere Mr. Dick continued his copying in a state of absolute\nfelicity.  My aunt had obtained a signal victory over Mrs. Crupp,\nby paying her off, throwing the first pitcher she planted on the\nstairs out of window, and protecting in person, up and down the\nstaircase, a supernumerary whom she engaged from the outer world. \nThese vigorous measures struck such terror to the breast of Mrs.\nCrupp, that she subsided into her own kitchen, under the impression\nthat my aunt was mad.  My aunt being supremely indifferent to Mrs.\nCrupp's opinion and everybody else's, and rather favouring than\ndiscouraging the idea, Mrs. Crupp, of late the bold, became within\na few days so faint-hearted, that rather than encounter my aunt\nupon the staircase, she would endeavour to hide her portly form\nbehind doors - leaving visible, however, a wide margin of flannel\npetticoat - or would shrink into dark corners.  This gave my aunt\nsuch unspeakable satisfaction, that I believe she took a delight in\nprowling up and down, with her bonnet insanely perched on the top\nof her head, at times when Mrs. Crupp was likely to be in the way.\n\nMy aunt, being uncommonly neat and ingenious, made so many little\nimprovements in our domestic arrangements, that I seemed to be\nricher instead of poorer.  Among the rest, she converted the pantry\ninto a dressing-room for me; and purchased and embellished a\nbedstead for my occupation, which looked as like a bookcase in the\ndaytime as a bedstead could.  I was the object of her constant\nsolicitude; and my poor mother herself could not have loved me\nbetter, or studied more how to make me happy.\n\nPeggotty had considered herself highly privileged in being allowed\nto participate in these labours; and, although she still retained\nsomething of her old sentiment of awe in reference to my aunt, had\nreceived so many marks of encouragement and confidence, that they\nwere the best friends possible.  But the time had now come (I am\nspeaking of the Saturday when I was to take tea at Miss Mills's)\nwhen it was necessary for her to return home, and enter on the\ndischarge of the duties she had undertaken in behalf of Ham.  'So\ngood-bye, Barkis,' said my aunt, 'and take care of yourself!  I am\nsure I never thought I could be sorry to lose you!'\n\nI took Peggotty to the coach office and saw her off.  She cried at\nparting, and confided her brother to my friendship as Ham had done. \nWe had heard nothing of him since he went away, that sunny\nafternoon.\n\n'And now, my own dear Davy,' said Peggotty, 'if, while you're a\nprentice, you should want any money to spend; or if, when you're\nout of your time, my dear, you should want any to set you up (and\nyou must do one or other, or both, my darling); who has such a good\nright to ask leave to lend it you, as my sweet girl's own old\nstupid me!'\n\nI was not so savagely independent as to say anything in reply, but\nthat if ever I borrowed money of anyone, I would borrow it of her. \nNext to accepting a large sum on the spot, I believe this gave\nPeggotty more comfort than anything I could have done.\n\n'And, my dear!' whispered Peggotty, 'tell the pretty little angel\nthat I should so have liked to see her, only for a minute!  And\ntell her that before she marries my boy, I'll come and make your\nhouse so beautiful for you, if you'll let me!'\n\nI declared that nobody else should touch it; and this gave Peggotty\nsuch delight that she went away in good spirits.\n\nI fatigued myself as much as I possibly could in the Commons all\nday, by a variety of devices, and at the appointed time in the\nevening repaired to Mr. Mills's street.  Mr. Mills, who was a\nterrible fellow to fall asleep after dinner, had not yet gone out,\nand there was no bird-cage in the middle window.\n\nHe kept me waiting so long, that I fervently hoped the Club would\nfine him for being late.  At last he came out; and then I saw my\nown Dora hang up the bird-cage, and peep into the balcony to look\nfor me, and run in again when she saw I was there, while Jip\nremained behind, to bark injuriously at an immense butcher's dog in\nthe street, who could have taken him like a pill.\n\nDora came to the drawing-room door to meet me; and Jip came\nscrambling out, tumbling over his own growls, under the impression\nthat I was a Bandit; and we all three went in, as happy and loving\nas could be.  I soon carried desolation into the bosom of our joys\n- not that I meant to do it, but that I was so full of the subject\n- by asking Dora, without the smallest preparation, if she could\nlove a beggar?\n\nMy pretty, little, startled Dora!  Her only association with the\nword was a yellow face and a nightcap, or a pair of crutches, or a\nwooden leg, or a dog with a decanter-stand in his mouth, or\nsomething of that kind; and she stared at me with the most\ndelightful wonder.\n\n'How can you ask me anything so foolish?' pouted Dora.  'Love a\nbeggar!'\n\n'Dora, my own dearest!' said I.  'I am a beggar!'\n\n'How can you be such a silly thing,' replied Dora, slapping my\nhand, 'as to sit there, telling such stories?  I'll make Jip bite\nyou!'\n\nHer childish way was the most delicious way in the world to me, but\nit was necessary to be explicit, and I solemnly repeated:\n\n'Dora, my own life, I am your ruined David!'\n\n'I declare I'll make Jip bite you!' said Dora, shaking her curls,\n'if you are so ridiculous.'\n\nBut I looked so serious, that Dora left off shaking her curls, and\nlaid her trembling little hand upon my shoulder, and first looked\nscared and anxious, then began to cry.  That was dreadful.  I fell\nupon my knees before the sofa, caressing her, and imploring her not\nto rend my heart; but, for some time, poor little Dora did nothing\nbut exclaim Oh dear!  Oh dear!  And oh, she was so frightened!  And\nwhere was Julia Mills!  And oh, take her to Julia Mills, and go\naway, please! until I was almost beside myself.\n\nAt last, after an agony of supplication and protestation, I got\nDora to look at me, with a horrified expression of face, which I\ngradually soothed until it was only loving, and her soft, pretty\ncheek was lying against mine.  Then I told her, with my arms\nclasped round her, how I loved her, so dearly, and so dearly; how\nI felt it right to offer to release her from her engagement,\nbecause now I was poor; how I never could bear it, or recover it,\nif I lost her; how I had no fears of poverty, if she had none, my\narm being nerved and my heart inspired by her; how I was already\nworking with a courage such as none but lovers knew; how I had\nbegun to be practical, and look into the future; how a crust well\nearned was sweeter far than a feast inherited; and much more to the\nsame purpose, which I delivered in a burst of passionate eloquence\nquite surprising to myself, though I had been thinking about it,\nday and night, ever since my aunt had astonished me.\n\n'Is your heart mine still, dear Dora?' said I, rapturously, for I\nknew by her clinging to me that it was.\n\n'Oh, yes!' cried Dora.  'Oh, yes, it's all yours.  Oh, don't be\ndreadful!'\n\nI dreadful!  To Dora!\n\n'Don't talk about being poor, and working hard!' said Dora,\nnestling closer to me.  'Oh, don't, don't!'\n\n'My dearest love,' said I, 'the crust well-earned -'\n\n'Oh, yes; but I don't want to hear any more about crusts!' said\nDora.  'And Jip must have a mutton-chop every day at twelve, or\nhe'll die.'\n\nI was charmed with her childish, winning way.  I fondly explained\nto Dora that Jip should have his mutton-chop with his accustomed\nregularity.  I drew a picture of our frugal home, made independent\nby my labour - sketching in the little house I had seen at\nHighgate, and my aunt in her room upstairs.\n\n'I am not dreadful now, Dora?' said I, tenderly.\n\n'Oh, no, no!' cried Dora.  'But I hope your aunt will keep in her\nown room a good deal.  And I hope she's not a scolding old thing!'\n\nIf it were possible for me to love Dora more than ever, I am sure\nI did.  But I felt she was a little impracticable.  It damped my\nnew-born ardour, to find that ardour so difficult of communication\nto her.  I made another trial.  When she was quite herself again,\nand was curling Jip's ears, as he lay upon her lap, I became grave,\nand said:\n\n'My own!  May I mention something?'\n\n'Oh, please don't be practical!' said Dora, coaxingly.  'Because it\nfrightens me so!'\n\n'Sweetheart!' I returned; 'there is nothing to alarm you in all\nthis.  I want you to think of it quite differently.  I want to make\nit nerve you, and inspire you, Dora!'\n\n'Oh, but that's so shocking!' cried Dora.\n\n'My love, no.  Perseverance and strength of character will enable\nus to bear much worse things.'\n'But I haven't got any strength at all,' said Dora, shaking her\ncurls.  'Have I, Jip?  Oh, do kiss Jip, and be agreeable!'\n\nIt was impossible to resist kissing Jip, when she held him up to me\nfor that purpose, putting her own bright, rosy little mouth into\nkissing form, as she directed the operation, which she insisted\nshould be performed symmetrically, on the centre of his nose.  I\ndid as she bade me - rewarding myself afterwards for my obedience\n- and she charmed me out of my graver character for I don't know\nhow long.\n\n'But, Dora, my beloved!' said I, at last resuming it; 'I was going\nto mention something.'\n\nThe judge of the Prerogative Court might have fallen in love with\nher, to see her fold her little hands and hold them up, begging and\npraying me not to be dreadful any more.\n\n'Indeed I am not going to be, my darling!' I assured her.  'But,\nDora, my love, if you will sometimes think, - not despondingly, you\nknow; far from that! - but if you will sometimes think - just to\nencourage yourself - that you are engaged to a poor man -'\n\n'Don't, don't!  Pray don't!' cried Dora.  'It's so very dreadful!'\n\n'My soul, not at all!' said I, cheerfully.  'If you will sometimes\nthink of that, and look about now and then at your papa's\nhousekeeping, and endeavour to acquire a little habit - of\naccounts, for instance -'\n\nPoor little Dora received this suggestion with something that was\nhalf a sob and half a scream.\n\n'- It would be so useful to us afterwards,' I went on.  'And if you\nwould promise me to read a little - a little Cookery Book that I\nwould send you, it would be so excellent for both of us.  For our\npath in life, my Dora,' said I, warming with the subject, 'is stony\nand rugged now, and it rests with us to smooth it.  We must fight\nour way onward.  We must be brave.  There are obstacles to be met,\nand we must meet, and crush them!'\n\nI was going on at a great rate, with a clenched hand, and a most\nenthusiastic countenance; but it was quite unnecessary to proceed. \nI had said enough.  I had done it again.  Oh, she was so\nfrightened!  Oh, where was Julia Mills!  Oh, take her to Julia\nMills, and go away, please!  So that, in short, I was quite\ndistracted, and raved about the drawing-room.\n\nI thought I had killed her, this time.  I sprinkled water on her\nface.  I went down on my knees.  I plucked at my hair.  I denounced\nmyself as a remorseless brute and a ruthless beast.  I implored her\nforgiveness.  I besought her to look up.  I ravaged Miss Mills's\nwork-box for a smelling-bottle, and in my agony of mind applied an\nivory needle-case instead, and dropped all the needles over Dora.\nI shook my fists at Jip, who was as frantic as myself.  I did every\nwild extravagance that could be done, and was a long way beyond the\nend of my wits when Miss Mills came into the room.\n\n'Who has done this?' exclaimed Miss Mills, succouring her friend.\n\nI replied, 'I, Miss Mills! I have done it!  Behold the destroyer!'\n- or words to that effect - and hid my face from the light, in the\nsofa cushion.\n\nAt first Miss Mills thought it was a quarrel, and that we were\nverging on the Desert of Sahara; but she soon found out how matters\nstood, for my dear affectionate little Dora, embracing her, began\nexclaiming that I was 'a poor labourer'; and then cried for me, and\nembraced me, and asked me would I let her give me all her money to\nkeep, and then fell on Miss Mills's neck, sobbing as if her tender\nheart were broken.\n\nMiss Mills must have been born to be a blessing to us.  She\nascertained from me in a few words what it was all about, comforted\nDora, and gradually convinced her that I was not a labourer - from\nmy manner of stating the case I believe Dora concluded that I was\na navigator, and went balancing myself up and down a plank all day\nwith a wheelbarrow - and so brought us together in peace.  When we\nwere quite composed, and Dora had gone up-stairs to put some\nrose-water to her eyes, Miss Mills rang for tea.  In the ensuing\ninterval, I told Miss Mills that she was evermore my friend, and\nthat my heart must cease to vibrate ere I could forget her\nsympathy.\n\nI then expounded to Miss Mills what I had endeavoured, so very\nunsuccessfully, to expound to Dora.  Miss Mills replied, on general\nprinciples, that the Cottage of content was better than the Palace\nof cold splendour, and that where love was, all was.\n\nI said to Miss Mills that this was very true, and who should know\nit better than I, who loved Dora with a love that never mortal had\nexperienced yet?  But on Miss Mills observing, with despondency,\nthat it were well indeed for some hearts if this were so, I\nexplained that I begged leave to restrict the observation to\nmortals of the masculine gender.\n\nI then put it to Miss Mills, to say whether she considered that\nthere was or was not any practical merit in the suggestion I had\nbeen anxious to make, concerning the accounts, the housekeeping,\nand the Cookery Book?\n\nMiss Mills, after some consideration, thus replied:\n\n'Mr. Copperfield, I will be plain with you.  Mental suffering and\ntrial supply, in some natures, the place of years, and I will be as\nplain with you as if I were a Lady Abbess.  No.  The suggestion is\nnot appropriate to our Dora.  Our dearest Dora is a favourite child\nof nature.  She is a thing of light, and airiness, and joy.  I am\nfree to confess that if it could be done, it might be well, but -'\nAnd Miss Mills shook her head.\n\nI was encouraged by this closing admission on the part of Miss\nMills to ask her, whether, for Dora's sake, if she had any\nopportunity of luring her attention to such preparations for an\nearnest life, she would avail herself of it?  Miss Mills replied in\nthe affirmative so readily, that I further asked her if she would\ntake charge of the Cookery Book; and, if she ever could insinuate\nit upon Dora's acceptance, without frightening her, undertake to do\nme that crowning service.  Miss Mills accepted this trust, too; but\nwas not sanguine.\n\nAnd Dora returned, looking such a lovely little creature, that I\nreally doubted whether she ought to be troubled with anything so\nordinary.  And she loved me so much, and was so captivating\n(particularly when she made Jip stand on his hind legs for toast,\nand when she pretended to hold that nose of his against the hot\nteapot for punishment because he wouldn't), that I felt like a sort\nof Monster who had got into a Fairy's bower, when I thought of\nhaving frightened her, and made her cry.\n\nAfter tea we had the guitar; and Dora sang those same dear old\nFrench songs about the impossibility of ever on any account leaving\noff dancing, La ra la, La ra la, until I felt a much greater\nMonster than before.\n\nWe had only one check to our pleasure, and that happened a little\nwhile before I took my leave, when, Miss Mills chancing to make\nsome allusion to tomorrow morning, I unluckily let out that, being\nobliged to exert myself now, I got up at five o'clock.  Whether\nDora had any idea that I was a Private Watchman, I am unable to\nsay; but it made a great impression on her, and she neither played\nnor sang any more.\n\nIt was still on her mind when I bade her adieu; and she said to me,\nin her pretty coaxing way - as if I were a doll, I used to think:\n\n'Now don't get up at five o'clock, you naughty boy.  It's so\nnonsensical!'\n\n'My love,' said I, 'I have work to do.'\n\n'But don't do it!' returned Dora.  'Why should you?'\n\nIt was impossible to say to that sweet little surprised face,\notherwise than lightly and playfully, that we must work to live.\n\n'Oh!  How ridiculous!' cried Dora.\n\n'How shall we live without, Dora?' said I.\n\n'How?  Any how!' said Dora.\n\nShe seemed to think she had quite settled the question, and gave me\nsuch a triumphant little kiss, direct from her innocent heart, that\nI would hardly have put her out of conceit with her answer, for a\nfortune.\n\nWell!  I loved her, and I went on loving her, most absorbingly,\nentirely, and completely.  But going on, too, working pretty hard,\nand busily keeping red-hot all the irons I now had in the fire, I\nwould sit sometimes of a night, opposite my aunt, thinking how I\nhad frightened Dora that time, and how I could best make my way\nwith a guitar-case through the forest of difficulty, until I used\nto fancy that my head was turning quite grey.\n\n\n\nCHAPTER 38\nA DISSOLUTION OF PARTNERSHIP\n\n\nI did not allow my resolution, with respect to the Parliamentary\nDebates, to cool.  It was one of the irons I began to heat\nimmediately, and one of the irons I kept hot, and hammered at, with\na perseverance I may honestly admire.  I bought an approved scheme\nof the noble art and mystery of stenography (which cost me ten and\nsixpence); and plunged into a sea of perplexity that brought me, in\na few weeks, to the confines of distraction.  The changes that were\nrung upon dots, which in such a position meant such a thing, and in\nsuch another position something else, entirely different; the\nwonderful vagaries that were played by circles; the unaccountable\nconsequences that resulted from marks like flies' legs; the\ntremendous effects of a curve in a wrong place; not only troubled\nmy waking hours, but reappeared before me in my sleep.  When I had\ngroped my way, blindly, through these difficulties, and had\nmastered the alphabet, which was an Egyptian Temple in itself,\nthere then appeared a procession of new horrors, called arbitrary\ncharacters; the most despotic characters I have ever known; who\ninsisted, for instance, that a thing like the beginning of a\ncobweb, meant expectation, and that a pen-and-ink sky-rocket, stood\nfor disadvantageous.  When I had fixed these wretches in my mind,\nI found that they had driven everything else out of it; then,\nbeginning again, I forgot them; while I was picking them up, I\ndropped the other fragments of the system; in short, it was almost\nheart-breaking.\n\nIt might have been quite heart-breaking, but for Dora, who was the\nstay and anchor of my tempest-driven bark.  Every scratch in the\nscheme was a gnarled oak in the forest of difficulty, and I went on\ncutting them down, one after another, with such vigour, that in\nthree or four months I was in a condition to make an experiment on\none of our crack speakers in the Commons.  Shall I ever forget how\nthe crack speaker walked off from me before I began, and left my\nimbecile pencil staggering about the paper as if it were in a fit!\n\nThis would not do, it was quite clear.  I was flying too high, and\nshould never get on, so.  I resorted to Traddles for advice; who\nsuggested that he should dictate speeches to me, at a pace, and\nwith occasional stoppages, adapted to my weakness.  Very grateful\nfor this friendly aid, I accepted the proposal; and night after\nnight, almost every night, for a long time, we had a sort of\nPrivate Parliament in Buckingham Street, after I came home from the\nDoctor's.\n\nI should like to see such a Parliament anywhere else!  My aunt and\nMr. Dick represented the Government or the Opposition (as the case\nmight be), and Traddles, with the assistance of Enfield's Speakers,\nor a volume of parliamentary orations, thundered astonishing\ninvectives against them.  Standing by the table, with his finger in\nthe page to keep the place, and his right arm flourishing above his\nhead, Traddles, as Mr. Pitt, Mr. Fox, Mr. Sheridan, Mr. Burke, Lord\nCastlereagh, Viscount Sidmouth, or Mr. Canning, would work himself\ninto the most violent heats, and deliver the most withering\ndenunciations of the profligacy and corruption of my aunt and Mr.\nDick; while I used to sit, at a little distance, with my notebook\non my knee, fagging after him with all my might and main.  The\ninconsistency and recklessness of Traddles were not to be exceeded\nby any real politician.  He was for any description of policy, in\nthe compass of a week; and nailed all sorts of colours to every\ndenomination of mast.  My aunt, looking very like an immovable\nChancellor of the Exchequer, would occasionally throw in an\ninterruption or two, as 'Hear!' or 'No!' or 'Oh!' when the text\nseemed to require it: which was always a signal to Mr. Dick (a\nperfect country gentleman) to follow lustily with the same cry. \nBut Mr. Dick got taxed with such things in the course of his\nParliamentary career, and was made responsible for such awful\nconsequences, that he became uncomfortable in his mind sometimes. \nI believe he actually began to be afraid he really had been doing\nsomething, tending to the annihilation of the British constitution,\nand the ruin of the country.\n\nOften and often we pursued these debates until the clock pointed to\nmidnight, and the candles were burning down.  The result of so much\ngood practice was, that by and by I began to keep pace with\nTraddles pretty well, and should have been quite triumphant if I\nhad had the least idea what my notes were about.  But, as to\nreading them after I had got them, I might as well have copied the\nChinese inscriptions of an immense collection of tea-chests, or the\ngolden characters on all the great red and green bottles in the\nchemists' shops!\n\nThere was nothing for it, but to turn back and begin all over\nagain.  It was very hard, but I turned back, though with a heavy\nheart, and began laboriously and methodically to plod over the same\ntedious ground at a snail's pace; stopping to examine minutely\nevery speck in the way, on all sides, and making the most desperate\nefforts to know these elusive characters by sight wherever I met\nthem.  I was always punctual at the office; at the Doctor's too:\nand I really did work, as the common expression is, like a\ncart-horse.\nOne day, when I went to the Commons as usual, I found Mr. Spenlow\nin the doorway looking extremely grave, and talking to himself.  As\nhe was in the habit of complaining of pains in his head - he had\nnaturally a short throat, and I do seriously believe he\nover-starched himself - I was at first alarmed by the idea that he\nwas not quite right in that direction; but he soon relieved my\nuneasiness.\n\nInstead of returning my 'Good morning' with his usual affability,\nhe looked at me in a distant, ceremonious manner, and coldly\nrequested me to accompany him to a certain coffee-house, which, in\nthose days, had a door opening into the Commons, just within the\nlittle archway in St. Paul's Churchyard.  I complied, in a very\nuncomfortable state, and with a warm shooting all over me, as if my\napprehensions were breaking out into buds.  When I allowed him to\ngo on a little before, on account of the narrowness of the way, I\nobserved that he carried his head with a lofty air that was\nparticularly unpromising; and my mind misgave me that he had found\nout about my darling Dora.\n\nIf I had not guessed this, on the way to the coffee-house, I could\nhardly have failed to know what was the matter when I followed him\ninto an upstairs room, and found Miss Murdstone there, supported by\na background of sideboard, on which were several inverted tumblers\nsustaining lemons, and two of those extraordinary boxes, all\ncorners and flutings, for sticking knives and forks in, which,\nhappily for mankind, are now obsolete.\n\nMiss Murdstone gave me her chilly finger-nails, and sat severely\nrigid.  Mr. Spenlow shut the door, motioned me to a chair, and\nstood on the hearth-rug in front of the fireplace.\n\n'Have the goodness to show Mr. Copperfield,' said Mr. Spenlow, what\nyou have in your reticule, Miss Murdstone.'\n\nI believe it was the old identical steel-clasped reticule of my\nchildhood, that shut up like a bite.  Compressing her lips, in\nsympathy with the snap, Miss Murdstone opened it - opening her\nmouth a little at the same time - and produced my last letter to\nDora, teeming with expressions of devoted affection.\n\n'I believe that is your writing, Mr. Copperfield?' said Mr.\nSpenlow.\n\nI was very hot, and the voice I heard was very unlike mine, when I\nsaid, 'It is, sir!'\n\n'If I am not mistaken,' said Mr. Spenlow, as Miss Murdstone brought\na parcel of letters out of her reticule, tied round with the\ndearest bit of blue ribbon, 'those are also from your pen, Mr.\nCopperfield?'\n\nI took them from her with a most desolate sensation; and, glancing\nat such phrases at the top, as 'My ever dearest and own Dora,' 'My\nbest beloved angel,' 'My blessed one for ever,' and the like,\nblushed deeply, and inclined my head.\n\n'No, thank you!' said Mr. Spenlow, coldly, as I mechanically\noffered them back to him.  'I will not deprive you of them.  Miss\nMurdstone, be so good as to proceed!'\n\nThat gentle creature, after a moment's thoughtful survey of the\ncarpet, delivered herself with much dry unction as follows.\n\n'I must confess to having entertained my suspicions of Miss\nSpenlow, in reference to David Copperfield, for some time.  I\nobserved Miss Spenlow and David Copperfield, when they first met;\nand the impression made upon me then was not agreeable.  The\ndepravity of the human heart is such -'\n\n'You will oblige me, ma'am,' interrupted Mr. Spenlow, 'by confining\nyourself to facts.'\n\nMiss Murdstone cast down her eyes, shook her head as if protesting\nagainst this unseemly interruption, and with frowning dignity\nresumed:\n\n'Since I am to confine myself to facts, I will state them as dryly\nas I can.  Perhaps that will be considered an acceptable course of\nproceeding.  I have already said, sir, that I have had my\nsuspicions of Miss Spenlow, in reference to David Copperfield, for\nsome time.  I have frequently endeavoured to find decisive\ncorroboration of those suspicions, but without effect.  I have\ntherefore forborne to mention them to Miss Spenlow's father';\nlooking severely at him- 'knowing how little disposition there\nusually is in such cases, to acknowledge the conscientious\ndischarge of duty.'\n\nMr. Spenlow seemed quite cowed by the gentlemanly sternness of Miss\nMurdstone's manner, and deprecated her severity with a conciliatory\nlittle wave of his hand.\n\n'On my return to Norwood, after the period of absence occasioned by\nmy brother's marriage,' pursued Miss Murdstone in a disdainful\nvoice, 'and on the return of Miss Spenlow from her visit to her\nfriend Miss Mills, I imagined that the manner of Miss Spenlow gave\nme greater occasion for suspicion than before.  Therefore I watched\nMiss Spenlow closely.'\n\nDear, tender little Dora, so unconscious of this Dragon's eye!\n\n'Still,' resumed Miss Murdstone, 'I found no proof until last\nnight.  It appeared to me that Miss Spenlow received too many\nletters from her friend Miss Mills; but Miss Mills being her friend\nwith her father's full concurrence,' another telling blow at Mr.\nSpenlow, 'it was not for me to interfere.  If I may not be\npermitted to allude to the natural depravity of the human heart, at\nleast I may - I must - be permitted, so far to refer to misplaced\nconfidence.'\n\nMr. Spenlow apologetically murmured his assent.\n\n'Last evening after tea,' pursued Miss Murdstone, 'I observed the\nlittle dog starting, rolling, and growling about the drawing-room,\nworrying something.  I said to Miss Spenlow, \"Dora, what is that\nthe dog has in his mouth?  It's paper.\" Miss Spenlow immediately\nput her hand to her frock, gave a sudden cry, and ran to the dog. \nI interposed, and said, \"Dora, my love, you must permit me.\" '\n\nOh Jip, miserable Spaniel, this wretchedness, then, was your work!\n\n'Miss Spenlow endeavoured,' said Miss Murdstone, 'to bribe me with\nkisses, work-boxes, and small articles of jewellery - that, of\ncourse, I pass over.  The little dog retreated under the sofa on my\napproaching him, and was with great difficulty dislodged by the\nfire-irons.  Even when dislodged, he still kept the letter in his\nmouth; and on my endeavouring to take it from him, at the imminent\nrisk of being bitten, he kept it between his teeth so\npertinaciously as to suffer himself to be held suspended in the air\nby means of the document.  At length I obtained possession of it. \nAfter perusing it, I taxed Miss Spenlow with having many such\nletters in her possession; and ultimately obtained from her the\npacket which is now in David Copperfield's hand.'\n\nHere she ceased; and snapping her reticule again, and shutting her\nmouth, looked as if she might be broken, but could never be bent.\n\n'You have heard Miss Murdstone,' said Mr. Spenlow, turning to me. \n'I beg to ask, Mr. Copperfield, if you have anything to say in\nreply?'\n\nThe picture I had before me, of the beautiful little treasure of my\nheart, sobbing and crying all night - of her being alone,\nfrightened, and wretched, then - of her having so piteously begged\nand prayed that stony-hearted woman to forgive her - of her having\nvainly offered her those kisses, work-boxes, and trinkets - of her\nbeing in such grievous distress, and all for me - very much\nimpaired the little dignity I had been able to muster.  I am afraid\nI was in a tremulous state for a minute or so, though I did my best\nto disguise it.\n\n'There is nothing I can say, sir,' I returned, 'except that all the\nblame is mine.  Dora -'\n\n'Miss Spenlow, if you please,' said her father, majestically.\n\n'- was induced and persuaded by me,' I went on, swallowing that\ncolder designation, 'to consent to this concealment, and I bitterly\nregret it.'\n\n'You are very much to blame, sir,' said Mr. Spenlow, walking to and\nfro upon the hearth-rug, and emphasizing what he said with his\nwhole body instead of his head, on account of the stiffness of his\ncravat and spine.  'You have done a stealthy and unbecoming action,\nMr. Copperfield.  When I take a gentleman to my house, no matter\nwhether he is nineteen, twenty-nine, or ninety, I take him there in\na spirit of confidence.  If he abuses my confidence, he commits a\ndishonourable action, Mr. Copperfield.'\n\n'I feel it, sir, I assure you,' I returned.  'But I never thought\nso, before.  Sincerely, honestly, indeed, Mr. Spenlow, I never\nthought so, before.  I love Miss Spenlow to that extent -'\n\n'Pooh! nonsense!' said Mr. Spenlow, reddening.  'Pray don't tell me\nto my face that you love my daughter, Mr. Copperfield!'\n\n'Could I defend my conduct if I did not, sir?' I returned, with all\nhumility.\n\n'Can you defend your conduct if you do, sir?' said Mr. Spenlow,\nstopping short upon the hearth-rug.  'Have you considered your\nyears, and my daughter's years, Mr. Copperfield?  Have you\nconsidered what it is to undermine the confidence that should\nsubsist between my daughter and myself?  Have you considered my\ndaughter's station in life, the projects I may contemplate for her\nadvancement, the testamentary intentions I may have with reference\nto her?  Have you considered anything, Mr. Copperfield?'\n\n'Very little, sir, I am afraid;' I answered, speaking to him as\nrespectfully and sorrowfully as I felt; 'but pray believe me, I\nhave considered my own worldly position.  When I explained it to\nyou, we were already engaged -'\n\n'I BEG,' said Mr. Spenlow, more like Punch than I had ever seen\nhim, as he energetically struck one hand upon the other - I could\nnot help noticing that even in my despair; 'that YOU Will NOT talk\nto me of engagements, Mr. Copperfield!'\n\nThe otherwise immovable Miss Murdstone laughed contemptuously in\none short syllable.\n\n'When I explained my altered position to you, sir,' I began again,\nsubstituting a new form of expression for what was so unpalatable\nto him, 'this concealment, into which I am so unhappy as to have\nled Miss Spenlow, had begun.  Since I have been in that altered\nposition, I have strained every nerve, I have exerted every energy,\nto improve it.  I am sure I shall improve it in time.  Will you\ngrant me time - any length of time?  We are both so young, sir, -'\n\n'You are right,' interrupted Mr. Spenlow, nodding his head a great\nmany times, and frowning very much, 'you are both very young.  It's\nall nonsense.  Let there be an end of the nonsense.  Take away\nthose letters, and throw them in the fire.  Give me Miss Spenlow's\nletters to throw in the fire; and although our future intercourse\nmust, you are aware, be restricted to the Commons here, we will\nagree to make no further mention of the past.  Come, Mr.\nCopperfield, you don't want sense; and this is the sensible\ncourse.'\n\nNo.  I couldn't think of agreeing to it.  I was very sorry, but\nthere was a higher consideration than sense.  Love was above all\nearthly considerations, and I loved Dora to idolatry, and Dora\nloved me.  I didn't exactly say so; I softened it down as much as\nI could; but I implied it, and I was resolute upon it.  I don't\nthink I made myself very ridiculous, but I know I was resolute.\n\n'Very well, Mr. Copperfield,' said Mr. Spenlow, 'I must try my\ninfluence with my daughter.'\n\nMiss Murdstone, by an expressive sound, a long drawn respiration,\nwhich was neither a sigh nor a moan, but was like both, gave it as\nher opinion that he should have done this at first.\n\n'I must try,' said Mr. Spenlow, confirmed by this support, 'my\ninfluence with my daughter.  Do you decline to take those letters,\nMr. Copperfield?' For I had laid them on the table.\n\nYes.  I told him I hoped he would not think it wrong, but I\ncouldn't possibly take them from Miss Murdstone.\n\n'Nor from me?' said Mr. Spenlow.\n\nNo, I replied with the profoundest respect; nor from him.\n\n'Very well!' said Mr. Spenlow.\n\nA silence succeeding, I was undecided whether to go or stay.  At\nlength I was moving quietly towards the door, with the intention of\nsaying that perhaps I should consult his feelings best by\nwithdrawing: when he said, with his hands in his coat pockets, into\nwhich it was as much as he could do to get them; and with what I\nshould call, upon the whole, a decidedly pious air:\n\n'You are probably aware, Mr. Copperfield, that I am not altogether\ndestitute of worldly possessions, and that my daughter is my\nnearest and dearest relative?'\n\nI hurriedly made him a reply to the effect, that I hoped the error\ninto which I had been betrayed by the desperate nature of my love,\ndid not induce him to think me mercenary too?\n\n'I don't allude to the matter in that light,' said Mr. Spenlow. \n'It would be better for yourself, and all of us, if you WERE\nmercenary, Mr. Copperfield - I mean, if you were more discreet and\nless influenced by all this youthful nonsense.  No.  I merely say,\nwith quite another view, you are probably aware I have some\nproperty to bequeath to my child?'\n\nI certainly supposed so.\n\n'And you can hardly think,' said Mr. Spenlow, 'having experience of\nwhat we see, in the Commons here, every day, of the various\nunaccountable and negligent proceedings of men, in respect of their\ntestamentary arrangements - of all subjects, the one on which\nperhaps the strangest revelations of human inconsistency are to be\nmet with - but that mine are made?'\n\nI inclined my head in acquiescence.\n\n'I should not allow,' said Mr. Spenlow, with an evident increase of\npious sentiment, and slowly shaking his head as he poised himself\nupon his toes and heels alternately, 'my suitable provision for my\nchild to be influenced by a piece of youthful folly like the\npresent.  It is mere folly.  Mere nonsense.  In a little while, it\nwill weigh lighter than any feather.  But I might - I might - if\nthis silly business were not completely relinquished altogether, be\ninduced in some anxious moment to guard her from, and surround her\nwith protections against, the consequences of any foolish step in\nthe way of marriage.  Now, Mr. Copperfield, I hope that you will\nnot render it necessary for me to open, even for a quarter of an\nhour, that closed page in the book of life, and unsettle, even for\na quarter of an hour, grave affairs long since composed.'\n\nThere was a serenity, a tranquillity, a calm sunset air about him,\nwhich quite affected me.  He was so peaceful and resigned - clearly\nhad his affairs in such perfect train, and so systematically wound\nup - that he was a man to feel touched in the contemplation of.  I\nreally think I saw tears rise to his eyes, from the depth of his\nown feeling of all this.\n\nBut what could I do?  I could not deny Dora and my own heart.  When\nhe told me I had better take a week to consider of what he had\nsaid, how could I say I wouldn't take a week, yet how could I fail\nto know that no amount of weeks could influence such love as mine?\n\n'In the meantime, confer with Miss Trotwood, or with any person\nwith any knowledge of life,' said Mr. Spenlow, adjusting his cravat\nwith both hands.  'Take a week, Mr. Copperfield.'\n\nI submitted; and, with a countenance as expressive as I was able to\nmake it of dejected and despairing constancy, came out of the room. \nMiss Murdstone's heavy eyebrows followed me to the door - I say her\neyebrows rather than her eyes, because they were much more\nimportant in her face - and she looked so exactly as she used to\nlook, at about that hour of the morning, in our parlour at\nBlunderstone, that I could have fancied I had been breaking down in\nmy lessons again, and that the dead weight on my mind was that\nhorrible old spelling-book, with oval woodcuts, shaped, to my\nyouthful fancy, like the glasses out of spectacles.\n\nWhen I got to the office, and, shutting out old Tiffey and the rest\nof them with my hands, sat at my desk, in my own particular nook,\nthinking of this earthquake that had taken place so unexpectedly,\nand in the bitterness of my spirit cursing Jip, I fell into such a\nstate of torment about Dora, that I wonder I did not take up my hat\nand rush insanely to Norwood.  The idea of their frightening her,\nand making her cry, and of my not being there to comfort her, was\nso excruciating, that it impelled me to write a wild letter to Mr.\nSpenlow, beseeching him not to visit upon her the consequences of\nmy awful destiny.  I implored him to spare her gentle nature - not\nto crush a fragile flower - and addressed him generally, to the\nbest of my remembrance, as if, instead of being her father, he had\nbeen an Ogre, or the Dragon of Wantley.3 This letter I sealed and\nlaid upon his desk before he returned; and when he came in, I saw\nhim, through the half-opened door of his room, take it up and read\nit.\n\nHe said nothing about it all the morning; but before he went away\nin the afternoon he called me in, and told me that I need not make\nmyself at all uneasy about his daughter's happiness.  He had\nassured her, he said, that it was all nonsense; and he had nothing\nmore to say to her.  He believed he was an indulgent father (as\nindeed he was), and I might spare myself any solicitude on her\naccount.\n\n'You may make it necessary, if you are foolish or obstinate, Mr.\nCopperfield,' he observed, 'for me to send my daughter abroad\nagain, for a term; but I have a better opinion of you.  I hope you\nwill be wiser than that, in a few days.  As to Miss Murdstone,' for\nI had alluded to her in the letter, 'I respect that lady's\nvigilance, and feel obliged to her; but she has strict charge to\navoid the subject.  All I desire, Mr. Copperfield, is, that it\nshould be forgotten.  All you have got to do, Mr. Copperfield, is\nto forget it.'\n\nAll!  In the note I wrote to Miss Mills, I bitterly quoted this\nsentiment.  All I had to do, I said, with gloomy sarcasm, was to\nforget Dora.  That was all, and what was that!  I entreated Miss\nMills to see me, that evening.  If it could not be done with Mr.\nMills's sanction and concurrence, I besought a clandestine\ninterview in the back kitchen where the Mangle was.  I informed her\nthat my reason was tottering on its throne, and only she, Miss\nMills, could prevent its being deposed.  I signed myself, hers\ndistractedly; and I couldn't help feeling, while I read this\ncomposition over, before sending it by a porter, that it was\nsomething in the style of Mr. Micawber.\n\nHowever, I sent it.  At night I repaired to Miss Mills's street,\nand walked up and down, until I was stealthily fetched in by Miss\nMills's maid, and taken the area way to the back kitchen.  I have\nsince seen reason to believe that there was nothing on earth to\nprevent my going in at the front door, and being shown up into the\ndrawing-room, except Miss Mills's love of the romantic and\nmysterious.\n\nIn the back kitchen, I raved as became me.  I went there, I\nsuppose, to make a fool of myself, and I am quite sure I did it. \nMiss Mills had received a hasty note from Dora, telling her that\nall was discovered, and saying.  'Oh pray come to me, Julia, do,\ndo!' But Miss Mills, mistrusting the acceptability of her presence\nto the higher powers, had not yet gone; and we were all benighted\nin the Desert of Sahara.\n\nMiss Mills had a wonderful flow of words, and liked to pour them\nout.  I could not help feeling, though she mingled her tears with\nmine, that she had a dreadful luxury in our afflictions.  She\npetted them, as I may say, and made the most of them.  A deep gulf,\nshe observed, had opened between Dora and me, and Love could only\nspan it with its rainbow.  Love must suffer in this stern world; it\never had been so, it ever would be so.  No matter, Miss Mills\nremarked.  Hearts confined by cobwebs would burst at last, and then\nLove was avenged.\n\nThis was small consolation, but Miss Mills wouldn't encourage\nfallacious hopes.  She made me much more wretched than I was\nbefore, and I felt (and told her with the deepest gratitude) that\nshe was indeed a friend.  We resolved that she should go to Dora\nthe first thing in the morning, and find some means of assuring\nher, either by looks or words, of my devotion and misery.  We\nparted, overwhelmed with grief; and I think Miss Mills enjoyed\nherself completely.\n\nI confided all to my aunt when I got home; and in spite of all she\ncould say to me, went to bed despairing.  I got up despairing, and\nwent out despairing.  It was Saturday morning, and I went straight\nto the Commons.\n\nI was surprised, when I came within sight of our office-door, to\nsee the ticket-porters standing outside talking together, and some\nhalf-dozen stragglers gazing at the windows which were shut up.  I\nquickened my pace, and, passing among them, wondering at their\nlooks, went hurriedly in.\n\nThe clerks were there, but nobody was doing anything.  Old Tiffey,\nfor the first time in his life I should think, was sitting on\nsomebody else's stool, and had not hung up his hat.\n\n'This is a dreadful calamity, Mr. Copperfield,' said he, as I\nentered.\n\n'What is?' I exclaimed.  'What's the matter?'\n\n'Don't you know?' cried Tiffey, and all the rest of them, coming\nround me.\n\n'No!' said I, looking from face to face.\n\n'Mr. Spenlow,' said Tiffey.\n\n'What about him!'\n\n'Dead!'\nI thought it was the office reeling, and not I, as one of the\nclerks caught hold of me.  They sat me down in a chair, untied my\nneck-cloth, and brought me some water.  I have no idea whether this\ntook any time.\n\n'Dead?' said I.\n\n'He dined in town yesterday, and drove down in the phaeton by\nhimself,' said Tiffey, 'having sent his own groom home by the\ncoach, as he sometimes did, you know -'\n\n'Well?'\n\n'The phaeton went home without him.  The horses stopped at the\nstable-gate.  The man went out with a lantern.  Nobody in the\ncarriage.'\n\n'Had they run away?'\n\n'They were not hot,' said Tiffey, putting on his glasses; 'no\nhotter, I understand, than they would have been, going down at the\nusual pace.  The reins were broken, but they had been dragging on\nthe ground.  The house was roused up directly, and three of them\nwent out along the road.  They found him a mile off.'\n\n'More than a mile off, Mr. Tiffey,' interposed a junior.\n\n'Was it?  I believe you are right,' said Tiffey, - 'more than a\nmile off - not far from the church - lying partly on the roadside,\nand partly on the path, upon his face.  Whether he fell out in a\nfit, or got out, feeling ill before the fit came on - or even\nwhether he was quite dead then, though there is no doubt he was\nquite insensible - no one appears to know.  If he breathed,\ncertainly he never spoke.  Medical assistance was got as soon as\npossible, but it was quite useless.'\n\nI cannot describe the state of mind into which I was thrown by this\nintelligence.  The shock of such an event happening so suddenly,\nand happening to one with whom I had been in any respect at\nvariance - the appalling vacancy in the room he had occupied so\nlately, where his chair and table seemed to wait for him, and his\nhandwriting of yesterday was like a ghost - the in- definable\nimpossibility of separating him from the place, and feeling, when\nthe door opened, as if he might come in - the lazy hush and rest\nthere was in the office, and the insatiable relish with which our\npeople talked about it, and other people came in and out all day,\nand gorged themselves with the subject - this is easily\nintelligible to anyone.  What I cannot describe is, how, in the\ninnermost recesses of my own heart, I had a lurking jealousy even\nof Death.  How I felt as if its might would push me from my ground\nin Dora's thoughts.  How I was, in a grudging way I have no words\nfor, envious of her grief.  How it made me restless to think of her\nweeping to others, or being consoled by others.  How I had a\ngrasping, avaricious wish to shut out everybody from her but\nmyself, and to be all in all to her, at that unseasonable time of\nall times.\n\nIn the trouble of this state of mind - not exclusively my own, I\nhope, but known to others - I went down to Norwood that night; and\nfinding from one of the servants, when I made my inquiries at the\ndoor, that Miss Mills was there, got my aunt to direct a letter to\nher, which I wrote.  I deplored the untimely death of Mr. Spenlow,\nmost sincerely, and shed tears in doing so.  I entreated her to\ntell Dora, if Dora were in a state to hear it, that he had spoken\nto me with the utmost kindness and consideration; and had coupled\nnothing but tenderness, not a single or reproachful word, with her\nname.  I know I did this selfishly, to have my name brought before\nher; but I tried to believe it was an act of justice to his memory. \nPerhaps I did believe it.\n\nMy aunt received a few lines next day in reply; addressed, outside,\nto her; within, to me.  Dora was overcome by grief; and when her\nfriend had asked her should she send her love to me, had only\ncried, as she was always crying, 'Oh, dear papa! oh, poor papa!'\nBut she had not said No, and that I made the most of.\n\nMr. jorkins, who had been at Norwood since the occurrence, came to\nthe office a few days afterwards.  He and Tiffey were closeted\ntogether for some few moments, and then Tiffey looked out at the\ndoor and beckoned me in.\n\n'Oh!' said Mr. jorkins.  'Mr. Tiffey and myself, Mr. Copperfield,\nare about to examine the desks, the drawers, and other such\nrepositories of the deceased, with the view of sealing up his\nprivate papers, and searching for a Will.  There is no trace of\nany, elsewhere.  It may be as well for you to assist us, if you\nplease.'\n\nI had been in agony to obtain some knowledge of the circumstances\nin which my Dora would be placed - as, in whose guardianship, and\nso forth - and this was something towards it.  We began the search\nat once; Mr. jorkins unlocking the drawers and desks, and we all\ntaking out the papers.  The office-papers we placed on one side,\nand the private papers (which were not numerous) on the other.  We\nwere very grave; and when we came to a stray seal, or pencil-case,\nor ring, or any little article of that kind which we associated\npersonally with him, we spoke very low.\n\nWe had sealed up several packets; and were still going on dustily\nand quietly, when Mr. jorkins said to us, applying exactly the same\nwords to his late partner as his late partner had applied to him:\n\n'Mr. Spenlow was very difficult to move from the beaten track.  You\nknow what he was!  I am disposed to think he had made no will.'\n\n'Oh, I know he had!' said I.\n\nThey both stopped and looked at me.\n'On the very day when I last saw him,' said I, 'he told me that he\nhad, and that his affairs were long since settled.'\n\nMr. jorkins and old Tiffey shook their heads with one accord.\n\n'That looks unpromising,' said Tiffey.\n\n'Very unpromising,' said Mr. jorkins.\n\n'Surely you don't doubt -' I began.\n\n'My good Mr. Copperfield!' said Tiffey, laying his hand upon my\narm, and shutting up both his eyes as he shook his head: 'if you\nhad been in the Commons as long as I have, you would know that\nthere is no subject on which men are so inconsistent, and so little\nto be trusted.'\n\n'Why, bless my soul, he made that very remark!' I replied\npersistently.\n\n'I should call that almost final,' observed Tiffey.  'My opinion is\n- no will.'\n\nIt appeared a wonderful thing to me, but it turned out that there\nwas no will.  He had never so much as thought of making one, so far\nas his papers afforded any evidence; for there was no kind of hint,\nsketch, or memorandum, of any testamentary intention whatever. \nWhat was scarcely less astonishing to me, was, that his affairs\nwere in a most disordered state.  It was extremely difficult, I\nheard, to make out what he owed, or what he had paid, or of what he\ndied possessed.  It was considered likely that for years he could\nhave had no clear opinion on these subjects himself.  By little and\nlittle it came out, that, in the competition on all points of\nappearance and gentility then running high in the Commons, he had\nspent more than his professional income, which was not a very large\none, and had reduced his private means, if they ever had been great\n(which was exceedingly doubtful), to a very low ebb indeed.  There\nwas a sale of the furniture and lease, at Norwood; and Tiffey told\nme, little thinking how interested I was in the story, that, paying\nall the just debts of the deceased, and deducting his share of\noutstanding bad and doubtful debts due to the firm, he wouldn't\ngive a thousand pounds for all the assets remaining.\n\nThis was at the expiration of about six weeks.  I had suffered\ntortures all the time; and thought I really must have laid violent\nhands upon myself, when Miss Mills still reported to me, that my\nbroken-hearted little Dora would say nothing, when I was mentioned,\nbut 'Oh, poor papa!  Oh, dear papa!' Also, that she had no other\nrelations than two aunts, maiden sisters of Mr. Spenlow, who lived\nat Putney, and who had not held any other than chance communication\nwith their brother for many years.  Not that they had ever\nquarrelled (Miss Mills informed me); but that having been, on the\noccasion of Dora's christening, invited to tea, when they\nconsidered themselves privileged to be invited to dinner, they had\nexpressed their opinion in writing, that it was 'better for the\nhappiness of all parties' that they should stay away.  Since which\nthey had gone their road, and their brother had gone his.\n\nThese two ladies now emerged from their retirement, and proposed to\ntake Dora to live at Putney.  Dora, clinging to them both, and\nweeping, exclaimed, 'O yes, aunts!  Please take Julia Mills and me\nand Jip to Putney!' So they went, very soon after the funeral.\n\nHow I found time to haunt Putney, I am sure I don't know; but I\ncontrived, by some means or other, to prowl about the neighbourhood\npretty often.  Miss Mills, for the more exact discharge of the\nduties of friendship, kept a journal; and she used to meet me\nsometimes, on the Common, and read it, or (if she had not time to\ndo that) lend it to me.  How I treasured up the entries, of which\nI subjoin a sample! -\n\n'Monday.  My sweet D. still much depressed.  Headache.  Called\nattention to J. as being beautifully sleek.  D. fondled J. \nAssociations thus awakened, opened floodgates of sorrow.  Rush of\ngrief admitted.  (Are tears the dewdrops of the heart?  J. M.)\n\n'Tuesday.  D. weak and nervous.  Beautiful in pallor.  (Do we not\nremark this in moon likewise?  J. M.) D., J. M. and J. took airing\nin carriage.  J. looking out of window, and barking violently at\ndustman, occasioned smile to overspread features of D.  (Of such\nslight links is chain of life composed! J. M.)\n\n'Wednesday.  D. comparatively cheerful.  Sang to her, as congenial\nmelody, \"Evening Bells\".  Effect not soothing, but reverse.  D.\ninexpressibly affected.  Found sobbing afterwards, in own room. \nQuoted verses respecting self and young Gazelle.  Ineffectually. \nAlso referred to Patience on Monument.  (Qy.  Why on monument?  J.\nM.)\n\n'Thursday.  D. certainly improved.  Better night.  Slight tinge of\ndamask revisiting cheek.  Resolved to mention name of D. C. \nIntroduced same, cautiously, in course of airing.  D. immediately\novercome.  \"Oh, dear, dear Julia!  Oh, I have been a naughty and\nundutiful child!\" Soothed and caressed.  Drew ideal picture of D.\nC. on verge of tomb.  D. again overcome.  \"Oh, what shall I do,\nwhat shall I do?  Oh, take me somewhere!\" Much alarmed.  Fainting\nof D. and glass of water from public-house.  (Poetical affinity. \nChequered sign on door-post; chequered human life.  Alas!  J. M.)\n\n'Friday.  Day of incident.  Man appears in kitchen, with blue bag,\n\"for lady's boots left out to heel\".  Cook replies, \"No such\norders.\" Man argues point.  Cook withdraws to inquire, leaving man\nalone with J.  On Cook's return, man still argues point, but\nultimately goes.  J. missing.  D. distracted.  Information sent to\npolice.  Man to be identified by broad nose, and legs like\nbalustrades of bridge.  Search made in every direction.  No J.  D.\nweeping bitterly, and inconsolable.  Renewed reference to young\nGazelle.  Appropriate, but unavailing.  Towards evening, strange\nboy calls.  Brought into parlour.  Broad nose, but no balustrades. \nSays he wants a pound, and knows a dog.  Declines to explain\nfurther, though much pressed.  Pound being produced by D. takes\nCook to little house, where J. alone tied up to leg of table.  joy\nof D. who dances round J. while he eats his supper.  Emboldened by\nthis happy change, mention D. C. upstairs.  D. weeps afresh, cries\npiteously, \"Oh, don't, don't, don't!  It is so wicked to think of\nanything but poor papa!\" - embraces J.  and sobs herself to sleep. \n(Must not D. C. confine himself to the broad pinions of Time?  J.\nM.)'\n\nMiss Mills and her journal were my sole consolation at this period. \nTo see her, who had seen Dora but a little while before - to trace\nthe initial letter of Dora's name through her sympathetic pages -\nto be made more and more miserable by her - were my only comforts. \nI felt as if I had been living in a palace of cards, which had\ntumbled down, leaving only Miss Mills and me among the ruins; I\nfelt as if some grim enchanter had drawn a magic circle round the\ninnocent goddess of my heart, which nothing indeed but those same\nstrong pinions, capable of carrying so many people over so much,\nwould enable me to enter!\n\n\n\nCHAPTER 39\nWICKFIELD AND HEEP\n\n\nMy aunt, beginning, I imagine, to be made seriously uncomfortable\nby my prolonged dejection, made a pretence of being anxious that I\nshould go to Dover, to see that all was working well at the\ncottage, which was let; and to conclude an agreement, with the same\ntenant, for a longer term of occupation.  Janet was drafted into\nthe service of Mrs. Strong, where I saw her every day.  She had\nbeen undecided, on leaving Dover, whether or no to give the\nfinishing touch to that renunciation of mankind in which she had\nbeen educated, by marrying a pilot; but she decided against that\nventure.  Not so much for the sake of principle, I believe, as\nbecause she happened not to like him.\n\nAlthough it required an effort to leave Miss Mills, I fell rather\nwillingly into my aunt's pretence, as a means of enabling me to\npass a few tranquil hours with Agnes.  I consulted the good Doctor\nrelative to an absence of three days; and the Doctor wishing me to\ntake that relaxation, - he wished me to take more; but my energy\ncould not bear that, - I made up my mind to go.\n\nAs to the Commons, I had no great occasion to be particular about\nmy duties in that quarter.  To say the truth, we were getting in no\nvery good odour among the tip-top proctors, and were rapidly\nsliding down to but a doubtful position.  The business had been\nindifferent under Mr. jorkins, before Mr. Spenlow's time; and\nalthough it had been quickened by the infusion of new blood, and by\nthe display which Mr. Spenlow made, still it was not established on\na sufficiently strong basis to bear, without being shaken, such a\nblow as the sudden loss of its active manager.  It fell off very\nmuch.  Mr. jorkins, notwithstanding his reputation in the firm, was\nan easy-going, incapable sort of man, whose reputation out of doors\nwas not calculated to back it up.  I was turned over to him now,\nand when I saw him take his snuff and let the business go, I\nregretted my aunt's thousand pounds more than ever.\n\nBut this was not the worst of it.  There were a number of\nhangers-on and outsiders about the Commons, who, without being\nproctors themselves, dabbled in common-form business, and got it\ndone by real proctors, who lent their names in consideration of a\nshare in the spoil; - and there were a good many of these too.  As\nour house now wanted business on any terms, we joined this noble\nband; and threw out lures to the hangers-on and outsiders, to bring\ntheir business to us.  Marriage licences and small probates were\nwhat we all looked for, and what paid us best; and the competition\nfor these ran very high indeed.  Kidnappers and inveiglers were\nplanted in all the avenues of entrance to the Commons, with\ninstructions to do their utmost to cut off all persons in mourning,\nand all gentlemen with anything bashful in their appearance, and\nentice them to the offices in which their respective employers were\ninterested; which instructions were so well observed, that I\nmyself, before I was known by sight, was twice hustled into the\npremises of our principal opponent.  The conflicting interests of\nthese touting gentlemen being of a nature to irritate their\nfeelings, personal collisions took place; and the Commons was even\nscandalized by our principal inveigler (who had formerly been in\nthe wine trade, and afterwards in the sworn brokery line) walking\nabout for some days with a black eye.  Any one of these scouts used\nto think nothing of politely assisting an old lady in black out of\na vehicle, killing any proctor whom she inquired for, representing\nhis employer as the lawful successor and representative of that\nproctor, and bearing the old lady off (sometimes greatly affected)\nto his employer's office.  Many captives were brought to me in this\nway.  As to marriage licences, the competition rose to such a\npitch, that a shy gentleman in want of one, had nothing to do but\nsubmit himself to the first inveigler, or be fought for, and become\nthe prey of the strongest.  One of our clerks, who was an outsider,\nused, in the height of this contest, to sit with his hat on, that\nhe might be ready to rush out and swear before a surrogate any\nvictim who was brought in.  The system of inveigling continues, I\nbelieve, to this day.  The last time I was in the Commons, a civil\nable-bodied person in a white apron pounced out upon me from a\ndoorway, and whispering the word 'Marriage-licence' in my ear, was\nwith great difficulty prevented from taking me up in his arms and\nlifting me into a proctor's.  From this digression, let me proceed\nto Dover.\n\nI found everything in a satisfactory state at the cottage; and was\nenabled to gratify my aunt exceedingly by reporting that the tenant\ninherited her feud, and waged incessant war against donkeys. \nHaving settled the little business I had to transact there, and\nslept there one night, I walked on to Canterbury early in the\nmorning.  It was now winter again; and the fresh, cold windy day,\nand the sweeping downland, brightened up my hopes a little.\n\nComing into Canterbury, I loitered through the old streets with a\nsober pleasure that calmed my spirits, and eased my heart.  There\nwere the old signs, the old names over the shops, the old people\nserving in them.  It appeared so long, since I had been a schoolboy\nthere, that I wondered the place was so little changed, until I\nreflected how little I was changed myself.  Strange to say, that\nquiet influence which was inseparable in my mind from Agnes, seemed\nto pervade even the city where she dwelt.  The venerable cathedral\ntowers, and the old jackdaws and rooks whose airy voices made them\nmore retired than perfect silence would have done; the battered\ngateways, one stuck full with statues, long thrown down, and\ncrumbled away, like the reverential pilgrims who had gazed upon\nthem; the still nooks, where the ivied growth of centuries crept\nover gabled ends and ruined walls; the ancient houses, the pastoral\nlandscape of field, orchard, and garden; everywhere - on everything\n- I felt the same serener air, the same calm, thoughtful, softening\nspirit.\n\nArrived at Mr. Wickfield's house, I found, in the little lower room\non the ground floor, where Uriah Heep had been of old accustomed to\nsit, Mr. Micawber plying his pen with great assiduity.  He was\ndressed in a legal-looking suit of black, and loomed, burly and\nlarge, in that small office.\n\nMr. Micawber was extremely glad to see me, but a little confused\ntoo.  He would have conducted me immediately into the presence of\nUriah, but I declined.\n\n'I know the house of old, you recollect,' said I, 'and will find my\nway upstairs.  How do you like the law, Mr. Micawber?'\n\n'My dear Copperfield,' he replied.  'To a man possessed of the\nhigher imaginative powers, the objection to legal studies is the\namount of detail which they involve.  Even in our professional\ncorrespondence,' said Mr. Micawber, glancing at some letters he was\nwriting, 'the mind is not at liberty to soar to any exalted form of\nexpression.  Still, it is a great pursuit.  A great pursuit!'\n\nHe then told me that he had become the tenant of Uriah Heep's old\nhouse; and that Mrs. Micawber would be delighted to receive me,\nonce more, under her own roof.\n\n'It is humble,' said Mr. Micawber, '- to quote a favourite\nexpression of my friend Heep; but it may prove the stepping-stone\nto more ambitious domiciliary accommodation.'\n\nI asked him whether he had reason, so far, to be satisfied with his\nfriend Heep's treatment of him?  He got up to ascertain if the door\nwere close shut, before he replied, in a lower voice:\n\n'My dear Copperfield, a man who labours under the pressure of\npecuniary embarrassments, is, with the generality of people, at a\ndisadvantage.  That disadvantage is not diminished, when that\npressure necessitates the drawing of stipendiary emoluments, before\nthose emoluments are strictly due and payable.  All I can say is,\nthat my friend Heep has responded to appeals to which I need not\nmore particularly refer, in a manner calculated to redound equally\nto the honour of his head, and of his heart.'\n\n'I should not have supposed him to be very free with his money\neither,' I observed.\n\n'Pardon me!' said Mr. Micawber, with an air of constraint, 'I speak\nof my friend Heep as I have experience.'\n\n'I am glad your experience is so favourable,' I returned.\n\n'You are very obliging, my dear Copperfield,' said Mr. Micawber;\nand hummed a tune.\n\n'Do you see much of Mr. Wickfield?' I asked, to change the subject.\n\n'Not much,' said Mr. Micawber, slightingly.  'Mr. Wickfield is, I\ndare say, a man of very excellent intentions; but he is - in short,\nhe is obsolete.'\n\n'I am afraid his partner seeks to make him so,' said I.\n\n'My dear Copperfield!' returned Mr. Micawber, after some uneasy\nevolutions on his stool, 'allow me to offer a remark!  I am here,\nin a capacity of confidence.  I am here, in a position of trust. \nThe discussion of some topics, even with Mrs. Micawber herself (so\nlong the partner of my various vicissitudes, and a woman of a\nremarkable lucidity of intellect), is, I am led to consider,\nincompatible with the functions now devolving on me.  I would\ntherefore take the liberty of suggesting that in our friendly\nintercourse - which I trust will never be disturbed! - we draw a\nline.  On one side of this line,' said Mr. Micawber, representing\nit on the desk with the office ruler, 'is the whole range of the\nhuman intellect, with a trifling exception; on the other, IS that\nexception; that is to say, the affairs of Messrs Wickfield and\nHeep, with all belonging and appertaining thereunto.  I trust I\ngive no offence to the companion of my youth, in submitting this\nproposition to his cooler judgement?'\n\nThough I saw an uneasy change in Mr. Micawber, which sat tightly on\nhim, as if his new duties were a misfit, I felt I had no right to\nbe offended.  My telling him so, appeared to relieve him; and he\nshook hands with me.\n\n'I am charmed, Copperfield,' said Mr. Micawber, 'let me assure you,\nwith Miss Wickfield.  She is a very superior young lady, of very\nremarkable attractions, graces, and virtues.  Upon my honour,' said\nMr. Micawber, indefinitely kissing his hand and bowing with his\ngenteelest air, 'I do Homage to Miss Wickfield!  Hem!'\n'I am glad of that, at least,' said I.\n\n'If you had not assured us, my dear Copperfield, on the occasion of\nthat agreeable afternoon we had the happiness of passing with you,\nthat D. was your favourite letter,' said Mr. Micawber, 'I should\nunquestionably have supposed that A. had been so.'\n\nWe have all some experience of a feeling, that comes over us\noccasionally, of what we are saying and doing having been said and\ndone before, in a remote time - of our having been surrounded, dim\nages ago, by the same faces, objects, and circumstances - of our\nknowing perfectly what will be said next, as if we suddenly\nremembered it!  I never had this mysterious impression more\nstrongly in my life, than before he uttered those words.\n\nI took my leave of Mr. Micawber, for the time, charging him with my\nbest remembrances to all at home.  As I left him, resuming his\nstool and his pen, and rolling his head in his stock, to get it\ninto easier writing order, I clearly perceived that there was\nsomething interposed between him and me, since he had come into his\nnew functions, which prevented our getting at each other as we used\nto do, and quite altered the character of our intercourse.\n\nThere was no one in the quaint old drawing-room, though it\npresented tokens of Mrs. Heep's whereabouts.  I looked into the\nroom still belonging to Agnes, and saw her sitting by the fire, at\na pretty old-fashioned desk she had, writing.\n\nMy darkening the light made her look up.  What a pleasure to be the\ncause of that bright change in her attentive face, and the object\nof that sweet regard and welcome!\n\n'Ah, Agnes!' said I, when we were sitting together, side by side;\n'I have missed you so much, lately!'\n\n'Indeed?' she replied.  'Again!  And so soon?'\n\nI shook my head.\n\n'I don't know how it is, Agnes; I seem to want some faculty of mind\nthat I ought to have.  You were so much in the habit of thinking\nfor me, in the happy old days here, and I came so naturally to you\nfor counsel and support, that I really think I have missed\nacquiring it.'\n\n'And what is it?' said Agnes, cheerfully.\n\n'I don't know what to call it,' I replied.  'I think I am earnest\nand persevering?'\n\n'I am sure of it,' said Agnes.\n\n'And patient, Agnes?' I inquired, with a little hesitation.\n\n'Yes,' returned Agnes, laughing.  'Pretty well.'\n\n'And yet,' said I, 'I get so miserable and worried, and am so\nunsteady and irresolute in my power of assuring myself, that I know\nI must want - shall I call it - reliance, of some kind?'\n\n'Call it so, if you will,' said Agnes.\n\n'Well!' I returned.  'See here!  You come to London, I rely on you,\nand I have an object and a course at once.  I am driven out of it,\nI come here, and in a moment I feel an altered person.  The\ncircumstances that distressed me are not changed, since I came into\nthis room; but an influence comes over me in that short interval\nthat alters me, oh, how much for the better!  What is it?  What is\nyour secret, Agnes?'\n\nHer head was bent down, looking at the fire.\n\n'It's the old story,' said I.  'Don't laugh, when I say it was\nalways the same in little things as it is in greater ones.  My old\ntroubles were nonsense, and now they are serious; but whenever I\nhave gone away from my adopted sister -'\n\nAgnes looked up - with such a Heavenly face! - and gave me her\nhand, which I kissed.\n\n'Whenever I have not had you, Agnes, to advise and approve in the\nbeginning, I have seemed to go wild, and to get into all sorts of\ndifficulty.  When I have come to you, at last (as I have always\ndone), I have come to peace and happiness.  I come home, now, like\na tired traveller, and find such a blessed sense of rest!'\n\nI felt so deeply what I said, it affected me so sincerely, that my\nvoice failed, and I covered my face with my hand, and broke into\ntears.  I write the truth.  Whatever contradictions and\ninconsistencies there were within me, as there are within so many\nof us; whatever might have been so different, and so much better;\nwhatever I had done, in which I had perversely wandered away from\nthe voice of my own heart; I knew nothing of.  I only knew that I\nwas fervently in earnest, when I felt the rest and peace of having\nAgnes near me.\n\nIn her placid sisterly manner; with her beaming eyes; with her\ntender voice; and with that sweet composure, which had long ago\nmade the house that held her quite a sacred place to me; she soon\nwon me from this weakness, and led me on to tell all that had\nhappened since our last meeting.\n\n'And there is not another word to tell, Agnes,' said I, when I had\nmade an end of my confidence.  'Now, my reliance is on you.'\n\n'But it must not be on me, Trotwood,' returned Agnes, with a\npleasant smile.  'It must be on someone else.'\n\n'On Dora?' said I.\n\n'Assuredly.'\n\n'Why, I have not mentioned, Agnes,' said I, a little embarrassed,\n'that Dora is rather difficult to - I would not, for the world,\nsay, to rely upon, because she is the soul of purity and truth -\nbut rather difficult to - I hardly know how to express it, really,\nAgnes.  She is a timid little thing, and easily disturbed and\nfrightened.  Some time ago, before her father's death, when I\nthought it right to mention to her - but I'll tell you, if you will\nbear with me, how it was.'\n\nAccordingly, I told Agnes about my declaration of poverty, about\nthe cookery-book, the housekeeping accounts, and all the rest of\nit.\n\n'Oh, Trotwood!' she remonstrated, with a smile.  'Just your old\nheadlong way!  You might have been in earnest in striving to get on\nin the world, without being so very sudden with a timid, loving,\ninexperienced girl.  Poor Dora!'\n\nI never heard such sweet forbearing kindness expressed in a voice,\nas she expressed in making this reply.  It was as if I had seen her\nadmiringly and tenderly embracing Dora, and tacitly reproving me,\nby her considerate protection, for my hot haste in fluttering that\nlittle heart.  It was as if I had seen Dora, in all her fascinating\nartlessness, caressing Agnes, and thanking her, and coaxingly\nappealing against me, and loving me with all her childish\ninnocence.\n\nI felt so grateful to Agnes, and admired her so!  I saw those two\ntogether, in a bright perspective, such well-associated friends,\neach adorning the other so much!\n\n'What ought I to do then, Agnes?' I inquired, after looking at the\nfire a little while.  'What would it be right to do?'\n\n'I think,' said Agnes, 'that the honourable course to take, would\nbe to write to those two ladies.  Don't you think that any secret\ncourse is an unworthy one?'\n\n'Yes.  If YOU think so,' said I.\n\n'I am poorly qualified to judge of such matters,' replied Agnes,\nwith a modest hesitation, 'but I certainly feel - in short, I feel\nthat your being secret and clandestine, is not being like\nyourself.'\n\n'Like myself, in the too high opinion you have of me, Agnes, I am\nafraid,' said I.\n\n'Like yourself, in the candour of your nature,' she returned; 'and\ntherefore I would write to those two ladies.  I would relate, as\nplainly and as openly as possible, all that has taken place; and I\nwould ask their permission to visit sometimes, at their house. \nConsidering that you are young, and striving for a place in life,\nI think it would be well to say that you would readily abide by any\nconditions they might impose upon you.  I would entreat them not to\ndismiss your request, without a reference to Dora; and to discuss\nit with her when they should think the time suitable.  I would not\nbe too vehement,' said Agnes, gently, 'or propose too much.  I\nwould trust to my fidelity and perseverance - and to Dora.'\n\n'But if they were to frighten Dora again, Agnes, by speaking to\nher,' said I.  'And if Dora were to cry, and say nothing about me!'\n\n'Is that likely?' inquired Agnes, with the same sweet consideration\nin her face.\n\n'God bless her, she is as easily scared as a bird,' said I.  'It\nmight be!  Or if the two Miss Spenlows (elderly ladies of that sort\nare odd characters sometimes) should not be likely persons to\naddress in that way!'\n\n'I don't think, Trotwood,' returned Agnes, raising her soft eyes to\nmine, 'I would consider that.  Perhaps it would be better only to\nconsider whether it is right to do this; and, if it is, to do it.'\n\nI had no longer any doubt on the subject.  With a lightened heart,\nthough with a profound sense of the weighty importance of my task,\nI devoted the whole afternoon to the composition of the draft of\nthis letter; for which great purpose, Agnes relinquished her desk\nto me.  But first I went downstairs to see Mr. Wickfield and Uriah\nHeep.\n\nI found Uriah in possession of a new, plaster-smelling office,\nbuilt out in the garden; looking extraordinarily mean, in the midst\nof a quantity of books and papers.  He received me in his usual\nfawning way, and pretended not to have heard of my arrival from Mr.\nMicawber; a pretence I took the liberty of disbelieving.  He\naccompanied me into Mr. Wickfield's room, which was the shadow of\nits former self - having been divested of a variety of\nconveniences, for the accommodation of the new partner - and stood\nbefore the fire, warming his back, and shaving his chin with his\nbony hand, while Mr. Wickfield and I exchanged greetings.\n\n'You stay with us, Trotwood, while you remain in Canterbury?' said\nMr. Wickfield, not without a glance at Uriah for his approval.\n\n'Is there room for me?' said I.\n\n'I am sure, Master Copperfield - I should say Mister, but the other\ncomes so natural,' said Uriah, -'I would turn out of your old room\nwith pleasure, if it would be agreeable.'\n\n'No, no,' said Mr. Wickfield.  'Why should you be inconvenienced? \nThere's another room.  There's another room.'\n'Oh, but you know,' returned Uriah, with a grin, 'I should really\nbe delighted!'\n\nTo cut the matter short, I said I would have the other room or none\nat all; so it was settled that I should have the other room; and,\ntaking my leave of the firm until dinner, I went upstairs again.\n\nI had hoped to have no other companion than Agnes.  But Mrs. Heep\nhad asked permission to bring herself and her knitting near the\nfire, in that room; on pretence of its having an aspect more\nfavourable for her rheumatics, as the wind then was, than the\ndrawing-room or dining-parlour.  Though I could almost have\nconsigned her to the mercies of the wind on the topmost pinnacle of\nthe Cathedral, without remorse, I made a virtue of necessity, and\ngave her a friendly salutation.\n\n'I'm umbly thankful to you, sir,' said Mrs. Heep, in\nacknowledgement of my inquiries concerning her health, 'but I'm\nonly pretty well.  I haven't much to boast of.  If I could see my\nUriah well settled in life, I couldn't expect much more I think. \nHow do you think my Ury looking, sir?'\n\nI thought him looking as villainous as ever, and I replied that I\nsaw no change in him.\n\n'Oh, don't you think he's changed?' said Mrs. Heep.  'There I must\numbly beg leave to differ from you.  Don't you see a thinness in\nhim?'\n\n'Not more than usual,' I replied.\n\n'Don't you though!' said Mrs. Heep.  'But you don't take notice of\nhim with a mother's eye!'\n\nHis mother's eye was an evil eye to the rest of the world, I\nthought as it met mine, howsoever affectionate to him; and I\nbelieve she and her son were devoted to one another.  It passed me,\nand went on to Agnes.\n\n'Don't YOU see a wasting and a wearing in him, Miss Wickfield?'\ninquired Mrs. Heep.\n\n'No,' said Agnes, quietly pursuing the work on which she was\nengaged.  'You are too solicitous about him.  He is very well.'\n\nMrs. Heep, with a prodigious sniff, resumed her knitting.\n\nShe never left off, or left us for a moment.  I had arrived early\nin the day, and we had still three or four hours before dinner; but\nshe sat there, plying her knitting-needles as monotonously as an\nhour-glass might have poured out its sands.  She sat on one side of\nthe fire; I sat at the desk in front of it; a little beyond me, on\nthe other side, sat Agnes.  Whensoever, slowly pondering over my\nletter, I lifted up my eyes, and meeting the thoughtful face of\nAgnes, saw it clear, and beam encouragement upon me, with its own\nangelic expression, I was conscious presently of the evil eye\npassing me, and going on to her, and coming back to me again, and\ndropping furtively upon the knitting.  What the knitting was, I\ndon't know, not being learned in that art; but it looked like a\nnet; and as she worked away with those Chinese chopsticks of\nknitting-needles, she showed in the firelight like an ill-looking\nenchantress, baulked as yet by the radiant goodness opposite, but\ngetting ready for a cast of her net by and by.\n\nAt dinner she maintained her watch, with the same unwinking eyes. \nAfter dinner, her son took his turn; and when Mr. Wickfield,\nhimself, and I were left alone together, leered at me, and writhed\nuntil I could hardly bear it.  In the drawing-room, there was the\nmother knitting and watching again.  All the time that Agnes sang\nand played, the mother sat at the piano.  Once she asked for a\nparticular ballad, which she said her Ury (who was yawning in a\ngreat chair) doted on; and at intervals she looked round at him,\nand reported to Agnes that he was in raptures with the music.  But\nshe hardly ever spoke - I question if she ever did - without making\nsome mention of him.  It was evident to me that this was the duty\nassigned to her.\n\nThis lasted until bedtime.  To have seen the mother and son, like\ntwo great bats hanging over the whole house, and darkening it with\ntheir ugly forms, made me so uncomfortable, that I would rather\nhave remained downstairs, knitting and all, than gone to bed.  I\nhardly got any sleep.  Next day the knitting and watching began\nagain, and lasted all day.\n\nI had not an opportunity of speaking to Agnes, for ten minutes.  I\ncould barely show her my letter.  I proposed to her to walk out\nwith me; but Mrs. Heep repeatedly complaining that she was worse,\nAgnes charitably remained within, to bear her company.  Towards the\ntwilight I went out by myself, musing on what I ought to do, and\nwhether I was justified in withholding from Agnes, any longer, what\nUriah Heep had told me in London; for that began to trouble me\nagain, very much.\n\nI had not walked out far enough to be quite clear of the town, upon\nthe Ramsgate road, where there was a good path, when I was hailed,\nthrough the dust, by somebody behind me.  The shambling figure, and\nthe scanty great-coat, were not to be mistaken.  I stopped, and\nUriah Heep came up.\n\n'Well?' said I.\n\n'How fast you walk!' said he.  'My legs are pretty long, but you've\ngiven 'em quite a job.'\n\n'Where are you going?' said I.\n\n'I am going with you, Master Copperfield, if you'll allow me the\npleasure of a walk with an old acquaintance.'  Saying this, with a\njerk of his body, which might have been either propitiatory or\nderisive, he fell into step beside me.\n\n'Uriah!' said I, as civilly as I could, after a silence.\n\n'Master Copperfield!' said Uriah.\n\n'To tell you the truth (at which you will not be offended), I came\nOut to walk alone, because I have had so much company.'\n\nHe looked at me sideways, and said with his hardest grin, 'You mean\nmother.'\n\n'Why yes, I do,' said I.\n\n'Ah!  But you know we're so very umble,' he returned.  'And having\nsuch a knowledge of our own umbleness, we must really take care\nthat we're not pushed to the wall by them as isn't umble.  All\nstratagems are fair in love, sir.'\n\nRaising his great hands until they touched his chin, he rubbed them\nsoftly, and softly chuckled; looking as like a malevolent baboon,\nI thought, as anything human could look.\n\n'You see,' he said, still hugging himself in that unpleasant way,\nand shaking his head at me, 'you're quite a dangerous rival, Master\nCopperfield.  You always was, you know.'\n\n'Do you set a watch upon Miss Wickfield, and make her home no home,\nbecause of me?' said I.\n\n'Oh! Master Copperfield!  Those are very arsh words,' he replied.\n\n'Put my meaning into any words you like,' said I.  'You know what\nit is, Uriah, as well as I do.'\n\n'Oh no!  You must put it into words,' he said.  'Oh, really!  I\ncouldn't myself.'\n\n'Do you suppose,' said I, constraining myself to be very temperate\nand quiet with him, on account of Agnes, 'that I regard Miss\nWickfield otherwise than as a very dear sister?'\n\n'Well, Master Copperfield,' he replied, 'you perceive I am not\nbound to answer that question.  You may not, you know.  But then,\nyou see, you may!'\n\nAnything to equal the low cunning of his visage, and of his\nshadowless eyes without the ghost of an eyelash, I never saw.\n\n'Come then!' said I.  'For the sake of Miss Wickfield -'\n\n'My Agnes!' he exclaimed, with a sickly, angular contortion of\nhimself.  'Would you be so good as call her Agnes, Master\nCopperfield!'\n\n'For the sake of Agnes Wickfield - Heaven bless her!'\n\n'Thank you for that blessing, Master Copperfield!'he interposed.\n\n'I will tell you what I should, under any other circumstances, as\nsoon have thought of telling to - Jack Ketch.'\n\n'To who, sir?' said Uriah, stretching out his neck, and shading his\near with his hand.\n\n'To the hangman,' I returned.  'The most unlikely person I could\nthink of,' - though his own face had suggested the allusion quite\nas a natural sequence.  'I am engaged to another young lady.  I\nhope that contents you.'\n\n'Upon your soul?' said Uriah.\n\nI was about indignantly to give my assertion the confirmation he\nrequired, when he caught hold of my hand, and gave it a squeeze.\n\n'Oh, Master Copperfield!' he said.  'If you had only had the\ncondescension to return my confidence when I poured out the fulness\nof my art, the night I put you so much out of the way by sleeping\nbefore your sitting-room fire, I never should have doubted you.  As\nit is, I'm sure I'll take off mother directly, and only too appy. \nI know you'll excuse the precautions of affection, won't you?  What\na pity, Master Copperfield, that you didn't condescend to return my\nconfidence!  I'm sure I gave you every opportunity.  But you never\nhave condescended to me, as much as I could have wished.  I know\nyou have never liked me, as I have liked you!'\n\nAll this time he was squeezing my hand with his damp fishy fingers,\nwhile I made every effort I decently could to get it away.  But I\nwas quite unsuccessful.  He drew it under the sleeve of his\nmulberry-coloured great-coat, and I walked on, almost upon\ncompulsion, arm-in-arm with him.\n\n'Shall we turn?' said Uriah, by and by wheeling me face about\ntowards the town, on which the early moon was now shining,\nsilvering the distant windows.\n\n'Before we leave the subject, you ought to understand,' said I,\nbreaking a pretty long silence, 'that I believe Agnes Wickfield to\nbe as far above you, and as far removed from all your aspirations,\nas that moon herself!'\n\n'Peaceful!  Ain't she!' said Uriah.  'Very!  Now confess, Master\nCopperfield, that you haven't liked me quite as I have liked you. \nAll along you've thought me too umble now, I shouldn't wonder?'\n\n'I am not fond of professions of humility,' I returned, 'or\nprofessions of anything else.'\n'There now!' said Uriah, looking flabby and lead-coloured in the\nmoonlight.  'Didn't I know it!  But how little you think of the\nrightful umbleness of a person in my station, Master Copperfield!\nFather and me was both brought up at a foundation school for boys;\nand mother, she was likewise brought up at a public, sort of\ncharitable, establishment.  They taught us all a deal of umbleness\n- not much else that I know of, from morning to night.  We was to\nbe umble to this person, and umble to that; and to pull off our\ncaps here, and to make bows there; and always to know our place,\nand abase ourselves before our betters.  And we had such a lot of\nbetters!  Father got the monitor-medal by being umble.  So did I. \nFather got made a sexton by being umble.  He had the character,\namong the gentlefolks, of being such a well-behaved man, that they\nwere determined to bring him in.  \"Be umble, Uriah,\" says father to\nme, \"and you'll get on.  It was what was always being dinned into\nyou and me at school; it's what goes down best.  Be umble,\" says\nfather,\" and you'll do!\" And really it ain't done bad!'\n\nIt was the first time it had ever occurred to me, that this\ndetestable cant of false humility might have originated out of the\nHeep family.  I had seen the harvest, but had never thought of the\nseed.\n\n'When I was quite a young boy,' said Uriah, 'I got to know what\numbleness did, and I took to it.  I ate umble pie with an appetite. \nI stopped at the umble point of my learning, and says I, \"Hold\nhard!\" When you offered to teach me Latin, I knew better.  \"People\nlike to be above you,\" says father, \"keep yourself down.\" I am very\numble to the present moment, Master Copperfield, but I've got a\nlittle power!'\n\nAnd he said all this - I knew, as I saw his face in the moonlight\n- that I might understand he was resolved to recompense himself by\nusing his power.  I had never doubted his meanness, his craft and\nmalice; but I fully comprehended now, for the first time, what a\nbase, unrelenting, and revengeful spirit, must have been engendered\nby this early, and this long, suppression.\n\nHis account of himself was so far attended with an agreeable\nresult, that it led to his withdrawing his hand in order that he\nmight have another hug of himself under the chin.  Once apart from\nhim, I was determined to keep apart; and we walked back, side by\nside, saying very little more by the way.  Whether his spirits were\nelevated by the communication I had made to him, or by his having\nindulged in this retrospect, I don't know; but they were raised by\nsome influence.  He talked more at dinner than was usual with him;\nasked his mother (off duty, from the moment of our re-entering the\nhouse) whether he was not growing too old for a bachelor; and once\nlooked at Agnes so, that I would have given all I had, for leave to\nknock him down.\n\nWhen we three males were left alone after dinner, he got into a\nmore adventurous state.  He had taken little or no wine; and I\npresume it was the mere insolence of triumph that was upon him,\nflushed perhaps by the temptation my presence furnished to its\nexhibition.\n\nI had observed yesterday, that he tried to entice Mr. Wickfield to\ndrink; and, interpreting the look which Agnes had given me as she\nwent out, had limited myself to one glass, and then proposed that\nwe should follow her.  I would have done so again today; but Uriah\nwas too quick for me.\n\n'We seldom see our present visitor, sir,' he said, addressing Mr.\nWickfield, sitting, such a contrast to him, at the end of the\ntable, 'and I should propose to give him welcome in another glass\nor two of wine, if you have no objections.  Mr. Copperfield, your\nelth and appiness!'\n\nI was obliged to make a show of taking the hand he stretched across\nto me; and then, with very different emotions, I took the hand of\nthe broken gentleman, his partner.\n\n'Come, fellow-partner,' said Uriah, 'if I may take the liberty, -\nnow, suppose you give us something or another appropriate to\nCopperfield!'\n\nI pass over Mr. Wickfield's proposing my aunt, his proposing Mr.\nDick, his proposing Doctors' Commons, his proposing Uriah, his\ndrinking everything twice; his consciousness of his own weakness,\nthe ineffectual effort that he made against it; the struggle\nbetween his shame in Uriah's deportment, and his desire to\nconciliate him; the manifest exultation with which Uriah twisted\nand turned, and held him up before me.  It made me sick at heart to\nsee, and my hand recoils from writing it.\n\n'Come, fellow-partner!' said Uriah, at last, 'I'll give you another\none, and I umbly ask for bumpers, seeing I intend to make it the\ndivinest of her sex.'\n\nHer father had his empty glass in his hand.  I saw him set it down,\nlook at the picture she was so like, put his hand to his forehead,\nand shrink back in his elbow-chair.\n\n'I'm an umble individual to give you her elth,' proceeded Uriah,\n'but I admire - adore her.'\n\nNo physical pain that her father's grey head could have borne, I\nthink, could have been more terrible to me, than the mental\nendurance I saw compressed now within both his hands.\n\n'Agnes,' said Uriah, either not regarding him, or not knowing what\nthe nature of his action was, 'Agnes Wickfield is, I am safe to\nsay, the divinest of her sex.  May I speak out, among friends?  To\nbe her father is a proud distinction, but to be her usband -'\n\nSpare me from ever again hearing such a cry, as that with which her\nfather rose up from the table!\n'What's the matter?' said Uriah, turning of a deadly colour.  'You\nare not gone mad, after all, Mr. Wickfield, I hope?  If I say I've\nan ambition to make your Agnes my Agnes, I have as good a right to\nit as another man.  I have a better right to it than any other\nman!'\n\nI had my arms round Mr. Wickfield, imploring him by everything that\nI could think of, oftenest of all by his love for Agnes, to calm\nhimself a little.  He was mad for the moment; tearing out his hair,\nbeating his head, trying to force me from him, and to force himself\nfrom me, not answering a word, not looking at or seeing anyone;\nblindly striving for he knew not what, his face all staring and\ndistorted - a frightful spectacle.\n\nI conjured him, incoherently, but in the most impassioned manner,\nnot to abandon himself to this wildness, but to hear me.  I\nbesought him to think of Agnes, to connect me with Agnes, to\nrecollect how Agnes and I had grown up together, how I honoured her\nand loved her, how she was his pride and joy.  I tried to bring her\nidea before him in any form; I even reproached him with not having\nfirmness to spare her the knowledge of such a scene as this.  I may\nhave effected something, or his wildness may have spent itself; but\nby degrees he struggled less, and began to look at me - strangely\nat first, then with recognition in his eyes.  At length he said, 'I\nknow, Trotwood!  My darling child and you - I know!  But look at\nhim!'\n\nHe pointed to Uriah, pale and glowering in a corner, evidently very\nmuch out in his calculations, and taken by surprise.\n\n'Look at my torturer,' he replied.  'Before him I have step by step\nabandoned name and reputation, peace and quiet, house and home.'\n\n'I have kept your name and reputation for you, and your peace and\nquiet, and your house and home too,' said Uriah, with a sulky,\nhurried, defeated air of compromise.  'Don't be foolish, Mr.\nWickfield.  If I have gone a little beyond what you were prepared\nfor, I can go back, I suppose?  There's no harm done.'\n\n'I looked for single motives in everyone,' said Mr. Wickfield, and\nI was satisfied I had bound him to me by motives of interest.  But\nsee what he is - oh, see what he is!'\n\n'You had better stop him, Copperfield, if you can,' cried Uriah,\nwith his long forefinger pointing towards me.  'He'll say something\npresently - mind you! - he'll be sorry to have said afterwards, and\nyou'll be sorry to have heard!'\n\n'I'll say anything!' cried Mr. Wickfield, with a desperate air. \n'Why should I not be in all the world's power if I am in yours?'\n\n'Mind! I tell you!' said Uriah, continuing to warn me.  'If you\ndon't stop his mouth, you're not his friend!  Why shouldn't you be\nin all the world's power, Mr. Wickfield?  Because you have got a\ndaughter.  You and me know what we know, don't we?  Let sleeping\ndogs lie - who wants to rouse 'em?  I don't.  Can't you see I am as\numble as I can be?  I tell you, if I've gone too far, I'm sorry. \nWhat would you have, sir?'\n\n'Oh, Trotwood, Trotwood!'exclaimed Mr. Wickfield, wringing his\nhands.  'What I have come down to be, since I first saw you in this\nhouse!  I was on my downward way then, but the dreary, dreary road\nI have traversed since!  Weak indulgence has ruined me.  Indulgence\nin remembrance, and indulgence in forgetfulness.  My natural grief\nfor my child's mother turned to disease; my natural love for my\nchild turned to disease.  I have infected everything I touched.  I\nhave brought misery on what I dearly love, I know -you know!  I\nthought it possible that I could truly love one creature in the\nworld, and not love the rest; I thought it possible that I could\ntruly mourn for one creature gone out of the world, and not have\nsome part in the grief of all who mourned.  Thus the lessons of my\nlife have been perverted!  I have preyed on my own morbid coward\nheart, and it has preyed on me.  Sordid in my grief, sordid in my\nlove, sordid in my miserable escape from the darker side of both,\noh see the ruin I am, and hate me, shun me!'\n\nHe dropped into a chair, and weakly sobbed.  The excitement into\nwhich he had been roused was leaving him.  Uriah came out of his\ncorner.\n\n'I don't know all I have done, in my fatuity,' said Mr. Wickfield,\nputting out his hands, as if to deprecate my condemnation.  'He\nknows best,' meaning Uriah Heep, 'for he has always been at my\nelbow, whispering me.  You see the millstone that he is about my\nneck.  You find him in my house, you find him in my business.  You\nheard him, but a little time ago.  What need have I to say more!'\n\n'You haven't need to say so much, nor half so much, nor anything at\nall,' observed Uriah, half defiant, and half fawning.  'You\nwouldn't have took it up so, if it hadn't been for the wine. \nYou'll think better of it tomorrow, sir.  If I have said too much,\nor more than I meant, what of it?  I haven't stood by it!'\n\nThe door opened, and Agnes, gliding in, without a vestige of colour\nin her face, put her arm round his neck, and steadily said, 'Papa,\nyou are not well.  Come with me!'\n\nHe laid his head upon her shoulder, as if he were oppressed with\nheavy shame, and went out with her.  Her eyes met mine for but an\ninstant, yet I saw how much she knew of what had passed.\n\n'I didn't expect he'd cut up so rough, Master Copperfield,' said\nUriah.  'But it's nothing.  I'll be friends with him tomorrow. \nIt's for his good.  I'm umbly anxious for his good.'\n\nI gave him no answer, and went upstairs into the quiet room where\nAgnes had so often sat beside me at my books.  Nobody came near me\nuntil late at night.  I took up a book, and tried to read.  I heard\nthe clocks strike twelve, and was still reading, without knowing\nwhat I read, when Agnes touched me.\n\n'You will be going early in the morning, Trotwood!  Let us say\ngood-bye, now!'\n\nShe had been weeping, but her face then was so calm and beautiful!\n\n'Heaven bless you!' she said, giving me her hand.\n\n'Dearest Agnes!' I returned, 'I see you ask me not to speak of\ntonight - but is there nothing to be done?'\n\n'There is God to trust in!' she replied.\n\n'Can I do nothing- I, who come to you with my poor sorrows?'\n\n'And make mine so much lighter,' she replied.  'Dear Trotwood, no!'\n\n'Dear Agnes,' I said, 'it is presumptuous for me, who am so poor in\nall in which you are so rich - goodness, resolution, all noble\nqualities - to doubt or direct you; but you know how much I love\nyou, and how much I owe you.  You will never sacrifice yourself to\na mistaken sense of duty, Agnes?'\n\nMore agitated for a moment than I had ever seen her, she took her\nhands from me, and moved a step back.\n\n'Say you have no such thought, dear Agnes!  Much more than sister!\nThink of the priceless gift of such a heart as yours, of such a\nlove as yours!'\n\nOh! long, long afterwards, I saw that face rise up before me, with\nits momentary look, not wondering, not accusing, not regretting. \nOh, long, long afterwards, I saw that look subside, as it did now,\ninto the lovely smile, with which she told me she had no fear for\nherself - I need have none for her - and parted from me by the name\nof Brother, and was gone!\n\nIt was dark in the morning, when I got upon the coach at the inn\ndoor.  The day was just breaking when we were about to start, and\nthen, as I sat thinking of her, came struggling up the coach side,\nthrough the mingled day and night, Uriah's head.\n\n'Copperfield!' said he, in a croaking whisper, as he hung by the\niron on the roof, 'I thought you'd be glad to hear before you went\noff, that there are no squares broke between us.  I've been into\nhis room already, and we've made it all smooth.  Why, though I'm\numble, I'm useful to him, you know; and he understands his interest\nwhen he isn't in liquor!  What an agreeable man he is, after all,\nMaster Copperfield!'\n\nI obliged myself to say that I was glad he had made his apology.\n\n'Oh, to be sure!' said Uriah.  'When a person's umble, you know,\nwhat's an apology?  So easy!  I say!  I suppose,' with a jerk, 'you\nhave sometimes plucked a pear before it was ripe, Master\nCopperfield?'\n\n'I suppose I have,' I replied.\n\n'I did that last night,' said Uriah; 'but it'll ripen yet!  It only\nwants attending to.  I can wait!'\n\nProfuse in his farewells, he got down again as the coachman got up. \nFor anything I know, he was eating something to keep the raw\nmorning air out; but he made motions with his mouth as if the pear\nwere ripe already, and he were smacking his lips over it.\n\n\n\nCHAPTER 40\nTHE WANDERER\n\n\nWe had a very serious conversation in Buckingham Street that night,\nabout the domestic occurrences I have detailed in the last chapter. \nMy aunt was deeply interested in them, and walked up and down the\nroom with her arms folded, for more than two hours afterwards. \nWhenever she was particularly discomposed, she always performed one\nof these pedestrian feats; and the amount of her discomposure might\nalways be estimated by the duration of her walk.  On this occasion\nshe was so much disturbed in mind as to find it necessary to open\nthe bedroom door, and make a course for herself, comprising the\nfull extent of the bedrooms from wall to wall; and while Mr. Dick\nand I sat quietly by the fire, she kept passing in and out, along\nthis measured track, at an unchanging pace, with the regularity of\na clock-pendulum.\n\nWhen my aunt and I were left to ourselves by Mr. Dick's going out\nto bed, I sat down to write my letter to the two old ladies.  By\nthat time she was tired of walking, and sat by the fire with her\ndress tucked up as usual.  But instead of sitting in her usual\nmanner, holding her glass upon her knee, she suffered it to stand\nneglected on the chimney-piece; and, resting her left elbow on her\nright arm, and her chin on her left hand, looked thoughtfully at\nme.  As often as I raised my eyes from what I was about, I met\nhers.  'I am in the lovingest of tempers, my dear,' she would\nassure me with a nod, 'but I am fidgeted and sorry!'\n\nI had been too busy to observe, until after she was gone to bed,\nthat she had left her night-mixture, as she always called it,\nuntasted on the chimney-piece.  She came to her door, with even\nmore than her usual affection of manner, when I knocked to acquaint\nher with this discovery; but only said, 'I have not the heart to\ntake it, Trot, tonight,' and shook her head, and went in again.\n\nShe read my letter to the two old ladies, in the morning, and\napproved of it.  I posted it, and had nothing to do then, but wait,\nas patiently as I could, for the reply.  I was still in this state\nof expectation, and had been, for nearly a week; when I left the\nDoctor's one snowy night, to walk home.\n\nIt had been a bitter day, and a cutting north-east wind had blown\nfor some time.  The wind had gone down with the light, and so the\nsnow had come on.  It was a heavy, settled fall, I recollect, in\ngreat flakes; and it lay thick.  The noise of wheels and tread of\npeople were as hushed, as if the streets had been strewn that depth\nwith feathers.\n\nMy shortest way home, - and I naturally took the shortest way on\nsuch a night - was through St. Martin's Lane.  Now, the church\nwhich gives its name to the lane, stood in a less free situation at\nthat time; there being no open space before it, and the lane\nwinding down to the Strand.  As I passed the steps of the portico,\nI encountered, at the corner, a woman's face.  It looked in mine,\npassed across the narrow lane, and disappeared.  I knew it.  I had\nseen it somewhere.  But I could not remember where.  I had some\nassociation with it, that struck upon my heart directly; but I was\nthinking of anything else when it came upon me, and was confused.\n\nOn the steps of the church, there was the stooping figure of a man,\nwho had put down some burden on the smooth snow, to adjust it; my\nseeing the face, and my seeing him, were simultaneous.  I don't\nthink I had stopped in my surprise; but, in any case, as I went on,\nhe rose, turned, and came down towards me.  I stood face to face\nwith Mr. Peggotty!\n\nThen I remembered the woman.  It was Martha, to whom Emily had\ngiven the money that night in the kitchen.  Martha Endell - side by\nside with whom, he would not have seen his dear niece, Ham had told\nme, for all the treasures wrecked in the sea.\n\nWe shook hands heartily.  At first, neither of us could speak a\nword.\n\n'Mas'r Davy!' he said, gripping me tight, 'it do my art good to see\nyou, sir.  Well met, well met!'\n\n'Well met, my dear old friend!' said I.\n\n'I had my thowts o' coming to make inquiration for you, sir,\ntonight,' he said, 'but knowing as your aunt was living along wi'\nyou - fur I've been down yonder - Yarmouth way - I was afeerd it\nwas too late.  I should have come early in the morning, sir, afore\ngoing away.'\n\n'Again?' said I.\n\n'Yes, sir,' he replied, patiently shaking his head, 'I'm away\ntomorrow.'\n\n'Where were you going now?' I asked.\n\n'Well!' he replied, shaking the snow out of his long hair, 'I was\na-going to turn in somewheers.'\n\nIn those days there was a side-entrance to the stable-yard of the\nGolden Cross, the inn so memorable to me in connexion with his\nmisfortune, nearly opposite to where we stood.  I pointed out the\ngateway, put my arm through his, and we went across.  Two or three\npublic-rooms opened out of the stable-yard; and looking into one of\nthem, and finding it empty, and a good fire burning, I took him in\nthere.\n\nWhen I saw him in the light, I observed, not only that his hair was\nlong and ragged, but that his face was burnt dark by the sun.  He\nwas greyer, the lines in his face and forehead were deeper, and he\nhad every appearance of having toiled and wandered through all\nvarieties of weather; but he looked very strong, and like a man\nupheld by steadfastness of purpose, whom nothing could tire out. \nHe shook the snow from his hat and clothes, and brushed it away\nfrom his face, while I was inwardly making these remarks.  As he\nsat down opposite to me at a table, with his back to the door by\nwhich we had entered, he put out his rough hand again, and grasped\nmine warmly.\n\n'I'll tell you, Mas'r Davy,' he said, - 'wheer all I've been, and\nwhat-all we've heerd.  I've been fur, and we've heerd little; but\nI'll tell you!'\n\nI rang the bell for something hot to drink.  He would have nothing\nstronger than ale; and while it was being brought, and being warmed\nat the fire, he sat thinking.  There was a fine, massive gravity in\nhis face, I did not venture to disturb.\n\n'When she was a child,' he said, lifting up his head soon after we\nwere left alone, 'she used to talk to me a deal about the sea, and\nabout them coasts where the sea got to be dark blue, and to lay\na-shining and a-shining in the sun.  I thowt, odd times, as her\nfather being drownded made her think on it so much.  I doen't know,\nyou see, but maybe she believed - or hoped - he had drifted out to\nthem parts, where the flowers is always a-blowing, and the country\nbright.'\n\n'It is likely to have been a childish fancy,' I replied.\n\n'When she was - lost,' said Mr. Peggotty, 'I know'd in my mind, as\nhe would take her to them countries.  I know'd in my mind, as he'd\nhave told her wonders of 'em, and how she was to be a lady theer,\nand how he got her to listen to him fust, along o' sech like.  When\nwe see his mother, I know'd quite well as I was right.  I went\nacross-channel to France, and landed theer, as if I'd fell down\nfrom the sky.'\n\nI saw the door move, and the snow drift in.  I saw it move a little\nmore, and a hand softly interpose to keep it open.\n\n'I found out an English gen'leman as was in authority,' said Mr.\nPeggotty, 'and told him I was a-going to seek my niece.  He got me\nthem papers as I wanted fur to carry me through - I doen't rightly\nknow how they're called - and he would have give me money, but that\nI was thankful to have no need on.  I thank him kind, for all he\ndone, I'm sure!  \"I've wrote afore you,\" he says to me, \"and I\nshall speak to many as will come that way, and many will know you,\nfur distant from here, when you're a-travelling alone.\" I told him,\nbest as I was able, what my gratitoode was, and went away through\nFrance.'\n\n'Alone, and on foot?' said I.\n\n'Mostly a-foot,' he rejoined; 'sometimes in carts along with people\ngoing to market; sometimes in empty coaches.  Many mile a day\na-foot, and often with some poor soldier or another, travelling to\nsee his friends.  I couldn't talk to him,' said Mr. Peggotty, 'nor\nhe to me; but we was company for one another, too, along the dusty\nroads.'\n\nI should have known that by his friendly tone.\n\n'When I come to any town,' he pursued, 'I found the inn, and waited\nabout the yard till someone turned up (someone mostly did) as\nknow'd English.  Then I told how that I was on my way to seek my\nniece, and they told me what manner of gentlefolks was in the\nhouse, and I waited to see any as seemed like her, going in or out. \nWhen it warn't Em'ly, I went on agen.  By little and little, when\nI come to a new village or that, among the poor people, I found\nthey know'd about me.  They would set me down at their cottage\ndoors, and give me what-not fur to eat and drink, and show me where\nto sleep; and many a woman, Mas'r Davy, as has had a daughter of\nabout Em'ly's age, I've found a-waiting fur me, at Our Saviour's\nCross outside the village, fur to do me sim'lar kindnesses.  Some\nhas had daughters as was dead.  And God only knows how good them\nmothers was to me!'\n\nIt was Martha at the door.  I saw her haggard, listening face\ndistinctly.  My dread was lest he should turn his head, and see her\ntoo.\n\n'They would often put their children - particular their little\ngirls,' said Mr. Peggotty, 'upon my knee; and many a time you might\nhave seen me sitting at their doors, when night was coming in,\na'most as if they'd been my Darling's children.  Oh, my Darling!'\n\nOverpowered by sudden grief, he sobbed aloud.  I laid my trembling\nhand upon the hand he put before his face.  'Thankee, sir,' he\nsaid, 'doen't take no notice.'\n\nIn a very little while he took his hand away and put it on his\nbreast, and went on with his story.\n'They often walked with me,' he said, 'in the morning, maybe a mile\nor two upon my road; and when we parted, and I said, \"I'm very\nthankful to you!  God bless you!\" they always seemed to understand,\nand answered pleasant.  At last I come to the sea.  It warn't hard,\nyou may suppose, for a seafaring man like me to work his way over\nto Italy.  When I got theer, I wandered on as I had done afore. \nThe people was just as good to me, and I should have gone from town\nto town, maybe the country through, but that I got news of her\nbeing seen among them Swiss mountains yonder.  One as know'd his\nservant see 'em there, all three, and told me how they travelled,\nand where they was.  I made fur them mountains, Mas'r Davy, day and\nnight.  Ever so fur as I went, ever so fur the mountains seemed to\nshift away from me.  But I come up with 'em, and I crossed 'em. \nWhen I got nigh the place as I had been told of, I began to think\nwithin my own self, \"What shall I do when I see her?\"'\n\nThe listening face, insensible to the inclement night, still\ndrooped at the door, and the hands begged me - prayed me - not to\ncast it forth.\n\n'I never doubted her,' said Mr. Peggotty.  'No!  Not a bit!  On'y\nlet her see my face - on'y let her beer my voice - on'y let my\nstanning still afore her bring to her thoughts the home she had\nfled away from, and the child she had been - and if she had growed\nto be a royal lady, she'd have fell down at my feet!  I know'd it\nwell!  Many a time in my sleep had I heerd her cry out, \"Uncle!\"\nand seen her fall like death afore me.  Many a time in my sleep had\nI raised her up, and whispered to her, \"Em'ly, my dear, I am come\nfur to bring forgiveness, and to take you home!\"'\n\nHe stopped and shook his head, and went on with a sigh.\n\n'He was nowt to me now.  Em'ly was all.  I bought a country dress\nto put upon her; and I know'd that, once found, she would walk\nbeside me over them stony roads, go where I would, and never,\nnever, leave me more.  To put that dress upon her, and to cast off\nwhat she wore - to take her on my arm again, and wander towards\nhome - to stop sometimes upon the road, and heal her bruised feet\nand her worse-bruised heart - was all that I thowt of now.  I\ndoen't believe I should have done so much as look at him.  But,\nMas'r Davy, it warn't to be - not yet!  I was too late, and they\nwas gone.  Wheer, I couldn't learn.  Some said beer, some said\ntheer.  I travelled beer, and I travelled theer, but I found no\nEm'ly, and I travelled home.'\n\n'How long ago?' I asked.\n\n'A matter o' fower days,' said Mr. Peggotty.  'I sighted the old\nboat arter dark, and the light a-shining in the winder.  When I\ncome nigh and looked in through the glass, I see the faithful\ncreetur Missis Gummidge sittin' by the fire, as we had fixed upon,\nalone.  I called out, \"Doen't be afeerd!  It's Dan'l!\" and I went\nin.  I never could have thowt the old boat would have been so\nstrange!'\nFrom some pocket in his breast, he took out, with a very careful\nhand a small paper bundle containing two or three letters or little\npackets, which he laid upon the table.\n\n'This fust one come,' he said, selecting it from the rest, 'afore\nI had been gone a week.  A fifty pound Bank note, in a sheet of\npaper, directed to me, and put underneath the door in the night. \nShe tried to hide her writing, but she couldn't hide it from Me!'\n\nHe folded up the note again, with great patience and care, in\nexactly the same form, and laid it on one side.\n\n'This come to Missis Gummidge,' he said, opening another, 'two or\nthree months ago.'After looking at it for some moments, he gave it\nto me, and added in a low voice, 'Be so good as read it, sir.'\n\nI read as follows:\n\n\n'Oh what will you feel when you see this writing, and know it comes\nfrom my wicked hand!  But try, try - not for my sake, but for\nuncle's goodness, try to let your heart soften to me, only for a\nlittle little time!  Try, pray do, to relent towards a miserable\ngirl, and write down on a bit of paper whether he is well, and what\nhe said about me before you left off ever naming me among\nyourselves - and whether, of a night, when it is my old time of\ncoming home, you ever see him look as if he thought of one he used\nto love so dear.  Oh, my heart is breaking when I think about it!\nI am kneeling down to you, begging and praying you not to be as\nhard with me as I deserve - as I well, well, know I deserve - but\nto be so gentle and so good, as to write down something of him, and\nto send it to me.  You need not call me Little, you need not call\nme by the name I have disgraced; but oh, listen to my agony, and\nhave mercy on me so far as to write me some word of uncle, never,\nnever to be seen in this world by my eyes again!\n\n'Dear, if your heart is hard towards me - justly hard, I know -\nbut, listen, if it is hard, dear, ask him I have wronged the most\n- him whose wife I was to have been - before you quite decide\nagainst my poor poor prayer!  If he should be so compassionate as\nto say that you might write something for me to read - I think he\nwould, oh, I think he would, if you would only ask him, for he\nalways was so brave and so forgiving - tell him then (but not\nelse), that when I hear the wind blowing at night, I feel as if it\nwas passing angrily from seeing him and uncle, and was going up to\nGod against me.  Tell him that if I was to die tomorrow (and oh, if\nI was fit, I would be so glad to die!) I would bless him and uncle\nwith my last words, and pray for his happy home with my last\nbreath!'\n\n\nSome money was enclosed in this letter also.  Five pounds.  It was\nuntouched like the previous sum, and he refolded it in the same\nway.  Detailed instructions were added relative to the address of\na reply, which, although they betrayed the intervention of several\nhands, and made it difficult to arrive at any very probable\nconclusion in reference to her place of concealment, made it at\nleast not unlikely that she had written from that spot where she\nwas stated to have been seen.\n\n'What answer was sent?' I inquired of Mr. Peggotty.\n\n'Missis Gummidge,' he returned, 'not being a good scholar, sir, Ham\nkindly drawed it out, and she made a copy on it.  They told her I\nwas gone to seek her, and what my parting words was.'\n\n'Is that another letter in your hand?' said I.\n\n'It's money, sir,' said Mr. Peggotty, unfolding it a little way. \n'Ten pound, you see.  And wrote inside, \"From a true friend,\" like\nthe fust.  But the fust was put underneath the door, and this come\nby the post, day afore yesterday.  I'm a-going to seek her at the\npost-mark.'\n\nHe showed it to me.  It was a town on the Upper Rhine.  He had\nfound out, at Yarmouth, some foreign dealers who knew that country,\nand they had drawn him a rude map on paper, which he could very\nwell understand.  He laid it between us on the table; and, with his\nchin resting on one hand, tracked his course upon it with the\nother.\n\nI asked him how Ham was?  He shook his head.\n\n'He works,' he said, 'as bold as a man can.  His name's as good, in\nall that part, as any man's is, anywheres in the wureld.  Anyone's\nhand is ready to help him, you understand, and his is ready to help\nthem.  He's never been heerd fur to complain.  But my sister's\nbelief is ('twixt ourselves) as it has cut him deep.'\n\n'Poor fellow, I can believe it!'\n\n'He ain't no care, Mas'r Davy,' said Mr. Peggotty in a solemn\nwhisper - 'kinder no care no-how for his life.  When a man's wanted\nfor rough sarvice in rough weather, he's theer.  When there's hard\nduty to be done with danger in it, he steps for'ard afore all his\nmates.  And yet he's as gentle as any child.  There ain't a child\nin Yarmouth that doen't know him.'\n\nHe gathered up the letters thoughtfully, smoothing them with his\nhand; put them into their little bundle; and placed it tenderly in\nhis breast again.  The face was gone from the door.  I still saw\nthe snow drifting in; but nothing else was there.\n\n'Well!' he said, looking to his bag, 'having seen you tonight,\nMas'r Davy (and that doos me good!), I shall away betimes tomorrow\nmorning.  You have seen what I've got heer'; putting his hand on\nwhere the little packet lay; 'all that troubles me is, to think\nthat any harm might come to me, afore that money was give back.  If\nI was to die, and it was lost, or stole, or elseways made away\nwith, and it was never know'd by him but what I'd took it, I\nbelieve the t'other wureld wouldn't hold me!  I believe I must come\nback!'\n\nHe rose, and I rose too; we grasped each other by the hand again,\nbefore going out.\n\n'I'd go ten thousand mile,' he said, 'I'd go till I dropped dead,\nto lay that money down afore him.  If I do that, and find my Em'ly,\nI'm content.  If I doen't find her, maybe she'll come to hear,\nsometime, as her loving uncle only ended his search for her when he\nended his life; and if I know her, even that will turn her home at\nlast!'\n\nAs he went out into the rigorous night, I saw the lonely figure\nflit away before us.  I turned him hastily on some pretence, and\nheld him in conversation until it was gone.\n\nHe spoke of a traveller's house on the Dover Road, where he knew he\ncould find a clean, plain lodging for the night.  I went with him\nover Westminster Bridge, and parted from him on the Surrey shore. \nEverything seemed, to my imagination, to be hushed in reverence for\nhim, as he resumed his solitary journey through the snow.\n\nI returned to the inn yard, and, impressed by my remembrance of the\nface, looked awfully around for it.  It was not there.  The snow\nhad covered our late footprints; my new track was the only one to\nbe seen; and even that began to die away (it snowed so fast) as I\nlooked back over my shoulder.\n\n\n\nCHAPTER 41\nDORA'S AUNTS\n\n\nAt last, an answer came from the two old ladies.  They presented\ntheir compliments to Mr. Copperfield, and informed him that they\nhad given his letter their best consideration, 'with a view to the\nhappiness of both parties' - which I thought rather an alarming\nexpression, not only because of the use they had made of it in\nrelation to the family difference before-mentioned, but because I\nhad (and have all my life) observed that conventional phrases are\na sort of fireworks, easily let off, and liable to take a great\nvariety of shapes and colours not at all suggested by their\noriginal form.  The Misses Spenlow added that they begged to\nforbear expressing, 'through the medium of correspondence', an\nopinion on the subject of Mr. Copperfield's communication; but that\nif Mr. Copperfield would do them the favour to call, upon a certain\nday (accompanied, if he thought proper, by a confidential friend),\nthey would be happy to hold some conversation on the subject.\n\nTo this favour, Mr. Copperfield immediately replied, with his\nrespectful compliments, that he would have the honour of waiting on\nthe Misses Spenlow, at the time appointed; accompanied, in\naccordance with their kind permission, by his friend Mr. Thomas\nTraddles of the Inner Temple.  Having dispatched which missive, Mr.\nCopperfield fell into a condition of strong nervous agitation; and\nso remained until the day arrived.\n\nIt was a great augmentation of my uneasiness to be bereaved, at\nthis eventful crisis, of the inestimable services of Miss Mills. \nBut Mr. Mills, who was always doing something or other to annoy me\n- or I felt as if he were, which was the same thing - had brought\nhis conduct to a climax, by taking it into his head that he would\ngo to India.  Why should he go to India, except to harass me?  To\nbe sure he had nothing to do with any other part of the world, and\nhad a good deal to do with that part; being entirely in the India\ntrade, whatever that was (I had floating dreams myself concerning\ngolden shawls and elephants' teeth); having been at Calcutta in his\nyouth; and designing now to go out there again, in the capacity of\nresident partner.  But this was nothing to me.  However, it was so\nmuch to him that for India he was bound, and Julia with him; and\nJulia went into the country to take leave of her relations; and the\nhouse was put into a perfect suit of bills, announcing that it was\nto be let or sold, and that the furniture (Mangle and all) was to\nbe taken at a valuation.  So, here was another earthquake of which\nI became the sport, before I had recovered from the shock of its\npredecessor!\n\nI was in several minds how to dress myself on the important day;\nbeing divided between my desire to appear to advantage, and my\napprehensions of putting on anything that might impair my severely\npractical character in the eyes of the Misses Spenlow.  I\nendeavoured to hit a happy medium between these two extremes; my\naunt approved the result; and Mr. Dick threw one of his shoes after\nTraddles and me, for luck, as we went downstairs.\n\nExcellent fellow as I knew Traddles to be, and warmly attached to\nhim as I was, I could not help wishing, on that delicate occasion,\nthat he had never contracted the habit of brushing his hair so very\nupright.  It gave him a surprised look - not to say a hearth-broomy\nkind of expression - which, my apprehensions whispered, might be\nfatal to us.\n\nI took the liberty of mentioning it to Traddles, as we were walking\nto Putney; and saying that if he WOULD smooth it down a little -\n\n'My dear Copperfield,' said Traddles, lifting off his hat, and\nrubbing his hair all kinds of ways, 'nothing would give me greater\npleasure.  But it won't.'\n\n'Won't be smoothed down?' said I.\n\n'No,' said Traddles.  'Nothing will induce it.  If I was to carry\na half-hundred-weight upon it, all the way to Putney, it would be\nup again the moment the weight was taken off.  You have no idea\nwhat obstinate hair mine is, Copperfield.  I am quite a fretful\nporcupine.'\n\nI was a little disappointed, I must confess, but thoroughly charmed\nby his good-nature too.  I told him how I esteemed his good-nature;\nand said that his hair must have taken all the obstinacy out of his\ncharacter, for he had none.\n\n'Oh!' returned Traddles, laughing.  'I assure you, it's quite an\nold story, my unfortunate hair.  My uncle's wife couldn't bear it. \nShe said it exasperated her.  It stood very much in my way, too,\nwhen I first fell in love with Sophy.  Very much!'\n\n'Did she object to it?'\n\n'SHE didn't,' rejoined Traddles; 'but her eldest sister - the one\nthat's the Beauty - quite made game of it, I understand.  In fact,\nall the sisters laugh at it.'\n\n'Agreeable!' said I.\n\n'Yes,' returned Traddles with perfect innocence, 'it's a joke for\nus.  They pretend that Sophy has a lock of it in her desk, and is\nobliged to shut it in a clasped book, to keep it down.  We laugh\nabout it.'\n\n'By the by, my dear Traddles,' said I, 'your experience may suggest\nsomething to me.  When you became engaged to the young lady whom\nyou have just mentioned, did you make a regular proposal to her\nfamily?  Was there anything like - what we are going through today,\nfor instance?' I added, nervously.\n\n'Why,' replied Traddles, on whose attentive face a thoughtful shade\nhad stolen, 'it was rather a painful transaction, Copperfield, in\nmy case.  You see, Sophy being of so much use in the family, none\nof them could endure the thought of her ever being married. \nIndeed, they had quite settled among themselves that she never was\nto be married, and they called her the old maid.  Accordingly, when\nI mentioned it, with the greatest precaution, to Mrs. Crewler -'\n\n'The mama?' said I.\n\n'The mama,' said Traddles - 'Reverend Horace Crewler - when I\nmentioned it with every possible precaution to Mrs. Crewler, the\neffect upon her was such that she gave a scream and became\ninsensible.  I couldn't approach the subject again, for months.'\n\n'You did at last?' said I.\n\n'Well, the Reverend Horace did,' said Traddles.  'He is an\nexcellent man, most exemplary in every way; and he pointed out to\nher that she ought, as a Christian, to reconcile herself to the\nsacrifice (especially as it was so uncertain), and to bear no\nuncharitable feeling towards me.  As to myself, Copperfield, I give\nyou my word, I felt a perfect bird of prey towards the family.'\n\n'The sisters took your part, I hope, Traddles?'\n\n'Why, I can't say they did,' he returned.  'When we had\ncomparatively reconciled Mrs. Crewler to it, we had to break it to\nSarah.  You recollect my mentioning Sarah, as the one that has\nsomething the matter with her spine?'\n\n'Perfectly!'\n\n'She clenched both her hands,' said Traddles, looking at me in\ndismay; 'shut her eyes; turned lead-colour; became perfectly stiff;\nand took nothing for two days but toast-and-water, administered\nwith a tea-spoon.'\n\n'What a very unpleasant girl, Traddles!' I remarked.\n\n'Oh, I beg your pardon, Copperfield!' said Traddles.  'She is a\nvery charming girl, but she has a great deal of feeling.  In fact,\nthey all have.  Sophy told me afterwards, that the self-reproach\nshe underwent while she was in attendance upon Sarah, no words\ncould describe.  I know it must have been severe, by my own\nfeelings, Copperfield; which were like a criminal's.  After Sarah\nwas restored, we still had to break it to the other eight; and it\nproduced various effects upon them of a most pathetic nature.  The\ntwo little ones, whom Sophy educates, have only just left off\nde-testing me.'\n\n'At any rate, they are all reconciled to it now, I hope?' said I.\n\n'Ye-yes, I should say they were, on the whole, resigned to it,'\nsaid Traddles, doubtfully.  'The fact is, we avoid mentioning the\nsubject; and my unsettled prospects and indifferent circumstances\nare a great consolation to them.  There will be a deplorable scene,\nwhenever we are married.  It will be much more like a funeral, than\na wedding.  And they'll all hate me for taking her away!'\n\nHis honest face, as he looked at me with a serio-comic shake of his\nhead, impresses me more in the remembrance than it did in the\nreality, for I was by this time in a state of such excessive\ntrepidation and wandering of mind, as to be quite unable to fix my\nattention on anything.  On our approaching the house where the\nMisses Spenlow lived, I was at such a discount in respect of my\npersonal looks and presence of mind, that Traddles proposed a\ngentle stimulant in the form of a glass of ale.  This having been\nadministered at a neighbouring public-house, he conducted me, with\ntottering steps, to the Misses Spenlow's door.\n\nI had a vague sensation of being, as it were, on view, when the\nmaid opened it; and of wavering, somehow, across a hall with a\nweather-glass in it, into a quiet little drawing-room on the\nground-floor, commanding a neat garden.  Also of sitting down here,\non a sofa, and seeing Traddles's hair start up, now his hat was\nremoved, like one of those obtrusive little figures made of\nsprings, that fly out of fictitious snuff-boxes when the lid is\ntaken off.  Also of hearing an old-fashioned clock ticking away on\nthe chimney-piece, and trying to make it keep time to the jerking\nof my heart, - which it wouldn't.  Also of looking round the room\nfor any sign of Dora, and seeing none.  Also of thinking that Jip\nonce barked in the distance, and was instantly choked by somebody. \nUltimately I found myself backing Traddles into the fireplace, and\nbowing in great confusion to two dry little elderly ladies, dressed\nin black, and each looking wonderfully like a preparation in chip\nor tan of the late Mr. Spenlow.\n\n'Pray,' said one of the two little ladies, 'be seated.'\n\nWhen I had done tumbling over Traddles, and had sat upon something\nwhich was not a cat - my first seat was - I so far recovered my\nsight, as to perceive that Mr. Spenlow had evidently been the\nyoungest of the family; that there was a disparity of six or eight\nyears between the two sisters; and that the younger appeared to be\nthe manager of the conference, inasmuch as she had my letter in her\nhand - so familiar as it looked to me, and yet so odd! - and was\nreferring to it through an eye-glass.  They were dressed alike, but\nthis sister wore her dress with a more youthful air than the other;\nand perhaps had a trifle more frill, or tucker, or brooch, or\nbracelet, or some little thing of that kind, which made her look\nmore lively.  They were both upright in their carriage, formal,\nprecise, composed, and quiet.  The sister who had not my letter,\nhad her arms crossed on her breast, and resting on each other, like\nan Idol.\n\n'Mr. Copperfield, I believe,' said the sister who had got my\nletter, addressing herself to Traddles.\n\nThis was a frightful beginning.  Traddles had to indicate that I\nwas Mr. Copperfield, and I had to lay claim to myself, and they had\nto divest themselves of a preconceived opinion that Traddles was\nMr. Copperfield, and altogether we were in a nice condition.  To\nimprove it, we all distinctly heard Jip give two short barks, and\nreceive another choke.\n\n'Mr. Copperfield!' said the sister with the letter.\n\nI did something - bowed, I suppose - and was all attention, when\nthe other sister struck in.\n\n'My sister Lavinia,' said she 'being conversant with matters of\nthis nature, will state what we consider most calculated to promote\nthe happiness of both parties.'\n\nI discovered afterwards that Miss Lavinia was an authority in\naffairs of the heart, by reason of there having anciently existed\na certain Mr. Pidger, who played short whist, and was supposed to\nhave been enamoured of her.  My private opinion is, that this was\nentirely a gratuitous assumption, and that Pidger was altogether\ninnocent of any such sentiments - to which he had never given any\nsort of expression that I could ever hear of.  Both Miss Lavinia\nand Miss Clarissa had a superstition, however, that he would have\ndeclared his passion, if he had not been cut short in his youth (at\nabout sixty) by over-drinking his constitution, and over-doing an\nattempt to set it right again by swilling Bath water.  They had a\nlurking suspicion even, that he died of secret love; though I must\nsay there was a picture of him in the house with a damask nose,\nwhich concealment did not appear to have ever preyed upon.\n\n'We will not,' said Miss Lavinia, 'enter on the past history of\nthis matter.  Our poor brother Francis's death has cancelled that.'\n\n'We had not,' said Miss Clarissa, 'been in the habit of frequent\nassociation with our brother Francis; but there was no decided\ndivision or disunion between us.  Francis took his road; we took\nours.  We considered it conducive to the happiness of all parties\nthat it should be so.  And it was so.'\n\nEach of the sisters leaned a little forward to speak, shook her\nhead after speaking, and became upright again when silent.  Miss\nClarissa never moved her arms.  She sometimes played tunes upon\nthem with her fingers - minuets and marches I should think - but\nnever moved them.\n\n'Our niece's position, or supposed position, is much changed by our\nbrother Francis's death,' said Miss Lavinia; 'and therefore we\nconsider our brother's opinions as regarded her position as being\nchanged too.  We have no reason to doubt, Mr. Copperfield, that you\nare a young gentleman possessed of good qualities and honourable\ncharacter; or that you have an affection - or are fully persuaded\nthat you have an affection - for our niece.'\n\nI replied, as I usually did whenever I had a chance, that nobody\nhad ever loved anybody else as I loved Dora.  Traddles came to my\nassistance with a confirmatory murmur.\n\nMiss Lavinia was going on to make some rejoinder, when Miss\nClarissa, who appeared to be incessantly beset by a desire to refer\nto her brother Francis, struck in again:\n\n'If Dora's mama,' she said, 'when she married our brother Francis,\nhad at once said that there was not room for the family at the\ndinner-table, it would have been better for the happiness of all\nparties.'\n\n'Sister Clarissa,' said Miss Lavinia.  'Perhaps we needn't mind\nthat now.'\n\n'Sister Lavinia,' said Miss Clarissa, 'it belongs to the subject. \nWith your branch of the subject, on which alone you are competent\nto speak, I should not think of interfering.  On this branch of the\nsubject I have a voice and an opinion.  It would have been better\nfor the happiness of all parties, if Dora's mama, when she married\nour brother Francis, had mentioned plainly what her intentions\nwere.  We should then have known what we had to expect.  We should\nhave said \"Pray do not invite us, at any time\"; and all possibility\nof misunderstanding would have been avoided.'\n\nWhen Miss Clarissa had shaken her head, Miss Lavinia resumed: again\nreferring to my letter through her eye-glass.  They both had little\nbright round twinkling eyes, by the way, which were like birds'\neyes.  They were not unlike birds, altogether; having a sharp,\nbrisk, sudden manner, and a little short, spruce way of adjusting\nthemselves, like canaries.\n\nMiss Lavinia, as I have said, resumed:\n\n'You ask permission of my sister Clarissa and myself, Mr.\nCopperfield, to visit here, as the accepted suitor of our niece.'\n\n'If our brother Francis,' said Miss Clarissa, breaking out again,\nif I may call anything so calm a breaking out, 'wished to surround\nhimself with an atmosphere of Doctors' Commons, and of Doctors'\nCommons only, what right or desire had we to object?  None, I am\nsure.  We have ever been far from wishing to obtrude ourselves on\nanyone.  But why not say so?  Let our brother Francis and his wife\nhave their society.  Let my sister Lavinia and myself have our\nsociety.  We can find it for ourselves, I hope.'\n\nAs this appeared to be addressed to Traddles and me, both Traddles\nand I made some sort of reply.  Traddles was inaudible.  I think I\nobserved, myself, that it was highly creditable to all concerned. \nI don't in the least know what I meant.\n\n'Sister Lavinia,' said Miss Clarissa, having now relieved her mind,\n'you can go on, my dear.'\n\nMiss Lavinia proceeded:\n\n'Mr. Copperfield, my sister Clarissa and I have been very careful\nindeed in considering this letter; and we have not considered it\nwithout finally showing it to our niece, and discussing it with our\nniece.  We have no doubt that you think you like her very much.'\n\n'Think, ma'am,' I rapturously began, 'oh! -'\n\nBut Miss Clarissa giving me a look (just like a sharp canary), as\nrequesting that I would not interrupt the oracle, I begged pardon.\n\n'Affection,' said Miss Lavinia, glancing at her sister for\ncorroboration, which she gave in the form of a little nod to every\nclause, 'mature affection, homage, devotion, does not easily\nexpress itself.  Its voice is low.  It is modest and retiring, it\nlies in ambush, waits and waits.  Such is the mature fruit. \nSometimes a life glides away, and finds it still ripening in the\nshade.'\n\nOf course I did not understand then that this was an allusion to\nher supposed experience of the stricken Pidger; but I saw, from the\ngravity with which Miss Clarissa nodded her head, that great weight\nwas attached to these words.\n\n'The light - for I call them, in comparison with such sentiments,\nthe light - inclinations of very young people,' pursued Miss\nLavinia, 'are dust, compared to rocks.  It is owing to the\ndifficulty of knowing whether they are likely to endure or have any\nreal foundation, that my sister Clarissa and myself have been very\nundecided how to act, Mr. Copperfield, and Mr. -'\n\n'Traddles,' said my friend, finding himself looked at.\n\n'I beg pardon.  Of the Inner Temple, I believe?' said Miss\nClarissa, again glancing at my letter.\n\nTraddles said 'Exactly so,' and became pretty red in the face.\n\nNow, although I had not received any express encouragement as yet,\nI fancied that I saw in the two little sisters, and particularly in\nMiss Lavinia, an intensified enjoyment of this new and fruitful\nsubject of domestic interest, a settling down to make the most of\nit, a disposition to pet it, in which there was a good bright ray\nof hope.  I thought I perceived that Miss Lavinia would have\nuncommon satisfaction in superintending two young lovers, like Dora\nand me; and that Miss Clarissa would have hardly less satisfaction\nin seeing her superintend us, and in chiming in with her own\nparticular department of the subject whenever that impulse was\nstrong upon her.  This gave me courage to protest most vehemently\nthat I loved Dora better than I could tell, or anyone believe; that\nall my friends knew how I loved her; that my aunt, Agnes, Traddles,\neveryone who knew me, knew how I loved her, and how earnest my love\nhad made me.  For the truth of this, I appealed to Traddles.  And\nTraddles, firing up as if he were plunging into a Parliamentary\nDebate, really did come out nobly: confirming me in good round\nterms, and in a plain sensible practical manner, that evidently\nmade a favourable impression.\n\n'I speak, if I may presume to say so, as one who has some little\nexperience of such things,' said Traddles, 'being myself engaged to\na young lady - one of ten, down in Devonshire - and seeing no\nprobability, at present, of our engagement coming to a\ntermination.'\n\n'You may be able to confirm what I have said, Mr. Traddles,'\nobserved Miss Lavinia, evidently taking a new interest in him, 'of\nthe affection that is modest and retiring; that waits and waits?'\n\n'Entirely, ma'am,' said Traddles.\n\nMiss Clarissa looked at Miss Lavinia, and shook her head gravely. \nMiss Lavinia looked consciously at Miss Clarissa, and heaved a\nlittle sigh.\n'Sister Lavinia,' said Miss Clarissa, 'take my smelling-bottle.'\n\nMiss Lavinia revived herself with a few whiffs of aromatic vinegar\n- Traddles and I looking on with great solicitude the while; and\nthen went on to say, rather faintly:\n\n'My sister and myself have been in great doubt, Mr. Traddles, what\ncourse we ought to take in reference to the likings, or imaginary\nlikings, of such very young people as your friend Mr. Copperfield\nand our niece.'\n\n'Our brother Francis's child,' remarked Miss Clarissa.  'If our\nbrother Francis's wife had found it convenient in her lifetime\n(though she had an unquestionable right to act as she thought best)\nto invite the family to her dinner-table, we might have known our\nbrother Francis's child better at the present moment.  Sister\nLavinia, proceed.'\n\nMiss Lavinia turned my letter, so as to bring the superscription\ntowards herself, and referred through her eye-glass to some\norderly-looking notes she had made on that part of it.\n\n'It seems to us,' said she, 'prudent, Mr. Traddles, to bring these\nfeelings to the test of our own observation.  At present we know\nnothing of them, and are not in a situation to judge how much\nreality there may be in them.  Therefore we are inclined so far to\naccede to Mr. Copperfield's proposal, as to admit his visits here.'\n\n'I shall never, dear ladies,' I exclaimed, relieved of an immense\nload of apprehension, 'forget your kindness!'\n\n'But,' pursued Miss Lavinia, - 'but, we would prefer to regard\nthose visits, Mr. Traddles, as made, at present, to us.  We must\nguard ourselves from recognizing any positive engagement between\nMr. Copperfield and our niece, until we have had an opportunity -'\n\n'Until YOU have had an opportunity, sister Lavinia,' said Miss\nClarissa.\n\n'Be it so,' assented Miss Lavinia, with a sigh - 'until I have had\nan opportunity of observing them.'\n\n'Copperfield,' said Traddles, turning to me, 'you feel, I am sure,\nthat nothing could be more reasonable or considerate.'\n\n'Nothing!' cried I.  'I am deeply sensible of it.'\n\n'In this position of affairs,' said Miss Lavinia, again referring\nto her notes, 'and admitting his visits on this understanding only,\nwe must require from Mr. Copperfield a distinct assurance, on his\nword of honour, that no communication of any kind shall take place\nbetween him and our niece without our knowledge.  That no project\nwhatever shall be entertained with regard to our niece, without\nbeing first submitted to us -'\n'To you, sister Lavinia,' Miss Clarissa interposed.\n\n'Be it so, Clarissa!' assented Miss Lavinia resignedly - 'to me -\nand receiving our concurrence.  We must make this a most express\nand serious stipulation, not to be broken on any account.  We\nwished Mr. Copperfield to be accompanied by some confidential\nfriend today,' with an inclination of her head towards Traddles,\nwho bowed, 'in order that there might be no doubt or misconception\non this subject.  If Mr. Copperfield, or if you, Mr. Traddles, feel\nthe least scruple, in giving this promise, I beg you to take time\nto consider it.'\n\nI exclaimed, in a state of high ecstatic fervour, that not a\nmoment's consideration could be necessary.  I bound myself by the\nrequired promise, in a most impassioned manner; called upon\nTraddles to witness it; and denounced myself as the most atrocious\nof characters if I ever swerved from it in the least degree.\n\n'Stay!' said Miss Lavinia, holding up her hand; 'we resolved,\nbefore we had the pleasure of receiving you two gentlemen, to leave\nyou alone for a quarter of an hour, to consider this point.  You\nwill allow us to retire.'\n\nIt was in vain for me to say that no consideration was necessary. \nThey persisted in withdrawing for the specified time.  Accordingly,\nthese little birds hopped out with great dignity; leaving me to\nreceive the congratulations of Traddles, and to feel as if I were\ntranslated to regions of exquisite happiness.  Exactly at the\nexpiration of the quarter of an hour, they reappeared with no less\ndignity than they had disappeared.  They had gone rustling away as\nif their little dresses were made of autumn-leaves: and they came\nrustling back, in like manner.\n\nI then bound myself once more to the prescribed conditions.\n\n'Sister Clarissa,' said Miss Lavinia, 'the rest is with you.'\n\nMiss Clarissa, unfolding her arms for the first time, took the\nnotes and glanced at them.\n\n'We shall be happy,' said Miss Clarissa, 'to see Mr. Copperfield to\ndinner, every Sunday, if it should suit his convenience.  Our hour\nis three.'\n\nI bowed.\n\n'In the course of the week,' said Miss Clarissa, 'we shall be happy\nto see Mr. Copperfield to tea.  Our hour is half-past six.'\n\nI bowed again.\n\n'Twice in the week,' said Miss Clarissa, 'but, as a rule, not\noftener.'\n\nI bowed again.\n\n'Miss Trotwood,' said Miss Clarissa, 'mentioned in Mr.\nCopperfield's letter, will perhaps call upon us.  When visiting is\nbetter for the happiness of all parties, we are glad to receive\nvisits, and return them.  When it is better for the happiness of\nall parties that no visiting should take place, (as in the case of\nour brother Francis, and his establishment) that is quite\ndifferent.'\n\nI intimated that my aunt would be proud and delighted to make their\nacquaintance; though I must say I was not quite sure of their\ngetting on very satisfactorily together.  The conditions being now\nclosed, I expressed my acknowledgements in the warmest manner; and,\ntaking the hand, first of Miss Clarissa, and then of Miss Lavinia,\npressed it, in each case, to my lips.\n\nMiss Lavinia then arose, and begging Mr. Traddles to excuse us for\na minute, requested me to follow her.  I obeyed, all in a tremble,\nand was conducted into another room.  There I found my blessed\ndarling stopping her ears behind the door, with her dear little\nface against the wall; and Jip in the plate-warmer with his head\ntied up in a towel.\n\nOh!  How beautiful she was in her black frock, and how she sobbed\nand cried at first, and wouldn't come out from behind the door! \nHow fond we were of one another, when she did come out at last; and\nwhat a state of bliss I was in, when we took Jip out of the\nplate-warmer, and restored him to the light, sneezing very much,\nand were all three reunited!\n\n'My dearest Dora!  Now, indeed, my own for ever!'\n\n'Oh, DON'T!' pleaded Dora.  'Please!'\n\n'Are you not my own for ever, Dora?'\n\n'Oh yes, of course I am!' cried Dora, 'but I am so frightened!'\n\n'Frightened, my own?'\n\n'Oh yes!  I don't like him,' said Dora.  'Why don't he go?'\n\n'Who, my life?'\n\n'Your friend,' said Dora.  'It isn't any business of his.  What a\nstupid he must be!'\n\n'My love!' (There never was anything so coaxing as her childish\nways.) 'He is the best creature!'\n\n'Oh, but we don't want any best creatures!' pouted Dora.\n\n'My dear,' I argued, 'you will soon know him well, and like him of\nall things.  And here is my aunt coming soon; and you'll like her\nof all things too, when you know her.'\n\n'No, please don't bring her!' said Dora, giving me a horrified\nlittle kiss, and folding her hands.  'Don't.  I know she's a\nnaughty, mischief-making old thing!  Don't let her come here,\nDoady!' which was a corruption of David.\n\nRemonstrance was of no use, then; so I laughed, and admired, and\nwas very much in love and very happy; and she showed me Jip's new\ntrick of standing on his hind legs in a corner - which he did for\nabout the space of a flash of lightning, and then fell down - and\nI don't know how long I should have stayed there, oblivious of\nTraddles, if Miss Lavinia had not come in to take me away.  Miss\nLavinia was very fond of Dora (she told me Dora was exactly like\nwhat she had been herself at her age - she must have altered a good\ndeal), and she treated Dora just as if she had been a toy.  I\nwanted to persuade Dora to come and see Traddles, but on my\nproposing it she ran off to her own room and locked herself in; so\nI went to Traddles without her, and walked away with him on air.\n\n'Nothing could be more satisfactory,' said Traddles; 'and they are\nvery agreeable old ladies, I am sure.  I shouldn't be at all\nsurprised if you were to be married years before me, Copperfield.'\n\n'Does your Sophy play on any instrument, Traddles?' I inquired, in\nthe pride of my heart.\n\n'She knows enough of the piano to teach it to her little sisters,'\nsaid Traddles.\n\n'Does she sing at all?' I asked.\n\n'Why, she sings ballads, sometimes, to freshen up the others a\nlittle when they're out of spirits,' said Traddles.  'Nothing\nscientific.'\n\n'She doesn't sing to the guitar?' said I.\n\n'Oh dear no!' said Traddles.\n\n'Paint at all?'\n\n'Not at all,' said Traddles.\n\nI promised Traddles that he should hear Dora sing, and see some of\nher flower-painting.  He said he should like it very much, and we\nwent home arm in arm in great good humour and delight.  I\nencouraged him to talk about Sophy, on the way; which he did with\na loving reliance on her that I very much admired.  I compared her\nin my mind with Dora, with considerable inward satisfaction; but I\ncandidly admitted to myself that she seemed to be an excellent kind\nof girl for Traddles, too.\n\nOf course my aunt was immediately made acquainted with the\nsuccessful issue of the conference, and with all that had been said\nand done in the course of it.  She was happy to see me so happy,\nand promised to call on Dora's aunts without loss of time.  But she\ntook such a long walk up and down our rooms that night, while I was\nwriting to Agnes, that I began to think she meant to walk till\nmorning.\n\nMy letter to Agnes was a fervent and grateful one, narrating all\nthe good effects that had resulted from my following her advice. \nShe wrote, by return of post, to me.  Her letter was hopeful,\nearnest, and cheerful.  She was always cheerful from that time.\n\nI had my hands more full than ever, now.  My daily journeys to\nHighgate considered, Putney was a long way off; and I naturally\nwanted to go there as often as I could.  The proposed tea-drinkings\nbeing quite impracticable, I compounded with Miss Lavinia for\npermission to visit every Saturday afternoon, without detriment to\nmy privileged Sundays.  So, the close of every week was a delicious\ntime for me; and I got through the rest of the week by looking\nforward to it.\n\nI was wonderfully relieved to find that my aunt and Dora's aunts\nrubbed on, all things considered, much more smoothly than I could\nhave expected.  My aunt made her promised visit within a few days\nof the conference; and within a few more days, Dora's aunts called\nupon her, in due state and form.  Similar but more friendly\nexchanges took place afterwards, usually at intervals of three or\nfour weeks.  I know that my aunt distressed Dora's aunts very much,\nby utterly setting at naught the dignity of fly-conveyance, and\nwalking out to Putney at extraordinary times, as shortly after\nbreakfast or just before tea; likewise by wearing her bonnet in any\nmanner that happened to be comfortable to her head, without at all\ndeferring to the prejudices of civilization on that subject.  But\nDora's aunts soon agreed to regard my aunt as an eccentric and\nsomewhat masculine lady, with a strong understanding; and although\nmy aunt occasionally ruffled the feathers of Dora's aunts, by\nexpressing heretical opinions on various points of ceremony, she\nloved me too well not to sacrifice some of her little peculiarities\nto the general harmony.\n\nThe only member of our small society who positively refused to\nadapt himself to circumstances, was Jip.  He never saw my aunt\nwithout immediately displaying every tooth in his head, retiring\nunder a chair, and growling incessantly: with now and then a\ndoleful howl, as if she really were too much for his feelings.  All\nkinds of treatment were tried with him, coaxing, scolding,\nslapping, bringing him to Buckingham Street (where he instantly\ndashed at the two cats, to the terror of all beholders); but he\nnever could prevail upon himself to bear my aunt's society.  He\nwould sometimes think he had got the better of his objection, and\nbe amiable for a few minutes; and then would put up his snub nose,\nand howl to that extent, that there was nothing for it but to blind\nhim and put him in the plate-warmer.  At length, Dora regularly\nmuffled him in a towel and shut him up there, whenever my aunt was\nreported at the door.\n\nOne thing troubled me much, after we had fallen into this quiet\ntrain.  It was, that Dora seemed by one consent to be regarded like\na pretty toy or plaything.  My aunt, with whom she gradually became\nfamiliar, always called her Little Blossom; and the pleasure of\nMiss Lavinia's life was to wait upon her, curl her hair, make\nornaments for her, and treat her like a pet child.  What Miss\nLavinia did, her sister did as a matter of course.  It was very odd\nto me; but they all seemed to treat Dora, in her degree, much as\nDora treated Jip in his.\n\nI made up my mind to speak to Dora about this; and one day when we\nwere out walking (for we were licensed by Miss Lavinia, after a\nwhile, to go out walking by ourselves), I said to her that I wished\nshe could get them to behave towards her differently.\n\n'Because you know, my darling,' I remonstrated, 'you are not a\nchild.'\n\n'There!' said Dora.  'Now you're going to be cross!'\n\n'Cross, my love?'\n\n'I am sure they're very kind to me,' said Dora, 'and I am very\nhappy -'\n\n'Well!  But my dearest life!' said I, 'you might be very happy, and\nyet be treated rationally.'\n\nDora gave me a reproachful look - the prettiest look! - and then\nbegan to sob, saying, if I didn't like her, why had I ever wanted\nso much to be engaged to her?  And why didn't I go away, now, if I\ncouldn't bear her?\n\nWhat could I do, but kiss away her tears, and tell her how I doted\non her, after that!\n\n'I am sure I am very affectionate,' said Dora; 'you oughtn't to be\ncruel to me, Doady!'\n\n'Cruel, my precious love!  As if I would - or could - be cruel to\nyou, for the world!'\n\n'Then don't find fault with me,' said Dora, making a rosebud of her\nmouth; 'and I'll be good.'\n\nI was charmed by her presently asking me, of her own accord, to\ngive her that cookery-book I had once spoken of, and to show her\nhow to keep accounts as I had once promised I would.  I brought the\nvolume with me on my next visit (I got it prettily bound, first, to\nmake it look less dry and more inviting); and as we strolled about\nthe Common, I showed her an old housekeeping-book of my aunt's, and\ngave her a set of tablets, and a pretty little pencil-case and box\nof leads, to practise housekeeping with.\n\nBut the cookery-book made Dora's head ache, and the figures made\nher cry.  They wouldn't add up, she said.  So she rubbed them out,\nand drew little nosegays and likenesses of me and Jip, all over the\ntablets.\n\nThen I playfully tried verbal instruction in domestic matters, as\nwe walked about on a Saturday afternoon.  Sometimes, for example,\nwhen we passed a butcher's shop, I would say:\n\n'Now suppose, my pet, that we were married, and you were going to\nbuy a shoulder of mutton for dinner, would you know how to buy it?'\n\nMy pretty little Dora's face would fall, and she would make her\nmouth into a bud again, as if she would very much prefer to shut\nmine with a kiss.\n\n'Would you know how to buy it, my darling?' I would repeat,\nperhaps, if I were very inflexible.\n\nDora would think a little, and then reply, perhaps, with great\ntriumph:\n\n'Why, the butcher would know how to sell it, and what need I know? \nOh, you silly boy!'\n\nSo, when I once asked Dora, with an eye to the cookery-book, what\nshe would do, if we were married, and I were to say I should like\na nice Irish stew, she replied that she would tell the servant to\nmake it; and then clapped her little hands together across my arm,\nand laughed in such a charming manner that she was more delightful\nthan ever.\n\nConsequently, the principal use to which the cookery-book was\ndevoted, was being put down in the corner for Jip to stand upon. \nBut Dora was so pleased, when she had trained him to stand upon it\nwithout offering to come off, and at the same time to hold the\npencil-case in his mouth, that I was very glad I had bought it.\n\nAnd we fell back on the guitar-case, and the flower-painting, and\nthe songs about never leaving off dancing, Ta ra la! and were as\nhappy as the week was long.  I occasionally wished I could venture\nto hint to Miss Lavinia, that she treated the darling of my heart\na little too much like a plaything; and I sometimes awoke, as it\nwere, wondering to find that I had fallen into the general fault,\nand treated her like a plaything too - but not often.\n\n\n\nCHAPTER 42\nMISCHIEF\n\nI feel as if it were not for me to record, even though this\nmanuscript is intended for no eyes but mine, how hard I worked at\nthat tremendous short-hand, and all improvement appertaining to it,\nin my sense of responsibility to Dora and her aunts.  I will only\nadd, to what I have already written of my perseverance at this time\nof my life, and of a patient and continuous energy which then began\nto be matured within me, and which I know to be the strong part of\nmy character, if it have any strength at all, that there, on\nlooking back, I find the source of my success.  I have been very\nfortunate in worldly matters; many men have worked much harder, and\nnot succeeded half so well; but I never could have done what I have\ndone, without the habits of punctuality, order, and diligence,\nwithout the determination to concentrate myself on one object at a\ntime, no matter how quickly its successor should come upon its\nheels, which I then formed.  Heaven knows I write this, in no\nspirit of self-laudation.  The man who reviews his own life, as I\ndo mine, in going on here, from page to page, had need to have been\na good man indeed, if he would be spared the sharp consciousness of\nmany talents neglected, many opportunities wasted, many erratic and\nperverted feelings constantly at war within his breast, and\ndefeating him.  I do not hold one natural gift, I dare say, that I\nhave not abused.  My meaning simply is, that whatever I have tried\nto do in life, I have tried with all my heart to do well; that\nwhatever I have devoted myself to, I have devoted myself to\ncompletely; that in great aims and in small, I have always been\nthoroughly in earnest.  I have never believed it possible that any\nnatural or improved ability can claim immunity from the\ncompanionship of the steady, plain, hard-working qualities, and\nhope to gain its end.  There is no such thing as such fulfilment on\nthis earth.  Some happy talent, and some fortunate opportunity, may\nform the two sides of the ladder on which some men mount, but the\nrounds of that ladder must be made of stuff to stand wear and tear;\nand there is no substitute for thorough-going, ardent, and sincere\nearnestness.  Never to put one hand to anything, on which I could\nthrow my whole self; and never to affect depreciation of my work,\nwhatever it was; I find, now, to have been my golden rules.\n\nHow much of the practice I have just reduced to precept, I owe to\nAgnes, I will not repeat here.  My narrative proceeds to Agnes,\nwith a thankful love.\n\nShe came on a visit of a fortnight to the Doctor's.  Mr. Wickfield\nwas the Doctor's old friend, and the Doctor wished to talk with\nhim, and do him good.  It had been matter of conversation with\nAgnes when she was last in town, and this visit was the result. \nShe and her father came together.  I was not much surprised to hear\nfrom her that she had engaged to find a lodging in the\nneighbourhood for Mrs. Heep, whose rheumatic complaint required\nchange of air, and who would be charmed to have it in such company. \nNeither was I surprised when, on the very next day, Uriah, like a\ndutiful son, brought his worthy mother to take possession.\n\n'You see, Master Copperfield,' said he, as he forced himself upon\nmy company for a turn in the Doctor's garden, 'where a person\nloves, a person is a little jealous - leastways, anxious to keep an\neye on the beloved one.'\n\n'Of whom are you jealous, now?' said I.\n\n'Thanks to you, Master Copperfield,' he returned, 'of no one in\nparticular just at present - no male person, at least.'\n\n'Do you mean that you are jealous of a female person?'\n\nHe gave me a sidelong glance out of his sinister red eyes, and\nlaughed.\n\n'Really, Master Copperfield,' he said, '- I should say Mister, but\nI know you'll excuse the abit I've got into - you're so\ninsinuating, that you draw me like a corkscrew!  Well, I don't mind\ntelling you,' putting his fish-like hand on mine, 'I'm not a lady's\nman in general, sir, and I never was, with Mrs. Strong.'\n\nHis eyes looked green now, as they watched mine with a rascally\ncunning.\n\n'What do you mean?' said I.\n\n'Why, though I am a lawyer, Master Copperfield,' he replied, with\na dry grin, 'I mean, just at present, what I say.'\n\n'And what do you mean by your look?' I retorted, quietly.\n\n'By my look?  Dear me, Copperfield, that's sharp practice!  What do\nI mean by my look?'\n\n'Yes,' said I.  'By your look.'\n\nHe seemed very much amused, and laughed as heartily as it was in\nhis nature to laugh.  After some scraping of his chin with his\nhand, he went on to say, with his eyes cast downward - still\nscraping, very slowly:\n\n'When I was but an umble clerk, she always looked down upon me. \nShe was for ever having my Agnes backwards and forwards at her\nouse, and she was for ever being a friend to you, Master\nCopperfield; but I was too far beneath her, myself, to be noticed.'\n\n'Well?' said I; 'suppose you were!'\n\n'- And beneath him too,' pursued Uriah, very distinctly, and in a\nmeditative tone of voice, as he continued to scrape his chin.\n\n'Don't you know the Doctor better,' said I, 'than to suppose him\nconscious of your existence, when you were not before him?'\n\nHe directed his eyes at me in that sidelong glance again, and he\nmade his face very lantern-jawed, for the greater convenience of\nscraping, as he answered:\n\n'Oh dear, I am not referring to the Doctor!  Oh no, poor man!  I\nmean Mr. Maldon!'\n\nMy heart quite died within me.  All my old doubts and apprehensions\non that subject, all the Doctor's happiness and peace, all the\nmingled possibilities of innocence and compromise, that I could not\nunravel, I saw, in a moment, at the mercy of this fellow's\ntwisting.\n\n'He never could come into the office, without ordering and shoving\nme about,' said Uriah.  'One of your fine gentlemen he was!  I was\nvery meek and umble - and I am.  But I didn't like that sort of\nthing - and I don't!'\n\nHe left off scraping his chin, and sucked in his cheeks until they\nseemed to meet inside; keeping his sidelong glance upon me all the\nwhile.\n\n'She is one of your lovely women, she is,' he pursued, when he had\nslowly restored his face to its natural form; 'and ready to be no\nfriend to such as me, I know.  She's just the person as would put\nmy Agnes up to higher sort of game.  Now, I ain't one of your\nlady's men, Master Copperfield; but I've had eyes in my ed, a\npretty long time back.  We umble ones have got eyes, mostly\nspeaking - and we look out of 'em.'\n\nI endeavoured to appear unconscious and not disquieted, but, I saw\nin his face, with poor success.\n\n'Now, I'm not a-going to let myself be run down, Copperfield,' he\ncontinued, raising that part of his countenance, where his red\neyebrows would have been if he had had any, with malignant triumph,\n'and I shall do what I can to put a stop to this friendship.  I\ndon't approve of it.  I don't mind acknowledging to you that I've\ngot rather a grudging disposition, and want to keep off all\nintruders.  I ain't a-going, if I know it, to run the risk of being\nplotted against.'\n\n'You are always plotting, and delude yourself into the belief that\neverybody else is doing the like, I think,' said I.\n\n'Perhaps so, Master Copperfield,' he replied.  'But I've got a\nmotive, as my fellow-partner used to say; and I go at it tooth and\nnail.  I mustn't be put upon, as a numble person, too much.  I\ncan't allow people in my way.  Really they must come out of the\ncart, Master Copperfield!'\n\n'I don't understand you,' said I.\n\n'Don't you, though?' he returned, with one of his jerks.  'I'm\nastonished at that, Master Copperfield, you being usually so quick! \nI'll try to be plainer, another time.  - Is that Mr. Maldon\na-norseback, ringing at the gate, sir?'\n\n'It looks like him,' I replied, as carelessly as I could.\n\nUriah stopped short, put his hands between his great knobs of\nknees, and doubled himself up with laughter.  With perfectly silent\nlaughter.  Not a sound escaped from him.  I was so repelled by his\nodious behaviour, particularly by this concluding instance, that I\nturned away without any ceremony; and left him doubled up in the\nmiddle of the garden, like a scarecrow in want of support.\n\nIt was not on that evening; but, as I well remember, on the next\nevening but one, which was a Sunday; that I took Agnes to see Dora. \nI had arranged the visit, beforehand, with Miss Lavinia; and Agnes\nwas expected to tea.\n\nI was in a flutter of pride and anxiety; pride in my dear little\nbetrothed, and anxiety that Agnes should like her.  All the way to\nPutney, Agnes being inside the stage-coach, and I outside, I\npictured Dora to myself in every one of the pretty looks I knew so\nwell; now making up my mind that I should like her to look exactly\nas she looked at such a time, and then doubting whether I should\nnot prefer her looking as she looked at such another time; and\nalmost worrying myself into a fever about it.\n\nI was troubled by no doubt of her being very pretty, in any case;\nbut it fell out that I had never seen her look so well.  She was\nnot in the drawing-room when I presented Agnes to her little aunts,\nbut was shyly keeping out of the way.  I knew where to look for\nher, now; and sure enough I found her stopping her ears again,\nbehind the same dull old door.\n\nAt first she wouldn't come at all; and then she pleaded for five\nminutes by my watch.  When at length she put her arm through mine,\nto be taken to the drawing-room, her charming little face was\nflushed, and had never been so pretty.  But, when we went into the\nroom, and it turned pale, she was ten thousand times prettier yet.\n\nDora was afraid of Agnes.  She had told me that she knew Agnes was\n'too clever'.  But when she saw her looking at once so cheerful and\nso earnest, and so thoughtful, and so good, she gave a faint little\ncry of pleased surprise, and just put her affectionate arms round\nAgnes's neck, and laid her innocent cheek against her face.\n\nI never was so happy.  I never was so pleased as when I saw those\ntwo sit down together, side by side.  As when I saw my little\ndarling looking up so naturally to those cordial eyes.  As when I\nsaw the tender, beautiful regard which Agnes cast upon her.\n\nMiss Lavinia and Miss Clarissa partook, in their way, of my joy. \nIt was the pleasantest tea-table in the world.  Miss Clarissa\npresided.  I cut and handed the sweet seed-cake - the little\nsisters had a bird-like fondness for picking up seeds and pecking\nat sugar; Miss Lavinia looked on with benignant patronage, as if\nour happy love were all her work; and we were perfectly contented\nwith ourselves and one another.\n\nThe gentle cheerfulness of Agnes went to all their hearts.  Her\nquiet interest in everything that interested Dora; her manner of\nmaking acquaintance with Jip (who responded instantly); her\npleasant way, when Dora was ashamed to come over to her usual seat\nby me; her modest grace and ease, eliciting a crowd of blushing\nlittle marks of confidence from Dora; seemed to make our circle\nquite complete.\n\n'I am so glad,' said Dora, after tea, 'that you like me.  I didn't\nthink you would; and I want, more than ever, to be liked, now Julia\nMills is gone.'\n\nI have omitted to mention it, by the by.  Miss Mills had sailed,\nand Dora and I had gone aboard a great East Indiaman at Gravesend\nto see her; and we had had preserved ginger, and guava, and other\ndelicacies of that sort for lunch; and we had left Miss Mills\nweeping on a camp-stool on the quarter-deck, with a large new diary\nunder her arm, in which the original reflections awakened by the\ncontemplation of Ocean were to be recorded under lock and key.\n\nAgnes said she was afraid I must have given her an unpromising\ncharacter; but Dora corrected that directly.\n\n'Oh no!' she said, shaking her curls at me; 'it was all praise.  He\nthinks so much of your opinion, that I was quite afraid of it.'\n\n'My good opinion cannot strengthen his attachment to some people\nwhom he knows,' said Agnes, with a smile; 'it is not worth their\nhaving.'\n\n'But please let me have it,' said Dora, in her coaxing way, 'if you\ncan!'\n\nWe made merry about Dora's wanting to be liked, and Dora said I was\na goose, and she didn't like me at any rate, and the short evening\nflew away on gossamer-wings.  The time was at hand when the coach\nwas to call for us.  I was standing alone before the fire, when\nDora came stealing softly in, to give me that usual precious little\nkiss before I went.\n\n'Don't you think, if I had had her for a friend a long time ago,\nDoady,' said Dora, her bright eyes shining very brightly, and her\nlittle right hand idly busying itself with one of the buttons of my\ncoat, 'I might have been more clever perhaps?'\n\n'My love!' said I, 'what nonsense!'\n\n'Do you think it is nonsense?' returned Dora, without looking at\nme.  'Are you sure it is?'\n\n'Of course I am!'\n'I have forgotten,' said Dora, still turning the button round and\nround, 'what relation Agnes is to you, you dear bad boy.'\n\n'No blood-relation,' I replied; 'but we were brought up together,\nlike brother and sister.'\n\n'I wonder why you ever fell in love with me?' said Dora, beginning\non another button of my coat.\n\n'Perhaps because I couldn't see you, and not love you, Dora!'\n\n'Suppose you had never seen me at all,' said Dora, going to another\nbutton.\n\n'Suppose we had never been born!' said I, gaily.\n\nI wondered what she was thinking about, as I glanced in admiring\nsilence at the little soft hand travelling up the row of buttons on\nmy coat, and at the clustering hair that lay against my breast, and\nat the lashes of her downcast eyes, slightly rising as they\nfollowed her idle fingers.  At length her eyes were lifted up to\nmine, and she stood on tiptoe to give me, more thoughtfully than\nusual, that precious little kiss - once, twice, three times - and\nwent out of the room.\n\nThey all came back together within five minutes afterwards, and\nDora's unusual thoughtfulness was quite gone then.  She was\nlaughingly resolved to put Jip through the whole of his\nperformances, before the coach came.  They took some time (not so\nmuch on account of their variety, as Jip's reluctance), and were\nstill unfinished when it was heard at the door.  There was a\nhurried but affectionate parting between Agnes and herself; and\nDora was to write to Agnes (who was not to mind her letters being\nfoolish, she said), and Agnes was to write to Dora; and they had a\nsecond parting at the coach door, and a third when Dora, in spite\nof the remonstrances of Miss Lavinia, would come running out once\nmore to remind Agnes at the coach window about writing, and to\nshake her curls at me on the box.\n\nThe stage-coach was to put us down near Covent Garden, where we\nwere to take another stage-coach for Highgate.  I was impatient for\nthe short walk in the interval, that Agnes might praise Dora to me. \nAh! what praise it was!  How lovingly and fervently did it commend\nthe pretty creature I had won, with all her artless graces best\ndisplayed, to my most gentle care!  How thoughtfully remind me, yet\nwith no pretence of doing so, of the trust in which I held the\norphan child!\n\nNever, never, had I loved Dora so deeply and truly, as I loved her\nthat night.  When we had again alighted, and were walking in the\nstarlight along the quiet road that led to the Doctor's house, I\ntold Agnes it was her doing.\n\n'When you were sitting by her,' said I, 'you seemed to be no less\nher guardian angel than mine; and you seem so now, Agnes.'\n\n'A poor angel,' she returned, 'but faithful.'\n\nThe clear tone of her voice, going straight to my heart, made it\nnatural to me to say:\n\n'The cheerfulness that belongs to you, Agnes (and to no one else\nthat ever I have seen), is so restored, I have observed today, that\nI have begun to hope you are happier at home?'\n\n'I am happier in myself,' she said; 'I am quite cheerful and\nlight-hearted.'\n\nI glanced at the serene face looking upward, and thought it was the\nstars that made it seem so noble.\n\n'There has been no change at home,' said Agnes, after a few\nmoments.\n\n'No fresh reference,' said I, 'to - I wouldn't distress you, Agnes,\nbut I cannot help asking - to what we spoke of, when we parted\nlast?'\n\n'No, none,' she answered.\n\n'I have thought so much about it.'\n\n'You must think less about it.  Remember that I confide in simple\nlove and truth at last.  Have no apprehensions for me, Trotwood,'\nshe added, after a moment; 'the step you dread my taking, I shall\nnever take.'\n\nAlthough I think I had never really feared it, in any season of\ncool reflection, it was an unspeakable relief to me to have this\nassurance from her own truthful lips.  I told her so, earnestly.\n\n'And when this visit is over,' said I, - 'for we may not be alone\nanother time, - how long is it likely to be, my dear Agnes, before\nyou come to London again?'\n\n'Probably a long time,' she replied; 'I think it will be best - for\npapa's sake - to remain at home.  We are not likely to meet often,\nfor some time to come; but I shall be a good correspondent of\nDora's, and we shall frequently hear of one another that way.'\n\nWe were now within the little courtyard of the Doctor's cottage. \nIt was growing late.  There was a light in the window of Mrs.\nStrong's chamber, and Agnes, pointing to it, bade me good night.\n\n'Do not be troubled,' she said, giving me her hand, 'by our\nmisfortunes and anxieties.  I can be happier in nothing than in\nyour happiness.  If you can ever give me help, rely upon it I will\nask you for it.  God bless you always!'\nIn her beaming smile, and in these last tones of her cheerful\nvoice, I seemed again to see and hear my little Dora in her\ncompany.  I stood awhile, looking through the porch at the stars,\nwith a heart full of love and gratitude, and then walked slowly\nforth.  I had engaged a bed at a decent alehouse close by, and was\ngoing out at the gate, when, happening to turn my head, I saw a\nlight in the Doctor's study.  A half-reproachful fancy came into my\nmind, that he had been working at the Dictionary without my help. \nWith the view of seeing if this were so, and, in any case, of\nbidding him good night, if he were yet sitting among his books, I\nturned back, and going softly across the hall, and gently opening\nthe door, looked in.\n\nThe first person whom I saw, to my surprise, by the sober light of\nthe shaded lamp, was Uriah.  He was standing close beside it, with\none of his skeleton hands over his mouth, and the other resting on\nthe Doctor's table.  The Doctor sat in his study chair, covering\nhis face with his hands.  Mr. Wickfield, sorely troubled and\ndistressed, was leaning forward, irresolutely touching the Doctor's\narm.\n\nFor an instant, I supposed that the Doctor was ill.  I hastily\nadvanced a step under that impression, when I met Uriah's eye, and\nsaw what was the matter.  I would have withdrawn, but the Doctor\nmade a gesture to detain me, and I remained.\n\n'At any rate,' observed Uriah, with a writhe of his ungainly\nperson, 'we may keep the door shut.  We needn't make it known to\nALL the town.'\n\nSaying which, he went on his toes to the door, which I had left\nopen, and carefully closed it.  He then came back, and took up his\nformer position.  There was an obtrusive show of compassionate zeal\nin his voice and manner, more intolerable - at least to me - than\nany demeanour he could have assumed.\n\n'I have felt it incumbent upon me, Master Copperfield,' said Uriah,\n'to point out to Doctor Strong what you and me have already talked\nabout.  You didn't exactly understand me, though?'\n\nI gave him a look, but no other answer; and, going to my good old\nmaster, said a few words that I meant to be words of comfort and\nencouragement.  He put his hand upon my shoulder, as it had been\nhis custom to do when I was quite a little fellow, but did not lift\nhis grey head.\n\n'As you didn't understand me, Master Copperfield,' resumed Uriah in\nthe same officious manner, 'I may take the liberty of umbly\nmentioning, being among friends, that I have called Doctor Strong's\nattention to the goings-on of Mrs. Strong.  It's much against the\ngrain with me, I assure you, Copperfield, to be concerned in\nanything so unpleasant; but really, as it is, we're all mixing\nourselves up with what oughtn't to be.  That was what my meaning\nwas, sir, when you didn't understand me.'\nI wonder now, when I recall his leer, that I did not collar him,\nand try to shake the breath out of his body.\n\n'I dare say I didn't make myself very clear,' he went on, 'nor you\nneither.  Naturally, we was both of us inclined to give such a\nsubject a wide berth.  Hows'ever, at last I have made up my mind to\nspeak plain; and I have mentioned to Doctor Strong that - did you\nspeak, sir?'\n\nThis was to the Doctor, who had moaned.  The sound might have\ntouched any heart, I thought, but it had no effect upon Uriah's.\n\n'- mentioned to Doctor Strong,' he proceeded, 'that anyone may see\nthat Mr. Maldon, and the lovely and agreeable lady as is Doctor\nStrong's wife, are too sweet on one another.  Really the time is\ncome (we being at present all mixing ourselves up with what\noughtn't to be), when Doctor Strong must be told that this was full\nas plain to everybody as the sun, before Mr. Maldon went to India;\nthat Mr. Maldon made excuses to come back, for nothing else; and\nthat he's always here, for nothing else.  When you come in, sir, I\nwas just putting it to my fellow-partner,' towards whom he turned,\n'to say to Doctor Strong upon his word and honour, whether he'd\never been of this opinion long ago, or not.  Come, Mr. Wickfield,\nsir!  Would you be so good as tell us?  Yes or no, sir?  Come,\npartner!'\n\n'For God's sake, my dear Doctor,' said Mr. Wickfield again laying\nhis irresolute hand upon the Doctor's arm, 'don't attach too much\nweight to any suspicions I may have entertained.'\n\n'There!' cried Uriah, shaking his head.  'What a melancholy\nconfirmation: ain't it?  Him!  Such an old friend!  Bless your\nsoul, when I was nothing but a clerk in his office, Copperfield,\nI've seen him twenty times, if I've seen him once, quite in a\ntaking about it - quite put out, you know (and very proper in him\nas a father; I'm sure I can't blame him), to think that Miss Agnes\nwas mixing herself up with what oughtn't to be.'\n\n'My dear Strong,' said Mr. Wickfield in a tremulous voice, 'my good\nfriend, I needn't tell you that it has been my vice to look for\nsome one master motive in everybody, and to try all actions by one\nnarrow test.  I may have fallen into such doubts as I have had,\nthrough this mistake.'\n\n'You have had doubts, Wickfield,' said the Doctor, without lifting\nup his head.  'You have had doubts.'\n\n'Speak up, fellow-partner,' urged Uriah.\n\n'I had, at one time, certainly,' said Mr. Wickfield.  'I - God\nforgive me - I thought YOU had.'\n\n'No, no, no!' returned the Doctor, in a tone of most pathetic\ngrief.\n'I thought, at one time,' said Mr. Wickfield, 'that you wished to\nsend Maldon abroad to effect a desirable separation.'\n\n'No, no, no!' returned the Doctor.  'To give Annie pleasure, by\nmaking some provision for the companion of her childhood.  Nothing\nelse.'\n\n'So I found,' said Mr. Wickfield.  'I couldn't doubt it, when you\ntold me so.  But I thought - I implore you to remember the narrow\nconstruction which has been my besetting sin - that, in a case\nwhere there was so much disparity in point of years -'\n\n'That's the way to put it, you see, Master Copperfield!' observed\nUriah, with fawning and offensive pity.\n\n'- a lady of such youth, and such attractions, however real her\nrespect for you, might have been influenced in marrying, by worldly\nconsiderations only.  I make no allowance for innumerable feelings\nand circumstances that may have all tended to good.  For Heaven's\nsake remember that!'\n\n'How kind he puts it!' said Uriah, shaking his head.\n\n'Always observing her from one point of view,' said Mr. Wickfield;\n'but by all that is dear to you, my old friend, I entreat you to\nconsider what it was; I am forced to confess now, having no escape\n-'\n\n'No!  There's no way out of it, Mr. Wickfield, sir,' observed\nUriah, 'when it's got to this.'\n\n'- that I did,' said Mr. Wickfield, glancing helplessly and\ndistractedly at his partner, 'that I did doubt her, and think her\nwanting in her duty to you; and that I did sometimes, if I must say\nall, feel averse to Agnes being in such a familiar relation towards\nher, as to see what I saw, or in my diseased theory fancied that I\nsaw.  I never mentioned this to anyone.  I never meant it to be\nknown to anyone.  And though it is terrible to you to hear,' said\nMr. Wickfield, quite subdued, 'if you knew how terrible it is for\nme to tell, you would feel compassion for me!'\n\nThe Doctor, in the perfect goodness of his nature, put out his\nhand.  Mr. Wickfield held it for a little while in his, with his\nhead bowed down.\n\n'I am sure,' said Uriah, writhing himself into the silence like a\nConger-eel, 'that this is a subject full of unpleasantness to\neverybody.  But since we have got so far, I ought to take the\nliberty of mentioning that Copperfield has noticed it too.'\n\nI turned upon him, and asked him how he dared refer to me!\n\n'Oh! it's very kind of you, Copperfield,' returned Uriah,\nundulating all over, 'and we all know what an amiable character\nyours is; but you know that the moment I spoke to you the other\nnight, you knew what I meant.  You know you knew what I meant,\nCopperfield.  Don't deny it!  You deny it with the best intentions;\nbut don't do it, Copperfield.'\n\nI saw the mild eye of the good old Doctor turned upon me for a\nmoment, and I felt that the confession of my old misgivings and\nremembrances was too plainly written in my face to be overlooked. \nIt was of no use raging.  I could not undo that.  Say what I would,\nI could not unsay it.\n\nWe were silent again, and remained so, until the Doctor rose and\nwalked twice or thrice across the room.  Presently he returned to\nwhere his chair stood; and, leaning on the back of it, and\noccasionally putting his handkerchief to his eyes, with a simple\nhonesty that did him more honour, to my thinking, than any disguise\nhe could have effected, said:\n\n'I have been much to blame.  I believe I have been very much to\nblame.  I have exposed one whom I hold in my heart, to trials and\naspersions - I call them aspersions, even to have been conceived in\nanybody's inmost mind - of which she never, but for me, could have\nbeen the object.'\n\nUriah Heep gave a kind of snivel.  I think to express sympathy.\n\n'Of which my Annie,' said the Doctor, 'never, but for me, could\nhave been the object.  Gentlemen, I am old now, as you know; I do\nnot feel, tonight, that I have much to live for.  But my life - my\nLife - upon the truth and honour of the dear lady who has been the\nsubject of this conversation!'\n\nI do not think that the best embodiment of chivalry, the\nrealization of the handsomest and most romantic figure ever\nimagined by painter, could have said this, with a more impressive\nand affecting dignity than the plain old Doctor did.\n\n'But I am not prepared,' he went on, 'to deny - perhaps I may have\nbeen, without knowing it, in some degree prepared to admit - that\nI may have unwittingly ensnared that lady into an unhappy marriage. \nI am a man quite unaccustomed to observe; and I cannot but believe\nthat the observation of several people, of different ages and\npositions, all too plainly tending in one direction (and that so\nnatural), is better than mine.'\n\nI had often admired, as I have elsewhere described, his benignant\nmanner towards his youthful wife; but the respectful tenderness he\nmanifested in every reference to her on this occasion, and the\nalmost reverential manner in which he put away from him the\nlightest doubt of her integrity, exalted him, in my eyes, beyond\ndescription.\n\n'I married that lady,' said the Doctor, 'when she was extremely\nyoung.  I took her to myself when her character was scarcely\nformed.  So far as it was developed, it had been my happiness to\nform it.  I knew her father well.  I knew her well.  I had taught\nher what I could, for the love of all her beautiful and virtuous\nqualities.  If I did her wrong; as I fear I did, in taking\nadvantage (but I never meant it) of her gratitude and her\naffection; I ask pardon of that lady, in my heart!'\n\nHe walked across the room, and came back to the same place; holding\nthe chair with a grasp that trembled, like his subdued voice, in\nits earnestness.\n\n'I regarded myself as a refuge, for her, from the dangers and\nvicissitudes of life.  I persuaded myself that, unequal though we\nwere in years, she would live tranquilly and contentedly with me. \nI did not shut out of my consideration the time when I should leave\nher free, and still young and still beautiful, but with her\njudgement more matured - no, gentlemen - upon my truth!'\n\nHis homely figure seemed to be lightened up by his fidelity and\ngenerosity.  Every word he uttered had a force that no other grace\ncould have imparted to it.\n\n'My life with this lady has been very happy.  Until tonight, I have\nhad uninterrupted occasion to bless the day on which I did her\ngreat injustice.'\n\nHis voice, more and more faltering in the utterance of these words,\nstopped for a few moments; then he went on:\n\n'Once awakened from my dream - I have been a poor dreamer, in one\nway or other, all my life - I see how natural it is that she should\nhave some regretful feeling towards her old companion and her\nequal.  That she does regard him with some innocent regret, with\nsome blameless thoughts of what might have been, but for me, is, I\nfear, too true.  Much that I have seen, but not noted, has come\nback upon me with new meaning, during this last trying hour.  But,\nbeyond this, gentlemen, the dear lady's name never must be coupled\nwith a word, a breath, of doubt.'\n\nFor a little while, his eye kindled and his voice was firm; for a\nlittle while he was again silent.  Presently, he proceeded as\nbefore:\n\n'It only remains for me, to bear the knowledge of the unhappiness\nI have occasioned, as submissively as I can.  It is she who should\nreproach; not I.  To save her from misconstruction, cruel\nmisconstruction, that even my friends have not been able to avoid,\nbecomes my duty.  The more retired we live, the better I shall\ndischarge it.  And when the time comes - may it come soon, if it be\nHis merciful pleasure! - when my death shall release her from\nconstraint, I shall close my eyes upon her honoured face, with\nunbounded confidence and love; and leave her, with no sorrow then,\nto happier and brighter days.'\n\nI could not see him for the tears which his earnestness and\ngoodness, so adorned by, and so adorning, the perfect simplicity of\nhis manner, brought into my eyes.  He had moved to the door, when\nhe added:\n\n'Gentlemen, I have shown you my heart.  I am sure you will respect\nit.  What we have said tonight is never to be said more. \nWickfield, give me an old friend's arm upstairs!'\n\nMr. Wickfield hastened to him.  Without interchanging a word they\nwent slowly out of the room together, Uriah looking after them.\n\n'Well, Master Copperfield!' said Uriah, meekly turning to me.  'The\nthing hasn't took quite the turn that might have been expected, for\nthe old Scholar - what an excellent man! - is as blind as a\nbrickbat; but this family's out of the cart, I think!'\n\nI needed but the sound of his voice to be so madly enraged as I\nnever was before, and never have been since.\n\n'You villain,' said I, 'what do you mean by entrapping me into your\nschemes?  How dare you appeal to me just now, you false rascal, as\nif we had been in discussion together?'\n\nAs we stood, front to front, I saw so plainly, in the stealthy\nexultation of his face, what I already so plainly knew; I mean that\nhe forced his confidence upon me, expressly to make me miserable,\nand had set a deliberate trap for me in this very matter; that I\ncouldn't bear it.  The whole of his lank cheek was invitingly\nbefore me, and I struck it with my open hand with that force that\nmy fingers tingled as if I had burnt them.\n\nHe caught the hand in his, and we stood in that connexion, looking\nat each other.  We stood so, a long time; long enough for me to see\nthe white marks of my fingers die out of the deep red of his cheek,\nand leave it a deeper red.\n\n'Copperfield,' he said at length, in a breathless voice, 'have you\ntaken leave of your senses?'\n\n'I have taken leave of you,' said I, wresting my hand away.  'You\ndog, I'll know no more of you.'\n\n'Won't you?' said he, constrained by the pain of his cheek to put\nhis hand there.  'Perhaps you won't be able to help it.  Isn't this\nungrateful of you, now?'\n\n'I have shown you often enough,' said I, 'that I despise you.  I\nhave shown you now, more plainly, that I do.  Why should I dread\nyour doing your worst to all about you?  What else do you ever do?'\n\nHe perfectly understood this allusion to the considerations that\nhad hitherto restrained me in my communications with him.  I rather\nthink that neither the blow, nor the allusion, would have escaped\nme, but for the assurance I had had from Agnes that night.  It is\nno matter.\n\nThere was another long pause.  His eyes, as he looked at me, seemed\nto take every shade of colour that could make eyes ugly.\n\n'Copperfield,' he said, removing his hand from his cheek, 'you have\nalways gone against me.  I know you always used to be against me at\nMr. Wickfield's.'\n\n'You may think what you like,' said I, still in a towering rage. \n'If it is not true, so much the worthier you.'\n\n'And yet I always liked you, Copperfield!' he rejoined.\n\nI deigned to make him no reply; and, taking up my hat, was going\nout to bed, when he came between me and the door.\n\n'Copperfield,' he said, 'there must be two parties to a quarrel. \nI won't be one.'\n\n'You may go to the devil!' said I.\n\n'Don't say that!' he replied.  'I know you'll be sorry afterwards. \nHow can you make yourself so inferior to me, as to show such a bad\nspirit?  But I forgive you.'\n\n'You forgive me!' I repeated disdainfully.\n\n'I do, and you can't help yourself,' replied Uriah.  'To think of\nyour going and attacking me, that have always been a friend to you!\nBut there can't be a quarrel without two parties, and I won't be\none.  I will be a friend to you, in spite of you.  So now you know\nwhat you've got to expect.'\n\nThe necessity of carrying on this dialogue (his part in which was\nvery slow; mine very quick) in a low tone, that the house might not\nbe disturbed at an unseasonable hour, did not improve my temper;\nthough my passion was cooling down.  Merely telling him that I\nshould expect from him what I always had expected, and had never\nyet been disappointed in, I opened the door upon him, as if he had\nbeen a great walnut put there to be cracked, and went out of the\nhouse.  But he slept out of the house too, at his mother's lodging;\nand before I had gone many hundred yards, came up with me.\n\n'You know, Copperfield,' he said, in my ear (I did not turn my\nhead), 'you're in quite a wrong position'; which I felt to be true,\nand that made me chafe the more; 'you can't make this a brave\nthing, and you can't help being forgiven.  I don't intend to\nmention it to mother, nor to any living soul.  I'm determined to\nforgive you.  But I do wonder that you should lift your hand\nagainst a person that you knew to be so umble!'\n\nI felt only less mean than he.  He knew me better than I knew\nmyself.  If he had retorted or openly exasperated me, it would have\nbeen a relief and a justification; but he had put me on a slow\nfire, on which I lay tormented half the night.\n\nIn the morning, when I came out, the early church-bell was ringing,\nand he was walking up and down with his mother.  He addressed me as\nif nothing had happened, and I could do no less than reply.  I had\nstruck him hard enough to give him the toothache, I suppose.  At\nall events his face was tied up in a black silk handkerchief,\nwhich, with his hat perched on the top of it, was far from\nimproving his appearance.  I heard that he went to a dentist's in\nLondon on the Monday morning, and had a tooth out.  I hope it was\na double one.\n\nThe Doctor gave out that he was not quite well; and remained alone,\nfor a considerable part of every day, during the remainder of the\nvisit.  Agnes and her father had been gone a week, before we\nresumed our usual work.  On the day preceding its resumption, the\nDoctor gave me with his own hands a folded note not sealed.  It was\naddressed to myself; and laid an injunction on me, in a few\naffectionate words, never to refer to the subject of that evening. \nI had confided it to my aunt, but to no one else.  It was not a\nsubject I could discuss with Agnes, and Agnes certainly had not the\nleast suspicion of what had passed.\n\nNeither, I felt convinced, had Mrs. Strong then.  Several weeks\nelapsed before I saw the least change in her.  It came on slowly,\nlike a cloud when there is no wind.  At first, she seemed to wonder\nat the gentle compassion with which the Doctor spoke to her, and at\nhis wish that she should have her mother with her, to relieve the\ndull monotony of her life.  Often, when we were at work, and she\nwas sitting by, I would see her pausing and looking at him with\nthat memorable face.  Afterwards, I sometimes observed her rise,\nwith her eyes full of tears, and go out of the room.  Gradually, an\nunhappy shadow fell upon her beauty, and deepened every day.  Mrs.\nMarkleham was a regular inmate of the cottage then; but she talked\nand talked, and saw nothing.\n\nAs this change stole on Annie, once like sunshine in the Doctor's\nhouse, the Doctor became older in appearance, and more grave; but\nthe sweetness of his temper, the placid kindness of his manner, and\nhis benevolent solicitude for her, if they were capable of any\nincrease, were increased.  I saw him once, early on the morning of\nher birthday, when she came to sit in the window while we were at\nwork (which she had always done, but now began to do with a timid\nand uncertain air that I thought very touching), take her forehead\nbetween his hands, kiss it, and go hurriedly away, too much moved\nto remain.  I saw her stand where he had left her, like a statue;\nand then bend down her head, and clasp her hands, and weep, I\ncannot say how sorrowfully.\n\nSometimes, after that, I fancied that she tried to speak even to\nme, in intervals when we were left alone.  But she never uttered a\nword.  The Doctor always had some new project for her participating\nin amusements away from home, with her mother; and Mrs. Markleham,\nwho was very fond of amusements, and very easily dissatisfied with\nanything else, entered into them with great good-will, and was loud\nin her commendations.  But Annie, in a spiritless unhappy way, only\nwent whither she was led, and seemed to have no care for anything.\n\nI did not know what to think.  Neither did my aunt; who must have\nwalked, at various times, a hundred miles in her uncertainty.  What\nwas strangest of all was, that the only real relief which seemed to\nmake its way into the secret region of this domestic unhappiness,\nmade its way there in the person of Mr. Dick.\n\nWhat his thoughts were on the subject, or what his observation was,\nI am as unable to explain, as I dare say he would have been to\nassist me in the task.  But, as I have recorded in the narrative of\nmy school days, his veneration for the Doctor was unbounded; and\nthere is a subtlety of perception in real attachment, even when it\nis borne towards man by one of the lower animals, which leaves the\nhighest intellect behind.  To this mind of the heart, if I may call\nit so, in Mr. Dick, some bright ray of the truth shot straight.\n\nHe had proudly resumed his privilege, in many of his spare hours,\nof walking up and down the garden with the Doctor; as he had been\naccustomed to pace up and down The Doctor's Walk at Canterbury. \nBut matters were no sooner in this state, than he devoted all his\nspare time (and got up earlier to make it more) to these\nperambulations.  If he had never been so happy as when the Doctor\nread that marvellous performance, the Dictionary, to him; he was\nnow quite miserable unless the Doctor pulled it out of his pocket,\nand began.  When the Doctor and I were engaged, he now fell into\nthe custom of walking up and down with Mrs. Strong, and helping her\nto trim her favourite flowers, or weed the beds.  I dare say he\nrarely spoke a dozen words in an hour: but his quiet interest, and\nhis wistful face, found immediate response in both their breasts;\neach knew that the other liked him, and that he loved both; and he\nbecame what no one else could be - a link between them.\n\nWhen I think of him, with his impenetrably wise face, walking up\nand down with the Doctor, delighted to be battered by the hard\nwords in the Dictionary; when I think of him carrying huge\nwatering-pots after Annie; kneeling down, in very paws of gloves,\nat patient microscopic work among the little leaves; expressing as\nno philosopher could have expressed, in everything he did, a\ndelicate desire to be her friend; showering sympathy, trustfulness,\nand affection, out of every hole in the watering-pot; when I think\nof him never wandering in that better mind of his to which\nunhappiness addressed itself, never bringing the unfortunate King\nCharles into the garden, never wavering in his grateful service,\nnever diverted from his knowledge that there was something wrong,\nor from his wish to set it right- I really feel almost ashamed of\nhaving known that he was not quite in his wits, taking account of\nthe utmost I have done with mine.\n\n'Nobody but myself, Trot, knows what that man is!' my aunt would\nproudly remark, when we conversed about it.  'Dick will distinguish\nhimself yet!'\n\nI must refer to one other topic before I close this chapter.  While\nthe visit at the Doctor's was still in progress, I observed that\nthe postman brought two or three letters every morning for Uriah\nHeep, who remained at Highgate until the rest went back, it being\na leisure time; and that these were always directed in a\nbusiness-like manner by Mr. Micawber, who now assumed a round legal\nhand.  I was glad to infer, from these slight premises, that Mr.\nMicawber was doing well; and consequently was much surprised to\nreceive, about this time, the following letter from his amiable\nwife.\n\n\n\n                         'CANTERBURY, Monday Evening.\n\n'You will doubtless be surprised, my dear Mr. Copperfield, to\nreceive this communication.  Still more so, by its contents.  Still\nmore so, by the stipulation of implicit confidence which I beg to\nimpose.  But my feelings as a wife and mother require relief; and\nas I do not wish to consult my family (already obnoxious to the\nfeelings of Mr. Micawber), I know no one of whom I can better ask\nadvice than my friend and former lodger.\n\n'You may be aware, my dear Mr. Copperfield, that between myself and\nMr. Micawber (whom I will never desert), there has always been\npreserved a spirit of mutual confidence.  Mr. Micawber may have\noccasionally given a bill without consulting me, or he may have\nmisled me as to the period when that obligation would become due. \nThis has actually happened.  But, in general, Mr. Micawber has had\nno secrets from the bosom of affection - I allude to his wife - and\nhas invariably, on our retirement to rest, recalled the events of\nthe day.\n\n'You will picture to yourself, my dear Mr. Copperfield, what the\npoignancy of my feelings must be, when I inform you that Mr.\nMicawber is entirely changed.  He is reserved.  He is secret.  His\nlife is a mystery to the partner of his joys and sorrows - I again\nallude to his wife - and if I should assure you that beyond knowing\nthat it is passed from morning to night at the office, I now know\nless of it than I do of the man in the south, connected with whose\nmouth the thoughtless children repeat an idle tale respecting cold\nplum porridge, I should adopt a popular fallacy to express an\nactual fact.\n\n'But this is not all.  Mr. Micawber is morose.  He is severe.  He\nis estranged from our eldest son and daughter, he has no pride in\nhis twins, he looks with an eye of coldness even on the unoffending\nstranger who last became a member of our circle.  The pecuniary\nmeans of meeting our expenses, kept down to the utmost farthing,\nare obtained from him with great difficulty, and even under fearful\nthreats that he will Settle himself (the exact expression); and he\ninexorably refuses to give any explanation whatever of this\ndistracting policy.\n\n'This is hard to bear.  This is heart-breaking.  If you will advise\nme, knowing my feeble powers such as they are, how you think it\nwill be best to exert them in a dilemma so unwonted, you will add\nanother friendly obligation to the many you have already rendered\nme.  With loves from the children, and a smile from the\nhappily-unconscious stranger, I remain, dear Mr. Copperfield,\n\n                              Your afflicted,\n\n                                   'EMMA MICAWBER.'\n\n\nI did not feel justified in giving a wife of Mrs. Micawber's\nexperience any other recommendation, than that she should try to\nreclaim Mr. Micawber by patience and kindness (as I knew she would\nin any case); but the letter set me thinking about him very much.\n\n\n\nCHAPTER 43\nANOTHER RETROSPECT\n\n\nOnce again, let me pause upon a memorable period of my life.  Let\nme stand aside, to see the phantoms of those days go by me,\naccompanying the shadow of myself, in dim procession.\n\nWeeks, months, seasons, pass along.  They seem little more than a\nsummer day and a winter evening.  Now, the Common where I walk with\nDora is all in bloom, a field of bright gold; and now the unseen\nheather lies in mounds and bunches underneath a covering of snow. \nIn a breath, the river that flows through our Sunday walks is\nsparkling in the summer sun, is ruffled by the winter wind, or\nthickened with drifting heaps of ice.  Faster than ever river ran\ntowards the sea, it flashes, darkens, and rolls away.\n\nNot a thread changes, in the house of the two little bird-like\nladies.  The clock ticks over the fireplace, the weather-glass\nhangs in the hall.  Neither clock nor weather-glass is ever right;\nbut we believe in both, devoutly.\n\nI have come legally to man's estate.  I have attained the dignity\nof twenty-one.  But this is a sort of dignity that may be thrust\nupon one.  Let me think what I have achieved.\n\nI have tamed that savage stenographic mystery.  I make a\nrespectable income by it.  I am in high repute for my\naccomplishment in all pertaining to the art, and am joined with\neleven others in reporting the debates in Parliament for a Morning\nNewspaper.  Night after night, I record predictions that never come\nto pass, professions that are never fulfilled, explanations that\nare only meant to mystify.  I wallow in words.  Britannia, that\nunfortunate female, is always before me, like a trussed fowl:\nskewered through and through with office-pens, and bound hand and\nfoot with red tape.  I am sufficiently behind the scenes to know\nthe worth of political life.  I am quite an Infidel about it, and\nshall never be converted.\n\nMy dear old Traddles has tried his hand at the same pursuit, but it\nis not in Traddles's way.  He is perfectly good-humoured respecting\nhis failure, and reminds me that he always did consider himself\nslow.  He has occasional employment on the same newspaper, in\ngetting up the facts of dry subjects, to be written about and\nembellished by more fertile minds.  He is called to the bar; and\nwith admirable industry and self-denial has scraped another hundred\npounds together, to fee a Conveyancer whose chambers he attends. \nA great deal of very hot port wine was consumed at his call; and,\nconsidering the figure, I should think the Inner Temple must have\nmade a profit by it.\n\nI have come out in another way.  I have taken with fear and\ntrembling to authorship.  I wrote a little something, in secret,\nand sent it to a magazine, and it was published in the magazine. \nSince then, I have taken heart to write a good many trifling\npieces.  Now, I am regularly paid for them.  Altogether, I am well\noff, when I tell my income on the fingers of my left hand, I pass\nthe third finger and take in the fourth to the middle joint.\n\nWe have removed, from Buckingham Street, to a pleasant little\ncottage very near the one I looked at, when my enthusiasm first\ncame on.  My aunt, however (who has sold the house at Dover, to\ngood advantage), is not going to remain here, but intends removing\nherself to a still more tiny cottage close at hand.  What does this\nportend?  My marriage?  Yes!\n\nYes!  I am going to be married to Dora!  Miss Lavinia and Miss\nClarissa have given their consent; and if ever canary birds were in\na flutter, they are.  Miss Lavinia, self-charged with the\nsuperintendence of my darling's wardrobe, is constantly cutting out\nbrown-paper cuirasses, and differing in opinion from a highly\nrespectable young man, with a long bundle, and a yard measure under\nhis arm.  A dressmaker, always stabbed in the breast with a needle\nand thread, boards and lodges in the house; and seems to me,\neating, drinking, or sleeping, never to take her thimble off.  They\nmake a lay-figure of my dear.  They are always sending for her to\ncome and try something on.  We can't be happy together for five\nminutes in the evening, but some intrusive female knocks at the\ndoor, and says, 'Oh, if you please, Miss Dora, would you step\nupstairs!'\n\nMiss Clarissa and my aunt roam all over London, to find out\narticles of furniture for Dora and me to look at.  It would be\nbetter for them to buy the goods at once, without this ceremony of\ninspection; for, when we go to see a kitchen fender and\nmeat-screen, Dora sees a Chinese house for Jip, with little bells\non the top, and prefers that.  And it takes a long time to accustom\nJip to his new residence, after we have bought it; whenever he goes\nin or out, he makes all the little bells ring, and is horribly\nfrightened.\n\nPeggotty comes up to make herself useful, and falls to work\nimmediately.  Her department appears to be, to clean everything\nover and over again.  She rubs everything that can be rubbed, until\nit shines, like her own honest forehead, with perpetual friction. \nAnd now it is, that I begin to see her solitary brother passing\nthrough the dark streets at night, and looking, as he goes, among\nthe wandering faces.  I never speak to him at such an hour.  I know\ntoo well, as his grave figure passes onward, what he seeks, and\nwhat he dreads.\n\nWhy does Traddles look so important when he calls upon me this\nafternoon in the Commons - where I still occasionally attend, for\nform's sake, when I have time?  The realization of my boyish\nday-dreams is at hand.  I am going to take out the licence.\n\nIt is a little document to do so much; and Traddles contemplates\nit, as it lies upon my desk, half in admiration, half in awe. \nThere are the names, in the sweet old visionary connexion, David\nCopperfield and Dora Spenlow; and there, in the corner, is that\nParental Institution, the Stamp Office, which is so benignantly\ninterested in the various transactions of human life, looking down\nupon our Union; and there is the Archbishop of Canterbury invoking\na blessing on us in print, and doing it as cheap as could possibly\nbe expected.\n\nNevertheless, I am in a dream, a flustered, happy, hurried dream. \nI can't believe that it is going to be; and yet I can't believe but\nthat everyone I pass in the street, must have some kind of\nperception, that I am to be married the day after tomorrow.  The\nSurrogate knows me, when I go down to be sworn; and disposes of me\neasily, as if there were a Masonic understanding between us. \nTraddles is not at all wanted, but is in attendance as my general\nbacker.\n\n'I hope the next time you come here, my dear fellow,' I say to\nTraddles, 'it will be on the same errand for yourself.  And I hope\nit will be soon.'\n\n'Thank you for your good wishes, my dear Copperfield,' he replies. \n'I hope so too.  It's a satisfaction to know that she'll wait for\nme any length of time, and that she really is the dearest girl -'\n\n'When are you to meet her at the coach?' I ask.\n\n'At seven,' says Traddles, looking at his plain old silver watch -\nthe very watch he once took a wheel out of, at school, to make a\nwater-mill.  'That is about Miss Wickfield's time, is it not?'\n\n'A little earlier.  Her time is half past eight.'\n'I assure you, my dear boy,' says Traddles, 'I am almost as pleased\nas if I were going to be married myself, to think that this event\nis coming to such a happy termination.  And really the great\nfriendship and consideration of personally associating Sophy with\nthe joyful occasion, and inviting her to be a bridesmaid in\nconjunction with Miss Wickfield, demands my warmest thanks.  I am\nextremely sensible of it.'\n\nI hear him, and shake hands with him; and we talk, and walk, and\ndine, and so on; but I don't believe it.  Nothing is real.\n\nSophy arrives at the house of Dora's aunts, in due course.  She has\nthe most agreeable of faces, - not absolutely beautiful, but\nextraordinarily pleasant, - and is one of the most genial,\nunaffected, frank, engaging creatures I have ever seen.  Traddles\npresents her to us with great pride; and rubs his hands for ten\nminutes by the clock, with every individual hair upon his head\nstanding on tiptoe, when I congratulate him in a corner on his\nchoice.\n\nI have brought Agnes from the Canterbury coach, and her cheerful\nand beautiful face is among us for the second time.  Agnes has a\ngreat liking for Traddles, and it is capital to see them meet, and\nto observe the glory of Traddles as he commends the dearest girl in\nthe world to her acquaintance.\n\nStill I don't believe it.  We have a delightful evening, and are\nsupremely happy; but I don't believe it yet.  I can't collect\nmyself.  I can't check off my happiness as it takes place.  I feel\nin a misty and unsettled kind of state; as if I had got up very\nearly in the morning a week or two ago, and had never been to bed\nsince.  I can't make out when yesterday was.  I seem to have been\ncarrying the licence about, in my pocket, many months.\n\nNext day, too, when we all go in a flock to see the house - our\nhouse - Dora's and mine - I am quite unable to regard myself as its\nmaster.  I seem to be there, by permission of somebody else.  I\nhalf expect the real master to come home presently, and say he is\nglad to see me.  Such a beautiful little house as it is, with\neverything so bright and new; with the flowers on the carpets\nlooking as if freshly gathered, and the green leaves on the paper\nas if they had just come out; with the spotless muslin curtains,\nand the blushing rose-coloured furniture, and Dora's garden hat\nwith the blue ribbon - do I remember, now, how I loved her in such\nanother hat when I first knew her! - already hanging on its little\npeg; the guitar-case quite at home on its heels in a corner; and\neverybody tumbling over Jip's pagoda, which is much too big for the\nestablishment.  Another happy evening, quite as unreal as all the\nrest of it, and I steal into the usual room before going away. \nDora is not there.  I suppose they have not done trying on yet. \nMiss Lavinia peeps in, and tells me mysteriously that she will not\nbe long.  She is rather long, notwithstanding; but by and by I hear\na rustling at the door, and someone taps.\n\nI say, 'Come in!' but someone taps again.\n\nI go to the door, wondering who it is; there, I meet a pair of\nbright eyes, and a blushing face; they are Dora's eyes and face,\nand Miss Lavinia has dressed her in tomorrow's dress, bonnet and\nall, for me to see.  I take my little wife to my heart; and Miss\nLavinia gives a little scream because I tumble the bonnet, and Dora\nlaughs and cries at once, because I am so pleased; and I believe it\nless than ever.\n\n'Do you think it pretty, Doady?' says Dora.\n\nPretty!  I should rather think I did.\n\n'And are you sure you like me very much?' says Dora.\n\nThe topic is fraught with such danger to the bonnet, that Miss\nLavinia gives another little scream, and begs me to understand that\nDora is only to be looked at, and on no account to be touched.  So\nDora stands in a delightful state of confusion for a minute or two,\nto be admired; and then takes off her bonnet - looking so natural\nwithout it! - and runs away with it in her hand; and comes dancing\ndown again in her own familiar dress, and asks Jip if I have got a\nbeautiful little wife, and whether he'll forgive her for being\nmarried, and kneels down to make him stand upon the cookery-book,\nfor the last time in her single life.\n\nI go home, more incredulous than ever, to a lodging that I have\nhard by; and get up very early in the morning, to ride to the\nHighgate road and fetch my aunt.\n\nI have never seen my aunt in such state.  She is dressed in\nlavender-coloured silk, and has a white bonnet on, and is amazing. \nJanet has dressed her, and is there to look at me.  Peggotty is\nready to go to church, intending to behold the ceremony from the\ngallery.  Mr. Dick, who is to give my darling to me at the altar,\nhas had his hair curled.  Traddles, whom I have taken up by\nappointment at the turnpike, presents a dazzling combination of\ncream colour and light blue; and both he and Mr. Dick have a\ngeneral effect about them of being all gloves.\n\nNo doubt I see this, because I know it is so; but I am astray, and\nseem to see nothing.  Nor do I believe anything whatever.  Still,\nas we drive along in an open carriage, this fairy marriage is real\nenough to fill me with a sort of wondering pity for the unfortunate\npeople who have no part in it, but are sweeping out the shops, and\ngoing to their daily occupations.\n\nMy aunt sits with my hand in hers all the way.  When we stop a\nlittle way short of the church, to put down Peggotty, whom we have\nbrought on the box, she gives it a squeeze, and me a kiss.\n\n'God bless you, Trot!  My own boy never could be dearer.  I think\nof poor dear Baby this morning.'\n'So do I.  And of all I owe to you, dear aunt.'\n\n'Tut, child!' says my aunt; and gives her hand in overflowing\ncordiality to Traddles, who then gives his to Mr. Dick, who then\ngives his to me, who then gives mine to Traddles, and then we come\nto the church door.\n\nThe church is calm enough, I am sure; but it might be a steam-power\nloom in full action, for any sedative effect it has on me.  I am\ntoo far gone for that.\n\nThe rest is all a more or less incoherent dream.\n\nA dream of their coming in with Dora; of the pew-opener arranging\nus, like a drill-sergeant, before the altar rails; of my wondering,\neven then, why pew-openers must always be the most disagreeable\nfemales procurable, and whether there is any religious dread of a\ndisastrous infection of good-humour which renders it indispensable\nto set those vessels of vinegar upon the road to Heaven.\n\nOf the clergyman and clerk appearing; of a few boatmen and some\nother people strolling in; of an ancient mariner behind me,\nstrongly flavouring the church with rum; of the service beginning\nin a deep voice, and our all being very attentive.\n\nOf Miss Lavinia, who acts as a semi-auxiliary bridesmaid, being the\nfirst to cry, and of her doing homage (as I take it) to the memory\nof Pidger, in sobs; of Miss Clarissa applying a smelling-bottle; of\nAgnes taking care of Dora; of my aunt endeavouring to represent\nherself as a model of sternness, with tears rolling down her face;\nof little Dora trembling very much, and making her responses in\nfaint whispers.\n\nOf our kneeling down together, side by side; of Dora's trembling\nless and less, but always clasping Agnes by the hand; of the\nservice being got through, quietly and gravely; of our all looking\nat each other in an April state of smiles and tears, when it is\nover; of my young wife being hysterical in the vestry, and crying\nfor her poor papa, her dear papa.\n\nOf her soon cheering up again, and our signing the register all\nround.  Of my going into the gallery for Peggotty to bring her to\nsign it; of Peggotty's hugging me in a corner, and telling me she\nsaw my own dear mother married; of its being over, and our going\naway.\n\nOf my walking so proudly and lovingly down the aisle with my sweet\nwife upon my arm, through a mist of half-seen people, pulpits,\nmonuments, pews, fonts, organs, and church windows, in which there\nflutter faint airs of association with my childish church at home,\nso long ago.\n\nOf their whispering, as we pass, what a youthful couple we are, and\nwhat a pretty little wife she is.  Of our all being so merry and\ntalkative in the carriage going back.  Of Sophy telling us that\nwhen she saw Traddles (whom I had entrusted with the licence) asked\nfor it, she almost fainted, having been convinced that he would\ncontrive to lose it, or to have his pocket picked.  Of Agnes\nlaughing gaily; and of Dora being so fond of Agnes that she will\nnot be separated from her, but still keeps her hand.\n\nOf there being a breakfast, with abundance of things, pretty and\nsubstantial, to eat and drink, whereof I partake, as I should do in\nany other dream, without the least perception of their flavour;\neating and drinking, as I may say, nothing but love and marriage,\nand no more believing in the viands than in anything else.\n\nOf my making a speech in the same dreamy fashion, without having an\nidea of what I want to say, beyond such as may be comprehended in\nthe full conviction that I haven't said it.  Of our being very\nsociably and simply happy (always in a dream though); and of Jip's\nhaving wedding cake, and its not agreeing with him afterwards.\n\nOf the pair of hired post-horses being ready, and of Dora's going\naway to change her dress.  Of my aunt and Miss Clarissa remaining\nwith us; and our walking in the garden; and my aunt, who has made\nquite a speech at breakfast touching Dora's aunts, being mightily\namused with herself, but a little proud of it too.\n\nOf Dora's being ready, and of Miss Lavinia's hovering about her,\nloth to lose the pretty toy that has given her so much pleasant\noccupation.  Of Dora's making a long series of surprised\ndiscoveries that she has forgotten all sorts of little things; and\nof everybody's running everywhere to fetch them.\n\nOf their all closing about Dora, when at last she begins to say\ngood-bye, looking, with their bright colours and ribbons, like a\nbed of flowers.  Of my darling being almost smothered among the\nflowers, and coming out, laughing and crying both together, to my\njealous arms.\n\nOf my wanting to carry Jip (who is to go along with us), and Dora's\nsaying no, that she must carry him, or else he'll think she don't\nlike him any more, now she is married, and will break his heart. \nOf our going, arm in arm, and Dora stopping and looking back, and\nsaying, 'If I have ever been cross or ungrateful to anybody, don't\nremember it!' and bursting into tears.\n\nOf her waving her little hand, and our going away once more.  Of\nher once more stopping, and looking back, and hurrying to Agnes,\nand giving Agnes, above all the others, her last kisses and\nfarewells.\n\nWe drive away together, and I awake from the dream.  I believe it\nat last.  It is my dear, dear, little wife beside me, whom I love\nso well!\n\n'Are you happy now, you foolish boy?' says Dora, 'and sure you\ndon't repent?'\n\n\nI have stood aside to see the phantoms of those days go by me. \nThey are gone, and I resume the journey of my story.\n\n\n\nCHAPTER 44\nOUR HOUSEKEEPING\n\n\nIt was a strange condition of things, the honeymoon being over, and\nthe bridesmaids gone home, when I found myself sitting down in my\nown small house with Dora; quite thrown out of employment, as I may\nsay, in respect of the delicious old occupation of making love.\n\nIt seemed such an extraordinary thing to have Dora always there. \nIt was so unaccountable not to be obliged to go out to see her, not\nto have any occasion to be tormenting myself about her, not to have\nto write to her, not to be scheming and devising opportunities of\nbeing alone with her.  Sometimes of an evening, when I looked up\nfrom my writing, and saw her seated opposite, I would lean back in\nmy chair, and think how queer it was that there we were, alone\ntogether as a matter of course - nobody's business any more - all\nthe romance of our engagement put away upon a shelf, to rust - no\none to please but one another - one another to please, for life.\n\nWhen there was a debate, and I was kept out very late, it seemed so\nstrange to me, as I was walking home, to think that Dora was at\nhome!  It was such a wonderful thing, at first, to have her coming\nsoftly down to talk to me as I ate my supper.  It was such a\nstupendous thing to know for certain that she put her hair in\npapers.  It was altogether such an astonishing event to see her do\nit!\n\nI doubt whether two young birds could have known less about keeping\nhouse, than I and my pretty Dora did.  We had a servant, of course. \nShe kept house for us.  I have still a latent belief that she must\nhave been Mrs. Crupp's daughter in disguise, we had such an awful\ntime of it with Mary Anne.\n\nHer name was Paragon.  Her nature was represented to us, when we\nengaged her, as being feebly expressed in her name.  She had a\nwritten character, as large as a proclamation; and, according to\nthis document, could do everything of a domestic nature that ever\nI heard of, and a great many things that I never did hear of.  She\nwas a woman in the prime of life; of a severe countenance; and\nsubject (particularly in the arms) to a sort of perpetual measles\nor fiery rash.  She had a cousin in the Life-Guards, with such long\nlegs that he looked like the afternoon shadow of somebody else. \nHis shell-jacket was as much too little for him as he was too big\nfor the premises.  He made the cottage smaller than it need have\nbeen, by being so very much out of proportion to it.  Besides\nwhich, the walls were not thick, and, whenever he passed the\nevening at our house, we always knew of it by hearing one continual\ngrowl in the kitchen.\n\nOur treasure was warranted sober and honest.  I am therefore\nwilling to believe that she was in a fit when we found her under\nthe boiler; and that the deficient tea-spoons were attributable to\nthe dustman.\n\nBut she preyed upon our minds dreadfully.  We felt our\ninexperience, and were unable to help ourselves.  We should have\nbeen at her mercy, if she had had any; but she was a remorseless\nwoman, and had none.  She was the cause of our first little\nquarrel.\n\n'My dearest life,' I said one day to Dora, 'do you think Mary Anne\nhas any idea of time?'\n\n'Why, Doady?' inquired Dora, looking up, innocently, from her\ndrawing.\n\n'My love, because it's five, and we were to have dined at four.'\n\nDora glanced wistfully at the clock, and hinted that she thought it\nwas too fast.\n\n'On the contrary, my love,' said I, referring to my watch, 'it's a\nfew minutes too slow.'\n\nMy little wife came and sat upon my knee, to coax me to be quiet,\nand drew a line with her pencil down the middle of my nose; but I\ncouldn't dine off that, though it was very agreeable.\n\n'Don't you think, my dear,' said I, 'it would be better for you to\nremonstrate with Mary Anne?'\n\n'Oh no, please!  I couldn't, Doady!' said Dora.\n\n'Why not, my love?' I gently asked.\n\n'Oh, because I am such a little goose,' said Dora, 'and she knows\nI am!'\n\nI thought this sentiment so incompatible with the establishment of\nany system of check on Mary Anne, that I frowned a little.\n\n'Oh, what ugly wrinkles in my bad boy's forehead!' said Dora, and\nstill being on my knee, she traced them with her pencil; putting it\nto her rosy lips to make it mark blacker, and working at my\nforehead with a quaint little mockery of being industrious, that\nquite delighted me in spite of myself.\n\n'There's a good child,' said Dora, 'it makes its face so much\nprettier to laugh.'\n'But, my love,' said I.\n\n'No, no! please!' cried Dora, with a kiss, 'don't be a naughty Blue\nBeard!  Don't be serious!'\n\n'my precious wife,' said I, 'we must be serious sometimes.  Come!\nSit down on this chair, close beside me!  Give me the pencil! \nThere!  Now let us talk sensibly.  You know, dear'; what a little\nhand it was to hold, and what a tiny wedding-ring it was to see!\n'You know, my love, it is not exactly comfortable to have to go out\nwithout one's dinner.  Now, is it?'\n\n'N-n-no!' replied Dora, faintly.\n\n'My love, how you tremble!'\n\n'Because I KNOW you're going to scold me,' exclaimed Dora, in a\npiteous voice.\n\n'My sweet, I am only going to reason.'\n\n'Oh, but reasoning is worse than scolding!' exclaimed Dora, in\ndespair.  'I didn't marry to be reasoned with.  If you meant to\nreason with such a poor little thing as I am, you ought to have\ntold me so, you cruel boy!'\n\nI tried to pacify Dora, but she turned away her face, and shook her\ncurls from side to side, and said, 'You cruel, cruel boy!' so many\ntimes, that I really did not exactly know what to do: so I took a\nfew turns up and down the room in my uncertainty, and came back\nagain.\n\n'Dora, my darling!'\n\n'No, I am not your darling.  Because you must be sorry that you\nmarried me, or else you wouldn't reason with me!' returned Dora.\n\nI felt so injured by the inconsequential nature of this charge,\nthat it gave me courage to be grave.\n\n'Now, my own Dora,' said I, 'you are very childish, and are talking\nnonsense.  You must remember, I am sure, that I was obliged to go\nout yesterday when dinner was half over; and that, the day before,\nI was made quite unwell by being obliged to eat underdone veal in\na hurry; today, I don't dine at all - and I am afraid to say how\nlong we waited for breakfast - and then the water didn't boil.  I\ndon't mean to reproach you, my dear, but this is not comfortable.'\n\n'Oh, you cruel, cruel boy, to say I am a disagreeable wife!' cried\nDora.\n\n'Now, my dear Dora, you must know that I never said that!'\n\n'You said, I wasn't comfortable!' cried Dora.\n'I said the housekeeping was not comfortable!'\n\n'It's exactly the same thing!' cried Dora.  And she evidently\nthought so, for she wept most grievously.\n\nI took another turn across the room, full of love for my pretty\nwife, and distracted by self-accusatory inclinations to knock my\nhead against the door.  I sat down again, and said:\n\n'I am not blaming you, Dora.  We have both a great deal to learn. \nI am only trying to show you, my dear, that you must - you really\nmust' (I was resolved not to give this up) - 'accustom yourself to\nlook after Mary Anne.  Likewise to act a little for yourself, and\nme.'\n\n'I wonder, I do, at your making such ungrateful speeches,' sobbed\nDora.  'When you know that the other day, when you said you would\nlike a little bit of fish, I went out myself, miles and miles, and\nordered it, to surprise you.'\n\n'And it was very kind of you, my own darling,' said I.  'I felt it\nso much that I wouldn't on any account have even mentioned that you\nbought a Salmon - which was too much for two.  Or that it cost one\npound six - which was more than we can afford.'\n\n'You enjoyed it very much,' sobbed Dora.  'And you said I was a\nMouse.'\n\n'And I'll say so again, my love,' I returned, 'a thousand times!'\n\nBut I had wounded Dora's soft little heart, and she was not to be\ncomforted.  She was so pathetic in her sobbing and bewailing, that\nI felt as if I had said I don't know what to hurt her.  I was\nobliged to hurry away; I was kept out late; and I felt all night\nsuch pangs of remorse as made me miserable.  I had the conscience\nof an assassin, and was haunted by a vague sense of enormous\nwickedness.\n\nIt was two or three hours past midnight when I got home.  I found\nmy aunt, in our house, sitting up for me.\n\n'Is anything the matter, aunt?' said I, alarmed.\n\n'Nothing, Trot,' she replied.  'Sit down, sit down.  Little Blossom\nhas been rather out of spirits, and I have been keeping her\ncompany.  That's all.'\n\nI leaned my head upon my hand; and felt more sorry and downcast, as\nI sat looking at the fire, than I could have supposed possible so\nsoon after the fulfilment of my brightest hopes.  As I sat\nthinking, I happened to meet my aunt's eyes, which were resting on\nmy face.  There was an anxious expression in them, but it cleared\ndirectly.\n\n'I assure you, aunt,' said I, 'I have been quite unhappy myself all\nnight, to think of Dora's being so.  But I had no other intention\nthan to speak to her tenderly and lovingly about our home-affairs.'\n\nMY aunt nodded encouragement.\n\n'You must have patience, Trot,' said she.\n\n'Of course.  Heaven knows I don't mean to be unreasonable, aunt!'\n\n'No, no,' said my aunt.  'But Little Blossom is a very tender\nlittle blossom, and the wind must be gentle with her.'\n\nI thanked my good aunt, in my heart, for her tenderness towards my\nwife; and I was sure that she knew I did.\n\n'Don't you think, aunt,' said I, after some further contemplation\nof the fire, 'that you could advise and counsel Dora a little, for\nour mutual advantage, now and then?'\n\n'Trot,' returned my aunt, with some emotion, 'no!  Don't ask me\nsuch a thing.'\n\nHer tone was so very earnest that I raised my eyes in surprise.\n\n'I look back on my life, child,' said my aunt, 'and I think of some\nwho are in their graves, with whom I might have been on kinder\nterms.  If I judged harshly of other people's mistakes in marriage,\nit may have been because I had bitter reason to judge harshly of my\nown.  Let that pass.  I have been a grumpy, frumpy, wayward sort of\na woman, a good many years.  I am still, and I always shall be. \nBut you and I have done one another some good, Trot, - at all\nevents, you have done me good, my dear; and division must not come\nbetween us, at this time of day.'\n\n'Division between us!' cried I.\n\n'Child, child!' said my aunt, smoothing her dress, 'how soon it\nmight come between us, or how unhappy I might make our Little\nBlossom, if I meddled in anything, a prophet couldn't say.  I want\nour pet to like me, and be as gay as a butterfly.  Remember your\nown home, in that second marriage; and never do both me and her the\ninjury you have hinted at!'\n\nI comprehended, at once, that my aunt was right; and I comprehended\nthe full extent of her generous feeling towards my dear wife.\n\n'These are early days, Trot,' she pursued, 'and Rome was not built\nin a day, nor in a year.  You have chosen freely for yourself'; a\ncloud passed over her face for a moment, I thought; 'and you have\nchosen a very pretty and a very affectionate creature.  It will be\nyour duty, and it will be your pleasure too - of course I know\nthat; I am not delivering a lecture - to estimate her (as you chose\nher) by the qualities she has, and not by the qualities she may not\nhave.  The latter you must develop in her, if you can.  And if you\ncannot, child,' here my aunt rubbed her nose, 'you must just\naccustom yourself to do without 'em.  But remember, my dear, your\nfuture is between you two.  No one can assist you; you are to work\nit out for yourselves.  This is marriage, Trot; and Heaven bless\nyou both, in it, for a pair of babes in the wood as you are!'\n\nMy aunt said this in a sprightly way, and gave me a kiss to ratify\nthe blessing.\n\n'Now,' said she, 'light my little lantern, and see me into my\nbandbox by the garden path'; for there was a communication between\nour cottages in that direction.  'Give Betsey Trotwood's love to\nBlossom, when you come back; and whatever you do, Trot, never dream\nof setting Betsey up as a scarecrow, for if I ever saw her in the\nglass, she's quite grim enough and gaunt enough in her private\ncapacity!'\n\nWith this my aunt tied her head up in a handkerchief, with which\nshe was accustomed to make a bundle of it on such occasions; and I\nescorted her home.  As she stood in her garden, holding up her\nlittle lantern to light me back, I thought her observation of me\nhad an anxious air again; but I was too much occupied in pondering\non what she had said, and too much impressed - for the first time,\nin reality - by the conviction that Dora and I had indeed to work\nout our future for ourselves, and that no one could assist us, to\ntake much notice of it.\n\nDora came stealing down in her little slippers, to meet me, now\nthat I was alone; and cried upon my shoulder, and said I had been\nhard-hearted and she had been naughty; and I said much the same\nthing in effect, I believe; and we made it up, and agreed that our\nfirst little difference was to be our last, and that we were never\nto have another if we lived a hundred years.\n\nThe next domestic trial we went through, was the Ordeal of\nServants.  Mary Anne's cousin deserted into our coal-hole, and was\nbrought out, to our great amazement, by a piquet of his companions\nin arms, who took him away handcuffed in a procession that covered\nour front-garden with ignominy.  This nerved me to get rid of Mary\nAnne, who went so mildly, on receipt of wages, that I was\nsurprised, until I found out about the tea-spoons, and also about\nthe little sums she had borrowed in my name of the tradespeople\nwithout authority.  After an interval of Mrs. Kidgerbury - the\noldest inhabitant of Kentish Town, I believe, who went out charing,\nbut was too feeble to execute her conceptions of that art - we\nfound another treasure, who was one of the most amiable of women,\nbut who generally made a point of falling either up or down the\nkitchen stairs with the tray, and almost plunged into the parlour,\nas into a bath, with the tea-things.  The ravages committed by this\nunfortunate, rendering her dismissal necessary, she was succeeded\n(with intervals of Mrs. Kidgerbury) by a long line of Incapables;\nterminating in a young person of genteel appearance, who went to\nGreenwich Fair in Dora's bonnet.  After whom I remember nothing but\nan average equality of failure.\n\nEverybody we had anything to do with seemed to cheat us.  Our\nappearance in a shop was a signal for the damaged goods to be\nbrought out immediately.  If we bought a lobster, it was full of\nwater.  All our meat turned out to be tough, and there was hardly\nany crust to our loaves.  In search of the principle on which\njoints ought to be roasted, to be roasted enough, and not too much,\nI myself referred to the Cookery Book, and found it there\nestablished as the allowance of a quarter of an hour to every\npound, and say a quarter over.  But the principle always failed us\nby some curious fatality, and we never could hit any medium between\nredness and cinders.\n\nI had reason to believe that in accomplishing these failures we\nincurred a far greater expense than if we had achieved a series of\ntriumphs.  It appeared to me, on looking over the tradesmen's\nbooks, as if we might have kept the basement storey paved with\nbutter, such was the extensive scale of our consumption of that\narticle.  I don't know whether the Excise returns of the period may\nhave exhibited any increase in the demand for pepper; but if our\nperformances did not affect the market, I should say several\nfamilies must have left off using it.  And the most wonderful fact\nof all was, that we never had anything in the house.\n\nAs to the washerwoman pawning the clothes, and coming in a state of\npenitent intoxication to apologize, I suppose that might have\nhappened several times to anybody.  Also the chimney on fire, the\nparish engine, and perjury on the part of the Beadle.  But I\napprehend that we were personally fortunate in engaging a servant\nwith a taste for cordials, who swelled our running account for\nporter at the public-house by such inexplicable items as 'quartern\nrum shrub (Mrs. C.)'; 'Half-quartern gin and cloves (Mrs. C.)';\n'Glass rum and peppermint (Mrs. C.)' - the parentheses always\nreferring to Dora, who was supposed, it appeared on explanation, to\nhave imbibed the whole of these refreshments.\n\nOne of our first feats in the housekeeping way was a little dinner\nto Traddles.  I met him in town, and asked him to walk out with me\nthat afternoon.  He readily consenting, I wrote to Dora, saying I\nwould bring him home.  It was pleasant weather, and on the road we\nmade my domestic happiness the theme of conversation.  Traddles was\nvery full of it; and said, that, picturing himself with such a\nhome, and Sophy waiting and preparing for him, he could think of\nnothing wanting to complete his bliss.\n\nI could not have wished for a prettier little wife at the opposite\nend of the table, but I certainly could have wished, when we sat\ndown, for a little more room.  I did not know how it was, but\nthough there were only two of us, we were at once always cramped\nfor room, and yet had always room enough to lose everything in.  I\nsuspect it may have been because nothing had a place of its own,\nexcept Jip's pagoda, which invariably blocked up the main\nthoroughfare.  On the present occasion, Traddles was so hemmed in\nby the pagoda and the guitar-case, and Dora's flower-painting, and\nmy writing-table, that I had serious doubts of the possibility of\nhis using his knife and fork; but he protested, with his own\ngood-humour, 'Oceans of room, Copperfield!  I assure you, Oceans!'\n\nThere was another thing I could have wished, namely, that Jip had\nnever been encouraged to walk about the tablecloth during dinner. \nI began to think there was something disorderly in his being there\nat all, even if he had not been in the habit of putting his foot in\nthe salt or the melted butter.  On this occasion he seemed to think\nhe was introduced expressly to keep Traddles at bay; and he barked\nat my old friend, and made short runs at his plate, with such\nundaunted pertinacity, that he may be said to have engrossed the\nconversation.\n\nHowever, as I knew how tender-hearted my dear Dora was, and how\nsensitive she would be to any slight upon her favourite, I hinted\nno objection.  For similar reasons I made no allusion to the\nskirmishing plates upon the floor; or to the disreputable\nappearance of the castors, which were all at sixes and sevens, and\nlooked drunk; or to the further blockade of Traddles by wandering\nvegetable dishes and jugs.  I could not help wondering in my own\nmind, as I contemplated the boiled leg of mutton before me,\nprevious to carving it, how it came to pass that our joints of meat\nwere of such extraordinary shapes - and whether our butcher\ncontracted for all the deformed sheep that came into the world; but\nI kept my reflections to myself.\n\n'My love,' said I to Dora, 'what have you got in that dish?'\n\nI could not imagine why Dora had been making tempting little faces\nat me, as if she wanted to kiss me.\n\n'Oysters, dear,' said Dora, timidly.\n\n'Was that YOUR thought?' said I, delighted.\n\n'Ye-yes, Doady,' said Dora.\n\n'There never was a happier one!' I exclaimed, laying down the\ncarving-knife and fork.  'There is nothing Traddles likes so much!'\n\n'Ye-yes, Doady,' said Dora, 'and so I bought a beautiful little\nbarrel of them, and the man said they were very good.  But I - I am\nafraid there's something the matter with them.  They don't seem\nright.'  Here Dora shook her head, and diamonds twinkled in her\neyes.\n\n'They are only opened in both shells,' said I.  'Take the top one\noff, my love.'\n\n'But it won't come off!' said Dora, trying very hard, and looking\nvery much distressed.\n\n'Do you know, Copperfield,' said Traddles, cheerfully examining the\ndish, 'I think it is in consequence - they are capital oysters, but\nI think it is in consequence - of their never having been opened.'\n\nThey never had been opened; and we had no oyster-knives - and\ncouldn't have used them if we had; so we looked at the oysters and\nate the mutton.  At least we ate as much of it as was done, and\nmade up with capers.  If I had permitted him, I am satisfied that\nTraddles would have made a perfect savage of himself, and eaten a\nplateful of raw meat, to express enjoyment of the repast; but I\nwould hear of no such immolation on the altar of friendship, and we\nhad a course of bacon instead; there happening, by good fortune, to\nbe cold bacon in the larder.\n\nMy poor little wife was in such affliction when she thought I\nshould be annoyed, and in such a state of joy when she found I was\nnot, that the discomfiture I had subdued, very soon vanished, and\nwe passed a happy evening; Dora sitting with her arm on my chair\nwhile Traddles and I discussed a glass of wine, and taking every\nopportunity of whispering in my ear that it was so good of me not\nto be a cruel, cross old boy.  By and by she made tea for us; which\nit was so pretty to see her do, as if she was busying herself with\na set of doll's tea-things, that I was not particular about the\nquality of the beverage.  Then Traddles and I played a game or two\nat cribbage; and Dora singing to the guitar the while, it seemed to\nme as if our courtship and marriage were a tender dream of mine,\nand the night when I first listened to her voice were not yet over.\n\nWhen Traddles went away, and I came back into the parlour from\nseeing him out, my wife planted her chair close to mine, and sat\ndown by my side.  'I am very sorry,' she said.  'Will you try to\nteach me, Doady?'\n\n'I must teach myself first, Dora,' said I.  'I am as bad as you,\nlove.'\n\n'Ah!  But you can learn,' she returned; 'and you are a clever,\nclever man!'\n\n'Nonsense, mouse!' said I.\n\n'I wish,' resumed my wife, after a long silence, 'that I could have\ngone down into the country for a whole year, and lived with Agnes!'\n\nHer hands were clasped upon my shoulder, and her chin rested on\nthem, and her blue eyes looked quietly into mine.\n\n'Why so?' I asked.\n\n'I think she might have improved me, and I think I might have\nlearned from her,' said Dora.\n\n'All in good time, my love.  Agnes has had her father to take care\nof for these many years, you should remember.  Even when she was\nquite a child, she was the Agnes whom we know,' said I.\n\n'Will you call me a name I want you to call me?' inquired Dora,\nwithout moving.\n\n'What is it?' I asked with a smile.\n\n'It's a stupid name,' she said, shaking her curls for a moment. \n'Child-wife.'\n\nI laughingly asked my child-wife what her fancy was in desiring to\nbe so called.  She answered without moving, otherwise than as the\narm I twined about her may have brought her blue eyes nearer to me:\n\n'I don't mean, you silly fellow, that you should use the name\ninstead of Dora.  I only mean that you should think of me that way. \nWhen you are going to be angry with me, say to yourself, \"it's only\nmy child-wife!\" When I am very disappointing, say, \"I knew, a long\ntime ago, that she would make but a child-wife!\" When you miss what\nI should like to be, and I think can never be, say, \"still my\nfoolish child-wife loves me!\" For indeed I do.'\n\nI had not been serious with her; having no idea until now, that she\nwas serious herself.  But her affectionate nature was so happy in\nwhat I now said to her with my whole heart, that her face became a\nlaughing one before her glittering eyes were dry.  She was soon my\nchild-wife indeed; sitting down on the floor outside the Chinese\nHouse, ringing all the little bells one after another, to punish\nJip for his recent bad behaviour; while Jip lay blinking in the\ndoorway with his head out, even too lazy to be teased.\n\nThis appeal of Dora's made a strong impression on me.  I look back\non the time I write of; I invoke the innocent figure that I dearly\nloved, to come out from the mists and shadows of the past, and turn\nits gentle head towards me once again; and I can still declare that\nthis one little speech was constantly in my memory.  I may not have\nused it to the best account; I was young and inexperienced; but I\nnever turned a deaf ear to its artless pleading.\n\nDora told me, shortly afterwards, that she was going to be a\nwonderful housekeeper.  Accordingly, she polished the tablets,\npointed the pencil, bought an immense account-book, carefully\nstitched up with a needle and thread all the leaves of the Cookery\nBook which Jip had torn, and made quite a desperate little attempt\n'to be good', as she called it.  But the figures had the old\nobstinate propensity - they WOULD NOT add up.  When she had entered\ntwo or three laborious items in the account-book, Jip would walk\nover the page, wagging his tail, and smear them all out.  Her own\nlittle right-hand middle finger got steeped to the very bone in\nink; and I think that was the only decided result obtained.\n\nSometimes, of an evening, when I was at home and at work - for I\nwrote a good deal now, and was beginning in a small way to be known\nas a writer - I would lay down my pen, and watch my child-wife\ntrying to be good.  First of all, she would bring out the immense\naccount-book, and lay it down upon the table, with a deep sigh. \nThen she would open it at the place where Jip had made it illegible\nlast night, and call Jip up, to look at his misdeeds.  This would\noccasion a diversion in Jip's favour, and some inking of his nose,\nperhaps, as a penalty.  Then she would tell Jip to lie down on the\ntable instantly, 'like a lion' - which was one of his tricks,\nthough I cannot say the likeness was striking - and, if he were in\nan obedient humour, he would obey.  Then she would take up a pen,\nand begin to write, and find a hair in it.  Then she would take up\nanother pen, and begin to write, and find that it spluttered.  Then\nshe would take up another pen, and begin to write, and say in a low\nvoice, 'Oh, it's a talking pen, and will disturb Doady!' And then\nshe would give it up as a bad job, and put the account-book away,\nafter pretending to crush the lion with it.\n\nOr, if she were in a very sedate and serious state of mind, she\nwould sit down with the tablets, and a little basket of bills and\nother documents, which looked more like curl-papers than anything\nelse, and endeavour to get some result out of them.  After severely\ncomparing one with another, and making entries on the tablets, and\nblotting them out, and counting all the fingers of her left hand\nover and over again, backwards and forwards, she would be so vexed\nand discouraged, and would look so unhappy, that it gave me pain to\nsee her bright face clouded - and for me! - and I would go softly\nto her, and say:\n\n'What's the matter, Dora?'\n\nDora would look up hopelessly, and reply, 'They won't come right. \nThey make my head ache so.  And they won't do anything I want!'\n\nThen I would say, 'Now let us try together.  Let me show you,\nDora.'\n\nThen I would commence a practical demonstration, to which Dora\nwould pay profound attention, perhaps for five minutes; when she\nwould begin to be dreadfully tired, and would lighten the subject\nby curling my hair, or trying the effect of my face with my\nshirt-collar turned down.  If I tacitly checked this playfulness,\nand persisted, she would look so scared and disconsolate, as she\nbecame more and more bewildered, that the remembrance of her\nnatural gaiety when I first strayed into her path, and of her being\nmy child-wife, would come reproachfully upon me; and I would lay\nthe pencil down, and call for the guitar.\n\nI had a great deal of work to do, and had many anxieties, but the\nsame considerations made me keep them to myself.  I am far from\nsure, now, that it was right to do this, but I did it for my\nchild-wife's sake.  I search my breast, and I commit its secrets,\nif I know them, without any reservation to this paper.  The old\nunhappy loss or want of something had, I am conscious, some place\nin my heart; but not to the embitterment of my life.  When I walked\nalone in the fine weather, and thought of the summer days when all\nthe air had been filled with my boyish enchantment, I did miss\nsomething of the realization of my dreams; but I thought it was a\nsoftened glory of the Past, which nothing could have thrown upon\nthe present time.  I did feel, sometimes, for a little while, that\nI could have wished my wife had been my counsellor; had had more\ncharacter and purpose, to sustain me and improve me by; had been\nendowed with power to fill up the void which somewhere seemed to be\nabout me; but I felt as if this were an unearthly consummation of\nmy happiness, that never had been meant to be, and never could have\nbeen.\n\nI was a boyish husband as to years.  I had known the softening\ninfluence of no other sorrows or experiences than those recorded in\nthese leaves.  If I did any wrong, as I may have done much, I did\nit in mistaken love, and in my want of wisdom.  I write the exact\ntruth.  It would avail me nothing to extenuate it now.\n\nThus it was that I took upon myself the toils and cares of our\nlife, and had no partner in them.  We lived much as before, in\nreference to our scrambling household arrangements; but I had got\nused to those, and Dora I was pleased to see was seldom vexed now. \nShe was bright and cheerful in the old childish way, loved me\ndearly, and was happy with her old trifles.\n\nWhen the debates were heavy - I mean as to length, not quality, for\nin the last respect they were not often otherwise - and I went home\nlate, Dora would never rest when she heard my footsteps, but would\nalways come downstairs to meet me.  When my evenings were\nunoccupied by the pursuit for which I had qualified myself with so\nmuch pains, and I was engaged in writing at home, she would sit\nquietly near me, however late the hour, and be so mute, that I\nwould often think she had dropped asleep.  But generally, when I\nraised my head, I saw her blue eyes looking at me with the quiet\nattention of which I have already spoken.\n\n'Oh, what a weary boy!' said Dora one night, when I met her eyes as\nI was shutting up my desk.\n\n'What a weary girl!' said I.  'That's more to the purpose.  You\nmust go to bed another time, my love.  It's far too late for you.'\n\n'No, don't send me to bed!' pleaded Dora, coming to my side. \n'Pray, don't do that!'\n\n'Dora!' To my amazement she was sobbing on my neck.  'Not well, my\ndear! not happy!'\n\n'Yes! quite well, and very happy!' said Dora.  'But say you'll let\nme stop, and see you write.'\n\n'Why, what a sight for such bright eyes at midnight!' I replied.\n\n'Are they bright, though?' returned Dora, laughing.  'I'm so glad\nthey're bright.'\n'Little Vanity!' said I.\n\nBut it was not vanity; it was only harmless delight in my\nadmiration.  I knew that very well, before she told me so.\n\n'If you think them pretty, say I may always stop, and see you\nwrite!' said Dora.  'Do you think them pretty?'\n\n'Very pretty.'\n\n'Then let me always stop and see you write.'\n\n'I am afraid that won't improve their brightness, Dora.'\n\n'Yes, it will!  Because, you clever boy, you'll not forget me then,\nwhile you are full of silent fancies.  Will you mind it, if I say\nsomething very, very silly?  - more than usual?' inquired Dora,\npeeping over my shoulder into my face.\n\n'What wonderful thing is that?' said I.\n\n'Please let me hold the pens,' said Dora.  'I want to have\nsomething to do with all those many hours when you are so\nindustrious.  May I hold the pens?'\n\nThe remembrance of her pretty joy when I said yes, brings tears\ninto my eyes.  The next time I sat down to write, and regularly\nafterwards, she sat in her old place, with a spare bundle of pens\nat her side.  Her triumph in this connexion with my work, and her\ndelight when I wanted a new pen - which I very often feigned to do\n- suggested to me a new way of pleasing my child-wife.  I\noccasionally made a pretence of wanting a page or two of manuscript\ncopied.  Then Dora was in her glory.  The preparations she made for\nthis great work, the aprons she put on, the bibs she borrowed from\nthe kitchen to keep off the ink, the time she took, the innumerable\nstoppages she made to have a laugh with Jip as if he understood it\nall, her conviction that her work was incomplete unless she signed\nher name at the end, and the way in which she would bring it to me,\nlike a school-copy, and then, when I praised it, clasp me round the\nneck, are touching recollections to me, simple as they might appear\nto other men.\n\nShe took possession of the keys soon after this, and went jingling\nabout the house with the whole bunch in a little basket, tied to\nher slender waist.  I seldom found that the places to which they\nbelonged were locked, or that they were of any use except as a\nplaything for Jip - but Dora was pleased, and that pleased me.  She\nwas quite satisfied that a good deal was effected by this\nmake-belief of housekeeping; and was as merry as if we had been\nkeeping a baby-house, for a joke.\n\nSo we went on.  Dora was hardly less affectionate to my aunt than\nto me, and often told her of the time when she was afraid she was\n'a cross old thing'.  I never saw my aunt unbend more\nsystematically to anyone.  She courted Jip, though Jip never\nresponded; listened, day after day, to the guitar, though I am\nafraid she had no taste for music; never attacked the Incapables,\nthough the temptation must have been severe; went wonderful\ndistances on foot to purchase, as surprises, any trifles that she\nfound out Dora wanted; and never came in by the garden, and missed\nher from the room, but she would call out, at the foot of the\nstairs, in a voice that sounded cheerfully all over the house:\n\n'Where's Little Blossom?'\n\n\n\nCHAPTER 45\nMr. Dick fulfils my aunt's Predictions\n\n\nIt was some time now, since I had left the Doctor.  Living in his\nneighbourhood, I saw him frequently; and we all went to his house\non two or three occasions to dinner or tea.  The Old Soldier was in\npermanent quarters under the Doctor's roof.  She was exactly the\nsame as ever, and the same immortal butterflies hovered over her\ncap.\n\nLike some other mothers, whom I have known in the course of my\nlife, Mrs. Markleham was far more fond of pleasure than her\ndaughter was.  She required a great deal of amusement, and, like a\ndeep old soldier, pretended, in consulting her own inclinations, to\nbe devoting herself to her child.  The Doctor's desire that Annie\nshould be entertained, was therefore particularly acceptable to\nthis excellent parent; who expressed unqualified approval of his\ndiscretion.\n\nI have no doubt, indeed, that she probed the Doctor's wound without\nknowing it.  Meaning nothing but a certain matured frivolity and\nselfishness, not always inseparable from full-blown years, I think\nshe confirmed him in his fear that he was a constraint upon his\nyoung wife, and that there was no congeniality of feeling between\nthem, by so strongly commending his design of lightening the load\nof her life.\n\n'My dear soul,' she said to him one day when I was present, 'you\nknow there is no doubt it would be a little pokey for Annie to be\nalways shut up here.'\n\nThe Doctor nodded his benevolent head.  'When she comes to her\nmother's age,' said Mrs. Markleham, with a flourish of her fan,\n'then it'll be another thing.  You might put ME into a Jail, with\ngenteel society and a rubber, and I should never care to come out. \nBut I am not Annie, you know; and Annie is not her mother.'\n\n'Surely, surely,' said the Doctor.\n\n'You are the best of creatures - no, I beg your pardon!' for the\nDoctor made a gesture of deprecation, 'I must say before your face,\nas I always say behind your back, you are the best of creatures;\nbut of course you don't - now do you?  - enter into the same\npursuits and fancies as Annie?'\n\n'No,' said the Doctor, in a sorrowful tone.\n\n'No, of course not,' retorted the Old Soldier.  'Take your\nDictionary, for example.  What a useful work a Dictionary is!  What\na necessary work!  The meanings of words!  Without Doctor Johnson,\nor somebody of that sort, we might have been at this present moment\ncalling an Italian-iron, a bedstead.  But we can't expect a\nDictionary - especially when it's making - to interest Annie, can\nwe?'\n\nThe Doctor shook his head.\n\n'And that's why I so much approve,' said Mrs. Markleham, tapping\nhim on the shoulder with her shut-up fan, 'of your thoughtfulness. \nIt shows that you don't expect, as many elderly people do expect,\nold heads on young shoulders.  You have studied Annie's character,\nand you understand it.  That's what I find so charming!'\n\nEven the calm and patient face of Doctor Strong expressed some\nlittle sense of pain, I thought, under the infliction of these\ncompliments.\n\n'Therefore, my dear Doctor,' said the Old Soldier, giving him\nseveral affectionate taps, 'you may command me, at all times and\nseasons.  Now, do understand that I am entirely at your service. \nI am ready to go with Annie to operas, concerts, exhibitions, all\nkinds of places; and you shall never find that I am tired.  Duty,\nmy dear Doctor, before every consideration in the universe!'\n\nShe was as good as her word.  She was one of those people who can\nbear a great deal of pleasure, and she never flinched in her\nperseverance in the cause.  She seldom got hold of the newspaper\n(which she settled herself down in the softest chair in the house\nto read through an eye-glass, every day, for two hours), but she\nfound out something that she was certain Annie would like to see. \nIt was in vain for Annie to protest that she was weary of such\nthings.  Her mother's remonstrance always was, 'Now, my dear Annie,\nI am sure you know better; and I must tell you, my love, that you\nare not making a proper return for the kindness of Doctor Strong.'\n\nThis was usually said in the Doctor's presence, and appeared to me\nto constitute Annie's principal inducement for withdrawing her\nobjections when she made any.  But in general she resigned herself\nto her mother, and went where the Old Soldier would.\n\nIt rarely happened now that Mr. Maldon accompanied them.  Sometimes\nmy aunt and Dora were invited to do so, and accepted the\ninvitation.  Sometimes Dora only was asked.  The time had been,\nwhen I should have been uneasy in her going; but reflection on what\nhad passed that former night in the Doctor's study, had made a\nchange in my mistrust.  I believed that the Doctor was right, and\nI had no worse suspicions.\n\nMy aunt rubbed her nose sometimes when she happened to be alone\nwith me, and said she couldn't make it out; she wished they were\nhappier; she didn't think our military friend (so she always called\nthe Old Soldier) mended the matter at all.  My aunt further\nexpressed her opinion, 'that if our military friend would cut off\nthose butterflies, and give 'em to the chimney-sweepers for\nMay-day, it would look like the beginning of something sensible on\nher part.'\n\nBut her abiding reliance was on Mr. Dick.  That man had evidently\nan idea in his head, she said; and if he could only once pen it up\ninto a corner, which was his great difficulty, he would distinguish\nhimself in some extraordinary manner.\n\nUnconscious of this prediction, Mr. Dick continued to occupy\nprecisely the same ground in reference to the Doctor and to Mrs.\nStrong.  He seemed neither to advance nor to recede.  He appeared\nto have settled into his original foundation, like a building; and\nI must confess that my faith in his ever Moving, was not much\ngreater than if he had been a building.\n\nBut one night, when I had been married some months, Mr. Dick put\nhis head into the parlour, where I was writing alone (Dora having\ngone out with my aunt to take tea with the two little birds), and\nsaid, with a significant cough:\n\n'You couldn't speak to me without inconveniencing yourself,\nTrotwood, I am afraid?'\n\n'Certainly, Mr. Dick,' said I; 'come in!'\n\n'Trotwood,' said Mr. Dick, laying his finger on the side of his\nnose, after he had shaken hands with me.  'Before I sit down, I\nwish to make an observation.  You know your aunt?'\n\n'A little,' I replied.\n\n'She is the most wonderful woman in the world, sir!'\n\nAfter the delivery of this communication, which he shot out of\nhimself as if he were loaded with it, Mr. Dick sat down with\ngreater gravity than usual, and looked at me.\n\n'Now, boy,' said Mr. Dick, 'I am going to put a question to you.'\n\n'As many as you please,' said I.\n\n'What do you consider me, sir?' asked Mr. Dick, folding his arms.\n\n'A dear old friend,' said I.\n'Thank you, Trotwood,' returned Mr. Dick, laughing, and reaching\nacross in high glee to shake hands with me.  'But I mean, boy,'\nresuming his gravity, 'what do you consider me in this respect?'\ntouching his forehead.\n\nI was puzzled how to answer, but he helped me with a word.\n\n'Weak?' said Mr. Dick.\n\n'Well,' I replied, dubiously.  'Rather so.'\n\n'Exactly!' cried Mr. Dick, who seemed quite enchanted by my reply. \n'That is, Trotwood, when they took some of the trouble out of\nyou-know-who's head, and put it you know where, there was a -' Mr.\nDick made his two hands revolve very fast about each other a great\nnumber of times, and then brought them into collision, and rolled\nthem over and over one another, to express confusion.  'There was\nthat sort of thing done to me somehow.  Eh?'\n\nI nodded at him, and he nodded back again.\n\n'In short, boy,' said Mr. Dick, dropping his voice to a whisper, 'I\nam simple.'\n\nI would have qualified that conclusion, but he stopped me.\n\n'Yes, I am!  She pretends I am not.  She won't hear of it; but I\nam.  I know I am.  If she hadn't stood my friend, sir, I should\nhave been shut up, to lead a dismal life these many years.  But\nI'll provide for her!  I never spend the copying money.  I put it\nin a box.  I have made a will.  I'll leave it all to her.  She\nshall be rich - noble!'\n\nMr. Dick took out his pocket-handkerchief, and wiped his eyes.  He\nthen folded it up with great care, pressed it smooth between his\ntwo hands, put it in his pocket, and seemed to put my aunt away\nwith it.\n\n'Now you are a scholar, Trotwood,' said Mr. Dick.  'You are a fine\nscholar.  You know what a learned man, what a great man, the Doctor\nis.  You know what honour he has always done me.  Not proud in his\nwisdom.  Humble, humble - condescending even to poor Dick, who is\nsimple and knows nothing.  I have sent his name up, on a scrap of\npaper, to the kite, along the string, when it has been in the sky,\namong the larks.  The kite has been glad to receive it, sir, and\nthe sky has been brighter with it.'\n\nI delighted him by saying, most heartily, that the Doctor was\ndeserving of our best respect and highest esteem.\n\n'And his beautiful wife is a star,' said Mr. Dick.  'A shining\nstar.  I have seen her shine, sir.  But,' bringing his chair\nnearer, and laying one hand upon my knee - 'clouds, sir - clouds.'\n\nI answered the solicitude which his face expressed, by conveying\nthe same expression into my own, and shaking my head.\n\n'What clouds?' said Mr. Dick.\n\nHe looked so wistfully into my face, and was so anxious to\nunderstand, that I took great pains to answer him slowly and\ndistinctly, as I might have entered on an explanation to a child.\n\n'There is some unfortunate division between them,' I replied. \n'Some unhappy cause of separation.  A secret.  It may be\ninseparable from the discrepancy in their years.  It may have grown\nup out of almost nothing.'\n\nMr. Dick, who had told off every sentence with a thoughtful nod,\npaused when I had done, and sat considering, with his eyes upon my\nface, and his hand upon my knee.\n\n'Doctor not angry with her, Trotwood?' he said, after some time.\n\n'No.  Devoted to her.'\n\n'Then, I have got it, boy!' said Mr. Dick.\n\nThe sudden exultation with which he slapped me on the knee, and\nleaned back in his chair, with his eyebrows lifted up as high as he\ncould possibly lift them, made me think him farther out of his wits\nthan ever.  He became as suddenly grave again, and leaning forward\nas before, said - first respectfully taking out his\npocket-handkerchief, as if it really did represent my aunt:\n\n'Most wonderful woman in the world, Trotwood.  Why has she done\nnothing to set things right?'\n\n'Too delicate and difficult a subject for such interference,' I\nreplied.\n\n'Fine scholar,' said Mr. Dick, touching me with his finger.  'Why\nhas HE done nothing?'\n\n'For the same reason,' I returned.\n\n'Then, I have got it, boy!' said Mr. Dick.  And he stood up before\nme, more exultingly than before, nodding his head, and striking\nhimself repeatedly upon the breast, until one might have supposed\nthat he had nearly nodded and struck all the breath out of his\nbody.\n\n'A poor fellow with a craze, sir,' said Mr. Dick, 'a simpleton, a\nweak-minded person - present company, you know!' striking himself\nagain, 'may do what wonderful people may not do.  I'll bring them\ntogether, boy.  I'll try.  They'll not blame me.  They'll not\nobject to me.  They'll not mind what I do, if it's wrong.  I'm only\nMr. Dick.  And who minds Dick?  Dick's nobody!  Whoo!' He blew a\nslight, contemptuous breath, as if he blew himself away.\n\nIt was fortunate he had proceeded so far with his mystery, for we\nheard the coach stop at the little garden gate, which brought my\naunt and Dora home.\n\n'Not a word, boy!' he pursued in a whisper; 'leave all the blame\nwith Dick - simple Dick - mad Dick.  I have been thinking, sir, for\nsome time, that I was getting it, and now I have got it.  After\nwhat you have said to me, I am sure I have got it.  All right!' Not\nanother word did Mr. Dick utter on the subject; but he made a very\ntelegraph of himself for the next half-hour (to the great\ndisturbance of my aunt's mind), to enjoin inviolable secrecy on me.\n\nTo my surprise, I heard no more about it for some two or three\nweeks, though I was sufficiently interested in the result of his\nendeavours; descrying a strange gleam of good sense - I say nothing\nof good feeling, for that he always exhibited - in the conclusion\nto which he had come.  At last I began to believe, that, in the\nflighty and unsettled state of his mind, he had either forgotten\nhis intention or abandoned it.\n\nOne fair evening, when Dora was not inclined to go out, my aunt and\nI strolled up to the Doctor's cottage.  It was autumn, when there\nwere no debates to vex the evening air; and I remember how the\nleaves smelt like our garden at Blunderstone as we trod them under\nfoot, and how the old, unhappy feeling, seemed to go by, on the\nsighing wind.\n\nIt was twilight when we reached the cottage.  Mrs. Strong was just\ncoming out of the garden, where Mr. Dick yet lingered, busy with\nhis knife, helping the gardener to point some stakes.  The Doctor\nwas engaged with someone in his study; but the visitor would be\ngone directly, Mrs. Strong said, and begged us to remain and see\nhim.  We went into the drawing-room with her, and sat down by the\ndarkening window.  There was never any ceremony about the visits of\nsuch old friends and neighbours as we were.\n\nWe had not sat here many minutes, when Mrs. Markleham, who usually\ncontrived to be in a fuss about something, came bustling in, with\nher newspaper in her hand, and said, out of breath, 'My goodness\ngracious, Annie, why didn't you tell me there was someone in the\nStudy!'\n\n'My dear mama,' she quietly returned, 'how could I know that you\ndesired the information?'\n\n'Desired the information!' said Mrs. Markleham, sinking on the\nsofa.  'I never had such a turn in all my life!'\n\n'Have you been to the Study, then, mama?' asked Annie.\n\n'BEEN to the Study, my dear!' she returned emphatically.  'Indeed\nI have!  I came upon the amiable creature - if you'll imagine my\nfeelings, Miss Trotwood and David - in the act of making his will.'\n\nHer daughter looked round from the window quickly.\n\n'In the act, my dear Annie,' repeated Mrs. Markleham, spreading the\nnewspaper on her lap like a table-cloth, and patting her hands upon\nit, 'of making his last Will and Testament.  The foresight and\naffection of the dear!  I must tell you how it was.  I really must,\nin justice to the darling - for he is nothing less! - tell you how\nit was.  Perhaps you know, Miss Trotwood, that there is never a\ncandle lighted in this house, until one's eyes are literally\nfalling out of one's head with being stretched to read the paper. \nAnd that there is not a chair in this house, in which a paper can\nbe what I call, read, except one in the Study.  This took me to the\nStudy, where I saw a light.  I opened the door.  In company with\nthe dear Doctor were two professional people, evidently connected\nwith the law, and they were all three standing at the table: the\ndarling Doctor pen in hand.  \"This simply expresses then,\" said the\nDoctor - Annie, my love, attend to the very words - \"this simply\nexpresses then, gentlemen, the confidence I have in Mrs. Strong,\nand gives her all unconditionally?\" One of the professional people\nreplied, \"And gives her all unconditionally.\" Upon that, with the\nnatural feelings of a mother, I said, \"Good God, I beg your\npardon!\" fell over the door-step, and came away through the little\nback passage where the pantry is.'\n\nMrs. Strong opened the window, and went out into the verandah,\nwhere she stood leaning against a pillar.\n\n'But now isn't it, Miss Trotwood, isn't it, David, invigorating,'\nsaid Mrs. Markleham, mechanically following her with her eyes, 'to\nfind a man at Doctor Strong's time of life, with the strength of\nmind to do this kind of thing?  It only shows how right I was.  I\nsaid to Annie, when Doctor Strong paid a very flattering visit to\nmyself, and made her the subject of a declaration and an offer, I\nsaid, \"My dear, there is no doubt whatever, in my opinion, with\nreference to a suitable provision for you, that Doctor Strong will\ndo more than he binds himself to do.\"'\n\nHere the bell rang, and we heard the sound of the visitors' feet as\nthey went out.\n\n'It's all over, no doubt,' said the Old Soldier, after listening;\n'the dear creature has signed, sealed, and delivered, and his\nmind's at rest.  Well it may be!  What a mind!  Annie, my love, I\nam going to the Study with my paper, for I am a poor creature\nwithout news.  Miss Trotwood, David, pray come and see the Doctor.'\n\nI was conscious of Mr. Dick's standing in the shadow of the room,\nshutting up his knife, when we accompanied her to the Study; and of\nmy aunt's rubbing her nose violently, by the way, as a mild vent\nfor her intolerance of our military friend; but who got first into\nthe Study, or how Mrs. Markleham settled herself in a moment in her\neasy-chair, or how my aunt and I came to be left together near the\ndoor (unless her eyes were quicker than mine, and she held me\nback), I have forgotten, if I ever knew.  But this I know, - that\nwe saw the Doctor before he saw us, sitting at his table, among the\nfolio volumes in which he delighted, resting his head calmly on his\nhand.  That, in the same moment, we saw Mrs. Strong glide in, pale\nand trembling.  That Mr. Dick supported her on his arm.  That he\nlaid his other hand upon the Doctor's arm, causing him to look up\nwith an abstracted air.  That, as the Doctor moved his head, his\nwife dropped down on one knee at his feet, and, with her hands\nimploringly lifted, fixed upon his face the memorable look I had\nnever forgotten.  That at this sight Mrs. Markleham dropped the\nnewspaper, and stared more like a figure-head intended for a ship\nto be called The Astonishment, than anything else I can think of.\n\nThe gentleness of the Doctor's manner and surprise, the dignity\nthat mingled with the supplicating attitude of his wife, the\namiable concern of Mr. Dick, and the earnestness with which my aunt\nsaid to herself, 'That man mad!' (triumphantly expressive of the\nmisery from which she had saved him) - I see and hear, rather than\nremember, as I write about it.\n\n'Doctor!' said Mr. Dick.  'What is it that's amiss?  Look here!'\n\n'Annie!' cried the Doctor.  'Not at my feet, my dear!'\n\n'Yes!' she said.  'I beg and pray that no one will leave the room!\nOh, my husband and father, break this long silence.  Let us both\nknow what it is that has come between us!'\n\nMrs. Markleham, by this time recovering the power of speech, and\nseeming to swell with family pride and motherly indignation, here\nexclaimed, 'Annie, get up immediately, and don't disgrace everybody\nbelonging to you by humbling yourself like that, unless you wish to\nsee me go out of my mind on the spot!'\n\n'Mama!' returned Annie.  'Waste no words on me, for my appeal is to\nmy husband, and even you are nothing here.'\n\n'Nothing!' exclaimed Mrs. Markleham.  'Me, nothing! The child has\ntaken leave of her senses.  Please to get me a glass of water!'\n\nI was too attentive to the Doctor and his wife, to give any heed to\nthis request; and it made no impression on anybody else; so Mrs.\nMarkleham panted, stared, and fanned herself.\n\n'Annie!' said the Doctor, tenderly taking her in his hands.  'My\ndear!  If any unavoidable change has come, in the sequence of time,\nupon our married life, you are not to blame.  The fault is mine,\nand only mine.  There is no change in my affection, admiration, and\nrespect.  I wish to make you happy.  I truly love and honour you. \nRise, Annie, pray!'\n\nBut she did not rise.  After looking at him for a little while, she\nsank down closer to him, laid her arm across his knee, and dropping\nher head upon it, said:\n\n'If I have any friend here, who can speak one word for me, or for\nmy husband in this matter; if I have any friend here, who can give\na voice to any suspicion that my heart has sometimes whispered to\nme; if I have any friend here, who honours my husband, or has ever\ncared for me, and has anything within his knowledge, no matter what\nit is, that may help to mediate between us, I implore that friend\nto speak!'\n\nThere was a profound silence.  After a few moments of painful\nhesitation, I broke the silence.\n\n'Mrs. Strong,' I said, 'there is something within my knowledge,\nwhich I have been earnestly entreated by Doctor Strong to conceal,\nand have concealed until tonight.  But, I believe the time has come\nwhen it would be mistaken faith and delicacy to conceal it any\nlonger, and when your appeal absolves me from his injunction.'\n\nShe turned her face towards me for a moment, and I knew that I was\nright.  I could not have resisted its entreaty, if the assurance\nthat it gave me had been less convincing.\n\n'Our future peace,' she said, 'may be in your hands.  I trust it\nconfidently to your not suppressing anything.  I know beforehand\nthat nothing you, or anyone, can tell me, will show my husband's\nnoble heart in any other light than one.  Howsoever it may seem to\nyou to touch me, disregard that.  I will speak for myself, before\nhim, and before God afterwards.'\n\nThus earnestly besought, I made no reference to the Doctor for his\npermission, but, without any other compromise of the truth than a\nlittle softening of the coarseness of Uriah Heep, related plainly\nwhat had passed in that same room that night.  The staring of Mrs.\nMarkleham during the whole narration, and the shrill, sharp\ninterjections with which she occasionally interrupted it, defy\ndescription.\n\nWhen I had finished, Annie remained, for some few moments, silent,\nwith her head bent down, as I have described.  Then, she took the\nDoctor's hand (he was sitting in the same attitude as when we had\nentered the room), and pressed it to her breast, and kissed it. \nMr. Dick softly raised her; and she stood, when she began to speak,\nleaning on him, and looking down upon her husband - from whom she\nnever turned her eyes.\n\n'All that has ever been in my mind, since I was married,' she said\nin a low, submissive, tender voice, 'I will lay bare before you. \nI could not live and have one reservation, knowing what I know\nnow.'\n\n'Nay, Annie,' said the Doctor, mildly, 'I have never doubted you,\nmy child.  There is no need; indeed there is no need, my dear.'\n\n'There is great need,' she answered, in the same way, 'that I\nshould open my whole heart before the soul of generosity and truth,\nwhom, year by year, and day by day, I have loved and venerated more\nand more, as Heaven knows!'\n\n'Really,' interrupted Mrs. Markleham, 'if I have any discretion at\nall -'\n\n('Which you haven't, you Marplot,' observed my aunt, in an\nindignant whisper.)\n\n- 'I must be permitted to observe that it cannot be requisite to\nenter into these details.'\n\n'No one but my husband can judge of that, mama,' said Annie without\nremoving her eyes from his face, 'and he will hear me.  If I say\nanything to give you pain, mama, forgive me.  I have borne pain\nfirst, often and long, myself.'\n\n'Upon my word!' gasped Mrs. Markleham.\n\n'When I was very young,' said Annie, 'quite a little child, my\nfirst associations with knowledge of any kind were inseparable from\na patient friend and teacher - the friend of my dead father - who\nwas always dear to me.  I can remember nothing that I know, without\nremembering him.  He stored my mind with its first treasures, and\nstamped his character upon them all.  They never could have been,\nI think, as good as they have been to me, if I had taken them from\nany other hands.'\n\n'Makes her mother nothing!' exclaimed Mrs. Markleham.\n\n'Not so mama,' said Annie; 'but I make him what he was.  I must do\nthat.  As I grew up, he occupied the same place still.  I was proud\nof his interest: deeply, fondly, gratefully attached to him.  I\nlooked up to him, I can hardly describe how - as a father, as a\nguide, as one whose praise was different from all other praise, as\none in whom I could have trusted and confided, if I had doubted all\nthe world.  You know, mama, how young and inexperienced I was, when\nyou presented him before me, of a sudden, as a lover.'\n\n'I have mentioned the fact, fifty times at least, to everybody\nhere!' said Mrs. Markleham.\n\n('Then hold your tongue, for the Lord's sake, and don't mention it\nany more!' muttered my aunt.)\n\n'It was so great a change: so great a loss, I felt it, at first,'\nsaid Annie, still preserving the same look and tone, 'that I was\nagitated and distressed.  I was but a girl; and when so great a\nchange came in the character in which I had so long looked up to\nhim, I think I was sorry.  But nothing could have made him what he\nused to be again; and I was proud that he should think me so\nworthy, and we were married.'\n'- At Saint Alphage, Canterbury,' observed Mrs. Markleham.\n\n('Confound the woman!' said my aunt, 'she WON'T be quiet!')\n\n'I never thought,' proceeded Annie, with a heightened colour, 'of\nany worldly gain that my husband would bring to me.  My young heart\nhad no room in its homage for any such poor reference.  Mama,\nforgive me when I say that it was you who first presented to my\nmind the thought that anyone could wrong me, and wrong him, by such\na cruel suspicion.'\n\n'Me!' cried Mrs. Markleham.\n\n('Ah!  You, to be sure!' observed my aunt, 'and you can't fan it\naway, my military friend!')\n\n'It was the first unhappiness of my new life,' said Annie.  'It was\nthe first occasion of every unhappy moment I have known.  These\nmoments have been more, of late, than I can count; but not - my\ngenerous husband! - not for the reason you suppose; for in my heart\nthere is not a thought, a recollection, or a hope, that any power\ncould separate from you!'\n\nShe raised her eyes, and clasped her hands, and looked as beautiful\nand true, I thought, as any Spirit.  The Doctor looked on her,\nhenceforth, as steadfastly as she on him.\n\n'Mama is blameless,' she went on, 'of having ever urged you for\nherself, and she is blameless in intention every way, I am sure, -\nbut when I saw how many importunate claims were pressed upon you in\nmy name; how you were traded on in my name; how generous you were,\nand how Mr. Wickfield, who had your welfare very much at heart,\nresented it; the first sense of my exposure to the mean suspicion\nthat my tenderness was bought - and sold to you, of all men on\nearth - fell upon me like unmerited disgrace, in which I forced you\nto participate.  I cannot tell you what it was - mama cannot\nimagine what it was - to have this dread and trouble always on my\nmind, yet know in my own soul that on my marriage-day I crowned the\nlove and honour of my life!'\n\n'A specimen of the thanks one gets,' cried Mrs. Markleham, in\ntears, 'for taking care of one's family!  I wish I was a Turk!'\n\n('I wish you were, with all my heart - and in your native country!'\nsaid my aunt.)\n\n'It was at that time that mama was most solicitous about my Cousin\nMaldon.  I had liked him': she spoke softly, but without any\nhesitation: 'very much.  We had been little lovers once.  If\ncircumstances had not happened otherwise, I might have come to\npersuade myself that I really loved him, and might have married\nhim, and been most wretched.  There can be no disparity in marriage\nlike unsuitability of mind and purpose.'\n\nI pondered on those words, even while I was studiously attending to\nwhat followed, as if they had some particular interest, or some\nstrange application that I could not divine.  'There can be no\ndisparity in marriage like unsuitability of mind and purpose' -'no\ndisparity in marriage like unsuitability of mind and purpose.'\n\n'There is nothing,' said Annie, 'that we have in common.  I have\nlong found that there is nothing.  If I were thankful to my husband\nfor no more, instead of for so much, I should be thankful to him\nfor having saved me from the first mistaken impulse of my\nundisciplined heart.'\n\nShe stood quite still, before the Doctor, and spoke with an\nearnestness that thrilled me.  Yet her voice was just as quiet as\nbefore.\n\n'When he was waiting to be the object of your munificence, so\nfreely bestowed for my sake, and when I was unhappy in the\nmercenary shape I was made to wear, I thought it would have become\nhim better to have worked his own way on.  I thought that if I had\nbeen he, I would have tried to do it, at the cost of almost any\nhardship.  But I thought no worse of him, until the night of his\ndeparture for India.  That night I knew he had a false and\nthankless heart.  I saw a double meaning, then, in Mr. Wickfield's\nscrutiny of me.  I perceived, for the first time, the dark\nsuspicion that shadowed my life.'\n\n'Suspicion, Annie!' said the Doctor.  'No, no, no!'\n\n'In your mind there was none, I know, my husband!' she returned. \n'And when I came to you, that night, to lay down all my load of\nshame and grief, and knew that I had to tell that, underneath your\nroof, one of my own kindred, to whom you had been a benefactor, for\nthe love of me, had spoken to me words that should have found no\nutterance, even if I had been the weak and mercenary wretch he\nthought me - my mind revolted from the taint the very tale\nconveyed.  It died upon my lips, and from that hour till now has\nnever passed them.'\n\nMrs. Markleham, with a short groan, leaned back in her easy-chair;\nand retired behind her fan, as if she were never coming out any\nmore.\n\n'I have never, but in your presence, interchanged a word with him\nfrom that time; then, only when it has been necessary for the\navoidance of this explanation.  Years have passed since he knew,\nfrom me, what his situation here was.  The kindnesses you have\nsecretly done for his advancement, and then disclosed to me, for my\nsurprise and pleasure, have been, you will believe, but\naggravations of the unhappiness and burden of my secret.'\n\nShe sunk down gently at the Doctor's feet, though he did his utmost\nto prevent her; and said, looking up, tearfully, into his face:\n\n'Do not speak to me yet!  Let me say a little more!  Right or\nwrong, if this were to be done again, I think I should do just the\nsame.  You never can know what it was to be devoted to you, with\nthose old associations; to find that anyone could be so hard as to\nsuppose that the truth of my heart was bartered away, and to be\nsurrounded by appearances confirming that belief.  I was very\nyoung, and had no adviser.  Between mama and me, in all relating to\nyou, there was a wide division.  If I shrunk into myself, hiding\nthe disrespect I had undergone, it was because I honoured you so\nmuch, and so much wished that you should honour me!'\n\n'Annie, my pure heart!' said the Doctor, 'my dear girl!'\n\n'A little more! a very few words more!  I used to think there were\nso many whom you might have married, who would not have brought\nsuch charge and trouble on you, and who would have made your home\na worthier home.  I used to be afraid that I had better have\nremained your pupil, and almost your child.  I used to fear that I\nwas so unsuited to your learning and wisdom.  If all this made me\nshrink within myself (as indeed it did), when I had that to tell,\nit was still because I honoured you so much, and hoped that you\nmight one day honour me.'\n\n'That day has shone this long time, Annie,' said the Doctor, and\ncan have but one long night, my dear.'\n\n'Another word!  I afterwards meant - steadfastly meant, and\npurposed to myself - to bear the whole weight of knowing the\nunworthiness of one to whom you had been so good.  And now a last\nword, dearest and best of friends!  The cause of the late change in\nyou, which I have seen with so much pain and sorrow, and have\nsometimes referred to my old apprehension - at other times to\nlingering suppositions nearer to the truth - has been made clear\ntonight; and by an accident I have also come to know, tonight, the\nfull measure of your noble trust in me, even under that mistake. \nI do not hope that any love and duty I may render in return, will\never make me worthy of your priceless confidence; but with all this\nknowledge fresh upon me, I can lift my eyes to this dear face,\nrevered as a father's, loved as a husband's, sacred to me in my\nchildhood as a friend's, and solemnly declare that in my lightest\nthought I have never wronged you; never wavered in the love and the\nfidelity I owe you!'\n\nShe had her arms around the Doctor's neck, and he leant his head\ndown over her, mingling his grey hair with her dark brown tresses.\n\n'Oh, hold me to your heart, my husband!  Never cast me out!  Do not\nthink or speak of disparity between us, for there is none, except\nin all my many imperfections.  Every succeeding year I have known\nthis better, as I have esteemed you more and more.  Oh, take me to\nyour heart, my husband, for my love was founded on a rock, and it\nendures!'\n\nIn the silence that ensued, my aunt walked gravely up to Mr. Dick,\nwithout at all hurrying herself, and gave him a hug and a sounding\nkiss.  And it was very fortunate, with a view to his credit, that\nshe did so; for I am confident that I detected him at that moment\nin the act of making preparations to stand on one leg, as an\nappropriate expression of delight.\n\n'You are a very remarkable man, Dick!' said my aunt, with an air of\nunqualified approbation; 'and never pretend to be anything else,\nfor I know better!'\n\nWith that, my aunt pulled him by the sleeve, and nodded to me; and\nwe three stole quietly out of the room, and came away.\n\n'That's a settler for our military friend, at any rate,' said my\naunt, on the way home.  'I should sleep the better for that, if\nthere was nothing else to be glad of!'\n\n'She was quite overcome, I am afraid,' said Mr. Dick, with great\ncommiseration.\n\n'What!  Did you ever see a crocodile overcome?' inquired my aunt.\n\n'I don't think I ever saw a crocodile,' returned Mr. Dick, mildly.\n\n'There never would have been anything the matter, if it hadn't been\nfor that old Animal,' said my aunt, with strong emphasis.  'It's\nvery much to be wished that some mothers would leave their\ndaughters alone after marriage, and not be so violently\naffectionate.  They seem to think the only return that can be made\nthem for bringing an unfortunate young woman into the world - God\nbless my soul, as if she asked to be brought, or wanted to come! -\nis full liberty to worry her out of it again.  What are you\nthinking of, Trot?'\n\nI was thinking of all that had been said.  My mind was still\nrunning on some of the expressions used.  'There can be no\ndisparity in marriage like unsuitability of mind and purpose.' \n'The first mistaken impulse of an undisciplined heart.'  'My love\nwas founded on a rock.'  But we were at home; and the trodden\nleaves were lying under-foot, and the autumn wind was blowing.\n\n\n\nCHAPTER 46\nIntelligence\n\n\nI must have been married, if I may trust to my imperfect memory for\ndates, about a year or so, when one evening, as I was returning\nfrom a solitary walk, thinking of the book I was then writing - for\nmy success had steadily increased with my steady application, and\nI was engaged at that time upon my first work of fiction - I came\npast Mrs. Steerforth's house.  I had often passed it before, during\nmy residence in that neighbourhood, though never when I could\nchoose another road.  Howbeit, it did sometimes happen that it was\nnot easy to find another, without making a long circuit; and so I\nhad passed that way, upon the whole, pretty often.\n\nI had never done more than glance at the house, as I went by with\na quickened step.  It had been uniformly gloomy and dull.  None of\nthe best rooms abutted on the road; and the narrow, heavily-framed\nold-fashioned windows, never cheerful under any circumstances,\nlooked very dismal, close shut, and with their blinds always drawn\ndown.  There was a covered way across a little paved court, to an\nentrance that was never used; and there was one round staircase\nwindow, at odds with all the rest, and the only one unshaded by a\nblind, which had the same unoccupied blank look.  I do not remember\nthat I ever saw a light in all the house.  If I had been a casual\npasser-by, I should have probably supposed that some childless\nperson lay dead in it.  If I had happily possessed no knowledge of\nthe place, and had seen it often in that changeless state, I should\nhave pleased my fancy with many ingenious speculations, I dare say.\n\nAs it was, I thought as little of it as I might.  But my mind could\nnot go by it and leave it, as my body did; and it usually awakened\na long train of meditations.  Coming before me, on this particular\nevening that I mention, mingled with the childish recollections and\nlater fancies, the ghosts of half-formed hopes, the broken shadows\nof disappointments dimly seen and understood, the blending of\nexperience and imagination, incidental to the occupation with which\nmy thoughts had been busy, it was more than commonly suggestive. \nI fell into a brown study as I walked on, and a voice at my side\nmade me start.\n\nIt was a woman's voice, too.  I was not long in recollecting Mrs.\nSteerforth's little parlour-maid, who had formerly worn blue\nribbons in her cap.  She had taken them out now, to adapt herself,\nI suppose, to the altered character of the house; and wore but one\nor two disconsolate bows of sober brown.\n\n'If you please, sir, would you have the goodness to walk in, and\nspeak to Miss Dartle?'\n\n'Has Miss Dartle sent you for me?' I inquired.\n\n'Not tonight, sir, but it's just the same.  Miss Dartle saw you\npass\na night or two ago; and I was to sit at work on the staircase, and\nwhen I saw you pass again, to ask you to step in and speak to her.'\n\nI turned back, and inquired of my conductor, as we went along, how\nMrs. Steerforth was.  She said her lady was but poorly, and kept\nher own room a good deal.\n\nWhen we arrived at the house, I was directed to Miss Dartle in the\ngarden, and left to make my presence known to her myself.  She was\nsitting on a seat at one end of a kind of terrace, overlooking the\ngreat city.  It was a sombre evening, with a lurid light in the\nsky; and as I saw the prospect scowling in the distance, with here\nand there some larger object starting up into the sullen glare, I\nfancied it was no inapt companion to the memory of this fierce\nwoman.\n\nShe saw me as I advanced, and rose for a moment to receive me.  I\nthought her, then, still more colourless and thin than when I had\nseen her last; the flashing eyes still brighter, and the scar still\nplainer.\n\nOur meeting was not cordial.  We had parted angrily on the last\noccasion; and there was an air of disdain about her, which she took\nno pains to conceal.\n\n'I am told you wish to speak to me, Miss Dartle,' said I, standing\nnear her, with my hand upon the back of the seat, and declining her\ngesture of invitation to sit down.\n\n'If you please,' said she.  'Pray has this girl been found?'\n\n'No.'\n\n'And yet she has run away!'\n\nI saw her thin lips working while she looked at me, as if they were\neager to load her with reproaches.\n\n'Run away?' I repeated.\n\n'Yes! From him,' she said, with a laugh.  'If she is not found,\nperhaps she never will be found.  She may be dead!'\n\nThe vaunting cruelty with which she met my glance, I never saw\nexpressed in any other face that ever I have seen.\n\n'To wish her dead,' said I, 'may be the kindest wish that one of\nher own sex could bestow upon her.  I am glad that time has\nsoftened you so much, Miss Dartle.'\n\nShe condescended to make no reply, but, turning on me with another\nscornful laugh, said:\n\n'The friends of this excellent and much-injured young lady are\nfriends of yours.  You are their champion, and assert their rights. \nDo you wish to know what is known of her?'\n\n'Yes,' said I.\n\nShe rose with an ill-favoured smile, and taking a few steps towards\na wall of holly that was near at hand, dividing the lawn from a\nkitchen-garden, said, in a louder voice, 'Come here!' - as if she\nwere calling to some unclean beast.\n\n'You will restrain any demonstrative championship or vengeance in\nthis place, of course, Mr. Copperfield?' said she, looking over her\nshoulder at me with the same expression.\n\nI inclined my head, without knowing what she meant; and she said,\n'Come here!' again; and returned, followed by the respectable Mr.\nLittimer, who, with undiminished respectability, made me a bow, and\ntook up his position behind her.  The air of wicked grace: of\ntriumph, in which, strange to say, there was yet something feminine\nand alluring: with which she reclined upon the seat between us, and\nlooked at me, was worthy of a cruel Princess in a Legend.\n\n'Now,' said she, imperiously, without glancing at him, and touching\nthe old wound as it throbbed: perhaps, in this instance, with\npleasure rather than pain.  'Tell Mr. Copperfield about the\nflight.'\n\n'Mr. James and myself, ma'am -'\n\n'Don't address yourself to me!' she interrupted with a frown.\n\n'Mr. James and myself, sir -'\n\n'Nor to me, if you please,' said I.\n\nMr. Littimer, without being at all discomposed, signified by a\nslight obeisance, that anything that was most agreeable to us was\nmost agreeable to him; and began again.\n\n'Mr. James and myself have been abroad with the young woman, ever\nsince she left Yarmouth under Mr. james's protection.  We have been\nin a variety of places, and seen a deal of foreign country.  We\nhave been in France, Switzerland, Italy, in fact, almost all\nparts.'\n\nHe looked at the back of the seat, as if he were addressing himself\nto that; and softly played upon it with his hands, as if he were\nstriking chords upon a dumb piano.\n\n'Mr. James took quite uncommonly to the young woman; and was more\nsettled, for a length of time, than I have known him to be since I\nhave been in his service.  The young woman was very improvable, and\nspoke the languages; and wouldn't have been known for the same\ncountry-person.  I noticed that she was much admired wherever we\nwent.'\n\nMiss Dartle put her hand upon her side.  I saw him steal a glance\nat her, and slightly smile to himself.\n\n'Very much admired, indeed, the young woman was.  What with her\ndress; what with the air and sun; what with being made so much of;\nwhat with this, that, and the other; her merits really attracted\ngeneral notice.'\n\nHe made a short pause.  Her eyes wandered restlessly over the\ndistant prospect, and she bit her nether lip to stop that busy\nmouth.\n\nTaking his hands from the seat, and placing one of them within the\nother, as he settled himself on one leg, Mr. Littimer proceeded,\nwith his eyes cast down, and his respectable head a little\nadvanced, and a little on one side:\n\n'The young woman went on in this manner for some time, being\noccasionally low in her spirits, until I think she began to weary\nMr. James by giving way to her low spirits and tempers of that\nkind; and things were not so comfortable.  Mr. James he began to be\nrestless again.  The more restless he got, the worse she got; and\nI must say, for myself, that I had a very difficult time of it\nindeed between the two.  Still matters were patched up here, and\nmade good there, over and over again; and altogether lasted, I am\nsure, for a longer time than anybody could have expected.'\n\nRecalling her eyes from the distance, she looked at me again now,\nwith her former air.  Mr. Littimer, clearing his throat behind his\nhand with a respectable short cough, changed legs, and went on:\n\n'At last, when there had been, upon the whole, a good many words\nand reproaches, Mr. James he set off one morning, from the\nneighbourhood of Naples, where we had a villa (the young woman\nbeing very partial to the sea), and, under pretence of coming back\nin a day or so, left it in charge with me to break it out, that,\nfor the general happiness of all concerned, he was' - here an\ninterruption of the short cough - 'gone.  But Mr. James, I must\nsay, certainly did behave extremely honourable; for he proposed\nthat the young woman should marry a very respectable person, who\nwas fully prepared to overlook the past, and who was, at least, as\ngood as anybody the young woman could have aspired to in a regular\nway: her connexions being very common.'\n\nHe changed legs again, and wetted his lips.  I was convinced that\nthe scoundrel spoke of himself, and I saw my conviction reflected\nin Miss Dartle's face.\n\n'This I also had it in charge to communicate.  I was willing to do\nanything to relieve Mr. James from his difficulty, and to restore\nharmony between himself and an affectionate parent, who has\nundergone so much on his account.  Therefore I undertook the\ncommission.  The young woman's violence when she came to, after I\nbroke the fact of his departure, was beyond all expectations.  She\nwas quite mad, and had to be held by force; or, if she couldn't\nhave got to a knife, or got to the sea, she'd have beaten her head\nagainst the marble floor.'\n\nMiss Dartle, leaning back upon the seat, with a light of exultation\nin her face, seemed almost to caress the sounds this fellow had\nuttered.\n\n'But when I came to the second part of what had been entrusted to\nme,' said Mr. Littimer, rubbing his hands uneasily, 'which anybody\nmight have supposed would have been, at all events, appreciated as\na kind intention, then the young woman came out in her true\ncolours.  A more outrageous person I never did see.  Her conduct\nwas surprisingly bad.  She had no more gratitude, no more feeling,\nno more patience, no more reason in her, than a stock or a stone. \nIf I hadn't been upon my guard, I am convinced she would have had\nmy blood.'\n\n'I think the better of her for it,' said I, indignantly.\n\nMr. Littimer bent his head, as much as to say, 'Indeed, sir?  But\nyou're young!' and resumed his narrative.\n\n'It was necessary, in short, for a time, to take away everything\nnigh her, that she could do herself, or anybody else, an injury\nwith, and to shut her up close.  Notwithstanding which, she got out\nin the night; forced the lattice of a window, that I had nailed up\nmyself; dropped on a vine that was trailed below; and never has\nbeen seen or heard of, to my knowledge, since.'\n\n'She is dead, perhaps,' said Miss Dartle, with a smile, as if she\ncould have spurned the body of the ruined girl.\n\n'She may have drowned herself, miss,' returned Mr. Littimer,\ncatching at an excuse for addressing himself to somebody.  'It's\nvery possible.  Or, she may have had assistance from the boatmen,\nand the boatmen's wives and children.  Being given to low company,\nshe was very much in the habit of talking to them on the beach,\nMiss Dartle, and sitting by their boats.  I have known her do it,\nwhen Mr. James has been away, whole days.  Mr. James was far from\npleased to find out, once, that she had told the children she was\na boatman's daughter, and that in her own country, long ago, she\nhad roamed about the beach, like them.'\n\nOh, Emily! Unhappy beauty! What a picture rose before me of her\nsitting on the far-off shore, among the children like herself when\nshe was innocent, listening to little voices such as might have\ncalled her Mother had she been a poor man's wife; and to the great\nvoice of the sea, with its eternal 'Never more!'\n\n'When it was clear that nothing could be done, Miss Dartle -'\n\n'Did I tell you not to speak to me?' she said, with stern contempt.\n\n'You spoke to me, miss,' he replied.  'I beg your pardon.  But it\nis my service to obey.'\n\n'Do your service,' she returned.  'Finish your story, and go!'\n\n'When it was clear,' he said, with infinite respectability and an\nobedient bow, 'that she was not to be found, I went to Mr. James,\nat the place where it had been agreed that I should write to him,\nand informed him of what had occurred.  Words passed between us in\nconsequence, and I felt it due to my character to leave him.  I\ncould bear, and I have borne, a great deal from Mr. James; but he\ninsulted me too far.  He hurt me.  Knowing the unfortunate\ndifference between himself and his mother, and what her anxiety of\nmind was likely to be, I took the liberty of coming home to\nEngland, and relating -'\n\n'For money which I paid him,' said Miss Dartle to me.\n\n'Just so, ma'am - and relating what I knew.  I am not aware,' said\nMr. Littimer, after a moment's reflection, 'that there is anything\nelse.  I am at present out of employment, and should be happy to\nmeet with a respectable situation.'\n\nMiss Dartle glanced at me, as though she would inquire if there\nwere anything that I desired to ask.  As there was something which\nhad occurred to my mind, I said in reply:\n\n'I could wish to know from this - creature,' I could not bring\nmyself to utter any more conciliatory word, 'whether they\nintercepted a letter that was written to her from home, or whether\nhe supposes that she received it.'\n\nHe remained calm and silent, with his eyes fixed on the ground, and\nthe tip of every finger of his right hand delicately poised against\nthe tip of every finger of his left.\n\nMiss Dartle turned her head disdainfully towards him.\n\n'I beg your pardon, miss,' he said, awakening from his abstraction,\n'but, however submissive to you, I have my position, though a\nservant.  Mr. Copperfield and you, miss, are different people.  If\nMr. Copperfield wishes to know anything from me, I take the liberty\nof reminding Mr. Copperfield that he can put a question to me.  I\nhave a character to maintain.'\n\nAfter a momentary struggle with myself, I turned my eyes upon him,\nand said, 'You have heard my question.  Consider it addressed to\nyourself, if you choose.  What answer do you make?'\n\n'Sir,' he rejoined, with an occasional separation and reunion of\nthose delicate tips, 'my answer must be qualified; because, to\nbetray Mr. james's confidence to his mother, and to betray it to\nyou, are two different actions.  It is not probable, I consider,\nthat Mr. James would encourage the receipt of letters likely to\nincrease low spirits and unpleasantness; but further than that,\nsir, I should wish to avoid going.'\n\n'Is that all?' inquired Miss Dartle of me.\n\nI indicated that I had nothing more to say.  'Except,' I added, as\nI saw him moving off, 'that I understand this fellow's part in the\nwicked story, and that, as I shall make it known to the honest man\nwho has been her father from her childhood, I would recommend him\nto avoid going too much into public.'\n\nHe had stopped the moment I began, and had listened with his usual\nrepose of manner.\n\n'Thank you, sir.  But you'll excuse me if I say, sir, that there\nare neither slaves nor slave-drivers in this country, and that\npeople are not allowed to take the law into their own hands.  If\nthey do, it is more to their own peril, I believe, than to other\npeople's.  Consequently speaking, I am not at all afraid of going\nwherever I may wish, sir.'\n\nWith that, he made a polite bow; and, with another to Miss Dartle,\nwent away through the arch in the wall of holly by which he had\ncome.  Miss Dartle and I regarded each other for a little while in\nsilence; her manner being exactly what it was, when she had\nproduced the man.\n\n'He says besides,' she observed, with a slow curling of her lip,\n'that his master, as he hears, is coasting Spain; and this done, is\naway to gratify his seafaring tastes till he is weary.  But this is\nof no interest to you.  Between these two proud persons, mother and\nson, there is a wider breach than before, and little hope of its\nhealing, for they are one at heart, and time makes each more\nobstinate and imperious.  Neither is this of any interest to you;\nbut it introduces what I wish to say.  This devil whom you make an\nangel of.  I mean this low girl whom he picked out of the\ntide-mud,' with her black eyes full upon me, and her passionate\nfinger up, 'may be alive, - for I believe some common things are\nhard to die.  If she is, you will desire to have a pearl of such\nprice found and taken care of.  We desire that, too; that he may\nnot by any chance be made her prey again.  So far, we are united in\none interest; and that is why I, who would do her any mischief that\nso coarse a wretch is capable of feeling, have sent for you to hear\nwhat you have heard.'\n\nI saw, by the change in her face, that someone was advancing behind\nme.  It was Mrs. Steerforth, who gave me her hand more coldly than\nof yore, and with an augmentation of her former stateliness of\nmanner, but still, I perceived - and I was touched by it - with an\nineffaceable remembrance of my old love for her son.  She was\ngreatly altered.  Her fine figure was far less upright, her\nhandsome face was deeply marked, and her hair was almost white. \nBut when she sat down on the seat, she was a handsome lady still;\nand well I knew the bright eye with its lofty look, that had been\na light in my very dreams at school.\n\n'Is Mr. Copperfield informed of everything, Rosa?'\n\n'Yes.'\n\n'And has he heard Littimer himself?'\n\n'Yes; I have told him why you wished it.'\n'You are a good girl.  I have had some slight correspondence with\nyour former friend, sir,' addressing me, 'but it has not restored\nhis sense of duty or natural obligation.  Therefore I have no other\nobject in this, than what Rosa has mentioned.  If, by the course\nwhich may relieve the mind of the decent man you brought here (for\nwhom I am sorry - I can say no more), my son may be saved from\nagain falling into the snares of a designing enemy, well!'\n\nShe drew herself up, and sat looking straight before her, far away.\n\n'Madam,' I said respectfully, 'I understand.  I assure you I am in\nno danger of putting any strained construction on your motives. \nBut I must say, even to you, having known this injured family from\nchildhood, that if you suppose the girl, so deeply wronged, has not\nbeen cruelly deluded, and would not rather die a hundred deaths\nthan take a cup of water from your son's hand now, you cherish a\nterrible mistake.'\n\n'Well, Rosa, well!' said Mrs. Steerforth, as the other was about to\ninterpose, 'it is no matter.  Let it be.  You are married, sir, I\nam told?'\n\nI answered that I had been some time married.\n\n'And are doing well?  I hear little in the quiet life I lead, but\nI understand you are beginning to be famous.'\n\n'I have been very fortunate,' I said, 'and find my name connected\nwith some praise.'\n\n'You have no mother?' - in a softened voice.\n\n'No.'\n\n'It is a pity,' she returned.  'She would have been proud of you. \nGood night!'\n\nI took the hand she held out with a dignified, unbending air, and\nit was as calm in mine as if her breast had been at peace.  Her\npride could still its very pulses, it appeared, and draw the placid\nveil before her face, through which she sat looking straight before\nher on the far distance.\n\nAs I moved away from them along the terrace, I could not help\nobserving how steadily they both sat gazing on the prospect, and\nhow it thickened and closed around them.  Here and there, some\nearly lamps were seen to twinkle in the distant city; and in the\neastern quarter of the sky the lurid light still hovered.  But,\nfrom the greater part of the broad valley interposed, a mist was\nrising like a sea, which, mingling with the darkness, made it seem\nas if the gathering waters would encompass them.  I have reason to\nremember this, and think of it with awe; for before I looked upon\nthose two again, a stormy sea had risen to their feet.\n\nReflecting on what had been thus told me, I felt it right that it\nshould be communicated to Mr. Peggotty.  On the following evening\nI went into London in quest of him.  He was always wandering about\nfrom place to place, with his one object of recovering his niece\nbefore him; but was more in London than elsewhere.  Often and\noften, now, had I seen him in the dead of night passing along the\nstreets, searching, among the few who loitered out of doors at\nthose untimely hours, for what he dreaded to find.\n\nHe kept a lodging over the little chandler's shop in Hungerford\nMarket, which I have had occasion to mention more than once, and\nfrom which he first went forth upon his errand of mercy.  Hither I\ndirected my walk.  On making inquiry for him, I learned from the\npeople of the house that he had not gone out yet, and I should find\nhim in his room upstairs.\n\nHe was sitting reading by a window in which he kept a few plants. \nThe room was very neat and orderly.  I saw in a moment that it was\nalways kept prepared for her reception, and that he never went out\nbut he thought it possible he might bring her home.  He had not\nheard my tap at the door, and only raised his eyes when I laid my\nhand upon his shoulder.\n\n'Mas'r Davy! Thankee, sir! thankee hearty, for this visit! Sit ye\ndown.  You're kindly welcome, sir!'\n\n'Mr. Peggotty,' said I, taking the chair he handed me, 'don't\nexpect much! I have heard some news.'\n\n'Of Em'ly!'\n\nHe put his hand, in a nervous manner, on his mouth, and turned\npale, as he fixed his eyes on mine.\n\n'It gives no clue to where she is; but she is not with him.'\n\nHe sat down, looking intently at me, and listened in profound\nsilence to all I had to tell.  I well remember the sense of\ndignity, beauty even, with which the patient gravity of his face\nimpressed me, when, having gradually removed his eyes from mine, he\nsat looking downward, leaning his forehead on his hand.  He offered\nno interruption, but remained throughout perfectly still.  He\nseemed to pursue her figure through the narrative, and to let every\nother shape go by him, as if it were nothing.\n\nWhen I had done, he shaded his face, and continued silent.  I\nlooked out of the window for a little while, and occupied myself\nwith the plants.\n\n'How do you fare to feel about it, Mas'r Davy?' he inquired at\nlength.\n\n'I think that she is living,' I replied.\n\n'I doen't know.  Maybe the first shock was too rough, and in the\nwildness of her art -! That there blue water as she used to speak\non.  Could she have thowt o' that so many year, because it was to\nbe her grave!'\n\nHe said this, musing, in a low, frightened voice; and walked across\nthe little room.\n\n'And yet,' he added, 'Mas'r Davy, I have felt so sure as she was\nliving - I have know'd, awake and sleeping, as it was so trew that\nI should find her - I have been so led on by it, and held up by it\n- that I doen't believe I can have been deceived.  No! Em'ly's\nalive!'\n\nHe put his hand down firmly on the table, and set his sunburnt face\ninto a resolute expression.\n\n'My niece, Em'ly, is alive, sir!' he said, steadfastly.  'I doen't\nknow wheer it comes from, or how 'tis, but I am told as she's\nalive!'\n\nHe looked almost like a man inspired, as he said it.  I waited for\na few moments, until he could give me his undivided attention; and\nthen proceeded to explain the precaution, that, it had occurred to\nme last night, it would be wise to take.\n\n'Now, my dear friend -'I began.\n\n'Thankee, thankee, kind sir,' he said, grasping my hand in both of\nhis.\n\n'If she should make her way to London, which is likely - for where\ncould she lose herself so readily as in this vast city; and what\nwould she wish to do, but lose and hide herself, if she does not go\nhome?  -'\n\n'And she won't go home,' he interposed, shaking his head\nmournfully.  'If she had left of her own accord, she might; not as\nIt was, sir.'\n\n'If she should come here,' said I, 'I believe there is one person,\nhere, more likely to discover her than any other in the world.  Do\nyou remember - hear what I say, with fortitude - think of your\ngreat object! - do you remember Martha?'\n\n'Of our town?'\n\nI needed no other answer than his face.\n\n'Do you know that she is in London?'\n\n'I have seen her in the streets,' he answered, with a shiver.\n\n'But you don't know,' said I, 'that Emily was charitable to her,\nwith Ham's help, long before she fled from home.  Nor, that, when\nwe met one night, and spoke together in the room yonder, over the\nway, she listened at the door.'\n\n'Mas'r Davy!' he replied in astonishment.  'That night when it snew\nso hard?'\n\n'That night.  I have never seen her since.  I went back, after\nparting from you, to speak to her, but she was gone.  I was\nunwilling to mention her to you then, and I am now; but she is the\nperson of whom I speak, and with whom I think we should\ncommunicate.  Do you understand?'\n\n'Too well, sir,' he replied.  We had sunk our voices, almost to a\nwhisper, and continued to speak in that tone.\n\n'You say you have seen her.  Do you think that you could find her? \nI could only hope to do so by chance.'\n\n'I think, Mas'r Davy, I know wheer to look.'\n\n'It is dark.  Being together, shall we go out now, and try to find\nher tonight?'\n\nHe assented, and prepared to accompany me.  Without appearing to\nobserve what he was doing, I saw how carefully he adjusted the\nlittle room, put a candle ready and the means of lighting it,\narranged the bed, and finally took out of a drawer one of her\ndresses (I remember to have seen her wear it), neatly folded with\nsome other garments, and a bonnet, which he placed upon a chair. \nHe made no allusion to these clothes, neither did I.  There they\nhad been waiting for her, many and many a night, no doubt.\n\n'The time was, Mas'r Davy,' he said, as we came downstairs, 'when\nI thowt this girl, Martha, a'most like the dirt underneath my\nEm'ly's feet.  God forgive me, theer's a difference now!'\n\nAs we went along, partly to hold him in conversation, and partly to\nsatisfy myself, I asked him about Ham.  He said, almost in the same\nwords as formerly, that Ham was just the same, 'wearing away his\nlife with kiender no care nohow for 't; but never murmuring, and\nliked by all'.\n\nI asked him what he thought Ham's state of mind was, in reference\nto the cause of their misfortunes?  Whether he believed it was\ndangerous?  What he supposed, for example, Ham would do, if he and\nSteerforth ever should encounter?\n\n'I doen't know, sir,' he replied.  'I have thowt of it oftentimes,\nbut I can't awize myself of it, no matters.'\n\nI recalled to his remembrance the morning after her departure, when\nwe were all three on the beach.  'Do you recollect,' said I, 'a\ncertain wild way in which he looked out to sea, and spoke about\n\"the end of it\"?'\n\n'Sure I do!' said he.\n\n'What do you suppose he meant?'\n\n'Mas'r Davy,' he replied, 'I've put the question to myself a mort\no' times, and never found no answer.  And theer's one curious thing\n- that, though he is so pleasant, I wouldn't fare to feel\ncomfortable to try and get his mind upon 't.  He never said a wured\nto me as warn't as dootiful as dootiful could be, and it ain't\nlikely as he'd begin to speak any other ways now; but it's fur from\nbeing fleet water in his mind, where them thowts lays.  It's deep,\nsir, and I can't see down.'\n\n'You are right,' said I, 'and that has sometimes made me anxious.'\n\n'And me too, Mas'r Davy,' he rejoined.  'Even more so, I do assure\nyou, than his ventersome ways, though both belongs to the\nalteration in him.  I doen't know as he'd do violence under any\ncircumstances, but I hope as them two may be kep asunders.'\n\nWe had come, through Temple Bar, into the city.  Conversing no more\nnow, and walking at my side, he yielded himself up to the one aim\nof his devoted life, and went on, with that hushed concentration of\nhis faculties which would have made his figure solitary in a\nmultitude.  We were not far from Blackfriars Bridge, when he turned\nhis head and pointed to a solitary female figure flitting along the\nopposite side of the street.  I knew it, readily, to be the figure\nthat we sought.\n\nWe crossed the road, and were pressing on towards her, when it\noccurred to me that she might be more disposed to feel a woman's\ninterest in the lost girl, if we spoke to her in a quieter place,\naloof from the crowd, and where we should be less observed.  I\nadvised my companion, therefore, that we should not address her\nyet, but follow her; consulting in this, likewise, an indistinct\ndesire I had, to know where she went.\n\nHe acquiescing, we followed at a distance: never losing sight of\nher, but never caring to come very near, as she frequently looked\nabout.  Once, she stopped to listen to a band of music; and then we\nstopped too.\n\nShe went on a long way.  Still we went on.  It was evident, from\nthe manner in which she held her course, that she was going to some\nfixed destination; and this, and her keeping in the busy streets,\nand I suppose the strange fascination in the secrecy and mystery of\nso following anyone, made me adhere to my first purpose.  At length\nshe turned into a dull, dark street, where the noise and crowd were\nlost; and I said, 'We may speak to her now'; and, mending our pace,\nwe went after her.\n\n\nCHAPTER 47\nMARTHA\n\n\nWe were now down in Westminster.  We had turned back to follow her,\nhaving encountered her coming towards us; and Westminster Abbey was\nthe point at which she passed from the lights and noise of the\nleading streets.  She proceeded so quickly, when she got free of\nthe two currents of passengers setting towards and from the bridge,\nthat, between this and the advance she had of us when she struck\noff, we were in the narrow water-side street by Millbank before we\ncame up with her.  At that moment she crossed the road, as if to\navoid the footsteps that she heard so close behind; and, without\nlooking back, passed on even more rapidly.\n\nA glimpse of the river through a dull gateway, where some waggons\nwere housed for the night, seemed to arrest my feet.  I touched my\ncompanion without speaking, and we both forbore to cross after her,\nand both followed on that opposite side of the way; keeping as\nquietly as we could in the shadow of the houses, but keeping very\nnear her.\n\nThere was, and is when I write, at the end of that low-lying\nstreet, a dilapidated little wooden building, probably an obsolete\nold ferry-house.  Its position is just at that point where the\nstreet ceases, and the road begins to lie between a row of houses\nand the river.  As soon as she came here, and saw the water, she\nstopped as if she had come to her destination; and presently went\nslowly along by the brink of the river, looking intently at it.\n\nAll the way here, I had supposed that she was going to some house;\nindeed, I had vaguely entertained the hope that the house might be\nin some way associated with the lost girl.  But that one dark\nglimpse of the river, through the gateway, had instinctively\nprepared me for her going no farther.\n\nThe neighbourhood was a dreary one at that time; as oppressive,\nsad, and solitary by night, as any about London.  There were\nneither wharves nor houses on the melancholy waste of road near the\ngreat blank Prison.  A sluggish ditch deposited its mud at the\nprison walls.  Coarse grass and rank weeds straggled over all the\nmarshy land in the vicinity.  In one part, carcases of houses,\ninauspiciously begun and never finished, rotted away.  In another,\nthe ground was cumbered with rusty iron monsters of steam-boilers,\nwheels, cranks, pipes, furnaces, paddles, anchors, diving-bells,\nwindmill-sails, and I know not what strange objects, accumulated by\nsome speculator, and grovelling in the dust, underneath which -\nhaving sunk into the soil of their own weight in wet weather - they\nhad the appearance of vainly trying to hide themselves.  The clash\nand glare of sundry fiery Works upon the river-side, arose by night\nto disturb everything except the heavy and unbroken smoke that\npoured out of their chimneys.  Slimy gaps and causeways, winding\namong old wooden piles, with a sickly substance clinging to the\nlatter, like green hair, and the rags of last year's handbills\noffering rewards for drowned men fluttering above high-water mark,\nled down through the ooze and slush to the ebb-tide.  There was a\nstory that one of the pits dug for the dead in the time of the\nGreat Plague was hereabout; and a blighting influence seemed to\nhave proceeded from it over the whole place.  Or else it looked as\nif it had gradually decomposed into that nightmare condition, out\nof the overflowings of the polluted stream.\n\nAs if she were a part of the refuse it had cast out, and left to\ncorruption and decay, the girl we had followed strayed down to the\nriver's brink, and stood in the midst of this night-picture, lonely\nand still, looking at the water.\n\nThere were some boats and barges astrand in the mud, and these\nenabled us to come within a few yards of her without being seen. \nI then signed to Mr. Peggotty to remain where he was, and emerged\nfrom their shade to speak to her.  I did not approach her solitary\nfigure without trembling; for this gloomy end to her determined\nwalk, and the way in which she stood, almost within the cavernous\nshadow of the iron bridge, looking at the lights crookedly\nreflected in the strong tide, inspired a dread within me.\n\nI think she was talking to herself.  I am sure, although absorbed\nin gazing at the water, that her shawl was off her shoulders, and\nthat she was muffling her hands in it, in an unsettled and\nbewildered way, more like the action of a sleep-walker than a\nwaking person.  I know, and never can forget, that there was that\nin her wild manner which gave me no assurance but that she would\nsink before my eyes, until I had her arm within my grasp.\n\nAt the same moment I said 'Martha!'\n\nShe uttered a terrified scream, and struggled with me with such\nstrength that I doubt if I could have held her alone.  But a\nstronger hand than mine was laid upon her; and when she raised her\nfrightened eyes and saw whose it was, she made but one more effort\nand dropped down between us.  We carried her away from the water to\nwhere there were some dry stones, and there laid her down, crying\nand moaning.  In a little while she sat among the stones, holding\nher wretched head with both her hands.\n\n'Oh, the river!' she cried passionately.  'Oh, the river!'\n\n'Hush, hush!' said I.  'Calm yourself.'\n\nBut she still repeated the same words, continually exclaiming, 'Oh,\nthe river!' over and over again.\n\n'I know it's like me!' she exclaimed.  'I know that I belong to it. \nI know that it's the natural company of such as I am! It comes from\ncountry places, where there was once no harm in it - and it creeps\nthrough the dismal streets, defiled and miserable - and it goes\naway, like my life, to a great sea, that is always troubled - and\nI feel that I must go with it!'\nI have never known what despair was, except in the tone of those\nwords.\n\n'I can't keep away from it.  I can't forget it.  It haunts me day\nand night.  It's the only thing in all the world that I am fit for,\nor that's fit for me.  Oh, the dreadful river!'\n\nThe thought passed through my mind that in the face of my\ncompanion, as he looked upon her without speech or motion, I might\nhave read his niece's history, if I had known nothing of it.  I\nnever saw, in any painting or reality, horror and compassion so\nimpressively blended.  He shook as if he would have fallen; and his\nhand - I touched it with my own, for his appearance alarmed me -\nwas deadly cold.\n\n'She is in a state of frenzy,' I whispered to him.  'She will speak\ndifferently in a little time.'\n\nI don't know what he would have said in answer.  He made some\nmotion with his mouth, and seemed to think he had spoken; but he\nhad only pointed to her with his outstretched hand.\n\nA new burst of crying came upon her now, in which she once more hid\nher face among the stones, and lay before us, a prostrate image of\nhumiliation and ruin.  Knowing that this state must pass, before we\ncould speak to her with any hope, I ventured to restrain him when\nhe would have raised her, and we stood by in silence until she\nbecame more tranquil.\n\n'Martha,' said I then, leaning down, and helping her to rise - she\nseemed to want to rise as if with the intention of going away, but\nshe was weak, and leaned against a boat.  'Do you know who this is,\nwho is with me?'\n\nShe said faintly, 'Yes.'\n\n'Do you know that we have followed you a long way tonight?'\n\nShe shook her head.  She looked neither at him nor at me, but stood\nin a humble attitude, holding her bonnet and shawl in one hand,\nwithout appearing conscious of them, and pressing the other,\nclenched, against her forehead.\n\n'Are you composed enough,' said I, 'to speak on the subject which\nso interested you - I hope Heaven may remember it! - that snowy\nnight?'\n\nHer sobs broke out afresh, and she murmured some inarticulate\nthanks to me for not having driven her away from the door.\n\n'I want to say nothing for myself,' she said, after a few moments. \n'I am bad, I am lost.  I have no hope at all.  But tell him, sir,'\nshe had shrunk away from him, 'if you don't feel too hard to me to\ndo it, that I never was in any way the cause of his misfortune.'\n'It has never been attributed to you,' I returned, earnestly\nresponding to her earnestness.\n\n'It was you, if I don't deceive myself,' she said, in a broken\nvoice, 'that came into the kitchen, the night she took such pity on\nme; was so gentle to me; didn't shrink away from me like all the\nrest, and gave me such kind help! Was it you, sir?'\n\n'It was,' said I.\n\n'I should have been in the river long ago,' she said, glancing at\nit with a terrible expression, 'if any wrong to her had been upon\nmy mind.  I never could have kept out of it a single winter's\nnight, if I had not been free of any share in that!'\n\n'The cause of her flight is too well understood,' I said.  'You are\ninnocent of any part in it, we thoroughly believe, - we know.'\n\n'Oh, I might have been much the better for her, if I had had a\nbetter heart!' exclaimed the girl, with most forlorn regret; 'for\nshe was always good to me! She never spoke a word to me but what\nwas pleasant and right.  Is it likely I would try to make her what\nI am myself, knowing what I am myself, so well?  When I lost\neverything that makes life dear, the worst of all my thoughts was\nthat I was parted for ever from her!'\n\nMr. Peggotty, standing with one hand on the gunwale of the boat,\nand his eyes cast down, put his disengaged hand before his face.\n\n'And when I heard what had happened before that snowy night, from\nsome belonging to our town,' cried Martha, 'the bitterest thought\nin all my mind was, that the people would remember she once kept\ncompany with me, and would say I had corrupted her! When, Heaven\nknows, I would have died to have brought back her good name!'\n\nLong unused to any self-control, the piercing agony of her remorse\nand grief was terrible.\n\n'To have died, would not have been much - what can I say?  - I\nwould have lived!' she cried.  'I would have lived to be old, in\nthe wretched streets - and to wander about, avoided, in the dark -\nand to see the day break on the ghastly line of houses, and\nremember how the same sun used to shine into my room, and wake me\nonce - I would have done even that, to save her!'\n\nSinking on the stones, she took some in each hand, and clenched\nthem up, as if she would have ground them.  She writhed into some\nnew posture constantly: stiffening her arms, twisting them before\nher face, as though to shut out from her eyes the little light\nthere was, and drooping her head, as if it were heavy with\ninsupportable recollections.\n\n'What shall I ever do!' she said, fighting thus with her despair. \n'How can I go on as I am, a solitary curse to myself, a living\ndisgrace to everyone I come near!' Suddenly she turned to my\ncompanion.  'Stamp upon me, kill me! When she was your pride, you\nwould have thought I had done her harm if I had brushed against her\nin the street.  You can't believe - why should you?  - a syllable\nthat comes out of my lips.  It would be a burning shame upon you,\neven now, if she and I exchanged a word.  I don't complain.  I\ndon't say she and I are alike - I know there is a long, long way\nbetween us.  I only say, with all my guilt and wretchedness upon my\nhead, that I am grateful to her from my soul, and love her.  Oh,\ndon't think that all the power I had of loving anything is quite\nworn out! Throw me away, as all the world does.  Kill me for being\nwhat I am, and having ever known her; but don't think that of me!'\n\nHe looked upon her, while she made this supplication, in a wild\ndistracted manner; and, when she was silent, gently raised her.\n\n'Martha,' said Mr. Peggotty, 'God forbid as I should judge you. \nForbid as I, of all men, should do that, my girl! You doen't know\nhalf the change that's come, in course of time, upon me, when you\nthink it likely.  Well!' he paused a moment, then went on.  'You\ndoen't understand how 'tis that this here gentleman and me has\nwished to speak to you.  You doen't understand what 'tis we has\nafore us.  Listen now!'\n\nHis influence upon her was complete.  She stood, shrinkingly,\nbefore him, as if she were afraid to meet his eyes; but her\npassionate sorrow was quite hushed and mute.\n\n'If you heerd,' said Mr. Peggotty, 'owt of what passed between\nMas'r Davy and me, th' night when it snew so hard, you know as I\nhave been - wheer not - fur to seek my dear niece.  My dear niece,'\nhe repeated steadily.  'Fur she's more dear to me now, Martha, than\nshe was dear afore.'\n\nShe put her hands before her face; but otherwise remained quiet.\n\n'I have heerd her tell,' said Mr. Peggotty, 'as you was early left\nfatherless and motherless, with no friend fur to take, in a rough\nseafaring-way, their place.  Maybe you can guess that if you'd had\nsuch a friend, you'd have got into a way of being fond of him in\ncourse of time, and that my niece was kiender daughter-like to me.'\n\nAs she was silently trembling, he put her shawl carefully about\nher, taking it up from the ground for that purpose.\n\n'Whereby,' said he, 'I know, both as she would go to the wureld's\nfurdest end with me, if she could once see me again; and that she\nwould fly to the wureld's furdest end to keep off seeing me.  For\nthough she ain't no call to doubt my love, and doen't - and\ndoen't,' he repeated, with a quiet assurance of the truth of what\nhe said, 'there's shame steps in, and keeps betwixt us.'\n\nI read, in every word of his plain impressive way of delivering\nhimself, new evidence of his having thought of this one topic, in\nevery feature it presented.\n\n'According to our reckoning,' he proceeded, 'Mas'r Davy's here, and\nmine, she is like, one day, to make her own poor solitary course to\nLondon.  We believe - Mas'r Davy, me, and all of us - that you are\nas innocent of everything that has befell her, as the unborn child. \nYou've spoke of her being pleasant, kind, and gentle to you.  Bless\nher, I knew she was! I knew she always was, to all.  You're\nthankful to her, and you love her.  Help us all you can to find\nher, and may Heaven reward you!'\n\nShe looked at him hastily, and for the first time, as if she were\ndoubtful of what he had said.\n\n'Will you trust me?' she asked, in a low voice of astonishment.\n\n'Full and free!' said Mr. Peggotty.\n\n'To speak to her, if I should ever find her; shelter her, if I have\nany shelter to divide with her; and then, without her knowledge,\ncome to you, and bring you to her?' she asked hurriedly.\n\nWe both replied together, 'Yes!'\n\nShe lifted up her eyes, and solemnly declared that she would devote\nherself to this task, fervently and faithfully.  That she would\nnever waver in it, never be diverted from it, never relinquish it,\nwhile there was any chance of hope.  If she were not true to it,\nmight the object she now had in life, which bound her to something\ndevoid of evil, in its passing away from her, leave her more\nforlorn and more despairing, if that were possible, than she had\nbeen upon the river's brink that night; and then might all help,\nhuman and Divine, renounce her evermore!\n\nShe did not raise her voice above her breath, or address us, but\nsaid this to the night sky; then stood profoundly quiet, looking at\nthe gloomy water.\n\nWe judged it expedient, now, to tell her all we knew; which I\nrecounted at length.  She listened with great attention, and with\na face that often changed, but had the same purpose in all its\nvarying expressions.  Her eyes occasionally filled with tears, but\nthose she repressed.  It seemed as if her spirit were quite\naltered, and she could not be too quiet.\n\nShe asked, when all was told, where we were to be communicated\nwith, if occasion should arise.  Under a dull lamp in the road, I\nwrote our two addresses on a leaf of my pocket-book, which I tore\nout and gave to her, and which she put in her poor bosom.  I asked\nher where she lived herself.  She said, after a pause, in no place\nlong.  It were better not to know.\n\nMr. Peggotty suggesting to me, in a whisper, what had already\noccurred to myself, I took out my purse; but I could not prevail\nupon her to accept any money, nor could I exact any promise from\nher that she would do so at another time.  I represented to her\nthat Mr. Peggotty could not be called, for one in his condition,\npoor; and that the idea of her engaging in this search, while\ndepending on her own resources, shocked us both.  She continued\nsteadfast.  In this particular, his influence upon her was equally\npowerless with mine.  She gratefully thanked him but remained\ninexorable.\n\n'There may be work to be got,' she said.  'I'll try.'\n\n'At least take some assistance,' I returned, 'until you have\ntried.'\n\n'I could not do what I have promised, for money,' she replied.  'I\ncould not take it, if I was starving.  To give me money would be to\ntake away your trust, to take away the object that you have given\nme, to take away the only certain thing that saves me from the\nriver.'\n\n'In the name of the great judge,' said I, 'before whom you and all\nof us must stand at His dread time, dismiss that terrible idea! We\ncan all do some good, if we will.'\n\nShe trembled, and her lip shook, and her face was paler, as she\nanswered:\n\n'It has been put into your hearts, perhaps, to save a wretched\ncreature for repentance.  I am afraid to think so; it seems too\nbold.  If any good should come of me, I might begin to hope; for\nnothing but harm has ever come of my deeds yet.  I am to be\ntrusted, for the first time in a long while, with my miserable\nlife, on account of what you have given me to try for.  I know no\nmore, and I can say no more.'\n\nAgain she repressed the tears that had begun to flow; and, putting\nout her trembling hand, and touching Mr. Peggotty, as if there was\nsome healing virtue in him, went away along the desolate road.  She\nhad been ill, probably for a long time.  I observed, upon that\ncloser opportunity of observation, that she was worn and haggard,\nand that her sunken eyes expressed privation and endurance.\n\nWe followed her at a short distance, our way lying in the same\ndirection, until we came back into the lighted and populous\nstreets.  I had such implicit confidence in her declaration, that\nI then put it to Mr. Peggotty, whether it would not seem, in the\nonset, like distrusting her, to follow her any farther.  He being\nof the same mind, and equally reliant on her, we suffered her to\ntake her own road, and took ours, which was towards Highgate.  He\naccompanied me a good part of the way; and when we parted, with a\nprayer for the success of this fresh effort, there was a new and\nthoughtful compassion in him that I was at no loss to interpret.\n\nIt was midnight when I arrived at home.  I had reached my own gate,\nand was standing listening for the deep bell of St. Paul's, the\nsound of which I thought had been borne towards me among the\nmultitude of striking clocks, when I was rather surprised to see\nthat the door of my aunt's cottage was open, and that a faint light\nin the entry was shining out across the road.\n\nThinking that my aunt might have relapsed into one of her old\nalarms, and might be watching the progress of some imaginary\nconflagration in the distance, I went to speak to her.  It was with\nvery great surprise that I saw a man standing in her little garden.\n\nHe had a glass and bottle in his hand, and was in the act of\ndrinking.  I stopped short, among the thick foliage outside, for\nthe moon was up now, though obscured; and I recognized the man whom\nI had once supposed to be a delusion of Mr. Dick's, and had once\nencountered with my aunt in the streets of the city.\n\nHe was eating as well as drinking, and seemed to eat with a hungry\nappetite.  He seemed curious regarding the cottage, too, as if it\nwere the first time he had seen it.  After stooping to put the\nbottle on the ground, he looked up at the windows, and looked\nabout; though with a covert and impatient air, as if he was anxious\nto be gone.\n\nThe light in the passage was obscured for a moment, and my aunt\ncame out.  She was agitated, and told some money into his hand.  I\nheard it chink.\n\n'What's the use of this?' he demanded.\n\n'I can spare no more,' returned my aunt.\n\n'Then I can't go,' said he.  'Here! You may take it back!'\n\n'You bad man,' returned my aunt, with great emotion; 'how can you\nuse me so?  But why do I ask?  It is because you know how weak I\nam! What have I to do, to free myself for ever of your visits, but\nto abandon you to your deserts?'\n\n'And why don't you abandon me to my deserts?' said he.\n\n'You ask me why!' returned my aunt.  'What a heart you must have!'\n\nHe stood moodily rattling the money, and shaking his head, until at\nlength he said:\n\n'Is this all you mean to give me, then?'\n\n'It is all I CAN give you,' said my aunt.  'You know I have had\nlosses, and am poorer than I used to be.  I have told you so. \nHaving got it, why do you give me the pain of looking at you for\nanother moment, and seeing what you have become?'\n\n'I have become shabby enough, if you mean that,' he said.  'I lead\nthe life of an owl.'\n\n'You stripped me of the greater part of all I ever had,' said my\naunt.  'You closed my heart against the whole world, years and\nyears.  You treated me falsely, ungratefully, and cruelly.  Go, and\nrepent of it.  Don't add new injuries to the long, long list of\ninjuries you have done me!'\n\n'Aye!' he returned.  'It's all very fine - Well! I must do the best\nI can, for the present, I suppose.'\n\nIn spite of himself, he appeared abashed by my aunt's indignant\ntears, and came slouching out of the garden.  Taking two or three\nquick steps, as if I had just come up, I met him at the gate, and\nwent in as he came out.  We eyed one another narrowly in passing,\nand with no favour.\n\n'Aunt,' said I, hurriedly.  'This man alarming you again! Let me\nspeak to him.  Who is he?'\n\n'Child,' returned my aunt, taking my arm, 'come in, and don't speak\nto me for ten minutes.'\n\nWe sat down in her little parlour.  My aunt retired behind the\nround green fan of former days, which was screwed on the back of a\nchair, and occasionally wiped her eyes, for about a quarter of an\nhour.  Then she came out, and took a seat beside me.\n\n'Trot,' said my aunt, calmly, 'it's my husband.'\n\n'Your husband, aunt?  I thought he had been dead!'\n\n'Dead to me,' returned my aunt, 'but living.'\n\nI sat in silent amazement.\n\n'Betsey Trotwood don't look a likely subject for the tender\npassion,' said my aunt, composedly, 'but the time was, Trot, when\nshe believed in that man most entirely.  When she loved him, Trot,\nright well.  When there was no proof of attachment and affection\nthat she would not have given him.  He repaid her by breaking her\nfortune, and nearly breaking her heart.  So she put all that sort\nof sentiment, once and for ever, in a grave, and filled it up, and\nflattened it down.'\n\n'My dear, good aunt!'\n\n'I left him,' my aunt proceeded, laying her hand as usual on the\nback of mine, 'generously.  I may say at this distance of time,\nTrot, that I left him generously.  He had been so cruel to me, that\nI might have effected a separation on easy terms for myself; but I\ndid not.  He soon made ducks and drakes of what I gave him, sank\nlower and lower, married another woman, I believe, became an\nadventurer, a gambler, and a cheat.  What he is now, you see.  But\nhe was a fine-looking man when I married him,' said my aunt, with\nan echo of her old pride and admiration in her tone; 'and I\nbelieved him - I was a fool! - to be the soul of honour!'\n\nShe gave my hand a squeeze, and shook her head.\n\n'He is nothing to me now, Trot- less than nothing.  But, sooner\nthan have him punished for his offences (as he would be if he\nprowled about in this country), I give him more money than I can\nafford, at intervals when he reappears, to go away.  I was a fool\nwhen I married him; and I am so far an incurable fool on that\nsubject, that, for the sake of what I once believed him to be, I\nwouldn't have even this shadow of my idle fancy hardly dealt with. \nFor I was in earnest, Trot, if ever a woman was.'\n\nMY aunt dismissed the matter with a heavy sigh, and smoothed her\ndress.\n\n'There, my dear!' she said.  'Now you know the beginning, middle,\nand end, and all about it.  We won't mention the subject to one\nanother any more; neither, of course, will you mention it to\nanybody else.  This is my grumpy, frumpy story, and we'll keep it\nto ourselves, Trot!'\n\n\n\nCHAPTER 48\nDOMESTIC\n\n\nI laboured hard at my book, without allowing it to interfere with\nthe punctual discharge of my newspaper duties; and it came out and\nwas very successful.  I was not stunned by the praise which sounded\nin my ears, notwithstanding that I was keenly alive to it, and\nthought better of my own performance, I have little doubt, than\nanybody else did.  It has always been in my observation of human\nnature, that a man who has any good reason to believe in himself\nnever flourishes himself before the faces of other people in order\nthat they may believe in him.  For this reason, I retained my\nmodesty in very self-respect; and the more praise I got, the more\nI tried to deserve.\n\nIt is not my purpose, in this record, though in all other\nessentials it is my written memory, to pursue the history of my own\nfictions.  They express themselves, and I leave them to themselves. \nWhen I refer to them, incidentally, it is only as a part of my\nprogress.\n\nHaving some foundation for believing, by this time, that nature and\naccident had made me an author, I pursued my vocation with\nconfidence.  Without such assurance I should certainly have left it\nalone, and bestowed my energy on some other endeavour.  I should\nhave tried to find out what nature and accident really had made me,\nand to be that, and nothing else.\nI had been writing, in the newspaper and elsewhere, so\nprosperously, that when my new success was achieved, I considered\nmyself reasonably entitled to escape from the dreary debates.  One\njoyful night, therefore, I noted down the music of the\nparliamentary bagpipes for the last time, and I have never heard it\nsince; though I still recognize the old drone in the newspapers,\nwithout any substantial variation (except, perhaps, that there is\nmore of it), all the livelong session.\n\nI now write of the time when I had been married, I suppose, about\na year and a half.  After several varieties of experiment, we had\ngiven up the housekeeping as a bad job.  The house kept itself, and\nwe kept a page.  The principal function of this retainer was to\nquarrel with the cook; in which respect he was a perfect\nWhittington, without his cat, or the remotest chance of being made\nLord Mayor.\n\nHe appears to me to have lived in a hail of saucepan-lids.  His\nwhole existence was a scuffle.  He would shriek for help on the\nmost improper occasions, - as when we had a little dinner-party, or\na few friends in the evening, - and would come tumbling out of the\nkitchen, with iron missiles flying after him.  We wanted to get rid\nof him, but he was very much attached to us, and wouldn't go.  He\nwas a tearful boy, and broke into such deplorable lamentations,\nwhen a cessation of our connexion was hinted at, that we were\nobliged to keep him.  He had no mother - no anything in the way of\na relative, that I could discover, except a sister, who fled to\nAmerica the moment we had taken him off her hands; and he became\nquartered on us like a horrible young changeling.  He had a lively\nperception of his own unfortunate state, and was always rubbing his\neyes with the sleeve of his jacket, or stooping to blow his nose on\nthe extreme corner of a little pocket-handkerchief, which he never\nwould take completely out of his pocket, but always economized and\nsecreted.\n\nThis unlucky page, engaged in an evil hour at six pounds ten per\nannum, was a source of continual trouble to me.  I watched him as\nhe grew - and he grew like scarlet beans - with painful\napprehensions of the time when he would begin to shave; even of the\ndays when he would be bald or grey.  I saw no prospect of ever\ngetting rid of him; and, projecting myself into the future, used to\nthink what an inconvenience he would be when he was an old man.\n\nI never expected anything less, than this unfortunate's manner of\ngetting me out of my difficulty.  He stole Dora's watch, which,\nlike everything else belonging to us, had no particular place of\nits own; and, converting it into money, spent the produce (he was\nalways a weak-minded boy) in incessantly riding up and down between\nLondon and Uxbridge outside the coach.  He was taken to Bow Street,\nas well as I remember, on the completion of his fifteenth journey;\nwhen four-and-sixpence, and a second-hand fife which he couldn't\nplay, were found upon his person.\n\nThe surprise and its consequences would have been much less\ndisagreeable to me if he had not been penitent.  But he was very\npenitent indeed, and in a peculiar way - not in the lump, but by\ninstalments.  For example: the day after that on which I was\nobliged to appear against him, he made certain revelations touching\na hamper in the cellar, which we believed to be full of wine, but\nwhich had nothing in it except bottles and corks.  We supposed he\nhad now eased his mind, and told the worst he knew of the cook;\nbut, a day or two afterwards, his conscience sustained a new\ntwinge, and he disclosed how she had a little girl, who, early\nevery morning, took away our bread; and also how he himself had\nbeen suborned to maintain the milkman in coals.  In two or three\ndays more, I was informed by the authorities of his having led to\nthe discovery of sirloins of beef among the kitchen-stuff, and\nsheets in the rag-bag.  A little while afterwards, he broke out in\nan entirely new direction, and confessed to a knowledge of\nburglarious intentions as to our premises, on the part of the\npot-boy, who was immediately taken up.  I got to be so ashamed of\nbeing such a victim, that I would have given him any money to hold\nhis tongue, or would have offered a round bribe for his being\npermitted to run away.  It was an aggravating circumstance in the\ncase that he had no idea of this, but conceived that he was making\nme amends in every new discovery: not to say, heaping obligations\non my head.\n\nAt last I ran away myself, whenever I saw an emissary of the police\napproaching with some new intelligence; and lived a stealthy life\nuntil he was tried and ordered to be transported.  Even then he\ncouldn't be quiet, but was always writing us letters; and wanted so\nmuch to see Dora before he went away, that Dora went to visit him,\nand fainted when she found herself inside the iron bars.  In short,\nI had no peace of my life until he was expatriated, and made (as I\nafterwards heard) a shepherd of, 'up the country' somewhere; I have\nno geographical idea where.\n\nAll this led me into some serious reflections, and presented our\nmistakes in a new aspect; as I could not help communicating to Dora\none evening, in spite of my tenderness for her.\n\n'My love,' said I, 'it is very painful to me to think that our want\nof system and management, involves not only ourselves (which we\nhave got used to), but other people.'\n\n'You have been silent for a long time, and now you are going to be\ncross!' said Dora.\n\n'No, my dear, indeed! Let me explain to you what I mean.'\n\n'I think I don't want to know,' said Dora.\n\n'But I want you to know, my love.  Put Jip down.'\n\nDora put his nose to mine, and said 'Boh!' to drive my seriousness\naway; but, not succeeding, ordered him into his Pagoda, and sat\nlooking at me, with her hands folded, and a most resigned little\nexpression of countenance.\n\n'The fact is, my dear,' I began, 'there is contagion in us.  We\ninfect everyone about us.'\n\nI might have gone on in this figurative manner, if Dora's face had\nnot admonished me that she was wondering with all her might whether\nI was going to propose any new kind of vaccination, or other\nmedical remedy, for this unwholesome state of ours.  Therefore I\nchecked myself, and made my meaning plainer.\n\n'It is not merely, my pet,' said I, 'that we lose money and\ncomfort, and even temper sometimes, by not learning to be more\ncareful; but that we incur the serious responsibility of spoiling\neveryone who comes into our service, or has any dealings with us. \nI begin to be afraid that the fault is not entirely on one side,\nbut that these people all turn out ill because we don't turn out\nvery well ourselves.'\n\n'Oh, what an accusation,' exclaimed Dora, opening her eyes wide;\n'to say that you ever saw me take gold watches! Oh!'\n\n'My dearest,' I remonstrated, 'don't talk preposterous nonsense!\nWho has made the least allusion to gold watches?'\n\n'You did,' returned Dora.  'You know you did.  You said I hadn't\nturned out well, and compared me to him.'\n\n'To whom?' I asked.\n\n'To the page,' sobbed Dora.  'Oh, you cruel fellow, to compare your\naffectionate wife to a transported page! Why didn't you tell me\nyour opinion of me before we were married?  Why didn't you say, you\nhard-hearted thing, that you were convinced I was worse than a\ntransported page?  Oh, what a dreadful opinion to have of me! Oh,\nmy goodness!'\n\n'Now, Dora, my love,' I returned, gently trying to remove the\nhandkerchief she pressed to her eyes, 'this is not only very\nridiculous of you, but very wrong.  In the first place, it's not\ntrue.'\n\n'You always said he was a story-teller,' sobbed Dora.  'And now you\nsay the same of me! Oh, what shall I do! What shall I do!'\n\n'My darling girl,' I retorted, 'I really must entreat you to be\nreasonable, and listen to what I did say, and do say.  My dear\nDora, unless we learn to do our duty to those whom we employ, they\nwill never learn to do their duty to us.  I am afraid we present\nopportunities to people to do wrong, that never ought to be\npresented.  Even if we were as lax as we are, in all our\narrangements, by choice - which we are not - even if we liked it,\nand found it agreeable to be so - which we don't - I am persuaded\nwe should have no right to go on in this way.  We are positively\ncorrupting people.  We are bound to think of that.  I can't help\nthinking of it, Dora.  It is a reflection I am unable to dismiss,\nand it sometimes makes me very uneasy.  There, dear, that's all. \nCome now.  Don't be foolish!'\n\nDora would not allow me, for a long time, to remove the\nhandkerchief.  She sat sobbing and murmuring behind it, that, if I\nwas uneasy, why had I ever been married?  Why hadn't I said, even\nthe day before we went to church, that I knew I should be uneasy,\nand I would rather not?  If I couldn't bear her, why didn't I send\nher away to her aunts at Putney, or to Julia Mills in India?  Julia\nwould be glad to see her, and would not call her a transported\npage; Julia never had called her anything of the sort.  In short,\nDora was so afflicted, and so afflicted me by being in that\ncondition, that I felt it was of no use repeating this kind of\neffort, though never so mildly, and I must take some other course.\n\nWhat other course was left to take?  To 'form her mind'?  This was\na common phrase of words which had a fair and promising sound, and\nI resolved to form Dora's mind.\n\nI began immediately.  When Dora was very childish, and I would have\ninfinitely preferred to humour her, I tried to be grave - and\ndisconcerted her, and myself too.  I talked to her on the subjects\nwhich occupied my thoughts; and I read Shakespeare to her - and\nfatigued her to the last degree.  I accustomed myself to giving\nher, as it were quite casually, little scraps of useful\ninformation, or sound opinion - and she started from them when I\nlet them off, as if they had been crackers.  No matter how\nincidentally or naturally I endeavoured to form my little wife's\nmind, I could not help seeing that she always had an instinctive\nperception of what I was about, and became a prey to the keenest\napprehensions.  In particular, it was clear to me, that she thought\nShakespeare a terrible fellow.  The formation went on very slowly.\n\nI pressed Traddles into the service without his knowledge; and\nwhenever he came to see us, exploded my mines upon him for the\nedification of Dora at second hand.  The amount of practical wisdom\nI bestowed upon Traddles in this manner was immense, and of the\nbest quality; but it had no other effect upon Dora than to depress\nher spirits, and make her always nervous with the dread that it\nwould be her turn next.  I found myself in the condition of a\nschoolmaster, a trap, a pitfall; of always playing spider to Dora's\nfly, and always pouncing out of my hole to her infinite\ndisturbance.\n\nStill, looking forward through this intermediate stage, to the time\nwhen there should be a perfect sympathy between Dora and me, and\nwhen I should have 'formed her mind' to my entire satisfaction, I\npersevered, even for months.  Finding at last, however, that,\nalthough I had been all this time a very porcupine or hedgehog,\nbristling all over with determination, I had effected nothing, it\nbegan to occur to me that perhaps Dora's mind was already formed.\n\nOn further consideration this appeared so likely, that I abandoned\nmy scheme, which had had a more promising appearance in words than\nin action; resolving henceforth to be satisfied with my child-wife,\nand to try to change her into nothing else by any process.  I was\nheartily tired of being sagacious and prudent by myself, and of\nseeing my darling under restraint; so I bought a pretty pair of\near-rings for her, and a collar for Jip, and went home one day to\nmake myself agreeable.\n\nDora was delighted with the little presents, and kissed me\njoyfully; but there was a shadow between us, however slight, and I\nhad made up my mind that it should not be there.  If there must be\nsuch a shadow anywhere, I would keep it for the future in my own\nbreast.\n\nI sat down by my wife on the sofa, and put the ear-rings in her\nears; and then I told her that I feared we had not been quite as\ngood company lately, as we used to be, and that the fault was mine. \nWhich I sincerely felt, and which indeed it was.\n\n'The truth is, Dora, my life,' I said; 'I have been trying to be\nwise.'\n\n'And to make me wise too,' said Dora, timidly.  'Haven't you,\nDoady?'\n\nI nodded assent to the pretty inquiry of the raised eyebrows, and\nkissed the parted lips.\n\n'It's of not a bit of use,' said Dora, shaking her head, until the\near-rings rang again.  'You know what a little thing I am, and what\nI wanted you to call me from the first.  If you can't do so, I am\nafraid you'll never like me.  Are you sure you don't think,\nsometimes, it would have been better to have -'\n\n'Done what, my dear?' For she made no effort to proceed.\n\n'Nothing!' said Dora.\n\n'Nothing?' I repeated.\n\nShe put her arms round my neck, and laughed, and called herself by\nher favourite name of a goose, and hid her face on my shoulder in\nsuch a profusion of curls that it was quite a task to clear them\naway and see it.\n\n'Don't I think it would have been better to have done nothing, than\nto have tried to form my little wife's mind?' said I, laughing at\nmyself.  'Is that the question?  Yes, indeed, I do.'\n\n'Is that what you have been trying?' cried Dora.  'Oh what a\nshocking boy!'\n\n'But I shall never try any more,' said I.  'For I love her dearly\nas she is.'\n\n'Without a story - really?' inquired Dora, creeping closer to me.\n\n'Why should I seek to change,' said I, 'what has been so precious\nto me for so long! You never can show better than as your own\nnatural self, my sweet Dora; and we'll try no conceited\nexperiments, but go back to our old way, and be happy.'\n\n'And be happy!' returned Dora.  'Yes! All day! And you won't mind\nthings going a tiny morsel wrong, sometimes?'\n\n'No, no,' said I.  'We must do the best we can.'\n\n'And you won't tell me, any more, that we make other people bad,'\ncoaxed Dora; 'will you?  Because you know it's so dreadfully\ncross!'\n\n'No, no,' said I.\n\n'it's better for me to be stupid than uncomfortable, isn't it?'\nsaid Dora.\n\n'Better to be naturally Dora than anything else in the world.'\n\n'In the world! Ah, Doady, it's a large place!'\n\nShe shook her head, turned her delighted bright eyes up to mine,\nkissed me, broke into a merry laugh, and sprang away to put on\nJip's new collar.\n\nSo ended my last attempt to make any change in Dora.  I had been\nunhappy in trying it; I could not endure my own solitary wisdom; I\ncould not reconcile it with her former appeal to me as my\nchild-wife.  I resolved to do what I could, in a quiet way, to\nimprove our proceedings myself, but I foresaw that my utmost would\nbe very little, or I must degenerate into the spider again, and be\nfor ever lying in wait.\n\nAnd the shadow I have mentioned, that was not to be between us any\nmore, but was to rest wholly on my own heart?  How did that fall?\n\nThe old unhappy feeling pervaded my life.  It was deepened, if it\nwere changed at all; but it was as undefined as ever, and addressed\nme like a strain of sorrowful music faintly heard in the night.  I\nloved my wife dearly, and I was happy; but the happiness I had\nvaguely anticipated, once, was not the happiness I enjoyed, and\nthere was always something wanting.\n\nIn fulfilment of the compact I have made with myself, to reflect my\nmind on this paper, I again examine it, closely, and bring its\nsecrets to the light.  What I missed, I still regarded - I always\nregarded - as something that had been a dream of my youthful fancy;\nthat was incapable of realization; that I was now discovering to be\nso, with some natural pain, as all men did.  But that it would have\nbeen better for me if my wife could have helped me more, and shared\nthe many thoughts in which I had no partner; and that this might\nhave been; I knew.\n\nBetween these two irreconcilable conclusions: the one, that what I\nfelt was general and unavoidable; the other, that it was particular\nto me, and might have been different: I balanced curiously, with no\ndistinct sense of their opposition to each other.  When I thought\nof the airy dreams of youth that are incapable of realization, I\nthought of the better state preceding manhood that I had outgrown;\nand then the contented days with Agnes, in the dear old house,\narose before me, like spectres of the dead, that might have some\nrenewal in another world, but never more could be reanimated here.\n\nSometimes, the speculation came into my thoughts, What might have\nhappened, or what would have happened, if Dora and I had never\nknown each other?  But she was so incorporated with my existence,\nthat it was the idlest of all fancies, and would soon rise out of\nmy reach and sight, like gossamer floating in the air.\n\nI always loved her.  What I am describing, slumbered, and half\nawoke, and slept again, in the innermost recesses of my mind. \nThere was no evidence of it in me; I know of no influence it had in\nanything I said or did.  I bore the weight of all our little cares,\nand all my projects; Dora held the pens; and we both felt that our\nshares were adjusted as the case required.  She was truly fond of\nme, and proud of me; and when Agnes wrote a few earnest words in\nher letters to Dora, of the pride and interest with which my old\nfriends heard of my growing reputation, and read my book as if they\nheard me speaking its contents, Dora read them out to me with tears\nof joy in her bright eyes, and said I was a dear old clever, famous\nboy.\n\n'The first mistaken impulse of an undisciplined heart.'  Those\nwords of Mrs. Strong's were constantly recurring to me, at this\ntime; were almost always present to my mind.  I awoke with them,\noften, in the night; I remember to have even read them, in dreams,\ninscribed upon the walls of houses.  For I knew, now, that my own\nheart was undisciplined when it first loved Dora; and that if it\nhad been disciplined, it never could have felt, when we were\nmarried, what it had felt in its secret experience.\n\n'There can be no disparity in marriage, like unsuitability of mind\nand purpose.'  Those words I remembered too.  I had endeavoured to\nadapt Dora to myself, and found it impracticable.  It remained for\nme to adapt myself to Dora; to share with her what I could, and be\nhappy; to bear on my own shoulders what I must, and be happy still. \nThis was the discipline to which I tried to bring my heart, when I\nbegan to think.  It made my second year much happier than my first;\nand, what was better still, made Dora's life all sunshine.\n\nBut, as that year wore on, Dora was not strong.  I had hoped that\nlighter hands than mine would help to mould her character, and that\na baby-smile upon her breast might change my child-wife to a woman. \nIt was not to be.  The spirit fluttered for a moment on the\nthreshold of its little prison, and, unconscious of captivity, took\nwing.\n\n'When I can run about again, as I used to do, aunt,' said Dora, 'I\nshall make Jip race.  He is getting quite slow and lazy.'\n\n'I suspect, my dear,' said my aunt quietly working by her side, 'he\nhas a worse disorder than that.  Age, Dora.'\n\n'Do you think he is old?' said Dora, astonished.  'Oh, how strange\nit seems that Jip should be old!'\n\n'It's a complaint we are all liable to, Little One, as we get on in\nlife,' said my aunt, cheerfully; 'I don't feel more free from it\nthan I used to be, I assure you.'\n\n'But Jip,' said Dora, looking at him with compassion, 'even little\nJip! Oh, poor fellow!'\n\n'I dare say he'll last a long time yet, Blossom,' said my aunt,\npatting Dora on the cheek, as she leaned out of her couch to look\nat Jip, who responded by standing on his hind legs, and baulking\nhimself in various asthmatic attempts to scramble up by the head\nand shoulders.  'He must have a piece of flannel in his house this\nwinter, and I shouldn't wonder if he came out quite fresh again,\nwith the flowers in the spring.  Bless the little dog!' exclaimed\nmy aunt, 'if he had as many lives as a cat, and was on the point of\nlosing 'em all, he'd bark at me with his last breath, I believe!'\n\nDora had helped him up on the sofa; where he really was defying my\naunt to such a furious extent, that he couldn't keep straight, but\nbarked himself sideways.  The more my aunt looked at him, the more\nhe reproached her; for she had lately taken to spectacles, and for\nsome inscrutable reason he considered the glasses personal.\n\nDora made him lie down by her, with a good deal of persuasion; and\nwhen he was quiet, drew one of his long ears through and through\nher hand, repeating thoughtfully, 'Even little Jip! Oh, poor\nfellow!'\n\n'His lungs are good enough,' said my aunt, gaily, 'and his dislikes\nare not at all feeble.  He has a good many years before him, no\ndoubt.  But if you want a dog to race with, Little Blossom, he has\nlived too well for that, and I'll give you one.'\n\n'Thank you, aunt,' said Dora, faintly.  'But don't, please!'\n\n'No?' said my aunt, taking off her spectacles.\n\n'I couldn't have any other dog but Jip,' said Dora.  'It would be\nso unkind to Jip! Besides, I couldn't be such friends with any\nother dog but Jip; because he wouldn't have known me before I was\nmarried, and wouldn't have barked at Doady when he first came to\nour house.  I couldn't care for any other dog but Jip, I am afraid,\naunt.'\n\n'To be sure!' said my aunt, patting her cheek again.  'You are\nright.'\n\n'You are not offended,' said Dora.  'Are you?'\n\n'Why, what a sensitive pet it is!' cried my aunt, bending over her\naffectionately.  'To think that I could be offended!'\n\n'No, no, I didn't really think so,' returned Dora; 'but I am a\nlittle tired, and it made me silly for a moment - I am always a\nsilly little thing, you know, but it made me more silly - to talk\nabout Jip.  He has known me in all that has happened to me, haven't\nyou, Jip?  And I couldn't bear to slight him, because he was a\nlittle altered - could I, Jip?'\n\nJip nestled closer to his mistress, and lazily licked her hand.\n\n'You are not so old, Jip, are you, that you'll leave your mistress\nyet?' said Dora.  'We may keep one another company a little\nlonger!'\n\nMy pretty Dora! When she came down to dinner on the ensuing Sunday,\nand was so glad to see old Traddles (who always dined with us on\nSunday), we thought she would be 'running about as she used to do',\nin a few days.  But they said, wait a few days more; and then, wait\na few days more; and still she neither ran nor walked.  She looked\nvery pretty, and was very merry; but the little feet that used to\nbe so nimble when they danced round Jip, were dull and motionless.\n\nI began to carry her downstairs every morning, and upstairs every\nnight.  She would clasp me round the neck and laugh, the while, as\nif I did it for a wager.  Jip would bark and caper round us, and go\non before, and look back on the landing, breathing short, to see\nthat we were coming.  My aunt, the best and most cheerful of\nnurses, would trudge after us, a moving mass of shawls and pillows. \nMr. Dick would not have relinquished his post of candle-bearer to\nanyone alive.  Traddles would be often at the bottom of the\nstaircase, looking on, and taking charge of sportive messages from\nDora to the dearest girl in the world.  We made quite a gay\nprocession of it, and my child-wife was the gayest there.\n\nBut, sometimes, when I took her up, and felt that she was lighter\nin my arms, a dead blank feeling came upon me, as if I were\napproaching to some frozen region yet unseen, that numbed my life. \nI avoided the recognition of this feeling by any name, or by any\ncommuning with myself; until one night, when it was very strong\nupon me, and my aunt had left her with a parting cry of 'Good\nnight, Little Blossom,' I sat down at my desk alone, and cried to\nthink, Oh what a fatal name it was, and how the blossom withered in\nits bloom upon the tree!\n\n\nCHAPTER 49\nI AM INVOLVED IN MYSTERY\n\n\nI received one morning by the post, the following letter, dated\nCanterbury, and addressed to me at Doctor's Commons; which I read\nwith some surprise:\n\n\n'MY DEAR SIR,\n\n'Circumstances beyond my individual control have, for a\nconsiderable lapse of time, effected a severance of that intimacy\nwhich, in the limited opportunities conceded to me in the midst of\nmy professional duties, of contemplating the scenes and events of\nthe past, tinged by the prismatic hues of memory, has ever afforded\nme, as it ever must continue to afford, gratifying emotions of no\ncommon description.  This fact, my dear sir, combined with the\ndistinguished elevation to which your talents have raised you,\ndeters me from presuming to aspire to the liberty of addressing the\ncompanion of my youth, by the familiar appellation of Copperfield!\nIt is sufficient to know that the name to which I do myself the\nhonour to refer, will ever be treasured among the muniments of our\nhouse (I allude to the archives connected with our former lodgers,\npreserved by Mrs. Micawber), with sentiments of personal esteem\namounting to affection.\n\n'It is not for one, situated, through his original errors and a\nfortuitous combination of unpropitious events, as is the foundered\nBark (if he may be allowed to assume so maritime a denomination),\nwho now takes up the pen to address you - it is not, I repeat, for\none so circumstanced, to adopt the language of compliment, or of\ncongratulation.  That he leaves to abler and to purer hands.\n\n'If your more important avocations should admit of your ever\ntracing these imperfect characters thus far - which may be, or may\nnot be, as circumstances arise - you will naturally inquire by what\nobject am I influenced, then, in inditing the present missive? \nAllow me to say that I fully defer to the reasonable character of\nthat inquiry, and proceed to develop it; premising that it is not\nan object of a pecuniary nature.\n\n'Without more directly referring to any latent ability that may\npossibly exist on my part, of wielding the thunderbolt, or\ndirecting the devouring and avenging flame in any quarter, I may be\npermitted to observe, in passing, that my brightest visions are for\never dispelled - that my peace is shattered and my power of\nenjoyment destroyed - that my heart is no longer in the right place\n- and that I no more walk erect before my fellow man.  The canker\nis in the flower.  The cup is bitter to the brim.  The worm is at\nhis work, and will soon dispose of his victim.  The sooner the\nbetter.  But I will not digress.\n'Placed in a mental position of peculiar painfulness, beyond the\nassuaging reach even of Mrs. Micawber's influence, though exercised\nin the tripartite character of woman, wife, and mother, it is my\nintention to fly from myself for a short period, and devote a\nrespite of eight-and-forty hours to revisiting some metropolitan\nscenes of past enjoyment.  Among other havens of domestic\ntranquillity and peace of mind, my feet will naturally tend towards\nthe King's Bench Prison.  In stating that I shall be (D. V.) on the\noutside of the south wall of that place of incarceration on civil\nprocess, the day after tomorrow, at seven in the evening,\nprecisely, my object in this epistolary communication is\naccomplished.\n\n'I do not feel warranted in soliciting my former friend Mr.\nCopperfield, or my former friend Mr. Thomas Traddles of the Inner\nTemple, if that gentleman is still existent and forthcoming, to\ncondescend to meet me, and renew (so far as may be) our past\nrelations of the olden time.  I confine myself to throwing out the\nobservation, that, at the hour and place I have indicated, may be\nfound such ruined vestiges as yet\n               'Remain,\n                    'Of\n                         'A\n                              'Fallen Tower,\n                                   'WILKINS MICAWBER.\n\n'P.S.  It may be advisable to superadd to the above, the statement\nthat Mrs. Micawber is not in confidential possession of my\nintentions.'\n\n\nI read the letter over several times.  Making due allowance for Mr.\nMicawber's lofty style of composition, and for the extraordinary\nrelish with which he sat down and wrote long letters on all\npossible and impossible occasions, I still believed that something\nimportant lay hidden at the bottom of this roundabout\ncommunication.  I put it down, to think about it; and took it up\nagain, to read it once more; and was still pursuing it, when\nTraddles found me in the height of my perplexity.\n\n'My dear fellow,' said I, 'I never was better pleased to see you. \nYou come to give me the benefit of your sober judgement at a most\nopportune time.  I have received a very singular letter, Traddles,\nfrom Mr. Micawber.'\n\n'No?' cried Traddles.  'You don't say so?  And I have received one\nfrom Mrs. Micawber!'\n\nWith that, Traddles, who was flushed with walking, and whose hair,\nunder the combined effects of exercise and excitement, stood on end\nas if he saw a cheerful ghost, produced his letter and made an\nexchange with me.  I watched him into the heart of Mr. Micawber's\nletter, and returned the elevation of eyebrows with which he said\n\"'Wielding the thunderbolt, or directing the devouring and avenging\nflame!\" Bless me, Copperfield!'- and then entered on the perusal of\nMrs. Micawber's epistle.\n\nIt ran thus:\n\n\n'My best regards to Mr. Thomas Traddles, and if he should still\nremember one who formerly had the happiness of being well\nacquainted with him, may I beg a few moments of his leisure time? \nI assure Mr. T. T. that I would not intrude upon his kindness, were\nI in any other position than on the confines of distraction.\n\n'Though harrowing to myself to mention, the alienation of Mr.\nMicawber (formerly so domesticated) from his wife and family, is\nthe cause of my addressing my unhappy appeal to Mr. Traddles, and\nsoliciting his best indulgence.  Mr. T. can form no adequate idea\nof the change in Mr. Micawber's conduct, of his wildness, of his\nviolence.  It has gradually augmented, until it assumes the\nappearance of aberration of intellect.  Scarcely a day passes, I\nassure Mr. Traddles, on which some paroxysm does not take place. \nMr. T. will not require me to depict my feelings, when I inform him\nthat I have become accustomed to hear Mr. Micawber assert that he\nhas sold himself to the D.  Mystery and secrecy have long been his\nprincipal characteristic, have long replaced unlimited confidence. \nThe slightest provocation, even being asked if there is anything he\nwould prefer for dinner, causes him to express a wish for a\nseparation.  Last night, on being childishly solicited for\ntwopence, to buy 'lemon-stunners' - a local sweetmeat - he\npresented an oyster-knife at the twins!\n\n'I entreat Mr. Traddles to bear with me in entering into these\ndetails.  Without them, Mr. T. would indeed find it difficult to\nform the faintest conception of my heart-rending situation.\n\n'May I now venture to confide to Mr. T. the purport of my letter? \nWill he now allow me to throw myself on his friendly consideration? \nOh yes, for I know his heart!\n\n'The quick eye of affection is not easily blinded, when of the\nfemale sex.  Mr. Micawber is going to London.  Though he studiously\nconcealed his hand, this morning before breakfast, in writing the\ndirection-card which he attached to the little brown valise of\nhappier days, the eagle-glance of matrimonial anxiety detected, d,\no, n, distinctly traced.  The West-End destination of the coach, is\nthe Golden Cross.  Dare I fervently implore Mr. T. to see my\nmisguided husband, and to reason with him?  Dare I ask Mr. T. to\nendeavour to step in between Mr. Micawber and his agonized family? \nOh no, for that would be too much!\n\n'If Mr. Copperfield should yet remember one unknown to fame, will\nMr. T. take charge of my unalterable regards and similar\nentreaties?  In any case, he will have the benevolence to consider\nthis communication strictly private, and on no account whatever to\nbe alluded to, however distantly, in the presence of Mr. Micawber. \nIf Mr. T. should ever reply to it (which I cannot but feel to be\nmost improbable), a letter addressed to M. E., Post Office,\nCanterbury, will be fraught with less painful consequences than any\naddressed immediately to one, who subscribes herself, in extreme\ndistress,\n\n'Mr. Thomas Traddles's respectful friend and suppliant,\n\n                                   'EMMA MICAWBER.'\n\n\n'What do you think of that letter?' said Traddles, casting his eyes\nupon me, when I had read it twice.\n\n'What do you think of the other?' said I.  For he was still reading\nit with knitted brows.\n\n'I think that the two together, Copperfield,' replied Traddles,\n'mean more than Mr. and Mrs. Micawber usually mean in their\ncorrespondence - but I don't know what.  They are both written in\ngood faith, I have no doubt, and without any collusion.  Poor\nthing!' he was now alluding to Mrs. Micawber's letter, and we were\nstanding side by side comparing the two; 'it will be a charity to\nwrite to her, at all events, and tell her that we will not fail to\nsee Mr. Micawber.'\n\nI acceded to this the more readily, because I now reproached myself\nwith having treated her former letter rather lightly.  It had set\nme thinking a good deal at the time, as I have mentioned in its\nplace; but my absorption in my own affairs, my experience of the\nfamily, and my hearing nothing more, had gradually ended in my\ndismissing the subject.  I had often thought of the Micawbers, but\nchiefly to wonder what 'pecuniary liabilities' they were\nestablishing in Canterbury, and to recall how shy Mr. Micawber was\nof me when he became clerk to Uriah Heep.\n\nHowever, I now wrote a comforting letter to Mrs. Micawber, in our\njoint names, and we both signed it.  As we walked into town to post\nit, Traddles and I held a long conference, and launched into a\nnumber of speculations, which I need not repeat.  We took my aunt\ninto our counsels in the afternoon; but our only decided conclusion\nwas, that we would be very punctual in keeping Mr. Micawber's\nappointment.\n\nAlthough we appeared at the stipulated place a quarter of an hour\nbefore the time, we found Mr. Micawber already there.  He was\nstanding with his arms folded, over against the wall, looking at\nthe spikes on the top, with a sentimental expression, as if they\nwere the interlacing boughs of trees that had shaded him in his\nyouth.\n\nWhen we accosted him, his manner was something more confused, and\nsomething less genteel, than of yore.  He had relinquished his\nlegal suit of black for the purposes of this excursion, and wore\nthe old surtout and tights, but not quite with the old air.  He\ngradually picked up more and more of it as we conversed with him;\nbut, his very eye-glass seemed to hang less easily, and his\nshirt-collar, though still of the old formidable dimensions, rather\ndrooped.\n\n'Gentlemen!' said Mr. Micawber, after the first salutations, 'you\nare friends in need, and friends indeed.  Allow me to offer my\ninquiries with reference to the physical welfare of Mrs.\nCopperfield in esse, and Mrs. Traddles in posse, - presuming, that\nis to say, that my friend Mr. Traddles is not yet united to the\nobject of his affections, for weal and for woe.'\n\nWe acknowledged his politeness, and made suitable replies.  He then\ndirected our attention to the wall, and was beginning, 'I assure\nyou, gentlemen,' when I ventured to object to that ceremonious form\nof address, and to beg that he would speak to us in the old way.\n\n'My dear Copperfield,' he returned, pressing my hand, 'your\ncordiality overpowers me.  This reception of a shattered fragment\nof the Temple once called Man - if I may be permitted so to express\nmyself - bespeaks a heart that is an honour to our common nature. \nI was about to observe that I again behold the serene spot where\nsome of the happiest hours of my existence fleeted by.'\n\n'Made so, I am sure, by Mrs. Micawber,' said I.  'I hope she is\nwell?'\n\n'Thank you,' returned Mr. Micawber, whose face clouded at this\nreference, 'she is but so-so.  And this,' said Mr. Micawber,\nnodding his head sorrowfully, 'is the Bench! Where, for the first\ntime in many revolving years, the overwhelming pressure of\npecuniary liabilities was not proclaimed, from day to day, by\nimportune voices declining to vacate the passage; where there was\nno knocker on the door for any creditor to appeal to; where\npersonal service of process was not required, and detainees were\nmerely lodged at the gate! Gentlemen,' said Mr. Micawber, 'when the\nshadow of that iron-work on the summit of the brick structure has\nbeen reflected on the gravel of the Parade, I have seen my children\nthread the mazes of the intricate pattern, avoiding the dark marks. \nI have been familiar with every stone in the place.  If I betray\nweakness, you will know how to excuse me.'\n\n'We have all got on in life since then, Mr. Micawber,' said I.\n\n'Mr. Copperfield,' returned Mr. Micawber, bitterly, 'when I was an\ninmate of that retreat I could look my fellow-man in the face, and\npunch his head if he offended me.  My fellow-man and myself are no\nlonger on those glorious terms!'\n\nTurning from the building in a downcast manner, Mr. Micawber\naccepted my proffered arm on one side, and the proffered arm of\nTraddles on the other, and walked away between us.\n\n'There are some landmarks,' observed Mr. Micawber, looking fondly\nback over his shoulder, 'on the road to the tomb, which, but for\nthe impiety of the aspiration, a man would wish never to have\npassed.  Such is the Bench in my chequered career.'\n\n'Oh, you are in low spirits, Mr. Micawber,' said Traddles.\n\n'I am, sir,' interposed Mr. Micawber.\n\n'I hope,' said Traddles, 'it is not because you have conceived a\ndislike to the law - for I am a lawyer myself, you know.'\n\nMr. Micawber answered not a word.\n\n'How is our friend Heep, Mr. Micawber?' said I, after a silence.\n\n'My dear Copperfield,' returned Mr. Micawber, bursting into a state\nof much excitement, and turning pale, 'if you ask after my employer\nas your friend, I am sorry for it; if you ask after him as MY\nfriend, I sardonically smile at it.  In whatever capacity you ask\nafter my employer, I beg, without offence to you, to limit my reply\nto this - that whatever his state of health may be, his appearance\nis foxy: not to say diabolical.  You will allow me, as a private\nindividual, to decline pursuing a subject which has lashed me to\nthe utmost verge of desperation in my professional capacity.'\n\nI expressed my regret for having innocently touched upon a theme\nthat roused him so much.  'May I ask,' said I, 'without any hazard\nof repeating the mistake, how my old friends Mr. and Miss Wickfield\nare?'\n\n'Miss Wickfield,' said Mr. Micawber, now turning red, 'is, as she\nalways is, a pattern, and a bright example.  My dear Copperfield,\nshe is the only starry spot in a miserable existence.  My respect\nfor that young lady, my admiration of her character, my devotion to\nher for her love and truth, and goodness! - Take me,' said Mr.\nMicawber, 'down a turning, for, upon my soul, in my present state\nof mind I am not equal to this!'\n\nWe wheeled him off into a narrow street, where he took out his\npocket-handkerchief, and stood with his back to a wall.  If I\nlooked as gravely at him as Traddles did, he must have found our\ncompany by no means inspiriting.\n\n'It is my fate,' said Mr. Micawber, unfeignedly sobbing, but doing\neven that, with a shadow of the old expression of doing something\ngenteel; 'it is my fate, gentlemen, that the finer feelings of our\nnature have become reproaches to me.  My homage to Miss Wickfield,\nis a flight of arrows in my bosom.  You had better leave me, if you\nplease, to walk the earth as a vagabond.  The worm will settle my\nbusiness in double-quick time.'\n\nWithout attending to this invocation, we stood by, until he put up\nhis pocket-handkerchief, pulled up his shirt-collar, and, to delude\nany person in the neighbourhood who might have been observing him,\nhummed a tune with his hat very much on one side.  I then mentioned\n- not knowing what might be lost if we lost sight of him yet - that\nit would give me great pleasure to introduce him to my aunt, if he\nwould ride out to Highgate, where a bed was at his service.\n\n'You shall make us a glass of your own punch, Mr. Micawber,' said\nI, 'and forget whatever you have on your mind, in pleasanter\nreminiscences.'\n\n'Or, if confiding anything to friends will be more likely to\nrelieve you, you shall impart it to us, Mr. Micawber,' said\nTraddles, prudently.\n\n'Gentlemen,' returned Mr. Micawber, 'do with me as you will! I am\na straw upon the surface of the deep, and am tossed in all\ndirections by the elephants - I beg your pardon; I should have said\nthe elements.'\n\nWe walked on, arm-in-arm, again; found the coach in the act of\nstarting; and arrived at Highgate without encountering any\ndifficulties by the way.  I was very uneasy and very uncertain in\nmy mind what to say or do for the best - so was Traddles,\nevidently.  Mr. Micawber was for the most part plunged into deep\ngloom.  He occasionally made an attempt to smarten himself, and hum\nthe fag-end of a tune; but his relapses into profound melancholy\nwere only made the more impressive by the mockery of a hat\nexceedingly on one side, and a shirt-collar pulled up to his eyes.\n\nWe went to my aunt's house rather than to mine, because of Dora's\nnot being well.  My aunt presented herself on being sent for, and\nwelcomed Mr. Micawber with gracious cordiality.  Mr. Micawber\nkissed her hand, retired to the window, and pulling out his\npocket-handkerchief, had a mental wrestle with himself.\n\nMr. Dick was at home.  He was by nature so exceedingly\ncompassionate of anyone who seemed to be ill at ease, and was so\nquick to find any such person out, that he shook hands with Mr.\nMicawber, at least half-a-dozen times in five minutes.  To Mr.\nMicawber, in his trouble, this warmth, on the part of a stranger,\nwas so extremely touching, that he could only say, on the occasion\nof each successive shake, 'My dear sir, you overpower me!' Which\ngratified Mr. Dick so much, that he went at it again with greater\nvigour than before.\n\n'The friendliness of this gentleman,' said Mr. Micawber to my aunt,\n'if you will allow me, ma'am, to cull a figure of speech from the\nvocabulary of our coarser national sports - floors me.  To a man\nwho is struggling with a complicated burden of perplexity and\ndisquiet, such a reception is trying, I assure you.'\n\n'My friend Mr. Dick,' replied my aunt proudly, 'is not a common\nman.'\n\n'That I am convinced of,' said Mr. Micawber.  'My dear sir!' for\nMr. Dick was shaking hands with him again; 'I am deeply sensible of\nyour cordiality!'\n\n'How do you find yourself?' said Mr. Dick, with an anxious look.\n\n'Indifferent, my dear sir,' returned Mr. Micawber, sighing.\n\n'You must keep up your spirits,' said Mr. Dick, 'and make yourself\nas comfortable as possible.'\n\nMr. Micawber was quite overcome by these friendly words, and by\nfinding Mr. Dick's hand again within his own.  'It has been my\nlot,' he observed, 'to meet, in the diversified panorama of human\nexistence, with an occasional oasis, but never with one so green,\nso gushing, as the present!'\n\nAt another time I should have been amused by this; but I felt that\nwe were all constrained and uneasy, and I watched Mr. Micawber so\nanxiously, in his vacillations between an evident disposition to\nreveal something, and a counter-disposition to reveal nothing, that\nI was in a perfect fever.  Traddles, sitting on the edge of his\nchair, with his eyes wide open, and his hair more emphatically\nerect than ever, stared by turns at the ground and at Mr. Micawber,\nwithout so much as attempting to put in a word.  My aunt, though I\nsaw that her shrewdest observation was concentrated on her new\nguest, had more useful possession of her wits than either of us;\nfor she held him in conversation, and made it necessary for him to\ntalk, whether he liked it or not.\n\n'You are a very old friend of my nephew's, Mr. Micawber,' said my\naunt.  'I wish I had had the pleasure of seeing you before.'\n\n'Madam,' returned Mr. Micawber, 'I wish I had had the honour of\nknowing you at an earlier period.  I was not always the wreck you\nat present behold.'\n\n'I hope Mrs. Micawber and your family are well, sir,' said my aunt.\n\nMr. Micawber inclined his head.  'They are as well, ma'am,' he\ndesperately observed after a pause, 'as Aliens and Outcasts can\never hope to be.'\n\n'Lord bless you, sir!' exclaimed my aunt, in her abrupt way.  'What\nare you talking about?'\n\n'The subsistence of my family, ma'am,' returned Mr. Micawber,\n'trembles in the balance.  My employer -'\n\nHere Mr. Micawber provokingly left off; and began to peel the\nlemons that had been under my directions set before him, together\nwith all the other appliances he used in making punch.\n\n'Your employer, you know,' said Mr. Dick, jogging his arm as a\ngentle reminder.\n\n'My good sir,' returned Mr. Micawber, 'you recall me, I am obliged\nto you.'  They shook hands again.  'My employer, ma'am - Mr. Heep\n- once did me the favour to observe to me, that if I were not in\nthe receipt of the stipendiary emoluments appertaining to my\nengagement with him, I should probably be a mountebank about the\ncountry, swallowing a sword-blade, and eating the devouring\nelement.  For anything that I can perceive to the contrary, it is\nstill probable that my children may be reduced to seek a livelihood\nby personal contortion, while Mrs. Micawber abets their unnatural\nfeats by playing the barrel-organ.'\n\nMr. Micawber, with a random but expressive flourish of his knife,\nsignified that these performances might be expected to take place\nafter he was no more; then resumed his peeling with a desperate\nair.\n\nMy aunt leaned her elbow on the little round table that she usually\nkept beside her, and eyed him attentively.  Notwithstanding the\naversion with which I regarded the idea of entrapping him into any\ndisclosure he was not prepared to make voluntarily, I should have\ntaken him up at this point, but for the strange proceedings in\nwhich I saw him engaged; whereof his putting the lemon-peel into\nthe kettle, the sugar into the snuffer-tray, the spirit into the\nempty jug, and confidently attempting to pour boiling water out of\na candlestick, were among the most remarkable.  I saw that a crisis\nwas at hand, and it came.  He clattered all his means and\nimplements together, rose from his chair, pulled out his\npocket-handkerchief, and burst into tears.\n\n'My dear Copperfield,' said Mr. Micawber, behind his handkerchief,\n'this is an occupation, of all others, requiring an untroubled\nmind, and self-respect.  I cannot perform it.  It is out of the\nquestion.'\n\n'Mr. Micawber,' said I, 'what is the matter?  Pray speak out.  You\nare among friends.'\n\n'Among friends, sir!' repeated Mr. Micawber; and all he had\nreserved came breaking out of him.  'Good heavens, it is\nprincipally because I AM among friends that my state of mind is\nwhat it is.  What is the matter, gentlemen?  What is NOT the\nmatter?  Villainy is the matter; baseness is the matter; deception,\nfraud, conspiracy, are the matter; and the name of the whole\natrocious mass is - HEEP!'\n\nMY aunt clapped her hands, and we all started up as if we were\npossessed.\n\n'The struggle is over!' said Mr. Micawber violently gesticulating\nwith his pocket-handkerchief, and fairly striking out from time to\ntime with both arms, as if he were swimming under superhuman\ndifficulties.  'I will lead this life no longer.  I am a wretched\nbeing, cut off from everything that makes life tolerable.  I have\nbeen under a Taboo in that infernal scoundrel's service.  Give me\nback my wife, give me back my family, substitute Micawber for the\npetty wretch who walks about in the boots at present on my feet,\nand call upon me to swallow a sword tomorrow, and I'll do it.  With\nan appetite!'\n\nI never saw a man so hot in my life.  I tried to calm him, that we\nmight come to something rational; but he got hotter and hotter, and\nwouldn't hear a word.\n\n'I'll put my hand in no man's hand,' said Mr. Micawber, gasping,\npuffing, and sobbing, to that degree that he was like a man\nfighting with cold water, 'until I have - blown to fragments - the\n- a - detestable - serpent - HEEP! I'll partake of no one's\nhospitality, until I have - a - moved Mount Vesuvius - to eruption\n- on - a - the abandoned rascal - HEEP! Refreshment - a -\nunderneath this roof - particularly punch - would - a - choke me -\nunless - I had - previously - choked the eyes - out of the head -\na - of - interminable cheat, and liar - HEEP! I - a- I'll know\nnobody - and - a - say nothing - and - a - live nowhere - until I\nhave crushed - to - a - undiscoverable atoms - the - transcendent\nand immortal hypocrite and perjurer - HEEP!'\n\nI really had some fear of Mr. Micawber's dying on the spot.  The\nmanner in which he struggled through these inarticulate sentences,\nand, whenever he found himself getting near the name of Heep,\nfought his way on to it, dashed at it in a fainting state, and\nbrought it out with a vehemence little less than marvellous, was\nfrightful; but now, when he sank into a chair, steaming, and looked\nat us, with every possible colour in his face that had no business\nthere, and an endless procession of lumps following one another in\nhot haste up his throat, whence they seemed to shoot into his\nforehead, he had the appearance of being in the last extremity.  I\nwould have gone to his assistance, but he waved me off, and\nwouldn't hear a word.\n\n'No, Copperfield! - No communication - a - until - Miss Wickfield\n- a - redress from wrongs inflicted by consummate scoundrel -\nHEEP!' (I am quite convinced he could not have uttered three words,\nbut for the amazing energy with which this word inspired him when\nhe felt it coming.) 'Inviolable secret - a - from the whole world\n- a - no exceptions - this day week - a - at breakfast-time - a -\neverybody present - including aunt - a - and extremely friendly\ngentleman - to be at the hotel at Canterbury - a - where - Mrs.\nMicawber and myself - Auld Lang Syne in chorus - and - a - will\nexpose intolerable ruffian - HEEP! No more to say - a - or listen\nto persuasion - go immediately - not capable - a - bear society -\nupon the track of devoted and doomed traitor - HEEP!'\n\nWith this last repetition of the magic word that had kept him going\nat all, and in which he surpassed all his previous efforts, Mr.\nMicawber rushed out of the house; leaving us in a state of\nexcitement, hope, and wonder, that reduced us to a condition little\nbetter than his own.  But even then his passion for writing letters\nwas too strong to be resisted; for while we were yet in the height\nof our excitement, hope, and wonder, the following pastoral note\nwas brought to me from a neighbouring tavern, at which he had\ncalled to write it: -\n\n\n          'Most secret and confidential.\n'MY DEAR SIR,\n\n'I beg to be allowed to convey, through you, my apologies to your\nexcellent aunt for my late excitement.  An explosion of a\nsmouldering volcano long suppressed, was the result of an internal\ncontest more easily conceived than described.\n\n'I trust I rendered tolerably intelligible my appointment for the\nmorning of this day week, at the house of public entertainment at\nCanterbury, where Mrs. Micawber and myself had once the honour of\nuniting our voices to yours, in the well-known strain of the\nImmortal exciseman nurtured beyond the Tweed.\n\n'The duty done, and act of reparation performed, which can alone\nenable me to contemplate my fellow mortal, I shall be known no\nmore.  I shall simply require to be deposited in that place of\nuniversal resort, where\n\n     Each in his narrow cell for ever laid,\n     The rude forefathers of the hamlet sleep,\n\n                    '- With the plain Inscription,\n\n                         'WILKINS MICAWBER.'\n\n\n\nCHAPTER 50\nMr. PEGGOTTY'S DREAM COMES TRUE\n\n\nBy this time, some months had passed since our interview on the\nbank of the river with Martha.  I had never seen her since, but she\nhad communicated with Mr. Peggotty on several occasions.  Nothing\nhad come of her zealous intervention; nor could I infer, from what\nhe told me, that any clue had been obtained, for a moment, to\nEmily's fate.  I confess that I began to despair of her recovery,\nand gradually to sink deeper and deeper into the belief that she\nwas dead.\n\nHis conviction remained unchanged.  So far as I know - and I\nbelieve his honest heart was transparent to me - he never wavered\nagain, in his solemn certainty of finding her.  His patience never\ntired.  And, although I trembled for the agony it might one day be\nto him to have his strong assurance shivered at a blow, there was\nsomething so religious in it, so affectingly expressive of its\nanchor being in the purest depths of his fine nature, that the\nrespect and honour in which I held him were exalted every day.\n\nHis was not a lazy trustfulness that hoped, and did no more.  He\nhad been a man of sturdy action all his life, and he knew that in\nall things wherein he wanted help he must do his own part\nfaithfully, and help himself.  I have known him set out in the\nnight, on a misgiving that the light might not be, by some\naccident, in the window of the old boat, and walk to Yarmouth.  I\nhave known him, on reading something in the newspaper that might\napply to her, take up his stick, and go forth on a journey of\nthree- or four-score miles.  He made his way by sea to Naples, and\nback, after hearing the narrative to which Miss Dartle had assisted\nme.  All his journeys were ruggedly performed; for he was always\nsteadfast in a purpose of saving money for Emily's sake, when she\nshould be found.  In all this long pursuit, I never heard him\nrepine; I never heard him say he was fatigued, or out of heart.\n\nDora had often seen him since our marriage, and was quite fond of\nhim.  I fancy his figure before me now, standing near her sofa,\nwith his rough cap in his hand, and the blue eyes of my child-wife\nraised, with a timid wonder, to his face.  Sometimes of an evening,\nabout twilight, when he came to talk with me, I would induce him to\nsmoke his pipe in the garden, as we slowly paced to and fro\ntogether; and then, the picture of his deserted home, and the\ncomfortable air it used to have in my childish eyes of an evening\nwhen the fire was burning, and the wind moaning round it, came most\nvividly into my mind.\n\nOne evening, at this hour, he told me that he had found Martha\nwaiting near his lodging on the preceding night when he came out,\nand that she had asked him not to leave London on any account,\nuntil he should have seen her again.\n\n'Did she tell you why?' I inquired.\n\n'I asked her, Mas'r Davy,' he replied, 'but it is but few words as\nshe ever says, and she on'y got my promise and so went away.'\n\n'Did she say when you might expect to see her again?' I demanded.\n\n'No, Mas'r Davy,' he returned, drawing his hand thoughtfully down\nhis face.  'I asked that too; but it was more (she said) than she\ncould tell.'\n\nAs I had long forborne to encourage him with hopes that hung on\nthreads, I made no other comment on this information than that I\nsupposed he would see her soon.  Such speculations as it engendered\nwithin me I kept to myself, and those were faint enough.\n\nI was walking alone in the garden, one evening, about a fortnight\nafterwards.  I remember that evening well.  It was the second in\nMr. Micawber's week of suspense.  There had been rain all day, and\nthere was a damp feeling in the air.  The leaves were thick upon\nthe trees, and heavy with wet; but the rain had ceased, though the\nsky was still dark; and the hopeful birds were singing cheerfully. \nAs I walked to and fro in the garden, and the twilight began to\nclose around me, their little voices were hushed; and that peculiar\nsilence which belongs to such an evening in the country when the\nlightest trees are quite still, save for the occasional droppings\nfrom their boughs, prevailed.\n\nThere was a little green perspective of trellis-work and ivy at the\nside of our cottage, through which I could see, from the garden\nwhere I was walking, into the road before the house.  I happened to\nturn my eyes towards this place, as I was thinking of many things;\nand I saw a figure beyond, dressed in a plain cloak.  It was\nbending eagerly towards me, and beckoning.\n\n'Martha!' said I, going to it.\n\n'Can you come with me?' she inquired, in an agitated whisper.  'I\nhave been to him, and he is not at home.  I wrote down where he was\nto come, and left it on his table with my own hand.  They said he\nwould not be out long.  I have tidings for him.  Can you come\ndirectly?'\n\nMy answer was, to pass out at the gate immediately.  She made a\nhasty gesture with her hand, as if to entreat my patience and my\nsilence, and turned towards London, whence, as her dress betokened,\nshe had come expeditiously on foot.\n\nI asked her if that were not our destination?  On her motioning\nYes, with the same hasty gesture as before, I stopped an empty\ncoach that was coming by, and we got into it.  When I asked her\nwhere the coachman was to drive, she answered, 'Anywhere near\nGolden Square! And quick!' - then shrunk into a corner, with one\ntrembling hand before her face, and the other making the former\ngesture, as if she could not bear a voice.\n\nNow much disturbed, and dazzled with conflicting gleams of hope and\ndread, I looked at her for some explanation.  But seeing how\nstrongly she desired to remain quiet, and feeling that it was my\nown natural inclination too, at such a time, I did not attempt to\nbreak the silence.  We proceeded without a word being spoken. \nSometimes she glanced out of the window, as though she thought we\nwere going slowly, though indeed we were going fast; but otherwise\nremained exactly as at first.\n\nWe alighted at one of the entrances to the Square she had\nmentioned, where I directed the coach to wait, not knowing but that\nwe might have some occasion for it.  She laid her hand on my arm,\nand hurried me on to one of the sombre streets, of which there are\nseveral in that part, where the houses were once fair dwellings in\nthe occupation of single families, but have, and had, long\ndegenerated into poor lodgings let off in rooms.  Entering at the\nopen door of one of these, and releasing my arm, she beckoned me to\nfollow her up the common staircase, which was like a tributary\nchannel to the street.\n\nThe house swarmed with inmates.  As we went up, doors of rooms were\nopened and people's heads put out; and we passed other people on\nthe stairs, who were coming down.  In glancing up from the outside,\nbefore we entered, I had seen women and children lolling at the\nwindows over flower-pots; and we seemed to have attracted their\ncuriosity, for these were principally the observers who looked out\nof their doors.  It was a broad panelled staircase, with massive\nbalustrades of some dark wood; cornices above the doors, ornamented\nwith carved fruit and flowers; and broad seats in the windows.  But\nall these tokens of past grandeur were miserably decayed and dirty;\nrot, damp, and age, had weakened the flooring, which in many places\nwas unsound and even unsafe.  Some attempts had been made, I\nnoticed, to infuse new blood into this dwindling frame, by\nrepairing the costly old wood-work here and there with common deal;\nbut it was like the marriage of a reduced old noble to a plebeian\npauper, and each party to the ill-assorted union shrunk away from\nthe other.  Several of the back windows on the staircase had been\ndarkened or wholly blocked up.  In those that remained, there was\nscarcely any glass; and, through the crumbling frames by which the\nbad air seemed always to come in, and never to go out, I saw,\nthrough other glassless windows, into other houses in a similar\ncondition, and looked giddily down into a wretched yard, which was\nthe common dust-heap of the mansion.\n\nWe proceeded to the top-storey of the house.  Two or three times,\nby the way, I thought I observed in the indistinct light the skirts\nof a female figure going up before us.  As we turned to ascend the\nlast flight of stairs between us and the roof, we caught a full\nview of this figure pausing for a moment, at a door.  Then it\nturned the handle, and went in.\n\n'What's this!' said Martha, in a whisper.  'She has gone into my\nroom.  I don't know her!'\n\nI knew her.  I had recognized her with amazement, for Miss Dartle.\n\nI said something to the effect that it was a lady whom I had seen\nbefore, in a few words, to my conductress; and had scarcely done\nso, when we heard her voice in the room, though not, from where we\nstood, what she was saying.  Martha, with an astonished look,\nrepeated her former action, and softly led me up the stairs; and\nthen, by a little back-door which seemed to have no lock, and which\nshe pushed open with a touch, into a small empty garret with a low\nsloping roof, little better than a cupboard.  Between this, and the\nroom she had called hers, there was a small door of communication,\nstanding partly open.  Here we stopped, breathless with our ascent,\nand she placed her hand lightly on my lips.  I could only see, of\nthe room beyond, that it was pretty large; that there was a bed in\nit; and that there were some common pictures of ships upon the\nwalls.  I could not see Miss Dartle, or the person whom we had\nheard her address.  Certainly, my companion could not, for my\nposition was the best.\nA dead silence prevailed for some moments.  Martha kept one hand on\nmy lips, and raised the other in a listening attitude.\n\n'It matters little to me her not being at home,' said Rosa Dartle\nhaughtily, 'I know nothing of her.  It is you I come to see.'\n\n'Me?' replied a soft voice.\n\nAt the sound of it, a thrill went through my frame.  For it was\nEmily's!\n\n'Yes,' returned Miss Dartle, 'I have come to look at you.  What? \nYou are not ashamed of the face that has done so much?'\n\nThe resolute and unrelenting hatred of her tone, its cold stern\nsharpness, and its mastered rage, presented her before me, as if I\nhad seen her standing in the light.  I saw the flashing black eyes,\nand the passion-wasted figure; and I saw the scar, with its white\ntrack cutting through her lips, quivering and throbbing as she\nspoke.\n\n'I have come to see,' she said, 'James Steerforth's fancy; the girl\nwho ran away with him, and is the town-talk of the commonest people\nof her native place; the bold, flaunting, practised companion of\npersons like James Steerforth.  I want to know what such a thing is\nlike.'\n\nThere was a rustle, as if the unhappy girl, on whom she heaped\nthese taunts, ran towards the door, and the speaker swiftly\ninterposed herself before it.  It was succeeded by a moment's\npause.\n\nWhen Miss Dartle spoke again, it was through her set teeth, and\nwith a stamp upon the ground.\n\n'Stay there!' she said, 'or I'll proclaim you to the house, and the\nwhole street! If you try to evade me, I'll stop you, if it's by the\nhair, and raise the very stones against you!'\n\nA frightened murmur was the only reply that reached my ears.  A\nsilence succeeded.  I did not know what to do.  Much as I desired\nto put an end to the interview, I felt that I had no right to\npresent myself; that it was for Mr. Peggotty alone to see her and\nrecover her.  Would he never come?  I thought impatiently.\n\n'So!' said Rosa Dartle, with a contemptuous laugh, 'I see her at\nlast! Why, he was a poor creature to be taken by that delicate\nmock-modesty, and that hanging head!'\n\n'Oh, for Heaven's sake, spare me!' exclaimed Emily.  'Whoever you\nare, you know my pitiable story, and for Heaven's sake spare me, if\nyou would be spared yourself!'\n\n'If I would be spared!' returned the other fiercely; 'what is there\nin common between US, do you think!'\n\n'Nothing but our sex,' said Emily, with a burst of tears.\n\n'And that,' said Rosa Dartle, 'is so strong a claim, preferred by\none so infamous, that if I had any feeling in my breast but scorn\nand abhorrence of you, it would freeze it up.  Our sex! You are an\nhonour to our sex!'\n\n'I have deserved this,' said Emily, 'but it's dreadful! Dear, dear\nlady, think what I have suffered, and how I am fallen! Oh, Martha,\ncome back! Oh, home, home!'\n\nMiss Dartle placed herself in a chair, within view of the door, and\nlooked downward, as if Emily were crouching on the floor before\nher.  Being now between me and the light, I could see her curled\nlip, and her cruel eyes intently fixed on one place, with a greedy\ntriumph.\n\n'Listen to what I say!' she said; 'and reserve your false arts for\nyour dupes.  Do you hope to move me by your tears?  No more than\nyou could charm me by your smiles, you purchased slave.'\n\n'Oh, have some mercy on me!' cried Emily.  'Show me some\ncompassion, or I shall die mad!'\n\n'It would be no great penance,' said Rosa Dartle, 'for your crimes. \nDo you know what you have done?  Do you ever think of the home you\nhave laid waste?'\n\n'Oh, is there ever night or day, when I don't think of it!' cried\nEmily; and now I could just see her, on her knees, with her head\nthrown back, her pale face looking upward, her hands wildly clasped\nand held out, and her hair streaming about her.  'Has there ever\nbeen a single minute, waking or sleeping, when it hasn't been\nbefore me, just as it used to be in the lost days when I turned my\nback upon it for ever and for ever! Oh, home, home! Oh dear, dear\nuncle, if you ever could have known the agony your love would cause\nme when I fell away from good, you never would have shown it to me\nso constant, much as you felt it; but would have been angry to me,\nat least once in my life, that I might have had some comfort! I\nhave none, none, no comfort upon earth, for all of them were always\nfond of me!' She dropped on her face, before the imperious figure\nin the chair, with an imploring effort to clasp the skirt of her\ndress.\n\nRosa Dartle sat looking down upon her, as inflexible as a figure of\nbrass.  Her lips were tightly compressed, as if she knew that she\nmust keep a strong constraint upon herself - I write what I\nsincerely believe - or she would be tempted to strike the beautiful\nform with her foot.  I saw her, distinctly, and the whole power of\nher face and character seemed forced into that expression.  - Would\nhe never come?\n\n'The miserable vanity of these earth-worms!' she said, when she had\nso far controlled the angry heavings of her breast, that she could\ntrust herself to speak.  'YOUR home! Do you imagine that I bestow\na thought on it, or suppose you could do any harm to that low\nplace, which money would not pay for, and handsomely?  YOUR home!\nYou were a part of the trade of your home, and were bought and sold\nlike any other vendible thing your people dealt in.'\n\n'Oh, not that!' cried Emily.  'Say anything of me; but don't visit\nmy disgrace and shame, more than I have done, on folks who are as\nhonourable as you! Have some respect for them, as you are a lady,\nif you have no mercy for me.'\n\n'I speak,' she said, not deigning to take any heed of this appeal,\nand drawing away her dress from the contamination of Emily's touch,\n'I speak of HIS home - where I live.  Here,' she said, stretching\nout her hand with her contemptuous laugh, and looking down upon the\nprostrate girl, 'is a worthy cause of division between lady-mother\nand gentleman-son; of grief in a house where she wouldn't have been\nadmitted as a kitchen-girl; of anger, and repining, and reproach. \nThis piece of pollution, picked up from the water-side, to be made\nmuch of for an hour, and then tossed back to her original place!'\n\n'No! no!' cried Emily, clasping her hands together.  'When he first\ncame into my way - that the day had never dawned upon me, and he\nhad met me being carried to my grave! - I had been brought up as\nvirtuous as you or any lady, and was going to be the wife of as\ngood a man as you or any lady in the world can ever marry.  If you\nlive in his home and know him, you know, perhaps, what his power\nwith a weak, vain girl might be.  I don't defend myself, but I know\nwell, and he knows well, or he will know when he comes to die, and\nhis mind is troubled with it, that he used all his power to deceive\nme, and that I believed him, trusted him, and loved him!'\n\nRosa Dartle sprang up from her seat; recoiled; and in recoiling\nstruck at her, with a face of such malignity, so darkened and\ndisfigured by passion, that I had almost thrown myself between\nthem.  The blow, which had no aim, fell upon the air.  As she now\nstood panting, looking at her with the utmost detestation that she\nwas capable of expressing, and trembling from head to foot with\nrage and scorn, I thought I had never seen such a sight, and never\ncould see such another.\n\n'YOU love him?  You?' she cried, with her clenched hand, quivering\nas if it only wanted a weapon to stab the object of her wrath.\n\nEmily had shrunk out of my view.  There was no reply.\n\n'And tell that to ME,' she added, 'with your shameful lips?  Why\ndon't they whip these creatures?  If I could order it to be done,\nI would have this girl whipped to death.'\n\nAnd so she would, I have no doubt.  I would not have trusted her\nwith the rack itself, while that furious look lasted.\nShe slowly, very slowly, broke into a laugh, and pointed at Emily\nwith her hand, as if she were a sight of shame for gods and men.\n\n'SHE love!' she said.  'THAT carrion! And he ever cared for her,\nshe'd tell me.  Ha, ha! The liars that these traders are!'\n\nHer mockery was worse than her undisguised rage.  Of the two, I\nwould have much preferred to be the object of the latter.  But,\nwhen she suffered it to break loose, it was only for a moment.  She\nhad chained it up again, and however it might tear her within, she\nsubdued it to herself.\n\n'I came here, you pure fountain of love,' she said, 'to see - as I\nbegan by telling you - what such a thing as you was like.  I was\ncurious.  I am satisfied.  Also to tell you, that you had best seek\nthat home of yours, with all speed, and hide your head among those\nexcellent people who are expecting you, and whom your money will\nconsole.  When it's all gone, you can believe, and trust, and love\nagain, you know! I thought you a broken toy that had lasted its\ntime; a worthless spangle that was tarnished, and thrown away. \nBut, finding you true gold, a very lady, and an ill-used innocent,\nwith a fresh heart full of love and trustfulness - which you look\nlike, and is quite consistent with your story! - I have something\nmore to say.  Attend to it; for what I say I'll do.  Do you hear\nme, you fairy spirit?  What I say, I mean to do!'\n\nHer rage got the better of her again, for a moment; but it passed\nover her face like a spasm, and left her smiling.\n\n'Hide yourself,' she pursued, 'if not at home, somewhere.  Let it\nbe somewhere beyond reach; in some obscure life - or, better still,\nin some obscure death.  I wonder, if your loving heart will not\nbreak, you have found no way of helping it to be still! I have\nheard of such means sometimes.  I believe they may be easily\nfound.'\n\nA low crying, on the part of Emily, interrupted her here.  She\nstopped, and listened to it as if it were music.\n\n'I am of a strange nature, perhaps,' Rosa Dartle went on; 'but I\ncan't breathe freely in the air you breathe.  I find it sickly. \nTherefore, I will have it cleared; I will have it purified of you. \nIf you live here tomorrow, I'll have your story and your character\nproclaimed on the common stair.  There are decent women in the\nhouse, I am told; and it is a pity such a light as you should be\namong them, and concealed.  If, leaving here, you seek any refuge\nin this town in any character but your true one (which you are\nwelcome to bear, without molestation from me), the same service\nshall be done you, if I hear of your retreat.  Being assisted by a\ngentleman who not long ago aspired to the favour of your hand, I am\nsanguine as to that.'\n\nWould he never, never come?  How long was I to bear this?  How long\ncould I bear it?\n'Oh me, oh me!' exclaimed the wretched Emily, in a tone that might\nhave touched the hardest heart, I should have thought; but there\nwas no relenting in Rosa Dartle's smile.  'What, what, shall I do!'\n\n'Do?' returned the other.  'Live happy in your own reflections!\nConsecrate your existence to the recollection of James Steerforth's\ntenderness - he would have made you his serving-man's wife, would\nhe not?  - or to feeling grateful to the upright and deserving\ncreature who would have taken you as his gift.  Or, if those proud\nremembrances, and the consciousness of your own virtues, and the\nhonourable position to which they have raised you in the eyes of\neverything that wears the human shape, will not sustain you, marry\nthat good man, and be happy in his condescension.  If this will not\ndo either, die! There are doorways and dust-heaps for such deaths,\nand such despair - find one, and take your flight to Heaven!'\n\nI heard a distant foot upon the stairs.  I knew it, I was certain. \nIt was his, thank God!\n\nShe moved slowly from before the door when she said this, and\npassed out of my sight.\n\n'But mark!' she added, slowly and sternly, opening the other door\nto go away, 'I am resolved, for reasons that I have and hatreds\nthat I entertain, to cast you out, unless you withdraw from my\nreach altogether, or drop your pretty mask.  This is what I had to\nsay; and what I say, I mean to do!'\n\nThe foot upon the stairs came nearer - nearer - passed her as she\nwent down - rushed into the room!\n\n'Uncle!'\n\nA fearful cry followed the word.  I paused a moment, and looking\nin, saw him supporting her insensible figure in his arms.  He gazed\nfor a few seconds in the face; then stooped to kiss it - oh, how\ntenderly! - and drew a handkerchief before it.\n\n'Mas'r Davy,' he said, in a low tremulous voice, when it was\ncovered, 'I thank my Heav'nly Father as my dream's come true! I\nthank Him hearty for having guided of me, in His own ways, to my\ndarling!'\n\nWith those words he took her up in his arms; and, with the veiled\nface lying on his bosom, and addressed towards his own, carried\nher, motionless and unconscious, down the stairs.\n\n\n\nCHAPTER 51\nTHE BEGINNING OF A LONGER JOURNEY\n\n\nIt was yet early in the morning of the following day, when, as I\nwas walking in my garden with my aunt (who took little other\nexercise now, being so much in attendance on my dear Dora), I was\ntold that Mr. Peggotty desired to speak with me.  He came into the\ngarden to meet me half-way, on my going towards the gate; and bared\nhis head, as it was always his custom to do when he saw my aunt,\nfor whom he had a high respect.  I had been telling her all that\nhad happened overnight.  Without saying a word, she walked up with\na cordial face, shook hands with him, and patted him on the arm. \nIt was so expressively done, that she had no need to say a word. \nMr. Peggotty understood her quite as well as if she had said a\nthousand.\n\n'I'll go in now, Trot,' said my aunt, 'and look after Little\nBlossom, who will be getting up presently.'\n\n'Not along of my being heer, ma'am, I hope?' said Mr. Peggotty. \n'Unless my wits is gone a bahd's neezing' - by which Mr. Peggotty\nmeant to say, bird's-nesting - 'this morning, 'tis along of me as\nyou're a-going to quit us?'\n\n'You have something to say, my good friend,' returned my aunt, 'and\nwill do better without me.'\n\n'By your leave, ma'am,' returned Mr. Peggotty, 'I should take it\nkind, pervising you doen't mind my clicketten, if you'd bide heer.'\n\n'Would you?' said my aunt, with short good-nature.  'Then I am sure\nI will!'\n\nSo, she drew her arm through Mr. Peggotty's, and walked with him to\na leafy little summer-house there was at the bottom of the garden,\nwhere she sat down on a bench, and I beside her.  There was a seat\nfor Mr. Peggotty too, but he preferred to stand, leaning his hand\non the small rustic table.  As he stood, looking at his cap for a\nlittle while before beginning to speak, I could not help observing\nwhat power and force of character his sinewy hand expressed, and\nwhat a good and trusty companion it was to his honest brow and\niron-grey hair.\n\n'I took my dear child away last night,' Mr. Peggotty began, as he\nraised his eyes to ours, 'to my lodging, wheer I have a long time\nbeen expecting of her and preparing fur her.  It was hours afore\nshe knowed me right; and when she did, she kneeled down at my feet,\nand kiender said to me, as if it was her prayers, how it all come\nto be.  You may believe me, when I heerd her voice, as I had heerd\nat home so playful - and see her humbled, as it might be in the\ndust our Saviour wrote in with his blessed hand - I felt a wownd go\nto my 'art, in the midst of all its thankfulness.'\n\nHe drew his sleeve across his face, without any pretence of\nconcealing why; and then cleared his voice.\n\n'It warn't for long as I felt that; for she was found.  I had on'y\nto think as she was found, and it was gone.  I doen't know why I do\nso much as mention of it now, I'm sure.  I didn't have it in my\nmind a minute ago, to say a word about myself; but it come up so\nnat'ral, that I yielded to it afore I was aweer.'\n\n'You are a self-denying soul,' said my aunt, 'and will have your\nreward.'\n\nMr. Peggotty, with the shadows of the leaves playing athwart his\nface, made a surprised inclination of the head towards my aunt, as\nan acknowledgement of her good opinion; then took up the thread he\nhad relinquished.\n\n'When my Em'ly took flight,' he said, in stern wrath for the\nmoment, 'from the house wheer she was made a prisoner by that theer\nspotted snake as Mas'r Davy see, - and his story's trew, and may\nGOD confound him! - she took flight in the night.  It was a dark\nnight, with a many stars a-shining.  She was wild.  She ran along\nthe sea beach, believing the old boat was theer; and calling out to\nus to turn away our faces, for she was a-coming by.  She heerd\nherself a-crying out, like as if it was another person; and cut\nherself on them sharp-pinted stones and rocks, and felt it no more\nthan if she had been rock herself.  Ever so fur she run, and there\nwas fire afore her eyes, and roarings in her ears.  Of a sudden -\nor so she thowt, you unnerstand - the day broke, wet and windy, and\nshe was lying b'low a heap of stone upon the shore, and a woman was\na-speaking to her, saying, in the language of that country, what\nwas it as had gone so much amiss?'\n\nHe saw everything he related.  It passed before him, as he spoke,\nso vividly, that, in the intensity of his earnestness, he presented\nwhat he described to me, with greater distinctness than I can\nexpress.  I can hardly believe, writing now long afterwards, but\nthat I was actually present in these scenes; they are impressed\nupon me with such an astonishing air of fidelity.\n\n'As Em'ly's eyes - which was heavy - see this woman better,' Mr.\nPeggotty went on, 'she know'd as she was one of them as she had\noften talked to on the beach.  Fur, though she had run (as I have\nsaid) ever so fur in the night, she had oftentimes wandered long\nways, partly afoot, partly in boats and carriages, and know'd all\nthat country, 'long the coast, miles and miles.  She hadn't no\nchildren of her own, this woman, being a young wife; but she was a-\nlooking to have one afore long.  And may my prayers go up to Heaven\nthat 'twill be a happiness to her, and a comfort, and a honour, all\nher life! May it love her and be dootiful to her, in her old age;\nhelpful of her at the last; a Angel to her heer, and heerafter!'\n\n'Amen!' said my aunt.\n\n'She had been summat timorous and down,' said Mr. Peggotty, and had\nsat, at first, a little way off, at her spinning, or such work as\nit was, when Em'ly talked to the children.  But Em'ly had took\nnotice of her, and had gone and spoke to her; and as the young\nwoman was partial to the children herself, they had soon made\nfriends.  Sermuchser, that when Em'ly went that way, she always giv\nEm'ly flowers.  This was her as now asked what it was that had gone\nso much amiss.  Em'ly told her, and she - took her home.  She did\nindeed.  She took her home,' said Mr. Peggotty, covering his face.\n\nHe was more affected by this act of kindness, than I had ever seen\nhim affected by anything since the night she went away.  My aunt\nand I did not attempt to disturb him.\n\n'It was a little cottage, you may suppose,' he said, presently,\n'but she found space for Em'ly in it, - her husband was away at\nsea, - and she kep it secret, and prevailed upon such neighbours as\nshe had (they was not many near) to keep it secret too.  Em'ly was\ntook bad with fever, and, what is very strange to me is, - maybe\n'tis not so strange to scholars, - the language of that country\nwent out of her head, and she could only speak her own, that no one\nunnerstood.  She recollects, as if she had dreamed it, that she lay\nthere always a-talking her own tongue, always believing as the old\nboat was round the next pint in the bay, and begging and imploring\nof 'em to send theer and tell how she was dying, and bring back a\nmessage of forgiveness, if it was on'y a wured.  A'most the whole\ntime, she thowt, - now, that him as I made mention on just now was\nlurking for her unnerneath the winder; now that him as had brought\nher to this was in the room, - and cried to the good young woman\nnot to give her up, and know'd, at the same time, that she couldn't\nunnerstand, and dreaded that she must be took away.  Likewise the\nfire was afore her eyes, and the roarings in her ears; and theer\nwas no today, nor yesterday, nor yet tomorrow; but everything in\nher life as ever had been, or as ever could be, and everything as\nnever had been, and as never could be, was a crowding on her all at\nonce, and nothing clear nor welcome, and yet she sang and laughed\nabout it! How long this lasted, I doen't know; but then theer come\na sleep; and in that sleep, from being a many times stronger than\nher own self, she fell into the weakness of the littlest child.'\n\nHere he stopped, as if for relief from the terrors of his own\ndescription.  After being silent for a few moments, he pursued his\nstory.\n\n'It was a pleasant arternoon when she awoke; and so quiet, that\nthere warn't a sound but the rippling of that blue sea without a\ntide, upon the shore.  It was her belief, at first, that she was at\nhome upon a Sunday morning; but the vine leaves as she see at the\nwinder, and the hills beyond, warn't home, and contradicted of her. \nThen, come in her friend to watch alongside of her bed; and then\nshe know'd as the old boat warn't round that next pint in the bay\nno more, but was fur off; and know'd where she was, and why; and\nbroke out a-crying on that good young woman's bosom, wheer I hope\nher baby is a-lying now, a-cheering of her with its pretty eyes!'\n\nHe could not speak of this good friend of Emily's without a flow of\ntears.  It was in vain to try.  He broke down again, endeavouring\nto bless her!\n\n'That done my Em'ly good,' he resumed, after such emotion as I\ncould not behold without sharing in; and as to my aunt, she wept\nwith all her heart; 'that done Em'ly good, and she begun to mend. \nBut, the language of that country was quite gone from her, and she\nwas forced to make signs.  So she went on, getting better from day\nto day, slow, but sure, and trying to learn the names of common\nthings - names as she seemed never to have heerd in all her life -\ntill one evening come, when she was a-setting at her window,\nlooking at a little girl at play upon the beach.  And of a sudden\nthis child held out her hand, and said, what would be in English,\n\"Fisherman's daughter, here's a shell!\" - for you are to unnerstand\nthat they used at first to call her \"Pretty lady\", as the general\nway in that country is, and that she had taught 'em to call her\n\"Fisherman's daughter\" instead.  The child says of a sudden,\n\"Fisherman's daughter, here's a shell!\" Then Em'ly unnerstands her;\nand she answers, bursting out a-crying; and it all comes back!\n\n'When Em'ly got strong again,' said Mr. Peggotty, after another\nshort interval of silence, 'she cast about to leave that good young\ncreetur, and get to her own country.  The husband was come home,\nthen; and the two together put her aboard a small trader bound to\nLeghorn, and from that to France.  She had a little money, but it\nwas less than little as they would take for all they done.  I'm\na'most glad on it, though they was so poor! What they done, is laid\nup wheer neither moth or rust doth corrupt, and wheer thieves do\nnot break through nor steal.  Mas'r Davy, it'll outlast all the\ntreasure in the wureld.\n\n'Em'ly got to France, and took service to wait on travelling ladies\nat a inn in the port.  Theer, theer come, one day, that snake.  -\nLet him never come nigh me.  I doen't know what hurt I might do\nhim! - Soon as she see him, without him seeing her, all her fear\nand wildness returned upon her, and she fled afore the very breath\nhe draw'd.  She come to England, and was set ashore at Dover.\n\n'I doen't know,\" said Mr. Peggotty, 'for sure, when her 'art begun\nto fail her; but all the way to England she had thowt to come to\nher dear home.  Soon as she got to England she turned her face\ntow'rds it.  But, fear of not being forgiv, fear of being pinted\nat, fear of some of us being dead along of her, fear of many\nthings, turned her from it, kiender by force, upon the road:\n\"Uncle, uncle,\" she says to me, \"the fear of not being worthy to do\nwhat my torn and bleeding breast so longed to do, was the most\nfright'ning fear of all! I turned back, when my 'art was full of\nprayers that I might crawl to the old door-step, in the night, kiss\nit, lay my wicked face upon it, and theer be found dead in the\nmorning.\"\n\n'She come,' said Mr. Peggotty, dropping his voice to an\nawe-stricken whisper, 'to London.  She - as had never seen it in\nher life - alone - without a penny - young - so pretty - come to\nLondon.  A'most the moment as she lighted heer, all so desolate,\nshe found (as she believed) a friend; a decent woman as spoke to\nher about the needle-work as she had been brought up to do, about\nfinding plenty of it fur her, about a lodging fur the night, and\nmaking secret inquiration concerning of me and all at home,\ntomorrow.  When my child,' he said aloud, and with an energy of\ngratitude that shook him from head to foot, 'stood upon the brink\nof more than I can say or think on - Martha, trew to her promise,\nsaved her.'\n\nI could not repress a cry of joy.\n\n'Mas'r Davy!' said he, gripping my hand in that strong hand of his,\n'it was you as first made mention of her to me.  I thankee, sir!\nShe was arnest.  She had know'd of her bitter knowledge wheer to\nwatch and what to do.  She had done it.  And the Lord was above\nall! She come, white and hurried, upon Em'ly in her sleep.  She\nsays to her, \"Rise up from worse than death, and come with me!\"\nThem belonging to the house would have stopped her, but they might\nas soon have stopped the sea.  \"Stand away from me,\" she says, \"I\nam a ghost that calls her from beside her open grave!\" She told\nEm'ly she had seen me, and know'd I loved her, and forgive her. \nShe wrapped her, hasty, in her clothes.  She took her, faint and\ntrembling, on her arm.  She heeded no more what they said, than if\nshe had had no ears.  She walked among 'em with my child, minding\nonly her; and brought her safe out, in the dead of the night, from\nthat black pit of ruin!\n\n'She attended on Em'ly,' said Mr. Peggotty, who had released my\nhand, and put his own hand on his heaving chest; 'she attended to\nmy Em'ly, lying wearied out, and wandering betwixt whiles, till\nlate next day.  Then she went in search of me; then in search of\nyou, Mas'r Davy.  She didn't tell Em'ly what she come out fur, lest\nher 'art should fail, and she should think of hiding of herself. \nHow the cruel lady know'd of her being theer, I can't say.  Whether\nhim as I have spoke so much of, chanced to see 'em going theer, or\nwhether (which is most like, to my thinking) he had heerd it from\nthe woman, I doen't greatly ask myself.  My niece is found.\n\n'All night long,' said Mr. Peggotty, 'we have been together, Em'ly\nand me.  'Tis little (considering the time) as she has said, in\nwureds, through them broken-hearted tears; 'tis less as I have seen\nof her dear face, as grow'd into a woman's at my hearth.  But, all\nnight long, her arms has been about my neck; and her head has laid\nheer; and we knows full well, as we can put our trust in one\nanother, ever more.'\n\nHe ceased to speak, and his hand upon the table rested there in\nperfect repose, with a resolution in it that might have conquered\nlions.\n\n'It was a gleam of light upon me, Trot,' said my aunt, drying her\neyes, 'when I formed the resolution of being godmother to your\nsister Betsey Trotwood, who disappointed me; but, next to that,\nhardly anything would have given me greater pleasure, than to be\ngodmother to that good young creature's baby!'\n\nMr. Peggotty nodded his understanding of my aunt's feelings, but\ncould not trust himself with any verbal reference to the subject of\nher commendation.  We all remained silent, and occupied with our\nown reflections (my aunt drying her eyes, and now sobbing\nconvulsively, and now laughing and calling herself a fool); until\nI spoke.\n\n'You have quite made up your mind,' said I to Mr. Peggotty, 'as to\nthe future, good friend?  I need scarcely ask you.'\n\n'Quite, Mas'r Davy,' he returned; 'and told Em'ly.  Theer's mighty\ncountries, fur from heer.  Our future life lays over the sea.'\n\n'They will emigrate together, aunt,' said I.\n\n'Yes!' said Mr. Peggotty, with a hopeful smile.  'No one can't\nreproach my darling in Australia.  We will begin a new life over\ntheer!'\n\nI asked him if he yet proposed to himself any time for going away.\n\n'I was down at the Docks early this morning, sir,' he returned, 'to\nget information concerning of them ships.  In about six weeks or\ntwo months from now, there'll be one sailing - I see her this\nmorning - went aboard - and we shall take our passage in her.'\n\n'Quite alone?' I asked.\n\n'Aye, Mas'r Davy!' he returned.  'My sister, you see, she's that\nfond of you and yourn, and that accustomed to think on'y of her own\ncountry, that it wouldn't be hardly fair to let her go.  Besides\nwhich, theer's one she has in charge, Mas'r Davy, as doen't ought\nto be forgot.'\n\n'Poor Ham!' said I.\n\n'My good sister takes care of his house, you see, ma'am, and he\ntakes kindly to her,' Mr. Peggotty explained for my aunt's better\ninformation.  'He'll set and talk to her, with a calm spirit, wen\nit's like he couldn't bring himself to open his lips to another. \nPoor fellow!' said Mr. Peggotty, shaking his head, 'theer's not so\nmuch left him, that he could spare the little as he has!'\n\n'And Mrs. Gummidge?' said I.\n\n'Well, I've had a mort of consideration, I do tell you,' returned\nMr. Peggotty, with a perplexed look which gradually cleared as he\nwent on, 'concerning of Missis Gummidge.  You see, wen Missis\nGummidge falls a-thinking of the old 'un, she an't what you may\ncall good company.  Betwixt you and me, Mas'r Davy - and you, ma'am\n- wen Mrs. Gummidge takes to wimicking,' - our old country word for\ncrying, - 'she's liable to be considered to be, by them as didn't\nknow the old 'un, peevish-like.  Now I DID know the old 'un,' said\nMr. Peggotty, 'and I know'd his merits, so I unnerstan' her; but\n'tan't entirely so, you see, with others - nat'rally can't be!'\n\nMy aunt and I both acquiesced.\n\n'Wheerby,' said Mr. Peggotty, 'my sister might - I doen't say she\nwould, but might - find Missis Gummidge give her a leetle trouble\nnow-and-again.  Theerfur 'tan't my intentions to moor Missis\nGummidge 'long with them, but to find a Beein' fur her wheer she\ncan fisherate for herself.'  (A Beein' signifies, in that dialect,\na home, and to fisherate is to provide.) 'Fur which purpose,' said\nMr. Peggotty, 'I means to make her a 'lowance afore I go, as'll\nleave her pretty comfort'ble.  She's the faithfullest of creeturs. \n'Tan't to be expected, of course, at her time of life, and being\nlone and lorn, as the good old Mawther is to be knocked about\naboardship, and in the woods and wilds of a new and fur-away\ncountry.  So that's what I'm a-going to do with her.'\n\nHe forgot nobody.  He thought of everybody's claims and strivings,\nbut his own.\n\n'Em'ly,' he continued, 'will keep along with me - poor child, she's\nsore in need of peace and rest! - until such time as we goes upon\nour voyage.  She'll work at them clothes, as must be made; and I\nhope her troubles will begin to seem longer ago than they was, wen\nshe finds herself once more by her rough but loving uncle.'\n\nMY aunt nodded confirmation of this hope, and imparted great\nsatisfaction to Mr. Peggotty.\n\n'Theer's one thing furder, Mas'r Davy,' said he, putting his hand\nin his breast-pocket, and gravely taking out the little paper\nbundle I had seen before, which he unrolled on the table.  'Theer's\nthese here banknotes - fifty pound, and ten.  To them I wish to add\nthe money as she come away with.  I've asked her about that (but\nnot saying why), and have added of it up.  I an't a scholar.  Would\nyou be so kind as see how 'tis?'\n\nHe handed me, apologetically for his scholarship, a piece of paper,\nand observed me while I looked it over.  It was quite right.\n\n'Thankee, sir,' he said, taking it back.  'This money, if you\ndoen't see objections, Mas'r Davy, I shall put up jest afore I go,\nin a cover directed to him; and put that up in another, directed to\nhis mother.  I shall tell her, in no more wureds than I speak to\nyou, what it's the price on; and that I'm gone, and past receiving\nof it back.'\n\nI told him that I thought it would be right to do so - that I was\nthoroughly convinced it would be, since he felt it to be right.\n\n'I said that theer was on'y one thing furder,' he proceeded with a\ngrave smile, when he had made up his little bundle again, and put\nit in his pocket; 'but theer was two.  I warn't sure in my mind,\nwen I come out this morning, as I could go and break to Ham, of my\nown self, what had so thankfully happened.  So I writ a letter\nwhile I was out, and put it in the post-office, telling of 'em how\nall was as 'tis; and that I should come down tomorrow to unload my\nmind of what little needs a-doing of down theer, and, most-like,\ntake my farewell leave of Yarmouth.'\n\n'And do you wish me to go with you?' said I, seeing that he left\nsomething unsaid.\n\n'If you could do me that kind favour, Mas'r Davy,' he replied.  'I\nknow the sight on you would cheer 'em up a bit.'\n\nMy little Dora being in good spirits, and very desirous that I\nshould go - as I found on talking it over with her - I readily\npledged myself to accompany him in accordance with his wish.  Next\nmorning, consequently, we were on the Yarmouth coach, and again\ntravelling over the old ground.\n\nAs we passed along the familiar street at night - Mr. Peggotty, in\ndespite of all my remonstrances, carrying my bag - I glanced into\nOmer and Joram's shop, and saw my old friend Mr. Omer there,\nsmoking his pipe.  I felt reluctant to be present, when Mr.\nPeggotty first met his sister and Ham; and made Mr. Omer my excuse\nfor lingering behind.\n\n'How is Mr. Omer, after this long time?' said I, going in.\n\nHe fanned away the smoke of his pipe, that he might get a better\nview of me, and soon recognized me with great delight.\n\n'I should get up, sir, to acknowledge such an honour as this\nvisit,' said he, 'only my limbs are rather out of sorts, and I am\nwheeled about.  With the exception of my limbs and my breath,\nhowsoever, I am as hearty as a man can be, I'm thankful to say.'\n\nI congratulated him on his contented looks and his good spirits,\nand saw, now, that his easy-chair went on wheels.\n\n'It's an ingenious thing, ain't it?' he inquired, following the\ndirection of my glance, and polishing the elbow with his arm.  'It\nruns as light as a feather, and tracks as true as a mail-coach. \nBless you, my little Minnie - my grand-daughter you know, Minnie's\nchild - puts her little strength against the back, gives it a\nshove, and away we go, as clever and merry as ever you see\nanything! And I tell you what - it's a most uncommon chair to smoke\na pipe in.'\n\nI never saw such a good old fellow to make the best of a thing, and\nfind out the enjoyment of it, as Mr. Omer.  He was as radiant, as\nif his chair, his asthma, and the failure of his limbs, were the\nvarious branches of a great invention for enhancing the luxury of\na pipe.\n\n'I see more of the world, I can assure you,' said Mr. Omer, 'in\nthis chair, than ever I see out of it.  You'd be surprised at the\nnumber of people that looks in of a day to have a chat.  You really\nwould! There's twice as much in the newspaper, since I've taken to\nthis chair, as there used to be.  As to general reading, dear me,\nwhat a lot of it I do get through! That's what I feel so strong,\nyou know! If it had been my eyes, what should I have done?  If it\nhad been my ears, what should I have done?  Being my limbs, what\ndoes it signify?  Why, my limbs only made my breath shorter when I\nused 'em.  And now, if I want to go out into the street or down to\nthe sands, I've only got to call Dick, Joram's youngest 'prentice,\nand away I go in my own carriage, like the Lord Mayor of London.'\n\nHe half suffocated himself with laughing here.\n\n'Lord bless you!' said Mr. Omer, resuming his pipe, 'a man must\ntake the fat with the lean; that's what he must make up his mind\nto, in this life.  Joram does a fine business.  Ex-cellent\nbusiness!'\n\n'I am very glad to hear it,' said I.\n\n'I knew you would be,' said Mr. Omer.  'And Joram and Minnie are\nlike Valentines.  What more can a man expect?  What's his limbs to\nthat!'\n\nHis supreme contempt for his own limbs, as he sat smoking, was one\nof the pleasantest oddities I have ever encountered.\n\n'And since I've took to general reading, you've took to general\nwriting, eh, sir?' said Mr. Omer, surveying me admiringly.  'What\na lovely work that was of yours! What expressions in it! I read it\nevery word - every word.  And as to feeling sleepy! Not at all!'\n\nI laughingly expressed my satisfaction, but I must confess that I\nthought this association of ideas significant.\n\n'I give you my word and honour, sir,' said Mr. Omer, 'that when I\nlay that book upon the table, and look at it outside; compact in\nthree separate and indiwidual wollumes - one, two, three; I am as\nproud as Punch to think that I once had the honour of being\nconnected with your family.  And dear me, it's a long time ago,\nnow, ain't it?  Over at Blunderstone.  With a pretty little party\nlaid along with the other party.  And you quite a small party then,\nyourself.  Dear, dear!'\n\nI changed the subject by referring to Emily.  After assuring him\nthat I did not forget how interested he had always been in her, and\nhow kindly he had always treated her, I gave him a general account\nof her restoration to her uncle by the aid of Martha; which I knew\nwould please the old man.  He listened with the utmost attention,\nand said, feelingly, when I had done:\n\n'I am rejoiced at it, sir! It's the best news I have heard for many\na day.  Dear, dear, dear! And what's going to be undertook for that\nunfortunate young woman, Martha, now?'\n\n'You touch a point that my thoughts have been dwelling on since\nyesterday,' said I, 'but on which I can give you no information\nyet, Mr. Omer.  Mr. Peggotty has not alluded to it, and I have a\ndelicacy in doing so.  I am sure he has not forgotten it.  He\nforgets nothing that is disinterested and good.'\n\n'Because you know,' said Mr. Omer, taking himself up, where he had\nleft off, 'whatever is done, I should wish to be a member of.  Put\nme down for anything you may consider right, and let me know.  I\nnever could think the girl all bad, and I am glad to find she's\nnot.  So will my daughter Minnie be.  Young women are contradictory\ncreatures in some things - her mother was just the same as her -\nbut their hearts are soft and kind.  It's all show with Minnie,\nabout Martha.  Why she should consider it necessary to make any\nshow, I don't undertake to tell you.  But it's all show, bless you. \nShe'd do her any kindness in private.  So, put me down for whatever\nyou may consider right, will you be so good?  and drop me a line\nwhere to forward it.  Dear me!' said Mr. Omer, 'when a man is\ndrawing on to a time of life, where the two ends of life meet; when\nhe finds himself, however hearty he is, being wheeled about for the\nsecond time, in a speeches of go-cart; he should be over-rejoiced\nto do a kindness if he can.  He wants plenty.  And I don't speak of\nmyself, particular,' said Mr. Omer, 'because, sir, the way I look\nat it is, that we are all drawing on to the bottom of the hill,\nwhatever age we are, on account of time never standing still for a\nsingle moment.  So let us always do a kindness, and be\nover-rejoiced.  To be sure!'\n\nHe knocked the ashes out of his pipe, and put it on a ledge in the\nback of his chair, expressly made for its reception.\n\n'There's Em'ly's cousin, him that she was to have been married to,'\nsaid Mr. Omer, rubbing his hands feebly, 'as fine a fellow as there\nis in Yarmouth! He'll come and talk or read to me, in the evening,\nfor an hour together sometimes.  That's a kindness, I should call\nit! All his life's a kindness.'\n\n'I am going to see him now,' said I.\n\n'Are you?' said Mr. Omer.  'Tell him I was hearty, and sent my\nrespects.  Minnie and Joram's at a ball.  They would be as proud to\nsee you as I am, if they was at home.  Minnie won't hardly go out\nat all, you see, \"on account of father\", as she says.  So I swore\ntonight, that if she didn't go, I'd go to bed at six.  In\nconsequence of which,' Mr. Omer shook himself and his chair with\nlaughter at the success of his device, 'she and Joram's at a ball.'\n\nI shook hands with him, and wished him good night.\n\n'Half a minute, sir,' said Mr. Omer.  'If you was to go without\nseeing my little elephant, you'd lose the best of sights.  You\nnever see such a sight! Minnie!'\nA musical little voice answered, from somewhere upstairs, 'I am\ncoming, grandfather!' and a pretty little girl with long, flaxen,\ncurling hair, soon came running into the shop.\n\n'This is my little elephant, sir,' said Mr. Omer, fondling the\nchild.  'Siamese breed, sir.  Now, little elephant!'\n\nThe little elephant set the door of the parlour open, enabling me\nto see that, in these latter days, it was converted into a bedroom\nfor Mr. Omer who could not be easily conveyed upstairs; and then\nhid her pretty forehead, and tumbled her long hair, against the\nback of Mr. Omer's chair.\n\n'The elephant butts, you know, sir,' said Mr. Omer, winking, 'when\nhe goes at a object.  Once, elephant.  Twice.  Three times!'\n\nAt this signal, the little elephant, with a dexterity that was next\nto marvellous in so small an animal, whisked the chair round with\nMr. Omer in it, and rattled it off, pell-mell, into the parlour,\nwithout touching the door-post: Mr. Omer indescribably enjoying the\nperformance, and looking back at me on the road as if it were the\ntriumphant issue of his life's exertions.\n\nAfter a stroll about the town I went to Ham's house.  Peggotty had\nnow removed here for good; and had let her own house to the\nsuccessor of Mr. Barkis in the carrying business, who had paid her\nvery well for the good-will, cart, and horse.  I believe the very\nsame slow horse that Mr. Barkis drove was still at work.\n\nI found them in the neat kitchen, accompanied by Mrs. Gummidge, who\nhad been fetched from the old boat by Mr. Peggotty himself.  I\ndoubt if she could have been induced to desert her post, by anyone\nelse.  He had evidently told them all.  Both Peggotty and Mrs.\nGummidge had their aprons to their eyes, and Ham had just stepped\nout 'to take a turn on the beach'.  He presently came home, very\nglad to see me; and I hope they were all the better for my being\nthere.  We spoke, with some approach to cheerfulness, of Mr.\nPeggotty's growing rich in a new country, and of the wonders he\nwould describe in his letters.  We said nothing of Emily by name,\nbut distantly referred to her more than once.  Ham was the serenest\nof the party.\n\nBut, Peggotty told me, when she lighted me to a little chamber\nwhere the Crocodile book was lying ready for me on the table, that\nhe always was the same.  She believed (she told me, crying) that he\nwas broken-hearted; though he was as full of courage as of\nsweetness, and worked harder and better than any boat-builder in\nany yard in all that part.  There were times, she said, of an\nevening, when he talked of their old life in the boat-house; and\nthen he mentioned Emily as a child.  But, he never mentioned her as\na woman.\n\nI thought I had read in his face that he would like to speak to me\nalone.  I therefore resolved to put myself in his way next evening,\nas he came home from his work.  Having settled this with myself, I\nfell asleep.  That night, for the first time in all those many\nnights, the candle was taken out of the window, Mr. Peggotty swung\nin his old hammock in the old boat, and the wind murmured with the\nold sound round his head.\n\nAll next day, he was occupied in disposing of his fishing-boat and\ntackle; in packing up, and sending to London by waggon, such of his\nlittle domestic possessions as he thought would be useful to him;\nand in parting with the rest, or bestowing them on Mrs. Gummidge. \nShe was with him all day.  As I had a sorrowful wish to see the old\nplace once more, before it was locked up, I engaged to meet them\nthere in the evening.  But I so arranged it, as that I should meet\nHam first.\n\nIt was easy to come in his way, as I knew where he worked.  I met\nhim at a retired part of the sands, which I knew he would cross,\nand turned back with him, that he might have leisure to speak to me\nif he really wished.  I had not mistaken the expression of his\nface.  We had walked but a little way together, when he said,\nwithout looking at me:\n\n'Mas'r Davy, have you seen her?'\n\n'Only for a moment, when she was in a swoon,' I softly answered.\n\nWe walked a little farther, and he said:\n\n'Mas'r Davy, shall you see her, d'ye think?'\n\n'It would be too painful to her, perhaps,' said I.\n\n'I have thowt of that,' he replied.  'So 'twould, sir, so 'twould.'\n\n'But, Ham,' said I, gently, 'if there is anything that I could\nwrite to her, for you, in case I could not tell it; if there is\nanything you would wish to make known to her through me; I should\nconsider it a sacred trust.'\n\n'I am sure on't.  I thankee, sir, most kind! I think theer is\nsomething I could wish said or wrote.'\n\n'What is it?'\n\nWe walked a little farther in silence, and then he spoke.\n\n''Tan't that I forgive her.  'Tan't that so much.  'Tis more as I\nbeg of her to forgive me, for having pressed my affections upon\nher.  Odd times, I think that if I hadn't had her promise fur to\nmarry me, sir, she was that trustful of me, in a friendly way, that\nshe'd have told me what was struggling in her mind, and would have\ncounselled with me, and I might have saved her.'\n\nI pressed his hand.  'Is that all?'\n'Theer's yet a something else,' he returned, 'if I can say it,\nMas'r Davy.'\n\nWe walked on, farther than we had walked yet, before he spoke\nagain.  He was not crying when he made the pauses I shall express\nby lines.  He was merely collecting himself to speak very plainly.\n\n'I loved her - and I love the mem'ry of her - too deep - to be able\nto lead her to believe of my own self as I'm a happy man.  I could\nonly be happy - by forgetting of her - and I'm afeerd I couldn't\nhardly bear as she should be told I done that.  But if you, being\nso full of learning, Mas'r Davy, could think of anything to say as\nmight bring her to believe I wasn't greatly hurt: still loving of\nher, and mourning for her: anything as might bring her to believe\nas I was not tired of my life, and yet was hoping fur to see her\nwithout blame, wheer the wicked cease from troubling and the weary\nare at rest - anything as would ease her sorrowful mind, and yet\nnot make her think as I could ever marry, or as 'twas possible that\nanyone could ever be to me what she was - I should ask of you to\nsay that - with my prayers for her - that was so dear.'\n\nI pressed his manly hand again, and told him I would charge myself\nto do this as well as I could.\n\n'I thankee, sir,' he answered.  ''Twas kind of you to meet me. \n'Twas kind of you to bear him company down.  Mas'r Davy, I\nunnerstan' very well, though my aunt will come to Lon'on afore they\nsail, and they'll unite once more, that I am not like to see him\nagen.  I fare to feel sure on't.  We doen't say so, but so 'twill\nbe, and better so.  The last you see on him - the very last - will\nyou give him the lovingest duty and thanks of the orphan, as he was\never more than a father to?'\n\nThis I also promised, faithfully.\n\n'I thankee agen, sir,' he said, heartily shaking hands.  'I know\nwheer you're a-going.  Good-bye!'\n\nWith a slight wave of his hand, as though to explain to me that he\ncould not enter the old place, he turned away.  As I looked after\nhis figure, crossing the waste in the moonlight, I saw him turn his\nface towards a strip of silvery light upon the sea, and pass on,\nlooking at it, until he was a shadow in the distance.\n\nThe door of the boat-house stood open when I approached; and, on\nentering, I found it emptied of all its furniture, saving one of\nthe old lockers, on which Mrs. Gummidge, with a basket on her knee,\nwas seated, looking at Mr. Peggotty.  He leaned his elbow on the\nrough chimney-piece, and gazed upon a few expiring embers in the\ngrate; but he raised his head, hopefully, on my coming in, and\nspoke in a cheery manner.\n\n'Come, according to promise, to bid farewell to 't, eh, Mas'r\nDavy?' he said, taking up the candle.  'Bare enough, now, an't it?'\n'Indeed you have made good use of the time,' said I.\n\n'Why, we have not been idle, sir.  Missis Gummidge has worked like\na - I doen't know what Missis Gummidge an't worked like,' said Mr.\nPeggotty, looking at her, at a loss for a sufficiently approving\nsimile.\n\nMrs. Gummidge, leaning on her basket, made no observation.\n\n'Theer's the very locker that you used to sit on, 'long with\nEm'ly!' said Mr. Peggotty, in a whisper.  'I'm a-going to carry it\naway with me, last of all.  And heer's your old little bedroom,\nsee, Mas'r Davy! A'most as bleak tonight, as 'art could wish!'\n\nIn truth, the wind, though it was low, had a solemn sound, and\ncrept around the deserted house with a whispered wailing that was\nvery mournful.  Everything was gone, down to the little mirror with\nthe oyster-shell frame.  I thought of myself, lying here, when that\nfirst great change was being wrought at home.  I thought of the\nblue-eyed child who had enchanted me.  I thought of Steerforth: and\na foolish, fearful fancy came upon me of his being near at hand,\nand liable to be met at any turn.\n\n''Tis like to be long,' said Mr. Peggotty, in a low voice, 'afore\nthe boat finds new tenants.  They look upon 't, down beer, as being\nunfortunate now!'\n\n'Does it belong to anybody in the neighbourhood?' I asked.\n\n'To a mast-maker up town,' said Mr. Peggotty.  'I'm a-going to give\nthe key to him tonight.'\n\nWe looked into the other little room, and came back to Mrs.\nGummidge, sitting on the locker, whom Mr. Peggotty, putting the\nlight on the chimney-piece, requested to rise, that he might carry\nit outside the door before extinguishing the candle.\n\n'Dan'l,' said Mrs. Gummidge, suddenly deserting her basket, and\nclinging to his arm 'my dear Dan'l, the parting words I speak in\nthis house is, I mustn't be left behind.  Doen't ye think of\nleaving me behind, Dan'l! Oh, doen't ye ever do it!'\n\nMr. Peggotty, taken aback, looked from Mrs. Gummidge to me, and\nfrom me to Mrs. Gummidge, as if he had been awakened from a sleep.\n\n'Doen't ye, dearest Dan'l, doen't ye!' cried Mrs. Gummidge,\nfervently.  'Take me 'long with you, Dan'l, take me 'long with you\nand Em'ly! I'll be your servant, constant and trew.  If there's\nslaves in them parts where you're a-going, I'll be bound to you for\none, and happy, but doen't ye leave me behind, Dan'l, that's a\ndeary dear!'\n\n'My good soul,' said Mr. Peggotty, shaking his head, 'you doen't\nknow what a long voyage, and what a hard life 'tis!'\n'Yes, I do, Dan'l! I can guess!' cried Mrs. Gummidge.  'But my\nparting words under this roof is, I shall go into the house and\ndie, if I am not took.  I can dig, Dan'l.  I can work.  I can live\nhard.  I can be loving and patient now - more than you think,\nDan'l, if you'll on'y try me.  I wouldn't touch the 'lowance, not\nif I was dying of want, Dan'l Peggotty; but I'll go with you and\nEm'ly, if you'll on'y let me, to the world's end! I know how 'tis;\nI know you think that I am lone and lorn; but, deary love, 'tan't\nso no more! I ain't sat here, so long, a-watching, and a-thinking\nof your trials, without some good being done me.  Mas'r Davy, speak\nto him for me! I knows his ways, and Em'ly's, and I knows their\nsorrows, and can be a comfort to 'em, some odd times, and labour\nfor 'em allus! Dan'l, deary Dan'l, let me go 'long with you!'\n\nAnd Mrs. Gummidge took his hand, and kissed it with a homely pathos\nand affection, in a homely rapture of devotion and gratitude, that\nhe well deserved.\n\nWe brought the locker out, extinguished the candle, fastened the\ndoor on the outside, and left the old boat close shut up, a dark\nspeck in the cloudy night.  Next day, when we were returning to\nLondon outside the coach, Mrs. Gummidge and her basket were on the\nseat behind, and Mrs. Gummidge was happy.\n\n\n\nCHAPTER 52\nI ASSIST AT AN EXPLOSION\n\n\nWhen the time Mr. Micawber had appointed so mysteriously, was\nwithin four-and-twenty hours of being come, my aunt and I consulted\nhow we should proceed; for my aunt was very unwilling to leave\nDora.  Ah! how easily I carried Dora up and down stairs, now!\n\nWe were disposed, notwithstanding Mr. Micawber's stipulation for my\naunt's attendance, to arrange that she should stay at home, and be\nrepresented by Mr. Dick and me.  In short, we had resolved to take\nthis course, when Dora again unsettled us by declaring that she\nnever would forgive herself, and never would forgive her bad boy,\nif my aunt remained behind, on any pretence.\n\n'I won't speak to you,' said Dora, shaking her curls at my aunt. \n'I'll be disagreeable! I'll make Jip bark at you all day.  I shall\nbe sure that you really are a cross old thing, if you don't go!'\n\n'Tut, Blossom!' laughed my aunt.  'You know you can't do without\nme!'\n\n'Yes, I can,' said Dora.  'You are no use to me at all.  You never\nrun up and down stairs for me, all day long.  You never sit and\ntell me stories about Doady, when his shoes were worn out, and he\nwas covered with dust - oh, what a poor little mite of a fellow!\nYou never do anything at all to please me, do you, dear?' Dora made\nhaste to kiss my aunt, and say, 'Yes, you do! I'm only joking!'-\nlest my aunt should think she really meant it.\n\n'But, aunt,' said Dora, coaxingly, 'now listen.  You must go.  I\nshall tease you, 'till you let me have my own way about it.  I\nshall lead my naughty boy such a life, if he don't make you go.  I\nshall make myself so disagreeable - and so will Jip! You'll wish\nyou had gone, like a good thing, for ever and ever so long, if you\ndon't go.  Besides,' said Dora, putting back her hair, and looking\nwonderingly at my aunt and me, 'why shouldn't you both go?  I am\nnot very ill indeed.  Am I?'\n\n'Why, what a question!' cried my aunt.\n\n'What a fancy!' said I.\n\n'Yes! I know I am a silly little thing!' said Dora, slowly looking\nfrom one of us to the other, and then putting up her pretty lips to\nkiss us as she lay upon her couch.  'Well, then, you must both go,\nor I shall not believe you; and then I shall cry!'\n\nI saw, in my aunt's face, that she began to give way now, and Dora\nbrightened again, as she saw it too.\n\n'You'll come back with so much to tell me, that it'll take at least\na week to make me understand!' said Dora.  'Because I know I shan't\nunderstand, for a length of time, if there's any business in it. \nAnd there's sure to be some business in it! If there's anything to\nadd up, besides, I don't know when I shall make it out; and my bad\nboy will look so miserable all the time.  There! Now you'll go,\nwon't you?  You'll only be gone one night, and Jip will take care\nof me while you are gone.  Doady will carry me upstairs before you\ngo, and I won't come down again till you come back; and you shall\ntake Agnes a dreadfully scolding letter from me, because she has\nnever been to see us!'\n\nWe agreed, without any more consultation, that we would both go,\nand that Dora was a little Impostor, who feigned to be rather\nunwell, because she liked to be petted.  She was greatly pleased,\nand very merry; and we four, that is to say, my aunt, Mr. Dick,\nTraddles, and I, went down to Canterbury by the Dover mail that\nnight.\n\nAt the hotel where Mr. Micawber had requested us to await him,\nwhich we got into, with some trouble, in the middle of the night,\nI found a letter, importing that he would appear in the morning\npunctually at half past nine.  After which, we went shivering, at\nthat uncomfortable hour, to our respective beds, through various\nclose passages; which smelt as if they had been steeped, for ages,\nin a solution of soup and stables.\n\nEarly in the morning, I sauntered through the dear old tranquil\nstreets, and again mingled with the shadows of the venerable\ngateways and churches.  The rooks were sailing about the cathedral\ntowers; and the towers themselves, overlooking many a long\nunaltered mile of the rich country and its pleasant streams, were\ncutting the bright morning air, as if there were no such thing as\nchange on earth.  Yet the bells, when they sounded, told me\nsorrowfully of change in everything; told me of their own age, and\nmy pretty Dora's youth; and of the many, never old, who had lived\nand loved and died, while the reverberations of the bells had\nhummed through the rusty armour of the Black Prince hanging up\nwithin, and, motes upon the deep of Time, had lost themselves in\nair, as circles do in water.\n\nI looked at the old house from the corner of the street, but did\nnot go nearer to it, lest, being observed, I might unwittingly do\nany harm to the design I had come to aid.  The early sun was\nstriking edgewise on its gables and lattice-windows, touching them\nwith gold; and some beams of its old peace seemed to touch my\nheart.\n\nI strolled into the country for an hour or so, and then returned by\nthe main street, which in the interval had shaken off its last\nnight's sleep.  Among those who were stirring in the shops, I saw\nmy ancient enemy the butcher, now advanced to top-boots and a baby,\nand in business for himself.  He was nursing the baby, and appeared\nto be a benignant member of society.\n\nWe all became very anxious and impatient, when we sat down to\nbreakfast.  As it approached nearer and nearer to half past nine\no'clock, our restless expectation of Mr. Micawber increased.  At\nlast we made no more pretence of attending to the meal, which,\nexcept with Mr. Dick, had been a mere form from the first; but my\naunt walked up and down the room, Traddles sat upon the sofa\naffecting to read the paper with his eyes on the ceiling; and I\nlooked out of the window to give early notice of Mr. Micawber's\ncoming.  Nor had I long to watch, for, at the first chime of the\nhalf hour, he appeared in the street.\n\n'Here he is,' said I, 'and not in his legal attire!'\n\nMy aunt tied the strings of her bonnet (she had come down to\nbreakfast in it), and put on her shawl, as if she were ready for\nanything that was resolute and uncompromising.  Traddles buttoned\nhis coat with a determined air.  Mr. Dick, disturbed by these\nformidable appearances, but feeling it necessary to imitate them,\npulled his hat, with both hands, as firmly over his ears as he\npossibly could; and instantly took it off again, to welcome Mr.\nMicawber.\n\n'Gentlemen, and madam,' said Mr. Micawber, 'good morning! My dear\nsir,' to Mr. Dick, who shook hands with him violently, 'you are\nextremely good.'\n\n'Have you breakfasted?' said Mr. Dick.  'Have a chop!'\n\n'Not for the world, my good sir!' cried Mr. Micawber, stopping him\non his way to the bell; 'appetite and myself, Mr. Dixon, have long\nbeen strangers.'\n\nMr. Dixon was so well pleased with his new name, and appeared to\nthink it so obliging in Mr. Micawber to confer it upon him, that he\nshook hands with him again, and laughed rather childishly.\n\n'Dick,' said my aunt, 'attention!'\n\nMr. Dick recovered himself, with a blush.\n\n'Now, sir,' said my aunt to Mr. Micawber, as she put on her gloves,\n'we are ready for Mount Vesuvius, or anything else, as soon as YOU\nplease.'\n\n'Madam,' returned Mr. Micawber, 'I trust you will shortly witness\nan eruption.  Mr. Traddles, I have your permission, I believe, to\nmention here that we have been in communication together?'\n\n'It is undoubtedly the fact, Copperfield,' said Traddles, to whom\nI looked in surprise.  'Mr. Micawber has consulted me in reference\nto what he has in contemplation; and I have advised him to the best\nof my judgement.'\n\n'Unless I deceive myself, Mr. Traddles,' pursued Mr. Micawber,\n'what I contemplate is a disclosure of an important nature.'\n\n'Highly so,' said Traddles.\n\n'Perhaps, under such circumstances, madam and gentlemen,' said Mr.\nMicawber, 'you will do me the favour to submit yourselves, for the\nmoment, to the direction of one who, however unworthy to be\nregarded in any other light but as a Waif and Stray upon the shore\nof human nature, is still your fellow-man, though crushed out of\nhis original form by individual errors, and the accumulative force\nof a combination of circumstances?'\n\n'We have perfect confidence in you, Mr. Micawber,' said I, 'and\nwill do what you please.'\n\n'Mr. Copperfield,' returned Mr. Micawber, 'your confidence is not,\nat the existing juncture, ill-bestowed.  I would beg to be allowed\na start of five minutes by the clock; and then to receive the\npresent company, inquiring for Miss Wickfield, at the office of\nWickfield and Heep, whose Stipendiary I am.'\n\nMy aunt and I looked at Traddles, who nodded his approval.\n\n'I have no more,' observed Mr. Micawber, 'to say at present.'\n\nWith which, to my infinite surprise, he included us all in a\ncomprehensive bow, and disappeared; his manner being extremely\ndistant, and his face extremely pale.\n\nTraddles only smiled, and shook his head (with his hair standing\nupright on the top of it), when I looked to him for an explanation;\nso I took out my watch, and, as a last resource, counted off the\nfive minutes.  My aunt, with her own watch in her hand, did the\nlike.  When the time was expired, Traddles gave her his arm; and we\nall went out together to the old house, without saying one word on\nthe way.\n\nWe found Mr. Micawber at his desk, in the turret office on the\nground floor, either writing, or pretending to write, hard.  The\nlarge office-ruler was stuck into his waistcoat, and was not so\nwell concealed but that a foot or more of that instrument protruded\nfrom his bosom, like a new kind of shirt-frill.\n\nAs it appeared to me that I was expected to speak, I said aloud:\n\n'How do you do, Mr. Micawber?'\n\n'Mr. Copperfield,' said Mr. Micawber, gravely, 'I hope I see you\nwell?'\n\n'Is Miss Wickfield at home?' said I.\n\n'Mr. Wickfield is unwell in bed, sir, of a rheumatic fever,' he\nreturned; 'but Miss Wickfield, I have no doubt, will be happy to\nsee old friends.  Will you walk in, sir?'\n\nHe preceded us to the dining-room - the first room I had entered in\nthat house - and flinging open the door of Mr. Wickfield's former\noffice, said, in a sonorous voice:\n\n'Miss Trotwood, Mr. David Copperfield, Mr. Thomas Traddles, and Mr.\nDixon!'\n\nI had not seen Uriah Heep since the time of the blow.  Our visit\nastonished him, evidently; not the less, I dare say, because it\nastonished ourselves.  He did not gather his eyebrows together, for\nhe had none worth mentioning; but he frowned to that degree that he\nalmost closed his small eyes, while the hurried raising of his\ngrisly hand to his chin betrayed some trepidation or surprise. \nThis was only when we were in the act of entering his room, and\nwhen I caught a glance at him over my aunt's shoulder.  A moment\nafterwards, he was as fawning and as humble as ever.\n\n'Well, I am sure,' he said.  'This is indeed an unexpected\npleasure! To have, as I may say, all friends round St. Paul's at\nonce, is a treat unlooked for! Mr. Copperfield, I hope I see you\nwell, and - if I may umbly express myself so - friendly towards\nthem as is ever your friends, whether or not.  Mrs. Copperfield,\nsir, I hope she's getting on.  We have been made quite uneasy by\nthe poor accounts we have had of her state, lately, I do assure\nyou.'\n\nI felt ashamed to let him take my hand, but I did not know yet what\nelse to do.\n\n'Things are changed in this office, Miss Trotwood, since I was an\numble clerk, and held your pony; ain't they?' said Uriah, with his\nsickliest smile.  'But I am not changed, Miss Trotwood.'\n\n'Well, sir,' returned my aunt, 'to tell you the truth, I think you\nare pretty constant to the promise of your youth; if that's any\nsatisfaction to you.'\n\n'Thank you, Miss Trotwood,' said Uriah, writhing in his ungainly\nmanner, 'for your good opinion! Micawber, tell 'em to let Miss\nAgnes know - and mother.  Mother will be quite in a state, when she\nsees the present company!' said Uriah, setting chairs.\n\n'You are not busy, Mr. Heep?' said Traddles, whose eye the cunning\nred eye accidentally caught, as it at once scrutinized and evaded\nus.\n\n'No, Mr. Traddles,' replied Uriah, resuming his official seat, and\nsqueezing his bony hands, laid palm to palm between his bony knees. \n'Not so much so as I could wish.  But lawyers, sharks, and leeches,\nare not easily satisfied, you know! Not but what myself and\nMicawber have our hands pretty full, in general, on account of Mr.\nWickfield's being hardly fit for any occupation, sir.  But it's a\npleasure as well as a duty, I am sure, to work for him.  You've not\nbeen intimate with Mr. Wickfield, I think, Mr. Traddles?  I believe\nI've only had the honour of seeing you once myself?'\n\n'No, I have not been intimate with Mr. Wickfield,' returned\nTraddles; 'or I might perhaps have waited on you long ago, Mr.\nHeep.'\n\nThere was something in the tone of this reply, which made Uriah\nlook at the speaker again, with a very sinister and suspicious\nexpression.  But, seeing only Traddles, with his good-natured face,\nsimple manner, and hair on end, he dismissed it as he replied, with\na jerk of his whole body, but especially his throat:\n\n'I am sorry for that, Mr. Traddles.  You would have admired him as\nmuch as we all do.  His little failings would only have endeared\nhim to you the more.  But if you would like to hear my\nfellow-partner eloquently spoken of, I should refer you to\nCopperfield.  The family is a subject he's very strong upon, if you\nnever heard him.'\n\nI was prevented from disclaiming the compliment (if I should have\ndone so, in any case), by the entrance of Agnes, now ushered in by\nMr. Micawber.  She was not quite so self-possessed as usual, I\nthought; and had evidently undergone anxiety and fatigue.  But her\nearnest cordiality, and her quiet beauty, shone with the gentler\nlustre for it.\n\nI saw Uriah watch her while she greeted us; and he reminded me of\nan ugly and rebellious genie watching a good spirit.  In the\nmeanwhile, some slight sign passed between Mr. Micawber and\nTraddles; and Traddles, unobserved except by me, went out.\n\n'Don't wait, Micawber,' said Uriah.\n\nMr. Micawber, with his hand upon the ruler in his breast, stood\nerect before the door, most unmistakably contemplating one of his\nfellow-men, and that man his employer.\n\n'What are you waiting for?' said Uriah.  'Micawber! did you hear me\ntell you not to wait?'\n\n'Yes!' replied the immovable Mr. Micawber.\n\n'Then why DO you wait?' said Uriah.\n\n'Because I - in short, choose,' replied Mr. Micawber, with a burst.\n\nUriah's cheeks lost colour, and an unwholesome paleness, still\nfaintly tinged by his pervading red, overspread them.  He looked at\nMr. Micawber attentively, with his whole face breathing short and\nquick in every feature.\n\n'You are a dissipated fellow, as all the world knows,' he said,\nwith an effort at a smile, 'and I am afraid you'll oblige me to get\nrid of you.  Go along! I'll talk to you presently.'\n\n'If there is a scoundrel on this earth,' said Mr. Micawber,\nsuddenly breaking out again with the utmost vehemence, 'with whom\nI have already talked too much, that scoundrel's name is - HEEP!'\n\nUriah fell back, as if he had been struck or stung.  Looking slowly\nround upon us with the darkest and wickedest expression that his\nface could wear, he said, in a lower voice:\n\n'Oho! This is a conspiracy! You have met here by appointment! You\nare playing Booty with my clerk, are you, Copperfield?  Now, take\ncare.  You'll make nothing of this.  We understand each other, you\nand me.  There's no love between us.  You were always a puppy with\na proud stomach, from your first coming here; and you envy me my\nrise, do you?  None of your plots against me; I'll counterplot you!\nMicawber, you be off.  I'll talk to you presently.'\n\n'Mr. Micawber,' said I, 'there is a sudden change in this fellow. \nin more respects than the extraordinary one of his speaking the\ntruth in one particular, which assures me that he is brought to\nbay.  Deal with him as he deserves!'\n\n'You are a precious set of people, ain't you?' said Uriah, in the\nsame low voice, and breaking out into a clammy heat, which he wiped\nfrom his forehead, with his long lean hand, 'to buy over my clerk,\nwho is the very scum of society, - as you yourself were,\nCopperfield, you know it, before anyone had charity on you, - to\ndefame me with his lies?  Miss Trotwood, you had better stop this;\nor I'll stop your husband shorter than will be pleasant to you.  I\nwon't know your story professionally, for nothing, old lady! Miss\nWickfield, if you have any love for your father, you had better not\njoin that gang.  I'll ruin him, if you do.  Now, come! I have got\nsome of you under the harrow.  Think twice, before it goes over\nyou.  Think twice, you, Micawber, if you don't want to be crushed. \nI recommend you to take yourself off, and be talked to presently,\nyou fool! while there's time to retreat.  Where's mother?' he said,\nsuddenly appearing to notice, with alarm, the absence of Traddles,\nand pulling down the bell-rope.  'Fine doings in a person's own\nhouse!'\n\n'Mrs. Heep is here, sir,' said Traddles, returning with that worthy\nmother of a worthy son.  'I have taken the liberty of making myself\nknown to her.'\n\n'Who are you to make yourself known?' retorted Uriah.  'And what do\nyou want here?'\n\n'I am the agent and friend of Mr. Wickfield, sir,' said Traddles,\nin a composed and business-like way.  'And I have a power of\nattorney from him in my pocket, to act for him in all matters.'\n\n'The old ass has drunk himself into a state of dotage,' said Uriah,\nturning uglier than before, 'and it has been got from him by\nfraud!'\n\n'Something has been got from him by fraud, I know,' returned\nTraddles quietly; 'and so do you, Mr. Heep.  We will refer that\nquestion, if you please, to Mr. Micawber.'\n\n'Ury -!' Mrs. Heep began, with an anxious gesture.\n\n'YOU hold your tongue, mother,' he returned; 'least said, soonest\nmended.'\n\n'But, my Ury -'\n\n'Will you hold your tongue, mother, and leave it to me?'\n\nThough I had long known that his servility was false, and all his\npretences knavish and hollow, I had had no adequate conception of\nthe extent of his hypocrisy, until I now saw him with his mask off. \nThe suddenness with which he dropped it, when he perceived that it\nwas useless to him; the malice, insolence, and hatred, he revealed;\nthe leer with which he exulted, even at this moment, in the evil he\nhad done - all this time being desperate too, and at his wits' end\nfor the means of getting the better of us - though perfectly\nconsistent with the experience I had of him, at first took even me\nby surprise, who had known him so long, and disliked him so\nheartily.\n\nI say nothing of the look he conferred on me, as he stood eyeing\nus, one after another; for I had always understood that he hated\nme, and I remembered the marks of my hand upon his cheek.  But when\nhis eyes passed on to Agnes, and I saw the rage with which he felt\nhis power over her slipping away, and the exhibition, in their\ndisappointment, of the odious passions that had led him to aspire\nto one whose virtues he could never appreciate or care for, I was\nshocked by the mere thought of her having lived, an hour, within\nsight of such a man.\n\nAfter some rubbing of the lower part of his face, and some looking\nat us with those bad eyes, over his grisly fingers, he made one\nmore address to me, half whining, and half abusive.\n\n'You think it justifiable, do you, Copperfield, you who pride\nyourself so much on your honour and all the rest of it, to sneak\nabout my place, eaves-dropping with my clerk?  If it had been ME,\nI shouldn't have wondered; for I don't make myself out a gentleman\n(though I never was in the streets either, as you were, according\nto Micawber), but being you! - And you're not afraid of doing this,\neither?  You don't think at all of what I shall do, in return; or\nof getting yourself into trouble for conspiracy and so forth?  Very\nwell.  We shall see! Mr. What's-your-name, you were going to refer\nsome question to Micawber.  There's your referee.  Why don't you\nmake him speak?  He has learnt his lesson, I see.'\n\nSeeing that what he said had no effect on me or any of us, he sat\non the edge of his table with his hands in his pockets, and one of\nhis splay feet twisted round the other leg, waiting doggedly for\nwhat might follow.\n\nMr. Micawber, whose impetuosity I had restrained thus far with the\ngreatest difficulty, and who had repeatedly interposed with the\nfirst syllable Of SCOUN-drel! without getting to the second, now\nburst forward, drew the ruler from his breast (apparently as a\ndefensive weapon), and produced from his pocket a foolscap\ndocument, folded in the form of a large letter.  Opening this\npacket, with his old flourish, and glancing at the contents, as if\nhe cherished an artistic admiration of their style of composition,\nhe began to read as follows:\n\n\n'\"Dear Miss Trotwood and gentlemen -\"'\n\n'Bless and save the man!' exclaimed my aunt in a low voice.  'He'd\nwrite letters by the ream, if it was a capital offence!'\n\nMr. Micawber, without hearing her, went on.\n\n'\"In appearing before you to denounce probably the most consummate\nVillain that has ever existed,\"' Mr. Micawber, without looking off\nthe letter, pointed the ruler, like a ghostly truncheon, at Uriah\nHeep, '\"I ask no consideration for myself.  The victim, from my\ncradle, of pecuniary liabilities to which I have been unable to\nrespond, I have ever been the sport and toy of debasing\ncircumstances.  Ignominy, Want, Despair, and Madness, have,\ncollectively or separately, been the attendants of my career.\"'\n\nThe relish with which Mr. Micawber described himself as a prey to\nthese dismal calamities, was only to be equalled by the emphasis\nwith which he read his letter; and the kind of homage he rendered\nto it with a roll of his head, when he thought he had hit a\nsentence very hard indeed.\n\n'\"In an accumulation of Ignominy, Want, Despair, and Madness, I\nentered the office - or, as our lively neighbour the Gaul would\nterm it, the Bureau - of the Firm, nominally conducted under the\nappellation of Wickfield and - HEEP, but in reality, wielded by -\nHEEP alone.  HEEP, and only HEEP, is the mainspring of that\nmachine.  HEEP, and only HEEP, is the Forger and the Cheat.\"'\n\nUriah, more blue than white at these words, made a dart at the\nletter, as if to tear it in pieces.  Mr. Micawber, with a perfect\nmiracle of dexterity or luck, caught his advancing knuckles with\nthe ruler, and disabled his right hand.  It dropped at the wrist,\nas if it were broken.  The blow sounded as if it had fallen on\nwood.\n\n'The Devil take you!' said Uriah, writhing in a new way with pain. \n'I'll be even with you.'\n\n'Approach me again, you - you - you HEEP of infamy,' gasped Mr.\nMicawber, 'and if your head is human, I'll break it.  Come on, come\non! '\n\nI think I never saw anything more ridiculous - I was sensible of\nit, even at the time - than Mr. Micawber making broad-sword guards\nwith the ruler, and crying, 'Come on!' while Traddles and I pushed\nhim back into a corner, from which, as often as we got him into it,\nhe persisted in emerging again.\n\nHis enemy, muttering to himself, after wringing his wounded hand\nfor sometime, slowly drew off his neck-kerchief and bound it up;\nthen held it in his other hand, and sat upon his table with his\nsullen face looking down.\n\nMr. Micawber, when he was sufficiently cool, proceeded with his\nletter.\n\n'\"The stipendiary emoluments in consideration of which I entered\ninto the service of - HEEP,\"' always pausing before that word and\nuttering it with astonishing vigour, '\"were not defined, beyond the\npittance of twenty-two shillings and six per week.  The rest was\nleft contingent on the value of my professional exertions; in other\nand more expressive words, on the baseness of my nature, the\ncupidity of my motives, the poverty of my family, the general moral\n(or rather immoral) resemblance between myself and - HEEP.  Need I\nsay, that it soon became necessary for me to solicit from - HEEP -\npecuniary advances towards the support of Mrs. Micawber, and our\nblighted but rising family?  Need I say that this necessity had\nbeen foreseen by - HEEP?  That those advances were secured by\nI.O.U.'s and other similar acknowledgements, known to the legal\ninstitutions of this country?  And that I thus became immeshed in\nthe web he had spun for my reception?\"'\n\nMr. Micawber's enjoyment of his epistolary powers, in describing\nthis unfortunate state of things, really seemed to outweigh any\npain or anxiety that the reality could have caused him.  He read\non:\n\n'\"Then it was that - HEEP - began to favour me with just so much of\nhis confidence, as was necessary to the discharge of his infernal\nbusiness.  Then it was that I began, if I may so Shakespearianly\nexpress myself, to dwindle, peak, and pine.  I found that my\nservices were constantly called into requisition for the\nfalsification of business, and the mystification of an individual\nwhom I will designate as Mr. W.  That Mr. W. was imposed upon, kept\nin ignorance, and deluded, in every possible way; yet, that all\nthis while, the ruffian - HEEP - was professing unbounded gratitude\nto, and unbounded friendship for, that much-abused gentleman.  This\nwas bad enough; but, as the philosophic Dane observes, with that\nuniversal applicability which distinguishes the illustrious\nornament of the Elizabethan Era, worse remains behind!\"'\n\nMr. Micawber was so very much struck by this happy rounding off\nwith a quotation, that he indulged himself, and us, with a second\nreading of the sentence, under pretence of having lost his place.\n\n'\"It is not my intention,\"' he continued reading on, '\"to enter on\na detailed list, within the compass of the present epistle (though\nit is ready elsewhere), of the various malpractices of a minor\nnature, affecting the individual whom I have denominated Mr. W., to\nwhich I have been a tacitly consenting party.  My object, when the\ncontest within myself between stipend and no stipend, baker and no\nbaker, existence and non-existence, ceased, was to take advantage\nof my opportunities to discover and expose the major malpractices\ncommitted, to that gentleman's grievous wrong and injury, by -\nHEEP.  Stimulated by the silent monitor within, and by a no less\ntouching and appealing monitor without - to whom I will briefly\nrefer as Miss W. - I entered on a not unlaborious task of\nclandestine investigation, protracted - now, to the best of my\nknowledge, information, and belief, over a period exceeding twelve\ncalendar months.\"'\n\nHe read this passage as if it were from an Act of Parliament; and\nappeared majestically refreshed by the sound of the words.\n\n'\"My charges against - HEEP,\"' he read on, glancing at him, and\ndrawing the ruler into a convenient position under his left arm, in\ncase of need, '\"are as follows.\"'\n\nWe all held our breath, I think.  I am sure Uriah held his.\n\n'\"First,\"' said Mr. Micawber, '\"When Mr. W.'s faculties and memory\nfor business became, through causes into which it is not necessary\nor expedient for me to enter, weakened and confused, - HEEP -\ndesignedly perplexed and complicated the whole of the official\ntransactions.  When Mr. W. was least fit to enter on business, -\nHEEP was always at hand to force him to enter on it.  He obtained\nMr. W.'s signature under such circumstances to documents of\nimportance, representing them to be other documents of no\nimportance.  He induced Mr. W. to empower him to draw out, thus,\none particular sum of trust-money, amounting to twelve six\nfourteen, two and nine, and employed it to meet pretended business\ncharges and deficiencies which were either already provided for, or\nhad never really existed.  He gave this proceeding, throughout, the\nappearance of having originated in Mr. W.'s own dishonest\nintention, and of having been accomplished by Mr. W.'s own\ndishonest act; and has used it, ever since, to torture and\nconstrain him.\"'\n\n'You shall prove this, you Copperfield!' said Uriah, with a\nthreatening shake of the head.  'All in good time!'\n\n'Ask - HEEP - Mr. Traddles, who lived in his house after him,' said\nMr. Micawber, breaking off from the letter; 'will you?'\n\n'The fool himself- and lives there now,' said Uriah, disdainfully.\n\n'Ask - HEEP - if he ever kept a pocket-book in that house,' said\nMr. Micawber; 'will you?'\n\nI saw Uriah's lank hand stop, involuntarily, in the scraping of his\nchin.\n\n'Or ask him,' said Mr. Micawber,'if he ever burnt one there.  If he\nsays yes, and asks you where the ashes are, refer him to Wilkins\nMicawber, and he will hear of something not at all to his\nadvantage!'\n\nThe triumphant flourish with which Mr. Micawber delivered himself\nof these words, had a powerful effect in alarming the mother; who\ncried out, in much agitation:\n\n'Ury, Ury! Be umble, and make terms, my dear!'\n\n'Mother!' he retorted, 'will you keep quiet?  You're in a fright,\nand don't know what you say or mean.  Umble!' he repeated, looking\nat me, with a snarl; 'I've umbled some of 'em for a pretty long\ntime back, umble as I was!'\n\nMr. Micawber, genteelly adjusting his chin in his cravat, presently\nproceeded with his composition.\n\n'\"Second.  HEEP has, on several occasions, to the best of my\nknowledge, information, and belief -\"'\n\n'But that won't do,' muttered Uriah, relieved.  'Mother, you keep\nquiet.'\n\n'We will endeavour to provide something that WILL do, and do for\nyou finally, sir, very shortly,' replied Mr. Micawber.\n\n'\"Second.  HEEP has, on several occasions, to the best of my\nknowledge, information, and belief, systematically forged, to\nvarious entries, books, and documents, the signature of Mr. W.; and\nhas distinctly done so in one instance, capable of proof by me.  To\nwit, in manner following, that is to say:\"'\n\nAgain, Mr. Micawber had a relish in this formal piling up of words,\nwhich, however ludicrously displayed in his case, was, I must say,\nnot at all peculiar to him.  I have observed it, in the course of\nmy life, in numbers of men.  It seems to me to be a general rule. \nIn the taking of legal oaths, for instance, deponents seem to enjoy\nthemselves mightily when they come to several good words in\nsuccession, for the expression of one idea; as, that they utterly\ndetest, abominate, and abjure, or so forth; and the old anathemas\nwere made relishing on the same principle.  We talk about the\ntyranny of words, but we like to tyrannize over them too; we are\nfond of having a large superfluous establishment of words to wait\nupon us on great occasions; we think it looks important, and sounds\nwell.  As we are not particular about the meaning of our liveries\non state occasions, if they be but fine and numerous enough, so,\nthe meaning or necessity of our words is a secondary consideration,\nif there be but a great parade of them.  And as individuals get\ninto trouble by making too great a show of liveries, or as slaves\nwhen they are too numerous rise against their masters, so I think\nI could mention a nation that has got into many great difficulties,\nand will get into many greater, from maintaining too large a\nretinue of words.\n\nMr. Micawber read on, almost smacking his lips:\n\n'\"To wit, in manner following, that is to say.  Mr. W. being\ninfirm, and it being within the bounds of probability that his\ndecease might lead to some discoveries, and to the downfall of -\nHEEP'S - power over the W. family, - as I, Wilkins Micawber, the\nundersigned, assume - unless the filial affection of his daughter\ncould be secretly influenced from allowing any investigation of the\npartnership affairs to be ever made, the said - HEEP - deemed it\nexpedient to have a bond ready by him, as from Mr. W., for the\nbefore-mentioned sum of twelve six fourteen, two and nine, with\ninterest, stated therein to have been advanced by - HEEP - to Mr.\nW. to save Mr. W. from dishonour; though really the sum was never\nadvanced by him, and has long been replaced.  The signatures to\nthis instrument purporting to be executed by Mr. W. and attested by\nWilkins Micawber, are forgeries by - HEEP.  I have, in my\npossession, in his hand and pocket-book, several similar imitations\nof Mr. W.'s signature, here and there defaced by fire, but legible\nto anyone.  I never attested any such document.  And I have the\ndocument itself, in my possession.\"'\nUriah Heep, with a start, took out of his pocket a bunch of keys,\nand opened a certain drawer; then, suddenly bethought himself of\nwhat he was about, and turned again towards us, without looking in\nit.\n\n'\"And I have the document,\"' Mr. Micawber read again, looking about\nas if it were the text of a sermon, '\"in my possession, - that is\nto say, I had, early this morning, when this was written, but have\nsince relinquished it to Mr. Traddles.\"'\n\n'It is quite true,' assented Traddles.\n\n'Ury, Ury!' cried the mother, 'be umble and make terms.  I know my\nson will be umble, gentlemen, if you'll give him time to think. \nMr. Copperfield, I'm sure you know that he was always very umble,\nsir!'\n\nIt was singular to see how the mother still held to the old trick,\nwhen the son had abandoned it as useless.\n\n'Mother,' he said, with an impatient bite at the handkerchief in\nwhich his hand was wrapped, 'you had better take and fire a loaded\ngun at me.'\n\n'But I love you, Ury,' cried Mrs. Heep.  And I have no doubt she\ndid; or that he loved her, however strange it may appear; though,\nto be sure, they were a congenial couple.  'And I can't bear to\nhear you provoking the gentlemen, and endangering of yourself more. \nI told the gentleman at first, when he told me upstairs it was come\nto light, that I would answer for your being umble, and making\namends.  Oh, see how umble I am, gentlemen, and don't mind him!'\n\n'Why, there's Copperfield, mother,' he angrily retorted, pointing\nhis lean finger at me, against whom all his animosity was levelled,\nas the prime mover in the discovery; and I did not undeceive him;\n'there's Copperfield, would have given you a hundred pound to say\nless than you've blurted out!'\n\n'I can't help it, Ury,' cried his mother.  'I can't see you running\ninto danger, through carrying your head so high.  Better be umble,\nas you always was.'\n\nHe remained for a little, biting the handkerchief, and then said to\nme with a scowl:\n\n'What more have you got to bring forward?  If anything, go on with\nit.  What do you look at me for?'\n\nMr. Micawber promptly resumed his letter, glad to revert to a\nperformance with which he was so highly satisfied.\n\n'\"Third.  And last.  I am now in a condition to show, by - HEEP'S\n- false books, and - HEEP'S - real memoranda, beginning with the\npartially destroyed pocket-book (which I was unable to comprehend,\nat the time of its accidental discovery by Mrs. Micawber, on our\ntaking possession of our present abode, in the locker or bin\ndevoted to the reception of the ashes calcined on our domestic\nhearth), that the weaknesses, the faults, the very virtues, the\nparental affections, and the sense of honour, of the unhappy Mr. W.\nhave been for years acted on by, and warped to the base purposes of\n- HEEP.  That Mr. W. has been for years deluded and plundered, in\nevery conceivable manner, to the pecuniary aggrandisement of the\navaricious, false, and grasping - HEEP.  That the engrossing object\nof- HEEP - was, next to gain, to subdue Mr. and Miss W. (of his\nulterior views in reference to the latter I say nothing) entirely\nto himself.  That his last act, completed but a few months since,\nwas to induce Mr. W. to execute a relinquishment of his share in\nthe partnership, and even a bill of sale on the very furniture of\nhis house, in consideration of a certain annuity, to be well and\ntruly paid by - HEEP - on the four common quarter-days in each and\nevery year.  That these meshes; beginning with alarming and\nfalsified accounts of the estate of which Mr. W. is the receiver,\nat a period when Mr. W. had launched into imprudent and ill-judged\nspeculations, and may not have had the money, for which he was\nmorally and legally responsible, in hand; going on with pretended\nborrowings of money at enormous interest, really coming from - HEEP\n- and by - HEEP - fraudulently obtained or withheld from Mr. W.\nhimself, on pretence of such speculations or otherwise; perpetuated\nby a miscellaneous catalogue of unscrupulous chicaneries -\ngradually thickened, until the unhappy Mr. W. could see no world\nbeyond.  Bankrupt, as he believed, alike in circumstances, in all\nother hope, and in honour, his sole reliance was upon the monster\nin the garb of man,\"' - Mr. Micawber made a good deal of this, as\na new turn of expression, - '\"who, by making himself necessary to\nhim, had achieved his destruction.  All this I undertake to show. \nProbably much more!\"'\n\nI whispered a few words to Agnes, who was weeping, half joyfully,\nhalf sorrowfully, at my side; and there was a movement among us, as\nif Mr. Micawber had finished.  He said, with exceeding gravity,\n'Pardon me,' and proceeded, with a mixture of the lowest spirits\nand the most intense enjoyment, to the peroration of his letter.\n\n'\"I have now concluded.  It merely remains for me to substantiate\nthese accusations; and then, with my ill-starred family, to\ndisappear from the landscape on which we appear to be an\nencumbrance.  That is soon done.  It may be reasonably inferred\nthat our baby will first expire of inanition, as being the frailest\nmember of our circle; and that our twins will follow next in order. \nSo be it! For myself, my Canterbury Pilgrimage has done much;\nimprisonment on civil process, and want, will soon do more.  I\ntrust that the labour and hazard of an investigation - of which the\nsmallest results have been slowly pieced together, in the pressure\nof arduous avocations, under grinding penurious apprehensions, at\nrise of morn, at dewy eve, in the shadows of night, under the\nwatchful eye of one whom it were superfluous to call Demon -\ncombined with the struggle of parental Poverty to turn it, when\ncompleted, to the right account, may be as the sprinkling of a few\ndrops of sweet water on my funeral pyre.  I ask no more.  Let it\nbe, in justice, merely said of me, as of a gallant and eminent\nnaval Hero, with whom I have no pretensions to cope, that what I\nhave done, I did, in despite of mercenary and selfish objects,\n\n     For England, home, and Beauty.\n\n     '\"Remaining always, &c.  &c., WILKINS MICAWBER.\"'\n\n\nMuch affected, but still intensely enjoying himself, Mr. Micawber\nfolded up his letter, and handed it with a bow to my aunt, as\nsomething she might like to keep.\n\nThere was, as I had noticed on my first visit long ago, an iron\nsafe in the room.  The key was in it.  A hasty suspicion seemed to\nstrike Uriah; and, with a glance at Mr. Micawber, he went to it,\nand threw the doors clanking open.  It was empty.\n\n'Where are the books?' he cried, with a frightful face.  'Some\nthief has stolen the books!'\n\nMr. Micawber tapped himself with the ruler.  'I did, when I got the\nkey from you as usual - but a little earlier - and opened it this\nmorning.'\n\n'Don't be uneasy,' said Traddles.  'They have come into my\npossession.  I will take care of them, under the authority I\nmentioned.'\n\n'You receive stolen goods, do you?' cried Uriah.\n\n'Under such circumstances,' answered Traddles, 'yes.'\n\nWhat was my astonishment when I beheld my aunt, who had been\nprofoundly quiet and attentive, make a dart at Uriah Heep, and\nseize him by the collar with both hands!\n\n'You know what I want?' said my aunt.\n\n'A strait-waistcoat,' said he.\n\n'No.  My property!' returned my aunt.  'Agnes, my dear, as long as\nI believed it had been really made away with by your father, I\nwouldn't - and, my dear, I didn't, even to Trot, as he knows -\nbreathe a syllable of its having been placed here for investment. \nBut, now I know this fellow's answerable for it, and I'll have it!\nTrot, come and take it away from him!'\n\nWhether my aunt supposed, for the moment, that he kept her property\nin his neck-kerchief, I am sure I don't know; but she certainly\npulled at it as if she thought so.  I hastened to put myself\nbetween them, and to assure her that we would all take care that he\nshould make the utmost restitution of everything he had wrongly\ngot.  This, and a few moments' reflection, pacified her; but she\nwas not at all disconcerted by what she had done (though I cannot\nsay as much for her bonnet) and resumed her seat composedly.\n\nDuring the last few minutes, Mrs. Heep had been clamouring to her\nson to be 'umble'; and had been going down on her knees to all of\nus in succession, and making the wildest promises.  Her son sat her\ndown in his chair; and, standing sulkily by her, holding her arm\nwith his hand, but not rudely, said to me, with a ferocious look:\n\n'What do you want done?'\n\n'I will tell you what must be done,' said Traddles.\n\n'Has that Copperfield no tongue?' muttered Uriah, 'I would do a\ngood deal for you if you could tell me, without lying, that\nsomebody had cut it out.'\n\n'My Uriah means to be umble!' cried his mother.  'Don't mind what\nhe says, good gentlemen!'\n\n'What must be done,' said Traddles, 'is this.  First, the deed of\nrelinquishment, that we have heard of, must be given over to me now\n- here.'\n\n'Suppose I haven't got it,' he interrupted.\n\n'But you have,' said Traddles; 'therefore, you know, we won't\nsuppose so.'  And I cannot help avowing that this was the first\noccasion on which I really did justice to the clear head, and the\nplain, patient, practical good sense, of my old schoolfellow. \n'Then,' said Traddles, 'you must prepare to disgorge all that your\nrapacity has become possessed of, and to make restoration to the\nlast farthing.  All the partnership books and papers must remain in\nour possession; all your books and papers; all money accounts and\nsecurities, of both kinds.  In short, everything here.'\n\n'Must it?  I don't know that,' said Uriah.  'I must have time to\nthink about that.'\n\n'Certainly,' replied Traddles; 'but, in the meanwhile, and until\neverything is done to our satisfaction, we shall maintain\npossession of these things; and beg you - in short, compel you - to\nkeep to your own room, and hold no communication with anyone.'\n\n'I won't do it!' said Uriah, with an oath.\n\n'Maidstone jail is a safer place of detention,' observed Traddles;\n'and though the law may be longer in righting us, and may not be\nable to right us so completely as you can, there is no doubt of its\npunishing YOU.  Dear me, you know that quite as well as I!\nCopperfield, will you go round to the Guildhall, and bring a couple\nof officers?'\n\nHere, Mrs. Heep broke out again, crying on her knees to Agnes to\ninterfere in their behalf, exclaiming that he was very humble, and\nit was all true, and if he didn't do what we wanted, she would, and\nmuch more to the same purpose; being half frantic with fears for\nher darling.  To inquire what he might have done, if he had had any\nboldness, would be like inquiring what a mongrel cur might do, if\nit had the spirit of a tiger.  He was a coward, from head to foot;\nand showed his dastardly nature through his sullenness and\nmortification, as much as at any time of his mean life.\n\n'Stop!' he growled to me; and wiped his hot face with his hand. \n'Mother, hold your noise.  Well! Let 'em have that deed.  Go and\nfetch it!'\n\n'Do you help her, Mr. Dick,' said Traddles, 'if you please.'\n\nProud of his commission, and understanding it, Mr. Dick accompanied\nher as a shepherd's dog might accompany a sheep.  But, Mrs. Heep\ngave him little trouble; for she not only returned with the deed,\nbut with the box in which it was, where we found a banker's book\nand some other papers that were afterwards serviceable.\n\n'Good!' said Traddles, when this was brought.  'Now, Mr. Heep, you\ncan retire to think: particularly observing, if you please, that I\ndeclare to you, on the part of all present, that there is only one\nthing to be done; that it is what I have explained; and that it\nmust be done without delay.'\n\nUriah, without lifting his eyes from the ground, shuffled across\nthe room with his hand to his chin, and pausing at the door, said:\n\n'Copperfield, I have always hated you.  You've always been an\nupstart, and you've always been against me.'\n\n'As I think I told you once before,' said I, 'it is you who have\nbeen, in your greed and cunning, against all the world.  It may be\nprofitable to you to reflect, in future, that there never were\ngreed and cunning in the world yet, that did not do too much, and\noverreach themselves.  It is as certain as death.'\n\n'Or as certain as they used to teach at school (the same school\nwhere I picked up so much umbleness), from nine o'clock to eleven,\nthat labour was a curse; and from eleven o'clock to one, that it\nwas a blessing and a cheerfulness, and a dignity, and I don't know\nwhat all, eh?' said he with a sneer.  'You preach, about as\nconsistent as they did.  Won't umbleness go down?  I shouldn't have\ngot round my gentleman fellow-partner without it, I think.  -\nMicawber, you old bully, I'll pay YOU!'\n\nMr. Micawber, supremely defiant of him and his extended finger, and\nmaking a great deal of his chest until he had slunk out at the\ndoor, then addressed himself to me, and proffered me the\nsatisfaction of 'witnessing the re-establishment of mutual\nconfidence between himself and Mrs. Micawber'.  After which, he\ninvited the company generally to the contemplation of that\naffecting spectacle.\n\n'The veil that has long been interposed between Mrs. Micawber and\nmyself, is now withdrawn,' said Mr. Micawber; 'and my children and\nthe Author of their Being can once more come in contact on equal\nterms.'\n\nAs we were all very grateful to him, and all desirous to show that\nwe were, as well as the hurry and disorder of our spirits would\npermit, I dare say we should all have gone, but that it was\nnecessary for Agnes to return to her father, as yet unable to bear\nmore than the dawn of hope; and for someone else to hold Uriah in\nsafe keeping.  So, Traddles remained for the latter purpose, to be\npresently relieved by Mr. Dick; and Mr. Dick, my aunt, and I, went\nhome with Mr. Micawber.  As I parted hurriedly from the dear girl\nto whom I owed so much, and thought from what she had been saved,\nperhaps, that morning - her better resolution notwithstanding - I\nfelt devoutly thankful for the miseries of my younger days which\nhad brought me to the knowledge of Mr. Micawber.\n\nHis house was not far off; and as the street door opened into the\nsitting-room, and he bolted in with a precipitation quite his own,\nwe found ourselves at once in the bosom of the family.  Mr.\nMicawber exclaiming, 'Emma! my life!' rushed into Mrs. Micawber's\narms.  Mrs. Micawber shrieked, and folded Mr. Micawber in her\nembrace.  Miss Micawber, nursing the unconscious stranger of Mrs.\nMicawber's last letter to me, was sensibly affected.  The stranger\nleaped.  The twins testified their joy by several inconvenient but\ninnocent demonstrations.  Master Micawber, whose disposition\nappeared to have been soured by early disappointment, and whose\naspect had become morose, yielded to his better feelings, and\nblubbered.\n\n'Emma!' said Mr. Micawber.  'The cloud is past from my mind. \nMutual confidence, so long preserved between us once, is restored,\nto know no further interruption.  Now, welcome poverty!' cried Mr.\nMicawber, shedding tears.  'Welcome misery, welcome houselessness,\nwelcome hunger, rags, tempest, and beggary! Mutual confidence will\nsustain us to the end!'\n\nWith these expressions, Mr. Micawber placed Mrs. Micawber in a\nchair, and embraced the family all round; welcoming a variety of\nbleak prospects, which appeared, to the best of my judgement, to be\nanything but welcome to them; and calling upon them to come out\ninto Canterbury and sing a chorus, as nothing else was left for\ntheir support.\n\nBut Mrs. Micawber having, in the strength of her emotions, fainted\naway, the first thing to be done, even before the chorus could be\nconsidered complete, was to recover her.  This my aunt and Mr.\nMicawber did; and then my aunt was introduced, and Mrs. Micawber\nrecognized me.\n\n'Excuse me, dear Mr. Copperfield,' said the poor lady, giving me\nher hand, 'but I am not strong; and the removal of the late\nmisunderstanding between Mr. Micawber and myself was at first too\nmuch for me.'\n\n'Is this all your family, ma'am?' said my aunt.\n\n'There are no more at present,' returned Mrs. Micawber.\n\n'Good gracious, I didn't mean that, ma'am,' said my aunt.  'I mean,\nare all these yours?'\n\n'Madam,' replied Mr. Micawber, 'it is a true bill.'\n\n'And that eldest young gentleman, now,' said my aunt, musing, 'what\nhas he been brought up to?'\n\n'It was my hope when I came here,' said Mr. Micawber, 'to have got\nWilkins into the Church: or perhaps I shall express my meaning more\nstrictly, if I say the Choir.  But there was no vacancy for a tenor\nin the venerable Pile for which this city is so justly eminent; and\nhe has - in short, he has contracted a habit of singing in\npublic-houses, rather than in sacred edifices.'\n\n'But he means well,' said Mrs. Micawber, tenderly.\n\n'I dare say, my love,' rejoined Mr. Micawber, 'that he means\nparticularly well; but I have not yet found that he carries out his\nmeaning, in any given direction whatsoever.'\n\nMaster Micawber's moroseness of aspect returned upon him again, and\nhe demanded, with some temper, what he was to do?  Whether he had\nbeen born a carpenter, or a coach-painter, any more than he had\nbeen born a bird?  Whether he could go into the next street, and\nopen a chemist's shop?  Whether he could rush to the next assizes,\nand proclaim himself a lawyer?  Whether he could come out by force\nat the opera, and succeed by violence?  Whether he could do\nanything, without being brought up to something?\n\nMy aunt mused a little while, and then said:\n\n'Mr. Micawber, I wonder you have never turned your thoughts to\nemigration.'\n\n'Madam,' returned Mr. Micawber, 'it was the dream of my youth, and\nthe fallacious aspiration of my riper years.'  I am thoroughly\npersuaded, by the by, that he had never thought of it in his life.\n\n'Aye?' said my aunt, with a glance at me.  'Why, what a thing it\nwould be for yourselves and your family, Mr. and Mrs. Micawber, if\nyou were to emigrate now.'\n\n'Capital, madam, capital,' urged Mr. Micawber, gloomily.\n\n'That is the principal, I may say the only difficulty, my dear Mr.\nCopperfield,' assented his wife.\n\n'Capital?' cried my aunt.  'But you are doing us a great service -\nhave done us a great service, I may say, for surely much will come\nout of the fire - and what could we do for you, that would be half\nso good as to find the capital?'\n\n'I could not receive it as a gift,' said Mr. Micawber, full of fire\nand animation, 'but if a sufficient sum could be advanced, say at\nfive per cent interest, per annum, upon my personal liability - say\nmy notes of hand, at twelve, eighteen, and twenty-four months,\nrespectively, to allow time for something to turn up -'\n\n'Could be?  Can be and shall be, on your own terms,' returned my\naunt, 'if you say the word.  Think of this now, both of you.  Here\nare some people David knows, going out to Australia shortly.  If\nyou decide to go, why shouldn't you go in the same ship?  You may\nhelp each other.  Think of this now, Mr. and Mrs. Micawber.  Take\nyour time, and weigh it well.'\n\n'There is but one question, my dear ma'am, I could wish to ask,'\nsaid Mrs. Micawber.  'The climate, I believe, is healthy?'\n\n'Finest in the world!' said my aunt.\n\n'Just so,' returned Mrs. Micawber.  'Then my question arises.  Now,\nare the circumstances of the country such, that a man of Mr.\nMicawber's abilities would have a fair chance of rising in the\nsocial scale?  I will not say, at present, might he aspire to be\nGovernor, or anything of that sort; but would there be a reasonable\nopening for his talents to develop themselves - that would be amply\nsufficient - and find their own expansion?'\n\n'No better opening anywhere,' said my aunt, 'for a man who conducts\nhimself well, and is industrious.'\n\n'For a man who conducts himself well,' repeated Mrs. Micawber, with\nher clearest business manner, 'and is industrious.  Precisely.  It\nis evident to me that Australia is the legitimate sphere of action\nfor Mr. Micawber!'\n\n'I entertain the conviction, my dear madam,' said Mr. Micawber,\n'that it is, under existing circumstances, the land, the only land,\nfor myself and family; and that something of an extraordinary\nnature will turn up on that shore.  It is no distance -\ncomparatively speaking; and though consideration is due to the\nkindness of your proposal, I assure you that is a mere matter of\nform.'\n\nShall I ever forget how, in a moment, he was the most sanguine of\nmen, looking on to fortune; or how Mrs. Micawber presently\ndiscoursed about the habits of the kangaroo! Shall I ever recall\nthat street of Canterbury on a market-day, without recalling him,\nas he walked back with us; expressing, in the hardy roving manner\nhe assumed, the unsettled habits of a temporary sojourner in the\nland; and looking at the bullocks, as they came by, with the eye of\nan Australian farmer!\n\n\n\nCHAPTER 53\nANOTHER RETROSPECT\n\n\nI must pause yet once again.  O, my child-wife, there is a figure\nin the moving crowd before my memory, quiet and still, saying in\nits innocent love and childish beauty, Stop to think of me - turn\nto look upon the Little Blossom, as it flutters to the ground!\n\nI do.  All else grows dim, and fades away.  I am again with Dora,\nin our cottage.  I do not know how long she has been ill.  I am so\nused to it in feeling, that I cannot count the time.  It is not\nreally long, in weeks or months; but, in my usage and experience,\nit is a weary, weary while.\n\nThey have left off telling me to 'wait a few days more'.  I have\nbegun to fear, remotely, that the day may never shine, when I shall\nsee my child-wife running in the sunlight with her old friend Jip.\n\nHe is, as it were suddenly, grown very old.  It may be that he\nmisses in his mistress, something that enlivened him and made him\nyounger; but he mopes, and his sight is weak, and his limbs are\nfeeble, and my aunt is sorry that he objects to her no more, but\ncreeps near her as he lies on Dora's bed - she sitting at the\nbedside - and mildly licks her hand.\n\nDora lies smiling on us, and is beautiful, and utters no hasty or\ncomplaining word.  She says that we are very good to her; that her\ndear old careful boy is tiring himself out, she knows; that my aunt\nhas no sleep, yet is always wakeful, active, and kind.  Sometimes,\nthe little bird-like ladies come to see her; and then we talk about\nour wedding-day, and all that happy time.\n\nWhat a strange rest and pause in my life there seems to be - and in\nall life, within doors and without - when I sit in the quiet,\nshaded, orderly room, with the blue eyes of my child-wife turned\ntowards me, and her little fingers twining round my hand! Many and\nmany an hour I sit thus; but, of all those times, three times come\nthe freshest on my mind.\n\n\nIt is morning; and Dora, made so trim by my aunt's hands, shows me\nhow her pretty hair will curl upon the pillow yet, an how long and\nbright it is, and how she likes to have it loosely gathered in that\nnet she wears.\n\n'Not that I am vain of it, now, you mocking boy,' she says, when I\nsmile; 'but because you used to say you thought it so beautiful;\nand because, when I first began to think about you, I used to peep\nin the glass, and wonder whether you would like very much to have\na lock of it.  Oh what a foolish fellow you were, Doady, when I\ngave you one!'\n\n'That was on the day when you were painting the flowers I had given\nyou, Dora, and when I told you how much in love I was.'\n\n'Ah! but I didn't like to tell you,' says Dora, 'then, how I had\ncried over them, because I believed you really liked me! When I can\nrun about again as I used to do, Doady, let us go and see those\nplaces where we were such a silly couple, shall we?  And take some\nof the old walks?  And not forget poor papa?'\n\n'Yes, we will, and have some happy days.  So you must make haste to\nget well, my dear.'\n\n'Oh, I shall soon do that! I am so much better, you don't know!'\n\n\nIt is evening; and I sit in the same chair, by the same bed, with\nthe same face turned towards me.  We have been silent, and there is\na smile upon her face.  I have ceased to carry my light burden up\nand down stairs now.  She lies here all the day.\n\n'Doady!'\n\n'My dear Dora!'\n\n'You won't think what I am going to say, unreasonable, after what\nyou told me, such a little while ago, of Mr. Wickfield's not being\nwell?  I want to see Agnes.  Very much I want to see her.'\n\n'I will write to her, my dear.'\n\n'Will you?'\n\n'Directly.'\n\n'What a good, kind boy! Doady, take me on your arm.  Indeed, my\ndear, it's not a whim.  It's not a foolish fancy.  I want, very\nmuch indeed, to see her!'\n\n'I am certain of it.  I have only to tell her so, and she is sure\nto come.'\n\n'You are very lonely when you go downstairs, now?' Dora whispers,\nwith her arm about my neck.\n\n'How can I be otherwise, my own love, when I see your empty chair?'\n\n'My empty chair!' She clings to me for a little while, in silence. \n'And you really miss me, Doady?' looking up, and brightly smiling. \n'Even poor, giddy, stupid me?'\n\n'My heart, who is there upon earth that I could miss so much?'\n\n'Oh, husband! I am so glad, yet so sorry!' creeping closer to me,\nand folding me in both her arms.  She laughs and sobs, and then is\nquiet, and quite happy.\n\n'Quite!' she says.  'Only give Agnes my dear love, and tell her\nthat I want very, very, much to see her; and I have nothing left to\nwish for.'\n\n'Except to get well again, Dora.'\n\n'Ah, Doady! Sometimes I think - you know I always was a silly\nlittle thing! - that that will never be!'\n\n'Don't say so, Dora! Dearest love, don't think so!'\n\n'I won't, if I can help it, Doady.  But I am very happy; though my\ndear boy is so lonely by himself, before his child-wife's empty\nchair!'\n\n\nIt is night; and I am with her still.  Agnes has arrived; has been\namong us for a whole day and an evening.  She, my aunt, and I, have\nsat with Dora since the morning, all together.  We have not talked\nmuch, but Dora has been perfectly contented and cheerful.  We are\nnow alone.\n\nDo I know, now, that my child-wife will soon leave me?  They have\ntold me so; they have told me nothing new to my thoughts- but I am\nfar from sure that I have taken that truth to heart.  I cannot\nmaster it.  I have withdrawn by myself, many times today, to weep. \nI have remembered Who wept for a parting between the living and the\ndead.  I have bethought me of all that gracious and compassionate\nhistory.  I have tried to resign myself, and to console myself; and\nthat, I hope, I may have done imperfectly; but what I cannot firmly\nsettle in my mind is, that the end will absolutely come.  I hold\nher hand in mine, I hold her heart in mine, I see her love for me,\nalive in all its strength.  I cannot shut out a pale lingering\nshadow of belief that she will be spared.\n\n'I am going to speak to you, Doady.  I am going to say something I\nhave often thought of saying, lately.  You won't mind?' with a\ngentle look.\n\n'Mind, my darling?'\n\n'Because I don't know what you will think, or what you may have\nthought sometimes.  Perhaps you have often thought the same. \nDoady, dear, I am afraid I was too young.'\n\nI lay my face upon the pillow by her, and she looks into my eyes,\nand speaks very softly.  Gradually, as she goes on, I feel, with a\nstricken heart, that she is speaking of herself as past.\n\n'I am afraid, dear, I was too young.  I don't mean in years only,\nbut in experience, and thoughts, and everything.  I was such a\nsilly little creature! I am afraid it would have been better, if we\nhad only loved each other as a boy and girl, and forgotten it.  I\nhave begun to think I was not fit to be a wife.'\n\nI try to stay my tears, and to reply, 'Oh, Dora, love, as fit as I\nto be a husband!'\n\n'I don't know,' with the old shake of her curls.  'Perhaps! But if\nI had been more fit to be married I might have made you more so,\ntoo.  Besides, you are very clever, and I never was.'\n\n'We have been very happy, my sweet Dora.'\n\n'I was very happy, very.  But, as years went on, my dear boy would\nhave wearied of his child-wife.  She would have been less and less\na companion for him.  He would have been more and more sensible of\nwhat was wanting in his home.  She wouldn't have improved.  It is\nbetter as it is.'\n\n'Oh, Dora, dearest, dearest, do not speak to me so.  Every word\nseems a reproach!'\n\n'No, not a syllable!' she answers, kissing me.  'Oh, my dear, you\nnever deserved it, and I loved you far too well to say a\nreproachful word to you, in earnest - it was all the merit I had,\nexcept being pretty - or you thought me so.  Is it lonely, down-\nstairs, Doady?'\n\n'Very! Very!'\n\n'Don't cry! Is my chair there?'\n\n'In its old place.'\n\n'Oh, how my poor boy cries! Hush, hush! Now, make me one promise. \nI want to speak to Agnes.  When you go downstairs, tell Agnes so,\nand send her up to me; and while I speak to her, let no one come -\nnot even aunt.  I want to speak to Agnes by herself.  I want to\nspeak to Agnes, quite alone.'\n\nI promise that she shall, immediately; but I cannot leave her, for\nmy grief.\n\n'I said that it was better as it is!' she whispers, as she holds me\nin her arms.  'Oh, Doady, after more years, you never could have\nloved your child-wife better than you do; and, after more years,\nshe would so have tried and disappointed you, that you might not\nhave been able to love her half so well! I know I was too young and\nfoolish.  It is much better as it is!'\n\nAgnes is downstairs, when I go into the parlour; and I give her the\nmessage.  She disappears, leaving me alone with Jip.\n\nHis Chinese house is by the fire; and he lies within it, on his bed\nof flannel, querulously trying to sleep.  The bright moon is high\nand clear.  As I look out on the night, my tears fall fast, and my\nundisciplined heart is chastened heavily - heavily.\n\nI sit down by the fire, thinking with a blind remorse of all those\nsecret feelings I have nourished since my marriage.  I think of\nevery little trifle between me and Dora, and feel the truth, that\ntrifles make the sum of life.  Ever rising from the sea of my\nremembrance, is the image of the dear child as I knew her first,\ngraced by my young love, and by her own, with every fascination\nwherein such love is rich.  Would it, indeed, have been better if\nwe had loved each other as a boy and a girl, and forgotten it? \nUndisciplined heart, reply!\n\nHow the time wears, I know not; until I am recalled by my\nchild-wife's old companion.  More restless than he was, he crawls\nout of his house, and looks at me, and wanders to the door, and\nwhines to go upstairs.\n\n'Not tonight, Jip! Not tonight!'\n\nHe comes very slowly back to me, licks my hand, and lifts his dim\neyes to my face.\n\n'Oh, Jip! It may be, never again!'\n\nHe lies down at my feet, stretches himself out as if to sleep, and\nwith a plaintive cry, is dead.\n\n'Oh, Agnes! Look, look, here!'\n\n- That face, so full of pity, and of grief, that rain of tears,\nthat awful mute appeal to me, that solemn hand upraised towards\nHeaven!\n\n'Agnes?'\n\nIt is over.  Darkness comes before my eyes; and, for a time, all\nthings are blotted out of my remembrance.\n\n\n\nCHAPTER 54\nMr. MICAWBER'S TRANSACTIONS\n\n\nThis is not the time at which I am to enter on the state of my mind\nbeneath its load of sorrow.  I came to think that the Future was\nwalled up before me, that the energy and action of my life were at\nan end, that I never could find any refuge but in the grave.  I\ncame to think so, I say, but not in the first shock of my grief. \nIt slowly grew to that.  If the events I go on to relate, had not\nthickened around me, in the beginning to confuse, and in the end to\naugment, my affliction, it is possible (though I think not\nprobable), that I might have fallen at once into this condition. \nAs it was, an interval occurred before I fully knew my own\ndistress; an interval, in which I even supposed that its sharpest\npangs were past; and when my mind could soothe itself by resting on\nall that was most innocent and beautiful, in the tender story that\nwas closed for ever.\n\nWhen it was first proposed that I should go abroad, or how it came\nto be agreed among us that I was to seek the restoration of my\npeace in change and travel, I do not, even now, distinctly know. \nThe spirit of Agnes so pervaded all we thought, and said, and did,\nin that time of sorrow, that I assume I may refer the project to\nher influence.  But her influence was so quiet that I know no more.\n\nAnd now, indeed, I began to think that in my old association of her\nwith the stained-glass window in the church, a prophetic\nforeshadowing of what she would be to me, in the calamity that was\nto happen in the fullness of time, had found a way into my mind. \nIn all that sorrow, from the moment, never to be forgotten, when\nshe stood before me with her upraised hand, she was like a sacred\npresence in my lonely house.  When the Angel of Death alighted\nthere, my child-wife fell asleep - they told me so when I could\nbear to hear it - on her bosom, with a smile.  From my swoon, I\nfirst awoke to a consciousness of her compassionate tears, her\nwords of hope and peace, her gentle face bending down as from a\npurer region nearer Heaven, over my undisciplined heart, and\nsoftening its pain.\n\nLet me go on.\n\nI was to go abroad.  That seemed to have been determined among us\nfrom the first.  The ground now covering all that could perish of\nmy departed wife, I waited only for what Mr. Micawber called the\n'final pulverization of Heep'; and for the departure of the\nemigrants.\n\nAt the request of Traddles, most affectionate and devoted of\nfriends in my trouble, we returned to Canterbury: I mean my aunt,\nAgnes, and I.  We proceeded by appointment straight to Mr.\nMicawber's house; where, and at Mr. Wickfield's, my friend had been\nlabouring ever since our explosive meeting.  When poor Mrs.\nMicawber saw me come in, in my black clothes, she was sensibly\naffected.  There was a great deal of good in Mrs. Micawber's heart,\nwhich had not been dunned out of it in all those many years.\n\n'Well, Mr. and Mrs. Micawber,' was my aunt's first salutation after\nwe were seated.  'Pray, have you thought about that emigration\nproposal of mine?'\n\n'My dear madam,' returned Mr. Micawber, 'perhaps I cannot better\nexpress the conclusion at which Mrs. Micawber, your humble servant,\nand I may add our children, have jointly and severally arrived,\nthan by borrowing the language of an illustrious poet, to reply\nthat our Boat is on the shore, and our Bark is on the sea.'\n\n'That's right,' said my aunt.  'I augur all sort of good from your\nsensible decision.'\n\n'Madam, you do us a great deal of honour,' he rejoined.  He then\nreferred to a memorandum.  'With respect to the pecuniary\nassistance enabling us to launch our frail canoe on the ocean of\nenterprise, I have reconsidered that important business-point; and\nwould beg to propose my notes of hand - drawn, it is needless to\nstipulate, on stamps of the amounts respectively required by the\nvarious Acts of Parliament applying to such securities - at\neighteen, twenty-four, and thirty months.  The proposition I\noriginally submitted, was twelve, eighteen, and twenty-four; but I\nam apprehensive that such an arrangement might not allow sufficient\ntime for the requisite amount of - Something - to turn up.  We\nmight not,' said Mr. Micawber, looking round the room as if it\nrepresented several hundred acres of highly cultivated land, 'on\nthe first responsibility becoming due, have been successful in our\nharvest, or we might not have got our harvest in.  Labour, I\nbelieve, is sometimes difficult to obtain in that portion of our\ncolonial possessions where it will be our lot to combat with the\nteeming soil.'\n\n'Arrange it in any way you please, sir,' said my aunt.\n\n'Madam,' he replied, 'Mrs. Micawber and myself are deeply sensible\nof the very considerate kindness of our friends and patrons.  What\nI wish is, to be perfectly business-like, and perfectly punctual. \nTurning over, as we are about to turn over, an entirely new leaf;\nand falling back, as we are now in the act of falling back, for a\nSpring of no common magnitude; it is important to my sense of\nself-respect, besides being an example to my son, that these\narrangements should be concluded as between man and man.'\n\nI don't know that Mr. Micawber attached any meaning to this last\nphrase; I don't know that anybody ever does, or did; but he\nappeared to relish it uncommonly, and repeated, with an impressive\ncough, 'as between man and man'.\n\n'I propose,' said Mr. Micawber, 'Bills - a convenience to the\nmercantile world, for which, I believe, we are originally indebted\nto the Jews, who appear to me to have had a devilish deal too much\nto do with them ever since - because they are negotiable.  But if\na Bond, or any other description of security, would be preferred,\nI should be happy to execute any such instrument.  As between man\nand man.'\n\nMY aunt observed, that in a case where both parties were willing to\nagree to anything, she took it for granted there would be no\ndifficulty in settling this point.  Mr. Micawber was of her\nopinion.\n\n'In reference to our domestic preparations, madam,' said Mr.\nMicawber, with some pride, 'for meeting the destiny to which we are\nnow understood to be self-devoted, I beg to report them.  My eldest\ndaughter attends at five every morning in a neighbouring\nestablishment, to acquire the process - if process it may be called\n- of milking cows.  My younger children are instructed to observe,\nas closely as circumstances will permit, the habits of the pigs and\npoultry maintained in the poorer parts of this city: a pursuit from\nwhich they have, on two occasions, been brought home, within an\ninch of being run over.  I have myself directed some attention,\nduring the past week, to the art of baking; and my son Wilkins has\nissued forth with a walking-stick and driven cattle, when\npermitted, by the rugged hirelings who had them in charge, to\nrender any voluntary service in that direction - which I regret to\nsay, for the credit of our nature, was not often; he being\ngenerally warned, with imprecations, to desist.'\n\n'All very right indeed,' said my aunt, encouragingly.  'Mrs.\nMicawber has been busy, too, I have no doubt.'\n\n'My dear madam,' returned Mrs. Micawber, with her business-like\nair.  'I am free to confess that I have not been actively engaged\nin pursuits immediately connected with cultivation or with stock,\nthough well aware that both will claim my attention on a foreign\nshore.  Such opportunities as I have been enabled to alienate from\nmy domestic duties, I have devoted to corresponding at some length\nwith my family.  For I own it seems to me, my dear Mr.\nCopperfield,' said Mrs. Micawber, who always fell back on me, I\nsuppose from old habit, to whomsoever else she might address her\ndiscourse at starting, 'that the time is come when the past should\nbe buried in oblivion; when my family should take Mr. Micawber by\nthe hand, and Mr. Micawber should take my family by the hand; when\nthe lion should lie down with the lamb, and my family be on terms\nwith Mr. Micawber.'\n\nI said I thought so too.\n\n'This, at least, is the light, my dear Mr. Copperfield,' pursued\nMrs. Micawber, 'in which I view the subject.  When I lived at home\nwith my papa and mama, my papa was accustomed to ask, when any\npoint was under discussion in our limited circle, \"In what light\ndoes my Emma view the subject?\" That my papa was too partial, I\nknow; still, on such a point as the frigid coldness which has ever\nsubsisted between Mr. Micawber and my family, I necessarily have\nformed an opinion, delusive though it may be.'\n\n'No doubt.  Of course you have, ma'am,' said my aunt.\n\n'Precisely so,' assented Mrs. Micawber.  'Now, I may be wrong in my\nconclusions; it is very likely that I am, but my individual\nimpression is, that the gulf between my family and Mr. Micawber may\nbe traced to an apprehension, on the part of my family, that Mr.\nMicawber would require pecuniary accommodation.  I cannot help\nthinking,' said Mrs. Micawber, with an air of deep sagacity, 'that\nthere are members of my family who have been apprehensive that Mr.\nMicawber would solicit them for their names.  - I do not mean to be\nconferred in Baptism upon our children, but to be inscribed on\nBills of Exchange, and negotiated in the Money Market.'\n\nThe look of penetration with which Mrs. Micawber announced this\ndiscovery, as if no one had ever thought of it before, seemed\nrather to astonish my aunt; who abruptly replied, 'Well, ma'am,\nupon the whole, I shouldn't wonder if you were right!'\n\n'Mr. Micawber being now on the eve of casting off the pecuniary\nshackles that have so long enthralled him,' said Mrs. Micawber,\n'and of commencing a new career in a country where there is\nsufficient range for his abilities, - which, in my opinion, is\nexceedingly important; Mr. Micawber's abilities peculiarly\nrequiring space, - it seems to me that my family should signalize\nthe occasion by coming forward.  What I could wish to see, would be\na meeting between Mr. Micawber and my family at a festive\nentertainment, to be given at my family's expense; where Mr.\nMicawber's health and prosperity being proposed, by some leading\nmember of my family, Mr. Micawber might have an opportunity of\ndeveloping his views.'\n\n'My dear,' said Mr. Micawber, with some heat, 'it may be better for\nme to state distinctly, at once, that if I were to develop my views\nto that assembled group, they would possibly be found of an\noffensive nature: my impression being that your family are, in the\naggregate, impertinent Snobs; and, in detail, unmitigated\nRuffians.'\n\n'Micawber,' said Mrs. Micawber, shaking her head, 'no! You have\nnever understood them, and they have never understood you.'\n\nMr. Micawber coughed.\n\n'They have never understood you, Micawber,' said his wife.  'They\nmay be incapable of it.  If so, that is their misfortune.  I can\npity their misfortune.'\n\n'I am extremely sorry, my dear Emma,' said Mr. Micawber, relenting,\n'to have been betrayed into any expressions that might, even\nremotely, have the appearance of being strong expressions.  All I\nwould say is, that I can go abroad without your family coming\nforward to favour me, - in short, with a parting Shove of their\ncold shoulders; and that, upon the whole, I would rather leave\nEngland with such impetus as I possess, than derive any\nacceleration of it from that quarter.  At the same time, my dear,\nif they should condescend to reply to your communications - which\nour joint experience renders most improbable - far be it from me to\nbe a barrier to your wishes.'\n\nThe matter being thus amicably settled, Mr. Micawber gave Mrs.\nMicawber his arm, and glancing at the heap of books and papers\nlying before Traddles on the table, said they would leave us to\nourselves; which they ceremoniously did.\n\n'My dear Copperfield,' said Traddles, leaning back in his chair\nwhen they were gone, and looking at me with an affection that made\nhis eyes red, and his hair all kinds of shapes, 'I don't make any\nexcuse for troubling you with business, because I know you are\ndeeply interested in it, and it may divert your thoughts.  My dear\nboy, I hope you are not worn out?'\n\n'I am quite myself,' said I, after a pause.  'We have more cause to\nthink of my aunt than of anyone.  You know how much she has done.'\n\n'Surely, surely,' answered Traddles.  'Who can forget it!'\n\n'But even that is not all,' said I.  'During the last fortnight,\nsome new trouble has vexed her; and she has been in and out of\nLondon every day.  Several times she has gone out early, and been\nabsent until evening.  Last night, Traddles, with this journey\nbefore her, it was almost midnight before she came home.  You know\nwhat her consideration for others is.  She will not tell me what\nhas happened to distress her.'\n\nMy aunt, very pale, and with deep lines in her face, sat immovable\nuntil I had finished; when some stray tears found their way to her\ncheeks, and she put her hand on mine.\n\n'It's nothing, Trot; it's nothing.  There will be no more of it. \nYou shall know by and by.  Now Agnes, my dear, let us attend to\nthese affairs.'\n\n'I must do Mr. Micawber the justice to say,' Traddles began, 'that\nalthough he would appear not to have worked to any good account for\nhimself, he is a most untiring man when he works for other people. \nI never saw such a fellow.  If he always goes on in the same way,\nhe must be, virtually, about two hundred years old, at present. \nThe heat into which he has been continually putting himself; and\nthe distracted and impetuous manner in which he has been diving,\nday and night, among papers and books; to say nothing of the\nimmense number of letters he has written me between this house and\nMr. Wickfield's, and often across the table when he has been\nsitting opposite, and might much more easily have spoken; is quite\nextraordinary.'\n\n'Letters!' cried my aunt.  'I believe he dreams in letters!'\n\n'There's Mr. Dick, too,' said Traddles, 'has been doing wonders! As\nsoon as he was released from overlooking Uriah Heep, whom he kept\nin such charge as I never saw exceeded, he began to devote himself\nto Mr. Wickfield.  And really his anxiety to be of use in the\ninvestigations we have been making, and his real usefulness in\nextracting, and copying, and fetching, and carrying, have been\nquite stimulating to us.'\n\n'Dick is a very remarkable man,' exclaimed my aunt; 'and I always\nsaid he was.  Trot, you know it.'\n\n'I am happy to say, Miss Wickfield,' pursued Traddles, at once with\ngreat delicacy and with great earnestness, 'that in your absence\nMr. Wickfield has considerably improved.  Relieved of the incubus\nthat had fastened upon him for so long a time, and of the dreadful\napprehensions under which he had lived, he is hardly the same\nperson.  At times, even his impaired power of concentrating his\nmemory and attention on particular points of business, has\nrecovered itself very much; and he has been able to assist us in\nmaking some things clear, that we should have found very difficult\nindeed, if not hopeless, without him.  But what I have to do is to\ncome to results; which are short enough; not to gossip on all the\nhopeful circumstances I have observed, or I shall never have done.'\nHis natural manner and agreeable simplicity made it transparent\nthat he said this to put us in good heart, and to enable Agnes to\nhear her father mentioned with greater confidence; but it was not\nthe less pleasant for that.\n\n'Now, let me see,' said Traddles, looking among the papers on the\ntable.  'Having counted our funds, and reduced to order a great\nmass of unintentional confusion in the first place, and of wilful\nconfusion and falsification in the second, we take it to be clear\nthat Mr. Wickfield might now wind up his business, and his\nagency-trust, and exhibit no deficiency or defalcation whatever.'\n\n'Oh, thank Heaven!' cried Agnes, fervently.\n\n'But,' said Traddles, 'the surplus that would be left as his means\nof support - and I suppose the house to be sold, even in saying\nthis - would be so small, not exceeding in all probability some\nhundreds of pounds, that perhaps, Miss Wickfield, it would be best\nto consider whether he might not retain his agency of the estate to\nwhich he has so long been receiver.  His friends might advise him,\nyou know; now he is free.  You yourself, Miss Wickfield -\nCopperfield - I -'\n\n'I have considered it, Trotwood,' said Agnes, looking to me, 'and\nI feel that it ought not to be, and must not be; even on the\nrecommendation of a friend to whom I am so grateful, and owe so\nmuch.'\n\n'I will not say that I recommend it,' observed Traddles.  'I think\nit right to suggest it.  No more.'\n\n'I am happy to hear you say so,' answered Agnes, steadily, 'for it\ngives me hope, almost assurance, that we think alike.  Dear Mr.\nTraddles and dear Trotwood, papa once free with honour, what could\nI wish for! I have always aspired, if I could have released him\nfrom the toils in which he was held, to render back some little\nportion of the love and care I owe him, and to devote my life to\nhim.  It has been, for years, the utmost height of my hopes.  To\ntake our future on myself, will be the next great happiness - the\nnext to his release from all trust and responsibility - that I can\nknow.'\n\n'Have you thought how, Agnes?'\n\n'Often! I am not afraid, dear Trotwood.  I am certain of success. \nSo many people know me here, and think kindly of me, that I am\ncertain.  Don't mistrust me.  Our wants are not many.  If I rent\nthe dear old house, and keep a school, I shall be useful and\nhappy.'\n\nThe calm fervour of her cheerful voice brought back so vividly,\nfirst the dear old house itself, and then my solitary home, that my\nheart was too full for speech.  Traddles pretended for a little\nwhile to be busily looking among the papers.\n\n'Next, Miss Trotwood,' said Traddles, 'that property of yours.'\n\n'Well, sir,' sighed my aunt.  'All I have got to say about it is,\nthat if it's gone, I can bear it; and if it's not gone, I shall be\nglad to get it back.'\n\n'It was originally, I think, eight thousand pounds, Consols?' said\nTraddles.\n\n'Right!' replied my aunt.\n\n'I can't account for more than five,' said Traddles, with an air of\nperplexity.\n\n'- thousand, do you mean?' inquired my aunt, with uncommon\ncomposure, 'or pounds?'\n\n'Five thousand pounds,' said Traddles.\n\n'It was all there was,' returned my aunt.  'I sold three, myself. \nOne, I paid for your articles, Trot, my dear; and the other two I\nhave by me.  When I lost the rest, I thought it wise to say nothing\nabout that sum, but to keep it secretly for a rainy day.  I wanted\nto see how you would come out of the trial, Trot; and you came out\nnobly - persevering, self-reliant, self-denying! So did Dick. \nDon't speak to me, for I find my nerves a little shaken!'\n\nNobody would have thought so, to see her sitting upright, with her\narms folded; but she had wonderful self-command.\n\n'Then I am delighted to say,' cried Traddles, beaming with joy,\n'that we have recovered the whole money!'\n\n'Don't congratulate me, anybody!' exclaimed my aunt.  'How so,\nsir?'\n\n'You believed it had been misappropriated by Mr. Wickfield?' said\nTraddles.\n\n'Of course I did,' said my aunt, 'and was therefore easily\nsilenced.  Agnes, not a word!'\n\n'And indeed,' said Traddles, 'it was sold, by virtue of the power\nof management he held from you; but I needn't say by whom sold, or\non whose actual signature.  It was afterwards pretended to Mr.\nWickfield, by that rascal, - and proved, too, by figures, - that he\nhad possessed himself of the money (on general instructions, he\nsaid) to keep other deficiencies and difficulties from the light. \nMr. Wickfield, being so weak and helpless in his hands as to pay\nyou, afterwards, several sums of interest on a pretended principal\nwhich he knew did not exist, made himself, unhappily, a party to\nthe fraud.'\n\n'And at last took the blame upon himself,' added my aunt; 'and\nwrote me a mad letter, charging himself with robbery, and wrong\nunheard of.  Upon which I paid him a visit early one morning,\ncalled for a candle, burnt the letter, and told him if he ever\ncould right me and himself, to do it; and if he couldn't, to keep\nhis own counsel for his daughter's sake.  - If anybody speaks to\nme, I'll leave the house!'\n\nWe all remained quiet; Agnes covering her face.\n\n'Well, my dear friend,' said my aunt, after a pause, 'and you have\nreally extorted the money back from him?'\n\n'Why, the fact is,' returned Traddles, 'Mr. Micawber had so\ncompletely hemmed him in, and was always ready with so many new\npoints if an old one failed, that he could not escape from us.  A\nmost remarkable circumstance is, that I really don't think he\ngrasped this sum even so much for the gratification of his avarice,\nwhich was inordinate, as in the hatred he felt for Copperfield.  He\nsaid so to me, plainly.  He said he would even have spent as much,\nto baulk or injure Copperfield.'\n\n'Ha!' said my aunt, knitting her brows thoughtfully, and glancing\nat Agnes.  'And what's become of him?'\n\n'I don't know.  He left here,' said Traddles, 'with his mother, who\nhad been clamouring, and beseeching, and disclosing, the whole\ntime.  They went away by one of the London night coaches, and I\nknow no more about him; except that his malevolence to me at\nparting was audacious.  He seemed to consider himself hardly less\nindebted to me, than to Mr. Micawber; which I consider (as I told\nhim) quite a compliment.'\n\n'Do you suppose he has any money, Traddles?' I asked.\n\n'Oh dear, yes, I should think so,' he replied, shaking his head,\nseriously.  'I should say he must have pocketed a good deal, in one\nway or other.  But, I think you would find, Copperfield, if you had\nan opportunity of observing his course, that money would never keep\nthat man out of mischief.  He is such an incarnate hypocrite, that\nwhatever object he pursues, he must pursue crookedly.  It's his\nonly compensation for the outward restraints he puts upon himself. \nAlways creeping along the ground to some small end or other, he\nwill always magnify every object in the way; and consequently will\nhate and suspect everybody that comes, in the most innocent manner,\nbetween him and it.  So the crooked courses will become crookeder,\nat any moment, for the least reason, or for none.  It's only\nnecessary to consider his history here,' said Traddles, 'to know\nthat.'\n\n'He's a monster of meanness!' said my aunt.\n\n'Really I don't know about that,' observed Traddles thoughtfully. \n'Many people can be very mean, when they give their minds to it.'\n\n'And now, touching Mr. Micawber,' said my aunt.\n\n'Well, really,' said Traddles, cheerfully, 'I must, once more, give\nMr. Micawber high praise.  But for his having been so patient and\npersevering for so long a time, we never could have hoped to do\nanything worth speaking of.  And I think we ought to consider that\nMr. Micawber did right, for right's sake, when we reflect what\nterms he might have made with Uriah Heep himself, for his silence.'\n\n'I think so too,' said I.\n\n'Now, what would you give him?' inquired my aunt.\n\n'Oh! Before you come to that,' said Traddles, a little\ndisconcerted, 'I am afraid I thought it discreet to omit (not being\nable to carry everything before me) two points, in making this\nlawless adjustment - for it's perfectly lawless from beginning to\nend - of a difficult affair.  Those I.O.U.'s, and so forth, which\nMr. Micawber gave him for the advances he had -'\n\n'Well! They must be paid,' said my aunt.\n\n'Yes, but I don't know when they may be proceeded on, or where they\nare,' rejoined Traddles, opening his eyes; 'and I anticipate, that,\nbetween this time and his departure, Mr. Micawber will be\nconstantly arrested, or taken in execution.'\n\n'Then he must be constantly set free again, and taken out of\nexecution,' said my aunt.  'What's the amount altogether?'\n\n'Why, Mr. Micawber has entered the transactions - he calls them\ntransactions - with great form, in a book,' rejoined Traddles,\nsmiling; 'and he makes the amount a hundred and three pounds,\nfive.'\n\n'Now, what shall we give him, that sum included?' said my aunt. \n'Agnes, my dear, you and I can talk about division of it\nafterwards.  What should it be?  Five hundred pounds?'\n\nUpon this, Traddles and I both struck in at once.  We both\nrecommended a small sum in money, and the payment, without\nstipulation to Mr. Micawber, of the Uriah claims as they came in. \nWe proposed that the family should have their passage and their\noutfit, and a hundred pounds; and that Mr. Micawber's arrangement\nfor the repayment of the advances should be gravely entered into,\nas it might be wholesome for him to suppose himself under that\nresponsibility.  To this, I added the suggestion, that I should\ngive some explanation of his character and history to Mr. Peggotty,\nwho I knew could be relied on; and that to Mr. Peggotty should be\nquietly entrusted the discretion of advancing another hundred.  I\nfurther proposed to interest Mr. Micawber in Mr. Peggotty, by\nconfiding so much of Mr. Peggotty's story to him as I might feel\njustified in relating, or might think expedient; and to endeavour\nto bring each of them to bear upon the other, for the common\nadvantage.  We all entered warmly into these views; and I may\nmention at once, that the principals themselves did so, shortly\nafterwards, with perfect good will and harmony.\n\nSeeing that Traddles now glanced anxiously at my aunt again, I\nreminded him of the second and last point to which he had adverted.\n\n'You and your aunt will excuse me, Copperfield, if I touch upon a\npainful theme, as I greatly fear I shall,' said Traddles,\nhesitating; 'but I think it necessary to bring it to your\nrecollection.  On the day of Mr. Micawber's memorable denunciation\na threatening allusion was made by Uriah Heep to your aunt's -\nhusband.'\n\nMy aunt, retaining her stiff position, and apparent composure,\nassented with a nod.\n\n'Perhaps,' observed Traddles, 'it was mere purposeless\nimpertinence?'\n\n'No,' returned my aunt.\n\n'There was - pardon me - really such a person, and at all in his\npower?' hinted Traddles.\n\n'Yes, my good friend,' said my aunt.\n\nTraddles, with a perceptible lengthening of his face, explained\nthat he had not been able to approach this subject; that it had\nshared the fate of Mr. Micawber's liabilities, in not being\ncomprehended in the terms he had made; that we were no longer of\nany authority with Uriah Heep; and that if he could do us, or any\nof us, any injury or annoyance, no doubt he would.\n\nMy aunt remained quiet; until again some stray tears found their\nway to her cheeks.\n'You are quite right,' she said.  'It was very thoughtful to\nmention it.'\n\n'Can I - or Copperfield - do anything?' asked Traddles, gently.\n\n'Nothing,' said my aunt.  'I thank you many times.  Trot, my dear,\na vain threat! Let us have Mr. and Mrs. Micawber back.  And don't\nany of you speak to me!' With that she smoothed her dress, and sat,\nwith her upright carriage, looking at the door.\n\n'Well, Mr. and Mrs. Micawber!' said my aunt, when they entered. \n'We have been discussing your emigration, with many apologies to\nyou for keeping you out of the room so long; and I'll tell you what\narrangements we propose.'\n\nThese she explained to the unbounded satisfaction of the family, -\nchildren and all being then present, - and so much to the awakening\nof Mr. Micawber's punctual habits in the opening stage of all bill\ntransactions, that he could not be dissuaded from immediately\nrushing out, in the highest spirits, to buy the stamps for his\nnotes of hand.  But, his joy received a sudden check; for within\nfive minutes, he returned in the custody of a sheriff 's officer,\ninforming us, in a flood of tears, that all was lost.  We, being\nquite prepared for this event, which was of course a proceeding of\nUriah Heep's, soon paid the money; and in five minutes more Mr.\nMicawber was seated at the table, filling up the stamps with an\nexpression of perfect joy, which only that congenial employment, or\nthe making of punch, could impart in full completeness to his\nshining face.  To see him at work on the stamps, with the relish of\nan artist, touching them like pictures, looking at them sideways,\ntaking weighty notes of dates and amounts in his pocket-book, and\ncontemplating them when finished, with a high sense of their\nprecious value, was a sight indeed.\n\n'Now, the best thing you can do, sir, if you'll allow me to advise\nyou,' said my aunt, after silently observing him, 'is to abjure\nthat occupation for evermore.'\n\n'Madam,' replied Mr. Micawber, 'it is my intention to register such\na vow on the virgin page of the future.  Mrs. Micawber will attest\nit.  I trust,' said Mr. Micawber, solemnly, 'that my son Wilkins\nwill ever bear in mind, that he had infinitely better put his fist\nin the fire, than use it to handle the serpents that have poisoned\nthe life-blood of his unhappy parent!' Deeply affected, and changed\nin a moment to the image of despair, Mr. Micawber regarded the\nserpents with a look of gloomy abhorrence (in which his late\nadmiration of them was not quite subdued), folded them up and put\nthem in his pocket.\n\nThis closed the proceedings of the evening.  We were weary with\nsorrow and fatigue, and my aunt and I were to return to London on\nthe morrow.  It was arranged that the Micawbers should follow us,\nafter effecting a sale of their goods to a broker; that Mr.\nWickfield's affairs should be brought to a settlement, with all\nconvenient speed, under the direction of Traddles; and that Agnes\nshould also come to London, pending those arrangements.  We passed\nthe night at the old house, which, freed from the presence of the\nHeeps, seemed purged of a disease; and I lay in my old room, like\na shipwrecked wanderer come home.\n\nWe went back next day to my aunt's house - not to mine- and when\nshe and I sat alone, as of old, before going to bed, she said:\n\n'Trot, do you really wish to know what I have had upon my mind\nlately?'\n\n'Indeed I do, aunt.  If there ever was a time when I felt unwilling\nthat you should have a sorrow or anxiety which I could not share,\nit is now.'\n\n'You have had sorrow enough, child,' said my aunt, affectionately,\n'without the addition of my little miseries.  I could have no other\nmotive, Trot, in keeping anything from you.'\n\n'I know that well,' said I.  'But tell me now.'\n\n'Would you ride with me a little way tomorrow morning?' asked my\naunt.\n\n'Of course.'\n\n'At nine,' said she.  'I'll tell you then, my dear.'\n\nAt nine, accordingly, we went out in a little chariot, and drove to\nLondon.  We drove a long way through the streets, until we came to\none of the large hospitals.  Standing hard by the building was a\nplain hearse.  The driver recognized my aunt, and, in obedience to\na motion of her hand at the window, drove slowly off; we following.\n\n'You understand it now, Trot,' said my aunt.  'He is gone!'\n\n'Did he die in the hospital?'\n\n'Yes.'\n\nShe sat immovable beside me; but, again I saw the stray tears on\nher face.\n\n'He was there once before,' said my aunt presently.  'He was ailing\na long time - a shattered, broken man, these many years.  When he\nknew his state in this last illness, he asked them to send for me. \nHe was sorry then.  Very sorry.'\n\n'You went, I know, aunt.'\n\n'I went.  I was with him a good deal afterwards.'\n\n'He died the night before we went to Canterbury?' said I.\nMy aunt nodded.  'No one can harm him now,' she said.  'It was a\nvain threat.'\n\nWe drove away, out of town, to the churchyard at Hornsey.  'Better\nhere than in the streets,' said my aunt.  'He was born here.'\n\nWe alighted; and followed the plain coffin to a corner I remember\nwell, where the service was read consigning it to the dust.\n\n'Six-and-thirty years ago, this day, my dear,' said my aunt, as we\nwalked back to the chariot, 'I was married.  God forgive us all!'\nWe took our seats in silence; and so she sat beside me for a long\ntime, holding my hand.  At length she suddenly burst into tears,\nand said:\n\n'He was a fine-looking man when I married him, Trot - and he was\nsadly changed!'\n\nIt did not last long.  After the relief of tears, she soon became\ncomposed, and even cheerful.  Her nerves were a little shaken, she\nsaid, or she would not have given way to it.  God forgive us all!\n\nSo we rode back to her little cottage at Highgate, where we found\nthe following short note, which had arrived by that morning's post\nfrom Mr. Micawber:\n\n\n          'Canterbury,\n\n               'Friday.\n\n'My dear Madam, and Copperfield,\n\n'The fair land of promise lately looming on the horizon is again\nenveloped in impenetrable mists, and for ever withdrawn from the\neyes of a drifting wretch whose Doom is sealed!\n\n'Another writ has been issued (in His Majesty's High Court of\nKing's Bench at Westminster), in another cause of HEEP V. \nMICAWBER, and the defendant in that cause is the prey of the\nsheriff having legal jurisdiction in this bailiwick.\n\n     'Now's the day, and now's the hour,\n     See the front of battle lower,\n     See approach proud EDWARD'S power -\n     Chains and slavery!\n\n'Consigned to which, and to a speedy end (for mental torture is not\nsupportable beyond a certain point, and that point I feel I have\nattained), my course is run.  Bless you, bless you! Some future\ntraveller, visiting, from motives of curiosity, not unmingled, let\nus hope, with sympathy, the place of confinement allotted to\ndebtors in this city, may, and I trust will, Ponder, as he traces\non its wall, inscribed with a rusty nail,\n                              'The obscure initials,\n\n                                   'W. M.\n\n'P.S.  I re-open this to say that our common friend, Mr. Thomas\nTraddles (who has not yet left us, and is looking extremely well),\nhas paid the debt and costs, in the noble name of Miss Trotwood;\nand that myself and family are at the height of earthly bliss.'\n\n\n\nCHAPTER 55\nTEMPEST\n\n\nI now approach an event in my life, so indelible, so awful, so\nbound by an infinite variety of ties to all that has preceded it,\nin these pages, that, from the beginning of my narrative, I have\nseen it growing larger and larger as I advanced, like a great tower\nin a plain, and throwing its fore-cast shadow even on the incidents\nof my childish days.\n\nFor years after it occurred, I dreamed of it often.  I have started\nup so vividly impressed by it, that its fury has yet seemed raging\nin my quiet room, in the still night.  I dream of it sometimes,\nthough at lengthened and uncertain intervals, to this hour.  I have\nan association between it and a stormy wind, or the lightest\nmention of a sea-shore, as strong as any of which my mind is\nconscious.  As plainly as I behold what happened, I will try to\nwrite it down.  I do not recall it, but see it done; for it happens\nagain before me.\n\nThe time drawing on rapidly for the sailing of the emigrant-ship,\nmy good old nurse (almost broken-hearted for me, when we first met)\ncame up to London.  I was constantly with her, and her brother, and\nthe Micawbers (they being very much together); but Emily I never\nsaw.\n\nOne evening when the time was close at hand, I was alone with\nPeggotty and her brother.  Our conversation turned on Ham.  She\ndescribed to us how tenderly he had taken leave of her, and how\nmanfully and quietly he had borne himself.  Most of all, of late,\nwhen she believed he was most tried.  It was a subject of which the\naffectionate creature never tired; and our interest in hearing the\nmany examples which she, who was so much with him, had to relate,\nwas equal to hers in relating them.\n\nMY aunt and I were at that time vacating the two cottages at\nHighgate; I intending to go abroad, and she to return to her house\nat Dover.  We had a temporary lodging in Covent Garden.  As I\nwalked home to it, after this evening's conversation, reflecting on\nwhat had passed between Ham and myself when I was last at Yarmouth,\nI wavered in the original purpose I had formed, of leaving a letter\nfor Emily when I should take leave of her uncle on board the ship,\nand thought it would be better to write to her now.  She might\ndesire, I thought, after receiving my communication, to send some\nparting word by me to her unhappy lover.  I ought to give her the\nopportunity.\n\nI therefore sat down in my room, before going to bed, and wrote to\nher.  I told her that I had seen him, and that he had requested me\nto tell her what I have already written in its place in these\nsheets.  I faithfully repeated it.  I had no need to enlarge upon\nit, if I had had the right.  Its deep fidelity and goodness were\nnot to be adorned by me or any man.  I left it out, to be sent\nround in the morning; with a line to Mr. Peggotty, requesting him\nto give it to her; and went to bed at daybreak.\n\nI was weaker than I knew then; and, not falling asleep until the\nsun was up, lay late, and unrefreshed, next day.  I was roused by\nthe silent presence of my aunt at my bedside.  I felt it in my\nsleep, as I suppose we all do feel such things.\n\n'Trot, my dear,' she said, when I opened my eyes, 'I couldn't make\nup my mind to disturb you.  Mr. Peggotty is here; shall he come\nup?'\n\nI replied yes, and he soon appeared.\n\n'Mas'r Davy,' he said, when we had shaken hands, 'I giv Em'ly your\nletter, sir, and she writ this heer; and begged of me fur to ask\nyou to read it, and if you see no hurt in't, to be so kind as take\ncharge on't.'\n\n'Have you read it?' said I.\n\nHe nodded sorrowfully.  I opened it, and read as follows:\n\n\n'I have got your message.  Oh, what can I write, to thank you for\nyour good and blessed kindness to me!\n\n'I have put the words close to my heart.  I shall keep them till I\ndie.  They are sharp thorns, but they are such comfort.  I have\nprayed over them, oh, I have prayed so much.  When I find what you\nare, and what uncle is, I think what God must be, and can cry to\nhim.\n\n'Good-bye for ever.  Now, my dear, my friend, good-bye for ever in\nthis world.  In another world, if I am forgiven, I may wake a child\nand come to you.  All thanks and blessings.  Farewell, evermore.'\n\n\nThis, blotted with tears, was the letter.\n\n'May I tell her as you doen't see no hurt in't, and as you'll be so\nkind as take charge on't, Mas'r Davy?' said Mr. Peggotty, when I\nhad read it.\n'Unquestionably,' said I - 'but I am thinking -'\n\n'Yes, Mas'r Davy?'\n\n'I am thinking,' said I, 'that I'll go down again to Yarmouth. \nThere's time, and to spare, for me to go and come back before the\nship sails.  My mind is constantly running on him, in his solitude;\nto put this letter of her writing in his hand at this time, and to\nenable you to tell her, in the moment of parting, that he has got\nit, will be a kindness to both of them.  I solemnly accepted his\ncommission, dear good fellow, and cannot discharge it too\ncompletely.  The journey is nothing to me.  I am restless, and\nshall be better in motion.  I'll go down tonight.'\n\nThough he anxiously endeavoured to dissuade me, I saw that he was\nof my mind; and this, if I had required to be confirmed in my\nintention, would have had the effect.  He went round to the coach\noffice, at my request, and took the box-seat for me on the mail. \nIn the evening I started, by that conveyance, down the road I had\ntraversed under so many vicissitudes.\n\n'Don't you think that,' I asked the coachman, in the first stage\nout of London, 'a very remarkable sky?  I don't remember to have\nseen one like it.'\n\n'Nor I - not equal to it,' he replied.  'That's wind, sir. \nThere'll be mischief done at sea, I expect, before long.'\n\nIt was a murky confusion - here and there blotted with a colour\nlike the colour of the smoke from damp fuel - of flying clouds,\ntossed up into most remarkable heaps, suggesting greater heights in\nthe clouds than there were depths below them to the bottom of the\ndeepest hollows in the earth, through which the wild moon seemed to\nplunge headlong, as if, in a dread disturbance of the laws of\nnature, she had lost her way and were frightened.  There had been\na wind all day; and it was rising then, with an extraordinary great\nsound.  In another hour it had much increased, and the sky was more\novercast, and blew hard.\n\nBut, as the night advanced, the clouds closing in and densely\nover-spreading the whole sky, then very dark, it came on to blow,\nharder and harder.  It still increased, until our horses could\nscarcely face the wind.  Many times, in the dark part of the night\n(it was then late in September, when the nights were not short),\nthe leaders turned about, or came to a dead stop; and we were often\nin serious apprehension that the coach would be blown over. \nSweeping gusts of rain came up before this storm, like showers of\nsteel; and, at those times, when there was any shelter of trees or\nlee walls to be got, we were fain to stop, in a sheer impossibility\nof continuing the struggle.\n\nWhen the day broke, it blew harder and harder.  I had been in\nYarmouth when the seamen said it blew great guns, but I had never\nknown the like of this, or anything approaching to it.  We came to\nIpswich - very late, having had to fight every inch of ground since\nwe were ten miles out of London; and found a cluster of people in\nthe market-place, who had risen from their beds in the night,\nfearful of falling chimneys.  Some of these, congregating about the\ninn-yard while we changed horses, told us of great sheets of lead\nhaving been ripped off a high church-tower, and flung into a\nby-street, which they then blocked up.  Others had to tell of\ncountry people, coming in from neighbouring villages, who had seen\ngreat trees lying torn out of the earth, and whole ricks scattered\nabout the roads and fields.  Still, there was no abatement in the\nstorm, but it blew harder.\n\nAs we struggled on, nearer and nearer to the sea, from which this\nmighty wind was blowing dead on shore, its force became more and\nmore terrific.  Long before we saw the sea, its spray was on our\nlips, and showered salt rain upon us.  The water was out, over\nmiles and miles of the flat country adjacent to Yarmouth; and every\nsheet and puddle lashed its banks, and had its stress of little\nbreakers setting heavily towards us.  When we came within sight of\nthe sea, the waves on the horizon, caught at intervals above the\nrolling abyss, were like glimpses of another shore with towers and\nbuildings.  When at last we got into the town, the people came out\nto their doors, all aslant, and with streaming hair, making a\nwonder of the mail that had come through such a night.\n\nI put up at the old inn, and went down to look at the sea;\nstaggering along the street, which was strewn with sand and\nseaweed, and with flying blotches of sea-foam; afraid of falling\nslates and tiles; and holding by people I met, at angry corners. \nComing near the beach, I saw, not only the boatmen, but half the\npeople of the town, lurking behind buildings; some, now and then\nbraving the fury of the storm to look away to sea, and blown sheer\nout of their course in trying to get zigzag back.\n\njoining these groups, I found bewailing women whose husbands were\naway in herring or oyster boats, which there was too much reason to\nthink might have foundered before they could run in anywhere for\nsafety.  Grizzled old sailors were among the people, shaking their\nheads, as they looked from water to sky, and muttering to one\nanother; ship-owners, excited and uneasy; children, huddling\ntogether, and peering into older faces; even stout mariners,\ndisturbed and anxious, levelling their glasses at the sea from\nbehind places of shelter, as if they were surveying an enemy.\n\nThe tremendous sea itself, when I could find sufficient pause to\nlook at it, in the agitation of the blinding wind, the flying\nstones and sand, and the awful noise, confounded me.  As the high\nwatery walls came rolling in, and, at their highest, tumbled into\nsurf, they looked as if the least would engulf the town.  As the\nreceding wave swept back with a hoarse roar, it seemed to scoop out\ndeep caves in the beach, as if its purpose were to undermine the\nearth.  When some white-headed billows thundered on, and dashed\nthemselves to pieces before they reached the land, every fragment\nof the late whole seemed possessed by the full might of its wrath,\nrushing to be gathered to the composition of another monster. \nUndulating hills were changed to valleys, undulating valleys (with\na solitary storm-bird sometimes skimming through them) were lifted\nup to hills; masses of water shivered and shook the beach with a\nbooming sound; every shape tumultuously rolled on, as soon as made,\nto change its shape and place, and beat another shape and place\naway; the ideal shore on the horizon, with its towers and\nbuildings, rose and fell; the clouds fell fast and thick; I seemed\nto see a rending and upheaving of all nature.\n\nNot finding Ham among the people whom this memorable wind - for it\nis still remembered down there, as the greatest ever known to blow\nupon that coast - had brought together, I made my way to his house. \nIt was shut; and as no one answered to my knocking, I went, by back\nways and by-lanes, to the yard where he worked.  I learned, there,\nthat he had gone to Lowestoft, to meet some sudden exigency of\nship-repairing in which his skill was required; but that he would\nbe back tomorrow morning, in good time.\n\nI went back to the inn; and when I had washed and dressed, and\ntried to sleep, but in vain, it was five o'clock in the afternoon. \nI had not sat five minutes by the coffee-room fire, when the\nwaiter, coming to stir it, as an excuse for talking, told me that\ntwo colliers had gone down, with all hands, a few miles away; and\nthat some other ships had been seen labouring hard in the Roads,\nand trying, in great distress, to keep off shore.  Mercy on them,\nand on all poor sailors, said he, if we had another night like the\nlast!\n\nI was very much depressed in spirits; very solitary; and felt an\nuneasiness in Ham's not being there, disproportionate to the\noccasion.  I was seriously affected, without knowing how much, by\nlate events; and my long exposure to the fierce wind had confused\nme.  There was that jumble in my thoughts and recollections, that\nI had lost the clear arrangement of time and distance.  Thus, if I\nhad gone out into the town, I should not have been surprised, I\nthink, to encounter someone who I knew must be then in London.  So\nto speak, there was in these respects a curious inattention in my\nmind.  Yet it was busy, too, with all the remembrances the place\nnaturally awakened; and they were particularly distinct and vivid.\n\nIn this state, the waiter's dismal intelligence about the ships\nimmediately connected itself, without any effort of my volition,\nwith my uneasiness about Ham.  I was persuaded that I had an\napprehension of his returning from Lowestoft by sea, and being\nlost.  This grew so strong with me, that I resolved to go back to\nthe yard before I took my dinner, and ask the boat-builder if he\nthought his attempting to return by sea at all likely?  If he gave\nme the least reason to think so, I would go over to Lowestoft and\nprevent it by bringing him with me.\n\nI hastily ordered my dinner, and went back to the yard.  I was none\ntoo soon; for the boat-builder, with a lantern in his hand, was\nlocking the yard-gate.  He quite laughed when I asked him the\nquestion, and said there was no fear; no man in his senses, or out\nof them, would put off in such a gale of wind, least of all Ham\nPeggotty, who had been born to seafaring.\n\nSo sensible of this, beforehand, that I had really felt ashamed of\ndoing what I was nevertheless impelled to do, I went back to the\ninn.  If such a wind could rise, I think it was rising.  The howl\nand roar, the rattling of the doors and windows, the rumbling in\nthe chimneys, the apparent rocking of the very house that sheltered\nme, and the prodigious tumult of the sea, were more fearful than in\nthe morning.  But there was now a great darkness besides; and that\ninvested the storm with new terrors, real and fanciful.\n\nI could not eat, I could not sit still, I could not continue\nsteadfast to anything.  Something within me, faintly answering to\nthe storm without, tossed up the depths of my memory and made a\ntumult in them.  Yet, in all the hurry of my thoughts, wild running\nwith the thundering sea, - the storm, and my uneasiness regarding\nHam were always in the fore-ground.\n\nMy dinner went away almost untasted, and I tried to refresh myself\nwith a glass or two of wine.  In vain.  I fell into a dull slumber\nbefore the fire, without losing my consciousness, either of the\nuproar out of doors, or of the place in which I was.  Both became\novershadowed by a new and indefinable horror; and when I awoke - or\nrather when I shook off the lethargy that bound me in my chair- my\nwhole frame thrilled with objectless and unintelligible fear.\n\nI walked to and fro, tried to read an old gazetteer, listened to\nthe awful noises: looked at faces, scenes, and figures in the fire. \nAt length, the steady ticking of the undisturbed clock on the wall\ntormented me to that degree that I resolved to go to bed.\n\nIt was reassuring, on such a night, to be told that some of the\ninn-servants had agreed together to sit up until morning.  I went\nto bed, exceedingly weary and heavy; but, on my lying down, all\nsuch sensations vanished, as if by magic, and I was broad awake,\nwith every sense refined.\n\nFor hours I lay there, listening to the wind and water; imagining,\nnow, that I heard shrieks out at sea; now, that I distinctly heard\nthe firing of signal guns; and now, the fall of houses in the town. \nI got up, several times, and looked out; but could see nothing,\nexcept the reflection in the window-panes of the faint candle I had\nleft burning, and of my own haggard face looking in at me from the\nblack void.\n\nAt length, my restlessness attained to such a pitch, that I hurried\non my clothes, and went downstairs.  In the large kitchen, where I\ndimly saw bacon and ropes of onions hanging from the beams, the\nwatchers were clustered together, in various attitudes, about a\ntable, purposely moved away from the great chimney, and brought\nnear the door.  A pretty girl, who had her ears stopped with her\napron, and her eyes upon the door, screamed when I appeared,\nsupposing me to be a spirit; but the others had more presence of\nmind, and were glad of an addition to their company.  One man,\nreferring to the topic they had been discussing, asked me whether\nI thought the souls of the collier-crews who had gone down, were\nout in the storm?\n\nI remained there, I dare say, two hours.  Once, I opened the\nyard-gate, and looked into the empty street.  The sand, the\nsea-weed, and the flakes of foam, were driving by; and I was\nobliged to call for assistance before I could shut the gate again,\nand make it fast against the wind.\n\nThere was a dark gloom in my solitary chamber, when I at length\nreturned to it; but I was tired now, and, getting into bed again,\nfell - off a tower and down a precipice - into the depths of sleep. \nI have an impression that for a long time, though I dreamed of\nbeing elsewhere and in a variety of scenes, it was always blowing\nin my dream.  At length, I lost that feeble hold upon reality, and\nwas engaged with two dear friends, but who they were I don't know,\nat the siege of some town in a roar of cannonading.\n\nThe thunder of the cannon was so loud and incessant, that I could\nnot hear something I much desired to hear, until I made a great\nexertion and awoke.  It was broad day - eight or nine o'clock; the\nstorm raging, in lieu of the batteries; and someone knocking and\ncalling at my door.\n\n'What is the matter?' I cried.\n\n'A wreck! Close by!'\n\nI sprung out of bed, and asked, what wreck?\n\n'A schooner, from Spain or Portugal, laden with fruit and wine. \nMake haste, sir, if you want to see her! It's thought, down on the\nbeach, she'll go to pieces every moment.'\n\nThe excited voice went clamouring along the staircase; and I\nwrapped myself in my clothes as quickly as I could, and ran into\nthe street.\n\nNumbers of people were there before me, all running in one\ndirection, to the beach.  I ran the same way, outstripping a good\nmany, and soon came facing the wild sea.\n\nThe wind might by this time have lulled a little, though not more\nsensibly than if the cannonading I had dreamed of, had been\ndiminished by the silencing of half-a-dozen guns out of hundreds. \nBut the sea, having upon it the additional agitation of the whole\nnight, was infinitely more terrific than when I had seen it last. \nEvery appearance it had then presented, bore the expression of\nbeing swelled; and the height to which the breakers rose, and,\nlooking over one another, bore one another down, and rolled in, in\ninterminable hosts, was most appalling.\nIn the difficulty of hearing anything but wind and waves, and in\nthe crowd, and the unspeakable confusion, and my first breathless\nefforts to stand against the weather, I was so confused that I\nlooked out to sea for the wreck, and saw nothing but the foaming\nheads of the great waves.  A half-dressed boatman, standing next\nme, pointed with his bare arm (a tattoo'd arrow on it, pointing in\nthe same direction) to the left.  Then, O great Heaven, I saw it,\nclose in upon us!\n\nOne mast was broken short off, six or eight feet from the deck, and\nlay over the side, entangled in a maze of sail and rigging; and all\nthat ruin, as the ship rolled and beat - which she did without a\nmoment's pause, and with a violence quite inconceivable - beat the\nside as if it would stave it in.  Some efforts were even then being\nmade, to cut this portion of the wreck away; for, as the ship,\nwhich was broadside on, turned towards us in her rolling, I plainly\ndescried her people at work with axes, especially one active figure\nwith long curling hair, conspicuous among the rest.  But a great\ncry, which was audible even above the wind and water, rose from the\nshore at this moment; the sea, sweeping over the rolling wreck,\nmade a clean breach, and carried men, spars, casks, planks,\nbulwarks, heaps of such toys, into the boiling surge.\n\nThe second mast was yet standing, with the rags of a rent sail, and\na wild confusion of broken cordage flapping to and fro.  The ship\nhad struck once, the same boatman hoarsely said in my ear, and then\nlifted in and struck again.  I understood him to add that she was\nparting amidships, and I could readily suppose so, for the rolling\nand beating were too tremendous for any human work to suffer long. \nAs he spoke, there was another great cry of pity from the beach;\nfour men arose with the wreck out of the deep, clinging to the\nrigging of the remaining mast; uppermost, the active figure with\nthe curling hair.\n\nThere was a bell on board; and as the ship rolled and dashed, like\na desperate creature driven mad, now showing us the whole sweep of\nher deck, as she turned on her beam-ends towards the shore, now\nnothing but her keel, as she sprung wildly over and turned towards\nthe sea, the bell rang; and its sound, the knell of those unhappy\nmen, was borne towards us on the wind.  Again we lost her, and\nagain she rose.  Two men were gone.  The agony on the shore\nincreased.  Men groaned, and clasped their hands; women shrieked,\nand turned away their faces.  Some ran wildly up and down along the\nbeach, crying for help where no help could be.  I found myself one\nof these, frantically imploring a knot of sailors whom I knew, not\nto let those two lost creatures perish before our eyes.\n\nThey were making out to me, in an agitated way - I don't know how,\nfor the little I could hear I was scarcely composed enough to\nunderstand - that the lifeboat had been bravely manned an hour ago,\nand could do nothing; and that as no man would be so desperate as\nto attempt to wade off with a rope, and establish a communication\nwith the shore, there was nothing left to try; when I noticed that\nsome new sensation moved the people on the beach, and saw them\npart, and Ham come breaking through them to the front.\n\nI ran to him - as well as I know, to repeat my appeal for help. \nBut, distracted though I was, by a sight so new to me and terrible,\nthe determination in his face, and his look out to sea - exactly\nthe same look as I remembered in connexion with the morning after\nEmily's flight - awoke me to a knowledge of his danger.  I held him\nback with both arms; and implored the men with whom I had been\nspeaking, not to listen to him, not to do murder, not to let him\nstir from off that sand!\n\nAnother cry arose on shore; and looking to the wreck, we saw the\ncruel sail, with blow on blow, beat off the lower of the two men,\nand fly up in triumph round the active figure left alone upon the\nmast.\n\nAgainst such a sight, and against such determination as that of the\ncalmly desperate man who was already accustomed to lead half the\npeople present, I might as hopefully have entreated the wind. \n'Mas'r Davy,' he said, cheerily grasping me by both hands, 'if my\ntime is come, 'tis come.  If 'tan't, I'll bide it.  Lord above\nbless you, and bless all! Mates, make me ready! I'm a-going off!'\n\nI was swept away, but not unkindly, to some distance, where the\npeople around me made me stay; urging, as I confusedly perceived,\nthat he was bent on going, with help or without, and that I should\nendanger the precautions for his safety by troubling those with\nwhom they rested.  I don't know what I answered, or what they\nrejoined; but I saw hurry on the beach, and men running with ropes\nfrom a capstan that was there, and penetrating into a circle of\nfigures that hid him from me.  Then, I saw him standing alone, in\na seaman's frock and trousers: a rope in his hand, or slung to his\nwrist: another round his body: and several of the best men holding,\nat a little distance, to the latter, which he laid out himself,\nslack upon the shore, at his feet.\n\nThe wreck, even to my unpractised eye, was breaking up.  I saw that\nshe was parting in the middle, and that the life of the solitary\nman upon the mast hung by a thread.  Still, he clung to it.  He had\na singular red cap on, - not like a sailor's cap, but of a finer\ncolour; and as the few yielding planks between him and destruction\nrolled and bulged, and his anticipative death-knell rung, he was\nseen by all of us to wave it.  I saw him do it now, and thought I\nwas going distracted, when his action brought an old remembrance to\nmy mind of a once dear friend.\n\nHam watched the sea, standing alone, with the silence of suspended\nbreath behind him, and the storm before, until there was a great\nretiring wave, when, with a backward glance at those who held the\nrope which was made fast round his body, he dashed in after it, and\nin a moment was buffeting with the water; rising with the hills,\nfalling with the valleys, lost beneath the foam; then drawn again\nto land.  They hauled in hastily.\n\nHe was hurt.  I saw blood on his face, from where I stood; but he\ntook no thought of that.  He seemed hurriedly to give them some\ndirections for leaving him more free - or so I judged from the\nmotion of his arm - and was gone as before.\n\nAnd now he made for the wreck, rising with the hills, falling with\nthe valleys, lost beneath the rugged foam, borne in towards the\nshore, borne on towards the ship, striving hard and valiantly.  The\ndistance was nothing, but the power of the sea and wind made the\nstrife deadly.  At length he neared the wreck.  He was so near,\nthat with one more of his vigorous strokes he would be clinging to\nit, - when a high, green, vast hill-side of water, moving on\nshoreward, from beyond the ship, he seemed to leap up into it with\na mighty bound, and the ship was gone!\n\nSome eddying fragments I saw in the sea, as if a mere cask had been\nbroken, in running to the spot where they were hauling in. \nConsternation was in every face.  They drew him to my very feet -\ninsensible - dead.  He was carried to the nearest house; and, no\none preventing me now, I remained near him, busy, while every means\nof restoration were tried; but he had been beaten to death by the\ngreat wave, and his generous heart was stilled for ever.\n\nAs I sat beside the bed, when hope was abandoned and all was done,\na fisherman, who had known me when Emily and I were children, and\never since, whispered my name at the door.\n\n'Sir,' said he, with tears starting to his weather-beaten face,\nwhich, with his trembling lips, was ashy pale, 'will you come over\nyonder?'\n\nThe old remembrance that had been recalled to me, was in his look. \nI asked him, terror-stricken, leaning on the arm he held out to\nsupport me:\n\n'Has a body come ashore?'\n\nHe said, 'Yes.'\n\n'Do I know it?' I asked then.\n\nHe answered nothing.\n\nBut he led me to the shore.  And on that part of it where she and\nI had looked for shells, two children - on that part of it where\nsome lighter fragments of the old boat, blown down last night, had\nbeen scattered by the wind - among the ruins of the home he had\nwronged - I saw him lying with his head upon his arm, as I had\noften seen him lie at school.\n\n\n\nCHAPTER 56\nTHE NEW WOUND, AND THE OLD\n\nNo need, O Steerforth, to have said, when we last spoke together,\nin that hour which I so little deemed to be our parting-hour - no\nneed to have said, 'Think of me at my best!' I had done that ever;\nand could I change now, looking on this sight!\n\nThey brought a hand-bier, and laid him on it, and covered him with\na flag, and took him up and bore him on towards the houses.  All\nthe men who carried him had known him, and gone sailing with him,\nand seen him merry and bold.  They carried him through the wild\nroar, a hush in the midst of all the tumult; and took him to the\ncottage where Death was already.\n\nBut when they set the bier down on the threshold, they looked at\none another, and at me, and whispered.  I knew why.  They felt as\nif it were not right to lay him down in the same quiet room.\n\nWe went into the town, and took our burden to the inn.  So soon as\nI could at all collect my thoughts, I sent for Joram, and begged\nhim to provide me a conveyance in which it could be got to London\nin the night.  I knew that the care of it, and the hard duty of\npreparing his mother to receive it, could only rest with me; and I\nwas anxious to discharge that duty as faithfully as I could.\n\nI chose the night for the journey, that there might be less\ncuriosity when I left the town.  But, although it was nearly\nmidnight when I came out of the yard in a chaise, followed by what\nI had in charge, there were many people waiting.  At intervals,\nalong the town, and even a little way out upon the road, I saw\nmore: but at length only the bleak night and the open country were\naround me, and the ashes of my youthful friendship.\n\nUpon a mellow autumn day, about noon, when the ground was perfumed\nby fallen leaves, and many more, in beautiful tints of yellow, red,\nand brown, yet hung upon the trees, through which the sun was\nshining, I arrived at Highgate.  I walked the last mile, thinking\nas I went along of what I had to do; and left the carriage that had\nfollowed me all through the night, awaiting orders to advance.\n\nThe house, when I came up to it, looked just the same.  Not a blind\nwas raised; no sign of life was in the dull paved court, with its\ncovered way leading to the disused door.  The wind had quite gone\ndown, and nothing moved.\n\nI had not, at first, the courage to ring at the gate; and when I\ndid ring, my errand seemed to me to be expressed in the very sound\nof the bell.  The little parlour-maid came out, with the key in her\nhand; and looking earnestly at me as she unlocked the gate, said:\n\n'I beg your pardon, sir.  Are you ill?'\n\n'I have been much agitated, and am fatigued.'\n\n'Is anything the matter, sir?  - Mr. James?  -'\n'Hush!' said I.  'Yes, something has happened, that I have to break\nto Mrs. Steerforth.  She is at home?'\n\nThe girl anxiously replied that her mistress was very seldom out\nnow, even in a carriage; that she kept her room; that she saw no\ncompany, but would see me.  Her mistress was up, she said, and Miss\nDartle was with her.  What message should she take upstairs?\n\nGiving her a strict charge to be careful of her manner, and only to\ncarry in my card and say I waited, I sat down in the drawing-room\n(which we had now reached) until she should come back.  Its former\npleasant air of occupation was gone, and the shutters were half\nclosed.  The harp had not been used for many and many a day.  His\npicture, as a boy, was there.  The cabinet in which his mother had\nkept his letters was there.  I wondered if she ever read them now;\nif she would ever read them more!\n\nThe house was so still that I heard the girl's light step upstairs. \nOn her return, she brought a message, to the effect that Mrs.\nSteerforth was an invalid and could not come down; but that if I\nwould excuse her being in her chamber, she would be glad to see me. \nIn a few moments I stood before her.\n\nShe was in his room; not in her own.  I felt, of course, that she\nhad taken to occupy it, in remembrance of him; and that the many\ntokens of his old sports and accomplishments, by which she was\nsurrounded, remained there, just as he had left them, for the same\nreason.  She murmured, however, even in her reception of me, that\nshe was out of her own chamber because its aspect was unsuited to\nher infirmity; and with her stately look repelled the least\nsuspicion of the truth.\n\nAt her chair, as usual, was Rosa Dartle.  From the first moment of\nher dark eyes resting on me, I saw she knew I was the bearer of\nevil tidings.  The scar sprung into view that instant.  She\nwithdrew herself a step behind the chair, to keep her own face out\nof Mrs. Steerforth's observation; and scrutinized me with a\npiercing gaze that never faltered, never shrunk.\n\n'I am sorry to observe you are in mourning, sir,' said Mrs.\nSteerforth.\n\n'I am unhappily a widower,' said I.\n\n'You are very young to know so great a loss,' she returned.  'I am\ngrieved to hear it.  I am grieved to hear it.  I hope Time will be\ngood to you.'\n\n'I hope Time,' said I, looking at her, 'will be good to all of us. \nDear Mrs. Steerforth, we must all trust to that, in our heaviest\nmisfortunes.'\n\nThe earnestness of my manner, and the tears in my eyes, alarmed\nher.  The whole course of her thoughts appeared to stop, and\nchange.\n\nI tried to command my voice in gently saying his name, but it\ntrembled.  She repeated it to herself, two or three times, in a low\ntone.  Then, addressing me, she said, with enforced calmness:\n\n'My son is ill.'\n\n'Very ill.'\n\n'You have seen him?'\n\n'I have.'\n\n'Are you reconciled?'\n\nI could not say Yes, I could not say No.  She slightly turned her\nhead towards the spot where Rosa Dartle had been standing at her\nelbow, and in that moment I said, by the motion of my lips, to\nRosa, 'Dead!'\n\nThat Mrs. Steerforth might not be induced to look behind her, and\nread, plainly written, what she was not yet prepared to know, I met\nher look quickly; but I had seen Rosa Dartle throw her hands up in\nthe air with vehemence of despair and horror, and then clasp them\non her face.\n\nThe handsome lady - so like, oh so like! - regarded me with a fixed\nlook, and put her hand to her forehead.  I besought her to be calm,\nand prepare herself to bear what I had to tell; but I should rather\nhave entreated her to weep, for she sat like a stone figure.\n\n'When I was last here,' I faltered, 'Miss Dartle told me he was\nsailing here and there.  The night before last was a dreadful one\nat sea.  If he were at sea that night, and near a dangerous coast,\nas it is said he was; and if the vessel that was seen should really\nbe the ship which -'\n\n'Rosa!' said Mrs. Steerforth, 'come to me!'\n\nShe came, but with no sympathy or gentleness.  Her eyes gleamed\nlike fire as she confronted his mother, and broke into a frightful\nlaugh.\n\n'Now,' she said, 'is your pride appeased, you madwoman?  Now has he\nmade atonement to you - with his life! Do you hear?  - His life!'\n\nMrs. Steerforth, fallen back stiffly in her chair, and making no\nsound but a moan, cast her eyes upon her with a wide stare.\n\n'Aye!' cried Rosa, smiting herself passionately on the breast,\n'look at me! Moan, and groan, and look at me! Look here!' striking\nthe scar, 'at your dead child's handiwork!'\n\nThe moan the mother uttered, from time to time, went to My heart. \nAlways the same.  Always inarticulate and stifled.  Always\naccompanied with an incapable motion of the head, but with no\nchange of face.  Always proceeding from a rigid mouth and closed\nteeth, as if the jaw were locked and the face frozen up in pain.\n\n'Do you remember when he did this?' she proceeded.  'Do you\nremember when, in his inheritance of your nature, and in your\npampering of his pride and passion, he did this, and disfigured me\nfor life?  Look at me, marked until I die with his high\ndispleasure; and moan and groan for what you made him!'\n\n'Miss Dartle,' I entreated her.  'For Heaven's sake -'\n\n'I WILL speak!' she said, turning on me with her lightning eyes. \n'Be silent, you! Look at me, I say, proud mother of a proud, false\nson! Moan for your nurture of him, moan for your corruption of him,\nmoan for your loss of him, moan for mine!'\n\nShe clenched her hand, and trembled through her spare, worn figure,\nas if her passion were killing her by inches.\n\n'You, resent his self-will!' she exclaimed.  'You, injured by his\nhaughty temper! You, who opposed to both, when your hair was grey,\nthe qualities which made both when you gave him birth! YOU, who\nfrom his cradle reared him to be what he was, and stunted what he\nshould have been! Are you rewarded, now, for your years of\ntrouble?'\n\n'Oh, Miss Dartle, shame! Oh cruel!'\n\n'I tell you,' she returned, 'I WILL speak to her.  No power on\nearth should stop me, while I was standing here! Have I been silent\nall these years, and shall I not speak now?  I loved him better\nthan you ever loved him!' turning on her fiercely.  'I could have\nloved him, and asked no return.  If I had been his wife, I could\nhave been the slave of his caprices for a word of love a year.  I\nshould have been.  Who knows it better than I?  You were exacting,\nproud, punctilious, selfish.  My love would have been devoted -\nwould have trod your paltry whimpering under foot!'\n\nWith flashing eyes, she stamped upon the ground as if she actually\ndid it.\n\n'Look here!' she said, striking the scar again, with a relentless\nhand.  'When he grew into the better understanding of what he had\ndone, he saw it, and repented of it! I could sing to him, and talk\nto him, and show the ardour that I felt in all he did, and attain\nwith labour to such knowledge as most interested him; and I\nattracted him.  When he was freshest and truest, he loved me.  Yes,\nhe did! Many a time, when you were put off with a slight word, he\nhas taken Me to his heart!'\n\nShe said it with a taunting pride in the midst of her frenzy - for\nit was little less - yet with an eager remembrance of it, in which\nthe smouldering embers of a gentler feeling kindled for the moment.\n\n'I descended - as I might have known I should, but that he\nfascinated me with his boyish courtship - into a doll, a trifle for\nthe occupation of an idle hour, to be dropped, and taken up, and\ntrifled with, as the inconstant humour took him.  When he grew\nweary, I grew weary.  As his fancy died out, I would no more have\ntried to strengthen any power I had, than I would have married him\non his being forced to take me for his wife.  We fell away from one\nanother without a word.  Perhaps you saw it, and were not sorry. \nSince then, I have been a mere disfigured piece of furniture\nbetween you both; having no eyes, no ears, no feelings, no\nremembrances.  Moan?  Moan for what you made him; not for your\nlove.  I tell you that the time was, when I loved him better than\nyou ever did!'\n\nShe stood with her bright angry eyes confronting the wide stare,\nand the set face; and softened no more, when the moaning was\nrepeated, than if the face had been a picture.\n\n'Miss Dartle,' said I, 'if you can be so obdurate as not to feel\nfor this afflicted mother -'\n\n'Who feels for me?' she sharply retorted.  'She has sown this.  Let\nher moan for the harvest that she reaps today!'\n\n'And if his faults -' I began.\n\n'Faults!' she cried, bursting into passionate tears.  'Who dares\nmalign him?  He had a soul worth millions of the friends to whom he\nstooped!' \n\n'No one can have loved him better, no one can hold him in dearer\nremembrance than I,' I replied.  'I meant to say, if you have no\ncompassion for his mother; or if his faults - you have been bitter\non them -'\n\n'It's false,' she cried, tearing her black hair; 'I loved him!'\n\n'- if his faults cannot,' I went on, 'be banished from your\nremembrance, in such an hour; look at that figure, even as one you\nhave never seen before, and render it some help!'\n\nAll this time, the figure was unchanged, and looked unchangeable. \nMotionless, rigid, staring; moaning in the same dumb way from time\nto time, with the same helpless motion of the head; but giving no\nother sign of life.  Miss Dartle suddenly kneeled down before it,\nand began to loosen the dress.\n\n'A curse upon you!' she said, looking round at me, with a mingled\nexpression of rage and grief.  'It was in an evil hour that you\never came here! A curse upon you! Go!'\n\nAfter passing out of the room, I hurried back to ring the bell, the\nsooner to alarm the servants.  She had then taken the impassive\nfigure in her arms, and, still upon her knees, was weeping over it,\nkissing it, calling to it, rocking it to and fro upon her bosom\nlike a child, and trying every tender means to rouse the dormant\nsenses.  No longer afraid of leaving her, I noiselessly turned back\nagain; and alarmed the house as I went out.\n\nLater in the day, I returned, and we laid him in his mother's room. \nShe was just the same, they told me; Miss Dartle never left her;\ndoctors were in attendance, many things had been tried; but she lay\nlike a statue, except for the low sound now and then.\n\nI went through the dreary house, and darkened the windows.  The\nwindows of the chamber where he lay, I darkened last.  I lifted up\nthe leaden hand, and held it to my heart; and all the world seemed\ndeath and silence, broken only by his mother's moaning.\n\n\n\nCHAPTER 57\nTHE EMIGRANTS\n\n\nOne thing more, I had to do, before yielding myself to the shock of\nthese emotions.  It was, to conceal what had occurred, from those\nwho were going away; and to dismiss them on their voyage in happy\nignorance.  In this, no time was to be lost.\n\nI took Mr. Micawber aside that same night, and confided to him the\ntask of standing between Mr. Peggotty and intelligence of the late\ncatastrophe.  He zealously undertook to do so, and to intercept any\nnewspaper through which it might, without such precautions, reach\nhim.\n\n'If it penetrates to him, sir,' said Mr. Micawber, striking himself\non the breast, 'it shall first pass through this body!'\n\nMr. Micawber, I must observe, in his adaptation of himself to a new\nstate of society, had acquired a bold buccaneering air, not\nabsolutely lawless, but defensive and prompt.  One might have\nsupposed him a child of the wilderness, long accustomed to live out\nof the confines of civilization, and about to return to his native\nwilds.\n\nHe had provided himself, among other things, with a complete suit\nof oilskin, and a straw hat with a very low crown, pitched or\ncaulked on the outside.  In this rough clothing, with a common\nmariner's telescope under his arm, and a shrewd trick of casting up\nhis eye at the sky as looking out for dirty weather, he was far\nmore nautical, after his manner, than Mr. Peggotty.  His whole\nfamily, if I may so express it, were cleared for action.  I found\nMrs. Micawber in the closest and most uncompromising of bonnets,\nmade fast under the chin; and in a shawl which tied her up (as I\nhad been tied up, when my aunt first received me) like a bundle,\nand was secured behind at the waist, in a strong knot.  Miss\nMicawber I found made snug for stormy weather, in the same manner;\nwith nothing superfluous about her.  Master Micawber was hardly\nvisible in a Guernsey shirt, and the shaggiest suit of slops I ever\nsaw; and the children were done up, like preserved meats, in\nimpervious cases.  Both Mr. Micawber and his eldest son wore their\nsleeves loosely turned back at the wrists, as being ready to lend\na hand in any direction, and to 'tumble up', or sing out, 'Yeo -\nHeave - Yeo!' on the shortest notice.\n\nThus Traddles and I found them at nightfall, assembled on the\nwooden steps, at that time known as Hungerford Stairs, watching the\ndeparture of a boat with some of their property on board.  I had\ntold Traddles of the terrible event, and it had greatly shocked\nhim; but there could be no doubt of the kindness of keeping it a\nsecret, and he had come to help me in this last service.  It was\nhere that I took Mr. Micawber aside, and received his promise.\n\nThe Micawber family were lodged in a little, dirty, tumble-down\npublic-house, which in those days was close to the stairs, and\nwhose protruding wooden rooms overhung the river.  The family, as\nemigrants, being objects of some interest in and about Hungerford,\nattracted so many beholders, that we were glad to take refuge in\ntheir room.  It was one of the wooden chambers upstairs, with the\ntide flowing underneath.  My aunt and Agnes were there, busily\nmaking some little extra comforts, in the way of dress, for the\nchildren.  Peggotty was quietly assisting, with the old insensible\nwork-box, yard-measure, and bit of wax-candle before her, that had\nnow outlived so much.\n\nIt was not easy to answer her inquiries; still less to whisper Mr.\nPeggotty, when Mr. Micawber brought him in, that I had given the\nletter, and all was well.  But I did both, and made them happy.  If\nI showed any trace of what I felt, my own sorrows were sufficient\nto account for it.\n\n'And when does the ship sail, Mr. Micawber?' asked my aunt.\n\nMr. Micawber considered it necessary to prepare either my aunt or\nhis wife, by degrees, and said, sooner than he had expected\nyesterday.\n\n'The boat brought you word, I suppose?' said my aunt.\n\n'It did, ma'am,' he returned.\n\n'Well?' said my aunt.  'And she sails -'\n\n'Madam,' he replied, 'I am informed that we must positively be on\nboard before seven tomorrow morning.'\n\n'Heyday!' said my aunt, 'that's soon.  Is it a sea-going fact, Mr.\nPeggotty?'\n''Tis so, ma'am.  She'll drop down the river with that theer tide. \nIf Mas'r Davy and my sister comes aboard at Gravesen', arternoon o'\nnext day, they'll see the last on us.'\n\n'And that we shall do,' said I, 'be sure!'\n\n'Until then, and until we are at sea,' observed Mr. Micawber, with\na glance of intelligence at me, 'Mr. Peggotty and myself will\nconstantly keep a double look-out together, on our goods and\nchattels.  Emma, my love,' said Mr. Micawber, clearing his throat\nin his magnificent way, 'my friend Mr. Thomas Traddles is so\nobliging as to solicit, in my ear, that he should have the\nprivilege of ordering the ingredients necessary to the composition\nof a moderate portion of that Beverage which is peculiarly\nassociated, in our minds, with the Roast Beef of Old England.  I\nallude to - in short, Punch.  Under ordinary circumstances, I\nshould scruple to entreat the indulgence of Miss Trotwood and Miss\nWickfield, but-'\n\n'I can only say for myself,' said my aunt, 'that I will drink all\nhappiness and success to you, Mr. Micawber, with the utmost\npleasure.'\n\n'And I too!' said Agnes, with a smile.\n\nMr. Micawber immediately descended to the bar, where he appeared to\nbe quite at home; and in due time returned with a steaming jug.  I\ncould not but observe that he had been peeling the lemons with his\nown clasp-knife, which, as became the knife of a practical settler,\nwas about a foot long; and which he wiped, not wholly without\nostentation, on the sleeve of his coat.  Mrs. Micawber and the two\nelder members of the family I now found to be provided with similar\nformidable instruments, while every child had its own wooden spoon\nattached to its body by a strong line.  In a similar anticipation\nof life afloat, and in the Bush, Mr. Micawber, instead of helping\nMrs. Micawber and his eldest son and daughter to punch, in\nwine-glasses, which he might easily have done, for there was a\nshelf-full in the room, served it out to them in a series of\nvillainous little tin pots; and I never saw him enjoy anything so\nmuch as drinking out of his own particular pint pot, and putting it\nin his pocket at the close of the evening.\n\n'The luxuries of the old country,' said Mr. Micawber, with an\nintense satisfaction in their renouncement, 'we abandon.  The\ndenizens of the forest cannot, of course, expect to participate in\nthe refinements of the land of the Free.'\n\nHere, a boy came in to say that Mr. Micawber was wanted downstairs.\n\n'I have a presentiment,' said Mrs. Micawber, setting down her tin\npot, 'that it is a member of my family!'\n\n'If so, my dear,' observed Mr. Micawber, with his usual suddenness\nof warmth on that subject, 'as the member of your family - whoever\nhe, she, or it, may be - has kept us waiting for a considerable\nperiod, perhaps the Member may now wait MY convenience.'\n\n'Micawber,' said his wife, in a low tone, 'at such a time as\nthis -'\n\n'\"It is not meet,\"' said Mr. Micawber, rising, '\"that every nice\noffence should bear its comment!\" Emma, I stand reproved.'\n\n'The loss, Micawber,' observed his wife, 'has been my family's, not\nyours.  If my family are at length sensible of the deprivation to\nwhich their own conduct has, in the past, exposed them, and now\ndesire to extend the hand of fellowship, let it not be repulsed.'\n\n'My dear,' he returned, 'so be it!'\n\n'If not for their sakes; for mine, Micawber,' said his wife.\n\n'Emma,' he returned, 'that view of the question is, at such a\nmoment, irresistible.  I cannot, even now, distinctly pledge myself\nto fall upon your family's neck; but the member of your family, who\nis now in attendance, shall have no genial warmth frozen by me.'\n\nMr. Micawber withdrew, and was absent some little time; in the\ncourse of which Mrs. Micawber was not wholly free from an\napprehension that words might have arisen between him and the\nMember.  At length the same boy reappeared, and presented me with\na note written in pencil, and headed, in a legal manner, 'Heep v. \nMicawber'.  From this document, I learned that Mr. Micawber being\nagain arrested, 'Was in a final paroxysm of despair; and that he\nbegged me to send him his knife and pint pot, by bearer, as they\nmight prove serviceable during the brief remainder of his\nexistence, in jail.  He also requested, as a last act of\nfriendship, that I would see his family to the Parish Workhouse,\nand forget that such a Being ever lived.\n\nOf course I answered this note by going down with the boy to pay\nthe money, where I found Mr. Micawber sitting in a corner, looking\ndarkly at the Sheriff 's Officer who had effected the capture.  On\nhis release, he embraced me with the utmost fervour; and made an\nentry of the transaction in his pocket-book - being very\nparticular, I recollect, about a halfpenny I inadvertently omitted\nfrom my statement of the total.\n\nThis momentous pocket-book was a timely reminder to him of another\ntransaction.  On our return to the room upstairs (where he\naccounted for his absence by saying that it had been occasioned by\ncircumstances over which he had no control), he took out of it a\nlarge sheet of paper, folded small, and quite covered with long\nsums, carefully worked.  From the glimpse I had of them, I should\nsay that I never saw such sums out of a school ciphering-book. \nThese, it seemed, were calculations of compound interest on what he\ncalled 'the principal amount of forty-one, ten, eleven and a half',\nfor various periods.  After a careful consideration of these, and\nan elaborate estimate of his resources, he had come to the\nconclusion to select that sum which represented the amount with\ncompound interest to two years, fifteen calendar months, and\nfourteen days, from that date.  For this he had drawn a\nnote-of-hand with great neatness, which he handed over to Traddles\non the spot, a discharge of his debt in full (as between man and\nman), with many acknowledgements.\n\n'I have still a presentiment,' said Mrs. Micawber, pensively\nshaking her head, 'that my family will appear on board, before we\nfinally depart.'\n\nMr. Micawber evidently had his presentiment on the subject too, but\nhe put it in his tin pot and swallowed it.\n\n'If you have any opportunity of sending letters home, on your\npassage, Mrs. Micawber,' said my aunt, 'you must let us hear from\nyou, you know.'\n\n'My dear Miss Trotwood,' she replied, 'I shall only be too happy to\nthink that anyone expects to hear from us.  I shall not fail to\ncorrespond.  Mr. Copperfield, I trust, as an old and familiar\nfriend, will not object to receive occasional intelligence,\nhimself, from one who knew him when the twins were yet\nunconscious?'\n\nI said that I should hope to hear, whenever she had an opportunity\nof writing.\n\n'Please Heaven, there will be many such opportunities,' said Mr.\nMicawber.  'The ocean, in these times, is a perfect fleet of ships;\nand we can hardly fail to encounter many, in running over.  It is\nmerely crossing,' said Mr. Micawber, trifling with his eye-glass,\n'merely crossing.  The distance is quite imaginary.'\n\nI think, now, how odd it was, but how wonderfully like Mr.\nMicawber, that, when he went from London to Canterbury, he should\nhave talked as if he were going to the farthest limits of the\nearth; and, when he went from England to Australia, as if he were\ngoing for a little trip across the channel.\n\n'On the voyage, I shall endeavour,' said Mr. Micawber,\n'occasionally to spin them a yarn; and the melody of my son Wilkins\nwill, I trust, be acceptable at the galley-fire.  When Mrs.\nMicawber has her sea-legs on - an expression in which I hope there\nis no conventional impropriety - she will give them, I dare say,\n\"Little Tafflin\".  Porpoises and dolphins, I believe, will be\nfrequently observed athwart our Bows; and, either on the starboard\nor the larboard quarter, objects of interest will be continually\ndescried.  In short,' said Mr. Micawber, with the old genteel air,\n'the probability is, all will be found so exciting, alow and aloft,\nthat when the lookout, stationed in the main-top, cries Land-oh! we\nshall be very considerably astonished!'\n\nWith that he flourished off the contents of his little tin pot, as\nif he had made the voyage, and had passed a first-class examination\nbefore the highest naval authorities.\n\n' What I chiefly hope, my dear Mr. Copperfield,' said Mrs.\nMicawber, 'is, that in some branches of our family we may live\nagain in the old country.  Do not frown, Micawber! I do not now\nrefer to my own family, but to our children's children.  However\nvigorous the sapling,' said Mrs. Micawber, shaking her head, 'I\ncannot forget the parent-tree; and when our race attains to\neminence and fortune, I own I should wish that fortune to flow into\nthe coffers of Britannia.'\n\n'My dear,' said Mr. Micawber, 'Britannia must take her chance.  I\nam bound to say that she has never done much for me, and that I\nhave no particular wish upon the subject.'\n\n'Micawber,' returned Mrs. Micawber, 'there, you are wrong.  You are\ngoing out, Micawber, to this distant clime, to strengthen, not to\nweaken, the connexion between yourself and Albion.'\n\n'The connexion in question, my love,' rejoined Mr. Micawber, 'has\nnot laid me, I repeat, under that load of personal obligation, that\nI am at all sensitive as to the formation of another connexion.'\n\n'Micawber,' returned Mrs. Micawber.  'There, I again say, you are\nwrong.  You do not know your power, Micawber.  It is that which\nwill strengthen, even in this step you are about to take, the\nconnexion between yourself and Albion.'\n\nMr. Micawber sat in his elbow-chair, with his eyebrows raised; half\nreceiving and half repudiating Mrs. Micawber's views as they were\nstated, but very sensible of their foresight.\n\n'My dear Mr. Copperfield,' said Mrs. Micawber, 'I wish Mr. Micawber\nto feel his position.  It appears to me highly important that Mr.\nMicawber should, from the hour of his embarkation, feel his\nposition.  Your old knowledge of me, my dear Mr. Copperfield, will\nhave told you that I have not the sanguine disposition of Mr.\nMicawber.  My disposition is, if I may say so, eminently practical. \nI know that this is a long voyage.  I know that it will involve\nmany privations and inconveniences.  I cannot shut my eyes to those\nfacts.  But I also know what Mr. Micawber is.  I know the latent\npower of Mr. Micawber.  And therefore I consider it vitally\nimportant that Mr. Micawber should feel his position.'\n\n'My love,' he observed, 'perhaps you will allow me to remark that\nit is barely possible that I DO feel my position at the present\nmoment.'\n\n'I think not, Micawber,' she rejoined.  'Not fully.  My dear Mr.\nCopperfield, Mr. Micawber's is not a common case.  Mr. Micawber is\ngoing to a distant country expressly in order that he may be fully\nunderstood and appreciated for the first time.  I wish Mr. Micawber\nto take his stand upon that vessel's prow, and firmly say, \"This\ncountry I am come to conquer! Have you honours?  Have you riches? \nHave you posts of profitable pecuniary emolument?  Let them be\nbrought forward.  They are mine!\"'\n\nMr. Micawber, glancing at us all, seemed to think there was a good\ndeal in this idea.\n\n'I wish Mr. Micawber, if I make myself understood,' said Mrs.\nMicawber, in her argumentative tone, 'to be the Caesar of his own\nfortunes.  That, my dear Mr. Copperfield, appears to me to be his\ntrue position.  From the first moment of this voyage, I wish Mr.\nMicawber to stand upon that vessel's prow and say, \"Enough of\ndelay: enough of disappointment: enough of limited means.  That was\nin the old country.  This is the new.  Produce your reparation. \nBring it forward!\"'\n\nMr. Micawber folded his arms in a resolute manner, as if he were\nthen stationed on the figure-head.\n\n'And doing that,' said Mrs. Micawber, '- feeling his position - am\nI not right in saying that Mr. Micawber will strengthen, and not\nweaken, his connexion with Britain?  An important public character\narising in that hemisphere, shall I be told that its influence will\nnot be felt at home?  Can I be so weak as to imagine that Mr.\nMicawber, wielding the rod of talent and of power in Australia,\nwill be nothing in England?  I am but a woman; but I should be\nunworthy of myself and of my papa, if I were guilty of such absurd\nweakness.'\n\nMrs. Micawber's conviction that her arguments were unanswerable,\ngave a moral elevation to her tone which I think I had never heard\nin it before.\n\n'And therefore it is,' said Mrs. Micawber, 'that I the more wish,\nthat, at a future period, we may live again on the parent soil. \nMr. Micawber may be - I cannot disguise from myself that the\nprobability is, Mr. Micawber will be - a page of History; and he\nought then to be represented in the country which gave him birth,\nand did NOT give him employment!'\n\n'My love,' observed Mr. Micawber, 'it is impossible for me not to\nbe touched by your affection.  I am always willing to defer to your\ngood sense.  What will be - will be.  Heaven forbid that I should\ngrudge my native country any portion of the wealth that may be\naccumulated by our descendants!'\n\n'That's well,' said my aunt, nodding towards Mr. Peggotty, 'and I\ndrink my love to you all, and every blessing and success attend\nyou!'\n\nMr. Peggotty put down the two children he had been nursing, one on\neach knee, to join Mr. and Mrs. Micawber in drinking to all of us\nin return; and when he and the Micawbers cordially shook hands as\ncomrades, and his brown face brightened with a smile, I felt that\nhe would make his way, establish a good name, and be beloved, go\nwhere he would.\n\nEven the children were instructed, each to dip a wooden spoon into\nMr. Micawber's pot, and pledge us in its contents.  When this was\ndone, my aunt and Agnes rose, and parted from the emigrants.  It\nwas a sorrowful farewell.  They were all crying; the children hung\nabout Agnes to the last; and we left poor Mrs. Micawber in a very\ndistressed condition, sobbing and weeping by a dim candle, that\nmust have made the room look, from the river, like a miserable\nlight-house.\n\nI went down again next morning to see that they were away.  They\nhad departed, in a boat, as early as five o'clock.  It was a\nwonderful instance to me of the gap such partings make, that\nalthough my association of them with the tumble-down public-house\nand the wooden stairs dated only from last night, both seemed\ndreary and deserted, now that they were gone.\n\nIn the afternoon of the next day, my old nurse and I went down to\nGravesend.  We found the ship in the river, surrounded by a crowd\nof boats; a favourable wind blowing; the signal for sailing at her\nmast-head.  I hired a boat directly, and we put off to her; and\ngetting through the little vortex of confusion of which she was the\ncentre, went on board.\n\nMr. Peggotty was waiting for us on deck.  He told me that Mr.\nMicawber had just now been arrested again (and for the last time)\nat the suit of Heep, and that, in compliance with a request I had\nmade to him, he had paid the money, which I repaid him.  He then\ntook us down between decks; and there, any lingering fears I had of\nhis having heard any rumours of what had happened, were dispelled\nby Mr. Micawber's coming out of the gloom, taking his arm with an\nair of friendship and protection, and telling me that they had\nscarcely been asunder for a moment, since the night before last.\n\nIt was such a strange scene to me, and so confined and dark, that,\nat first, I could make out hardly anything; but, by degrees, it\ncleared, as my eyes became more accustomed to the gloom, and I\nseemed to stand in a picture by OSTADE.  Among the great beams,\nbulks, and ringbolts of the ship, and the emigrant-berths, and\nchests, and bundles, and barrels, and heaps of miscellaneous\nbaggage -'lighted up, here and there, by dangling lanterns; and\nelsewhere by the yellow daylight straying down a windsail or a\nhatchway - were crowded groups of people, making new friendships,\ntaking leave of one another, talking, laughing, crying, eating and\ndrinking; some, already settled down into the possession of their\nfew feet of space, with their little households arranged, and tiny\nchildren established on stools, or in dwarf elbow-chairs; others,\ndespairing of a resting-place, and wandering disconsolately.  From\nbabies who had but a week or two of life behind them, to crooked\nold men and women who seemed to have but a week or two of life\nbefore them; and from ploughmen bodily carrying out soil of England\non their boots, to smiths taking away samples of its soot and smoke\nupon their skins; every age and occupation appeared to be crammed\ninto the narrow compass of the 'tween decks.\n\nAs my eye glanced round this place, I thought I saw sitting, by an\nopen port, with one of the Micawber children near her, a figure\nlike Emily's; it first attracted my attention, by another figure\nparting from it with a kiss; and as it glided calmly away through\nthe disorder, reminding me of - Agnes! But in the rapid motion and\nconfusion, and in the unsettlement of my own thoughts, I lost it\nagain; and only knew that the time was come when all visitors were\nbeing warned to leave the ship; that my nurse was crying on a chest\nbeside me; and that Mrs. Gummidge, assisted by some younger\nstooping woman in black, was busily arranging Mr. Peggotty's goods.\n\n'Is there any last wured, Mas'r Davy?' said he.  'Is there any one\nforgotten thing afore we parts?'\n\n'One thing!' said I.  'Martha!'\n\nHe touched the younger woman I have mentioned on the shoulder, and\nMartha stood before me.\n\n'Heaven bless you, you good man!' cried I.  'You take her with\nyou!'\n\nShe answered for him, with a burst of tears.  I could speak no more\nat that time, but I wrung his hand; and if ever I have loved and\nhonoured any man, I loved and honoured that man in my soul.\n\nThe ship was clearing fast of strangers.  The greatest trial that\nI had, remained.  I told him what the noble spirit that was gone,\nhad given me in charge to say at parting.  It moved him deeply. \nBut when he charged me, in return, with many messages of affection\nand regret for those deaf ears, he moved me more.\n\nThe time was come.  I embraced him, took my weeping nurse upon my\narm, and hurried away.  On deck, I took leave of poor Mrs.\nMicawber.  She was looking distractedly about for her family, even\nthen; and her last words to me were, that she never would desert\nMr. Micawber.\n\nWe went over the side into our boat, and lay at a little distance,\nto see the ship wafted on her course.  It was then calm, radiant\nsunset.  She lay between us, and the red light; and every taper\nline and spar was visible against the glow.  A sight at once so\nbeautiful, so mournful, and so hopeful, as the glorious ship,\nlying, still, on the flushed water, with all the life on board her\ncrowded at the bulwarks, and there clustering, for a moment,\nbare-headed and silent, I never saw.\n\nSilent, only for a moment.  As the sails rose to the wind, and the\nship began to move, there broke from all the boats three resounding\ncheers, which those on board took up, and echoed back, and which\nwere echoed and re-echoed.  My heart burst out when I heard the\nsound, and beheld the waving of the hats and handkerchiefs - and\nthen I saw her!\n\nThen I saw her, at her uncle's side, and trembling on his shoulder. \nHe pointed to us with an eager hand; and she saw us, and waved her\nlast good-bye to me.  Aye, Emily, beautiful and drooping, cling to\nhim with the utmost trust of thy bruised heart; for he has clung to\nthee, with all the might of his great love!\n\nSurrounded by the rosy light, and standing high upon the deck,\napart together, she clinging to him, and he holding her, they\nsolemnly passed away.  The night had fallen on the Kentish hills\nwhen we were rowed ashore - and fallen darkly upon me.\n\n\n\nCHAPTER 58\nABSENCE\n\n\nIt was a long and gloomy night that gathered on me, haunted by the\nghosts of many hopes, of many dear remembrances, many errors, many\nunavailing sorrows and regrets.\n\nI went away from England; not knowing, even then, how great the\nshock was, that I had to bear.  I left all who were dear to me, and\nwent away; and believed that I had borne it, and it was past.  As\na man upon a field of battle will receive a mortal hurt, and\nscarcely know that he is struck, so I, when I was left alone with\nmy undisciplined heart, had no conception of the wound with which\nit had to strive.\n\nThe knowledge came upon me, not quickly, but little by little, and\ngrain by grain.  The desolate feeling with which I went abroad,\ndeepened and widened hourly.  At first it was a heavy sense of loss\nand sorrow, wherein I could distinguish little else.  By\nimperceptible degrees, it became a hopeless consciousness of all\nthat I had lost - love, friendship, interest; of all that had been\nshattered - my first trust, my first affection, the whole airy\ncastle of my life; of all that remained - a ruined blank and waste,\nlying wide around me, unbroken, to the dark horizon.\n\nIf my grief were selfish, I did not know it to be so.  I mourned\nfor my child-wife, taken from her blooming world, so young.  I\nmourned for him who might have won the love and admiration of\nthousands, as he had won mine long ago.  I mourned for the broken\nheart that had found rest in the stormy sea; and for the wandering\nremnants of the simple home, where I had heard the night-wind\nblowing, when I was a child.\n\nFrom the accumulated sadness into which I fell, I had at length no\nhope of ever issuing again.  I roamed from place to place, carrying\nmy burden with me everywhere.  I felt its whole weight now; and I\ndrooped beneath it, and I said in my heart that it could never be\nlightened.\n\nWhen this despondency was at its worst, I believed that I should\ndie.  Sometimes, I thought that I would like to die at home; and\nactually turned back on my road, that I might get there soon.  At\nother times, I passed on farther away, -from city to city, seeking\nI know not what, and trying to leave I know not what behind.\n\nIt is not in my power to retrace, one by one, all the weary phases\nof distress of mind through which I passed.  There are some dreams\nthat can only be imperfectly and vaguely described; and when I\noblige myself to look back on this time of my life, I seem to be\nrecalling such a dream.  I see myself passing on among the\nnovelties of foreign towns, palaces, cathedrals, temples, pictures,\ncastles, tombs, fantastic streets - the old abiding places of\nHistory and Fancy - as a dreamer might; bearing my painful load\nthrough all, and hardly conscious of the objects as they fade\nbefore me.  Listlessness to everything, but brooding sorrow, was\nthe night that fell on my undisciplined heart.  Let me look up from\nit - as at last I did, thank Heaven! - and from its long, sad,\nwretched dream, to dawn.\n\nFor many months I travelled with this ever-darkening cloud upon my\nmind.  Some blind reasons that I had for not returning home -\nreasons then struggling within me, vainly, for more distinct\nexpression - kept me on my pilgrimage.  Sometimes, I had proceeded\nrestlessly from place to place, stopping nowhere; sometimes, I had\nlingered long in one spot.  I had had no purpose, no sustaining\nsoul within me, anywhere.\n\nI was in Switzerland.  I had come out of Italy, over one of the\ngreat passes of the Alps, and had since wandered with a guide among\nthe by-ways of the mountains.  If those awful solitudes had spoken\nto my heart, I did not know it.  I had found sublimity and wonder\nin the dread heights and precipices, in the roaring torrents, and\nthe wastes of ice and snow; but as yet, they had taught me nothing\nelse.\n\nI came, one evening before sunset, down into a valley, where I was\nto rest.  In the course of my descent to it, by the winding track\nalong the mountain-side, from which I saw it shining far below, I\nthink some long-unwonted sense of beauty and tranquillity, some\nsoftening influence awakened by its peace, moved faintly in my\nbreast.  I remember pausing once, with a kind of sorrow that was\nnot all oppressive, not quite despairing.  I remember almost hoping\nthat some better change was possible within me.\n\nI came into the valley, as the evening sun was shining on the\nremote heights of snow, that closed it in, like eternal clouds. \nThe bases of the mountains forming the gorge in which the little\nvillage lay, were richly green; and high above this gentler\nvegetation, grew forests of dark fir, cleaving the wintry\nsnow-drift, wedge-like, and stemming the avalanche.  Above these,\nwere range upon range of craggy steeps, grey rock, bright ice, and\nsmooth verdure-specks of pasture, all gradually blending with the\ncrowning snow.  Dotted here and there on the mountain's-side, each\ntiny dot a home, were lonely wooden cottages, so dwarfed by the\ntowering heights that they appeared too small for toys.  So did\neven the clustered village in the valley, with its wooden bridge\nacross the stream, where the stream tumbled over broken rocks, and\nroared away among the trees.  In the quiet air, there was a sound\nof distant singing - shepherd voices; but, as one bright evening\ncloud floated midway along the mountain's-side, I could almost have\nbelieved it came from there, and was not earthly music.  All at\nonce, in this serenity, great Nature spoke to me; and soothed me to\nlay down my weary head upon the grass, and weep as I had not wept\nyet, since Dora died!\n\nI had found a packet of letters awaiting me but a few minutes\nbefore, and had strolled out of the village to read them while my\nsupper was making ready.  Other packets had missed me, and I had\nreceived none for a long time.  Beyond a line or two, to say that\nI was well, and had arrived at such a place, I had not had\nfortitude or constancy to write a letter since I left home.\n\nThe packet was in my hand.  I opened it, and read the writing of\nAgnes.\n\nShe was happy and useful, was prospering as she had hoped.  That\nwas all she told me of herself.  The rest referred to me.\n\nShe gave me no advice; she urged no duty on me; she only told me,\nin her own fervent manner, what her trust in me was.  She knew (she\nsaid) how such a nature as mine would turn affliction to good.  She\nknew how trial and emotion would exalt and strengthen it.  She was\nsure that in my every purpose I should gain a firmer and a higher\ntendency, through the grief I had undergone.  She, who so gloried\nin my fame, and so looked forward to its augmentation, well knew\nthat I would labour on.  She knew that in me, sorrow could not be\nweakness, but must be strength.  As the endurance of my childish\ndays had done its part to make me what I was, so greater calamities\nwould nerve me on, to be yet better than I was; and so, as they had\ntaught me, would I teach others.  She commended me to God, who had\ntaken my innocent darling to His rest; and in her sisterly\naffection cherished me always, and was always at my side go where\nI would; proud of what I had done, but infinitely prouder yet of\nwhat I was reserved to do.\n\nI put the letter in my breast, and thought what had I been an hour\nago! When I heard the voices die away, and saw the quiet evening\ncloud grow dim, and all the colours in the valley fade, and the\ngolden snow upon the mountain-tops become a remote part of the pale\nnight sky, yet felt that the night was passing from my mind, and\nall its shadows clearing, there was no name for the love I bore\nher, dearer to me, henceforward, than ever until then.\n\nI read her letter many times.  I wrote to her before I slept.  I\ntold her that I had been in sore need of her help; that without her\nI was not, and I never had been, what she thought me; but that she\ninspired me to be that, and I would try.\n\nI did try.  In three months more, a year would have passed since\nthe beginning of my sorrow.  I determined to make no resolutions\nuntil the expiration of those three months, but to try.  I lived in\nthat valley, and its neighbourhood, all the time.\n\nThe three months gone, I resolved to remain away from home for some\ntime longer; to settle myself for the present in Switzerland, which\nwas growing dear to me in the remembrance of that evening; to\nresume my pen; to work.\n\nI resorted humbly whither Agnes had commended me; I sought out\nNature, never sought in vain; and I admitted to my breast the human\ninterest I had lately shrunk from.  It was not long, before I had\nalmost as many friends in the valley as in Yarmouth: and when I\nleft it, before the winter set in, for Geneva, and came back in the\nspring, their cordial greetings had a homely sound to me, although\nthey were not conveyed in English words.\n\nI worked early and late, patiently and hard.  I wrote a Story, with\na purpose growing, not remotely, out of my experience, and sent it\nto Traddles, and he arranged for its publication very\nadvantageously for me; and the tidings of my growing reputation\nbegan to reach me from travellers whom I encountered by chance. \nAfter some rest and change, I fell to work, in my old ardent way,\non a new fancy, which took strong possession of me.  As I advanced\nin the execution of this task, I felt it more and more, and roused\nmy utmost energies to do it well.  This was my third work of\nfiction.  It was not half written, when, in an interval of rest, I\nthought of returning home.\n\nFor a long time, though studying and working patiently, I had\naccustomed myself to robust exercise.  My health, severely impaired\nwhen I left England, was quite restored.  I had seen much.  I had\nbeen in many countries, and I hope I had improved my store of\nknowledge.\n\nI have now recalled all that I think it needful to recall here, of\nthis term of absence - with one reservation.  I have made it, thus\nfar, with no purpose of suppressing any of my thoughts; for, as I\nhave elsewhere said, this narrative is my written memory.  I have\ndesired to keep the most secret current of my mind apart, and to\nthe last.  I enter on it now.  I cannot so completely penetrate the\nmystery of my own heart, as to know when I began to think that I\nmight have set its earliest and brightest hopes on Agnes.  I cannot\nsay at what stage of my grief it first became associated with the\nreflection, that, in my wayward boyhood, I had thrown away the\ntreasure of her love.  I believe I may have heard some whisper of\nthat distant thought, in the old unhappy loss or want of something\nnever to be realized, of which I had been sensible.  But the\nthought came into my mind as a new reproach and new regret, when I\nwas left so sad and lonely in the world.\n\nIf, at that time, I had been much with her, I should, in the\nweakness of my desolation, have betrayed this.  It was what I\nremotely dreaded when I was first impelled to stay away from\nEngland.  I could not have borne to lose the smallest portion of\nher sisterly affection; yet, in that betrayal, I should have set a\nconstraint between us hitherto unknown.\n\nI could not forget that the feeling with which she now regarded me\nhad grown up in my own free choice and course.  That if she had\never loved me with another love - and I sometimes thought the time\nwas when she might have done so - I had cast it away.  It was\nnothing, now, that I had accustomed myself to think of her, when we\nwere both mere children, as one who was far removed from my wild\nfancies.  I had bestowed my passionate tenderness upon another\nobject; and what I might have done, I had not done; and what Agnes\nwas to me, I and her own noble heart had made her.\n\nIn the beginning of the change that gradually worked in me, when I\ntried to get a better understanding of myself and be a better man,\nI did glance, through some indefinite probation, to a period when\nI might possibly hope to cancel the mistaken past, and to be so\nblessed as to marry her.  But, as time wore on, this shadowy\nprospect faded, and departed from me.  If she had ever loved me,\nthen, I should hold her the more sacred; remembering the\nconfidences I had reposed in her, her knowledge of my errant heart,\nthe sacrifice she must have made to be my friend and sister, and\nthe victory she had won.  If she had never loved me, could I\nbelieve that she would love me now?\n\nI had always felt my weakness, in comparison with her constancy and\nfortitude; and now I felt it more and more.  Whatever I might have\nbeen to her, or she to me, if I had been more worthy of her long\nago, I was not now, and she was not.  The time was past.  I had let\nit go by, and had deservedly lost her.\n\nThat I suffered much in these contentions, that they filled me with\nunhappiness and remorse, and yet that I had a sustaining sense that\nit was required of me, in right and honour, to keep away from\nmyself, with shame, the thought of turning to the dear girl in the\nwithering of my hopes, from whom I had frivolously turned when they\nwere bright and fresh - which consideration was at the root of\nevery thought I had concerning her - is all equally true.  I made\nno effort to conceal from myself, now, that I loved her, that I was\ndevoted to her; but I brought the assurance home to myself, that it\nwas now too late, and that our long-subsisting relation must be\nundisturbed.\n\nI had thought, much and often, of my Dora's shadowing out to me\nwhat might have happened, in those years that were destined not to\ntry us; I had considered how the things that never happen, are\noften as much realities to us, in their effects, as those that are\naccomplished.  The very years she spoke of, were realities now, for\nmy correction; and would have been, one day, a little later\nperhaps, though we had parted in our earliest folly.  I endeavoured\nto convert what might have been between myself and Agnes, into a\nmeans of making me more self-denying, more resolved, more conscious\nof myself, and my defects and errors.  Thus, through the reflection\nthat it might have been, I arrived at the conviction that it could\nnever be.\n\nThese, with their perplexities and inconsistencies, were the\nshifting quicksands of my mind, from the time of my departure to\nthe time of my return home, three years afterwards.  Three years\nhad elapsed since the sailing of the emigrant ship; when, at that\nsame hour of sunset, and in the same place, I stood on the deck of\nthe packet vessel that brought me home, looking on the rosy water\nwhere I had seen the image of that ship reflected.\n\nThree years.  Long in the aggregate, though short as they went by. \nAnd home was very dear to me, and Agnes too - but she was not mine\n- she was never to be mine.  She might have been, but that was\npast!\n\n\n\nCHAPTER 59\nRETURN\n\n\nI landed in London on a wintry autumn evening.  It was dark and\nraining, and I saw more fog and mud in a minute than I had seen in\na year.  I walked from the Custom House to the Monument before I\nfound a coach; and although the very house-fronts, looking on the\nswollen gutters, were like old friends to me, I could not but admit\nthat they were very dingy friends.\n\nI have often remarked - I suppose everybody has - that one's going\naway from a familiar place, would seem to be the signal for change\nin it.  As I looked out of the coach window, and observed that an\nold house on Fish-street Hill, which had stood untouched by\npainter, carpenter, or bricklayer, for a century, had been pulled\ndown in my absence; and that a neighbouring street, of\ntime-honoured insalubrity and inconvenience, was being drained and\nwidened; I half expected to find St. Paul's Cathedral looking\nolder.\n\nFor some changes in the fortunes of my friends, I was prepared.  My\naunt had long been re-established at Dover, and Traddles had begun\nto get into some little practice at the Bar, in the very first term\nafter my departure.  He had chambers in Gray's Inn, now; and had\ntold me, in his last letters, that he was not without hopes of\nbeing soon united to the dearest girl in the world.\n\nThey expected me home before Christmas; but had no idea of my\nreturning so soon.  I had purposely misled them, that I might have\nthe pleasure of taking them by surprise.  And yet, I was perverse\nenough to feel a chill and disappointment in receiving no welcome,\nand rattling, alone and silent, through the misty streets.\n\nThe well-known shops, however, with their cheerful lights, did\nsomething for me; and when I alighted at the door of the Gray's Inn\nCoffee-house, I had recovered my spirits.  It recalled, at first,\nthat so-different time when I had put up at the Golden Cross, and\nreminded me of the changes that had come to pass since then; but\nthat was natural.\n\n'Do you know where Mr. Traddles lives in the Inn?' I asked the\nwaiter, as I warmed myself by the coffee-room fire.\n\n'Holborn Court, sir.  Number two.'\n\n'Mr. Traddles has a rising reputation among the lawyers, I\nbelieve?' said I.\n\n'Well, sir,' returned the waiter, 'probably he has, sir; but I am\nnot aware of it myself.'\n\nThis waiter, who was middle-aged and spare, looked for help to a\nwaiter of more authority - a stout, potential old man, with a\ndouble chin, in black breeches and stockings, who came out of a\nplace like a churchwarden's pew, at the end of the coffee-room,\nwhere he kept company with a cash-box, a Directory, a Law-list, and\nother books and papers.\n\n'Mr. Traddles,' said the spare waiter.  'Number two in the Court.'\n\nThe potential waiter waved him away, and turned, gravely, to me.\n\n'I was inquiring,' said I, 'whether Mr. Traddles, at number two in\nthe Court, has not a rising reputation among the lawyers?'\n\n'Never heard his name,' said the waiter, in a rich husky voice.\n\nI felt quite apologetic for Traddles.\n\n'He's a young man, sure?' said the portentous waiter, fixing his\neyes severely on me.  'How long has he been in the Inn?'\n\n'Not above three years,' said I.\n\nThe waiter, who I supposed had lived in his churchwarden's pew for\nforty years, could not pursue such an insignificant subject.  He\nasked me what I would have for dinner?\n\nI felt I was in England again, and really was quite cast down on\nTraddles's account.  There seemed to be no hope for him.  I meekly\nordered a bit of fish and a steak, and stood before the fire musing\non his obscurity.\n\nAs I followed the chief waiter with my eyes, I could not help\nthinking that the garden in which he had gradually blown to be the\nflower he was, was an arduous place to rise in.  It had such a\nprescriptive, stiff-necked, long-established, solemn, elderly air. \nI glanced about the room, which had had its sanded floor sanded, no\ndoubt, in exactly the same manner when the chief waiter was a boy\n- if he ever was a boy, which appeared improbable; and at the\nshining tables, where I saw myself reflected, in unruffled depths\nof old mahogany; and at the lamps, without a flaw in their trimming\nor cleaning; and at the comfortable green curtains, with their pure\nbrass rods, snugly enclosing the boxes; and at the two large coal\nfires, brightly burning; and at the rows of decanters, burly as if\nwith the consciousness of pipes of expensive old port wine below;\nand both England, and the law, appeared to me to be very difficult\nindeed to be taken by storm.  I went up to my bedroom to change my\nwet clothes; and the vast extent of that old wainscoted apartment\n(which was over the archway leading to the Inn, I remember), and\nthe sedate immensity of the four-post bedstead, and the indomitable\ngravity of the chests of drawers, all seemed to unite in sternly\nfrowning on the fortunes of Traddles, or on any such daring youth. \nI came down again to my dinner; and even the slow comfort of the\nmeal, and the orderly silence of the place - which was bare of\nguests, the Long Vacation not yet being over - were eloquent on the\naudacity of Traddles, and his small hopes of a livelihood for\ntwenty years to come.\n\nI had seen nothing like this since I went away, and it quite dashed\nmy hopes for my friend.  The chief waiter had had enough of me.  He\ncame near me no more; but devoted himself to an old gentleman in\nlong gaiters, to meet whom a pint of special port seemed to come\nout of the cellar of its own accord, for he gave no order.  The\nsecond waiter informed me, in a whisper, that this old gentleman\nwas a retired conveyancer living in the Square, and worth a mint of\nmoney, which it was expected he would leave to his laundress's\ndaughter; likewise that it was rumoured that he had a service of\nplate in a bureau, all tarnished with lying by, though more than\none spoon and a fork had never yet been beheld in his chambers by\nmortal vision.  By this time, I quite gave Traddles up for lost;\nand settled in my own mind that there was no hope for him.\n\nBeing very anxious to see the dear old fellow, nevertheless, I\ndispatched my dinner, in a manner not at all calculated to raise me\nin the opinion of the chief waiter, and hurried out by the back\nway.  Number two in the Court was soon reached; and an inscription\non the door-post informing me that Mr. Traddles occupied a set of\nchambers on the top storey, I ascended the staircase.  A crazy old\nstaircase I found it to be, feebly lighted on each landing by a\nclub- headed little oil wick, dying away in a little dungeon of\ndirty glass.\n\nIn the course of my stumbling upstairs, I fancied I heard a\npleasant sound of laughter; and not the laughter of an attorney or\nbarrister, or attorney's clerk or barrister's clerk, but of two or\nthree merry girls.  Happening, however, as I stopped to listen, to\nput my foot in a hole where the Honourable Society of Gray's Inn\nhad left a plank deficient, I fell down with some noise, and when\nI recovered my footing all was silent.\n\nGroping my way more carefully, for the rest of the journey, my\nheart beat high when I found the outer door, which had Mr. TRADDLES\npainted on it, open.  I knocked.  A considerable scuffling within\nensued, but nothing else.  I therefore knocked again.\n\nA small sharp-looking lad, half-footboy and half-clerk, who was\nvery much out of breath, but who looked at me as if he defied me to\nprove it legally, presented himself.\n\n'Is Mr. Traddles within?' I said.\n\n'Yes, sir, but he's engaged.'\n\n'I want to see him.'\n\nAfter a moment's survey of me, the sharp-looking lad decided to let\nme in; and opening the door wider for that purpose, admitted me,\nfirst, into a little closet of a hall, and next into a little\nsitting-room; where I came into the presence of my old friend (also\nout of breath), seated at a table, and bending over papers.\n\n'Good God!' cried Traddles, looking up.  'It's Copperfield!' and\nrushed into my arms, where I held him tight.\n\n'All well, my dear Traddles?'\n\n'All well, my dear, dear Copperfield, and nothing but good news!'\n\nWe cried with pleasure, both of us.\n\n'My dear fellow,' said Traddles, rumpling his hair in his\nexcitement, which was a most unnecessary operation, 'my dearest\nCopperfield, my long-lost and most welcome friend, how glad I am to\nsee you! How brown you are! How glad I am! Upon my life and honour,\nI never was so rejoiced, my beloved Copperfield, never!'\n\nI was equally at a loss to express my emotions.  I was quite unable\nto speak, at first.\n\n'My dear fellow!' said Traddles.  'And grown so famous! My glorious\nCopperfield! Good gracious me, WHEN did you come, WHERE have you\ncome from, WHAT have you been doing?'\n\nNever pausing for an answer to anything he said, Traddles, who had\nclapped me into an easy-chair by the fire, all this time\nimpetuously stirred the fire with one hand, and pulled at my\nneck-kerchief with the other, under some wild delusion that it was\na great-coat.  Without putting down the poker, he now hugged me\nagain; and I hugged him; and, both laughing, and both wiping our\neyes, we both sat down, and shook hands across the hearth.\n\n'To think,' said Traddles, 'that you should have been so nearly\ncoming home as you must have been, my dear old boy, and not at the\nceremony!'\n\n'What ceremony, my dear Traddles?'\n\n'Good gracious me!' cried Traddles, opening his eyes in his old\nway.  'Didn't you get my last letter?'\n\n'Certainly not, if it referred to any ceremony.'\n\n'Why, my dear Copperfield,' said Traddles, sticking his hair\nupright with both hands, and then putting his hands on my knees, 'I\nam married!'\n\n'Married!' I cried joyfully.\n\n'Lord bless me, yes,!' said Traddles - 'by the Reverend Horace - to\nSophy - down in Devonshire.  Why, my dear boy, she's behind the\nwindow curtain! Look here!'\n\nTo my amazement, the dearest girl in the world came at that same\ninstant, laughing and blushing, from her place of concealment.  And\na more cheerful, amiable, honest, happy, bright-looking bride, I\nbelieve (as I could not help saying on the spot) the world never\nsaw.  I kissed her as an old acquaintance should, and wished them\njoy with all my might of heart.\n\n'Dear me,' said Traddles, 'what a delightful re-union this is! You\nare so extremely brown, my dear Copperfield! God bless my soul, how\nhappy I am!'\n\n'And so am I,' said I.\n\n'And I am sure I am!' said the blushing and laughing Sophy.\n\n'We are all as happy as possible!' said Traddles.  'Even the girls\nare happy.  Dear me, I declare I forgot them!'\n\n'Forgot?' said I.\n\n'The girls,' said Traddles.  'Sophy's sisters.  They are staying\nwith us.  They have come to have a peep at London.  The fact is,\nwhen - was it you that tumbled upstairs, Copperfield?'\n\n'It was,' said I, laughing.\n\n'Well then, when you tumbled upstairs,' said Traddles, 'I was\nromping with the girls.  In point of fact, we were playing at Puss\nin the Corner.  But as that wouldn't do in Westminster Hall, and as\nit wouldn't look quite professional if they were seen by a client,\nthey decamped.  And they are now - listening, I have no doubt,'\nsaid Traddles, glancing at the door of another room.\n\n'I am sorry,' said I, laughing afresh, 'to have occasioned such a\ndispersion.'\n\n'Upon my word,' rejoined Traddles, greatly delighted, 'if you had\nseen them running away, and running back again, after you had\nknocked, to pick up the combs they had dropped out of their hair,\nand going on in the maddest manner, you wouldn't have said so.  My\nlove, will you fetch the girls?'\n\nSophy tripped away, and we heard her received in the adjoining room\nwith a peal of laughter.\n\n'Really musical, isn't it, my dear Copperfield?' said Traddles. \n'It's very agreeable to hear.  It quite lights up these old rooms. \nTo an unfortunate bachelor of a fellow who has lived alone all his\nlife, you know, it's positively delicious.  It's charming.  Poor\nthings, they have had a great loss in Sophy - who, I do assure you,\nCopperfield is, and ever was, the dearest girl! - and it gratifies\nme beyond expression to find them in such good spirits.  The\nsociety of girls is a very delightful thing, Copperfield.  It's not\nprofessional, but it's very delightful.'\n\nObserving that he slightly faltered, and comprehending that in the\ngoodness of his heart he was fearful of giving me some pain by what\nhe had said, I expressed my concurrence with a heartiness that\nevidently relieved and pleased him greatly.\n\n'But then,' said Traddles, 'our domestic arrangements are, to say\nthe truth, quite unprofessional altogether, my dear Copperfield. \nEven Sophy's being here, is unprofessional.  And we have no other\nplace of abode.  We have put to sea in a cockboat, but we are quite\nprepared to rough it.  And Sophy's an extraordinary manager! You'll\nbe surprised how those girls are stowed away.  I am sure I hardly\nknow how it's done!'\n\n'Are many of the young ladies with you?' I inquired.\n\n'The eldest, the Beauty is here,' said Traddles, in a low\nconfidential voice, 'Caroline.  And Sarah's here - the one I\nmentioned to you as having something the matter with her spine, you\nknow.  Immensely better! And the two youngest that Sophy educated\nare with us.  And Louisa's here.'\n\n'Indeed!' cried I.\n\n'Yes,' said Traddles.  'Now the whole set - I mean the chambers -\nis only three rooms; but Sophy arranges for the girls in the most\nwonderful way, and they sleep as comfortably as possible.  Three in\nthat room,' said Traddles, pointing.  'Two in that.'\n\nI could not help glancing round, in search of the accommodation\nremaining for Mr. and Mrs. Traddles.  Traddles understood me.\n\n'Well!' said Traddles, 'we are prepared to rough it, as I said just\nnow, and we did improvise a bed last week, upon the floor here. \nBut there's a little room in the roof - a very nice room, when\nyou're up there - which Sophy papered herself, to surprise me; and\nthat's our room at present.  It's a capital little gipsy sort of\nplace.  There's quite a view from it.'\n\n'And you are happily married at last, my dear Traddles!' said I. \n'How rejoiced I am!'\n\n'Thank you, my dear Copperfield,' said Traddles, as we shook hands\nonce more.  'Yes, I am as happy as it's possible to be.  There's\nyour old friend, you see,' said Traddles, nodding triumphantly at\nthe flower-pot and stand; 'and there's the table with the marble\ntop! All the other furniture is plain and serviceable, you\nperceive.  And as to plate, Lord bless you, we haven't so much as\na tea-spoon.'\n\n'All to be earned?' said I, cheerfully.\n\n'Exactly so,' replied Traddles, 'all to be earned.  Of course we\nhave something in the shape of tea-spoons, because we stir our tea. \nBut they're Britannia metal.\"\n\n'The silver will be the brighter when it comes,' said I.\n\n'The very thing we say!' cried Traddles.  'You see, my dear\nCopperfield,' falling again into the low confidential tone, 'after\nI had delivered my argument in DOE dem.  JIPES versus WIGZIELL,\nwhich did me great service with the profession, I went down into\nDevonshire, and had some serious conversation in private with the\nReverend Horace.  I dwelt upon the fact that Sophy - who I do\nassure you, Copperfield, is the dearest girl! -'\n\n'I am certain she is!' said I.\n\n'She is, indeed!' rejoined Traddles.  'But I am afraid I am\nwandering from the subject.  Did I mention the Reverend Horace?'\n\n'You said that you dwelt upon the fact -'\n\n'True! Upon the fact that Sophy and I had been engaged for a long\nperiod, and that Sophy, with the permission of her parents, was\nmore than content to take me - in short,' said Traddles, with his\nold frank smile, 'on our present Britannia-metal footing.  Very\nwell.  I then proposed to the Reverend Horace - who is a most\nexcellent clergyman, Copperfield, and ought to be a Bishop; or at\nleast ought to have enough to live upon, without pinching himself\n- that if I could turn the corner, say of two hundred and fifty\npounds, in one year; and could see my way pretty clearly to that,\nor something better, next year; and could plainly furnish a little\nplace like this, besides; then, and in that case, Sophy and I\nshould be united.  I took the liberty of representing that we had\nbeen patient for a good many years; and that the circumstance of\nSophy's being extraordinarily useful at home, ought not to operate\nwith her affectionate parents, against her establishment in life -\ndon't you see?'\n\n'Certainly it ought not,' said I.\n\n'I am glad you think so, Copperfield,' rejoined Traddles, 'because,\nwithout any imputation on the Reverend Horace, I do think parents,\nand brothers, and so forth, are sometimes rather selfish in such\ncases.  Well! I also pointed out, that my most earnest desire was,\nto be useful to the family; and that if I got on in the world, and\nanything should happen to him - I refer to the Reverend Horace -'\n\n'I understand,' said I.\n\n'- Or to Mrs. Crewler - it would be the utmost gratification of my\nwishes, to be a parent to the girls.  He replied in a most\nadmirable manner, exceedingly flattering to my feelings, and\nundertook to obtain the consent of Mrs. Crewler to this\narrangement.  They had a dreadful time of it with her.  It mounted\nfrom her legs into her chest, and then into her head -'\n\n'What mounted?' I asked.\n\n'Her grief,' replied Traddles, with a serious look.  'Her feelings\ngenerally.  As I mentioned on a former occasion, she is a very\nsuperior woman, but has lost the use of her limbs.  Whatever occurs\nto harass her, usually settles in her legs; but on this occasion it\nmounted to the chest, and then to the head, and, in short, pervaded\nthe whole system in a most alarming manner.  However, they brought\nher through it by unremitting and affectionate attention; and we\nwere married yesterday six weeks.  You have no idea what a Monster\nI felt, Copperfield, when I saw the whole family crying and\nfainting away in every direction! Mrs. Crewler couldn't see me\nbefore we left - couldn't forgive me, then, for depriving her of\nher child - but she is a good creature, and has done so since.  I\nhad a delightful letter from her, only this morning.'\n\n'And in short, my dear friend,' said I, 'you feel as blest as you\ndeserve to feel!'\n\n'Oh! That's your partiality!' laughed Traddles.  'But, indeed, I am\nin a most enviable state.  I work hard, and read Law insatiably. \nI get up at five every morning, and don't mind it at all.  I hide\nthe girls in the daytime, and make merry with them in the evening. \nAnd I assure you I am quite sorry that they are going home on\nTuesday, which is the day before the first day of Michaelmas Term. \nBut here,' said Traddles, breaking off in his confidence, and\nspeaking aloud, 'ARE the girls! Mr. Copperfield, Miss Crewler -\nMiss Sarah - Miss Louisa - Margaret and Lucy!'\n\nThey were a perfect nest of roses; they looked so wholesome and\nfresh.  They were all pretty, and Miss Caroline was very handsome;\nbut there was a loving, cheerful, fireside quality in Sophy's\nbright looks, which was better than that, and which assured me that\nmy friend had chosen well.  We all sat round the fire; while the\nsharp boy, who I now divined had lost his breath in putting the\npapers out, cleared them away again, and produced the tea-things. \nAfter that, he retired for the night, shutting the outer door upon\nus with a bang.  Mrs. Traddles, with perfect pleasure and composure\nbeaming from her household eyes, having made the tea, then quietly\nmade the toast as she sat in a corner by the fire.\n\nShe had seen Agnes, she told me while she was toasting.  'Tom' had\ntaken her down into Kent for a wedding trip, and there she had seen\nmy aunt, too; and both my aunt and Agnes were well, and they had\nall talked of nothing but me.  'Tom' had never had me out of his\nthoughts, she really believed, all the time I had been away.  'Tom'\nwas the authority for everything.  'Tom' was evidently the idol of\nher life; never to be shaken on his pedestal by any commotion;\nalways to be believed in, and done homage to with the whole faith\nof her heart, come what might.\n\nThe deference which both she and Traddles showed towards the\nBeauty, pleased me very much.  I don't know that I thought it very\nreasonable; but I thought it very delightful, and essentially a\npart of their character.  If Traddles ever for an instant missed\nthe tea-spoons that were still to be won, I have no doubt it was\nwhen he handed the Beauty her tea.  If his sweet-tempered wife\ncould have got up any self-assertion against anyone, I am satisfied\nit could only have been because she was the Beauty's sister.  A few\nslight indications of a rather petted and capricious manner, which\nI observed in the Beauty, were manifestly considered, by Traddles\nand his wife, as her birthright and natural endowment.  If she had\nbeen born a Queen Bee, and they labouring Bees, they could not have\nbeen more satisfied of that.\n\nBut their self-forgetfulness charmed me.  Their pride in these\ngirls, and their submission of themselves to all their whims, was\nthe pleasantest little testimony to their own worth I could have\ndesired to see.  If Traddles were addressed as 'a darling', once in\nthe course of that evening; and besought to bring something here,\nor carry something there, or take something up, or put something\ndown, or find something, or fetch something, he was so addressed,\nby one or other of his sisters-in-law, at least twelve times in an\nhour.  Neither could they do anything without Sophy.  Somebody's\nhair fell down, and nobody but Sophy could put it up.  Somebody\nforgot how a particular tune went, and nobody but Sophy could hum\nthat tune right.  Somebody wanted to recall the name of a place in\nDevonshire, and only Sophy knew it.  Something was wanted to be\nwritten home, and Sophy alone could be trusted to write before\nbreakfast in the morning.  Somebody broke down in a piece of\nknitting, and no one but Sophy was able to put the defaulter in the\nright direction.  They were entire mistresses of the place, and\nSophy and Traddles waited on them.  How many children Sophy could\nhave taken care of in her time, I can't imagine; but she seemed to\nbe famous for knowing every sort of song that ever was addressed to\na child in the English tongue; and she sang dozens to order with\nthe clearest little voice in the world, one after another (every\nsister issuing directions for a different tune, and the Beauty\ngenerally striking in last), so that I was quite fascinated.  The\nbest of all was, that, in the midst of their exactions, all the\nsisters had a great tenderness and respect both for Sophy and\nTraddles.  I am sure, when I took my leave, and Traddles was coming\nout to walk with me to the coffee-house, I thought I had never seen\nan obstinate head of hair, or any other head of hair, rolling about\nin such a shower of kisses.\n\nAltogether, it was a scene I could not help dwelling on with\npleasure, for a long time after I got back and had wished Traddles\ngood night.  If I had beheld a thousand roses blowing in a top set\nof chambers, in that withered Gray's Inn, they could not have\nbrightened it half so much.  The idea of those Devonshire girls,\namong the dry law-stationers and the attorneys' offices; and of the\ntea and toast, and children's songs, in that grim atmosphere of\npounce and parchment, red-tape, dusty wafers, ink-jars, brief and\ndraft paper, law reports, writs, declarations, and bills of costs;\nseemed almost as pleasantly fanciful as if I had dreamed that the\nSultan's famous family had been admitted on the roll of attorneys,\nand had brought the talking bird, the singing tree, and the golden\nwater into Gray's Inn Hall.  Somehow, I found that I had taken\nleave of Traddles for the night, and come back to the coffee-house,\nwith a great change in my despondency about him.  I began to think\nhe would get on, in spite of all the many orders of chief waiters\nin England.\n\nDrawing a chair before one of the coffee-room fires to think about\nhim at my leisure, I gradually fell from the consideration of his\nhappiness to tracing prospects in the live-coals, and to thinking,\nas they broke and changed, of the principal vicissitudes and\nseparations that had marked my life.  I had not seen a coal fire,\nsince I had left England three years ago: though many a wood fire\nhad I watched, as it crumbled into hoary ashes, and mingled with\nthe feathery heap upon the hearth, which not inaptly figured to me,\nin my despondency, my own dead hopes.\n\nI could think of the past now, gravely, but not bitterly; and could\ncontemplate the future in a brave spirit.  Home, in its best sense,\nwas for me no more.  She in whom I might have inspired a dearer\nlove, I had taught to be my sister.  She would marry, and would\nhave new claimants on her tenderness; and in doing it, would never\nknow the love for her that had grown up in my heart.  It was right\nthat I should pay the forfeit of my headlong passion.  What I\nreaped, I had sown.\n\nI was thinking.  And had I truly disciplined my heart to this, and\ncould I resolutely bear it, and calmly hold the place in her home\nwhich she had calmly held in mine, - when I found my eyes resting\non a countenance that might have arisen out of the fire, in its\nassociation with my early remembrances.\n\nLittle Mr. Chillip the Doctor, to whose good offices I was indebted\nin the very first chapter of this history, sat reading a newspaper\nin the shadow of an opposite corner.  He was tolerably stricken in\nyears by this time; but, being a mild, meek, calm little man, had\nworn so easily, that I thought he looked at that moment just as he\nmight have looked when he sat in our parlour, waiting for me to be\nborn.\n\nMr. Chillip had left Blunderstone six or seven years ago, and I had\nnever seen him since.  He sat placidly perusing the newspaper, with\nhis little head on one side, and a glass of warm sherry negus at\nhis elbow.  He was so extremely conciliatory in his manner that he\nseemed to apologize to the very newspaper for taking the liberty of\nreading it.\n\nI walked up to where he was sitting, and said, 'How do you do, Mr.\nChillip?'\n\nHe was greatly fluttered by this unexpected address from a\nstranger, and replied, in his slow way, 'I thank you, sir, you are\nvery good.  Thank you, sir.  I hope YOU are well.'\n\n'You don't remember me?' said I.\n\n'Well, sir,' returned Mr. Chillip, smiling very meekly, and shaking\nhis head as he surveyed me, 'I have a kind of an impression that\nsomething in your countenance is familiar to me, sir; but I\ncouldn't lay my hand upon your name, really.'\n\n'And yet you knew it, long before I knew it myself,' I returned.\n\n'Did I indeed, sir?' said Mr. Chillip.  'Is it possible that I had\nthe honour, sir, of officiating when -?'\n\n'Yes,' said I.\n\n'Dear me!' cried Mr. Chillip.  'But no doubt you are a good deal\nchanged since then, sir?'\n\n'Probably,' said I.\n\n'Well, sir,' observed Mr. Chillip, 'I hope you'll excuse me, if I\nam compelled to ask the favour of your name?'\n\nOn my telling him my name, he was really moved.  He quite shook\nhands with me - which was a violent proceeding for him, his usual\ncourse being to slide a tepid little fish-slice, an inch or two in\nadvance of his hip, and evince the greatest discomposure when\nanybody grappled with it.  Even now, he put his hand in his\ncoat-pocket as soon as he could disengage it, and seemed relieved\nwhen he had got it safe back.\n\n'Dear me, sir!' said Mr. Chillip, surveying me with his head on one\nside.  'And it's Mr. Copperfield, is it?  Well, sir, I think I\nshould have known you, if I had taken the liberty of looking more\nclosely at you.  There's a strong resemblance between you and your\npoor father, sir.'\n\n'I never had the happiness of seeing my father,' I observed.\n\n'Very true, sir,' said Mr. Chillip, in a soothing tone.  'And very\nmuch to be deplored it was, on all accounts! We are not ignorant,\nsir,' said Mr. Chillip, slowly shaking his little head again, 'down\nin our part of the country, of your fame.  There must be great\nexcitement here, sir,' said Mr. Chillip, tapping himself on the\nforehead with his forefinger.  'You must find it a trying\noccupation, sir!'\n\n'What is your part of the country now?' I asked, seating myself\nnear him.\n\n'I am established within a few miles of Bury St. Edmund's, sir,'\nsaid Mr. Chillip.  'Mrs. Chillip, coming into a little property in\nthat neighbourhood, under her father's will, I bought a practice\ndown there, in which you will be glad to hear I am doing well.  My\ndaughter is growing quite a tall lass now, sir,' said Mr. Chillip,\ngiving his little head another little shake.  'Her mother let down\ntwo tucks in her frocks only last week.  Such is time, you see,\nsir!'\n\nAs the little man put his now empty glass to his lips, when he made\nthis reflection, I proposed to him to have it refilled, and I would\nkeep him company with another.  'Well, sir,' he returned, in his\nslow way, 'it's more than I am accustomed to; but I can't deny\nmyself the pleasure of your conversation.  It seems but yesterday\nthat I had the honour of attending you in the measles.  You came\nthrough them charmingly, sir!'\n\nI acknowledged this compliment, and ordered the negus, which was\nsoon produced.  'Quite an uncommon dissipation!' said Mr. Chillip,\nstirring it, 'but I can't resist so extraordinary an occasion.  You\nhave no family, sir?'\n\nI shook my head.\n\n'I was aware that you sustained a bereavement, sir, some time ago,'\nsaid Mr. Chillip.  'I heard it from your father-in-law's sister. \nVery decided character there, sir?'\n\n'Why, yes,' said I, 'decided enough.  Where did you see her, Mr.\nChillip?'\n\n'Are you not aware, sir,' returned Mr. Chillip, with his placidest\nsmile, 'that your father-in-law is again a neighbour of mine?'\n\n'No,' said I.\n\n'He is indeed, sir!' said Mr. Chillip.  'Married a young lady of\nthat part, with a very good little property, poor thing.  - And\nthis action of the brain now, sir?  Don't you find it fatigue you?'\nsaid Mr. Chillip, looking at me like an admiring Robin.\n\nI waived that question, and returned to the Murdstones.  'I was\naware of his being married again.  Do you attend the family?' I\nasked.\n\n'Not regularly.  I have been called in,' he replied.  'Strong\nphrenological developments of the organ of firmness, in Mr.\nMurdstone and his sister, sir.'\n\nI replied with such an expressive look, that Mr. Chillip was\nemboldened by that, and the negus together, to give his head\nseveral short shakes, and thoughtfully exclaim, 'Ah, dear me! We\nremember old times, Mr. Copperfield!'\n\n'And the brother and sister are pursuing their old course, are\nthey?' said I.\n\n'Well, sir,' replied Mr. Chillip, 'a medical man, being so much in\nfamilies, ought to have neither eyes nor ears for anything but his\nprofession.  Still, I must say, they are very severe, sir: both as\nto this life and the next.'\n\n'The next will be regulated without much reference to them, I dare\nsay,' I returned: 'what are they doing as to this?'\n\nMr. Chillip shook his head, stirred his negus, and sipped it.\n\n'She was a charming woman, sir!' he observed in a plaintive manner.\n\n'The present Mrs. Murdstone?'\n\nA charming woman indeed, sir,' said Mr. Chillip; 'as amiable, I am\nsure, as it was possible to be! Mrs. Chillip's opinion is, that her\nspirit has been entirely broken since her marriage, and that she is\nall but melancholy mad.  And the ladies,' observed Mr. Chillip,\ntimorously, 'are great observers, sir.'\n\n'I suppose she was to be subdued and broken to their detestable\nmould, Heaven help her!' said I.  'And she has been.'\n\n'Well, sir, there were violent quarrels at first, I assure you,'\nsaid Mr. Chillip; 'but she is quite a shadow now.  Would it be\nconsidered forward if I was to say to you, sir, in confidence, that\nsince the sister came to help, the brother and sister between them\nhave nearly reduced her to a state of imbecility?'\n\nI told him I could easily believe it.\n\n'I have no hesitation in saying,' said Mr. Chillip, fortifying\nhimself with another sip of negus, 'between you and me, sir, that\nher mother died of it - or that tyranny, gloom, and worry have made\nMrs. Murdstone nearly imbecile.  She was a lively young woman, sir,\nbefore marriage, and their gloom and austerity destroyed her.  They\ngo about with her, now, more like her keepers than her husband and\nsister-in-law.  That was Mrs. Chillip's remark to me, only last\nweek.  And I assure you, sir, the ladies are great observers.  Mrs.\nChillip herself is a great observer!'\n\n'Does he gloomily profess to be (I am ashamed to use the word in\nsuch association) religious still?' I inquired.\n\n'You anticipate, sir,' said Mr. Chillip, his eyelids getting quite\nred with the unwonted stimulus in which he was indulging.  'One of\nMrs. Chillip's most impressive remarks.  Mrs. Chillip,' he\nproceeded, in the calmest and slowest manner, 'quite electrified\nme, by pointing out that Mr. Murdstone sets up an image of himself,\nand calls it the Divine Nature.  You might have knocked me down on\nthe flat of my back, sir, with the feather of a pen, I assure you,\nwhen Mrs. Chillip said so.  The ladies are great observers, sir?'\n\n'Intuitively,' said I, to his extreme delight.\n\n'I am very happy to receive such support in my opinion, sir,' he\nrejoined.  'It is not often that I venture to give a non-medical\nopinion, I assure you.  Mr. Murdstone delivers public addresses\nsometimes, and it is said, - in short, sir, it is said by Mrs.\nChillip, - that the darker tyrant he has lately been, the more\nferocious is his doctrine.'\n\n'I believe Mrs. Chillip to be perfectly right,' said I.\n\n'Mrs. Chillip does go so far as to say,' pursued the meekest of\nlittle men, much encouraged, 'that what such people miscall their\nreligion, is a vent for their bad humours and arrogance.  And do\nyou know I must say, sir,' he continued, mildly laying his head on\none side, 'that I DON'T find authority for Mr. and Miss Murdstone\nin the New Testament?'\n\n'I never found it either!' said I.\n\n'In the meantime, sir,' said Mr. Chillip, 'they are much disliked;\nand as they are very free in consigning everybody who dislikes them\nto perdition, we really have a good deal of perdition going on in\nour neighbourhood! However, as Mrs. Chillip says, sir, they undergo\na continual punishment; for they are turned inward, to feed upon\ntheir own hearts, and their own hearts are very bad feeding.  Now,\nsir, about that brain of yours, if you'll excuse my returning to\nit.  Don't you expose it to a good deal of excitement, sir?'\n\nI found it not difficult, in the excitement of Mr. Chillip's own\nbrain, under his potations of negus, to divert his attention from\nthis topic to his own affairs, on which, for the next half-hour, he\nwas quite loquacious; giving me to understand, among other pieces\nof information, that he was then at the Gray's Inn Coffee-house to\nlay his professional evidence before a Commission of Lunacy,\ntouching the state of mind of a patient who had become deranged\nfrom excessive drinking.\n'And I assure you, sir,' he said, 'I am extremely nervous on such\noccasions.  I could not support being what is called Bullied, sir. \nIt would quite unman me.  Do you know it was some time before I\nrecovered the conduct of that alarming lady, on the night of your\nbirth, Mr. Copperfield?'\n\nI told him that I was going down to my aunt, the Dragon of that\nnight, early in the morning; and that she was one of the most\ntender-hearted and excellent of women, as he would know full well\nif he knew her better.  The mere notion of the possibility of his\never seeing her again, appeared to terrify him.  He replied with a\nsmall pale smile, 'Is she so, indeed, sir?  Really?' and almost\nimmediately called for a candle, and went to bed, as if he were not\nquite safe anywhere else.  He did not actually stagger under the\nnegus; but I should think his placid little pulse must have made\ntwo or three more beats in a minute, than it had done since the\ngreat night of my aunt's disappointment, when she struck at him\nwith her bonnet.\n\nThoroughly tired, I went to bed too, at midnight; passed the next\nday on the Dover coach; burst safe and sound into my aunt's old\nparlour while she was at tea (she wore spectacles now); and was\nreceived by her, and Mr. Dick, and dear old Peggotty, who acted as\nhousekeeper, with open arms and tears of joy.  My aunt was mightily\namused, when we began to talk composedly, by my account of my\nmeeting with Mr. Chillip, and of his holding her in such dread\nremembrance; and both she and Peggotty had a great deal to say\nabout my poor mother's second husband, and 'that murdering woman of\na sister', - on whom I think no pain or penalty would have induced\nmy aunt to bestow any Christian or Proper Name, or any other\ndesignation.\n\n\n\nCHAPTER 60\nAGNES\n\n\nMy aunt and I, when we were left alone, talked far into the night. \nHow the emigrants never wrote home, otherwise than cheerfully and\nhopefully; how Mr. Micawber had actually remitted divers small sums\nof money, on account of those 'pecuniary liabilities', in reference\nto which he had been so business-like as between man and man; how\nJanet, returning into my aunt's service when she came back to\nDover, had finally carried out her renunciation of mankind by\nentering into wedlock with a thriving tavern-keeper; and how my\naunt had finally set her seal on the same great principle, by\naiding and abetting the bride, and crowning the marriage-ceremony\nwith her presence; were among our topics - already more or less\nfamiliar to me through the letters I had had.  Mr. Dick, as usual,\nwas not forgotten.  My aunt informed me how he incessantly occupied\nhimself in copying everything he could lay his hands on, and kept\nKing Charles the First at a respectful distance by that semblance\nof employment; how it was one of the main joys and rewards of her\nlife that he was free and happy, instead of pining in monotonous\nrestraint; and how (as a novel general conclusion) nobody but she\ncould ever fully know what he was.\n\n'And when, Trot,' said my aunt, patting the back of my hand, as we\nsat in our old way before the fire, 'when are you going over to\nCanterbury?'\n\n'I shall get a horse, and ride over tomorrow morning, aunt, unless\nyou will go with me?'\n\n'No!' said my aunt, in her short abrupt way.  'I mean to stay where\nI am.'\n\nThen, I should ride, I said.  I could not have come through\nCanterbury today without stopping, if I had been coming to anyone\nbut her.\n\nShe was pleased, but answered, 'Tut, Trot; MY old bones would have\nkept till tomorrow!' and softly patted my hand again, as I sat\nlooking thoughtfully at the fire.\n\nThoughtfully, for I could not be here once more, and so near Agnes,\nwithout the revival of those regrets with which I had so long been\noccupied.  Softened regrets they might be, teaching me what I had\nfailed to learn when my younger life was all before me, but not the\nless regrets.  'Oh, Trot,' I seemed to hear my aunt say once more;\nand I understood her better now - 'Blind, blind, blind!'\n\nWe both kept silence for some minutes.  When I raised my eyes, I\nfound that she was steadily observant of me.  Perhaps she had\nfollowed the current of my mind; for it seemed to me an easy one to\ntrack now, wilful as it had been once.\n\n'You will find her father a white-haired old man,' said my aunt,\n'though a better man in all other respects - a reclaimed man. \nNeither will you find him measuring all human interests, and joys,\nand sorrows, with his one poor little inch-rule now.  Trust me,\nchild, such things must shrink very much, before they can be\nmeasured off in that way.'\n\n'Indeed they must,' said I.\n\n'You will find her,' pursued my aunt, 'as good, as beautiful, as\nearnest, as disinterested, as she has always been.  If I knew\nhigher praise, Trot, I would bestow it on her.'\n\nThere was no higher praise for her; no higher reproach for me.  Oh,\nhow had I strayed so far away!\n\n'If she trains the young girls whom she has about her, to be like\nherself,' said my aunt, earnest even to the filling of her eyes\nwith tears, 'Heaven knows, her life will be well employed! Useful\nand happy, as she said that day! How could she be otherwise than\nuseful and happy!'\n\n'Has Agnes any -' I was thinking aloud, rather than speaking.\n\n'Well?  Hey?  Any what?' said my aunt, sharply.\n\n'Any lover,' said I.\n\n'A score,' cried my aunt, with a kind of indignant pride.  'She\nmight have married twenty times, my dear, since you have been\ngone!'\n\n'No doubt,' said I.  'No doubt.  But has she any lover who is\nworthy of her?  Agnes could care for no other.'\n\nMy aunt sat musing for a little while, with her chin upon her hand. \nSlowly raising her eyes to mine, she said:\n\n'I suspect she has an attachment, Trot.'\n\n'A prosperous one?' said I.\n\n'Trot,' returned my aunt gravely, 'I can't say.  I have no right to\ntell you even so much.  She has never confided it to me, but I\nsuspect it.'\n\nShe looked so attentively and anxiously at me (I even saw her\ntremble), that I felt now, more than ever, that she had followed my\nlate thoughts.  I summoned all the resolutions I had made, in all\nthose many days and nights, and all those many conflicts of my\nheart.\n\n'If it should be so,' I began, 'and I hope it is-'\n\n'I don't know that it is,' said my aunt curtly.  'You must not be\nruled by my suspicions.  You must keep them secret.  They are very\nslight, perhaps.  I have no right to speak.'\n\n'If it should be so,' I repeated, 'Agnes will tell me at her own\ngood time.  A sister to whom I have confided so much, aunt, will\nnot be reluctant to confide in me.'\n\nMy aunt withdrew her eyes from mine, as slowly as she had turned\nthem upon me; and covered them thoughtfully with her hand.  By and\nby she put her other hand on my shoulder; and so we both sat,\nlooking into the past, without saying another word, until we parted\nfor the night.\n\nI rode away, early in the morning, for the scene of my old\nschool-days.  I cannot say that I was yet quite happy, in the hope\nthat I was gaining a victory over myself; even in the prospect of\nso soon looking on her face again.\n\nThe well-remembered ground was soon traversed, and I came into the\nquiet streets, where every stone was a boy's book to me.  I went on\nfoot to the old house, and went away with a heart too full to\nenter.  I returned; and looking, as I passed, through the low\nwindow of the turret-room where first Uriah Heep, and afterwards\nMr. Micawber, had been wont to sit, saw that it was a little\nparlour now, and that there was no office.  Otherwise the staid old\nhouse was, as to its cleanliness and order, still just as it had\nbeen when I first saw it.  I requested the new maid who admitted\nme, to tell Miss Wickfield that a gentleman who waited on her from\na friend abroad, was there; and I was shown up the grave old\nstaircase (cautioned of the steps I knew so well), into the\nunchanged drawing-room.  The books that Agnes and I had read\ntogether, were on their shelves; and the desk where I had laboured\nat my lessons, many a night, stood yet at the same old corner of\nthe table.  All the little changes that had crept in when the Heeps\nwere there, were changed again.  Everything was as it used to be,\nin the happy time.\n\nI stood in a window, and looked across the ancient street at the\nopposite houses, recalling how I had watched them on wet\nafternoons, when I first came there; and how I had used to\nspeculate about the people who appeared at any of the windows, and\nhad followed them with my eyes up and down stairs, while women went\nclicking along the pavement in pattens, and the dull rain fell in\nslanting lines, and poured out of the water-spout yonder, and\nflowed into the road.  The feeling with which I used to watch the\ntramps, as they came into the town on those wet evenings, at dusk,\nand limped past, with their bundles drooping over their shoulders\nat the ends of sticks, came freshly back to me; fraught, as then,\nwith the smell of damp earth, and wet leaves and briar, and the\nsensation of the very airs that blew upon me in my own toilsome\njourney.\n\nThe opening of the little door in the panelled wall made me start\nand turn.  Her beautiful serene eyes met mine as she came towards\nme.  She stopped and laid her hand upon her bosom, and I caught her\nin my arms.\n\n'Agnes! my dear girl! I have come too suddenly upon you.'\n\n'No, no! I am so rejoiced to see you, Trotwood!'\n\n'Dear Agnes, the happiness it is to me, to see you once again!'\n\nI folded her to my heart, and, for a little while, we were both\nsilent.  Presently we sat down, side by side; and her angel-face\nwas turned upon me with the welcome I had dreamed of, waking and\nsleeping, for whole years.\n\nShe was so true, she was so beautiful, she was so good, - I owed\nher so much gratitude, she was so dear to me, that I could find no\nutterance for what I felt.  I tried to bless her, tried to thank\nher, tried to tell her (as I had often done in letters) what an\ninfluence she had upon me; but all my efforts were in vain.  My\nlove and joy were dumb.\n\nWith her own sweet tranquillity, she calmed my agitation; led me\nback to the time of our parting; spoke to me of Emily, whom she had\nvisited, in secret, many times; spoke to me tenderly of Dora's\ngrave.  With the unerring instinct of her noble heart, she touched\nthe chords of my memory so softly and harmoniously, that not one\njarred within me; I could listen to the sorrowful, distant music,\nand desire to shrink from nothing it awoke.  How could I, when,\nblended with it all, was her dear self, the better angel of my\nlife?\n\n'And you, Agnes,' I said, by and by.  'Tell me of yourself.  You\nhave hardly ever told me of your own life, in all this lapse of\ntime!'\n\n'What should I tell?' she answered, with her radiant smile.  'Papa\nis well.  You see us here, quiet in our own home; our anxieties set\nat rest, our home restored to us; and knowing that, dear Trotwood,\nyou know all.'\n\n'All, Agnes?' said I.\n\nShe looked at me, with some fluttering wonder in her face.\n\n'Is there nothing else, Sister?' I said.\n\nHer colour, which had just now faded, returned, and faded again. \nShe smiled; with a quiet sadness, I thought; and shook her head.\n\nI had sought to lead her to what my aunt had hinted at; for,\nsharply painful to me as it must be to receive that confidence, I\nwas to discipline my heart, and do my duty to her.  I saw, however,\nthat she was uneasy, and I let it pass.\n\n'You have much to do, dear Agnes?'\n\n'With my school?' said she, looking up again, in all her bright\ncomposure.\n\n'Yes.  It is laborious, is it not?'\n\n'The labour is so pleasant,' she returned, 'that it is scarcely\ngrateful in me to call it by that name.'\n\n'Nothing good is difficult to you,' said I.\n\nHer colour came and went once more; and once more, as she bent her\nhead, I saw the same sad smile.\n\n'You will wait and see papa,' said Agnes, cheerfully, 'and pass the\nday with us?  Perhaps you will sleep in your own room?  We always\ncall it yours.'\n\nI could not do that, having promised to ride back to my aunt's at\nnight; but I would pass the day there, joyfully.\n\n'I must be a prisoner for a little while,' said Agnes, 'but here\nare the old books, Trotwood, and the old music.'\n\n'Even the old flowers are here,' said I, looking round; 'or the old\nkinds.'\n\n'I have found a pleasure,' returned Agnes, smiling, 'while you have\nbeen absent, in keeping everything as it used to be when we were\nchildren.  For we were very happy then, I think.'\n\n'Heaven knows we were!' said I.\n\n'And every little thing that has reminded me of my brother,' said\nAgnes, with her cordial eyes turned cheerfully upon me, 'has been\na welcome companion.  Even this,' showing me the basket-trifle,\nfull of keys, still hanging at her side, 'seems to jingle a kind of\nold tune!'\n\nShe smiled again, and went out at the door by which she had come.\n\nIt was for me to guard this sisterly affection with religious care. \nIt was all that I had left myself, and it was a treasure.  If I\nonce shook the foundations of the sacred confidence and usage, in\nvirtue of which it was given to me, it was lost, and could never be\nrecovered.  I set this steadily before myself.  The better I loved\nher, the more it behoved me never to forget it.\n\nI walked through the streets; and, once more seeing my old\nadversary the butcher - now a constable, with his staff hanging up\nin the shop - went down to look at the place where I had fought\nhim; and there meditated on Miss Shepherd and the eldest Miss\nLarkins, and all the idle loves and likings, and dislikings, of\nthat time.  Nothing seemed to have survived that time but Agnes;\nand she, ever a star above me, was brighter and higher.\n\nWhen I returned, Mr. Wickfield had come home, from a garden he had,\na couple of miles or so out of town, where he now employed himself\nalmost every day.  I found him as my aunt had described him.  We\nsat down to dinner, with some half-dozen little girls; and he\nseemed but the shadow of his handsome picture on the wall.\n\nThe tranquillity and peace belonging, of old, to that quiet ground\nin my memory, pervaded it again.  When dinner was done, Mr.\nWickfield taking no wine, and I desiring none, we went up-stairs;\nwhere Agnes and her little charges sang and played, and worked. \nAfter tea the children left us; and we three sat together, talking\nof the bygone days.\n\n'My part in them,' said Mr. Wickfield, shaking his white head, 'has\nmuch matter for regret - for deep regret, and deep contrition,\nTrotwood, you well know.  But I would not cancel it, if it were in\nmy power.'\n\nI could readily believe that, looking at the face beside him.\n\n'I should cancel with it,' he pursued, 'such patience and devotion,\nsuch fidelity, such a child's love, as I must not forget, no! even\nto forget myself.'\n\n'I understand you, sir,' I softly said.  'I hold it - I have always\nheld it - in veneration.'\n\n'But no one knows, not even you,' he returned, 'how much she has\ndone, how much she has undergone, how hard she has striven.  Dear\nAgnes!'\n\nShe had put her hand entreatingly on his arm, to stop him; and was\nvery, very pale.\n\n'Well, well!' he said with a sigh, dismissing, as I then saw, some\ntrial she had borne, or was yet to bear, in connexion with what my\naunt had told me.  'Well! I have never told you, Trotwood, of her\nmother.  Has anyone?'\n\n'Never, sir.'\n\n'It's not much - though it was much to suffer.  She married me in\nopposition to her father's wish, and he renounced her.  She prayed\nhim to forgive her, before my Agnes came into this world.  He was\na very hard man, and her mother had long been dead.  He repulsed\nher.  He broke her heart.'\n\nAgnes leaned upon his shoulder, and stole her arm about his neck.\n\n'She had an affectionate and gentle heart,' he said; 'and it was\nbroken.  I knew its tender nature very well.  No one could, if I\ndid not.  She loved me dearly, but was never happy.  She was always\nlabouring, in secret, under this distress; and being delicate and\ndowncast at the time of his last repulse - for it was not the\nfirst, by many - pined away and died.  She left me Agnes, two weeks\nold; and the grey hair that you recollect me with, when you first\ncame.'  He kissed Agnes on her cheek.\n\n'My love for my dear child was a diseased love, but my mind was all\nunhealthy then.  I say no more of that.  I am not speaking of\nmyself, Trotwood, but of her mother, and of her.  If I give you any\nclue to what I am, or to what I have been, you will unravel it, I\nknow.  What Agnes is, I need not say.  I have always read something\nof her poor mother's story, in her character; and so I tell it you\ntonight, when we three are again together, after such great\nchanges.  I have told it all.'\n\nHis bowed head, and her angel-face and filial duty, derived a more\npathetic meaning from it than they had had before.  If I had wanted\nanything by which to mark this night of our re-union, I should have\nfound it in this.\n\nAgnes rose up from her father's side, before long; and going softly\nto her piano, played some of the old airs to which we had often\nlistened in that place.\n\n'Have you any intention of going away again?' Agnes asked me, as I\nwas standing by.\n\n'What does my sister say to that?'\n\n'I hope not.'\n\n'Then I have no such intention, Agnes.'\n\n'I think you ought not, Trotwood, since you ask me,' she said,\nmildly.  'Your growing reputation and success enlarge your power of\ndoing good; and if I could spare my brother,' with her eyes upon\nme, 'perhaps the time could not.'\n\n'What I am, you have made me, Agnes.  You should know best.'\n\n'I made you, Trotwood?'\n\n'Yes! Agnes, my dear girl!' I said, bending over her.  'I tried to\ntell you, when we met today, something that has been in my thoughts\nsince Dora died.  You remember, when you came down to me in our\nlittle room - pointing upward, Agnes?'\n\n'Oh, Trotwood!' she returned, her eyes filled with tears.  'So\nloving, so confiding, and so young! Can I ever forget?'\n\n'As you were then, my sister, I have often thought since, you have\never been to me.  Ever pointing upward, Agnes; ever leading me to\nsomething better; ever directing me to higher things!'\n\nShe only shook her head; through her tears I saw the same sad quiet\nsmile.\n\n'And I am so grateful to you for it, Agnes, so bound to you, that\nthere is no name for the affection of my heart.  I want you to\nknow, yet don't know how to tell you, that all my life long I shall\nlook up to you, and be guided by you, as I have been through the\ndarkness that is past.  Whatever betides, whatever new ties you may\nform, whatever changes may come between us, I shall always look to\nyou, and love you, as I do now, and have always done.  You will\nalways be my solace and resource, as you have always been.  Until\nI die, my dearest sister, I shall see you always before me,\npointing upward!'\n\nShe put her hand in mine, and told me she was proud of me, and of\nwhat I said; although I praised her very far beyond her worth. \nThen she went on softly playing, but without removing her eyes from\nme.\n'Do you know, what I have heard tonight, Agnes,' said I, strangely\nseems to be a part of the feeling with which I regarded you when I\nsaw you first - with which I sat beside you in my rough\nschool-days?'\n\n'You knew I had no mother,' she replied with a smile, 'and felt\nkindly towards me.'\n\n'More than that, Agnes, I knew, almost as if I had known this\nstory, that there was something inexplicably gentle and softened,\nsurrounding you; something that might have been sorrowful in\nsomeone else (as I can now understand it was), but was not so in\nyou.'\n\nShe softly played on, looking at me still.\n\n'Will you laugh at my cherishing such fancies, Agnes?'\n\n'No!'\n\n'Or at my saying that I really believe I felt, even then, that you\ncould be faithfully affectionate against all discouragement, and\nnever cease to be so, until you ceased to live?  - Will you laugh\nat such a dream?'\n\n'Oh, no! Oh, no!'\n\nFor an instant, a distressful shadow crossed her face; but, even in\nthe start it gave me, it was gone; and she was playing on, and\nlooking at me with her own calm smile.\n\nAs I rode back in the lonely night, the wind going by me like a\nrestless memory, I thought of this, and feared she was not happy. \nI was not happy; but, thus far, I had faithfully set the seal upon\nthe Past, and, thinking of her, pointing upward, thought of her as\npointing to that sky above me, where, in the mystery to come, I\nmight yet love her with a love unknown on earth, and tell her what\nthe strife had been within me when I loved her here.\n\n\n\nCHAPTER 61\nI AM SHOWN TWO INTERESTING PENITENTS\n\n\nFor a time - at all events until my book should be completed, which\nwould be the work of several months - I took up my abode in my\naunt's house at Dover; and there, sitting in the window from which\nI had looked out at the moon upon the sea, when that roof first\ngave me shelter, I quietly pursued my task.\n\nIn pursuance of my intention of referring to my own fictions only\nwhen their course should incidentally connect itself with the\nprogress of my story, I do not enter on the aspirations, the\ndelights, anxieties, and triumphs of my art.  That I truly devoted\nmyself to it with my strongest earnestness, and bestowed upon it\nevery energy of my soul, I have already said.  If the books I have\nwritten be of any worth, they will supply the rest.  I shall\notherwise have written to poor purpose, and the rest will be of\ninterest to no one.\n\nOccasionally, I went to London; to lose myself in the swarm of life\nthere, or to consult with Traddles on some business point.  He had\nmanaged for me, in my absence, with the soundest judgement; and my\nworldly affairs were prospering.  As my notoriety began to bring\nupon me an enormous quantity of letters from people of whom I had\nno knowledge - chiefly about nothing, and extremely difficult to\nanswer - I agreed with Traddles to have my name painted up on his\ndoor.  There, the devoted postman on that beat delivered bushels of\nletters for me; and there, at intervals, I laboured through them,\nlike a Home Secretary of State without the salary.\n\nAmong this correspondence, there dropped in, every now and then, an\nobliging proposal from one of the numerous outsiders always lurking\nabout the Commons, to practise under cover of my name (if I would\ntake the necessary steps remaining to make a proctor of myself),\nand pay me a percentage on the profits.  But I declined these\noffers; being already aware that there were plenty of such covert\npractitioners in existence, and considering the Commons quite bad\nenough, without my doing anything to make it worse.\n\nThe girls had gone home, when my name burst into bloom on\nTraddles's door; and the sharp boy looked, all day, as if he had\nnever heard of Sophy, shut up in a back room, glancing down from\nher work into a sooty little strip of garden with a pump in it. \nBut there I always found her, the same bright housewife; often\nhumming her Devonshire ballads when no strange foot was coming up\nthe stairs, and blunting the sharp boy in his official closet with\nmelody.\n\nI wondered, at first, why I so often found Sophy writing in a\ncopy-book; and why she always shut it up when I appeared, and\nhurried it into the table-drawer.  But the secret soon came out. \nOne day, Traddles (who had just come home through the drizzling\nsleet from Court) took a paper out of his desk, and asked me what\nI thought of that handwriting?\n\n'Oh, DON'T, Tom!' cried Sophy, who was warming his slippers before\nthe fire.\n\n'My dear,' returned Tom, in a delighted state, 'why not?  What do\nyou say to that writing, Copperfield?'\n\n'It's extraordinarily legal and formal,' said I.  'I don't think I\never saw such a stiff hand.'\n\n'Not like a lady's hand, is it?' said Traddles.\n\n'A lady's!' I repeated.  'Bricks and mortar are more like a lady's\nhand!'\n\nTraddles broke into a rapturous laugh, and informed me that it was\nSophy's writing; that Sophy had vowed and declared he would need a\ncopying-clerk soon, and she would be that clerk; that she had\nacquired this hand from a pattern; and that she could throw off -\nI forget how many folios an hour.  Sophy was very much confused by\nmy being told all this, and said that when 'Tom' was made a judge\nhe wouldn't be so ready to proclaim it.  Which 'Tom' denied;\naverring that he should always be equally proud of it, under all\ncircumstances.\n\n'What a thoroughly good and charming wife she is, my dear\nTraddles!' said I, when she had gone away, laughing.\n\n'My dear Copperfield,' returned Traddles, 'she is, without any\nexception, the dearest girl! The way she manages this place; her\npunctuality, domestic knowledge, economy, and order; her\ncheerfulness, Copperfield!'\n\n'Indeed, you have reason to commend her!' I returned.  'You are a\nhappy fellow.  I believe you make yourselves, and each other, two\nof the happiest people in the world.'\n\n'I am sure we ARE two of the happiest people,' returned Traddles. \n'I admit that, at all events.  Bless my soul, when I see her\ngetting up by candle-light on these dark mornings, busying herself\nin the day's arrangements, going out to market before the clerks\ncome into the Inn, caring for no weather, devising the most capital\nlittle dinners out of the plainest materials, making puddings and\npies, keeping everything in its right place, always so neat and\nornamental herself, sitting up at night with me if it's ever so\nlate, sweet-tempered and encouraging always, and all for me, I\npositively sometimes can't believe it, Copperfield!'\n\nHe was tender of the very slippers she had been warming, as he put\nthem on, and stretched his feet enjoyingly upon the fender.\n\n'I positively sometimes can't believe it,' said Traddles.  'Then\nour pleasures! Dear me, they are inexpensive, but they are quite\nwonderful! When we are at home here, of an evening, and shut the\nouter door, and draw those curtains - which she made - where could\nwe be more snug?  When it's fine, and we go out for a walk in the\nevening, the streets abound in enjoyment for us.  We look into the\nglittering windows of the jewellers' shops; and I show Sophy which\nof the diamond-eyed serpents, coiled up on white satin rising\ngrounds, I would give her if I could afford it; and Sophy shows me\nwhich of the gold watches that are capped and jewelled and\nengine-turned, and possessed of the horizontal lever-\nescape-movement, and all sorts of things, she would buy for me if\nshe could afford it; and we pick out the spoons and forks,\nfish-slices, butter-knives, and sugar-tongs, we should both prefer\nif we could both afford it; and really we go away as if we had got\nthem! Then, when we stroll into the squares, and great streets, and\nsee a house to let, sometimes we look up at it, and say, how would\nTHAT do, if I was made a judge?  And we parcel it out - such a room\nfor us, such rooms for the girls, and so forth; until we settle to\nour satisfaction that it would do, or it wouldn't do, as the case\nmay be.  Sometimes, we go at half-price to the pit of the theatre\n- the very smell of which is cheap, in my opinion, at the money -\nand there we thoroughly enjoy the play: which Sophy believes every\nword of, and so do I.  In walking home, perhaps we buy a little bit\nof something at a cook's-shop, or a little lobster at the\nfishmongers, and bring it here, and make a splendid supper,\nchatting about what we have seen.  Now, you know, Copperfield, if\nI was Lord Chancellor, we couldn't do this!'\n\n'You would do something, whatever you were, my dear Traddles,'\nthought I, 'that would be pleasant and amiable.  And by the way,'\nI said aloud, 'I suppose you never draw any skeletons now?'\n\n'Really,' replied Traddles, laughing, and reddening, 'I can't\nwholly deny that I do, my dear Copperfield.  For being in one of\nthe back rows of the King's Bench the other day, with a pen in my\nhand, the fancy came into my head to try how I had preserved that\naccomplishment.  And I am afraid there's a skeleton - in a wig - on\nthe ledge of the desk.'\n\nAfter we had both laughed heartily, Traddles wound up by looking\nwith a smile at the fire, and saying, in his forgiving way, 'Old\nCreakle!'\n\n'I have a letter from that old - Rascal here,' said I.  For I never\nwas less disposed to forgive him the way he used to batter\nTraddles, than when I saw Traddles so ready to forgive him himself.\n\n'From Creakle the schoolmaster?' exclaimed Traddles.  'No!'\n\n'Among the persons who are attracted to me in my rising fame and\nfortune,' said I, looking over my letters, 'and who discover that\nthey were always much attached to me, is the self-same Creakle.  He\nis not a schoolmaster now, Traddles.  He is retired.  He is a\nMiddlesex Magistrate.'\n\nI thought Traddles might be surprised to hear it, but he was not so\nat all.\n\n'How do you suppose he comes to be a Middlesex Magistrate?' said I.\n\n'Oh dear me!' replied Traddles, 'it would be very difficult to\nanswer that question.  Perhaps he voted for somebody, or lent money\nto somebody, or bought something of somebody, or otherwise obliged\nsomebody, or jobbed for somebody, who knew somebody who got the\nlieutenant of the county to nominate him for the commission.'\n\n'On the commission he is, at any rate,' said I.  'And he writes to\nme here, that he will be glad to show me, in operation, the only\ntrue system of prison discipline; the only unchallengeable way of\nmaking sincere and lasting converts and penitents - which, you\nknow, is by solitary confinement.  What do you say?'\n\n'To the system?' inquired Traddles, looking grave.\n\n'No.  To my accepting the offer, and your going with me?'\n\n'I don't object,' said Traddles.\n\n'Then I'll write to say so.  You remember (to say nothing of our\ntreatment) this same Creakle turning his son out of doors, I\nsuppose, and the life he used to lead his wife and daughter?'\n\n'Perfectly,' said Traddles.\n\n'Yet, if you'll read his letter, you'll find he is the tenderest of\nmen to prisoners convicted of the whole calendar of felonies,' said\nI; 'though I can't find that his tenderness extends to any other\nclass of created beings.'\n\nTraddles shrugged his shoulders, and was not at all surprised.  I\nhad not expected him to be, and was not surprised myself; or my\nobservation of similar practical satires would have been but\nscanty.  We arranged the time of our visit, and I wrote accordingly\nto Mr. Creakle that evening.\n\nOn the appointed day - I think it was the next day, but no matter\n- Traddles and I repaired to the prison where Mr. Creakle was\npowerful.  It was an immense and solid building, erected at a vast\nexpense.  I could not help thinking, as we approached the gate,\nwhat an uproar would have been made in the country, if any deluded\nman had proposed to spend one half the money it had cost, on the\nerection of an industrial school for the young, or a house of\nrefuge for the deserving old.\n\nIn an office that might have been on the ground-floor of the Tower\nof Babel, it was so massively constructed, we were presented to our\nold schoolmaster; who was one of a group, composed of two or three\nof the busier sort of magistrates, and some visitors they had\nbrought.  He received me, like a man who had formed my mind in\nbygone years, and had always loved me tenderly.  On my introducing\nTraddles, Mr. Creakle expressed, in like manner, but in an inferior\ndegree, that he had always been Traddles's guide, philosopher, and\nfriend.  Our venerable instructor was a great deal older, and not\nimproved in appearance.  His face was as fiery as ever; his eyes\nwere as small, and rather deeper set.  The scanty, wet-looking grey\nhair, by which I remembered him, was almost gone; and the thick\nveins in his bald head were none the more agreeable to look at.\n\nAfter some conversation among these gentlemen, from which I might\nhave supposed that there was nothing in the world to be\nlegitimately taken into account but the supreme comfort of\nprisoners, at any expense, and nothing on the wide earth to be done\noutside prison-doors, we began our inspection.  It being then just\ndinner-time, we went, first into the great kitchen, where every\nprisoner's dinner was in course of being set out separately (to be\nhanded to him in his cell), with the regularity and precision of\nclock-work.  I said aside, to Traddles, that I wondered whether it\noccurred to anybody, that there was a striking contrast between\nthese plentiful repasts of choice quality, and the dinners, not to\nsay of paupers, but of soldiers, sailors, labourers, the great bulk\nof the honest, working community; of whom not one man in five\nhundred ever dined half so well.  But I learned that the 'system'\nrequired high living; and, in short, to dispose of the system, once\nfor all, I found that on that head and on all others, 'the system'\nput an end to all doubts, and disposed of all anomalies.  Nobody\nappeared to have the least idea that there was any other system,\nbut THE system, to be considered.\n\nAs we were going through some of the magnificent passages, I\ninquired of Mr. Creakle and his friends what were supposed to be\nthe main advantages of this all-governing and universally\nover-riding system?  I found them to be the perfect isolation of\nprisoners - so that no one man in confinement there, knew anything\nabout another; and the reduction of prisoners to a wholesome state\nof mind, leading to sincere contrition and repentance.\n\nNow, it struck me, when we began to visit individuals in their\ncells, and to traverse the passages in which those cells were, and\nto have the manner of the going to chapel and so forth, explained\nto us, that there was a strong probability of the prisoners knowing\na good deal about each other, and of their carrying on a pretty\ncomplete system of intercourse.  This, at the time I write, has\nbeen proved, I believe, to be the case; but, as it would have been\nflat blasphemy against the system to have hinted such a doubt then,\nI looked out for the penitence as diligently as I could.\n\nAnd here again, I had great misgivings.  I found as prevalent a\nfashion in the form of the penitence, as I had left outside in the\nforms of the coats and waistcoats in the windows of the tailors'\nshops.  I found a vast amount of profession, varying very little in\ncharacter: varying very little (which I thought exceedingly\nsuspicious), even in words.  I found a great many foxes,\ndisparaging whole vineyards of inaccessible grapes; but I found\nvery few foxes whom I would have trusted within reach of a bunch. \nAbove all, I found that the most professing men were the greatest\nobjects of interest; and that their conceit, their vanity, their\nwant of excitement, and their love of deception (which many of them\npossessed to an almost incredible extent, as their histories\nshowed), all prompted to these professions, and were all gratified\nby them.\n\nHowever, I heard so repeatedly, in the course of our goings to and\nfro, of a certain Number Twenty Seven, who was the Favourite, and\nwho really appeared to be a Model Prisoner, that I resolved to\nsuspend my judgement until I should see Twenty Seven.  Twenty\nEight, I understood, was also a bright particular star; but it was\nhis misfortune to have his glory a little dimmed by the\nextraordinary lustre of Twenty Seven.  I heard so much of Twenty\nSeven, of his pious admonitions to everybody around him, and of the\nbeautiful letters he constantly wrote to his mother (whom he seemed\nto consider in a very bad way), that I became quite impatient to\nsee him.\n\nI had to restrain my impatience for some time, on account of Twenty\nSeven being reserved for a concluding effect.  But, at last, we\ncame to the door of his cell; and Mr. Creakle, looking through a\nlittle hole in it, reported to us, in a state of the greatest\nadmiration, that he was reading a Hymn Book.\n\nThere was such a rush of heads immediately, to see Number Twenty\nSeven reading his Hymn Book, that the little hole was blocked up,\nsix or seven heads deep.  To remedy this inconvenience, and give us\nan opportunity of conversing with Twenty Seven in all his purity,\nMr. Creakle directed the door of the cell to be unlocked, and\nTwenty Seven to be invited out into the passage.  This was done;\nand whom should Traddles and I then behold, to our amazement, in\nthis converted Number Twenty Seven, but Uriah Heep!\n\nHe knew us directly; and said, as he came out - with the old\nwrithe, -\n\n'How do you do, Mr. Copperfield?  How do you do, Mr. Traddles?'\n\nThis recognition caused a general admiration in the party.  I\nrather thought that everyone was struck by his not being proud, and\ntaking notice of us.\n\n'Well, Twenty Seven,' said Mr. Creakle, mournfully admiring him. \n'How do you find yourself today?'\n\n'I am very umble, sir!' replied Uriah Heep.\n\n'You are always so, Twenty Seven,' said Mr. Creakle.\n\nHere, another gentleman asked, with extreme anxiety: 'Are you quite\ncomfortable?'\n\n'Yes, I thank you, sir!' said Uriah Heep, looking in that\ndirection.  'Far more comfortable here, than ever I was outside. \nI see my follies, now, sir.  That's what makes me comfortable.'\n\nSeveral gentlemen were much affected; and a third questioner,\nforcing himself to the front, inquired with extreme feeling: 'How\ndo you find the beef?'\n\n'Thank you, sir,' replied Uriah, glancing in the new direction of\nthis voice, 'it was tougher yesterday than I could wish; but it's\nmy duty to bear.  I have committed follies, gentlemen,' said Uriah,\nlooking round with a meek smile, 'and I ought to bear the\nconsequences without repining.'\nA murmur, partly of gratification at Twenty Seven's celestial state\nof mind, and partly of indignation against the Contractor who had\ngiven him any cause of complaint (a note of which was immediately\nmade by Mr. Creakle), having subsided, Twenty Seven stood in the\nmidst of us, as if he felt himself the principal object of merit in\na highly meritorious museum.  That we, the neophytes, might have an\nexcess of light shining upon us all at once, orders were given to\nlet out Twenty Eight.\n\nI had been so much astonished already, that I only felt a kind of\nresigned wonder when Mr. Littimer walked forth, reading a good\nbook!\n\n'Twenty Eight,' said a gentleman in spectacles, who had not yet\nspoken, 'you complained last week, my good fellow, of the cocoa. \nHow has it been since?'\n\n'I thank you, sir,' said Mr. Littimer, 'it has been better made. \nIf I might take the liberty of saying so, sir, I don't think the\nmilk which is boiled with it is quite genuine; but I am aware, sir,\nthat there is a great adulteration of milk, in London, and that the\narticle in a pure state is difficult to be obtained.'\n\nIt appeared to me that the gentleman in spectacles backed his\nTwenty Eight against Mr. Creakle's Twenty Seven, for each of them\ntook his own man in hand.\n\n'What is your state of mind, Twenty Eight?' said the questioner in\nspectacles.\n\n'I thank you, sir,' returned Mr. Littimer; 'I see my follies now,\nsir.  I am a good deal troubled when I think of the sins of my\nformer companions, sir; but I trust they may find forgiveness.'\n\n'You are quite happy yourself?' said the questioner, nodding\nencouragement.\n\n'I am much obliged to you, sir,' returned Mr. Littimer.  'Perfectly\nso.'\n\n'Is there anything at all on your mind now?' said the questioner. \n'If so, mention it, Twenty Eight.'\n\n'Sir,' said Mr. Littimer, without looking up, 'if my eyes have not\ndeceived me, there is a gentleman present who was acquainted with\nme in my former life.  It may be profitable to that gentleman to\nknow, sir, that I attribute my past follies, entirely to having\nlived a thoughtless life in the service of young men; and to having\nallowed myself to be led by them into weaknesses, which I had not\nthe strength to resist.  I hope that gentleman will take warning,\nsir, and will not be offended at my freedom.  It is for his good. \nI am conscious of my own past follies.  I hope he may repent of all\nthe wickedness and sin to which he has been a party.'\n\nI observed that several gentlemen were shading their eyes, each\nwith one hand, as if they had just come into church.\n\n'This does you credit, Twenty Eight,' returned the questioner.  'I\nshould have expected it of you.  Is there anything else?'\n\n'Sir,' returned Mr. Littimer, slightly lifting up his eyebrows, but\nnot his eyes, 'there was a young woman who fell into dissolute\ncourses, that I endeavoured to save, sir, but could not rescue.  I\nbeg that gentleman, if he has it in his power, to inform that young\nwoman from me that I forgive her her bad conduct towards myself,\nand that I call her to repentance - if he will be so good.'\n\n'I have no doubt, Twenty Eight,' returned the questioner, 'that the\ngentleman you refer to feels very strongly - as we all must - what\nyou have so properly said.  We will not detain you.'\n\n'I thank you, sir,' said Mr. Littimer.  'Gentlemen, I wish you a\ngood day, and hoping you and your families will also see your\nwickedness, and amend!'\n\nWith this, Number Twenty Eight retired, after a glance between him\nand Uriah; as if they were not altogether unknown to each other,\nthrough some medium of communication; and a murmur went round the\ngroup, as his door shut upon him, that he was a most respectable\nman, and a beautiful case.\n\n'Now, Twenty Seven,' said Mr. Creakle, entering on a clear stage\nwith his man, 'is there anything that anyone can do for you?  If\nso, mention it.'\n\n'I would umbly ask, sir,' returned Uriah, with a jerk of his\nmalevolent head, 'for leave to write again to mother.'\n\n'It shall certainly be granted,' said Mr. Creakle.\n\n'Thank you, sir! I am anxious about mother.  I am afraid she ain't\nsafe.'\n\nSomebody incautiously asked, what from?  But there was a\nscandalized whisper of 'Hush!'\n\n'Immortally safe, sir,' returned Uriah, writhing in the direction\nof the voice.  'I should wish mother to be got into my state.  I\nnever should have been got into my present state if I hadn't come\nhere.  I wish mother had come here.  It would be better for\neverybody, if they got took up, and was brought here.'\n\nThis sentiment gave unbounded satisfaction - greater satisfaction,\nI think, than anything that had passed yet.\n\n'Before I come here,' said Uriah, stealing a look at us, as if he\nwould have blighted the outer world to which we belonged, if he\ncould, 'I was given to follies; but now I am sensible of my\nfollies.  There's a deal of sin outside.  There's a deal of sin in\nmother.  There's nothing but sin everywhere - except here.'\n\n'You are quite changed?' said Mr. Creakle.\n\n'Oh dear, yes, sir!' cried this hopeful penitent.\n\n'You wouldn't relapse, if you were going out?' asked somebody else.\n\n'Oh de-ar no, sir!'\n\n'Well!' said Mr. Creakle, 'this is very gratifying.  You have\naddressed Mr. Copperfield, Twenty Seven.  Do you wish to say\nanything further to him?'\n\n'You knew me, a long time before I came here and was changed, Mr.\nCopperfield,' said Uriah, looking at me; and a more villainous look\nI never saw, even on his visage.  'You knew me when, in spite of my\nfollies, I was umble among them that was proud, and meek among them\nthat was violent - you was violent to me yourself, Mr. Copperfield. \nOnce, you struck me a blow in the face, you know.'\n\nGeneral commiseration.  Several indignant glances directed at me.\n\n'But I forgive you, Mr. Copperfield,' said Uriah, making his\nforgiving nature the subject of a most impious and awful parallel,\nwhich I shall not record.  'I forgive everybody.  It would ill\nbecome me to bear malice.  I freely forgive you, and I hope you'll\ncurb your passions in future.  I hope Mr. W. will repent, and Miss\nW., and all of that sinful lot.  You've been visited with\naffliction, and I hope it may do you good; but you'd better have\ncome here.  Mr. W. had better have come here, and Miss W. too.  The\nbest wish I could give you, Mr. Copperfield, and give all of you\ngentlemen, is, that you could be took up and brought here.  When I\nthink of my past follies, and my present state, I am sure it would\nbe best for you.  I pity all who ain't brought here!'\n\nHe sneaked back into his cell, amidst a little chorus of\napprobation; and both Traddles and I experienced a great relief\nwhen he was locked in.\n\nIt was a characteristic feature in this repentance, that I was fain\nto ask what these two men had done, to be there at all.  That\nappeared to be the last thing about which they had anything to say. \nI addressed myself to one of the two warders, who, I suspected from\ncertain latent indications in their faces, knew pretty well what\nall this stir was worth.\n\n'Do you know,' said I, as we walked along the passage, 'what felony\nwas Number Twenty Seven's last \"folly\"?'\n\nThe answer was that it was a Bank case.\n\n'A fraud on the Bank of England?' I asked.\n'Yes, sir.  Fraud, forgery, and conspiracy.  He and some others. \nHe set the others on.  It was a deep plot for a large sum. \nSentence, transportation for life.  Twenty Seven was the knowingest\nbird of the lot, and had very nearly kept himself safe; but not\nquite.  The Bank was just able to put salt upon his tail - and only\njust.'\n\n'Do you know Twenty Eight's offence?'\n\n'Twenty Eight,' returned my informant, speaking throughout in a low\ntone, and looking over his shoulder as we walked along the passage,\nto guard himself from being overheard, in such an unlawful\nreference to these Immaculates, by Creakle and the rest; 'Twenty\nEight (also transportation) got a place, and robbed a young master\nof a matter of two hundred and fifty pounds in money and valuables,\nthe night before they were going abroad.  I particularly recollect\nhis case, from his being took by a dwarf.'\n\n'A what?'\n\n'A little woman.  I have forgot her name?'\n\n'Not Mowcher?'\n\n'That's it! He had eluded pursuit, and was going to America in a\nflaxen wig, and whiskers, and such a complete disguise as never you\nsee in all your born days; when the little woman, being in\nSouthampton, met him walking along the street - picked him out with\nher sharp eye in a moment - ran betwixt his legs to upset him - and\nheld on to him like grim Death.'\n\n'Excellent Miss Mowcher!' cried I.\n\n'You'd have said so, if you had seen her, standing on a chair in\nthe witness-box at the trial, as I did,' said my friend.  'He cut\nher face right open, and pounded her in the most brutal manner,\nwhen she took him; but she never loosed her hold till he was locked\nup.  She held so tight to him, in fact, that the officers were\nobliged to take 'em both together.  She gave her evidence in the\ngamest way, and was highly complimented by the Bench, and cheered\nright home to her lodgings.  She said in Court that she'd have took\nhim single-handed (on account of what she knew concerning him), if\nhe had been Samson.  And it's my belief she would!'\n\nIt was mine too, and I highly respected Miss Mowcher for it.\n\nWe had now seen all there was to see.  It would have been in vain\nto represent to such a man as the Worshipful Mr. Creakle, that\nTwenty Seven and Twenty Eight were perfectly consistent and\nunchanged; that exactly what they were then, they had always been;\nthat the hypocritical knaves were just the subjects to make that\nsort of profession in such a place; that they knew its market-value\nat least as well as we did, in the immediate service it would do\nthem when they were expatriated; in a word, that it was a rotten,\nhollow, painfully suggestive piece of business altogether.  We left\nthem to their system and themselves, and went home wondering.\n\n'Perhaps it's a good thing, Traddles,' said I, 'to have an unsound\nHobby ridden hard; for it's the sooner ridden to death.'\n\n'I hope so,' replied Traddles.\n\n\n\nCHAPTER 62\nA LIGHT SHINES ON MY WAY\n\n\nThe year came round to Christmas-time, and I had been at home above\ntwo months.  I had seen Agnes frequently.  However loud the general\nvoice might be in giving me encouragement, and however fervent the\nemotions and endeavours to which it roused me, I heard her lightest\nword of praise as I heard nothing else.\n\nAt least once a week, and sometimes oftener, I rode over there, and\npassed the evening.  I usually rode back at night; for the old\nunhappy sense was always hovering about me now - most sorrowfully\nwhen I left her - and I was glad to be up and out, rather than\nwandering over the past in weary wakefulness or miserable dreams. \nI wore away the longest part of many wild sad nights, in those\nrides; reviving, as I went, the thoughts that had occupied me in my\nlong absence.\n\nOr, if I were to say rather that I listened to the echoes of those\nthoughts, I should better express the truth.  They spoke to me from\nafar off.  I had put them at a distance, and accepted my inevitable\nplace.  When I read to Agnes what I wrote; when I saw her listening\nface; moved her to smiles or tears; and heard her cordial voice so\nearnest on the shadowy events of that imaginative world in which I\nlived; I thought what a fate mine might have been - but only\nthought so, as I had thought after I was married to Dora, what I\ncould have wished my wife to be.\n\nMy duty to Agnes, who loved me with a love, which, if I disquieted,\nI wronged most selfishly and poorly, and could never restore; my\nmatured assurance that I, who had worked out my own destiny, and\nwon what I had impetuously set my heart on, had no right to murmur,\nand must bear; comprised what I felt and what I had learned.  But\nI loved her: and now it even became some consolation to me, vaguely\nto conceive a distant day when I might blamelessly avow it; when\nall this should be over; when I could say 'Agnes, so it was when I\ncame home; and now I am old, and I never have loved since!'\n\nShe did not once show me any change in herself.  What she always\nhad been to me, she still was; wholly unaltered.\n\nBetween my aunt and me there had been something, in this connexion,\nsince the night of my return, which I cannot call a restraint, or\nan avoidance of the subject, so much as an implied understanding\nthat we thought of it together, but did not shape our thoughts into\nwords.  When, according to our old custom, we sat before the fire\nat night, we often fell into this train; as naturally, and as\nconsciously to each other, as if we had unreservedly said so.  But\nwe preserved an unbroken silence.  I believed that she had read, or\npartly read, my thoughts that night; and that she fully\ncomprehended why I gave mine no more distinct expression.\n\nThis Christmas-time being come, and Agnes having reposed no new\nconfidence in me, a doubt that had several times arisen in my mind\n- whether she could have that perception of the true state of my\nbreast, which restrained her with the apprehension of giving me\npain - began to oppress me heavily.  If that were so, my sacrifice\nwas nothing; my plainest obligation to her unfulfilled; and every\npoor action I had shrunk from, I was hourly doing.  I resolved to\nset this right beyond all doubt; - if such a barrier were between\nus, to break it down at once with a determined hand.\n\nIt was - what lasting reason have I to remember it! - a cold,\nharsh, winter day.  There had been snow, some hours before; and it\nlay, not deep, but hard-frozen on the ground.  Out at sea, beyond\nmy window, the wind blew ruggedly from the north.  I had been\nthinking of it, sweeping over those mountain wastes of snow in\nSwitzerland, then inaccessible to any human foot; and had been\nspeculating which was the lonelier, those solitary regions, or a\ndeserted ocean.\n\n'Riding today, Trot?' said my aunt, putting her head in at the\ndoor.\n\n'Yes,' said I, 'I am going over to Canterbury.  It's a good day for\na ride.'\n\n'I hope your horse may think so too,' said my aunt; 'but at present\nhe is holding down his head and his ears, standing before the door\nthere, as if he thought his stable preferable.'\n\nMy aunt, I may observe, allowed my horse on the forbidden ground,\nbut had not at all relented towards the donkeys.\n\n'He will be fresh enough, presently!' said I.\n\n'The ride will do his master good, at all events,' observed my\naunt, glancing at the papers on my table.  'Ah, child, you pass a\ngood many hours here! I never thought, when I used to read books,\nwhat work it was to write them.'\n\n'It's work enough to read them, sometimes,' I returned.  'As to the\nwriting, it has its own charms, aunt.'\n\n'Ah! I see!' said my aunt.  'Ambition, love of approbation,\nsympathy, and much more, I suppose?  Well: go along with you!'\n\n'Do you know anything more,' said I, standing composedly before her\n- she had patted me on the shoulder, and sat down in my chair - 'of\nthat attachment of Agnes?'\n\nShe looked up in my face a little while, before replying:\n\n'I think I do, Trot.'\n\n'Are you confirmed in your impression?' I inquired.\n\n'I think I am, Trot.'\n\nShe looked so steadfastly at me: with a kind of doubt, or pity, or\nsuspense in her affection: that I summoned the stronger\ndetermination to show her a perfectly cheerful face.\n\n'And what is more, Trot -' said my aunt.\n\n'Yes!'\n\n'I think Agnes is going to be married.'\n\n'God bless her!' said I, cheerfully.\n\n'God bless her!' said my aunt, 'and her husband too!'\n\nI echoed it, parted from my aunt, and went lightly downstairs,\nmounted, and rode away.  There was greater reason than before to do\nwhat I had resolved to do.\n\nHow well I recollect the wintry ride! The frozen particles of ice,\nbrushed from the blades of grass by the wind, and borne across my\nface; the hard clatter of the horse's hoofs, beating a tune upon\nthe ground; the stiff-tilled soil; the snowdrift, lightly eddying\nin the chalk-pit as the breeze ruffled it; the smoking team with\nthe waggon of old hay, stopping to breathe on the hill-top, and\nshaking their bells musically; the whitened slopes and sweeps of\nDown-land lying against the dark sky, as if they were drawn on a\nhuge slate!\n\nI found Agnes alone.  The little girls had gone to their own homes\nnow, and she was alone by the fire, reading.  She put down her book\non seeing me come in; and having welcomed me as usual, took her\nwork-basket and sat in one of the old-fashioned windows.\n\nI sat beside her on the window-seat, and we talked of what I was\ndoing, and when it would be done, and of the progress I had made\nsince my last visit.  Agnes was very cheerful; and laughingly\npredicted that I should soon become too famous to be talked to, on\nsuch subjects.\n\n'So I make the most of the present time, you see,' said Agnes, 'and\ntalk to you while I may.'\n\nAs I looked at her beautiful face, observant of her work, she\nraised her mild clear eyes, and saw that I was looking at her.\n\n'You are thoughtful today, Trotwood!'\n\n'Agnes, shall I tell you what about?  I came to tell you.'\n\nShe put aside her work, as she was used to do when we were\nseriously discussing anything; and gave me her whole attention.\n\n'My dear Agnes, do you doubt my being true to you?'\n\n'No!' she answered, with a look of astonishment.\n\n'Do you doubt my being what I always have been to you?'\n\n'No!' she answered, as before.\n\n'Do you remember that I tried to tell you, when I came home, what\na debt of gratitude I owed you, dearest Agnes, and how fervently I\nfelt towards you?'\n\n'I remember it,' she said, gently, 'very well.'\n\n'You have a secret,' said I.  'Let me share it, Agnes.'\n\nShe cast down her eyes, and trembled.\n\n'I could hardly fail to know, even if I had not heard - but from\nother lips than yours, Agnes, which seems strange - that there is\nsomeone upon whom you have bestowed the treasure of your love.  Do\nnot shut me out of what concerns your happiness so nearly! If you\ncan trust me, as you say you can, and as I know you may, let me be\nyour friend, your brother, in this matter, of all others!'\n\nWith an appealing, almost a reproachful, glance, she rose from the\nwindow; and hurrying across the room as if without knowing where,\nput her hands before her face, and burst into such tears as smote\nme to the heart.\n\nAnd yet they awakened something in me, bringing promise to my\nheart.  Without my knowing why, these tears allied themselves with\nthe quietly sad smile which was so fixed in my remembrance, and\nshook me more with hope than fear or sorrow.\n\n'Agnes! Sister! Dearest! What have I done?'\n\n'Let me go away, Trotwood.  I am not well.  I am not myself.  I\nwill speak to you by and by - another time.  I will write to you. \nDon't speak to me now.  Don't! don't!'\n\nI sought to recollect what she had said, when I had spoken to her\non that former night, of her affection needing no return.  It\nseemed a very world that I must search through in a moment.\n'Agnes, I cannot bear to see you so, and think that I have been the\ncause.  My dearest girl, dearer to me than anything in life, if you\nare unhappy, let me share your unhappiness.  If you are in need of\nhelp or counsel, let me try to give it to you.  If you have indeed\na burden on your heart, let me try to lighten it.  For whom do I\nlive now, Agnes, if it is not for you!'\n\n'Oh, spare me! I am not myself! Another time!' was all I could\ndistinguish.\n\nWas it a selfish error that was leading me away?  Or, having once\na clue to hope, was there something opening to me that I had not\ndared to think of?\n\n'I must say more.  I cannot let you leave me so! For Heaven's sake,\nAgnes, let us not mistake each other after all these years, and all\nthat has come and gone with them! I must speak plainly.  If you\nhave any lingering thought that I could envy the happiness you will\nconfer; that I could not resign you to a dearer protector, of your\nown choosing; that I could not, from my removed place, be a\ncontented witness of your joy; dismiss it, for I don't deserve it!\nI have not suffered quite in vain.  You have not taught me quite in\nvain.  There is no alloy of self in what I feel for you.'\n\nShe was quiet now.  In a little time, she turned her pale face\ntowards me, and said in a low voice, broken here and there, but\nvery clear:\n\n'I owe it to your pure friendship for me, Trotwood - which, indeed,\nI do not doubt - to tell you, you are mistaken.  I can do no more. \nIf I have sometimes, in the course of years, wanted help and\ncounsel, they have come to me.  If I have sometimes been unhappy,\nthe feeling has passed away.  If I have ever had a burden on my\nheart, it has been lightened for me.  If I have any secret, it is\n- no new one; and is - not what you suppose.  I cannot reveal it,\nor divide it.  It has long been mine, and must remain mine.'\n\n'Agnes! Stay! A moment!'\n\nShe was going away, but I detained her.  I clasped my arm about her\nwaist.  'In the course of years!' 'It is not a new one!' New\nthoughts and hopes were whirling through my mind, and all the\ncolours of my life were changing.\n\n'Dearest Agnes! Whom I so respect and honour - whom I so devotedly\nlove! When I came here today, I thought that nothing could have\nwrested this confession from me.  I thought I could have kept it in\nmy bosom all our lives, till we were old.  But, Agnes, if I have\nindeed any new-born hope that I may ever call you something more\nthan Sister, widely different from Sister! -'\n\nHer tears fell fast; but they were not like those she had lately\nshed, and I saw my hope brighten in them.\n\n'Agnes! Ever my guide, and best support! If you had been more\nmindful of yourself, and less of me, when we grew up here together,\nI think my heedless fancy never would have wandered from you.  But\nyou were so much better than I, so necessary to me in every boyish\nhope and disappointment, that to have you to confide in, and rely\nupon in everything, became a second nature, supplanting for the\ntime the first and greater one of loving you as I do!'\n\nStill weeping, but not sadly - joyfully! And clasped in my arms as\nshe had never been, as I had thought she never was to be!\n\n'When I loved Dora - fondly, Agnes, as you know -'\n\n'Yes!' she cried, earnestly.  'I am glad to know it!'\n\n'When I loved her - even then, my love would have been incomplete,\nwithout your sympathy.  I had it, and it was perfected.  And when\nI lost her, Agnes, what should I have been without you, still!'\n\nCloser in my arms, nearer to my heart, her trembling hand upon my\nshoulder, her sweet eyes shining through her tears, on mine!\n\n'I went away, dear Agnes, loving you.  I stayed away, loving you. \nI returned home, loving you!'\n\nAnd now, I tried to tell her of the struggle I had had, and the\nconclusion I had come to.  I tried to lay my mind before her,\ntruly, and entirely.  I tried to show her how I had hoped I had\ncome into the better knowledge of myself and of her; how I had\nresigned myself to what that better knowledge brought; and how I\nhad come there, even that day, in my fidelity to this.  If she did\nso love me (I said) that she could take me for her husband, she\ncould do so, on no deserving of mine, except upon the truth of my\nlove for her, and the trouble in which it had ripened to be what it\nwas; and hence it was that I revealed it.  And O, Agnes, even out\nof thy true eyes, in that same time, the spirit of my child-wife\nlooked upon me, saying it was well; and winning me, through thee,\nto tenderest recollections of the Blossom that had withered in its\nbloom!\n\n'I am so blest, Trotwood - my heart is so overcharged - but there\nis one thing I must say.'\n\n'Dearest, what?'\n\nShe laid her gentle hands upon my shoulders, and looked calmly in\nmy face.\n\n'Do you know, yet, what it is?'\n\n'I am afraid to speculate on what it is.  Tell me, my dear.'\n\n'I have loved you all my life!'\n\nO, we were happy, we were happy! Our tears were not for the trials\n(hers so much the greater) through which we had come to be thus,\nbut for the rapture of being thus, never to be divided more!\n\nWe walked, that winter evening, in the fields together; and the\nblessed calm within us seemed to be partaken by the frosty air. \nThe early stars began to shine while we were lingering on, and\nlooking up to them, we thanked our GOD for having guided us to this\ntranquillity.\n\nWe stood together in the same old-fashioned window at night, when\nthe moon was shining; Agnes with her quiet eyes raised up to it; I\nfollowing her glance.  Long miles of road then opened out before my\nmind; and, toiling on, I saw a ragged way-worn boy, forsaken and\nneglected, who should come to call even the heart now beating\nagainst mine, his own.\n\n\nIt was nearly dinner-time next day when we appeared before my aunt. \nShe was up in my study, Peggotty said: which it was her pride to\nkeep in readiness and order for me.  We found her, in her\nspectacles, sitting by the fire.\n\n'Goodness me!' said my aunt, peering through the dusk, 'who's this\nyou're bringing home?'\n\n'Agnes,' said I.\n\nAs we had arranged to say nothing at first, my aunt was not a\nlittle discomfited.  She darted a hopeful glance at me, when I said\n'Agnes'; but seeing that I looked as usual, she took off her\nspectacles in despair, and rubbed her nose with them.\n\nShe greeted Agnes heartily, nevertheless; and we were soon in the\nlighted parlour downstairs, at dinner.  My aunt put on her\nspectacles twice or thrice, to take another look at me, but as\noften took them off again, disappointed, and rubbed her nose with\nthem.  Much to the discomfiture of Mr. Dick, who knew this to be a\nbad symptom.\n\n'By the by, aunt,' said I, after dinner; 'I have been speaking to\nAgnes about what you told me.'\n\n'Then, Trot,' said my aunt, turning scarlet, 'you did wrong, and\nbroke your promise.'\n\n'You are not angry, aunt, I trust?  I am sure you won't be, when\nyou learn that Agnes is not unhappy in any attachment.'\n\n'Stuff and nonsense!' said my aunt.\n\nAs my aunt appeared to be annoyed, I thought the best way was to\ncut her annoyance short.  I took Agnes in my arm to the back of her\nchair, and we both leaned over her.  My aunt, with one clap of her\nhands, and one look through her spectacles, immediately went into\nhysterics, for the first and only time in all my knowledge of her.\n\nThe hysterics called up Peggotty.  The moment my aunt was restored,\nshe flew at Peggotty, and calling her a silly old creature, hugged\nher with all her might.  After that, she hugged Mr. Dick (who was\nhighly honoured, but a good deal surprised); and after that, told\nthem why.  Then, we were all happy together.\n\nI could not discover whether my aunt, in her last short\nconversation with me, had fallen on a pious fraud, or had really\nmistaken the state of my mind.  It was quite enough, she said, that\nshe had told me Agnes was going to be married; and that I now knew\nbetter than anyone how true it was.\n\n\nWe were married within a fortnight.  Traddles and Sophy, and Doctor\nand Mrs. Strong, were the only guests at our quiet wedding.  We\nleft them full of joy; and drove away together.  Clasped in my\nembrace, I held the source of every worthy aspiration I had ever\nhad; the centre of myself, the circle of my life, my own, my wife;\nmy love of whom was founded on a rock!\n\n'Dearest husband!' said Agnes.  'Now that I may call you by that\nname, I have one thing more to tell you.'\n\n'Let me hear it, love.'\n\n'It grows out of the night when Dora died.  She sent you for me.'\n\n'She did.'\n\n'She told me that she left me something.  Can you think what it\nwas?'\n\nI believed I could.  I drew the wife who had so long loved me,\ncloser to my side.\n\n'She told me that she made a last request to me, and left me a last\ncharge.'\n\n'And it was -'\n\n'That only I would occupy this vacant place.'\n\nAnd Agnes laid her head upon my breast, and wept; and I wept with\nher, though we were so happy.\n\n\n\n\nCHAPTER 63\nA VISITOR\n\nWhat I have purposed to record is nearly finished; but there is yet\nan incident conspicuous in my memory, on which it often rests with\ndelight, and without which one thread in the web I have spun would\nhave a ravelled end.\n\nI had advanced in fame and fortune, my domestic joy was perfect, I\nhad been married ten happy years.  Agnes and I were sitting by the\nfire, in our house in London, one night in spring, and three of our\nchildren were playing in the room, when I was told that a stranger\nwished to see me.\n\nHe had been asked if he came on business, and had answered No; he\nhad come for the pleasure of seeing me, and had come a long way. \nHe was an old man, my servant said, and looked like a farmer.\n\nAs this sounded mysterious to the children, and moreover was like\nthe beginning of a favourite story Agnes used to tell them,\nintroductory to the arrival of a wicked old Fairy in a cloak who\nhated everybody, it produced some commotion.  One of our boys laid\nhis head in his mother's lap to be out of harm's way, and little\nAgnes (our eldest child) left her doll in a chair to represent her,\nand thrust out her little heap of golden curls from between the\nwindow-curtains, to see what happened next.\n\n'Let him come in here!' said I.\n\nThere soon appeared, pausing in the dark doorway as he entered, a\nhale, grey-haired old man.  Little Agnes, attracted by his looks,\nhad run to bring him in, and I had not yet clearly seen his face,\nwhen my wife, starting up, cried out to me, in a pleased and\nagitated voice, that it was Mr. Peggotty!\n\nIt WAS Mr. Peggotty.  An old man now, but in a ruddy, hearty,\nstrong old age.  When our first emotion was over, and he sat before\nthe fire with the children on his knees, and the blaze shining on\nhis face, he looked, to me, as vigorous and robust, withal as\nhandsome, an old man, as ever I had seen.\n\n'Mas'r Davy,' said he.  And the old name in the old tone fell so\nnaturally on my ear! 'Mas'r Davy, 'tis a joyful hour as I see you,\nonce more, 'long with your own trew wife!'\n\n'A joyful hour indeed, old friend!' cried I.\n\n'And these heer pretty ones,' said Mr. Peggotty.  'To look at these\nheer flowers! Why, Mas'r Davy, you was but the heighth of the\nlittlest of these, when I first see you! When Em'ly warn't no\nbigger, and our poor lad were BUT a lad!'\n\n'Time has changed me more than it has changed you since then,' said\nI.  'But let these dear rogues go to bed; and as no house in\nEngland but this must hold you, tell me where to send for your\nluggage (is the old black bag among it, that went so far, I\nwonder!), and then, over a glass of Yarmouth grog, we will have the\ntidings of ten years!'\n\n'Are you alone?' asked Agnes.\n\n'Yes, ma'am,' he said, kissing her hand, 'quite alone.'\n\nWe sat him between us, not knowing how to give him welcome enough;\nand as I began to listen to his old familiar voice, I could have\nfancied he was still pursuing his long journey in search of his\ndarling niece.\n\n'It's a mort of water,' said Mr. Peggotty, 'fur to come across, and\non'y stay a matter of fower weeks.  But water ('specially when 'tis\nsalt) comes nat'ral to me; and friends is dear, and I am heer.  -\nWhich is verse,' said Mr. Peggotty, surprised to find it out,\n'though I hadn't such intentions.'\n\n'Are you going back those many thousand miles, so soon?' asked\nAgnes.\n\n'Yes, ma'am,' he returned.  'I giv the promise to Em'ly, afore I\ncome away.  You see, I doen't grow younger as the years comes\nround, and if I hadn't sailed as 'twas, most like I shouldn't never\nhave done 't.  And it's allus been on my mind, as I must come and\nsee Mas'r Davy and your own sweet blooming self, in your wedded\nhappiness, afore I got to be too old.'\n\nHe looked at us, as if he could never feast his eyes on us\nsufficiently.  Agnes laughingly put back some scattered locks of\nhis grey hair, that he might see us better.\n\n'And now tell us,' said I, 'everything relating to your fortunes.'\n\n'Our fortuns, Mas'r Davy,' he rejoined, 'is soon told.  We haven't\nfared nohows, but fared to thrive.  We've allus thrived.  We've\nworked as we ought to 't, and maybe we lived a leetle hard at first\nor so, but we have allus thrived.  What with sheep-farming, and\nwhat with stock-farming, and what with one thing and what with\nt'other, we are as well to do, as well could be.  Theer's been\nkiender a blessing fell upon us,' said Mr. Peggotty, reverentially\ninclining his head, 'and we've done nowt but prosper.  That is, in\nthe long run.  If not yesterday, why then today.  If not today, why\nthen tomorrow.'\n\n'And Emily?' said Agnes and I, both together.\n\n'Em'ly,' said he, 'arter you left her, ma'am - and I never heerd\nher saying of her prayers at night, t'other side the canvas screen,\nwhen we was settled in the Bush, but what I heerd your name - and\narter she and me lost sight of Mas'r Davy, that theer shining\nsundown - was that low, at first, that, if she had know'd then what\nMas'r Davy kep from us so kind and thowtful, 'tis my opinion she'd\nhave drooped away.  But theer was some poor folks aboard as had\nillness among 'em, and she took care of them; and theer was the\nchildren in our company, and she took care of them; and so she got\nto be busy, and to be doing good, and that helped her.'\n\n'When did she first hear of it?' I asked.\n\n'I kep it from her arter I heerd on 't,' said Mr. Peggotty, 'going\non nigh a year.  We was living then in a solitary place, but among\nthe beautifullest trees, and with the roses a-covering our Beein to\nthe roof.  Theer come along one day, when I was out a-working on\nthe land, a traveller from our own Norfolk or Suffolk in England (I\ndoen't rightly mind which), and of course we took him in, and giv\nhim to eat and drink, and made him welcome.  We all do that, all\nthe colony over.  He'd got an old newspaper with him, and some\nother account in print of the storm.  That's how she know'd it. \nWhen I came home at night, I found she know'd it.'\n\nHe dropped his voice as he said these words, and the gravity I so\nwell remembered overspread his face.\n\n'Did it change her much?' we asked.\n\n'Aye, for a good long time,' he said, shaking his head; 'if not to\nthis present hour.  But I think the solitoode done her good.  And\nshe had a deal to mind in the way of poultry and the like, and\nminded of it, and come through.  I wonder,' he said thoughtfully,\n'if you could see my Em'ly now, Mas'r Davy, whether you'd know\nher!'\n\n'Is she so altered?' I inquired.\n\n'I doen't know.  I see her ev'ry day, and doen't know; But,\nodd-times, I have thowt so.  A slight figure,' said Mr. Peggotty,\nlooking at the fire, 'kiender worn; soft, sorrowful, blue eyes; a\ndelicate face; a pritty head, leaning a little down; a quiet voice\nand way - timid a'most.  That's Em'ly!'\n\nWe silently observed him as he sat, still looking at the fire.\n\n'Some thinks,' he said, 'as her affection was ill-bestowed; some,\nas her marriage was broken off by death.  No one knows how 'tis. \nShe might have married well, a mort of times, \"but, uncle,\" she\nsays to me, \"that's gone for ever.\" Cheerful along with me; retired\nwhen others is by; fond of going any distance fur to teach a child,\nor fur to tend a sick person, or fur to do some kindness tow'rds a\nyoung girl's wedding (and she's done a many, but has never seen\none); fondly loving of her uncle; patient; liked by young and old;\nsowt out by all that has any trouble.  That's Em'ly!'\n\nHe drew his hand across his face, and with a half-suppressed sigh\nlooked up from the fire.\n\n'Is Martha with you yet?' I asked.\n\n'Martha,' he replied, 'got married, Mas'r Davy, in the second year. \nA young man, a farm-labourer, as come by us on his way to market\nwith his mas'r's drays - a journey of over five hundred mile, theer\nand back - made offers fur to take her fur his wife (wives is very\nscarce theer), and then to set up fur their two selves in the Bush. \nShe spoke to me fur to tell him her trew story.  I did.  They was\nmarried, and they live fower hundred mile away from any voices but\ntheir own and the singing birds.'\n\n'Mrs. Gummidge?' I suggested.\n\nIt was a pleasant key to touch, for Mr. Peggotty suddenly burst\ninto a roar of laughter, and rubbed his hands up and down his legs,\nas he had been accustomed to do when he enjoyed himself in the\nlong-shipwrecked boat.\n\n'Would you believe it!' he said.  'Why, someun even made offer fur\nto marry her! If a ship's cook that was turning settler, Mas'r\nDavy, didn't make offers fur to marry Missis Gummidge, I'm Gormed\n- and I can't say no fairer than that!'\n\nI never saw Agnes laugh so.  This sudden ecstasy on the part of Mr.\nPeggotty was so delightful to her, that she could not leave off\nlaughing; and the more she laughed the more she made me laugh, and\nthe greater Mr. Peggotty's ecstasy became, and the more he rubbed\nhis legs.\n\n'And what did Mrs. Gummidge say?' I asked, when I was grave enough.\n\n'If you'll believe me,' returned Mr. Peggotty, 'Missis Gummidge,\n'stead of saying \"thank you, I'm much obleeged to you, I ain't\na-going fur to change my condition at my time of life,\" up'd with\na bucket as was standing by, and laid it over that theer ship's\ncook's head 'till he sung out fur help, and I went in and reskied\nof him.'\n\nMr. Peggotty burst into a great roar of laughter, and Agnes and I\nboth kept him company.\n\n'But I must say this, for the good creetur,' he resumed, wiping his\nface, when we were quite exhausted; 'she has been all she said\nshe'd be to us, and more.  She's the willingest, the trewest, the\nhonestest-helping woman, Mas'r Davy, as ever draw'd the breath of\nlife.  I have never know'd her to be lone and lorn, for a single\nminute, not even when the colony was all afore us, and we was new\nto it.  And thinking of the old 'un is a thing she never done, I do\nassure you, since she left England!'\n\n'Now, last, not least, Mr. Micawber,' said I.  'He has paid off\nevery obligation he incurred here - even to Traddles's bill, you\nremember my dear Agnes - and therefore we may take it for granted\nthat he is doing well.  But what is the latest news of him?'\n\nMr. Peggotty, with a smile, put his hand in his breast-pocket, and\nproduced a flat-folded, paper parcel, from which he took out, with\nmuch care, a little odd-looking newspaper.\n\n'You are to understan', Mas'r Davy,' said he, 'as we have left the\nBush now, being so well to do; and have gone right away round to\nPort Middlebay Harbour, wheer theer's what we call a town.'\n\n'Mr. Micawber was in the Bush near you?' said I.\n\n'Bless you, yes,' said Mr. Peggotty, 'and turned to with a will. \nI never wish to meet a better gen'l'man for turning to with a will. \nI've seen that theer bald head of his a perspiring in the sun,\nMas'r Davy, till I a'most thowt it would have melted away.  And now\nhe's a Magistrate.'\n\n'A Magistrate, eh?' said I.\n\nMr. Peggotty pointed to a certain paragraph in the newspaper, where\nI read aloud as follows, from the Port Middlebay Times:\n\n\n'The public dinner to our distinguished fellow-colonist and\ntownsman, WILKINS MICAWBER, ESQUIRE, Port Middlebay District\nMagistrate, came off yesterday in the large room of the Hotel,\nwhich was crowded to suffocation.  It is estimated that not fewer\nthan forty-seven persons must have been accommodated with dinner at\none time, exclusive of the company in the passage and on the\nstairs.  The beauty, fashion, and exclusiveness of Port Middlebay,\nflocked to do honour to one so deservedly esteemed, so highly\ntalented, and so widely popular.  Doctor Mell (of Colonial\nSalem-House Grammar School, Port Middlebay) presided, and on his\nright sat the distinguished guest.  After the removal of the cloth,\nand the singing of Non Nobis (beautifully executed, and in which we\nwere at no loss to distinguish the bell-like notes of that gifted\namateur, WILKINS MICAWBER, ESQUIRE, JUNIOR), the usual loyal and\npatriotic toasts were severally given and rapturously received. \nDoctor Mell, in a speech replete with feeling, then proposed \"Our\ndistinguished Guest, the ornament of our town.  May he never leave\nus but to better himself, and may his success among us be such as\nto render his bettering himself impossible!\" The cheering with\nwhich the toast was received defies description.  Again and again\nit rose and fell, like the waves of ocean.  At length all was\nhushed, and WILKINS MICAWBER, ESQUIRE, presented himself to return\nthanks.  Far be it from us, in the present comparatively imperfect\nstate of the resources of our establishment, to endeavour to follow\nour distinguished townsman through the smoothly-flowing periods of\nhis polished and highly-ornate address! Suffice it to observe, that\nit was a masterpiece of eloquence; and that those passages in which\nhe more particularly traced his own successful career to its\nsource, and warned the younger portion of his auditory from the\nshoals of ever incurring pecuniary liabilities which they were\nunable to liquidate, brought a tear into the manliest eye present. \nThe remaining toasts were DOCTOR MELL; Mrs. MICAWBER (who\ngracefully bowed her acknowledgements from the side-door, where a\ngalaxy of beauty was elevated on chairs, at once to witness and\nadorn the gratifying scene), Mrs. RIDGER BEGS (late Miss Micawber);\nMrs. MELL; WILKINS MICAWBER, ESQUIRE, JUNIOR (who convulsed the\nassembly by humorously remarking that he found himself unable to\nreturn thanks in a speech, but would do so, with their permission,\nin a song); Mrs. MICAWBER'S FAMILY (well known, it is needless to\nremark, in the mother-country), &c.  &c.  &c.  At the conclusion of\nthe proceedings the tables were cleared as if by art-magic for\ndancing.  Among the votaries of TERPSICHORE, who disported\nthemselves until Sol gave warning for departure, Wilkins Micawber,\nEsquire, Junior, and the lovely and accomplished Miss Helena,\nfourth daughter of Doctor Mell, were particularly remarkable.'\n\n\nI was looking back to the name of Doctor Mell, pleased to have\ndiscovered, in these happier circumstances, Mr. Mell, formerly poor\npinched usher to my Middlesex magistrate, when Mr. Peggotty\npointing to another part of the paper, my eyes rested on my own\nname, and I read thus:\n\n\n'          TO DAVID COPPERFIELD, ESQUIRE,\n\n               'THE EMINENT AUTHOR.\n\n'My Dear Sir,\n\n'Years have elapsed, since I had an opportunity of ocularly\nperusing the lineaments, now familiar to the imaginations of a\nconsiderable portion of the civilized world.\n\n'But, my dear Sir, though estranged (by the force of circumstances\nover which I have had no control) from the personal society of the\nfriend and companion of my youth, I have not been unmindful of his\nsoaring flight.  Nor have I been debarred,\n\n     Though seas between us braid ha' roared,\n\n(BURNS) from participating in the intellectual feasts he has spread\nbefore us.\n\n'I cannot, therefore, allow of the departure from this place of an\nindividual whom we mutually respect and esteem, without, my dear\nSir, taking this public opportunity of thanking you, on my own\nbehalf, and, I may undertake to add, on that of the whole of the\nInhabitants of Port Middlebay, for the gratification of which you\nare the ministering agent.\n\n'Go on, my dear Sir! You are not unknown here, you are not\nunappreciated.  Though \"remote\", we are neither \"unfriended\",\n\"melancholy\", nor (I may add) \"slow\".  Go on, my dear Sir, in your\nEagle course! The inhabitants of Port Middlebay may at least aspire\nto watch it, with delight, with entertainment, with instruction!\n\n'Among the eyes elevated towards you from this portion of the\nglobe, will ever be found, while it has light and life,\n\n               'The\n                    'Eye\n                         'Appertaining to\n\n                              'WILKINS MICAWBER,\n                                   'Magistrate.'\n\n\nI found, on glancing at the remaining contents of the newspaper,\nthat Mr. Micawber was a diligent and esteemed correspondent of that\njournal.  There was another letter from him in the same paper,\ntouching a bridge; there was an advertisement of a collection of\nsimilar letters by him, to be shortly republished, in a neat\nvolume, 'with considerable additions'; and, unless I am very much\nmistaken, the Leading Article was his also.\n\nWe talked much of Mr. Micawber, on many other evenings while Mr.\nPeggotty remained with us.  He lived with us during the whole term\nof his stay, - which, I think, was something less than a month, -\nand his sister and my aunt came to London to see him.  Agnes and I\nparted from him aboard-ship, when he sailed; and we shall never\npart from him more, on earth.\n\nBut before he left, he went with me to Yarmouth, to see a little\ntablet I had put up in the churchyard to the memory of Ham.  While\nI was copying the plain inscription for him at his request, I saw\nhim stoop, and gather a tuft of grass from the grave and a little\nearth.\n\n'For Em'ly,' he said, as he put it in his breast.  'I promised,\nMas'r Davy.'\n\n\n\nCHAPTER 64\nA LAST RETROSPECT\n\n\nAnd now my written story ends.  I look back, once more - for the\nlast time - before I close these leaves.\n\nI see myself, with Agnes at my side, journeying along the road of\nlife.  I see our children and our friends around us; and I hear the\nroar of many voices, not indifferent to me as I travel on.\n\nWhat faces are the most distinct to me in the fleeting crowd?  Lo,\nthese; all turning to me as I ask my thoughts the question!\n\nHere is my aunt, in stronger spectacles, an old woman of four-score\nyears and more, but upright yet, and a steady walker of six miles\nat a stretch in winter weather.\n\nAlways with her, here comes Peggotty, my good old nurse, likewise\nin spectacles, accustomed to do needle-work at night very close to\nthe lamp, but never sitting down to it without a bit of wax candle,\na yard-measure in a little house, and a work-box with a picture of\nSt. Paul's upon the lid.\n\nThe cheeks and arms of Peggotty, so hard and red in my childish\ndays, when I wondered why the birds didn't peck her in preference\nto apples, are shrivelled now; and her eyes, that used to darken\ntheir whole neighbourhood in her face, are fainter (though they\nglitter still); but her rough forefinger, which I once associated\nwith a pocket nutmeg-grater, is just the same, and when I see my\nleast child catching at it as it totters from my aunt to her, I\nthink of our little parlour at home, when I could scarcely walk. \nMy aunt's old disappointment is set right, now.  She is godmother\nto a real living Betsey Trotwood; and Dora (the next in order) says\nshe spoils her.\n\nThere is something bulky in Peggotty's pocket.  It is nothing\nsmaller than the Crocodile Book, which is in rather a dilapidated\ncondition by this time, with divers of the leaves torn and stitched\nacross, but which Peggotty exhibits to the children as a precious\nrelic.  I find it very curious to see my own infant face, looking\nup at me from the Crocodile stories; and to be reminded by it of my\nold acquaintance Brooks of Sheffield.\n\nAmong my boys, this summer holiday time, I see an old man making\ngiant kites, and gazing at them in the air, with a delight for\nwhich there are no words.  He greets me rapturously, and whispers,\nwith many nods and winks, 'Trotwood, you will be glad to hear that\nI shall finish the Memorial when I have nothing else to do, and\nthat your aunt's the most extraordinary woman in the world, sir!'\n\nWho is this bent lady, supporting herself by a stick, and showing\nme a countenance in which there are some traces of old pride and\nbeauty, feebly contending with a querulous, imbecile, fretful\nwandering of the mind?  She is in a garden; and near her stands a\nsharp, dark, withered woman, with a white scar on her lip.  Let me\nhear what they say.\n\n'Rosa, I have forgotten this gentleman's name.'\n\nRosa bends over her, and calls to her, 'Mr. Copperfield.'\n\n'I am glad to see you, sir.  I am sorry to observe you are in\nmourning.  I hope Time will be good to you.'\n\nHer impatient attendant scolds her, tells her I am not in mourning,\nbids her look again, tries to rouse her.\n\n'You have seen my son, sir,' says the elder lady.  'Are you\nreconciled?'\n\nLooking fixedly at me, she puts her hand to her forehead, and\nmoans.  Suddenly, she cries, in a terrible voice, 'Rosa, come to\nme.  He is dead!' Rosa kneeling at her feet, by turns caresses her,\nand quarrels with her; now fiercely telling her, 'I loved him\nbetter than you ever did!'- now soothing her to sleep on her\nbreast, like a sick child.  Thus I leave them; thus I always find\nthem; thus they wear their time away, from year to year.\n\nWhat ship comes sailing home from India, and what English lady is\nthis, married to a growling old Scotch Croesus with great flaps of\nears?  Can this be Julia Mills?\n\nIndeed it is Julia Mills, peevish and fine, with a black man to\ncarry cards and letters to her on a golden salver, and a\ncopper-coloured woman in linen, with a bright handkerchief round\nher head, to serve her Tiffin in her dressing-room.  But Julia\nkeeps no diary in these days; never sings Affection's Dirge;\neternally quarrels with the old Scotch Croesus, who is a sort of\nyellow bear with a tanned hide.  Julia is steeped in money to the\nthroat, and talks and thinks of nothing else.  I liked her better\nin the Desert of Sahara.\n\nOr perhaps this IS the Desert of Sahara! For, though Julia has a\nstately house, and mighty company, and sumptuous dinners every day,\nI see no green growth near her; nothing that can ever come to fruit\nor flower.  What Julia calls 'society', I see; among it Mr. Jack\nMaldon, from his Patent Place, sneering at the hand that gave it\nhim, and speaking to me of the Doctor as 'so charmingly antique'. \nBut when society is the name for such hollow gentlemen and ladies,\nJulia, and when its breeding is professed indifference to\neverything that can advance or can retard mankind, I think we must\nhave lost ourselves in that same Desert of Sahara, and had better\nfind the way out.\n\nAnd lo, the Doctor, always our good friend, labouring at his\nDictionary (somewhere about the letter D), and happy in his home\nand wife.  Also the Old Soldier, on a considerably reduced footing,\nand by no means so influential as in days of yore!\n\nWorking at his chambers in the Temple, with a busy aspect, and his\nhair (where he is not bald) made more rebellious than ever by the\nconstant friction of his lawyer's-wig, I come, in a later time,\nupon my dear old Traddles.  His table is covered with thick piles\nof papers; and I say, as I look around me:\n\n'If Sophy were your clerk, now, Traddles, she would have enough to\ndo!'\n\n'You may say that, my dear Copperfield! But those were capital\ndays, too, in Holborn Court! Were they not?'\n\n'When she told you you would be a judge?  But it was not the town\ntalk then!'\n\n'At all events,' says Traddles, 'if I ever am one -'\n'Why, you know you will be.'\n\n'Well, my dear Copperfield, WHEN I am one, I shall tell the story,\nas I said I would.'\n\nWe walk away, arm in arm.  I am going to have a family dinner with\nTraddles.  It is Sophy's birthday; and, on our road, Traddles\ndiscourses to me of the good fortune he has enjoyed.\n\n'I really have been able, my dear Copperfield, to do all that I had\nmost at heart.  There's the Reverend Horace promoted to that living\nat four hundred and fifty pounds a year; there are our two boys\nreceiving the very best education, and distinguishing themselves as\nsteady scholars and good fellows; there are three of the girls\nmarried very comfortably; there are three more living with us;\nthere are three more keeping house for the Reverend Horace since\nMrs. Crewler's decease; and all of them happy.'\n\n'Except -' I suggest.\n\n'Except the Beauty,' says Traddles.  'Yes.  It was very unfortunate\nthat she should marry such a vagabond.  But there was a certain\ndash and glare about him that caught her.  However, now we have got\nher safe at our house, and got rid of him, we must cheer her up\nagain.'\n\nTraddles's house is one of the very houses - or it easily may have\nbeen - which he and Sophy used to parcel out, in their evening\nwalks.  It is a large house; but Traddles keeps his papers in his\ndressing-room and his boots with his papers; and he and Sophy\nsqueeze themselves into upper rooms, reserving the best bedrooms\nfor the Beauty and the girls.  There is no room to spare in the\nhouse; for more of 'the girls' are here, and always are here, by\nsome accident or other, than I know how to count.  Here, when we go\nin, is a crowd of them, running down to the door, and handing\nTraddles about to be kissed, until he is out of breath.  Here,\nestablished in perpetuity, is the poor Beauty, a widow with a\nlittle girl; here, at dinner on Sophy's birthday, are the three\nmarried girls with their three husbands, and one of the husband's\nbrothers, and another husband's cousin, and another husband's\nsister, who appears to me to be engaged to the cousin.  Traddles,\nexactly the same simple, unaffected fellow as he ever was, sits at\nthe foot of the large table like a Patriarch; and Sophy beams upon\nhim, from the head, across a cheerful space that is certainly not\nglittering with Britannia metal.\n\nAnd now, as I close my task, subduing my desire to linger yet,\nthese faces fade away.  But one face, shining on me like a Heavenly\nlight by which I see all other objects, is above them and beyond\nthem all.  And that remains.\n\nI turn my head, and see it, in its beautiful serenity, beside me.\n\nMy lamp burns low, and I have written far into the night; but the\ndear presence, without which I were nothing, bears me company.\n\nO Agnes, O my soul, so may thy face be by me when I close my life\nindeed; so may I, when realities are melting from me, like the\nshadows which I now dismiss, still find thee near me, pointing\nupward!\n\n\n\n\n\nEnd of the Project Gutenberg Etext of David Copperfield, by Charles Dickens\n\n***The Project Gutenberg Etext of Dombey and Son, by Dickens***\n#19 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nDombey and Son\n\nby Charles Dickens\n\nFebruary, 1997  [Etext #821]\n\n\n***The Project Gutenberg Etext of Dombey and Son, by Dickens***\n*****This file should be named domby10.txt or domby10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, domby11.txt.\nVERSIONS based on separate sources get new LETTER, domby10a.txt.\n\n\nDombey and Son was contributed by:\nNeil McLachlan, nmclachlan@delphi.com\nand Ted Davis, 101515.3105@compuserve.com\non behalf of the Talking Newspaper of the UK (TNAUK).\n\nA Kurzweil flatbed scanner and Xerox Discover software were used to\nproduce the raw text files, which were edited using the TSEJR ASCII\ntext editor, with a user lexicon specially developed for this purpose.\nWords split at the end of lines have been re-united, maintaining\nhyphenation where appropriate; except for the Prefaces, the text has\nbeen reformatted to 70 columns.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.  We will try add 800 more,\nduring 1997, but it will take all the effort we can manage to do\nthe doubling of our library again this year, what with the other\nmassive requirements it is going to take to get incorporated and\nestablish something that will have some permanence.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg\"\n\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext97\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg (the \"Project\").\nAmong other things, this means that no one owns a United States\ncopyright on or for this work, so the Project (and you!) can copy\nand distribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association within the 60\n     days following each date you prepare (or were legally\n     required to prepare) your annual (or equivalent periodic)\n     tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nDombey and Son was contributed by:\nNeil McLachlan, nmclachlan@delphi.com\nand Ted Davis, 101515.3105@compuserve.com\non behalf of the Talking Newspaper of the UK (TNAUK).\n\nProduction:\nA Kurzweil flatbed scanner and Xerox Discover software was used to\nproduce the raw text files, which were edited using the TSEJR ASCII\ntext editor, with a user lexicon specially developed for this purpose.\nWords split at the end of lines have been re-united, maintaining\nhyphenation where appropriate; except for the Prefaces, the text has\nbeen reformatted to 70 columns.\n\n\n\n\nStructure:\nContents\nChapters 1 to 62\nPreface of 1848\nPreface of 1867\n\n\n\n\n\n\n\nDombey and Son\n\nby Charles Dickens\n\n\n\n\n\nCONTENTS\n\n 1. Dombey and Son\n 2. In which Timely Provision is made for an Emergency that\n    will sometimes arise in the best-regulated Families\n 3. In which Mr Dombey, as a Man and a Father, is seen at the\n    Head of the Home-Department\n 4. In which some more First Appearances are made on the\n    Stage of these Adventures\n 5. Paul's Progress and Christening\n 6. Paul's Second Deprivation\n 7. A Bird's-eye Glimpse of Miss Tox's Dwelling-place; also\n    of the State of Miss Tox's Affections\n 8. Paul's further Progress, Growth, and Character\n 9. In which the Wooden Midshipman gets into Trouble\n10. Containing the Sequel of the Midshipman's Disaster\n11. Paul's Introduction to a New Scene\n12. Paul's Education\n13. Shipping Intelligence and Office Business\n14. Paul grows more and more Old-fashioned, and goes Home\n    for the holidays\n15. Amazing Artfulness of Captain Cuttle, and a new Pursuit\n    for Walter Gay\n16. What the Waves were always saying\n17. Captain Cuttle does a little Business for the Young people\n18. Father and Daughter\n19. Walter goes away\n20. Mr Dombey goes upon a journey\n21. New Faces\n22. A Trifle of Management by Mr Carker the Manager\n23. Florence solitary, and the Midshipman mysterious\n24. The Study of a Loving Heart\n25. Strange News of Uncle Sol\n26. Shadows of the Past and Future\n27. Deeper shadows\n28. Alterations\n29. The Opening of the Eyes of Mrs Chick\n30. The Interval before the Marriage\n31. The Wedding\n32. The Wooden Midshipman goes to Pieces\n33. Contrasts\n34. Another Mother and Daughter\n35. The Happy Pair\n36. Housewarming\n37. More Warnings than One\n38. Miss Tox improves an Old Acquaintance\n39. Further Adventures of Captain Edward Cuttle, Mariner\n40. Domestic Relations\n41. New Voices in the Waves\n42. Confidential and Accidental\n43. The Watches of the Night\n44. A Separation\n45. The Trusty Agent\n46. Recognizant and Reflective\n47. The Thunderbolt\n48. The Flight of Florence\n49. The Midshipman makes a Discovery\n50. Mr Toots's Complaint\n51. Mr Dombey and the World\n52. Secret Intelligence\n53. More Intelligence\n54. The Fugitives\n55. Rob the Grinder loses his Place\n56. Several People delighted, and the Game Chicken disgusted\n57. Another Wedding\n58. After a Lapse\n59. Retribution\n60. Chiefly Matrimonial\n61. Relenting\n62. Final\n\n\n\n\nCHAPTER 1.\n\nDombey and Son\n\n\n\nDombey sat in the corner of the darkened room in the great\narm-chair by the bedside, and Son lay tucked up warm in a little\nbasket bedstead, carefully disposed on a low settee immediately in\nfront of the fire and close to it, as if his constitution were\nanalogous to that of a muffin, and it was essential to toast him brown\nwhile he was very new.\n\nDombey was about eight-and-forty years of age. Son about\neight-and-forty minutes. Dombey was rather bald, rather red, and\nthough a handsome well-made man, too stern and pompous in appearance,\nto be prepossessing. Son was very bald, and very red, and though (of\ncourse) an undeniably fine infant, somewhat crushed and spotty in his\ngeneral effect, as yet. On the brow of Dombey, Time and his brother\nCare had set some marks, as on a tree that was to come down in good\ntime - remorseless twins they are for striding through their human\nforests, notching as they go - while the countenance of Son was\ncrossed with a thousand little creases, which the same deceitful Time\nwould take delight in smoothing out and wearing away with the flat\npart of his scythe, as a preparation of the surface for his deeper\noperations.\n\nDombey, exulting in the long-looked-for event, jingled and jingled\nthe heavy gold watch-chain that depended from below his trim blue\ncoat, whereof the buttons sparkled phosphorescently in the feeble rays\nof the distant fire. Son, with his little fists curled up and\nclenched, seemed, in his feeble way, to be squaring at existence for\nhaving come upon him so unexpectedly.\n\n'The House will once again, Mrs Dombey,' said Mr Dombey, 'be not\nonly in name but in fact Dombey and Son;' and he added, in a tone of\nluxurious satisfaction, with his eyes half-closed as if he were\nreading the name in a device of flowers, and inhaling their fragrance\nat the same time; 'Dom-bey and Son!'\n\nThe words had such a softening influence, that he appended a term\nof endearment to Mrs Dombey's name (though not without some\nhesitation, as being a man but little used to that form of address):\nand said, 'Mrs Dombey, my - my dear.'\n\nA transient flush of faint surprise overspread the sick lady's face\nas she raised her eyes towards him.\n\n'He will be christened Paul, my - Mrs Dombey - of course.'\n\nShe feebly echoed, 'Of course,' or rather expressed it by the\nmotion of her lips, and closed her eyes again.\n\n'His father's name, Mrs Dombey, and his grandfather's! I wish his\ngrandfather were alive this day! There is some inconvenience in the\nnecessity of writing Junior,' said Mr Dombey, making a fictitious\nautograph on his knee; 'but it is merely of a private and personal\ncomplexion. It doesn't enter into the correspondence of the House. Its\nsignature remains the same.' And again he said 'Dombey and Son, in\nexactly the same tone as before.\n\nThose three words conveyed the one idea of Mr Dombey's life. The\nearth was made for Dombey and Son to trade in, and the sun and moon\nwere made to give them light. Rivers and seas were formed to float\ntheir ships; rainbows gave them promise of fair weather; winds blew\nfor or against their enterprises; stars and planets circled in their\norbits, to preserve inviolate a system of which they were the centre.\nCommon abbreviations took new meanings in his eyes, and had sole\nreference to them. A. D. had no concern with Anno Domini, but stood\nfor anno Dombey - and Son.\n\nHe had risen, as his father had before him, in the course of life\nand death, from Son to Dombey, and for nearly twenty years had been\nthe sole representative of the Firm. Of those years he had been\nmarried, ten - married, as some said, to a lady with no heart to give\nhim; whose happiness was in the past, and who was content to bind her\nbroken spirit to the dutiful and meek endurance of the present. Such\nidle talk was little likely to reach the ears of Mr Dombey, whom it\nnearly concerned; and probably no one in the world would have received\nit with such utter incredulity as he, if it had reached him. Dombey\nand Son had often dealt in hides, but never in hearts. They left that\nfancy ware to boys and girls, and boarding-schools and books. Mr\nDombey would have reasoned: That a matrimonial alliance with himself\nmust, in the nature of things, be gratifying and honourable to any\nwoman of common sense. That the hope of giving birth to a new partner\nin such a House, could not fail to awaken a glorious and stirring\nambition in the breast of the least ambitious of her sex. That Mrs\nDombey had entered on that social contract of matrimony: almost\nnecessarily part of a genteel and wealthy station, even without\nreference to the perpetuation of family Firms: with her eyes fully\nopen to these advantages. That Mrs Dombey had had daily practical\nknowledge of his position in society. That Mrs Dombey had always sat\nat the head of his table, and done the honours of his house in a\nremarkably lady-like and becoming manner. That Mrs Dombey must have\nbeen happy. That she couldn't help it.\n\nOr, at all events, with one drawback. Yes. That he would have\nallowed. With only one; but that one certainly involving much. With\nthe drawback of hope deferred. That hope deferred, which, (as the\nScripture very correctly tells us, Mr Dombey would have added in a\npatronising way; for his highest distinct idea even of Scripture, if\nexamined, would have been found to be; that as forming part of a\ngeneral whole, of which Dombey and Son formed another part, it was\ntherefore to be commended and upheld) maketh the heart sick. They had\nbeen married ten years, and until this present day on which Mr Dombey\nsat jingling and jingling his heavy gold watch-chain in the great\narm-chair by the side of the bed, had had no issue.\n\n- To speak of; none worth mentioning. There had been a girl some\nsix years before, and the child, who had stolen into the chamber\nunobserved, was now crouching timidly, in a corner whence she could\nsee her mother's face. But what was a girl to Dombey and Son! In the\ncapital of the House's name and dignity, such a child was merely a\npiece of base coin that couldn't be invested - a bad Boy - nothing\nmore.\n\nMr Dombey's cup of satisfaction was so full at this moment,\nhowever, that he felt he could afford a drop or two of its contents,\neven to sprinkle on the dust in the by-path of his little daughter.\n\nSo he said, 'Florence, you may go and look at your pretty brother,\nif you lIke, I daresay. Don't touch him!'\n\nThe child glanced keenly at the blue coat and stiff white cravat,\nwhich, with a pair of creaking boots and a very loud ticking watch,\nembodied her idea of a father; but her eyes returned to her mother's\nface immediately, and she neither moved nor answered.\n\n'Her insensibility is as proof against a brother as against every\nthing else,' said Mr Dombey to himself He seemed so confirmed in a\nprevious opinion by the discovery, as to be quite glad of it'\n\nNext moment, the lady had opened her eyes and seen the child; and\nthe child had run towards her; and, standing on tiptoe, the better to\nhide her face in her embrace, had clung about her with a desperate\naffection very much at variance with her years.\n\n'Oh Lord bless me!' said Mr Dombey, rising testily. 'A very\nilladvised and feverish proceeding this, I am sure. Please to ring\nthere for Miss Florence's nurse. Really the person should be more\ncare-'\n\n'Wait! I - had better ask Doctor Peps if he'll have the goodness to\nstep upstairs again perhaps. I'll go down. I'll go down. I needn't beg\nyou,' he added, pausing for a moment at the settee before the fire,\n'to take particular care of this young gentleman, Mrs - '\n\n'Blockitt, Sir?' suggested the nurse, a simpering piece of faded\ngentility, who did not presume to state her name as a fact, but merely\noffered it as a mild suggestion.\n\n'Of this young gentleman, Mrs Blockitt.'\n\n'No, Sir, indeed. I remember when Miss Florence was born - '\n\n'Ay, ay, ay,' said Mr Dombey, bending over the basket bedstead, and\nslightly bending his brows at the same time. 'Miss Florence was all\nvery well, but this is another matter. This young gentleman has to\naccomplish a destiny. A destiny, little fellow!' As he thus\napostrophised the infant he raised one of his hands to his lips, and\nkissed it; then, seeming to fear that the action involved some\ncompromise of his dignity, went, awkwardly enough, away.\n\nDoctor Parker Peps, one of the Court Physicians, and a man of\nimmense reputation for assisting at the increase of great families,\nwas walking up and down the drawing-room with his hands behind him, to\nthe unspeakable admiration of the family Surgeon, who had regularly\npuffed the case for the last six weeks, among all his patients,\nfriends, and acquaintances, as one to which he was in hourly\nexpectation day and night of being summoned, in conjunction with\nDoctor Parker Pep.\n\n'Well, Sir,' said Doctor Parker Peps in a round, deep, sonorous\nvoice, muffled for the occasion, like the knocker; 'do you find that\nyour dear lady is at all roused by your visit?'\n\n'Stimulated as it were?' said the family practitioner faintly:\nbowing at the same time to the Doctor, as much as to say, 'Excuse my\nputting in a word, but this is a valuable connexion.'\n\nMr Dombey was quite discomfited by the question. He had thought so\nlittle of the patient, that he was not in a condition to answer it. He\nsaid that it would be a satisfaction to him, if Doctor Parker Peps\nwould walk upstairs again.\n\n'Good! We must not disguise from you, Sir,' said Doctor Parker\nPeps, 'that there is a want of power in Her Grace the Duchess - I beg\nyour pardon; I confound names; I should say, in your amiable lady.\nThat there is a certain degree of languor, and a general absence of\nelasticity, which we would rather - not -\n\n'See,' interposed the family practitioner with another inclination\nof the head.\n\n'Quite so,' said Doctor Parker Peps,' which we would rather not\nsee. It would appear that the system of Lady Cankaby - excuse me: I\nshould say of Mrs Dombey: I confuse the names of cases - '\n\n'So very numerous,' murmured the family practitioner - 'can't be\nexpected I'm sure - quite wonderful if otherwise - Doctor Parker\nPeps's West-End practice - '\n\n'Thank you,' said the Doctor, 'quite so. It would appear, I was\nobserving, that the system of our patient has sustained a shock, from\nwhich it can only hope to rally by a great and strong - '\n\n'And vigorous,' murmured the family practitioner.\n\n'Quite so,' assented the Doctor - 'and vigorous effort. Mr Pilkins\nhere, who from his position of medical adviser in this family - no one\nbetter qualified to fill that position, I am sure.'\n\n'Oh!' murmured the family practitioner. '\"Praise from Sir Hubert\nStanley!\"'\n\n'You are good enough,' returned Doctor Parker Peps, 'to say so. Mr\nPilkins who, from his position, is best acquainted with the patient's\nconstitution in its normal state (an acquaintance very valuable to us\nin forming our opinions in these occasions), is of opinion, with me,\nthat Nature must be called upon to make a vigorous effort in this\ninstance; and that if our interesting friend the Countess of Dombey -\nI beg your pardon; Mrs Dombey - should not be - '\n\n'Able,' said the family practitioner.\n\n'To make,' said Doctor Parker Peps.\n\n'That effort,' said the family practitioner.\n\n'Successfully,' said they both together.\n\n'Then,' added Doctor Parker Peps, alone and very gravely, a crisis\nmight arise, which we should both sincerely deplore.'\n\nWith that, they stood for a few seconds looking at the ground.\nThen, on the motion - made in dumb show - of Doctor Parker Peps, they\nwent upstairs; the family practitioner opening the room door for that\ndistinguished professional, and following him out, with most\nobsequious politeness.\n\nTo record of Mr Dombey that he was not in his way affected by this\nintelligence, would be to do him an injustice. He was not a man of\nwhom it could properly be said that he was ever startled, or shocked;\nbut he certainly had a sense within him, that if his wife should\nsicken and decay, he would be very sorry, and that he would find a\nsomething gone from among his plate and furniture, and other household\npossessions, which was well worth the having, and could not be lost\nwithout sincere regret. Though it would be a cool,. business-like,\ngentlemanly, self-possessed regret, no doubt.\n\nHis meditations on the subject were soon interrupted, first by the\nrustling of garments on the staircase, and then by the sudden whisking\ninto the room of a lady rather past the middle age than otherwise but\ndressed in a very juvenile manner, particularly as to the tightness of\nher bodice, who, running up to him with a kind of screw in her face\nand carriage, expressive of suppressed emotion, flung her arms around\nhis neck, and said, in a choking voice,\n\n'My dear Paul! He's quite a Dombey!'\n\n'Well, well!' returned her brother - for Mr Dombey was her brother\n- 'I think he is like the family. Don't agitate yourself, Louisa.'\n\n'It's very foolish of me,' said Louisa, sitting down, and taking\nout her pocket~handkerchief, 'but he's - he's such a perfect Dombey!'\n\nMr Dombey coughed.\n\n'It's so extraordinary,' said Louisa; smiling through her tears,\nwhich indeed were not overpowering, 'as to be perfectly ridiculous. So\ncompletely our family. I never saw anything like it in my life!'\n\n'But what is this about Fanny, herself?' said Mr Dombey. 'How is\nFanny?'\n\n'My dear Paul,' returned Louisa, 'it's nothing whatever. Take my\nword, it's nothing whatever. There is exhaustion, certainly, but\nnothing like what I underwent myself, either with George or Frederick.\nAn effort is necessary. That's all. If dear Fanny were a Dombey! - But\nI daresay she'll make it; I have no doubt she'll make it. Knowing it\nto be required of her, as a duty, of course she'll make it. My dear\nPaul, it's very weak and silly of me, I know, to be so trembly and\nshaky from head to foot; but I am so very queer that I must ask you\nfor a glass of wine and a morsel of that cake.'\n\nMr Dombey promptly supplied her with these refreshments from a tray\non the table.\n\n'I shall not drink my love to you, Paul,' said Louisa: 'I shall\ndrink to the little Dombey. Good gracious me! - it's the most\nastonishing thing I ever knew in all my days, he's such a perfect\nDombey.'\n\nQuenching this expression of opinion in a short hysterical laugh\nwhich terminated in tears, Louisa cast up her eyes, and emptied her\nglass.\n\n'I know it's very weak and silly of me,' she repeated, 'to be so\ntrembly and shaky from head to foot, and to allow my feelings so\ncompletely to get the better of me, but I cannot help it. I thought I\nshould have fallen out of the staircase window as I came down from\nseeing dear Fanny, and that tiddy ickle sing.' These last words\noriginated in a sudden vivid reminiscence of the baby.\n\nThey were succeeded by a gentle tap at the door.\n\n'Mrs Chick,' said a very bland female voice outside, 'how are you\nnow, my dear friend?'\n\n'My dear Paul,' said Louisa in a low voice, as she rose from her\nseat, 'it's Miss Tox. The kindest creature! I never could have got\nhere without her! Miss Tox, my brother Mr Dombey. Paul, my dear, my\nvery particular friend Miss Tox.'\n\nThe lady thus specially presented, was a long lean figure, wearing\nsuch a faded air that she seemed not to have been made in what\nlinen-drapers call 'fast colours' originally, and to have, by little\nand little, washed out. But for this she might have been described as\nthe very pink of general propitiation and politeness. From a long\nhabit of listening admiringly to everything that was said in her\npresence, and looking at the speakers as if she were mentally engaged\nin taking off impressions of their images upon her soul, never to part\nwith the same but with life, her head had quite settled on one side.\nHer hands had contracted a spasmodic habit of raising themselves of\ntheir own accord as in involuntary admiration. Her eyes were liable to\na similar affection. She had the softest voice that ever was heard;\nand her nose, stupendously aquiline, had a little knob in the very\ncentre or key-stone of the bridge, whence it tended downwards towards\nher face, as in an invincible determination never to turn up at\nanything.\n\nMiss Tox's dress, though perfectly genteel and good, had a certain\ncharacter of angularity and scantiness. She was accustomed to wear odd\nweedy little flowers in her bonnets and caps. Strange grasses were\nsometimes perceived in her hair; and it was observed by the curious,\nof all her collars, frills, tuckers, wristbands, and other gossamer\narticles - indeed of everything she wore which had two ends to it\nintended to unite - that the two ends were never on good terms, and\nwouldn't quite meet without a struggle. She had furry articles for\nwinter wear, as tippets, boas, and muffs, which stood up on end in\nrampant manner, and were not at all sleek. She was much given to the\ncarrying about of small bags with snaps to them, that went off like\nlittle pistols when they were shut up; and when full-dressed, she wore\nround her neck the barrenest of lockets, representing a fishy old eye,\nwith no approach to speculation in it. These and other appearances of\na similar nature, had served to propagate the opinion, that Miss Tox\nwas a lady of what is called a limited independence, which she turned\nto the best account. Possibly her mincing gait encouraged the belief,\nand suggested that her clipping a step of ordinary compass into two or\nthree, originated in her habit of making the most of everything.\n\n'I am sure,' said Miss Tox, with a prodigious curtsey, 'that to\nhave the honour of being presented to Mr Dombey is a distinction which\nI have long sought, but very little expected at the present moment. My\ndear Mrs Chick - may I say Louisa!'\n\nMrs Chick took Miss Tox's hand in hers, rested the foot of her\nwine-glass upon it, repressed a tear, and said in a low voice, 'God\nbless you!'\n\n'My dear Louisa then,' said Miss Tox, 'my sweet friend, how are you\nnow?'\n\n'Better,' Mrs Chick returned. 'Take some wine. You have been almost\nas anxious as I have been, and must want it, I am sure.'\n\nMr Dombey of course officiated, and also refilled his sister's\nglass, which she (looking another way, and unconscious of his\nintention) held straight and steady the while, and then regarded with\ngreat astonishment, saying, 'My dear Paul, what have you been doing!'\n\n'Miss Tox, Paul,' pursued Mrs Chick, still retaining her hand,\n'knowing how much I have been interested in the anticipation of the\nevent of to-day, and how trembly and shaky I have been from head to\nfoot in expectation of it, has been working at a little gift for\nFanny, which I promised to present. Miss Tox is ingenuity itself.'\n\n'My dear Louisa,' said Miss Tox. 'Don't say so.\n\n'It is only a pincushion for the toilette table, Paul,' resumed his\nsister; 'one of those trifles which are insignificant to your sex in\ngeneral, as it's very natural they should be - we have no business to\nexpect they should be otherwise - but to which we attach some\ninterest.\n\n'Miss Tox is very good,' said Mr Dombey.\n\n'And I do say, and will say, and must say,' pursued his sister,\npressing the foot of the wine-glass on Miss Tox's hand, at each of the\nthree clauses, 'that Miss Tox has very prettily adapted the sentiment\nto the occasion. I call \"Welcome little Dombey\" Poetry, myself!'\n\n'Is that the device?' inquired her brother.\n\n'That is the device,' returned Louisa.\n\n'But do me the justice to remember, my dear Louisa,' said Miss\nToxin a tone of low and earnest entreaty, 'that nothing but the - I\nhave some difficulty in expressing myself - the dubiousness of the\nresult would have induced me to take so great a liberty: \"Welcome,\nMaster Dombey,\" would have been much more congenial to my feelings, as\nI am sure you know. But the uncertainty attendant on angelic\nstrangers, will, I hope, excuse what must otherwise appear an\nunwarrantable familiarity.' Miss Tox made a graceful bend as she\nspoke, in favour of Mr Dombey, which that gentleman graciously\nacknowledged. Even the sort of recognition of Dombey and Son, conveyed\nin the foregoing conversation, was so palatable to him, that his\nsister, Mrs Chick - though he affected to consider her a weak\ngood-natured person - had perhaps more influence over him than anybody\nelse.\n\n'My dear Paul,' that lady broke out afresh, after silently\ncontemplating his features for a few moments, 'I don't know whether to\nlaugh or cry when I look at you, I declare, you do so remind me of\nthat dear baby upstairs.'\n\n'Well!' said Mrs Chick, with a sweet smile, 'after this, I forgive\nFanny everything!'\n\nIt was a declaration in a Christian spirit, and Mrs Chick felt that\nit did her good. Not that she had anything particular to forgive in\nher sister-in-law, nor indeed anything at all, except her having\nmarried her brother - in itself a species of audacity - and her\nhaving, in the course of events, given birth to a girl instead of a\nboy: which, as Mrs Chick had frequently observed, was not quite what\nshe had expected of her, and was not a pleasant return for all the\nattention and distinction she had met with.\n\nMr Dombey being hastily summoned out of the room at this moment,\nthe two ladies were left alone together. Miss Tox immediately became\nspasmodic.\n\n'I knew you would admire my brother. I told you so beforehand, my\ndear,' said Louisa. Miss Tox's hands and eyes expressed how much. 'And\nas to his property, my dear!'\n\n'Ah!' said Miss Tox, with deep feeling. 'Im-mense!'\n\n'But his deportment, my dear Louisa!' said Miss Tox. 'His presence!\nHis dignity! No portrait that I have ever seen of anyone has been half\nso replete with those qualities. Something so stately, you know: so\nuncompromising: so very wide across the chest: so upright! A pecuniary\nDuke of York, my love, and nothing short of it!' said Miss Tox.\n'That's what I should designate him.'\n\n'Why, my dear Paul!' exclaimed his sister, as he returned, 'you\nlook quite pale! There's nothing the matter?'\n\n'I am sorry to say, Louisa, that they tell me that Fanny - '\n\n'Now, my dear Paul,' returned his sister rising, 'don't believe it.\nDo not allow yourself to receive a turn unnecessarily. Remember of\nwhat importance you are to society, and do not allow yourself to be\nworried by what is so very inconsiderately told you by people who\nought to know better. Really I'm surprised at them.'\n\n'I hope I know, Louisa,' said Mr Dombey, stiffly, 'how to bear\nmyself before the world.'\n\n'Nobody better, my dear Paul. Nobody half so well. They would be\nignorant and base indeed who doubted it.'\n\n'Ignorant and base indeed!' echoed Miss Tox softly.\n\n'But,' pursued Louisa, 'if you have any reliance on my experience,\nPaul, you may rest assured that there is nothing wanting but an effort\non Fanny's part. And that effort,' she continued, taking off her\nbonnet, and adjusting her cap and gloves, in a business-like manner,\n'she must be encouraged, and really, if necessary, urged to make. Now,\nmy dear Paul, come upstairs with me.'\n\nMr Dombey, who, besides being generally influenced by his sister\nfor the reason already mentioned, had really faith in her as an\nexperienced and bustling matron, acquiesced; and followed her, at\nonce, to the sick chamber.\n\nThe lady lay upon her bed as he had left her, clasping her little\ndaughter to her breast. The child clung close about her, with the same\nintensity as before, and never raised her head, or moved her soft\ncheek from her mother's face, or looked on those who stood around, or\nspoke, or moved, or shed a tear.\n\n'Restless without the little girl,' the Doctor whispered Mr Dombey.\n'We found it best to have her in again.'\n\n'Can nothing be done?' asked Mr Dombey.\n\nThe Doctor shook his head. 'We can do no more.'\n\nThe windows stood open, and the twilight was gathering without.\n\nThe scent of the restoratives that had been tried was pungent in\nthe room, but had no fragrance in the dull and languid air the lady\nbreathed.\n\nThere was such a solemn stillness round the bed; and the two\nmedical attendants seemed to look on the impassive form with so much\ncompassion and so little hope, that Mrs Chick was for the moment\ndiverted from her purpose. But presently summoning courage, and what\nshe called presence of mind, she sat down by the bedside, and said in\nthe low precise tone of one who endeavours to awaken a sleeper:\n\n'Fanny! Fanny!'\n\nThere was no sound in answer but the loud ticking of Mr Dombey's\nwatch and Doctor Parker Peps's watch, which seemed in the silence to\nbe running a race.\n\n'Fanny, my dear,' said Mrs Chick, with assumed lightness, 'here's\nMr Dombey come to see you. Won't you speak to him? They want to lay\nyour little boy - the baby, Fanny, you know; you have hardly seen him\nyet, I think - in bed; but they can't till you rouse yourself a\nlittle. Don't you think it's time you roused yourself a little? Eh?'\n\nShe bent her ear to the bed, and listened: at the same time looking\nround at the bystanders, and holding up her finger.\n\n'Eh?' she repeated, 'what was it you said, Fanny? I didn't hear\nyou.'\n\nNo word or sound in answer. Mr Dombey's watch and Dr Parker Peps's\nwatch seemed to be racing faster.\n\n'Now, really, Fanny my dear,' said the sister-in-law, altering her\nposition, and speaking less confidently, and more earnestly, in spite\nof herself, 'I shall have to be quite cross with you, if you don't\nrouse yourself. It's necessary for you to make an effort, and perhaps\na very great and painful effort which you are not disposed to make;\nbut this is a world of effort you know, Fanny, and we must never\nyield, when so much depends upon us. Come! Try! I must really scold\nyou if you don't!'\n\nThe race in the ensuing pause was fierce and furious. The watches\nseemed to jostle, and to trip each other up.\n\n'Fanny!' said Louisa, glancing round, with a gathering alarm. 'Only\nlook at me. Only open your eyes to show me that you hear and\nunderstand me; will you? Good Heaven, gentlemen, what is to be done!'\n\nThe two medical attendants exchanged a look across the bed; and the\nPhysician, stooping down, whispered in the child's ear. Not having\nunderstood the purport of his whisper, the little creature turned her\nperfectly colourless face and deep dark eyes towards him; but without\nloosening her hold in the least\n\nThe whisper was repeated.\n\n'Mama!' said the child.\n\nThe little voice, familiar and dearly loved, awakened some show of\nconsciousness, even at that ebb. For a moment, the closed eye lids\ntrembled, and the nostril quivered, and the faintest shadow of a smile\nwas seen.\n\n'Mama!' cried the child sobbing aloud. 'Oh dear Mama! oh dear\nMama!'\n\nThe Doctor gently brushed the scattered ringlets of the child,\naside from the face and mouth of the mother. Alas how calm they lay\nthere; how little breath there was to stir them!\n\nThus, clinging fast to that slight spar within her arms, the mother\ndrifted out upon the dark and unknown sea that rolls round all the\nworld.\n\n\n\nCHAPTER 2.\n\nIn which Timely Provision is made for an Emergency that\nwill sometimes arise in the best-regulated Families\n\n\n\n'I shall never cease to congratulate myself,' said Mrs Chick,' on\nhaving said, when I little thought what was in store for us, - really\nas if I was inspired by something, - that I forgave poor dear Fanny\neverything. Whatever happens, that must always be a comfort to me!'\n\nMrs Chick made this impressive observation in the drawing-room,\nafter having descended thither from the inspection of the\nmantua-makers upstairs, who were busy on the family mourning. She\ndelivered it for the behoof of Mr Chick, who was a stout bald\ngentleman, with a very large face, and his hands continually in his\npockets, and who had a tendency in his nature to whistle and hum\ntunes, which, sensible of the indecorum of such sounds in a house of\ngrief, he was at some pains to repress at present.\n\n'Don't you over-exert yourself, Loo,' said Mr Chick, 'or you'll be\nlaid up with spasms, I see. Right tol loor rul! Bless my soul, I\nforgot! We're here one day and gone the next!'\n\nMrs Chick contented herself with a glance of reproof, and then\nproceeded with the thread of her discourse.\n\n'I am sure,' she said, 'I hope this heart-rending occurrence will\nbe a warning to all of us, to accustom ourselves to rouse ourselves,\nand to make efforts in time where they're required of us. There's a\nmoral in everything, if we would only avail ourselves of it. It will\nbe our own faults if we lose sight of this one.'\n\nMr Chick invaded the grave silence which ensued on this remark with\nthe singularly inappropriate air of 'A cobbler there was;' and\nchecking himself, in some confusion, observed, that it was undoubtedly\nour own faults if we didn't improve such melancholy occasions as the\npresent.\n\n'Which might be better improved, I should think, Mr C.,' retorted\nhis helpmate, after a short pause, 'than by the introduction, either\nof the college hornpipe, or the equally unmeaning and unfeeling remark\nof rump-te-iddity, bow-wow-wow!' - which Mr Chick had indeed indulged\nin, under his breath, and which Mrs Chick repeated in a tone of\nwithering scorn.\n\n'Merely habit, my dear,' pleaded Mr Chick.\n\n'Nonsense! Habit!' returned his wife. 'If you're a rational being,\ndon't make such ridiculous excuses. Habit! If I was to get a habit (as\nyou call it) of walking on the ceiling, like the flies, I should hear\nenough of it, I daresay.\n\nIt appeared so probable that such a habit might be attended with\nsome degree of notoriety, that Mr Chick didn't venture to dispute the\nposition.\n\n'Bow-wow-wow!' repeated Mrs Chick with an emphasis of blighting\ncontempt on the last syllable. 'More like a professional singer with\nthe hydrophobia, than a man in your station of life!'\n\n'How's the Baby, Loo?' asked Mr Chick: to change the subject.\n\n'What Baby do you mean?' answered Mrs Chick.\n\n'The poor bereaved little baby,' said Mr Chick. 'I don't know of\nany other, my dear.'\n\n'You don't know of any other,'retorted Mrs Chick. 'More shame for\nyou, I was going to say.\n\nMr Chick looked astonished.\n\n'I am sure the morning I have had, with that dining-room\ndownstairs, one mass of babies, no one in their senses would believe.'\n\n'One mass of babies!' repeated Mr Chick, staring with an alarmed\nexpression about him.\n\n'It would have occurred to most men,' said Mrs Chick, 'that poor\ndear Fanny being no more, - those words of mine will always be a balm\nand comfort to me,' here she dried her eyes; 'it becomes necessary to\nprovide a Nurse.'\n\n'Oh! Ah!' said Mr Chick. 'Toor-ru! - such is life, I mean. I hope\nyou are suited, my dear.'\n\n'Indeed I am not,' said Mrs Chick; 'nor likely to be, so far as I\ncan see, and in the meantime the poor child seems likely to be starved\nto death. Paul is so very particular - naturally so, of course, having\nset his whole heart on this one boy - and there are so many objections\nto everybody that offers, that I don't see, myself, the least chance\nof an arrangement. Meanwhile, of course, the child is - '\n\n'Going to the Devil,' said Mr Chick, thoughtfully, 'to be sure.'\n\nAdmonished, however, that he had committed himself, by the\nindignation expressed in Mrs Chick's countenance at the idea of a\nDombey going there; and thinking to atone for his misconduct by a\nbright suggestion, he added:\n\n'Couldn't something temporary be done with a teapot?'\n\nIf he had meant to bring the subject prematurely to a close, he\ncould not have done it more effectually. After looking at him for some\nmoments in silent resignation, Mrs Chick said she trusted he hadn't\nsaid it in aggravation, because that would do very little honour to\nhis heart. She trusted he hadn't said it seriously, because that would\ndo very little honour to his head. As in any case, he couldn't,\nhowever sanguine his disposition, hope to offer a remark that would be\na greater outrage on human nature in general, we would beg to leave\nthe discussion at that point.\n\nMrs Chick then walked majestically to the window and peeped through\nthe blind, attracted by the sound of wheels. Mr Chick, finding that\nhis destiny was, for the time, against him, said no more, and walked\noff. But it was not always thus with Mr Chick. He was often in the\nascendant himself, and at those times punished Louisa roundly. In\ntheir matrimonial bickerings they were, upon the whole, a\nwell-matched, fairly-balanced, give-and-take couple. It would have\nbeen, generally speaking, very difficult to have betted on the winner.\nOften when Mr Chick seemed beaten, he would suddenly make a start,\nturn the tables, clatter them about the ears of Mrs Chick, and carry\nall before him. Being liable himself to similar unlooked for checks\nfrom Mrs Chick, their little contests usually possessed a character of\nuncertainty that was very animating.\n\nMiss Tox had arrived on the wheels just now alluded to, and came\nrunning into the room in a breathless condition. 'My dear Louisa,'said\nMiss Tox, 'is the vacancy still unsupplied?'\n\n'You good soul, yes,' said Mrs Chick.\n\n'Then, my dear Louisa,' returned Miss Tox, 'I hope and believe -\nbut in one moment, my dear, I'll introduce the party.'\n\nRunning downstairs again as fast as she had run up, Miss Tox got\nthe party out of the hackney-coach, and soon returned with it under\nconvoy.\n\nIt then appeared that she had used the word, not in its legal or\nbusiness acceptation, when it merely expresses an individual, but as a\nnoun of multitude, or signifying many: for Miss Tox escorted a plump\nrosy-cheeked wholesome apple-faced young woman, with an infant in her\narms; a younger woman not so plump, but apple-faced also, who led a\nplump and apple-faced child in each hand; another plump and also\napple-faced boy who walked by himself; and finally, a plump and\napple-faced man, who carried in his arms another plump and apple-faced\nboy, whom he stood down on the floor, and admonished, in a husky\nwhisper, to 'kitch hold of his brother Johnny.'\n\n'My dear Louisa,' said Miss Tox, 'knowing your great anxiety, and\nwishing to relieve it, I posted off myself to the Queen Charlotte's\nRoyal Married Females,' which you had forgot, and put the question,\nWas there anybody there that they thought would suit? No, they said\nthere was not. When they gave me that answer, I do assure you, my\ndear, I was almost driven to despair on your account. But it did so\nhappen, that one of the Royal Married Females, hearing the inquiry,\nreminded the matron of another who had gone to her own home, and who,\nshe said, would in all likelihood be most satisfactory. The moment I\nheard this, and had it corroborated by the matron - excellent\nreferences and unimpeachable character - I got the address, my dear,\nand posted off again.'\n\n'Like the dear good Tox, you are!' said Louisa.\n\n'Not at all,' returned Miss Tox. 'Don't say so. Arriving at the\nhouse (the cleanest place, my dear! You might eat your dinner off the\nfloor), I found the whole family sitting at table; and feeling that no\naccount of them could be half so comfortable to you and Mr Dombey as\nthe sight of them all together, I brought them all away. This\ngentleman,' said Miss Tox, pointing out the apple-faced man, 'is the\nfather. Will you have the goodness to come a little forward, Sir?'\n\nThe apple-faced man having sheepishly complied with this request,\nstood chuckling and grinning in a front row.\n\n'This is his wife, of course,' said Miss Tox, singling out the\nyoung woman with the baby. 'How do you do, Polly?'\n\n'I'm pretty well, I thank you, Ma'am,' said Polly.\n\nBy way of bringing her out dexterously, Miss Tox had made the\ninquiry as in condescension to an old acquaintance whom she hadn't\nseen for a fortnight or so.\n\n'I'm glad to hear it,' said Miss Tox. 'The other young woman is her\nunmarried sister who lives with them, and would take care of her\nchildren. Her name's Jemima. How do you do, Jemima?'\n\n'I'm pretty well, I thank you, Ma'am,' returned Jemima.\n\n'I'm very glad indeed to hear it,' said Miss Tox. 'I hope you'll\nkeep so. Five children. Youngest six weeks. The fine little boy with\nthe blister on his nose is the eldest The blister, I believe,' said\nMiss Tox, looking round upon the family, 'is not constitutional, but\naccidental?'\n\nThe apple-faced man was understood to growl, 'Flat iron.\n\n'I beg your pardon, Sir,' said Miss Tox, 'did you?\n\n'Flat iron,' he repeated.\n\n'Oh yes,' said Miss Tox. 'Yes! quite true. I forgot. The little\ncreature, in his mother's absence, smelt a warm flat iron. You're\nquite right, Sir. You were going to have the goodness to inform me,\nwhen we arrived at the door that you were by trade a - '\n\n'Stoker,' said the man.\n\n'A choker!' said Miss Tox, quite aghast.\n\n'Stoker,' said the man. 'Steam ingine.'\n\n'Oh-h! Yes!' returned Miss Tox, looking thoughtfully at him, and\nseeming still to have but a very imperfect understanding of his\nmeaning.\n\n'And how do you like it, Sir?'\n\n'Which, Mum?' said the man.\n\n'That,' replied Miss Tox. 'Your trade.'\n\n'Oh! Pretty well, Mum. The ashes sometimes gets in here;' touching\nhis chest: 'and makes a man speak gruff, as at the present time. But\nit is ashes, Mum, not crustiness.'\n\nMiss Tox seemed to be so little enlightened by this reply, as to\nfind a difficulty in pursuing the subject. But Mrs Chick relieved her,\nby entering into a close private examination of Polly, her children,\nher marriage certificate, testimonials, and so forth. Polly coming out\nunscathed from this ordeal, Mrs Chick withdrew with her report to her\nbrother's room, and as an emphatic comment on it, and corroboration of\nit, carried the two rosiest little Toodles with her. Toodle being the\nfamily name of the apple-faced family.\n\nMr Dombey had remained in his own apartment since the death of his\nwife, absorbed in visions of the youth, education, and destination of\nhis baby son. Something lay at the bottom of his cool heart, colder\nand heavier than its ordinary load; but it was more a sense of the\nchild's loss than his own, awakening within him an almost angry\nsorrow. That the life and progress on which he built such hopes,\nshould be endangered in the outset by so mean a want; that Dombey and\nSon should be tottering for a nurse, was a sore humiliation. And yet\nin his pride and jealousy, he viewed with so much bitterness the\nthought of being dependent for the very first step towards the\naccomplishment of his soul's desire, on a hired serving-woman who\nwould be to the child, for the time, all that even his alliance could\nhave made his own wife, that in every new rejection of a candidate he\nfelt a secret pleasure. The time had now come, however, when he could\nno longer be divided between these two sets of feelings. The less so,\nas there seemed to be no flaw in the title of Polly Toodle after his\nsister had set it forth, with many commendations on the indefatigable\nfriendship of Miss Tox.\n\n'These children look healthy,' said Mr Dombey. 'But my God, to\nthink of their some day claiming a sort of relationship to Paul!'\n\n' But what relationship is there!' Louisa began -\n\n'Is there!' echoed Mr Dombey, who had not intended his sister to\nparticipate in the thought he had unconsciously expressed. 'Is there,\ndid you say, Louisa!'\n\n'Can there be, I mean - '\n\n'Why none,' said Mr Dombey, sternly. 'The whole world knows that, I\npresume. Grief has not made me idiotic, Louisa. Take them away,\nLouisa! Let me see this woman and her husband.'\n\nMrs Chick bore off the tender pair of Toodles, and presently\nreturned with that tougher couple whose presence her brother had\ncommanded.\n\n'My good woman,' said Mr Dombey, turning round in his easy chair,\nas one piece, and not as a man with limbs and joints, 'I understand\nyou are poor, and wish to earn money by nursing the little boy, my\nson, who has been so prematurely deprived of what can never be\nreplaced. I have no objection to your adding to the comforts of your\nfamily by that means. So far as I can tell, you seem to be a deserving\nobject. But I must impose one or two conditions on you, before you\nenter my house in that capacity. While you are here, I must stipulate\nthat you are always known as - say as Richards - an ordinary name, and\nconvenient. Have you any objection to be known as Richards? You had\nbetter consult your husband.'\n\n'Well?' said Mr Dombey, after a pretty long pause. 'What does your\nhusband say to your being called Richards?'\n\nAs the husband did nothing but chuckle and grin, and continually\ndraw his right hand across his mouth, moistening the palm, Mrs Toodle,\nafter nudging him twice or thrice in vain, dropped a curtsey and\nreplied 'that perhaps if she was to be called out of her name, it\nwould be considered in the wages.'\n\n'Oh, of course,' said Mr Dombey. 'I desire to make it a question of\nwages, altogether. Now, Richards, if you nurse my bereaved child, I\nwish you to remember this always. You will receive a liberal stipend\nin return for the discharge of certain duties, in the performance of\nwhich, I wish you to see as little of your family as possible. When\nthose duties cease to be required and rendered, and the stipend ceases\nto be paid, there is an end of all relations between us. Do you\nunderstand me?'\n\nMrs Toodle seemed doubtful about it; and as to Toodle himself, he\nhad evidently no doubt whatever, that he was all abroad.\n\n'You have children of your own,' said Mr Dombey. 'It is not at all\nin this bargain that you need become attached to my child, or that my\nchild need become attached to you. I don't expect or desire anything\nof the kind. Quite the reverse. When you go away from here, you will\nhave concluded what is a mere matter of bargain and sale, hiring and\nletting: and will stay away. The child will cease to remember you; and\nyou will cease, if you please, to remember the child.'\n\nMrs Toodle, with a little more colour in her cheeks than she had\nhad before, said 'she hoped she knew her place.'\n\n'I hope you do, Richards,' said Mr Dombey. 'I have no doubt you\nknow it very well. Indeed it is so plain and obvious that it could\nhardly be otherwise. Louisa, my dear, arrange with Richards about\nmoney, and let her have it when and how she pleases. Mr what's-your\nname, a word with you, if you please!'\n\nThus arrested on the threshold as he was following his wife out of\nthe room, Toodle returned and confronted Mr Dombey alone. He was a\nstrong, loose, round-shouldered, shuffling, shaggy fellow, on whom his\nclothes sat negligently: with a good deal of hair and whisker,\ndeepened in its natural tint, perhaps by smoke and coal-dust: hard\nknotty hands: and a square forehead, as coarse in grain as the bark of\nan oak. A thorough contrast in all respects, to Mr Dombey, who was one\nof those close-shaved close-cut moneyed gentlemen who are glossy and\ncrisp like new bank-notes, and who seem to be artificially braced and\ntightened as by the stimulating action of golden showerbaths.\n\n'You have a son, I believe?' said Mr Dombey.\n\n'Four on 'em, Sir. Four hims and a her. All alive!'\n\n'Why, it's as much as you can afford to keep them!' said Mr Dombey.\n\n'I couldn't hardly afford but one thing in the world less, Sir.'\n\n'What is that?'\n\n'To lose 'em, Sir.'\n\n'Can you read?' asked Mr Dombey.\n\n'Why, not partick'ler, Sir.'\n\n'Write?'\n\n'With chalk, Sir?'\n\n'With anything?'\n\n'I could make shift to chalk a little bit, I think, if I was put to\nit,' said Toodle after some reflection.\n\n'And yet,' said Mr Dombey, 'you are two or three and thirty, I\nsuppose?'\n\n'Thereabouts, I suppose, Sir,' answered Toodle, after more\nreflection\n\n'Then why don't you learn?' asked Mr Dombey.\n\n'So I'm a going to, Sir. One of my little boys is a going to learn\nme, when he's old enough, and been to school himself.'\n\n'Well,' said Mr Dombey, after looking at him attentively, and with\nno great favour, as he stood gazing round the room (principally round\nthe ceiling) and still drawing his hand across and across his mouth.\n'You heard what I said to your wife just now?'\n\n'Polly heerd it,' said Toodle, jerking his hat over his shoulder in\nthe direction of the door, with an air of perfect confidence in his\nbetter half. 'It's all right.'\n\n'But I ask you if you heard it. You did, I suppose, and understood\nit?' pursued Mr Dombey.\n\n'I heerd it,' said Toodle, 'but I don't know as I understood it\nrightly Sir, 'account of being no scholar, and the words being - ask\nyour pardon - rayther high. But Polly heerd it. It's all right.'\n\n'As you appear to leave everything to her,' said Mr Dombey,\nfrustrated in his intention of impressing his views still more\ndistinctly on the husband, as the stronger character, 'I suppose it is\nof no use my saying anything to you.'\n\n'Not a bit,' said Toodle. 'Polly heerd it. She's awake, Sir.'\n\n'I won't detain you any longer then,' returned Mr Dombey,\ndisappointed. 'Where have you worked all your life?'\n\n'Mostly underground, Sir, 'till I got married. I come to the level\nthen. I'm a going on one of these here railroads when they comes into\nfull play.'\n\nAs he added in one of his hoarse whispers, 'We means to bring up\nlittle Biler to that line,' Mr Dombey inquired haughtily who little\nBiler was.\n\n'The eldest on 'em, Sir,' said Toodle, with a smile. 'It ain't a\ncommon name. Sermuchser that when he was took to church the gen'lm'n\nsaid, it wam't a chris'en one, and he couldn't give it. But we always\ncalls him Biler just the same. For we don't mean no harm. Not we.\n\n'Do you mean to say, Man,' inquired Mr Dombey; looking at him with\nmarked displeasure, 'that you have called a child after a boiler?'\n\n'No, no, Sir,' returned Toodle, with a tender consideration for his\nmistake. 'I should hope not! No, Sir. Arter a BILER Sir. The\nSteamingine was a'most as good as a godfather to him, and so we called\nhim Biler, don't you see!'\n\nAs the last straw breaks the laden camel's back, this piece of\ninformation crushed the sinking spirits of Mr Dombey. He motioned his\nchild's foster-father to the door, who departed by no means\nunwillingly: and then turning the key, paced up and down the room in\nsolitary wretchedness.\n\nIt would be harsh, and perhaps not altogether true, to say of him\nthat he felt these rubs and gratings against his pride more keenly\nthan he had felt his wife's death: but certainly they impressed that\nevent upon him with new force, and communicated to it added weight and\nbitterness. It was a rude shock to his sense of property in his child,\nthat these people - the mere dust of the earth, as he thought them -\nshould be necessary to him; and it was natural that in proportion as\nhe felt disturbed by it, he should deplore the occurrence which had\nmade them so. For all his starched, impenetrable dignity and\ncomposure, he wiped blinding tears from his eyes as he paced up and\ndown his room; and often said, with an emotion of which he would not,\nfor the world, have had a witness, 'Poor little fellow!'\n\nIt may have been characteristic of Mr Dombey's pride, that he\npitied himself through the child. Not poor me. Not poor widower,\nconfiding by constraint in the wife of an ignorant Hind who has been\nworking 'mostly underground' all his life, and yet at whose door Death\nhad never knocked, and at whose poor table four sons daily sit - but\npoor little fellow!\n\nThose words being on his lips, it occurred to him - and it is an\ninstance of the strong attraction with which his hopes and fears and\nall his thoughts were tending to one centre - that a great temptation\nwas being placed in this woman's way. Her infant was a boy too. Now,\nwould it be possIble for her to change them?\n\nThough he was soon satisfied that he had dismissed the idea as\nromantic and unlikely - though possible, there was no denying - he\ncould not help pursuing it so far as to entertain within himself a\npicture of what his condition would be, if he should discover such an\nimposture when he was grown old. Whether a man so situated would be\nable to pluck away the result of so many years of usage, confidence,\nand belief, from the impostor, and endow a stranger with it?\n\nBut it was idle speculating thus. It couldn't happen. In a moment\nafterwards he determined that it could, but that such women were\nconstantly observed, and had no opportunity given them for the\naccomplishment of such a design, even when they were so wicked as to\nentertain it. In another moment, he was remembering how few such cases\nseemed to have ever happened. In another moment he was wondering\nwhether they ever happened and were not found out.\n\nAs his unusual emotion subsided, these misgivings gradually melted\naway, though so much of their shadow remained behind, that he was\nconstant in his resolution to look closely after Richards himself,\nwithout appearing to do so. Being now in an easier frame of mind, he\nregarded the woman's station as rather an advantageous circumstance\nthan otherwise, by placing, in itself, a broad distance between her\nand the child, and rendering their separation easy and natural. Thence\nhe passed to the contemplation of the future glories of Dombey and\nSon, and dismissed the memory of his wife, for the time being, with a\ntributary sigh or two.\n\nMeanwhile terms were ratified and agreed upon between Mrs Chick and\nRichards, with the assistance of Miss Tox; and Richards being with\nmuch ceremony invested with the Dombey baby, as if it were an Order,\nresigned her own, with many tears and kisses, to Jemima. Glasses of\nwine were then produced, to sustain the drooping spirits of the\nfamily; and Miss Tox, busying herself in dispensing 'tastes' to the\nyounger branches, bred them up to their father's business with such\nsurprising expedition, that she made chokers of four of them in a\nquarter of a minute.\n\n'You'll take a glass yourself, Sir, won't you?' said Miss Tox, as\nToodle appeared.\n\n'Thankee, Mum,' said Toodle, 'since you are suppressing.'\n\n'And you're very glad to leave your dear good wife in such a\ncomfortable home, ain't you, Sir?'said Miss Tox, nodding and winking\nat him stealthily.\n\n'No, Mum,' said Toodle. 'Here's wishing of her back agin.'\n\nPolly cried more than ever at this. So Mrs Chick, who had her\nmatronly apprehensions that this indulgence in grief might be\nprejudicial to the little Dombey ('acid, indeed,' she whispered Miss\nTox), hastened to the rescue.\n\n'Your little child will thrive charmingly with your sister Jemima,\nRichards,' said Mrs Chick; 'and you have only to make an effort - this\nis a world of effort, you know, Richards - to be very happy indeed.\nYou have been already measured for your mourning, haven't you,\nRichards?'\n\n'Ye - es, Ma'am,' sobbed Polly.\n\n'And it'll fit beautifully. I know,' said Mrs Chick, 'for the same\nyoung person has made me many dresses. The very best materials, too!'\n\n'Lor, you'll be so smart,' said Miss Tox, 'that your husband won't\nknow you; will you, Sir?'\n\n'I should know her,' said Toodle, gruffly, 'anyhows and anywheres.'\n\nToodle was evidently not to be bought over.\n\n'As to living, Richards, you know,' pursued Mrs Chick, 'why, the\nvery best of everything will be at your disposal. You will order your\nlittle dinner every day; and anything you take a fancy to, I'm sure\nwill be as readily provided as if you were a Lady.'\n\n'Yes to be sure!' said Miss Tox, keeping up the ball with great\nsympathy. 'And as to porter! - quite unlimited, will it not, Louisa?'\n\n'Oh, certainly!' returned Mrs Chick in the same tone. 'With a\nlittle abstinence, you know, my dear, in point of vegetables.'\n\n'And pickles, perhaps,' suggested Miss Tox.\n\n'With such exceptions,' said Louisa, 'she'll consult her choice\nentirely, and be under no restraint at all, my love.'\n\n'And then, of course, you know,' said Miss Tox, 'however fond she\nis of her own dear little child - and I'm sure, Louisa, you don't\nblame her for being fond of it?'\n\n'Oh no!' cried Mrs Chick, benignantly.\n\n'Still,' resumed Miss Tox, 'she naturally must be interested in her\nyoung charge, and must consider it a privilege to see a little cherub\nconnected with the superior classes, gradually unfolding itself from\nday to day at one common fountain- is it not so, Louisa?'\n\n'Most undoubtedly!' said Mrs Chick. 'You see, my love, she's\nalready quite contented and comfortable, and means to say goodbye to\nher sister Jemima and her little pets, and her good honest husband,\nwith a light heart and a smile; don't she, my dear?'\n\n'Oh yes!' cried Miss Tox. 'To be sure she does!'\n\nNotwithstanding which, however, poor Polly embraced them all round\nin great distress, and coming to her spouse at last, could not make up\nher mind to part from him, until he gently disengaged himself, at the\nclose of the following allegorical piece of consolation:\n\n'Polly, old 'ooman, whatever you do, my darling, hold up your head\nand fight low. That's the only rule as I know on, that'll carry anyone\nthrough life. You always have held up your head and fought low, Polly.\nDo it now, or Bricks is no longer so. God bless you, Polly! Me and\nJ'mima will do your duty by you; and with relating to your'n, hold up\nyour head and fight low, Polly, and you can't go wrong!'\n\nFortified by this golden secret, Folly finally ran away to avoid\nany more particular leave-taking between herself and the children. But\nthe stratagem hardly succeeded as well as it deserved; for the\nsmallest boy but one divining her intent, immediately began swarming\nupstairs after her - if that word of doubtful etymology be admissible\n- on his arms and legs; while the eldest (known in the family by the\nname of Biler, in remembrance of the steam engine) beat a demoniacal\ntattoo with his boots, expressive of grief; in which he was joined by\nthe rest of the family.\n\nA quantity of oranges and halfpence thrust indiscriminately on each\nyoung Toodle, checked the first violence of their regret, and the\nfamily were speedily transported to their own home, by means of the\nhackney-coach kept in waiting for that purpose. The children, under\nthe guardianship of Jemima, blocked up the window, and dropped out\noranges and halfpence all the way along. Mr Toodle himself preferred\nto ride behind among the spikes, as being the mode of conveyance to\nwhich he was best accustomed.\n\n\n\nCHAPTER 3.\n\nIn which Mr Dombey, as a Man and a Father, is seen at the\nHead of the Home-Department\n\n\n\nThe funeral of the deceased lady having been 'performed to the\nentire satisfaction of the undertaker, as well as of the neighbourhood\nat large, which is generally disposed to be captious on such a point,\nand is prone to take offence at any omissions or short-comings in the\nceremonies, the various members of Mr Dombey's household subsided into\ntheir several places in the domestic system. That small world, like\nthe great one out of doors, had the capacity of easily forgetting its\ndead; and when the cook had said she was a quiet-tempered lady, and\nthe house-keeper had said it was the common lot, and the butler had\nsaid who'd have thought it, and the housemaid had said she couldn't\nhardly believe it, and the footman had said it seemed exactly like a\ndream, they had quite worn the subject out, and began to think their\nmourning was wearing rusty too.\n\nOn Richards, who was established upstairs in a state of honourable\ncaptivity, the dawn of her new life seemed to break cold and grey. Mr\nDombey's house was a large one, on the shady side of a tall, dark,\ndreadfully genteel street in the region between Portland Place and\nBryanstone Square.' It was a corner house, with great wide areas\ncontaining cellars frowned upon by barred windows, and leered at by\ncrooked-eyed doors leading to dustbins. It was a house of dismal\nstate, with a circular back to it, containing a whole suite of\ndrawing-rooms looking upon a gravelled yard, where two gaunt trees,\nwith blackened trunks and branches, rattled rather than rustled, their\nleaves were so smoked-dried. The summer sun was never on the street,\nbut in the morning about breakfast-time, when it came with the\nwater-carts and the old clothes men, and the people with geraniums,\nand the umbrella-mender, and the man who trilled the little bell of\nthe Dutch clock as he went along. It was soon gone again to return no\nmore that day; and the bands of music and the straggling Punch's shows\ngoing after it, left it a prey to the most dismal of organs, and white\nmice; with now and then a porcupine, to vary the entertainments; until\nthe butlers whose families were dining out, began to stand at the\nhouse-doors in the twilight, and the lamp-lighter made his nightly\nfailure in attempting to brighten up the street with gas.\n\nIt was as blank a house inside as outside. When the funeral was\nover, Mr Dombey ordered the furniture to be covered up - perhaps to\npreserve it for the son with whom his plans were all associated - and\nthe rooms to be ungarnished, saving such as he retained for himself on\nthe ground floor. Accordingly, mysterious shapes were made of tables\nand chairs, heaped together in the middle of rooms, and covered over\nwith great winding-sheets. Bell-handles, window-blinds, and\nlooking-glasses, being papered up in journals, daily and weekly,\nobtruded fragmentary accounts of deaths and dreadful murders. Every\nchandelier or lustre, muffled in holland, looked like a monstrous tear\ndepending from the ceiling's eye. Odours, as from vaults and damp\nplaces, came out of the chimneys. The dead and buried lady was awful\nin a picture-frame of ghastly bandages. Every gust of wind that rose,\nbrought eddying round the corner from the neighbouring mews, some\nfragments of the straw that had been strewn before the house when she\nwas ill, mildewed remains of which were still cleaving to the\nneighbourhood: and these, being always drawn by some invisible\nattraction to the threshold of the dirty house to let immediately\nopposite, addressed a dismal eloquence to Mr Dombey's windows.\n\nThe apartments which Mr Dombey reserved for his own inhabiting,\nwere attainable from the hall, and consisted of a sitting-room; a\nlibrary, which was in fact a dressing-room, so that the smell of\nhot-pressed paper, vellum, morocco, and Russia leather, contended in\nit with the smell of divers pairs of boots; and a kind of conservatory\nor little glass breakfast-room beyond, commanding a prospect of the\ntrees before mentioned, and, generally speaking, of a few prowling\ncats. These three rooms opened upon one another. In the morning, when\nMr Dombey was at his breakfast in one or other of the two\nfirst-mentioned of them, as well as in the afternoon when he came home\nto dinner, a bell was rung for Richards to repair to this glass\nchamber, and there walk to and fro with her young charge. From the\nglimpses she caught of Mr Dombey at these times, sitting in the dark\ndistance, looking out towards the infant from among the dark heavy\nfurniture - the house had been inhabited for years by his father, and\nin many of its appointments was old-fashioned and grim - she began to\nentertain ideas of him in his solitary state, as if he were a lone\nprisoner in a cell, or a strange apparition that was not to be\naccosted or understood. Mr Dombey came to be, in the course of a few\ndays, invested in his own person, to her simple thinking, with all the\nmystery and gloom of his house. As she walked up and down the glass\nroom, or sat hushing the baby there - which she very often did for\nhours together, when the dusk was closing in, too - she would\nsometimes try to pierce the gloom beyond, and make out how he was\nlooking and what he was doing. Sensible that she was plainly to be\nseen by him' however, she never dared to pry in that direction but\nvery furtively and for a moment at a time. Consequently she made out\nnothing, and Mr Dombey in his den remained a very shade.\n\nLittle Paul Dombey's foster-mother had led this life herself, and\nhad carried little Paul through it for some weeks; and had returned\nupstairs one day from a melancholy saunter through the dreary rooms of\nstate (she never went out without Mrs Chick, who called on fine\nmornings, usually accompanied by Miss Tox, to take her and Baby for an\nairing - or in other words, to march them gravely up and down the\npavement, like a walking funeral); when, as she was sitting in her own\nroom, the door was slowly and quietly opened, and a dark-eyed little\ngirl looked in.\n\n'It's Miss Florence come home from her aunt's, no doubt,' thought\nRichards, who had never seen the child before. 'Hope I see you well,\nMiss.'\n\n'Is that my brother?' asked the child, pointing to the Baby.\n\n'Yes, my pretty,' answered Richards. 'Come and kiss him.'\n\nBut the child, instead of advancing, looked her earnestly in the\nface, and said:\n\n'What have you done with my Mama?'\n\n'Lord bless the little creeter!' cried Richards, 'what a sad\nquestion! I done? Nothing, Miss.'\n\n'What have they done with my Mama?' inquired the child, with\nexactly the same look and manner.\n\n'I never saw such a melting thing in all my life!' said Richards,\nwho naturally substituted 'for this child one of her own, inquiring\nfor herself in like circumstances. 'Come nearer here, my dear Miss!\nDon't be afraid of me.'\n\n'I am not afraid of you,' said the child, drawing nearer. 'But I\nwant to know what they have done with my Mama.'\n\nHer heart swelled so as she stood before the woman, looking into\nher eyes, that she was fain to press her little hand upon her breast\nand hold it there. Yet there was a purpose in the child that prevented\nboth her slender figure and her searching gaze from faltering.\n\n'My darling,' said Richards, 'you wear that pretty black frock in\nremembrance of your Mama.'\n\n'I can remember my Mama,' returned the child, with tears springing\nto her eyes, 'in any frock.'\n\n'But people put on black, to remember people when they're gone.'\n\n'Where gone?' asked the child.\n\n'Come and sit down by me,' said Richards, 'and I'll tell you a\nstory.'\n\nWith a quick perception that it was intended to relate to what she\nhad asked, little Florence laid aside the bonnet she had held in her\nhand until now, and sat down on a stool at the Nurse's feet, looking\nup into her face.\n\n'Once upon a time,' said Richards, 'there was a lady - a very good\nlady, and her little daughter dearly loved her.'\n\n'A very good lady and her little daughter dearly loved her,'\nrepeated the child.\n\n'Who, when God thought it right that it should be so, was taken ill\nand died.'\n\nThe child shuddered.\n\n'Died, never to be seen again by anyone on earth, and was buried in\nthe ground where the trees grow.\n\n'The cold ground?' said the child, shuddering again. 'No! The warm\nground,' returned Polly, seizing her advantage, 'where the ugly little\nseeds turn into beautiful flowers, and into grass, and corn, and I\ndon't know what all besides. Where good people turn into bright\nangels, and fly away to Heaven!'\n\nThe child, who had dropped her head, raised it again, and sat\nlooking at her intently.\n\n'So; let me see,' said Polly, not a little flurried between this\nearnest scrutiny, her desire to comfort the child, her sudden success,\nand her very slight confidence in her own powers.' So, when this lady\ndied, wherever they took her, or wherever they put her, she went to\nGOD! and she prayed to Him, this lady did,' said Polly, affecting\nherself beyond measure; being heartily in earnest, 'to teach her\nlittle daughter to be sure of that in her heart: and to know that she\nwas happy there and loved her still: and to hope and try - Oh, all her\nlife - to meet her there one day, never, never, never to part any\nmore.'\n\n'It was my Mama!' exclaimed the child, springing up, and clasping\nher round the neck.\n\n'And the child's heart,' said Polly, drawing her to her breast:\n'the little daughter's heart was so full of the truth of this, that\neven when she heard it from a strange nurse that couldn't tell it\nright, but was a poor mother herself and that was all, she found a\ncomfort in it - didn't feel so lonely - sobbed and cried upon her\nbosom - took kindly to the baby lying in her lap - and - there, there,\nthere!' said Polly, smoothing the child's curls and dropping tears\nupon them. 'There, poor dear!'\n\n'Oh well, Miss Floy! And won't your Pa be angry neither!' cried a\nquick voice at the door, proceeding from a short, brown, womanly girl\nof fourteen, with a little snub nose, and black eyes like jet beads.\n'When it was 'tickerlerly given out that you wasn't to go and worrit\nthe wet nurse.\n\n'She don't worry me,' was the surprised rejoinder of Polly. 'I am\nvery fond of children.'\n\n'Oh! but begging your pardon, Mrs Richards, that don't matter, you\nknow,' returned the black-eyed girl, who was so desperately sharp and\nbiting that she seemed to make one's eyes water. 'I may be very fond\nof pennywinkles, Mrs Richards, but it don't follow that I'm to have\n'em for tea. 'Well, it don't matter,' said Polly. 'Oh, thank'ee, Mrs\nRichards, don't it!' returned the sharp girl. 'Remembering, however,\nif you'll be so good, that Miss Floy's under my charge, and Master\nPaul's under your'n.'\n\n'But still we needn't quarrel,' said Polly.\n\n'Oh no, Mrs Richards,' rejoined Spitfire. 'Not at all, I don't wish\nit, we needn't stand upon that footing, Miss Floy being a permanency,\nMaster Paul a temporary.' Spitfire made use of none but comma pauses;\nshooting out whatever she had to say in one sentence, and in one\nbreath, if possible.\n\n'Miss Florence has just come home, hasn't she?' asked Polly.\n\n'Yes, Mrs Richards, just come, and here, Miss Floy, before you've\nbeen in the house a quarter of an hour, you go a smearing your wet\nface against the expensive mourning that Mrs Richards is a wearing for\nyour Ma!' With this remonstrance, young Spitfire, whose real name was\nSusan Nipper, detached the child from her new friend by a wrench - as\nif she were a tooth. But she seemed to do it, more in the excessively\nsharp exercise of her official functions, than with any deliberate\nunkindness.\n\n'She'll be quite happy, now she has come home again,' said Polly,\nnodding to her with an encouraging smile upon her wholesome face, 'and\nwill be so pleased to see her dear Papa to-night.'\n\n'Lork, Mrs Richards!' cried Miss Nipper, taking up her words with a\njerk. 'Don't. See her dear Papa indeed! I should like to see her do\nit!'\n\n'Won't she then?' asked Polly.\n\n'Lork, Mrs Richards, no, her Pa's a deal too wrapped up in somebody\nelse, and before there was a somebody else to be wrapped up in she\nnever was a favourite, girls are thrown away in this house, Mrs\nRichards, I assure you.\n\nThe child looked quickly from one nurse to the other, as if she\nunderstood and felt what was said.\n\n'You surprise me!' cried Folly. 'Hasn't Mr Dombey seen her since -\n'\n\n'No,' interrupted Susan Nipper. 'Not once since, and he hadn't\nhardly set his eyes upon her before that for months and months, and I\ndon't think he'd have known her for his own child if he had met her in\nthe streets, or would know her for his own child if he was to meet her\nin the streets to-morrow, Mrs Richards, as to me,' said Spitfire, with\na giggle, 'I doubt if he's aweer of my existence.'\n\n'Pretty dear!' said Richards; meaning, not Miss Nipper, but the\nlittle Florence.\n\n'Oh! there's a Tartar within a hundred miles of where we're now in\nconversation, I can tell you, Mrs Richards, present company always\nexcepted too,' said Susan Nipper; 'wish you good morning, Mrs\nRichards, now Miss Floy, you come along with me, and don't go hanging\nback like a naughty wicked child that judgments is no example to,\ndon't!'\n\nIn spite of being thus adjured, and in spite also of some hauling\non the part of Susan Nipper, tending towards the dislocation of her\nright shoulder, little Florence broke away, and kissed her new friend,\naffectionately.\n\n'Oh dear! after it was given out so 'tickerlerly, that Mrs Richards\nwasn't to be made free with!' exclaimed Susan. 'Very well, Miss Floy!'\n\n'God bless the sweet thing!' said Richards, 'Good-bye, dear!'\n\n'Good-bye!' returned the child. 'God bless you! I shall come to see\nyou again soon, and you'll come to see me? Susan will let us. Won't\nyou, Susan?'\n\nSpitfire seemed to be in the main a good-natured little body,\nalthough a disciple of that school of trainers of the young idea which\nholds that childhood, like money, must be shaken and rattled and\njostled about a good deal to keep it bright. For, being thus appealed\nto with some endearing gestures and caresses, she folded her small\narms and shook her head, and conveyed a relenting expression into her\nvery-wide-open black eyes.\n\n'It ain't right of you to ask it, Miss Floy, for you know I can't\nrefuse you, but Mrs Richards and me will see what can be done, if Mrs\nRichards likes, I may wish, you see, to take a voyage to Chaney, Mrs\nRichards, but I mayn't know how to leave the London Docks.'\n\nRichards assented to the proposition.\n\n'This house ain't so exactly ringing with merry-making,' said Miss\nNipper, 'that one need be lonelier than one must be. Your Toxes and\nyour Chickses may draw out my two front double teeth, Mrs Richards,\nbut that's no reason why I need offer 'em the whole set.'\n\nThis proposition was also assented to by Richards, as an obvious\none.\n\n'So I'm able, I'm sure,'said Susan Nipper, 'to live friendly, Mrs\nRichards, while Master Paul continues a permanency, if the means can\nbe planned out without going openly against orders, but goodness\ngracious Miss Floy, you haven't got your things off yet, you naughty\nchild, you haven't, come along!'\n\nWith these words, Susan Nipper, in a transport of coercion, made a\ncharge at her young ward, and swept her out of the room.\n\nThe child, in her grief and neglect, was so gentle, so quiet, and\nuncomplaining; was possessed of so much affection that no one seemed\nto care to have, and so much sorrowful intelligence that no one seemed\nto mind or think about the wounding of, that Polly's heart was sore\nwhen she was left alone again. In the simple passage that had taken\nplace between herself and the motherless little girl, her own motherly\nheart had been touched no less than the child's; and she felt, as the\nchild did, that there was something of confidence and interest between\nthem from that moment.\n\nNotwithstanding Mr Toodle's great reliance on Polly, she was\nperhaps in point of artificial accomplishments very little his\nsuperior. She had been good-humouredly working and drudging for her\nlife all her life, and was a sober steady-going person, with\nmatter-of-fact ideas about the butcher and baker, and the division of\npence into farthings. But she was a good plain sample of a nature that\nis ever, in the mass, better, truer, higher, nobler, quicker to feel,\nand much more constant to retain, all tenderness and pity, self-denial\nand devotion, than the nature of men. And, perhaps, unlearned as she\nwas, she could have brought a dawning knowledge home to Mr Dombey at\nthat early day, which would not then have struck him in the end like\nlightning.\n\nBut this is from the purpose. Polly only thought, at that time, of\nimproving on her successful propitiation of Miss Nipper, and devising\nsome means of having little Florence aide her, lawfully, and without\nrebellion. An opening happened to present itself that very night.\n\nShe had been rung down into the glass room as usual, and had walked\nabout and about it a long time, with the baby in her arms, when, to\nher great surprise and dismay, Mr Dombey - whom she had seen at first\nleaning on his elbow at the table, and afterwards walking up and down\nthe middle room, drawing, each time, a little nearer, she thought, to\nthe open folding doors - came out, suddenly, and stopped before her.\n\n'Good evening, Richards.'\n\nJust the same austere, stiff gentleman, as he had appeared to her\non that first day. Such a hard-looking gentleman, that she\ninvoluntarily dropped her eyes and her curtsey at the same time.\n\n'How is Master Paul, Richards?'\n\n'Quite thriving, Sir, and well.'\n\n'He looks so,' said Mr Dombey, glancing with great interest at the\ntiny face she uncovered for his observation, and yet affecting to be\nhalf careless of it. 'They give you everything you want, I hope?'\n\n'Oh yes, thank you, Sir.'\n\nShe suddenly appended such an obvious hesitation to this reply,\nhowever, that Mr Dombey, who had turned away; stopped, and turned\nround again, inquiringly.\n\n'If you please, Sir, the child is very much disposed to take notice\nof things,' said Richards, with another curtsey, 'and - upstairs is a\nlittle dull for him, perhaps, Sir.'\n\n'I begged them to take you out for airings, constantly,' said Mr\nDombey. 'Very well! You shall go out oftener. You're quite right to\nmention it.'\n\n'I beg your pardon, Sir,' faltered Polly, 'but we go out quite\nplenty Sir, thank you.'\n\n'What would you have then?' asked Mr Dombey.\n\n'Indeed Sir, I don't exactly know,' said Polly, 'unless - '\n\n'Yes?'\n\n'I believe nothing is so good for making children lively and\ncheerful, Sir, as seeing other children playing about 'em,' observed\nPolly, taking courage.\n\n'I think I mentioned to you, Richards, when you came here,' said Mr\nDombey, with a frown, 'that I wished you to see as little of your\nfamily as possible.'\n\n'Oh dear yes, Sir, I wasn't so much as thinking of that.'\n\n'I am glad of it,' said Mr Dombey hastily. 'You can continue your\nwalk if you please.'\n\nWith that, he disappeared into his inner room; and Polly had the\nsatisfaction of feeling that he had thoroughly misunderstood her\nobject, and that she had fallen into disgrace without the least\nadvancement of her purpose.\n\nNext night, she found him walking about the conservatory when she\ncame down. As she stopped at the door, checked by this unusual sight,\nand uncertain whether to advance or retreat, he called her in. His\nmind was too much set on Dombey and Son, it soon appeared, to admit of\nhis having forgotten her suggestion.\n\n'If you really think that sort of society is good for the child,'\nhe said sharply, as if there had been no interval since she proposed\nit, 'where's Miss Florence?'\n\n'Nothing could be better than Miss Florence, Sir,' said Polly\neagerly, 'but I understood from her maid that they were not to - '\n\nMr Dombey rang the bell, and walked till it was answered.\n\n'Tell them always to let Miss Florence be with Richards when she\nchooses, and go out with her, and so forth. Tell them to let the\nchildren be together, when Richards wishes it.'\n\nThe iron was now hot, and Richards striking on it boldly - it was a\ngood cause and she bold in it, though instinctively afraid of Mr\nDombey - requested that Miss Florence might be sent down then and\nthere, to make friends with her little brother.\n\nShe feigned to be dandling the child as the servant retired on this\nerrand, but she thought that she saw Mr Dombey's colour changed; that\nthe expression of his face quite altered; that he turned, hurriedly,\nas if to gainsay what he had said, or she had said, or both, and was\nonly deterred by very shame.\n\nAnd she was right. The last time he had seen his slighted child,\nthere had been that in the sad embrace between her and her dying\nmother, which was at once a revelation and a reproach to him. Let him\nbe absorbed as he would in the Son on whom he built such high hopes,\nhe could not forget that closing scene. He could not forget that he\nhad had no part in it. That, at the bottom of its clear depths of\ntenderness and truth' lay those two figures clasped in each other's\narms, while he stood on the bank above them, looking down a mere\nspectator - not a sharer with them - quite shut out.\n\nUnable to exclude these things from his remembrance, or to keep his\nmind free from such imperfect shapes of the meaning with which they\nwere fraught, as were able to make themselves visible to him through\nthe mist of his pride, his previous feeling of indifference towards\nlittle Florence changed into an uneasiness of an extraordinary kind.\nYoung as she was, and possessing in any eyes but his (and perhaps in\nhis too) even more than the usual amount of childish simplicity and\nconfidence, he almost felt as if she watched and distrusted him. As if\nshe held the clue to something secret in his breast, of the nature of\nwhich he was hardly informed himself. As if she had an innate\nknowledge of one jarring and discordant string within him, and her\nvery breath could sound it.\n\nHis feeling about the child had been negative from her birth. He\nhad never conceived an aversion to her: it had not been worth his\nwhile or in his humour. She had never been a positively disagreeable\nobject to him. But now he was ill at ease about her. She troubled his\npeace. He would have preferred to put her idea aside altogether, if he\nhad known how. Perhaps - who shall decide on such mysteries! - he was\nafraid that he might come to hate her.\n\nWhen little Florence timidly presented herself, Mr Dombey stopped\nin his pacing up and down and looked towards her. Had he looked with\ngreater interest and with a father's eye, he might have read in her\nkeen glance the impulses and fears that made her waver; the passionate\ndesire to run clinging to him, crying, as she hid her face in his\nembrace, 'Oh father, try to love me! there's no one else!' the dread\nof a repulse; the fear of being too bold, and of offending him; the\npitiable need in which she stood of some assurance and encouragement;\nand how her overcharged young heart was wandering to find some natural\nresting-place, for its sorrow and affection.\n\nBut he saw nothing of this. He saw her pause irresolutely at the\ndoor and look towards him; and he saw no more.\n\n'Come in,' he said, 'come in: what is the child afraid of?'\n\nShe came in; and after glancing round her for a moment with an\nuncertain air, stood pressing her small hands hard together, close\nwithin the door.\n\n'Come here, Florence,' said her father, coldly. 'Do you know who I\nam?'\n\n'Yes, Papa.'\n\n'Have you nothing to say to me?'\n\nThe tears that stood in her eyes as she raised them quickly to his\nface, were frozen by the expression it wore. She looked down again,\nand put out her trembling hand.\n\nMr Dombey took it loosely in his own, and stood looking down upon\nher for a moment, as if he knew as little as the child, what to say or\ndo.\n\n'There! Be a good girl,' he said, patting her on the head, and\nregarding her as it were by stealth with a disturbed and doubtful\nlook. 'Go to Richards! Go!'\n\nHis little daughter hesitated for another instant as though she\nwould have clung about him still, or had some lingering hope that he\nmight raise her in his arms and kiss her. She looked up in his face\nonce more. He thought how like her expression was then, to what it had\nbeen when she looked round at the Doctor - that night - and\ninstinctively dropped her hand and turned away.\n\nIt was not difficult to perceive that Florence was at a great\ndisadvantage in her father's presence. It was not only a constraint\nupon the child's mind, but even upon the natural grace and freedom of\nher actions. As she sported and played about her baby brother that\nnight, her manner was seldom so winning and so pretty as it naturally\nwas, and sometimes when in his pacing to and fro, he came near her\n(she had, perhaps, for the moment, forgotten him) it changed upon the\ninstant and became forced and embarrassed.\n\nStill, Polly persevered with all the better heart for seeing this;\nand, judging of Mr Dombey by herself, had great confidence in the mute\nappeal of poor little Florence's mourning dress.' It's hard indeed,'\nthought Polly, 'if he takes only to one little motherless child, when\nhe has another, and that a girl, before his eyes.'\n\nSo, Polly kept her before his eyes, as long as she could, and\nmanaged so well with little Paul, as to make it very plain that he was\nall the livelier for his sister's company. When it was time to\nwithdraw upstairs again, she would have sent Florence into the inner\nroom to say good-night to her father, but the child was timid and drew\nback; and when she urged her again, said, spreading her hands before\nher eyes, as if to shut out her own unworthiness, 'Oh no, no! He don't\nwant me. He don't want me!'\n\nThe little altercation between them had attracted the notice of Mr\nDombey, who inquired from the table where he was sitting at his wine,\nwhat the matter was.\n\n'Miss Florence was afraid of interrupting, Sir, if she came in to\nsay good-night,' said Richards.\n\n'It doesn't matter,' returned Mr Dombey. 'You can let her come and\ngo without regarding me.'\n\nThe child shrunk as she listened - and was gone, before her humble\nfriend looked round again.\n\nHowever, Polly triumphed not a little in the success of her\nwell-intentioned scheme, and in the address with which she had brought\nit to bear: whereof she made a full disclosure to Spitfire when she\nwas once more safely entrenched upstairs. Miss Nipper received that\nproof of her confidence, as well as the prospect of their free\nassociation for the future, rather coldly, and was anything but\nenthusiastic in her demonstrations of joy.\n\n'I thought you would have been pleased,' said Polly.\n\n'Oh yes, Mrs Richards, I'm very well pleased, thank you,' returned\nSusan, who had suddenly become so very upright that she seemed to have\nput an additional bone in her stays.\n\n'You don't show it,' said Polly.\n\n'Oh! Being only a permanency I couldn't be expected to show it like\na temporary,' said Susan Nipper. 'Temporaries carries it all before\n'em here, I find, but though there's a excellent party-wall between\nthis house and the next, I mayn't exactly like to go to it, Mrs\nRichards, notwithstanding!'\n\n\n\nCHAPTER 4.\n\nIn which some more First Appearances are made on the Stage of these\nAdventures\n\n\n\nThough the offices of Dombey and Son were within the liberties of\nthe City of London, and within hearing of Bow Bells, when their\nclashing voices were not drowned by the uproar in the streets, yet\nwere there hints of adventurous and romantic story to be observed in\nsome of the adjacent objects. Gog and Magog held their state within\nten minutes' walk; the Royal Exchange was close at hand; the Bank of\nEngland, with its vaults of gold and silver 'down among the dead men'\nunderground, was their magnificent neighbour. Just round the corner\nstood the rich East India House, teeming with suggestions of precious\nstuffs and stones, tigers, elephants, howdahs, hookahs, umbrellas,\npalm trees, palanquins, and gorgeous princes of a brown complexion\nsitting on carpets, with their slippers very much turned up at the\ntoes. Anywhere in the immediate vicinity there might be seen pictures\nof ships speeding away full sail to all parts of the world; outfitting\nwarehouses ready to pack off anybody anywhere, fully equipped in half\nan hour; and little timber midshipmen in obsolete naval uniforms,\neternally employed outside the shop doors of nautical\nInstrument-makers in taking observations of the hackney carriages.\n\nSole master and proprietor of one of these effigies - of that which\nmight be called, familiar!y, the woodenest - of that which thrust\nitself out above the pavement, right leg foremost, with a suavity the\nleast endurable, and had the shoe buckles and flapped waistcoat the\nleast reconcileable to human reason, and bore at its right eye the\nmost offensively disproportionate piece of machinery - sole master and\nproprietor of that Midshipman, and proud of him too, an elderly\ngentleman in a Welsh wig had paid house-rent, taxes, rates, and dues,\nfor more years than many a full-grown midshipman of flesh and blood\nhas numbered in his life; and midshipmen who have attained a pretty\ngreen old age, have not been wanting in the English Navy.\n\nThe stock-in-trade of this old gentleman comprised chronometers,\nbarometers, telescopes, compasses, charts, maps, sextants, quadrants,\nand specimens of every kind of instrument used in the working of a\nship's course, or the keeping of a ship's reckoning, or the\nprosecuting of a ship's discoveries. Objects in brass and glass were\nin his drawers and on his shelves, which none but the initiated could\nhave found the top of, or guessed the use of, or having once examined,\ncould have ever got back again into their mahogany nests without\nassistance. Everything was jammed into the tightest cases, fitted into\nthe narrowest corners, fenced up behind the most impertinent cushions,\nand screwed into the acutest angles, to prevent its philosophical\ncomposure from being disturbed by the rolling of the sea. Such\nextraordinary precautions were taken in every instance to save room,\nand keep the thing compact; and so much practical navigation was\nfitted, and cushioned, and screwed into every box (whether the box was\na mere slab, as some were, or something between a cocked hat and a\nstar-fish, as others were, and those quite mild and modest boxes as\ncompared with others); that the shop itself, partaking of the general\ninfection, seemed almost to become a snug, sea-going, ship-shape\nconcern, wanting only good sea-room, in the event of an unexpected\nlaunch, to work its way securely to any desert island in the world.\n\nMany minor incidents in the household life of the Ships'\n\nInstrument-maker who was proud of his little Midshipman, assisted\nand bore out this fancy. His acquaintance lying chiefly among\nship-chandlers and so forth, he had always plenty of the veritable\nships' biscuit on his table. It was familiar with dried meats and\ntongues, possessing an extraordinary flavour of rope yarn. Pickles\nwere produced upon it, in great wholesale jars, with 'dealer in all\nkinds of Ships' Provisions' on the label; spirits were set forth in\ncase bottles with no throats. Old prints of ships with alphabetical\nreferences to their various mysteries, hung in frames upon the walls;\nthe Tartar Frigate under weigh, was on the plates; outlandish shells,\nseaweeds, and mosses, decorated the chimney-piece; the little\nwainscotted back parlour was lighted by a sky-light, like a cabin.\n\nHere he lived too, in skipper-like state, all alone with his nephew\nWalter: a boy of fourteen who looked quite enough like a midshipman,\nto carry out the prevailing idea. But there it ended, for Solomon\nGills himself (more generally called old Sol) was far from having a\nmaritime appearance. To say nothing of his Welsh wig, which was as\nplain and stubborn a Welsh wig as ever was worn, and in which he\nlooked like anything but a Rover, he was a slow, quiet-spoken,\nthoughtful old fellow, with eyes as red as if they had been small suns\nlooking at you through a fog; and a newly-awakened manner, such as he\nmight have acquired by having stared for three or four days\nsuccessively through every optical instrument in his shop, and\nsuddenly came back to the world again, to find it green. The only\nchange ever known in his outward man, was from a complete suit of\ncoffee-colour cut very square, and ornamented with glaring buttons, to\nthe same suit of coffee-colour minus the inexpressibles, which were\nthen of a pale nankeen. He wore a very precise shirt-frill, and\ncarried a pair of first-rate spectacles on his forehead, and a\ntremendous chronometer in his fob, rather than doubt which precious\npossession, he would have believed in a conspiracy against it on part\nof all the clocks and watches in the City, and even of the very Sun\nitself. Such as he was, such he had been in the shop and parlour\nbehind the little Midshipman, for years upon years; going regularly\naloft to bed every night in a howling garret remote from the lodgers,\nwhere, when gentlemen of England who lived below at ease had little or\nno idea of the state of the weather, it often blew great guns.\n\nIt is half-past five o'clock, and an autumn afternoon, when the\nreader and Solomon Gills become acquainted. Solomon Gills is in the\nact of seeing what time it is by the unimpeachable chronometer. The\nusual daily clearance has been making in the City for an hour or more;\nand the human tide is still rolling westward. 'The streets have\nthinned,' as Mr Gills says, 'very much.' It threatens to be wet\nto-night. All the weatherglasses in the shop are in low spirits, and\nthe rain already shines upon the cocked hat of the wooden Midshipman.\n\n'Where's Walter, I wonder!' said Solomon Gills, after he had\ncarefully put up the chronometer again. 'Here's dinner been ready,\nhalf an hour, and no Walter!'\n\nTurning round upon his stool behind the counter, Mr Gills looked\nout among the instruments in the window, to see if his nephew might be\ncrossing the road. No. He was not among the bobbing umbrellas, and he\ncertainly was not the newspaper boy in the oilskin cap who was slowly\nworking his way along the piece of brass outside, writing his name\nover Mr Gills's name with his forefinger.\n\n'If I didn't know he was too fond of me to make a run of it, and go\nand enter himself aboard ship against my wishes, I should begin to be\nfidgetty,' said Mr Gills, tapping two or three weather-glasses with\nhis knuckles. 'I really should. All in the Downs, eh! Lots of\nmoisture! Well! it's wanted.'\n\nI believe,' said Mr Gills, blowing the dust off the glass top of a\ncompass-case, 'that you don't point more direct and due to the back\nparlour than the boy's inclination does after all. And the parlour\ncouldn't bear straighter either. Due north. Not the twentieth part of\na point either way.'\n\n'Halloa, Uncle Sol!'\n\n'Halloa, my boy!' cried the Instrument-maker, turning briskly\nround. 'What! you are here, are you?'\n\nA cheerful looking, merry boy, fresh with running home in the rain;\nfair-faced, bright-eyed, and curly-haired.\n\n'Well, Uncle, how have you got on without me all day? Is dinner\nready? I'm so hungry.'\n\n'As to getting on,' said Solomon good-naturedly, 'it would be odd\nif I couldn't get on without a young dog like you a great deal better\nthan with you. As to dinner being ready, it's been ready this half\nhour and waiting for you. As to being hungry, I am!'\n\n'Come along then, Uncle!' cried the boy. 'Hurrah for the admiral!'\n\n'Confound the admiral!' returned Solomon Gills. 'You mean the Lord\nMayor.'\n\n'No I don't!' cried the boy. 'Hurrah for the admiral! Hurrah for\nthe admiral! For-ward!'\n\nAt this word of command, the Welsh wig and its wearer were borne\nwithout resistance into the back parlour, as at the head of a boarding\nparty of five hundred men; and Uncle Sol and his nephew were speedily\nengaged on a fried sole with a prospect of steak to follow.\n\n'The Lord Mayor, Wally,' said Solomon, 'for ever! No more admirals.\nThe Lord Mayor's your admiral.'\n\n'Oh, is he though!' said the boy, shaking his head. 'Why, the Sword\nBearer's better than him. He draws his sword sometimes.\n\n'And a pretty figure he cuts with it for his pains,' returned the\nUncle. 'Listen to me, Wally, listen to me. Look on the mantelshelf.'\n\n'Why who has cocked my silver mug up there, on a nail?' exclaimed\nthe boy.\n\nI have,' said his Uncle. 'No more mugs now. We must begin to drink\nout of glasses to-day, Walter. We are men of business. We belong to\nthe City. We started in life this morning.\n\n'Well, Uncle,' said the boy, 'I'll drink out of anything you like,\nso long as I can drink to you. Here's to you, Uncle Sol, and Hurrah\nfor the\n\n'Lord Mayor,' interrupted the old man.\n\n'For the Lord Mayor, Sheriffs, Common Council, and Livery,' said\nthe boy. 'Long life to 'em!'\n\nThe uncle nodded his head with great satisfaction. 'And now,' he\nsaid, 'let's hear something about the Firm.'\n\n'Oh! there's not much to be told about the Firm, Uncle,' said the\nboy, plying his knife and fork.' It's a precious dark set of offices,\nand in the room where I sit, there's a high fender, and an iron safe,\nand some cards about ships that are going to sail, and an almanack,\nand some desks and stools, and an inkbottle, and some books, and some\nboxes, and a lot of cobwebs, and in one of 'em, just over my head, a\nshrivelled-up blue-bottle that looks as if it had hung there ever so\nlong.'\n\n'Nothing else?' said the Uncle.\n\n'No, nothing else, except an old birdcage (I wonder how that ever\ncame there!) and a coal-scuttle.'\n\n'No bankers' books, or cheque books, or bills, or such tokens of\nwealth rolling in from day to day?' said old Sol, looking wistfully at\nhis nephew out of the fog that always seemed to hang about him, and\nlaying an unctuous emphasis upon the words.\n\n'Oh yes, plenty of that I suppose,' returned his nephew carelessly;\n'but all that sort of thing's in Mr Carker's room, or Mr Morfin's, or\nMR Dombey's.'\n\n'Has Mr Dombey been there to-day?' inquired the Uncle.\n\n'Oh yes! In and out all day.'\n\n'He didn't take any notice of you, I suppose?'.\n\n'Yes he did. He walked up to my seat, - I wish he wasn't so solemn\nand stiff, Uncle, - and said, \"Oh! you are the son of Mr Gills the\nShips' Instrument-maker.\" \"Nephew, Sir,\" I said. \"I said nephew, boy,\"\nsaid he. But I could take my oath he said son, Uncle.'\n\n'You're mistaken I daresay. It's no matter.\n\n'No, it's no matter, but he needn't have been so sharp, I thought.\nThere was no harm in it though he did say son. Then he told me that\nyou had spoken to him about me, and that he had found me employment in\nthe House accordingly, and that I was expected to be attentive and\npunctual, and then he went away. I thought he didn't seem to like me\nmuch.'\n\n'You mean, I suppose,' observed the Instrument-maker, 'that you\ndidn't seem to like him much?'\n\n'Well, Uncle,' returned the boy, laughing. 'Perhaps so; I never\nthought of that.'\n\nSolomon looked a little graver as he finished his dinner, and\nglanced from time to time at the boy's bright face. When dinner was\ndone, and the cloth was cleared away (the entertainment had been\nbrought from a neighbouring eating-house), he lighted a candle, and\nwent down below into a little cellar, while his nephew, standing on\nthe mouldy staircase, dutifully held the light. After a moment's\ngroping here and there, he presently returned with a very\nancient-looking bottle, covered with dust and dirt.\n\n'Why, Uncle Sol!' said the boy, 'what are you about? that's the\nwonderful Madeira! - there's only one more bottle!'\n\nUncle Sol nodded his head, implying that he knew very well what he\nwas about; and having drawn the cork in solemn silence, filled two\nglasses and set the bottle and a third clean glass on the table.\n\n'You shall drink the other bottle, Wally,' he said, 'when you come\nto good fortune; when you are a thriving, respected, happy man; when\nthe start in life you have made to-day shall have brought you, as I\npray Heaven it may! - to a smooth part of the course you have to run,\nmy child. My love to you!'\n\nSome of the fog that hung about old Sol seemed to have got into his\nthroat; for he spoke huskily. His hand shook too, as he clinked his\nglass against his nephew's. But having once got the wine to his lips,\nhe tossed it off like a man, and smacked them afterwards.\n\n'Dear Uncle,' said the boy, affecting to make light of it, while\nthe tears stood in his eyes, 'for the honour you have done me, et\ncetera, et cetera. I shall now beg to propose Mr Solomon Gills with\nthree times three and one cheer more. Hurrah! and you'll return\nthanks, Uncle, when we drink the last bottle together; won't you?'\n\nThey clinked their glasses again; and Walter, who was hoarding his\nwine, took a sip of it, and held the glass up to his eye with as\ncritical an air as he could possibly assume.\n\nHis Uncle sat looking at him for some time in silence. When their\neyes at last met, he began at once to pursue the theme that had\noccupied his thoughts, aloud, as if he had been speaking all the time.\n\n'You see, Walter,' he said, 'in truth this business is merely a\nhabit with me. I am so accustomed to the habit that I could hardly\nlive if I relinquished it: but there's nothing doing, nothing doing.\nWhen that uniform was worn,' pointing out towards the little\nMidshipman, 'then indeed, fortunes were to be made, and were made. But\ncompetition, competition - new invention, new invention - alteration,\nalteration - the world's gone past me. I hardly know where I am\nmyself, much less where my customers are.\n\n'Never mind 'em, Uncle!'\n\n'Since you came home from weekly boarding-school at Peckham, for\ninstance - and that's ten days,' said Solomon, 'I don't remember more\nthan one person that has come into the shop.'\n\n'Two, Uncle, don't you recollect? There was the man who came to ask\nfor change for a sovereign - '\n\n'That's the one,' said Solomon.\n\n'Why Uncle! don't you call the woman anybody, who came to ask the\nway to Mile-End Turnpike?'\n\n'Oh! it's true,' said Solomon, 'I forgot her. Two persons.'\n\n'To be sure, they didn't buy anything,' cried the boy.\n\n'No. They didn't buy anything,' said Solomon, quietly.\n\n'Nor want anything,' cried the boy.\n\n'No. If they had, they'd gone to another shop,' said Solomon, in\nthe same tone.\n\n'But there were two of 'em, Uncle,' cried the boy, as if that were\na great triumph. 'You said only one.'\n\n'Well, Wally,' resumed the old man, after a short pause: 'not being\nlike the Savages who came on Robinson Crusoe's Island, we can't live\non a man who asks for change for a sovereign, and a woman who inquires\nthe way to Mile-End Turnpike. As I said just now, the world has gone\npast me. I don't blame it; but I no longer understand it. Tradesmen\nare not the same as they used to be, apprentices are not the same,\nbusiness is not the same, business commodities are not the same.\nSeven-eighths of my stock is old-fashioned. I am an old-fashioned man\nin an old-fashioned shop, in a street that is not the same as I\nremember it. I have fallen behind the time, and am too old to catch it\nagain. Even the noise it makes a long way ahead, confuses me.'\n\nWalter was going to speak, but his Uncle held up his hand.\n\n'Therefore, Wally - therefore it is that I am anxious you should be\nearly in the busy world, and on the world's track. I am only the ghost\nof this business - its substance vanished long ago; and when I die,\nits ghost will be laid. As it is clearly no inheritance for you then,\nI have thought it best to use for your advantage, almost the only\nfragment of the old connexion that stands by me, through long habit.\nSome people suppose me to be wealthy. I wish for your sake they were\nright. But whatever I leave behind me, or whatever I can give you, you\nin such a House as Dombey's are in the road to use well and make the\nmost of. Be diligent, try to like it, my dear boy, work for a steady\nindependence, and be happy!'\n\n'I'll do everything I can, Uncle, to deserve your affection. Indeed\nI will,' said the boy, earnestly\n\n'I know it,' said Solomon. 'I am sure of it,' and he applied\nhimself to a second glass of the old Madeira, with increased relish.\n'As to the Sea,' he pursued, 'that's well enough in fiction, Wally,\nbut it won't do in fact: it won't do at all. It's natural enough that\nyou should think about it, associating it with all these familiar\nthings; but it won't do, it won't do.'\n\nSolomon Gills rubbed his hands with an air of stealthy enjoyment,\nas he talked of the sea, though; and looked on the seafaring objects\nabout him with inexpressible complacency.\n\n'Think of this wine for instance,' said old Sol, 'which has been to\nthe East Indies and back, I'm not able to say how often, and has been\nonce round the world. Think of the pitch-dark nights, the roaring\nwinds, and rolling seas:'\n\n'The thunder, lightning, rain, hail, storm of all kinds,' said the\nboy.\n\n'To be sure,' said Solomon, - 'that this wine has passed through.\nThink what a straining and creaking of timbers and masts: what a\nwhistling and howling of the gale through ropes and rigging:'\n\n'What a clambering aloft of men, vying with each other who shall\nlie out first upon the yards to furl the icy sails, while the ship\nrolls and pitches, like mad!' cried his nephew.\n\n'Exactly so,' said Solomon: 'has gone on, over the old cask that\nheld this wine. Why, when the Charming Sally went down in the - '\n\n'In the Baltic Sea, in the dead of night; five-and-twenty minutes\npast twelve when the captain's watch stopped in his pocket; he lying\ndead against the main-mast - on the fourteenth of February, seventeen\nforty-nine!' cried Walter, with great animation.\n\n'Ay, to be sure!' cried old Sol, 'quite right! Then, there were\nfive hundred casks of such wine aboard; and all hands (except the\nfirst mate, first lieutenant, two seamen, and a lady, in a leaky boat)\ngoing to work to stave the casks, got drunk and died drunk, singing\n\"Rule Britannia\", when she settled and went down, and ending with one\nawful scream in chorus.'\n\n'But when the George the Second drove ashore, Uncle, on the coast\nof Cornwall, in a dismal gale, two hours before daybreak, on the\nfourth of March, 'seventy-one, she had near two hundred horses aboard;\nand the horses breaking loose down below, early in the gale, and\ntearing to and fro, and trampling each other to death, made such\nnoises, and set up such human cries, that the crew believing the ship\nto be full of devils, some of the best men, losing heart and head,\nwent overboard in despair, and only two were left alive, at last, to\ntell the tale.'\n\n'And when,' said old Sol, 'when the Polyphemus - '\n\n'Private West India Trader, burden three hundred and fifty tons,\nCaptain, John Brown of Deptford. Owners, Wiggs and Co.,' cried Walter.\n\n'The same,' said Sol; 'when she took fire, four days' sail with a\nfair wind out of Jamaica Harbour, in the night - '\n\n'There were two brothers on board,' interposed his nephew, speaking\nvery fast and loud, 'and there not being room for both of them in the\nonly boat that wasn't swamped, neither of them would consent to go,\nuntil the elder took the younger by the waist, and flung him in. And\nthen the younger, rising in the boat, cried out, \"Dear Edward, think\nof your promised wife at home. I'm only a boy. No one waits at home\nfor me. Leap down into my place!\" and flung himself in the sea!'\n\nThe kindling eye and heightened colour of the boy, who had risen\nfrom his seat in the earnestness of what he said and felt, seemed to\nremind old Sol of something he had forgotten, or that his encircling\nmist had hitherto shut out. Instead of proceeding with any more\nanecdotes, as he had evidently intended but a moment before, he gave a\nshort dry cough, and said, 'Well! suppose we change the subject.'\n\nThe truth was, that the simple-minded Uncle in his secret\nattraction towards the marvellous and adventurous - of which he was,\nin some sort, a distant relation, by his trade - had greatly\nencouraged the same attraction in the nephew; and that everything that\nhad ever been put before the boy to deter him from a life of\nadventure, had had the usual unaccountable effect of sharpening his\ntaste for it. This is invariable. It would seem as if there never was\na book written, or a story told, expressly with the object of keeping\nboys on shore, which did not lure and charm them to the ocean, as a\nmatter of course.\n\nBut an addition to the little party now made its appearance, in the\nshape of a gentleman in a wide suit of blue, with a hook instead of a\nhand attached to his right wrist; very bushy black eyebrows; and a\nthick stick in his left hand, covered all over (like his nose) with\nknobs. He wore a loose black silk handkerchief round his neck, and\nsuch a very large coarse shirt collar, that it looked like a small\nsail. He was evidently the person for whom the spare wine-glass was\nintended, and evidently knew it; for having taken off his rough outer\ncoat, and hung up, on a particular peg behind the door, such a hard\nglazed hat as a sympathetic person's head might ache at the sight of,\nand which left a red rim round his own forehead as if he had been\nwearing a tight basin, he brought a chair to where the clean glass\nwas, and sat himself down behind it. He was usually addressed as\nCaptain, this visitor; and had been a pilot, or a skipper, or a\nprivateersman, or all three perhaps; and was a very salt-looking man\nindeed.\n\nHis face, remarkable for a brown solidity, brightened as he shook\nhands with Uncle and nephew; but he seemed to be of a laconic\ndisposition, and merely said:\n\n'How goes it?'\n\n'All well,' said Mr Gills, pushing the bottle towards him.\n\nHe took it up, and having surveyed and smelt it, said with\nextraordinary expression:\n\n'The?'\n\n'The,' returned the Instrument-maker.\n\nUpon that he whistled as he filled his glass, and seemed to think\nthey were making holiday indeed.\n\n'Wal'r!' he said, arranging his hair (which was thin) with his\nhook, and then pointing it at the Instrument-maker, 'Look at him!\nLove! Honour! And Obey! Overhaul your catechism till you find that\npassage, and when found turn the leaf down. Success, my boy!'\n\nHe was so perfectly satisfied both with his quotation and his\nreference to it, that he could not help repeating the words again in a\nlow voice, and saying he had forgotten 'em these forty year.\n\n'But I never wanted two or three words in my life that I didn't\nknow where to lay my hand upon 'em, Gills,' he observed. 'It comes of\nnot wasting language as some do.'\n\nThe reflection perhaps reminded him that he had better, like young\nNorval's father, '\"ncrease his store.\" At any rate he became silent,\nand remained so, until old Sol went out into the shop to light it up,\nwhen he turned to Walter, and said, without any introductory remark:\n\n'I suppose he could make a clock if he tried?'\n\n'I shouldn't wonder, Captain Cuttle,' returned the boy.\n\n'And it would go!' said Captain Cuttle, making a species of serpent\nin the air with his hook. 'Lord, how that clock would go!'\n\nFor a moment or two he seemed quite lost in contemplating the pace\nof this ideal timepiece, and sat looking at the boy as if his face\nwere the dial.\n\n'But he's chockful of science,' he observed, waving his hook\ntowards the stock-in-trade. 'Look'ye here! Here's a collection of 'em.\nEarth, air, or water. It's all one. Only say where you'll have it. Up\nin a balloon? There you are. Down in a bell? There you are. D'ye want\nto put the North Star in a pair of scales and weigh it? He'll do it\nfor you.'\n\nIt may be gathered from these remarks that Captain Cuttle's\nreverence for the stock of instruments was profound, and that his\nphilosophy knew little or no distinction between trading in it and\ninventing it.\n\n'Ah!' he said, with a sigh, 'it's a fine thing to understand 'em.\nAnd yet it's a fine thing not to understand 'em. I hardly know which\nis best. It's so comfortable to sit here and feel that you might be\nweighed, measured, magnified, electrified, polarized, played the very\ndevil with: and never know how.'\n\nNothing short of the wonderful Madeira, combined with the occasion\n(which rendered it desirable to improve and expand Walter's mind),\ncould have ever loosened his tongue to the extent of giving utterance\nto this prodigious oration. He seemed quite amazed himself at the\nmanner in which it opened up to view the sources of the taciturn\ndelight he had had in eating Sunday dinners in that parlour for ten\nyears. Becoming a sadder and a wiser man, he mused and held his peace.\n\n'Come!' cried the subject of this admiration, returning. 'Before\nyou have your glass of grog, Ned, we must finish the bottle.'\n\n'Stand by!' said Ned, filling his glass. 'Give the boy some more.'\n\n'No more, thank'e, Uncle!'\n\n'Yes, yes,' said Sol, 'a little more. We'll finish the bottle, to\nthe House, Ned - Walter's House. Why it may be his House one of these\ndays, in part. Who knows? Sir Richard Whittington married his master's\ndaughter.'\n\n'\"Turn again Whittington, Lord Mayor of London, and when you are\nold you will never depart from it,\"' interposed the Captain. 'Wal'r!\nOverhaul the book, my lad.'\n\n'And although Mr Dombey hasn't a daughter,' Sol began.\n\n'Yes, yes, he has, Uncle,' said the boy, reddening and laughing.\n\n'Has he?' cried the old man. 'Indeed I think he has too.\n\n'Oh! I know he has,' said the boy. 'Some of 'em were talking about\nit in the office today. And they do say, Uncle and Captain Cuttle,'\nlowering his voice, 'that he's taken a dislike to her, and that she's\nleft, unnoticed, among the servants, and that his mind's so set all\nthe while upon having his son in the House, that although he's only a\nbaby now, he is going to have balances struck oftener than formerly,\nand the books kept closer than they used to be, and has even been seen\n(when he thought he wasn't) walking in the Docks, looking at his ships\nand property and all that, as if he was exulting like, over what he\nand his son will possess together. That's what they say. Of course, I\ndon't know.\n\n'He knows all about her already, you see,' said the\ninstrument-maker.\n\n'Nonsense, Uncle,' cried the boy, still reddening and laughing,\nboy-like. 'How can I help hearing what they tell me?'\n\n'The Son's a little in our way at present, I'm afraid, Ned,' said\nthe old man, humouring the joke.\n\n'Very much,' said the Captain.\n\n'Nevertheless, we'll drink him,' pursued Sol. 'So, here's to Dombey\nand Son.'\n\n'Oh, very well, Uncle,' said the boy, merrily. 'Since you have\nintroduced the mention of her, and have connected me with her and have\nsaid that I know all about her, I shall make bold to amend the toast.\nSo here's to Dombey - and Son - and Daughter!'\n\n\n\nCHAPTER 5.\n\nPaul's Progress and Christening\n\n\n\nLittle Paul, suffering no contamination from the blood of the\nToodles, grew stouter and stronger every day. Every day, too, he was\nmore and more ardently cherished by Miss Tox, whose devotion was so\nfar appreciated by Mr Dombey that he began to regard her as a woman of\ngreat natural good sense, whose feelings did her credit and deserved\nencouragement. He was so lavish of this condescension, that he not\nonly bowed to her, in a particular manner, on several occasions, but\neven entrusted such stately recognitions of her to his sister as 'pray\ntell your friend, Louisa, that she is very good,' or 'mention to Miss\nTox, Louisa, that I am obliged to her;'specialities which made a deep\nimpression on the lady thus distinguished.\n\nWhether Miss Tox conceived that having been selected by the Fates\nto welcome the little Dombey before he was born, in Kirby, Beard and\nKirby's Best Mixed Pins, it therefore naturally devolved upon her to\ngreet him with all other forms of welcome in all other early stages of\nhis existence - or whether her overflowing goodness induced her to\nvolunteer into the domestic militia as a substitute in some sort for\nhis deceased Mama - or whether she was conscious of any other motives\n- are questions which in this stage of the Firm's history herself only\ncould have solved. Nor have they much bearing on the fact (of which\nthere is no doubt), that Miss Tox's constancy and zeal were a heavy\ndiscouragement to Richards, who lost flesh hourly under her patronage,\nand was in some danger of being superintended to death.\n\nMiss Tox was often in the habit of assuring Mrs Chick, that nothing\ncould exceed her interest in all connected with the development of\nthat sweet child;' and an observer of Miss Tox's proceedings might\nhave inferred so much without declaratory confirmation. She would\npreside over the innocent repasts of the young heir, with ineffable\nsatisfaction, almost with an air of joint proprietorship with Richards\nin the entertainment. At the little ceremonies of the bath and\ntoilette, she assisted with enthusiasm. The administration of\ninfantine doses of physic awakened all the active sympathy of her\ncharacter; and being on one occasion secreted in a cupboard (whither\nshe had fled in modesty), when Mr Dombey was introduced into the\nnursery by his sister, to behold his son, in the course of preparation\nfor bed, taking a short walk uphill over Richards's gown, in a short\nand airy linen jacket, Miss Tox was so transported beyond the ignorant\npresent as to be unable to refrain from crying out, 'Is he not\nbeautiful Mr Dombey! Is he not a Cupid, Sir!' and then almost sinking\nbehind the closet door with confusion and blushes.\n\n'Louisa,' said Mr Dombey, one day, to his sister, 'I really think I\nmust present your friend with some little token, on the occasion of\nPaul's christening. She has exerted herself so warmly in the child's\nbehalf from the first, and seems to understand her position so\nthoroughly (a very rare merit in this world, I am sorry to say), that\nit would really be agreeable to me to notice her.'\n\nLet it be no detraction from the merits of Miss Tox, to hint that\nin Mr Dombey's eyes, as in some others that occasionally see the\nlight, they only achieved that mighty piece of knowledge, the\nunderstanding of their own position, who showed a fitting reverence\nfor his. It was not so much their merit that they knew themselves, as\nthat they knew him, and bowed low before him.\n\n'My dear Paul,' returned his sister, 'you do Miss Tox but justice,\nas a man of your penetration was sure, I knew, to do. I believe if\nthere are three words in the English language for which she has a\nrespect amounting almost to veneration, those words are, Dombey and\nSon.'\n\n'Well,' said Mr Dombey, 'I believe it. It does Miss Tox credit.'\n\n'And as to anything in the shape of a token, my dear Paul,' pursued\nhis sister, 'all I can say is that anything you give Miss Tox will be\nhoarded and prized, I am sure, like a relic. But there is a way, my\ndear Paul, of showing your sense of Miss Tox's friendliness in a still\nmore flattering and acceptable manner, if you should be so inclined.'\n\n'How is that?' asked Mr Dombey.\n\n'Godfathers, of course,' continued Mrs Chick, 'are important in\npoint of connexion and influence.'\n\n'I don't know why they should be, to my son, said Mr Dombey,\ncoldly.\n\n'Very true, my dear Paul,' retorted Mrs Chick, with an\nextraordinary show of animation, to cover the suddenness of her\nconversion; 'and spoken like yourself. I might have expected nothing\nelse from you. I might have known that such would have been your\nopinion. Perhaps;' here Mrs Chick faltered again, as not quite\ncomfortably feeling her way; 'perhaps that is a reason why you might\nhave the less objection to allowing Miss Tox to be godmother to the\ndear thing, if it were only as deputy and proxy for someone else. That\nit would be received as a great honour and distinction, Paul, I need\nnot say.\n\n'Louisa,' said Mr Dombey, after a short pause, 'it is not to be\nsupposed - '\n\n'Certainly not,' cried Mrs Chick, hastening to anticipate a\nrefusal, 'I never thought it was.'\n\nMr Dombey looked at her impatiently.\n\n'Don't flurry me, my dear Paul,' said his sister; 'for that\ndestroys me. I am far from strong. I have not been quite myself, since\npoor dear Fanny departed.'\n\nMr Dombey glanced at the pocket-handkerchief which his sister\napplied to her eyes, and resumed:\n\n'It is not be supposed, I say 'And I say,' murmured Mrs Chick,\n'that I never thought it was.'\n\n'Good Heaven, Louisa!' said Mr Dombey.\n\n'No, my dear Paul,' she remonstrated with tearful dignity, 'I must\nreally be allowed to speak. I am not so clever, or so reasoning, or so\neloquent, or so anything, as you are. I know that very well. So much\nthe worse for me. But if they were the last words I had to utter - and\nlast words should be very solemn to you and me, Paul, after poor dear\nFanny - I would still say I never thought it was. And what is more,'\nadded Mrs Chick with increased dignity, as if she had withheld her\ncrushing argument until now, 'I never did think it was.' Mr Dombey\nwalked to the window and back again.\n\n'It is not to be supposed, Louisa,' he said (Mrs Chick had nailed\nher colours to the mast, and repeated 'I know it isn't,' but he took\nno notice of it), 'but that there are many persons who, supposing that\nI recognised any claim at all in such a case, have a claim upon me\nsuperior to Miss Tox's. But I do not. I recognise no such thing. Paul\nand myself will be able, when the time comes, to hold our own - the\nHouse, in other words, will be able to hold its own, and maintain its\nown, and hand down its own of itself, and without any such\ncommon-place aids. The kind of foreign help which people usually seek\nfor their children, I can afford to despise; being above it, I hope.\nSo that Paul's infancy and childhood pass away well, and I see him\nbecoming qualified without waste of time for the career on which he is\ndestined to enter, I am satisfied. He will make what powerful friends\nhe pleases in after-life, when he is actively maintaining - and\nextending, if that is possible - the dignity and credit of the Firm.\nUntil then, I am enough for him, perhaps, and all in all. I have no\nwish that people should step in between us. I would much rather show\nmy sense of the obliging conduct of a deserving person like your\nfriend. Therefore let it be so; and your husband and myself will do\nwell enough for the other sponsors, I daresay.'\n\nIn the course of these remarks, delivered with great majesty and\ngrandeur, Mr Dombey had truly revealed the secret feelings of his\nbreast. An indescribable distrust of anybody stepping in between\nhimself and his son; a haughty dread of having any rival or partner in\nthe boy's respect and deference; a sharp misgiving, recently acquired,\nthat he was not infallible in his power of bending and binding human\nwills; as sharp a jealousy of any second check or cross; these were,\nat that time the master keys of his soul. In all his life, he had\nnever made a friend. His cold and distant nature had neither sought\none, nor found one. And now, when that nature concentrated its whole\nforce so strongly on a partial scheme of parental interest and\nambition, it seemed as if its icy current, instead of being released\nby this influence, and running clear and free, had thawed for but an\ninstant to admit its burden, and then frozen with it into one\nunyielding block.\n\nElevated thus to the godmothership of little Paul, in virtue of her\ninsignificance, Miss Tox was from that hour chosen and appointed to\noffice; and Mr Dombey further signified his pleasure that the\nceremony, already long delayed, should take place without further\npostponement. His sister, who had been far from anticipating so signal\na success, withdrew as soon as she could, to communicate it to her\nbest of friends; and Mr Dombey was left alone in his library. He had\nalready laid his hand upon the bellrope to convey his usual summons to\nRichards, when his eye fell upon a writing-desk, belonging to his\ndeceased wife, which had been taken, among other things, from a\ncabinet in her chamber. It was not the first time that his eye had\nlighted on it He carried the key in his pocket; and he brought it to\nhis table and opened it now - having previously locked the room door -\nwith a well-accustomed hand.\n\nFrom beneath a leaf of torn and cancelled scraps of paper, he took\none letter that remained entire. Involuntarily holding his breath as\nhe opened this document, and 'bating in the stealthy action something\nof his arrogant demeanour, he s at down, resting his head upon one\nhand, and read it through.\n\nHe read it slowly and attentively, and with a nice particularity to\nevery syllable. Otherwise than as his great deliberation seemed\nunnatural, and perhaps the result of an effort equally great, he\nallowed no sign of emotion to escape him. When he had read it through,\nhe folded and refolded it slowly several times, and tore it carefully\ninto fragments. Checking his hand in the act of throwing these away,\nhe put them in his pocket, as if unwilling to trust them even to the\nchances of being re-united and deciphered; and instead of ringing, as\nusual, for little Paul, he sat solitary, all the evening, in his\ncheerless room.\n\nThere was anything but solitude in the nursery; for there, Mrs\nChick and Miss Tox were enjoying a social evening, so much to the\ndisgust of Miss Susan Nipper, that that young lady embraced every\nopportunity of making wry faces behind the door. Her feelings were so\nmuch excited on the occasion, that she found it indispensable to\nafford them this relief, even without having the comfort of any\naudience or sympathy whatever. As the knight-errants of old relieved\ntheir minds by carving their mistress's names in deserts, and\nwildernesses, and other savage places where there was no probability\nof there ever being anybody to read them, so did Miss Susan Nipper\ncurl her snub nose into drawers and wardrobes, put away winks of\ndisparagement in cupboards, shed derisive squints into stone pitchers,\nand contradict and call names out in the passage.\n\nThe two interlopers, however, blissfully unconscious of the young\nlady's sentiments, saw little Paul safe through all the stages of\nundressing, airy exercise, supper and bed; and then sat down to tea\nbefore the fire. The two children now lay, through the good offices of\nPolly, in one room; and it was not until the ladies were established\nat their tea-table that, happening to look towards the little beds,\nthey thought of Florence.\n\n'How sound she sleeps!' said Miss Tox.\n\n'Why, you know, my dear, she takes a great deal of exercise in the\ncourse of the day,' returned Mrs Chick, 'playing about little Paul so\nmuch.'\n\n'She is a curious child,' said Miss Tox.\n\n'My dear,' retorted Mrs Chick, in a low voice: 'Her Mama, all\nover!'\n\n'In deed!' said Miss Tox. 'Ah dear me!'\n\nA tone of most extraordinary compassion Miss Tox said it in, though\nshe had no distinct idea why, except that it was expected of her.\n\n'Florence will never, never, never be a Dombey,'said Mrs Chick,\n'not if she lives to be a thousand years old.'\n\nMiss Tox elevated her eyebrows, and was again full of\n\ncommiseration.\n\n'I quite fret and worry myself about her,' said Mrs Chick, with a\nsigh of modest merit. 'I really don't see what is to become of her\nwhen she grows older, or what position she is to take. She don't gain\non her Papa in the least. How can one expect she should, when she is\nso very unlike a Dombey?'\n\nMiss Tox looked as if she saw no way out of such a cogent argument\nas that, at all.\n\n'And the child, you see,' said Mrs Chick, in deep confidence, 'has\npoor dear Fanny's nature. She'll never make an effort in after-life,\nI'll venture to say. Never! She'll never wind and twine herself about\nher Papa's heart like - '\n\n'Like the ivy?' suggested Miss Tox.\n\n'Like the ivy,' Mrs Chick assented. 'Never! She'll never glide and\nnestle into the bosom of her Papa's affections like - the - '\n\n'Startled fawn?' suggested Miss Tox.\n\n'Like the startled fawn,' said Mrs Chick. 'Never! Poor Fanny! Yet,\nhow I loved her!'\n\n'You must not distress yourself, my dear,' said Miss Tox, in a\nsoothing voice. 'Now really! You have too much feeling.'\n\n'We have all our faults,' said Mrs Chick, weeping and shaking her\nhead. 'I daresay we have. I never was blind to hers. I never said I\nwas. Far from it. Yet how I loved her!'\n\nWhat a satisfaction it was to Mrs Chick - a common-place piece of\nfolly enough, compared with whom her sister-in-law had been a very\nangel of womanly intelligence and gentleness - to patronise and be\ntender to the memory of that lady: in exact pursuance of her conduct\nto her in her lifetime: and to thoroughly believe herself, and take\nherself in, and make herself uncommonly comfortable on the strength of\nher toleration! What a mighty pleasant virtue toleration should be\nwhen we are right, to be so very pleasant when we are wrong, and quite\nunable to demonstrate how we come to be invested with the privilege of\nexercising it!\n\nMrs Chick was yet drying her eyes and shaking her head, when\nRichards made bold to caution her that Miss Florence was awake and\nsitting in her bed. She had risen, as the nurse said, and the lashes\nof her eyes were wet with tears. But no one saw them glistening save\nPolly. No one else leant over her, and whispered soothing words to\nher, or was near enough to hear the flutter of her beating heart.\n\n'Oh! dear nurse!' said the child, looking earnestly up in her face,\n'let me lie by my brother!'\n\n'Why, my pet?' said Richards.\n\n'Oh! I think he loves me,' cried the child wildly. 'Let me lie by\nhim. Pray do!'\n\nMrs Chick interposed with some motherly words about going to sleep\nlike a dear, but Florence repeated her supplication, with a frightened\nlook, and in a voice broken by sobs and tears.\n\n'I'll not wake him,' she said, covering her face and hanging down\nher head. 'I'll only touch him with my hand, and go to sleep. Oh,\npray, pray, let me lie by my brother to-night, for I believe he's fond\nof me!'\n\nRichards took her without a word, and carrying her to the little\nbed in which the infant was sleeping, laid her down by his side. She\ncrept as near him as she could without disturbing his rest; and\nstretching out one arm so that it timidly embraced his neck, and\nhiding her face on the other, over which her damp and scattered hair\nfell loose, lay motionless.\n\n'Poor little thing,' said Miss Tox; 'she has been dreaming, I\ndaresay.'\n\nDreaming, perhaps, of loving tones for ever silent, of loving eyes\nfor ever closed, of loving arms again wound round her, and relaxing in\nthat dream within the dam which no tongue can relate. Seeking, perhaps\n- in dreams - some natural comfort for a heart, deeply and sorely\nwounded, though so young a child's: and finding it, perhaps, in\ndreams, if not in waking, cold, substantial truth. This trivial\nincident had so interrupted the current of conversation, that it was\ndifficult of resumption; and Mrs Chick moreover had been so affected\nby the contemplation of her own tolerant nature, that she was not in\nspirits. The two friends accordingly soon made an end of their tea,\nand a servant was despatched to fetch a hackney cabriolet for Miss\nTox. Miss Tox had great experience in hackney cabs, and her starting\nin one was generally a work of time, as she was systematic in the\npreparatory arrangements.\n\n'Have the goodness, if you please, Towlinson,' said Miss Tox,\n'first of all, to carry out a pen and ink and take his number\nlegibly.'\n\n'Yes, Miss,' said Towlinson.\n\n'Then, if you please, Towlinson,'said Miss Tox, 'have the goodness\n\nto turn the cushion. Which,' said Miss Tox apart to Mrs Chick, 'is\ngenerally damp, my dear.'\n\n'Yes, Miss,' said Towlinson.\n\n'I'll trouble you also, if you please, Towlinson,' said Miss Tox,\n'with this card and this shilling. He's to drive to the card, and is\nto understand that he will not on any account have more than the\nshilling.'\n\n'No, Miss,' said Towlinson.\n\n'And - I'm sorry to give you so much trouble, Towlinson,' said Miss\nTox, looking at him pensively.\n\n'Not at all, Miss,' said Towlinson.\n\n'Mention to the man, then, if you please, Towlinson,' said Miss\nTox, 'that the lady's uncle is a magistrate, and that if he gives her\nany of his impertinence he will be punished terribly. You can pretend\nto say that, if you please, Towlinson, in a friendly way, and because\nyou know it was done to another man, who died.'\n\n'Certainly, Miss,' said Towlinson.\n\n'And now good-night to my sweet, sweet, sweet, godson,' said Miss\nTox, with a soft shower of kisses at each repetition of the adjective;\n'and Louisa, my dear friend, promise me to take a little something\nwarm before you go to bed, and not to distress yourself!'\n\nIt was with extreme difficulty that Nipper, the black-eyed, who\nlooked on steadfastly, contained herself at this crisis, and until the\nsubsequent departure of Mrs Chick. But the nursery being at length\nfree of visitors, she made herself some recompense for her late\nrestraint.\n\n'You might keep me in a strait-waistcoat for six weeks,' said\nNipper, 'and when I got it off I'd only be more aggravated, who ever\nheard the like of them two Griffins, Mrs Richards?'\n\n'And then to talk of having been dreaming, poor dear!' said Polly.\n\n'Oh you beauties!' cried Susan Nipper, affecting to salute the door\nby which the ladies had departed. 'Never be a Dombey won't she? It's\nto be hoped she won't, we don't want any more such, one's enough.'\n\n'Don't wake the children, Susan dear,' said Polly.\n\n'I'm very much beholden to you, Mrs Richards,' said Susan, who was\nnot by any means discriminating in her wrath, 'and really feel it as a\nhonour to receive your commands, being a black slave and a mulotter.\nMrs Richards, if there's any other orders, you can give me, pray\nmention 'em.'\n\n'Nonsense; orders,' said Polly.\n\n'Oh! bless your heart, Mrs Richards,' cried Susan, 'temporaries\nalways orders permanencies here, didn't you know that, why wherever\nwas you born, Mrs Richards? But wherever you was born, Mrs Richards,'\npursued Spitfire, shaking her head resolutely, 'and whenever, and\nhowever (which is best known to yourself), you may bear in mind,\nplease, that it's one thing to give orders, and quite another thing to\ntake 'em. A person may tell a person to dive off a bridge head\nforemost into five-and-forty feet of water, Mrs Richards, but a person\nmay be very far from diving.'\n\n'There now,' said Polly, 'you're angry because you're a good little\nthing, and fond of Miss Florence; and yet you turn round on me,\nbecause there's nobody else.'\n\n'It's very easy for some to keep their tempers, and be soft-spoken,\nMrs Richards,' returned Susan, slightly mollified, 'when their child's\nmade as much of as a prince, and is petted and patted till it wishes\nits friends further, but when a sweet young pretty innocent, that\nnever ought to have a cross word spoken to or of it, is rundown, the\ncase is very different indeed. My goodness gracious me, Miss Floy, you\nnaughty, sinful child, if you don't shut your eyes this minute, I'll\ncall in them hobgoblins that lives in the cock-loft to come and eat\nyou up alive!'\n\nHere Miss Nipper made a horrible lowing, supposed to issue from a\nconscientious goblin of the bull species, impatient to discharge the\nsevere duty of his position. Having further composed her young charge\nby covering her head with the bedclothes, and making three or four\nangry dabs at the pillow, she folded her arms, and screwed up her\nmouth, and sat looking at the fire for the rest of the evening.\n\nThough little Paul was said, in nursery phrase, 'to take a deal of\nnotice for his age,' he took as little notice of all this as of the\npreparations for his christening on the next day but one; which\nnevertheless went on about him, as to his personal apparel, and that\nof his sister and the two nurses, with great activity. Neither did he,\non the arrival of the appointed morning, show any sense of its\nimportance; being, on the contrary, unusually inclined to sleep, and\nunusually inclined to take it ill in his attendants that they dressed\nhim to go out.\n\nIt happened to be an iron-grey autumnal day, with a shrewd east\nwind blowing - a day in keeping with the proceedings. Mr Dombey\nrepresented in himself the wind, the shade, and the autumn of the\nchristening. He stood in his library to receive the company, as hard\nand cold as the weather; and when he looked out through the glass\nroom, at the trees in the little garden, their brown and yellow leaves\ncame fluttering down, as if he blighted them.\n\nUgh! They were black, cold rooms; and seemed to be in mourning,\nlike the inmates of the house. The books precisely matched as to size,\nand drawn up in line, like soldiers, looked in their cold, hard,\nslippery uniforms, as if they had but one idea among them, and that\nwas a freezer. The bookcase, glazed and locked, repudiated all\nfamiliarities. Mr Pitt, in bronze, on the top, with no trace of his\ncelestial origin' about him, guarded the unattainable treasure like an\nenchanted Moor. A dusty urn at each high corner, dug up from an\nancient tomb, preached desolation and decay, as from two pulpits; and\nthe chimney-glass, reflecting Mr Dombey and his portrait at one blow,\nseemed fraught with melancholy meditations.\n\nThe stiff and stark fire-irons appeared to claim a nearer\nrelationship than anything else there to Mr Dombey, with his buttoned\ncoat, his white cravat, his heavy gold watch-chain, and his creaking\nboots.\n\nBut this was before the arrival of Mr and Mrs Chick, his lawful\nrelatives, who soon presented themselves.\n\n'My dear Paul,' Mrs Chick murmured, as she embraced him, 'the\nbeginning, I hope, of many joyful days!'\n\n'Thank you, Louisa,' said Mr Dombey, grimly. 'How do you do, Mr\nJohn?'\n\n'How do you do, Sir?' said Chick.\n\nHe gave Mr Dombey his hand, as if he feared it might electrify him.\nMr Dombey tool: it as if it were a fish, or seaweed, or some such\nclammy substance, and immediately returned it to him with exalted\npoliteness.\n\n'Perhaps, Louisa,' said Mr Dombey, slightly turning his head in his\ncravat, as if it were a socket, 'you would have preferred a fire?'\n\n'Oh, my dear Paul, no,' said Mrs Chick, who had much ado to keep\nher teeth from chattering; 'not for me.'\n\n'Mr John,' said Mr Dombey, 'you are not sensible of any chill?'\n\nMr John, who had already got both his hands in his pockets over the\nwrists, and was on the very threshold of that same canine chorus which\nhad given Mrs Chick so much offence on a former occasion, protested\nthat he was perfectly comfortable.\n\nHe added in a low voice, 'With my tiddle tol toor rul' - when he\nwas providentially stopped by Towlinson, who announced:\n\n'Miss Tox!'\n\nAnd enter that fair enslaver, with a blue nose and indescribably\nfrosty face, referable to her being very thinly clad in a maze of\nfluttering odds and ends, to do honour to the ceremony.\n\n'How do you do, Miss Tox?' said Mr Dombey.\n\nMiss Tox, in the midst of her spreading gauzes, went down\naltogether like an opera-glass shutting-up; she curtseyed so low, in\nacknowledgment of Mr Dombey's advancing a step or two to meet her.\n\n'I can never forget this occasion, Sir,' said Miss Tox, softly.\n''Tis impossible. My dear Louisa, I can hardly believe the evidence of\nmy senses.'\n\nIf Miss Tox could believe the evidence of one of her senses, it was\na very cold day. That was quite clear. She took an early opportunity\nof promoting the circulation in the tip of her nose by secretly\nchafing it with her pocket handkerchief, lest, by its very low\ntemperature, it should disagreeably astonish the baby when she came to\nkiss it.\n\nThe baby soon appeared, carried in great glory by Richards; while\nFlorence, in custody of that active young constable, Susan Nipper,\nbrought up the rear. Though the whole nursery party were dressed by\nthis time in lighter mourning than at first, there was enough in the\nappearance of the bereaved children to make the day no brighter. The\nbaby too - it might have been Miss Tox's nose - began to cry. Thereby,\nas it happened, preventing Mr Chick from the awkward fulfilment of a\nvery honest purpose he had; which was, to make much of Florence. For\nthis gentleman, insensible to the superior claims of a perfect Dombey\n(perhaps on account of having the honour to be united to a Dombey\nhimself, and being familiar with excellence), really liked her, and\nshowed that he liked her, and was about to show it in his own way now,\nwhen Paul cried, and his helpmate stopped him short\n\n'Now Florence, child!' said her aunt, briskly, 'what are you doing,\nlove? Show yourself to him. Engage his attention, my dear!'\n\nThe atmosphere became or might have become colder and colder, when\nMr Dombey stood frigidly watching his little daughter, who, clapping\nher hands, and standing On tip-toe before the throne of his son and\nheir, lured him to bend down from his high estate, and look at her.\nSome honest act of Richards's may have aided the effect, but he did\nlook down, and held his peace. As his sister hid behind her nurse, he\nfollowed her with his eyes; and when she peeped out with a merry cry\nto him, he sprang up and crowed lustily - laughing outright when she\nran in upon him; and seeming to fondle her curls with his tiny hands,\nwhile she smothered him with kisses.\n\nWas Mr Dombey pleased to see this? He testified no pleasure by the\nrelaxation of a nerve; but outward tokens of any kind of feeling were\nunusual with him. If any sunbeam stole into the room to light the\nchildren at their play, it never reached his face. He looked on so\nfixedly and coldly, that the warm light vanished even from the\nlaughing eyes of little Florence, when, at last, they happened to meet\nhis.\n\nIt was a dull, grey, autumn day indeed, and in a minute's pause and\nsilence that took place, the leaves fell sorrowfully.\n\n'Mr John,' said Mr Dombey, referring to his watch, and assuming his\nhat and gloves. 'Take my sister, if you please: my arm today is Miss\nTox's. You had better go first with Master Paul, Richards. Be very\ncareful.'\n\nIn Mr Dombey's carriage, Dombey and Son, Miss Tox, Mrs Chick,\nRichards, and Florence. In a little carriage following it, Susan\nNipper and the owner Mr Chick. Susan looking out of window, without\nintermission, as a relief from the embarrassment of confronting the\nlarge face of that gentleman, and thinking whenever anything rattled\nthat he was putting up in paper an appropriate pecuniary compliment\nfor herself.\n\nOnce upon the road to church, Mr Dombey clapped his hands for the\namusement of his son. At which instance of parental enthusiasm Miss\nTox was enchanted. But exclusive of this incident, the chief\ndifference between the christening party and a party in a mourning\ncoach consisted in the colours of the carriage and horses.\n\nArrived at the church steps, they were received by a portentous\nbeadle.' Mr Dombey dismounting first to help the ladies out, and\nstanding near him at the church door, looked like another beadle. A\nbeadle less gorgeous but more dreadful; the beadle of private life;\nthe beadle of our business and our bosoms.\n\nMiss Tox's hand trembled as she slipped it through Mr Dombey's arm,\nand felt herself escorted up the steps, preceded by a cocked hat and a\nBabylonian collar. It seemed for a moment like that other solemn\ninstitution, 'Wilt thou have this man, Lucretia?' 'Yes, I will.'\n\n'Please to bring the child in quick out of the air there,'\nwhispered the beadle, holding open the inner door of the church.\n\nLittle Paul might have asked with Hamlet 'into my grave?' so chill\nand earthy was the place. The tall shrouded pulpit and reading desk;\nthe dreary perspective of empty pews stretching away under the\ngalleries, and empty benches mounting to the roof and lost in the\nshadow of the great grim organ; the dusty matting and cold stone\nslabs; the grisly free seats' in the aisles; and the damp corner by\nthe bell-rope, where the black trestles used for funerals were stowed\naway, along with some shovels and baskets, and a coil or two of\ndeadly-looking rope; the strange, unusual, uncomfortable smell, and\nthe cadaverous light; were all in unison. It was a cold and dismal\nscene.\n\n'There's a wedding just on, Sir,' said the beadle, 'but it'll be\nover directly, if you'll walk into the westry here.\n\nBefore he turned again to lead the way, he gave Mr Dombey a bow and\na half smile of recognition, importing that he (the beadle) remembered\nto have had the pleasure of attending on him when he buried his wife,\nand hoped he had enjoyed himself since.\n\nThe very wedding looked dismal as they passed in front of the\naltar. The bride was too old and the bridegroom too young, and a\nsuperannuated beau with one eye and an eyeglass stuck in its blank\ncompanion, was giving away the lady, while the friends were shivering.\nIn the vestry the fire was smoking; and an over-aged and over-worked\nand under-paid attorney's clerk, 'making a search,' was running his\nforefinger down the parchment pages of an immense register (one of a\nlong series of similar volumes) gorged with burials. Over the\nfireplace was a ground-plan of the vaults underneath the church; and\nMr Chick, skimming the literary portion of it aloud, by way of\nenlivening the company, read the reference to Mrs Dombey's tomb in\nfull, before he could stop himself.\n\nAfter another cold interval, a wheezy little pew-opener afflicted\nwith an asthma, appropriate to the churchyard, if not to the church,\nsummoned them to the font - a rigid marble basin which seemed to have\nbeen playing a churchyard game at cup and ball with its matter of fact\npedestal, and to have been just that moment caught on the top of it.\nHere they waited some little time while the marriage party enrolled\nthemselves; and meanwhile the wheezy little pew-opener - partly in\nconsequence of her infirmity, and partly that the marriage party might\nnot forget her - went about the building coughing like a grampus.\n\nPresently the clerk (the only cheerful-looking object there, and he\nwas an undertaker) came up with a jug of warm water, and said\nsomething, as he poured it into the font, about taking the chill off;\nwhich millions of gallons boiling hot could not have done for the\noccasion. Then the clergyman, an amiable and mild-looking young\ncurate, but obviously afraid of the baby, appeared like the principal\ncharacter in a ghost-story, 'a tall figure all in white;' at sight of\nwhom Paul rent the air with his cries, and never left off again till\nhe was taken out black in the face.\n\nEven when that event had happened, to the great relief of\neverybody, he was heard under the portico, during the rest of the\nceremony, now fainter, now louder, now hushed, now bursting forth\nagain with an irrepressible sense of his wrongs. This so distracted\nthe attention of the two ladies, that Mrs Chick was constantly\ndeploying into the centre aisle, to send out messages by the\npew-opener, while Miss Tox kept her Prayer-book open at the Gunpowder\nPlot, and occasionally read responses from that service.\n\nDuring the whole of these proceedings, Mr Dombey remained as\nimpassive and gentlemanly as ever, and perhaps assisted in making it\nso cold, that the young curate smoked at the mouth as he read. The\nonly time that he unbent his visage in the least, was when the\nclergyman, in delivering (very unaffectedly and simply) the closing\nexhortation, relative to the future examination of the child by the\nsponsors, happened to rest his eye on Mr Chick; and then Mr Dombey\nmight have been seen to express by a majestic look, that he would like\nto catch him at it.\n\nIt might have been well for Mr Dombey, if he had thought of his own\ndignity a little less; and had thought of the great origin and purpose\nof the ceremony in which he took so formal and so stiff a part, a\nlittle more. His arrogance contrasted strangely with its history.\n\nWhen it was all over, he again gave his arm to Miss Tox, and\nconducted her to the vestry, where he informed the clergyman how much\npleasure it would have given him to have solicited the honour of his\ncompany at dinner, but for the unfortunate state of his household\naffairs. The register signed, and the fees paid, and the pew-opener\n(whose cough was very bad again) remembered, and the beadle gratified,\nand the sexton (who was accidentally on the doorsteps, looking with\ngreat interest at the weather) not forgotten, they got into the\ncarriage again, and drove home in the same bleak fellowship.\n\nThere they found Mr Pitt turning up his nose at a cold collation,\nset forth in a cold pomp of glass and silver, and looking more like a\ndead dinner lying in state than a social refreshment. On their arrival\nMiss Tox produced a mug for her godson, and Mr Chick a knife and fork\nand spoon in a case. Mr Dombey also produced a bracelet for Miss Tox;\nand, on the receipt of this token, Miss Tox was tenderly affected.\n\n'Mr John,' said Mr Dombey, 'will you take the bottom of the table,\nif you please? What have you got there, Mr John?'\n\n'I have got a cold fillet of veal here, Sir,' replied Mr Chick,\nrubbing his numbed hands hard together. 'What have you got there,\nSir?'\n\n'This,' returned Mr Dombey, 'is some cold preparation of calf's\nhead, I think. I see cold fowls - ham - patties - salad - lobster.\nMiss Tox will do me the honour of taking some wine? Champagne to Miss\nTox.'\n\nThere was a toothache in everything. The wine was so bitter cold\nthat it forced a little scream from Miss Tox, which she had great\ndifficulty in turning into a 'Hem!' The veal had come from such an\nairy pantry, that the first taste of it had struck a sensation as of\ncold lead to Mr Chick's extremities. Mr Dombey alone remained unmoved.\nHe might have been hung up for sale at a Russian fair as a specimen of\na frozen gentleman.\n\nThe prevailing influence was too much even for his sister. She made\nno effort at flattery or small talk, and directed all her efforts to\nlooking as warm as she could.\n\n'Well, Sir,' said Mr Chick, making a desperate plunge, after a long\nsilence, and filling a glass of sherry; 'I shall drink this, if you'll\nallow me, Sir, to little Paul.'\n\n'Bless him!' murmured Miss Tox, taking a sip of wine.\n\n'Dear little Dombey!' murmured Mrs Chick.\n\n'Mr John,' said Mr Dombey, with severe gravity, 'my son would feel\nand express himself obliged to you, I have no doubt, if he could\nappreciate the favour you have done him. He will prove, in time to\ncome, I trust, equal to any responsibility that the obliging\ndisposition of his relations and friends, in private, or the onerous\nnature of our position, in public, may impose upon him.'\n\nThe tone in which this was said admitting of nothing more, Mr Chick\nrelapsed into low spirits and silence. Not so Miss Tox, who, having\nlistened to Mr Dombey with even a more emphatic attention than usual,\nand with a more expressive tendency of her head to one side, now leant\nacross the table, and said to Mrs Chick softly:\n\n'Louisa!'\n\n'My dear,' said Mrs Chick.\n\n'Onerous nature of our position in public may - I have forgotten\n\nthe exact term.'\n\n'Expose him to,' said Mrs Chick.\n\n'Pardon me, my dear,' returned Miss Tox, 'I think not. It was more\nrounded and flowing. Obliging disposition of relations and friends in\nprivate, or onerous nature of position in public - may - impose upon\nhim!'\n\n'Impose upon him, to be sure,' said Mrs Chick.\n\nMiss Tox struck her delicate hands together lightly, in triumph;\nand added, casting up her eyes, 'eloquence indeed!'\n\nMr Dombey, in the meanwhile, had issued orders for the attendance\nof Richards, who now entered curtseying, but without the baby; Paul\nbeing asleep after the fatigues of the morning. Mr Dombey, having\ndelivered a glass of wine to this vassal, addressed her in the\nfollowing words: Miss Tox previously settling her head on one side,\nand making other little arrangements for engraving them on her heart.\n\n'During the six months or so, Richards, which have seen you an\ninmate of this house, you have done your duty. Desiring to connect\nsome little service to you with this occasion, I considered how I\ncould best effect that object, and I also advised with my sister, Mrs\n- '\n\n'Chick,' interposed the gentleman of that name.\n\n'Oh, hush if you please!' said Miss Tox.\n\n'I was about to say to you, Richards,' resumed Mr Dombey, with an\nappalling glance at Mr John, 'that I was further assisted in my\ndecision, by the recollection of a conversation I held with your\nhusband in this room, on the occasion of your being hired, when he\ndisclosed to me the melancholy fact that your family, himself at the\nhead, were sunk and steeped in ignorance.\n\nRichards quailed under the magnificence of the reproof.\n\n'I am far from being friendly,' pursued Mr Dombey, 'to what is\ncalled by persons of levelling sentiments, general education. But it\nis necessary that the inferior classes should continue to be taught to\nknow their position, and to conduct themselves properly. So far I\napprove of schools. Having the power of nominating a child on the\nfoundation of an ancient establishment, called (from a worshipful\ncompany) the Charitable Grinders; where not only is a wholesome\neducation bestowed upon the scholars, but where a dress and badge is\nlikewise provided for them; I have (first communicating, through Mrs\nChick, with your family) nominated your eldest son to an existing\nvacancy; and he has this day, I am informed, assumed the habit. The\nnumber of her son, I believe,' said Mr Dombey, turning to his sister\nand speaking of the child as if he were a hackney-coach, is one\nhundred and forty-seven. Louisa, you can tell her.'\n\n'One hundred and forty-seven,' said Mrs Chick 'The dress, Richards,\nis a nice, warm, blue baize tailed coat and cap, turned up with orange\ncoloured binding; red worsted stockings; and very strong leather\nsmall-clothes. One might wear the articles one's self,' said Mrs\nChick, with enthusiasm, 'and be grateful.'\n\n'There, Richards!' said Miss Tox. 'Now, indeed, you may be proud.\nThe Charitable Grinders!'\n\n'I am sure I am very much obliged, Sir,' returned Richards faintly,\n'and take it very kind that you should remember my little ones.' At\nthe same time a vision of Biler as a Charitable Grinder, with his very\nsmall legs encased in the serviceable clothing described by Mrs Chick,\nswam before Richards's eyes, and made them water.\n\n'I am very glad to see you have so much feeling, Richards,' said\nMiss Tox.\n\n'It makes one almost hope, it really does,' said Mrs Chick, who\nprided herself on taking trustful views of human nature, 'that there\nmay yet be some faint spark of gratitude and right feeling in the\nworld.'\n\nRichards deferred to these compliments by curtseying and murmuring\n\nher thanks; but finding it quite impossible to recover her spirits\nfrom the disorder into which they had been thrown by the image of her\nson in his precocious nether garments, she gradually approached the\ndoor and was heartily relieved to escape by it.\n\nSuch temporary indications of a partial thaw that had appeared with\nher, vanished with her; and the frost set in again, as cold and hard\nas ever. Mr Chick was twice heard to hum a tune at the bottom of the\ntable, but on both occasions it was a fragment of the Dead March in\nSaul. The party seemed to get colder and colder, and to be gradually\nresolving itself into a congealed and solid state, like the collation\nround which it was assembled. At length Mrs Chick looked at Miss Tox,\nand Miss Tox returned the look, and they both rose and said it was\nreally time to go. Mr Dombey receiving this announcement with perfect\nequanimity, they took leave of that gentleman, and presently departed\nunder the protection of Mr Chick; who, when they had turned their\nbacks upon the house and left its master in his usual solitary state,\nput his hands in his pockets, threw himself back in the carriage, and\nwhistled 'With a hey ho chevy!' all through; conveying into his face\nas he did so, an expression of such gloomy and terrible defiance, that\nMrs Chick dared not protest, or in any way molest him.\n\nRichards, though she had little Paul on her lap, could not forget\nher own first-born. She felt it was ungrateful; but the influence of\nthe day fell even on the Charitable Grinders, and she could hardly\nhelp regarding his pewter badge, number one hundred and forty-seven,\nas, somehow, a part of its formality and sternness. She spoke, too, in\nthe nursery, of his 'blessed legs,' and was again troubled by his\nspectre in uniform.\n\n'I don't know what I wouldn't give,' said Polly, 'to see the poor\nlittle dear before he gets used to 'em.'\n\n'Why, then, I tell you what, Mrs Richards,' retorted Nipper, who\nhad been admitted to her confidence, 'see him and make your mind\neasy.'\n\n'Mr Dombey wouldn't like it,' said Polly.\n\n'Oh, wouldn't he, Mrs Richards!' retorted Nipper, 'he'd like it\nvery much, I think when he was asked.'\n\n'You wouldn't ask him, I suppose, at all?' said Polly.\n\n'No, Mrs Richards, quite contrairy,' returned Susan, 'and them two\ninspectors Tox and Chick, not intending to be on duty tomorrow, as I\nheard 'em say, me and Mid Floy will go along with you tomorrow\nmorning, and welcome, Mrs Richards, if you like, for we may as well\nwalk there as up and down a street, and better too.'\n\nPolly rejected the idea pretty stoutly at first; but by little and\nlittle she began to entertain it, as she entertained more and more\ndistinctly the forbidden pictures of her children, and her own home.\nAt length, arguing that there could be no great harm in calling for a\nmoment at the door, she yielded to the Nipper proposition.\n\nThe matter being settled thus, little Paul began to cry most\npiteously, as if he had a foreboding that no good would come of it.\n\n'What's the matter with the child?' asked Susan.\n\n'He's cold, I think,' said Polly, walking with him to and fro, and\nhushing him.\n\nIt was a bleak autumnal afternoon indeed; and as she walked, and\nhushed, and, glancing through the dreary windows, pressed the little\nfellow closer to her breast, the withered leaves came showering down.\n\n\n\nCHAPTER 6.\n\nPaul's Second Deprivation\n\n\n\nPolly was beset by so many misgivings in the morning, that but for\nthe incessant promptings of her black-eyed companion, she would have\nabandoned all thoughts of the expedition, and formally petitioned for\nleave to see number one hundred and forty-seven, under the awful\nshadow of Mr Dombey's roof. But Susan who was personally disposed in\nfavour of the excursion, and who (like Tony Lumpkin), if she could\nbear the disappointments of other people with tolerable fortitude,\ncould not abide to disappoint herself, threw so many ingenious doubts\nin the way of this second thought, and stimulated the original\nintention with so many ingenious arguments, that almost as soon as Mr\nDombey's stately back was turned, and that gentleman was pursuing his\ndaily road towards the City, his unconscious son was on his way to\nStaggs's Gardens.\n\nThis euphonious locality was situated in a suburb, known by the\ninhabitants of Staggs's Gardens by the name of Camberling Town; a\ndesignation which the Strangers' Map of London, as printed (with a\nview to pleasant and commodious reference) on pocket handkerchiefs,\ncondenses, with some show of reason, into Camden Town. Hither the two\nnurses bent their steps, accompanied by their charges; Richards\ncarrying Paul, of course, and Susan leading little Florence by the\nhand, and giving her such jerks and pokes from time to time, as she\nconsidered it wholesome to administer.\n\nThe first shock of a great earthquake had, just at that period,\nrent the whole neighbourhood to its centre. Traces of its course were\nvisible on every side. Houses were knocked down; streets broken\nthrough and stopped; deep pits and trenches dug in the ground;\nenormous heaps of earth and clay thrown up; buildings that were\nundermined and shaking, propped by great beams of wood. Here, a chaos\nof carts, overthrown and jumbled together, lay topsy-turvy at the\nbottom of a steep unnatural hill; there, confused treasures of iron\nsoaked and rusted in something that had accidentally become a pond.\nEverywhere were bridges that led nowhere; thoroughfares that were\nwholly impassable; Babel towers of chimneys, wanting half their\nheight; temporary wooden houses and enclosures, in the most unlikely\nsituations; carcases of ragged tenements, and fragments of unfinished\nwalls and arches, and piles of scaffolding, and wildernesses of\nbricks, and giant forms of cranes, and tripods straddling above\nnothing. There were a hundred thousand shapes and substances of\nincompleteness, wildly mingled out of their places, upside down,\nburrowing in the earth, aspiring in the air, mouldering in the water,\nand unintelligible as any dream. Hot springs and fiery eruptions, the\nusual attendants upon earthquakes, lent their contributions of\nconfusion to the scene. Boiling water hissed and heaved within\ndilapidated walls; whence, also, the glare and roar of flames came\nissuing forth; and mounds of ashes blocked up rights of way, and\nwholly changed the law and custom of the neighbourhood.\n\nIn short, the yet unfinished and unopened Railroad was in progress;\nand, from the very core of all this dire disorder, trailed smoothly\naway, upon its mighty course of civilisation and improvement.\n\nBut as yet, the neighbourhood was shy to own the Railroad. One or\ntwo bold speculators had projected streets; and one had built a\nlittle, but had stopped among the mud and ashes to consider farther of\nit. A bran-new Tavern, redolent of fresh mortar and size, and fronting\nnothing at all, had taken for its sign The Railway Arms; but that\nmight be rash enterprise - and then it hoped to sell drink to the\nworkmen. So, the Excavators' House of Call had sprung up from a\nbeer-shop; and the old-established Ham and Beef Shop had become the\nRailway Eating House, with a roast leg of pork daily, through\ninterested motives of a similar immediate and popular description.\nLodging-house keepers were favourable in like manner; and for the like\nreasons were not to be trusted. The general belief was very slow.\nThere were frowzy fields, and cow-houses, and dunghills, and\ndustheaps, and ditches, and gardens, and summer-houses, and\ncarpet-beating grounds, at the very door of the Railway. Little tumuli\nof oyster shells in the oyster season, and of lobster shells in the\nlobster season, and of broken crockery and faded cabbage leaves in all\nseasons, encroached upon its high places. Posts, and rails, and old\ncautions to trespassers, and backs of mean houses, and patches of\nwretched vegetation, stared it out of countenance. Nothing was the\nbetter for it, or thought of being so. If the miserable waste ground\nlying near it could have laughed, it would have laughed it to scorn,\nlike many of the miserable neighbours.\n\nStaggs's Gardens was uncommonly incredulous. It was a little row of\nhouses, with little squalid patches of ground before them, fenced off\nwith old doors, barrel staves, scraps of tarpaulin, and dead bushes;\nwith bottomless tin kettles and exhausted iron fenders, thrust into\nthe gaps. Here, the Staggs's Gardeners trained scarlet beans, kept\nfowls and rabbits, erected rotten summer-houses (one was an old boat),\ndried clothes, and smoked pipes. Some were of opinion that Staggs's\nGardens derived its name from a deceased capitalist, one Mr Staggs,\nwho had built it for his delectation. Others, who had a natural taste\nfor the country, held that it dated from those rural times when the\nantlered herd, under the familiar denomination of Staggses, had\nresorted to its shady precincts. Be this as it may, Staggs's Gardens\nwas regarded by its population as a sacred grove not to be withered by\nRailroads; and so confident were they generally of its long outliving\nany such ridiculous inventions, that the master chimney-sweeper at the\ncorner, who was understood to take the lead in the local politics of\nthe Gardens, had publicly declared that on the occasion of the\nRailroad opening, if ever it did open, two of his boys should ascend\nthe flues of his dwelling, with instructions to hail the failure with\nderisive cheers from the chimney-pots.\n\nTo this unhallowed spot, the very name of which had hitherto been\ncarefully concealed from Mr Dombey by his sister, was little Paul now\nborne by Fate and Richards\n\n'That's my house, Susan,' said Polly, pointing it out.\n\n'Is it, indeed, Mrs Richards?' said Susan, condescendingly.\n\n'And there's my sister Jemima at the door, I do declare' cried\nPolly, 'with my own sweet precious baby in her arms!'\n\nThe sight added such an extensive pair of wings to Polly's\nimpatience, that she set off down the Gardens at a run, and bouncing\non Jemima, changed babies with her in a twinkling; to the unutterable\nastonishment of that young damsel, on whom the heir of the Dombeys\nseemed to have fallen from the clouds.\n\n'Why, Polly!' cried Jemima. 'You! what a turn you have given me!\nwho'd have thought it! come along in Polly! How well you do look to be\nsure! The children will go half wild to see you Polly, that they\nwill.'\n\nThat they did, if one might judge from the noise they made, and the\nway in which they dashed at Polly and dragged her to a low chair in\nthe chimney corner, where her own honest apple face became immediately\nthe centre of a bunch of smaller pippins, all laying their rosy cheeks\nclose to it, and all evidently the growth of the same tree. As to\nPolly, she was full as noisy and vehement as the children; and it was\nnot until she was quite out of breath, and her hair was hanging all\nabout her flushed face, and her new christening attire was very much\ndishevelled, that any pause took place in the confusion. Even then,\nthe smallest Toodle but one remained in her lap, holding on tight with\nboth arms round her neck; while the smallest Toodle but two mounted on\nthe back of the chair, and made desperate efforts, with one leg in the\nair, to kiss her round the corner.\n\n'Look! there's a pretty little lady come to see you,' said Polly;\n'and see how quiet she is! what a beautiful little lady, ain't she?'\n\nThis reference to Florence, who had been standing by the door not\nunobservant of what passed, directed the attention of the younger\nbranches towards her; and had likewise the happy effect of leading to\nthe formal recognition of Miss Nipper, who was not quite free from a\nmisgiving that she had been already slighted.\n\n'Oh do come in and sit down a minute, Susan, please,' said Polly.\n'This is my sister Jemima, this is. Jemima, I don't know what I should\never do with myself, if it wasn't for Susan Nipper; I shouldn't be\nhere now but for her.'\n\n'Oh do sit down, Miss Nipper, if you please,' quoth Jemima.\n\nSusan took the extreme corner of a chair, with a stately and\nceremonious aspect.\n\n'I never was so glad to see anybody in all my life; now really I\nnever was, Miss Nipper,' said Jemima.\n\nSusan relaxing, took a little more of the chair, and smiled\ngraciously.\n\n'Do untie your bonnet-strings, and make yourself at home, Miss\nNipper, please,' entreated Jemima. 'I am afraid it's a poorer place\nthan you're used to; but you'll make allowances, I'm sure.'\n\nThe black-eyed was so softened by this deferential behaviour, that\nshe caught up little Miss Toodle who was running past, and took her to\nBanbury Cross immediately.\n\n'But where's my pretty boy?' said Polly. 'My poor fellow? I came\nall this way to see him in his new clothes.'\n\n'Ah what a pity!' cried Jemima. 'He'll break his heart, when he\nhears his mother has been here. He's at school, Polly.'\n\n'Gone already!'\n\n'Yes. He went for the first time yesterday, for fear he should lose\nany learning. But it's half-holiday, Polly: if you could only stop\ntill he comes home - you and Miss Nipper, leastways,' said Jemima,\nmindful in good time of the dignity of the black-eyed.\n\n'And how does he look, Jemima, bless him!' faltered Polly.\n\n'Well, really he don't look so bad as you'd suppose,' returned\nJemima.\n\n'Ah!' said Polly, with emotion, 'I knew his legs must be too\nshort.'\n\nHis legs is short,' returned Jemima; 'especially behind; but\nthey'll get longer, Polly, every day.'\n\nIt was a slow, prospective kind of consolation; but the\ncheerfulness and good nature with which it was administered, gave it a\nvalue it did not intrinsically possess. After a moment's silence,\nPolly asked, in a more sprightly manner:\n\n'And where's Father, Jemima dear?' - for by that patriarchal\nappellation, Mr Toodle was generally known in the family.\n\n'There again!' said Jemima. 'What a pity! Father took his dinner\nwith him this morning, and isn't coming home till night. But he's\nalways talking of you, Polly, and telling the children about you; and\nis the peaceablest, patientest, best-temperedest soul in the world, as\nhe always was and will be!'\n\n'Thankee, Jemima,' cried the simple Polly; delighted by the speech,\nand disappointed by the absence.\n\n'Oh you needn't thank me, Polly,' said her sister, giving her a\nsounding kiss upon the cheek, and then dancing little Paul cheerfully.\n'I say the same of you sometimes, and think it too.'\n\nIn spite of the double disappointment, it was impossible to regard\nin the light of a failure a visit which was greeted with such a\nreception; so the sisters talked hopefully about family matters, and\nabout Biler, and about all his brothers and sisters: while the\nblack-eyed, having performed several journeys to Banbury Cross and\nback, took sharp note of the furniture, the Dutch clock, the cupboard,\nthe castle on the mantel-piece with red and green windows in it,\nsusceptible of illumination by a candle-end within; and the pair of\nsmall black velvet kittens, each with a lady's reticule in its mouth;\nregarded by the Staggs's Gardeners as prodigies of imitative art. The\nconversation soon becoming general lest the black-eyed should go off\nat score and turn sarcastic, that young lady related to Jemima a\nsummary of everything she knew concerning Mr Dombey, his prospects,\nfamily, pursuits, and character. Also an exact inventory of her\npersonal wardrobe, and some account of her principal relations and\nfriends. Having relieved her mind of these disclosures, she partook of\nshrimps and porter, and evinced a disposition to swear eternal\nfriendship.\n\nLittle Florence herself was not behind-hand in improving the\noccasion; for, being conducted forth by the young Toodles to inspect\nsome toad-stools and other curiosities of the Gardens, she entered\nwith them, heart and soul, on the formation of a temporary breakwater\nacross a small green pool that had collected in a corner. She was\nstill busily engaged in that labour, when sought and found by Susan;\nwho, such was her sense of duty, even under the humanizing influence\nof shrimps, delivered a moral address to her (punctuated with thumps)\non her degenerate nature, while washing her face and hands; and\npredicted that she would bring the grey hairs of her family in\ngeneral, with sorrow to the grave. After some delay, occasioned by a\npretty long confidential interview above stairs on pecuniary subjects,\nbetween Polly and Jemima, an interchange of babies was again effected\n- for Polly had all this timeretained her own child, and Jemima little\nPaul - and the visitors took leave.\n\nBut first the young Toodles, victims of a pious fraud, were deluded\ninto repairing in a body to a chandler's shop in the neighbourhood,\nfor the ostensible purpose of spending a penny; and when the coast was\nquite clear, Polly fled: Jemima calling after her that if they could\nonly go round towards the City Road on their way back, they would be\nsure to meet little Biler coming from school.\n\n'Do you think that we might make time to go a little round in that\ndirection, Susan?' inquired Polly, when they halted to take breath.\n\n'Why not, Mrs Richards?' returned Susan.\n\n'It's getting on towards our dinner time you know,' said Polly.\n\nBut lunch had rendered her companion more than indifferent to this\ngrave consideration, so she allowed no weight to it, and they resolved\nto go 'a little round.'\n\nNow, it happened that poor Biler's life had been, since yesterday\nmorning, rendered weary by the costume of the Charitable Grinders. The\nyouth of the streets could not endure it. No young vagabond could be\nbrought to bear its contemplation for a moment, without throwing\nhimself upon the unoffending wearer, and doing him a mischief. His\nsocial existence had been more like that of an early Christian, than\nan innocent child of the nineteenth century. He had been stoned in the\nstreets. He had been overthrown into gutters; bespattered with mud;\nviolently flattened against posts. Entire strangers to his person had\nlifted his yellow cap off his head, and cast it to the winds. His legs\nhad not only undergone verbal criticisms and revilings, but had been\nhandled and pinched. That very morning, he had received a perfectly\nunsolicited black eye on his way to the Grinders' establishment, and\nhad been punished for it by the master: a superannuated old Grinder of\nsavage disposition, who had been appointed schoolmaster because he\ndidn't know anything, and wasn't fit for anything, and for whose cruel\ncane all chubby little boys had a perfect fascination.'\n\nThus it fell out that Biler, on his way home, sought unfrequented\npaths; and slunk along by narrow passages and back streets, to avoid\nhis tormentors. Being compelled to emerge into the main road, his ill\nfortune brought him at last where a small party of boys, headed by a\nferocious young butcher, were lying in wait for any means of\npleasurable excitement that might happen. These, finding a Charitable\nGrinder in the midst of them - unaccountably delivered over, as it\nwere, into their hands - set up a general yell and rushed upon him.\n\nBut it so fell out likewise, that, at the same time, Polly, looking\nhopelessly along the road before her, after a good hour's walk, had\nsaid it was no use going any further, when suddenly she saw this\nsight. She no sooner saw it than, uttering a hasty exclamation, and\ngiving Master Dombey to the black-eyed, she started to the rescue of\nher unhappy little son.\n\nSurprises, like misfortunes, rarely come alone. The astonished\nSusan Nipper and her two young charges were rescued by the bystanders\nfrom under the very wheels of a passing carriage before they knew what\nhad happened; and at that moment (it was market day) a thundering\nalarm of 'Mad Bull!' was raised.\n\nWith a wild confusion before her, of people running up and down,\nand shouting, and wheels running over them, and boys fighting, and mad\nbulls coming up, and the nurse in the midst of all these dangers being\ntorn to pieces, Florence screamed and ran. She ran till she was\nexhausted, urging Susan to do the same; and then, stopping and\nwringing her hands as she remembered they had left the other nurse\nbehind, found, with a sensation of terror not to be described, that\nshe was quite alone.\n\n'Susan! Susan!' cried Florence, clapping her hands in the very\necstasy of her alarm. 'Oh, where are they? where are they?'\n\n'Where are they?' said an old woman, coming hobbling across as fast\nas she could from the opposite side of the way. 'Why did you run away\nfrom 'em?'\n\n'I was frightened,' answered Florence. 'I didn't know what I did. I\nthought they were with me. Where are they?'\n\nThe old woman took her by the wrist, and said, 'I'll show you.'\n\nShe was a very ugly old woman, with red rims round her eyes, and a\nmouth that mumbled and chattered of itself when she was not speaking.\nShe was miserably dressed, and carried some skins over her arm. She\nseemed to have followed Florence some little way at all events, for\nshe had lost her breath; and this made her uglier still, as she stood\ntrying to regain it: working her shrivelled yellow face and throat\ninto all sorts of contortions.\n\nFlorence was afraid of her, and looked, hesitating, up the street,\nof which she had almost reached the bottom. It was a solitary place -\nmore a back road than a street - and there was no one in it but her-\nself and the old woman.\n\n'You needn't be frightened now,' said the old woman, still holding\nher tight. 'Come along with me.'\n\n'I - I don't know you. What's your name?' asked Florence.\n\n'Mrs Brown,' said the old woman. 'Good Mrs Brown.'\n\n'Are they near here?' asked Florence, beginning to be led away.\n\n'Susan ain't far off,' said Good Mrs Brown; 'and the others are\nclose to her.'\n\n'Is anybody hurt?' cried Florence.\n\n'Not a bit of it,' said Good Mrs Brown.\n\nThe child shed tears of delight on hearing this, and accompanied\nthe old woman willingly; though she could not help glancing at her\nface as they went along - particularly at that industrious mouth - and\nwondering whether Bad Mrs Brown, if there were such a person, was at\nall like her.\n\nThey had not gone far, but had gone by some very uncomfortable\nplaces, such as brick-fields and tile-yards, when the old woman turned\ndown a dirty lane, where the mud lay in deep black ruts in the middle\nof the road. She stopped before a shabby little house, as closely shut\nup as a house that was full of cracks and crevices could be. Opening\nthe door with a key she took out of her bonnet, she pushed the child\nbefore her into a back room, where there was a great heap of rags of\ndifferent colours lying on the floor; a heap of bones, and a heap of\nsifted dust or cinders; but there was no furniture at all, and the\nwalls and ceiling were quite black.\n\nThe child became so terrified the she was stricken speechless, and\nlooked as though about to swoon.\n\n'Now don't be a young mule,' said Good Mrs Brown, reviving her with\na shake. 'I'm not a going to hurt you. Sit upon the rags.'\n\nFlorence obeyed her, holding out her folded hands, in mute\nsupplication.\n\n'I'm not a going to keep you, even, above an hour,' said Mrs Brown.\n'D'ye understand what I say?'\n\nThe child answered with great difficulty, 'Yes.'\n\n'Then,' said Good Mrs Brown, taking her own seat on the bones,\n'don't vex me. If you don't, I tell you I won't hurt you. But if you\ndo, I'll kill you. I could have you killed at any time - even if you\nwas in your own bed at home. Now let's know who you are, and what you\nare, and all about it.'\n\nThe old woman's threats and promises; the dread of giving her\noffence; and the habit, unusual to a child, but almost natural to\nFlorence now, of being quiet, and repressing what she felt, and\nfeared, and hoped; enabled her to do this bidding, and to tell her\nlittle history, or what she knew of it. Mrs Brown listened\nattentively, until she had finished.\n\n'So your name's Dombey, eh?' said Mrs Brown.\n\n'I want that pretty frock, Miss Dombey,' said Good Mrs Brown, 'and\nthat little bonnet, and a petticoat or two, and anything else you can\nspare. Come! Take 'em off.'\n\nFlorence obeyed, as fast as her trembling hands would allow;\nkeeping, all the while, a frightened eye on Mrs Brown. When she had\ndivested herself of all the articles of apparel mentioned by that\nlady, Mrs B. examined them at leisure, and seemed tolerably well\nsatisfied with their quality and value.\n\n'Humph!' she said, running her eyes over the child's slight figure,\n'I don't see anything else - except the shoes. I must have the shoes,\nMiss Dombey.'\n\nPoor little Florence took them off with equal alacrity, only too\nglad to have any more means of conciliation about her. The old woman\nthen produced some wretched substitutes from the bottom of the heap of\nrags, which she turned up for that purpose; together with a girl's\ncloak, quite worn out and very old; and the crushed remains of a\nbonnet that had probably been picked up from some ditch or dunghill.\nIn this dainty raiment, she instructed Florence to dress herself; and\nas such preparation seemed a prelude to her release, the child\ncomplied with increased readiness, if possible.\n\nIn hurriedly putting on the bonnet, if that may be called a bonnet\nwhich was more like a pad to carry loads on, she caught it in her hair\nwhich grew luxuriantly, and could not immediately disentangle it. Good\nMrs Brown whipped out a large pair of scissors, and fell into an\nunaccountable state of excitement.\n\n'Why couldn't you let me be!' said Mrs Brown, 'when I was\ncontented? You little fool!'\n\n'I beg your pardon. I don't know what I have done,' panted\nFlorence. 'I couldn't help it.'\n\n'Couldn't help it!' cried Mrs Brown. 'How do you expect I can help\nit? Why, Lord!' said the old woman, ruffling her curls with a furious\npleasure, 'anybody but me would have had 'em off, first of all.'\nFlorence was so relieved to find that it was only her hair and not her\nhead which Mrs Brown coveted, that she offered no resistance or\nentreaty, and merely raised her mild eyes towards the face of that\ngood soul.\n\n'If I hadn't once had a gal of my own - beyond seas now- that was\nproud of her hair,' said Mrs Brown, 'I'd have had every lock of it.\nShe's far away, she's far away! Oho! Oho!'\n\nMrs Brown's was not a melodious cry, but, accompanied with a wild\ntossing up of her lean arms, it was full of passionate grief, and\nthrilled to the heart of Florence, whom it frightened more than ever.\nIt had its part, perhaps, in saving her curls; for Mrs Brown, after\nhovering about her with the scissors for some moments, like a new kind\nof butterfly, bade her hide them under the bonnet and let no trace of\nthem escape to tempt her. Having accomplished this victory over\nherself, Mrs Brown resumed her seat on the bones, and smoked a very\nshort black pipe, mowing and mumbling all the time, as if she were\neating the stem.\n\nWhen the pipe was smoked out, she gave the child a rabbit-skin to\ncarry, that she might appear the more like her ordinary companion, and\ntold her that she was now going to lead her to a public street whence\nshe could inquire her way to her friends. But she cautioned her, with\nthreats of summary and deadly vengeance in case of disobedience, not\nto talk to strangers, nor to repair to her own home (which may have\nbeen too near for Mrs Brown's convenience), but to her father's office\nin the City; also to wait at the street corner where she would be\nleft, until the clock struck three. These directions Mrs Brown\nenforced with assurances that there would be potent eyes and ears in\nher employment cognizant of all she did; and these directions Florence\npromised faithfully and earnestly to observe.\n\nAt length, Mrs Brown, issuing forth, conducted her changed and\nragged little friend through a labyrinth of narrow streets and lanes\nand alleys, which emerged, after a long time, upon a stable yard, with\na gateway at the end, whence the roar of a great thoroughfare made\nitself audible. Pointing out this gateway, and informing Florence that\nwhen the clocks struck three she was to go to the left, Mrs Brown,\nafter making a parting grasp at her hair which seemed involuntary and\nquite beyond her own control, told her she knew what to do, and bade\nher go and do it: remembering that she was watched.\n\nWith a lighter heart, but still sore afraid, Florence felt herself\nreleased, and tripped off to the corner. When she reached it, she\nlooked back and saw the head of Good Mrs Brown peeping out of the low\nwooden passage, where she had issued her parting injunctions; likewise\nthe fist of Good Mrs Brown shaking towards her. But though she often\nlooked back afterwards - every minute, at least, in her nervous\nrecollection of the old woman - she could not see her again.\n\nFlorence remained there, looking at the bustle in the street, and\nmore and more bewildered by it; and in the meanwhile the clocks\nappeared to have made up their minds never to strike three any more.\nAt last the steeples rang out three o'clock; there was one close by,\nso she couldn't be mistaken; and - after often looking over her\nshoulder, and often going a little way, and as often coming back\nagain, lest the all-powerful spies of Mrs Brown should take offence -\nshe hurried off, as fast as she could in her slipshod shoes, holding\nthe rabbit-skin tight in her hand.\n\nAll she knew of her father's offices was that they belonged to\nDombey and Son, and that that was a great power belonging to the City.\nSo she could only ask the way to Dombey and Son's in the City; and as\nshe generally made inquiry of children - being afraid to ask grown\npeople - she got very little satisfaction indeed. But by dint of\nasking her way to the City after a while, and dropping the rest of her\ninquiry for the present, she really did advance, by slow degrees,\ntowards the heart of that great region which is governed by the\nterrible Lord Mayor.\n\nTired of walking, repulsed and pushed about, stunned by the noise\nand confusion, anxious for her brother and the nurses, terrified by\nwhat she had undergone, and the prospect of encountering her angry\nfather in such an altered state; perplexed and frightened alike by\nwhat had passed, and what was passing, and what was yet before her;\nFlorence went upon her weary way with tearful eyes, and once or twice\ncould not help stopping to ease her bursting heart by crying bitterly.\nBut few people noticed her at those times, in the garb she wore: or if\nthey did, believed that she was tutored to excite compassion, and\npassed on. Florence, too, called to her aid all the firmness and\nself-reliance of a character that her sad experience had prematurely\nformed and tried: and keeping the end she had in view steadily before\nher, steadily pursued it.\n\nIt was full two hours later in the afternoon than when she had\nstarted on this strange adventure, when, escaping from the clash and\nclangour of a narrow street full of carts and waggons, she peeped into\na kind of wharf or landing-place upon the river-side, where there were\na great many packages, casks, and boxes, strewn about; a large pair of\nwooden scales; and a little wooden house on wheels, outside of which,\nlooking at the neighbouring masts and boats, a stout man stood\nwhistling, with his pen behind his ear, and his hands in his pockets,\nas if his day's work were nearly done.\n\n'Now then! 'said this man, happening to turn round. 'We haven't got\nanything for you, little girl. Be off!'\n\n'If you please, is this the City?' asked the trembling daughter of\nthe Dombeys.\n\n'Ah! It's the City. You know that well enough, I daresay. Be off!\nWe haven't got anything for you.'\n\n'I don't want anything, thank you,' was the timid answer. 'Except\nto know the way to Dombey and Son's.'\n\nThe man who had been strolling carelessly towards her, seemed\nsurprised by this reply, and looking attentively in her face,\nrejoined:\n\n'Why, what can you want with Dombey and Son's?'\n\n'To know the way there, if you please.'\n\nThe man looked at her yet more curiously, and rubbed the back of\nhis head so hard in his wonderment that he knocked his own hat off.\n\n'Joe!' he called to another man - a labourer- as he picked it up\nand put it on again.\n\n'Joe it is!' said Joe.\n\n'Where's that young spark of Dombey's who's been watching the\nshipment of them goods?'\n\n'Just gone, by t'other gate,' said Joe.\n\n'Call him back a minute.'\n\nJoe ran up an archway, bawling as he went, and very soon returned\n\nwith a blithe-looking boy.\n\n'You're Dombey's jockey, ain't you?' said the first man.\n\n'I'm in Dombey's House, Mr Clark,' returned the boy.\n\n'Look'ye here, then,' said Mr Clark.\n\nObedient to the indication of Mr Clark's hand, the boy approached\ntowards Florence, wondering, as well he might, what he had to do with\nher. But she, who had heard what passed, and who, besides the relief\nof so suddenly considering herself safe at her journey's end, felt\nreassured beyond all measure by his lively youthful face and manner,\nran eagerly up to him, leaving one of the slipshod shoes upon the\nground and caught his hand in both of hers.\n\n'I am lost, if you please!' said Florence.\n\n'Lost!' cried the boy.\n\n'Yes, I was lost this morning, a long way from here - and I have\nhad my clothes taken away, since - and I am not dressed in my own now\n- and my name is Florence Dombey, my little brother's only sister -\nand, oh dear, dear, take care of me, if you please!' sobbed Florence,\ngiving full vent to the childish feelings she had so long suppressed,\nand bursting into tears. At the same time her miserable bonnet falling\noff, her hair came tumbling down about her face: moving to speechless\nadmiration and commiseration, young Walter, nephew of Solomon Gills,\nShips' Instrument-maker in general.\n\nMr Clark stood rapt in amazement: observing under his breath, I\nnever saw such a start on this wharf before. Walter picked up the\nshoe, and put it on the little foot as the Prince in the story might\nhave fitted Cinderella's slipper on. He hung the rabbit-skin over his\nleft arm; gave the right to Florence; and felt, not to say like\nRichard Whittington - that is a tame comparison - but like Saint\nGeorge of England, with the dragon lying dead before him.\n\n'Don't cry, Miss Dombey,' said Walter, in a transport of\n\nenthusiasm.\n\n'What a wonderful thing for me that I am here! You are as safe now\nas if you were guarded by a whole boat's crew of picked men from a\nman-of-war. Oh, don't cry.'\n\n'I won't cry any more,' said Florence. 'I am only crying for joy.'\n\n'Crying for joy!' thought Walter, 'and I'm the cause of it! Come\nalong, Miss Dombey. There's the other shoe off now! Take mine, Miss\nDombey.'\n\n'No, no, no,' said Florence, checking him in the act of impetuously\n\npulling off his own. 'These do better. These do very well.'\n\n'Why, to be sure,' said Walter, glancing at her foot, 'mine are a\nmile too large. What am I thinking about! You never could walk in\nmine! Come along, Miss Dombey. Let me see the villain who will dare\nmolest you now.'\n\nSo Walter, looking immensely fierce, led off Florence, looking very\nhappy; and they went arm-in-arm along the streets, perfectly\nindifferent to any astonishment that their appearance might or did\nexcite by the way.\n\nIt was growing dark and foggy, and beginning to rain too; but they\ncared nothing for this: being both wholly absorbed in the late\nadventures of Florence, which she related with the innocent good faith\nand confidence of her years, while Walter listened as if, far from the\nmud and grease of Thames Street, they were rambling alone among the\nbroad leaves and tall trees of some desert island in the tropics - as\nhe very likely fancied, for the time, they were.\n\n'Have we far to go?' asked Florence at last, lilting up her eyes to\nher companion's face.\n\n'Ah! By-the-bye,' said Walter, stopping, 'let me see; where are we?\nOh! I know. But the offices are shut up now, Miss Dombey. There's\nnobody there. Mr Dombey has gone home long ago. I suppose we must go\nhome too? or, stay. Suppose I take you to my Uncle's, where I live -\nit's very near here - and go to your house in a coach to tell them you\nare safe, and bring you back some clothes. Won't that be best?'\n\n'I think so,' answered Florence. 'Don't you? What do you think?'\n\nAs they stood deliberating in the street, a man passed them, who\nglanced quickly at Walter as he went by, as if he recognised him; but\nseeming to correct that first impression, he passed on without\nstopping.\n\n'Why, I think it's Mr Carker,' said Walter. 'Carker in our House.\nNot Carker our Manager, Miss Dombey - the other Carker; the Junior -\nHalloa! Mr Carker!'\n\n'Is that Walter Gay?' said the other, stopping and returning. 'I\ncouldn't believe it, with such a strange companion.\n\nAs he stood near a lamp, listening with surprise to Walter's\nhurried explanation, he presented a remarkable contrast to the two\nyouthful figures arm-in-arm before him. He was not old, but his hair\nwas white; his body was bent, or bowed as if by the weight of some\ngreat trouble: and there were deep lines in his worn and melancholy\nface. The fire of his eyes, the expression of his features, the very\nvoice in which he spoke, were all subdued and quenched, as if the\nspirit within him lay in ashes. He was respectably, though very\nplainly dressed, in black; but his clothes, moulded to the general\ncharacter of his figure, seemed to shrink and abase themselves upon\nhim, and to join in the sorrowful solicitation which the whole man\nfrom head to foot expressed, to be left unnoticed, and alone in his\nhumility.\n\nAnd yet his interest in youth and hopefulness was not extinguished\nwith the other embers of his soul, for he watched the boy's earnest\ncountenance as he spoke with unusual sympathy, though with an\ninexplicable show of trouble and compassion, which escaped into his\nlooks, however hard he strove to hold it prisoner. When Walter, in\nconclusion, put to him the question he had put to Florence, he still\nstood glancing at him with the same expression, as if he had read some\nfate upon his face, mournfully at variance with its present\nbrightness.\n\n'What do you advise, Mr Carker?' said Walter, smiling. 'You always\ngive me good advice, you know, when you do speak to me. That's not\noften, though.'\n\n'I think your own idea is the best,' he answered: looking from\nFlorence to Walter, and back again.\n\n'Mr Carker,' said Walter, brightening with a generous thought,\n'Come! Here's a chance for you. Go you to Mr Dombey's, and be the\nmessenger of good news. It may do you some good, Sir. I'll remain at\nhome. You shall go.'\n\n'I!' returned the other.\n\n'Yes. Why not, Mr Carker?' said the boy.\n\nHe merely shook him by the hand in answer; he seemed in a manner\nashamed and afraid even to do that; and bidding him good-night, and\nadvising him to make haste, turned away.\n\n'Come, Miss Dombey,' said Walter, looking after him as they turned\naway also, 'we'll go to my Uncle's as quick as we can. Did you ever\nhear Mr Dombey speak of Mr Carker the Junior, Miss Florence?'\n\n'No,' returned the child, mildly, 'I don't often hear Papa speak.'\n\n'Ah! true! more shame for him,' thought Walter. After a minute's\npause, during which he had been looking down upon the gentle patient\nlittle face moving on at his side, he said, 'The strangest man, Mr\nCarker the Junior is, Miss Florence, that ever you heard of. If you\ncould understand what an extraordinary interest he takes in me, and\nyet how he shuns me and avoids me; and what a low place he holds in\nour office, and how he is never advanced, and never complains, though\nyear after year he sees young men passed over his head, and though his\nbrother (younger than he is), is our head Manager, you would be as\nmuch puzzled about him as I am.'\n\nAs Florence could hardly be expected to understand much about it,\nWalter bestirred himself with his accustomed boyish animation and\nrestlessness to change the subject; and one of the unfortunate shoes\ncoming off again opportunely, proposed to carry Florence to his\nuncle's in his arms. Florence, though very tired, laughingly declined\nthe proposal, lest he should let her fall; and as they were already\nnear the wooden Midshipman, and as Walter went on to cite various\nprecedents, from shipwrecks and other moving accidents, where younger\nboys than he had triumphantly rescued and carried off older girls than\nFlorence, they were still in full conversation about it when they\narrived at the Instrument-maker's door.\n\n'Holloa, Uncle Sol!' cried Walter, bursting into the shop, and\nspeaking incoherently and out of breath, from that time forth, for the\nrest of the evening. 'Here's a wonderful adventure! Here's Mr Dombey's\ndaughter lost in the streets, and robbed of her clothes by an old\nwitch of a woman - found by me - brought home to our parlour to rest -\nlook here!'\n\n'Good Heaven!' said Uncle Sol, starting back against his favourite\ncompass-case. 'It can't be! Well, I - '\n\n'No, nor anybody else,' said Walter, anticipating the rest. 'Nobody\nwould, nobody could, you know. Here! just help me lift the little sofa\nnear the fire, will you, Uncle Sol - take care of the plates - cut\nsome dinner for her, will you, Uncle - throw those shoes under the\ngrate. Miss Florence - put your feet on the fender to dry - how damp\nthey are - here's an adventure, Uncle, eh? - God bless my soul, how\nhot I am!'\n\nSolomon Gills was quite as hot, by sympathy, and in excessive\nbewilderment. He patted Florence's head, pressed her to eat, pressed\nher to drink, rubbed the soles of her feet with his\npocket-handkerchief heated at the fire, followed his locomotive nephew\nwith his eyes, and ears, and had no clear perception of anything\nexcept that he was being constantly knocked against and tumbled over\nby that excited young gentleman, as he darted about the room\nattempting to accomplish twenty things at once, and doing nothing at\nall.\n\n'Here, wait a minute, Uncle,' he continued, catching up a candle,\n'till I run upstairs, and get another jacket on, and then I'll be off.\nI say, Uncle, isn't this an adventure?'\n\n'My dear boy,' said Solomon, who, with his spectacles on his\nforehead and the great chronometer in his pocket, was incessantly\noscillating between Florence on the sofa, and his nephew in all parts\nof the parlour, 'it's the most extraordinary - '\n\n'No, but do, Uncle, please - do, Miss Florence - dinner, you know,\nUncle.'\n\n'Yes, yes, yes,' cried Solomon, cutting instantly into a leg of\nmutton, as if he were catering for a giant. 'I'll take care of her,\nWally! I understand. Pretty dear! Famished, of course. You go and get\nready. Lord bless me! Sir Richard Whittington thrice Lord Mayor of\nLondon.'\n\nWalter was not very long in mounting to his lofty garret and\ndescending from it, but in the meantime Florence, overcome by fatigue,\nhad sunk into a doze before the fire. The short interval of quiet,\nthough only a few minutes in duration, enabled Solomon Gills so far to\ncollect his wits as to make some little arrangements for her comfort,\nand to darken the room, and to screen her from the blaze. Thus, when\nthe boy returned, she was sleeping peacefully.\n\n'That's capital!' he whispered, giving Solomon such a hug that it\nsqueezed a new expression into his face. 'Now I'm off. I'll just take\na crust of bread with me, for I'm very hungry - and don't wake her,\nUncle Sol.'\n\n'No, no,' said Solomon. 'Pretty child.'\n\n'Pretty, indeed!' cried Walter. 'I never saw such a face, Uncle\nSol. Now I'm off.'\n\n'That's right,' said Solomon, greatly relieved.\n\n'I say, Uncle Sol,' cried Walter, putting his face in at the door.\n\n'Here he is again,' said Solomon.\n\n'How does she look now?'\n\n'Quite happy,' said Solomon.\n\n'That's famous! now I'm off.'\n\n'I hope you are,' said Solomon to himself.\n\n'I say, Uncle Sol,' cried Walter, reappearing at the door.\n\n'Here he is again!' said Solomon.\n\n'We met Mr Carker the Junior in the street, queerer than ever. He\nbade me good-bye, but came behind us here - there's an odd thing! -\nfor when we reached the shop door, I looked round, and saw him going\nquietly away, like a servant who had seen me home, or a faithful dog.\nHow does she look now, Uncle?'\n\n'Pretty much the same as before, Wally,' replied Uncle Sol.\n\n'That's right. Now I am off!'\n\nAnd this time he really was: and Solomon Gills, with no appetite\nfor dinner, sat on the opposite side of the fire, watching Florence in\nher slumber, building a great many airy castles of the most fantastic\narchitecture; and looking, in the dim shade, and in the close vicinity\nof all the instruments, like a magician disguised in a Welsh wig and a\nsuit of coffee colour, who held the child in an enchanted sleep.\n\nIn the meantime, Walter proceeded towards Mr Dombey's house at a\npace seldom achieved by a hack horse from the stand; and yet with his\nhead out of window every two or three minutes, in impatient\nremonstrance with the driver. Arriving at his journey's end, he leaped\nout, and breathlessly announcing his errand to the servant, followed\nhim straight into the library, we there was a great confusion of\ntongues, and where Mr Dombey, his sister, and Miss Tox, Richards, and\nNipper, were all congregated together.\n\n'Oh! I beg your pardon, Sir,' said Walter, rushing up to him, 'but\nI'm happy to say it's all right, Sir. Miss Dombey's found!'\n\nThe boy with his open face, and flowing hair, and sparkling eyes,\npanting with pleasure and excitement, was wonderfully opposed to Mr\nDombey, as he sat confronting him in his library chair.\n\n'I told you, Louisa, that she would certainly be found,' said Mr\nDombey, looking slightly over his shoulder at that lady, who wept in\ncompany with Miss Tox. 'Let the servants know that no further steps\nare necessary. This boy who brings the information, is young Gay, from\nthe office. How was my daughter found, Sir? I know how she was lost.'\nHere he looked majestically at Richards. 'But how was she found? Who\nfound her?'\n\n'Why, I believe I found Miss Dombey, Sir,' said Walter modestly,\n'at least I don't know that I can claim the merit of having exactly\nfound her, Sir, but I was the fortunate instrument of - '\n\n'What do you mean, Sir,' interrupted Mr Dombey, regarding the boy's\nevident pride and pleasure in his share of the transaction with an\ninstinctive dislike, 'by not having exactly found my daughter, and by\nbeing a fortunate instrument? Be plain and coherent, if you please.'\n\nIt was quite out of Walter's power to be coherent; but he rendered\nhimself as explanatory as he could, in his breathless state, and\nstated why he had come alone.\n\n'You hear this, girl?' said Mr Dombey sternly to the black-eyed.\n'Take what is necessary, and return immediately with this young man to\nfetch Miss Florence home. Gay, you will be rewarded to-morrow.\n\n'Oh! thank you, Sir,' said Walter. 'You are very kind. I'm sure I\nwas not thinking of any reward, Sir.'\n\n'You are a boy,' said Mr Dombey, suddenly and almost fiercely; 'and\nwhat you think of, or affect to think of, is of little consequence.\nYou have done well, Sir. Don't undo it. Louisa, please to give the lad\nsome wine.'\n\nMr Dombey's glance followed Walter Gay with sharp disfavour, as he\nleft the room under the pilotage of Mrs Chick; and it may be that his\nmind's eye followed him with no greater relish, as he rode back to his\nUncle's with Miss Susan Nipper.\n\nThere they found that Florence, much refreshed by sleep, had dined,\nand greatly improved the acquaintance of Solomon Gills, with whom she\nwas on terms of perfect confidence and ease. The black-eyed (who had\ncried so much that she might now be called the red-eyed, and who was\nvery silent and depressed) caught her in her arms without a word of\ncontradiction or reproach, and made a very hysterical meeting of it.\nThen converting the parlour, for the nonce, into a private tiring\nroom, she dressed her, with great care, in proper clothes; and\npresently led her forth, as like a Dombey as her natural\ndisqualifications admitted of her being made.\n\n'Good-night!' said Florence, running up to Solomon. 'You have been\nvery good to me.\n\nOld Sol was quite delighted, and kissed her like her grand-father.\n\n'Good-night, Walter! Good-bye!' said Florence.\n\n'Good-bye!' said Walter, giving both his hands.\n\n'I'll never forget you,' pursued Florence. 'No! indeed I never\nwill. Good-bye, Walter!' In the innocence of her grateful heart, the\nchild lifted up her face to his. Walter, bending down his own, raised\nit again, all red and burning; and looked at Uncle Sol, quite\nsheepishly.\n\n'Where's Walter?' 'Good-night, Walter!' 'Good-bye, Walter!' 'Shake\nhands once more, Walter!' This was still Florence's cry, after she was\nshut up with her little maid, in the coach. And when the coach at\nlength moved off, Walter on the door-step gaily turned the waving of\nher handkerchief, while the wooden Midshipman behind him seemed, like\nhimself, intent upon that coach alone, excluding all the other passing\ncoaches from his observation.\n\nIn good time Mr Dombey's mansion was gained again, and again there\nwas a noise of tongues in the library. Again, too, the coach was\nordered to wait - 'for Mrs Richards,' one of Susan's fellow-servants\nominously whispered, as she passed with Florence.\n\nThe entrance of the lost child made a slight sensation, but not\nmuch. Mr Dombey, who had never found her, kissed her once upon the\nforehead, and cautioned her not to run away again, or wander anywhere\nwith treacherous attendants. Mrs Chick stopped in her lamentations on\nthe corruption of human nature, even when beckoned to the paths of\nvirtue by a Charitable Grinder; and received her with a welcome\nsomething short of the reception due to none but perfect Dombeys. Miss\nTox regulated her feelings by the models before her. Richards, the\nculprit Richards, alone poured out her heart in broken words of\nwelcome, and bowed herself over the little wandering head as if she\nreally loved it.\n\n'Ah, Richards!' said Mrs Chick, with a sigh. 'It would have been\nmuch more satisfactory to those who wish to think well of their fellow\ncreatures, and much more becoming in you, if you had shown some proper\nfeeling, in time, for the little child that is now going to be\nprematurely deprived of its natural nourishment.\n\n'Cut off,' said Miss Tox, in a plaintive whisper, 'from one common\nfountain!'\n\n'If it was ungrateful case,' said Mrs Chick, solemnly, 'and I had\nyour reflections, Richards, I should feel as if the Charitable\nGrinders' dress would blight my child, and the education choke him.'\n\nFor the matter of that - but Mrs Chick didn't know it - he had been\npretty well blighted by the dress already; and as to the education,\neven its retributive effect might be produced in time, for it was a\nstorm of sobs and blows.\n\n'Louisa!' said Mr Dombey. 'It is not necessary to prolong these\nobservations. The woman is discharged and paid. You leave this house,\nRichards, for taking my son - my son,' said Mr Dombey, emphatically\nrepeating these two words, 'into haunts and into society which are not\nto be thought of without a shudder. As to the accident which befel\nMiss Florence this morning, I regard that as, in one great sense, a\nhappy and fortunate circumstance; inasmuch as, but for that\noccurrence, I never could have known - and from your own lips too - of\nwhat you had been guilty. I think, Louisa, the other nurse, the young\nperson,' here Miss Nipper sobbed aloud, 'being so much younger, and\nnecessarily influenced by Paul's nurse, may remain. Have the goodness\nto direct that this woman's coach is paid to' - Mr Dombey stopped and\nwinced - 'to Staggs's Gardens.'\n\nPolly moved towards the door, with Florence holding to her dress,\nand crying to her in the most pathetic manner not to go away. It was a\ndagger in the haughty father's heart, an arrow in his brain, to see\nhow the flesh and blood he could not disown clung to this obscure\nstranger, and he sitting by. Not that he cared to whom his daughter\nturned, or from whom turned away. The swift sharp agony struck through\nhim, as he thought of what his son might do.\n\nHis son cried lustily that night, at all events. Sooth to say, poor\nPaul had better reason for his tears than sons of that age often have,\nfor he had lost his second mother - his first, so far as he knew - by\na stroke as sudden as that natural affliction which had darkened the\nbeginning of his life. At the same blow, his sister too, who cried\nherself to sleep so mournfully, had lost as good and true a friend.\nBut that is quite beside the question. Let us waste no words about it.\n\n\n\nCHAPTER 7.\n\nA Bird's-eye Glimpse of Miss Tox's Dwelling-place: also\nof the State of Miss Tox's Affections\n\n\n\nMiss Tox inhabited a dark little house that had been squeezed, at\nsome remote period of English History, into a fashionable\nneighbourhood at the west end of the town, where it stood in the shade\nlike a poor relation of the great street round the corner, coldly\nlooked down upon by mighty mansions. It was not exactly in a court,\nand it was not exactly in a yard; but it was in the dullest of\nNo-Thoroughfares, rendered anxious and haggard by distant double\nknocks. The name of this retirement, where grass grew between the\nchinks in the stone pavement, was Princess's Place; and in Princess's\nPlace was Princess's Chapel, with a tinkling bell, where sometimes as\nmany as five-and-twenty people attended service on a Sunday. The\nPrincess's Arms was also there, and much resorted to by splendid\nfootmen. A sedan chair was kept inside the railing before the\nPrincess's Arms, but it had never come out within the memory of man;\nand on fine mornings, the top of every rail (there were\neight-and-forty, as Miss Tox had often counted) was decorated with a\npewter-pot.\n\nThere was another private house besides Miss Tox's in Princess's\nPlace: not to mention an immense Pair of gates, with an immense pair\nof lion-headed knockers on them, which were never opened by any\nchance, and were supposed to constitute a disused entrance to\nsomebody's stables. Indeed, there was a smack of stabling in the air\nof Princess's Place; and Miss Tox's bedroom (which was at the back)\ncommanded a vista of Mews, where hostlers, at whatever sort of work\nengaged, were continually accompanying themselves with effervescent\nnoises; and where the most domestic and confidential garments of\ncoachmen and their wives and families, usually hung, like Macbeth's\nbanners, on the outward walls.'\n\nAt this other private house in Princess's Place, tenanted by a\nretired butler who had married a housekeeper, apartments were let\nFurnished, to a single gentleman: to wit, a wooden-featured,\nblue-faced Major, with his eyes starting out of his head, in whom Miss\nTox recognised, as she herself expressed it, 'something so truly\nmilitary;' and between whom and herself, an occasional interchange of\nnewspapers and pamphlets, and such Platonic dalliance, was effected\nthrough the medium of a dark servant of the Major's who Miss Tox was\nquite content to classify as a 'native,' without connecting him with\nany geographical idea whatever.\n\nPerhaps there never was a smaller entry and staircase, than the\nentry and staircase of Miss Tox's house. Perhaps, taken altogether,\nfrom top to bottom, it was the most inconvenient little house in\nEngland, and the crookedest; but then, Miss Tox said, what a\nsituation! There was very little daylight to be got there in the\nwinter: no sun at the best of times: air was out of the question, and\ntraffic was walled out. Still Miss Tox said, think of the situation!\nSo said the blue-faced Major, whose eyes were starting out of his\nhead: who gloried in Princess's Place: and who delighted to turn the\nconversation at his club, whenever he could, to something connected\nwith some of the great people in the great street round the corner,\nthat he might have the satisfaction of saying they were his\nneighbours.\n\nIn short, with Miss Tox and the blue-faced Major, it was enough for\nPrincess's Place - as with a very small fragment of society, it is\nenough for many a little hanger-on of another sort - to be well\nconnected, and to have genteel blood in its veins. It might be poor,\nmean, shabby, stupid, dull. No matter. The great street round the\ncorner trailed off into Princess's Place; and that which of High\nHolborn would have become a choleric word, spoken of Princess's Place\nbecame flat blasphemy.\n\nThe dingy tenement inhabited by Miss Tox was her own; having been\ndevised and bequeathed to her by the deceased owner of the fishy eye\nin the locket, of whom a miniature portrait, with a powdered head and\na pigtail, balanced the kettle-holder on opposite sides of the parlour\nfireplace. The greater part of the furniture was of the powdered-head\nand pig-tail period: comprising a plate-warmer, always languishing and\nsprawling its four attenuated bow legs in somebody's way; and an\nobsolete harpsichord, illuminated round the maker's name with a\npainted garland of sweet peas. In any part of the house, visitors were\nusually cognizant of a prevailing mustiness; and in warm weather Miss\nTox had been seen apparently writing in sundry chinks and crevices of\nthe wainscoat with the the wrong end of a pen dipped in spirits of\nturpentine.\n\nAlthough Major Bagstock had arrived at what is called in polite\nliterature, the grand meridian of life, and was proceeding on his\njourney downhill with hardly any throat, and a very rigid pair of\njaw-bones, and long-flapped elephantine ears, and his eyes and\ncomplexion in the state of artificial excitement already mentioned, he\nwas mightily proud of awakening an interest in Miss Tox, and tickled\nhis vanity with the fiction that she was a splendid woman who had her\neye on him. This he had several times hinted at the club: in connexion\nwith little jocularities, of which old Joe Bagstock, old Joey\nBagstock, old J. Bagstock, old Josh Bagstock, or so forth, was the\nperpetual theme: it being, as it were, the Major's stronghold and\ndonjon-keep of light humour, to be on the most familiar terms with his\nown name.\n\n'Joey B., Sir,'the Major would say, with a flourish of his\nwalking-stick, 'is worth a dozen of you. If you had a few more of the\nBagstock breed among you, Sir, you'd be none the worse for it. Old\nJoe, Sir, needn't look far for a wile even now, if he was on the\nlook-out; but he's hard-hearted, Sir, is Joe - he's tough, Sir, tough,\nand de-vilish sly!' After such a declaration, wheezing sounds would be\nheard; and the Major's blue would deepen into purple, while his eyes\nstrained and started convulsively.\n\nNotwithstanding his very liberal laudation of himself, however, the\nMajor was selfish. It may be doubted whether there ever was a more\nentirely selfish person at heart; or at stomach is perhaps a better\nexpression, seeing that he was more decidedly endowed with that latter\norgan than with the former. He had no idea of being overlooked or\nslighted by anybody; least of all, had he the remotest comprehension\nof being overlooked and slighted by Miss Tox.\n\nAnd yet, Miss Tox, as it appeared, forgot him - gradually forgot\nhim. She began to forget him soon after her discovery of the Toodle\nfamily. She continued to forget him up to the time of the christening.\nShe went on forgetting him with compound interest after that.\nSomething or somebody had superseded him as a source of interest.\n\n'Good morning, Ma'am,' said the Major, meeting Miss Tox in\nPrincess's Place, some weeks after the changes chronicled in the last\nchapter.\n\n'Good morning, Sir,' said Miss Tox; very coldly.\n\n'Joe Bagstock, Ma'am,' observed the Major, with his usual\ngallantry, 'has not had the happiness of bowing to you at your window,\nfor a considerable period. Joe has been hardly used, Ma'am. His sun\nhas been behind a cloud.'\n\nMiss Tox inclined her head; but very coldly indeed.\n\n'Joe's luminary has been out of town, Ma'am, perhaps,' inquired the\nMajor.\n\n'I? out of town? oh no, I have not been out of town,' said Miss\nTox. 'I have been much engaged lately. My time is nearly all devoted\nto some very intimate friends. I am afraid I have none to spare, even\nnow. Good morning, Sir!'\n\nAs Miss Tox, with her most fascinating step and carriage,\ndisappeared from Princess's Place, the Major stood looking after her\nwith a bluer face than ever: muttering and growling some not at all\ncomplimentary remarks.\n\n'Why, damme, Sir,' said the Major, rolling his lobster eyes round\nand round Princess's Place, and apostrophizing its fragrant air, 'six\nmonths ago, the woman loved the ground Josh Bagstock walked on. What's\nthe meaning of it?'\n\nThe Major decided, after some consideration, that it meant\nmantraps; that it meant plotting and snaring; that Miss Tox was\ndigging pitfalls. 'But you won't catch Joe, Ma'am,' said the Major.\n'He's tough, Ma'am, tough, is J.B. Tough, and de-vilish sly!' over\nwhich reflection he chuckled for the rest of the day.\n\nBut still, when that day and many other days were gone and past, it\nseemed that Miss Tox took no heed whatever of the Major, and thought\nnothing at all about him. She had been wont, once upon a time, to look\nout at one of her little dark windows by accident, and blushingly\nreturn the Major's greeting; but now, she never gave the Major a\nchance, and cared nothing at all whether he looked over the way or\nnot. Other changes had come to pass too. The Major, standing in the\nshade of his own apartment, could make out that an air of greater\nsmartness had recently come over Miss Tox's house; that a new cage\nwith gilded wires had been provided for the ancient little canary\nbird; that divers ornaments, cut out of coloured card-boards and\npaper, seemed to decorate the chimney-piece and tables; that a plant\nor two had suddenly sprung up in the windows; that Miss Tox\noccasionally practised on the harpsichord, whose garland of sweet peas\nwas always displayed ostentatiously, crowned with the Copenhagen and\nBird Waltzes in a Music Book of Miss Tox's own copying.\n\nOver and above all this, Miss Tox had long been dressed with\nuncommon care and elegance in slight mourning. But this helped the\nMajor out of his difficulty; and be determined within himself that she\nhad come into a small legacy, and grown proud.\n\nIt was on the very next day after he had eased his mind by arriving\nat this decision, that the Major, sitting at his breakfast, saw an\napparition so tremendous and wonderful in Miss Tox's little\ndrawing-room, that he remained for some time rooted to his chair;\nthen, rushing into the next room, returned with a double-barrelled\nopera-glass, through which he surveyed it intently for some minutes.\n\n'It's a Baby, Sir,' said the Major, shutting up the glass again,\n'for fifty thousand pounds!'\n\nThe Major couldn't forget it. He could do nothing but whistle, and\nstare to that extent, that his eyes, compared with what they now\nbecame, had been in former times quite cavernous and sunken. Day after\nday, two, three, four times a week, this Baby reappeared. The Major\ncontinued to stare and whistle. To all other intents and purposes he\nwas alone in Princess's Place. Miss Tox had ceased to mind what he\ndid. He might have been black as well as blue, and it would have been\nof no consequence to her.\n\nThe perseverance with which she walked out of Princess's Place to\nfetch this baby and its nurse, and walked back with them, and walked\nhome with them again, and continually mounted guard over them; and the\nperseverance with which she nursed it herself, and fed it, and played\nwith it, and froze its young blood with airs upon the harpsichord, was\nextraordinary. At about this same period too, she was seized with a\npassion for looking at a certain bracelet; also with a passion for\nlooking at the moon, of which she would take long observations from\nher chamber window. But whatever she looked at; sun, moon, stars, or\nbracelet; she looked no more at the Major. And the Major whistled, and\nstared, and wondered, and dodged about his room, and could make\nnothing of it.\n\n'You'll quite win my brother Paul's heart, and that's the truth, my\ndear,' said Mrs Chick, one day.\n\nMiss Tox turned pale.\n\n'He grows more like Paul every day,' said Mrs Chick.\n\nMiss Tox returned no other reply than by taking the little Paul in\nher arms, and making his cockade perfectly flat and limp with her\ncaresses.\n\n'His mother, my dear,' said Miss Tox, 'whose acquaintance I was to\nhave made through you, does he at all resemble her?'\n\n'Not at all,' returned Louisa\n\n'She was - she was pretty, I believe?' faltered Miss Tox.\n\n'Why, poor dear Fanny was interesting,' said Mrs Chick, after some\njudicial consideration. 'Certainly interesting. She had not that air\nof commanding superiority which one would somehow expect, almost as a\nmatter of course, to find in my brother's wife; nor had she that\nstrength and vigour of mind which such a man requires.'\n\nMiss Tox heaved a deep sigh.\n\n'But she was pleasing:' said Mrs Chick: 'extremely so. And she\nmeant! - oh, dear, how well poor Fanny meant!'\n\n'You Angel!' cried Miss Tox to little Paul. 'You Picture of your\nown Papa!'\n\nIf the Major could have known how many hopes and ventures, what a\nmultitude of plans and speculations, rested on that baby head; and\ncould have seen them hovering, in all their heterogeneous confusion\nand disorder, round the puckered cap of the unconscious little Paul;\nhe might have stared indeed. Then would he have recognised, among the\ncrowd, some few ambitious motes and beams belonging to Miss Tox; then\nwould he perhaps have understood the nature of that lady's faltering\ninvestment in the Dombey Firm.\n\nIf the child himself could have awakened in the night, and seen,\ngathered about his cradle-curtains, faint reflections of the dreams\nthat other people had of him, they might have scared him, with good\nreason. But he slumbered on, alike unconscious of the kind intentions\nof Miss Tox, the wonder of the Major, the early sorrows of his sister,\nand the stern visions of his father; and innocent that any spot of\nearth contained a Dombey or a Son.\n\n\n\nCHAPTER 8.\n\nPaul's Further Progress, Growth and Character\n\n\n\nBeneath the watching and attentive eyes of Time - so far another\nMajor - Paul's slumbers gradually changed. More and more light broke\nin upon them; distincter and distincter dreams disturbed them; an\naccumulating crowd of objects and impressions swarmed about his rest;\nand so he passed from babyhood to childhood, and became a talking,\nwalking, wondering Dombey.\n\nOn the downfall and banishment of Richards, the nursery may be said\nto have been put into commission: as a Public Department is sometimes,\nwhen no individual Atlas can be found to support it The Commissioners\nwere, of course, Mrs Chick and Miss Tox: who devoted themselves to\ntheir duties with such astonishing ardour that Major Bagstock had\nevery day some new reminder of his being forsaken, while Mr Chick,\nbereft of domestic supervision, cast himself upon the gay world, dined\nat clubs and coffee-houses, smelt of smoke on three different\noccasions, went to the play by himself, and in short, loosened (as Mrs\nChick once told him) every social bond, and moral obligation.\n\nYet, in spite of his early promise, all this vigilance and care\ncould not make little Paul a thriving boy. Naturally delicate,\nperhaps, he pined and wasted after the dismissal of his nurse, and,\nfor a long time, seemed but to wait his opportunity of gliding through\ntheir hands, and seeking his lost mother. This dangerous ground in his\nsteeple-chase towards manhood passed, he still found it very rough\nriding, and was grievously beset by all the obstacles in his course.\nEvery tooth was a break-neck fence, and every pimple in the measles a\nstone wall to him. He was down in every fit of the hooping-cough, and\nrolled upon and crushed by a whole field of small diseases, that came\ntrooping on each other's heels to prevent his getting up again. Some\nbird of prey got into his throat instead of the thrush; and the very\nchickens turning ferocious - if they have anything to do with that\ninfant malady to which they lend their name - worried him like\ntiger-cats.\n\nThe chill of Paul's christening had struck home, perhaps to some\nsensitive part of his nature, which could not recover itself in the\ncold shade of his father; but he was an unfortunate child from that\nday. Mrs Wickam often said she never see a dear so put upon.\n\nMrs Wickam was a waiter's wife - which would seem equivalent to\nbeing any other man's widow - whose application for an engagement in\nMr Dombey's service had been favourably considered, on account of the\napparent impossibility of her having any followers, or anyone to\nfollow; and who, from within a day or two of Paul's sharp weaning, had\nbeen engaged as his nurse. Mrs Wickam was a meek woman, of a fair\ncomplexion, with her eyebrows always elevated, and her head always\ndrooping; who was always ready to pity herself, or to be pitied, or to\npity anybody else; and who had a surprising natural gift of viewing\nall subjects in an utterly forlorn and pitiable light, and bringing\ndreadful precedents to bear upon them, and deriving the greatest\nconsolation from the exercise of that talent.\n\nIt is hardly necessary to observe, that no touch of this quality\never reached the magnificent knowledge of Mr Dombey. It would have\nbeen remarkable, indeed, if any had; when no one in the house - not\neven Mrs Chick or Miss Tox - dared ever whisper to him that there had,\non any one occasion, been the least reason for uneasiness in reference\nto little Paul. He had settled, within himself, that the child must\nnecessarily pass through a certain routine of minor maladies, and that\nthe sooner he did so the better. If he could have bought him off, or\nprovided a substitute, as in the case of an unlucky drawing for the\nmilitia, he would have been glad to do so, on liberal terms. But as\nthis was not feasible, he merely wondered, in his haughty-manner, now\nand then, what Nature meant by it; and comforted himself with the\nreflection that there was another milestone passed upon the road, and\nthat the great end of the journey lay so much the nearer. For the\nfeeling uppermost in his mind, now and constantly intensifying, and\nincreasing in it as Paul grew older, was impatience. Impatience for\nthe time to come, when his visions of their united consequence and\ngrandeur would be triumphantly realized.\n\nSome philosophers tell us that selfishness is at the root of our\nbest loves and affections.' Mr Dombey's young child was, from the\nbeginning, so distinctly important to him as a part of his own\ngreatness, or (which is the same thing) of the greatness of Dombey and\nSon, that there is no doubt his parental affection might have been\neasily traced, like many a goodly superstructure of fair fame, to a\nvery low foundation. But he loved his son with all the love he had. If\nthere were a warm place in his frosty heart, his son occupied it; if\nits very hard surface could receive the impression of any image, the\nimage of that son was there; though not so much as an infant, or as a\nboy, but as a grown man - the 'Son' of the Firm. Therefore he was\nimpatient to advance into the future, and to hurry over the\nintervening passages of his history. Therefore he had little or no\nanxiety' about them, in spite of his love; feeling as if the boy had a\ncharmed life, and must become the man with whom he held such constant\ncommunication in his thoughts, and for whom he planned and projected,\nas for an existing reality, every day.\n\nThus Paul grew to be nearly five years old. He was a pretty little\nfellow; though there was something wan and wistful in his small face,\nthat gave occasion to many significant shakes of Mrs Wickam's head,\nand many long-drawn inspirations of Mrs Wickam's breath. His temper\ngave abundant promise of being imperious in after-life; and he had as\nhopeful an apprehension of his own importance, and the rightful\nsubservience of all other things and persons to it, as heart could\ndesire. He was childish and sportive enough at times, and not of a\nsullen disposition; but he had a strange, old-fashioned, thoughtful\nway, at other times, of sitting brooding in his miniature arm-chair,\nwhen he looked (and talked) like one of those terrible little Beings\nin the Fairy tales, who, at a hundred and fifty or two hundred years\nof age, fantastically represent the children for whom they have been\nsubstituted. He would frequently be stricken with this precocious mood\nupstairs in the nursery; and would sometimes lapse into it suddenly,\nexclaiming that he was tired: even while playing with Florence, or\ndriving Miss Tox in single harness. But at no time did he fall into it\nso surely, as when, his little chair being carried down into his\nfather's room, he sat there with him after dinner, by the fire. They\nwere the strangest pair at such a time that ever firelight shone upon.\nMr Dombey so erect and solemn, gazing at the blare; his little image,\nwith an old, old face, peering into the red perspective with the fixed\nand rapt attention of a sage. Mr Dombey entertaining complicated\nworldly schemes and plans; the little image entertaining Heaven knows\nwhat wild fancies, half-formed thoughts, and wandering speculations.\nMr Dombey stiff with starch and arrogance; the little image by\ninheritance, and in unconscious imitation. The two so very much alike,\nand yet so monstrously contrasted.\n\nOn one of these occasions, when they had both been perfectly quiet\nfor a long time, and Mr Dombey only knew that the child was awake by\noccasionally glancing at his eye, where the bright fire was sparkling\nlike a jewel, little Paul broke silence thus:\n\n'Papa! what's money?'\n\nThe abrupt question had such immediate reference to the subject of\nMr Dombey's thoughts, that Mr Dombey was quite disconcerted.\n\n'What is money, Paul?' he answered. 'Money?'\n\n'Yes,' said the child, laying his hands upon the elbows of his\nlittle chair, and turning the old face up towards Mr Dombey's; 'what\nis money?'\n\nMr Dombey was in a difficulty. He would have liked to give him some\nexplanation involving the terms circulating-medium, currency,\ndepreciation of currency', paper, bullion, rates of exchange, value of\nprecious metals in the market, and so forth; but looking down at the\nlittle chair, and seeing what a long way down it was, he answered:\n'Gold, and silver, and copper. Guineas, shillings, half-pence. You\nknow what they are?'\n\n'Oh yes, I know what they are,' said Paul. 'I don't mean that,\nPapa. I mean what's money after all?'\n\nHeaven and Earth, how old his face was as he turned it up again\ntowards his father's!\n\n'What is money after all!' said Mr Dombey, backing his chair a\nlittle, that he might the better gaze in sheer amazement at the\npresumptuous atom that propounded such an inquiry.\n\n'I mean, Papa, what can it do?' returned Paul, folding his arms\n(they were hardly long enough to fold), and looking at the fire, and\nup at him, and at the fire, and up at him again.\n\nMr Dombey drew his chair back to its former place, and patted him\non the head. 'You'll know better by-and-by, my man,' he said. 'Money,\nPaul, can do anything.' He took hold of the little hand, and beat it\nsoftly against one of his own, as he said so.\n\nBut Paul got his hand free as soon as he could; and rubbing it\ngently to and fro on the elbow of his chair, as if his wit were in the\npalm, and he were sharpening it - and looking at the fire again, as\nthough the fire had been his adviser and prompter - repeated, after a\nshort pause:\n\n'Anything, Papa?'\n\n'Yes. Anything - almost,' said Mr Dombey.\n\n'Anything means everything, don't it, Papa?' asked his son: not\nobserving, or possibly not understanding, the qualification.\n\n'It includes it: yes,' said Mr Dombey.\n\n'Why didn't money save me my Mama?' returned the child. 'It isn't\ncruel, is it?'\n\n'Cruel!' said Mr Dombey, settling his neckcloth, and seeming to\nresent the idea. 'No. A good thing can't be cruel.'\n\n'If it's a good thing, and can do anything,' said the little\nfellow, thoughtfully, as he looked back at the fire, 'I wonder why it\ndidn't save me my Mama.'\n\nHe didn't ask the question of his father this time. Perhaps he had\nseen, with a child's quickness, that it had already made his father\nuncomfortable. But he repeated the thought aloud, as if it were quite\nan old one to him, and had troubled him very much; and sat with his\nchin resting on his hand, still cogitating and looking for an\nexplanation in the fire.\n\nMr Dombey having recovered from his surprise, not to say his alarm\n(for it was the very first occasion on which the child had ever\nbroached the subject of his mother to him, though he had had him\nsitting by his side, in this same manner, evening after evening),\nexpounded to him how that money, though a very potent spirit, never to\nbe disparaged on any account whatever, could not keep people alive\nwhose time was come to die; and how that we must all die,\nunfortunately, even in the City, though we were never so rich. But how\nthat money caused us to be honoured, feared, respected, courted, and\nadmired, and made us powerful and glorious in the eyes of all men; and\nhow that it could, very often, even keep off death, for a long time\ntogether. How, for example, it had secured to his Mama the services of\nMr Pilkins, by which be, Paul, had often profited himself; likewise of\nthe great Doctor Parker Peps, whom he had never known. And how it\ncould do all, that could be done. This, with more to the same purpose,\nMr Dombey instilled into the mind of his son, who listened\nattentively, and seemed to understand the greater part of what was\nsaid to him.\n\n'It can't make me strong and quite well, either, Papa; can it?'\nasked Paul, after a short silence; rubbing his tiny hands.\n\n'Why, you are strong and quite well,' returned Mr Dombey. 'Are you\nnot?'\n\nOh! the age of the face that was turned up again, with an\nexpression, half of melancholy, half of slyness, on it!\n\n'You are as strong and well as such little people usually are? Eh?'\nsaid Mr Dombey.\n\n'Florence is older than I am, but I'm not as strong and well as\nFlorence, 'I know,' returned the child; 'and I believe that when\nFlorence was as little as me, she could play a great deal longer at a\ntime without tiring herself. I am so tired sometimes,' said little\nPaul, warming his hands, and looking in between the bars of the grate,\nas if some ghostly puppet-show were performing there, 'and my bones\nache so (Wickam says it's my bones), that I don't know what to do.'\n\n'Ay! But that's at night,' said Mr Dombey, drawing his own chair\ncloser to his son's, and laying his hand gently on his back; 'little\npeople should be tired at night, for then they sleep well.'\n\n'Oh, it's not at night, Papa,' returned the child, 'it's in the\nday; and I lie down in Florence's lap, and she sings to me. At night I\ndream about such cu-ri-ous things!'\n\nAnd he went on, warming his hands again, and thinking about them,\nlike an old man or a young goblin.\n\nMr Dombey was so astonished, and so uncomfortable, and so perfectly\nat a loss how to pursue the conversation, that he could only sit\nlooking at his son by the light of the fire, with his hand resting on\nhis back, as if it were detained there by some magnetic attraction.\nOnce he advanced his other hand, and turned the contemplative face\ntowards his own for a moment. But it sought the fire again as soon as\nhe released it; and remained, addressed towards the flickering blaze,\nuntil the nurse appeared, to summon him to bed.\n\n'I want Florence to come for me,' said Paul.\n\n'Won't you come with your poor Nurse Wickam, Master Paul?' inquired\nthat attendant, with great pathos.\n\n'No, I won't,' replied Paul, composing himself in his arm-chair\nagain, like the master of the house.\n\nInvoking a blessing upon his innocence, Mrs Wickam withdrew, and\npresently Florence appeared in her stead. The child immediately\nstarted up with sudden readiness and animation, and raised towards his\nfather in bidding him good-night, a countenance so much brighter, so\nmuch younger, and so much more child-like altogether, that Mr Dombey,\nwhile he felt greatly reassured by the change, was quite amazed at it.\n\nAfter they had left the room together, he thought he heard a soft\nvoice singing; and remembering that Paul had said his sister sung to\nhim, he had the curiosity to open the door and listen, and look after\nthem. She was toiling up the great, wide, vacant staircase, with him\nin her arms; his head was lying on her shoulder, one of his arms\nthrown negligently round her neck. So they went, toiling up; she\nsinging all the way, and Paul sometimes crooning out a feeble\naccompaniment. Mr Dombey looked after them until they reached the top\nof the staircase - not without halting to rest by the way - and passed\nout of his sight; and then he still stood gazing upwards, until the\ndull rays of the moon, glimmering in a melancholy manner through the\ndim skylight, sent him back to his room.\n\nMrs Chick and Miss Tox were convoked in council at dinner next day;\nand when the cloth was removed, Mr Dombey opened the proceedings by\nrequiring to be informed, without any gloss or reservation, whether\nthere was anything the matter with Paul, and what Mr Pilkins said\nabout him.\n\n'For the child is hardly,' said Mr Dombey, 'as stout as I could\nwish.'\n\n'My dear Paul,' returned Mrs Chick, 'with your usual happy\ndiscrimination, which I am weak enough to envy you, every time I am in\nyour company; and so I think is Miss Tox\n\n'Oh my dear!' said Miss Tox, softly, 'how could it be otherwise?\nPresumptuous as it is to aspire to such a level; still, if the bird of\nnight may - but I'll not trouble Mr Dombey with the sentiment. It\nmerely relates to the Bulbul.'\n\nMr Dombey bent his head in stately recognition of the Bulbuls as an\nold-established body.\n\n'With your usual happy discrimination, my dear Paul,' resumed Mrs\nChick, 'you have hit the point at once. Our darling is altogether as\nstout as we could wish. The fact is, that his mind is too much for\nhim. His soul is a great deal too large for his frame. I am sure the\nway in which that dear child talks!'said Mrs Chick, shaking her head;\n'no one would believe. His expressions, Lucretia, only yesterday upon\nthe subject of Funerals!\n\n'I am afraid,' said Mr Dombey, interrupting her testily, 'that some\nof those persons upstairs suggest improper subjects to the child. He\nwas speaking to me last night about his - about his Bones,' said Mr\nDombey, laying an irritated stress upon the word. 'What on earth has\nanybody to do with the - with the - Bones of my son? He is not a\nliving skeleton, I suppose.\n\n'Very far from it,' said Mrs Chick, with unspeakable expression.\n\n'I hope so,' returned her brother. 'Funerals again! who talks to\nthe child of funerals? We are not undertakers, or mutes, or\ngrave-diggers, I believe.'\n\n'Very far from it,' interposed Mrs Chick, with the same profound\nexpression as before.\n\n'Then who puts such things into his head?' said Mr Dombey. 'Really\nI was quite dismayed and shocked last night. Who puts such things into\nhis head, Louisa?'\n\n'My dear Paul,' said Mrs Chick, after a moment's silence, 'it is of\nno use inquiring. I do not think, I will tell you candidly that Wickam\nis a person of very cheerful spirit, or what one would call a - '\n\n'A daughter of Momus,' Miss Tox softly suggested.\n\n'Exactly so,' said Mrs Chick; 'but she is exceedingly attentive and\nuseful, and not at all presumptuous; indeed I never saw a more\nbiddable woman. I would say that for her, if I was put upon my trial\nbefore a Court of Justice.'\n\n'Well! you are not put upon your trial before a Court of Justice,\nat present, Louisa,' returned Mr Dombey, chafing,' and therefore it\ndon't matter.\n\n'My dear Paul,' said Mrs Chick, in a warning voice, 'I must be\nspoken to kindly, or there is an end of me,' at the same time a\npremonitory redness developed itself in Mrs Chick's eyelids which was\nan invariable sign of rain, unless the weather changed directly.\n\n'I was inquiring, Louisa,' observed Mr Dombey, in an altered voice,\nand after a decent interval, 'about Paul's health and actual state.\n\n'If the dear child,' said Mrs Chick, in the tone of one who was\nsumming up what had been previously quite agreed upon, instead of\nsaying it all for the first time, 'is a little weakened by that last\nattack, and is not in quite such vigorous health as we could wish; and\nif he has some temporary weakness in his system, and does occasionally\nseem about to lose, for the moment, the use of his - '\n\nMrs Chick was afraid to say limbs, after Mr Dombey's recent\nobjection to bones, and therefore waited for a suggestion from Miss\nTox, who, true to her office, hazarded 'members.'\n\n'Members!' repeated Mr Dombey.\n\n'I think the medical gentleman mentioned legs this morning, my dear\nLouisa, did he not?' said Miss Tox.\n\n'Why, of course he did, my love,' retorted Mrs Chick, mildly\nreproachful. 'How can you ask me? You heard him. I say, if our dear\nPaul should lose, for the moment, the use of his legs, these are\ncasualties common to many children at his time of life, and not to be\nprevented by any care or caution. The sooner you understand that,\nPaul, and admit that, the better. If you have any doubt as to the\namount of care, and caution, and affection, and self-sacrifice, that\nhas been bestowed upon little Paul, I should wish to refer the\nquestion to your medical attendant, or to any of your dependants in\nthis house. Call Towlinson,' said Mrs Chick, 'I believe he has no\nprejudice in our favour; quite the contrary. I should wish to hear\nwhat accusation Towlinson can make!'\n\n'Surely you must know, Louisa,' observed Mr Dombey, 'that I don't\nquestion your natural devotion to, and regard for, the future head of\nmy house.'\n\n'I am glad to hear it, Paul,' said Mrs Chick; 'but really you are\nvery odd, and sometimes talk very strangely, though without meaning\nit, I know. If your dear boy's soul is too much for his body, Paul,\nyou should remember whose fault that is - who he takes after, I mean -\nand make the best of it. He's as like his Papa as he can be. People\nhave noticed it in the streets. The very beadle, I am informed,\nobserved it, so long ago as at his christening. He's a very\nrespectable man, with children of his own. He ought to know.'\n\n'Mr Pilkins saw Paul this morning, I believe?' said Mr Dombey.\n\n'Yes, he did,' returned his sister. 'Miss Tox and myself were\npresent. Miss Tox and myself are always present. We make a point of\nit. Mr Pilkins has seen him for some days past, and a very clever man\nI believe him to be. He says it is nothing to speak of; which I can\nconfirm, if that is any consolation; but he recommended, to-day,\nsea-air. Very wisely, Paul, I feel convinced.'\n\n'Sea-air,' repeated Mr Dombey, looking at his sister.\n\n'There is nothing to be made uneasy by, in that,'said Mrs Chick.\n'My George and Frederick were both ordered sea-air, when they were\nabout his age; and I have been ordered it myself a great many times. I\nquite agree with you, Paul, that perhaps topics may be incautiously\nmentioned upstairs before him, which it would be as well for his\nlittle mind not to expatiate upon; but I really don't see how that is\nto be helped, in the case of a child of his quickness. If he were a\ncommon child, there would be nothing in it. I must say I think, with\nMiss Tox, that a short absence from this house, the air of Brighton,\nand the bodily and mental training of so judicious a person as Mrs\nPipchin for instance - '\n\n'Who is Mrs Pipchin, Louisa?' asked Mr Dombey; aghast at this\nfamiliar introduction of a name he had never heard before.\n\n'Mrs Pipchin, my dear Paul,' returned his sister, 'is an elderly\nlady - Miss Tox knows her whole history - who has for some time\ndevoted all the energies of her mind, with the greatest success, to\nthe study and treatment of infancy, and who has been extremely well\nconnected. Her husband broke his heart in - how did you say her\nhusband broke his heart, my dear? I forget the precise circumstances.\n\n'In pumping water out of the Peruvian Mines,' replied Miss Tox.\n\n'Not being a Pumper himself, of course,' said Mrs Chick, glancing\nat her brother; and it really did seem necessary to offer the\nexplanation, for Miss Tox had spoken of him as if he had died at the\nhandle; 'but having invested money in the speculation, which failed. I\nbelieve that Mrs Pipchin's management of children is quite\nastonishing. I have heard it commended in private circles ever since I\nwas - dear me - how high!' Mrs Chick's eye wandered about the bookcase\nnear the bust of Mr Pitt, which was about ten feet from the ground.\n\n'Perhaps I should say of Mrs Pipchin, my dear Sir,' observed Miss\nTox, with an ingenuous blush, 'having been so pointedly referred to,\nthat the encomium which has been passed upon her by your sweet sister\nis well merited. Many ladies and gentleman, now grown up to be\ninteresting members of society, have been indebted to her care. The\nhumble individual who addresses you was once under her charge. I\nbelieve juvenile nobility itself is no stranger to her establishment.'\n\n'Do I understand that this respectable matron keeps an\nestablishment, Miss Tox?' the Mr Dombey, condescendingly.\n\n'Why, I really don't know,' rejoined that lady, 'whether I am\njustified in calling it so. It is not a Preparatory School by any\nmeans. Should I express my meaning,' said Miss Tox, with peculiar\nsweetness,'if I designated it an infantine Boarding-House of a very\nselect description?'\n\n'On an exceedingly limited and particular scale,' suggested Mrs\nChick, with a glance at her brother.\n\n'Oh! Exclusion itself!' said Miss Tox.\n\nThere was something in this. Mrs Pipchin's husband having broken\nhis heart of the Peruvian mines was good. It had a rich sound.\nBesides, Mr Dombey was in a state almost amounting to consternation at\nthe idea of Paul remaining where he was one hour after his removal had\nbeen recommended by the medical practitioner. It was a stoppage and\ndelay upon the road the child must traverse, slowly at the best,\nbefore the goal was reached. Their recommendation of Mrs Pipchin had\ngreat weight with him; for he knew that they were jealous of any\ninterference with their charge, and he never for a moment took it into\naccount that they might be solicitous to divide a responsibility, of\nwhich he had, as shown just now, his own established views. Broke his\nheart of the Peruvian mines, mused Mr Dombey. Well! a very respectable\nway of doing It.\n\n'Supposing we should decide, on to-morrow's inquiries, to send Paul\ndown to Brighton to this lady, who would go with him?' inquired Mr\nDombey, after some reflection.\n\n'I don't think you could send the child anywhere at present without\nFlorence, my dear Paul,' returned his sister, hesitating. 'It's quite\nan infatuation with him. He's very young, you know, and has his\nfancies.'\n\nMr Dombey turned his head away, and going slowly to the bookcase,\nand unlocking it, brought back a book to read.\n\n'Anybody else, Louisa?' he said, without looking up, and turning\nover the leaves.\n\n'Wickam, of course. Wickam would be quite sufficient, I should\nsay,' returned his sister. 'Paul being in such hands as Mrs Pipchin's,\nyou could hardly send anybody who would be a further check upon her.\nYou would go down yourself once a week at least, of course.'\n\n'Of course,' said Mr Dombey; and sat looking at one page for an\nhour afterwards, without reading one word.\n\nThis celebrated Mrs Pipchin was a marvellous ill-favoured,\nill-conditioned old lady, of a stooping figure, with a mottled face,\nlike bad marble, a hook nose, and a hard grey eye, that looked as if\nit might have been hammered at on an anvil without sustaining any\ninjury. Forty years at least had elapsed since the Peruvian mines had\nbeen the death of Mr Pipchin; but his relict still wore black\nbombazeen, of such a lustreless, deep, dead, sombre shade, that gas\nitself couldn't light her up after dark, and her presence was a\nquencher to any number of candles. She was generally spoken of as 'a\ngreat manager' of children; and the secret of her management was, to\ngive them everything that they didn't like, and nothing that they did\n- which was found to sweeten their dispositions very much. She was\nsuch a bitter old lady, that one was tempted to believe there had been\nsome mistake in the application of the Peruvian machinery, and that\nall her waters of gladness and milk of human kindness, had been pumped\nout dry, instead of the mines.\n\nThe Castle of this ogress and child-queller was in a steep\nby-street at Brighton; where the soil was more than usually chalky,\nflinty, and sterile, and the houses were more than usually brittle and\nthin; where the small front-gardens had the unaccountable property of\nproducing nothing but marigolds, whatever was sown in them; and where\nsnails were constantly discovered holding on to the street doors, and\nother public places they were not expected to ornament, with the\ntenacity of cupping-glasses. In the winter time the air couldn't be\ngot out of the Castle, and in the summer time it couldn't be got in.\nThere was such a continual reverberation of wind in it, that it\nsounded like a great shell, which the inhabitants were obliged to hold\nto their ears night and day, whether they liked it or no. It was not,\nnaturally, a fresh-smelling house; and in the window of the front\nparlour, which was never opened, Mrs Pipchin kept a collection of\nplants in pots, which imparted an earthy flavour of their own to the\nestablishment. However choice examples of their kind, too, these\nplants were of a kind peculiarly adapted to the embowerment of Mrs\nPipchin. There were half-a-dozen specimens of the cactus, writhing\nround bits of lath, like hairy serpents; another specimen shooting out\nbroad claws, like a green lobster; several creeping vegetables,\npossessed of sticky and adhesive leaves; and one uncomfortable\nflower-pot hanging to the ceiling, which appeared to have boiled over,\nand tickling people underneath with its long green ends, reminded them\nof spiders - in which Mrs Pipchin's dwelling was uncommonly prolific,\nthough perhaps it challenged competition still more proudly, in the\nseason, in point of earwigs.\n\nMrs Pipchin's scale of charges being high, however, to all who\ncould afford to pay, and Mrs Pipchin very seldom sweetening the\nequable acidity of her nature in favour of anybody, she was held to be\nan old 'lady of remarkable firmness, who was quite scientific in her\nknowledge of the childish character.' On this reputation, and on the\nbroken heart of Mr Pipchin, she had contrived, taking one year with\nanother, to eke out a tolerable sufficient living since her husband's\ndemise. Within three days after Mrs Chick's first allusion to her,\nthis excellent old lady had the satisfaction of anticipating a\nhandsome addition to her current receipts, from the pocket of Mr\nDombey; and of receiving Florence and her little brother Paul, as\ninmates of the Castle.\n\nMrs Chick and Miss Tox, who had brought them down on the previous\nnight (which they all passed at an Hotel), had just driven away from\nthe door, on their journey home again; and Mrs Pipchin, with her back\nto the fire, stood, reviewing the new-comers, like an old soldier. Mrs\nPipchin's middle-aged niece, her good-natured and devoted slave, but\npossessing a gaunt and iron-bound aspect, and much afflicted with\nboils on her nose, was divesting Master Bitherstone of the clean\ncollar he had worn on parade. Miss Pankey, the only other little\nboarder at present, had that moment been walked off to the Castle\nDungeon (an empty apartment at the back, devoted to correctional\npurposes), for having sniffed thrice, in the presence of visitors.\n\n'Well, Sir,' said Mrs Pipchin to Paul, 'how do you think you shall\nlike me?'\n\n'I don't think I shall like you at all,' replied Paul. 'I want to\ngo away. This isn't my house.'\n\n'No. It's mine,' retorted Mrs Pipchin.\n\n'It's a very nasty one,' said Paul.\n\n'There's a worse place in it than this though,' said Mrs Pipchin,\n'where we shut up our bad boys.'\n\n'Has he ever been in it?' asked Paul: pointing out Master\nBitherstone.\n\nMrs Pipchin nodded assent; and Paul had enough to do, for the rest\nof that day, in surveying Master Bitherstone from head to foot, and\nwatching all the workings of his countenance, with the interest\nattaching to a boy of mysterious and terrible experiences.\n\nAt one o'clock there was a dinner, chiefly of the farinaceous and\nvegetable kind, when Miss Pankey (a mild little blue-eyed morsel of a\nchild, who was shampoo'd every morning, and seemed in danger of being\nrubbed away, altogether) was led in from captivity by the ogress\nherself, and instructed that nobody who sniffed before visitors ever\nwent to Heaven. When this great truth had been thoroughly impressed\nupon her, she was regaled with rice; and subsequently repeated the\nform of grace established in the Castle, in which there was a special\nclause, thanking Mrs Pipchin for a good dinner. Mrs Pipchin's niece,\nBerinthia, took cold pork. Mrs Pipchin, whose constitution required\nwarm nourishment, made a special repast of mutton-chops, which were\nbrought in hot and hot, between two plates, and smelt very nice.\n\nAs it rained after dinner, and they couldn't go out walking on the\nbeach, and Mrs Pipchin's constitution required rest after chops, they\nwent away with Berry (otherwise Berinthia) to the Dungeon; an empty\nroom looking out upon a chalk wall and a water-butt, and made ghastly\nby a ragged fireplace without any stove in it. Enlivened by company,\nhowever, this was the best place after all; for Berry played with them\nthere, and seemed to enjoy a game at romps as much as they did; until\nMrs Pipchin knocking angrily at the wall, like the Cock Lane Ghost'\nrevived, they left off, and Berry told them stories in a whisper until\ntwilight.\n\nFor tea there was plenty of milk and water, and bread and butter,\nwith a little black tea-pot for Mrs Pipchin and Berry, and buttered\ntoast unlimited for Mrs Pipchin, which was brought in, hot and hot,\nlike the chops. Though Mrs Pipchin got very greasy, outside, over this\ndish, it didn't seem to lubricate her internally, at all; for she was\nas fierce as ever, and the hard grey eye knew no softening.\n\nAfter tea, Berry brought out a little work-box, with the Royal\nPavilion on the lid, and fell to working busily; while Mrs Pipchin,\nhaving put on her spectacles and opened a great volume bound in green\nbaize, began to nod. And whenever Mrs Pipchin caught herself falling\nforward into the fire, and woke up, she filliped Master Bitherstone on\nthe nose for nodding too.\n\nAt last it was the children's bedtime, and after prayers they went\nto bed. As little Miss Pankey was afraid of sleeping alone in the\ndark, Mrs Pipchin always made a point of driving her upstairs herself,\nlike a sheep; and it was cheerful to hear Miss Pankey moaning long\nafterwards, in the least eligible chamber, and Mrs Pipchin now and\nthen going in to shake her. At about half-past nine o'clock the odour\nof a warm sweet-bread (Mrs Pipchin's constitution wouldn't go to sleep\nwithout sweet-bread) diversified the prevailing fragrance of the\nhouse, which Mrs Wickam said was 'a smell of building;' and slumber\nfell upon the Castle shortly after.\n\nThe breakfast next morning was like the tea over night, except that\nMrs Pipchin took her roll instead of toast, and seemed a little more\nirate when it was over. Master Bitherstone read aloud to the rest a\npedigree from Genesis judiciously selected by Mrs Pipchin), getting\nover the names with the ease and clearness of a person tumbling up the\ntreadmill. That done, Miss Pankey was borne away to be shampoo'd; and\nMaster Bitherstone to have something else done to him with salt water,\nfrom which he always returned very blue and dejected. Paul and\nFlorence went out in the meantime on the beach with Wickam - who was\nconstantly in tears - and at about noon Mrs Pipchin presided over some\nEarly Readings. It being a part of Mrs Pipchin's system not to\nencourage a child's mind to develop and expand itself like a young\nflower, but to open it by force like an oyster, the moral of these\nlessons was usually of a violent and stunning character: the hero - a\nnaughty boy - seldom, in the mildest catastrophe, being finished off\nanything less than a lion, or a bear.\n\nSuch was life at Mrs Pipchin's. On Saturday Mr Dombey came down;\nand Florence and Paul would go to his Hotel, and have tea They passed\nthe whole of Sunday with him, and generally rode out before dinner;\nand on these occasions Mr Dombey seemed to grow, like Falstaff's\nassailants, and instead of being one man in buckram, to become a\ndozen. Sunday evening was the most melancholy evening in the week; for\nMrs Pipchin always made a point of being particularly cross on Sunday\nnights. Miss Pankey was generally brought back from an aunt's at\nRottingdean, in deep distress; and Master Bitherstone, whose relatives\nwere all in India, and who was required to sit, between the services,\nin an erect position with his head against the parlour wall, neither\nmoving hand nor foot, suffered so acutely in his young spirits that he\nonce asked Florence, on a Sunday night, if she could give him any idea\nof the way back to Bengal.\n\nBut it was generally said that Mrs Pipchin was a woman of system\nwith children; and no doubt she was. Certainly the wild ones went home\ntame enough, after sojourning for a few months beneath her hospitable\nroof. It was generally said, too, that it was highly creditable of Mrs\nPipchin to have devoted herself to this way of life, and to have made\nsuch a sacrifice of her feelings, and such a resolute stand against\nher troubles, when Mr Pipchin broke his heart in the Peruvian mines.\n\nAt this exemplary old lady, Paul would sit staring in his little\narm-chair by the fire, for any length of time. He never seemed to know\nwhat weariness was, when he was looking fixedly at Mrs Pipchin. He was\nnot fond of her; he was not afraid of her; but in those old, old moods\nof his, she seemed to have a grotesque attraction for him. There he\nwould sit, looking at her, and warming his hands, and looking at her,\nuntil he sometimes quite confounded Mrs Pipchin, Ogress as she was.\nOnce she asked him, when they were alone, what he was thinking about.\n\n'You,' said Paul, without the least reserve.\n\n'And what are you thinking about me?' asked Mrs Pipchin.\n\n'I'm thinking how old you must be,' said Paul.\n\n'You mustn't say such things as that, young gentleman,' returned\nthe dame. 'That'll never do.'\n\n'Why not?' asked Paul.\n\n'Because it's not polite,' said Mrs Pipchin, snappishly.\n\n'Not polite?' said Paul.\n\n'No.'\n\n'It's not polite,' said Paul, innocently, 'to eat all the mutton\nchops and toast, Wickam says.\n\n'Wickam,' retorted Mrs Pipchin, colouring, 'is a wicked, impudent,\nbold-faced hussy.'\n\n'What's that?' inquired Paul.\n\n'Never you mind, Sir,' retorted Mrs Pipchin. 'Remember the story of\nthe little boy that was gored to death by a mad bull for asking\nquestions.'\n\n'If the bull was mad,' said Paul, 'how did he know that the boy had\nasked questions? Nobody can go and whisper secrets to a mad bull. I\ndon't believe that story.\n\n'You don't believe it, Sir?' repeated Mrs Pipchin, amazed.\n\n'No,' said Paul.\n\n'Not if it should happen to have been a tame bull, you little\nInfidel?' said Mrs Pipchin.\n\nAs Paul had not considered the subject in that light, and had\nfounded his conclusions on the alleged lunacy of the bull, he allowed\nhimself to be put down for the present. But he sat turning it over in\nhis mind, with such an obvious intention of fixing Mrs Pipchin\npresently, that even that hardy old lady deemed it prudent to retreat\nuntil he should have forgotten the subject.\n\nFrom that time, Mrs Pipchin appeared to have something of the same\nodd kind of attraction towards Paul, as Paul had towards her. She\nwould make him move his chair to her side of the fire, instead of\nsitting opposite; and there he would remain in a nook between Mrs\nPipchin and the fender, with all the light of his little face absorbed\ninto the black bombazeen drapery, studying every line and wrinkle of\nher countenance, and peering at the hard grey eye, until Mrs Pipchin\nwas sometimes fain to shut it, on pretence of dozing. Mrs Pipchin had\nan old black cat, who generally lay coiled upon the centre foot of the\nfender, purring egotistically, and winking at the fire until the\ncontracted pupils of his eyes were like two notes of admiration. The\ngood old lady might have been - not to record it disrespectfully - a\nwitch, and Paul and the cat her two familiars, as they all sat by the\nfire together. It would have been quite in keeping with the appearance\nof the party if they had all sprung up the chimney in a high wind one\nnight, and never been heard of any more.\n\nThis, however, never came to pass. The cat, and Paul, and Mrs\nPipchin, were constantly to be found in their usual places after dark;\nand Paul, eschewing the companionship of Master Bitherstone, went on\nstudying Mrs Pipchin, and the cat, and the fire, night after night, as\nif they were a book of necromancy, in three volumes.\n\nMrs Wickam put her own construction on Paul's eccentricities; and\nbeing confirmed in her low spirits by a perplexed view of chimneys\nfrom the room where she was accustomed to sit, and by the noise of the\nwind, and by the general dulness (gashliness was Mrs Wickam's strong\nexpression) of her present life, deduced the most dismal reflections\nfrom the foregoing premises. It was a part of Mrs Pipchin's policy to\nprevent her own 'young hussy' - that was Mrs Pipchin's generic name\nfor female servant - from communicating with Mrs Wickam: to which end\nshe devoted much of her time to concealing herself behind doors, and\nspringing out on that devoted maiden, whenever she made an approach\ntowards Mrs Wickam's apartment. But Berry was free to hold what\nconverse she could in that quarter, consistently with the discharge of\nthe multifarious duties at which she toiled incessantly from morning\nto night; and to Berry Mrs Wickam unburdened her mind.\n\n'What a pretty fellow he is when he's asleep!' said Berry, stopping\nto look at Paul in bed, one night when she took up Mrs Wickam's\nsupper.\n\n'Ah!' sighed Mrs Wickam. 'He need be.'\n\n'Why, he's not ugly when he's awake,' observed Berry.\n\n'No, Ma'am. Oh, no. No more was my Uncle's Betsey Jane,' said Mrs\nWickam.\n\nBerry looked as if she would like to trace the connexion of ideas\nbetween Paul Dombey and Mrs Wickam's Uncle's Betsey Jane\n\n'My Uncle's wife,' Mrs Wickam went on to say, 'died just like his\nMama. My Uncle's child took on just as Master Paul do.'\n\n'Took on! You don't think he grieves for his Mama, sure?' argued\nBerry, sitting down on the side of the bed. 'He can't remember\nanything about her, you know, Mrs Wickam. It's not possible.'\n\n'No, Ma'am,' said Mrs Wickam 'No more did my Uncle's child. But my\nUncle's child said very strange things sometimes, and looked very\nstrange, and went on very strange, and was very strange altogether. My\nUncle's child made people's blood run cold, some times, she did!'\n\n'How?' asked Berry.\n\n'I wouldn't have sat up all night alone with Betsey Jane!' said Mrs\nWickam, 'not if you'd have put Wickam into business next morning for\nhimself. I couldn't have done it, Miss Berry.\n\nMiss Berry naturally asked why not? But Mrs Wickam, agreeably to\nthe usage of some ladies in her condition, pursued her own branch of\nthe subject, without any compunction.\n\n'Betsey Jane,' said Mrs Wickam, 'was as sweet a child as I could\nwish to see. I couldn't wish to see a sweeter. Everything that a child\ncould have in the way of illnesses, Betsey Jane had come through. The\ncramps was as common to her,' said Mrs Wickam, 'as biles is to\nyourself, Miss Berry.' Miss Berry involuntarily wrinkled her nose.\n\n'But Betsey Jane,' said Mrs Wickam, lowering her voice, and looking\nround the room, and towards Paul in bed, 'had been minded, in her\ncradle, by her departed mother. I couldn't say how, nor I couldn't say\nwhen, nor I couldn't say whether the dear child knew it or not, but\nBetsey Jane had been watched by her mother, Miss Berry!' and Mrs\nWickam, with a very white face, and with watery eyes, and with a\ntremulous voice, again looked fearfully round the room, and towards\nPaul in bed.\n\n'Nonsense!' cried Miss Berry - somewhat resentful of the idea.\n\n'You may say nonsense! I ain't offended, Miss. I hope you may be\nable to think in your own conscience that it is nonsense; you'll find\nyour spirits all the better for it in this - you'll excuse my being so\nfree - in this burying-ground of a place; which is wearing of me down.\nMaster Paul's a little restless in his sleep. Pat his back, if you\nplease.'\n\n'Of course you think,' said Berry, gently doing what she was asked,\n'that he has been nursed by his mother, too?'\n\n'Betsey Jane,' returned Mrs Wickam in her most solemn tones, 'was\nput upon as that child has been put upon, and changed as that child\nhas changed. I have seen her sit, often and often, think, think,\nthinking, like him. I have seen her look, often and often, old, old,\nold, like him. I have heard her, many a time, talk just like him. I\nconsider that child and Betsey Jane on the same footing entirely, Miss\nBerry.'\n\n'Is your Uncle's child alive?' asked Berry.\n\n'Yes, Miss, she is alive,' returned Mrs Wickam with an air of\ntriumph, for it was evident. Miss Berry expected the reverse; 'and is\nmarried to a silver-chaser. Oh yes, Miss, SHE is alive,' said Mrs\nWickam, laying strong stress on her nominative case.\n\nIt being clear that somebody was dead, Mrs Pipchin's niece inquired\nwho it was.\n\n'I wouldn't wish to make you uneasy,' returned Mrs Wickam, pursuing\nher supper. Don't ask me.'\n\nThis was the surest way of being asked again. Miss Berry repeated\nher question, therefore; and after some resistance, and reluctance,\nMrs Wickam laid down her knife, and again glancing round the room and\nat Paul in bed, replied:\n\n'She took fancies to people; whimsical fancies, some of them;\nothers, affections that one might expect to see - only stronger than\ncommon. They all died.'\n\nThis was so very unexpected and awful to Mrs Pipchin's niece, that\nshe sat upright on the hard edge of the bedstead, breathing short, and\nsurveying her informant with looks of undisguised alarm.\n\nMrs Wickam shook her left fore-finger stealthily towards the bed\nwhere Florence lay; then turned it upside down, and made several\nemphatic points at the floor; immediately below which was the parlour\nin which Mrs Pipchin habitually consumed the toast.\n\n'Remember my words, Miss Berry,' said Mrs Wickam, 'and be thankful\nthat Master Paul is not too fond of you. I am, that he's not too fond\nof me, I assure you; though there isn't much to live for - you'll\nexcuse my being so free - in this jail of a house!'\n\nMiss Berry's emotion might have led to her patting Paul too hard on\nthe back, or might have produced a cessation of that soothing\nmonotony, but he turned in his bed just now, and, presently awaking,\nsat up in it with his hair hot and wet from the effects of some\nchildish dream, and asked for Florence.\n\nShe was out of her own bed at the first sound of his voice; and\nbending over his pillow immediately, sang him to sleep again. Mrs\nWickam shaking her head, and letting fall several tears, pointed out\nthe little group to Berry, and turned her eyes up to the ceiling.\n\n'He's asleep now, my dear,' said Mrs Wickam after a pause, 'you'd\nbetter go to bed again. Don't you feel cold?'\n\n'No, nurse,' said Florence, laughing. 'Not at all.'\n\n'Ah!' sighed Mrs Wickam, and she shook her head again, expressing\nto the watchful Berry, 'we shall be cold enough, some of us, by and\nby!'\n\nBerry took the frugal supper-tray, with which Mrs Wickam had by\nthis time done, and bade her good-night.\n\n'Good-night, Miss!' returned Wickam softly. 'Good-night! Your aunt\nis an old lady, Miss Berry, and it's what you must have looked for,\noften.'\n\nThis consolatory farewell, Mrs Wickam accompanied with a look of\nheartfelt anguish; and being left alone with the two children again,\nand becoming conscious that the wind was blowing mournfully, she\nindulged in melancholy - that cheapest and most accessible of luxuries\n- until she was overpowered by slumber.\n\nAlthough the niece of Mrs Pipchin did not expect to find that\nexemplary dragon prostrate on the hearth-rug when she went downstairs,\nshe was relieved to find her unusually fractious and severe, and with\nevery present appearance of intending to live a long time to be a\ncomfort to all who knew her. Nor had she any symptoms of declining, in\nthe course of the ensuing week, when the constitutional viands still\ncontinued to disappear in regular succession, notwithstanding that\nPaul studied her as attentively as ever, and occupied his usual seat\nbetween the black skirts and the fender, with unwavering constancy.\n\nBut as Paul himself was no stronger at the expiration of that time\nthan he had been on his first arrival, though he looked much healthier\nin the face, a little carriage was got for him, in which he could lie\nat his ease, with an alphabet and other elementary works of reference,\nand be wheeled down to the sea-side. Consistent in his odd tastes, the\nchild set aside a ruddy-faced lad who was proposed as the drawer of\nthis carriage, and selected, instead, his grandfather - a weazen, old,\ncrab-faced man, in a suit of battered oilskin, who had got tough and\nstringy from long pickling in salt water, and who smelt like a weedy\nsea-beach when the tide is out.\n\nWith this notable attendant to pull him along, and Florence always\nwalking by his side, and the despondent Wickam bringing up the rear,\nhe went down to the margin of the ocean every day; and there he would\nsit or lie in his carriage for hours together: never so distressed as\nby the company of children - Florence alone excepted, always.\n\n'Go away, if you please,' he would say to any child who came to\nbear him company. Thank you, but I don't want you.'\n\nSome small voice, near his ear, would ask him how he was, perhaps.\n\n'I am very well, I thank you,' he would answer. 'But you had better\ngo and play, if you please.'\n\nThen he would turn his head, and watch the child away, and say to\nFlorence, 'We don't want any others, do we? Kiss me, Floy.'\n\nHe had even a dislike, at such times, to the company of Wickam, and\nwas well pleased when she strolled away, as she generally did, to pick\nup shells and acquaintances. His favourite spot was quite a lonely\none, far away from most loungers; and with Florence sitting by his\nside at work, or reading to him, or talking to him, and the wind\nblowing on his face, and the water coming up among the wheels of his\nbed, he wanted nothing more.\n\n'Floy,' he said one day, 'where's India, where that boy's friends\nlive?'\n\n'Oh, it's a long, long distance off,' said Florence, raising her\neyes from her work.\n\n'Weeks off?' asked Paul.\n\n'Yes dear. Many weeks' journey, night and day.'\n\n'If you were in India, Floy,' said Paul, after being silent for a\nminute, 'I should - what is it that Mama did? I forget.'\n\n'Loved me!' answered Florence.\n\n'No, no. Don't I love you now, Floy? What is it? - Died. in you\nwere in India, I should die, Floy.'\n\nShe hurriedly put her work aside, and laid her head down on his\npillow, caressing him. And so would she, she said, if he were there.\nHe would be better soon.\n\n'Oh! I am a great deal better now!' he answered. 'I don't mean\nthat. I mean that I should die of being so sorry and so lonely, Floy!'\n\nAnother time, in the same place, he fell asleep, and slept quietly\nfor a long time. Awaking suddenly, he listened, started up, and sat\nlistening.\n\nFlorence asked him what he thought he heard.\n\n'I want to know what it says,' he answered, looking steadily in her\nface. 'The sea' Floy, what is it that it keeps on saying?'\n\nShe told him that it was only the noise of the rolling waves.\n\n'Yes, yes,' he said. 'But I know that they are always saying\nsomething. Always the same thing. What place is over there?' He rose\nup, looking eagerly at the horizon.\n\nShe told him that there was another country opposite, but he said\nhe didn't mean that: he meant further away - farther away!\n\nVery often afterwards, in the midst of their talk, he would break\noff, to try to understand what it was that the waves were always\nsaying; and would rise up in his couch to look towards that invisible\nregion, far away.\n\n\n\nCHAPTER 9.\n\nIn which the Wooden Midshipman gets into Trouble\n\n\n\nThat spice of romance and love of the marvellous, of which there\nwas a pretty strong infusion in the nature of young Walter Gay, and\nwhich the guardianship of his Uncle, old Solomon Gills, had not very\nmuch weakened by the waters of stern practical experience, was the\noccasion of his attaching an uncommon and delightful interest to the\nadventure of Florence with Good Mrs Brown. He pampered and cherished\nit in his memory, especially that part of it with which he had been\nassociated: until it became the spoiled child of his fancy, and took\nits own way, and did what it liked with it.\n\nThe recollection of those incidents, and his own share in them, may\nhave been made the more captivating, perhaps, by the weekly dreamings\nof old Sol and Captain Cuttle on Sundays. Hardly a Sunday passed,\nwithout mysterious references being made by one or other of those\nworthy chums to Richard Whittington; and the latter gentleman had even\ngone so far as to purchase a ballad of considerable antiquity, that\nhad long fluttered among many others, chiefly expressive of maritime\nsentiments, on a dead wall in the Commercial Road: which poetical\nperformance set forth the courtship and nuptials of a promising young\ncoal-whipper with a certain 'lovely Peg,' the accomplished daughter of\nthe master and part-owner of a Newcastle collier. In this stirring\nlegend, Captain Cuttle descried a profound metaphysical bearing on the\ncase of Walter and Florence; and it excited him so much, that on very\nfestive occasions, as birthdays and a few other non-Dominical\nholidays, he would roar through the whole song in the little back\nparlour; making an amazing shake on the word Pe-e-eg, with which every\nverse concluded, in compliment to the heroine of the piece.\n\nBut a frank, free-spirited, open-hearted boy, is not much given to\nanalysing the nature of his own feelings, however strong their hold\nupon him: and Walter would have found it difficult to decide this\npoint. He had a great affection for the wharf where he had encountered\nFlorence, and for the streets (albeit not enchanting in themselves) by\nwhich they had come home. The shoes that had so often tumbled off by\nthe way, he preserved in his own room; and, sitting in the little back\nparlour of an evening, he had drawn a whole gallery of fancy portraits\nof Good Mrs Brown. It may be that he became a little smarter in his\ndress after that memorable occasion; and he certainly liked in his\nleisure time to walk towards that quarter of the town where Mr\nDombey's house was situated, on the vague chance of passing little\nFlorence in the street. But the sentiment of all this was as boyish\nand innocent as could be. Florence was very pretty, and it is pleasant\nto admire a pretty face. Florence was defenceless and weak, and it was\na proud thought that he had been able to render her any protection and\nassistance. Florence was the most grateful little creature in the\nworld, and it was delightful to see her bright gratitude beaming in\nher face. Florence was neglected and coldly looked upon, and his\nbreast was full of youthful interest for the slighted child in her\ndull, stately home.\n\nThus it came about that, perhaps some half-a-dozen times in the\ncourse of the year, Walter pulled off his hat to Florence in the\nstreet, and Florence would stop to shake hands. Mrs Wickam (who, with\na characteristic alteration of his name, invariably spoke of him as\n'Young Graves') was so well used to this, knowing the story of their\nacquaintance, that she took no heed of it at all. Miss Nipper, on the\nother hand, rather looked out for these occasions: her sensitive young\nheart being secretly propitiated by Walter's good looks, and inclining\nto the belief that its sentiments were responded to.\n\nIn this way, Walter, so far from forgetting or losing sight of his\nacquaintance with Florence, only remembered it better and better. As\nto its adventurous beginning, and all those little circumstances which\ngave it a distinctive character and relish, he took them into account,\nmore as a pleasant story very agreeable to his imagination, and not to\nbe dismissed from it, than as a part of any matter of fact with which\nhe was concerned. They set off Florence very much, to his fancy; but\nnot himself. Sometimes he thought (and then he walked very fast) what\na grand thing it would have been for him to have been going to sea on\nthe day after that first meeting, and to have gone, and to have done\nwonders there, and to have stopped away a long time, and to have come\nback an Admiral of all the colours of the dolphin, or at least a\nPost-Captain with epaulettes of insupportable brightness, and have\nmarried Florence (then a beautiful young woman) in spite of Mr\nDombey's teeth, cravat, and watch-chain, and borne her away to the\nblue shores of somewhere or other, triumphantly. But these flights of\nfancy seldom burnished the brass plate of Dombey and Son's Offices\ninto a tablet of golden hope, or shed a brilliant lustre on their\ndirty skylights; and when the Captain and Uncle Sol talked about\nRichard Whittington and masters' daughters, Walter felt that he\nunderstood his true position at Dombey and Son's, much better than\nthey did.\n\nSo it was that he went on doing what he had to do from day to day,\nin a cheerful, pains-taking, merry spirit; and saw through the\nsanguine complexion of Uncle Sol and Captain Cuttle; and yet\nentertained a thousand indistinct and visionary fancies of his own, to\nwhich theirs were work-a-day probabilities. Such was his condition at\nthe Pipchin period, when he looked a little older than of yore, but\nnot much; and was the same light-footed, light-hearted, light-headed\nlad, as when he charged into the parlour at the head of Uncle Sol and\nthe imaginary boarders, and lighted him to bring up the Madeira.\n\n'Uncle Sol,' said Walter, 'I don't think you're well. You haven't\neaten any breakfast. I shall bring a doctor to you, if you go on like\nthis.'\n\n'He can't give me what I want, my boy,' said Uncle Sol. 'At least\nhe is in good practice if he can - and then he wouldn't.'\n\n'What is it, Uncle? Customers?'\n\n'Ay,' returned Solomon, with a sigh. 'Customers would do.'\n\n'Confound it, Uncle!' said Walter, putting down his breakfast cup\nwith a clatter, and striking his hand on the table: 'when I see the\npeople going up and down the street in shoals all day, and passing and\nre-passing the shop every minute, by scores, I feel half tempted to\nrush out, collar somebody, bring him in, and make him buy fifty\npounds' worth of instruments for ready money. What are you looking in\nat the door for? - ' continued Walter, apostrophizing an old gentleman\nwith a powdered head (inaudibly to him of course), who was staring at\na ship's telescope with all his might and main. 'That's no use. I\ncould do that. Come in and buy it!'\n\nThe old gentleman, however, having satiated his curiosity, walked\ncalmly away.\n\n'There he goes!' said Walter. 'That's the way with 'em all. But,\nUncle - I say, Uncle Sol' - for the old man was meditating and had not\nresponded to his first appeal. 'Don't be cast down. Don't be out of\nspirits, Uncle. When orders do come, they'll come in such a crowd, you\nwon't be able to execute 'em.'\n\n'I shall be past executing 'em, whenever they come, my boy,'\nreturned Solomon Gills. 'They'll never come to this shop again, till I\nam out of t.'\n\n'I say, Uncle! You musn't really, you know!' urged Walter. 'Don't!'\n\nOld Sol endeavoured to assume a cheery look, and smiled across the\nlittle table at him as pleasantly as he could.\n\n'There's nothing more than usual the matter; is there, Uncle?' said\nWalter, leaning his elbows on the tea tray, and bending over, to speak\nthe more confidentially and kindly. 'Be open with me, Uncle, if there\nis, and tell me all about it.'\n\n'No, no, no,' returned Old Sol. 'More than usual? No, no. What\nshould there be the matter more than usual?'\n\nWalter answered with an incredulous shake of his head. 'That's what\nI want to know,' he said, 'and you ask me! I'll tell you what, Uncle,\nwhen I see you like this, I am quite sorry that I live with you.'\n\nOld Sol opened his eyes involuntarily.\n\n'Yes. Though nobody ever was happier than I am and always have been\nwith you, I am quite sorry that I live with you, when I see you with\nanything in your mind.'\n\n'I am a little dull at such times, I know,' observed Solomon,\nmeekly rubbing his hands.\n\n'What I mean, Uncle Sol,' pursued Walter, bending over a little\nmore to pat him on the shoulder, 'is, that then I feel you ought to\nhave, sitting here and pouring out the tea instead of me, a nice\nlittle dumpling of a wife, you know, - a comfortable, capital, cosy\nold lady, who was just a match for you, and knew how to manage you,\nand keep you in good heart. Here am I, as loving a nephew as ever was\n(I am sure I ought to be!) but I am only a nephew, and I can't be such\na companion to you when you're low and out of sorts as she would have\nmade herself, years ago, though I'm sure I'd give any money if I could\ncheer you up. And so I say, when I see you with anything on your mind,\nthat I feel quite sorry you haven't got somebody better about you than\na blundering young rough-and-tough boy like me, who has got the will\nto console you, Uncle, but hasn't got the way - hasn't got the way,'\nrepeated Walter, reaching over further yet, to shake his Uncle by the\nhand.\n\n'Wally, my dear boy,' said Solomon, 'if the cosy little old lady\nhad taken her place in this parlour five and forty years ago, I never\ncould have been fonder of her than I am of you.'\n\n'I know that, Uncle Sol,' returned Walter. 'Lord bless you, I know\nthat. But you wouldn't have had the whole weight of any uncomfortable\nsecrets if she had been with you, because she would have known how to\nrelieve you of 'em, and I don't.'\n\n'Yes, yes, you do,' returned the Instrument-maker.\n\n'Well then, what's the matter, Uncle Sol?' said Walter, coaxingly.\n'Come! What's the matter?'\n\nSolomon Gills persisted that there was nothing the matter; and\nmaintained it so resolutely, that his nephew had no resource but to\nmake a very indifferent imitation of believing him.\n\n'All I can say is, Uncle Sol, that if there is - '\n\n'But there isn't,' said Solomon.\n\n'Very well,, said Walter. 'Then I've no more to say; and that's\nlucky, for my time's up for going to business. I shall look in\nby-and-by when I'm out, to see how you get on, Uncle. And mind, Uncle!\nI'll never believe you again, and never tell you anything more about\nMr Carker the Junior, if I find out that you have been deceiving me!'\n\nSolomon Gills laughingly defied him to find out anything of the\nkind; and Walter, revolving in his thoughts all sorts of impracticable\nways of making fortunes and placing the wooden Midshipman in a\nposition of independence, betook himself to the offices of Dombey and\nSon with a heavier countenance than he usually carried there.\n\nThere lived in those days, round the corner - in Bishopsgate Street\nWithout - one Brogley, sworn broker and appraiser, who kept a shop\nwhere every description of second-hand furniture was exhibited in the\nmost uncomfortable aspect, and under circumstances and in combinations\nthe most completely foreign to its purpose. Dozens of chairs hooked on\nto washing-stands, which with difficulty poised themselves on the\nshoulders of sideboards, which in their turn stood upon the wrong side\nof dining-tables, gymnastic with their legs upward on the tops of\nother dining-tables, were among its most reasonable arrangements. A\nbanquet array of dish-covers, wine-glasses, and decanters was\ngenerally to be seen, spread forth upon the bosom of a four-post\nbedstead, for the entertainment of such genial company as half-a-dozen\npokers, and a hall lamp. A set of window curtains with no windows\nbelonging to them, would be seen gracefully draping a barricade of\nchests of drawers, loaded with little jars from chemists' shops; while\na homeless hearthrug severed from its natural companion the fireside,\nbraved the shrewd east wind in its adversity, and trembled in\nmelancholy accord with the shrill complainings of a cabinet piano,\nwasting away, a string a day, and faintly resounding to the noises of\nthe street in its jangling and distracted brain. Of motionless clocks\nthat never stirred a finger, and seemed as incapable of being\nsuccessfully wound up, as the pecuniary affairs of their former\nowners, there was always great choice in Mr Brogley's shop; and\nvarious looking-glasses, accidentally placed at compound interest of\nreflection and refraction, presented to the eye an eternal perspective\nof bankruptcy and ruin.\n\nMr Brogley himself was a moist-eyed, pink-complexioned,\ncrisp-haired man, of a bulky figure and an easy temper - for that\nclass of Caius Marius who sits upon the ruins of other people's\nCarthages, can keep up his spirits well enough. He had looked in at\nSolomon's shop sometimes, to ask a question about articles in\nSolomon's way of business; and Walter knew him sufficiently to give\nhim good day when they met in the street. But as that was the extent\nof the broker's acquaintance with Solomon Gills also, Walter was not a\nlittle surprised when he came back in the course of the forenoon,\nagreeably to his promise, to find Mr Brogley sitting in the back\nparlour with his hands in his pockets, and his hat hanging up behind\nthe door.\n\n'Well, Uncle Sol!' said Walter. The old man was sitting ruefully on\nthe opposite side of the table, with his spectacles over his eyes, for\na wonder, instead of on his forehead. 'How are you now?'\n\nSolomon shook his head, and waved one hand towards the broker, as\nintroducing him.\n\n'Is there anything the matter?' asked Walter, with a catching in\nhis breath.\n\n'No, no. There's nothing the matter, said Mr Brogley. 'Don't let it\nput you out of the way.' Walter looked from the broker to his Uncle in\nmute amazement. 'The fact is,' said Mr Brogley, 'there's a little\npayment on a bond debt - three hundred and seventy odd, overdue: and\nI'm in possession.'\n\n'In possession!' cried Walter, looking round at the shop.\n\n'Ah!' said Mr Brogley, in confidential assent, and nodding his head\nas if he would urge the advisability of their all being comfortable\ntogether. 'It's an execution. That's what it is. Don't let it put you\nout of the way. I come myself, because of keeping it quiet and\nsociable. You know me. It's quite private.'\n\n'Uncle Sol!' faltered Walter.\n\n'Wally, my boy,' returned his uncle. 'It's the first time. Such a\ncalamity never happened to me before. I'm an old man to begin.'\nPushing up his spectacles again (for they were useless any longer to\nconceal his emotion), he covered his face with his hand, and sobbed\naloud, and his tears fell down upon his coffee-coloured waistcoat.\n\n'Uncle Sol! Pray! oh don't!' exclaimed Walter, who really felt a\nthrill of terror in seeing the old man weep. 'For God's sake don't do\nthat. Mr Brogley, what shall I do?'\n\n'I should recommend you looking up a friend or so,' said Mr\nBrogley, 'and talking it over.'\n\n'To be sure!' cried Walter, catching at anything. 'Certainly!\nThankee. Captain Cuttle's the man, Uncle. Wait till I run to Captain\nCuttle. Keep your eye upon my Uncle, will you, Mr Brogley, and make\nhim as comfortable as you can while I am gone? Don't despair, Uncle\nSol. Try and keep a good heart, there's a dear fellow!'\n\nSaying this with great fervour, and disregarding the old man's\nbroken remonstrances, Walter dashed out of the shop again as hard as\nhe could go; and, having hurried round to the office to excuse himself\non the plea of his Uncle's sudden illness, set off, full speed, for\nCaptain Cuttle's residence.\n\nEverything seemed altered as he ran along the streets. There were\nthe usual entanglement and noise of carts, drays, omnibuses, waggons,\nand foot passengers, but the misfortune that had fallen on the wooden\nMidshipman made it strange and new. Houses and shops were different\nfrom what they used to be, and bore Mr Brogley's warrant on their\nfronts in large characters. The broker seemed to have got hold of the\nvery churches; for their spires rose into the sky with an unwonted\nair. Even the sky itself was changed, and had an execution in it\nplainly.\n\nCaptain Cuttle lived on the brink of a little canal near the India\nDocks, where there was a swivel bridge which opened now and then to\nlet some wandering monster of a ship come roamIng up the street like a\nstranded leviathan. The gradual change from land to water, on the\napproach to Captain Cuttle's lodgings, was curious. It began with the\nerection of flagstaffs, as appurtenances to public-houses; then came\nslop-sellers' shops, with Guernsey shirts, sou'wester hats, and canvas\npantaloons, at once the tightest and the loosest of their order,\nhanging up outside. These were succeeded by anchor and chain-cable\nforges, where sledgehammers were dinging upon iron all day long. Then\ncame rows of houses, with little vane-surmounted masts uprearing\nthemselves from among the scarlet beans. Then, ditches. Then, pollard\nwillows. Then, more ditches. Then, unaccountable patches of dirty\nwater, hardly to be descried, for the ships that covered them. Then,\nthe air was perfumed with chips; and all other trades were swallowed\nup in mast, oar, and block-making, and boatbuilding. Then, the ground\ngrew marshy and unsettled. Then, there was nothing to be smelt but rum\nand sugar. Then, Captain Cuttle's lodgings - at once a first floor and\na top storey, in Brig Place - were close before you.\n\nThe Captain was one of those timber-looking men, suits of oak as\nwell as hearts, whom it is almost impossible for the liveliest\nimagination to separate from any part of their dress, however\ninsignificant. Accordingly, when Walter knocked at the door, and the\nCaptain instantly poked his head out of one of his little front\nwindows, and hailed him, with the hard glared hat already on it, and\nthe shirt-collar like a sail, and the wide suit of blue, all standing\nas usual, Walter was as fully persuaded that he was always in that\nstate, as if the Captain had been a bird and those had been his\nfeathers.\n\n'Wal'r, my lad!'said Captain Cuttle. 'Stand by and knock again.\nHard! It's washing day.'\n\nWalter, in his impatience, gave a prodigious thump with the\nknocker.\n\n'Hard it is!' said Captain Cuttle, and immediately drew in his\nhead, as if he expected a squall.\n\nNor was he mistaken: for a widow lady, with her sleeves rolled up\nto her shoulders, and her arms frothy with soap-suds and smoking with\nhot water, replied to the summons with startling rapidity. Before she\nlooked at Walter she looked at the knocker, and then, measuring him\nwith her eyes from head to foot, said she wondered he had left any of\nit.\n\n'Captain Cuttle's at home, I know,' said Walter with a conciliatory\nsmile.\n\n'Is he?' replied the widow lady. 'In-deed!'\n\n'He has just been speaking to me,' said Walter, in breathless\nexplanation.\n\n'Has he?' replied the widow lady. 'Then p'raps you'll give him Mrs\nMacStinger's respects, and say that the next time he lowers himself\nand his lodgings by talking out of the winder she'll thank him to come\ndown and open the door too.' Mrs MacStinger spoke loud, and listened\nfor any observations that might be offered from the first floor.\n\n'I'll mention it,' said Walter, 'if you'll have the goodness to let\nme in, Ma'am.'\n\nFor he was repelled by a wooden fortification extending across the\ndoorway, and put there to prevent the little MacStingers in their\nmoments of recreation from tumbling down the steps.\n\n'A boy that can knock my door down,' said Mrs MacStinger,\ncontemptuously, 'can get over that, I should hope!' But Walter, taking\nthis as a permission to enter, and getting over it, Mrs MacStinger\nimmediately demanded whether an Englishwoman's house was her castle or\nnot; and whether she was to be broke in upon by 'raff.' On these\nsubjects her thirst for information was still very importunate, when\nWalter, having made his way up the little staircase through an\nartificial fog occasioned by the washing, which covered the banisters\nwith a clammy perspiration, entered Captain Cuttle's room, and found\nthat gentleman in ambush behind the door.\n\n'Never owed her a penny, Wal'r,' said Captain Cuttle, in a low\nvoice, and with visible marks of trepidation on his countenance. 'Done\nher a world of good turns, and the children too. Vixen at times,\nthough. Whew!'\n\n'I should go away, Captain Cuttle,' said Walter.\n\n'Dursn't do it, Wal'r,' returned the Captain. 'She'd find me out,\nwherever I went. Sit down. How's Gills?'\n\nThe Captain was dining (in his hat) off cold loin of mutton,\nporter, and some smoking hot potatoes, which he had cooked himself,\nand took out of a little saucepan before the fire as he wanted them.\nHe unscrewed his hook at dinner-time, and screwed a knife into its\nwooden socket instead, with which he had already begun to peel one of\nthese potatoes for Walter. His rooms were very small, and strongly\nimpregnated with tobacco-smoke, but snug enough: everything being\nstowed away, as if there were an earthquake regularly every half-hour.\n\n'How's Gills?' inquired the Captain.\n\nWalter, who had by this time recovered his breath, and lost his\nspirits - or such temporary spirits as his rapid journey had given him\n- looked at his questioner for a moment, said 'Oh, Captain Cuttle!'\nand burst into tears.\n\nNo words can describe the Captain's consternation at this sight Mrs\nMacStinger faded into nothing before it. He dropped the potato and the\nfork - and would have dropped the knife too if he could - and sat\ngazing at the boy, as if he expected to hear next moment that a gulf\nhad opened in the City, which had swallowed up his old friend,\ncoffee-coloured suit, buttons, chronometer, spectacles, and all.\n\nBut when Walter told him what was really the matter, Captain\nCuttle, after a moment's reflection, started up into full activity. He\nemptied out of a little tin canister on the top shelf of the cupboard,\nhis whole stock of ready money (amounting to thirteen pounds and\nhalf-a-crown), which he transferred to one of the pockets of his\nsquare blue coat; further enriched that repository with the contents\nof his plate chest, consisting of two withered atomies of tea-spoons,\nand an obsolete pair of knock-knee'd sugar-tongs; pulled up his\nimmense double-cased silver watch from the depths in which it reposed,\nto assure himself that that valuable was sound and whole; re-attached\nthe hook to his right wrist; and seizing the stick covered over with\nknobs, bade Walter come along.\n\nRemembering, however, in the midst of his virtuous excitement, that\nMrs MacStinger might be lying in wait below, Captain Cuttle hesitated\nat last, not without glancing at the window, as if he had some\nthoughts of escaping by that unusual means of egress, rather than\nencounter his terrible enemy. He decided, however, in favour of\nstratagem.\n\n'Wal'r,' said the Captain, with a timid wink, 'go afore, my lad.\nSing out, \"good-bye, Captain Cuttle,\" when you're in the passage, and\nshut the door. Then wait at the corner of the street 'till you see me.\n\nThese directions were not issued without a previous knowledge of\nthe enemy's tactics, for when Walter got downstairs, Mrs MacStinger\nglided out of the little back kitchen, like an avenging spirit. But\nnot gliding out upon the Captain, as she had expected, she merely made\na further allusion to the knocker, and glided in again.\n\nSome five minutes elapsed before Captain Cuttle could summon\ncourage to attempt his escape; for Walter waited so long at the street\ncorner, looking back at the house, before there were any symptoms of\nthe hard glazed hat. At length the Captain burst out of the door with\nthe suddenness of an explosion, and coming towards him at a great\npace, and never once looking over his shoulder, pretended, as soon as\nthey were well out of the street, to whistle a tune.\n\n'Uncle much hove down, Wal'r?' inquired the Captain, as they were\nwalking along.\n\n'I am afraid so. If you had seen him this morning, you would never\nhave forgotten it.'\n\n'Walk fast, Wal'r, my lad,' returned the Captain, mending his pace;\n'and walk the same all the days of your life. Overhaul the catechism\nfor that advice, and keep it!'\n\nThe Captain was too busy with his own thoughts of Solomon Gills,\nmingled perhaps with some reflections on his late escape from Mrs\nMacStinger, to offer any further quotations on the way for Walter's\nmoral improvement They interchanged no other word until they arrived\nat old Sol's door, where the unfortunate wooden Midshipman, with his\ninstrument at his eye, seemed to be surveying the whole horizon in\nsearch of some friend to help him out of his difficulty.\n\n'Gills!' said the Captain, hurrying into the back parlour, and\ntaking him by the hand quite tenderly. 'Lay your head well to the\nwind, and we'll fight through it. All you've got to do,' said the\nCaptain, with the solemnity of a man who was delivering himself of one\nof the most precious practical tenets ever discovered by human wisdom,\n'is to lay your head well to the wind, and we'll fight through it!'\n\nOld Sol returned the pressure of his hand, and thanked him.\n\nCaptain Cuttle, then, with a gravity suitable to the nature of the\noccasion, put down upon the table the two tea-spoons and the\nsugar-tongs, the silver watch, and the ready money; and asked Mr\nBrogley, the broker, what the damage was.\n\n'Come! What do you make of it?' said Captain Cuttle.\n\n'Why, Lord help you!' returned the broker; 'you don't suppose that\nproperty's of any use, do you?'\n\n'Why not?' inquired the Captain.\n\n'Why? The amount's three hundred and seventy, odd,' replied the\nbroker.\n\n'Never mind,' returned the Captain, though he was evidently\ndismayed by the figures: 'all's fish that comes to your net, I\nsuppose?'\n\n'Certainly,' said Mr Brogley. 'But sprats ain't whales, you know.'\n\nThe philosophy of this observation seemed to strike the Captain. He\nruminated for a minute; eyeing the broker, meanwhile, as a deep\ngenius; and then called the Instrument-maker aside.\n\n'Gills,' said Captain Cuttle, 'what's the bearings of this\nbusiness? Who's the creditor?'\n\n'Hush!' returned the old man. 'Come away. Don't speak before Wally.\nIt's a matter of security for Wally's father - an old bond. I've paid\na good deal of it, Ned, but the times are so bad with me that I can't\ndo more just now. I've foreseen it, but I couldn't help it. Not a word\nbefore Wally, for all the world.'\n\n'You've got some money, haven't you?' whispered the Captain.\n\n'Yes, yes - oh yes- I've got some,' returned old Sol, first putting\nhis hands into his empty pockets, and then squeezing his Welsh wig\nbetween them, as if he thought he might wring some gold out of it;\n'but I - the little I have got, isn't convertible, Ned; it can't be\ngot at. I have been trying to do something with it for Wally, and I'm\nold fashioned, and behind the time. It's here and there, and - and, in\nshort, it's as good as nowhere,' said the old man, looking in\nbewilderment about him.\n\nHe had so much the air of a half-witted person who had been hiding\nhis money in a variety of places, and had forgotten where, that the\nCaptain followed his eyes, not without a faint hope that he might\nremember some few hundred pounds concealed up the chimney, or down in\nthe cellar. But Solomon Gills knew better than that.\n\n'I'm behind the time altogether, my dear Ned,' said Sol, in\nresigned despair, 'a long way. It's no use my lagging on so far behind\nit. The stock had better be sold - it's worth more than this debt -\nand I had better go and die somewhere, on the balance. I haven't any\nenergy left. I don't understand things. This had better be the end of\nit. Let 'em sell the stock and take him down,' said the old man,\npointing feebly to the wooden Midshipman, 'and let us both be broken\nup together.'\n\n'And what d'ye mean to do with Wal'r?'said the Captain. 'There,\nthere! Sit ye down, Gills, sit ye down, and let me think o' this. If I\nwarn't a man on a small annuity, that was large enough till to-day, I\nhadn't need to think of it. But you only lay your head well to the\nwind,' said the Captain, again administering that unanswerable piece\nof consolation, 'and you're all right!'\n\nOld Sol thanked him from his heart, and went and laid it against\nthe back parlour fire-place instead.\n\nCaptain Cuttle walked up and down the shop for some time,\ncogitating profoundly, and bringing his bushy black eyebrows to bear\nso heavily on his nose, like clouds setting on a mountain, that Walter\nwas afraid to offer any interruption to the current of his\nreflections. Mr Brogley, who was averse to being any constraint upon\nthe party, and who had an ingenious cast of mind, went, softly\nwhistling, among the stock; rattling weather-glasses, shaking\ncompasses as if they were physic, catching up keys with loadstones,\nlooking through telescopes, endeavouring to make himself acquainted\nwith the use of the globes, setting parallel rulers astride on to his\nnose, and amusing himself with other philosophical transactions.\n\n'Wal'r!' said the Captain at last. 'I've got it.'\n\n'Have you, Captain Cuttle?' cried Walter, with great animation.\n\n'Come this way, my lad,' said the Captain. 'The stock's the\nsecurity. I'm another. Your governor's the man to advance money.'\n\n'Mr Dombey!' faltered Walter.\n\nThe Captain nodded gravely. 'Look at him,' he said. 'Look at Gills.\nIf they was to sell off these things now, he'd die of it. You know he\nwould. We mustn't leave a stone unturned - and there's a stone for\nyou.'\n\n'A stone! - Mr Dombey!' faltered Walter.\n\n'You run round to the office, first of all, and see if he's there,'\nsaid Captain Cuttle, clapping him on the back. 'Quick!'\n\nWalter felt he must not dispute the command - a glance at his Uncle\nwould have determined him if he had felt otherwise - and disappeared\nto execute it. He soon returned, out of breath, to say that Mr Dombey\nwas not there. It was Saturday, and he had gone to Brighton.\n\n'I tell you what, Wal'r!' said the Captain, who seemed to have\nprepared himself for this contingency in his absence. 'We'll go to\nBrighton. I'll back you, my boy. I'll back you, Wal'r. We'll go to\nBrighton by the afternoon's coach.'\n\nIf the application must be made to Mr Dombey at all, which was\nawful to think of, Walter felt that he would rather prefer it alone\nand unassisted, than backed by the personal influence of Captain\nCuttle, to which he hardly thought Mr Dombey would attach much weight.\nBut as the Captain appeared to be of quite another opinion, and was\nbent upon it, and as his friendship was too zealous and serious to be\ntrifled with by one so much younger than himself, he forbore to hint\nthe least objection. Cuttle, therefore, taking a hurried leave of\nSolomon Gills, and returning the ready money, the teaspoons, the\nsugar-tongs, and the silver watch, to his pocket - with a view, as\nWalter thought, with horror, to making a gorgeous impression on Mr\nDombey - bore him off to the coach-office, with- out a minute's delay,\nand repeatedly assured him, on the road, that he would stick by him to\nthe last.\n\n\n\nCHAPTER 10.\n\nContaining the Sequel of the Midshipman's Disaster\n\n\n\nMajor Bagstock, after long and frequent observation of Paul, across\nPrincess's Place, through his double-barrelled opera-glass; and after\nreceiving many minute reports, daily, weekly, and monthly, on that\nsubject, from the native who kept himself in constant communication\nwith Miss Tox's maid for that purpose; came to the conclusion that\nDombey, Sir, was a man to be known, and that J. B. was the boy to make\nhis acquaintance.\n\nMiss Tox, however, maintaining her reserved behaviour, and frigidly\ndeclining to understand the Major whenever he called (which he often\ndid) on any little fishing excursion connected with this project, the\nMajor, in spite of his constitutional toughness and slyness, was fain\nto leave the accomplishment of his desire in some measure to chance,\n'which,' as he was used to observe with chuckles at his club, 'has\nbeen fifty to one in favour of Joey B., Sir, ever since his elder\nbrother died of Yellow Jack in the West Indies.'\n\nIt was some time coming to his aid in the present instance, but it\nbefriended him at last. When the dark servant, with full particulars,\nreported Miss Tox absent on Brighton service, the Major was suddenly\ntouched with affectionate reminiscences of his friend Bill Bitherstone\nof Bengal, who had written to ask him, if he ever went that way, to\nbestow a call upon his only son. But when the same dark servant\nreported Paul at Mrs Pipchin's, and the Major, referring to the letter\nfavoured by Master Bitherstone on his arrival in England - to which he\nhad never had the least idea of paying any attention - saw the opening\nthat presented itself, he was made so rabid by the gout, with which he\nhappened to be then laid up, that he threw a footstool at the dark\nservant in return for his intelligence, and swore he would be the\ndeath of the rascal before he had done with him: which the dark\nservant was more than half disposed to believe.\n\nAt length the Major being released from his fit, went one Saturday\ngrowling down to Brighton, with the native behind him; apostrophizing\nMiss Tox all the way, and gloating over the prospect of carrying by\nstorm the distinguished friend to whom she attached so much mystery,\nand for whom she had deserted him,\n\n'Would you, Ma'am, would you!' said the Major, straining with\nvindictiveness, and swelling every already swollen vein in his head.\n'Would you give Joey B. the go-by, Ma'am? Not yet, Ma'am, not yet!\nDamme, not yet, Sir. Joe is awake, Ma'am. Bagstock is alive, Sir. J.\nB. knows a move or two, Ma'am. Josh has his weather-eye open, Sir.\nYou'll find him tough, Ma'am. Tough, Sir, tough is Joseph. Tough, and\nde-vilish sly!'\n\nAnd very tough indeed Master Bitherstone found him, when he took\nthat young gentleman out for a walk. But the Major, with his\ncomplexion like a Stilton cheese, and his eyes like a prawn's, went\nroving about, perfectly indifferent to Master Bitherstone's amusement,\nand dragging Master Bitherstone along, while he looked about him high\nand low, for Mr Dombey and his children.\n\nIn good time the Major, previously instructed by Mrs Pipchin, spied\nout Paul and Florence, and bore down upon them; there being a stately\ngentleman (Mr Dombey, doubtless) in their company. Charging with\nMaster Bitherstone into the very heart of the little squadron, it fell\nout, of course, that Master Bitherstone spoke to his fellow-sufferers.\nUpon that the Major stopped to notice and admire them; remembered with\namazement that he had seen and spoken to them at his friend Miss Tox's\nin Princess's Place; opined that Paul was a devilish fine fellow, and\nhis own little friend; inquired if he remembered Joey B. the Major;\nand finally, with a sudden recollection of the conventionalities of\nlife, turned and apologised to Mr Dombey.\n\n'But my little friend here, Sir,' said the Major, 'makes a boy of\nme again: An old soldier, Sir - Major Bagstock, at your service - is\nnot ashamed to confess it.' Here the Major lifted his hat. 'Damme,\nSir,' cried the Major with sudden warmth, 'I envy you.' Then he\nrecollected himself, and added, 'Excuse my freedom.'\n\nMr Dombey begged he wouldn't mention it.\n\n'An old campaigner, Sir,' said the Major, 'a smoke-dried,\nsun-burnt, used-up, invalided old dog of a Major, Sir, was not afraid\nof being condemned for his whim by a man like Mr Dombey. I have the\nhonour of addressing Mr Dombey, I believe?'\n\n'I am the present unworthy representative of that name, Major,'\nreturned Mr Dombey.\n\n'By G-, Sir!' said the Major, 'it's a great name. It's a name,\nSir,' said the Major firmly, as if he defied Mr Dombey to contradict\nhim, and would feel it his painful duty to bully him if he did, 'that\nis known and honoured in the British possessions abroad. It is a name,\nSir, that a man is proud to recognise. There is nothing adulatory in\nJoseph Bagstock, Sir. His Royal Highness the Duke of York observed on\nmore than one occasion, \"there is no adulation in Joey. He is a plain\nold soldier is Joe. He is tough to a fault is Joseph:\" but it's a\ngreat name, Sir. By the Lord, it's a great name!' said the Major,\nsolemnly.\n\n'You are good enough to rate it higher than it deserves, perhaps,\nMajor,' returned Mr Dombey.\n\n'No, Sir,' said the Major, in a severe tone. No, Mr Dombey, let us\nunderstand each other. That is not the Bagstock vein, Sir. You don't\nknow Joseph B. He is a blunt old blade is Josh. No flattery in him,\nSir. Nothing like it.'\n\nMr Dombey inclined his head, and said he believed him to be in\nearnest, and that his high opinion was gratifying.\n\n'My little friend here, Sir,' croaked the Major, looking as amiably\nas he could, on Paul, 'will certify for Joseph Bagstock that he is a\nthorough-going, down-right, plain-spoken, old Trump, Sir, and nothing\nmore. That boy, Sir,' said the Major in a lower tone, 'will live in\nhistory. That boy, Sir, is not a common production. Take care of him,\nMr Dombey.'\n\nMr Dombey seemed to intimate that he would endeavour to do so.\n\n'Here is a boy here, Sir,' pursued the Major, confidentially, and\ngiving him a thrust with his cane. 'Son of Bitherstone of Bengal. Bill\nBitherstone formerly of ours. That boy's father and myself, Sir, were\nsworn friends. Wherever you went, Sir, you heard of nothing but Bill\nBitherstone and Joe Bagstock. Am I blind to that boy's defects? By no\nmeans. He's a fool, Sir.'\n\nMr Dombey glanced at the libelled Master Bitherstone, of whom he\nknew at least as much as the Major did, and said, in quite a\ncomplacent manner, 'Really?'\n\n'That is what he is, sir,' said the Major. 'He's a fool. Joe\nBagstock never minces matters. The son of my old friend Bill\nBitherstone, of Bengal, is a born fool, Sir.' Here the Major laughed\ntill he was almost black. 'My little friend is destined for a public\nschool,' I' presume, Mr Dombey?' said the Major when he had recovered.\n\n'I am not quite decided,' returned Mr Dombey. 'I think not. He is\ndelicate.'\n\n'If he's delicate, Sir,' said the Major, 'you are right. None but\nthe tough fellows could live through it, Sir, at Sandhurst. We put\neach other to the torture there, Sir. We roasted the new fellows at a\nslow fire, and hung 'em out of a three pair of stairs window, with\ntheir heads downwards. Joseph Bagstock, Sir, was held out of the\nwindow by the heels of his boots, for thirteen minutes by the college\nclock'\n\nThe Major might have appealed to his countenance in corroboration\nof this story. It certainly looked as if he had hung out a little too\nlong.\n\n'But it made us what we were, Sir,' said the Major, settling his\nshirt frill. 'We were iron, Sir, and it forged us. Are you remaining\nhere, Mr Dombey?'\n\n'I generally come down once a week, Major,' returned that\ngentleman. 'I stay at the Bedford.'\n\n'I shall have the honour of calling at the Bedford, Sir, if you'll\npermit me,' said the Major. 'Joey B., Sir, is not in general a calling\nman, but Mr Dombey's is not a common name. I am much indebted to my\nlittle friend, Sir, for the honour of this introduction.'\n\nMr Dombey made a very gracious reply; and Major Bagstock, having\npatted Paul on the head, and said of Florence that her eyes would play\nthe Devil with the youngsters before long - 'and the oldsters too,\nSir, if you come to that,' added the Major, chuckling very much -\nstirred up Master Bitherstone with his walking-stick, and departed\nwith that young gentleman, at a kind of half-trot; rolling his head\nand coughing with great dignity, as he staggered away, with his legs\nvery wide asunder.\n\nIn fulfilment of his promise, the Major afterwards called on Mr\nDombey; and Mr Dombey, having referred to the army list, afterwards\ncalled on the Major. Then the Major called at Mr Dombey's house in\ntown; and came down again, in the same coach as Mr Dombey. In short,\nMr Dombey and the Major got on uncommonly well together, and\nuncommonly fast: and Mr Dombey observed of the Major, to his sister,\nthat besides being quite a military man he was really something more,\nas he had a very admirable idea of the importance of things\nunconnected with his own profession.\n\nAt length Mr Dombey, bringing down Miss Tox and Mrs Chick to see\nthe children, and finding the Major again at Brighton, invited him to\ndinner at the Bedford, and complimented Miss Tox highly, beforehand,\non her neighbour and acquaintance.\n\n'My dearest Louisa,' said Miss Tox to Mrs Chick, when they were\nalone together, on the morning of the appointed day, 'if I should seem\nat all reserved to Major Bagstock, or under any constraint with him,\npromise me not to notice it.'\n\n'My dear Lucretia,' returned Mrs Chick, 'what mystery is involved\nin this remarkable request? I must insist upon knowing.'\n\n'Since you are resolved to extort a confession from me, Louisa,'\nsaid Miss Tox instantly, 'I have no alternative but to confide to you\nthat the Major has been particular.'\n\n'Particular!' repeated Mrs Chick.\n\n'The Major has long been very particular indeed, my love, in his\nattentions,' said Miss Tox, 'occasionally they have been so very\nmarked, that my position has been one of no common difficulty.'\n\n'Is he in good circumstances?' inquired Mrs Chick.\n\n'I have every reason to believe, my dear - indeed I may say I\nknow,' returned Miss Tox, 'that he is wealthy. He is truly military,\nand full of anecdote. I have been informed that his valour, when he\nwas in active service, knew no bounds. I am told that he did all sorts\nof things in the Peninsula, with every description of fire-arm; and in\nthe East and West Indies, my love, I really couldn't undertake to say\nwhat he did not do.'\n\n'Very creditable to him indeed,' said Mrs Chick, 'extremely so; and\nyou have given him no encouragement, my dear?'\n\n'If I were to say, Louisa,' replied Miss Tox, with every\ndemonstration of making an effort that rent her soul, 'that I never\nencouraged Major Bagstock slightly, I should not do justice to the\nfriendship which exists between you and me. It is, perhaps, hardly in\nthe nature of woman to receive such attentions as the Major once\nlavished upon myself without betraying some sense of obligation. But\nthat is past - long past. Between the Major and me there is now a\nyawning chasm, and I will not feign to give encouragement, Louisa,\nwhere I cannot give my heart. My affections,' said Miss Tox - 'but,\nLouisa, this is madness!' and departed from the room.\n\nAll this Mrs Chick communicated to her brother before dinner: and\nit by no means indisposed Mr Dombey to receive the Major with unwonted\ncordiality. The Major, for his part, was in a state of plethoric\nsatisfaction that knew no bounds: and he coughed, and choked, and\nchuckled, and gasped, and swelled, until the waiters seemed positively\nafraid of him.\n\n'Your family monopolises Joe's light, Sir,' said the Major, when he\nhad saluted Miss Tox. 'Joe lives in darkness. Princess's Place is\nchanged into Kamschatka in the winter time. There is no ray of sun,\nSir, for Joey B., now.'\n\n'Miss Tox is good enough to take a great deal of interest in Paul,\nMajor,' returned Mr Dombey on behalf of that blushing virgin.\n\n'Damme Sir,' said the Major, 'I'm jealous of my little friend. I'm\npining away Sir. The Bagstock breed is degenerating in the forsaken\nperson of old Joe.' And the Major, becoming bluer and bluer and\npuffing his cheeks further and further over the stiff ridge of his\ntight cravat, stared at Miss Tox, until his eyes seemed as if he were\nat that moment being overdone before the slow fire at the military\ncollege.\n\nNotwithstanding the palpitation of the heart which these allusions\noccasioned her, they were anything but disagreeable to Miss Tox, as\nthey enabled her to be extremely interesting, and to manifest an\noccasional incoherence and distraction which she was not at all\nunwilling to display. The Major gave her abundant opportunities of\nexhibiting this emotion: being profuse in his complaints, at dinner,\nof her desertion of him and Princess's Place: and as he appeared to\nderive great enjoyment from making them, they all got on very well.\n\nNone the worse on account of the Major taking charge of the whole\nconversation, and showing as great an appetite in that respect as in\nregard of the various dainties on the table, among which he may be\nalmost said to have wallowed: greatly to the aggravation of his\ninflammatory tendencies. Mr Dombey's habitual silence and reserve\nyielding readily to this usurpation, the Major felt that he was coming\nout and shining: and in the flow of spirits thus engendered, rang such\nan infinite number of new changes on his own name that he quite\nastonished himself. In a word, they were all very well pleased. The\nMajor was considered to possess an inexhaustible fund of conversation;\nand when he took a late farewell, after a long rubber, Mr Dombey again\ncomplimented the blushing Miss Tox on her neighbour and acquaintance.\n\nBut all the way home to his own hotel, the Major incessantly said\nto himself, and of himself, 'Sly, Sir - sly, Sir - de-vil-ish sly!'\nAnd when he got there, sat down in a chair, and fell into a silent fit\nof laughter, with which he was sometimes seized, and which was always\nparticularly awful. It held him so long on this occasion that the dark\nservant, who stood watching him at a distance, but dared not for his\nlife approach, twice or thrice gave him over for lost. His whole form,\nbut especially his face and head, dilated beyond all former\nexperience; and presented to the dark man's view, nothing but a\nheaving mass of indigo. At length he burst into a violent paroxysm of\ncoughing, and when that was a little better burst into such\nejaculations as the following:\n\n'Would you, Ma'am, would you? Mrs Dombey, eh, Ma'am? I think not,\nMa'am. Not while Joe B. can put a spoke in your wheel, Ma'am. J. B.'s\neven with you now, Ma'am. He isn't altogether bowled out, yet, Sir,\nisn't Bagstock. She's deep, Sir, deep, but Josh is deeper. Wide awake\nis old Joe - broad awake, and staring, Sir!' There was no doubt of\nthis last assertion being true, and to a very fearful extent; as it\ncontinued to be during the greater part of that night, which the Major\nchiefly passed in similar exclamations, diversified with fits of\ncoughing and choking that startled the whole house.\n\nIt was on the day after this occasion (being Sunday) when, as Mr\nDombey, Mrs Chick, and Miss Tox were sitting at breakfast, still\neulogising the Major, Florence came running in: her face suffused with\na bright colour, and her eyes sparkling joyfully: and cried,\n\n'Papa! Papa! Here's Walter! and he won't come in.'\n\n'Who?' cried Mr Dombey. 'What does she mean? What is this?'\n\n'Walter, Papa!' said Florence timidly; sensible of having\napproached the presence with too much familiarity. 'Who found me when\nI was lost.'\n\n'Does she mean young Gay, Louisa?' inquired Mr Dombey, knitting his\nbrows. 'Really, this child's manners have become very boisterous. She\ncannot mean young Gay, I think. See what it is, will you?'\n\nMrs Chick hurried into the passage, and returned with the\ninformation that it was young Gay, accompanied by a very\nstrange-looking person; and that young Gay said he would not take the\nliberty of coming in, hearing Mr Dombey was at breakfast, but would\nwait until Mr Dombey should signify that he might approach.\n\n'Tell the boy to come in now,' said Mr Dombey. 'Now, Gay, what is\nthe matter? Who sent you down here? Was there nobody else to come?'\n\n'I beg your pardon, Sir,' returned Walter. 'I have not been sent. I\nhave been so bold as to come on my own account, which I hope you'll\npardon when I mention the cause.\n\nBut Mr Dombey, without attending to what he said, was looking\nimpatiently on either side of him (as if he were a pillar in his way)\nat some object behind.\n\n'What's that?' said Mr Dombey. 'Who is that? I think you have made\nsome mistake in the door, Sir.'\n\n'Oh, I'm very sorry to intrude with anyone, Sir,' cried Walter,\nhastily: 'but this is - this is Captain Cuttle, Sir.'\n\n'Wal'r, my lad,' observed the Captain in a deep voice: 'stand by!'\n\nAt the same time the Captain, coming a little further in, brought\nout his wide suit of blue, his conspicuous shirt-collar, and his\nknobby nose in full relief, and stood bowing to Mr Dombey, and waving\nhis hook politely to the ladies, with the hard glazed hat in his one\nhand, and a red equator round his head which it had newly imprinted\nthere.\n\nMr Dombey regarded this phenomenon with amazement and indignation,\nand seemed by his looks to appeal to Mrs Chick and Miss Tox against\nit. Little Paul, who had come in after Florence, backed towards Miss\nTox as the Captain waved his book, and stood on the defensive.\n\n'Now, Gay,' said Mr Dombey. 'What have you got to say to me?'\n\nAgain the Captain observed, as a general opening of the\nconversation that could not fail to propitiate all parties, 'Wal'r,\nstandby!'\n\n'I am afraid, Sir,' began Walter, trembling, and looking down at\nthe ground, 'that I take a very great liberty in coming - indeed, I am\nsure I do. I should hardly have had the courage to ask to see you,\nSir, even after coming down, I am afraid, if I had not overtaken Miss\nDombey, and - '\n\n'Well!' said Mr Dombey, following his eyes as he glanced at the\nattentive Florence, and frowning unconsciously as she encouraged him\nwith a smile. 'Go on, if you please.'\n\n'Ay, ay,' observed the Captain, considering it incumbent on him, as\na point of good breeding, to support Mr Dombey. 'Well said! Go on,\nWal'r.'\n\nCaptain Cuttle ought to have been withered by the look which Mr\nDombey bestowed upon him in acknowledgment of his patronage. But quite\ninnocent of this, he closed one eye in reply, and gave Mr Dombey to\nunderstand, by certain significant motions of his hook, that Walter\nwas a little bashful at first, and might be expected to come out\nshortly.\n\n'It is entirely a private and personal matter, that has brought me\nhere, Sir,' continued Walter, faltering, 'and Captain Cuttle\n\n'Here!' interposed the Captain, as an assurance that he was at\nhand, and might be relied upon.\n\n'Who is a very old friend of my poor Uncle's, and a most excellent\nman, Sir,' pursued Walter, raising his eyes with a look of entreaty in\nthe Captain's behalf, 'was so good as to offer to come with me, which\nI could hardly refuse.'\n\n'No, no, no;' observed the Captain complacently. 'Of course not. No\ncall for refusing. Go on, Wal'r.'\n\n'And therefore, Sir,' said Walter, venturing to meet Mr Dombey's\neye, and proceeding with better courage in the very desperation of the\ncase, now that there was no avoiding it, 'therefore I have come, with\nhim, Sir, to say that my poor old Uncle is in very great affliction\nand distress. That, through the gradual loss of his business, and not\nbeing able to make a payment, the apprehension of which has weighed\nvery heavily upon his mind, months and months, as indeed I know, Sir,\nhe has an execution in his house, and is in danger of losing all he\nhas, and breaking his heart. And that if you would, in your kindness,\nand in your old knowledge of him as a respectable man, do anything to\nhelp him out of his difficulty, Sir, we never could thank you enough\nfor it.'\n\nWalter's eyes filled with tears as he spoke; and so did those of\nFlorence. Her father saw them glistening, though he appeared to look\nat Walter only.\n\n'It is a very large sum, Sir,' said Walter. 'More than three\nhundred pounds. My Uncle is quite beaten down by his misfortune, it\nlies so heavy on him; and is quite unable to do anything for his own\nrelief. He doesn't even know yet, that I have come to speak to you.\nYou would wish me to say, Sir,' added Walter, after a moment's\nhesitation, 'exactly what it is I want. I really don't know, Sir.\nThere is my Uncle's stock, on which I believe I may say, confidently,\nthere are no other demands, and there is Captain Cuttle, who would\nwish to be security too. I - I hardly like to mention,' said Walter,\n'such earnings as mine; but if you would allow them - accumulate -\npayment - advance - Uncle - frugal, honourable, old man.' Walter\ntrailed off, through these broken sentences, into silence: and stood\nwith downcast head, before his employer.\n\nConsidering this a favourable moment for the display of the\nvaluables, Captain Cuttle advanced to the table; and clearing a space\namong the breakfast-cups at Mr Dombey's elbow, produced the silver\nwatch, the ready money, the teaspoons, and the sugar-tongs; and piling\nthem up into a heap that they might look as precious as possible,\ndelivered himself of these words:\n\n'Half a loaf's better than no bread, and the same remark holds good\nwith crumbs. There's a few. Annuity of one hundred pound premium also\nready to be made over. If there is a man chock full of science in the\nworld, it's old Sol Gills. If there is a lad of promise - one\nflowing,' added the Captain, in one of his happy quotations, 'with\nmilk and honey - it's his nevy!'\n\nThe Captain then withdrew to his former place, where he stood\narranging his scattered locks with the air of a man who had given the\nfinishing touch to a difficult performance.\n\nWhen Walter ceased to speak, Mr Dombey's eyes were attracted to\nlittle Paul, who, seeing his sister hanging down her head and silently\nweeping in her commiseration for the distress she had heard described,\nwent over to her, and tried to comfort her: looking at Walter and his\nfather as he did so, with a very expressive face. After the momentary\ndistraction of Captain Cuttle's address, which he regarded with lofty\nindifference, Mr Dombey again turned his eyes upon his son, and sat\nsteadily regarding the child, for some moments, in silence.\n\n'What was this debt contracted for?' asked Mr Dombey, at length.\n'Who is the creditor?'\n\n'He don't know,' replied the Captain, putting his hand on Walter's\nshoulder. 'I do. It came of helping a man that's dead now, and that's\ncost my friend Gills many a hundred pound already. More particulars in\nprivate, if agreeable.'\n\n'People who have enough to do to hold their own way,' said Mr\nDombey, unobservant of the Captain's mysterious signs behind Walter,\nand still looking at his son, 'had better be content with their own\nobligations and difficulties, and not increase them by engaging for\nother men. It is an act of dishonesty and presumption, too,' said Mr\nDombey, sternly; 'great presumption; for the wealthy could do no more.\nPaul, come here!'\n\nThe child obeyed: and Mr Dombey took him on his knee.\n\n'If you had money now - ' said Mr Dombey. 'Look at me!'\n\nPaul, whose eyes had wandered to his sister, and to Walter, looked\nhis father in the face.\n\n'If you had money now,' said Mr Dombey; 'as much money as young Gay\nhas talked about; what would you do?'\n\n'Give it to his old Uncle,' returned Paul.\n\n'Lend it to his old Uncle, eh?' retorted Mr Dombey. 'Well! When you\nare old enough, you know, you will share my money, and we shall use it\ntogether.'\n\n'Dombey and Son,' interrupted Paul, who had been tutored early in\nthe phrase.\n\n'Dombey and Son,' repeated his father. 'Would you like to begin to\nbe Dombey and Son, now, and lend this money to young Gay's Uncle?'\n\n'Oh! if you please, Papa!' said Paul: 'and so would Florence.'\n\n'Girls,' said Mr Dombey, 'have nothing to do with Dombey and Son.\nWould you like it?'\n\n'Yes, Papa, yes!'\n\n'Then you shall do it,' returned his father. 'And you see, Paul,'\nhe added, dropping his voice, 'how powerful money is, and how anxious\npeople are to get it. Young Gay comes all this way to beg for money,\nand you, who are so grand and great, having got it, are going to let\nhim have it, as a great favour and obligation.'\n\nPaul turned up the old face for a moment, in which there was a\nsharp understanding of the reference conveyed in these words: but it\nwas a young and childish face immediately afterwards, when he slipped\ndown from his father's knee, and ran to tell Florence not to cry any\nmore, for he was going to let young Gay have the money.\n\nMr Dombey then turned to a side-table, and wrote a note and sealed\nit. During the interval, Paul and Florence whispered to Walter, and\nCaptain Cuttle beamed on the three, with such aspiring and ineffably\npresumptuous thoughts as Mr Dombey never could have believed in. The\nnote being finished, Mr Dombey turned round to his former place, and\nheld it out to Walter.\n\n'Give that,' he said, 'the first thing to-morrow morning, to Mr\nCarker. He will immediately take care that one of my people releases\nyour Uncle from his present position, by paying the amount at issue;\nand that such arrangements are made for its repayment as may be\nconsistent with your Uncle's circumstances. You will consider that\nthis is done for you by Master Paul.'\n\nWalter, in the emotion of holding in his hand the means of\nreleasing his good Uncle from his trouble, would have endeavoured to\nexpress something of his gratitude and joy. But Mr Dombey stopped him\nshort.\n\n'You will consider that it is done,' he repeated, 'by Master Paul.\nI have explained that to him, and he understands it. I wish no more to\nbe said.'\n\nAs he motioned towards the door, Walter could only bow his head and\nretire. Miss Tox, seeing that the Captain appeared about to do the\nsame, interposed.\n\n'My dear Sir,' she said, addressing Mr Dombey, at whose munificence\nboth she and Mrs Chick were shedding tears copiously; 'I think you\nhave overlooked something. Pardon me, Mr Dombey, I think, in the\nnobility of your character, and its exalted scope, you have omitted a\nmatter of detail.'\n\n'Indeed, Miss Tox!' said Mr Dombey.\n\n'The gentleman with the - Instrument,' pursued Miss Tox, glancing\nat Captain Cuttle, 'has left upon the table, at your elbow - '\n\n'Good Heaven!' said Mr Dombey, sweeping the Captain's property from\nhim, as if it were so much crumb indeed. 'Take these things away. I am\nobliged to you, Miss Tox; it is like your usual discretion. Have the\ngoodness to take these things away, Sir!'\n\nCaptain Cuttle felt he had no alternative but to comply. But he was\nso much struck by the magnanimity of Mr Dombey, in refusing treasures\nlying heaped up to his hand, that when he had deposited the teaspoons\nand sugar-tongs in one pocket, and the ready money in another, and had\nlowered the great watch down slowly into its proper vault, he could\nnot refrain from seizing that gentleman's right hand in his own\nsolitary left, and while he held it open with his powerful fingers,\nbringing the hook down upon its palm in a transport of admiration. At\nthis touch of warm feeling and cold iron, Mr Dombey shivered all over.\n\nCaptain Cuttle then kissed his hook to the ladies several times,\nwith great elegance and gallantry; and having taken a particular leave\nof Paul and Florence, accompanied Walter out of the room. Florence was\nrunning after them in the earnestness of her heart, to send some\nmessage to old Sol, when Mr Dombey called her back, and bade her stay\nwhere she was.\n\n'Will you never be a Dombey, my dear child!' said Mrs Chick, with\npathetic reproachfulness.\n\n'Dear aunt,' said Florence. 'Don't be angry with me. I am so\nthankful to Papa!'\n\nShe would have run and thrown her arms about his neck if she had\ndared; but as she did not dare, she glanced with thankful eyes towards\nhim, as he sat musing; sometimes bestowing an uneasy glance on her,\nbut, for the most part, watching Paul, who walked about the room with\nthe new-blown dignity of having let young Gay have the money.\n\nAnd young Gay - Walter- what of him?\n\nHe was overjoyed to purge the old man's hearth from bailiffs and\nbrokers, and to hurry back to his Uncle with the good tidings. He was\noverjoyed to have it all arranged and settled next day before noon;\nand to sit down at evening in the little back parlour with old Sol and\nCaptain Cuttle; and to see the Instrument-maker already reviving, and\nhopeful for the future, and feeling that the wooden Midshipman was his\nown again. But without the least impeachment of his gratitude to Mr\nDombey, it must be confessed that Walter was humbled and cast down. It\nis when our budding hopes are nipped beyond recovery by some rough\nwind, that we are the most disposed to picture to ourselves what\nflowers they might have borne, if they had flourished; and now, when\nWalter found himself cut off from that great Dombey height, by the\ndepth of a new and terrible tumble, and felt that all his old wild\nfancies had been scattered to the winds in the fall, he began to\nsuspect that they might have led him on to harmless visions of\naspiring to Florence in the remote distance of time.\n\nThe Captain viewed the subject in quite a different light. He\nappeared to entertain a belief that the interview at which he had\nassisted was so very satisfactory and encouraging, as to be only a\nstep or two removed from a regular betrothal of Florence to Walter;\nand that the late transaction had immensely forwarded, if not\nthoroughly established, the Whittingtonian hopes. Stimulated by this\nconviction, and by the improvement in the spirits of his old friend,\nand by his own consequent gaiety, he even attempted, in favouring them\nwith the ballad of 'Lovely Peg' for the third time in one evening, to\nmake an extemporaneous substitution of the name 'Florence;' but\nfinding this difficult, on account of the word Peg invariably rhyming\nto leg (in which personal beauty the original was described as having\nexcelled all competitors), he hit upon the happy thought of changing\nit to Fle-e-eg; which he accordingly did, with an archness almost\nsupernatural, and a voice quite vociferous, notwithstanding that the\ntime was close at band when he must seek the abode of the dreadful Mrs\nMacStinger.\n\nThat same evening the Major was diffuse at his club, on the subject\nof his friend Dombey in the City. 'Damme, Sir,' said the Major, 'he's\na prince, is my friend Dombey in the City. I tell you what, Sir. If\nyou had a few more men among you like old Joe Bagstock and my friend\nDombey in the City, Sir, you'd do!'\n\n\n\nCHAPTER 11.\n\nPaul's Introduction to a New Scene\n\n\n\nMrs Pipchin's constitution was made of such hard metal, in spite of\nits liability to the fleshly weaknesses of standing in need of repose\nafter chops, and of requiring to be coaxed to sleep by the soporific\nagency of sweet-breads, that it utterly set at naught the predictions\nof Mrs Wickam, and showed no symptoms of decline. Yet, as Paul's rapt\ninterest in the old lady continued unbated, Mrs Wickam would not budge\nan inch from the position she had taken up. Fortifying and entrenching\nherself on the strong ground of her Uncle's Betsey Jane, she advised\nMiss Berry, as a friend, to prepare herself for the worst; and\nforewarned her that her aunt might, at any time, be expected to go off\nsuddenly, like a powder-mill.\n\n'I hope, Miss Berry,' Mrs Wickam would observe, 'that you'll come\ninto whatever little property there may be to leave. You deserve it, I\nam sure, for yours is a trying life. Though there don't seem much\nworth coming into - you'll excuse my being so open - in this dismal\nden.'\n\nPoor Berry took it all in good part, and drudged and slaved away as\nusual; perfectly convinced that Mrs Pipchin was one of the most\nmeritorious persons in the world, and making every day innumerable\nsacrifices of herself upon the altar of that noble old woman. But all\nthese immolations of Berry were somehow carried to the credit of Mrs\nPipchin by Mrs Pipchin's friends and admirers; and were made to\nharmonise with, and carry out, that melancholy fact of the deceased Mr\nPipchin having broken his heart in the Peruvian mines.\n\nFor example, there was an honest grocer and general dealer in the\nretail line of business, between whom and Mrs Pipchin there was a\nsmall memorandum book, with a greasy red cover, perpetually in\nquestion, and concerning which divers secret councils and conferences\nwere continually being held between the parties to that register, on\nthe mat in the passage, and with closed doors in the parlour. Nor were\nthere wanting dark hints from Master Bitherstone (whose temper had\nbeen made revengeful by the solar heats of India acting on his blood),\nof balances unsettled, and of a failure, on one occasion within his\nmemory, in the supply of moist sugar at tea-time. This grocer being a\nbachelor and not a man who looked upon the surface for beauty, had\nonce made honourable offers for the hand of Berry, which Mrs Pipchin\nhad, with contumely and scorn, rejected. Everybody said how laudable\nthis was in Mrs Pipchin, relict of a man who had died of the Peruvian\nmines; and what a staunch, high, independent spirit the old lady had.\nBut nobody said anything about poor Berry, who cried for six weeks\n(being soundly rated by her good aunt all the time), and lapsed into a\nstate of hopeless spinsterhood.\n\n'Berry's very fond of you, ain't she?' Paul once asked Mrs Pipchin\nwhen they were sitting by the fire with the cat.\n\n'Yes,' said Mrs Pipchin.\n\n'Why?' asked Paul.\n\n'Why!' returned the disconcerted old lady. 'How can you ask such\nthings, Sir! why are you fond of your sister Florence?'\n\n'Because she's very good,' said Paul. 'There's nobody like\nFlorence.'\n\n'Well!' retorted Mrs Pipchin, shortly, 'and there's nobody like me,\nI suppose.'\n\n'Ain't there really though?' asked Paul, leaning forward in his\nchair, and looking at her very hard.\n\n'No,' said the old lady.\n\n'I am glad of that,' observed Paul, rubbing his hands thoughtfully.\n'That's a very good thing.'\n\nMrs Pipchin didn't dare to ask him why, lest she should receive\nsome perfectly annihilating answer. But as a compensation to her\nwounded feelings, she harassed Master Bitherstone to that extent until\nbed-time, that he began that very night to make arrangements for an\noverland return to India, by secreting from his supper a quarter of a\nround of bread and a fragment of moist Dutch cheese, as the beginning\nof a stock of provision to support him on the voyage.\n\nMrs Pipchin had kept watch and ward over little Paul and his sister\nfor nearly twelve months. They had been home twice, but only for a few\ndays; and had been constant in their weekly visits to Mr Dombey at the\nhotel. By little and little Paul had grown stronger, and had become\nable to dispense with his carriage; though he still looked thin and\ndelicate; and still remained the same old, quiet, dreamy child that he\nhad been when first consigned to Mrs Pipchin's care. One Saturday\nafternoon, at dusk, great consternation was occasioned in the Castle\nby the unlooked-for announcement of Mr Dombey as a visitor to Mrs\nPipchin. The population of the parlour was immediately swept upstairs\nas on the wings of a whirlwind, and after much slamming of bedroom\ndoors, and trampling overhead, and some knocking about of Master\nBitherstone by Mrs Pipchin, as a relief to the perturbation of her\nspirits, the black bombazeen garments of the worthy old lady darkened\nthe audience-chamber where Mr Dombey was contemplating the vacant\narm-chair of his son and heir.\n\n'Mrs Pipchin,' said Mr Dombey, 'How do you do?'\n\n'Thank you, Sir,' said Mrs Pipchin, 'I am pretty well,\nconsidering.'\n\nMrs Pipchin always used that form of words. It meant, considering\nher virtues, sacrifices, and so forth.\n\n'I can't expect, Sir, to be very well,' said Mrs Pipchin, taking a\nchair and fetching her breath; 'but such health as I have, I am\ngrateful for.'\n\nMr Dombey inclined his head with the satisfied air of a patron, who\nfelt that this was the sort of thing for which he paid so much a\nquarter. After a moment's silence he went on to say:\n\n'Mrs Pipchin, I have taken the liberty of calling, to consult you\nin reference to my son. I have had it in my mind to do so for some\ntime past; but have deferred it from time to time, in order that his\nhealth might be thoroughly re-established. You have no misgivings on\nthat subject, Mrs Pipchin?'\n\n'Brighton has proved very beneficial, Sir,' returned Mrs Pipchin.\n'Very beneficial, indeed.'\n\n'I purpose,' said Mr Dombey, 'his remaining at Brighton.'\n\nMrs Pipchin rubbed her hands, and bent her grey eyes on the fire.\n\n'But,' pursued Mr Dombey, stretching out his forefinger, 'but\npossibly that he should now make a change, and lead a different kind\nof life here. In short, Mrs Pipchin, that is the object of my visit.\nMy son is getting on, Mrs Pipchin. Really, he is getting on.'\n\nThere was something melancholy in the triumphant air with which Mr\nDombey said this. It showed how long Paul's childish life had been to\nhim, and how his hopes were set upon a later stage of his existence.\nPity may appear a strange word to connect with anyone so haughty and\nso cold, and yet he seemed a worthy subject for it at that moment.\n\n'Six years old!' said Mr Dombey, settling his neckcloth - perhaps\nto hide an irrepressible smile that rather seemed to strike upon the\nsurface of his face and glance away, as finding no resting-place, than\nto play there for an instant. 'Dear me, six will be changed to\nsixteen, before we have time to look about us.'\n\n'Ten years,' croaked the unsympathetic Pipchin, with a frosty\nglistening of her hard grey eye, and a dreary shaking of her bent\nhead, 'is a long time.'\n\n'It depends on circumstances, returned Mr Dombey; 'at all events,\nMrs Pipchin, my son is six years old, and there is no doubt, I fear,\nthat in his studies he is behind many children of his age - or his\nyouth,' said Mr Dombey, quickly answering what he mistrusted was a\nshrewd twinkle of the frosty eye, 'his youth is a more appropriate\nexpression. Now, Mrs Pipchin, instead of being behind his peers, my\nson ought to be before them; far before them. There is an eminence\nready for him to mount upon. There is nothing of chance or doubt in\nthe course before my son. His way in life was clear and prepared, and\nmarked out before he existed. The education of such a young gentleman\nmust not be delayed. It must not be left imperfect. It must be very\nsteadily and seriously undertaken, Mrs Pipchin.'\n\n'Well, Sir,' said Mrs Pipchin, 'I can say nothing to the contrary.'\n\n'I was quite sure, Mrs Pipchin,' returned Mr Dombey, approvingly,\n'that a person of your good sense could not, and would not.'\n\n'There is a great deal of nonsense - and worse - talked about young\npeople not being pressed too hard at first, and being tempted on, and\nall the rest of it, Sir,' said Mrs Pipchin, impatiently rubbing her\nhooked nose. 'It never was thought of in my time, and it has no\nbusiness to be thought of now. My opinion is \"keep 'em at it\".'\n\n'My good madam,' returned Mr Dombey, 'you have not acquired your\nreputation undeservedly; and I beg you to believe, Mrs Pipchin, that I\nam more than satisfied with your excellent system of management, and\nshall have the greatest pleasure in commending it whenever my poor\ncommendation - ' Mr Dombey's loftiness when he affected to disparage\nhis own importance, passed all bounds - 'can be of any service. I have\nbeen thinking of Doctor Blimber's, Mrs Pipchin.'\n\n'My neighbour, Sir?' said Mrs Pipchin. 'I believe the Doctor's is\nan excellent establishment. I've heard that it's very strictly\nconducted, and there is nothing but learning going on from morning to\nnight.'\n\n'And it's very expensive,' added Mr Dombey.\n\n'And it's very expensive, Sir,' returned Mrs Pipchin, catching at\nthe fact, as if in omitting that, she had omitted one of its leading\nmerits.\n\n'I have had some communication with the Doctor, Mrs Pipchin,' said\nMr Dombey, hitching his chair anxiously a little nearer to the fire,\n'and he does not consider Paul at all too young for his purpose. He\nmentioned several instances of boys in Greek at about the same age. If\nI have any little uneasiness in my own mind, Mrs Pipchin, on the\nsubject of this change, it is not on that head. My son not having\nknown a mother has gradually concentrated much - too much - of his\nchildish affection on his sister. Whether their separation - ' Mr\nDombey said no more, but sat silent.\n\n'Hoity-toity!' exclaimed Mrs Pipchin, shaking out her black\nbombazeen skirts, and plucking up all the ogress within her. 'If she\ndon't like it, Mr Dombey, she must be taught to lump it.' The good\nlady apologised immediately afterwards for using so common a figure of\nspeech, but said (and truly) that that was the way she reasoned with\n'em.\n\nMr Dombey waited until Mrs Pipchin had done bridling and shaking\nher head, and frowning down a legion of Bitherstones and Pankeys; and\nthen said quietly, but correctively, 'He, my good madam, he.'\n\nMrs Pipchin's system would have applied very much the same mode of\ncure to any uneasiness on the part of Paul, too; but as the hard grey\neye was sharp enough to see that the recipe, however Mr Dombey might\nadmit its efficacy in the case of the daughter, was not a sovereign\nremedy for the son, she argued the point; and contended that change,\nand new society, and the different form of life he would lead at\nDoctor Blimber's, and the studies he would have to master, would very\nsoon prove sufficient alienations. As this chimed in with Mr Dombey's\nown hope and belief, it gave that gentleman a still higher opinion of\nMrs Pipchin's understanding; and as Mrs Pipchin, at the same time,\nbewailed the loss of her dear little friend (which was not an\noverwhelming shock to her, as she had long expected it, and had not\nlooked, in the beginning, for his remaining with her longer than three\nmonths), he formed an equally good opinion of Mrs Pipchin's\ndisinterestedness. It was plain that he had given the subject anxious\nconsideration, for he had formed a plan, which he announced to the\nogress, of sending Paul to the Doctor's as a weekly boarder for the\nfirst half year, during which time Florence would remain at the\nCastle, that she might receive her brother there, on Saturdays. This\nwould wean him by degrees, Mr Dombey said; possibly with a\nrecollection of his not having been weaned by degrees on a former\noccasion.\n\nMr Dombey finished the interview by expressing his hope that Mrs\nPipchin would still remain in office as general superintendent and\noverseer of his son, pending his studies at Brighton; and having\nkissed Paul, and shaken hands with Florence, and beheld Master\nBitherstone in his collar of state, and made Miss Pankey cry by\npatting her on the head (in which region she was uncommonly tender, on\naccount of a habit Mrs Pipchin had of sounding it with her knuckles,\nlike a cask), he withdrew to his hotel and dinner: resolved that Paul,\nnow that he was getting so old and well, should begin a vigorous\ncourse of education forthwith, to qualify him for the position in\nwhich he was to shine; and that Doctor Blimber should take him in hand\nimmediately.\n\nWhenever a young gentleman was taken in hand by Doctor Blimber, he\nmight consider himself sure of a pretty tight squeeze. The Doctor only\nundertook the charge of ten young gentlemen, but he had, always ready,\na supply of learning for a hundred, on the lowest estimate; and it was\nat once the business and delight of his life to gorge the unhappy ten\nwith it.\n\nIn fact, Doctor Blimber's establishment was a great hot-house, in\nwhich there was a forcing apparatus incessantly at work. All the boys\nblew before their time. Mental green-peas were produced at Christmas,\nand intellectual asparagus all the year round. Mathematical\ngooseberries (very sour ones too) were common at untimely seasons, and\nfrom mere sprouts of bushes, under Doctor Blimber's cultivation. Every\ndescription of Greek and Latin vegetable was got off the driest twigs\nof boys, under the frostiest circumstances. Nature was of no\nconsequence at all. No matter what a young gentleman was intended to\nbear, Doctor Blimber made him bear to pattern, somehow or other.\n\nThis was all very pleasant and ingenious, but the system of forcing\nwas attended with its usual disadvantages. There was not the right\ntaste about the premature productions, and they didn't keep well.\nMoreover, one young gentleman, with a swollen nose and an excessively\nlarge head (the oldest of the ten who had 'gone through' everything),\nsuddenly left off blowing one day, and remained in the establishment a\nmere stalk. And people did say that the Doctor had rather overdone it\nwith young Toots, and that when he began to have whiskers he left off\nhaving brains.\n\nThere young Toots was, at any rate; possessed of the gruffest of\nvoices and the shrillest of minds; sticking ornamental pins into his\nshirt, and keeping a ring in his waistcoat pocket to put on his little\nfinger by stealth, when the pupils went out walking; constantly\nfalling in love by sight with nurserymaids, who had no idea of his\nexistence; and looking at the gas-lighted world over the little iron\nbars in the left-hand corner window of the front three pairs of\nstairs, after bed-time, like a greatly overgrown cherub who had sat up\naloft much too long.\n\nThe Doctor was a portly gentleman in a suit of black, with strings\nat his knees, and stockings below them. He had a bald head, highly\npolished; a deep voice; and a chin so very double, that it was a\nwonder how he ever managed to shave into the creases. He had likewise\na pair of little eyes that were always half shut up, and a mouth that\nwas always half expanded into a grin, as if he had, that moment, posed\na boy, and were waiting to convict him from his own lips. Insomuch,\nthat when the Doctor put his right hand into the breast of his coat,\nand with his other hand behind him, and a fly perceptible wag of his\nhead, made the commonest observation to a nervous stranger, it was\nlike a sentiment from the sphynx, and settled his business.\n\nThe Doctor's was a mighty fine house, fronting the sea. Not a\njoyful style of house within, but quite the contrary. Sad-coloured\ncurtains, whose proportions were spare and lean, hid themselves\ndespondently behind the windows. The tables and chairs were put away\nin rows, like figures in a sum; fires were so rarely lighted in the\nrooms of ceremony, that they felt like wells, and a visitor\nrepresented the bucket; the dining-room seemed the last place in the\nworld where any eating or drinking was likely to occur; there was no\nsound through all the house but the ticking of a great clock in the\nhall, which made itself audible in the very garrets; and sometimes a\ndull cooing of young gentlemen at their lessons, like the murmurings\nof an assemblage of melancholy pigeons.\n\nMiss Blimber, too, although a slim and graceful maid, did no soft\nviolence to the gravity of the house. There was no light nonsense\nabout Miss Blimber. She kept her hair short and crisp, and wore\nspectacles. She was dry and sandy with working in the graves of\ndeceased languages. None of your live languages for Miss Blimber. They\nmust be dead - stone dead - and then Miss Blimber dug them up like a\nGhoul.\n\nMrs Blimber, her Mama, was not learned herself, but she pretended\nto be, and that did quite as well. She said at evening parties, that\nif she could have known Cicero, she thought she could have died\ncontented. It was the steady joy of her life to see the Doctor's young\ngentlemen go out walking, unlike all other young gentlemen, in the\nlargest possible shirt-collars, and the stiffest possible cravats. It\nwas so classical, she said.\n\nAs to Mr Feeder, B.A., Doctor Blimber's assistant, he was a kind of\nhuman barrel-organ, with a little list of tunes at which he was\ncontinually working, over and over again, without any variation. He\nmight have been fitted up with a change of barrels, perhaps, in early\nlife, if his destiny had been favourable; but it had not been; and he\nhad only one, with which, in a monotonous round, it was his occupation\nto bewilder the young ideas of Doctor Blimber's young gentlemen. The\nyoung gentlemen were prematurely full of carking anxieties. They knew\nno rest from the pursuit of stony-hearted verbs, savage\nnoun-substantives, inflexible syntactic passages, and ghosts of\nexercises that appeared to them in their dreams. Under the forcing\nsystem, a young gentleman usually took leave of his spirits in three\nweeks. He had all the cares of the world on his head in three months.\nHe conceived bitter sentiments against his parents or guardians in\nfour; he was an old misanthrope, in five; envied Curtius that blessed\nrefuge in the earth, in six; and at the end of the first twelvemonth\nhad arrived at the conclusion, from which he never afterwards\ndeparted, that all the fancies of the poets, and lessons of the sages,\nwere a mere collection of words and grammar, and had no other meaning\nin the world.\n\nBut he went on blow, blow, blowing, in the Doctor's hothouse, all\nthe time; and the Doctor's glory and reputation were great, when he\ntook his wintry growth home to his relations and friends.\n\nUpon the Doctor's door-steps one day, Paul stood with a fluttering\nheart, and with his small right hand in his father's. His other hand\nwas locked in that of Florence. How tight the tiny pressure of that\none; and how loose and cold the other!\n\nMrs Pipchin hovered behind the victim, with her sable plumage and\nher hooked beak, like a bird of ill-omen. She was out of breath - for\nMr Dombey, full of great thoughts, had walked fast - and she croaked\nhoarsely as she waited for the opening of the door.\n\n'Now, Paul,' said Mr Dombey, exultingly. 'This is the way indeed to\nbe Dombey and Son, and have money. You are almost a man already.'\n\n'Almost,' returned the child.\n\nEven his childish agitation could not master the sly and quaint yet\ntouching look, with which he accompanied the reply.\n\nIt brought a vague expression of dissatisfaction into Mr Dombey's\nface; but the door being opened, it was quickly gone\n\n'Doctor Blimber is at home, I believe?' said Mr Dombey.\n\nThe man said yes; and as they passed in, looked at Paul as if he\nwere a little mouse, and the house were a trap. He was a weak-eyed\nyoung man, with the first faint streaks or early dawn of a grin on his\ncountenance. It was mere imbecility; but Mrs Pipchin took it into her\nhead that it was impudence, and made a snap at him directly.\n\n'How dare you laugh behind the gentleman's back?' said Mrs Pipchin.\n'And what do you take me for?'\n\n'I ain't a laughing at nobody, and I'm sure I don't take you for\nnothing, Ma'am,' returned the young man, in consternation.\n\n'A pack of idle dogs!' said Mrs Pipchin, 'only fit to be turnspits.\nGo and tell your master that Mr Dombey's here, or it'll be worse for\nyou!'\n\nThe weak-eyed young man went, very meekly, to discharge himself of\nthis commission; and soon came back to invite them to the Doctor's\nstudy.\n\n'You're laughing again, Sir,' said Mrs Pipchin, when it came to her\nturn, bringing up the rear, to pass him in the hall.\n\n'I ain't,' returned the young man, grievously oppressed. 'I never\nsee such a thing as this!'\n\n'What is the matter, Mrs Pipchin?' said Mr Dombey, looking round.\n'Softly! Pray!'\n\nMrs Pipchin, in her deference, merely muttered at the young man as\nshe passed on, and said, 'Oh! he was a precious fellow' - leaving the\nyoung man, who was all meekness and incapacity, affected even to tears\nby the incident. But Mrs Pipchin had a way of falling foul of all meek\npeople; and her friends said who could wonder at it, after the\nPeruvian mines!\n\nThe Doctor was sitting in his portentous study, with a globe at\neach knee, books all round him, Homer over the door, and Minerva on\nthe mantel-shelf. 'And how do you do, Sir?' he said to Mr Dombey, 'and\nhow is my little friend?' Grave as an organ was the Doctor's speech;\nand when he ceased, the great clock in the hall seemed (to Paul at\nleast) to take him up, and to go on saying, 'how, is, my, lit, tle,\nfriend? how, is, my, lit, tle, friend?' over and over and over again.\n\nThe little friend being something too small to be seen at all from\nwhere the Doctor sat, over the books on his table, the Doctor made\nseveral futile attempts to get a view of him round the legs; which Mr\nDombey perceiving, relieved the Doctor from his embarrassment by\ntaking Paul up in his arms, and sitting him on another little table,\nover against the Doctor, in the middle of the room.\n\n'Ha!' said the Doctor, leaning back in his chair with his hand in\nhis breast. 'Now I see my little friend. How do you do, my little\nfriend?'\n\nThe clock in the hall wouldn't subscribe to this alteration in the\nform of words, but continued to repeat how, is, my, lit, tle, friend?\nhow, is, my, lit, tle, friend?'\n\n'Very well, I thank you, Sir,' returned Paul, answering the clock\nquite as much as the Doctor.\n\n'Ha!' said Doctor Blimber. 'Shall we make a man of him?'\n\n'Do you hear, Paul?' added Mr Dombey; Paul being silent.\n\n'Shall we make a man of him?' repeated the Doctor.\n\n'I had rather be a child,' replied Paul.\n\n'Indeed!' said the Doctor. 'Why?'\n\nThe child sat on the table looking at him, with a curious\nexpression of suppressed emotion in his face, and beating one hand\nproudly on his knee as if he had the rising tears beneath it, and\ncrushed them. But his other hand strayed a little way the while, a\nlittle farther - farther from him yet - until it lighted on the neck\nof Florence. 'This is why,' it seemed to say, and then the steady look\nwas broken up and gone; the working lip was loosened; and the tears\ncame streaming forth.\n\n'Mrs Pipchin,' said his father, in a querulous manner, 'I am really\nvery sorry to see this.'\n\n'Come away from him, do, Miss Dombey,' quoth the matron.\n\n'Never mind,' said the Doctor, blandly nodding his head, to keep\nMrs Pipchin back. 'Never mind; we shall substitute new cares and new\nimpressions, Mr Dombey, very shortly. You would still wish my little\nfriend to acquire - '\n\n'Everything, if you please, Doctor,' returned Mr Dombey, firmly.\n\n'Yes,' said the Doctor, who, with his half-shut eyes, and his usual\nsmile, seemed to survey Paul with the sort of interest that might\nattach to some choice little animal he was going to stuff. 'Yes,\nexactly. Ha! We shall impart a great variety of information to our\nlittle friend, and bring him quickly forward, I daresay. I daresay.\nQuite a virgin soil, I believe you said, Mr Dombey?'\n\n'Except some ordinary preparation at home, and from this lady,'\nreplied Mr Dombey, introducing Mrs Pipchin, who instantly communicated\na rigidity to her whole muscular system, and snorted defiance\nbeforehand, in case the Doctor should disparage her; 'except so far,\nPaul has, as yet, applied himself to no studies at all.'\n\nDoctor Blimber inclined his head, in gentle tolerance of such\ninsignificant poaching as Mrs Pipchin's, and said he was glad to hear\nit. It was much more satisfactory, he observed, rubbing his hands, to\nbegin at the foundation. And again he leered at Paul, as if he would\nhave liked to tackle him with the Greek alphabet, on the spot.\n\n'That circumstance, indeed, Doctor Blimber,' pursued Mr Dombey,\nglancing at his little son, 'and the interview I have already had the\npleasure of holding with you, renders any further explanation, and\nconsequently, any further intrusion on your valuable time, so\nunnecessary, that - '\n\n'Now, Miss Dombey!' said the acid Pipchin.\n\n'Permit me,' said the Doctor, 'one moment. Allow me to present Mrs\nBlimber and my daughter; who will be associated with the domestic life\nof our young Pilgrim to Parnassus Mrs Blimber,' for the lady, who had\nperhaps been in waiting, opportunely entered, followed by her\ndaughter, that fair Sexton in spectacles, 'Mr Dombey. My daughter\nCornelia, Mr Dombey. Mr Dombey, my love,' pursued the Doctor, turning\nto his wife, 'is so confiding as to - do you see our little friend?'\n\nMrs Blimber, in an excess of politeness, of which Mr Dombey was the\nobject, apparently did not, for she was backing against the little\nfriend, and very much endangering his position on the table. But, on\nthis hint, she turned to admire his classical and intellectual\nlineaments, and turning again to Mr Dombey, said, with a sigh, that\nshe envied his dear son.\n\n'Like a bee, Sir,' said Mrs Blimber, with uplifted eyes, 'about to\nplunge into a garden of the choicest flowers, and sip the sweets for\nthe first time Virgil, Horace, Ovid, Terence, Plautus, Cicero. What a\nworld of honey have we here. It may appear remarkable, Mr Dombey, in\none who is a wife - the wife of such a husband - '\n\n'Hush, hush,' said Doctor Blimber. 'Fie for shame.'\n\n'Mr Dombey will forgive the partiality of a wife,' said Mrs\nBlimber, with an engaging smile.\n\nMr Dombey answered 'Not at all:' applying those words, it is to be\npresumed, to the partiality, and not to the forgiveness.\n\n'And it may seem remarkable in one who is a mother also,' resumed\nMrs Blimber.\n\n'And such a mother,' observed Mr Dombey, bowing with some confused\nidea of being complimentary to Cornelia.\n\n'But really,' pursued Mrs Blimber, 'I think if I could have known\nCicero, and been his friend, and talked with him in his retirement at\nTusculum (beau-ti-ful Tusculum!), I could have died contented.'\n\nA learned enthusiasm is so very contagious, that Mr Dombey half\nbelieved this was exactly his case; and even Mrs Pipchin, who was not,\nas we have seen, of an accommodating disposition generally, gave\nutterance to a little sound between a groan and a sigh, as if she\nwould have said that nobody but Cicero could have proved a lasting\nconsolation under that failure of the Peruvian MInes, but that he\nindeed would have been a very Davy-lamp of refuge.\n\nCornelia looked at Mr Dombey through her spectacles, as if she\nwould have liked to crack a few quotations with him from the authority\nin question. But this design, if she entertained it, was frustrated by\na knock at the room-door.\n\n'Who is that?' said the Doctor. 'Oh! Come in, Toots; come in. Mr\nDombey, Sir.' Toots bowed. 'Quite a coincidence!' said Doctor Blimber.\n'Here we have the beginning and the end. Alpha and Omega Our head boy,\nMr Dombey.'\n\nThe Doctor might have called him their head and shoulders boy, for\nhe was at least that much taller than any of the rest. He blushed very\nmuch at finding himself among strangers, and chuckled aloud.\n\n'An addition to our little Portico, Toots,' said the Doctor; 'Mr\nDombey's son.'\n\nYoung Toots blushed again; and finding, from a solemn silence which\nprevailed, that he was expected to say something, said to Paul, 'How\nare you?' in a voice so deep, and a manner so sheepish, that if a lamb\nhad roared it couldn't have been more surprising.\n\n'Ask Mr Feeder, if you please, Toots,' said the Doctor, 'to prepare\na few introductory volumes for Mr Dombey's son, and to allot him a\nconvenient seat for study. My dear, I believe Mr Dombey has not seen\nthe dormitories.'\n\n'If Mr Dombey will walk upstairs,' said Mrs Blimber, 'I shall be\nmore than proud to show him the dominions of the drowsy god.'\n\nWith that, Mrs Blimber, who was a lady of great suavity, and a wiry\nfigure, and who wore a cap composed of sky-blue materials, pied\nupstairs with Mr Dombey and Cornelia; Mrs Pipchin following, and\nlooking out sharp for her enemy the footman.\n\nWhile they were gone, Paul sat upon the table, holding Florence by\nthe hand, and glancing timidly from the Doctor round and round the\nroom, while the Doctor, leaning back in his chair, with his hand in\nhis breast as usual, held a book from him at arm's length, and read.\nThere was something very awful in this manner of reading. It was such\na determined, unimpassioned, inflexible, cold-blooded way of going to\nwork. It left the Doctor's countenance exposed to view; and when the\nDoctor smiled suspiciously at his author, or knit his brows, or shook\nhis head and made wry faces at him, as much as to say, 'Don't tell me,\nSir; I know better,' it was terrific.\n\nToots, too, had no business to be outside the door, ostentatiously\nexamining the wheels in his watch, and counting his half-crowns. But\nthat didn't last long; for Doctor Blimber, happening to change the\nposition of his tight plump legs, as if he were going to get up, Toots\nswiftly vanished, and appeared no more.\n\nMr Dombey and his conductress were soon heard coming downstairs\nagain, talking all the way; and presently they re-entered the Doctor's\nstudy.\n\n'I hope, Mr Dombey,' said the Doctor, laying down his book, 'that\nthe arrangements meet your approval.'\n\n'They are excellent, Sir,' said Mr Dombey.\n\n'Very fair, indeed,' said Mrs Pipchin, in a low voice; never\ndisposed to give too much encouragement.\n\n'Mrs Pipchin,' said Mr Dombey, wheeling round, 'will, with your\npermission, Doctor and Mrs Blimber, visit Paul now and then.'\n\n'Whenever Mrs Pipchin pleases,' observed the Doctor.\n\n'Always happy to see her,' said Mrs Blimber.\n\n'I think,' said Mr Dombey, 'I have given all the trouble I need,\nand may take my leave. Paul, my child,' he went close to him, as he\nsat upon the table. 'Good-bye.'\n\n'Good-bye, Papa.'\n\nThe limp and careless little hand that Mr Dombey took in his, was\nsingularly out of keeping with the wistful face. But he had no part in\nits sorrowful expression. It was not addressed to him. No, no. To\nFlorence - all to Florence.\n\nIf Mr Dombey in his insolence of wealth, had ever made an enemy,\nhard to appease and cruelly vindictive in his hate, even such an enemy\nmight have received the pang that wrung his proud heart then, as\ncompensation for his injury.\n\nHe bent down, over his boy, and kissed him. If his sight were\ndimmed as he did so, by something that for a moment blurred the little\nface, and made it indistinct to him, his mental vision may have been,\nfor that short time, the clearer perhaps.\n\n'I shall see you soon, Paul. You are free on Saturdays and Sundays,\nyou know.'\n\n'Yes, Papa,' returned Paul: looking at his sister. 'On Saturdays\nand Sundays.'\n\n'And you'll try and learn a great deal here, and be a clever man,'\nsaid Mr Dombey; 'won't you?'\n\n'I'll try,' returned the child, wearily.\n\n'And you'll soon be grown up now!' said Mr Dombey.\n\n'Oh! very soon!' replied the child. Once more the old, old look\npassed rapidly across his features like a strange light. It fell on\nMrs Pipchin, and extinguished itself in her black dress. That\nexcellent ogress stepped forward to take leave and to bear off\nFlorence, which she had long been thirsting to do. The move on her\npart roused Mr Dombey, whose eyes were fixed on Paul. After patting\nhim on the head, and pressing his small hand again, he took leave of\nDoctor Blimber, Mrs Blimber, and Miss Blimber, with his usual polite\nfrigidity, and walked out of the study.\n\nDespite his entreaty that they would not think of stirring, Doctor\nBlimber, Mrs Blimber, and Miss Blimber all pressed forward to attend\nhim to the hall; and thus Mrs Pipchin got into a state of entanglement\nwith Miss Blimber and the Doctor, and was crowded out of the study\nbefore she could clutch Florence. To which happy accident Paul stood\nafterwards indebted for the dear remembrance, that Florence ran back\nto throw her arms round his neck, and that hers was the last face in\nthe doorway: turned towards him with a smile of encouragement, the\nbrighter for the tears through which it beamed.\n\nIt made his childish bosom heave and swell when it was gone; and\nsent the globes, the books, blind Homer and Minerva, swimming round\nthe room. But they stopped, all of a sudden; and then he heard the\nloud clock in the hall still gravely inquiring 'how, is, my, lit, tle,\nfriend? how, is, my, lit, tle, friend?' as it had done before.\n\nHe sat, with folded hands, upon his pedestal, silently listening.\nBut he might have answered 'weary, weary! very lonely, very sad!' And\nthere, with an aching void in his young heart, and all outside so\ncold, and bare, and strange, Paul sat as if he had taken life\nunfurnished, and the upholsterer were never coming.\n\n\n\nCHAPTER 12.\n\nPaul's Education\n\n\n\nAfter the lapse of some minutes, which appeared an immense time to\nlittle Paul Dombey on the table, Doctor Blimber came back. The\nDoctor's walk was stately, and calculated to impress the juvenile mind\nwith solemn feelings. It was a sort of march; but when the Doctor put\nout his right foot, he gravely turned upon his axis, with a\nsemi-circular sweep towards the left; and when he put out his left\nfoot, he turned in the same manner towards the right. So that he\nseemed, at every stride he took, to look about him as though he were\nsaying, 'Can anybody have the goodness to indicate any subject, in any\ndirection, on which I am uninformed? I rather think not'\n\nMrs Blimber and Miss Blimber came back in the Doctor's company; and\nthe Doctor, lifting his new pupil off the table, delivered him over to\nMiss Blimber.\n\n'Cornelia,' said the Doctor, 'Dombey will be your charge at first.\nBring him on, Cornelia, bring him on.'\n\nMiss Blimber received her young ward from the Doctor's hands; and\nPaul, feeling that the spectacles were surveying him, cast down his\neyes.\n\n'How old are you, Dombey?' said Miss Blimber.\n\n'Six,' answered Paul, wondering, as he stole a glance at the young\nlady, why her hair didn't grow long like Florence's, and why she was\nlike a boy.\n\n'How much do you know of your Latin Grammar, Dombey?' said Miss\nBlimber.\n\n'None of it,' answered Paul. Feeling that the answer was a shock to\nMiss Blimber's sensibility, he looked up at the three faces that were\nlooking down at him, and said:\n\n'I have'n't been well. I have been a weak child. I couldn't learn a\nLatin Grammar when I was out, every day, with old Glubb. I wish you'd\ntell old Glubb to come and see me, if you please.'\n\n'What a dreadfully low name' said Mrs Blimber. 'Unclassical to a\ndegree! Who is the monster, child?'\n\n'What monster?' inquired Paul.\n\n'Glubb,' said Mrs Blimber, with a great disrelish.\n\n'He's no more a monster than you are,' returned Paul.\n\n'What!' cried the Doctor, in a terrible voice. 'Ay, ay, ay? Aha!\nWhat's that?'\n\nPaul was dreadfully frightened; but still he made a stand for the\nabsent Glubb, though he did it trembling.\n\n'He's a very nice old man, Ma'am,' he said. 'He used to draw my\ncouch. He knows all about the deep sea, and the fish that are in it,\nand the great monsters that come and lie on rocks in the sun, and dive\ninto the water again when they're startled, blowing and splashing so,\nthat they can be heard for miles. There are some creatures, said Paul,\nwarming with his subject, 'I don't know how many yards long, and I\nforget their names, but Florence knows, that pretend to be in\ndistress; and when a man goes near them, out of compassion, they open\ntheir great jaws, and attack him. But all he has got to do,' said\nPaul, boldly tendering this information to the very Doctor himself,\n'is to keep on turning as he runs away, and then, as they turn slowly,\nbecause they are so long, and can't bend, he's sure to beat them. And\nthough old Glubb don't know why the sea should make me think of my\nMama that's dead, or what it is that it is always saying - always\nsaying! he knows a great deal about it. And I wish,' the child\nconcluded, with a sudden falling of his countenance, and failing in\nhis animation, as he looked like one forlorn, upon the three strange\nfaces, 'that you'd let old Glubb come here to see me, for I know him\nvery well, and he knows me.\n\n'Ha!' said the Doctor, shaking his head; 'this is bad, but study\nwill do much.'\n\nMrs Blimber opined, with something like a shiver, that he was an\nunaccountable child; and, allowing for the difference of visage,\nlooked at him pretty much as Mrs Pipchin had been used to do.\n\n'Take him round the house, Cornelia,' said the Doctor, 'and\nfamiliarise him with his new sphere. Go with that young lady, Dombey.'\n\nDombey obeyed; giving his hand to the abstruse Cornelia, and\nlooking at her sideways, with timid curiosity, as they went away\ntogether. For her spectacles, by reason of the glistening of the\nglasses, made her so mysterious, that he didn't know where she was\nlooking, and was not indeed quite sure that she had any eyes at all\nbehind them.\n\nCornelia took him first to the schoolroom, which was situated at\nthe back of the hall, and was approached through two baize doors,\nwhich deadened and muffled the young gentlemen's voices. Here, there\nwere eight young gentlemen in various stages of mental prostration,\nall very hard at work, and very grave indeed. Toots, as an old hand,\nhad a desk to himself in one corner: and a magnificent man, of immense\nage, he looked, in Paul's young eyes, behind it.\n\nMr Feeder, B.A., who sat at another little desk, had his Virgil\nstop on, and was slowly grinding that tune to four young gentlemen. Of\nthe remaining four, two, who grasped their foreheads convulsively,\nwere engaged in solving mathematical problems; one with his face like\na dirty window, from much crying, was endeavouring to flounder through\na hopeless number of lines before dinner; and one sat looking at his\ntask in stony stupefaction and despair - which it seemed had been his\ncondition ever since breakfast time.\n\nThe appearance of a new boy did not create the sensation that might\nhave been expected. Mr Feeder, B.A. (who was in the habit of shaving\nhis head for coolness, and had nothing but little bristles on it),\ngave him a bony hand, and told him he was glad to see him - which Paul\nwould have been very glad to have told him, if he could have done so\nwith the least sincerity. Then Paul, instructed by Cornelia, shook\nhands with the four young gentlemen at Mr Feeder's desk; then with the\ntwo young gentlemen at work on the problems, who were very feverish;\nthen with the young gentleman at work against time, who was very inky;\nand lastly with the young gentleman in a state of stupefaction, who\nwas flabby and quite cold.\n\nPaul having been already introduced to Toots, that pupil merely\nchuckled and breathed hard, as his custom was, and pursued the\noccupation in which he was engaged. It was not a severe one; for on\naccount of his having 'gone through' so much (in more senses than\none), and also of his having, as before hinted, left off blowing in\nhis prime, Toots now had licence to pursue his own course of study:\nwhich was chiefly to write long letters to himself from persons of\ndistinction, adds 'P. Toots, Esquire, Brighton, Sussex,' and to\npreserve them in his desk with great care.\n\nThese ceremonies passed, Cornelia led Paul upstairs to the top of\nthe house; which was rather a slow journey, on account of Paul being\nobliged to land both feet on every stair, before he mounted another.\nBut they reached their journey's end at last; and there, in a front\nroom, looking over the wild sea, Cornelia showed him a nice little bed\nwith white hangings, close to the window, on which there was already\nbeautifully written on a card in round text - down strokes very thick,\nand up strokes very fine - DOMBEY; while two other little bedsteads in\nthe same room were announced, through like means, as respectively\nappertaining unto BRIGGS and TOZER.\n\nJust as they got downstairs again into the hall, Paul saw the\nweak-eyed young man who had given that mortal offence to Mrs Pipchin,\nsuddenly seize a very large drumstick, and fly at a gong that was\nhanging up, as if he had gone mad, or wanted vengeance. Instead of\nreceiving warning, however, or being instantly taken into custody, the\nyoung man left off unchecked, after having made a dreadful noise. Then\nCornelia Blimber said to Dombey that dinner would be ready in a\nquarter of an hour, and perhaps he had better go into the schoolroom\namong his 'friends.'\n\nSo Dombey, deferentially passing the great clock which was still as\nanxious as ever to know how he found himself, opened the schoolroom\ndoor a very little way, and strayed in like a lost boy: shutting it\nafter him with some difficulty. His friends were all dispersed about\nthe room except the stony friend, who remained immoveable. Mr Feeder\nwas stretching himself in his grey gown, as if, regardless of expense,\nhe were resolved to pull the sleeves off.\n\n'Heigh ho hum!' cried Mr Feeder, shaking himself like a cart-horse.\n'Oh dear me, dear me! Ya-a-a-ah!'\n\nPaul was quite alarmed by Mr Feeder's yawning; it was done on such\na great scale, and he was so terribly in earnest. All the boys too\n(Toots excepted) seemed knocked up, and were getting ready for dinner\n- some newly tying their neckcloths, which were very stiff indeed; and\nothers washing their hands or brushing their hair, in an adjoining\nante-chamber - as if they didn't think they should enjoy it at all.\n\nYoung Toots who was ready beforehand, and had therefore nothing to\ndo, and had leisure to bestow upon Paul, said, with heavy good nature:\n\n'Sit down, Dombey.'\n\n'Thank you, Sir,' said Paul.\n\nHis endeavouring to hoist himself on to a very high window-seat,\nand his slipping down again, appeared to prepare Toots's mind for the\nreception of a discovery.\n\n'You're a very small chap;' said Mr Toots.\n\n'Yes, Sir, I'm small,' returned Paul. 'Thank you, Sir.'\n\nFor Toots had lifted him into the seat, and done it kindly too.\n\n'Who's your tailor?' inquired Toots, after looking at him for some\nmoments.\n\n'It's a woman that has made my clothes as yet,' said Paul. 'My\nsister's dressmaker.'\n\n'My tailor's Burgess and Co.,' said Toots. 'Fash'nable. But very\ndear.'\n\nPaul had wit enough to shake his head, as if he would have said it\nwas easy to see that; and indeed he thought so.\n\n'Your father's regularly rich, ain't he?' inquired Mr Toots.\n\n'Yes, Sir,' said Paul. 'He's Dombey and Son.'\n\n'And which?' demanded Toots.\n\n'And Son, Sir,' replied Paul.\n\nMr Toots made one or two attempts, in a low voice, to fix the Firm\nin his mind; but not quite succeeding, said he would get Paul to\nmention the name again to-morrow morning, as it was rather important.\nAnd indeed he purposed nothing less than writing himself a private and\nconfidential letter from Dombey and Son immediately.\n\nBy this time the other pupils (always excepting the stony boy)\ngathered round. They were polite, but pale; and spoke low; and they\nwere so depressed in their spirits, that in comparison with the\ngeneral tone of that company, Master Bitherstone was a perfect Miller,\nor complete Jest Book.' And yet he had a sense of injury upon him,\ntoo, had Bitherstone.\n\n'You sleep in my room, don't you?' asked a solemn young gentleman,\nwhose shirt-collar curled up the lobes of his ears.\n\n'Master Briggs?' inquired Paul.\n\n'Tozer,' said the young gentleman.\n\nPaul answered yes; and Tozer pointing out the stony pupil, said\nthat was Briggs. Paul had already felt certain that it must be either\nBriggs or Tozer, though he didn't know why.\n\n'Is yours a strong constitution?' inquired Tozer.\n\nPaul said he thought not. Tozer replied that he thought not also,\njudging from Paul's looks, and that it was a pity, for it need be. He\nthen asked Paul if he were going to begin with Cornelia; and on Paul\nsaying 'yes,' all the young gentlemen (Briggs excepted) gave a low\ngroan.\n\nIt was drowned in the tintinnabulation of the gong, which sounding\nagain with great fury, there was a general move towards the\ndining-room; still excepting Briggs the stony boy, who remained where\nhe was, and as he was; and on its way to whom Paul presently\nencountered a round of bread, genteelly served on a plate and napkin,\nand with a silver fork lying crosswise on the top of it.\n\nDoctor Blimber was already in his place in the dining-room, at the\ntop of the table, with Miss Blimber and Mrs Blimber on either side of\nhim. Mr Feeder in a black coat was at the bottom. Paul's chair was\nnext to Miss Blimber; but it being found, when he sat in it, that his\neyebrows were not much above the level of the table-cloth, some books\nwere brought in from the Doctor's study, on which he was elevated, and\non which he always sat from that time - carrying them in and out\nhimself on after occasions, like a little elephant and castle.'\n\nGrace having been said by the Doctor, dinner began. There was some\nnice soup; also roast meat, boiled meat, vegetables, pie, and cheese.\nEvery young gentleman had a massive silver fork, and a napkin; and all\nthe arrangements were stately and handsome. In particular, there was a\nbutler in a blue coat and bright buttons, who gave quite a winey\nflavour to the table beer; he poured it out so superbly.\n\nNobody spoke, unless spoken to, except Doctor Blimber, Mrs Blimber,\nand Miss Blimber, who conversed occasionally. Whenever a young\ngentleman was not actually engaged with his knife and fork or spoon,\nhis eye, with an irresistible attraction, sought the eye of Doctor\nBlimber, Mrs Blimber, or Miss Blimber, and modestly rested there.\nToots appeared to be the only exception to this rule. He sat next Mr\nFeeder on Paul's side of the table, and frequently looked behind and\nbefore the intervening boys to catch a glimpse of Paul.\n\nOnly once during dinner was there any conversation that included\nthe young gentlemen. It happened at the epoch of the cheese, when the\nDoctor, having taken a glass of port wine, and hemmed twice or thrice,\nsaid:\n\n'It is remarkable, Mr Feeder, that the Romans - '\n\nAt the mention of this terrible people, their implacable enemies,\nevery young gentleman fastened his gaze upon the Doctor, with an\nassumption of the deepest interest. One of the number who happened to\nbe drinking, and who caught the Doctor's eye glaring at him through\nthe side of his tumbler, left off so hastily that he was convulsed for\nsome moments, and in the sequel ruined Doctor Blimber's point.\n\n'It is remarkable, Mr Feeder,' said the Doctor, beginning again\nslowly, 'that the Romans, in those gorgeous and profuse entertainments\nof which we read in the days of the Emperors, when luxury had attained\na height unknown before or since, and when whole provinces were\nravaged to supply the splendid means of one Imperial Banquet - '\n\nHere the offender, who had been swelling and straining, and waiting\nin vain for a full stop, broke out violently.\n\n'Johnson,' said Mr Feeder, in a low reproachful voice, 'take some\nwater.'\n\nThe Doctor, looking very stern, made a pause until the water was\nbrought, and then resumed:\n\n'And when, Mr Feeder - '\n\nBut Mr Feeder, who saw that Johnson must break out again, and who\nknew that the Doctor would never come to a period before the young\ngentlemen until he had finished all he meant to say, couldn't keep his\neye off Johnson; and thus was caught in the fact of not looking at the\nDoctor, who consequently stopped.\n\n'I beg your pardon, Sir,' said Mr Feeder, reddening. 'I beg your\npardon, Doctor Blimber.'\n\n'And when,' said the Doctor, raising his voice, 'when, Sir, as we\nread, and have no reason to doubt - incredible as it may appear to the\nvulgar - of our time - the brother of Vitellius prepared for him a\nfeast, in which were served, of fish, two thousand dishes - '\n\n'Take some water, Johnson - dishes, Sir,' said Mr Feeder.\n\n'Of various sorts of fowl, five thousand dishes.'\n\n'Or try a crust of bread,' said Mr Feeder.\n\n'And one dish,' pursued Doctor Blimber, raising his voice still\nhigher as he looked all round the table, 'called, from its enormous\ndimensions, the Shield of Minerva, and made, among other costly\ningredients, of the brains of pheasants - '\n\n'Ow, ow, ow!' (from Johnson.)\n\n'Woodcocks - '\n\n'Ow, ow, ow!'\n\n'The sounds of the fish called scari - '\n\n'You'll burst some vessel in your head,' said Mr Feeder. 'You had\nbetter let it come.'\n\n'And the spawn of the lamprey, brought from the Carpathian Sea,'\npursued the Doctor, in his severest voice; 'when we read of costly\nentertainments such as these, and still remember, that we have a Titus\n- '\n\n'What would be your mother's feelings if you died of apoplexy!'\nsaid Mr Feeder.\n\n'A Domitian - '\n\n'And you're blue, you know,' said Mr Feeder.\n\n'A Nero, a Tiberius, a Caligula, a Heliogabalus, and many more,\npursued the Doctor; 'it is, Mr Feeder - if you are doing me the honour\nto attend - remarkable; VERY remarkable, Sir - '\n\nBut Johnson, unable to suppress it any longer, burst at that moment\ninto such an overwhelming fit of coughing, that although both his\nimmediate neighbours thumped him on the back, and Mr Feeder himself\nheld a glass of water to his lips, and the butler walked him up and\ndown several times between his own chair and the sideboard, like a\nsentry, it was a full five minutes before he was moderately composed.\nThen there was a profound silence.\n\n'Gentlemen,' said Doctor Blimber, 'rise for Grace! Cornelia, lift\nDombey down' - nothing of whom but his scalp was accordingly seen\nabove the tablecloth. 'Johnson will repeat to me tomorrow morning\nbefore breakfast, without book, and from the Greek Testament, the\nfirst chapter of the Epistle of Saint Paul to the Ephesians. We will\nresume our studies, Mr Feeder, in half-an-hour.'\n\nThe young gentlemen bowed and withdrew. Mr Feeder did likewise.\nDuring the half-hour, the young gentlemen, broken into pairs, loitered\narm-in-arm up and down a small piece of ground behind the house, or\nendeavoured to kindle a spark of animation in the breast of Briggs.\nBut nothing happened so vulgar as play. Punctually at the appointed\ntime, the gong was sounded, and the studies, under the joint auspices\nof Doctor Blimber and Mr Feeder, were resumed.\n\nAs the Olympic game of lounging up and down had been cut shorter\nthan usual that day, on Johnson's account, they all went out for a\nwalk before tea. Even Briggs (though he hadn't begun yet) partook of\nthis dissipation; in the enjoyment of which he looked over the cliff\ntwo or three times darkly. Doctor Blimber accompanied them; and Paul\nhad the honour of being taken in tow by the Doctor himself: a\ndistinguished state of things, in which he looked very little and\nfeeble.\n\nTea was served in a style no less polite than the dinner; and after\ntea, the young gentlemen rising and bowing as before, withdrew to\nfetch up the unfinished tasks of that day, or to get up the already\nlooming tasks of to-morrow. In the meantime Mr Feeder withdrew to his\nown room; and Paul sat in a corner wondering whether Florence was\nthinking of him, and what they were all about at Mrs Pipchin's.\n\nMr Toots, who had been detained by an important letter from the\nDuke of Wellington, found Paul out after a time; and having looked at\nhim for a long while, as before, inquired if he was fond of\nwaistcoats.\n\nPaul said 'Yes, Sir.'\n\n'So am I,' said Toots.\n\nNo word more spoke Toots that night; but he stood looking at Paul\nas if he liked him; and as there was company in that, and Paul was not\ninclined to talk, it answered his purpose better than conversation.\n\nAt eight o'clock or so, the gong sounded again for prayers in the\ndining-room, where the butler afterwards presided over a side-table,\non which bread and cheese and beer were spread for such young\ngentlemen as desired to partake of those refreshments. The ceremonies\nconcluded by the Doctor's saying, 'Gentlemen, we will resume our\nstudies at seven to-morrow;' and then, for the first time, Paul saw\nCornelia Blimber's eye, and saw that it was upon him. When the Doctor\nhad said these words, 'Gentlemen, we will resume our studies at seven\ntomorrow,' the pupils bowed again, and went to bed.\n\nIn the confidence of their own room upstairs, Briggs said his head\nached ready to split, and that he should wish himself dead if it\nwasn't for his mother, and a blackbird he had at home Tozer didn't say\nmuch, but he sighed a good deal, and told Paul to look out, for his\nturn would come to-morrow. After uttering those prophetic words, he\nundressed himself moodily, and got into bed. Briggs was in his bed\ntoo, and Paul in his bed too, before the weak-eyed young man appeared\nto take away the candle, when he wished them good-night and pleasant\ndreams. But his benevolent wishes were in vain, as far as Briggs and\nTozer were concerned; for Paul, who lay awake for a long while, and\noften woke afterwards, found that Briggs was ridden by his lesson as a\nnightmare: and that Tozer, whose mind was affected in his sleep by\nsimilar causes, in a minor degree talked unknown tongues, or scraps of\nGreek and Latin - it was all one to Paul- which, in the silence of\nnight, had an inexpressibly wicked and guilty effect.\n\nPaul had sunk into a sweet sleep, and dreamed that he was walking\nhand in hand with Florence through beautiful gardens, when they came\nto a large sunflower which suddenly expanded itself into a gong, and\nbegan to sound. Opening his eyes, he found that it was a dark, windy\nmorning, with a drizzling rain: and that the real gong was giving\ndreadful note of preparation, down in the hall.\n\nSo he got up directly, and found Briggs with hardly any eyes, for\nnightmare and grief had made his face puffy, putting his boots on:\nwhile Tozer stood shivering and rubbing his shoulders in a very bad\nhumour. Poor Paul couldn't dress himself easily, not being used to it,\nand asked them if they would have the goodness to tie some strings for\nhim; but as Briggs merely said 'Bother!' and Tozer, 'Oh yes!' he went\ndown when he was otherwise ready, to the next storey, where he saw a\npretty young woman in leather gloves, cleaning a stove. The young\nwoman seemed surprised at his appearance, and asked him where his\nmother was. When Paul told her she was dead, she took her gloves off,\nand did what he wanted; and furthermore rubbed his hands to warm them;\nand gave him a kiss; and told him whenever he wanted anything of that\nsort - meaning in the dressing way - to ask for 'Melia; which Paul,\nthanking her very much, said he certainly would. He then proceeded\nsoftly on his journey downstairs, towards the room in which the young\ngentlemen resumed their studies, when, passing by a door that stood\najar, a voice from within cried, 'Is that Dombey?' On Paul replying,\n'Yes, Ma'am:' for he knew the voice to be Miss Blimber's: Miss Blimber\nsaid, 'Come in, Dombey.' And in he went. Miss Blimber presented\nexactly the appearance she had presented yesterday, except that she\nwore a shawl. Her little light curls were as crisp as ever, and she\nhad already her spectacles on, which made Paul wonder whether she went\nto bed in them. She had a cool little sitting-room of her own up\nthere, with some books in it, and no fire But Miss Blimber was never\ncold, and never sleepy.\n\nNow, Dombey,' said Miss Blimber, 'I am going out for a\nconstitutional.'\n\nPaul wondered what that was, and why she didn't send the footman\nout to get it in such unfavourable weather. But he made no observation\non the subject: his attention being devoted to a little pile of new\nbooks, on which Miss Blimber appeared to have been recently engaged.\n\n'These are yours, Dombey,' said Miss Blimber.\n\n'All of 'em, Ma'am?' said Paul.\n\n'Yes,' returned Miss Blimber; 'and Mr Feeder will look you out some\nmore very soon, if you are as studious as I expect you will be,\nDombey.'\n\n'Thank you, Ma'am,' said Paul.\n\n'I am going out for a constitutional,' resumed Miss Blimber; 'and\nwhile I am gone, that is to say in the interval between this and\nbreakfast, Dombey, I wish you to read over what I have marked in these\nbooks, and to tell me if you quite understand what you have got to\nlearn. Don't lose time, Dombey, for you have none to spare, but take\nthem downstairs, and begin directly.'\n\n'Yes, Ma'am,' answered Paul.\n\nThere were so many of them, that although Paul put one hand under\nthe bottom book and his other hand and his chin on the top book, and\nhugged them all closely, the middle book slipped out before he reached\nthe door, and then they all tumbled down on the floor. Miss Blimber\nsaid, 'Oh, Dombey, Dombey, this is really very careless!' and piled\nthem up afresh for him; and this time, by dint of balancing them with\ngreat nicety, Paul got out of the room, and down a few stairs before\ntwo of them escaped again. But he held the rest so tight, that he only\nleft one more on the first floor, and one in the passage; and when he\nhad got the main body down into the schoolroom, he set off upstairs\nagain to collect the stragglers. Having at last amassed the whole\nlibrary, and climbed into his place, he fell to work, encouraged by a\nremark from Tozer to the effect that he 'was in for it now;' which was\nthe only interruption he received till breakfast time. At that meal,\nfor which he had no appetite, everything was quite as solemn and\ngenteel as at the others; and when it was finished, he followed Miss\nBlimber upstairs.\n\n'Now, Dombey,' said Miss Blimber. 'How have you got on with those\nbooks?'\n\nThey comprised a little English, and a deal of Latin - names of\nthings, declensions of articles and substantives, exercises thereon,\nand preliminary rules - a trifle of orthography, a glance at ancient\nhistory, a wink or two at modern ditto, a few tables, two or three\nweights and measures, and a little general information. When poor Paul\nhad spelt out number two, he found he had no idea of number one;\nfragments whereof afterwards obtruded themselves into number three,\nwhich slided into number four, which grafted itself on to number two.\nSo that whether twenty Romuluses made a Remus, or hic haec hoc was\ntroy weight, or a verb always agreed with an ancient Briton, or three\ntimes four was Taurus a bull, were open questions with him.\n\n'Oh, Dombey, Dombey!' said Miss Blimber, 'this is very shocking.'\n\n'If you please,' said Paul, 'I think if I might sometimes talk a\nlittle to old Glubb, I should be able to do better.'\n\n'Nonsense, Dombey,' said Miss Blimber. 'I couldn't hear of it. This\nis not the place for Glubbs of any kind. You must take the books down,\nI suppose, Dombey, one by one, and perfect yourself in the day's\ninstalment of subject A, before you turn at all to subject B. I am\nsorry to say, Dombey, that your education appears to have been very\nmuch neglected.'\n\n'So Papa says,' returned Paul; 'but I told you - I have been a weak\nchild. Florence knows I have. So does Wickam.'\n\n'Who is Wickam?' asked Miss Blimber.\n\n'She has been my nurse,' Paul answered.\n\n'I must beg you not to mention Wickam to me, then,' said Miss\nBlimber.'I couldn't allow it'.\n\n'You asked me who she was,' said Paul.\n\n'Very well,' returned Miss Blimber; 'but this is all very different\nindeed from anything of that sort, Dombey, and I couldn't think of\npermitting it. As to having been weak, you must begin to be strong.\nAnd now take away the top book, if you please, Dombey, and return when\nyou are master of the theme.'\n\nMiss Blimber expressed her opinions on the subject of Paul's\nuninstructed state with a gloomy delight, as if she had expected this\nresult, and were glad to find that they must be in constant\ncommunication. Paul withdrew with the top task, as he was told, and\nlaboured away at it, down below: sometimes remembering every word of\nit, and sometimes forgetting it all, and everything else besides:\nuntil at last he ventured upstairs again to repeat the lesson, when it\nwas nearly all driven out of his head before he began, by Miss\nBlimber's shutting up the book, and saying, 'Good, Dombey!' a\nproceeding so suggestive of the knowledge inside of her, that Paul\nlooked upon the young lady with consternation, as a kind of learned\nGuy Faux, or artificial Bogle, stuffed full of scholastic straw.\n\nHe acquitted himself very well, nevertheless; and Miss Blimber,\ncommending him as giving promise of getting on fast, immediately\nprovided him with subject B; from which he passed to C, and even D\nbefore dinner. It was hard work, resuming his studies, soon after\ndinner; and he felt giddy and confused and drowsy and dull. But all\nthe other young gentlemen had similar sensations, and were obliged to\nresume their studies too, if there were any comfort in that. It was a\nwonder that the great clock in the hall, instead of being constant to\nits first inquiry, never said, 'Gentlemen, we will now resume our\nstudies,' for that phrase was often enough repeated in its\nneighbourhood. The studies went round like a mighty wheel, and the\nyoung gentlemen were always stretched upon it.\n\nAfter tea there were exercises again, and preparations for next day\nby candlelight. And in due course there was bed; where, but for that\nresumption of the studies which took place in dreams, were rest and\nsweet forgetfulness.\n\nOh Saturdays! Oh happy Saturdays, when Florence always came at\nnoon, and never would, in any weather, stay away, though Mrs Pipchin\nsnarled and growled, and worried her bitterly. Those Saturdays were\nSabbaths for at least two little Christians among all the Jews, and\ndid the holy Sabbath work of strengthening and knitting up a brother's\nand a sister's love.\n\nNot even Sunday nights - the heavy Sunday nights, whose shadow\ndarkened the first waking burst of light on Sunday mornings - could\nmar those precious Saturdays. Whether it was the great sea-shore,\nwhere they sat, and strolled together; or whether it was only Mrs\nPipchin's dull back room, in which she sang to him so softly, with his\ndrowsy head upon her arm; Paul never cared. It was Florence. That was\nall he thought of. So, on Sunday nights, when the Doctor's dark door\nstood agape to swallow him up for another week, the time was come for\ntaking leave of Florence; no one else.\n\nMrs Wickam had been drafted home to the house in town, and Miss\nNipper, now a smart young woman, had come down. To many a single\ncombat with Mrs Pipchin, did Miss Nipper gallantly devote herself, and\nif ever Mrs Pipchin in all her life had found her match, she had found\nit now. Miss Nipper threw away the scabbard the first morning she\narose in Mrs Pipchin's house. She asked and gave no quarter. She said\nit must be war, and war it was; and Mrs Pipchin lived from that time\nin the midst of surprises, harassings, and defiances, and skirmishing\nattacks that came bouncing in upon her from the passage, even in\nunguarded moments of chops, and carried desolation to her very toast.\n\nMiss Nipper had returned one Sunday night with Florence, from\nwalking back with Paul to the Doctor's, when Florence took from her\nbosom a little piece of paper, on which she had pencilled down some\nwords.\n\n'See here, Susan,' she said. 'These are the names of the little\nbooks that Paul brings home to do those long exercises with, when he\nis so tired. I copied them last night while he was writing.'\n\n'Don't show 'em to me, Miss Floy, if you please,' returned Nipper,\n'I'd as soon see Mrs Pipchin.'\n\n'I want you to buy them for me, Susan, if you will, tomorrow\nmorning. I have money enough,' said Florence.\n\n'Why, goodness gracious me, Miss Floy,' returned Miss Nipper, 'how\ncan you talk like that, when you have books upon books already, and\nmasterses and mississes a teaching of you everything continual, though\nmy belief is that your Pa, Miss Dombey, never would have learnt you\nnothing, never would have thought of it, unless you'd asked him - when\nbe couldn't well refuse; but giving consent when asked, and offering\nwhen unasked, Miss, is quite two things; I may not have my objections\nto a young man's keeping company with me, and when he puts the\nquestion, may say \"yes,\" but that's not saying \"would you be so kind\nas like me.\"'\n\n'But you can buy me the books, Susan; and you will, when you know\nwhy I want them.'\n\n'Well, Miss, and why do you want 'em?' replied Nipper; adding, in a\nlower voice, 'If it was to fling at Mrs Pipchin's head, I'd buy a\ncart-load.'\n\n'Paul has a great deal too much to do, Susan,' said Florence, 'I am\nsure of it.'\n\n'And well you may be, Miss,' returned her maid, 'and make your mind\nquite easy that the willing dear is worked and worked away. If those\nis Latin legs,' exclaimed Miss Nipper, with strong feeling - in\nallusion to Paul's; 'give me English ones.'\n\n'I am afraid he feels lonely and lost at Doctor Blimber's, Susan,'\npursued Florence, turning away her face.\n\n'Ah,' said Miss Nipper, with great sharpness, 'Oh, them \"Blimbers\"'\n\n'Don't blame anyone,' said Florence. 'It's a mistake.'\n\n'I say nothing about blame, Miss,' cried Miss Nipper, 'for I know\nthat you object, but I may wish, Miss, that the family was set to work\nto make new roads, and that Miss Blimber went in front and had the\npickaxe.'\n\nAfter this speech, Miss Nipper, who was perfectly serious, wiped\nher eyes.\n\n'I think I could perhaps give Paul some help, Susan, if I had these\nbooks,' said Florence, 'and make the coming week a little easier to\nhim. At least I want to try. So buy them for me, dear, and I will\nnever forget how kind it was of you to do it!'\n\nIt must have been a harder heart than Susan Nipper's that could\nhave rejected the little purse Florence held out with these words, or\nthe gentle look of entreaty with which she seconded her petition.\nSusan put the purse in her pocket without reply, and trotted out at\nonce upon her errand.\n\nThe books were not easy to procure; and the answer at several shops\nwas, either that they were just out of them, or that they never kept\nthem, or that they had had a great many last month, or that they\nexpected a great many next week But Susan was not easily baffled in\nsuch an enterprise; and having entrapped a white-haired youth, in a\nblack calico apron, from a library where she was known, to accompany\nher in her quest, she led him such a life in going up and down, that\nhe exerted himself to the utmost, if it were only to get rid of her;\nand finally enabled her to return home in triumph.\n\nWith these treasures then, after her own daily lessons were over,\nFlorence sat down at night to track Paul's footsteps through the\nthorny ways of learning; and being possessed of a naturally quick and\nsound capacity, and taught by that most wonderful of masters, love, it\nwas not long before she gained upon Paul's heels, and caught and\npassed him.\n\nNot a word of this was breathed to Mrs Pipchin: but many a night\nwhen they were all in bed, and when Miss Nipper, with her hair in\npapers and herself asleep in some uncomfortable attitude, reposed\nunconscious by her side; and when the chinking ashes in the grate were\ncold and grey; and when the candles were burnt down and guttering out;\n- Florence tried so hard to be a substitute for one small Dombey, that\nher fortitude and perseverance might have almost won her a free right\nto bear the name herself.\n\nAnd high was her reward, when one Saturday evening, as little Paul\nwas sitting down as usual to 'resume his studies,' she sat down by his\nside, and showed him all that was so rough, made smooth, and all that\nwas so dark, made clear and plain, before him. It was nothing but a\nstartled look in Paul's wan face - a flush - a smile - and then a\nclose embrace - but God knows how her heart leapt up at this rich\npayment for her trouble.\n\n'Oh, Floy!' cried her brother, 'how I love you! How I love you,\nFloy!'\n\n'And I you, dear!'\n\n'Oh! I am sure of that, Floy.'\n\nHe said no more about it, but all that evening sat close by her,\nvery quiet; and in the night he called out from his little room within\nhers, three or four times, that he loved her.\n\nRegularly, after that, Florence was prepared to sit down with Paul\non Saturday night, and patiently assist him through so much as they\ncould anticipate together of his next week's work. The cheering\nthought that he was labouring on where Florence had just toiled before\nhim, would, of itself, have been a stimulant to Paul in the perpetual\nresumption of his studies; but coupled with the actual lightening of\nhis load, consequent on this assistance, it saved him, possibly, from\nsinking underneath the burden which the fair Cornelia Blimber piled\nupon his back.\n\nIt was not that Miss Blimber meant to be too hard upon him, or that\nDoctor Blimber meant to bear too heavily on the young gentlemen in\ngeneral. Cornelia merely held the faith in which she had been bred;\nand the Doctor, in some partial confusion of his ideas, regarded the\nyoung gentlemen as if they were all Doctors, and were born grown up.\nComforted by the applause of the young gentlemen's nearest relations,\nand urged on by their blind vanity and ill-considered haste, it would\nhave been strange if Doctor Blimber had discovered his mistake, or\ntrimmed his swelling sails to any other tack.\n\nThus in the case of Paul. When Doctor Blimber said he made great\nprogress and was naturally clever, Mr Dombey was more bent than ever\non his being forced and crammed. In the case of Briggs, when Doctor\nBlimber reported that he did not make great progress yet, and was not\nnaturally clever, Briggs senior was inexorable in the same purpose. In\nshort, however high and false the temperature at which the Doctor kept\nhis hothouse, the owners of the plants were always ready to lend a\nhelping hand at the bellows, and to stir the fire.\n\nSuch spirits as he had in the outset, Paul soon lost of course. But\nhe retained all that was strange, and old, and thoughtful in his\ncharacter: and under circumstances so favourable to the development of\nthose tendencies, became even more strange, and old, and thoughtful,\nthan before.\n\nThe only difference was, that he kept his character to himself. He\ngrew more thoughtful and reserved, every day; and had no such\ncuriosity in any living member of the Doctor's household, as he had\nhad in Mrs Pipchin. He loved to be alone; and in those short intervals\nwhen he was not occupied with his books, liked nothing so well as\nwandering about the house by himself, or sitting on the stairs,\nlistening to the great clock in the hall. He was intimate with all the\npaperhanging in the house; saw things that no one else saw in the\npatterns; found out miniature tigers and lions running up the bedroom\nwalls, and squinting faces leering in the squares and diamonds of the\nfloor-cloth.\n\nThe solitary child lived on, surrounded by this arabesque work of\nhis musing fancy, and no one understood him. Mrs Blimber thought him\n'odd,' and sometimes the servants said among themselves that little\nDombey 'moped;' but that was all.\n\nUnless young Toots had some idea on the subject, to the expression\nof which he was wholly unequal. Ideas, like ghosts (according to the\ncommon notion of ghosts), must be spoken to a little before they will\nexplain themselves; and Toots had long left off asking any questions\nof his own mind. Some mist there may have been, issuing from that\nleaden casket, his cranium, which, if it could have taken shape and\nform, would have become a genie; but it could not; and it only so far\nfollowed the example of the smoke in the Arabian story, as to roll out\nin a thick cloud, and there hang and hover. But it left a little\nfigure visible upon a lonely shore, and Toots was always staring at\nit.\n\n'How are you?' he would say to Paul, fifty times a day. 'Quite\nwell, Sir, thank you,' Paul would answer. 'Shake hands,' would be\nToots's next advance.\n\nWhich Paul, of course, would immediately do. Mr Toots generally\nsaid again, after a long interval of staring and hard breathing, 'How\nare you?' To which Paul again replied, 'Quite well, Sir, thank you.'\n\nOne evening Mr Toots was sitting at his desk, oppressed by\ncorrespondence, when a great purpose seemed to flash upon him. He laid\ndown his pen, and went off to seek Paul, whom he found at last, after\na long search, looking through the window of his little bedroom.\n\n'I say!' cried Toots, speaking the moment he entered the room, lest\nhe should forget it; 'what do you think about?'\n\n'Oh! I think about a great many things,' replied Paul.\n\n'Do you, though?' said Toots, appearing to consider that fact in\nitself surprising. 'If you had to die,' said Paul, looking up into his\nface - Mr Toots started, and seemed much disturbed.\n\n'Don't you think you would rather die on a moonlight night, when\nthe sky was quite clear, and the wind blowing, as it did last night?'\n\nMr Toots said, looking doubtfully at Paul, and shaking his head,\nthat he didn't know about that.\n\n'Not blowing, at least,' said Paul, 'but sounding in the air like\nthe sea sounds in the shells. It was a beautiful night. When I had\nlistened to the water for a long time, I got up and looked out. There\nwas a boat over there, in the full light of the moon; a boat with a\nsail.'\n\nThe child looked at him so steadfastly, and spoke so earnestly,\nthat Mr Toots, feeling himself called upon to say something about this\nboat, said, 'Smugglers.' But with an impartial remembrance of there\nbeing two sides to every question, he added, 'or Preventive.'\n\n'A boat with a sail,' repeated Paul, 'in the full light of the\nmoon. The sail like an arm, all silver. It went away into the\ndistance, and what do you think it seemed to do as it moved with the\nwaves?'\n\n'Pitch,' said Mr Toots.\n\n'It seemed to beckon,' said the child, 'to beckon me to come! -\nThere she is! There she is!'\n\nToots was almost beside himself with dismay at this sudden\nexclamation, after what had gone before, and cried 'Who?'\n\n'My sister Florence!' cried Paul, 'looking up here, and waving her\nhand. She sees me - she sees me! Good-night, dear, good-night,\ngood-night.'\n\nHis quick transition to a state of unbounded pleasure, as he stood\nat his window, kissing and clapping his hands: and the way in which\nthe light retreated from his features as she passed out of his view,\nand left a patient melancholy on the little face: were too remarkable\nwholly to escape even Toots's notice. Their interview being\ninterrupted at this moment by a visit from Mrs Pipchin, who usually\nbrought her black skirts to bear upon Paul just before dusk, once or\ntwice a week, Toots had no opportunity of improving the occasion: but\nit left so marked an impression on his mind that he twice returned,\nafter having exchanged the usual salutations, to ask Mrs Pipchin how\nshe did. This the irascible old lady conceived to be a deeply devised\nand long-meditated insult, originating in the diabolical invention of\nthe weak-eyed young man downstairs, against whom she accordingly\nlodged a formal complaint with Doctor Blimber that very night; who\nmentioned to the young man that if he ever did it again, he should be\nobliged to part with him.\n\nThe evenings being longer now, Paul stole up to his window every\nevening to look out for Florence. She always passed and repassed at a\ncertain time, until she saw him; and their mutual recognition was a\ngleam of sunshine in Paul's daily life. Often after dark, one other\nfigure walked alone before the Doctor's house. He rarely joined them\non the Saturdays now. He could not bear it. He would rather come\nunrecognised, and look up at the windows where his son was qualifying\nfor a man; and wait, and watch, and plan, and hope.\n\nOh! could he but have seen, or seen as others did, the slight spare\nboy above, watching the waves and clouds at twilight, with his earnest\neyes, and breasting the window of his solitary cage when birds flew\nby, as if he would have emulated them, and soared away!\n\n\n\nCHAPTER 13.\n\nShipping Intelligence and Office Business\n\n\n\nMr Dombey's offices were in a court where there was an\nold-established stall of choice fruit at the corner: where\nperambulating merchants, of both sexes, offered for sale at any time\nbetween the hours of ten and five, slippers, pocket-books, sponges,\ndogs' collars, and Windsor soap; and sometimes a pointer or an\noil-painting.\n\nThe pointer always came that way, with a view to the Stock\nExchange, where a sporting taste (originating generally in bets of new\nhats) is much in vogue. The other commodities were addressed to the\ngeneral public; but they were never offered by the vendors to Mr\nDombey. When he appeared, the dealers in those wares fell off\nrespectfully. The principal slipper and dogs' collar man - who\nconsidered himself a public character, and whose portrait was screwed\non to an artist's door in Cheapside - threw up his forefinger to the\nbrim of his hat as Mr Dombey went by. The ticket-porter, if he were\nnot absent on a job, always ran officiously before, to open Mr\nDombey's office door as wide as possible, and hold it open, with his\nhat off, while he entered.\n\nThe clerks within were not a whit behind-hand in their\ndemonstrations of respect. A solemn hush prevailed, as Mr Dombey\npassed through the outer office. The wit of the Counting-House became\nin a moment as mute as the row of leathern fire-buckets hanging up\nbehind him. Such vapid and flat daylight as filtered through the\nground-glass windows and skylights, leaving a black sediment upon the\npanes, showed the books and papers, and the figures bending over them,\nenveloped in a studious gloom, and as much abstracted in appearance,\nfrom the world without, as if they were assembled at the bottom of the\nsea; while a mouldy little strong room in the obscure perspective,\nwhere a shaded lamp was always burning, might have represented the\ncavern of some ocean monster, looking on with a red eye at these\nmysteries of the deep.\n\nWhen Perch the messenger, whose place was on a little bracket, like\na timepiece, saw Mr Dombey come in - or rather when he felt that he\nwas coming, for he had usually an instinctive sense of his approach -\nhe hurried into Mr Dombey's room, stirred the fire, carried fresh\ncoals from the bowels of the coal-box, hung the newspaper to air upon\nthe fender, put the chair ready, and the screen in its place, and was\nround upon his heel on the instant of Mr Dombey's entrance, to take\nhis great-coat and hat, and hang them up. Then Perch took the\nnewspaper, and gave it a turn or two in his hands before the fire, and\nlaid it, deferentially, at Mr Dombey's elbow. And so little objection\nhad Perch to being deferential in the last degree, that if he might\nhave laid himself at Mr Dombey's feet, or might have called him by\nsome such title as used to be bestowed upon the Caliph Haroun\nAlraschid, he would have been all the better pleased.\n\nAs this honour would have been an innovation and an experiment,\nPerch was fain to content himself by expressing as well as he could,\nin his manner, You are the light of my Eyes. You are the Breath of my\nSoul. You are the commander of the Faithful Perch! With this imperfect\nhappiness to cheer him, he would shut the door softly, walk away on\ntiptoe, and leave his great chief to be stared at, through a\ndome-shaped window in the leads, by ugly chimney-pots and backs of\nhouses, and especially by the bold window of a hair-cutting saloon on\na first floor, where a waxen effigy, bald as a Mussulman in the\nmorning, and covered, after eleven o'clock in the day, with luxuriant\nhair and whiskers in the latest Christian fashion, showed him the\nwrong side of its head for ever.\n\nBetween Mr Dombey and the common world, as it was accessible\nthrough the medium of the outer office - to which Mr Dombey's presence\nin his own room may be said to have struck like damp, or cold air -\nthere were two degrees of descent. Mr Carker in his own office was the\nfirst step; Mr Morfin, in his own office, was the second. Each of\nthese gentlemen occupied a little chamber like a bath-room, opening\nfrom the passage outside Mr Dombey's door. Mr Carker, as Grand Vizier,\ninhabited the room that was nearest to the Sultan. Mr Morfin, as an\nofficer of inferior state, inhabited the room that was nearest to the\nclerks.\n\nThe gentleman last mentioned was a cheerful-looking, hazel-eyed\nelderly bachelor: gravely attired, as to his upper man, in black; and\nas to his legs, in pepper-and-salt colour. His dark hair was just\ntouched here and there with specks of gray, as though the tread of\nTime had splashed it; and his whiskers were already white. He had a\nmighty respect for Mr Dombey, and rendered him due homage; but as he\nwas of a genial temper himself, and never wholly at his ease in that\nstately presence, he was disquieted by no jealousy of the many\nconferences enjoyed by Mr Carker, and felt a secret satisfaction in\nhaving duties to discharge, which rarely exposed him to be singled out\nfor such distinction. He was a great musical amateur in his way -\nafter business; and had a paternal affection for his violoncello,\nwhich was once in every week transported from Islington, his place of\nabode, to a certain club-room hard by the Bank, where quartettes of\nthe most tormenting and excruciating nature were executed every\nWednesday evening by a private party.\n\nMr Carker was a gentleman thirty-eight or forty years old, of a\nflorid complexion, and with two unbroken rows of glistening teeth,\nwhose regularity and whiteness were quite distressing. It was\nimpossible to escape the observation of them, for he showed them\nwhenever he spoke; and bore so wide a smile upon his countenance (a\nsmile, however, very rarely, indeed, extending beyond his mouth), that\nthere was something in it like the snarl of a cat. He affected a stiff\nwhite cravat, after the example of his principal, and was always\nclosely buttoned up and tightly dressed. His manner towards Mr Dombey\nwas deeply conceived and perfectly expressed. He was familiar with\nhim, in the very extremity of his sense of the distance between them.\n'Mr Dombey, to a man in your position from a man in mine, there is no\nshow of subservience compatible with the transaction of business\nbetween us, that I should think sufficient. I frankly tell you, Sir, I\ngive it up altogether. I feel that I could not satisfy my own mind;\nand Heaven knows, Mr Dombey, you can afford to dispense with the\nendeavour.' If he had carried these words about with him printed on a\nplacard, and had constantly offered it to Mr Dombey's perusal on the\nbreast of his coat, he could not have been more explicit than he was.\n\nThis was Carker the Manager. Mr Carker the Junior, Walter's friend,\nwas his brother; two or three years older than he, but widely removed\nin station. The younger brother's post was on the top of the official\nladder; the elder brother's at the bottom. The elder brother never\ngained a stave, or raised his foot to mount one. Young men passed\nabove his head, and rose and rose; but he was always at the bottom. He\nwas quite resigned to occupy that low condition: never complained of\nit: and certainly never hoped to escape from it.\n\n'How do you do this morning?' said Mr Carker the Manager, entering\nMr Dombey's room soon after his arrival one day: with a bundle of\npapers in his hand.\n\n'How do you do, Carker?' said Mr Dombey.\n\n'Coolish!' observed Carker, stirring the fire.\n\n'Rather,' said Mr Dombey.\n\n'Any news of the young gentleman who is so important to us all?'\nasked Carker, with his whole regiment of teeth on parade.\n\n'Yes - not direct news- I hear he's very well,' said Mr Dombey. Who\nhad come from Brighton over-night. But no one knew It.\n\n'Very well, and becoming a great scholar, no doubt?' observed the\nManager.\n\n'I hope so,' returned Mr Dombey.\n\n'Egad!' said Mr Carker, shaking his head, 'Time flies!'\n\n'I think so, sometimes,' returned Mr Dombey, glancing at his\nnewspaper.\n\n'Oh! You! You have no reason to think so,' observed Carker. 'One\nwho sits on such an elevation as yours, and can sit there, unmoved, in\nall seasons - hasn't much reason to know anything about the flight of\ntime. It's men like myself, who are low down and are not superior in\ncircumstances, and who inherit new masters in the course of Time, that\nhave cause to look about us. I shall have a rising sun to worship,\nsoon.'\n\n'Time enough, time enough, Carker!' said Mr Dombey, rising from his\nchair, and standing with his back to the fire. 'Have you anything\nthere for me?'\n\n'I don't know that I need trouble you,' returned Carker, turning\nover the papers in his hand. 'You have a committee today at three, you\nknow.'\n\n'And one at three, three-quarters,' added Mr Dombey.\n\n'Catch you forgetting anything!' exclaimed Carker, still turning\nover his papers. 'If Mr Paul inherits your memory, he'll be a\ntroublesome customer in the House. One of you is enough'\n\n'You have an accurate memory of your own,' said Mr Dombey.\n\n'Oh! I!' returned the manager. 'It's the only capital of a man like\nme.'\n\nMr Dombey did not look less pompous or at all displeased, as he\nstood leaning against the chimney-piece, surveying his (of course\nunconscious) clerk, from head to foot. The stiffness and nicety of Mr\nCarker's dress, and a certain arrogance of manner, either natural to\nhim or imitated from a pattern not far off, gave great additional\neffect to his humility. He seemed a man who would contend against the\npower that vanquished him, if he could, but who was utterly borne down\nby the greatness and superiority of Mr Dombey.\n\n'Is Morfin here?' asked Mr Dombey after a short pause, during which\nMr Carker had been fluttering his papers, and muttering little\nabstracts of their contents to himself.\n\n'Morfin's here,' he answered, looking up with his widest and almost\nsudden smile; 'humming musical recollections - of his last night's\nquartette party, I suppose - through the walls between us, and driving\nme half mad. I wish he'd make a bonfire of his violoncello, and burn\nhis music-books in it.'\n\n'You respect nobody, Carker, I think,' said Mr Dombey.\n\n'No?' inquired Carker, with another wide and most feline show of\nhis teeth. 'Well! Not many people, I believe. I wouldn't answer\nperhaps,' he murmured, as if he were only thinking it, 'for more than\none.'\n\nA dangerous quality, if real; and a not less dangerous one, if\nfeigned. But Mr Dombey hardly seemed to think so, as he still stood\nwith his back to the fire, drawn up to his full height, and looking at\nhis head-clerk with a dignified composure, in which there seemed to\nlurk a stronger latent sense of power than usual.\n\n'Talking of Morfin,' resumed Mr Carker, taking out one paper from\nthe rest, 'he reports a junior dead in the agency at Barbados, and\nproposes to reserve a passage in the Son and Heir - she'll sail in a\nmonth or so - for the successor. You don't care who goes, I suppose?\nWe have nobody of that sort here.'\n\nMr Dombey shook his head with supreme indifference.\n\n'It's no very precious appointment,' observed Mr Carker, taking up\na pen, with which to endorse a memorandum on the back of the paper. 'I\nhope he may bestow it on some orphan nephew of a musical friend. It\nmay perhaps stop his fiddle-playing, if he has a gift that way. Who's\nthat? Come in!'\n\n'I beg your pardon, Mr Carker. I didn't know you were here, Sir,'\nanswered Walter; appearing with some letters in his hand, unopened,\nand newly arrived. 'Mr Carker the junior, Sir - '\n\nAt the mention of this name, Mr Carker the Manager was or affected\nto be, touched to the quick with shame and humiliation. He cast his\neyes full on Mr Dombey with an altered and apologetic look, abased\nthem on the ground, and remained for a moment without speaking.\n\n'I thought, Sir,' he said suddenly and angrily, turning on Walter,\n'that you had been before requested not to drag Mr Carker the Junior\ninto your conversation.'\n\n'I beg your pardon,' returned Walter. 'I was only going to say that\nMr Carker the Junior had told me he believed you were gone out, or I\nshould not have knocked at the door when you were engaged with Mr\nDombey. These are letters for Mr Dombey, Sir.'\n\n'Very well, Sir,' returned Mr Carker the Manager, plucking them\nsharply from his hand. 'Go about your business.'\n\nBut in taking them with so little ceremony, Mr Carker dropped one\non the floor, and did not see what he had done; neither did Mr Dombey\nobserve the letter lying near his feet. Walter hesitated for a moment,\nthinking that one or other of them would notice it; but finding that\nneither did, he stopped, came back, picked it up, and laid it himself\non Mr Dombey's desk. The letters were post-letters; and it happened\nthat the one in question was Mrs Pipchin's regular report, directed as\nusual - for Mrs Pipchin was but an indifferent penwoman - by Florence.\nMr Dombey, having his attention silently called to this letter by\nWalter, started, and looked fiercely at him, as if he believed that he\nhad purposely selected it from all the rest.\n\n'You can leave the room, Sir!' said Mr Dombey, haughtily.\n\nHe crushed the letter in his hand; and having watched Walter out at\nthe door, put it in his pocket without breaking the seal.\n\n'These continual references to Mr Carker the Junior,' Mr Carker the\nManager began, as soon as they were alone, 'are, to a man in my\nposition, uttered before one in yours, so unspeakably distressing - '\n\n'Nonsense, Carker,' Mr Dombey interrupted. 'You are too sensitive.'\n\n'I am sensitive,' he returned. 'If one in your position could by\nany possibility imagine yourself in my place: which you cannot: you\nwould be so too.'\n\nAs Mr Dombey's thoughts were evidently pursuing some other subject,\nhis discreet ally broke off here, and stood with his teeth ready to\npresent to him, when he should look up.\n\n'You want somebody to send to the West Indies, you were saying,'\nobserved Mr Dombey, hurriedly.\n\n'Yes,' replied Carker.\n\n'Send young Gay.'\n\n'Good, very good indeed. Nothing easier,' said Mr Carker, without\nany show of surprise, and taking up the pen to re-endorse the letter,\nas coolly as he had done before. '\"Send young Gay.\"'\n\n'Call him back,' said Mr Dombey.\n\nMr Carker was quick to do so, and Walter was quick to return.\n\n'Gay,' said Mr Dombey, turning a little to look at him over his\nshoulder. 'Here is a -\n\n'An opening,' said Mr Carker, with his mouth stretched to the\nutmost.\n\n'In the West Indies. At Barbados. I am going to send you,' said Mr\nDombey, scorning to embellish the bare truth, 'to fill a junior\nsituation in the counting-house at Barbados. Let your Uncle know from\nme, that I have chosen you to go to the West Indies.'\n\nWalter's breath was so completely taken away by his astonishment,\nthat he could hardly find enough for the repetition of the words 'West\nIndies.'\n\n'Somebody must go,' said Mr Dombey, 'and you are young and healthy,\nand your Uncle's circumstances are not good. Tell your Uncle that you\nare appointed. You will not go yet. There will be an interval of a\nmonth - or two perhaps.'\n\n'Shall I remain there, Sir?' inquired Walter.\n\n'Will you remain there, Sir!' repeated Mr Dombey, turning a little\nmore round towards him. 'What do you mean? What does he mean, Carker?'\n\n'Live there, Sir,' faltered Walter.\n\n'Certainly,' returned Mr Dombey.\n\nWalter bowed.\n\n'That's all,' said Mr Dombey, resuming his letters. 'You will\nexplain to him in good time about the usual outfit and so forth,\nCarker, of course. He needn't wait, Carker.'\n\n'You needn't wait, Gay,' observed Mr Carker: bare to the gums.\n\n'Unless,' said Mr Dombey, stopping in his reading without looking\noff the letter, and seeming to listen. 'Unless he has anything to\nsay.'\n\n'No, Sir,' returned Walter, agitated and confused, and almost\nstunned, as an infinite variety of pictures presented themselves to\nhis mind; among which Captain Cuttle, in his glazed hat, transfixed\nwith astonishment at Mrs MacStinger's, and his uncle bemoaning his\nloss in the little back parlour, held prominent places. 'I hardly know\n- I - I am much obliged, Sir.'\n\n'He needn't wait, Carker,' said Mr Dombey.\n\nAnd as Mr Carker again echoed the words, and also collected his\npapers as if he were going away too, Walter felt that his lingering\nany longer would be an unpardonable intrusion - especially as he had\nnothing to say - and therefore walked out quite confounded.\n\nGoing along the passage, with the mingled consciousness and\nhelplessness of a dream, he heard Mr Dombey's door shut again, as Mr\nCarker came out: and immediately afterwards that gentleman called to\nhim.\n\n'Bring your friend Mr Carker the Junior to my room, Sir, if you\nplease.'\n\nWalter went to the outer office and apprised Mr Carker the Junior\nof his errand, who accordingly came out from behind a partition where\nhe sat alone in one corner, and returned with him to the room of Mr\nCarker the Manager.\n\nThat gentleman was standing with his back to the fire, and his\nhands under his coat-tails, looking over his white cravat, as\nunpromisingly as Mr Dombey himself could have looked. He received them\nwithout any change in his attitude or softening of his harsh and black\nexpression: merely signing to Walter to close the door.\n\n'John Carker,' said the Manager, when this was done, turning\nsuddenly upon his brother, with his two rows of teeth bristling as if\nhe would have bitten him, 'what is the league between you and this\nyoung man, in virtue of which I am haunted and hunted by the mention\nof your name? Is it not enough for you, John Carker, that I am your\nnear relation, and can't detach myself from that - '\n\n'Say disgrace, James,' interposed the other in a low voice, finding\nthat he stammered for a word. 'You mean it, and have reason, say\ndisgrace.'\n\n'From that disgrace,' assented his brother with keen emphasis, 'but\nis the fact to be blurted out and trumpeted, and proclaimed\ncontinually in the presence of the very House! In moments of\nconfidence too? Do you think your name is calculated to harmonise in\nthis place with trust and confidence, John Carker?'\n\n'No,' returned the other. 'No, James. God knows I have no such\nthought.'\n\n'What is your thought, then?' said his brother, 'and why do you\nthrust yourself in my way? Haven't you injured me enough already?'\n\n'I have never injured you, James, wilfully.'\n\n'You are my brother,' said the Manager. 'That's injury enough.'\n\n'I wish I could undo it, James.'\n\n'I wish you could and would.'\n\nDuring this conversation, Walter had looked from one brother to the\nother, with pain and amazement. He who was the Senior in years, and\nJunior in the House, stood, with his eyes cast upon the ground, and\nhis head bowed, humbly listening to the reproaches of the other.\nThough these were rendered very bitter by the tone and look with which\nthey were accompanied, and by the presence of Walter whom they so much\nsurprised and shocked, he entered no other protest against them than\nby slightly raising his right hand in a deprecatory manner, as if he\nwould have said, 'Spare me!' So, had they been blows, and he a brave\nman, under strong constraint, and weakened by bodily suffering, he\nmight have stood before the executioner.\n\nGenerous and quick in all his emotions, and regarding himself as\nthe innocent occasion of these taunts, Walter now struck in, with all\nthe earnestness he felt.\n\n'Mr Carker,' he said, addressing himself to the Manager. 'Indeed,\nindeed, this is my fault solely. In a kind of heedlessness, for which\nI cannot blame myself enough, I have, I have no doubt, mentioned Mr\nCarker the Junior much oftener than was necessary; and have allowed\nhis name sometimes to slip through my lips, when it was against your\nexpressed wish. But it has been my own mistake, Sir. We have never\nexchanged one word upon the subject - very few, indeed, on any\nsubject. And it has not been,' added Walter, after a moment's pause,\n'all heedlessness on my part, Sir; for I have felt an interest in Mr\nCarker ever since I have been here, and have hardly been able to help\nspeaking of him sometimes, when I have thought of him so much!'\n\nWalter said this from his soul, and with the very breath of honour.\nFor he looked upon the bowed head, and the downcast eyes, and upraised\nhand, and thought, 'I have felt it; and why should I not avow it in\nbehalf of this unfriended, broken man!'\n\nMr Carker the Manager looked at him, as he spoke, and when he had\nfinished speaking, with a smile that seemed to divide his face into\ntwo parts.\n\n'You are an excitable youth, Gay,' he said; 'and should endeavour\nto cool down a little now, for it would be unwise to encourage\nfeverish predispositions. Be as cool as you can, Gay. Be as cool as\nyou can. You might have asked Mr John Carker himself (if you have not\ndone so) whether he claims to be, or is, an object of such strong\ninterest.'\n\n'James, do me justice,' said his brother. 'I have claimed nothing;\nand I claim nothing. Believe me, on my -\n\n'Honour?' said his brother, with another smile, as he warmed\nhimself before the fire.\n\n'On my Me - on my fallen life!' returned the other, in the same low\nvoice, but with a deeper stress on his words than he had yet seemed\ncapable of giving them. 'Believe me, I have held myself aloof, and\nkept alone. This has been unsought by me. I have avoided him and\neveryone.\n\n'Indeed, you have avoided me, Mr Carker,' said Walter, with the\ntears rising to his eyes; so true was his compassion. 'I know it, to\nmy disappointment and regret. When I first came here, and ever since,\nI am sure I have tried to be as much your friend, as one of my age\ncould presume to be; but it has been of no use.\n\n'And observe,' said the Manager, taking him up quickly, 'it will be\nof still less use, Gay, if you persist in forcing Mr John Carker's\nname on people's attention. That is not the way to befriend Mr John\nCarker. Ask him if he thinks it is.'\n\n'It is no service to me,' said the brother. 'It only leads to such\na conversation as the present, which I need not say I could have well\nspared. No one can be a better friend to me:' he spoke here very\ndistinctly, as if he would impress it upon Walter: 'than in forgetting\nme, and leaving me to go my way, unquestioned and unnoticed.'\n\n'Your memory not being retentive, Gay, of what you are told by\nothers,' said Mr Carker the Manager, warming himself with great and\nincreased satisfaction, 'I thought it well that you should be told\nthis from the best authority,' nodding towards his brother. 'You are\nnot likely to forget it now, I hope. That's all, Gay. You can go.\n\nWalter passed out at the door, and was about to close it after him,\nwhen, hearing the voices of the brothers again, and also the mention\nof his own name, he stood irresolutely, with his hand upon the lock,\nand the door ajar, uncertain whether to return or go away. In this\nposition he could not help overhearing what followed.\n\n'Think of me more leniently, if you can, James,' said John Carker,\n'when I tell you I have had - how could I help having, with my\nhistory, written here' - striking himself upon the breast - 'my whole\nheart awakened by my observation of that boy, Walter Gay. I saw in him\nwhen he first came here, almost my other self.'\n\n'Your other self!' repeated the Manager, disdainfully.\n\n'Not as I am, but as I was when I first came here too; as sanguine,\ngiddy, youthful, inexperienced; flushed with the same restless and\nadventurous fancies; and full of the same qualities, fraught with the\nsame capacity of leading on to good or evil.'\n\n'I hope not,' said his brother, with some hidden and sarcastic\nmeaning in his tone.\n\n'You strike me sharply; and your hand is steady, and your thrust is\nvery deep,' returned the other, speaking (or so Walter thought) as if\nsome cruel weapon actually stabbed him as he spoke. 'I imagined all\nthis when he was a boy. I believed it. It was a truth to me. I saw him\nlightly walking on the edge of an unseen gulf where so many others\nwalk with equal gaiety, and from which\n\n'The old excuse,' interrupted his brother, as he stirred the fire.\n'So many. Go on. Say, so many fall.'\n\n'From which ONE traveller fell,' returned the other, 'who set\nforward, on his way, a boy like him, and missed his footing more and\nmore, and slipped a little and a little lower; and went on stumbling\nstill, until he fell headlong and found himself below a shattered man.\nThink what I suffered, when I watched that boy.'\n\n'You have only yourself to thank for it,' returned the brother.\n\n'Only myself,' he assented with a sigh. 'I don't seek to divide the\nblame or shame.'\n\n'You have divided the shame,' James Carker muttered through his\nteeth. And, through so many and such close teeth, he could mutter\nwell.\n\n'Ah, James,' returned his brother, speaking for the first time in\nan accent of reproach, and seeming, by the sound of his voice, to have\ncovered his face with his hands, 'I have been, since then, a useful\nfoil to you. You have trodden on me freely in your climbing up. Don't\nspurn me with your heel!'\n\nA silence ensued. After a time, Mr Carker the Manager was heard\nrustling among his papers, as if he had resolved to bring the\ninterview to a conclusion. At the same time his brother withdrew\nnearer to the door.\n\n'That's all,' he said. 'I watched him with such trembling and such\nfear, as was some little punishment to me, until he passed the place\nwhere I first fell; and then, though I had been his father, I believe\nI never could have thanked God more devoutly. I didn't dare to warn\nhim, and advise him; but if I had seen direct cause, I would have\nshown him my example. I was afraid to be seen speaking with him, lest\nit should be thought I did him harm, and tempted him to evil, and\ncorrupted him: or lest I really should. There may be such contagion in\nme; I don't know. Piece out my history, in connexion with young Walter\nGay, and what he has made me feel; and think of me more leniently,\nJames, if you can.\n\nWith these words he came out to where Walter was standing. He\nturned a little paler when he saw him there, and paler yet when Walter\ncaught him by the hand, and said in a whisper:\n\n'Mr Carker, pray let me thank you! Let me say how much I feel for\nyou! How sorry I am, to have been the unhappy cause of all this! How I\nalmost look upon you now as my protector and guardian! How very, very\nmuch, I feel obliged to you and pity you!' said Walter, squeezing both\nhis hands, and hardly knowing, in his agitation, what he did or said.\n\nMr Morfin's room being close at hand and empty, and the door wide\nopen, they moved thither by one accord: the passage being seldom free\nfrom someone passing to or fro. When they were there, and Walter saw\nin Mr Carker's face some traces of the emotion within, he almost felt\nas if he had never seen the face before; it was so greatly changed.\n\n'Walter,' he said, laying his hand on his shoulder. 'I am far\nremoved from you, and may I ever be. Do you know what I am?'\n\n'What you are!' appeared to hang on Walter's lips, as he regarded\nhim attentively.\n\n'It was begun,' said Carker, 'before my twenty-first birthday - led\nup to, long before, but not begun till near that time. I had robbed\nthem when I came of age. I robbed them afterwards. Before my\ntwenty-second birthday, it was all found out; and then, Walter, from\nall men's society, I died.'\n\nAgain his last few words hung trembling upon Walter's lips, but he\ncould neither utter them, nor any of his own.\n\n'The House was very good to me. May Heaven reward the old man for\nhis forbearance! This one, too, his son, who was then newly in the\nFirm, where I had held great trust! I was called into that room which\nis now his - I have never entered it since - and came out, what you\nknow me. For many years I sat in my present seat, alone as now, but\nthen a known and recognised example to the rest. They were all\nmerciful to me, and I lived. Time has altered that part of my poor\nexpiation; and I think, except the three heads of the House, there is\nno one here who knows my story rightly. Before the little boy grows\nup, and has it told to him, my corner may be vacant. I would rather\nthat it might be so! This is the only change to me since that day,\nwhen I left all youth, and hope, and good men's company, behind me in\nthat room. God bless you, Walter! Keep you, and all dear to you, in\nhonesty, or strike them dead!'\n\nSome recollection of his trembling from head to foot, as if with\nexcessive cold, and of his bursting into tears, was all that Walter\ncould add to this, when he tried to recall exactly what had passed\nbetween them.\n\nWhen Walter saw him next, he was bending over his desk in his old\nsilent, drooping, humbled way. Then, observing him at his work, and\nfeeling how resolved he evidently was that no further intercourse\nshould arise between them, and thinking again and again on all he had\nseen and heard that morning in so short a time, in connexion with the\nhistory of both the Carkers, Walter could hardly believe that he was\nunder orders for the West Indies, and would soon be lost to Uncle Sol,\nand Captain Cuttle, and to glimpses few and far between of Florence\nDombey - no, he meant Paul - and to all he loved, and liked, and\nlooked for, in his daily life.\n\nBut it was true, and the news had already penetrated to the outer\noffice; for while he sat with a heavy heart, pondering on these\nthings, and resting his head upon his arm, Perch the messenger,\ndescending from his mahogany bracket, and jogging his elbow, begged\nhis pardon, but wished to say in his ear, Did he think he could\narrange to send home to England a jar of preserved Ginger, cheap, for\nMrs Perch's own eating, in the course of her recovery from her next\nconfinement?\n\n\n\nCHAPTER 14.\n\nPaul grows more and more Old-fashioned, and goes Home for the Holidays\n\n\n\nWhen the Midsummer vacation approached, no indecent manifestations\nof joy were exhibited by the leaden-eyed young gentlemen assembled at\nDoctor Blimber's. Any such violent expression as 'breaking up,' would\nhave been quite inapplicable to that polite establishment. The young\ngentlemen oozed away, semi-annually, to their own homes; but they\nnever broke up. They would have scorned the action.\n\nTozer, who was constantly galled and tormented by a starched white\ncambric neckerchief, which he wore at the express desire of Mrs Tozer,\nhis parent, who, designing him for the Church, was of opinion that he\ncouldn't be in that forward state of preparation too soon - Tozer\nsaid, indeed, that choosing between two evils, he thought he would\nrather stay where he was, than go home. However inconsistent this\ndeclaration might appear with that passage in Tozer's Essay on the\nsubject, wherein he had observed 'that the thoughts of home and all\nits recollections, awakened in his mind the most pleasing emotions of\nanticipation and delight,' and had also likened himself to a Roman\nGeneral, flushed with a recent victory over the Iceni, or laden with\nCarthaginian spoil, advancing within a few hours' march of the\nCapitol, presupposed, for the purposes of the simile, to be the\ndwelling-place of Mrs Tozer, still it was very sincerely made. For it\nseemed that Tozer had a dreadful Uncle, who not only volunteered\nexaminations of him, in the holidays, on abstruse points, but twisted\ninnocent events and things, and wrenched them to the same fell\npurpose. So that if this Uncle took him to the Play, or, on a similar\npretence of kindness, carried him to see a Giant, or a Dwarf, or a\nConjuror, or anything, Tozer knew he had read up some classical\nallusion to the subject beforehand, and was thrown into a state of\nmortal apprehension: not foreseeing where he might break out, or what\nauthority he might not quote against him.\n\nAs to Briggs, his father made no show of artifice about it. He\nnever would leave him alone. So numerous and severe were the mental\ntrials of that unfortunate youth in vacation time, that the friends of\nthe family (then resident near Bayswater, London) seldom approached\nthe ornamental piece of water in Kensington Gardens,' without a vague\nexpectation of seeing Master Briggs's hat floating on the surface, and\nan unfinished exercise lying on the bank. Briggs, therefore, was not\nat all sanguine on the subject of holidays; and these two sharers of\nlittle Paul's bedroom were so fair a sample of the young gentlemen in\ngeneral, that the most elastic among them contemplated the arrival of\nthose festive periods with genteel resignation.\n\nIt was far otherwise with little Paul. The end of these first\nholidays was to witness his separation from Florence, but who ever\nlooked forward to the end of holidays whose beginning was not yet\ncome! Not Paul, assuredly. As the happy time drew near, the lions and\ntigers climbing up the bedroom walls became quite tame and frolicsome.\nThe grim sly faces in the squares and diamonds of the floor-cloth,\nrelaxed and peeped out at him with less wicked eyes. The grave old\nclock had more of personal interest in the tone of its formal inquiry;\nand the restless sea went rolling on all night, to the sounding of a\nmelancholy strain - yet it was pleasant too - that rose and fell with\nthe waves, and rocked him, as it were, to sleep.\n\nMr Feeder, B.A., seemed to think that he, too, would enjoy the\nholidays very much. Mr Toots projected a life of holidays from that\ntime forth; for, as he regularly informed Paul every day, it was his\n'last half' at Doctor Blimber's, and he was going to begin to come\ninto his property directly.\n\nIt was perfectly understood between Paul and Mr Toots, that they\nwere intimate friends, notwithstanding their distance in point of\nyears and station. As the vacation approached, and Mr Toots breathed\nharder and stared oftener in Paul's society, than he had done before,\nPaul knew that he meant he was sorry they were going to lose sight of\neach other, and felt very much obliged to him for his patronage and\ngood opinion.\n\nIt was even understood by Doctor Blimber, Mrs Blimber, and Miss\nBlimber, as well as by the young gentlemen in general, that Toots had\nsomehow constituted himself protector and guardian of Dombey, and the\ncircumstance became so notorious, even to Mrs Pipchin, that the good\nold creature cherished feelings of bitterness and jealousy against\nToots; and, in the sanctuary of her own home, repeatedly denounced him\nas a 'chuckle-headed noodle.' Whereas the innocent Toots had no more\nidea of awakening Mrs Pipchin's wrath, than he had of any other\ndefinite possibility or proposition. On the contrary, he was disposed\nto consider her rather a remarkable character, with many points of\ninterest about her. For this reason he smiled on her with so much\nurbanity, and asked her how she did, so often, in the course of her\nvisits to little Paul, that at last she one night told him plainly,\nshe wasn't used to it, whatever he might think; and she could not, and\nshe would not bear it, either from himself or any other puppy then\nexisting: at which unexpected acknowledgment of his civilities, Mr\nToots was so alarmed that he secreted himself in a retired spot until\nshe had gone. Nor did he ever again face the doughty Mrs Pipchin,\nunder Doctor Blimber's roof.\n\nThey were within two or three weeks of the holidays, when, one day,\nCornelia Blimber called Paul into her room, and said, 'Dombey, I am\ngoing to send home your analysis.'\n\n'Thank you, Ma'am,' returned Paul.\n\n'You know what I mean, do you, Dombey?' inquired Miss Blimber,\nlooking hard at him, through the spectacles.\n\n'No, Ma'am,' said Paul.\n\n'Dombey, Dombey,' said Miss Blimber, 'I begin to be afraid you are\na sad boy. When you don't know the meaning of an expression, why don't\nyou seek for information?'\n\n'Mrs Pipchin told me I wasn't to ask questions,' returned Paul.\n\n'I must beg you not to mention Mrs Pipchin to me, on any account,\nDombey,' returned Miss Blimber. 'I couldn't think of allowing it. The\ncourse of study here, is very far removed from anything of that sort.\nA repetition of such allusions would make it necessary for me to\nrequest to hear, without a mistake, before breakfast-time to-morrow\nmorning, from Verbum personale down to simillimia cygno.'\n\n'I didn't mean, Ma'am - ' began little Paul.\n\n'I must trouble you not to tell me that you didn't mean, if you\nplease, Dombey,' said Miss Blimber, who preserved an awful politeness\nin her admonitions. 'That is a line of argument I couldn't dream of\npermitting.'\n\nPaul felt it safest to say nothing at all, so he only looked at\nMiss Blimber's spectacles. Miss Blimber having shaken her head at him\ngravely, referred to a paper lying before her.\n\n'\"Analysis of the character of P. Dombey.\" If my recollection\nserves me,' said Miss Blimber breaking off, 'the word analysis as\nopposed to synthesis, is thus defined by Walker. \"The resolution of an\nobject, whether of the senses or of the intellect, into its first\nelements.\" As opposed to synthesis, you observe. Now you know what\nanalysis is, Dombey.'\n\nDombey didn't seem to be absolutely blinded by the light let in\nupon his intellect, but he made Miss Blimber a little bow.\n\n'\"Analysis,\"' resumed Miss Blimber, casting her eye over the paper,\n'\"of the character of P. Dombey.\" I find that the natural capacity of\nDombey is extremely good; and that his general disposition to study\nmay be stated in an equal ratio. Thus, taking eight as our standard\nand highest number, I find these qualities in Dombey stated each at\nsix three-fourths!'\n\nMiss Blimber paused to see how Paul received this news. Being\nundecided whether six three-fourths meant six pounds fifteen, or\nsixpence three farthings, or six foot three, or three quarters past\nsix, or six somethings that he hadn't learnt yet, with three unknown\nsomething elses over, Paul rubbed his hands and looked straight at\nMiss Blimber. It happened to answer as well as anything else he could\nhave done; and Cornelia proceeded.\n\n'\"Violence two. Selfishness two. Inclination to low company, as\nevinced in the case of a person named Glubb, originally seven, but\nsince reduced. Gentlemanly demeanour four, and improving with\nadvancing years.\" Now what I particularly wish to call your attention\nto, Dombey, is the general observation at the close of this analysis.'\n\nPaul set himself to follow it with great care.\n\n'\"It may be generally observed of Dombey,\"' said Miss Blimber,\nreading in a loud voice, and at every second word directing her\nspectacles towards the little figure before her: '\"that his abilities\nand inclinations are good, and that he has made as much progress as\nunder the circumstances could have been expected. But it is to be\nlamented of this young gentleman that he is singular (what is usually\ntermed old-fashioned) in his character and conduct, and that, without\npresenting anything in either which distinctly calls for reprobation,\nhe is often very unlike other young gentlemen of his age and social\nposition.\" Now, Dombey,' said Miss Blimber, laying down the paper, 'do\nyou understand that?'\n\n'I think I do, Ma'am,' said Paul.\n\n'This analysis, you see, Dombey,' Miss Blimber continued, 'is going\nto be sent home to your respected parent. It will naturally be very\npainful to him to find that you are singular in your character and\nconduct. It is naturally painful to us; for we can't like you, you\nknow, Dombey, as well as we could wish.'\n\nShe touched the child upon a tender point. He had secretly become\nmore and more solicitous from day to day, as the time of his departure\ndrew more near, that all the house should like him. From some hidden\nreason, very imperfectly understood by himself - if understood at all\n- he felt a gradually increasing impulse of affection, towards almost\neverything and everybody in the place. He could not bear to think that\nthey would be quite indifferent to him when he was gone. He wanted\nthem to remember him kindly; and he had made it his business even to\nconciliate a great hoarse shaggy dog, chained up at the back of the\nhouse, who had previously been the terror of his life: that even he\nmight miss him when he was no longer there.\n\nLittle thinking that in this, he only showed again the difference\nbetween himself and his compeers, poor tiny Paul set it forth to Miss\nBlimber as well as he could, and begged her, in despite of the\nofficial analysis, to have the goodness to try and like him. To Mrs\nBlimber, who had joined them, he preferred the same petition: and when\nthat lady could not forbear, even in his presence, from giving\nutterance to her often-repeated opinion, that he was an odd child,\nPaul told her that he was sure she was quite right; that he thought it\nmust be his bones, but he didn't know; and that he hoped she would\noverlook it, for he was fond of them all.\n\n'Not so fond,' said Paul, with a mixture of timidity and perfect\nfrankness, which was one of the most peculiar and most engaging\nqualities of the child, 'not so fond as I am of Florence, of course;\nthat could never be. You couldn't expect that, could you, Ma'am?'\n\n'Oh! the old-fashioned little soul!' cried Mrs Blimber, in a\nwhisper.\n\n'But I like everybody here very much,' pursued Paul, 'and I should\ngrieve to go away, and think that anyone was glad that I was gone, or\ndidn't care.'\n\nMrs Blimber was now quite sure that Paul was the oddest child in\nthe world; and when she told the Doctor what had passed, the Doctor\ndid not controvert his wife's opinion. But he said, as he had said\nbefore, when Paul first came, that study would do much; and he also\nsaid, as he had said on that occasion, 'Bring him on, Cornelia! Bring\nhim on!'\n\nCornelia had always brought him on as vigorously as she could; and\nPaul had had a hard life of it. But over and above the getting through\nhis tasks, he had long had another purpose always present to him, and\nto which he still held fast. It was, to be a gentle, useful, quiet\nlittle fellow, always striving to secure the love and attachment of\nthe rest; and though he was yet often to be seen at his old post on\nthe stairs, or watching the waves and clouds from his solitary window,\nhe was oftener found, too, among the other boys, modestly rendering\nthem some little voluntary service. Thus it came to pass, that even\namong those rigid and absorbed young anchorites, who mortified\nthemselves beneath the roof of Doctor Blimber, Paul was an object of\ngeneral interest; a fragile little plaything that they all liked, and\nthat no one would have thought of treating roughly. But he could not\nchange his nature, or rewrite the analysis; and so they all agreed\nthat Dombey was old-fashioned.\n\nThere were some immunities, however, attaching to the character\nenjoyed by no one else. They could have better spared a\nnewer-fashioned child, and that alone was much. When the others only\nbowed to Doctor Blimber and family on retiring for the night, Paul\nwould stretch out his morsel of a hand, and boldly shake the Doctor's;\nalso Mrs Blimber's; also Cornelia's. If anybody was to be begged off\nfrom impending punishment, Paul was always the delegate. The weak-eyed\nyoung man himself had once consulted him, in reference to a little\nbreakage of glass and china. And it was darKly rumoured that the\nbutler, regarding him with favour such as that stern man had never\nshown before to mortal boy, had sometimes mingled porter with his\ntable-beer to make him strong.\n\nOver and above these extensive privileges, Paul had free right of\nentry to Mr Feeder's room, from which apartment he had twice led Mr\nToots into the open air in a state of faintness, consequent on an\nunsuccessful attempt to smoke a very blunt cigar: one of a bundle\nwhich that young gentleman had covertly purchased on the shingle from\na most desperate smuggler, who had acknowledged, in confidence, that\ntwo hundred pounds was the price set upon his head, dead or alive, by\nthe Custom House. It was a snug room, Mr Feeder's, with his bed in\nanother little room inside of it; and a flute, which Mr Feeder\ncouldn't play yet, but was going to make a point of learning, he said,\nhanging up over the fireplace. There were some books in it, too, and a\nfishing-rod; for Mr Feeder said he should certainly make a point of\nlearning to fish, when he could find time. Mr Feeder had amassed, with\nsimilar intentions, a beautiful little curly secondhand key-bugle, a\nchess-board and men, a Spanish Grammar, a set of sketching materials,\nand a pair of boxing-gloves. The art of self-defence Mr Feeder said he\nshould undoubtedly make a point of learning, as he considered it the\nduty of every man to do; for it might lead to the protection of a\nfemale in distress. But Mr Feeder's great possession was a large green\njar of snuff, which Mr Toots had brought down as a present, at the\nclose of the last vacation; and for which he had paid a high price,\nhaving been the genuine property of the Prince Regent. Neither Mr\nToots nor Mr Feeder could partake of this or any other snuff, even in\nthe most stinted and moderate degree, without being seized with\nconvulsions of sneezing. Nevertheless it was their great delight to\nmoisten a box-full with cold tea, stir it up on a piece of parchment\nwith a paper-knife, and devote themselves to its consumption then and\nthere. In the course of which cramming of their noses, they endured\nsurprising torments with the constancy of martyrs: and, drinking\ntable-beer at intervals, felt all the glories of dissipation.\n\nTo little Paul sitting silent in their company, and by the side of\nhis chief patron, Mr Toots, there was a dread charm in these reckless\noccasions: and when Mr Feeder spoke of the dark mysteries of London,\nand told Mr Toots that he was going to observe it himself closely in\nall its ramifications in the approaching holidays, and for that\npurpose had made arrangements to board with two old maiden ladies at\nPeckham, Paul regarded him as if he were the hero of some book of\ntravels or wild adventure, and was almost afraid of such a slashing\nperson.\n\nGoing into this room one evening, when the holidays were very near,\nPaul found Mr Feeder filling up the blanks in some printed letters,\nwhile some others, already filled up and strewn before him, were being\nfolded and sealed by Mr Toots. Mr Feeder said, 'Aha, Dombey, there you\nare, are you?' - for they were always kind to him, and glad to see him\n- and then said, tossing one of the letters towards him, 'And there\nyou are, too, Dombey. That's yours.'\n\n'Mine, Sir?' said Paul.\n\n'Your invitation,' returned Mr Feeder.\n\nPaul, looking at it, found, in copper-plate print, with the\nexception of his own name and the date, which were in Mr Feeder's\npenmanship, that Doctor and Mrs Blimber requested the pleasure of Mr\nP. Dombey's company at an early party on Wednesday Evening the\nSeventeenth Instant; and that the hour was half-past seven o'clock;\nand that the object was Quadrilles. Mr Toots also showed him, by\nholding up a companion sheet of paper, that Doctor and Mrs Blimber\nrequested the pleasure of Mr Toots's company at an early party on\nWednesday Evening the Seventeenth Instant, when the hour was half-past\nseven o'clock, and when the object was Quadrilles. He also found, on\nglancing at the table where Mr Feeder sat, that the pleasure of Mr\nBriggs's company, and of Mr Tozer's company, and of every young\ngentleman's company, was requested by Doctor and Mrs Blimber on the\nsame genteel Occasion.\n\nMr Feeder then told him, to his great joy, that his sister was\ninvited, and that it was a half-yearly event, and that, as the\nholidays began that day, he could go away with his sister after the\nparty, if he liked, which Paul interrupted him to say he would like,\nvery much. Mr Feeder then gave him to understand that he would be\nexpected to inform Doctor and Mrs Blimber, in superfine small-hand,\nthat Mr P. Dombey would be happy to have the honour of waiting on\nthem, in accordance with their polite invitation. Lastly, Mr Feeder\nsaid, he had better not refer to the festive occasion, in the hearing\nof Doctor and Mrs Blimber; as these preliminaries, and the whole of\nthe arrangements, were conducted on principles of classicality and\nhigh breeding; and that Doctor and Mrs Blimber on the one hand, and\nthe young gentlemen on the other, were supposed, in their scholastic\ncapacities, not to have the least idea of what was in the wind.\n\nPaul thanked Mr Feeder for these hints, and pocketing his\ninvitation, sat down on a stool by the side of Mr Toots, as usual. But\nPaul's head, which had long been ailing more or less, and was\nsometimes very heavy and painful, felt so uneasy that night, that he\nwas obliged to support it on his hand. And yet it dropped so, that by\nlittle and little it sunk on Mr Toots's knee, and rested there, as if\nit had no care to be ever lifted up again.\n\nThat was no reason why he should be deaf; but he must have been, he\nthought, for, by and by, he heard Mr Feeder calling in his ear, and\ngently shaking him to rouse his attention. And when he raised his\nhead, quite scared, and looked about him, he found that Doctor Blimber\nhad come into the room; and that the window was open, and that his\nforehead was wet with sprinkled water; though how all this had been\ndone without his knowledge, was very curious indeed.\n\n'Ah! Come, come! That's well! How is my little friend now?' said\nDoctor Blimber, encouragingly.\n\n'Oh, quite well, thank you, Sir,' said Paul.\n\nBut there seemed to be something the matter with the floor, for he\ncouldn't stand upon it steadily; and with the walls too, for they were\ninclined to turn round and round, and could only be stopped by being\nlooked at very hard indeed. Mr Toots's head had the appearance of\nbeing at once bigger and farther off than was quite natural; and when\nhe took Paul in his arms, to carry him upstairs, Paul observed with\nastonishment that the door was in quite a different place from that in\nwhich he had expected to find it, and almost thought, at first, that\nMr Toots was going to walk straight up the chimney.\n\nIt was very kind of Mr Toots to carry him to the top of the house\nso tenderly; and Paul told him that it was. But Mr Toots said he would\ndo a great deal more than that, if he could; and indeed he did more as\nit was: for he helped Paul to undress, and helped him to bed, in the\nkindest manner possible, and then sat down by the bedside and chuckled\nvery much; while Mr Feeder, B.A., leaning over the bottom of the\nbedstead, set all the little bristles on his head bolt upright with\nhis bony hands, and then made believe to spar at Paul with great\nscience, on account of his being all right again, which was so\nuncommonly facetious, and kind too in Mr Feeder, that Paul, not being\nable to make up his mind whether it was best to laugh or cry at him,\ndid both at once.\n\nHow Mr Toots melted away, and Mr Feeder changed into Mrs Pipchin,\nPaul never thought of asking; neither was he at all curious to know;\nbut when he saw Mrs Pipchin standing at the bottom of the bed, instead\nof Mr Feeder, he cried out, 'Mrs Pipchin, don't tell Florence!'\n\n'Don't tell Florence what, my little Paul?' said Mrs Pipchin,\ncoming round to the bedside, and sitting down in the chair.\n\n'About me,' said Paul.\n\n'No, no,' said Mrs Pipchin.\n\n'What do you think I mean to do when I grow up, Mrs Pipchin?'\ninquired Paul, turning his face towards her on his pillow, and resting\nhis chin wistfully on his folded hands.\n\nMrs Pipchin couldn't guess.\n\n'I mean,' said Paul, 'to put my money all together in one Bank,\nnever try to get any more, go away into the country with my darling\nFlorence, have a beautiful garden, fields, and woods, and live there\nwith her all my life!'\n\n'Indeed!' cried Mrs Pipchin.\n\n'Yes,' said Paul. 'That's what I mean to do, when I - ' He stopped,\nand pondered for a moment.\n\nMrs Pipchin's grey eye scanned his thoughtful face.\n\n'If I grow up,' said Paul. Then he went on immediately to tell Mrs\nPipchin all about the party, about Florence's invitation, about the\npride he would have in the admiration that would be felt for her by\nall the boys, about their being so kind to him and fond of him, about\nhis being so fond of them, and about his being so glad of it. Then he\ntold Mrs Pipchin about the analysis, and about his being certainly\nold-fashioned, and took Mrs Pipchin's opinion on that point, and\nwhether she knew why it was, and what it meant. Mrs Pipchin denied the\nfact altogether, as the shortest way of getting out of the difficulty;\nbut Paul was far from satisfied with that reply, and looked so\nsearchingly at Mrs Pipchin for a truer answer, that she was obliged to\nget up and look out of the window to avoid his eyes.\n\nThere was a certain calm Apothecary, 'who attended at the\nestablishment when any of the young gentlemen were ill, and somehow he\ngot into the room and appeared at the bedside, with Mrs Blimber. How\nthey came there, or how long they had been there, Paul didn't know;\nbut when he saw them, he sat up in bed, and answered all the\nApothecary's questions at full length, and whispered to him that\nFlorence was not to know anything about it, if he pleased, and that he\nhad set his mind upon her coming to the party. He was very chatty with\nthe Apothecary, and they parted excellent friends. Lying down again\nwith his eyes shut, he heard the Apothecary say, out of the room and\nquite a long way off - or he dreamed it - that there was a want of\nvital power (what was that, Paul wondered!) and great constitutional\nweakness. That as the little fellow had set his heart on parting with\nhis school-mates on the seventeenth, it would be better to indulge the\nfancy if he grew no worse. That he was glad to hear from Mrs Pipchin,\nthat the little fellow would go to his friends in London on the\neighteenth. That he would write to Mr Dombey, when he should have\ngained a better knowledge of the case, and before that day. That there\nwas no immediate cause for - what? Paul lost that word And that the\nlittle fellow had a fine mind, but was an old-fashioned boy.\n\nWhat old fashion could that be, Paul wondered with a palpitating\nheart, that was so visibly expressed in him; so plainly seen by so\nmany people!\n\nHe could neither make it out, nor trouble himself long with the\neffort. Mrs Pipchin was again beside him, if she had ever been away\n(he thought she had gone out with the Doctor, but it was all a dream\nperhaps), and presently a bottle and glass got into her hands\nmagically, and she poured out the contents for him. After that, he had\nsome real good jelly, which Mrs Blimber brought to him herself; and\nthen he was so well, that Mrs Pipchin went home, at his urgent\nsolicitation, and Briggs and Tozer came to bed. Poor Briggs grumbled\nterribly about his own analysis, which could hardly have discomposed\nhim more if it had been a chemical process; but he was very good to\nPaul, and so was Tozer, and so were all the rest, for they every one\nlooked in before going to bed, and said, 'How are you now, Dombey?'\n'Cheer up, little Dombey!' and so forth. After Briggs had got into\nbed, he lay awake for a long time, still bemoaning his analysis, and\nsaying he knew it was all wrong, and they couldn't have analysed a\nmurderer worse, and - how would Doctor Blimber like it if his\npocket-money depended on it? It was very easy, Briggs said, to make a\ngalley-slave of a boy all the half-year, and then score him up idle;\nand to crib two dinners a-week out of his board, and then score him up\ngreedy; but that wasn't going to be submitted to, he believed, was it?\nOh! Ah!\n\nBefore the weak-eyed young man performed on the gong next morning,\nhe came upstairs to Paul and told him he was to lie still, which Paul\nvery gladly did. Mrs Pipchin reappeared a little before the\nApothecary, and a little after the good young woman whom Paul had seen\ncleaning the stove on that first morning (how long ago it seemed now!)\nhad brought him his breakfast. There was another consultation a long\nway off, or else Paul dreamed it again; and then the Apothecary,\ncoming back with Doctor and Mrs Blimber, said:\n\n'Yes, I think, Doctor Blimber, we may release this young gentleman\nfrom his books just now; the vacation being so very near at hand.'\n\n'By all means,' said Doctor Blimber. 'My love, you will inform\nCornelia, if you please.'\n\n'Assuredly,' said Mrs Blimber.\n\nThe Apothecary bending down, looked closely into Paul's eyes, and\nfelt his head, and his pulse, and his heart, with so much interest and\ncare, that Paul said, 'Thank you, Sir.'\n\n'Our little friend,' observed Doctor Blimber, 'has never\ncomplained.'\n\n'Oh no!' replied the Apothecary. 'He was not likely to complain.'\n\n'You find him greatly better?' said Doctor Blimber.\n\n'Oh! he is greatly better, Sir,' returned the Apothecary.\n\nPaul had begun to speculate, in his own odd way, on the subject\nthat might occupy the Apothecary's mind just at that moment; so\nmusingly had he answered the two questions of Doctor Blimber. But the\nApothecary happening to meet his little patient's eyes, as the latter\nset off on that mental expedition, and coming instantly out of his\nabstraction with a cheerful smile, Paul smiled in return and abandoned\nit.\n\nHe lay in bed all that day, dozing and dreaming, and looking at Mr\nToots; but got up on the next, and went downstairs. Lo and behold,\nthere was something the matter with the great clock; and a workman on\na pair of steps had taken its face off, and was poking instruments\ninto the works by the light of a candle! This was a great event for\nPaul, who sat down on the bottom stair, and watched the operation\nattentively: now and then glancing at the clock face, leaning all\naskew, against the wall hard by, and feeling a little confused by a\nsuspicion that it was ogling him.\n\nThe workman on the steps was very civil; and as he said, when he\nobserved Paul, 'How do you do, Sir?' Paul got into conversation with\nhim, and told him he hadn't been quite well lately. The ice being thus\nbroken, Paul asked him a multitude of questions about chimes and\nclocks: as, whether people watched up in the lonely church steeples by\nnight to make them strike, and how the bells were rung when people\ndied, and whether those were different bells from wedding bells, or\nonly sounded dismal in the fancies of the living. Finding that his new\nacquaintance was not very well informed on the subject of the Curfew\nBell of ancient days, Paul gave him an account of that institution;\nand also asked him, as a practical man, what he thought about King\nAlfred's idea of measuring time by the burning of candles; to which\nthe workman replied, that he thought it would be the ruin of the clock\ntrade if it was to come up again. In fine, Paul looked on, until the\nclock had quite recovered its familiar aspect, and resumed its sedate\ninquiry; when the workman, putting away his tools in a long basket,\nbade him good day, and went away. Though not before he had whispered\nsomething, on the door-mat, to the footman, in which there was the\nphrase 'old-fashioned' - for Paul heard it. What could that old\nfashion be, that seemed to make the people sorry! What could it be!\n\nHaving nothing to learn now, he thought of this frequently; though\nnot so often as he might have done, if he had had fewer things to\nthink of. But he had a great many; and was always thinking, all day\nlong.\n\nFirst, there was Florence coming to the party. Florence would see\nthat the boys were fond of him; and that would make her happy. This\nwas his great theme. Let Florence once be sure that they were gentle\nand good to him, and that he had become a little favourite among them,\nand then the would always think of the time he had passed there,\nwithout being very sorry. Florence might be all the happier too for\nthat, perhaps, when he came back.\n\nWhen he came back! Fifty times a day, his noiseless little feet\nwent up the stairs to his own room, as he collected every book, and\nscrap, and trifle that belonged to him, and put them all together\nthere, down to the minutest thing, for taking home! There was no shade\nof coming back on little Paul; no preparation for it, or other\nreference to it, grew out of anything he thought or did, except this\nslight one in connexion with his sister. On the contrary, he had to\nthink of everything familiar to him, in his contemplative moods and in\nhis wanderings about the house, as being to be parted with; and hence\nthe many things he had to think of, all day long.\n\nHe had to peep into those rooms upstairs, and think how solitary\nthey would be when he was gone, and wonder through how many silent\ndays, weeks, months, and years, they would continue just as grave and\nundisturbed. He had to think - would any other child (old-fashioned,\nlike himself stray there at any time, to whom the same grotesque\ndistortions of pattern and furniture would manifest themselves; and\nwould anybody tell that boy of little Dombey, who had been there once?\nHe had to think of a portrait on the stairs, which always looked\nearnestly after him as he went away, eyeing it over his shoulder; and\nwhich, when he passed it in the company of anyone, still seemed to\ngaze at him, and not at his companion. He had much to think of, in\nassociation with a print that hung up in another place, where, in the\ncentre of a wondering group, one figure that he knew, a figure with a\nlight about its head - benignant, mild, and merciful - stood pointing\nupward.\n\nAt his own bedroom window, there were crowds of thoughts that mixed\nwith these, and came on, one upon another, like the rolling waves.\nWhere those wild birds lived, that were always hovering out at sea in\ntroubled weather; where the clouds rose and first began; whence the\nwind issued on its rushing flight, and where it stopped; whether the\nspot where he and Florence had so often sat, and watched, and talked\nabout these things, could ever be exactly as it used to be without\nthem; whether it could ever be the same to Florence, if he were in\nsome distant place, and she were sitting there alone.\n\nHe had to think, too, of Mr Toots, and Mr Feeder, B.A., of all the\nboys; and of Doctor Blimber, Mrs Blimber, and Miss Blimber; of home,\nand of his aunt and Miss Tox; of his father; Dombey and Son, Walter\nwith the poor old Uncle who had got the money he wanted, and that\ngruff-voiced Captain with the iron hand. Besides all this, he had a\nnumber of little visits to pay, in the course of the day; to the\nschoolroom, to Doctor Blimber's study, to Mrs Blimber's private\napartment, to Miss Blimber's, and to the dog. For he was free of the\nwhole house now, to range it as he chose; and, in his desire to part\nwith everybody on affectionate terms, he attended, in his way, to them\nall. Sometimes he found places in books for Briggs, who was always\nlosing them; sometimes he looked up words in dictionaries for other\nyoung gentlemen who were in extremity; sometimes he held skeins of\nsilk for Mrs Blimber to wind; sometimes he put Cornelia's desk to\nrights; sometimes he would even creep into the Doctor's study, and,\nsitting on the carpet near his learned feet, turn the globes softly,\nand go round the world, or take a flight among the far-off stars.\n\nIn those days immediately before the holidays, in short, when the\nother young gentlemen were labouring for dear life through a general\nresumption of the studies of the whole half-year, Paul was such a\nprivileged pupil as had never been seen in that house before. He could\nhardly believe it himself; but his liberty lasted from hour to hour,\nand from day to day; and little Dombey was caressed by everyone.\nDoctor Blimber was so particular about him, that he requested Johnson\nto retire from the dinner-table one day, for having thoughtlessly\nspoken to him as 'poor little Dombey;' which Paul thought rather hard\nand severe, though he had flushed at the moment, and wondered why\nJohnson should pity him. It was the more questionable justice, Paul\nthought, in the Doctor, from his having certainly overheard that great\nauthority give his assent on the previous evening, to the proposition\n(stated by Mrs Blimber) that poor dear little Dombey was more\nold-fashioned than ever. And now it was that Paul began to think it\nmust surely be old-fashioned to be very thin, and light, and easily\ntired, and soon disposed to lie down anywhere and rest; for he\ncouldn't help feeling that these were more and more his habits every\nday.\n\nAt last the party-day arrived; and Doctor Blimber said at\nbreakfast, 'Gentlemen, we will resume our studies on the twenty-fifth\nof next month.' Mr Toots immediately threw off his allegiance, and put\non his ring: and mentioning the Doctor in casual conversation shortly\nafterwards, spoke of him as 'Blimber'! This act of freedom inspired\nthe older pupils with admiration and envy; but the younger spirits\nwere appalled, and seemed to marvel that no beam fell down and crushed\nhim.\n\nNot the least allusion was made to the ceremonies of the evening,\neither at breakfast or at dinner; but there was a bustle in the house\nall day, and in the course of his perambulations, Paul made\nacquaintance with various strange benches and candlesticks, and met a\nharp in a green greatcoat standing on the landing outside the\ndrawing-room door. There was something queer, too, about Mrs Blimber's\nhead at dinner-time, as if she had screwed her hair up too tight; and\nthough Miss Blimber showed a graceful bunch of plaited hair on each\ntemple, she seemed to have her own little curls in paper underneath,\nand in a play-bill too; for Paul read 'Theatre Royal' over one of her\nsparkling spectacles, and 'Brighton' over the other.\n\nThere was a grand array of white waistcoats and cravats in the\nyoung gentlemen's bedrooms as evening approached; and such a smell of\nsinged hair, that Doctor Blimber sent up the footman with his\ncompliments, and wished to know if the house was on fire. But it was\nonly the hairdresser curling the young gentlemen, and over-heating his\ntongs in the ardour of business.\n\nWhen Paul was dressed - which was very soon done, for he felt\nunwell and drowsy, and was not able to stand about it very long - he\nwent down into the drawing-room; where he found Doctor Blimber pacing\nup and down the room full dressed, but with a dignified and\nunconcerned demeanour, as if he thought it barely possible that one or\ntwo people might drop in by and by. Shortly afterwards, Mrs Blimber\nappeared, looking lovely, Paul thought; and attired in such a number\nof skirts that it was quite an excursion to walk round her. Miss\nBlimber came down soon after her Mama; a little squeezed in\nappearance, but very charming.\n\nMr Toots and Mr Feeder were the next arrivals. Each of these\ngentlemen brought his hat in his hand, as if he lived somewhere else;\nand when they were announced by the butler, Doctor Blimber said, 'Ay,\nay, ay! God bless my soul!' and seemed extremely glad to see them. Mr\nToots was one blaze of jewellery and buttons; and he felt the\ncircumstance so strongly, that when he had shaken hands with the\nDoctor, and had bowed to Mrs Blimber and Miss Blimber, he took Paul\naside, and said, 'What do you think of this, Dombey?'\n\nBut notwithstanding this modest confidence in himself, Mr Toots\nappeared to be involved in a good deal of uncertainty whether, on the\nwhole, it was judicious to button the bottom button of his waistcoat,\nand whether, on a calm revision of all the circumstances, it was best\nto wear his waistbands turned up or turned down. Observing that Mr\nFeeder's were turned up, Mr Toots turned his up; but the waistbands of\nthe next arrival being turned down, Mr Toots turned his down. The\ndifferences in point of waistcoat-buttoning, not only at the bottom,\nbut at the top too, became so numerous and complicated as the arrivals\nthickened, that Mr Toots was continually fingering that article of\ndress, as if he were performing on some instrument; and appeared to\nfind the incessant execution it demanded, quite bewildering. All the\nyoung gentlemen, tightly cravatted, curled, and pumped, and with their\nbest hats in their hands, having been at different times announced and\nintroduced, Mr Baps, the dancing-master, came, accompanied by Mrs\nBaps, to whom Mrs Blimber was extremely kind and condescending. Mr\nBaps was a very grave gentleman, with a slow and measured manner of\nspeaking; and before he had stood under the lamp five minutes, he\nbegan to talk to Toots (who had been silently comparing pumps with\nhim) about what you were to do with your raw materials when they came\ninto your ports in return for your drain of gold. Mr Toots, to whom\nthe question seemed perplexing, suggested 'Cook 'em.' But Mr Baps did\nnot appear to think that would do.\n\nPaul now slipped away from the cushioned corner of a sofa, which\nhad been his post of observation, and went downstairs into the\ntea-room to be ready for Florence, whom he had not seen for nearly a\nfortnight, as he had remained at Doctor Blimber's on the previous\nSaturday and Sunday, lest he should take cold. Presently she came:\nlooking so beautiful in her simple ball dress, with her fresh flowers\nin her hand, that when she knelt down on the ground to take Paul round\nthe neck and kiss him (for there was no one there, but his friend and\nanother young woman waiting to serve out the tea), he could hardly\nmake up his mind to let her go again, or to take away her bright and\nloving eyes from his face.\n\n'But what is the matter, Floy?' asked Paul, almost sure that he saw\na tear there.\n\n'Nothing, darling; nothing,' returned Florence.\n\nPaul touched her cheek gently with his finger - and it was a tear!\n'Why, Floy!' said he.\n\n'We'll go home together, and I'll nurse you, love,' said Florence.\n\n'Nurse me!' echoed Paul.\n\nPaul couldn't understand what that had to do with it, nor why the\ntwo young women looked on so seriously, nor why Florence turned away\nher face for a moment, and then turned it back, lighted up again with\nsmiles.\n\n'Floy,' said Paul, holding a ringlet of her dark hair in his hand.\n'Tell me, dear, Do you think I have grown old-fashioned?'\n\nHis sister laughed, and fondled him, and told him 'No.'\n\n'Because I know they say so,' returned Paul, 'and I want to know\nwhat they mean, Floy.' But a loud double knock coming at the door, and\nFlorence hurrying to the table, there was no more said between them.\nPaul wondered again when he saw his friend whisper to Florence, as if\nshe were comforting her; but a new arrival put that out of his head\nspeedily.\n\nIt was Sir Barnet Skettles, Lady Skettles, and Master Skettles.\nMaster Skettles was to be a new boy after the vacation, and Fame had\nbeen busy, in Mr Feeder's room, with his father, who was in the House\nof Commons, and of whom Mr Feeder had said that when he did catch the\nSpeaker's eye (which he had been expected to do for three or four\nyears), it was anticipated that he would rather touch up the Radicals.\n\n'And what room is this now, for instance?' said Lady Skettles to\nPaul's friend, 'Melia.\n\n'Doctor Blimber's study, Ma'am,' was the reply.\n\nLady Skettles took a panoramic survey of it through her glass, and\nsaid to Sir Barnet Skettles, with a nod of approval, 'Very good.' Sir\nBarnet assented, but Master Skettles looked suspicious and doubtful.\n\n'And this little creature, now,' said Lady Skettles, turning to\nPaul. 'Is he one of the\n\n'Young gentlemen, Ma'am; yes, Ma'am,' said Paul's friend.\n\n'And what is your name, my pale child?' said Lady Skettles.\n\n'Dombey,' answered Paul.\n\nSir Barnet Skettles immediately interposed, and said that he had\nhad the honour of meeting Paul's father at a public dinner, and that\nhe hoped he was very well. Then Paul heard him say to Lady Skettles,\n'City - very rich - most respectable - Doctor mentioned it.' And then\nhe said to Paul, 'Will you tell your good Papa that Sir Barnet\nSkettles rejoiced to hear that he was very well, and sent him his best\ncompliments?'\n\n'Yes, Sir,' answered Paul.\n\n'That is my brave boy,' said Sir Barnet Skettles. 'Barnet,' to\nMaster Skettles, who was revenging himself for the studies to come, on\nthe plum-cake, 'this is a young gentleman you ought to know. This is a\nyoung gentleman you may know, Barnet,' said Sir Barnet Skettles, with\nan emphasis on the permission.\n\n'What eyes! What hair! What a lovely face!' exclaimed Lady Skettles\nsoftly, as she looked at Florence through her glass. 'My sister,' said\nPaul, presenting her.\n\nThe satisfaction of the Skettleses was now complex And as Lady\nSkettles had conceived, at first sight, a liking for Paul, they all\nwent upstairs together: Sir Barnet Skettles taking care of Florence,\nand young Barnet following.\n\nYoung Barnet did not remain long in the background after they had\nreached the drawing-room, for Dr Blimber had him out in no time,\ndancing with Florence. He did not appear to Paul to be particularly\nhappy, or particularly anything but sulky, or to care much what he was\nabout; but as Paul heard Lady Skettles say to Mrs Blimber, while she\nbeat time with her fan, that her dear boy was evidently smitten to\ndeath by that angel of a child, Miss Dombey, it would seem that\nSkettles Junior was in a state of bliss, without showing it.\n\nLittle Paul thought it a singular coincidence that nobody had\noccupied his place among the pillows; and that when he came into the\nroom again, they should all make way for him to go back to it,\nremembering it was his. Nobody stood before him either, when they\nobserved that he liked to see Florence dancing, but they left the\nspace in front quite clear, so that he might follow her with his eyes.\nThey were so kind, too, even the strangers, of whom there were soon a\ngreat many, that they came and spoke to him every now and then, and\nasked him how he was, and if his head ached, and whether he was tired.\nHe was very much obliged to them for all their kindness and attention,\nand reclining propped up in his corner, with Mrs Blimber and Lady\nSkettles on the same sofa, and Florence coming and sitting by his side\nas soon as every dance was ended, he looked on very happily indeed.\n\nFlorence would have sat by him all night, and would not have danced\nat all of her own accord, but Paul made her, by telling her how much\nit pleased him. And he told her the truth, too; for his small heart\nswelled, and his face glowed, when he saw how much they all admired\nher, and how she was the beautiful little rosebud of the room.\n\nFrom his nest among the pillows, Paul could see and hear almost\neverything that passed as if the whole were being done for his\namusement. Among other little incidents that he observed, he observed\nMr Baps the dancing-master get into conversation with Sir Barnet\nSkettles, and very soon ask him, as he had asked Mr Toots, what you\nwere to do with your raw materials, when they came into your ports in\nreturn for your drain of gold - which was such a mystery to Paul that\nhe was quite desirous to know what ought to be done with them. Sir\nBarnet Skettles had much to say upon the question, and said it; but it\ndid not appear to solve the question, for Mr Baps retorted, Yes, but\nsupposing Russia stepped in with her tallows; which struck Sir Barnet\nalmost dumb, for he could only shake his head after that, and say, Why\nthen you must fall back upon your cottons, he supposed.\n\nSir Barnet Skettles looked after Mr Baps when he went to cheer up\nMrs Baps (who, being quite deserted, was pretending to look over the\nmusic-book of the gentleman who played the harp), as if he thought him\na remarkable kind of man; and shortly afterwards he said so in those\nwords to Doctor Blimber, and inquired if he might take the liberty of\nasking who he was, and whether he had ever been in the Board of Trade.\nDoctor Blimber answered no, he believed not; and that in fact he was a\nProfessor of - '\n\n'Of something connected with statistics, I'll swear?' observed Sir\nBarnet Skettles.\n\n'Why no, Sir Barnet,' replied Doctor Blimber, rubbing his chin.\n'No, not exactly.'\n\n'Figures of some sort, I would venture a bet,' said Sir Barnet\nSkettles.\n\n'Why yes,' said Doctor Blimber, yes, but not of that sort. Mr Baps\nis a very worthy sort of man, Sir Barnet, and - in fact he's our\nProfessor of dancing.'\n\nPaul was amazed to see that this piece of information quite altered\nSir Barnet Skettles's opinion of Mr Baps, and that Sir Barnet flew\ninto a perfect rage, and glowered at Mr Baps over on the other side of\nthe room. He even went so far as to D Mr Baps to Lady Skettles, in\ntelling her what had happened, and to say that it was like his most\ncon-sum-mate and con-foun-ded impudence.\n\nThere was another thing that Paul observed. Mr Feeder, after\nimbibing several custard-cups of negus, began to enjoy himself. The\ndancing in general was ceremonious, and the music rather solemn - a\nlittle like church music in fact - but after the custard-cups, Mr\nFeeder told Mr Toots that he was going to throw a little spirit into\nthe thing. After that, Mr Feeder not only began to dance as if he\nmeant dancing and nothing else, but secretly to stimulate the music to\nperform wild tunes. Further, he became particular in his attentions to\nthe ladies; and dancing with Miss Blimber, whispered to her -\nwhispered to her! - though not so softly but that Paul heard him say\nthis remarkable poetry,\n\n             'Had I a heart for falsehood framed,\n\n              I ne'er could injure You!'\nThis, Paul heard him repeat to four young ladies, in succession. Well\nmight Mr Feeder say to Mr Toots, that he was afraid he should be the\nworse for it to-morrow!\n\nMrs Blimber was a little alarmed by this - comparatively speaking -\nprofligate behaviour; and especially by the alteration in the\ncharacter of the music, which, beginning to comprehend low melodies\nthat were popular in the streets, might not unnaturally be supposed to\ngive offence to Lady Skettles. But Lady Skettles was so very kind as\nto beg Mrs Blimber not to mention it; and to receive her explanation\nthat Mr Feeder's spirits sometimes betrayed him into excesses on these\noccasions, with the greatest courtesy and politeness; observing, that\nhe seemed a very nice sort of person for his situation, and that she\nparticularly liked the unassuming style of his hair - which (as\nalready hinted) was about a quarter of an inch long.\n\nOnce, when there was a pause in the dancing, Lady Skettles told\nPaul that he seemed very fond of music. Paul replied, that he was; and\nif she was too, she ought to hear his sister, Florence, sing. Lady\nSkettles presently discovered that she was dying with anxiety to have\nthat gratification; and though Florence was at first very much\nfrightened at being asked to sing before so many people, and begged\nearnestly to be excused, yet, on Paul calling her to him, and saying,\n'Do, Floy! Please! For me, my dear!' she went straight to the piano,\nand began. When they all drew a little away, that Paul might see her;\nand when he saw her sitting there all alone, so young, and good, and\nbeautiful, and kind to him; and heard her thrilling voice, so natural\nand sweet, and such a golden link between him and all his life's love\nand happiness, rising out of the silence; he turned his face away, and\nhid his tears. Not, as he told them when they spoke to him, not that\nthe music was too plaintive or too sorrowful, but it was so dear to\nhim.\n\nThey all loved Florence. How could they help it! Paul had known\nbeforehand that they must and would; and sitting in his cushioned\ncorner, with calmly folded hands; and one leg loosely doubled under\nhim, few would have thought what triumph and delight expanded his\nchildish bosom while he watched her, or what a sweet tranquillity he\nfelt. Lavish encomiums on 'Dombey's sister' reached his ears from all\nthe boys: admiration of the self-possessed and modest little beauty\nwas on every lip: reports of her intelligence and accomplishments\nfloated past him, constantly; and, as if borne in upon the air of the\nsummer night, there was a half intelligible sentiment diffused around,\nreferring to Florence and himself, and breathing sympathy for both,\nthat soothed and touched him.\n\nHe did not know why. For all that the child observed, and felt, and\nthought, that night - the present and the absent; what was then and\nwhat had been - were blended like the colours in the rainbow, or in\nthe plumage of rich birds when the sun is shining on them, or in the\nsoftening sky when the same sun is setting. The many things he had had\nto think of lately, passed before him in the music; not as claiming\nhis attention over again, or as likely evermore to occupy it, but as\npeacefully disposed of and gone. A solitary window, gazed through\nyears ago, looked out upon an ocean, miles and miles away; upon its\nwaters, fancies, busy with him only yesterday, were hushed and lulled\nto rest like broken waves. The same mysterious murmur he had wondered\nat, when lying on his couch upon the beach, he thought he still heard\nsounding through his sister's song, and through the hum of voices, and\nthe tread of feet, and having some part in the faces flitting by, and\neven in the heavy gentleness of Mr Toots, who frequently came up to\nshake him by the hand. Through the universal kindness he still thought\nhe heard it, speaking to him; and even his old-fashioned reputation\nseemed to be allied to it, he knew not how. Thus little Paul sat\nmusing, listening, looking on, and dreaming; and was very happy.\n\nUntil the time arrived for taking leave: and then, indeed, there\nwas a sensation in the party. Sir Barnet Skettles brought up Skettles\nJunior to shake hands with him, and asked him if he would remember to\ntell his good Papa, with his best compliments, that he, Sir Barnet\nSkettles, had said he hoped the two young gentlemen would become\nintimately acquainted. Lady Skettles kissed him, and patted his hair\nupon his brow, and held him in her arms; and even Mrs Baps - poor Mrs\nBaps! Paul was glad of that - came over from beside the music-book of\nthe gentleman who played the harp, and took leave of him quite as\nheartily as anybody in the room.\n\n'Good-bye, Doctor Blimber,' said Paul, stretching out his hand.\n\n'Good-bye, my little friend,' returned the Doctor.\n\n'I'm very much obliged to you, Sir,' said Paul, looking innocently\nup into his awful face. 'Ask them to take care of Diogenes, if you\nplease.'\n\nDiogenes was the dog: who had never in his life received a friend\ninto his confidence, before Paul. The Doctor promised that every\nattention should he paid to Diogenes in Paul's absence, and Paul\nhaving again thanked him, and shaken hands with him, bade adieu to Mrs\nBlimber and Cornelia with such heartfelt earnestness that Mrs Blimber\nforgot from that moment to mention Cicero to Lady Skettles, though she\nhad fully intended it all the evening. Cornelia, taking both Paul's\nhands in hers, said,'Dombey, Dombey, you have always been my favourite\npupil. God bless you!' And it showed, Paul thought, how easily one\nmight do injustice to a person; for Miss Blimber meant it - though she\nwas a Forcer - and felt it.\n\nA boy then went round among the young gentlemen, of 'Dombey's\ngoing!' 'Little Dombey's going!' and there was a general move after\nPaul and Florence down the staircase and into the hall, in which the\nwhole Blimber family were included. Such a circumstance, Mr Feeder\nsaid aloud, as had never happened in the case of any former young\ngentleman within his experience; but it would be difficult to say if\nthis were sober fact or custard-cups. The servants, with the butler at\ntheir head, had all an interest in seeing Little Dombey go; and even\nthe weak-eyed young man, taking out his books and trunks to the coach\nthat was to carry him and Florence to Mrs Pipchin's for the night,\nmelted visibly.\n\nNot even the influence of the softer passion on the young gentlemen\n- and they all, to a boy, doted on Florence - could restrain them from\ntaking quite a noisy leave of Paul; waving hats after him, pressing\ndownstairs to shake hands with him, crying individually 'Dombey, don't\nforget me!' and indulging in many such ebullitions of feeling,\nuncommon among those young Chesterfields. Paul whispered Florence, as\nshe wrapped him up before the door was opened, Did she hear them?\nWould she ever forget it? Was she glad to know it? And a lively\ndelight was in his eyes as he spoke to her.\n\nOnce, for a last look, he turned and gazed upon the faces thus\naddressed to him, surprised to see how shining and how bright, and\nnumerous they were, and how they were all piled and heaped up, as\nfaces are at crowded theatres. They swam before him as he looked, like\nfaces in an agitated glass; and next moment he was in the dark coach\noutside, holding close to Florence. From that time, whenever he\nthought of Doctor Blimber's, it came back as he had seen it in this\nlast view; and it never seemed to be a real place again, but always a\ndream, full of eyes.\n\nThis was not quite the last of Doctor Blimber's, however. There was\nsomething else. There was Mr Toots. Who, unexpectedly letting down one\nof the coach-windows, and looking in, said, with a most egregious\nchuckle, 'Is Dombey there?' and immediately put it up again, without\nwaiting for an answer. Nor was this quite the last of Mr Toots, even;\nfor before the coachman could drive off, he as suddenly let down the\nother window, and looking in with a precisely similar chuckle, said in\na precisely similar tone of voice, 'Is Dombey there?' and disappeared\nprecisely as before.\n\nHow Florence laughed! Paul often remembered it, and laughed himself\nwhenever he did so.\n\nBut there was much, soon afterwards - next day, and after that -\nwhich Paul could only recollect confusedly. As, why they stayed at Mrs\nPipchin's days and nights, instead of going home; why he lay in bed,\nwith Florence sitting by his side; whether that had been his father in\nthe room, or only a tall shadow on the wall; whether he had heard his\ndoctor say, of someone, that if they had removed him before the\noccasion on which he had built up fancies, strong in proportion to his\nown weakness, it was very possible he might have pined away.\n\nHe could not even remember whether he had often said to Florence,\n'Oh Floy, take me home, and never leave me!' but he thought he had. He\nfancied sometimes he had heard himself repeating, 'Take me home, Floy!\ntake me home!'\n\nBut he could remember, when he got home, and was carried up the\nwell-remembered stairs, that there had been the rumbling of a coach\nfor many hours together, while he lay upon the seat, with Florence\nstill beside him, and old Mrs Pipchin sitting opposite. He remembered\nhis old bed too, when they laid him down in it: his aunt, Miss Tox,\nand Susan: but there was something else, and recent too, that still\nperplexed him.\n\n'I want to speak to Florence, if you please,' he said. 'To Florence\nby herself, for a moment!'\n\nShe bent down over him, and the others stood away.\n\n'Floy, my pet, wasn't that Papa in the hall, when they brought me\nfrom the coach?'\n\n'Yes, dear.'\n\n'He didn't cry, and go into his room, Floy, did he, when he saw me\ncoming in?'\n\nFlorence shook her head, and pressed her lips against his cheek.\n\n'I'm very glad he didn't cry,' said little Paul. 'I thought he did.\nDon't tell them that I asked.'\n\n\n\nCHAPTER 15.\n\nAmazing Artfulness of Captain Cuttle, and a new Pursuit for Walter Gay\n\n\n\nWalter could not, for several days, decide what to do in the\nBarbados business; and even cherished some faint hope that Mr Dombey\nmight not have meant what he had said, or that he might change his\nmind, and tell him he was not to go. But as nothing occurred to give\nthis idea (which was sufficiently improbable in itself) any touch of\nconfirmation, and as time was slipping by, and he had none to lose, he\nfelt that he must act, without hesitating any longer.\n\nWalter's chief difficulty was, how to break the change in his\naffairs to Uncle Sol, to whom he was sensible it would he a terrible\nblow. He had the greater difficulty in dashing Uncle Sol's spirits\nwith such an astounding piece of intelligence, because they had lately\nrecovered very much, and the old man had become so cheerful, that the\nlittle back parlour was itself again. Uncle Sol had paid the first\nappointed portion of the debt to Mr Dombey, and was hopeful of working\nhis way through the rest; and to cast him down afresh, when he had\nsprung up so manfully from his troubles, was a very distressing\nnecessity.\n\nYet it would never do to run away from him. He must know of it\nbeforehand; and how to tell him was the point. As to the question of\ngoing or not going, Walter did not consider that he had any power of\nchoice in the matter. Mr Dombey had truly told him that he was young,\nand that his Uncle's circumstances were not good; and Mr Dombey had\nplainly expressed, in the glance with which he had accompanied that\nreminder, that if he declined to go he might stay at home if he chose,\nbut not in his counting-house. His Uncle and he lay under a great\nobligation to Mr Dombey, which was of Walter's own soliciting. He\nmight have begun in secret to despair of ever winning that gentleman's\nfavour, and might have thought that he was now and then disposed to\nput a slight upon him, which was hardly just. But what would have been\nduty without that, was still duty with it - or Walter thought so- and\nduty must be done.\n\nWhen Mr Dombey had looked at him, and told him he was young, and\nthat his Uncle's circumstances were not good, there had been an\nexpression of disdain in his face; a contemptuous and disparaging\nassumption that he would be quite content to live idly on a reduced\nold man, which stung the boy's generous soul. Determined to assure Mr\nDombey, in so far as it was possible to give him the assurance without\nexpressing it in words, that indeed he mistook his nature, Walter had\nbeen anxious to show even more cheerfulness and activity after the\nWest Indian interview than he had shown before: if that were possible,\nin one of his quick and zealous disposition. He was too young and\ninexperienced to think, that possibly this very quality in him was not\nagreeable to Mr Dombey, and that it was no stepping-stone to his good\nopinion to be elastic and hopeful of pleasing under the shadow of his\npowerful displeasure, whether it were right or wrong. But it may have\nbeen - it may have been- that the great man thought himself defied in\nthis new exposition of an honest spirit, and purposed to bring it\ndown.\n\n'Well! at last and at least, Uncle Sol must be told,' thought\nWalter, with a sigh. And as Walter was apprehensive that his voice\nmight perhaps quaver a little, and that his countenance might not be\nquite as hopeful as he could wish it to be, if he told the old man\nhimself, and saw the first effects of his communication on his\nwrinkled face, he resolved to avail himself of the services of that\npowerful mediator, Captain Cuttle. Sunday coming round, he set off\ntherefore, after breakfast, once more to beat up Captain Cuttle's\nquarters.\n\nIt was not unpleasant to remember, on the way thither, that Mrs\nMacStinger resorted to a great distance every Sunday morning, to\nattend the ministry of the Reverend Melchisedech Howler, who, having\nbeen one day discharged from the West India Docks on a false suspicion\n(got up expressly against him by the general enemy) of screwing\ngimlets into puncheons, and applying his lips to the orifice, had\nannounced the destruction of the world for that day two years, at ten\nin the morning, and opened a front parlour for the reception of ladies\nand gentlemen of the Ranting persuasion, upon whom, on the first\noccasion of their assemblage, the admonitions of the Reverend\nMelchisedech had produced so powerful an effect, that, in their\nrapturous performance of a sacred jig, which closed the service, the\nwhole flock broke through into a kitchen below, and disabled a mangle\nbelonging to one of the fold.\n\nThis the Captain, in a moment of uncommon conviviality, had\nconfided to Walter and his Uncle, between the repetitions of lovely\nPeg, on the night when Brogley the broker was paid out. The Captain\nhimself was punctual in his attendance at a church in his own\nneighbourhood, which hoisted the Union Jack every Sunday morning; and\nwhere he was good enough - the lawful beadle being infirm - to keep an\neye upon the boys, over whom he exercised great power, in virtue of\nhis mysterious hook. Knowing the regularity of the Captain's habits,\nWalter made all the haste he could, that he might anticipate his going\nout; and he made such good speed, that he had the pleasure, on turning\ninto Brig Place, to behold the broad blue coat and waistcoat hanging\nout of the Captain's oPen window, to air in the sun.\n\nIt appeared incredible that the coat and waistcoat could be seen by\nmortal eyes without the Captain; but he certainly was not in them,\notherwise his legs - the houses in Brig Place not being lofty- would\nhave obstructed the street door, which was perfectly clear. Quite\nwondering at this discovery, Walter gave a single knock.\n\n'Stinger,' he distinctly heard the Captain say, up in his room, as\nif that were no business of his. Therefore Walter gave two knocks.\n\n'Cuttle,' he heard the Captain say upon that; and immediately\nafterwards the Captain, in his clean shirt and braces, with his\nneckerchief hanging loosely round his throat like a coil of rope, and\nhis glazed hat on, appeared at the window, leaning out over the broad\nblue coat and waistcoat.\n\n'Wal'r!' cried the Captain, looking down upon him in amazement.\n\n'Ay, ay, Captain Cuttle,' returned Walter, 'only me'\n\n'What's the matter, my lad?' inquired the Captain, with great\nconcern. 'Gills an't been and sprung nothing again?'\n\n'No, no,' said Walter. 'My Uncle's all right, Captain Cuttle.'\n\nThe Captain expressed his gratification, and said he would come\ndown below and open the door, which he did.\n\n'Though you're early, Wal'r,' said the Captain, eyeing him still\ndoubtfully, when they got upstairs:\n\n'Why, the fact is, Captain Cuttle,' said Walter, sitting down, 'I\nwas afraid you would have gone out, and I want to benefit by your\nfriendly counsel.'\n\n'So you shall,' said the Captain; 'what'll you take?'\n\n'I want to take your opinion, Captain Cuttle,' returned Walter,\nsmiling. 'That's the only thing for me.'\n\n'Come on then,' said the Captain. 'With a will, my lad!'\n\nWalter related to him what had happened; and the difficulty in\nwhich he felt respecting his Uncle, and the relief it would be to him\nif Captain Cuttle, in his kindness, would help him to smooth it away;\nCaptain Cuttle's infinite consternation and astonishment at the\nprospect unfolded to him, gradually swallowing that gentleman up,\nuntil it left his face quite vacant, and the suit of blue, the glazed\nhat, and the hook, apparently without an owner.\n\n'You see, Captain Cuttle,' pursued Walter, 'for myself, I am young,\nas Mr Dombey said, and not to be considered. I am to fight my way\nthrough the world, I know; but there are two points I was thinking, as\nI came along, that I should be very particular about, in respect to my\nUncle. I don't mean to say that I deserve to be the pride and delight\nof his life - you believe me, I know - but I am. Now, don't you think\nI am?'\n\nThe Captain seemed to make an endeavour to rise from the depths of\nhis astonishment, and get back to his face; but the effort being\nineffectual, the glazed hat merely nodded with a mute, unutterable\nmeaning.\n\n'If I live and have my health,' said Walter, 'and I am not afraid\nof that, still, when I leave England I can hardly hope to see my Uncle\nagain. He is old, Captain Cuttle; and besides, his life is a life of\ncustom - '\n\n'Steady, Wal'r! Of a want of custom?' said the Captain, suddenly\nreappearing.\n\n'Too true,' returned Walter, shaking his head: 'but I meant a life\nof habit, Captain Cuttle - that sort of custom. And if (as you very\ntruly said, I am sure) he would have died the sooner for the loss of\nthe stock, and all those objects to which he has been accustomed for\nso many years, don't you think he might die a little sooner for the\nloss of - '\n\n'Of his Nevy,' interposed the Captain. 'Right!'\n\n'Well then,' said Walter, trying to speak gaily, 'we must do our\nbest to make him believe that the separation is but a temporary one,\nafter all; but as I know better, or dread that I know better, Captain\nCuttle, and as I have so many reasons for regarding him with\naffection, and duty, and honour, I am afraid I should make but a very\npoor hand at that, if I tried to persuade him of it. That's my great\nreason for wishing you to break it out to him; and that's the first\npoint.'\n\n'Keep her off a point or so!' observed the Captain, in a\ncomtemplative voice.\n\n'What did you say, Captain Cuttle?' inquired Walter.\n\n'Stand by!' returned the Captain, thoughtfully.\n\nWalter paused to ascertain if the Captain had any particular\ninformation to add to this, but as he said no more, went on.\n\n'Now, the second point, Captain Cuttle. I am sorry to say, I am not\na favourite with Mr Dombey. I have always tried to do my best, and I\nhave always done it; but he does not like me. He can't help his\nlikings and dislikings, perhaps. I say nothing of that. I only say\nthat I am certain he does not like me. He does not send me to this\npost as a good one; he disclaims to represent it as being better than\nit is; and I doubt very much if it will ever lead me to advancement in\nthe House - whether it does not, on the contrary, dispose of me for\never, and put me out of the way. Now, we must say nothing of this to\nmy Uncle, Captain Cuttle, but must make it out to be as favourable and\npromising as we can; and when I tell you what it really is, I only do\nso, that in case any means should ever arise of lending me a hand, so\nfar off, I may have one friend at home who knows my real situation.\n\n'Wal'r, my boy,' replied the Captain, 'in the Proverbs of Solomon\nyou will find the following words, \"May we never want a friend in\nneed, nor a bottle to give him!\" When found, make a note of.'\n\nHere the Captain stretched out his hand to Walter, with an air of\ndownright good faith that spoke volumes; at the same time repeating\n(for he felt proud of the accuracy and pointed application of his\nquotation), 'When found, make a note of.'\n\n'Captain Cuttle,' said Walter, taking the immense fist extended to\nhim by the Captain in both his hands, which it completely filled, next\nto my Uncle Sol, I love you. There is no one on earth in whom I can\nmore safely trust, I am sure. As to the mere going away, Captain\nCuttle, I don't care for that; why should I care for that! If I were\nfree to seek my own fortune - if I were free to go as a common sailor\n- if I were free to venture on my own account to the farthest end of\nthe world - I would gladly go! I would have gladly gone, years ago,\nand taken my chance of what might come of it. But it was against my\nUncle's wishes, and against the plans he had formed for me; and there\nwas an end of that. But what I feel, Captain Cuttle, is that we have\nbeen a little mistaken all along, and that, so far as any improvement\nin my prospects is concerned, I am no better off now than I was when I\nfirst entered Dombey's House - perhaps a little worse, for the House\nmay have been kindly inclined towards me then, and it certainly is not\nnow.'\n\n'Turn again, Whittington,' muttered the disconsolate Captain, after\nlooking at Walter for some time.\n\n'Ay,' replied Walter, laughing, 'and turn a great many times, too,\nCaptain Cuttle, I'm afraid, before such fortune as his ever turns up\nagain. Not that I complain,' he added, in his lively, animated,\nenergetic way. 'I have nothing to complain of. I am provided for. I\ncan live. When I leave my Uncle, I leave him to you; and I can leave\nhim to no one better, Captain Cuttle. I haven't told you all this\nbecause I despair, not I; it's to convince you that I can't pick and\nchoose in Dombey's House, and that where I am sent, there I must go,\nand what I am offered, that I must take. It's better for my Uncle that\nI should be sent away; for Mr Dombey is a valuable friend to him, as\nhe proved himself, you know when, Captain Cuttle; and I am persuaded\nhe won't be less valuable when he hasn't me there, every day, to\nawaken his dislike. So hurrah for the West Indies, Captain Cuttle! How\ndoes that tune go that the sailors sing?\n\n              'For the Port of Barbados, Boys!\n\n                                            Cheerily!\n\n              Leaving old England behind us, Boys!\n\n                                            Cheerily!'\nHere the Captain roared in chorus -\n\n              'Oh cheerily, cheerily!\n\n                                            Oh cheer-i-ly!'\n\nThe last line reaching the quick ears of an ardent skipper not\nquite sober, who lodged opposite, and who instantly sprung out of bed,\nthrew up his window, and joined in, across the street, at the top of\nhis voice, produced a fine effect. When it was impossible to sustain\nthe concluding note any longer, the skipper bellowed forth a terrific\n'ahoy!' intended in part as a friendly greeting, and in part to show\nthat he was not at all breathed. That done, he shut down his window,\nand went to bed again.\n\n'And now, Captain Cuttle,' said Walter, handing him the blue coat\nand waistcoat, and bustling very much, 'if you'll come and break the\nnews to Uncle Sol (which he ought to have known, days upon days ago,\nby rights), I'll leave you at the door, you know, and walk about until\nthe afternoon.'\n\nThe Captain, however, scarcely appeared to relish the commission,\nor to be by any means confident of his powers of executing it. He had\narranged the future life and adventures of Walter so very differently,\nand so entirely to his own satisfaction; he had felicitated himself so\noften on the sagacity and foresight displayed in that arrangement, and\nhad found it so complete and perfect in all its parts; that to suffer\nit to go to pieces all at once, and even to assist in breaking it up,\nrequired a great effort of his resolution. The Captain, too, found it\ndifficult to unload his old ideas upon the subject, and to take a\nperfectly new cargo on board, with that rapidity which the\ncircumstances required, or without jumbling and confounding the two.\nConsequently, instead of putting on his coat and waistcoat with\nanything like the impetuosity that could alone have kept pace with\nWalter's mood, he declined to invest himself with those garments at\nall at present; and informed Walter that on such a serious matter, he\nmust be allowed to 'bite his nails a bit'\n\n'It's an old habit of mine, Wal'r,' said the Captain, 'any time\nthese fifty year. When you see Ned Cuttle bite his nails, Wal'r, then\nyou may know that Ned Cuttle's aground.'\n\nThereupon the Captain put his iron hook between his teeth, as if it\nwere a hand; and with an air of wisdom and profundity that was the\nvery concentration and sublimation of all philosophical reflection and\ngrave inquiry, applied himself to the consideration of the subject in\nits various branches.\n\n'There's a friend of mine,' murmured the Captain, in an absent\nmanner, 'but he's at present coasting round to Whitby, that would\ndeliver such an opinion on this subject, or any other that could be\nnamed, as would give Parliament six and beat 'em. Been knocked\noverboard, that man,' said the Captain, 'twice, and none the worse for\nit. Was beat in his apprenticeship, for three weeks (off and on),\nabout the head with a ring-bolt. And yet a clearer-minded man don't\nwalk.'\n\nDespite of his respect for Captain Cuttle, Walter could not help\ninwardly rejoicing at the absence of this sage, and devoutly hoping\nthat his limpid intellect might not be brought to bear on his\ndifficulties until they were quite settled.\n\n'If you was to take and show that man the buoy at the Nore,' said\nCaptain Cuttle in the same tone, 'and ask him his opinion of it,\nWal'r, he'd give you an opinion that was no more like that buoy than\nyour Uncle's buttons are. There ain't a man that walks - certainly not\non two legs - that can come near him. Not near him!'\n\n'What's his name, Captain Cuttle?' inquired Walter, determined to\nbe interested in the Captain's friend.\n\n'His name's Bunsby, said the Captain. 'But Lord, it might be\nanything for the matter of that, with such a mind as his!'\n\nThe exact idea which the Captain attached to this concluding piece\nof praise, he did not further elucidate; neither did Walter seek to\ndraw it forth. For on his beginning to review, with the vivacity\nnatural to himself and to his situation, the leading points in his own\naffairs, he soon discovered that the Captain had relapsed into his\nformer profound state of mind; and that while he eyed him steadfastly\nfrom beneath his bushy eyebrows, he evidently neither saw nor heard\nhim, but remained immersed in cogitation.\n\nIn fact, Captain Cuttle was labouring with such great designs, that\nfar from being aground, he soon got off into the deepest of water, and\ncould find no bottom to his penetration. By degrees it became\nperfectly plain to the Captain that there was some mistake here; that\nit was undoubtedly much more likely to be Walter's mistake than his;\nthat if there were really any West India scheme afoot, it was a very\ndifferent one from what Walter, who was young and rash, supposed; and\ncould only be some new device for making his fortune with unusual\ncelerity. 'Or if there should be any little hitch between 'em,'\nthought the Captain, meaning between Walter and Mr Dombey, 'it only\nwants a word in season from a friend of both parties, to set it right\nand smooth, and make all taut again.' Captain Cuttle's deduction from\nthese considerations was, that as he already enjoyed the pleasure of\nknowing Mr Dombey, from having spent a very agreeable half-hour in his\ncompany at Brighton (on the morning when they borrowed the money); and\nthat, as a couple of men of the world, who understood each other, and\nwere mutually disposed to make things comfortable, could easily\narrange any little difficulty of this sort, and come at the real\nfacts; the friendly thing for him to do would be, without saying\nanything about it to Walter at present, just to step up to Mr Dombey's\nhouse - say to the servant 'Would ye be so good, my lad, as report\nCap'en Cuttle here?' - meet Mr Dombey in a confidential spirit- hook\nhim by the button-hole - talk it over - make it all right - and come\naway triumphant!\n\nAs these reflections presented themselves to the Captain's mind,\nand by slow degrees assumed this shape and form, his visage cleared\nlike a doubtful morning when it gives place to a bright noon. His\neyebrows, which had been in the highest degree portentous, smoothed\ntheir rugged bristling aspect, and became serene; his eyes, which had\nbeen nearly closed in the severity of his mental exercise, opened\nfreely; a smile which had been at first but three specks - one at the\nright-hand corner of his mouth, and one at the corner of each eye -\ngradually overspread his whole face, and, rippling up into his\nforehead, lifted the glazed hat: as if that too had been aground with\nCaptain Cuttle, and were now, like him, happily afloat again.\n\nFinally, the Captain left off biting his nails, and said, 'Now,\nWal'r, my boy, you may help me on with them slops.' By which the\nCaptain meant his coat and waistcoat.\n\nWalter little imagined why the Captain was so particular in the\narrangement of his cravat, as to twist the pendent ends into a sort of\npigtail, and pass them through a massive gold ring with a picture of a\ntomb upon it, and a neat iron railing, and a tree, in memory of some\ndeceased friend. Nor why the Captain pulled up his shirt-collar to the\nutmost limits allowed by the Irish linen below, and by so doing\ndecorated himself with a complete pair of blinkers; nor why he changed\nhis shoes, and put on an unparalleled pair of ankle-jacks, which he\nonly wore on extraordinary occasions. The Captain being at length\nattired to his own complete satisfaction, and having glanced at\nhimself from head to foot in a shaving-glass which he removed from a\nnail for that purpose, took up his knotted stick, and said he was\nready.\n\nThe Captain's walk was more complacent than usual when they got out\ninto the street; but this Walter supposed to be the effect of the\nankle-jacks, and took little heed of. Before they had gone very far,\nthey encountered a woman selling flowers; when the Captain stopping\nshort, as if struck by a happy idea, made a purchase of the largest\nbundle in her basket: a most glorious nosegay, fan-shaped, some two\nfeet and a half round, and composed of all the jolliest-looking\nflowers that blow.\n\nArmed with this little token which he designed for Mr Dombey,\nCaptain Cuttle walked on with Walter until they reached the\nInstrument-maker's door, before which they both paused.\n\n'You're going in?' said Walter.\n\n'Yes,' returned the Captain, who felt that Walter must be got rid\nof before he proceeded any further, and that he had better time his\nprojected visit somewhat later in the day.\n\n'And you won't forget anything?'\n\n'No,' returned the Captain.\n\n'I'll go upon my walk at once,' said Walter, 'and then I shall be\nout of the way, Captain Cuttle.'\n\n'Take a good long 'un, my lad!' replied the Captain, calling after\nhim. Walter waved his hand in assent, and went his way.\n\nHis way was nowhere in particular; but he thought he would go out\ninto the fields, where he could reflect upon the unknown life before\nhim, and resting under some tree, ponder quietly. He knew no better\nfields than those near Hampstead, and no better means of getting at\nthem than by passing Mr Dombey's house.\n\nIt was as stately and as dark as ever, when he went by and glanced\nup at its frowning front. The blinds were all pulled down, but the\nupper windows stood wide open, and the pleasant air stirring those\ncurtains and waving them to and fro was the only sign of animation in\nthe whole exterior. Walter walked softly as he passed, and was glad\nwhen he had left the house a door or two behind.\n\nHe looked back then; with the interest he had always felt for the\nplace since the adventure of the lost child, years ago; and looked\nespecially at those upper windows. While he was thus engaged, a\nchariot drove to the door, and a portly gentleman in black, with a\nheavy watch-chain, alighted, and went in. When he afterwards\nremembered this gentleman and his equipage together, Walter had no\ndoubt be was a physician; and then he wondered who was ill; but the\ndiscovery did not occur to him until he had walked some distance,\nthinking listlessly of other things.\n\nThough still, of what the house had suggested to him; for Walter\npleased hImself with thinking that perhaps the time might come, when\nthe beautiful child who was his old friend and had always been so\ngrateful to him and so glad to see him since, might interest her\nbrother in his behalf and influence his fortunes for the better. He\nliked to imagine this - more, at that moment, for the pleasure of\nimagining her continued remembrance of him, than for any worldly\nprofit he might gain: but another and more sober fancy whispered to\nhim that if he were alive then, he would be beyond the sea and\nforgotten; she married, rich, proud, happy. There was no more reason\nwhy she should remember him with any interest in such an altered state\nof things, than any plaything she ever had. No, not so much.\n\nYet Walter so idealised the pretty child whom he had found\nwandering in the rough streets, and so identified her with her\ninnocent gratitude of that night and the simplicity and truth of its\nexpression, that he blushed for himself as a libeller when he argued\nthat she could ever grow proud. On the other hand, his meditations\nwere of that fantastic order that it seemed hardly less libellous in\nhim to imagine her grown a woman: to think of her as anything but the\nsame artless, gentle, winning little creature, that she had been in\nthe days of Good Mrs Brown. In a word, Walter found out that to reason\nwith himself about Florence at all, was to become very unreasonable\nindeed; and that he could do no better than preserve her image in his\nmind as something precious, unattainable, unchangeable, and indefinite\n- indefinite in all but its power of giving him pleasure, and\nrestraining him like an angel's hand from anything unworthy.\n\nIt was a long stroll in the fields that Walter took that day,\nlistening to the birds, and the Sunday bells, and the softened murmur\nof the town - breathing sweet scents; glancing sometimes at the dim\nhorizon beyond which his voyage and his place of destination lay; then\nlooking round on the green English grass and the home landscape. But\nhe hardly once thought, even of going away, distinctly; and seemed to\nput off reflection idly, from hour to hour, and from minute to minute,\nwhile he yet went on reflecting all the time.\n\nWalter had left the fields behind him, and was plodding homeward in\nthe same abstracted mood, when he heard a shout from a man, and then a\nwoman's voice calling to him loudly by name. Turning quickly in his\nsurprise, he saw that a hackney-coach, going in the contrary\ndirection, had stopped at no great distance; that the coachman was\nlooking back from his box and making signals to him with his whip; and\nthat a young woman inside was leaning out of the window, and beckoning\nwith immense energy. Running up to this coach, he found that the young\nwoman was Miss Nipper, and that Miss Nipper was in such a flutter as\nto be almost beside herself.\n\n'Staggs's Gardens, Mr Walter!' said Miss Nipper; 'if you please, oh\ndo!'\n\n'Eh?' cried Walter; 'what is the matter?'\n\n'Oh, Mr Walter, Staggs's Gardens, if you please!' said Susan.\n\n'There!' cried the coachman, appealing to Walter, with a sort of\nexalting despair; 'that's the way the young lady's been a goin' on for\nup'ards of a mortal hour, and me continivally backing out of no\nthoroughfares, where she would drive up. I've had a many fares in this\ncoach, first and last, but never such a fare as her.'\n\n'Do you want to go to Staggs's Gardens, Susan?' inquired Walter.\n\n'Ah! She wants to go there! WHERE IS IT?' growled the coachman.\n\n'I don't know where it is!' exclaimed Susan, wildly. 'Mr Walter, I\nwas there once myself, along with Miss Floy and our poor darling\nMaster Paul, on the very day when you found Miss Floy in the City, for\nwe lost her coming home, Mrs Richards and me, and a mad bull, and Mrs\nRichards's eldest, and though I went there afterwards, I can't\nremember where it is, I think it's sunk into the ground. Oh, Mr\nWalter, don't desert me, Staggs's Gardens, if you please! Miss Floy's\ndarling - all our darlings - little, meek, meek Master Paul! Oh Mr\nWalter!'\n\n'Good God!' cried Walter. 'Is he very ill?'\n\n'The pretty flower!' cried Susan, wringing her hands, 'has took the\nfancy that he'd like to see his old nurse, and I've come to bring her\nto his bedside, Mrs Staggs, of Polly Toodle's Gardens, someone pray!'\n\nGreatly moved by what he heard, and catching Susan's earnestness\nimmediately, Walter, now that he understood the nature of her errand,\ndashed into it with such ardour that the coachman had enough to do to\nfollow closely as he ran before, inquiring here and there and\neverywhere, the way to Staggs's Gardens.\n\nThere was no such place as Staggs's Gardens. It had vanished from\nthe earth. Where the old rotten summer-houses once had stood, palaces\nnow reared their heads, and granite columns of gigantic girth opened a\nvista to the railway world beyond. The miserable waste ground, where\nthe refuse-matter had been heaped of yore, was swallowed up and gone;\nand in its frowsy stead were tiers of warehouses, crammed with rich\ngoods and costly merchandise. The old by-streets now swarmed with\npassengers and vehicles of every kind: the new streets that had\nstopped disheartened in the mud and waggon-ruts, formed towns within\nthemselves, originating wholesome comforts and conveniences belonging\nto themselves, and never tried nor thought of until they sprung into\nexistence. Bridges that had led to nothing, led to villas, gardens,\nchurches, healthy public walks. The carcasses of houses, and\nbeginnings of new thoroughfares, had started off upon the line at\nsteam's own speed, and shot away into the country in a monster train.'\n\nAs to the neighbourhood which had hesitated to acknowledge the\nrailroad in its straggling days, that had grown wise and penitent, as\nany Christian might in such a case, and now boasted of its powerful\nand prosperous relation. There were railway patterns in its drapers'\nshops, and railway journals in the windows of its newsmen. There were\nrailway hotels, office-houses, lodging-houses, boarding-houses;\nrailway plans, maps, views, wrappers, bottles, sandwich-boxes, and\ntime-tables; railway hackney-coach and stands; railway omnibuses,\nrailway streets and buildings, railway hangers-on and parasites, and\nflatterers out of all calculation. There was even railway time\nobserved in clocks, as if the sun itself had given in. Among the\nvanquished was the master chimney-sweeper, whilom incredulous at\nStaggs's Gardens, who now lived in a stuccoed house three stories\nhigh, and gave himself out, with golden flourishes upon a varnished\nboard, as contractor for the cleansing of railway chimneys by\nmachinery.\n\nTo and from the heart of this great change, all day and night,\nthrobbing currents rushed and returned incessantly like its life's\nblood. Crowds of people and mountains of goods, departing and arriving\nscores upon scores of times in every four-and-twenty hours, produced a\nfermentation in the place that was always in action. The very houses\nseemed disposed to pack up and take trips. Wonderful Members of\nParliament, who, little more than twenty years before, had made\nthemselves merry with the wild railroad theories of engineers, and\ngiven them the liveliest rubs in cross-examination, went down into the\nnorth with their watches in their hands, and sent on messages before\nby the electric telegraph, to say that they were coming. Night and day\nthe conquering engines rumbled at their distant work, or, advancing\nsmoothly to their journey's end, and gliding like tame dragons into\nthe allotted corners grooved out to the inch for their reception,\nstood bubbling and trembling there, making the walls quake, as if they\nwere dilating with the secret knowledge of great powers yet\nunsuspected in them, and strong purposes not yet achieved.\n\nBut Staggs's Gardens had been cut up root and branch. Oh woe the\nday when 'not a rood of English ground' - laid out in Staggs's Gardens\n- is secure!\n\nAt last, after much fruitless inquiry, Walter, followed by the\ncoach and Susan, found a man who had once resided in that vanished\nland, and who was no other than the master sweep before referred to,\ngrown stout, and knocking a double knock at his own door. He knowed\nToodle, he said, well. Belonged to the Railroad, didn't he?\n\n'Yes' sir, yes!' cried Susan Nipper from the coach window.\n\nWhere did he live now? hastily inquired Walter.\n\nHe lived in the Company's own Buildings, second turning to the\nright, down the yard, cross over, and take the second on the right\nagain. It was number eleven; they couldn't mistake it; but if they\ndid, they had only to ask for Toodle, Engine Fireman, and any one\nwould show them which was his house. At this unexpected stroke of\nsuccess Susan Nipper dismounted from the coach with all speed, took\nWalter's arm, and set off at a breathless pace on foot; leaving the\ncoach there to await their return.\n\n'Has the little boy been long ill, Susan?' inquired Walter, as they\nhurried on.\n\n'Ailing for a deal of time, but no one knew how much,' said Susan;\nadding, with excessive sharpness, 'Oh, them Blimbers!'\n\n'Blimbers?' echoed Walter.\n\n'I couldn't forgive myself at such a time as this, Mr Walter,' said\nSusan, 'and when there's so much serious distress to think about, if I\nrested hard on anyone, especially on them that little darling Paul\nspeaks well of, but I may wish that the family was set to work in a\nstony soil to make new roads, and that Miss Blimber went in front, and\nhad the pickaxe!'\n\nMiss Nipper then took breath, and went on faster than before, as if\nthis extraordinary aspiration had relieved her. Walter, who had by\nthis time no breath of his own to spare, hurried along without asking\nany more questions; and they soon, in their impatience, burst in at a\nlittle door and came into a clean parlour full of children.\n\n'Where's Mrs Richards?' exclaimed Susan Nipper, looking round. 'Oh\nMrs Richards, Mrs Richards, come along with me, my dear creetur!'\n\n'Why, if it ain't Susan!' cried Polly, rising with her honest face\nand motherly figure from among the group, in great surprIse.\n\n'Yes, Mrs Richards, it's me,' said Susan, 'and I wish it wasn't,\nthough I may not seem to flatter when I say so, but little Master Paul\nis very ill, and told his Pa today that he would like to see the face\nof his old nurse, and him and Miss Floy hope you'll come along with me\n- and Mr Walter, Mrs Richards - forgetting what is past, and do a\nkindness to the sweet dear that is withering away. Oh, Mrs Richards,\nwithering away!' Susan Nipper crying, Polly shed tears to see her, and\nto hear what she had said; and all the children gathered round\n(including numbers of new babies); and Mr Toodle, who had just come\nhome from Birmingham, and was eating his dinner out of a basin, laid\ndown his knife and fork, and put on his wife's bonnet and shawl for\nher, which were hanging up behind the door; then tapped her on the\nback; and said, with more fatherly feeling than eloquence, 'Polly! cut\naway!'\n\nSo they got back to the coach, long before the coachman expected\nthem; and Walter, putting Susan and Mrs Richards inside, took his seat\non the box himself that there might be no more mistakes, and deposited\nthem safely in the hall of Mr Dombey's house - where, by the bye, he\nsaw a mighty nosegay lying, which reminded him of the one Captain\nCuttle had purchased in his company that morning. He would have\nlingered to know more of the young invalid, or waited any length of\ntime to see if he could render the least service; but, painfully\nsensible that such conduct would be looked upon by Mr Dombey as\npresumptuous and forward, he turned slowly, sadly, anxiously, away.\n\nHe had not gone five minutes' walk from the door, when a man came\nrunning after him, and begged him to return. Walter retraced his steps\nas quickly as he could, and entered the gloomy house with a sorrowful\nforeboding.\n\n\n\nCHAPTER 16.\n\nWhat the Waves were always saying\n\n\n\nPaul had never risen from his little bed. He lay there, listening\nto the noises in the street, quite tranquilly; not caring much how the\ntime went, but watching it and watching everything about him with\nobserving eyes.\n\nWhen the sunbeams struck into his room through the rustling blinds,\nand quivered on the opposite wall like golden water, he knew that\nevening was coming on, and that the sky was red and beautiful. As the\nreflection died away, and a gloom went creeping up the wall, he\nwatched it deepen, deepen, deepen, into night. Then he thought how the\nlong streets were dotted with lamps, and how the peaceful stars were\nshining overhead. His fancy had a strange tendency to wander to the\nriver, which he knew was flowing through the great city; and now he\nthought how black it was, and how deep it would look, reflecting the\nhosts of stars - and more than all, how steadily it rolled away to\nmeet the sea.\n\nAs it grew later in the night, and footsteps in the street became\nso rare that he could hear them coming, count them as they passed, and\nlose them in the hollow distance, he would lie and watch the\nmany-coloured ring about the candle, and wait patiently for day. His\nonly trouble was, the swift and rapid river. He felt forced,\nsometimes, to try to stop it - to stem it with his childish hands - or\nchoke its way with sand - and when he saw it coming on, resistless, he\ncried out! But a word from Florence, who was always at his side,\nrestored him to himself; and leaning his poor head upon her breast, he\ntold Floy of his dream, and smiled.\n\nWhen day began to dawn again, he watched for the sun; and when its\ncheerful light began to sparkle in the room, he pictured to himself -\npictured! he saw - the high church towers rising up into the morning\nsky, the town reviving, waking, starting into life once more, the\nriver glistening as it rolled (but rolling fast as ever), and the\ncountry bright with dew. Familiar sounds and cries came by degrees\ninto the street below; the servants in the house were roused and busy;\nfaces looked in at the door, and voices asked his attendants softly\nhow he was. Paul always answered for himself, 'I am better. I am a\ngreat deal better, thank you! Tell Papa so!'\n\nBy little and little, he got tired of the bustle of the day, the\nnoise of carriages and carts, and people passing and repassing; and\nwould fall asleep, or be troubled with a restless and uneasy sense\nagain - the child could hardly tell whether this were in his sleeping\nor his waking moments - of that rushing river. 'Why, will it never\nstop, Floy?' he would sometimes ask her. 'It is bearing me away, I\nthink!'\n\nBut Floy could always soothe and reassure him; and it was his daily\ndelight to make her lay her head down on his pillow, and take some\nrest.\n\n'You are always watching me, Floy, let me watch you, now!' They\nwould prop him up with cushions in a corner of his bed, and there he\nwould recline the while she lay beside him: bending forward oftentimes\nto kiss her, and whispering to those who were near that she was tired,\nand how she had sat up so many nights beside him.\n\nThus, the flush of the day, in its heat and light, would gradually\ndecline; and again the golden water would be dancing on the wall.\n\nHe was visited by as many as three grave doctors - they used to\nassemble downstairs, and come up together - and the room was so quiet,\nand Paul was so observant of them (though he never asked of anybody\nwhat they said), that he even knew the difference in the sound of\ntheir watches. But his interest centred in Sir Parker Peps, who always\ntook his seat on the side of the bed. For Paul had heard them say long\nago, that that gentleman had been with his Mama when she clasped\nFlorence in her arms, and died. And he could not forget it, now. He\nliked him for it. He was not afraid.\n\nThe people round him changed as unaccountably as on that first\nnight at Doctor Blimber's - except Florence; Florence never changed -\nand what had been Sir Parker Peps, was now his father, sitting with\nhis head upon his hand. Old Mrs Pipchin dozing in an easy chair, often\nchanged to Miss Tox, or his aunt; and Paul was quite content to shut\nhis eyes again, and see what happened next, without emotion. But this\nfigure with its head upon its hand returned so often, and remained so\nlong, and sat so still and solemn, never speaking, never being spoken\nto, and rarely lifting up its face, that Paul began to wonder\nlanguidly, if it were real; and in the night-time saw it sitting\nthere, with fear.\n\n'Floy!' he said. 'What is that?'\n\n'Where, dearest?'\n\n'There! at the bottom of the bed.'\n\n'There's nothing there, except Papa!'\n\nThe figure lifted up its head, and rose, and coming to the bedside,\nsaid:\n\n'My own boy! Don't you know me?'\n\nPaul looked it in the face, and thought, was this his father? But\nthe face so altered to his thinking, thrilled while he gazed, as if it\nwere in pain; and before he could reach out both his hands to take it\nbetween them, and draw it towards him, the figure turned away quickly\nfrom the little bed, and went out at the door.\n\nPaul looked at Florence with a fluttering heart, but he knew what\nshe was going to say, and stopped her with his face against her lips.\nThe next time he observed the figure sitting at the bottom of the bed,\nhe called to it.\n\n'Don't be sorry for me, dear Papa! Indeed I am quite happy!'\n\nHis father coming and bending down to him - which he did quickly,\nand without first pausing by the bedside - Paul held him round the\nneck, and repeated those words to him several times, and very\nearnestly; and Paul never saw him in his room again at any time,\nwhether it were day or night, but he called out, 'Don't be sorry for\nme! Indeed I am quite happy!' This was the beginning of his always\nsaying in the morning that he was a great deal better, and that they\nwere to tell his father so.\n\nHow many times the golden water danced upon the wall; how many\nnights the dark, dark river rolled towards the sea in spite of him;\nPaul never counted, never sought to know. If their kindness, or his\nsense of it, could have increased, they were more kind, and he more\ngrateful every day; but whether they were many days or few, appeared\nof little moment now, to the gentle boy.\n\nOne night he had been thinking of his mother, and her picture in\nthe drawing-room downstairs, and thought she must have loved sweet\nFlorence better than his father did, to have held her in her arms when\nshe felt that she was dying - for even he, her brother, who had such\ndear love for her, could have no greater wish than that. The train of\nthought suggested to him to inquire if he had ever seen his mother?\nfor he could not remember whether they had told him, yes or no, the\nriver running very fast, and confusing his mind.\n\n'Floy, did I ever see Mama?'\n\n'No, darling, why?'\n\n'Did I ever see any kind face, like Mama's, looking at me when I\nwas a baby, Floy?'\n\nHe asked, incredulously, as if he had some vision of a face before\nhim.\n\n'Oh yes, dear!'\n\n'Whose, Floy?'\n\n'Your old nurse's. Often.'\n\n'And where is my old nurse?' said Paul. 'Is she dead too? Floy, are\nwe all dead, except you?'\n\nThere was a hurry in the room, for an instant - longer, perhaps;\nbut it seemed no more - then all was still again; and Florence, with\nher face quite colourless, but smiling, held his head upon her arm.\nHer arm trembled very much.\n\n'Show me that old nurse, Floy, if you please!'\n\n'She is not here, darling. She shall come to-morrow.'\n\n'Thank you, Floy!'\n\nPaul closed his eyes with those words, and fell asleep. When he\nawoke, the sun was high, and the broad day was clear and He lay a\nlittle, looking at the windows, which were open, and the curtains\nrustling in the air, and waving to and fro: then he said, 'Floy, is it\ntomorrow? Is she come?'\n\nSomeone seemed to go in quest of her. Perhaps it was Susan. Paul\nthought he heard her telling him when he had closed his eyes again,\nthat she would soon be back; but he did not open them to see. She kept\nher word - perhaps she had never been away - but the next thing that\nhappened was a noise of footsteps on the stairs, and then Paul woke -\nwoke mind and body - and sat upright in his bed. He saw them now about\nhim. There was no grey mist before them, as there had been sometimes\nin the night. He knew them every one, and called them by their names.\n\n'And who is this? Is this my old nurse?' said the child, regarding\nwith a radiant smile, a figure coming in.\n\nYes, yes. No other stranger would have shed those tears at sight of\nhim, and called him her dear boy, her pretty boy, her own poor\nblighted child. No other woman would have stooped down by his bed, and\ntaken up his wasted hand, and put it to her lips and breast, as one\nwho had some right to fondle it. No other woman would have so\nforgotten everybody there but him and Floy, and been so full of\ntenderness and pity.\n\n'Floy! this is a kind good face!' said Paul. 'I am glad to see it\nagain. Don't go away, old nurse! Stay here.'\n\nHis senses were all quickened, and he heard a name he knew.\n\n'Who was that, who said \"Walter\"?' he asked, looking round.\n'Someone said Walter. Is he here? I should like to see him very much.'\n\nNobody replied directly; but his father soon said to Susan, 'Call\nhim back, then: let him come up!' Alter a short pause of expectation,\nduring which he looked with smiling interest and wonder, on his nurse,\nand saw that she had not forgotten Floy, Walter was brought into the\nroom. His open face and manner, and his cheerful eyes, had always made\nhim a favourite with Paul; and when Paul saw him' he stretched Out his\nhand, and said 'Good-bye!'\n\n'Good-bye, my child!' said Mrs Pipchin, hurrying to his bed's head.\n'Not good-bye?'\n\nFor an instant, Paul looked at her with the wistful face with which\nhe had so often gazed upon her in his corner by the fire. 'Yes,' he\nsaid placidly, 'good-bye! Walter dear, good-bye!' - turning his head\nto where he stood, and putting out his hand again. 'Where is Papa?'\n\nHe felt his father's breath upon his cheek, before the words had\nparted from his lips.\n\n'Remember Walter, dear Papa,' he whispered, looking in his face.\n'Remember Walter. I was fond of Walter!' The feeble hand waved in the\nair, as if it cried 'good-bye!' to Walter once again.\n\n'Now lay me down,' he said, 'and, Floy, come close to me, and let\nme see you!'\n\nSister and brother wound their arms around each other, and the\ngolden light came streaming in, and fell upon them, locked together.\n\n'How fast the river runs, between its green banks and the rushes,\n'Floy! But it's very near the sea. I hear the waves! They always said\nso!'\n\nPresently he told her the motion of the boat upon the stream was\nlulling him to rest. How green the banks were now, how bright the\nflowers growing on them, and how tall the rushes! Now the boat was out\nat sea, but gliding smoothly on. And now there was a shore before him.\nWho stood on the bank! -\n\nHe put his hands together, as he had been used to do at his\nprayers. He did not remove his arms to do it; but they saw him fold\nthem so, behind her neck.\n\n'Mama is like you, Floy. I know her by the face! But tell them that\nthe print upon the stairs at school is not divine enough. The light\nabout the head is shining on me as I go!'\n\nThe golden ripple on the wall came back again, and nothing else\nstirred in the room. The old, old fashion! The fashion that came in\nwith our first garments, and will last unchanged until our race has\nrun its course, and the wide firmament is rolled up like a scroll. The\nold, old fashion - Death!\n\nOh thank GOD, all who see it, for that older fashion yet, of\nImmortality! And look upon us, angels of young children, with regards\nnot quite estranged, when the swift river bears us to the ocean!\n\n'Dear me, dear me! To think,' said Miss Tox, bursting out afresh\nthat night, as if her heart were broken, 'that Dombey and Son should\nbe a Daughter after all!'\n\n\n\nCHAPTER 17.\n\nCaptain Cuttle does a little Business for the Young People\n\n\n\nCaptain Cuttle, in the exercise of that surprising talent for\ndeep-laid and unfathomable scheming, with which (as is not unusual in\nmen of transparent simplicity) he sincerely believed himself to be\nendowed by nature, had gone to Mr Dombey's house on the eventful\nSunday, winking all the way as a vent for his superfluous sagacity,\nand had presented himself in the full lustre of the ankle-jacks before\nthe eyes of Towlinson. Hearing from that individual, to his great\nconcern, of the impending calamity, Captain Cuttle, in his delicacy,\nsheered off again confounded; merely handing in the nosegay as a small\nmark of his solicitude, and leaving his respectful compliments for the\nfamily in general, which he accompanied with an expression of his hope\nthat they would lay their heads well to the wind under existing\ncircumstances, and a friendly intimation that he would 'look up again'\nto-morrow.\n\nThe Captain's compliments were never heard of any more. The\nCaptain's nosegay, after lying in the hall all night, was swept into\nthe dust-bin next morning; and the Captain's sly arrangement, involved\nin one catastrophe with greater hopes and loftier designs, was crushed\nto pieces. So, when an avalanche bears down a mountain-forest, twigs\nand bushes suffer with the trees, and all perish together.\n\nWhen Walter returned home on the Sunday evening from his long walk,\nand its memorable close, he was too much occupied at first by the\ntidings he had to give them, and by the emotions naturally awakened in\nhis breast by the scene through which he had passed, to observe either\nthat his Uncle was evidently unacquainted with the intelligence the\nCaptain had undertaken to impart, or that the Captain made signals\nwith his hook, warning him to avoid the subject. Not that the\nCaptain's signals were calculated to have proved very comprehensible,\nhowever attentively observed; for, like those Chinese sages who are\nsaid in their conferences to write certain learned words in the air\nthat are wholly impossible of pronunciation, the Captain made such\nwaves and flourishes as nobody without a previous knowledge of his\nmystery, would have been at all likely to understand.\n\nCaptain Cuttle, however, becoming cognisant of what had happened,\nrelinquished these attempts, as he perceived the slender chance that\nnow existed of his being able to obtain a little easy chat with Mr\nDombey before the period of Walter's departure. But in admitting to\nhimself, with a disappointed and crestfallen countenance, that Sol\nGills must be told, and that Walter must go - taking the case for the\npresent as he found it, and not having it enlightened or improved\nbeforehand by the knowing management of a friend - the Captain still\nfelt an unabated confidence that he, Ned Cuttle, was the man for Mr\nDombey; and that, to set Walter's fortunes quite square, nothing was\nwanted but that they two should come together. For the Captain never\ncould forget how well he and Mr Dombey had got on at Brighton; with\nwhat nicety each of them had put in a word when it was wanted; how\nexactly they had taken one another's measure; nor how Ned Cuttle had\npointed out that resources in the first extremity, and had brought the\ninterview to the desired termination. On all these grounds the Captain\nsoothed himself with thinking that though Ned Cuttle was forced by the\npressure of events to 'stand by' almost useless for the present, Ned\nwould fetch up with a wet sail in good time, and carry all before him.\n\nUnder the influence of this good-natured delusion, Captain Cuttle\neven went so far as to revolve in his own bosom, while he sat looking\nat Walter and listening with a tear on his shirt-collar to what he\nrelated, whether it might not be at once genteel and politic to give\nMr Dombey a verbal invitation, whenever they should meet, to come and\ncut his mutton in Brig Place on some day of his own naming, and enter\non the question of his young friend's prospects over a social glass.\nBut the uncertain temper of Mrs MacStinger, and the possibility of her\nsetting up her rest in the passage during such an entertainment, and\nthere delivering some homily of an uncomplimentary nature, operated as\na check on the Captain's hospitable thoughts, and rendered him timid\nof giving them encouragement.\n\nOne fact was quite clear to the Captain, as Walter, sitting\nthoughtfully over his untasted dinner, dwelt on all that had happened;\nnamely, that however Walter's modesty might stand in the way of his\nperceiving it himself, he was, as one might say, a member of Mr\nDombey's family. He had been, in his own person, connected with the\nincident he so pathetically described; he had been by name remembered\nand commended in close association with it; and his fortunes must have\na particular interest in his employer's eyes. If the Captain had any\nlurking doubt whatever of his own conclusions, he had not the least\ndoubt that they were good conclusions for the peace of mind of the\nInstrument-maker. Therefore he availed himself of so favourable a\nmoment for breaking the West Indian intelligence to his friend, as a\npiece of extraordinary preferment; declaring that for his part he\nwould freely give a hundred thousand pounds (if he had it) for\nWalter's gain in the long-run, and that he had no doubt such an\ninvestment would yield a handsome premium.\n\nSolomon Gills was at first stunned by the communication, which fell\nupon the little back-parlour like a thunderbolt, and tore up the\nhearth savagely. But the Captain flashed such golden prospects before\nhis dim sight: hinted so mysteriously at 'Whittingtonian consequences;\nlaid such emphasis on what Walter had just now told them: and appealed\nto it so confidently as a corroboration of his predictions, and a\ngreat advance towards the realisation of the romantic legend of Lovely\nPeg: that he bewildered the old man. Walter, for his part, feigned to\nbe so full of hope and ardour, and so sure of coming home again soon,\nand backed up the Captain with such expressive shakings of his head\nand rubbings of his hands, that Solomon, looking first at him then at\nCaptain Cuttle, began to think he ought to be transported with joy.\n\n'But I'm behind the time, you understand,' he observed in apology,\npassing his hand nervously down the whole row of bright buttons on his\ncoat, and then up again, as if they were beads and he were telling\nthem twice over: 'and I would rather have my dear boy here. It's an\nold-fashioned notion, I daresay. He was always fond of the sea He's' -\nand he looked wistfully at Walter - 'he's glad to go.'\n\n'Uncle Sol!' cried Walter, quickly, 'if you say that, I won't go.\nNo, Captain Cuttle, I won't. If my Uncle thinks I could be glad to\nleave him, though I was going to be made Governor of all the Islands\nin the West Indies, that's enough. I'm a fixture.'\n\n'Wal'r, my lad,' said the Captain. 'Steady! Sol Gills, take an\nobservation of your nevy.\n\nFollowing with his eyes the majestic action of the Captain's hook,\nthe old man looked at Walter.\n\n'Here is a certain craft,' said the Captain, with a magnificent\nsense of the allegory into which he was soaring, 'a-going to put out\non a certain voyage. What name is wrote upon that craft indelibly? Is\nit The Gay? or,' said the Captain, raising his voice as much as to\nsay, observe the point of this, 'is it The Gills?'\n\n'Ned,' said the old man, drawing Walter to his side, and taking his\narm tenderly through his, 'I know. I know. Of course I know that Wally\nconsiders me more than himself always. That's in my mind. When I say\nhe is glad to go, I mean I hope he is. Eh? look you, Ned and you too,\nWally, my dear, this is new and unexpected to me; and I'm afraid my\nbeing behind the time, and poor, is at the bottom of it. Is it really\ngood fortune for him, do you tell me, now?' said the old man, looking\nanxiously from one to the other. 'Really and truly? Is it? I can\nreconcile myself to almost anything that advances Wally, but I won't\nhave Wally putting himself at any disadvantage for me, or keeping\nanything from me. You, Ned Cuttle!' said the old man, fastening on the\nCaptain, to the manifest confusion of that diplomatist; 'are you\ndealing plainly by your old friend? Speak out, Ned Cuttle. Is there\nanything behind? Ought he to go? How do you know it first, and why?'\n\nAs it was a contest of affection and self-denial, Walter struck in\nwith infinite effect, to the Captain's relief; and between them they\ntolerably reconciled old Sol Gills, by continued talking, to the\nproject; or rather so confused him, that nothing, not even the pain of\nseparation, was distinctly clear to his mind.\n\nHe had not much time to balance the matter; for on the very next\nday, Walter received from Mr Carker the Manager, the necessary\ncredentials for his passage and outfit, together with the information\nthat the Son and Heir would sail in a fortnight, or within a day or\ntwo afterwards at latest. In the hurry of preparation: which Walter\npurposely enhanced as much as possible: the old man lost what little\nselfpossession he ever had; and so the time of departure drew on\nrapidly.\n\nThe Captain, who did not fail to make himself acquainted with all\nthat passed, through inquiries of Walter from day to day, found the\ntime still tending on towards his going away, without any occasion\noffering itself, or seeming likely to offer itself, for a better\nunderstanding of his position. It was after much consideration of this\nfact, and much pondering over such an unfortunate combination of\ncircumstances, that a bright idea occurred to the Captain. Suppose he\nmade a call on Mr Carker, and tried to find out from him how the land\nreally lay!\n\nCaptain Cuttle liked this idea very much. It came upon him in a\nmoment of inspiration, as he was smoking an early pipe in Brig Place\nafter breakfast; and it was worthy of the tobacco. It would quiet his\nconscience, which was an honest one, and was made a little uneasy by\nwhat Walter had confided to him, and what Sol Gills had said; and it\nwould be a deep, shrewd act of friendship. He would sound Mr Carker\ncarefully, and say much or little, just as he read that gentleman's\ncharacter, and discovered that they got on well together or the\nreverse.\n\nAccordingly, without the fear of Walter before his eyes (who he\nknew was at home packing), Captain Cuttle again assumed his\nankle-jacks and mourning brooch, and issued forth on this second\nexpedition. He purchased no propitiatory nosegay on the present\noccasion, as he was going to a place of business; but he put a small\nsunflower in his button-hole to give himself an agreeable relish of\nthe country; and with this, and the knobby stick, and the glazed hat,\nbore down upon the offices of Dombey and Son.\n\nAfter taking a glass of warm rum-and-water at a tavern close by, to\ncollect his thoughts, the Captain made a rush down the court, lest its\ngood effects should evaporate, and appeared suddenly to Mr Perch.\n\n'Matey,' said the Captain, in persuasive accents. 'One of your\nGovernors is named Carker.' Mr Perch admitted it; but gave him to\nunderstand, as in official duty bound, that all his Governors were\nengaged, and never expected to be disengaged any more.\n\n'Look'ee here, mate,' said the Captain in his ear; 'my name's\nCap'en Cuttle.'\n\nThe Captain would have hooked Perch gently to him, but Mr Perch\neluded the attempt; not so much in design, as in starting at the\nsudden thought that such a weapon unexpectedly exhibited to Mrs Perch\nmight, in her then condition, be destructive to that lady's hopes.\n\n'If you'll be so good as just report Cap'en Cuttle here, when you\nget a chance,' said the Captain, 'I'll wait.'\n\nSaying which, the Captain took his seat on Mr Perch's bracket, and\ndrawing out his handkerchief from the crown of the glazed hat which he\njammed between his knees (without injury to its shape, for nothing\nhuman could bend it), rubbed his head well all over, and appeared\nrefreshed. He subsequently arranged his hair with his hook, and sat\nlooking round the office, contemplating the clerks with a serene\nrespect.\n\nThe Captain's equanimity was so impenetrable, and he was altogether\nso mysterious a being, that Perch the messenger was daunted.\n\n'What name was it you said?' asked Mr Perch, bending down over him\nas he sat on the bracket.\n\n'Cap'en,' in a deep hoarse whisper.\n\n'Yes,' said Mr Perch, keeping time with his head.\n\n'Cuttle.'\n\n'Oh!' said Mr Perch, in the same tone, for he caught it, and\ncouldn't help it; the Captain, in his diplomacy, was so impressive.\n'I'll see if he's disengaged now. I don't know. Perhaps he may be for\na minute.'\n\n'Ay, ay, my lad, I won't detain him longer than a minute,' said the\nCaptain, nodding with all the weighty importance that he felt within\nhim. Perch, soon returning, said, 'Will Captain Cuttle walk this way?'\n\nMr Carker the Manager, standing on the hearth-rug before the empty\nfireplace, which was ornamented with a castellated sheet of brown\npaper, looked at the Captain as he came in, with no very special\nencouragement.\n\n'Mr Carker?' said Captain Cuttle.\n\n'I believe so,' said Mr Carker, showing all his teeth.\n\nThe Captain liked his answering with a smile; it looked pleasant.\n'You see,' began the Captain, rolling his eyes slowly round the little\nroom, and taking in as much of it as his shirt-collar permitted; 'I'm\na seafaring man myself, Mr Carker, and Wal'r, as is on your books\nhere, is almost a son of mine.'\n\n'Walter Gay?' said Mr Carker, showing all his teeth again.\n\n'Wal'r Gay it is,' replied the Captain, 'right!' The Captain's\nmanner expressed a warm approval of Mr Carker's quickness of\nperception. 'I'm a intimate friend of his and his Uncle's. Perhaps,'\nsaid the Captain, 'you may have heard your head Governor mention my\nname? - Captain Cuttle.'\n\n'No!' said Mr Carker, with a still wider demonstration than before.\n\n'Well,' resumed the Captain, 'I've the pleasure of his\nacquaintance. I waited upon him down on the Sussex coast there, with\nmy young friend Wal'r, when - in short, when there was a little\naccommodation wanted.' The Captain nodded his head in a manner that\nwas at once comfortable, easy, and expressive. 'You remember, I\ndaresay?'\n\n'I think,' said Mr Carker, 'I had the honour of arranging the\nbusiness.'\n\n'To be sure!' returned the Captain. 'Right again! you had. Now I've\ntook the liberty of coming here -\n\n'Won't you sit down?' said Mr Carker, smiling.\n\n'Thank'ee,' returned the Captain, availing himself of the offer. 'A\nman does get more way upon himself, perhaps, in his conversation, when\nhe sits down. Won't you take a cheer yourself?'\n\n'No thank you,' said the Manager, standing, perhaps from the force\nof winter habit, with his back against the chimney-piece, and looking\ndown upon the Captain with an eye in every tooth and gum. 'You have\ntaken the liberty, you were going to say - though it's none - '\n\n'Thank'ee kindly, my lad,' returned the Captain: 'of coming here,\non account of my friend Wal'r. Sol Gills, his Uncle, is a man of\nscience, and in science he may be considered a clipper; but he ain't\nwhat I should altogether call a able seaman - not man of practice.\nWal'r is as trim a lad as ever stepped; but he's a little down by the\nhead in one respect, and that is, modesty. Now what I should wish to\nput to you,' said the Captain, lowering his voice, and speaking in a\nkind of confidential growl, 'in a friendly way, entirely between you\nand me, and for my own private reckoning, 'till your head Governor has\nwore round a bit, and I can come alongside of him, is this - Is\neverything right and comfortable here, and is Wal'r out'ard bound with\na pretty fair wind?'\n\n'What do you think now, Captain Cuttle?' returned Carker, gathering\nup his skirts and settling himself in his position. 'You are a\npractical man; what do you think?'\n\nThe acuteness and the significance of the Captain's eye as he\ncocked it in reply, no words short of those unutterable Chinese words\nbefore referred to could describe.\n\n'Come!' said the Captain, unspeakably encouraged, 'what do you say?\nAm I right or wrong?'\n\nSo much had the Captain expressed in his eye, emboldened and\nincited by Mr Carker's smiling urbanity, that he felt himself in as\nfair a condition to put the question, as if he had expressed his\nsentiments with the utmost elaboration.\n\n'Right,' said Mr Carker, 'I have no doubt.'\n\n'Out'ard bound with fair weather, then, I say,' cried Captain\nCuttle.\n\nMr Carker smiled assent.\n\n'Wind right astarn, and plenty of it,' pursued the Captain.\n\nMr Carker smiled assent again.\n\n'Ay, ay!' said Captain Cuttle, greatly relieved and pleased. 'I\nknow'd how she headed, well enough; I told Wal'r so. Thank'ee,\nthank'ee.'\n\n'Gay has brilliant prospects,' observed Mr Carker, stretching his\nmouth wider yet: 'all the world before him.'\n\n'All the world and his wife too, as the saying is,' returned the\ndelighted Captain.\n\nAt the word 'wife' (which he had uttered without design), the\nCaptain stopped, cocked his eye again, and putting the glazed hat on\nthe top of the knobby stick, gave it a twirl, and looked sideways at\nhis always smiling friend.\n\n'I'd bet a gill of old Jamaica,' said the Captain, eyeing him\nattentively, 'that I know what you're a smiling at.'\n\nMr Carker took his cue, and smiled the more.\n\n'It goes no farther?' said the Captain, making a poke at the door\nwith the knobby stick to assure himself that it was shut.\n\n'Not an inch,' said Mr Carker.\n\n'You're thinking of a capital F perhaps?' said the Captain.\n\nMr Carker didn't deny it.\n\n'Anything about a L,' said the Captain, 'or a O?'\n\nMr Carker still smiled.\n\n'Am I right, again?' inquired the Captain in a whisper, with the\nscarlet circle on his forehead swelling in his triumphant joy.\n\nMr Carker, in reply, still smiling, and now nodding assent, Captain\nCuttle rose and squeezed him by the hand, assuring him, warmly, that\nthey were on the same tack, and that as for him (Cuttle) he had laid\nhis course that way all along. 'He know'd her first,' said the\nCaptain, with all the secrecy and gravity that the subject demanded,\n'in an uncommon manner - you remember his finding her in the street\nwhen she was a'most a babby - he has liked her ever since, and she\nhim, as much as two youngsters can. We've always said, Sol Gills and\nme, that they was cut out for each other.'\n\nA cat, or a monkey, or a hyena, or a death's-head, could not have\nshown the Captain more teeth at one time, than Mr Carker showed him at\nthis period of their interview.\n\n'There's a general indraught that way,' observed the happy Captain.\n'Wind and water sets in that direction, you see. Look at his being\npresent t'other day!'\n\n'Most favourable to his hopes,' said Mr Carker.\n\n'Look at his being towed along in the wake of that day!' pursued\nthe Captain. 'Why what can cut him adrift now?'\n\n'Nothing,' replied Mr Carker.\n\n'You're right again,' returned the Captain, giving his hand another\nsqueeze. 'Nothing it is. So! steady! There's a son gone: pretty little\ncreetur. Ain't there?'\n\n'Yes, there's a son gone,' said the acquiescent Carker.\n\n'Pass the word, and there's another ready for you,' quoth the\nCaptain. 'Nevy of a scientific Uncle! Nevy of Sol Gills! Wal'r! Wal'r,\nas is already in your business! And' - said the Captain, rising\ngradually to a quotation he was preparing for a final burst, 'who -\ncomes from Sol Gills's daily, to your business, and your buzzums.' The\nCaptain's complacency as he gently jogged Mr Carker with his elbow, on\nconcluding each of the foregoing short sentences, could be surpassed\nby nothing but the exultation with which he fell back and eyed him\nwhen he had finished this brilliant display of eloquence and sagacity;\nhis great blue waistcoat heaving with the throes of such a\nmasterpiece, and his nose in a state of violent inflammation from the\nsame cause.\n\n'Am I right?' said the Captain.\n\n'Captain Cuttle,' said Mr Carker, bending down at the knees, for a\nmoment, in an odd manner, as if he were falling together to hug the\nwhole of himself at once, 'your views in reference to Walter Gay are\nthoroughly and accurately right. I understand that we speak together\nin confidence.\n\n'Honour!' interposed the Captain. 'Not a word.'\n\n'To him or anyone?' pursued the Manager.\n\nCaptain Cuttle frowned and shook his head.\n\n'But merely for your own satisfaction and guidance - and guidance,\nof course,' repeated Mr Carker, 'with a view to your future\nproceedings.'\n\n'Thank'ee kindly, I am sure,' said the Captain, listening with\ngreat attention.\n\n'I have no hesitation in saying, that's the fact. You have hit the\nprobabilities exactly.'\n\n'And with regard to your head Governor,' said the Captain, 'why an\ninterview had better come about nat'ral between us. There's time\nenough.'\n\nMr Carker, with his mouth from ear to ear, repeated, 'Time enough.'\nNot articulating the words, but bowing his head affably, and forming\nthem with his tongue and lips.\n\n'And as I know - it's what I always said- that Wal'r's in a way to\nmake his fortune,' said the Captain.\n\n'To make his fortune,' Mr Carker repeated, in the same dumb manner.\n\n'And as Wal'r's going on this little voyage is, as I may say, in\nhis day's work, and a part of his general expectations here,' said the\nCaptain.\n\n'Of his general expectations here,' assented Mr Carker, dumbly as\nbefore.\n\n'Why, so long as I know that,' pursued the Captain, 'there's no\nhurry, and my mind's at ease.\n\nMr Carker still blandly assenting in the same voiceless manner,\nCaptain Cuttle was strongly confirmed in his opinion that he was one\nof the most agreeable men he had ever met, and that even Mr Dombey\nmight improve himself on such a model. With great heartiness,\ntherefore, the Captain once again extended his enormous hand (not\nunlike an old block in colour), and gave him a grip that left upon his\nsmoother flesh a proof impression of the chinks and crevices with\nwhich the Captain's palm was liberally tattooed.\n\n'Farewell!' said the Captain. 'I ain't a man of many words, but I\ntake it very kind of you to be so friendly, and above-board. You'll\nexcuse me if I've been at all intruding, will you?' said the Captain.\n\n'Not at all,' returned the other.\n\n'Thank'ee. My berth ain't very roomy,' said the Captain, turning\nback again, 'but it's tolerably snug; and if you was to find yourself\nnear Brig Place, number nine, at any time - will you make a note of\nit? - and would come upstairs, without minding what was said by the\nperson at the door, I should be proud to see you.\n\nWith that hospitable invitation, the Captain said 'Good day!' and\nwalked out and shut the door; leaving Mr Carker still reclining\nagainst the chimney-piece. In whose sly look and watchful manner; in\nwhose false mouth, stretched but not laughing; in whose spotless\ncravat and very whiskers; even in whose silent passing of his soft\nhand over his white linen and his smooth face; there was something\ndesperately cat-like.\n\nThe unconscious Captain walked out in a state of self-glorification\nthat imparted quite a new cut to the broad blue suit. 'Stand by, Ned!'\nsaid the Captain to himself. 'You've done a little business for the\nyoungsters today, my lad!'\n\nIn his exultation, and in his familiarity, present and prospective,\nwith the House, the Captain, when he reached the outer office, could\nnot refrain from rallying Mr Perch a little, and asking him whether he\nthought everybody was still engaged. But not to be bitter on a man who\nhad done his duty, the Captain whispered in his ear, that if he felt\ndisposed for a glass of rum-and-water, and would follow, he would be\nhappy to bestow the same upon him.\n\nBefore leaving the premises, the Captain, somewhat to the\nastonishment of the clerks, looked round from a central point of view,\nand took a general survey of the officers part and parcel of a project\nin which his young friend was nearly interested. The strong-room\nexcited his especial admiration; but, that he might not appear too\nparticular, he limited himself to an approving glance, and, with a\ngraceful recognition of the clerks as a body, that was full of\npoliteness and patronage, passed out into the court. Being promptly\njoined by Mr Perch, he conveyed that gentleman to the tavern, and\nfulfilled his pledge - hastily, for Perch's time was precious.\n\n'I'll give you for a toast,' said the Captain, 'Wal'r!'\n\n'Who?' submitted Mr Perch.\n\n'Wal'r!' repeated the Captain, in a voice of thunder.\n\nMr Perch, who seemed to remember having heard in infancy that there\nwas once a poet of that name, made no objection; but he was much\nastonished at the Captain's coming into the City to propose a poet;\nindeed, if he had proposed to put a poet's statue up - say\nShakespeare's for example - in a civic thoroughfare, he could hardly\nhave done a greater outrage to Mr Perch's experience. On the whole, he\nwas such a mysterious and incomprehensible character, that Mr Perch\ndecided not to mention him to Mrs Perch at all, in case of giving rise\nto any disagreeable consequences.\n\nMysterious and incomprehensible, the Captain, with that lively\nsense upon him of having done a little business for the youngsters,\nremained all day, even to his most intimate friends; and but that\nWalter attributed his winks and grins, and other such pantomimic\nreliefs of himself, to his satisfaction in the success of their\ninnocent deception upon old Sol Gills, he would assuredly have\nbetrayed himself before night. As it was, however, he kept his own\nsecret; and went home late from the Instrument-maker's house, wearing\nthe glazed hat so much on one side, and carrying such a beaming\nexpression in his eyes, that Mrs MacStinger (who might have been\nbrought up at Doctor Blimber's, she was such a Roman matron) fortified\nherself, at the first glimpse of him, behind the open street door, and\nrefused to come out to the contemplation of her blessed infants, until\nhe was securely lodged in his own room.\n\n\n\nCHAPTER 18.\n\nFather and Daughter\n\n\n\nThere is a hush through Mr Dombey's house. Servants gliding up and\ndown stairs rustle, but make no sound of footsteps. They talk together\nconstantly, and sit long at meals, making much of their meat and\ndrink, and enjoying themselves after a grim unholy fashion. Mrs\nWickam, with her eyes suffused with tears, relates melancholy\nanecdotes; and tells them how she always said at Mrs Pipchin's that it\nwould be so, and takes more table-ale than usual, and is very sorry\nbut sociable. Cook's state of mind is similar. She promises a little\nfry for supper, and struggles about equally against her feelings and\nthe onions. Towlinson begins to think there's a fate in it, and wants\nto know if anybody can tell him ofany good that ever came of living in\na corner house. It seems to all of them as having happened a long time\nago; though yet the child lies, calm and beautiful, upon his little\nbed.\n\nAfter dark there come some visitors - noiseless visitors, with\nshoes of felt - who have been there before; and with them comes that\nbed of rest which is so strange a one for infant sleepers. All this\ntime, the bereaved father has not been seen even by his attendant; for\nhe sits in an inner corner of his own dark room when anyone is there,\nand never seems to move at other times, except to pace it to and fro.\nBut in the morning it is whispered among the household that he was\nheard to go upstairs in the dead night, and that he stayed there - in\nthe room - until the sun was shining.\n\nAt the offices in the City, the ground-glass windows are made more\ndim by shutters; and while the lighted lamps upon the desks are half\nextinguished by the day that wanders in, the day is half extinguished\nby the lamps, and an unusual gloom prevails. There is not much\nbusiness done. The clerks are indisposed to work; and they make\nassignations to eat chops in the afternoon, and go up the river.\nPerch, the messenger, stays long upon his errands; and finds himself\nin bars of public-houses, invited thither by friends, and holding\nforth on the uncertainty of human affairs. He goes home to Ball's Pond\nearlier in the evening than usual, and treats Mrs Perch to a veal\ncutlet and Scotch ale. Mr Carker the Manager treats no one; neither is\nhe treated; but alone in his own room he shows his teeth all day; and\nit would seem that there is something gone from Mr Carker's path -\nsome obstacle removed - which clears his way before him.\n\nNow the rosy children living opposite to Mr Dombey's house, peep\nfrom their nursery windows down into the street; for there are four\nblack horses at his door, with feathers on their heads; and feathers\ntremble on the carriage that they draw; and these, and an array of men\nwith scarves and staves, attract a crowd. The juggler who was going to\ntwirl the basin, puts his loose coat on again over his fine dress; and\nhis trudging wife, one-sided with her heavy baby in her arms, loiters\nto see the company come out. But closer to her dingy breast she\npresses her baby, when the burden that is so easily carried is borne\nforth; and the youngest of the rosy children at the high window\nopposite, needs no restraining hand to check her in her glee, when,\npointing with her dimpled finger, she looks into her nurse's face, and\nasks 'What's that?'\n\nAnd now, among the knot of servants dressed in mourning, and the\nweeping women, Mr Dombey passes through the hall to the other carriage\nthat is waiting to receive him. He is not 'brought down,' these\nobservers think, by sorrow and distress of mind. His walk is as erect,\nhis bearing is as stiff as ever it has been. He hides his face behind\nno handkerchief, and looks before him. But that his face is something\nsunk and rigid, and is pale, it bears the same expression as of old.\nHe takes his place within the carriage, and three other gentlemen\nfollow. Then the grand funeral moves slowly down the street. The\nfeathers are yet nodding in the distance, when the juggler has the\nbasin spinning on a cane, and has the same crowd to admire it. But the\njuggler's wife is less alert than usual with the money-box, for a\nchild's burial has set her thinking that perhaps the baby underneath\nher shabby shawl may not grow up to be a man, and wear a sky-blue\nfillet round his head, and salmon-coloured worsted drawers, and tumble\nin the mud.\n\nThe feathers wind their gloomy way along the streets, and come\nwithin the sound of a church bell. In this same church, the pretty boy\nreceived all that will soon be left of him on earth - a name. All of\nhim that is dead, they lay there, near the perishable substance of his\nmother. It is well. Their ashes lie where Florence in her walks - oh\nlonely, lonely walks! - may pass them any day.\n\nThe service over, and the clergyman withdrawn, Mr Dombey looks\nround, demanding in a low voice, whether the person who has been\nrequested to attend to receive instructions for the tablet, is there?\n\nSomeone comes forward, and says 'Yes.'\n\nMr Dombey intimates where he would have it placed; and shows him,\nwith his hand upon the wall, the shape and size; and how it is to\nfollow the memorial to the mother. Then, with his pencil, he writes\nout the inscription, and gives it to him: adding, 'I wish to have it\ndone at once.\n\n'It shall be done immediately, Sir.'\n\n'There is really nothing to inscribe but name and age, you see.'\n\nThe man bows, glancing at the paper, but appears to hesitate. Mr\nDombey not observing his hesitation, turns away, and leads towards the\nporch.\n\n'I beg your pardon, Sir;' a touch falls gently on his mourning\ncloak; 'but as you wish it done immediately, and it may be put in hand\nwhen I get back - '\n\n'Well?'\n\n'Will you be so good as read it over again? I think there's a\nmistake.'\n\n'Where?'\n\nThe statuary gives him back the paper, and points out, with his\npocket rule, the words, 'beloved and only child.'\n\n'It should be, \"son,\" I think, Sir?'\n\n'You are right. Of course. Make the correction.'\n\nThe father, with a hastier step, pursues his way to the coach. When\nthe other three, who follow closely, take their seats, his face is\nhidden for the first time - shaded by his cloak. Nor do they see it\nany more that day. He alights first, and passes immediately into his\nown room. The other mourners (who are only Mr Chick, and two of the\nmedical attendants) proceed upstairs to the drawing-room, to be\nreceived by Mrs Chick and Miss Tox. And what the face is, in the\nshut-up chamber underneath: or what the thoughts are: what the heart\nis, what the contest or the suffering: no one knows.\n\nThe chief thing that they know, below stairs, in the kitchen, is\nthat 'it seems like Sunday.' They can hardly persuade themselves but\nthat there is something unbecoming, if not wicked, in the conduct of\nthe people out of doors, who pursue their ordinary occupations, and\nwear their everyday attire. It is quite a novelty to have the blinds\nup, and the shutters open; and they make themselves dismally\ncomfortable over bottles of wine, which are freely broached as on a\nfestival. They are much inclined to moralise. Mr Towlinson proposes\nwith a sigh, 'Amendment to us all!' for which, as Cook says with\nanother sigh, 'There's room enough, God knows.' In the evening, Mrs\nChick and Miss Tox take to needlework again. In the evening also, Mr\nTowlinson goes out to take the air, accompanied by the housemaid, who\nhas not yet tried her mourning bonnet. They are very tender to each\nother at dusky street-corners, and Towlinson has visions of leading an\naltered and blameless existence as a serious greengrocer in Oxford\nMarket.\n\nThere is sounder sleep and deeper rest in Mr Dombey's house\ntonight, than there has been for many nights. The morning sun awakens\nthe old household, settled down once more in their old ways. The rosy\nchildren opposite run past with hoops. There is a splendid wedding in\nthe church. The juggler's wife is active with the money-box in another\nquarter of the town. The mason sings and whistles as he chips out\nP-A-U-L in the marble slab before him.\n\nAnd can it be that in a world so full and busy, the loss of one\nweak creature makes a void in any heart, so wide and deep that nothing\nbut the width and depth of vast eternity can fill it up! Florence, in\nher innocent affliction, might have answered, 'Oh my brother, oh my\ndearly loved and loving brother! Only friend and companion of my\nslighted childhood! Could any less idea shed the light already dawning\non your early grave, or give birth to the softened sorrow that is\nspringing into life beneath this rain of tears!'\n\n'My dear child,' said Mrs Chick, who held it as a duty incumbent on\nher, to improve the occasion, 'when you are as old as I am - '\n\n'Which will be the prime of life,' observed Miss Tox.\n\n'You will then,' pursued Mrs Chick, gently squeezing Miss Tox's\nhand in acknowledgment of her friendly remark, 'you will then know\nthat all grief is unavailing, and that it is our duty to submit.'\n\n'I will try, dear aunt I do try,' answered Florence, sobbing.\n\n'I am glad to hear it,' said Mrs Chick, 'because; my love, as our\ndear Miss Tox - of whose sound sense and excellent judgment, there\ncannot possibly be two opinions - '\n\n'My dear Louisa, I shall really be proud, soon,' said Miss Tox\n\n- 'will tell you, and confirm by her experience,' pursued Mrs\nChick, 'we are called upon on all occasions to make an effort It is\nrequired of us. If any - my dear,' turning to Miss Tox, 'I want a\nword. Mis- Mis-'\n\n'Demeanour?' suggested Miss Tox.\n\n'No, no, no,' said Mrs Chic 'How can you! Goodness me, it's on, the\nend of my tongue. Mis-'\n\nPlaced affection?' suggested Miss Tox, timidly.\n\n'Good gracious, Lucretia!' returned Mrs Chick 'How very monstrous!\nMisanthrope, is the word I want. The idea! Misplaced affection! I say,\nif any misanthrope were to put, in my presence, the question \"Why were\nwe born?\" I should reply, \"To make an effort\"'\n\n'Very good indeed,' said Miss Tox, much impressed by the\noriginality of the sentiment 'Very good.'\n\n'Unhappily,' pursued Mrs Chick, 'we have a warning under our own\neyes. We have but too much reason to suppose, my dear child, that if\nan effort had been made in time, in this family, a train of the most\ntrying and distressing circumstances might have been avoided. Nothing\nshall ever persuade me,' observed the good matron, with a resolute\nair, 'but that if that effort had been made by poor dear Fanny, the\npoor dear darling child would at least have had a stronger\nconstitution.'\n\nMrs Chick abandoned herself to her feelings for half a moment; but,\nas a practical illustration of her doctrine, brought herself up short,\nin the middle of a sob, and went on again.\n\n'Therefore, Florence, pray let us see that you have some strength\nof mind, and do not selfishly aggravate the distress in which your\npoor Papa is plunged.'\n\n'Dear aunt!' said Florence, kneeling quickly down before her, that\nshe might the better and more earnestly look into her face. 'Tell me\nmore about Papa. Pray tell me about him! Is he quite heartbroken?'\n\nMiss Tox was of a tender nature, and there was something in this\nappeal that moved her very much. Whether she saw it in a succession,\non the part of the neglected child, to the affectionate concern so\noften expressed by her dead brother - or a love that sought to twine\nitself about the heart that had loved him, and that could not bear to\nbe shut out from sympathy with such a sorrow, in such sad community of\nlove and grief - or whether the only recognised the earnest and\ndevoted spirit which, although discarded and repulsed, was wrung with\ntenderness long unreturned, and in the waste and solitude of this\nbereavement cried to him to seek a comfort in it, and to give some, by\nsome small response - whatever may have been her understanding of it,\nit moved Miss Tox. For the moment she forgot the majesty of Mrs Chick,\nand, patting Florence hastily on the cheek, turned aside and suffered\nthe tears to gush from her eyes, without waiting for a lead from that\nwise matron.\n\nMrs Chick herself lost, for a moment, the presence of mind on which\nshe so much prided herself; and remained mute, looking on the\nbeautiful young face that had so long, so steadily, and patiently,\nbeen turned towards the little bed. But recovering her voice - which\nwas synonymous with her presence of mind, indeed they were one and the\nsame thing - she replied with dignity:\n\n'Florence, my dear child, your poor Papa is peculiar at times; and\nto question me about him, is to question me upon a subject which I\nreally do not pretend to understand. I believe I have as much\ninfluence with your Papa as anybody has. Still, all I can say is, that\nhe has said very little to me; and that I have only seen him once or\ntwice for a minute at a time, and indeed have hardly seen him then,\nfor his room has been dark. I have said to your Papa, \"Paul!\" - that\nis the exact expression I used - \"Paul! why do you not take something\nstimulating?\" Your Papa's reply has always been, \"Louisa, have the\ngoodness to leave me. I want nothing. I am better by myself.\" If I was\nto be put upon my oath to-morrow, Lucretia, before a magistrate,' said\nMrs Chick, 'I have no doubt I could venture to swear to those\nidentical words.'\n\nMiss Tox expressed her admiration by saying, 'My Louisa is ever\nmethodical!'\n\n'In short, Florence,' resumed her aunt, 'literally nothing has\npassed between your poor Papa and myself, until to-day; when I\nmentioned to your Papa that Sir Barnet and Lady Skettles had written\nexceedingly kind notes - our sweet boy! Lady Skettles loved him like a\n- where's my pocket handkerchief?'\n\nMiss Tox produced one.\n\n'Exceedingly kind notes, proposing that you should visit them for\nchange of scene. Mentioning to your Papa that I thought Miss Tox and\nmyself might now go home (in which he quite agreed), I inquired if he\nhad any objection to your accepting this invitation. He said, \"No,\nLouisa, not the least!\"' Florence raised her tearful eye\n\n'At the same time, if you would prefer staying here, Florence, to\npaying this visit at present, or to going home with me - '\n\n'I should much prefer it, aunt,' was the faint rejoinder.\n\n'Why then, child,'said Mrs Chick, 'you can. It's a strange choice,\nI must say. But you always were strange. Anybody else at your time of\nlife, and after what has passed - my dear Miss Tox, I have lost my\npocket handkerchief again - would be glad to leave here, one would\nsuppose.\n\n'I should not like to feel,' said Florence, 'as if the house was\navoided. I should not like to think that the - his - the rooms\nupstairs were quite empty and dreary, aunt. I would rather stay here,\nfor the present. Oh my brother! oh my brother!'\n\nIt was a natural emotion, not to be suppressed; and it would make\nway even between the fingers of the hands with which she covered up\nher face. The overcharged and heavy-laden breast must some times have\nthat vent, or the poor wounded solitary heart within it would have\nfluttered like a bird with broken wings, and sunk down in the dust'\n\n'Well, child!' said Mrs Chick, after a pause 'I wouldn't on any\naccount say anything unkind to you, and that I'm sure you know. You\nwill remain here, then, and do exactly as you like. No one will\ninterfere with you, Florence, or wish to interfere with you, I'm sure.\n\nFlorence shook her head in sad assent'\n\n'I had no sooner begun to advise your poor Papa that he really\nought to seek some distraction and restoration in a temporary change,'\nsaid Mrs Chick, 'than he told me he had already formed the intention\nof going into the country for a short time. I'm sure I hope he'll go\nvery soon. He can't go too soon. But I suppose there are some\narrangements connected with his private papers and so forth,\nconsequent on the affliction that has tried us all so much - I can't\nthink what's become of mine: Lucretia, lend me yours, my dear - that\nmay occupy him for one or two evenings in his own room. Your Papa's a\nDombey, child, if ever there was one,' said Mrs Chick, drying both her\neyes at once with great care on opposite corners of Miss Tox's\nhandkerchief 'He'll make an effort. There's no fear of him.'\n\n'Is there nothing, aunt,' said Florence, trembling, 'I might do to\n-\n\n'Lord, my dear child,' interposed Mrs Chick, hastily, 'what are you\ntalking about? If your Papa said to Me - I have given you his exact\nwords, \"Louisa, I want nothing; I am better by myself\" - what do you\nthink he'd say to you? You mustn't show yourself to him, child. Don't\ndream of such a thing.'\n\n'Aunt,' said Florence, 'I will go and lie down on my bed.'\n\nMrs Chick approved of this resolution, and dismissed her with a\nkiss. But Miss Tox, on a faint pretence of looking for the mislaid\nhandkerchief, went upstairs after her; and tried in a few stolen\nminutes to comfort her, in spite of great discouragement from Susan\nNipper. For Miss Nipper, in her burning zeal, disparaged Miss Tox as a\ncrocodile; yet her sympathy seemed genuine, and had at least the\nvantage-ground of disinterestedness - there was little favour to be\nwon by it.\n\nAnd was there no one nearer and dearer than Susan, to uphold the\nstriving heart in its anguish? Was there no other neck to clasp; no\nother face to turn to? no one else to say a soothing word to such deep\nsorrow? Was Florence so alone in the bleak world that nothing else\nremained to her? Nothing. Stricken motherless and brotherless at once\n- for in the loss of little Paul, that first and greatest loss fell\nheavily upon her - this was the only help she had. Oh, who can tell\nhow much she needed help at first!\n\nAt first, when the house subsided into its accustomed course, and\nthey had all gone away, except the servants, and her father shut up in\nhis own rooms, Florence could do nothing but weep, and wander up and\ndown, and sometimes, in a sudden pang of desolate remembrance, fly to\nher own chamber, wring her hands, lay her face down on her bed, and\nknow no consolation: nothing but the bitterness and cruelty of grief.\nThis commonly ensued upon the recognition of some spot or object very\ntenderly dated with him; and it made the ale house, at first, a place\nof agony.\n\nBut it is not in the nature of pure love to burn so fiercely and\nunkindly long. The flame that in its grosser composition has the taint\nof earth may prey upon the breast that gives it shelter; but the fire\nfrom heaven is as gentle in the heart, as when it rested on the heads\nof the assembled twelve, and showed each man his brother, brightened\nand unhurt. The image conjured up, there soon returned the placid\nface, the softened voice, the loving looks, the quiet trustfulness and\npeace; and Florence, though she wept still, wept more tranquilly, and\ncourted the remembrance.\n\nIt was not very long before the golden water, dancing on the wall,\nin the old place, at the old serene time, had her calm eye fixed upon\nit as it ebbed away. It was not very long before that room again knew\nher, often; sitting there alone, as patient and as mild as when she\nhad watched beside the little bed. When any sharp sense of its being\nempty smote upon her, she could kneel beside it, and pray GOD - it was\nthe pouring out of her full heart - to let one angel love her and\nremember her.\n\nIt was not very long before, in the midst of the dismal house so\nwide and dreary, her low voice in the twilight, slowly and stopping\nsometimes, touched the old air to which he had so often listened, with\nhis drooping head upon her arm. And after that, and when it was quite\ndark, a little strain of music trembled in the room: so softly played\nand sung, that it was more lIke the mournful recollection of what she\nhad done at his request on that last night, than the reality repeated.\nBut it was repeated, often - very often, in the shadowy solitude; and\nbroken murmurs of the strain still trembled on the keys, when the\nsweet voice was hushed in tears.\n\nThus she gained heart to look upon the work with which her fingers\nhad been busy by his side on the sea-shore; and thus it was not very\nlong before she took to it again - with something of a human love for\nit, as if it had been sentient and had known him; and, sitting in a\nwindow, near her mother's picture, in the unused room so long\ndeserted, wore away the thoughtful hours.\n\nWhy did the dark eyes turn so often from this work to where the\nrosy children lived? They were not immediate!y suggestive of her loss;\nfor they were all girls: four little sisters. But they were motherless\nlike her - and had a father.\n\nIt was easy to know when he had gone out and was expected home, for\nthe elder child was always dressed and waiting for him at the\ndrawing-room window, or n the balcony; and when he appeared, her\nexpectant face lighted up with joy, while the others at the high\nwindow, and always on the watch too, clapped their hands, and drummed\nthem on the sill, and called to him. The elder child would come down\nto the hall, and put her hand in his, and lead him up the stairs; and\nFlorence would see her afterwards sitting by his side, or on his knee,\nor hanging coaxingly about his neck and talking to him: and though\nthey were always gay together, he would often watch her face as if he\nthought her like her mother that was dead. Florence would sometimes\nlook no more at this, and bursting into tears would hide behind the\ncurtain as if she were frightened, or would hurry from the window. Yet\nshe could not help returning; and her work would soon fall unheeded\nfrom her hands again.\n\nIt was the house that had been empty, years ago. It had remained so\nfor a long time. At last, and while she had been away from home, this\nfamily had taken it; and it was repaired and newly painted; and there\nwere birds and flowers about it; and it looked very different from its\nold self. But she never thought of the house. The children and their\nfather were all in all.\n\nWhen he had dined, she could see them, through the open windows, go\ndown with their governess or nurse, and cluster round the table; and\nin the still summer weather, the sound of their childish voices and\nclear laughter would come ringing across the street, into the drooping\nair of the room in which she sat. Then they would climb and clamber\nupstairs with him, and romp about him on the sofa, or group themselves\nat his knee, a very nosegay of little faces, while he seemed to tell\nthem some story. Or they would come running out into the balcony; and\nthen Florence would hide herself quickly, lest it should check them in\ntheir joy, to see her in her black dress, sitting there alone.\n\nThe elder child remained with her father when the rest had gone\naway, and made his tea for him - happy little house-keeper she was\nthen! - and sat conversing with him, sometimes at the window,\nsometimes in the room, until the candles came. He made her his\ncompanion, though she was some years younger than Florence; and she\ncould be as staid and pleasantly demure, with her little book or\nwork-box, as a woman. When they had candles, Florence from her own\ndark room was not afraid to look again. But when the time came for the\nchild to say 'Good-night, Papa,' and go to bed, Florence would sob and\ntremble as she raised her face to him, and could look no more.\n\nThough still she would turn, again and again, before going to bed\nherself from the simple air that had lulled him to rest so often, long\nago, and from the other low soft broken strain of music, back to that\nhouse. But that she ever thought of it, or watched it, was a secret\nwhich she kept within her own young breast.\n\nAnd did that breast of Florence - Florence, so ingenuous and true -\nso worthy of the love that he had borne her, and had whispered in his\nlast faint words - whose guileless heart was mirrored in the beauty of\nher face, and breathed in every accent of her gentle voice - did that\nyoung breast hold any other secret? Yes. One more.\n\nWhen no one in the house was stirring, and the lights were all\nextinguished, she would softly leave her own room, and with noiseless\nfeet descend the staircase, and approach her father's door. Against\nit, scarcely breathing, she would rest her face and head, and press\nher lips, in the yearning of her love. She crouched upon the cold\nstone floor outside it, every night, to listen even for his breath;\nand in her one absorbing wish to be allowed to show him some\naffection, to be a consolation to him, to win him over to the\nendurance of some tenderness from her, his solitary child, she would\nhave knelt down at his feet, if she had dared, in humble supplication.\n\nNo one knew it' No one thought of it. The door was ever closed, and\nhe shut up within. He went out once or twice, and it was said in the\nhouse that he was very soon going on his country journey; but he lived\nin those rooms, and lived alone, and never saw her, or inquired for\nher. Perhaps he did not even know that she was in the house.\n\nOne day, about a week after the funeral, Florence was sitting at\nher work, when Susan appeared, with a face half laughing and half\ncrying, to announce a visitor.\n\n'A visitor! To me, Susan!' said Florence, looking up in\nastonishment.\n\n'Well, it is a wonder, ain't it now, Miss Floy?' said Susan; 'but I\nwish you had a many visitors, I do, indeed, for you'd be all the\nbetter for it, and it's my opinion that the sooner you and me goes\neven to them old Skettleses, Miss, the better for both, I may not wish\nto live in crowds, Miss Floy, but still I'm not a oyster.'\n\nTo do Miss Nipper justice, she spoke more for her young mistress\nthan herself; and her face showed it.\n\n'But the visitor, Susan,' said Florence.\n\nSusan, with an hysterical explosion that was as much a laugh as a\nsob, and as much a sob as a laugh, answered,\n\n'Mr Toots!'\n\nThe smile that appeared on Florence's face passed from it in a\nmoment, and her eyes filled with tears. But at any rate it was a\nsmile, and that gave great satisfaction to Miss Nipper.\n\n'My own feelings exactly, Miss Floy,' said Susan, putting her apron\nto her eyes, and shaking her head. 'Immediately I see that Innocent in\nthe Hall, Miss Floy, I burst out laughing first, and then I choked.'\n\nSusan Nipper involuntarily proceeded to do the like again on the\nspot. In the meantime Mr Toots, who had come upstairs after her, all\nunconscious of the effect he produced, announced himself with his\nknuckles on the door, and walked in very brisKly.\n\n'How d'ye do, Miss Dombey?' said Mr Toots. 'I'm very well, I thank\nyou; how are you?'\n\nMr Toots - than whom there were few better fellows in the world,\nthough there may have been one or two brighter spirits - had\nlaboriously invented this long burst of discourse with the view of\nrelieving the feelings both of Florence and himself. But finding that\nhe had run through his property, as it were, in an injudicious manner,\nby squandering the whole before taking a chair, or before Florence had\nuttered a word, or before he had well got in at the door, he deemed it\nadvisable to begin again.\n\n'How d'ye do, Miss Dombey?' said Mr Toots. 'I'm very well, I thank\nyou; how are you?'\n\nFlorence gave him her hand, and said she was very well.\n\n'I'm very well indeed,' said Mr Toots, taking a chair. 'Very well\nindeed, I am. I don't remember,' said Mr Toots, after reflecting a\nlittle, 'that I was ever better, thank you.'\n\n'It's very kind of you to come,' said Florence, taking up her work,\n'I am very glad to see you.'\n\nMr Toots responded with a chuckle. Thinking that might be too\nlively, he corrected it with a sigh. Thinking that might be too\nmelancholy, he corrected it with a chuckle. Not thoroughly pleasing\nhimself with either mode of reply, he breathed hard.\n\n'You were very kind to my dear brother,' said Florence, obeying her\nown natural impulse to relieve him by saying so. 'He often talked to\nme about you.'\n\n'Oh it's of no consequence,' said Mr Toots hastily. 'Warm, ain't\nit?'\n\n'It is beautiful weather,' replied Florence.\n\n'It agrees with me!' said Mr Toots. 'I don't think I ever was so\nwell as I find myself at present, I'm obliged to you.\n\nAfter stating this curious and unexpected fact, Mr Toots fell into\na deep well of silence.\n\n'You have left Dr Blimber's, I think?' said Florence, trying to\nhelp him out.\n\n'I should hope so,' returned Mr Toots. And tumbled in again.\n\nHe remained at the bottom, apparently drowned, for at least ten\nminutes. At the expiration of that period, he suddenly floated, and\nsaid,\n\n'Well! Good morning, Miss Dombey.'\n\n'Are you going?' asked Florence, rising.\n\n'I don't know, though. No, not just at present,' said Mr Toots,\nsitting down again, most unexpectedly. 'The fact is - I say, Miss\nDombey!'\n\n'Don't be afraid to speak to me,' said Florence, with a quiet\nsmile, 'I should he very glad if you would talk about my brother.'\n\n'Would you, though?' retorted Mr Toots, with sympathy in every\nfibre of his otherwise expressionless face. 'Poor Dombey! I'm sure I\nnever thought that Burgess and Co. - fashionable tailors (but very\ndear), that we used to talk about - would make this suit of clothes\nfor such a purpose.' Mr Toots was dressed in mourning. 'Poor Dombey! I\nsay! Miss Dombey!' blubbered Toots.\n\n'Yes,' said Florence.\n\n'There's a friend he took to very much at last. I thought you'd\nlIke to have him, perhaps, as a sort of keepsake. You remember his\nremembering Diogenes?'\n\n'Oh yes! oh yes' cried Florence.\n\n'Poor Dombey! So do I,' said Mr Toots.\n\nMr Toots, seeing Florence in tears, had great difficulty in getting\nbeyond this point, and had nearly tumbled into the well again. But a\nchucKle saved him on the brink.\n\n'I say,' he proceeded, 'Miss Dombey! I could have had him stolen\nfor ten shillings, if they hadn't given him up: and I would: but they\nwere glad to get rid of him, I think. If you'd like to have him, he's\nat the door. I brought him on purpose for you. He ain't a lady's dog,\nyou know,' said Mr Toots, 'but you won't mind that, will you?'\n\nIn fact, Diogenes was at that moment, as they presently ascertained\nfrom looking down into the street, staring through the window of a\nhackney cabriolet, into which, for conveyance to that spot, he had\nbeen ensnared, on a false pretence of rats among the straw. Sooth to\nsay, he was as unlike a lady's dog as might be; and in his gruff\nanxiety to get out, presented an appearance sufficiently unpromising,\nas he gave short yelps out of one side of his mouth, and overbalancing\nhimself by the intensity of every one of those efforts, tumbled down\ninto the straw, and then sprung panting up again, putting out his\ntongue, as if he had come express to a Dispensary to be examined for\nhis health.\n\nBut though Diogenes was as ridiculous a dog as one would meet with\non a summer's day; a blundering, ill-favoured, clumsy, bullet-headed\ndog, continually acting on a wrong idea that there was an enemy in the\nneighbourhood, whom it was meritorious to bark at; and though he was\nfar from good-tempered, and certainly was not clever, and had hair all\nover his eyes, and a comic nose, and an inconsistent tail, and a gruff\nvoice; he was dearer to Florence, in virtue of that parting\nremembrance of him, and that request that he might be taken care of,\nthan the most valuable and beautiful of his kind. So dear, indeed, was\nthis same ugly Diogenes, and so welcome to her, that she took the\njewelled hand of Mr Toots and kissed it in her gratitude. And when\nDiogenes, released, came tearing up the stairs and bouncing into the\nroom (such a business as there was, first, to get him out of the\ncabriolet!), dived under all the furniture, and wound a long iron\nchain, that dangled from his neck, round legs of chairs and tables,\nand then tugged at it until his eyes became unnaturally visible, in\nconsequence of their nearly starting out of his head; and when he\ngrowled at Mr Toots, who affected familiarity; and went pell-mell at\nTowlinson, morally convinced that he was the enemy whom he had barked\nat round the corner all his life and had never seen yet; Florence was\nas pleased with him as if he had been a miracle of discretion.\n\nMr Toots was so overjoyed by the success of his present, and was so\ndelighted to see Florence bending down over Diogenes, smoothing his\ncoarse back with her little delicate hand - Diogenes graciously\nallowing it from the first moment of their acquaintance - that he felt\nit difficult to take leave, and would, no doubt, have been a much\nlonger time in making up his mind to do so, if he had not been\nassisted by Diogenes himself, who suddenly took it into his head to\nbay Mr Toots, and to make short runs at him with his mouth open. Not\nexactly seeing his way to the end of these demonstrations, and\nsensible that they placed the pantaloons constructed by the art of\nBurgess and Co. in jeopardy, Mr Toots, with chuckles, lapsed out at\nthe door: by which, after looking in again two or three times, without\nany object at all, and being on each occasion greeted with a fresh run\nfrom Diogenes, he finally took himself off and got away.\n\n'Come, then, Di! Dear Di! Make friends with your new mistress. Let\nus love each other, Di!'said Florence, fondling his shaggy head. And\nDi, the rough and gruff, as if his hairy hide were pervious to the\ntear that dropped upon it, and his dog's heart melted as it fell, put\nhis nose up to her face, and swore fidelity.\n\nDiogenes the man did not speak plainer to Alexander the Great than\nDiogenes the dog spoke to Florence.' He subscribed to the offer of his\nlittle mistress cheerfully, and devoted himself to her service. A\nbanquet was immediately provided for him in a corner; and when he had\neaten and drunk his fill, he went to the window where Florence was\nsitting, looking on, rose up on his hind legs, with his awkward fore\npaws on her shoulders, licked her face and hands, nestled his great\nhead against her heart, and wagged his tail till he was tired.\nFinally, Diogenes coiled himself up at her feet and went to sleep.\n\nAlthough Miss Nipper was nervous in regard of dogs, and felt it\nnecessary to come into the room with her skirts carefully collected\nabout her, as if she were crossing a brook on stepping-stones; also to\nutter little screams and stand up on chairs when Diogenes stretched\nhimself, she was in her own manner affected by the kindness of Mr\nToots, and could not see Florence so alive to the attachment and\nsociety of this rude friend of little Paul's, without some mental\ncomments thereupon that brought the water to her eyes. Mr Dombey, as a\npart of her reflections, may have been, in the association of ideas,\nconnected with the dog; but, at any rate, after observing Diogenes and\nhis mistress all the evening, and after exerting herself with much\ngood-will to provide Diogenes a bed in an ante-chamber outside his\nmistress's door, she said hurriedly to Florence, before leaving her\nfor the night:\n\n'Your Pa's a going off, Miss Floy, tomorrow morning.'\n\n'To-morrow morning, Susan?'\n\n'Yes, Miss; that's the orders. Early.'\n\n'Do you know,' asked Florence, without looking at her, 'where Papa\nis going, Susan?'\n\n'Not exactly, Miss. He's going to meet that precious Major first,\nand I must say if I was acquainted with any Major myself (which\nHeavens forbid), it shouldn't be a blue one!'\n\n'Hush, Susan!' urged Florence gently.\n\n'Well, Miss Floy,' returned Miss Nipper, who was full of burning\nindignation, and minded her stops even less than usual. 'I can't help\nit, blue he is, and while I was a Christian, although humble, I would\nhave natural-coloured friends, or none.'\n\nIt appeared from what she added and had gleaned downstairs, that\nMrs Chick had proposed the Major for Mr Dombey's companion, and that\nMr Dombey, after some hesitation, had invited him.\n\n'Talk of him being a change, indeed!' observed Miss Nipper to\nherself with boundless contempt. 'If he's a change, give me a\nconstancy.\n\n'Good-night, Susan,' said Florence.\n\n'Good-night, my darling dear Miss Floy.'\n\nHer tone of commiseration smote the chord so often roughly touched,\nbut never listened to while she or anyone looked on. Florence left\nalone, laid her head upon her hand, and pressing the other over her\nswelling heart, held free communication with her sorrows.\n\nIt was a wet night; and the melancholy rain fell pattering and\ndropping with a weary sound. A sluggish wind was blowing, and went\nmoaning round the house, as if it were in pain or grief. A shrill\nnoise quivered through the trees. While she sat weeping, it grew late,\nand dreary midnight tolled out from the steeples.\n\nFlorence was little more than a child in years - not yet fourteen-\nand the loneliness and gloom of such an hour in the great house where\nDeath had lately made its own tremendous devastation, might have set\nan older fancy brooding on vague terrors. But her innocent imagination\nwas too full of one theme to admit them. Nothing wandered in her\nthoughts but love - a wandering love, indeed, and castaway - but\nturning always to her father. There was nothing in the dropping of the\nrain, the moaning of the wind, the shuddering of the trees, the\nstriking of the solemn clocks, that shook this one thought, or\ndiminished its interest' Her recollections of the dear dead boy - and\nthey were never absent - were itself, the same thing. And oh, to be\nshut out: to be so lost: never to have looked into her father's face\nor touched him, since that hour!\n\nShe could not go to bed, poor child, and never had gone yet, since\nthen, without making her nightly pilgrimage to his door. It would have\nbeen a strange sad sight, to see her' now, stealing lightly down the\nstairs through the thick gloom, and stopping at it with a beating\nheart, and blinded eyes, and hair that fell down loosely and unthought\nof; and touching it outside with her wet cheek. But the night covered\nit, and no one knew.\n\nThe moment that she touched the door on this night, Florence found\nthat it was open. For the first time it stood open, though by but a\nhair's-breadth: and there was a light within. The first impulse of the\ntimid child - and she yielded to it - was to retire swiftly. Her next,\nto go back, and to enter; and this second impulse held her in\nirresolution on the staircase.\n\nIn its standing open, even by so much as that chink, there seemed\nto be hope. There was encouragement in seeing a ray of light from\nwithin, stealing through the dark stern doorway, and falling in a\nthread upon the marble floor. She turned back, hardly knowing what she\ndid, but urged on by the love within her, and the trial they had\nundergone together, but not shared: and with her hands a little raised\nand trembling, glided in.\n\nHer father sat at his old table in the middle room. He had been\narranging some papers, and destroying others, and the latter lay in\nfragile ruins before him. The rain dripped heavily upon the glass\npanes in the outer room, where he had so often watched poor Paul, a\nbaby; and the low complainings of the wind were heard without.\n\nBut not by him. He sat with his eyes fixed on the table, so\nimmersed in thought, that a far heavier tread than the light foot of\nhis child could make, might have failed to rouse him. His face was\nturned towards her. By the waning lamp, and at that haggard hour, it\nlooked worn and dejected; and in the utter loneliness surrounding him,\nthere was an appeal to Florence that struck home.\n\n'Papa! Papa! speak to me, dear Papa!'\n\nHe started at her voice, and leaped up from his seat. She was close\nbefore him' with extended arms, but he fell back.\n\n'What is the matter?' he said, sternly. 'Why do you come here? What\nhas frightened you?'\n\nIf anything had frightened her, it was the face he turned upon her.\nThe glowing love within the breast of his young daughter froze before\nit, and she stood and looked at him as if stricken into stone.\n\nThere was not one touch of tenderness or pity in it. There was not\none gleam of interest, parental recognition, or relenting in it. There\nwas a change in it, but not of that kind. The old indifference and\ncold constraint had given place to something: what, she never thought\nand did not dare to think, and yet she felt it in its force, and knew\nit well without a name: that as it looked upon her, seemed to cast a\nshadow on her head.\n\nDid he see before him the successful rival of his son, in health\nand life? Did he look upon his own successful rival in that son's\naffection? Did a mad jealousy and withered pride, poison sweet\nremembrances that should have endeared and made her precious to him?\nCould it be possible that it was gall to him to look upon her in her\nbeauty and her promise: thinking of his infant boy!\n\nFlorence had no such thoughts. But love is quick to know when it is\nspurned and hopeless: and hope died out of hers, as she stood looking\nin her father's face.\n\n'I ask you, Florence, are you frightened? Is there anything the\nmatter, that you come here?'\n\n'I came, Papa - '\n\n'Against my wishes. Why?'\n\nShe saw he knew why: it was written broadly on his face: and\ndropped her head upon her hands with one prolonged low cry.\n\nLet him remember it in that room, years to come. It has faded from\nthe air, before he breaks the silence. It may pass as quickly from his\nbrain, as he believes, but it is there. Let him remember it in that\nroom, years to come!\n\nHe took her by the arm. His hand was cold, and loose, and scarcely\nclosed upon her.\n\n'You are tired, I daresay,' he said, taking up the light, and\nleading her towards the door, 'and want rest. We all want rest. Go,\nFlorence. You have been dreaming.'\n\nThe dream she had had, was over then, God help her! and she felt\nthat it could never more come back\n\n'I will remain here to light you up the stairs. The whole house is\nyours above there,' said her father, slowly. 'You are its mistress\nnow. Good-night!'\n\nStill covering her face, she sobbed, and answered 'Good-night, dear\nPapa,' and silently ascended. Once she looked back as if she would\nhave returned to him, but for fear. It was a mommentary thought, too\nhopeless to encourage; and her father stood there with the light -\nhard, unresponsive, motionless - until the fluttering dress of his\nfair child was lost in the darkness.\n\nLet him remember it in that room, years to come. The rain that\nfalls upon the roof: the wind that mourns outside the door: may have\nforeknowledge in their melancholy sound. Let him remember it in that\nroom, years to come!\n\nThe last time he had watched her, from the same place, winding up\nthose stairs, she had had her brother in her arms. It did not move his\nheart towards her now, it steeled it: but he went into his room, and\nlocked his door, and sat down in his chair, and cried for his lost\nboy.\n\nDiogenes was broad awake upon his post, and waiting for his little\nmistress.\n\n'Oh, Di! Oh, dear Di! Love me for his sake!'\n\nDiogenes already loved her for her own, and didn't care how much he\nshowed it. So he made himself vastly ridiculous by performing a\nvariety of uncouth bounces in the ante-chamber, and concluded, when\npoor Florence was at last asleep, and dreaming of the rosy children\nopposite, by scratching open her bedroom door: rolling up his bed into\na pillow: lying down on the boards, at the full length of his tether,\nwith his head towards her: and looking lazily at her, upside down, out\nof the tops of his eyes, until from winking and winking he fell asleep\nhimself, and dreamed, with gruff barks, of his enemy.\n\n\n\nCHAPTER 19.\n\nWalter goes away\n\n\n\nThe wooden Midshipman at the Instrument-maker's door, like the\nhard-hearted little Midshipman he was, remained supremely indifferent\nto Walter's going away, even when the very last day of his sojourn in\nthe back parlour was on the decline. With his quadrant at his round\nblack knob of an eye, and his figure in its old attitude of\nindomitable alacrity, the Midshipman displayed his elfin small-clothes\nto the best advantage, and, absorbed in scientific pursuits, had no\nsympathy with worldly concerns. He was so far the creature of\ncircumstances, that a dry day covered him with dust, and a misty day\npeppered him with little bits of soot, and a wet day brightened up his\ntarnished uniform for the moment, and a very hot day blistered him;\nbut otherwise he was a callous, obdurate, conceited Midshipman, intent\non his own discoveries, and caring as little for what went on about\nhim, terrestrially, as Archimedes at the taking of Syracuse.\n\nSuch a Midshipman he seemed to be, at least, in the then position\nof domestic affairs. Walter eyed him kindly many a time in passing in\nand out; and poor old Sol, when Walter was not there, would come and\nlean against the doorpost, resting his weary wig as near the\nshoe-buckles of the guardian genius of his trade and shop as he could.\nBut no fierce idol with a mouth from ear to ear, and a murderous\nvisage made of parrot's feathers, was ever more indifferent to the\nappeals of its savage votaries, than was the Midshipman to these marks\nof attachment.\n\nWalter's heart felt heavy as he looked round his old bedroom, up\namong the parapets and chimney-pots, and thought that one more night\nalready darkening would close his acquaintance with it, perhaps for\never. Dismantled of his little stock of books and pictures, it looked\ncoldly and reproachfully on him for his desertion, and had already a\nforeshadowing upon it of its coming strangeness. 'A few hours more,'\nthought Walter, 'and no dream I ever had here when I was a schoolboy\nwill be so little mine as this old room. The dream may come back in my\nsleep, and I may return waking to this place, it may be: but the dream\nat least will serve no other master, and the room may have a score,\nand every one of them may change, neglect, misuse it.'\n\nBut his Uncle was not to be left alone in the little back parlour,\nwhere he was then sitting by himself; for Captain Cuttle, considerate\nin his roughness, stayed away against his will, purposely that they\nshould have some talk together unobserved: so Walter, newly returned\nhome from his last day's bustle, descended briskly, to bear him\ncompany.\n\n'Uncle,' he said gaily, laying his hand upon the old man's\nshoulder, 'what shall I send you home from Barbados?'\n\n'Hope, my dear Wally. Hope that we shall meet again, on this side\nof the grave. Send me as much of that as you can.'\n\n'So I will, Uncle: I have enough and to spare, and I'll not be\nchary of it! And as to lively turtles, and limes for Captain Cuttle's\npunch, and preserves for you on Sundays, and all that sort of thing,\nwhy I'll send you ship-loads, Uncle: when I'm rich enough.'\n\nOld Sol wiped his spectacles, and faintly smiled.\n\n'That's right, Uncle!' cried Walter, merrily, and clapping him half\na dozen times more upon the shoulder. 'You cheer up me! I'll cheer up\nyou! We'll be as gay as larks to-morrow morning, Uncle, and we'll fly\nas high! As to my anticipations, they are singing out of sight now.\n\n'Wally, my dear boy,' returned the old man, 'I'll do my best, I'll\ndo my best.'\n\n'And your best, Uncle,' said Walter, with his pleasant laugh, 'is\nthe best best that I know. You'll not forget what you're to send me,\nUncle?'\n\n'No, Wally, no,' replied the old man; 'everything I hear about Miss\nDombey, now that she is left alone, poor lamb, I'll write. I fear it\nwon't be much though, Wally.'\n\n'Why, I'll tell you what, Uncle,' said Walter, after a moment's\nhesitation, 'I have just been up there.'\n\n'Ay, ay, ay?' murmured the old man, raising his eyebrows, and his\nspectacles with them.\n\n'Not to see her,' said Walter, 'though I could have seen her, I\ndaresay, if I had asked, Mr Dombey being out of town: but to say a\nparting word to Susan. I thought I might venture to do that, you know,\nunder the circumstances, and remembering when I saw Miss Dombey last.'\n\n'Yes, my boy, yes,' replied his Uncle, rousing himself from a\ntemporary abstraction.\n\n'So I saw her,' pursued Walter, 'Susan, I mean: and I told her I\nwas off and away to-morrow. And I said, Uncle, that you had always had\nan interest in Miss Dombey since that night when she was here, and\nalways wished her well and happy, and always would be proud and glad\nto serve her in the least: I thought I might say that, you know, under\nthe circumstances. Don't you think so ?'\n\n'Yes, my boy, yes,' replied his Uncle, in the tone as before.\n\n'And I added,' pursued Walter, 'that if she - Susan, I mean - could\never let you know, either through herself, or Mrs Richards, or anybody\nelse who might be coming this way, that Miss Dombey was well and\nhappy, you would take it very kindly, and would write so much to me,\nand I should take it very kindly too. There! Upon my word, Uncle,'\nsaid Walter, 'I scarcely slept all last night through thinking of\ndoing this; and could not make up my mind when I was out, whether to\ndo it or not; and yet I am sure it is the true feeling of my heart,\nand I should have been quite miserable afterwards if I had not\nrelieved it.'\n\nHis honest voice and manner corroborated what he said, and quite\nestablished its ingenuousness.\n\n'So, if you ever see her, Uncle,' said Walter, 'I mean Miss Dombey\nnow - and perhaps you may, who knows! - tell her how much I felt for\nher; how much I used to think of her when I was here; how I spoke of\nher, with the tears in my eyes, Uncle, on this last night before I\nwent away. Tell her that I said I never could forget her gentle\nmanner, or her beautiful face, or her sweet kind disposition that was\nbetter than all. And as I didn't take them from a woman's feet, or a\nyoung lady's: only a little innocent child's,' said Walter: 'tell her,\nif you don't mind, Uncle, that I kept those shoes - she'll remember\nhow often they fell off, that night - and took them away with me as a\nremembrance!'\n\nThey were at that very moment going out at the door in one of\nWalter's trunks. A porter carrying off his baggage on a truck for\nshipment at the docks on board the Son and Heir, had got possession of\nthem; and wheeled them away under the very eye of the insensible\nMidshipman before their owner had well finished speaking.\n\nBut that ancient mariner might have been excused his insensibility\nto the treasure as it rolled away. For, under his eye at the same\nmoment, accurately within his range of observation, coming full into\nthe sphere of his startled and intensely wide-awake look-out, were\nFlorence and Susan Nipper: Florence looking up into his face half\ntimidly, and receiving the whole shock of his wooden ogling!\n\nMore than this, they passed into the shop, and passed in at the\nparlour door before they were observed by anybody but the Midshipman.\nAnd Walter, having his back to the door, would have known nothing of\ntheir apparition even then, but for seeing his Uncle spring out of his\nown chair, and nearly tumble over another.\n\n'Why, Uncle!' exclaimed Walter. 'What's the matter?'\n\nOld Solomon replied, 'Miss Dombey!'\n\n'Is it possible?' cried Walter, looking round and starting up in\nhis turn. 'Here!'\n\nWhy, It was so possible and so actual, that, while the words were\non his lips, Florence hurried past him; took Uncle Sol's\nsnuff-coloured lapels, one in each hand; kissed him on the cheek; and\nturning, gave her hand to Walter with a simple truth and earnestness\nthat was her own, and no one else's in the world!\n\n'Going away, Walter!' said Florence.\n\n'Yes, Miss Dombey,' he replied, but not so hopefully as he\nendeavoured: 'I have a voyage before me.'\n\n'And your Uncle,' said Florence, looking back at Solomon. 'He is\nsorry you are going, I am sure. Ah! I see he is! Dear Walter, I am\nvery sorry too.'\n\n'Goodness knows,' exclaimed Miss Nipper, 'there's a many we could\nspare instead, if numbers is a object, Mrs Pipchin as a overseer would\ncome cheap at her weight in gold, and if a knowledge of black slavery\nshould be required, them Blimbers is the very people for the\nsitiwation.'\n\nWith that Miss Nipper untied her bonnet strings, and alter looking\nvacantly for some moments into a little black teapot that was set\nforth with the usual homely service on the table, shook her head and a\ntin canister, and began unasked to make the tea.\n\nIn the meantime Florence had turned again to the Instrument-maker,\nwho was as full of admiration as surprise. 'So grown!' said old Sol.\n'So improved! And yet not altered! Just the same!'\n\n'Indeed!' said Florence.\n\n'Ye - yes,' returned old Sol, rubbing his hands slowly, and\nconsidering the matter half aloud, as something pensive in the bright\neyes looking at him arrested his attention. 'Yes, that expression was\nin the younger face, too!'\n\n'You remember me,' said Florence with a smile, 'and what a little\ncreature I was then?'\n\n'My dear young lady,' returned the Instrument-maker, 'how could I\nforget you, often as I have thought of you and heard of you since! At\nthe very moment, indeed, when you came in, Wally was talking about you\nto me, and leaving messages for you, and - '\n\n'Was he?' said Florence. 'Thank you, Walter! Oh thank you, Walter!\nI was afraid you might be going away and hardly thinking of me;' and\nagain she gave him her little hand so freely and so faithfully that\nWalter held it for some moments in his own, and could not bear to let\nit go.\n\nYet Walter did not hold it as he might have held it once, nor did\nits touch awaken those old day-dreams of his boyhood that had floated\npast him sometimes even lately, and confused him with their indistinct\nand broken shapes. The purity and innocence of her endearing manner,\nand its perfect trustfulness, and the undisguised regard for him that\nlay so deeply seated in her constant eyes, and glowed upon her fair\nface through the smile that shaded - for alas! it was a smile too sad\nto brighten - it, were not of their romantic race. They brought back\nto his thoughts the early death-bed he had seen her tending, and the\nlove the child had borne her; and on the wings of such remembrances\nshe seemed to rise up, far above his idle fancies, into clearer and\nserener air.\n\n'I - I am afraid I must call you Walter's Uncle, Sir,' said\nFlorence to the old man, 'if you'll let me.'\n\n'My dear young lady,' cried old Sol. 'Let you! Good gracious!'\n\n'We always knew you by that name, and talked of you,' said\nFlorence, glancing round, and sighing gently. 'The nice old parlour!\nJust the same! How well I recollect it!'\n\nOld Sol looked first at her, then at his nephew, and then rubbed\nhis hands, and rubbed his spectacles, and said below his breath, 'Ah!\ntime, time, time!'\n\nThere was a short silence; during which Susan Nipper skilfully\nimpounded two extra cups and saucers from the cupboard, and awaited\nthe drawing of the tea with a thoughtful air.\n\n'I want to tell Walter's Uncle,' said Florence, laying her hand\ntimidly upon the old man's as it rested on the table, to bespeak his\nattention, 'something that I am anxious about. He is going to be left\nalone, and if he will allow me - not to take Walter's place, for that\nI couldn't do, but to be his true friend and help him if I ever can\nwhile Walter is away, I shall be very much obliged to him indeed. Will\nyou? May I, Walter's Uncle?'\n\nThe Instrument-maker, without speaking, put her hand to his lips,\nand Susan Nipper, leaning back with her arms crossed, in the chair of\npresidency into which she had voted herself, bit one end of her bonnet\nstrings, and heaved a gentle sigh as she looked up at the skylight.\n\n'You will let me come to see you,' said Florence, 'when I can; and\nyou will tell me everything about yourself and Walter; and you will\nhave no secrets from Susan when she comes and I do not, but will\nconfide in us, and trust us, and rely upon us. And you'll try to let\nus be a comfort to you? Will you, Walter's Uncle?'\n\nThe sweet face looking into his, the gentle pleading eyes, the soft\nvoice, and the light touch on his arm made the more winning by a\nchild's respect and honour for his age, that gave to all an air of\ngraceful doubt and modest hesitation - these, and her natural\nearnestness, so overcame the poor old Instrument-maker, that he only\nanswered:\n\n'Wally! say a word for me, my dear. I'm very grateful.'\n\n'No, Walter,' returned Florence with her quiet smile. 'Say nothing\nfor him, if you please. I understand him very well, and we must learn\nto talk together without you, dear Walter.'\n\nThe regretful tone in which she said these latter words, touched\nWalter more than all the rest.\n\n'Miss Florence,' he replied, with an effort to recover the cheerful\nmanner he had preserved while talking with his Uncle, 'I know no more\nthan my Uncle, what to say in acknowledgment of such kindness, I am\nsure. But what could I say, after all, if I had the power of talking\nfor an hour, except that it is like you?'\n\nSusan Nipper began upon a new part of her bonnet string, and nodded\nat the skylight, in approval of the sentiment expressed.\n\n'Oh! but, Walter,' said Florence, 'there is something that I wish\nto say to you before you go away, and you must call me Florence, if\nyou please, and not speak like a stranger.'\n\n'Like a stranger!' returned Walter, 'No. I couldn't speak so. I am\nsure, at least, I couldn't feel like one.'\n\n'Ay, but that is not enough, and is not what I mean. For, Walter,'\nadded Florence, bursting into tears, 'he liked you very much, and said\nbefore he died that he was fond of you, and said \"Remember Walter!\"\nand if you'll be a brother to me, Walter, now that he is gone and I\nhave none on earth, I'll be your sister all my life, and think of you\nlike one wherever we may be! This is what I wished to say, dear\nWalter, but I cannot say it as I would, because my heart is full.'\n\nAnd in its fulness and its sweet simplicity, she held out both her\nhands to him. Walter taking them, stooped down and touched the tearful\nface that neither shrunk nor turned away, nor reddened as he did so,\nbut looked up at him with confidence and truth. In that one moment,\nevery shadow of doubt or agitation passed away from Walter's soul. It\nseemed to him that he responded to her innocent appeal, beside the\ndead child's bed: and, in the solemn presence he had seen there,\npledged himself to cherish and protect her very image, in his\nbanishment, with brotherly regard; to garner up her simple faith,\ninviolate; and hold himself degraded if he breathed upon it any\nthought that was not in her own breast when she gave it to him.\n\nSusan Nipper, who had bitten both her bonnet strings at once, and\nimparted a great deal of private emotion to the skylight, during this\ntransaction, now changed the subject by inquiring who took milk and\nwho took sugar; and being enlightened on these points, poured out the\ntea. They all four gathered socially about the little table, and took\ntea under that young lady's active superintendence; and the presence\nof Florence in the back parlour, brightened the Tartar frigate on the\nwall.\n\nHalf an hour ago Walter, for his life, would have hardly called her\nby her name. But he could do so now when she entreated him. He could\nthink of her being there, without a lurking misgiving that it would\nhave been better if she had not come. He could calmly think how\nbeautiful she was, how full of promise, what a home some happy man\nwould find in such a heart one day. He could reflect upon his own\nplace in that heart, with pride; and with a brave determination, if\nnot to deserve it - he still thought that far above him - never to\ndeserve it less\n\nSome fairy influence must surely have hovered round the hands of\nSusan Nipper when she made the tea, engendering the tranquil air that\nreigned in the back parlour during its discussion. Some\ncounter-influence must surely have hovered round the hands of Uncle\nSol's chronometer, and moved them faster than the Tartar frigate ever\nwent before the wind. Be this as it may, the visitors had a coach in\nwaiting at a quiet corner not far off; and the chronometer, on being\nincidentally referred to, gave such a positive opinion that it had\nbeen waiting a long time, that it was impossible to doubt the fact,\nespecially when stated on such unimpeachable authority. If Uncle Sol\nhad been going to be hanged by his own time, he never would have\nallowed that the chronometer was too fast, by the least fraction of a\nsecond.\n\nFlorence at parting recapitulated to the old man all that she had\nsaid before, and bound him to the compact. Uncle Sol attended her\nlovingly to the legs of the wooden Midshipman, and there resigned her\nto Walter, who was ready to escort her and Susan Nipper to the coach.\n\n'Walter,' said Florence by the way, 'I have been afraid to ask\nbefore your Uncle. Do you think you will be absent very long?'\n\n'Indeed,' said Walter, 'I don't know. I fear so. Mr Dombey\nsignified as much, I thought, when he appointed me.'\n\n'Is it a favour, Walter?' inquired Florence, after a moment's\nhesitation, and looking anxiously in his face.\n\n'The appointment?' returned Walter.\n\n'Yes.'\n\nWalter would have given anything to have answered in the\naffirmative, but his face answered before his lips could, and Florence\nwas too attentive to it not to understand its reply.\n\n'I am afraid you have scarcely been a favourite with Papa,' she\nsaid, timidly.\n\n'There is no reason,' replied Walter, smiling, 'why I should be.'\n\n'No reason, Walter!'\n\n'There was no reason,' said Walter, understanding what she meant.\n'There are many people employed in the House. Between Mr Dombey and a\nyoung man like me, there's a wide space of separation. If I do my\nduty, I do what I ought, and do no more than all the rest.'\n\nHad Florence any misgiving of which she was hardly conscious: any\nmisgiving that had sprung into an indistinct and undefined existence\nsince that recent night when she had gone down to her father's room:\nthat Walter's accidental interest in her, and early knowledge of her,\nmight have involved him in that powerful displeasure and dislike? Had\nWalter any such idea, or any sudden thought that it was in her mind at\nthat moment? Neither of them hinted at it. Neither of them spoke at\nall, for some short time. Susan, walking on the other side of Walter,\neyed them both sharply; and certainly Miss Nipper's thoughts travelled\nin that direction, and very confidently too.\n\n'You may come back very soon,' said Florence, 'perhaps, Walter.'\n\n'I may come back,' said Walter, 'an old man, and find you an old\nlady. But I hope for better things.'\n\n'Papa,' said Florence, after a moment, 'will - will recover from\nhis grief, and - speak more freely to me one day, perhaps; and if he\nshould, I will tell him how much I wish to see you back again, and ask\nhim to recall you for my sake.'\n\nThere was a touching modulation in these words about her father,\nthat Walter understood too well.\n\nThe coach being close at hand, he would have left her without\nspeaking, for now he felt what parting was; but Florence held his hand\nwhen she was seated, and then he found there was a little packet in\nher own.\n\n'Walter,' she said, looking full upon him with her affectionate\neyes, 'like you, I hope for better things. I will pray for them, and\nbelieve that they will arrive. I made this little gift for Paul. Pray\ntake it with my love, and do not look at it until you are gone away.\nAnd now, God bless you, Walter! never forget me. You are my brother,\ndear!'\n\nHe was glad that Susan Nipper came between them, or he might have\nleft her with a sorrowful remembrance of him. He was glad too that she\ndid not look out of the coach again, but waved the little hand to him\ninstead, as long as he could see it.\n\nIn spite of her request, he could not help opening the packet that\nnight when he went to bed. It was a little purse: and there was was\nmoney in it.\n\nBright rose the sun next morning, from his absence in strange\ncountries and up rose Walter with it to receive the Captain, who was\nalready at the door: having turned out earlier than was necessary, in\norder to get under weigh while Mrs MacStinger was still slumbering.\nThe Captain pretended to be in tip-top spirits, and brought a very\nsmoky tongue in one of the pockets of the of the broad blue coat for\nbreakfast.\n\n'And, Wal'r,' said the Captain, when they took their seats at\ntable, if your Uncle's the man I think him, he'll bring out the last\nbottle of the Madeira on the present occasion.'\n\n'No, no, Ned,' returned the old man. 'No! That shall be opened when\nWalter comes home again.'\n\n'Well said!' cried the Captain. 'Hear him!'\n\n'There it lies,' said Sol Gills, 'down in the little cellar,\ncovered with dirt and cobwebs. There may be dirt and cobwebs over you\nand me perhaps, Ned, before it sees the light.'\n\n'Hear him! 'cried the Captain. 'Good morality! Wal'r, my lad. Train\nup a fig-tree in the way it should go, and when you are old sit under\nthe shade on it. Overhaul the - Well,' said the Captain on second\nthoughts, 'I ain't quite certain where that's to be found, but when\nfound, make a note of. Sol Gills, heave ahead again!'\n\n'But there or somewhere, it shall lie, Ned, until Wally comes back\nto claim it,' said the old man. 'That's all I meant to say.'\n\n'And well said too,' returned the Captain; 'and if we three don't\ncrack that bottle in company, I'll give you two leave to.'\n\nNotwithstanding the Captain's excessive joviality, he made but a\npoor hand at the smoky tongue, though he tried very hard, when anybody\nlooked at him, to appear as if he were eating with a vast apetite. He\nwas terribly afraid, likewise, of being left alone with either Uncle\nor nephew; appearing to consider that his only chance of safety as to\nkeeping up appearances, was in there being always three together. This\nterror on the part of the Captain, reduced him to such ingenious\nevasions as running to the door, when Solomon went to put his coat on,\nunder pretence of having seen an extraordinary hackney-coach pass: and\ndarting out into the road when Walter went upstairs to take leave of\nthe lodgers, on a feint of smelling fire in a neighbouring chimney.\nThese artifices Captain Cuttle deemed inscrutable by any uninspired\nobserver.\n\nWalter was coming down from his parting expedition upstairs, and\nwas crossing the shop to go back to the little parlour, when he saw a\nfaded face he knew, looking in at the door, and darted towards it.\n\n'Mr Carker!' cried Walter, pressing the hand of John Carker the\nJunior. 'Pray come in! This is kind of you, to be here so early to say\ngood-bye to me. You knew how glad it would make me to shake hands with\nyou, once, before going away. I cannot say how glad I am to have this\nopportunity. Pray come in.'\n\n'It is not likely that we may ever meet again, Walter,' returned\nthe other, gently resisting his invitation, 'and I am glad of this\nopportunity too. I may venture to speak to you, and to take you by the\nhand, on the eve of separation. I shall not have to resist your frank\napproaches, Walter, any more.\n\nThere was a melancholy in his smile as he said it, that showed he\nhad found some company and friendship for his thoughts even in that.\n\n'Ah, Mr Carker!' returned Walter. 'Why did you resist them? You\ncould have done me nothing but good, I am very sure.\n\nHe shook his head. 'If there were any good,' he said, 'I could do\non this earth, I would do it, Walter, for you. The sight of you from\nday to day, has been at once happiness and remorse to me. But the\npleasure has outweighed the pain. I know that, now, by knowing what I\nlose.'\n\n'Come in, Mr Carker, and make acquaintance with my good old Uncle,'\nurged Walter. 'I have often talked to him about you, and he will be\nglad to tell you all he hears from me. I have not,' said Walter,\nnoticing his hesitation, and speaking with embarrassment himself: 'I\nhave not told him anything about our last conversation, Mr Carker; not\neven him, believe me.\n\nThe grey Junior pressed his hand, and tears rose in his eyes.\n\n'If I ever make acquaintance with him, Walter,' he returned, 'it\nwill be that I may hear tidings of you. Rely on my not wronging your\nforbearance and consideration. It would be to wrong it, not to tell\nhim all the truth, before I sought a word of confidence from him. But\nI have no friend or acquaintance except you: and even for your sake,\nam little likely to make any.'\n\n'I wish,' said Walter, 'you had suffered me to be your friend\nindeed. I always wished it, Mr Carker, as you know; but never half so\nmuch as now, when we are going to part'\n\n'It is enough replied the other, 'that you have been the friend of\nmy own breast, and that when I have avoided you most, my heart\ninclined the most towards you, and was fullest of you. Walter,\ngood-bye!'\n\n'Good-bye, Mr Carker. Heaven be with you, Sir!' cried Walter with\nemotion.\n\n'If,' said the other, retaining his hand while he spoke; 'if when\nyou come back, you miss me from my old corner, and should hear from\nanyone where I am lying, come and look upon my grave. Think that I\nmight have been as honest and as happy as you! And let me think, when\nI know time is coming on, that some one like my former self may stand\nthere, for a moment, and remember me with pity and forgiveness!\nWalter, good-bye!'\n\nHis figure crept like a shadow down the bright, sun-lighted street,\nso cheerful yet so solemn in the early summer morning; and slowly\npassed away.\n\nThe relentless chronometer at last announced that Walter must turn\nhis back upon the wooden Midshipman: and away they went, himself, his\nUncle, and the Captain, in a hackney-coach to a wharf, where they were\nto take steam-boat for some Reach down the river, the name of which,\nas the Captain gave it out, was a hopeless mystery to the ears of\nlandsmen. Arrived at this Reach (whither the ship had repaired by last\nnight's tide), they were boarded by various excited watermen, and\namong others by a dirty Cyclops of the Captain's acquaintance, who,\nwith his one eye, had made the Captain out some mile and a half off,\nand had been exchanging unintelligible roars with him ever since.\nBecoming the lawful prize of this personage, who was frightfully\nhoarse and constitutionally in want of shaving, they were all three\nput aboard the Son and Heir. And the Son and Heir was in a pretty\nstate of confusion, with sails lying all bedraggled on the wet decks,\nloose ropes tripping people up, men in red shirts running barefoot to\nand fro, casks blockading every foot of space, and, in the thickest of\nthe fray, a black cook in a black caboose up to his eyes in vegetables\nand blinded with smoke.\n\nThe Captain immediately drew Walter into a corner, and with a great\neffort, that made his face very red, pulled up the silver watch, which\nwas so big, and so tight in his pocket, that it came out like a bung.\n\n'Wal'r,' said the Captain, handing it over, and shaking him\nheartily by the hand, 'a parting gift, my lad. Put it back half an\nhour every morning, and about another quarter towards the arternoon,\nand it's a watch that'll do you credit.'\n\n'Captain Cuttle! I couldn't think of it!' cried Walter, detaining\nhim, for he was running away. 'Pray take it back. I have one already.'\n\n'Then, Wal'r,' said the Captain, suddenly diving into one of his\npockets and bringing up the two teaspoons and the sugar-tongs, with\nwhich he had armed himself to meet such an objection, 'take this here\ntrifle of plate, instead.'\n\n'No, no, I couldn't indeed!' cried Walter, 'a thousand thanks!\nDon't throw them away, Captain Cuttle!' for the Captain was about to\njerk them overboard. 'They'll be of much more use to you than me. Give\nme your stick. I have often thought I should like to have it. There!\nGood-bye, Captain Cuttle! Take care of my Uncle! Uncle Sol, God bless\nyou!'\n\nThey were over the side in the confusion, before Walter caught\nanother glimpse of either; and when he ran up to the stern, and looked\nafter them, he saw his Uncle hanging down his head in the boat, and\nCaptain Cuttle rapping him on the back with the great silver watch (it\nmust have been very painful), and gesticulating hopefully with the\nteaspoons and sugar-tongs. Catching sight of Walter, Captain Cuttle\ndropped the property into the bottom of the boat with perfect\nunconcern, being evidently oblivious of its existence, and pulling off\nthe glazed hat hailed him lustily. The glazed hat made quite a show in\nthe sun with its glistening, and the Captain continued to wave it\nuntil he could be seen no longer. Then the confusion on board, which\nhad been rapidly increasing, reached its height; two or three other\nboats went away with a cheer; the sails shone bright and full above,\nas Walter watched them spread their surface to the favourable breeze;\nthe water flew in sparkles from the prow; and off upon her voyage went\nthe Son and Heir, as hopefully and trippingly as many another son and\nheir, gone down, had started on his way before her.\n\nDay after day, old Sol and Captain Cuttle kept her reckoning in the\nlittle hack parlour and worked out her course, with the chart spread\nbefore them on the round table. At night, when old Sol climbed\nupstairs, so lonely, to the attic where it sometimes blew great guns,\nhe looked up at the stars and listened to the wind, and kept a longer\nwatch than would have fallen to his lot on board the ship. The last\nbottle of the old Madeira, which had had its cruising days, and known\nits dangers of the deep, lay silently beneath its dust and cobwebs, in\nthe meanwhile, undisturbed.\n\n\n\nCHAPTER 20.\n\nMr Dombey goes upon a Journey\n\n\n\n'Mr Dombey, Sir,' said Major Bagstock, 'Joee' B. is not in general\na man of sentiment, for Joseph is tough. But Joe has his feelings,\nSir, and when they are awakened - Damme, Mr Dombey,? cried the Major\nwith sudden ferocity, 'this is weakness, and I won't submit to it]'\n\nMajor Bagstock delivered himself of these expressions on receiving\nMr Dombey as his guest at the head of his own staircase in Princess's\nPlace. Mr Dombey had come to breakfast with the Major, previous to\ntheir setting forth on their trip; and the ill-starved Native had\nalready undergone a world of misery arising out of the muffins, while,\nin connexion with the general question of boiled eggs, life was a\nburden to him.\n\n'It is not for an old soldier of the Bagstock breed,' observed the\nMajor, relapsing into a mild state, 'to deliver himself up, a prey to\nhis own emotions; but - damme, Sir,' cried the Major, in another spasm\nof ferocity, 'I condole with you!'\n\nThe Major's purple visage deepened in its hue, and the Major's\nlobster eyes stood out in bolder relief, as he shook Mr Dombey by the\nhand, imparting to that peaceful action as defiant a character as if\nit had been the prelude to his immediately boxing Mr Dombey for a\nthousand pounds a side and the championship of England. With a\nrotatory motion of his head, and a wheeze very like the cough of a\nhorse, the Major then conducted his visitor to the sitting-room, and\nthere welcomed him (having now composed his feelings) with the freedom\nand frankness ofa travelling companion.\n\n'Dombey,' said the Major, 'I'm glad to see you. I'm proud to see\nyou. There are not many men in Europe to whom J. Bagstock would say\nthat - for Josh is blunt. Sir: it's his nature - but Joey B. is proud\nto see you, Dombey.'\n\n'Major,' returned Mr Dombey, 'you are very obliging.'\n\n'No, Sir,' said the Major, 'Devil a bit! That's not my character.\nIf that had been Joe's character, Joe might have been, by this time,\nLieutenant-General Sir Joseph Bagstock, K.C.B., and might have\nreceived you in very different quarters. You don't know old Joe yet, I\nfind. But this occasion, being special, is a source of pride to me. By\nthe Lord, Sir,' said the Major resolutely, 'it's an honour to me!'\n\nMr Dombey, in his estimation of himself and his money, felt that\nthis was very true, and therefore did not dispute the point. But the\ninstinctive recognition of such a truth by the Major, and his plain\navowal of it, were very able. It was a confirmation to Mr Dombey, if\nhe had required any, of his not being mistaken in the Major. It was an\nassurance to him that his power extended beyond his own immediate\nsphere; and that the Major, as an officer and a gentleman, had a no\nless becoming sense of it, than the beadle of the Royal Exchange.\n\nAnd if it were ever consolatory to know this, or the like of this,\nit was consolatory then, when the impotence of his will, the\ninstability of his hopes, the feebleness of wealth, had been so\ndirefully impressed upon him. What could it do, his boy had asked him.\nSometimes, thinking of the baby question, he could hardly forbear\ninquiring, himself, what could it do indeed: what had it done?\n\nBut these were lonely thoughts, bred late at night in the sullen\ndespondency and gloom of his retirement, and pride easily found its\nreassurance in many testimonies to the truth, as unimpeachable and\nprecious as the Major's. Mr Dombey, in his friendlessness, inclined to\nthe Major. It cannot be said that he warmed towards him, but he thawed\na little, The Major had had some part - and not too much - in the days\nby the seaside. He was a man of the world, and knew some great people.\nHe talked much, and told stories; and Mr Dombey was disposed to regard\nhim as a choice spirit who shone in society, and who had not that\npoisonous ingredient of poverty with which choice spirits in general\nare too much adulterated. His station was undeniable. Altogether the\nMajor was a creditable companion, well accustomed to a life of\nleisure, and to such places as that they were about to visit, and\nhaving an air of gentlemanly ease about him that mixed well enough\nwith his own City character, and did not compete with it at all. If Mr\nDombey had any lingering idea that the Major, as a man accustomed, in\nthe way of his calling, to make light of the ruthless hand that had\nlately crushed his hopes, might unconsciously impart some useful\nphilosophy to him, and scare away his weak regrets, he hid it from\nhimself, and left it lying at the bottom of his pride, unexamined.\n\n'Where is my scoundrel?' said the Major, looking wrathfully round\nthe room.\n\nThe Native, who had no particular name, but answered to any\nvituperative epithet, presented himself instantly at the door and\nventured to come no nearer.\n\n'You villain!' said the choleric Major, 'where's the breakfast?'\n\nThe dark servant disappeared in search of it, and was quickly heard\nreascending the stairs in such a tremulous state, that the plates and\ndishes on the tray he carried, trembling sympathetically as he came,\nrattled again, all the way up.\n\n'Dombey,' said the Major, glancing at the Native as he arranged the\ntable, and encouraging him with an awful shake of his fist when he\nupset a spoon, 'here is a devilled grill, a savoury pie, a dish of\nkidneys, and so forth. Pray sit down. Old Joe can give you nothing but\ncamp fare, you see.\n\n'Very excellent fare, Major,' replied his guest; and not in mere\npoliteness either; for the Major always took the best possible care of\nhimself, and indeed ate rather more of rich meats than was good for\nhim, insomuch that his Imperial complexion was mainly referred by the\nfaculty to that circumstance.\n\n'You have been looking over the way, Sir,' observed the Major.\n'Have you seen our friend?'\n\n'You mean Miss Tox,' retorted Mr Dombey. 'No.'\n\n'Charming woman, Sir,' said the Major, with a fat laugh rising in\nhis short throat, and nearly suffocating him.\n\n'Miss Tox is a very good sort of person, I believe,' replied Mr\nDombey.\n\nThe haughty coldness of the reply seemed to afford Major Bagstock\ninfinite delight. He swelled and swelled, exceedingly: and even laid\ndown his knife and fork for a moment, to rub his hands.\n\n'Old Joe, Sir,' said the Major, 'was a bit ofa favourite in that\nquarter once. But Joe has had his day. J. Bagstock is extinguished -\noutrivalled - floored, Sir.'\n\n'I should have supposed,' Mr Dombey replied, 'that the lady's day\nfor favourites was over: but perhaps you are jesting, Major.'\n\n'Perhaps you are jesting, Dombey?' was the Major's rejoinder.\n\nThere never was a more unlikely possiblity. It was so clearly\nexpressed in Mr Dombey's face, that the Major apologised.\n\n'I beg your pardon,' he said. 'I see you are in earnest. I tell you\nwhat, Dombey.' The Major paused in his eating, and looked mysteriously\nindignant. 'That's a de-vilish ambitious woman, Sir.'\n\nMr Dombey said 'Indeed?' with frigid indifference: mingled perhaps\nwith some contemptuous incredulity as to Miss Tox having the\npresumption to harbour such a superior quality.\n\n'That woman, Sir,' said the Major, 'is, in her way, a Lucifer. Joey\nB. has had his day, Sir, but he keeps his eyes. He sees, does Joe. His\nRoyal Highness the late Duke of York observed of Joey, at a levee,\nthat he saw.'\n\nThe Major accompanied this with such a look, and, between eating,\ndrinking, hot tea, devilled grill, muffins, and meaning, was\naltogether so swollen and inflamed about the head, that even Mr Dombey\nshowed some anxiety for him.\n\n'That ridiculous old spectacle, Sir,' pursued the Major, 'aspires.\nShe aspires sky-high, Sir. Matrimonially, Dombey.'\n\n'I am sorry for her,' said Mr Dombey.\n\n'Don't say that, Dombey,' returned the Major in a warning voice.\n\n'Why should I not, Major?' said Mr Dombey.\n\nThe Major gave no answer but the horse's cough, and went on eating\nvigorously.\n\n'She has taken an interest in your household,' said the Major,\nstopping short again, 'and has been a frequent visitor at your house\nfor some time now.'\n\n'Yes,' replied Mr Dombey with great stateliness, 'Miss Tox was\noriginally received there, at the time of Mrs Dombey's death, as a\nfriend of my sister's; and being a well-behaved person, and showing a\nliking for the poor infant, she was permitted - may I say encouraged -\nto repeat her visits with my sister, and gradually to occupy a kind of\nfooting of familiarity in the family. I have,' said Mr Dombey, in the\ntone of a man who was making a great and valuable concession, 'I have\na respect for Miss Tox. She his been so obliging as to render many\nlittle services in my house: trifling and insignificant services\nperhaps, Major, but not to be disparaged on that account: and I hope I\nhave had the good fortune to be enabled to acknowledge them by such\nattention and notice as it has been in my power to bestow. I hold\nmyself indebted to Miss Tox, Major,' added Mr Dombey, with a slight\nwave of his hand, 'for the pleasure of your acquaintance.'\n\n'Dombey,' said the Major, warmly: 'no! No, Sir! Joseph Bagstock can\nnever permit that assertion to pass uncontradicted. Your knowledge of\nold Joe, Sir, such as he is, and old Joe's knowledge of you, Sir, had\nits origin in a noble fellow, Sir - in a great creature, Sir. Dombey!'\nsaid the Major, with a struggle which it was not very difficult to\nparade, his whole life being a struggle against all kinds of\napoplectic symptoms, 'we knew each other through your boy.'\n\nMr Dombey seemed touched, as it is not improbable the Major\ndesigned he should be, by this allusion. He looked down and sighed:\nand the Major, rousing himself fiercely, again said, in reference to\nthe state of mind into which he felt himself in danger of falling,\nthat this was weakness, and nothing should induce him to submit to it.\n\n'Our friend had a remote connexion with that event,' said the\nMajor, 'and all the credit that belongs to her, J. B. is willing to\ngive her, Sir. Notwithstanding which, Ma'am,' he added, raising his\neyes from his plate, and casting them across Princess's Place, to\nwhere Miss Tox was at that moment visible at her window watering her\nflowers, 'you're a scheming jade, Ma'am, and your ambition is a piece\nof monstrous impudence. If it only made yourself ridiculous, Ma'am,'\nsaid the Major, rolling his head at the unconscious Miss Tox, while\nhis starting eyes appeared to make a leap towards her, 'you might do\nthat to your heart's content, Ma'am, without any objection, I assure\nyou, on the part of Bagstock.' Here the Major laughed frightfully up\nin the tips of his ears and in the veins of his head. 'But when,\nMa'am,' said the Major, 'you compromise other people, and generous,\nunsuspicious people too, as a repayment for their condescension, you\nstir the blood of old Joe in his body.'\n\n'Major,' said Mr Dombey, reddening, 'I hope you do not hint at\nanything so absurd on the part of Miss Tox as - '\n\n'Dombey,' returned the Major, 'I hint at nothing. But Joey B. has\nlived in the world, Sir: lived in the world with his eyes open, Sir,\nand his ears cocked: and Joe tells you, Dombey, that there's a\ndevilish artful and ambitious woman over the way.'\n\nMr Dombey involuntarily glanced over the way; and an angry glance\nhe sent in that direction, too.\n\n'That's all on such a subject that shall pass the lips of Joseph\nBagstock,' said the Major firmly. 'Joe is not a tale-bearer, but there\nare times when he must speak, when he will speak! - confound your\narts, Ma'am,' cried the Major, again apostrophising his fair\nneighbour, with great ire, - 'when the provocation is too strong to\nadmit of his remaining silent.'\n\nThe emotion of this outbreak threw the Major into a paroxysm of\nhorse's coughs, which held him for a long time. On recovering he\nadded:\n\n'And now, Dombey, as you have invited Joe - old Joe, who has no\nother merit, Sir, but that he is tough and hearty - to be your guest\nand guide at Leamington, command him in any way you please, and he is\nwholly yours. I don't know, Sir,' said the Major, wagging his double\nchin with a jocose air, 'what it is you people see in Joe to make you\nhold him in such great request, all of you; but this I know, Sir, that\nif he wasn't pretty tough, and obstinate in his refusals, you'd kill\nhim among you with your invitations and so forth, in double-quick\ntime.'\n\nMr Dombey, in a few words, expressed his sense of the preference he\nreceived over those other distinguished members of society who were\nclamouring for the possession of Major Bagstock. But the Major cut him\nshort by giving him to understand that he followed his own\ninclinations, and that they had risen up in a body and said with one\naccord, 'J. B., Dombey is the man for you to choose as a friend.'\n\nThe Major being by this time in a state of repletion, with essence\nof savoury pie oozing out at the corners of his eyes, and devilled\ngrill and kidneys tightening his cravat: and the time moreover\napproaching for the departure of the railway train to Birmingham, by\nwhich they were to leave town: the Native got him into his great-coat\nwith immense difficulty, and buttoned him up until his face looked\nstaring and gasping, over the top of that garment, as if he were in a\nbarrel. The Native then handed him separately, and with a decent\ninterval between each supply, his washleather gloves, his thick stick,\nand his hat; which latter article the Major wore with a rakish air on\none side of his head, by way of toning down his remarkable visage. The\nNative had previously packed, in all possible and impossible parts of\nMr Dombey's chariot, which was in waiting, an unusual quantity of\ncarpet-bags and small portmanteaus, no less apoplectic in appearance\nthan the Major himself: and having filled his own pockets with Seltzer\nwater, East India sherry, sandwiches, shawls, telescopes, maps, and\nnewspapers, any or all of which light baggage the Major might require\nat any instant of the journey, he announced that everything was ready.\nTo complete the equipment of this unfortunate foreigner (currently\nbelieved to be a prince in his own country), when he took his seat in\nthe rumble by the side of Mr Towlinson, a pile of the Major's cloaks\nand great-coats was hurled upon him by the landlord, who aimed at him\nfrom the pavement with those great missiles like a Titan, and so\ncovered him up, that he proceeded, in a living tomb, to the railroad\nstation.\n\nBut before the carriage moved away, and while the Native was in the\nact of sepulture, Miss Tox appearing at her window, waved a lilywhite\nhandkerchief. Mr Dombey received this parting salutation very coldly -\nvery coldly even for him - and honouring her with the slightest\npossible inclination of his head, leaned back in the carriage with a\nvery discontented look. His marked behaviour seemed to afford the\nMajor (who was all politeness in his recognition of Miss Tox)\nunbounded satisfaction; and he sat for a long time afterwards,\nleering, and choking, like an over-fed Mephistopheles.\n\nDuring the bustle of preparation at the railway, Mr Dombey and the\nMajor walked up and down the platform side by side; the former\ntaciturn and gloomy, and the latter entertaining him, or entertaining\nhimself, with a variety of anecdotes and reminiscences, in most of\nwhich Joe Bagstock was the principal performer. Neither of the two\nobserved that in the course of these walks, they attracted the\nattention of a working man who was standing near the engine, and who\ntouched his hat every time they passed; for Mr Dombey habitually\nlooked over the vulgar herd, not at them; and the Major was looking,\nat the time, into the core of one of his stories. At length, however,\nthis man stepped before them as they turned round, and pulling his hat\noff, and keeping it off, ducked his head to Mr Dombey.\n\n'Beg your pardon, Sir,' said the man, 'but I hope you're a doin'\npretty well, Sir.'\n\nHe was dressed in a canvas suit abundantly besmeared with coal-dust\nand oil, and had cinders in his whiskers, and a smell of half-slaked\nashes all over him. He was not a bad-looking fellow, nor even what\ncould be fairly called a dirty-looking fellow, in spite of this; and,\nin short, he was Mr Toodle, professionally clothed.\n\n'I shall have the honour of stokin' of you down, Sir,' said Mr\nToodle. 'Beg your pardon, Sir. - I hope you find yourself a coming\nround?'\n\nMr Dombey looked at him, in return for his tone of interest, as if\na man like that would make his very eyesight dirty.\n\n''Scuse the liberty, Sir,' said Toodle, seeing he was not clearly\nremembered, 'but my wife Polly, as was called Richards in your family\n- '\n\nA change in Mr Dombey's face, which seemed to express recollection\nof him, and so it did, but it expressed in a much stronger degree an\nangry sense of humiliation, stopped Mr Toodle short.\n\n'Your wife wants money, I suppose,' said Mr Dombey, putting his\nhand in his pocket, and speaking (but that he always did) haughtily.\n\n'No thank'ee, Sir,' returned Toodle, 'I can't say she does. I\ndon't.'\n\nMr Dombey was stopped short now in his turn: and awkwardly: with\nhis hand in his pocket.\n\n'No, Sir,' said Toodle, turning his oilskin cap round and round;\n'we're a doin' pretty well, Sir; we haven't no cause to complain in\nthe worldly way, Sir. We've had four more since then, Sir, but we rubs\non.'\n\nMr Dombey would have rubbed on to his own carriage, though in so\ndoing he had rubbed the stoker underneath the wheels; but his\nattention was arrested by something in connexion with the cap still\ngoing slowly round and round in the man's hand.\n\n'We lost one babby,' observed Toodle, 'there's no denyin'.'\n\n'Lately,' added Mr Dombey, looking at the cap.\n\n'No, Sir, up'ard of three years ago, but all the rest is hearty.\nAnd in the matter o readin', Sir,' said Toodle, ducking again, as if\nto remind Mr Dombey of what had passed between them on that subject\nlong ago, 'them boys o' mine, they learned me, among 'em, arter all.\nThey've made a wery tolerable scholar of me, Sir, them boys.'\n\n'Come, Major!' said Mr Dombey.\n\n'Beg your pardon, Sir,' resumed Toodle, taking a step before them\nand deferentially stopping them again, still cap in hand: 'I wouldn't\nhave troubled you with such a pint except as a way of gettin' in the\nname of my son Biler - christened Robin - him as you was so good as to\nmake a Charitable Grinder on.'\n\n'Well, man,' said Mr Dombey in his severest manner. 'What about\nhim?'\n\n'Why, Sir,' returned Toodle, shaking his head with a face of great\nanxiety and distress, 'I'm forced to say, Sir, that he's gone wrong.\n\n'He has gone wrong, has he?' said Mr Dombey, with a hard kind of\nsatisfaction.\n\n'He has fell into bad company, you see, genelmen,' pursued the\nfather, looking wistfully at both, and evidently taking the Major into\nthe conversation with the hope of having his sympathy. 'He has got\ninto bad ways. God send he may come to again, genelmen, but he's on\nthe wrong track now! You could hardly be off hearing of it somehow,\nSir,' said Toodle, again addressing Mr Dombey individually; 'and it's\nbetter I should out and say my boy's gone rather wrong. Polly's\ndreadful down about it, genelmen,' said Toodle with the same dejected\nlook, and another appeal to the Major.\n\n'A son of this man's whom I caused to be educated, Major,' said Mr\nDombey, giving him his arm. 'The usual return!'\n\n'Take advice from plain old Joe, and never educate that sort of\npeople, Sir,' returned the Major. 'Damme, Sir, it never does! It\nalways fails!'\n\nThe simple father was beginning to submit that he hoped his son,\nthe quondam Grinder, huffed and cuffed, and flogged and badged, and\ntaught, as parrots are, by a brute jobbed into his place of\nschoolmaster with as much fitness for it as a hound, might not have\nbeen educated on quite a right plan in some undiscovered respect, when\nMr Dombey angrily repeating 'The usual return!' led the Major away.\nAnd the Major being heavy to hoist into Mr Dombey's carriage, elevated\nin mid-air, and having to stop and swear that he would flay the Native\nalive, and break every bone in his skin, and visit other physical\ntorments upon him, every time he couldn't get his foot on the step,\nand fell back on that dark exile, had barely time before they started\nto repeat hoarsely that it would never do: that it always failed: and\nthat if he were to educate 'his own vagabond,' he would certainly be\nhanged.\n\nMr Dombey assented bitterly; but there was something more in his\nbitterness, and in his moody way of falling back in the carriage, and\nlooking with knitted brows at the changing objects without, than the\nfailure of that noble educational system administered by the Grinders'\nCompany. He had seen upon the man's rough cap a piece of new crape,\nand he had assured himself, from his manner and his answers, that he\nwore it for his son.\n\nSo] from high to low, at home or abroad, from Florence in his great\nhouse to the coarse churl who was feeding the fire then smoking before\nthem, everyone set up some claim or other to a share in his dead boy,\nand was a bidder against him! Could he ever forget how that woman had\nwept over his pillow, and called him her own child! or how he, waking\nfrom his sleep, had asked for her, and had raised himself in his bed\nand brightened when she carne in!\n\nTo think of this presumptuous raker among coals and ashes going on\nbefore there, with his sign of mourning! To think that he dared to\nenter, even by a common show like that, into the trial and\ndisappointrnent of a proud gentleman's secret heart! To think that\nthis lost child, who was to have divided with him his riches, and his\nprojects, and his power, and allied with whom he was to have shut out\nall the world as with a double door of gold, should have let in such a\nherd to insult him with their knowledge of his defeated hopes, and\ntheir boasts of claiming community of feeling with himself, so far\nremoved: if not of having crept into the place wherein he would have\nlorded it, alone!\n\nHe found no pleasure or relief in the journey. Tortured by these\nthoughts he carried monotony with him, through the rushing landscape,\nand hurried headlong, not through a rich and varied country, but a\nwilderness of blighted plans and gnawing jealousies. The very speed at\nwhich the train was whirled along, mocked the swift course of the\nyoung life that had been borne away so steadily and so inexorably to\nits foredoomed end. The power that forced itself upon its iron way -\nits own - defiant of all paths and roads, piercing through the heart\nof every obstacle, and dragging living creatures of all classes, ages,\nand degrees behind it, was a type of the triumphant monster, Death.\n\nAway, with a shriek, and a roar, and a rattle, from the town,\nburrowmg among the dwellings of men and making the streets hum,\nflashing out into the meadows for a moment, mining in through the damp\nearth, booming on in darkness and heavy air, bursting out again into\nthe sunny day so bright and wide; away, with a shriek, and a roar, and\na rattle, through the fields, through the woods, through the corn,\nthrough the hay, through the chalk, through the mould, through the\nclay, through the rock, among objects close at hand and almost in the\ngrasp, ever flying from the traveller, and a deceitful distance ever\nmoving slowly within him: like as in the track of the remorseless\nmonster, Death!\n\nThrough the hollow, on the height, by the heath, by the orchard, by\nthe park, by the garden, over the canal, across the river, where the\nsheep are feeding, where the mill is going, where the barge is\nfloating, where the dead are lying, where the factory is smoking,\nwhere the stream is running, where the village clusters, where the\ngreat cathedral rises, where the bleak moor lies, and the wild breeze\nsmooths or ruffles it at its inconstant will; away, with a shriek, and\na roar, and a rattle, and no trace to leave behind but dust and\nvapour: like as in the track of the remorseless monster, Death!\n\nBreasting the wind and light, the shower and sunshine, away, and\nstill away, it rolls and roars, fierce and rapid, smooth and certain,\nand great works and massive bridges crossing up above, fall like a\nbeam of shadow an inch broad, upon the eye, and then are lost. Away,\nand still away, onward and onward ever: glimpses of cottage-homes, of\nhouses, mansions, rich estates, of husbandry and handicraft, of\npeople, of old roads and paths that look deserted, small, and\ninsignificant as they are left behind: and so they do, and what else\nis there but such glimpses, in the track of the indomitable monster,\nDeath!\n\nAway, with a shriek, and a roar, and a rattle, plunging down into\nthe earth again, and working on in such a storm of energy and\nperseverance, that amidst the darkness and whirlwind the motion seems\nreversed, and to tend furiously backward, until a ray of light upon\nthe Wet wall shows its surface flying past like a fierce stream, Away\nonce more into the day, and through the day, with a shrill yell of\nexultation, roaring, rattling, tearing on, spurning everything with\nits dark breath, sometimes pausing for a minute where a crowd of faces\nare, that in a minute more are not; sometimes lapping water greedily,\nand before the spout at which it drinks' has ceased to drip upon the\nground, shrieking, roaring, rattling through the purple distance!\n\nLouder and louder yet, it shrieks and cries as it comes tearing on\nresistless to the goal: and now its way, still like the way of Death,\nis strewn with ashes thickly. Everything around is blackened. There\nare dark pools of water, muddy lanes, and miserable habitations far\nbelow. There are jagged walls and falling houses close at hand, and\nthrough the battered roofs and broken windows, wretched rooms are\nseen, where 'want and fever hide themselves in many wretched shapes,\nwhile smoke and crowded gables, and distorted chimneys, and deformity\nof brick and mortar penning up deformity of mind and body, choke the\nmurky distance. As Mr Dombey looks out of his carriage window, it is\nnever in his thoughts that the monster who has brought him there has\nlet the light of day in on these things: not made or caused them. It\nwas the journey's fitting end, and might have been the end of\neverything; it was so ruinous and dreary.'\n\nSo, pursuing the one course of thought, he had the one relentless\nmonster still before him. All things looked black, and cold, and\ndeadly upon him, and he on them. He found a likeness to his misfortune\neverywhere. There was a remorseless triumph going on about him, and it\ngalled and stung him in his pride and jealousy, whatever form it took:\nthough most of all when it divided with him the love and memory of his\nlost boy.\n\nThere was a face - he had looked upon it, on the previous night,\nand it on him with eyes that read his soul, though they were dim with\ntears, and hidden soon behind two quivering hands - that often had\nattended him in fancy, on this ride. He had seen it, with the\nexpression of last night, timidly pleading to him. It was not\nreproachful, but there was something of doubt, almost of hopeful\nincredulity in it, which, as he once more saw that fade away into a\ndesolate certainty of his dislike, was like reproach. It was a trouble\nto him to think of this face of Florence.\n\nBecause he felt any new compunction towards it? No. Because the\nfeeling it awakened in him - of which he had had some old\nforeshadowing in older times - was full-formed now, and spoke out\nplainly, moving him too much, and threatening to grow too strong for\nhis composure. Because the face was abroad, in the expression of\ndefeat and persecution that seemed to encircle him like the air.\nBecause it barbed the arrow of that cruel and remorseless enemy on\nwhich his thoughts so ran, and put into its grasp a double-handed\nsword. Because he knew full well, in his own breast, as he stood\nthere, tinging the scene of transition before him with the morbid\ncolours of his own mind, and making it a ruin and a picture of decay,\ninstead of hopeful change, and promise of better things, that life had\nquite as much to do with his complainings as death. One child was\ngone, and one child left. Why was the object of his hope removed\ninstead of her?\n\nThe sweet, calm, gentle presence in his fancy, moved him to no\nreflection but that. She had been unwelcome to him from the first; she\nwas an aggravation of his bitterness now. If his son had been his only\nchild, and the same blow had fallen on him, it would have been heavy\nto bear; but infinitely lighter than now, when it might have fallen on\nher (whom he could have lost, or he believed it, without a pang), and\nhad not. Her loving and innocent face rising before him, had no\nsoftening or winning influence. He rejected the angel, and took up\nwith the tormenting spirit crouching in his bosom. Her patience,\ngoodness, youth, devotion, love, were as so many atoms in the ashes\nupon which he set his heel. He saw her image in the blight and\nblackness all around him, not irradiating but deepening the gloom.\nMore than once upon this journey, and now again as he stood pondering\nat this journey's end, tracing figures in the dust with his stick, the\nthought came into his mind, what was there he could interpose between\nhimself and it?\n\nThe Major, who had been blowing and panting all the way down, like\nanother engine, and whose eye had often wandered from his newspaper to\nleer at the prospect, as if there were a procession of discomfited\nMiss Toxes pouring out in the smoke of the train, and flying away over\nthe fields to hide themselves in any place of refuge, aroused his\nfriends by informing him that the post-horses were harnessed and the\ncarriage ready.\n\n'Dombey,' said the Major, rapping him on the arm with his cane,\n'don't be thoughtful. It's a bad habit, Old Joe, Sir, wouldn't be as\ntough as you see him, if he had ever encouraged it. You are too great\na man, Dombey, to be thoughtful. In your position, Sir, you're far\nabove that kind of thing.'\n\nThe Major even in his friendly remonstrrnces, thus consulting the\ndignity and honour of Mr Dombey, and showing a lively sense of their\nimportance, Mr Dombey felt more than ever disposed to defer to a\ngentleman possessing so much good sense and such a well-regulated\nmind; acoordingly he made an effort to listen to the Major's stories,\nas they trotted along the turnpike road; and the Major, finding both\nthe pace and the road a great deal better adapted to his\nconversational powers than the mode of travelling they had just\nrelinquished, came out of his entertainment,\n\nBut still the Major, blunt and tough as he was, and as he so very\noften said he was, administered some palatable catering to his\ncompanion's appetite. He related, or rather suffered it to escape him,\naccidentally, and as one might say, grudgingly and against his will,\nhow there was great curiosity and excitement at the club, in regard of\nhis friend Dombey. How he was suffocated with questions, Sir. How old\nJoe Bagstock was a greater man than ever, there, on the strength of\nDombey. How they said, 'Bagstock, your friend Dombey now, what is the\nview he takes of such and such a question? Though, by the Rood, Sir,'\nsaid the Major, with a broad stare, 'how they discovered that J. B.\never came to know you, is a mystery!'\n\nIn this flow of spirits and conversation, only interrupted by his\nusual plethoric symptoms, and by intervals of lunch, and from time to\ntime by some violent assault upon the Native, who wore a pair of\near-rings in his dark-brown ears, and on whom his European clothes sat\nwith an outlandish impossibility of adjustment - being, of their own\naccord, and without any reference to the tailor's art, long where they\nought to be short, short where they ought to be long, tight where they\nought to be loose, and loose where they ought to be tight - and to\nwhich he imparted a new grace, whenever the Major attacked him, by\nshrinking into them like a shrivelled nut, or a cold monkey - in this\nflow of spirits and conversation, the Major continued all day: so that\nwhen evening came on, and found them trotting through the green and\nleafy road near Leamington, the Major's voice, what with talking and\neating and chuckling and choking, appeared to be in the box under the\nrumble, or in some neighbouring hay-stack. Nor did the Major improve\nit at the Royal Hotel, where rooms and dinner had been ordered, and\nwhere he so oppressed his organs of speech by eating and drinking,\nthat when he retired to bed he had no voice at all, except to cough\nwith, and could only make himself intelligible to the dark servant by\ngasping at him.\n\nHe not only rose next morning, however, like a giant refreshed, but\nconducted himself, at breakfast like a giant refreshing. At this meal\nthey arranged their daily habits. The Major was to take the\nresponsibility of ordering evrything to eat and drink; and they were\nto have a late breakfast together every morning, and a late dinner\ntogether every day. Mr Dombey would prefer remaining in his own room,\nor walking in the country by himself, on that first day of their\nsojourn at Leamington; but next morning he would be happy to accompany\nthe Major to the Pump-room, and about the town. So they parted until\ndinner-time. Mr Dombey retired to nurse his wholesome thoughts in his\nown way. The Major, attended by the Native carrying a camp-stool, a\ngreat-coat, and an umbrella, swaggered up and down through all the\npublic places: looking into subscription books to find out who was\nthere, looking up old ladies by whom he was much admired, reporting J.\nB. tougher than ever, and puffing his rich friend Dombey wherever he\nwent. There never was a man who stood by a friend more staunchly than\nthe Major, when in puffing him, he puffed himself.\n\nIt was surprising how much new conversation the Major had to let\noff at dinner-time, and what occasion he gave Mr Dombey to admire his\nsocial qualities. At breakfast next morning, he knew the contents of\nthe latest newspapers received; and mentioned several subjects in\nconnexion with them, on which his opinion had recently been sought by\npersons of such power and might, that they were only to be obscurely\nhinted at. Mr Dombey, who had been so long shut up within himself, and\nwho had rarely, at any time, overstepped the enchanted circle within\nwhich the operations of Dombey and Son were conducted, began to think\nthis an improvement on his solitary life; and in place of excusing\nhimself for another day, as he had thought of doing when alone, walked\nout with the Major arm-in-arm.\n\n\n\nCHAPTER 21.\n\nNew Faces\n\n\n\nThe MAJOR, more blue-faced and staring - more over-ripe, as it\nwere, than ever - and giving vent, every now and then, to one of the\nhorse's coughs, not so much of necessity as in a spontaneous explosion\nof importance, walked arm-in-arm with Mr Dombey up the sunny side of\nthe way, with his cheeks swelling over his tight stock, his legs\nmajestically wide apart, and his great head wagging from side to side,\nas if he were remonstrating within himself for being such a\ncaptivating object. They had not walked many yards, before the Major\nencountered somebody he knew, nor many yards farther before the Major\nencountered somebody else he knew, but he merely shook his fingers at\nthem as he passed, and led Mr Dombey on: pointing out the localities\nas they went, and enlivening the walk with any current scandal\nsuggested by them.\n\nIn this manner the Major and Mr Dombey were walking arm-in-arm,\nmuch to their own satisfaction, when they beheld advancing towards\nthem, a wheeled chair, in which a lady was seated, indolently steering\nher carriage by a kind of rudder in front, while it was propelled by\nsome unseen power in the rear. Although the lady was not young, she\nwas very blooming in the face - quite rosy- and her dress and attitude\nwere perfectly juvenile. Walking by the side of the chair, and\ncarrying her gossamer parasol with a proud and weary air, as if so\ngreat an effort must be soon abandoned and the parasol dropped,\nsauntered a much younger lady, very handsome, very haughty, very\nwilful, who tossed her head and drooped her eyelids, as though, if\nthere were anything in all the world worth looking into, save a\nmirror, it certainly was not the earth or sky.\n\n'Why, what the devil have we here, Sir!' cried the Major, stopping\nas this little cavalcade drew near.\n\n'My dearest Edith!' drawled the lady in the chair, 'Major\nBagstock!'\n\nThe Major no sooner heard the voice, than he relinquished Mr\nDombey's arm, darted forward, took the hand of the lady in the chair\nand pressed it to his lips. With no less gallantry, the Major folded\nboth his gloves upon his heart, and bowed low to the other lady. And\nnow, the chair having stopped, the motive power became visible in the\nshape of a flushed page pushing behind, who seemed to have in part\noutgrown and in part out-pushed his strength, for when he stood\nupright he was tall, and wan, and thin, and his plight appeared the\nmore forlorn from his having injured the shape of his hat, by butting\nat the carriage with his head to urge it forward, as is sometimes done\nby elephants in Oriental countries.\n\n'Joe Bagstock,' said the Major to both ladies, 'is a proud and\nhappy man for the rest of his life.'\n\n'You false creature! said the old lady in the chair, insipidly.\n'Where do you come from? I can't bear you.'\n\n'Then suffer old Joe to present a friend, Ma'am,' said the Major,\npromptly, 'as a reason for being tolerated. Mr Dombey, Mrs Skewton.'\nThe lady in the chair was gracious. 'Mr Dombey, Mrs Granger.' The lady\nwith the parasol was faintly conscious of Mr Dombey's taking off his\nhat, and bowing low. 'I am delighted, Sir,' said the Major, 'to have\nthis opportunity.'\n\nThe Major seemed in earnest, for he looked at all the three, and\nleered in his ugliest manner.\n\n'Mrs Skewton, Dombey,' said the Major, 'makes havoc in the heart of\nold Josh.'\n\nMr Dombey signified that he didn't wonder at it.\n\n'You perfidious goblin,' said the lady in the chair, 'have done!\nHow long have you been here, bad man?'\n\n'One day,' replied the Major.\n\n'And can you be a day, or even a minute,' returned the lady,\nslightly settling her false curls and false eyebrows with her fan, and\nshowing her false teeth, set off by her false complexion, 'in the\ngarden of what's-its-name\n\n'Eden, I suppose, Mama,' interrupted the younger lady, scornfully.\n\n'My dear Edith,' said the other, 'I cannot help it. I never can\nremember those frightful names - without having your whole Soul and\nBeing inspired by the sight of Nature; by the perfume,' said Mrs\nSkewton, rustling a handkerchief that was faint and sickly with\nessences, 'of her artless breath, you creature!'\n\nThe discrepancy between Mrs Skewton's fresh enthusiasm of words,\nand forlornly faded manner, was hardly less observable than that\nbetween her age, which was about seventy, and her dress, which would\nhave been youthful for twenty-seven. Her attitude in the wheeled chair\n(which she never varied) was one in which she had been taken in a\nbarouche, some fifty years before, by a then fashionable artist who\nhad appended to his published sketch the name of Cleopatra: in\nconsequence of a discovery made by the critics of the time, that it\nbore an exact resemblance to that Princess as she reclined on board\nher galley. Mrs Skewton was a beauty then, and bucks threw\nwine-glasses over their heads by dozens in her honour. The beauty and\nthe barouche had both passed away, but she still preserved the\nattitude, and for this reason expressly, maintained the wheeled chair\nand the butting page: there being nothing whatever, except the\nattitude, to prevent her from walking.\n\n'Mr Dombey is devoted to Nature, I trust?' said Mrs Skewton,\nsettling her diamond brooch. And by the way, she chiefly lived upon\nthe reputation of some diamonds, and her family connexions.\n\n'My friend Dombey, Ma'am,' returned the Major, 'may be devoted to\nher in secret, but a man who is paramount in the greatest city in the\nuniverse -\n\n'No one can be a stranger,' said Mrs Skewton, 'to Mr Dombey's\nimmense influence.'\n\nAs Mr Dombey acknowledged the compliment with a bend of his head,\nthe younger lady glancing at him, met his eyes.\n\n'You reside here, Madam?' said Mr Dombey, addressing her.\n\n'No, we have been to a great many places. To Harrogate and\nScarborough, and into Devonshire. We have been visiting, and resting\nhere and there. Mama likes change.'\n\n'Edith of course does not,' said Mrs Skewton, with a ghastly\narchness.\n\n'I have not found that there is any change in such places,' was the\nanswer, delivered with supreme indifference.\n\n'They libel me. There is only one change, Mr Dombey,' observed Mrs\nSkewton, with a mincing sigh, 'for which I really care, and that I\nfear I shall never be permitted to enjoy. People cannot spare one. But\nseclusion and contemplation are my what-his-name - '\n\n'If you mean Paradise, Mama, you had better say so, to render\nyourself intelligible,' said the younger lady.\n\n'My dearest Edith,' returned Mrs Skewton, 'you know that I am\nwholly dependent upon you for those odious names. I assure you, Mr\nDombey, Nature intended me for an Arcadian. I am thrown away in\nsociety. Cows are my passion. What I have ever sighed for, has been to\nretreat to a Swiss farm, and live entirely surrounded by cows - and\nchina.'\n\nThis curious association of objects, suggesting a remembrance of\nthe celebrated bull who got by mistake into a crockery shop, was\nreceived with perfect gravity by Mr Dombey, who intimated his opinion\nthat Nature was, no doubt, a very respectable institution.\n\n'What I want,' drawled Mrs Skewton, pinching her shrivelled throat,\n'is heart.' It was frightfully true in one sense, if not in that in\nwhich she used the phrase. 'What I want, is frankness, confidence,\nless conventionality, and freer play of soul. We are so dreadfully\nartificial.'\n\nWe were, indeed.\n\n'In short,' said Mrs Skewton, 'I want Nature everywhere. It would\nbe so extremely charming.'\n\n'Nature is inviting us away now, Mama, if you are ready,' said the\nyounger lady, curling her handsome lip. At this hint, the wan page,\nwho had been surveying the party over the top of the chair, vanished\nbehind it, as if the ground had swallowed him up.\n\n'Stop a moment, Withers!' said Mrs Skewton, as the chair began to\nmove; calling to the page with all the languid dignity with which she\nhad called in days of yore to a coachman with a wig, cauliflower\nnosegay, and silk stockings. 'Where are you staying, abomination?' The\nMajor was staying at the Royal Hotel, with his friend Dombey.\n\n'You may come and see us any evening when you are good,' lisped Mrs\nSkewton. 'If Mr Dombey will honour us, we shall be happy. Withers, go\non!'\n\nThe Major again pressed to his blue lips the tips of the fingers\nthat were disposed on the ledge of the wheeled chair with careful\ncarelessness, after the Cleopatra model: and Mr Dombey bowed. The\nelder lady honoured them both with a very gracious smile and a girlish\nwave of her hand; the younger lady with the very slightest inclination\nof her head that common courtesy allowed.\n\nThe last glimpse of the wrinkled face of the mother, with that\npatched colour on it which the sun made infinitely more haggard and\ndismal than any want of colour could have been, and of the proud\nbeauty of the daughter with her graceful figure and erect deportment,\nengendered such an involuntary disposition on the part of both the\nMajor and Mr Dombey to look after them, that they both turned at the\nsame moment. The Page, nearly as much aslant as his own shadow, was\ntoiling after the chair, uphill, like a slow battering-ram; the top of\nCleopatra's bonnet was fluttering in exactly the same corner to the\ninch as before; and the Beauty, loitering by herself a little in\nadvance, expressed in all her elegant form, from head to foot, the\nsame supreme disregard of everything and everybody.\n\n'I tell you what, Sir,' said the Major, as they resumed their walk\nagain. 'If Joe Bagstock were a younger man, there's not a woman in the\nworld whom he'd prefer for Mrs Bagstock to that woman. By George,\nSir!' said the Major, 'she's superb!'\n\n'Do you mean the daughter?' inquired Mr Dombey.\n\n'Is Joey B. a turnip, Dombey,' said the Major, 'that he should mean\nthe mother?'\n\n'You were complimentary to the mother,' returned Mr Dombey.\n\n'An ancient flame, Sir,' chuckled Major Bagstock. 'Devilish\nancient. I humour her.'\n\n'She impresses me as being perfectly genteel,' said Mr Dombey.\n\n'Genteel, Sir,' said the Major, stopping short, and staring in his\ncompanion's face. 'The Honourable Mrs Skewton, Sir, is sister to the\nlate Lord Feenix, and aunt to the present Lord. The family are not\nwealthy - they're poor, indeed - and she lives upon a small jointure;\nbut if you come to blood, Sir!' The Major gave a flourish with his\nstick and walked on again, in despair of being able to say what you\ncame to, if you came to that.\n\n'You addressed the daughter, I observed,' said Mr Dombey, after a\nshort pause, 'as Mrs Granger.'\n\n'Edith Skewton, Sir,' returned the Major, stopping short again, and\npunching a mark in the ground with his cane, to represent her,\n'married (at eighteen) Granger of Ours;' whom the Major indicated by\nanother punch. 'Granger, Sir,' said the Major, tapping the last ideal\nportrait, and rolling his head emphatically, 'was Colonel of Ours; a\nde-vilish handsome fellow, Sir, of forty-one. He died, Sir, in the\nsecond year of his marriage.' The Major ran the representative of the\ndeceased Granger through and through the body with his walking-stick,\nand went on again, carrying his stick over his shoulder.\n\n'How long is this ago?' asked Mr Dombey, making another halt.\n\n'Edith Granger, Sir,' replied the Major, shutting one eye, putting\nhis head on one side, passing his cane into his left hand, and\nsmoothing his shirt-frill with his right, 'is, at this present time,\nnot quite thirty. And damme, Sir,' said the Major, shouldering his\nstick once more, and walking on again, 'she's a peerless woman!'\n\n'Was there any family?' asked Mr Dombey presently.\n\n'Yes, Sir,' said the Major. 'There was a boy.'\n\nMr Dombey's eyes sought the ground, and a shade came over his face.\n\n'Who was drowned, Sir,' pursued the Major. 'When a child of four or\nfive years old.'\n\n'Indeed?' said Mr Dombey, raising his head.\n\n'By the upsetting of a boat in which his nurse had no business to\nhave put him,' said the Major. 'That's his history. Edith Granger is\nEdith Granger still; but if tough old Joey B., Sir, were a little\nyounger and a little richer, the name of that immortal paragon should\nbe Bagstock.'\n\nThe Major heaved his shoulders, and his cheeks, and laughed more\nlike an over-fed Mephistopheles than ever, as he said the words.\n\n'Provided the lady made no objection, I suppose?' said Mr Dombey\ncoldly.\n\n'By Gad, Sir,' said the Major, 'the Bagstock breed are not\naccustomed to that sort of obstacle. Though it's true enough that\nEdith might have married twenty times, but for being proud, Sir,\nproud.'\n\nMr Dombey seemed, by his face, to think no worse of her for that.\n\n'It's a great quality after all,' said the Major. 'By the Lord,\nit's a high quality! Dombey! You are proud yourself, and your friend,\nOld Joe, respects you for it, Sir.'\n\nWith this tribute to the character of his ally, which seemed to be\nwrung from him by the force of circumstances and the irresistible\ntendency of their conversation, the Major closed the subject, and\nglided into a general exposition of the extent to which he had been\nbeloved and doted on by splendid women and brilliant creatures.\n\nOn the next day but one, Mr Dombey and the Major encountered the\nHonourable Mrs Skewton and her daughter in the Pump-room; on the day\nafter, they met them again very near the place where they had met them\nfirst. After meeting them thus, three or four times in all, it became\na point of mere civility to old acquaintances that the Major should go\nthere one evening. Mr Dombey had not originally intended to pay\nvisits, but on the Major announcing this intention, he said he would\nhave the pleasure of accompanying him. So the Major told the Native to\ngo round before dinner, and say, with his and Mr Dombey's compliments,\nthat they would have the honour of visiting the ladies that same\nevening, if the ladies were alone. In answer to which message, the\nNative brought back a very small note with a very large quantity of\nscent about it, indited by the Honourable Mrs Skewton to Major\nBagstock, and briefly saying, 'You are a shocking bear and I have a\ngreat mind not to forgive you, but if you are very good indeed,' which\nwas underlined, 'you may come. Compliments (in which Edith unites) to\nMr Dombey.'\n\nThe Honourable Mrs Skewton and her daughter, Mrs Granger, resided,\nwhile at Leamington, in lodgings that were fashionable enough and dear\nenough, but rather limited in point of space and conveniences; so that\nthe Honourable Mrs Skewton, being in bed, had her feet in the window\nand her head in the fireplace, while the Honourable Mrs Skewton's maid\nwas quartered in a closet within the drawing-room, so extremely small,\nthat, to avoid developing the whole of its accommodations, she was\nobliged to writhe in and out of the door like a beautiful serpent.\nWithers, the wan page, slept out of the house immediately under the\ntiles at a neighbouring milk-shop; and the wheeled chair, which was\nthe stone of that young Sisyphus, passed the night in a shed belonging\nto the same dairy, where new-laid eggs were produced by the poultry\nconnected with the establishment, who roosted on a broken donkey-cart,\npersuaded, to all appearance, that it grew there, and was a species of\ntree.\n\nMr Dombey and the Major found Mrs Skewton arranged, as Cleopatra,\namong the cushions of a sofa: very airily dressed; and certainly not\nresembling Shakespeare's Cleopatra, whom age could not wither. On\ntheir way upstairs they had heard the sound of a harp, but it had\nceased on their being announced, and Edith now stood beside it\nhandsomer and haughtier than ever. It was a remarkable characteristic\nof this lady's beauty that it appeared to vaunt and assert itself\nwithout her aid, and against her will. She knew that she was\nbeautiful: it was impossible that it could be otherwise: but she\nseemed with her own pride to defy her very self.\n\nWhether she held cheap attractions that could only call forth\nadmiration that was worthless to her, or whether she designed to\nrender them more precious to admirers by this usage of them, those to\nwhom they were precious seldom paused to consider.\n\n'I hope, Mrs Granger,' said Mr Dombey, advancing a step towards\nher, 'we are not the cause of your ceasing to play?'\n\n'You! oh no!'\n\n'Why do you not go on then, my dearest Edith?' said Cleopatra.\n\n'I left off as I began - of my own fancy.'\n\nThe exquisite indifference of her manner in saying this: an\nindifference quite removed from dulness or insensibility, for it was\npointed with proud purpose: was well set off by the carelessness with\nwhich she drew her hand across the strings, and came from that part of\nthe room.\n\n'Do you know, Mr Dombey,' said her languishing mother, playing with\na hand-screen, 'that occasionally my dearest Edith and myself actually\nalmost differ - '\n\n'Not quite, sometimes, Mama?' said Edith.\n\n'Oh never quite, my darling! Fie, fie, it would break my heart,'\nreturned her mother, making a faint attempt to pat her with the\nscreen, which Edith made no movement to meet, ' - about these old\nconventionalities of manner that are observed in little things? Why\nare we not more natural? Dear me! With all those yearnings, and\ngushings, and impulsive throbbings that we have implanted in our\nsouls, and which are so very charming, why are we not more natural?'\n\nMr Dombey said it was very true, very true.\n\n'We could be more natural I suppose if we tried?' said Mrs Skewton.\n\nMr Dombey thought it possible.\n\n'Devil a bit, Ma'am,' said the Major. 'We couldn't afford it.\nUnless the world was peopled with J.B.'s - tough and blunt old Joes,\nMa'am, plain red herrings with hard roes, Sir - we couldn't afford it.\nIt wouldn't do.'\n\n'You naughty Infidel,' said Mrs Skewton, 'be mute.'\n\n'Cleopatra commands,' returned the Major, kissing his hand, 'and\nAntony Bagstock obeys.'\n\n'The man has no sensitiveness,' said Mrs Skewton, cruelly holding\nup the hand-screen so as to shut the Major out. 'No sympathy. And what\ndo we live for but sympathy! What else is so extremely charming!\nWithout that gleam of sunshine on our cold cold earth,' said Mrs\nSkewton, arranging her lace tucker, and complacently observing the\neffect of her bare lean arm, looking upward from the wrist, 'how could\nwe possibly bear it? In short, obdurate man!' glancing at the Major,\nround the screen, 'I would have my world all heart; and Faith is so\nexcessively charming, that I won't allow you to disturb it, do you\nhear?'\n\nThe Major replied that it was hard in Cleopatra to require the\nworld to be all heart, and yet to appropriate to herself the hearts of\nall the world; which obliged Cleopatra to remind him that flattery was\ninsupportable to her, and that if he had the boldness to address her\nin that strain any more, she would positively send him home.\n\nWithers the Wan, at this period, handing round the tea, Mr Dombey\nagain addressed himself to Edith.\n\n'There is not much company here, it would seem?' said Mr Dombey, in\nhis own portentous gentlemanly way.\n\n'I believe not. We see none.'\n\n'Why really,' observed Mrs Skewton fom her couch, 'there are no\npeople here just now with whom we care to associate.'\n\n'They have not enough heart,' said Edith, with a smile. The very\ntwilight of a smile: so singularly were its light and darkness\nblended.\n\n'My dearest Edith rallies me, you see!' said her mother, shaking\nher head: which shook a little of itself sometimes, as if the palsy\nBed now and then in opposition to the diamonds. 'Wicked one!'\n\n'You have been here before, if I am not mistaken?' said Mr Dombey.\nStill to Edith.\n\n'Oh, several times. I think we have been everywhere.'\n\n'A beautiful country!'\n\n'I suppose it is. Everybody says so.'\n\n'Your cousin Feenix raves about it, Edith,' interposed her mother\nfrom her couch.\n\nThe daughter slightly turned her graceful head, and raising her\neyebrows by a hair's-breadth, as if her cousin Feenix were of all the\nmortal world the least to be regarded, turned her eyes again towards\nMr Dombey.\n\n'I hope, for the credit of my good taste, that I am tired of the\nneighbourhood,' she said.\n\n'You have almost reason to be, Madam,' he replied, glancing at a\nvariety of landscape drawings, of which he had already recognised\nseveral as representing neighbouring points of view, and which were\nstrewn abundantly about the room, 'if these beautiful productions are\nfrom your hand.'\n\nShe gave him no reply, but sat in a disdainful beauty, quite\namazing.\n\n'Have they that interest?' said Mr Dombey. 'Are they yours?'\n\n'Yes.'\n\n'And you play, I already know.'\n\n'Yes.'\n\n'And sing?'\n\n'Yes.'\n\nShe answered all these questions with a strange reluctance; and\nwith that remarkable air of opposition to herself, already noticed as\nbelonging to her beauty. Yet she was not embarrassed, but wholly\nself-possessed. Neither did she seem to wish to avoid the\nconversation, for she addressed her face, and - so far as she could -\nher manner also, to him; and continued to do so, when he was silent.\n\n'You have many resources against weariness at least,' said Mr\nDombey.\n\n'Whatever their efficiency may be,' she returned, 'you know them\nall now. I have no more.\n\n'May I hope to prove them all?' said Mr Dombey, with solemn\ngallantry, laying down a drawing he had held, and motioning towards\nthe harp.\n\n'Oh certainly] If you desire it!'\n\nShe rose as she spoke, and crossing by her mother's couch, and\ndirecting a stately look towards her, which was instantaneous in its\nduration, but inclusive (if anyone had seen it) of a multitude of\nexpressions, among which that of the twilight smile, without the smile\nitself, overshadowed all the rest, went out of the room.\n\nThe Major, who was quite forgiven by this time, had wheeled a\nlittle table up to Cleopatra, and was sitting down to play picquet\nwith her. Mr Dombey, not knowing the game, sat down to watch them for\nhis edification until Edith should return.\n\n'We are going to have some music, Mr Dombey, I hope?' said\nCleopatra.\n\n'Mrs Granger has been kind enough to promise so,' said Mr Dombey.\n\n'Ah! That's very nice. Do you propose, Major?'\n\n'No, Ma'am,' said the Major. 'Couldn't do it.'\n\n'You're a barbarous being,' replied the lady, 'and my hand's\ndestroyed. You are fond of music, Mr Dombey?'\n\n'Eminently so,' was Mr Dombey's answer.\n\n'Yes. It's very nice,' said Cleopatra, looking at her cards. 'So\nmuch heart in it - undeveloped recollections of a previous state of\nexistence' - and all that - which is so truly charming. Do you know,'\nsimpered Cleopatra, reversing the knave of clubs, who had come into\nher game with his heels uppermost, 'that if anything could tempt me to\nput a period to my life, it would be curiosity to find out what it's\nall about, and what it means; there are so many provoking mysteries,\nreally, that are hidden from us. Major, you to play.'\n\nThe Major played; and Mr Dombey, looking on for his instruction,\nwould soon have been in a state of dire confusion, but that he gave no\nattention to the game whatever, and sat wondering instead when Edith\nwould come back.\n\nShe came at last, and sat down to her harp, and Mr Dombey rose and\nstood beside her, listening. He had little taste for music, and no\nknowledge of the strain she played, but he saw her bending over it,\nand perhaps he heard among the sounding strings some distant music of\nhis own, that tamed the monster of the iron road, and made it less\ninexorable.\n\nCleopatra had a sharp eye, verily, at picquet. It glistened like a\nbird's, and did not fix itself upon the game, but pierced the room\nfrom end to end, and gleamed on harp, performer, listener, everything.\n\nWhen the haughty beauty had concluded, she arose, and receiving Mr\nDombey's thanks and compliments in exactly the same manner as before,\nwent with scarcely any pause to the piano, and began there.\n\nEdith Granger, any song but that! Edith Granger, you are very\nhandsome, and your touch upon the keys is brilliant, and your voice is\ndeep and rich; but not the air that his neglected daughter sang to his\ndead son]\n\nAlas, he knows it not; and if he did, what air of hers would stir\nhim, rigid man! Sleep, lonely Florence, sleep! Peace in thy dreams,\nalthough the night has turned dark, and the clouds are gathering, and\nthreaten to discharge themselves in hail!\n\n\n\nCHAPTER 22.\n\nA Trifle of Management by Mr Carker the Manager\n\n\n\nMr Carker the Manager sat at his desk, smooth and soft as usual,\nreading those letters which were reserved for him to open, backing\nthem occasionally with such memoranda and references as their business\npurport required, and parcelling them out into little heaps for\ndistribution through the several departments of the House. The post\nhad come in heavy that morning, and Mr Carker the Manager had a good\ndeal to do.\n\nThe general action of a man so engaged - pausing to look over a\nbundle of papers in his hand, dealing them round in various portions,\ntaking up another bundle and examining its contents with knitted brows\nand pursed-out lips - dealing, and sorting, and pondering by turns -\nwould easily suggest some whimsical resemblance to a player at cards.\nThe face of Mr Carker the Manager was in good keeping with such a\nfancy. It was the face of a man who studied his play, warily: who made\nhimself master of all the strong and weak points of the game: who\nregistered the cards in his mind as they fell about him, knew exactly\nwhat was on them, what they missed, and what they made: who was crafty\nto find out what the other players held, and who never betrayed his\nown hand.\n\nThe letters were in various languages, but Mr Carker the Manager\nread them all. If there had been anything in the offices of Dombey and\nSon that he could read, there would have been a card wanting in the\npack. He read almost at a glance, and made combinations of one letter\nwith another and one business with another as he went on, adding new\nmatter to the heaps - much as a man would know the cards at sight, and\nwork out their combinations in his mind after they were turned.\nSomething too deep for a partner, and much too deep for an adversary,\nMr Carker the Manager sat in the rays of the sun that came down\nslanting on him through the skylight, playing his game alone.\n\nAnd although it is not among the instincts wild or domestic of the\ncat tribe to play at cards, feline from sole to crown was Mr Carker\nthe Manager, as he basked in the strip of summer-light and warmth that\nshone upon his table and the ground as if they were a crooked\ndial-plate, and himself the only figure on it. With hair and whiskers\ndeficient in colour at all times, but feebler than common in the rich\nsunshine, and more like the coat of a sandy tortoise-shell cat; with\nlong nails, nicely pared and sharpened; with a natural antipathy to\nany speck of dirt, which made him pause sometimes and watch the\nfalling motes of dust, and rub them off his smooth white hand or\nglossy linen: Mr Carker the Manager, sly of manner, sharp of tooth,\nsoft of foot, watchful of eye, oily of tongue, cruel of heart, nice of\nhabit, sat with a dainty steadfastness and patience at his work, as if\nhe were waiting at a mouse's hole.\n\nAt length the letters were disposed of, excepting one which he\nreserved for a particular audience. Having locked the more\nconfidential correspondence in a drawer, Mr Carker the Manager rang\nhis bell.\n\n'Why do you answer it?' was his reception of his brother.\n\n'The messenger is out, and I am the next,' was the submissive\nreply.\n\n'You are the next?' muttered the Manager. 'Yes! Creditable to me!\nThere!'\n\nPointing to the heaps of opened letters, he turned disdainfully\naway, in his elbow-chair, and broke the seal of that one which he held\nin his hand.\n\n'I am sorry to trouble you, James,' said the brother, gathering\nthem up, 'but - '\n\n'Oh! you have something to say. I knew that. Well?'\n\nMr Carker the Manager did not raise his eyes or turn them on his\nbrother, but kept them on his letter, though without opening it.\n\n'Well?' he repeated sharply.\n\n'I am uneasy about Harriet.'\n\n'Harriet who? what Harriet? I know nobody of that name.'\n\n'She is not well, and has changed very much of late.'\n\n'She changed very much, a great many years ago,' replied the\nManager; 'and that is all I have to say.\n\n'I think if you would hear me -\n\n'Why should I hear you, Brother John?' returned the Manager, laying\na sarcastic emphasis on those two words, and throwing up his head, but\nnot lifting his eyes. 'I tell you, Harriet Carker made her choice many\nyears ago between her two brothers. She may repent it, but she must\nabide by it.'\n\n'Don't mistake me. I do not say she does repent it. It would be\nblack ingratitude in me to hint at such a thing,' returned the other.\n'Though believe me, James, I am as sorry for her sacrifice as you.'\n\n'As I?' exclaimed the Manager. 'As I?'\n\n'As sorry for her choice - for what you call her choice - as you\nare angry at it,' said the Junior.\n\n'Angry?' repeated the other, with a wide show of his teeth.\n\n'Displeased. Whatever word you like best. You know my meaning.\nThere is no offence in my intention.'\n\n'There is offence in everything you do,' replied his brother,\nglancing at him with a sudden scowl, which in a moment gave place to a\nwider smile than the last. 'Carry those papers away, if you please. I\nam busy.\n\nHis politeness was so much more cutting than his wrath, that the\nJunior went to the door. But stopping at it, and looking round, he\nsaid:\n\n'When Harriet tried in vain to plead for me with you, on your first\njust indignation, and my first disgrace; and when she left you, James,\nto follow my broken fortunes, and devote herself, in her mistaken\naffection, to a ruined brother, because without her he had no one, and\nwas lost; she was young and pretty. I think if you could see her now -\nif you would go and see her - she would move your admiration and\ncompassion.'\n\nThe Manager inclined his head, and showed his teeth, as who should\nsay, in answer to some careless small-talk, 'Dear me! Is that the\ncase?' but said never a word.\n\n'We thought in those days: you and I both: that she would marry\nyoung, and lead a happy and light-hearted life,' pursued the other.\n'Oh if you knew how cheerfully she cast those hopes away; how\ncheerfully she has gone forward on the path she took, and never once\nlooked back; you never could say again that her name was strange in\nyour ears. Never!'\n\nAgain the Manager inclined his head and showed his teeth, and\nseemed to say, 'Remarkable indeed! You quite surprise me!' And again\nhe uttered never a word.\n\n'May I go on?' said John Carker, mildly.\n\n'On your way?' replied his smiling brother. 'If you will have the\ngoodness.\n\nJohn Carker, with a sigh, was passing slowly out at the door, when\nhis brother's voice detained him for a moment on the threshold.\n\n'If she has gone, and goes, her own way cheerfully,' he said,\nthrowing the still unfolded letter on his desk, and putting his hands\nfirmly in his pockets, 'you may tell her that I go as cheerfully on\nmine. If she has never once looked back, you may tell her that I have,\nsometimes, to recall her taking part with you, and that my resolution\nis no easier to wear away;' he smiled very sweetly here; 'than\nmarble.'\n\n'I tell her nothing of you. We never speak about you. Once a year,\non your birthday, Harriet says always, \"Let us remember James by name,\nand wish him happy,\" but we say no more'\n\n'Tell it then, if you please,' returned the other, 'to yourself.\nYou can't repeat it too often, as a lesson to you to avoid the subject\nin speaking to me. I know no Harriet Carker. There is no such person.\nYou may have a sister; make much of her. I have none.'\n\nMr Carker the Manager took up the letter again, and waved it with a\nsmile of mock courtesy towards the door. Unfolding it as his brother\nwithdrew, and looking darkly aiter him as he left the room, he once\nmore turned round in his elbow-chair, and applied himself to a\ndiligent perusal of its contents.\n\nIt was in the writing of his great chief, Mr Dombey, and dated from\nLeamington. Though he was a quick reader of all other letters, Mr\nCarker read this slowly; weighing the words as he went, and bringing\nevery tooth in his head to bear upon them. When he had read it through\nonce, he turned it over again, and picked out these passages. 'I find\nmyself benefited by the change, and am not yet inclined to name any\ntime for my return.' 'I wish, Carker, you would arrange to come down\nonce and see me here, and let me know how things are going on, in\nperson.' 'I omitted to speak to you about young Gay. If not gone per\nSon and Heir, or if Son and Heir still lying in the Docks, appoint\nsome other young man and keep him in the City for the present. I am\nnot decided.' 'Now that's unfortunate!' said Mr Carker the Manager,\nexpanding his mouth, as if it were made of India-rubber: 'for he's far\naway.'\n\nStill that passage, which was in a postscript, attracted his\nattention and his teeth, once more.\n\n'I think,' he said, 'my good friend Captain Cuttle mentioned\nsomething about being towed along in the wake of that day. What a pity\nhe's so far away!'\n\nHe refolded the letter, and was sitting trifling with it, standing\nit long-wise and broad-wise on his table, and turning it over and over\non all sides - doing pretty much the same thing, perhaps, by its\ncontents - when Mr Perch the messenger knocked softly at the door, and\ncoming in on tiptoe, bending his body at every step as if it were the\ndelight of his life to bow, laid some papers on the table.\n\n'Would you please to be engaged, Sir?' asked Mr Perch, rubbing his\nhands, and deferentially putting his head on one side, like a man who\nfelt he had no business to hold it up in such a presence, and would\nkeep it as much out of the way as possible.\n\n'Who wants me?'\n\n'Why, Sir,' said Mr Perch, in a soft voice, 'really nobody, Sir, to\nspeak of at present. Mr Gills the Ship's Instrument-maker, Sir, has\nlooked in, about a little matter of payment, he says: but I mentioned\nto him, Sir, that you was engaged several deep; several deep.'\n\nMr Perch coughed once behind his hand, and waited for further\norders.\n\n'Anybody else?'\n\n'Well, Sir,' said Mr Perch, 'I wouldn't of my own self take the\nliberty of mentioning, Sir, that there was anybody else; but that same\nyoung lad that was here yesterday, Sir, and last week, has been\nhanging about the place; and it looks, Sir,' added Mr Perch, stopping\nto shut the door, 'dreadful unbusiness-like to see him whistling to\nthe sparrows down the court, and making of 'em answer him.'\n\n'You said he wanted something to do, didn't you, Perch?' asked Mr\nCarker, leaning back in his chair and looking at that officer.\n\n'Why, Sir,' said Mr Perch, coughing behind his hand again, 'his\nexpression certainly were that he was in wants of a sitiwation, and\nthat he considered something might be done for him about the Docks,\nbeing used to fishing with a rod and line: but - ' Mr Perch shook his\nhead very dubiously indeed.\n\n'What does he say when he comes?' asked Mr Carker.\n\n'Indeed, Sir,' said Mr Perch, coughing another cough behind his\nhand, which was always his resource as an expression of humility when\nnothing else occurred to him, 'his observation generally air that he\nwould humbly wish to see one of the gentlemen, and that he wants to\nearn a living. But you see, Sir,' added Perch, dropping his voice to a\nwhisper, and turning, in the inviolable nature of his confidence, to\ngive the door a thrust with his hand and knee, as if that would shut\nit any more when it was shut already, 'it's hardly to be bore, Sir,\nthat a common lad like that should come a prowling here, and saying\nthat his mother nursed our House's young gentleman, and that he hopes\nour House will give him a chance on that account. I am sure, Sir,'\nobserved Mr Perch, 'that although Mrs Perch was at that time nursing\nas thriving a little girl, Sir, as we've ever took the liberty of\nadding to our family, I wouldn't have made so free as drop a hint of\nher being capable of imparting nourishment, not if it was never so!'\n\nMr Carker grinned at him like a shark, but in an absent, thoughtful\nmanner.\n\n'Whether,' submitted Mr Perch, after a short silence, and another\ncough, 'it mightn't be best for me to tell him, that if he was seen\nhere any more he would be given into custody; and to keep to it! With\nrespect to bodily fear,' said Mr Perch, 'I'm so timid, myself, by\nnature, Sir, and my nerves is so unstrung by Mrs Perch's state, that I\ncould take my affidavit easy.'\n\n'Let me see this fellow, Perch,' said Mr Carker. 'Bring him in!'\n\n'Yes, Sir. Begging your pardon, Sir,' said Mr Perch, hesitating at\nthe door, 'he's rough, Sir, in appearance.'\n\n'Never mind. If he's there, bring him in. I'll see Mr Gills\ndirectly. Ask him to wait.'\n\nMr Perch bowed; and shutting the door, as precisely and carefully\nas if he were not coming back for a week, went on his quest among the\nsparrows in the court. While he was gone, Mr Carker assumed his\nfavourite attitude before the fire-place, and stood looking at the\ndoor; presenting, with his under lip tucked into the smile that showed\nhis whole row of upper teeth, a singularly crouching apace.\n\nThe messenger was not long in returning, followed by a pair of\nheavy boots that came bumping along the passage like boxes. With the\nunceremonious words 'Come along with you!' - a very unusual form of\nintroduction from his lips - Mr Perch then ushered into the presence a\nstrong-built lad of fifteen, with a round red face, a round sleek\nhead, round black eyes, round limbs, and round body, who, to carry out\nthe general rotundity of his appearance, had a round hat in his hand,\nwithout a particle of brim to it.\n\nObedient to a nod from Mr Carker, Perch had no sooner confronted\nthe visitor with that gentleman than he withdrew. The moment they were\nface to face alone, Mr Carker, without a word of preparation, took him\nby the throat, and shook him until his head seemed loose upon his\nshoulders.\n\nThe boy, who in the midst of his astonishment could not help\nstaring wildly at the gentleman with so many white teeth who was\nchoking him, and at the office walls, as though determined, if he were\nchoked, that his last look should be at the mysteries for his\nintrusion into which he was paying such a severe penalty, at last\ncontrived to utter -\n\n'Come, Sir! You let me alone, will you!'\n\n'Let you alone!' said Mr Carker. 'What! I have got you, have I?'\nThere was no doubt of that, and tightly too. 'You dog,' said Mr\nCarker, through his set jaws, 'I'll strangle you!'\n\nBiler whimpered, would he though? oh no he wouldn't - and what was\nhe doing of - and why didn't he strangle some- body of his own size\nand not him: but Biler was quelled by the extraordinary nature of his\nreception, and, as his head became stationary, and he looked the\ngentleman in the face, or rather in the teeth, and saw him snarling at\nhim, he so far forgot his manhood as to cry.\n\n'I haven't done nothing to you, Sir,' said Biler, otherwise Rob,\notherwise Grinder, and always Toodle.\n\n'You young scoundrel!' replied Mr Carker, slowly releasing him, and\nmoving back a step into his favourite position. 'What do you mean by\ndaring to come here?'\n\n'I didn't mean no harm, Sir,' whimpered Rob, putting one hand to\nhis throat, and the knuckles of the other to his eyes. 'I'll never\ncome again, Sir. I only wanted work.'\n\n'Work, young Cain that you are!' repeated Mr Carker, eyeing him\nnarrowly. 'Ain't you the idlest vagabond in London?'\n\nThe impeachment, while it much affected Mr Toodle Junior, attached\nto his character so justly, that he could not say a word in denial. He\nstood looking at the gentleman, therefore, with a frightened,\nself-convicted, and remorseful air. As to his looking at him, it may\nbe observed that he was fascinated by Mr Carker, and never took his\nround eyes off him for an instant.\n\n'Ain't you a thief?' said Mr Carker, with his hands behind him in\nhis pockets.\n\n'No, sir,' pleaded Rob.\n\n'You are!' said Mr Carker.\n\n'I ain't indeed, Sir,' whimpered Rob. 'I never did such a thing as\nthieve, Sir, if you'll believe me. I know I've been a going wrong,\nSir, ever since I took to bird-catching' and walking-matching. I'm\nsure a cove might think,' said Mr Toodle Junior, with a burst of\npenitence, 'that singing birds was innocent company, but nobody knows\nwhat harm is in them little creeturs and what they brings you down\nto.'\n\nThey seemed to have brought him down to a velveteen jacket and\ntrousers very much the worse for wear, a particularly small red\nwaistcoat like a gorget, an interval of blue check, and the hat before\nmentioned.\n\n'I ain't been home twenty times since them birds got their will of\nme,' said Rob, 'and that's ten months. How can I go home when\neverybody's miserable to see me! I wonder,' said Biler, blubbering\noutright, and smearing his eyes with his coat-cuff, 'that I haven't\nbeen and drownded myself over and over again.'\n\nAll of which, including his expression of surprise at not having\nachieved this last scarce performance, the boy said, just as if the\nteeth of Mr Carker drew it out ofhim, and he had no power of\nconcealing anything with that battery of attraction in full play.\n\n'You're a nice young gentleman!' said Mr Carker, shaking his head\nat him. 'There's hemp-seed sown for you, my fine fellow!'\n\n'I'm sure, Sir,' returned the wretched Biler, blubbering again, and\nagain having recourse to his coat-cuff: 'I shouldn't care, sometimes,\nif it was growed too. My misfortunes all began in wagging, Sir; but\nwhat could I do, exceptin' wag?'\n\n'Excepting what?' said Mr Carker.\n\n'Wag, Sir. Wagging from school.'\n\n'Do you mean pretending to go there, and not going?' said Mr\nCarker.\n\n'Yes, Sir, that's wagging, Sir,' returned the quondam Grinder, much\naffected. 'I was chivied through the streets, Sir, when I went there,\nand pounded when I got there. So I wagged, and hid myself, and that\nbegan it.'\n\n'And you mean to tell me,' said Mr Carker, taking him by the throat\nagain, holding him out at arm's-length, and surveying him in silence\nfor some moments, 'that you want a place, do you?'\n\n'I should be thankful to be tried, Sir,' returned Toodle Junior,\nfaintly.\n\nMr Carker the Manager pushed him backward into a corner - the boy\nsubmitting quietly, hardly venturing to breathe, and never once\nremoving his eyes from his face - and rang the bell.\n\n'Tell Mr Gills to come here.'\n\nMr Perch was too deferential to express surprise or recognition of\nthe figure in the corner: and Uncle Sol appeared immediately.\n\n'Mr Gills!' said Carker, with a smile, 'sit down. How do you do?\nYou continue to enjoy your health, I hope?'\n\n'Thank you, Sir,' returned Uncle Sol, taking out his pocket-book,\nand handing over some notes as he spoke. 'Nothing ails me in body but\nold age. Twenty-five, Sir.'\n\n'You are as punctual and exact, Mr Gills,' replied the smiling\nManager, taking a paper from one of his many drawers, and making an\nendorsement on it, while Uncle Sol looked over him, 'as one of your\nown chronometers. Quite right.'\n\n'The Son and Heir has not been spoken, I find by the list, Sir,'\nsaid Uncle Sol, with a slight addition to the usual tremor in his\nvoice.\n\n'The Son and Heir has not been spoken,' returned Carker. 'There\nseems to have been tempestuous weather, Mr Gills, and she has probably\nbeen driven out of her course.'\n\n'She is safe, I trust in Heaven!' said old Sol.\n\n'She is safe, I trust in Heaven!' assented Mr Carker in that\nvoiceless manner of his: which made the observant young Toodle\ntrernble again. 'Mr Gills,' he added aloud, throwing himself back in\nhis chair, 'you must miss your nephew very much?'\n\nUncle Sol, standing by him, shook his head and heaved a deep sigh.\n\n'Mr Gills,' said Carker, with his soft hand playing round his\nmouth, and looking up into the Instrument-maker's face, 'it would be\ncompany to you to have a young fellow in your shop just now, and it\nwould be obliging me if you would give one house-room for the present.\nNo, to be sure,' he added quickly, in anticipation of what the old man\nwas going to say, 'there's not much business doing there, I know; but\nyou can make him clean the place out, polish up the instruments;\ndrudge, Mr Gills. That's the lad!'\n\nSol Gills pulled down his spectacles from his forehead to his eyes,\nand looked at Toodle Junior standing upright in the corner: his head\npresenting the appearance (which it always did) of having been newly\ndrawn out of a bucket of cold water; his small waistcoat rising and\nfalling quickly in the play of his emotions; and his eyes intently\nfixed on Mr Carker, without the least reference to his proposed\nmaster.\n\n'Will you give him house-room, Mr Gills?' said the Manager.\n\nOld Sol, without being quite enthusiastic on the subject, replied\nthat he was glad of any opportunity, however slight, to oblige Mr\nCarker, whose wish on such a point was a command: and that the wooden\nMidshipman would consider himself happy to receive in his berth any\nvisitor of Mr Carker's selecting.\n\nMr Carker bared himself to the tops and bottoms of his gums: making\nthe watchful Toodle Junior tremble more and more: and acknowledged the\nInstrument-maker's politeness in his most affable manner.\n\n'I'll dispose of him so, then, Mr Gills,' he answered, rising, and\nshaking the old man by the hand, 'until I make up my mind what to do\nwith him, and what he deserves. As I consider myself responsible for\nhim, Mr Gills,' here he smiled a wide smile at Rob, who shook before\nit: 'I shall be glad if you'll look sharply after him, and report his\nbehaviour to me. I'll ask a question or two of his parents as I ride\nhome this afternoon - respectable people - to confirm some particulars\nin his own account of himself; and that done, Mr Gills, I'll send him\nround to you to-morrow morning. Goodbye!'\n\nHis smile at parting was so full of teeth, that it confused old\nSol, and made him vaguely uncomfortable. He went home, thinking of\nraging seas, foundering ships, drowning men, an ancient bottle of\nMadeira never brought to light, and other dismal matters.\n\n'Now, boy!' said Mr Carker, putting his hand on young Toodle's\nshoulder, and bringing him out into the middle of the room. 'You have\nheard me?'\n\nRob said, 'Yes, Sir.'\n\n'Perhaps you understand,' pursued his patron, 'that if you ever\ndeceive or play tricks with me, you had better have drowned yourself,\nindeed, once for all, before you came here?'\n\nThere was nothing in any branch of mental acquisition that Rob\nseemed to understand better than that.\n\n'If you have lied to me,' said Mr Carker, 'in anything, never come\nin my way again. If not, you may let me find you waiting for me\nsomewhere near your mother's house this afternoon. I shall leave this\nat five o'clock, and ride there on horseback. Now, give me the\naddress.'\n\nRob repeated it slowly, as Mr Carker wrote it down. Rob even spelt\nit over a second time, letter by letter, as if he thought that the\nomission of a dot or scratch would lead to his destruction. Mr Carker\nthen handed him out of the room; and Rob, keeping his round eyes fixed\nupon his patron to the last, vanished for the time being.\n\nMr Carker the Manager did a great deal of business in the course of\nthe day, and stowed his teeth upon a great many people. In the office,\nin the court, in the street, and on 'Change, they glistened and\nbristled to a terrible extent. Five o'clock arriving, and with it Mr\nCarker's bay horse, they got on horseback, and went gleaming up\nCheapside.\n\nAs no one can easily ride fast, even if inclined to do so, through\nthe press and throng of the City at that hour, and as Mr Carker was\nnot inclined, he went leisurely along, picking his way among the carts\nand carriages, avoiding whenever he could the wetter and more dirty\nplaces in the over-watered road, and taking infinite pains to keep\nhimself and his steed clean. Glancing at the passersby while he was\nthus ambling on his way, he suddenly encountered the round eyes of the\nsleek-headed Rob intently fixed upon his face as if they had never\nbeen taken off, while the boy himself, with a pocket-handkerchief\ntwisted up like a speckled eel and girded round his waist, made a very\nconspicuous demonstration of being prepared to attend upon him, at\nwhatever pace he might think proper to go.\n\nThis attention, however flattering, being one of an unusual kind,\nand attracting some notice from the other passengers, Mr Carker took\nadvantage of a clearer thoroughfare and a cleaner road, and broke into\na trot. Rob immediately did the same. Mr Carker presently tried a\ncanter; Rob Was still in attendance. Then a short gallop; it Was all\none to the boy. Whenever Mr Carker turned his eyes to that side of the\nroad, he still saw Toodle Junior holding his course, apparently\nwithout distress, and working himself along by the elbows after the\nmost approved manner of professional gentlemen who get over the ground\nfor wagers.\n\nRidiculous as this attendance was, it was a sign of an influence\nestablished over the boy, and therefore Mr Carker, affecting not to\nnotice it, rode away into the neighbourhood of Mr Toodle's house. On\nhis slackening his pace here, Rob appeared before him to point out the\nturnings; and when he called to a man at a neighbouring gateway to\nhold his horse, pending his visit to the buildings that had succeeded\nStaggs's Gardens, Rob dutifully held the stirrup, while the Manager\ndismounted.\n\n'Now, Sir,' said Mr Carker, taking him by the shoulder, 'come\nalong!'\n\nThe prodigal son was evidently nervous of visiting the parental\nabode; but Mr Carker pushing him on before, he had nothing for it but\nto open the right door, and suffer himself to be walked into the midst\nof his brothers and sisters, mustered in overwhelming force round the\nfamily tea-table. At sight of the prodigal in the grasp of a stranger,\nthese tender relations united in a general howl, which smote upon the\nprodigal's breast so sharply when he saw his mother stand up among\nthem, pale and trembling, with the baby in her arms, that he lent his\nown voice to the chorus.\n\nNothing doubting now that the stranger, if not Mr Ketch' in person,\nwas one of that company, the whole of the young family wailed the\nlouder, while its more infantine members, unable to control the\ntransports of emotion appertaining to their time of life, threw\nthemselves on their backs like young birds when terrified by a hawk,\nand kicked violently. At length, poor Polly making herself audible,\nsaid, with quivering lips, 'Oh Rob, my poor boy, what have you done at\nlast!'\n\n'Nothing, mother,' cried Rob, in a piteous voice, 'ask the\ngentleman!'\n\n'Don't be alarmed,' said Mr Carker, 'I want to do him good.'\n\nAt this announcement, Polly, who had not cried yet, began to do so.\nThe elder Toodles, who appeared to have been meditating a rescue,\nunclenched their fists. The younger Toodles clustered round their\nmother's gown, and peeped from under their own chubby arms at their\ndesperado brother and his unknown friend. Everybody blessed the\ngentleman with the beautiful teeth, who wanted to do good.\n\n'This fellow,' said Mr Carker to Polly, giving him a gentle shake,\n'is your son, eh, Ma'am?'\n\n'Yes, Sir,' sobbed Polly, with a curtsey; 'yes, Sir.'\n\n'A bad son, I am afraid?' said Mr Carker.\n\n'Never a bad son to me, Sir,' returned Polly.\n\n'To whom then?' demanded Mr Carker.\n\n'He has been a little wild, Sir,' returned Polly, checking the\nbaby, who was making convulsive efforts with his arms and legs to\nlaunch himself on Biler, through the ambient air, 'and has gone with\nwrong companions: but I hope he has seen the misery of that, Sir, and\nwill do well again.'\n\nMr Carker looked at Polly, and the clean room, and the clean\nchildren, and the simple Toodle face, combined of father and mother,\nthat was reflected and repeated everywhere about him - and seemed to\nhave achieved the real purpose of his visit.\n\n'Your husband, I take it, is not at home?' he said.\n\n'No, Sir,' replied Polly. 'He's down the line at present.'\n\nThe prodigal Rob seemed very much relieved to hear it: though still\nin the absorption of all his faculties in his patron, he hardly took\nhis eyes from Mr Carker's face, unless for a moment at a time to steal\na sorrowful glance at his mother.\n\n'Then,' said Mr Carker, 'I'll tell you how I have stumbled on this\nboy of yours, and who I am, and what I am going to do for him.'\n\nThis Mr Carker did, in his own way; saying that he at first\nintended to have accumulated nameless terrors on his presumptuous\nhead, for coming to the whereabout of Dombey and Son. That he had\nrelented, in consideration of his youth, his professed contrition, and\nhis friends. That he was afraid he took a rash step in doing anything\nfor the boy, and one that might expose him to the censure of the\nprudent; but that he did it of himself and for himself, and risked the\nconsequences single-handed; and that his mother's past connexion with\nMr Dombey's family had nothing to do with it, and that Mr Dombey had\nnothing to do with it, but that he, Mr Carker, was the be-all and the\nend-all of this business. Taking great credit to himself for his\ngoodness, and receiving no less from all the family then present, Mr\nCarker signified, indirectly but still pretty plainly, that Rob's\nimplicit fidelity, attachment, and devotion, were for evermore his\ndue, and the least homage he could receive. And with this great truth\nRob himself was so impressed, that, standing gazing on his patron with\ntears rolling down his cheeks, he nodded his shiny head until it\nseemed almost as loose as it had done under the same patron's hands\nthat morning.\n\nPolly, who had passed Heaven knows how many sleepless nights on\naccount of this her dissipated firstborn, and had not seen him for\nweeks and weeks, could have almost kneeled to Mr Carker the Manager,\nas to a Good Spirit - in spite of his teeth. But Mr Carker rising to\ndepart, she only thanked him with her mother's prayers and blessings;\nthanks so rich when paid out of the Heart's mint, especially for any\nservice Mr Carker had rendered, that he might have given back a large\namount of change, and yet been overpaid.\n\nAs that gentleman made his way among the crowding children to the\ndoor, Rob retreated on his mother, and took her and the baby in the\nsame repentant hug.\n\n'I'll try hard, dear mother, now. Upon my soul I will!' said Rob.\n\n'Oh do, my dear boy! I am sure you will, for our sakes and your\nown!' cried Polly, kissing him. 'But you're coming back to speak to\nme, when you have seen the gentleman away?'\n\n'I don't know, mother.' Rob hesitated, and looked down. 'Father -\nwhen's he coming home?'\n\n'Not till two o'clock to-morrow morning.'\n\n'I'll come back, mother dear!' cried Rob. And passing through the\nshrill cry of his brothers and sisters in reception of this promise,\nhe followed Mr Carker out.\n\n'What!' said Mr Carker, who had heard this. 'You have a bad father,\nhave you?'\n\n'No, Sir!' returned Rob, amazed. 'There ain't a better nor a kinder\nfather going, than mine is.'\n\n'Why don't you want to see him then?' inquired his patron.\n\n'There's such a difference between a father and a mother, Sir,'\nsaid Rob, after faltering for a moment. 'He couldn't hardly believe\nyet that I was doing to do better - though I know he'd try to but a\nmother - she always believes what's,' good, Sir; at least I know my\nmother does, God bless her!'\n\nMr Carker's mouth expanded, but he said no more until he was\nmounted on his horse, and had dismissed the man who held it, when,\nlooking down from the saddle steadily into the attentive and watchful\nface of the boy, he said:\n\n'You'll come to me tomorrow morning, and you shall be shown where\nthat old gentleman lives; that old gentleman who was with me this\nmorning; where you are going, as you heard me say.'\n\n'Yes, Sir,' returned Rob.\n\n'I have a great interest in that old gentleman, and in serving him,\nyou serve me, boy, do you understand? Well,' he added, interrupting\nhim, for he saw his round face brighten when he was told that: 'I see\nyou do. I want to know all about that old gentleman, and how he goes\non from day to day - for I am anxious to be of service to him - and\nespecially who comes there to see him. Do you understand?'\n\nRob nodded his steadfast face, and said 'Yes, Sir,' again.\n\n'I should like to know that he has friends who are attentive to\nhim, and that they don't desert him - for he lives very much alone\nnow, poor fellow; but that they are fond of him, and of his nephew who\nhas gone abroad. There is a very young lady who may perhaps come to\nsee him. I want particularly to know all about her.'\n\n'I'll take care, Sir,' said the boy.\n\n'And take care,' returned his patron, bending forward to advance\nhis grinning face closer to the boy's, and pat him on the shoulder\nwith the handle of his whip: 'take care you talk about affairs of mine\nto nobody but me.'\n\n'To nobody in the world, Sir,' replied Rob, shaking his head.\n\n'Neither there,' said Mr CarHer, pointing to the place they had\njust left, 'nor anywhere else. I'll try how true and grateful you can\nbe. I'll prove you!' Making this, by his display of teeth and by the\naction of his head, as much a threat as a promise, he turned from\nRob's eyes, which were nailed upon him as if he had won the boy by a\ncharm, body and soul, and rode away. But again becoming conscious,\nafter trotting a short distance, that his devoted henchman, girt as\nbefore, was yielding him the same attendance, to the great amusement\nof sundry spectators, he reined up, and ordered him off. To ensure his\nobedience, he turned in the saddle and watched him as he retired. It\nwas curious to see that even then Rob could not keep his eyes wholly\naverted from his patron's face, but, constantly turning and turning\nagain to look after him' involved himself in a tempest of buffetings\nand jostlings from the other passengers in the street: of which, in\nthe pursuit of the one paramount idea, he was perfectly heedless.\n\nMr Carker the Manager rode on at a foot-pace, with the easy air of\none who had performed all the business of the day in a satisfactory\nmanner, and got it comfortably off his mind. Complacent and affable as\nman could be, Mr Carker picked his way along the streets and hummed a\nsoft tune as he went He seemed to purr, he was so glad.\n\nAnd in some sort, Mr Carker, in his fancy, basked upon a hearth\ntoo. Coiled up snugly at certain feet, he was ready for a spring, Or\nfor a tear, or for a scratch, or for a velvet touch, as the humour\ntook him and occasion served. Was there any bird in a cage, that came\nin for a share ofhis regards?\n\n'A very young lady!' thought Mr Carker the Manager, through his\nsong. 'Ay! when I saw her last, she was a little child. With dark eyes\nand hair, I recollect, and a good face; a very good face! I daresay\nshe's pretty.'\n\nMore affable and pleasant yet, and humming his song until his many\nteeth vibrated to it, Mr Carker picked his way along, and turned at\nlast into the shady street where Mr Dombey's house stood. He had been\nso busy, winding webs round good faces, and obscuring them with\nmeshes, that he hardly thought of being at this point of his ride,\nuntil, glancing down the cold perspective of tall houses, he reined in\nhis horse quickly within a few yards of the door. But to explain why\nMr Carker reined in his horse quickly, and what he looked at in no\nsmall surprise, a few digressive words are necessary.\n\nMr Toots, emancipated from the Blimber thraldom and coming into the\npossession of a certain portion of his wordly wealth, 'which,' as he\nhad been wont, during his last half-year's probation, to communicate\nto Mr Feeder every evening as a new discovery, 'the executors couldn't\nkeep him out of' had applied himself with great diligence, to the\nscience of Life. Fired with a noble emulation to pursue a brilliant\nand distinguished career, Mr Toots had furnished a choice set of\napartments; had established among them a sporting bower, embellished\nwith the portraits of winning horses, in which he took no particle of\ninterest; and a divan, which made him poorly. In this delicious abode,\nMr Toots devoted himself to the cultivation of those gentle arts which\nrefine and humanise existence, his chief instructor in which was an\ninteresting character called the Game Chicken, who was always to be\nheard of at the bar of the Black Badger, wore a shaggy white\ngreat-coat in the warmest weather, and knocked Mr Toots about the head\nthree times a week, for the small consideration of ten and six per\nvisit.\n\nThe Game Chicken, who was quite the Apollo of Mr Toots's Pantheon,\nhad introduced to him a marker who taught billiards, a Life Guard who\ntaught fencing, a jobmaster who taught riding, a Cornish gentleman who\nwas up to anything in the athletic line, and two or three other\nfriends connected no less intimately with the fine arts. Under whose\nauspices Mr Toots could hardly fail to improve apace, and under whose\ntuition he went to work.\n\nBut however it came about, it came to pass, even while these\ngentlemen had the gloss of novelty upon them, that Mr Toots felt, he\ndidn't know how, unsettled and uneasy. There were husks in his corn,\nthat even Game Chickens couldn't peck up; gloomy giants in his\nleisure, that even Game Chickens couldn't knock down. Nothing seemed\nto do Mr Toots so much good as incessantly leaving cards at Mr\nDombey's door. No taxgatherer in the British Dominions - that\nwide-spread territory on which the sun never sets, and where the\ntax-gatherer never goes to bed - was more regular and persevering in\nhis calls than Mr Toots.\n\nMr Toots never went upstairs; and always performed the same\nceremonies, richly dressed for the purpose, at the hall door.\n\n'Oh! Good morning!' would be Mr Toots's first remark to the\nservant. 'For Mr Dombey,' would be Mr Toots's next remark, as he\nhanded in a card. 'For Miss Dombey,' would be his next, as he handed\nin another.\n\nMr Toots would then turn round as if to go away; but the man knew\nhim by this time, and knew he wouldn't.\n\n'Oh, I beg your pardon,' Mr Toots would say, as if a thought had\nsuddenly descended on him. 'Is the young woman at home?'\n\nThe man would rather think she was;, but wouldn't quite know. Then\nhe would ring a bell that rang upstairs, and would look up the\nstaircase, and would say, yes, she was at home, and was coming down.\nThen Miss Nipper would appear, and the man would retire.\n\n'Oh! How de do?' Mr Toots would say, with a chuckle and a blush.\n\nSusan would thank him, and say she was very well.\n\n'How's Diogenes going on?' would be Mr Toots's second\ninterrogation.\n\nVery well indeed. Miss Florence was fonder and fonder of him every\nday. Mr Toots was sure to hail this with a burst of chuckles, like the\nopening of a bottle of some effervescent beverage.\n\n'Miss Florence is quite well, Sir,' Susan would add.\n\nOh, it's of no consequence, thank'ee,' was the invariable reply of\nMr Toots; and when he had said so, he always went away very fast.\n\nNow it is certain that Mr Toots had a filmy something in his mind,\nwhich led him to conclude that if he could aspire successfully in the\nfulness of time, to the hand of Florence, he would be fortunate and\nblest. It is certain that Mr Toots, by some remote and roundabout\nroad, had got to that point, and that there he made a stand. His heart\nwas wounded; he was touched; he was in love. He had made a desperate\nattempt, one night, and had sat up all night for the purpose, to write\nan acrostic on Florence, which affected him to tears in the\nconception. But he never proceeded in the execution further than the\nwords 'For when I gaze,' - the flow of imagination in which he had\npreviously written down the initial letters of the other seven lines,\ndeserting him at that point.\n\nBeyond devising that very artful and politic measure of leaving a\ncard for Mr Dombey daily, the brain of Mr Toots had not worked much in\nreference to the subject that held his feelings prisoner. But deep\nconsideration at length assured Mr Toots that an important step to\ngain, was, the conciliation of Miss Susan Nipper, preparatory to\ngiving her some inkling of his state of mind.\n\nA little light and playful gallantry towards this lady seemed the\nmeans to employ in that early chapter of the history, for winning her\nto his interests. Not being able quite to make up his mind about it,\nhe consulted the Chicken - without taking that gentleman into his\nconfidence; merely informing him that a friend in Yorkshire had\nwritten to him (Mr Toots) for his opinion on such a question. The\nChicken replying that his opinion always was, 'Go in and win,' and\nfurther, 'When your man's before you and your work cut out, go in and\ndo it,' Mr Toots considered this a figurative way of supporting his\nown view of the case, and heroically resolved to kiss Miss Nipper next\nday.\n\nUpon the next day, therefore, Mr Toots, putting into requisition\nsome of the greatest marvels that Burgess and Co. had ever turned out,\nwent off to Mr Dotnbey's upon this design. But his heart failed him so\nmuch as he approached the scene of action, that, although he arrived\non the ground at three o'clock in the afternoon, it was six before he\nknocked at the door.\n\nEverything happened as usual, down to the point where Susan said\nher young mistress was well, and Mr Toots said it was ofno\nconsequence. To her amazement, Mr Toots, instead of going off, like a\nrocket, after that observation, lingered and chuckled.\n\n'Perhaps you'd like to walk upstairs, Sir!' said Susan.\n\n'Well, I think I will come in!' said Mr Toots.\n\nBut instead of walking upstairs, the bold Toots made an awkward\nplunge at Susan when the door was shut, and embracing that fair\ncreature, kissed her on the cheek\n\n'Go along with you!~ cried Susan, 'or Ill tear your eyes out.'\n\n'Just another!' said Mr Toots.\n\n'Go along with you!' exclaimed Susan, giving him a push 'Innocents\nlike you, too! Who'll begin next? Go along, Sir!'\n\nSusan was not in any serious strait, for she could hardly speak for\nlaughing; but Diogenes, on the staircase, hearing a rustling against\nthe wall, and a shuffling of feet, and seeing through the banisters\nthat there was some contention going on, and foreign invasion in the\nhouse, formed a different opinion, dashed down to the rescue, and in\nthe twinkling of an eye had Mr Toots by the leg.\n\nSusan screamed, laughed, opened the street-door, and ran\ndownstairs; the bold Toots tumbled staggering out into the street,\nwith Diogenes holding on to one leg of his pantaioons, as if Burgess\nand Co. were his cooks, and had provided that dainty morsel for his\nholiday entertainment; Diogenes shaken off, rolled over and over in\nthe dust, got up' again, whirled round the giddy Toots and snapped at\nhim: and all this turmoil Mr Carker, reigning up his horse and sitting\na little at a distance, saw to his amazement, issue from the stately\nhouse of Mr Dombey.\n\nMr Carker remained watching the discomfited Toots, when Diogenes\nwas called in, and the door shut: and while that gentleman, taking\nrefuge in a doorway near at hand, bound up the torn leg of his\npantaloons with a costly silk handkerchief that had formed part of his\nexpensive outfit for the advent\n\n'I beg your pardon, Sir,' said Mr Carker, riding up, with his most\npropitiatory smile. 'I hope you are not hurt?'\n\n'Oh no, thank you,' replied Mr Toots, raising his flushed face,\n'it's of no consequence' Mr Toots would have signified, if he could,\nthat he liked it very much.\n\n'If the dog's teeth have entered the leg, Sir - ' began Carker,\nwith a display of his own'\n\n'No, thank you,' said Mr Toots, 'it's all quite right. It's very\ncomfortable, thank you.'\n\n'I have the pleasure of knowing Mr Dombey,' observed Carker.\n\n'Have you though?' rejoined the blushing Took\n\n'And you will allow me, perhaps, to apologise, in his absence,'\nsaid Mr Carker, taking off his hat, 'for such a misadventure, and to\nwonder how it can possibly have happened.'\n\nMr Toots is so much gratified by this politeness, and the lucky\nchance of making frends with a friend of Mr Dombey, that he pulls out\nhis card-case which he never loses an opportunity of using, and hands\nhis name and address to Mr Carker: who responds to that courtesy by\ngiving him his own, and with that they part.\n\nAs Mr Carker picks his way so softly past the house, looking up at\nthe windows, and trying to make out the pensive face behind the\ncurtain looking at the children opposite, the rough head of Diogenes\ncame clambering up close by it, and the dog, regardless of all\nsoothing, barks and growls, and makes at him from that height, as ifhe\nwould spring down and tear him limb from limb.\n\nWell spoken, Di, so near your Mistress! Another, and another with\nyour head up, your eyes flashing, and your vexed mouth worrying\nitself, for want of him! Another, as he picks his way along! You have\na good scent, Di, - cats, boy, cats!\n\n\n\nCHAPTER 23.\n\nFlorence solitary, and the Midshipman mysterious\n\n\n\nFlorence lived alone in the great dreary house, and day succeeded\nday, and still she lived alone; and the blank walls looked down upon\nher with a vacant stare, as if they had a Gorgon-like mind to stare\nher youth and beauty into stone.\n\nNo magic dwelling-place in magic story, shut up in the heart of a\nthick wood, was ever more solitary and deserted to the fancy, than was\nher father's mansion in its grim reality, as it stood lowering on the\nstreet: always by night, when lights were shining from neighbouring\nwindows, a blot upon its scanty brightness; always by day, a frown\nupon its never-smiling face.\n\nThere were not two dragon sentries keeping ward before the gate of\nthis above, as in magic legend are usually found on duty over the\nwronged innocence imprisoned; but besides a glowering visage, with its\nthin lips parted wickedly, that surveyed all comers from above the\narchway of the door, there was a monstrous fantasy of rusty iron,\ncurling and twisting like a petrifaction of an arbour over threshold,\nbudding in spikes and corkscrew points, and bearing, one on either\nside, two ominous extinguishers, that seemed to say, 'Who enter here,\nleave light behind!' There were no talismanic characters engraven on\nthe portal, but the house was now so neglected in appearance, that\nboys chalked the railings and the pavement - particularly round the\ncorner where the side wall was - and drew ghosts on the stable door;\nand being sometimes driven off by Mr Towlinson, made portraits of him,\nin return, with his ears growing out horizontally from under his hat.\nNoise ceased to be, within the shadow of the roof. The brass band that\ncame into the street once a week, in the morning, never brayed a note\nin at those windows; but all such company, down to a poor little\npiping organ of weak intellect, with an imbecile party of automaton\ndancers, waltzing in and out at folding-doors, fell off from it with\none accord, and shunned it as a hopeless place.\n\nThe spell upon it was more wasting than the spell that used to set\nenchanted houses sleeping once upon a time, but left their waking\nfreshness unimpaired. The passive desolation of disuse was everywhere\nsilently manifest about it. Within doors, curtains, drooping heavily,\nlost their old folds and shapes, and hung like cumbrous palls.\nHecatombs of furniture, still piled and covered up, shrunk like\nimprisoned and forgotten men, and changed insensibly. Mirrors were dim\nas with the breath of years. Patterns of carpets faded and became\nperplexed and faint, like the memory of those years' trifling\nincidents. Boards, starting at unwonted footsteps, creaked and shook.\nKeys rusted in the locks of doors. Damp started on the walls, and as\nthe stains came out, the pictures seemed to go in and secrete\nthemselves. Mildew and mould began to lurk in closets. Fungus trees\ngrew in corners of the cellars. Dust accumulated, nobody knew whence\nnor how; spiders, moths, and grubs were heard of every day. An\nexploratory blackbeetle now and then was found immovable upon the\nstairs, or in an upper room, as wondering how he got there. Rats began\nto squeak and scuffle in the night time, through dark galleries they\nmined behind the panelling.\n\nThe dreary magnificence of the state rooms, seen imperfectly by the\ndoubtful light admitted through closed shutters, would have answered\nwell enough for an enchanted abode. Such as the tarnished paws of\ngilded lions, stealthily put out from beneath their wrappers; the\nmarble lineaments of busts on pedestals, fearfully revealing\nthemselves through veils; the clocks that never told the time, or, if\nwound up by any chance, told it wrong, and struck unearthly numbers,\nwhich are not upon the dial; the accidental tinklings among the\npendant lustres, more startling than alarm-bells; the softened sounds\nand laggard air that made their way among these objects, and a phantom\ncrowd of others, shrouded and hooded, and made spectral of shape. But,\nbesides, there was the great staircase, where the lord of the place so\nrarely set his foot, and by which his little child had gone up to\nHeaven. There were other staircases and passages where no one went for\nweeks together; there were two closed rooms associated with dead\nmembers of the family, and with whispered recollections of them; and\nto all the house but Florence, there was a gentle figure moving\nthrough the solitude and gloom, that gave to every lifeless thing a\ntouch of present human interest and wonder,\n\nFor Florence lived alone in the deserted house, and day succeeded\nday, and still she lived alone, and the cold walls looked down upon\nher with a vacant stare, as if they had a Gorgon-like mind to stare\nher youth and beauty into stone\n\nThe grass began to grow upon the roof, and in the crevices of the\nbasement paving. A scaly crumbling vegetation sprouted round the\nwindow-sills. Fragments of mortar lost their hold upon the insides of\nthe unused chimneys, and came dropping down. The two trees with the\nsmoky trunks were blighted high up, and the withered branches\ndomineered above the leaves, Through the whole building white had\nturned yellow, yellow nearly black; and since the time when the poor\nlady died, it had slowly become a dark gap in the long monotonous\nstreet.\n\nBut Florence bloomed there, like the king's fair daughter in the\nstory. Her books, her music, and her daily teachers, were her only\nreal companions, Susan Nipper and Diogenes excepted: of whom the\nformer, in her attendance on the studies of her young mistress, began\nto grow quite learned herself, while the latter, softened possibly by\nthe same influences, would lay his head upon the window-ledge, and\nplacidly open and shut his eyes upon the street, all through a summer\nmorning; sometimes pricking up his head to look with great\nsignificance after some noisy dog in a cart, who was barking his way\nalong, and sometimes, with an exasperated and unaccountable\nrecollection of his supposed enemy in the neighbourhood, rushing to\nthe door, whence, after a deafening disturbance, he would come jogging\nback with a ridiculous complacency that belonged to him, and lay his\njaw upon the window-ledge again, with the air of a dog who had done a\npublic service.\n\nSo Florence lived in her wilderness of a home, within the circle of\nher innocent pursuits and thoughts, and nothing harmed her. She could\ngo down to her father's rooms now, and think of him, and suffer her\nloving heart humbly to approach him, without fear of repulse. She\ncould look upon the objects that had surrounded him in his sorrow, and\ncould nestle near his chair, and not dread the glance that she so well\nremembered. She could render him such little tokens of her duty and\nservice' as putting everything in order for him with her own hands,\nbinding little nosegays for table, changing them as one by one they\nwithered and he did not come back, preparing something for him every'\nday, and leaving some timid mark of her presence near his usual seat.\nTo-day, it was a little painted stand for his watch; tomorrow she\nwould be afraid to leave it, and would substitute some other trifle of\nher making not so likely to attract his eye. Waking in the night,\nperhaps, she would tremble at the thought of his coming home and\nangrily rejecting it, and would hurry down with slippered feet and\nquickly beating heart, and bring it away. At another time, she would\nonly lay her face upon his desk, and leave a kiss there, and a tear.\n\nStill no one knew of this. Unless the household found it out when\nshe was not there - and they all held Mr Dombey's rooms in awe - it\nwas as deep a secret in her breast as what had gone before it.\nFlorence stole into those rooms at twilight, early in the morning, and\nat times when meals were served downstairs. And although they were in\nevery nook the better and the brighter for her care, she entered and\npassed out as quietly as any sunbeam, opting that she left her light\nbehind.\n\nShadowy company attended Florence up and down the echoing house,\nand sat with her in the dismantled rooms. As if her life were an\nenchanted vision, there arose out of her solitude ministering\nthoughts, that made it fanciful and unreal. She imagined so often what\nher life would have been if her father could have loved her and she\nhad been a favourite child, that sometimes, for the moment, she almost\nbelieved it was so, and, borne on by the current of that pensive\nfiction, seemed to remember how they had watched her brother in his\ngrave together; how they had freely shared his heart between them; how\nthey were united in the dear remembrance of him; how they often spoke\nabout him yet; and her kind father, looking at her gently, told her of\ntheir common hope and trust in God. At other times she pictured to\nherself her mother yet alive. And oh the happiness of falling on her\nneck, and clinging to her with the love and confidence of all her\nsoul! And oh the desolation of the solitary house again, with evening\ncoming on, and no one there!\n\nBut there was one thought, scarcely shaped out to herself, yet\nfervent and strong within her, that upheld Florence when she strove\nand filled her true young heart, so sorely tried, with constancy of\npurpose. Into her mind, as 'into all others contending with the great\naffliction of our mortal nature, there had stolen solemn wonderings\nand hopes, arising in the dim world beyond the present life, and\nmurmuring, like faint music, of recognition in the far-off land\nbetween her brother and her mother: of some present consciousness in\nboth of her: some love and commiseration for her: and some knowledge\nof her as she went her way upon the earth. It was a soothing\nconsolation to Florence to give shelter to these thoughts, until one\nday - it was soon after she had last seen her father in his own room,\nlate at night - the fancy came upon her, that, in weeping for his\nalienated heart, she might stir the spirits of the dead against him'\nWild, weak, childish, as it may have been to think so, and to tremble\nat the half-formed thought, it was the impulse of her loving nature;\nand from that hour Florence strove against the cruel wound in her\nbreast, and tried to think of him whose hand had made it, only with\nhope.\n\nHer father did not know - she held to it from that time - how much\nshe loved him. She was very young, and had no mother, and had never\nlearned, by some fault or misfortune, how to express to him that she\nloved him. She would be patient, and would try to gain that art in\ntime, and win him to a better knowledge of his only child.\n\nThis became the purpose of her life. The morning sun shone down\nupon the faded house, and found the resolution bright and fresh within\nthe bosom of its solitary mistress, Through all the duties of the day,\nit animated her; for Florence hoped that the more she knew, and the\nmore accomplished she became, the more glad he would be when he came\nto know and like her. Sometimes she wondered, with a swelling heart\nand rising tear, whether she was proficient enough in anything to\nsurprise him when they should become companions. Sometimes she tried\nto think if there were any kind of knowledge that would bespeak his\ninterest more readily than another. Always: at her books, her music,\nand her work: in her morning walks, and in her nightly prayers: she\nhad her engrossing aim in view. Strange study for a child, to learn\nthe road to a hard parent's heart!\n\nThere were many careless loungers through the street, as the summer\nevening deepened into night, who glanced across the road at the sombre\nhouse, and saw the youthful figure at the window, such a contrast to\nit, looking upward at the stars as they began to shine, who would have\nslept the worse if they had known on what design she mused so steady.\nThe reputation of the mansion as a haunted house, would not have been\nthe gayer with some humble dwellers elsewhere, who were struck by its\nexternal gloom in passing and repassing on their daily avocations, and\nso named it, if they could have read its story in the darkening face.\nBut Florence held her sacred purpose, unsuspected and unaided: and\nstudied only how to bring her father to the understanding that she\nloved him, and made no appeal against him in any wandering thought.\n\nThus Florence lived alone in the deserted house, and day succeeded\nday, and still she lived alone, and the monotonous walls looked down\nupon her with a stare, as if they had a Gorgon-like intent to stare\nher youth and beauty into stone.\n\nSusan Nipper stood opposite to her young mistress one morning, as\nshe folded and sealed a note she had been writing: and showed in her\nlooks an approving knowledge of its contents.\n\n'Better late than never, dear Miss Floy,' said Susan, 'and I do\nsay, that even a visit to them old Skettleses will be a Godsend.'\n\n'It is very good of Sir Barnet and Lady Skettles, Susan,' returned\nFlorence, with a mild correction of that young lady's familiar mention\nof the family in question, 'to repeat their invitation so kindly.'\n\nMiss Nipper, who was perhaps the most thoroughgoing partisan on the\nface of the earth, and who carried her partisanship into all matters\ngreat or small, and perpetually waged war with it against society,\nscrewed up her lips and shook her head, as a protest against any\nrecognition of disinterestedness in the Skettleses, and a plea in bar\nthat they would have valuable consideration for their kindness, in the\ncompany of Florence.\n\n'They know what they're about, if ever people did,' murmured Miss\nNipper, drawing in her breath 'oh! trust them Skettleses for that!'\n\n'I am not very anxious to go to Fulham, Susan, I confess,' said\nFlorence thoughtfully: 'but it will be right to go. I think it will be\nbetter.'\n\n'Much better,' interposed Susan, with another emphatic shake of her\nhead.\n\n'And so,' said Florence, 'though I would prefer to have gone when\nthere was no one there, instead of in this vacation time, when it\nseems there are some young people staying in the house, I have\nthankfully said yes.'\n\n'For which I say, Miss Floy, Oh be joyful!' returned Susan, 'Ah!\n\nThis last ejaculation, with which Miss Nipper frequently wound up a\nsentence, at about that epoch of time, was supposed below the level of\nthe hall to have a general reference to Mr Dombey, and to be\nexpressive of a yearning in Miss Nipper to favour that gentleman with\na piece of her mind. But she never explained it; and it had, in\nconsequence, the charm of mystery, in addition to the advantage of the\nsharpest expression.\n\n'How long it is before we have any news of Walter, Susan!' observed\nFlorence, after a moment's silence.\n\n'Long indeed, Miss Floy!' replied her maid. 'And Perch said, when\nhe came just now to see for letters - but what signifies what he\nsays!' exclaimed Susan, reddening and breaking off. 'Much he knows\nabout it!'\n\nFlorence raised her eyes quickly, and a flush overspread her face.\n\n'If I hadn't,' said Susan Nipper, evidently struggling with some\nlatent anxiety and alarm, and looking full at her young mistress,\nwhile endeavouring to work herself into a state of resentment with the\nunoffending Mr Perch's image, 'if I hadn't more manliness than that\ninsipidest of his sex, I'd never take pride in my hair again, but turn\nit up behind my ears, and wear coarse caps, without a bit of border,\nuntil death released me from my insignificance. I may not be a Amazon,\nMiss Floy, and wouldn't so demean myself by such disfigurement, but\nanyways I'm not a giver up, I hope'\n\n'Give up! What?' cried Florence, with a face of terror.\n\n'Why, nothing, Miss,' said Susan. 'Good gracious, nothing! It's\nonly that wet curl-paper of a man, Perch, that anyone might almost\nmake away with, with a touch, and really it would be a blessed event\nfor all parties if someone would take pity on him, and would have the\ngoodness!'\n\n'Does he give up the ship, Susan?' inquired Florence, very pale.\n\n'No, Miss,' returned Susan, 'I should like to see' him make so bold\nas do it to my face! No, Miss, but he goes 'on about some bothering\nginger that Mr Walter was to send to Mrs Perch, and shakes his dismal\nhead, and says he hopes it may be coming; anyhow, he says, it can't\ncome now in time for the intended occasion, but may do for next, which\nreally,' said Miss Nipper, with aggravated scorn, 'puts me out of\npatience with the man, for though I can bear a great deal, I am not a\ncamel, neither am I,' added Susan, after a moment's consideration, 'if\nI know myself, a dromedary neither.'\n\n'What else does he say, Susan?' inquired Florence, earnestly.\n'Won't you tell me?'\n\n'As if I wouldn't tell you anything, Miss Floy, and everything!'\nsaid Susan. 'Why, nothing Miss, he says that there begins to be a\ngeneral talk about the ship, and that they have never had a ship on\nthat voyage half so long unheard of, and that the Captain's wife was\nat the office yesterday, and seemed a little put out about it, but\nanyone could say that, we knew nearly that before.'\n\n'I must visit Walter's uncle,' said Florence, hurriedly, 'before I\nleave home. I will go and see him this morning. Let us walk there,\ndirectly, Susan.\n\nMiss Nipper having nothing to urge against the proposal, but being\nperfectly acquiescent, they were soon equipped, and in the streets,\nand on their way towards the little Midshipman.\n\nThe state of mind in which poor Walter had gone to Captain\nCuttle's, on the day when Brogley the broker came into possession, and\nwhen there seemed to him to be an execution in the very steeples, was\npretty much the same as that in which Florence now took her way to\nUncle Sol's; with this difference, that Florence suffered the added\npain of thinking that she had been, perhaps, the innocent occasion of\ninvolving Walter in peril, and all to whom he was dear, herself\nincluded, in an agony of suspense. For the rest, uncertainty and\ndanger seemed written upon everything. The weathercocks on spires and\nhousetops were mysterious with hints of stormy wind, and pointed, like\nso many ghostly fingers, out to dangerous seas, where fragments of\ngreat wrecks were drifting, perhaps, and helpless men were rocked upon\nthem into a sleep as deep as the unfathomable waters. When Florence\ncame into the City, and passed gentlemen who were talking together,\nshe dreaded to hear them speaking of the ship, an'd saying it was\nlost. Pictures and prints of vessels fighting with the rolling waves\nfilled her with alarm. The smoke and clouds, though moving gently,\nmoved too fast for her apprehensions, and made her fear there was a\ntempest blowing at that moment on the ocean.\n\nSusan Nipper may or may not have been affected similarly, but\nhaving her attention much engaged in struggles with boys, whenever\nthere was any press of people - for, between that grade of human kind\nand herself, there was some natural animosity that invariably broke\nout, whenever they came together - it would seem that she had not much\nleisure on the road for intellectual operations,\n\nArriving in good time abreast of the wooden Midshipman on the\nopposite side of the way, and waiting for an opportunity to cross the\nstreet, they were a little surprised at first to see, at the\nInstrument-maker's door, a round-headed lad, with his chubby face\naddressed towards the sky, who, as they looked at him, suddenly thrust\ninto his capacious mouth two fingers of each hand, and with the\nassistance of that machinery whistled, with astonishing shrillness, to\nsome pigeons at a considerable elevation in the air.\n\n'Mrs Richards's eldest, Miss!' said Susan, 'and the worrit of Mrs\nRichards's life!'\n\nAs Polly had been to tell Florence of the resuscitated prospects of\nher son and heir, Florence was prepared for the meeting: so, a\nfavourable moment presenting itself, they both hastened across,\nwithout any further contemplation of Mrs Richards's bane' That\nsporting character, unconscious of their approach, again whistled with\nhis utmost might, and then yelled in a rapture of excitement, 'Strays!\nWhip! Strays!' which identification had such an effect upon the\nconscience-stricken pigeons, that instead of going direct to some town\nin the North of England, as appeared to have been their original\nintention, they began to wheel and falter; whereupon Mrs Richards's\nfirst born pierced them with another whistle, and again yelled, in a\nvoice that rose above the turmoil of the street, 'Strays! Who~oop!\nStrays!'\n\nFrom this transport, he was abruptly recalled to terrestrial\nobjects, by a poke from Miss Nipper, which sent him into the shop,\n\n'Is this the way you show your penitence, when Mrs Richards has\nbeen fretting for you months and months?' said Susan, following the\npoke. 'Where's Mr Gills?'\n\nRob, who smoothed his first rebellious glance at Miss Nipper when\nhe saw Florence following, put his knuckles to his hair, in honour of\nthe latter, and said to the former, that Mr Gills was out'\n\nFetch him home,' said Miss Nipper, with authority, 'and say that my\nyoung lady's here.'\n\n'I don't know where he's gone,' said Rob.\n\n'Is that your penitence?' cried Susan, with stinging sharpness.\n\n'Why how can I go and fetch him when I don't know where to go?'\nwhimpered the baited Rob. 'How can you be so unreasonable?'\n\n'Did Mr Gills say when he should be home?' asked Florence.\n\n'Yes, Miss,' replied Rob, with another application of his knuckles\nto his hair. 'He said he should be home early in the afternoon; in\nabout a couple of hours from now, Miss.'\n\n'Is he very anxious about his nephew?' inquired Susan.\n\n'Yes, Miss,' returned Rob, preferring to address himself to\nFlorence and slighting Nipper; 'I should say he was, very much so. He\nain't indoors, Miss, not a quarter of an hour together. He can't\nsettle in one place five minutes. He goes about, like a - just like a\nstray,' said Rob, stooping to get a glimpse of the pigeons through the\nwindow, and checking himself, with his fingers half-way to his mouth,\non the verge of another whistle.\n\n'Do you know a friend of Mr Gills, called Captain Cuttle?' inquired\nFlorence, after a moment's reflection.\n\n'Him with a hook, Miss?' rejoined Rob, with an illustrative twist\nof his left hand. Yes, Miss. He was here the day before yesterday.'\n\n'Has he not been here since?' asked Susan.\n\n'No, Miss,' returned Rob, still addressing his reply to Florence.\n\n'Perhaps Walter's Uncle has gone there, Susan,' observed Florence,\nturning to her.\n\n'To Captain Cuttle's, Miss?' interposed Rob; 'no, he's not gone\nthere, Miss. Because he left particular word that if Captain Cuttle\ncalled, I should tell him how surprised he was, not to have seen him\nyesterday, and should make him stop till he came back'\n\n'Do you know where Captain Cuttle lives?' asked Florence.\n\nRob replied in the affirmative, and turning to a greasy parchment\nbook on the shop desk, read the address aloud.\n\nFlorence again turned to her maid and took counsel with her in a\nlow voice, while Rob the round-eyed, mindful of his patron's secret\ncharge, looked on and listened. Florence proposed that they kould go\nto Captain Cuttle's house; hear from his own lips, what he thought of\nthe absence of any tidings ofthe Son and Heir; and bring him, if they\ncould, to comfort Uncle Sol. Susan at first objected slightly, on the\nscore of distance; but a hackney-coach being mentioned by her\nmistress, withdrew that opposition, and gave in her assent. There were\nsome minutes of discussion between them before they came to this\nconclusion, during which the staring Rob paid close attention to both\nspeakers, and inclined his ear to each by turns, as if he were\nappointed arbitrator of the argument.\n\nIn time, Rob was despatched for a coach, the visitors keeping shop\nmeanwhile; and when he brought it, they got into it, leaving word for\nUncle Sol that they would be sure to call again, on their way back.\nRob having stared after the coach until it was as invisible as the\npigeons had now become, sat down behind the desk with a most assiduous\ndemeanour; and in order that he might forget nothing of what had\ntranspired, made notes of it on various small scraps of paper, with a\nvast expenditure of ink. There was no danger of these documents\nbetraying anything, if accidentally lost; for long before a word was\ndry, it became as profound a mystery to Rob, as if he had had no part\nwhatever in its production.\n\nWhile he was yet busy with these labours, the hackney-coach, after\nencountering unheard-of difficulties from swivel-bridges, soft roads,\nimpassable canals, caravans of casks, settlements of scarlet-beans and\nlittle wash-houses, and many such obstacles abounding in that country,\nstopped at the corner of Brig Place. Alighting here, Florence and\nSusan Nipper walked down the street, and sought out the abode of\nCaptain Cuttle.\n\nIt happened by evil chance to be one of Mrs MacStinger's great\ncleaning days. On these occasions, Mrs MacStinger was knocked up by\nthe policeman at a quarter before three in the morning, and rarely\nsuch before twelve o'clock next night. The chief object of this\ninstitution appeared to be, that Mrs MacStinger should move all the\nfurniture into the back garden at early dawn, walk about the house in\npattens all day, and move the furniture back again after dark. These\nceremonies greatly fluttered those doves the young MacStingers, who\nwere not only unable at such times to find any resting-place for the\nsoles of their feet, but generally came in for a good deal of pecking\nfrom the maternal bird during the progress of the solemnities.\n\nAt the moment when Florence and Susan Nipper presented themselves\nat Mrs MacStinger's door, that worthy but redoubtable female was in\nthe act of conveying Alexander MacStinger, aged two years and three\nmonths, along the passage, for forcible deposition in a sitting\nposture on the street pavement: Alexander being black in the face with\nholding his breath after punishment, and a cool paving-stone being\nusually found to act as a powerful restorative in such cases.\n\nThe feelings of Mrs MacStinger, as a woman and a mother, were\noutraged by the look of pity for Alexander which she observed on\nFlorence's face. Therefore, Mrs MacStinger asserting those finest\nemotions of our nature, in preference to weakly gratifying her\ncuriosity, shook and buffeted Alexander both before and during the\napplication of the paving-stone, and took no further notice of the\nstrangers.\n\n'I beg your pardon, Ma'am,' said Florence, when the child had found\nhis breath again, and was using it. 'Is this Captain Cuttle's house?'\n\n'No,' said Mrs MacStinger.\n\n'Not Number Nine?' asked Florence, hesitating.\n\n'Who said it wasn't Number Nine?' said Mrs MacStinger.\n\nSusan Nipper instantly struck in, and begged to inquire what Mrs\nMacStinger meant by that, and if she knew whom she was talking to.\n\nMrs MacStinger in retort, looked at her all over. 'What do you want\nwith Captain Cuttle, I should wish to know?' said Mrs MacStinger.\n\n'Should you? Then I'm sorry that you won't be satisfied,' returned\nMiss Nipper.\n\n'Hush, Susan! If you please!' said Florence. 'Perhaps you can have\nthe goodness to tell us where Captain Cutlle lives, Ma'am as he don't\nlive here.'\n\n'Who says he don't live here?' retorted the implacable MacStinger.\n'I said it wasn't Cap'en Cuttle's house - and it ain't his house -and\nforbid it, that it ever should be his house - for Cap'en Cuttle don't\nknow how to keep a house - and don't deserve to have a house - it's my\nhouse - and when I let the upper floor to Cap'en Cuttle, oh I do a\nthankless thing, and cast pearls before swine!'\n\nMrs MacStinger pitched her voice for the upper windows in offering\nthese remarks, and cracked off each clause sharply by itself as if\nfrom a rifle possessing an infinity of barrels. After the last shot,\nthe Captain's voice was heard to say, in feeble remonstrance from his\nown room, 'Steady below!'\n\n'Since you want Cap'en Cuttle, there he is!' said Mrs MacStinger,\nwith an angry motion of her hand. On Florence making bold to enter,\nwithout any more parley, and on Susan following, Mrs MacStinger\nrecommenced her pedestrian exercise in pattens, and Alexander\nMacStinger (still on the paving-stone), who had stopped in his crying\nto attend to the conversation, began to wail again, entertaining\nhimself during that dismal performance, which was quite mechanical,\nwith a general survey of the prospect, terminating in the\nhackney-coach.\n\nThe Captain in his own apartment was sitting with his hands in his\npockets and his legs drawn up under his chair, on a very small\ndesolate island, lying about midway in an ocean of soap and water. The\nCaptain's windows had been cleaned, the walls had been cleaned, the\nstove had been cleaned, and everything the stove excepted, was wet,\nand shining with soft soap and sand: the smell of which dry-saltery\nimpregnated the air. In the midst of the dreary scene, the Captain,\ncast away upon his island, looked round on the waste of waters with a\nrueful countenance, and seemed waiting for some friendly bark to come\nthat way, and take him off.\n\nBut when the Captain, directing his forlorn visage towards the\ndoor, saw Florence appear with her maid, no words can describe his\nastonishment. Mrs MacStinger's eloquence having rendered all other\nsounds but imperfectly distinguishable, he had looked for no rarer\nvisitor than the potboy or the milkman; wherefore, when Florence\nappeared, and coming to the confines of the island, put her hand in\nhis, the Captain stood up, aghast, as if he supposed her, for the\nmoment, to be some young member of the Flying Dutchman's family.'\n\nInstantly recovering his self-possession, however, the Captain's\nfirst care was to place her on dry land, which he happily\naccomplished, with one motion of his arm. Issuing forth, then, upon\nthe main, Captain Cuttle took Miss Nipper round the waist, and bore\nher to the island also. Captain Cuttle, then, with great respect and\nadmiration, raised the hand of Florence to his lips, and standing off\na little(for the island was not large enough for three), beamed on her\nfrom the soap and water like a new description of Triton.\n\n'You are amazed to see us, I am sure,'said Florence, with a smile.\n\nThe inexpressibly gratified Captain kissed his hook in reply, and\ngrowled, as if a choice and delicate compliment were included in the\nwords, 'Stand by! Stand by!'\n\n'But I couldn't rest,' said Florence, 'without coming to ask you\nwhat you think about dear Walter - who is my brother now- and whether\nthere is anything to fear, and whether you will not go and console his\npoor Uncle every day, until we have some intelligence of him?'\n\nAt these words Captain Cuttle, as by an involuntary gesture,\nclapped his hand to his head, on which the hard glazed hat was not,\nand looked discomfited.\n\n'Have you any fears for Walter's safety?' inquired Florence, from\nwhose face the Captain (so enraptured he was with it) could not take\nhis eyes: while she, in her turn, looked earnestly at him, to be\nassured of the sincerity of his reply.\n\n'No, Heart's-delight,' said Captain Cuttle, 'I am not afeard. Wal'r\nis a lad as'll go through a deal o' hard weather. Wal'r is a lad as'll\nbring as much success to that 'ere brig as a lad is capable on.\nWal'r,' said the Captain, his eyes glistening with the praise of his\nyoung friend, and his hook raised to announce a beautiful quotation,\n'is what you may call a out'ard and visible sign of an in'ard and\nspirited grasp, and when found make a note of.'\n\nFlorence, who did not quite understand this, though the Captain\nevidentllty thought it full of meaning, and highly satisfactory,\nmildly looked to him for something more.\n\n'I am not afeard, my Heart's-delight,' resumed the Captain,\n'There's been most uncommon bad weather in them latitudes, there's no\ndenyin', and they have drove and drove and been beat off, may be\nt'other side the world. But the ship's a good ship, and the lad's a\ngood lad; and it ain't easy, thank the Lord,' the Captain made a\nlittle bow, 'to break up hearts of oak, whether they're in brigs or\nbuzzums. Here we have 'em both ways, which is bringing it up with a\nround turn, and so I ain't a bit afeard as yet.'\n\n'As yet?' repeated Florence.\n\n'Not a bit,' returned the Captain, kissing his iron hand; 'and\nafore I begin to be, my Hearts-delight, Wal'r will have wrote home\nfrom the island, or from some port or another, and made all taut and\nshipsahape'And with regard to old Sol Gills, here the Captain became\nsolemn, 'who I'll stand by, and not desert until death do us part, and\nwhen the stormy winds do blow, do blow, do blow - overhaul the\nCatechism,' said the Captain parenthetically, 'and there you'll find\nthem expressions - if it would console Sol Gills to have the opinion\nof a seafaring man as has got a mind equal to any undertaking that he\nputs it alongside of, and as was all but smashed in his'prenticeship,\nand of which the name is Bunsby, that 'ere man shall give him such an\nopinion in his own parlour as'll stun him. Ah!' said Captain Cuttle,\nvauntingly, 'as much as if he'd gone and knocked his head again a\ndoor!'\n\n'Let us take this ~gentleman to see him, and let us hear what he\nsays,' cried Florence. 'Will you go with us now? We have a coach\nhere.'\n\nAgain the Captain clapped his hand to his head, on which the hard\nglazed hat was not, and looked discomfited. But at this instant a most\nremarkable phenomenon occurred. The door opening, without any note of\npreparation, and apparently of itself, the hard glazed hat in question\nskimmed into the room like a bird, and alighted heavily at the\nCaptain's feet. The door then shut as violently as it had opened, and\nnothIng ensued in explanation of the prodigy.\n\nCaptain Cuttle picked up his hat, and having turned it over with a\nlook of interest and welcome, began to polish it on his sleeve' While\ndoing so, the Captain eyed his visitors intently, and said in a low\nvoice\n\n'You see I should have bore down on Sol Gills yesterday, and this\nmorning, but she - she took it away and kep it. That's the long and\nshort ofthe subject.'\n\n'Who did, for goodness sake?' asked Susan Nipper.\n\n'The lady of the house, my dear,'returned the Captain, in a gruff\nwhisper, and making signals of secrecy.'We had some words about the\nswabbing of these here planks, and she - In short,' said the Captain,\neyeing the door, and relieving himself with a long breath, 'she\nstopped my liberty.'\n\n'Oh! I wish she had me to deal with!' said Susan, reddening with\nthe energy of the wish. 'I'd stop her!'\n\n'Would you, do you, my dear?' rejoined the Captain, shaking his\nhead doubtfully, but regarding the desperate courage of the fair\naspirant with obvious admiration. 'I don't know. It's difficult\nnavigation. She's very hard to carry on with, my dear. You never can\ntell how she'll head, you see. She's full one minute, and round upon\nyou next. And when she in a tartar,' said the Captain, with the\nperspiration breaking out upon his forehead. There was nothing but a\nwhistle emphatic enough for the conclusion of the sentence, so the\nCaptain whistled tremulously. After which he again shook his head, and\nrecurring to his admiration of Miss Nipper's devoted bravery, timidly\nrepeated, 'Would you, do you think, my dear?'\n\nSusan only replied with a bridling smile, but that was so very full\nof defiance, that there is no knowing how long Captain Cuttle might\nhave stood entranced in its contemplation, if Florence in her anxiety\nhad not again proposed their immediately resorting to the oracular\nBunsby. Thus reminded of his duty, Captain Cuttle Put on the glazed\nhat firmly, took up another knobby stick, with which he had supplied\nthe place of that one given to Walter, and offering his arm to\nFlorence, prepared to cut his way through the enemy.\n\nIt turned out, however, that Mrs MacStinger had already changed her\ncourse, and that she headed, as the Captain had remarked she often\ndid, in quite a new direction. For when they got downstairs, they\nfound that exemplary woman beating the mats on the doorsteps, with\nAlexander, still upon the paving-stone, dimly looming through a fog of\ndust; and so absorbed was Mrs MacStinger in her household occupation,\nthat when Captain Cuttle and his visitors passed, she beat the harder,\nand neither by word nor gesture showed any consciousness of their\nvicinity. The Captain was so well pleased with this easy escape -\nalthough the effect of the door-mats on him was like a copious\nadministration of snuff, and made him sneeze until the tears ran down\nhis face - that he could hardly believe his good fortune; but more\nthan once, between the door and the hackney-coach, looked over his\nshoulder, with an obvious apprehension of Mrs MacStinger's giving\nchase yet.\n\nHowever, they got to the corner of Brig Place without any\nmolestation from that terrible fire-ship; and the Captain mounting the\ncoach-box - for his gallantry would not allow him to ride inside with\nthe ladies, though besought to do so - piloted the driver on his\ncourse for Captain Bunsby's vessel, which was called the Cautious\nClara, and was lying hard by Ratcliffe.\n\nArrived at the wharf off which this great commander's ship was\njammed in among some five hundred companions, whose tangled rigging\nlooked like monstrous cobwebs half swept down, Captain Cuttle appeared\nat the coach-window, and invited Florence and Miss Nipper to accompany\nhim on board; observing that Bunsby was to the last degree\nsoft-hearted in respect of ladies, and that nothing would so much tend\nto bring his expansive intellect into a state of harmony as their\npresentation to the Cautious Clara.\n\nFlorence readily consented; and the Captain, taking her little hand\nin his prodigious palm, led her, with a mixed expression of patronage,\npaternity, pride, and ceremony, that was pleasant to see, over several\nvery dirty decks, until, coming to the Clara, they found that cautious\ncraft (which lay outside the tier) with her gangway removed, and\nhalf-a-dozen feet of river interposed between herself and her nearest\nneighbour. It appeared, from Captain Cuttle's explanation, that the\ngreat Bunsby, like himself, was cruelly treated by his landlady, and\nthat when her usage of him for the time being was so hard that he\ncould bear it no longer, he set this gulf between them as a last\nresource.\n\n'Clara a-hoy!' cried the Captain, putting a hand to each side of\nhis mouth.\n\n'A-hoy!' cried a boy, like the Captain's echo, tumbling up from\nbelow.\n\n'Bunsby aboard?' cried the Captain, hailing the boy in a stentorian\nvoice, as if he were half-a-mile off instead of two yards.\n\n'Ay, ay!' cried the boy, in the same tone.\n\nThe boy then shoved out a plank to Captain Cuttle, who adjusted it\ncarefully, and led Florence across: returning presently for Miss\nNipper. So they stood upon the deck of the Cautious Clara, in whose\nstanding rigging, divers fluttering articles of dress were curing, in\ncompany with a few tongues and some mackerel.\n\nImmediately there appeared, coming slowly up above the bulk-head of\nthe cabin, another bulk-head 'human, and very large - with one\nstationary eye in the mahogany face, and one revolving one, on the\nprinciple of some lighthouses. This head was decorated with shaggy\nhair, like oakum,' which had no governing inclination towards the\nnorth, east, west, or south, but inclined to all four quarters of the\ncompass, and to every point upon it. The head was followed by a\nperfect desert of chin, and by a shirt-collar and neckerchief, and by\na dreadnought pilot-coat, and by a pair of dreadnought pilot-trousers,\nwhereof the waistband was so very broad and high, that it became a\nsuccedaneum for a waistcoat: being ornamented near the wearer's\nbreastbone with some massive wooden buttons, like backgammon men. As\nthe lower portions of these pantaloons became revealed, Bunsby stood\nconfessed; his hands in their pockets, which were of vast size; and\nhis gaze directed, not to Captain Cuttle or the ladies, but the\nmast-head.\n\nThe profound appearance of this philosopher, who was bulky and\nstrong, and on whose extremely red face an expression of taciturnity\nsat enthroned, not inconsistent with his character, in which that\nquality was proudly conspicuous, almost daunted Captain Cuttle, though\non familiar terms with him. Whispering to Florence that Bunsby had\nnever in his life expressed surprise, and was considered not to know\nwhat it meant, the Captain watched him as he eyed his mast-head, and\nafterwards swept the horizon; and when the revolving eye seemed to be\ncoming round in his direction, said:\n\n'Bunsby, my lad, how fares it?'\n\nA deep, gruff, husky utterance, which seemed to have no connexion\nwith Bunsby, and certainly had not the least effect upon his face,\nreplied, 'Ay, ay, shipmet, how goes it?' At the same time Bunsby's\nright hand and arm, emerging from a pocket, shook the Captain's, and\nwent back again.\n\n'Bunsby,' said the Captain, striking home at once, 'here you are; a\nman of mind, and a man as can give an opinion. Here's a young lady as\nwants to take that opinion, in regard of my friend Wal'r; likewise my\nt'other friend, Sol Gills, which is a character for you to come within\nhail of, being a man of science, which is the mother of inwention, and\nknows no law. Bunsby, will you wear, to oblige me, and come along with\nus?'\n\nThe great commander, who seemed by expression of his visage to be\nalways on the look-out for something in the extremest distance' and to\nhave no ocular knowledge of any anng' within ten miles, made no reply\nwhatever.\n\n'Here is a man,' said the Captain, addressing himself to his fair\nauditors, and indicating the commander with his outstretched hook,\n'that has fell down, more than any man alive; that has had more\naccidents happen to his own self than the Seamen's Hospital to all\nhands; that took as many spars and bars and bolts about the outside of\nhis head when he was young, as you'd want a order for on Chatham-yard\nto build a pleasure yacht with; and yet that his opinions in that way,\nit's my belief, for there ain't nothing like 'em afloat or ashore.'\n\nThe stolid commander appeared by a very slight vibration in his\nelbows, to express some satisfitction in this encomium; but if his\nface had been as distant as his gaze was, it could hardIy have\nenlightened the beholders less in reference to anything that was\npassing in his thoughts.\n\n'Shipmate,' said Bunsby, all of a sudden, and stooping down to look\nout under some interposing spar, 'what'll the ladies drink?'\n\nCaptain Cuttle, whose delicacy was shocked by such an inquiry in\nconnection with Florence, drew the sage aside, and seeming to explain\nin his ear, accompanied him below; where, that he might not take\noffence, the Captain drank a dram himself' which Florence and Susan,\nglancing down the open skylight, saw the sage, with difficulty finding\nroom for himself between his berth and a very little brass fireplace,\nserve out for self and friend. They soon reappeared on deck, and\nCaptain Cuttle, triumphing in the success of his enterprise, conducted\nFlorence back to the coach, while Bunsby followed, escorting Miss\nNipper, whom he hugged upon the way (much to that young lady's\nindignation) with his pilot-coated arm, like a blue bear.\n\nThe Captain put his oracle inside, and gloried so much in having\nsecured him, and having got that mind into a hackney-coach, that he\ncould not refrain from often peeping in at Florence through the little\nwindow behind the driver, and testifiing his delight in smiles, and\nalso in taps upon his forehead, to hint to her that the brain of\nBunsby was hard at it' In the meantime, Bunsby, still hugging Miss\nNipper (for his friend, the Captain, had not exaggerated the softness\nof his heart), uniformily preserved his gravity of deportment, and\nshowed no other consciousness of her or anything.\n\nUncle Sol, who had come home, received them at the door, and\nushered them immediately into the little back parlour: strangely\naltered by the absence of Walter. On the table, and about the room,\nwere the charts and maps on which the heavy-hearted Instrument-maker\nhad again and again tracked the missing vessel across the sea, and on\nwhich, with a pair of compasses that he still had in his hand, he had\nbeen measuring, a minute before, how far she must have driven, to have\ndriven here or there: and trying to demonstrate that a long time must\nelapse before hope was exhausted.\n\n'Whether she can have run,' said Uncle Sol, looking wistfully over\nthe chart; 'but no, that's almost impossible or whether she can have\nbeen forced by stress of weather, - but that's not reasonably likely.\nOr whether there is any hope she so far changed her course as - but\neven I can hardly hope that!' With such broken suggestions, poor old\nUncle Sol roamed over the great sheet before him, and could not find a\nspeck of hopeful probability in it large enough to set one small point\nof the compasses upon.\n\nFlorence saw immediately - it would have been difficult to help\nseeing - that there was a singular, indescribable change in the old\nman, and that while his manner was far more restless and unsettled\nthan usual, there was yet a curious, contradictory decision in it,\nthat perplexed her very much. She fancied once that he spoke wildly,\nand at random; for on her saying she regretted not to have seen him\nwhen she had been there before that morning, he at first replied that\nhe had been to see her, and directly afterwards seemed to wish to\nrecall that answer.\n\n'You have been to see me?' said Florence. 'To-day?'\n\n'Yes, my dear young lady,' returned Uncle Sol, looking at her and\naway from her in a confused manner. 'I wished to see you with my own\neyes, and to hear you with my own ears, once more before - ' There he\nstopped.\n\n'Before when? Before what?' said Florence, putting her hand upon\nhis arm.\n\n'Did I say \"before?\"' replied old Sol. 'If I did, I must have meant\nbefore we should have news of my dear boy.'\n\n'You are not well,' said Florence, tenderly. 'You have been so very\nanxious I am sure you are not well.'\n\n'I am as well,' returned the old man, shutting up his right hand,\nand holding it out to show her: 'as well and firm as any man at my\ntime of life can hope to be. See! It's steady. Is its master not as\ncapable of resolution and fortitude as many a younger man? I think so.\nWe shall see.'\n\nThere was that in his manner more than in his words, though they\nremained with her too, which impressed Florence so much, that she\nwould have confided her uneasiness to Captain Cuttle at that moment,\nif the Captain had not seized that moment for expounding the state of\ncircumstance, on which the opinion of the sagacious Bunsby was\nrequested, and entreating that profound authority to deliver the same.\n\nBunsby, whose eye continued to be addressed to somewhere about the\nhalf-way house between London and Gravesend, two or three times put\nout his rough right arm, as seeking to wind it for inspiration round\nthe fair form of Miss Nipper; but that young female having withdrawn\nherself, in displeasure, to the opposite side of the table, the soft\nheart of the Commander of the Cautious Clara met with no response to\nits impulses. After sundry failures in this wise, the Commander,\naddressing himself to nobody, thus spake; or rather the voice within\nhim said of its own accord, and quite independent of himself, as if he\nwere possessed by a gruff spirit:\n\n'My name's Jack Bunsby!'\n\n'He was christened John,' cried the delighted Captain Cuttle. 'Hear\nhim!'\n\n'And what I says,' pursued the voice, after some deliberation, 'I\nstands to.\n\nThe Captain, with Florence on his arm, nodded at the auditory, and\nseemed to say, 'Now he's coming out. This is what I meant when I\nbrought him.'\n\n'Whereby,' proceeded the voice, 'why not? If so, what odds? Can any\nman say otherwise? No. Awast then!'\n\nWhen it had pursued its train of argument to this point, the voice\nstopped, and rested. It then proceeded very slowly, thus:\n\n'Do I believe that this here Son and Heir's gone down, my lads?\nMayhap. Do I say so? Which? If a skipper stands out by Sen' George's\nChannel, making for the Downs, what's right ahead of him? The\nGoodwins. He isn't foroed to run upon the Goodwins, but he may. The\nbearings of this observation lays in the application on it. That ain't\nno part of my duty. Awast then, keep a bright look-out for'ard, and\ngood luck to you!'\n\nThe voice here went out of the back parlour and into the street,\ntaking the Commander of the Cautious Clara with it, and accompanying\nhim on board again with all convenient expedition, where he\nimmediately turned in, and refreshed his mind with a nap.\n\nThe students of the sage's precepts, left to their own application\nof his wisdom - upon a principle which was the main leg of the Bunsby\ntripod, as it is perchance of some other oracular stools - looked upon\none another in a little uncertainty; while Rob the Grinder, who had\ntaken the innocent freedom of peering in, and listening, through the\nskylight in the roof, came softly down from the leads, in a state of\nvery dense confusion. Captain Cuttle, however, whose admiration of\nBunsby was, if possible, enhanced by the splendid manner in which he\nhad justified his reputation and come through this solemn reference,\nproceeded to explain that Bunsby meant nothing but confidence; that\nBunsby had no misgivings; and that such an opinion as that man had\ngiven, coming from such a mind as his, was Hope's own anchor, with\ngood roads to cast it in. Florence endeavoured to believe that the\nCaptain was right; but the Nipper, with her arms tight folded, shook\nher head in resolute denial, and had no more trust m Bunsby than in Mr\nPerch himself.\n\nThe philosopher seemed to have left Uncle Sol pretty much where he\nhad found him, for he still went roaming about the watery world,\ncompasses in hand, and discovering no rest for them. It was in\npursuance of a whisper in his ear from Florence, while the old man was\nabsorbed in this pursuit, that Captain Cuttle laid his heavy hand upon\nhis shoulder.\n\n'What cheer, Sol Gills?' cried the Captain, heartily.\n\n'But so-so, Ned,' returned the Instrument-maker. 'I have been\nremembering, all this afternoon, that on the very day when my boy\nentered Dombey's House, and came home late to dinner, sitting just\nthere where you stand, we talked of storm and shipwreck, and I could\nhardly turn him from the subject'\n\nBut meeting the eyes of Florence, which were fixed with earnest\nscrutiny upon his face, the old man stopped and smiled.\n\n'Stand by, old friend!' cried the Captain. 'Look alive! I tell you\nwhat, Sol Gills; arter I've convoyed Heart's-delight safe home,' here\nthe Captain kissed his hook to Florence, 'I'll come back and take you\nin tow for the rest of this blessed day. You'll come and eat your\ndinner along with me, Sol, somewheres or another.'\n\n'Not to-day, Ned!' said the old man quickly, and appearing to be\nunaccountably startled by the proposition. 'Not to-day. I couldn't do\nit!'\n\n'Why not?' returned the Captain, gazing at him in astonishment.\n\n'I - I have so much to do. I - I mean to think of, and arrange. I\ncouldn't do it, Ned, indeed. I must go out again, and be alone, and\nturn my mind to many things to-day.'\n\nThe Captain looked at the Instrument-maker, and looked at Florence,\nand again at the Instrument-maker. 'To-morrow, then,' he suggested, at\nlast.\n\n'Yes, yes. To-morrow,' said the old man. 'Think of me to-morrow.\nSay to-morrow.'\n\n'I shall come here early, mind, Sol Gills,' stipulated the Captain.\n\n'Yes, yes. The first thing tomorrow morning,' said old Sol; 'and\nnow good-bye, Ned Cuttle, and God bless you!'\n\nSqueezing both the Captain's hands, with uncommon fervour, as he\nsaid it, the old man turned to Florence, folded hers in his own, and\nput them to his lips; then hurried her out to the coach with very\nsingular precipitation. Altogether, he made such an effect on Captain\nCuttle that the Captain lingered behind, and instructed Rob to be\nparticularly gentle and attentive to his master until the morning:\nwhich injunction he strengthened with the payment of one shilling\ndown, and the promise of another sixpence before noon next day. This\nkind office performed, Captain Cuttle, who considered himself the\nnatural and lawful body-guard of Florence, mounted the box with a\nmighty sense of his trust, and escorted her home. At parting, he\nassured her that he would stand by Sol Gills, close and true; and once\nagain inquired of Susan Nipper, unable to forget her gallant words in\nreference to Mrs MacStinger, 'Would you, do you think my dear,\nthough?'\n\nWhen the desolate house had closed upon the two, the Captain's\nthoughts reverted to the old Instrument-maker, and he felt\nuncomfortable. Therefore, instead of going home, he walked up and down\nthe street several times, and, eking out his leisure until evening,\ndined late at a certain angular little tavern in the City, with a\npublic parlour like a wedge, to which glazed hats much resorted. The\nCaptain's principal intention was to pass Sol Gills's, after dark, and\nlook in through the window: which he did, The parlour door stood open,\nand he could see his old friend writing busily and steadily at the\ntable within, while the little Midshipman, already sheltered from the\nnight dews, watched him from the counter; under which Rob the Grinder\nmade his own bed, preparatory to shutting the shop. Reassured by the\ntranquillity that reigned within the precincts of the wooden mariner,\nthe Captain headed for Brig Place, resolving to weigh anchor betimes\nin the morning.\n\n\n\nCHAPTER 24.\n\nThe Study of a Loving Heart\n\n\n\nSir Barnet and Lady Skettles, very good people, resided in a pretty\nvilla at Fulham, on the banks of the Thames; which was one of the most\ndesirable residences in the world when a rowing-match happened to be\ngoing past, but had its little inconveniences at other times, among\nwhich may be enumerated the occasional appearance of the river in the\ndrawing-room, and the contemporaneous disappearance of the lawn and\nshrubbery.\n\nSir Barnet Skettles expressed his personal consequence chiefly\nthrough an antique gold snuffbox, and a ponderous silk\npocket-kerchief, which he had an imposing manner of drawing out of his\npocket like a banner and using with both hands at once. Sir Barnet's\nobject in life was constantly to extend the range of his acquaintance.\nLike a heavy body dropped into water - not to disparage so worthy a\ngentleman by the comparison - it was in the nature of things that Sir\nBarnet must spread an ever widening circle about him, until there was\nno room left. Or, like a sound in air, the vibration of which,\naccording to the speculation of an ingenious modern philosopher, may\ngo on travelling for ever through the interminable fields of space,\nnothing but coming to the end of his moral tether could stop Sir\nBarnet Skettles in his voyage of discovery through the social system.\n\nSir Barnet was proud of making people acquainted with people. He\nliked the thing for its own sake, and it advanced his favourite object\ntoo. For example, if Sir Barnet had the good fortune to get hold of a\nlaw recruit, or a country gentleman, and ensnared him to his\nhospitable villa, Sir Barnet would say to him, on the morning after\nhis arrival, 'Now, my dear Sir, is there anybody you would like to\nknow? Who is there you would wish to meet? Do you take any interest in\nwriting people, or in painting or sculpturing people, or in acting\npeople, or in anything of that sort?' Possibly the patient answered\nyes, and mentioned somebody, of whom Sir Barnet had no more personal\nknowledge than of Ptolemy the Great. Sir Barnet replied, that nothing\non earth was easier, as he knew him very well: immediately called on\nthe aforesaid somebody, left his card, wrote a short note, - 'My dear\nSir - penalty of your eminent position - friend at my house naturally\ndesirous - Lady Skettles and myself participate - trust that genius\nbeing superior to ceremonies, you will do us the distinguished favour\nof giving us the pleasure,' etc, etc. - and so killed a brace of birds\nwith one stone, dead as door-nails.\n\nWith the snuff-box and banner in full force, Sir Barnet Skettles\npropounded his usual inquiry to Florence on the first morning of her\nvisit. When Florence thanked him, and said there was no one in\nparticular whom she desired to see, it was natural she should think\nwith a pang, of poor lost Walter. When Sir Barnet Skettles, urging his\nkind offer, said, 'My dear Miss Dombey, are you sure you can remember\nno one whom your good Papa - to whom I beg you present the best\ncompliments of myself and Lady Skettles when you write - might wish\nyou to know?' it was natural, perhaps, that her poor head should droop\na little, and that her voice should tremble as it softly answered in\nthe negative.\n\nSkettles Junior, much stiffened as to his cravat, and sobered down\nas to his spirits' was at home for the holidays, and appeared to feel\nhimself aggrieved by the solicitude of his excellent mother that he\nshould be attentive to Florence. Another and a deeper injury under\nwhich the soul of young Barnet chafed, was the company of Dr and Mrs\nBlimber, who had been invited on a visit to the paternal roof-tree,\nand of whom the young gentleman often said he would have preferred\ntheir passing the vacation at Jericho.\n\n'Is there anybody you can suggest now, Doctor Blimber?' said Sir\nBarnet Skettles, turning to that gentleman.\n\n'You are very kind, Sir Barnet,' returned Doctor Blimber. 'Really I\nam not aware that there is, in particular. I like to know my\nfellow-men in general, Sir Barnet. What does Terence say? Anyone who\nis the parent of a son is interesting to me.\n\n'Has Mrs Blimber any wish to see any remarkable person?' asked Sir\nBarnet, courteously.\n\nMrs Blimber replied, with a sweet smile and a shake of her sky-blue\ncap, that if Sir Barnet could have made her known to Cicero, she would\nhave troubled him; but such an introduction not being feasible, and\nshe already enjoying the friendship of himself and his amiable lady,\nand possessing with the Doctor her husband their joint confidence in\nregard to their dear son - here young Barnet was observed to curl his\nnose - she asked no more.\n\nSir Barnet was fain, under these circumstances, to content himself\nfor the time with the company assembled. Florence was glad of that;\nfor she had a study to pursue among them, and it lay too near her\nheart, and was too precious and momentous, to yield to any other\ninterest.\n\nThere were some children staying in the house. Children who were as\nfrank and happy with fathers and with mothers as those rosy faces\nopposite home. Children who had no restraint upon their love. and\nfreely showed it. Florence sought to learn their secret; sought to\nfind out what it was she had missed; what simple art they knew, and\nshe knew not; how she could be taught by them to show her father that\nshe loved him, and to win his love again.\n\nMany a day did Florence thoughtfully observe these children. On\nmany a bright morning did she leave her bed when the glorious sun\nrose, and walking up and down upon the river's bank' before anyone in\nthe house was stirring, look up at the windows of their rooms, and\nthink of them, asleep, so gently tended and affectionately thought of.\nFlorence would feel more lonely then, than in the great house all\nalone; and would think sometimes that she was better there than here,\nand that there was greater peace in hiding herself than in mingling\nwith others of her age, and finding how unlike them all she was. But\nattentive to her study, though it touched her to the quick at every\nlittle leaf she turned in the hard book, Florence remained among them,\nand tried with patient hope, to gain the knowledge that she wearied\nfor.\n\nAh! how to gain it! how to know the charm in its beginning! There\nwere daughters here, who rose up in the morning, and lay down to rest\nat night, possessed of fathers' hearts already. They had no repulse to\novercome, no coldness to dread, no frown to smooth away. As the\nmorning advanced, and the windows opened one by one, and the dew began\nto dry upon the flowers and and youthful feet began to move upon the\nlawn, Florence, glancing round at the bright faces, thought what was\nthere she could learn from these children? It was too late to learn\nfrom them; each could approach her father fearlessly, and put up her\nlips to meet the ready kiss, and wind her arm about the neck that bent\ndown to caress her. She could not begin by being so bold. Oh! could it\nbe that there was less and less hope as she studied more and more!\n\nShe remembered well, that even the old woman who had robbed her\nwhen a little child - whose image and whose house, and all she had\nsaid and done, were stamped upon her recollection, with the enduring\nsharpness of a fearful impression made at that early period of life -\nhad spoken fondly of her daughter, and how terribly even she had cried\nout in the pain of hopeless separation from her child But her own\nmother, she would think again, when she recalled this, had loved her\nwell. Then, sometimes, when her thoughts reverted swiftly to the void\nbetween herself and her father, Florence would tremble, and the tears\nwould start upon her face, as she pictured to herself her mother\nliving on, and coming also to dislike her, because of her wanting the\nunknown grace that should conciliate that father naturally, and had\nnever done so from her cradle She knew that this imagination did wrong\nto her mother's memory, and had no truth in it, or base to rest upon;\nand yet she tried so hard to justify him, and to find the whole blame\nin herself, that she could not resist its passing, like a wild cloud,\nthrough the distance of her mind.\n\nThere came among the other visitors, soon after Florence, one\nbeautiful girl, three or four years younger than she, who was an\norphan child, and who was accompanied by her aunt, a grey-haired lady,\nwho spoke much to Florence, and who greatly liked (but that they all\ndid) to hear her sing of an evening, and would always sit near her at\nthat time, with motherly interest. They had only been two days in the\nhouse, when Florence, being in an arbour in the garden one warm\nmorning, musingly observant of a youthful group upon the turf, through\nsome intervening boughs, - and wreathing flowers for the head of one\nlittle creature among them who was the pet and plaything of the rest,\nheard this same lady and her niece, in pacing up and down a sheltered\nnook close by, speak of herself.\n\n'Is Florence an orphan like me, aunt?' said the child.\n\n'No, my love. She has no mother, but her father is living.'\n\n'Is she in mourning for her poor Mama, now?' inquired the child\nquickly.\n\n'No; for her only brother.'\n\n'Has she no other brother?'\n\n'None.'\n\n'No sister?'\n\n'None,'\n\n'I am very, very sorry!' said the little girL\n\nAs they stopped soon afterwards to watch some boats, and had been\nsilent in the meantime, Florence, who had risen when she heard her\nname, and had gathered up her flowers to go and meet them, that they\nmight know of her being within hearing, resumed her seat and work,\nexpecting to hear no more; but the conversation recommenced next\nmoment.\n\n'Florence is a favourite with everyone here, and deserves to be, I\nam sure,' said the child, earnestly. 'Where is her Papa?'\n\nThe aunt replied, after a moment's pause, that she did not know.\nHer tone of voice arrested Florence, who had started from her seat\nagain; and held her fastened to the spot, with her work hastily caught\nup to her bosom, and her two hands saving it from being scattered on\nthe ground.\n\n'He is in England, I hope, aunt?' said the child.\n\n'I believe so. Yes; I know he is, indeed.'\n\n'Has he ever been here?'\n\n'I believe not. No.'\n\n'Is he coming here to see her?'\n\n'I believe not.\n\n'Is he lame, or blind, or ill, aunt?' asked the child.\n\nThe flowers that Florence held to her breast began to fall when she\nheard those words, so wonderingly spoke She held them closer; and her\nface hung down upon them'\n\n'Kate,' said the lady, after another moment of silence, 'I will\ntell you the whole truth about Florence as I have heard it, and\nbelieve it to be. Tell no one else, my dear, because it may be little\nknown here, and your doing so would give her pain.'\n\n'I never will!' exclaimed the child.\n\n'I know you never will,' returned the lady. 'I can trust you as\nmyself. I fear then, Kate, that Florence's father cares little for\nher, very seldom sees her, never was kind to her in her life, and now\nquite shuns her and avoids her. She would love him dearly if he would\nsuffer her, but he will not - though for no fault of hers; and she is\ngreatly to be loved and pitied by all gentle hearts.'\n\nMore of the flowers that Florence held fell scattering on the\nground; those that remained were wet, but not with dew; and her face\ndropped upon her laden hands.\n\n'Poor Florence! Dear, good Florence!' cried the child.\n\n'Do you know why I have told you this, Kate?' said the lady.\n\n'That I may be very kind to her, and take great care to try to\nplease her. Is that the reason, aunt?'\n\n'Partly,' said the lady, 'but not all. Though we see her so\ncheerful; with a pleasant smile for everyone; ready to oblige us all,\nand bearing her part in every amusement here: she can hardly be quite\nhappy, do you think she can, Kate?'\n\n'I am afraid not,' said the little girl.\n\n'And you can understand,' pursued the lady, 'why her observation of\nchildren who have parents who are fond of them, and proud of them -\nlike many here, just now - should make her sorrowful in secret?'\n\n'Yes, dear aunt,' said the child, 'I understand that very well.\nPoor Florence!'\n\nMore flowers strayed upon the ground, and those she yet held to her\nbreast trembled as if a wintry wind were rustling them.\n\n'My Kate,' said the lady, whose voice was serious, but very calm\nand sweet, and had so impressed Florence from the first moment of her\nhearing it, 'of all the youthful people here, you are her natural and\nharmless friend; you have not the innocent means, that happier\nchildren have - '\n\n'There are none happier, aunt!' exclaimed the child, who seemed to\ncling about her.\n\n'As other children have, dear Kate, of reminding her of her\nmisfortune. Therefore I would have you, when you try to be her little\nfriend, try all the more for that, and feel that the bereavement you\nsustained - thank Heaven! before you knew its weight- gives you claim\nand hold upon poor Florence.'\n\n'But I am not without a parent's love, aunt, and I never have\nbeen,' said the child, 'with you.'\n\n'However that may be, my dear,' returned the lady, 'your misfortune\nis a lighter one than Florence's; for not an orphan in the wide world\ncan be so deserted as the child who is an outcast from a living\nparent's love.'\n\nThe flowers were scattered on the ground like dust; the empty hands\nwere spread upon the face; and orphaned Florence, shrinking down upon\nthe ground, wept long and bitterly.\n\nBut true of heart and resolute in her good purpose, Florence held\nto it as her dying mother held by her upon the day that gave Paul\nlife. He did not know how much she loved him. However long the time in\ncoming, and however slow the interval, she must try to bring that\nknowledge to her father's heart one day or other. Meantime she must be\ncareful in no thoughtless word, or look, or burst of feeling awakened\nby any chance circumstance, to complain against him, or to give\noccasion for these whispers to his prejudice.\n\nEven in the response she made the orphan child, to whom she was\nattracted strongly, and whom she had such occasion to remember,\nFlorence was mindful of him' If she singled her out too plainly\n(Florence thought) from among the rest, she would confirm - in one\nmind certainly: perhaps in more - the belief that he was cruel and\nunnatural. Her own delight was no set-off to this, 'What she had\noverheard was a reason, not for soothing herself, but for saving him;\nand Florence did it, in pursuance of the study of her heart.\n\nShe did so always. If a book were read aloud, and there were\nanything in the story that pointed at an unkind father, she was in\npain for their application of it to him; not for herself. So with any\ntrifle of an interlude that was acted, or picture that was shown, or\ngame that was played, among them. The occasions for such tenderness\ntowards him were so many, that her mind misgave her often, it would\nindeed be better to go back to the old house, and live again within\nthe shadow of its dull walls, undisturbed. How few who saw sweet\nFlorence, in her spring of womanhood, the modest little queen of those\nsmall revels, imagined what a load of sacred care lay heavy in her\nbreast! How few of those who stiffened in her father's freezing\natmosphere, suspected what a heap of fiery coals was piled upon his\nhead!\n\nFlorence pursued her study patiently, and, failing to acquire the\nsecret of the nameless grace she sought, among the youthful company\nwho were assembled in the house, often walked out alone, in the early\nmorning, among the children of the poor. But still she found them all\ntoo far advanced to learn from. They had won their household places\nlong ago, and did not stand without, as she did, with a bar across the\ndoor.\n\nThere was one man whom she several times observed at work very\nearly, and often with a girl of about her own age seated near him' He\nwas a very poor man, who seemed to have no regular employment, but now\nwent roaming about the banks of the river when the tide was low,\nlooking out for bits and scraps in the mud; and now worked at the\nunpromising little patch of garden-ground before his cottage; and now\ntinkered up a miserable old boat that belonged to him; or did some job\nof that kind for a neighbour, as chance occurred. Whatever the man's\nlabour, the girl was never employed; but sat, when she was with him,\nin a listless, moping state, and idle.\n\nFlorence had often wished to speak to this man; yet she had never\ntaken courage to do so, as he made no movement towards her. But one\nmorning when she happened to come upon him suddenly, from a by-path\namong some pollard willows which terminated in the little shelving\npiece of stony ground that lay between his dwelling and the water,\nwhere he was bending over a fire he had made to caulk the old boat\nwhich was lying bottom upwards, close by, he raised his head at the\nsound of her footstep, and gave her Good morning.\n\n'Good morning,' said Florence, approaching nearer, 'you are at work\nearly.'\n\n'I'd be glad to be often at work earlier, Miss, if I had work to\ndo.'\n\n'Is it so hard to get?' asked Florence.\n\n'I find it so,' replied the man.\n\nFlorence glanced to where the girl was sitting, drawn together,\nwith her elbows on her knees, and her chin on her hands, and said:\n\n'Is that your daughter?'\n\nHe raised his head quickly, and looking towards the girl with a\nbrightened face, nodded to her, and said 'Yes,' Florence looked\ntowards her too, and gave her a kind salutation; the girl muttered\nsomething in return, ungraciously and sullenly.\n\n'Is she in want of employment also?' said Florence.\n\nThe man shook his head. 'No, Miss,' he said. 'I work for both,'\n\n'Are there only you two, then?' inquired Florence.\n\n'Only us two,' said the man. 'Her mother his been dead these ten\nyear. Martha!' lifted up his head again, and whistled to her) 'won't\nyou say a word to the pretty young lady?'\n\nThe girl made an impatient gesture with her cowering shoulders, and\nturned her head another way. Ugly, misshapen, peevish,\nill-conditioned, ragged, dirty - but beloved! Oh yes! Florence had\nseen her father's look towards her, and she knew whose look it had no\nlikeness to.\n\n'I'm afraid she's worse this morning, my poor girl!' said the man,\nsuspending his work, and contemplating his ill-favoured child, with a\ncompassion that was the more tender for being rougher.\n\n'She is ill, then!' said Florence,\n\nThe man drew a deep sigh 'I don't believe my Martha's had five\nshort days' good health,' he answered, looking at her still, 'in as\nmany long years'\n\n'Ay! and more than that, John,' said a neighbour, who had come down\nto help him with the boat.\n\n'More than that, you say, do you?' cried the other, pushing back\nhis battered hat, and drawing his hand across his forehead. 'Very\nlike. It seems a long, long time.'\n\n'And the more the time,' pursued the neighbour, 'the more you've\nfavoured and humoured her, John, till she's got to be a burden to\nherself, and everybody else'\n\n'Not to me,' said her father, falling to his work. 'Not to me.'\n\nFlorence could feel - who better? - how truly he spoke. She drew a\nlittle closer to him, and would have been glad to touch his rugged\nhand, and thank him for his goodness to the miserable object that he\nlooked upon with eyes so different from any other man's.\n\n'Who would favour my poor girl - to call it favouring - if I\ndidn't?' said the father.\n\n'Ay, ay,' cried the neighbour. 'In reason, John. But you! You rob\nyourself to give to her. You bind yourself hand and foot on her\naccount. You make your life miserable along of her. And what does she\ncare! You don't believe she knows it?'\n\nThe father lifted up his head again, and whistled to her. Martha\nmade the same impatient gesture with her crouching shoulders, in\nreply; and he was glad and happy.\n\n'Only for that, Miss,' said the neighbour, with a smile, in which\nthere was more of secret sympathy than he expressed; 'only to get\nthat, he never lets her out of his sight!'\n\n'Because the day'll come, and has been coming a long while,'\nobserved the other, bending low over his work, 'when to get half as\nmuch from that unfort'nate child of mine - to get the trembling of a\nfinger, or the waving of a hair - would be to raise the dead.'\n\nFlorence softly put some money near his hand on the old boat, and\nleft him.\n\nAnd now Florence began to think, if she were to fall ill, if she\nwere to fade like her dear brother, would he then know that she had\nloved him; would she then grow dear to him; would he come to her\nbedside, when she was weak and dim of sight, and take her into his\nembrace, and cancel all the past? Would he so forgive her, in that\nchanged condition, for not having been able to lay open her childish\nheart to him, as to make it easy to relate with what emotions she had\ngone out of his room that night; what she had meant to say if she had\nhad the courage; and how she had endeavoured, afterwards, to learn the\nway she never knew in infancy?\n\nYes, she thought if she were dying, he would relent. She thought,\nthat if she lay, serene and not unwilling to depart, upon the bed that\nwas curtained round with recollections of their darling boy, he would\nbe touched home, and would say, 'Dear Florence, live for me, and we\nwill love each other as we might have done, and be as happy as we\nmight have been these many years!' She thought that if she heard such\nwords from him, and had her arms clasped round him' she could answer\nwith a smile, 'It is too late for anything but this; I never could be\nhappier, dear father!' and so leave him, with a blessing on her lips.\n\nThe golden water she remembered on the wall, appeared to Florence,\nin the light of such reflections, only as a current flowing on to\nrest, and to a region where the dear ones, gone before, were waiting,\nhand in hand; and often when she looked upon the darker river rippling\nat her feet, she thought with awful wonder, but not terror, of that\nriver which her brother had so often said was bearing him away.\n\nThe father and his sick daughter were yet fresh in Florence's mind,\nand, indeed, that incident was not a week old, when Sir Barnet and his\nlady going out walking in the lanes one afternoon, proposed to her to\nbear them company. Florence readily consenting, Lady Skettles ordered\nout young Barnet as a matter of course. For nothing delighted Lady\nSkettles so much, as beholding her eldest son with Florence on his\narm.\n\nBarnet, to say the truth, appeared to entertain an opposite\nsentiment on the subject, and on such occasions frequently expressed\nhimself audibly, though indefinitely, in reference to 'a parcel of\ngirls.' As it was not easy to ruffle her sweet temper, however,\nFlorence generally reconciled the young gentleman to his fate after a\nfew minutes, and they strolled on amicably: Lady Skettles and Sir\nBarnet following, in a state of perfect complacency and high\ngratification.\n\nThis was the order of procedure on the afternoon in question; and\nFlorence had almost succeeded in overruling the present objections of\nSkettles Junior to his destiny, when a gentleman on horseback came\nriding by, looked at them earnestly as he passed, drew in his rein,\nwheeled round, and came riding back again, hat in hand.\n\nThe gentleman had looked particularly at Florence; and when the\nlittle party stopped, on his riding back, he bowed to her, before\nsaluting Sir Barnet and his lady. Florence had no remembrance of\nhaving ever seen him, but she started involuntarily when he came near\nher, and drew back.\n\n'My horse is perfectly quiet, I assure you,' said the gentleman.\n\nIt was not that, but something in the gentleman himself - Florence\ncould not have said what - that made her recoil as if she had been\nstung.\n\n'I have the honour to address Miss Dombey, I believe?' said the\ngentleman, with a most persuasive smile. On Florence inclining her\nhead, he added, 'My name is Carker. I can hardly hope to be remembered\nby Miss Dombey, except by name. Carker.'\n\nFlorence, sensible of a strange inclination to shiver, though the\nday was hot, presented him to her host and hostess; by whom he was\nvery graciously received.\n\n'I beg pardon,' said Mr Carker, 'a thousand times! But I am going\ndown tomorrow morning to Mr Dombey, at Leamington, and if Miss Dombey\ncan entrust me with any commission, need I say how very happy I shall\nbe?'\n\nSir Barnet immediately divining that Florence would desire to write\na letter to her father, proposed to return, and besought Mr Carker to\ncome home and dine in his riding gear. Mr Carker had the misfortune to\nbe engaged to dinner, but if Miss Dombey wished to write, nothing\nwould delight him more than to accompany them back, and to be her\nfaithful slave in waiting as long as she pleased. As he said this with\nhis widest smile, and bent down close to her to pat his horse's neck,\nFlorence meeting his eyes, saw, rather than heard him say, 'There is\nno news of the ship!'\n\nConfused, frightened, shrinking from him, and not even sure that he\nhad said those words, for he seemed to have shown them to her in some\nextraordinary manner through his smile, instead of uttering them,\nFlorence faintly said that she was obliged to him, but she would not\nwrite; she had nothing to say.\n\n'Nothing to send, Miss Dombey?' said the man of teeth.\n\n'Nothing,' said Florence, 'but my - but my dear love- if you\nplease.'\n\nDisturbed as Florence was, she raised her eyes to his face with an\nimploring and expressive look, that plainly besought him, if he knew -\nwhich he as plainly did - that any message between her and her father\nwas an uncommon charge, but that one most of all, to spare her. Mr\nCarker smiled and bowed low, and being charged by Sir Barnet with the\nbest compliments of himself and Lady Skettles, took his leave, and\nrode away: leaving a favourable impression on that worthy couple.\nFlorence was seized with such a shudder as he went, that Sir Barnet,\nadopting the popular superstition, supposed somebody was passing over\nher grave. Mr Carker turning a corner, on the instant, looked back,\nand bowed, and disappeared, as if he rode off to the churchyard\nstraight, to do it.\n\n\n\nCHAPTER 25.\n\nStrange News of Uncle Sol\n\n\nCaptain Cuttle, though no sluggard, did not turn out so early on\nthe morning after he had seen Sol Gills, through the shop-window,\nwriting in the parlour, with the Midshipman upon the counter, and Rob\nthe Grinder making up his bed below it, but that the clocks struck six\nas he raised himself on his elbow, and took a survey of his little\nchamber. The Captain's eyes must have done severe duty, if he usually\nopened them as wide on awaking as he did that morning; and were but\nroughly rewarded for their vigilance, if he generally rubbed them half\nas hard. But the occasion was no common one, for Rob the Grinder had\ncertainly never stood in the doorway of Captain Cuttle's room before,\nand in it he stood then, panting at the Captain, with a flushed and\ntouzled air of Bed about him, that greatly heightened both his colour\nand expression.\n\n'Holloa!' roared the Captain. 'What's the matter?'\n\nBefore Rob could stammer a word in answer, Captain Cuttle turned\nout, all in a heap, and covered the boy's mouth with his hand.\n\n'Steady, my lad,' said the Captain, 'don't ye speak a word to me as\nyet!'\n\nThe Captain, looking at his visitor in great consternation, gently\nshouldered him into the next room, after laying this injunction upon\nhim; and disappearing for a few moments, forthwith returned in the\nblue suit. Holding up his hand in token of the injunction not yet\nbeing taken off, Captain Cuttle walked up to the cupboard, and poured\nhimself out a dram; a counterpart of which he handed to the messenger.\nThe Captain then stood himself up in a corner, against the wall, as if\nto forestall the possibility of being knocked backwards by the\ncommunication that was to be made to him; and having swallowed his\nliquor, with his eyes fixed on the messenger, and his face as pale as\nhis face could be, requested him to 'heave ahead.'\n\n'Do you mean, tell you, Captain?' asked Rob, who had been greatly\nimpressed by these precautions\n\n'Ay!' said the Captain.\n\n'Well, Sir,' said Rob, 'I ain't got much to tell. But look here!'\n\nRob produced a bundle of keys. The Captain surveyed them, remained\nin his corner, and surveyed the messenger.\n\n'And look here!' pursued Rob.\n\nThe boy produced a sealed packet, which Captain Cuttle stared at as\nhe had stared at the keys.\n\n'When I woke this morning, Captain,' said Rob, 'which was about a\nquarter after five, I found these on my pillow. The shop-door was\nunbolted and unlocked, and Mr Gills gone.'\n\n'Gone!' roared the Captain.\n\n'Flowed, Sir,' returned Rob.\n\nThe Captain's voice was so tremendous, and he came out of his\ncorner with such way on him, that Rob retreated before him into\nanother corner: holding out the keys and packet, to prevent himself\nfrom being run down.\n\n'\"For Captain Cuttle,\" Sir,' cried Rob, 'is on the keys, and on the\npacket too. Upon my word and honour, Captain Cuttle, I don't know\nanything more about it. I wish I may die if I do! Here's a sitiwation\nfor a lad that's just got a sitiwation,' cried the unfortunate\nGrinder, screwing his cuff into his face: 'his master bolted with his\nplace, and him blamed for it!'\n\nThese lamentations had reference to Captain Cuttle's gaze, or\nrather glare, which was full of vague suspicions, threatenings, and\ndenunciations. Taking the proffered packet from his hand, the Captain\nopened it and read as follows:-\n\n'My dear Ned Cuttle. Enclosed is my will!' The Captain turned it\nover, with a doubtful look - 'and Testament - Where's the Testament?'\nsaid the Captain, instantly impeaching the ill-fated Grinder. 'What\nhave you done with that, my lad?'\n\n'I never see it,' whimpered Rob. 'Don't keep on suspecting an\ninnocent lad, Captain. I never touched the Testament.'\n\nCaptain Cuttle shook his head, implying that somebody must be made\nanswerable for it; and gravely proceeded:\n\n'Which don't break open for a year, or until you have decisive\nintelligence of my dear Walter, who is dear to you, Ned, too, I am\nsure.' The Captain paused and shook his head in some emotion; then, as\na re-establishment of his dignity in this trying position, looked with\nexceeding sternness at the Grinder. 'If you should never hear of me,\nor see me more, Ned, remember an old friend as he will remember you to\nthe last - kindly; and at least until the period I have mentioned has\nexpired, keep a home in the old place for Walter. There are no debts,\nthe loan from Dombey's House is paid off and all my keys I send with\nthis. Keep this quiet, and make no inquiry for me; it is useless. So\nno more, dear Ned, from your true friend, Solomon Gills.' The Captain\ntook a long breath, and then read these words written below: '\"The boy\nRob, well recommended, as I told you, from Dombey's House. If all else\nshould come to the hammer, take care, Ned, of the little Midshipman.\"'\n\nTo convey to posterity any idea of the manner in which the Captain,\nafter turning this letter over and over, and reading it a score of\ntimes, sat down in his chair, and held a court-martial on the subject\nin his own mind, would require the united genius of all the great men,\nwho, discarding their own untoward days, have determined to go down to\nposterity, and have never got there. At first the Captain was too much\nconfounded and distressed to think of anything but the letter itself;\nand even when his thoughts began to glance upon the various attendant\nfacts, they might, perhaps, as well have occupied themselves with\ntheir former theme, for any light they reflected on them. In this\nstate of mind, Captain Cuttle having the Grinder before the court, and\nno one else, found it a great relief to decide, generally, that he was\nan object of suspicion: which the Captain so clearly expressed in his\nvisage, that Rob remonstrated.\n\n'Oh, don't, Captain!' cried the Grinder. 'I wonder how you can!\nwhat have I done to be looked at, like that?'\n\n'My lad,' said Captain Cuttle, 'don't you sing out afore you're\nhurt. And don't you commit yourself, whatever you do.'\n\n'I haven't been and committed nothing, Captain!' answered Rob.\n\n'Keep her free, then,' said the Captain, impressively, 'and ride\neasy.\n\nWith a deep sense of the responsibility imposed upon him' and the\nnecessity of thoroughly fathoming this mysterious affair as became a\nman in his relations with the parties, Captain Cuttle resolved to go\ndown and examine the premises, and to keep the Grinder with him.\nConsidering that youth as under arrest at present, the Captain was in\nsome doubt whether it might not be expedient to handcuff him, or tie\nhis ankles together, or attach a weight to his legs; but not being\nclear as to the legality of such formalities, the Captain decided\nmerely to hold him by the shoulder all the way, and knock him down if\nhe made any objection.\n\nHowever, he made none, and consequently got to the\nInstrument-maker's house without being placed under any more stringent\nrestraint. As the shutters were not yet taken down, the Captain's\nfirst care was to have the shop opened; and when the daylight was\nfreely admitted, he proceeded, with its aid, to further investigation.\n\nThe Captain's first care was to establish himself in a chair in the\nshop, as President of the solemn tribunal that was sitting within him;\nand to require Rob to lie down in his bed under the counter, show\nexactly where he discovered the keys and packet when he awoke, how he\nfound the door when he went to try it, how he started off to Brig\nPlace - cautiously preventing the latter imitation from being carried\nfarther than the threshold - and so on to the end of the chapter. When\nall this had been done several times, the Captain shook his head and\nseemed to think the matter had a bad look.\n\nNext, the Captain, with some indistinct idea of finding a body,\ninstituted a strict search over the whole house; groping in the\ncellars with a lighted candle, thrusting his hook behind doors,\nbringing his head into violent contact with beams, and covering\nhimself with cobwebs. Mounting up to the old man's bed-room, they\nfound that he had not been in bed on the previous night, but had\nmerely lain down on the coverlet, as was evident from the impression\nyet remaining there.\n\n'And I think, Captain,' said Rob, looking round the room, 'that\nwhen Mr Gills was going in and out so often, these last few days, he\nwas taking little things away, piecemeal, not to attract attention.'\n\n'Ay!' said the Captain, mysteriously. 'Why so, my lad?'\n\n'Why,' returned Rob, looking about, 'I don't see his shaving\ntackle. Nor his brushes, Captain. Nor no shirts. Nor yet his shoes.'\n\nAs each of these articles was mentioned, Captain Cuttle took\nparticular notice of the corresponding department of the Grinder, lest\nhe should appear to have been in recent use, or should prove to be in\npresent possession thereof. But Rob had no occasion to shave, was not\nbrushed, and wore the clothes he had on for a long time past, beyond\nall possibility of a mistake.\n\n'And what should you say,' said the Captain - 'not committing\nyourself - about his time of sheering off? Hey?'\n\n'Why, I think, Captain,' returned Rob, 'that he must have gone\npretty soon after I began to snore.'\n\n'What o'clock was that?' said the Captain, prepared to be very\nparticular about the exact time.\n\n'How can I tell, Captain!' answered Rob. 'I only know that I'm a\nheavy sleeper at first, and a light one towards morning; and if Mr\nGills had come through the shop near daybreak, though ever so much on\ntiptoe, I'm pretty sure I should have heard him shut the door at all\nevents.\n\nOn mature consideration of this evidence, Captain Cuttle began to\nthink that the Instrument-maker must have vanished of his own accord;\nto which logical conclusion he was assisted by the letter addressed to\nhimself, which, as being undeniably in the old man's handwriting,\nwould seem, with no great forcing, to bear the construction, that he\narranged of his own will to go, and so went. The Captain had next to\nconsider where and why? and as there was no way whatsoever that he saw\nto the solution of the first difficulty, he confined his meditations\nto the second.\n\nRemembering the old man's curious manner, and the farewell he had\ntaken of him; unaccountably fervent at the time, but quite\nintelligible now: a terrible apprehension strengthened on the Captain,\nthat, overpowered by his anxieties and regrets for Walter, he had been\ndriven to commit suicide. Unequal to the wear and tear of daily life,\nas he had often professed himself to be, and shaken as he no doubt was\nby the uncertainty and deferred hope he had undergone, it seemed no\nviolently strained misgiving, but only too probable. Free from debt,\nand with no fear for his personal liberty, or the seizure of his\ngoods, what else but such a state of madness could have hurried him\naway alone and secretly? As to his carrying some apparel with him, if\nhe had really done so - and they were not even sure of that - he might\nhave done so, the Captain argued, to prevent inquiry, to distract\nattention from his probable fate, or to ease the very mind that was\nnow revolving all these possibilities. Such, reduced into plain\nlanguage, and condensed within a small compass, was the final result\nand substance of Captain Cuttle's deliberations: which took a long\ntime to arrive at this pass, and were, like some more public\ndeliberations, very discursive and disorderly.\n\nDejected and despondent in the extreme, Captain Cuttle felt it just\nto release Rob from the arrest in which he had placed him, and to\nenlarge him, subject to a kind of honourable inspection which he still\nresolved to exercise; and having hired a man, from Brogley the Broker,\nto sit in the shop during their absence, the Captain, taking Rob with\nhim, issued forth upon a dismal quest after the mortal remains of\nSolomon Gills.\n\nNot a station-house, or bone-house, or work-house in the metropolis\nescaped a visitation from the hard glazed hat. Along the wharves,\namong the shipping on the bank-side, up the river, down the river,\nhere, there, everywhere, it went gleaming where men were thickest,\nlike the hero's helmet in an epic battle. For a whole week the Captain\nread of all the found and missing people in all the newspapers and\nhandbills, and went forth on expeditions at all hours of the day to\nidentify Solomon Gills, in poor little ship-boys who had fallen\noverboard, and in tall foreigners with dark beards who had taken\npoison - 'to make sure,' Captain Cuttle said, 'that it wam't him.' It\nis a sure thing that it never was, and that the good Captain had no\nother satisfaction.\n\nCaptain Cuttle at last abandoned these attempts as hopeless, and\nset himself to consider what was to be done next. After several new\nperusals of his poor friend's letter, he considered that the\nmaintenance of' a home in the old place for Walter' was the primary\nduty imposed upon him. Therefore, the Captain's decision was, that he\nwould keep house on the premises of Solomon Gills himself, and would\ngo into the instrument-business, and see what came of it.\n\nBut as this step involved the relinquishment of his apartments at\nMrs MacStinger's, and he knew that resolute woman would never hear of\nhis deserting them, the Captain took the desperate determination of\nrunning away.\n\n'Now, look ye here, my lad,' said the Captain to Rob, when he had\nmatured this notable scheme, 'to-morrow, I shan't be found in this\nhere roadstead till night - not till arter midnight p'rhaps. But you\nkeep watch till you hear me knock, and the moment you do, turn-to, and\nopen the door.'\n\n'Very good, Captain,' said Rob.\n\n'You'll continue to be rated on these here books,' pursued the\nCaptain condescendingly, 'and I don't say but what you may get\npromotion, if you and me should pull together with a will. But the\nmoment you hear me knock to-morrow night, whatever time it is, turn-to\nand show yourself smart with the door.'\n\n'I'll be sure to do it, Captain,' replied Rob.\n\n'Because you understand,' resumed the Captain, coming back again to\nenforce this charge upon his mind, 'there may be, for anything I can\nsay, a chase; and I might be took while I was waiting, if you didn't\nshow yourself smart with the door.'\n\nRob again assured the Captain that he would be prompt and wakeful;\nand the Captain having made this prudent arrangement, went home to Mrs\nMacStinger's for the last time.\n\nThe sense the Captain had of its being the last time, and of the\nawful purpose hidden beneath his blue waistcoat, inspired him with\nsuch a mortal dread of Mrs MacStinger, that the sound of that lady's\nfoot downstairs at any time of the day, was sufficient to throw him\ninto a fit of trembling. It fell out, too, that Mrs MacStinger was in\na charming temper - mild and placid as a house- lamb; and Captain\nCuttle's conscience suffered terrible twinges, when she came up to\ninquire if she could cook him nothing for his dinner.\n\n'A nice small kidney-pudding now, Cap'en Cuttle,' said his\nlandlady: 'or a sheep's heart. Don't mind my trouble.'\n\n'No thank'ee, Ma'am,' returned the Captain.\n\n'Have a roast fowl,' said Mrs MacStinger, 'with a bit of weal\nstuffing and some egg sauce. Come, Cap'en Cuttle! Give yourself a\nlittle treat!'\n\n'No thank'ee, Ma'am,' returned the Captain very humbly.\n\n'I'm sure you're out of sorts, and want to be stimulated,' said Mrs\nMacStinger. 'Why not have, for once in a way, a bottle of sherry\nwine?'\n\n'Well, Ma'am,' rejoined the Captain, 'if you'd be so good as take a\nglass or two, I think I would try that. Would you do me the favour,\nMa'am,' said the Captain, torn to pieces by his conscience, 'to accept\na quarter's rent ahead?'\n\n'And why so, Cap'en Cuttle?' retorted Mrs MacStinger - sharply, as\nthe Captain thought.\n\nThe Captain was frightened to dead 'If you would Ma'am,' he said\nwith submission, 'it would oblige me. I can't keep my money very well.\nIt pays itself out. I should take it kind if you'd comply.'\n\n'Well, Cap'en Cuttle,' said the unconscious MacStinger, rubbing her\nhands, 'you can do as you please. It's not for me, with my family, to\nrefuse, no more than it is to ask'\n\n'And would you, Ma'am,' said the Captain, taking down the tin\ncanister in which he kept his cash' from the top shelf of the\ncupboard, 'be so good as offer eighteen-pence a-piece to the little\nfamily all round? If you could make it convenient, Ma'am, to pass the\nword presently for them children to come for'ard, in a body, I should\nbe glad to see 'em'\n\nThese innocent MacStingers were so many daggers to the Captain's\nbreast, when they appeared in a swarm, and tore at him with the\nconfiding trustfulness he so little deserved. The eye of Alexander\nMacStinger, who had been his favourite, was insupportable to the\nCaptain; the voice of Juliana MacStinger, who was the picture of her\nmother, made a coward of him.\n\nCaptain Cuttle kept up appearances, nevertheless, tolerably well,\nand for an hour or two was very hardly used and roughly handled by the\nyoung MacStingers: who in their childish frolics, did a little damage\nalso to the glazed hat, by sitting in it, two at a time, as in a nest,\nand drumming on the inside of the crown with their shoes. At length\nthe Captain sorrowfully dismissed them: taking leave of these cherubs\nwith the poignant remorse and grief of a man who was going to\nexecution.\n\nIn the silence of night, the Captain packed up his heavier property\nin a chest, which he locked, intending to leave it there, in all\nprobability for ever, but on the forlorn chance of one day finding a\nman sufficiently bold and desperate to come and ask for it. Of his\nlighter necessaries, the Captain made a bundle; and disposed his plate\nabout his person, ready for flight. At the hour of midnight, when Brig\nPlace was buried in slumber, and Mrs MacStinger was lulled in sweet\noblivion, with her infants around her, the guilty Captain, stealing\ndown on tiptoe, in the dark, opened the door, closed it softly after\nhim, and took to his heels\n\nPursued by the image of Mrs MacStinger springing out of bed, and,\nregardless of costume, following and bringing him back; pursued also\nby a consciousness of his enormous crime; Captain Cuttle held on at a\ngreat pace, and allowed no grass to grow under his feet, between Brig\nPlace and the Instrument-maker's door. It opened when he knocked - for\nRob was on the watch - and when it was bolted and locked behind him,\nCaptain Cuttle felt comparatively safe.\n\n'Whew!' cried the Captain, looking round him. 'It's a breather!'\n\n'Nothing the matter, is there, Captain?' cried the gaping Rob.\n\n'No, no!' said Captain Cuttle, after changing colour, and listening\nto a passing footstep in the street. 'But mind ye, my lad; if any\nlady, except either of them two as you see t'other day, ever comes and\nasks for Cap'en Cuttle, be sure to report no person of that name\nknown, nor never heard of here; observe them orders, will you?'\n\n'I'll take care, Captain,' returned Rob.\n\n'You might say - if you liked,' hesitated the Captain, 'that you'd\nread in the paper that a Cap'en of that name was gone to Australia,\nemigrating, along with a whole ship's complement of people as had all\nswore never to come back no more.\n\nRob nodded his understanding of these instructions; and Captain\nCuttle promising to make a man of him, if he obeyed orders, dismissed\nhim, yawning, to his bed under the counter, and went aloft to the\nchamber of Solomon Gills.\n\nWhat the Captain suffered next day, whenever a bonnet passed, or\nhow often he darted out of the shop to elude imaginary MacStingers,\nand sought safety in the attic, cannot be told. But to avoid the\nfatigues attendant on this means of self-preservation, the Captain\ncurtained the glass door of communication between the shop and\nparlour, on the inside; fitted a key to it from the bunch that had\nbeen sent to him; and cut a small hole of espial in the wall. The\nadvantage of this fortification is obvious. On a bonnet appearing, the\nCaptain instantly slipped into his garrison, locked himself up, and\ntook a secret observation of the enemy. Finding it a false alarm, the\nCaptain instantly slipped out again. And the bonnets in the street\nwere so very numerous, and alarms were so inseparable from their\nappearance, that the Captain was almost incessantly slipping in and\nout all day long.\n\nCaptain Cuttle found time, however, in the midst of this fatiguing\nservice to inspect the stock; in connexion with which he had the\ngeneral idea (very laborious to Rob) that too much friction could not\nbe bestowed upon it, and that it could not be made too bright. He also\nticketed a few attractive-looking articles at a venture, at prices\nranging from ten shillings to fifty pounds, and exposed them in the\nwindow to the great astonishment of the public.\n\nAfter effecting these improvements, Captain Cuttle, surrounded by\nthe instruments, began to feel scientific: and looked up at the stars\nat night, through the skylight, when he was smoking his pipe in the\nlittle back parlour before going to bed, as if he had established a\nkind of property in them. As a tradesman in the City, too, he began to\nhave an interest in the Lord Mayor, and the Sheriffs, and in Public\nCompanies; and felt bound to read the quotations of the Funds every\nday, though he was unable to make out, on any principle of navigation,\nwhat the figures meant, and could have very well dispensed with the\nfractions. Florence, the Captain waited on, with his strange news of\nUncle Sol, immediately after taking possession of the Midshipman; but\nshe was away from home. So the Captain sat himself down in his altered\nstation of life, with no company but Rob the Grinder; and losing count\nof time, as men do when great changes come upon them, thought musingly\nof Walter, and of Solomon Gills, and even of Mrs MacStinger herself,\nas among the things that had been.\n\n\n\nCHAPTER 26.\n\nShadows of the Past and Future\n\n\n\n'Your most obedient, Sir,' said the Major. 'Damme, Sir, a friend of\nmy friend Dombey's is a friend of mine, and I'm glad to see you!'\n\n'I am infinitely obliged, Carker,' explained Mr Dombey, 'to Major\nBagstock, for his company and conversation. 'Major Bagstock has\nrendered me great service, Carker.'\n\nMr Carker the Manager, hat in hand, just arrived at Leamington, and\njust introduced to the Major, showed the Major his whole double range\nof teeth, and trusted he might take the liberty of thanking him with\nall his heart for having effected so great an Improvement in Mr\nDombey's looks and spirits'\n\n'By Gad, Sir,' said the Major, in reply, 'there are no thanks due\nto me, for it's a give and take affair. A great creature like our\nfriend Dombey, Sir,' said the Major, lowering his voice, but not\nlowering it so much as to render it inaudible to that gentleman,\n'cannot help improving and exalting his friends. He strengthens and\ninvigorates a man, Sir, does Dombey, in his moral nature.'\n\nMr Carker snapped at the expression. In his moral nature. Exactly.\nThe very words he had been on the point of suggesting.\n\n'But when my friend Dombey, Sir,' added the Major, 'talks to you of\nMajor Bagstock, I must crave leave to set him and you right. He means\nplain Joe, Sir - Joey B. - Josh. Bagstock - Joseph- rough and tough\nOld J., Sir. At your service.'\n\nMr Carker's excessively friendly inclinations towards the Major,\nand Mr Carker's admiration of his roughness, toughness, and plainness,\ngleamed out of every tooth in Mr Carker's head.\n\n'And now, Sir,' said the Major, 'you and Dombey have the devil's\nown amount of business to talk over.'\n\n'By no means, Major,' observed Mr Dombey.\n\n'Dombey,' said the Major, defiantly, 'I know better; a man of your\nmark - the Colossus of commerce - is not to be interrupted. Your\nmoments are precious. We shall meet at dinner-time. In the interval,\nold Joseph will be scarce. The dinner-hour is a sharp seven, Mr\nCarker.'\n\nWith that, the Major, greatly swollen as to his face, withdrew; but\nimmediately putting in his head at the door again, said:\n\n'I beg your pardon. Dombey, have you any message to 'em?'\n\nMr Dombey in some embarrassment, and not without a glance at the\ncourteous keeper of his business confidence, entrusted the Major with\nhis compliments.\n\n'By the Lord, Sir,' said the Major, 'you must make it something\nwarmer than that, or old Joe will be far from welcome.'\n\n'Regards then, if you will, Major,' returned Mr Dombey.\n\n'Damme, Sir,' said the Major, shaking his shoulders and his great\ncheeks jocularly: 'make it something warmer than that.'\n\n'What you please, then, Major,' observed Mr Dombey.\n\n'Our friend is sly, Sir, sly, Sir, de-vilish sly,' said the Major,\nstaring round the door at Carker. 'So is Bagstock.' But stopping in\nthe midst of a chuckle, and drawing himself up to his full height, the\nMajor solemnly exclaimed, as he struck himself on the chest, 'Dombey!\nI envy your feelings. God bless you!' and withdrew.\n\n'You must have found the gentleman a great resource,' said Carker,\nfollowing him with his teeth.\n\n'Very great indeed,' said Mr Dombey.\n\n'He has friends here, no doubt,' pursued Carker. 'I perceive, from\nwhat he has said, that you go into society here. Do you know,' smiling\nhorribly, 'I am so very glad that you go into society!'\n\nMr Dombey acknowledged this display of interest on the part of his\nsecond in command, by twirling his watch-chain, and slightly moving\nhis head.\n\n'You were formed for society,' said Carker. 'Of all the men I know,\nyou are the best adapted, by nature and by position, for society. Do\nyou know I have been frequently amazed that you should have held it at\narm's length so long!'\n\n'I have had my reasons, Carker. I have been alone, and indifferent\nto it. But you have great social qualifications yourself, and are the\nmore likely to have been surprised.'\n\n'Oh! I!' returned the other, with ready self-disparagement. 'It's\nquite another matter in the case of a man like me. I don't come into\ncomparison with you.'\n\nMr Dombey put his hand to his neckcloth, settled his chin in it,\ncoughed, and stood looking at his faithful friend and servant for a\nfew moments in silence.\n\n'I shall have the pleasure, Carker,' said Mr Dombey at length:\nmaking as if he swallowed something a little too large for his throat:\n'to present you to my - to the Major's friends. Highly agreeable\npeople.'\n\n'Ladies among them, I presume?' insinuated the smooth Manager.\n\n'They are all - that is to say, they are both - ladies,' replied Mr\nDombey.\n\n'Only two?' smiled Carker.\n\n'They are only two. I have confined my visits to their residence,\nand have made no other acquaintance here.'\n\n'Sisters, perhaps?' quoth Carker.\n\n'Mother and daughter,' replied Mr Dombey.\n\nAs Mr Dombey dropped his eyes, and adjusted his neckcloth again,\nthe smiling face of Mr Carker the Manager became in a moment, and\nwithout any stage of transition, transformed into a most intent and\nfrowning face, scanning his closely, and with an ugly sneer. As Mr\nDombey raised his eyes, it changed back, no less quickly, to its old\nexpression, and showed him every gum of which it stood possessed.\n\n'You are very kind,' said Carker, 'I shall be delighted to know\nthem. Speaking of daughters, I have seen Miss Dombey.'\n\nThere was a sudden rush of blood to Mr Dombey's face.\n\n'I took the liberty of waiting on her,' said Carker, 'to inquire if\nshe could charge me with any little commission. I am not so fortunate\nas to be the bearer of any but her - but her dear love.'\n\nWolf's face that it was then, with even the hot tongue revealing\nitself through the stretched mouth, as the eyes encountered Mr\nDombey's!\n\n'What business intelligence is there?' inquired the latter\ngentleman, after a silence, during which Mr Carker had produced some\nmemoranda and other papers.\n\n'There is very little,' returned Carker. 'Upon the whole we have\nnot had our usual good fortune of late, but that is of little moment\nto you. At Lloyd's, they give up the Son and Heir for lost. Well, she\nwas insured, from her keel to her masthead.'\n\n'Carker,' said Mr Dombey, taking a chair near him, 'I cannot say\nthat young man, Gay, ever impressed me favourably\n\n'Nor me,' interposed the Manager.\n\n'But I wish,' said Mr Dombey, without heeding the interruption, 'he\nhad never gone on board that ship. I wish he had never been sent out.\n\n'It is a pity you didn't say so, in good time, is it not?' retorted\nCarker, coolly. 'However, I think it's all for the best. I really,\nthink it's all for the best. Did I mention that there was something\nlike a little confidence between Miss Dombey and myself?'\n\n'No,' said Mr Dombey, sternly.\n\n'I have no doubt,' returned Mr Carker, after an impressive pause,\n'that wherever Gay is, he is much better where he is, than at home\nhere. If I were, or could be, in your place, I should be satisfied of\nthat. I am quite satisfied of it myself. Miss Dombey is confiding and\nyoung - perhaps hardly proud enough, for your daughter - if she have a\nfault. Not that that is much though, I am sure. Will you check these\nbalances with me?'\n\nMr Dombey leaned back in his chair, instead of bending over the\npapers that were laid before him, and looked the Manager steadily in\nthe face. The Manager, with his eyelids slightly raised, affected to\nbe glancing at his figures, and to await the leisure of his principal.\nHe showed that he affected this, as if from great delicacy, and with a\ndesign to spare Mr Dombey's feelings; and the latter, as he looked at\nhim, was cognizant of his intended consideration, and felt that but\nfor it, this confidential Carker would have said a great deal more,\nwhich he, Mr Dombey, was too proud to ask for. It was his way in\nbusiness, often. Little by little, Mr Dombey's gaze relaxed, and his\nattention became diverted to the papers before him; but while busy\nwith the occupation they afforded him, he frequently stopped, and\nlooked at Mr Carker again. Whenever he did so, Mr Carker was\ndemonstrative, as before, in his delicacy, and impressed it on his\ngreat chief more and more.\n\nWhile they were thus engaged; and under the skilful culture of the\nManager, angry thoughts in reference to poor Florence brooded and bred\nin Mr Dombey's breast, usurping the place of the cold dislike that\ngenerally reigned there; Major Bagstock, much admired by the old\nladies of Leamington, and followed by the Native, carrying the usual\namount of light baggage, straddled along the shady side of the way, to\nmake a morning call on Mrs Skewton. It being midday when the Major\nreached the bower of Cleopatra, he had the good fortune to find his\nPrincess on her usual sofa, languishing over a cup of coffee, with the\nroom so darkened and shaded for her more luxurious repose, that\nWithers, who was in attendance on her, loomed like a phantom page.\n\n'What insupportable creature is this, coming in?' said Mrs Skewton,\n'I cannot hear it. Go away, whoever you are!'\n\n'You have not the heart to banish J. B., Ma'am!' said the Major\nhalting midway, to remonstrate, with his cane over his shoulder.\n\n'Oh it's you, is it? On second thoughts, you may enter,' observed\nCleopatra.\n\nThe Major entered accordingly, and advancing to the sofa pressed\nher charming hand to his lips.\n\n'Sit down,' said Cleopatra, listlessly waving her fan, 'a long way\noff. Don't come too near me, for I am frightfully faint and sensitive\nthis morning, and you smell of the Sun. You are absolutely tropical.'\n\n'By George, Ma'am,' said the Major, 'the time has been when Joseph\nBagstock has been grilled and blistered by the Sun; then time was,\nwhen he was forced, Ma'am, into such full blow, by high hothouse heat\nin the West Indies, that he was known as the Flower. A man never heard\nof Bagstock, Ma'am, in those days; he heard of the Flower - the Flower\nof Ours. The Flower may have faded, more or less, Ma'am,' observed the\nMajor, dropping into a much nearer chair than had been indicated by\nhis cruel Divinity, 'but it is a tough plant yet, and constant as the\nevergreen.'\n\nHere the Major, under cover of the dark room, shut up one eye,\nrolled his head like a Harlequin, and, in his great self-satisfaction,\nperhaps went nearer to the confines of apoplexy than he had ever gone\nbefore.\n\n'Where is Mrs Granger?' inquired Cleopatra of her page.\n\nWithers believed she was in her own room.\n\n'Very well,' said Mrs Skewton. 'Go away, and shut the door. I am\nengaged.'\n\nAs Withers disappeared, Mrs Skewton turned her head languidly\ntowards the Major, without otherwise moving, and asked him how his\nfriend was.\n\n'Dombey, Ma'am,' returned the Major, with a facetious gurgling in\nhis throat, 'is as well as a man in his condition can be. His\ncondition is a desperate one, Ma'am. He is touched, is Dombey!\nTouched!' cried the Major. 'He is bayonetted through the body.'\n\nCleopatra cast a sharp look at the Major, that contrasted forcibly\nwith the affected drawl in which she presently said:\n\n'Major Bagstock, although I know but little of the world, - nor can\nI really regret my experience, for I fear it is a false place, full of\nwithering conventionalities: where Nature is but little regarded, and\nwhere the music of the heart, and the gushing of the soul, and all\nthat sort of thing, which is so truly poetical, is seldom heard, - I\ncannot misunderstand your meaning. There is an allusion to Edith - to\nmy extremely dear child,' said Mrs Skewton, tracing the outline of her\neyebrows with her forefinger, 'in your words, to which the tenderest\nof chords vibrates excessively.'\n\n'Bluntness, Ma'am,' returned the Major, 'has ever been the\ncharacteristic of the Bagstock breed. You are right. Joe admits it.'\n\n'And that allusion,' pursued Cleopatra, 'would involve one of the\nmost - if not positively the most - touching, and thrilling, and\nsacred emotions of which our sadly-fallen nature is susceptible, I\nconceive.'\n\nThe Major laid his hand upon his lips, and wafted a kiss to\nCleopatra, as if to identify the emotion in question.\n\n'I feel that I am weak. I feel that I am wanting in that energy,\nwhich should sustain a Mama: not to say a parent: on such a subject,'\nsaid Mrs Skewton, trimming her lips with the laced edge of her\npocket-handkerchief; 'but I can hardly approach a topic so excessively\nmomentous to my dearest Edith without a feeling of faintness.\nNevertheless, bad man, as you have boldly remarked upon it, and as it\nhas occasioned me great anguish:' Mrs Skewton touched her left side\nwith her fan: 'I will not shrink from my duty.'\n\nThe Major, under cover of the dimness, swelled, and swelled, and\nrolled his purple face about, and winked his lobster eye, until he\nfell into a fit of wheezing, which obliged him to rise and take a turn\nor two about the room, before his fair friend could proceed.\n\n'Mr Dombey,' said Mrs Skewton, when she at length resumed, 'was\nobliging enough, now many weeks ago, to do us the honour of visiting\nus here; in company, my dear Major, with yourself. I acknowledge - let\nme be open - that it is my failing to be the creature of impulse, and\nto wear my heart as it were, outside. I know my failing full well. My\nenemy cannot know it better. But I am not penitent; I would rather not\nbe frozen by the heartless world, and am content to bear this\nimputation justly.'\n\nMrs Skewton arranged her tucker, pinched her wiry throat to give it\na soft surface, and went on, with great complacency.\n\n'It gave me (my dearest Edith too, I am sure) infinite pleasure to\nreceive Mr Dombey. As a friend of yours, my dear Major, we were\nnaturally disposed to be prepossessed in his favour; and I fancied\nthat I observed an amount of Heart in Mr Dombey, that was excessively\nrefreshing.'\n\n'There is devilish little heart in Dombey now, Ma'am,' said the\nMajor.\n\n'Wretched man!' cried Mrs Skewton, looking at him languidly, 'pray\nbe silent.'\n\n'J. B. is dumb, Ma'am,' said the Major.\n\n'Mr Dombey,' pursued Cleopatra, smoothing the rosy hue upon her\ncheeks, 'accordingly repeated his visit; and possibly finding some\nattraction in the simplicity and primitiveness of our tastes - for\nthere is always a charm in nature - it is so very sweet - became one\nof our little circle every evening. Little did I think of the awful\nresponsibility into which I plunged when I encouraged Mr Dombey - to -\n\n'To beat up these quarters, Ma'am,' suggested Major Bagstock.\n\n'Coarse person! 'said Mrs Skewton, 'you anticipate my meaning,\nthough in odious language.\n\nHere Mrs Skewton rested her elbow on the little table at her side,\nand suffering her wrist to droop in what she considered a graceful and\nbecoming manner, dangled her fan to and fro, and lazily admired her\nhand while speaking.\n\n'The agony I have endured,' she said mincingly, 'as the truth has\nby degrees dawned upon me, has been too exceedingly terrific to dilate\nupon. My whole existence is bound up in my sweetest Edith; and to see\nher change from day to day - my beautiful pet, who has positively\ngarnered up her heart since the death of that most delightful\ncreature, Granger - is the most affecting thing in the world.'\n\nMrs Skewton's world was not a very trying one, if one might judge\nof it by the influence of its most affecting circumstance upon her;\nbut this by the way.\n\n'Edith,' simpered Mrs Skewton, 'who is the perfect pearl of my\nlife, is said to resemble me. I believe we are alike.'\n\n'There is one man in the world who never will admit that anyone\nresembles you, Ma'am,' said the Major; 'and that man's name is Old Joe\nBagstock.'\n\nCleopatra made as if she would brain the flatterer with her fan,\nbut relenting, smiled upon him and proceeded:\n\n'If my charming girl inherits any advantages from me, wicked one!':\nthe Major was the wicked one: 'she inherits also my foolish nature.\nShe has great force of character - mine has been said to be immense,\nthough I don't believe it - but once moved, she is susceptible and\nsensitive to the last extent. What are my feelings when I see her\npining! They destroy me.\n\nThe Major advancing his double chin, and pursing up his blue lips\ninto a soothing expression, affected the profoundest sympathy.\n\n'The confidence,' said Mrs Skewton, 'that has subsisted between us\n- the free development of soul, and openness of sentiment - is\ntouching to think of. We have been more like sisters than Mama and\nchild.'\n\n'J. B.'s own sentiment,' observed the Major, 'expressed by J. B.\nfifty thousand times!'\n\n'Do not interrupt, rude man!' said Cleopatra. 'What are my\nfeelings, then, when I find that there is one subject avoided by us!\nThat there is a what's-his-name - a gulf - opened between us. That my\nown artless Edith is changed to me! They are of the most poignant\ndescription, of course.'\n\nThe Major left his chair, and took one nearer to the little table.\n\n'From day to day I see this, my dear Major,' proceeded Mrs Skewton.\n'From day to day I feel this. From hour to hour I reproach myself for\nthat excess of faith and trustfulness which has led to such\ndistressing consequences; and almost from minute to minute, I hope\nthat Mr Dombey may explain himself, and relieve the torture I undergo,\nwhich is extremely wearing. But nothing happens, my dear Major; I am\nthe slave of remorse - take care of the coffee-cup: you are so very\nawkward - my darling Edith is an altered being; and I really don't see\nwhat is to be done, or what good creature I can advise with.'\n\nMajor Bagstock, encouraged perhaps by the softened and confidential\ntone into which Mrs Skewton, after several times lapsing into it for a\nmoment, seemed now to have subsided for good, stretched out his hand\nacross the little table, and said with a leer,\n\n'Advise with Joe, Ma'am.'\n\n'Then, you aggravating monster,' said Cleopatra, giving one hand to\nthe Major, and tapping his knuckles with her fan, which she held in\nthe other: 'why don't you talk to me? you know what I mean. Why don't\nyou tell me something to the purpose?'\n\nThe Major laughed, and kissed the hand she had bestowed upon him,\nand laughed again immensely.\n\n'Is there as much Heart in Mr Dombey as I gave him credit for?'\nlanguished Cleopatra tenderly. 'Do you think he is in earnest, my dear\nMajor? Would you recommend his being spoken to, or his being left\nalone? Now tell me, like a dear man, what would you advise.'\n\n'Shall we marry him to Edith Granger, Ma'am?' chuckled the Major,\nhoarsely.\n\n'Mysterious creature!' returned Cleopatra, bringing her fan to bear\nupon the Major's nose. 'How can we marry him?'\n\n'Shall we marry him to Edith Granger, Ma'am, I say?' chuckled the\nMajor again.\n\nMrs Skewton returned no answer in words, but smiled upon the Major\nwith so much archness and vivacity, that that gallant officer\nconsidering himself challenged, would have imprinted a kiss on her\nexceedingly red lips, but for her interposing the fan with a very\nwinning and juvenile dexterity. It might have been in modesty; it\nmight have been in apprehension of some danger to their bloom.\n\n'Dombey, Ma'am,' said the Major, 'is a great catch.'\n\n'Oh, mercenary wretch!' cried Cleopatra, with a little shriek, 'I\nam shocked.'\n\n'And Dombey, Ma'am,' pursued the Major, thrusting forward his head,\nand distending his eyes, 'is in earnest. Joseph says it; Bagstock\nknows it; J. B. keeps him to the mark. Leave Dombey to himself, Ma'am.\nDombey is safe, Ma'am. Do as you have done; do no more; and trust to\nJ. B. for the end.'\n\n'You really think so, my dear Major?' returned Cleopatra, who had\neyed him very cautiously, and very searchingly, in spite of her\nlistless bearing.\n\n'Sure of it, Ma'am,' rejoined the Major. 'Cleopatra the peerless,\nand her Antony Bagstock, will often speak of this, triumphantly, when\nsharing the elegance and wealth of Edith Dombey's establishment.\nDombey's right-hand man, Ma'am,' said the Major, stopping abruptly in\na chuckle, and becoming serious, 'has arrived.'\n\n'This morning?' said Cleopatra.\n\n'This morning, Ma'am,' returned the Major. 'And Dombey's anxiety\nfor his arrival, Ma'am, is to be referred - take J. B.'s word for\nthis; for Joe is devilish sly' - the Major tapped his nose, and\nscrewed up one of his eyes tight: which did not enhance his native\nbeauty - 'to his desire that what is in the wind should become known\nto him' without Dombey's telling and consulting him. For Dombey is as\nproud, Ma'am,' said the Major, 'as Lucifer.'\n\n'A charming quality,' lisped Mrs Skewton; 'reminding one of dearest\nEdith.'\n\n'Well, Ma'am,' said the Major. 'I have thrown out hints already,\nand the right-hand man understands 'em; and I'll throw out more,\nbefore the day is done. Dombey projected this morning a ride to\nWarwick Castle, and to Kenilworth, to-morrow, to be preceded by a\nbreakfast with us. I undertook the delivery of this invitation. Will\nyou honour us so far, Ma'am?' said the Major, swelling with shortness\nof breath and slyness, as he produced a note, addressed to the\nHonourable Mrs Skewton, by favour of Major Bagstock, wherein hers ever\nfaithfully, Paul Dombey, besought her and her amiable and accomplished\ndaughter to consent to the proposed excursion; and in a postscript\nunto which, the same ever faithfully Paul Dombey entreated to be\nrecalled to the remembrance of Mrs Granger.\n\n'Hush!' said Cleopatra, suddenly, 'Edith!'\n\nThe loving mother can scarcely be described as resuming her insipid\nand affected air when she made this exclamation; for she had never\ncast it off; nor was it likely that she ever would or could, in any\nother place than in the grave. But hurriedly dismissing whatever\nshadow of earnestness, or faint confession of a purpose, laudable or\nwicked, that her face, or voice, or manner: had, for the moment,\nbetrayed, she lounged upon the couch, her most insipid and most\nlanguid self again, as Edith entered the room.\n\nEdith, so beautiful and stately, but so cold and so repelling. Who,\nslightly acknowledging the presence of Major Bagstock, and directing a\nkeen glance at her mother, drew back the from a window, and sat down\nthere, looking out.\n\n'My dearest Edith,' said Mrs Skewton, 'where on earth have you\nbeen? I have wanted you, my love, most sadly.'\n\n'You said you were engaged, and I stayed away,' she answered,\nwithout turning her head.\n\n'It was cruel to Old Joe, Ma'am,' said the Major in his gallantry.\n\n'It was very cruel, I know,' she said, still looking out - and said\nwith such calm disdain, that the Major was discomfited, and could\nthink of nothing in reply.\n\n'Major Bagstock, my darling Edith,' drawled her mother, 'who is\ngenerally the most useless and disagreeable creature in the world: as\nyou know - '\n\n'It is surely not worthwhile, Mama,' said Edith, looking round, 'to\nobserve these forms of speech. We are quite alone. We know each\nother.'\n\nThe quiet scorn that sat upon her handsome face - a scorn that\nevidently lighted on herself, no less than them - was so intense and\ndeep, that her mother's simper, for the instant, though of a hardy\nconstitution, drooped before it.\n\n'My darling girl,' she began again.\n\n'Not woman yet?' said Edith, with a smile.\n\n'How very odd you are to-day, my dear! Pray let me say, my love,\nthat Major Bagstock has brought the kindest of notes from Mr Dombey,\nproposing that we should breakfast with him to-morrow, and ride to\nWarwick and Kenilworth. Will you go, Edith?'\n\n'Will I go!' she repeated, turning very red, and breathing quickly\nas she looked round at her mother.\n\n'I knew you would, my own, observed the latter carelessly. 'It is,\nas you say, quite a form to ask. Here is Mr Dombey's letter, Edith.'\n\n'Thank you. I have no desire to read it,' was her answer.\n\n'Then perhaps I had better answer it myself,' said Mrs Skewton,\n'though I had thought of asking you to be my secretary, darling.' As\nEdith made no movement, and no answer, Mrs Skewton begged the Major to\nwheel her little table nearer, and to set open the desk it contained,\nand to take out pen and paper for her; all which congenial offices of\ngallantry the Major discharged, with much submission and devotion.\n\n'Your regards, Edith, my dear?' said Mrs Skewton, pausing, pen in\nhand, at the postscript.\n\n'What you will, Mama,' she answered, without turning her head, and\nwith supreme indifference.\n\nMrs Skewton wrote what she would, without seeking for any more\nexplicit directions, and handed her letter to the Major, who receiving\nit as a precious charge, made a show of laying it near his heart, but\nwas fain to put it in the pocket of his pantaloons on account of the\ninsecurity of his waistcoat The Major then took a very polished and\nchivalrous farewell of both ladies, which the elder one acknowledged\nin her usual manner, while the younger, sitting with her face\naddressed to the window, bent her head so slightly that it would have\nbeen a greater compliment to the Major to have made no sign at all,\nand to have left him to infer that he had not been heard or thought\nof.\n\n'As to alteration in her, Sir,' mused the Major on his way back; on\nwhich expedition - the afternoon being sunny and hot - he ordered the\nNative and the light baggage to the front, and walked in the shadow of\nthat expatriated prince: 'as to alteration, Sir, and pining, and so\nforth, that won't go down with Joseph Bagstock, None of that, Sir. It\nwon't do here. But as to there being something of a division between\n'em - or a gulf as the mother calls it - damme, Sir, that seems true\nenough. And it's odd enough! Well, Sir!' panted the Major, 'Edith\nGranger and Dombey are well matched; let 'em fight it out! Bagstock\nbacks the winner!'\n\nThe Major, by saying these latter words aloud, in the vigour of his\nthoughts, caused the unhappy Native to stop, and turn round, in the\nbelief that he was personally addressed. Exasperated to the last\ndegree by this act of insubordination, the Major (though he was\nswelling with enjoyment of his own humour, at the moment of its\noccurrence instantly thrust his cane among the Native's ribs, and\ncontinued to stir him up, at short intervals, all the way to the\nhotel.\n\nNor was the Major less exasperated as he dressed for dinner, during\nwhich operation the dark servant underwent the pelting of a shower of\nmiscellaneous objects, varying in size from a boot to a hairbrush, and\nincluding everything that came within his master's reach. For the\nMajor plumed himself on having the Native in a perfect state of drill,\nand visited the least departure from strict discipline with this kind\nof fatigue duty. Add to this, that he maintained the Native about his\nperson as a counter-irritant against the gout, and all other\nvexations, mental as well as bodily; and the Native would appear to\nhave earned his pay - which was not large.\n\nAt length, the Major having disposed of all the missiles that were\nconvenient to his hand, and having called the Native so many new names\nas must have given him great occasion to marvel at the resources of\nthe English language, submitted to have his cravat put on; and being\ndressed, and finding himself in a brisk flow of spirits after this\nexercise, went downstairs to enliven 'Dombey' and his right-hand man.\n\nDombey was not yet in the room, but the right-hand man was there,\nand his dental treasures were, as usual, ready for the Major.\n\n'Well, Sir!' said the Major. 'How have you passed the time since I\nhad the happiness of meeting you? Have you walked at all?'\n\n'A saunter of barely half an hour's duration,' returned Carker. 'We\nhave been so much occupied.'\n\n'Business, eh?' said the Major.\n\n'A variety of little matters necessary to be gone through,' replied\nCarker. 'But do you know - this is quite unusual with me, educated in\na distrustful school, and who am not generally disposed to be\ncommunicative,' he said, breaking off, and speaking in a charming tone\nof frankness - 'but I feel quite confidential with you, Major\nBagstock.'\n\n'You do me honour, Sir,' returned the Major. 'You may be.'\n\n'Do you know, then,' pursued Carker, 'that I have not found my\nfriend - our friend, I ought rather to call him - '\n\n'Meaning Dombey, Sir?' cried the Major. 'You see me, Mr Carker,\nstanding here! J. B.?'\n\nHe was puffy enough to see, and blue enough; and Mr Carker\nintimated the he had that pleasure.\n\n'Then you see a man, Sir, who would go through fire and water to\nserve Dombey,' returned Major Bagstock.\n\nMr Carker smiled, and said he was sure of it. 'Do you know, Major,'\nhe proceeded: 'to resume where I left off' that I have not found our\nfriend so attentive to business today, as usual?'\n\n'No?' observed the delighted Major.\n\n'I have found him a little abstracted, and with his attention\ndisposed to wander,' said Carker.\n\n'By Jove, Sir,' cried the Major, 'there's a lady in the case.'\n\n'Indeed, I begin to believe there really is,' returned Carker; 'I\nthought you might be jesting when you seemed to hint at it; for I know\nyou military men -\n\nThe Major gave the horse's cough, and shook his head and shoulders,\nas much as to say, 'Well! we are gay dogs, there's no denying.' He\nthen seized Mr Carker by the button-hole, and with starting eyes\nwhispered in his ear, that she was a woman of extraordinary charms,\nSir. That she was a young widow, Sir. That she was of a fine family,\nSir. That Dombey was over head and ears in love with her, Sir, and\nthat it would be a good match on both sides; for she had beauty,\nblood, and talent, and Dombey had fortune; and what more could any\ncouple have? Hearing Mr Dombey's footsteps without, the Major cut\nhimself short by saying, that Mr Carker would see her tomorrow\nmorning, and would judge for himself; and between his mental\nexcitement, and the exertion of saying all this in wheezy whispers,\nthe Major sat gurgling in the throat and watering at the eyes, until\ndinner was ready.\n\nThe Major, like some other noble animals, exhibited himself to\ngreat advantage at feeding-time. On this occasion, he shone\nresplendent at one end of the table, supported by the milder lustre of\nMr Dombey at the other; while Carker on one side lent his ray to\neither light, or suffered it to merge into both, as occasion arose.\n\nDuring the first course or two, the Major was usually grave; for\nthe Native, in obedience to general orders, secretly issued, collected\nevery sauce and cruet round him, and gave him a great deal to do, in\ntaking out the stoppers, and mixing up the contents in his plate.\nBesides which, the Native had private zests and flavours on a\nside-table, with which the Major daily scorched himself; to say\nnothing of strange machines out of which he spirited unknown liquids\ninto the Major's drink. But on this occasion, Major Bagstock, even\namidst these many occupations, found time to be social; and his\nsociality consisted in excessive slyness for the behoof of Mr Carker,\nand the betrayal of Mr Dombey's state of mind.\n\n'Dombey,' said the Major, 'you don't eat; what's the matter?'\n\n'Thank you,' returned the gentleman, 'I am doing very well; I have\nno great appetite today.'\n\n'Why, Dombey, what's become of it?' asked the Major. 'Where's it\ngone? You haven't left it with our friends, I'll swear, for I can\nanswer for their having none to-day at luncheon. I can answer for one\nof 'em, at least: I won't say which.'\n\nThen the Major winked at Carker, and became so frightfully sly,\nthat his dark attendant was obliged to pat him on the back, without\norders, or he would probably have disappeared under the table.\n\nIn a later stage of the dinner: that is to say, when the Native\nstood at the Major's elbow ready to serve the first bottle of\nchampagne: the Major became still slyer.\n\n'Fill this to the brim, you scoundrel,' said the Major, holding up\nhis glass. 'Fill Mr Carker's to the brim too. And Mr Dombey's too. By\nGad, gentlemen,' said the Major, winking at his new friend, while Mr\nDombey looked into his plate with a conscious air, 'we'll consecrate\nthis glass of wine to a Divinity whom Joe is proud to know, and at a\ndistance humbly and reverently to admire. Edith,' said the Major, 'is\nher name; angelic Edith!'\n\n'To angelic Edith!' cried the smiling Carker.\n\n'Edith, by all means,' said Mr Dombey.\n\nThe entrance of the waiters with new dishes caused the Major to be\nslyer yet, but in a more serious vein. 'For though among ourselves,\nJoe Bagstock mingles jest and earnest on this subject, Sir,' said the\nMajor, laying his finger on his lips, and speaking half apart to\nCarker, 'he holds that name too sacred to be made the property of\nthese fellows, or of any fellows. Not a word!, Sir' while they are\nhere!'\n\nThis was respectful and becoming on the Major's part, and Mr Dombey\nplainly felt it so. Although embarrassed in his own frigid way, by the\nMajor's allusions, Mr Dombey had no objection to such rallying, it was\nclear, but rather courted it. Perhaps the Major had been pretty near\nthe truth, when he had divined that morning that the great man who was\ntoo haughty formally to consult with, or confide in his prime\nminister, on such a matter, yet wished him to be fully possessed of\nit. Let this be how it may, he often glanced at Mr Carker while the\nMajor plied his light artillery, and seemed watchful of its effect\nupon him.\n\nBut the Major, having secured an attentive listener, and a smiler\nwho had not his match in all the world - 'in short, a devilish\nintelligent and able fellow,' as he often afterwards declared - was\nnot going to let him off with a little slyness personal to Mr Dombey.\nTherefore, on the removal of the cloth, the Major developed himself as\na choice spirit in the broader and more comprehensive range of\nnarrating regimental stories, and cracking regimental jokes, which he\ndid with such prodigal exuberance, that Carker was (or feigned to be)\nquite exhausted with laughter and admiration: while Mr Dombey looked\non over his starched cravat, like the Major's proprietor, or like a\nstately showman who was glad to see his bear dancing well.\n\nWhen the Major was too hoarse with meat and drink, and the display\nof his social powers, to render himself intelligible any longer, they\nadjourned to coffee. After which, the Major inquired of Mr Carker the\nManager, with little apparent hope of an answer in the affirmative, if\nhe played picquet.\n\n'Yes, I play picquet a little,' said Mr Carker.\n\n'Backgammon, perhaps?' observed the Major, hesitating.\n\n'Yes, I play backgammon a little too,' replied the man of teeth.\n\n'Carker plays at all games, I believe,' said Mr Dombey, laying\nhimself on a sofa like a man of wood, without a hinge or a joint in\nhim; 'and plays them well.'\n\nIn sooth, he played the two in question, to such perfection, that\nthe Major was astonished, and asked him, at random, if he played\nchess.\n\n'Yes, I play chess a little,' answered Carker. 'I have sometimes\nplayed, and won a game - it's a mere trick - without seeing the\nboard.'\n\n'By Gad, Sir!' said the Major, staring, 'you are a contrast to\nDombey, who plays nothing.'\n\n'Oh! He!' returned the Manager. 'He has never had occasion to\nacquire such little arts. To men like me, they are sometimes useful.\nAs at present, Major Bagstock, when they enable me to take a hand with\nyou.'\n\nIt might be only the false mouth, so smooth and wide; and yet there\nseemed to lurk beneath the humility and subserviency of this short\nspeech, a something like a snarl; and, for a moment, one might have\nthought that the white teeth were prone to bite the hand they fawned\nupon. But the Major thought nothing about it; and Mr Dombey lay\nmeditating with his eyes half shut, during the whole of the play,\nwhich lasted until bed-time.\n\nBy that time, Mr Carker, though the winner, had mounted high into\nthe Major's good opinion, insomuch that when he left the Major at his\nown room before going to bed, the Major as a special attention, sent\nthe Native - who always rested on a mattress spread upon the ground at\nhis master's door - along the gallery, to light him to his room in\nstate.\n\nThere was a faint blur on the surface of the mirror in Mr Carker's\nchamber, and its reflection was, perhaps, a false one. But it showed,\nthat night, the image of a man, who saw, in his fancy, a crowd of\npeople slumbering on the ground at his feet, like the poor Native at\nhis master's door: who picked his way among them: looking down,\nmaliciously enough: but trod upon no upturned face - as yet.\n\n\n\nCHAPTER 27.\n\nDeeper Shadows\n\n\nMr Carker the Manager rose with the lark, and went out, walking in\nthe summer day. His meditations - and he meditated with contracted\nbrows while he strolled along - hardly seemed to soar as high as the\nlark, or to mount in that direction; rather they kept close to their\nnest upon the earth, and looked about, among the dust and worms. But\nthere was not a bird in the air, singing unseen, farther beyond the\nreach of human eye than Mr Carker's thoughts. He had his face so\nperfectly under control, that few could say more, in distinct terms,\nof its expression, than that it smiled or that it pondered. It\npondered now, intently. As the lark rose higher, he sank deeper in\nthought. As the lark poured out her melody clearer and stronger, he\nfell into a graver and profounder silence. At length, when the lark\ncame headlong down, with an accumulating stream of song, and dropped\namong the green wheat near him, rippling in the breath of the morning\nlike a river, he sprang up from his reverie, and looked round with a\nsudden smile, as courteous and as soft as if he had had numerous\nobservers to propitiate; nor did he relapse, after being thus\nawakened; but clearing his face, like one who bethought himself that\nit might otherwise wrinkle and tell tales, went smiling on, as if for\npractice.\n\nPerhaps with an eye to first impressions, Mr Carker was very\ncarefully and trimly dressed, that morning. Though always somewhat\nformal, in his dress, in imitation of the great man whom he served, he\nstopped short of the extent of Mr Dombey's stiffness: at once perhaps\nbecause he knew it to be ludicrous, and because in doing so he found\nanother means of expressing his sense of the difference and distance\nbetween them. Some people quoted him indeed, in this respect, as a\npointed commentary, and not a flattering one, on his icy patron - but\nthe world is prone to misconstruction, and Mr Carker was not\naccountable for its bad propensity.\n\nClean and florid: with his light complexion, fading as it were, in\nthe sun, and his dainty step enhancing the softness of the turf: Mr\nCarker the Manager strolled about meadows, and green lanes, and glided\namong avenues of trees, until it was time to return to breakfast.\nTaking a nearer way back, Mr Carker pursued it, airing his teeth, and\nsaid aloud as he did so, 'Now to see the second Mrs Dombey!'\n\nHe had strolled beyond the town, and re-entered it by a pleasant\nwalk, where there was a deep shade of leafy trees, and where there\nwere a few benches here and there for those who chose to rest. It not\nbeing a place of general resort at any hour, and wearing at that time\nof the still morning the air of being quite deserted and retired, Mr\nCarker had it, or thought he had it, all to himself. So, with the whim\nof an idle man, to whom there yet remained twenty minutes for reaching\na destination easily able in ten, Mr Carker threaded the great boles\nof the trees, and went passing in and out, before this one and behind\nthat, weaving a chain of footsteps on the dewy ground.\n\nBut he found he was mistaken in supposing there was no one in the\ngrove, for as he softly rounded the trunk of one large tree, on which\nthe obdurate bark was knotted and overlapped like the hide of a\nrhinoceros or some kindred monster of the ancient days before the\nFlood, he saw an unexpected figure sitting on a bench near at hand,\nabout which, in another moment, he would have wound the chain he was\nmaking.\n\nIt was that of a lady, elegantly dressed and very handsome, whose\ndark proud eyes were fixed upon the ground, and in whom some passion\nor struggle was raging. For as she sat looking down, she held a corner\nof her under lip within her mouth, her bosom heaved, her nostril\nquivered, her head trembled, indignant tears were on her cheek, and\nher foot was set upon the moss as though she would have crushed it\ninto nothing. And yet almost the self-same glance that showed him\nthis, showed him the self-same lady rising with a scornful air of\nweariness and lassitude, and turning away with nothing expressed in\nface or figure but careless beauty and imperious disdain.\n\nA withered and very ugly old woman, dressed not so much like a\ngipsy as like any of that medley race of vagabonds who tramp about the\ncountry, begging, and stealing, and tinkering, and weaving rushes, by\nturns, or all together, had been observing the lady, too; for, as she\nrose, this second figure strangely confronting the first, scrambled up\nfrom the ground - out of it, it almost appeared - and stood in the\nway.\n\n'Let me tell your fortune, my pretty lady,' said the old woman,\nmunching with her jaws, as if the Death's Head beneath her yellow skin\nwere impatient to get out.\n\n'I can tell it for myself,' was the reply.\n\n'Ay, ay, pretty lady; but not right. You didn't tell it right when\nyou were sitting there. I see you! Give me a piece of silver, pretty\nlady, and I'll tell your fortune true. There's riches, pretty lady, in\nyour face.'\n\n'I know,' returned the lady, passing her with a dark smile, and a\nproud step. 'I knew it before.\n\n'What! You won't give me nothing?' cried the old woman. 'You won't\ngive me nothing to tell your fortune, pretty lady? How much will you\ngive me to tell it, then? Give me something, or I'll call it after\nyou!' croaked the old woman, passionately.\n\nMr Carker, whom the lady was about to pass close, slinking against\nhis tree as she crossed to gain the path, advanced so as to meet her,\nand pulling off his hat as she went by, bade the old woman hold her\npeace. The lady acknowledged his interference with an inclination of\nthe head, and went her way.\n\n'You give me something then, or I'll call it after her!' screamed\nthe old woman, throwing up her arms, and pressing forward against his\noutstretched hand. 'Or come,' she added, dropping her voice suddenly,\nlooking at him earnestly, and seeming in a moment to forget the object\nof her wrath, 'give me something, or I'll call it after you! '\n\n'After me, old lady!' returned the Manager, putting his hand in his\npocket.\n\n'Yes,' said the woman, steadfast in her scrutiny, and holding out\nher shrivelled hand. 'I know!'\n\n'What do you know?' demanded Carker, throwing her a shilling. 'Do\nyou know who the handsome lady is?'\n\nMunching like that sailor's wife of yore, who had chestnuts In her\nlap, and scowling like the witch who asked for some in vain, the old\nwoman picked the shilling up, and going backwards, like a crab, or\nlike a heap of crabs: for her alternately expanding and contracting\nhands might have represented two of that species, and her creeping\nface, some half-a-dozen more: crouched on the veinous root of an old\ntree, pulled out a short black pipe from within the crown of her\nbonnet, lighted it with a match, and smoked in silence, looking\nfixedly at her questioner.\n\nMr Carker laughed, and turned upon his heel.\n\n'Good!' said the old woman. 'One child dead, and one child living:\none wife dead, and one wife coming. Go and meet her!'\n\nIn spite of himself, the Manager looked round again, and stopped.\nThe old woman, who had not removed her pipe, and was munching and\nmumbling while she smoked, as if in conversation with an invisible\nfamiliar, pointed with her finger in the direction he was going, and\nlaughed.\n\n'What was that you said, Beldamite?' he demanded.\n\nThe woman mumbled, and chattered, and smoked, and still pointed\nbefore him; but remained silent Muttering a farewell that was not\ncomplimentary, Mr Carker pursued his way; but as he turned out of that\nplace, and looked over his shoulder at the root of the old tree, he\ncould yet see the finger pointing before him, and thought he heard the\nwoman screaming, 'Go and meet her!'\n\nPreparations for a choice repast were completed, he found, at the\nhotel; and Mr Dombey, and the Major, and the breakfast, were awaiting\nthe ladies. Individual constitution has much to do with the\ndevelopment of such facts, no doubt; but in this case, appetite\ncarried it hollow over the tender passion; Mr Dombey being very cool\nand collected, and the Major fretting and fuming in a state of violent\nheat and irritation. At length the door was thrown open by the Native,\nand, after a pause, occupied by her languishing along the gallery, a\nvery blooming, but not very youthful lady, appeared.\n\n'My dear Mr Dombey,' said the lady, 'I am afraid we are late, but\nEdith has been out already looking for a favourable point of view for\na sketch, and kept me waiting for her. Falsest of Majors,' giving him\nher little finger, 'how do you do?'\n\n'Mrs Skewton,' said Mr Dombey, 'let me gratify my friend Carker:'\nMr Dombey unconsciously emphasised the word friend, as saying \"no\nreally; I do allow him to take credit for that distinction:\" 'by\npresenting him to you. You have heard me mention Mr Carker.'\n\n'I am charmed, I am sure,' said Mrs Skewton, graciously.\n\nMr Carker was charmed, of course. Would he have been more charmed\non Mr Dombey's behalf, if Mrs Skewton had been (as he at first\nsupposed her) the Edith whom they had toasted overnight?\n\n'Why, where, for Heaven's sake, is Edith?' exclaimed Mrs Skewton,\nlooking round. 'Still at the door, giving Withers orders about the\nmounting of those drawings! My dear Mr Dombey, will you have the\nkindness -\n\nMr Dombey was already gone to seek her. Next moment he returned,\nbearing on his arm the same elegantly dressed and very handsome lady\nwhom Mr Carker had encountered underneath the trees.\n\n'Carker - ' began Mr Dombey. But their recognition of each other\nwas so manifest, that Mr Dombey stopped surprised.\n\n'I am obliged to the gentleman,' said Edith, with a stately bend,\n'for sparing me some annoyance from an importunate beggar just now.'\n\n'I am obliged to my good fortune,' said Mr Carker, bowing low, 'for\nthe opportunity of rendering so slight a service to one whose servant\nI am proud to be.'\n\nAs her eye rested on him for an instant, and then lighted on the\nground, he saw in its bright and searching glance a suspicion that he\nhad not come up at the moment of his interference, but had secretly\nobserved her sooner. As he saw that, she saw in his eye that her\ndistrust was not without foundation.\n\n'Really,' cried Mrs Skewton, who had taken this opportunity of\ninspecting Mr Carker through her glass, and satisfying herself (as she\nlisped audibly to the Major) that he was all heart; 'really now, this\nis one of the most enchanting coincidences that I ever heard of. The\nidea! My dearest Edith, there is such an obvious destiny in it, that\nreally one might almost be induced to cross one's arms upon one's\nfrock, and say, like those wicked Turks, there is no What's-his-name\nbut Thingummy, and What-you-may-call-it is his prophet!'\n\nEdith designed no revision of this extraordinary quotation from the\nKoran, but Mr Dombey felt it necessary to offer a few polite remarks.\n\n'It gives me great pleasure,' said Mr Dombey, with cumbrous\ngallantry, 'that a gentleman so nearly connected with myself as Carker\nis, should have had the honour and happiness of rendering the least\nassistance to Mrs Granger.' Mr Dombey bowed to her. 'But it gives me\nsome pain, and it occasions me to be really envious of Carker;' he\nunconsciously laid stress on these words, as sensible that they must\nappear to involve a very surprising proposition; 'envious of Carker,\nthat I had not that honour and that happiness myself.' Mr Dombey bowed\nagain. Edith, saving for a curl of her lip, was motionless.\n\n'By the Lord, Sir,' cried the Major, bursting into speech at sight\nof the waiter, who was come to announce breakfast, 'it's an\nextraordinary thing to me that no one can have the honour and\nhappiness of shooting all such beggars through the head without being\nbrought to book for it. But here's an arm for Mrs Granger if she'll do\nJ. B. the honour to accept it; and the greatest service Joe can render\nyou, Ma'am, just now, is, to lead you into table!'\n\nWith this, the Major gave his arm to Edith; Mr Dombey led the way\nwith Mrs Skewton; Mrs Carker went last, smiling on the party.\n\n'I am quite rejoiced, Mr Carker,' said the lady-mother, at\nbreakfast, after another approving survey of him through her glass,\n'that you have timed your visit so happily, as to go with us to-day.\nIt is the most enchanting expedition!'\n\n'Any expedition would be enchanting in such society,' returned\nCarker; 'but I believe it is, in itself, full of interest.'\n\n'Oh!' cried Mrs Skewton, with a faded little scream of rapture,\n'the Castle is charming! - associations of the Middle Ages - and all\nthat - which is so truly exquisite. Don't you dote upon the Middle\nAges, Mr Carker?'\n\n'Very much, indeed,' said Mr Carker.\n\n'Such charming times!' cried Cleopatra. 'So full of faith! So\nvigorous and forcible! So picturesque! So perfectly removed from\ncommonplace! Oh dear! If they would only leave us a little more of the\npoetry of existence in these terrible days!'\n\nMrs Skewton was looking sharp after Mr Dombey all the time she said\nthis, who was looking at Edith: who was listening, but who never\nlifted up her eyes.\n\n'We are dreadfully real, Mr Carker,' said Mrs Skewton; 'are we\nnot?'\n\nFew people had less reason to complain of their reality than\nCleopatra, who had as much that was false about her as could well go\nto the composition of anybody with a real individual existence. But Mr\nCarker commiserated our reality nevertheless, and agreed that we were\nvery hardly used in that regard.\n\n'Pictures at the Castle, quite divine!' said Cleopatra. 'I hope you\ndote upon pictures?'\n\n'I assure you, Mrs Skewton,' said Mr Dombey, with solemn\nencouragement of his Manager, 'that Carker has a very good taste for\npictures; quite a natural power of appreciating them. He is a very\ncreditable artist himself. He will be delighted, I am sure, with Mrs\nGranger's taste and skill.'\n\n'Damme, Sir!' cried Major Bagstock, 'my opinion is, that you're the\nadmirable Carker, and can do anything.'\n\n'Oh!' smiled Carker, with humility, 'you are much too sanguine,\nMajor Bagstock. I can do very little. But Mr Dombey is so generous in\nhis estimation of any trivial accomplishment a man like myself may\nfind it almost necessary to acquire, and to which, in his very\ndifferent sphere, he is far superior, that - ' Mr Carker shrugged his\nshoulders, deprecating further praise, and said no more.\n\nAll this time, Edith never raised her eyes, unless to glance\ntowards her mother when that lady's fervent spirit shone forth in\nwords. But as Carker ceased, she looked at Mr Dombey for a moment. For\na moment only; but with a transient gleam of scornful wonder on her\nface, not lost on one observer, who was smiling round the board.\n\nMr Dombey caught the dark eyelash in its descent, and took the\nopportunity of arresting it.\n\n'You have been to Warwick often, unfortunately?' said Mr Dombey.\n\n'Several times.'\n\n'The visit will be tedious to you, I am afraid.'\n\n'Oh no; not at all.'\n\n'Ah! You are like your cousin Feenix, my dearest Edith,' said Mrs\nSkewton. 'He has been to Warwick Castle fifty times, if he has been\nthere once; yet if he came to Leamington to-morrow - I wish he would,\ndear angel! - he would make his fifty-second visit next day.'\n\n'We are all enthusiastic, are we not, Mama?' said Edith, with a\ncold smile.\n\n'Too much so, for our peace, perhaps, my dear,' returned her\nmother; 'but we won't complain. Our own emotions are our recompense.\nIf, as your cousin Feenix says, the sword wears out the\nwhat's-its-name\n\n'The scabbard, perhaps,' said Edith.\n\n'Exactly - a little too fast, it is because it is bright and\nglowing, you know, my dearest love.'\n\nMrs Skewton heaved a gentle sigh, supposed to cast a shadow on the\nsurface of that dagger of lath, whereof her susceptible bosom was the\nsheath: and leaning her head on one side, in the Cleopatra manner,\nlooked with pensive affection on her darling child.\n\nEdith had turned her face towards Mr Dombey when he first addressed\nher, and had remained in that attitude, while speaking to her mother,\nand while her mother spoke to her, as though offering him her\nattention, if he had anything more to say. There was something in the\nmanner of this simple courtesy: almost defiant, and giving it the\ncharacter of being rendered on compulsion, or as a matter of traffic\nto which she was a reluctant party again not lost upon that same\nobserver who was smiling round the board. It set him thinking of her\nas he had first seen her, when she had believed herself to be alone\namong the trees.\n\nMr Dombey having nothing else to say, proposed - the breakfast\nbeing now finished, and the Major gorged, like any Boa Constrictor -\nthat they should start. A barouche being in waiting, according to the\norders of that gentleman, the two ladies, the Major and himself, took\ntheir seats in it; the Native and the wan page mounted the box, Mr\nTowlinson being left behind; and Mr Carker, on horseback, brought up\nthe rear. Mr Carker cantered behind the carriage. at the distance of a\nhundred yards or so, and watched it, during all the ride, as if he\nwere a cat, indeed, and its four occupants, mice. Whether he looked to\none side of the road, or to the other - over distant landscape, with\nits smooth undulations, wind-mills, corn, grass, bean fields,\nwild-flowers, farm-yards, hayricks, and the spire among the wood - or\nupwards in the sunny air, where butterflies were sporting round his\nhead, and birds were pouring out their songs - or downward, where the\nshadows of the branches interlaced, and made a trembling carpet on the\nroad - or onward, where the overhanging trees formed aisles and\narches, dim with the softened light that steeped through leaves - one\ncorner of his eye was ever on the formal head of Mr Dombey, addressed\ntowards him, and the feather in the bonnet, drooping so neglectfully\nand scornfully between them; much as he had seen the haughty eyelids\ndroop; not least so, when the face met that now fronting it. Once, and\nonce only, did his wary glance release these objects; and that was,\nwhen a leap over a low hedge, and a gallop across a field, enabled him\nto anticipate the carriage coming by the road, and to be standing\nready, at the journey's end, to hand the ladies out. Then, and but\nthen, he met her glance for an instant in her first surprise; but when\nhe touched her, in alighting, with his soft white hand, it overlooked\nhim altogether as before.\n\nMrs Skewton was bent on taking charge of Mr Carker herself, and\nshowing him the beauties of the Castle. She was determined to have his\narm, and the Major's too. It would do that incorrigible creature: who\nwas the most barbarous infidel in point of poetry: good to be in such\ncompany. This chance arrangement left Mr Dombey at liberty to escort\nEdith: which he did: stalking before them through the apartments with\na gentlemanly solemnity.\n\n'Those darling byegone times, Mr Carker,' said Cleopatra, 'with\ntheir delicious fortresses, and their dear old dungeons, and their\ndelightful places of torture, and their romantic vengeances, and their\npicturesque assaults and sieges, and everything that makes life truly\ncharming! How dreadfully we have degenerated!'\n\n'Yes, we have fallen off deplorably,' said Mr Carker.\n\nThe peculiarity of their conversation was, that Mrs Skewton, in\nspite of her ecstasies, and Mr Carker, in spite of his urbanity, were\nboth intent on watching Mr Dombey and Edith. With all their\nconversational endowments, they spoke somewhat distractedly, and at\nrandom, in consequence.\n\n'We have no Faith left, positively,' said Mrs Skewton, advancing\nher shrivelled ear; for Mr Dombey was saying something to Edith. 'We\nhave no Faith in the dear old Barons, who were the most delightful\ncreatures - or in the dear old Priests, who were the most warlike of\nmen - or even in the days of that inestimable Queen Bess, upon the\nwall there, which were so extremely golden. Dear creature! She was all\nHeart And that charming father of hers! I hope you dote on Harry the\nEighth!'\n\n'I admire him very much,' said Carker.\n\n'So bluff!' cried Mrs Skewton, 'wasn't he? So burly. So truly\nEnglish. Such a picture, too, he makes, with his dear little peepy\neyes, and his benevolent chin!'\n\n'Ah, Ma'am!' said Carker, stopping short; 'but if you speak of\npictures, there's a composition! What gallery in the world can produce\nthe counterpart of that?'\n\nAs the smiling gentleman thus spake, he pointed through a doorway\nto where Mr Dombey and Edith were standing alone in the centre of\nanother room.\n\nThey were not interchanging a word or a look. Standing together,\narm in arm, they had the appearance of being more divided than if seas\nhad rolled between them. There was a difference even in the pride of\nthe two, that removed them farther from each other, than if one had\nbeen the proudest and the other the humblest specimen of humanity in\nall creation. He, self-important, unbending, formal, austere. She,\nlovely and graceful, in an uncommon degree, but totally regardless of\nherself and him and everything around, and spurning her own\nattractions with her haughty brow and lip, as if they were a badge or\nlivery she hated. So unmatched were they, and opposed, so forced and\nlinked together by a chain which adverse hazard and mischance had\nforged: that fancy might have imagined the pictures on the walls\naround them, startled by the unnatural conjunction, and observant of\nit in their several expressions. Grim knights and warriors looked\nscowling on them. A churchman, with his hand upraised, denounced the\nmockery of such a couple coming to God's altar. Quiet waters in\nlandscapes, with the sun reflected in their depths, asked, if better\nmeans of escape were not at hand, was there no drowning left? Ruins\ncried, 'Look here, and see what We are, wedded to uncongenial Time!'\nAnimals, opposed by nature, worried one another, as a moral to them.\nLoves and Cupids took to flight afraid, and Martyrdom had no such\ntorment in its painted history of suffering.\n\nNevertheless, Mrs Skewton was so charmed by the sight to which Mr\nCarker invoked her attention, that she could not refraIn from saying,\nhalf aloud, how sweet, how very full of soul it was! Edith,\noverhearing, looked round, and flushed indignant scarlet to her hair.\n\n'My dearest Edith knows I was admiring her!' said Cleopatra,\ntapping her, almost timidly, on the back with her parasol. 'Sweet\npet!'\n\nAgain Mr Carker saw the strife he had witnessed so unexpectedly\namong the trees. Again he saw the haughty languor and indifference\ncome over it, and hide it like a cloud.\n\nShe did not raise her eyes to him; but with a slight peremptory\nmotion of them, seemed to bid her mother come near. Mrs Skewton\nthought it expedient to understand the hint, and advancing quickly,\nwith her two cavaliers, kept near her daughter from that time,\n\nMr Carker now, having nothing to distract his attention, began to\ndiscourse upon the pictures and to select the best, and point them out\nto Mr Dombey: speaking with his usual familiar recognition of Mr\nDombey's greatness, and rendering homage by adjusting his eye-glass\nfor him, or finding out the right place in his catalogue, or holding\nhis stick, or the like. These services did not so much originate with\nMr Carker, in truth, as with Mr Dombey himself, who was apt to assert\nhis chieftainship by saying, with subdued authority, and in an easy\nway - for him - 'Here, Carker, have the goodness to assist me, will\nyou?' which the smiling gentleman always did with pleasure.\n\nThey made the tour of the pictures, the walls, crow's nest, and so\nforth; and as they were still one little party, and the Major was\nrather in the shade: being sleepy during the process of digestion: Mr\nCarker became communicative and agreeable. At first, he addressed\nhimself for the most part to Mrs Skewton; but as that sensitive lady\nwas in such ecstasies with the works of art, after the first quarter\nof an hour, that she could do nothing but yawn (they were such perfect\ninspirations, she observed as a reason for that mark of rapture), he\ntransferred his attentions to Mr Dombey. Mr Dombey said little beyond\nan occasional 'Very true, Carker,' or 'Indeed, Carker,' but he tacitly\nencouraged Carker to proceed, and inwardly approved of his behaviour\nvery much: deeming it as well that somebody should talk, and thinking\nthat his remarks, which were, as one might say, a branch of the parent\nestablishment, might amuse Mrs Granger. Mr Carker, who possessed an\nexcellent discretion, never took the liberty of addressing that lady,\ndirect; but she seemed to listen, though she never looked at him; and\nonce or twice, when he was emphatic in his peculiar humility, the\ntwilight smile stole over her face, not as a light, but as a deep\nblack shadow.\n\nWarwick Castle being at length pretty well exhausted, and the Major\nvery much so: to say nothing of Mrs Skewton, whose peculiar\ndemonstrations of delight had become very frequent Indeed: the\ncarriage was again put In requisition, and they rode to several\nadmired points of view In the neighbourhood. Mr Dombey ceremoniously\nobserved of one of these, that a sketch, however slight, from the fair\nhand of Mrs Granger, would be a remembrance to him of that agreeable\nday: though he wanted no artificial remembrance, he was sure (here Mr\nDombey made another of his bows), which he must always highly value.\nWithers the lean having Edith's sketch-book under his arm, was\nimmediately called upon by Mrs Skewton to produce the same: and the\ncarriage stopped, that Edith might make the drawing, which Mr Dombey\nwas to put away among his treasures.\n\n'But I am afraid I trouble you too much,' said Mr Dombey.\n\n'By no means. Where would you wish it taken from?' she answered,\nturning to him with the same enforced attention as before.\n\nMr Dombey, with another bow, which cracked the starch in his\ncravat, would beg to leave that to the Artist.\n\n'I would rather you chose for yourself,' said Edith.\n\n'Suppose then,' said Mr Dombey, 'we say from here. It appears a\ngood spot for the purpose, or - Carker, what do you think?'\n\nThere happened to be in the foreground, at some little distance, a\ngrove of trees, not unlike that In which Mr Carker had made his chain\nof footsteps in the morning, and with a seat under one tree, greatly\nresembling, in the general character of its situation, the point where\nhis chain had broken.\n\n'Might I venture to suggest to Mrs Granger,' said Carker, 'that\nthat is an interesting - almost a curious - point of view?'\n\nShe followed the direction of his riding-whip with her eyes, and\nraised them quickly to his face. It was the second glance they had\nexchanged since their introduction; and would have been exactly like\nthe first, but that its expression was plainer.\n\n'Will you like that?' said Edith to Mr Dombey.\n\n'I shall be charmed,' said Mr Dombey to Edith.\n\nTherefore the carriage was driven to the spot where Mr Dombey was\nto be charmed; and Edith, without moving from her seat, and openIng\nher sketch-book with her usual proud indifference, began to sketch.\n\n'My pencils are all pointless,' she said, stopping and turning them\nover.\n\n'Pray allow me,' said Mr Dombey. 'Or Carker will do it better, as\nhe understands these things. Carker, have the goodness to see to these\npencils for Mrs Granger.\n\nMr Carker rode up close to the carriage-door on Mrs Granger's side,\nand letting the rein fall on his horse's neck, took the pencils from\nher hand with a smile and a bow, and sat in the saddle leisurely\nmending them. Having done so, he begged to be allowed to hold them,\nand to hand them to her as they were required; and thus Mr Carker,\nwith many commendations of Mrs Granger's extraordinary skill -\nespecially in trees - remained - close at her side, looking over the\ndrawing as she made it. Mr Dombey in the meantime stood bolt upright\nin the carriage like a highly respectable ghost, looking on too; while\nCleopatra and the Major dallied as two ancient doves might do.\n\n'Are you satisfied with that, or shall I finish it a little more?'\nsaid Edith, showing the sketch to Mr Dombey.\n\nMr Dombey begged that it might not be touched; it was perfection.\n\n'It is most extraordinary,' said Carker, bringing every one of his\nred gums to bear upon his praise. 'I was not prepared for anything so\nbeautiful, and so unusual altogether.'\n\nThis might have applied to the sketcher no less than to the sketch;\nbut Mr Carker's manner was openness itself - not as to his mouth\nalone, but as to his whole spirit. So it continued to be while the\ndrawing was laid aside for Mr Dombey, and while the sketching\nmaterials were put up; then he handed in the pencils (which were\nreceived with a distant acknowledgment of his help, but without a\nlook), and tightening his rein, fell back, and followed the carriage\nagain.\n\nThinking, perhaps, as he rode, that even this trivial sketch had\nbeen made and delivered to its owner, as if it had been bargained for\nand bought. Thinking, perhaps, that although she had assented with\nsuch perfect readiness to his request, her haughty face, bent over the\ndrawing, or glancing at the distant objects represented in it, had\nbeen the face of a proud woman, engaged in a sordid and miserable\ntransaction. Thinking, perhaps, of such things: but smiling certainly,\nand while he seemed to look about him freely, in enjoyment of the air\nand exercise, keeping always that sharp corner of his eye upon the\ncarriage.\n\nA stroll among the haunted ruins of Kenilworth, and more rides to\nmore points of view: most of which, Mrs Skewton reminded Mr Dombey,\nEdith had already sketched, as he had seen in looking over her\ndrawings: brought the day's expedition to a close. Mrs Skewton and\nEdith were driven to their own lodgings; Mr Carker was graciously\ninvited by Cleopatra to return thither with Mr Dombey and the Major,\nin the evening, to hear some of Edith's music; and the three gentlemen\nrepaired to their hotel to dinner.\n\nThe dinner was the counterpart of yesterday's, except that the\nMajor was twenty-four hours more triumphant and less mysterious. Edith\nwas toasted again. Mr Dombey was again agreeably embarrassed. And Mr\nCarker was full of interest and praise.\n\nThere were no other visitors at Mrs Skewton's. Edith's drawings\nwere strewn about the room, a little more abundantly than usual\nperhaps; and Withers, the wan page, handed round a little stronger\ntea. The harp was there; the piano was there; and Edith sang and\nplayed. But even the music was played by Edith to Mr Dombey's order,\nas it were, in the same uncompromising way. As thus.\n\n'Edith, my dearest love,' said Mrs Skewton, half an hour after tea,\n'Mr Dombey is dying to hear you, I know.'\n\n'Mr Dombey has life enough left to say so for himself, Mama, I have\nno doubt.'\n\n'I shall be immensely obliged,' said Mr Dombey.\n\n'What do you wish?'\n\n'Piano?' hesitated Mr Dombey.\n\n'Whatever you please. You have only to choose.\n\nAccordingly, she began with the piano. It was the same with the\nharp; the same with her singing; the same with the selection of the\npieces that she sang and played. Such frigid and constrained, yet\nprompt and pointed acquiescence with the wishes he imposed upon her,\nand on no one else, was sufficiently remarkable to penetrate through\nall the mysteries of picquet, and impress itself on Mr Carker's keen\nattention. Nor did he lose sight of the fact that Mr Dombey was\nevidently proud of his power, and liked to show it.\n\nNevertheless, Mr Carker played so well - some games with the Major,\nand some with Cleopatra, whose vigilance of eye in respect of Mr\nDombey and Edith no lynx could have surpassed - that he even\nheightened his position in the lady-mother's good graces; and when on\ntaking leave he regretted that he would be obliged to return to London\nnext morning, Cleopatra trusted: community of feeling not being met\nwith every day: that it was far from being the last time they would\nmeet.\n\n'I hope so,' said Mr Carker, with an expressive look at the couple\nin the distance, as he drew towards the door, following the Major. 'I\nthink so.'\n\nMr Dombey, who had taken a stately leave of Edith, bent, or made\nsome approach to a bend, over Cleopatra's couch, and said, in a low\nvoice:\n\n'I have requested Mrs Granger's permission to call on her to-morrow\nmorning - for a purpose - and she has appointed twelve o'clock. May I\nhope to have the pleasure of finding you at home, Madam, afterwards?'\n\nCleopatra was so much fluttered and moved, by hearing this, of\ncourse, incomprehensible speech, that she could only shut her eyes,\nand shake her head, and give Mr Dombey her hand; which Mr Dombey, not\nexactly knowing what to do with, dropped.\n\n'Dombey, come along!' cried the Major, looking in at the door.\n'Damme, Sir, old Joe has a great mind to propose an alteration in the\nname of the Royal Hotel, and that it should be called the Three Jolly\nBachelors, in honour of ourselves and Carker.' With this, the Major\nslapped Mr Dombey on the back, and winking over his shoulder at the\nladies, with a frightful tendency of blood to the head, carried him\noff.\n\nMrs Skewton reposed on her sofa, and Edith sat apart, by her harp,\nin silence. The mother, trifling with her fan, looked stealthily at\nthe daughter more than once, but the daughter, brooding gloomily with\ndowncast eyes, was not to be disturbed.\n\nThus they remained for a long hour, without a word, until Mrs\nSkewton's maid appeared, according to custom, to prepare her gradually\nfor night. At night, she should have been a skeleton, with dart and\nhour-glass, rather than a woman, this attendant; for her touch was as\nthe touch of Death. The painted object shrivelled underneath her hand;\nthe form collapsed, the hair dropped off, the arched dark eyebrows\nchanged to scanty tufts of grey; the pale lips shrunk, the skin became\ncadaverous and loose; an old, worn, yellow, nodding woman, with red\neyes, alone remained in Cleopatra's place, huddled up, like a slovenly\nbundle, in a greasy flannel gown.\n\nThe very voice was changed, as it addressed Edith, when they were\nalone again.\n\n'Why don't you tell me,' it said sharply, 'that he is coming here\nto-morrow by appointment?'\n\n'Because you know it,' returned Edith, 'Mother.'\n\nThe mocking emphasis she laid on that one word!\n\n'You know he has bought me,' she resumed. 'Or that he will,\nto-morrow. He has considered of his bargain; he has shown it to his\nfriend; he is even rather proud of it; he thinks that it will suit\nhim, and may be had sufficiently cheap; and he will buy to-morrow.\nGod, that I have lived for this, and that I feel it!'\n\nCompress into one handsome face the conscious self-abasement, and\nthe burning indignation of a hundred women, strong in passion and in\npride; and there it hid itself with two white shuddering arms.\n\n'What do you mean?' returned the angry mother. 'Haven't you from a\nchild - '\n\n'A child!' said Edith, looking at her, 'when was I a child? What\nchildhood did you ever leave to me? I was a woman - artful, designing,\nmercenary, laying snares for men - before I knew myself, or you, or\neven understood the base and wretched aim of every new display I\nlearnt You gave birth to a woman. Look upon her. She is in her pride\ntonight'\n\nAnd as she spoke, she struck her hand upon her beautiful bosom, as\nthough she would have beaten down herself\n\n'Look at me,' she said, 'who have never known what it is to have an\nhonest heart, and love. Look at me, taught to scheme and plot when\nchildren play; and married in my youth - an old age of design - to one\nfor whom I had no feeling but indifference. Look at me, whom he left a\nwidow, dying before his inheritance descended to him - a judgment on\nyou! well deserved! - and tell me what has been my life for ten years\nsince.'\n\n'We have been making every effort to endeavour to secure to you a\ngood establishment,' rejoined her mother. 'That has been your life.\nAnd now you have got it.'\n\n'There is no slave in a market: there is no horse in a fair: so\nshown and offered and examined and paraded, Mother, as I have been,\nfor ten shameful years,' cried Edith, with a burning brow, and the\nsame bitter emphasis on the one word. 'Is it not so? Have I been made\nthe bye-word of all kinds of men? Have fools, have profligates, have\nboys, have dotards, dangled after me, and one by one rejected me, and\nfallen off, because you were too plain with all your cunning: yes, and\ntoo true, with all those false pretences: until we have almost come to\nbe notorious? The licence of look and touch,' she said, with flashing\neyes, 'have I submitted to it, in half the places of resort upon the\nmap of England? Have I been hawked and vended here and there, until\nthe last grain of self-respect is dead within me, and I loathe myself?\nHas been my late childhood? I had none before. Do not tell me that I\nhad, tonight of all nights in my life!'\n\n'You might have been well married,' said her mother, 'twenty times\nat least, Edith, if you had given encouragement enough.'\n\n'No! Who takes me, refuse that I am, and as I well deserve to be,'\nshe answered, raising her head, and trembling in her energy of shame\nand stormy pride, 'shall take me, as this man does, with no art of\nmine put forth to lure him. He sees me at the auction, and he thinks\nit well to buy me. Let him! When he came to view me - perhaps to bid -\nhe required to see the roll of my accomplishments. I gave it to him.\nWhen he would have me show one of them, to justify his purchase to his\nmen, I require of him to say which he demands, and I exhibit it. I\nwill do no more. He makes the purchase of his own will, and with his\nown sense of its worth, and the power of his money; and I hope it may\nnever disappoint him. I have not vaunted and pressed the bargain;\nneither have you, so far as I have been able to prevent you.\n\n'You talk strangely to-night, Edith, to your own Mother.'\n\n'It seems so to me; stranger to me than you,' said Edith. 'But my\neducation was completed long ago. I am too old now, and have fallen\ntoo low, by degrees, to take a new course, and to stop yours, and to\nhelp myself. The germ of all that purifies a woman's breast, and makes\nit true and good, has never stirred in mine, and I have nothing else\nto sustain me when I despise myself.' There had been a touching\nsadness in her voice, but it was gone, when she went on to say, with a\ncurled lip, 'So, as we are genteel and poor, I am content that we\nshould be made rich by these means; all I say is, I have kept the only\npurpose I have had the strength to form - I had almost said the power,\nwith you at my side, Mother - and have not tempted this man on.'\n\n'This man! You speak,' said her mother, 'as if you hated him.'\n\n'And you thought I loved him, did you not?' she answered, stopping\non her way across the room, and looking round. 'Shall I tell you,' she\ncontinued, with her eyes fixed on her mother, 'who already knows us\nthoroughly, and reads us right, and before whom I have even less of\nself-respect or confidence than before my own inward self; being so\nmuch degraded by his knowledge of me?'\n\n'This is an attack, I suppose,' returned her mother coldly, 'on\npoor, unfortunate what's-his-name - Mr Carker! Your want of\nself-respect and confidence, my dear, in reference to that person (who\nis very agreeable, it strikes me), is not likely to have much effect\non your establishment. Why do you look at me so hard? Are you ill?'\n\nEdith suddenly let fall her face, as if it had been stung, and\nwhile she pressed her hands upon it, a terrible tremble crept over her\nwhole frame. It was quickly gone; and with her usual step, she passed\nout of the room.\n\nThe maid who should have been a skeleton, then reappeared, and\ngiving one arm to her mistress, who appeared to have taken off her\nmanner with her charms, and to have put on paralysis with her flannel\ngown, collected the ashes of Cleopatra, and carried them away in the\nother, ready for tomorrow's revivification.\n\n\n\nCHAPTER 28.\n\nAlterations\n\n\n'So the day has come at length, Susan,' said Florence to the\nexcellent Nipper, 'when we are going back to our quiet home!'\n\nSusan drew in her breath with an amount of expression not easily\ndescribed, further relieving her feelings with a smart cough,\nanswered, 'Very quiet indeed, Miss Floy, no doubt. Excessive so.'\n\n'When I was a child,' said Florence, thoughtfully, and after musing\nfor some moments, 'did you ever see that gentleman who has taken the\ntrouble to ride down here to speak to me, now three times - three\ntimes, I think, Susan?'\n\n'Three times, Miss,' returned the Nipper. 'Once when you was out a\nwalking with them Sket- '\n\nFlorence gently looked at her, and Miss Nipper checked herself.\n\n'With Sir Barnet and his lady, I mean to say, Miss, and the young\ngentleman. And two evenings since then.'\n\n'When I was a child, and when company used to come to visit Papa,\ndid you ever see that gentleman at home, Susan?' asked Florence.\n\n'Well, Miss,' returned her maid, after considering, 'I really\ncouldn't say I ever did. When your poor dear Ma died, Miss Floy, I was\nvery new in the family, you see, and my element:' the Nipper bridled,\nas opining that her merits had been always designedly extinguished by\nMr Dombey: 'was the floor below the attics.'\n\n'To be sure,' said Florence, still thoughtfully; 'you are not\nlikely to have known who came to the house. I quite forgot.'\n\n'Not, Miss, but what we talked about the family and visitors,' said\nSusan, 'and but what I heard much said, although the nurse before Mrs\nRichards make unpleasant remarks when I was in company, and hint at\nlittle Pitchers, but that could only be attributed, poor thing,'\nobserved Susan, with composed forbearance, 'to habits of intoxication,\nfor which she was required to leave, and did.'\n\nFlorence, who was seated at her chamber window, with her face\nresting on her hand, sat looking out, and hardly seemed to hear what\nSusan said, she was so lost in thought.\n\n'At all events, Miss,' said Susan, 'I remember very well that this\nsame gentleman, Mr Carker, was almost, if not quite, as great a\ngentleman with your Papa then, as he is now. It used to be said in the\nhouse then, Miss, that he was at the head of all your Pa's affairs in\nthe City, and managed the whole, and that your Pa minded him more than\nanybody, which, begging your pardon, Miss Floy, he might easy do, for\nhe never minded anybody else. I knew that, Pitcher as I might have\nbeen.'\n\nSusan Nipper, with an injured remembrance of the nurse before Mrs\nRichards, emphasised 'Pitcher' strongly.\n\n'And that Mr Carker has not fallen off, Miss,' she pursued, 'but\nhas stood his ground, and kept his credit with your Pa, I know from\nwhat is always said among our people by that Perch, whenever he comes\nto the house; and though he's the weakest weed in the world, Miss\nFloy, and no one can have a moment's patience with the man, he knows\nwhat goes on in the City tolerable well, and says that your Pa does\nnothing without Mr Carker, and leaves all to Mr Carker, and acts\naccording to Mr Carker, and has Mr Carker always at his elbow, and I\ndo believe that he believes (that washiest of Perches!) that after\nyour Pa, the Emperor of India is the child unborn to Mr Carker.'\n\nNot a word of this was lost on Florence, who, with an awakened\ninterest in Susan's speech, no longer gazed abstractedly on the\nprospect without, but looked at her, and listened with attention.\n\n'Yes, Susan,' she said, when that young lady had concluded. 'He is\nin Papa's confidence, and is his friend, I am sure.'\n\nFlorence's mind ran high on this theme, and had done for some days.\nMr Carker, in the two visits with which he had followed up his first\none, had assumed a confidence between himself and her - a right on his\npart to be mysterious and stealthy, in telling her that the ship was\nstill unheard of - a kind of mildly restrained power and authority\nover her - that made her wonder, and caused her great uneasiness. She\nhad no means of repelling it, or of freeing herself from the web he\nwas gradually winding about her; for that would have required some art\nand knowledge of the world, opposed to such address as his; and\nFlorence had none. True, he had said no more to her than that there\nwas no news of the ship, and that he feared the worst; but how he came\nto know that she was interested in the ship, and why he had the right\nto signify his knowledge to her, so insidiously and darkly, troubled\nFlorence very much.\n\nThis conduct on the part of Mr Carker, and her habit of often\nconsidering it with wonder and uneasiness, began to invest him with an\nuncomfortable fascination in Florence's thoughts. A more distinct\nremembrance of his features, voice, and manner: which she sometimes\ncourted, as a means of reducing him to the level of a real personage,\ncapable of exerting no greater charm over her than another: did not\nremove the vague impression. And yet he never frowned, or looked upon\nher with an air of dislike or animosity, but was always smiling and\nserene.\n\nAgain, Florence, in pursuit of her strong purpose with reference to\nher father, and her steady resolution to believe that she was herself\nunwittingly to blame for their so cold and distant relations, would\nrecall to mind that this gentleman was his confidential friend, and\nwould think, with an anxious heart, could her struggling tendency to\ndislike and fear him be a part of that misfortune in her, which had\nturned her father's love adrift, and left her so alone? She dreaded\nthat it might be; sometimes believed it was: then she resolved that\nshe would try to conquer this wrong feeling; persuaded herself that\nshe was honoured and encouraged by the notice of her father's friend;\nand hoped that patient observation of him and trust in him would lead\nher bleeding feet along that stony road which ended in her father's\nheart.\n\nThus, with no one to advise her - for she could advise with no one\nwithout seeming to complain against him - gentle Florence tossed on an\nuneasy sea of doubt and hope; and Mr Carker, like a scaly monster of\nthe deep, swam down below, and kept his shining eye upon her. Florence\nhad a new reason in all this for wishing to be at home again. Her\nlonely life was better suited to her course of timid hope and doubt;\nand she feared sometimes, that in her absence she might miss some\nhopeful chance of testifying her affection for her father. Heaven\nknows, she might have set her mind at rest, poor child! on this last\npoint; but her slighted love was fluttering within her, and, even in\nher sleep, it flew away in dreams, and nestled, like a wandering bird\ncome home, upon her father's neck.\n\nOf Walter she thought often. Ah! how often, when the night was\ngloomy, and the wind was blowing round the house! But hope was strong\nin her breast. It is so difficult for the young and ardent, even with\nsuch experience as hers, to imagine youth and ardour quenched like a\nweak flame, and the bright day of life merging into night, at noon,\nthat hope was strong yet. Her tears fell frequently for Walter's\nsufferings; but rarely for his supposed death, and never long.\n\nShe had written to the old Instrument-maker, but had received no\nanswer to her note: which indeed required none. Thus matters stood\nwith Florence on the morning when she was going home, gladly, to her\nold secluded life.\n\nDoctor and Mrs Blimber, accompanied (much against his will) by\ntheir valued charge, Master Barnet, were already gone back to\nBrighton, where that young gentleman and his fellow-pilgrims to\nParnassus were then, no doubt, in the continual resumption of their\nstudies. The holiday time was past and over; most of the juvenile\nguests at the villa had taken their departure; and Florence's long\nvisit was come to an end.\n\nThere was one guest, however, albeit not resident within the house,\nwho had been very constant in his attentions to the family, and who\nstill remained devoted to them. This was Mr Toots, who after renewing,\nsome weeks ago, the acquaintance he had had the happiness of forming\nwith Skettles Junior, on the night when he burst the Blimberian bonds\nand soared into freedom with his ring on, called regularly every other\nday, and left a perfect pack of cards at the hall-door; so many\nindeed, that the ceremony was quite a deal on the part of Mr Toots,\nand a hand at whist on the part of the servant.\n\nMr Toots, likewise, with the bold and happy idea of preventing the\nfamily from forgetting him (but there is reason to suppose that this\nexpedient originated in the teeming brain of the Chicken), had\nestablished a six-oared cutter, manned by aquatic friends of the\nChicken's and steered by that illustrious character in person, who\nwore a bright red fireman's coat for the purpose, and concealed the\nperpetual black eye with which he was afflicted, beneath a green\nshade. Previous to the institution of this equipage, Mr Toots sounded\nthe Chicken on a hypothetical case, as, supposing the Chicken to be\nenamoured of a young lady named Mary, and to have conceived the\nintention of starting a boat of his own, what would he call that boat?\nThe Chicken replied, with divers strong asseverations, that he would\neither christen it Poll or The Chicken's Delight. Improving on this\nidea, Mr Toots, after deep study and the exercise of much invention,\nresolved to call his boat The Toots's Joy, as a delicate compliment to\nFlorence, of which no man knowing the parties, could possibly miss the\nappreciation.\n\nStretched on a crimson cushion in his gallant bark, with his shoes\nin the air, Mr Toots, in the exercise of his project, had come up the\nriver, day after day, and week after week, and had flitted to and fro,\nnear Sir Barnet's garden, and had caused his crew to cut across and\nacross the river at sharp angles, for his better exhibition to any\nlookers-out from Sir Barnet's windows, and had had such evolutions\nperformed by the Toots's Joy as had filled all the neighbouring part\nof the water-side with astonishment. But whenever he saw anyone in Sir\nBarnet's garden on the brink of the river, Mr Toots always feigned to\nbe passing there, by a combination of coincidences of the most\nsingular and unlikely description.\n\n'How are you, Toots?' Sir Barnet would say, waving his hand from\nthe lawn, while the artful Chicken steered close in shore.\n\n'How de do, Sir Barnet?' Mr Toots would answer, What a surprising\nthing that I should see you here!'\n\nMr Toots, in his sagacity, always said this, as if, instead of that\nbeing Sir Barnet's house, it were some deserted edifice on the banks\nof the Nile, or Ganges.\n\n'I never was so surprised!' Mr Toots would exclaim. - 'Is Miss\nDombey there?'\n\nWhereupon Florence would appear, perhaps.\n\n'Oh, Diogenes is quite well, Miss Dombey,' Toots would cry. 'I\ncalled to ask this morning.'\n\n'Thank you very much!' the pleasant voice of Florence would reply.\n\n'Won't you come ashore, Toots?' Sir Barnet would say then. 'Come!\nyou're in no hurry. Come and see us.'\n\n'Oh, it's of no consequence, thank you!' Mr Toots would blushingly\nrejoin. 'I thought Miss Dombey might like to know, that's all.\nGood-bye!' And poor Mr Toots, who was dying to accept the invitation,\nbut hadn't the courage to do it, signed to the Chicken, with an aching\nheart, and away went the Joy, cleaving the water like an arrow.\n\nThe Joy was lying in a state of extraordinary splendour, at the\ngarden steps, on the morning of Florence's departure. When she went\ndownstairs to take leave, after her talk with Susan, she found Mr\nToots awaiting her in the drawing-room.\n\n'Oh, how de do, Miss Dombey?' said the stricken Toots, always\ndreadfully disconcerted when the desire of his heart was gained, and\nhe was speaking to her; 'thank you, I'm very well indeed, I hope\nyou're the same, so was Diogenes yesterday.'\n\n'You are very kind,' said Florence.\n\n'Thank you, it's of no consequence,' retorted Mr Toots. 'I thought\nperhaps you wouldn't mind, in this fine weather, coming home by water,\nMiss Dombey. There's plenty of room in the boat for your maid.'\n\n'I am very much obliged to you,' said Florence, hesitating. 'I\nreally am - but I would rather not.'\n\n'Oh, it's of no consequence,' retorted Mr Toots. 'Good morning.'\n\n'Won't you wait and see Lady Skettles?' asked Florence, kindly.\n\n'Oh no, thank you,' returned Mr Toots, 'it's of no consequence at\nall.'\n\nSo shy was Mr Toots on such occasions, and so flurried! But Lady\nSkettles entering at the moment, Mr Toots was suddenly seized with a\npassion for asking her how she did, and hoping she was very well; nor\ncould Mr Toots by any possibility leave off shaking hands with her,\nuntil Sir Barnet appeared: to whom he immediately clung with the\ntenacity of desperation.\n\n'We are losing, today, Toots,' said Sir Barnet, turning towards\nFlorence, 'the light of our house, I assure you'\n\n'Oh, it's of no conseq - I mean yes, to be sure,' faltered the\nembarrassed Mr Toots. 'Good morning!'\n\nNotwithstanding the emphatic nature of this farewell, Mr Toots,\ninstead of going away, stood leering about him, vacantly. Florence, to\nrelieve him, bade adieu, with many thanks, to Lady Skettles, and gave\nher arm to Sir Barnet.\n\n'May I beg of you, my dear Miss Dombey,' said her host, as he\nconducted her to the carriage, 'to present my best compliments to your\ndear Papa?'\n\nIt was distressing to Florence to receive the commission, for she\nfelt as if she were imposing on Sir Barnet by allowing him to believe\nthat a kindness rendered to her, was rendered to her father. As she\ncould not explain, however, she bowed her head and thanked him; and\nagain she thought that the dull home, free from such embarrassments,\nand such reminders of her sorrow, was her natural and best retreat.\n\nSuch of her late friends and companions as were yet remaining at\nthe villa, came running from within, and from the garden, to say\ngood-bye. They were all attached to her, and very earnest in taking\nleave of her. Even the household were sorry for her going, and the\nservants came nodding and curtseying round the carriage door. As\nFlorence looked round on the kind faces, and saw among them those of\nSir Barnet and his lady, and of Mr Toots, who was chuckling and\nstaring at her from a distance, she was reminded of the night when\nPaul and she had come from Doctor Blimber's: and when the carriage\ndrove away, her face was wet with tears.\n\nSorrowful tears, but tears of consolation, too; for all the softer\nmemories connected with the dull old house to which she was returning\nmade it dear to her, as they rose up. How long it seemed since she had\nwandered through the silent rooms: since she had last crept, softly\nand afraid, into those her father occupied: since she had felt the\nsolemn but yet soothing influence of the beloved dead in every action\nof her daily life! This new farewell reminded her, besides, of her\nparting with poor Walter: of his looks and words that night: and of\nthe gracious blending she had noticed in him, of tenderness for those\nhe left behind, with courage and high spirit. His little history was\nassociated with the old house too, and gave it a new claim and hold\nupon her heart. Even Susan Nipper softened towards the home of so many\nyears, as they were on their way towards it. Gloomy as it was, and\nrigid justice as she rendered to its gloom, she forgave it a great\ndeal. 'I shall be glad to see it again, I don't deny, Miss,' said the\nNipper. 'There ain't much in it to boast of, but I wouldn't have it\nburnt or pulled down, neither!'\n\n'You'll be glad to go through the old rooms, won't you, Susan?'\nsaid Florence, smiling.\n\n'Well, Miss,' returned the Nipper, softening more and more towards\nthe house, as they approached it nearer, 'I won't deny but what I\nshall, though I shall hate 'em again, to-morrow, very likely.'\n\nFlorence felt that, for her, there was greater peace within it than\nelsewhere. It was better and easier to keep her secret shut up there,\namong the tall dark walls, than to carry it abroad into the light, and\ntry to hide it from a crowd of happy eyes. It was better to pursue the\nstudy of her loving heart, alone, and find no new discouragements in\nloving hearts about her. It was easier to hope, and pray, and love on,\nall uncared for, yet with constancy and patience, in the tranquil\nsanctuary of such remembrances: although it mouldered, rusted, and\ndecayed about her: than in a new scene, let its gaiety be what it\nwould. She welcomed back her old enchanted dream of life, and longed\nfor the old dark door to close upon her, once again.\n\nFull of such thoughts, they turned into the long and sombre street.\nFlorence was not on that side of the carriage which was nearest to her\nhome, and as the distance lessened between them and it, she looked out\nof her window for the children over the way.\n\nShe was thus engaged, when an exclamation from Susan caused her to\nturn quickly round.\n\n'Why, Gracious me!' cried Susan, breathless, 'where's our house!'\n\n'Our house!' said Florence.\n\nSusan, drawing in her head from the window, thrust it out again,\ndrew it in again as the carriage stopped, and stared at her mistress\nin amazement.\n\nThere was a labyrinth of scaffolding raised all round the house,\nfrom the basement to the roof. Loads of bricks and stones, and heaps\nof mortar, and piles of wood, blocked up half the width and length of\nthe broad street at the side. Ladders were raised against the walls;\nlabourers were climbing up and down; men were at work upon the steps\nof the scaffolding; painters and decorators were busy inside; great\nrolls of ornamental paper were being delivered from a cart at the\ndoor; an upholsterer's waggon also stopped the way; no furniture was\nto be seen through the gaping and broken windows in any of the rooms;\nnothing but workmen, and the implements of their several trades,\nswarming from the kitchens to the garrets. Inside and outside alike:\nbricklayers, painters, carpenters, masons: hammer, hod, brush,\npickaxe, saw, and trowel: all at work together, in full chorus!\n\nFlorence descended from the coach, half doubting if it were, or\ncould be the right house, until she recognised Towlinson, with a\nsun-burnt face, standing at the door to receive her.\n\n'There is nothing the matter?' inquired Florence.\n\n'Oh no, Miss.'\n\n'There are great alterations going on.'\n\n'Yes, Miss, great alterations,' said Towlinson.\n\nFlorence passed him as if she were in a dream, and hurried\nupstairs. The garish light was in the long-darkened drawing-room and\nthere were steps and platforms, and men In paper caps, in the high\nplaces. Her mother's picture was gone with the rest of the moveables,\nand on the mark where it had been, was scrawled in chalk, 'this room\nin panel. Green and gold.' The staircase was a labyrinth of posts and\nplanks like the outside of the house, and a whole Olympus of plumbers\nand glaziers was reclining in various attitudes, on the skylight. Her\nown room was not yet touched within, but there were beams and boards\nraised against it without, baulking the daylight. She went up swiftly\nto that other bedroom, where the little bed was; and a dark giant of a\nman with a pipe in his mouth, and his head tied up in a\npocket-handkerchief, was staring in at the window.\n\nIt was here that Susan Nipper, who had been in quest of Florence,\nfound her, and said, would she go downstairs to her Papa, who wished\nto speak to her.\n\n'At home! and wishing to speak to me!' cried Florence, trembling.\n\nSusan, who was infinitely more distraught than Florence herself,\nrepeated her errand; and Florence, pale and agitated, hurried down\nagain, without a moment's hesitation. She thought upon the way down,\nwould she dare to kiss him? The longing of her heart resolved her, and\nshe thought she would.\n\nHer father might have heard that heart beat, when it came into his\npresence. One instant, and it would have beat against his breast.\n\nBut he was not alone. There were two ladies there; and Florence\nstopped. Striving so hard with her emotion, that if her brute friend\nDi had not burst in and overwhelmed her with his caresses as a welcome\nhome - at which one of the ladies gave a little scream, and that\ndiverted her attention from herself - she would have swooned upon the\nfloor.\n\n'Florence,' said her father, putting out his hand: so stiffly that\nit held her off: 'how do you do?'\n\nFlorence took the hand between her own, and putting it timidly to\nher lips, yielded to its withdrawal. It touched the door in shutting\nit, with quite as much endearment as it had touched her.\n\n'What dog is that?' said Mr Dombey, displeased.\n\n'It is a dog, Papa - from Brighton.'\n\n'Well!' said Mr Dombey; and a cloud passed over his face, for he\nunderstood her.\n\n'He is very good-tempered,' said Florence, addressing herself with\nher natural grace and sweetness to the two lady strangers. 'He is only\nglad to see me. Pray forgive him.'\n\nShe saw in the glance they interchanged, that the lady who had\nscreamed, and who was seated, was old; and that the other lady, who\nstood near her Papa, was very beautiful, and of an elegant figure.\n\n'Mrs Skewton,' said her father, turning to the first, and holding\nout his hand, 'this is my daughter Florence.'\n\n'Charming, I am sure,' observed the lady, putting up her glass. 'So\nnatural! My darling Florence, you must kiss me, if you please.'\n\nFlorence having done so, turned towards the other lady, by whom her\nfather stood waiting.\n\n'Edith,' said Mr Dombey, 'this is my daughter Florence. Florence,\nthis lady will soon be your Mama.'\n\nFlorence started, and looked up at the beautiful face in a conflict\nof emotions, among which the tears that name awakened, struggled for a\nmoment with surprise, interest, admiration, and an indefinable sort of\nfear. Then she cried out, 'Oh, Papa, may you be happy! may you be\nvery, very happy all your life!' and then fell weeping on the lady's\nbosom.\n\nThere was a short silence. The beautiful lady, who at first had\nseemed to hesitate whether or no she should advance to Florence, held\nher to her breast, and pressed the hand with which she clasped her,\nclose about her waist, as if to reassure her and comfort her. Not one\nword passed the lady's lips. She bent her head down over Florence, and\nshe kissed her on the cheek, but she said no word.\n\n'Shall we go on through the rooms,' said Mr Dombey, 'and see how\nour workmen are doing? Pray allow me, my dear madam.'\n\nHe said this in offering his arm to Mrs Skewton, who had been\nlooking at Florence through her glass, as though picturing to herself\nwhat she might be made, by the infusion - from her own copious\nstorehouse, no doubt - of a little more Heart and Nature. Florence was\nstill sobbing on the lady's breast, and holding to her, when Mr Dombey\nwas heard to say from the Conservatory:\n\n'Let us ask Edith. Dear me, where is she?'\n\n'Edith, my dear!' cried Mrs Skewton, 'where are you? Looking for Mr\nDombey somewhere, I know. We are here, my love.'\n\nThe beautiful lady released her hold of Florence, and pressing her\nlips once more upon her face, withdrew hurriedly, and joined them.\nFlorence remained standing In the same place: happy, sorry, joyful,\nand in tears, she knew not how, or how long, but all at once: when her\nnew Mama came back, and took her in her arms again.\n\n'Florence,' said the lady, hurriedly, and looking into her face\nwith great earnestness. 'You will not begin by hating me?'\n\n'By hating you, Mama?' cried Florence, winding her arm round her\nneck, and returning the look.\n\n'Hush! Begin by thinking well of me,' said the beautiful lady.\n'Begin by believing that I will try to make you happy, and that I am\nprepared to love you, Florence. Good-bye. We shall meet again soon.\nGood-bye! Don't stay here, now.'\n\nAgain she pressed her to her breast she had spoken in a rapid\nmanner, but firmly - and Florence saw her rejoin them in the other\nroom. And now Florence began to hope that she would learn from her new\nand beautiful Mama, how to gaIn her father's love; and in her sleep\nthat night, in her lost old home, her own Mama smiled radiantly upon\nthe hope, and blessed it. Dreaming Florence!\n\n\n\nCHAPTER 29.\n\nThe Opening of the Eyes of Mrs Chick\n\n\n\nMiss Tox, all unconscious of any such rare appearances in connexion\nwith Mr Dombey's house, as scaffoldings and ladders, and men with\ntheir heads tied up in pocket-handkerchiefs, glaring in at the windows\nlike flying genii or strange birds, - having breakfasted one morning\nat about this eventful period of time, on her customary viands; to\nwit, one French roll rasped, one egg new laid (or warranted to be),\nand one little pot of tea, wherein was infused one little silver\nscoopful of that herb on behalf of Miss Tox, and one little silver\nscoopful on behalf of the teapot - a flight of fancy in which good\nhousekeepers delight; went upstairs to set forth the bird waltz on the\nharpsichord, to water and arrange the plants, to dust the nick-nacks,\nand, according to her daily custom, to make her little drawing-room\nthe garland of Princess's Place.\n\nMiss Tox endued herself with a pair of ancient gloves, like dead\nleaves, in which she was accustomed to perform these avocations -\nhidden from human sight at other times in a table drawer - and went\nmethodically to work; beginning with the bird waltz; passing, by a\nnatural association of ideas, to her bird - a very high-shouldered\ncanary, stricken in years, and much rumpled, but a piercing singer, as\nPrincess's Place well knew; taking, next in order, the little china\nornaments, paper fly-cages, and so forth; and coming round, in good\ntime, to the plants, which generally required to be snipped here and\nthere with a pair of scissors, for some botanical reason that was very\npowerful with Miss Tox. Miss Tox was slow in coming to the plants,\nthis morning. The weather was warm, the wind southerly; and there was\na sigh of the summer-time In Princess's Place, that turned Miss Tox's\nthoughts upon the country. The pot-boy attached to the Princess's Arms\nhad come out with a can and trickled water, in a flowering pattern,\nall over Princess's Place, and it gave the weedy ground a fresh scent\n- quite a growing scent, Miss Tox said. There was a tiny blink of sun\npeeping in from the great street round the corner, and the smoky\nsparrows hopped over it and back again, brightening as they passed: or\nbathed in it, like a stream, and became glorified sparrows,\nunconnected with chimneys. Legends in praise of Ginger-Beer, with\npictorial representations of thirsty customers submerged in the\neffervescence, or stunned by the flying corks, were conspicuous in the\nwindow of the Princess's Arms. They were making late hay, somewhere\nout of town; and though the fragrance had a long way to come, and many\ncounter fragrances to contend with among the dwellings of the poor\n(may God reward the worthy gentlemen who stickle for the Plague as\npart and parcel of the wisdom of our ancestors, and who do their\nlittle best to keep those dwellings miserable!), yet it was wafted\nfaintly into Princess's Place, whispering of Nature and her wholesome\nair, as such things will, even unto prisoners and captives, and those\nwho are desolate and oppressed, in very spite of aldermen and knights\nto boot: at whose sage nod - and how they nod! - the rolling world\nstands still!\n\nMiss Tox sat down upon the window-seat, and thought of her good\nPapa deceased - Mr Tox, of the Customs Department of the public\nservice; and of her childhood, passed at a seaport, among a\nconsiderable quantity of cold tar, and some rusticity. She fell into a\nsoftened remembrance of meadows, in old time, gleaming with\nbuttercups, like so many inverted firmaments of golden stars; and how\nshe had made chains of dandelion-stalks for youthful vowers of eternal\nconstancy, dressed chiefly in nankeen; and how soon those fetters had\nwithered and broken.\n\nSitting on the window-seat, and looking out upon the sparrows and\nthe blink of sun, Miss Tox thought likewise of her good Mama deceased\n- sister to the owner of the powdered head and pigtail - of her\nvirtues and her rheumatism. And when a man with bulgy legs, and a\nrough voice, and a heavy basket on his head that crushed his hat into\na mere black muffin, came crying flowers down Princess's Place, making\nhis timid little roots of daisies shudder in the vibration of every\nyell he gave, as though he had been an ogre, hawking little children,\nsummer recollections were so strong upon Miss Tox, that she shook her\nhead, and murmured she would be comparatively old before she knew it -\nwhich seemed likely.\n\nIn her pensive mood, Miss Tox's thoughts went wandering on Mr\nDombey's track; probably because the Major had returned home to his\nlodgings opposite, and had just bowed to her from his window. What\nother reason could Miss Tox have for connecting Mr Dombey with her\nsummer days and dandelion fetters? Was he more cheerful? thought Miss\nTox. Was he reconciled to the decrees of fate? Would he ever marry\nagain? and if yes, whom? What sort of person now!\n\nA flush - it was warm weather - overspread Miss Tox's face, as,\nwhile entertaining these meditations, she turned her head, and was\nsurprised by the reflection of her thoughtful image In the\nchimney-glass. Another flush succeeded when she saw a little carriage\ndrive into Princess's Place, and make straight for her own door. Miss\nTox arose, took up her scissors hastily, and so coming, at last, to\nthe plants, was very busy with them when Mrs Chick entered the room.\n\n'How is my sweetest friend!' exclaimed Miss Tox, with open arms.\n\nA little stateliness was mingled with Miss Tox's sweetest friend's\ndemeanour, but she kissed Miss Tox, and said, 'Lucretia, thank you, I\nam pretty well. I hope you are the same. Hem!'\n\nMrs Chick was labouring under a peculiar little monosyllabic cough;\na sort of primer, or easy introduction to the art of coughing.\n\n'You call very early, and how kind that is, my dear!' pursued Miss\nTox. 'Now, have you breakfasted?'\n\n'Thank you, Lucretia,' said Mrs Chick, 'I have. I took an early\nbreakfast' - the good lady seemed curious on the subject of Princess's\nPlace, and looked all round it as she spoke - 'with my brother, who\nhas come home.'\n\n'He is better, I trust, my love,' faltered Miss Tox.\n\n'He is greatly better, thank you. Hem!'\n\n'My dear Louisa must be careful of that cough' remarked Miss Tox.\n\n'It's nothing,' returned Mrs Chic 'It's merely change of weather.\nWe must expect change.'\n\n'Of weather?' asked Miss Tox, in her simplicity.\n\n'Of everything' returned Mrs Chick 'Of course we must. It's a world\nof change. Anyone would surprise me very much, Lucretia, and would\ngreatly alter my opinion of their understanding, if they attempted to\ncontradict or evade what is so perfectly evident. Change!' exclaimed\nMrs Chick, with severe philosophy. 'Why, my gracious me, what is there\nthat does not change! even the silkworm, who I am sure might be\nsupposed not to trouble itself about such subjects, changes into all\nsorts of unexpected things continually.'\n\n'My Louisa,' said the mild Miss Tox, 'is ever happy in her\nillustrations.'\n\n'You are so kind, Lucretia,' returned Mrs Chick, a little softened,\n'as to say so, and to think so, I believe. I hope neither of us may\never have any cause to lessen our opinion of the other, Lucretia.'\n\n'I am sure of it,' returned Miss Tox.\n\nMrs Chick coughed as before, and drew lines on the carpet with the\nivory end of her parasol. Miss Tox, who had experience of her fair\nfriend, and knew that under the pressure of any slight fatigue or\nvexation she was prone to a discursive kind of irritability, availed\nherself of the pause, to change the subject.\n\n'Pardon me, my dear Louisa,' said Miss Tox, 'but have I caught\nsight of the manly form of Mr Chick in the carriage?'\n\n'He is there,' said Mrs Chick, 'but pray leave him there. He has\nhis newspaper, and would be quite contented for the next two hours. Go\non with your flowers, Lucretia, and allow me to sit here and rest.'\n\n'My Louisa knows,' observed Miss Tox, 'that between friends like\nourselves, any approach to ceremony would be out of the question.\nTherefore - ' Therefore Miss Tox finished the sentence, not in words\nbut action; and putting on her gloves again, which she had taken off,\nand arming herself once more with her scissors, began to snip and clip\namong the leaves with microscopic industry.\n\n'Florence has returned home also,' said Mrs Chick, after sitting\nsilent for some time, with her head on one side, and her parasol\nsketching on the floor; 'and really Florence is a great deal too old\nnow, to continue to lead that solitary life to which she has been\naccustomed. Of course she is. There can be no doubt about it. I should\nhave very little respect, indeed, for anybody who could advocate a\ndifferent opinion. Whatever my wishes might be, I could not respect\nthem. We cannot command our feelings to such an extent as that.'\n\nMiss Tox assented, without being particular as to the\nintelligibility of the proposition.\n\n'If she's a strange girl,' said Mrs Chick, 'and if my brother Paul\ncannot feel perfectly comfortable in her society, after all the sad\nthings that have happened, and all the terrible disappointments that\nhave been undergone, then, what is the reply? That he must make an\neffort. That he is bound to make an effort. We have always been a\nfamily remarkable for effort. Paul is at the head of the family;\nalmost the only representative of it left - for what am I - I am of no\nconsequence - '\n\n'My dearest love,' remonstrated Miss Tox.\n\nMrs Chick dried her eyes, which were, for the moment, overflowing;\nand proceeded:\n\n'And consequently he is more than ever bound to make an effort. And\nthough his having done so, comes upon me with a sort of shock - for\nmine is a very weak and foolish nature; which is anything but a\nblessing I am sure; I often wish my heart was a marble slab, or a\npaving-stone -\n\n'My sweet Louisa,' remonstrated Miss Tox again.\n\n'Still, it is a triumph to me to know that he is so true to\nhimself, and to his name of Dombey; although, of course, I always knew\nhe would be. I only hope,' said Mrs Chick, after a pause, 'that she\nmay be worthy of the name too.\n\nMiss Tox filled a little green watering-pot from a jug, and\nhappening to look up when she had done so, was so surprised by the\namount of expression Mrs Chick had conveyed into her face, and was\nbestowing upon her, that she put the little watering-pot on the table\nfor the present, and sat down near it.\n\n'My dear Louisa,' said Miss Tox, 'will it be the least satisfaction\nto you, if I venture to observe in reference to that remark, that I,\nas a humble individual, think your sweet niece in every way most\npromising?~ 'What do you mean, Lucretia?' returned Mrs Chick, with\nincreased stateliness of manner. 'To what remark of mine, my dear, do\nyou refer?'\n\n'Her being worthy of her name, my love,' replied Miss Tox.\n\n'If,' said Mrs Chick, with solemn patience, 'I have not expressed\nmyself with clearness, Lucretia, the fault of course is mine. There\nis, perhaps, no reason why I should express myself at all, except the\nintimacy that has subsisted between us, and which I very much hope,\nLucretia - confidently hope - nothing will occur to disturb. Because,\nwhy should I do anything else? There is no reason; it would be absurd.\nBut I wish to express myself clearly, Lucretia; and therefore to go\nback to that remark, I must beg to say that it was not intended to\nrelate to Florence, in any way.'\n\n'Indeed!' returned Miss Tox.\n\n'No,' said Mrs Chick shortly and decisively.\n\n'Pardon me, my dear,' rejoined her meek friend; 'but I cannot have\nunderstood it. I fear I am dull.'\n\nMrs Chick looked round the room and over the way; at the plants, at\nthe bird, at the watering-pot, at almost everything within view,\nexcept Miss Tox; and finally dropping her glance upon Miss Tox, for a\nmoment, on its way to the ground, said, looking meanwhile with\nelevated eyebrows at the carpet:\n\n'When I speak, Lucretia, of her being worthy of the name, I speak\nof my brother Paul's second wife. I believe I have already said, in\neffect, if not in the very words I now use, that it is his intention\nto marry a second wife.'\n\nMiss Tox left her seat in a hurry, and returned to her plants;\nclipping among the stems and leaves, with as little favour as a barber\nworking at so many pauper heads of hair.\n\n'Whether she will be fully sensible of the distinction conferred\nupon her,' said Mrs Chick, in a lofty tone, 'is quite another\nquestion. I hope she may be. We are bound to think well of one another\nin this world, and I hope she may be. I have not been advised with\nmyself If I had been advised with, I have no doubt my advice would\nhave been cavalierly received, and therefore it is infinitely better\nas it is. I much prefer it as it is.'\n\nMiss Tox, with head bent down, still clipped among the plants. Mrs\nChick, with energetic shakings of her own head from time to time,\ncontinued to hold forth, as if in defiance of somebody. 'If my brother\nPaul had consulted with me, which he sometimes does - or rather,\nsometimes used to do; for he will naturally do that no more now, and\nthis is a circumstance which I regard as a relief from\nresponsibility,' said Mrs Chick, hysterically, 'for I thank Heaven I\nam not jealous - ' here Mrs Chick again shed tears: 'if my brother\nPaul had come to me, and had said, \"Louisa, what kind of qualities\nwould you advise me to look out for, in a wife?\" I should certainly\nhave answered, \"Paul, you must have family, you must have beauty, you\nmust have dignity, you must have connexion.\" Those are the words I\nshould have used. You might have led me to the block immediately\nafterwards,' said Mrs Chick, as if that consequence were highly\nprobable, 'but I should have used them. I should have said, \"Paul! You\nto marry a second time without family! You to marry without beauty!\nYou to marry without dignity! You to marry without connexion! There is\nnobody in the world, not mad, who could dream of daring to entertain\nsuch a preposterous idea!\"'\n\nMiss Tox stopped clipping; and with her head among the plants,\nlistened attentively. Perhaps Miss Tox thought there was hope in this\nexordium, and the warmth of Mrs Chick.\n\nI should have adopted this course of argument,' pursued the\ndiscreet lady, 'because I trust I am not a fool. I make no claim to be\nconsidered a person of superior intellect - though I believe some\npeople have been extraordinary enough to consider me so; one so little\nhumoured as I am, would very soon be disabused of any such notion; but\nI trust I am not a downright fool. And to tell ME,' said Mrs Chick\nwith ineffable disdain, 'that my brother Paul Dombey could ever\ncontemplate the possibility of uniting himself to anybody - I don't\ncare who' - she was more sharp and emphatic in that short clause than\nin any other part of her discourse - 'not possessing these requisites,\nwould be to insult what understanding I have got, as much as if I was\nto be told that I was born and bred an elephant, which I may be told\nnext,' said Mrs Chick, with resignation. 'It wouldn't surprise me at\nall. I expect it.'\n\nIn the moment's silence that ensued, Miss Tox's scissors gave a\nfeeble clip or two; but Miss Tox's face was still invisible, and Miss\nTox's morning gown was agitated. Mrs Chick looked sideways at her,\nthrough the intervening plants, and went on to say, in a tone of bland\nconviction, and as one dwelling on a point of fact that hardly\nrequired to be stated:\n\n'Therefore, of course my brother Paul has done what was to be\nexpected of him, and what anybody might have foreseen he would do, if\nhe entered the marriage state again. I confess it takes me rather by\nsurprise, however gratifying; because when Paul went out of town I had\nno idea at all that he would form any attachment out of town, and he\ncertainly had no attachment when he left here. However, it seems to be\nextremely desirable in every point of view. I have no doubt the mother\nis a most genteel and elegant creature, and I have no right whatever\nto dispute the policy of her living with them: which is Paul's affair,\nnot mine - and as to Paul's choice, herself, I have only seen her\npicture yet, but that is beautiful indeed. Her name is beautiful too,'\nsaid Mrs Chick, shaking her head with energy, and arranging herself in\nher chair; 'Edith is at once uncommon, as it strikes me, and\ndistinguished. Consequently, Lucretia, I have no doubt you will be\nhappy to hear that the marriage is to take place immediately - of\ncourse, you will:' great emphasis again: 'and that you are delighted\nwith this change in the condition of my brother, who has shown you a\ngreat deal of pleasant attention at various times.'\n\nMiss Tox made no verbal answer, but took up the little watering-pot\nwith a trembling hand, and looked vacantly round as if considering\nwhat article of furniture would be improved by the contents. The room\ndoor opening at this crisis of Miss Tox's feelings, she started,\nlaughed aloud, and fell into the arms of the person entering; happily\ninsensible alike of Mrs Chick's indignant countenance and of the Major\nat his window over the way, who had his double-barrelled eye-glass in\nfull action, and whose face and figure were dilated with\nMephistophelean joy.\n\nNot so the expatriated Native, amazed supporter of Miss Tox's\nswooning form, who, coming straight upstairs, with a polite inquiry\ntouching Miss Tox's health (in exact pursuance of the Major's\nmalicious instructions), had accidentally arrived in the very nick of\ntime to catch the delicate burden in his arms, and to receive the\ncontent' of the little watering-pot in his shoe; both of which\ncircumstances, coupled with his consciousness of being closely watched\nby the wrathful Major, who had threatened the usual penalty in regard\nof every bone in his skin in case of any failure, combined to render\nhim a moving spectacle of mental and bodily distress.\n\nFor some moments, this afflicted foreigner remained clasping Miss\nTox to his heart, with an energy of action in remarkable opposition to\nhis disconcerted face, while that poor lady trickled slowly down upon\nhim the very last sprinklings of the little watering-pot, as if he\nwere a delicate exotic (which indeed he was), and might be almost\nexpected to blow while the gentle rain descended. Mrs Chick, at length\nrecovering sufficient presence of mind to interpose, commanded him to\ndrop Miss Tox upon the sofa and withdraw; and the exile promptly\nobeying, she applied herself to promote Miss Tox's recovery.\n\nBut none of that gentle concern which usually characterises the\ndaughters of Eve in their tending of each other; none of that\nfreemasonry in fainting, by which they are generally bound together In\na mysterious bond of sisterhood; was visible in Mrs Chick's demeanour.\nRather like the executioner who restores the victim to sensation\nprevious to proceeding with the torture (or was wont to do so, in the\ngood old times for which all true men wear perpetual mourning), did\nMrs Chick administer the smelling-bottle, the slapping on the hands,\nthe dashing of cold water on the face, and the other proved remedies.\nAnd when, at length, Miss Tox opened her eyes, and gradually became\nrestored to animation and consciousness, Mrs Chick drew off as from a\ncriminal, and reversing the precedent of the murdered king of Denmark,\nregarded her more in anger than In sorrow.'\n\n'Lucretia!' said Mrs Chick 'I will not attempt to disguise what I\nfeel. My eyes are opened, all at once. I wouldn't have believed this,\nif a Saint had told it to me.\n\n'I am foolish to give way to faintness,' Miss Tox faltered. 'I\nshall be better presently.'\n\n'You will be better presently, Lucretia!' repeated Mrs Chick, with\nexceeding scorn. 'Do you suppose I am blind? Do you imagine I am in my\nsecond childhood? No, Lucretia! I am obliged to you!'\n\nMiss Tox directed an imploring, helpless kind of look towards her\nfriend, and put her handkerchief before her face.\n\n'If anyone had told me this yesterday,' said Mrs Chick, with\nmajesty, 'or even half-an-hour ago, I should have been tempted, I\nalmost believe, to strike them to the earth. Lucretia Tox, my eyes are\nopened to you all at once. The scales:' here Mrs Chick cast down an\nimaginary pair, such as are commonly used in grocers' shops: 'have\nfallen from my sight. The blindness of my confidence is past,\nLucretia. It has been abused and played, upon, and evasion is quite\nout of the question now, I assure you.\n\n'Oh! to what do you allude so cruelly, my love?' asked Miss Tox,\nthrough her tears.\n\n'Lucretia,' said Mrs Chick, 'ask your own heart. I must entreat you\nnot to address me by any such familiar term as you have just used, if\nyou please. I have some self-respect left, though you may think\notherwise.'\n\n'Oh, Louisa!' cried Miss Tox. 'How can you speak to me like that?'\n\n'How can I speak to you like that?' retorted Mrs Chick, who, in\ndefault of having any particular argument to sustain herself upon,\nrelied principally on such repetitions for her most withering effects.\n'Like that! You may well say like that, indeed!'\n\nMiss Tox sobbed pitifully.\n\n'The idea!' said Mrs Chick, 'of your having basked at my brother's\nfireside, like a serpent, and wound yourself, through me, almost into\nhis confidence, Lucretia, that you might, in secret, entertain designs\nupon him, and dare to aspire to contemplate the possibility of his\nuniting himself to you! Why, it is an idea,' said Mrs Chick, with\nsarcastic dignity, 'the absurdity of which almost relieves its\ntreachery.'\n\n'Pray, Louisa,' urged Miss Tox, 'do not say such dreadful things.'\n\n'Dreadful things!' repeated Mrs Chick. 'Dreadful things! Is it not\na fact, Lucretia, that you have just now been unable to command your\nfeelings even before me, whose eyes you had so completely closed?'\n\n'I have made no complaint,' sobbed Miss Tox. 'I have said nothing.\nIf I have been a little overpowered by your news, Louisa, and have\never had any lingering thought that Mr Dombey was inclined to be\nparticular towards me, surely you will not condemn me.'\n\n'She is going to say,' said Mrs Chick, addressing herself to the\nwhole of the furniture, in a comprehensive glance of resignation and\nappeal, 'She is going to say - I know it - that I have encouraged\nher!'\n\n'I don't wish to exchange reproaches, dear Louisa,' sobbed Miss Tox\n'Nor do I wish to complain. But, in my own defence - '\n\n'Yes,' cried Mrs Chick, looking round the room with a prophetic\nsmile, 'that's what she's going to say. I knew it. You had better say\nit. Say it openly! Be open, Lucretia Tox,' said Mrs Chick, with\ndesperate sternness, 'whatever you are.'\n\n'In my own defence,' faltered Miss Tox, 'and only In my own defence\nagainst your unkind words, my dear Louisa, I would merely ask you if\nyou haven't often favoured such a fancy, and even said it might\nhappen, for anything we could tell?'\n\n'There is a point,' said Mrs Chick, rising, not as if she were\ngoing to stop at the floor, but as if she were about to soar up, high,\ninto her native skies, 'beyond which endurance becomes ridiculous, if\nnot culpable. I can bear much; but not too much. What spell was on me\nwhen I came into this house this day, I don't know; but I had a\npresentiment - a dark presentiment,' said Mrs Chick, with a shiver,\n'that something was going to happen. Well may I have had that\nforeboding, Lucretia, when my confidence of many years is destroyed in\nan instant, when my eyes are opened all at once, and when I find you\nrevealed in your true colours. Lucretia, I have been mistaken in you.\nIt is better for us both that this subject should end here. I wish you\nwell, and I shall ever wish you well. But, as an individual who\ndesires to be true to herself in her own poor position, whatever that\nposition may be, or may not be - and as the sister of my brother - and\nas the sister-in-law of my brother's wife - and as a connexion by\nmarriage of my brother's wife's mother - may I be permitted to add, as\na Dombey? - I can wish you nothing else but good morning.'\n\nThese words, delivered with cutting suavity, tempered and chastened\nby a lofty air of moral rectitude, carried the speaker to the door.\nThere she inclined her head in a ghostly and statue-like manner, and\nso withdrew to her carriage, to seek comfort and consolation in the\narms of Mr Chick, her lord.\n\nFiguratively speaking, that is to say; for the arms of Mr Chick\nwere full of his newspaper. Neither did that gentleman address his\neyes towards his wife otherwise than by stealth. Neither did he offer\nany consolation whatever. In short, he sat reading, and humming fag\nends of tunes, and sometimes glancing furtively at her without\ndelivering himself of a word, good, bad, or indifferent.\n\nIn the meantime Mrs Chick sat swelling and bridling, and tossing\nher head, as if she were still repeating that solemn formula of\nfarewell to Lucretia Tox. At length, she said aloud, 'Oh the extent to\nwhich her eyes had been opened that day!'\n\n'To which your eyes have been opened, my dear!' repeated Mr Chick.\n\n'Oh, don't talk to me!' said Mrs Chic 'if you can bear to see me in\nthis state, and not ask me what the matter is, you had better hold\nyour tongue for ever.'\n\n'What is the matter, my dear?' asked Mr Chick\n\n'To think,' said Mrs Chick, in a state of soliloquy, 'that she\nshould ever have conceived the base idea of connecting herself with\nour family by a marriage with Paul! To think that when she was playing\nat horses with that dear child who is now in his grave - I never liked\nit at the time - she should have been hiding such a double-faced\ndesign! I wonder she was never afraid that something would happen to\nher. She is fortunate if nothing does.'\n\n'I really thought, my dear,' said Mr Chick slowly, after rubbing\nthe bridge of his nose for some time with his newspaper, 'that you had\ngone on the same tack yourself, all along, until this morning; and had\nthought it would be a convenient thing enough, if it could have been\nbrought about.'\n\nMrs Chick instantly burst into tears, and told Mr Chick that if he\nwished to trample upon her with his boots, he had better do It.\n\n'But with Lucretia Tox I have done,' said Mrs Chick, after\nabandoning herself to her feelings for some minutes, to Mr Chick's\ngreat terror. 'I can bear to resign Paul's confidence in favour of one\nwho, I hope and trust, may be deserving of it, and with whom he has a\nperfect right to replace poor Fanny if he chooses; I can bear to be\ninformed, In Paul's cool manner, of such a change in his plans, and\nnever to be consulted until all is settled and determined; but deceit\nI can not bear, and with Lucretia Tox I have done. It is better as it\nis,' said Mrs Chick, piously; 'much better. It would have been a long\ntime before I could have accommodated myself comfortably with her,\nafter this; and I really don't know, as Paul is going to be very\ngrand, and these are people of condition, that she would have been\nquite presentable, and might not have compromised myself. There's a\nprovidence in everything; everything works for the best; I have been\ntried today but on the whole I do not regret it.'\n\nIn which Christian spirit, Mrs Chick dried her eyes and smoothed\nher lap, and sat as became a person calm under a great wrong. Mr Chick\nfeeling his unworthiness no doubt, took an early opportunity of being\nset down at a street corner and walking away whistling, with his\nshoulders very much raised, and his hands in his pockets.\n\nWhile poor excommunicated Miss Tox, who, if she were a fawner and\ntoad-eater, was at least an honest and a constant one, and had ever\nborne a faithful friendship towards her impeacher and had been truly\nabsorbed and swallowed up in devotion to the magnificence of Mr Dombey\n- while poor excommunicated Miss Tox watered her plants with her\ntears, and felt that it was winter in Princess's Place.\n\n\n\nCHAPTER 30.\n\nThe interval before the Marriage\n\n\n\nAlthough the enchanted house was no more, and the working world had\nbroken into it, and was hammering and crashing and tramping up and\ndown stairs all day long keeping Diogenes in an incessant paroxysm of\nbarking, from sunrise to sunset - evidently convinced that his enemy\nhad got the better of him at last, and was then sacking the premises\nin triumphant defiance - there was, at first, no other great change in\nthe method of Florence's life. At night, when the workpeople went\naway, the house was dreary and deserted again; and Florence, listening\nto their voices echoing through the hall and staircase as they\ndeparted, pictured to herself the cheerful homes to which the were\nreturning, and the children who were waiting for them, and was glad to\nthink that they were merry and well pleased to go.\n\nShe welcomed back the evening silence as an old friend, but it came\nnow with an altered face, and looked more kindly on her. Fresh hope\nwas in it. The beautiful lady who had soothed and carressed her, in\nthe very room in which her heart had been so wrung, was a spirit of\npromise to her. Soft shadows of the bright life dawning, when her\nfather's affection should be gradually won, and all, or much should be\nrestored, of what she had lost on the dark day when a mother's love\nhad faded with a mother's last breath on her cheek, moved about her in\nthe twilight and were welcome company. Peeping at the rosy children\nher neighbours, it was a new and precious sensation to think that they\nmight soon speak together and know each other; when she would not\nfear, as of old, to show herself before them, lest they should be\ngrieved to see her in her black dress sitting there alone!\n\nIn her thoughts of her new mother, and in the love and trust\noverflowing her pure heart towards her, Florence loved her own dead\nmother more and more. She had no fear of setting up a rival in her\nbreast. The new flower sprang from the deep-planted and long-cherished\nroot, she knew. Every gentle word that had fallen from the lips of the\nbeautiful lady, sounded to Florence like an echo of the voice long\nhushed and silent. How could she love that memory less for living\ntenderness, when it was her memory of all parental tenderness and\nlove!\n\nFlorence was, one day, sitting reading in her room, and thinking of\nthe lady and her promised visit soon - for her book turned on a\nkindred subject - when, raising her eyes, she saw her standing in the\ndoorway.\n\n'Mama!' cried Florence, joyfully meeting her. 'Come again!'\n\n'Not Mama yet,' returned the lady, with a serious smile, as she\nencircled Florence's neck with her arm.\n\n'But very soon to be,' cried Florence.\n\n'Very soon now, Florence: very soon.\n\nEdith bent her head a little, so as to press the blooming cheek of\nFlorence against her own, and for some few moments remained thus\nsilent. There was something so very tender in her manner, that\nFlorence was even more sensible of it than on the first occasion of\ntheir meeting.\n\nShe led Florence to a chair beside her, and sat down: Florence\nlooking in her face, quite wondering at its beauty, and willingly\nleaving her hand In hers.\n\n'Have you been alone, Florence, since I was here last?'\n\n'Oh yes!' smiled Florence, hastily.\n\nShe hesitated and cast down her eyes; for her new Mama was very\nearnest in her look, and the look was intently and thoughtfully fixed\nupon her face.\n\n'I - I- am used to be alone,' said Florence. 'I don't mind it at\nall. Di and I pass whole days together, sometimes.' Florence might\nhave said, whole weeks and months.\n\n'Is Di your maid, love?'\n\n'My dog, Mama,' said Florence, laughing. 'Susan is my maid.'\n\n'And these are your rooms,' said Edith, looking round. 'I was not\nshown these rooms the other day. We must have them improved, Florence.\nThey shall be made the prettiest in the house.'\n\n'If I might change them, Mama,' returned Florence; 'there is one\nupstairs I should like much better.'\n\n'Is this not high enough, dear girl?' asked Edith, smiling.\n\n'The other was my brother's room,' said Florence, 'and I am very\nfond of it. I would have spoken to Papa about it when I came home, and\nfound the workmen here, and everything changing; but - '\n\nFlorence dropped her eyes, lest the same look should make her\nfalter again.\n\n'but I was afraid it might distress him; and as you said you would\nbe here again soon, Mama, and are the mistress of everything, I\ndetermined to take courage and ask you.'\n\nEdith sat looking at her, with her brilliant eyes intent upon her\nface, until Florence raising her own, she, in her turn, withdrew her\ngaze, and turned it on the ground. It was then that Florence thought\nhow different this lady's beauty was, from what she had supposed. She\nhad thought it of a proud and lofty kind; yet her manner was so\nsubdued and gentle, that if she had been of Florence's own age and\ncharacter, it scarcely could have invited confidence more.\n\nExcept when a constrained and singular reserve crept over her; and\nthen she seemed (but Florence hardly understood this, though she could\nnot choose but notice it, and think about it) as if she were humbled\nbefore Florence, and ill at ease. When she had said that she was not\nher Mama yet, and when Florence had called her the mistress of\neverything there, this change in her was quick and startling; and now,\nwhile the eyes of Florence rested on her face, she sat as though she\nwould have shrunk and hidden from her, rather than as one about to\nlove and cherish her, in right of such a near connexion.\n\nShe gave Florence her ready promise, about her new room, and said\nshe would give directions about it herself. She then asked some\nquestions concerning poor Paul; and when they had sat in conversation\nfor some time, told Florence she had come to take her to her own home.\n\n'We have come to London now, my mother and I,' said Edith, 'and you\nshall stay with us until I am married. I wish that we should know and\ntrust each other, Florence.'\n\n'You are very kind to me,' said Florence, 'dear Mama. How much I\nthank you!'\n\n'Let me say now, for it may be the best opportunity,' continued\nEdith, looking round to see that they were quite alone, and speaking\nin a lower voice, 'that when I am married, and have gone away for some\nweeks, I shall be easier at heart if you will come home here. No\nmatter who invites you to stay elsewhere. Come home here. It is better\nto be alone than - what I would say is,' she added, checking herself,\n'that I know well you are best at home, dear Florence.'\n\n'I will come home on the very day, Mama'\n\n'Do so. I rely on that promise. Now, prepare to come with me, dear\ngirl. You will find me downstairs when you are ready.'\n\nSlowly and thoughtfully did Edith wander alone through the mansion\nof which she was so soon to be the lady: and little heed took she of\nall the elegance and splendour it began to display. The same\nindomitable haughtiness of soul, the same proud scorn expressed in eye\nand lip, the same fierce beauty, only tamed by a sense of its own\nlittle worth, and of the little worth of everything around it, went\nthrough the grand saloons and halls, that had got loose among the\nshady trees, and raged and rent themselves. The mimic roses on the\nwalls and floors were set round with sharp thorns, that tore her\nbreast; in every scrap of gold so dazzling to the eye, she saw some\nhateful atom of her purchase-money; the broad high mirrors showed her,\nat full length, a woman with a noble quality yet dwelling in her\nnature, who was too false to her better self, and too debased and\nlost, to save herself. She believed that all this was so plain, more\nor less, to all eyes, that she had no resource or power of\nself-assertion but in pride: and with this pride, which tortured her\nown heart night and day, she fought her fate out, braved it, and\ndefied it.\n\nWas this the woman whom Florence - an innocent girl, strong only in\nher earnestness and simple truth - could so impress and quell, that by\nher side she was another creature, with her tempest of passion hushed,\nand her very pride itself subdued? Was this the woman who now sat\nbeside her in a carriage, with her arms entwined, and who, while she\ncourted and entreated her to love and trust her, drew her fair head to\nnestle on her breast, and would have laid down life to shield it from\nwrong or harm?\n\nOh, Edith! it were well to die, indeed, at such a time! Better and\nhappier far, perhaps, to die so, Edith, than to live on to the end!\n\nThe Honourable Mrs Skewton, who was thinking of anything rather\nthan of such sentiments - for, like many genteel persons who have\nexisted at various times, she set her face against death altogether,\nand objected to the mention of any such low and levelling upstart -\nhad borrowed a house in Brook Street, Grosvenor Square, from a stately\nrelative (one of the Feenix brood), who was out of town, and who did\nnot object to lending it, in the handsomest manner, for nuptial\npurposes, as the loan implied his final release and acquittance from\nall further loans and gifts to Mrs Skewton and her daughter. It being\nnecessary for the credit of the family to make a handsome appearance\nat such a time, Mrs Skewton, with the assistance of an accommodating\ntradesman resident In the parish of Mary-le-bone, who lent out all\nsorts of articles to the nobility and gentry, from a service of plate\nto an army of footmen, clapped into this house a silver-headed butler\n(who was charged extra on that account, as having the appearnce of an\nancient family retainer), two very tall young men in livery, and a\nselect staff of kitchen-servants; so that a legend arose, downstairs,\nthat Withers the page, released at once from his numerous household\nduties, and from the propulsion of the wheeled-chair (inconsistent\nwith the metropolis), had been several times observed to rub his eyes\nand pinch his limbs, as if he misdoubted his having overslept himself\nat the Leamington milkman's, and being still in a celestial dream. A\nvariety of requisites in plate and china being also conveyed to the\nsame establishment from the same convenient source, with several\nmiscellaneous articles, including a neat chariot and a pair of bays,\nMrs Skewton cushioned herself on the principal sofa, in the Cleopatra\nattitude, and held her court in fair state.\n\n'And how,' said Mrs Skewton, on the entrance of her daughter and\nher charge, 'is my charming Florence? You must come and kiss me,\nFlorence, if you please, my love.'\n\nFlorence was timidly stooping to pick out a place In the white part\nof Mrs Skewton's face, when that lady presented her ear, and relieved\nher of her difficulty.\n\n'Edith, my dear,' said Mrs Skewton, 'positively, I - stand a little\nmore in the light, my sweetest Florence, for a moment.\n\nFlorence blushingly complied.\n\n'You don't remember, dearest Edith,' said her mother, 'what you\nwere when you were about the same age as our exceedingly precious\nFlorence, or a few years younger?'\n\n'I have long forgotten, mother.'\n\n'For positively, my dear,' said Mrs Skewton, 'I do think that I see\na decided resemblance to what you were then, in our extremely\nfascinating young friend. And it shows,' said Mrs Skewton, in a lower\nvoice, which conveyed her opinion that Florence was in a very\nunfinished state, 'what cultivation will do.'\n\n'It does, indeed,' was Edith's stern reply.\n\nHer mother eyed her sharply for a moment, and feeling herself on\nunsafe ground, said, as a diversion:\n\n'My charming Florence, you must come and kiss me once more, if you\nplease, my love.'\n\nFlorence complied, of course, and again imprinted her lips on Mrs\nSkewton's ear.\n\n'And you have heard, no doubt, my darling pet,' said Mrs Skewton,\ndetaining her hand, 'that your Papa, whom we all perfectly adore and\ndote upon, is to be married to my dearest Edith this day week.'\n\n'I knew it would be very soon,' returned Florence, 'but not exactly\nwhen.'\n\n'My darling Edith,' urged her mother, gaily, 'is it possible you\nhave not told Florence?'\n\n'Why should I tell Florence?' she returned, so suddenly and\nharshly, that Florence could scarcely believe it was the same voice.\n\nMrs Skewton then told Florence, as another and safer diversion,\nthat her father was coming to dinner, and that he would no doubt be\ncharmingly surprised to see her; as he had spoken last night of\ndressing in the City, and had known nothing of Edith's design, the\nexecution of which, according to Mrs Skewton's expectation, would\nthrow him into a perfect ecstasy. Florence was troubled to hear this;\nand her distress became so keen, as the dinner-hour approached, that\nif she had known how to frame an entreaty to be suffered to return\nhome, without involving her father in her explanation, she would have\nhurried back on foot, bareheaded, breathless, and alone, rather than\nincur the risk of meeting his displeasure.\n\nAs the time drew nearer, she could hardly breathe. She dared not\napproach a window, lest he should see her from the street. She dared\nnot go upstairs to hide her emotion, lest, in passing out at the door,\nshe should meet him unexpectedly; besides which dread, she felt as\nthough she never could come back again if she were summoned to his\npresence. In this conflict of fears; she was sitting by Cleopatra's\ncouch, endeavouring to understand and to reply to the bald discourse\nof that lady, when she heard his foot upon the stair.\n\n'I hear him now!' cried Florence, starting. 'He is coming!'\n\nCleopatra, who in her juvenility was always playfully disposed, and\nwho in her self-engrossment did not trouble herself about the nature\nof this agitation, pushed Florence behind her couch, and dropped a\nshawl over her, preparatory to giving Mr Dombey a rapture of surprise.\nIt was so quickly done, that in a moment Florence heard his awful step\nin the room.\n\nHe saluted his intended mother-in-law, and his intended bride. The\nstrange sound of his voice thrilled through the whole frame of his\nchild.\n\n'My dear Dombey,' said Cleopatra, 'come here and tell me how your\npretty Florence is.'\n\n'Florence is very well,' said Mr Dombey, advancing towards the\ncouch.\n\n'At home?'\n\n'At home,' said Mr Dombey.\n\n'My dear Dombey,' returned Cleopatra, with bewitching vivacity;\n'now are you sure you are not deceiving me? I don't know what my\ndearest Edith will say to me when I make such a declaration, but upon\nmy honour I am afraid you are the falsest of men, my dear Dombey.'\n\nThough he had been; and had been detected on the spot, in the most\nenormous falsehood that was ever said or done; he could hardly have\nbeen more disconcerted than he was, when Mrs Skewton plucked the shawl\naway, and Florence, pale and trembling, rose before him like a ghost.\nHe had not yet recovered his presence of mind, when Florence had run\nup to him, clasped her hands round his neck, kissed his face, and\nhurried out of the room. He looked round as if to refer the matter to\nsomebody else, but Edith had gone after Florence, instantly.\n\n'Now, confess, my dear Dombey,' said Mrs Skewton, giving him her\nhand, 'that you never were more surprised and pleased in your life.'\n\n'I never was more surprised,' said Mr Dombey.\n\n'Nor pleased, my dearest Dombey?' returned Mrs Skewton, holding up\nher fan.\n\n'I - yes, I am exceedingly glad to meet Florence here,' said Mr\nDombey. He appeared to consider gravely about it for a moment, and\nthen said, more decidedly, 'Yes, I really am very glad indeed to meet\nFlorence here.'\n\n'You wonder how she comes here?' said Mrs Skewton, 'don't you?'\n\n'Edith, perhaps - ' suggested Mr Dombey.\n\n'Ah! wicked guesser!' replied Cleopatra, shaking her head. 'Ah!\ncunning, cunning man! One shouldn't tell these things; your sex, my\ndear Dombey, are so vain, and so apt to abuse our weakness; but you\nknow my open soul - very well; immediately.'\n\nThis was addressed to one of the very tall young men who announced\ndinner.\n\n'But Edith, my dear Dombey,' she continued in a whisper, when she\ncannot have you near her - and as I tell her, she cannot expect that\nalways - will at least have near her something or somebody belonging\nto you. Well, how extremely natural that is! And in this spirit,\nnothing would keep her from riding off to-day to fetch our darling\nFlorence. Well, how excessively charming that is!'\n\nAs she waited for an answer, Mr Dombey answered, 'Eminently so.\n\n'Bless you, my dear Dombey, for that proof of heart!' cried\nCleopatra, squeezing his hand. 'But I am growing too serious! Take me\ndownstairs, like an angel, and let us see what these people intend to\ngive us for dinner. Bless you, dear Dombey!'\n\nCleopatra skipping off her couch with tolerable briskness, after\nthe last benediction, Mr Dombey took her arm in his and led her\nceremoniously downstairs; one of the very tall young men on hire,\nwhose organ of veneration was imperfectly developed, thrusting his\ntongue into his cheek, for the entertainment of the other very tall\nyoung man on hire, as the couple turned into the dining-room.\n\nFlorence and Edith were already there, and sitting side by side.\nFlorence would have risen when her father entered, to resign her chair\nto him; but Edith openly put her hand upon her arm, and Mr Dombey took\nan opposite place at the round table.\n\nThe conversation was almost entirely sustained by Mrs Skewton.\nFlorence hardly dared to raise her eyes, lest they should reveal the\ntraces of tears; far less dared to speak; and Edith never uttered one\nword, unless in answer to a question. Verily, Cleopatra worked hard,\nfor the establishment that was so nearly clutched; and verily it\nshould have been a rich one to reward her!\n\nAnd so your preparations are nearly finished at last, my dear\nDombey?' said Cleopatra, when the dessert was put upon the table, and\nthe silver-headed butler had withdrawn. 'Even the lawyers'\npreparations!'\n\n'Yes, madam,' replied Mr Dombey; 'the deed of settlement, the\nprofessional gentlemen inform me, is now ready, and as I was\nmentioning to you, Edith has only to do us the favour to suggest her\nown time for its execution.'\n\nEdith sat like a handsome statue; as cold, as silent, and as still.\n\n'My dearest love,' said Cleopatra, 'do you hear what Mr Dombey\nsays? Ah, my dear Dombey!' aside to that gentleman, 'how her absence,\nas the time approaches, reminds me of the days, when that most\nagreeable of creatures, her Papa, was in your situation!'\n\n'I have nothing to suggest. It shall be when you please,' said\nEdith, scarcely looking over the table at Mr Dombey.\n\n'To-morrow?' suggested Mr Dombey.\n\n'If you please.'\n\n'Or would next day,' said Mr Dombey, 'suit your engagements\nbetter?'\n\n'I have no engagements. I am always at your disposal. Let it be\nwhen you like.'\n\n'No engagements, my dear Edith!' remonstrated her mother, 'when you\nare in a most terrible state of flurry all day long, and have a\nthousand and one appointments with all sorts of trades-people!'\n\n'They are of your making,' returned Edith, turning on her with a\nslight contraction of her brow. 'You and Mr Dombey can arrange between\nyou.'\n\n'Very true indeed, my love, and most considerate of you!' said\nCleopatra. 'My darling Florence, you must really come and kiss me once\nmore, if you please, my dear!'\n\nSingular coincidence, that these gushes of interest In Florence\nhurried Cleopatra away from almost every dialogue in which Edith had a\nshare, however trifling! Florence had certainly never undergone so\nmuch embracing, and perhaps had never been, unconsciously, so useful\nin her life.\n\nMr Dombey was far from quarrelling, in his own breast, with the\nmanner of his beautiful betrothed. He had that good reason for\nsympathy with haughtiness and coldness, which is found In a\nfellow-feeling. It flattered him to think how these deferred to him,\nin Edith's case, and seemed to have no will apart from his. It\nflattered him to picture to himself, this proud and stately woman\ndoing the honours of his house, and chilling his guests after his own\nmanner. The dignity of Dombey and Son would be heightened and\nmaintained, indeed, in such hands.\n\nSo thought Mr Dombey, when he was left alone at the dining-table,\nand mused upon his past and future fortunes: finding no uncongeniality\nin an air of scant and gloomy state that pervaded the room, in colour\na dark brown, with black hatchments of pictures blotching the walls,\nand twenty-four black chairs, with almost as many nails in them as so\nmany coffins, waiting like mutes, upon the threshold of the Turkey\ncarpet; and two exhausted negroes holding up two withered branches of\ncandelabra on the sideboard, and a musty smell prevailing as if the\nashes of ten thousand dinners were entombed in the sarcophagus below\nit. The owner of the house lived much abroad; the air of England\nseldom agreed long with a member of the Feenix family; and the room\nhad gradually put itself into deeper and still deeper mourning for\nhim, until it was become so funereal as to want nothing but a body in\nit to be quite complete.\n\nNo bad representation of the body, for the nonce, in his unbending\nform, if not in his attitude, Mr Dombey looked down into the cold\ndepths of the dead sea of mahogany on which the fruit dishes and\ndecanters lay at anchor: as if the subjects of his thoughts were\nrising towards the surface one by one, and plunging down again. Edith\nwas there In all her majesty of brow and figure; and close to her came\nFlorence, with her timid head turned to him, as it had been, for an\ninstant, when she left the room; and Edith's eyes upon her, and\nEdith's hand put out protectingly. A little figure in a low arm-chair\ncame springing next into the light, and looked upon him wonderingly,\nwith its bright eyes and its old-young face, gleaming as in the\nflickering of an evening fire. Again came Florence close upon it, and\nabsorbed his whole attention. Whether as a fore-doomed difficulty and\ndisappointment to him; whether as a rival who had crossed him in his\nway, and might again; whether as his child, of whom, in his successful\nwooing, he could stoop to think as claiming, at such a time, to be no\nmore estranged; or whether as a hint to him that the mere appearance\nof caring for his own blood should be maintained in his new relations;\nhe best knew. Indifferently well, perhaps, at best; for marriage\ncompany and marriage altars, and ambitious scenes - still blotted here\nand there with Florence - always Florence - turned up so fast, and so\nconfusedly, that he rose, and went upstairs to escape them.\n\nIt was quite late at night before candles were brought; for at\npresent they made Mrs Skewton's head ache, she complained; and in the\nmeantime Florence and Mrs Skewton talked together (Cleopatra being\nvery anxious to keep her close to herself), or Florence touched the\npiano softly for Mrs Skewton's delight; to make no mention of a few\noccasions in the course of the evening, when that affectionate lady\nwas impelled to solicit another kiss, and which always happened after\nEdith had said anything. They were not many, however, for Edith sat\napart by an open window during the whole time (in spite of her\nmother's fears that she would take cold), and remained there until Mr\nDombey took leave. He was serenely gracious to Florence when he did\nso; and Florence went to bed in a room within Edith's, so happy and\nhopeful, that she thought of her late self as if it were some other\npoor deserted girl who was to be pitied for her sorrow; and in her\npity, sobbed herself to sleep.\n\nThe week fled fast. There were drives to milliners, dressmakers,\njewellers, lawyers, florists, pastry-cooks; and Florence was always of\nthe party. Florence was to go to the wedding. Florence was to cast off\nher mourning, and to wear a brilliant dress on the occasion. The\nmilliner's intentions on the subject of this dress - the milliner was\na Frenchwoman, and greatly resembled Mrs Skewton - were so chaste and\nelegant, that Mrs Skewton bespoke one like it for herself. The\nmilliner said it would become her to admiration, and that all the\nworld would take her for the young lady's sister.\n\nThe week fled faster. Edith looked at nothing and cared for\nnothing. Her rich dresses came home, and were tried on, and were\nloudly commended by Mrs Skewton and the milliners, and were put away\nwithout a word from her. Mrs Skewton made their plans for every day,\nand executed them. Sometimes Edith sat in the carriage when they went\nto make purchases; sometimes, when it was absolutely necessary, she\nwent into the shops. But Mrs Skewton conducted the whole business,\nwhatever it happened to be; and Edith looked on as uninterested and\nwith as much apparent indifference as if she had no concern in it.\nFlorence might perhaps have thought she was haughty and listless, but\nthat she was never so to her. So Florence quenched her wonder in her\ngratitude whenever it broke out, and soon subdued it.\n\nThe week fled faster. It had nearly winged its flight away. The\nlast night of the week, the night before the marriage, was come. In\nthe dark room - for Mrs Skewton's head was no better yet, though she\nexpected to recover permanently to-morrow - were that lady, Edith, and\nMr Dombey. Edith was at her open window looking out into the street;\nMr Dombey and Cleopatra were talking softly on the sofa. It was\ngrowing late; and Florence, being fatigued, had gone to bed.\n\n'My dear Dombey,' said Cleopatra, 'you will leave me Florence\nto-morrow, when you deprive me of my sweetest Edith.'\n\nMr Dombey said he would, with pleasure.\n\n'To have her about me, here, while you are both at Paris, and to\nthink at her age, I am assisting in the formation of her mind, my dear\nDombey,' said Cleopatra, 'will be a perfect balm to me in the\nextremely shattered state to which I shall be reduced.'\n\nEdith turned her head suddenly. Her listless manner was exchanged,\nin a moment, to one of burning interest, and, unseen in the darkness,\nshe attended closely to their conversation.\n\nMr Dombey would be delighted to leave Florence in such admirable\nguardianship.\n\n'My dear Dombey,' returned Cleopatra, 'a thousand thanks for your\ngood opinion. I feared you were going, with malice aforethought' as\nthe dreadful lawyers say - those horrid proses! - to condemn me to\nutter solitude;'\n\n'Why do me so great an injustice, my dear madam?' said Mr Dombey.\n\n'Because my charming Florence tells me so positively she must go\nhome tomorrow, returned Cleopatra, that I began to be afraid, my\ndearest Dombey, you were quite a Bashaw.'\n\n'I assure you, madam!' said Mr Dombey, 'I have laid no commands on\nFlorence; and if I had, there are no commands like your wish.'\n\n'My dear Dombey,' replied Cleopatra, what a courtier you are!\nThough I'll not say so, either; for courtiers have no heart, and yours\npervades your farming life and character. And are you really going so\nearly, my dear Dombey!'\n\nOh, indeed! it was late, and Mr Dombey feared he must.\n\n'Is this a fact, or is it all a dream!' lisped Cleopatra. 'Can I\nbelieve, my dearest Dombey, that you are coming back tomorrow morning\nto deprive me of my sweet companion; my own Edith!'\n\nMr Dombey, who was accustomed to take things literally, reminded\nMrs Skewton that they were to meet first at the church.\n\n'The pang,' said Mrs Skewton, 'of consigning a child, even to you,\nmy dear Dombey, is one of the most excruciating imaginable, and\ncombined with a naturally delicate constitution, and the extreme\nstupidity of the pastry-cook who has undertaken the breakfast, is\nalmost too much for my poor strength. But I shall rally, my dear\nDombey, In the morning; do not fear for me, or be uneasy on my\naccount. Heaven bless you! My dearest Edith!' she cried archly.\n'Somebody is going, pet.'\n\nEdith, who had turned her head again towards the window, and whose\ninterest in their conversation had ceased, rose up in her place, but\nmade no advance towards him, and said nothing. Mr Dombey, with a lofty\ngallantry adapted to his dignity and the occasion, betook his creaking\nboots towards her, put her hand to his lips, said, 'Tomorrow morning I\nshall have the happiness of claiming this hand as Mrs Dombey's,' and\nbowed himself solemnly out.\n\nMrs Skewton rang for candles as soon as the house-door had closed\nupon him. With the candles appeared her maid, with the juvenile dress\nthat was to delude the world to-morrow. The dress had savage\nretribution in it, as such dresses ever have, and made her infinitely\nolder and more hideous than her greasy flannel gown. But Mrs Skewton\ntried it on with mincing satisfaction; smirked at her cadaverous self\nin the glass, as she thought of its killing effect upon the Major; and\nsuffering her maid to take it off again, and to prepare her for\nrepose, tumbled into ruins like a house of painted cards.\n\nAll this time, Edith remained at the dark window looking out into\nthe street. When she and her mother were at last left alone, she moved\nfrom it for the first time that evening, and came opposite to her. The\nyawning, shaking, peevish figure of the mother, with her eyes raised\nto confront the proud erect form of the daughter, whose glance of fire\nwas bent downward upon her, had a conscious air upon it, that no\nlevity or temper could conceal.\n\n'I am tired to death,' said she. 'You can't be trusted for a\nmoment. You are worse than a child. Child! No child would be half so\nobstinate and undutiful.'\n\n'Listen to me, mother,' returned Edith, passing these words by with\na scorn that would not descend to trifle with them. 'You must remain\nalone here until I return.'\n\n'Must remain alone here, Edith, until you return!' repeated her\nmother.\n\n'Or in that name upon which I shall call to-morrow to witness what\nI do, so falsely: and so shamefully, I swear I will refuse the hand of\nthis man in the church. If I do not, may I fall dead upon the\npavement!'\n\nThe mother answered with a look of quick alarm, in no degree\ndiminished by the look she met.\n\n'It is enough,' said Edith, steadily, 'that we are what we are. I\nwill have no youth and truth dragged down to my level. I will have no\nguileless nature undermined, corrupted, and perverted, to amuse the\nleisure of a world of mothers. You know my meaning. Florence must go\nhome.'\n\n'You are an idiot, Edith,' cried her angry mother. 'Do you expect\nthere can ever be peace for you in that house, till she is married,\nand away?'\n\n'Ask me, or ask yourself, if I ever expect peace in that house,'\nsaid her daughter, 'and you know the answer.\n\n'And am I to be told to-night, after all my pains and labour, and\nwhen you are going, through me, to be rendered independent,' her\nmother almost shrieked in her passion, while her palsied head shook\nlike a leaf, 'that there is corruption and contagion in me, and that I\nam not fit company for a girl! What are you, pray? What are you?'\n\n'I have put the question to myself,' said Edith, ashy pale, and\npointing to the window, 'more than once when I have been sitting\nthere, and something in the faded likeness of my sex has wandered past\noutside; and God knows I have met with my reply. Oh mother, mother, if\nyou had but left me to my natural heart when I too was a girl - a\nyounger girl than Florence - how different I might have been!'\n\nSensible that any show of anger was useless here, her mother\nrestrained herself, and fell a whimpering, and bewailed that she had\nlived too long, and that her only child had cast her off, and that\nduty towards parents was forgotten in these evil days, and that she\nhad heard unnatural taunts, and cared for life no longer.\n\n'If one is to go on living through continual scenes like this,' she\nwhined,'I am sure it would be much better for me to think of some\nmeans of putting an end to my existence. Oh! The idea of your being my\ndaughter, Edith, and addressing me in such a strain!'\n\n'Between us, mother,' returned Edith, mournfully, 'the time for\nmutual reproaches is past.\n\n'Then why do you revive it?' whimpered her mother. 'You know that\nyou are lacerating me in the cruellest manner. You know how sensitive\nI am to unkindness. At such a moment, too, when I have so much to\nthink of, and am naturally anxious to appear to the best advantage! I\nwonder at you, Edith. To make your mother a fright upon your\nwedding-day!'\n\nEdith bent the same fixed look upon her, as she sobbed and rubbed\nher eyes; and said in the same low steady voice, which had neither\nrisen nor fallen since she first addressed her, 'I have said that\nFlorence must go home.'\n\n'Let her go!' cried the afflicted and affrighted parent, hastily.\n'I am sure I am willing she should go. What is the girl to me?'\n\n'She is so much to me, that rather than communicate, or suffer to\nbe communicated to her, one grain of the evil that is in my breast,\nmother, I would renounce you, as I would (if you gave me cause)\nrenounce him in the church to-morrow,' replied Edith. 'Leave her\nalone. She shall not, while I can interpose, be tampered with and\ntainted by the lessons I have learned. This is no hard condition on\nthis bitter night.'\n\n'If you had proposed it in a filial manner, Edith,' whined her\nmother, 'perhaps not; very likely not. But such extremely cutting\nwords - '\n\n'They are past and at an end between us now,' said Edith. 'Take\nyour own way, mother; share as you please in what you have gained;\nspend, enjoy, make much of it; and be as happy as you will. The object\nof our lives is won. Henceforth let us wear it silently. My lips are\nclosed upon the past from this hour. I forgive you your part in\nto-morrow's wickedness. May God forgive my own!'\n\nWithout a tremor in her voice, or frame, and passing onward with a\nfoot that set itself upon the neck of every soft emotion, she bade her\nmother good-night, and repaired to her own room.\n\nBut not to rest; for there was no rest in the tumult of her\nagitation when alone to and fro, and to and fro, and to and fro again,\nfive hundred times, among the splendid preparations for her adornment\non the morrow; with her dark hair shaken down, her dark eyes flashing\nwith a raging light, her broad white bosom red with the cruel grasp of\nthe relentless hand with which she spurned it from her, pacing up and\ndown with an averted head, as if she would avoid the sight of her own\nfair person, and divorce herself from its companionship. Thus, In the\ndead time of the night before her bridal, Edith Granger wrestled with\nher unquiet spirit, tearless, friendless, silent, proud, and\nuncomplaining.\n\nAt length it happened that she touched the open door which led into\nthe room where Florence lay.\n\nShe started, stopped, and looked in.\n\nA light was burning there, and showed her Florence in her bloom of\ninnocence and beauty, fast asleep. Edith held her breath, and felt\nherself drawn on towards her.\n\nDrawn nearer, nearer, nearer yet; at last, drawn so near, that\nstooping down, she pressed her lips to the gentle hand that lay\noutside the bed, and put it softly to her neck. Its touch was like the\nprophet's rod of old upon the rock. Her tears sprung forth beneath it,\nas she sunk upon her knees, and laid her aching head and streaming\nhair upon the pillow by its side.\n\nThus Edith Granger passed the night before her bridal. Thus the sun\nfound her on her bridal morning.\n\n\n\nCHAPTER 31.\n\nThe Wedding\n\n\n\nDawn with its passionless blank face, steals shivering to the\nchurch beneath which lies the dust of little Paul and his mother, and\nlooks in at the windows. It is cold and dark. Night crouches yet, upon\nthe pavement, and broods, sombre and heavy, in nooks and corners of\nthe building. The steeple-clock, perched up above the houses, emerging\nfrom beneath another of the countless ripples in the tide of time that\nregularly roll and break on the eternal shore, is greyly visible, like\na stone beacon, recording how the sea flows on; but within doors,\ndawn, at first, can only peep at night, and see that it is there.\n\nHovering feebly round the church, and looking in, dawn moans and\nweeps for its short reign, and its tears trickle on the window-glass,\nand the trees against the church-wall bow their heads, and wring their\nmany hands in sympathy. Night, growing pale before it, gradually fades\nout of the church, but lingers in the vaults below, and sits upon the\ncoffins. And now comes bright day, burnishing the steeple-clock, and\nreddening the spire, and drying up the tears of dawn, and stifling its\ncomplaining; and the dawn, following the night, and chasing it from\nits last refuge, shrinks into the vaults itself and hides, with a\nfrightened face, among the dead, until night returns, refreshed, to\ndrive it out.\n\nAnd now, the mice, who have been busier with the prayer-books than\ntheir proper owners, and with the hassocks, more worn by their little\nteeth than by human knees, hide their bright eyes in their holes, and\ngather close together in affright at the resounding clashing of the\nchurch-door. For the beadle, that man of power, comes early this\nmorning with the sexton; and Mrs Miff, the wheezy little pew-opener -\na mighty dry old lady, sparely dressed, with not an inch of fulness\nanywhere about her - is also here, and has been waiting at the\nchurch-gate half-an-hour, as her place is, for the beadle.\n\nA vinegary face has Mrs Miff, and a mortified bonnet, and eke a\nthirsty soul for sixpences and shillings. Beckoning to stray people to\ncome into pews, has given Mrs Miff an air of mystery; and there is\nreservation in the eye of Mrs Miff, as always knowing of a softer\nseat, but having her suspicions of the fee. There is no such fact as\nMr Miff, nor has there been, these twenty years, and Mrs Miff would\nrather not allude to him. He held some bad opinions, it would seem,\nabout free seats; and though Mrs Miff hopes he may be gone upwards,\nshe couldn't positively undertake to say so.\n\nBusy is Mrs Miff this morning at the church-door, beating and\ndusting the altar-cloth, the carpet, and the cushions; and much has\nMrs Miff to say, about the wedding they are going to have. Mrs Miff is\ntold, that the new furniture and alterations in the house cost full\nfive thousand pound if they cost a penny; and Mrs Miff has heard, upon\nthe best authority, that the lady hasn't got a sixpence wherewithal to\nbless herself. Mrs Miff remembers, like wise, as if it had happened\nyesterday, the first wife's funeral, and then the christening, and\nthen the other funeral; and Mrs Miff says, by-the-bye she'll\nsoap-and-water that 'ere tablet presently, against the company arrive.\nMr Sownds the Beadle, who is sitting in the sun upon the church steps\nall this time (and seldom does anything else, except, in cold weather,\nsitting by the fire), approves of Mrs Miff's discourse, and asks if\nMrs Miff has heard it said, that the lady is uncommon handsome? The\ninformation Mrs Miff has received, being of this nature, Mr Sownds the\nBeadle, who, though orthodox and corpulent, is still an admirer of\nfemale beauty, observes, with unction, yes, he hears she is a spanker\n- an expression that seems somewhat forcible to Mrs Miff, or would,\nfrom any lips but those of Mr Sownds the Beadle.\n\nIn Mr Dombey's house, at this same time, there is great stir and\nbustle, more especially among the women: not one of whom has had a\nwink of sleep since four o'clock, and all of whom were fully dressed\nbefore six. Mr Towlinson is an object of greater consideration than\nusual to the housemaid, and the cook says at breakfast time that one\nwedding makes many, which the housemaid can't believe, and don't think\ntrue at all. Mr Towlinson reserves his sentiments on this question;\nbeing rendered something gloomy by the engagement of a foreigner with\nwhiskers (Mr Towlinson is whiskerless himself), who has been hired to\naccompany the happy pair to Paris, and who is busy packing the new\nchariot. In respect of this personage, Mr Towlinson admits, presently,\nthat he never knew of any good that ever come of foreigners; and being\ncharged by the ladies with prejudice, says, look at Bonaparte who was\nat the head of 'em, and see what he was always up to! Which the\nhousemaid says is very true.\n\nThe pastry-cook is hard at work in the funereal room in Brook\nStreet, and the very tall young men are busy looking on. One of the\nvery tall young men already smells of sherry, and his eyes have a\ntendency to become fixed in his head, and to stare at objects without\nseeing them. The very tall young man is conscious of this failing in\nhimself; and informs his comrade that it's his 'exciseman.' The very\ntall young man would say excitement, but his speech is hazy.\n\nThe men who play the bells have got scent of the marriage; and the\nmarrow-bones and cleavers too; and a brass band too. The first, are\npractising in a back settlement near Battlebridge; the second, put\nthemselves in communication, through their chief, with Mr Towlinson,\nto whom they offer terms to be bought off; and the third, in the\nperson of an artful trombone, lurks and dodges round the corner,\nwaiting for some traitor tradesman to reveal the place and hour of\nbreakfast, for a bribe. Expectation and excitement extend further yet,\nand take a wider range. From Balls Pond, Mr Perch brings Mrs Perch to\nspend the day with Mr Dombey's servants, and accompany them,\nsurreptitiously, to see the wedding. In Mr Toots's lodgings, Mr Toots\nattires himself as if he were at least the Bridegroom; determined to\nbehold the spectacle in splendour from a secret corner of the gallery,\nand thither to convey the Chicken: for it is Mr Toots's desperate\nintent to point out Florence to the Chicken, then and there, and\nopenly to say, 'Now, Chicken, I will not deceive you any longer; the\nfriend I have sometimes mentioned to you is myself; Miss Dombey is the\nobject of my passion; what are your opinions, Chicken, in this state\nof things, and what, on the spot, do you advise? The\nso-much-to-be-astonished Chicken, in the meanwhile, dips his beak into\na tankard of strong beer, in Mr Toots's kitchen, and pecks up two\npounds of beefsteaks. In Princess's Place, Miss Tox is up and doing;\nfor she too, though in sore distress, is resolved to put a shilling in\nthe hands of Mrs Miff, and see the ceremony which has a cruel\nfascination for her, from some lonely corner. The quarters of the\nwooden Midshipman are all alive; for Captain Cuttle, in his\nankle-jacks and with a huge shirt-collar, is seated at his breakfast,\nlistening to Rob the Grinder as he reads the marriage service to him\nbeforehand, under orders, to the end that the Captain may perfectly\nunderstand the solemnity he is about to witness: for which purpose,\nthe Captain gravely lays injunctions on his chaplain, from time to\ntime, to 'put about,' or to 'overhaul that 'ere article again,' or to\nstick to his own duty, and leave the Amens to him, the Captain; one of\nwhich he repeats, whenever a pause is made by Rob the Grinder, with\nsonorous satisfaction.\n\nBesides all this, and much more, twenty nursery-maids in Mr\nDombey's street alone, have promised twenty families of little women,\nwhose instinctive interest in nuptials dates from their cradles, that\nthey shall go and see the marriage. Truly, Mr Sownds the Beadle has\ngood reason to feel himself in office, as he suns his portly figure on\nthe church steps, waiting for the marriage hour. Truly, Mrs Miff has\ncause to pounce on an unlucky dwarf child, with a giant baby, who\npeeps in at the porch, and drive her forth with indignation!\n\nCousin Feenix has come over from abroad, expressly to attend the\nmarriage. Cousin Feenix was a man about town, forty years ago; but he\nis still so juvenile in figure and in manner, and so well got up, that\nstrangers are amazed when they discover latent wrinkles in his\nlordship's face, and crows' feet in his eyes: and first observe him,\nnot exactly certain when he walks across a room, of going quite\nstraight to where he wants to go. But Cousin Feenix, getting up at\nhalf-past seven o'clock or so, is quite another thing from Cousin\nFeenix got up; and very dim, indeed, he looks, while being shaved at\nLong's Hotel, in Bond Street.\n\nMr Dombey leaves his dressing-room, amidst a general whisking away\nof the women on the staircase, who disperse in all directions, with a\ngreat rustling of skirts, except Mrs Perch, who, being (but that she\nalways is) in an interesting situation, is not nimble, and is obliged\nto face him, and is ready to sink with confusion as she curtesys; -\nmay Heaven avert all evil consequences from the house of Perch! Mr\nDombey walks up to the drawing-room, to bide his time. Gorgeous are Mr\nDombey's new blue coat, fawn-coloured pantaloons, and lilac waistcoat;\nand a whisper goes about the house, that Mr Dombey's hair is curled.\n\nA double knock announces the arrival of the Major, who is gorgeous\ntoo, and wears a whole geranium in his button-hole, and has his hair\ncurled tight and crisp, as well the Native knows.\n\n'Dombey!' says the Major, putting out both hands, 'how are you?'\n\n'Major,' says Mr Dombey, 'how are You?'\n\n'By Jove, Sir,' says the Major, 'Joey B. is in such case this\nmorning, Sir,' - and here he hits himself hard upon the breast - 'In\nsuch case this morning, Sir, that, damme, Dombey, he has half a mind\nto make a double marriage of it, Sir, and take the mother.'\n\nMr Dombey smiles; but faintly, even for him; for Mr Dombey feels\nthat he is going to be related to the mother, and that, under those\ncircumstances, she is not to be joked about.\n\n'Dombey,' says the Major, seeing this, 'I give you joy. I\ncongratulate you, Dombey. By the Lord, Sir,' says the Major, 'you are\nmore to be envied, this day, than any man in England!'\n\nHere again Mr Dombey's assent is qualified; because he is going to\nconfer a great distinction on a lady; and, no doubt, she is to be\nenvied most.\n\n'As to Edith Granger, Sir,' pursues the Major, 'there is not a\nwoman in all Europe but might - and would, Sir, you will allow\nBagstock to add - and would- give her ears, and her earrings, too, to\nbe in Edith Granger's place.'\n\n'You are good enough to say so, Major,' says Mr Dombey.\n\n'Dombey,' returns the Major, 'you know it. Let us have no false\ndelicacy. You know it. Do you know it, or do you not, Dombey?' says\nthe Major, almost in a passion.\n\n'Oh, really, Major - '\n\n'Damme, Sir,' retorts the Major, 'do you know that fact, or do you\nnot? Dombey! Is old Joe your friend? Are we on that footing of\nunreserved intimacy, Dombey, that may justify a man - a blunt old\nJoseph B., Sir - in speaking out; or am I to take open order, Dombey,\nand to keep my distance, and to stand on forms?'\n\n'My dear Major Bagstock,' says Mr Dombey, with a gratified air,\n'you are quite warm.'\n\n'By Gad, Sir,' says the Major, 'I am warm. Joseph B. does not deny\nit, Dombey. He is warm. This is an occasion, Sir, that calls forth all\nthe honest sympathies remaining in an old, infernal, battered,\nused-up, invalided, J. B. carcase. And I tell you what, Dombey - at\nsuch a time a man must blurt out what he feels, or put a muzzle on;\nand Joseph Bagstock tells you to your face, Dombey, as he tells his\nclub behind your back, that he never will be muzzled when Paul Dombey\nis in question.  Now, damme, Sir,' concludes the Major, with great\nfirmness, 'what do you make of that?'\n\n'Major,' says Mr Dombey, 'I assure you that I am really obliged to\nyou. I had no idea of checking your too partial friendship.'\n\n'Not too partial, Sir!' exclaims the choleric Major. 'Dombey, I\ndeny it.'\n\n'Your friendship I will say then,' pursues Mr Dombey, 'on any\naccount. Nor can I forget, Major, on such an occasion as the present,\nhow much I am indebted to it.'\n\n'Dombey,' says the Major, with appropriate action, 'that is the\nhand of Joseph Bagstock: of plain old Joey B., Sir, if you like that\nbetter! That is the hand, of which His Royal Highness the late Duke of\nYork, did me the honour to observe, Sir, to His Royal Highness the\nlate Duke of Kent, that it was the hand of Josh: a rough and tough,\nand possibly an up-to-snuff, old vagabond. Dombey, may the present\nmoment be the least unhappy of our lives. God bless you!'\n\nNow enters Mr Carker, gorgeous likewise, and smiling like a\nwedding-guest indeed. He can scarcely let Mr Dombey's hand go, he is\nso congratulatory; and he shakes the Major's hand so heartily at the\nsame time, that his voice shakes too, in accord with his arms, as it\ncomes sliding from between his teeth.\n\n'The very day is auspicious,' says Mr Carker. 'The brightest and\nmost genial weather! I hope I am not a moment late?'\n\n'Punctual to your time, Sir,' says the Major.\n\n'I am rejoiced, I am sure,' says Mr Carker. 'I was afraid I might\nbe a few seconds after the appointed time, for I was delayed by a\nprocession of waggons; and I took the liberty of riding round to Brook\nStreet' - this to Mr Dombey - 'to leave a few poor rarities of flowers\nfor Mrs Dombey. A man in my position, and so distinguished as to be\ninvited here, is proud to offer some homage in acknowledgment of his\nvassalage: and as I have no doubt Mrs Dombey is overwhelmed with what\nis costly and magnificent;' with a strange glance at his patron; 'I\nhope the very poverty of my offering, may find favour for it.'\n\n'Mrs Dombey, that is to be,' returns Mr Dombey, condescendingly,\n'will be very sensible of your attention, Carker, I am sure.'\n\n'And if she is to be Mrs Dombey this morning, Sir,' says the Major,\nputting down his coffee-cup, and looking at his watch, 'it's high time\nwe were off!'\n\nForth, in a barouche, ride Mr Dombey, Major Bagstock, and Mr\nCarker, to the church. Mr Sownds the Beadle has long risen from the\nsteps, and is in waiting with his cocked hat in his hand. Mrs Miff\ncurtseys and proposes chairs in the vestry. Mr Dombey prefers\nremaining in the church. As he looks up at the organ, Miss Tox in the\ngallery shrinks behind the fat leg of a cherubim on a monument, with\ncheeks like a young Wind. Captain Cuttle, on the contrary, stands up\nand waves his hook, in token of welcome and encouragement. Mr Toots\ninforms the Chicken, behind his hand, that the middle gentleman, he in\nthe fawn-coloured pantaloons, is the father of his love. The Chicken\nhoarsely whispers Mr Toots that he's as stiff a cove as ever he see,\nbut that it is within the resources of Science to double him up, with\none blow in the waistcoat.\n\nMr Sownds and Mrs Miff are eyeing Mr Dombey from a little distance,\nwhen the noise of approaching wheels is heard, and Mr Sownds goes out.\nMrs Miff, meeting Mr Dombey's eye as it is withdrawn from the\npresumptuous maniac upstairs, who salutes him with so much urbanity,\ndrops a curtsey, and informs him that she believes his 'good lady' is\ncome. Then there is a crowding and a whispering at the door, and the\ngood lady enters, with a haughty step.\n\nThere is no sign upon her face, of last night's suffering; there is\nno trace in her manner, of the woman on the bended knees, reposing her\nwild head, in beautiful abandonment, upon the pillow of the sleeping\ngirl. That girl, all gentle and lovely, is at her side - a striking\ncontrast to her own disdainful and defiant figure, standing there,\ncomposed, erect, inscrutable of will, resplendent and majestic in the\nzenith of its charms, yet beating down, and treading on, the\nadmiration that it challenges.\n\nThere is a pause while Mr Sownds the Beadle glides into the vestry\nfor the clergyman and clerk. At this juncture, Mrs Skewton speaks to\nMr Dombey: more distinctly and emphatically than her custom is, and\nmoving at the same time, close to Edith.\n\n'My dear Dombey,' said the good Mama, 'I fear I must relinquish\ndarling Florence after all, and suffer her to go home, as she herself\nproposed. After my loss of to-day, my dear Dombey, I feel I shall not\nhave spirits, even for her society.'\n\n'Had she not better stay with you?' returns the Bridegroom.\n\n'I think not, my dear Dombey. No, I think not. I shall be better\nalone. Besides, my dearest Edith will be her natural and constant\nguardian when you return, and I had better not encroach upon her\ntrust, perhaps. She might be jealous. Eh, dear Edith?'\n\nThe affectionate Mama presses her daughter's arm, as she says this;\nperhaps entreating her attention earnestly.\n\n'To be serious, my dear Dombey,' she resumes, 'I will relinquish\nour dear child, and not inflict my gloom upon her. We have settled\nthat, just now. She fully understands, dear Dombey. Edith, my dear, -\nshe fully understands.'\n\nAgain, the good mother presses her daughter's arm. Mr Dombey offers\nno additional remonstrance; for the clergyman and clerk appear; and\nMrs Miff, and Mr Sownds the Beadle, group the party in their proper\nplaces at the altar rails.\n\nThe sun is shining down, upon the golden letters of the ten\ncommandments. Why does the Bride's eye read them, one by one? Which\none of all the ten appears the plainest to her in the glare of light?\nFalse Gods; murder; theft; the honour that she owes her mother; -\nwhich is it that appears to leave the wall, and printing itself in\nglowing letters, on her book!\n\n\"Who giveth this woman to be married to this man?\"'\n\nCousin Feenix does that. He has come from Baden-Baden on purpose.\n'Confound it,' Cousin Feenix says - good-natured creature, Cousin\nFeenix - 'when we do get a rich City fellow into the family, let us\nshow him some attention; let us do something for him.' I give this\nwoman to be married to this man,' saith Cousin Feenix therefore.\nCousin Feenix, meaning to go in a straight line, but turning off\nsideways by reason of his wilful legs, gives the wrong woman to be\nmarried to this man, at first - to wit, a brides- maid of some\ncondition, distantly connected with the family, and ten years Mrs\nSkewton's junior - but Mrs Miff, interposing her mortified bonnet,\ndexterously turns him back, and runs him, as on castors, full at the\n'good lady:' whom Cousin Feenix giveth to married to this man\naccordingly. And will they in the sight of heaven - ? Ay, that they\nwill: Mr Dombey says he will. And what says Edith? She will. So, from\nthat day forward, for better for worse, for richer for poorer, in\nsickness and in health, to love and to cherish, till death do them\npart, they plight their troth to one another, and are married. In a\nfirm, free hand, the Bride subscribes her name in the register, when\nthey adjourn to the vestry. 'There ain't a many ladies come here,' Mrs\nMiff says with a curtsey - to look at Mrs Miff, at such a season, is\nto make her mortified bonnet go down with a dip - writes their names\nlike this good lady!' Mr Sownds the Beadle thinks it is a truly\nspanking signature, and worthy of the writer - this, however, between\nhimself and conscience. Florence signs too, but unapplauded, for her\nhand shakes. All the party sign; Cousin Feenix last; who puts his\nnoble name into a wrong place, and enrols himself as having been born\nthat morning. The Major now salutes the Bride right gallantly, and\ncarries out that branch of military tactics in reference to all the\nladies: notwithstanding Mrs Skewton's being extremely hard to kiss,\nand squeaking shrilly in the sacred edIfice. The example is followed\nby Cousin. Feenix and even by Mr Dombey. Lastly, Mr Carker, with hIs\nwhite teeth glistening, approaches Edith, more as if he meant to bite\nher, than to taste the sweets that linger on her lips.\n\nThere is a glow upon her proud cheek, and a flashing in her eyes,\nthat may be meant to stay him; but it does not, for he salutes her as\nthe rest have done, and wishes her all happiness.\n\n'If wishes,' says he in a low voice, 'are not superfluous, applied\nto such a union.'\n\n'I thank you, Sir,' she answers, with a curled lip, and a heaving\nbosom.\n\nBut, does Edith feel still, as on the night when she knew that Mr\nDombey would return to offer his alliance, that Carker knows her\nthoroughly, and reads her right, and that she is more degraded by his\nknowledge of her, than by aught else? Is it for this reason that her\nhaughtiness shrinks beneath his smile, like snow within the hands that\ngrasps it firmly, and that her imperious glance droops In meeting his,\nand seeks the ground?\n\n'I am proud to see,' said Mr Carker, with a servile stooping of his\nneck, which the revelations making by his eyes and teeth proclaim to\nbe a lie, 'I am proud to see that my humble offering is graced by Mrs\nDombey's hand, and permitted to hold so favoured a place in so joyful\nan occasion.'\n\nThough she bends her head, in answer, there is something in the\nmomentary action of her hand, as if she would crush the flowers it\nholds, and fling them, with contempt, upon the ground. But, she puts\nthe hand through the arm of her new husband, who has been standing\nnear, conversing with the Major, and is proud again, and motionless,\nand silent.\n\nThe carriages are once more at the church door. Mr Dombey, with his\nbride upon his arm, conducts her through the twenty families of little\nwomen who are on the steps, and every one of whom remembers the\nfashion and the colour of her every article of dress from that moment,\nand reproduces it on her doll, who is for ever being married.\nCleopatra and Cousin Feenix enter the same carriage. The Major hands\ninto a second carriage, Florence, and the bridesmaid who so narrowly\nescaped being given away by mistake, and then enters it himself, and\nis followed by Mr Carker. Horses prance and caper; coachmen and\nfootmen shine in fluttering favours, flowers, and new-made liveries.\nAway they dash and rattle through the streets; and as they pass along,\na thousand heads are turned to look at them, and a thousand sober\nmoralists revenge themselves for not being married too, that morning,\nby reflecting that these people little think such happiness can't\nlast.\n\nMiss Tox emerges from behind the cherubim's leg, when all is quiet,\nand comes slowly down from the gallery. Miss Tox's eyes are red, and\nher pocket-handkerchief is damp. She is wounded, but not exasperated,\nand she hopes they may be happy. She quite admits to herself the\nbeauty of the bride, and her own comparatively feeble and faded\nattractions; but the stately image of Mr Dombey in his lilac\nwaistcoat, and his fawn-coloured pantaloons, is present to her mind,\nand Miss Tox weeps afresh, behind her veil, on her way home to\nPrincess's Place. Captain Cuttle, having joined in all the amens and\nresponses, with a devout growl, feels much improved by his religious\nexercises; and in a peaceful frame of mind pervades the body of the\nchurch, glazed hat in hand, and reads the tablet to the memory of\nlittle Paul. The gallant Mr Toots, attended by the faithful Chicken,\nleaves the building in torments of love. The Chicken is as yet unable\nto elaborate a scheme for winning Florence, but his first idea has\ngained possession of him, and he thinks the doubling up of Mr Dombey\nwould be a move in the right direction. Mr Dombey's servants come out\nof their hiding-places, and prepare to rush to Brook Street, when they\nare delayed by symptoms of indisposition on the part of Mrs Perch, who\nentreats a glass of water, and becomes alarming; Mrs Perch gets better\nsoon, however, and is borne away; and Mrs Miff, and Mr Sownds the\nBeadle, sit upon the steps to count what they have gained by the\naffair, and talk it over, while the sexton tolls a funeral.\n\nNow, the carriages arrive at the Bride's residence, and the players\non the bells begin to jingle, and the band strikes up, and Mr Punch,\nthat model of connubial bliss, salutes his wife. Now, the people run,\nand push, and press round in a gaping throng, while Mr Dombey, leading\nMrs Dombey by the hand, advances solemnly into the Feenix Halls. Now,\nthe rest of the wedding party alight, and enter after them. And why\ndoes Mr Carker, passing through the people to the hall-door, think of\nthe old woman who called to him in the Grove that morning? Or why does\nFlorence, as she passes, think, with a tremble, of her childhood, when\nshe was lost, and of the visage of Good Mrs Brown?\n\nNow, there are more congratulations on this happiest of days, and\nmore company, though not much; and now they leave the drawing-room,\nand range themselves at table in the dark-brown dining-room, which no\nconfectioner can brighten up, let him garnish the exhausted negroes\nwith as many flowers and love-knots as he will.\n\nThe pastry-cook has done his duty like a man, though, and a rich\nbreakfast is set forth. Mr and Mrs Chick have joined the party, among\nothers. Mrs Chick admires that Edith should be, by nature, such a\nperfect Dombey; and is affable and confidential to Mrs Skewton, whose\nmind is relieved of a great load, and who takes her share of the\nchampagne. The very tall young man who suffered from excitement early,\nis better; but a vague sentiment of repentance has seized upon him,\nand he hates the other very tall young man, and wrests dishes from him\nby violence, and takes a grim delight in disobliging the company. The\ncompany are cool and calm, and do not outrage the black hatchments of\npictures looking down upon them, by any excess of mirth. Cousin Feenix\nand the Major are the gayest there; but Mr Carker has a smile for the\nwhole table. He has an especial smile for the Bride, who very, very\nseldom meets it.\n\nCousin Feenix rises, when the company have breakfasted, and the\nservants have left the room; and wonderfully young he looks, with his\nwhite wristbands almost covering his hands (otherwise rather bony),\nand the bloom of the champagne in his cheeks.\n\n'Upon my honour,' says Cousin Feenix, 'although it's an unusual\nsort of thing in a private gentleman's house, I must beg leave to call\nupon you to drink what is usually called a - in fact a toast.\n\nThe Major very hoarsely indicates his approval. Mr Carker, bending\nhis head forward over the table in the direction of Cousin Feenix,\nsmiles and nods a great many times.\n\n'A - in fact it's not a - ' Cousin Feenix beginning again, thus,\ncomes to a dead stop.\n\n'Hear, hear!' says the Major, in a tone of conviction.\n\nMr Carker softly claps his hands, and bending forward over the\ntable again, smiles and nods a great many more times than before, as\nif he were particularly struck by this last observation, and desired\npersonally to express his sense of the good it has done\n\n'It is,' says Cousin Feenix, 'an occasion in fact, when the general\nusages of life may be a little departed from, without impropriety; and\nalthough I never was an orator in my life, and when I was in the House\nof Commons, and had the honour of seconding the address, was - in\nfact, was laid up for a fortnight with the consciousness of failure -\n'\n\nThe Major and Mr Carker are so much delighted by this fragment of\npersonal history, that Cousin Feenix laughs, and addressing them\nindividually, goes on to say:\n\n'And in point of fact, when I was devilish ill - still, you know, I\nfeel that a duty devolves upon me. And when a duty devolves upon an\nEnglishman, he is bound to get out of it, in my opinion, in the best\nway he can. Well! our family has had the gratification, to-day, of\nconnecting itself, in the person of my lovely and accomplished\nrelative, whom I now see - in point of fact, present - '\n\nHere there is general applause.\n\n'Present,' repeats Cousin Feenix, feeling that it is a neat point\nwhich will bear repetition, - 'with one who - that is to say, with a\nman, at whom the finger of scorn can never - in fact, with my\nhonourable friend Dombey, if he will allow me to call him so.'\n\nCousin Feenix bows to Mr Dombey; Mr Dombey solemnly returns the\nbow; everybody is more or less gratified and affected by this\nextraordinary, and perhaps unprecedented, appeal to the feelings.\n\n'I have not,' says Cousin Feenix, 'enjoyed those opportunities\nwhich I could have desired, of cultivating the acquaintance of my\nfriend Dombey, and studying those qualities which do equal honour to\nhis head, and, in point of fact, to his heart; for it has been my\nmisfortune to be, as we used to say in my time in the House of\nCommons, when it was not the custom to allude to the Lords, and when\nthe order of parliamentary proceedings was perhaps better observed\nthan it is now - to be in - in point of fact,' says Cousin Feenix,\ncherishing his joke, with great slyness, and finally bringing it out\nwith a jerk, \"'in another place!\"'\n\nThe Major falls into convulsions, and is recovered with difficulty.\n\n'But I know sufficient of my friend Dombey,' resumes Cousin Feenix\nin a graver tone, as if he had suddenly become a sadder and wiser man'\n'to know that he is, in point of fact, what may be emphatically called\na - a merchant - a British merchant - and a - and a man. And although\nI have been resident abroad, for some years (it would give me great\npleasure to receive my friend Dombey, and everybody here, at\nBaden-Baden, and to have an opportunity of making 'em known to the\nGrand Duke), still I know enough, I flatter myself, of my lovely and\naccomplished relative, to know that she possesses every requisite to\nmake a man happy, and that her marriage with my friend Dombey is one\nof inclination and affection on both sides.'\n\nMany smiles and nods from Mr Carker.\n\n'Therefore,' says Cousin Feenix, 'I congratulate the family of\nwhich I am a member, on the acquisition of my friend Dombey. I\ncongratulate my friend Dombey on his union with my lovely and\naccomplished relative who possesses every requisite to make a man\nhappy; and I take the liberty of calling on you all, in point of fact,\nto congratulate both my friend Dombey and my lovely and accomplished\nrelative, on the present occasion.'\n\nThe speech of Cousin Feenix is received with great applause, and Mr\nDombey returns thanks on behalf of himself and Mrs Dombey. J. B.\nshortly afterwards proposes Mrs Skewton. The breakfast languishes when\nthat is done, the violated hatchments are avenged, and Edith rises to\nassume her travelling dress.\n\nAll the servants in the meantime, have been breakfasting below.\nChampagne has grown too common among them to be mentioned, and roast\nfowls, raised pies, and lobster-salad, have become mere drugs. The\nvery tall young man has recovered his spirits, and again alludes to\nthe exciseman. His comrade's eye begins to emulate his own, and he,\ntoo, stares at objects without taking cognizance thereof. There is a\ngeneral redness in the faces of the ladies; in the face of Mrs Perch\nparticularly, who is joyous and beaming, and lifted so far above the\ncares of life, that if she were asked just now to direct a wayfarer to\nBall's Pond, where her own cares lodge, she would have some difficulty\nin recalling the way. Mr Towlinson has proposed the happy pair; to\nwhich the silver-headed butler has responded neatly, and with emotion;\nfor he half begins to think he is an old retainer of the family, and\nthat he is bound to be affected by these changes. The whole party, and\nespecially the ladies, are very frolicsome. Mr Dombey's cook, who\ngenerally takes the lead in society, has said, it is impossible to\nsettle down after this, and why not go, in a party, to the play?\nEverybody (Mrs Perch included) has agreed to this; even the Native,\nwho is tigerish in his drink, and who alarms the ladies (Mrs Perch\nparticularly) by the rolling of his eyes. One of the very tall young\nmen has even proposed a ball after the play, and it presents itself to\nno one (Mrs Perch included) in the light of an impossibility. Words\nhave arisen between the housemaid and Mr Towlinson; she, on the\nauthority of an old saw, asserting marriages to be made in Heaven: he,\naffecting to trace the manufacture elsewhere; he, supposing that she\nsays so, because she thinks of being married her own self: she,\nsaying, Lord forbid, at any rate, that she should ever marry him. To\ncalm these flying taunts, the silver-headed butler rises to propose\nthe health of Mr Towlinson, whom to know is to esteem, and to esteem\nis to wish well settled in life with the object of his choice,\nwherever (here the silver-headed butler eyes the housemaid) she may\nbe. Mr Towlinson returns thanks in a speech replete with feeling, of\nwhich the peroration turns on foreigners, regarding whom he says they\nmay find favour, sometimes, with weak and inconstant intellects that\ncan be led away by hair, but all he hopes, is, he may never hear of no\nforeigner never boning nothing out of no travelling chariot. The eye\nof Mr Towlinson is so severe and so expressive here, that the\nhousemaid is turning hysterical, when she and all the rest, roused by\nthe intelligence that the Bride is going away, hurry upstairs to\nwitness her departure.\n\nThe chariot is at the door; the Bride is descending to the hall,\nwhere Mr Dombey waits for her. Florence is ready on the staircase to\ndepart too; and Miss Nipper, who has held a middle state between the\nparlour and the kitchen, is prepared to accompany her. As Edith\nappears, Florence hastens towards her, to bid her farewell.\n\nIs Edith cold, that she should tremble! Is there anything unnatural\nor unwholesome in the touch of Florence, that the beautiful form\nrecedes and contracts, as if it could not bear it! Is there so much\nhurry in this going away, that Edith, with a wave of her hand, sweeps\non, and is gone!\n\nMrs Skewton, overpowered by her feelings as a mother, sinks on her\nsofa in the Cleopatra attitude, when the clatter of the chariot wheels\nis lost, and sheds several tears. The Major, coming with the rest of\nthe company from table, endeavours to comfort her; but she will not be\ncomforted on any terms, and so the Major takes his leave. Cousin\nFeenix takes his leave, and Mr Carker takes his leave. The guests all\ngo away. Cleopatra, left alone, feels a little giddy from her strong\nemotion, and falls asleep.\n\nGiddiness prevails below stairs too. The very tall young man whose\nexcitement came on so soon, appears to have his head glued to the\ntable in the pantry, and cannot be detached from - it. A violent\nrevulsion has taken place in the spirits of Mrs Perch, who is low on\naccount of Mr Perch, and tells cook that she fears he is not so much\nattached to his home, as he used to be, when they were only nine in\nfamily. Mr Towlinson has a singing in his ears and a large wheel going\nround and round inside his head. The housemaid wishes it wasn't wicked\nto wish that one was dead.\n\nThere is a general delusion likewise, in these lower regions, on\nthe subject of time; everybody conceiving that it ought to be, at the\nearliest, ten o'clock at night, whereas it is not yet three in the\nafternoon. A shadowy idea of wickedness committed, haunts every\nindividual in the party; and each one secretly thinks the other a\ncompanion in guilt, whom it would be agreeable to avoid. No man or\nwoman has the hardihood to hint at the projected visit to the play.\nAnyone reviving the notion of the ball, would be scouted as a\nmalignant idiot.\n\nMrs Skewton sleeps upstairs, two hours afterwards, and naps are not\nyet over in the kitchen. The hatchments in the dining-room look down\non crumbs, dirty plates, spillings of wine, half-thawed ice, stale\ndiscoloured heel-taps, scraps of lobster, drumsticks of fowls, and\npensive jellies, gradually resolving themselves into a lukewarm gummy\nsoup. The marriage is, by this time, almost as denuded of its show and\ngarnish as the breakfast. Mr Dombey's servants moralise so much about\nit, and are so repentant over their early tea, at home, that by eight\no'clock or so, they settle down into confirmed seriousness; and Mr\nPerch, arriving at that time from the City, fresh and jocular, with a\nwhite waistcoat and a comic song, ready to spend the evening, and\nprepared for any amount of dissipation, is amazed to find himself\ncoldly received, and Mrs Perch but poorly, and to have the pleasing\nduty of escorting that lady home by the next omnibus.\n\nNight closes in. Florence, having rambled through the handsome\nhouse, from room to room, seeks her own chamber, where the care of\nEdith has surrounded her with luxuries and comforts; and divesting\nherself of her handsome dress, puts on her old simple mourning for\ndear Paul, and sits down to read, with Diogenes winking and blinking\non the ground beside her. But Florence cannot read tonight. The house\nseems strange and new, and there are loud echoes in it. There is a\nshadow on her heart: she knows not why or what: but it is heavy.\nFlorence shuts her book, and gruff Diogenes, who takes that for a\nsignal, puts his paws upon her lap, and rubs his ears against her\ncaressing hands. But Florence cannot see him plainly, in a little\ntime, for there is a mist between her eyes and him, and her dead\nbrother and dead mother shine in it like angels. Walter, too, poor\nwandering shipwrecked boy, oh, where is he?\n\nThe Major don't know; that's for certain; and don't care. The\nMajor, having choked and slumbered, all the afternoon, has taken a\nlate dinner at his club, and now sits over his pint of wine, driving a\nmodest young man, with a fresh-coloured face, at the next table (who\nwould give a handsome sum to be able to rise and go away, but cannot\ndo it) to the verge of madness, by anecdotes of Bagstock, Sir, at\nDombey's wedding, and Old Joe's devilish gentle manly friend, Lord\nFeenix. While Cousin Feenix, who ought to be at Long's, and in bed,\nfinds himself, instead, at a gaming-table, where his wilful legs have\ntaken him, perhaps, in his own despite.\n\nNight, like a giant, fills the church, from pavement to roof, and\nholds dominion through the silent hours. Pale dawn again comes peeping\nthrough the windows: and, giving place to day, sees night withdraw\ninto the vaults, and follows it, and drives it out, and hides among\nthe dead. The timid mice again cower close together, when the great\ndoor clashes, and Mr Sownds and Mrs Miff treading the circle of their\ndaily lives, unbroken as a marriage ring, come in. Again, the cocked\nhat and the mortified bonnet stand in the background at the marriage\nhour; and again this man taketh this woman, and this woman taketh this\nman, on the solemn terms:\n\n'To have and to hold, from this day forward, for better for worse,\nfor richer for poorer, in sickness and in health, to love and to\ncherish, until death do them part.'\n\nThe very words that Mr Carker rides into town repeating, with his\nmouth stretched to the utmost, as he picks his dainty way.\n\n\n\nCHAPTER 32.\n\nThe Wooden Midshipman goes to Pieces\n\n\n\nHonest Captain Cuttle, as the weeks flew over him in his fortified\nretreat, by no means abated any of his prudent provisions against\nsurprise, because of the non-appearance of the enemy. The Captain\nargued that his present security was too profound and wonderful to\nendure much longer; he knew that when the wind stood in a fair\nquarter, the weathercock was seldom nailed there; and he was too well\nacquainted with the determined and dauntless character of Mrs\nMacStinger, to doubt that that heroic woman had devoted herself to the\ntask of his discovery and capture. Trembling beneath the weight of\nthese reasons, Captain Cuttle lived a very close and retired life;\nseldom stirring abroad until after dark; venturing even then only into\nthe obscurest streets; never going forth at all on Sundays; and both\nwithin and without the walls of his retreat, avoiding bonnets, as if\nthey were worn by raging lions.\n\nThe Captain never dreamed that in the event of his being pounced\nupon by Mrs MacStinger, in his walks, it would be possible to offer\nresistance. He felt that it could not be done. He saw himself, in his\nmind's eye, put meekly in a hackney-coach, and carried off to his old\nlodgings. He foresaw that, once immured there, he was a lost man: his\nhat gone; Mrs MacStinger watchful of him day and night; reproaches\nheaped upon his head, before the infant family; himself the guilty\nobject of suspicion and distrust; an ogre in the children's eyes, and\nin their mother's a detected traitor.\n\nA violent perspiration, and a lowness of spirits, always came over\nthe Captain as this gloomy picture presented itself to his\nimagination. It generally did so previous to his stealing out of doors\nat night for air and exercise. Sensible of the risk he ran, the\nCaptain took leave of Rob, at those times, with the solemnity which\nbecame a man who might never return: exhorting him, in the event of\nhis (the Captain's) being lost sight of, for a time, to tread in the\npaths of virtue, and keep the brazen instruments well polished.\n\nBut not to throw away a chance; and to secure to himself a means,\nin case of the worst, of holding communication with the external\nworld; Captain Cuttle soon conceived the happy idea of teaching Rob\nthe Grinder some secret signal, by which that adherent might make his\npresence and fidelity known to his commander, in the hour of\nadversity. After much cogitation, the Captain decided in favour of\ninstructing him to whistle the marine melody, 'Oh cheerily, cheerily!'\nand Rob the Grinder attaining a point as near perfection in that\naccomplishment as a landsman could hope to reach, the Captain\nimpressed these mysterious instructions on his mind:\n\n'Now, my lad, stand by! If ever I'm took - '\n\n'Took, Captain!' interposed Rob, with his round eyes wide open.\n\n'Ah!' said Captain Cuttle darkly, 'if ever I goes away, meaning to\ncome back to supper, and don't come within hail again, twenty-four\nhours arter my loss, go you to Brig Place and whistle that 'ere tune\nnear my old moorings - not as if you was a meaning of it, you\nunderstand, but as if you'd drifted there, promiscuous. If I answer in\nthat tune, you sheer off, my lad, and come back four-and-twenty hours\narterwards; if I answer in another tune, do you stand off and on, and\nwait till I throw out further signals. Do you understand them orders,\nnow?'\n\n'What am I to stand off and on of, Captain?' inquired Rob. 'The\nhorse-road?'\n\n'Here's a smart lad for you!' cried the Captain eyeing him sternly,\n'as don't know his own native alphabet! Go away a bit and come back\nagain alternate - d'ye understand that?'\n\n'Yes, Captain,' said Rob.\n\n'Very good my lad, then,' said the Captain, relenting. 'Do it!'\n\nThat he might do it the better, Captain Cuttle sometimes\ncondescended, of an evening after the shop was shut, to rehearse this\nscene: retiring into the parlour for the purpose, as into the lodgings\nof a supposititious MacStinger, and carefully observing the behaviour\nof his ally, from the hole of espial he had cut in the wall. Rob the\nGrinder discharged himself of his duty with so much exactness and\njudgment, when thus put to the proof, that the Captain presented him,\nat divers times, with seven sixpences, in token of satisfaction; and\ngradually felt stealing over his spirit the resignation of a man who\nhad made provision for the worst, and taken every reasonable\nprecaution against an unrelenting fate.\n\nNevertheless, the Captain did not tempt ill-fortune, by being a\nwhit more venturesome than before. Though he considered it a point of\ngood breeding in himself, as a general friend of the family, to attend\nMr Dombey's wedding (of which he had heard from Mr Perch), and to show\nthat gentleman a pleasant and approving countenance from the gallery,\nhe had repaired to the church in a hackney cabriolet with both windows\nup; and might have scrupled even to make that venture, in his dread of\nMrs MacStinger, but that the lady's attendance on the ministry of the\nReverend Melchisedech rendered it peculiarly unlikely that she would\nbe found in communion with the Establishment.\n\nThe Captain got safe home again, and fell into the ordinary routine\nof his new life, without encountering any more direct alarm from the\nenemy, than was suggested to him by the daily bonnets in the street.\nBut other subjects began to lay heavy on the Captain's mind. Walter's\nship was still unheard of. No news came of old Sol Gills. Florence did\nnot even know of the old man's disappearance, and Captain Cuttle had\nnot the heart to tell her. Indeed the Captain, as his own hopes of the\ngenerous, handsome, gallant-hearted youth, whom he had loved,\naccording to his rough manner, from a child, began to fade, and faded\nmore and more from day to day, shrunk with instinctive pain from the\nthought of exchanging a word with Florence. If he had had good news to\ncarry to her, the honest Captain would have braved the newly decorated\nhouse and splendid furniture - though these, connected with the lady\nhe had seen at church, were awful to him - and made his way into her\npresence. With a dark horizon gathering around their common hopes,\nhowever, that darkened every hour, the Captain almost felt as if he\nwere a new misfortune and affliction to her; and was scarcely less\nafraid of a visit from Florence, than from Mrs MacStinger herself.\n\nIt was a chill dark autumn evening, and Captain Cuttle had ordered\na fire to be kindled in the little back parlour, now more than ever\nlike the cabin of a ship. The rain fell fast, and the wind blew hard;\nand straying out on the house-top by that stormy bedroom of his old\nfriend, to take an observation of the weather, the Captain's heart\ndied within him, when he saw how wild and desolate it was. Not that he\nassociated the weather of that time with poor Walter's destiny, or\ndoubted that if Providence had doomed him to be lost and shipwrecked,\nit was over, long ago; but that beneath an outward influence, quite\ndistinct from the subject-matter of his thoughts, the Captain's\nspirits sank, and his hopes turned pale, as those of wiser men had\noften done before him, and will often do again.\n\nCaptain Cuttle, addressing his face to the sharp wind and slanting\nrain, looked up at the heavy scud that was flying fast over the\nwilderness of house-tops, and looked for something cheery there in\nvain. The prospect near at hand was no better. In sundry tea-chests\nand other rough boxes at his feet, the pigeons of Rob the Grinder were\ncooing like so many dismal breezes getting up. A crazy weathercock of\na midshipman, with a telescope at his eye, once visible from the\nstreet, but long bricked out, creaked and complained upon his rusty\npivot as the shrill blast spun him round and round, and sported with\nhim cruelly. Upon the Captain's coarse blue vest the cold raindrops\nstarted like steel beads; and he could hardly maintain himself aslant\nagainst the stiff Nor'-Wester that came pressing against him,\nimportunate to topple him over the parapet, and throw him on the\npavement below. If there were any Hope alive that evening, the Captain\nthought, as he held his hat on, it certainly kept house, and wasn't\nout of doors; so the Captain, shaking his head in a despondent manner,\nwent in to look for it.\n\nCaptain Cuttle descended slowly to the little back parlour, and,\nseated in his accustomed chair, looked for it in the fire; but it was\nnot there, though the fire was bright. He took out his tobacco-box and\npipe, and composing himself to smoke, looked for it in the red glow\nfrom the bowl, and in the wreaths of vapour that curled upward from\nhis lips; but there was not so much as an atom of the rust of Hope's\nanchor in either. He tried a glass of grog; but melancholy truth was\nat the bottom of that well, and he couldn't finish it. He made a turn\nor two in the shop, and looked for Hope among the instruments; but\nthey obstinately worked out reckonings for the missing ship, in spite\nof any opposition he could offer, that ended at the bottom of the lone\nsea.\n\nThe wind still rushing, and the rain still pattering, against the\nclosed shutters, the Captain brought to before the wooden Midshipman\nupon the counter, and thought, as he dried the little officer's\nuniform with his sleeve, how many years the Midshipman had seen,\nduring which few changes - hardly any - had transpired among his\nship's company; how the changes had come all together, one day, as it\nmight be; and of what a sweeping kind they web Here was the little\nsociety of the back parlour broken up, and scattered far and wide.\nHere was no audience for Lovely Peg, even if there had been anybody to\nsing it, which there was not; for the Captain was as morally certain\nthat nobody but he could execute that ballad, he was that he had not\nthe spirit, under existing circumstances, to attempt it. There was no\nbright face of 'Wal'r' In the house; - here the Captain transferred\nhis sleeve for a moment from the Midshipman's uniform to his own\ncheek; - the familiar wig and buttons of Sol Gills were a vision of\nthe past; Richard Whittington was knocked on the head; and every plan\nand project in connexion with the Midshipman, lay drifting, without\nmast or rudder, on the waste of waters.\n\nAs the Captain, with a dejected face, stood revolving these\nthoughts, and polishing the Midshipman, partly in the tenderness of\nold acquaintance, and partly in the absence of his mind, a knocking at\nthe shop-door communicated a frightful start to the frame of Rob the\nGrinder, seated on the counter, whose large eyes had been intently\nfixed on the Captain's face, and who had been debating within himself,\nfor the five hundredth time, whether the Captain could have done a\nmurder, that he had such an evil conscience, and was always running\naway.\n\n'What's that?' said Captain Cuttle, softly.\n\n'Somebody's knuckles, Captain,' answered Rob the Grinder.\n\nThe Captain, with an abashed and guilty air, immediately walked on\ntiptoe to the little parlour and locked himself in. Rob, opening the\ndoor, would have parleyed with the visitor on the threshold if the\nvisitor had come in female guise; but the figure being of the male\nsex, and Rob's orders only applying to women, Rob held the door open\nand allowed it to enter: which it did very quickly, glad to get out of\nthe driving rain.\n\n'A job for Burgess and Co. at any rate,' said the visitor, looking\nover his shoulder compassionately at his own legs, which were very wet\nand covered with splashes.  'Oh, how-de-do, Mr Gills?'\n\nThe salutation was addressed to the Captain, now emerging from the\nback parlour with a most transparent and utterly futile affectation of\ncoming out by accidence.\n\n'Thankee,' the gentleman went on to say in the same breath; 'I'm\nvery well indeed, myself, I'm much obliged to you. My name is Toots, -\nMister Toots.'\n\nThe Captain remembered to have seen this young gentleman at the\nwedding, and made him a bow. Mr Toots replied with a chuckle; and\nbeing embarrassed, as he generally was, breathed hard, shook hands\nwith the Captain for a long time, and then falling on Rob the Grinder,\nin the absence of any other resource, shook hands with him in a most\naffectionate and cordial manner.\n\n'I say! I should like to speak a word to you, Mr Gills, if you\nplease,' said Toots at length, with surprising presence of mind. 'I\nsay! Miss D.O.M. you know!'\n\nThe Captain, with responsive gravity and mystery, immediately waved\nhis hook towards the little parlour, whither Mr Toots followed him.\n\n'Oh! I beg your pardon though,' said Mr Toots, looking up In the\nCaptain's face as he sat down in a chair by the fire, which the\nCaptain placed for him; 'you don't happen to know the Chicken at all;\ndo you, Mr Gills?'\n\n'The Chicken?' said the Captain.\n\n'The Game Chicken,' said Mr Toots.\n\nThe Captain shaking his head, Mr Toots explained that the man\nalluded to was the celebrated public character who had covered himself\nand his country with glory in his contest with the Nobby Shropshire\nOne; but this piece of information did not appear to enlighten the\nCaptain very much.\n\n'Because he's outside: that's all,' said Mr Toots. 'But it's of no\nconsequence; he won't get very wet, perhaps.'\n\n'I can pass the word for him in a moment,' said the Captain.\n\n'Well, if you would have the goodness to let him sit in the shop\nwith your young man,' chuckled Mr Toots, 'I should be glad; because,\nyou know, he's easily offended, and the damp's rather bad for his\nstamina. I'll call him in, Mr Gills.'\n\nWith that, Mr Toots repairing to the shop-door, sent a peculiar\nwhistle into the night, which produced a stoical gentleman in a shaggy\nwhite great-coat and a flat-brimmed hat, with very short hair, a\nbroken nose, and a considerable tract of bare and sterile country\nbehind each ear.\n\n'Sit down, Chicken,' said Mr Toots.\n\nThe compliant Chicken spat out some small pieces of straw on which\nhe was regaling himself, and took in a fresh supply from a reserve he\ncarried in his hand.\n\n'There ain't no drain of nothing short handy, is there?' said the\nChicken, generally. 'This here sluicing night is hard lines to a man\nas lives on his condition.\n\nCaptain Cuttle proffered a glass of rum, which the Chicken,\nthrowing back his head, emptied into himself, as into a cask, after\nproposing the brief sentiment, 'Towards us!' Mr Toots and the Captain\nreturning then to the parlour, and taking their seats before the fire,\nMr Toots began:\n\n'Mr Gills - '\n\n'Awast!' said the Captain. 'My name's Cuttle.'\n\nMr Toots looked greatly disconcerted, while the Captain proceeded\ngravely.\n\n'Cap'en Cuttle is my name, and England is my nation, this here is\nmy dwelling-place, and blessed be creation - Job,' said the Captain,\nas an index to his authority.\n\n'Oh! I couldn't see Mr Gills, could I?' said Mr Toots; 'because - '\n\n'If you could see Sol Gills, young gen'l'm'n,' said the Captain,\nimpressively, and laying his heavy hand on Mr Toots's knee, 'old Sol,\nmind you - with your own eyes - as you sit there - you'd be welcomer\nto me, than a wind astern, to a ship becalmed. But you can't see Sol\nGills. And why can't you see Sol Gills?' said the Captain, apprised by\nthe face of Mr Toots that he was making a profound impression on that\ngentleman's mind. 'Because he's inwisible.'\n\nMr Toots in his agitation was going to reply that it was of no\nconsequence at all. But he corrected himself, and said, 'Lor bless\nme!'\n\n'That there man,' said the Captain, 'has left me in charge here by\na piece of writing, but though he was a'most as good as my sworn\nbrother, I know no more where he's gone, or why he's gone; if so be to\nseek his nevy, or if so be along of being not quite settled in his\nmind; than you do. One morning at daybreak, he went over the side,'\nsaid the Captain, 'without a splash, without a ripple I have looked\nfor that man high and low, and never set eyes, nor ears, nor nothing\nelse, upon him from that hour.'\n\n'But, good Gracious, Miss Dombey don't know - ' Mr Toots began.\n\n'Why, I ask you, as a feeling heart,' said the Captain, dropping\nhis voice, 'why should she know? why should she be made to know, until\nsuch time as there wam't any help for it? She took to old Sol Gills,\ndid that sweet creetur, with a kindness, with a affability, with a -\nwhat's the good of saying so? you know her.'\n\n'I should hope so,' chuckled Mr Toots, with a conscious blush that\nsuffused his whole countenance.\n\n'And you come here from her?' said the Captain.\n\n'I should think so,' chuckled Mr Toots.\n\n'Then all I need observe, is,' said the Captain, 'that you know a\nangel, and are chartered a angel.'\n\nMr Toots instantly seized the Captain's hand, and requested the\nfavour of his friendship.\n\n'Upon my word and honour,' said Mr Toots, earnestly, 'I should be\nvery much obliged to you if you'd improve my acquaintance I should\nlike to know you, Captain, very much. I really am In want of a friend,\nI am. Little Dombey was my friend at old Blimber's, and would have\nbeen now, if he'd have lived. The Chicken,' said Mr Toots, in a\nforlorn whisper, 'is very well - admirable in his way - the sharpest\nman perhaps in the world; there's not a move he isn't up to, everybody\nsays so - but I don't know - he's not everything. So she is an angel,\nCaptain. If there is an angel anywhere, it's Miss Dombey. That's what\nI've always said. Really though, you know,' said Mr Toots, 'I should\nbe very much obliged to you if you'd cultivate my acquaintance.'\n\nCaptain Cuttle received this proposal in a polite manner, but still\nwithout committing himself to its acceptance; merely observing, 'Ay,\nay, my lad. We shall see, we shall see;' and reminding Mr Toots of his\nimmediate mission, by inquiring to what he was indebted for the honour\nof that visit.\n\n'Why the fact is,' replied Mr Toots, 'that it's the young woman I\ncome from. Not Miss Dombey - Susan, you know.\n\nThe Captain nodded his head once, with a grave expression of face\nindicative of his regarding that young woman with serious respect.\n\n'And I'll tell you how it happens,' said Mr Toots. 'You know, I go\nand call sometimes, on Miss Dombey. I don't go there on purpose, you\nknow, but I happen to be in the neighbourhood very often; and when I\nfind myself there, why - why I call.'\n\n'Nat'rally,' observed the Captain.\n\n'Yes,' said Mr Toots. 'I called this afternoon. Upon my word and\nhonour, I don't think it's possible to form an idea of the angel Miss\nDombey was this afternoon.'\n\nThe Captain answered with a jerk of his head, implying that it\nmight not be easy to some people, but was quite so to him.\n\n'As I was coming out,' said Mr Toots, 'the young woman, in the most\nunexpected manner, took me into the pantry.\n\nThe Captain seemed, for the moment, to object to this proceeding;\nand leaning back in his chair, looked at Mr Toots with a distrustful,\nif not threatening visage.\n\n'Where she brought out,' said Mr Toots, 'this newspaper. She told\nme that she had kept it from Miss Dombey all day, on account of\nsomething that was in it, about somebody that she and Dombey used to\nknow; and then she read the passage to me. Very well. Then she said -\nwait a minute; what was it she said, though!'\n\nMr Toots, endeavouring to concentrate his mental powers on this\nquestion, unintentionally fixed the Captain's eye, and was so much\ndiscomposed by its stern expression, that his difficulty in resuming\nthe thread of his subject was enhanced to a painful extent.\n\n'Oh!' said Mr Toots after long consideration. 'Oh, ah! Yes! She\nsaid that she hoped there was a bare possibility that it mightn't be\ntrue; and that as she couldn't very well come out herself, without\nsurprising Miss Dombey, would I go down to Mr Solomon Gills the\nInstrument-maker's in this street, who was the party's Uncle, and ask\nwhether he believed it was true, or had heard anything else in the\nCity. She said, if he couldn't speak to me, no doubt Captain Cuttle\ncould. By the bye!' said Mr Toots, as the discovery flashed upon him,\n'you, you know!'\n\nThe Captain glanced at the newspaper in Mr Toots's hand, and\nbreathed short and hurriedly.\n\n'Well, pursued Mr Toots, 'the reason why I'm rather late is,\nbecause I went up as far as Finchley first, to get some uncommonly\nfine chickweed that grows there, for Miss Dombey's bird. But I came on\nhere, directly afterwards. You've seen the paper, I suppose?'\n\nThe Captain, who had become cautious of reading the news, lest he\nshould find himself advertised at full length by Mrs MacStinger, shook\nhis head.\n\n'Shall I read the passage to you?' inquired Mr Toots.\n\nThe Captain making a sign in the affirmative, Mr Toots read as\nfollows, from the Shipping Intelligence:\n\n'\"Southampton. The barque Defiance, Henry James, Commander, arrived\nin this port to-day, with a cargo of sugar, coffee, and rum, reports\nthat being becalmed on the sixth day of her passage home from Jamaica,\nin\" - in such and such a latitude, you know,' said Mr Toots, after\nmaking a feeble dash at the figures, and tumbling over them.\n\n'Ay!' cried the Captain, striking his clenched hand on the table.\n'Heave ahead, my lad!'\n\n' - latitude,' repeated Mr Toots, with a startled glance at the\nCaptain, 'and longitude so-and-so, - \"the look-out observed, half an\nhour before sunset, some fragments of a wreck, drifting at about the\ndistance of a mile. The weather being clear, and the barque making no\nway, a boat was hoisted out, with orders to inspect the same, when\nthey were found to consist of sundry large spars, and a part of the\nmain rigging of an English brig, of about five hundred tons burden,\ntogether with a portion of the stem on which the words and letters\n'Son and H-' were yet plainly legible. No vestige of any dead body was\nto be seen upon the floating fragments. Log of the Defiance states,\nthat a breeze springing up in the night, the wreck was seen no more.\nThere can be no doubt that all surmises as to the fate of the missing\nvessel, the Son and Heir, port of London, bound for Barbados, are now\nset at rest for ever; that she broke up in the last hurricane; and\nthat every soul on board perished.\"'\n\nCaptain Cuttle, like all mankind, little knew how much hope had\nsurvived within him under discouragement, until he felt its\ndeath-shock. During the reading of the paragraph, and for a minute or\ntwo afterwards, he sat with his gaze fixed on the modest Mr Toots,\nlike a man entranced; then, suddenly rising, and putting on his glazed\nhat, which, in his visitor's honour, he had laid upon the table, the\nCaptain turned his back, and bent his head down on the little\nchimneypiece.\n\n'Oh' upon my word and honour,' cried Mr Toots, whose tender heart\nwas moved by the Captain's unexpected distress, 'this is a most\nwretched sort of affair this world is! Somebody's always dying, or\ngoing and doing something uncomfortable in it. I'm sure I never should\nhave looked forward so much, to coming into my property, if I had\nknown this. I never saw such a world. It's a great deal worse than\nBlimber's.'\n\nCaptain Cuttle, without altering his position, signed to Mr Toots\nnot to mind him; and presently turned round, with his glazed hat\nthrust back upon his ears, and his hand composing and smoothing his\nbrown face.\n\n'Wal'r, my dear lad,' said the Captain, 'farewell! Wal'r my child,\nmy boy, and man, I loved you! He warn't my flesh and blood,' said the\nCaptain, looking at the fire - 'I ain't got none - but something of\nwhat a father feels when he loses a son, I feel in losing Wal'r. For\nwhy?' said the Captain. 'Because it ain't one loss, but a round dozen.\nWhere's that there young school-boy with the rosy face and curly hair,\nthat used to be as merry in this here parlour, come round every week,\nas a piece of music? Gone down with Wal'r. Where's that there fresh\nlad, that nothing couldn't tire nor put out, and that sparkled up and\nblushed so, when we joked him about Heart's Delight, that he was\nbeautiful to look at? Gone down with Wal'r. Where's that there man's\nspirit, all afire, that wouldn't see the old man hove down for a\nminute, and cared nothing for itself? Gone down with Wal'r. It ain't\none Wal'r. There was a dozen Wal'rs that I know'd and loved, all\nholding round his neck when he went down, and they're a-holding round\nmine now!'\n\nMr Toots sat silent: folding and refolding the newspaper as small\nas possible upon his knee.\n\n'And Sol Gills,' said the Captain, gazing at the fire, 'poor\nnevyless old Sol, where are you got to! you was left in charge of me;\nhis last words was, \"Take care of my Uncle!\" What came over you, Sol,\nwhen you went and gave the go-bye to Ned Cuttle; and what am I to put\nIn my accounts that he's a looking down upon, respecting you! Sol\nGills, Sol Gills!' said the Captain, shaking his head slowly, 'catch\nsight of that there newspaper, away from home, with no one as know'd\nWal'r by, to say a word; and broadside to you broach, and down you\npitch, head foremost!'\n\nDrawing a heavy sigh, the Captain turned to Mr Toots, and roused\nhimself to a sustained consciousness of that gentleman's presence.\n\n'My lad,' said the Captain, 'you must tell the young woman honestly\nthat this here fatal news is too correct. They don't romance, you see,\non such pints. It's entered on the ship's log, and that's the truest\nbook as a man can write. To-morrow morning,' said the Captain, 'I'll\nstep out and make inquiries; but they'll lead to no good. They can't\ndo it. If you'll give me a look-in in the forenoon, you shall know\nwhat I have heerd; but tell the young woman from Cap'en Cuttle, that\nit's over. Over!' And the Captain, hooking off his glazed hat, pulled\nhis handkerchief out of the crown, wiped his grizzled head\ndespairingly, and tossed the handkerchief in again, with the\nindifference of deep dejection.\n\n'Oh! I assure you,' said Mr Toots, 'really I am dreadfully sorry.\nUpon my word I am, though I wasn't acquainted with the party. Do you\nthink Miss Dombey will be very much affected, Captain Gills - I mean\nMr Cuttle?'\n\n'Why, Lord love you,' returned the Captain, with something of\ncompassion for Mr Toots's innocence.  When she warn't no higher than\nthat, they were as fond of one another as two young doves.'\n\n'Were they though!' said Mr Toots, with a considerably lengthened\nface.\n\n'They were made for one another,' said the Captain, mournfully;\n'but what signifies that now!'\n\n'Upon my word and honour,' cried Mr Toots, blurting out his words\nthrough a singular combination of awkward chuckles and emotion, 'I'm\neven more sorry than I was before. You know, Captain Gills, I - I\npositively adore Miss Dombey; - I - I am perfectly sore with loving\nher;' the burst with which this confession forced itself out of the\nunhappy Mr Toots, bespoke the vehemence of his feelings; 'but what\nwould be the good of my regarding her in this manner, if I wasn't\ntruly sorry for her feeling pain, whatever was the cause of it. Mine\nain't a selfish affection, you know,' said Mr Toots, in the confidence\nengendered by his having been a witness of the Captain's tenderness.\n'It's the sort of thing with me, Captain Gills, that if I could be run\nover - or - or trampled upon - or - or thrown off a very high place\n-or anything of that sort - for Miss Dombey's sake, it would be the\nmost delightful thing that could happen to me.\n\nAll this, Mr Toots said in a suppressed voice, to prevent its\nreaching the jealous ears of the Chicken, who objected to the softer\nemotions; which effort of restraint, coupled with the intensity of his\nfeelings, made him red to the tips of his ears, and caused him to\npresent such an affecting spectacle of disinterested love to the eyes\nof Captain Cuttle, that the good Captain patted him consolingly on the\nback, and bade him cheer up.\n\n'Thankee, Captain Gills,' said Mr Toots, 'it's kind of you, in the\nmidst of your own troubles, to say so. I'm very much obliged to you.\nAs I said before, I really want a friend, and should be glad to have\nyour acquaintance. Although I am very well off,' said Mr Toots, with\nenergy, 'you can't think what a miserable Beast I am. The hollow\ncrowd, you know, when they see me with the Chicken, and characters of\ndistinction like that, suppose me to be happy; but I'm wretched. I\nsuffer for Miss Dombey, Captain Gills. I can't get through my meals; I\nhave no pleasure in my tailor; I often cry when I'm alone. I assure\nyou it'll be a satisfaction to me to come back to-morrow, or to come\nback fifty times.'\n\nMr Toots, with these words, shook the Captain's hand; and\ndisguising such traces of his agitation as could be disguised on so\nshort a notice, before the Chicken's penetrating glance, rejoined that\neminent gentleman in the shop. The Chicken, who was apt to be jealous\nof his ascendancy, eyed Captain Cuttle with anything but favour as he\ntook leave of Mr Toots, but followed his patron without being\notherwise demonstrative of his ill-will: leaving the Captain oppressed\nwith sorrow; and Rob the Grinder elevated with joy, on account of\nhaving had the honour of staring for nearly half an hour at the\nconqueror of the Nobby Shropshire One.\n\nLong after Rob was fast asleep in his bed under the counter, the\nCaptain sat looking at the fire; and long after there was no fire to\nlook at, the Captain sat gazing on the rusty bars, with unavailing\nthoughts of Walter and old Sol crowding through his mind. Retirement\nto the stormy chamber at the top of the house brought no rest with it;\nand the Captain rose up in the morning, sorrowful and unrefreshed.\n\nAs soon as the City offices were opened, the Captain issued forth\nto the counting-house of Dombey and Son. But there was no opening of\nthe Midshipman's windows that morning. Rob the Grinder, by the\nCaptain's orders, left the shutters closed, and the house was as a\nhouse of death.\n\nIt chanced that Mr Carker was entering the office, as Captain\nCuttle arrived at the door. Receiving the Manager's benison gravely\nand silently, Captain Cuttle made bold to accompany him into his own\nroom.\n\n'Well, Captain Cuttle,' said Mr Carker, taking up his usual\nposition before the fireplace, and keeping on his hat, 'this is a bad\nbusiness.'\n\n'You have received the news as was in print yesterday, Sir?' said\nthe Captain.\n\n'Yes,' said Mr Carker, 'we have received it! It was accurately\nstated. The underwriters suffer a considerable loss. We are very\nsorry. No help! Such is life!'\n\nMr Carker pared his nails delicately with a penknife, and smiled at\nthe Captain, who was standing by the door looking at him.\n\n'I excessively regret poor Gay,' said Carker, 'and the crew. I\nunderstand there were some of our very best men among 'em. It always\nhappens so. Many men with families too. A comfort to reflect that poor\nGay had no family, Captain Cuttle!'\n\nThe Captain stood rubbing his chin, and looking at the Manager. The\nManager glanced at the unopened letters lying on his desk, and took up\nthe newspaper.\n\n'Is there anything I can do for you, Captain Cuttle?' he asked\nlooking off it, with a smiling and expressive glance at the door.\n\n'I wish you could set my mind at rest, Sir, on something it's\nuneasy about,' returned the Captain.\n\n'Ay!' exclaimed the Manager, 'what's that? Come, Captain Cuttle, I\nmust trouble you to be quick, if you please. I am much engaged.'\n\n'Lookee here, Sir,' said the Captain, advancing a step. 'Afore my\nfriend Wal'r went on this here disastrous voyage -\n\n'Come, come, Captain Cuttle,' interposed the smiling Manager,\n'don't talk about disastrous voyages in that way. We have nothing to\ndo with disastrous voyages here, my good fellow. You must have begun\nvery early on your day's allowance, Captain, if you don't remember\nthat there are hazards in all voyages, whether by sea or land. You are\nnot made uneasy by the supposition that young what's-his-name was lost\nin bad weather that was got up against him in these offices - are you?\nFie, Captain! Sleep, and soda-water, are the best cures for such\nuneasiness as that.\n\n'My lad,' returned the Captain, slowly - 'you are a'most a lad to\nme, and so I don't ask your pardon for that slip of a word, - if you\nfind any pleasure in this here sport, you ain't the gentleman I took\nyou for. And if you ain't the gentleman I took you for, may be my mind\nhas call to be uneasy. Now this is what it is, Mr Carker. - Afore that\npoor lad went away, according to orders, he told me that he warn't a\ngoing away for his own good, or for promotion, he know'd. It was my\nbelief that he was wrong, and I told him so, and I come here, your\nhead governor being absent, to ask a question or two of you in a civil\nway, for my own satisfaction. Them questions you answered - free. Now\nit'll ease my mind to know, when all is over, as it is, and when what\ncan't be cured must be endoored - for which, as a scholar, you'll\noverhaul the book it's in, and thereof make a note - to know once\nmore, in a word, that I warn't mistaken; that I warn't back'ard in my\nduty when I didn't tell the old man what Wal'r told me; and that the\nwind was truly in his sail, when he highsted of it for Barbados\nHarbour. Mr Carker,' said the Captain, in the goodness of his nature,\n'when I was here last, we was very pleasant together. If I ain't been\naltogether so pleasant myself this morning, on account of this poor\nlad, and if I have chafed again any observation of yours that I might\nhave fended off, my name is Ed'ard Cuttle, and I ask your pardon.'\n\n'Captain Cuttle,' returned the Manager, with all possible\npoliteness, 'I must ask you to do me a favour.'\n\n'And what is it, Sir?' inquired the Captain.\n\n'To have the goodness to walk off, if you please,' rejoined the\nManager, stretching forth his arm, 'and to carry your jargon somewhere\nelse.'\n\nEvery knob in the Captain's face turned white with astonishment and\nindignation; even the red rim on his forehead faded, like a rainbow\namong the gathering clouds.\n\n'I tell you what, Captain Cuttle,' said the Manager, shaking his\nforefinger at him, and showing him all his teeth, but still amiably\nsmiling, 'I was much too lenient with you when you came here before.\nYou belong to an artful and audacious set of people. In my desire to\nsave young what's-his-name from being kicked out of this place, neck\nand crop, my good Captain, I tolerated you; but for once, and only\nonce. Now, go, my friend!'\n\nThe Captain was absolutely rooted to the ground, and speechless -\n\n'Go,' said the good-humoured Manager, gathering up his skirts, and\nstanding astride upon the hearth-rug, 'like a sensible fellow, and let\nus have no turning out, or any such violent measures. If Mr Dombey\nwere here, Captain, you might be obliged to leave in a more\nignominious manner, possibly. I merely say, Go!'\n\nThe Captain, laying his ponderous hand upon his chest, to assist\nhimself in fetching a deep breath, looked at Mr Carker from head to\nfoot, and looked round the little room, as if he did not clearly\nunderstand where he was, or in what company.\n\n'You are deep, Captain Cuttle,' pursued Carker, with the easy and\nvivacious frankness of a man of the world who knew the world too well\nto be ruffled by any discovery of misdoing, when it did not\nimmediately concern himself, 'but you are not quite out of soundings,\neither - neither you nor your absent friend, Captain. What have you\ndone with your absent friend, hey?'\n\nAgain the Captain laid his hand upon his chest. After drawing\nanother deep breath, he conjured himself to 'stand by!' But In a\nwhisper.\n\n'You hatch nice little plots, and hold nice little councils, and\nmake nice little appointments, and receive nice little visitors, too,\nCaptain, hey?' said Carker, bending his brows upon him, without\nshowing his teeth any the less: 'but it's a bold measure to come here\nafterwards. Not like your discretion! You conspirators, and hiders,\nand runners-away, should know better than that. Will you oblige me by\ngoing?'\n\n'My lad,' gasped the Captain, in a choked and trembling voice, and\nwith a curious action going on in the ponderous fist; 'there's a many\nwords I could wish to say to you, but I don't rightly know where\nthey're stowed just at present. My young friend, Wal'r, was drownded\nonly last night, according to my reckoning, and it puts me out, you\nsee. But you and me will come alongside o'one another again, my lad,'\nsaid the Captain, holding up his hook, if we live.'\n\n'It will be anything but shrewd in you, my good fellow, if we do,'\nreturned the Manager, with the same frankness; 'for you may rely, I\ngive you fair warning, upon my detecting and exposing you. I don't\npretend to be a more moral man than my neighbours, my good Captain;\nbut the confidence of this House, or of any member of this House, is\nnot to be abused and undermined while I have eyes and ears. Good day!'\nsaid Mr Carker, nodding his head.\n\nCaptain Cuttle, looking at him steadily (Mr Carker looked full as\nsteadily at the Captain), went out of the office and left him standing\nastride before the fire, as calm and pleasant as if there were no more\nspots upon his soul than on his pure white linen, and his smooth sleek\nskin.\n\nThe Captain glanced, in passing through the outer counting-house,\nat the desk where he knew poor Walter had been used to sit, now\noccupied by another young boy, with a face almost as fresh and hopeful\nas his on the day when they tapped the famous last bottle but one of\nthe old Madeira, in the little back parlour. The nation of ideas, thus\nawakened, did the Captain a great deal of good; it softened him in the\nvery height of his anger, and brought the tears into his eyes.\n\nArrived at the wooden Midshipman's again, and sitting down in a\ncorner of the dark shop, the Captain's indignation, strong as it was,\ncould make no head against his grief. Passion seemed not only to do\nwrong and violence to the memory of the dead, but to be infected by\ndeath, and to droop and decline beside it. All the living knaves and\nliars in the world, were nothing to the honesty and truth of one dead\nfriend.\n\nThe only thing the honest Captain made out clearly, in this state\nof mind, besides the loss of Walter, was, that with him almost the\nwhole world of Captain Cuttle had been drowned. If he reproached\nhimself sometimes, and keenly too, for having ever connived at\nWalter's innocent deceit, he thought at least as often of the Mr\nCarker whom no sea could ever render up; and the Mr Dombey, whom he\nnow began to perceive was as far beyond human recall; and the 'Heart's\nDelight,' with whom he must never foregather again; and the Lovely\nPeg, that teak-built and trim ballad, that had gone ashore upon a\nrock, and split into mere planks and beams of rhyme. The Captain sat\nin the dark shop, thinking of these things, to the entire exclusion of\nhis own injury; and looking with as sad an eye upon the ground, as if\nin contemplation of their actual fragments, as they floated past\n\nBut the Captain was not unmindful, for all that, of such decent and\nrest observances in memory of poor Walter, as he felt within his\npower. Rousing himself, and rousing Rob the Grinder (who in the\nunnatural twilight was fast asleep), the Captain sallied forth with\nhis attendant at his heels, and the door-key in his pocket, and\nrepairing to one of those convenient slop-selling establishments of\nwhich there is abundant choice at the eastern end of London, purchased\non the spot two suits of mourning - one for Rob the Grinder, which was\nimmensely too small, and one for himself, which was immensely too\nlarge. He also provided Rob with a species of hat, greatly to be\nadmired for its symmetry and usefulness, as well as for a happy\nblending of the mariner with the coal-heaver; which is usually termed\na sou'wester; and which was something of a novelty in connexion with\nthe instrument business. In their several garments, which the vendor\ndeclared to be such a miracle in point of fit as nothing but a rare\ncombination of fortuitous circumstances ever brought about, and the\nfashion of which was unparalleled within the memory of the oldest\ninhabitant, the Captain and Grinder immediately arrayed themselves:\npresenting a spectacle fraught with wonder to all who beheld it.\n\nIn this altered form, the Captain received Mr Toots. 'I'm took\naback, my lad, at present,' said the Captain, 'and will only confirm\nthat there ill news. Tell the young woman to break it gentle to the\nyoung lady, and for neither of 'em never to think of me no more -\n'special, mind you, that is - though I will think of them, when night\ncomes on a hurricane and seas is mountains rowling, for which overhaul\nyour Doctor Watts, brother, and when found make a note on.\"\n\nThe Captain reserved, until some fitter time, the consideration of\nMr Toots's offer of friendship, and thus dismissed him. Captain\nCuttle's spirits were so low, in truth, that he half determined, that\nday, to take no further precautions against surprise from Mrs\nMacStinger, but to abandon himself recklessly to chance, and be\nindifferent to what might happen. As evening came on, he fell into a\nbetter frame of mind, however; and spoke much of Walter to Rob the\nGrinder, whose attention and fidelity he likewise incidentally\ncommended. Rob did not blush to hear the Captain earnest in his\npraises, but sat staring at him, and affecting to snivel with\nsympathy, and making a feint of being virtuous, and treasuring up\nevery word he said (like a young spy as he was) with very promising\ndeceit.\n\nWhen Rob had turned in, and was fast asleep, the Captain trimmed\nthe candle, put on his spectacles - he had felt it appropriate to take\nto spectacles on entering into the Instrument Trade, though his eyes\nwere like a hawk's - and opened the prayer-book at the Burial Service.\nAnd reading softly to himself, in the little back parlour, and\nstopping now and then to wipe his eyes, the Captain, In a true and\nsimple spirit, committed Walter's body to the deep.\n\n\n\nCHAPTER 33.\n\nContrasts\n\n\n\nTurn we our eyes upon two homes; not lying side by side, but wide\napart, though both within easy range and reach of the great city of\nLondon.\n\nThe first is situated in the green and wooded country near Norwood.\nIt is not a mansion; it is of no pretensions as to size; but it is\nbeautifully arranged, and tastefully kept. The lawn, the soft, smooth\nslope, the flower-garden, the clumps of trees where graceful forms of\nash and willow are not wanting, the conservatory, the rustic verandah\nwith sweet-smelling creeping plants entwined about the pillars, the\nsimple exterior of the house, the well-ordered offices, though all\nupon the diminutive scale proper to a mere cottage, bespeak an amount\nof elegant comfort within, that might serve for a palace. This\nindication is not without warrant; for, within, it is a house of\nrefinement and luxury. Rich colours, excellently blended, meet the eye\nat every turn; in the furniture - its proportions admirably devised to\nsuit the shapes and sizes of the small rooms; on the walls; upon the\nfloors; tingeing and subduing the light that comes in through the odd\nglass doors and windows here and there. There are a few choice prints\nand pictures too; in quaint nooks and recesses there is no want of\nbooks; and there are games of skill and chance set forth on tables -\nfantastic chessmen, dice, backgammon, cards, and billiards.\n\nAnd yet amidst this opulence of comfort, there is something in the\ngeneral air that is not well. Is it that the carpets and the cushions\nare too soft and noiseless, so that those who move or repose among\nthem seem to act by stealth? Is it that the prints and pictures do not\ncommemorate great thoughts or deeds, or render nature in the Poetry of\nlandscape, hall, or hut, but are of one voluptuous cast - mere shows\nof form and colour - and no more? Is it that the books have all their\ngold outside, and that the titles of the greater part qualify them to\nbe companions of the prints and pictures? Is it that the completeness\nand the beauty of the place are here and there belied by an\naffectation of humility, in some unimportant and inexpensive regard,\nwhich is as false as the face of the too truly painted portrait\nhanging yonder, or its original at breakfast in his easy chair below\nit? Or is it that, with the daily breath of that original and master\nof all here, there issues forth some subtle portion of himself, which\ngives a vague expression of himself to everything about him?\n\nIt is Mr Carker the Manager who sits in the easy chair. A gaudy\nparrot in a burnished cage upon the table tears at the wires with her\nbeak, and goes walking, upside down, in its dome-top, shaking her\nhouse and screeching; but Mr Carker is indifferent to the bird, and\nlooks with a musing smile at a picture on the opposite wall.\n\n'A most extraordinary accidental likeness, certainly,' says he.\n\nPerhaps it is a Juno; perhaps a Potiphar's Wife'; perhaps some\nscornful Nymph - according as the Picture Dealers found the market,\nwhen they christened it. It is the figure of a woman, supremely\nhandsome, who, turning away, but with her face addressed to the\nspectator, flashes her proud glance upon him.\n\nIt is like Edith.\n\nWith a passing gesture of his hand at the picture - what! a menace?\nNo; yet something like it. A wave as of triumph? No; yet more like\nthat. An insolent salute wafted from his lips? No; yet like that too -\nhe resumes his breakfast, and calls to the chafing and imprisoned\nbird, who coming down into a pendant gilded hoop within the cage, like\na great wedding-ring, swings in it, for his delight.\n\nThe second home is on the other side of London, near to where the\nbusy great north road of bygone days is silent and almost deserted,\nexcept by wayfarers who toil along on foot. It is a poor small house,\nbarely and sparely furnished, but very clean; and there is even an\nattempt to decorate it, shown in the homely flowers trained about the\nporch and in the narrow garden. The neighbourhood in which it stands\nhas as little of the country to recommend'it, as it has of the town.\nIt is neither of the town nor country. The former, like the giant in\nhis travelling boots, has made a stride and passed it, and has set his\nbrick-and-mortar heel a long way in advance; but the intermediate\nspace between the giant's feet, as yet, is only blighted country, and\nnot town; and, here, among a few tall chimneys belching smoke all day\nand night, and among the brick-fields and the lanes where turf is cut,\nand where the fences tumble down, and where the dusty nettles grow,\nand where a scrap or two of hedge may yet be seen, and where the\nbird-catcher still comes occasionally, though he swears every time to\ncome no more - this second home is to be found.'\n\nShe who inhabits it, is she who left the first in her devotion to\nan outcast brother. She withdrew from that home its redeeming spirit,\nand from its master's breast his solitary angel: but though his liking\nfor her is gone, after this ungrateful slight as he considers it; and\nthough he abandons her altogether in return, an old idea of her is not\nquite forgotten even by him. Let her flower-garden, in which he never\nsets his foot, but which is yet maintained, among all his costly\nalterations, as if she had quitted it but yesterday, bear witness!\n\nHarriet Carker has changed since then, and on her beauty there has\nfallen a heavier shade than Time of his unassisted self can cast,\nall-potent as he is - the shadow of anxiety and sorrow, and the daily\nstruggle of a poor existence. But it is beauty still; and still a\ngentle, quiet, and retiring beauty that must be sought out, for it\ncannot vaunt itself; if it could, it would be what it is, no more.\n\nYes. This slight, small, patient figure, neatly dressed in homely\nstuffs, and indicating nothing but the dull, household virtues, that\nhave so little in common with the received idea of heroism and\ngreatness, unless, indeed, any ray of them should shine through the\nlives of the great ones of the earth, when it becomes a constellation\nand is tracked in Heaven straightway - this slight, small, patient\nfigure, leaning on the man still young but worn and grey, is she, his\nsister, who, of all the world, went over to him in his shame and put\nher hand in his, and with a sweet composure and determination, led him\nhopefully upon his barren way.\n\n'It is early, John,' she said. 'Why do you go so early?'\n\n'Not many minutes earlier than usual, Harriet. If I have the time\nto spare, I should like, I think - it's a fancy - to walk once by the\nhouse where I took leave of him.'\n\n'I wish I had ever seen or known him, John.'\n\n'It is better as it is, my dear, remembering his fate.'\n\n'But I could not regret it more, though I had known him. Is not\nyour sorrow mine? And if I had, perhaps you would feel that I was a\nbetter companion to you in speaking about him, than I may seem now.\n\n'My dearest sister! Is there anything within the range of rejoicing\nor regret, in which I am not sure of your companionship?'\n\n'I hope you think not, John, for surely there is nothing!'\n\n'How could you be better to me, or nearer to me then, than you are\nin this, or anything?' said her brother. 'I feel that you did know\nhim, Harriet, and that you shared my feelings towards him.'\n\nShe drew the hand which had been resting on his shoulder, round his\nneck, and answered, with some hesitation:\n\n'No, not quite.'\n\n'True, true!' he said; 'you think I might have done him no harm if\nI had allowed myself to know him better?'\n\n'Think! I know it.'\n\n'Designedly, Heaven knows I would not,' he replied, shaking his\nhead mournfully; 'but his reputation was too precious to be perilled\nby such association. Whether you share that knowledge, or do not, my\ndear - '\n\n'I do not,' she said quietly.\n\n'It is still the truth, Harriet, and my mind is lighter when I\nthink of him for that which made it so much heavier then.' He checked\nhimself in his tone of melancholy, and smiled upon her as he said\n'Good-bye!'\n\n'Good-bye, dear John! In the evening, at the old time and place, I\nshall meet you as usual on your way home. Good-bye.'\n\nThe cordial face she lifted up to his to kiss him, was his home,\nhis life, his universe, and yet it was a portion of his punishment and\ngrief; for in the cloud he saw upon it - though serene and calm as any\nradiant cloud at sunset - and in the constancy and devotion of her\nlife, and in the sacrifice she had made of ease, enjoyment, and hope,\nhe saw the bitter fruits of his old crime, for ever ripe and fresh.\n\nShe stood at the door looking after him, with her hands loosely\nclasped in each other, as he made his way over the frowzy and uneven\npatch of ground which lay before their house, which had once (and not\nlong ago) been a pleasant meadow, and was now a very waste, with a\ndisorderly crop of beginnings of mean houses, rising out of the\nrubbish, as if they had been unskilfully sown there. Whenever he\nlooked back - as once or twice he did - her cordial face shone like a\nlight upon his heart; but when he plodded on his way, and saw her not,\nthe tears were in her eyes as she stood watching him.\n\nHer pensive form was not long idle at the door. There was daily\nduty to discharge, and daily work to do - for such commonplace spirits\nthat are not heroic, often work hard with their hands - and Harriet\nwas soon busy with her household tasks. These discharged, and the poor\nhouse made quite neat and orderly, she counted her little stock of\nmoney, with an anxious face, and went out thoughtfully to buy some\nnecessaries for their table, planning and conniving, as she went, how\nto save. So sordid are the lives of such lo natures, who are not only\nnot heroic to their valets and waiting-women, but have neither valets\nnor waiting-women to be heroic to withal!\n\nWhile she was absent, and there was no one in the house, there\napproached it by a different way from that the brother had taken, a\ngentleman, a very little past his prime of life perhaps, but of a\nhealthy florid hue, an upright presence, and a bright clear aspect,\nthat was gracious and good-humoured. His eyebrows were still black,\nand so was much of his hair; the sprinkling of grey observable among\nthe latter, graced the former very much, and showed his broad frank\nbrow and honest eyes to great advantage.\n\nAfter knocking once at the door, and obtaining no response, this\ngentleman sat down on a bench in the little porch to wait. A certain\nskilful action of his fingers as he hummed some bars, and beat time on\nthe seat beside him, seemed to denote the musician; and the\nextraordinary satisfaction he derived from humming something very slow\nand long, which had no recognisable tune, seemed to denote that he was\na scientific one.\n\nThe gentleman was still twirlIng a theme, which seemed to go round\nand round and round, and in and in and in, and to involve itself like\na corkscrew twirled upon a table, without getting any nearer to\nanything, when Harriet appeared returning. He rose up as she advanced,\nand stood with his head uncovered.\n\n'You are come again, Sir!' she said, faltering.\n\n'I take that liberty,' he answered. 'May I ask for five minutes of\nyour leisure?'\n\nAfter a moment's hesitation, she opened the door, and gave him\nadmission to the little parlour. The gentleman sat down there, drew\nhis chair to the table over against her, and said, in a voice that\nperfectly corresponded to his appearance, and with a simplicity that\nwas very engaging:\n\n'Miss Harriet, you cannot be proud. You signified to me, when I\ncalled t'other morning, that you were. Pardon me if I say that I\nlooked into your face while you spoke, and that it contradicted you. I\nlook into it again,' he added, laying his hand gently on her arm, for\nan instant, 'and it contradicts you more and more.'\n\nShe was somewhat confused and agitated, and could make no ready\nanswer.\n\n'It is the mirror of truth,' said her visitor, 'and gentleness.\nExcuse my trusting to it, and returning.'\n\nHis manner of saying these words, divested them entirely of the\ncharacter of compliments. It was so plain, grave, unaffected, and\nsincere, that she bent her head, as if at once to thank him, and\nacknowledge his sincerity.\n\n'The disparity between our ages,' said the gentleman, 'and the\nplainness of my purpose, empower me, I am glad to think, to speak my\nmind. That is my mind; and so you see me for the second time.'\n\n'There is a kind of pride, Sir,' she returned, after a moment's\nsilence, 'or what may be supposed to be pride, which is mere duty. I\nhope I cherish no other.'\n\n'For yourself,' he said.\n\n'For myself.'\n\n'But - pardon me - ' suggested the gentleman. 'For your brother\nJohn?'\n\n'Proud of his love, I am,' said Harriet, looking full upon her\nvisitor, and changing her manner on the instant - not that it was less\ncomposed and quiet, but that there was a deep impassioned earnestness\nin it that made the very tremble in her voice a part of her firmness,\n'and proud of him. Sir, you who strangely know the story of his life,\nand repeated it to me when you were here last - '\n\n'Merely to make my way into your confidence,' interposed the\ngentleman. 'For heaven's sake, don't suppose - '\n\n'I am sure,' she said, 'you revived it, in my hearing, with a kind\nand good purpose. I am quite sure of it.'\n\n'I thank you,' returned her visitor, pressing her hand hastily. 'I\nam much obliged to you. You do me justice, I assure you. You were\ngoing to say, that I, who know the story of John Carker's life - '\n\n'May think it pride in me,' she continued, 'when I say that I am\nproud of him! I am. You know the time was, when I was not - when I\ncould not be - but that is past. The humility of many years, the\nuncomplaining expiation, the true repentance, the terrible regret, the\npain I know he has even in my affection, which he thinks has cost me\ndear, though Heaven knows I am happy, but for his sorrow I - oh, Sir,\nafter what I have seen, let me conjure you, if you are in any place of\npower, and are ever wronged, never, for any wrong, inflict a\npunishment that cannot be recalled; while there is a GOD above us to\nwork changes in the hearts He made.'\n\n'Your brother is an altered man,' returned the gentleman,\ncompassionately. 'I assure you I don't doubt it.'\n\n'He was an altered man when he did wrong,' said Harriet. 'He is an\naltered man again, and is his true self now, believe me, Sir.'\n\n'But we go on, said her visitor, rubbing his forehead, in an absent\nmanner, with his hand, and then drumming thoughtfully on the table,\n'we go on in our clockwork routine, from day to day, and can't make\nout, or follow, these changes. They - they're a metaphysical sort of\nthing. We - we haven't leisure for it. We - we haven't courage.\nThey're not taught at schools or colleges, and we don't know how to\nset about it. In short, we are so d-------d business-like,' said the\ngentleman, walking to the window, and back, and sitting down again, in\na state of extreme dissatisfaction and vexation.\n\n'I am sure,' said the gentleman, rubbing his forehead again; and\ndrumming on the table as before, 'I have good reason to believe that a\njog-trot life, the same from day to day, would reconcile one to\nanything. One don't see anything, one don't hear anything, one don't\nknow anything; that's the fact. We go on taking everything for\ngranted, and so we go on, until whatever we do, good, bad, or\nindifferent, we do from habit. Habit is all I shall have to report,\nwhen I am called upon to plead to my conscience, on my death-bed.\n''Habit,\" says I; ''I was deaf, dumb, blind, and paralytic, to a\nmillion things, from habit.\" ''Very business-like indeed, Mr\nWhat's-your-name,' says Conscience, ''but it won't do here!\"'\n\nThe gentleman got up and walked to the window again and back:\nseriously uneasy, though giving his uneasiness this peculiar\nexpression.\n\n'Miss Harriet,' he said, resuming his chair, 'I wish you would let\nme serve you. Look at me; I ought to look honest, for I know I am so,\nat present. Do I?'\n\n'Yes,' she answered with a smile.\n\n'I believe every word you have said,' he returned. 'I am full of\nself-reproach that I might have known this and seen this, and known\nyou and seen you, any time these dozen years, and that I never have. I\nhardly know how I ever got here - creature that I am, not only of my\nown habit, but of other people'sl But having done so, let me do\nsomething. I ask it in all honour and respect. You inspire me with\nboth, in the highest degree. Let me do something.'\n\n'We are contented, Sir.'\n\n'No, no, not quite,' returned the gentleman. 'I think not quite.\nThere are some little comforts that might smooth your life, and his.\nAnd his!' he repeated, fancying that had made some impression on her.\n'I have been in the habit of thinking that there was nothing wanting\nto be done for him; that it was all settled and over; in short, of not\nthinking at all about it. I am different now. Let me do something for\nhim. You too,' said the visitor, with careful delicacy, 'have need to\nwatch your health closely, for his sake, and I fear it fails.'\n\n'Whoever you may be, Sir,' answered Harriet, raising her eyes to\nhis face, 'I am deeply grateful to you. I feel certain that in all you\nsay, you have no object in the world but kindness to us. But years\nhave passed since we began this life; and to take from my brother any\npart of what has so endeared him to me, and so proved his better\nresolution - any fragment of the merit of his unassisted, obscure, and\nforgotten reparation - would be to diminish the comfort it will be to\nhim and me, when that time comes to each of us, of which you spoke\njust now. I thank you better with these tears than any words. Believe\nit, pray.\n\nThe gentleman was moved, and put the hand she held out, to his\nlips, much as a tender father might kiss the hand of a dutiful child.\nBut more reverently.\n\n'If the day should ever come, said Harriet, 'when he is restored,\nin part, to the position he lost - '\n\n'Restored!' cried the gentleman, quickly. 'How can that be hoped\nfor? In whose hands does the power of any restoration lie? It is no\nmistake of mine, surely, to suppose that his having gained the\npriceless blessing of his life, is one cause of the animosity shown to\nhim by his brother.'\n\n'You touch upon a subject that is never breathed between us; not\neven between us,' said Harriet.\n\n'I beg your forgiveness,' said the visitor. 'I should have known\nit. I entreat you to forget that I have done so, inadvertently. And\nnow, as I dare urge no more - as I am not sure that I have a right to\ndo so - though Heaven knows, even that doubt may be habit,' said the\ngentleman, rubbing his head, as despondently as before, 'let me;\nthough a stranger, yet no stranger; ask two favours.'\n\n'What are they?' she inquired.\n\n'The first, that if you should see cause to change your resolution,\nyou will suffer me to be as your right hand. My name shall then be at\nyour service; it is useless now, and always insignificant.'\n\n'Our choice of friends,' she answered, smiling faintly, 'is not so\ngreat, that I need any time for consideration. I can promise that.'\n\n'The second, that you will allow me sometimes, say every Monday\nmorning, at nine o'clock - habit again - I must be businesslike,' said\nthe gentleman, with a whimsical inclination to quarrel with himself on\nthat head, 'in walking past, to see you at the door or window. I don't\nask to come in, as your brother will be gone out at that hour. I don't\nask to speak to you. I merely ask to see, for the satisfaction of my\nown mind, that you are well, and without intrusion to remind you, by\nthe sight of me, that you have a friend - an elderly friend,\ngrey-haired already, and fast growing greyer - whom you may ever\ncommand.'\n\nThe cordial face looked up in his; confided in it; and promised.\n\n'I understand, as before,' said the gentleman, rising, 'that you\npurpose not to mention my visit to John Carker, lest he should be at\nall distressed by my acquaintance with his history. I am glad of it,\nfor it is out of the ordinary course of things, and - habit again!'\nsaid the gentleman, checking himself impatiently, 'as if there were no\nbetter course than the ordinary course!'\n\nWith that he turned to go, and walking, bareheaded, to the outside\nof the little porch, took leave of her with such a happy mixture of\nunconstrained respect and unaffected interest, as no breeding could\nhave taught, no truth mistrusted, and nothing but a pure and single\nheart expressed.\n\nMany half-forgotten emotions were awakened in the sister's mind by\nthis visit. It was so very long since any other visitor had crossed\ntheir threshold; it was so very long since any voice of apathy had\nmade sad music in her ears; that the stranger's figure remained\npresent to her, hours afterwards, when she sat at the window, plying\nher needle; and his words seemed newly spoken, again and again. He had\ntouched the spring that opened her whole life; and if she lost him for\na short space, it was only among the many shapes of the one great\nrecollection of which that life was made.\n\nMusing and working by turns; now constraining herself to be steady\nat her needle for a long time together, and now letting her work fall,\nunregarded, on her lap, and straying wheresoever her busier thoughts\nled, Harriet Carker found the hours glide by her, and the day steal\non. The morning, which had been bright and clear, gradually became\novercast; a sharp wind set in; the rain fell heavily; and a dark mist\ndrooping over the distant town, hid it from the view.\n\nShe often looked with compassion, at such a time, upon the\nstragglers who came wandering into London, by the great highway hard\nby, and who, footsore and weary, and gazing fearfully at the huge town\nbefore them, as if foreboding that their misery there would be but as\na drop of water in the sea, or as a grain of sea-sand on the shore,\nwent shrinking on, cowering before the angry weather, and looking as\nif the very elements rejected them. Day after day, such travellers\ncrept past, but always, as she thought, In one direction - always\ntowards the town. Swallowed up in one phase or other of its immensity,\ntowards which they seemed impelled by a desperate fascination, they\nnever returned. Food for the hospitals, the churchyards, the prisons,\nthe river, fever, madness, vice, and death, - they passed on to the\nmonster, roaring in the distance, and were lost.\n\nThe chill wind was howling, and the rain was falling, and the day\nwas darkening moodily, when Harriet, raising her eyes from the work on\nwhich she had long since been engaged with unremitting constancy, saw\none of these travellers approaching.\n\nA woman. A solitary woman of some thirty years of age; tall;\nwell-formed; handsome; miserably dressed; the soil of many country\nroads in varied weather - dust, chalk, clay, gravel - clotted on her\ngrey cloak by the streaming wet; no bonnet on her head, nothing to\ndefend her rich black hair from the rain, but a torn handkerchief;\nwith the fluttering ends of which, and with her hair, the wind blinded\nher so that she often stopped to push them back, and look upon the way\nshe was going.\n\nShe was in the act of doing so, when Harriet observed her. As her\nhands, parting on her sunburnt forehead, swept across her face, and\nthrew aside the hindrances that encroached upon it, there was a\nreckless and regardless beauty in it: a dauntless and depraved\nindifference to more than weather: a carelessness of what was cast\nupon her bare head from Heaven or earth: that, coupled with her misery\nand loneliness, touched the heart of her fellow-woman. She thought of\nall that was perverted and debased within her, no less than without:\nof modest graces of the mind, hardened and steeled, like these\nattractions of the person; of the many gifts of the Creator flung to\nthe winds like the wild hair; of all the beautiful ruin upon which the\nstorm was beating and the night was coming.\n\nThinking of this, she did not turn away with a delicate indignation\n- too many of her own compassionate and tender sex too often do - but\npitied her.\n\nHer fallen sister came on, looking far before her, trying with her\neager eyes to pierce the mist in which the city was enshrouded, and\nglancing, now and then, from side to side, with the bewildered - and\nuncertain aspect of a stranger. Though her tread was bold and\ncourageous, she was fatigued, and after a moment of irresolution, -\nsat down upon a heap of stones; seeking no shelter from the rain, but\nletting it rain on her as it would.\n\nShe was now opposite the house; raising her head after resting it\nfor a moment on both hands, her eyes met those of Harriet.\n\nIn a moment, Harriet was at the door; and the other, rising from\nher seat at her beck, came slowly, and with no conciliatory look,\ntowards her.\n\n'Why do you rest in the rain?' said Harriet, gently.\n\n'Because I have no other resting-place,' was the reply.\n\n'But there are many places of shelter near here. This,' referring\nto the little porch, 'is better than where you were. You are very\nwelcome to rest here.'\n\nThe wanderer looked at her, in doubt and surprise, but without any\nexpression of thankfulness; and sitting down, and taking off one of\nher worn shoes to beat out the fragments of stone and dust that were\ninside, showed that her foot was cut and bleeding.\n\nHarriet uttering an expression of pity, the traveller looked up\nwith a contemptuous and incredulous smile.\n\n'Why, what's a torn foot to such as me?' she said. 'And what's a\ntorn foot in such as me, to such as you?'\n\n'Come in and wash it,' answered Harriet, mildly, 'and let me give\nyou something to bind it up.'\n\nThe woman caught her arm, and drawing it before her own eyes, hid\nthem against it, and wept. Not like a woman, but like a stern man\nsurprised into that weakness; with a violent heaving of her breast,\nand struggle for recovery, that showed how unusual the emotion was\nwith her.\n\nShe submitted to be led into the house, and, evidently more in\ngratitude than in any care for herself, washed and bound the injured\nplace. Harriet then put before her fragments of her own frugal dinner,\nand when she had eaten of them, though sparingly, besought her, before\nresuming her road (which she showed her anxiety to do), to dry her\nclothes before the fire. Again, more in gratitude than with any\nevidence of concern in her own behalf, she sat down in front of it,\nand unbinding the handkerchief about her head, and letting her thick\nwet hair fall down below her waist, sat drying it with the palms of\nher hands, and looking at the blaze.\n\n'I daresay you are thinking,' she said, lifting her head suddenly,\n'that I used to be handsome, once. I believe I was - I know I was -\nLook here!' She held up her hair roughly with both hands; seizing it\nas if she would have torn it out; then, threw it down again, and flung\nit back as though it were a heap of serpents.\n\n'Are you a stranger in this place?' asked Harriet.\n\n'A stranger!' she returned, stopping between each short reply, and\nlooking at the fire. 'Yes. Ten or a dozen years a stranger. I have had\nno almanack where I have been. Ten or a dozen years. I don't know this\npart. It's much altered since I went away.'\n\n'Have you been far?'\n\n'Very far. Months upon months over the sea, and far away even then.\nI have been where convicts go,' she added, looking full upon her\nentertainer. 'I have been one myself.'\n\n'Heaven help you and forgive you!' was the gentle answer.\n\n'Ah! Heaven help me and forgive me!' she returned, nodding her head\nat the fire. 'If man would help some of us a little more, God would\nforgive us all the sooner perhaps.'\n\nBut she was softened by the earnest manner, and the cordial face so\nfull of mildness and so free from judgment, of her, and said, less\nhardily:\n\n'We may be about the same age, you and me. If I am older, it is not\nabove a year or two. Oh think of that!'\n\nShe opened her arms, as though the exhibition of her outward form\nwould show the moral wretch she was; and letting them drop at her\nsides, hung down her head.\n\n'There is nothing we may not hope to repair; it is never too late\nto amend,' said Harriet. 'You are penitent\n\n'No,' she answered. 'I am not! I can't be. I am no such thing. Why\nshould I be penitent, and all the world go free? They talk to me of my\npenitence. Who's penitent for the wrongs that have been done to me?'\n\nShe rose up, bound her handkerchief about her head, and turned to\nmove away.\n\n'Where are you going?' said Harriet.\n\n'Yonder,' she answered, pointing with her hand. 'To London.'\n\n'Have you any home to go to?'\n\n'I think I have a mother. She's as much a mother, as her dwelling\nis a home,' she answered with a bitter laugh.\n\n'Take this,' cried Harriet, putting money in her hand. 'Try to do\nwell. It is very little, but for one day it may keep you from harm.'\n\n'Are you married?' said the other, faintly, as she took it.\n\n'No. I live here with my brother. We have not much to spare, or I\nwould give you more.'\n\n'Will you let me kiss you?'\n\nSeeing no scorn or repugnance in her face, the object of her\ncharity bent over her as she asked the question, and pressed her lips\nagainst her cheek. Once more she caught her arm, and covered her eyes\nwith it; and then was gone.\n\nGone into the deepening night, and howling wind, and pelting rain;\nurging her way on towards the mist-enshrouded city where the blurred\nlights gleamed; and with her black hair, and disordered head-gear,\nfluttering round her reckless face.\n\n\n\nCHAPTER 34.\n\nAnother Mother and Daughter\n\n\n\nIn an ugly and dark room, an old woman, ugly and dark too, sat\nlistening to the wind and rain, and crouching over a meagre fire. More\nconstant to the last-named occupation than the first, she never\nchanged her attitude, unless, when any stray drops of rain fell\nhissing on the smouldering embers, to raise her head with an awakened\nattention to the whistling and pattering outside, and gradually to let\nit fall again lower and lower and lower as she sunk into a brooding\nstate of thought, in which the noises of the night were as\nindistinctly regarded as is the monotonous rolling of a sea by one who\nsits in contemplation on its shore.\n\nThere was no light in the room save that which the fire afforded.\nGlaring sullenly from time to time like the eye of a fierce beast half\nasleep, it revealed no objects that needed to be jealous of a better\ndisplay. A heap of rags, a heap of bones, a wretched bed, two or three\nmutilated chairs or stools, the black walls and blacker ceiling, were\nall its winking brightness shone upon. As the old woman, with a\ngigantic and distorted image of herself thrown half upon the wall\nbehind her, half upon the roof above, sat bending over the few loose\nbricks within which it was pent, on the damp hearth of the chimney -\nfor there was no stove - she looked as if she were watching at some\nwitch's altar for a favourable token; and but that the movement of her\nchattering jaws and trembling chin was too frequent and too fast for\nthe slow flickering of the fire, it would have seemed an illusion\nwrought by the light, as it came and went, upon a face as motionless\nas the form to which it belonged.\n\nIf Florence could have stood within the room and looked upon the\noriginal of the shadow thrown upon the wall and roof as it cowered\nthus over the fire, a glance might have sufficed to recall the figure\nof Good Mrs Brown; notwithstanding that her childish recollection of\nthat terrible old woman was as grotesque and exaggerated a presentment\nof the truth, perhaps, as the shadow on the wall. But Florence was not\nthere to look on; and Good Mrs Brown remained unrecognised, and sat\nstaring at her fire, unobserved.\n\nAttracted by a louder sputtering than usual, as the rain came\nhissing down the chimney in a little stream, the old woman raised her\nhead, impatiently, to listen afresh. And this time she did not drop it\nagain; for there was a hand upon the door, and a footstep in the room.\n\n'Who's that?' she said, looking over her shoulder.\n\n'One who brings you news, was the answer, in a woman's voice.\n\n'News? Where from?'\n\n'From abroad.'\n\n'From beyond seas?' cried the old woman, starting up.\n\n'Ay, from beyond seas.'\n\nThe old woman raked the fire together, hurriedly, and going close\nto her visitor who had entered, and shut the door, and who now stood\nin the middle of the room, put her hand upon the drenched cloak, and\nturned the unresisting figure, so as to have it in the full light of\nthe fire. She did not find what she had expected, whatever that might\nbe; for she let the cloak go again, and uttered a querulous cry of\ndisappointment and misery.\n\n'What is the matter?' asked her visitor.\n\n'Oho! Oho!' cried the old woman, turning her face upward, with a\nterrible howl.\n\n'What is the matter?' asked the visitor again.\n\n'It's not my gal!' cried the old woman, tossing up her arms, and\nclasping her hands above her head. 'Where's my Alice? Where's my\nhandsome daughter? They've been the death of her!'\n\n'They've not been the death of her yet, if your name's Marwood,'\nsaid the visitor.\n\n'Have you seen my gal, then?' cried the old woman. 'Has she wrote\nto me?'\n\n'She said you couldn't read,' returned the other.\n\n'No more I can!' exclaimed the old woman, wringing her hands.\n\n'Have you no light here?' said the other, looking round the room.\n\nThe old woman, mumbling and shaking her head, and muttering to\nherself about her handsome daughter, brought a candle from a cupboard\nin the corner, and thrusting it into the fire with a trembling hand,\nlighted it with some difficulty and set it on the table. Its dirty\nwick burnt dimly at first, being choked in its own grease; and when\nthe bleared eyes and failing sight of the old woman could distinguish\nanything by its light, her visitor was sitting with her arms folded,\nher eyes turned downwards, and a handkerchief she had worn upon her\nhead lying on the table by her side.\n\n'She sent to me by word of mouth then, my gal, Alice?' mumbled the\nold woman, after waiting for some moments. 'What did she say?'\n\n'Look,' returned the visitor.\n\nThe old woman repeated the word in a scared uncertain way; and,\nshading her eyes, looked at the speaker, round the room, and at the\nspeaker once again.\n\n'Alice said look again, mother;' and the speaker fixed her eyes\nupon her.\n\nAgain the old woman looked round the room, and at her visitor, and\nround the room once more. Hastily seizing the candle, and rising from\nher seat, she held it to the visitor's face, uttered a loud cry, set\ndown the light, and fell upon her neck!\n\n'It's my gal! It's my Alice! It's my handsome daughter, living and\ncome back!' screamed the old woman, rocking herself to and fro upon\nthe breast that coldly suffered her embrace. 'It's my gal! It's my\nAlice! It's my handsome daughter, living and come back!' she screamed\nagain, dropping on the floor before her, clasping her knees, laying\nher head against them, and still rocking herself to and fro with every\nfrantic demonstration of which her vitality was capable.\n\n'Yes, mother,' returned Alice, stooping forward for a moment and\nkissing her, but endeavouring, even in the act, to disengage herself\nfrom her embrace. 'I am here, at last. Let go, mother; let go. Get up,\nand sit in your chair. What good does this do?'\n\n'She's come back harder than she went!' cried the mother, looking\nup in her face, and still holding to her knees. 'She don't care for\nme! after all these years, and all the wretched life I've led!'\n\n'Why> mother!' said Alice, shaking her ragged skirts to detach the\nold woman from them: 'there are two sides to that. There have been\nyears for me as well as you, and there has been wretchedness for me as\nwell as you. Get up, get up!'\n\nHer mother rose, and cried, and wrung her hands, and stood at a\nlittle distance gazing on her. Then she took the candle again, and\ngoing round her, surveyed her from head to foot, making a low moaning\nall the time. Then she put the candle down, resumed her chair, and\nbeating her hands together to a kind of weary tune, and rolling\nherself from side to side, continued moaning and wailing to herself.\n\nAlice got up, took off her wet cloak, and laid it aside. That done,\nshe sat down as before, and with her arms folded, and her eyes gazing\nat the fire, remained silently listening with a contemptuous face to\nher old mother's inarticulate complainings.\n\n'Did you expect to see me return as youthful as I went away,\nmother?' she said at length, turning her eyes upon the old woman. 'Did\nyou think a foreign life, like mine, was good for good looks? One\nwould believe so, to hear you!'\n\n'It ain't that!' cried the mother. 'She knows it!'\n\n'What is it then?' returned the daughter. 'It had best be something\nthat don't last, mother, or my way out is easier than my way in.\n\n'Hear that!' exclaimed the mother. 'After all these years she\nthreatens to desert me in the moment of her coming back again!'\n\n'I tell you, mother, for the second time, there have been years for\nme as well as you,' said Alice. 'Come back harder? Of course I have\ncome back harder. What else did you expect?'\n\n'Harder to me! To her own dear mother!' cried the old woman\n\n'I don't know who began to harden me, if my own dear mother\ndidn't,' she returned, sitting with her folded arms, and knitted\nbrows, and compressed lips as if she were bent on excluding, by force,\nevery softer feeling from her breast. 'Listen, mother, to a word or\ntwo. If we understand each other now, we shall not fall out any more,\nperhaps. I went away a girl, and have come back a woman. I went away\nundutiful enough, and have come back no better, you may swear. But\nhave you been very dutiful to me?'\n\n'I!' cried the old woman. 'To my gal! A mother dutiful to her own\nchild!'\n\n'It sounds unnatural, don't it?' returned the daughter, looking\ncoldly on her with her stern, regardless, hardy, beautiful face; 'but\nI have thought of it sometimes, in the course of my lone years, till I\nhave got used to it. I have heard some talk about duty first and last;\nbut it has always been of my duty to other people. I have wondered now\nand then - to pass away the time - whether no one ever owed any duty\nto me.\n\nHer mother sat mowing, and mumbling, and shaking her head, but\nwhether angrily or remorsefully, or in denial, or only in her physical\ninfirmity, did not appear.\n\n'There was a child called Alice Marwood,' said the daughter, with a\nlaugh, and looking down at herself in terrible derision of herself,\n'born, among poverty and neglect, and nursed in it. Nobody taught her,\nnobody stepped forward to help her, nobody cared for her.'\n\n'Nobody!' echoed the mother, pointing to herself, and striking her\nbreast.\n\n'The only care she knew,' returned the daughter, 'was to be beaten,\nand stinted, and abused sometimes; and she might have done better\nwithout that. She lived in homes like this, and in the streets, with a\ncrowd of little wretches like herself; and yet she brought good looks\nout of this childhood. So much the worse for her. She had better have\nbeen hunted and worried to death for ugliness.'\n\n'Go on! go on!' exclaimed the mother.\n\n'I am going on,' returned the daughter. 'There was a girl called\nAlice Marwood. She was handsome. She was taught too late, and taught\nall wrong. She was too well cared for, too well trained, too well\nhelped on, too much looked after. You were very fond of her - you were\nbetter off then. What came to that girl comes to thousands every year.\nIt was only ruin, and she was born to it.'\n\n'After all these years!' whined the old woman. 'My gal begins with\nthis.'\n\n'She'll soon have ended,' said the daughter. 'There was a criminal\ncalled Alice Marwood - a girl still, but deserted and an outcast. And\nshe was tried, and she was sentenced. And lord, how the gentlemen in\nthe Court talked about it! and how grave the judge was on her duty,\nand on her having perverted the gifts of nature - as if he didn't know\nbetter than anybody there, that they had been made curses to her! -\nand how he preached about the strong arm of the Law - so very strong\nto save her, when she was an innocent and helpless little wretch! -\nand how solemn and religious it all was! I have thought of that, many\ntimes since, to be sure!'\n\nShe folded her arms tightly on her breast, and laughed in a tone\nthat made the howl of the old woman musical.\n\n'So Alice Marwood was transported, mother,' she pursued, 'and was\nsent to learn her duty, where there was twenty times less duty, and\nmore wickedness, and wrong, and infamy, than here. And Alice Marwood\nis come back a woman. Such a woman as she ought to be, after all this.\nIn good time, there will be more solemnity, and more fine talk, and\nmore strong arm, most likely, and there will be an end of her; but the\ngentlemen needn't be afraid of being thrown out of work. There's\ncrowds of little wretches, boy and girl, growing up in any of the\nstreets they live in, that'll keep them to it till they've made their\nfortunes.'\n\nThe old woman leaned her elbows on the table, and resting her face\nupon her two hands, made a show of being in great distress - or really\nwas, perhaps.\n\n'There! I have done, mother,' said the daughter, with a motion of\nher head, as if in dismissal of the subject. 'I have said enough.\nDon't let you and I talk of being dutiful, whatever we do. Your\nchildhood was like mine, I suppose. So much the worse for both of us.\nI don't want to blame you, or to defend myself; why should I? That's\nall over long ago. But I am a woman - not a girl, now - and you and I\nneedn't make a show of our history, like the gentlemen in the Court.\nWe know all about it, well enough.'\n\nLost and degraded as she was, there was a beauty in her, both of\nface and form, which, even in its worst expression, could not but be\nrecognised as such by anyone regarding her with the least attention.\nAs she subsided into silence, and her face which had been harshly\nagitated, quieted down; while her dark eyes, fixed upon the fire,\nexchanged the reckless light that had animated them, for one that was\nsoftened by something like sorrow; there shone through all her wayworn\nmisery and fatigue, a ray of the departed radiance of the fallen\nangel.'\n\nHer mother, after watching her for some time without speaking,\nventured to steal her withered hand a little nearer to her across the\ntable; and finding that she permitted this, to touch her face, and\nsmooth her hair. With the feeling, as it seemed, that the old woman\nwas at least sincere in this show of interest, Alice made no movement\nto check her; so, advancing by degrees, she bound up her daughter's\nhair afresh, took off her wet shoes, if they deserved the name, spread\nsomething dry upon her shoulders, and hovered humbly about her,\nmuttering to herself, as she recognised her old features and\nexpression more and more.\n\n'You are very poor, mother, I see,' said Alice, looking round, when\nshe had sat thus for some time.\n\n'Bitter poor, my deary,' replied the old woman.\n\nShe admired her daughter, and was afraid of her. Perhaps her\nadmiration, such as it was, had originated long ago, when she first\nfound anything that was beautiful appearing in the midst of the\nsqualid fight of her existence. Perhaps her fear was referable, in\nsome sort, to the retrospect she had so lately heard. Be this as it\nmight, she stood, submissively and deferentially, before her child,\nand inclined her head, as if in a pitiful entreaty to be spared any\nfurther reproach.\n\n'How have you lived?'\n\n'By begging, my deary.\n\n'And pilfering, mother?'\n\n'Sometimes, Ally - in a very small way. I am old and timid. I have\ntaken trifles from children now and then, my deary, but not often. I\nhave tramped about the country, pet, and I know what I know. I have\nwatched.'\n\n'Watched?' returned the daughter, looking at her.\n\n'I have hung about a family, my deary,' said the mother, even more\nhumbly and submissively than before.\n\n'What family?'\n\n'Hush, darling. Don't be angry with me. I did it for the love of\nyou. In memory of my poor gal beyond seas.' She put out her hand\ndeprecatingly, and drawing it back again, laid it on her lips.\n\n'Years ago, my deary,' she pursued, glancing timidly at the\nattentive and stem face opposed to her, 'I came across his little\nchild, by chance.'\n\n'Whose child?'\n\n'Not his, Alice deary; don't look at me like that; not his. How\ncould it be his? You know he has none.'\n\n'Whose then?' returned the daughter. 'You said his.'\n\n'Hush, Ally; you frighten me, deary. Mr Dombey's - only Mr\nDombey's. Since then, darling, I have seen them often. I have seen\nhim.'\n\nIn uttering this last word, the old woman shrunk and recoiled, as\nif with sudden fear that her daughter would strike her. But though the\ndaughter's face was fixed upon her, and expressed the most vehement\npassion, she remained still: except that she clenched her arms tighter\nand tighter within each other, on her bosom, as if to restrain them by\nthat means from doing an injury to herself, or someone else, in the\nblind fury of the wrath that suddenly possessed her.\n\n'Little he thought who I was!' said the old woman, shaking her\nclenched hand.\n\n'And little he cared!' muttered her daughter, between her teeth.\n\n'But there we were, said the old woman, 'face to face. I spoke to\nhim, and he spoke to me. I sat and watched him as he went away down a\nlong grove of trees: and at every step he took, I cursed him soul and\nbody.'\n\n'He will thrive in spite of that,' returned the daughter\ndisdainfully.\n\n'Ay, he is thriving,' said the mother.\n\nShe held her peace; for the face and form before her were unshaped\nby rage. It seemed as if the bosom would burst with the emotions that\nstrove within it. The effort that constrained and held it pent up, was\nno less formidable than the rage itself: no less bespeaking the\nviolent and dangerous character of the woman who made it. But it\nsucceeded, and she asked, after a silence:\n\n'Is he married?'\n\n'No, deary,' said the mother.\n\n'Going to be?'\n\n'Not that I know of, deary. But his master and friend is married.\nOh, we may give him joy! We may give 'em all joy!' cried the old\nwoman, hugging herself with her lean arms in her exultation. 'Nothing\nbut joy to us will come of that marriage. Mind met'\n\nThe daughter looked at her for an explanation.\n\n'But you are wet and tired; hungry and thirsty,' said the old\nwoman, hobbling to the cupboard; 'and there's little here, and little'\n- diving down into her pocket, and jingling a few half- pence on the\ntable - 'little here. Have you any money, Alice, deary?'\n\nThe covetous, sharp, eager face, with which she 'asked the question\nand looked on, as her daughter took out of her bosom the little gift\nshe had so lately received, told almost as much of the history of this\nparent and child as the child herself had told in words.\n\n'Is that all?' said the mother.\n\n'I have no more. I should not have this, but for charity.'\n\n'But for charity, eh, deary?' said the old woman, bending greedily\nover the table to look at the money, which she appeared distrustful of\nher daughter's still retaining in her hand, and gazing on. 'Humph! six\nand six is twelve, and six eighteen - so - we must make the most of\nit. I'll go buy something to eat and drink.'\n\nWith greater alacrity than might have been expected in one of her\nappearance - for age and misery seemed to have made her as decrepit as\nugly - she began to occupy her trembling hands in tying an old bonnet\non her head, and folding a torn shawl about herself: still eyeing the\nmoney in her daughter's hand, with the same sharp desire.\n\n'What joy is to come to us of this marriage, mother?' asked the\ndaughter. 'You have not told me that.'\n\n'The joy,' she replied, attiring herself, with fumbling fingers,\n'of no love at all, and much pride and hate, my deary. The joy of\nconfusion and strife among 'em, proud as they are, and of danger -\ndanger, Alice!'\n\n'What danger?'\n\n'I have seen what I have seen. I know what I know!' chuckled the\nmother. 'Let some look to it. Let some be upon their guard. My gal may\nkeep good company yet!'\n\nThen, seeing that in the wondering earnestness with which her\ndaughter regarded her, her hand involuntarily closed upon the money,\nthe old woman made more speed to secure it, and hurriedly added, 'but\nI'll go buy something; I'll go buy something.'\n\nAs she stood with her hand stretched out before her daughter, her\ndaughter, glancing again at the money, put it to her lips before\nparting with it.\n\n'What, Ally! Do you kiss it?' chuckled the old woman. 'That's like\nme - I often do. Oh, it's so good to us!' squeezing her own tarnished\nhalfpence up to her bag of a throat, 'so good to us in everything but\nnot coming in heaps!'\n\n'I kiss it, mother,' said the daughter, 'or I did then - I don't\nknow that I ever did before - for the giver's sake.'\n\n'The giver, eh, deary?' retorted the old woman, whose dimmed eyes\nglistened as she took it. 'Ay! I'll kiss it for the giver's sake, too,\nwhen the giver can make it go farther. But I'll go spend it, deary.\nI'll be back directly.'\n\n'You seem to say you know a great deal, mother,' said the daughter,\nfollowing her to the door with her eyes. 'You have grown very wise\nsince we parted.'\n\n'Know!' croaked the old woman, coming back a step or two, 'I know\nmore than you think I know more than he thinks, deary, as I'll tell\nyou by and bye. I know all'\n\nThe daughter smiled incredulously.\n\n'I know of his brother, Alice,' said the old woman, stretching out\nher neck with a leer of malice absolutely frightful, 'who might have\nbeen where you have been - for stealing money - and who lives with his\nsister, over yonder, by the north road out of London.'\n\n'Where?'\n\n'By the north road out of London, deary. You shall see the house if\nyou like. It ain't much to boast of, genteel as his own is. No, no,\nno,' cried the old woman, shaking her head and laughing; for her\ndaughter had started up, 'not now; it's too far off; it's by the\nmilestone, where the stones are heaped; - to-morrow, deary, if it's\nfine, and you are in the humour. But I'll go spend - '\n\n'Stop!' and the daughter flung herself upon her, with her former\npassion raging like a fire. 'The sister is a fair-faced Devil, with\nbrown hair?'\n\nThe old woman, amazed and terrified, nodded her head.\n\n'I see the shadow of him in her face! It's a red house standing by\nitself. Before the door there is a small green porch.'\n\nAgain the old woman nodded.\n\n'In which I sat to-day! Give me back the money.'\n\n'Alice! Deary!'\n\n'Give me back the money, or you'll be hurt.'\n\nShe forced it from the old woman's hand as she spoke, and utterly\nindifferent to her complainings and entreaties, threw on the garments\nshe had taken off, and hurried out, with headlong speed.\n\nThe mother followed, limping after her as she could, and\nexpostulating with no more effect upon her than upon the wind and rain\nand darkness that encompassed them. Obdurate and fierce in her own\npurpose, and indifferent to all besides, the daughter defied the\nweather and the distance, as if she had known no travel or fatigue,\nand made for the house where she had been relieved. After some quarter\nof an hour's walking, the old woman, spent and out of breath, ventured\nto hold by her skirts; but she ventured no more, and they travelled on\nin silence through the wet and gloom. If the mother now and then\nuttered a word of complaint, she stifled it lest her daughter should\nbreak away from her and leave her behind; and the daughter was dumb.\n\nIt was within an hour or so of midnight, when they left the regular\nstreets behind them, and entered on the deeper gloom of that neutral\nground where the house was situated. The town lay in the distance,\nlurid and lowering; the bleak wind howled over the open space; all\naround was black, wild, desolate.\n\n'This is a fit place for me!' said the daughter, stopping to look\nback. 'I thought so, when I was here before, to-day.'\n\n'Alice, my deary,' cried the mother, pulling her gently by the\nskirt. 'Alice!'\n\n'What now, mother?'\n\n'Don't give the money back, my darling; please don't. We can't\nafford it. We want supper, deary. Money is money, whoever gives it.\nSay what you will, but keep the money.'\n\n'See there!' was all the daughter's answer. 'That is the house I\nmean. Is that it?'\n\nThe old woman nodded in the affirmative; and a few more paces\nbrought them to the threshold. There was the light of fire and candle\nin the room where Alice had sat to dry her clothes; and on her\nknocking at the door, John Carker appeared from that room.\n\nHe was surprised to see such visitors at such an hour, and asked\nAlice what she wanted.\n\n'I want your sister,' she said. 'The woman who gave me money\nto-day.'\n\nAt the sound of her raised voice, Harriet came out.\n\n'Oh!' said Alice. 'You are here! Do you remember me?'\n\n'Yes,' she answered, wondering.\n\nThe face that had humbled itself before her, looked on her now with\nsuch invincible hatred and defiance; and the hand that had gently\ntouched her arm, was clenched with such a show of evil purpose, as if\nit would gladly strangle her; that she drew close to her brother for\nprotection.\n\n'That I could speak with you, and not know you! That I could come\nnear you, and not feel what blood was running in your veins, by the\ntingling of my own!' said Alice, with a menacing gesture.\n\n'What do you mean? What have I done?'\n\n'Done!' returned the other. 'You have sat me by your fire; you have\ngiven me food and money; you have bestowed your compassion on me! You!\nwhose name I spit upon!'\n\nThe old woman, with a malevolence that made her uglIness quite\nawful, shook her withered hand at the brother and sister in\nconfirmation of her daughter, but plucked her by the skirts again,\nnevertheless, imploring her to keep the money.\n\n'If I dropped a tear upon your hand, may it wither it up! If I\nspoke a gentle word in your hearing, may it deafen you! If I touched\nyou with my lips, may the touch be poison to you! A curse upon this\nroof that gave me shelter! Sorrow and shame upon your head! Ruin upon\nall belonging to you!'\n\nAs she said the words, she threw the money down upon the ground,\nand spurned it with her foot.\n\n'I tread it in the dust: I wouldn't take it if it paved my way to\nHeaven! I would the bleeding foot that brought me here to-day, had\nrotted off, before it led me to your house!'\n\nHarriet, pale and trembling, restrained her brother, and suffered\nher to go on uninterrupted.\n\n'It was well that I should be pitied and forgiven by you, or anyone\nof your name, in the first hour of my return! It was well that you\nshould act the kind good lady to me! I'll thank you when I die; I'll\npray for you, and all your race, you may be sure!'\n\nWith a fierce action of her hand, as if she sprinkled hatred on the\nground, and with it devoted those who were standing there to\ndestruction, she looked up once at the black sky, and strode out into\nthe wild night.\n\nThe mother, who had plucked at her skirts again and again in vain,\nand had eyed the money lying on the threshold with an absorbing greed\nthat seemed to concentrate her faculties upon it, would have prowled\nabout, until the house was dark, and then groped in the mire on the\nchance of repossessing herself of it. But the daughter drew her away,\nand they set forth, straight, on their return to their dwelling; the\nold woman whimpering and bemoaning their loss upon the road, and\nfretfully bewailing, as openly as she dared, the undutiful conduct of\nher handsome girl in depriving her of a supper, on the very first\nnight of their reunion.\n\nSupperless to bed she went, saving for a few coarse fragments; and\nthose she sat mumbling and munching over a scrap of fire, long after\nher undutiful daughter lay asleep.\n\nWere this miserable mother, and this miserable daughter, only the\nreduction to their lowest grade, of certain social vices sometimes\nprevailing higher up? In this round world of many circles within\ncircles, do we make a weary journey from the high grade to the low, to\nfind at last that they lie close together, that the two extremes\ntouch, and that our journey's end is but our starting-place? Allowing\nfor great difference of stuff and texture, was the pattern of this\nwoof repeated among gentle blood at all?\n\nSay, Edith Dombey! And Cleopatra, best of mothers, let us have your\ntestimony!\n\n\n\nCHAPTER 35.\n\nThe Happy Pair\n\n\n\nThe dark blot on the street is gone. Mr Dombey's mansion, if it be\na gap among the other houses any longer, is only so because it is not\nto be vied with in its brightness, and haughtily casts them off. The\nsaying is, that home is home, be it never so homely. If it hold good\nin the opposite contingency, and home is home be it never so stately,\nwhat an altar to the Household Gods is raised up here!\n\nLights are sparkling in the windows this evening, and the ruddy\nglow of fires is warm and bright upon the hangings and soft carpets,\nand the dinner waits to be served, and the dinner-table is handsomely\nset forth, though only for four persons, and the side board is\ncumbrous with plate. It is the first time that the house has been\narranged for occupation since its late changes, and the happy pair are\nlooked for every minute.\n\nOnly second to the wedding morning, in the interest and expectation\nit engenders among the household, is this evening of the coming home.\nMrs Perch is in the kitchen taking tea; and has made the tour of the\nestablishment, and priced the silks and damasks by the yard, and\nexhausted every interjection in the dictionary and out of it\nexpressive of admiration and wonder. The upholsterer's foreman, who\nhas left his hat, with a pocket-handkerchief in it, both smelling\nstrongly of varnish, under a chair in the hall, lurks about the house,\ngazing upwards at the cornices, and downward at the carpets, and\noccasionally, in a silent transport of enjoyment, taking a rule out of\nhis pocket, and skirmishingly measuring expensive objects, with\nunutterable feelings. Cook is in high spirits, and says give her a\nplace where there's plenty of company (as she'll bet you sixpence\nthere will be now), for she is of a lively disposition, and she always\nwas from a child, and she don't mind who knows it; which sentiment\nelicits from the breast of Mrs Perch a responsive murmur of support\nand approbation. All the housemaid hopes is, happiness for 'em - but\nmarriage is a lottery, and the more she thinks about it, the more she\nfeels the independence and the safety of a single life. Mr Towlinson\nis saturnine and grim' and says that's his opinion too, and give him\nWar besides, and down with the French - for this young man has a\ngeneral impression that every foreigner is a Frenchman, and must be by\nthe laws of nature.\n\nAt each new sound of wheels, they all stop> whatever they are\nsaying, and listen; and more than once there is a general starting up\nand a cry of 'Here they are!' But here they are not yet; and Cook\nbegins to mourn over the dinner, which has been put back twice, and\nthe upholsterer's foreman still goes lurking about the rooms,\nundisturbed in his blissful reverie!\n\nFlorence is ready to receive her father and her new Mama Whether\nthe emotions that are throbbing in her breast originate In pleasure or\nin pain, she hardly knows. But the fluttering heart sends added colour\nto her cheeks, and brightness to her eyes; and they say downstairs,\ndrawing their heads together - for they always speak softly when they\nspeak of her - how beautiful Miss Florence looks to-night, and what a\nsweet young lady she has grown, poor dear! A pause succeeds; and then\nCook, feeling, as president, that her sentiments are waited for,\nwonders whether - and there stops. The housemaid wonders too, and so\ndoes Mrs Perch, who has the happy social faculty of always wondering\nwhen other people wonder, without being at all particular what she\nwonders at. Mr Towlinson, who now descries an opportunity of bringing\ndown the spirits of the ladies to his own level, says wait and see; he\nwishes some people were well out of this. Cook leads a sigh then, and\na murmur of 'Ah, it's a strange world, it is indeed!' and when it has\ngone round the table, adds persuasively, 'but Miss Florence can't well\nbe the worse for any change, Tom.' Mr Towlinson's rejoinder, pregnant\nwith frightful meaning, is 'Oh, can't she though!' and sensible that a\nmere man can scarcely be more prophetic, or improve upon that, he\nholds his peace.\n\nMrs Skewton, prepared to greet her darling daughter and dear\nson-in-law with open arms, is appropriately attired for that purpose\nin a very youthful costume, with short sleeves. At present, however,\nher ripe charms are blooming in the shade of her own apartments,\nwhence she had not emerged since she took possession of them a few\nhours ago, and where she is fast growing fretful, on account of the\npostponement of dinner. The maid who ought to be a skeleton, but is in\ntruth a buxom damsel, is, on the other hand, In a most amiable state:\nconsidering her quarterly stipend much safer than heretofore, and\nforeseeing a great improvement in her board and lodging.\n\nWhere are the happy pair, for whom this brave home is waiting? Do\nsteam, tide, wind, and horses, all abate their speed, to linger on\nsuch happiness? Does the swarm of loves and graces hovering about them\nretard their progress by its numbers? Are there so many flowers in\ntheir happy path, that they can scarcely move along, without\nentanglement in thornless roses, and sweetest briar?\n\nThey are here at last! The noise of wheels is heard, grows louder,\nand a carriage drives up to the door! A thundering knock from the\nobnoxious foreigner anticipates the rush of Mr Towlinson and party to\nopen it; and Mr Dombey and his bride alight, and walk in arm in arm.\n\n'My sweetest Edith!' cries an agitated voice upon the stairs. 'My\ndearest Dombey!' and the short sleeves wreath themselves about the\nhappy couple in turn, and embrace them.\n\nFlorence had come down to the hall too, but did not advance:\nreserving her timid welcome until these nearer and dearer transports\nshould subside. But the eyes of Edith sought her out, upon the\nthreshold; and dismissing her sensitive parent with a slight kiss on\nthe cheek, she hurried on to Florence and embraced her.\n\n'How do you do, Florence?' said Mr Dombey, putting out his hand.\n\nAs Florence, trembling, raised it to her lips, she met his glance.\nThe look was cold and distant enough, but it stirred her heart to\nthink that she observed in it something more of interest than he had\never shown before. It even expressed a kind of faint surprise, and not\na disagreeable surprise, at sight of her. She dared not raise her eyes\nto his any more; but she felt that he looked at her once again, and\nnot less favourably. Oh what a thrill of joy shot through her,\nawakened by even this intangible and baseless confirmation of her hope\nthat she would learn to win him, through her new and beautiful Mama!\n\n'You will not be long dressing, Mrs Dombey, I presume?' said Mr\nDombey.\n\n'I shall be ready immediately.'\n\n'Let them send up dinner in a quarter of an hour.'\n\nWith that Mr Dombey stalked away to his own dressing-room, and Mrs\nDombey went upstairs to hers. Mrs Skewton and Florence repaired to the\ndrawing-room, where that excellent mother considered it incumbent on\nher to shed a few irrepressible tears, supposed to be forced from her\nby her daughter's felicity; and which she was still drying, very\ngingerly, with a laced corner of her pocket-handkerchief, when her\nson-in-law appeared.\n\n'And how, my dearest Dombey, did you find that delightfullest of\ncities, Paris?' she asked, subduing her emotion.\n\n'It was cold,' returned Mr Dombey.\n\n'Gay as ever,' said Mrs Skewton, 'of course.\n\n'Not particularly. I thought it dull,' said Mr Dombey.\n\n'Fie, my dearest Dombey!' archly; 'dull!'\n\n'It made that impression upon me, Madam,' said Mr Dombey, with\ngrave politeness. 'I believe Mrs Dombey found it dull too. She\nmentioned once or twice that she thought it so.'\n\n'Why, you naughty girl!' cried Mrs Skewton, rallying her dear\nchild, who now entered, 'what dreadfully heretical things have you\nbeen saying about Paris?'\n\nEdith raised her eyebrows with an air of weariness; and passing the\nfolding-doors which were thrown open to display the suite of rooms in\ntheir new and handsome garniture, and barely glancing at them as she\npassed, sat down by Florence.\n\n'My dear Dombey,' said Mrs Skewton, 'how charmingly these people\nhave carried out every idea that we hinted. They have made a perfect\npalace of the house, positively.'\n\n'It is handsome,' said Mr Dombey, looking round. 'I directed that\nno expense should be spared; and all that money could do, has been\ndone, I believe.'\n\n'And what can it not do, dear Dombey?' observed Cleopatra.\n\n'It is powerful, Madam,' said Mr Dombey.\n\nHe looked in his solemn way towards his wife, but not a word said\nshe.\n\n'I hope, Mrs Dombey,' addressing her after a moment's silence, with\nespecial distinctness; 'that these alterations meet with your\napproval?'\n\n'They are as handsome as they can be,' she returned, with haughty\ncarelessness. 'They should be so, of' course. And I suppose they are.'\n\nAn expression of scorn was habitual to the proud face, and seemed\ninseparable from it; but the contempt with which it received any\nappeal to admiration, respect, or consideration on the ground of his\nriches, no matter how slight or ordinary in itself, was a new and\ndifferent expression, unequalled in intensity by any other of which it\nwas capable. Whether Mr Dombey, wrapped in his own greatness, was at\nall aware of this, or no, there had not been wanting opportunities\nalready for his complete enlightenment; and at that moment it might\nhave been effected by the one glance of the dark eye that lighted on\nhim, after it had rapidly and scornfully surveyed the theme of his\nself-glorification. He might have read in that one glance that nothing\nthat his wealth could do, though it were increased ten thousand fold,\ncould win him for its own sake, one look of softened recognition from\nthe defiant woman, linked to him, but arrayed with her whole soul\nagainst him. He might have read in that one glance that even for its\nsordid and mercenary influence upon herself, she spurned it, while she\nclaimed its utmost power as her right, her bargain - as the base and\nworthless recompense for which she had become his wife. He might have\nread in it that, ever baring her own head for the lightning of her own\ncontempt and pride to strike, the most innocent allusion to the power\nof his riches degraded her anew, sunk her deeper in her own respect,\nand made the blight and waste within her more complete.\n\nBut dinner was announced, and Mr Dombey led down Cleopatra; Edith\nand his daughter following. Sweeping past the gold and silver\ndemonstration on the sideboard as if it were heaped-up dirt, and\ndeigning to bestow no look upon the elegancies around her, she took\nher place at his board for the first time, and sat, like a statue, at\nthe feast.\n\nMr Dombey, being a good deal in the statue way himself, was well\nenough pleased to see his handsome wife immovable and proud and cold.\nHer deportment being always elegant and graceful, this as a general\nbehaviour was agreeable and congenial to him. Presiding, therefore,\nwith his accustomed dignity, and not at all reflecting on his wife by\nany warmth or hilarity of his own, he performed his share of the\nhonours of the table with a cool satisfaction; and the installation\ndinner, though not regarded downstairs as a great success, or very\npromising beginning, passed oil, above, in a sufficiently polite,\ngenteel, and frosty manner.\n\nSoon after tea' Mrs Skewton, who affected to be quite overcome and\nworn Out by her emotions of happiness, arising in the contemplation of\nher dear child united to the man of her heart, but who, there is\nreason to suppose, found this family party somewhat dull, as she\nyawned for one hour continually behind her fan, retired to bed. Edith,\nalso, silently withdrew and came back' no more. Thus, it happened that\nFlorence, who had been upstairs to have some conversation with\nDiogenes, returning to the drawing-room with her little work-basket,\nfound no one there but her father, who was walking to and fro, in\ndreary magnificence.\n\n'I beg your pardon. Shall I go away, Papa?' said Florence faintly,\nhesitating at the door.\n\n'No,' returned Mr Dombey, looking round over his shoulder; you can\ncome and go here, Florence, as you please. This is not my private\nroom.\n\nFlorence entered, and sat down at a distant little table with her\nwork: finding herself for the first time in her life - for the very\nfirst time within her memory from her infancy to that hour - alone\nwith her father, as his companion. She, his natural companion, his\nonly child, who in her lonely life and grief had known the suffering\nof a breaking heart; who, in her rejected love, had never breathed his\nname to God at night, but with a tearful blessing, heavier on him than\na curse; who had prayed to die young, so she might only die in his\narms; who had, all through, repaid the agony of slight and coldness,\nand dislike, with patient unexacting love, excusing him, and pleading\nfor him, like his better angel!\n\nShe trembled, and her eyes were dim. His figure seemed to grow in\nheight and bulk before her as he paced the room: now it was all\nblurred and indistinct; now clear again, and plain; and now she seemed\nto think that this had happened, just the same, a multitude of years\nago. She yearned towards him, and yet shrunk from his approach.\nUnnatural emotion in a child, innocent of wrong! Unnatural the hand\nthat had directed the sharp plough, which furrowed up her gentle\nnature for the sowing of its seeds!\n\nBent upon not distressing or offending him by her distress,\nFlorence controlled herself, and sat quietly at her work. After a few\nmore turns across and across the room, he left off pacing it; and\nwithdrawing into a shadowy corner at some distance, where there was an\neasy chair, covered his head with a handkerchief, and composed himself\nto sleep.\n\nIt was enough for Florence to sit there watching him; turning her\neyes towards his chair from time to time; watching him with her\nthoughts, when her face was intent upon her work; and sorrowfully glad\nto think that he could sleep, while she was there, and that he was not\nmade restless by her strange and long-forbidden presence.\n\nWhat would have been her thoughts if she had known that he was\nsteadily regarding her; that the veil upon his face, by accident or by\ndesign, was so adjusted that his sight was free, and that itnever\nwandered from her face face an instant That when she looked towards\nhim' In the obscure dark corner, her speaking eyes, more earnest and\npathetic in their voiceless speech than all the orators of all the\nworld, and impeaching him more nearly in their mute address, met his,\nand did not know it! That when she bent her head again over her work,\nhe drew his breath more easily, but with the same attention looked\nupon her still - upon her white brow and her falling hair, and busy\nhands; and once attracted, seemed to have no power to turn his eyes\naway!\n\nAnd what were his thoughts meanwhile? With what emotions did he\nprolong the attentive gaze covertly directed on his unknown daughter?\nWas there reproach to him in the quiet figure and the mild eyes? Had\nhe begun to her disregarded claims and did they touch him home at\nlast, and waken him to some sense of his cruel injustice?\n\nThere are yielding moments in the lives of the sternest and\nharshest men, though such men often keep their secret well. The sight\nofher in her beauty, almost changed into a woman without his\nknowledge, may have struck out some such moments even In his life of\npride. Some passing thought that he had had a happy home within his\nreach-had had a household spirit bending at has feet - had overlooked\nit in his stiffnecked sullen arrogance, and wandered away and lost\nhimself, may have engendered them. Some simple eloquence distinctly\nheard, though only uttered in her eyes, unconscious that he read them'\nas'By the death-beds I have tended, by the childhood I have suffered,\nby our meeting in this dreary house at midnight, by the cry wrung from\nme in the anguish of my heart, oh, father, turn to me and seek a\nrefuge in my love before it is too late!' may have arrested them.\nMeaner and lower thoughts, as that his dead boy was now superseded by\nnew ties, and he could forgive the having been supplanted in his\naffection, may have occasioned them. The mere association of her as an\nornament, with all the ornament and pomp about him, may have been\nsufficient. But as he looked, he softened to her, more and more. As he\nlooked, she became blended with the child he had loved, and he could\nhardly separate the two. As he looked, he saw her for an instant by a\nclearer and a brighter light, not bending over that child's pillow as\nhis rival - monstrous thought - but as the spirit of his home, and in\nthe action tending himself no less, as he sat once more with his\nbowed-down head upon his hand at the foot of the little bed. He felt\ninclined to speak to her, and call her to him. The words 'Florence,\ncome here!' were rising to his lips - but slowly and with difficulty,\nthey were so very strange - when they were checked and stifled by a\nfootstep on the stair.\n\nIt was his wife's. She had exchanged her dinner dress for a loose\nrobe, and unbound her hair, which fell freely about her neck. But this\nwas not the change in her that startled him.\n\n'Florence, dear,' she said, 'I have been looking for you\neverywhere.'\n\nAs she sat down by the side of Florence, she stooped and kissed her\nhand. He hardly knew his wife. She was so changed. It was not merely\nthat her smile was new to him - though that he had never seen; but her\nmanner, the tone of her voice, the light of her eyes, the interest,\nand confidence, and winning wish to please, expressed in all-this was\nnot Edith.\n\n'Softly, dear Mama. Papa is asleep.'\n\nIt was Edith now. She looked towards the corner where he was, and\nhe knew that face and manner very well.\n\n'I scarcely thought you could be here, Florence.'\n\nAgain, how altered and how softened, in an instant!\n\n'I left here early,' pursued Edith, 'purposely to sit upstairs and\ntalk with you. But, going to your room, I found my bird was flown, and\nI have been waiting there ever since, expecting its return.\n\nIf it had been a bird, indeed, she could not have taken it more\ntenderly and gently to her breast, than she did Florence.\n\n'Come, dear!'\n\n'Papa will not expect to find me, I suppose, when he wakes,'\nhesitated Florence.\n\n'Do you think he will, Florence?' said Edith, looking full upon\nher.\n\nFlorence drooped her head, and rose, and put up her work-basket\nEdith drew her hand through her arm, and they went out of the room\nlike sisters. Her very step was different and new to him' Mr Dombey\nthought, as his eyes followed her to the door.\n\nHe sat in his shadowy corner so long, that the church clocks struck\nthe hour three times before he moved that night. All that while his\nface was still intent upon the spot where Florence had been seated.\nThe room grew darker, as the candles waned and went out; but a\ndarkness gathered on his face, exceeding any that the night could\ncast, and rested there.\n\nFlorence and Edith, seated before the fire in the remote room where\nlittle Paul had died, talked together for a long time. Diogenes, who\nwas of the party, had at first objected to the admission of Edith,\nand, even In deference to his mistress's wish, had only permitted it\nunder growling protest. But, emerging by little and little from the\nante-room, whither he had retired in dudgeon, he soon appeared to\ncomprehend, that with the most amiable intentions he had made one of\nthose mistakes which will occasionally arise in the best-regulated\ndogs' minds; as a friendly apology for which he stuck himself up on\nend between the two, in a very hot place in front of the fire, and sat\npanting at it, with his tongue out, and a most imbecile expression of\ncountenance, listening to the conversation.\n\nIt turned, at first, on Florence's books and favourite pursuits,\nand on the manner in which she had beguiled the interval since the\nmarriage. The last theme opened up to her a subject which lay very\nnear her heart, and she said, with the tears starting to her eyes:\n\n'Oh, Mama! I have had a great sorrow since that day.'\n\n'You a great sorrow, Florence!'\n\n'Yes. Poor Walter is drowned.'\n\nFlorence spread her hands before her face, and wept with all her\nheart. Many as were the secret tears which Walter's fate had cost her,\nthey flowed yet, when she thought or spoke of him.\n\n'But tell me, dear,' said Edith, soothing her. 'Who was Walter?\nWhat was he to you?'\n\n'He was my brother, Mama. After dear Paul died, we said we would be\nbrother and sister. I had known him a long time - from a little child.\nHe knew Paul, who liked him very much; Paul said, almost at the last,\n\"Take care of Walter, dear Papa! I was fond of him!\" Walter had been\nbrought in to see him, and was there then - in this room.\n\n'And did he take care of Walter?' inquired Edith, sternly.\n\n'Papa? He appointed him to go abroad. He was drowned in shipwreck\non his voyage,' said Florence, sobbing.\n\n'Does he know that he is dead?' asked Edith.\n\n'I cannot tell, Mama. I have no means of knowing. Dear Mama!' cried\nFlorence, clinging to her as for help, and hiding her face upon her\nbosom, 'I know that you have seen - '\n\n'Stay! Stop, Florence.' Edith turned so pale, and spoke so\nearnestly, that Florence did not need her restraining hand upon her\nlips. 'Tell me all about Walter first; let me understand this history\nall through.'\n\nFlorence related it, and everything belonging to it, even down to\nthe friendship of Mr Toots, of whom she could hardly speak in her\ndistress without a tearful smile, although she was deeply grateful to\nhim. When she had concluded her account, to the whole of which Edith,\nholding her hand, listened with close attention, and when a silence\nhad succeeded, Edith said:\n\n'What is it that you know I have seen, Florence?'\n\n'That I am not,' said Florence, with the same mute appeal, and the\nsame quick concealment of her face as before, 'that I am not a\nfavourite child, Mama. I never have been. I have never known how to\nbe. I have missed the way, and had no one to show it to me. Oh, let me\nlearn from you how to become dearer to Papa Teach me! you, who can so\nwell!' and clinging closer to her, with some broken fervent words of\ngratitude and endearment, Florence, relieved of her sad secret, wept\nlong, but not as painfully as of yore, within the encircling arms of\nher new mother.\n\nPale even to her lips, and with a face that strove for composure\nuntil its proud beauty was as fixed as death, Edith looked down upon\nthe weeping girl, and once kissed her. Then gradually disengaging\nherself, and putting Florence away, she said, stately, and quiet as a\nmarble image, and in a voice that deepened as she spoke, but had no\nother token of emotion in it:\n\n'Florence, you do not know me! Heaven forbid that you should learn\nfrom me!'\n\n'Not learn from you?' repeated Florence, in surprise.\n\n'That I should teach you how to love, or be loved, Heaven forbid!'\nsaid Edith. 'If you could teach me, that were better; but it is too\nlate. You are dear to me, Florence. I did not think that anything\ncould ever be so dear to me, as you are in this little time.'\n\nShe saw that Florence would have spoken here, so checked her with\nher hand, and went on.\n\n'I will be your true friend always. I will cherish you, as much, if\nnot as well as anyone in this world could. You may trust in me - I\nknow it and I say it, dear, - with the whole confidence even of your\npure heart. There are hosts of women whom he might have married,\nbetter and truer in all other respects than I am, Florence; but there\nis not one who could come here, his wife, whose heart could beat with\ngreater truth to you than mine does.'\n\n'I know it, dear Mama!' cried Florence. 'From that first most happy\nday I have known it.'\n\n'Most happy day!' Edith seemed to repeat the words involuntarily,\nand went on. 'Though the merit is not mine, for I thought little of\nyou until I saw you, let the undeserved reward be mine in your trust\nand love. And in this - in this, Florence; on the first night of my\ntaking up my abode here; I am led on as it is best I should be, to say\nit for the first and last time.'\n\nFlorence, without knowing why, felt almost afraid to hear her\nproceed, but kept her eyes riveted on the beautiful face so fixed upon\nher own.\n\n'Never seek to find in me,' said Edith, laying her hand upon her\nbreast, 'what is not here. Never if you can help it, Florence, fall\noff from me because it is not here. Little by little you will know me\nbetter, and the time will come when you will know me, as I know\nmyself. Then, be as lenient to me as you can, and do not turn to\nbitterness the only sweet remembrance I shall have.\n\nThe tears that were visible in her eyes as she kept them fixed on\nFlorence, showed that the composed face was but as a handsome mask;\nbut she preserved it, and continued:\n\n'I have seen what you say, and know how true it is. But believe me\n- you will soon, if you cannot now - there is no one on this earth\nless qualified to set it right or help you, Florence, than I. Never\nask me why, or speak to me about it or of my husband, more. There\nshould be, so far, a division, and a silence between us two, like the\ngrave itself.'\n\nShe sat for some time silent; Florence scarcely venturing to\nbreathe meanwhile, as dim and imperfect shadows of the truth, and all\nits daily consequences, chased each other through her terrified, yet\nincredulous imagination. Almost as soon as she had ceased to speak,\nEdith's face began to subside from its set composure to that quieter\nand more relenting aspect, which it usually wore when she and Florence\nwere alone together. She shaded it, after this change, with her hands;\nand when she arose, and with an affectionate embrace bade Florence\ngood-night, went quickly, and without looking round.\n\nBut when Florence was in bed, and the room was dark except for the\nglow of the fire, Edith returned, and saying that she could not sleep,\nand that her dressing-room was lonely, drew a chair upon the hearth,\nand watched the embers as they died away. Florence watched them too\nfrom her bed, until they, and the noble figure before them, crowned\nwith its flowing hair, and in its thoughtful eyes reflecting back\ntheir light, became confused and indistinct, and finally were lost in\nslumber.\n\nIn her sleep, however, Florence could not lose an undefined\nimpression of what had so recently passed. It formed the subject of\nher dreams, and haunted her; now in one shape, now in another; but\nalways oppressively; and with a sense of fear. She dreamed of seeking\nher father in wildernesses, of following his track up fearful heights,\nand down into deep mines and caverns; of being charged with something\nthat would release him from extraordinary suffering - she knew not\nwhat, or why - yet never being able to attain the goal and set him\nfree. Then she saw him dead, upon that very bed, and in that very\nroom, and knew that he had never loved her to the last, and fell upon\nhis cold breast, passionately weeping. Then a prospect opened, and a\nriver flowed, and a plaintive voice she knew, cried, 'It is running\non, Floy! It has never stopped! You are moving with it!' And she saw\nhim at a distance stretching out his arms towards her, while a figure\nsuch as Walter's used to be, stood near him, awfully serene and still.\nIn every vision, Edith came and went, sometimes to her joy, sometimes\nto her sorrow, until they were alone upon the brink of a dark grave,\nand Edith pointing down, she looked and saw - what! - another Edith\nlying at the bottom.\n\nIn the terror of this dream, she cried out and awoke, she thought.\nA soft voice seemed to whisper in her ear, 'Florence, dear Florence,\nit is nothing but a dream!' and stretching out her arms, she returned\nthe caress of her new Mama, who then went out at the door in the light\nof the grey morning. In a moment, Florence sat up wondering whether\nthis had really taken place or not; but she was only certain that it\nwas grey morning indeed, and that the blackened ashes of the fire were\non the hearth, and that she was alone.\n\nSo passed the night on which the happy pair came home.\n\n\n\nCHAPTER 36.\n\nHousewarming\n\n\n\nMany succeeding days passed in like manner; except that there were\nnumerous visits received and paid, and that Mrs Skewton held little\nlevees in her own apartments, at which Major Bagstock was a frequent\nattendant, and that Florence encountered no second look from her\nfather, although she saw him every day. Nor had she much communication\nin words with her new Mama, who was imperious and proud to all the\nhouse but her - Florence could not but observe that - and who,\nalthough she always sent for her or went to her when she came home\nfrom visiting, and would always go into her room at night, before\nretiring to rest, however late the hour, and never lost an opportunity\nof being with her, was often her silent and thoughtful companion for a\nlong time together.\n\nFlorence, who had hoped for so much from this marriage, could not\nhelp sometimes comparing the bright house with the faded dreary place\nout of which it had arisen, and wondering when, in any shape, it would\nbegin to be a home; for that it was no home then, for anyone, though\neverything went on luxuriously and regularly, she had always a secret\nmisgiving. Many an hour of sorrowful reflection by day and night, and\nmany a tear of blighted hope, Florence bestowed upon the assurance her\nnew Mama had given her so strongly, that there was no one on the earth\nmore powerless than herself to teach her how to win her father's\nheart. And soon Florence began to think - resolved to think would be\nthe truer phrase - that as no one knew so well, how hopeless of being\nsubdued or changed her father's coldness to her was, so she had given\nher this warning, and forbidden the subject in very compassion.\nUnselfish here, as in her every act and fancy, Florence preferred to\nbear the pain of this new wound, rather than encourage any faint\nforeshadowings of the truth as it concerned her father; tender of him,\neven in her wandering thoughts. As for his home, she hoped it would\nbecome a better one, when its state of novelty and transition should\nbe over; and for herself, thought little and lamented less.\n\nIf none of the new family were particularly at home in private, it\nwas resolved that Mrs Dombey at least should be at home in public,\nwithout delay. A series of entertainments in celebration of the late\nnuptials, and in cultivation of society, were arranged, chiefly by Mr\nDombey and Mrs Skewton; and it was settled that the festive\nproceedings should commence by Mrs Dombey's being at home upon a\ncertain evening, and by Mr and Mrs Dombey's requesting the honour of\nthe company of a great many incongruous people to dinner on the same\nday.\n\nAccordingly, Mr Dombey produced a list of sundry eastern magnates\nwho were to be bidden to this feast on his behalf; to which Mrs\nSkewton, acting for her dearest child, who was haughtily careless on\nthe subject, subjoined a western list, comprising Cousin Feenix, not\nyet returned to Baden-Baden, greatly to the detriment of his personal\nestate; and a variety of moths of various degrees and ages, who had,\nat various times, fluttered round the light of her fair daughter, or\nherself, without any lasting injury to their wings. Florence was\nenrolled as a member of the dinner-party, by Edith's command -\nelicited by a moment's doubt and hesitation on the part of Mrs\nSkewton; and Florence, with a wondering heart, and with a quick\ninstinctive sense of everything that grated on her father in the\nleast, took her silent share in the proceedings of the day.\n\nThe proceedings commenced by Mr Dombey, in a cravat of\nextraordinary height and stiffness, walking restlessly about the\ndrawing-room until the hour appointed for dinner; punctual to which,\nan East India Director,' of immense wealth, in a waistcoat apparently\nconstructed in serviceable deal by some plain carpenter, but really\nengendered in the tailor's art, and composed of the material called\nnankeen, arrived and was received by Mr Dombey alone. The next stage\nof the proceedings was Mr Dombey's sending his compliments to Mrs\nDombey, with a correct statement of the time; and the next, the East\nIndia Director's falling prostrate, in a conversational point of view,\nand as Mr Dombey was not the man to pick him up, staring at the fire\nuntil rescue appeared in the shape of Mrs Skewton; whom the director,\nas a pleasant start in life for the evening, mistook for Mrs Dombey,\nand greeted with enthusiasm.\n\nThe next arrival was a Bank Director, reputed to be able to buy up\nanything - human Nature generally, if he should take it in his head to\ninfluence the money market in that direction - but who was a\nwonderfully modest-spoken man, almost boastfully so, and mentioned his\n'little place' at Kingston-upon-Thames, and its just being barely\nequal to giving Dombey a bed and a chop, if he would come and visit\nit. Ladies, he said, it was not for a man who lived in his quiet way\nto take upon himself to invite - but if Mrs Skewton and her daughter,\nMrs Dombey, should ever find themselves in that direction, and would\ndo him the honour to look at a little bit of a shrubbery they would\nfind there, and a poor little flower-bed or so, and a humble apology\nfor a pinery, and two or three little attempts of that sort without\nany pretension, they would distinguish him very much. Carrying out his\ncharacter, this gentleman was very plainly dressed, in a wisp of\ncambric for a neckcloth, big shoes, a coat that was too loose for him,\nand a pair of trousers that were too spare; and mention being made of\nthe Opera by Mrs Skewton, he said he very seldom went there, for he\ncouldn't afford it. It seemed greatly to delight and exhilarate him to\nsay so: and he beamed on his audience afterwards, with his hands in\nhis pockets, and excessive satisfaction twinkling in his eyes.\n\nNow Mrs Dombey appeared, beautiful and proud, and as disdainful and\ndefiant of them all as if the bridal wreath upon her head had been a\ngarland of steel spikes put on to force concession from her which she\nwould die sooner than yield. With her was Florence. When they entered\ntogether, the shadow of the night of the return again darkened Mr\nDombey's face. But unobserved; for Florence did not venture to raise\nher eyes to his, and Edith's indifference was too supreme to take the\nleast heed of him.\n\nThe arrivals quickly became numerous. More directors, chairmen of\npublic companies, elderly ladies carrying burdens on their heads for\nfull dress, Cousin Feenix, Major Bagstock, friends of Mrs Skewton,\nwith the same bright bloom on their complexion, and very precious\nnecklaces on very withered necks. Among these, a young lady of\nsixty-five, remarkably coolly dressed as to her back and shoulders,\nwho spoke with an engaging lisp, and whose eyelids wouldn't keep up\nwell, without a great deal of trouble on her part, and whose manners\nhad that indefinable charm which so frequently attaches to the\ngiddiness of youth. As the greater part of Mr Dombey's list were\ndisposed to be taciturn, and the greater part of Mrs Dombey's list\nwere disposed to be talkative, and there was no sympathy between them,\nMrs Dombey's list, by magnetic agreement, entered into a bond of union\nagainst Mr Dombey's list, who, wandering about the rooms in a desolate\nmanner, or seeking refuge in corners, entangled themselves with\ncompany coming in, and became barricaded behind sofas, and had doors\nopened smartly from without against their heads, and underwent every\nsort of discomfiture.\n\nWhen dinner was announced, Mr Dombey took down an old lady like a\ncrimson velvet pincushion stuffed with bank notes, who might have been\nthe identical old lady of Threadneedle Street, she was so rich, and\nlooked so unaccommodating; Cousin Feenix took down Mrs Dombey; Major\nBagstock took down Mrs Skewton; the young thing with the shoulders was\nbestowed, as an extinguisher, upon the East India Director; and the\nremaining ladies were left on view in the drawing-room by the\nremaining gentlemen, until a forlorn hope volunteered to conduct them\ndownstairs, and those brave spirits with their captives blocked up the\ndining-room door, shutting out seven mild men in the stony-hearted\nhall. When all the rest were got in and were seated, one of these mild\nmen still appeared, in smiling confusion, totally destitute and\nunprovided for, and, escorted by the butler, made the complete circuit\nof the table twice before his chair could be found, which it finally\nwas, on Mrs Dombey's left hand; after which the mild man never held up\nhis head again.\n\nNow, the spacious dining-room, with the company seated round the\nglittering table, busy with their glittering spoons, and knives and\nforks, and plates, might have been taken for a grown-up exposition of\nTom Tiddler's ground, where children pick up gold and silver.' Mr\nDombey, as Tiddler, looked his character to admiration; and the long\nplateau of precious metal frosted, separating him from Mrs Dombey,\nwhereon frosted Cupids offered scentless flowers to each of them, was\nallegorical to see.\n\nCousin Feenix was in great force, and looked astonishingly young.\nBut he was sometimes thoughtless in his good humour - his memory\noccasionally wandering like his legs - and on this occasion caused the\ncompany to shudder. It happened thus. The young lady with the back,\nwho regarded Cousin Feenix with sentiments of tenderness, had\nentrapped the East India Director into leading her to the chair next\nhim; in return for which good office, she immediately abandoned the\nDirector, who, being shaded on the other side by a gloomy black velvet\nhat surmounting a bony and speechless female with a fan, yielded to a\ndepression of spirits and withdrew into himself. Cousin Feenix and the\nyoung lady were very lively and humorous, and the young lady laughed\nso much at something Cousin Feenix related to her, that Major Bagstock\nbegged leave to inquire on behalf of Mrs Skewton (they were sitting\nopposite, a little lower down), whether that might not be considered\npublic property.\n\n'Why, upon my life,' said Cousin Feenix, 'there's nothing in it; it\nreally is not worth repeating: in point of fact, it's merely an\nanecdote of Jack Adams. I dare say my friend Dombey;' for the general\nattention was concentrated on Cousin Feenix; 'may remember Jack Adams,\nJack Adams, not Joe; that was his brother. Jack - little Jack - man\nwith a cast in his eye, and slight impediment in his speech - man who\nsat for somebody's borough. We used to call him in my parliamentary\ntime W. P. Adams, in consequence of his being Warming Pan for a young\nfellow who was in his minority. Perhaps my friend Dombey may have\nknown the man?'\n\nMr Dombey, who was as likely to have known Guy Fawkes, replied in\nthe negative. But one of the seven mild men unexpectedly leaped into\ndistinction, by saying he had known him, and adding - 'always wore\nHessian boots!'\n\n'Exactly,' said Cousin Feenix, bending forward to see the mild man,\nand smile encouragement at him down the table. 'That was Jack. Joe\nwore - '\n\n'Tops!' cried the mild man, rising in public estimation every\nInstant.\n\n'Of course,' said Cousin Feenix, 'you were intimate with em?'\n\n'I knew them both,' said the mild man. With whom Mr Dombey\nimmediately took wine.\n\n'Devilish good fellow, Jack!' said Cousin Feenix, again bending\nforward, and smiling.\n\n'Excellent,' returned the mild man, becoming bold on his success.\n'One of the best fellows I ever knew.'\n\n'No doubt you have heard the story?' said Cousin Feenix.\n\n'I shall know,' replied the bold mild man, 'when I have heard your\nLudship tell it.' With that, he leaned back in his chair and smiled at\nthe ceiling, as knowing it by heart, and being already tickled.\n\n'In point of fact, it's nothing of a story in itself,' said Cousin\nFeenix, addressing the table with a smile, and a gay shake of his\nhead, 'and not worth a word of preface. But it's illustrative of the\nneatness of Jack's humour. The fact is, that Jack was invited down to\na marriage - which I think took place in Berkshire?'\n\n'Shropshire,' said the bold mild man, finding himself appealed to.\n\n'Was it? Well! In point of fact it might have been in any shire,'\nsaid Cousin Feenix. 'So my friend being invited down to this marriage\nin Anyshire,' with a pleasant sense of the readiness of this joke,\n'goes. Just as some of us, having had the honour of being invited to\nthe marriage of my lovely and accomplished relative with my friend\nDombey, didn't require to be asked twice, and were devilish glad to be\npresent on so interesting an occasion. - Goes - Jack goes. Now, this\nmarriage was, in point of fact, the marriage of an uncommonly fine\ngirl with a man for whom she didn't care a button, but whom she\naccepted on account of his property, which was immense. When Jack\nreturned to town, after the nuptials, a man he knew, meeting him in\nthe lobby of the House of Commons, says, \"Well, Jack, how are the\nill-matched couple?\" \"Ill-matched,\" says Jack \"Not at all. It's a\nperfectly and equal transaction. She is regularly bought, and you may\ntake your oath he is as regularly sold!\"'\n\nIn his full enjoyment of this culminating point of his story, the\nshudder, which had gone all round the table like an electric spark,\nstruck Cousin Feenix, and he stopped. Not a smile occasioned by the\nonly general topic of conversation broached that day, appeared on any\nface. A profound silence ensued; and the wretched mild man, who had\nbeen as innocent of any real foreknowledge of the story as the child\nunborn, had the exquisite misery of reading in every eye that he was\nregarded as the prime mover of the mischief.\n\nMr Dombey's face was not a changeful one, and being cast in its\nmould of state that day, showed little other apprehension of the\nstory, if any, than that which he expressed when he said solemnly,\namidst the silence, that it was 'Very good.' There was a rapid glance\nfrom Edith towards Florence, but otherwise she remained, externally,\nimpassive and unconscious.\n\nThrough the various stages of rich meats and wines, continual gold\nand silver, dainties of earth, air, fire, and water, heaped-up fruits,\nand that unnecessary article in Mr Dombey's banquets - ice- the dinner\nslowly made its way: the later stages being achieved to the sonorous\nmusic of incessant double knocks, announcing the arrival of visitors,\nwhose portion of the feast was limited to the smell thereof. When Mrs\nDombey rose, it was a sight to see her lord, with stiff throat and\nerect head, hold the door open for the withdrawal of the ladies; and\nto see how she swept past him with his daughter on her arm.\n\nMr Dombey was a grave sight, behind the decanters, in a state of\ndignity; and the East India Director was a forlorn sight near the\nunoccupied end of the table, in a state of solitude; and the Major was\na military sight, relating stories of the Duke of York to six of the\nseven mild men (the ambitious one was utterly quenched); and the Bank\nDirector was a lowly sight, making a plan of his little attempt at a\npinery, with dessert-knives, for a group of admirers; and Cousin\nFeenix was a thoughtful sight, as he smoothed his long wristbands and\nstealthily adjusted his wig. But all these sights were of short\nduration, being speedily broken up by coffee, and the desertion of the\nroom.\n\nThere was a throng in the state-rooms upstairs, increasing every\nminute; but still Mr Dombey's list of visitors appeared to have some\nnative impossibility of amalgamation with Mrs Dombey's list, and no\none could have doubted which was which. The single exception to this\nrule perhaps was Mr Carker, who now smiled among the company, and who,\nas he stood in the circle that was gathered about Mrs Dombey -\nwatchful of her, of them, his chief, Cleopatra and the Major,\nFlorence, and everything around - appeared at ease with both divisions\nof guests, and not marked as exclusively belonging to either.\n\nFlorence had a dread of him, which made his presence in the room a\nnightmare to her. She could not avoid the recollection of it, for her\neyes were drawn towards him every now and then, by an attraction of\ndislike and distrust that she could not resist. Yet her thoughts were\nbusy with other things; for as she sat apart - not unadmired or\nunsought, but in the gentleness of her quiet spirit - she felt how\nlittle part her father had in what was going on, and saw, with pain,\nhow ill at ease he seemed to be, and how little regarded he was as he\nlingered about near the door, for those visitors whom he wished to\ndistinguish with particular attention, and took them up to introduce\nthem to his wife, who received them with proud coldness, but showed no\ninterest or wish to please, and never, after the bare ceremony of\nreception, in consultation of his wishes, or in welcome of his\nfriends, opened her lips. It was not the less perplexing or painful to\nFlorence, that she who acted thus, treated her so kindly and with such\nloving consideration, that it almost seemed an ungrateful return on\nher part even to know of what was passing before her eyes.\n\nHappy Florence would have been, might she have ventured to bear her\nfather company, by so much as a look; and happy Florence was, in\nlittle suspecting the main cause of his uneasiness. But afraid of\nseeming to know that he was placed at any did advantage, lest he\nshould be resentful of that knowledge; and divided between her impulse\ntowards him, and her grateful affection for Edith; she scarcely dared\nto raise her eyes towards either. Anxious and unhappy for them both,\nthe thought stole on her through the crowd, that it might have been\nbetter for them if this noise of tongues and tread of feet had never\ncome there, - if the old dulness and decay had never been replaced by\nnovelty and splendour, - if the neglected child had found no friend in\nEdith, but had lived her solitary life, unpitied and forgotten.\n\nMrs Chick had some such thoughts too, but they were not so quietly\ndeveloped in her mind. This good matron had been outraged in the first\ninstance by not receiving an invitation to dinner. That blow partially\nrecovered, she had gone to a vast expense to make such a figure before\nMrs Dombey at home, as should dazzle the senses of that lady, and heap\nmortification, mountains high, on the head of Mrs Skewton.\n\n'But I am made,' said Mrs Chick to Mr Chick, 'of no more account\nthan Florence! Who takes the smallest notice of me? No one!'\n\n'No one, my dear,' assented Mr Chick, who was seated by the side of\nMrs Chick against the wall, and could console himself, even there, by\nsoftly whistling.\n\n'Does it at all appear as if I was wanted here?' exclaimed Mrs\nChick, with flashing eyes.\n\n'No, my dear, I don't think it does,' said Mr Chic\n\n'Paul's mad!' said Mrs Chic\n\nMr Chick whistled.\n\n'Unless you are a monster, which I sometimes think you are,' said\nMrs Chick with candour, 'don't sit there humming tunes. How anyone\nwith the most distant feelings of a man, can see that mother-in-law of\nPaul's, dressed as she is, going on like that, with Major Bagstock,\nfor whom, among other precious things, we are indebted to your\nLucretia Tox\n\n'My Lucretia Tox, my dear!' said Mr Chick, astounded.\n\n'Yes,' retorted Mrs Chick, with great severity, 'your Lucretia Tox\n- I say how anybody can see that mother-in-law of Paul's, and that\nhaughty wife of Paul's, and these indecent old frights with their\nbacks and shoulders, and in short this at home generally, and hum - '\non which word Mrs Chick laid a scornful emphasis that made Mr Chick\nstart, 'is, I thank Heaven, a mystery to me!\n\nMr Chick screwed his mouth into a form irreconcilable with humming\nor whistling, and looked very contemplative.\n\n'But I hope I know what is due to myself,' said Mrs Chick, swelling\nwith indignation, 'though Paul has forgotten what is due to me. I am\nnot going to sit here, a member of this family, to be taken no notice\nof. I am not the dirt under Mrs Dombey's feet, yet - not quite yet,'\nsaid Mrs Chick, as if she expected to become so, about the day after\nto-morrow. 'And I shall go. I will not say (whatever I may think) that\nthis affair has been got up solely to degrade and insult me. I shall\nmerely go. I shall not be missed!'\n\nMrs Chick rose erect with these words, and took the arm of Mr\nChick, who escorted her from the room, after half an hour's shady\nsojourn there. And it is due to her penetration to observe that she\ncertainly was not missed at all.\n\nBut she was not the only indignant guest; for Mr Dombey's list\n(still constantly in difficulties) were, as a body, indignant with Mrs\nDombey's list, for looking at them through eyeglasses, and audibly\nwondering who all those people were; while Mrs Dombey's list\ncomplained of weariness, and the young thing with the shoulders,\ndeprived of the attentions of that gay youth Cousin Feenix (who went\naway from the dinner-table), confidentially alleged to thirty or forty\nfriends that she was bored to death. All the old ladies with the\nburdens on their heads, had greater or less cause of complaint against\nMr Dombey; and the Directors and Chairmen coincided in thinking that\nif Dombey must marry, he had better have married somebody nearer his\nown age, not quite so handsome, and a little better off. The general\nopinion among this class of gentlemen was, that it was a weak thing in\nDombey, and he'd live to repent it. Hardly anybody there, except the\nmild men, stayed, or went away, without considering himself or herself\nneglected and aggrieved by Mr Dombey or Mrs Dombey; and the speechless\nfemale in the black velvet hat was found to have been stricken mute,\nbecause the lady in the crimson velvet had been handed down before\nher. The nature even of the mild men got corrupted, either from their\ncurdling it with too much lemonade, or from the general inoculation\nthat prevailed; and they made sarcastic jokes to one another, and\nwhispered disparagement on stairs and in bye-places. The general\ndissatisfaction and discomfort so diffused itself, that the assembled\nfootmen in the hall were as well acquainted with it as the company\nabove. Nay, the very linkmen outside got hold of it, and compared the\nparty to a funeral out of mourning, with none of the company\nremembered in the will. At last, the guests were all gone, and the\nlinkmen too; and the street, crowded so long with carriages, was\nclear; and the dying lights showed no one in the rooms, but Mr Dombey\nand Mr Carker, who were talking together apart, and Mrs Dombey and her\nmother: the former seated on an ottoman; the latter reclining in the\nCleopatra attitude, awaiting the arrival of her maid. Mr Dombey having\nfinished his communication to Carker, the latter advanced obsequiously\nto take leave.\n\n'I trust,' he said, 'that the fatigues of this delightful evening\nwill not inconvenience Mrs Dombey to-morrow.'\n\n'Mrs Dombey,' said Mr Dombey, advancing, 'has sufficiently spared\nherself fatigue, to relieve you from any anxiety of that kind. I\nregret to say, Mrs Dombey, that I could have wished you had fatigued\nyourself a little more on this occasion.\n\nShe looked at him with a supercilious glance, that it seemed not\nworth her while to protract, and turned away her eyes without\nspeaking.\n\n'I am sorry, Madam,' said Mr Dombey, 'that you should not have\nthought it your duty -\n\nShe looked at him again.\n\n'Your duty, Madam,' pursued Mr Dombey, 'to have received my friends\nwith a little more deference. Some of those whom you have been pleased\nto slight to-night in a very marked manner, Mrs Dombey, confer a\ndistinction upon you, I must tell you, in any visit they pay you.\n\n'Do you know that there is someone here?' she returned, now looking\nat him steadily.\n\n'No! Carker! I beg that you do not. I insist that you do not,'\ncried Mr Dombey, stopping that noiseless gentleman in his withdrawal.\n'Mr Carker, Madam, as you know, possesses my confidence. He is as well\nacquainted as myself with the subject on which I speak. I beg to tell\nyou, for your information, Mrs Dombey, that I consider these wealthy\nand important persons confer a distinction upon me:' and Mr Dombey\ndrew himself up, as having now rendered them of the highest possible\nimportance.\n\n'I ask you,' she repeated, bending her disdainful, steady gaze upon\nhim, 'do you know that there is someone here, Sir?'\n\n'I must entreat,' said Mr Carker, stepping forward, 'I must beg, I\nmust demand, to be released. Slight and unimportant as this difference\nis - '\n\nMrs Skewton, who had been intent upon her daughter's face, took him\nup here.\n\n'My sweetest Edith,' she said, 'and my dearest Dombey; our\nexcellent friend Mr Carker, for so I am sure I ought to mention him -\n'\n\nMr Carker murmured, 'Too much honour.'\n\n' - has used the very words that were in my mind, and that I have\nbeen dying, these ages, for an opportunity of introducing. Slight and\nunimportant! My sweetest Edith, and my dearest Dombey, do we not know\nthat any difference between you two - No, Flowers; not now.\n\nFlowers was the maid, who, finding gentlemen present, retreated\nwith precipitation.\n\n'That any difference between you two,' resumed Mrs Skewton, 'with\nthe Heart you possess in common, and the excessively charming bond of\nfeeling that there is between you, must be slight and unimportant?\nWhat words could better define the fact? None. Therefore I am glad to\ntake this slight occasion - this trifling occasion, that is so replete\nwith Nature, and your individual characters, and all that - so truly\ncalculated to bring the tears into a parent's eyes - to say that I\nattach no importance to them in the least, except as developing these\nminor elements of Soul; and that, unlike most Mamas-in-law (that\nodious phrase, dear Dombey!) as they have been represented to me to\nexist in this I fear too artificial world, I never shall attempt to\ninterpose between you, at such a time, and never can much regret,\nafter all, such little flashes of the torch of What's-his-name - not\nCupid, but the other delightful creature.\n\nThere was a sharpness in the good mother's glance at both her\nchildren as she spoke, that may have been expressive of a direct and\nwell-considered purpose hidden between these rambling words. That\npurpose, providently to detach herself in the beginning from all the\nclankings of their chain that were to come, and to shelter herself\nwith the fiction of her innocent belief in their mutual affection, and\ntheir adaptation to each other.\n\n'I have pointed out to Mrs Dombey,' said Mr Dombey, in his most\nstately manner, 'that in her conduct thus early in our married life,\nto which I object, and which, I request, may be corrected. Carker,'\nwith a nod of dismissal, 'good-night to you!'\n\nMr Carker bowed to the imperious form of the Bride, whose sparkling\neye was fixed upon her husband; and stopping at Cleopatra's couch on\nhis way out, raised to his lips the hand she graciously extended to\nhim, in lowly and admiring homage.\n\nIf his handsome wife had reproached him, or even changed\ncountenance, or broken the silence in which she remained, by one word,\nnow that they were alone (for Cleopatra made off with all speed), Mr\nDombey would have been equal to some assertion of his case against\nher. But the intense, unutterable, withering scorn, with which, after\nlooking upon him, she dropped her eyes, as if he were too worthless\nand indifferent to her to be challenged with a syllable - the\nineffable disdain and haughtiness in which she sat before him - the\ncold inflexible resolve with which her every feature seemed to bear\nhim down, and put him by - these, he had no resource against; and he\nleft her, with her whole overbearing beauty concentrated on despising\nhim.\n\nWas he coward enough to watch her, an hour afterwards, on the old\nwell staircase, where he had once seen Florence in the moonlight,\ntoiling up with Paul? Or was he in the dark by accident, when, looking\nup, he saw her coming, with a light, from the room where Florence lay,\nand marked again the face so changed, which he could not subdue?\n\nBut it could never alter as his own did. It never, in its uttermost\npride and passion, knew the shadow that had fallen on his, in the dark\ncorner, on the night of the return; and often since; and which\ndeepened on it now, as he looked up.\n\n\n\nCHAPTER 37.\n\nMore Warnings than One\n\n\n\nFlorence, Edith, and Mrs Skewton were together next day, and the\ncarriage was waiting at the door to take them out. For Cleopatra had\nher galley again now, and Withers, no longer the-wan, stood upright in\na pigeon-breasted jacket and military trousers, behind her wheel-less\nchair at dinner-time and butted no more. The hair of Withers was\nradiant with pomatum, in these days of down, and he wore kid gloves\nand smelt of the water of Cologne.\n\nThey were assembled in Cleopatra's room The Serpent of old Nile\n(not to mention her disrespectfully) was reposing on her sofa, sipping\nher morning chocolate at three o'clock in the afternoon, and Flowers\nthe Maid was fastening on her youthful cuffs and frills, and\nperforming a kind of private coronation ceremony on her, with a\npeach-coloured velvet bonnet; the artificial roses in which nodded to\nuncommon advantage, as the palsy trifled with them, like a breeze.\n\n'I think I am a little nervous this morning, Flowers,' said Mrs\nSkewton. 'My hand quite shakes.'\n\n'You were the life of the party last night, Ma'am, you know,'\nreturned Flowers, ' and you suffer for it, to-day, you see.'\n\nEdith, who had beckoned Florence to the window, and was looking\nout, with her back turned on the toilet of her esteemed mother,\nsuddenly withdrew from it, as if it had lightened.\n\n'My darling child,' cried Cleopatra, languidly, 'you are not\nnervous? Don't tell me, my dear Edith, that you, so enviably\nself-possessed, are beginning to be a martyr too, like your\nunfortunately constituted mother! Withers, someone at the door.'\n\n'Card, Ma'am,' said Withers, taking it towards Mrs Dombey.\n\n'I am going out,' she said without looking at it.\n\n'My dear love,' drawled Mrs Skewton, 'how very odd to send that\nmessage without seeing the name! Bring it here, Withers. Dear me, my\nlove; Mr Carker, too! That very sensible person!'\n\n'I am going out,' repeated Edith, in so imperious a tone that\nWithers, going to the door, imperiously informed the servant who was\nwaiting, 'Mrs Dombey is going out. Get along with you,' and shut it on\nhim.'\n\nBut the servant came back after a short absence, and whispered to\nWithers again, who once more, and not very willingly, presented\nhimself before Mrs Dombey.\n\n'If you please, Ma'am, Mr Carker sends his respectful compliments,\nand begs you would spare him one minute, if you could - for business,\nMa'am, if you please.'\n\n'Really, my love,' said Mrs Skewton in her mildest manner; for her\ndaughter's face was threatening; 'if you would allow me to offer a\nword, I should recommend - '\n\n'Show him this way,' said Edith. As Withers disappeared to execute\nthe command, she added, frowning on her mother, 'As he comes at your\nrecommendation, let him come to your room.'\n\n'May I - shall I go away?' asked Florence, hurriedly.\n\nEdith nodded yes, but on her way to the door Florence met the\nvisitor coming in. With the same disagreeable mixture of familiarity\nand forbearance, with which he had first addressed her, he addressed\nher now in his softest manner - hoped she was quite well - needed not\nto ask, with such looks to anticipate the answer - had scarcely had\nthe honour to know her, last night, she was so greatly changed - and\nheld the door open for her to pass out; with a secret sense of power\nin her shrinking from him, that all the deference and politeness of\nhis manner could not quite conceal.\n\nHe then bowed himself for a moment over Mrs Skewton's condescending\nhand, and lastly bowed to Edith. Coldly returning his salute without\nlooking at him, and neither seating herself nor inviting him to be\nseated, she waited for him to speak.\n\nEntrenched in her pride and power, and with all the obduracy of her\nspirit summoned about her, still her old conviction that she and her\nmother had been known by this man in their worst colours, from their\nfirst acquaintance; that every degradation she had suffered in her own\neyes was as plain to him as to herself; that he read her life as\nthough it were a vile book, and fluttered the leaves before her in\nslight looks and tones of voice which no one else could detect;\nweakened and undermined her. Proudly as she opposed herself to him,\nwith her commanding face exacting his humility, her disdainful lip\nrepulsing him, her bosom angry at his intrusion, and the dark lashes\nof her eyes sullenly veiling their light, that no ray of it might\nshine upon him - and submissively as he stood before her, with an\nentreating injured manner, but with complete submission to her will -\nshe knew, in her own soul, that the cases were reversed, and that the\ntriumph and superiority were his, and that he knew it full well.\n\n'I have presumed,' said Mr Carker, 'to solicit an interview, and I\nhave ventured to describe it as being one of business, because - '\n\n'Perhaps you are charged by Mr Dombey with some message of\nreproof,' said Edit 'You possess Mr Dombey's confidence in such an\nunusual degree, Sir, that you would scarcely surprise me if that were\nyour business.'\n\n'I have no message to the lady who sheds a lustre upon his name,'\nsaid Mr Carker. 'But I entreat that lady, on my own behalf to be just\nto a very humble claimant for justice at her hands - a mere dependant\nof Mr Dombey's - which is a position of humility; and to reflect upon\nmy perfect helplessness last night, and the impossibility of my\navoiding the share that was forced upon me in a very painful\noccasion.'\n\n'My dearest Edith,' hinted Cleopatra in a low voice, as she held\nher eye-glass aside, 'really very charming of Mr What's-his-name. And\nfull of heart!'\n\n'For I do,' said Mr Carker, appealing to Mrs Skewton with a look of\ngrateful deference, - 'I do venture to call it a painful occasion,\nthough merely because it was so to me, who had the misfortune to be\npresent. So slight a difference, as between the principals - between\nthose who love each other with disinterested devotion, and would make\nany sacrifice of self in such a cause - is nothing. As Mrs Skewton\nherself expressed, with so much truth and feeling last night, it is\nnothing.'\n\nEdith could not look at him, but she said after a few moments,\n\n'And your business, Sir - '\n\n'Edith, my pet,' said Mrs Skewton, 'all this time Mr Carker is\nstanding! My dear Mr Carker, take a seat, I beg.'\n\nHe offered no reply to the mother, but fixed his eyes on the proud\ndaughter, as though he would only be bidden by her, and was resolved\nto he bidden by her. Edith, in spite of herself sat down, and slightly\nmotioned with her hand to him to be seated too. No action could be\ncolder, haughtier, more insolent in its air of supremacy and\ndisrespect, but she had struggled against even that concession\nineffectually, and it was wrested from her. That was enough! Mr Carker\nsat down.\n\n'May I be allowed, Madam,' said Carker, turning his white teeth on\nMrs Skewton like a light - 'a lady of your excellent sense and quick\nfeeling will give me credit, for good reason, I am sure - to address\nwhat I have to say, to Mrs Dombey, and to leave her to impart it to\nyou who are her best and dearest friend - next to Mr Dombey?'\n\nMrs Skewton would have retired, but Edith stopped her. Edith would\nhave stopped him too, and indignantly ordered him to speak openly or\nnot at all, but that he said, in a low Voice - 'Miss Florence - the\nyoung lady who has just left the room - '\n\nEdith suffered him to proceed. She looked at him now. As he bent\nforward, to be nearer, with the utmost show of delicacy and respect,\nand with his teeth persuasively arrayed, in a self-depreciating smile,\nshe felt as if she could have struck him dead.\n\n'Miss Florence's position,' he began, 'has been an unfortunate one.\nI have a difficulty in alluding to it to you, whose attachment to her\nfather is naturally watchful and jealous of every word that applies to\nhim.' Always distinct and soft in speech, no language could describe\nthe extent of his distinctness and softness, when he said these words,\nor came to any others of a similar import. 'But, as one who is devoted\nto Mr Dombey in his different way, and whose life is passed in\nadmiration of Mr Dombey's character, may I say, without offence to\nyour tenderness as a wife, that Miss Florence has unhappily been\nneglected - by her father. May I say by her father?'\n\nEdith replied, 'I know it.'\n\n'You know it!' said Mr Carker, with a great appearance of relief.\n'It removes a mountain from my breast. May I hope you know how the\nneglect originated; in what an amiable phase of Mr Dombey's pride -\ncharacter I mean?'\n\n'You may pass that by, Sir,' she returned, 'and come the sooner to\nthe end of what you have to say.'\n\n'Indeed, I am sensible, Madam,' replied Carker, - 'trust me, I am\ndeeply sensible, that Mr Dombey can require no justification in\nanything to you. But, kindly judge of my breast by your own, and you\nwill forgive my interest in him, if in its excess, it goes at all\nastray.\n\nWhat a stab to her proud heart, to sit there, face to face with\nhim, and have him tendering her false oath at the altar again and\nagain for her acceptance, and pressing it upon her like the dregs of a\nsickening cup she could not own her loathing of or turn away from'.\nHow shame, remorse, and passion raged within her, when, upright and\nmajestic in her beauty before him, she knew that in her spirit she was\ndown at his feet!\n\n'Miss Florence,' said Carker, 'left to the care - if one may call\nit care - of servants and mercenary people, in every way her\ninferiors, necessarily wanted some guide and compass in her younger\ndays, and, naturally, for want of them, has been indiscreet, and has\nin some degree forgotten her station. There was some folly about one\nWalter, a common lad, who is fortunately dead now: and some very\nundesirable association, I regret to say, with certain coasting\nsailors, of anything but good repute, and a runaway old bankrupt.'\n\n'I have heard the circumstances, Sir,' said Edith, flashing her\ndisdainful glance upon him, 'and I know that you pervert them. You may\nnot know it. I hope so.'\n\n'Pardon me,' said Mr Carker, 'I believe that nobody knows them so\nwell as I. Your generous and ardent nature, Madam - the same nature\nwhich is so nobly imperative in vindication of your beloved and\nhonoured husband, and which has blessed him as even his merits deserve\n- I must respect, defer to, bow before. But, as regards the\ncircumstances, which is indeed the business I presumed to solicit your\nattention to, I can have no doubt, since, in the execution of my trust\nas Mr Dombey's confidential - I presume to say - friend, I have fully\nascertained them. In my execution of that trust; in my deep concern,\nwhich you can so well understand, for everything relating to him,\nintensified, if you will (for I fear I labour under your displeasure),\nby the lower motive of desire to prove my diligence, and make myself\nthe more acceptable; I have long pursued these circumstances by myself\nand trustworthy instruments, and have innumerable and most minute\nproofs.'\n\nShe raised her eyes no higher than his mouth, but she saw the means\nof mischief vaunted in every tooth it contained.\n\n'Pardon me, Madam,' he continued, 'if in my perplexity, I presume\nto take counsel with you, and to consult your pleasure. I think I have\nobserved that you are greatly interested in Miss Florence?'\n\nWhat was there in her he had not observed, and did not know?\nHumbled and yet maddened by the thought, in every new presentment of\nit, however faint, she pressed her teeth upon her quivering lip to\nforce composure on it, and distantly inclined her head in reply.\n\n'This interest, Madam - so touching an evidence of everything\nassociated with Mr Dombey being dear to you - induces me to pause\nbefore I make him acquainted with these circumstances, which, as yet,\nhe does not know. It so shakes me, if I may make the confession, in my\nallegiance, that on the intimation of the least desire to that effect\nfrom you, I would suppress them.'\n\nEdith raised her head quickly, and starting back, bent her dark\nglance upon him. He met it with his blandest and most deferential\nsmile, and went on.\n\n'You say that as I describe them, they are perverted. I fear not -\nI fear not: but let us assume that they are. The uneasiness I have for\nsome time felt on the subject, arises in this: that the mere\ncircumstance of such association often repeated, on the part of Miss\nFlorence, however innocently and confidingly, would be conclusive with\nMr Dombey, already predisposed against her, and would lead him to take\nsome step (I know he has occasionally contemplated it) of separation\nand alienation of her from his home. Madam, bear with me, and remember\nmy intercourse with Mr Dombey, and my knowledge of him, and my\nreverence for him, almost from childhood, when I say that if he has a\nfault, it is a lofty stubbornness, rooted in that noble pride and\nsense of power which belong to him, and which we must all defer to;\nwhich is not assailable like the obstinacy of other characters; and\nwhich grows upon itself from day to day, and year to year.\n\nShe bent her glance upon him still; but, look as steadfast as she\nwould, her haughty nostrils dilated, and her breath came somewhat\ndeeper, and her lip would slightly curl, as he described that in his\npatron to which they must all bow down. He saw it; and though his\nexpression did not change, she knew he saw it.\n\n'Even so slight an incident as last night's,' he said, 'if I might\nrefer to it once more, would serve to illustrate my meaning, better\nthan a greater one. Dombey and Son know neither time, nor place, nor\nseason, but bear them all down. But I rejoice in its occurrence, for\nit has opened the way for me to approach Mrs Dombey with this subject\nto-day, even if it has entailed upon me the penalty of her temporary\ndispleasure. Madam, in the midst of my uneasiness and apprehension on\nthis subject, I was summoned by Mr Dombey to Leamington. There I saw\nyou. There I could not help knowing what relation you would shortly\noccupy towards him - to his enduring happiness and yours. There I\nresolved to await the time of your establishment at home here, and to\ndo as I have now done. I have, at heart, no fear that I shall be\nwanting in my duty to Mr Dombey, if I bury what I know in your breast;\nfor where there is but one heart and mind between two persons - as in\nsuch a marriage - one almost represents the other. I can acquit my\nconscience therefore, almost equally, by confidence, on such a theme,\nin you or him. For the reasons I have mentioned I would select you.\nMay I aspire to the distinction of believing that my confidence is\naccepted, and that I am relieved from my responsibility?'\n\nHe long remembered the look she gave him - who could see it, and\nforget it? - and the struggle that ensued within her. At last she\nsaid:\n\n'I accept it, Sir You will please to consider this matter at an\nend, and that it goes no farther.'\n\nHe bowed low, and rose. She rose too, and he took leave with all\nhumility. But Withers, meeting him on the stairs, stood amazed at the\nbeauty of his teeth, and at his brilliant smile; and as he rode away\nupon his white-legged horse, the people took him for a dentist, such\nwas the dazzling show he made. The people took her, when she rode out\nin her carriage presently, for a great lady, as happy as she was rich\nand fine. But they had not seen her, just before, in her own room with\nno one by; and they had not heard her utterance of the three words,\n'Oh Florence, Florence!'\n\nMrs Skewton, reposing on her sofa, and sipping her chocolate, had\nheard nothing but the low word business, for which she had a mortal\naversion, insomuch that she had long banished it from her vocabulary,\nand had gone nigh, in a charming manner and with an immense amount of\nheart, to say nothing of soul, to ruin divers milliners and others in\nconsequence. Therefore Mrs Skewton asked no questions, and showed no\ncuriosity. Indeed, the peach-velvet bonnet gave her sufficient\noccupation out of doors; for being perched on the back of her head,\nand the day being rather windy, it was frantic to escape from Mrs\nSkewton's company, and would be coaxed into no sort of compromise.\nWhen the carriage was closed, and the wind shut out, the palsy played\namong the artificial roses again like an almshouse-full of\nsuperannuated zephyrs; and altogether Mrs Skewton had enough to do,\nand got on but indifferently.\n\nShe got on no better towards night; for when Mrs Dombey, in her\ndressing-room, had been dressed and waiting for her half an hour, and\nMr Dombey, in the drawing-room, had paraded himself into a state of\nsolemn fretfulness (they were all three going out to dinner), Flowers\nthe Maid appeared with a pale face to Mrs Dombey, saying:\n\n'If you please, Ma'am, I beg your pardon, but I can't do nothing\nwith Missis!'\n\n'What do you mean?' asked Edith.\n\n'Well, Ma'am,' replied the frightened maid, 'I hardly know. She's\nmaking faces!'\n\nEdith hurried with her to her mother's room. Cleopatra was arrayed\nin full dress, with the diamonds, short sleeves, rouge, curls, teeth,\nand other juvenility all complete; but Paralysis was not to be\ndeceived, had known her for the object of its errand, and had struck\nher at her glass, where she lay like a horrible doll that had tumbled\ndown.\n\nThey took her to pieces in very shame, and put the little of her\nthat was real on a bed. Doctors were sent for, and soon came. Powerful\nremedies were resorted to; opinions given that she would rally from\nthis shock, but would not survive another; and there she lay\nspeechless, and staring at the ceiling, for days; sometimes making\ninarticulate sounds in answer to such questions as did she know who\nwere present, and the like: sometimes giving no reply either by sign\nor gesture, or in her unwinking eyes.\n\nAt length she began to recover consciousness, and in some degree\nthe power of motion, though not yet of speech. One day the use of her\nright hand returned; and showing it to her maid who was in attendance\non her, and appearing very uneasy in her mind, she made signs for a\npencil and some paper. This the maid immediately provided, thinking\nshe was going to make a will, or write some last request; and Mrs\nDombey being from home, the maid awaited the result with solemn\nfeelings.\n\nAfter much painful scrawling and erasing, and putting in of wrong\ncharacters, which seemed to tumble out of the pencil of their own\naccord, the old woman produced this document:\n\n              'Rose-coloured curtains.'\n\nThe maid being perfectly transfixed, and with tolerable reason,\nCleopatra amended the manuscript by adding two words more, when it\nstood thus:\n\n              'Rose-coloured curtains for doctors.'\n\nThe maid now perceived remotely that she wished these articles to\nbe provided for the better presentation of her complexion to the\nfaculty; and as those in the house who knew her best, had no doubt of\nthe correctness of this opinion, which she was soon able to establish\nfor herself the rose-coloured curtains were added to her bed, and she\nmended with increased rapidity from that hour. She was soon able to\nsit up, in curls and a laced cap and nightgown, and to have a little\nartificial bloom dropped into the hollow caverns of her cheeks.\n\nIt was a tremendous sight to see this old woman in her finery\nleering and mincing at Death, and playing off her youthful tricks upon\nhim as if he had been the Major; but an alteration in her mind that\nensued on the paralytic stroke was fraught with as much matter for\nreflection, and was quite as ghastly.\n\nWhether the weakening of her intellect made her more cunning and\nfalse than before, or whether it confused her between what she had\nassumed to be and what she really had been, or whether it had awakened\nany glimmering of remorse, which could neither struggle into light nor\nget back into total darkness, or whether, in the jumble of her\nfaculties, a combination of these effects had been shaken up, which is\nperhaps the more likely supposition, the result was this: - That she\nbecame hugely exacting in respect of Edith's affection and gratitude\nand attention to her; highly laudatory of herself as a most\ninestimable parent; and very jealous of having any rival in Edith's\nregard. Further, in place of remembering that compact made between\nthem for an avoidance of the subject, she constantly alluded to her\ndaughter's marriage as a proof of her being an incomparable mother;\nand all this, with the weakness and peevishness of such a state,\nalways serving for a sarcastic commentary on her levity and\nyouthfulness.\n\n'Where is Mrs Dombey? she would say to her maid.\n\n'Gone out, Ma'am.'\n\n'Gone out! Does she go out to shun her Mama, Flowers?'\n\n'La bless you, no, Ma'am. Mrs Dombey has only gone out for a ride\nwith Miss Florence.'\n\n'Miss Florence. Who's Miss Florence? Don't tell me about Miss\nFlorence. What's Miss Florence to her, compared to me?'\n\nThe apposite display of the diamonds, or the peach-velvet bonnet\n(she sat in the bonnet to receive visitors, weeks before she could\nstir out of doors), or the dressing of her up in some gaud or other,\nusually stopped the tears that began to flow hereabouts; and she would\nremain in a complacent state until Edith came to see her; when, at a\nglance of the proud face, she would relapse again.\n\n'Well, I am sure, Edith!' she would cry, shaking her head.\n\n'What is the matter, mother?'\n\n'Matter! I really don't know what is the matter. The world is\ncoming to such an artificial and ungrateful state, that I begin to\nthink there's no Heart - or anything of that sort - left in it,\npositively. Withers is more a child to me than you are. He attends to\nme much more than my own daughter. I almost wish I didn't look so\nyoung - and all that kind of thing - and then perhaps I should be more\nconsidered.'\n\n'What would you have, mother?'\n\n'Oh, a great deal, Edith,' impatiently.\n\n'Is there anything you want that you have not? It is your own fault\nif there be.'\n\n'My own fault!' beginning to whimper. 'The parent I have been to\nyou, Edith: making you a companion from your cradle! And when you\nneglect me, and have no more natural affection for me than if I was a\nstranger - not a twentieth part of the affection that you have for\nFlorence - but I am only your mother, and should corrupt her in a day!\n- you reproach me with its being my own fault.'\n\n'Mother, mother, I reproach you with nothing. Why will you always\ndwell on this?'\n\n'Isn't it natural that I should dwell on this, when I am all\naffection and sensitiveness, and am wounded in the cruellest way,\nwhenever you look at me?'\n\n'I do not mean to wound you, mother. Have you no remembrance of\nwhat has been said between us? Let the Past rest.'\n\n'Yes, rest! And let gratitude to me rest; and let affection for me\nrest; and let me rest in my out-of-the-way room, with no society and\nno attention, while you find new relations to make much of, who have\nno earthly claim upon you! Good gracious, Edith, do you know what an\nelegant establishment you are at the head of?'\n\n'Yes. Hush!'\n\n'And that gentlemanly creature, Dombey? Do you know that you are\nmarried to him, Edith, and that you have a settlement and a position,\nand a carriage, and I don't know what?'\n\n'Indeed, I know it, mother; well.'\n\n'As you would have had with that delightful good soul - what did\nthey call him? - Granger - if he hadn't died. And who have you to\nthank for all this, Edith?'\n\n'You, mother; you.'\n\n'Then put your arms round my neck, and kiss me; and show me, Edith,\nthat you know there never was a better Mama than I have been to you.\nAnd don't let me become a perfect fright with teasing and wearing\nmyself at your ingratitude, or when I'm out again in society no soul\nwill know me, not even that hateful animal, the Major.'\n\nBut, sometimes, when Edith went nearer to her, and bending down her\nstately head, Put her cold cheek to hers, the mother would draw back\nas If she were afraid of her, and would fall into a fit of trembling,\nand cry out that there was a wandering in her wits. And sometimes she\nwould entreat her, with humility, to sit down on the chair beside her\nbed, and would look at her (as she sat there brooding) with a face\nthat even the rose-coloured curtains could not make otherwise than\nscared and wild.\n\nThe rose-coloured curtains blushed, in course of time, on\nCleopatra's bodily recovery, and on her dress - more juvenile than\never, to repair the ravages of illness - and on the rouge, and on the\nteeth, and on the curls, and on the diamonds, and the short sleeves,\nand the whole wardrobe of the doll that had tumbled down before the\nmirror. They blushed, too, now and then, upon an indistinctness in her\nspeech which she turned off with a girlish giggle, and on an\noccasional failing In her memory, that had no rule in it, but came and\nwent fantastically, as if in mockery of her fantastic self.\n\nBut they never blushed upon a change in the new manner of her\nthought and speech towards her daughter. And though that daughter\noften came within their influence, they never blushed upon her\nloveliness irradiated by a smile, or softened by the light of filial\nlove, in its stem beauty.\n\n\n\nCHAPTER 38.\n\nMiss Tox improves an Old Acquaintance\n\n\n\nThe forlorn Miss Tox, abandoned by her friend Louisa Chick, and\nbereft of Mr Dombey's countenance - for no delicate pair of wedding\ncards, united by a silver thread, graced the chimney-glass in\nPrincess's Place, or the harpsichord, or any of those little posts of\ndisplay which Lucretia reserved for holiday occupation - became\ndepressed in her spirits, and suffered much from melancholy. For a\ntime the Bird Waltz was unheard in Princess's Place, the plants were\nneglected, and dust collected on the miniature of Miss Tox's ancestor\nwith the powdered head and pigtail.\n\n\nMiss Tox, however, was not of an age or of a disposition long to\nabandon herself to unavailing regrets. Only two notes of the\nharpsichord were dumb from disuse when the Bird Waltz again warbled\nand trilled in the crooked drawing-room: only one slip of geranium\nfell a victim to imperfect nursing, before she was gardening at her\ngreen baskets again, regularly every morning; the powdered-headed\nancestor had not been under a cloud for more than six weeks, when Miss\nTox breathed on his benignant visage, and polished him up with a piece\nof wash-leather.\n\nStill, Miss Tox was lonely, and at a loss. Her attachments, however\nludicrously shown, were real and strong; and she was, as she expressed\nit, 'deeply hurt by the unmerited contumely she had met with from\nLouisa.' But there was no such thing as anger in Miss Tox's\ncomposition. If she had ambled on through life, in her soft spoken\nway, without any opinions, she had, at least, got so far without any\nharsh passions. The mere sight of Louisa Chick in the street one day,\nat a considerable distance, so overpowered her milky nature, that she\nwas fain to seek immediate refuge in a pastrycook's, and there, in a\nmusty little back room usually devoted to the consumption of soups,\nand pervaded by an ox-tail atmosphere, relieve her feelings by weeping\nplentifully.\n\nAgainst Mr Dombey Miss Tox hardly felt that she had any reason of\ncomplaint. Her sense of that gentleman's magnificence was such, that\nonce removed from him, she felt as if her distance always had been\nimmeasurable, and as if he had greatly condescended in tolerating her\nat all. No wife could be too handsome or too stately for him,\naccording to Miss Tox's sincere opinion. It was perfectly natural that\nin looking for one, he should look high. Miss Tox with tears laid down\nthis proposition, and fully admitted it, twenty times a day. She never\nrecalled the lofty manner in which Mr Dombey had made her subservient\nto his convenience and caprices, and had graciously permitted her to\nbe one of the nurses of his little son. She only thought, in her own\nwords, 'that she had passed a great many happy hours in that house,\nwhich she must ever remember with gratification, and that she could\nnever cease to regard Mr Dombey as one of the most impressive and\ndignified of men.'\n\nCut off, however, from the implacable Louisa, and being shy of the\nMajor (whom she viewed with some distrust now), Miss Tox found it very\nirksome to know nothing of what was going on in Mr Dombey's\nestablishment. And as she really had got into the habit of considering\nDombey and Son as the pivot on which the world in general turned, she\nresolved, rather than be ignorant of intelligence which so strongly\ninterested her, to cultivate her old acquaintance, Mrs Richards, who\nshe knew, since her last memorable appearance before Mr Dombey, was in\nthe habit of sometimes holding communication with his servants.\nPerhaps Miss Tox, in seeking out the Toodle family, had the tender\nmotive hidden in her breast of having somebody to whom she could talk\nabout Mr Dombey, no matter how humble that somebody might be.\n\nAt all events, towards the Toodle habitation Miss Tox directed her\nsteps one evening, what time Mr Toodle, cindery and swart, was\nrefreshing himself with tea, in the bosom of his family. Mr Toodle had\nonly three stages of existence. He was either taking refreshment in\nthe bosom just mentioned, or he was tearing through the country at\nfrom twenty-five to fifty miles an hour, or he was sleeping after his\nfatigues. He was always in a whirlwind or a calm, and a peaceable,\ncontented, easy-going man Mr Toodle was in either state, who seemed to\nhave made over all his own inheritance of fuming and fretting to the\nengines with which he was connected, which panted, and gasped, and\nchafed, and wore themselves out, in a most unsparing manner, while Mr\nToodle led a mild and equable life.\n\n'Polly, my gal,' said Mr Toodle, with a young Toodle on each knee,\nand two more making tea for him, and plenty more scattered about - Mr\nToodle was never out of children, but always kept a good supply on\nhand - 'you ain't seen our Biler lately, have you?'\n\n'No,' replied Polly, 'but he's almost certain to look in tonight.\nIt's his right evening, and he's very regular.'\n\n'I suppose,' said Mr Toodle, relishing his meal infinitely, 'as our\nBiler is a doin' now about as well as a boy can do, eh, Polly?'\n\n'Oh! he's a doing beautiful!' responded Polly.\n\n'He ain't got to be at all secret-like - has he, Polly?' inquired\nMr Toodle.\n\n'No!' said Mrs Toodle, plumply.\n\n'I'm glad he ain't got to be at all secret-like, Polly,' observed\nMr Toodle in his slow and measured way, and shovelling in his bread\nand butter with a clasp knife, as if he were stoking himself, 'because\nthat don't look well; do it, Polly?'\n\n'Why, of course it don't, father. How can you ask!'\n\n'You see, my boys and gals,' said Mr Toodle, looking round upon his\nfamily, 'wotever you're up to in a honest way, it's my opinion as you\ncan't do better than be open. If you find yourselves in cuttings or in\ntunnels, don't you play no secret games. Keep your whistles going, and\nlet's know where you are.\n\nThe rising Toodles set up a shrill murmur, expressive of their\nresolution to profit by the paternal advice.\n\n'But what makes you say this along of Rob, father?' asked his wife,\nanxiously.\n\n'Polly, old ooman,' said Mr Toodle, 'I don't know as I said it\npartickler along o' Rob, I'm sure. I starts light with Rob only; I\ncomes to a branch; I takes on what I finds there; and a whole train of\nideas gets coupled on to him, afore I knows where I am, or where they\ncomes from. What a Junction a man's thoughts is,' said Mr Toodle,\n'to-be-sure!'\n\nThis profound reflection Mr Toodle washed down with a pint mug of\ntea, and proceeded to solidify with a great weight of bread and\nbutter; charging his young daughters meanwhile, to keep plenty of hot\nwater in the pot, as he was uncommon dry, and should take the\nindefinite quantity of 'a sight of mugs,' before his thirst was\nappeased.\n\nIn satisfying himself, however, Mr Toodle was not regardless of the\nyounger branches about him, who, although they had made their own\nevening repast, were on the look-out for irregular morsels, as\npossessing a relish. These he distributed now and then to the\nexpectant circle, by holding out great wedges of bread and butter, to\nbe bitten at by the family in lawful succession, and by serving out\nsmall doses of tea in like manner with a spoon; which snacks had such\na relish in the mouths of these young Toodles, that, after partaking\nof the same, they performed private dances of ecstasy among\nthemselves, and stood on one leg apiece, and hopped, and indulged in\nother saltatory tokens of gladness. These vents for their excitement\nfound, they gradually closed about Mr Toodle again, and eyed him hard\nas he got through more bread and butter and tea; affecting, however,\nto have no further expectations of their own in reference to those\nviands, but to be conversing on foreign subjects, and whispering\nconfidentially.\n\nMr Toodle, in the midst of this family group, and setting an awful\nexample to his children in the way of appetite, was conveying the two\nyoung Toodles on his knees to Birmingham by special engine, and was\ncontemplating the rest over a barrier of bread and butter, when Rob\nthe Grinder, in his sou'wester hat and mourning slops, presented\nhimself, and was received with a general rush of brothers and sisters.\n\n'Well, mother!' said Rob, dutifully kissing her; 'how are you,\nmother?'\n\n'There's my boy!' cried Polly, giving him a hug and a pat on the\nback. 'Secret! Bless you, father, not he!'\n\nThis was intended for Mr Toodle's private edification, but Rob the\nGrinder, whose withers were not unwrung, caught the words as they were\nspoken.\n\n'What! father's been a saying something more again me, has he?'\ncried the injured innocent. 'Oh, what a hard thing it is that when a\ncove has once gone a little wrong, a cove's own father should be\nalways a throwing it in his face behind his back! It's enough,' cried\nRob, resorting to his coat-cuff in anguish of spirit, 'to make a cove\ngo and do something, out of spite!'\n\n'My poor boy!' cried Polly, 'father didn't mean anything.'\n\n'If father didn't mean anything,' blubbered the injured Grinder,\n'why did he go and say anything, mother? Nobody thinks half so bad of\nme as my own father does. What a unnatural thing! I wish somebody'd\ntake and chop my head off. Father wouldn't mind doing it, I believe,\nand I'd much rather he did that than t'other.'\n\nAt these desperate words all the young Toodles shrieked; a pathetic\neffect, which the Grinder improved by ironically adjuring them not to\ncry for him, for they ought to hate him, they ought, if they was good\nboys and girls; and this so touched the youngest Toodle but one, who\nwas easily moved, that it touched him not only in his spirit but in\nhis wind too; making him so purple that Mr Toodle in consternation\ncarried him out to the water-butt, and would have put him under the\ntap, but for his being recovered by the sight of that instrument.\n\nMatters having reached this point, Mr Toodle explained, and the\nvirtuous feelings of his son being thereby calmed, they shook hands,\nand harmony reigned again.\n\n'Will you do as I do, Biler, my boy?' inquired his father,\nreturning to his tea with new strength.\n\n'No, thank'ee, father. Master and I had tea together.'\n\n'And how is master, Rob?' said Polly.\n\n'Well, I don't know, mother; not much to boast on. There ain't no\nbis'ness done, you see. He don't know anything about it - the Cap'en\ndon't. There was a man come into the shop this very day, and says, \"I\nwant a so-and-so,\" he says - some hard name or another. \"A which?\"\nsays the Cap'en. \"A so-and-so,\" says the man. \"Brother,\" says the\nCap'en, \"will you take a observation round the shop.\" \"Well,\" says the\nman, \"I've done\" \"Do you see wot you want?\" says the Cap'en \"No, I\ndon't,\" says the man. \"Do you know it wen you do see it?\" says the\nCap'en. \"No, I don't,\" says the man. \"Why, then I tell you wot, my\nlad,\" says the Cap'en, \"you'd better go back and ask wot it's like,\noutside, for no more don't I!\"'\n\n'That ain't the way to make money, though, is it?' said Polly.\n\n'Money, mother! He'll never make money. He has such ways as I never\nsee. He ain't a bad master though, I'll say that for him. But that\nain't much to me, for I don't think I shall stop with him long.'\n\n'Not stop in your place, Rob!' cried his mother; while Mr Toodle\nopened his eyes.\n\n'Not in that place, p'raps,' returned the Grinder, with a wink. 'I\nshouldn't wonder - friends at court you know - but never you mind,\nmother, just now; I'm all right, that's all.'\n\nThe indisputable proof afforded in these hints, and in the\nGrinder's mysterious manner, of his not being subject to that failing\nwhich Mr Toodle had, by implication, attributed to him, might have led\nto a renewal of his wrongs, and of the sensation in the family, but\nfor the opportune arrival of another visitor, who, to Polly's great\nsurprise, appeared at the door, smiling patronage and friendship on\nall there.\n\n'How do you do, Mrs Richards?' said Miss Tox. 'I have come to see\nyou. May I come in?'\n\nThe cheery face of Mrs Richards shone with a hospitable reply, and\nMiss Tox, accepting the proffered chair, and grab fully recognising Mr\nToodle on her way to it, untied her bonnet strings, and said that in\nthe first place she must beg the dear children, one and all, to come\nand kiss her.\n\nThe ill-starred youngest Toodle but one, who would appear, from the\nfrequency of his domestic troubles, to have been born under an unlucky\nplanet, was prevented from performing his part in this general\nsalutation by having fixed the sou'wester hat (with which he had been\npreviously trifling) deep on his head, hind side before, and being\nunable to get it off again; which accident presenting to his terrified\nimagination a dismal picture of his passing the rest of his days in\ndarkness, and in hopeless seclusion from his friends and family,\ncaused him to struggle with great violence, and to utter suffocating\ncries. Being released, his face was discovered to be very hot, and\nred, and damp; and Miss Tox took him on her lap, much exhausted.\n\n'You have almost forgotten me, Sir, I daresay,' said Miss Tox to Mr\nToodle.\n\n'No, Ma'am, no,' said Toodle. 'But we've all on us got a little\nolder since then.'\n\n'And how do you find yourself, Sir?' inquired Miss Tox, blandly.\n\n'Hearty, Ma'am, thank'ee,' replied Toodle. 'How do you find\nyourself, Ma'am? Do the rheumaticks keep off pretty well, Ma'am? We\nmust all expect to grow into 'em, as we gets on.'\n\n'Thank you,' said Miss Tox. 'I have not felt any inconvenience from\nthat disorder yet.'\n\n'You're wery fortunate, Ma'am,' returned Mr Toodle. 'Many people at\nyour time of life, Ma'am, is martyrs to it. There was my mother - '\nBut catching his wife's eye here, Mr Toodle judiciously buried the\nrest in another mug of tea\n\n'You never mean to say, Mrs Richards,' cried Miss Tox, looking at\nRob, 'that that is your - '\n\n'Eldest, Ma'am,' said Polly. 'Yes, indeed, it is. That's the little\nfellow, Ma'am, that was the innocent cause of so much.'\n\n'This here, Ma'am,' said Toodle, 'is him with the short legs - and\nthey was,' said Mr Toodle, with a touch of poetry in his tone,\n'unusual short for leathers - as Mr Dombey made a Grinder on.'\n\nThe recollection almost overpowered Miss Tox. The subject of it had\na peculiar interest for her directly. She asked him to shake hands,\nand congratulated his mother on his frank, ingenuous face. Rob,\noverhearing her, called up a look, to justify the eulogium, but it was\nhardly the right look.\n\n'And now, Mrs Richards,' said Miss Tox, - 'and you too, Sir,'\naddressing Toodle - 'I'll tell you, plainly and truly, what I have\ncome here for. You may be aware, Mrs Richards - and, possibly, you may\nbe aware too, Sir - that a little distance has interposed itself\nbetween me and some of my friends, and that where I used to visit a\ngood deal, I do not visit now.'\n\nPolly, who, with a woman's tact, understood this at once, expressed\nas much in a little look. Mr Toodle, who had not the faintest idea of\nwhat Miss Tox was talking about, expressed that also, in a stare.\n\n'Of course,' said Miss Tox, 'how our little coolness has arisen is\nof no moment, and does not require to be discussed. It is sufficient\nfor me to say, that I have the greatest possible respect for, and\ninterest in, Mr Dombey;' Miss Tox's voice faltered; 'and everything\nthat relates to him.'\n\nMr Toodle, enlightened, shook his head, and said he had heerd it\nsaid, and, for his own part, he did think, as Mr Dombey was a\ndifficult subject.\n\n'Pray don't say so, Sir, if you please,' returned Miss Tox. 'Let me\nentreat you not to say so, Sir, either now, or at any future time.\nSuch observations cannot but be very painful to me; and to a\ngentleman, whose mind is constituted as, I am quite sure, yours is,\ncan afford no permanent satisfaction.'\n\nMr Toodle, who had not entertained the least doubt of offering a\nremark that would be received with acquiescence, was greatly\nconfounded.\n\n'All that I wish to say, Mrs Richards,' resumed Miss Tox, - 'and I\naddress myself to you too, Sir, - is this. That any intelligence of\nthe proceedings of the family, of the welfare of the family, of the\nhealth of the family, that reaches you, will be always most acceptable\nto me. That I shall be always very glad to chat with Mrs Richards\nabout the family, and about old time And as Mrs Richards and I never\nhad the least difference (though I could wish now that we had been\nbetter acquainted, but I have no one but myself to blame for that), I\nhope she will not object to our being very good friends now, and to my\ncoming backwards and forwards here, when I like, without being a\nstranger. Now, I really hope, Mrs Richards,' said Miss Tox -\nearnestly, 'that you will take this, as I mean it, like a\ngood-humoured creature, as you always were.'\n\nPolly was gratified, and showed it. Mr Toodle didn't know whether\nhe was gratified or not, and preserved a stolid calmness.\n\n'You see, Mrs Richards,' said Miss Tox - 'and I hope you see too,\nSir - there are many little ways in which I can be slightly useful to\nyou, if you will make no stranger of me; and in which I shall be\ndelighted to be so. For instance, I can teach your children something.\nI shall bring a few little books, if you'll allow me, and some work,\nand of an evening now and then, they'll learn - dear me, they'll learn\na great deal, I trust, and be a credit to their teacher.'\n\nMr Toodle, who had a great respect for learning, jerked his head\napprovingly at his wife, and moistened his hands with dawning\nsatisfaction.\n\n'Then, not being a stranger, I shall be in nobody's way,' said Miss\nTox, 'and everything will go on just as if I were not here. Mrs\nRichards will do her mending, or her ironing, or her nursing, whatever\nit is, without minding me: and you'll smoke your pipe, too, if you're\nso disposed, Sir, won't you?'\n\n'Thank'ee, Mum,' said Mr Toodle. 'Yes; I'll take my bit of backer.'\n\n'Very good of you to say so, Sir,' rejoined Miss Tox, 'and I really\ndo assure you now, unfeignedly, that it will be a great comfort to me,\nand that whatever good I may be fortunate enough to do the children,\nyou will more than pay back to me, if you'll enter into this little\nbargain comfortably, and easily, and good-naturedly, without another\nword about it.'\n\nThe bargain was ratified on the spot; and Miss Tox found herself so\nmuch at home already, that without delay she instituted a preliminary\nexamination of the children all round - which Mr Toodle much admired -\nand booked their ages, names, and acquirements, on a piece of paper.\nThis ceremony, and a little attendant gossip, prolonged the time until\nafter their usual hour of going to bed, and detained Miss Tox at the\nToodle fireside until it was too late for her to walk home alone. The\ngallant Grinder, however, being still there, politely offered to\nattend her to her own door; and as it was something to Miss Tox to be\nseen home by a youth whom Mr Dombey had first inducted into those\nmanly garments which are rarely mentioned by name,' she very readily\naccepted the proposal.\n\nAfter shaking hands with Mr Toodle and Polly, and kissing all the\nchildren, Miss Tox left the house, therefore, with unlimited\npopularity, and carrying away with her so light a heart that it might\nhave given Mrs Chick offence if that good lady could have weighed it.\n\nRob the Grinder, in his modesty, would have walked behind, but Miss\nTox desired him to keep beside her, for conversational purposes; and,\nas she afterwards expressed it to his mother, 'drew him out,' upon the\nroad.\n\nHe drew out so bright, and clear, and shining, that Miss Tox was\ncharmed with him. The more Miss Tox drew him out, the finer he came -\nlike wire. There never was a better or more promising youth - a more\naffectionate, steady, prudent, sober, honest, meek, candid young man -\nthan Rob drew out, that night.\n\n'I am quite glad,' said Miss Tox, arrived at her own door, 'to know\nyou. I hope you'll consider me your friend, and that you'll come and\nsee me as often as you like. Do you keep a money-box?'\n\n'Yes, Ma'am,' returned Rob; 'I'm saving up, against I've got enough\nto put in the Bank, Ma'am.\n\n'Very laudable indeed,' said Miss Tox. 'I'm glad to hear it. Put\nthis half-crown into it, if you please.'\n\n'Oh thank you, Ma'am,' replied Rob, 'but really I couldn't think of\ndepriving you.'\n\n'I commend your independent spirit,' said Miss Tox, 'but it's no\ndeprivation, I assure you. I shall be offended if you don't take it,\nas a mark of my good-will. Good-night, Robin.'\n\n'Good-night, Ma'am,' said Rob, 'and thank you!'\n\nWho ran sniggering off to get change, and tossed it away with a\npieman. But they never taught honour at the Grinders' School, where\nthe system that prevailed was particularly strong in the engendering\nof hypocrisy. Insomuch, that many of the friends and masters of past\nGrinders said, if this were what came of education for the common\npeople, let us have none. Some more rational said, let us have a\nbetter one. But the governing powers of the Grinders' Company were\nalways ready for them, by picking out a few boys who had turned out\nwell in spite of the system, and roundly asserting that they could\nhave only turned out well because of it. Which settled the business of\nthose objectors out of hand, and established the glory of the\nGrinders' Institution.\n\n\n\nCHAPTER 39.\n\nFurther Adventures of Captain Edward Cuttle, Mariner\n\n\n\nTime, sure of foot and strong of will, had so pressed onward, that\nthe year enjoined by the old Instrument-maker, as the term during\nwhich his friend should refrain from opening the sealed packet\naccompanying the letter he had left for him, was now nearly expired,\nand Captain Cuttle began to look at it, of an evening, with feelings\nof mystery and uneasiness\n\nThe Captain, in his honour, would as soon have thought of opening\nthe parcel one hour before the expiration of the term, as he would\nhave thought of opening himself, to study his own anatomy. He merely\nbrought it out, at a certain stage of his first evening pipe, laid it\non the table, and sat gazing at the outside of it, through the smoke,\nin silent gravity, for two or three hours at a spell. Sometimes, when\nhe had contemplated it thus for a pretty long while, the Captain would\nhitch his chair, by degrees, farther and farther off, as if to get\nbeyond the range of its fascination; but if this were his design, he\nnever succeeded: for even when he was brought up by the parlour wall,\nthe packet still attracted him; or if his eyes, in thoughtful\nwandering, roved to the ceiling or the fire, its image immediately\nfollowed, and posted itself conspicuously among the coals, or took up\nan advantageous position on the whitewash.\n\nIn respect of Heart's Delight, the Captain's parental and\nadmiration knew no change. But since his last interview with Mr\nCarker, Captain Cuttle had come to entertain doubts whether his former\nintervention in behalf of that young lady and his dear boy Wal'r, had\nproved altogether so favourable as he could have wished, and as he at\nthe time believed. The Captain was troubled with a serious misgiving\nthat he had done more harm than good, in short; and in his remorse and\nmodesty he made the best atonement he could think of, by putting\nhimself out of the way of doing any harm to anyone, and, as it were,\nthrowing himself overboard for a dangerous person.\n\nSelf-buried, therefore, among the instruments, the Captain never\nwent near Mr Dombey's house, or reported himself in any way to\nFlorence or Miss Nipper. He even severed himself from Mr Perch, on the\noccasion of his next visit, by dryly informing that gentleman, that he\nthanked him for his company, but had cut himself adrift from all such\nacquaintance, as he didn't know what magazine he mightn't blow up,\nwithout meaning of it. In this self-imposed retirement, the Captain\npassed whole days and weeks without interchanging a word with anyone\nbut Rob the Grinder, whom he esteemed as a pattern of disinterested\nattachment and fidelity. In this retirement, the Captain, gazing at\nthe packet of an evening, would sit smoking, and thinking of Florence\nand poor Walter, until they both seemed to his homely fancy to be\ndead, and to have passed away into eternal youth, the beautiful and\ninnocent children of his first remembrance.\n\nThe Captain did not, however, in his musings, neglect his own\nimprovement, or the mental culture of Rob the Grinder. That young man\nwas generally required to read out of some book to the Captain, for\none hour, every evening; and as the Captain implicitly believed that\nall books were true, he accumulated, by this means, many remarkable\nfacts. On Sunday nights, the Captain always read for himself, before\ngoing to bed, a certain Divine Sermon once delivered on a Mount; and\nalthough he was accustomed to quote the text, without book, after his\nown manner, he appeared to read it with as reverent an understanding\nof its heavenly spirit, as if he had got it all by heart in Greek, and\nhad been able to write any number of fierce theological disquisitions\non its every phrase.\n\nRob the Grinder, whose reverence for the inspired writings, under\nthe admirable system of the Grinders' School, had been developed by a\nperpetual bruising of his intellectual shins against all the proper\nnames of all the tribes of Judah, and by the monotonous repetition of\nhard verses, especially by way of punishment, and by the parading of\nhim at six years old in leather breeches, three times a Sunday, very\nhigh up, in a very hot church, with a great organ buzzing against his\ndrowsy head, like an exceedingly busy bee - Rob the Grinder made a\nmighty show of being edified when the Captain ceased to read, and\ngenerally yawned and nodded while the reading was in progress. The\nlatter fact being never so much as suspected by the good Captain.\n\nCaptain Cuttle, also, as a man of business; took to keeping books.\nIn these he entered observations on the weather, and on the currents\nof the waggons and other vehicles: which he observed, in that quarter,\nto set westward in the morning and during the greater part of the day,\nand eastward towards the evening. Two or three stragglers appearing in\none week, who 'spoke him' - so the Captain entered it- on the subject\nof spectacles, and who, without positively purchasing, said they would\nlook in again, the Captain decided that the business was improving,\nand made an entry in the day-book to that effect: the wind then\nblowing (which he first recorded) pretty fresh, west and by north;\nhaving changed in the night.\n\nOne of the Captain's chief difficulties was Mr Toots, who called\nfrequently, and who without saying much seemed to have an idea that\nthe little back parlour was an eligible room to chuckle in, as he\nwould sit and avail himself of its accommodations in that regard by\nthe half-hour together, without at all advancing in intimacy with the\nCaptain. The Captain, rendered cautious by his late experience, was\nunable quite to satisfy his mind whether Mr Toots was the mild subject\nhe appeared to be, or was a profoundly artful and dissimulating\nhypocrite. His frequent reference to Miss Dombey was suspicious; but\nthe Captain had a secret kindness for Mr Toots's apparent reliance on\nhim, and forbore to decide against him for the present; merely eyeing\nhim, with a sagacity not to be described, whenever he approached the\nsubject that was nearest to his heart.\n\n'Captain Gills,' blurted out Mr Toots, one day all at once, as his\nmanner was, 'do you think you could think favourably of that\nproposition of mine, and give me the pleasure of your acquaintance?'\n\n'Why, I tell you what it is, my lad,' replied the Captain, who had\nat length concluded on a course of action; 'I've been turning that\nthere, over.'\n\n'Captain Gills, it's very kind of you,' retorted Mr Toots. 'I'm\nmuch obliged to you. Upon my word and honour, Captain Gills, it would\nbe a charity to give me the pleasure of your acquaintance. It really\nwould.'\n\n'You see, brother,' argued the Captain slowly, 'I don't know you.\n\n'But you never can know me, Captain Gills,' replied Mr Toots,\nsteadfast to his point, 'if you don't give me the pleasure of your\nacquaintance.\n\nThe Captain seemed struck by the originality and power of this\nremark, and looked at Mr Toots as if he thought there was a great deal\nmore in him than he had expected.\n\n'Well said, my lad,' observed the Captain, nodding his head\nthoughtfully; 'and true. Now look'ee here: You've made some\nobservations to me, which gives me to understand as you admire a\ncertain sweet creetur. Hey?'\n\n'Captain Gills,' said Mr Toots, gesticulating violently with the\nhand in which he held his hat, 'Admiration is not the word. Upon my\nhonour, you have no conception what my feelings are. If I could be\ndyed black, and made Miss Dombey's slave, I should consider it a\ncompliment. If, at the sacrifice of all my property, I could get\ntransmigrated into Miss Dombey's dog - I - I really think I should\nnever leave off wagging my tail. I should be so perfectly happy,\nCaptain Gills!'\n\nMr Toots said it with watery eyes, and pressed his hat against his\nbosom with deep emotion.\n\n'My lad,' returned the Captain, moved to compassion, 'if you're in\narnest -\n\n'Captain Gills,' cried Mr Toots, 'I'm in such a state of mind, and\nam so dreadfully in earnest, that if I could swear to it upon a hot\npiece of iron, or a live coal, or melted lead, or burning sealing-wax,\nOr anything of that sort, I should be glad to hurt myself, as a relief\nto my feelings.' And Mr Toots looked hurriedly about the room, as if\nfor some sufficiently painful means of accomplishing his dread\npurpose.\n\nThe Captain pushed his glazed hat back upon his head, stroked his\nface down with his heavy hand - making his nose more mottled in the\nprocess - and planting himself before Mr Toots, and hooking him by the\nlapel of his coat, addressed him in these words, while Mr Toots looked\nup into his face, with much attention and some wonder.\n\n'If you're in arnest, you see, my lad,' said the Captain, 'you're a\nobject of clemency, and clemency is the brightest jewel in the crown\nof a Briton's head, for which you'll overhaul the constitution as laid\ndown in Rule Britannia, and, when found, that is the charter as them\ngarden angels was a singing of, so many times over. Stand by! This\nhere proposal o' you'rn takes me a little aback. And why? Because I\nholds my own only, you understand, in these here waters, and haven't\ngot no consort, and may be don't wish for none. Steady! You hailed me\nfirst, along of a certain young lady, as you was chartered by. Now if\nyou and me is to keep one another's company at all, that there young\ncreetur's name must never be named nor referred to. I don't know what\nharm mayn't have been done by naming of it too free, afore now, and\nthereby I brings up short. D'ye make me out pretty clear, brother?'\n\n'Well, you'll excuse me, Captain Gills,' replied Mr Toots, 'if I\ndon't quite follow you sometimes. But upon my word I - it's a hard\nthing, Captain Gills, not to be able to mention Miss Dombey. I really\nhave got such a dreadful load here!' - Mr Toots pathetically touched\nhis shirt-front with both hands - 'that I feel night and day, exactly\nas if somebody was sitting upon me.\n\n'Them,' said the Captain, 'is the terms I offer. If they're hard\nupon you, brother, as mayhap they are, give 'em a wide berth, sheer\noff, and part company cheerily!'\n\n'Captain Gills,' returned Mr Toots, 'I hardly know how it is, but\nafter what you told me when I came here, for the first time, I - I\nfeel that I'd rather think about Miss Dombey in your society than talk\nabout her in almost anybody else's. Therefore, Captain Gills, if\nyou'll give me the pleasure of your acquaintance, I shall be very\nhappy to accept it on your own conditions. I wish to be honourable,\nCaptain Gills,' said Mr Toots, holding back his extended hand for a\nmoment, 'and therefore I am obliged to say that I can not help\nthinking about Miss Dombey. It's impossible for me to make a promise\nnot to think about her.'\n\n'My lad,' said the Captain, whose opinion of Mr Toots was much\nimproved by this candid avowal, 'a man's thoughts is like the winds,\nand nobody can't answer for 'em for certain, any length of time\ntogether. Is it a treaty as to words?'\n\n'As to words, Captain Gills,' returned Mr Toots, 'I think I can\nbind myself.'\n\nMr Toots gave Captain Cuttle his hand upon it, then and there; and\nthe Captain with a pleasant and gracious show of condescension,\nbestowed his acquaintance upon him formally. Mr Toots seemed much\nrelieved and gladdened by the acquisition, and chuckled rapturously\nduring the remainder of his visit. The Captain, for his part, was not\nill pleased to occupy that position of patronage, and was exceedingly\nwell satisfied by his own prudence and foresight.\n\nBut rich as Captain Cuttle was in the latter quality, he received a\nsurprise that same evening from a no less ingenuous and simple youth,\nthan Rob the Grinder. That artless lad, drinking tea at the same\ntable, and bending meekly over his cup and saucer, having taken\nsidelong observations of his master for some time, who was reading the\nnewspaper with great difficulty, but much dignity, through his\nglasses, broke silence by saying -\n\n'Oh! I beg your pardon, Captain, but you mayn't be in want of any\npigeons, may you, Sir?'\n\n'No, my lad,' replied the Captain.\n\n'Because I was wishing to dispose of mine, Captain,' said Rob.\n\n'Ay, ay?' cried the Captain, lifting up his bushy eyebrows a\nlittle.\n\n'Yes; I'm going, Captain, if you please,' said Rob.\n\n'Going? Where are you going?' asked the Captain, looking round at\nhim over the glasses.\n\n'What? didn't you know that I was going to leave you, Captain?'\nasked Rob, with a sneaking smile.\n\nThe Captain put down the paper, took off his spectacles, and\nbrought his eyes to bear on the deserter.\n\n'Oh yes, Captain, I am going to give you warning. I thought you'd\nhave known that beforehand, perhaps,' said Rob, rubbing his hands, and\ngetting up. 'If you could be so good as provide yourself soon,\nCaptain, it would be a great convenience to me. You couldn't provide\nyourself by to-morrow morning, I am afraid, Captain: could you, do you\nthink?'\n\n'And you're a going to desert your colours, are you, my lad?' said\nthe Captain, after a long examination of his face.\n\n'Oh, it's very hard upon a cove, Captain,' cried the tender Rob,\ninjured and indignant in a moment, 'that he can't give lawful warning,\nwithout being frowned at in that way, and called a deserter. You\nhaven't any right to call a poor cove names, Captain. It ain't because\nI'm a servant and you're a master, that you're to go and libel me.\nWhat wrong have I done? Come, Captain, let me know what my crime is,\nwill you?'\n\nThe stricken Grinder wept, and put his coat-cuff in his eye.\n\n'Come, Captain,' cried the injured youth, 'give my crime a name!\nWhat have I been and done? Have I stolen any of the property? have I\nset the house a-fire? If I have, why don't you give me in charge, and\ntry it? But to take away the character of a lad that's been a good\nservant to you, because he can't afford to stand in his own light for\nyour good, what a injury it is, and what a bad return for faithful\nservice! This is the way young coves is spiled and drove wrong. I\nwonder at you, Captain, I do.'\n\nAll of which the Grinder howled forth in a lachrymose whine, and\nbacking carefully towards the door.\n\n'And so you've got another berth, have you, my lad?' said the\nCaptain, eyeing him intently.\n\n'Yes, Captain, since you put it in that shape, I have got another\nberth,' cried Rob, backing more and more; 'a better berth than I've\ngot here, and one where I don't so much as want your good word,\nCaptain, which is fort'nate for me, after all the dirt you've throw'd\nat me, because I'm poor, and can't afford to stand in my own light for\nyour good. Yes, I have got another berth; and if it wasn't for leaving\nyou unprovided, Captain, I'd go to it now, sooner than I'd take them\nnames from you, because I'm poor, and can't afford to stand in my own\nlight for your good. Why do you reproach me for being poor, and not\nstanding in my own light for your good, Captain? How can you so demean\nyourself?'\n\n'Look ye here, my boy,' replied the peaceful Captain. 'Don't you\npay out no more of them words.'\n\n'Well, then, don't you pay in no more of your words, Captain,'\nretorted the roused innocent, getting louder in his whine, and backing\ninto the shop. 'I'd sooner you took my blood than my character.'\n\n'Because,' pursued the Captain calmly, 'you have heerd, may be, of\nsuch a thing as a rope's end.'\n\n'Oh, have I though, Captain?' cried the taunting Grinder. 'No I\nhaven't. I never heerd of any such a article!'\n\n'Well,' said the Captain, 'it's my belief as you'll know more about\nit pretty soon, if you don't keep a bright look-out. I can read your\nsignals, my lad. You may go.'\n\n'Oh! I may go at once, may I, Captain?' cried Rob, exulting in his\nsuccess. 'But mind! I never asked to go at once, Captain. You are not\nto take away my character again, because you send me off of your own\naccord. And you're not to stop any of my wages, Captain!'\n\nHis employer settled the last point by producing the tin canister\nand telling the Grinder's money out in full upon the table. Rob,\nsnivelling and sobbing, and grievously wounded in his feelings, took\nup the pieces one by one, with a sob and a snivel for each, and tied\nthem up separately in knots in his pockethandkerchief; then he\nascended to the roof of the house and filled his hat and pockets with\npigeons; then, came down to his bed under the counter and made up his\nbundle, snivelling and sobbing louder, as if he were cut to the heart\nby old associations; then he whined, 'Good-night, Captain. I leave you\nwithout malice!' and then, going out upon the door-step, pulled the\nlittle Midshipman's nose as a parting indignity, and went away down\nthe street grinning triumphantly.\n\nThe Captain, left to himself, resumed his perusal of the news as if\nnothing unusual or unexpected had taken place, and went reading on\nwith the greatest assiduity. But never a word did Captain Cuttle\nunderstand, though he read a vast number, for Rob the Grinder was\nscampering up one column and down another all through the newspaper.\n\nIt is doubtful whether the worthy Captain had ever felt himself\nquite abandoned until now; but now, old Sol Gills, Walter, and Heart's\nDelight were lost to him indeed, and now Mr Carker deceived and jeered\nhim cruelly. They were all represented in the false Rob, to whom he\nhad held forth many a time on the recollections that were warm within\nhim; he had believed in the false Rob, and had been glad to believe in\nhim; he had made a companion of him as the last of the old ship's\ncompany; he had taken the command of the little Midshipman with him at\nhis right hand; he had meant to do his duty by him, and had felt\nalmost as kindly towards the boy as if they had been shipwrecked and\ncast upon a desert place together. And now, that the false Rob had\nbrought distrust, treachery, and meanness into the very parlour, which\nwas a kind of sacred place, Captain Cuttle felt as if the parlour\nmight have gone down next, and not surprised him much by its sinking,\nor given him any very great concern.\n\nTherefore Captain Cuttle read the newspaper with profound attention\nand no comprehension, and therefore Captain Cuttle said nothing\nwhatever about Rob to himself, or admitted to himself that he was\nthinking about him, or would recognise in the most distant manner that\nRob had anything to do with his feeling as lonely as Robinson Crusoe.\n\nIn the same composed, business-like way, the Captain stepped over\nto Leadenhall Market in the dusk, and effected an arrangement with a\nprivate watchman on duty there, to come and put up and take down the\nshutters of the wooden Midshipman every night and morning. He then\ncalled in at the eating-house to diminish by one half the daily\nrations theretofore supplied to the Midshipman, and at the\npublic-house to stop the traitor's beer. 'My young man,' said the\nCaptain, in explanation to the young lady at the bar, 'my young man\nhaving bettered himself, Miss.' Lastly, the Captain resolved to take\npossession of the bed under the counter, and to turn in there o'\nnights instead of upstairs, as sole guardian of the property.\n\nFrom this bed Captain Cuttle daily rose thenceforth, and clapped on\nhis glazed hat at six o'clock in the morning, with the solitary air of\nCrusoe finishing his toilet with his goat-skin cap; and although his\nfears of a visitation from the savage tribe, MacStinger, were somewhat\ncooled, as similar apprehensions on the part of that lone mariner used\nto be by the lapse of a long interval without any symptoms of the\ncannibals, he still observed a regular routine of defensive\noperations, and never encountered a bonnet without previous survey\nfrom his castle of retreat. In the meantime (during which he received\nno call from Mr Toots, who wrote to say he was out of town) his own\nvoice began to have a strange sound in his ears; and he acquired such\nhabits of profound meditation from much polishing and stowing away of\nthe stock, and from much sitting behind the counter reading, or\nlooking out of window, that the red rim made on his forehead by the\nhard glazed hat, sometimes ached again with excess of reflection.\n\nThe year being now expired, Captain Cuttle deemed it expedient to\nopen the packet; but as he had always designed doing this in the\npresence of Rob the Grinder, who had brought it to him, and as he had\nan idea that it would be regular and ship-shape to open it in the\npresence of somebody, he was sadly put to it for want of a witness. In\nthis difficulty, he hailed one day with unusual delight the\nannouncement in the Shipping Intelligence of the arrival of the\nCautious Clara, Captain John Bunsby, from a coasting voyage; and to\nthat philosopher immediately dispatched a letter by post, enjoining\ninviolable secrecy as to his place of residence, and requesting to be\nfavoured with an early visit, in the evening season.\n\nBunsby, who was one of those sages who act upon conviction, took\nsome days to get the conviction thoroughly into his mind, that he had\nreceived a letter to this effect. But when he had grappled with the\nfact, and mastered it, he promptly sent his boy with the message,\n'He's a coming to-night.' Who being instructed to deliver those words\nand disappear, fulfilled his mission like a tarry spirit, charged with\na mysterious warning.\n\nThe Captain, well pleased to receive it, made preparation of pipes\nand rum and water, and awaited his visitor in the back parlour. At the\nhour of eight, a deep lowing, as of a nautical Bull, outside the\nshop-door, succeeded by the knocking of a stick on the panel,\nannounced to the listening ear of Captain Cuttle, that Bunsby was\nalongside; whom he instantly admitted, shaggy and loose, and with his\nstolid mahogany visage, as usual, appearing to have no consciousness\nof anything before it, but to be attentively observing something that\nwas taking place in quite another part of the world.\n\n'Bunsby,' said the Captain, grasping him by the hand, 'what cheer,\nmy lad, what cheer?'\n\n'Shipmet,' replied the voice within Bunsby, unaccompanied by any\nsign on the part of the Commander himself, 'hearty, hearty.'\n\n'Bunsby!' said the Captain, rendering irrepressible homage to his\ngenius, 'here you are! a man as can give an opinion as is brighter\nthan di'monds - and give me the lad with the tarry trousers as shines\nto me like di'monds bright, for which you'll overhaul the Stanfell's\nBudget, and when found make a note.' Here you are, a man as gave an\nopinion in this here very place, that has come true, every letter on\nit,' which the Captain sincerely believed.\n\n'Ay, ay?' growled Bunsby.\n\n'Every letter,' said the Captain.\n\n'For why?' growled Bunsby, looking at his friend for the first\ntime. 'Which way? If so, why not? Therefore.' With these oracular\nwords - they seemed almost to make the Captain giddy; they launched\nhim upon such a sea of speculation and conjecture - the sage submitted\nto be helped off with his pilot-coat, and accompanied his friend into\nthe back parlour, where his hand presently alighted on the rum-bottle,\nfrom which he brewed a stiff glass of grog; and presently afterwards\non a pipe, which he filled, lighted, and began to smoke.\n\nCaptain Cuttle, imitating his visitor in the matter of these\nparticulars, though the rapt and imperturbable manner of the great\nCommander was far above his powers, sat in the opposite corner of the\nfireside, observing him respectfully, and as if he waited for some\nencouragement or expression of curiosity on Bunsby's part which should\nlead him to his own affairs. But as the mahogany philosopher gave no\nevidence of being sentient of anything but warmth and tobacco, except\nonce, when taking his pipe from his lips to make room for his glass,\nhe incidentally remarked with exceeding gruffness, that his name was\nJack Bunsby - a declaration that presented but small opening for\nconversation - the Captain bespeaking his attention in a short\ncomplimentary exordium, narrated the whole history of Uncle Sol's\ndeparture, with the change it had produced in his own life and\nfortunes; and concluded by placing the packet on the table.\n\nAfter a long pause, Mr Bunsby nodded his head.\n\n'Open?' said the Captain.\n\nBunsby nodded again.\n\nThe Captain accordingly broke the seal, and disclosed to view two\nfolded papers, of which he severally read the endorsements, thus:\n'Last Will and Testament of Solomon Gills.' 'Letter for Ned Cuttle.'\n\nBunsby, with his eye on the coast of Greenland, seemed to listen\nfor the contents. The Captain therefore hemmed to clear his throat,\nand read the letter aloud.\n\n'\"My dear Ned Cuttle. When I left home for the West Indies\" - '\n\nHere the Captain stopped, and looked hard at Bunsby, who looked\nfixedly at the coast of Greenland.\n\n' - \"in forlorn search of intelligence of my dear boy, I knew that\nif you were acquainted with my design, you would thwart it, or\naccompany me; and therefore I kept it secret. If you ever read this\nletter, Ned, I am likely to be dead. You will easily forgive an old\nfriend's folly then, and will feel for the restlessness and\nuncertainty in which he wandered away on such a wild voyage. So no\nmore of that. I have little hope that my poor boy will ever read these\nwords, or gladden your eyes with the sight of his frank face any\nmore.\" No, no; no more,' said Captain Cuttle, sorrowfully meditating;\n'no more. There he lays, all his days - '\n\nMr Bunsby, who had a musical ear, suddenly bellowed, 'In the Bays\nof Biscay, O!' which so affected the good Captain, as an appropriate\ntribute to departed worth, that he shook him by the hand in\nacknowledgment, and was fain to wipe his eyes.\n\n'Well, well!' said the Captain with a sigh, as the Lament of Bunsby\nceased to ring and vibrate in the skylight. 'Affliction sore, long\ntime he bore, and let us overhaul the wollume, and there find it.'\n\n'Physicians,' observed Bunsby, 'was in vain.\"\n\n'Ay, ay, to be sure,' said the Captain, 'what's the good o' them in\ntwo or three hundred fathoms o' water!' Then, returning to the letter,\nhe read on: - '\"But if he should be by, when it is opened;\"' the\nCaptain involuntarily looked round, and shook his head; '\"or should\nknow of it at any other time;\"' the Captain shook his head again; '\"my\nblessing on him! In case the accompanying paper is not legally\nwritten, it matters very little, for there is no one interested but\nyou and he, and my plain wish is, that if he is living he should have\nwhat little there may be, and if (as I fear) otherwise, that you\nshould have it, Ned. You will respect my wish, I know. God bless you\nfor it, and for all your friendliness besides, to Solomon Gills.\"\nBunsby!' said the Captain, appealing to him solemnly, 'what do you\nmake of this? There you sit, a man as has had his head broke from\ninfancy up'ards, and has got a new opinion into it at every seam as\nhas been opened. Now, what do you make o' this?'\n\n'If so be,' returned Bunsby, with unusual promptitude, 'as he's\ndead, my opinion is he won't come back no more. If so be as he's\nalive, my opinion is he will. Do I say he will? No. Why not? Because\nthe bearings of this obserwation lays in the application on it.'\n\n'Bunsby!' said Captain Cuttle, who would seem to have estimated the\nvalue of his distinguished friend's opinions in proportion to the\nimmensity of the difficulty he experienced in making anything out of\nthem; 'Bunsby,' said the Captain, quite confounded by admiration, 'you\ncarry a weight of mind easy, as would swamp one of my tonnage soon.\nBut in regard o' this here will, I don't mean to take no steps towards\nthe property - Lord forbid! - except to keep it for a more rightful\nowner; and I hope yet as the rightful owner, Sol Gills, is living\nand'll come back, strange as it is that he ain't forwarded no\ndispatches. Now, what is your opinion, Bunsby, as to stowing of these\nhere papers away again, and marking outside as they was opened, such a\nday, in the presence of John Bunsby and Ed'ard Cuttle?'\n\nBunsby, descrying no objection, on the coast of Greenland or\nelsewhere, to this proposal, it was carried into execution; and that\ngreat man, bringing his eye into the present for a moment, affixed his\nsign-manual to the cover, totally abstaining, with characteristic\nmodesty, from the use of capital letters. Captain Cuttle, having\nattached his own left-handed signature, and locked up the packet in\nthe iron safe, entreated his guest to mix another glass and smoke\nanother pipe; and doing the like himself, fell a musing over the fire\non the possible fortunes of the poor old Instrument-maker.\n\nAnd now a surprise occurred, so overwhelming and terrific that\nCaptain Cuttle, unsupported by the presence of Bunsby, must have sunk\nbeneath it, and been a lost man from that fatal hour.\n\nHow the Captain, even in the satisfaction of admitting such a\nguest, could have only shut the door, and not locked it, of which\nnegligence he was undoubtedly guilty, is one of those questions that\nmust for ever remain mere points of speculation, or vague charges\nagainst destiny. But by that unlocked door, at this quiet moment, did\nthe fell MacStinger dash into the parlour, bringing Alexander\nMacStinger in her parental arms, and confusion and vengeance (not to\nmention Juliana MacStinger, and the sweet child's brother, Charles\nMacStinger, popularly known about the scenes of his youthful sports,\nas Chowley) in her train. She came so swiftly and so silently, like a\nrushing air from the neighbourhood of the East India Docks, that\nCaptain Cuttle found himself in the very act of sitting looking at\nher, before the calm face with which he had been meditating, changed\nto one of horror and dismay.\n\nBut the moment Captain Cuttle understood the full extent of his\nmisfortune, self-preservation dictated an attempt at flight. Darting\nat the little door which opened from the parlour on the steep little\nrange of cellar-steps, the Captain made a rush, head-foremost, at the\nlatter, like a man indifferent to bruises and contusions, who only\nsought to hide himself in the bowels of the earth. In this gallant\neffort he would probably have succeeded, but for the affectionate\ndispositions of Juliana and Chowley, who pinning him by the legs - one\nof those dear children holding on to each - claimed him as their\nfriend, with lamentable cries. In the meantime, Mrs MacStinger, who\nnever entered upon any action of importance without previously\ninverting Alexander MacStinger, to bring him within the range of a\nbrisk battery of slaps, and then sitting him down to cool as the\nreader first beheld him, performed that solemn rite, as if on this\noccasion it were a sacrifice to the Furies; and having deposited the\nvictim on the floor, made at the Captain with a strength of purpose\nthat appeared to threaten scratches to the interposing Bunsby.\n\nThe cries of the two elder MacStingers, and the wailing of young\nAlexander, who may be said to have passed a piebald childhood,\nforasmuch as he was black in the face during one half of that fairy\nperiod of existence, combined to make this visitation the more awful.\nBut when silence reigned again, and the Captain, in a violent\nperspiration, stood meekly looking at Mrs MacStinger, its terrors were\nat their height.\n\n'Oh, Cap'en Cuttle, Cap'en Cuttle!' said Mrs MacStinger, making her\nchin rigid, and shaking it in unison with what, but for the weakness\nof her sex, might be described as her fist. 'Oh, Cap'en Cuttle, Cap'en\nCuttle, do you dare to look me in the face, and not be struck down in\nthe herth!'\n\nThe Captain, who looked anything but daring, feebly muttered\n'Standby!'\n\n'Oh I was a weak and trusting Fool when I took you under my roof,\nCap'en Cuttle, I was!' cried Mrs MacStinger. 'To think of the benefits\nI've showered on that man, and the way in which I brought my children\nup to love and honour him as if he was a father to 'em, when there\nain't a housekeeper, no nor a lodger in our street, don't know that I\nlost money by that man, and by his guzzlings and his muzzlings' - Mrs\nMacStinger used the last word for the joint sake of alliteration and\naggravation, rather than for the expression of any idea - 'and when\nthey cried out one and all, shame upon him for putting upon an\nindustrious woman, up early and late for the good of her young family,\nand keeping her poor place so clean that a individual might have ate\nhis dinner, yes, and his tea too, if he was so disposed, off any one\nof the floors or stairs, in spite of all his guzzlings and his\nmuzzlings, such was the care and pains bestowed upon him!'\n\nMrs MacStinger stopped to fetch her breath; and her face flushed\nwith triumph in this second happy introduction of Captain Cuttle's\nmuzzlings.\n\n'And he runs awa-a-a-y!'cried Mrs MacStinger, with a lengthening\nout of the last syllable that made the unfortunate Captain regard\nhimself as the meanest of men; 'and keeps away a twelve-month! From a\nwoman! Such is his conscience! He hasn't the courage to meet her\nhi-i-igh;' long syllable again; 'but steals away, like a felion. Why,\nif that baby of mine,' said Mrs MacStinger, with sudden rapidity, 'was\nto offer to go and steal away, I'd do my duty as a mother by him, till\nhe was covered with wales!'\n\nThe young Alexander, interpreting this into a positive promise, to\nbe shortly redeemed, tumbled over with fear and grief, and lay upon\nthe floor, exhibiting the soles of his shoes and making such a\ndeafening outcry, that Mrs MacStinger found it necessary to take him\nup in her arms, where she quieted him, ever and anon, as he broke out\nagain, by a shake that seemed enough to loosen his teeth.\n\n'A pretty sort of a man is Cap'en Cuttle,' said Mrs MacStinger,\nwith a sharp stress on the first syllable of the Captain's name, 'to\ntake on for - and to lose sleep for- and to faint along of- and to\nthink dead forsooth - and to go up and down the blessed town like a\nmadwoman, asking questions after! Oh, a pretty sort of a man! Ha ha ha\nha! He's worth all that trouble and distress of mind, and much more.\nThat's nothing, bless you! Ha ha ha ha! Cap'en Cuttle,' said Mrs\nMacStinger, with severe reaction in her voice and manner, 'I wish to\nknow if you're a-coming home.\n\nThe frightened Captain looked into his hat, as if he saw nothing\nfor it but to put it on, and give himself up.\n\n'Cap'en Cuttle,' repeated Mrs MacStinger, in the same determined\nmanner, 'I wish to know if you're a-coming home, Sir.'\n\nThe Captain seemed quite ready to go, but faintly suggested\nsomething to the effect of 'not making so much noise about it.'\n\n'Ay, ay, ay,' said Bunsby, in a soothing tone. 'Awast, my lass,\nawast!'\n\n'And who may you be, if you please!' retorted Mrs MacStinger, with\nchaste loftiness. 'Did you ever lodge at Number Nine, Brig Place, Sir?\nMy memory may be bad, but not with me, I think. There was a Mrs\nJollson lived at Number Nine before me, and perhaps you're mistaking\nme for her. That is my only ways of accounting for your familiarity,\nSir.'\n\n'Come, come, my lass, awast, awast!' said Bunsby.\n\nCaptain Cuttle could hardly believe it, even of this great man,\nthough he saw it done with his waking eyes; but Bunsby, advancing\nboldly, put his shaggy blue arm round Mrs MacStinger, and so softened\nher by his magic way of doing it, and by these few words - he said no\nmore - that she melted into tears, after looking upon him for a few\nmoments, and observed that a child might conquer her now, she was so\nlow in her courage.\n\nSpeechless and utterly amazed, the Captain saw him gradually\npersuade this inexorable woman into the shop, return for rum and water\nand a candle, take them to her, and pacify her without appearing to\nutter one word. Presently he looked in with his pilot-coat on, and\nsaid, 'Cuttle, I'm a-going to act as convoy home;' and Captain Cuttle,\nmore to his confusion than if he had been put in irons himself, for\nsafe transport to Brig Place, saw the family pacifically filing off,\nwith Mrs MacStinger at their head. He had scarcely time to take down\nhis canister, and stealthily convey some money into the hands of\nJuliana MacStinger, his former favourite, and Chowley, who had the\nclaim upon him that he was naturally of a maritime build, before the\nMidshipman was abandoned by them all; and Bunsby whispering that he'd\ncarry on smart, and hail Ned Cuttle again before he went aboard, shut\nthe door upon himself, as the last member of the party.\n\nSome uneasy ideas that he must be walking in his sleep, or that he\nhad been troubled with phantoms, and not a family of flesh and blood,\nbeset the Captain at first, when he went back to the little parlour,\nand found himself alone. Illimitable faith in, and immeasurable\nadmiration of, the Commander of the Cautious Clara, succeeded, and\nthrew the Captain into a wondering trance.\n\nStill, as time wore on, and Bunsby failed to reappear, the Captain\nbegan to entertain uncomfortable doubts of another kind. Whether\nBunsby had been artfully decoyed to Brig Place, and was there detained\nin safe custody as hostage for his friend; in which case it would\nbecome the Captain, as a man of honour, to release him, by the\nsacrifice of his own liberty. Whether he had been attacked and\ndefeated by Mrs MacStinger, and was ashamed to show himself after his\ndiscomfiture. Whether Mrs MacStinger, thinking better of it, in the\nuncertainty of her temper, had turned back to board the Midshipman\nagain, and Bunsby, pretending to conduct her by a short cut, was\nendeavouring to lose the family amid the wilds and savage places of\nthe City. Above all, what it would behove him, Captain Cuttle, to do,\nin case of his hearing no more, either of the MacStingers or of\nBunsby, which, in these wonderful and unforeseen conjunctions of\nevents, might possibly happen.\n\nHe debated all this until he was tired; and still no Bunsby. He\nmade up his bed under the counter, all ready for turning in; and still\nno Bunsby. At length, when the Captain had given him up, for that\nnight at least, and had begun to undress, the sound of approaching\nwheels was heard, and, stopping at the door, was succeeded by Bunsby's\nhail.\n\nThe Captain trembled to think that Mrs MacStinger was not to be got\nrid of, and had been brought back in a coach.\n\nBut no. Bunsby was accompanied by nothing but a large box, which he\nhauled into the shop with his own hands, and as soon as he had hauled\nin, sat upon. Captain Cuttle knew it for the chest he had left at Mrs\nMacStinger's house, and looking, candle in hand, at Bunsby more\nattentively, believed that he was three sheets in the wind, or, in\nplain words, drunk. It was difficult, however, to be sure of this; the\nCommander having no trace of expression in his face when sober.\n\n'Cuttle,' said the Commander, getting off the chest, and opening\nthe lid, 'are these here your traps?'\n\nCaptain Cuttle looked in and identified his property.\n\n'Done pretty taut and trim, hey, shipmet?' said Bunsby.\n\nThe grateful and bewildered Captain grasped him by the hand, and\nwas launching into a reply expressive of his astonished feelings, when\nBunsby disengaged himself by a jerk of his wrist, and seemed to make\nan effort to wink with his revolving eye, the only effect of which\nattempt, in his condition, was nearly to over-balance him. He then\nabruptly opened the door, and shot away to rejoin the Cautious Clara\nwith all speed - supposed to be his invariable custom, whenever he\nconsidered he had made a point.\n\nAs it was not his humour to be often sought, Captain Cuttle decided\nnot to go or send to him next day, or until he should make his\ngracious pleasure known in such wise, or failing that, until some\nlittle time should have lapsed. The Captain, therefore, renewed his\nsolitary life next morning, and thought profoundly, many mornings,\nnoons, and nights, of old Sol Gills, and Bunsby's sentiments\nconcerning him, and the hopes there were of his return. Much of such\nthinking strengthened Captain Cuttle's hopes; and he humoured them and\nhimself by watching for the Instrument-maker at the door - as he\nventured to do now, in his strange liberty - and setting his chair in\nits place, and arranging the little parlour as it used to be, in case\nhe should come home unexpectedly. He likewise, in his thoughtfulness,\ntook down a certain little miniature of Walter as a schoolboy, from\nits accustomed nail, lest it should shock the old man on his return.\nThe Captain had his presentiments, too, sometimes, that he would come\non such a day; and one particular Sunday, even ordered a double\nallowance of dinner, he was so sanguine. But come, old Solomon did\nnot; and still the neighbours noticed how the seafaring man in the\nglazed hat, stood at the shop-door of an evening, looking up and down\nthe street.\n\n\n\nCHAPTER 40.\n\nDomestic Relations\n\n\n\nIt was not in the nature of things that a man of Mr Dombey's mood,\nopposed to such a spirit as he had raised against himself, should be\nsoftened in the imperious asperity of his temper; or that the cold\nhard armour of pride in which he lived encased, should be made more\nflexible by constant collision with haughty scorn and defiance. It is\nthe curse of such a nature - it is a main part of the heavy\nretribution on itself it bears within itself - that while deference\nand concession swell its evil qualities, and are the food it grows\nupon, resistance and a questioning of its exacting claims, foster it\ntoo, no less. The evil that is in it finds equally its means of growth\nand propagation in opposites. It draws support and life from sweets\nand bitters; bowed down before, or unacknowledged, it still enslaves\nthe breast in which it has its throne; and, worshipped or rejected, is\nas hard a master as the Devil in dark fables.\n\nTowards his first wife, Mr Dombey, in his cold and lofty arrogance,\nhad borne himself like the removed Being he almost conceived himself\nto be. He had been 'Mr Dombey' with her when she first saw him, and he\nwas 'Mr Dombey' when she died. He had asserted his greatness during\ntheir whole married life, and she had meekly recognised it. He had\nkept his distant seat of state on the top of his throne, and she her\nhumble station on its lowest step; and much good it had done him, so\nto live in solitary bondage to his one idea. He had imagined that the\nproud character of his second wife would have been added to his own -\nwould have merged into it, and exalted his greatness. He had pictured\nhimself haughtier than ever, with Edith's haughtiness subservient to\nhis. He had never entertained the possibility of its arraying itself\nagainst him. And now, when he found it rising in his path at every\nstep and turn of his daily life, fixing its cold, defiant, and\ncontemptuous face upon him, this pride of his, instead of withering,\nor hanging down its head beneath the shock, put forth new shoots,\nbecame more concentrated and intense, more gloomy, sullen, irksome,\nand unyielding, than it had ever been before.\n\nWho wears such armour, too, bears with him ever another heavy\nretribution. It is of proof against conciliation, love, and\nconfidence; against all gentle sympathy from without, all trust, all\ntenderness, all soft emotion; but to deep stabs in the self-love, it\nis as vulnerable as the bare breast to steel; and such tormenting\nfesters rankle there, as follow on no other wounds, no, though dealt\nwith the mailed hand of Pride itself, on weaker pride, disarmed and\nthrown down.\n\nSuch wounds were his. He felt them sharply, in the solitude of his\nold rooms; whither he now began often to retire again, and pass long\nsolitary hours. It seemed his fate to be ever proud and powerful; ever\nhumbled and powerless where he would be most strong. Who seemed fated\nto work out that doom?\n\nWho? Who was it who could win his wife as she had won his boy? Who\nwas it who had shown him that new victory, as he sat in the dark\ncorner? Who was it whose least word did what his utmost means could\nnot? Who was it who, unaided by his love, regard or notice, thrived\nand grew beautiful when those so aided died? Who could it be, but the\nsame child at whom he had often glanced uneasily in her motherless\ninfancy, with a kind of dread, lest he might come to hate her; and of\nwhom his foreboding was fulfilled, for he DID hate her in his heart?\n\nYes, and he would have it hatred, and he made it hatred, though\nsome sparkles of the light in which she had appeared before him on the\nmemorable night of his return home with his Bride, occasionally hung\nabout her still. He knew now that she was beautiful; he did not\ndispute that she was graceful and winning, and that in the bright dawn\nof her womanhood she had come upon him, a surprise. But he turned even\nthis against her. In his sullen and unwholesome brooding, the unhappy\nman, with a dull perception of his alienation from all hearts, and a\nvague yearning for what he had all his life repelled, made a distorted\npicture of his rights and wrongs, and justified himself with it\nagainst her. The worthier she promised to be of him, the greater claim\nhe was disposed to antedate upon her duty and submission. When had she\never shown him duty and submission? Did she grace his life - or\nEdith's? Had her attractions been manifested first to him - or Edith?\nWhy, he and she had never been, from her birth, like father and child!\nThey had always been estranged. She had crossed him every way and\neverywhere. She was leagued against him now. Her very beauty softened\nnatures that were obdurate to him, and insulted him with an unnatural\ntriumph.\n\nIt may have been that in all this there were mutterings of an\nawakened feeling in his breast, however selfishly aroused by his\nposition of disadvantage, in comparison with what she might have made\nhis life. But he silenced the distant thunder with the rolling of his\nsea of pride. He would bear nothing but his pride. And in his pride, a\nheap of inconsistency, and misery, and self-inflicted torment, he\nhated her.\n\nTo the moody, stubborn, sullen demon, that possessed him, his wife\nopposed her different pride in its full force. They never could have\nled a happy life together; but nothing could have made it more\nunhappy, than the wilful and determined warfare of such elements. His\npride was set upon maintaining his magnificent supremacy, and forcing\nrecognition of it from her. She would have been racked to death, and\nturned but her haughty glance of calm inflexible disdain upon him, to\nthe last. Such recognition from Edith! He little knew through what a\nstorm and struggle she had been driven onward to the crowning honour\nof his hand. He little knew how much she thought she had conceded,\nwhen she suffered him to call her wife.\n\nMr Dombey was resolved to show her that he was supreme. There must\nbe no will but his. Proud he desired that she should be, but she must\nbe proud for, not against him. As he sat alone, hardening, he would\noften hear her go out and come home, treading the round of London life\nwith no more heed of his liking or disliking, pleasure or displeasure,\nthan if he had been her groom. Her cold supreme indifference - his own\nunquestioned attribute usurped - stung him more than any other kind of\ntreatment could have done; and he determined to bend her to his\nmagnificent and stately will.\n\nHe had been long communing with these thoughts, when one night he\nsought her in her own apartment, after he had heard her return home\nlate. She was alone, in her brilliant dress, and had but that moment\ncome from her mother's room. Her face was melancholy and pensive, when\nhe came upon her; but it marked him at the door; for, glancing at the\nmirror before it, he saw immediately, as in a picture-frame, the\nknitted brow, and darkened beauty that he knew so well.\n\n'Mrs Dombey,' he said, entering, 'I must beg leave to have a few\nwords with you.'\n\n'To-morrow,' she replied.\n\n'There is no time like the present, Madam,' he returned. 'You\nmistake your position. I am used to choose my own times; not to have\nthem chosen for me. I think you scarcely understand who and what I am,\nMrs Dombey.\n\n'I think,' she answered, 'that I understand you very well.'\n\nShe looked upon him as she said so, and folding her white arms,\nsparkling with gold and gems, upon her swelling breast, turned away\nher eyes.\n\nIf she had been less handsome, and less stately in her cold\ncomposure, she might not have had the power of impressing him with the\nsense of disadvantage that penetrated through his utmost pride. But\nshe had the power, and he felt it keenly. He glanced round the room:\nsaw how the splendid means of personal adornment, and the luxuries of\ndress, were scattered here and there, and disregarded; not in mere\ncaprice and carelessness (or so he thought), but in a steadfast\nhaughty disregard of costly things: and felt it more and more.\nChaplets of flowers, plumes of feathers, jewels, laces, silks and\nsatins; look where he would, he saw riches, despised, poured out, and.\nmade of no account. The very diamonds - a marriage gift - that rose\nand fell impatiently upon her bosom, seemed to pant to break the chain\nthat clasped them round her neck, and roll down on the floor where she\nmight tread upon them.\n\nHe felt his disadvantage, and he showed it. Solemn and strange\namong this wealth of colour and voluptuous glitter, strange and\nconstrained towards its haughty mistress, whose repellent beauty it\nrepeated, and presented all around him, as in so many fragments of a\nmirror, he was conscious of embarrassment and awkwardness. Nothing\nthat ministered to her disdainful self-possession could fail to gall\nhim. Galled and irritated with himself, he sat down, and went on, in\nno improved humour:\n\n'Mrs Dombey, it is very necessary that there should be some\nunderstanding arrived at between us. Your conduct does not please me,\nMadam.'\n\nShe merely glanced at him again, and again averted her eyes; but\nshe might have spoken for an hour, and expressed less.\n\n'I repeat, Mrs Dombey, does not please me. I have already taken\noccasion to request that it may be corrected. I now insist upon it.'\n\n'You chose a fitting occasion for your first remonstrance, Sir, and\nyou adopt a fitting manner, and a fitting word for your second. You\ninsist! To me!'\n\n'Madam,' said Mr Dombey, with his most offensive air of state, 'I\nhave made you my wife. You bear my name. You are associated with my\nposition and my reputation. I will not say that the world in general\nmay be disposed to think you honoured by that association; but I will\nsay that I am accustomed to \"insist,\" to my connexions and\ndependents.'\n\n'Which may you be pleased to consider me? she asked.\n\n'Possibly I may think that my wife should partake - or does\npartake, and cannot help herself - of both characters, Mrs Dombey.'\n\nShe bent her eyes upon him steadily, and set her trembling lips. He\nsaw her bosom throb, and saw her face flush and turn white. All this\nhe could know, and did: but he could not know that one word was\nwhispering in the deep recesses of her heart, to keep her quiet; and\nthat the word was Florence.\n\nBlind idiot, rushing to a precipice! He thought she stood in awe of\nhim.\n\n'You are too expensive, Madam,' said Mr Dombey. 'You are\nextravagant. You waste a great deal of money - or what would be a\ngreat deal in the pockets of most gentlemen - in cultivating a kind of\nsociety that is useless to me, and, indeed, that upon the whole is\ndisagreeable to me. I have to insist upon a total change in all these\nrespects. I know that in the novelty of possessing a tithe of such\nmeans as Fortune has placed at your disposal, ladies are apt to run\ninto a sudden extreme. There has been more than enough of that\nextreme. I beg that Mrs Granger's very different experiences may now\ncome to the instruction of Mrs Dombey.'\n\nStill the fixed look, the trembling lips, the throbbing breast, the\nface now crimson and now white; and still the deep whisper Florence,\nFlorence, speaking to her in the beating of her heart.\n\nHis insolence of self-importance dilated as he saw this alteration\nin her. Swollen no less by her past scorn of him, and his so recent\nfeeling of disadvantage, than by her present submission (as he took it\nto be), it became too mighty for his breast, and burst all bounds.\nWhy, who could long resist his lofty will and pleasure! He had\nresolved to conquer her, and look here!\n\n'You will further please, Madam,' said Mr Dombey, in a tone of\nsovereign command, 'to understand distinctly, that I am to be deferred\nto and obeyed. That I must have a positive show and confession of\ndeference before the world, Madam. I am used to this. I require it as\nmy right. In short I will have it. I consider it no unreasonable\nreturn for the worldly advancement that has befallen you; and I\nbelieve nobody will be surprised, either at its being required from\nyou, or at your making it. - To Me - To Me!' he added, with emphasis.\n\nNo word from her. No change in her. Her eyes upon him.\n\n'I have learnt from your mother, Mrs Dombey,' said Mr Dombey, with\nmagisterial importance, what no doubt you know, namely, that Brighton\nis recommended for her health. Mr Carker has been so good\n\nShe changed suddenly. Her face and bosom glowed as if the red light\nof an angry sunset had been flung upon them. Not unobservant of the\nchange, and putting his own interpretation upon it, Mr Dombey resumed:\n\n'Mr Carker has been so good as to go down and secure a house there,\nfor a time. On the return of the establishment to London, I shall take\nsuch steps for its better management as I consider necessary. One of\nthese, will be the engagement at Brighton (if it is to be effected),\nof a very respectable reduced person there, a Mrs Pipchin, formerly\nemployed in a situation of trust in my family, to act as housekeeper.\nAn establishment like this, presided over but nominally, Mrs Dombey,\nrequires a competent head.'\n\nShe had changed her attitude before he arrived at these words, and\nnow sat - still looking at him fixedly - turning a bracelet round and\nround upon her arm; not winding it about with a light, womanly touch,\nbut pressing and dragging it over the smooth skin, until the white\nlimb showed a bar of red.\n\n'I observed,' said Mr Dombey - 'and this concludes what I deem it\nnecessary to say to you at present, Mrs Dombey - I observed a moment\nago, Madam, that my allusion to Mr Carker was received in a peculiar\nmanner. On the occasion of my happening to point out to you, before\nthat confidential agent, the objection I had to your mode of receiving\nmy visitors, you were pleased to object to his presence. You will have\nto get the better of that objection, Madam, and to accustom yourself\nto it very probably on many similar occasions; unless you adopt the\nremedy which is in your own hands, of giving me no cause of complaint.\nMr Carker,' said Mr Dombey, who, after the emotion he had just seen,\nset great store by this means of reducing his proud wife, and who was\nperhaps sufficiently willing to exhibit his power to that gentleman in\na new and triumphant aspect, 'Mr Carker being in my confidence, Mrs\nDombey, may very well be in yours to such an extent. I hope, Mrs\nDombey,' he continued, after a few moments, during which, in his\nincreasing haughtiness, he had improved on his idea, 'I may not find\nit necessary ever to entrust Mr Carker with any message of objection\nor remonstrance to you; but as it would be derogatory to my position\nand reputation to be frequently holding trivial disputes with a lady\nupon whom I have conferred the highest distinction that it is in my\npower to bestow, I shall not scruple to avail myself of his services\nif I see occasion.'\n\n'And now,' he thought, rising in his moral magnificence, and rising\na stiffer and more impenetrable man than ever, 'she knows me and my\nresolution.'\n\nThe hand that had so pressed the bracelet was laid heavily upon her\nbreast, but she looked at him still, with an unaltered face, and said\nin a low voice:\n\n'Wait! For God's sake! I must speak to you.'\n\nWhy did she not, and what was the inward struggle that rendered her\nincapable of doing so, for minutes, while, in the strong constraint\nshe put upon her face, it was as fixed as any statue's - looking upon\nhim with neither yielding nor unyielding, liking nor hatred, pride not\nhumility: nothing but a searching gaze?\n\n'Did I ever tempt you to seek my hand? Did I ever use any art to\nwin you? Was I ever more conciliating to you when you pursued me, than\nI have been since our marriage? Was I ever other to you than I am?'\n\n'It is wholly unnecessary, Madam,' said Mr Dombey, 'to enter upon\nsuch discussions.'\n\n'Did you think I loved you? Did you know I did not? Did you ever\ncare, Man! for my heart, or propose to yourself to win the worthless\nthing? Was there any poor pretence of any in our bargain? Upon your\nside, or on mine?'\n\n'These questions,' said Mr Dombey, 'are all wide of the purpose,\nMadam.'\n\nShe moved between him and the door to prevent his going away, and\ndrawing her majestic figure to its height, looked steadily upon him\nstill.\n\n'You answer each of them. You answer me before I speak, I see. How\ncan you help it; you who know the miserable truth as well as I? Now,\ntell me. If I loved you to devotion, could I do more than render up my\nwhole will and being to you, as you have just demanded? If my heart\nwere pure and all untried, and you its idol, could you ask more; could\nyou have more?'\n\n'Possibly not, Madam,' he returned coolly.\n\n'You know how different I am. You see me looking on you now, and\nyou can read the warmth of passion for you that is breathing in my\nface.' Not a curl of the proud lip, not a flash of the dark eye,\nnothing but the same intent and searching look, accompanied these\nwords. 'You know my general history. You have spoken of my mother. Do\nyou think you can degrade, or bend or break, me to submission and\nobedience?'\n\nMr Dombey smiled, as he might have smiled at an inquiry whether he\nthought he could raise ten thousand pounds.\n\n'If there is anything unusual here,' she said, with a slight motion\nof her hand before her brow, which did not for a moment flinch from\nits immovable and otherwise expressionless gaze, 'as I know there are\nunusual feelings here,' raising the hand she pressed upon her bosom,\nand heavily returning it, 'consider that there is no common meaning in\nthe appeal I am going to make you. Yes, for I am going;' she said it\nas in prompt reply to something in his face; 'to appeal to you.'\n\nMr Dombey, with a slightly condescending bend of his chin that\nrustled and crackled his stiff cravat, sat down on a sofa that was\nnear him, to hear the appeal.\n\n'If you can believe that I am of such a nature now,' - he fancied\nhe saw tears glistening in her eyes, and he thought, complacently,\nthat he had forced them from her, though none fell on her cheek, and\nshe regarded him as steadily as ever, - 'as would make what I now say\nalmost incredible to myself, said to any man who had become my\nhusband, but, above all, said to you, you may, perhaps, attach the\ngreater weight to it. In the dark end to which we are tending, and may\ncome, we shall not involve ourselves alone (that might not be much)\nbut others.'\n\nOthers! He knew at whom that word pointed, and frowned heavily.\n\n'I speak to you for the sake of others. Also your own sake; and for\nmine. Since our marriage, you have been arrogant to me; and I have\nrepaid you in kind. You have shown to me and everyone around us, every\nday and hour, that you think I am graced and distinguished by your\nalliance. I do not think so, and have shown that too. It seems you do\nnot understand, or (so far as your power can go) intend that each of\nus shall take a separate course; and you expect from me instead, a\nhomage you will never have.'\n\nAlthough her face was still the same, there was emphatic\nconfirmation of this 'Never' in the very breath she drew.\n\n'I feel no tenderness towards you; that you know. You would care\nnothing for it, if I did or could. I know as well that you feel none\ntowards me. But we are linked together; and in the knot that ties us,\nas I have said, others are bound up. We must both die; we are both\nconnected with the dead already, each by a little child. Let us\nforbear.'\n\nMr Dombey took a long respiration, as if he would have said, Oh!\nwas this all!\n\n'There is no wealth,' she went on, turning paler as she watched\nhim, while her eyes grew yet more lustrous in their earnestness, 'that\ncould buy these words of me, and the meaning that belongs to them.\nOnce cast away as idle breath, no wealth or power can bring them back.\nI mean them; I have weighed them; and I will be true to what I\nundertake. If you will promise to forbear on your part, I will promise\nto forbear on mine. We are a most unhappy pair, in whom, from\ndifferent causes, every sentiment that blesses marriage, or justifies\nit, is rooted out; but in the course of time, some friendship, or some\nfitness for each other, may arise between us. I will try to hope so,\nif you will make the endeavour too; and I will look forward to a\nbetter and a happier use of age than I have made of youth or prime.\n\nThroughout she had spoken in a low plain voice, that neither rose\nnor fell; ceasing, she dropped the hand with which she had enforced\nherself to be so passionless and distinct, but not the eyes with which\nshe had so steadily observed him.\n\n'Madam,' said Mr Dombey, with his utmost dignity, 'I cannot\nentertain any proposal of this extraordinary nature.\n\nShe looked at him yet, without the least change.\n\n'I cannot,' said Mr Dombey, rising as he spoke, 'consent to\ntemporise or treat with you, Mrs Dombey, upon a subject as to which\nyou are in possession of my opinions and expectations. I have stated\nmy ultimatum, Madam, and have only to request your very serious\nattention to it.'\n\nTo see the face change to its old expression, deepened in\nintensity! To see the eyes droop as from some mean and odious object!\nTo see the lighting of the haughty brow! To see scorn, anger,\nindignation, and abhorrence starting into sight, and the pale blank\nearnestness vanish like a mist! He could not choose but look, although\nhe looked to his dismay.\n\n'Go, Sir!' she said, pointing with an imperious hand towards the\ndoor. 'Our first and last confidence is at an end. Nothing can make us\nstranger to each other than we are henceforth.'\n\n'I shall take my rightful course, Madam,' said Mr Dombey,\n'undeterred, you may be sure, by any general declamation.'\n\nShe turned her back upon him, and, without reply, sat down before\nher glass.\n\n'I place my reliance on your improved sense of duty, and more\ncorrect feeling, and better reflection, Madam,' said Mr Dombey.\n\nShe answered not one word. He saw no more expression of any heed of\nhim, in the mirror, than if he had been an unseen spider on the wall,\nor beetle on the floor, or rather, than if he had been the one or\nother, seen and crushed when she last turned from him, and forgotten\namong the ignominious and dead vermin of the ground.\n\nHe looked back, as he went out at the door, upon the well-lighted\nand luxurious room, the beautiful and glittering objects everywhere\ndisplayed, the shape of Edith in its rich dress seated before her\nglass, and the face of Edith as the glass presented it to him; and\nbetook himself to his old chamber of cogitation, carrying away with\nhim a vivid picture in his mind of all these things, and a rambling\nand unaccountable speculation (such as sometimes comes into a man's\nhead) how they would all look when he saw them next.\n\nFor the rest, Mr Dombey was very taciturn, and very dignified, and\nvery confident of carrying out his purpose; and remained so.\n\nHe did not design accompanying the family to Brighton; but he\ngraciously informed Cleopatra at breakfast, on the morning of\ndeparture, which arrived a day or two afterwards, that he might be\nexpected down, soon. There was no time to be lost in getting Cleopatra\nto any place recommended as being salutary; for, indeed, she seemed\nupon the wane, and turning of the earth, earthy.\n\nWithout having undergone any decided second attack of her malady,\nthe old woman seemed to have crawled backward in her recovery from the\nfirst. She was more lean and shrunken, more uncertain in her\nimbecility, and made stranger confusions in her mind and memory. Among\nother symptoms of this last affliction, she fell into the habit of\nconfounding the names of her two sons-in-law, the living and the\ndeceased; and in general called Mr Dombey, either 'Grangeby,' or\n'Domber,' or indifferently, both.\n\nBut she was youthful, very youthful still; and in her youthfulness\nappeared at breakfast, before going away, in a new bonnet made\nexpress, and a travelling robe that was embroidered and braided like\nan old baby's. It was not easy to put her into a fly-away bonnet now,\nor to keep the bonnet in its place on the back of her poor nodding\nhead, when it was got on. In this instance, it had not only the\nextraneous effect of being always on one side, but of being\nperpetually tapped on the crown by Flowers the maid, who attended in\nthe background during breakfast to perform that duty.\n\n'Now, my dearest Grangeby,' said Mrs Skewton, 'you must posively\nprom,' she cut some of her words short, and cut out others altogether,\n'come down very soon.'\n\n'I said just now, Madam,' returned Mr Dombey, loudly and\nlaboriously, 'that I am coming in a day or two.'\n\n'Bless you, Domber!'\n\nHere the Major, who was come to take leave of the ladies, and who\nwas staring through his apoplectic eyes at Mrs Skewton's face with the\ndisinterested composure of an immortal being, said:\n\n'Begad, Ma'am, you don't ask old Joe to come!'\n\n'Sterious wretch, who's he?' lisped Cleopatra. But a tap on the\nbonnet from Flowers seeming to jog her memory, she added, 'Oh! You\nmean yourself, you naughty creature!'\n\n'Devilish queer, Sir,' whispered the Major to Mr Dombey. 'Bad case.\nNever did wrap up enough;' the Major being buttoned to the chin. 'Why\nwho should J. B. mean by Joe, but old Joe Bagstock - Joseph - your\nslave - Joe, Ma'am? Here! Here's the man! Here are the Bagstock\nbellows, Ma'am!' cried the Major, striking himself a sounding blow on\nthe chest.\n\n'My dearest Edith - Grangeby - it's most trordinry thing,' said\nCleopatra, pettishly, 'that Major - '\n\n'Bagstock! J. B.!' cried the Major, seeing that she faltered for\nhis name.\n\n'Well, it don't matter,' said Cleopatra. 'Edith, my love, you know\nI never could remember names - what was it? oh! - most trordinry thing\nthat so many people want to come down to see me. I'm not going for\nlong. I'm coming back. Surely they can wait, till I come back!'\n\nCleopatra looked all round the table as she said it, and appeared\nvery uneasy.\n\n'I won't have Vistors - really don't want visitors,' she said;\n'little repose - and all that sort of thing - is what I quire. No\nodious brutes must proach me till I've shaken off this numbness;' and\nin a grisly resumption of her coquettish ways, she made a dab at the\nMajor with her fan, but overset Mr Dombey's breakfast cup instead,\nwhich was in quite a different direction.\n\nThen she called for Withers, and charged him to see particularly\nthat word was left about some trivial alterations in her room, which\nmust be all made before she came back, and which must be set about\nimmediately, as there was no saying how soon she might come back; for\nshe had a great many engagements, and all sorts of people to call\nupon. Withers received these directions with becoming deference, and\ngave his guarantee for their execution; but when he withdrew a pace or\ntwo behind her, it appeared as if he couldn't help looking strangely\nat the Major, who couldn't help looking strangely at Mr Dombey, who\ncouldn't help looking strangely at Cleopatra, who couldn't help\nnodding her bonnet over one eye, and rattling her knife and fork upon\nher plate in using them, as if she were playing castanets.\n\nEdith alone never lifted her eyes to any face at the table, and\nnever seemed dismayed by anything her mother said or did. She listened\nto her disjointed talk, or at least, turned her head towards her when\naddressed; replied in a few low words when necessary; and sometimes\nstopped her when she was rambling, or brought her thoughts back with a\nmonosyllable, to the point from which they had strayed. The mother,\nhowever unsteady in other things, was constant in this - that she was\nalways observant of her. She would look at the beautiful face, in its\nmarble stillness and severity, now with a kind of fearful admiration;\nnow in a giggling foolish effort to move it to a smile; now with\ncapricious tears and jealous shakings of her head, as imagining\nherself neglected by it; always with an attraction towards it, that\nnever fluctuated like her other ideas, but had constant possession of\nher. From Edith she would sometimes look at Florence, and back again\nat Edith, in a manner that was wild enough; and sometimes she would\ntry to look elsewhere, as if to escape from her daughter's face; but\nback to it she seemed forced to come, although it never sought hers\nunless sought, or troubled her with one single glance.\n\nThe best concluded, Mrs Skewton, affecting to lean girlishly upon\nthe Major's arm, but heavily supported on the other side by Flowers\nthe maid, and propped up behind by Withers the page, was conducted to\nthe carriage, which was to take her, Florence, and Edith to Brighton.\n\n'And is Joseph absolutely banished?' said the Major, thrusting in\nhis purple face over the steps. 'Damme, Ma'am, is Cleopatra so\nhard-hearted as to forbid her faithful Antony Bagstock to approach the\npresence?'\n\n'Go along!' said Cleopatra, 'I can't bear you. You shall see me\nwhen I come back, if you are very good.'\n\n'Tell Joseph, he may live in hope, Ma'am,' said the Major; 'or\nhe'll die in despair.'\n\nCleopatra shuddered, and leaned back. 'Edith, my dear,' she said.\n'Tell him - '\n\n'What?'\n\n'Such dreadful words,' said Cleopatra. 'He uses such dreadful\nwords!'\n\nEdith signed to him to retire, gave the word to go on, and left the\nobjectionable Major to Mr Dombey. To whom he returned, whistling.\n\n'I'll tell you what, Sir,' said the Major, with his hands behind\nhim, and his legs very wide asunder, 'a fair friend of ours has\nremoved to Queer Street.'\n\n'What do you mean, Major?' inquired Mr Dombey.\n\n'I mean to say, Dombey,' returned the Major, 'that you'll soon be\nan orphan-in-law.'\n\nMr Dombey appeared to relish this waggish description of himself so\nvery little, that the Major wound up with the horse's cough, as an\nexpression of gravity.\n\n'Damme, Sir,' said the Major, 'there is no use in disguising a\nfact. Joe is blunt, Sir. That's his nature. If you take old Josh at\nall, you take him as you find him; and a devilish rusty, old rasper,\nof a close-toothed, J. B. file, you do find him. Dombey,' said the\nMajor, 'your wife's mother is on the move, Sir.'\n\n'I fear,' returned Mr Dombey, with much philosophy, 'that Mrs\nSkewton is shaken.'\n\n'Shaken, Dombey!' said the Major. 'Smashed!'\n\n'Change, however,' pursued Mr Dombey, 'and attention, may do much\nyet.'\n\n'Don't believe it, Sir,' returned the Major. 'Damme, Sir, she never\nwrapped up enough. If a man don't wrap up,' said the Major, taking in\nanother button of his buff waistcoat, 'he has nothing to fall back\nupon. But some people will die. They will do it. Damme, they will.\nThey're obstinate. I tell you what, Dombey, it may not be ornamental;\nit may not be refined; it may be rough and tough; but a little of the\ngenuine old English Bagstock stamina, Sir, would do all the good in\nthe world to the human breed.'\n\nAfter imparting this precious piece of information, the Major, who\nwas certainly true-blue, whatever other endowments he may have had or\nwanted, coming within the 'genuine old English' classification, which\nhas never been exactly ascertained, took his lobster-eyes and his\napoplexy to the club, and choked there all day.\n\nCleopatra, at one time fretful, at another self-complacent,\nsometimes awake, sometimes asleep, and at all times juvenile, reached\nBrighton the same night, fell to pieces as usual, and was put away in\nbed; where a gloomy fancy might have pictured a more potent skeleton\nthan the maid, who should have been one, watching at the rose-coloured\ncurtains, which were carried down to shed their bloom upon her.\n\nIt was settled in high council of medical authority that she should\ntake a carriage airing every day, and that it was important she should\nget out every day, and walk if she could. Edith was ready to attend\nher - always ready to attend her, with the same mechanical attention\nand immovable beauty - and they drove out alone; for Edith had an\nuneasiness in the presence of Florence, now that her mother was worse,\nand told Florence, with a kiss, that she would rather they two went\nalone.\n\nMrs Skewton, on one particular day, was in the irresolute,\nexacting, jealous temper that had developed itself on her recovery\nfrom her first attack. After sitting silent in the carriage watching\nEdith for some time, she took her hand and kissed it passionately. The\nhand was neither given nor withdrawn, but simply yielded to her\nraising of it, and being released, dropped down again, almost as if it\nwere insensible. At this she began to whimper and moan, and say what a\nmother she had been, and how she was forgotten! This she continued to\ndo at capricious intervals, even when they had alighted: when she\nherself was halting along with the joint support of Withers and a\nstick, and Edith was walking by her side, and the carriage slowly\nfollowing at a little distance.\n\nIt was a bleak, lowering, windy day, and they were out upon the\nDowns with nothing but a bare sweep of land between them and the sky.\nThe mother, with a querulous satisfaction in the monotony of her\ncomplaint, was still repeating it in a low voice from time to time,\nand the proud form of her daughter moved beside her slowly, when there\ncame advancing over a dark ridge before them, two other figures, which\nin the distance, were so like an exaggerated imitation of their own,\nthat Edith stopped.\n\nAlmost as she stopped, the two figures stopped; and that one which\nto Edith's thinking was like a distorted shadow of her mother, spoke\nto the other, earnestly, and with a pointing hand towards them. That\none seemed inclined to turn back, but the other, in which Edith\nrecognised enough that was like herself to strike her with an unusual\nfeeling, not quite free from fear, came on; and then they came on\ntogether.\n\nThe greater part of this observation, she made while walking\ntowards them, for her stoppage had been momentary. Nearer observation\nshowed her that they were poorly dressed, as wanderers about the\ncountry; that the younger woman carried knitted work or some such\ngoods for sale; and that the old one toiled on empty-handed.\n\nAnd yet, however far removed she was in dress, in dignity, in\nbeauty, Edith could not but compare the younger woman with herself,\nstill. It may have been that she saw upon her face some traces which\nshe knew were lingering in her own soul, if not yet written on that\nindex; but, as the woman came on, returning her gaze, fixing her\nshining eyes upon her, undoubtedly presenting something of her own air\nand stature, and appearing to reciprocate her own thoughts, she felt a\nchill creep over her, as if the day were darkening, and the wind were\ncolder.\n\nThey had now come up. The old woman, holding out her hand\nimportunately, stopped to beg of Mrs Skewton. The younger one stopped\ntoo, and she and Edith looked in one another's eyes.\n\n'What is it that you have to sell?' said Edith.\n\n'Only this,' returned the woman, holding out her wares, without\nlooking at them. 'I sold myself long ago.'\n\n'My Lady, don't believe her,' croaked the old woman to Mrs Skewton;\n'don't believe what she says. She loves to talk like that. She's my\nhandsome and undutiful daughter. She gives me nothing but reproaches,\nmy Lady, for all I have done for her. Look at her now, my Lady, how\nshe turns upon her poor old mother with her looks.'\n\nAs Mrs Skewton drew her purse out with a trembling hand, and\neagerly fumbled for some money, which the other old woman greedily\nwatched for - their heads all but touching, in their hurry and\ndecrepitude - Edith interposed:\n\n'I have seen you,' addressing the old woman, 'before.'\n\n'Yes, my Lady,' with a curtsey. 'Down in Warwickshire. The morning\namong the trees. When you wouldn't give me nothing. But the gentleman,\nhe give me something! Oh, bless him, bless him!' mumbled the old\nwoman, holding up her skinny hand, and grinning frightfully at her\ndaughter.\n\n'It's of no use attempting to stay me, Edith!' said Mrs Skewton,\nangrily anticipating an objection from her. 'You know nothing about\nit. I won't be dissuaded. I am sure this is an excellent woman, and a\ngood mother.'\n\n'Yes, my Lady, yes,' chattered the old woman, holding out her\navaricious hand. 'Thankee, my Lady. Lord bless you, my Lady. Sixpence\nmore, my pretty Lady, as a good mother yourself.'\n\n'And treated undutifully enough, too, my good old creature,\nsometimes, I assure you,' said Mrs Skewton, whimpering. 'There! Shake\nhands with me. You're a very good old creature - full of\nwhat's-his-name - and all that. You're all affection and et cetera,\nain't you?'\n\n'Oh, yes, my Lady!'\n\n'Yes, I'm sure you are; and so's that gentlemanly creature\nGrangeby. I must really shake hands with you again. And now you can\ngo, you know; and I hope,' addressing the daughter, 'that you'll show\nmore gratitude, and natural what's-its-name, and all the rest of it -\nbut I never remember names - for there never was a better mother than\nthe good old creature's been to you. Come, Edith!'\n\nAs the ruin of Cleopatra tottered off whimpering, and wiping its\neyes with a gingerly remembrance of rouge in their neighbourhood, the\nold woman hobbled another way, mumbling and counting her money. Not\none word more, nor one other gesture, had been exchanged between Edith\nand the younger woman, but neither had removed her eyes from the other\nfor a moment. They had remained confronted until now, when Edith, as\nawakening from a dream, passed slowly on.\n\n'You're a handsome woman,' muttered her shadow, looking after her;\n'but good looks won't save us. And you're a proud woman; but pride\nwon't save us. We had need to know each other when we meet again!'\n\n\n\nCHAPTER 41.\n\nNew Voices in the Waves\n\n\n\nAll is going on as it was wont. The waves are hoarse with\nrepetition of their mystery; the dust lies piled upon the shore; the\nsea-birds soar and hover; the winds and clouds go forth upon their\ntrackless flight; the white arms beckon, in the moonlight, to the\ninvisible country far away.\n\n\nWith a tender melancholy pleasure, Florence finds herself again on\nthe old ground so sadly trodden, yet so happily, and thinks of him in\nthe quiet place, where he and she have many and many a time conversed\ntogether, with the water welling up about his couch. And now, as she\nsits pensive there, she hears in the wild low murmur of the sea, his\nlittle story told again, his very words repeated; and finds that all\nher life and hopes, and griefs, since - in the solitary house, and in\nthe pageant it has changed to - have a portion in the burden of the\nmarvellous song.\n\nAnd gentle Mr Toots, who wanders at a distance, looking wistfully\ntowards the figure that he dotes upon, and has followed there, but\ncannot in his delicacy disturb at such a time, likewise hears the\nrequiem of little Dombey on the waters, rising and falling in the\nlulls of their eternal madrigal in praise of Florence. Yes! and he\nfaintly understands, poor Mr Toots, that they are saying something of\na time when he was sensible of being brighter and not addle-brained;\nand the tears rising in his eyes when he fears that he is dull and\nstupid now, and good for little but to be laughed at, diminish his\nsatisfaction in their soothing reminder that he is relieved from\npresent responsibility to the Chicken, by the absence of that game\nhead of poultry in the country, training (at Toots's cost) for his\ngreat mill with the Larkey Boy.\n\nBut Mr Toots takes courage, when they whisper a kind thought to\nhim; and by slow degrees and with many indecisive stoppages on the\nway, approaches Florence. Stammering and blushing, Mr Toots affects\namazement when he comes near her, and says (having followed close on\nthe carriage in which she travelled, every inch of the way from\nLondon, loving even to be choked by the dust of its wheels) that he\nnever was so surprised in all his life.\n\n'And you've brought Diogenes, too, Miss Dombey!' says Mr Toots,\nthrilled through and through by the touch of the small hand so\npleasantly and frankly given him.\n\nNo doubt Diogenes is there, and no doubt Mr Toots has reason to\nobserve him, for he comes straightway at Mr Toots's legs, and tumbles\nover himself in the desperation with which he makes at him, like a\nvery dog of Montargis. But he is checked by his sweet mistress.\n\n'Down, Di, down. Don't you remember who first made us friends, Di?\nFor shame!'\n\nOh! Well may Di lay his loving cheek against her hand, and run off,\nand run back, and run round her, barking, and run headlong at anybody\ncoming by, to show his devotion. Mr Toots would run headlong at\nanybody, too. A military gentleman goes past, and Mr Toots would like\nnothing better than to run at him, full tilt.\n\n'Diogenes is quite in his native air, isn't he, Miss Dombey?' says\nMr Toots.\n\nFlorence assents, with a grateful smile.\n\n'Miss Dombey,' says Mr Toots, 'beg your pardon, but if you would\nlike to walk to Blimber's, I - I'm going there.'\n\nFlorence puts her arm in that of Mr Toots without a word, and they\nwalk away together, with Diogenes going on before. Mr Toots's legs\nshake under him; and though he is splendidly dressed, he feels\nmisfits, and sees wrinkles, in the masterpieces of Burgess and Co.,\nand wishes he had put on that brightest pair of boots.\n\nDoctor Blimber's house, outside, has as scholastic and studious an\nair as ever; and up there is the window where she used to look for the\npale face, and where the pale face brightened when it saw her, and the\nwasted little hand waved kisses as she passed. The door is opened by\nthe same weak-eyed young man, whose imbecility of grin at sight of Mr\nToots is feebleness of character personified. They are shown into the\nDoctor's study, where blind Homer and Minerva give them audience as of\nyore, to the sober ticking of the great clock in the hall; and where\nthe globes stand still in their accustomed places, as if the world\nwere stationary too, and nothing in it ever perished in obedience to\nthe universal law, that, while it keeps it on the roll, calls\neverything to earth.\n\nAnd here is Doctor Blimber, with his learned legs; and here is Mrs\nBlimber, with her sky-blue cap; and here Cornelia, with her sandy\nlittle row of curls, and her bright spectacles, still working like a\nsexton in the graves of languages. Here is the table upon which he sat\nforlorn and strange, the 'new boy' of the school; and hither comes the\ndistant cooing of the old boys, at their old lives in the old room on\nthe old principle!\n\n'Toots,' says Doctor Blimber, 'I am very glad to see you, Toots.'\n\nMr Toots chuckles in reply.\n\n'Also to see you, Toots, in such good company,' says Doctor\nBlimber.\n\nMr Toots, with a scarlet visage, explains that he has met Miss\nDombey by accident, and that Miss Dombey wishing, like himself, to see\nthe old place, they have come together.\n\n'You will like,' says Doctor Blimber, 'to step among our young\nfriends, Miss Dombey, no doubt. All fellow-students of yours, Toots,\nonce. I think we have no new disciples in our little portico, my\ndear,' says Doctor Blimber to Cornelia, 'since Mr Toots left us.'\n\n'Except Bitherstone,' returns Cornelia.\n\n'Ay, truly,' says the Doctor. 'Bitherstone is new to Mr Toots.'\n\nNew to Florence, too, almost; for, in the schoolroom, Bitherstone -\nno longer Master Bitherstone of Mrs Pipchin's - shows in collars and a\nneckcloth, and wears a watch. But Bitherstone, born beneath some\nBengal star of ill-omen, is extremely inky; and his Lexicon has got so\ndropsical from constant reference, that it won't shut, and yawns as if\nit really could not bear to be so bothered. So does Bitherstone its\nmaster, forced at Doctor Blimber's highest pressure; but in the yawn\nof Bitherstone there is malice and snarl, and he has been heard to say\nthat he wishes he could catch 'old Blimber' in India. He'd precious\nsoon find himself carried up the country by a few of his\n(Bitherstone's) Coolies, and handed over to the Thugs; he can tell him\nthat.\n\nBriggs is still grinding in the mill of knowledge; and Tozer, too;\nand Johnson, too; and all the rest; the older pupils being principally\nengaged in forgetting, with prodigious labour, everything they knew\nwhen they were younger. All are as polite and as pale as ever; and\namong them, Mr Feeder, B.A., with his bony hand and bristly head, is\nstill hard at it; with his Herodotus stop on just at present, and his\nother barrels on a shelf behind him.\n\nA mighty sensation is created, even among these grave young\ngentlemen, by a visit from the emancipated Toots; who is regarded with\na kind of awe, as one who has passed the Rubicon, and is pledged never\nto come back, and concerning the cut of whose clothes, and fashion of\nwhose jewellery, whispers go about, behind hands; the bilious\nBitherstone, who is not of Mr Toots's time, affecting to despise the\nlatter to the smaller boys, and saying he knows better, and that he\nshould like to see him coming that sort of thing in Bengal, where his\nmother had got an emerald belonging to him that was taken out of the\nfootstool of a Rajah. Come now!\n\nBewildering emotions are awakened also by the sight of Florence,\nwith whom every young gentleman immediately falls in love, again;\nexcept, as aforesaid, the bilious Bitherstone, who declines to do so,\nout of contradiction. Black jealousies of Mr Toots arise, and Briggs\nis of opinion that he ain't so very old after all. But this\ndisparaging insinuation is speedily made nought by Mr Toots saying\naloud to Mr Feeder, B.A., 'How are you, Feeder?' and asking him to\ncome and dine with him to-day at the Bedford; in right of which feats\nhe might set up as Old Parr, if he chose, unquestioned.\n\nThere is much shaking of hands, and much bowing, and a great desire\non the part of each young gentleman to take Toots down in Miss\nDombey's good graces; and then, Mr Toots having bestowed a chuckle on\nhis old desk, Florence and he withdraw with Mrs Blimber and Cornelia;\nand Doctor Blimber is heard to observe behind them as he comes out\nlast, and shuts the door, 'Gentlemen, we will now resume our studies,'\nFor that and little else is what the Doctor hears the sea say, or has\nheard it saying all his life.\n\nFlorence then steals away and goes upstairs to the old bedroom with\nMrs Blimber and Cornelia; Mr Toots, who feels that neither he nor\nanybody else is wanted there, stands talking to the Doctor at the\nstudy-door, or rather hearing the Doctor talk to him, and wondering\nhow he ever thought the study a great sanctuary, and the Doctor, with\nhis round turned legs, like a clerical pianoforte, an awful man.\nFlorence soon comes down and takes leave; Mr Toots takes leave; and\nDiogenes, who has been worrying the weak-eyed young man pitilessly all\nthe time, shoots out at the door, and barks a glad defiance down the\ncliff; while Melia, and another of the Doctor's female domestics,\nlooks out of an upper window, laughing 'at that there Toots,' and\nsaying of Miss Dombey, 'But really though, now - ain't she like her\nbrother, only prettier?'\n\nMr Toots, who saw when Florence came down that there were tears\nupon her face, is desperately anxious and uneasy, and at first fears\nthat he did wrong in proposing the visit. But he is soon relieved by\nher saying she is very glad to have been there again, and by her\ntalking quite cheerfully about it all, as they walked on by the sea.\nWhat with the voices there, and her sweet voice, when they come near\nMr Dombey's house, and Mr Toots must leave her, he is so enslaved that\nhe has not a scrap of free-will left; when she gives him her hand at\nparting, he cannot let it go.\n\n'Miss Dombey, I beg your pardon,' says Mr Toots, in a sad fluster,\n'but if you would allow me to - to -\n\nThe smiling and unconscious look of Florence brings him to a dead\nstop.\n\n'If you would allow me to - if you would not consider it a liberty,\nMiss Dombey, if I was to - without any encouragement at all, if I was\nto hope, you know,' says Mr Toots.\n\nFlorence looks at him inquiringly.\n\n'Miss Dombey,' says Mr Toots, who feels that he is in for it now,\n'I really am in that state of adoration of you that I don't know what\nto do with myself. I am the most deplorable wretch. If it wasn't at\nthe corner of the Square at present, I should go down on my knees, and\nbeg and entreat of you, without any encouragement at all, just to let\nme hope that I may - may think it possible that you -\n\n'Oh, if you please, don't!' cries Florence, for the moment quite\nalarmed and distressed. 'Oh, pray don't, Mr Toots. Stop, if you\nplease. Don't say any more. As a kindness and a favour to me, don't.'\n\nMr Toots is dreadfully abashed, and his mouth opens.\n\n'You have been so good to me,' says Florence, 'I am so grateful to\nyou, I have such reason to like you for being a kind friend to me, and\nI do like you so much;' and here the ingenuous face smiles upon him\nwith the pleasantest look of honesty in the world; 'that I am sure you\nare only going to say good-bye!'\n\n'Certainly, Miss Dombey,' says Mr Toots, 'I - I - that's exactly\nwhat I mean. It's of no consequence.'\n\n'Good-bye!' cries Florence.\n\n'Good-bye, Miss Dombey!' stammers Mr Toots. 'I hope you won't think\nanything about it. It's - it's of no consequence, thank you. It's not\nof the least consequence in the world.'\n\nPoor Mr Toots goes home to his hotel in a state of desperation,\nlocks himself into his bedroom, flings himself upon his bed, and lies\nthere for a long time; as if it were of the greatest consequence,\nnevertheless. But Mr Feeder, B.A., is coming to dinner, which happens\nwell for Mr Toots, or there is no knowing when he might get up again.\nMr Toots is obliged to get up to receive him, and to give him\nhospitable entertainment.\n\nAnd the generous influence of that social virtue, hospitality (to\nmake no mention of wine and good cheer), opens Mr Toots's heart, and\nwarms him to conversation. He does not tell Mr Feeder, B.A., what\npassed at the corner of the Square; but when Mr Feeder asks him 'When\nit is to come off?' Mr Toots replies, 'that there are certain\nsubjects' - which brings Mr Feeder down a peg or two immediately. Mr\nToots adds, that he don't know what right Blimber had to notice his\nbeing in Miss Dombey's company, and that if he thought he meant\nimpudence by it, he'd have him out, Doctor or no Doctor; but he\nsupposes its only his ignorance. Mr Feeder says he has no doubt of it.\n\nMr Feeder, however, as an intimate friend, is not excluded from the\nsubject. Mr Toots merely requires that it should be mentioned\nmysteriously, and with feeling. After a few glasses of wine, he gives\nMiss Dombey's health, observing, 'Feeder, you have no idea of the\nsentiments with which I propose that toast.' Mr Feeder replies, 'Oh,\nyes, I have, my dear Toots; and greatly they redound to your honour,\nold boy.' Mr Feeder is then agitated by friendship, and shakes hands;\nand says, if ever Toots wants a brother, he knows where to find him,\neither by post or parcel. Mr Feeder like-wise says, that if he may\nadvise, he would recommend Mr Toots to learn the guitar, or, at least\nthe flute; for women like music, when you are paying your addresses to\n'em, and he has found the advantage of it himself.\n\nThis brings Mr Feeder, B.A., to the confession that he has his eye\nupon Cornelia Blimber. He informs Mr Toots that he don't object to\nspectacles, and that if the Doctor were to do the handsome thing and\ngive up the business, why, there they are - provided for. He says it's\nhis opinion that when a man has made a handsome sum by his business,\nhe is bound to give it up; and that Cornelia would be an assistance in\nit which any man might be proud of. Mr Toots replies by launching\nwildly out into Miss Dombey's praises, and by insinuations that\nsometimes he thinks he should like to blow his brains out. Mr Feeder\nstrongly urges that it would be a rash attempt, and shows him, as a\nreconcilement to existence, Cornelia's portrait, spectacles and all.\n\nThus these quiet spirits pass the evening; and when it has yielded\nplace to night, Mr Toots walks home with Mr Feeder, and parts with him\nat Doctor Blimber's door. But Mr Feeder only goes up the steps, and\nwhen Mr Toots is gone, comes down again, to stroll upon the beach\nalone, and think about his prospects. Mr Feeder plainly hears the\nwaves informing him, as he loiters along, that Doctor Blimber will\ngive up the business; and he feels a soft romantic pleasure in looking\nat the outside of the house, and thinking that the Doctor will first\npaint it, and put it into thorough repair.\n\nMr Toots is likewise roaming up and down, outside the casket that\ncontains his jewel; and in a deplorable condition of mind, and not\nunsuspected by the police, gazes at a window where he sees a light,\nand which he has no doubt is Florence's. But it is not, for that is\nMrs Skewton's room; and while Florence, sleeping in another chamber,\ndreams lovingly, in the midst of the old scenes, and their old\nassociations live again, the figure which in grim reality is\nsubstituted for the patient boy's on the same theatre, once more to\nconnect it - but how differently! - with decay and death, is stretched\nthere, wakeful and complaining. Ugly and haggard it lies upon its bed\nof unrest; and by it, in the terror of her unimpassioned loveliness -\nfor it has terror in the sufferer's failing eyes - sits Edith. What do\nthe waves say, in the stillness of the night, to them?\n\n'Edith, what is that stone arm raised to strike me? Don't you see\nit?'\n\nThere is nothing, mother, but your fancy.'\n\n'But my fancy! Everything is my fancy. Look! Is it possible that\nyou don't see it?'\n\n'Indeed, mother, there is nothing. Should I sit unmoved, if there\nwere any such thing there?'\n\n'Unmoved?' looking wildly at her - 'it's gone now - and why are you\nso unmoved? That is not my fancy, Edith. It turns me cold to see you\nsitting at my side.'\n\n'I am sorry, mother.'\n\n'Sorry! You seem always sorry. But it is not for me!'\n\nWith that, she cries; and tossing her restless head from side to\nside upon her pillow, runs on about neglect, and the mother she has\nbeen, and the mother the good old creature was, whom they met, and the\ncold return the daughters of such mothers make. In the midst of her\nincoherence, she stops, looks at her daughter, cries out that her wits\nare going, and hides her face upon the bed.\n\nEdith, in compassion, bends over her and speaks to her. The sick\nold woman clutches her round the neck, and says, with a look of\nhorror,\n\n'Edith! we are going home soon; going back. You mean that I shall\ngo home again?'\n\n'Yes, mother, yes.'\n\n'And what he said - what's-his-name, I never could remember names -\nMajor - that dreadful word, when we came away - it's not true? Edith!'\nwith a shriek and a stare, 'it's not that that is the matter with me.'\n\nNight after night, the lights burn in the window, and the figure\nlies upon the bed, and Edith sits beside it, and the restless waves\nare calling to them both the whole night long. Night after night, the\nwaves are hoarse with repetition of their mystery; the dust lies piled\nupon the shore; the sea-birds soar and hover; the winds and clouds are\non their trackless flight; the white arms beckon, in the moonlight, to\nthe invisible country far away.\n\nAnd still the sick old woman looks into the corner, where the stone\narm - part of a figure of some tomb, she says - is raised to strike\nher. At last it falls; and then a dumb old woman lies upon the the\nbed, and she is crooked and shrunk up, and half of her is dead.\n\nSuch is the figure, painted and patched for the sun to mock, that\nis drawn slowly through the crowd from day to day; looking, as it\ngoes, for the good old creature who was such a mother, and making\nmouths as it peers among the crowd in vain. Such is the figure that is\noften wheeled down to the margin of the sea, and stationed there; but\non which no wind can blow freshness, and for which the murmur of the\nocean has no soothing word. She lies and listens to it by the hour;\nbut its speech is dark and gloomy to her, and a dread is on her face,\nand when her eyes wander over the expanse, they see but a broad\nstretch of desolation between earth and heaven.\n\nFlorence she seldom sees, and when she does, is angry with and mows\nat. Edith is beside her always, and keeps Florence away; and Florence,\nin her bed at night, trembles at the thought of death in such a shape,\nand often wakes and listens, thinking it has come. No one attends on\nher but Edith. It is better that few eyes should see her; and her\ndaughter watches alone by the bedside.\n\nA shadow even on that shadowed face, a sharpening even of the\nsharpened features, and a thickening of the veil before the eyes into\na pall that shuts out the dim world, is come. Her wandering hands upon\nthe coverlet join feebly palm to palm, and move towards her daughter;\nand a voice not like hers, not like any voice that speaks our mortal\nlanguage - says, 'For I nursed you!'\n\nEdith, without a tear, kneels down to bring her voice closer to the\nsinking head, and answers:\n\n'Mother, can you hear me?'\n\nStaring wide, she tries to nod in answer.\n\n'Can you recollect the night before I married?'\n\nThe head is motionless, but it expresses somehow that she does.\n\n'I told you then that I forgave your part in it, and prayed God to\nforgive my own. I told you that time past was at an end between us. I\nsay so now, again. Kiss me, mother.'\n\nEdith touches the white lips, and for a moment all is still. A\nmoment afterwards, her mother, with her girlish laugh, and the\nskeleton of the Cleopatra manner, rises in her bed.\n\nDraw the rose-coloured curtains. There is something else upon its\nflight besides the wind and clouds. Draw the rose-coloured curtains\nclose!\n\n\nIntelligence of the event is sent to Mr Dombey in town, who waits\nupon Cousin Feenix (not yet able to make up his mind for Baden-Baden),\nwho has just received it too. A good-natured creature like Cousin\nFeenix is the very man for a marriage or a funeral, and his position\nin the family renders it right that he should be consulted.\n\n'Dombey,' said Cousin Feenix, 'upon my soul, I am very much shocked\nto see you on such a melancholy occasion. My poor aunt! She was a\ndevilish lively woman.'\n\nMr Dombey replies, 'Very much so.'\n\n'And made up,' says Cousin Feenix, 'really young, you know,\nconsidering. I am sure, on the day of your marriage, I thought she was\ngood for another twenty years. In point of fact, I said so to a man at\nBrooks's - little Billy Joper - you know him, no doubt - man with a\nglass in his eye?'\n\nMr Dombey bows a negative. 'In reference to the obsequies,' he\nhints, 'whether there is any suggestion - '\n\n'Well, upon my life,' says Cousin Feenix, stroking his chin, which\nhe has just enough of hand below his wristbands to do; 'I really don't\nknow. There's a Mausoleum down at my place, in the park, but I'm\nafraid it's in bad repair, and, in point of fact, in a devil of a\nstate. But for being a little out at elbows, I should have had it put\nto rights; but I believe the people come and make pic-nic parties\nthere inside the iron railings.'\n\nMr Dombey is clear that this won't do.\n\n'There's an uncommon good church in the village,' says Cousin\nFeenix, thoughtfully; 'pure specimen of the Anglo-Norman style, and\nadmirably well sketched too by Lady Jane Finchbury - woman with tight\nstays - but they've spoilt it with whitewash, I understand, and it's a\nlong journey.\n\n'Perhaps Brighton itself,' Mr Dombey suggests.\n\n'Upon my honour, Dombey, I don't think we could do better,' says\nCousin Feenix. 'It's on the spot, you see, and a very cheerful place.'\n\n'And when,' hints Mr Dombey, 'would it be convenient?'\n\n'I shall make a point,' says Cousin Feenix, 'of pledging myself for\nany day you think best. I shall have great pleasure (melancholy\npleasure, of course) in following my poor aunt to the confines of the\n- in point of fact, to the grave,' says Cousin Feenix, failing in the\nother turn of speech.\n\n'Would Monday do for leaving town?' says Mr Dombey.\n\n'Monday would suit me to perfection,' replies Cousin Feenix.\nTherefore Mr Dombey arranges to take Cousin Feenix down on that day,\nand presently takes his leave, attended to the stairs by Cousin\nFeenix, who says, at parting, 'I'm really excessively sorry, Dombey,\nthat you should have so much trouble about it;' to which Mr Dombey\nanswers, 'Not at all.'\n\nAt the appointed time, Cousin Feenix and Mr Dombey meet, and go\ndown to Brighton, and representing, in their two selves, all the other\nmourners for the deceased lady's loss, attend her remains to their\nplace of rest. Cousin Feenix, sitting in the mourning-coach,\nrecognises innumerable acquaintances on the road, but takes no other\nnotice of them, in decorum, than checking them off aloud, as they go\nby, for Mr Dombey's information, as 'Tom Johnson. Man with cork leg,\nfrom White's. What, are you here, Tommy? Foley on a blood mare. The\nSmalder girls' - and so forth. At the ceremony Cousin Feenix is\ndepressed, observing, that these are the occasions to make a man\nthink, in point of fact, that he is getting shaky; and his eyes are\nreally moistened, when it is over. But he soon recovers; and so do the\nrest of Mrs Skewton's relatives and friends, of whom the Major\ncontinually tells the club that she never did wrap up enough; while\nthe young lady with the back, who has so much trouble with her\neyelids, says, with a little scream, that she must have been\nenormously old, and that she died of all kinds of horrors, and you\nmustn't mention it.\n\nSo Edith's mother lies unmentioned of her dear friends, who are\ndeaf to the waves that are hoarse with repetition of their mystery,\nand blind to the dust that is piled upon the shore, and to the white\narms that are beckoning, in the moonlight, to the invisible country\nfar away. But all goes on, as it was wont, upon the margin of the\nunknown sea; and Edith standing there alone, and listening to its\nwaves, has dank weed cast up at her feet, to strew her path in life\nwithal.\n\n\n\nCHAPTER 42.\n\nConfidential and Accidental\n\n\n\nAttired no more in Captain Cuttle's sable slops and sou'-wester\nhat, but dressed in a substantial suit of brown livery, which, while\nit affected to be a very sober and demure livery indeed, was really as\nself-satisfied and confident a one as tailor need desire to make, Rob\nthe Grinder, thus transformed as to his outer man, and all regardless\nwithin of the Captain and the Midshipman, except when he devoted a few\nminutes of his leisure time to crowing over those inseparable\nworthies, and recalling, with much applauding music from that brazen\ninstrument, his conscience, the triumphant manner in which he had\ndisembarrassed himself of their company, now served his patron, Mr\nCarker. Inmate of Mr Carker's house, and serving about his person, Rob\nkept his round eyes on the white teeth with fear and trembling, and\nfelt that he had need to open them wider than ever.\n\nHe could not have quaked more, through his whole being, before the\nteeth, though he had come into the service of some powerful enchanter,\nand they had been his strongest spells. The boy had a sense of power\nand authority in this patron of his that engrossed his whole attention\nand exacted his most implicit submission and obedience. He hardly\nconsidered himself safe in thinking about him when he was absent, lest\nhe should feel himself immediately taken by the throat again, as on\nthe morning when he first became bound to him, and should see every\none of the teeth finding him out, and taxing him with every fancy of\nhis mind. Face to face with him, Rob had no more doubt that Mr Carker\nread his secret thoughts, or that he could read them by the least\nexertion of his will if he were so inclined, than he had that Mr\nCarker saw him when he looked at him. The ascendancy was so complete,\nand held him in such enthralment, that, hardly daring to think at all,\nbut with his mind filled with a constantly dilating impression of his\npatron's irresistible command over him, and power of doing anything\nwith him, he would stand watching his pleasure, and trying to\nanticipate his orders, in a state of mental suspension, as to all\nother things.\n\nRob had not informed himself perhaps - in his then state of mind it\nwould have been an act of no common temerity to inquire - whether he\nyielded so completely to this influence in any part, because he had\nfloating suspicions of his patron's being a master of certain\ntreacherous arts in which he had himself been a poor scholar at the\nGrinders' School. But certainly Rob admired him, as well as feared\nhim. Mr Carker, perhaps, was better acquainted with the sources of his\npower, which lost nothing by his management of it.\n\nOn the very night when he left the Captain's service, Rob, after\ndisposing of his pigeons, and even making a bad bargain in his hurry,\nhad gone straight down to Mr Carker's house, and hotly presented\nhimself before his new master with a glowing face that seemed to\nexpect commendation.\n\n'What, scapegrace!' said Mr Carker, glancing at his bundle 'Have\nyou left your situation and come to me?'\n\n'Oh if you please, Sir,' faltered Rob, 'you said, you know, when I\ncome here last - '\n\n'I said,' returned Mr Carker, 'what did I say?'\n\n'If you please, Sir, you didn't say nothing at all, Sir,' returned\nRob, warned by the manner of this inquiry, and very much disconcerted.\n\nHis patron looked at him with a wide display of gums, and shaking\nhis forefinger, observed:\n\n'You'll come to an evil end, my vagabond friend, I foresee. There's\nruin in store for you.\n\n'Oh if you please, don't, Sir!' cried Rob, with his legs trembling\nunder him. ' I'm sure, Sir, I only want to work for you, Sir, and to\nwait upon you, Sir, and to do faithful whatever I'm bid, Sir.'\n\n'You had better do faithfully whatever you are bid,' returned his\npatron, 'if you have anything to do with me.'\n\n'Yes, I know that, Sir,' pleaded the submissive Rob; 'I'm sure of\nthat, SIr. If you'll only be so good as try me, Sir! And if ever you\nfind me out, Sir, doing anything against your wishes, I give you leave\nto kill me.'\n\n'You dog!' said Mr Carker, leaning back in his chair, and smiling\nat him serenely. 'That's nothing to what I'd do to you, if you tried\nto deceive me.'\n\n'Yes, Sir,' replied the abject Grinder, 'I'm sure you would be down\nupon me dreadful, Sir. I wouldn't attempt for to go and do it, Sir,\nnot if I was bribed with golden guineas.'\n\nThoroughly checked in his expectations of commendation, the\ncrestfallen Grinder stood looking at his patron, and vainly\nendeavouring not to look at him, with the uneasiness which a cur will\noften manifest in a similar situation.\n\n'So you have left your old service, and come here to ask me to take\nyou into mine, eh?' said Mr Carker.\n\n'Yes, if you please, Sir,' returned Rob, who, in doing so, had\nacted on his patron's own instructions, but dared not justify himself\nby the least insinuation to that effect.\n\n'Well!' said Mr Carker. 'You know me, boy?'\n\n'Please, Sir, yes, Sir,' returned Rob, tumbling with his hat, and\nstill fixed by Mr Carker's eye, and fruitlessly endeavouring to unfix\nhimself.\n\nMr Carker nodded. 'Take care, then!'\n\nRob expressed in a number of short bows his lively understanding of\nthis caution, and was bowing himself back to the door, greatly\nrelieved by the prospect of getting on the outside of it, when his\npatron stopped him.\n\n'Halloa!' he cried, calling him roughly back. 'You have been - shut\nthat door.'\n\nRob obeyed as if his life had depended on his alacrity.\n\n'You have been used to eaves-dropping. Do you know what that\nmeans?'\n\n'Listening, Sir?' Rob hazarded, after some embarrassed reflection.\n\nHis patron nodded. 'And watching, and so forth.'\n\n'I wouldn't do such a thing here, Sir,' answered Rob; 'upon my word\nand honour, I wouldn't, Sir, I wish I may die if I would, Sir, for\nanything that could be promised to me. I should consider it is as much\nas all the world was worth, to offer to do such a thing, unless I was\nordered, Sir.'\n\n'You had better not' You have been used, too, to babbling and\ntattling,' said his patron with perfect coolness. 'Beware of that\nhere, or you're a lost rascal,' and he smiled again, and again\ncautioned him with his forefinger.\n\nThe Grinder's breath came short and thick with consternation. He\ntried to protest the purity of his intentions, but could only stare at\nthe smiling gentleman in a stupor of submission, with which the\nsmiling gentleman seemed well enough satisfied, for he ordered him\ndownstairs, after observing him for some moments in silence, and gave\nhim to understand that he was retained in his employment. This was the\nmanner of Rob the Grinder's engagement by Mr Carker, and his\nawe-stricken devotion to that gentleman had strengthened and\nincreased, if possible, with every minute of his service.\n\nIt was a service of some months' duration, when early one morning,\nRob opened the garden gate to Mr Dombey, who was come to breakfast\nwith his master, by appointment. At the same moment his master himself\ncame, hurrying forth to receive the distinguished guest, and give him\nwelcome with all his teeth.\n\n'I never thought,' said Carker, when he had assisted him to alight\nfrom his horse, 'to see you here, I'm sure. This is an extraordinary\nday in my calendar. No occasion is very special to a man like you, who\nmay do anything; but to a man like me, the case is widely different.\n\n'You have a tasteful place here, Carker,' said Mr Dombey,\ncondescending to stop upon the lawn, to look about him.\n\n'You can afford to say so,' returned Carker. 'Thank you.'\n\n'Indeed,' said Mr Dombey, in his lofty patronage, 'anyone might say\nso. As far as it goes, it is a very commodious and well-arranged place\n- quite elegant.'\n\n'As far as it goes, truly,' returned Carker, with an air of\ndisparagement' 'It wants that qualification. Well! we have said enough\nabout it; and though you can afford to praise it, I thank you\nnonetheless. Will you walk in?'\n\nMr Dombey, entering the house, noticed, as he had reason to do, the\ncomplete arrangement of the rooms, and the numerous contrivances for\ncomfort and effect that abounded there. Mr Carker, in his ostentation\nof humility, received this notice with a deferential smile, and said\nhe understood its delicate meaning, and appreciated it, but in truth\nthe cottage was good enough for one in his position - better, perhaps,\nthan such a man should occupy, poor as it was.\n\n'But perhaps to you, who are so far removed, it really does look\nbetter than it is,' he said, with his false mouth distended to its\nfullest stretch. 'Just as monarchs imagine attractions in the lives of\nbeggars.'\n\nHe directed a sharp glance and a sharp smile at Mr Dombey as he\nspoke, and a sharper glance, and a sharper smile yet, when Mr Dombey,\ndrawing himself up before the fire, in the attitude so often copied by\nhis second in command, looked round at the pictures on the walls.\nCursorily as his cold eye wandered over them, Carker's keen glance\naccompanied his, and kept pace with his, marking exactly where it\nwent, and what it saw. As it rested on one picture in particular,\nCarker hardly seemed to breathe, his sidelong scrutiny was so cat-like\nand vigilant, but the eye of his great chief passed from that, as from\nthe others, and appeared no more impressed by it than by the rest.\n\nCarker looked at it - it was the picture that resembled Edith - as\nif it were a living thing; and with a wicked, silent laugh upon his\nface, that seemed in part addressed to it, though it was all derisive\nof the great man standing so unconscious beside him. Breakfast was\nsoon set upon the table; and, inviting Mr Dombey to a chair which had\nits back towards this picture, he took his own seat opposite to it as\nusual.\n\nMr Dombey was even graver than it was his custom to be, and quite\nsilent. The parrot, swinging in the gilded hoop within her gaudy cage,\nattempted in vain to attract notice, for Carker was too observant of\nhis visitor to heed her; and the visitor, abstracted in meditation,\nlooked fixedly, not to say sullenly, over his stiff neckcloth, without\nraising his eyes from the table-cloth. As to Rob, who was in\nattendance, all his faculties and energies were so locked up in\nobservation of his master, that he scarcely ventured to give shelter\nto the thought that the visitor was the great gentleman before whom he\nhad been carried as a certificate of the family health, in his\nchildhood, and to whom he had been indebted for his leather smalls.\n\n'Allow me,' said Carker suddenly, 'to ask how Mrs Dombey is?'\n\nHe leaned forward obsequiously, as he made the inquiry, with his\nchin resting on his hand; and at the same time his eyes went up to the\npicture, as if he said to it, 'Now, see, how I will lead him on!'\n\nMr Dombey reddened as he answered:\n\n'Mrs Dombey is quite well. You remind me, Carker, of some\nconversation that I wish to have with you.'\n\n'Robin, you can leave us,' said his master, at whose mild tones\nRobin started and disappeared, with his eyes fixed on his patron to\nthe last. 'You don't remember that boy, of course?' he added, when the\nenmeshed Grinder was gone.\n\n'No,' said Mr Dombey, with magnificent indifference.\n\n'Not likely that a man like you would. Hardly possible,' murmured\nCarker. 'But he is one of that family from whom you took a nurse.\nPerhaps you may remember having generously charged yourself with his\neducation?'\n\n'Is it that boy?' said Mr Dombey, with a frown. 'He does little\ncredit to his education, I believe.'\n\n'Why, he is a young rip, I am afraid,' returned Carker, with a\nshrug. 'He bears that character. But the truth is, I took him into my\nservice because, being able to get no other employment, he conceived\n(had been taught at home, I daresay) that he had some sort of claim\nupon you, and was constantly trying to dog your heels with his\npetition. And although my defined and recognised connexion with your\naffairs is merely of a business character, still I have that\nspontaneous interest in everything belonging to you, that - '\n\nHe stopped again, as if to discover whether he had led Mr Dombey\nfar enough yet. And again, with his chin resting on his hand, he\nleered at the picture.\n\n'Carker,' said Mr Dombey, 'I am sensible that you do not limit your\n- '\n\n'Service,' suggested his smiling entertainer.\n\n'No; I prefer to say your regard,' observed Mr Dombey; very\nsensible, as he said so, that he was paying him a handsome and\nflattering compliment, 'to our mere business relations. Your\nconsideration for my feelings, hopes, and disappointments, in the\nlittle instance you have just now mentioned, is an example in point. I\nI am obliged to you, Carker.'\n\nMr Carker bent his head slowly, and very softly rubbed his hands,\nas if he were afraid by any action to disturb the current of Mr\nDombey's confidence.\n\n'Your allusion to it is opportune,' said Mr Dombey, after a little\nhesitation; 'for it prepares the way to what I was beginning to say to\nyou, and reminds me that that involves no absolutely new relations\nbetween us, although it may involve more personal confidence on my\npart than I have hitherto - '\n\n'Distinguished me with,' suggested Carker, bending his head again:\n'I will not say to you how honoured I am; for a man like you well\nknows how much honour he has in his power to bestow at pleasure.'\n\n'Mrs Dombey and myself,' said Mr Dombey, passing this compliment\nwith august self-denial, 'are not quite agreed upon some points. We do\nnot appear to understand each other yet' Mrs Dombey has something to\nlearn.'\n\n'Mrs Dombey is distinguished by many rare attractions; and has been\naccustomed, no doubt, to receive much adulation,' said the smooth,\nsleek watcher of his slightest look and tone. 'But where there is\naffection, duty, and respect, any little mistakes engendered by such\ncauses are soon set right.'\n\nMr Dombey's thoughts instinctively flew back to the face that had\nlooked at him in his wife's dressing-room when an imperious hand was\nstretched towards the door; and remembering the affection, duty, and\nrespect, expressed in it, he felt the blood rush to his own face quite\nas plainly as the watchful eyes upon him saw it there.\n\n'Mrs Dombey and myself,' he went on to say, 'had some discussion,\nbefore Mrs Skewton's death, upon the causes of my dissatisfaction; of\nwhich you will have formed a general understanding from having been a\nwitness of what passed between Mrs Dombey and myself on the evening\nwhen you were at our - at my house.'\n\n'When I so much regretted being present,' said the smiling Carker.\n'Proud as a man in my position nay must be of your familiar notice -\nthough I give you no credit for it; you may do anything you please\nwithout losing caste - and honoured as I was by an early presentation\nto Mrs Dombey, before she was made eminent by bearing your name, I\nalmost regretted that night, I assure you, that I had been the object\nof such especial good fortune'\n\nThat any man could, under any possible circumstances, regret the\nbeing distinguished by his condescension and patronage, was a moral\nphenomenon which Mr Dombey could not comprehend. He therefore\nresponded, with a considerable accession of dignity. 'Indeed! And why,\nCarker?'\n\n'I fear,' returned the confidential agent, 'that Mrs Dombey, never\nvery much disposed to regard me with favourable interest - one in my\nposition could not expect that, from a lady naturally proud, and whose\npride becomes her so well - may not easily forgive my innocent part in\nthat conversation. Your displeasure is no light matter, you must\nremember; and to be visited with it before a third party -\n\n'Carker,' said Mr Dombey, arrogantly; 'I presume that I am the\nfirst consideration?'\n\n'Oh! Can there be a doubt about it?' replied the other, with the\nimpatience of a man admitting a notorious and incontrovertible fact'\n\n'Mrs Dombey becomes a secondary consideration, when we are both in\nquestion, I imagine,' said Mr Dombey. 'Is that so?'\n\n'Is it so?' returned Carker. 'Do you know better than anyone, that\nyou have no need to ask?'\n\n'Then I hope, Carker,' said Mr Dombey, 'that your regret in the\nacquisition of Mrs Dombey's displeasure, may be almost counterbalanced\nby your satisfaction in retaining my confidence and good opinion.'\n\n'I have the misfortune, I find,' returned Carker, 'to have incurred\nthat displeasure. Mrs Dombey has expressed it to you?'\n\n'Mrs Dombey has expressed various opinions,' said Mr Dombey, with\nmajestic coldness and indifference, 'in which I do not participate,\nand which I am not inclined to discuss, or to recall. I made Mr's\nDombey acquainted, some time since, as I have already told you, with\ncertain points of domestic deference and submission on which I felt it\nnecessary to insist. I failed to convince Mrs Dombey of the expediency\nof her immediately altering her conduct in those respects, with a view\nto her own peace and welfare, and my dignity; and I informed Mrs\nDombey that if I should find it necessary to object or remonstrate\nagain, I should express my opinion to her through yourself, my\nconfidential agent.'\n\nBlended with the look that Carker bent upon him, was a devilish\nlook at the picture over his head, that struck upon it like a flash of\nlightning.\n\n'Now, Carker,' said Mr Dombey, 'I do not hesitate to say to you\nthat I will carry my point. I am not to be trifled with. Mrs Dombey\nmust understand that my will is law, and that I cannot allow of one\nexception to the whole rule of my life. You will have the goodness to\nundertake this charge, which, coming from me, is not unacceptable to\nyou, I hope, whatever regret you may politely profess - for which I am\nobliged to you on behalf of Mrs Dombey; and you will have the\ngoodness, I am persuaded, to discharge it as exactly as any other\ncommission.'\n\n'You know,' said Mr Carker, 'that you have only to command me.\n\n'I know,' said Mr Dombey, with a majestic indication of assent,\n'that I have only to command you. It is necessary that I should\nproceed in this. Mrs Dombey is a lady undoubtedly highly qualified, in\nmany respects, to -\n\n'To do credit even to your choice,' suggested Carker, with a\nyawning show of teeth.\n\n'Yes; if you please to adopt that form of words,' said Mr Dombey,\nin his tone of state; 'and at present I do not conceive that Mrs\nDombey does that credit to it, to which it is entitled. There is a\nprinciple of opposition in Mrs Dombey that must be eradicated; that\nmust be overcome: Mrs Dombey does not appear to understand,' said Mr\nDombey, forcibly, 'that the idea of opposition to Me is monstrous and\nabsurd.'\n\n'We, in the City, know you better,' replied Carker, with a smile\nfrom ear to ear.\n\n'You know me better,' said Mr Dombey. 'I hope so. Though, indeed, I\nam bound to do Mrs Dombey the justice of saying, however inconsistent\nit may seem with her subsequent conduct (which remains unchanged),\nthat on my expressing my disapprobation and determination to her, with\nsome severity, on the occasion to which I have referred, my admonition\nappeared to produce a very powerful effect.' Mr Dombey delivered\nhimself of those words with most portentous stateliness. 'I wish you\nto have the goodness, then, to inform Mrs Dombey, Carker, from me,\nthat I must recall our former conversation to her remembrance, in some\nsurprise that it has not yet had its effect. That I must insist upon\nher regulating her conduct by the injunctions laid upon her in that\nconversation. That I am not satisfied with her conduct. That I am\ngreatly dissatisfied with it. And that I shall be under the very\ndisagreeable necessity of making you the bearer of yet more unwelcome\nand explicit communications, if she has not the good sense and the\nproper feeling to adapt herself to my wishes, as the first Mrs Dombey\ndid, and, I believe I may add, as any other lady in her place would.'\n\n'The first Mrs Dombey lived very happily,' said Carker.\n\n'The first Mrs Dombey had great good sense,' said Mr Dombey, in a\ngentlemanly toleration of the dead, 'and very correct feeling.'\n\n'Is Miss Dombey like her mother, do you think?' said Carker.\n\nSwiftly and darkly, Mr Dombey's face changed. His confidential\nagent eyed it keenly.\n\n'I have approached a painful subject,' he said, in a soft regretful\ntone of voice, irreconcilable with his eager eye. 'Pray forgive me. I\nforget these chains of association in the interest I have. Pray\nforgive me.'\n\nBut for all he said, his eager eye scanned Mr Dombey's downcast\nface none the less closely; and then it shot a strange triumphant look\nat the picture, as appealing to it to bear witness how he led him on\nagain, and what was coming.\n\nCarker,' said Mr Dombey, looking here and there upon the table, and\nsaying in a somewhat altered and more hurried voice, and with a paler\nlip, 'there is no occasion for apology. You mistake. The association\nis with the matter in hand, and not with any recollection, as you\nsuppose. I do not approve of Mrs Dombey's behaviour towards my\ndaughter.'\n\n'Pardon me,' said Mr Carker, 'I don't quite understand.'\n\n'Understand then,' returned Mr Dombey, 'that you may make that -\nthat you will make that, if you please - matter of direct objection\nfrom me to Mrs Dombey. You will please to tell her that her show of\ndevotion for my daughter is disagreeable to me. It is likely to be\nnoticed. It is likely to induce people to contrast Mrs Dombey in her\nrelation towards my daughter, with Mrs Dombey in her relation towards\nmyself. You will have the goodness to let Mrs Dombey know, plainly,\nthat I object to it; and that I expect her to defer, immediately, to\nmy objection. Mrs Dombey may be in earnest, or she may be pursuing a\nwhim, or she may be opposing me; but I object to it in any case, and\nin every case. If Mrs Dombey is in earnest, so much the less reluctant\nshould she be to desist; for she will not serve my daughter by any\nsuch display. If my wife has any superfluous gentleness, and duty over\nand above her proper submission to me, she may bestow them where she\npleases, perhaps; but I will have submission first! - Carker,' said Mr\nDombey, checking the unusual emotion with which he had spoken, and\nfalling into a tone more like that in which he was accustomed to\nassert his greatness, 'you will have the goodness not to omit or slur\nthis point, but to consider it a very important part of your\ninstructions.'\n\nMr Carker bowed his head, and rising from the table, and standing\nthoughtfully before the fire, with his hand to his smooth chin, looked\ndown at Mr Dombey with the evil slyness of some monkish carving, half\nhuman and half brute; or like a leering face on an old water-spout. Mr\nDombey, recovering his composure by degrees, or cooling his emotion in\nhis sense of having taken a high position, sat gradually stiffening\nagain, and looking at the parrot as she swung to and fro, in her great\nwedding ring.\n\n'I beg your pardon,' said Carker, after a silence, suddenly\nresuming his chair, and drawing it opposite to Mr Dombey's, 'but let\nme understand. Mrs Dombey is aware of the probability of your making\nme the organ of your displeasure?'\n\n'Yes,' replied Mr Dombey. 'I have said so.'\n\n'Yes,' rejoined Carker, quickly; 'but why?'\n\n'Why!' Mr Dombey repeated, not without hesitation. 'Because I told\nher.'\n\n'Ay,' replied Carker. 'But why did you tell her? You see,' he\ncontinued with a smile, and softly laying his velvet hand, as a cat\nmight have laid its sheathed claws, on Mr Dombey's arm; 'if I\nperfectly understand what is in your mind, I am so much more likely to\nbe useful, and to have the happiness of being effectually employed. I\nthink I do understand. I have not the honour of Mrs Dombey's good\nopinion. In my position, I have no reason to expect it; but I take the\nfact to be, that I have not got it?'\n\n'Possibly not,' said Mr Dombey.\n\n'Consequently,' pursued Carker, 'your making the communications to\nMrs Dombey through me, is sure to be particularly unpalatable to that\nlady?'\n\n'It appears to me,' said Mr Dombey, with haughty reserve, and yet\nwith some embarrassment, 'that Mrs Dombey's views upon the subject\nform no part of it as it presents itself to you and me, Carker. But it\nmay be so.'\n\n'And - pardon me - do I misconceive you,' said Carker, 'when I\nthink you descry in this, a likely means of humbling Mrs Dombey's\npride - I use the word as expressive of a quality which, kept within\ndue bounds, adorns and graces a lady so distinguished for her beauty\nand accomplishments - and, not to say of punishing her, but of\nreducing her to the submission you so naturally and justly require?'\n\n'I am not accustomed, Carker, as you know,' said Mr Dombey, 'to\ngive such close reasons for any course of conduct I think proper to\nadopt, but I will gainsay nothing of this. If you have any objection\nto found upon it, that is indeed another thing, and the mere statement\nthat you have one will be sufficient. But I have not supposed, I\nconfess, that any confidence I could entrust to you, would be likely\nto degrade you - '\n\n'Oh! I degraded!' exclaimed Carker. 'In your service!'\n\n'or to place you,' pursued Mr Dombey, 'in a false position.'\n\n'I in a false position!' exclaimed Carker. 'I shall be proud -\ndelighted - to execute your trust. I could have wished, I own, to have\ngiven the lady at whose feet I would lay my humble duty and devotion -\nfor is she not your wife! - no new cause of dislike; but a wish from\nyou is, of course, paramount to every other consideration on earth.\nBesides, when Mrs Dombey is converted from these little errors of\njudgment, incidental, I would presume to say, to the novelty of her\nsituation, I shall hope that she will perceive in the slight part I\ntake, only a grain - my removed and different sphere gives room for\nlittle more - of the respect for you, and sacrifice of all\nconsiderations to you, of which it will be her pleasure and privilege\nto garner up a great store every day.'\n\nMr Dombey seemed, at the moment, again to see her with her hand\nstretched out towards the door, and again to hear through the mild\nspeech of his confidential agent an echo of the words, 'Nothing can\nmake us stranger to each other than we are henceforth!' But he shook\noff the fancy, and did not shake in his resolution, and said,\n'Certainly, no doubt.'\n\n'There is nothing more,' quoth Carker, drawing his chair back to\nits old place - for they had taken little breakfast as yet- and\npausing for an answer before he sat down.\n\n'Nothing,' said Mr Dombey, 'but this. You will be good enough to\nobserve, Carker, that no message to Mrs Dombey with which you are or\nmay be charged, admits of reply. You will be good enough to bring me\nno reply. Mrs Dombey is informed that it does not become me to\ntemporise or treat upon any matter that is at issue between us, and\nthat what I say is final.'\n\nMr Carker signIfied his understanding of these credentials, and\nthey fell to breakfast with what appetite they might. The Grinder\nalso, in due time reappeared, keeping his eyes upon his master without\na moment's respite, and passing the time in a reverie of worshipful\ntenor. Breakfast concluded, Mr Dombey's horse was ordered out again,\nand Mr Carker mounting his own, they rode off for the City together.\n\nMr Carker was in capital spirits, and talked much. Mr Dombey\nreceived his conversation with the sovereign air of a man who had a\nright to be talked to, and occasionally condescended to throw in a few\nwords to carry on the conversation. So they rode on characteristically\nenough. But Mr Dombey, in his dignity, rode with very long stirrups,\nand a very loose rein, and very rarely deigned to look down to see\nwhere his horse went. In consequence of which it happened that Mr\nDombey's horse, while going at a round trot, stumbled on some loose\nstones, threw him, rolled over him, and lashing out with his iron-shod\nfeet, in his struggles to get up, kicked him.\n\nMr Carker, quick of eye, steady of hand, and a good horseman, was\nafoot, and had the struggling animal upon his legs and by the bridle,\nin a moment. Otherwise that morning's confidence would have been Mr\nDombey's last. Yet even with the flush and hurry of this action red\nupon him, he bent over his prostrate chief with every tooth disclosed,\nand muttered as he stooped down, 'I have given good cause of offence\nto Mrs Dombey now, if she knew it!'\n\nMr Dombey being insensible, and bleeding from the head and face,\nwas carried by certain menders of the road, under Carker's direction,\nto the nearest public-house, which was not far off, and where he was\nsoon attended by divers surgeons, who arrived in quick succession from\nall parts, and who seemed to come by some mysterious instinct, as\nvultures are said to gather about a camel who dies in the desert.\nAfter being at some pains to restore him to consciousness, these\ngentlemen examined into the nature of his injuries.\n\nOne surgeon who lived hard by was strong for a compound fracture of\nthe leg, which was the landlord's opinion also; but two surgeons who\nlived at a distance, and were only in that neighbourhood by accident,\ncombated this opinion so disinterestedly, that it was decided at last\nthat the patient, though severely cut and bruised, had broken no bones\nbut a lesser rib or so, and might be carefully taken home before\nnight. His injuries being dressed and bandaged, which was a long\noperation, and he at length left to repose, Mr Carker mounted his\nhorse again, and rode away to carry the intelligence home.\n\nCrafty and cruel as his face was at the best of times, though it\nwas a sufficiently fair face as to form and regularity of feature, it\nwas at its worst when he set forth on this errand; animated by the\ncraft and cruelty of thoughts within him, suggestions of remote\npossibility rather than of design or plot, that made him ride as if he\nhunted men and women. Drawing rein at length, and slackening in his\nspeed, as he came into the more public roads, he checked his\nwhite-legged horse into picking his way along as usual, and hid\nhimself beneath his sleek, hushed, crouched manner, and his ivory\nsmile, as he best could.\n\nHe rode direct to Mr Dombey's house, alighted at the door, and\nbegged to see Mrs Dombey on an affair of importance. The servant who\nshowed him to Mr Dombey's own room, soon returned to say that it was\nnot Mrs Dombey's hour for receiving visitors, and that he begged\npardon for not having mentioned it before.\n\nMr Carker, who was quite prepared for a cold reception, wrote upon\na card that he must take the liberty of pressing for an interview, and\nthat he would not be so bold as to do so, for the second time (this he\nunderlined), if he were not equally sure of the occasion being\nsufficient for his justification. After a trifling delay, Mrs Dombey's\nmaid appeared, and conducted him to a morning room upstairs, where\nEdith and Florence were together.\n\nHe had never thought Edith half so beautiful before. Much as he\nadmired the graces of her face and form, and freshly as they dwelt\nwithin his sensual remembrance, he had never thought her half so\nbeautiful.\n\nHer glance fell haughtily upon him in the doorway; but he looked at\nFlorence - though only in the act of bending his head, as he came in -\nwith some irrepressible expression of the new power he held; and it\nwas his triumph to see the glance droop and falter, and to see that\nEdith half rose up to receive him.\n\nHe was very sorry, he was deeply grieved; he couldn't say with what\nunwillingness he came to prepare her for the intelligence of a very\nslight accident. He entreated Mrs Dombey to compose herself. Upon his\nsacred word of honour, there was no cause of alarm. But Mr Dombey -\n\nFlorence uttered a sudden cry. He did not look at her, but at\nEdith. Edith composed and reassured her. She uttered no cry of\ndistress. No, no.\n\nMr Dombey had met with an accident in riding. His horse had\nslipped, and he had been thrown.\n\nFlorence wildly exclaimed that he was badly hurt; that he was\nkilled!\n\nNo. Upon his honour, Mr Dombey, though stunned at first, was soon\nrecovered, and though certainly hurt was in no kind of danger. If this\nwere not the truth, he, the distressed intruder, never could have had\nthe courage to present himself before Mrs Dombey. It was the truth\nindeed, he solemnly assured her.\n\nAll this he said as if he were answering Edith, and not Florence,\nand with his eyes and his smile fastened on Edith.\n\nHe then went on to tell her where Mr Dombey was lying, and to\nrequest that a carriage might be placed at his disposal to bring him\nhome.\n\n'Mama,' faltered Florence in tears, 'if I might venture to go!'\n\nMr Carker, having his eyes on Edith when he heard these words, gave\nher a secret look and slightly shook his head. He saw how she battled\nwith herself before she answered him with her handsome eyes, but he\nwrested the answer from her - he showed her that he would have it, or\nthat he would speak and cut Florence to the heart - and she gave it to\nhim. As he had looked at the picture in the morning, so he looked at\nher afterwards, when she turned her eyes away.\n\n'I am directed to request,' he said, 'that the new housekeeper -\nMrs Pipchin, I think, is the name - '\n\nNothing escaped him. He saw in an instant, that she was another\nslight of Mr Dombey's on his wife.\n\n' - may be informed that Mr Dombey wishes to have his bed prepared\nin his own apartments downstairs, as he prefers those rooms to any\nother. I shall return to Mr Dombey almost immediately. That every\npossible attention has been paid to his comfort, and that he is the\nobject of every possible solicitude, I need not assure you, Madam. Let\nme again say, there is no cause for the least alarm. Even you may be\nquite at ease, believe me.'\n\nHe bowed himself out, with his extremest show of deference and\nconciliation; and having returned to Mr Dombey's room, and there\narranged for a carriage being sent after him to the City, mounted his\nhorse again, and rode slowly thither. He was very thoughtful as he\nwent along, and very thoughtful there, and very thoughtful in the\ncarriage on his way back to the place where Mr Dombey had been left.\nIt was only when sitting by that gentleman's couch that he was quite\nhimself again, and conscious of his teeth.\n\nAbout the time of twilight, Mr Dombey, grievously afflicted with\naches and pains, was helped into his carriage, and propped with cloaks\nand pillows on one side of it, while his confidential agent bore him\ncompany upon the other. As he was not to be shaken, they moved at\nlittle more than a foot pace; and hence it was quite dark when he was\nbrought home. Mrs Pipchin, bitter and grim, and not oblivious of the\nPeruvian mines, as the establishment in general had good reason to\nknow, received him at the door, and freshened the domestics with\nseveral little sprinklings of wordy vinegar, while they assisted in\nconveying him to his room. Mr Carker remained in attendance until he\nwas safe in bed, and then, as he declined to receive any female\nvisitor, but the excellent Ogress who presided over his household,\nwaited on Mrs Dombey once more, with his report on her lord's\ncondition.\n\nHe again found Edith alone with Florence, and he again addressed\nthe whole of his soothing speech to Edith, as if she were a prey to\nthe liveliest and most affectionate anxieties. So earnest he was in\nhis respectful sympathy, that on taking leave, he ventured - with one\nmore glance towards Florence at the moment - to take her hand, and\nbending over it, to touch it with his lips.\n\nEdith did not withdraw the hand, nor did she strike his fair face\nwith it, despite the flush upon her cheek, the bright light in her\neyes, and the dilation of her whole form. But when she was alone in\nher own room, she struck it on the marble chimney-shelf, so that, at\none blow, it was bruised, and bled; and held it from her, near the\nshining fire, as if she could have thrust it in and burned it'\n\nFar into the night she sat alone, by the sinking blaze, in dark and\nthreatening beauty, watching the murky shadows looming on the wall, as\nif her thoughts were tangible, and cast them there. Whatever shapes of\noutrage and affront, and black foreshadowings of things that might\nhappen, flickered, indistinct and giant-like, before her, one resented\nfigure marshalled them against her. And that figure was her husband.\n\n\n\nCHAPTER 43.\n\nThe Watches of the Night\n\n\n\nFlorence, long since awakened from her dream, mournfully observed\nthe estrangement between her father and Edith, and saw it widen more\nand more, and knew that there was greater bitterness between them\nevery day. Each day's added knowledge deepened the shade upon her love\nand hope, roused up the old sorrow that had slumbered for a little\ntime, and made it even heavier to bear than it had been before.\n\nIt had been hard - how hard may none but Florence ever know! - to\nhave the natural affection of a true and earnest nature turned to\nagony; and slight, or stern repulse, substituted for the tenderest\nprotection and the dearest care. It had been hard to feel in her deep\nheart what she had felt, and never know the happiness of one touch of\nresponse. But it was much more hard to be compelled to doubt either\nher father or Edith, so affectionate and dear to her, and to think of\nher love for each of them, by turns, with fear, distrust, and wonder.\n\nYet Florence now began to do so; and the doing of it was a task\nimposed upon her by the very purity of her soul, as one she could not\nfly from. She saw her father cold and obdurate to Edith, as to her;\nhard, inflexible, unyielding. Could it be, she asked herself with\nstarting tears, that her own dear mother had been made unhappy by such\ntreatment, and had pined away and died? Then she would think how proud\nand stately Edith was to everyone but her, with what disdain she\ntreated him, how distantly she kept apart from him, and what she had\nsaid on the night when they came home; and quickly it would come on\nFlorence, almost as a crime, that she loved one who was set in\nopposition to her father, and that her father knowing of it, must\nthink of her in his solitary room as the unnatural child who added\nthis wrong to the old fault, so much wept for, of never having won his\nfatherly affection from her birth. The next kind word from Edith, the\nnext kind glance, would shake these thoughts again, and make them seem\nlike black ingratitude; for who but she had cheered the drooping heart\nof Florence, so lonely and so hurt, and been its best of comforters!\nThus, with her gentle nature yearning to them both, feeling for the\nmisery of both, and whispering doubts of her own duty to both,\nFlorence in her wider and expanded love, and by the side of Edith,\nendured more than when she had hoarded up her undivided secret in the\nmournful house, and her beautiful Mama had never dawned upon it.\n\nOne exquisite unhappiness that would have far outweighed this,\nFlorence was spared. She never had the least suspicion that Edith by\nher tenderness for her widened the separation from her father, or gave\nhim new cause of dislike. If Florence had conceived the possIbility of\nsuch an effect being wrought by such a cause, what grief she would\nhave felt, what sacrifice she would have tried to make, poor loving\ngirl, how fast and sure her quiet passage might have been beneath it\nto the presence of that higher Father who does not reject his\nchildren's love, or spurn their tried and broken hearts, Heaven knows!\nBut it was otherwise, and that was well.\n\nNo word was ever spoken between Florence and Edith now, on these\nsubjects. Edith had said there ought to be between them, in that wise,\na division and a silence like the grave itself: and Florence felt she\nwas right'\n\nIn this state of affairs her father was brought home, suffering and\ndisabled; and gloomily retired to his own rooms, where he was tended\nby servants, not approached by Edith, and had no friend or companion\nbut Mr Carker, who withdrew near midnight.\n\n'And nice company he is, Miss Floy,' said Susan Nipper. 'Oh, he's a\nprecious piece of goods! If ever he wants a character don't let him\ncome to me whatever he does, that's all I tell him.'\n\n'Dear Susan,' urged Florence, 'don't!'\n\n'Oh, it's very well to say \"don't\" Miss Floy,' returned the Nipper,\nmuch exasperated; 'but raly begging your pardon we're coming to such\npasses that it turns all the blood in a person's body into pins and\nneedles, with their pints all ways. Don't mistake me, Miss Floy, I\ndon't mean nothing again your ma-in-law who has always treated me as a\nlady should though she is rather high I must say not that I have any\nright to object to that particular, but when we come to Mrs Pipchinses\nand having them put over us and keeping guard at your Pa's door like\ncrocodiles (only make us thankful that they lay no eggs!) we are a\ngrowing too outrageous!'\n\n'Papa thinks well of Mrs Pipchin, Susan,' returned Florence, 'and\nhas a right to choose his housekeeper, you know. Pray don't!'\n\n'Well Miss Floy,' returned the Nipper, 'when you say don't, I never\ndo I hope but Mrs Pipchin acts like early gooseberries upon me Miss,\nand nothing less.'\n\nSusan was unusually emphatic and destitute of punctuation in her\ndiscourse on this night, which was the night of Mr Dombey's being\nbrought home, because, having been sent downstairs by Florence to\ninquire after him, she had been obliged to deliver her message to her\nmortal enemy Mrs Pipchin; who, without carrying it in to Mr Dombey,\nhad taken upon herself to return what Miss Nipper called a huffish\nanswer, on her own responsibility. This, Susan Nipper construed into\npresumption on the part of that exemplary sufferer by the Peruvian\nmines, and a deed of disparagement upon her young lady, that was not\nto be forgiven; and so far her emphatic state was special. But she had\nbeen in a condition of greatly increased suspicion and distrust, ever\nsince the marriage; for, like most persons of her quality of mind, who\nform a strong and sincere attachment to one in the different station\nwhich Florence occupied, Susan was very jealous, and her jealousy\nnaturally attached to Edith, who divided her old empire, and came\nbetween them. Proud and glad as Susan Nipper truly was, that her young\nmistress should be advanced towards her proper place in the scene of\nher old neglect, and that she should have her father's handsome wife\nfor her companion and protectress, she could not relinquish any part\nof her own dominion to the handsome wife, without a grudge and a vague\nfeeling of ill-will, for which she did not fail to find a\ndisinterested justification in her sharp perception of the pride and\npassion of the lady's character. From the background to which she had\nnecessarily retired somewhat, since the marriage, Miss Nipper looked\non, therefore, at domestic affairs in general, with a resolute\nconviction that no good would come of Mrs Dombey: always being very\ncareful to publish on all possible occasions, that she had nothing to\nsay against her.\n\n'Susan,' said Florence, who was sitting thoughtfully at her table,\n'it is very late. I shall want nothing more to-night.'\n\n'Ah, Miss Floy!' returned the Nipper, 'I'm sure I often wish for\nthem old times when I sat up with you hours later than this and fell\nasleep through being tired out when you was as broad awake as\nspectacles, but you've ma's-in-law to come and sit with you now Miss\nFloy and I'm thankful for it I'm sure. I've not a word to say against\n'em.'\n\n'I shall not forget who was my old companion when I had none,\nSusan,' returned Florence, gently, 'never!' And looking up, she put\nher arm round the neck of her humble friend, drew her face down to\nhers, and bidding her good-night, kissed it; which so mollified Miss\nNipper, that she fell a sobbing.\n\n'Now my dear Miss Floy, said Susan, 'let me go downstairs again and\nsee how your Pa is, I know you're wretched about him, do let me go\ndownstairs again and knock at his door my own self.'\n\n'No,' said Florence, 'go to bed. We shall hear more in the morning.\nI will inquire myself in the morning. Mama has been down, I daresay;'\nFlorence blushed, for she had no such hope; 'or is there now, perhaps.\nGood-night!'\n\nSusan was too much softened to express her private opinion on the\nprobability of Mrs Dombey's being in attendance on her husband, and\nsilently withdrew. Florence left alone, soon hid her head upon her\nhands as she had often done in other days, and did not restrain the\ntears from coursing down her face. The misery of this domestic discord\nand unhappiness; the withered hope she cherished now, if hope it could\nbe called, of ever being taken to her father's heart; her doubts and\nfears between the two; the yearning of her innocent breast to both;\nthe heavy disappointment and regret of such an end as this, to what\nhad been a vision of bright hope and promise to her; all crowded on\nher mind and made her tears flow fast. Her mother and her brother\ndead, her father unmoved towards her, Edith opposed to him and casting\nhim away, but loving her, and loved by her, it seemed as if her\naffection could never prosper, rest where it would. That weak thought\nwas soon hushed, but the thoughts in which it had arisen were too true\nand strong to be dismissed with it; and they made the night desolate.\n\nAmong such reflections there rose up, as there had risen up all\nday, the image of her father, wounded and in pain, alone in his own\nroom, untended by those who should be nearest to him, and passing the\ntardy hours in lonely suffering. A frightened thought which made her\nstart and clasp her hands - though it was not a new one in her mind -\nthat he might die, and never see her or pronounce her name, thrilled\nher whole frame. In her agitation she thought, and trembled while she\nthought, of once more stealing downstairs, and venturing to his door.\n\nShe listened at her own. The house was quiet, and all the lights\nwere out. It was a long, long time, she thought, since she used to\nmake her nightly pilgrimages to his door! It was a long, long time,\nshe tried to think, since she had entered his room at midnight, and he\nhad led her back to the stair-foot!\n\nWith the same child's heart within her, as of old: even with the\nchild's sweet timid eyes and clustering hair: Florence, as strange to\nher father in her early maiden bloom, as in her nursery time, crept\ndown the staircase listening as she went, and drew near to his room.\nNo one was stirring in the house. The door was partly open to admit\nair; and all was so still within, that she could hear the burning of\nthe fire, and count the ticking of the clock that stood upon the\nchimney-piece.\n\nShe looked in. In that room, the housekeeper wrapped in a blanket\nwas fast asleep in an easy chair before the fire. The doors between it\nand the next were partly closed, and a screen was drawn before them;\nbut there was a light there, and it shone upon the cornice of his bed.\nAll was so very still that she could hear from his breathing that he\nwas asleep. This gave her courage to pass round the screen, and look\ninto his chamber.\n\nIt was as great a start to come upon his sleeping face as if she\nhad not expected to see it. Florence stood arrested on the spot, and\nif he had awakened then, must have remained there.\n\nThere was a cut upon his forehead, and they had been wetting his\nhair, which lay bedabbled and entangled on the pillow. One of his\narms, resting outside the bed, was bandaged up, and he was very white.\nBut it was not this, that after the first quick glance, and first\nassurance of his sleeping quietly, held Florence rooted to the ground.\nIt was something very different from this, and more than this, that\nmade him look so solemn in her eye\n\nShe had never seen his face in all her life, but there had been\nupon it - or she fancied so - some disturbing consciousness of her.\nShe had never seen his face in all her life, but hope had sunk within\nher, and her timid glance had dropped before its stern, unloving, and\nrepelling harshness. As she looked upon it now, she saw it, for the\nfirst time, free from the cloud that had darkened her childhood. Calm,\ntranquil night was reigning in its stead. He might have gone to sleep,\nfor anything she saw there, blessing her.\n\nAwake, unkind father! Awake, now, sullen man! The time is flitting\nby; the hour is coming with an angry tread. Awake!\n\nThere was no change upon his face; and as she watched it, awfully,\nits motionless reponse recalled the faces that were gone. So they\nlooked, so would he; so she, his weeping child, who should say when!\nso all the world of love and hatred and indifference around them! When\nthat time should come, it would not be the heavier to him, for this\nthat she was going to do; and it might fall something lighter upon\nher.\n\nShe stole close to the bed, and drawing in her breath, bent down,\nand softly kissed him on the face, and laid her own for one brief\nmoment by its side, and put the arm, with which she dared not touch\nhim, round about him on the pillow.\n\nAwake, doomed man, while she is near! The time is flitting by; the\nhour is coming with an angry tread; its foot is in the house. Awake!\n\nIn her mind, she prayed to God to bless her father, and to soften\nhim towards her, if it might be so; and if not, to forgive him if he\nwas wrong, and pardon her the prayer which almost seemed impiety. And\ndoing so, and looking back at him with blinded eyes, and stealing\ntimidly away, passed out of his room, and crossed the other, and was\ngone.\n\nHe may sleep on now. He may sleep on while he may. But let him look\nfor that slight figure when he wakes, and find it near him when the\nhour is come!\n\nSad and grieving was the heart of Florence, as she crept upstairs.\nThe quiet house had grown more dismal since she came down. The sleep\nshe had been looking on, in the dead of night, had the solemnity to\nher of death and life in one. The secrecy and silence of her own\nproceeding made the night secret, silent, and oppressive. She felt\nunwilling, almost unable, to go on to her own chamber; and turnIng\ninto the drawing-rooms, where the clouded moon was shining through the\nblinds, looked out into the empty streets.\n\nThe wind was blowing drearily. The lamps looked pale, and shook as\nif they were cold. There was a distant glimmer of something that was\nnot quite darkness, rather than of light, in the sky; and foreboding\nnight was shivering and restless, as the dying are who make a troubled\nend. Florence remembered how, as a watcher, by a sick-bed, she had\nnoted this bleak time, and felt its influence, as if in some hidden\nnatural antipathy to it; and now it was very, very gloomy.\n\nHer Mama had not come to her room that night, which was one cause\nof her having sat late out of her bed. In her general uneasiness, no\nless than in her ardent longing to have somebody to speak to, and to\nbreak the spell of gloom and silence, Florence directed her steps\ntowards the chamber where she slept.\n\nThe door was not fastened within, and yielded smoothly to her\nhesitating hand. She was surprised to find a bright light burning;\nstill more surprised, on looking in, to see that her Mama, but\npartially undressed, was sitting near the ashes of the fire, which had\ncrumbled and dropped away. Her eyes were intently bent upon the air;\nand in their light, and in her face, and in her form, and in the grasp\nwith which she held the elbows of her chair as if about to start up,\nFlorence saw such fierce emotion that it terrified her.\n\n'Mama!' she cried, 'what is the matter?'\n\nEdith started; looking at her with such a strange dread in her\nface, that Florence was more frightened than before.\n\n'Mama!' said Florence, hurriedly advancing. 'Dear Mama! what is the\nmatter?'\n\n'I have not been well,' said Edith, shaking, and still looking at\nher in the same strange way. 'I have had had dreams, my love.'\n\n'And not yet been to bed, Mama?'\n\n'No,' she returned. 'Half-waking dreams.'\n\nHer features gradually softened; and suffering Florence to come\ncloser to her, within her embrace, she said in a tender manner, 'But\nwhat does my bird do here? What does my bird do here?'\n\n'I have been uneasy, Mama, in not seeing you to-night, and in not\nknowing how Papa was; and I - '\n\nFlorence stopped there, and said no more.\n\n'Is it late?' asked Edith, fondly putting back the curls that\nmingled with her own dark hair, and strayed upon her face.\n\n'Very late. Near day.'\n\n'Near day!' she repeated in surprise.\n\n'Dear Mama, what have you done to your hand?' said Florence.\n\nEdith drew it suddenly away, and, for a moment, looked at her with\nthe same strange dread (there was a sort of wild avoidance in it) as\nbefore; but she presently said, 'Nothing, nothing. A blow.' And then\nshe said, 'My Florence!' and then her bosom heaved, and she was\nweeping passionately.\n\n'Mama!' said Florence. 'Oh Mama, what can I do, what should I do,\nto make us happier? Is there anything?'\n\n'Nothing,' she replied.\n\n'Are you sure of that? Can it never be? If I speak now of what is\nin my thoughts, in spite of what we have agreed,' said Florence, 'you\nwill not blame me, will you?'\n\n'It is useless,' she replied, 'useless. I have told you, dear, that\nI have had bad dreams. Nothing can change them, or prevent them coming\nback.'\n\n'I do not understand,' said Florence, gazing on her agitated face\nwhich seemed to darken as she looked.\n\n'I have dreamed,' said Edith in a low voice, 'of a pride that is\nall powerless for good, all powerful for evil; of a pride that has\nbeen galled and goaded, through many shameful years, and has never\nrecoiled except upon itself; a pride that has debased its owner with\nthe consciousness of deep humiliation, and never helped its owner\nboldly to resent it or avoid it, or to say, \"This shall not be!\" a\npride that, rightly guided, might have led perhaps to better things,\nbut which, misdirected and perverted, like all else belonging to the\nsame possessor, has been self-contempt, mere hardihood and ruin.'\n\nShe neither looked nor spoke to Florence now, but went on as if she\nwere alone.\n\n'I have dreamed,' she said, 'of such indifference and callousness,\narising from this self-contempt; this wretched, inefficient, miserable\npride; that it has gone on with listless steps even to the altar,\nyielding to the old, familiar, beckoning finger, - oh mother, oh\nmother! - while it spurned it; and willing to be hateful to itself for\nonce and for all, rather than to be stung daily in some new form.\nMean, poor thing!'\n\nAnd now with gathering and darkening emotion, she looked as she had\nlooked when Florence entered.\n\n'And I have dreamed,' she said, 'that in a first late effort to\nachieve a purpose, it has been trodden on, and trodden down by a base\nfoot, but turns and looks upon him. I have dreamed that it is wounded,\nhunted, set upon by dogs, but that it stands at hay, and will not\nyield; no, that it cannot if it would; but that it is urged on to hate\n\nHer clenched hand tightened on the trembling arm she had in hers,\nand as she looked down on the alarmed and wondering face, frown\nsubsided. 'Oh Florence!' she said, 'I think I have been nearly mad\nto-night!' and humbled her proud head upon her neck and wept again.\n\n'Don't leave me! be near me! I have no hope but in you! These words\nshe said a score of times.\n\nSoon she grew calmer, and was full of pity for the tears of\nFlorence, and for her waking at such untimely hours. And the day now\ndawning, with folded her in her arms and laid her down upon her bed,\nand, not lying down herself, sat by her, and bade her try to sleep.\n\n'For you are weary, dearest, and unhappy, and should rest.'\n\n'I am indeed unhappy, dear Mama, tonight,' said Florence. 'But you\nare weary and unhappy, too.'\n\n'Not when you lie asleep so near me, sweet.'\n\nThey kissed each other, and Florence, worn out, gradually fell into\na gentle slumber; but as her eyes closed on the face beside her, it\nwas so sad to think upon the face downstairs, that her hand drew\ncloser to Edith for some comfort; yet, even in the act, it faltered,\nlest it should be deserting him. So, in her sleep, she tried to\nreconcile the two together, and to show them that she loved them both,\nbut could not do it, and her waking grief was part of her dreams.\n\nEdith, sitting by, looked down at the dark eyelashes lying wet on\nthe flushed cheeks, and looked with gentleness and pity, for she knew\nthe truth. But no sleep hung upon her own eyes. As the day came on she\nstill sat watching and waking, with the placid hand in hers, and\nsometimes whispered, as she looked at the hushed face, 'Be near me,\nFlorence. I have no hope but in you!'\n\n\n\nCHAPTER 44.\n\nA Separation\n\n\n\nWith the day, though not so early as the sun, uprose Miss Susan\nNipper. There was a heaviness in this young maiden's exceedingly sharp\nblack eyes, that abated somewhat of their sparkling, and suggested -\nwhich was not their usual character - the possibility of their being\nsometimes shut. There was likewise a swollen look about them, as if\nthey had been crying over-night. But the Nipper, so far from being\ncast down, was singularly brisk and bold, and all her energies\nappeared to be braced up for some great feat. This was noticeable even\nin her dress, which was much more tight and trim than usual; and in\noccasional twitches of her head as she went about the house, which\nwere mightily expressive of determination.\n\nIn a word, she had formed a determination, and an aspiring one: it\nbeing nothing less than this - to penetrate to Mr Dombey's presence,\nand have speech of that gentleman alone. 'I have often said I would,'\nshe remarked, in a threatening manner, to herself, that morning, with\nmany twitches of her head, 'and now I will!'\n\nSpurring herself on to the accomplishment of this desperate design,\nwith a sharpness that was peculiar to herself, Susan Nipper haunted\nthe hall and staircase during the whole forenoon, without finding a\nfavourable opportunity for the assault. Not at all baffled by this\ndiscomfiture, which indeed had a stimulating effect, and put her on\nher mettle, she diminished nothing of her vigilance; and at last\ndiscovered, towards evening, that her sworn foe Mrs Pipchin, under\npretence of having sat up all night, was dozing in her own room, and\nthat Mr Dombey was lying on his sofa, unattended.\n\nWith a twitch - not of her head merely, this time, but of her whole\nself - the Nipper went on tiptoe to Mr Dombey's door, and knocked.\n'Come in!' said Mr Dombey. Susan encouraged herself with a final\ntwitch, and went in.\n\nMr Dombey, who was eyeing the fire, gave an amazed look at his\nvisitor, and raised himself a little on his arm. The Nipper dropped a\ncurtsey.\n\n'What do you want?' said Mr Dombey.\n\n'If you please, Sir, I wish to speak to you,' said Susan.\n\nMr Dombey moved his lips as if he were repeating the words, but he\nseemed so lost in astonishment at the presumption of the young woman\nas to be incapable of giving them utterance.\n\n'I have been in your service, Sir,' said Susan Nipper, with her\nusual rapidity, 'now twelve 'year a waiting on Miss Floy my own young\nlady who couldn't speak plain when I first come here and I was old in\nthis house when Mrs Richards was new, I may not be Meethosalem, but I\nam not a child in arms.'\n\nMr Dombey, raised upon his arm and looking at her, offered no\ncomment on this preparatory statement of fact.\n\n'There never was a dearer or a blesseder young lady than is my\nyoung lady, Sir,' said Susan, 'and I ought to know a great deal better\nthan some for I have seen her in her grief and I have seen her in her\njoy (there's not been much of it) and I have seen her with her brother\nand I have seen her in her loneliness and some have never seen her,\nand I say to some and all - I do!' and here the black-eyed shook her\nhead, and slightly stamped her foot; 'that she's the blessedest and\ndearest angel is Miss Floy that ever drew the breath of life, the more\nthat I was torn to pieces Sir the more I'd say it though I may not be\na Fox's Martyr..'\n\nMr Dombey turned yet paler than his fall had made him, with\nindignation and astonishment; and kept his eyes upon the speaker as if\nhe accused them, and his ears too, of playing him false.\n\n'No one could be anything but true and faithful to Miss Floy, Sir,'\npursued Susan, 'and I take no merit for my service of twelve year, for\nI love her - yes, I say to some and all I do!' - and here the\nblack-eyed shook her head again, and slightly stamped her foot again,\nand checked a sob; 'but true and faithful service gives me right to\nspeak I hope, and speak I must and will now, right or wrong.\n\n'What do you mean, woman?' said Mr Dombey, glaring at her. 'How do\nyou dare?'\n\n'What I mean, Sir, is to speak respectful and without offence, but\nout, and how I dare I know not but I do!'said Susan. 'Oh! you don't\nknow my young lady Sir you don't indeed, you'd never know so little of\nher, if you did.'\n\nMr Dombey, in a fury, put his hand out for the bell-rope; but there\nwas no bell-rope on that side of the fire, and he could not rise and\ncross to the other without assistance. The quick eye of the Nipper\ndetected his helplessness immediately, and now, as she afterwards\nobserved, she felt she had got him.\n\n'Miss Floy,' said Susan Nipper, 'is the most devoted and most\npatient and most dutiful and beautiful of daughters, there ain't no\ngentleman, no Sir, though as great and rich as all the greatest and\nrichest of England put together, but might be proud of her and would\nand ought. If he knew her value right, he'd rather lose his greatness\nand his fortune piece by piece and beg his way in rags from door to\ndoor, I say to some and all, he would!' cried Susan Nipper, bursting\ninto tears, 'than bring the sorrow on her tender heart that I have\nseen it suffer in this house!'\n\n'Woman,' cried Mr Dombey, 'leave the room.\n\n'Begging your pardon, not even if I am to leave the situation,\nSir,' replied the steadfast Nipper, 'in which I have been so many\nyears and seen so much - although I hope you'd never have the heart to\nsend me from Miss Floy for such a cause - will I go now till I have\nsaid the rest, I may not be a Indian widow Sir and I am not and I\nwould not so become but if I once made up my mind to burn myself\nalive, I'd do it! And I've made my mind up to go on.'\n\nWhich was rendered no less clear by the expression of Susan\nNipper's countenance, than by her words.\n\n'There ain't a person in your service, Sir,' pursued the\nblack-eyed, 'that has always stood more in awe of you than me and you\nmay think how true it is when I make so bold as say that I have\nhundreds and hundreds of times thought of speaking to you and never\nbeen able to make my mind up to it till last night, but last night\ndecided of me.'\n\nMr Dombey, in a paroxysm of rage, made another grasp at the\nbell-rope that was not there, and, in its absence, pulled his hair\nrather than nothing.\n\n'I have seen,' said Susan Nipper, 'Miss Floy strive and strive when\nnothing but a child so sweet and patient that the best of women might\nhave copied from her, I've seen her sitting nights together half the\nnight through to help her delicate brother with his learning, I've\nseen her helping him and watching him at other times - some well know\nwhen - I've seen her, with no encouragement and no help, grow up to be\na lady, thank God! that is the grace and pride of every company she\ngoes in, and I've always seen her cruelly neglected and keenly feeling\nof it - I say to some and all, I have! - and never said one word, but\nordering one's self lowly and reverently towards one's betters, is not\nto be a worshipper of graven images, and I will and must speak!'\n\n'Is there anybody there?' cried Mr Dombey, calling out. 'Where are\nthe men? where are the women? Is there no one there?'\n\n'I left my dear young lady out of bed late last night,' said Susan,\nnothing checked, 'and I knew why, for you was ill Sir and she didn't\nknow how ill and that was enough to make her wretched as I saw it did.\nI may not be a Peacock; but I have my eyes - and I sat up a little in\nmy own room thinking she might be lonesome and might want me, and I\nsaw her steal downstairs and come to this door as if it was a guilty\nthing to look at her own Pa, and then steal back again and go into\nthem lonely drawing-rooms, a-crying so, that I could hardly bear to\nhear it. I can not bear to hear it,' said Susan Nipper, wiping her\nblack eyes, and fixing them undauntingly on Mr Dombey's infuriated\nface. 'It's not the first time I have heard it, not by many and many a\ntime you don't know your own daughter, Sir, you don't know what you're\ndoing, Sir, I say to some and all,' cried Susan Nipper, in a final\nburst, 'that it's a sinful shame!'\n\n'Why, hoity toity!' cried the voice of Mrs Pipchin, as the black\nbombazeen garments of that fair Peruvian Miner swept into the room.\n'What's this, indeed?'\n\nSusan favoured Mrs Pipchin with a look she had invented expressly\nfor her when they first became acquainted, and resigned the reply to\nMr Dombey.\n\n'What's this?' repeated Mr Dombey, almost foaming. 'What's this,\nMadam? You who are at the head of this household, and bound to keep it\nin order, have reason to inquire. Do you know this woman?'\n\n'I know very little good of her, Sir,' croaked Mrs Pipchin. 'How\ndare you come here, you hussy? Go along with you!'\n\nBut the inflexible Nipper, merely honouring Mrs Pipchin with\nanother look, remained.\n\n'Do you call it managing this establishment, Madam,' said Mr\nDombey, 'to leave a person like this at liberty to come and talk to\nme! A gentleman - in his own house - in his own room - assailed with\nthe impertinences of women-servants!'\n\n'Well, Sir,' returned Mrs Pipchin, with vengeance in her hard grey\neye, 'I exceedingly deplore it; nothing can be more irregular; nothing\ncan be more out of all bounds and reason; but I regret to say, Sir,\nthat this young woman is quite beyond control. She has been spoiled by\nMiss Dombey, and is amenable to nobody. You know you're not,' said Mrs\nPipchin, sharply, and shaking her head at Susan Nipper. 'For shame,\nyou hussy! Go along with you!'\n\n'If you find people in my service who are not to be controlled, Mrs\nPipchin,' said Mr Dombey, turning back towards the fire, 'you know\nwhat to do with them, I presume. You know what you are here for? Take\nher away!'\n\n'Sir, I know what to do,' retorted Mrs Pipchin, 'and of course\nshall do it' Susan Nipper,' snapping her up particularly short, 'a\nmonth's warning from this hour.'\n\n'Oh indeed!' cried Susan, loftily.\n\n'Yes,' returned Mrs Pipchin, 'and don't smile at me, you minx, or\nI'll know the reason why! Go along with you this minute!'\n\n'I intend to go this minute, you may rely upon it,' said the\nvoluble Nipper. 'I have been in this house waiting on my young lady a\ndozen year and I won't stop in it one hour under notice from a person\nowning to the name of Pipchin trust me, Mrs P.'\n\n'A good riddance of bad rubbish!' said that wrathful old lady. 'Get\nalong with you, or I'll have you carried out!'\n\n'My comfort is,' said Susan, looking back at Mr Dombey, 'that I\nhave told a piece of truth this day which ought to have been told long\nbefore and can't be told too often or too plain and that no amount of\nPipchinses - I hope the number of 'em mayn't be great' (here Mrs\nPipchin uttered a very sharp 'Go along with you!' and Miss Nipper\nrepeated the look) 'can unsay what I have said, though they gave a\nwhole year full of warnings beginning at ten o'clock in the forenoon\nand never leaving off till twelve at night and died of the exhaustion\nwhich would be a Jubilee!'\n\nWith these words, Miss Nipper preceded her foe out of the room; and\nwalking upstairs to her own apartments in great state, to the choking\nexasperation of the ireful Pipchin, sat down among her boxes and began\nto cry.\n\nFrom this soft mood she was soon aroused, with a very wholesome and\nrefreshing effect, by the voice of Mrs Pipchin outside the door.\n\n'Does that bold-faced slut,' said the fell Pipchin, 'intend to take\nher warning, or does she not?'\n\nMiss Nipper replied from within that the person described did not\ninhabit that part of the house, but that her name was Pipchin, and she\nwas to be found in the housekeeper's room.\n\n'You saucy baggage!' retorted Mrs Pipchin, rattling at the handle\nof the door. 'Go along with you this minute. Pack up your things\ndirectly! How dare you talk in this way to a gentle-woman who has seen\nbetter days?'\n\nTo which Miss Nipper rejoined from her castle, that she pitied the\nbetter days that had seen Mrs Pipchin; and that for her part she\nconsidered the worst days in the year to be about that lady's mark,\nexcept that they were much too good for her.\n\n'But you needn't trouble yourself to make a noise at my door,' said\nSusan Nipper, 'nor to contaminate the key-hole with your eye, I'm\npacking up and going you may take your affidavit.'\n\nThe Dowager expressed her lively satisfaction at this intelligence,\nand with some general opinions upon young hussies as a race, and\nespecially upon their demerits after being spoiled by Miss Dombey,\nwithdrew to prepare the Nipper~s wages. Susan then bestirred herself\nto get her trunks in order, that she might take an immediate and\ndignified departure; sobbing heartily all the time, as she thought of\nFlorence.\n\nThe object of her regret was not long in coming to her, for the\nnews soon spread over the house that Susan Nipper had had a\ndisturbance with Mrs Pipchin, and that they had both appealed to Mr\nDombey, and that there had been an unprecedented piece of work in Mr\nDombey's room, and that Susan was going. The latter part of this\nconfused rumour, Florence found to be so correct, that Susan had\nlocked the last trunk and was sitting upon it with her bonnet on, when\nshe came into her room.\n\n'Susan!' cried Florence. 'Going to leave me! You!'\n\n'Oh for goodness gracious sake, Miss Floy,' said Susan, sobbing,\n'don't speak a word to me or I shall demean myself before them'\nPipchinses, and I wouldn't have 'em see me cry Miss Floy for worlds!'\n\n'Susan!' said Florence. 'My dear girl, my old friend! What shall I\ndo without you! Can you bear to go away so?'\n\n'No-n-o-o, my darling dear Miss Floy, I can't indeed,' sobbed\nSusan. 'But it can't be helped, I've done my duty' Miss, I have\nindeed. It's no fault of mine. I am quite resigned. I couldn't stay my\nmonth or I could never leave you then my darling and I must at last as\nwell as at first, don't speak to me Miss Floy, for though I'm pretty\nfirm I'm not a marble doorpost, my own dear.'\n\n'What is it? Why is it?' said Florence, 'Won't you tell me?' For\nSusan was shaking her head.\n\n'No-n-no, my darling,' returned Susan. 'Don't ask me, for I\nmustn't, and whatever you do don't put in a word for me to stop, for\nit couldn't be and you'd only wrong yourself, and so God bless you my\nown precious and forgive me any harm I have done, or any temper I have\nshowed in all these many years!'\n\nWith which entreaty, very heartily delivered, Susan hugged her\nmistress in her arms.\n\n'My darling there's a many that may come to serve you and be glad\nto serve you and who'll serve you well and true,' said Susan, 'but\nthere can't be one who'll serve you so affectionate as me or love you\nhalf as dearly, that's my comfort' Good-bye, sweet Miss Floy!'\n\n'Where will you go, Susan?' asked her weeping mistress.\n\n'I've got a brother down in the country Miss - a farmer in Essex\nsaid the heart-broken Nipper, 'that keeps ever so many co-o-ows and\npigs and I shall go down there by the coach and sto-op with him, and\ndon't mind me, for I've got money in the Savings Banks my dear, and\nneedn't take another service just yet, which I couldn't, couldn't,\ncouldn't do, my heart's own mistress!' Susan finished with a burst of\nsorrow, which was opportunely broken by the voice of Mrs Pipchin\ntalking downstairs; on hearing which, she dried her red and swollen\neyes, and made a melancholy feint of calling jauntily to Mr Towlinson\nto fetch a cab and carry down her boxes.\n\nFlorence, pale and hurried and distressed, but withheld from\nuseless interference even here, by her dread of causing any new\ndivision between her father and his wife (whose stern, indignant face\nhad been a warning to her a few moments since), and by her\napprehension of being in some way unconsciously connected already with\nthe dismissal of her old servant and friend, followed, weeping,\ndownstairs to Edith's dressing-room, whither Susan betook herself to\nmake her parting curtsey.\n\n'Now, here's the cab, and here's the boxes, get along with you,\ndo!' said Mrs Pipchin, presenting herself at the same moment. 'I beg\nyour pardon, Ma'am, but Mr Dombey's orders are imperative.'\n\nEdith, sitting under the hands of her maid - she was going out to\ndinner - preserved her haughty face, and took not the least notice.\n\n'There's your money,' said Mrs Pipchin, who in pursuance of her\nsystem, and in recollection of the Mines, was accustomed to rout the\nservants about, as she had routed her young Brighton boarders; to the\neverlasting acidulation of Master Bitherstone, 'and the sooner this\nhouse sees your back the better.\n\nSusan had no spirits even for the look that belonged to Ma Pipchin\nby right; so she dropped her curtsey to Mrs Dombey (who inclined her\nhead without one word, and whose eye avoided everyone but Florence),\nand gave one last parting hug to her young mistress, and received her\nparting embrace in return. Poor Susan's face at this crisis, in the\nintensity of her feelings and the determined suffocation of her sobs,\nlest one should become audible and be a triumph to Mrs Pipchin,\npresented a series of the most extraordinary physiognomical phenomena\never witnessed.\n\n'I beg your pardon, Miss, I'm sure,' said Towlinson, outside the\ndoor with the boxes, addressing Florence, 'but Mr Toots is in the\ndrawing-room, and sends his compliments, and begs to know how Diogenes\nand Master is.'\n\nQuick as thought, Florence glided out and hastened downstairs,\nwhere Mr Toots, in the most splendid vestments, was breathing very\nhard with doubt and agitation on the subject of her coming.\n\n'Oh, how de do, Miss Dombey,' said Mr Toots, 'God bless my soul!'\n\nThis last ejaculation was occasioned by Mr Toots's deep concern at\nthe distress he saw in Florence's face; which caused him to stop short\nin a fit of chuckles, and become an image of despair.\n\n'Dear Mr Toots,' said Florence, 'you are so friendly to me, and so\nhonest, that I am sure I may ask a favour of you.\n\n'Miss Dombey,' returned Mr Toots, 'if you'll only name one, you'll\n- you'll give me an appetite. To which,' said Mr Toots, with some\nsentiment, 'I have long been a stranger.\n\n'Susan, who is an old friend of mine, the oldest friend I have,'\nsaid Florence, 'is about to leave here suddenly, and quite alone, poor\ngirl. She is going home, a little way into the country. Might I ask\nyou to take care of her until she is in the coach?'\n\n'Miss Dombey,' returned Mr Toots, 'you really do me an honour and a\nkindness. This proof of your confidence, after the manner in which I\nwas Beast enough to conduct myself at Brighton - '\n\n'Yes,' said Florence, hurriedly - 'no - don't think of that. Then\nwould you have the kindness to - to go? and to be ready to meet her\nwhen she comes out? Thank you a thousand times! You ease my mind so\nmuch. She doesn't seem so desolate. You cannot think how grateful I\nfeel to you, or what a good friend I am sure you are!' and Florence in\nher earnestness thanked him again and again; and Mr Toots, in his\nearnestness, hurried away - but backwards, that he might lose no\nglimpse of her.\n\nFlorence had not the courage to go out, when she saw poor Susan in\nthe hall, with Mrs Pipchin driving her forth, and Diogenes jumping\nabout her, and terrifying Mrs Pipchin to the last degree by making\nsnaps at her bombazeen skirts, and howling with anguish at the sound\nof her voice - for the good duenna was the dearest and most cherished\naversion of his breast. But she saw Susan shake hands with the\nservants all round, and turn once to look at her old home; and she saw\nDiogenes bound out after the cab, and want to follow it, and testify\nan impossibility of conviction that he had no longer any property in\nthe fare; and the door was shut, and the hurry over, and her tears\nflowed fast for the loss of an old friend, whom no one could replace.\nNo one. No one.\n\nMr Toots, like the leal and trusty soul he was, stopped the\ncabriolet in a twinkling, and told Susan Nipper of his commission, at\nwhich she cried more than before.\n\n'Upon my soul and body!' said Mr Toots, taking his seat beside her.\n'I feel for you. Upon my word and honour I think you can hardly know\nyour own feelings better than I imagine them. I can conceive nothing\nmore dreadful than to have to leave Miss Dombey.'\n\nSusan abandoned herself to her grief now, and it really was\ntouching to see her.\n\n'I say,' said Mr Toots, 'now, don't! at least I mean now do, you\nknow!'\n\n'Do what, Mr Toots!' cried Susan.\n\n'Why, come home to my place, and have some dinner before you\nstart,' said Mr Toots. 'My cook's a most respectable woman - one of\nthe most motherly people I ever saw - and she'll be delighted to make\nyou comfortable. Her son,' said Mr Toots, as an additional\nrecommendation, 'was educated in the Bluecoat School,' and blown up in\na powder-mill.'\n\nSusan accepting this kind offer, Mr Toots conducted her to his\ndwelling, where they were received by the Matron in question who fully\njustified his character of her, and by the Chicken who at first\nsupposed, on seeing a lady in the vehicle, that Mr Dombey had been\ndoubled up, ably to his old recommendation, and Miss Dombey abducted.\nThis gentleman awakened in Miss Nipper some considerable astonishment;\nfor, having been defeated by the Larkey Boy, his visage was in a state\nof such great dilapidation, as to be hardly presentable in society\nwith comfort to the beholders. The Chicken himself attributed this\npunishment to his having had the misfortune to get into Chancery early\nin the proceedings, when he was severely fibbed by the Larkey one, and\nheavily grassed. But it appeared from the published records of that\ngreat contest that the Larkey Boy had had it all his own way from the\nbeginning, and that the Chicken had been tapped, and bunged, and had\nreceived pepper, and had been made groggy, and had come up piping, and\nhad endured a complication of similar strange inconveniences, until he\nhad been gone into and finished.\n\nAfter a good repast, and much hospitality, Susan set out for the\ncoach-office in another cabriolet, with Mr Toots inside, as before,\nand the Chicken on the box, who, whatever distinction he conferred on\nthe little party by the moral weight and heroism of his character, was\nscarcely ornamental to it, physically speaking, on account of his\nplasters; which were numerous. But the Chicken had registered a vow,\nin secret, that he would never leave Mr Toots (who was secretly pining\nto get rid of him), for any less consideration than the good-will and\nfixtures of a public-house; and being ambitious to go into that line,\nand drink himself to death as soon as possible, he felt it his cue to\nmake his company unacceptable.\n\nThe night-coach by which Susan was to go, was on the point of\ndeparture. Mr Toots having put her inside, lingered by the window,\nirresolutely, until the driver was about to mount; when, standing on\nthe step, and putting in a face that by the light of the lamp was\nanxious and confused, he said abruptly:\n\n'I say, Susan! Miss Dombey, you know - '\n\n'Yes, Sir.'\n\n'Do you think she could - you know - eh?'\n\n'I beg your pardon, Mr Toots,' said Susan, 'but I don't hear you.\n\n'Do you think she could be brought, you know - not exactly at once,\nbut in time - in a long time - to - to love me, you know? There!' said\npoor Mr Toots.\n\n'Oh dear no!' returned Susan, shaking her head. 'I should say,\nnever. Never!'\n\n'Thank'ee!' said Mr Toots. 'It's of no consequence. Good-night.\nIt's of no consequence, thank'ee!'\n\n\n\nCHAPTER 45.\n\nThe Trusty Agent\n\n\n\nEdith went out alone that day, and returned home early. It was but\na few minutes after ten o'clock, when her carriage rolled along the\nstreet in which she lived.\n\nThere was the same enforced composure on her face, that there had\nbeen when she was dressing; and the wreath upon her head encircled the\nsame cold and steady brow. But it would have been better to have seen\nits leaves and flowers reft into fragments by her passionate hand, or\nrendered shapeless by the fitful searches of a throbbing and\nbewildered brain for any resting-place, than adorning such\ntranquillity. So obdurate, so unapproachable, so unrelenting, one\nwould have thought that nothing could soften such a woman's nature,\nand that everything in life had hardened it.\n\nArrived at her own door, she was alighting, when some one coming\nquietly from the hall, and standing bareheaded, offered her his arm.\nThe servant being thrust aside, she had no choice but to touch it; and\nshe then knew whose arm it was.\n\n'How is your patient, Sir?' she asked, with a curled lip.\n\n'He is better,' returned Carker. 'He is doing very well. I have\nleft him for the night.'\n\nShe bent her head, and was passing up the staircase, when he\nfollowed and said, speaking at the bottom:\n\n'Madam! May I beg the favour of a minute's audience?'\n\nShe stopped and turned her eyes back 'It is an unseasonable time,\nSir, and I am fatigued. Is your business urgent?'\n\n'It is very urgent, returned Carker. 'As I am so fortunate as to\nhave met you, let me press my petition.'\n\nShe looked down for a moment at his glistening mouth; and he looked\nup at her, standing above him in her stately dress, and thought,\nagain, how beautiful she was.\n\n'Where is Miss Dombey?' she asked the servant, aloud.\n\n'In the morning room, Ma'am.'\n\n'Show the way there!' Turning her eyes again on the attentive\ngentleman at the bottom of the stairs, and informing him with a slight\nmotion of her head, that he was at liberty to follow, she passed on.\n\n'I beg your pardon! Madam! Mrs Dombey!' cried the soft and nimble\nCarker, at her side in a moment. 'May I be permitted to entreat that\nMiss Dombey is not present?'\n\nShe confronted him, with a quick look, but with the same\nself-possession and steadiness.\n\n'I would spare Miss Dombey,' said Carker, in a low voice, 'the\nknowledge of what I have to say. At least, Madam, I would leave it to\nyou to decide whether she shall know of it or not. I owe that to you.\nIt is my bounden duty to you. After our former interview, it would be\nmonstrous in me if I did otherwise.'\n\nShe slowly withdrew her eyes from his face, and turning to the\nservant, said, 'Some other room.' He led the way to a drawing-room,\nwhich he speedily lighted up and then left them. While he remained,\nnot a word was spoken. Edith enthroned herself upon a couch by the\nfire; and Mr Carker, with his hat in his hand and his eyes bent upon\nthe carpet, stood before her, at some little distance.\n\n'Before I hear you, Sir,' said Edith, when the door was closed, 'I\nwish you to hear me.'\n\n'To be addressed by Mrs Dombey,' he returned, 'even in accents of\nunmerited reproach, is an honour I so greatly esteem, that although I\nwere not her servant in all things, I should defer to such a wish,\nmost readily.'\n\n'If you are charged by the man whom you have just now left, Sir;'\nMr Carker raised his eyes, as if he were going to counterfeit\nsurprise, but she met them, and stopped him, if such were his\nintention; 'with any message to me, do not attempt to deliver it, for\nI will not receive it. I need scarcely ask you if you are come on such\nan errand. I have expected you some time.\n\n'It is my misfortune,' he replied, 'to be here, wholly against my\nwill, for such a purpose. Allow me to say that I am here for two\npurposes. That is one.'\n\n'That one, Sir,' she returned, 'is ended. Or, if you return to it -\n'\n\n'Can Mrs Dombey believe,' said Carker, coming nearer, 'that I would\nreturn to it in the face of her prohibition? Is it possible that Mrs\nDombey, having no regard to my unfortunate position, is so determined\nto consider me inseparable from my instructor as to do me great and\nwilful injustice?'\n\n'Sir,' returned Edith, bending her dark gaze full upon him, and\nspeaking with a rising passion that inflated her proud nostril and her\nswelling neck, and stirred the delicate white down upon a robe she\nwore, thrown loosely over shoulders that could hear its snowy\nneighbourhood. 'Why do you present yourself to me, as you have done,\nand speak to me of love and duty to my husband, and pretend to think\nthat I am happily married, and that I honour him? How dare you venture\nso to affront me, when you know - I do not know better, Sir: I have\nseen it in your every glance, and heard it in your every word - that\nin place of affection between us there is aversion and contempt, and\nthat I despise him hardly less than I despise myself for being his!\nInjustice! If I had done justice to the torment you have made me feel,\nand to my sense of the insult you have put upon me, I should have\nslain you!'\n\nShe had asked him why he did this. Had she not been blinded by her\npride and wrath, and self-humiliation, - which she was, fiercely as\nshe bent her gaze upon him, - she would have seen the answer in his\nface. To bring her to this declaration.\n\nShe saw it not, and cared not whether it was there or no. She saw\nonly the indignities and struggles she had undergone and had to\nundergo, and was writhing under them. As she sat looking fixedly at\nthem, rather than at him, she plucked the feathers from a pinion of\nsome rare and beautiful bird, which hung from her wrist by a golden\nthread, to serve her as a fan, and rained them on the ground.\n\nHe did not shrink beneath her gaze, but stood, until such outward\nsigns of her anger as had escaped her control subsided, with the air\nof a man who had his sufficient reply in reserve and would presently\ndeliver it. And he then spoke, looking straight into her kindling\neyes.\n\n'Madam,' he said, 'I know, and knew before to-day, that I have\nfound no favour with you; and I knew why. Yes. I knew why. You have\nspoken so openly to me; I am so relieved by the possession of your\nconfidence - '\n\n'Confidence!' she repeated, with disdain.\n\nHe passed it over.\n\n' - that I will make no pretence of concealment. I did see from the\nfirst, that there was no affection on your part for Mr Dombey - how\ncould it possibly exist between such different subjects? And I have\nseen, since, that stronger feelings than indifference have been\nengendered in your breast - how could that possibly be otherwise,\neither, circumstanced as you have been? But was it for me to presume\nto avow this knowledge to you in so many words?'\n\n'Was it for you, Sir,' she replied, 'to feign that other belief,\nand audaciously to thrust it on me day by day?'\n\n'Madam, it was,' he eagerly retorted. 'If I had done less, if I had\ndone anything but that, I should not be speaking to you thus; and I\nforesaw - who could better foresee, for who has had greater experience\nof Mr Dombey than myself? - that unless your character should prove to\nbe as yielding and obedient as that of his first submissive lady,\nwhich I did not believe - '\n\nA haughty smile gave him reason to observe that he might repeat\nthis.\n\n'I say, which I did not believe, - the time was likely to come,\nwhen such an understanding as we have now arrived at, would be\nserviceable.'\n\n'Serviceable to whom, Sir?' she demanded scornfully.\n\n'To you. I will not add to myself, as warning me to refrain even\nfrom that limited commendation of Mr Dombey, in which I can honestly\nindulge, in order that I may not have the misfortune of saying\nanything distasteful to one whose aversion and contempt,' with great\nexpression, 'are so keen.'\n\n'Is it honest in you, Sir,' said Edith, 'to confess to your\n\"limited commendation,\" and to speak in that tone of disparagement,\neven of him: being his chief counsellor and flatterer!'\n\n'Counsellor, - yes,' said Carker. 'Flatterer, - no. A little\nreservation I fear I must confess to. But our interest and convenience\ncommonly oblige many of us to make professions that we cannot feel. We\nhave partnerships of interest and convenience, friendships of interest\nand convenience, dealings of interest and convenience, marriages of\ninterest and convenience, every day.'\n\nShe bit her blood-red lip; but without wavering in the dark, stern\nwatch she kept upon him.\n\n'Madam,' said Mr Carker, sitting down in a chair that was near her,\nwith an air of the most profound and most considerate respect, 'why\nshould I hesitate now, being altogether devoted to your service, to\nspeak plainly? It was natural that a lady, endowed as you are, should\nthink it feasible to change her husband's character in some respects,\nand mould him to a better form.'\n\n'It was not natural to me, Sir,' she rejoined. 'I had never any\nexpectation or intention of that kind.'\n\nThe proud undaunted face showed him it was resolute to wear no mask\nhe offered, but was set upon a reckless disclosure of itself,\nindifferent to any aspect in which it might present itself to such as\nhe.\n\n'At least it was natural,' he resumed, 'that you should deem it\nquite possible to live with Mr Dombey as his wife, at once without\nsubmitting to him, and without coming into such violent collision with\nhim. But, Madam, you did not know Mr Dombey (as you have since\nascertained), when you thought that. You did not know how exacting and\nhow proud he is, or how he is, if I may say so, the slave of his own\ngreatness, and goes yoked to his own triumphal car like a beast of\nburden, with no idea on earth but that it is behind him and is to be\ndrawn on, over everything and through everything.'\n\nHis teeth gleamed through his malicious relish of this conceit, as\nhe went on talking:\n\n'Mr Dombey is really capable of no more true consideration for you,\nMadam, than for me. The comparison is an extreme one; I intend it to\nbe so; but quite just. Mr Dombey, in the plenitude of his power, asked\nme - I had it from his own lips yesterday morning - to be his\ngo-between to you, because he knows I am not agreeable to you, and\nbecause he intends that I shall be a punishment for your contumacy;\nand besides that, because he really does consider, that I, his paid\nservant, am an ambassador whom it is derogatory to the dignity - not\nof the lady to whom I have the happiness of speaking; she has no\nexistence in his mind - but of his wife, a part of himself, to\nreceive. You may imagine how regardless of me, how obtuse to the\npossibility of my having any individual sentiment or opinion he is,\nwhen he tells me, openly, that I am so employed. You know how\nperfectly indifferent to your feelings he is, when he threatens you\nwith such a messenger. As you, of course, have not forgotten that he\ndid.'\n\nShe watched him still attentively. But he watched her too; and he\nsaw that this indication of a knowledge on his part, of something that\nhad passed between herself and her husband, rankled and smarted in her\nhaughty breast, like a poisoned arrow.\n\n'I do not recall all this to widen the breach between yourself and\nMr Dombey, Madam - Heaven forbid! what would it profit me? - but as an\nexample of the hopelessness of impressing Mr Dombey with a sense that\nanybody is to be considered when he is in question. We who are about\nhim, have, in our various positions, done our part, I daresay, to\nconfirm him in his way of thinking; but if we had not done so, others\nwould - or they would not have been about him; and it has always been,\nfrom the beginning, the very staple of his life. Mr Dombey has had to\ndeal, in short, with none but submissive and dependent persons, who\nhave bowed the knee, and bent the neck, before him. He has never known\nwhat it is to have angry pride and strong resentment opposed to him.'\n\n'But he will know it now!' she seemed to say; though her lips did\nnot part, nor her eyes falter. He saw the soft down tremble once\nagain, and he saw her lay the plumage of the beautiful bird against\nher bosom for a moment; and he unfolded one more ring of the coil into\nwhich he had gathered himself.\n\n'Mr Dombey, though a most honourable gentleman,' he said, 'is so\nprone to pervert even facts to his own view, when he is at all\nopposed, in consequence of the warp in his mind, that he - can I give\na better instance than this! - he sincerely believes (you will excuse\nthe folly of what I am about to say; it not being mine) that his\nsevere expression of opinion to his present wife, on a certain special\noccasion she may remember, before the lamented death of Mrs Skewton,\nproduced a withering effect, and for the moment quite subdued her!'\n\nEdith laughed. How harshly and unmusically need not be described.\nIt is enough that he was glad to hear her.\n\n'Madam,' he resumed, 'I have done with this. Your own opinions are\nso strong, and, I am persuaded, so unalterable,' he repeated those\nwords slowly and with great emphasis, 'that I am almost afraid to\nincur your displeasure anew, when I say that in spite of these defects\nand my full knowledge of them, I have become habituated to Mr Dombey,\nand esteem him. But when I say so, it is not, believe me, for the mere\nsake of vaunting a feeling that is so utterly at variance with your\nown, and for which you can have no sympathy' - oh how distinct and\nplain and emphasized this was! - 'but to give you an assurance of the\nzeal with which, in this unhappy matter, I am yours, and the\nindignation with which I regard the part I am to fill!'\n\nShe sat as if she were afraid to take her eyes from his face.\n\nAnd now to unwind the last ring of the coil!\n\n'It is growing late,' said Carker, after a pause, 'and you are, as\nyou said, fatigued. But the second object of this interview, I must\nnot forget. I must recommend you, I must entreat you in the most\nearnest manner, for sufficient reasons that I have, to be cautious in\nyour demonstrations of regard for Miss Dombey.'\n\n'Cautious! What do you mean?'\n\n'To be careful how you exhibit too much affection for that young\nlady.'\n\n'Too much affection, Sir!' said Edith, knitting her broad brow and\nrising. 'Who judges my affection, or measures it out? You?'\n\n'It is not I who do so.' He was, or feigned to be, perplexed.\n\n'Who then?'\n\n'Can you not guess who then?'\n\n'I do not choose to guess,' she answered.\n\n'Madam,' he said after a little hesitation; meantime they had been,\nand still were, regarding each other as before; 'I am in a difficulty\nhere. You have told me you will receive no message, and you have\nforbidden me to return to that subject; but the two subjects are so\nclosely entwined, I find, that unless you will accept this vague\ncaution from one who has now the honour to possess your confidence,\nthough the way to it has been through your displeasure, I must violate\nthe injunction you have laid upon me.'\n\n'You know that you are free to do so, Sir,' said Edith. 'Do it.'\n\nSo pale, so trembling, so impassioned! He had not miscalculated the\neffect then!\n\n'His instructions were,' he said, in a low voice, 'that I should\ninform you that your demeanour towards Miss Dombey is not agreeable to\nhim. That it suggests comparisons to him which are not favourable to\nhimself. That he desires it may be wholly changed; and that if you are\nin earnest, he is confident it will be; for your continued show of\naffection will not benefit its object.'\n\n'That is a threat,' she said.\n\n'That is a threat,' he answered, in his voiceless manner of assent:\nadding aloud, 'but not directed against you.'\n\nProud, erect, and dignified, as she stood confronting him; and\nlooking through him as she did, with her full bright flashing eye; and\nsmiling, as she was, with scorn and bitterness; she sunk as if the\nground had dropped beneath her, and in an instant would have fallen on\nthe floor, but that he caught her in his arms. As instantaneously she\nthrew him off, the moment that he touched her, and, drawing back,\nconfronted him again, immoveable, with her hand stretched out.\n\n'Please to leave me. Say no more to-night.'\n\n'I feel the urgency of this,' said Mr Carker, 'because it is\nimpossible to say what unforeseen consequences might arise, or how\nsoon, from your being unacquainted with his state of mind. I\nunderstand Miss Dombey is concerned, now, at the dismissal of her old\nservant, which is likely to have been a minor consequence in itself.\nYou don't blame me for requesting that Miss Dombey might not be\npresent. May I hope so?'\n\n'I do not. Please to leave me, Sir.'\n\n'I knew that your regard for the young lady, which is very sincere\nand strong, I am well persuaded, would render it a great unhappiness\nto you, ever to be a prey to the reflection that you had injured her\nposition and ruined her future hopes,' said Carker hurriedly, but\neagerly.\n\n'No more to-night. Leave me, if you please.'\n\n'I shall be here constantly in my attendance upon him, and in the\ntransaction of business matters. You will allow me to see you again,\nand to consult what should be done, and learn your wishes?'\n\nShe motioned him towards the door.\n\n'I cannot even decide whether to tell him I have spoken to you yet;\nor to lead him to suppose that I have deferred doing so, for want of\nopportunity, or for any other reason. It will be necessary that you\nshould enable me to consult with you very soon.\n\n'At any time but now,' she answered.\n\n'You will understand, when I wish to see you, that Miss Dombey is\nnot to be present; and that I seek an interview as one who has the\nhappiness to possess your confidence, and who comes to render you\nevery assistance in his power, and, perhaps, on many occasions, to\nward off evil from her?'\n\nLooking at him still with the same apparent dread of releasing him\nfor a moment from the influence of her steady gaze, whatever that\nmight be, she answered, 'Yes!' and once more bade him go.\n\nHe bowed, as if in compliance; but turning back, when he had nearly\nreached the door, said:\n\n'I am forgiven, and have explained my fault. May I - for Miss\nDombey's sake, and for my own - take your hand before I go?'\n\nShe gave him the gloved hand she had maimed last night. He took it\nin one of his, and kissed it, and withdrew. And when he had closed the\ndoor, he waved the hand with which he had taken hers, and thrust it in\nhis breast.\n\nEdith saw no one that night, but locked her door, and kept herself\n\nalone.\n\nShe did not weep; she showed no greater agitation, outwardly, than\nwhen she was riding home. She laid as proud a head upon her pillow as\nshe had borne in her carriage; and her prayer ran thus:\n\n'May this man be a liar! For if he has spoken truth, she is lost to\nme, and I have no hope left!'\n\nThis man, meanwhile, went home musing to bed, thinking, with a\ndainty pleasure, how imperious her passion was, how she had sat before\nhim in her beauty, with the dark eyes that had never turned away but\nonce; how the white down had fluttered; how the bird's feathers had\nbeen strewn upon the ground.\n\n\n\nCHAPTER 46.\n\nRecognizant and Reflective\n\n\n\nAmong sundry minor alterations in Mr Carker's life and habits that\nbegan to take place at this time, none was more remarkable than the\nextraordinary diligence with which he applied himself to business, and\nthe closeness with which he investigated every detail that the affairs\nof the House laid open to him. Always active and penetrating in such\nmatters, his lynx-eyed vigilance now increased twenty-fold. Not only\ndid his weary watch keep pace with every present point that every day\npresented to him in some new form, but in the midst of these\nengrossing occupations he found leisure - that is, he made it - to\nreview the past transactions of the Firm, and his share in them,\nduring a long series of years. Frequently when the clerks were all\ngone, the offices dark and empty, and all similar places of business\nshut up, Mr Carker, with the whole anatomy of the iron room laid bare\nbefore him, would explore the mysteries of books and papers, with the\npatient progress of a man who was dissecting the minutest nerves and\nfibres of his subject. Perch, the messenger, who usually remained on\nthese occasions, to entertain himself with the perusal of the Price\nCurrent by the light of one candle, or to doze over the fire in the\nouter office, at the imminent risk every moment of diving head\nforemost into the coal-box, could not withhold the tribute of his\nadmiration from this zealous conduct, although it much contracted his\ndomestic enjoyments; and again, and again, expatiated to Mrs Perch\n(now nursing twins) on the industry and acuteness of their managing\ngentleman in the City.\n\nThe same increased and sharp attention that Mr Carker bestowed on\nthe business of the House, he applied to his own personal affairs.\nThough not a partner in the concern - a distinction hitherto reserved\nsolely to inheritors of the great name of Dombey - he was in the\nreceipt of some percentage on its dealings; and, participating in all\nits facilities for the employment of money to advantage, was\nconsidered, by the minnows among the tritons of the East, a rich man.\nIt began to be said, among these shrewd observers, that Jem Carker, of\nDombey's, was looking about him to see what he was worth; and that he\nwas calling in his money at a good time, like the long-headed fellow\nhe was; and bets were even offered on the Stock Exchange that Jem was\ngoing to marry a rich widow.\n\nYet these cares did not in the least interfere with Mr Carker's\nwatching of his chief, or with his cleanness, neatness, sleekness, or\nany cat-like quality he possessed. It was not so much that there was a\nchange in him, in reference to any of his habits, as that the whole\nman was intensified. Everything that had been observable in him\nbefore, was observable now, but with a greater amount of\nconcentration. He did each single thing, as if he did nothing else - a\npretty certain indication in a man of that range of ability and\npurpose, that he is doing something which sharpens and keeps alive his\nkeenest powers.\n\nThe only decided alteration in him was, that as he rode to and fro\nalong the streets, he would fall into deep fits of musing, like that\nin which he had come away from Mr Dombey's house, on the morning of\nthat gentleman's disaster. At such times, he would keep clear of the\nobstacles in his way, mechanically; and would appear to see and hear\nnothing until arrival at his destination, or some sudden chance or\neffort roused him.\n\nWalking his white-legged horse thus, to the counting-house of\nDombey and Son one day, he was as unconscious of the observation of\ntwo pairs of women's eyes, as of the fascinated orbs of Rob the\nGrinder, who, in waiting a street's length from the appointed place,\nas a demonstration of punctuality, vainly touched and retouched his\nhat to attract attention, and trotted along on foot, by his master's\nside, prepared to hold his stirrup when he should alight.\n\n'See where he goes!' cried one of these two women, an old creature,\nwho stretched out her shrivelled arm to point him out to her\ncompanion, a young woman, who stood close beside her, withdrawn like\nherself into a gateway.\n\nMrs Brown's daughter looked out, at this bidding on the part of Mrs\nBrown; and there were wrath and vengeance in her face.\n\n'I never thought to look at him again,' she said, in a low voice;\n'but it's well I should, perhaps. I see. I see!'\n\n'Not changed!' said the old woman, with a look of eager malice.\n\n'He changed!' returned the other. 'What for? What has he suffered?\nThere is change enough for twenty in me. Isn't that enough?'\n\n'See where he goes!' muttered the old woman, watching her daughter\nwith her red eyes; 'so easy and so trim a-horseback, while we are in\nthe mud.'\n\n'And of it,' said her daughter impatiently. 'We are mud, underneath\nhis horse's feet. What should we be?'\n\nIn the intentness with which she looked after him again, she made a\nhasty gesture with her hand when the old woman began to reply, as if\nher view could be obstructed by mere sound. Her mother watching her,\nand not him, remained silent; until her kindling glance subsided, and\nshe drew a long breath, as if in the relief of his being gone.\n\n'Deary!' said the old woman then. 'Alice! Handsome gall Ally!' She\ngently shook her sleeve to arouse her attention. 'Will you let him go\nlike that, when you can wring money from him? Why, it's a wickedness,\nmy daughter.'\n\n'Haven't I told you, that I will not have money from him?' she\nreturned. 'And don't you yet believe me? Did I take his sister's\nmoney? Would I touch a penny, if I knew it, that had gone through his\nwhite hands - unless it was, indeed, that I could poison it, and send\nit back to him? Peace, mother, and come away.\n\n'And him so rich?' murmured the old woman. 'And us so poor!'\n\n'Poor in not being able to pay him any of the harm we owe him,'\nreturned her daughter. 'Let him give me that sort of riches, and I'll\ntake them from him, and use them. Come away. Its no good looking at\nhis horse. Come away, mother!'\n\nBut the old woman, for whom the spectacle of Rob the Grinder\nreturning down the street, leading the riderless horse, appeared to\nhave some extraneous interest that it did not possess in itself,\nsurveyed that young man with the utmost earnestness; and seeming to\nhave whatever doubts she entertained, resolved as he drew nearer,\nglanced at her daughter with brightened eyes and with her finger on\nher lip, and emerging from the gateway at the moment of his passing,\ntouched him on the shoulder.\n\n'Why, where's my sprightly Rob been, all this time!' she said, as\nhe turned round.\n\nThe sprightly Rob, whose sprightliness was very much diminished by\nthe salutation, looked exceedingly dismayed, and said, with the water\nrising in his eyes:\n\n'Oh! why can't you leave a poor cove alone, Misses Brown, when he's\ngetting an honest livelihood and conducting himself respectable? What\ndo you come and deprive a cove of his character for, by talking to him\nin the streets, when he's taking his master's horse to a honest stable\n- a horse you'd go and sell for cats' and dogs' meat if you had your\nway! Why, I thought,' said the Grinder, producing his concluding\nremark as if it were the climax of all his injuries, 'that you was\ndead long ago!'\n\n'This is the way,' cried the old woman, appealing to her daughter,\n'that he talks to me, who knew him weeks and months together, my\ndeary, and have stood his friend many and many a time among the\npigeon-fancying tramps and bird-catchers.'\n\n'Let the birds be, will you, Misses Brown?' retorted Rob, in a tone\nof the acutest anguish. 'I think a cove had better have to do with\nlions than them little creeturs, for they're always flying back in\nyour face when you least expect it. Well, how d'ye do and what do you\nwant?' These polite inquiries the Grinder uttered, as it were under\nprotest, and with great exasperation and vindictiveness.\n\n'Hark how he speaks to an old friend, my deary!' said Mrs Brown,\nagain appealing to her daughter. 'But there's some of his old friends\nnot so patient as me. If I was to tell some that he knows, and has\nspotted and cheated with, where to find him - '\n\n'Will you hold your tongue, Misses Brown?' interrupted the\nmiserable Grinder, glancing quickly round, as though he expected to\nsee his master's teeth shining at his elbow. 'What do you take a\npleasure in ruining a cove for? At your time of life too! when you\nought to be thinking of a variety of things!'\n\n'What a gallant horse!' said the old woman, patting the animal's\nneck.\n\n'Let him alone, will you, Misses Brown?' cried Rob, pushing away\nher hand. 'You're enough to drive a penitent cove mad!'\n\n'Why, what hurt do I do him, child?' returned the old woman.\n\n'Hurt?' said Rob. 'He's got a master that would find it out if he\nwas touched with a straw.' And he blew upon the place where the old\nwoman's hand had rested for a moment, and smoothed it gently with his\nfinger, as if he seriously believed what he said.\n\nThe old woman looking back to mumble and mouth at her daughter, who\nfollowed, kept close to Rob's heels as he walked on with the bridle in\nhis hand; and pursued the conversation.\n\n'A good place, Rob, eh?' said she. 'You're in luck, my child.'\n\n'Oh don't talk about luck, Misses Brown,' returned the wretched\nGrinder, facing round and stopping. 'If you'd never come, or if you'd\ngo away, then indeed a cove might be considered tolerable lucky. Can't\nyou go along, Misses Brown, and not foller me!' blubbered Rob, with\nsudden defiance. 'If the young woman's a friend of yours, why don't\nshe take you away, instead of letting you make yourself so\ndisgraceful!'\n\n'What!' croaked the old woman, putting her face close to his, with\na malevolent grin upon it that puckered up the loose skin down in her\nvery throat. 'Do you deny your old chum! Have you lurked to my house\nfifty times, and slept sound in a corner when you had no other bed but\nthe paving-stones, and do you talk to me like this! Have I bought and\nsold with you, and helped you in my way of business, schoolboy, sneak,\nand what not, and do you tell me to go along? Could I raise a crowd of\nold company about you to-morrow morning, that would follow you to ruin\nlike copies of your own shadow, and do you turn on me with your bold\nlooks! I'll go. Come, Alice.'\n\n'Stop, Misses Brown!' cried the distracted Grinder. 'What are you\ndoing of? Don't put yourself in a passion! Don't let her go, if you\nplease. I haven't meant any offence. I said \"how d'ye do,\" at first,\ndidn't I? But you wouldn't answer. How you do? Besides,' said Rob\npiteously, 'look here! How can a cove stand talking in the street with\nhis master's prad a wanting to be took to be rubbed down, and his\nmaster up to every individgle thing that happens!'\n\nThe old woman made a show of being partially appeased, but shook\nher head, and mouthed and muttered still.\n\n'Come along to the stables, and have a glass of something that's\ngood for you, Misses Brown, can't you?' said Rob, 'instead of going\non, like that, which is no good to you, nor anybody else. Come along\nwith her, will you be so kind?' said Rob. 'I'm sure I'm delighted to\nsee her, if it wasn't for the horse!'\n\nWith this apology, Rob turned away, a rueful picture of despair,\nand walked his charge down a bye street' The old woman, mouthing at\nher daughter, followed close upon him. The daughter followed.\n\nTurning into a silent little square or court-yard that had a great\nchurch tower rising above it, and a packer's warehouse, and a\nbottle-maker's warehouse, for its places of business, Rob the Grinder\ndelivered the white-legged horse to the hostler of a quaint stable at\nthe corner; and inviting Mrs Brown and her daughter to seat themselves\nupon a stone bench at the gate of that establishment, soon reappeared\nfrom a neighbouring public-house with a pewter measure and a glass.\n\n'Here's master - Mr Carker, child!' said the old woman, slowly, as\nher sentiment before drinking. 'Lord bless him!'\n\n'Why, I didn't tell you who he was,' observed Rob, with staring\neyes.\n\n'We know him by sight,' said Mrs Brown, whose working mouth and\nnodding head stopped for the moment, in the fixedness of her\nattention. 'We saw him pass this morning, afore he got off his horse;\nwhen you were ready to take it.'\n\n'Ay, ay,' returned Rob, appearing to wish that his readiness had\ncarried him to any other place. - 'What's the matter with her? Won't\nshe drink?'\n\nThis inquiry had reference to Alice, who, folded in her cloak, sat\na little apart, profoundly inattentive to his offer of the replenished\nglass.\n\nThe old woman shook her head. 'Don't mind her,' she said; 'she's a\nstrange creetur, if you know'd her, Rob. But Mr Carker\n\n'Hush!' said Rob, glancing cautiously up at the packer's, and at\nthe bottle-maker's, as if, from any one of the tiers of warehouses, Mr\nCarker might be looking down. 'Softly.'\n\n'Why, he ain't here!' cried Mrs Brown.\n\n'I don't know that,' muttered Rob, whose glance even wandered to\nthe church tower, as if he might be there, with a supernatural power\nof hearing.\n\n'Good master?' inquired Mrs Brown.\n\nRob nodded; and added, in a low voice, 'precious sharp.'\n\n'Lives out of town, don't he, lovey?' said the old woman.\n\n'When he's at home,' returned Rob; 'but we don't live at home just\nnow.'\n\n'Where then?' asked the old woman.\n\n'Lodgings; up near Mr Dombey's,' returned Rob.\n\nThe younger woman fixed her eyes so searchingly upon him, and so\nsuddenly, that Rob was quite confounded, and offered the glass again,\nbut with no more effect upon her than before.\n\n'Mr Dombey - you and I used to talk about him, sometimes, you\nknow,' said Rob to Mrs Brown. 'You used to get me to talk about him.'\n\nThe old woman nodded.\n\n'Well, Mr Dombey, he's had a fall from his horse,' said Rob,\nunwillingly; 'and my master has to be up there, more than usual,\neither with him, or Mrs Dombey, or some of 'em; and so we've come to\ntown.'\n\n'Are they good friends, lovey?'asked the old woman.\n\n'Who?' retorted Rob.\n\n'He and she?'\n\n'What, Mr and Mrs Dombey?' said Rob. 'How should I know!'\n\n'Not them - Master and Mrs Dombey, chick,' replied the old woman,\ncoaxingly.\n\n'I don't know,' said Rob, looking round him again. 'I suppose so.\nHow curious you are, Misses Brown! Least said, soonest mended.'\n\n'Why there's no harm in it!' exclaimed the old woman, with a laugh,\nand a clap of her hands. 'Sprightly Rob, has grown tame since he has\nbeen well off! There's no harm in It.\n\n'No, there's no harm in it, I know,' returned Rob, with the same\ndistrustful glance at the packer's and the bottle-maker's, and the\nchurch; 'but blabbing, if it's only about the number of buttons on my\nmaster's coat, won't do. I tell you it won't do with him. A cove had\nbetter drown himself. He says so. I shouldn't have so much as told you\nwhat his name was, if you hadn't known it. Talk about somebody else.'\n\nAs Rob took another cautious survey of the yard, the old woman made\na secret motion to her daughter. It was momentary, but the daughter,\nwith a slight look of intelligence, withdrew her eyes from the boy's\nface, and sat folded in her cloak as before.\n\n'Rob, lovey!' said the old woman, beckoning him to the other end of\nthe bench. 'You were always a pet and favourite of mine. Now, weren't\nyou? Don't you know you were?'\n\n'Yes, Misses Brown,' replied the Grinder, with a very bad grace.\n\n'And you could leave me!' said the old woman, flinging her arms\nabout his neck. 'You could go away, and grow almost out of knowledge,\nand never come to tell your poor old friend how fortunate you were,\nproud lad! Oho, Oho!'\n\n'Oh here's a dreadful go for a cove that's got a master wide awake\nin the neighbourhood!' exclaimed the wretched Grinder. 'To be howled\nover like this here!'\n\n'Won't you come and see me, Robby?' cried Mrs Brown. 'Oho, won't\nyou ever come and see me?'\n\n'Yes, I tell you! Yes, I will!' returned the Grinder.\n\n'That's my own Rob! That's my lovey!' said Mrs Brown, drying the\ntears upon her shrivelled face, and giving him a tender squeeze. 'At\nthe old place, Rob?'\n\n'Yes,' replied the Grinder.\n\n'Soon, Robby dear?' cried Mrs Brown; 'and often?'\n\n'Yes. Yes. Yes,' replied Rob. 'I will indeed, upon my soul and\nbody.'\n\n'And then,' said Mrs Brown, with her arms uplifted towards the sky,\nand her head thrown back and shaking, 'if he's true to his word, I'll\nnever come a-near him though I know where he is, and never breathe a\nsyllable about him! Never!'\n\nThis ejaculation seemed a drop of comfort to the miserable Grinder,\nwho shook Mrs Brown by the hand upon it, and implored her with tears\nin his eyes, to leave a cove and not destroy his prospects. Mrs Brown,\nwith another fond embrace, assented; but in the act of following her\ndaughter, turned back, with her finger stealthily raised, and asked in\na hoarse whisper for some money.\n\n'A shilling, dear!' she said, with her eager avaricious face, 'or\nsixpence! For old acquaintance sake. I'm so poor. And my handsome gal'\n- looking over her shoulder - 'she's my gal, Rob - half starves me.\n\nBut as the reluctant Grinder put it in her hand, her daughter,\ncoming quietly back, caught the hand in hen, and twisted out the coin.\n\n'What,' she said, 'mother! always money! money from the first, and\nto the last' Do you mind so little what I said but now? Here. Take\nit!'\n\nThe old woman uttered a moan as the money was restored, but without\nin any other way opposing its restoration, hobbled at her daughter's\nside out of the yard, and along the bye street upon which it opened.\nThe astonished and dismayed Rob staring after them, saw that they\nstopped, and fell to earnest conversation very soon; and more than\nonce observed a darkly threatening action of the younger woman's hand\n(obviously having reference to someone of whom they spoke), and a\ncrooning feeble imitation of it on the part of Mrs Brown, that made\nhim earnestly hope he might not be the subject of their discourse.\n\nWith the present consolation that they were gone, and with the\nprospective comfort that Mrs Brown could not live for ever, and was\nnot likely to live long to trouble him, the Grinder, not otherwise\nregretting his misdeeds than as they were attended with such\ndisagreeable incidental consequences, composed his ruffled features to\na more serene expression by thinking of the admirable manner in which\nhe had disposed of Captain Cuttle (a reflection that seldom failed to\nput him in a flow of spirits), and went to the Dombey Counting House\nto receive his master's orders.\n\nThere his master, so subtle and vigilant of eye, that Rob quaked\nbefore him, more than half expecting to be taxed with Mrs Brown, gave\nhim the usual morning's box of papers for Mr Dombey, and a note for\nMrs Dombey: merely nodding his head as an enjoinder to be careful, and\nto use dispatch - a mysterious admonition, fraught in the Grinder's\nimagination with dismal warnings and threats; and more powerful with\nhim than any words.\n\nAlone again, in his own room, Mr Carker applied himself to work,\nand worked all day. He saw many visitors; overlooked a number of\ndocuments; went in and out, to and from, sundry places of mercantile\nresort; and indulged in no more abstraction until the day's business\nwas done. But, when the usual clearance of papers from his table was\nmade at last, he fell into his thoughtful mood once more.\n\nHe was standing in his accustomed place and attitude, with his eyes\nintently fixed upon the ground, when his brother entered to bring back\nsome letters that had been taken out in the course of the day. He put\nthem quietly on the table, and was going immediately, when Mr Carker\nthe Manager, whose eyes had rested on him, on his entrance, as if they\nhad all this time had him for the subject of their contemplation,\ninstead of the office-floor, said:\n\n'Well, John Carker, and what brings you here?'\n\nHis brother pointed to the letters, and was again withdrawing.\n\n'I wonder,' said the Manager, 'that you can come and go, without\ninquiring how our master is'.\n\n'We had word this morning in the Counting House, that Mr Dombey was\ndoing well,' replied his brother.\n\n'You are such a meek fellow,' said the Manager, with a smile, -\n'but you have grown so, in the course of years - that if any harm came\nto him, you'd be miserable, I dare swear now.'\n\n'I should be truly sorry, James,' returned the other.\n\n'He would be sorry!' said the Manager, pointing at him, as if there\nwere some other person present to whom he was appealing. 'He would be\ntruly sorry! This brother of mine! This junior of the place, this\nslighted piece of lumber, pushed aside with his face to the wall, like\na rotten picture, and left so, for Heaven knows how many years he's\nall gratitude and respect, and devotion too, he would have me\nbelieve!'\n\n'I would have you believe nothing, James,' returned the other. 'Be\nas just to me as you would to any other man below you. You ask a\nquestion, and I answer it.'\n\n'And have you nothing, Spaniel,' said the Manager, with unusual\nirascibility, 'to complain of in him? No proud treatment to resent, no\ninsolence, no foolery of state, no exaction of any sort! What the\ndevil! are you man or mouse?'\n\n'It would be strange if any two persons could be together for so\nmany years, especially as superior and inferior, without each having\nsomething to complain of in the other - as he thought, at all events,\nreplied John Carker. 'But apart from my history here - '\n\n'His history here!' exclaimed the Manager. 'Why, there it is. The\nvery fact that makes him an extreme case, puts him out of the whole\nchapter! Well?'\n\n'Apart from that, which, as you hint, gives me a reason to be\nthankful that I alone (happily for all the rest) possess, surely there\nis no one in the House who would not say and feel at least as much.\nYou do not think that anybody here would be indifferent to a mischance\nor misfortune happening to the head of the House, or anything than\ntruly sorry for it?'\n\n'You have good reason to be bound to him too!' said the Manager,\ncontemptuously. 'Why, don't you believe that you are kept here, as a\ncheap example, and a famous instance of the clemency of Dombey and\nSon, redounding to the credit of the illustrious House?'\n\n'No,' replied his brother, mildly, 'I have long believed that I am\nkept here for more kind and disinterested reasons.\n\n'But you were going,' said the Manager, with the snarl of a\ntiger-cat, 'to recite some Christian precept, I observed.'\n\n'Nay, James,' returned the other, 'though the tie of brotherhood\nbetween us has been long broken and thrown away - '\n\n'Who broke it, good Sir?' said the Manager.\n\n'I, by my misconduct. I do not charge it upon you.'\n\nThe Manager replied, with that mute action of his bristling mouth,\n'Oh, you don't charge it upon me!' and bade him go on.\n\n'I say, though there is not that tie between us, do not, I entreat,\nassail me with unnecessary taunts, or misinterpret what I say, or\nwould say. I was only going to suggest to you that it would be a\nmistake to suppose that it is only you, who have been selected here,\nabove all others, for advancement, confidence and distinction\n(selected, in the beginning, I know, for your great ability and\ntrustfulness), and who communicate more freely with Mr Dombey than\nanyone, and stand, it may be said, on equal terms with him, and have\nbeen favoured and enriched by him - that it would be a mistake to\nsuppose that it is only you who are tender of his welfare and\nreputation. There is no one in the House, from yourself down to the\nlowest, I sincerely believe, who does not participate in that\nfeeling.'\n\n'You lie!' said the Manager, red with sudden anger. 'You're a\nhypocrite, John Carker, and you lie.'\n\n'James!' cried the other, flushing in his turn. 'What do you mean\nby these insulting words? Why do you so basely use them to me,\nunprovoked?'\n\n'I tell you,' said the Manager, 'that your hypocrisy and meekness -\nthat all the hypocrisy and meekness of this place - is not worth that\nto me,' snapping his thumb and finger, 'and that I see through it as\nif it were air! There is not a man employed here, standing between\nmyself and the lowest in place (of whom you are very considerate, and\nwith reason, for he is not far off), who wouldn't be glad at heart to\nsee his master humbled: who does not hate him, secretly: who does not\nwish him evil rather than good: and who would not turn upon him, if he\nhad the power and boldness. The nearer to his favour, the nearer to\nhis insolence; the closer to him, the farther from him. That's the\ncreed here!'\n\n'I don't know,' said his brother, whose roused feelings had soon\nyielded to surprise, 'who may have abused your ear with such\nrepresentations; or why you have chosen to try me, rather than\nanother. But that you have been trying me, and tampering with me, I am\nnow sure. You have a different manner and a different aspect from any\nthat I ever saw m you. I will only say to you, once more, you are\ndeceived.'\n\n'I know I am,' said the Manager. 'I have told you so.'\n\n'Not by me,' returned his brother. 'By your informant, if you have\none. If not, by your own thoughts and suspicions.'\n\n'I have no suspicions,' said the Manager. 'Mine are certainties.\nYou pusillanimous, abject, cringing dogs! All making the same show,\nall canting the same story, all whining the same professions, all\nharbouring the same transparent secret.'\n\nHis brother withdrew, without saying more, and shut the door as he\nconcluded. Mr Carker the Manager drew a chair close before the fire,\nand fell to beating the coals softly with the poker.\n\n'The faint-hearted, fawning knaves,' he muttered, with his two\nshining rows of teeth laid bare. 'There's not one among them, who\nwouldn't feign to be so shocked and outraged - ! Bah! There's not one\namong them, but if he had at once the power, and the wit and daring to\nuse it, would scatter Dombey's pride and lay it low, as ruthlessly as\nI rake out these ashes.'\n\nAs he broke them up and strewed them in the grate, he looked on\nwith a thoughtful smile at what he was doing. 'Without the same queen\nbeckoner too!' he added presently; 'and there is pride there, not to\nbe forgotten - witness our own acquaintance!' With that he fell into a\ndeeper reverie, and sat pondering over the blackening grate, until he\nrose up like a man who had been absorbed in a book, and looking round\nhim took his hat and gloves, went to where his horse was waiting,\nmounted, and rode away through the lighted streets, for it was\nevening.\n\nHe rode near Mr Dombey's house; and falling into a walk as he\napproached it, looked up at the windows The window where he had once\nseen Florence sitting with her dog attracted his attention first,\nthough there was no light in it; but he smiled as he carried his eyes\nup the tall front of the house, and seemed to leave that object\nsuperciliously behind.\n\n'Time was,' he said, 'when it was well to watch even your rising\nlittle star, and know in what quarter there were clouds, to shadow you\nif needful. But a planet has arisen, and you are lost in its light.'\n\nHe turned the white-legged horse round the street corner, and\nsought one shining window from among those at the back of the house.\nAssociated with it was a certain stately presence, a gloved hand, the\nremembrance how the feathers of a beautiful bird's wing had been\nshowered down upon the floor, and how the light white down upon a robe\nhad stirred and rustled, as in the rising of a distant storm. These\nwere the things he carried with him as he turned away again, and rode\nthrough the darkening and deserted Parks at a quick rate.\n\nIn fatal truth, these were associated with a woman, a proud woman,\nwho hated him, but who by slow and sure degrees had been led on by his\ncraft, and her pride and resentment, to endure his company, and little\nby little to receive him as one who had the privilege to talk to her\nof her own defiant disregard of her own husband, and her abandonment\nof high consideration for herself. They were associated with a woman\nwho hated him deeply, and who knew him, and who mistrusted him because\nshe knew him, and because he knew her; but who fed her fierce\nresentment by suffering him to draw nearer and yet nearer to her every\nday, in spite of the hate she cherished for him. In spite of it! For\nthat very reason; since in its depths, too far down for her\nthreatening eye to pierce, though she could see into them dimly, lay\nthe dark retaliation, whose faintest shadow seen once and shuddered\nat, and never seen again, would have been sufficient stain upon her\nsoul.\n\nDid the phantom of such a woman flit about him on his ride; true to\nthe reality, and obvious to him?\n\nYes. He saw her in his mind, exactly as she was. She bore him\ncompany with her pride, resentment, hatred, all as plain to him as her\nbeauty; with nothing plainer to him than her hatred of him. He saw her\nsometimes haughty and repellent at his side, and some times down among\nhis horse's feet, fallen and in the dust. But he always saw her as she\nwas, without disguise, and watched her on the dangerous way that she\nwas going.\n\nAnd when his ride was over, and he was newly dressed, and came into\nthe light of her bright room with his bent head, soft voice, and\nsoothing smile, he saw her yet as plainly. He even suspected the\nmystery of the gloved hand, and held it all the longer in his own for\nthat suspicion. Upon the dangerous way that she was going, he was,\nstill; and not a footprint did she mark upon it, but he set his own\nthere, straight'\n\n\n\nCHAPTER 47.\n\nThe Thunderbolt\n\n\n\nThe barrier between Mr Dombey and his wife was not weakened by\ntime. Ill-assorted couple, unhappy in themselves and in each other,\nbound together by no tie but the manacle that joined their fettered\nhands, and straining that so harshly, in their shrinking asunder, that\nit wore and chafed to the bone, Time, consoler of affliction and\nsoftener of anger, could do nothing to help them. Their pride, however\ndifferent in kind and object, was equal in degree; and, in their\nflinty opposition, struck out fire between them which might smoulder\nor might blaze, as circumstances were, but burned up everything within\ntheir mutual reach, and made their marriage way a road of ashes.\n\nLet us be just to him. In the monstrous delusion of his life,\nswelling with every grain of sand that shifted in its glass, he urged\nher on, he little thought to what, or considered how; but still his\nfeeling towards her, such as it was, remained as at first. She had the\ngrand demerit of unaccountably putting herself in opposition to the\nrecognition of his vast importance, and to the acknowledgment of her\ncomplete submission to it, and so far it was necessary to correct and\nreduce her; but otherwise he still considered her, in his cold way, a\nlady capable of doing honour, if she would, to his choice and name,\nand of reflecting credit on his proprietorship.\n\nNow, she, with all her might of passionate and proud resentment,\nbent her dark glance from day to day, and hour to hour - from that\nnight in her own chamber, when she had sat gazing at the shadows on\nthe wall, to the deeper night fast coming - upon one figure directing\na crowd of humiliations and exasperations against her; and that\nfigure, still her husband's.\n\nWas Mr Dombey's master-vice, that ruled him so inexorably, an\nunnatural characteristic? It might be worthwhile, sometimes, to\ninquire what Nature is, and how men work to change her, and whether,\nin the enforced distortions so produced, it is not natural to be\nunnatural. Coop any son or daughter of our mighty mother within narrow\nrange, and bind the prisoner to one idea, and foster it by servile\nworship of it on the part of the few timid or designing people\nstanding round, and what is Nature to the willing captive who has\nnever risen up upon the wings of a free mind - drooping and useless\nsoon - to see her in her comprehensive truth!\n\nAlas! are there so few things in the world, about us, most\nunnatural, and yet most natural in being so? Hear the magistrate or\njudge admonish the unnatural outcasts of society; unnatural in brutal\nhabits, unnatural in want of decency, unnatural in losing and\nconfounding all distinctions between good and evil; unnatural in\nignorance, in vice, in recklessness, in contumacy, in mind, in looks,\nin everything. But follow the good clergyman or doctor, who, with his\nlife imperilled at every breath he draws, goes down into their dens,\nlying within the echoes of our carriage wheels and daily tread upon\nthe pavement stones. Look round upon the world of odious sights -\nmillions of immortal creatures have no other world on earth - at the\nlightest mention of which humanity revolts, and dainty delicacy living\nin the next street, stops her ears, and lisps 'I don't believe it!'\nBreathe the polluted air, foul with every impurity that is poisonous\nto health and life; and have every sense, conferred upon our race for\nits delight and happiness, offended, sickened and disgusted, and made\na channel by which misery and death alone can enter. Vainly attempt to\nthink of any simple plant, or flower, or wholesome weed, that, set in\nthis foetid bed, could have its natural growth, or put its little\nleaves off to the sun as GOD designed it. And then, calling up some\nghastly child, with stunted form and wicked face, hold forth on its\nunnatural sinfulness, and lament its being, so early, far away from\nHeaven - but think a little of its having been conceived, and born and\nbred, in Hell!\n\nThose who study the physical sciences, and bring them to bear upon\nthe health of Man, tell us that if the noxious particles that rise\nfrom vitiated air were palpable to the sight, we should see them\nlowering in a dense black cloud above such haunts, and rolling slowly\non to corrupt the better portions of a town. But if the moral\npestilence that rises with them, and in the eternal laws of our\nNature, is inseparable from them, could be made discernible too, how\nterrible the revelation! Then should we see depravity, impiety,\ndrunkenness, theft, murder, and a long train of nameless sins against\nthe natural affections and repulsions of mankind, overhanging the\ndevoted spots, and creeping on, to blight the innocent and spread\ncontagion among the pure. Then should we see how the same poisoned\nfountains that flow into our hospitals and lazar-houses, inundate the\njails, and make the convict-ships swim deep, and roll across the seas,\nand over-run vast continents with crime. Then should we stand appalled\nto know, that where we generate disease to strike our children down\nand entail itself on unborn generations, there also we breed, by the\nsame certain process, infancy that knows no innocence, youth without\nmodesty or shame, maturity that is mature in nothing but in suffering\nand guilt, blasted old age that is a scandal on the form we bear.\nunnatural humanity! When we shall gather grapes from thorns, and figs\nfrom thistles; when fields of grain shall spring up from the offal in\nthe bye-ways of our wicked cities, and roses bloom in the fat\nchurchyards that they cherish; then we may look for natural humanity,\nand find it growing from such seed.\n\nOh for a good spirit who would take the house-tops off, with a mole\npotent and benignant hand than the lame demon in the tale, and show a\nChristian people what dark shapes issue from amidst their homes, to\nswell the retinue of the Destroying Angel as he moves forth among\nthem! For only one night's view of the pale phantoms rising from the\nscenes of our too-long neglect; and from the thick and sullen air\nwhere Vice and Fever propagate together, raining the tremendous social\nretributions which are ever pouring down, and ever coming thicker!\nBright and blest the morning that should rise on such a night: for\nmen, delayed no more by stumbling-blocks of their own making, which\nare but specks of dust upon the path between them and eternity, would\nthen apply themselves, like creatures of one common origin, owing one\nduty to the Father of one family, and tending to one common end, to\nmake the world a better place!\n\nNot the less bright and blest would that day be for rousing some\nwho never have looked out upon the world of human life around them, to\na knowledge of their own relation to it, and for making them\nacquainted with a perversion of nature in their own contracted\nsympathies and estimates; as great, and yet as natural in its\ndevelopment when once begun, as the lowest degradation known.'\n\nBut no such day had ever dawned on Mr Dombey, or his wife; and the\ncourse of each was taken.\n\nThrough six months that ensued upon his accident, they held the\nsame relations one towards the other. A marble rock could not have\nstood more obdurately in his way than she; and no chilled spring,\nlying uncheered by any ray of light in the depths of a deep cave,\ncould be more sullen or more cold than he.\n\nThe hope that had fluttered within her when the promise of her new\nhome dawned, was quite gone from the heart of Florence now. That home\nwas nearly two years old; and even the patient trust that was in her,\ncould not survive the daily blight of such experience. If she had any\nlingering fancy in the nature of hope left, that Edith and her father\nmight be happier together, in some distant time, she had none, now,\nthat her father would ever love her. The little interval in which she\nhad imagined that she saw some small relenting in him, was forgotten\nin the long remembrance of his coldness since and before, or only\nremembered as a sorrowful delusion.\n\nFlorence loved him still, but, by degrees, had come to love him\nrather as some dear one who had been, or who might have been, than as\nthe hard reality before her eyes. Something of the softened sadness\nwith which she loved the memory of little Paul, or of her mother,\nseemed to enter now into her thoughts of him, and to make them, as it\nwere, a dear remembrance. Whether it was that he was dead to her, and\nthat partly for this reason, partly for his share in those old objects\nof her affection, and partly for the long association of him with\nhopes that were withered and tendernesses he had frozen, she could not\nhave told; but the father whom she loved began to be a vague and\ndreamy idea to her: hardly more substantially connected with her real\nlife, than the image she would sometimes conjure up, of her dear\nbrother yet alive, and growing to be a man, who would protect and\ncherish her.\n\nThe change, if it may be called one, had stolen on her like the\nchange from childhood to womanhood, and had come with it. Florence was\nalmost seventeen, when, in her lonely musings, she was conscious of\nthese thoughts.'\n\nShe was often alone now, for the old association between her and\nher Mama was greatly changed. At the time of her father's accident,\nand when he was lying in his room downstairs, Florence had first\nobserved that Edith avoided her. Wounded and shocked, and yet unable\nto reconcile this with her affection when they did meet, she sought\nher in her own room at night, once more.\n\n'Mama,' said Florence, stealing softly to her side, 'have I\noffended you?'\n\nEdith answered 'No.'\n\n'I must have done something,' said Florence. 'Tell me what it is.\nYou have changed your manner to me, dear Mama. I cannot say how\ninstantly I feel the least change; for I love you with my whole\nheart.'\n\n'As I do you,' said Edith. 'Ah, Florence, believe me never more\nthan now!'\n\n'Why do you go away from me so often, and keep away?' asked\nFlorence. 'And why do you sometimes look so strangely on me, dear\nMama? You do so, do you not?'\n\nEdith signified assent with her dark eyes.\n\n'Why?' returned Florence imploringly. 'Tell me why, that I may know\nhow to please you better; and tell me this shall not be so any more.\n\n'My Florence,' answered Edith, taking the hand that embraced her\nneck, and looking into the eyes that looked into hers so lovingly, as\nFlorence knelt upon the ground before her; 'why it is, I cannot tell\nyou. It is neither for me to say, nor you to hear; but that it is, and\nthat it must be, I know. Should I do it if I did not?'\n\n'Are we to be estranged, Mama?' asked Florence, gazing at her like\none frightened.\n\nEdith's silent lips formed 'Yes.'\n\nFlorence looked at her with increasing fear and wonder, until she\ncould see her no more through the blinding tears that ran down her\nface.\n\n'Florence! my life!' said Edith, hurriedly, 'listen to me. I cannot\nbear to see this grief. Be calmer. You see that I am composed, and is\nit nothing to me?'\n\nShe resumed her steady voice and manner as she said the latter\nwords, and added presently:\n\n'Not wholly estranged. Partially: and only that, in appearance,\nFlorence, for in my own breast I am still the same to you, and ever\nwill be. But what I do is not done for myself.'\n\n'Is it for me, Mama?' asked Florence.\n\n'It is enough,' said Edith, after a pause, 'to know what it is;\nwhy, matters little. Dear Florence, it is better - it is necessary -\nit must be - that our association should be less frequent. The\nconfidence there has been between us must be broken off.'\n\n'When?' cried Florence. 'Oh, Mama, when?'\n\n'Now,' said Edith.\n\n'For all time to come?' asked Florence.\n\n'I do not say that,' answered Edith. 'I do not know that. Nor will\nI say that companionship between us is, at the best, an ill-assorted\nand unholy union, of which I might have known no good could come. My\nway here has been through paths that you will never tread, and my way\nhenceforth may lie - God knows - I do not see it - '\n\nHer voice died away into silence; and she sat, looking at Florence,\nand almost shrinking from her, with the same strange dread and wild\navoidance that Florence had noticed once before. The same dark pride\nand rage succeeded, sweeping over her form and features like an angry\nchord across the strings of a wild harp. But no softness or humility\nensued on that. She did not lay her head down now, and weep, and say\nthat she had no hope but in Florence. She held it up as if she were a\nbeautiful Medusa, looking on him, face to face, to strike him dead.\nYes, and she would have done it, if she had had the charm.\n\n'Mama,' said Florence, anxiously, 'there is a change in you, in\nmore than what you say to me, which alarms me. Let me stay with you a\nlittle.'\n\n'No,' said Edith, 'no, dearest. I am best left alone now, and I do\nbest to keep apart from you, of all else. Ask me no questions, but\nbelieve that what I am when I seem fickle or capricious to you, I am\nnot of my own will, or for myself. Believe, though we are stranger to\neach other than we have been, that I am unchanged to you within.\nForgive me for having ever darkened your dark home - I am a shadow on\nit, I know well - and let us never speak of this again.'\n\n'Mama,' sobbed Florence, 'we are not to part?'\n\n'We do this that we may not part,' said Edith. 'Ask no more. Go,\nFlorence! My love and my remorse go with you!'\n\nShe embraced her, and dismissed her; and as Florence passed out of\nher room, Edith looked on the retiring figure, as if her good angel\nwent out in that form, and left her to the haughty and indignant\npassions that now claimed her for their own, and set their seal upon\nher brow.\n\nFrom that hour, Florence and she were, as they had been, no more.\nFor days together, they would seldom meet, except at table, and when\nMr Dombey was present. Then Edith, imperious, inflexible, and silent,\nnever looked at her. Whenever Mr Carker was of the party, as he often\nwas, during the progress of Mr Dombey's recovery, and afterwards,\nEdith held herself more removed from her, and was more distant towards\nher, than at other times. Yet she and Florence never encountered, when\nthere was no one by, but she would embrace her as affectionately as of\nold, though not with the same relenting of her proud aspect; and\noften, when she had been out late, she would steal up to Florence's\nroom, as she had been used to do, in the dark, and whisper\n'Good-night,' on her pillow. When unconscious, in her slumber, of such\nvisits, Florence would sometimes awake, as from a dream of those\nwords, softly spoken, and would seem to feel the touch of lips upon\nher face. But less and less often as the months went on.\n\nAnd now the void in Florence's own heart began again, indeed, to\nmake a solitude around her. As the image of the father whom she loved\nhad insensibly become a mere abstraction, so Edith, following the fate\nof all the rest about whom her affections had entwined themselves, was\nfleeting, fading, growing paler in the distance, every day. Little by\nlittle, she receded from Florence, like the retiring ghost of what she\nhad been; little by little, the chasm between them widened and seemed\ndeeper; little by little, all the power of earnestness and tenderness\nshe had shown, was frozen up in the bold, angry hardihood with which\nshe stood, upon the brink of a deep precipice unseen by Florence,\ndaring to look down.\n\nThere was but one consideration to set against the heavy loss of\nEdith, and though it was slight comfort to her burdened heart, she\ntried to think it some relief. No longer divided between her affection\nand duty to the two, Florence could love both and do no injustice to\neither. As shadows of her fond imagination, she could give them equal\nplace in her own bosom, and wrong them with no doubts\n\nSo she tried to do. At times, and often too, wondering speculations\non the cause of this change in Edith, would obtrude themselves upon\nher mind and frighten her; but in the calm of its abandonment once\nmore to silent grief and loneliness, it was not a curious mind.\nFlorence had only to remember that her star of promise was clouded in\nthe general gloom that hung upon the house, and to weep and be\nresigned.\n\nThus living, in a dream wherein the overflowing love of her young\nheart expended itself on airy forms, and in a real world where she had\nexperienced little but the rolling back of that strong tide upon\nitself, Florence grew to be seventeen. Timid and retiring as her\nsolitary life had made her, it had not embittered her sweet temper, or\nher earnest nature. A child in innocent simplicity; a woman m her\nmodest self-reliance, and her deep intensity of feeling; both child\nand woman seemed at once expressed in her face and fragile delicacy of\nshape, and gracefully to mingle there; - as if the spring should be\nunwilling to depart when summer came, and sought to blend the earlier\nbeauties of the flowers with their bloom. But in her thrilling voice,\nin her calm eyes, sometimes in a sage ethereal light that seemed to\nrest upon her head, and always in a certain pensive air upon her\nbeauty, there was an expression, such as had been seen in the dead\nboy; and the council in the Servants' Hall whispered so among\nthemselves, and shook their heads, and ate and drank the more, in a\ncloser bond of good-fellowship.\n\nThis observant body had plenty to say of Mr and Mrs Dombey, and of\nMr Carker, who appeared to be a mediator between them, and who came\nand went as if he were trying to make peace, but never could. They all\ndeplored the uncomfortable state of affairs, and all agreed that Mrs\nPipchin (whose unpopularity was not to be surpassed) had some hand in\nit; but, upon the whole, it was agreeable to have so good a subject\nfor a rallying point, and they made a great deal of it, and enjoyed\nthemselves very much.\n\nThe general visitors who came to the house, and those among whom Mr\nand Mrs Dombey visited, thought it a pretty equal match, as to\nhaughtiness, at all events, and thought nothing more about it. The\nyoung lady with the back did not appear for some time after Mrs\nSkewton's death; observing to some particular friends, with her usual\nengaging little scream, that she couldn't separate the family from a\nnotion of tombstones, and horrors of that sort; but when she did come,\nshe saw nothing wrong, except Mr Dombey's wearing a bunch of gold\nseals to his watch, which shocked her very much, as an exploded\nsuperstition. This youthful fascinator considered a daughter-in-law\nobjectionable in principle; otherwise, she had nothing to say against\nFlorence, but that she sadly wanted 'style' - which might mean back,\nperhaps. Many, who only came to the house on state occasions, hardly\nknew who Florence was, and said, going home, 'Indeed, was that Miss\nDombey, in the corner? Very pretty, but a little delicate and\nthoughtful in appearance!'\n\nNone the less so, certainly, for her life of the last six months.\nFlorence took her seat at the dinner-table, on the day before the\nsecond anniversary of her father's marriage to Edith (Mrs Skewton had\nbeen lying stricken with paralysis when the first came round), with an\nuneasiness, amounting to dread. She had no other warrant for it, than\nthe occasion, the expression of her father's face, in the hasty glance\nshe caught of it, and the presence of Mr Carker, which, always\nunpleasant to her, was more so on this day, than she had ever felt it\nbefore.\n\nEdith was richly dressed, for she and Mr Dombey were engaged in the\nevening to some large assembly, and the dinner-hour that day was late.\nShe did not appear until they were seated at table, when Mr Carker\nrose and led her to her chair. Beautiful and lustrous as she was,\nthere was that in her face and air which seemed to separate her\nhopelessly from Florence, and from everyone, for ever more. And yet,\nfor an instant, Florence saw a beam of kindness in her eyes, when they\nwere turned on her, that made the distance to which she had withdrawn\nherself, a greater cause of sorrow and regret than ever.\n\nThere was very little said at dinner. Florence heard her father\nspeak to Mr Carker sometimes on business matters, and heard him softly\nreply, but she paid little attention to what they said, and only\nwished the dinner at an end. When the dessert was placed upon the\ntable, and they were left alone, with no servant in attendance, Mr\nDombey, who had been several times clearing his throat in a manner\nthat augured no good, said:\n\n'Mrs Dombey, you know, I suppose, that I have instructed the\nhousekeeper that there will be some company to dinner here to-morrow.\n\n'I do not dine at home,' she answered.\n\n'Not a large party,' pursued Mr Dombey, with an indifferent\nassumption of not having heard her; 'merely some twelve or fourteen.\nMy sister, Major Bagstock, and some others whom you know but\nslightly.'\n\nI do not dine at home,' she repeated.\n\n'However doubtful reason I may have, Mrs Dombey,' said Mr Dombey,\nstill going majestically on, as if she had not spoken, 'to hold the\noccasion in very pleasant remembrance just now, there are appearances\nin these things which must be maintained before the world. If you have\nno respect for yourself, Mrs Dombey - '\n\n'I have none,' she said.\n\n'Madam,' cried Mr Dombey, striking his hand upon the table, 'hear\nme if you please. I say, if you have no respect for yourself - '\n\n'And I say I have none,' she answered.\n\nHe looked at her; but the face she showed him in return would not\nhave changed, if death itself had looked.\n\n'Carker,' said Mr Dombey, turning more quietly to that gentleman,\n'as you have been my medium of communication with Mrs Dombey on former\noccasions, and as I choose to preserve the decencies of life, so far\nas I am individually concerned, I will trouble you to have the\ngoodness to inform Mrs Dombey that if she has no respect for herself,\nI have some respect for myself, and therefore insist on my\narrangements for to-morrow.\n\n'Tell your sovereign master, Sir,' said Edith, 'that I will take\nleave to speak to him on this subject by-and-bye, and that I will\nspeak to him alone.'\n\n'Mr Carker, Madam,' said her husband, 'being in possession of the\nreason which obliges me to refuse you that privilege, shall be\nabsolved from the delivery of any such message.' He saw her eyes move,\nwhile he spoke, and followed them with his own.\n\n'Your daughter is present, Sir,' said Edith.\n\n'My daughter will remain present,' said Mr Dombey.\n\nFlorence, who had risen, sat down again, hiding her face in her\nhands, and trembling.\n\n'My daughter, Madam' - began Mr Dombey.\n\nBut Edith stopped him, in a voice which, although not raised in the\nleast, was so clear, emphatic, and distinct, that it might have been\nheard in a whirlwind.\n\n'I tell you I will speak to you alone,' she said. 'If you are not\nmad, heed what I say.'\n\n'I have authority to speak to you, Madam,' returned her husband,\n'when and where I please; and it is my pleasure to speak here and\nnow.'\n\nShe rose up as if to leave the room; but sat down again, and\nlooking at him with all outward composure, said, in the same voice:\n\n'You shall!'\n\n'I must tell you first, that there is a threatening appearance in\nyour manner, Madam,' said Mr Dombey, 'which does not become you.\n\nShe laughed. The shaken diamonds in her hair started and trembled.\nThere are fables of precious stones that would turn pale, their wearer\nbeing in danger. Had these been such, their imprisoned rays of light\nwould have taken flight that moment, and they would have been as dull\nas lead.\n\nCarker listened, with his eyes cast down.\n\n'As to my daughter, Madam,' said Mr Dombey, resuming the thread of\nhis discourse, 'it is by no means inconsistent with her duty to me,\nthat she should know what conduct to avoid. At present you are a very\nstrong example to her of this kind, and I hope she may profit by it.'\n\n'I would not stop you now,' returned his wife, immoveable in eye,\nand voice, and attitude; 'I would not rise and go away, and save you\nthe utterance of one word, if the room were burning.'\n\nMr Dombey moved his head, as if in a sarcastic acknowledgment of\nthe attention, and resumed. But not with so much self-possession as\nbefore; for Edith's quick uneasiness in reference to Florence, and\nEdith's indifference to him and his censure, chafed and galled him\nlike a stiffening wound.\n\n'Mrs Dombey,' said he, 'it may not be inconsistent with my\ndaughter's improvement to know how very much to be lamented, and how\nnecessary to be corrected, a stubborn disposition is, especially when\nit is indulged in - unthankfully indulged in, I will add - after the\ngratification of ambition and interest. Both of which, I believe, had\nsome share in inducing you to occupy your present station at this\nboard.'\n\n'No! I would not rise, and go away, and save you the utterance of\none word,' she repeated, exactly as before, 'if the room were\nburning.'\n\n'It may be natural enough, Mrs Dombey,' he pursued, 'that you\nshould be uneasy in the presence of any auditors of these disagreeable\ntruths; though why' - he could not hide his real feeling here, or keep\nhis eyes from glancing gloomily at Florence - 'why anyone can give\nthem greater force and point than myself, whom they so nearly concern,\nI do not pretend to understand. It may be natural enough that you\nshould object to hear, in anybody's presence, that there is a\nrebellious principle within you which you cannot curb too soon; which\nyou must curb, Mrs Dombey; and which, I regret to say, I remember to\nhave seen manifested - with some doubt and displeasure, on more than\none occasion before our marriage - towards your deceased mother. But\nyou have the remedy in your own hands. I by no means forgot, when I\nbegan, that my daughter was present, Mrs Dombey. I beg you will not\nforget, to-morrow, that there are several persons present; and that,\nwith some regard to appearances, you will receive your company in a\nbecoming manner.\n\n'So it is not enough,' said Edith, 'that you know what has passed\nbetween yourself and me; it is not enough that you can look here,'\npointing at Carker, who still listened, with his eyes cast down, 'and\nbe reminded of the affronts you have put upon me; it is not enough\nthat you can look here,' pointing to Florence with a hand that\nslightly trembled for the first and only time, 'and think of what you\nhave done, and of the ingenious agony, daily, hourly, constant, you\nhave made me feel in doing it; it is not enough that this day, of all\nothers in the year, is memorable to me for a struggle (well-deserved,\nbut not conceivable by such as you) in which I wish I had died! You\nadd to all this, do you, the last crowning meanness of making her a\nwitness of the depth to which I have fallen; when you know that you\nhave made me sacrifice to her peace, the only gentle feeling and\ninterest of my life, when you know that for her sake, I would now if I\ncould - but I can not, my soul recoils from you too much - submit\nmyself wholly to your will, and be the meekest vassal that you have!'\n\nThis was not the way to minister to Mr Dombey's greatness. The old\nfeeling was roused by what she said, into a stronger and fiercer\nexistence than it had ever had. Again, his neglected child, at this\nrough passage of his life, put forth by even this rebellious woman, as\npowerful where he was powerless, and everything where he was nothing!\n\nHe turned on Florence, as if it were she who had spoken, and bade\nher leave the room. Florence with her covered face obeyed, trembling\nand weeping as she went.\n\n'I understand, Madam,' said Mr Dombey, with an angry flush of\ntriumph, 'the spirit of opposition that turned your affections in that\nchannel, but they have been met, Mrs Dombey; they have been met, and\nturned back!'\n\n'The worse for you!' she answered, with her voice and manner still\nunchanged. 'Ay!' for he turned sharply when she said so, 'what is the\nworse for me, is twenty million times the worse for you. Heed that, if\nyou heed nothing else.'\n\nThe arch of diamonds spanning her dark hair, flashed and glittered\nlike a starry bridge. There was no warning in them, or they would have\nturned as dull and dim as tarnished honour. Carker still sat and\nlistened, with his eyes cast down.\n\n'Mrs Dombey,' said Mr Dombey, resuming as much as he could of his\narrogant composure, 'you will not conciliate me, or turn me from any\npurpose, by this course of conduct.'\n\n'It is the only true although it is a faint expression of what is\nwithin me,' she replied. 'But if I thought it would conciliate you, I\nwould repress it, if it were repressible by any human effort. I will\ndo nothing that you ask.'\n\n'I am not accustomed to ask, Mrs Dombey,' he observed; 'I direct.'\n\n'I will hold no place in your house to-morrow, or on any recurrence\nof to-morrow. I will be exhibited to no one, as the refractory slave\nyou purchased, such a time. If I kept my marriage day, I would keep it\nas a day of shame. Self-respect! appearances before the world! what\nare these to me? You have done all you can to make them nothing to me,\nand they are nothing.'\n\n'Carker,' said Mr Dombey, speaking with knitted brows, and after a\nmoment's consideration, 'Mrs Dombey is so forgetful of herself and me\nin all this, and places me in a position so unsuited to my character,\nthat I must bring this state of matters to a close.'\n\n'Release me, then,' said Edith, immoveable in voice, in look, and\nbearing, as she had been throughout, 'from the chain by which I am\nbound. Let me go.'\n\n'Madam?' exclaimed Mr Dombey.\n\n'Loose me. Set me free!'\n\n'Madam?' he repeated, 'Mrs Dombey?'\n\n'Tell him,' said Edith, addressing her proud face to Carker, 'that\nI wish for a separation between us, That there had better be one. That\nI recommend it to him, Tell him it may take place on his own terms -\nhis wealth is nothing to me - but that it cannot be too soon.'\n\n'Good Heaven, Mrs Dombey!' said her husband, with supreme\namazement, 'do you imagine it possible that I could ever listen to\nsuch a proposition? Do you know who I am, Madam? Do you know what I\nrepresent? Did you ever hear of Dombey and Son? People to say that Mr\nDombey - Mr Dombey! - was separated from his wife! Common people to\ntalk of Mr Dombey and his domestic affairs! Do you seriously think,\nMrs Dombey, that I would permit my name to be banded about in such\nconnexion? Pooh, pooh, Madam! Fie for shame! You're absurd.' Mr Dombey\nabsolutely laughed.\n\nBut not as she did. She had better have been dead than laugh as she\ndid, in reply, with her intent look fixed upon him. He had better have\nbeen dead, than sitting there, in his magnificence, to hear her.\n\n'No, Mrs Dombey,' he resumed. 'No, Madam. There is no possibility\nof separation between you and me, and therefore I the more advise you\nto be awakened to a sense of duty. And, Carker, as I was about to say\nto you -\n\nMr Carker, who had sat and listened all this time, now raised his\neyes, in which there was a bright unusual light'\n\nAs I was about to say to you, resumed Mr Dombey, 'I must beg you,\nnow that matters have come to this, to inform Mrs Dombey, that it is\nnot the rule of my life to allow myself to be thwarted by anybody -\nanybody, Carker - or to suffer anybody to be paraded as a stronger\nmotive for obedience in those who owe obedience to me than I am my\nself. The mention that has been made of my daughter, and the use that\nis made of my daughter, in opposition to me, are unnatural. Whether my\ndaughter is in actual concert with Mrs Dombey, I do not know, and do\nnot care; but after what Mrs Dombey has said today, and my daughter\nhas heard to-day, I beg you to make known to Mrs Dombey, that if she\ncontinues to make this house the scene of contention it has become, I\nshall consider my daughter responsible in some degree, on that lady's\nown avowal, and shall visit her with my severe displeasure. Mrs Dombey\nhas asked \"whether it is not enough,\" that she had done this and that.\nYou will please to answer no, it is not enough.'\n\n'A moment!' cried Carker, interposing, 'permit me! painful as my\nposition is, at the best, and unusually painful in seeming to\nentertain a different opinion from you,' addressing Mr Dombey, 'I must\nask, had you not better reconsider the question of a separation. I\nknow how incompatible it appears with your high public position, and I\nknow how determined you are when you give Mrs Dombey to understand' -\nthe light in his eyes fell upon her as he separated his words each\nfrom each, with the distinctness of so many bells - 'that nothing but\ndeath can ever part you. Nothing else. But when you consider that Mrs\nDombey, by living in this house, and making it as you have said, a\nscene of contention, not only has her part in that contention, but\ncompromises Miss Dombey every day (for I know how determined you are),\nwill you not relieve her from a continual irritation of spirit, and a\ncontinual sense of being unjust to another, almost intolerable? Does\nthis not seem like - I do not say it is - sacrificing Mrs Dombey to\nthe preservation of your preeminent and unassailable position?'\n\nAgain the light in his eyes fell upon her, as she stood looking at\nher husband: now with an extraordinary and awful smile upon her face.\n\n'Carker,' returned Mr Dombey, with a supercilious frown, and in a\ntone that was intended to be final, 'you mistake your position in\noffering advice to me on such a point, and you mistake me (I am\nsurprised to find) in the character of your advice. I have no more to\nsay.\n\n'Perhaps,' said Carker, with an unusual and indefinable taunt in\nhis air, 'you mistook my position, when you honoured me with the\nnegotiations in which I have been engaged here' - with a motion of his\nhand towards Mrs Dombey.\n\n'Not at all, Sir, not at all,' returned the other haughtily. 'You\nwere employed - '\n\n'Being an inferior person, for the humiliation of Mrs Dombey. I\nforgot' Oh, yes, it was expressly understood!' said Carker. 'I beg\nyour pardon!'\n\nAs he bent his head to Mr Dombey, with an air of deference that\naccorded ill with his words, though they were humbly spoken, he moved\nit round towards her, and kept his watching eyes that way.\n\nShe had better have turned hideous and dropped dead, than have\nstood up with such a smile upon her face, in such a fallen spirit's\nmajesty of scorn and beauty. She lifted her hand to the tiara of\nbright jewels radiant on her head, and, plucking it off with a force\nthat dragged and strained her rich black hair with heedless cruelty,\nand brought it tumbling wildly on her shoulders, cast the gems upon\nthe ground. From each arm, she unclasped a diamond bracelet, flung it\ndown, and trod upon the glittering heap. Without a word, without a\nshadow on the fire of her bright eye, without abatement of her awful\nsmile, she looked on Mr Dombey to the last, in moving to the door; and\nleft him.\n\nFlorence had heard enough before quitting the room, to know that\nEdith loved her yet; that she had suffered for her sake; and that she\nhad kept her sacrifices quiet, lest they should trouble her peace. She\ndid not want to speak to her of this - she could not, remembering to\nwhom she was opposed - but she wished, in one silent and affectionate\nembrace, to assure her that she felt it all, and thanked her.\n\nHer father went out alone, that evening, and Florence issuing from\nher own chamber soon afterwards, went about the house in search of.\nEdith, but unavailingly. She was in her own rooms, where Florence had\nlong ceased to go, and did not dare to venture now, lest she should\nunconsciously engender new trouble. Still Florence hoping to meet her\nbefore going to bed, changed from room to room, and wandered through\nthe house so splendid and so dreary, without remaining anywhere.\n\nShe was crossing a gallery of communication that opened at some\nlittle distance on the staircase, and was only lighted on great\noccasions, when she saw, through the opening, which was an arch, the\nfigure of a man coming down some few stairs opposite. Instinctively\napprehensive of her father, whom she supposed it was, she stopped, in\nthe dark, gazing through the arch into the light. But it was Mr Carker\ncoming down alone, and looking over the railing into the hall. No bell\nwas rung to announce his departure, and no servant was in attendance.\nHe went down quietly, opened the door for himself, glided out, and\nshut it softly after him.\n\nHer invincible repugnance to this man, and perhaps the stealthy act\nof watching anyone, which, even under such innocent circumstances, is\nin a manner guilty and oppressive, made Florence shake from head to\nfoot. Her blood seemed to run cold. As soon as she could - for at\nfirst she felt an insurmountable dread of moving - she went quickly to\nher own room and locked her door; but even then, shut in with her dog\nbeside her, felt a chill sensation of horror, as if there were danger\nbrooding somewhere near her.\n\nIt invaded her dreams and disturbed the whole night. Rising in the\nmorning, unrefreshed, and with a heavy recollection of the domestic\nunhappiness of the preceding day, she sought Edith again in all the\nrooms, and did so, from time to time, all the morning. But she\nremained in her own chamber, and Florence saw nothing of her.\nLearning, however, that the projected dinner at home was put off,\nFlorence thought it likely that she would go out in the evening to\nfulfil the engagement she had spoken of; and resolved to try and meet\nher, then, upon the staircase.\n\nWhen the evening had set in, she heard, from the room in which she\nsat on purpose, a footstep on the stairs that she thought to be\nEdith's. Hurrying out, and up towards her room, Florence met her\nimmediately, coming down alone.\n\nWhat was Florence's affright and wonder when, at sight of her, with\nher tearful face, and outstretched arms, Edith recoiled and shrieked!\n\n'Don't come near me!' she cried. 'Keep away! Let me go by!'\n\n'Mama!' said Florence.\n\n'Don't call me by that name! Don't speak to me! Don't look at me! -\nFlorence!' shrinking back, as Florence moved a step towards her,\n'don't touch me!'\n\nAs Florence stood transfixed before the haggard face and staring\neyes, she noted, as in a dream, that Edith spread her hands over them,\nand shuddering through all her form, and crouching down against the\nwall, crawled by her like some lower animal, sprang up, and fled away.\n\nFlorence dropped upon the stairs in a swoon; and was found there by\nMrs Pipchin, she supposed. She knew nothing more, until she found\nherself lying on her own bed, with Mrs Pipchin and some servants\nstanding round her.\n\n'Where is Mama?' was her first question.\n\n'Gone out to dinner,' said Mrs Pipchin.\n\n'And Papa?'\n\n'Mr Dombey is in his own room, Miss Dombey,' said Mrs Pipchin, 'and\nthe best thing you can do, is to take off your things and go to bed\nthis minute.' This was the sagacious woman's remedy for all\ncomplaints, particularly lowness of spirits, and inability to sleep;\nfor which offences, many young victims in the days of the Brighton\nCastle had been committed to bed at ten o'clock in the morning.\n\nWithout promising obedience, but on the plea of desiring to be very\nquiet, Florence disengaged herself, as soon as she could, from the\nministration of Mrs Pipchin and her attendants. Left alone, she\nthought of what had happened on the staircase, at first in doubt of\nits reality; then with tears; then with an indescribable and terrible\nalarm, like that she had felt the night before.\n\nShe determined not to go to bed until Edith returned, and if she\ncould not speak to her, at least to be sure that she was safe at home.\nWhat indistinct and shadowy dread moved Florence to this resolution,\nshe did not know, and did not dare to think. She only knew that until\nEdith came back, there was no repose for her aching head or throbbing\nheart.\n\nThe evening deepened into night; midnight came; no Edith.\n\nFlorence could not read, or rest a moment. She paced her own room,\nopened the door and paced the staircase-gallery outside, looked out of\nwindow on the night, listened to the wind blowing and the rain\nfalling, sat down and watched the faces in the fire, got up and\nwatched the moon flying like a storm-driven ship through the sea of\nclouds.\n\nAll the house was gone to bed, except two servants who were waiting\nthe return of their mistress, downstairs.\n\nOne o'clock. The carriages that rumbled in the distance, turned\naway, or stopped short, or went past; the silence gradually deepened,\nand was more and more rarely broken, save by a rush of wind or sweep\nof rain. Two o'clock. No Edith!\n\nFlorence, more agitated, paced her room; and paced the gallery\noutside; and looked out at the night, blurred and wavy with the\nraindrops on the glass, and the tears in her own eyes; and looked up\nat the hurry in the sky, so different from the repose below, and yet\nso tranquil and solitary. Three o'clock! There was a terror in every\nash that dropped out of the fire. No Edith yet.\n\nMore and more agitated, Florence paced her room, and paced the\ngallery, and looked out at the moon with a new fancy of her likeness\nto a pale fugitive hurrying away and hiding her guilty face. Four\nstruck! Five! No Edith yet.\n\nBut now there was some cautious stir in the house; and Florence\nfound that Mrs Pipchin had been awakened by one of those who sat up,\nhad risen and had gone down to her father's door. Stealing lower down\nthe stairs, and observing what passed, she saw her father come out in\nhis morning gown, and start when he was told his wife had not come\nhome. He dispatched a messenger to the stables to inquire whether the\ncoachman was there; and while the man was gone, dressed himself very\nhurriedly.\n\nThe man came back, in great haste, bringing the coachman with him,\nwho said he had been at home and in bed, since ten o'clock. He had\ndriven his mistress to her old house in Brook Street, where she had\nbeen met by Mr Carker -\n\nFlorence stood upon the very spot where she had seen him coming\ndown. Again she shivered with the nameless terror of that sight, and\nhad hardly steadiness enough to hear and understand what followed.\n\n- Who had told him, the man went on to say, that his mistress would\nnot want the carriage to go home in; and had dismissed him.\n\nShe saw her father turn white in the face, and heard him ask in a\nquick, trembling voice, for Mrs Dombey's maid. The whole house was\nroused; for she was there, in a moment, very pale too, and speaking\nincoherently.\n\nShe said she had dressed her mistress early - full two hours before\nshe went out - and had been told, as she often was, that she would not\nbe wanted at night. She had just come from her mistress's rooms, but -\n\n'But what! what was it?' Florence heard her father demand like a\nmadman.\n\n'But the inner dressing-room was locked and the key gone.'\n\nHer father seized a candle that was flaming on the ground - someone\nhad put it down there, and forgotten it - and came running upstairs\nwith such fury, that Florence, in her fear, had hardly time to fly\nbefore him. She heard him striking in the door, as she ran on, with\nher hands widely spread, and her hair streaming, and her face like a\ndistracted person's, back to her own room.\n\nWhen the door yielded, and he rushed in, what did he see there? No\none knew. But thrown down in a costly mass upon the ground, was every\nornament she had had, since she had been his wife; every dress she had\nworn; and everything she had possessed. This was the room in which he\nhad seen, in yonder mirror, the proud face discard him. This was the\nroom in which he had wondered, idly, how these things would look when\nhe should see them next!\n\nHeaping them back into the drawers, and locking them up in a rage\nof haste, he saw some papers on the table. The deed of settlement he\nhad executed on their marriage, and a letter. He read that she was\ngone. He read that he was dishonoured. He read that she had fled, upon\nher shameful wedding-day, with the man whom he had chosen for her\nhumiliation; and he tore out of the room, and out of the house, with a\nfrantic idea of finding her yet, at the place to which she had been\ntaken, and beating all trace of beauty out of the triumphant face with\nhis bare hand.\n\nFlorence, not knowing what she did, put on a shawl and bonnet, in a\ndream of running through the streets until she found Edith, and then\nclasping her in her arms, to save and bring her back. But when she\nhurried out upon the staircase, and saw the frightened servants going\nup and down with lights, and whispering together, and falling away\nfrom her father as he passed down, she awoke to a sense of her own\npowerlessness; and hiding in one of the great rooms that had been made\ngorgeous for this, felt as if her heart would burst with grief.\n\nCompassion for her father was the first distinct emotion that made\nhead against the flood of sorrow which overwhelmed her. Her constant\nnature turned to him in his distress, as fervently and faithfully, as\nif, in his prosperity, he had been the embodiment of that idea which\nhad gradually become so faint and dim. Although she did not know,\notherwise than through the suggestions of a shapeless fear, the full\nextent of his calamity, he stood before her, wronged and deserted; and\nagain her yearning love impelled her to his side.\n\nHe was not long away; for Florence was yet weeping in the great\nroom and nourishing these thoughts, when she heard him come back. He\nordered the servants to set about their ordinary occupations, and went\ninto his own apartment, where he trod so heavily that she could hear\nhim walking up and down from end to end.\n\nYielding at once to the impulse of her affection, timid at all\nother times, but bold in its truth to him in his adversity, and\nundaunted by past repulse, Florence, dressed as she was, hurried\ndownstairs. As she set her light foot in the hall, he came out of his\nroom. She hastened towards him unchecked, with her arms stretched out,\nand crying 'Oh dear, dear Papa!' as if she would have clasped him\nround the neck.\n\nAnd so she would have done. But in his frenzy, he lifted up his\ncruel arm, and struck her, crosswise, with that heaviness, that she\ntottered on the marble floor; and as he dealt the blow, he told her\nwhat Edith was, and bade her follow her, since they had always been in\nleague.\n\nShe did not sink down at his feet; she did not shut out the sight\nof him with her trembling hands; she did not weep; she did not utter\none word of reproach. But she looked at him, and a cry of desolation\nissued from her heart. For as she looked, she saw him murdering that\nfond idea to which she had held in spite of him. She saw his cruelty,\nneglect, and hatred dominant above it, and stamping it down. She saw\nshe had no father upon earth, and ran out, orphaned, from his house.\n\nRan out of his house. A moment, and her hand was on the lock, the\ncry was on her lips, his face was there, made paler by the yellow\ncandles hastily put down and guttering away, and by the daylight\ncoming in above the door. Another moment, and the close darkness of\nthe shut-up house (forgotten to be opened, though it was long since\nday) yielded to the unexpected glare and freedom of the morning; and\nFlorence, with her head bent down to hide her agony of tears, was in\nthe streets.\n\n\n\nCHAPTER 48.\n\nThe Flight of Florence\n\n\n\nIn the wildness of her sorrow, shame, and terror, the forlorn girl\nhurried through the sunshine of a bright morning, as if it were the\ndarkness of a winter night. Wringing her hands and weeping bitterly,\ninsensible to everything but the deep wound in her breast, stunned by\nthe loss of all she loved, left like the sole survivor on a lonely\nshore from the wreck of a great vessel, she fled without a thought,\nwithout a hope, without a purpose, but to fly somewhere anywhere.\n\nThe cheerful vista of the long street, burnished by the morning\nlight, the sight of the blue sky and airy clouds, the vigorous\nfreshness of the day, so flushed and rosy in its conquest of the\nnight, awakened no responsive feelings in her so hurt bosom.\nSomewhere, anywhere, to hide her head! somewhere, anywhere, for\nrefuge, never more to look upon the place from which she fled!\n\nBut there were people going to and fro; there were opening shops,\nand servants at the doors of houses; there was the rising clash and\nroar of the day's struggle. Florence saw surprise and curiosity in the\nfaces flitting past her; saw long shadows coming back upon the\npavement; and heard voices that were strange to her asking her where\nshe went, and what the matter was; and though these frightened her the\nmore at first, and made her hurry on the faster, they did her the good\nservice of recalling her in some degree to herself, and reminding her\nof the necessity of greater composure.\n\nWhere to go? Still somewhere, anywhere! still going on; but where!\nShe thought of the only other time she had been lost in the wild\nwilderness of London - though not lost as now - and went that way. To\nthe home of Walter's Uncle.\n\nChecking her sobs, and drying her swollen eyes, and endeavouring to\ncalm the agitation of her manner, so as to avoid attracting notice,\nFlorence, resolving to keep to the more quiet streets as long as she\ncould, was going on more quietly herself, when a familiar little\nshadow darted past upon the sunny pavement, stopped short, wheeled\nabout, came close to her, made off again, bounded round and round her,\nand Diogenes, panting for breath, and yet making the street ring with\nhis glad bark, was at her feet.\n\n'Oh, Di! oh, dear, true, faithful Di, how did you come here? How\ncould I ever leave you, Di, who would never leave me?'\n\nFlorence bent down on the pavement, and laid his rough, old,\nloving, foolish head against her breast, and they got up together, and\nwent on together; Di more off the ground than on it, endeavouring to\nkiss his mistress flying, tumbling over and getting up again without\nthe least concern, dashing at big dogs in a jocose defiance of his\nspecies, terrifying with touches of his nose young housemaids who were\ncleaning doorsteps, and continually stopping, in the midst of a\nthousand extravagances, to look back at Florence, and bark until all\nthe dogs within hearing answered, and all the dogs who could come out,\ncame out to stare at him.\n\nWith this last adherent, Florence hurried away in the advancing\nmorning, and the strengthening sunshine, to the City. The roar soon\ngrew more loud, the passengers more numerous, the shops more busy,\nuntil she was carried onward in a stream of life setting that way, and\nflowing, indifferently, past marts and mansions, prisons, churches,\nmarket-places, wealth, poverty, good, and evil, like the broad river\nside by side with it, awakened from its dreams of rushes, willows, and\ngreen moss, and rolling on, turbid and troubled, among the works and\ncares of men, to the deep sea.\n\nAt length the quarters of the little Midshipman arose in view.\nNearer yet, and the little Midshipman himself was seen upon his post,\nintent as ever on his observations. Nearer yet, and the door stood\nopen, inviting her to enter. Florence, who had again quickened her\npace, as she approached the end of her journey, ran across the road\n(closely followed by Diogenes, whom the bustle had somewhat confused),\nran in, and sank upon the threshold of the well-remembered little\nparlour.\n\nThe Captain, in his glazed hat, was standing over the fire, making\nhis morning's cocoa, with that elegant trifle, his watch, upon the\nchimney-piece, for easy reference during the progress of the cookery.\nHearing a footstep and the rustle of a dress, the Captain turned with\na palpitating remembrance of the dreadful Mrs MacStinger, at the\ninstant when Florence made a motion with her hand towards him, reeled,\nand fell upon the floor.\n\nThe Captain, pale as Florence, pale in the very knobs upon his face\nraised her like a baby, and laid her on the same old sofa upon which\nshe had slumbered long ago.\n\n'It's Heart's Delight!' said the Captain, looking intently in her\nface. 'It's the sweet creetur grow'd a woman!'\n\nCaptain Cuttle was so respectful of her, and had such a reverence\nfor her, in this new character, that he would not have held her in his\narms, while she was unconscious, for a thousand pounds.\n\n'My Heart's Delight!' said the Captain, withdrawing to a little\ndistance, with the greatest alarm and sympathy depicted on his\ncountenance. 'If you can hail Ned Cuttle with a finger, do it!'\n\nBut Florence did not stir.\n\n'My Heart's Delight!' said the trembling Captain. 'For the sake of\nWal'r drownded in the briny deep, turn to, and histe up something or\nanother, if able!'\n\nFinding her insensible to this impressive adjuration also, Captain\nCuttle snatched from his breakfast-table a basin of cold water, and\nsprinkled some upon her face. Yielding to the urgency of the case, the\nCaptain then, using his immense hand with extraordinary gentleness,\nrelieved her of her bonnet, moistened her lips and forehead, put back\nher hair, covered her feet with his own coat which he pulled off for\nthe purpose, patted her hand - so small in his, that he was struck\nwith wonder when he touched it - and seeing that her eyelids quivered,\nand that her lips began to move, continued these restorative\napplications with a better heart.\n\n'Cheerily,' said the Captain. 'Cheerily! Stand by, my pretty one,\nstand by! There! You're better now. Steady's the word, and steady it\nis. Keep her so! Drink a little drop o' this here,' said the Captain.\n'There you are! What cheer now, my pretty, what cheer now?'\n\nAt this stage of her recovery, Captain Cuttle, with an imperfect\nassociation of a Watch with a Physician's treatment of a patient, took\nhis own down from the mantel-shelf, and holding it out on his hook,\nand taking Florence's hand in his, looked steadily from one to the\nother, as expecting the dial to do something.\n\n'What cheer, my pretty?' said the Captain. 'What cheer now? You've\ndone her some good, my lad, I believe,' said the Captain, under his\nbreath, and throwing an approving glance upon his watch. 'Put you back\nhalf-an-hour every morning, and about another quarter towards the\narternoon, and you're a watch as can be ekalled by few and excelled by\nnone. What cheer, my lady lass!'\n\n'Captain Cuttle! Is it you?' exclaimed Florence, raising herself a\nlittle.\n\n'Yes, yes, my lady lass,' said the Captain, hastily deciding in his\nown mind upon the superior elegance of that form of address, as the\nmost courtly he could think of.\n\n'Is Walter's Uncle here?' asked Florence.\n\n'Here, pretty?' returned the Captain. 'He ain't been here this many\na long day. He ain't been heerd on, since he sheered off arter poor\nWal'r. But,' said the Captain, as a quotation, 'Though lost to sight,\nto memory dear, and England, Home, and Beauty!'\n\n'Do you live here?' asked Florence.\n\n'Yes, my lady lass,' returned the Captain.\n\n'Oh, Captain Cuttle!' cried Florence, putting her hands together,\nand speaking wildly. 'Save me! keep me here! Let no one know where I\nam! I'll tell you what has happened by-and-by, when I can. I have no\none in the world to go to. Do not send me away!'\n\n'Send you away, my lady lass!' exclaimed the Captain. 'You, my\nHeart's Delight! Stay a bit! We'll put up this here deadlight, and\ntake a double turn on the key!'\n\nWith these words, the Captain, using his one hand and his hook with\nthe greatest dexterity, got out the shutter of the door, put it up,\nmade it all fast, and locked the door itself.\n\nWhen he came back to the side of Florence, she took his hand, and\nkissed it. The helplessness of the action, the appeal it made to him,\nthe confidence it expressed, the unspeakable sorrow in her face, the\npain of mind she had too plainly suffered, and was suffering then, his\nknowledge of her past history, her present lonely, worn, and\nunprotected appearance, all so rushed upon the good Captain together,\nthat he fairly overflowed with compassion and gentleness.\n\n'My lady lass,' said the Captain, polishing the bridge of his nose\nwith his arm until it shone like burnished copper, 'don't you say a\nword to Ed'ard Cuttle, until such times as you finds yourself a riding\nsmooth and easy; which won't be to-day, nor yet to-morrow. And as to\ngiving of you up, or reporting where you are, yes verily, and by God's\nhelp, so I won't, Church catechism, make a note on!'\n\nThis the Captain said, reference and all, in one breath, and with\nmuch solemnity; taking off his hat at 'yes verily,' and putting it on\nagain, when he had quite concluded.\n\nFlorence could do but one thing more to thank him, and to show him\nhow she trusted in him; and she did it' Clinging to this rough\ncreature as the last asylum of her bleeding heart, she laid her head\nupon his honest shoulder, and clasped him round his neck, and would\nhave kneeled down to bless him, but that he divined her purpose, and\nheld her up like a true man.\n\n'Steady!' said the Captain. 'Steady! You're too weak to stand, you\nsee, my pretty, and must lie down here again. There, there!' To see\nthe Captain lift her on the sofa, and cover her with his coat, would\nhave been worth a hundred state sights. 'And now,' said the Captain,\n'you must take some breakfast, lady lass, and the dog shall have some\ntoo. And arter that you shall go aloft to old Sol Gills's room, and\nfall asleep there, like a angel.'\n\nCaptain Cuttle patted Diogenes when he made allusion to him, and\nDiogenes met that overture graciously, half-way. During the\nadministration of the restoratives he had clearly been in two minds\nwhether to fly at the Captain or to offer him his friendship; and he\nhad expressed that conflict of feeling by alternate waggings of his\ntail, and displays of his teeth, with now and then a growl or so. But\nby this time, his doubts were all removed. It was plain that he\nconsidered the Captain one of the most amiable of men, and a man whom\nit was an honour to a dog to know.\n\nIn evidence of these convictions, Diogenes attended on the Captain\nwhile he made some tea and toast, and showed a lively interest in his\nhousekeeping. But it was in vain for the kind Captain to make such\npreparations for Florence, who sorely tried to do some honour to them,\nbut could touch nothing, and could only weep and weep again.\n\n'Well, well!' said the compassionate Captain, 'arter turning in, my\nHeart's Delight, you'll get more way upon you. Now, I'll serve out\nyour allowance, my lad.' To Diogenes. 'And you shall keep guard on\nyour mistress aloft.'\n\nDiogenes, however, although he had been eyeing his intended\nbreakfast with a watering mouth and glistening eyes, instead of\nfalling to, ravenously, when it was put before him, pricked up his\nears, darted to the shop-door, and barked there furiously: burrowing\nwith his head at the bottom, as if he were bent on mining his way out.\n\n'Can there be anybody there!' asked Florence, in alarm.\n\n'No, my lady lass,' returned the Captain. 'Who'd stay there,\nwithout making any noise! Keep up a good heart, pretty. It's only\npeople going by.'\n\nBut for all that, Diogenes barked and barked, and burrowed and\nburrowed, with pertinacious fury; and whenever he stopped to listen,\nappeared to receive some new conviction into his mind, for he set to,\nbarking and burrowing again, a dozen times. Even when he was persuaded\nto return to his breakfast, he came jogging back to it, with a very\ndoubtful air; and was off again, in another paroxysm, before touching\na morsel.\n\n'If there should be someone listening and watching,' whispered\nFlorence. 'Someone who saw me come - who followed me, perhaps.'\n\n'It ain't the young woman, lady lass, is it?' said the Captain,\ntaken with a bright idea\n\n'Susan?' said Florence, shaking her head. 'Ah no! Susan has been\ngone from me a long time.'\n\n'Not deserted, I hope?' said the Captain. 'Don't say that that\nthere young woman's run, my pretty!'\n\n'Oh, no, no!' cried Florence. 'She is one of the truest hearts in\nthe world!'\n\nThe Captain was greatly relieved by this reply, and expressed his\nsatisfaction by taking off his hard glazed hat, and dabbing his head\nall over with his handkerchief, rolled up like a ball, observing\nseveral times, with infinite complacency, and with a beaming\ncountenance, that he know'd it.\n\n'So you're quiet now, are you, brother?' said the Captain to\nDiogenes. 'There warn't nobody there, my lady lass, bless you!'\n\nDiogenes was not so sure of that. The door still had an attraction\nfor him at intervals; and he went snuffing about it, and growling to\nhimself, unable to forget the subject. This incident, coupled with the\nCaptain's observation of Florence's fatigue and faintness, decided him\nto prepare Sol Gills's chamber as a place of retirement for her\nimmediately. He therefore hastily betook himself to the top of the\nhouse, and made the best arrangement of it that his imagination and\nhis means suggested.\n\nIt was very clean already; and the Captain being an orderly man,\nand accustomed to make things ship-shape, converted the bed into a\ncouch, by covering it all over with a clean white drapery. By a\nsimilar contrivance, the Captain converted the little dressing-table\ninto a species of altar, on which he set forth two silver teaspoons, a\nflower-pot, a telescope, his celebrated watch, a pocket-comb, and a\nsong-book, as a small collection of rarities, that made a choice\nappearance. Having darkened the window, and straightened the pieces of\ncarpet on the floor, the Captain surveyed these preparations with\ngreat delight, and descended to the little parlour again, to bring\nFlorence to her bower.\n\nNothing would induce the Captain to believe that it was possible\nfor Florence to walk upstairs. If he could have got the idea into his\nhead, he would have considered it an outrageous breach of hospitality\nto allow her to do so. Florence was too weak to dispute the point, and\nthe Captain carried her up out of hand, laid her down, and covered her\nwith a great watch-coat.\n\n'My lady lass!' said the Captain, 'you're as safe here as if you\nwas at the top of St Paul's Cathedral, with the ladder cast off. Sleep\nis what you want, afore all other things, and may you be able to show\nyourself smart with that there balsam for the still small woice of a\nwounded mind! When there's anything you want, my Heart's Delight, as\nthis here humble house or town can offer, pass the word to Ed'ard\nCuttle, as'll stand off and on outside that door, and that there man\nwill wibrate with joy.' The Captain concluded by kissing the hand that\nFlorence stretched out to him, with the chivalry of any old\nknight-errant, and walking on tiptoe out of the room.\n\nDescending to the little parlour, Captain Cuttle, after holding a\nhasty council with himself, decided to open the shop-door for a few\nminutes, and satisfy himself that now, at all events, there was no one\nloitering about it. Accordingly he set it open, and stood upon the\nthreshold, keeping a bright look-out, and sweeping the whole street\nwith his spectacles.\n\n'How de do, Captain Gills?' said a voice beside him. The Captain,\nlooking down, found that he had been boarded by Mr Toots while\nsweeping the horizon.\n\n'How are, you, my lad?' replied the Captain.\n\n'Well, I m pretty well, thank'ee, Captain Gills,' said Mr Toots.\n'You know I'm never quite what I could wish to be, now. I don't expect\nthat I ever shall be any more.'\n\nMr Toots never approached any nearer than this to the great theme\nof his life, when in conversation with Captain Cuttle, on account of\nthe agreement between them.\n\n'Captain Gills,' said Mr Toots, 'if I could have the pleasure of a\nword with you, it's - it's rather particular.'\n\n'Why, you see, my lad,' replied the Captain, leading the way into\nthe parlour, 'I ain't what you may call exactly free this morning; and\ntherefore if you can clap on a bit, I should take it kindly.'\n\n'Certainly, Captain Gills,' replied Mr Toots, who seldom had any\nnotion of the Captain's meaning. 'To clap on, is exactly what I could\nwish to do. Naturally.'\n\n'If so be, my lad,' returned the Captain. 'Do it!'\n\nThe Captain was so impressed by the possession of his tremendous\nsecret - by the fact of Miss Dombey being at that moment under his\nroof, while the innocent and unconscious Toots sat opposite to him -\nthat a perspiration broke out on his forehead, and he found it\nimpossible, while slowly drying the same, glazed hat in hand, to keep\nhis eyes off Mr Toots's face. Mr Toots, who himself appeared to have\nsome secret reasons for being in a nervous state, was so unspeakably\ndisconcerted by the Captain's stare, that after looking at him\nvacantly for some time in silence, and shifting uneasily on his chair,\nhe said:\n\n'I beg your pardon, Captain Gills, but you don't happen to see\nanything particular in me, do you?'\n\n'No, my lad,' returned the Captain. 'No.'\n\n'Because you know,' said Mr Toots with a chuckle, 'I kNOW I'm\nwasting away. You needn't at all mind alluding to that. I - I should\nlike it. Burgess and Co. have altered my measure, I'm in that state of\nthinness. It's a gratification to me. I - I'm glad of it. I - I'd a\ngreat deal rather go into a decline, if I could. I'm a mere brute you\nknow, grazing upon the surface of the earth, Captain Gills.'\n\nThe more Mr Toots went on in this way, the more the Captain was\nweighed down by his secret, and stared at him. What with this cause of\nuneasiness, and his desire to get rid of Mr Toots, the Captain was in\nsuch a scared and strange condition, indeed, that if he had been in\nconversation with a ghost, he could hardly have evinced greater\ndiscomposure.\n\n'But I was going to say, Captain Gills,' said Mr Toots. 'Happening\nto be this way early this morning - to tell you the truth, I was\ncoming to breakfast with you. As to sleep, you know, I never sleep\nnow. I might be a Watchman, except that I don't get any pay, and he's\ngot nothing on his mind.'\n\n'Carry on, my lad!' said the Captain, in an admonitory voice.\n\n'Certainly, Captain Gills,' said Mr Toots. 'Perfectly true!\nHappening to be this way early this morning (an hour or so ago), and\nfinding the door shut - '\n\n'What! were you waiting there, brother?' demanded the Captain.\n\n'Not at all, Captain Gills,' returned Mr Toots. 'I didn't stop a\nmoment. I thought you were out. But the person said - by the bye, you\ndon't keep a dog, you, Captain Gills?'\n\nThe Captain shook his head.\n\n'To be sure,' said Mr Toots, 'that's exactly what I said. I knew\nyou didn't. There is a dog, Captain Gills, connected with - but excuse\nme. That's forbidden ground.'\n\nThe Captain stared at Mr Toots until he seemed to swell to twice\nhis natural size; and again the perspiration broke out on the\nCaptain's forehead, when he thought of Diogenes taking it into his\nhead to come down and make a third in the parlour.\n\n'The person said,' continued Mr Toots, 'that he had heard a dog\nbarking in the shop: which I knew couldn't be, and I told him so. But\nhe was as positive as if he had seen the dog.'\n\n'What person, my lad?' inquired the Captain.\n\n'Why, you see there it is, Captain Gills,' said Mr Toots, with a\nperceptible increase in the nervousness of his manner. 'It's not for\nme to say what may have taken place, or what may not have taken place.\nIndeed, I don't know. I get mixed up with all sorts of things that I\ndon't quite understand, and I think there's something rather weak in\nmy - in my head, in short.'\n\nThe Captain nodded his own, as a mark of assent.\n\n'But the person said, as we were walking away,' continued Mr Toots,\n'that you knew what, under existing circumstances, might occur - he\nsaid \"might,\" very strongly - and that if you were requested to\nprepare yourself, you would, no doubt, come prepared.'\n\n'Person, my lad' the Captain repeated.\n\n'I don't know what person, I'm sure, Captain Gills,' replied Mr\nToots, 'I haven't the least idea. But coming to the door, I found him\nwaiting there; and he said was I coming back again, and I said yes;\nand he said did I know you, and I said, yes, I had the pleasure of\nyour acquaintance - you had given me the pleasure of your\nacquaintance, after some persuasion; and he said, if that was the\ncase, would I say to you what I have said, about existing\ncircumstances and coming prepared, and as soon as ever I saw you,\nwould I ask you to step round the corner, if it was only for one\nminute, on most important business, to Mr Brogley's the Broker's. Now,\nI tell you what, Captain Gills - whatever it is, I am convinced it's\nvery important; and if you like to step round, now, I'll wait here\ntill you come back.'\n\nThe Captain, divided between his fear of compromising Florence in\nsome way by not going, and his horror of leaving Mr Toots in\npossession of the house with a chance of finding out the secret, was a\nspectacle of mental disturbance that even Mr Toots could not be blind\nto. But that young gentleman, considering his nautical friend as\nmerely in a state of preparation for the interview he was going to\nhave, was quite satisfied, and did not review his own discreet conduct\nwithout chuckle\n\nAt length the Captain decided, as the lesser of two evils, to run\nround to Brogley's the Broker's: previously locking the door that\ncommunicated with the upper part of the house, and putting the key in\nhis pocket. 'If so be,' said the Captain to Mr Toots, with not a\nlittle shame and hesitation, 'as you'll excuse my doing of it,\nbrother.'\n\n'Captain Gills,' returned Mr Toots, 'whatever you do, is\nsatisfactory to me.\n\nThe Captain thanked him heartily, and promising to come back in\nless than five minutes, went out in quest of the person who had\nentrusted Mr Toots with this mysterious message. Poor Mr Toots, left\nto himself, lay down upon the sofa, little thinking who had reclined\nthere last, and, gazing up at the skylight and resigning himself to\nvisions of Miss Dombey, lost all heed of time and place.\n\nIt was as well that he did so; for although the Captain was not\ngone long, he was gone much longer than he had proposed. When he came\nback, he was very pale indeed, and greatly agitated, and even looked\nas if he had been shedding tears. He seemed to have lost the faculty\nof speech, until he had been to the cupboard and taken a dram of rum\nfrom the case-bottle, when he fetched a deep breath, and sat down in a\nchair with his hand before his face.\n\n'Captain Gills,' said Toots, kindly, 'I hope and trust there's\nnothing wrong?'\n\n'Thank'ee, my lad, not a bit,' said the Captain. 'Quite contrairy.'\n\n'You have the appearance of being overcome, Captain Gills,'\nobserved Mr Toots.\n\n'Why, my lad, I am took aback,' the Captain admitted. 'I am.'\n\n'Is there anything I can do, Captain Gills?' inquired Mr Toots. 'If\nthere is, make use of me.'\n\nThe Captain removed his hand from his face, looked at him with a\nremarkable expression of pity and tenderness, and took him by the\nhand, and shook it hard.\n\n'No, thank'ee,' said the Captain. 'Nothing. Only I'll take it as a\nfavour if you'll part company for the present. I believe, brother,'\nwringing his hand again, 'that, after Wal'r, and on a different model,\nyou're as good a lad as ever stepped.'\n\n'Upon my word and honour, Captain Gills,' returned Mr Toots, giving\nthe Captain's hand a preliminary slap before shaking it again, 'it's\ndelightful to me to possess your good opinion. Thank'ee.\n\n'And bear a hand and cheer up,' said the Captain, patting him on\nthe back. 'What! There's more than one sweet creetur in the world!'\n\n'Not to me, Captain Gills,' replied Mr Toots gravely. 'Not to me, I\nassure you. The state of my feelings towards Miss Dombey is of that\nunspeakable description, that my heart is a desert island, and she\nlives in it alone. I'm getting more used up every day, and I'm proud\nto be so. If you could see my legs when I take my boots off, you'd\nform some idea of what unrequited affection is. I have been prescribed\nbark, but I don't take it, for I don't wish to have any tone whatever\ngiven to my constitution. I'd rather not. This, however, is forbidden\nground. Captain Gills, goodbye!'\n\nCaptain Cuttle cordially reciprocating the warmth of Mr Toots's\nfarewell, locked the door behind him, and shaking his head with the\nsame remarkable expression of pity and tenderness as he had regarded\nhim with before, went up to see if Florence wanted him.\n\nThere was an entire change in the Captain's face as he went\nupstairs. He wiped his eyes with his handkerchief, and he polished the\nbridge of his nose with his sleeve as he had done already that\nmorning, but his face was absolutely changed. Now, he might have been\nthought supremely happy; now, he might have been thought sad; but the\nkind of gravity that sat upon his features was quite new to them, and\nwas as great an improvement to them as if they had undergone some\nsublimating process.\n\nHe knocked softly, with his hook, at Florence's door, twice or\nthrice; but, receiving no answer, ventured first to peep in, and then\nto enter: emboldened to take the latter step, perhaps, by the familiar\nrecognition of Diogenes, who, stretched upon the ground by the side of\nher couch, wagged his tail, and winked his eyes at the Captain,\nwithout being at the trouble of getting up.\n\nShe was sleeping heavily, and moaning in her sleep; and Captain\nCuttle, with a perfect awe of her youth, and beauty, and her sorrow,\nraised her head, and adjusted the coat that covered her, where it had\nfallen off, and darkened the window a little more that she might sleep\non, and crept out again, and took his post of watch upon the stairs.\nAll this, with a touch and tread as light as Florence's own.\n\nLong may it remain in this mixed world a point not easy of\ndecision, which is the more beautiful evidence of the Almighty's\ngoodness - the delicate fingers that are formed for sensitiveness and\nsympathy of touch, and made to minister to pain and grief, or the\nrough hard Captain Cuttle hand, that the heart teaches, guides, and\nsoftens in a moment!\n\nFlorence slept upon her couch, forgetful of her homelessness and\norphanage, and Captain Cuttle watched upon the stairs. A louder sob or\nmoan than usual, brought him sometimes to her door; but by degrees she\nslept more peacefully, and the Captain's watch was undisturbed.\n\n\n\nCHAPTER 49.\n\nThe Midshipman makes a Discovery\n\n\n\nIt was long before Florence awoke. The day was in its prime, the\nday was in its wane, and still, uneasy in mind and body, she slept on;\nunconscious of her strange bed, of the noise and turmoil in the\nstreet, and of the light that shone outside the shaded window. Perfect\nunconsciousness of what had happened in the home that existed no more,\neven the deep slumber of exhaustion could not produce. Some undefined\nand mournful recollection of it, dozing uneasily but never sleeping,\npervaded all her rest. A dull sorrow, like a half-lulled sense of\npain, was always present to her; and her pale cheek was oftener wet\nwith tears than the honest Captain, softly putting in his head from\ntime to time at the half-closed door, could have desired to see it.\n\nThe sun was getting low in the west, and, glancing out of a red\nmist, pierced with its rays opposite loopholes and pieces of fretwork\nin the spires of city churches, as if with golden arrows that struck\nthrough and through them - and far away athwart the river and its flat\nbanks, it was gleaming like a path of fire - and out at sea it was\nirradiating sails of ships - and, looked towards, from quiet\nchurchyards, upon hill-tops in the country, it was steeping distant\nprospects in a flush and glow that seemed to mingle earth and sky\ntogether in one glorious suffusion - when Florence, opening her heavy\neyes, lay at first, looking without interest or recognition at the\nunfamiliar walls around her, and listening in the same regardless\nmanner to the noises in the street. But presently she started up upon\nher couch, gazed round with a surprised and vacant look, and\nrecollected all.\n\n'My pretty,' said the Captain, knocking at the door, 'what cheer?'\n\n'Dear friend,' cried Florence, hurrying to him, 'is it you?'\n\nThe Captain felt so much pride in the name, and was so pleased by\nthe gleam of pleasure in her face, when she saw him, that he kissed\nhis hook, by way of reply, in speechless gratification.\n\n'What cheer, bright di'mond?' said the Captain.\n\n'I have surely slept very long,' returned Florence. 'When did I\ncome here? Yesterday?'\n\n'This here blessed day, my lady lass,' replied the Captain.\n\n'Has there been no night? Is it still day?' asked Florence.\n\n'Getting on for evening now, my pretty,' said the Captain, drawing\nback the curtain of the window. 'See!'\n\nFlorence, with her hand upon the Captain's arm, so sorrowful and\ntimid, and the Captain with his rough face and burly figure, so\nquietly protective of her, stood in the rosy light of the bright\nevening sky, without saying a word. However strange the form of speech\ninto which he might have fashioned the feeling, if he had had to give\nit utterance, the Captain felt, as sensibly as the most eloquent of\nmen could have done, that there was something in the tranquil time and\nin its softened beauty that would make the wounded heart of Florence\noverflow; and that it was better that such tears should have their\nway. So not a word spake Captain Cuttle. But when he felt his arm\nclasped closer, and when he felt the lonely head come nearer to it,\nand lay itself against his homely coarse blue sleeve, he pressed it\ngently with his rugged hand, and understood it, and was understood.\n\n'Better now, my pretty!' said the Captain. 'Cheerily, cheerily,\nI'll go down below, and get some dinner ready. Will you come down of\nyour own self, arterwards, pretty, or shall Ed'ard Cuttle come and\nfetch you?'\n\nAs Florence assured him that she was quite able to walk downstairs,\nthe Captain, though evidently doubtful of his own hospitality in\npermitting it, left her to do so, and immediately set about roasting a\nfowl at the fire in the little parlour. To achieve his cookery with\nthe greater skill, he pulled off his coat, tucked up his wristbands,\nand put on his glazed hat, without which assistant he never applied\nhimself to any nice or difficult undertaking.\n\nAfter cooling her aching head and burning face in the fresh water\nwhich the Captain's care had provided for her while she slept,\nFlorence went to the little mirror to bind up her disordered hair.\nThen she knew - in a moment, for she shunned it instantly, that on her\nbreast there was the darkening mark of an angry hand.\n\nHer tears burst forth afresh at the sight; she was ashamed and\nafraid of it; but it moved her to no anger against him. Homeless and\nfatherless, she forgave him everything; hardly thought that she had\nneed to forgive him, or that she did; but she fled from the idea of\nhim as she had fled from the reality, and he was utterly gone and\nlost. There was no such Being in the world.\n\nWhat to do, or where to live, Florence - poor, inexperienced girl!\n- could not yet consider. She had indistinct dreams of finding, a long\nway off, some little sisters to instruct, who would be gentle with\nher, and to whom, under some feigned name, she might attach herself,\nand who would grow up in their happy home, and marry, and be good to\ntheir old governess, and perhaps entrust her, in time, with the\neducation of their own daughters. And she thought how strange and\nsorrowful it would be, thus to become a grey-haired woman, carrying\nher secret to the grave, when Florence Dombey was forgotten. But it\nwas all dim and clouded to her now. She only knew that she had no\nFather upon earth, and she said so, many times, with her suppliant\nhead hidden from all, but her Father who was in Heaven.\n\nHer little stock of money amounted to but a few guineas. With a\npart of this, it would be necessary to buy some clothes, for she had\nnone but those she wore. She was too desolate to think how soon her\nmoney would be gone - too much a child in worldly matters to be\ngreatly troubled on that score yet, even if her other trouble had been\nless. She tried to calm her thoughts and stay her tears; to quiet the\nhurry in her throbbing head, and bring herself to believe that what\nhad happened were but the events of a few hours ago, instead of weeks\nor months, as they appeared; and went down to her kind protector.\n\nThe Captain had spread the cloth with great care, and was making\nsome egg-sauce in a little saucepan: basting the fowl from time to\ntime during the process with a strong interest, as it turned and\nbrowned on a string before the fire. Having propped Florence up with\ncushions on the sofa, which was already wheeled into a warm corner for\nher greater comfort, the Captain pursued his cooking with\nextraordinary skill, making hot gravy in a second little saucepan,\nboiling a handful of potatoes in a third, never forgetting the\negg-sauce in the first, and making an impartial round of basting and\nstirring with the most useful of spoons every minute. Besides these\ncares, the Captain had to keep his eye on a diminutive frying-pan, in\nwhich some sausages were hissing and bubbling in a most musical\nmanner; and there was never such a radiant cook as the Captain looked,\nin the height and heat of these functions: it being impossible to say\nwhether his face or his glazed hat shone the brighter.\n\nThe dinner being at length quite ready, Captain Cuttle dished and\nserved it up, with no less dexterity than he had cooked it. He then\ndressed for dinner, by taking off his glazed hat and putting on his\ncoat. That done, he wheeled the table close against Florence on the\nsofa, said grace, unscrewed his hook, screwed his fork into its place,\nand did the honours of the table\n\n'My lady lass,' said the Captain, 'cheer up, and try to eat a deal.\nStand by, my deary! Liver wing it is. Sarse it is. Sassage it is. And\npotato!' all which the Captain ranged symmetrically on a plate, and\npouring hot gravy on the whole with the useful spoon, set before his\ncherished guest.\n\n'The whole row o' dead lights is up, for'ard, lady lass,' observed\nthe Captain, encouragingly, 'and everythink is made snug. Try and pick\na bit, my pretty. If Wal'r was here - '\n\n'Ah! If I had him for my brother now!' cried Florence.\n\n'Don't! don't take on, my pretty!' said the Captain, 'awast, to\nobleege me! He was your nat'ral born friend like, warn't he, Pet?'\n\nFlorence had no words to answer with. She only said, 'Oh, dear,\ndear Paul! oh, Walter!'\n\n'The wery planks she walked on,' murmured the Captain, looking at\nher drooping face, 'was as high esteemed by Wal'r, as the water brooks\nis by the hart which never rejices! I see him now, the wery day as he\nwas rated on them Dombey books, a speaking of her with his face a\nglistening with doo - leastways with his modest sentiments - like a\nnew blowed rose, at dinner. Well, well! If our poor Wal'r was here, my\nlady lass - or if he could be - for he's drownded, ain't he?'\n\nFlorence shook her head.\n\n'Yes, yes; drownded,' said the Captain, soothingly; 'as I was\nsaying, if he could be here he'd beg and pray of you, my precious, to\npick a leetle bit, with a look-out for your own sweet health. Whereby,\nhold your own, my lady lass, as if it was for Wal'r's sake, and lay\nyour pretty head to the wind.'\n\nFlorence essayed to eat a morsel, for the Captain's pleasure. The\nCaptain, meanwhile, who seemed to have quite forgotten his own dinner,\nlaid down his knife and fork, and drew his chair to the sofa.\n\n'Wal'r was a trim lad, warn't he, precious?' said the Captain,\nafter sitting for some time silently rubbing his chin, with his eyes\nfixed upon her, 'and a brave lad, and a good lad?'\n\nFlorence tearfully assented.\n\n'And he's drownded, Beauty, ain't he?' said the Captain, in a\nsoothing voice.\n\nFlorence could not but assent again.\n\n'He was older than you, my lady lass,' pursued the Captain, 'but\nyou was like two children together, at first; wam't you?'\n\nFlorence answered 'Yes.'\n\n'And Wal'r's drownded,' said the Captain. 'Ain't he?'\n\nThe repetition of this inquiry was a curious source of consolation,\nbut it seemed to be one to Captain Cuttle, for he came back to it\nagain and again. Florence, fain to push from her her untasted dinner,\nand to lie back on her sofa, gave him her hand, feeling that she had\ndisappointed him, though truly wishing to have pleased him after all\nhis trouble, but he held it in his own (which shook as he held it),\nand appearing to have quite forgotten all about the dinner and her\nwant of appetite, went on growling at intervals, in a ruminating tone\nof sympathy, 'Poor Wal'r. Ay, ay! Drownded. Ain't he?' And always\nwaited for her answer, in which the great point of these singular\nreflections appeared to consist.\n\nThe fowl and sausages were cold, and the gravy and the egg-sauce\nstagnant, before the Captain remembered that they were on the board,\nand fell to with the assistance of Diogenes, whose united efforts\nquickly dispatched the banquet. The Captain's delight and wonder at\nthe quiet housewifery of Florence in assisting to clear the table,\narrange the parlour, and sweep up the hearth - only to be equalled by\nthe fervency of his protest when she began to assist him - were\ngradually raised to that degree, that at last he could not choose but\ndo nothing himself, and stand looking at her as if she were some\nFairy, daintily performing these offices for him; the red rim on his\nforehead glowing again, in his unspeakable admiration.\n\nBut when Florence, taking down his pipe from the mantel-shelf gave\nit into his hand, and entreated him to smoke it, the good Captain was\nso bewildered by her attention that he held it as if he had never held\na pipe, in all his life. Likewise, when Florence, looking into the\nlittle cupboard, took out the case-bottle and mixed a perfect glass of\ngrog for him, unasked, and set it at his elbow, his ruddy nose turned\npale, he felt himself so graced and honoured. When he had filled his\npipe in an absolute reverie of satisfaction, Florence lighted it for\nhim - the Captain having no power to object, or to prevent her - and\nresuming her place on the old sofa, looked at him with a smile so\nloving and so grateful, a smile that showed him so plainly how her\nforlorn heart turned to him, as her face did, through grief, that the\nsmoke of the pipe got into the Captain's throat and made him cough,\nand got into the Captain's eyes, and made them blink and water.\n\nThe manner in which the Captain tried to make believe that the\ncause of these effects lay hidden in the pipe itself, and the way in\nwhich he looked into the bowl for it, and not finding it there,\npretended to blow it out of the stem, was wonderfully pleasant. The\npipe soon getting into better condition, he fell into that state of\nrepose becoming a good smoker; but sat with his eyes fixed on\nFlorence, and, with a beaming placidity not to be described, and\nstopping every now and then to discharge a little cloud from his lips,\nslowly puffed it forth, as if it were a scroll coming out of his\nmouth, bearing the legend 'Poor Wal'r, ay, ay. Drownded, ain't he?'\nafter which he would resume his smoking with infinite gentleness.\n\nUnlike as they were externally - and there could scarcely be a more\ndecided contrast than between Florence in her delicate youth and\nbeauty, and Captain Cuttle with his knobby face, his great broad\nweather-beaten person, and his gruff voice - in simple innocence of\nthe world's ways and the world's perplexities and dangers, they were\nnearly on a level. No child could have surpassed Captain Cuttle in\ninexperience of everything but wind and weather; in simplicity,\ncredulity, and generous trustfulness. Faith, hope, and charity, shared\nhis whole nature among them. An odd sort of romance, perfectly\nunimaginative, yet perfectly unreal, and subject to no considerations\nof worldly prudence or practicability, was the only partner they had\nin his character. As the Captain sat, and smoked, and looked at\nFlorence, God knows what impossible pictures, in which she was the\nprincipal figure, presented themselves to his mind. Equally vague and\nuncertain, though not so sanguine, were her own thoughts of the life\nbefore her; and even as her tears made prismatic colours in the light\nshe gazed at, so, through her new and heavy grief, she already saw a\nrainbow faintly shining in the far-off sky. A wandering princess and a\ngood monster in a storybook might have sat by the fireside, and talked\nas Captain Cuttle and poor Florence talked - and not have looked very\nmuch unlike them.\n\nThe Captain was not troubled with the faintest idea of any\ndifficulty in retaining Florence, or of any responsibility thereby\nincurred. Having put up the shutters and locked the door, he was quite\nsatisfied on this head. If she had been a Ward in Chancery, it would\nhave made no difference at all to Captain Cuttle. He was the last man\nin the world to be troubled by any such considerations.\n\nSo the Captain smoked his pipe very comfortably, and Florence and\nhe meditated after their own manner. When the pipe was out, they had\nsome tea; and then Florence entreated him to take her to some\nneighbouring shop, where she could buy the few necessaries she\nimmediately wanted. It being quite dark, the Captain consented:\npeeping carefully out first, as he had been wont to do in his time of\nhiding from Mrs MacStinger; and arming himself with his large stick,\nin case of an appeal to arms being rendered necessary by any\nunforeseen circumstance.\n\nThe pride Captain Cuttle had, in giving his arm to Florence, and\nescorting her some two or three hundred yards, keeping a bright\nlook-out all the time, and attracting the attention of everyone who\npassed them, by his great vigilance and numerous precautions, was\nextreme. Arrived at the shop, the Captain felt it a point of delicacy\nto retire during the making of the purchases, as they were to consist\nof wearing apparel; but he previously deposited his tin canister on\nthe counter, and informing the young lady of the establishment that it\ncontained fourteen pound two, requested her, in case that amount of\nproperty should not be sufficient to defray the expenses of his\nniece's little outfit - at the word 'niece,' he bestowed a most\nsignificant look on Florence, accompanied with pantomime, expressive\nof sagacity and mystery - to have the goodness to 'sing out,' and he\nwould make up the difference from his pocket. Casually consulting his\nbig watch, as a deep means of dazzling the establishment, and\nimpressing it with a sense of property, the Captain then kissed his\nhook to his niece, and retired outside the window, where it was a\nchoice sight to see his great face looking in from time to time, among\nthe silks and ribbons, with an obvious misgiving that Florence had\nbeen spirited away by a back door.\n\n'Dear Captain Cuttle,' said Florence, when she came out with a\nparcel, the size of which greatly disappointed the Captain, who had\nexpected to see a porter following with a bale of goods, 'I don't want\nthis money, indeed. I have not spent any of it. I have money of my\nown.'\n\n'My lady lass,' returned the baffled Captain, looking straight down\nthe street before them, 'take care on it for me, will you be so good,\ntill such time as I ask ye for it?'\n\n'May I put it back in its usual place,' said Florence, 'and keep it\nthere?'\n\nThe Captain was not at all gratified by this proposal, but he\nanswered, 'Ay, ay, put it anywheres, my lady lass, so long as you know\nwhere to find it again. It ain't o' no use to me,' said the Captain.\n'I wonder I haven't chucked it away afore now.\n\nThe Captain was quite disheartened for the moment, but he revived\nat the first touch of Florence's arm, and they returned with the same\nprecautions as they had come; the Captain opening the door of the\nlittle Midshipman's berth, and diving in, with a suddenness which his\ngreat practice only could have taught him. During Florence's slumber\nin the morning, he had engaged the daughter of an elderly lady who\nusually sat under a blue umbrella in Leadenhall Market, selling\npoultry, to come and put her room in order, and render her any little\nservices she required; and this damsel now appearing, Florence found\neverything about her as convenient and orderly, if not as handsome, as\nin the terrible dream she had once called Home.\n\nWhen they were alone again, the Captain insisted on her eating a\nslice of dry toast' and drinking a glass of spiced negus (which he\nmade to perfection); and, encouraging her with every kind word and\ninconsequential quotation be could possibly think of, led her upstairs\nto her bedroom. But he too had something on his mind, and was not easy\nin his manner.\n\n'Good-night, dear heart,' said Captain Cuttle to her at her\nchamber-door.\n\nFlorence raised her lips to his face, and kissed him.\n\nAt any other time the Captain would have been overbalanced by such\na token of her affection and gratitude; but now, although he was very\nsensible of it, he looked in her face with even more uneasiness than\nhe had testified before, and seemed unwilling to leave her.\n\n'Poor Wal'r!' said the Captain.\n\n'Poor, poor Walter!' sighed Florence.\n\n'Drownded, ain't he?' said the Captain.\n\nFlorence shook her head, and sighed.\n\n'Good-night, my lady lass!' said Captain Cuttle, putting out his\nhand.\n\n'God bless you, dear, kind friend!'\n\nBut the Captain lingered still.\n\n'Is anything the matter, dear Captain Cuttle?' said Florence,\neasily alarmed in her then state of mind. 'Have you anything to tell\nme?'\n\n'To tell you, lady lass!' replied the Captain, meeting her eyes in\nconfusion. 'No, no; what should I have to tell you, pretty! You don't\nexpect as I've got anything good to tell you, sure?'\n\n'No!' said Florence, shaking her head.\n\nThe Captain looked at her wistfully, and repeated 'No,' - ' still\nlingering, and still showing embarrassment.\n\n'Poor Wal'r!' said the Captain. 'My Wal'r, as I used to call you!\nOld Sol Gills's nevy! Welcome to all as knowed you, as the flowers in\nMay! Where are you got to, brave boy? Drownded, ain't he?'\n\nConcluding his apostrophe with this abrupt appeal to Florence, the\nCaptain bade her good-night, and descended the stairs, while Florence\nremained at the top, holding the candle out to light him down. He was\nlost in the obscurity, and, judging from the sound of his receding\nfootsteps, was in the act of turning into the little parlour, when his\nhead and shoulders unexpectedly emerged again, as from the deep,\napparently for no other purpose than to repeat, 'Drownded, ain't he,\npretty?' For when he had said that in a tone of tender condolence, he\ndisappeared.\n\nFlorence was very sorry that she should unwittingly, though\nnaturally, have awakened these associations in the mind of her\nprotector, by taking refuge there; and sitting down before the little\ntable where the Captain had arranged the telescope and song-book, and\nthose other rarities, thought of Walter, and of all that was connected\nwith him in the past, until she could have almost wished to lie down\non her bed and fade away. But in her lonely yearning to the dead whom\nshe had loved, no thought of home - no possibility of going back - no\npresentation of it as yet existing, or as sheltering her father - once\nentered her thoughts. She had seen the murder done. In the last\nlingering natural aspect in which she had cherished him through so\nmuch, he had been torn out of her heart, defaced, and slain. The\nthought of it was so appalling to her, that she covered her eyes, and\nshrunk trembling from the least remembrance of the deed, or of the\ncruel hand that did it. If her fond heart could have held his image\nafter that, it must have broken; but it could not; and the void was\nfilled with a wild dread that fled from all confronting with its\nshattered fragments - with such a dread as could have risen out of\nnothing but the depths of such a love, so wronged.\n\nShe dared not look into the glass; for the sight of the darkening\nmark upon her bosom made her afraid of herself, as if she bore about\nher something wicked. She covered it up, with a hasty, faltering hand,\nand in the dark; and laid her weary head down, weeping.\n\nThe Captain did not go to bed for a long time. He walked to and fro\nin the shop and in the little parlour, for a full hour, and, appearing\nto have composed himself by that exercise, sat down with a grave and\nthoughtful face, and read out of a Prayer-book the forms of prayer\nappointed to be used at sea. These were not easily disposed of; the\ngood Captain being a mighty slow, gruff reader, and frequently\nstopping at a hard word to give himself such encouragement as Now, my\nlad! With a will!' or, 'Steady, Ed'ard Cuttle, steady!' which had a\ngreat effect in helping him out of any difficulty. Moreover, his\nspectacles greatly interfered with his powers of vision. But\nnotwithstanding these drawbacks, the Captain, being heartily in\nearnest, read the service to the very last line, and with genuine\nfeeling too; and approving of it very much when he had done, turned\nin, under the counter (but not before he had been upstairs, and\nlistened at Florence's door), with a serene breast, and a most\nbenevolent visage.\n\nThe Captain turned out several times in the course of the night, to\nassure himself that his charge was resting quietly; and once, at\ndaybreak, found that she was awake: for she called to know if it were\nhe, on hearing footsteps near her door.\n\n'Yes' my lady lass,' replied the Captain, in a growling whisper.\n'Are you all right, di'mond?'\n\nFlorence thanked him, and said 'Yes.'\n\nThe Captain could not lose so favourable an opportunity of applying\nhis mouth to the keyhole, and calling through it, like a hoarse\nbreeze, 'Poor Wal'r! Drownded, ain't he?' after which he withdrew, and\nturning in again, slept till seven o'clock.\n\nNor was he free from his uneasy and embarrassed manner all that\nday; though Florence, being busy with her needle in the little\nparlour, was more calm and tranquil than she had been on the day\npreceding. Almost always when she raised her eyes from her work, she\nobserved the captain looking at her, and thoughtfully stroking his\nchin; and he so often hitched his arm-chair close to her, as if he\nwere going to say something very confidential, and hitched it away\nagain, as not being able to make up his mind how to begin, that in the\ncourse of the day he cruised completely round the parlour in that\nfrail bark, and more than once went ashore against the wainscot or the\ncloset door, in a very distressed condition.\n\nIt was not until the twilight that Captain Cuttle, fairly dropping\nanchor, at last, by the side of Florence, began to talk at all\nconnectedly. But when the light of the fire was shining on the walls\nand ceiling of the little room, and on the tea-board and the cups and\nsaucers that were ranged upon the table, and on her calm face turned\ntowards the flame, and reflecting it in the tears that filled her\neyes, the Captain broke a long silence thus:\n\n'You never was at sea, my own?'\n\n'No,' replied Florence.\n\n'Ay,' said the Captain, reverentially; 'it's a almighty element.\nThere's wonders in the deep, my pretty. Think on it when the winds is\nroaring and the waves is rowling. Think on it when the stormy nights\nis so pitch dark,' said the Captain, solemnly holding up his hook, 'as\nyou can't see your hand afore you, excepting when the wiwid lightning\nreweals the same; and when you drive, drive, drive through the storm\nand dark, as if you was a driving, head on, to the world without end,\nevermore, amen, and when found making a note of. Them's the times, my\nbeauty, when a man may say to his messmate (previously a overhauling\nof the wollume), \"A stiff nor'wester's blowing, Bill; hark, don't you\nhear it roar now! Lord help 'em, how I pitys all unhappy folks ashore\nnow!\"' Which quotation, as particularly applicable to the terrors of\nthe ocean, the Captain delivered in a most impressive manner,\nconcluding with a sonorous 'Stand by!'\n\n'Were you ever in a dreadful storm?' asked Florence.\n\n'Why ay, my lady lass, I've seen my share of bad weather,' said the\nCaptain, tremulously wiping his head, 'and I've had my share of\nknocking about; but - but it ain't of myself as I was a meaning to\nspeak. Our dear boy,' drawing closer to her, 'Wal'r, darling, as was\ndrownded.'\n\nThe Captain spoke in such a trembling voice, and looked at Florence\nwith a face so pale and agitated, that she clung to his hand in\naffright.\n\n'Your face is changed,' cried Florence. 'You are altered in a\nmoment. What is it? Dear Captain Cuttle, it turns me cold to see you!'\n\n'What! Lady lass,' returned the Captain, supporting her with his\nhand, 'don't be took aback. No, no! All's well, all's well, my dear.\nAs I was a saying - Wal'r - he's - he's drownded. Ain't he?'\n\nFlorence looked at him intently; her colour came and went; and she\nlaid her hand upon her breast.\n\n'There's perils and dangers on the deep, my beauty,' said the\nCaptain; 'and over many a brave ship, and many and many a bould heart,\nthe secret waters has closed up, and never told no tales. But there's\nescapes upon the deep, too, and sometimes one man out of a score, -\nah! maybe out of a hundred, pretty, - has been saved by the mercy of\nGod, and come home after being given over for dead, and told of all\nhands lost. I - I know a story, Heart's Delight,' stammered the\nCaptain, 'o' this natur, as was told to me once; and being on this\nhere tack, and you and me sitting alone by the fire, maybe you'd like\nto hear me tell it. Would you, deary?'\n\nFlorence, trembling with an agitation which she could not control\nor understand, involuntarily followed his glance, which went behind\nher into the shop, where a lamp was burning. The instant that she\nturned her head, the Captain sprung out of his chair, and interposed\nhis hand.\n\n'There's nothing there, my beauty,' said the Captain. 'Don't look\nthere.'\n\n'Why not?' asked Florence.\n\nThe Captain murmured something about its being dull that way, and\nabout the fire being cheerful. He drew the door ajar, which had been\nstanding open until now, and resumed his seat. Florence followed him\nwith her eyes, and looked intently in his face.\n\n'The story was about a ship, my lady lass,' began the Captain, 'as\nsailed out of the Port of London, with a fair wind and in fair\nweather, bound for - don't be took aback, my lady lass, she was only\nout'ard bound, pretty, only out'ard bound!'\n\nThe expression on Florence's face alarmed the Captain, who was\nhimself very hot and flurried, and showed scarcely less agitation than\nshe did.\n\n'Shall I go on, Beauty?' said the Captain.\n\n'Yes, yes, pray!' cried Florence.\n\nThe Captain made a gulp as if to get down something that was\nsticking in his throat, and nervously proceeded:\n\n'That there unfort'nate ship met with such foul weather, out at\nsea, as don't blow once in twenty year, my darling. There was\nhurricanes ashore as tore up forests and blowed down towns, and there\nwas gales at sea in them latitudes, as not the stoutest wessel ever\nlaunched could live in. Day arter day that there unfort'nate ship\nbehaved noble, I'm told, and did her duty brave, my pretty, but at one\nblow a'most her bulwarks was stove in, her masts and rudder carved\naway, her best man swept overboard, and she left to the mercy of the\nstorm as had no mercy but blowed harder and harder yet, while the\nwaves dashed over her, and beat her in, and every time they come a\nthundering at her, broke her like a shell. Every black spot in every\nmountain of water that rolled away was a bit o' the ship's life or a\nliving man, and so she went to pieces, Beauty, and no grass will never\ngrow upon the graves of them as manned that ship.'\n\n'They were not all lost!' cried Florence. 'Some were saved! - Was\none?'\n\n'Aboard o' that there unfort'nate wessel,' said the Captain, rising\nfrom his chair, and clenching his hand with prodigious energy and\nexultation, 'was a lad, a gallant lad - as I've heerd tell - that had\nloved, when he was a boy, to read and talk about brave actions in\nshipwrecks - I've heerd him! I've heerd him! - and he remembered of\n'em in his hour of need; for when the stoutest and oldest hands was\nhove down, he was firm and cheery. It warn't the want of objects to\nlike and love ashore that gave him courage, it was his nat'ral mind.\nI've seen it in his face, when he was no more than a child - ay, many\na time! - and when I thought it nothing but his good looks, bless\nhim!'\n\n'And was he saved!' cried Florence. 'Was he saved!'\n\n'That brave lad,' said the Captain, - 'look at me, pretty! Don't\nlook round - '\n\nFlorence had hardly power to repeat, 'Why not?'\n\n'Because there's nothing there, my deary,' said the Captain. 'Don't\nbe took aback, pretty creetur! Don't, for the sake of Wal'r, as was\ndear to all on us! That there lad,' said the Captain, 'arter working\nwith the best, and standing by the faint-hearted, and never making no\ncomplaint nor sign of fear, and keeping up a spirit in all hands that\nmade 'em honour him as if he'd been a admiral - that lad, along with\nthe second-mate and one seaman, was left, of all the beatin' hearts\nthat went aboard that ship, the only living creeturs - lashed to a\nfragment of the wreck, and driftin' on the stormy sea.\n\nWere they saved?' cried Florence.\n\n'Days and nights they drifted on them endless waters,' said the\nCaptain, 'until at last - No! Don't look that way, pretty! - a sail\nbore down upon 'em, and they was, by the Lord's mercy, took aboard:\ntwo living and one dead.'\n\n'Which of them was dead?' cried Florence.\n\n'Not the lad I speak on,' said the Captain.\n\n'Thank God! oh thank God!'\n\n'Amen!' returned the Captain hurriedly. 'Don't be took aback! A\nminute more, my lady lass! with a good heart! - aboard that ship, they\nwent a long voyage, right away across the chart (for there warn't no\ntouching nowhere), and on that voyage the seaman as was picked up with\nhim died. But he was spared, and - '\n\nThe Captain, without knowing what he did, had cut a slice of bread\nfrom the loaf, and put it on his hook (which was his usual\ntoasting-fork), on which he now held it to the fire; looking behind\nFlorence with great emotion in his face, and suffering the bread to\nblaze and burn like fuel.\n\n'Was spared,' repeated Florence, 'and-?'\n\n'And come home in that ship,' said the Captain, still looking in\nthe same direction, 'and - don't be frightened, pretty - and landed;\nand one morning come cautiously to his own door to take a obserwation,\nknowing that his friends would think him drownded, when he sheered off\nat the unexpected - '\n\n'At the unexpected barking of a dog?' cried Florence, quickly.\n\n'Yes,' roared the Captain. 'Steady, darling! courage! Don't look\nround yet. See there! upon the wall!'\n\nThere was the shadow of a man upon the wall close to her. She\nstarted up, looked round, and with a piercing cry, saw Walter Gay\nbehind her!\n\nShe had no thought of him but as a brother, a brother rescued from\nthe grave; a shipwrecked brother saved and at her side; and rushed\ninto his arms. In all the world, he seemed to be her hope, her\ncomfort, refuge, natural protector. 'Take care of Walter, I was fond\nof Walter!' The dear remembrance of the plaintive voice that said so,\nrushed upon her soul, like music in the night. 'Oh welcome home, dear\nWalter! Welcome to this stricken breast!' She felt the words, although\nshe could not utter them, and held him in her pure embrace.\n\nCaptain Cuttle, in a fit of delirium, attempted to wipe his head\nwith the blackened toast upon his hook: and finding it an uncongenial\nsubstance for the purpose, put it into the crown of his glazed hat,\nput the glazed hat on with some difficulty, essayed to sing a verse of\nLovely Peg, broke down at the first word, and retired into the shop,\nwhence he presently came back express, with a face all flushed and\nbesmeared, and the starch completely taken out of his shirt-collar, to\nsay these words:\n\n'Wal'r, my lad, here is a little bit of property as I should wish\nto make over, jintly!'\n\nThe Captain hastily produced the big watch, the teaspoons, the\nsugar-tongs, and the canister, and laying them on the table, swept\nthem with his great hand into Walter's hat; but in handing that\nsingular strong box to Walter, he was so overcome again, that he was\nfain to make another retreat into the shop, and absent himself for a\nlonger space of time than on his first retirement.\n\nBut Walter sought him out, and brought him back; and then the\nCaptain's great apprehension was, that Florence would suffer from this\nnew shock. He felt it so earnestly, that he turned quite rational, and\npositively interdicted any further allusion to Walter's adventures for\nsome days to come. Captain Cuttle then became sufficiently composed to\nrelieve himself of the toast in his hat, and to take his place at the\ntea-board; but finding Walter's grasp upon his shoulder, on one side,\nand Florence whispering her tearful congratulations on the other, the\nCaptain suddenly bolted again, and was missing for a good ten minutes.\n\nBut never in all his life had the Captain's face so shone and\nglistened, as when, at last, he sat stationary at the tea-board,\nlooking from Florence to Walter, and from Walter to Florence. Nor was\nthis effect produced or at all heightened by the immense quantity of\npolishing he had administered to his face with his coat-sleeve during\nthe last half-hour. It was solely the effect of his internal emotions.\nThere was a glory and delight within the Captain that spread itself\nover his whole visage, and made a perfect illumination there.\n\nThe pride with which the Captain looked upon the bronzed cheek and\nthe courageous eyes of his recovered boy; with which he saw the\ngenerous fervour of his youth, and all its frank and hopeful\nqualities, shining once more, in the fresh, wholesome manner, and the\nardent face, would have kindled something of this light in his\ncountenance. The admiration and sympathy with which he turned his eyes\non Florence, whose beauty, grace, and innocence could have won no\ntruer or more zealous champion than himself, would have had an equal\ninfluence upon him. But the fulness of the glow he shed around him\ncould only have been engendered in his contemplation of the two\ntogether, and in all the fancies springing out of that association,\nthat came sparkling and beaming into his head, and danced about it.\n\nHow they talked of poor old Uncle Sol, and dwelt on every little\ncircumstance relating to his disappearance; how their joy was\nmoderated by the old man's absence and by the misfortunes of Florence;\nhow they released Diogenes, whom the Captain had decoyed upstairs some\ntime before, lest he should bark again; the Captain, though he was in\none continual flutter, and made many more short plunges into the shop,\nfully comprehended. But he no more dreamed that Walter looked on\nFlorence, as it were, from a new and far-off place; that while his\neyes often sought the lovely face, they seldom met its open glance of\nsisterly affection, but withdrew themselves when hers were raised\ntowards him; than he believed that it was Walter's ghost who sat\nbeside him. He saw them together in their youth and beauty, and he\nknew the story of their younger days, and he had no inch of room\nbeneath his great blue waistcoat for anything save admiration of such\na pair, and gratitude for their being reunited.\n\nThey sat thus, until it grew late. The Captain would have been\ncontent to sit so for a week. But Walter rose, to take leave for the\nnight.\n\n'Going, Walter!' said Florence. 'Where?'\n\n'He slings his hammock for the present, lady lass,' said Captain\nCuttle, 'round at Brogley's. Within hail, Heart's Delight.'\n\n'I am the cause of your going away, Walter,' said Florence. 'There\nis a houseless sister in your place.'\n\n'Dear Miss Dombey,' replied Walter, hesitating - 'if it is not too\nbold to call you so!\n\nWalter!' she exclaimed, surprised.\n\n'If anything could make me happier in being allowed to see and\nspeak to you, would it not be the discovery that I had any means on\nearth of doing you a moment's service! Where would I not go, what\nwould I not do, for your sake?'\n\nShe smiled, and called him brother.\n\n'You are so changed,' said Walter -\n\n'I changed!' she interrupted.\n\n'To me,' said Walter, softly, as if he were thinking aloud,\n'changed to me. I left you such a child, and find you - oh! something\nso different - '\n\n'But your sister, Walter. You have not forgotten what we promised\nto each other, when we parted?'\n\n'Forgotten!' But he said no more.\n\n'And if you had - if suffering and danger had driven it from your\nthoughts - which it has not - you would remember it now, Walter, when\nyou find me poor and abandoned, with no home but this, and no friends\nbut the two who hear me speak!'\n\n'I would! Heaven knows I would!' said Walter.\n\n'Oh, Walter,' exclaimed Florence, through her sobs and tears. 'Dear\nbrother! Show me some way through the world - some humble path that I\nmay take alone, and labour in, and sometimes think of you as one who\nwill protect and care for me as for a sister! Oh, help me, Walter, for\nI need help so much!'\n\n'Miss Dombey! Florence! I would die to help you. But your friends\nare proud and rich. Your father - '\n\n'No, no! Walter!' She shrieked, and put her hands up to her head,\nin an attitude of terror that transfixed him where he stood. 'Don't\nsay that word!'\n\nHe never, from that hour, forgot the voice and look with which she\nstopped him at the name. He felt that if he were to live a hundred\nyears, he never could forget it.\n\nSomewhere - anywhere - but never home! All past, all gone, all\nlost, and broken up! The whole history of her untold slight and\nsuffering was in the cry and look; and he felt he never could forget\nit, and he never did.\n\nShe laid her gentle face upon the Captain's shoulder, and related\nhow and why she had fled. If every sorrowing tear she shed in doing\nso, had been a curse upon the head of him she never named or blamed,\nit would have been better for him, Walter thought, with awe, than to\nbe renounced out of such a strength and might of love.\n\n'There, precious!' said the Captain, when she ceased; and deep\nattention the Captain had paid to her while she spoke; listening, with\nhis glazed hat all awry and his mouth wide open. 'Awast, awast, my\neyes! Wal'r, dear lad, sheer off for to-night, and leave the pretty\none to me!'\n\nWalter took her hand in both of his, and put it to his lips, and\nkissed it. He knew now that she was, indeed, a homeless wandering\nfugitive; but, richer to him so, than in all the wealth and pride of\nher right station, she seemed farther off than even on the height that\nhad made him giddy in his boyish dreams.\n\nCaptain Cuttle, perplexed by no such meditations, guarded Florence\nto her room, and watched at intervals upon the charmed ground outside\nher door - for such it truly was to him - until he felt sufficiently\neasy in his mind about her, to turn in under the counter. On\nabandoning his watch for that purpose, he could not help calling once,\nrapturously, through the keyhole, 'Drownded. Ain't he, pretty?' - or,\nwhen he got downstairs, making another trial at that verse of Lovely\nPeg. But it stuck in his throat somehow, and he could make nothing of\nit; so he went to bed, and dreamed that old Sol Gills was married to\nMrs MacStinger, and kept prisoner by that lady in a secret chamber on\na short allowance of victuals.\n\n\n\nCHAPTER 50.\n\nMr Toots's Complaint\n\n\n\nThere was an empty room above-stairs at the wooden Midshipman's,\nwhich, in days of yore, had been Walter's bedroom. Walter, rousing up\nthe Captain betimes in the morning, proposed that they should carry\nthither such furniture out of the little parlour as would grace it\nbest, so that Florence might take possession of it when she rose. As\nnothing could be more agreeable to Captain Cuttle than making himself\nvery red and short of breath in such a cause, he turned to (as he\nhimself said) with a will; and, in a couple of hours, this garret was\ntransformed into a species of land-cabin, adorned with all the\nchoicest moveables out of the parlour, inclusive even of the Tartar\nfrigate, which the Captain hung up over the chimney-piece with such\nextreme delight, that he could do nothing for half-an-hour afterwards\nbut walk backward from it, lost in admiration.\n\nThe Captain could be indueed by no persuasion of Walter's to wind\nup the big watch, or to take back the canister, or to touch the\nsugar-tongs and teaspoons. 'No, no, my lad;' was the Captain's\ninvariable reply to any solicitation of the kind, 'I've made that\nthere little property over, jintly.' These words he repeated with\ngreat unction and gravity, evidently believing that they had the\nvirtue of an Act of Parliament, and that unless he committed himself\nby some new admission of ownership, no flaw could be found in such a\nform of conveyance.\n\nIt was an advantage of the new arrangement, that besides the\ngreater seclusion it afforded Florence, it admitted of the Midshipman\nbeing restored to his usual post of observation, and also of the shop\nshutters being taken down. The latter ceremony, however little\nimportance the unconscious Captain attached to it, was not wholly\nsuperfluous; for, on the previous day, so much excitement had been\noccasioned in the neighbourhood, by the shutters remaining unopened,\nthat the Instrument-maker's house had been honoured with an unusual\nshare of public observation, and had been intently stared at from the\nopposite side of the way, by groups of hungry gazers, at any time\nbetween sunrise and sunset. The idlers and vagabonds had been\nparticularly interested in the Captain's fate; constantly grovelling\nin the mud to apply their eyes to the cellar-grating, under the\nshop-window, and delighting their imaginations with the fancy that\nthey could see a piece of his coat as he hung in a corner; though this\nsettlement of him was stoutly disputed by an opposite faction, who\nwere of opinion that he lay murdered with a hammer, on the stairs. It\nwas not without exciting some discontent, therefore, that the subject\nof these rumours was seen early in the morning standing at his\nshop-door as hale and hearty as if nothing had happened; and the\nbeadle of that quarter, a man of an ambitious character, who had\nexpected to have the distinction of being present at the breaking open\nof the door, and of giving evidence in full uniform before the\ncoroner, went so far as to say to an opposite neighbour, that the chap\nin the glazed hat had better not try it on there - without more\nparticularly mentioning what - and further, that he, the beadle, would\nkeep his eye upon him.\n\n'Captain Cuttle,' said Walter, musing, when they stood resting from\ntheir labours at the shop-door, looking down the old familiar street;\nit being still early in the morning; 'nothing at all of Uncle Sol, in\nall that time!'\n\n'Nothing at all, my lad,' replied the Captain, shaking his head.\n\n'Gone in search of me, dear, kind old man,' said Walter: 'yet never\nwrite to you! But why not? He says, in effect, in this packet that you\ngave me,' taking the paper from his pocket, which had been opened in\nthe presence of the enlightened Bunsby, 'that if you never hear from\nhim before opening it, you may believe him dead. Heaven forbid! But\nyou would have heard of him, even if he were dead! Someone would have\nwritten, surely, by his desire, if he could not; and have said, \"on\nsuch a day, there died in my house,\" or \"under my care,\" or so forth,\n\"Mr Solomon Gills of London, who left this last remembrance and this\nlast request to you\".'\n\nThe Captain, who had never climbed to such a clear height of\nprobability before, was greatly impressed by the wide prospect it\nopened, and answered, with a thoughtful shake of his head, 'Well said,\nmy lad; wery well said.'\n\n'I have been thinking of this, or, at least,' said Walter,\ncolouring, 'I have been thinking of one thing and another, all through\na sleepless night, and I cannot believe, Captain Cuttle, but that my\nUncle Sol (Lord bless him!) is alive, and will return. I don't so much\nwonder at his going away, because, leaving out of consideration that\nspice of the marvellous which was always in his character, and his\ngreat affection for me, before which every other consideration of his\nlife became nothing, as no one ought to know so well as I who had the\nbest of fathers in him,' - Walter's voice was indistinct and husky\nhere, and he looked away, along the street, - 'leaving that out of\nconsideration, I say, I have often read and heard of people who,\nhaving some near and dear relative, who was supposed to be shipwrecked\nat sea, have gone down to live on that part of the sea-shore where any\ntidings of the missing ship might be expected to arrive, though only\nan hour or two sooner than elsewhere, or have even gone upon her track\nto the place whither she was bound, as if their going would create\nintelligence. I think I should do such a thing myself, as soon as\nanother, or sooner than many, perhaps. But why my Uncle shouldn't\nwrite to you, when he so clearly intended to do so, or how he should\ndie abroad, and you not know it through some other hand, I cannot make\nout.'\n\nCaptain Cuttle observed, with a shake of his head, that Jack Bunsby\nhimself hadn't made it out, and that he was a man as could give a\npretty taut opinion too.\n\n'If my Uncle had been a heedless young man, likely to be entrapped\nby jovial company to some drinking-place, where he was to be got rid\nof for the sake of what money he might have about him,' said Walter;\n'or if he had been a reckless sailor, going ashore with two or three\nmonths' pay in his pocket, I could understand his disappearing, and\nleaving no trace behind. But, being what he was - and is, I hope - I\ncan't believe it.'\n\n'Wal'r, my lad,' inquired the Captain, wistfully eyeing him as he\npondered and pondered, 'what do you make of it, then?'\n\n'Captain Cuttle,' returned Walter, 'I don't know what to make of\nit. I suppose he never has written! There is no doubt about that?'\n\n'If so be as Sol Gills wrote, my lad,' replied the Captain,\nargumentatively, 'where's his dispatch?'\n\n'Say that he entrusted it to some private hand,' suggested Walter,\n'and that it has been forgotten, or carelessly thrown aside, or lost.\nEven that is more probable to me, than the other event. In short, I\nnot only cannot bear to contemplate that other event, Captain Cuttle,\nbut I can't, and won't.'\n\n'Hope, you see, Wal'r,' said the Captain, sagely, 'Hope. It's that\nas animates you. Hope is a buoy, for which you overhaul your Little\nWarbler, sentimental diwision, but Lord, my lad, like any other buoy,\nit only floats; it can't be steered nowhere. Along with the\nfigure-head of Hope,' said the Captain, 'there's a anchor; but what's\nthe good of my having a anchor, if I can't find no bottom to let it go\nin?'\n\nCaptain Cuttle said this rather in his character of a sagacious\ncitizen and householder, bound to impart a morsel from his stores of\nwisdom to an inexperienced youth, than in his own proper person.\nIndeed, his face was quite luminous as he spoke, with new hope, caught\nfrom Walter; and he appropriately concluded by slapping him on the\nback; and saying, with enthusiasm, 'Hooroar, my lad! Indiwidually, I'm\no' your opinion.' Walter, with his cheerful laugh, returned the\nsalutation, and said:\n\n'Only one word more about my Uncle at present' Captain Cuttle. I\nsuppose it is impossible that he can have written in the ordinary\ncourse - by mail packet, or ship letter, you understand - '\n\n'Ay, ay, my lad,' said the Captain approvingly.\n\nAnd that you have missed the letter, anyhow?'\n\n'Why, Wal'r,' said the Captain, turning his eyes upon him with a\nfaint approach to a severe expression, 'ain't I been on the look-out\nfor any tidings of that man o' science, old Sol Gills, your Uncle, day\nand night, ever since I lost him? Ain't my heart been heavy and\nwatchful always, along of him and you? Sleeping and waking, ain't I\nbeen upon my post, and wouldn't I scorn to quit it while this here\nMidshipman held together!'\n\n'Yes, Captain Cuttle,' replied Walter, grasping his hand, 'I know\nyou would, and I know how faithful and earnest all you say and feel\nis. I am sure of it. You don't doubt that I am as sure of it as I am\nthat my foot is again upon this door-step, or that I again have hold\nof this true hand. Do you?'\n\n'No, no, Wal'r,' returned the Captain, with his beaming\n\n'I'll hazard no more conjectures,' said Walter, fervently shaking\nthe hard hand of the Captain, who shook his with no less goodwill.\n'All I will add is, Heaven forbid that I should touch my Uncle's\npossessions, Captain Cuttle! Everything that he left here, shall\nremain in the care of the truest of stewards and kindest of men - and\nif his name is not Cuttle, he has no name! Now, best of friends, about\n- Miss Dombey.'\n\nThere was a change in Walter's manner, as he came to these two\nwords; and when he uttered them, all his confidence and cheerfulness\nappeared to have deserted him.\n\n'I thought, before Miss Dombey stopped me when I spoke of her\nfather last night,' said Walter, ' - you remember how?'\n\nThe Captain well remembered, and shook his head.\n\n'I thought,' said Walter, 'before that, that we had but one hard\nduty to perform, and that it was, to prevail upon her to communicate\nwith her friends, and to return home.'\n\nThe Captain muttered a feeble 'Awast!' or a 'Stand by!' or\nsomething or other, equally pertinent to the occasion; but it was\nrendered so extremely feeble by the total discomfiture with which he\nreceived this announcement, that what it was, is mere matter of\nconjecture.\n\n'But,' said Walter, 'that is over. I think so, no longer. I would\nsooner be put back again upon that piece of wreck, on which I have so\noften floated, since my preservation, in my dreams, and there left to\ndrift, and drive, and die!'\n\n'Hooroar, my lad!' exclaimed the Captain, in a burst of\nuncontrollable satisfaction. 'Hooroar! hooroar! hooroar!'\n\n'To think that she, so young, so good, and beautiful,' said Walter,\n'so delicately brought up, and born to such a different fortune,\nshould strive with the rough world! But we have seen the gulf that\ncuts off all behind her, though no one but herself can know how deep\nit is; and there is no return.\n\nCaptain Cuttle, without quite understanding this, greatly approved\nof it, and observed in a tone of strong corroboration, that the wind\nwas quite abaft.\n\n'She ought not to be alone here; ought she, Captain Cuttle?' said\nWalter, anxiously.\n\n'Well, my lad,' replied the Captain, after a little sagacious\nconsideration. 'I don't know. You being here to keep her company, you\nsee, and you two being jintly - '\n\n'Dear Captain Cuttle!' remonstrated Walter. 'I being here! Miss\nDombey, in her guileless innocent heart, regards me as her adopted\nbrother; but what would the guile and guilt of my heart be, if I\npretended to believe that I had any right to approach her, familiarly,\nin that character - if I pretended to forget that I am bound, in\nhonour, not to do it?'\n\n'Wal'r, my lad,' hinted the Captain, with some revival of his\ndiscomfiture, 'ain't there no other character as - '\n\n'Oh!' returned Walter, 'would you have me die in her esteem - in\nsuch esteem as hers - and put a veil between myself and her angel's\nface for ever, by taking advantage of her being here for refuge, so\ntrusting and so unprotected, to endeavour to exalt myself into her\nlover? What do I say? There is no one in the world who would be more\nopposed to me if I could do so, than you.'\n\n'Wal'r, my lad,' said the Captain, drooping more and more,\n'prowiding as there is any just cause or impediment why two persons\nshould not be jined together in the house of bondage, for which you'll\noverhaul the place and make a note, I hope I should declare it as\npromised and wowed in the banns. So there ain't no other character;\nain't there, my lad?'\n\nWalter briskly waved his hand in the negative.\n\n'Well, my lad,' growled the Captain slowly, 'I won't deny but what\nI find myself wery much down by the head, along o' this here, or but\nwhat I've gone clean about. But as to Lady lass, Wal'r, mind you,\nwot's respect and duty to her, is respect and duty in my articles,\nhowsumever disapinting; and therefore I follows in your wake, my lad,\nand feel as you are, no doubt, acting up to yourself. And there ain't\nno other character, ain't there?' said the Captain, musing over the\nruins of his fallen castle, with a very despondent face.\n\n'Now, Captain Cuttle,' said Walter, starting a fresh point with a\ngayer air, to cheer the Captain up - but nothing could do that; he was\ntoo much concerned - 'I think we should exert ourselves to find\nsomeone who would be a proper attendant for Miss Dombey while she\nremains here, and who may be trusted. None of her relations may. It's\nclear Miss Dombey feels that they are all subservient to her father.\nWhat has become of Susan?'\n\n'The young woman?' returned the Captain. 'It's my belief as she was\nsent away again the will of Heart's Delight. I made a signal for her\nwhen Lady lass first come, and she rated of her wery high, and said\nshe had been gone a long time.'\n\n'Then,' said Walter, 'do you ask Miss Dombey where she's gone, and\nwe'll try to find her. The morning's getting on, and Miss Dombey will\nsoon be rising. You are her best friend. Wait for her upstairs, and\nleave me to take care of all down here.'\n\nThe Captain, very crest-fallen indeed, echoed the sigh with which\nWalter said this, and complied. Florence was delighted with her new\nroom, anxious to see Walter, and overjoyed at the prospect of greeting\nher old friend Susan. But Florence could not say where Susan was gone,\nexcept that it was in Essex, and no one could say, she remembered,\nunless it were Mr Toots.\n\nWith this information the melancholy Captain returned to Walter,\nand gave him to understand that Mr Toots was the young gentleman whom\nhe had encountered on the door-step, and that he was a friend of his,\nand that he was a young gentleman of property, and that he hopelessly\nadored Miss Dombey. The Captain also related how the intelligence of\nWalter's supposed fate had first made him acquainted with Mr Toots,\nand how there was solemn treaty and compact between them, that Mr\nToots should be mute upon the subject of his love.\n\nThe question then was, whether Florence could trust Mr Toots; and\nFlorence saying, with a smile, 'Oh, yes, with her whole heart!' it\nbecame important to find out where Mr Toots lived. This, Florence\ndidn't know, and the Captain had forgotten; and the Captain was\ntelling Walter, in the little parlour, that Mr Toots was sure to be\nthere soon, when in came Mr Toots himself.\n\n'Captain Gills,' said Mr Toots, rushing into the parlour without\nany ceremony, 'I'm in a state of mind bordering on distraction!'\n\nMr Toots had discharged those words, as from a mortar, before he\nobserved Walter, whom he recognised with what may be described as a\nchuckle of misery.\n\n'You'll excuse me, Sir,' said Mr Toots, holding his forehead, 'but\nI'm at present in that state that my brain is going, if not gone, and\nanything approaching to politeness in an individual so situated would\nbe a hollow mockery. Captain Gills, I beg to request the favour of a\nprivate interview.'\n\n'Why, Brother,' returned the Captain, taking him by the hand, 'you\nare the man as we was on the look-out for.'\n\n'Oh, Captain Gills,' said Mr Toots, 'what a look-out that must be,\nof which I am the object! I haven't dared to shave, I'm in that rash\nstate. I haven't had my clothes brushed. My hair is matted together. I\ntold the Chicken that if he offered to clean my boots, I'd stretch him\na Corpse before me!'\n\nAll these indications of a disordered mind were verified in Mr\nToots's appearance, which was wild and savage.\n\n'See here, Brother,' said the Captain. 'This here's old Sol Gills's\nnevy Wal'r. Him as was supposed to have perished at sea'\n\nMr Toots took his hand from his forehead, and stared at Walter.\n\n'Good gracious me!' stammered Mr Toots. 'What a complication of\nmisery! How-de-do? I - I - I'm afraid you must have got very wet.\nCaptain Gills, will you allow me a word in the shop?'\n\nHe took the Captain by the coat, and going out with him whispered:\n\n'That then, Captain Gills, is the party you spoke of, when you said\nthat he and Miss Dombey were made for one another?'\n\n'Why, ay, my lad,' replied the disconsolate Captain; 'I was of that\nmind once.'\n\n'And at this time!' exclaimed Mr Toots, with his hand to his\nforehead again. 'Of all others! - a hated rival! At least, he ain't a\nhated rival,' said Mr Toots, stopping short, on second thoughts, and\ntaking away his hand; 'what should I hate him for? No. If my affection\nhas been truly disinterested, Captain Gills, let me prove it now!'\n\nMr Toots shot back abruptly into the parlour, and said, wringing\nWalter by the hand:\n\n'How-de-do? I hope you didn't take any cold. I - I shall be very\nglad if you'll give me the pleasure of your acquaintance. I wish you\nmany happy returns of the day. Upon my word and honour,' said Mr\nToots, warming as he became better acquainted with Walter's face and\nfigure, 'I'm very glad to see you!'\n\n'Thank you, heartily,' said Walter. 'I couldn't desire a more\ngenuine and genial welcome.'\n\n'Couldn't you, though?' said Mr Toots, still shaking his hand.\n'It's very kind of you. I'm much obliged to you. How-de-do? I hope you\nleft everybody quite well over the - that is, upon the - I mean\nwherever you came from last, you know.'\n\nAll these good wishes, and better intentions, Walter responded to\nmanfully.\n\n'Captain Gills,' said Mr Toots, 'I should wish to be strictly\nhonourable; but I trust I may be allowed now, to allude to a certain\nsubject that - '\n\n'Ay, ay, my lad,' returned the Captain. 'Freely, freely.'\n\n'Then, Captain Gills,' said Mr Toots, 'and Lieutenant Walters - are\nyou aware that the most dreadful circumstances have been happening at\nMr Dombey's house, and that Miss Dombey herself has left her father,\nwho, in my opinion,' said Mr Toots, with great excitement, 'is a\nBrute, that it would be a flattery to call a - a marble monument, or a\nbird of prey, - and that she is not to be found, and has gone no one\nknows where?'\n\n'May I ask how you heard this?' inquired Walter.\n\n'Lieutenant Walters,' said Mr Toots, who had arrived at that\nappellation by a process peculiar to himself; probably by jumbling up\nhis Christian name with the seafaring profession, and supposing some\nrelationship between him and the Captain, which would extend, as a\nmatter of course, to their titles; 'Lieutenant Walters, I can have no\nobjection to make a straightforward reply. The fact is, that feeling\nextremely interested in everything that relates to Miss Dombey - not\nfor any selfish reason, Lieutenant Walters, for I am well aware that\nthe most able thing I could do for all parties would be to put an end\nto my existence, which can only be regarded as an inconvenience - I\nhave been in the habit of bestowing a trifle now and then upon a\nfootman; a most respectable young man, of the name of Towlinson, who\nhas lived in the family some time; and Towlinson informed me,\nyesterday evening, that this was the state of things. Since which,\nCaptain Gills - and Lieutenant Walters - I have been perfectly\nfrantic, and have been lying down on the sofa all night, the Ruin you\nbehold.'\n\n'Mr Toots,' said Walter, 'I am happy to be able to relieve your\nmind. Pray calm yourself. Miss Dombey is safe and well.'\n\n'Sir!' cried Mr Toots, starting from his chair and shaking hands\nwith him anew, 'the relief is so excessive, and unspeakable, that if\nyou were to tell me now that Miss Dombey was married even, I could\nsmile. Yes, Captain Gills,' said Mr Toots, appealing to him, 'upon my\nsoul and body, I really think, whatever I might do to myself\nimmediately afterwards, that I could smile, I am so relieved.'\n\n'It will be a greater relief and delight still, to such a generous\nmind as yours,' said Walter, not at all slow in returning his\ngreeting, 'to find that you can render service to Miss Dombey. Captain\nCuttle, will you have the kindness to take Mr Toots upstairs?'\n\nThe Captain beckoned to Mr Toots, who followed him with a\nbewildered countenance, and, ascending to the top of the house, was\nintroduced, without a word of preparation from his conductor, into\nFlorence's new retreat.\n\nPoor Mr Toots's amazement and pleasure at sight of her were such,\nthat they could find a vent in nothing but extravagance. He ran up to\nher, seized her hand, kissed it, dropped it, seized it again, fell\nupon one knee, shed tears, chuckled, and was quite regardless of his\ndanger of being pinned by Diogenes, who, inspired by the belief that\nthere was something hostile to his mistress in these demonstrations,\nworked round and round him, as if only undecided at what particular\npoint to go in for the assault, but quite resolved to do him a fearful\nmischief.\n\n'Oh Di, you bad, forgetful dog! Dear Mr Toots, I am so rejoiced to\nsee you!'\n\n'Thankee,' said Mr Toots, 'I am pretty well, I'm much obliged to\nyou, Miss Dombey. I hope all the family are the same.'\n\nMr Toots said this without the least notion of what he was talking\nabout, and sat down on a chair, staring at Florence with the liveliest\ncontention of delight and despair going on in his face that any face\ncould exhibit.\n\n'Captain Gills and Lieutenant Walters have mentioned, Miss Dombey,'\ngasped Mr Toots, 'that I can do you some service. If I could by any\nmeans wash out the remembrance of that day at Brighton, when I\nconducted myself - much more like a Parricide than a person of\nindependent property,' said Mr Toots, with severe self-accusation, 'I\nshould sink into the silent tomb with a gleam of joy.'\n\n'Pray, Mr Toots,' said Florence, 'do not wish me to forget anything\nin our acquaintance. I never can, believe me. You have been far too\nkind and good to me always.'\n\n'Miss Dombey,' returned Mr Toots, 'your consideration for my\nfeelings is a part of your angelic character. Thank you a thousand\ntimes. It's of no consequence at all.'\n\n'What we thought of asking you,' said Florence, 'is, whether you\nremember where Susan, whom you were so kind as to accompany to the\ncoach-office when she left me, is to be found.'\n\n'Why I do not certainly, Miss Dombey,' said Mr Toots, after a\nlittle consideration, 'remember the exact name of the place that was\non the coach; and I do recollect that she said she was not going to\nstop there, but was going farther on. But, Miss Dombey, if your object\nis to find her, and to have her here, myself and the Chicken will\nproduce her with every dispatch that devotion on my part, and great\nintelligence on the Chicken's, can ensure.\n\nMr Toots was so manifestly delighted and revived by the prospect of\nbeing useful, and the disinterested sincerity of his devotion was so\nunquestionable, that it would have been cruel to refuse him. Florence,\nwith an instinctive delicacy, forbore to urge the least obstacle,\nthough she did not forbear to overpower him with thanks; and Mr Toots\nproudly took the commission upon himself for immediate execution.\n\n'Miss Dombey,' said Mr Toots, touching her proffered hand, with a\npang of hopeless love visibly shooting through him, and flashing out\nin his face, 'Good-bye! Allow me to take the liberty of saying, that\nyour misfortunes make me perfectly wretched, and that you may trust\nme, next to Captain Gills himself. I am quite aware, Miss Dombey, of\nmy own deficiencies - they're not of the least consequence, thank you\n- but I am entirely to be relied upon, I do assure you, Miss Dombey.'\n\nWith that Mr Toots came out of the room, again accompanied by the\nCaptain, who, standing at a little distance, holding his hat under his\narm and arranging his scattered locks with his hook, had been a not\nuninterested witness of what passed. And when the door closed behind\nthem, the light of Mr Toots's life was darkly clouded again.\n\n'Captain Gills,' said that gentleman, stopping near the bottom of\nthe stairs, and turning round, 'to tell you the truth, I am not in a\nframe of mind at the present moment, in which I could see Lieutenant\nWalters with that entirely friendly feeling towards him that I should\nwish to harbour in my breast. We cannot always command our feelings,\nCaptain Gills, and I should take it as a particular favour if you'd\nlet me out at the private door.'\n\n'Brother,' returned the Captain, 'you shall shape your own course.\nWotever course you take, is plain and seamanlike, I'm wery sure.\n\n'Captain Gills,' said Mr Toots, 'you're extremely kind. Your good\nopinion is a consolation to me. There is one thing,' said Mr Toots,\nstanding in the passage, behind the half-opened door, 'that I hope\nyou'll bear in mind, Captain Gills, and that I should wish Lieutenant\nWalters to be made acquainted with. I have quite come into my property\nnow, you know, and - and I don't know what to do with it. If I could\nbe at all useful in a pecuniary point of view, I should glide into the\nsilent tomb with ease and smoothness.'\n\nMr Toots said no more, but slipped out quietly and shut the door\nupon himself, to cut the Captain off from any reply.\n\nFlorence thought of this good creature, long after he had left her,\nwith mingled emotions of pain and pleasure. He was so honest and\nwarm-hearted, that to see him again and be assured of his truth to her\nin her distress, was a joy and comfort beyond all price; but for that\nvery reason, it was so affecting to think that she caused him a\nmoment's unhappiness, or ruffled, by a breath, the harmless current of\nhis life, that her eyes filled with tears, and her bosom overflowed\nwith pity. Captain Cuttle, in his different way, thought much of Mr\nToots too; and so did Walter; and when the evening came, and they were\nall sitting together in Florence's new room, Walter praised him in a\nmost impassioned manner, and told Florence what he had said on leaving\nthe house, with every graceful setting-off in the way of comment and\nappreciation that his own honesty and sympathy could surround it with.\n\nMr Toots did not return upon the next day, or the next, or for\nseveral days; and in the meanwhile Florence, without any new alarm,\nlived like a quiet bird in a cage, at the top of the old\nInstrument-maker's house. But Florence drooped and hung her head more\nand more plainly, as the days went on; and the expression that had\nbeen seen in the face of the dead child, was often turned to the sky\nfrom her high window, as if it sought his angel out, on the bright\nshore of which he had spoken: lying on his little bed.\n\nFlorence had been weak and delicate of late, and the agitation she\nhad undergone was not without its influences on her health. But it was\nno bodily illness that affected her now. She was distressed in mind;\nand the cause of her distress was Walter.\n\nInterested in her, anxious for her, proud and glad to serve her,\nand showing all this with the enthusiasm and ardour of his character,\nFlorence saw that he avoided her. All the long day through, he seldom\napproached her room. If she asked for him, he came, again for the\nmoment as earnest and as bright as she remembered him when she was a\nlost child in the staring streets; but he soon became constrained -\nher quick affection was too watchful not to know it - and uneasy, and\nsoon left her. Unsought, he never came, all day, between the morning\nand the night. When the evening closed in, he was always there, and\nthat was her happiest time, for then she half believed that the old\nWalter of her childhood was not changed. But, even then, some trivial\nword, look, or circumstance would show her that there was an\nindefinable division between them which could not be passed.\n\nAnd she could not but see that these revealings of a great\nalteration in Walter manifested themselves in despite of his utmost\nefforts to hide them. In his consideration for her, she thought, and\nin the earnestness of his desire to spare her any wound from his kind\nhand, he resorted to innumerable little artifices and disguises. So\nmuch the more did Florence feel the greatness of the alteration in\nhim; so much the oftener did she weep at this estrangement of her\nbrother.\n\nThe good Captain - her untiring, tender, ever zealous friend - saw\nit, too, Florence thought, and it pained him. He was less cheerful and\nhopeful than he had been at first, and would steal looks at her and\nWalter, by turns, when they were all three together of an evening,\nwith quite a sad face.\n\nFlorence resolved, at last, to speak to Walter. She believed she\nknew now what the cause of his estrangement was, and she thought it\nwould be a relief to her full heart, and would set him more at ease,\nif she told him she had found it out, and quite submitted to it, and\ndid not reproach him.\n\nIt was on a certain Sunday afternoon, that Florence took this\nresolution. The faithful Captain, in an amazing shirt-collar, was\nsitting by her, reading with his spectacles on, and she asked him\nwhere Walter was.\n\n'I think he's down below, my lady lass,' returned the Captain.\n\n'I should like to speak to him,' said Florence, rising hurriedly as\nif to go downstairs.\n\n'I'll rouse him up here, Beauty,' said the Captain, 'in a trice.'\n\nThereupon the Captain, with much alacrity, shouldered his book -\nfor he made it a point of duty to read none but very large books on a\nSunday, as having a more staid appearance: and had bargained, years\nago, for a prodigious volume at a book-stall, five lines of which\nutterly confounded him at any time, insomuch that he had not yet\nascertained of what subject it treated - and withdrew. Walter soon\nappeared.\n\n'Captain Cuttle tells me, Miss Dombey,' he eagerly began on coming\nin - but stopped when he saw her face.\n\n'You are not so well to-day. You look distressed. You have been\nweeping.'\n\nHe spoke so kindly, and with such a fervent tremor in his voice,\nthat the tears gushed into her eyes at the sound of his words.\n\n'Walter,' said Florence, gently, 'I am not quite well, and I have\nbeen weeping. I want to speak to you.'\n\nHe sat down opposite to her, looking at her beautiful and innocent\nface; and his own turned pale, and his lips trembled.\n\n'You said, upon the night when I knew that you were saved - and oh!\ndear Walter, what I felt that night, and what I hoped!' - '\n\nHe put his trembling hand upon the table between them, and sat\nlooking at her.\n\n- 'that I was changed. I was surprised to hear you say so, but I\nunderstand, now, that I am. Don't be angry with me, Walter. I was too\nmuch overjoyed to think of it, then.'\n\nShe seemed a child to him again. It was the ingenuous, confiding,\nloving child he saw and heard. Not the dear woman, at whose feet he\nwould have laid the riches of the earth.\n\n'You remember the last time I saw you, Walter, before you went\naway?'\n\nHe put his hand into his breast, and took out a little purse.\n\n'I have always worn it round my neck! If I had gone down in the\ndeep, it would have been with me at the bottom of the sea.'\n\n'And you will wear it still, Walter, for my old sake?'\n\n'Until I die!'\n\nShe laid her hand on his, as fearlessly and simply, as if not a day\nhad intervened since she gave him the little token of remembrance.\n\n'I am glad of that. I shall be always glad to think so, Walter. Do\nyou recollect that a thought of this change seemed to come into our\nminds at the same time that evening, when we were talking together?'\n\n'No!' he answered, in a wondering tone.\n\n'Yes, Walter. I had been the means of injuring your hopes and\nprospects even then. I feared to think so, then, but I know it now. If\nyou were able, then, in your generosity, to hide from me that you knew\nit too, you cannot do so now, although you try as generously as\nbefore. You do. I thank you for it, Walter, deeply, truly; but you\ncannot succeed. You have suffered too much in your own hardships, and\nin those of your dearest relation, quite to overlook the innocent\ncause of all the peril and affliction that has befallen you. You\ncannot quite forget me in that character, and we can be brother and\nsister no longer. But, dear Walter, do not think that I complain of\nyou in this. I might have known it - ought to have known it - but\nforgot it in my joy. All I hope is that you may think of me less\nirksomely when this feeling is no more a secret one; and all I ask is,\nWalter, in the name of the poor child who was your sister once, that\nyou will not struggle with yourself, and pain yourself, for my sake,\nnow that I know all!'\n\nWalter had looked upon her while she said this, with a face so full\nof wonder and amazement, that it had room for nothing else. Now he\ncaught up the hand that touched his, so entreatingly, and held it\nbetween his own.\n\n'Oh, Miss Dombey,' he said, 'is it possible that while I have been\nsuffering so much, in striving with my sense of what is due to you,\nand must be rendered to you, I have made you suffer what your words\ndisclose to me? Never, never, before Heaven, have I thought of you but\nas the single, bright, pure, blessed recollection of my boyhood and my\nyouth. Never have I from the first, and never shall I to the last,\nregard your part in my life, but as something sacred, never to be\nlightly thought of, never to be esteemed enough, never, until death,\nto be forgotten. Again to see you look, and hear you speak, as you did\non that night when we parted, is happiness to me that there are no\nwords to utter; and to be loved and trusted as your brother, is the\nnext gift I could receive and prize!'\n\n'Walter,' said Florence, looking at him earnestly, but with a\nchanging face, 'what is that which is due to me, and must be rendered\nto me, at the sacrifice of all this?'\n\n'Respect,' said Walter, in a low tone. 'Reverence.\n\nThe colour dawned in her face, and she timidly and thoughtfully\nwithdrew her hand; still looking at him with unabated earnestness.\n\n'I have not a brother's right,' said Walter. 'I have not a\nbrother's claim. I left a child. I find a woman.'\n\nThe colour overspread her face. She made a gesture as if of\nentreaty that he would say no more, and her face dropped upon her\nhands.\n\nThey were both silent for a time; she weeping.\n\n'I owe it to a heart so trusting, pure, and good,' said Walter,\n'even to tear myself from it, though I rend my own. How dare I say it\nis my sister's!'\n\nShe was weeping still.\n\n'If you had been happy; surrounded as you should be by loving and\nadmiring friends, and by all that makes the station you were born to\nenviable,' said Walter; 'and if you had called me brother, then, in\nyour affectionate remembrance of the past, I could have answered to\nthe name from my distant place, with no inward assurance that I\nwronged your spotless truth by doing so. But here - and now!'\n\n'Oh thank you, thank you, Walter! Forgive my having wronged you so\nmuch. I had no one to advise me. I am quite alone.'\n\n'Florence!' said Walter, passionately. 'I am hurried on to say,\nwhat I thought, but a few moments ago, nothing could have forced from\nmy lips. If I had been prosperous; if I had any means or hope of being\none day able to restore you to a station near your own; I would have\ntold you that there was one name you might bestow upon - me - a right\nabove all others, to protect and cherish you - that I was worthy of in\nnothing but the love and honour that I bore you, and in my whole heart\nbeing yours. I would have told you that it was the only claim that you\ncould give me to defend and guard you, which I dare accept and dare\nassert; but that if I had that right, I would regard it as a trust so\nprecious and so priceless, that the undivided truth and fervour of my\nlife would poorly acknowledge its worth.'\n\nThe head was still bent down, the tears still falling, and the\nbosom swelling with its sobs.\n\n'Dear Florence! Dearest Florence! whom I called so in my thoughts\nbefore I could consider how presumptuous and wild it was. One last\ntime let me call you by your own dear name, and touch this gentle hand\nin token of your sisterly forgetfulness of what I have said.'\n\nShe raised her head, and spoke to him with such a solemn sweetness\nin her eyes; with such a calm, bright, placid smile shining on him\nthrough her tears; with such a low, soft tremble in her frame and\nvoice; that the innermost chords of his heart were touched, and his\nsight was dim as he listened.\n\n'No, Walter, I cannot forget it. I would not forget it, for the\nworld. Are you - are you very poor?'\n\n'I am but a wanderer,' said Walter, 'making voyages to live, across\nthe sea. That is my calling now.\n\n'Are you soon going away again, Walter?'\n\n'Very soon.\n\nShe sat looking at him for a moment; then timidly put her trembling\nhand in his.\n\n'If you will take me for your wife, Walter, I will love you dearly.\nIf you will let me go with you, Walter, I will go to the world's end\nwithout fear. I can give up nothing for you - I have nothing to\nresign, and no one to forsake; but all my love and life shall be\ndevoted to you, and with my last breath I will breathe your name to\nGod if I have sense and memory left.'\n\nHe caught her to his heart, and laid her cheek against his own, and\nnow, no more repulsed, no more forlorn, she wept indeed, upon the\nbreast of her dear lover.\n\nBlessed Sunday Bells, ringing so tranquilly in their entranced and\nhappy ears! Blessed Sunday peace and quiet, harmonising with the\ncalmness in their souls, and making holy air around them! Blessed\ntwilight stealing on, and shading her so soothingly and gravely, as\nshe falls asleep, like a hushed child, upon the bosom she has clung\nto!\n\nOh load of love and trustfulness that lies to lightly there! Ay,\nlook down on the closed eyes, Walter, with a proudly tender gaze; for\nin all the wide wide world they seek but thee now - only thee!\n\n\nThe Captain remained in the little parlour until it was quite dark.\nHe took the chair on which Walter had been sitting, and looked up at\nthe skylight, until the day, by little and little, faded away, and the\nstars peeped down. He lighted a candle, lighted a pipe, smoked it out,\nand wondered what on earth was going on upstairs, and why they didn't\ncall him to tea.\n\nFlorence came to his side while he was in the height of his\nwonderment.\n\n'Ay! lady lass!' cried the Captain. 'Why, you and Wal'r have had a\nlong spell o' talk, my beauty.'\n\nFlorence put her little hand round one of the great buttons of his\ncoat, and said, looking down into his face:\n\n'Dear Captain, I want to tell you something, if you please.\n\nThe Captain raised his head pretty smartly, to hear what it was.\nCatching by this means a more distinct view of Florence, he pushed\nback his chair, and himself with it, as far as they could go.\n\n'What! Heart's Delight!' cried the Captain, suddenly elated, 'Is it\nthat?'\n\n'Yes!' said Florence, eagerly.\n\n'Wal'r! Husband! THAT?' roared the Captain, tossing up his glazed\nhat into the skylight.\n\n'Yes!' cried Florence, laughing and crying together.\n\nThe Captain immediately hugged her; and then, picking up the glazed\nhat and putting it on, drew her arm through his, and conducted her\nupstairs again; where he felt that the great joke of his life was now\nto be made.\n\n'What, Wal'r my lad!' said the Captain, looking in at the door,\nwith his face like an amiable warming-pan. 'So there ain't NO other\ncharacter, ain't there?'\n\nHe had like to have suffocated himself with this pleasantry, which\nhe repeated at least forty times during tea; polishing his radiant\nface with the sleeve of his coat, and dabbing his head all over with\nhis pocket-handkerchief, in the intervals. But he was not without a\ngraver source of enjoyment to fall back upon, when so disposed, for he\nwas repeatedly heard to say in an undertone, as he looked with\nineffable delight at Walter and Florence:\n\n'Ed'ard Cuttle, my lad, you never shaped a better course in your\nlife, than when you made that there little property over, jintly!'\n\n\n\nCHAPTER 51.\n\nMr Dombey and the World\n\n\n\nWhat is the proud man doing, while the days go by? Does he ever\nthink of his daughter, or wonder where she is gone? Does he suppose\nshe has come home, and is leading her old life in the weary house? No\none can answer for him. He has never uttered her name, since. His\nhousehold dread him too much to approach a subject on which he is\nresolutely dumb; and the only person who dares question him, he\nsilences immediately.\n\n'My dear Paul!' murmurs his sister, sidling into the room, on the\nday of Florence's departure, 'your wife! that upstart woman! Is it\npossible that what I hear confusedly, is true, and that this is her\nreturn for your unparalleled devotion to her; extending, I am sure,\neven to the sacrifice of your own relations, to her caprices and\nhaughtiness? My poor brother!'\n\nWith this speech feelingly reminiscent of her not having been asked\nto dinner on the day of the first party, Mrs Chick makes great use of\nher pocket-handkerchief, and falls on Mr Dombey's neck. But Mr Dombey\nfrigidly lifts her off, and hands her to a chair.\n\n'I thank you, Louisa,' he says, 'for this mark of your affection;\nbut desire that our conversation may refer to any other subject. When\nI bewail my fate, Louisa, or express myself as being in want of\nconsolation, you can offer it, if you will have the goodness.'\n\n'My dear Paul,' rejoins his sister, with her handkerchief to her\nface, and shaking her head, 'I know your great spirit, and will say no\nmore upon a theme so painful and revolting;' on the heads of which two\nadjectives, Mrs Chick visits scathing indignation; 'but pray let me\nask you - though I dread to hear something that will shock and\ndistress me - that unfortunate child Florence -\n\n'Louisa!' says her brother, sternly, 'silence! Not another word of\nthis!'\n\nMrs Chick can only shake her head, and use her handkerchief, and\nmoan over degenerate Dombeys, who are no Dombeys. But whether Florence\nhas been inculpated in the flight of Edith, or has followed her, or\nhas done too much, or too little, or anything, or nothing, she has not\nthe least idea.\n\nHe goes on, without deviation, keeping his thoughts and feelings\nclose within his own breast, and imparting them to no one. He makes no\nsearch for his daughter. He may think that she is with his sister, or\nthat she is under his own roof. He may think of her constantly, or he\nmay never think about her. It is all one for any sign he makes.\n\nBut this is sure; he does not think that he has lost her. He has no\nsuspicion of the truth. He has lived too long shut up in his towering\nsupremacy, seeing her, a patient gentle creature, in the path below\nit, to have any fear of that. Shaken as he is by his disgrace, he is\nnot yet humbled to the level earth. The root is broad and deep, and in\nthe course of years its fibres have spread out and gathered\nnourishment from everything around it. The tree is struck, but not\ndown.\n\nThough he hide the world within him from the world without - which\nhe believes has but one purpose for the time, and that, to watch him\neagerly wherever he goes - he cannot hide those rebel traces of it,\nwhich escape in hollow eyes and cheeks, a haggard forehead, and a\nmoody, brooding air. Impenetrable as before, he is still an altered\nman; and, proud as ever, he is humbled, or those marks would not be\nthere.\n\nThe world. What the world thinks of him, how it looks at him, what\nit sees in him, and what it says - this is the haunting demon of his\nmind. It is everywhere where he is; and, worse than that, it is\neverywhere where he is not. It comes out with him among his servants,\nand yet he leaves it whispering behind; he sees it pointing after him\nin the street; it is waiting for him in his counting-house; it leers\nover the shoulders of rich men among the merchants; it goes beckoning\nand babbling among the crowd; it always anticipates him, in every\nplace; and is always busiest, he knows, when he has gone away. When he\nis shut up in his room at night, it is in his house, outside it,\naudible in footsteps on the pavement, visible in print upon the table,\nsteaming to and fro on railroads and in ships; restless and busy\neverywhere, with nothing else but him.\n\nIt is not a phantom of his imagination. It is as active in other\npeople's minds as in his. Witness Cousin Feenix, who comes from\nBaden-Baden, purposely to talk to him. Witness Major Bagstock, who\naccompanies Cousin Feenix on that friendly mission.\n\nMr Dombey receives them with his usual dignity, and stands erect,\nin his old attitude, before the fire. He feels that the world is\nlooking at him out of their eyes. That it is in the stare of the\npictures. That Mr Pitt, upon the bookcase, represents it. That there\nare eyes in its own map, hanging on the wall.\n\n'An unusually cold spring,' says Mr Dombey - to deceive the world.\n\n'Damme, Sir,' says the Major, in the warmth of friendship, 'Joseph\nBagstock is a bad hand at a counterfeit. If you want to hold your\nfriends off, Dombey, and to give them the cold shoulder, J. B. is not\nthe man for your purpose. Joe is rough and tough, Sir; blunt, Sir,\nblunt, is Joe. His Royal Highness the late Duke of York did me the\nhonour to say, deservedly or undeservedly - never mind that - \"If\nthere is a man in the service on whom I can depend for coming to the\npoint, that man is Joe - Joe Bagstock.\"'\n\nMr Dombey intimates his acquiescence.\n\n'Now, Dombey,' says the Major, 'I am a man of the world. Our friend\nFeenix - if I may presume to - '\n\n'Honoured, I am sure,' says Cousin Feenix.\n\n' - is,' proceeds the Major, with a wag of his head, 'also a man of\nthe world. Dombey, you are a man of the world. Now, when three men of\nthe world meet together, and are friends - as I believe - ' again\nappealing to Cousin Feenix.\n\n'I am sure,' says Cousin Feenix, 'most friendly.'\n\n' - and are friends,' resumes the Major, 'Old Joe's opinion is (I\nmay be wrong), that the opinion of the world on any particular\nsubject, is very easily got at.\n\n'Undoubtedly,' says Cousin Feenix. 'In point of fact, it's quite a\nself-evident sort of thing. I am extremely anxious, Major, that my\nfriend Dombey should hear me express my very great astonishment and\nregret, that my lovely and accomplished relative, who was possessed of\nevery qualification to make a man happy, should have so far forgotten\nwhat was due to - in point of fact, to the world - as to commit\nherself in such a very extraordinary manner. I have been in a devilish\nstate of depression ever since; and said indeed to Long Saxby last\nnight - man of six foot ten, with whom my friend Dombey is probably\nacquainted - that it had upset me in a confounded way, and made me\nbilious. It induces a man to reflect, this kind of fatal catastrophe,'\nsays Cousin Feenix, 'that events do occur in quite a providential\nmanner; for if my Aunt had been living at the time, I think the effect\nupon a devilish lively woman like herself, would have been\nprostration, and that she would have fallen, in point of fact, a\nvictim.'\n\n'Now, Dombey! - ' says the Major, resuming his discourse with great\nenergy.\n\n'I beg your pardon,' interposes Cousin Feenix. 'Allow me another\nword. My friend Dombey will permit me to say, that if any circumstance\ncould have added to the most infernal state of pain in which I find\nmyself on this occasion, it would be the natural amazement of the\nworld at my lovely and accomplished relative (as I must still beg\nleave to call her) being supposed to have so committed herself with a\nperson - man with white teeth, in point of fact - of very inferior\nstation to her husband. But while I must, rather peremptorily, request\nmy friend Dombey not to criminate my lovely and accomplished relative\nuntil her criminality is perfectly established, I beg to assure my\nfriend Dombey that the family I represent, and which is now almost\nextinct (devilish sad reflection for a man), will interpose no\nobstacle in his way, and will be happy to assent to any honourable\ncourse of proceeding, with a view to the future, that he may point\nout. I trust my friend Dombey will give me credit for the intentions\nby which I am animated in this very melancholy affair, and - a - in\npoint of fact, I am not aware that I need trouble my friend Dombey\nwith any further observations.'\n\nMr Dombey bows, without raising his eyes, and is silent.\n\n'Now, Dombey,' says the Major, 'our friend Feenix having, with an\namount of eloquence that Old Joe B. has never heard surpassed - no, by\nthe Lord, Sir! never!' - says the Major, very blue, indeed, and\ngrasping his cane in the middle - 'stated the case as regards the\nlady, I shall presume upon our friendship, Dombey, to offer a word on\nanother aspect of it. Sir,' says the Major, with the horse's cough,\n'the world in these things has opinions, which must be satisfied.'\n\n'I know it,' rejoins Mr Dombey.\n\n'Of course you know it, Dombey,' says the Major, 'Damme, Sir, I\nknow you know it. A man of your calibre is not likely to be ignorant\nof it.'\n\n'I hope not,' replies Mr Dombey.\n\n'Dombey!' says the Major, 'you will guess the rest. I speak out -\nprematurely, perhaps - because the Bagstock breed have always spoke\nout. Little, Sir, have they ever got by doing it; but it's in the\nBagstock blood. A shot is to be taken at this man. You have J. B. at\nyour elbow. He claims the name of friend. God bless you!'\n\n'Major,' returns Mr Dombey, 'I am obliged. I shall put myself in\nyour hands when the time comes. The time not being come, I have\nforborne to speak to you.'\n\n'Where is the fellow, Dombey?' inquires the Major, after gasping\nand looking at him, for a minute.\n\n'I don't know.'\n\n'Any intelligence of him?' asks the Major.\n\n'Yes.'\n\n'Dombey, I am rejoiced to hear it,' says the Major. 'I congratulate\nyou.'\n\n'You will excuse - even you, Major,' replies Mr Dombey, 'my\nentering into any further detail at present. The intelligence is of a\nsingular kind, and singularly obtained. It may turn out to be\nvalueless; it may turn out to be true; I cannot say at present. My\nexplanation must stop here.'\n\nAlthough this is but a dry reply to the Major's purple enthusiasm,\nthe Major receives it graciously, and is delighted to think that the\nworld has such a fair prospect of soon receiving its due. Cousin\nFeenix is then presented with his meed of acknowledgment by the\nhusband of his lovely and accomplished relative, and Cousin Feenix and\nMajor Bagstock retire, leaving that husband to the world again, and to\nponder at leisure on their representation of its state of mind\nconcerning his affairs, and on its just and reasonable expectations.\n\nBut who sits in the housekeeper's room, shedding tears, and talking\nto Mrs Pipchin in a low tone, with uplifted hands? It is a lady with\nher face concealed in a very close black bonnet, which appears not to\nbelong to her. It is Miss Tox, who has borrowed this disguise from her\nservant, and comes from Princess's Place, thus secretly, to revive her\nold acquaintance with Mrs Pipchin, in order to get certain information\nof the state of Mr Dombey.\n\n'How does he bear it, my dear creature?' asks Miss Tox.\n\n'Well,' says Mrs Pipchin, in her snappish way, 'he's pretty much as\nusual.'\n\n'Externally,' suggests Miss Tox 'But what he feels within!'\n\nMrs Pipchin's hard grey eye looks doubtful as she answers, in three\ndistinct jerks, 'Ah! Perhaps. I suppose so.'\n\n'To tell you my mind, Lucretia,' says Mrs Pipchin; she still calls\nMiss Tox Lucretia, on account of having made her first experiments in\nthe child-quelling line of business on that lady, when an unfortunate\nand weazen little girl of tender years; 'to tell you my mind,\nLucretia, I think it's a good riddance. I don't want any of your\nbrazen faces here, myself!'\n\n'Brazen indeed! Well may you say brazen, Mrs Pipchin!' returned\nMiss Tox. 'To leave him! Such a noble figure of a man!' And here Miss\nTox is overcome.\n\n'I don't know about noble, I'm sure,' observes Mrs Pipchin;\nirascibly rubbing her nose. 'But I know this - that when people meet\nwith trials, they must bear 'em. Hoity, toity! I have had enough to\nbear myself, in my time! What a fuss there is! She's gone, and well\ngot rid of. Nobody wants her back, I should think!' This hint of the\nPeruvian Mines, causes Miss Tox to rise to go away; when Mrs Pipchin\nrings the bell for Towlinson to show her out, Mr Towlinson, not having\nseen Miss Tox for ages, grins, and hopes she's well; observing that he\ndidn't know her at first, in that bonnet.\n\n'Pretty well, Towlinson, I thank you,' says Miss Tox. 'I beg you'll\nhave the goodness, when you happen to see me here, not to mention it.\nMy visits are merely to Mrs Pipchin.'\n\n'Very good, Miss,' says Towlinson.\n\n'Shocking circumstances occur, Towlinson,' says Miss Tox.\n\n'Very much so indeed, Miss,' rejoins Towlinson.\n\n'I hope, Towlinson,' says Miss Tox, who, in her instruction of the\nToodle family, has acquired an admonitorial tone, and a habit of\nimproving passing occasions, 'that what has happened here, will be a\nwarning to you, Towlinson.'\n\n'Thank you, Miss, I'm sure,' says Towlinson.\n\nHe appears to be falling into a consideration of the manner in\nwhich this warning ought to operate in his particular case, when the\nvinegary Mrs Pipchin, suddenly stirring him up with a 'What are you\ndoing? Why don't you show the lady to the door?' he ushers Miss Tox\nforth. As she passes Mr Dombey's room, she shrinks into the inmost\ndepths of the black bonnet, and walks, on tip-toe; and there is not\nanother atom in the world which haunts him so, that feels such sorrow\nand solicitude about him, as Miss Tox takes out under the black bonnet\ninto the street, and tries to carry home shadowed it from the\nnewly-lighted lamps\n\nBut Miss Tox is not a part of Mr Dombey's world. She comes back\nevery evening at dusk; adding clogs and an umbrella to the bonnet on\nwet nights; and bears the grins of Towlinson, and the huffs and\nrebuffs of Mrs Pipchin, and all to ask how he does, and how he bears\nhis misfortune: but she has nothing to do with Mr Dombey's world.\nExacting and harassing as ever, it goes on without her; and she, a by\nno means bright or particular star, moves in her little orbit in the\ncorner of another system, and knows it quite well, and comes, and\ncries, and goes away, and is satisfied. Verily Miss Tox is easier of\nsatisfaction than the world that troubles Mr Dombey so much!\n\nAt the Counting House, the clerks discuss the great disaster in all\nits lights and shades, but chiefly wonder who will get Mr Carker's\nplace. They are generally of opinion that it will be shorn of some of\nits emoluments, and made uncomfortable by newly-devised checks and\nrestrictions; and those who are beyond all hope of it are quite sure\nthey would rather not have it, and don't at all envy the person for\nwhom it may prove to be reserved. Nothing like the prevailing\nsensation has existed in the Counting House since Mr Dombey's little\nson died; but all such excitements there take a social, not to say a\njovial turn, and lead to the cultivation of good fellowship. A\nreconciliation is established on this propitious occasion between the\nacknowledged wit of the Counting House and an aspiring rival, with\nwhom he has been at deadly feud for months; and a little dinner being\nproposed, in commemoration of their happily restored amity, takes\nplace at a neighbouring tavern; the wit in the chair; the rival acting\nas Vice-President. The orations following the removal of the cloth are\nopened by the Chair, who says, Gentlemen, he can't disguise from\nhimself that this is not a time for private dissensions. Recent\noccurrences to which he need not more particularly allude, but which\nhave not been altogether without notice in some Sunday Papers,' and in\na daily paper which he need not name (here every other member of the\ncompany names it in an audible murmur), have caused him to reflect;\nand he feels that for him and Robinson to have any personal\ndifferences at such a moment, would be for ever to deny that good\nfeeling in the general cause, for which he has reason to think and\nhope that the gentlemen in Dombey's House have always been\ndistinguished. Robinson replies to this like a man and a brother; and\none gentleman who has been in the office three years, under continual\nnotice to quit on account of lapses in his arithmetic, appears in a\nperfectly new light, suddenly bursting out with a thrilling speech, in\nwhich he says, May their respected chief never again know the\ndesolation which has fallen on his hearth! and says a great variety of\nthings, beginning with 'May he never again,' which are received with\nthunders of applause. In short, a most delightful evening is passed,\nonly interrupted by a difference between two juniors, who, quarrelling\nabout the probable amount of Mr Carker's late receipts per annum, defy\neach other with decanters, and are taken out greatly excited. Soda\nwater is in general request at the office next day, and most of the\nparty deem the bill an imposition.\n\nAs to Perch, the messenger, he is in a fair way of being ruined for\nlife. He finds himself again constantly in bars of public-houses,\nbeing treated and lying dreadfully. It appears that he met everybody\nconcerned in the late transaction, everywhere, and said to them,\n'Sir,' or 'Madam,' as the case was, 'why do you look so pale?' at\nwhich each shuddered from head to foot, and said, 'Oh, Perch!' and ran\naway. Either the consciousness of these enormities, or the reaction\nconsequent on liquor, reduces Mr Perch to an extreme state of low\nspirits at that hour of the evening when he usually seeks consolation\nin the society of Mrs Perch at Balls Pond; and Mrs Perch frets a good\ndeal, for she fears his confidence in woman is shaken now, and that he\nhalf expects on coming home at night to find her gone off with some\nViscount - 'which,' as she observes to an intimate female friend, 'is\nwhat these wretches in the form of woman have to answer for, Mrs P. It\nain't the harm they do themselves so much as what they reflect upon\nus, Ma'am; and I see it in Perch's eye.\n\nMr Dombey's servants are becoming, at the same time, quite\ndissipated, and unfit for other service. They have hot suppers every\nnight, and 'talk it over' with smoking drinks upon the board. Mr\nTowlinson is always maudlin after half-past ten, and frequently begs\nto know whether he didn't say that no good would ever come of living\nin a corner house? They whisper about Miss Florence, and wonder where\nshe is; but agree that if Mr Dombey don't know, Mrs Dombey does. This\nbrings them to the latter, of whom Cook says, She had a stately way\nthough, hadn't she? But she was too high! They all agree that she was\ntoo high, and Mr Towlinson's old flame, the housemaid (who is very\nvirtuous), entreats that you will never talk to her any more about\npeople who hold their heads up, as if the ground wasn't good enough\nfor 'em.\n\nEverything that is said and done about it, except by Mr Dombey, is\ndone in chorus. Mr Dombey and the world are alone together.\n\n\n\nCHAPTER 52.\n\nSecret Intelligence\n\n\n\nGood Mrs Brown and her daughter Alice kept silent company together,\nin their own dwelling. It was early in the evening, and late in the\nspring. But a few days had elapsed since Mr Dombey had told Major\nBagstock of his singular intelligence, singularly obtained, which\nmight turn out to be valueless, and might turn out to be true; and the\nworld was not satisfied yet.\n\nThe mother and daughter sat for a long time without interchanging a\nword: almost without motion. The old woman's face was shrewdly anxious\nand expectant; that of her daughter was expectant too, but in a less\nsharp degree, and sometimes it darkened, as if with gathering\ndisappointment and incredulity. The old woman, without heeding these\nchanges in its expression, though her eyes were often turned towards\nit, sat mumbling and munching, and listening confidently.\n\nTheir abode, though poor and miserable, was not so utterly wretched\nas in the days when only Good Mrs Brown inhabited it. Some few\nattempts at cleanliness and order were manifest, though made in a\nreckless, gipsy way, that might have connected them, at a glance, with\nthe younger woman. The shades of evening thickened and deepened as the\ntwo kept silence, until the blackened walls were nearly lost in the\nprevailing gloom.\n\nThen Alice broke the silence which had lasted so long, and said:\n\n'You may give him up, mother. He'll not come here.'\n\n'Death give him up!' returned the old woman, impatiently. 'He will\ncome here.'\n\n'We shall see,' said Alice.\n\n'We shall see him,' returned her mother.\n\n'And doomsday,' said the daughter.\n\n'You think I'm in my second childhood, I know!' croaked the old\nwoman. 'That's the respect and duty that I get from my own gal, but\nI'm wiser than you take me for. He'll come. T'other day when I touched\nhis coat in the street, he looked round as if I was a toad. But Lord,\nto see him when I said their names, and asked him if he'd like to find\nout where they was!'\n\n'Was it so angry?' asked her daughter, roused to interest in a\nmoment.\n\n'Angry? ask if it was bloody. That's more like the word. Angry? Ha,\nha! To call that only angry!' said the old woman, hobbling to the\ncupboard, and lighting a candle, which displayed the workings of her\nmouth to ugly advantage, as she brought it to the table. 'I might as\nwell call your face only angry, when you think or talk about 'em.'\n\nIt was something different from that, truly, as she sat as still as\na crouched tigress, with her kindling eyes.\n\n'Hark!' said the old woman, triumphantly. 'I hear a step coming.\nIt's not the tread of anyone that lives about here, or comes this way\noften. We don't walk like that. We should grow proud on such\nneighbours! Do you hear him?'\n\n'I believe you are right, mother,' replied Alice, in a low voice.\n'Peace! open the door.'\n\nAs she drew herself within her shawl, and gathered it about her,\nthe old woman complied; and peering out, and beckoning, gave admission\nto Mr Dombey, who stopped when he had set his foot within the door,\nand looked distrustfully around.\n\n'It's a poor place for a great gentleman like your worship,' said\nthe old woman, curtseying and chattering. 'I told you so, but there's\nno harm in it.'\n\n'Who is that?' asked Mr Dombey, looking at her companion.\n\n'That's my handsome daughter,' said the old woman. 'Your worship\nwon't mind her. She knows all about it.'\n\nA shadow fell upon his face not less expressive than if he had\ngroaned aloud, 'Who does not know all about it!' but he looked at her\nsteadily, and she, without any acknowledgment of his presence, looked\nat him. The shadow on his face was darker when he turned his glance\naway from her; and even then it wandered back again, furtively, as if\nhe were haunted by her bold eyes, and some remembrance they inspired.\n\n'Woman,' said Mr Dombey to the old witch who was chucKling and\nleering close at his elbow, and who, when he turned to address her,\npointed stealthily at her daughter, and rubbed her hands, and pointed\nagain, 'Woman! I believe that I am weak and forgetful of my station in\ncoming here, but you know why I come, and what you offered when you\nstopped me in the street the other day. What is it that you have to\ntell me concerning what I want to know; and how does it happen that I\ncan find voluntary intelligence in a hovel like this,' with a\ndisdainful glance about him, 'when I have exerted my power and means\nto obtain it in vain? I do not think,' he said, after a moment's\npause, during which he had observed her, sternly, 'that you are so\naudacious as to mean to trifle with me, or endeavour to impose upon\nme. But if you have that purpose, you had better stop on the threshold\nof your scheme. My humour is not a trifling one, and my acknowledgment\nwill be severe.'\n\n'Oh a proud, hard gentleman!' chuckled the old woman, shaking her\nhead, and rubbing her shrivelled hands, 'oh hard, hard, hard! But your\nworship shall see with your own eyes and hear with your own ears; not\nwith ours - and if your worship's put upon their track, you won't mind\npaying something for it, will you, honourable deary?'\n\n'Money,' returned Mr Dombey, apparently relieved, and assured by\nthis inquiry, 'will bring about unlikely things, I know. It may turn\neven means as unexpected and unpromising as these, to account. Yes.\nFor any reliable information I receive, I will pay. But I must have\nthe information first, and judge for myself of its value.'\n\n'Do you know nothing more powerful than money?' asked the younger\nwoman, without rising, or altering her attitude.\n\n'Not here, I should imagine,' said Mr Dombey.\n\n'You should know of something that is more powerful elsewhere, as I\njudge,' she returned. 'Do you know nothing of a woman's anger?'\n\n'You have a saucy tongue, Jade,' said Mr Dombey.\n\n'Not usually,' she answered, without any show of emotion: 'I speak\nto you now, that you may understand us better, and rely more on us. A\nwoman's anger is pretty much the same here, as in your fine house. I\nam angry. I have been so, many years. I have as good cause for my\nanger as you have for yours, and its object is the same man.'\n\nHe started, in spite of himself, and looked at her with\n\nastonishment.\n\n'Yes,' she said, with a kind of laugh. 'Wide as the distance may\nseem between us, it is so. How it is so, is no matter; that is my\nstory, and I keep my story to myself. I would bring you and him\ntogether, because I have a rage against him. My mother there, is\navaricious and poor; and she would sell any tidings she could glean,\nor anything, or anybody, for money. It is fair enough, perhaps, that\nyou should pay her some, if she can help you to what you want to know.\nBut that is not my motive. I have told you what mine is, and it would\nbe as strong and all-sufficient with me if you haggled and bargained\nwith her for a sixpence. I have done. My saucy tongue says no more, if\nyou wait here till sunrise tomorrow.'\n\nThe old woman, who had shown great uneasiness during this speech,\nwhich had a tendency to depreciate her expected gains, pulled Mr\nDombey softly by the sleeve, and whispered to him not to mind her. He\nglared at them both, by turns, with a haggard look, and said, in a\ndeeper voice than was usual with him:\n\n'Go on - what do you know?'\n\n'Oh, not so fast, your worship! we must wait for someone,' answered\nthe old woman. 'It's to be got from someone else - wormed out -\nscrewed and twisted from him.'\n\n'What do you mean?' said Mr Dombey.\n\n'Patience,' she croaked, laying her hand, like a claw, upon his\narm. 'Patience. I'll get at it. I know I can! If he was to hold it\nback from me,' said Good Mrs Brown, crooking her ten fingers, 'I'd\ntear it out of him!'\n\nMr Dombey followed her with his eyes as she hobbled to the door,\nand looked out again: and then his glance sought her daughter; but she\nremained impassive, silent, and regardless of him.\n\n'Do you tell me, woman,' he said, when the bent figure of Mrs Brown\ncame back, shaking its head and chattering to itself, 'that there is\nanother person expected here?'\n\n'Yes!' said the old woman, looking up into his face, and nodding.\n\n'From whom you are to exact the intelligence that is to be useful\nto me?'\n\n'Yes,' said the old woman, nodding again.\n\n'A stranger?'\n\n'Chut!' said the old woman, with a shrill laugh. 'What signifies!\nWell, well; no. No stranger to your worship. But he won't see you.\nHe'd be afraid of you, and wouldn't talk. You'll stand behind that\ndoor, and judge him for yourself. We don't ask to be believed on trust\nWhat! Your worship doubts the room behind the door? Oh the suspicion\nof you rich gentlefolks! Look at it, then.'\n\nHer sharp eye had detected an involuntary expression of this\nfeeling on his part, which was not unreasonable under the\ncircumstances. In satisfaction of it she now took the candle to the\ndoor she spoke of. Mr Dombey looked in; assured himself that it was an\nempty, crazy room; and signed to her to put the light back in its\nplace.\n\n'How long,' he asked, 'before this person comes?'\n\n'Not long,' she answered. 'Would your worship sit down for a few\nodd minutes?'\n\nHe made no answer; but began pacing the room with an irresolute\nair, as if he were undecided whether to remain or depart, and as if he\nhad some quarrel with himself for being there at all. But soon his\ntread grew slower and heavier, and his face more sternly thoughtful!;\nas the object with which he had come, fixed itself in his mind, and\ndilated there again.\n\nWhile he thus walked up and down with his eyes on the ground, Mrs\nBrown, in the chair from which she had risen to receive him, sat\nlistening anew. The monotony of his step, or the uncertainty of age,\nmade her so slow of hearing, that a footfall without had sounded in\nher daughter's ears for some moments, and she had looked up hastily to\nwarn her mother of its approach, before the old woman was roused by\nit. But then she started from her seat, and whispering 'Here he is!'\nhurried her visitor to his place of observation, and put a bottle and\nglass upon the table, with such alacrity, as to be ready to fling her\narms round the neck of Rob the Grinder on his appearance at the door.\n\n'And here's my bonny boy,' cried Mrs Brown, 'at last! - oho, oho!\nYou're like my own son, Robby!'\n\n'Oh! Misses Brown!' remonstrated the Grinder. 'Don't! Can't you be\nfond of a cove without squeedging and throttling of him? Take care of\nthe birdcage in my hand, will you?'\n\n'Thinks of a birdcage, afore me!' cried the old woman,\napostrophizing the ceiling. 'Me that feels more than a mother for\nhim!'\n\n'Well, I'm sure I'm very much obliged to you, Misses Brown,' said\nthe unfortunate youth, greatly aggravated; 'but you're so jealous of a\ncove. I'm very fond of you myself, and all that, of course; but I\ndon't smother you, do I, Misses Brown?'\n\nHe looked and spoke as if he wOuld have been far from objecting to\ndo so, however, on a favourable occasion.\n\n'And to talk about birdcages, too!' whimpered the Grinder. 'As If\nthat was a crime! Why, look'ee here! Do you know who this belongs to?'\n\n'To Master, dear?' said the old woman with a grin.\n\n'Ah!' replied the Grinder, lifting a large cage tied up in a\nwrapper, on the table, and untying it with his teeth and hands. 'It's\nour parrot, this is.'\n\n'Mr Carker's parrot, Rob?'\n\n'Will you hold your tongue, Misses Brown?' returned the goaded\nGrinder. 'What do you go naming names for? I'm blest,' said Rob,\npulling his hair with both hands in the exasperation of his feelings,\n'if she ain't enough to make a cove run wild!'\n\n'What! Do you snub me, thankless boy!' cried the old woman, with\nready vehemence.\n\n'Good gracious, Misses Brown, no!' returned the Grinder, with tears\nin his eyes. 'Was there ever such a - ! Don't I dote upon you, Misses\nBrown?'\n\n'Do you, sweet Rob? Do you truly, chickabiddy?' With that, Mrs\nBrown held him in her fond embrace once more; and did not release him\nuntil he had made several violent and ineffectual struggles with his\nlegs, and his hair was standing on end all over his head.\n\n'Oh!' returned the Grinder, 'what a thing it is to be perfectly\npitched into with affection like this here. I wish she was - How have\nyou been, Misses Brown?'\n\n'Ah! Not here since this night week!' said the old woman,\ncontemplating him with a look of reproach.\n\n'Good gracious, Misses Brown,' returned the Grinder, 'I said\ntonight's a week, that I'd come tonight, didn't I? And here I am. How\nyou do go on! I wish you'd be a little rational, Misses Brown. I'm\nhoarse with saying things in my defence, and my very face is shiny\nwith being hugged!' He rubbed it hard with his sleeve, as if to remove\nthe tender polish in question.\n\n'Drink a little drop to comfort you, my Robin,' said the old woman,\nfilling the glass from the bottle and giving it to him.\n\n'Thank'ee, Misses Brown,' returned the Grinder. 'Here's your\nhealth. And long may you - et ceterer.' Which, to judge from the\nexpression of his face, did not include any very choice blessings.\n'And here's her health,' said the Grinder, glancing at Alice, who sat\nwith her eyes fixed, as it seemed to him, on the wall behind him, but\nin reality on Mr Dombey's face at the door, 'and wishing her the same\nand many of 'em!'\n\nHe drained the glass to these two sentiments, and set it down.\n\n'Well, I say, Misses Brown!' he proceeded. 'To go on a little\nrational now. You're a judge of birds, and up to their ways, as I know\nto my cost.'\n\n'Cost!' repeated Mrs Brown.\n\n'Satisfaction, I mean,' returned the Grinder. 'How you do take up a\ncove, Misses Brown! You've put it all out of my head again.'\n\n'Judge of birds, Robby,' suggested the old woman.\n\n'Ah!' said the Grinder. 'Well, I've got to take care of this parrot\n- certain things being sold, and a certain establishment broke up -\nand as I don't want no notice took at present, I wish you'd attend to\nher for a week or so, and give her board and lodging, will you? If I\nmust come backwards and forwards,' mused the Grinder with a dejected\nface, 'I may as well have something to come for.'\n\n'Something to come for?' screamed the old woman.\n\n'Besides you, I mean, Misses Brown,' returned the craven Rob. 'Not\nthat I want any inducement but yourself, Misses Brown, I'm sure. Don't\nbegin again, for goodness' sake.'\n\n'He don't care for me! He don't care for me, as I care for him!'\ncried Mrs Brown, lifting up her skinny hands. 'But I'll take care of\nhis bird.'\n\n'Take good care of it too, you know, Mrs Brown,' said Rob, shaking\nhis head. 'If you was so much as to stroke its feathers once the wrong\nway, I believe it would be found out.'\n\n'Ah, so sharp as that, Rob?' said Mrs Brown, quickly.\n\n'Sharp, Misses Brown!' repeated Rob. 'But this is not to be talked\nabout.'\n\nChecking himself abruptly, and not without a fearful glance across\nthe room, Rob filled the glass again, and having slowly emptied it,\nshook his head, and began to draw his fingers across and across the\nwires of the parrot's cage by way of a diversion from the dangerous\ntheme that had just been broached.\n\nThe old woman eyed him slily, and hitching her chair nearer his,\nand looking in at the parrot, who came down from the gilded dome at\nher call, said:\n\n'Out of place now, Robby?'\n\n'Never you mind, Misses Brown,' returned the Grinder, shortly.\n\n'Board wages, perhaps, Rob?' said Mrs Brown.\n\n'Pretty Polly!' said the Grinder.\n\nThe old woman darted a glance at him that might have warned him to\nconsider his ears in danger, but it was his turn to look in at the\nparrot now, and however expressive his imagination may have made her\nangry scowl, it was unseen by his bodily eyes.\n\n'I wonder Master didn't take you with him, Rob,' said the old\nwoman, in a wheedling voice, but with increased malignity of aspect.\n\nRob was so absorbed in contemplation of the parrot, and in trolling\nhis forefinger on the wires, that he made no answer.\n\nThe old woman had her clutch within a hair's breadth of his shock\nof hair as it stooped over the table; but she restrained her fingers,\nand said, in a voice that choked with its efforts to be coaxing:\n\n'Robby, my child.'\n\n'Well, Misses Brown,' returned the Grinder.\n\n'I say I wonder Master didn't take you with him, dear.'\n\n'Never you mind, Misses Brown,' returned the Grinder.\n\nMrs Brown instantly directed the clutch of her right hand at his\nhair, and the clutch of her left hand at his throat, and held on to\nthe object of her fond affection with such extraordinary fury, that\nhis face began to blacken in a moment.\n\n'Misses Brown!' exclaimed the Grinder, 'let go, will you? What are\nyou doing of? Help, young woman! Misses Brow- Brow- !'\n\nThe young woman, however, equally unmoved by his direct appeal to\nher, and by his inarticulate utterance, remained quite neutral, until,\nafter struggling with his assailant into a corner, Rob disengaged\nhimself, and stood there panting and fenced in by his own elbows,\nwhile the old woman, panting too, and stamping with rage and\neagerness, appeared to be collecting her energies for another swoop\nupon him. At this crisis Alice interposed her voice, but not in the\nGrinder's favour, by saying,\n\n'Well done, mother. Tear him to pieces!'\n\n'What, young woman!' blubbered Rob; 'are you against me too? What\nhave I been and done? What am I to be tore to pieces for, I should\nlike to know? Why do you take and choke a cove who has never done you\nany harm, neither of you? Call yourselves females, too!' said the\nfrightened and afflicted Grinder, with his coat-cuff at his eye. 'I'm\nsurprised at you! Where's your feminine tenderness?'\n\n'You thankless dog!' gasped Mrs Brown. 'You impudent insulting\ndog!'\n\n'What have I been and done to go and give you offence, Misses\nBrown?' retorted the fearful Rob. 'You was very much attached to me a\nminute ago.'\n\n'To cut me off with his short answers and his sulky words,' said\nthe old woman. 'Me! Because I happen to be curious to have a little\nbit of gossip about Master and the lady, to dare to play at fast and\nloose with me! But I'll talk to you no more, my lad. Now go!'\n\n'I'm sure, Misses Brown,' returned the abject Grinder, 'I never\nInsiniwated that I wished to go. Don't talk like that, Misses Brown,\nif you please.'\n\n'I won't talk at all,' said Mrs Brown, with an action of her\ncrooked fingers that made him shrink into half his natural compass in\nthe corner. 'Not another word with him shall pass my lips. He's an\nungrateful hound. I cast him off. Now let him go! And I'll slip those\nafter him that shall talk too much; that won't be shook away; that'll\nhang to him like leeches, and slink arter him like foxes. What! He\nknows 'em. He knows his old games and his old ways. If he's forgotten\n'em, they'll soon remind him. Now let him go, and see how he'll do\nMaster's business, and keep Master's secrets, with such company always\nfollowing him up and down. Ha, ha, ha! He'll find 'em a different sort\nfrom you and me, Ally; Close as he is with you and me. Now let him go,\nnow let him go!'\n\nThe old woman, to the unspeakable dismay of the Grinder, walked her\ntwisted figure round and round, in a ring of some four feet in\ndiameter, constantly repeating these words, and shaking her fist above\nher head, and working her mouth about.\n\n'Misses Brown,' pleaded Rob, coming a little out of his corner,\n'I'm sure you wouldn't injure a cove, on second thoughts, and in cold\nblood, would you?'\n\n'Don't talk to me,' said Mrs Brown, still wrathfully pursuing her\ncircle. 'Now let him go, now let him go!'\n\n'Misses Brown,' urged the tormented Grinder, 'I didn't mean to -\nOh, what a thing it is for a cove to get into such a line as this! - I\nwas only careful of talking, Misses Brown, because I always am, on\naccount of his being up to everything; but I might have known it\nwouldn't have gone any further. I'm sure I'm quite agreeable,' with a\nwretched face, 'for any little bit of gossip, Misses Brown. Don't go\non like this, if you please. Oh, couldn't you have the goodness to put\nin a word for a miserable cove, here?' said the Grinder, appealing in\ndesperation to the daughter.\n\n'Come, mother, you hear what he says,' she interposed, in her stern\nvoice, and with an impatient action of her head; 'try him once more,\nand if you fall out with him again, ruin him, if you like, and have\ndone with him.'\n\nMrs Brown, moved as it seemed by this very tender exhortation,\npresently began to howl; and softening by degrees, took the apologetic\nGrinder to her arms, who embraced her with a face of unutterable woe,\nand like a victim as he was, resumed his former seat, close by the\nside of his venerable friend, whom he suffered, not without much\nconstrained sweetness of countenance, combating very expressive\nphysiognomical revelations of an opposite character to draw his arm\nthrough hers, and keep it there.\n\n'And how's Master, deary dear?' said Mrs Brown, when, sitting in\nthis amicable posture, they had pledged each other.\n\n'Hush! If you'd be so good, Misses Brown, as to speak a little\nlower,' Rob implored. 'Why, he's pretty well, thank'ee, I suppose.'\n\n'You're not out of place, Robby?' said Mrs Brown, in a wheedling\ntone.\n\n'Why, I'm not exactly out of place, nor in,' faltered Rob. 'I - I'm\nstill in pay, Misses Brown.'\n\n'And nothing to do, Rob?'\n\n'Nothing particular to do just now, Misses Brown, but to - keep my\neyes open, said the Grinder, rolling them in a forlorn way.\n\n'Master abroad, Rob?'\n\n'Oh, for goodness' sake, Misses Brown, couldn't you gossip with a\ncove about anything else?' cried the Grinder, in a burst of despair.\n\nThe impetuous Mrs Brown rising directly, the tortured Grinder\ndetained her, stammering 'Ye-es, Misses Brown, I believe he's abroad.\nWhat's she staring at?' he added, in allusion to the daughter, whose\neyes were fixed upon the face that now again looked out behind\n\n'Don't mind her, lad,' said the old woman, holding him closer to\nprevent his turning round. 'It's her way - her way. Tell me, Rob. Did\nyou ever see the lady, deary?'\n\n'Oh, Misses Brown, what lady?' cried the Grinder in a tone of\npiteous supplication.\n\n'What lady?' she retorted. 'The lady; Mrs Dombey.'\n\n'Yes, I believe I see her once,' replied Rob.\n\n'The night she went away, Robby, eh?' said the old woman in his\near, and taking note of every change in his face. 'Aha! I know it was\nthat night.'\n\n'Well, if you know it was that night, you know, Misses Brown,'\nreplied Rob, 'it's no use putting pinchers into a cove to make him say\nso.\n\n'Where did they go that night, Rob? Straight away? How did they go?\nWhere did you see her? Did she laugh? Did she cry? Tell me all about\nit,' cried the old hag, holding him closer yet, patting the hand that\nwas drawn through his arm against her other hand, and searching every\nline in his face with her bleared eyes. 'Come! Begin! I want to be\ntold all about it. What, Rob, boy! You and me can keep a secret\ntogether, eh? We've done so before now. Where did they go first, Rob?'\n\nThe wretched Grinder made a gasp, and a pause.\n\n'Are you dumb?' said the old woman, angrily.\n\n'Lord, Misses Brown, no! You expect a cove to be a flash of\nlightning. I wish I was the electric fluency,' muttered the bewildered\nGrinder. 'I'd have a shock at somebody, that would settle their\nbusiness.'\n\n'What do you say?' asked the old woman, with a grin.\n\n'I'm wishing my love to you, Misses Brown,' returned the false Rob,\nseeking consolation in the glass. 'Where did they go to first was it?\nHim and her, do you mean?'\n\n'Ah!' said the old woman, eagerly. 'Them two.'\n\n'Why, they didn't go nowhere - not together, I mean,' answered Rob.\n\nThe old woman looked at him, as though she had a strong impulse\nupon her to make another clutch at his head and throat, but was\nrestrained by a certain dogged mystery in his face.\n\n'That was the art of it,' said the reluctant Grinder; 'that's the\nway nobody saw 'em go, or has been able to say how they did go. They\nwent different ways, I tell you Misses Brown.\n\n'Ay, ay, ay! To meet at an appointed place,' chuckled the old\nwoman, after a moment's silent and keen scrutiny of his face.\n\n'Why, if they weren't a going to meet somewhere, I suppose they\nmight as well have stayed at home, mightn't they, Brown?' returned the\nunwilling Grinder.\n\n'Well, Rob? Well?' said the old woman, drawing his arm yet tighter\nthrough her own, as if, in her eagerness, she were afraid of his\nslipping away.\n\n'What, haven't we talked enough yet, Misses Brown?' returned the\nGrinder, who, between his sense of injury, his sense of liquor, and\nhis sense of being on the rack, had become so lachrymose, that at\nalmost every answer he scooped his coats into one or other of his\neyes, and uttered an unavailing whine of remonstrance. 'Did she laugh\nthat night, was it? Didn't you ask if she laughed, Misses Brown?'\n\n'Or cried?' added the old woman, nodding assent.\n\n'Neither,' said the Grinder. 'She kept as steady when she and me -\noh, I see you will have it out of me, Misses Brown! But take your\nsolemn oath now, that you'll never tell anybody.'\n\nThis Mrs Brown very readily did: being naturally Jesuitical; and\nhaving no other intention in the matter than that her concealed\nvisitor should hear for himself.\n\n'She kept as steady, then, when she and me went down to\nSouthampton,' said the Grinder, 'as a image. In the morning she was\njust the same, Misses Brown. And when she went away in the packet\nbefore daylight, by herself - me pretending to be her servant, and\nseeing her safe aboard - she was just the same. Now, are you\ncontented, Misses Brown?'\n\n'No, Rob. Not yet,' answered Mrs Brown, decisively.\n\n'Oh, here's a woman for you!' cried the unfortunate Rob, in an\noutburst of feeble lamentation over his own helplessness.\n\n'What did you wish to know next, Misses Brown?'\n\n'What became of Master? Where did he go?' she inquired, still\nholding hIm tight, and looking close into his face, with her sharp\neyes.\n\n'Upon my soul, I don't know, Misses Brown,' answered Rob.\n\n'Upon my soul I don't know what he did, nor where he went, nor\nanything about him I only know what he said to me as a caution to hold\nmy tongue, when we parted; and I tell you this, Misses Brown, as a\nfriend, that sooner than ever repeat a word of what we're saying now,\nyou had better take and shoot yourself, or shut yourself up in this\nhouse, and set it a-fire, for there's nothing he wouldn't do, to be\nrevenged upon you. You don't know him half as well as I do, Misses\nBrown. You're never safe from him, I tell you.'\n\n'Haven't I taken an oath,' retorted the old woman, 'and won't I\nkeep it?'\n\n'Well, I'm sure I hope you will, Misses Brown,' returned Rob,\nsomewhat doubtfully, and not without a latent threatening in his\nmanner. 'For your own sake, quite as much as mine'\n\nHe looked at her as he gave her this friendly caution, and\nemphasized it with a nodding of his head; but finding it uncomfortable\nto encounter the yellow face with its grotesque action, and the ferret\neyes with their keen old wintry gaze, so close to his own, he looked\ndown uneasily and sat skulking in his chair, as if he were trying to\nbring hImself to a sullen declaration that he would answer no more\nquestions. The old woman, still holding him as before, took this\nopportunity of raising the forefinger of her right hand, in the air,\nas a stealthy signal to the concealed observer to give particular\nattention to what was about to follow.\n\n'Rob,' she said, in her most coaxing tone.\n\n'Good gracious, Misses Brown, what's the matter now?' returned the\nexasperated Grinder.\n\n'Rob! where did the lady and Master appoint to meet?'\n\nRob shuffled more and more, and looked up and looked down, and bit\nhis thumb, and dried it on his waistcoat, and finally said, eyeing his\ntormentor askance, 'How should I know, Misses Brown?'\n\nThe old woman held up her finger again, as before, and replying,\n'Come, lad! It's no use leading me to that, and there leaving me. I\nwant to know' waited for his answer. Rob, after a discomfited pause,\nsuddenly broke out with, 'How can I pronounce the names of foreign\nplaces, Mrs Brown? What an unreasonable woman you are!'\n\n'But you have heard it said, Robby,' she retorted firmly, 'and you\nknow what it sounded like. Come!'\n\n'I never heard it said, Misses Brown,' returned the Grinder.\n\n'Then,' retorted the old woman quickly, 'you have seen it written,\nand you can spell it.'\n\nRob, with a petulant exclamation between laughing and crying - for\nhe was penetrated with some admiration of Mrs Brown's cunning, even\nthrough this persecution - after some reluctant fumbling in his\nwaistcoat pocket, produced from it a little piece of chalk. The old\nwoman's eyes sparkled when she saw it between his thumb and finger,\nand hastily clearing a space on the deal table, that he might write\nthe word there, she once more made her signal with a shaking hand.\n\n'Now I tell you beforehand what it is, Misses Brown,' said Rob,\n'it's no use asking me anything else. I won't answer anything else; I\ncan't. How long it was to be before they met, or whose plan it was\nthat they was to go away alone, I don't know no more than you do. I\ndon't know any more about it. If I was to tell you how I found out\nthis word, you'd believe that. Shall I tell you, Misses Brown?'\n\n'Yes, Rob.'\n\n'Well then, Misses Brown. The way - now you won't ask any more, you\nknow?' said Rob, turning his eyes, which were now fast getting drowsy\nand stupid, upon her.\n\n'Not another word,' said Mrs Brown.\n\n'Well then, the way was this. When a certain person left the lady\nwith me, he put a piece of paper with a direction written on it in the\nlady's hand, saying it was in case she should forget. She wasn't\nafraid of forgetting, for she tore it up as soon as his back was\nturned, and when I put up the carriage steps, I shook out one of the\npieces - she sprinkled the rest out of the window, I suppose, for\nthere was none there afterwards, though I looked for 'em. There was\nonly one word on it, and that was this, if you must and will know. But\nremember! You're upon your oath, Misses Brown!'\n\nMrs Brown knew that, she said. Rob, having nothing more to say,\nbegan to chalk, slowly and laboriously, on the table.\n\n'\"D,\"' the old woman read aloud, when he had formed the letter.\n\n'Will you hold your tongue, Misses Brown?' he exclaimed, covering\nit with his hand, and turning impatiently upon her. 'I won't have it\nread out. Be quiet, will you!'\n\n'Then write large, Rob,' she returned, repeating her secret signal;\n'for my eyes are not good, even at print.'\n\nMuttering to himself, and returning to his work with an ill will,\nRob went on with the word. As he bent his head down, the person for\nwhose information he so unconsciously laboured, moved from the door\nbehind him to within a short stride of his shoulder, and looked\neagerly towards the creeping track of his hand upon the table. At the\nsame time, Alice, from her opposite chair, watched it narrowly as it\nshaped the letters, and repeated each one on her lips as he made it,\nwithout articulating it aloud. At the end of every letter her eyes and\nMr Dombey's met, as if each of them sought to be confirmed by the\nother; and thus they both spelt D.I.J.O.N.\n\n'There!' said the Grinder, moistening the palm of his hand hastily,\nto obliterate the word; and not content with smearing it out, rubbing\nand planing all trace of it away with his coat-sleeve, until the very\ncolour of the chalk was gone from the table. 'Now, I hope you're\ncontented, Misses Brown!'\n\nThe old woman, in token of her being so, released his arm and\npatted his back; and the Grinder, overcome with mortification,\ncross-examination, and liquor, folded his arms on the table, laid his\nhead upon them, and fell asleep.\n\nNot until he had been heavily asleep some time, and was snoring\nroundly, did the old woman turn towards the door where Mr Dombey stood\nconcealed, and beckon him to come through the room, and pass out. Even\nthen, she hovered over Rob, ready to blind him with her hands, or\nstrike his head down, if he should raise it while the secret step was\ncrossing to the door. But though her glance took sharp cognizance of\nthe sleeper, it was sharp too for the waking man; and when he touched\nher hand with his, and in spite of all his caution, made a chinking,\ngolden sound, it was as bright and greedy as a raven's.\n\nThe daughter's dark gaze followed him to the door, and noted well\nhow pale he was, and how his hurried tread indicated that the least\ndelay was an insupportable restraint upon him, and how he was burning\nto be active and away. As he closed the door behind him, she looked\nround at her mother. The old woman trotted to her; opened her hand to\nshow what was within; and, tightly closing it again in her jealousy\nand avarice, whispered:\n\n'What will he do, Ally?'\n\n'Mischief,' said the daughter.\n\n'Murder?' asked the old woman.\n\n'He's a madman, in his wounded pride, and may do that, for anything\nwe can say, or he either.'\n\nHer glance was brighter than her mother's, and the fire that shone\nin it was fiercer; but her face was colourless, even to her lips\n\nThey said no more, but sat apart; the mother communing with her\nmoney; the daughter with her thoughts; the glance of each, shining in\nthe gloom of the feebly lighted room. Rob slept and snored. The\ndisregarded parrot only was in action. It twisted and pulled at the\nwires of its cage, with its crooked beak, and crawled up to the dome,\nand along its roof like a fly, and down again head foremost, and\nshook, and bit, and rattled at every slender bar, as if it knew its\nmaster's danger, and was wild to force a passage out, and fly away to\nwarn him of it.\n\n\n\nCHAPTER 53.\n\nMore Intelligence\n\n\n\nThere were two of the traitor's own blood - his renounced brother\nand sister - on whom the weight of his guilt rested almost more\nheavily, at this time, than on the man whom he had so deeply injured.\nPrying and tormenting as the world was, it did Mr Dombey the service\nof nerving him to pursuit and revenge. It roused his passion, stung\nhis pride, twisted the one idea of his life into a new shape, and made\nsome gratification of his wrath, the object into which his whole\nintellectual existence resolved itself. All the stubbornness and\nimplacability of his nature, all its hard impenetrable quality, all\nits gloom and moroseness, all its exaggerated sense of personal\nimportance, all its jealous disposition to resent the least flaw in\nthe ample recognition of his importance by others, set this way like\nmany streams united into one, and bore him on upon their tide. The\nmost impetuously passionate and violently impulsive of mankind would\nhave been a milder enemy to encounter than the sullen Mr Dombey\nwrought to this. A wild beast would have been easier turned or soothed\nthan the grave gentleman without a wrinkle in his starched cravat.\n\nBut the very intensity of his purpose became almost a substitute\nfor action in it. While he was yet uninformed of the traitor's\nretreat, it served to divert his mind from his own calamity, and to\nentertain it with another prospect. The brother and sister of his\nfalse favourite had no such relief; everything in their history, past\nand present, gave his delinquency a more afflicting meaning to them.\n\nThe sister may have sometimes sadly thought that if she had\nremained with him, the companion and friend she had been once, he\nmight have escaped the crime into which he had fallen. If she ever\nthought so, it was still without regret for what she had done, without\nthe least doubt of her duty, without any pricing or enhancing of her\nself-devotion. But when this possibility presented itself to the\nerring and repentant brother, as it sometimes did, it smote upon his\nheart with such a keen, reproachful touch as he could hardly bear. No\nidea of retort upon his cruel brother came into his mind. New\naccusation of himself, fresh inward lamentings over his own\nunworthiness, and the ruin in which it was at once his consolation and\nhis self-reproach that he did not stand alone, were the sole kind of\nreflections to which the discovery gave rise in him.\n\nIt was on the very same day whose evening set upon the last\nchapter, and when Mr Dombey's world was busiest with the elopement of\nhis wife, that the window of the room in which the brother and sister\nsat at their early breakfast, was darkened by the unexpected shadow of\na man coming to the little porch: which man was Perch the Messenger.\n\n'I've stepped over from Balls Pond at a early hour,' said Mr Perch,\nconfidentially looking in at the room door, and stopping on the mat to\nwipe his shoes all round, which had no mud upon them, 'agreeable to my\ninstructions last night. They was, to be sure and bring a note to you,\nMr Carker, before you went out in the morning. I should have been here\na good hour and a half ago,' said Mr Perch, meekly, 'but fOr the state\nof health of Mrs P., who I thought I should have lost in the night, I\ndo assure you, five distinct times.'\n\n'Is your wife so ill?' asked Harriet.\n\n'Why, you see,' said Mr Perch, first turning round to shut the door\ncarefully, 'she takes what has happened in our House so much to heart,\nMiss. Her nerves is so very delicate, you see, and soon unstrung. Not\nbut what the strongest nerves had good need to be shook, I'm sure. You\nfeel it very much yourself, no doubts.\n\nHarriet repressed a sigh, and glanced at her brother.\n\n'I'm sure I feel it myself, in my humble way,' Mr Perch went on to\nsay, with a shake of his head, 'in a manner I couldn't have believed\nif I hadn't been called upon to undergo. It has almost the effect of\ndrink upon me. I literally feels every morning as if I had been taking\nmore than was good for me over-night.'\n\nMr Perch's appearance corroborated this recital of his symptoms.\nThere was an air of feverish lassitude about it, that seemed referable\nto drams; and, which, in fact, might no doubt have been traced to\nthose numerous discoveries of himself in the bars of public-houses,\nbeing treated and questioned, which he was in the daily habit of\nmaking.\n\n'Therefore I can judge,' said Mr Perch, shaking his head and\nspeaking in a silvery murmur, 'of the feelings of such as is at all\npeculiarly sitiwated in this most painful rewelation.'\n\nHere Mr Perch waited to be confided in; and receiving no\nconfidence, coughed behind his hand. This leading to nothing, he\ncoughed behind his hat; and that leading to nothing, he put his hat on\nthe ground and sought in his breast pocket for the letter.\n\n'If I rightly recollect, there was no answer,' said Mr Perch, with\nan affable smile; 'but perhaps you'll be so good as cast your eye over\nit, Sir.'\n\nJohn Carker broke the seal, which was Mr Dombey's, and possessing\nhimself of the contents, which were very brief, replied,\n\n'No. No answer is expected.'\n\n'Then I shall wish you good morning, Miss,' said Perch, taking a\nstep toward the door, and hoping, I'm sure, that you'll not permit\nyourself to be more reduced in mind than you can help, by the late\npainful rewelation. The Papers,' said Mr Perch, taking two steps back\nagain, and comprehensively addressing both the brother and sister in a\nwhisper of increased mystery, 'is more eager for news of it than you'd\nsuppose possible. One of the Sunday ones, in a blue cloak and a white\nhat, that had previously offered for to bribe me - need I say with\nwhat success? - was dodging about our court last night as late as\ntwenty minutes after eight o'clock. I see him myself, with his eye at\nthe counting-house keyhole, which being patent is impervious. Another\none,' said Mr Perch, 'with military frogs, is in the parlour of the\nKing's Arms all the blessed day. I happened, last week, to let a\nlittle obserwation fall there, and next morning, which was Sunday, I\nsee it worked up in print, in a most surprising manner.'\n\nMr Perch resorted to his breast pocket, as if to produce the\nparagraph but receiving no encouragement, pulled out his beaver\ngloves, picked up his hat, and took his leave; and before it was high\nnoon, Mr Perch had related to several select audiences at the King's\nArms and elsewhere, how Miss Carker, bursting into tears, had caught\nhim by both hands, and said, 'Oh! dear dear Perch, the sight of you is\nall the comfort I have left!' and how Mr John Carker had said, in an\nawful voice, 'Perch, I disown him. Never let me hear hIm mentioned as\na brother more!'\n\n'Dear John,' said Harriet, when they were left alone, and had\nremained silent for some few moments. 'There are bad tidings in that\nletter.'\n\n'Yes. But nothing unexpected,' he replied. 'I saw the writer\n\nyesterday.'\n\n'The writer?'\n\n'Mr Dombey. He passed twice through the Counting House while I was\nthere. I had been able to avoid him before, but of course could not\nhope to do that long. I know how natural it was that he should regard\nmy presence as something offensive; I felt it must be so, myself.'\n\n'He did not say so?'\n\n'No; he said nothing: but I saw that his glance rested on me for a\nmoment, and I was prepared for what would happen - for what has\nhappened. I am dismissed!'\n\nShe looked as little shocked and as hopeful as she could, but it\nwas distressing news, for many reasons.\n\n'\"I need not tell you\"' said John Carker, reading the letter, '\"why\nyour name would henceforth have an unnatural sound, in however remote\na connexion with mine, or why the daily sight of anyone who bears it,\nwould be unendurable to me. I have to notify the cessation of all\nengagements between us, from this date, and to request that no renewal\nof any communication with me, or my establishment, be ever attempted\nby you.\" - Enclosed is an equivalent in money to a generously long\nnotice, and this is my discharge.\" Heaven knows, Harriet, it is a\nlenient and considerate one, when we remember all!'\n\n'If it be lenient and considerate to punish you at all, John, for\nthe misdeed of another,' she replied gently, 'yes.'\n\n'We have been an ill-omened race to him,' said John Carker. 'He has\nreason to shrink from the sound of our name, and to think that there\nis something cursed and wicked in our blood. I should almost think it\ntoo, Harriet, but for you.'\n\n'Brother, don't speak like this. If you have any special reason, as\nyou say you have, and think you have - though I say, No!- to love me,\nspare me the hearing of such wild mad words!'\n\nHe covered his face with both his hands; but soon permitted her,\ncoming near him, to take one in her own.\n\n'After so many years, this parting is a melancholy thing, I know,'\nsaid his sister, 'and the cause of it is dreadful to us both. We have\nto live, too, and must look about us for the means. Well, well! We can\ndo so, undismayed. It is our pride, not our trouble, to strive, John,\nand to strive together!'\n\nA smile played on her lips, as she kissed his cheek, and entreated\nhim to be of of good cheer.\n\n'Oh, dearest sister! Tied, of your own noble will, to a ruined man!\nwhose reputation is blighted; who has no friend himself, and has\ndriven every friend of yours away!'\n\n'John!' she laid her hand hastily upon his lips, 'for my sake! In\nremembrance of our long companionship!' He was silent 'Now, let me\ntell you, dear,' quietly sitting by his side, 'I have, as you have,\nexpected this; and when I have been thinking of it, and fearing that\nit would happen, and preparing myself for it, as well as I could, I\nhave resolved to tell you, if it should be so, that I have kept a\nsecret from you, and that we have a friend.'\n\n'What's our friend's name, Harriet?' he answered with a sorrowful\n\nsmile.\n\n'Indeed, I don't know, but he once made a very earnest protestation\nto me of his friendship and his wish to serve us: and to this day I\nbelieve 'him.'\n\n'Harriet!' exclaimed her wondering brother, 'where does this friend\n\nlive?'\n\n'Neither do I know that,' she returned. 'But he knows us both, and\nour history - all our little history, John. That is the reason why, at\nhis own suggestion, I have kept the secret of his coming, here, from\nyou, lest his acquaintance with it should distress you.\n\n'Here! Has he been here, Harriet?'\n\n'Here, in this room. Once.'\n\n'What kind of man?'\n\n'Not young. \"Grey-headed,\" as he said, \"and fast growing greyer.\"\nBut generous, and frank, and good, I am sure.'\n\n'And only seen once, Harriet?'\n\n'In this room only once,' said his sister, with the slightest and\nmost transient glow upon her cheek; 'but when here, he entreated me to\nsuffer him to see me once a week as he passed by, in token of our\nbeing well, and continuing to need nothing at his hands. For I told\nhim, when he proffered us any service he could render - which was the\nobject of his visit - that we needed nothing.'\n\n'And once a week - '\n\n'Once every week since then, and always on the same day, and at the\nsame hour, he his gone past; always on foot; always going in the same\ndirection - towards London; and never pausing longer than to bow to\nme, and wave his hand cheerfully, as a kind guardian might. He made\nthat promise when he proposed these curious interviews, and has kept\nit so faithfully and pleasantly, that if I ever felt any trifling\nuneasiness about them in the beginning (which I don't think I did,\nJohn; his manner was so plain and true) It very soon vanished, and\nleft me quite glad when the day was coming. Last Monday - the first\nsince this terrible event - he did not go by; and I have wondered\nwhether his absence can have been in any way connected with what has\nhappened.'\n\n'How?' inquired her brother.\n\n'I don't know how. I have only speculated on the coincidence; I\nhave not tried to account for it. I feel sure he will return. When he\ndoes, dear John, let me tell him that I have at last spoken to you,\nand let me bring you together. He will certainly help us to a new\nlivelihood. His entreaty was that he might do something to smooth my\nlife and yours; and I gave him my promise that if we ever wanted a\nfriend, I would remember him.'\n\n'Then his name was to be no secret, 'Harriet,' said her brother,\nwho had listened with close attention, 'describe this gentleman to me.\nI surely ought to know one who knows me so well.'\n\nHis sister painted, as vividly as she could, the features, stature,\nand dress of her visitor; but John Carker, either from having no\nknowledge of the original, or from some fault in her description, or\nfrom some abstraction of his thoughts as he walked to and fro,\npondering, could not recognise the portrait she presented to him.\n\nHowever, it was agreed between them that he should see the original\nwhen he next appeared. This concluded, the sister applied herself,\nwith a less anxious breast, to her domestic occupations; and the\ngrey-haired man, late Junior of Dombey's, devoted the first day of his\nunwonted liberty to working in the garden.\n\nIt was quite late at night, and the brother was reading aloud while\nthe sister plied her needle, when they were interrupted by a knocking\nat the door. In the atmosphere of vague anxiety and dread that lowered\nabout them in connexion with their fugitive brother, this sound,\nunusual there, became almost alarming. The brother going to the door,\nthe sister sat and listened timidly. Someone spoke to him, and he\nreplied and seemed surprised; and after a few words, the two\napproached together.\n\n'Harriet,' said her brother, lighting in their late visitor, and\nspeaking in a low voice, 'Mr Morfin - the gentleman so long in\nDombey's House with James.'\n\nHis sister started back, as if a ghost had entered. In the doorway\nstood the unknown friend, with the dark hair sprinkled with grey, the\nruddy face, the broad clear brow, and hazel eyes, whose secret she had\nkept so long!\n\n'John!' she said, half-breathless. 'It is the gentleman I told you\nof, today!'\n\n'The gentleman, Miss Harriet,' said the visitor, coming in - for he\nhad stopped a moment in the doorway - 'is greatly relieved to hear you\nsay that: he has been devising ways and means, all the way here, of\nexplaining himself, and has been satisfied with none. Mr John, I am\nnot quite a stranger here. You were stricken with astonishment when\nyou saw me at your door just now. I observe you are more astonished at\npresent. Well! That's reasonable enough under existing circumstances.\nIf we were not such creatures of habit as we are, we shouldn't have\nreason to be astonished half so often.'\n\nBy this time, he had greeted Harriet with that able mingling of\ncordiality and respect which she recollected so well, and had sat down\nnear her, pulled off his gloves, and thrown them into his hat upon the\ntable.\n\n'There's nothing astonishing,' he said, 'in my having conceived a\ndesire to see your sister, Mr John, or in my having gratified it in my\nown way. As to the regularity of my visits since (which she may have\nmentioned to you), there is nothing extraordinary in that. They soon\ngrew into a habit; and we are creatures of habit - creatures of\nhabit!'\n\nPutting his hands into his pockets, and leaning back in his chair,\nhe looked at the brother and sister as if it were interesting to him\nto see them together; and went on to say, with a kind of irritable\nthoughtfulness:\n\n'It's this same habit that confirms some of us, who are capable of\nbetter things, in Lucifer's own pride and stubbornness - that confirms\nand deepens others of us in villainy - more of us in indifference -\nthat hardens us from day to day, according to the temper of our clay,\nlike images, and leaves us as susceptible as images to new impressions\nand convictions. You shall judge of its influence on me, John. For\nmore years than I need name, I had my small, and exactly defined\nshare, in the management of Dombey's House, and saw your brother (who\nhas proved himself a scoundrel! Your sister will forgive my being\nobliged to mention it) extending and extending his influence, until\nthe business and its owner were his football; and saw you toiling at\nyour obscure desk every day; and was quite content to be as little\ntroubled as I might be, out of my own strip of duty, and to let\neverything about me go on, day by day, unquestioned, like a great\nmachine - that was its habit and mine - and to take it all for\ngranted, and consider it all right. My Wednesday nights came regularly\nround, our quartette parties came regularly off, my violoncello was in\ngood tune, and there was nothing wrong in my world - or if anything\nnot much - or little or much, it was no affair of mine.'\n\n'I can answer for your being more respected and beloved during all\nthat time than anybody in the House, Sir,' said John Carker.\n\n'Pooh! Good-natured and easy enough, I daresay,'returned the other,\n'a habit I had. It suited the Manager; it suited the man he managed:\nit suited me best of all. I did what was allotted to me to do, made no\ncourt to either of them, and was glad to occupy a station in which\nnone was required. So I should have gone on till now, but that my room\nhad a thin wall. You can tell your sister that it was divided from the\nManager's room by a wainscot partition.'\n\n'They were adjoining rooms; had been one, Perhaps, originally; and\nwere separated, as Mr Morfin says,' said her brother, looking back to\nhim for the resumption of his explanation.\n\n'I have whistled, hummed tunes, gone accurately through the whole\nof Beethoven's Sonata in B,' to let him know that I was within\nhearing,' said Mr Morfin; 'but he never heeded me. It happened seldom\nenough that I was within hearing of anything of a private nature,\ncertainly. But when I was, and couldn't otherwise avoid knowing\nsomething of it, I walked out. I walked out once, John, during a\nconversation between two brothers, to which, in the beginning, young\nWalter Gay was a party. But I overheard some of it before I left the\nroom. You remember it sufficiently, perhaps, to tell your sister what\nits nature was?'\n\n'It referred, Harriet,' said her brother in a low voice, 'to the\npast, and to our relative positions in the House.'\n\n'Its matter was not new to me, but was presented in a new aspect.\nIt shook me in my habit - the habit of nine-tenths of the world - of\nbelieving that all was right about me, because I was used to it,' said\ntheir visitor; 'and induced me to recall the history of the two\nbrothers, and to ponder on it. I think it was almost the first time in\nmy life when I fell into this train of reflection - how will many\nthings that are familiar, and quite matters of course to us now, look,\nwhen we come to see them from that new and distant point of view which\nwe must all take up, one day or other? I was something less\ngood-natured, as the phrase goes, after that morning, less easy and\ncomplacent altogether.'\n\nHe sat for a minute or so, drumming with one hand on the table; and\nresumed in a hurry, as if he were anxious to get rid of his\nconfession.\n\n'Before I knew what to do, or whether I could do anything, there\nwas a second conversation between the same two brothers, in which\ntheir sister was mentioned. I had no scruples of conscience in\nsuffering all the waifs and strays of that conversation to float to me\nas freely as they would. I considered them mine by right. After that,\nI came here to see the sister for myself. The first time I stopped at\nthe garden gate, I made a pretext of inquiring into the character of a\npoor neighbour; but I wandered out of that tract, and I think Miss\nHarriet mistrusted me. The second time I asked leave to come in; came\nin; and said what I wished to say. Your sister showed me reasons which\nI dared not dispute, for receiving no assistance from me then; but I\nestablished a means of communication between us, which remained\nunbroken until within these few days, when I was prevented, by\nimportant matters that have lately devolved upon me, from maintaining\nthem'\n\n'How little I have suspected this,' said John Carker, 'when I have\nseen you every day, Sir! If Harriet could have guessed your name - '\n\n'Why, to tell you the truth, John,' interposed the visitor, 'I kept\nit to myself for two reasons. I don't know that the first might have\nbeen binding alone; but one has no business to take credit for good\nintentions, and I made up my mind, at all events, not to disclose\nmyself until I should be able to do you some real service or other. My\nsecond reason was, that I always hoped there might be some lingering\npossibility of your brother's relenting towards you both; and in that\ncase, I felt that where there was the chance of a man of his\nsuspicious, watchful character, discovering that you had been secretly\nbefriended by me, there was the chance of a new and fatal cause of\ndivision. I resolved, to be sure, at the risk of turning his\ndispleasure against myself - which would have been no matter - to\nwatch my opportunity of serving you with the head of the House; but\nthe distractions of death, courtship, marriage, and domestic\nunhappiness, have left us no head but your brother for this long, long\ntime. And it would have been better for us,' said the visitor,\ndropping his voice, 'to have been a lifeless trunk.'\n\nHe seemed conscious that these latter words had escaped hIm against\nhis will, and stretching out a hand to the brother, and a hand to the\nsister, continued: 'All I could desire to say, and more, I have now\nsaid. All I mean goes beyond words, as I hope you understand and\nbelieve. The time has come, John - though most unfortunately and\nunhappily come - when I may help you without interfering with that\nredeeming struggle, which has lasted through so many years; since you\nwere discharged from it today by no act of your own. It is late; I\nneed say no more to-night. You will guard the treasure you have here,\nwithout advice or reminder from me.'\n\nWith these words he rose to go.\n\n'But go you first, John,' he said goodhumouredly, 'with a light,\nwithout saying what you want to say, whatever that maybe;' John\nCarker's heart was full, and he would have relieved it in speech,' if\nhe could; 'and let me have a word with your sister. We have talked\nalone before, and in this room too; though it looks more natural with\nyou here.'\n\nFollowing him out with his eyes, he turned kindly to Harriet, and\nsaid in a lower voice, and with an altered and graver manner:\n\n'You wish to ask me something of the man whose sister it is your\nmisfortune to be.'\n\n'I dread to ask,' said Harriet.\n\n'You have looked so earnestly at me more than once,' rejoined the\nvisitor, 'that I think I can divine your question. Has he taken money?\nIs it that?'\n\n'Yes.'\n\n'He has not.'\n\n'I thank Heaven!' said Harriet. 'For the sake of John.'\n\n'That he has abused his trust in many ways,' said Mr Morfin; 'that\nhe has oftener dealt and speculated to advantage for himself, than for\nthe House he represented; that he has led the House on, to prodigious\nventures, often resulting in enormous losses; that he has always\npampered the vanity and ambition of his employer, when it was his duty\nto have held them in check, and shown, as it was in his power to do,\nto what they tended here or there; will not, perhaps, surprise you\nnow. Undertakings have been entered on, to swell the reputation of the\nHouse for vast resources, and to exhibit it in magnificent contrast to\nother merchants' Houses, of which it requires a steady head to\ncontemplate the possibly - a few disastrous changes of affairs might\nrender them the probably - ruinous consequences. In the midst of the\nmany transactions of the House, in most parts of the world: a great\nlabyrinth of which only he has held the clue: he has had the\nopportunity, and he seems to have used it, of keeping the various\nresults afloat, when ascertained, and substituting estimates and\ngeneralities for facts. But latterly - you follow me, Miss Harriet?'\n\n'Perfectly, perfectly,' she answered, with her frightened face\nfixed on his. 'Pray tell me all the worst at once.\n\n'Latterly, he appears to have devoted the greatest pains to making\nthese results so plain and clear, that reference to the private books\nenables one to grasp them, numerous and varying as they are, with\nextraordinary ease. As if he had resolved to show his employer at one\nbroad view what has been brought upon him by ministration to his\nruling passion! That it has been his constant practice to minister to\nthat passion basely, and to flatter it corruptly, is indubitable. In\nthat, his criminality, as it is connected with the affairs of the\nHouse, chiefly consists.'\n\n'One other word before you leave me, dear Sir,' said Harriet.\n'There is no danger in all this?'\n\n'How danger?' he returned, with a little hesitation.\n\n'To the credit of the House?'\n\n'I cannot help answering you plainly, and trusting you completely,'\nsaid Mr Morfin, after a moment's survey of her face.\n\n'You may. Indeed you may!'\n\n'I am sure I may. Danger to the House's credit? No; none There may\nbe difficulty, greater or less difficulty, but no danger, unless -\nunless, indeed - the head of the House, unable to bring his mind to\nthe reduction of its enterprises, and positively refusing to believe\nthat it is, or can be, in any position but the position in which he\nhas always represented it to himself, should urge it beyond its\nstrength. Then it would totter.'\n\n'But there is no apprehension of that?' said Harriet.\n\n'There shall be no half-confidence,' he replied, shaking her hand,\n'between us. Mr Dombey is unapproachable by anyone, and his state of\nmind is haughty, rash, unreasonable, and ungovernable, now. But he is\ndisturbed and agitated now beyond all common bounds, and it may pass.\nYou now know all, both worst and best. No more to-night, and\ngood-night!'\n\nWith that he kissed her hand, and, passing out to the door where\nher brother stood awaiting his coming, put him cheerfully aside when\nhe essayed to speak; told him that, as they would see each other soon\nand often, he might speak at another time, if he would, but there was\nno leisure for it then; and went away at a round pace, in order that\nno word of gratitude might follow him.\n\nThe brother and sister sat conversing by the fireside, until it was\nalmost day; made sleepless by this glimpse of the new world that\nopened before them, and feeling like two people shipwrecked long ago,\nupon a solitary coast, to whom a ship had come at last, when they were\nold in resignation, and had lost all thought of any other home. But\nanother and different kind of disquietude kept them waking too. The\ndarkness out of which this light had broken on them gathered around;\nand the shadow of their guilty brother was in the house where his foot\nhad never trod.\n\nNor was it to be driven out, nor did it fade before the sun. Next\nmorning it was there; at noon; at night Darkest and most distinct at\nnight, as is now to be told.\n\nJohn Carker had gone out, in pursuance of a letter of appointment\nfrom their friend, and Harriet was left in the house alone. She had\nbeen alone some hours. A dull, grave evening, and a deepening\ntwilight, were not favourable to the removal of the oppression on her\nspirits. The idea of this brother, long unseen and unknown, flitted\nabout her in frightful shapes He was dead, dying, calling to her,\nstaring at her, frowning on her. The pictures in her mind were so\nobtrusive and exact that, as the twilight deepened, she dreaded to\nraise her head and look at the dark corners of the room, lest his\nwraith, the offspring of her excited imagination, should be waiting\nthere, to startle her. Once she had such a fancy of his being in the\nnext room, hiding - though she knew quite well what a distempered\nfancy it was, and had no belief in it - that she forced herself to go\nthere, for her own conviction. But in vain. The room resumed its\nshadowy terrors, the moment she left it; and she had no more power to\ndivest herself of these vague impressions of dread, than if they had\nbeen stone giants, rooted in the solid earth.\n\nIt was almost dark, and she was sitting near the window, with her\nhead upon her hand, looking down, when, sensible of a sudden increase\nin the gloom of the apartment, she raised her eyes, and uttered an\ninvoluntary cry. Close to the glass, a pale scared face gazed in;\nvacantly, for an instant, as searching for an object; then the eyes\nrested on herself, and lighted up.\n\n'Let me in! Let me in! I want to speak to you!' and the hand\nrattled on the glass.\n\nShe recognised immediately the woman with the long dark hair, to\nwhom she had given warmth, food, and shelter, one wet night. Naturally\nafraid of her, remembering her violent behaviour, Harriet, retreating\na little from the window, stood undecided and alarmed.\n\n'Let me in! Let me speak to you! I am thankful - quiet - humble -\nanything you like. But let me speak to you.'\n\nThe vehement manner of the entreaty, the earnest expression of the\nface, the trembling of the two hands that were raised imploringly, a\ncertain dread and terror in the voice akin to her own condition at the\nmoment, prevailed with Harriet. She hastened to the door and opened\nit.\n\n'May I come in, or shall I speak here?' said the woman, catching at\nher hand.\n\n'What is it that you want? What is it that you have to say?'\n\n'Not much, but let me say it out, or I shall never say it. I am\ntempted now to go away. There seem to be hands dragging me from the\ndoor. Let me come in, if you can trust me for this once!'\n\nHer energy again prevailed, and they passed into the firelight of\nthe little kitchen, where she had before sat, and ate, and dried her\nclothes.\n\n'Sit there,' said Alice, kneeling down beside her, 'and look at me.\nYou remember me?'\n\n'I do.'\n\n'You remember what I told you I had been, and where I came from,\nragged and lame, with the fierce wind and weather beating on my head?'\n\n'Yes.'\n\n'You know how I came back that night, and threw your money in the\ndirt, and you and your race. Now, see me here, upon my knees. Am l\nless earnest now, than I was then?'\n\n'If what you ask,' said Harriet, gently, 'is forgiveness - '\n\n'But it's not!' returned the other, with a proud, fierce look 'What\nI ask is to be believed. Now you shall judge if I am worthy of belief,\nboth as I was, and as I am.'\n\nStill upon her knees, and with her eyes upon the fire, and the fire\nshining on her ruined beauty and her wild black hair, one long tress\nof which she pulled over her shoulder, and wound about her hand, and\nthoughtfully bit and tore while speaking, she went on:\n\n'When I was young and pretty, and this,' plucking contemptuously at\nthe hair she held, was only handled delicately, and couldn't be\nadmired enough, my mother, who had not been very mindful of me as a\nchild, found out my merits, and was fond of me, and proud of me. She\nwas covetous and poor, and thought to make a sort of property of me.\nNo great lady ever thought that of a daughter yet, I'm sure, or acted\nas if she did - it's never done, we all know - and that shows that the\nonly instances of mothers bringing up their daughters wrong, and evil\ncoming of it, are among such miserable folks as us.'\n\nLooking at the fire, as if she were forgetful, for the moment, of\nhaving any auditor, she continued in a dreamy way, as she wound the\nlong tress of hair tight round and round her hand.\n\n'What came of that, I needn't say. Wretched marriages don't come of\nsuch things, in our degree; only wretchedness and ruin. Wretchedness\nand ruin came on me - came on me.\n\nRaising her eyes swiftly from their moody gaze upon the fire, to\nHarriet's face, she said:\n\n'I am wasting time, and there is none to spare; yet if I hadn't\nthought of all, I shouldn't be here now. Wretchedness and ruin came on\nme, I say. I was made a short-lived toy, and flung aside more cruelly\nand carelessly than even such things are. By whose hand do you think?'\n\n'Why do you ask me?' said Harriet.\n\n'Why do you tremble?' rejoined Alice, with an eager look. 'His\nusage made a Devil of me. I sunk in wretchedness and ruin, lower and\nlower yet. I was concerned in a robbery - in every part of it but the\ngains - and was found out, and sent to be tried, without a friend,\nwithout a penny. Though I was but a girl, I would have gone to Death,\nsooner than ask him for a word, if a word of his could have saved me.\nI would! To any death that could have been invented. But my mother,\ncovetous always, sent to him in my name, told the true story of my\ncase, and humbly prayed and petitioned for a small last gift - for not\nso many pounds as I have fingers on this hand. Who was it, do you\nthink, who snapped his fingers at me in my misery, lying, as he\nbelieved, at his feet, and left me without even this poor sign of\nremembrance; well satisfied that I should be sent abroad, beyond the\nreach of farther trouble to him, and should die, and rot there? Who\nwas this, do you think?'\n\n'Why do you ask me?' repeated Harriet.\n\n'Why do you tremble?' said Alice, laying her hand upon her arm' and\nlooking in her face, 'but that the answer is on your lips! It was your\nbrother James.\n\nHarriet trembled more and more, but did not avert her eyes from the\neager look that rested on them.\n\n'When I knew you were his sister - which was on that night - I came\nback, weary and lame, to spurn your gift. I felt that night as if I\ncould have travelled, weary and lame, over the whole world, to stab\nhim, if I could have found him in a lonely place with no one near. Do\nyou believe that I was earnest in all that?'\n\n'I do! Good Heaven, why are you come again?'\n\n'Since then,' said Alice, with the same grasp of her arm, and the\nsame look in her face, 'I have seen him! I have followed him with my\neyes, In the broad day. If any spark of my resentment slumbered in my\nbosom, it sprung into a blaze when my eyes rested on him. You know he\nhas wronged a proud man, and made him his deadly enemy. What if I had\ngiven information of him to that man?'\n\n'Information!' repeated Harriet.\n\n'What if I had found out one who knew your brother's secret; who\nknew the manner of his flight, who knew where he and the companion of\nhis flight were gone? What if I had made him utter all his knowledge,\nword by word, before his enemy, concealed to hear it? What if I had\nsat by at the time, looking into this enemy's face, and seeing it\nchange till it was scarcely human? What if I had seen him rush away,\nmad, in pursuit? What if I knew, now, that he was on his road, more\nfiend than man, and must, in so many hours, come up with him?'\n\n'Remove your hand!' said Harriet, recoiling. 'Go away! Your touch\nis dreadful to me!'\n\n'I have done this,' pursued the other, with her eager look,\nregardless of the interruption. 'Do I speak and look as if I really\nhad? Do you believe what I am saying?'\n\n'I fear I must. Let my arm go!'\n\n'Not yet. A moment more. You can think what my revengeful purpose\nmust have been, to last so long, and urge me to do this?'\n\n'Dreadful!' said Harriet.\n\n'Then when you see me now,' said Alice hoarsely, 'here again,\nkneeling quietly on the ground, with my touch upon your arm, with my\neyes upon your face, you may believe that there is no common\nearnestness in what I say, and that no common struggle has been\nbattling in my breast. I am ashamed to speak the words, but I relent.\nI despise myself; I have fought with myself all day, and all last\nnight; but I relent towards him without reason, and wish to repair\nwhat I have done, if it is possible. I wouldn't have them come\ntogether while his pursuer is so blind and headlong. If you had seen\nhim as he went out last night, you would know the danger better.\n\n'How can it be prevented? What can I do?' cried Harriet.\n\n'All night long,' pursued the other, hurriedly, 'I had dreams of\nhim - and yet I didn't sleep - in his blood. All day, I have had him\nnear me.\n\n'What can I do?' cried Harriet, shuddering at these words.\n\n'If there is anyone who'll write, or send, or go to him, let them\nlose no time. He is at Dijon. Do you know the name, and where it is?'\n\n'Yes.'\n\n'Warn him that the man he has made his enemy is in a frenzy, and\nthat he doesn't know him if he makes light of his approach. Tell him\nthat he is on the road - I know he is! - and hurrying on. Urge him to\nget away while there is time - if there is time - and not to meet him\nyet. A month or so will make years of difference. Let them not\nencounter, through me. Anywhere but there! Any time but now! Let his\nfoe follow him, and find him for himself, but not through me! There is\nenough upon my head without.'\n\nThe fire ceased to be reflected in her jet black hair, uplifted\nface, and eager eyes; her hand was gone from Harriet's arm; and the\nplace where she had been was empty.\n\n\nCHAPTER 54.\n\nThe Fugitives\n\n\n\nTea-time, an hour short of midnight; the place, a French apartment,\ncomprising some half-dozen rooms; - a dull cold hall or corridor, a\ndining-room, a drawing-room, a bed-room, and an inner drawingroom, or\nboudoir, smaller and more retired than the rest. All these shut in by\none large pair of doors on the main staircase, but each room provided\nwith two or three pairs of doors of its own, establishing several\nmeans of communication with the remaining portion of the apartment, or\nwith certain small passages within the wall, leading, as is not\nunusual in such houses, to some back stairs with an obscure outlet\nbelow. The whole situated on the first floor of so large an Hotel,\nthat it did not absorb one entire row of windows upon one side of the\nsquare court-yard in the centre, upon which the whole four sides of\nthe mansion looked.\n\nAn air of splendour, sufficiently faded to be melancholy, and\nsufficiently dazzling to clog and embarrass the details of life with a\nshow of state, reigned in these rooms The walls and ceilings were\ngilded and painted; the floors were waxed and polished; crimson\ndrapery hung in festoons from window, door, and mirror; and\ncandelabra, gnarled and intertwisted like the branches of trees, or\nhorns of animals, stuck out from the panels of the wall. But in the\nday-time, when the lattice-blinds (now closely shut) were opened, and\nthe light let in, traces were discernible among this finery, of wear\nand tear and dust, of sun and damp and smoke, and lengthened intervals\nof want of use and habitation, when such shows and toys of life seem\nsensitive like life, and waste as men shut up in prison do. Even\nnight, and clusters of burning candles, could not wholly efface them,\nthough the general glitter threw them in the shade.\n\nThe glitter of bright tapers, and their reflection in\nlooking-glasses, scraps of gilding and gay colours, were confined, on\nthis night, to one room - that smaller room within the rest, just now\nenumerated. Seen from the hall, where a lamp was feebly burning,\nthrough the dark perspective of open doors, it looked as shining and\nprecious as a gem. In the heart of its radiance sat a beautiful woman\n- Edith.\n\nShe was alone. The same defiant, scornful woman still. The cheek a\nlittle worn, the eye a little larger in appearance, and more lustrous,\nbut the haughty bearing just the same. No shame upon her brow; no late\nrepentance bending her disdainful neck. Imperious and stately yet, and\nyet regardless of herself and of all else, she sat wIth her dark eyes\ncast down, waiting for someone.\n\nNo book, no work, no occupation of any kind but her own thought,\nbeguiled the tardy time. Some purpose, strong enough to fill up any\npause, possessed her. With her lips pressed together, and quivering if\nfor a moment she released them from her control; with her nostril\ninflated; her hands clasped in one another; and her purpose swelling\nin her breast; she sat, and waited.\n\nAt the sound of a key in the outer door, and a footstep in the\nhall, she started up, and cried 'Who's that?' The answer was in\nFrench, and two men came in with jingling trays, to make preparation\nfor supper.\n\n'Who had bade them to do so?' she asked.\n\n'Monsieur had commanded it, when it was his pleasure to take the\napartment. Monsieur had said, when he stayed there for an hour, en\nroute, and left the letter for Madame - Madame had received it\nsurely?'\n\n'Yes.'\n\n'A thousand pardons! The sudden apprehension that it might have\nbeen forgotten had struck hIm;' a bald man, with a large beard from a\nneighbouring restaurant; 'with despair! Monsieur had said that supper\nwas to be ready at that hour: also that he had forewarned Madame of\nthe commands he had given, in his letter. Monsieur had done the Golden\nHead the honour to request that the supper should be choice and\ndelicate. Monsieur would find that his confidence in the Golden Head\nwas not misplaced.'\n\nEdith said no more, but looked on thoughtfully while they prepared\nthe table for two persons, and set the wine upon it. She arose before\nthey had finished, and taking a lamp, passed into the bed-chamber and\ninto the drawing-room, where she hurriedly but narrowly examined all\nthe doors; particularly one in the former room that opened on the\npassage in the wall. From this she took the key, and put it on the\nouter side. She then came back.\n\nThe men - the second of whom was a dark, bilious subject, in a\njacket, close shaved, and with a black head of hair close cropped -\nhad completed their preparation of the table, and were standing\nlooking at it. He who had spoken before, inquired whether Madame\nthought it would be long before Monsieur arrived?\n\n'She couldn't say. It was all one.'\n\n'Pardon! There was the supper! It should be eaten on the instant.\nMonsieur (who spoke French like an Angel - or a Frenchman - it was all\nthe same) had spoken with great emphasis of his punctuality. But the\nEnglish nation had so grand a genius for punctuality. Ah! what noise!\nGreat Heaven, here was Monsieur. Behold him!'\n\nIn effect, Monsieur, admitted by the other of the two, came, with\nhis gleaming teeth, through the dark rooms, like a mouth; and arriving\nin that sanctuary of light and colour, a figure at full length,\nembraced Madame, and addressed her in the French tongue as his\ncharming wife\n\n'My God! Madame is going to faint. Madame is overcome with joy!'\nThe bald man with the beard observed it, and cried out.\n\nMadame had only shrunk and shivered. Before the words were spoken,\nshe was standing with her hand upon the velvet back of a great chair;\nher figure drawn up to its full height, and her face immoveable.\n\n'Francois has flown over to the Golden Head for supper. He flies on\nthese occasions like an angel or a bird. The baggage of Monsieur is in\nhis room. All is arranged. The supper will be here this moment.' These\nfacts the bald man notified with bows and smiles, and presently the\nsupper came.\n\nThe hot dishes were on a chafing-dish; the cold already set forth,\nwith the change of service on a sideboard. Monsieur was satisfied with\nthis arrangement. The supper table being small, it pleased him very\nwell. Let them set the chafing-dish upon the floor, and go. He would\nremove the dishes with his own hands.\n\n'Pardon!' said the bald man, politely. 'It was impossible!'\n\nMonsieur was of another opinion. He required no further attendance\nthat night.\n\n'But Madame - ' the bald man hinted.\n\n'Madame,' replied Monsieur, 'had her own maid. It was enough.'\n\n'A million pardons! No! Madame had no maid!'\n\n'I came here alone,' said Edith 'It was my choice to do so. I am\nwell used to travelling; I want no attendance. They need send nobody\nto me.\n\nMonsieur accordingly, persevering in his first proposed\nimpossibility, proceeded to follow the two attendants to the outer\ndoor, and secure it after them for the night. The bald man turning\nround to bow, as he went out, observed that Madame still stood with\nher hand upon the velvet back of the great chair, and that her face\nwas quite regardless of him, though she was looking straight before\nher.\n\nAs the sound of Carker's fastening the door resounded through the\nintermediate rooms, and seemed to come hushed and stilled into that\nlast distant one, the sound of the Cathedral clock striking twelve\nmingled with it, in Edith's ears She heard him pause, as if he heard\nit too and listened; and then came back towards her, laying a long\ntrain of footsteps through the silence, and shutting all the doors\nbehind him as he came along. Her hand, for a moment, left the velvet\nchair to bring a knife within her reach upon the table; then she stood\nas she had stood before.\n\n'How strange to come here by yourself, my love!' he said as he\nentered.\n\n'What?' she returned.\n\nHer tone was so harsh; the quick turn of her head so fierce; her\nattitude so repellent; and her frown so black; that he stood, with the\nlamp in his hand, looking at her, as if she had struck him motionless.\n\n'I say,' he at length repeated, putting down the lamp, and smiling\nhis most courtly smile, 'how strange to come here alone! It was\nunnecessarty caution surely, and might have defeated itself. You were\nto have engaged an attendant at Havre or Rouen, and have had abundance\nof time for the purpose, though you had been the most capricious and\ndifficult (as you are the most beautiful, my love) of women.'\n\nHer eyes gleamed strangely on him, but she stood with her hand\nresting on the chair, and said not a word.\n\n'I have never,' resumed Carker, 'seen you look so handsome, as you\ndo to-night. Even the picture I have carried in my mind during this\ncruel probation, and which I have contemplated night and day, is\nexceeded by the reality.'\n\nNot a word. Not a look Her eyes completely hidden by their drooping\nlashes, but her head held up.\n\n'Hard, unrelenting terms they were!' said Carker, with a smile,\n'but they are all fulfilled and passed, and make the present more\ndelicious and more safe. Sicily shall be the Place of our retreat. In\nthe idlest and easiest part of the world, my soul, we'll both seek\ncompensation for old slavery.'\n\nHe was coming gaily towards her, when, in an instant, she caught\nthe knife up from the table, and started one pace back.\n\n'Stand still!' she said, 'or I shall murder you!'\n\nThe sudden change in her, the towering fury and intense abhorrence\nsparkling in her eyes and lighting up her brow, made him stop as if a\nfire had stopped him.\n\n'Stand still!' she said, 'come no nearer me, upon your life!'\n\nThey both stood looking at each other. Rage and astonishment were\nin his face, but he controlled them, and said lightly,\n\n'Come, come! Tush, we are alone, and out of everybody's sight and\nhearing. Do you think to frighten me with these tricks of virtue?'\n\n'Do you think to frighten me,' she answered fiercely, 'from any\npurpose that I have, and any course I am resolved upon, by reminding\nme of the solitude of this place, and there being no help near? Me,\nwho am here alone, designedly? If I feared you, should I not have\navoided you? If I feared you, should I be here, in the dead of night,\ntelling you to your face what I am going to tell?'\n\n'And what is that,' he said, 'you handsome shrew? Handsomer so,\nthan any other woman in her best humour?'\n\n'I tell you nothing,' she returned, until you go back to that chair\n- except this, once again - Don't come near me! Not a step nearer. I\ntell you, if you do, as Heaven sees us, I shall murder you!'\n\n'Do you mistake me for your husband?' he retorted, with a grin.\n\nDisdaining to reply, she stretched her arm out, pointing to the\nchair. He bit his lip, frowned, laughed, and sat down in it, with a\nbaffled, irresolute, impatient air, he was unable to conceal; and\nbiting his nail nervously, and looking at her sideways, with bitter\ndiscomfiture, even while he feigned to be amused by her caprice.\n\nShe put the knife down upon the table, and touching her bosom wIth\nher hand, said:\n\n'I have something lying here that is no love trinket, and sooner\nthan endure your touch once more, I would use it on you - and you know\nit, while I speak - with less reluctance than I would on any other\ncreeping thing that lives.'\n\nHe affected to laugh jestingly, and entreated her to act her play\nout quickly, for the supper was growing cold. But the secret look with\nwhich he regarded her, was more sullen and lowering, and he struck his\nfoot once upon the floor with a muttered oath.\n\n'How many times,' said Edith, bending her darkest glance upon him'\n'has your bold knavery assailed me with outrage and insult? How many\ntimes in your smooth manner, and mocking words and looks, have I been\ntwitted with my courtship and my marriage? How many times have you\nlaid bare my wound of love for that sweet, injured girl and lacerated\nit? How often have you fanned the fire on which, for two years, I have\nwrithed; and tempted me to take a desperate revenge, when it has most\ntortured me?'\n\n'I have no doubt, Ma'am,' he replied, 'that you have kept a good\naccount, and that it's pretty accurate. Come, Edith. To your husband,\npoor wretch, this was well enough - '\n\n'Why, if,' she said, surveying him with a haughty contempt and\ndisgust, that he shrunk under, let him brave it as he would, 'if all\nmy other reasons for despising him could have been blown away like\nfeathers, his having you for his counsellor and favourite, would have\nalmost been enough to hold their place.'\n\n'Is that a reason why you have run away with me?' he asked her,\ntauntingly.\n\n'Yes, and why we are face to face for the last time. Wretch! We\nmeet tonight, and part tonight. For not one moment after I have ceased\nto speak, will I stay here!'\n\nHe turned upon her with his ugliest look, and gripped the table\nwith his hand; but neither rose, nor otherwise answered or threatened\nher.\n\n'I am a woman,' she said, confronting him steadfastly, 'who from\nher childhood has been shamed and steeled. I have been offered and\nrejected, put up and appraised, until my very soul has sickened. I\nhave not had an accomplishment or grace that might have been a\nresource to me, but it has been paraded and vended to enhance my\nvalue, as if the common crier had called it through the streets. My\npoor, proud friends, have looked on and approved; and every tie\nbetween us has been deadened in my breast. There is not one of them\nfor whom I care, as I could care for a pet dog. I stand alone in the\nworld, remembering well what a hollow world it has been to me, and\nwhat a hollow part of it I have been myself. You know this, and you\nknow that my fame with it is worthless to me.'\n\n'Yes; I imagined that,' he said.\n\n'And calculated on it,' she rejoined, 'and so pursued me. Grown too\nindifferent for any opposition but indifference, to the daily working\nof the hands that had moulded me to this; and knowing that my marriage\nwould at least prevent their hawking of me up and down; I suffered\nmyself to be sold, as infamously as any woman with a halter round her\nneck is sold in any market-place. You know that.'\n\n'Yes,' he said, showing all his teeth 'I know that.'\n\n'And calculated on it,' she rejoined once more, 'and so pursued me.\nFrom my marriage day, I found myself exposed to such new shame - to\nsuch solicitation and pursuit (expressed as clearly as if it had been\nwritten in the coarsest words, and thrust into my hand at every turn)\nfrom one mean villain, that I felt as if I had never known humiliation\ntill that time. This shame my husband fixed upon me; hemmed me round\nwith, himself; steeped me in, with his own hands, and of his own act,\nrepeated hundreds of times. And thus - forced by the two from every\npoint of rest I had - forced by the two to yield up the last retreat\nof love and gentleness within me, or to be a new misfortune on its\ninnocent object - driven from each to each, and beset by one when I\nescaped the other - my anger rose almost to distraction against both I\ndo not know against which it rose higher - the master or the man!'\n\nHe watched her closely, as she stood before him in the very triumph\nof her indignant beauty. She was resolute, he saw; undauntable; with\nno more fear of him than of a worm.\n\n'What should I say of honour or of chastity to you!' she went on.\n'What meaning would it have to you; what meaning would it have from\nme! But if I tell you that the lightest touch of your hand makes my\nblood cold with antipathy; that from the hour when I first saw and\nhated you, to now, when my instinctive repugnance is enhanced by every\nminute's knowledge of you I have since had, you have been a loathsome\ncreature to me which has not its like on earth; how then?'\n\nHe answered with a faint laugh, 'Ay! How then, my queen?'\n\n'On that night, when, emboldened by the scene you had assisted at,\nyou dared come to my room and speak to me,' she said, 'what passed?'\n\nHe shrugged his shoulders, and laughed\n\n'What passed?' she said.\n\n'Your memory is so distinct,' he said, 'that I have no doubt you\ncan recall it.'\n\n'I can,' she said. 'Hear it! Proposing then, this flight - not this\nflight, but the flight you thought it - you told me that in the having\ngiven you that meeting, and leaving you to be discovered there, if you\nso thought fit; and in the having suffered you to be alone with me\nmany times before, - and having made the opportunities, you said, -\nand in the having openly avowed to you that I had no feeling for my\nhusband but aversion, and no care for myself - I was lost; I had given\nyou the power to traduce my name; and I lived, in virtuous reputation,\nat the pleasure of your breath'\n\n'All stratagems in love  - ' he interrupted, smiling. 'The old\nadage - '\n\n'On that night,' said Edith, 'and then, the struggle that I long\nhad had with something that was not respect for my good fame - that\nwas I know not what - perhaps the clinging to that last retreat- was\nended. On that night, and then, I turned from everything but passion\nand resentment. I struck a blow that laid your lofty master in the\ndust, and set you there, before me, looking at me now, and knowing\nwhat I mean.'\n\nHe sprung up from his chair with a great oath. She put her hand\ninto her bosom, and not a finger trembled, not a hair upon her head\nwas stirred. He stood still: she too: the table and chair between\nthem.~\n\n'When I forget that this man put his lips to mine that night, and\nheld me in his arms as he has done again to-night,' said Edith,\npointing at him; 'when I forget the taint of his kiss upon my cheek -\nthe cheek that Florence would have laid her guiltless face against -\nwhen I forget my meeting with her, while that taint was hot upon me,\nand in what a flood the knowledge rushed upon me when I saw her, that\nin releasing her from the persecution I had caused by my love, I\nbrought a shame and degradation on her name through mine, and in all\ntime to come should be the solitary figure representing in her mind\nher first avoidance of a guilty creature - then, Husband, from whom I\nstand divorced henceforth, I will forget these last two years, and\nundo what I have done, and undeceive you!'\n\nHer flashing eyes, uplifted for a moment, lighted again on Carker,\nand she held some letters out in her left hand.\n\n'See these!' she said, contemptuously. 'You have addressed these to\nme in the false name you go by; one here, some elsewhere on my road.\nThe seals are unbroken. Take them back!'\n\nShe crunched them in her hand, and tossed them to his feet. And as\nshe looked upon him now, a smile was on her face.\n\n'We meet and part to-night,' she said. 'You have fallen on Sicilian\ndays and sensual rest, too soon. You might have cajoled, and fawned,\nand played your traitor's part, a little longer, and grown richer. You\npurchase your voluptuous retirement dear!'\n\n'Edith!' he retorted, menacing her with his hand. 'Sit down! Have\ndone with this! What devil possesses you?'\n\n'Their name is Legion,' she replied, uprearing her proud form as if\nshe would have crushed him; 'you and your master have raised them in a\nfruitful house, and they shall tear you both. False to him, false to\nhis innocent child, false every way and everywhere, go forth and boast\nof me, and gnash your teeth, for once, to know that you are lying!'\n\nHe stood before her, muttering and menacing, and scowling round as\nif for something that would help him to conquer her; but with the same\nindomitable spirit she opposed him, without faltering.\n\n'In every vaunt you make,' she said, 'I have my triumph I single\nout in you the meanest man I know, the parasite and tool of the proud\ntyrant, that his wound may go the deeper, and may rankle more. Boast,\nand revenge me on him! You know how you came here to-night; you know\nhow you stand cowering there; you see yourself in colours quite as\ndespicable, if not as odious, as those in which I see you. Boast then,\nand revenge me on yourself.'\n\nThe foam was on his lips; the wet stood on his forehead. If she\nwould have faltered once for only one half-moment, he would have\npinioned her; but she was as firm as rock, and her searching eyes\nnever left him.\n\n'We don't part so,' he said. 'Do you think I am drivelling, to let\nyou go in your mad temper?'\n\n'Do you think,' she answered, 'that I am to be stayed?'\n\n'I'll try, my dear,' he said with a ferocious gesture of his head.\n\n'God's mercy on you, if you try by coming near me!' she replied.\n\n'And what,' he said, 'if there are none of these same boasts and\nvaunts on my part? What if I were to turn too? Come!' and his teeth\nfairly shone again. 'We must make a treaty of this, or I may take some\nunexpected course. Sit down, sit down!'\n\n'Too late!' she cried, with eyes that seemed to sparkle fire. 'I\nhave thrown my fame and good name to the winds! I have resolved to\nbear the shame that will attach to me - resolved to know that it\nattaches falsely - that you know it too - and that he does not, never\ncan, and never shall. I'll die, and make no sign. For this, I am here\nalone with you, at the dead of night. For this, I have met you here,\nin a false name, as your wife. For this, I have been seen here by\nthose men, and left here. Nothing can save you now.\n\nHe would have sold his soul to root her, in her beauty, to the\nfloor, and make her arms drop at her sides, and have her at his mercy.\nBut he could not look at her, and not be afraid of her. He saw a\nstrength within her that was resistless. He saw that she was\ndesperate, and that her unquenchable hatred of him would stop at\nnothing. His eyes followed the hand that was put with such rugged\nuncongenial purpose into her white bosom, and he thought that if it\nstruck at hIm, and failed, it would strike there, just as soon.\n\nHe did not venture, therefore, to advance towards her; but the door\nby which he had entered was behind him, and he stepped back to lock\nit.\n\n'Lastly, take my warning! Look to yourself!' she said, and smiled\nagain. 'You have been betrayed, as all betrayers are. It has been made\nknown that you are in this place, or were to be, or have been. If I\nlive, I saw my husband in a carriage in the street to-night!'\n\n'Strumpet, it's false!' cried Carker.\n\nAt the moment, the bell rang loudly in the hall. He turned white,\nas she held her hand up like an enchantress, at whose invocation the\nsound had come.\n\n'Hark! do you hear it?'\n\nHe set his back against the door; for he saw a change in her, and\nfancied she was coming on to pass him. But, in a moment, she was gone\nthrough the opposite doors communicating with the bed-chamber, and\nthey shut upon her.\n\nOnce turned, once changed in her inflexible unyielding look, he\nfelt that he could cope with her. He thought a sudden terror,\noccasioned by this night-alarm, had subdued her; not the less readily,\nfor her overwrought condition. Throwing open the doors, he followed,\nalmost instantly.\n\nBut the room was dark; and as she made no answer to his call, he\nwas fain to go back for the lamp. He held it up, and looked round,\neverywhere, expecting to see her crouching in some corner; but the\nroom was empty. So, into the drawing-room and dining-room he went, in\nsuccession, with the uncertain steps of a man in a strange place;\nlooking fearfully about, and prying behind screens and couches; but\nshe was not there. No, nor in the hall, which was so bare that he\ncould see that, at a glance.\n\nAll this time, the ringing at the bell was constantly renewed, and\nthose without were beating at the door. He put his lamp down at a\ndistance, and going near it, listened. There were several voices\ntalking together: at least two of them in English; and though the door\nwas thick, and there was great confusion, he knew one of these too\nwell to doubt whose voice it was.\n\nHe took up his lamp again, and came back quickly through all the\nrooms, stopping as he quitted each, and looking round for her, with\nthe light raised above his head. He was standing thus in the\nbed-chamber, when the door, leading to the little passage in the wall,\ncaught his eye. He went to it, and found it fastened on the other\nside; but she had dropped a veil in going through, and shut it in the\ndoor.\n\nAll this time the people on the stairs were ringing at the bell,\nand knocking with their hands and feet.\n\nHe was not a coward: but these sounds; what had gone before; the\nstrangeness of the place, which had confused him, even in his return\nfrom the hall; the frustration of his schemes (for, strange to say, he\nwould have been much bolder, if they had succeeded); the unseasonable\ntime; the recollection of having no one near to whom he could appeal\nfor any friendly office; above all, the sudden sense, which made even\nhis heart beat like lead, that the man whose confidence he had\noutraged, and whom he had so treacherously deceived, was there to\nrecognise and challenge him with his mask plucked off his face; struck\na panic through him. He tried the door in which the veil was shut, but\ncouldn't force it. He opened one of the windows, and looked down\nthrough the lattice of the blind, into the court-yard; but it was a\nhigh leap, and the stones were pitiless.\n\nThe ringing and knocking still continuing - his panic too - he went\nback to the door in the bed-chamber, and with some new efforts, each\nmore stubborn than the last, wrenched it open. Seeing the little\nstaircase not far off, and feeling the night-air coming up, he stole\nback for his hat and coat, made the door as secure after hIm as he\ncould, crept down lamp in hand, extinguished it on seeing the street,\nand having put it in a corner, went out where the stars were shining.\n\n\nCHAPTER 55.\n\nRob the Grinder loses his Place\n\n\n\nThe Porter at the iron gate which shut the court-yard from the\nstreet, had left the little wicket of his house open, and was gone\naway; no doubt to mingle in the distant noise at the door of the great\nstaircase. Lifting the latch softly, Carker crept out, and shutting\nthe jangling gate after him with as little noise as possible, hurried\noff.\n\nIn the fever of his mortification and unavailing rage, the panic\nthat had seized upon him mastered him completely. It rose to such a\nheight that he would have blindly encountered almost any risk, rather\nthan meet the man of whom, two hours ago, he had been utterly\nregardless. His fierce arrival, which he had never expected; the sound\nof his voice; their having been so near a meeting, face to face; he\nwould have braved out this, after the first momentary shock of alarm,\nand would have put as bold a front upon his guilt as any villain. But\nthe springing of his mine upon himself, seemed to have rent and\nshivered all his hardihood and self-reliance. Spurned like any\nreptile; entrapped and mocked; turned upon, and trodden down by the\nproud woman whose mind he had slowly poisoned, as he thought, until\nshe had sunk into the mere creature of his pleasure; undeceived in his\ndeceit, and with his fox's hide stripped off, he sneaked away,\nabashed, degraded, and afraid.\n\nSome other terror came upon hIm quite removed from this of being\npursued, suddenly, like an electric shock, as he was creeping through\nthe streets Some visionary terror, unintelligible and inexplicable,\nasssociated with a trembling of the ground, - a rush and sweep of\nsomething through the air, like Death upon the wing. He shrunk, as if\nto let the thing go by. It was not gone, it never had been there, yet\nwhat a startling horror it had left behind.\n\nHe raised his wicked face so full of trouble, to the night sky,\nwhere the stars, so full of peace, were shining on him as they had\nbeen when he first stole out into the air; and stopped to think what\nhe should do. The dread of being hunted in a strange remote place,\nwhere the laws might not protect him - the novelty of the feeling that\nit was strange and remote, originating in his being left alone so\nsuddenly amid the ruins of his plans - his greater dread of seeking\nrefuge now, in Italy or in Sicily, where men might be hired to\nassissinate him, he thought, at any dark street corner-the waywardness\nof guilt and fear - perhaps some sympathy of action with the turning\nback of all his schemes - impelled him to turn back too, and go to\nEngland.\n\n'I am safer there, in any case. If I should not decide,' he\nthought, 'to give this fool a meeting, I am less likely to be traced\nthere, than abroad here, now. And if I should (this cursed fit being\nover), at least I shall not be alone, with out a soul to speak to, or\nadvise with, or stand by me. I shall not be run in upon and worried\nlike a rat.'\n\nHe muttered Edith's name, and clenched his hand. As he crept along,\nin the shadow of the massive buildings, he set his teeth, and muttered\ndreadful imprecations on her head, and looked from side to side, as if\nin search of her. Thus, he stole on to the gate of an inn-yard. The\npeople were a-bed; but his ringing at the bell soon produced a man\nwith a lantern, in company with whom he was presently in a dim\ncoach-house, bargaining for the hire of an old phaeton, to Paris.\n\nThe bargain was a short one; and the horses were soon sent for.\nLeaving word that the carriage was to follow him when they came, he\nstole away again, beyond the town, past the old ramparts, out on the\nopen road, which seemed to glide away along the dark plain, like a\nstream.\n\nWhither did it flow? What was the end of it? As he paused, with\nsome such suggestion within him, looking over the gloomy flat where\nthe slender trees marked out the way, again that flight of Death came\nrushing up, again went on, impetuous and resistless, again was nothing\nbut a horror in his mind, dark as the scene and undefined as its\nremotest verge.\n\nThere was no wind; there was no passing shadow on the deep shade of\nthe night; there was no noise. The city lay behind hIm, lighted here\nand there, and starry worlds were hidden by the masonry of spire and\nroof that hardly made out any shapes against the sky. Dark and lonely\ndistance lay around him everywhere, and the clocks were faintly\nstriking two.\n\nHe went forward for what appeared a long time, and a long way;\noften stopping to listen. At last the ringing of horses' bells greeted\nhis anxious ears. Now softer, and now louder, now inaudible, now\nringing very slowly over bad ground, now brisk and merry, it came on;\nuntil with a loud shouting and lashing, a shadowy postillion muffled\nto the eyes, checked his four struggling horses at his side.\n\n'Who goes there! Monsieur?'\n\n'Yes.'\n\n'Monsieur has walked a long way in the dark midnight.'\n\n'No matter. Everyone to his task. Were there any other horses\nordered at the Post-house?'\n\n'A thousand devils! - and pardons! other horses? at this hour? No.'\n\n'Listen, my friend. I am much hurried. Let us see how fast we can\ntravel! The faster, the more money there will be to drink. Off we go\nthen! Quick!'\n\n'Halloa! whoop! Halloa! Hi!' Away, at a gallop, over the black\nlandscape, scattering the dust and dirt like spray!\n\nThe clatter and commotion echoed to the hurry and discordance of\nthe fugitive's ideas. Nothing clear without, and nothing clear within.\nObjects flitting past, merging into one another, dimly descried,\nconfusedly lost sight of, gone! Beyond the changing scraps of fence\nand cottage immediately upon the road, a lowering waste. Beyond the\nshifting images that rose up in his mind and vanished as they showed\nthemselves, a black expanse of dread and rage and baffled villainy.\nOccasionally, a sigh of mountain air came from the distant Jura,\nfading along the plain. Sometimes that rush which was so furious and\nhorrible, again came sweeping through his fancy, passed away, and left\na chill upon his blood.\n\nThe lamps, gleaming on the medley of horses' heads, jumbled with\nthe shadowy driver, and the fluttering of his cloak, made a thousand\nindistinct shapes, answering to his thoughts. Shadows of familiar\npeople, stooping at their desks and books, in their remembered\nattitudes; strange apparitions of the man whom he was flying from, or\nof Edith; repetitions in the ringing bells and rolling wheels, of\nwords that had been spoken; confusions of time and place, making last\nnight a month ago, a month ago last night - home now distant beyond\nhope, now instantly accessible; commotion, discord, hurry, darkness,\nand confusion in his mind, and all around him. - Hallo! Hi! away at a\ngallop over the black landscape; dust and dirt flying like spray, the\nsmoking horses snorting and plunging as if each of them were ridden by\na demon, away in a frantic triumph on the dark road - whither?\n\nAgain the nameless shock comes speeding up, and as it passes, the\nbells ring in his ears 'whither?' The wheels roar in his ears\n'whither?' All the noise and rattle shapes itself into that cry. The\nlights and shadows dance upon the horses' heads like imps. No stopping\nnow: no slackening! On, on Away with him upon the dark road wildly!\n\nHe could not think to any purpose. He could not separate one\nsubject of reflection from another, sufficiently to dwell upon it, by\nitself, for a minute at a time. The crash of his project for the\ngaining of a voluptuous compensation for past restraint; the overthrow\nof his treachery to one who had been true and generous to him, but\nwhose least proud word and look he had treasured up, at interest, for\nyears - for false and subtle men will always secretly despise and\ndislike the object upon which they fawn and always resent the payment\nand receipt of homage that they know to be worthless; these were the\nthemes uppermost in his mind. A lurking rage against the woman who had\nso entrapped him and avenged herself was always there; crude and\nmisshapen schemes of retaliation upon her, floated in his brain; but\nnothing was distinct. A hurry and contradiction pervaded all his\nthoughts. Even while he was so busy with this fevered, ineffectual\nthinking, his one constant idea was, that he would postpone reflection\nuntil some indefinite time.\n\nThen, the old days before the second marriage rose up in his\nremembrance. He thought how jealous he had been of the boy, how\njealous he had been of the girl, how artfully he had kept intruders at\na distance, and drawn a circle round his dupe that none but himself\nshould cross; and then he thought, had he done all this to be flying\nnow, like a scared thief, from only the poor dupe?\n\nHe could have laid hands upon himself for his cowardice, but it was\nthe very shadow of his defeat, and could not be separated from it. To\nhave his confidence in his own knavery so shattered at a blow - to be\nwithin his own knowledge such a miserable tool - was like being\nparalysed. With an impotent ferocity he raged at Edith, and hated Mr\nDombey and hated himself, but still he fled, and could do nothing\nelse.\n\nAgain and again he listened for the sound of wheels behind. Again\nand again his fancy heard it, coming on louder and louder. At last he\nwas so persuaded of this, that he cried out, 'Stop' preferring even\nthe loss of ground to such uncertainty.\n\nThe word soon brought carriage, horses, driver, all in a heap\ntogether, across the road.\n\n'The devil!' cried the driver, looking over his shoulder, 'what's\nthe matter?'\n\n'Hark! What's that?'\n\n'What?'\n\n'That noise?'\n\n'Ah Heaven, be quiet, cursed brigand!' to a horse who shook his\nbells 'What noise?'\n\n'Behind. Is it not another carriage at a gallop? There! what's\nthat?' Miscreant with a Pig's head, stand still!' to another horse,\nwho bit another, who frightened the other two, who plunged and backed.\n'There is nothing coming.'\n\n'Nothing.'\n\n'No, nothing but the day yonder.'\n\n'You are right, I think. I hear nothing now, indeed. Go on!'\n\nThe entangled equipage, half hidden in the reeking cloud from the\nhorses, goes on slowly at first, for the driver, checked unnecessarily\nin his progress, sulkily takes out a pocket-knife, and puts a new lash\nto his whip. Then 'Hallo, whoop! Hallo, hi!' Away once more, savagely.\n\nAnd now the stars faded, and the day glimmered, and standing in the\ncarriage, looking back, he could discern the track by which he had\ncome, and see that there was no traveller within view, on all the\nheavy expanse. And soon it was broad day, and the sun began to shine\non cornfields and vineyards; and solitary labourers, risen from little\ntemporary huts by heaps of stones upon the road, were, here and there,\nat work repairing the highway, or eating bread. By and by, there were\npeasants going to their daily labour, or to market, or lounging at the\ndoors of poor cottages, gazing idly at him as he passed. And then\nthere was a postyard, ankle-deep in mud, with steaming dunghills and\nvast outhouses half ruined; and looking on this dainty prospect, an\nimmense, old, shadeless, glaring, stone chateau, with half its windows\nblinded, and green damp crawling lazily over it, from the balustraded\nterrace to the taper tips of the extinguishers upon the turrets.\n\nGathered up moodily in a corner of the carriage, and only intent on\ngoing fast - except when he stood up, for a mile together, and looked\nback; which he would do whenever there was a piece of open country -\nhe went on, still postponing thought indefinitely, and still always\ntormented with thinking to no purpose.\n\nShame, disappointment, and discomfiture gnawed at his heart; a\nconstant apprehension of being overtaken, or met - for he was\ngroundlessly afraid even of travellers, who came towards him by the\nway he was going - oppressed him heavily. The same intolerable awe and\ndread that had come upon him in the night, returned unweakened in the\nday. The monotonous ringing of the bells and tramping of the horses;\nthe monotony of his anxiety, and useless rage; the monotonous wheel of\nfear, regret, and passion, he kept turning round and round; made the\njourney like a vision, in which nothing was quite real but his own\ntorment.\n\nIt was a vision of long roads, that stretched away to an horizon,\nalways receding and never gained; of ill-paved towns, up hill and\ndown, where faces came to dark doors and ill-glazed windows, and where\nrows of mudbespattered cows and oxen were tied up for sale in the long\nnarrow streets, butting and lowing, and receiving blows on their blunt\nheads from bludgeons that might have beaten them in; of bridges,\ncrosses, churches, postyards, new horses being put in against their\nwills, and the horses of the last stage reeking, panting, and laying\ntheir drooping heads together dolefully at stable doors; of little\ncemeteries with black crosses settled sideways in the graves, and\nwithered wreaths upon them dropping away; again of long, long roads,\ndragging themselves out, up hill and down, to the treacherous horizon.\n\nOf morning, noon, and sunset; night, and the rising of an early\nmoon. Of long roads temporarily left behind, and a rough pavement\nreached; of battering and clattering over it, and looking up, among\nhouse-roofs, at a great church-tower; of getting out and eating\nhastily, and drinking draughts of wine that had no cheering influence;\nof coming forth afoot, among a host of beggars - blind men with\nquivering eyelids, led by old women holding candles to their faces;\nidiot girls; the lame, the epileptic, and the palsied - of passing\nthrough the clamour, and looking from his seat at the upturned\ncountenances and outstretched hands, with a hurried dread of\nrecognising some pursuer pressing forward - of galloping away again,\nupon the long, long road, gathered up, dull and stunned, in his\ncorner, or rising to see where the moon shone faintly on a patch of\nthe same endless road miles away, or looking back to see who followed.\n\nOf never sleeping, but sometimes dozing with unclosed eyes, and\nspringing up with a start, and a reply aloud to an imaginary voice. Of\ncursing himself for being there, for having fled, for having let her\ngo, for not having confronted and defied him. Of having a deadly\nquarrel with the whole world, but chiefly with himself. Of blighting\neverything with his black mood as he was carried on and away.\n\nIt was a fevered vision of things past and present all confounded\ntogether; of his life and journey blended into one. Of being madly\nhurried somewhere, whither he must go. Of old scenes starting up among\nthe novelties through which he travelled. Of musing and brooding over\nwhat was past and distant, and seeming to take no notice of the actual\nobjects he encountered, but with a wearisome exhausting consciousness\nof being bewildered by them, and having their images all crowded in\nhis hot brain after they were gone.\n\nA vision of change upon change, and still the same monotony of\nbells and wheels, and horses' feet, and no rest. Of town and country,\npostyards, horses, drivers, hill and valley, light and darkness, road\nand pavement, height and hollow, wet weather and dry, and still the\nsame monotony of bells and wheels, and horses' feet, and no rest. A\nvision of tending on at last, towards the distant capital, by busier\nroads, and sweeping round, by old cathedrals, and dashing through\nsmall towns and villages, less thinly scattered on the road than\nformerly, and sitting shrouded in his corner, with his cloak up to his\nface, as people passing by looked at him.\n\nOf rolling on and on, always postponing thought, and always racked\nwith thinking; of being unable to reckon up the hours he had been upon\nthe road, or to comprehend the points of time and place in his\njourney. Of being parched and giddy, and half mad. Of pressing on, in\nspite of all, as if he could not stop, and coming into Paris, where\nthe turbid river held its swift course undisturbed, between two\nbrawling streams of life and motion.\n\nA troubled vision, then, of bridges, quays, interminable streets;\nof wine-shops, water-carriers, great crowds of people, soldiers,\ncoaches, military drums, arcades. Of the monotony of bells and wheels\nand horses' feet being at length lost in the universal din and uproar.\nOf the gradual subsidence of that noise as he passed out in another\ncarriage by a different barrier from that by which he had entered. Of\nthe restoration, as he travelled on towards the seacoast, of the\nmonotony of bells and wheels, and horses' feet, and no rest.\n\nOf sunset once again, and nightfall. Of long roads again, and dead\nof night, and feeble lights in windows by the roadside; and still the\nold monotony of bells and wheels, and horses' feet, and no rest. Of\ndawn, and daybreak, and the rising of the sun. Of tolling slowly up a\nhill, and feeling on its top the fresh sea-breeze; and seeing the\nmorning light upon the edges of the distant waves. Of coming down into\na harbour when the tide was at its full, and seeing fishing-boats\nfloat on, and glad women and children waiting for them. Of nets and\nseamen's clothes spread out to dry upon the shore; of busy saIlors,\nand their voices high among ships' masts and rigging; of the buoyancy\nand brightness of the water, and the universal sparkling.\n\nOf receding from the coast, and looking back upon it from the deck\nwhen it was a haze upon the water, with here and there a little\nopening of bright land where the Sun struck. Of the swell, and flash,\nand murmur of the calm sea. Of another grey line on the ocean, on the\nvessel's track, fast growing clearer and higher. Of cliffs and\nbuildings, and a windmill, and a church, becoming more and more\nvisible upon it. Of steaming on at last into smooth water, and mooring\nto a pier whence groups of people looked down, greeting friends on\nboard. Of disembarking, passing among them quickly, shunning every\none; and of being at last again in England.\n\nHe had thought, in his dream, of going down into a remote\ncountry-place he knew, and lying quiet there, while he secretly\ninformed himself of what transpired, and determined how to act, Still\nin the same stunned condition, he remembered a certain station on the\nrailway, where he would have to branch off to his place of\ndestination, and where there was a quiet Inn. Here, he indistinctly\nresolved to tarry and rest.\n\nWith this purpose he slunk into a railway carriage as quickly as he\ncould, and lying there wrapped in his cloak as if he were asleep, was\nsoon borne far away from the sea, and deep into the inland green.\nArrived at his destination he looked out, and surveyed it carefully.\nHe was not mistaken in his impression of the place. It was a retired\nspot, on the borders of a little wood. Only one house, newly-built or\naltered for the purpose, stood there, surrounded by its neat garden;\nthe small town that was nearest, was some miles away. Here he alighted\nthen; and going straight into the tavern, unobserved by anyone,\nsecured two rooms upstairs communicating with each other, and\nsufficiently retired.\n\nHis object was to rest, and recover the command of himself, and the\nbalance of his mind. Imbecile discomfiture and rage - so that, as he\nwalked about his room, he ground his teeth - had complete possession\nof him. His thoughts, not to be stopped or directed, still wandered\nwhere they would, and dragged him after them. He was stupefied, and he\nwas wearied to death.\n\nBut, as if there were a curse upon him that he should never rest\nagain, his drowsy senses would not lose their consciousness. He had no\nmore influence with them, in this regard, than if they had been\nanother man's. It was not that they forced him to take note of present\nsounds and objects, but that they would not be diverted from the whole\nhurried vision of his journey. It was constantly before him all at\nonce. She stood there, with her dark disdainful eyes again upon him;\nand he was riding on nevertheless, through town and country, light and\ndarkness, wet weather and dry, over road and pavement, hill and\nvalley, height and hollow, jaded and scared by the monotony of bells\nand wheels, and horses' feet, and no rest.\n\n'What day is this?' he asked of the waiter, who was making\npreparations for his dinner.\n\n'Day, Sir?'\n\n'Is it Wednesday?'\n\n'Wednesday, Sir? No, Sir. Thursday, Sir.'\n\n'I forgot. How goes the time? My watch is unwound.'\n\n'Wants a few minutes of five o'clock, Sir. Been travelling a long\ntime, Sir, perhaps?'\n\n'Yes'\n\n'By rail, Sir?'\n\n'Yes'\n\n'Very confusing, Sir. Not much in the habit of travelling by rail\nmyself, Sir, but gentlemen frequently say so.'\n\n'Do many gentlemen come here?\n\n'Pretty well, Sir, in general. Nobody here at present. Rather slack\njust now, Sir. Everything is slack, Sir.'\n\nHe made no answer; but had risen into a sitting posture on the sofa\nwhere he had been lying, and leaned forward with an arm on each knee,\nstaring at the ground. He could not master his own attention for a\nminute together. It rushed away where it would, but it never, for an\ninstant, lost itself in sleep.\n\nHe drank a quantity of wine after dinner, in vain. No such\nartificial means would bring sleep to his eyes. His thoughts, more\nincoherent, dragged him more unmercifully after them - as if a wretch,\ncondemned to such expiation, were drawn at the heels of wild horses.\nNo oblivion, and no rest.\n\nHow long he sat, drinking and brooding, and being dragged in\nimagination hither and thither, no one could have told less correctly\nthan he. But he knew that he had been sitting a long time by\ncandle-light, when he started up and listened, in a sudden terror.\n\nFor now, indeed, it was no fancy. The ground shook, the house\nrattled, the fierce impetuous rush was in the air! He felt it come up,\nand go darting by; and even when he had hurried to the window, and saw\nwhat it was, he stood, shrinking from it, as if it were not safe to\nlook.\n\nA curse upon the fiery devil, thundering along so smoothly, tracked\nthrough the distant valley by a glare of light and lurid smoke, and\ngone! He felt as if he had been plucked out of its path, and saved\nfrom being torn asunder. It made him shrink and shudder even now, when\nits faintest hum was hushed, and when the lines of iron road he could\ntrace in the moonlight, running to a point, were as empty and as\nsilent as a desert.\n\nUnable to rest, and irresistibly attracted - or he thought so - to\nthis road, he went out, and lounged on the brink of it, marking the\nway the train had gone, by the yet smoking cinders that were lying in\nits track. After a lounge of some half hour in the direction by which\nit had disappeared, he turned and walked the other way - still keeping\nto the brink of the road - past the inn garden, and a long way down;\nlooking curiously at the bridges, signals, lamps, and wondering when\nanother Devil would come by.\n\nA trembling of the ground, and quick vibration in his ears; a\ndistant shriek; a dull light advancing, quickly changed to two red\neyes, and a fierce fire, dropping glowing coals; an irresistible\nbearing on of a great roaring and dilating mass; a high wind, and a\nrattle - another come and gone, and he holding to a gate, as if to\nsave himself!\n\nHe waited for another, and for another. He walked back to his\nformer point, and back again to that, and still, through the wearisome\nvision of his journey, looked for these approaching monsters. He\nloitered about the station, waiting until one should stay to call\nthere; and when one did, and was detached for water, he stood parallel\nwith it, watching its heavy wheels and brazen front, and thinking what\na cruel power and might it had. Ugh! To see the great wheels slowly\nturning, and to think of being run down and crushed!\n\nDisordered with wine and want of rest - that want which nothing,\nalthough he was so weary, would appease - these ideas and objects\nassumed a diseased importance in his thoughts. When he went back to\nhis room, which was not until near midnight, they still haunted him,\nand he sat listening for the coming of another.\n\nSo in his bed, whither he repaired with no hope of sleep. He still\nlay listening; and when he felt the trembling and vibration, got up\nand went to the window, to watch (as he could from its position) the\ndull light changing to the two red eyes, and the fierce fire dropping\nglowing coals, and the rush of the giant as it fled past, and the\ntrack of glare and smoke along the valley. Then he would glance in the\ndirection by which he intended to depart at sunrise, as there was no\nrest for him there; and would lie down again, to be troubled by the\nvision of his journey, and the old monotony of bells and wheels and\nhorses' feet, until another came. This lasted all night. So far from\nresuming the mastery of himself, he seemed, if possible, to lose it\nmore and more, as the night crept on. When the dawn appeared, he was\nstill tormented with thinking, still postponing thought until he\nshould be in a better state; the past, present, and future all floated\nconfusedly before him, and he had lost all power of looking steadily\nat any one of them.\n\n'At what time,' he asked the man who had waited on hIm over-night,\nnow entering with a candle, 'do I leave here, did you say?'\n\n'About a quarter after four, Sir. Express comes through at four,\nSir. - It don't stop.\n\nHe passed his hand across his throbbing head, and looked at his\nwatch. Nearly half-past three.\n\n'Nobody going with you, Sir, probably,' observed the man. 'Two\ngentlemen here, Sir, but they're waiting for the train to London.'\n\n'I thought you said there was nobody here,' said Carker, turning\nupon him with the ghost of his old smile, when he was angry or\nsuspicious.\n\n'Not then, sir. Two gentlemen came in the night by the short train\nthat stops here, Sir. Warm water, Sir?'\n\n'No; and take away the candle. There's day enough for me.'\n\nHaving thrown himself upon the bed, half-dressed he was at the\nwindow as the man left the room. The cold light of morning had\nsucceeded to night and there was already, in the sky, the red\nsuffusion of the coming sun. He bathed his head and face with water -\nthere was no cooling influence in it for him - hurriedly put on his\nclothes, paid what he owed, and went out.\n\nThe air struck chill and comfortless as it breathed upon him. There\nwas a heavy dew; and, hot as he was, it made him shiver. After a\nglance at the place where he had walked last night, and at the\nsignal-lights burning in the morning, and bereft of their\nsignificance, he turned to where the sun was rising, and beheld it, in\nits glory, as it broke upon the scene.\n\nSo awful, so transcendent in its beauty, so divinely solemn. As he\ncast his faded eyes upon it, where it rose, tranquil and serene,\nunmoved by all the wrong and wickedness on which its beams had shone\nsince the beginning of the world, who shall say that some weak sense\nof virtue upon Earth, and its in Heaven, did not manifest itself, even\nto him? If ever he remembered sister or brother with a touch of\ntenderness and remorse, who shall say it was not then?\n\nHe needed some such touch then. Death was on him. He was marked off\n- the living world, and going down into his grave.\n\nHe paid the money for his journey to the country-place he had\nthought of; and was walking to and fro, alone, looking along the lines\nof iron, across the valley in one direction, and towards a dark bridge\nnear at hand in the other; when, turning in his walk, where it was\nbounded by one end of the wooden stage on which he paced up and down,\nhe saw the man from whom he had fled, emerging from the door by which\nhe himself had entered\n\nAnd their eyes met.\n\nIn the quick unsteadiness of the surprise, he staggered, and\nslipped on to the road below him. But recovering his feet immediately,\nhe stepped back a pace or two upon that road, to interpose some wider\nspace between them, and looked at his pursuer, breathing short and\nquick.\n\nHe heard a shout - another - saw the face change from its\nvindictive passion to a faint sickness and terror - felt the earth\ntremble - knew in a moment that the rush was come - uttered a shriek -\nlooked round - saw the red eyes, bleared and dim, in the daylight,\nclose upon him - was beaten down, caught up, and whirled away upon a\njagged mill, that spun him round and round, and struck him limb from\nlimb, and licked his stream of life up with its fiery heat, and cast\nhis mutilated fragments in the air.\n\nWhen the traveller, who had been recognised, recovered from a\nswoon, he saw them bringing from a distance something covered, that\nlay heavy and still, upon a board, between four men, and saw that\nothers drove some dogs away that sniffed upon the road, and soaked his\nblood up, with a train of ashes.\n\n\nCHAPTER 56.\n\nSeveral People delighted, and the Game Chicken disgusted\n\n\n\nThe Midshipman was all alive. Mr Toots and Susan had arrived at\nlast. Susan had run upstairs like a young woman bereft of her senses,\nand Mr Toots and the Chicken had gone into the Parlour.\n\n'Oh my own pretty darling sweet Miss Floy!' cried the Nipper,\nrunning into Florence's room, 'to think that it should come to this\nand I should find you here my own dear dove with nobody to wait upon\nyou and no home to call your own but never never will I go away again\nMiss Floy for though I may not gather moss I'm not a rolling stone nor\nis my heart a stone or else it wouldn't bust as it is busting now oh\ndear oh dear!'\n\nPouring out these words, without the faintest indication of a stop,\nof any sort, Miss Nipper, on her knees beside her mistress, hugged her\nclose.\n\n'Oh love!' cried Susan, 'I know all that's past I know it all my\ntender pet and I'm a choking give me air!'\n\n'Susan, dear good Susan!' said Florence. 'Oh bless her! I that was\nher little maid when she was a little child! and is she really, really\ntruly going to be married?'exclaimed Susan, in a burst of pain and\npleasure, pride and grief, and Heaven knows how many other conflicting\nfeelings.\n\n'Who told you so?' said Florence.\n\n'Oh gracious me! that innocentest creetur Toots,' returned Susan\nhysterically. 'I knew he must be right my dear, because he took on so.\nHe's the devotedest and innocentest infant! And is my darling,'\npursued Susan, with another close embrace and burst of tears, 'really\nreally going to be married!'\n\nThe mixture of compassion, pleasure, tenderness, protection, and\nregret with which the Nipper constantly recurred to this subject, and\nat every such once, raised her head to look in the young face and kiss\nit, and then laid her head again upon her mistress's shoulder,\ncaressing her and sobbing, was as womanly and good a thing, in its\nway, as ever was seen in the world.\n\n'There, there!' said the soothing voice of Florence presently. 'Now\nyou're quite yourself, dear Susan!'\n\nMiss Nipper, sitting down upon the floor, at her mistress's feet,\nlaughing and sobbing, holding her pocket-handkerchief to her eyes with\none hand, and patting Diogenes with the other as he licked her face,\nconfessed to being more composed, and laughed and cried a little more\nin proof of it.\n\n'I-I-I never did see such a creetur as that Toots,' said Susan, 'in\nall my born days never!'\n\n'So kind,' suggested Florence.\n\n'And so comic!' Susan sobbed. 'The way he's been going on inside\nwith me with that disrespectable Chicken on the box!'\n\n'About what, Susan?' inquired Florence, timidly.\n\n'Oh about Lieutenant Walters, and Captain Gills, and you my dear\nMiss Floy, and the silent tomb,' said Susan.\n\n'The silent tomb!' repeated Florence.\n\n'He says,' here Susan burst into a violent hysterical laugh, 'that\nhe'll go down into it now immediately and quite comfortable, but bless\nyour heart my dear Miss Floy he won't, he's a great deal too happy in\nseeing other people happy for that, he may not be a Solomon,' pursued\nthe Nipper, with her usual volubility, 'nor do I say he is but this I\ndo say a less selfish human creature human nature never knew!' Miss\nNipper being still hysterical, laughed immoderately after making this\nenergetic declaration, and then informed Florence that he was waiting\nbelow to see her; which would be a rich repayment for the trouble he\nhad had in his late expedition.\n\nFlorence entreated Susan to beg of Mr Toots as a favour that she\nmight have the pleasure of thanking him for his kindness; and Susan,\nin a few moments, produced that young gentleman, still very much\ndishevelled in appearance, and stammering exceedingly.\n\n'Miss Dombey,' said Mr Toots. 'To be again permitted to - to - gaze\n- at least, not to gaze, but - I don't exactly know what I was going\nto say, but it's of no consequence.\n\n'I have to thank you so often,' returned Florence, giving him both\nher hands, with all her innocent gratitude beaming in her face, 'that\nI have no words left, and don't know how to do it.'\n\n'Miss Dombey,' said Mr Toots, in an awful voice, 'if it was\npossible that you could, consistently with your angelic nature, Curse\nme, you would - if I may be allowed to say so - floor me infinitely\nless, than by these undeserved expressions of kindness Their effect\nupon me - is - but,' said Mr Toots, abruptly, 'this is a digression,\nand of no consequence at all.'\n\nAs there seemed to be no means of replying to this, but by thanking\nhim again, Florence thanked him again.\n\n'I could wish,' said Mr Toots, 'to take this opportunity, Miss\nDombey, if I might, of entering into a word of explanation. I should\nhave had the pleasure of - of returning with Susan at an earlier\nperiod; but, in the first place, we didn't know the name of the\nrelation to whose house she had gone, and, in the second, as she had\nleft that relation's and gone to another at a distance, I think that\nscarcely anything short of the sagacity of the Chicken, would have\nfound her out in the time.'\n\nFlorence was sure of it.\n\n'This, however,' said Mr Toots, 'is not the point. The company of\nSusan has been, I assure you, Miss Dombey, a consolation and\nsatisfaction to me, in my state of mind, more easily conceived than\ndescribed. The journey has been its own reward. That, however, still,\nis not the point. Miss Dombey, I have before observed that I know I am\nnot what is considered a quick person. I am perfectly aware of that. I\ndon't think anybody could be better acquainted with his own - if it\nwas not too strong an expression, I should say with the thickness of\nhis own head - than myself. But, Miss Dombey, I do, notwithstanding,\nperceive the state of - of things - with Lieutenant Walters. Whatever\nagony that state of things may have caused me (which is of no\nconsequence at all), I am bound to say, that Lieutenant Walters is a\nperson who appears to be worthy of the blessing that has fallen on his\n- on his brow. May he wear it long, and appreciate it, as a very\ndifferent, and very unworthy individual, that it is of no consequence\nto name, would have done! That, however, still, is not the point. Miss\nDombey, Captain Gills is a friend of mine; and during the interval\nthat is now elapsing, I believe it would afford Captain Gills pleasure\nto see me occasionally coming backwards and forwards here. It would\nafford me pleasure so to come. But I cannot forget that I once\ncommitted myself, fatally, at the corner of the Square at Brighton;\nand if my presence will be, in the least degree, unpleasant to you, I\nonly ask you to name it to me now, and assure you that I shall\nperfectly understand you. I shall not consider it at all unkind, and\nshall only be too delighted and happy to be honoured with your\nconfidence.'\n\n'Mr Toots,' returned Florence, 'if you, who are so old and true a\nfriend of mine, were to stay away from this house now, you would make\nme very unhappy. It can never, never, give me any feeling but pleasure\nto see you.\n\n'Miss Dombey,' said Mr Toots, taking out his pocket-handkerchief,\n'if I shed a tear, it is a tear of joy. It is of no consequence, and I\nam very much obliged to you. I may be allowed to remark, after what\nyou have so kindly said, that it is not my intention to neglect my\nperson any longer.'\n\nFlorence received this intimation with the prettiest expression of\nperplexity possible.\n\n'I mean,' said Mr Toots, 'that I shall consider it my duty as a\nfellow-creature generally, until I am claimed by the silent tomb, to\nmake the best of myself, and to - to have my boots as brightly\npolished, as - as -circumstances will admit of. This is the last time,\nMiss Dombey, of my intruding any observation of a private and personal\nnature. I thank you very much indeed. if I am not, in a general way,\nas sensible as my friends could wish me to be, or as I could wish\nmyself, I really am, upon my word and honour, particularly sensible of\nwhat is considerate and kind. I feel,' said Mr Toots, in an\nimpassioned tone, 'as if I could express my feelings, at the present\nmoment, in a most remarkable manner, if - if - I could only get a\nstart.'\n\nAppearing not to get it, after waiting a minute or two to see if it\nwould come, Mr Toots took a hasty leave, and went below to seek the\nCaptain, whom he found in the shop.\n\n'Captain Gills,' said Mr Toots, 'what is now to take place between\nus, takes place under the sacred seal of confidence. It is the sequel,\nCaptain Gills, of what has taken place between myself and Miss Dombey,\nupstairs.'\n\n'Alow and aloft, eh, my lad?' murmured the Captain.\n\n'Exactly so, Captain Gills,' said Mr Toots, whose fervour of\nacquiescence was greatly heightened by his entire ignorance of the\nCaptain's meaning. 'Miss Dombey, I believe, Captain Gills, is to be\nshortly united to Lieutenant Walters?'\n\n'Why, ay, my lad. We're all shipmets here, - Wal'r and sweet- heart\nwill be jined together in the house of bondage, as soon as the askings\nis over,' whispered Captain Cuttle, in his ear.\n\n'The askings, Captain Gills!' repeated Mr Toots.\n\n'In the church, down yonder,' said the Captain, pointing his thumb\nover his shoulder.\n\n'Oh! Yes!' returned Mr Toots.\n\n'And then,' said the Captain, in his hoarse whisper, and tapping Mr\nToots on the chest with the back of his hand, and falling from him\nwith a look of infinite admiration, 'what follers? That there pretty\ncreetur, as delicately brought up as a foreign bird, goes away upon\nthe roaring main with Wal'r on a woyage to China!'\n\n'Lord, Captain Gills!' said Mr Toots.\n\n'Ay!' nodded the Captain. 'The ship as took him up, when he was\nwrecked in the hurricane that had drove her clean out of her course,\nwas a China trader, and Wal'r made the woyage, and got into favour,\naboard and ashore - being as smart and good a lad as ever stepped -\nand so, the supercargo dying at Canton, he got made (having acted as\nclerk afore), and now he's supercargo aboard another ship, same\nowners. And so, you see,' repeated the Captain, thoughtfully, 'the\npretty creetur goes away upon the roaring main with Wal'r, on a woyage\nto China.'\n\nMr Toots and Captain Cuttle heaved a sigh in concert. 'What then?'\nsaid the Captain. 'She loves him true. He loves her true. Them as\nshould have loved and tended of her, treated of her like the beasts as\nperish. When she, cast out of home, come here to me, and dropped upon\nthem planks, her wownded heart was broke. I know it. I, Ed'ard Cuttle,\nsee it. There's nowt but true, kind, steady love, as can ever piece it\nup again. If so be I didn't know that, and didn't know as Wal'r was\nher true love, brother, and she his, I'd have these here blue arms and\nlegs chopped off, afore I'd let her go. But I know it, and what then!\nWhy, then, I say, Heaven go with 'em both, and so it will! Amen!'\n\n'Captain Gills,' said Mr Toots, 'let me have the pleasure of\nshaking hands You've a way of saying things, that gives me an\nagreeable warmth, all up my back. I say Amen. You are aware, Captain\nGills, that I, too, have adored Miss Dombey.'\n\n'Cheer up!' said the Captain, laying his hand on Mr Toots's\nshoulder. 'Stand by, boy!'\n\n'It is my intention, Captain Gills,' returned the spirited Mr\nToots, 'to cheer up. Also to standby, as much as possible. When the\nsilent tomb shall yawn, Captain Gills, I shall be ready for burial;\nnot before. But not being certain, just at present, of my power over\nmyself, what I wish to say to you, and what I shall take it as a\nparticular favour if you will mention to Lieutenant Walters, is as\nfollows.'\n\n'Is as follers,' echoed the Captain. 'Steady!'\n\n'Miss Dombey being so inexpressably kind,' continued Mr Toots with\nwatery eyes, 'as to say that my presence is the reverse of\ndisagreeable to her, and you and everybody here being no less\nforbearing and tolerant towards one who - who certainly,' said Mr\nToots, with momentary dejection, 'would appear to have been born by\nmistake, I shall come backwards and forwards of an evening, during the\nshort time we can all be together. But what I ask is this. If, at any\nmoment, I find that I cannot endure the contemplation of Lieutenant\nWalters's bliss, and should rush out, I hope, Captain Gills, that you\nand he will both consider it as my misfortune and not my fault, or the\nwant of inward conflict. That you'll feel convinced I bear no malice\nto any living creature-least of all to Lieutenant Walters himself -\nand that you'll casually remark that I have gone out for a walk, or\nprobably to see what o'clock it is by the Royal Exchange. Captain\nGills, if you could enter into this arrangement, and could answer for\nLieutenant Walters, it would be a relief to my feelings that I should\nthink cheap at the sacrifice of a considerable portion of my\nproperty.'\n\n'My lad,' returned the Captain, 'say no more. There ain't a colour\nyou can run up, as won't be made out, and answered to, by Wal'r and\nself.'\n\n'Captain Gills,' said Mr Toots, 'my mind is greatly relieved. I\nwish to preserve the good opinion of all here. I - I - mean well, upon\nmy honour, however badly I may show it. You know,' said Mr Toots,\n'it's as exactly as Burgess and Co. wished to oblige a customer with a\nmost extraordinary pair of trousers, and could not cut out what they\nhad in their minds.'\n\nWith this apposite illustration, of which he seemed a little Proud,\nMr Toots gave Captain Cuttle his blessing and departed.\n\nThe honest Captain, with his Heart's Delight in the house, and\nSusan tending her, was a beaming and a happy man. As the days flew by,\nhe grew more beaming and more happy, every day. After some conferences\nwith Susan (for whose wisdom the Captain had a profound respect, and\nwhose valiant precipitation of herself on Mrs MacStinger he could\nnever forget), he proposed to Florence that the daughter of the\nelderly lady who usually sat under the blue umbrella in Leadenhall\nMarket, should, for prudential reasons and considerations of privacy,\nbe superseded in the temporary discharge of the household duties, by\nsomeone who was not unknown to them, and in whom they could safely\nconfide. Susan, being present, then named, in furtherance of a\nsuggestion she had previously offered to the Captain, Mrs Richards.\nFlorence brightened at the name. And Susan, setting off that very\nafternoon to the Toodle domicile, to sound Mrs Richards, returned in\ntriumph the same evening, accompanied by the identical rosy-cheeked\napple-faced Polly, whose demonstrations, when brought into Florence's\npresence, were hardly less affectionate than those of Susan Nipper\nherself.\n\nThis piece of generalship accomplished; from which the Captain\nderived uncommon satisfaction, as he did, indeed, from everything else\nthat was done, whatever it happened to be; Florence had next to\nprepare Susan for their approaching separation. This was a much more\ndifficult task, as Miss Nipper was of a resolute disposition, and had\nfully made up her mind that she had come back never to be parted from\nher old mistress any more.\n\n'As to wages dear Miss Floy,' she said, 'you wouldn't hint and\nwrong me so as think of naming them, for I've put money by and\nwouldn't sell my love and duty at a time like this even if the\nSavings' Banks and me were total strangers or the Banks were broke to\npieces, but you've never been without me darling from the time your\npoor dear Ma was took away, and though I'm nothing to be boasted of\nyou're used to me and oh my own dear mistress through so many years\ndon't think of going anywhere without me, for it mustn't and can't\nbe!'\n\n'Dear Susan, I am going on a long, long voyage.'\n\n'Well Miss Floy, and what of that? the more you'll want me. Lengths\nof voyages ain't an object in my eyes, thank God!' said the impetuous\nSusan Nipper.\n\n'But, Susan, I am going with Walter, and I would go with Walter\nanywhere - everywhere! Walter is poor, and I am very poor, and I must\nlearn, now, both to help myself, and help him.'\n\n'Dear Miss Floy!' cried Susan, bursting out afresh, and shaking her\nhead violently, 'it's nothing new to you to help yourself and others\ntoo and be the patientest and truest of noble hearts, but let me talk\nto Mr Walter Gay and settle it with him, for suffer you to go away\nacross the world alone I cannot, and I won't.'\n\n'Alone, Susan?' returned Florence. 'Alone? and Walter taking me\nwith him!' Ah, what a bright, amazed, enraptured smile was on her\nface! - He should have seen it. 'I am sure you will not speak to\nWalter if I ask you not,' she added tenderly; 'and pray don't, dear.'\n\nSusan sobbed 'Why not, Miss Floy?'\n\n'Because,' said Florence, 'I am going to be his wife, to give him\nup my whole heart, and to live with him and die with him. He might\nthink, if you said to him what you have said to me, that I am afraid\nof what is before me, or that you have some cause to be afraid for me.\nWhy, Susan, dear, I love him!'\n\nMiss Nipper was so much affected by the quiet fervour of these\nwords, and the simple, heartfelt, all-pervading earnestness expressed\nin them, and making the speaker's face more beautiful and pure than\never, that she could only cling to her again, crying. Was her little\nmistress really, really going to be married, and pitying, caressing,\nand protecting her, as she had done before. But the Nipper, though\nsusceptible of womanly weaknesses, was almost as capable of putting\nconstraint upon herself as of attacking the redoubtable MacStinger.\nFrom that time, she never returned to the subject, but was always\ncheerful, active, bustling, and hopeful. She did, indeed, inform Mr\nToots privately, that she was only 'keeping up' for the time, and that\nwhen it was all over, and Miss Dombey was gone, she might be expected\nto become a spectacle distressful; and Mr Toots did also express that\nit was his case too, and that they would mingle their tears together;\nbut she never otherwise indulged her private feelings in the presence\nof Florence or within the precincts of the Midshipman.\n\nLimited and plain as Florence's wardrobe was - what a contrast to\nthat prepared for the last marriage in which she had taken part! -\nthere was a good deal to do in getting it ready, and Susan Nipper\nworked away at her side, all day, with the concentrated zeal of fifty\nsempstresses. The wonderful contributions Captain Cuttle would have\nmade to this branch of the outfit, if he had been permitted - as pink\nparasols, tinted silk stockings, blue shoes, and other articles no\nless necessary on shipboard - would occupy some space in the recital.\nHe was induced, however, by various fraudulent representations, to\nlimit his contributions to a work-box and dressing case, of each of\nwhich he purchased the very largest specimen that could be got for\nmoney. For ten days or a fortnight afterwards, he generally sat,\nduring the greater part of the day, gazing at these boxes; divided\nbetween extreme admiration of them, and dejected misgivings that they\nwere not gorgeous enough, and frequently diving out into the street to\npurchase some wild article that he deemed necessary to their\ncompleteness. But his master-stroke was, the bearing of them both off,\nsuddenly, one morning, and getting the two words FLORENCE GAY engraved\nupon a brass heart inlaid over the lid of each. After this, he smoked\nfour pipes successively in the little parlour by himself, and was\ndiscovered chuckling, at the expiration of as many hours.\n\nWalter was busy and away all day, but came there every morning\nearly to see Florence, and always passed the evening with her.\nFlorence never left her high rooms but to steal downstairs to wait for\nhim when it was his time to come, or, sheltered by his proud,\nencircling arm, to bear him company to the door again, and sometimes\npeep into the street. In the twilight they were always together. Oh\nblessed time! Oh wandering heart at rest! Oh deep, exhaustless, mighty\nwell of love, in which so much was sunk!\n\nThe cruel mark was on her bosom yet. It rose against her father\nwith the breath she drew, it lay between her and her lover when he\npressed her to his heart. But she forgot it. In the beating of that\nheart for her, and in the beating of her own for him, all harsher\nmusic was unheard, all stern unloving hearts forgotten. Fragile and\ndelicate she was, but with a might of love within her that could, and\ndid, create a world to fly to, and to rest in, out of his one image.\n\nHow often did the great house, and the old days, come before her in\nthe twilight time, when she was sheltered by the arm, so proud, so\nfond, and, creeping closer to him, shrunk within it at the\nrecollection! How often, from remembering the night when she went down\nto that room and met the never-to-be forgotten look, did she raise her\neyes to those that watched her with such loving earnestness, and weep\nwith happiness in such a refuge! The more she clung to it, the more\nthe dear dead child was in her thoughts: but as if the last time she\nhad seen her father, had been when he was sleeping and she kissed his\nface, she always left him so, and never, in her fancy, passed that\nhour.\n\n'Walter, dear,' said Florence, one evening, when it was almost\ndark.'Do you know what I have been thinking to-day?'\n\n'Thinking how the time is flying on, and how soon we shall be upon\nthe sea, sweet Florence?'\n\n'I don't mean that, Walter, though I think of that too. I have been\nthinking what a charge I am to you.\n\n'A precious, sacred charge, dear heart! Why, I think that\nsometimes.'\n\n'You are laughing, Walter. I know that's much more in your thoughts\nthan mine. But I mean a cost.\n\n'A cost, my own?'\n\n'In money, dear. All these preparations that Susan and I are so\nbusy with - I have been able to purchase very little for myself. You\nwere poor before. But how much poorer I shall make you, Walter!'\n\n'And how much richer, Florence!'\n\nFlorence laughed, and shook her head.\n\n'Besides,' said Walter, 'long ago - before I went to sea - I had a\nlittle purse presented to me, dearest, which had money in it.'\n\n'Ah!' returned Florence, laughing sorrowfully, 'very little! very\nlittle, Walter! But, you must not think,' and here she laid her light\nhand on his shoulder, and looked into his face, 'that I regret to be\nthis burden on you. No, dear love, I am glad of it. I am happy in it.\nI wouldn't have it otherwise for all the world!'\n\n'Nor I, indeed, dear Florence.'\n\n'Ay! but, Walter, you can never feel it as I do. I am so proud of\nyou! It makes my heart swell with such delight to know that those who\nspeak of you must say you married a poor disowned girl, who had taken\nshelter here; who had no other home, no other friends; who had nothing\n- nothing! Oh, Walter, if I could have brought you millions, I never\ncould have been so happy for your sake, as I am!'\n\n'And you, dear Florence? are you nothing?' he returned.\n\n'No, nothing, Walter. Nothing but your wife.' The light hand stole\nabout his neck, and the voice came nearer - nearer. 'I am nothing any\nmore, that is not you. I have no earthly hope any more, that is not\nyou. I have nothing dear to me any more, that is not you.\n\nOh! well might Mr Toots leave the little company that evening, and\ntwice go out to correct his watch by the Royal Exchange, and once to\nkeep an appointment with a banker which he suddenly remembered, and\nonce to take a little turn to Aldgate Pump and back!\n\nBut before he went upon these expeditions, or indeed before he\ncame, and before lights were brought, Walter said:\n\n'Florence, love, the lading of our ship is nearly finished, and\nprobably on the very day of our marriage she will drop down the river.\nShall we go away that morning, and stay in Kent until we go on board\nat Gravesend within a week?'\n\n'If you please, Walter. I shall be happy anywhere. But - '\n\n'Yes, my life?'\n\n'You know,' said Florence, 'that we shall have no marriage party,\nand that nobody will distinguish us by our dress from other people. As\nwe leave the same day, will you - will you take me somewhere that\nmorning, Walter - early - before we go to church?'\n\nWalter seemed to understand her, as so true a lover so truly loved\nshould, and confirmed his ready promise with a kiss - with more than\none perhaps, or two or threes or five or six; and in the grave,\npeaceful evening, Florence was very happy.\n\nThen into the quiet room came Susan Nipper and the candles; shortly\nafterwards, the tea, the Captain, and the excursive Mr Toots, who, as\nabove mentioned, was frequently on the move afterwards, and passed but\na restless evening. This, however, was not his habit: for he generally\ngot on very well, by dint of playing at cribbage with the Captain\nunder the advice and guidance of Miss Nipper, and distracting his mind\nwith the calculations incidental to the game; which he found to be a\nvery effectual means of utterly confounding himself.\n\nThe Captain's visage on these occasions presented one of the finest\nexamples of combination and succession of expression ever observed.\nHis instinctive delicacy and his chivalrous feeling towards Florence,\ntaught him that it was not a time for any boisterous jollity, or\nviolent display of satisfaction; floating reminiscences of Lovely Peg,\non the other hand, were constantly struggling for a vent, and urging\nthe Captain to commit himself by some irreparable demonstration. Anon,\nhis admiration of Florence and Walter - well-matched, truly, and full\nof grace and interest in their youth, and love, and good looks, as\nthey sat apart - would take such complete possession of hIm, that he\nwould lay down his cards, and beam upon them, dabbing his head all\nover with his pockethandkerchief; until warned, perhaps, by the sudden\nrushing forth of Mr Toots, that he had unconsciously been very\ninstrumental, indeed, in making that gentleman miserable. This\nreflection would make the Captain profoundly melancholy, until the\nreturn of Mr Toots; when he would fall to his cards again, with many\nside winks and nods, and polite waves of his hook at Miss Nipper,\nimporting that he wasn't going to do so any more. The state that\nensued on this, was, perhaps, his best; for then, endeavouring to\ndischarge all expression from his face, he would sit staring round the\nroom, with all these expressions conveyed into it at once, and each\nwrestling with the other. Delighted admiration of Florence and Walter\nalways overthrew the rest, and remained victorious and undisguised,\nunless Mr Toots made another rush into the air, and then the Captain\nwould sit, like a remorseful culprit, until he came back again,\noccasionally calling upon himself, in a low reproachful voice, to\n'Stand by!' or growling some remonstrance to 'Ed'ard Cuttle, my lad,'\non the want of caution observabl in his behaviour.\n\nOne of Mr Toots's hardest trials, however, was of his own seeking.\nOn the approach of the Sunday which was to witness the last of those\naskings in church of which the Captain had spoken, Mr Toots thus\nstated his feelings to Susan Nipper.\n\n'Susan,' said Mr Toots, 'I am drawn towards the building. The words\nwhich cut me off from Miss Dombey for ever, will strike upon my ears\nlike a knell you know, but upon my word and honour, I feel that I must\nhear them. Therefore,' said Mr Toots, 'will you accompany me\nto-morrow, to the sacred edifice?'\n\nMiss Nipper expressed her readiness to do so, if that would be any\nsatisfaction to Mr Toots, but besought him to abandon his idea of\ngoing.\n\n'Susan,' returned Mr Toots, with much solemnity, 'before my\nwhiskers began to be observed by anybody but myself, I adored Miss\nDombey. While yet a victim to the thraldom of Blimber, I adored Miss\nDombey. When I could no longer be kept out of my property, in a legal\npoint of view, and - and accordingly came into it - I adored Miss\nDombey. The banns which consign her to Lieutenant Walters, and me to -\nto Gloom, you know,' said Mr Toots, after hesitating for a strong\nexpression, 'may be dreadful, will be dreadful; but I feel that I\nshould wish to hear them spoken. I feel that I should wish to know\nthat the ground wascertainly cut from under me, and that I hadn't a\nhope to cherish, or a - or a leg, in short, to - to go upon.'\n\nSusan Nipper could only commiserate Mr Toots's unfortunate\ncondition, and agree, under these circumstances, to accompany him;\nwhich she did next morning.\n\nThe church Walter had chosen for the purpose, was a mouldy old\nchurch in a yard, hemmed in by a labyrinth of back streets and courts,\nwith a little burying-ground round it, and itself buried in a kind of\nvault, formed by the neighbouring houses, and paved with echoing\nstones It was a great dim, shabby pile, with high old oaken pews,\namong which about a score of people lost themselves every Sunday;\nwhile the clergyman's voice drowsily resounded through the emptiness,\nand the organ rumbled and rolled as if the church had got the colic,\nfor want of a congregation to keep the wind and damp out. But so far\nwas this city church from languishing for the company of other\nchurches, that spires were clustered round it, as the masts of\nshipping cluster on the river. It would have been hard to count them\nfrom its steeple-top, they were so many. In almost every yard and\nblind-place near, there was a church. The confusion of bells when\nSusan and Mr Toots betook themselves towards it on the Sunday morning,\nwas deafening. There were twenty churches close together, clamouring\nfor people to come in.\n\nThe two stray sheep in question were penned by a beadle in a\ncommodious pew, and, being early, sat for some time counting the\ncongregation, listening to the disappointed bell high up in the tower,\nor looking at a shabby little old man in the porch behind the screen,\nwho was ringing the same, like the Bull in Cock Robin,' with his foot\nin a stirrup. Mr Toots, after a lengthened survey of the large books\non the reading-desk, whispered Miss Nipper that he wondered where the\nbanns were kept, but that young lady merely shook her head and\nfrowned; repelling for the time all approaches of a temporal nature.\n\nMr Toots, however, appearing unable to keep his thoughts from the\nbanns, was evidently looking out for them during the whole preliminary\nportion of the service. As the time for reading them approached, the\npoor young gentleman manifested great anxiety and trepidation, which\nwas not diminished by the unexpected apparition of the Captain in the\nfront row of the gallery. When the clerk handed up a list to the\nclergyman, Mr Toots, being then seated, held on by the seat of the\npew; but when the names of Walter Gay and Florence Dombey were read\naloud as being in the third and last stage of that association, he was\nso entirley conquered by his feelings as to rush from the church\nwithout his hat, followed by the beadle and pew-opener, and two\ngentlemen of the medical profeesion, who happened to be present; of\nwhom the first-named presently returned for that article, informing\nMiss Nipper in a whisper that she was not to make herself uneasy about\nthe gentleman, as the gentleman said his indisposition was of no\nconsequence.\n\nMiss Nipper, feeling that the eyes of that integral portion of\nEurope which lost itself weekly among the high-backed pews, were upon\nher, would have been sufficient embarrassed by this incident, though\nit had terminated here; the more so, as the Captain in the front row\nof the gallery, was in a state of unmitigated consciousness which\ncould hardly fail to express to the congregation that he had some\nmysterious connection with it. But the extreme restlessness of Mr\nToots painfully increased and protracted the delicacy of her\nsituation. That young gentleman, incapable, in his state of mind, of\nremaining alone in the churchyard, a prey to solitary meditation, and\nalso desirous, no doubt, of testifying his respect for the offices he\nhad in some measure interrupted, suddenly returned - not coming back\nto the pew, but stationing himself on a free seat in the aisle,\nbetween two elderly females who were in the habit of receiving their\nportion of a weekly dole of bread then set forth on a shelf in the\nporch. In this conjunction Mr Toots remained, greatly disturbing the\ncongregation, who felt it impossible to avoid looking at him, until\nhis feelings overcame him again, when he departed silently and\nsuddenly. Not venturing to trust himself in the church any more, and\nyet wishing to have some social participation in what was going on\nthere, Mr Toots was, after this, seen from time to time, looking in,\nwith a lorn aspect, at one or other of the windows; and as there were\nseveral windows accessible to him from without, and as his\nrestlessness was very great, it not only became difficult to conceive\nat which window he would appear next, but likewise became necessary,\nas it were, for the whole congregation to speculate upon the chances\nof the different windows, during the comparative leisure afforded them\nby the sermon. Mr Toots's movements in the churchyard were so\neccentric, that he seemed generally to defeat all calculation, and to\nappear, like the conjuror's figure, where he was least expected; and\nthe effect of these mysterious presentations was much increased by its\nbeing difficult to him to see in, and easy to everybody else to see\nout: which occasioned his remaining, every time, longer than might\nhave been expected, with his face close to the glass, until he all at\nonce became aware that all eyes were upon him, and vanished.\n\nThese proceedings on the part of Mr Toots, and the strong\nindividual consciousness of them that was exhibited by the Captain,\nrendered Miss Nipper's position so responsible a one, that she was\nmightily relieved by the conclusion of the service; and was hardly so\naffable to Mr Toots as usual, when he informed her and the Captain, on\nthe way back, that now he was sure he had no hope, you know, he felt\nmore comfortable - at least not exactly more comfortable, but more\ncomfortably and completely miserable.\n\nSwiftly now, indeed, the time flew by until it was the evening\nbefore the day appointed for the marriage. They were all assembled in\nthe upper room at the Midshipman's, and had no fear of interruption;\nfor there were no lodgers in the house now, and the Midshipman had it\nall to himself. They were grave and quiet in the prospect of\nto-morrow, but moderately cheerful too. Florence, with Walter close\nbeside her, was finishing a little piece of work intended as a parting\ngift to the Captain. The Captain was playing cribbage with Mr Toots.\nMr Toots was taking counsel as to his hand, of Susan Nipper. Miss\nNipper was giving it, with all due secrecy and circumspection.\nDiogenes was listening, and occasionally breaking out into a gruff\nhalf-smothered fragment of a bark, of which he afterwards seemed\nhalf-ashamed, as if he doubted having any reason for it.\n\n'Steady, steady!' said the Captain to Diogenes, 'what's amiss with\nyou? You don't seem easy in your mind to-night, my boy!'\n\nDiogenes wagged his tail, but pricked up his ears immediately\nafterwards, and gave utterance to another fragment of a bark; for\nwhich he apologised to the Captain, by again wagging his tail.\n\n'It's my opinion, Di,' said the Captain, looking thoughtfully at\nhis cards, and stroking his chin with his hook, 'as you have your\ndoubts of Mrs Richards; but if you're the animal I take you to be,\nyou'll think better o' that; for her looks is her commission. Now,\nBrother:' to Mr Toots: 'if so be as you're ready, heave ahead.'\n\nThe Captain spoke with all composure and attention to the game, but\nsuddenly his cards dropped out of his hand, his mouth and eyes opened\nwide, his legs drew themselves up and stuck out in front of his chair,\nand he sat staring at the door with blank amazement. Looking round\nupon the company, and seeing that none of them observed him or the\ncause of his astonishment, the Captain recovered himself with a great\ngasp, struck the table a tremendous blow, cried in a stentorian roar,\n'Sol Gills ahoy!' and tumbled into the arms of a weather-beaten\npea-coat that had come with Polly into the room.\n\nIn another moment, Walter was in the arms of the weather-beaten\npea-coat. In another moment, Florence was in the arms of the\nweather-beaten pea-coat. In another moment, Captain Cuttle had\nembraced Mrs Richards and Miss Nipper, and was violently shaking hands\nwith Mr Toots, exclaiming, as he waved his hook above his head,\n'Hooroar, my lad, hooroar!' To which Mr Toots, wholly at a loss to\naccount for these proceedings, replied with great politeness,\n'Certainly, Captain Gills, whatever you think proper!'\n\nThe weather-beaten pea-coat, and a no less weather-beaten cap and\ncomforter belonging to it, turned from the Captain and from Florence\nback to Walter, and sounds came from the weather-beaten pea-coat, cap,\nand comforter, as of an old man sobbing underneath them; while the\nshaggy sleeves clasped Walter tight. During this pause, there was an\nuniversal silence, and the Captain polished his nose with great\ndiligence. But when the pea-coat, cap, and comforter lifted themselves\nup again, Florence gently moved towards them; and she and Walter\ntaking them off, disclosed the old Instrument-maker, a little thinner\nand more careworn than of old, in his old Welsh wig and his old\ncoffee-coloured coat and basket buttons, with his old infallible\nchronometer ticking away in his pocket.\n\n'Chock full o' science,' said the radiant Captain, 'as ever he was!\nSol Gills, Sol Gills, what have you been up to, for this many a long\nday, my ould boy?'\n\n'I'm half blind, Ned,' said the old man, 'and almost deaf and dumb\nwith joy.'\n\n'His wery woice,' said the Captain, looking round with an\nexultation to which even his face could hardly render justice - 'his\nwery woice as chock full o' science as ever it was! Sol Gills, lay to,\nmy lad, upon your own wines and fig-trees like a taut ould patriark as\nyou are, and overhaul them there adwentures o' yourn, in your own\nformilior woice. 'Tis the woice,' said the Captain, impressively, and\nannouncing a quotation with his hook, 'of the sluggard, I heerd him\ncomplain, you have woke me too soon, I must slumber again. Scatter his\nene-mies, and make 'em fall!'\n\nThe Captain sat down with the air of a man who had happily\nexpressed the feeling of everybody present, and immediately rose again\nto present Mr Toots, who was much disconcerted by the arrival of\nanybody, appearing to prefer a claim to the name of Gills.\n\n'Although,' stammered Mr Toots, 'I had not the pleasure of your\nacquaintance, Sir, before you were - you were - '\n\n'Lost to sight, to memory dear,' suggested the Captain, in a low\nvoice.\n\nExactly so, Captain Gills!' assented Mr Toots. 'Although I had not\nthe pleasure of your acquaintance, Mr - Mr Sols,' said Toots, hitting\non that name in the inspiration of a bright idea, 'before that\nhappened, I have the greatest pleasure, I assure you, in - you know,\nin knowing you. I hope,' said Mr Toots, 'that you're as well as can be\nexpected.'\n\nWith these courteous words, Mr Toots sat down blushing and\nchuckling.\n\nThe old Instrument-maker, seated in a corner between Walter and\nFlorence, and nodding at Polly, who was looking on, all smiles and\ndelight, answered the Captain thus:\n\n'Ned Cuttle, my dear boy, although I have heard something of the\nchanges of events here, from my pleasant friend there - what a\npleasant face she has to be sure, to welcome a wanderer home!' said\nthe old man, breaking off, and rubbing his hands in his old dreamy\nway.\n\n'Hear him!' cried the Captain gravely. ''Tis woman as seduces all\nmankind. For which,' aside to Mr Toots, 'you'll overhaul your Adam and\nEve, brother.'\n\n'I shall make a point of doing so, Captain Gills,' said Mr Toots.\n\n'Although I have heard something of the changes of events, from\nher,' resumed the Instrument-maker, taking his old spectacles from his\npocket, and putting them on his forehead in his old manner, 'they are\nso great and unexpected, and I am so overpowered by the sight of my\ndear boy, and by the,' - glancing at the downcast eyes of Florence,\nand not attempting to finish the sentence - 'that I - I can't say much\nto-night. But my dear Ned Cuttle, why didn't you write?'\n\nThe astonishment depicted in the Captain's features positively\nfrightened Mr Toots, whose eyes were quite fixed by it, so that he\ncould not withdraw them from his face.\n\n'Write!' echoed the Captain. 'Write, Sol Gills?'\n\n'Ay,' said the old man, 'either to Barbados, or Jamaica, or\nDemerara, That was what I asked.'\n\n'What you asked, Sol Gills?' repeated the Captain.\n\n'Ay,' said the old man. 'Don't you know, Ned? Sure you have not\nforgotten? Every time I wrote to you.'\n\nThe Captain took off his glazed hat, hung it on his hook, and\nsmoothing his hair from behind with his hand, sat gazing at the group\naround him: a perfect image of wondering resignation.\n\n'You don't appear to understand me, Ned!' observed old Sol.\n\n'Sol Gills,' returned the Captain, after staring at him and the\nrest for a long time, without speaking, 'I'm gone about and adrift.\nPay out a word or two respecting them adwenturs, will you! Can't I\nbring up, nohows? Nohows?' said the Captain, ruminating, and staring\nall round.\n\n'You know, Ned,' said Sol Gills, 'why I left here. Did you open my\npacket, Ned?'\n\n'Why, ay, ay,' said the Captain. 'To be sure, I opened the packet.'\n\n'And read it?' said the old man.\n\n'And read it,' answered the Captain, eyeing him attentively, and\nproceeding to quote it from memory. '\"My dear Ned Cuttle, when I left\nhome for the West Indies in forlorn search of intelligence of my\ndear-\" There he sits! There's Wal'r!' said the Captain, as if he were\nrelieved by getting hold of anything that was real and indisputable.\n\n'Well, Ned. Now attend a moment!' said the old man. 'When I wrote\nfirst - that was from Barbados - I said that though you would receive\nthat letter long before the year was out, I should be glad if you\nwould open the packet, as it explained the reason of my going away.\nVery good, Ned. When I wrote the second, third, and perhaps the fourth\ntimes - that was from Jamaica - I said I was in just the same state,\ncouldn't rest, and couldn't come away from that part of the world,\nwithout knowing that my boy was lost or saved. When I wrote next -\nthat, I think, was from Demerara, wasn't it?'\n\n'That he thinks was from Demerara, warn't it!' said the Captain,\nlooking hopelessly round.\n\n'I said,' proceeded old Sol, 'that still there was no certain\ninformation got yet. That I found many captains and others, in that\npart of the world, who had known me for years, and who assisted me\nwith a passage here and there, and for whom I was able, now and then,\nto do a little in return, in my own craft. That everyone was sorry for\nme, and seemed to take a sort of interest in my wanderings; and that I\nbegan to think it would be my fate to cruise about in search of\ntidings of my boy, until I died.'\n\n'Began to think as how he was a scientific Flying Dutchman!' said\nthe Captain, as before, and with great seriousness.\n\n'But when the news come one day, Ned, - that was to Barbados, after\nI got back there, - that a China trader home'ard bound had been spoke,\nthat had my boy aboard, then, Ned, I took passage in the next ship and\ncame home; arrived at home to-night to find it true, thank God!' said\nthe old man, devoutly.\n\nThe Captain, after bowing his head with great reverence, stared all\nround the circle, beginning with Mr Toots, and ending with the\nInstrument-maker; then gravely said:\n\n'Sol Gills! The observation as I'm a-going to make is calc'lated to\nblow every stitch of sail as you can carry, clean out of the\nbolt-ropes, and bring you on your beam ends with a lurch. Not one of\nthem letters was ever delivered to Ed'ard Cuttle. Not one o' them\nletters,' repeated the Captain, to make his declaration the more\nsolemn and impressive, 'was ever delivered unto Ed'ard Cuttle,\nMariner, of England, as lives at home at ease, and doth improve each\nshining hour!'\n\n'And posted by my own hand! And directed by my own hand, Number\nnine Brig Place!' exclaimed old Sol.\n\nThe colour all went out of the Captain's face and all came back\nagain in a glow.\n\n'What do you mean, Sol Gills, my friend, by Number nine Brig\nPlace?' inquired the Captain.\n\n'Mean? Your lodgings, Ned,' returned the old man. 'Mrs\nWhat's-her-name! I shall forget my own name next, but I am behind the\npresent time - I always was, you recollect - and very much confused.\nMrs - '\n\n'Sol Gills!' said the Captain, as if he were putting the most\nimprobable case in the world, 'it ain't the name of MacStinger as\nyou're a trying to remember?'\n\n'Of course it is!' exclaimed the Instrument-maker. 'To be sure Ned.\nMrs MacStinger!'\n\nCaptain Cuttle, whose eyes were now as wide open as they would be,\nand the knobs upon whose face were perfectly luminous, gave a long\nshrill whistle of a most melancholy sound, and stood gazing at\neverybody in a state of speechlessness.\n\n'Overhaul that there again, Sol Gills, will you be so kind?' he\nsaid at last.\n\n'All these letters,' returned Uncle Sol, beating time with the\nforefinger of his right hand upon the palm of his left, with a\nsteadiness and distinctness that might have done honour, even to the\ninfallible chronometer in his pocket, 'I posted with my own hand, and\ndirected with my own hand, to Captain Cuttle, at Mrs MacStinger's,\nNumber nine Brig Place.'\n\nThe Captain took his glazed hat off his hook, looked into it, put\nit on, and sat down.\n\n'Why, friends all,' said the Captain, staring round in the last\nstate of discomfiture, 'I cut and run from there!'\n\n'And no one knew where you were gone, Captain Cuttle?' cried Walter\nhastily.\n\n'Bless your heart, Wal'r,' said the Captain, shaking his head,\n'she'd never have allowed o' my coming to take charge o' this here\nproperty. Nothing could be done but cut and run. Lord love you,\nWal'r!' said the Captain, 'you've only seen her in a calm! But see her\nwhen her angry passions rise - and make a note on!'\n\n'I'd give it her!' remarked the Nipper, softly.\n\n'Would you, do you think, my dear?' returned the Captain, with\nfeeble admiration. 'Well, my dear, it does you credit. But there ain't\nno wild animal I wouldn't sooner face myself. I only got my chest away\nby means of a friend as nobody's a match for. It was no good sending\nany letter there. She wouldn't take in any letter, bless you,' said\nthe Captain, 'under them circumstances! Why, you could hardly make it\nworth a man's while to be the postman!'\n\n'Then it's pretty clear, Captain Cuttle, that all of us, and you\nand Uncle Sol especially,' said Walter, 'may thank Mrs MacStinger for\nno small anxiety.'\n\nThe general obligation in this wise to the determined relict of the\nlate Mr MacStinger, was so apparent, that the Captain did not contest\nthe point; but being in some measure ashamed of his position, though\nnobody dwelt upon the subject, and Walter especially avoided it,\nremembering the last conversation he and the Captain had held together\nrespecting it, he remained under a cloud for nearly five minutes - an\nextraordinary period for him when that sun, his face, broke out once\nmore, shining on all beholders with extraordinary brilliancy; and he\nfell into a fit of shaking hands with everybody over and over again.\n\nAt an early hour, but not before Uncle Sol and Walter had\nquestioned each other at some length about their voyages and dangers,\nthey all, except Walter, vacated Florence's room, and went down to the\nparlour. Here they were soon afterwards joined by Walter, who told\nthem Florence was a little sorrowful and heavy-hearted, and had gone\nto bed. Though they could not have disturbed her with their voices\ndown there, they all spoke in a whisper after this: and each, in his\ndifferent way, felt very lovingly and gently towards Walter's fair\nyoung bride: and a long explanation there was of everything relating\nto her, for the satisfaction of Uncle Sol; and very sensible Mr Toots\nwas of the delicacy with which Walter made his name and services\nimportant, and his presence necessary to their little council.\n\n'Mr Toots,' said Walter, on parting with him at the house door, 'we\nshall see each other to-morrow morning?'\n\n'Lieutenant Walters,' returned Mr Toots, grasping his hand\nfervently, 'I shall certainly be present.\n\n'This is the last night we shall meet for a long time - the last\nnight we may ever meet,' said Walter. 'Such a noble heart as yours,\nmust feel, I think, when another heart is bound to it. I hope you know\nthat I am very grateful to you?'\n\n'Walters,' replied Mr Toots, quite touched, 'I should be glad to\nfeel that you had reason to be so.'\n\n'Florence,' said Walter, 'on this last night of her bearing her own\nname, has made me promise - it was only just now, when you left us\ntogether - that I would tell you - with her dear love - '\n\nMr Toots laid his hand upon the doorpost, and his eyes upon his\nhand.\n\n- with her dear love,' said Walter, 'that she can never have a\nfriend whom she will value above you. That the recollection of your\ntrue consideration for her always, can never be forgotten by her. That\nshe remembers you in her prayers to-night, and hopes that you will\nthink of her when she is far away. Shall I say anything for you?'\n\n'Say, Walter,' replied Mr Toots indistinctly, 'that I shall think\nof her every day, but never without feeling happy to know that she is\nmarried to the man she loves, and who loves her. Say, if you please,\nthat I am sure her husband deserves her - even her!- and that I am\nglad of her choice.'\n\nMr Toots got more distinct as he came to these last words, and\nraising his eyes from the doorpost, said them stoutly. He then shook\nWalter's hand again with a fervour that Walter was not slow to return\nand started homeward.\n\nMr Toots was accompanied by the Chicken, whom he had of late\nbrought with him every evening, and left in the shop, with an idea\nthat unforeseen circumstances might arise from without, in which the\nprowess of that distinguished character would be of service to the\nMidshipman. The Chicken did not appear to be in a particularly good\nhumour on this occasion. Either the gas-lamps were treacherous, or he\ncocked his eye in a hideous manner, and likewise distorted his nose,\nwhen Mr Toots, crossing the road, looked back over his shoulder at the\nroom where Florence slept. On the road home, he was more demonstrative\nof aggressive intentions against the other foot-passengers, than\ncomported with a professor of the peaceful art of self-defence.\nArrived at home, instead of leaving Mr Toots in his apartments when he\nhad escorted him thither, he remained before him weighing his white\nhat in both hands by the brim, and twitching his head and nose (both\nof which had been many times broken, and but indifferently repaired),\nwith an air of decided disrespect.\n\nHis patron being much engaged with his own thoughts, did not\nobserve this for some time, nor indeed until the Chicken, determined\nnot to be overlooked, had made divers clicking sounds with his tongue\nand teeth, to attract attention.\n\n'Now, Master,' said the Chicken, doggedly, when he, at length,\ncaught Mr Toots's eye, 'I want to know whether this here gammon is to\nfinish it, or whether you're a going in to win?'\n\n'Chicken,' returned Mr Toots, 'explain yourself.'\n\n'Why then, here's all about it, Master,' said the Chicken. 'I ain't\na cove to chuck a word away. Here's wot it is. Are any on 'em to be\ndoubled up?'\n\nWhen the Chicken put this question he dropped his hat, made a dodge\nand a feint with his left hand, hit a supposed enemy a violent blow\nwith his right, shook his head smartly, and recovered himself'\n\n'Come, Master,' said the Chicken. 'Is it to be gammon or pluck?\nWhich?'\n\nChicken,' returned Mr Toots, 'your expressions are coarse, and your\nmeaning is obscure.'\n\n'Why, then, I tell you what, Master,' said the Chicken. 'This is\nwhere it is. It's mean.'\n\n'What is mean, Chicken?' asked Mr Toots.\n\n'It is,' said the Chicken, with a frightful corrugation of his\nbroken nose. 'There! Now, Master! Wot! When you could go and blow on\nthis here match to the stiff'un;' by which depreciatory appellation it\nhas been since supposed that the Game One intended to signify Mr\nDombey; 'and when you could knock the winner and all the kit of 'em\ndead out o' wind and time, are you going to give in? To give in? 'said\nthe Chicken, with contemptuous emphasis. 'Wy, it's mean!'\n\n'Chicken,' said Mr Toots, severely, 'you're a perfect Vulture! Your\nsentiments are atrocious.'\n\n'My sentiments is Game and Fancy, Master,' returned the Chicken.\n'That's wot my sentiments is. I can't abear a meanness. I'm afore the\npublic, I'm to be heerd on at the bar of the Little Helephant, and no\nGov'ner o' mine mustn't go and do what's mean. Wy, it's mean,' said\nthe Chicken, with increased expression. 'That's where it is. It's\nmean.'\n\n'Chicken,' said Mr Toots, 'you disgust me.'\n\n'Master,' returned the Chicken, putting on his hat, 'there's a pair\non us, then. Come! Here's a offer! You've spoke to me more than once't\nor twice't about the public line. Never mind! Give me a fi'typunnote\nto-morrow, and let me go.'\n\n'Chicken,' returned Mr Toots, 'after the odious sentiments you have\nexpressed, I shall be glad to part on such terms.'\n\n'Done then,' said the Chicken. 'It's a bargain. This here conduct\nof yourn won't suit my book, Master. Wy, it's mean,' said the Chicken;\nwho seemed equally unable to get beyond that point, and to stop short\nof it. 'That's where it is; it's mean!'\n\nSo Mr Toots and the Chicken agreed to part on this incompatibility\nof moral perception; and Mr Toots lying down to sleep, dreamed happily\nof Florence, who had thought of him as her friend upon the last night\nof her maiden life, and who had sent him her dear love.\n\n\nCHAPTER 57.\n\nAnother Wedding\n\n\n\nMr Sownds the beadle, and Mrs Miff the pew-opener, are early at\ntheir posts in the fine church where Mr Dombey was married. A\nyellow-faced old gentleman from India, is going to take unto himself a\nyoung wife this morning, and six carriages full of company are\nexpected, and Mrs Miff has been informed that the yellow-faced old\ngentleman could pave the road to church with diamonds and hardly miss\nthem. The nuptial benediction is to be a superior one, proceeding from\na very reverend, a dean, and the lady is to be given away, as an\nextraordinary present, by somebody who comes express from the Horse\nGuards\n\nMrs Miff is more intolerant of common people this morning, than she\ngenerally is; and she his always strong opinions on that subject, for\nit is associated with free sittings. Mrs Miff is not a student of\npolitical economy (she thinks the science is connected with\ndissenters; 'Baptists or Wesleyans, or some o' them,' she says), but\nshe can never understand what business your common folks have to be\nmarried. 'Drat 'em,' says Mrs Miff 'you read the same things over 'em'\nand instead of sovereigns get sixpences!'\n\nMr Sownds the beadle is more liberal than Mrs Miff - but then he is\nnot a pew-opener. 'It must be done, Ma'am,' he says. 'We must marry\n'em. We must have our national schools to walk at the head of, and we\nmust have our standing armies. We must marry 'em, Ma'am,' says Mr\nSownds, 'and keep the country going.'\n\nMr Sownds is sitting on the steps and Mrs Miff is dusting in the\nchurch, when a young couple, plainly dressed, come in. The mortified\nbonnet of Mrs Miff is sharply turned towards them, for she espies in\nthis early visit indications of a runaway match. But they don't want\nto be married - 'Only,' says the gentleman, 'to walk round the\nchurch.' And as he slips a genteel compliment into the palm of Mrs\nMiff, her vinegary face relaxes, and her mortified bonnet and her\nspare dry figure dip and crackle.\n\nMrs Miff resumes her dusting and plumps up her cushions - for the\nyellow-faced old gentleman is reported to have tender knees - but\nkeeps her glazed, pew-opening eye on the young couple who are walking\nround the church. 'Ahem,' coughs Mrs Miff whose cough is drier than\nthe hay in any hassock in her charge, 'you'll come to us one of these\nmornings, my dears, unless I'm much mistaken!'\n\nThey are looking at a tablet on the wall, erected to the memory of\nsomeone dead. They are a long way off from Mrs Miff, but Mrs Miff can\nsee with half an eye how she is leaning on his arm, and how his head\nis bent down over her. 'Well, well,' says Mrs Miff, 'you might do\nworse. For you're a tidy pair!'\n\nThere is nothing personal in Mrs Miff's remark. She merely speaks\nof stock-in-trade. She is hardly more curious in couples than in\ncoffins. She is such a spare, straight, dry old lady - such a pew of a\nwoman - that you should find as many individual sympathies in a chip.\nMr Sownds, now, who is fleshy, and has scarlet in his coat, is of a\ndifferent temperament. He says, as they stand upon the steps watching\nthe young couple away, that she has a pretty figure, hasn't she, and\nas well as he could see (for she held her head down coming out), an\nuncommon pretty face. 'Altogether, Mrs Miff,' says Mr Sownds with a\nrelish, 'she is what you may call a rose-bud.'\n\nMrs Miff assents with a spare nod of her mortified bonnet; but\napproves of this so little, that she inwardly resolves she wouldn't be\nthe wife of Mr Sownds for any money he could give her, Beadle as he\nis.\n\nAnd what are the young couple saying as they leave the church, and\ngo out at the gate?\n\n'Dear Walter, thank you! I can go away, now, happy.'\n\n'And when we come back, Florence, we will come and see his grave\nagain.'\n\nFlorence lifts her eyes, so bright with tears, to his kind face;\nand clasps her disengaged hand on that other modest little hand which\nclasps his arm.\n\n'It is very early, Walter, and the streets are almost empty yet.\nLet us walk.'\n\n'But you will be so tired, my love.'\n\n'Oh no! I was very tired the first time that we ever walked\ntogether, but I shall not be so to-day.' And thus - not much changed -\nshe, as innocent and earnest-hearted - he, as frank, as hopeful, and\nmore proud of her - Florence and Walter, on their bridal morning, walk\nthrough the streets together.\n\nNot even in that childish walk of long ago, were they so far\nremoved from all the world about them as to-day. The childish feet of\nlong ago, did not tread such enchanted ground as theirs do now. The\nconfidence and love of children may be given many times, and will\nspring up in many places; but the woman's heart of Florence, with its\nundivided treasure, can be yielded only once, and under slight or\nchange, can only droop and die.\n\nThey take the streets that are the quietest, and do not go near\nthat in which her old home stands. It is a fair, warm summer morning,\nand the sun shines on them, as they walk towards the darkening mist\nthat overspreads the City. Riches are uncovering in shops; jewels,\ngold, and silver flash in the goldsmith's sunny windows; and great\nhouses cast a stately shade upon them as they pass. But through the\nlight, and through the shade, they go on lovingly together, lost to\neverything around; thinking of no other riches, and no prouder home,\nthan they have now in one another.\n\nGradually they come into the darker, narrower streets, where the\nsun, now yellow, and now red, is seen through the mist, only at street\ncorners, and in small open spaces where there is a tree, or one of the\ninnumerable churches, or a paved way and a flight of steps, or a\ncurious little patch of garden, or a burying-ground, where the few\ntombs and tombstones are almost black. Lovingly and trustfully,\nthrough all the narrow yards and alleys and the shady streets,\nFlorence goes, clinging to his arm, to be his wife.\n\nHer heart beats quicker now, for Walter tells her that their church\nis very near. They pass a few great stacks of warehouses, with waggons\nat the doors, and busy carmen stopping up the way - but Florence does\nnot see or hear them - and then the air is quiet, and the day is\ndarkened, and she is trembling in a church which has a strange smell\nlike a cellar.\n\nThe shabby little old man, ringer of the disappointed bell, is\nstanding in the porch, and has put his hat in the font - for he is\nquite at home there, being sexton. He ushers them into an old brown,\npanelled, dusty vestry, like a corner-cupboard with the shelves taken\nout; where the wormy registers diffuse a smell like faded snuff, which\nhas set the tearful Nipper sneezing.\n\nYouthful, and how beautiful, the young bride looks, in this old\ndusty place, with no kindred object near her but her husband. There is\na dusty old clerk, who keeps a sort of evaporated news shop underneath\nan archway opposite, behind a perfect fortification of posts. There is\na dusty old pew-opener who only keeps herself, and finds that quite\nenough to do. There is a dusty old beadle (these are Mr Toots's beadle\nand pew-opener of last Sunday), who has something to do with a\nWorshipful Company who have got a Hall in the next yard, with a\nstained-glass window in it that no mortal ever saw. There are dusty\nwooden ledges and cornices poked in and out over the altar, and over\nthe screen and round the gallery, and over the inscription about what\nthe Master and Wardens of the Worshipful Company did in one thousand\nsix hundred and ninety-four. There are dusty old sounding-boards over\nthe pulpit and reading-desk, looking like lids to be let down on the\nofficiating ministers in case of their giving offence. There is every\npossible provision for the accommodation of dust, except in the\nchurchyard, where the facilities in that respect are very limited. The\nCaptain, Uncle Sol, and Mr Toots are come; the clergyman is putting on\nhis surplice in the vestry, while the clerk walks round him, blowing\nthe dust off it; and the bride and bridegroom stand before the altar.\nThere is no bridesmaid, unless Susan Nipper is one; and no better\nfather than Captain Cuttle. A man with a wooden leg, chewing a faint\napple and carrying a blue bag in has hand, looks in to see what is\ngoing on; but finding it nothing entertaining, stumps off again, and\npegs his way among the echoes out of doors.\n\nNo gracious ray of light is seen to fall on Florence, kneeling at\nthe altar with her timid head bowed down. The morning luminary is\nbuilt out, and don't shine there. There is a meagre tree outside,\nwhere the sparrows are chirping a little; and there is a blackbird in\nan eyelet-hole of sun in a dyer's garret, over against the window, who\nwhistles loudly whilst the service is performing; and there is the man\nwith the wooden leg stumping away. The amens of the dusty clerk\nappear, like Macbeth's, to stick in his throat a little'; but Captain\nCuttle helps him out, and does it with so much goodwill that he\ninterpolates three entirely new responses of that word, never\nintroduced into the service before.\n\nThey are married, and have signed their names in one of the old\nsneezy registers, and the clergyman's surplice is restored to the\ndust, and the clergymam is gone home. In a dark corner of the dark\nchurch, Florence has turned to Susan Nipper, and is weeping in her\narms. Mr Toots's eyes are red. The Captain lubricates his nose. Uncle\nSol has pulled down his spectacles from his forehead, and walked out\nto the door.\n\n'God bless you, Susan; dearest Susan! If you ever can bear witness\nto the love I have for Walter, and the reason that I have to love him,\ndo it for his sake. Good-bye! Good-bye!'\n\nThey have thought it better not to go back to the Midshipman, but\nto part so; a coach is waiting for them, near at hand.\n\nMiss Nipper cannot speak; she only sobs and chokes, and hugs her\nmistress. Mr Toots advances, urges her to cheer up, and takes charge\nof her. Florence gives him her hand - gives him, in the fulness of her\nheart, her lips - kisses Uncle Sol, and Captain Cuttle, and is borne\naway by her young husband.\n\nBut Susan cannot bear that Florence should go away with a mournful\nrecollection of her. She had meant to be so different, that she\nreproaches herself bitterly. Intent on making one last effort to\nredeem her character, she breaks from Mr Toots and runs away to find\nthe coach, and show a parting smile. The Captain, divining her object,\nsets off after her; for he feels it his duty also to dismiss them with\na cheer, if possible. Uncle Sol and Mr Toots are left behind together,\noutside the church, to wait for them.\n\nThe coach is gone, but the street is steep, and narrow, and blocked\nup, and Susan can see it at a stand-still in the distance, she is\nsure. Captain Cuttle follows her as she flies down the hill, and waves\nhis glazed hat as a general signal, which may attract the right coach\nand which may not.\n\nSusan outstrips the Captain, and comes up with it. She looks in at\nthe window, sees Walter, with the gentle face beside him, and claps\nher hands and screams:\n\n'Miss Floy, my darling! look at me! We are all so happy now, dear!\nOne more good-bye, my precious, one more!'\n\nHow Susan does it, she don't know, but she reaches to the window,\nkisses her, and has her arms about her neck, in a moment.\n\nWe are all so happy now, my dear Miss Floy!' says Susan, with a\nsuspicious catching in her breath. 'You, you won't be angry with me\nnow. Now will you?'\n\n'Angry, Susan!'\n\n'No, no; I am sure you won't. I say you won't, my pet, my dearest!'\nexclaims Susan; 'and here's the Captain too - your friend the Captain,\nyou know - to say good-bye once more!'\n\n'Hooroar, my Heart's Delight!' vociferates the Captain, with a\ncountenance of strong emotion. 'Hooroar, Wal'r my lad. Hooroar!\nHooroar!'\n\nWhat with the young husband at one window, and the young wife at\nthe other; the Captain hanging on at this door, and Susan Nipper\nholding fast by that; the coach obliged to go on whether it will or\nno, and all the other carts and coaches turbulent because it\nhesitates; there never was so much confusion on four wheels. But Susan\nNipper gallantly maintains her point. She keeps a smiling face upon\nher mistress, smiling through her tears, until the last. Even when she\nis left behind, the Captain continues to appear and disappear at the\ndoor, crying 'Hooroar, my lad! Hooroar, my Heart's Delight!' with his\nshirt-collar in a violent state of agitation, until it is hopeless to\nattempt to keep up with the coach any longer. Finally, when the coach\nis gone, Susan Nipper, being rejoined by the Captain, falls into a\nstate of insensibility, and is taken into a baker's shop to recover.\n\nUncle Sol and Mr Toots wait patiently in the churchyard, sitting on\nthe coping-stone of the railings, until Captain Cuttle and Susan come\nback, Neither being at all desirous to speak, or to be spoken to, they\nare excellent company, and quite satisfied. When they all arrive again\nat the little Midshipman, and sit down to breakfast, nobody can touch\na morsel. Captain Cuttle makes a feint of being voracious about toast,\nbut gives it up as a swindle. Mr Toots says, after breakfast, he will\ncome back in the evening; and goes wandering about the town all day,\nwith a vague sensation upon him as if he hadn't been to bed for a\nfortnight.\n\nThere is a strange charm in the house, and in the room, in which\nthey have been used to be together, and out of which so much is gone.\nIt aggravates, and yet it soothes, the sorrow of the separation. Mr\nToots tells Susan Nipper when he comes at night, that he hasn't been\nso wretched all day long, and yet he likes it. He confides in Susan\nNipper, being alone with her, and tells her what his feelings were\nwhen she gave him that candid opinion as to the probability of Miss\nDombey's ever loving him. In the vein of confidence engendered by\nthese common recollections, and their tears, Mr Toots proposes that\nthey shall go out together, and buy something for supper. Miss Nipper\nassenting, they buy a good many little things; and, with the aid of\nMrs Richards, set the supper out quite showily before the Captain and\nold Sol came home.\n\nThe Captain and old Sol have been on board the ship, and have\nestablished Di there, and have seen the chests put aboard. They have\nmuch to tell about the popularity of Walter, and the comforts he will\nhave about him, and the quiet way in which it seems he has been\nworking early and late, to make his cabin what the Captain calls 'a\npicter,' to surprise his little wife. 'A admiral's cabin, mind you,'\nsays the Captain, 'ain't more trim.'\n\nBut one of the Captain's chief delights is, that he knows the big\nwatch, and the sugar-tongs, and tea-spoons, are on board: and again\nand again he murmurs to himself, 'Ed'ard Cuttle, my lad, you never\nshaped a better course in your life than when you made that there\nlittle property over jintly. You see how the land bore, Ed'ard,' says\nthe Captain, 'and it does you credit, my lad.'\n\nThe old Instrument-maker is more distraught and misty than he used\nto be, and takes the marriage and the parting very much to heart. But\nhe is greatly comforted by having his old ally, Ned Cuttle, at his\nside; and he sits down to supper with a grateful and contented face.\n\n'My boy has been preserved and thrives,' says old Sol Gills,\nrubbing his hands. 'What right have I to be otherwise than thankful\nand happy!'\n\nThe Captain, who has not yet taken his seat at the table, but who\nhas been fidgeting about for some time, and now stands hesitating in\nhis place, looks doubtfully at Mr Gills, and says:\n\n'Sol! There's the last bottle of the old Madeira down below. Would\nyou wish to have it up to-night, my boy, and drink to Wal'r and his\nwife?'\n\nThe Instrument-maker, looking wistfully at the Captain, puts his\nhand into the breast-pocket of his coffee-coloured coat, brings forth\nhis pocket-book, and takes a letter out.\n\n'To Mr Dombey,' says the old man. 'From Walter. To be sent in three\nweeks' time. I'll read it.'\n\n'\"Sir. I am married to your daughter. She is gone with me upon a\ndistant voyage. To be devoted to her is to have no claim on her or\nyou, but God knows that I am.\n\n'\"Why, loving her beyond all earthly things, I have yet, without\nremorse, united her to the uncertainties and dangers of my life, I\nwill not say to you. You know why, and you are her father.\n\n'\"Do not reproach her. She has never reproached you.\n\n'\"I do not think or hope that you will ever forgive me. There is\nnothing I expect less. But if an hour should come when it will comfort\nyou to believe that Florence has someone ever near her, the great\ncharge of whose life is to cancel her remembrance of past sorrow, I\nsolemnly assure you, you may, in that hour, rest in that belief.\"'\n\nSolomon puts back the letter carefully in his pocket-book, and puts\nback his pocket-book in his coat.\n\n'We won't drink the last bottle of the old Madeira yet, Ned,' says\nthe old man thoughtfully. 'Not yet.\n\n'Not yet,' assents the Captain. 'No. Not yet.'\n\nSusan and Mr Toots are of the same opinion. After a silence they\nall sit down to supper, and drink to the young husband and wife in\nsomething else; and the last bottle of the old Madeira still remains\namong its dust and cobwebs, undisturbed.\n\n\nA few days have elapsed, and a stately ship is out at sea,\nspreading its white wings to the favouring wind.\n\nUpon the deck, image to the roughest man on board of something that\nis graceful, beautiful, and harmless - something that it is good and\npleasant to have there, and that should make the voyage prosperous -\nis Florence. It is night, and she and Walter sit alone, watching the\nsolemn path of light upon the sea between them and the moon.\n\nAt length she cannot see it plainly, for the tears that fill her\neyes; and then she lays her head down on his breast, and puts her arms\naround his neck, saying, 'Oh Walter, dearest love, I am so happy!'\n\nHer husband holds her to his heart, and they are very quiet, and\nthe stately ship goes on serenely.\n\n'As I hear the sea,' says Florence, 'and sit watching it, it brings\nso many days into my mind. It makes me think so much - '\n\n'Of Paul, my love. I know it does.'\n\nOf Paul and Walter. And the voices in the waves are always\nwhispering to Florence, in their ceaseless murmuring, of love - of\nlove, eternal and illimitable, not bounded by the confines of this\nworld, or by the end of time, but ranging still, beyond the sea,\nbeyond the sky, to the invisible country far away!\n\n\nCHAPTER 58.\n\nAfter a Lapse\n\n\n\nThe sea had ebbed and flowed, through a whole year. Through a whole\nyear, the winds and clouds had come and gone; the ceaseless work of\nTime had been performed, in storm and sunshine. Through a whole year,\nthe tides of human chance and change had set in their allotted\ncourses. Through a whole year, the famous House of Dombey and Son had\nfought a fight for life, against cross accidents, doubtful rumours,\nunsuccessful ventures, unpropitious times, and most of all, against\nthe infatuation of its head, who would not contract its enterprises by\na hair's breadth, and would not listen to a word of warning that the\nship he strained so hard against the storm, was weak, and could not\nbear it. The year was out, and the great House was down.\n\nOne summer afternoon; a year, wanting some odd days, after the\nmarriage in the City church; there was a buzz and whisper upon 'Change\nof a great failure. A certain cold proud man, well known there, was\nnot there, nor was he represented there. Next day it was noised abroad\nthat Dombey and Son had stopped, and next night there was a List of\nBankrupts published, headed by that name.\n\nThe world was very busy now, in sooth, and had a deal to say. It\nwas an innocently credulous and a much ill-used world. It was a world\nin which there was 'no other sort of bankruptcy whatever. There were\nno conspicuous people in it, trading far and wide on rotten banks of\nreligion, patriotism, virtue, honour. There was no amount worth\nmentioning of mere paper in circulation, on which anybody lived pretty\nhandsomely, promising to pay great sums of goodness with no effects.\nThere were no shortcomings anywhere, in anything but money. The world\nwas very angry indeed; and the people especially, who, in a worse\nworld, might have been supposed to be apt traders themselves in shows\nand pretences, were observed to be mightily indignant.\n\nHere was a new inducement to dissipation, presented to that sport\nof circumstances, Mr Perch the Messenger! It was apparently the fate\nof Mr Perch to be always waking up, and finding himself famous. He had\nbut yesterday, as one might say, subsided into private life from the\ncelebrity of the elopement and the events that followed it; and now he\nwas made a more important man than ever, by the bankruptcy. Gliding\nfrom his bracket in the outer office where he now sat, watching the\nstrange faces of accountants and others, who quickly superseded nearly\nall the old clerks, Mr Perch had but to show himself in the court\noutside, or, at farthest, in the bar of the King's Arms, to be asked a\nmultitude of questions, almost certain to include that interesting\nquestion, what would he take to drink? Then would Mr Perch descant\nupon the hours of acute uneasiness he and Mrs Perch had suffered out\nat Balls Pond, when they first suspected 'things was going wrong.'\nThen would Mr Perch relate to gaping listeners, in a low voice, as if\nthe corpse of the deceased House were lying unburied in the next room,\nhow Mrs Perch had first come to surmise that things was going wrong by\nhearing him (Perch) moaning in his sleep, 'twelve and ninepence in the\npound, twelve and ninepence in the pound!' Which act of somnambulism\nhe supposed to have originated in the impression made upon him by the\nchange in Mr Dombey's face. Then would he inform them how he had once\nsaid, 'Might I make so bold as ask, Sir, are you unhappy in your\nmind?' and how Mr Dombey had replied, 'My faithful Perch - but no, it\ncannot be!' and with that had struck his hand upon his forehead, and\nsaid, 'Leave me, Perch!' Then, in short, would Mr Perch, a victim to\nhis position, tell all manner of lies; affecting himself to tears by\nthose that were of a moving nature, and really believing that the\ninventions of yesterday had, on repetition, a sort of truth about them\nto-day.\n\nMr Perch always closed these conferences by meekly remarking, That,\nof course, whatever his suspicions might have been (as if he had ever\nhad any!) it wasn't for him to betray his trust, was it? Which\nsentiment (there never being any creditors present) was received as\ndoing great honour to his feelings. Thus, he generally brought away a\nsoothed conscience and left an agreeable impression behind him, when\nhe returned to his bracket: again to sit watching the strange faces of\nthe accountants and others, making so free with the great mysteries,\nthe Books; or now and then to go on tiptoe into Mr Dombey's empty\nroom, and stir the fire; or to take an airing at the door, and have a\nlittle more doleful chat with any straggler whom he knew; or to\npropitiate, with various small attentions, the head accountant: from\nwhom Mr Perch had expectations of a messengership in a Fire Office,\nwhen the affairs of the House should be wound up.\n\nTo Major Bagstock, the bankruptcy was quite a calamity. The Major\nwas not a sympathetic character - his attention being wholly\nconcentrated on J. B. - nor was he a man subject to lively emotions,\nexcept in the physical regards of gasping and choking. But he had so\nparaded his friend Dombey at the club; had so flourished him at the\nheads of the members in general, and so put them down by continual\nassertion of his riches; that the club, being but human, was delighted\nto retort upon the Major, by asking him, with a show of great concern,\nwhether this tremendous smash had been at all expected, and how his\nfriend Dombey bore it. To such questions, the Major, waxing very\npurple, would reply that it was a bad world, Sir, altogether; that\nJoey knew a thing or two, but had been done, Sir, done like an infant;\nthat if you had foretold this, Sir, to J. Bagstock, when he went\nabroad with Dombey and was chasing that vagabond up and down France,\nJ. Bagstock would have pooh-pooh'd you - would have pooh- pooh'd you,\nSir, by the Lord! That Joe had been deceived, Sir, taken in,\nhoodwinked, blindfolded, but was broad awake again and staring;\ninsomuch, Sir, that if Joe's father were to rise up from the grave\nto-morrow, he wouldn't trust the old blade with a penny piece, but\nwould tell him that his son Josh was too old a soldier to be done\nagain, Sir. That he was a suspicious, crabbed, cranky, used-up, J. B.\ninfidel, Sir; and that if it were consistent with the dignity of a\nrough and tough old Major, of the old school, who had had the honour\nof being personally known to, and commended by, their late Royal\nHighnesses the Dukes of Kent and York, to retire to a tub and live in\nit, by Gad! Sir, he'd have a tub in Pall Mall to-morrow, to show his\ncontempt for mankind!'\n\nOf all this, and many variations of the same tune, the Major would\ndeliver himself with so many apoplectic symptoms, such rollings of his\nhead, and such violent growls of ill usage and resentment, that the\nyounger members of the club surmised he had invested money in his\nfriend Dombey's House, and lost it; though the older soldiers and\ndeeper dogs, who knew Joe better, wouldn't hear of such a thing. The\nunfortunate Native, expressing no opinion, suffered dreadfully; not\nmerely in his moral feelings, which were regularly fusilladed by the\nMajor every hour in the day, and riddled through and through, but in\nhis sensitiveness to bodily knocks and bumps, which was kept\ncontinually on the stretch. For six entire weeks after the bankruptcy,\nthis miserable foreigner lived in a rainy season of boot-jacks and\nbrushes.\n\nMrs Chick had three ideas upon the subject of the terrible reverse.\nThe first was that she could not understand it. The second, that her\nbrother had not made an effort. The third, that if she had been\ninvited to dinner on the day of that first party, it never would have\nhappened; and that she had said so, at the time.\n\nNobody's opinion stayed the misfortune, lightened it, or made it\nheavier. It was understood that the affairs of the House were to be\nwound up as they best could be; that Mr Dombey freely resigned\neverything he had, and asked for no favour from anyone. That any\nresumption of the business was out of the question, as he would listen\nto no friendly negotiation having that compromise in view; that he had\nrelinquished every post of trust or distinction he had held, as a man\nrespected among merchants; that he was dying, according to some; that\nhe was going melancholy mad, according to others; that he was a broken\nman, according to all.\n\nThe clerks dispersed after holding a little dinner of condolence\namong themselves, which was enlivened by comic singing, and went off\nadmirably. Some took places abroad, and some engaged in other Houses\nat home; some looked up relations in the country, for whom they\nsuddenly remembered they had a particular affection; and some\nadvertised for employment in the newspapers. Mr Perch alone remained\nof all the late establishment, sitting on his bracket looking at the\naccountants, or starting off it, to propitiate the head accountant,\nwho was to get him into the Fire Office. The Counting House soon got\nto be dirty and neglected. The principal slipper and dogs' collar\nseller, at the corner of the court, would have doubted the propriety\nof throwing up his forefinger to the brim of his hat, any more, if Mr\nDombey had appeared there now; and the ticket porter, with his hands\nunder his white apron, moralised good sound morality about ambition,\nwhich (he observed) was not, in his opinion, made to rhyme to\nperdition, for nothing.\n\nMr Morfin, the hazel-eyed bachelor, with the hair and whiskers\nsprinkled with grey, was perhaps the only person within the atmosphere\nof the House - its head, of course, excepted - who was heartily and\ndeeply affected by the disaster that had befallen it. He had treated\nMr Dombey with due respect and deference through many years, but he\nhad never disguised his natural character, or meanly truckled to him,\nor pampered his master passion for the advancement of his own\npurposes. He had, therefore, no self-disrespect to avenge; no\nlong-tightened springs to release with a quick recoil. He worked early\nand late to unravel whatever was complicated or difficult in the\nrecords of the transactions of the House; was always in attendance to\nexplain whatever required explanation; sat in his old room sometimes\nvery late at night, studying points by his mastery of which he could\nspare Mr Dombey the pain of being personally referred to; and then\nwould go home to Islington, and calm his mind by producing the most\ndismal and forlorn sounds out of his violoncello before going to bed.\n\nHe was solacing himself with this melodious grumbler one evening,\nand, having been much dispirited by the proceedings of the day, was\nscraping consolation out of its deepest notes, when his landlady (who\nwas fortunately deaf, and had no other consciousness of these\nperformances than a sensation of something rumbling in her bones)\nannounced a lady.\n\n'In mourning,' she said.\n\nThe violoncello stopped immediately; and the performer, laying it\non the sofa with great tenderness and care, made a sign that the lady\nwas to come in. He followed directly, and met Harriet Carker on the\nstair.\n\n'Alone!' he said, 'and John here this morning! Is there anything\nthe matter, my dear? But no,' he added, 'your face tells quite another\nstory.'\n\n'I am afraid it is a selfish revelation that you see there, then,'\nshe answered.\n\n'It is a very pleasant one,' said he; 'and, if selfish, a novelty\ntoo, worth seeing in you. But I don't believe that.'\n\nHe had placed a chair for her by this time, and sat down opposite;\nthe violoncello lying snugly on the sofa between them.\n\n'You will not be surprised at my coming alone, or at John's not\nhaving told you I was coming,' said Harriet; 'and you will believe\nthat, when I tell you why I have come. May I do so now?'\n\n'You can do nothing better.'\n\n'You were not busy?'\n\nHe pointed to the violoncello lying on the sofa, and said 'I have\nbeen, all day. Here's my witness. I have been confiding all my cares\nto it. I wish I had none but my own to tell.'\n\n'Is the House at an end?' said Harriet, earnestly.\n\n'Completely at an end.'\n\n'Will it never be resumed?'\n\n'Never.'\n\nThe bright expression of her face was not overshadowed as her lips\nsilently repeated the word. He seemed to observe this with some little\ninvoluntary surprise: and said again:\n\n'Never. You remember what I told you. It has been, all along,\nimpossible to convince him; impossible to reason with him; sometimes,\nimpossible even to approach him. The worst has happened; and the House\nhas fallen, never to be built up any more.'\n\n'And Mr Dombey, is he personally ruined?'\n\n'Ruined.'\n\n'Will he have no private fortune left? Nothing?'\n\nA certain eagerness in her voice, and something that was almost\njoyful in her look, seemed to surprise him more and more; to\ndisappoint him too, and jar discordantly against his own emotions. He\ndrummed with the fingers of one hand on the table, looking wistfully\nat her, and shaking his head, said, after a pause:\n\n'The extent of Mr Dombey's resources is not accurately within my\nknowledge; but though they are doubtless very large, his obligations\nare enormous. He is a gentleman of high honour and integrity. Any man\nin his position could, and many a man in his position would, have\nsaved himself, by making terms which would have very slightly, almost\ninsensibly, increased the losses of those who had had dealings with\nhim, and left him a remnant to live upon. But he is resolved on\npayment to the last farthing of his means. His own words are, that\nthey will clear, or nearly clear, the House, and that no one can lose\nmuch. Ah, Miss Harriet, it would do us no harm to remember oftener\nthan we do, that vices are sometimes only virtues carried to excess!\nHis pride shows well in this.'\n\nShe heard him with little or no change in her expression, and with\na divided attention that showed her to be busy with something in her\nown mind. When he was silent, she asked him hurriedly:\n\n'Have you seen him lately?'\n\n'No one sees him. When this crisis of his affairs renders it\nnecessary for him to come out of his house, he comes out for the\noccasion, and again goes home, and shuts himself up, and will sea no\none. He has written me a letter, acknowledging our past connexion in\nhigher terms than it deserved, and parting from me. I am delicate of\nobtruding myself upon him now, never having had much intercourse with\nhim in better times; but I have tried to do so. I have written, gone\nthere, entreated. Quite in vain.'\n\nHe watched her, as in the hope that she would testify some greater\nconcern than she had yet shown; and spoke gravely and feelingly, as if\nto impress her the more; but there was no change in her.\n\n'Well, well, Miss Harriet,' he said, with a disappointed air, 'this\nis not to the purpose. You have not come here to hear this. Some other\nand pleasanter theme is in your mind. Let it be in mine, too, and we\nshall talk upon more equal terms. Come!'\n\n'No, it is the same theme,' returned Harriet, with frank and quick\nsurprise. 'Is it not likely that it should be? Is it not natural that\nJohn and I should have been thinking and speaking very much of late of\nthese great changes? Mr Dombey, whom he served so many years - you\nknow upon what terms - reduced, as you describe; and we quite rich!'\n\nGood, true face, as that face of hers was, and pleasant as it had\nbeen to him, Mr Morfin, the hazel-eyed bachelor, since the first time\nhe had ever looked upon it, it pleased him less at that moment,\nlighted with a ray of exultation, than it had ever pleased him before.\n\n'I need not remind you,' said Harriet, casting down her eyes upon\nher black dress, 'through what means our circumstances changed. You\nhave not forgotten that our brother James, upon that dreadful day,\nleft no will, no relations but ourselves.'\n\nThe face was pleasanter to him now, though it was pale and\nmelancholy, than it had been a moment since. He seemed to breathe more\ncheerily.\n\n'You know,' she said, 'our history, the history of both my\nbrothers, in connexion with the unfortunate, unhappy gentleman, of\nwhom you have spoken so truly. You know how few our wants are - John's\nand mine - and what little use we have for money, after the life we\nhave led together for so many years; and now that he is earning an\nincome that is ample for us, through your kindness. You are not\nunprepared to hear what favour I have come to ask of you?'\n\n'I hardly know. I was, a minute ago. Now, I think, I am not.'\n\n'Of my dead brother I say nothing. If the dead know what we do -\nbut you understand me. Of my living brother I could say much; but what\nneed I say more, than that this act of duty, in which I have come to\nask your indispensable assistance, is his own, and that he cannot rest\nuntil it is performed!'\n\nShe raised her eyes again; and the light of exultation in her face\nbegan to appear beautiful, in the observant eyes that watched her.\n\n'Dear Sir,' she went on to say, 'it must be done very quietly and\nsecretly. Your experience and knowledge will point out a way of doing\nit. Mr Dombey may, perhaps, be led to believe that it is something\nsaved, unexpectedly, from the wreck of his fortunes; or that it is a\nvoluntary tribute to his honourable and upright character, from some\nof those with whom he has had great dealings; or that it is some old\nlost debt repaid. There must be many ways of doing it. I know you will\nchoose the best. The favour I have come to ask is, that you will do it\nfor us in your own kind, generous, considerate manner. That you will\nnever speak of it to John, whose chief happiness in this act of\nrestitution is to do it secretly, unknown, and unapproved of: that\nonly a very small part of the inheritance may be reserved to us, until\nMr Dombey shall have possessed the interest of the rest for the\nremainder of his life; that you will keep our secret, faithfully - but\nthat I am sure you will; and that, from this time, it may seldom be\nwhispered, even between you and me, but may live in my thoughts only\nas a new reason for thankfulness to Heaven, and joy and pride in my\nbrother.'\n\nSuch a look of exultation there may be on Angels' faces when the\none repentant sinner enters Heaven, among ninety-nine just men. It was\nnot dimmed or tarnished by the joyful tears that filled her eyes, but\nwas the brighter for them.\n\n'My dear Harriet,' said Mr Morfin, after a silence, 'I was not\nprepared for this. Do I understand you that you wish to make your own\npart in the inheritance available for your good purpose, as well as\nJohn's?'\n\n'Oh, yes,' she returned 'When we have shared everything together\nfor so long a time, and have had no care, hope, or purpose apart,\ncould I bear to be excluded from my share in this? May I not urge a\nclaim to be my brother's partner and companion to the last?'\n\n'Heaven forbid that I should dispute it!' he replied.\n\n'We may rely on your friendly help?' she said. 'I knew we might!'\n\n'I should be a worse man than, - than I hope I am, or would\nwillingly believe myself, if I could not give you that assurance from\nmy heart and soul. You may, implicitly. Upon my honour, I will keep\nyour secret. And if it should be found that Mr Dombey is so reduced as\nI fear he will be, acting on a determination that there seem to be no\nmeans of influencing, I will assist you to accomplish the design, on\nwhich you and John are jointly resolved.'\n\nShe gave him her hand, and thanked him with a cordial, happy face.\n\n'Harriet,' he said, detaining it in his. 'To speak to you of the\nworth of any sacrifice that you can make now - above all, of any\nsacrifice of mere money - would be idle and presumptuous. To put\nbefore you any appeal to reconsider your purpose or to set narrow\nlimits to it, would be, I feel, not less so. I have no right to mar\nthe great end of a great history, by any obtrusion of my own weak\nself. I have every right to bend my head before what you confide to\nme, satisfied that it comes from a higher and better source of\ninspiration than my poor worldly knowledge. I will say only this: I am\nyour faithful steward; and I would rather be so, and your chosen\nfriend, than I would be anybody in the world, except yourself.'\n\nShe thanked him again, cordially, and wished him good-night. 'Are\nyou going home?' he said. 'Let me go with you.'\n\n'Not to-night. I am not going home now; I have a visit to make\nalone. Will you come to-morrow?'\n\n'Well, well,' said he, 'I'll come to-morrow. In the meantime, I'll\nthink of this, and how we can best proceed. And perhaps I'll think of\nit, dear Harriet, and - and - think of me a little in connexion with\nit.'\n\nHe handed her down to a coach she had in waiting at the door; and\nif his landlady had not been deaf, she would have heard him muttering\nas he went back upstairs, when the coach had driven off, that we were\ncreatures of habit, and it was a sorrowful habit to be an old\nbachelor.\n\nThe violoncello lying on the sofa between the two chairs, he took\nit up, without putting away the vacant chair, and sat droning on it,\nand slowly shaking his head at the vacant chair, for a long, long\ntime. The expression he communicated to the instrument at first,\nthough monstrously pathetic and bland, was nothing to the expression\nhe communicated to his own face, and bestowed upon the empty chair:\nwhich was so sincere, that he was obliged to have recourse to Captain\nCuttle's remedy more than once, and to rub his face with his sleeve.\nBy degrees, however, the violoncello, in unison with his own frame of\nmind, glided melodiously into the Harmonious Blacksmith, which he\nplayed over and over again, until his ruddy and serene face gleamed\nlike true metal on the anvil of a veritable blacksmith. In fine, the\nvioloncello and the empty chair were the companions of his\nbachelorhood until nearly midnight; and when he took his supper, the\nvioloncello set up on end in the sofa corner, big with the latent\nharmony of a whole foundry full of harmonious blacksmiths, seemed to\nogle the empty chair out of its crooked eyes, with unutterable\nintelligence.\n\nWhen Harriet left the house, the driver of her hired coach, taking\na course that was evidently no new one to him, went in and out by\nbye-ways, through that part of the suburbs, until he arrived at some\nopen ground, where there were a few quiet little old houses standing\namong gardens. At the garden-gate of one of these he stopped, and\nHarriet alighted.\n\nHer gentle ringing at the bell was responded to by a\ndolorous-looking woman, of light complexion, with raised eyebrows, and\nhead drooping on one side, who curtseyed at sight of her, and\nconducted her across the garden to the house.\n\n'How is your patient, nurse, to-night?' said Harriet.\n\n'In a poor way, Miss, I am afraid. Oh how she do remind me,\nsometimes, of my Uncle's Betsey Jane!' returned the woman of the light\ncomplexion, in a sort of doleful rapture.\n\n'In what respect?' asked Harriet.\n\n'Miss, in all respects,' replied the other, 'except that she's\ngrown up, and Betsey Jane, when at death's door, was but a child.'\n\n'But you have told me she recovered,' observed Harriet mildly; 'so\nthere is the more reason for hope, Mrs Wickam.'\n\n'Ah, Miss, hope is an excellent thing for such as has the spirits\nto bear it!' said Mrs Wickam, shaking her head. 'My own spirits is not\nequal to it, but I don't owe it any grudge. I envys them that is so\nblest!'\n\n'You should try to be more cheerful,' remarked Harriet.\n\n'Thank you, Miss, I'm sure,' said Mrs Wickam grimly. 'If I was so\ninclined, the loneliness of this situation - you'll excuse my speaking\nso free - would put it out of my power, in four and twenty hours; but\nI ain't at all. I'd rather not. The little spirits that I ever had, I\nwas bereaved of at Brighton some few years ago, and I think I feel\nmyself the better for it.'\n\nIn truth, this was the very Mrs Wickam who had superseded Mrs\nRichards as the nurse of little Paul, and who considered herself to\nhave gained the loss in question, under the roof of the amiable\nPipchin. The excellent and thoughtful old system, hallowed by long\nprescription, which has usually picked out from the rest of mankind\nthe most dreary and uncomfortable people that could possibly be laid\nhold of, to act as instructors of youth, finger-posts to the virtues,\nmatrons, monitors, attendants on sick beds, and the like, had\nestablished Mrs Wickam in very good business as a nurse, and had led\nto her serious qualities being particularly commended by an admiring\nand numerous connexion.\n\nMrs Wickam, with her eyebrows elevated, and her head on one side,\nlighted the way upstairs to a clean, neat chamber, opening on another\nchamber dimly lighted, where there was a bed. In the first room, an\nold woman sat mechanically staring out at the open window, on the\ndarkness. In the second, stretched upon the bed, lay the shadow of a\nfigure that had spurned the wind and rain, one wintry night; hardly to\nbe recognised now, but by the long black hair that showed so very\nblack against the colourless face, and all the white things about it.\n\nOh, the strong eyes, and the weak frame! The eyes that turned so\neagerly and brightly to the door when Harriet came in; the feeble head\nthat could not raise itself, and moved so slowly round upon its\npillow!\n\n'Alice!' said the visitor's mild voice, 'am I late to-night?'\n\n'You always seem late, but are always early.'\n\nHarriet had sat down by the bedside now, and put her hand upon the\nthin hand lying there.\n\n'You are better?'\n\nMrs Wickam, standing at the foot of the bed, like a disconsolate\nspectre, most decidedly and forcibly shook her head to negative this\nposition.\n\n'It matters very little!' said Alice, with a faint smile. 'Better\nor worse to-day, is but a day's difference - perhaps not so much.'\n\nMrs Wickam, as a serious character, expressed her approval with a\ngroan; and having made some cold dabs at the bottom of the bedclothes,\nas feeling for the patient's feet and expecting to find them stony;\nwent clinking among the medicine bottles on the table, as who should\nsay, 'while we are here, let us repeat the mixture as before.'\n\n'No,' said Alice, whispering to her visitor, 'evil courses, and\nremorse, travel, want, and weather, storm within, and storm without,\nhave worn my life away. It will not last much longer.\n\nShe drew the hand up as she spoke, and laid her face against it.\n\n'I lie here, sometimes, thinking I should like to live until I had\nhad a little time to show you how grateful I could be! It is a\nweakness, and soon passes. Better for you as it is. Better for me!'\n\nHow different her hold upon the hand, from what it had been when\nshe took it by the fireside on the bleak winter evening! Scorn, rage,\ndefiance, recklessness, look here! This is the end.\n\nMrs Wickam having clinked sufficiently among the bottles, now\nproduced the mixture. Mrs Wickam looked hard at her patient in the act\nof drinking, screwed her mouth up tight, her eyebrows also, and shook\nher head, expressing that tortures shouldn't make her say it was a\nhopeless case. Mrs Wickam then sprinkled a little cooling-stuff about\nthe room, with the air of a female grave-digger, who was strewing\nashes on ashes, dust on dust - for she was a serious character - and\nwithdrew to partake of certain funeral baked meats downstairs.\n\n'How long is it,' asked Alice, 'since I went to you and told you\nwhat I had done, and when you were advised it was too late for anyone\nto follow?'\n\n'It is a year and more,' said Harriet.\n\n'A year and more,' said Alice, thoughtfully intent upon her face.\n'Months upon months since you brought me here!'\n\nHarriet answered 'Yes.'\n\n'Brought me here, by force of gentleness and kindness. Me!' said\nAlice, shrinking with her face behind her hand, 'and made me human by\nwoman's looks and words, and angel's deeds!'\n\nHarriet bending over her, composed and soothed her. By and bye,\nAlice lying as before, with the hand against her face, asked to have\nher mother called.\n\nHarriet called to her more than once, but the old woman was so\nabsorbed looking out at the open window on the darkness, that she did\nnot hear. It was not until Harriet went to her and touched her, that\nshe rose up, and came.\n\n'Mother,' said Alice, taking the hand again, and fixing her\nlustrous eyes lovingly upon her visitor, while she merely addressed a\nmotion of her finger to the old woman, 'tell her what you know.'\n\n'To-night, my deary?'\n\n'Ay, mother,' answered Alice, faintly and solemnly, 'to-night!'\n\nThe old woman, whose wits appeared disorderly by alarm, remorse, or\ngrief, came creeping along the side of the bed, opposite to that on\nwhich Harriet sat; and kneeling down, so as to bring her withered face\nupon a level with the coverlet, and stretching out her hand, so as to\ntouch her daughter's arm, began:\n\n'My handsome gal - '\n\nHeaven, what a cry was that, with which she stopped there, gazing\nat the poor form lying on the bed!\n\n'Changed, long ago, mother! Withered, long ago,' said Alice,\nwithout looking at her. 'Don't grieve for that now.\n\n'My daughter,' faltered the old woman, 'my gal who'll soon get\nbetter, and shame 'em all with her good looks.'\n\nAlice smiled mournfully at Harriet, and fondled her hand a little\ncloser, but said nothing.\n\n'Who'll soon get better, I say,' repeated the old woman, menacing\nthe vacant air with her shrivelled fist, 'and who'll shame 'em all\nwith her good looks - she will. I say she will! she shall!' - as if\nshe were in passionate contention with some unseen opponent at the\nbedside, who contradicted her - 'my daughter has been turned away\nfrom, and cast out, but she could boast relationship to proud folks\ntoo, if she chose. Ah! To proud folks! There's relationship without\nyour clergy and your wedding rings - they may make it, but they can't\nbreak it - and my daughter's well related. Show me Mrs Dombey, and\nI'll show you my Alice's first cousin.'\n\nHarriet glanced from the old woman to the lustrous eyes intent upon\nher face, and derived corroboration from them.\n\n'What!' cried the old woman, her nodding head bridling with a\nghastly vanity. 'Though I am old and ugly now, - much older by life\nand habit than years though, - I was once as young as any. Ah! as\npretty too, as many! I was a fresh country wench in my time, darling,'\nstretching out her arm to Harriet, across the bed, 'and looked it,\ntoo. Down in my country, Mrs Dombey's father and his brother were the\ngayest gentlemen and the best-liked that came a visiting from London -\nthey have long been dead, though! Lord, Lord, this long while! The\nbrother, who was my Ally's father, longest of the two.'\n\nShe raised her head a little, and peered at her daughter's face; as\nif from the remembrance of her own youth, she had flown to the\nremembrance of her child's. Then, suddenly, she laid her face down on\nthe bed, and shut her head up in her hands and arms.\n\n'They were as like,' said the old woman, without looking up, as you\ncould see two brothers, so near an age - there wasn't much more than a\nyear between them, as I recollect - and if you could have seen my gal,\nas I have seen her once, side by side with the other's daughter, you'd\nhave seen, for all the difference of dress and life, that they were\nlike each other. Oh! is the likeness gone, and is it my gal - only my\ngal - that's to change so!'\n\n'We shall all change, mother, in our turn,' said Alice.\n\n'Turn!' cried the old woman, 'but why not hers as soon as my gal's!\nThe mother must have changed - she looked as old as me, and full as\nwrinkled through her paint - but she was handsome. What have I done,\nI, what have I done worse than her, that only my gal is to lie there\nfading!' With another of those wild cries, she went running out into\nthe room from which she had come; but immediately, in her uncertain\nmood, returned, and creeping up to Harriet, said:\n\n'That's what Alice bade me tell you, deary. That's all. I found it\nout when I began to ask who she was, and all about her, away in\nWarwickshire there, one summer-time. Such relations was no good to me,\nthen. They wouldn't have owned me, and had nothing to give me. I\nshould have asked 'em, maybe, for a little money, afterwards, if it\nhadn't been for my Alice; she'd a'most have killed me, if I had, I\nthink She was as proud as t'other in her way,' said the old woman,\ntouching the face of her daughter fearfully, and withdrawing her hand,\n'for all she's so quiet now; but she'll shame 'em with her good looks\nyet. Ha, ha! She'll shame 'em, will my handsome daughter!'\n\nHer laugh, as she retreated, was worse than her cry; worse than the\nburst of imbecile lamentation in which it ended; worse than the doting\nair with which she sat down in her old seat, and stared out at the\ndarkness.\n\nThe eyes of Alice had all this time been fixed on Harriet, whose\nhand she had never released. She said now:\n\n'I have felt, lying here, that I should like you to know this. It\nmight explain, I have thought, something that used to help to harden\nme. I had heard so much, in my wrongdoing, of my neglected duty, that\nI took up with the belief that duty had not been done to me, and that\nas the seed was sown, the harvest grew. I somehow made it out that\nwhen ladies had bad homes and mothers, they went wrong in their way,\ntoo; but that their way was not so foul a one as mine, and they had\nneed to bless God for it.' That is all past. It is like a dream, now,\nwhich I cannot quite remember or understand. It has been more and more\nlike a dream, every day, since you began to sit here, and to read to\nme. I only tell it you, as I can recollect it. Will you read to me a\nlittle more?'\n\nHarriet was withdrawing her hand to open the book, when Alice\ndetained it for a moment.\n\n'You will not forget my mother? I forgive her, if I have any cause.\nI know that she forgives me, and is sorry in her heart. You will not\nforget her?'\n\n'Never, Alice!'\n\n'A moment yet. Lay your head so, dear, that as you read I may see\nthe words in your kind face.'\n\nHarriet complied and read - read the eternal book for all the\nweary, and the heavy-laden; for all the wretched, fallen, and\nneglected of this earth - read the blessed history, in which the blind\nlame palsied beggar, the criminal, the woman stained with shame, the\nshunned of all our dainty clay, has each a portion, that no human\npride, indifference, or sophistry, through all the ages that this\nworld shall last, can take away, or by the thousandth atom of a grain\nreduce - read the ministry of Him who, through the round of human\nlife, and all its hopes and griefs, from birth to death, from infancy\nto age, had sweet compassion for, and interest in, its every scene and\nstage, its every suffering and sorrow.\n\n'I shall come,' said Harriet, when she shut the book, 'very early\nin the morning.'\n\nThe lustrous eyes, yet fixed upon her face, closed for a moment,\nthen opened; and Alice kissed and blest her.\n\nThe same eyes followed her to the door; and in their light, and on\nthe tranquil face, there was a smile when it was closed.\n\nThey never turned away. She laid her hand upon her breast,\nmurmuring the sacred name that had been read to her; and life passed\nfrom her face, like light removed.\n\nNothing lay there, any longer, but the ruin of the mortal house on\nwhich the rain had beaten, and the black hair that had fluttered in\nthe wintry wind.\n\n\nCHAPTER 59.\n\nRetribution\n\n\nChanges have come again upon the great house in the long dull\nstreet, once the scene of Florence's childhood and loneliness. It is a\ngreat house still, proof against wind and weather, without breaches in\nthe roof, or shattered windows, or dilapidated walls; but it is a ruin\nnone the less, and the rats fly from it.\n\nMr Towlinson and company are, at first, incredulous in respect of\nthe shapeless rumours that they hear. Cook says our people's credit\nain't so easy shook as that comes to, thank God; and Mr Towlinson\nexpects to hear it reported next, that the Bank of England's a-going\nto break, or the jewels in the Tower to be sold up. But, next come the\nGazette, and Mr Perch; and Mr Perch brings Mrs Perch to talk it over\nin the kitchen, and to spend a pleasant evening.\n\nAs soon as there is no doubt about it, Mr Towlinson's main anxiety\nis that the failure should be a good round one - not less than a\nhundred thousand pound. Mr Perch don't think himself that a hundred\nthousand pound will nearly cover it. The women, led by Mrs Perch and\nCook, often repeat 'a hun-dred thou-sand pound!' with awful\nsatisfaction - as if handling the words were like handling the money;\nand the housemaid, who has her eye on Mr Towlinson, wishes she had\nonly a hundredth part of the sum to bestow on the man of her choice.\nMr Towlinson, still mindful of his old wrong, opines that a foreigner\nwould hardly know what to do with so much money, unless he spent it on\nhis whiskers; which bitter sarcasm causes the housemaid to withdraw in\ntears.\n\nBut not to remain long absent; for Cook, who has the reputation of\nbeing extremely good-hearted, says, whatever they do, let 'em stand by\none another now, Towlinson, for there's no telling how soon they may\nbe divided. They have been in that house (says Cook) through a\nfuneral, a wedding, and a running-away; and let it not be said that\nthey couldn't agree among themselves at such a time as the present.\nMrs Perch is immensely affected by this moving address, and openly\nremarks that Cook is an angel. Mr Towlinson replies to Cook, far be it\nfrom him to stand in the way of that good feeling which he could wish\nto see; and adjourning in quest of the housemaid, and presently\nreturning with that young lady on his arm, informs the kitchen that\nforeigners is only his fun, and that him and Anne have now resolved to\ntake one another for better for worse, and to settle in Oxford Market\nin the general greengrocery and herb and leech line, where your kind\nfavours is particular requested. This announcement is received with\nacclamation; and Mrs Perch, projecting her soul into futurity, says,\n'girls,' in Cook's ear, in a solemn whisper.\n\nMisfortune in the family without feasting, in these lower regions,\ncouldn't be. Therefore Cook tosses up a hot dish or two for supper,\nand Mr Towlinson compounds a lobster salad to be devoted to the same\nhospitable purpose. Even Mrs Pipchin, agitated by the occasion, rings\nher bell, and sends down word that she requests to have that little\nbit of sweetbread that was left, warmed up for her supper, and sent to\nher on a tray with about a quarter of a tumbler-full of mulled sherry;\nfor she feels poorly.\n\nThere is a little talk about Mr Dombey, but very little. It is\nchiefly speculation as to how long he has known that this was going to\nhappen. Cook says shrewdly, 'Oh a long time, bless you! Take your oath\nof that.' And reference being made to Mr Perch, he confirms her view\nof the case. Somebody wonders what he'll do, and whether he'll go out\nin any situation. Mr Towlinson thinks not, and hints at a refuge in\none of them genteel almshouses of the better kind. 'Ah, where he'll\nhave his little garden, you know,' says Cook plaintively, 'and bring\nup sweet peas in the spring.' 'Exactly so,' says Mr Towlinson, 'and be\none of the Brethren of something or another.' 'We are all brethren,'\nsays Mrs Perch, in a pause of her drink. 'Except the sisters,' says Mr\nPerch. 'How are the mighty fallen!' remarks Cook. 'Pride shall have a\nfall, and it always was and will be so!' observes the housemaid.\n\nIt is wonderful how good they feel, in making these reflections;\nand what a Christian unanimity they are sensible of, in bearing the\ncommon shock with resignation. There is only one interruption to this\nexcellent state of mind, which is occasioned by a young kitchen-maid\nof inferior rank - in black stockings - who, having sat with her mouth\nopen for a long time, unexpectedly discharges from it words to this\neffect, 'Suppose the wages shouldn't be paid!' The company sit for a\nmoment speechless; but Cook recovering first, turns upon the young\nwoman, and requests to know how she dares insult the family, whose\nbread she eats, by such a dishonest supposition, and whether she\nthinks that anybody, with a scrap of honour left, could deprive poor\nservants of their pittance? 'Because if that is your religious\nfeelings, Mary Daws,' says Cook warmly, 'I don't know where you mean\nto go to.\n\nMr Towlinson don't know either; nor anybody; and the young\nkitchen-maid, appearing not to know exactly, herself, and scouted by\nthe general voice, is covered with confusion, as with a garment.\n\nAfter a few days, strange people begin to call at the house, and to\nmake appointments with one another in the dining-room, as if they\nlived there. Especially, there is a gentleman, of a Mosaic Arabian\ncast of countenance, with a very massive watch-guard, who whistles in\nthe drawing-room, and, while he is waiting for the other gentleman,\nwho always has pen and ink in his pocket, asks Mr Towlinson (by the\neasy name of 'Old Cock,') if he happens to know what the figure of\nthem crimson and gold hangings might have been, when new bought. The\ncallers and appointments in the dining-room become more numerous every\nday, and every gentleman seems to have pen and ink in his pocket, and\nto have some occasion to use it. At last it is said that there is\ngoing to be a Sale; and then more people arrive, with pen and ink in\ntheir pockets, commanding a detachment of men with carpet caps, who\nimmediately begin to pull up the carpets, and knock the furniture\nabout, and to print off thousands of impressions of their shoes upon\nthe hall and staircase.\n\nThe council downstairs are in full conclave all this time, and,\nhaving nothing to do, perform perfect feats of eating. At length, they\nare one day summoned in a body to Mrs Pipchin's room, and thus\naddressed by the fair Peruvian:\n\n'Your master's in difficulties,' says Mrs Pipchin, tartly. 'You\nknow that, I suppose?'\n\nMr Towlinson, as spokesman, admits a general knowledge of the fact.\n\n'And you're all on the look-out for yourselves, I warrant you, says\nMrs Pipchin, shaking her head at them.\n\nA shrill voice from the rear exclaims, 'No more than yourself!'\n\n'That's your opinion, Mrs Impudence, is it?' says the ireful\nPipchin, looking with a fiery eye over the intermediate heads.\n\n'Yes, Mrs Pipchin, it is,' replies Cook, advancing. 'And what then,\npray?'\n\n'Why, then you may go as soon as you like,' says Mrs Pipchin. 'The\nsooner the better; and I hope I shall never see your face again.'\n\nWith this the doughty Pipchin produces a canvas bag; and tells her\nwages out to that day, and a month beyond it; and clutches the money\ntight, until a receipt for the same is duly signed, to the last\nupstroke; when she grudgingly lets it go. This form of proceeding Mrs\nPipchin repeats with every member of the household, until all are\npaid.\n\n'Now those that choose, can go about their business,' says Mrs\nPipchin, 'and those that choose can stay here on board wages for a\nweek or so, and make themselves useful. Except,' says the inflammable\nPipchin, 'that slut of a cook, who'll go immediately.'\n\n'That,' says Cook, 'she certainly will! I wish you good day, Mrs\nPipchin, and sincerely wish I could compliment you on the sweetness of\nyour appearance!'\n\n'Get along with you,' says Mrs Pipchin, stamping her foot.\n\nCook sails off with an air of beneficent dignity, highly\nexasperating to Mrs Pipchin, and is shortly joined below stairs by the\nrest of the confederation.\n\nMr Towlinson then says that, in the first place, he would beg to\npropose a little snack of something to eat; and over that snack would\ndesire to offer a suggestion which he thinks will meet the position in\nwhich they find themselves. The refreshment being produced, and very\nheartily partaken of, Mr Towlinson's suggestion is, in effect, that\nCook is going, and that if we are not true to ourselves, nobody will\nbe true to us. That they have lived in that house a long time, and\nexerted themselves very much to be sociable together. (At this, Cook\nsays, with emotion, 'Hear, hear!' and Mrs Perch, who is there again,\nand full to the throat, sheds tears.) And that he thinks, at the\npresent time, the feeling ought to be 'Go one, go all!' The housemaid\nis much affected by this generous sentiment, and warmly seconds it.\nCook says she feels it's right, and only hopes it's not done as a\ncompliment to her, but from a sense of duty. Mr Towlinson replies,\nfrom a sense of duty; and that now he is driven to express his\nopinions, he will openly say, that he does not think it\nover-respectable to remain in a house where Sales and such-like are\ncarrying forwards. The housemaid is sure of it; and relates, in\nconfirmation, that a strange man, in a carpet cap, offered, this very\nmorning, to kiss her on the stairs. Hereupon, Mr Towlinson is starting\nfrom his chair, to seek and 'smash' the offender; when he is laid hold\non by the ladies, who beseech him to calm himself, and to reflect that\nit is easier and wiser to leave the scene of such indecencies at once.\nMrs Perch, presenting the case in a new light, even shows that\ndelicacy towards Mr Dombey, shut up in his own rooms, imperatively\ndemands precipitate retreat. 'For what,' says the good woman, 'must\nhis feelings be, if he was to come upon any of the poor servants that\nhe once deceived into thinking him immensely rich!' Cook is so struck\nby this moral consideration, that Mrs Perch improves it with several\npious axioms, original and selected. It becomes a clear case that they\nmust all go. Boxes are packed, cabs fetched, and at dusk that evening\nthere is not one member of the party left.\n\nThe house stands, large and weather-proof, in the long dull street;\nbut it is a ruin, and the rats fly from it.\n\nThe men in the carpet caps go on tumbling the furniture about; and\nthe gentlemen with the pens and ink make out inventories of it, and\nsit upon pieces of furniture never made to be sat upon, and eat bread\nand cheese from the public-house on other pieces of furniture never\nmade to be eaten on, and seem to have a delight in appropriating\nprecious articles to strange uses. Chaotic combinations of furniture\nalso take place. Mattresses and bedding appear in the dining-room; the\nglass and china get into the conservatory; the great dinner service is\nset out in heaps on the long divan in the large drawing-room; and the\nstair-wires, made into fasces, decorate the marble chimneypieces.\nFinally, a rug, with a printed bill upon it, is hung out from the\nbalcony; and a similar appendage graces either side of the hall door.\n\nThen, all day long, there is a retinue of mouldy gigs and\nchaise-carts in the street; and herds of shabby vampires, Jew and\nChristian, over-run the house, sounding the plate-glass minors with\ntheir knuckles, striking discordant octaves on the Grand Piano,\ndrawing wet forefingers over the pictures, breathing on the blades of\nthe best dinner-knives, punching the squabs of chairs and sofas with\ntheir dirty fists, touzling the feather beds, opening and shutting all\nthe drawers, balancing the silver spoons and forks, looking into the\nvery threads of the drapery and linen, and disparaging everything.\nThere is not a secret place in the whole house. Fluffy and snuffy\nstrangers stare into the kitchen-range as curiously as into the attic\nclothes-press. Stout men with napless hats on, look out of the bedroom\nwindows, and cut jokes with friends in the street. Quiet, calculating\nspirits withdraw into the dressing-rooms with catalogues, and make\nmarginal notes thereon, with stumps of pencils. Two brokers invade the\nvery fire-escape, and take a panoramic survey of the neighbourhood\nfrom the top of the house. The swarm and buzz, and going up and down,\nendure for days. The Capital Modern Household Furniture, &c., is on\nview.\n\nThen there is a palisade of tables made in the best drawing-room;\nand on the capital, french-polished, extending, telescopic range of\nSpanish mahogany dining-tables with turned legs, the pulpit of the\nAuctioneer is erected; and the herds of shabby vampires, Jew and\nChristian, the strangers fluffy and snuffy, and the stout men with the\nnapless hats, congregate about it and sit upon everything within\nreach, mantel-pieces included, and begin to bid. Hot, humming, and\ndusty are the rooms all day; and - high above the heat, hum, and dust\n- the head and shoulders, voice and hammer, of the Auctioneer, are\never at work. The men in the carpet caps get flustered and vicious\nwith tumbling the Lots about, and still the Lots are going, going,\ngone; still coming on. Sometimes there is joking and a general roar.\nThis lasts all day and three days following. The Capital Modern\nHousehold Furniture, &c., is on sale.\n\nThen the mouldy gigs and chaise-carts reappear; and with them come\nspring-vans and waggons, and an army of porters with knots. All day\nlong, the men with carpet caps are screwing at screw-drivers and\nbed-winches, or staggering by the dozen together on the staircase\nunder heavy burdens, or upheaving perfect rocks of Spanish mahogany,\nbest rose-wood, or plate-glass, into the gigs and chaise-carts, vans\nand waggons. All sorts of vehicles of burden are in attendance, from a\ntilted waggon to a wheelbarrow. Poor Paul's little bedstead is carried\noff in a donkey-tandem. For nearly a whole week, the Capital Modern\nHousehold Furniture, & c., is in course of removal.\n\nAt last it is all gone. Nothing is left about the house but\nscattered leaves of catalogues, littered scraps of straw and hay, and\na battery of pewter pots behind the hall-door. The men with the\ncarpet-caps gather up their screw-drivers and bed-winches into bags,\nshoulder them, and walk off. One of the pen-and-ink gentlemen goes\nover the house as a last attention; sticking up bills in the windows\nrespecting the lease of this desirable family mansion, and shutting\nthe shutters. At length he follows the men with the carpet caps. None\nof the invaders remain. The house is a ruin, and the rats fly from it.\n\nMrs Pipchin's apartments, together with those locked rooms on the\nground-floor where the window-blinds are drawn down close, have been\nspared the general devastation. Mrs Pipchin has remained austere and\nstony during the proceedings, in her own room; or has occasionally\nlooked in at the sale to see what the goods are fetching, and to bid\nfor one particular easy chair. Mrs Pipchin has been the highest bidder\nfor the easy chair, and sits upon her property when Mrs Chick comes to\nsee her.\n\n'How is my brother, Mrs Pipchin?' says Mrs Chick.\n\n'I don't know any more than the deuce,' says Mrs Pipchin. 'He never\ndoes me the honour to speak to me. He has his meat and drink put in\nthe next room to his own; and what he takes, he comes out and takes\nwhen there's nobody there. It's no use asking me. I know no more about\nhim than the man in the south who burnt his mouth by eating cold plum\nporridge.\"\n\nThis the acrimonious Pipchin says with a flounce.\n\n'But good gracious me!' cries Mrs Chick blandly. 'How long is this\nto last! If my brother will not make an effort, Mrs Pipchin, what is\nto become of him? I am sure I should have thought he had seen enough\nof the consequences of not making an effort, by this time, to be\nwarned against that fatal error.'\n\n'Hoity toity!' says Mrs Pipchin, rubbing her nose. 'There's a great\nfuss, I think, about it. It ain't so wonderful a case. People have had\nmisfortunes before now, and been obliged to part with their furniture.\nI'm sure I have!'\n\n'My brother,' pursues Mrs Chick profoundly, 'is so peculiar - so\nstrange a man. He is the most peculiar man I ever saw. Would anyone\nbelieve that when he received news of the marriage and emigration of\nthat unnatural child - it's a comfort to me, now, to remember that I\nalways said there was something extraordinary about that child: but\nnobody minds me - would anybody believe, I say, that he should then\nturn round upon me and say he had supposed, from my manner, that she\nhad come to my house? Why, my gracious! And would anybody believe that\nwhen I merely say to him, \"Paul, I may be very foolish, and I have no\ndoubt I am, but I cannot understand how your affairs can have got into\nthis state,\" he should actually fly at me, and request that I will\ncome to see him no more until he asks me! Why, my goodness!'\n\n'Ah'!' says Mrs Pipchin. 'It's a pity he hadn't a little more to do\nwith mines. They'd have tried his temper for him.'\n\n'And what,' resumes Mrs Chick, quite regardless of Mrs Pipchin's\nobservations, 'is it to end in? That's what I want to know. What does\nmy brother mean to do? He must do something. It's of no use remaining\nshut up in his own rooms. Business won't come to him. No. He must go\nto it. Then why don't he go? He knows where to go, I suppose, having\nbeen a man of business all his life. Very good. Then why not go\nthere?'\n\nMrs Chick, after forging this powerful chain of reasoning, remains\nsilent for a minute to admire it.\n\n'Besides,' says the discreet lady, with an argumentative air, 'who\never heard of such obstinacy as his staying shut up here through all\nthese dreadful disagreeables? It's not as if there was no place for\nhim to go to. Of course he could have come to our house. He knows he\nis at home there, I suppose? Mr Chick has perfectly bored about it,\nand I said with my own lips, \"Why surely, Paul, you don't imagine that\nbecause your affairs have got into this state, you are the less at\nhome to such near relatives as ourselves? You don't imagine that we\nare like the rest of the world?\" But no; here he stays all through,\nand here he is. Why, good gracious me, suppose the house was to be\nlet! What would he do then? He couldn't remain here then. If he\nattempted to do so, there would be an ejectment, an action for Doe,\nand all sorts of things; and then he must go. Then why not go at first\ninstead of at last? And that brings me back to what I said just now,\nand I naturally ask what is to be the end of it?'\n\n'I know what's to be the end of it, as far as I am concerned,'\nreplies Mrs Pipchin, 'and that's enough for me. I'm going to take\nmyself off in a jiffy.'\n\n'In a which, Mrs Pipchin,' says Mrs Chick.\n\n'In a jiffy,' retorts Mrs Pipchin sharply.\n\n'Ah, well! really I can't blame you, Mrs Pipchin,' says Mrs Chick,\nwith frankness.\n\n'It would be pretty much the same to me, if you could,' replies the\nsardonic Pipchin. 'At any rate I'm going. I can't stop here. I should\nbe dead in a week. I had to cook my own pork chop yesterday, and I'm\nnot used to it. My constitution will be giving way next. Besides, I\nhad a very fair connexion at Brighton when I came here - little\nPankey's folks alone were worth a good eighty pounds a-year to me -\nand I can't afford to throw it away. I've written to my niece, and she\nexpects me by this time.'\n\n'Have you spoken to my brother?' inquires Mrs Chick\n\n'Oh, yes, it's very easy to say speak to him,' retorts Mrs Pipchin.\n'How is it done? I called out to him yesterday, that I was no use\nhere, and that he had better let me send for Mrs Richards. He grunted\nsomething or other that meant yes, and I sent. Grunt indeed! If he had\nbeen Mr Pipchin, he'd have had some reason to grunt. Yah! I've no\npatience with it!'\n\nHere this exemplary female, who has pumped up so much fortitude and\nvirtue from the depths of the Peruvian mines, rises from her cushioned\nproperty to see Mrs Chick to the door. Mrs Chick, deploring to the\nlast the peculiar character of her brother, noiselessly retires, much\noccupied with her own sagacity and clearness of head.\n\nIn the dusk of the evening Mr Toodle, being off duty, arrives with\nPolly and a box, and leaves them, with a sounding kiss, in the hall of\nthe empty house, the retired character of which affects Mr Toodle's\nspirits strongly.\n\n'I tell you what, Polly, me dear,' says Mr Toodle, 'being now an\ningine-driver, and well to do in the world, I shouldn't allow of your\ncoming here, to be made dull-like, if it warn't for favours past. But\nfavours past, Polly, is never to be forgot. To them which is in\nadversity, besides, your face is a cord'l. So let's have another kiss\non it, my dear. You wish no better than to do a right act, I know; and\nmy views is, that it's right and dutiful to do this. Good-night,\nPolly!'\n\nMrs Pipchin by this time looms dark in her black bombazeen skirts,\nblack bonnet, and shawl; and has her personal property packed up; and\nhas her chair (late a favourite chair of Mr Dombey's and the dead\nbargain of the sale) ready near the street door; and is only waiting\nfor a fly-van, going to-night to Brighton on private service, which is\nto call for her, by private contract, and convey her home.\n\nPresently it comes. Mrs Pipchin's wardrobe being handed in and\nstowed away, Mrs Pipchin's chair is next handed in, and placed in a\nconvenient corner among certain trusses of hay; it being the intention\nof the amiable woman to occupy the chair during her journey. Mrs\nPipchin herself is next handed in, and grimly takes her seat. There is\na snaky gleam in her hard grey eye, as of anticipated rounds of\nbuttered toast, relays of hot chops, worryings and quellings of young\nchildren, sharp snappings at poor Berry, and all the other delights of\nher Ogress's castle. Mrs Pipchin almost laughs as the fly-van drives\noff, and she composes her black bombazeen skirts, and settles herself\namong the cushions of her easy chair.\n\nThe house is such a ruin that the rats have fled, and there is not\none left.\n\nBut Polly, though alone in the deserted mansion - for there is no\ncompanionship in the shut-up rooms in which its late master hides his\nhead - is not alone long. It is night; and she is sitting at work in\nthe housekeeper's room, trying to forget what a lonely house it is,\nand what a history belongs to it; when there is a knock at the hall\ndoor, as loud sounding as any knock can be, striking into such an\nempty place. Opening it, she returns across the echoing hall,\naccompanied by a female figure in a close black bonnet. It is Miss\nTox, and Miss Tox's eyes are red.\n\n'Oh, Polly,' says Miss Tox, 'when I looked in to have a little\nlesson with the children just now, I got the message that you left for\nme; and as soon as I could recover my spirits at all, I came on after\nyou. Is there no one here but you?'\n\n'Ah! not a soul,' says Polly.\n\n'Have you seen him?' whispers Miss Tox.\n\n'Bless you,' returns Polly, 'no; he has not been seen this many a\nday. They tell me he never leaves his room.'\n\n'Is he said to be ill?' inquires Miss Tox.\n\n'No, Ma'am, not that I know of,' returns Polly, 'except in his\nmind. He must be very bad there, poor gentleman!'\n\nMiss Tox's sympathy is such that she can scarcely speak. She is no\nchicken, but she has not grown tough with age and celibacy. Her heart\nis very tender, her compassion very genuine, her homage very real.\nBeneath the locket with the fishy eye in it, Miss Tox bears better\nqualities than many a less whimsical outside; such qualities as will\noutlive, by many courses of the sun, the best outsides and brightest\nhusks that fall in the harvest of the great reaper.\n\nIt is long before Miss Tox goes away, and before Polly, with a\ncandle flaring on the blank stairs, looks after her, for company, down\nthe street, and feels unwilling to go back into the dreary house, and\njar its emptiness with the heavy fastenings of the door, and glide\naway to bed. But all this Polly does; and in the morning sets in one\nof those darkened rooms such matters as she has been advised to\nprepare, and then retires and enters them no more until next morning\nat the same hour. There are bells there, but they never ring; and\nthough she can sometimes hear a footfall going to and fro, it never\ncomes out.\n\nMiss Tox returns early in the day. It then begins to be Miss Tox's\noccupation to prepare little dainties - or what are such to her - to\nbe carried into these rooms next morning. She derives so much\nsatisfaction from the pursuit, that she enters on it regularly from\nthat time; and brings daily in her little basket, various choice\ncondiments selected from the scanty stores of the deceased owner of\nthe powdered head and pigtail. She likewise brings, in sheets of\ncurl-paper, morsels of cold meats, tongues of sheep, halves of fowls,\nfor her own dinner; and sharing these collations with Polly, passes\nthe greater part of her time in the ruined house that the rats have\nfled from: hiding, in a fright at every sound, stealing in and out\nlike a criminal; only desiring to be true to the fallen object of her\nadmiration, unknown to him, unknown to all the world but one poor\nsimple woman.\n\nThe Major knows it; but no one is the wiser for that, though the\nMajor is much the merrier. The Major, in a fit of curiosity, has\ncharged the Native to watch the house sometimes, and find out what\nbecomes of Dombey. The Native has reported Miss Tox's fidelity, and\nthe Major has nearly choked himself dead with laughter. He is\npermanently bluer from that hour, and constantly wheezes to himself,\nhis lobster eyes starting out of his head, 'Damme, Sir, the woman's a\nborn idiot!'\n\nAnd the ruined man. How does he pass the hours, alone?\n\n'Let him remember it in that room, years to come!' He did remember\nit. It was heavy on his mind now; heavier than all the rest.\n\n'Let him remember it in that room, years to come! The rain that\nfalls upon the roof, the wind that mourns outside the door, may have\nforeknowledge in their melancholy sound. Let him remember it in that\nroom, years to come!'\n\nHe did remember it. In the miserable night he thought of it; in the\ndreary day, the wretched dawn, the ghostly, memory-haunted twilight.\nHe did remember it. In agony, in sorrow, in remorse, in despair!\n'Papa! Papa! Speak to me, dear Papa!' He heard the words again, and\nsaw the face. He saw it fall upon the trembling hands, and heard the\none prolonged low cry go upward.\n\nHe was fallen, never to be raised up any more. For the night of his\nworldly ruin there was no to-morrow's sun; for the stain of his\ndomestic shame there was no purification; nothing, thank Heaven, could\nbring his dead child back to life. But that which he might have made\nso different in all the Past - which might have made the Past itself\nso different, though this he hardly thought of now - that which was\nhis own work, that which he could so easily have wrought into a\nblessing, and had set himself so steadily for years to form into a\ncurse: that was the sharp grief of his soul.\n\nOh! He did remember it! The rain that fell upon the roof, the wind\nthat mourned outside the door that night, had had foreknowledge in\ntheir melancholy sound. He knew, now, what he had done. He knew, now,\nthat he had called down that upon his head, which bowed it lower than\nthe heaviest stroke of fortune. He knew, now, what it was to be\nrejected and deserted; now, when every loving blossom he had withered\nin his innocent daughter's heart was snowing down in ashes on him.\n\nHe thought of her, as she had been that night when he and his bride\ncame home. He thought of her as she had been, in all the home-events\nof the abandoned house. He thought, now, that of all around him, she\nalone had never changed. His boy had faded into dust, his proud wife\nhad sunk into a polluted creature, his flatterer and friend had been\ntransformed into the worst of villains, his riches had melted away,\nthe very walls that sheltered him looked on him as a stranger; she\nalone had turned the same mild gentle look upon him always. Yes, to\nthe latest and the last. She had never changed to him - nor had he\never changed to her - and she was lost.\n\nAs, one by one, they fell away before his mind - his baby- hope,\nhis wife, his friend, his fortune - oh how the mist, through which he\nhad seen her, cleared, and showed him her true self! Oh, how much\nbetter than this that he had loved her as he had his boy, and lost her\nas he had his boy, and laid them in their early grave together!\n\nIn his pride - for he was proud yet - he let the world go from him\nfreely. As it fell away, he shook it off. Whether he imagined its face\nas expressing pity for him, or indifference to him, he shunned it\nalike. It was in the same degree to be avoided, in either aspect. He\nhad no idea of any one companion in his misery, but the one he had\ndriven away. What he would have said to her, or what consolation\nsubmitted to receive from her, he never pictured to himself. But he\nalways knew she would have been true to him, if he had suffered her.\nHe always knew she would have loved him better now, than at any other\ntime; he was as certain that it was in her nature, as he was that\nthere was a sky above him; and he sat thinking so, in his loneliness,\nfrom hour to hour. Day after day uttered this speech; night after\nnight showed him this knowledge.\n\nIt began, beyond all doubt (however slow it advanced for some\ntime), in the receipt of her young husband's letter, and the certainty\nthat she was gone. And yet - so proud he was in his ruin, or so\nreminiscent of her only as something that might have been his, but was\nlost beyond redemption - that if he could have heard her voice in an\nadjoining room, he would not have gone to her. If he could have seen\nher in the street, and she had done no more than look at him as she\nhad been used to look, he would have passed on with his old cold\nunforgiving face, and not addressed her, or relaxed it, though his\nheart should have broken soon afterwards. However turbulent his\nthoughts, or harsh his anger had been, at first, concerning her\nmarriage, or her husband, that was all past now. He chiefly thought of\nwhat might have been, and what was not. What was, was all summed up in\nthis: that she was lost, and he bowed down with sorrow and remorse.\n\nAnd now he felt that he had had two children born to him in that\nhouse, and that between him and the bare wide empty walls there was a\ntie, mournful, but hard to rend asunder, connected with a double\nchildhood, and a double loss. He had thought to leave the house -\nknowing he must go, not knowing whither - upon the evening of the day\non which this feeling first struck root in his breast; but he resolved\nto stay another night, and in the night to ramble through the rooms\nonce more.\n\nHe came out of his solitude when it was the dead of night, and with\na candle in his hand went softly up the stairs. Of all the footmarks\nthere, making them as common as the common street, there was not one,\nhe thought, but had seemed at the time to set itself upon his brain\nwhile he had kept close, listening. He looked at their number, and\ntheir hurry, and contention - foot treading foot out, and upward track\nand downward jostling one another - and thought, with absolute dread\nand wonder, how much he must have suffered during that trial, and what\na changed man he had cause to be. He thought, besides, oh was there,\nsomewhere in the world, a light footstep that might have worn out in a\nmoment half those marks! - and bent his head, and wept as he went up.\n\nHe almost saw it, going on before. He stopped, looking up towards\nthe skylight; and a figure, childish itself, but carrying a child, and\nsinging as it went, seemed to be there again. Anon, it was the same\nfigure, alone, stopping for an instant, with suspended breath; the\nbright hair clustering loosely round its tearful face; and looking\nback at him.\n\nHe wandered through the rooms: lately so luxurious; now so bare and\ndismal and so changed, apparently, even in their shape and size. The\npress of footsteps was as thick here; and the same consideration of\nthe suffering he had had, perplexed and terrified him. He began to\nfear that all this intricacy in his brain would drive him mad; and\nthat his thoughts already lost coherence as the footprints did, and\nwere pieced on to one another, with the same trackless involutions,\nand varieties of indistinct shapes.\n\nHe did not so much as know in which of these rooms she had lived,\nwhen she was alone. He was glad to leave them, and go wandering higher\nup. Abundance of associations were here, connected with his false\nwife, his false friend and servant, his false grounds of pride; but he\nput them all by now, and only recalled miserably, weakly, fondly, his\ntwo children.\n\nEverywhere, the footsteps! They had had no respect for the old room\nhigh up, where the little bed had been; he could hardly find a clear\nspace there, to throw himself down, on the floor, against the wall,\npoor broken man, and let his tears flow as they would. He had shed so\nmany tears here, long ago, that he was less ashamed of his weakness in\nthis place than in any other - perhaps, with that consciousness, had\nmade excuses to himself for coming here. Here, with stooping\nshoulders, and his chin dropped on his breast, he had come. Here,\nthrown upon the bare boards, in the dead of night, he wept, alone - a\nproud man, even then; who, if a kind hand could have been stretched\nout, or a kind face could have looked in, would have risen up, and\nturned away, and gone down to his cell.\n\nWhen the day broke he was shut up in his rooms again. He had meant\nto go away to-day, but clung to this tie in the house as the last and\nonly thing left to him. He would go to-morrow. To-morrow came. He\nwould go to-morrow. Every night, within the knowledge of no human\ncreature, he came forth, and wandered through the despoiled house like\na ghost. Many a morning when the day broke, his altered face, drooping\nbehind the closed blind in his window, imperfectly transparent to the\nlight as yet, pondered on the loss of his two children. It was one\nchild no more. He reunited them in his thoughts, and they were never\nasunder. Oh, that he could have united them in his past love, and in\ndeath, and that one had not been so much worse than dead!\n\nStrong mental agitation and disturbance was no novelty to him, even\nbefore his late sufferings. It never is, to obstinate and sullen\nnatures; for they struggle hard to be such. Ground, long undermined,\nwill often fall down in a moment; what was undermined here in so many\nways, weakened, and crumbled, little by little, more and more, as the\nhand moved on the dial.\n\nAt last he began to think he need not go at all. He might yet give\nup what his creditors had spared him (that they had not spared him\nmore, was his own act), and only sever the tie between him and the\nruined house, by severing that other link -\n\nIt was then that his footfall was audible in the late housekeeper's\nroom, as he walked to and fro; but not audible in its true meaning, or\nit would have had an appalling sound.\n\nThe world was very busy and restless about him. He became aware of\nthat again. It was whispering and babbling. It was never quiet. This,\nand the intricacy and complication of the footsteps, harassed him to\ndeath. Objects began to take a bleared and russet colour in his eyes.\nDombey and Son was no more - his children no more. This must be\nthought of, well, to-morrow.\n\nHe thought of it to-morrow; and sitting thinking in his chair, saw\nin the glass, from time to time, this picture:\n\nA spectral, haggard, wasted likeness of himself, brooded and\nbrooded over the empty fireplace. Now it lifted up its head, examining\nthe lines and hollows in its face; now hung it down again, and brooded\nafresh. Now it rose and walked about; now passed into the next room,\nand came back with something from the dressing-table in its breast.\nNow, it was looking at the bottom of the door, and thinking.\n\nHush! what? It was thinking that if blood were to trickle that way,\nand to leak out into the hall, it must be a long time going so far. It\nwould move so stealthily and slowly, creeping on, with here a lazy\nlittle pool, and there a start, and then another little pool, that a\ndesperately wounded man could only be discovered through its means,\neither dead or dying. When it had thought of this a long while, it got\nup again, and walked to and fro with its hand in its breast. He\nglanced at it occasionally, very curious to watch its motions, and he\nmarked how wicked and murderous that hand looked.\n\nNow it was thinking again! What was it thinking?\n\nWhether they would tread in the blood when it crept so far, and\ncarry it about the house among those many prints of feet, or even out\ninto the street.\n\nIt sat down, with its eyes upon the empty fireplace, and as it lost\nitself in thought there shone into the room a gleam of light; a ray of\nsun. It was quite unmindful, and sat thinking. Suddenly it rose, with\na terrible face, and that guilty hand grasping what was in its breast.\nThen it was arrested by a cry - a wild, loud, piercing, loving,\nrapturous cry - and he only saw his own reflection in the glass, and\nat his knees, his daughter!\n\nYes. His daughter! Look at her! Look here! Down upon the ground,\nclinging to him, calling to him, folding her hands, praying to him.\n\n'Papa! Dearest Papa! Pardon me, forgive me! I have come back to ask\nforgiveness on my knees. I never can be happy more, without it!'\n\nUnchanged still. Of all the world, unchanged. Raising the same face\nto his, as on that miserable night. Asking his forgiveness!\n\n'Dear Papa, oh don't look strangely on me! I never meant to leave\nyou. I never thought of it, before or afterwards. I was frightened\nwhen I went away, and could not think. Papa, dear, I am changed. I am\npenitent. I know my fault. I know my duty better now. Papa, don't cast\nme off, or I shall die!'\n\nHe tottered to his chair. He felt her draw his arms about her neck;\nhe felt her put her own round his; he felt her kisses on his face; he\nfelt her wet cheek laid against his own; he felt - oh, how deeply! -\nall that he had done.\n\nUpon the breast that he had bruised, against the heart that he had\nalmost broken, she laid his face, now covered with his hands, and\nsaid, sobbing:\n\n'Papa, love, I am a mother. I have a child who will soon call\nWalter by the name by which I call you. When it was born, and when I\nknew how much I loved it, I knew what I had done in leaving you.\nForgive me, dear Papa! oh say God bless me, and my little child!'\n\nHe would have said it, if he could. He would have raised his hands\nand besought her for pardon, but she caught them in her own, and put\nthem down, hurriedly.\n\n'My little child was born at sea, Papa I prayed to God (and so did\nWalter for me) to spare me, that I might come home. The moment I could\nland, I came back to you. Never let us be parted any more, Papa. Never\nlet us be parted any more!'\n\nHis head, now grey, was encircled by her arm; and he groaned to\nthink that never, never, had it rested so before.\n\n'You will come home with me, Papa, and see my baby. A boy, Papa.\nHis name is Paul. I think - I hope - he's like - '\n\nHer tears stopped her.\n\n'Dear Papa, for the sake of my child, for the sake of the name we\nhave given him, for my sake, pardon Walter. He is so kind and tender\nto me. I am so happy with him. It was not his fault that we were\nmarried. It was mine. I loved him so much.'\n\nShe clung closer to him, more endearing and more earnest.\n\n'He is the darling of my heart, Papa I would die for him. He will\nlove and honour you as I will. We will teach our little child to love\nand honour you; and we will tell him, when he can understand, that you\nhad a son of that name once, and that he died, and you were very\nsorry; but that he is gone to Heaven, where we all hope to see him\nwhen our time for resting comes. Kiss me, Papa, as a promise that you\nwill be reconciled to Walter - to my dearest husband - to the father\nof the little child who taught me to come back, Papa Who taught me to\ncome back!'\n\nAs she clung closer to him, in another burst of tears, he kissed\nher on her lips, and, lifting up his eyes, said, 'Oh my God, forgive\nme, for I need it very much!'\n\nWith that he dropped his head again, lamenting over and caressing\nher, and there was not a sound in all the house for a long, long time;\nthey remaining clasped in one another's arms, in the glorious sunshine\nthat had crept in with Florence.\n\nHe dressed himself for going out, with a docile submission to her\nentreaty; and walking with a feeble gait, and looking back, with a\ntremble, at the room in which he had been so long shut up, and where\nhe had seen the picture in the glass, passed out with her into the\nhall. Florence, hardly glancing round her, lest she should remind him\nfreshly of their last parting - for their feet were on the very stones\nwhere he had struck her in his madness - and keeping close to him,\nwith her eyes upon his face, and his arm about her, led him out to a\ncoach that was waiting at the door, and carried him away.\n\nThen, Miss Tox and Polly came out of their concealment, and exulted\ntearfully. And then they packed his clothes, and books, and so forth,\nwith great care; and consigned them in due course to certain persons\nsent by Florence, in the evening, to fetch them. And then they took a\nlast cup of tea in the lonely house.\n\n'And so Dombey and Son, as I observed upon a certain sad occasion,'\nsaid Miss Tox, winding up a host of recollections, 'is indeed a\ndaughter, Polly, after all.'\n\n'And a good one!' exclaimed Polly.\n\n'You are right,' said Miss Tox; 'and it's a credit to you, Polly,\nthat you were always her friend when she was a little child. You were\nher friend long before I was, Polly,' said Miss Tox; 'and you're a\ngood creature. Robin!'\n\nMiss Tox addressed herself to a bullet-headed young man, who\nappeared to be in but indifferent circumstances, and in depressed\nspirits, and who was sitting in a remote corner. Rising, he disclosed\nto view the form and features of the Grinder.\n\n'Robin,' said Miss Tox, 'I have just observed to your mother, as\nyou may have heard, that she is a good creature.\n\n'And so she is, Miss,' quoth the Grinder, with some feeling.\n\n'Very well, Robin,' said Miss Tox, 'I am glad to hear you say so.\nNow, Robin, as I am going to give you a trial, at your urgent request,\nas my domestic, with a view to your restoration to respectability, I\nwill take this impressive occasion of remarking that I hope you will\nnever forget that you have, and have always had, a good mother, and\nthat you will endeavour so to conduct yourself as to be a comfort to\nher.'\n\n'Upon my soul I will, Miss,' returned the Grinder. 'I have come\nthrough a good deal, and my intentions is now as straightfor'ard,\nMiss, as a cove's - '\n\n'I must get you to break yourself of that word, Robin, if you\nPlease,' interposed Miss Tox, politely.\n\n'If you please, Miss, as a chap's - '\n\n'Thankee, Robin, no,' returned Miss Tox, 'I should prefer\nindividual.'\n\n'As a indiwiddle's,' said the Grinder.\n\n'Much better,' remarked Miss Tox, complacently; 'infinitely more\nexpressive!'\n\n' - can be,' pursued Rob. 'If I hadn't been and got made a Grinder\non, Miss and Mother, which was a most unfortunate circumstance for a\nyoung co - indiwiddle.'\n\n'Very good indeed,' observed Miss Tox, approvingly.\n\n' - and if I hadn't been led away by birds, and then fallen into a\nbad service,' said the Grinder, 'I hope I might have done better. But\nit's never too late for a - '\n\n'Indi - ' suggested Miss Tox.\n\n' - widdle,' said the Grinder, 'to mend; and I hope to mend, Miss,\nwith your kind trial; and wishing, Mother, my love to father, and\nbrothers and sisters, and saying of it.'\n\n'I am very glad indeed to hear it,' observed Miss Tox. 'Will you\ntake a little bread and butter, and a cup of tea, before we go,\nRobin?'\n\n'Thankee, Miss,' returned the Grinder; who immediately began to use\nhis own personal grinders in a most remarkable manner, as if he had\nbeen on very short allowance for a considerable period.\n\nMiss Tox, being, in good time, bonneted and shawled, and Polly too,\nRob hugged his mother, and followed his new mistress away; so much to\nthe hopeful admiration of Polly, that something in her eyes made\nluminous rings round the gas-lamps as she looked after him. Polly then\nput out her light, locked the house-door, delivered the key at an\nagent's hard by, and went home as fast as she could go; rejoicing in\nthe shrill delight that her unexpected arrival would occasion there.\nThe great house, dumb as to all that had been suffered in it, and the\nchanges it had witnessed, stood frowning like a dark mute on the\nstreet; baulking any nearer inquiries with the staring announcement\nthat the lease of this desirable Family Mansion was to be disposed of.\n\n\nCHAPTER 60.\n\nChiefly Matrimonial\n\n\n\nThe grand half-yearly festival holden by Doctor and Mrs Blimber, on\nwhich occasion they requested the pleasure of the company of every\nyoung gentleman pursuing his studies in that genteel establishment, at\nan early party, when the hour was half-past seven o'clock, and when\nthe object was quadrilles, had duly taken place, about this time; and\nthe young gentlemen, with no unbecoming demonstrations of levity, had\nbetaken themselves, in a state of scholastic repletion, to their own\nhomes. Mr Skettles had repaired abroad, permanently to grace the\nestablishment of his father Sir Barnet Skettles, whose popular manners\nhad obtained him a diplomatic appointment, the honours of which were\ndischarged by himself and Lady Skettles, to the satisfaction even of\ntheir own countrymen and countrywomen: which was considered almost\nmiraculous. Mr Tozer, now a young man of lofty stature, in Wellington\nboots, was so extremely full of antiquity as to be nearly on a par\nwith a genuine ancient Roman in his knowledge of English: a triumph\nthat affected his good parents with the tenderest emotions, and caused\nthe father and mother of Mr Briggs (whose learning, like ill-arranged\nluggage, was so tightly packed that he couldn't get at anything he\nwanted) to hide their diminished heads. The fruit laboriously gathered\nfrom the tree of knowledge by this latter young gentleman, in fact,\nhad been subjected to so much pressure, that it had become a kind of\nintellectual Norfolk Biffin, and had nothing of its original form or\nflavour remaining. Master Bitherstone now, on whom the forcing system\nhad the happier and not uncommon effect of leaving no impression\nwhatever, when the forcing apparatus ceased to work, was in a much\nmore comfortable plight; and being then on shipboard, bound for\nBengal, found himself forgetting, with such admirable rapidity, that\nit was doubtful whether his declensions of noun-substantives would\nhold out to the end of the voyage.\n\nWhen Doctor Blimber, in pursuance of the usual course, would have\nsaid to the young gentlemen, on the morning of the party, 'Gentlemen,\nwe will resume our studies on the twenty-fifth of next month,' he\ndeparted from the usual course, and said, 'Gentlemen, when our friend\nCincinnatus retired to his farm, he did not present to the senate any\nRoman who he sought to nominate as his successor.' But there is a\nRoman here,' said Doctor Blimber, laying his hand on the shoulder of\nMr Feeder, B.A., adolescens imprimis gravis et doctus, gentlemen, whom\nI, a retiring Cincinnatus, wish to present to my little senate, as\ntheir future Dictator. Gentlemen, we will resume our studies on the\ntwenty-fifth of next month, under the auspices of Mr Feeder, B.A.' At\nthis (which Doctor Blimber had previously called upon all the parents,\nand urbanely explained), the young gentlemen cheered; and Mr Tozer, on\nbehalf of the rest, instantly presented the Doctor with a silver\ninkstand, in a speech containing very little of the mother-tongue, but\nfifteen quotations from the Latin, and seven from the Greek, which\nmoved the younger of the young gentlemen to discontent and envy: they\nremarking, 'Oh, ah. It was all very well for old Tozer, but they\ndidn't subscribe money for old Tozer to show off with, they supposed;\ndid they? What business was it of old Tozer's more than anybody\nelse's? It wasn't his inkstand. Why couldn't he leave the boys'\nproperty alone?' and murmuring other expressions of their\ndissatisfaction, which seemed to find a greater relief in calling him\nold Tozer, than in any other available vent.\n\nNot a word had been said to the young gentlemen, nor a hint\ndropped, of anything like a contemplated marriage between Mr Feeder,\nB.A., and the fair Cornelia Blimber. Doctor Blimber, especially,\nseemed to take pains to look as if nothing would surprise him more;\nbut it was perfectly well known to all the young gentlemen\nnevertheless, and when they departed for the society of their\nrelations and friends, they took leave of Mr Feeder with awe.\n\nMr Feeder's most romantic visions were fulfilled. The Doctor had\ndetermined to paint the house outside, and put it in thorough repair;\nand to give up the business, and to give up Cornelia. The painting and\nrepairing began upon the very day of the young gentlemen's departure,\nand now behold! the wedding morning was come, and Cornelia, in a new\npair of spectacles, was waiting to be led to the hymeneal altar.\n\nThe Doctor with his learned legs, and Mrs Blimber in a lilac\nbonnet, and Mr Feeder, B.A., with his long knuckles and his bristly\nhead of hair, and Mr Feeder's brother, the Reverend Alfred Feeder,\nM.A., who was to perform the ceremony, were all assembled in the\ndrawing-room, and Cornelia with her orange-flowers and bridesmaids had\njust come down, and looked, as of old, a little squeezed in\nappearance, but very charming, when the door opened, and the weak-eyed\nyoung man, in a loud voice, made the following proclamation:\n\n'MR AND MRS TOOTS!'\n\nUpon which there entered Mr Toots, grown extremely stout, and on\nhis arm a lady very handsomely and becomingly dressed, with very\nbright black eyes. 'Mrs Blimber,' said Mr Toots, 'allow me to present\nmy wife.'\n\nMrs Blimber was delighted to receive her. Mrs Blimber was a little\ncondescending, but extremely kind.\n\n'And as you've known me for a long time, you know,' said Mr Toots,\n'let me assure you that she is one of the most remarkable women that\never lived.'\n\n'My dear!' remonstrated Mrs Toots.\n\n'Upon my word and honour she is,' said Mr Toots. 'I - I assure you,\nMrs Blimber, she's a most extraordinary woman.'\n\nMrs Toots laughed merrily, and Mrs Blimber led her to Cornelia. Mr\nToots having paid his respects in that direction and having saluted\nhis old preceptor, who said, in allusion to his conjugal state, 'Well,\nToots, well, Toots! So you are one of us, are you, Toots?' - retired\nwith Mr Feeder, B.A., into a window.\n\nMr Feeder, B.A., being in great spirits, made a spar at Mr Toots,\nand tapped him skilfully with the back of his hand on the breastbone.\n\n'Well, old Buck!' said Mr Feeder with a laugh. 'Well! Here we are!\nTaken in and done for. Eh?'\n\n'Feeder,' returned Mr Toots. 'I give you joy. If you're as - as- as\nperfectly blissful in a matrimonial life, as I am myself, you'll have\nnothing to desire.'\n\n'I don't forget my old friends, you see,' said Mr Feeder. 'I ask em\nto my wedding, Toots.'\n\n'Feeder,' replied Mr Toots gravely, 'the fact is, that there were\nseveral circumstances which prevented me from communicating with you\nuntil after my marriage had been solemnised. In the first place, I had\nmade a perfect Brute of myself to you, on the subject of Miss Dombey;\nand I felt that if you were asked to any wedding of mine, you would\nnaturally expect that it was with Miss Dombey, which involved\nexplanations, that upon my word and honour, at that crisis, would have\nknocked me completely over. In the second place, our wedding was\nstrictly private; there being nobody present but one friend of myself\nand Mrs Toots's, who is a Captain in - I don't exactly know in what,'\nsaid Mr Toots, 'but it's of no consequence. I hope, Feeder, that in\nwriting a statement of what had occurred before Mrs Toots and myself\nwent abroad upon our foreign tour, I fully discharged the offices of\nfriendship.'\n\n'Toots, my boy,' said Mr Feeder, shaking his hands, 'I was joking.'\n\n'And now, Feeder,' said Mr Toots, 'I should be glad to know what\nyou think of my union.'\n\n'Capital!' returned Mr Feeder.\n\n'You think it's capital, do you, Feeder?'said Mr Toots solemnly.\n'Then how capital must it be to Me! For you can never know what an\nextraordinary woman that is.'\n\nMr Feeder was willing to take it for granted. But Mr Toots shook\nhis head, and wouldn't hear of that being possible.\n\n'You see,' said Mr Toots, 'what I wanted in a wife was - in short,\nwas sense. Money, Feeder, I had. Sense I - I had not, particularly.'\n\nMr Feeder murmured, 'Oh, yes, you had, Toots!' But Mr Toots said:\n\n'No, Feeder, I had not. Why should I disguise it? I had not. I knew\nthat sense was There,' said Mr Toots, stretching out his hand towards\nhis wife, 'in perfect heaps. I had no relation to object or be\noffended, on the score of station; for I had no relation. I have never\nhad anybody belonging to me but my guardian, and him, Feeder, I have\nalways considered as a Pirate and a Corsair. Therefore, you know it\nwas not likely,' said Mr Toots, 'that I should take his opinion.'\n\n'No,' said Mr Feeder.\n\n'Accordingly,' resumed Mr Toots, 'I acted on my own. Bright was the\nday on which I did so! Feeder! Nobody but myself can tell what the\ncapacity of that woman's mind is. If ever the Rights of Women, and all\nthat kind of thing, are properly attended to, it will be through her\npowerful intellect - Susan, my dear!' said Mr Toots, looking abruptly\nout of the windows 'pray do not exert yourself!'\n\n'My dear,' said Mrs Toots, 'I was only talking.'\n\n'But, my love,' said Mr Toots, 'pray do not exert yourself. You\nreally must be careful. Do not, my dear Susan, exert yourself. She's\nso easily excited,' said Mr Toots, apart to Mrs Blimber, 'and then she\nforgets the medical man altogether.'\n\nMrs Blimber was impressing on Mrs Toots the necessity of caution,\nwhen Mr Feeder, B.A., offered her his arm, and led her down to the\ncarriages that were waiting to go to church. Doctor Blimber escorted\nMrs Toots. Mr Toots escorted the fair bride, around whose lambent\nspectacles two gauzy little bridesmaids fluttered like moths. Mr\nFeeder's brother, Mr Alfred Feeder, M.A., had already gone on, in\nadvance, to assume his official functions.\n\nThe ceremony was performed in an admirable manner. Cornelia, with\nher crisp little curls, 'went in,' as the Chicken might have said,\nwith great composure; and Doctor Blimber gave her away, like a man who\nhad quite made up his mind to it. The gauzy little bridesmaids\nappeared to suffer most. Mrs Blimber was affected, but gently so; and\ntold the Reverend Mr Alfred Feeder, M.A., on the way home, that if she\ncould only have seen Cicero in his retirement at Tusculum, she would\nnot have had a wish, now, ungratified.\n\nThere was a breakfast afterwards, limited to the same small party;\nat which the spirits of Mr Feeder, B.A., were tremendous, and so\ncommunicated themselves to Mrs Toots that Mr Toots was several times\nheard to observe, across the table, 'My dear Susan, don't exert\nyourself!' The best of it was, that Mr Toots felt it incunbent on him\nto make a speech; and in spite of a whole code of telegraphic\ndissuasions from Mrs Toots, appeared on his legs for the first time in\nhis life.\n\n'I really,' said Mr Toots, 'in this house, where whatever was done\nto me in the way of - of any mental confusion sometimes - which is of\nno consequence and I impute to nobody - I was always treated like one\nof Doctor Blimber's family, and had a desk to myself for a\nconsiderable period - can - not - allow - my friend Feeder to be - '\n\nMrs Toots suggested 'married.'\n\n'It may not be inappropriate to the occasion, or altogether\nuninteresting,' said Mr Toots with a delighted face, 'to observe that\nmy wife is a most extraordinary woman, and would do this much better\nthan myself - allow my friend Feeder to be married - especially to - '\n\nMrs Toots suggested 'to Miss Blimber.'\n\n'To Mrs Feeder, my love!' said Mr Toots, in a subdued tone of\nprivate discussion: \"'whom God hath joined,\" you know, \"let no man\" -\ndon't you know? I cannot allow my friend Feeder to be married -\nespecially to Mrs Feeder - without proposing their - their - Toasts;\nand may,' said Mr Toots, fixing his eyes on his wife, as if for\ninspiration in a high flight, 'may the torch of Hymen be the beacon of\njoy, and may the flowers we have this day strewed in their path, be\nthe - the banishers of- of gloom!'\n\nDoctor Blimber, who had a taste for metaphor, was pleased with\nthis, and said, 'Very good, Toots! Very well said, indeed, Toots!' and\nnodded his head and patted his hands. Mr Feeder made in reply, a comic\nspeech chequered with sentiment. Mr Alfred Feeder, M.A, was afterwards\nvery happy on Doctor and Mrs Blimber; Mr Feeder, B.A., scarcely less\nso, on the gauzy little bridesmaids. Doctor Blimber then, in a\nsonorous voice, delivered a few thoughts in the pastoral style,\nrelative to the rushes among which it was the intention of himself and\nMrs Blimber to dwell, and the bee that would hum around their cot.\nShortly after which, as the Doctor's eyes were twinkling in a\nremarkable manner, and his son-in-law had already observed that time\nwas made for slaves, and had inquired whether Mrs Toots sang, the\ndiscreet Mrs Blimber dissolved the sitting, and sent Cornelia away,\nvery cool and comfortable, in a post-chaise, with the man of her heart\n\nMr and Mrs Toots withdrew to the Bedford (Mrs Toots had been there\nbefore in old times, under her maiden name of Nipper), and there found\na letter, which it took Mr Toots such an enormous time to read, that\nMrs Toots was frightened.\n\n'My dear Susan,' said Mr Toots, 'fright is worse than exertion.\nPray be calm!'\n\n'Who is it from?' asked Mrs Toots.\n\n'Why, my love,' said Mr Toots, 'it's from Captain Gills. Do not\nexcite yourself. Walters and Miss Dombey are expected home!'\n\n'My dear,' said Mrs Toots, raising herself quickly from the sofa,\nvery pale, 'don't try to deceive me, for it's no use, they're come\nhome - I see it plainly in your face!'\n\n'She's a most extraordinary woman!' exclaimed Mr Toots, in\nrapturous admiration. 'You're perfectly right, my love, they have come\nhome. Miss Dombey has seen her father, and they are reconciled!'\n\n'Reconciled!' cried Mrs Toots, clapping her hands.\n\n'My dear,' said Mr Toots; 'pray do not exert yourself. Do remember\nthe medical man! Captain Gills says - at least he don't say, but I\nimagine, from what I can make out, he means - that Miss Dombey has\nbrought her unfortunate father away from his old house, to one where\nshe and Walters are living; that he is lying very ill there - supposed\nto be dying; and that she attends upon him night and day.'\n\nMrs Toots began to cry quite bitterly.\n\n'My dearest Susan,' replied Mr Toots, 'do, do, if you possibly can,\nremember the medical man! If you can't, it's of no consequence - but\ndo endeavour to!'\n\nHis wife, with her old manner suddenly restored, so pathetically\nentreated him to take her to her precious pet, her little mistress,\nher own darling, and the like, that Mr Toots, whose sympathy and\nadmiration were of the strongest kind, consented from his very heart\nof hearts; and they agreed to depart immediately, and present\nthemselves in answer to the Captain's letter.\n\nNow some hidden sympathies of things, or some coincidences, had\nthat day brought the Captain himself (toward whom Mr and Mrs Toots\nwere soon journeying) into the flowery train of wedlock; not as a\nprincipal, but as an accessory. It happened accidentally, and thus:\n\nThe Captain, having seen Florence and her baby for a moment, to his\nunbounded content, and having had a long talk with Walter, turned out\nfor a walk; feeling it necessary to have some solitary meditation on\nthe changes of human affairs, and to shake his glazed hat profoundly\nover the fall of Mr Dombey, for whom the generosity and simplicity of\nhis nature were awakened in a lively manner. The Captain would have\nbeen very low, indeed, on the unhappy gentleman's account, but for the\nrecollection of the baby; which afforded him such intense satisfaction\nwhenever it arose, that he laughed aloud as he went along the street,\nand, indeed, more than once, in a sudden impulse of joy, threw up his\nglazed hat and caught it again; much to the amazement of the\nspectators. The rapid alternations of light and shade to which these\ntwo conflicting subjects of reflection exposed the Captain, were so\nvery trying to his spirits, that he felt a long walk necessary to his\ncomposure; and as there is a great deal in the influence of harmonious\nassociations, he chose, for the scene of this walk, his old\nneighbourhood, down among the mast, oar, and block makers,\nship-biscuit bakers, coal-whippers, pitch-kettles, sailors, canals,\ndocks, swing-bridges, and other soothing objects.\n\nThese peaceful scenes, and particularly the region of Limehouse\nHole and thereabouts, were so influential in calming the Captain, that\nhe walked on with restored tranquillity, and was, in fact, regaling\nhimself, under his breath, with the ballad of Lovely Peg, when, on\nturning a corner, he was suddenly transfixed and rendered speechless\nby a triumphant procession that he beheld advancing towards him.\n\nThis awful demonstration was headed by that determined woman Mrs\nMacStinger, who, preserving a countenance of inexorable resolution,\nand wearing conspicuously attached to her obdurate bosom a stupendous\nwatch and appendages, which the Captain recognised at a glance as the\nproperty of Bunsby, conducted under her arm no other than that\nsagacious mariner; he, with the distraught and melancholy visage of a\ncaptive borne into a foreign land, meekly resigning himself to her\nwill. Behind them appeared the young MacStingers, in a body, exulting.\nBehind them,                M~ two ladies of a terrible and steadfast\naspect, leading between them a short gentleman in a tall hat, who\nlikewise exulted. In the wake, appeared Bunsby's boy, bearing\numbrellas. The whole were in good marching order; and a dreadful\nsmartness that pervaded the party would have sufficiently announced,\nif the intrepid countenances of the ladies had been wanting, that it\nwas a procession of sacrifice, and that the victim was Bunsby.\n\nThe first impulse of the Captain was to run away. This also\nappeared to be the first impulse of Bunsby, hopeless as its execution\nmust have proved. But a cry of recognition proceeding from the party,\nand Alexander MacStinger running up to the Captain with open arms, the\nCaptain struck.\n\n'Well, Cap'en Cuttle!' said Mrs MacStinger. 'This is indeed a\nmeeting! I bear no malice now, Cap'en Cuttle - you needn't fear that\nI'm a going to cast any reflections. I hope to go to the altar in\nanother spirit.' Here Mrs MacStinger paused, and drawing herself up,\nand inflating her bosom with a long breath, said, in allusion to the\nvictim, 'My 'usband, Cap'en Cuttle!'\n\nThe abject Bunsby looked neither to the right nor to the left, nor\nat his bride, nor at his friend, but straight before him at nothing.\nThe Captain putting out his hand, Bunsby put out his; but, in answer\nto the Captain's greeting, spake no word.\n\n'Cap'en Cuttle,' said Mrs MacStinger, 'if you would wish to heal up\npast animosities, and to see the last of your friend, my 'usband, as a\nsingle person, we should be 'appy of your company to chapel. Here is a\nlady here,' said Mrs MacStinger, turning round to the more intrepid of\nthe two, 'my bridesmaid, that will be glad of your protection, Cap'en\nCuttle.'\n\nThe short gentleman in the tall hat, who it appeared was the\nhusband of the other lady, and who evidently exulted at the reduction\nof a fellow creature to his own condition, gave place at this, and\nresigned the lady to Captain Cuttle. The lady immediately seized him,\nand, observing that there was no time to lose, gave the word, in a\nstrong voice, to advance.\n\nThe Captain's concern for his friend, not unmingled, at first, with\nsome concern for himself - for a shadowy terror that he might be\nmarried by violence, possessed him, until his knowledge of the service\ncame to his relief, and remembering the legal obligation of saying, 'I\nwill,' he felt himself personally safe so long as he resolved, if\nasked any question, distinctly to reply I won't' - threw him into a\nprofuse perspiration; and rendered him, for a time, insensible to the\nmovements of the procession, of which he now formed a feature, and to\nthe conversation of his fair companion. But as he became less\nagitated, he learnt from this lady that she was the widow of a Mr\nBokum, who had held an employment in the Custom House; that she was\nthe dearest friend of Mrs MacStinger, whom she considered a pattern\nfor her sex; that she had often heard of the Captain, and now hoped he\nhad repented of his past life; that she trusted Mr Bunsby knew what a\nblessing he had gained, but that she feared men seldom did know what\nsuch blessings were, until they had lost them; with more to the same\npurpose.\n\nAll this time, the Captain could not but observe that Mrs Bokum\nkept her eyes steadily on the bridegroom, and that whenever they came\nnear a court or other narrow turning which appeared favourable for\nflight, she was on the alert to cut him off if he attempted escape.\nThe other lady, too, as well as her husband, the short gentleman with\nthe tall hat, were plainly on guard, according to a preconcerted plan;\nand the wretched man was so secured by Mrs MacStinger, that any effort\nat self-preservation by flight was rendered futile. This, indeed, was\napparent to the mere populace, who expressed their perception of the\nfact by jeers and cries; to all of which, the dread MacStinger was\ninflexibly indifferent, while Bunsby himself appeared in a state of\nunconsciousness.\n\nThe Captain made many attempts to accost the philosopher, if only\nin a monosyllable or a signal; but always failed, in consequence of\nthe vigilance of the guard, and the difficulty, at all times peculiar\nto Bunsby's constitution, of having his attention aroused by any\noutward and visible sign whatever. Thus they approached the chapel, a\nneat whitewashed edifice, recently engaged by the Reverend\nMelchisedech Howler, who had consented, on very urgent solicitation,\nto give the world another two years of existence, but had informed his\nfollowers that, then, it must positively go.\n\nWhile the Reverend Melchisedech was offering up some extemporary\norisons, the Captain found an opportunity of growling in the\nbridegroom's ear:\n\n'What cheer, my lad, what cheer?'\n\nTo which Bunsby replied, with a forgetfulness of the Reverend\nMelchisedech, which nothing but his desperate circumstances could have\nexcused:\n\n'D-----d bad,'\n\n'Jack Bunsby,' whispered the Captain, 'do you do this here, of your\nown free will?'\n\nMr Bunsby answered 'No.'\n\n'Why do you do it, then, my lad?' inquired the Captain, not\nunnaturally.\n\nBunsby, still looking, and always looking with an immovable\ncountenance, at the opposite side of the world, made no reply.\n\n'Why not sheer off?' said the Captain. 'Eh?' whispered Bunsby, with\na momentary gleam of hope. 'Sheer off,' said the Captain.\n\n'Where's the good?' retorted the forlorn sage. 'She'd capter me\nagen.\n\n'Try!' replied the Captain. 'Cheer up! Come! Now's your time. Sheer\noff, Jack Bunsby!'\n\nJack Bunsby, however, instead of profiting by the advice, said in a\ndoleful whisper:\n\n'It all began in that there chest o' yourn. Why did I ever conwoy\nher into port that night?'\n\n'My lad,' faltered the Captain, 'I thought as you had come over\nher; not as she had come over you. A man as has got such opinions as\nyou have!'\n\nMr Bunsby merely uttered a suppressed groan.\n\n'Come!' said the Captain, nudging him with his elbow, 'now's your\ntime! Sheer off! I'll cover your retreat. The time's a flying. Bunsby!\nIt's for liberty. Will you once?'\n\nBunsby was immovable. 'Bunsby!' whispered the Captain, 'will you\ntwice ?' Bunsby wouldn't twice.\n\n'Bunsby!' urged the Captain, 'it's for liberty; will you three\ntimes? Now or never!'\n\nBunsby didn't then, and didn't ever; for Mrs MacStinger immediately\nafterwards married him.\n\nOne of the most frightful circumstances of the ceremony to the\nCaptain, was the deadly interest exhibited therein by Juliana\nMacStinger; and the fatal concentration of her faculties, with which\nthat promising child, already the image of her parent, observed the\nwhole proceedings. The Captain saw in this a succession of man-traps\nstretching out infinitely; a series of ages of oppression and\ncoercion, through which the seafaring line was doomed. It was a more\nmemorable sight than the unflinching steadiness of Mrs Bokum and the\nother lady, the exultation of the short gentleman in the tall hat, or\neven the fell inflexibility of Mrs MacStinger. The Master MacStingers\nunderstood little of what was going on, and cared less; being chiefly\nengaged, during the ceremony, in treading on one another's half-boots;\nbut the contrast afforded by those wretched infants only set off and\nadorned the precocious woman in Juliana. Another year or two, the\nCaptain thought, and to lodge where that child was, would be\ndestruction.\n\nThe ceremony was concluded by a general spring of the young family\non Mr Bunsby, whom they hailed by the endearing name of father, and\nfrom whom they solicited half-pence. These gushes of affection over,\nthe procession was about to issue forth again, when it was delayed for\nsome little time by an unexpected transport on the part of Alexander\nMacStinger. That dear child, it seemed, connecting a chapel with\ntombstones, when it was entered for any purpose apart from the\nordinary religious exercises, could not be persuaded but that his\nmother was now to be decently interred, and lost to him for ever. In\nthe anguish of this conviction, he screamed with astonishing force,\nand turned black in the face. However touching these marks of a tender\ndisposition were to his mother, it was not in the character of that\nremarkable woman to permit her recognition of them to degenerate into\nweakness. Therefore, after vainly endeavouring to convince his reason\nby shakes, pokes, bawlings-out, and similar applications to his head,\nshe led him into the air, and tried another method; which was\nmanifested to the marriage party by a quick succession of sharp\nsounds, resembling applause, and subsequently, by their seeing\nAlexander in contact with the coolest paving-stone in the court,\ngreatly flushed, and loudly lamenting.\n\nThe procession being then in a condition to form itself once more,\nand repair to Brig Place, where a marriage feast was in readiness,\nreturned as it had come; not without the receipt, by Bunsby, of many\nhumorous congratulations from the populace on his recently-acquired\nhappiness. The Captain accompanied it as far as the house-door, but,\nbeing made uneasy by the gentler manner of Mrs Bokum, who, now that\nshe was relieved from her engrossing duty - for the watchfulness and\nalacrity of the ladies sensibly diminished when the bridegroom was\nsafely married - had greater leisure to show an interest in his\nbehalf, there left it and the captive; faintly pleading an\nappointment, and promising to return presently. The Captain had\nanother cause for uneasiness, in remorsefully reflecting that he had\nbeen the first means of Bunsby's entrapment, though certainly without\nintending it, and through his unbounded faith in the resources of that\nphilosopher.\n\nTo go back to old Sol Gills at the wooden Midshipman's, and not\nfirst go round to ask how Mr Dombey was - albeit the house where he\nlay was out of London, and away on the borders of a fresh heath - was\nquite out of the Captain's course. So he got a lift when he was tired,\nand made out the journey gaily.\n\nThe blinds were pulled down, and the house so quiet, that the\nCaptain was almost afraid to knock; but listening at the door, he\nheard low voices within, very near it, and, knocking softly, was\nadmitted by Mr Toots. Mr Toots and his wife had, in fact, just arrived\nthere; having been at the Midshipman's to seek him, and having there\nobtained the address.\n\nThey were not so recently arrived, but that Mrs Toots had caught\nthe baby from somebody, taken it in her arms, and sat down on the\nstairs, hugging and fondling it. Florence was stooping down beside\nher; and no one could have said which Mrs Toots was hugging and\nfondling most, the mother or the child, or which was the tenderer,\nFlorence of Mrs Toots, or Mrs Toots of her, or both of the baby; it\nwas such a little group of love and agitation.\n\n'And is your Pa very ill, my darling dear Miss Floy?' asked Susan.\n\n'He is very, very ill,' said Florence. 'But, Susan, dear, you must\nnot speak to me as you used to speak. And what's this?' said Florence,\ntouching her clothes, in amazement. 'Your old dress, dear? Your old\ncap, curls, and all?'\n\nSusan burst into tears, and showered kisses on the little hand that\nhad touched her so wonderingly.\n\n'My dear Miss Dombey,' said Mr Toots, stepping forward, 'I'll\nexplain. She's the most extraordinary woman. There are not many to\nequal her! She has always said - she said before we were married, and\nhas said to this day - that whenever you came home, she'd come to you\nin no dress but the dress she used to serve you in, for fear she might\nseem strange to you, and you might like her less. I admire the dress\nmyself,' said Mr Toots, 'of all things. I adore her in it! My dear\nMiss Dombey, she'll be your maid again, your nurse, all that she ever\nwas, and more. There's no change in her. But, Susan, my dear,' said Mr\nToots, who had spoken with great feeling and high admiration, 'all I\nask is, that you'll remember the medical man, and not exert yourself\ntoo much!'\n\n\nCHAPTER 61.\n\nRelenting\n\n\n\nFlorence had need of help. Her father's need of it was sore, and\nmade the aid of her old friend invaluable. Death stood at his pillow.\nA shade, already, of what he had been, shattered in mind, and\nperilously sick in body, he laid his weary head down on the bed his\ndaughter's hands prepared for him, and had never raised it since.\n\nShe was always with him. He knew her, generally; though, in the\nwandering of his brain, he often confused the circumstances under\nwhich he spoke to her. Thus he would address her, sometimes, as if his\nboy were newly dead; and would tell her, that although he had said\nnothing of her ministering at the little bedside, yet he had seen it -\nhe had seen it; and then would hide his face and sob, and put out his\nworn hand. Sometimes he would ask her for herself. 'Where is\nFlorence?' 'I am here, Papa, I am here.' 'I don't know her!' he would\ncry. 'We have been parted so long, that I don't know her!' and then a\nstaring dread would he upon him, until she could soothe his\nperturbation; and recall the tears she tried so hard, at other times,\nto dry.\n\nHe rambled through the scenes of his old pursuits - through many\nwhere Florence lost him as she listened - sometimes for hours. He\nwould repeat that childish question, 'What is money?' and ponder on\nit, and think about it, and reason with himself, more or less\nconnectedly, for a good answer; as if it had never been proposed to\nhim until that moment. He would go on with a musing repetition of the\ntitle of his old firm twenty thousand times, and at every one of them,\nwould turn his head upon his pillow. He would count his children - one\n- two - stop, and go back, and begin again in the same way.\n\nBut this was when his mind was in its most distracted state. In all\nthe other phases of its illness, and in those to which it was most\nconstant, it always turned on Florence. What he would oftenest do was\nthis: he would recall that night he had so recently remembered, the\nnight on which she came down to his room, and would imagine that his\nheart smote him, and that he went out after her, and up the stairs to\nseek her. Then, confounding that time with the later days of the many\nfootsteps, he would be amazed at their number, and begin to count them\nas he followed her. Here, of a sudden, was a bloody footstep going on\namong the others; and after it there began to be, at intervals, doors\nstanding open, through which certain terrible pictures were seen, in\nmirrors, of haggard men, concealing something in their breasts. Still,\namong the many footsteps and the bloody footsteps here and there, was\nthe step of Florence. Still she was going on before. Still the\nrestless mind went, following and counting, ever farther, ever higher,\nas to the summit of a mighty tower that it took years to climb.\n\nOne day he inquired if that were not Susan who had spoken a long\nwhile ago.\n\nFlorence said 'Yes, dear Papa;' and asked him would he like to see\nher?\n\nHe said 'very much.' And Susan, with no little trepidation, showed\nherself at his bedside.\n\nIt seemed a great relief to him. He begged her not to go; to\nunderstand that he forgave her what she had said; and that she was to\nstay. Florence and he were very different now, he said, and very\nhappy. Let her look at this! He meant his drawing the gentle head down\nto his pillow, and laying it beside him.\n\nHe remained like this for days and weeks. At length, lying, the\nfaint feeble semblance of a man, upon his bed, and speaking in a voice\nso low that they could only hear him by listening very near to his\nlips, he became quiet. It was dimly pleasant to him now, to lie there,\nwith the window open, looking out at the summer sky and the trees:\nand, in the evening, at the sunset. To watch the shadows of the clouds\nand leaves, and seem to feel a sympathy with shadows. It was natural\nthat he should. To him, life and the world were nothing else.\n\nHe began to show now that he thought of Florence's fatigue: and\noften taxed his weakness to whisper to her, 'Go and walk, my dearest,\nin the sweet air. Go to your good husband!' One time when Walter was\nin his room, he beckoned him to come near, and to stoop down; and\npressing his hand, whispered an assurance to him that he knew he could\ntrust him with his child when he was dead.\n\nIt chanced one evening, towards sunset, when Florence and Walter\nwere sitting in his room together, as he liked to see them, that\nFlorence, having her baby in her arms, began in a low voice to sing to\nthe little fellow, and sang the old tune she had so often sung to the\ndead child: He could not bear it at the time; he held up his trembling\nhand, imploring her to stop; but next day he asked her to repeat it,\nand to do so often of an evening: which she did. He listening, with\nhis face turned away.\n\nFlorence was sitting on a certain time by his window, with her\nwork-basket between her and her old attendant, who was still her\nfaithful companion. He had fallen into a doze. It was a beautiful\nevening, with two hours of light to come yet; and the tranquillity and\nquiet made Florence very thoughtful. She was lost to everything for\nthe moment, but the occasion when the so altered figure on the bed had\nfirst presented her to her beautiful Mama; when a touch from Walter\nleaning on the back of her chair, made her start.\n\n'My dear,' said Walter, 'there is someone downstairs who wishes to\nspeak to you.\n\nShe fancied Walter looked grave, and asked him if anything had\nhappened.\n\n'No, no, my love!' said Walter. 'I have seen the gentleman myself,\nand spoken with him. Nothing has happened. Will you come?'\n\nFlorence put her arm through his; and confiding her father to the\nblack-eyed Mrs Toots, who sat as brisk and smart at her work as\nblack-eyed woman could, accompanied her husband downstairs. In the\npleasant little parlour opening on the garden, sat a gentleman, who\nrose to advance towards her when she came in, but turned off, by\nreason of some peculiarity in his legs, and was only stopped by the\ntable.\n\nFlorence then remembered Cousin Feenix, whom she had not at first\nrecognised in the shade of the leaves. Cousin Feenix took her hand,\nand congratulated her upon her marriage.\n\n'I could have wished, I am sure,' said Cousin Feenix, sitting down\nas Florence sat, to have had an earlier opportunity of offering my\ncongratulations; but, in point of fact, so many painful occurrences\nhave happened, treading, as a man may say, on one another's heels,\nthat I have been in a devil of a state myself, and perfectly unfit for\nevery description of society. The only description of society I have\nkept, has been my own; and it certainly is anything but flattering to\na man's good opinion of his own sources, to know that, in point of\nfact, he has the capacity of boring himself to a perfectly unlimited\nextent.'\n\nFlorence divined, from some indefinable constraint and anxiety in\nthis gentleman's manner - which was always a gentleman's, in spite of\nthe harmless little eccentricities that attached to it - and from\nWalter's manner no less, that something more immediately tending to\nsome object was to follow this.\n\n'I have been mentioning to my friend Mr Gay, if I may be allowed to\nhave the honour of calling him so,' said Cousin Feenix, 'that I am\nrejoiced to hear that my friend Dombey is very decidedly mending. I\ntrust my friend Dombey will not allow his mind to be too much preyed\nupon, by any mere loss of fortune. I cannot say that I have ever\nexperienced any very great loss of fortune myself: never having had,\nin point of fact, any great amount of fortune to lose. But as much as\nI could lose, I have lost; and I don't find that I particularly care\nabout it. I know my friend Dombey to be a devilish honourable man; and\nit's calculated to console my friend Dombey very much, to know, that\nthis is the universal sentiment. Even Tommy Screwzer, - a man of an\nextremely bilious habit, with whom my friend Gay is probably\nacquainted - cannot say a syllable in disputation of the fact.'\n\nFlorence felt, more than ever, that there was something to come;\nand looked earnestly for it. So earnestly, that Cousin Feenix\nanswered, as if she had spoken.\n\n'The fact is,' said Cousin Feenix, 'that my friend Gay and myself\nhave been discussing the propriety of entreating a favour at your\nhands; and that I have the consent of my friend Gay - who has met me\nin an exceedingly kind and open manner, for which I am very much\nindebted to him - to solicit it. I am sensible that so amiable a lady\nas the lovely and accomplished daughter of my friend Dombey will not\nrequire much urging; but I am happy to know, that I am supported by my\nfriend Gay's influence and approval. As in my parliamentary time, when\na man had a motion to make of any sort - which happened seldom in\nthose days, for we were kept very tight in hand, the leaders on both\nsides being regular Martinets, which was a devilish good thing for the\nrank and file, like myself, and prevented our exposing ourselves\ncontinually, as a great many of us had a feverish anxiety to do - as'\nin my parliamentary time, I was about to say, when a man had leave to\nlet off any little private popgun, it was always considered a great\npoint for him to say that he had the happiness of believing that his\nsentiments were not without an echo in the breast of Mr Pitt; the\npilot, in point of fact, who had weathered the storm. Upon which, a\ndevilish large number of fellows immediately cheered, and put him in\nspirits. Though the fact is, that these fellows, being under orders to\ncheer most excessively whenever Mr Pitt's name was mentioned, became\nso proficient that it always woke 'em. And they were so entirely\ninnocent of what was going on, otherwise, that it used to be commonly\nsaid by Conversation Brown - four-bottle man at the Treasury Board,\nwith whom the father of my friend Gay was probably acquainted, for it\nwas before my friend Gay's time - that if a man had risen in his\nplace, and said that he regretted to inform the house that there was\nan Honourable Member in the last stage of convulsions in the Lobby,\nand that the Honourable Member's name was Pitt, the approbation would\nhave been vociferous.'\n\nThis postponement of the point, put Florence in a flutter; and she\nlooked from Cousin Feenix to Walter, in increasing agitatioN\n\n'My love,' said Walter, 'there is nothing the matter.\n\n'There is nothing the matter, upon my honour,' said Cousin Feenix;\n'and I am deeply distressed at being the means of causing you a\nmoment's uneasiness. I beg to assure you that there is nothing the\nmatter. The favour that I have to ask is, simply - but it really does\nseem so exceedingly singular, that I should be in the last degree\nobliged to my friend Gay if he would have the goodness to break the -\nin point of fact, the ice,' said Cousin Feenix.\n\nWalter thus appealed to, and appealed to no less in the look that\nFlorence turned towards him, said:\n\n'My dearest, it is no more than this. That you will ride to London\nwith this gentleman, whom you know.\n\n'And my friend Gay, also - I beg your pardon!' interrupted Cousin\nFeenix.\n\nAnd with me - and make a visit somewhere.'\n\n'To whom?' asked Florence, looking from one to the other.\n\n'If I might entreat,' said Cousin Feenix, 'that you would not press\nfor an answer to that question, I would venture to take the liberty of\nmaking the request.'\n\n'Do you know, Walter?'\n\n'Yes.'\n\n'And think it right?'\n\n'Yes. Only because I am sure that you would too. Though there may\nbe reasons I very well understand, which make it better that nothing\nmore should be said beforehand.'\n\n'If Papa is still asleep, or can spare me if he is awake, I will go\nimmediately,' said Florence. And rising quietly, and glancing at them\nwith a look that was a little alarmed but perfectly confiding, left\nthe room.\n\nWhen she came back, ready to bear them company, they were talking\ntogether, gravely, at the window; and Florence could not but wonder\nwhat the topic was, that had made them so well acquainted in so short\na time. She did not wonder at the look of pride and love with which\nher husband broke off as she entered; for she never saw him, but that\nrested on her.\n\n'I will leave,' said Cousin Feenix, 'a card for my friend Dombey,\nsincerely trusting that he will pick up health and strength with every\nreturning hour. And I hope my friend Dombey will do me the favour to\nconsider me a man who has a devilish warm admiration of his character,\nas, in point of fact, a British merchant and a devilish upright\ngentleman. My place in the country is in a most confounded state of\ndilapidation, but if my friend Dombey should require a change of air,\nand would take up his quarters there, he would find it a remarkably\nhealthy spot - as it need be, for it's amazingly dull. If my friend\nDombey suffers from bodily weakness, and would allow me to recommend\nwhat has frequently done myself good, as a man who has been extremely\nqueer at times, and who lived pretty freely in the days when men lived\nvery freely, I should say, let it be in point of fact the yolk of an\negg, beat up with sugar and nutmeg, in a glass of sherry, and taken in\nthe morning with a slice of dry toast. Jackson, who kept the\nboxing-rooms in Bond Street - man of very superior qualifications,\nwith whose reputation my friend Gay is no doubt acquainted - used to\nmention that in training for the ring they substituted rum for sherry.\nI should recommend sherry in this case, on account of my friend Dombey\nbeing in an invalided condition; which might occasion rum to fly - in\npoint of fact to his head - and throw him into a devil of a state.'\n\nOf all this, Cousin Feenix delivered himself with an obviously\nnervous and discomposed air. Then, giving his arm to Florence, and\nputting the strongest possible constraint upon his wilful legs, which\nseemed determined to go out into the garden, he led her to the door,\nand handed her into a carriage that was ready for her reception.\n\nWalter entered after him, and they drove away.\n\nTheir ride was six or eight miles long. When they drove through\ncertain dull and stately streets, lying westward in London, it was\ngrowing dusk. Florence had, by this time, put her hand in Walter's;\nand was looking very earnestly, and with increasing agitation, into\nevery new street into which they turned.\n\nWhen the carriage stopped, at last, before that house in Brook\nStreet, where her father's unhappy marriage had been celebrated,\nFlorence said, 'Walter, what is this? Who is here?' Walter cheering\nher, and not replying, she glanced up at the house-front, and saw that\nall the windows were shut, as if it were uninhabited. Cousin Feenix\nhad by this time alighted, and was offering his hand.\n\n'Are you not coming, Walter?'\n\n'No, I will remain here. Don't tremble there is nothing to fear,\ndearest Florence.'\n\n'I know that, Walter, with you so near. I am sure of that, but - '\n\nThe door was softly opened, without any knock, and Cousin Feenix\nled her out of the summer evening air into the close dull house. More\nsombre and brown than ever, it seemed to have been shut up from the\nwedding-day, and to have hoarded darkness and sadness ever since.\n\nFlorence ascended the dusky staircase, trembling; and stopped, with\nher conductor, at the drawing-room door. He opened it, without\nspeaking, and signed an entreaty to her to advance into the inner\nroom, while he remained there. Florence, after hesitating an instant,\ncomplied.\n\nSitting by the window at a table, where she seemed to have been\nwriting or drawing, was a lady, whose head, turned away towards the\ndying light, was resting on her hand. Florence advancing, doubtfully,\nall at once stood still, as if she had lost the power of motion. The\nlady turned her head.\n\n'Great Heaven!' she said, 'what is this?'\n\n'No, no!' cried Florence, shrinking back as she rose up and putting\nout her hands to keep her off. 'Mama!'\n\nThey stood looking at each other. Passion and pride had worn it,\nbut it was the face of Edith, and beautiful and stately yet. It was\nthe face of Florence, and through all the terrified avoidance it\nexpressed, there was pity in it, sorrow, a grateful tender memory. On\neach face, wonder and fear were painted vividly; each so still and\nsilent, looking at the other over the black gulf of the irrevocable past.\n\nFlorence was the first to change. Bursting into tears, she said\nfrom her full heart, 'Oh, Mama, Mama! why do we meet like this? Why\nwere you ever kind to me when there was no one else, that we should\nmeet like this?'\n\nEdith stood before her, dumb and motionless. Her eyes were fixed\nupon her face.\n\n'I dare not think of that,' said Florence, 'I am come from Papa's\nsick bed. We are never asunder now; we never shall be' any more. If\nyou would have me ask his pardon, I will do it, Mama. I am almost sure\nhe will grant it now, if I ask him. May Heaven grant it to you, too,\nand comfort you!'\n\nShe answered not a word.\n\n'Walter - I am married to him, and we have a son,' said Florence,\ntimidly - 'is at the door, and has brought me here. I will tell him\nthat you are repentant; that you are changed,' said Florence, looking\nmournfully upon her; 'and he will speak to Papa with me, I know. Is\nthere anything but this that I can do?'\n\nEdith, breaking her silence, without moving eye or limb, answered\nslowly:\n\n'The stain upon your name, upon your husband's, on your child's.\nWill that ever be forgiven, Florence?'\n\n'Will it ever be, Mama? It is! Freely, freely, both by Walter and\nby me. If that is any consolation to you, there is nothing that you\nmay believe more certainly. You do not - you do not,' faltered\nFlorence, 'speak of Papa; but I am sure you wish that I should ask him\nfor his forgiveness. I am sure you do.'\n\nShe answered not a word.\n\n'I will!' said Florence. 'I will bring it you, if you will let me;\nand then, perhaps, we may take leave of each other, more like what we\nused to be to one another. I have not,' said Florence very gently, and\ndrawing nearer to her, 'I have not shrunk back from you, Mama, because\nI fear you, or because I dread to be disgraced by you. I only wish to\ndo my duty to Papa. I am very dear to him, and he is very dear to me.\nBut I never can forget that you were very good to me. Oh, pray to\nHeaven,' cried Florence, falling on her bosom, 'pray to Heaven, Mama,\nto forgive you all this sin and shame, and to forgive me if I cannot\nhelp doing this (if it is wrong), when I remember what you used to\nbe!'\n\nEdith, as if she fell beneath her touch, sunk down on her knees,\nand caught her round the neck.\n\n'Florence!' she cried. 'My better angel! Before I am mad again,\nbefore my stubbornness comes back and strikes me dumb, believe me,\nupon my soul I am innocent!'\n\n'Mama!'\n\n'Guilty of much! Guilty of that which sets a waste between us\nevermore. Guilty of what must separate me, through the whole remainder\nof my life, from purity and innocence - from you, of all the earth.\nGuilty of a blind and passionate resentment, of which I do not,\ncannot, will not, even now, repent; but not guilty with that dead man.\nBefore God!'\n\nUpon her knees upon the ground, she held up both her hands, and\nswore it.\n\n'Florence!' she said, 'purest and best of natures, - whom I love -\nwho might have changed me long ago, and did for a time work some\nchange even in the woman that I am, - believe me, I am innocent of\nthat; and once more, on my desolate heart, let me lay this dear head,\nfor the last time!'\n\nShe was moved and weeping. Had she been oftener thus in older days,\nshe had been happier now.\n\n'There is nothing else in all the world,' she said, 'that would\nhave wrung denial from me. No love, no hatred, no hope, no threat. I\nsaid that I would die, and make no sign. I could have done so, and I\nwould, if we had never met, Florence.\n\n'I trust,' said Cousin Feenix, ambling in at the door, and\nspeaking, half in the room, and half out of it, 'that my lovely and\naccomplished relative will excuse my having, by a little stratagem,\neffected this meeting. I cannot say that I was, at first, wholly\nincredulous as to the possibility of my lovely and accomplished\nrelative having, very unfortunately, committed herself with the\ndeceased person with white teeth; because in point of fact, one does\nsee, in this world - which is remarkable for devilish strange\narrangements, and for being decidedly the most unintelligible thing\nwithin a man's experience - very odd conjunctions of that sort. But as\nI mentioned to my friend Dombey, I could not admit the criminality of\nmy lovely and accomplished relative until it was perfectly\nestablished. And feeling, when the deceased person was, in point of\nfact, destroyed in a devilish horrible manner, that her position was a\nvery painful one - and feeling besides that our family had been a\nlittle to blame in not paying more attention to her, and that we are a\ncareless family - and also that my aunt, though a devilish lively\nwoman, had perhaps not been the very best of mothers - I took the\nliberty of seeking her in France, and offering her such protection as\na man very much out at elbows could offer. Upon which occasion, my\nlovely and accomplished relative did me the honour to express that she\nbelieved I was, in my way, a devilish good sort of fellow; and that\ntherefore she put herself under my protection. Which in point of fact\nI understood to be a kind thing on the part of my lovely and\naccomplished relative, as I am getting extremely shaky, and have\nderived great comfort from her solicitude.'\n\nEdith, who had taken Florence to a sofa, made a gesture with her\nhand as if she would have begged him to say no more.\n\n'My lovely and accomplished relative,' resumed Cousin Feenix, still\nambling about at the door, 'will excuse me, if, for her satisfaction,\nand my own, and that of my friend Dombey, whose lovely and\naccomplished daughter we so much admire, I complete the thread of my\nobservations. She will remember that, from the first, she and I never\nalluded to the subject of her elopement. My impression, certainly, has\nalways been, that there was a mystery in the affair which she could\nexplain if so inclined. But my lovely and accomplished relative being\na devilish resolute woman, I knew that she was not, in point of fact,\nto be trifled with, and therefore did not involve myself in any\ndiscussions. But, observing lately, that her accessible point did\nappear to be a very strong description of tenderness for the daughter\nof my friend Dombey, it occurred to me that if I could bring about a\nmeeting, unexpected on both sides, it might lead to beneficial\nresults. Therefore, we being in London, in the present private way,\nbefore going to the South of Italy, there to establish ourselves, in\npoint of fact, until we go to our long homes, which is a devilish\ndisagreeable reflection for a man, I applied myself to the discovery\nof the residence of my friend Gay - handsome man of an uncommonly\nfrank disposition, who is probably known to my lovely and accomplished\nrelative - and had the happiness of bringing his amiable wife to the\npresent place. And now,' said Cousin Feenix, with a real and genuine\nearnestness shining through the levity of his manner and his slipshod\nspeech, 'I do conjure my relative, not to stop half way, but to set\nright, as far as she can, whatever she has done wrong - not for the\nhonour of her family, not for her own fame, not for any of those\nconsiderations which unfortunate circumstances have induced her to\nregard as hollow, and in point of fact, as approaching to humbug - but\nbecause it is wrong, and not right.'\n\nCousin Feenix's legs consented to take him away after this; and\nleaving them alone together, he shut the door.\n\nEdith remained silent for some minutes, with Florence sitting close\nbeside her. Then she took from her bosom a sealed paper.\n\n'I debated with myself a long time,' she said in a low voice,\n'whether to write this at all, in case of dying suddenly or by\naccident, and feeling the want of it upon me. I have deliberated, ever\nsince, when and how to destroy it. Take it, Florence. The truth is\nwritten in it.'\n\n'Is it for Papa?' asked Florence.\n\n'It is for whom you will,' she answered. 'It is given to you, and\nis obtained by you. He never could have had it otherwise.'\n\nAgain they sat silent, in the deepening darkness.\n\n'Mama,' said Florence, 'he has lost his fortune; he has been at the\npoint of death; he may not recover, even now. Is there any word that I\nshall say to him from you?'\n\n'Did you tell me,' asked Edith, 'that you were very dear to him?'\n\n'Yes!' said Florence, in a thrilling voice.\n\n'Tell him I am sorry that we ever met.\n\n'No more?' said Florence after a pause.\n\n'Tell him, if he asks, that I do not repent of what I have done -\nnot yet - for if it were to do again to-morrow, I should do it. But if\nhe is a changed man  - '\n\nShe stopped. There was something in the silent touch of Florence's\nhand that stopped her.\n\n'But that being a changed man, he knows, now, it would never be.\nTell him I wish it never had been.'\n\n'May I say,' said Florence, 'that you grieved to hear of the\nafflictions he has suffered?'\n\n'Not,' she replied, 'if they have taught him that his daughter is\nvery dear to him. He will not grieve for them himself, one day, if\nthey have brought that lesson, Florence.'\n\n'You wish well to him, and would have him happy. I am sure you\nwould!' said Florence. 'Oh! let me be able, if I have the occasion at\nsome future time, to say so?'\n\nEdith sat with her dark eyes gazing steadfastly before her, and did\nnot reply until Florence had repeated her entreaty; when she drew her\nhand within her arm, and said, with the same thoughtful gaze upon the\nnight outside:\n\n'Tell him that if, in his own present, he can find any reason to\ncompassionate my past, I sent word that I asked him to do so. Tell him\nthat if, in his own present, he can find a reason to think less\nbitterly of me, I asked him to do so. Tell him, that, dead as we are\nto one another, never more to meet on this side of eternity, he knows\nthere is one feeling in common between us now, that there never was\nbefore.'\n\nHer sternness seemed to yield, and there were tears in her dark\neyes.\n\n'I trust myself to that,' she said, 'for his better thoughts of me,\nand mine of him. When he loves his Florence most, he will hate me\nleast. When he is most proud and happy in her and her children, he\nwill be most repentant of his own part in the dark vision of our\nmarried life. At that time, I will be repentant too - let him know it\nthen - and think that when I thought so much of all the causes that\nhad made me what I was, I needed to have allowed more for the causes\nthat had made him what he was. I will try, then, to forgive him his\nshare of blame. Let him try to forgive me mine!'\n\n'Oh Mama!' said Florence. 'How it lightens my heart, even in such a\nstrange meeting and parting, to hear this!'\n\n'Strange words in my own ears,' said Edith, 'and foreign to the\nsound of my own voice! But even if I had been the wretched creature I\nhave given him occasion to believe me, I think I could have said them\nstill, hearing that you and he were very dear to one another. Let him,\nwhen you are dearest, ever feel that he is most forbearing in his\nthoughts of me - that I am most forbearing in my thoughts of him!\nThose are the last words I send him! Now, goodbye, my life!'\n\nShe clasped her in her arms, and seemed to pour out all her woman's\nsoul of love and tenderness at once.\n\n'This kiss for your child! These kisses for a blessing on your\nhead! My own dear Florence, my sweet girl, farewell!'\n\n'To meet again!' cried Florence.\n\n'Never again! Never again! When you leave me in this dark room,\nthink that you have left me in the grave. Remember only that I was\nonce, and that I loved you!'\n\nAnd Florence left her, seeing her face no more, but accompanied by\nher embraces and caresses to the last.\n\nCousin Feenix met her at the door, and took her down to Walter in\nthe dingy dining room, upon whose shoulder she laid her head weeping.\n\n'I am devilish sorry,' said Cousin Feenix, lifting his wristbands\nto his eyes in the simplest manner possible, and without the least\nconcealment, 'that the lovely and accomplished daughter of my friend\nDombey and amiable wife of my friend Gay, should have had her\nsensitive nature so very much distressed and cut up by the interview\nwhich is just concluded. But I hope and trust I have acted for the\nbest, and that my honourable friend Dombey will find his mind relieved\nby the disclosures which have taken place. I exceedingly lament that\nmy friend Dombey should have got himself, in point of fact, into the\ndevil's own state of conglomeration by an alliance with our family;\nbut am strongly of opinion that if it hadn't been for the infernal\nscoundrel Barker - man with white teeth - everything would have gone\non pretty smoothly. In regard to my relative who does me the honour to\nhave formed an uncommonly good opinion of myself, I can assure the\namiable wife of my friend Gay, that she may rely on my being, in point\nof fact, a father to her. And in regard to the changes of human life,\nand the extraordinary manner in which we are perpetually conducting\nourselves, all I can say is, with my friend Shakespeare - man who\nwasn't for an age but for all time, and with whom my friend Gay is no\ndoubt acquainted - that its like the shadow of a dream.'\n\n\nCHAPTER 62.\n\nFinal\n\n\n\nA bottle that has been long excluded from the light of day, and is\nhoary with dust and cobwebs, has been brought into the sunshine; and\nthe golden wine within it sheds a lustre on the table.\n\nIt is the last bottle of the old Madiera.\n\n'You are quite right, Mr Gills,' says Mr Dombey. 'This is a very\nrare and most delicious wine.'\n\nThe Captain, who is of the party, beams with joy. There is a very\nhalo of delight round his glowing forehead.\n\n'We always promised ourselves, Sir,' observes Mr Gills,' Ned and\nmyself, I mean - '\n\nMr Dombey nods at the Captain, who shines more and more with\nspeechless gratification.\n\n'-that we would drink this, one day or other, to Walter safe at\nhome: though such a home we never thought of. If you don't object to\nour old whim, Sir, let us devote this first glass to Walter and his\nwife.'\n\n'To Walter and his wife!' says Mr Dombey. 'Florence, my child' -\nand turns to kiss her.\n\n'To Walter and his wife!' says Mr Toots.\n\n'To Wal'r and his wife!' exclaims the Captain. 'Hooroar!' and the\nCaptain exhibiting a strong desire to clink his glass against some\nother glass, Mr Dombey, with a ready hand, holds out his. The others\nfollow; and there is a blithe and merry ringing, as of a little peal\nof marriage bells.\n\n\nOther buried wine grows older, as the old Madeira did in its time;\nand dust and cobwebs thicken on the bottles.\n\nMr Dombey is a white-haired gentleman, whose face bears heavy marks\nof care and suffering; but they are traces of a storm that has passed\non for ever, and left a clear evening in its track.\n\nAmbitious projects trouble him no more. His only pride is in his\ndaughter and her husband. He has a silent, thoughtful, quiet manner,\nand is always with his daughter. Miss Tox is not infrequently of the\nfamily party, and is quite devoted to it, and a great favourite. Her\nadmiration of her once stately patron is, and has been ever since the\nmorning of her shock in Princess's Place, platonic, but not weakened\nin the least.\n\nNothing has drifted to him from the wreck of his fortunes, but a\ncertain annual sum that comes he knows not how, with an earnest\nentreaty that he will not seek to discover, and with the assurance\nthat it is a debt, and an act of reparation. He has consulted with his\nold clerk about this, who is clear it may be honourably accepted, and\nhas no doubt it arises out of some forgotten transaction in the times\nof the old House.\n\nThat hazel-eyed bachelor, a bachelor no more, is married now, and\nto the sister of the grey-haired Junior. He visits his old chief\nsometimes, but seldom. There is a reason in the greyhaired Junior's\nhistory, and yet a stronger reason in his name, why he should keep\nretired from his old employer; and as he lives with his sister and her\nhusband, they participate in that retirement. Walter sees them\nsometimes - Florence too - and the pleasant house resounds with\nprofound duets arranged for the Piano-Forte and Violoncello, and with\nthe labours of Harmonious Blacksmiths.\n\nAnd how goes the wooden Midshipman in these changed days? Why, here\nhe still is, right leg foremost, hard at work upon the hackney\ncoaches, and more on the alert than ever, being newly painted from his\ncocked hat to his buckled shoes; and up above him, in golden\ncharacters, these names shine refulgent, GILLS AND CUTTLE.\n\nNot another stroke of business does the Midshipman achieve beyond\nhis usual easy trade. But they do say, in a circuit of some half-mile\nround the blue umbrella in Leadenhall Market, that some of Mr Gills's\nold investments are coming out wonderfully well; and that instead of\nbeing behind the time in those respects, as he supposed, he was, in\ntruth, a little before it, and had to wait the fulness of the time and\nthe design. The whisper is that Mr Gills's money has begun to turn\nitself, and that it is turning itself over and over pretty briskly.\nCertain it is that, standing at his shop-door, in his coffee-coloured\nsuit, with his chronometer in his pocket, and his spectacles on his\nforehead, he don't appear to break his heart at customers not coming,\nbut looks very jovial and contented, though full as misty as of yore.\n\nAs to his partner, Captain Cuttle, there is a fiction of a business\nin the Captain's mind which is better than any reality. The Captain is\nas satisfied of the Midshipman's importance to the commerce and\nnavigation of the country, as he could possibly be, if no ship left\nthe Port of London without the Midshipman's assistance. His delight in\nhis own name over the door, is inexhaustible. He crosses the street,\ntwenty times a day, to look at it from the other side of the way; and\ninvariably says, on these occasions, 'Ed'ard Cuttle, my lad, if your\nmother could ha' know'd as you would ever be a man o' science, the\ngood old creetur would ha' been took aback in-deed!'\n\nBut here is Mr Toots descending on the Midshipman with violent\nrapidity, and Mr Toots's face is very red as he bursts into the little\nparlour.\n\n'Captain Gills,' says Mr Toots, 'and Mr Sols, I am happy to inform\nyou that Mrs Toots has had an increase to her family.\n\n'And it does her credit!' cries the Captain.\n\n'I give you joy, Mr Toots!' says old Sol.\n\n'Thank'ee,' chuckles Mr Toots, 'I'm very much obliged to you. I\nknew that you'd be glad to hear, and so I came down myself. We're\npositively getting on, you know. There's Florence, and Susan, and now\nhere's another little stranger.'\n\n'A female stranger?' inquires the Captain.\n\n'Yes, Captain Gills,' says Mr Toots, 'and I'm glad of it. The\noftener we can repeat that most extraordinary woman, my opinion is,\nthe better!'\n\n'Stand by!' says the Captain, turning to the old case-bottle with\nno throat - for it is evening, and the Midshipman's usual moderate\nprovision of pipes and glasses is on the board. 'Here's to her, and\nmay she have ever so many more!'\n\n'Thank'ee, Captain Gills,' says the delighted Mr Toots. 'I echo the\nsentiment. If you'll allow me, as my so doing cannot be unpleasant to\nanybody, under the circumstances, I think I'll take a pipe.'\n\nMr Toots begins to smoke, accordingly, and in the openness of his\nheart is very loquacious.\n\n'Of all the remarkable instances that that delightful woman has\ngiven of her excellent sense, Captain Gills and Mr Sols,' said Mr\nToots, 'I think none is more remarkable than the perfection with which\nshe has understood my devotion to Miss Dombey.'\n\nBoth his auditors assent.\n\n'Because you know,' says Mr Toots, 'I have never changed my\nsentiments towards Miss Dombey. They are the same as ever. She is the\nsame bright vision to me, at present, that she was before I made\nWalters's acquaintance. When Mrs Toots and myself first began to talk\nof - in short, of the tender passion, you know, Captain Gills.'\n\n'Ay, ay, my lad,' says the Captain, 'as makes us all slue round -\nfor which you'll overhaul the book - '\n\n'I shall certainly do so, Captain Gills,' says Mr Toots, with great\nearnestness; 'when we first began to mention such subjects, I\nexplained that I was what you may call a Blighted Flower, you know.'\n\nThe Captain approves of this figure greatly; and murmurs that no\nflower as blows, is like the rose.\n\n'But Lord bless me,' pursues Mr Toots, 'she was as entirely\nconscious of the state of my feelings as I was myself. There was\nnothing I could tell her. She was the only person who could have stood\nbetween me and the silent Tomb, and she did it, in a manner to command\nmy everlasting admiration. She knows that there's nobody in the world\nI look up to, as I do to Miss Dombey. Knows that there's nothing on\nearth I wouldn't do for Miss Dombey. She knows that I consider Miss\nDombey the most beautiful, the most amiable, the most angelic of her\nsex. What is her observation upon that? The perfection of sense. \"My\ndear, you're right. I think so too.\"'\n\n'And so do I!' says the Captain.\n\n'So do I,' says Sol Gills.\n\n'Then,' resumes Mr Toots, after some contemplative pulling at his\npipe, during which his visage has expressed the most contented\nreflection, 'what an observant woman my wife is! What sagacity she\npossesses! What remarks she makes! It was only last night, when we\nwere sitting in the enjoyment of connubial bliss - which, upon my word\nand honour, is a feeble term to express my feelings in the society of\nmy wife - that she said how remarkable it was to consider the present\nposition of our friend Walters. \"Here,\" observes my wife, \"he is,\nreleased from sea-going, after that first long voyage with his young\nbride\" - as you know he was, Mr Sols.'\n\n'Quite true,' says the old Instrument-maker, rubbing his hands.\n\n\"'Here he is,\" says my wife, \"released from that, immediately;\nappointed by the same establishment to a post of great trust and\nconfidence at home; showing himself again worthy; mounting up the\nladder with the greatest expedition; beloved by everybody; assisted by\nhis uncle at the very best possible time of his fortunes\" - which I\nthink is the case, Mr Sols? My wife is always correct.'\n\n'Why yes, yes - some of our lost ships, freighted with gold, have\ncome home, truly,' returns old Sol, laughing. 'Small craft, Mr Toots,\nbut serviceable to my boy!'\n\n'Exactly so,' says Mr Toots. 'You'll never find my wife wrong.\n\"Here he is,\" says that most remarkable woman, \"so situated, - and\nwhat follows? What follows?\" observed Mrs Toots. Now pray remark,\nCaptain Gills, and Mr Sols, the depth of my wife's penetration. \"Why\nthat, under the very eye of Mr Dombey, there is a foundation going on,\nupon which a - an Edifice;\" that was Mrs Toots's word,' says Mr Toots\nexultingly, \"'is gradually rising, perhaps to equal, perhaps excel,\nthat of which he was once the head, and the small beginnings of which\n(a common fault, but a bad one, Mrs Toots said) escaped his memory.\nThus,\" said my wife, \"from his daughter, after all, another Dombey and\nSon will ascend\" - no \"rise;\" that was Mrs Toots's word -\n\"triumphant!\"'\n\nMr Toots, with the assistance of his pipe - which he is extremely\nglad to devote to oratorical purposes, as its proper use affects him\nwith a very uncomfortable sensation - does such grand justice to this\nprophetic sentence of his wife's, that the Captain, throwing away his\nglazed hat in a state of the greatest excitement, cries:\n\n'Sol Gills, you man of science and my ould pardner, what did I tell\nWal'r to overhaul on that there night when he first took to business?\nWas it this here quotation, \"Turn again Whittington, Lord Mayor of\nLondon, and when you are old you will never depart from it\". Was it\nthem words, Sol Gills?'\n\n'It certainly was, Ned,' replied the old Instrument-maker. 'I\nremember well.'\n\n'Then I tell you what,' says the Captain, leaning back in his\nchair, and composing his chest for a prodigious roar. 'I'll give you\nLovely Peg right through; and stand by, both on you, for the chorus!'\n\n\nBuried wine grows older, as the old Madeira did, in its time; and\ndust and cobwebs thicken on the bottles.\n\nAutumn days are shining, and on the sea-beach there are often a\nyoung lady, and a white-haired gentleman. With them, or near them, are\ntwo children: boy and girl. And an old dog is generally in their\ncompany.\n\nThe white-haired gentleman walks with the little boy, talks with\nhim, helps him in his play, attends upon him, watches him as if he\nwere the object of his life. If he be thoughtful, the white-haired\ngentleman is thoughtful too; and sometimes when the child is sitting\nby his side, and looks up in his face, asking him questions, he takes\nthe tiny hand in his, and holding it, forgets to answer. Then the\nchild says:\n\n'What, grandpa! Am I so like my poor little Uncle again?'\n\n'Yes, Paul. But he was weak, and you are very strong.'\n\n'Oh yes, I am very strong.'\n\n'And he lay on a little bed beside the sea, and you can run about.'\n\nAnd so they range away again, busily, for the white-haired\ngentleman likes best to see the child free and stirring; and as they\ngo about together, the story of the bond between them goes about, and\nfollows them.\n\nBut no one, except Florence, knows the measure of the white-haired\ngentleman's affection for the girl. That story never goes about. The\nchild herself almost wonders at a certain secrecy he keeps in it. He\nhoards her in his heart. He cannot bear to see a cloud upon her face.\nHe cannot bear to see her sit apart. He fancies that she feels a\nslight, when there is none. He steals away to look at her, in her\nsleep. It pleases him to have her come, and wake him in the morning.\nHe is fondest of her and most loving to her, when there is no creature\nby. The child says then, sometimes:\n\n'Dear grandpapa, why do you cry when you kiss me?'\n\nHe only answers, 'Little Florence! little Florence!' and smooths\naway the curls that shade her earnest eyes.\n\nThe voices in the waves speak low to him of Florence, day and night\n- plainest when he, his blooming daughter, and her husband, beside\nthem in the evening, or sit at an open window, listening to their\nroar. They speak to him of Florence and his altered heart; of Florence\nand their ceaseless murmuring to her of the love, eternal and\nillimitable, extending still, beyond the sea, beyond the sky, to the\ninvisible country far away.\n\nNever from the mighty sea may voices rise too late, to come between\nus and the unseen region on the other shore! Better, far better, that\nthey whispered of that region in our childish ears, and the swift\nriver hurried us away!\n\n\n\n\nEnd of The Project Gutenberg Etext of Domby and Son, by Dickens\n\n\n\n\n\nEnd of the\n\nPREFACE OF 1848\n\nI cannot forego my usual opportunity of saying\nfarewell to my readers in this greetingplace,\nthough I have only to acknowledge the unbounded\nwarmth and earnestness of their sympathy in every\nstage of the journey we have just concluded.\n\nIf any of them have felt a sorrow in one of the\nprincipal incidents on which this fiction turns, I\nhope it may be a sorrow of that sort which endears\nthe sharers in it, one to another. This is not\nunselfish in me. I may claim to have felt it, at least\nas much as anybody else; and I would fain be\nremembered kindly for my part in the experience.\n\n\nDEVONSHIRE TERRACE,\nTwenty-Fourth March, 1848.\n\n\nPREFACE OF 1867\n\nI make so bold as to believe that the faculty (or the habit) of\ncorrectly observing the characters of men, is a rare one. I have not\neven found, within my experience, that the faculty (or the habit) of\ncorrectly observing so much as the faces of men, is a general one\nby any means. The two commonest mistakes in judgement that I\nsuppose to arise from the former default, are, the confounding of\nshyness with arrogance - a very common mistake indeed - and the\nnot understanding that an obstinate nature exists in a perpetual\nstruggle with itself.\n\nMr Dombey undergoes no violent change, either in this book, or\nin real life. A sense of his injustice is within him, all along. The\nmore he represses it, the more unjust he necessarily is. Internal\nshame and external circumstances may bring the contest to a close\nin a week, or a day; but, it has been a contest for years, and is only\nfought out after a long balance of victory.\n\nI began this book by the Lake of Geneva, and went on with it\nfor some months in France, before pursuing it in England. The\nassociation between the writing and the place of writing is so\ncuriously strong in my mind, that at this day, although I know, in\nmy fancy, every stair in the little midshipman's house, and could\nswear to every pew in the church in which Florence was married,\nor to every young gentleman's bedstead in Doctor Blimber's\nestablishment, I yet confusedly imagine Captain Cuttle as secluding\nhimself from Mrs MacStinger among the mountains of Switzerland.\nSimilarly, when I am reminded by any chance of what it was\nthat the waves were always saying, my remembrance wanders for\na whole winter night about the streets of Paris - as I restlessly did\nwith a heavy heart, on the night when I had written the chapter in\nwhich my little friend and I parted company.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of Domby and Son, by Dickens\n\nThe Project Gutenberg Etext of Doctor Marigold by Charles Dickens\n#42 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nDoctor Marigold\n\nby Charles Dickens\n\nAugust, 1998  [Etext #1415]\n\n\nThe Project Gutenberg Etext of Doctor Marigold by Charles Dickens\n*******This file should be named drmrg10.txt or drmrg10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, drmrg11.txt\nVERSIONS based on separate sources get new LETTER, drmrg10a.txt\n\n\nThis etext was prepared from the 1894 Chapman and Hall \"Christmas\nStories\" edition by David Price, email ccx074@coventry.ac.uk\n\nProject Gutenberg Etexts are usually created from multiple editions,\nall of which are in the Public Domain in the United States, unless a\ncopyright notice is included.  Therefore, we do NOT keep these books\nin compliance with any particular paper edition, usually otherwise.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month, or 384 more Etexts in 1998 for a total of 1500+\nIf these reach just 10% of the computerized population, then the\ntotal should reach over 150 billion Etexts given away.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/CMU\": and are\ntax deductible to the extent allowable by law.  (CMU = Carnegie-\nMellon University).\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nCarnegie-Mellon University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association/Carnegie-Mellon\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Carnegie-Mellon University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThis etext was prepared from the 1894 Chapman and Hall \"Christmas\nStories\" edition by David Price, email ccx074@coventry.ac.uk\n\n\n\n\n\nDOCTOR MARIGOLD\n\n\n\n\nI am a Cheap Jack, and my own father's name was Willum Marigold.  It\nwas in his lifetime supposed by some that his name was William, but\nmy own father always consistently said, No, it was Willum.  On which\npoint I content myself with looking at the argument this way:  If a\nman is not allowed to know his own name in a free country, how much\nis he allowed to know in a land of slavery?  As to looking at the\nargument through the medium of the Register, Willum Marigold come\ninto the world before Registers come up much,--and went out of it\ntoo.  They wouldn't have been greatly in his line neither, if they\nhad chanced to come up before him.\n\nI was born on the Queen's highway, but it was the King's at that\ntime.  A doctor was fetched to my own mother by my own father, when\nit took place on a common; and in consequence of his being a very\nkind gentleman, and accepting no fee but a tea-tray, I was named\nDoctor, out of gratitude and compliment to him.  There you have me.\nDoctor Marigold.\n\nI am at present a middle-aged man of a broadish build, in cords,\nleggings, and a sleeved waistcoat the strings of which is always\ngone behind.  Repair them how you will, they go like fiddle-strings.\nYou have been to the theatre, and you have seen one of the wiolin-\nplayers screw up his wiolin, after listening to it as if it had been\nwhispering the secret to him that it feared it was out of order, and\nthen you have heard it snap.  That's as exactly similar to my\nwaistcoat as a waistcoat and a wiolin can be like one another.\n\nI am partial to a white hat, and I like a shawl round my neck wore\nloose and easy.  Sitting down is my favourite posture.  If I have a\ntaste in point of personal jewelry, it is mother-of-pearl buttons.\nThere you have me again, as large as life.\n\nThe doctor having accepted a tea-tray, you'll guess that my father\nwas a Cheap Jack before me.  You are right.  He was.  It was a\npretty tray.  It represented a large lady going along a serpentining\nup-hill gravel-walk, to attend a little church.  Two swans had\nlikewise come astray with the same intentions.  When I call her a\nlarge lady, I don't mean in point of breadth, for there she fell\nbelow my views, but she more than made it up in heighth; her heighth\nand slimness was--in short THE heighth of both.\n\nI often saw that tray, after I was the innocently smiling cause (or\nmore likely screeching one) of the doctor's standing it up on a\ntable against the wall in his consulting-room.  Whenever my own\nfather and mother were in that part of the country, I used to put my\nhead (I have heard my own mother say it was flaxen curls at that\ntime, though you wouldn't know an old hearth-broom from it now till\nyou come to the handle, and found it wasn't me) in at the doctor's\ndoor, and the doctor was always glad to see me, and said, \"Aha, my\nbrother practitioner!  Come in, little M.D.  How are your\ninclinations as to sixpence?\"\n\nYou can't go on for ever, you'll find, nor yet could my father nor\nyet my mother.  If you don't go off as a whole when you are about\ndue, you're liable to go off in part, and two to one your head's the\npart.  Gradually my father went off his, and my mother went off\nhers.  It was in a harmless way, but it put out the family where I\nboarded them.  The old couple, though retired, got to be wholly and\nsolely devoted to the Cheap Jack business, and were always selling\nthe family off.  Whenever the cloth was laid for dinner, my father\nbegan rattling the plates and dishes, as we do in our line when we\nput up crockery for a bid, only he had lost the trick of it, and\nmostly let 'em drop and broke 'em.  As the old lady had been used to\nsit in the cart, and hand the articles out one by one to the old\ngentleman on the footboard to sell, just in the same way she handed\nhim every item of the family's property, and they disposed of it in\ntheir own imaginations from morning to night.  At last the old\ngentleman, lying bedridden in the same room with the old lady, cries\nout in the old patter, fluent, after having been silent for two days\nand nights:  \"Now here, my jolly companions every one,--which the\nNightingale club in a village was held, At the sign of the Cabbage\nand Shears, Where the singers no doubt would have greatly excelled,\nBut for want of taste, voices and ears,--now, here, my jolly\ncompanions, every one, is a working model of a used-up old Cheap\nJack, without a tooth in his head, and with a pain in every bone:\nso like life that it would be just as good if it wasn't better, just\nas bad if it wasn't worse, and just as new if it wasn't worn out.\nBid for the working model of the old Cheap Jack, who has drunk more\ngunpowder-tea with the ladies in his time than would blow the lid\noff a washerwoman's copper, and carry it as many thousands of miles\nhigher than the moon as naught nix naught, divided by the national\ndebt, carry nothing to the poor-rates, three under, and two over.\nNow, my hearts of oak and men of straw, what do you say for the lot?\nTwo shillings, a shilling, tenpence, eightpence, sixpence,\nfourpence.  Twopence?  Who said twopence?  The gentleman in the\nscarecrow's hat?  I am ashamed of the gentleman in the scarecrow's\nhat.  I really am ashamed of him for his want of public spirit.  Now\nI'll tell you what I'll do with you.  Come!  I'll throw you in a\nworking model of a old woman that was married to the old Cheap Jack\nso long ago that upon my word and honour it took place in Noah's\nArk, before the Unicorn could get in to forbid the banns by blowing\na tune upon his horn.  There now!  Come!  What do you say for both?\nI'll tell you what I'll do with you.  I don't bear you malice for\nbeing so backward.  Here!  If you make me a bid that'll only reflect\na little credit on your town, I'll throw you in a warming-pan for\nnothing, and lend you a toasting-fork for life.  Now come; what do\nyou say after that splendid offer?  Say two pound, say thirty\nshillings, say a pound, say ten shillings, say five, say two and\nsix.  You don't say even two and six?  You say two and three?  No.\nYou shan't have the lot for two and three.  I'd sooner give it to\nyou, if you was good-looking enough.  Here!  Missis!  Chuck the old\nman and woman into the cart, put the horse to, and drive 'em away\nand bury 'em!\"  Such were the last words of Willum Marigold, my own\nfather, and they were carried out, by him and by his wife, my own\nmother, on one and the same day, as I ought to know, having followed\nas mourner.\n\nMy father had been a lovely one in his time at the Cheap Jack work,\nas his dying observations went to prove.  But I top him.  I don't\nsay it because it's myself, but because it has been universally\nacknowledged by all that has had the means of comparison.  I have\nworked at it.  I have measured myself against other public\nspeakers,--Members of Parliament, Platforms, Pulpits, Counsel\nlearned in the law,--and where I have found 'em good, I have took a\nbit of imagination from 'em, and where I have found 'em bad, I have\nlet 'em alone.  Now I'll tell you what.  I mean to go down into my\ngrave declaring that of all the callings ill used in Great Britain,\nthe Cheap Jack calling is the worst used.  Why ain't we a\nprofession?  Why ain't we endowed with privileges?  Why are we\nforced to take out a hawker's license, when no such thing is\nexpected of the political hawkers?  Where's the difference betwixt\nus?  Except that we are Cheap Jacks and they are Dear Jacks, I don't\nsee any difference but what's in our favour.\n\nFor look here!  Say it's election time.  I am on the footboard of my\ncart in the market-place, on a Saturday night.  I put up a general\nmiscellaneous lot.  I say:  \"Now here, my free and independent\nwoters, I'm a going to give you such a chance as you never had in\nall your born days, nor yet the days preceding.  Now I'll show you\nwhat I am a going to do with you.  Here's a pair of razors that'll\nshave you closer than the Board of Guardians; here's a flat-iron\nworth its weight in gold; here's a frying-pan artificially flavoured\nwith essence of beefsteaks to that degree that you've only got for\nthe rest of your lives to fry bread and dripping in it and there you\nare replete with animal food; here's a genuine chronometer watch in\nsuch a solid silver case that you may knock at the door with it when\nyou come home late from a social meeting, and rouse your wife and\nfamily, and save up your knocker for the postman; and here's half-a-\ndozen dinner plates that you may play the cymbals with to charm baby\nwhen it's fractious.  Stop!  I'll throw in another article, and I'll\ngive you that, and it's a rolling-pin; and if the baby can only get\nit well into its mouth when its teeth is coming and rub the gums\nonce with it, they'll come through double, in a fit of laughter\nequal to being tickled.  Stop again!  I'll throw you in another\narticle, because I don't like the looks of you, for you haven't the\nappearance of buyers unless I lose by you, and because I'd rather\nlose than not take money to-night, and that's a looking-glass in\nwhich you may see how ugly you look when you don't bid.  What do you\nsay now?  Come!  Do you say a pound?  Not you, for you haven't got\nit.  Do you say ten shillings?  Not you, for you owe more to the\ntallyman.  Well then, I'll tell you what I'll do with you.  I'll\nheap 'em all on the footboard of the cart,--there they are! razors,\nflat watch, dinner plates, rolling-pin, and away for four shillings,\nand I'll give you sixpence for your trouble!\"  This is me, the Cheap\nJack.  But on the Monday morning, in the same market-place, comes\nthe Dear Jack on the hustings--HIS cart--and, what does HE say?\n\"Now my free and independent woters, I am a going to give you such a\nchance\" (he begins just like me) \"as you never had in all your born\ndays, and that's the chance of sending Myself to Parliament.  Now\nI'll tell you what I am a going to do for you.  Here's the interests\nof this magnificent town promoted above all the rest of the\ncivilised and uncivilised earth.  Here's your railways carried, and\nyour neighbours' railways jockeyed.  Here's all your sons in the\nPost-office.  Here's Britannia smiling on you.  Here's the eyes of\nEurope on you.  Here's uniwersal prosperity for you, repletion of\nanimal food, golden cornfields, gladsome homesteads, and rounds of\napplause from your own hearts, all in one lot, and that's myself.\nWill you take me as I stand?  You won't?  Well, then, I'll tell you\nwhat I'll do with you.  Come now!  I'll throw you in anything you\nask for.  There!  Church-rates, abolition of more malt tax, no malt\ntax, universal education to the highest mark, or uniwersal ignorance\nto the lowest, total abolition of flogging in the army or a dozen\nfor every private once a month all round, Wrongs of Men or Rights of\nWomen--only say which it shall be, take 'em or leave 'em, and I'm of\nyour opinion altogether, and the lot's your own on your own terms.\nThere!  You won't take it yet!  Well, then, I'll tell you what I'll\ndo with you.  Come!  You ARE such free and independent woters, and I\nam so proud of you,--you ARE such a noble and enlightened\nconstituency, and I AM so ambitious of the honour and dignity of\nbeing your member, which is by far the highest level to which the\nwings of the human mind can soar,--that I'll tell you what I'll do\nwith you.  I'll throw you in all the public-houses in your\nmagnificent town for nothing.  Will that content you?  It won't?\nYou won't take the lot yet?  Well, then, before I put the horse in\nand drive away, and make the offer to the next most magnificent town\nthat can be discovered, I'll tell you what I'll do.  Take the lot,\nand I'll drop two thousand pound in the streets of your magnificent\ntown for them to pick up that can.  Not enough?  Now look here.\nThis is the very furthest that I'm a going to.  I'll make it two\nthousand five hundred.  And still you won't?  Here, missis!  Put the\nhorse--no, stop half a moment, I shouldn't like to turn my back upon\nyou neither for a trifle, I'll make it two thousand seven hundred\nand fifty pound.  There!  Take the lot on your own terms, and I'll\ncount out two thousand seven hundred and fifty pound on the foot-\nboard of the cart, to be dropped in the streets of your magnificent\ntown for them to pick up that can.  What do you say?  Come now!  You\nwon't do better, and you may do worse.  You take it?  Hooray!  Sold\nagain, and got the seat!\"\n\nThese Dear Jacks soap the people shameful, but we Cheap Jacks don't.\nWe tell 'em the truth about themselves to their faces, and scorn to\ncourt 'em.  As to wenturesomeness in the way of puffing up the lots,\nthe Dear Jacks beat us hollow.  It is considered in the Cheap Jack\ncalling, that better patter can be made out of a gun than any\narticle we put up from the cart, except a pair of spectacles.  I\noften hold forth about a gun for a quarter of an hour, and feel as\nif I need never leave off.  But when I tell 'em what the gun can do,\nand what the gun has brought down, I never go half so far as the\nDear Jacks do when they make speeches in praise of THEIR guns--their\ngreat guns that set 'em on to do it.  Besides, I'm in business for\nmyself:  I ain't sent down into the market-place to order, as they\nare.  Besides, again, my guns don't know what I say in their\nlaudation, and their guns do, and the whole concern of 'em have\nreason to be sick and ashamed all round.  These are some of my\narguments for declaring that the Cheap Jack calling is treated ill\nin Great Britain, and for turning warm when I think of the other\nJacks in question setting themselves up to pretend to look down upon\nit.\n\nI courted my wife from the footboard of the cart.  I did indeed.\nShe was a Suffolk young woman, and it was in Ipswich marketplace\nright opposite the corn-chandler's shop.  I had noticed her up at a\nwindow last Saturday that was, appreciating highly.  I had took to\nher, and I had said to myself, \"If not already disposed of, I'll\nhave that lot.\"  Next Saturday that come, I pitched the cart on the\nsame pitch, and I was in very high feather indeed, keeping 'em\nlaughing the whole of the time, and getting off the goods briskly.\nAt last I took out of my waistcoat-pocket a small lot wrapped in\nsoft paper, and I put it this way (looking up at the window where\nshe was).  \"Now here, my blooming English maidens, is an article,\nthe last article of the present evening's sale, which I offer to\nonly you, the lovely Suffolk Dumplings biling over with beauty, and\nI won't take a bid of a thousand pounds for from any man alive.  Now\nwhat is it?  Why, I'll tell you what it is.  It's made of fine gold,\nand it's not broke, though there's a hole in the middle of it, and\nit's stronger than any fetter that ever was forged, though it's\nsmaller than any finger in my set of ten.  Why ten?  Because, when\nmy parents made over my property to me, I tell you true, there was\ntwelve sheets, twelve towels, twelve table-cloths, twelve knives,\ntwelve forks, twelve tablespoons, and twelve teaspoons, but my set\nof fingers was two short of a dozen, and could never since be\nmatched.  Now what else is it?  Come, I'll tell you.  It's a hoop of\nsolid gold, wrapped in a silver curl-paper, that I myself took off\nthe shining locks of the ever beautiful old lady in Threadneedle\nStreet, London city; I wouldn't tell you so if I hadn't the paper to\nshow, or you mightn't believe it even of me.  Now what else is it?\nIt's a man-trap and a handcuff, the parish stocks and a leg-lock,\nall in gold and all in one.  Now what else is it?  It's a wedding-\nring.  Now I'll tell you what I'm a going to do with it.  I'm not a\ngoing to offer this lot for money; but I mean to give it to the next\nof you beauties that laughs, and I'll pay her a visit to-morrow\nmorning at exactly half after nine o'clock as the chimes go, and\nI'll take her out for a walk to put up the banns.\"  She laughed, and\ngot the ring handed up to her.  When I called in the morning, she\nsays, \"O dear!  It's never you, and you never mean it?\"  \"It's ever\nme,\" says I, \"and I am ever yours, and I ever mean it.\"  So we got\nmarried, after being put up three times--which, by the bye, is quite\nin the Cheap Jack way again, and shows once more how the Cheap Jack\ncustoms pervade society.\n\nShe wasn't a bad wife, but she had a temper.  If she could have\nparted with that one article at a sacrifice, I wouldn't have swopped\nher away in exchange for any other woman in England.  Not that I\never did swop her away, for we lived together till she died, and\nthat was thirteen year.  Now, my lords and ladies and gentlefolks\nall, I'll let you into a secret, though you won't believe it.\nThirteen year of temper in a Palace would try the worst of you, but\nthirteen year of temper in a Cart would try the best of you.  You\nare kept so very close to it in a cart, you see.  There's thousands\nof couples among you getting on like sweet ile upon a whetstone in\nhouses five and six pairs of stairs high, that would go to the\nDivorce Court in a cart.  Whether the jolting makes it worse, I\ndon't undertake to decide; but in a cart it does come home to you,\nand stick to you.  Wiolence in a cart is SO wiolent, and aggrawation\nin a cart is SO aggrawating.\n\nWe might have had such a pleasant life!  A roomy cart, with the\nlarge goods hung outside, and the bed slung underneath it when on\nthe road, an iron pot and a kettle, a fireplace for the cold\nweather, a chimney for the smoke, a hanging-shelf and a cupboard, a\ndog and a horse.  What more do you want?  You draw off upon a bit of\nturf in a green lane or by the roadside, you hobble your old horse\nand turn him grazing, you light your fire upon the ashes of the last\nvisitors, you cook your stew, and you wouldn't call the Emperor of\nFrance your father.  But have a temper in the cart, flinging\nlanguage and the hardest goods in stock at you, and where are you\nthen?  Put a name to your feelings.\n\nMy dog knew as well when she was on the turn as I did.  Before she\nbroke out, he would give a howl, and bolt.  How he knew it, was a\nmystery to me; but the sure and certain knowledge of it would wake\nhim up out of his soundest sleep, and he would give a howl, and\nbolt.  At such times I wished I was him.\n\nThe worst of it was, we had a daughter born to us, and I love\nchildren with all my heart.  When she was in her furies she beat the\nchild.  This got to be so shocking, as the child got to be four or\nfive year old, that I have many a time gone on with my whip over my\nshoulder, at the old horse's head, sobbing and crying worse than\never little Sophy did.  For how could I prevent it?  Such a thing is\nnot to be tried with such a temper--in a cart--without coming to a\nfight.  It's in the natural size and formation of a cart to bring it\nto a fight.  And then the poor child got worse terrified than\nbefore, as well as worse hurt generally, and her mother made\ncomplaints to the next people we lighted on, and the word went\nround, \"Here's a wretch of a Cheap Jack been a beating his wife.\"\n\nLittle Sophy was such a brave child!  She grew to be quite devoted\nto her poor father, though he could do so little to help her.  She\nhad a wonderful quantity of shining dark hair, all curling natural\nabout her.  It is quite astonishing to me now, that I didn't go\ntearing mad when I used to see her run from her mother before the\ncart, and her mother catch her by this hair, and pull her down by\nit, and beat her.\n\nSuch a brave child I said she was!  Ah! with reason.\n\n\"Don't you mind next time, father dear,\" she would whisper to me,\nwith her little face still flushed, and her bright eyes still wet;\n\"if I don't cry out, you may know I am not much hurt.  And even if I\ndo cry out, it will only be to get mother to let go and leave off.\"\nWhat I have seen the little spirit bear--for me--without crying out!\n\nYet in other respects her mother took great care of her.  Her\nclothes were always clean and neat, and her mother was never tired\nof working at 'em.  Such is the inconsistency in things.  Our being\ndown in the marsh country in unhealthy weather, I consider the cause\nof Sophy's taking bad low fever; but however she took it, once she\ngot it she turned away from her mother for evermore, and nothing\nwould persuade her to be touched by her mother's hand.  She would\nshiver and say, \"No, no, no,\" when it was offered at, and would hide\nher face on my shoulder, and hold me tighter round the neck.\n\nThe Cheap Jack business had been worse than ever I had known it,\nwhat with one thing and what with another (and not least with\nrailroads, which will cut it all to pieces, I expect, at last), and\nI was run dry of money.  For which reason, one night at that period\nof little Sophy's being so bad, either we must have come to a dead-\nlock for victuals and drink, or I must have pitched the cart as I\ndid.\n\nI couldn't get the dear child to lie down or leave go of me, and\nindeed I hadn't the heart to try, so I stepped out on the footboard\nwith her holding round my neck.  They all set up a laugh when they\nsee us, and one chuckle-headed Joskin (that I hated for it) made the\nbidding, \"Tuppence for her!\"\n\n\"Now, you country boobies,\" says I, feeling as if my heart was a\nheavy weight at the end of a broken sashline, \"I give you notice\nthat I am a going to charm the money out of your pockets, and to\ngive you so much more than your money's worth that you'll only\npersuade yourselves to draw your Saturday night's wages ever again\narterwards by the hopes of meeting me to lay 'em out with, which you\nnever will, and why not?  Because I've made my fortunes by selling\nmy goods on a large scale for seventy-five per cent. less than I\ngive for 'em, and I am consequently to be elevated to the House of\nPeers next week, by the title of the Duke of Cheap and Markis\nJackaloorul.  Now let's know what you want to-night, and you shall\nhave it.  But first of all, shall I tell you why I have got this\nlittle girl round my neck?  You don't want to know?  Then you shall.\nShe belongs to the Fairies.  She's a fortune-teller.  She can tell\nme all about you in a whisper, and can put me up to whether you're\ngoing to buy a lot or leave it.  Now do you want a saw?  No, she\nsays you don't, because you're too clumsy to use one.  Else here's a\nsaw which would be a lifelong blessing to a handy man, at four\nshillings, at three and six, at three, at two and six, at two, at\neighteen-pence.  But none of you shall have it at any price, on\naccount of your well-known awkwardness, which would make it\nmanslaughter.  The same objection applies to this set of three\nplanes which I won't let you have neither, so don't bid for 'em.\nNow I am a going to ask her what you do want.\"  (Then I whispered,\n\"Your head burns so, that I am afraid it hurts you bad, my pet,\" and\nshe answered, without opening her heavy eyes, \"Just a little,\nfather.\")  \"O!  This little fortune-teller says it's a memorandum-\nbook you want.  Then why didn't you mention it?  Here it is.  Look\nat it.  Two hundred superfine hot-pressed wire-wove pages--if you\ndon't believe me, count 'em--ready ruled for your expenses, an\neverlastingly pointed pencil to put 'em down with, a double-bladed\npenknife to scratch 'em out with, a book of printed tables to\ncalculate your income with, and a camp-stool to sit down upon while\nyou give your mind to it!  Stop!  And an umbrella to keep the moon\noff when you give your mind to it on a pitch-dark night.  Now I\nwon't ask you how much for the lot, but how little?  How little are\nyou thinking of?  Don't be ashamed to mention it, because my\nfortune-teller knows already.\"  (Then making believe to whisper, I\nkissed her,--and she kissed me.)  \"Why, she says you are thinking of\nas little as three and threepence!  I couldn't have believed it,\neven of you, unless she told me.  Three and threepence!  And a set\nof printed tables in the lot that'll calculate your income up to\nforty thousand a year!  With an income of forty thousand a year, you\ngrudge three and sixpence.  Well then, I'll tell you my opinion.  I\nso despise the threepence, that I'd sooner take three shillings.\nThere.  For three shillings, three shillings, three shillings!\nGone.  Hand 'em over to the lucky man.\"\n\nAs there had been no bid at all, everybody looked about and grinned\nat everybody, while I touched little Sophy's face and asked her if\nshe felt faint, or giddy.  \"Not very, father.  It will soon be\nover.\"  Then turning from the pretty patient eyes, which were opened\nnow, and seeing nothing but grins across my lighted grease-pot, I\nwent on again in my Cheap Jack style.  \"Where's the butcher?\"  (My\nsorrowful eye had just caught sight of a fat young butcher on the\noutside of the crowd.)  \"She says the good luck is the butcher's.\nWhere is he?\"  Everybody handed on the blushing butcher to the\nfront, and there was a roar, and the butcher felt himself obliged to\nput his hand in his pocket, and take the lot.  The party so picked\nout, in general, does feel obliged to take the lot--good four times\nout of six.  Then we had another lot, the counterpart of that one,\nand sold it sixpence cheaper, which is always wery much enjoyed.\nThen we had the spectacles.  It ain't a special profitable lot, but\nI put 'em on, and I see what the Chancellor of the Exchequer is\ngoing to take off the taxes, and I see what the sweetheart of the\nyoung woman in the shawl is doing at home, and I see what the\nBishops has got for dinner, and a deal more that seldom fails to\nfetch em 'up in their spirits; and the better their spirits, the\nbetter their bids.  Then we had the ladies' lot--the teapot, tea-\ncaddy, glass sugar-basin, half-a-dozen spoons, and caudle-cup--and\nall the time I was making similar excuses to give a look or two and\nsay a word or two to my poor child.  It was while the second ladies'\nlot was holding 'em enchained that I felt her lift herself a little\non my shoulder, to look across the dark street.  \"What troubles you,\ndarling?\"  \"Nothing troubles me, father.  I am not at all troubled.\nBut don't I see a pretty churchyard over there?\"  \"Yes, my dear.\"\n\"Kiss me twice, dear father, and lay me down to rest upon that\nchurchyard grass so soft and green.\"  I staggered back into the cart\nwith her head dropped on my shoulder, and I says to her mother,\n\"Quick.  Shut the door!  Don't let those laughing people see!\"\n\"What's the matter?\" she cries.  \"O woman, woman,\" I tells her,\n\"you'll never catch my little Sophy by her hair again, for she has\nflown away from you!\"\n\nMaybe those were harder words than I meant 'em; but from that time\nforth my wife took to brooding, and would sit in the cart or walk\nbeside it, hours at a stretch, with her arms crossed, and her eyes\nlooking on the ground.  When her furies took her (which was rather\nseldomer than before) they took her in a new way, and she banged\nherself about to that extent that I was forced to hold her.  She got\nnone the better for a little drink now and then, and through some\nyears I used to wonder, as I plodded along at the old horse's head,\nwhether there was many carts upon the road that held so much\ndreariness as mine, for all my being looked up to as the King of the\nCheap Jacks.  So sad our lives went on till one summer evening,\nwhen, as we were coming into Exeter, out of the farther West of\nEngland, we saw a woman beating a child in a cruel manner, who\nscreamed, \"Don't beat me!  O mother, mother, mother!\"  Then my wife\nstopped her ears, and ran away like a wild thing, and next day she\nwas found in the river.\n\nMe and my dog were all the company left in the cart now; and the dog\nlearned to give a short bark when they wouldn't bid, and to give\nanother and a nod of his head when I asked him, \"Who said half a\ncrown?  Are you the gentleman, sir, that offered half a crown?\"  He\nattained to an immense height of popularity, and I shall always\nbelieve taught himself entirely out of his own head to growl at any\nperson in the crowd that bid as low as sixpence.  But he got to be\nwell on in years, and one night when I was conwulsing York with the\nspectacles, he took a conwulsion on his own account upon the very\nfootboard by me, and it finished him.\n\nBeing naturally of a tender turn, I had dreadful lonely feelings on\nme arter this.  I conquered 'em at selling times, having a\nreputation to keep (not to mention keeping myself), but they got me\ndown in private, and rolled upon me.  That's often the way with us\npublic characters.  See us on the footboard, and you'd give pretty\nwell anything you possess to be us.  See us off the footboard, and\nyou'd add a trifle to be off your bargain.  It was under those\ncircumstances that I come acquainted with a giant.  I might have\nbeen too high to fall into conversation with him, had it not been\nfor my lonely feelings.  For the general rule is, going round the\ncountry, to draw the line at dressing up.  When a man can't trust\nhis getting a living to his undisguised abilities, you consider him\nbelow your sort.  And this giant when on view figured as a Roman.\n\nHe was a languid young man, which I attribute to the distance\nbetwixt his extremities.  He had a little head and less in it, he\nhad weak eyes and weak knees, and altogether you couldn't look at\nhim without feeling that there was greatly too much of him both for\nhis joints and his mind.  But he was an amiable though timid young\nman (his mother let him out, and spent the money), and we come\nacquainted when he was walking to ease the horse betwixt two fairs.\nHe was called Rinaldo di Velasco, his name being Pickleson.\n\nThis giant, otherwise Pickleson, mentioned to me under the seal of\nconfidence that, beyond his being a burden to himself, his life was\nmade a burden to him by the cruelty of his master towards a step-\ndaughter who was deaf and dumb.  Her mother was dead, and she had no\nliving soul to take her part, and was used most hard.  She travelled\nwith his master's caravan only because there was nowhere to leave\nher, and this giant, otherwise Pickleson, did go so far as to\nbelieve that his master often tried to lose her.  He was such a very\nlanguid young man, that I don't know how long it didn't take him to\nget this story out, but it passed through his defective circulation\nto his top extremity in course of time.\n\nWhen I heard this account from the giant, otherwise Pickleson, and\nlikewise that the poor girl had beautiful long dark hair, and was\noften pulled down by it and beaten, I couldn't see the giant through\nwhat stood in my eyes.  Having wiped 'em, I give him sixpence (for\nhe was kept as short as he was long), and he laid it out in two\nthree-penn'orths of gin-and-water, which so brisked him up, that he\nsang the Favourite Comic of Shivery Shakey, ain't it cold?--a\npopular effect which his master had tried every other means to get\nout of him as a Roman wholly in vain.\n\nHis master's name was Mim, a wery hoarse man, and I knew him to\nspeak to.  I went to that Fair as a mere civilian, leaving the cart\noutside the town, and I looked about the back of the Vans while the\nperforming was going on, and at last, sitting dozing against a muddy\ncart-wheel, I come upon the poor girl who was deaf and dumb.  At the\nfirst look I might almost have judged that she had escaped from the\nWild Beast Show; but at the second I thought better of her, and\nthought that if she was more cared for and more kindly used she\nwould be like my child.  She was just the same age that my own\ndaughter would have been, if her pretty head had not fell down upon\nmy shoulder that unfortunate night.\n\nTo cut it short, I spoke confidential to Mim while he was beating\nthe gong outside betwixt two lots of Pickleson's publics, and I put\nit to him, \"She lies heavy on your own hands; what'll you take for\nher?\"  Mim was a most ferocious swearer.  Suppressing that part of\nhis reply which was much the longest part, his reply was, \"A pair of\nbraces.\"  \"Now I'll tell you,\" says I, \"what I'm a going to do with\nyou.  I'm a going to fetch you half-a-dozen pair of the primest\nbraces in the cart, and then to take her away with me.\"  Says Mim\n(again ferocious), \"I'll believe it when I've got the goods, and no\nsooner.\"  I made all the haste I could, lest he should think twice\nof it, and the bargain was completed, which Pickleson he was thereby\nso relieved in his mind that he come out at his little back door,\nlongways like a serpent, and give us Shivery Shakey in a whisper\namong the wheels at parting.\n\nIt was happy days for both of us when Sophy and me began to travel\nin the cart.  I at once give her the name of Sophy, to put her ever\ntowards me in the attitude of my own daughter.  We soon made out to\nbegin to understand one another, through the goodness of the\nHeavens, when she knowed that I meant true and kind by her.  In a\nvery little time she was wonderful fond of me.  You have no idea\nwhat it is to have anybody wonderful fond of you, unless you have\nbeen got down and rolled upon by the lonely feelings that I have\nmentioned as having once got the better of me.\n\nYou'd have laughed--or the rewerse--it's according to your\ndisposition--if you could have seen me trying to teach Sophy.  At\nfirst I was helped--you'd never guess by what--milestones.  I got\nsome large alphabets in a box, all the letters separate on bits of\nbone, and saying we was going to WINDSOR, I give her those letters\nin that order, and then at every milestone I showed her those same\nletters in that same order again, and pointed towards the abode of\nroyalty.  Another time I give her CART, and then chalked the same\nupon the cart.  Another time I give her DOCTOR MARIGOLD, and hung a\ncorresponding inscription outside my waistcoat.  People that met us\nmight stare a bit and laugh, but what did I care, if she caught the\nidea?  She caught it after long patience and trouble, and then we\ndid begin to get on swimmingly, I believe you!  At first she was a\nlittle given to consider me the cart, and the cart the abode of\nroyalty, but that soon wore off.\n\nWe had our signs, too, and they was hundreds in number.  Sometimes\nshe would sit looking at me and considering hard how to communicate\nwith me about something fresh,--how to ask me what she wanted\nexplained,--and then she was (or I thought she was; what does it\nsignify?) so like my child with those years added to her, that I\nhalf-believed it was herself, trying to tell me where she had been\nto up in the skies, and what she had seen since that unhappy night\nwhen she flied away.  She had a pretty face, and now that there was\nno one to drag at her bright dark hair, and it was all in order,\nthere was a something touching in her looks that made the cart most\npeaceful and most quiet, though not at all melancholy.  [N.B.  In\nthe Cheap Jack patter, we generally sound it lemonjolly, and it gets\na laugh.]\n\nThe way she learnt to understand any look of mine was truly\nsurprising.  When I sold of a night, she would sit in the cart\nunseen by them outside, and would give a eager look into my eyes\nwhen I looked in, and would hand me straight the precise article or\narticles I wanted.  And then she would clap her hands, and laugh for\njoy.  And as for me, seeing her so bright, and remembering what she\nwas when I first lighted on her, starved and beaten and ragged,\nleaning asleep against the muddy cart-wheel, it give me such heart\nthat I gained a greater heighth of reputation than ever, and I put\nPickleson down (by the name of Mim's Travelling Giant otherwise\nPickleson) for a fypunnote in my will.\n\nThis happiness went on in the cart till she was sixteen year old.\nBy which time I began to feel not satisfied that I had done my whole\nduty by her, and to consider that she ought to have better teaching\nthan I could give her.  It drew a many tears on both sides when I\ncommenced explaining my views to her; but what's right is right, and\nyou can't neither by tears nor laughter do away with its character.\n\nSo I took her hand in mine, and I went with her one day to the Deaf\nand Dumb Establishment in London, and when the gentleman come to\nspeak to us, I says to him:  \"Now I'll tell you what I'll do with\nyou, sir.  I am nothing but a Cheap Jack, but of late years I have\nlaid by for a rainy day notwithstanding.  This is my only daughter\n(adopted), and you can't produce a deafer nor a dumber.  Teach her\nthe most that can be taught her in the shortest separation that can\nbe named,--state the figure for it,--and I am game to put the money\ndown.  I won't bate you a single farthing, sir, but I'll put down\nthe money here and now, and I'll thankfully throw you in a pound to\ntake it.  There!\"  The gentleman smiled, and then, \"Well, well,\"\nsays he, \"I must first know what she has learned already.  How do\nyou communicate with her?\"  Then I showed him, and she wrote in\nprinted writing many names of things and so forth; and we held some\nsprightly conversation, Sophy and me, about a little story in a book\nwhich the gentleman showed her, and which she was able to read.\n\"This is most extraordinary,\" says the gentleman; \"is it possible\nthat you have been her only teacher?\"  \"I have been her only\nteacher, sir,\" I says, \"besides herself.\"  \"Then,\" says the\ngentleman, and more acceptable words was never spoke to me, \"you're\na clever fellow, and a good fellow.\"  This he makes known to Sophy,\nwho kisses his hands, claps her own, and laughs and cries upon it.\n\nWe saw the gentleman four times in all, and when he took down my\nname and asked how in the world it ever chanced to be Doctor, it\ncome out that he was own nephew by the sister's side, if you'll\nbelieve me, to the very Doctor that I was called after.  This made\nour footing still easier, and he says to me:\n\n\"Now, Marigold, tell me what more do you want your adopted daughter\nto know?\"\n\n\"I want her, sir, to be cut off from the world as little as can be,\nconsidering her deprivations, and therefore to be able to read\nwhatever is wrote with perfect ease and pleasure.\"\n\n\"My good fellow,\" urges the gentleman, opening his eyes wide, \"why I\ncan't do that myself!\"\n\nI took his joke, and gave him a laugh (knowing by experience how\nflat you fall without it), and I mended my words accordingly.\n\n\"What do you mean to do with her afterwards?\" asks the gentleman,\nwith a sort of a doubtful eye.  \"To take her about the country?\"\n\n\"In the cart, sir, but only in the cart.  She will live a private\nlife, you understand, in the cart.  I should never think of bringing\nher infirmities before the public.  I wouldn't make a show of her\nfor any money.\"\n\nThe gentleman nodded, and seemed to approve.\n\n\"Well,\" says he, \"can you part with her for two years?\"\n\n\"To do her that good,--yes, sir.\"\n\n\"There's another question,\" says the gentleman, looking towards\nher,--\"can she part with you for two years?\"\n\nI don't know that it was a harder matter of itself (for the other\nwas hard enough to me), but it was harder to get over.  However, she\nwas pacified to it at last, and the separation betwixt us was\nsettled.  How it cut up both of us when it took place, and when I\nleft her at the door in the dark of an evening, I don't tell.  But I\nknow this; remembering that night, I shall never pass that same\nestablishment without a heartache and a swelling in the throat; and\nI couldn't put you up the best of lots in sight of it with my usual\nspirit,--no, not even the gun, nor the pair of spectacles,--for five\nhundred pound reward from the Secretary of State for the Home\nDepartment, and throw in the honour of putting my legs under his\nmahogany arterwards.\n\nStill, the loneliness that followed in the cart was not the old\nloneliness, because there was a term put to it, however long to look\nforward to; and because I could think, when I was anyways down, that\nshe belonged to me and I belonged to her.  Always planning for her\ncoming back, I bought in a few months' time another cart, and what\ndo you think I planned to do with it?  I'll tell you.  I planned to\nfit it up with shelves and books for her reading, and to have a seat\nin it where I could sit and see her read, and think that I had been\nher first teacher.  Not hurrying over the job, I had the fittings\nknocked together in contriving ways under my own inspection, and\nhere was her bed in a berth with curtains, and there was her\nreading-table, and here was her writing-desk, and elsewhere was her\nbooks in rows upon rows, picters and no picters, bindings and no\nbindings, gilt-edged and plain, just as I could pick 'em up for her\nin lots up and down the country, North and South and West and East,\nWinds liked best and winds liked least, Here and there and gone\nastray, Over the hills and far away.  And when I had got together\npretty well as many books as the cart would neatly hold, a new\nscheme come into my head, which, as it turned out, kept my time and\nattention a good deal employed, and helped me over the two years'\nstile.\n\nWithout being of an awaricious temper, I like to be the owner of\nthings.  I shouldn't wish, for instance, to go partners with\nyourself in the Cheap Jack cart.  It's not that I mistrust you, but\nthat I'd rather know it was mine.  Similarly, very likely you'd\nrather know it was yours.  Well!  A kind of a jealousy began to\ncreep into my mind when I reflected that all those books would have\nbeen read by other people long before they was read by her.  It\nseemed to take away from her being the owner of 'em like.  In this\nway, the question got into my head:  Couldn't I have a book new-made\nexpress for her, which she should be the first to read?\n\nIt pleased me, that thought did; and as I never was a man to let a\nthought sleep (you must wake up all the whole family of thoughts\nyou've got and burn their nightcaps, or you won't do in the Cheap\nJack line), I set to work at it.  Considering that I was in the\nhabit of changing so much about the country, and that I should have\nto find out a literary character here to make a deal with, and\nanother literary character there to make a deal with, as\nopportunities presented, I hit on the plan that this same book\nshould be a general miscellaneous lot,--like the razors, flat-iron,\nchronometer watch, dinner plates, rolling-pin, and looking-glass,--\nand shouldn't be offered as a single indiwidual article, like the\nspectacles or the gun.  When I had come to that conclusion, I come\nto another, which shall likewise be yours.\n\nOften had I regretted that she never had heard me on the footboard,\nand that she never could hear me.  It ain't that I am vain, but that\nYOU don't like to put your own light under a bushel.  What's the\nworth of your reputation, if you can't convey the reason for it to\nthe person you most wish to value it?  Now I'll put it to you.  Is\nit worth sixpence, fippence, fourpence, threepence, twopence, a\npenny, a halfpenny, a farthing?  No, it ain't.  Not worth a\nfarthing.  Very well, then.  My conclusion was that I would begin\nher book with some account of myself.  So that, through reading a\nspecimen or two of me on the footboard, she might form an idea of my\nmerits there.  I was aware that I couldn't do myself justice.  A man\ncan't write his eye (at least I don't know how to), nor yet can a\nman write his voice, nor the rate of his talk, nor the quickness of\nhis action, nor his general spicy way.  But he can write his turns\nof speech, when he is a public speaker,--and indeed I have heard\nthat he very often does, before he speaks 'em.\n\nWell!  Having formed that resolution, then come the question of a\nname.  How did I hammer that hot iron into shape?  This way.  The\nmost difficult explanation I had ever had with her was, how I come\nto be called Doctor, and yet was no Doctor.  After all, I felt that\nI had failed of getting it correctly into her mind, with my utmost\npains.  But trusting to her improvement in the two years, I thought\nthat I might trust to her understanding it when she should come to\nread it as put down by my own hand.  Then I thought I would try a\njoke with her and watch how it took, by which of itself I might\nfully judge of her understanding it.  We had first discovered the\nmistake we had dropped into, through her having asked me to\nprescribe for her when she had supposed me to be a Doctor in a\nmedical point of view; so thinks I, \"Now, if I give this book the\nname of my Prescriptions, and if she catches the idea that my only\nPrescriptions are for her amusement and interest,--to make her laugh\nin a pleasant way, or to make her cry in a pleasant way,--it will be\na delightful proof to both of us that we have got over our\ndifficulty.\"  It fell out to absolute perfection.  For when she saw\nthe book, as I had it got up,--the printed and pressed book,--lying\non her desk in her cart, and saw the title, DOCTOR MARIGOLD'S\nPRESCRIPTIONS, she looked at me for a moment with astonishment, then\nfluttered the leaves, then broke out a laughing in the charmingest\nway, then felt her pulse and shook her head, then turned the pages\npretending to read them most attentive, then kissed the book to me,\nand put it to her bosom with both her hands.  I never was better\npleased in all my life!\n\nBut let me not anticipate.  (I take that expression out of a lot of\nromances I bought for her.  I never opened a single one of 'em--and\nI have opened many--but I found the romancer saying \"let me not\nanticipate.\"  Which being so, I wonder why he did anticipate, or who\nasked him to it.)  Let me not, I say, anticipate.  This same book\ntook up all my spare time.  It was no play to get the other articles\ntogether in the general miscellaneous lot, but when it come to my\nown article!  There!  I couldn't have believed the blotting, nor yet\nthe buckling to at it, nor the patience over it.  Which again is\nlike the footboard.  The public have no idea.\n\nAt last it was done, and the two years' time was gone after all the\nother time before it, and where it's all gone to, who knows?  The\nnew cart was finished,--yellow outside, relieved with wermilion and\nbrass fittings,--the old horse was put in it, a new 'un and a boy\nbeing laid on for the Cheap Jack cart,--and I cleaned myself up to\ngo and fetch her.  Bright cold weather it was, cart-chimneys\nsmoking, carts pitched private on a piece of waste ground over at\nWandsworth, where you may see 'em from the Sou'western Railway when\nnot upon the road.  (Look out of the right-hand window going down.)\n\n\"Marigold,\" says the gentleman, giving his hand hearty, \"I am very\nglad to see you.\"\n\n\"Yet I have my doubts, sir,\" says I, \"if you can be half as glad to\nsee me as I am to see you.\"\n\n\"The time has appeared so long,--has it, Marigold?\"\n\n\"I won't say that, sir, considering its real length; but--\"\n\n\"What a start, my good fellow!\"\n\nAh!  I should think it was!  Grown such a woman, so pretty, so\nintelligent, so expressive!  I knew then that she must be really\nlike my child, or I could never have known her, standing quiet by\nthe door.\n\n\"You are affected,\" says the gentleman in a kindly manner.\n\n\"I feel, sir,\" says I, \"that I am but a rough chap in a sleeved\nwaistcoat.\"\n\n\" I feel,\" says the gentleman, \"that it was you who raised her from\nmisery and degradation, and brought her into communication with her\nkind.  But why do we converse alone together, when we can converse\nso well with her?  Address her in your own way.\"\n\n\"I am such a rough chap in a sleeved waistcoat, sir,\" says I, \"and\nshe is such a graceful woman, and she stands so quiet at the door!\"\n\n\"TRY if she moves at the old sign,\" says the gentleman.\n\nThey had got it up together o' purpose to please me!  For when I\ngive her the old sign, she rushed to my feet, and dropped upon her\nknees, holding up her hands to me with pouring tears of love and\njoy; and when I took her hands and lifted her, she clasped me round\nthe neck, and lay there; and I don't know what a fool I didn't make\nof myself, until we all three settled down into talking without\nsound, as if there was a something soft and pleasant spread over the\nwhole world for us.\n\n\n[A portion is here omitted from the text, having reference to the\nsketches contributed by other writers; but the reader will be\npleased to have what follows retained in a note:\n\n\"Now I'll tell you what I am a-going to do with you.  I am a-going\nto offer you the general miscellaneous lot, her own book, never read\nby anybody else but me, added to and completed by me after her first\nreading of it, eight-and-forty printed pages, six-and-ninety\ncolumns, Whiting's own work, Beaufort House to wit, thrown off by\nthe steam-ingine, best of paper, beautiful green wrapper, folded\nlike clean linen come home from the clear-starcher's, and so\nexquisitely stitched that, regarded as a piece of needlework alone,\nit's better than the sampler of a seamstress undergoing a\nCompetitive examination for Starvation before the Civil Service\nCommissioners--and I offer the lot for what?  For eight pound?  Not\nso much.  For six pound?  Less.  For four pound.  Why, I hardly\nexpect you to believe me, but that's the sum.  Four pound!  The\nstitching alone cost half as much again.  Here's forty-eight\noriginal pages, ninety-six original columns, for four pound.  You\nwant more for the money?  Take it.  Three whole pages of\nadvertisements of thrilling interest thrown in for nothing.  Read\n'em and believe 'em.  More?  My best of wishes for your merry\nChristmases and your happy New Years, your long lives and your true\nprosperities.  Worth twenty pound good if they are delivered as I\nsend them.  Remember!  Here's a final prescription added, \"To be\ntaken for life,\" which will tell you how the cart broke down, and\nwhere the journey ended.  You think Four Pound too much?  And still\nyou think so?  Come!  I'll tell you what then.  Say Four Pence, and\nkeep the secret.\"]\n\n\nSo every item of my plan was crowned with success.  Our reunited\nlife was more than all that we had looked forward to.  Content and\njoy went with us as the wheels of the two carts went round, and the\nsame stopped with us when the two carts stopped.  I was as pleased\nand as proud as a Pug-Dog with his muzzle black-leaded for a evening\nparty, and his tail extra curled by machinery.\n\nBut I had left something out of my calculations.  Now, what had I\nleft out?  To help you to guess I'll say, a figure.  Come.  Make a\nguess and guess right.  Nought?  No.  Nine?  No.  Eight?  No.\nSeven?  No.  Six?  No.  Five?  No.  Four?  No.  Three?  No.  Two?\nNo.  One?  No.  Now I'll tell you what I'll do with you.  I'll say\nit's another sort of figure altogether.  There.  Why then, says you,\nit's a mortal figure.  No, nor yet a mortal figure.  By such means\nyou got yourself penned into a corner, and you can't help guessing a\nIMmortal figure.  That's about it.  Why didn't you say so sooner?\n\nYes.  It was a immortal figure that I had altogether left out of my\nCalculations.  Neither man's, nor woman's, but a child's.  Girl's or\nboy's?  Boy's.  \"I, says the sparrow with my bow and arrow.\"  Now\nyou have got it.\n\nWe were down at Lancaster, and I had done two nights more than fair\naverage business (though I cannot in honour recommend them as a\nquick audience) in the open square there, near the end of the street\nwhere Mr. Sly's King's Arms and Royal Hotel stands.  Mim's\ntravelling giant, otherwise Pickleson, happened at the self-same\ntime to be trying it on in the town.  The genteel lay was adopted\nwith him.  No hint of a van.  Green baize alcove leading up to\nPickleson in a Auction Room.  Printed poster, \"Free list suspended,\nwith the exception of that proud boast of an enlightened country, a\nfree press.  Schools admitted by private arrangement.  Nothing to\nraise a blush in the cheek of youth or shock the most fastidious.\"\nMim swearing most horrible and terrific, in a pink calico pay-place,\nat the slackness of the public.  Serious handbill in the shops,\nimporting that it was all but impossible to come to a right\nunderstanding of the history of David without seeing Pickleson.\n\nI went to the Auction Room in question, and I found it entirely\nempty of everything but echoes and mouldiness, with the single\nexception of Pickleson on a piece of red drugget.  This suited my\npurpose, as I wanted a private and confidential word with him, which\nwas:  \"Pickleson.  Owing much happiness to you, I put you in my will\nfor a fypunnote; but, to save trouble, here's fourpunten down, which\nmay equally suit your views, and let us so conclude the\ntransaction.\"  Pickleson, who up to that remark had had the dejected\nappearance of a long Roman rushlight that couldn't anyhow get\nlighted, brightened up at his top extremity, and made his\nacknowledgments in a way which (for him) was parliamentary\neloquence.  He likewise did add, that, having ceased to draw as a\nRoman, Mim had made proposals for his going in as a conwerted Indian\nGiant worked upon by The Dairyman's Daughter.  This, Pickleson,\nhaving no acquaintance with the tract named after that young woman,\nand not being willing to couple gag with his serious views, had\ndeclined to do, thereby leading to words and the total stoppage of\nthe unfortunate young man's beer.  All of which, during the whole of\nthe interview, was confirmed by the ferocious growling of Mim down\nbelow in the pay-place, which shook the giant like a leaf.\n\nBut what was to the present point in the remarks of the travelling\ngiant, otherwise Pickleson, was this:  \"Doctor Marigold,\"--I give\nhis words without a hope of conweying their feebleness,--\"who is the\nstrange young man that hangs about your carts?\"--\"The strange young\nMAN?\"  I gives him back, thinking that he meant her, and his languid\ncirculation had dropped a syllable.  \"Doctor,\" he returns, with a\npathos calculated to draw a tear from even a manly eye, \"I am weak,\nbut not so weak yet as that I don't know my words.  I repeat them,\nDoctor.  The strange young man.\"  It then appeared that Pickleson,\nbeing forced to stretch his legs (not that they wanted it) only at\ntimes when he couldn't be seen for nothing, to wit in the dead of\nthe night and towards daybreak, had twice seen hanging about my\ncarts, in that same town of Lancaster where I had been only two\nnights, this same unknown young man.\n\nIt put me rather out of sorts.  What it meant as to particulars I no\nmore foreboded then than you forebode now, but it put me rather out\nof sorts.  Howsoever, I made light of it to Pickleson, and I took\nleave of Pickleson, advising him to spend his legacy in getting up\nhis stamina, and to continue to stand by his religion.  Towards\nmorning I kept a look out for the strange young man, and--what was\nmore--I saw the strange young man.  He was well dressed and well\nlooking.  He loitered very nigh my carts, watching them like as if\nhe was taking care of them, and soon after daybreak turned and went\naway.  I sent a hail after him, but he never started or looked\nround, or took the smallest notice.\n\nWe left Lancaster within an hour or two, on our way towards\nCarlisle.  Next morning, at daybreak, I looked out again for the\nstrange young man.  I did not see him.  But next morning I looked\nout again, and there he was once more.  I sent another hail after\nhim, but as before he gave not the slightest sign of being anyways\ndisturbed.  This put a thought into my head.  Acting on it I watched\nhim in different manners and at different times not necessary to\nenter into, till I found that this strange young man was deaf and\ndumb.\n\nThe discovery turned me over, because I knew that a part of that\nestablishment where she had been was allotted to young men (some of\nthem well off), and I thought to myself, \"If she favours him, where\nam I? and where is all that I have worked and planned for?\"  Hoping-\n-I must confess to the selfishness--that she might NOT favour him, I\nset myself to find out.  At last I was by accident present at a\nmeeting between them in the open air, looking on leaning behind a\nfir-tree without their knowing of it.  It was a moving meeting for\nall the three parties concerned.  I knew every syllable that passed\nbetween them as well as they did.  I listened with my eyes, which\nhad come to be as quick and true with deaf and dumb conversation as\nmy ears with the talk of people that can speak.  He was a-going out\nto China as clerk in a merchant's house, which his father had been\nbefore him.  He was in circumstances to keep a wife, and he wanted\nher to marry him and go along with him.  She persisted, no.  He\nasked if she didn't love him.  Yes, she loved him dearly, dearly;\nbut she could never disappoint her beloved, good, noble, generous,\nand I-don't-know-what-all father (meaning me, the Cheap Jack in the\nsleeved waistcoat) and she would stay with him, Heaven bless him!\nthough it was to break her heart.  Then she cried most bitterly, and\nthat made up my mind.\n\nWhile my mind had been in an unsettled state about her favouring\nthis young man, I had felt that unreasonable towards Pickleson, that\nit was well for him he had got his legacy down.  For I often\nthought, \"If it hadn't been for this same weak-minded giant, I might\nnever have come to trouble my head and wex my soul about the young\nman.\"  But, once that I knew she loved him,--once that I had seen\nher weep for him,--it was a different thing.  I made it right in my\nmind with Pickleson on the spot, and I shook myself together to do\nwhat was right by all.\n\nShe had left the young man by that time (for it took a few minutes\nto get me thoroughly well shook together), and the young man was\nleaning against another of the fir-trees,--of which there was a\ncluster, -with his face upon his arm.  I touched him on the back.\nLooking up and seeing me, he says, in our deaf-and-dumb talk, \"Do\nnot be angry.\"\n\n\"I am not angry, good boy.  I am your friend.  Come with me.\"\n\nI left him at the foot of the steps of the Library Cart, and I went\nup alone.  She was drying her eyes.\n\n\"You have been crying, my dear.\"\n\n\"Yes, father.\"\n\n\"Why?\"\n\n\"A headache.\"\n\n\"Not a heartache?\"\n\n\"I said a headache, father.\"\n\n\"Doctor Marigold must prescribe for that headache.\"\n\nShe took up the book of my Prescriptions, and held it up with a\nforced smile; but seeing me keep still and look earnest, she softly\nlaid it down again, and her eyes were very attentive.\n\n\"The Prescription is not there, Sophy.\"\n\n\"Where is it?\"\n\n\"Here, my dear.\"\n\nI brought her young husband in, and I put her hand in his, and my\nonly farther words to both of them were these:  \"Doctor Marigold's\nlast Prescription.  To be taken for life.\"  After which I bolted.\n\nWhen the wedding come off, I mounted a coat (blue, and bright\nbuttons), for the first and last time in all my days, and I give\nSophy away with my own hand.  There were only us three and the\ngentleman who had had charge of her for those two years.  I give the\nwedding dinner of four in the Library Cart.  Pigeon-pie, a leg of\npickled pork, a pair of fowls, and suitable garden stuff.  The best\nof drinks.  I give them a speech, and the gentleman give us a\nspeech, and all our jokes told, and the whole went off like a sky-\nrocket.  In the course of the entertainment I explained to Sophy\nthat I should keep the Library Cart as my living-cart when not upon\nthe road, and that I should keep all her books for her just as they\nstood, till she come back to claim them.  So she went to China with\nher young husband, and it was a parting sorrowful and heavy, and I\ngot the boy I had another service; and so as of old, when my child\nand wife were gone, I went plodding along alone, with my whip over\nmy shoulder, at the old horse's head.\n\nSophy wrote me many letters, and I wrote her many letters.  About\nthe end of the first year she sent me one in an unsteady hand:\n\"Dearest father, not a week ago I had a darling little daughter, but\nI am so well that they let me write these words to you.  Dearest and\nbest father, I hope my child may not be deaf and dumb, but I do not\nyet know.\"  When I wrote back, I hinted the question; but as Sophy\nnever answered that question, I felt it to be a sad one, and I never\nrepeated it.  For a long time our letters were regular, but then\nthey got irregular, through Sophy's husband being moved to another\nstation, and through my being always on the move.  But we were in\none another's thoughts, I was equally sure, letters or no letters.\n\nFive years, odd months, had gone since Sophy went away.  I was still\nthe King of the Cheap Jacks, and at a greater height of popularity\nthan ever.  I had had a first-rate autumn of it, and on the twenty-\nthird of December, one thousand eight hundred and sixty-four, I\nfound myself at Uxbridge, Middlesex, clean sold out.  So I jogged up\nto London with the old horse, light and easy, to have my Christmas-\neve and Christmas-day alone by the fire in the Library Cart, and\nthen to buy a regular new stock of goods all round, to sell 'em\nagain and get the money.\n\nI am a neat hand at cookery, and I'll tell you what I knocked up for\nmy Christmas-eve dinner in the Library Cart.  I knocked up a\nbeefsteak-pudding for one, with two kidneys, a dozen oysters, and a\ncouple of mushrooms thrown in.  It's a pudding to put a man in good\nhumour with everything, except the two bottom buttons of his\nwaistcoat.  Having relished that pudding and cleared away, I turned\nthe lamp low, and sat down by the light of the fire, watching it as\nit shone upon the backs of Sophy's books.\n\nSophy's books so brought Sophy's self, that I saw her touching face\nquite plainly, before I dropped off dozing by the fire.  This may be\na reason why Sophy, with her deaf-and-dumb child in her arms, seemed\nto stand silent by me all through my nap.  I was on the road, off\nthe road, in all sorts of places, North and South and West and East,\nWinds liked best and winds liked least, Here and there and gone\nastray, Over the hills and far away, and still she stood silent by\nme, with her silent child in her arms.  Even when I woke with a\nstart, she seemed to vanish, as if she had stood by me in that very\nplace only a single instant before.\n\nI had started at a real sound, and the sound was on the steps of the\ncart.  It was the light hurried tread of a child, coming clambering\nup.  That tread of a child had once been so familiar to me, that for\nhalf a moment I believed I was a-going to see a little ghost.\n\nBut the touch of a real child was laid upon the outer handle of the\ndoor, and the handle turned, and the door opened a little way, and a\nreal child peeped in.  A bright little comely girl with large dark\neyes.\n\nLooking full at me, the tiny creature took off her mite of a straw\nhat, and a quantity of dark curls fell about her face.  Then she\nopened her lips, and said in a pretty voice,\n\n\"Grandfather!\"\n\n\"Ah, my God!\" I cries out.  \"She can speak!\"\n\n\"Yes, dear grandfather.  And I am to ask you whether there was ever\nany one that I remind you of?\"\n\nIn a moment Sophy was round my neck, as well as the child, and her\nhusband was a-wringing my hand with his face hid, and we all had to\nshake ourselves together before we could get over it.  And when we\ndid begin to get over it, and I saw the pretty child a-talking,\npleased and quick and eager and busy, to her mother, in the signs\nthat I had first taught her mother, the happy and yet pitying tears\nfell rolling down my face.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of Doctor Marigold by Charles Dickens\n\nProject Gutenberg Etext of Going into Society by Charles Dickens\n#46 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nGoing into Society\n\nby Charles Dickens\n\nAugust, 1998  [Etext #1422]\n\n\nProject Gutenberg Etext of Going into Society by Charles Dickens\n******This file should be named gisoc10.txt or gsoic10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, gisoc11.txt\nVERSIONS based on separate sources get new LETTER, gisoc10a.txt\n\n\nThis etext was prepared from the 1894 Chapman and Hall \"Christmas\nStories\" edition by David Price, email ccx074@coventry.ac.uk\n\nProject Gutenberg Etexts are usually created from multiple editions,\nall of which are in the Public Domain in the United States, unless a\ncopyright notice is included.  Therefore, we do NOT keep these books\nin compliance with any particular paper edition, usually otherwise.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month, or 384 more Etexts in 1998 for a total of 1500+\nIf these reach just 10% of the computerized population, then the\ntotal should reach over 150 billion Etexts given away.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/CMU\": and are\ntax deductible to the extent allowable by law.  (CMU = Carnegie-\nMellon University).\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nCarnegie-Mellon University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association/Carnegie-Mellon\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Carnegie-Mellon University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThis etext was prepared from the 1894 Chapman and Hall \"Christmas\nStories\" edition by David Price, email ccx074@coventry.ac.uk\n\n\n\n\n\nGOING INTO SOCIETY\n\n\n\n\nAt one period of its reverses, the House fell into the occupation of\na Showman.  He was found registered as its occupier, on the parish\nbooks of the time when he rented the House, and there was therefore\nno need of any clue to his name.  But, he himself was less easy to\nbe found; for, he had led a wandering life, and settled people had\nlost sight of him, and people who plumed themselves on being\nrespectable were shy of admitting that they had ever known anything\nof him.  At last, among the marsh lands near the river's level, that\nlie about Deptford and the neighbouring market-gardens, a Grizzled\nPersonage in velveteen, with a face so cut up by varieties of\nweather that he looked as if he had been tattooed, was found smoking\na pipe at the door of a wooden house on wheels.  The wooden house\nwas laid up in ordinary for the winter, near the mouth of a muddy\ncreek; and everything near it, the foggy river, the misty marshes,\nand the steaming market-gardens, smoked in company with the grizzled\nman.  In the midst of this smoking party, the funnel-chimney of the\nwooden house on wheels was not remiss, but took its pipe with the\nrest in a companionable manner.\n\nOn being asked if it were he who had once rented the House to Let,\nGrizzled Velveteen looked surprised, and said yes.  Then his name\nwas Magsman?  That was it, Toby Magsman--which lawfully christened\nRobert; but called in the line, from a infant, Toby.  There was\nnothing agin Toby Magsman, he believed?  If there was suspicion of\nsuch--mention it!\n\nThere was no suspicion of such, he might rest assured.  But, some\ninquiries were making about that House, and would he object to say\nwhy he left it?\n\nNot at all; why should he?  He left it, along of a Dwarf.\n\nAlong of a Dwarf?\n\nMr. Magsman repeated, deliberately and emphatically, Along of a\nDwarf.\n\nMight it be compatible with Mr. Magsman's inclination and\nconvenience to enter, as a favour, into a few particulars?\n\nMr. Magsman entered into the following particulars.\n\nIt was a long time ago, to begin with;--afore lotteries and a deal\nmore was done away with.  Mr. Magsman was looking about for a good\npitch, and he see that house, and he says to himself, \"I'll have\nyou, if you're to be had.  If money'll get you, I'll have you.\"\n\nThe neighbours cut up rough, and made complaints; but Mr. Magsman\ndon't know what they WOULD have had.  It was a lovely thing.  First\nof all, there was the canvass, representin the picter of the Giant,\nin Spanish trunks and a ruff, who was himself half the heighth of\nthe house, and was run up with a line and pulley to a pole on the\nroof, so that his Ed was coeval with the parapet.  Then, there was\nthe canvass, representin the picter of the Albina lady, showing her\nwhite air to the Army and Navy in correct uniform.  Then, there was\nthe canvass, representin the picter of the Wild Indian a scalpin a\nmember of some foreign nation.  Then, there was the canvass,\nrepresentin the picter of a child of a British Planter, seized by\ntwo Boa Constrictors--not that WE never had no child, nor no\nConstrictors neither.  Similarly, there was the canvass, representin\nthe picter of the Wild Ass of the Prairies--not that WE never had no\nwild asses, nor wouldn't have had 'em at a gift.  Last, there was\nthe canvass, representin the picter of the Dwarf, and like him too\n(considerin), with George the Fourth in such a state of astonishment\nat him as His Majesty couldn't with his utmost politeness and\nstoutness express.  The front of the House was so covered with\ncanvasses, that there wasn't a spark of daylight ever visible on\nthat side.  \"MAGSMAN'S AMUSEMENTS,\" fifteen foot long by two foot\nhigh, ran over the front door and parlour winders.  The passage was\na Arbour of green baize and gardenstuff.  A barrel-organ performed\nthere unceasing.  And as to respectability,--if threepence ain't\nrespectable, what is?\n\nBut, the Dwarf is the principal article at present, and he was worth\nthe money.  He was wrote up as MAJOR TPSCHOFFKI, OF THE IMPERIAL\nBULGRADERIAN BRIGADE.  Nobody couldn't pronounce the name, and it\nnever was intended anybody should.  The public always turned it, as\na regular rule, into Chopski.  In the line he was called Chops;\npartly on that account, and partly because his real name, if he ever\nhad any real name (which was very dubious), was Stakes.\n\nHe was a un-common small man, he really was.  Certainly not so small\nas he was made out to be, but where IS your Dwarf as is?  He was a\nmost uncommon small man, with a most uncommon large Ed; and what he\nhad inside that Ed, nobody ever knowed but himself:  even supposin\nhimself to have ever took stock of it, which it would have been a\nstiff job for even him to do.\n\nThe kindest little man as never growed!  Spirited, but not proud.\nWhen he travelled with the Spotted Baby--though he knowed himself to\nbe a nat'ral Dwarf, and knowed the Baby's spots to be put upon him\nartificial, he nursed that Baby like a mother.  You never heerd him\ngive a ill-name to a Giant.  He DID allow himself to break out into\nstrong language respectin the Fat Lady from Norfolk; but that was an\naffair of the 'art; and when a man's 'art has been trifled with by a\nlady, and the preference giv to a Indian, he ain't master of his\nactions.\n\nHe was always in love, of course; every human nat'ral phenomenon is.\nAnd he was always in love with a large woman; I never knowed the\nDwarf as could be got to love a small one.  Which helps to keep 'em\nthe Curiosities they are.\n\nOne sing'ler idea he had in that Ed of his, which must have meant\nsomething, or it wouldn't have been there.  It was always his\nopinion that he was entitled to property.  He never would put his\nname to anything.  He had been taught to write, by the young man\nwithout arms, who got his living with his toes (quite a writing\nmaster HE was, and taught scores in the line), but Chops would have\nstarved to death, afore he'd have gained a bit of bread by putting\nhis hand to a paper.  This is the more curious to bear in mind,\nbecause HE had no property, nor hope of property, except his house\nand a sarser.  When I say his house, I mean the box, painted and got\nup outside like a reg'lar six-roomer, that he used to creep into,\nwith a diamond ring (or quite as good to look at) on his forefinger,\nand ring a little bell out of what the Public believed to be the\nDrawing-room winder.  And when I say a sarser, I mean a Chaney\nsarser in which he made a collection for himself at the end of every\nEntertainment.  His cue for that, he took from me:  \"Ladies and\ngentlemen, the little man will now walk three times round the\nCairawan, and retire behind the curtain.\"  When he said anything\nimportant, in private life, he mostly wound it up with this form of\nwords, and they was generally the last thing he said to me at night\nafore he went to bed.\n\nHe had what I consider a fine mind--a poetic mind.  His ideas\nrespectin his property never come upon him so strong as when he sat\nupon a barrel-organ and had the handle turned.  Arter the wibration\nhad run through him a little time, he would screech out, \"Toby, I\nfeel my property coming--grind away!  I'm counting my guineas by\nthousands, Toby--grind away!  Toby, I shall be a man of fortun!  I\nfeel the Mint a jingling in me, Toby, and I'm swelling out into the\nBank of England!\"  Such is the influence of music on a poetic mind.\nNot that he was partial to any other music but a barrel-organ; on\nthe contrary, hated it.\n\nHe had a kind of a everlasting grudge agin the Public:  which is a\nthing you may notice in many phenomenons that get their living out\nof it.  What riled him most in the nater of his occupation was, that\nit kep him out of Society.  He was continiwally saying, \"Toby, my\nambition is, to go into Society.  The curse of my position towards\nthe Public is, that it keeps me hout of Society.  This don't signify\nto a low beast of a Indian; he an't formed for Society.  This don't\nsignify to a Spotted Baby; HE an't formed for Society.--I am.\"\n\nNobody never could make out what Chops done with his money.  He had\na good salary, down on the drum every Saturday as the day came\nround, besides having the run of his teeth--and he was a Woodpecker\nto eat--but all Dwarfs are.  The sarser was a little income,\nbringing him in so many halfpence that he'd carry 'em for a week\ntogether, tied up in a pocket-handkercher.  And yet he never had\nmoney.  And it couldn't be the Fat Lady from Norfolk, as was once\nsupposed; because it stands to reason that when you have a animosity\ntowards a Indian, which makes you grind your teeth at him to his\nface, and which can hardly hold you from Goosing him audible when\nhe's going through his War-Dance--it stands to reason you wouldn't\nunder them circumstances deprive yourself, to support that Indian in\nthe lap of luxury.\n\nMost unexpected, the mystery come out one day at Egham Races.  The\nPublic was shy of bein pulled in, and Chops was ringin his little\nbell out of his drawing-room winder, and was snarlin to me over his\nshoulder as he kneeled down with his legs out at the back-door--for\nhe couldn't be shoved into his house without kneeling down, and the\npremises wouldn't accommodate his legs--was snarlin, \"Here's a\nprecious Public for you; why the Devil don't they tumble up?\" when a\nman in the crowd holds up a carrier-pigeon, and cries out, \"If\nthere's any person here as has got a ticket, the Lottery's just\ndrawed, and the number as has come up for the great prize is three,\nseven, forty-two!  Three, seven, forty-two!\"  I was givin the man to\nthe Furies myself, for calling off the Public's attention--for the\nPublic will turn away, at any time, to look at anything in\npreference to the thing showed 'em; and if you doubt it, get 'em\ntogether for any indiwidual purpose on the face of the earth, and\nsend only two people in late, and see if the whole company an't far\nmore interested in takin particular notice of them two than of you--\nI say, I wasn't best pleased with the man for callin out, and wasn't\nblessin him in my own mind, when I see Chops's little bell fly out\nof winder at a old lady, and he gets up and kicks his box over,\nexposin the whole secret, and he catches hold of the calves of my\nlegs and he says to me, \"Carry me into the wan, Toby, and throw a\npail of water over me or I'm a dead man, for I've come into my\nproperty!\"\n\nTwelve thousand odd hundred pound, was Chops's winnins.  He had\nbought a half-ticket for the twenty-five thousand prize, and it had\ncome up.  The first use he made of his property, was, to offer to\nfight the Wild Indian for five hundred pound a side, him with a\npoisoned darnin-needle and the Indian with a club; but the Indian\nbeing in want of backers to that amount, it went no further.\n\nArter he had been mad for a week--in a state of mind, in short, in\nwhich, if I had let him sit on the organ for only two minutes, I\nbelieve he would have bust--but we kep the organ from him--Mr. Chops\ncome round, and behaved liberal and beautiful to all.  He then sent\nfor a young man he knowed, as had a wery genteel appearance and was\na Bonnet at a gaming-booth (most respectable brought up, father\nhavin been imminent in the livery stable line but unfort'nate in a\ncommercial crisis, through paintin a old gray, ginger-bay, and\nsellin him with a Pedigree), and Mr. Chops said to this Bonnet, who\nsaid his name was Normandy, which it wasn't:\n\n\"Normandy, I'm a goin into Society.  Will you go with me?\"\n\nSays Normandy:  \"Do I understand you, Mr. Chops, to hintimate that\nthe 'ole of the expenses of that move will be borne by yourself?\"\n\n\"Correct,\" says Mr. Chops.  \"And you shall have a Princely allowance\ntoo.\"\n\nThe Bonnet lifted Mr. Chops upon a chair, to shake hands with him,\nand replied in poetry, with his eyes seemingly full of tears:\n\n\n\"My boat is on the shore,\nAnd my bark is on the sea,\nAnd I do not ask for more,\nBut I'll Go:- along with thee.\"\n\n\nThey went into Society, in a chay and four grays with silk jackets.\nThey took lodgings in Pall Mall, London, and they blazed away.\n\nIn consequence of a note that was brought to Bartlemy Fair in the\nautumn of next year by a servant, most wonderful got up in milk-\nwhite cords and tops, I cleaned myself and went to Pall Mall, one\nevening appinted.  The gentlemen was at their wine arter dinner, and\nMr. Chops's eyes was more fixed in that Ed of his than I thought\ngood for him.  There was three of 'em (in company, I mean), and I\nknowed the third well.  When last met, he had on a white Roman\nshirt, and a bishop's mitre covered with leopard-skin, and played\nthe clarionet all wrong, in a band at a Wild Beast Show.\n\nThis gent took on not to know me, and Mr. Chops said:  \"Gentlemen,\nthis is a old friend of former days:\" and Normandy looked at me\nthrough a eye-glass, and said, \"Magsman, glad to see you!\"--which\nI'll take my oath he wasn't.  Mr. Chops, to git him convenient to\nthe table, had his chair on a throne (much of the form of George the\nFourth's in the canvass), but he hardly appeared to me to be King\nthere in any other pint of view, for his two gentlemen ordered about\nlike Emperors.  They was all dressed like May-Day--gorgeous!--And as\nto Wine, they swam in all sorts.\n\nI made the round of the bottles, first separate (to say I had done\nit), and then mixed 'em all together (to say I had done it), and\nthen tried two of 'em as half-and-half, and then t'other two.\nAltogether, I passed a pleasin evenin, but with a tendency to feel\nmuddled, until I considered it good manners to get up and say, \"Mr.\nChops, the best of friends must part, I thank you for the wariety of\nforeign drains you have stood so 'ansome, I looks towards you in red\nwine, and I takes my leave.\"  Mr. Chops replied, \"If you'll just\nhitch me out of this over your right arm, Magsman, and carry me\ndown-stairs, I'll see you out.\"  I said I couldn't think of such a\nthing, but he would have it, so I lifted him off his throne.  He\nsmelt strong of Maideary, and I couldn't help thinking as I carried\nhim down that it was like carrying a large bottle full of wine, with\na rayther ugly stopper, a good deal out of proportion.\n\nWhen I set him on the door-mat in the hall, he kep me close to him\nby holding on to my coat-collar, and he whispers:\n\n\"I ain't 'appy, Magsman.\"\n\n\"What's on your mind, Mr. Chops?\"\n\n\"They don't use me well.  They an't grateful to me.  They puts me on\nthe mantel-piece when I won't have in more Champagne-wine, and they\nlocks me in the sideboard when I won't give up my property.\"\n\n\"Get rid of 'em, Mr. Chops.\"\n\n\"I can't.  We're in Society together, and what would Society say?\"\n\n\"Come out of Society!\" says I.\n\n\"I can't.  You don't know what you're talking about.  When you have\nonce gone into Society, you mustn't come out of it.\"\n\n\"Then if you'll excuse the freedom, Mr. Chops,\" were my remark,\nshaking my head grave, \"I think it's a pity you ever went in.\"\n\nMr. Chops shook that deep Ed of his, to a surprisin extent, and\nslapped it half a dozen times with his hand, and with more Wice than\nI thought were in him.  Then, he says, \"You're a good fellow, but\nyou don't understand.  Good-night, go along.  Magsman, the little\nman will now walk three times round the Cairawan, and retire behind\nthe curtain.\"  The last I see of him on that occasion was his tryin,\non the extremest werge of insensibility, to climb up the stairs, one\nby one, with his hands and knees.  They'd have been much too steep\nfor him, if he had been sober; but he wouldn't be helped.\n\nIt warn't long after that, that I read in the newspaper of Mr.\nChops's being presented at court.  It was printed, \"It will be\nrecollected\"--and I've noticed in my life, that it is sure to be\nprinted that it WILL be recollected, whenever it won't--\"that Mr.\nChops is the individual of small stature, whose brilliant success in\nthe last State Lottery attracted so much attention.\"  Well, I says\nto myself, Such is Life!  He has been and done it in earnest at\nlast.  He has astonished George the Fourth!\n\n(On account of which, I had that canvass new-painted, him with a bag\nof money in his hand, a presentin it to George the Fourth, and a\nlady in Ostrich Feathers fallin in love with him in a bag-wig,\nsword, and buckles correct.)\n\nI took the House as is the subject of present inquiries--though not\nthe honour of bein acquainted--and I run Magsman's Amusements in it\nthirteen months--sometimes one thing, sometimes another, sometimes\nnothin particular, but always all the canvasses outside.  One night,\nwhen we had played the last company out, which was a shy company,\nthrough its raining Heavens hard, I was takin a pipe in the one pair\nback along with the young man with the toes, which I had taken on\nfor a month (though he never drawed--except on paper), and I heard a\nkickin at the street door.  \"Halloa!\" I says to the young man,\n\"what's up!\"  He rubs his eyebrows with his toes, and he says, \"I\ncan't imagine, Mr. Magsman\"--which he never could imagine nothin,\nand was monotonous company.\n\nThe noise not leavin off, I laid down my pipe, and I took up a\ncandle, and I went down and opened the door.  I looked out into the\nstreet; but nothin could I see, and nothin was I aware of, until I\nturned round quick, because some creetur run between my legs into\nthe passage.  There was Mr. Chops!\n\n\"Magsman,\" he says, \"take me, on the old terms, and you've got me;\nif it's done, say done!\"\n\nI was all of a maze, but I said, \"Done, sir.\"\n\n\"Done to your done, and double done!\" says he.  \"Have you got a bit\nof supper in the house?\"\n\nBearin in mind them sparklin warieties of foreign drains as we'd\nguzzled away at in Pall Mall, I was ashamed to offer him cold\nsassages and gin-and-water; but he took 'em both and took 'em free;\nhavin a chair for his table, and sittin down at it on a stool, like\nhold times.  I, all of a maze all the while.\n\nIt was arter he had made a clean sweep of the sassages (beef, and to\nthe best of my calculations two pound and a quarter), that the\nwisdom as was in that little man began to come out of him like\nprespiration.\n\n\"Magsman,\" he says, \"look upon me!  You see afore you, One as has\nboth gone into Society and come out.\"\n\n\"O!  You ARE out of it, Mr. Chops?  How did you get out, sir?\"\n\n\"SOLD OUT!\" says he.  You never saw the like of the wisdom as his Ed\nexpressed, when he made use of them two words.\n\n\"My friend Magsman, I'll impart to you a discovery I've made.  It's\nwallable; it's cost twelve thousand five hundred pound; it may do\nyou good in life--The secret of this matter is, that it ain't so\nmuch that a person goes into Society, as that Society goes into a\nperson.\"\n\nNot exactly keepin up with his meanin, I shook my head, put on a\ndeep look, and said, \"You're right there, Mr. Chops.\"\n\n\"Magsman,\" he says, twitchin me by the leg, \"Society has gone into\nme, to the tune of every penny of my property.\"\n\nI felt that I went pale, and though nat'rally a bold speaker, I\ncouldn't hardly say, \"Where's Normandy?\"\n\n\"Bolted.  With the plate,\" said Mr. Chops.\n\n\"And t'other one?\" meaning him as formerly wore the bishop's mitre.\n\n\"Bolted.  With the jewels,\" said Mr. Chops.\n\nI sat down and looked at him, and he stood up and looked at me.\n\n\"Magsman,\" he says, and he seemed to myself to get wiser as he got\nhoarser; \"Society, taken in the lump, is all dwarfs.  At the court\nof St. James's, they was all a doing my old business--all a goin\nthree times round the Cairawan, in the hold court-suits and\nproperties.  Elsewheres, they was most of 'em ringin their little\nbells out of make-believes.  Everywheres, the sarser was a goin\nround.  Magsman, the sarser is the uniwersal Institution!\"\n\nI perceived, you understand, that he was soured by his misfortunes,\nand I felt for Mr. Chops.\n\n\"As to Fat Ladies,\" he says, giving his head a tremendious one agin\nthe wall, \"there's lots of THEM in Society, and worse than the\noriginal.  HERS was a outrage upon Taste--simply a outrage upon\nTaste--awakenin contempt--carryin its own punishment in the form of\na Indian.\"  Here he giv himself another tremendious one.  \"But\nTHEIRS, Magsman, THEIRS is mercenary outrages.  Lay in Cashmeer\nshawls, buy bracelets, strew 'em and a lot of 'andsome fans and\nthings about your rooms, let it be known that you give away like\nwater to all as come to admire, and the Fat Ladies that don't\nexhibit for so much down upon the drum, will come from all the pints\nof the compass to flock about you, whatever you are.  They'll drill\nholes in your 'art, Magsman, like a Cullender.  And when you've no\nmore left to give, they'll laugh at you to your face, and leave you\nto have your bones picked dry by Wulturs, like the dead Wild Ass of\nthe Prairies that you deserve to be!\"  Here he giv himself the most\ntremendious one of all, and dropped.\n\nI thought he was gone.  His Ed was so heavy, and he knocked it so\nhard, and he fell so stoney, and the sassagerial disturbance in him\nmust have been so immense, that I thought he was gone.  But, he soon\ncome round with care, and he sat up on the floor, and he said to me,\nwith wisdom comin out of his eyes, if ever it come:\n\n\"Magsman!  The most material difference between the two states of\nexistence through which your unhappy friend has passed;\" he reached\nout his poor little hand, and his tears dropped down on the\nmoustachio which it was a credit to him to have done his best to\ngrow, but it is not in mortals to command success,--\"the difference\nthis.  When I was out of Society, I was paid light for being seen.\nWhen I went into Society, I paid heavy for being seen.  I prefer the\nformer, even if I wasn't forced upon it.  Give me out through the\ntrumpet, in the hold way, to-morrow.\"\n\nArter that, he slid into the line again as easy as if he had been\niled all over.  But the organ was kep from him, and no allusions was\never made, when a company was in, to his property.  He got wiser\nevery day; his views of Society and the Public was luminous,\nbewilderin, awful; and his Ed got bigger and bigger as his Wisdom\nexpanded it.\n\nHe took well, and pulled 'em in most excellent for nine weeks.  At\nthe expiration of that period, when his Ed was a sight, he expressed\none evenin, the last Company havin been turned out, and the door\nshut, a wish to have a little music.\n\n\"Mr. Chops,\" I said (I never dropped the \"Mr.\" with him; the world\nmight do it, but not me); \"Mr. Chops, are you sure as you are in a\nstate of mind and body to sit upon the organ?\"\n\nHis answer was this:  \"Toby, when next met with on the tramp, I\nforgive her and the Indian.  And I am.\"\n\nIt was with fear and trembling that I began to turn the handle; but\nhe sat like a lamb.  I will be my belief to my dying day, that I see\nhis Ed expand as he sat; you may therefore judge how great his\nthoughts was.  He sat out all the changes, and then he come off.\n\n\"Toby,\" he says, with a quiet smile, \"the little man will now walk\nthree times round the Cairawan, and retire behind the curtain.\"\n\nWhen we called him in the morning, we found him gone into a much\nbetter Society than mine or Pall Mall's.  I giv Mr. Chops as\ncomfortable a funeral as lay in my power, followed myself as Chief,\nand had the George the Fourth canvass carried first, in the form of\na banner.  But, the House was so dismal arterwards, that I giv it\nup, and took to the Wan again.\n\n\n\"I don't triumph,\" said Jarber, folding up the second manuscript,\nand looking hard at Trottle.  \"I don't triumph over this worthy\ncreature.  I merely ask him if he is satisfied now?\"\n\n\"How can he be anything else?\" I said, answering for Trottle, who\nsat obstinately silent.  \"This time, Jarber, you have not only read\nus a delightfully amusing story, but you have also answered the\nquestion about the House.  Of course it stands empty now.  Who would\nthink of taking it after it had been turned into a caravan?\"  I\nlooked at Trottle, as I said those last words, and Jarber waved his\nhand indulgently in the same direction.\n\n\"Let this excellent person speak,\" said Jarber.  \"You were about to\nsay, my good man?\" -\n\n\"I only wished to ask, sir,\" said Trottle doggedly, \"if you could\nkindly oblige me with a date or two in connection with that last\nstory?\"\n\n\"A date!\" repeated Jarber.  \"What does the man want with dates!\"\n\n\"I should be glad to know, with great respect,\" persisted Trottle,\n\"if the person named Magsman was the last tenant who lived in the\nHouse.  It's my opinion--if I may be excused for giving it--that he\nmost decidedly was not.\"\n\nWith those words, Trottle made a low bow, and quietly left the room.\n\nThere is no denying that Jarber, when we were left together, looked\nsadly discomposed.  He had evidently forgotten to inquire about\ndates; and, in spite of his magnificent talk about his series of\ndiscoveries, it was quite as plain that the two stories he had just\nread, had really and truly exhausted his present stock.  I thought\nmyself bound, in common gratitude, to help him out of his\nembarrassment by a timely suggestion.  So I proposed that he should\ncome to tea again, on the next Monday evening, the thirteenth, and\nshould make such inquiries in the meantime, as might enable him to\ndispose triumphantly of Trottle's objection.\n\nHe gallantly kissed my hand, made a neat little speech of\nacknowledgment, and took his leave.  For the rest of the week I\nwould not encourage Trottle by allowing him to refer to the House at\nall.  I suspected he was making his own inquiries about dates, but I\nput no questions to him.\n\nOn Monday evening, the thirteenth, that dear unfortunate Jarber\ncame, punctual to the appointed time.  He looked so terribly\nharassed, that he was really quite a spectacle of feebleness and\nfatigue.  I saw, at a glance, that the question of dates had gone\nagainst him, that Mr. Magsman had not been the last tenant of the\nHouse, and that the reason of its emptiness was still to seek.\n\n\"What I have gone through,\" said Jarber, \"words are not eloquent\nenough to tell.  O Sophonisba, I have begun another series of\ndiscoveries!  Accept the last two as stories laid on your shrine;\nand wait to blame me for leaving your curiosity unappeased, until\nyou have heard Number Three.\"\n\nNumber Three looked like a very short manuscript, and I said as\nmuch.  Jarber explained to me that we were to have some poetry this\ntime.  In the course of his investigations he had stepped into the\nCirculating Library, to seek for information on the one important\nsubject.  All the Library-people knew about the House was, that a\nfemale relative of the last tenant, as they believed, had, just\nafter that tenant left, sent a little manuscript poem to them which\nshe described as referring to events that had actually passed in the\nHouse; and which she wanted the proprietor of the Library to\npublish.  She had written no address on her letter; and the\nproprietor had kept the manuscript ready to be given back to her\n(the publishing of poems not being in his line) when she might call\nfor it.  She had never called for it; and the poem had been lent to\nJarber, at his express request, to read to me.\n\nBefore he began, I rang the bell for Trottle; being determined to\nhave him present at the new reading, as a wholesome check on his\nobstinacy.  To my surprise Peggy answered the bell, and told me,\nthat Trottle had stepped out without saying where.  I instantly felt\nthe strongest possible conviction that he was at his old tricks:\nand that his stepping out in the evening, without leave, meant--\nPhilandering.\n\nControlling myself on my visitor's account, I dismissed Peggy,\nstifled my indignation, and prepared, as politely as might be, to\nlisten to Jarber.\n\n\n\n\n\nEnd of Project Gutenberg Etext of Going into Society by Charles Dickens\n\n*The Project Gutenberg Etext of George Silverman's Explanation*\n#18 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nGeorge Silverman's Explanation\n\nby Charles Dickens\n\nFebruary, 1997  [Etext #809]\n\n\n*The Project Gutenberg Etext of George Silverman's Explanation*\n*****This file should be named hldrm10.txt or hldrm10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, hldrm11.txt.\nVERSIONS based on separate sources get new LETTER, hldrm10a.txt.\n\n\nScanned and proofed by David Price\nccx074@coventry.ac.uk\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.  We will try add 800 more,\nduring 1997, but it will take all the effort we can manage to do\nthe doubling of our library again this year, what with the other\nmassive requirements it is going to take to get incorporated and\nestablish something that will have some permanence.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg\"\n\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext97\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg (the \"Project\").\nAmong other things, this means that no one owns a United States\ncopyright on or for this work, so the Project (and you!) can copy\nand distribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association within the 60\n     days following each date you prepare (or were legally\n     required to prepare) your annual (or equivalent periodic)\n     tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nGeorge Silverman's Explanation by Charles Dickens\nScanned and proofed by David Price\nccx074@coventry.ac.uk\n\n\n\n\n\nGEORGE SILVERMAN'S EXPLANATION\n\n\n\n\nFIRST CHAPTER\n\n\n\nIT happened in this wise -\n\nBut, sitting with my pen in my hand looking at those words again,\nwithout descrying any hint in them of the words that should follow,\nit comes into my mind that they have an abrupt appearance.  They\nmay serve, however, if I let them remain, to suggest how very\ndifficult I find it to begin to explain my explanation.  An uncouth\nphrase: and yet I do not see my way to a better.\n\n\n\nSECOND CHAPTER\n\n\n\nIT happened in THIS wise -\n\nBut, looking at those words, and comparing them with my former\nopening, I find they are the self-same words repeated.  This is the\nmore surprising to me, because I employ them in quite a new\nconnection.  For indeed I declare that my intention was to discard\nthe commencement I first had in my thoughts, and to give the\npreference to another of an entirely different nature, dating my\nexplanation from an anterior period of my life.  I will make a\nthird trial, without erasing this second failure, protesting that\nit is not my design to conceal any of my infirmities, whether they\nbe of head or heart.\n\n\n\nTHIRD CHAPTER\n\n\n\nNOT as yet directly aiming at how it came to pass, I will come upon\nit by degrees.  The natural manner, after all, for God knows that\nis how it came upon me.\n\nMy parents were in a miserable condition of life, and my infant\nhome was a cellar in Preston.  I recollect the sound of father's\nLancashire clogs on the street pavement above, as being different\nin my young hearing from the sound of all other clogs; and I\nrecollect, that, when mother came down the cellar-steps, I used\ntremblingly to speculate on her feet having a good or an ill-\ntempered look, - on her knees, - on her waist, - until finally her\nface came into view, and settled the question.  From this it will\nbe seen that I was timid, and that the cellar-steps were steep, and\nthat the doorway was very low.\n\nMother had the gripe and clutch of poverty upon her face, upon her\nfigure, and not least of all upon her voice.  Her sharp and high-\npitched words were squeezed out of her, as by the compression of\nbony fingers on a leathern bag; and she had a way of rolling her\neyes about and about the cellar, as she scolded, that was gaunt and\nhungry.  Father, with his shoulders rounded, would sit quiet on a\nthree-legged stool, looking at the empty grate, until she would\npluck the stool from under him, and bid him go bring some money\nhome.  Then he would dismally ascend the steps; and I, holding my\nragged shirt and trousers together with a hand (my only braces),\nwould feint and dodge from mother's pursuing grasp at my hair.\n\nA worldly little devil was mother's usual name for me.  Whether I\ncried for that I was in the dark, or for that it was cold, or for\nthat I was hungry, or whether I squeezed myself into a warm corner\nwhen there was a fire, or ate voraciously when there was food, she\nwould still say, 'O, you worldly little devil!'  And the sting of\nit was, that I quite well knew myself to be a worldly little devil.\nWorldly as to wanting to be housed and warmed, worldly as to\nwanting to be fed, worldly as to the greed with which I inwardly\ncompared how much I got of those good things with how much father\nand mother got, when, rarely, those good things were going.\n\nSometimes they both went away seeking work; and then I would be\nlocked up in the cellar for a day or two at a time.  I was at my\nworldliest then.  Left alone, I yielded myself up to a worldly\nyearning for enough of anything (except misery), and for the death\nof mother's father, who was a machine-maker at Birmingham, and on\nwhose decease, I had heard mother say, she would come into a whole\ncourtful of houses 'if she had her rights.'  Worldly little devil,\nI would stand about, musingly fitting my cold bare feet into\ncracked bricks and crevices of the damp cellar-floor, - walking\nover my grandfather's body, so to speak, into the courtful of\nhouses, and selling them for meat and drink, and clothes to wear.\n\nAt last a change came down into our cellar.  The universal change\ncame down even as low as that, - so will it mount to any height on\nwhich a human creature can perch, - and brought other changes with\nit.\n\nWe had a heap of I don't know what foul litter in the darkest\ncorner, which we called 'the bed.'  For three days mother lay upon\nit without getting up, and then began at times to laugh.  If I had\never heard her laugh before, it had been so seldom that the strange\nsound frightened me.  It frightened father too; and we took it by\nturns to give her water.  Then she began to move her head from side\nto side, and sing.  After that, she getting no better, father fell\na-laughing and a-singing; and then there was only I to give them\nboth water, and they both died.\n\n\n\nFOURTH CHAPTER\n\n\n\nWHEN I was lifted out of the cellar by two men, of whom one came\npeeping down alone first, and ran away and brought the other, I\ncould hardly bear the light of the street.  I was sitting in the\nroad-way, blinking at it, and at a ring of people collected around\nme, but not close to me, when, true to my character of worldly\nlittle devil, I broke silence by saying, 'I am hungry and thirsty!'\n\n'Does he know they are dead?' asked one of another.\n\n'Do you know your father and mother are both dead of fever?' asked\na third of me severely.\n\n'I don't know what it is to be dead.  I supposed it meant that,\nwhen the cup rattled against their teeth, and the water spilt over\nthem.  I am hungry and thirsty.'  That was all I had to say about\nit.\n\nThe ring of people widened outward from the inner side as I looked\naround me; and I smelt vinegar, and what I know to be camphor,\nthrown in towards where I sat.  Presently some one put a great\nvessel of smoking vinegar on the ground near me; and then they all\nlooked at me in silent horror as I ate and drank of what was\nbrought for me.  I knew at the time they had a horror of me, but I\ncouldn't help it.\n\nI was still eating and drinking, and a murmur of discussion had\nbegun to arise respecting what was to be done with me next, when I\nheard a cracked voice somewhere in the ring say, 'My name is\nHawkyard, Mr. Verity Hawkyard, of West Bromwich.'  Then the ring\nsplit in one place; and a yellow-faced, peak-nosed gentleman, clad\nall in iron-gray to his gaiters, pressed forward with a policeman\nand another official of some sort.  He came forward close to the\nvessel of smoking vinegar; from which he sprinkled himself\ncarefully, and me copiously.\n\n'He had a grandfather at Birmingham, this young boy, who is just\ndead too,' said Mr. Hawkyard.\n\nI turned my eyes upon the speaker, and said in a ravening manner,\n'Where's his houses?'\n\n'Hah!  Horrible worldliness on the edge of the grave,' said Mr.\nHawkyard, casting more of the vinegar over me, as if to get my\ndevil out of me.  'I have undertaken a slight - a very slight -\ntrust in behalf of this boy; quite a voluntary trust: a matter of\nmere honour, if not of mere sentiment: still I have taken it upon\nmyself, and it shall be (O, yes, it shall be!) discharged.'\n\nThe bystanders seemed to form an opinion of this gentleman much\nmore favourable than their opinion of me.\n\n'He shall be taught,' said Mr. Hawkyard, '(O, yes, he shall be\ntaught!) but what is to be done with him for the present?  He may\nbe infected.  He may disseminate infection.'  The ring widened\nconsiderably.  'What is to be done with him?'\n\nHe held some talk with the two officials.  I could distinguish no\nword save 'Farm-house.'  There was another sound several times\nrepeated, which was wholly meaningless in my ears then, but which I\nknew afterwards to be 'Hoghton Towers.'\n\n'Yes,' said Mr. Hawkyard.  'I think that sounds promising; I think\nthat sounds hopeful.  And he can be put by himself in a ward, for a\nnight or two, you say?'\n\nIt seemed to be the police-officer who had said so; for it was he\nwho replied, Yes!  It was he, too, who finally took me by the arm,\nand walked me before him through the streets, into a whitewashed\nroom in a bare building, where I had a chair to sit in, a table to\nsit at, an iron bedstead and good mattress to lie upon, and a rug\nand blanket to cover me.  Where I had enough to eat too, and was\nshown how to clean the tin porringer in which it was conveyed to\nme, until it was as good as a looking-glass.  Here, likewise, I was\nput in a bath, and had new clothes brought to me; and my old rags\nwere burnt, and I was camphored and vinegared and disinfected in a\nvariety of ways.\n\nWhen all this was done, - I don't know in how many days or how few,\nbut it matters not, - Mr. Hawkyard stepped in at the door,\nremaining close to it, and said, 'Go and stand against the opposite\nwall, George Silverman.  As far off as you can.  That'll do.  How\ndo you feel?'\n\nI told him that I didn't feel cold, and didn't feel hungry, and\ndidn't feel thirsty.  That was the whole round of human feelings,\nas far as I knew, except the pain of being beaten.\n\n'Well,' said he, 'you are going, George, to a healthy farm-house to\nbe purified.  Keep in the air there as much as you can.  Live an\nout-of-door life there, until you are fetched away.  You had better\nnot say much - in fact, you had better be very careful not to say\nanything - about what your parents died of, or they might not like\nto take you in.  Behave well, and I'll put you to school; O, yes!\nI'll put you to school, though I'm not obligated to do it.  I am a\nservant of the Lord, George; and I have been a good servant to him,\nI have, these five-and-thirty years.  The Lord has had a good\nservant in me, and he knows it.'\n\nWhat I then supposed him to mean by this, I cannot imagine.  As\nlittle do I know when I began to comprehend that he was a prominent\nmember of some obscure denomination or congregation, every member\nof which held forth to the rest when so inclined, and among whom he\nwas called Brother Hawkyard.  It was enough for me to know, on that\nday in the ward, that the farmer's cart was waiting for me at the\nstreet corner.  I was not slow to get into it; for it was the first\nride I ever had in my life.\n\nIt made me sleepy, and I slept.  First, I stared at Preston streets\nas long as they lasted; and, meanwhile, I may have had some small\ndumb wondering within me whereabouts our cellar was; but I doubt\nit.  Such a worldly little devil was I, that I took no thought who\nwould bury father and mother, or where they would be buried, or\nwhen.  The question whether the eating and drinking by day, and the\ncovering by night, would be as good at the farm-house as at the\nward superseded those questions.\n\nThe jolting of the cart on a loose stony road awoke me; and I found\nthat we were mounting a steep hill, where the road was a rutty by-\nroad through a field.  And so, by fragments of an ancient terrace,\nand by some rugged outbuildings that had once been fortified, and\npassing under a ruined gateway we came to the old farm-house in the\nthick stone wall outside the old quadrangle of Hoghton Towers:\nwhich I looked at like a stupid savage, seeing no specially in,\nseeing no antiquity in; assuming all farm-houses to resemble it;\nassigning the decay I noticed to the one potent cause of all ruin\nthat I knew, - poverty; eyeing the pigeons in their flights, the\ncattle in their stalls, the ducks in the pond, and the fowls\npecking about the yard, with a hungry hope that plenty of them\nmight be killed for dinner while I stayed there; wondering whether\nthe scrubbed dairy vessels, drying in the sunlight, could be goodly\nporringers out of which the master ate his belly-filling food, and\nwhich he polished when he had done, according to my ward\nexperience; shrinkingly doubtful whether the shadows, passing over\nthat airy height on the bright spring day, were not something in\nthe nature of frowns, - sordid, afraid, unadmiring, - a small brute\nto shudder at.\n\nTo that time I had never had the faintest impression of duty.  I\nhad had no knowledge whatever that there was anything lovely in\nthis life.  When I had occasionally slunk up the cellar-steps into\nthe street, and glared in at shop-windows, I had done so with no\nhigher feelings than we may suppose to animate a mangy young dog or\nwolf-cub.  It is equally the fact that I had never been alone, in\nthe sense of holding unselfish converse with myself.  I had been\nsolitary often enough, but nothing better.\n\nSuch was my condition when I sat down to my dinner that day, in the\nkitchen of the old farm-house.  Such was my condition when I lay on\nmy bed in the old farm-house that night, stretched out opposite the\nnarrow mullioned window, in the cold light of the moon, like a\nyoung vampire.\n\n\n\nFIFTH CHAPTER\n\n\n\nWHAT do I know of Hoghton Towers?  Very little; for I have been\ngratefully unwilling to disturb my first impressions.  A house,\ncenturies old, on high ground a mile or so removed from the road\nbetween Preston and Blackburn, where the first James of England, in\nhis hurry to make money by making baronets, perhaps made some of\nthose remunerative dignitaries.  A house, centuries old, deserted\nand falling to pieces, its woods and gardens long since grass-land\nor ploughed up, the Rivers Ribble and Darwen glancing below it, and\na vague haze of smoke, against which not even the supernatural\nprescience of the first Stuart could foresee a counter-blast,\nhinting at steam-power, powerful in two distances.\n\nWhat did I know then of Hoghton Towers?  When I first peeped in at\nthe gate of the lifeless quadrangle, and started from the\nmouldering statue becoming visible to me like its guardian ghost;\nwhen I stole round by the back of the farm-house, and got in among\nthe ancient rooms, many of them with their floors and ceilings\nfalling, the beams and rafters hanging dangerously down, the\nplaster dropping as I trod, the oaken panels stripped away, the\nwindows half walled up, half broken; when I discovered a gallery\ncommanding the old kitchen, and looked down between balustrades\nupon a massive old table and benches, fearing to see I know not\nwhat dead-alive creatures come in and seat themselves, and look up\nwith I know not what dreadful eyes, or lack of eyes, at me; when\nall over the house I was awed by gaps and chinks where the sky\nstared sorrowfully at me, where the birds passed, and the ivy\nrustled, and the stains of winter weather blotched the rotten\nfloors; when down at the bottom of dark pits of staircase, into\nwhich the stairs had sunk, green leaves trembled, butterflies\nfluttered, and bees hummed in and out through the broken door-ways;\nwhen encircling the whole ruin were sweet scents, and sights of\nfresh green growth, and ever-renewing life, that I had never\ndreamed of, - I say, when I passed into such clouded perception of\nthese things as my dark soul could compass, what did I know then of\nHoghton Towers?\n\nI have written that the sky stared sorrowfully at me.  Therein have\nI anticipated the answer.  I knew that all these things looked\nsorrowfully at me; that they seemed to sigh or whisper, not without\npity for me, 'Alas! poor worldly little devil!'\n\nThere were two or three rats at the bottom of one of the smaller\npits of broken staircase when I craned over and looked in.  They\nwere scuffling for some prey that was there; and, when they started\nand hid themselves close together in the dark, I thought of the old\nlife (it had grown old already) in the cellar.\n\nHow not to be this worldly little devil? how not to have a\nrepugnance towards myself as I had towards the rats?  I hid in a\ncorner of one of the smaller chambers, frightened at myself, and\ncrying (it was the first time I had ever cried for any cause not\npurely physical), and I tried to think about it.  One of the farm-\nploughs came into my range of view just then; and it seemed to help\nme as it went on with its two horses up and down the field so\npeacefully and quietly.\n\nThere was a girl of about my own age in the farm-house family, and\nshe sat opposite to me at the narrow table at meal-times.  It had\ncome into my mind, at our first dinner, that she might take the\nfever from me.  The thought had not disquieted me then.  I had only\nspeculated how she would look under the altered circumstances, and\nwhether she would die.  But it came into my mind now, that I might\ntry to prevent her taking the fever by keeping away from her.  I\nknew I should have but scrambling board if I did; so much the less\nworldly and less devilish the deed would be, I thought.\n\nFrom that hour, I withdrew myself at early morning into secret\ncorners of the ruined house, and remained hidden there until she\nwent to bed.  At first, when meals were ready, I used to hear them\ncalling me; and then my resolution weakened.  But I strengthened it\nagain by going farther off into the ruin, and getting out of\nhearing.  I often watched for her at the dim windows; and, when I\nsaw that she was fresh and rosy, felt much happier.\n\nOut of this holding her in my thoughts, to the humanising of\nmyself, I suppose some childish love arose within me.  I felt, in\nsome sort, dignified by the pride of protecting her, - by the pride\nof making the sacrifice for her.  As my heart swelled with that new\nfeeling, it insensibly softened about mother and father.  It seemed\nto have been frozen before, and now to be thawed.  The old ruin and\nall the lovely things that haunted it were not sorrowful for me\nonly, but sorrowful for mother and father as well.  Therefore did I\ncry again, and often too.\n\nThe farm-house family conceived me to be of a morose temper, and\nwere very short with me; though they never stinted me in such\nbroken fare as was to be got out of regular hours.  One night when\nI lifted the kitchen latch at my usual time, Sylvia (that was her\npretty name) had but just gone out of the room.  Seeing her\nascending the opposite stairs, I stood still at the door.  She had\nheard the clink of the latch, and looked round.\n\n'George,' she called to me in a pleased voice, 'to-morrow is my\nbirthday; and we are to have a fiddler, and there's a party of boys\nand girls coming in a cart, and we shall dance.  I invite you.  Be\nsociable for once, George.'\n\n'I am very sorry, miss,' I answered; 'but I - but, no; I can't\ncome.'\n\n'You are a disagreeable, ill-humoured lad,' she returned\ndisdainfully; 'and I ought not to have asked you.  I shall never\nspeak to you again.'\n\nAs I stood with my eyes fixed on the fire, after she was gone, I\nfelt that the farmer bent his brows upon me.\n\n'Eh, lad!' said he; 'Sylvy's right.  You're as moody and broody a\nlad as never I set eyes on yet.'\n\nI tried to assure him that I meant no harm; but he only said\ncoldly, 'Maybe not, maybe not!  There, get thy supper, get thy\nsupper; and then thou canst sulk to thy heart's content again.'\n\nAh! if they could have seen me next day, in the ruin, watching for\nthe arrival of the cart full of merry young guests; if they could\nhave seen me at night, gliding out from behind the ghostly statue,\nlistening to the music and the fall of dancing feet, and watching\nthe lighted farm-house windows from the quadrangle when all the\nruin was dark; if they could have read my heart, as I crept up to\nbed by the back way, comforting myself with the reflection, 'They\nwill take no hurt from me,' - they would not have thought mine a\nmorose or an unsocial nature.\n\nIt was in these ways that I began to form a shy disposition; to be\nof a timidly silent character under misconstruction; to have an\ninexpressible, perhaps a morbid, dread of ever being sordid or\nworldly.  It was in these ways that my nature came to shape itself\nto such a mould, even before it was affected by the influences of\nthe studious and retired life of a poor scholar.\n\n\n\nSIXTH CHAPTER\n\n\n\nBROTHER HAWKYARD (as he insisted on my calling him) put me to\nschool, and told me to work my way.  'You are all right, George,'\nhe said.  'I have been the best servant the Lord has had in his\nservice for this five-and-thirty year (O, I have!); and he knows\nthe value of such a servant as I have been to him (O, yes, he\ndoes!); and he'll prosper your schooling as a part of my reward.\nThat's what HE'll do, George.  He'll do it for me.'\n\nFrom the first I could not like this familiar knowledge of the ways\nof the sublime, inscrutable Almighty, on Brother Hawkyard's part.\nAs I grew a little wiser, and still a little wiser, I liked it less\nand less.  His manner, too, of confirming himself in a parenthesis,\n- as if, knowing himself, he doubted his own word, - I found\ndistasteful.  I cannot tell how much these dislikes cost me; for I\nhad a dread that they were worldly.\n\nAs time went on, I became a Foundation-boy on a good foundation,\nand I cost Brother Hawkyard nothing.  When I had worked my way so\nfar, I worked yet harder, in the hope of ultimately getting a\npresentation to college and a fellowship.  My health has never been\nstrong (some vapour from the Preston cellar cleaves to me, I\nthink); and what with much work and some weakness, I came again to\nbe regarded - that is, by my fellow-students - as unsocial.\n\nAll through my time as a foundation-boy, I was within a few miles\nof Brother Hawkyard's congregation; and whenever I was what we\ncalled a leave-boy on a Sunday, I went over there at his desire.\nBefore the knowledge became forced upon me that outside their place\nof meeting these brothers and sisters were no better than the rest\nof the human family, but on the whole were, to put the case mildly,\nas bad as most, in respect of giving short weight in their shops,\nand not speaking the truth, - I say, before this knowledge became\nforced upon me, their prolix addresses, their inordinate conceit,\ntheir daring ignorance, their investment of the Supreme Ruler of\nheaven and earth with their own miserable meannesses and\nlittlenesses, greatly shocked me.  Still, as their term for the\nframe of mind that could not perceive them to be in an exalted\nstate of grace was the 'worldly' state, I did for a time suffer\ntortures under my inquiries of myself whether that young worldly-\ndevilish spirit of mine could secretly be lingering at the bottom\nof my non-appreciation.\n\nBrother Hawkyard was the popular expounder in this assembly, and\ngenerally occupied the platform (there was a little platform with a\ntable on it, in lieu of a pulpit) first, on a Sunday afternoon.  He\nwas by trade a drysalter.  Brother Gimblet, an elderly man with a\ncrabbed face, a large dog's-eared shirt-collar, and a spotted blue\nneckerchief reaching up behind to the crown of his head, was also a\ndrysalter and an expounder.  Brother Gimblet professed the greatest\nadmiration for Brother Hawkyard, but (I had thought more than once)\nbore him a jealous grudge.\n\nLet whosoever may peruse these lines kindly take the pains here to\nread twice my solemn pledge, that what I write of the language and\ncustoms of the congregation in question I write scrupulously,\nliterally, exactly, from the life and the truth.\n\nOn the first Sunday after I had won what I had so long tried for,\nand when it was certain that I was going up to college, Brother\nHawkyard concluded a long exhortation thus:\n\n'Well, my friends and fellow-sinners, now I told you when I began,\nthat I didn't know a word of what I was going to say to you (and\nno, I did not!), but that it was all one to me, because I knew the\nLord would put into my mouth the words I wanted.'\n\n('That's it!' from Brother Gimblet.)\n\n'And he did put into my mouth the words I wanted.'\n\n('So he did!' from Brother Gimblet.)\n\n'And why?'\n\n('Ah, let's have that!' from Brother Gimblet.)\n\n'Because I have been his faithful servant for five-and-thirty\nyears, and because he knows it.  For five-and-thirty years!  And he\nknows it, mind you!  I got those words that I wanted on account of\nmy wages.  I got 'em from the Lord, my fellow-sinners.  Down! I\nsaid, \"Here's a heap of wages due; let us have something down, on\naccount.\"  And I got it down, and I paid it over to you; and you\nwon't wrap it up in a napkin, nor yet in a towel, nor yet\npocketankercher, but you'll put it out at good interest.  Very\nwell.  Now, my brothers and sisters and fellow-sinners, I am going\nto conclude with a question, and I'll make it so plain (with the\nhelp of the Lord, after five-and-thirty years, I should rather\nhope!) as that the Devil shall not be able to confuse it in your\nheads, - which he would be overjoyed to do.'\n\n('Just his way.  Crafty old blackguard!' from Brother Gimblet.)\n\n'And the question is this, Are the angels learned?'\n\n('Not they.  Not a bit on it!' from Brother Gimblet, with the\ngreatest confidence.)\n\n'Not they.  And where's the proof? sent ready-made by the hand of\nthe Lord.  Why, there's one among us here now, that has got all the\nlearning that can be crammed into him.  I got him all the learning\nthat could be crammed into him.  His grandfather' (this I had never\nheard before) 'was a brother of ours.  He was Brother Parksop.\nThat's what he was.  Parksop; Brother Parksop.  His worldly name\nwas Parksop, and he was a brother of this brotherhood.  Then wasn't\nhe Brother Parksop?'\n\n('Must be.  Couldn't help hisself!' from Brother Gimblet.)\n\n'Well, he left that one now here present among us to the care of a\nbrother-sinner of his (and that brother-sinner, mind you, was a\nsinner of a bigger size in his time than any of you; praise the\nLord!), Brother Hawkyard.  Me.  I got him without fee or reward, -\nwithout a morsel of myrrh, or frankincense, nor yet amber, letting\nalone the honeycomb, - all the learning that could be crammed into\nhim.  Has it brought him into our temple, in the spirit?  No.  Have\nwe had any ignorant brothers and sisters that didn't know round O\nfrom crooked S, come in among us meanwhile?  Many.  Then the angels\nare NOT learned; then they don't so much as know their alphabet.\nAnd now, my friends and fellow-sinners, having brought it to that,\nperhaps some brother present - perhaps you, Brother Gimblet - will\npray a bit for us?'\n\nBrother Gimblet undertook the sacred function, after having drawn\nhis sleeve across his mouth, and muttered, 'Well!  I don't know as\nI see my way to hitting any of you quite in the right place\nneither.'  He said this with a dark smile, and then began to\nbellow.  What we were specially to be preserved from, according to\nhis solicitations, was, despoilment of the orphan, suppression of\ntestamentary intentions on the part of a father or (say)\ngrandfather, appropriation of the orphan's house-property, feigning\nto give in charity to the wronged one from whom we withheld his\ndue; and that class of sins.  He ended with the petition, 'Give us\npeace!' which, speaking for myself, was very much needed after\ntwenty minutes of his bellowing.\n\nEven though I had not seen him when he rose from his knees,\nsteaming with perspiration, glance at Brother Hawkyard, and even\nthough I had not heard Brother Hawkyard's tone of congratulating\nhim on the vigour with which he had roared, I should have detected\na malicious application in this prayer.  Unformed suspicions to a\nsimilar effect had sometimes passed through my mind in my earlier\nschool-days, and had always caused me great distress; for they were\nworldly in their nature, and wide, very wide, of the spirit that\nhad drawn me from Sylvia.  They were sordid suspicions, without a\nshadow of proof.  They were worthy to have originated in the\nunwholesome cellar.  They were not only without proof, but against\nproof; for was I not myself a living proof of what Brother Hawkyard\nhad done? and without him, how should I ever have seen the sky look\nsorrowfully down upon that wretched boy at Hoghton Towers?\n\nAlthough the dread of a relapse into a stage of savage selfishness\nwas less strong upon me as I approached manhood, and could act in\nan increased degree for myself, yet I was always on my guard\nagainst any tendency to such relapse.  After getting these\nsuspicions under my feet, I had been troubled by not being able to\nlike Brother Hawkyard's manner, or his professed religion.  So it\ncame about, that, as I walked back that Sunday evening, I thought\nit would be an act of reparation for any such injury my struggling\nthoughts had unwillingly done him, if I wrote, and placed in his\nhands, before going to college, a full acknowledgment of his\ngoodness to me, and an ample tribute of thanks.  It might serve as\nan implied vindication of him against any dark scandal from a rival\nbrother and expounder, or from any other quarter.\n\nAccordingly, I wrote the document with much care.  I may add with\nmuch feeling too; for it affected me as I went on.  Having no set\nstudies to pursue, in the brief interval between leaving the\nFoundation and going to Cambridge, I determined to walk out to his\nplace of business, and give it into his own hands.\n\nIt was a winter afternoon, when I tapped at the door of his little\ncounting-house, which was at the farther end of his long, low shop.\nAs I did so (having entered by the back yard, where casks and boxes\nwere taken in, and where there was the inscription, 'Private way to\nthe counting-house'), a shopman called to me from the counter that\nhe was engaged.\n\n'Brother Gimblet' (said the shopman, who was one of the\nbrotherhood) 'is with him.'\n\nI thought this all the better for my purpose, and made bold to tap\nagain.  They were talking in a low tone, and money was passing; for\nI heard it being counted out.\n\n'Who is it?' asked Brother Hawkyard, sharply.\n\n'George Silverman,' I answered, holding the door open.  'May I come\nin?'\n\nBoth brothers seemed so astounded to see me that I felt shyer than\nusual.  But they looked quite cadaverous in the early gaslight, and\nperhaps that accidental circumstance exaggerated the expression of\ntheir faces.\n\n'What is the matter?' asked Brother Hawkyard.\n\n'Ay! what is the matter?' asked Brother Gimblet.\n\n'Nothing at all,' I said, diffidently producing my document: 'I am\nonly the bearer of a letter from myself.'\n\n'From yourself, George?' cried Brother Hawkyard.\n\n'And to you,' said I.\n\n'And to me, George?'\n\nHe turned paler, and opened it hurriedly; but looking over it, and\nseeing generally what it was, became less hurried, recovered his\ncolour, and said, 'Praise the Lord!'\n\n'That's it!' cried Brother Gimblet.  'Well put!  Amen.'\n\nBrother Hawkyard then said, in a livelier strain, 'You must know,\nGeorge, that Brother Gimblet and I are going to make our two\nbusinesses one.  We are going into partnership.  We are settling it\nnow.  Brother Gimblet is to take one clear half of the profits (O,\nyes! he shall have it; he shall have it to the last farthing).'\n\n'D.V.!' said Brother Gimblet, with his right fist firmly clinched\non his right leg.\n\n'There is no objection,' pursued Brother Hawkyard, 'to my reading\nthis aloud, George?'\n\nAs it was what I expressly desired should be done, after\nyesterday's prayer, I more than readily begged him to read it\naloud.  He did so; and Brother Gimblet listened with a crabbed\nsmile.\n\n'It was in a good hour that I came here,' he said, wrinkling up his\neyes.  'It was in a good hour, likewise, that I was moved yesterday\nto depict for the terror of evil-doers a character the direct\nopposite of Brother Hawkyard's.  But it was the Lord that done it:\nI felt him at it while I was perspiring.'\n\nAfter that it was proposed by both of them that I should attend the\ncongregation once more before my final departure.  What my shy\nreserve would undergo, from being expressly preached at and prayed\nat, I knew beforehand.  But I reflected that it would be for the\nlast time, and that it might add to the weight of my letter.  It\nwas well known to the brothers and sisters that there was no place\ntaken for me in THEIR paradise; and if I showed this last token of\ndeference to Brother Hawkyard, notoriously in despite of my own\nsinful inclinations, it might go some little way in aid of my\nstatement that he had been good to me, and that I was grateful to\nhim.  Merely stipulating, therefore, that no express endeavour\nshould be made for my conversion, - which would involve the rolling\nof several brothers and sisters on the floor, declaring that they\nfelt all their sins in a heap on their left side, weighing so many\npounds avoirdupois, as I knew from what I had seen of those\nrepulsive mysteries, - I promised.\n\nSince the reading of my letter, Brother Gimblet had been at\nintervals wiping one eye with an end of his spotted blue\nneckerchief, and grinning to himself.  It was, however, a habit\nthat brother had, to grin in an ugly manner even when expounding.\nI call to mind a delighted snarl with which he used to detail from\nthe platform the torments reserved for the wicked (meaning all\nhuman creation except the brotherhood), as being remarkably\nhideous.\n\nI left the two to settle their articles of partnership, and count\nmoney; and I never saw them again but on the following Sunday.\nBrother Hawkyard died within two or three years, leaving all he\npossessed to Brother Gimblet, in virtue of a will dated (as I have\nbeen told) that very day.\n\nNow I was so far at rest with myself, when Sunday came, knowing\nthat I had conquered my own mistrust, and righted Brother Hawkyard\nin the jaundiced vision of a rival, that I went, even to that\ncoarse chapel, in a less sensitive state than usual.  How could I\nforesee that the delicate, perhaps the diseased, corner of my mind,\nwhere I winced and shrunk when it was touched, or was even\napproached, would be handled as the theme of the whole proceedings?\n\nOn this occasion it was assigned to Brother Hawkyard to pray, and\nto Brother Gimblet to preach.  The prayer was to open the\nceremonies; the discourse was to come next.  Brothers Hawkyard and\nGimblet were both on the platform; Brother Hawkyard on his knees at\nthe table, unmusically ready to pray; Brother Gimblet sitting\nagainst the wall, grinningly ready to preach.\n\n'Let us offer up the sacrifice of prayer, my brothers and sisters\nand fellow-sinners.'  Yes; but it was I who was the sacrifice.  It\nwas our poor, sinful, worldly-minded brother here present who was\nwrestled for.  The now-opening career of this our unawakened\nbrother might lead to his becoming a minister of what was called\n'the church.'  That was what HE looked to.  The church.  Not the\nchapel, Lord.  The church.  No rectors, no vicars, no archdeacons,\nno bishops, no archbishops, in the chapel, but, O Lord! many such\nin the church.  Protect our sinful brother from his love of lucre.\nCleanse from our unawakened brother's breast his sin of worldly-\nmindedness.  The prayer said infinitely more in words, but nothing\nmore to any intelligible effect.\n\nThen Brother Gimblet came forward, and took (as I knew he would)\nthe text, 'My kingdom is not of this world.'  Ah! but whose was, my\nfellow-sinners?  Whose?  Why, our brother's here present was.  The\nonly kingdom he had an idea of was of this world.  ('That's it!'\nfrom several of the congregation.)  What did the woman do when she\nlost the piece of money?  Went and looked for it.  What should our\nbrother do when he lost his way?  ('Go and look for it,' from a\nsister.)  Go and look for it, true.  But must he look for it in the\nright direction, or in the wrong?  ('In the right,' from a\nbrother.)  There spake the prophets!  He must look for it in the\nright direction, or he couldn't find it.  But he had turned his\nback upon the right direction, and he wouldn't find it.  Now, my\nfellow-sinners, to show you the difference betwixt worldly-\nmindedness and unworldly-mindedness, betwixt kingdoms not of this\nworld and kingdoms OF this world, here was a letter wrote by even\nour worldly-minded brother unto Brother Hawkyard.  Judge, from\nhearing of it read, whether Brother Hawkyard was the faithful\nsteward that the Lord had in his mind only t'other day, when, in\nthis very place, he drew you the picter of the unfaithful one; for\nit was him that done it, not me.  Don't doubt that!\n\nBrother Gimblet then groaned and bellowed his way through my\ncomposition, and subsequently through an hour.  The service closed\nwith a hymn, in which the brothers unanimously roared, and the\nsisters unanimously shrieked at me, That I by wiles of worldly gain\nwas mocked, and they on waters of sweet love were rocked; that I\nwith mammon struggled in the dark, while they were floating in a\nsecond ark.\n\nI went out from all this with an aching heart and a weary spirit:\nnot because I was quite so weak as to consider these narrow\ncreatures interpreters of the Divine Majesty and Wisdom, but\nbecause I was weak enough to feel as though it were my hard fortune\nto be misrepresented and misunderstood, when I most tried to subdue\nany risings of mere worldliness within me, and when I most hoped\nthat, by dint of trying earnestly, I had succeeded.\n\n\n\nSEVENTH CHAPTER\n\n\n\nMY timidity and my obscurity occasioned me to live a secluded life\nat college, and to be little known.  No relative ever came to visit\nme, for I had no relative.  No intimate friends broke in upon my\nstudies, for I made no intimate friends.  I supported myself on my\nscholarship, and read much.  My college time was otherwise not so\nvery different from my time at Hoghton Towers.\n\nKnowing myself to be unfit for the noisier stir of social\nexistence, but believing myself qualified to do my duty in a\nmoderate, though earnest way, if I could obtain some small\npreferment in the Church, I applied my mind to the clerical\nprofession.  In due sequence I took orders, was ordained, and began\nto look about me for employment.  I must observe that I had taken a\ngood degree, that I had succeeded in winning a good fellowship, and\nthat my means were ample for my retired way of life.  By this time\nI had read with several young men; and the occupation increased my\nincome, while it was highly interesting to me.  I once accidentally\noverheard our greatest don say, to my boundless joy, 'That he heard\nit reported of Silverman that his gift of quiet explanation, his\npatience, his amiable temper, and his conscientiousness made him\nthe best of coaches.'  May my 'gift of quiet explanation' come more\nseasonably and powerfully to my aid in this present explanation\nthan I think it will!\n\nIt may be in a certain degree owing to the situation of my college-\nrooms (in a corner where the daylight was sobered), but it is in a\nmuch larger degree referable to the state of my own mind, that I\nseem to myself, on looking back to this time of my life, to have\nbeen always in the peaceful shade.  I can see others in the\nsunlight; I can see our boats' crews and our athletic young men on\nthe glistening water, or speckled with the moving lights of sunlit\nleaves; but I myself am always in the shadow looking on.  Not\nunsympathetically, - God forbid! - but looking on alone, much as I\nlooked at Sylvia from the shadows of the ruined house, or looked at\nthe red gleam shining through the farmer's windows, and listened to\nthe fall of dancing feet, when all the ruin was dark that night in\nthe quadrangle.\n\nI now come to the reason of my quoting that laudation of myself\nabove given.  Without such reason, to repeat it would have been\nmere boastfulness.\n\nAmong those who had read with me was Mr. Fareway, second son of\nLady Fareway, widow of Sir Gaston Fareway, baronet.  This young\ngentleman's abilities were much above the average; but he came of a\nrich family, and was idle and luxurious.  He presented himself to\nme too late, and afterwards came to me too irregularly, to admit of\nmy being of much service to him.  In the end, I considered it my\nduty to dissuade him from going up for an examination which he\ncould never pass; and he left college without a degree.  After his\ndeparture, Lady Fareway wrote to me, representing the justice of my\nreturning half my fee, as I had been of so little use to her son.\nWithin my knowledge a similar demand had not been made in any other\ncase; and I most freely admit that the justice of it had not\noccurred to me until it was pointed out.  But I at once perceived\nit, yielded to it, and returned the money -\n\nMr. Fareway had been gone two years or more, and I had forgotten\nhim, when he one day walked into my rooms as I was sitting at my\nbooks.\n\nSaid he, after the usual salutations had passed, 'Mr. Silverman, my\nmother is in town here, at the hotel, and wishes me to present you\nto her.'\n\nI was not comfortable with strangers, and I dare say I betrayed\nthat I was a little nervous or unwilling.  'For,' said he, without\nmy having spoken, 'I think the interview may tend to the\nadvancement of your prospects.'\n\nIt put me to the blush to think that I should be tempted by a\nworldly reason, and I rose immediately.\n\nSaid Mr. Fareway, as we went along, 'Are you a good hand at\nbusiness?'\n\n'I think not,' said I.\n\nSaid Mr. Fareway then, 'My mother is.'\n\n'Truly?' said I.\n\n'Yes: my mother is what is usually called a managing woman.\nDoesn't make a bad thing, for instance, even out of the spendthrift\nhabits of my eldest brother abroad.  In short, a managing woman.\nThis is in confidence.'\n\nHe had never spoken to me in confidence, and I was surprised by his\ndoing so.  I said I should respect his confidence, of course, and\nsaid no more on the delicate subject.  We had but a little way to\nwalk, and I was soon in his mother's company.  He presented me,\nshook hands with me, and left us two (as he said) to business.\n\nI saw in my Lady Fareway a handsome, well-preserved lady of\nsomewhat large stature, with a steady glare in her great round dark\neyes that embarrassed me.\n\nSaid my lady, 'I have heard from my son, Mr. Silverman, that you\nwould be glad of some preferment in the church.'  I gave my lady to\nunderstand that was so.\n\n'I don't know whether you are aware,' my lady proceeded, 'that we\nhave a presentation to a living?  I say WE have; but, in point of\nfact, I have.'\n\nI gave my lady to understand that I had not been aware of this.\n\nSaid my lady, 'So it is: indeed I have two presentations, - one to\ntwo hundred a year, one to six.  Both livings are in our county, -\nNorth Devonshire, - as you probably know.  The first is vacant.\nWould you like it?'\n\nWhat with my lady's eyes, and what with the suddenness of this\nproposed gift, I was much confused.\n\n'I am sorry it is not the larger presentation,' said my lady,\nrather coldly; 'though I will not, Mr. Silverman, pay you the bad\ncompliment of supposing that YOU are, because that would be\nmercenary, - and mercenary I am persuaded you are not.'\n\nSaid I, with my utmost earnestness, 'Thank you, Lady Fareway, thank\nyou, thank you!  I should be deeply hurt if I thought I bore the\ncharacter.'\n\n'Naturally,' said my lady.  'Always detestable, but particularly in\na clergyman.  You have not said whether you will like the living?'\n\nWith apologies for my remissness or indistinctness, I assured my\nlady that I accepted it most readily and gratefully.  I added that\nI hoped she would not estimate my appreciation of the generosity of\nher choice by my flow of words; for I was not a ready man in that\nrespect when taken by surprise or touched at heart.\n\n'The affair is concluded,' said my lady; 'concluded.  You will find\nthe duties very light, Mr. Silverman.  Charming house; charming\nlittle garden, orchard, and all that.  You will be able to take\npupils.  By the bye!  No: I will return to the word afterwards.\nWhat was I going to mention, when it put me out?'\n\nMy lady stared at me, as if I knew.  And I didn't know.  And that\nperplexed me afresh.\n\nSaid my lady, after some consideration, 'O, of course, how very\ndull of me!  The last incumbent, - least mercenary man I ever saw,\n- in consideration of the duties being so light and the house so\ndelicious, couldn't rest, he said, unless I permitted him to help\nme with my correspondence, accounts, and various little things of\nthat kind; nothing in themselves, but which it worries a lady to\ncope with.  Would Mr. Silverman also like to -?  Or shall I -?'\n\nI hastened to say that my poor help would be always at her\nladyship's service.\n\n'I am absolutely blessed,' said my lady, casting up her eyes (and\nso taking them off me for one moment), 'in having to do with\ngentlemen who cannot endure an approach to the idea of being\nmercenary!'  She shivered at the word.  'And now as to the pupil.'\n\n'The -?' I was quite at a loss.\n\n'Mr. Silverman, you have no idea what she is.  She is,' said my\nlady, laying her touch upon my coat-sleeve, 'I do verily believe,\nthe most extraordinary girl in this world.  Already knows more\nGreek and Latin than Lady Jane Grey.  And taught herself!  Has not\nyet, remember, derived a moment's advantage from Mr. Silverman's\nclassical acquirements.  To say nothing of mathematics, which she\nis bent upon becoming versed in, and in which (as I hear from my\nson and others) Mr. Silverman's reputation is so deservedly high!'\n\nUnder my lady's eyes I must have lost the clue, I felt persuaded;\nand yet I did not know where I could have dropped it.\n\n'Adelina,' said my lady, 'is my only daughter.  If I did not feel\nquite convinced that I am not blinded by a mother's partiality;\nunless I was absolutely sure that when you know her, Mr. Silverman,\nyou will esteem it a high and unusual privilege to direct her\nstudies, - I should introduce a mercenary element into this\nconversation, and ask you on what terms - '\n\nI entreated my lady to go no further.  My lady saw that I was\ntroubled, and did me the honour to comply with my request.\n\n\n\nEIGHTH CHAPTER\n\n\n\nEVERYTHING in mental acquisition that her brother might have been,\nif he would, and everything in all gracious charms and admirable\nqualities that no one but herself could be, - this was Adelina.\n\nI will not expatiate upon her beauty; I will not expatiate upon her\nintelligence, her quickness of perception, her powers of memory,\nher sweet consideration, from the first moment, for the slow-paced\ntutor who ministered to her wonderful gifts.  I was thirty then; I\nam over sixty now: she is ever present to me in these hours as she\nwas in those, bright and beautiful and young, wise and fanciful and\ngood.\n\nWhen I discovered that I loved her, how can I say?  In the first\nday? in the first week? in the first month?  Impossible to trace.\nIf I be (as I am) unable to represent to myself any previous period\nof my life as quite separable from her attracting power, how can I\nanswer for this one detail?\n\nWhensoever I made the discovery, it laid a heavy burden on me.  And\nyet, comparing it with the far heavier burden that I afterwards\ntook up, it does not seem to me now to have been very hard to bear.\nIn the knowledge that I did love her, and that I should love her\nwhile my life lasted, and that I was ever to hide my secret deep in\nmy own breast, and she was never to find it, there was a kind of\nsustaining joy or pride, or comfort, mingled with my pain.\n\nBut later on, - say, a year later on, - when I made another\ndiscovery, then indeed my suffering and my struggle were strong.\nThat other discovery was -\n\nThese words will never see the light, if ever, until my heart is\ndust; until her bright spirit has returned to the regions of which,\nwhen imprisoned here, it surely retained some unusual glimpse of\nremembrance; until all the pulses that ever beat around us shall\nhave long been quiet; until all the fruits of all the tiny\nvictories and defeats achieved in our little breasts shall have\nwithered away.  That discovery was that she loved me.\n\nShe may have enhanced my knowledge, and loved me for that; she may\nhave over-valued my discharge of duty to her, and loved me for\nthat; she may have refined upon a playful compassion which she\nwould sometimes show for what she called my want of wisdom,\naccording to the light of the world's dark lanterns, and loved me\nfor that; she may - she must - have confused the borrowed light of\nwhat I had only learned, with its brightness in its pure, original\nrays; but she loved me at that time, and she made me know it.\n\nPride of family and pride of wealth put me as far off from her in\nmy lady's eyes as if I had been some domesticated creature of\nanother kind.  But they could not put me farther from her than I\nput myself when I set my merits against hers.  More than that.\nThey could not put me, by millions of fathoms, half so low beneath\nher as I put myself when in imagination I took advantage of her\nnoble trustfulness, took the fortune that I knew she must possess\nin her own right, and left her to find herself, in the zenith of\nher beauty and genius, bound to poor rusty, plodding me.\n\nNo!  Worldliness should not enter here at any cost.  If I had tried\nto keep it out of other ground, how much harder was I bound to try\nto keep it out from this sacred place!\n\nBut there was something daring in her broad, generous character,\nthat demanded at so delicate a crisis to be delicately and\npatiently addressed.  And many and many a bitter night (O, I found\nI could cry for reasons not purely physical, at this pass of my\nlife!) I took my course.\n\nMy lady had, in our first interview, unconsciously overstated the\naccommodation of my pretty house.  There was room in it for only\none pupil.  He was a young gentleman near coming of age, very well\nconnected, but what is called a poor relation.  His parents were\ndead.  The charges of his living and reading with me were defrayed\nby an uncle; and he and I were to do our utmost together for three\nyears towards qualifying him to make his way.  At this time he had\nentered into his second year with me.  He was well-looking, clever,\nenergetic, enthusiastic; bold; in the best sense of the term, a\nthorough young Anglo-Saxon.\n\nI resolved to bring these two together.\n\n\n\nNINTH CHAPTER\n\n\n\nSAID I, one night, when I had conquered myself, 'Mr. Granville,' -\nMr. Granville Wharton his name was, - 'I doubt if you have ever yet\nso much as seen Miss Fareway.'\n\n'Well, sir,' returned he, laughing, 'you see her so much yourself,\nthat you hardly leave another fellow a chance of seeing her.'\n\n'I am her tutor, you know,' said I.\n\nAnd there the subject dropped for that time.  But I so contrived as\nthat they should come together shortly afterwards.  I had\npreviously so contrived as to keep them asunder; for while I loved\nher, - I mean before I had determined on my sacrifice, - a lurking\njealousy of Mr. Granville lay within my unworthy breast.\n\nIt was quite an ordinary interview in the Fareway Park but they\ntalked easily together for some time: like takes to like, and they\nhad many points of resemblance.  Said Mr. Granville to me, when he\nand I sat at our supper that night, 'Miss Fareway is remarkably\nbeautiful, sir, remarkably engaging.  Don't you think so?'  'I\nthink so,' said I.  And I stole a glance at him, and saw that he\nhad reddened and was thoughtful.  I remember it most vividly,\nbecause the mixed feeling of grave pleasure and acute pain that the\nslight circumstance caused me was the first of a long, long series\nof such mixed impressions under which my hair turned slowly gray.\n\nI had not much need to feign to be subdued; but I counterfeited to\nbe older than I was in all respects (Heaven knows! my heart being\nall too young the while), and feigned to be more of a recluse and\nbookworm than I had really become, and gradually set up more and\nmore of a fatherly manner towards Adelina.  Likewise I made my\ntuition less imaginative than before; separated myself from my\npoets and philosophers; was careful to present them in their own\nlight, and me, their lowly servant, in my own shade.  Moreover, in\nthe matter of apparel I was equally mindful; not that I had ever\nbeen dapper that way; but that I was slovenly now.\n\nAs I depressed myself with one hand, so did I labour to raise Mr.\nGranville with the other; directing his attention to such subjects\nas I too well knew interested her, and fashioning him (do not\nderide or misconstrue the expression, unknown reader of this\nwriting; for I have suffered!) into a greater resemblance to myself\nin my solitary one strong aspect.  And gradually, gradually, as I\nsaw him take more and more to these thrown-out lures of mine, then\ndid I come to know better and better that love was drawing him on,\nand was drawing her from me.\n\nSo passed more than another year; every day a year in its number of\nmy mixed impressions of grave pleasure and acute pain; and then\nthese two, being of age and free to act legally for themselves,\ncame before me hand in hand (my hair being now quite white), and\nentreated me that I would unite them together.  'And indeed, dear\ntutor,' said Adelina, 'it is but consistent in you that you should\ndo this thing for us, seeing that we should never have spoken\ntogether that first time but for you, and that but for you we could\nnever have met so often afterwards.'  The whole of which was\nliterally true; for I had availed myself of my many business\nattendances on, and conferences with, my lady, to take Mr.\nGranville to the house, and leave him in the outer room with\nAdelina.\n\nI knew that my lady would object to such a marriage for her\ndaughter, or to any marriage that was other than an exchange of her\nfor stipulated lands, goods, and moneys.  But looking on the two,\nand seeing with full eyes that they were both young and beautiful;\nand knowing that they were alike in the tastes and acquirements\nthat will outlive youth and beauty; and considering that Adelina\nhad a fortune now, in her own keeping; and considering further that\nMr. Granville, though for the present poor, was of a good family\nthat had never lived in a cellar in Preston; and believing that\ntheir love would endure, neither having any great discrepancy to\nfind out in the other, - I told them of my readiness to do this\nthing which Adelina asked of her dear tutor, and to send them\nforth, husband and wife, into the shining world with golden gates\nthat awaited them.\n\nIt was on a summer morning that I rose before the sun to compose\nmyself for the crowning of my work with this end; and my dwelling\nbeing near to the sea, I walked down to the rocks on the shore, in\norder that I might behold the sun in his majesty.\n\nThe tranquillity upon the deep, and on the firmament, the orderly\nwithdrawal of the stars, the calm promise of coming day, the rosy\nsuffusion of the sky and waters, the ineffable splendour that then\nburst forth, attuned my mind afresh after the discords of the\nnight.  Methought that all I looked on said to me, and that all I\nheard in the sea and in the air said to me, 'Be comforted, mortal,\nthat thy life is so short.  Our preparation for what is to follow\nhas endured, and shall endure, for unimaginable ages.'\n\nI married them.  I knew that my hand was cold when I placed it on\ntheir hands clasped together; but the words with which I had to\naccompany the action I could say without faltering, and I was at\npeace.\n\nThey being well away from my house and from the place after our\nsimple breakfast, the time was come when I must do what I had\npledged myself to them that I would do, - break the intelligence to\nmy lady.\n\nI went up to the house, and found my lady in her ordinary business-\nroom.  She happened to have an unusual amount of commissions to\nintrust to me that day; and she had filled my hands with papers\nbefore I could originate a word.\n\n'My lady,' I then began, as I stood beside her table.\n\n'Why, what's the matter?' she said quickly, looking up.\n\n'Not much, I would fain hope, after you shall have prepared\nyourself, and considered a little.'\n\n'Prepared myself; and considered a little!  You appear to have\nprepared YOURSELF but indifferently, anyhow, Mr. Silverman.'  This\nmighty scornfully, as I experienced my usual embarrassment under\nher stare.\n\nSaid I, in self-extenuation once for all, 'Lady Fareway, I have but\nto say for myself that I have tried to do my duty.'\n\n'For yourself?' repeated my lady.  'Then there are others\nconcerned, I see.  Who are they?'\n\nI was about to answer, when she made towards the bell with a dart\nthat stopped me, and said, 'Why, where is Adelina?'\n\n'Forbear! be calm, my lady.  I married her this morning to Mr.\nGranville Wharton.'\n\nShe set her lips, looked more intently at me than ever, raised her\nright hand, and smote me hard upon the cheek.\n\n'Give me back those papers! give me back those papers!'  She tore\nthem out of my hands, and tossed them on her table.  Then seating\nherself defiantly in her great chair, and folding her arms, she\nstabbed me to the heart with the unlooked-for reproach, 'You\nworldly wretch!'\n\n'Worldly?' I cried.  'Worldly?'\n\n'This, if you please,' - she went on with supreme scorn, pointing\nme out as if there were some one there to see, - 'this, if you\nplease, is the disinterested scholar, with not a design beyond his\nbooks!  This, if you please, is the simple creature whom any one\ncould overreach in a bargain!  This, if you please, is Mr.\nSilverman!  Not of this world; not he!  He has too much simplicity\nfor this world's cunning.  He has too much singleness of purpose to\nbe a match for this world's double-dealing.  What did he give you\nfor it?'\n\n'For what?  And who?'\n\n'How much,' she asked, bending forward in her great chair, and\ninsultingly tapping the fingers of her right hand on the palm of\nher left, - 'how much does Mr. Granville Wharton pay you for\ngetting him Adelina's money?  What is the amount of your percentage\nupon Adelina's fortune?  What were the terms of the agreement that\nyou proposed to this boy when you, the Rev. George Silverman,\nlicensed to marry, engaged to put him in possession of this girl?\nYou made good terms for yourself, whatever they were.  He would\nstand a poor chance against your keenness.'\n\nBewildered, horrified, stunned by this cruel perversion, I could\nnot speak.  But I trust that I looked innocent, being so.\n\n'Listen to me, shrewd hypocrite,' said my lady, whose anger\nincreased as she gave it utterance; 'attend to my words, you\ncunning schemer, who have carried this plot through with such a\npractised double face that I have never suspected you.  I had my\nprojects for my daughter; projects for family connection; projects\nfor fortune.  You have thwarted them, and overreached me; but I am\nnot one to be thwarted and overreached without retaliation.  Do you\nmean to hold this living another month?'\n\n'Do you deem it possible, Lady Fareway, that I can hold it another\nhour, under your injurious words?'\n\n'Is it resigned, then?'\n\n'It was mentally resigned, my lady, some minutes ago.'\n\nDon't equivocate, sir.  IS it resigned?'\n\n'Unconditionally and entirely; and I would that I had never, never\ncome near it!'\n\n'A cordial response from me to THAT wish, Mr. Silverman!  But take\nthis with you, sir.  If you had not resigned it, I would have had\nyou deprived of it.  And though you have resigned it, you will not\nget quit of me as easily as you think for.  I will pursue you with\nthis story.  I will make this nefarious conspiracy of yours, for\nmoney, known.  You have made money by it, but you have at the same\ntime made an enemy by it.  YOU will take good care that the money\nsticks to you; I will take good care that the enemy sticks to you.'\n\nThen said I finally, 'Lady Fareway, I think my heart is broken.\nUntil I came into this room just now, the possibility of such mean\nwickedness as you have imputed to me never dawned upon my thoughts.\nYour suspicions - '\n\n'Suspicions!  Pah!' said she indignantly.  'Certainties.'\n\n'Your certainties, my lady, as you call them, your suspicions as I\ncall them, are cruel, unjust, wholly devoid of foundation in fact.\nI can declare no more; except that I have not acted for my own\nprofit or my own pleasure.  I have not in this proceeding\nconsidered myself.  Once again, I think my heart is broken.  If I\nhave unwittingly done any wrong with a righteous motive, that is\nsome penalty to pay.'\n\nShe received this with another and more indignant 'Pah!' and I made\nmy way out of her room (I think I felt my way out with my hands,\nalthough my eyes were open), almost suspecting that my voice had a\nrepulsive sound, and that I was a repulsive object.\n\nThere was a great stir made, the bishop was appealed to, I received\na severe reprimand, and narrowly escaped suspension.  For years a\ncloud hung over me, and my name was tarnished.\n\nBut my heart did not break, if a broken heart involves death; for I\nlived through it.\n\nThey stood by me, Adelina and her husband, through it all.  Those\nwho had known me at college, and even most of those who had only\nknown me there by reputation, stood by me too.  Little by little,\nthe belief widened that I was not capable of what was laid to my\ncharge.  At length I was presented to a college-living in a\nsequestered place, and there I now pen my explanation.  I pen it at\nmy open window in the summer-time, before me, lying in the\nchurchyard, equal resting-place for sound hearts, wounded hearts,\nand broken hearts.  I pen it for the relief of my own mind, not\nforeseeing whether or no it will ever have a reader.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of George Silverman's Explanation\n\nThe Project Gutenberg Etext of Barnaby Rudge, by Charles Dickens\n#25 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nBarnaby Rudge\n\nby Charles Dickens\n\nMay, 1997  [Etext #917]\n\n\nThe Project Gutenberg Etext of Barnaby Rudge, by Charles Dickens\n*****This file should be named rudge10.txt or rudge10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, rudge11.txt.\nVERSIONS based on separate sources get new LETTER, rudge10a.txt.\n\n\nThis Etext was created by\nDonald Lainson\ncharlie@idirect.com\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/CMU\": and are\ntax deductible to the extent allowable by law.  (CMU = Carnegie-\nMellon University).\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nCarnegie-Mellon University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association/Carnegie-Mellon\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Carnegie-Mellon University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThis Etext was created by\nDonald Lainson\ncharlie@idirect.com\n\nI've left in archaic forms such as 'to-morrow' or 'to-day' \nas they occured in my copy.\t Also please be aware if spell-checking,\nthat within dialog many 'mispelled' words exist, i.e. 'wery' for \n'very', as intended by the author.\n\n\n\n\n\nBARNABY RUDGE - A TALE OF THE RIOTS OF 'EIGHTY\n\nby\n\nCharles Dickens\n\n\n\nPREFACE\n\n\nThe late Mr Waterton having, some time ago, expressed his opinion \nthat ravens are gradually becoming extinct in England, I offered \nthe few following words about my experience of these birds.\n\nThe raven in this story is a compound of two great originals, of \nwhom I was, at different times, the proud possessor.  The first was \nin the bloom of his youth, when he was discovered in a modest \nretirement in London, by a friend of mine, and given to me.  He had \nfrom the first, as Sir Hugh Evans says of Anne Page, 'good gifts', \nwhich he improved by study and attention in a most exemplary \nmanner.  He slept in a stable--generally on horseback--and so \nterrified a Newfoundland dog by his preternatural sagacity, that he \nhas been known, by the mere superiority of his genius, to walk off \nunmolested with the dog's dinner, from before his face.  He was \nrapidly rising in acquirements and virtues, when, in an evil hour, \nhis stable was newly painted.  He observed the workmen closely, \nsaw that they were careful of the paint, and immediately burned to \npossess it.  On their going to dinner, he ate up all they had left \nbehind, consisting of a pound or two of white lead; and this \nyouthful indiscretion terminated in death.\n\nWhile I was yet inconsolable for his loss, another friend of mine \nin Yorkshire discovered an older and more gifted raven at a village \npublic-house, which he prevailed upon the landlord to part with for \na consideration, and sent up to me.  The first act of this Sage, \nwas, to administer to the effects of his predecessor, by \ndisinterring all the cheese and halfpence he had buried in the \ngarden--a work of immense labour and research, to which he devoted \nall the energies of his mind.  When he had achieved this task, he \napplied himself to the acquisition of stable language, in which he \nsoon became such an adept, that he would perch outside my window \nand drive imaginary horses with great skill, all day.  Perhaps \neven I never saw him at his best, for his former master sent his \nduty with him, 'and if I wished the bird to come out very strong, \nwould I be so good as to show him a drunken man'--which I never \ndid, having (unfortunately) none but sober people at hand.\n\nBut I could hardly have respected him more, whatever the \nstimulating influences of this sight might have been.  He had not \nthe least respect, I am sorry to say, for me in return, or for \nanybody but the cook; to whom he was attached--but only, I fear, as \na Policeman might have been.  Once, I met him unexpectedly, about \nhalf-a-mile from my house, walking down the middle of a public \nstreet, attended by a pretty large crowd, and spontaneously \nexhibiting the whole of his accomplishments.  His gravity under \nthose trying circumstances, I can never forget, nor the \nextraordinary gallantry with which, refusing to be brought home, he \ndefended himself behind a pump, until overpowered by numbers.  It \nmay have been that he was too bright a genius to live long, or it \nmay have been that he took some pernicious substance into his bill, \nand thence into his maw--which is not improbable, seeing that he \nnew-pointed the greater part of the garden-wall by digging out the \nmortar, broke countless squares of glass by scraping away the putty \nall round the frames, and tore up and swallowed, in splinters, the \ngreater part of a wooden staircase of six steps and a landing--but \nafter some three years he too was taken ill, and died before the \nkitchen fire.  He kept his eye to the last upon the meat as it \nroasted, and suddenly.  turned over on his back with a sepulchral \ncry of 'Cuckoo!'  Since then I have been ravenless.\n\nNo account of the Gordon Riots having been to my knowledge \nintroduced into any Work of Fiction, and the subject presenting \nvery extraordinary and remarkable features, I was led to project \nthis Tale.\n\nIt is unnecessary to say, that those shameful tumults, while they \nreflect indelible disgrace upon the time in which they occurred, \nand all who had act or part in them, teach a good lesson.  That \nwhat we falsely call a religious cry is easily raised by men who \nhave no religion, and who in their daily practice set at nought the \ncommonest principles of right and wrong; that it is begotten of \nintolerance and persecution; that it is senseless, besotted, \ninveterate and unmerciful; all History teaches us.  But perhaps we \ndo not know it in our hearts too well, to profit by even so humble \nan example as the 'No Popery' riots of Seventeen Hundred and Eighty.\n\nHowever imperfectly those disturbances are set forth in the \nfollowing pages, they are impartially painted by one who has no \nsympathy with the Romish Church, though he acknowledges, as most \nmen do, some esteemed friends among the followers of its creed.\n\nIn the description of the principal outrages, reference has been \nhad to the best authorities of that time, such as they are; the \naccount given in this Tale, of all the main features of the Riots, \nis substantially correct.\n\nMr Dennis's allusions to the flourishing condition of his trade in \nthose days, have their foundation in Truth, and not in the \nAuthor's fancy.  Any file of old Newspapers, or odd volume of the \nAnnual Register, will prove this with terrible ease.\n\nEven the case of Mary Jones, dwelt upon with so much pleasure by \nthe same character, is no effort of invention.  The facts were \nstated, exactly as they are stated here, in the House of Commons.  \nWhether they afforded as much entertainment to the merry gentlemen \nassembled there, as some other most affecting circumstances of a \nsimilar nature mentioned by Sir Samuel Romilly, is not recorded.\n\nThat the case of Mary Jones may speak the more emphatically for \nitself, I subjoin it, as related by SIR WILLIAM MEREDITH in a \nspeech in Parliament, 'on Frequent Executions', made in 1777.\n\n'Under this act,' the Shop-lifting Act, 'one Mary Jones was \nexecuted, whose case I shall just mention; it was at the time when \npress warrants were issued, on the alarm about Falkland Islands.  \nThe woman's husband was pressed, their goods seized for some debts \nof his, and she, with two small children, turned into the streets \na-begging.  It is a circumstance not to be forgotten, that she was \nvery young (under nineteen), and most remarkably handsome.  She \nwent to a linen-draper's shop, took some coarse linen off the \ncounter, and slipped it under her cloak; the shopman saw her, and \nshe laid it down: for this she was hanged.  Her defence was (I have \nthe trial in my pocket), \"that she had lived in credit, and wanted \nfor nothing, till a press-gang came and stole her husband from her; \nbut since then, she had no bed to lie on; nothing to give her \nchildren to eat; and they were almost naked; and perhaps she might \nhave done something wrong, for she hardly knew what she did.\"  The \nparish officers testified the truth of this story; but it seems, \nthere had been a good deal of shop-lifting about Ludgate; an \nexample was thought necessary; and this woman was hanged for the \ncomfort and satisfaction of shopkeepers in Ludgate Street.  When \nbrought to receive sentence, she behaved in such a frantic manner, \nas proved her mind to he in a distracted and desponding state; and \nthe child was sucking at her breast when she set out for Tyburn.'\n\n\n\nChapter 1\n\n\nIn the year 1775, there stood upon the borders of Epping Forest, \nat a distance of about twelve miles from London--measuring from the \nStandard in Cornhill,' or rather from the spot on or near to which \nthe Standard used to be in days of yore--a house of public \nentertainment called the Maypole; which fact was demonstrated to \nall such travellers as could neither read nor write (and at that \ntime a vast number both of travellers and stay-at-homes were in \nthis condition) by the emblem reared on the roadside over against \nthe house, which, if not of those goodly proportions that Maypoles \nwere wont to present in olden times, was a fair young ash, thirty \nfeet in height, and straight as any arrow that ever English yeoman \ndrew.\n\nThe Maypole--by which term from henceforth is meant the house, and \nnot its sign--the Maypole was an old building, with more gable ends \nthan a lazy man would care to count on a sunny day; huge zig-zag \nchimneys, out of which it seemed as though even smoke could not \nchoose but come in more than naturally fantastic shapes, imparted \nto it in its tortuous progress; and vast stables, gloomy, ruinous, \nand empty.  The place was said to have been built in the days of \nKing Henry the Eighth; and there was a legend, not only that Queen \nElizabeth had slept there one night while upon a hunting excursion, \nto wit, in a certain oak-panelled room with a deep bay window, but \nthat next morning, while standing on a mounting block before the \ndoor with one foot in the stirrup, the virgin monarch had then and \nthere boxed and cuffed an unlucky page for some neglect of duty.  \nThe matter-of-fact and doubtful folks, of whom there were a few \namong the Maypole customers, as unluckily there always are in every \nlittle community, were inclined to look upon this tradition as \nrather apocryphal; but, whenever the landlord of that ancient \nhostelry appealed to the mounting block itself as evidence, and \ntriumphantly pointed out that there it stood in the same place to \nthat very day, the doubters never failed to be put down by a large \nmajority, and all true believers exulted as in a victory.\n\nWhether these, and many other stories of the like nature, were true \nor untrue, the Maypole was really an old house, a very old house, \nperhaps as old as it claimed to be, and perhaps older, which will \nsometimes happen with houses of an uncertain, as with ladies of a \ncertain, age.  Its windows were old diamond-pane lattices, its \nfloors were sunken and uneven, its ceilings blackened by the hand \nof time, and heavy with massive beams.  Over the doorway was an \nancient porch, quaintly and grotesquely carved; and here on summer \nevenings the more favoured customers smoked and drank--ay, and \nsang many a good song too, sometimes--reposing on two grim-looking \nhigh-backed settles, which, like the twin dragons of some fairy \ntale, guarded the entrance to the mansion.\n\nIn the chimneys of the disused rooms, swallows had built their \nnests for many a long year, and from earliest spring to latest \nautumn whole colonies of sparrows chirped and twittered in the \neaves.  There were more pigeons about the dreary stable-yard and \nout-buildings than anybody but the landlord could reckon up.  The \nwheeling and circling flights of runts, fantails, tumblers, and \npouters, were perhaps not quite consistent with the grave and sober \ncharacter of the building, but the monotonous cooing, which never \nceased to be raised by some among them all day long, suited it \nexactly, and seemed to lull it to rest.  With its overhanging \nstories, drowsy little panes of glass, and front bulging out and \nprojecting over the pathway, the old house looked as if it were \nnodding in its sleep.  Indeed, it needed no very great stretch of \nfancy to detect in it other resemblances to humanity.  The bricks \nof which it was built had originally been a deep dark red, but had \ngrown yellow and discoloured like an old man's skin; the sturdy \ntimbers had decayed like teeth; and here and there the ivy, like a \nwarm garment to comfort it in its age, wrapt its green leaves \nclosely round the time-worn walls.\n\nIt was a hale and hearty age though, still: and in the summer or \nautumn evenings, when the glow of the setting sun fell upon the oak \nand chestnut trees of the adjacent forest, the old house, partaking \nof its lustre, seemed their fit companion, and to have many good \nyears of life in him yet.\n\nThe evening with which we have to do, was neither a summer nor an \nautumn one, but the twilight of a day in March, when the wind \nhowled dismally among the bare branches of the trees, and rumbling \nin the wide chimneys and driving the rain against the windows of \nthe Maypole Inn, gave such of its frequenters as chanced to be \nthere at the moment an undeniable reason for prolonging their stay, \nand caused the landlord to prophesy that the night would certainly \nclear at eleven o'clock precisely,--which by a remarkable \ncoincidence was the hour at which he always closed his house.\n\nThe name of him upon whom the spirit of prophecy thus descended was \nJohn Willet, a burly, large-headed man with a fat face, which \nbetokened profound obstinacy and slowness of apprehension, \ncombined with a very strong reliance upon his own merits.  It was \nJohn Willet's ordinary boast in his more placid moods that if he \nwere slow he was sure; which assertion could, in one sense at \nleast, be by no means gainsaid, seeing that he was in everything \nunquestionably the reverse of fast, and withal one of the most \ndogged and positive fellows in existence--always sure that what he \nthought or said or did was right, and holding it as a thing quite \nsettled and ordained by the laws of nature and Providence, that \nanybody who said or did or thought otherwise must be inevitably and \nof necessity wrong.\n\nMr Willet walked slowly up to the window, flattened his fat nose \nagainst the cold glass, and shading his eyes that his sight might \nnot be affected by the ruddy glow of the fire, looked abroad.  Then \nhe walked slowly back to his old seat in the chimney-corner, and, \ncomposing himself in it with a slight shiver, such as a man might \ngive way to and so acquire an additional relish for the warm blaze, \nsaid, looking round upon his guests:\n\n'It'll clear at eleven o'clock.  No sooner and no later.  Not \nbefore and not arterwards.'\n\n'How do you make out that?' said a little man in the opposite \ncorner.  'The moon is past the full, and she rises at nine.'\n\nJohn looked sedately and solemnly at his questioner until he had \nbrought his mind to bear upon the whole of his observation, and \nthen made answer, in a tone which seemed to imply that the moon was \npeculiarly his business and nobody else's:\n\n'Never you mind about the moon.  Don't you trouble yourself about \nher.  You let the moon alone, and I'll let you alone.'\n\n'No offence I hope?' said the little man.\n\nAgain John waited leisurely until the observation had thoroughly \npenetrated to his brain, and then replying, 'No offence as YET,' \napplied a light to his pipe and smoked in placid silence; now and \nthen casting a sidelong look at a man wrapped in a loose riding-\ncoat with huge cuffs ornamented with tarnished silver lace and \nlarge metal buttons, who sat apart from the regular frequenters of \nthe house, and wearing a hat flapped over his face, which was still \nfurther shaded by the hand on which his forehead rested, looked \nunsociable enough.\n\nThere was another guest, who sat, booted and spurred, at some \ndistance from the fire also, and whose thoughts--to judge from his \nfolded arms and knitted brows, and from the untasted liquor before \nhim--were occupied with other matters than the topics under \ndiscussion or the persons who discussed them.  This was a young man \nof about eight-and-twenty, rather above the middle height, and \nthough of somewhat slight figure, gracefully and strongly made.  He \nwore his own dark hair, and was accoutred in a riding dress, which \ntogether with his large boots (resembling in shape and fashion \nthose worn by our Life Guardsmen at the present day), showed \nindisputable traces of the bad condition of the roads.  But travel-\nstained though he was, he was well and even richly attired, and \nwithout being overdressed looked a gallant gentleman.\n\nLying upon the table beside him, as he had carelessly thrown them \ndown, were a heavy riding-whip and a slouched hat, the latter worn \nno doubt as being best suited to the inclemency of the weather.  \nThere, too, were a pair of pistols in a holster-case, and a short \nriding-cloak.  Little of his face was visible, except the long dark \nlashes which concealed his downcast eyes, but an air of careless \nease and natural gracefulness of demeanour pervaded the figure, and \nseemed to comprehend even those slight accessories, which were all \nhandsome, and in good keeping.\n\nTowards this young gentleman the eyes of Mr Willet wandered but \nonce, and then as if in mute inquiry whether he had observed his \nsilent neighbour.  It was plain that John and the young gentleman \nhad often met before.  Finding that his look was not returned, or \nindeed observed by the person to whom it was addressed, John \ngradually concentrated the whole power of his eyes into one focus, \nand brought it to bear upon the man in the flapped hat, at whom he \ncame to stare in course of time with an intensity so remarkable, \nthat it affected his fireside cronies, who all, as with one accord, \ntook their pipes from their lips, and stared with open mouths at \nthe stranger likewise.\n\nThe sturdy landlord had a large pair of dull fish-like eyes, and \nthe little man who had hazarded the remark about the moon (and who \nwas the parish-clerk and bell-ringer of Chigwell, a village hard \nby) had little round black shiny eyes like beads; moreover this \nlittle man wore at the knees of his rusty black breeches, and on \nhis rusty black coat, and all down his long flapped waistcoat, \nlittle queer buttons like nothing except his eyes; but so like \nthem, that as they twinkled and glistened in the light of the fire, \nwhich shone too in his bright shoe-buckles, he seemed all eyes from \nhead to foot, and to be gazing with every one of them at the \nunknown customer.  No wonder that a man should grow restless under \nsuch an inspection as this, to say nothing of the eyes belonging to \nshort Tom Cobb the general chandler and post-office keeper, and \nlong Phil Parkes the ranger, both of whom, infected by the example \nof their companions, regarded him of the flapped hat no less \nattentively.\n\nThe stranger became restless; perhaps from being exposed to this \nraking fire of eyes, perhaps from the nature of his previous \nmeditations--most probably from the latter cause, for as he changed \nhis position and looked hastily round, he started to find himself \nthe object of such keen regard, and darted an angry and suspicious \nglance at the fireside group.  It had the effect of immediately \ndiverting all eyes to the chimney, except those of John Willet, who \nfinding himself as it were, caught in the fact, and not being (as \nhas been already observed) of a very ready nature, remained staring \nat his guest in a particularly awkward and disconcerted manner.\n\n'Well?' said the stranger.\n\nWell.  There was not much in well.  It was not a long speech.  'I \nthought you gave an order,' said the landlord, after a pause of two \nor three minutes for consideration.\n\nThe stranger took off his hat, and disclosed the hard features of a \nman of sixty or thereabouts, much weatherbeaten and worn by time, \nand the naturally harsh expression of which was not improved by a \ndark handkerchief which was bound tightly round his head, and, \nwhile it served the purpose of a wig, shaded his forehead, and \nalmost hid his eyebrows.  If it were intended to conceal or divert \nattention from a deep gash, now healed into an ugly seam, which \nwhen it was first inflicted must have laid bare his cheekbone, the \nobject was but indifferently attained, for it could scarcely fail \nto be noted at a glance.  His complexion was of a cadaverous hue, \nand he had a grizzly jagged beard of some three weeks' date.  Such \nwas the figure (very meanly and poorly clad) that now rose from the \nseat, and stalking across the room sat down in a corner of the \nchimney, which the politeness or fears of the little clerk very \nreadily assigned to him.\n\n'A highwayman!' whispered Tom Cobb to Parkes the ranger.\n\n'Do you suppose highwaymen don't dress handsomer than that?' \nreplied Parkes.  'It's a better business than you think for, Tom, \nand highwaymen don't need or use to be shabby, take my word for it.'\n\nMeanwhile the subject of their speculations had done due honour to \nthe house by calling for some drink, which was promptly supplied by \nthe landlord's son Joe, a broad-shouldered strapping young fellow \nof twenty, whom it pleased his father still to consider a little \nboy, and to treat accordingly.  Stretching out his hands to warm \nthem by the blazing fire, the man turned his head towards the \ncompany, and after running his eye sharply over them, said in a \nvoice well suited to his appearance:\n\n'What house is that which stands a mile or so from here?'\n\n'Public-house?' said the landlord, with his usual deliberation.\n\n'Public-house, father!' exclaimed Joe, 'where's the public-house \nwithin a mile or so of the Maypole?  He means the great house--the \nWarren--naturally and of course.  The old red brick house, sir, \nthat stands in its own grounds--?'\n\n'Aye,' said the stranger.\n\n'And that fifteen or twenty years ago stood in a park five times as \nbroad, which with other and richer property has bit by bit changed \nhands and dwindled away--more's the pity!' pursued the young man.\n\n'Maybe,' was the reply.  'But my question related to the owner.  \nWhat it has been I don't care to know, and what it is I can see for \nmyself.'\n\nThe heir-apparent to the Maypole pressed his finger on his lips, \nand glancing at the young gentleman already noticed, who had \nchanged his attitude when the house was first mentioned, replied in \na lower tone:\n\n'The owner's name is Haredale, Mr Geoffrey Haredale, and'--again he \nglanced in the same direction as before--'and a worthy gentleman \ntoo--hem!'\n\nPaying as little regard to this admonitory cough, as to the \nsignificant gesture that had preceded it, the stranger pursued his \nquestioning.\n\n'I turned out of my way coming here, and took the footpath that \ncrosses the grounds.  Who was the young lady that I saw entering a \ncarriage?  His daughter?'\n\n'Why, how should I know, honest man?' replied Joe, contriving in \nthe course of some arrangements about the hearth, to advance close \nto his questioner and pluck him by the sleeve, 'I didn't see the \nyoung lady, you know.  Whew!  There's the wind again--AND rain--\nwell it IS a night!'\n\nRough weather indeed!' observed the strange man.\n\n'You're used to it?' said Joe, catching at anything which seemed to \npromise a diversion of the subject.\n\n'Pretty well,' returned the other.  'About the young lady--has Mr \nHaredale a daughter?'\n\n'No, no,' said the young fellow fretfully, 'he's a single \ngentleman--he's--be quiet, can't you, man?  Don't you see this \ntalk is not relished yonder?'\n\nRegardless of this whispered remonstrance, and affecting not to \nhear it, his tormentor provokingly continued:\n\n'Single men have had daughters before now.  Perhaps she may be his \ndaughter, though he is not married.'\n\n'What do you mean?' said Joe, adding in an undertone as he \napproached him again, 'You'll come in for it presently, I know you \nwill!'\n\n'I mean no harm'--returned the traveller boldly, 'and have said \nnone that I know of.  I ask a few questions--as any stranger may, \nand not unnaturally--about the inmates of a remarkable house in a \nneighbourhood which is new to me, and you are as aghast and \ndisturbed as if I were talking treason against King George.  \nPerhaps you can tell me why, sir, for (as I say) I am a stranger, \nand this is Greek to me?'\n\nThe latter observation was addressed to the obvious cause of Joe \nWillet's discomposure, who had risen and was adjusting his riding-\ncloak preparatory to sallying abroad.  Briefly replying that he \ncould give him no information, the young man beckoned to Joe, and \nhanding him a piece of money in payment of his reckoning, hurried \nout attended by young Willet himself, who taking up a candle \nfollowed to light him to the house-door.\n\nWhile Joe was absent on this errand, the elder Willet and his three \ncompanions continued to smoke with profound gravity, and in a deep \nsilence, each having his eyes fixed on a huge copper boiler that \nwas suspended over the fire.  After some time John Willet slowly \nshook his head, and thereupon his friends slowly shook theirs; but \nno man withdrew his eyes from the boiler, or altered the solemn \nexpression of his countenance in the slightest degree.\n\nAt length Joe returned--very talkative and conciliatory, as though \nwith a strong presentiment that he was going to be found fault \nwith.\n\n'Such a thing as love is!' he said, drawing a chair near the fire, \nand looking round for sympathy.  'He has set off to walk to \nLondon,--all the way to London.  His nag gone lame in riding out \nhere this blessed afternoon, and comfortably littered down in our \nstable at this minute; and he giving up a good hot supper and our \nbest bed, because Miss Haredale has gone to a masquerade up in \ntown, and he has set his heart upon seeing her!  I don't think I \ncould persuade myself to do that, beautiful as she is,--but then \nI'm not in love (at least I don't think I am) and that's the whole \ndifference.'\n\n'He is in love then?' said the stranger.\n\n'Rather,' replied Joe.  'He'll never be more in love, and may very \neasily be less.'\n\n'Silence, sir!' cried his father.\n\n'What a chap you are, Joe!' said Long Parkes.\n\n'Such a inconsiderate lad!' murmured Tom Cobb.\n\n'Putting himself forward and wringing the very nose off his own \nfather's face!' exclaimed the parish-clerk, metaphorically.\n\n'What HAVE I done?' reasoned poor Joe.\n\n'Silence, sir!' returned his father, 'what do you mean by talking, \nwhen you see people that are more than two or three times your age, \nsitting still and silent and not dreaming of saying a word?'\n\n'Why that's the proper time for me to talk, isn't it?' said Joe \nrebelliously.\n\n'The proper time, sir!' retorted his father, 'the proper time's no \ntime.'\n\n'Ah to be sure!' muttered Parkes, nodding gravely to the other two \nwho nodded likewise, observing under their breaths that that was \nthe point.\n\n'The proper time's no time, sir,' repeated John Willet; 'when I was \nyour age I never talked, I never wanted to talk.  I listened and \nimproved myself that's what I did.'\n\n'And you'd find your father rather a tough customer in argeyment, \nJoe, if anybody was to try and tackle him,' said Parkes.\n\n'For the matter o' that, Phil!' observed Mr Willet, blowing a long, \nthin, spiral cloud of smoke out of the corner of his mouth, and \nstaring at it abstractedly as it floated away; 'For the matter o' \nthat, Phil, argeyment is a gift of Natur.  If Natur has gifted a \nman with powers of argeyment, a man has a right to make the best of \n'em, and has not a right to stand on false delicacy, and deny that \nhe is so gifted; for that is a turning of his back on Natur, a \nflouting of her, a slighting of her precious caskets, and a proving \nof one's self to be a swine that isn't worth her scattering pearls \nbefore.'\n\nThe landlord pausing here for a very long time, Mr Parkes naturally \nconcluded that he had brought his discourse to an end; and \ntherefore, turning to the young man with some austerity, \nexclaimed:\n\n'You hear what your father says, Joe?  You wouldn't much like to \ntackle him in argeyment, I'm thinking, sir.'\n\n'IF,' said John Willet, turning his eyes from the ceiling to the \nface of his interrupter, and uttering the monosyllable in capitals, \nto apprise him that he had put in his oar, as the vulgar say, with \nunbecoming and irreverent haste; 'IF, sir, Natur has fixed upon me \nthe gift of argeyment, why should I not own to it, and rather glory \nin the same?  Yes, sir, I AM a tough customer that way.  You are \nright, sir.  My toughness has been proved, sir, in this room many \nand many a time, as I think you know; and if you don't know,' added \nJohn, putting his pipe in his mouth again, 'so much the better, for \nI an't proud and am not going to tell you.'\n\nA general murmur from his three cronies, and a general shaking of \nheads at the copper boiler, assured John Willet that they had had \ngood experience of his powers and needed no further evidence to \nassure them of his superiority.  John smoked with a little more \ndignity and surveyed them in silence.\n\n'It's all very fine talking,' muttered Joe, who had been fidgeting \nin his chair with divers uneasy gestures.  'But if you mean to tell \nme that I'm never to open my lips--'\n\n'Silence, sir!' roared his father.  'No, you never are.  When your \nopinion's wanted, you give it.  When you're spoke to, you speak.  \nWhen your opinion's not wanted and you're not spoke to, don't you \ngive an opinion and don't you speak.  The world's undergone a nice \nalteration since my time, certainly.  My belief is that there an't \nany boys left--that there isn't such a thing as a boy--that there's \nnothing now between a male baby and a man--and that all the boys \nwent out with his blessed Majesty King George the Second.'\n\n'That's a very true observation, always excepting the young \nprinces,' said the parish-clerk, who, as the representative of \nchurch and state in that company, held himself bound to the nicest \nloyalty.  'If it's godly and righteous for boys, being of the ages \nof boys, to behave themselves like boys, then the young princes \nmust be boys and cannot be otherwise.'\n\n'Did you ever hear tell of mermaids, sir?' said Mr Willet.\n\n'Certainly I have,' replied the clerk.\n\n'Very good,' said Mr Willet.  'According to the constitution of \nmermaids, so much of a mermaid as is not a woman must be a fish.  \nAccording to the constitution of young princes, so much of a young \nprince (if anything) as is not actually an angel, must be godly and \nrighteous.  Therefore if it's becoming and godly and righteous in \nthe young princes (as it is at their ages) that they should be \nboys, they are and must be boys, and cannot by possibility be \nanything else.'\n\nThis elucidation of a knotty point being received with such marks \nof approval as to put John Willet into a good humour, he contented \nhimself with repeating to his son his command of silence, and \naddressing the stranger, said:\n\n'If you had asked your questions of a grown-up person--of me or any \nof these gentlemen--you'd have had some satisfaction, and wouldn't \nhave wasted breath.  Miss Haredale is Mr Geoffrey Haredale's \nniece.'\n\n'Is her father alive?' said the man, carelessly.\n\n'No,' rejoined the landlord, 'he is not alive, and he is not dead--'\n\n'Not dead!' cried the other.\n\n'Not dead in a common sort of way,' said the landlord.\n\nThe cronies nodded to each other, and Mr Parkes remarked in an \nundertone, shaking his head meanwhile as who should say, 'let no \nman contradict me, for I won't believe him,' that John Willet was \nin amazing force to-night, and fit to tackle a Chief Justice.\n\nThe stranger suffered a short pause to elapse, and then asked \nabruptly, 'What do you mean?'\n\n'More than you think for, friend,' returned John Willet.  'Perhaps \nthere's more meaning in them words than you suspect.'\n\n'Perhaps there is,' said the strange man, gruffly; 'but what the \ndevil do you speak in such mysteries for?  You tell me, first, that \na man is not alive, nor yet dead--then, that he's not dead in a \ncommon sort of way--then, that you mean a great deal more than I \nthink for.  To tell you the truth, you may do that easily; for so \nfar as I can make out, you mean nothing.  What DO you mean, I ask \nagain?'\n\n'That,' returned the landlord, a little brought down from his \ndignity by the stranger's surliness, 'is a Maypole story, and has \nbeen any time these four-and-twenty years.  That story is Solomon \nDaisy's story.  It belongs to the house; and nobody but Solomon \nDaisy has ever told it under this roof, or ever shall--that's \nmore.'\n\nThe man glanced at the parish-clerk, whose air of consciousness \nand importance plainly betokened him to be the person referred to, \nand, observing that he had taken his pipe from his lips, after a \nvery long whiff to keep it alight, and was evidently about to tell \nhis story without further solicitation, gathered his large coat \nabout him, and shrinking further back was almost lost in the gloom \nof the spacious chimney-corner, except when the flame, struggling \nfrom under a great faggot, whose weight almost crushed it for the \ntime, shot upward with a strong and sudden glare, and illumining \nhis figure for a moment, seemed afterwards to cast it into deeper \nobscurity than before.\n\nBy this flickering light, which made the old room, with its heavy \ntimbers and panelled walls, look as if it were built of polished \nebony--the wind roaring and howling without, now rattling the latch \nand creaking the hinges of the stout oaken door, and now driving at \nthe casement as though it would beat it in--by this light, and \nunder circumstances so auspicious, Solomon Daisy began his tale:\n\n'It was Mr Reuben Haredale, Mr Geoffrey's elder brother--'\n\nHere he came to a dead stop, and made so long a pause that even \nJohn Willet grew impatient and asked why he did not proceed.\n\n'Cobb,' said Solomon Daisy, dropping his voice and appealing to the \npost-office keeper; 'what day of the month is this?'\n\n'The nineteenth.'\n\n'Of March,' said the clerk, bending forward, 'the nineteenth of \nMarch; that's very strange.'\n\nIn a low voice they all acquiesced, and Solomon went on:\n\n'It was Mr Reuben Haredale, Mr Geoffrey's elder brother, that \ntwenty-two years ago was the owner of the Warren, which, as Joe \nhas said--not that you remember it, Joe, for a boy like you can't \ndo that, but because you have often heard me say so--was then a \nmuch larger and better place, and a much more valuable property \nthan it is now.  His lady was lately dead, and he was left with one \nchild--the Miss Haredale you have been inquiring about--who was \nthen scarcely a year old.'\n\nAlthough the speaker addressed himself to the man who had shown so \nmuch curiosity about this same family, and made a pause here as if \nexpecting some exclamation of surprise or encouragement, the latter \nmade no remark, nor gave any indication that he heard or was \ninterested in what was said.  Solomon therefore turned to his old \ncompanions, whose noses were brightly illuminated by the deep red \nglow from the bowls of their pipes; assured, by long experience, of \ntheir attention, and resolved to show his sense of such indecent \nbehaviour.\n\n'Mr Haredale,' said Solomon, turning his back upon the strange man, \n'left this place when his lady died, feeling it lonely like, and \nwent up to London, where he stopped some months; but finding that \nplace as lonely as this--as I suppose and have always heard say--he \nsuddenly came back again with his little girl to the Warren, \nbringing with him besides, that day, only two women servants, and \nhis steward, and a gardener.'\n\nMr Daisy stopped to take a whiff at his pipe, which was going out, \nand then proceeded--at first in a snuffling tone, occasioned by \nkeen enjoyment of the tobacco and strong pulling at the pipe, and \nafterwards with increasing distinctness:\n\n'--Bringing with him two women servants, and his steward, and a \ngardener.  The rest stopped behind up in London, and were to follow \nnext day.  It happened that that night, an old gentleman who lived \nat Chigwell Row, and had long been poorly, deceased, and an order \ncame to me at half after twelve o'clock at night to go and toll the \npassing-bell.'\n\nThere was a movement in the little group of listeners, sufficiently \nindicative of the strong repugnance any one of them would have felt \nto have turned out at such a time upon such an errand.  The clerk \nfelt and understood it, and pursued his theme accordingly.\n\n'It WAS a dreary thing, especially as the grave-digger was laid up \nin his bed, from long working in a damp soil and sitting down to \ntake his dinner on cold tombstones, and I was consequently under \nobligation to go alone, for it was too late to hope to get any \nother companion.  However, I wasn't unprepared for it; as the old \ngentleman had often made it a request that the bell should be \ntolled as soon as possible after the breath was out of his body, \nand he had been expected to go for some days.  I put as good a face \nupon it as I could, and muffling myself up (for it was mortal \ncold), started out with a lighted lantern in one hand and the key \nof the church in the other.'\n\nAt this point of the narrative, the dress of the strange man \nrustled as if he had turned himself to hear more distinctly.  \nSlightly pointing over his shoulder, Solomon elevated his eyebrows \nand nodded a silent inquiry to Joe whether this was the case.  Joe \nshaded his eyes with his hand and peered into the corner, but could \nmake out nothing, and so shook his head.\n\n'It was just such a night as this; blowing a hurricane, raining \nheavily, and very dark--I often think now, darker than I ever saw \nit before or since; that may be my fancy, but the houses were all \nclose shut and the folks in doors, and perhaps there is only one \nother man who knows how dark it really was.  I got into the church, \nchained the door back so that it should keep ajar--for, to tell the \ntruth, I didn't like to be shut in there alone--and putting my \nlantern on the stone seat in the little corner where the bell-rope \nis, sat down beside it to trim the candle.\n\n'I sat down to trim the candle, and when I had done so I could not \npersuade myself to get up again, and go about my work.  I don't \nknow how it was, but I thought of all the ghost stories I had ever \nheard, even those that I had heard when I was a boy at school, and \nhad forgotten long ago; and they didn't come into my mind one after \nanother, but all crowding at once, like.  I recollected one story \nthere was in the village, how that on a certain night in the year \n(it might be that very night for anything I knew), all the dead \npeople came out of the ground and sat at the heads of their own \ngraves till morning.  This made me think how many people I had \nknown, were buried between the church-door and the churchyard gate, \nand what a dreadful thing it would be to have to pass among them \nand know them again, so earthy and unlike themselves.  I had known \nall the niches and arches in the church from a child; still, I \ncouldn't persuade myself that those were their natural shadows \nwhich I saw on the pavement, but felt sure there were some ugly \nfigures hiding among 'em and peeping out.  Thinking on in this \nway, I began to think of the old gentleman who was just dead, and I \ncould have sworn, as I looked up the dark chancel, that I saw him \nin his usual place, wrapping his shroud about him and shivering as \nif he felt it cold.  All this time I sat listening and listening, \nand hardly dared to breathe.  At length I started up and took the \nbell-rope in my hands.  At that minute there rang--not that bell, \nfor I had hardly touched the rope--but another!\n\n'I heard the ringing of another bell, and a deep bell too, plainly.  \nIt was only for an instant, and even then the wind carried the \nsound away, but I heard it.  I listened for a long time, but it \nrang no more.  I had heard of corpse candles, and at last I \npersuaded myself that this must be a corpse bell tolling of itself \nat midnight for the dead.  I tolled my bell--how, or how long, I \ndon't know--and ran home to bed as fast as I could touch the \nground.\n\n'I was up early next morning after a restless night, and told the \nstory to my neighbours.  Some were serious and some made light of \nit; I don't think anybody believed it real.  But, that morning, Mr \nReuben Haredale was found murdered in his bedchamber; and in his \nhand was a piece of the cord attached to an alarm-bell outside the \nroof, which hung in his room and had been cut asunder, no doubt by \nthe murderer, when he seized it.\n\n'That was the bell I heard.\n\n'A bureau was found opened, and a cash-box, which Mr Haredale had \nbrought down that day, and was supposed to contain a large sum of \nmoney, was gone.  The steward and gardener were both missing and \nboth suspected for a long time, but they were never found, though \nhunted far and wide.  And far enough they might have looked for \npoor Mr Rudge the steward, whose body--scarcely to be recognised by \nhis clothes and the watch and ring he wore--was found, months \nafterwards, at the bottom of a piece of water in the grounds, with \na deep gash in the breast where he had been stabbed with a knife.  \nHe was only partly dressed; and people all agreed that he had been \nsitting up reading in his own room, where there were many traces of \nblood, and was suddenly fallen upon and killed before his master.\n\nEverybody now knew that the gardener must be the murderer, and \nthough he has never been heard of from that day to this, he will \nbe, mark my words.  The crime was committed this day two-and-twenty \nyears--on the nineteenth of March, one thousand seven hundred and \nfifty-three.  On the nineteenth of March in some year--no matter \nwhen--I know it, I am sure of it, for we have always, in some \nstrange way or other, been brought back to the subject on that day \never since--on the nineteenth of March in some year, sooner or \nlater, that man will be discovered.'\n\n\n\nChapter 2\n\n\n'A strange story!' said the man who had been the cause of the \nnarration.--'Stranger still if it comes about as you predict.  Is \nthat all?'\n\nA question so unexpected, nettled Solomon Daisy not a little.  By \ndint of relating the story very often, and ornamenting it \n(according to village report) with a few flourishes suggested by \nthe various hearers from time to time, he had come by degrees to \ntell it with great effect; and 'Is that all?' after the climax, was \nnot what he was accustomed to.\n\n'Is that all?' he repeated, 'yes, that's all, sir.  And enough \ntoo, I think.'\n\n'I think so too.  My horse, young man!  He is but a hack hired from \na roadside posting house, but he must carry me to London to-\nnight.'\n\n'To-night!' said Joe.\n\n'To-night,' returned the other.  'What do you stare at?  This \ntavern would seem to be a house of call for all the gaping idlers \nof the neighbourhood!'\n\nAt this remark, which evidently had reference to the scrutiny he \nhad undergone, as mentioned in the foregoing chapter, the eyes of \nJohn Willet and his friends were diverted with marvellous rapidity \nto the copper boiler again.  Not so with Joe, who, being a \nmettlesome fellow, returned the stranger's angry glance with a \nsteady look, and rejoined:\n\n'It is not a very bold thing to wonder at your going on to-night.  \nSurely you have been asked such a harmless question in an inn \nbefore, and in better weather than this.  I thought you mightn't \nknow the way, as you seem strange to this part.'\n\n'The way--' repeated the other, irritably.\n\n'Yes.  DO you know it?'\n\n'I'll--humph!--I'll find it,' replied the nian, waving his hand and \nturning on his heel.  'Landlord, take the reckoning here.'\n\nJohn Willet did as he was desired; for on that point he was seldom \nslow, except in the particulars of giving change, and testing the \ngoodness of any piece of coin that was proffered to him, by the \napplication of his teeth or his tongue, or some other test, or in \ndoubtful cases, by a long series of tests terminating in its \nrejection.  The guest then wrapped his garments about him so as to \nshelter himself as effectually as he could from the rough weather, \nand without any word or sign of farewell betook himself to the \nstableyard.  Here Joe (who had left the room on the conclusion of \ntheir short dialogue) was protecting himself and the horse from the \nrain under the shelter of an old penthouse roof.\n\n'He's pretty much of my opinion,' said Joe, patting the horse upon \nthe neck.  'I'll wager that your stopping here to-night would \nplease him better than it would please me.'\n\n'He and I are of different opinions, as we have been more than once \non our way here,' was the short reply.\n\n'So I was thinking before you came out, for he has felt your spurs, \npoor beast.'\n\nThe stranger adjusted his coat-collar about his face, and made no \nanswer.\n\n'You'll know me again, I see,' he said, marking the young fellow's \nearnest gaze, when he had sprung into the saddle.\n\n'The man's worth knowing, master, who travels a road he don't know, \nmounted on a jaded horse, and leaves good quarters to do it on such \na night as this.'\n\n'You have sharp eyes and a sharp tongue, I find.'\n\n'Both I hope by nature, but the last grows rusty sometimes for \nwant of using.'\n\n'Use the first less too, and keep their sharpness for your \nsweethearts, boy,' said the man.\n\nSo saying he shook his hand from the bridle, struck him roughly on \nthe head with the butt end of his whip, and galloped away; dashing \nthrough the mud and darkness with a headlong speed, which few badly \nmounted horsemen would have cared to venture, even had they been \nthoroughly acquainted with the country; and which, to one who knew \nnothing of the way he rode, was attended at every step with great \nhazard and danger.\n\nThe roads, even within twelve miles of London, were at that time \nill paved, seldom repaired, and very badly made.  The way this \nrider traversed had been ploughed up by the wheels of heavy \nwaggons, and rendered rotten by the frosts and thaws of the \npreceding winter, or possibly of many winters.  Great holes and \ngaps had been worn into the soil, which, being now filled with \nwater from the late rains, were not easily distinguishable even by \nday; and a plunge into any one of them might have brought down a \nsurer-footed horse than the poor beast now urged forward to the \nutmost extent of his powers.  Sharp flints and stones rolled from \nunder his hoofs continually; the rider could scarcely see beyond \nthe animal's head, or farther on either side than his own arm \nwould have extended.  At that time, too, all the roads in the \nneighbourhood of the metropolis were infested by footpads or \nhighwaymen, and it was a night, of all others, in which any evil-\ndisposed person of this class might have pursued his unlawful \ncalling with little fear of detection.\n\nStill, the traveller dashed forward at the same reckless pace, \nregardless alike of the dirt and wet which flew about his head, the \nprofound darkness of the night, and the probability of encountering \nsome desperate characters abroad.  At every turn and angle, even \nwhere a deviation from the direct course might have been least \nexpected, and could not possibly be seen until he was close upon \nit, he guided the bridle with an unerring hand, and kept the middle \nof the road.  Thus he sped onward, raising himself in the stirrups, \nleaning his body forward until it almost touched the horse's neck, \nand flourishing his heavy whip above his head with the fervour of a \nmadman.\n\nThere are times when, the elements being in unusual commotion, \nthose who are bent on daring enterprises, or agitated by great \nthoughts, whether of good or evil, feel a mysterious sympathy with \nthe tumult of nature, and are roused into corresponding violence.  \nIn the midst of thunder, lightning, and storm, many tremendous \ndeeds have been committed; men, self-possessed before, have given \na sudden loose to passions they could no longer control.  The \ndemons of wrath and despair have striven to emulate those who ride \nthe whirlwind and direct the storm; and man, lashed into madness \nwith the roaring winds and boiling waters, has become for the time \nas wild and merciless as the elements themselves.\n\nWhether the traveller was possessed by thoughts which the fury of \nthe night had heated and stimulated into a quicker current, or was \nmerely impelled by some strong motive to reach his journey's end, \non he swept more like a hunted phantom than a man, nor checked his \npace until, arriving at some cross roads, one of which led by a \nlonger route to the place whence he had lately started, he bore \ndown so suddenly upon a vehicle which was coming towards him, that \nin the effort to avoid it he well-nigh pulled his horse upon his \nhaunches, and narrowly escaped being thrown.\n\n'Yoho!' cried the voice of a man.  'What's that?  Who goes there?'\n\n'A friend!' replied the traveller.\n\n'A friend!' repeated the voice.  'Who calls himself a friend and \nrides like that, abusing Heaven's gifts in the shape of horseflesh, \nand endangering, not only his own neck (which might be no great \nmatter) but the necks of other people?'\n\n'You have a lantern there, I see,' said the traveller dismounting, \n'lend it me for a moment.  You have wounded my horse, I think, with \nyour shaft or wheel.'\n\n'Wounded him!' cried the other, 'if I haven't killed him, it's no \nfault of yours.  What do you mean by galloping along the king's \nhighway like that, eh?'\n\n'Give me the light,' returned the traveller, snatching it from his \nhand, 'and don't ask idle questions of a man who is in no mood for \ntalking.'\n\n'If you had said you were in no mood for talking before, I should \nperhaps have been in no mood for lighting,' said the voice.  \n'Hows'ever as it's the poor horse that's damaged and not you, one \nof you is welcome to the light at all events--but it's not the \ncrusty one.'\n\nThe traveller returned no answer to this speech, but holding the \nlight near to his panting and reeking beast, examined him in limb \nand carcass.  Meanwhile, the other man sat very composedly in his \nvehicle, which was a kind of chaise with a depository for a large \nbag of tools, and watched his proceedings with a careful eye.\n\nThe looker-on was a round, red-faced, sturdy yeoman, with a double \nchin, and a voice husky with good living, good sleeping, good \nhumour, and good health.  He was past the prime of life, but Father \nTime is not always a hard parent, and, though he tarries for none \nof his children, often lays his hand lightly upon those who have \nused him well; making them old men and women inexorably enough, but \nleaving their hearts and spirits young and in full vigour.  With \nsuch people the grey head is but the impression of the old fellow's \nhand in giving them his blessing, and every wrinkle but a notch in \nthe quiet calendar of a well-spent life.\n\nThe person whom the traveller had so abruptly encountered was of \nthis kind: bluff, hale, hearty, and in a green old age: at peace \nwith himself, and evidently disposed to be so with all the world.  \nAlthough muffled up in divers coats and handkerchiefs--one of \nwhich, passed over his crown, and tied in a convenient crease of \nhis double chin, secured his three-cornered hat and bob-wig from \nblowing off his head--there was no disguising his plump and \ncomfortable figure; neither did certain dirty finger-marks upon \nhis face give it any other than an odd and comical expression, \nthrough which its natural good humour shone with undiminished \nlustre.\n\n'He is not hurt,' said the traveller at length, raising his head \nand the lantern together.\n\n'You have found that out at last, have you?' rejoined the old man.  \n'My eyes have seen more light than yours, but I wouldn't change \nwith you.'\n\n'What do you mean?'\n\n'Mean!  I could have told you he wasn't hurt, five minutes ago.  \nGive me the light, friend; ride forward at a gentler pace; and good \nnight.'\n\nIn handing up the lantern, the man necessarily cast its rays full \non the speaker's face.  Their eyes met at the instant.  He suddenly \ndropped it and crushed it with his foot.\n\n'Did you never see a locksmith before, that you start as if you had \ncome upon a ghost?' cried the old man in the chaise, 'or is this,' \nhe added hastily, thrusting his hand into the tool basket and \ndrawing out a hammer, 'a scheme for robbing me?  I know these \nroads, friend.  When I travel them, I carry nothing but a few \nshillings, and not a crown's worth of them.  I tell you plainly, to \nsave us both trouble, that there's nothing to be got from me but a \npretty stout arm considering my years, and this tool, which, mayhap \nfrom long acquaintance with, I can use pretty briskly.  You shall \nnot have it all your own way, I promise you, if you play at that \ngame.  With these words he stood upon the defensive.\n\n'I am not what you take me for, Gabriel Varden,' replied the other.\n\n'Then what and who are you?' returned the locksmith.  'You know my \nname, it seems.  Let me know yours.'\n\n'I have not gained the information from any confidence of yours, \nbut from the inscription on your cart which tells it to all the \ntown,' replied the traveller.\n\n'You have better eyes for that than you had for your horse, then,' \nsaid Varden, descending nimbly from his chaise; 'who are you?  Let \nme see your face.'\n\nWhile the locksmith alighted, the traveller had regained his \nsaddle, from which he now confronted the old man, who, moving as \nthe horse moved in chafing under the tightened rein, kept close \nbeside him.\n\n'Let me see your face, I say.'\n\n'Stand off!'\n\n'No masquerading tricks,' said the locksmith, 'and tales at the \nclub to-morrow, how Gabriel Varden was frightened by a surly voice \nand a dark night.  Stand--let me see your face.'\n\nFinding that further resistance would only involve him in a \npersonal struggle with an antagonist by no means to be despised, \nthe traveller threw back his coat, and stooping down looked \nsteadily at the locksmith.\n\nPerhaps two men more powerfully contrasted, never opposed each \nother face to face.  The ruddy features of the locksmith so set off \nand heightened the excessive paleness of the man on horseback, that \nhe looked like a bloodless ghost, while the moisture, which hard \nriding had brought out upon his skin, hung there in dark and heavy \ndrops, like dews of agony and death.  The countenance of the old \nlocksmith lighted up with the smile of one expecting to detect in \nthis unpromising stranger some latent roguery of eye or lip, which \nshould reveal a familiar person in that arch disguise, and spoil \nhis jest.  The face of the other, sullen and fierce, but shrinking \ntoo, was that of a man who stood at bay; while his firmly closed \njaws, his puckered mouth, and more than all a certain stealthy \nmotion of the hand within his breast, seemed to announce a \ndesperate purpose very foreign to acting, or child's play.\n\nThus they regarded each other for some time, in silence.\n\n'Humph!' he said when he had scanned his features; 'I don't know \nyou.'\n\n'Don't desire to?'--returned the other, muffling himself as before.\n\n'I don't,' said Gabriel; 'to be plain with you, friend, you don't \ncarry in your countenance a letter of recommendation.'\n\n'It's not my wish,' said the traveller.  'My humour is to be \navoided.'\n\n'Well,' said the locksmith bluntly, 'I think you'll have your \nhumour.'\n\n'I will, at any cost,' rejoined the traveller.  'In proof of it, \nlay this to heart--that you were never in such peril of your life \nas you have been within these few moments; when you are within \nfive minutes of breathing your last, you will not be nearer death \nthan you have been to-night!'\n\n'Aye!' said the sturdy locksmith.\n\n'Aye! and a violent death.'\n\n'From whose hand?'\n\n'From mine,' replied the traveller.\n\nWith that he put spurs to his horse, and rode away; at first \nplashing heavily through the mire at a smart trot, but gradually \nincreasing in speed until the last sound of his horse's hoofs died \naway upon the wind; when he was again hurrying on at the same \nfurious gallop, which had been his pace when the locksmith first \nencountered him.\n\nGabriel Varden remained standing in the road with the broken \nlantern in his hand, listening in stupefied silence until no sound \nreached his ear but the moaning of the wind, and the fast-falling \nrain; when he struck himself one or two smart blows in the breast \nby way of rousing himself, and broke into an exclamation of \nsurprise.\n\n'What in the name of wonder can this fellow be! a madman? a \nhighwayman? a cut-throat?  If he had not scoured off so fast, we'd \nhave seen who was in most danger, he or I.  I never nearer death \nthan I have been to-night!  I hope I may be no nearer to it for a \nscore of years to come--if so, I'll be content to be no farther \nfrom it.  My stars!--a pretty brag this to a stout man--pooh, \npooh!'\n\nGabriel resumed his seat, and looked wistfully up the road by which \nthe traveller had come; murmuring in a half whisper:\n\n'The Maypole--two miles to the Maypole.  I came the other road from \nthe Warren after a long day's work at locks and bells, on purpose \nthat I should not come by the Maypole and break my promise to \nMartha by looking in--there's resolution!  It would be dangerous to \ngo on to London without a light; and it's four miles, and a good \nhalf mile besides, to the Halfway-House; and between this and that \nis the very place where one needs a light most.  Two miles to the \nMaypole!  I told Martha I wouldn't; I said I wouldn't, and I \ndidn't--there's resolution!'\n\nRepeating these two last words very often, as if to compensate for \nthe little resolution he was going to show by piquing himself on \nthe great resolution he had shown, Gabriel Varden quietly turned \nback, determining to get a light at the Maypole, and to take \nnothing but a light.\n\nWhen he got to the Maypole, however, and Joe, responding to his \nwell-known hail, came running out to the horse's head, leaving the \ndoor open behind him, and disclosing a delicious perspective of \nwarmth and brightness--when the ruddy gleam of the fire, streaming \nthrough the old red curtains of the common room, seemed to bring \nwith it, as part of itself, a pleasant hum of voices, and a \nfragrant odour of steaming grog and rare tobacco, all steeped as \nit were in the cheerful glow--when the shadows, flitting across the \ncurtain, showed that those inside had risen from their snug seats, \nand were making room in the snuggest corner (how well he knew that \ncorner!) for the honest locksmith, and a broad glare, suddenly \nstreaming up, bespoke the goodness of the crackling log from which \na brilliant train of sparks was doubtless at that moment whirling \nup the chimney in honour of his coming--when, superadded to these \nenticements, there stole upon him from the distant kitchen a gentle \nsound of frying, with a musical clatter of plates and dishes, and a \nsavoury smell that made even the boisterous wind a perfume--Gabriel \nfelt his firmness oozing rapidly away.  He tried to look stoically \nat the tavern, but his features would relax into a look of \nfondness.  He turned his head the other way, and the cold black \ncountry seemed to frown him off, and drive him for a refuge into \nits hospitable arms.\n\n'The merciful man, Joe,' said the locksmith, 'is merciful to his \nbeast.  I'll get out for a little while.'\n\nAnd how natural it was to get out!  And how unnatural it seemed for \na sober man to be plodding wearily along through miry roads, \nencountering the rude buffets of the wind and pelting of the rain, \nwhen there was a clean floor covered with crisp white sand, a well \nswept hearth, a blazing fire, a table decorated with white cloth, \nbright pewter flagons, and other tempting preparations for a well-\ncooked meal--when there were these things, and company disposed to \nmake the most of them, all ready to his hand, and entreating him to \nenjoyment!\n\n\n\nChapter 3\n\n\nSuch were the locksmith's thoughts when first seated in the snug \ncorner, and slowly recovering from a pleasant defect of vision--\npleasant, because occasioned by the wind blowing in his eyes--which \nmade it a matter of sound policy and duty to himself, that he \nshould take refuge from the weather, and tempted him, for the same \nreason, to aggravate a slight cough, and declare he felt but \npoorly.  Such were still his thoughts more than a full hour \nafterwards, when, supper over, he still sat with shining jovial \nface in the same warm nook, listening to the cricket-like chirrup \nof little Solomon Daisy, and bearing no unimportant or slightly \nrespected part in the social gossip round the Maypole fire.\n\n'I wish he may be an honest man, that's all,' said Solomon, winding \nup a variety of speculations relative to the stranger, concerning \nwhom Gabriel had compared notes with the company, and so raised a \ngrave discussion; 'I wish he may be an honest man.'\n\n'So we all do, I suppose, don't we?' observed the locksmith.\n\n'I don't,' said Joe.\n\n'No!' cried Gabriel.\n\n'No.  He struck me with his whip, the coward, when he was mounted \nand I afoot, and I should be better pleased that he turned out what \nI think him.'\n\n'And what may that be, Joe?'\n\n'No good, Mr Varden.  You may shake your head, father, but I say no \ngood, and will say no good, and I would say no good a hundred times \nover, if that would bring him back to have the drubbing he \ndeserves.'\n\n'Hold your tongue, sir,' said John Willet.\n\n'I won't, father.  It's all along of you that he ventured to do \nwhat he did.  Seeing me treated like a child, and put down like a \nfool, HE plucks up a heart and has a fling at a fellow that he \nthinks--and may well think too--hasn't a grain of spirit.  But he's \nmistaken, as I'll show him, and as I'll show all of you before \nlong.'\n\n'Does the boy know what he's a saying of!' cried the astonished \nJohn Willet.\n\n'Father,' returned Joe, 'I know what I say and mean, well--better \nthan you do when you hear me.  I can bear with you, but I cannot \nbear the contempt that your treating me in the way you do, brings \nupon me from others every day.  Look at other young men of my age.  \nHave they no liberty, no will, no right to speak?  Are they obliged \nto sit mumchance, and to be ordered about till they are the \nlaughing-stock of young and old?  I am a bye-word all over \nChigwell, and I say--and it's fairer my saying so now, than waiting \ntill you are dead, and I have got your money--I say, that before \nlong I shall be driven to break such bounds, and that when I do, it \nwon't be me that you'll have to blame, but your own self, and no \nother.'\n\nJohn Willet was so amazed by the exasperation and boldness of his \nhopeful son, that he sat as one bewildered, staring in a ludicrous \nmanner at the boiler, and endeavouring, but quite ineffectually, to \ncollect his tardy thoughts, and invent an answer.  The guests, \nscarcely less disturbed, were equally at a loss; and at length, \nwith a variety of muttered, half-expressed condolences, and pieces \nof advice, rose to depart; being at the same time slightly muddled \nwith liquor.\n\nThe honest locksmith alone addressed a few words of coherent and \nsensible advice to both parties, urging John Willet to remember \nthat Joe was nearly arrived at man's estate, and should not be \nruled with too tight a hand, and exhorting Joe himself to bear with \nhis father's caprices, and rather endeavour to turn them aside by \ntemperate remonstrance than by ill-timed rebellion.  This advice \nwas received as such advice usually is.  On John Willet it made \nalmost as much impression as on the sign outside the door, while \nJoe, who took it in the best part, avowed himself more obliged than \nhe could well express, but politely intimated his intention \nnevertheless of taking his own course uninfluenced by anybody.\n\n'You have always been a very good friend to me, Mr Varden,' he \nsaid, as they stood without, in the porch, and the locksmith was \nequipping himself for his journey home; 'I take it very kind of \nyou to say all this, but the time's nearly come when the Maypole \nand I must part company.'\n\n'Roving stones gather no moss, Joe,' said Gabriel.\n\n'Nor milestones much,' replied Joe.  'I'm little better than one \nhere, and see as much of the world.'\n\n'Then, what would you do, Joe?' pursued the locksmith, stroking \nhis chin reflectively.  'What could you be?  Where could you go, \nyou see?'\n\n'I must trust to chance, Mr Varden.'\n\n'A bad thing to trust to, Joe.  I don't like it.  I always tell my \ngirl when we talk about a husband for her, never to trust to \nchance, but to make sure beforehand that she has a good man and \ntrue, and then chance will neither make her nor break her.  What \nare you fidgeting about there, Joe?  Nothing gone in the harness, I \nhope?'\n\n'No no,' said Joe--finding, however, something very engrossing to \ndo in the way of strapping and buckling--'Miss Dolly quite well?'\n\n'Hearty, thankye.  She looks pretty enough to be well, and good \ntoo.'\n\n'She's always both, sir'--\n\n'So she is, thank God!'\n\n'I hope,' said Joe after some hesitation, 'that you won't tell this \nstory against me--this of my having been beat like the boy they'd \nmake of me--at all events, till I have met this man again and \nsettled the account.  It'll be a better story then.'\n\n'Why who should I tell it to?' returned Gabriel.  'They know it \nhere, and I'm not likely to come across anybody else who would care \nabout it.'\n\n'That's true enough,' said the young fellow with a sigh.  'I quite \nforgot that.  Yes, that's true!'\n\nSo saying, he raised his face, which was very red,--no doubt from \nthe exertion of strapping and buckling as aforesaid,--and giving \nthe reins to the old man, who had by this time taken his seat, \nsighed again and bade him good night.\n\n'Good night!' cried Gabriel.  'Now think better of what we have \njust been speaking of; and don't be rash, there's a good fellow!  I \nhave an interest in you, and wouldn't have you cast yourself away.  \nGood night!'\n\nReturning his cheery farewell with cordial goodwill, Joe Willet \nlingered until the sound of wheels ceased to vibrate in his ears, \nand then, shaking his head mournfully, re-entered the house.\n\nGabriel Varden went his way towards London, thinking of a great \nmany things, and most of all of flaming terms in which to relate \nhis adventure, and so account satisfactorily to Mrs Varden for \nvisiting the Maypole, despite certain solemn covenants between \nhimself and that lady.  Thinking begets, not only thought, but \ndrowsiness occasionally, and the more the locksmith thought, the \nmore sleepy he became.\n\nA man may be very sober--or at least firmly set upon his legs on \nthat neutral ground which lies between the confines of perfect \nsobriety and slight tipsiness--and yet feel a strong tendency to \nmingle up present circumstances with others which have no manner of \nconnection with them; to confound all consideration of persons, \nthings, times, and places; and to jumble his disjointed thoughts \ntogether in a kind of mental kaleidoscope, producing combinations \nas unexpected as they are transitory.  This was Gabriel Varden's \nstate, as, nodding in his dog sleep, and leaving his horse to \npursue a road with which he was well acquainted, he got over the \nground unconsciously, and drew nearer and nearer home.  He had \nroused himself once, when the horse stopped until the turnpike gate \nwas opened, and had cried a lusty 'good night!' to the toll-\nkeeper; but then he awoke out of a dream about picking a lock in \nthe stomach of the Great Mogul, and even when he did wake, mixed up \nthe turnpike man with his mother-in-law who had been dead twenty \nyears.  It is not surprising, therefore, that he soon relapsed, and \njogged heavily along, quite insensible to his progress.\n\nAnd, now, he approached the great city, which lay outstretched \nbefore him like a dark shadow on the ground, reddening the sluggish \nair with a deep dull light, that told of labyrinths of public ways \nand shops, and swarms of busy people.  Approaching nearer and \nnearer yet, this halo began to fade, and the causes which produced \nit slowly to develop themselves.  Long lines of poorly lighted \nstreets might be faintly traced, with here and there a lighter \nspot, where lamps were clustered round a square or market, or round \nsome great building; after a time these grew more distinct, and the \nlamps themselves were visible; slight yellow specks, that seemed to \nbe rapidly snuffed out, one by one, as intervening obstacles hid \nthem from the sight.  Then, sounds arose--the striking of church \nclocks, the distant bark of dogs, the hum of traffic in the \nstreets; then outlines might be traced--tall steeples looming in \nthe air, and piles of unequal roofs oppressed by chimneys; then, \nthe noise swelled into a louder sound, and forms grew more distinct \nand numerous still, and London--visible in the darkness by its own \nfaint light, and not by that of Heaven--was at hand.\n\nThe locksmith, however, all unconscious of its near vicinity, still \njogged on, half sleeping and half waking, when a loud cry at no \ngreat distance ahead, roused him with a start.\n\nFor a moment or two he looked about him like a man who had been \ntransported to some strange country in his sleep, but soon \nrecognising familiar objects, rubbed his eyes lazily and might have \nrelapsed again, but that the cry was repeated--not once or twice or \nthrice, but many times, and each time, if possible, with increased \nvehemence.  Thoroughly aroused, Gabriel, who was a bold man and not \neasily daunted, made straight to the spot, urging on his stout \nlittle horse as if for life or death.\n\nThe matter indeed looked sufficiently serious, for, coming to the \nplace whence the cries had proceeded, he descried the figure of a \nman extended in an apparently lifeless state upon the pathway, \nand, hovering round him, another person with a torch in his hand, \nwhich he waved in the air with a wild impatience, redoubling \nmeanwhile those cries for help which had brought the locksmith to \nthe spot.\n\n'What's here to do?' said the old man, alighting.  'How's this--\nwhat--Barnaby?'\n\nThe bearer of the torch shook his long loose hair back from his \neyes, and thrusting his face eagerly into that of the locksmith, \nfixed upon him a look which told his history at once.\n\n'You know me, Barnaby?' said Varden.\n\nHe nodded--not once or twice, but a score of times, and that with a \nfantastic exaggeration which would have kept his head in motion for \nan hour, but that the locksmith held up his finger, and fixing his \neye sternly upon him caused him to desist; then pointed to the body \nwith an inquiring look.\n\n'There's blood upon him,' said Barnaby with a shudder.  'It makes \nme sick!'\n\n'How came it there?' demanded Varden.\n\n'Steel, steel, steel!' he replied fiercely, imitating with his hand \nthe thrust of a sword.\n\n'Is he robbed?' said the locksmith.\n\nBarnaby caught him by the arm, and nodded 'Yes;' then pointed \ntowards the city.\n\n'Oh!' said the old man, bending over the body and looking round as \nhe spoke into Barnaby's pale face, strangely lighted up by \nsomething that was NOT intellect.  'The robber made off that way, \ndid he?  Well, well, never mind that just now.  Hold your torch \nthis way--a little farther off--so.  Now stand quiet, while I try \nto see what harm is done.'\n\nWith these words, he applied himself to a closer examination of the \nprostrate form, while Barnaby, holding the torch as he had been \ndirected, looked on in silence, fascinated by interest or \ncuriosity, but repelled nevertheless by some strong and secret \nhorror which convulsed him in every nerve.\n\nAs he stood, at that moment, half shrinking back and half bending \nforward, both his face and figure were full in the strong glare of \nthe link, and as distinctly revealed as though it had been broad \nday.  He was about three-and-twenty years old, and though rather \nspare, of a fair height and strong make.  His hair, of which he had \na great profusion, was red, and hanging in disorder about his face \nand shoulders, gave to his restless looks an expression quite \nunearthly--enhanced by the paleness of his complexion, and the \nglassy lustre of his large protruding eyes.  Startling as his \naspect was, the features were good, and there was something even \nplaintive in his wan and haggard aspect.  But, the absence of the \nsoul is far more terrible in a living man than in a dead one; and \nin this unfortunate being its noblest powers were wanting.\n\nHis dress was of green, clumsily trimmed here and there--apparently \nby his own hands--with gaudy lace; brightest where the cloth was \nmost worn and soiled, and poorest where it was at the best.  A pair \nof tawdry ruffles dangled at his wrists, while his throat was \nnearly bare.  He had ornamented his hat with a cluster of peacock's \nfeathers, but they were limp and broken, and now trailed \nnegligently down his back.  Girt to his side was the steel hilt of \nan old sword without blade or scabbard; and some particoloured ends \nof ribands and poor glass toys completed the ornamental portion of \nhis attire.  The fluttered and confused disposition of all the \nmotley scraps that formed his dress, bespoke, in a scarcely less \ndegree than his eager and unsettled manner, the disorder of his \nmind, and by a grotesque contrast set off and heightened the more \nimpressive wildness of his face.\n\n'Barnaby,' said the locksmith, after a hasty but careful \ninspection, 'this man is not dead, but he has a wound in his side, \nand is in a fainting-fit.'\n\n'I know him, I know him!' cried Barnaby, clapping his hands.\n\n'Know him?' repeated the locksmith.\n\n'Hush!' said Barnaby, laying his fingers upon his lips.  'He went \nout to-day a wooing.  I wouldn't for a light guinea that he should \nnever go a wooing again, for, if he did, some eyes would grow dim \nthat are now as bright as--see, when I talk of eyes, the stars come \nout!  Whose eyes are they?  If they are angels' eyes, why do they \nlook down here and see good men hurt, and only wink and sparkle all \nthe night?'\n\n'Now Heaven help this silly fellow,' murmured the perplexed \nlocksmith; 'can he know this gentleman?  His mother's house is not \nfar off; I had better see if she can tell me who he is.  Barnaby, \nmy man, help me to put him in the chaise, and we'll ride home \ntogether.'\n\n'I can't touch him!' cried the idiot falling back, and shuddering \nas with a strong spasm; he's bloody!'\n\n'It's in his nature, I know,' muttered the locksmith, 'it's cruel \nto ask him, but I must have help.  Barnaby--good Barnaby--dear \nBarnaby--if you know this gentleman, for the sake of his life and \neverybody's life that loves him, help me to raise him and lay him \ndown.'\n\n'Cover him then, wrap him close--don't let me see it--smell it--\nhear the word.  Don't speak the word--don't!'\n\n'No, no, I'll not.  There, you see he's covered now.  Gently.  Well \ndone, well done!'\n\nThey placed him in the carriage with great ease, for Barnaby was \nstrong and active, but all the time they were so occupied he \nshivered from head to foot, and evidently experienced an ecstasy of \nterror.\n\nThis accomplished, and the wounded man being covered with Varden's \nown greatcoat which he took off for the purpose, they proceeded \nonward at a brisk pace: Barnaby gaily counting the stars upon his \nfingers, and Gabriel inwardly congratulating himself upon having an \nadventure now, which would silence Mrs Varden on the subject of the \nMaypole, for that night, or there was no faith in woman.\n\n\n\nChapter 4\n\n\nIn the venerable suburb--it was a suburb once--of Clerkenwell, \ntowards that part of its confines which is nearest to the Charter \nHouse, and in one of those cool, shady Streets, of which a few, \nwidely scattered and dispersed, yet remain in such old parts of the \nmetropolis,--each tenement quietly vegetating like an ancient \ncitizen who long ago retired from business, and dozing on in its \ninfirmity until in course of time it tumbles down, and is replaced \nby some extravagant young heir, flaunting in stucco and ornamental \nwork, and all the vanities of modern days,--in this quarter, and in \na street of this description, the business of the present chapter \nlies.\n\nAt the time of which it treats, though only six-and-sixty years \nago, a very large part of what is London now had no existence.  \nEven in the brains of the wildest speculators, there had sprung up \nno long rows of streets connecting Highgate with Whitechapel, no \nassemblages of palaces in the swampy levels, nor little cities in \nthe open fields.  Although this part of town was then, as now, \nparcelled out in streets, and plentifully peopled, it wore a \ndifferent aspect.  There were gardens to many of the houses, and \ntrees by the pavement side; with an air of freshness breathing up \nand down, which in these days would be sought in vain.  Fields were \nnigh at hand, through which the New River took its winding course, \nand where there was merry haymaking in the summer time.  Nature was \nnot so far removed, or hard to get at, as in these days; and \nalthough there were busy trades in Clerkenwell, and working \njewellers by scores, it was a purer place, with farm-houses nearer \nto it than many modern Londoners would readily believe, and lovers' \nwalks at no great distance, which turned into squalid courts, long \nbefore the lovers of this age were born, or, as the phrase goes, \nthought of.\n\nIn one of these streets, the cleanest of them all, and on the shady \nside of the way--for good housewives know that sunlight damages \ntheir cherished furniture, and so choose the shade rather than its \nintrusive glare--there stood the house with which we have to deal.  \nIt was a modest building, not very straight, not large, not tall; \nnot bold-faced, with great staring windows, but a shy, blinking \nhouse, with a conical roof going up into a peak over its garret \nwindow of four small panes of glass, like a cocked hat on the head \nof an elderly gentleman with one eye.  It was not built of brick or \nlofty stone, but of wood and plaster; it was not planned with a \ndull and wearisome regard to regularity, for no one window matched \nthe other, or seemed to have the slightest reference to anything \nbesides itself.\n\nThe shop--for it had a shop--was, with reference to the first \nfloor, where shops usually are; and there all resemblance between \nit and any other shop stopped short and ceased.  People who went in \nand out didn't go up a flight of steps to it, or walk easily in \nupon a level with the street, but dived down three steep stairs, \nas into a cellar.  Its floor was paved with stone and brick, as \nthat of any other cellar might be; and in lieu of window framed and \nglazed it had a great black wooden flap or shutter, nearly breast \nhigh from the ground, which turned back in the day-time, admitting \nas much cold air as light, and very often more.  Behind this shop \nwas a wainscoted parlour, looking first into a paved yard, and \nbeyond that again into a little terrace garden, raised some feet \nabove it.  Any stranger would have supposed that this wainscoted \nparlour, saving for the door of communication by which he had \nentered, was cut off and detached from all the world; and indeed \nmost strangers on their first entrance were observed to grow \nextremely thoughtful, as weighing and pondering in their minds \nwhether the upper rooms were only approachable by ladders from \nwithout; never suspecting that two of the most unassuming and \nunlikely doors in existence, which the most ingenious mechanician \non earth must of necessity have supposed to be the doors of \nclosets, opened out of this room--each without the smallest \npreparation, or so much as a quarter of an inch of passage--upon \ntwo dark winding flights of stairs, the one upward, the other \ndownward, which were the sole means of communication between that \nchamber and the other portions of the house.\n\nWith all these oddities, there was not a neater, more scrupulously \ntidy, or more punctiliously ordered house, in Clerkenwell, in \nLondon, in all England.  There were not cleaner windows, or whiter \nfloors, or brighter Stoves, or more highly shining articles of \nfurniture in old mahogany; there was not more rubbing, scrubbing, \nburnishing and polishing, in the whole street put together.  Nor \nwas this excellence attained without some cost and trouble and \ngreat expenditure of voice, as the neighbours were frequently \nreminded when the good lady of the house overlooked and assisted in \nits being put to rights on cleaning days--which were usually from \nMonday morning till Saturday night, both days inclusive.\n\nLeaning against the door-post of this, his dwelling, the locksmith \nstood early on the morning after he had met with the wounded man, \ngazing disconsolately at a great wooden emblem of a key, painted in \nvivid yellow to resemble gold, which dangled from the house-front, \nand swung to and fro with a mournful creaking noise, as if \ncomplaining that it had nothing to unlock.  Sometimes, he looked \nover his shoulder into the shop, which was so dark and dingy with \nnumerous tokens of his trade, and so blackened by the smoke of a \nlittle forge, near which his 'prentice was at work, that it would \nhave been difficult for one unused to such espials to have \ndistinguished anything but various tools of uncouth make and shape, \ngreat bunches of rusty keys, fragments of iron, half-finished \nlocks, and such like things, which garnished the walls and hung in \nclusters from the ceiling.\n\nAfter a long and patient contemplation of the golden key, and many \nsuch backward glances, Gabriel stepped into the road, and stole a \nlook at the upper windows.  One of them chanced to be thrown open \nat the moment, and a roguish face met his; a face lighted up by the \nloveliest pair of sparkling eyes that ever locksmith looked upon; \nthe face of a pretty, laughing, girl; dimpled and fresh, and \nhealthful--the very impersonation of good-humour and blooming \nbeauty.\n\n'Hush!' she whispered, bending forward and pointing archly to the \nwindow underneath.  'Mother is still asleep.'\n\n'Still, my dear,' returned the locksmith in the same tone.  'You \ntalk as if she had been asleep all night, instead of little more \nthan half an hour.  But I'm very thankful.  Sleep's a blessing--no \ndoubt about it.'  The last few words he muttered to himself.\n\n'How cruel of you to keep us up so late this morning, and never \ntell us where you were, or send us word!' said the girl.\n\n'Ah Dolly, Dolly!' returned the locksmith, shaking his head, and \nsmiling, 'how cruel of you to run upstairs to bed!  Come down to \nbreakfast, madcap, and come down lightly, or you'll wake your \nmother.  She must be tired, I am sure--I am.'\n\nKeeping these latter words to himself, and returning his \ndaughter's nod, he was passing into the workshop, with the smile \nshe had awakened still beaming on his face, when he just caught \nsight of his 'prentice's brown paper cap ducking down to avoid \nobservation, and shrinking from the window back to its former \nplace, which the wearer no sooner reached than he began to hammer \nlustily.\n\n'Listening again, Simon!' said Gabriel to himself.  'That's bad.  \nWhat in the name of wonder does he expect the girl to say, that I \nalways catch him listening when SHE speaks, and never at any other \ntime!  A bad habit, Sim, a sneaking, underhanded way.  Ah! you may \nhammer, but you won't beat that out of me, if you work at it till \nyour time's up!'\n\nSo saying, and shaking his head gravely, he re-entered the \nworkshop, and confronted the subject of these remarks.\n\n'There's enough of that just now,' said the locksmith.  'You \nneedn't make any more of that confounded clatter.  Breakfast's \nready.'\n\n'Sir,' said Sim, looking up with amazing politeness, and a peculiar \nlittle bow cut short off at the neck, 'I shall attend you \nimmediately.'\n\n'I suppose,' muttered Gabriel, 'that's out of the 'Prentice's \nGarland or the 'Prentice's Delight, or the 'Prentice's Warbler, or \nthe Prentice's Guide to the Gallows, or some such improving \ntextbook.  Now he's going to beautify himself--here's a precious \nlocksmith!'\n\nQuite unconscious that his master was looking on from the dark \ncorner by the parlour door, Sim threw off the paper cap, sprang \nfrom his seat, and in two extraordinary steps, something between \nskating and minuet dancing, bounded to a washing place at the other \nend of the shop, and there removed from his face and hands all \ntraces of his previous work--practising the same step all the time \nwith the utmost gravity.  This done, he drew from some concealed \nplace a little scrap of looking-glass, and with its assistance \narranged his hair, and ascertained the exact state of a little \ncarbuncle on his nose.  Having now completed his toilet, he placed \nthe fragment of mirror on a low bench, and looked over his shoulder \nat so much of his legs as could be reflected in that small compass, \nwith the greatest possible complacency and satisfaction.\n\nSim, as he was called in the locksmith's family, or Mr Simon \nTappertit, as he called himself, and required all men to style him \nout of doors, on holidays, and Sundays out,--was an old-fashioned, \nthin-faced, sleek-haired, sharp-nosed, small-eyed little fellow, \nvery little more than five feet high, and thoroughly convinced in \nhis own mind that he was above the middle size; rather tall, in \nfact, than otherwise.  Of his figure, which was well enough formed, \nthough somewhat of the leanest, he entertained the highest \nadmiration; and with his legs, which, in knee-breeches, were \nperfect curiosities of littleness, he was enraptured to a degree \namounting to enthusiasm.  He also had some majestic, shadowy ideas, \nwhich had never been quite fathomed by his intimate friends, \nconcerning the power of his eye.  Indeed he had been known to go so \nfar as to boast that he could utterly quell and subdue the \nhaughtiest beauty by a simple process, which he termed 'eyeing her \nover;' but it must be added, that neither of this faculty, nor of \nthe power he claimed to have, through the same gift, of vanquishing \nand heaving down dumb animals, even in a rabid state, had he ever \nfurnished evidence which could be deemed quite satisfactory and \nconclusive.\n\nIt may be inferred from these premises, that in the small body of \nMr Tappertit there was locked up an ambitious and aspiring soul.  \nAs certain liquors, confined in casks too cramped in their \ndimensions, will ferment, and fret, and chafe in their \nimprisonment, so the spiritual essence or soul of Mr Tappertit \nwould sometimes fume within that precious cask, his body, until, \nwith great foam and froth and splutter, it would force a vent, and \ncarry all before it.  It was his custom to remark, in reference to \nany one of these occasions, that his soul had got into his head; \nand in this novel kind of intoxication many scrapes and mishaps \nbefell him, which he had frequently concealed with no small \ndifficulty from his worthy master.\n\nSim Tappertit, among the other fancies upon which his before-\nmentioned soul was for ever feasting and regaling itself (and which \nfancies, like the liver of Prometheus, grew as they were fed \nupon), had a mighty notion of his order; and had been heard by the \nservant-maid openly expressing his regret that the 'prentices no \nlonger carried clubs wherewith to mace the citizens: that was his \nstrong expression.  He was likewise reported to have said that in \nformer times a stigma had been cast upon the body by the execution \nof George Barnwell, to which they should not have basely \nsubmitted, but should have demanded him of the legislature--\ntemperately at first; then by an appeal to arms, if necessary--to \nbe dealt with as they in their wisdom might think fit.  These \nthoughts always led him to consider what a glorious engine the \n'prentices might yet become if they had but a master spirit at \ntheir head; and then he would darkly, and to the terror of his \nhearers, hint at certain reckless fellows that he knew of, and at a \ncertain Lion Heart ready to become their captain, who, once afoot, \nwould make the Lord Mayor tremble on his throne.\n\nIn respect of dress and personal decoration, Sim Tappertit was no \nless of an adventurous and enterprising character.  He had been \nseen, beyond dispute, to pull off ruffles of the finest quality at \nthe corner of the street on Sunday nights, and to put them \ncarefully in his pocket before returning home; and it was quite \nnotorious that on all great holiday occasions it was his habit to \nexchange his plain steel knee-buckles for a pair of glittering \npaste, under cover of a friendly post, planted most conveniently \nin that same spot.  Add to this that he was in years just twenty, \nin his looks much older, and in conceit at least two hundred; that \nhe had no objection to be jested with, touching his admiration of \nhis master's daughter; and had even, when called upon at a certain \nobscure tavern to pledge the lady whom he honoured with his love, \ntoasted, with many winks and leers, a fair creature whose Christian \nname, he said, began with a D--;--and as much is known of Sim \nTappertit, who has by this time followed the locksmith in to \nbreakfast, as is necessary to be known in making his acquaintance.\n\nIt was a substantial meal; for, over and above the ordinary tea \nequipage, the board creaked beneath the weight of a jolly round of \nbeef, a ham of the first magnitude, and sundry towers of buttered \nYorkshire cake, piled slice upon slice in most alluring order.  \nThere was also a goodly jug of well-browned clay, fashioned into \nthe form of an old gentleman, not by any means unlike the \nlocksmith, atop of whose bald head was a fine white froth answering \nto his wig, indicative, beyond dispute, of sparkling home-brewed \nale.  But, better far than fair home-brewed, or Yorkshire cake, or \nham, or beef, or anything to eat or drink that earth or air or \nwater can supply, there sat, presiding over all, the locksmith's \nrosy daughter, before whose dark eyes even beef grew insignificant, \nand malt became as nothing.\n\nFathers should never kiss their daughters when young men are by.  \nIt's too much.  There are bounds to human endurance.  So thought \nSim Tappertit when Gabriel drew those rosy lips to his--those lips \nwithin Sim's reach from day to day, and yet so far off.  He had a \nrespect for his master, but he wished the Yorkshire cake might \nchoke him.\n\n'Father,' said the locksmith's daughter, when this salute was over, \nand they took their seats at table, 'what is this I hear about last \nnight?'\n\n'All true, my dear; true as the Gospel, Doll.'\n\n'Young Mr Chester robbed, and lying wounded in the road, when you \ncame up!'\n\n'Ay--Mr Edward.  And beside him, Barnaby, calling for help with all \nhis might.  It was well it happened as it did; for the road's a \nlonely one, the hour was late, and, the night being cold, and poor \nBarnaby even less sensible than usual from surprise and fright, the \nyoung gentleman might have met his death in a very short time.'\n\n'I dread to think of it!' cried his daughter with a shudder.  'How \ndid you know him?'\n\n'Know him!' returned the locksmith.  'I didn't know him--how could \nI?  I had never seen him, often as I had heard and spoken of him.  \nI took him to Mrs Rudge's; and she no sooner saw him than the truth \ncame out.'\n\n'Miss Emma, father--If this news should reach her, enlarged upon as \nit is sure to be, she will go distracted.'\n\n'Why, lookye there again, how a man suffers for being good-\nnatured,' said the locksmith.  'Miss Emma was with her uncle at the \nmasquerade at Carlisle House, where she had gone, as the people at \nthe Warren told me, sorely against her will.  What does your \nblockhead father when he and Mrs Rudge have laid their heads \ntogether, but goes there when he ought to be abed, makes interest \nwith his friend the doorkeeper, slips him on a mask and domino, \nand mixes with the masquers.'\n\n'And like himself to do so!' cried the girl, putting her fair arm \nround his neck, and giving him a most enthusiastic kiss.\n\n'Like himself!' repeated Gabriel, affecting to grumble, but \nevidently delighted with the part he had taken, and with her \npraise.  'Very like himself--so your mother said.  However, he \nmingled with the crowd, and prettily worried and badgered he was, I \nwarrant you, with people squeaking, \"Don't you know me?\" and \"I've \nfound you out,\" and all that kind of nonsense in his ears.  He \nmight have wandered on till now, but in a little room there was a \nyoung lady who had taken off her mask, on account of the place \nbeing very warm, and was sitting there alone.'\n\n'And that was she?' said his daughter hastily.\n\n'And that was she,' replied the locksmith; 'and I no sooner \nwhispered to her what the matter was--as softly, Doll, and with \nnearly as much art as you could have used yourself--than she gives \na kind of scream and faints away.'\n\n'What did you do--what happened next?' asked his daughter.  'Why, \nthe masks came flocking round, with a general noise and hubbub, and \nI thought myself in luck to get clear off, that's all,' rejoined \nthe locksmith.  'What happened when I reached home you may guess, \nif you didn't hear it.  Ah!  Well, it's a poor heart that never \nrejoices.--Put Toby this way, my dear.'\n\nThis Toby was the brown jug of which previous mention has been \nmade.  Applying his lips to the worthy old gentleman's benevolent \nforehead, the locksmith, who had all this time been ravaging among \nthe eatables, kept them there so long, at the same time raising the \nvessel slowly in the air, that at length Toby stood on his head \nupon his nose, when he smacked his lips, and set him on the table \nagain with fond reluctance.\n\nAlthough Sim Tappertit had taken no share in this conversation, no \npart of it being addressed to him, he had not been wanting in such \nsilent manifestations of astonishment, as he deemed most compatible \nwith the favourable display of his eyes.  Regarding the pause which \nnow ensued, as a particularly advantageous opportunity for doing \ngreat execution with them upon the locksmith's daughter (who he had \nno doubt was looking at him in mute admiration), he began to screw \nand twist his face, and especially those features, into such \nextraordinary, hideous, and unparalleled contortions, that Gabriel, \nwho happened to look towards him, was stricken with amazement.\n\n'Why, what the devil's the matter with the lad?' cried the \nlocksmith.  'Is he choking?'\n\n'Who?' demanded Sim, with some disdain.\n\n'Who?  Why, you,' returned his master.  'What do you mean by making \nthose horrible faces over your breakfast?'\n\n'Faces are matters of taste, sir,' said Mr Tappertit, rather \ndiscomfited; not the less so because he saw the locksmith's \ndaughter smiling.\n\n'Sim,' rejoined Gabriel, laughing heartily.  'Don't be a fool, for \nI'd rather see you in your senses.  These young fellows,' he added, \nturning to his daughter, 'are always committing some folly or \nanother.  There was a quarrel between Joe Willet and old John last \nnight though I can't say Joe was much in fault either.  He'll be \nmissing one of these mornings, and will have gone away upon some \nwild-goose errand, seeking his fortune.--Why, what's the matter, \nDoll?  YOU are making faces now.  The girls are as bad as the boys \nevery bit!'\n\n'It's the tea,' said Dolly, turning alternately very red and very \nwhite, which is no doubt the effect of a slight scald--'so very hot.'\n\nMr Tappertit looked immensely big at a quartern loaf on the table, \nand breathed hard.\n\n'Is that all?' returned the locksmith.  'Put some more milk in it.--\nYes, I am sorry for Joe, because he is a likely young fellow, and \ngains upon one every time one sees him.  But he'll start off, \nyou'll find.  Indeed he told me as much himself!'\n\n'Indeed!' cried Dolly in a faint voice.  'In-deed!'\n\n'Is the tea tickling your throat still, my dear?' said the \nlocksmith.\n\nBut, before his daughter could make him any answer, she was taken \nwith a troublesome cough, and it was such a very unpleasant cough, \nthat, when she left off, the tears were starting in her bright \neyes.  The good-natured locksmith was still patting her on the back \nand applying such gentle restoratives, when a message arrived from \nMrs Varden, making known to all whom it might concern, that she \nfelt too much indisposed to rise after her great agitation and \nanxiety of the previous night; and therefore desired to be \nimmediately accommodated with the little black teapot of strong \nmixed tea, a couple of rounds of buttered toast, a middling-sized \ndish of beef and ham cut thin, and the Protestant Manual in two \nvolumes post octavo.  Like some other ladies who in remote ages \nflourished upon this globe, Mrs Varden was most devout when most \nill-tempered.  Whenever she and her husband were at unusual \nvariance, then the Protestant Manual was in high feather.\n\nKnowing from experience what these requests portended, the \ntriumvirate broke up; Dolly, to see the orders executed with all \ndespatch; Gabriel, to some out-of-door work in his little chaise; \nand Sim, to his daily duty in the workshop, to which retreat he \ncarried the big look, although the loaf remained behind.\n\nIndeed the big look increased immensely, and when he had tied his \napron on, became quite gigantic.  It was not until he had several \ntimes walked up and down with folded arms, and the longest strides \nbe could take, and had kicked a great many small articles out of \nhis way, that his lip began to curl.  At length, a gloomy derision \ncame upon his features, and he smiled; uttering meanwhile with \nsupreme contempt the monosyllable 'Joe!'\n\n'I eyed her over, while he talked about the fellow,' he said, 'and \nthat was of course the reason of her being confused.  Joe!'\n\nHe walked up and down again much quicker than before, and if \npossible with longer strides; sometimes stopping to take a glance \nat his legs, and sometimes to jerk out, and cast from him, another \n'Joe!'  In the course of a quarter of an hour or so he again \nassumed the paper cap and tried to work.  No.  It could not be \ndone.\n\n'I'll do nothing to-day,' said Mr Tappertit, dashing it down again, \n'but grind.  I'll grind up all the tools.  Grinding will suit my \npresent humour well.  Joe!'\n\nWhirr-r-r-r.  The grindstone was soon in motion; the sparks were \nflying off in showers.  This was the occupation for his heated \nspirit.\n\nWhirr-r-r-r-r-r-r.\n\n'Something will come of this!' said Mr Tappertit, pausing as if in \ntriumph, and wiping his heated face upon his sleeve.  'Something \nwill come of this.  I hope it mayn't be human gore!'\n\nWhirr-r-r-r-r-r-r-r.\n\n\n\nChapter 5\n\n\nAs soon as the business of the day was over, the locksmith sallied \nforth, alone, to visit the wounded gentleman and ascertain the \nprogress of his recovery.  The house where he had left him was in a \nby-street in Southwark, not far from London Bridge; and thither he \nhied with all speed, bent upon returning with as little delay as \nmight be, and getting to bed betimes.\n\nThe evening was boisterous--scarcely better than the previous night \nhad been.  It was not easy for a stout man like Gabriel to keep his \nlegs at the street corners, or to make head against the high wind, \nwhich often fairly got the better of him, and drove him back some \npaces, or, in defiance of all his energy, forced him to take \nshelter in an arch or doorway until the fury of the gust was spent.  \nOccasionally a hat or wig, or both, came spinning and trundling \npast him, like a mad thing; while the more serious spectacle of \nfalling tiles and slates, or of masses of brick and mortar or \nfragments of stone-coping rattling upon the pavement near at hand, \nand splitting into fragments, did not increase the pleasure of the \njourney, or make the way less dreary.\n\n'A trying night for a man like me to walk in!' said the locksmith, \nas he knocked softly at the widow's door.  'I'd rather be in old \nJohn's chimney-corner, faith!'\n\n'Who's there?' demanded a woman's voice from within.  Being \nanswered, it added a hasty word of welcome, and the door was \nquickly opened.\n\nShe was about forty--perhaps two or three years older--with a \ncheerful aspect, and a face that had once been pretty.  It bore \ntraces of affliction and care, but they were of an old date, and \nTime had smoothed them.  Any one who had bestowed but a casual \nglance on Barnaby might have known that this was his mother, from \nthe strong resemblance between them; but where in his face there \nwas wildness and vacancy, in hers there was the patient composure \nof long effort and quiet resignation.\n\nOne thing about this face was very strange and startling.  You \ncould not look upon it in its most cheerful mood without feeling \nthat it had some extraordinary capacity of expressing terror.  It \nwas not on the surface.  It was in no one feature that it lingered.  \nYou could not take the eyes or mouth, or lines upon the cheek, and \nsay, if this or that were otherwise, it would not be so.  Yet there \nit always lurked--something for ever dimly seen, but ever there, \nand never absent for a moment.  It was the faintest, palest shadow \nof some look, to which an instant of intense and most unutterable \nhorror only could have given birth; but indistinct and feeble as it \nwas, it did suggest what that look must have been, and fixed it in \nthe mind as if it had had existence in a dream.\n\nMore faintly imaged, and wanting force and purpose, as it were, \nbecause of his darkened intellect, there was this same stamp upon \nthe son.  Seen in a picture, it must have had some legend with it, \nand would have haunted those who looked upon the canvas.  They who \nknew the Maypole story, and could remember what the widow was, \nbefore her husband's and his master's murder, understood it well.  \nThey recollected how the change had come, and could call to mind \nthat when her son was born, upon the very day the deed was known, \nhe bore upon his wrist what seemed a smear of blood but half washed \nout.\n\n'God save you, neighbour!' said the locksmith, as he followed her, \nwith the air of an old friend, into a little parlour where a \ncheerful fire was burning.\n\n'And you,' she answered smiling.  'Your kind heart has brought you \nhere again.  Nothing will keep you at home, I know of old, if there \nare friends to serve or comfort, out of doors.'\n\n'Tut, tut,' returned the locksmith, rubbing his hands and warming \nthem.  'You women are such talkers.  What of the patient, \nneighbour?'\n\n'He is sleeping now.  He was very restless towards daylight, and \nfor some hours tossed and tumbled sadly.  But the fever has left \nhim, and the doctor says he will soon mend.  He must not be removed \nuntil to-morrow.'\n\n'He has had visitors to-day--humph?' said Gabriel, slyly.\n\n'Yes.  Old Mr Chester has been here ever since we sent for him, and \nhad not been gone many minutes when you knocked.'\n\n'No ladies?' said Gabriel, elevating his eyebrows and looking \ndisappointed.\n\n'A letter,' replied the widow.\n\n'Come.  That's better than nothing!' replied the locksmith.  'Who \nwas the bearer?'\n\n'Barnaby, of course.'\n\n'Barnaby's a jewel!' said Varden; 'and comes and goes with ease \nwhere we who think ourselves much wiser would make but a poor hand \nof it.  He is not out wandering, again, I hope?'\n\n'Thank Heaven he is in his bed; having been up all night, as you \nknow, and on his feet all day.  He was quite tired out.  Ah, \nneighbour, if I could but see him oftener so--if I could but tame \ndown that terrible restlessness--'\n\n'In good time,' said the locksmith, kindly, 'in good time--don't be \ndown-hearted.  To my mind he grows wiser every day.'\n\nThe widow shook her head.  And yet, though she knew the locksmith \nsought to cheer her, and spoke from no conviction of his own, she \nwas glad to hear even this praise of her poor benighted son.\n\n'He will be a 'cute man yet,' resumed the locksmith.  'Take care, \nwhen we are growing old and foolish, Barnaby doesn't put us to the \nblush, that's all.  But our other friend,' he added, looking under \nthe table and about the floor--'sharpest and cunningest of all the \nsharp and cunning ones--where's he?'\n\n'In Barnaby's room,' rejoined the widow, with a faint smile.\n\n'Ah!  He's a knowing blade!' said Varden, shaking his head.  'I \nshould be sorry to talk secrets before him.  Oh!  He's a deep \ncustomer.  I've no doubt he can read, and write, and cast accounts \nif he chooses.  What was that?  Him tapping at the door?'\n\n'No,' returned the widow.  'It was in the street, I think.  Hark!  \nYes.  There again!  'Tis some one knocking softly at the shutter.  \nWho can it be!'\n\nThey had been speaking in a low tone, for the invalid lay overhead, \nand the walls and ceilings being thin and poorly built, the sound \nof their voices might otherwise have disturbed his slumber.  The \nparty without, whoever it was, could have stood close to the \nshutter without hearing anything spoken; and, seeing the light \nthrough the chinks and finding all so quiet, might have been \npersuaded that only one person was there.\n\n'Some thief or ruffian maybe,' said the locksmith.  'Give me the \nlight.'\n\n'No, no,' she returned hastily.  'Such visitors have never come to \nthis poor dwelling.  Do you stay here.  You're within call, at the \nworst.  I would rather go myself--alone.'\n\n'Why?' said the locksmith, unwillingly relinquishing the candle he \nhad caught up from the table.\n\n'Because--I don't know why--because the wish is so strong upon me,' \nshe rejoined.  'There again--do not detain me, I beg of you!'\n\nGabriel looked at her, in great surprise to see one who was usually \nso mild and quiet thus agitated, and with so little cause.  She \nleft the room and closed the door behind her.  She stood for a \nmoment as if hesitating, with her hand upon the lock.  In this \nshort interval the knocking came again, and a voice close to the \nwindow--a voice the locksmith seemed to recollect, and to have some \ndisagreeable association with--whispered 'Make haste.'\n\nThe words were uttered in that low distinct voice which finds its \nway so readily to sleepers' ears, and wakes them in a fright.  For \na moment it startled even the locksmith; who involuntarily drew \nback from the window, and listened.\n\nThe wind rumbling in the chimney made it difficult to hear what \npassed, but he could tell that the door was opened, that there was \nthe tread of a man upon the creaking boards, and then a moment's \nsilence--broken by a suppressed something which was not a shriek, \nor groan, or cry for help, and yet might have been either or all \nthree; and the words 'My God!' uttered in a voice it chilled him to \nhear.\n\nHe rushed out upon the instant.  There, at last, was that dreadful \nlook--the very one he seemed to know so well and yet had never seen \nbefore--upon her face.  There she stood, frozen to the ground, \ngazing with starting eyes, and livid cheeks, and every feature \nfixed and ghastly, upon the man he had encountered in the dark last \nnight.  His eyes met those of the locksmith.  It was but a flash, \nan instant, a breath upon a polished glass, and he was gone.\n\nThe locksmith was upon him--had the skirts of his streaming garment \nalmost in his grasp--when his arms were tightly clutched, and the \nwidow flung herself upon the ground before him.\n\n'The other way--the other way,' she cried.  'He went the other way.  \nTurn--turn!'\n\n'The other way!  I see him now,' rejoined the locksmith, pointing--\n'yonder--there--there is his shadow passing by that light.  What--\nwho is this?  Let me go.'\n\n'Come back, come back!' exclaimed the woman, clasping him; 'Do not \ntouch him on your life.  I charge you, come back.  He carries other \nlives besides his own.  Come back!'\n\n'What does this mean?' cried the locksmith.\n\n'No matter what it means, don't ask, don't speak, don't think about \nit.  He is not to be followed, checked, or stopped.  Come back!'\n\nThe old man looked at her in wonder, as she writhed and clung about \nhim; and, borne down by her passion, suffered her to drag him into \nthe house.  It was not until she had chained and double-locked the \ndoor, fastened every bolt and bar with the heat and fury of a \nmaniac, and drawn him back into the room, that she turned upon him, \nonce again, that stony look of horror, and, sinking down into a \nchair, covered her face, and shuddered, as though the hand of death \nwere on her.\n\n\n\nChapter 6\n\n\nBeyond all measure astonished by the strange occurrences which had \npassed with so much violence and rapidity, the locksmith gazed upon \nthe shuddering figure in the chair like one half stupefied, and \nwould have gazed much longer, had not his tongue been loosened by \ncompassion and humanity.\n\n'You are ill,' said Gabriel.  'Let me call some neighbour in.'\n\n'Not for the world,' she rejoined, motioning to him with her \ntrembling hand, and holding her face averted.  'It is enough that \nyou have been by, to see this.'\n\n'Nay, more than enough--or less,' said Gabriel.\n\n'Be it so,' she returned.  'As you like.  Ask me no questions, I \nentreat you.'\n\n'Neighbour,' said the locksmith, after a pause.  'Is this fair, or \nreasonable, or just to yourself?  Is it like you, who have known me \nso long and sought my advice in all matters--like you, who from a \ngirl have had a strong mind and a staunch heart?'\n\n'I have need of them,' she replied.  'I am growing old, both in \nyears and care.  Perhaps that, and too much trial, have made them \nweaker than they used to be.  Do not speak to me.'\n\n'How can I see what I have seen, and hold my peace!' returned the \nlocksmith.  'Who was that man, and why has his coming made this \nchange in you?'\n\nShe was silent, but held to the chair as though to save herself \nfrom falling on the ground.\n\n'I take the licence of an old acquaintance, Mary,' said the \nlocksmith, 'who has ever had a warm regard for you, and maybe has \ntried to prove it when he could.  Who is this ill-favoured man, and \nwhat has he to do with you?  Who is this ghost, that is only seen \nin the black nights and bad weather?  How does he know, and why \ndoes he haunt, this house, whispering through chinks and crevices, \nas if there was that between him and you, which neither durst so \nmuch as speak aloud of?  Who is he?'\n\n'You do well to say he haunts this house,' returned the widow, \nfaintly.  'His shadow has been upon it and me, in light and \ndarkness, at noonday and midnight.  And now, at last, he has come \nin the body!'\n\n'But he wouldn't have gone in the body,' returned the locksmith \nwith some irritation, 'if you had left my arms and legs at liberty.  \nWhat riddle is this?'\n\n'It is one,' she answered, rising as she spoke, 'that must remain \nfor ever as it is.  I dare not say more than that.'\n\n'Dare not!' repeated the wondering locksmith.\n\n'Do not press me,' she replied.  'I am sick and faint, and every \nfaculty of life seems dead within me.--No!--Do not touch me, \neither.'\n\nGabriel, who had stepped forward to render her assistance, fell \nback as she made this hasty exclamation, and regarded her in silent \nwonder.\n\n'Let me go my way alone,' she said in a low voice, 'and let the \nhands of no honest man touch mine to-night.'  When she had \ntottered to the door, she turned, and added with a stronger effort, \n'This is a secret, which, of necessity, I trust to you.  You are a \ntrue man.  As you have ever been good and kind to me,--keep it.  If \nany noise was heard above, make some excuse--say anything but what \nyou really saw, and never let a word or look between us, recall \nthis circumstance.  I trust to you.  Mind, I trust to you.  How \nmuch I trust, you never can conceive.'\n\nCasting her eyes upon him for an instant, she withdrew, and left \nhim there alone.\n\nGabriel, not knowing what to think, stood staring at the door with \na countenance full of surprise and dismay.  The more he pondered on \nwhat had passed, the less able he was to give it any favourable \ninterpretation.  To find this widow woman, whose life for so many \nyears had been supposed to be one of solitude and retirement, and \nwho, in her quiet suffering character, had gained the good opinion \nand respect of all who knew her--to find her linked mysteriously \nwith an ill-omened man, alarmed at his appearance, and yet \nfavouring his escape, was a discovery that pained as much as \nstartled him.  Her reliance on his secrecy, and his tacit \nacquiescence, increased his distress of mind.  If he had spoken \nboldly, persisted in questioning her, detained her when she rose to \nleave the room, made any kind of protest, instead of silently \ncompromising himself, as he felt he had done, he would have been \nmore at ease.\n\n'Why did I let her say it was a secret, and she trusted it to me!' \nsaid Gabriel, putting his wig on one side to scratch his head with \ngreater ease, and looking ruefully at the fire.  'I have no more \nreadiness than old John himself.  Why didn't I say firmly, \"You \nhave no right to such secrets, and I demand of you to tell me what \nthis means,\" instead of standing gaping at her, like an old moon-\ncalf as I am!  But there's my weakness.  I can be obstinate enough \nwith men if need be, but women may twist me round their fingers at \ntheir pleasure.'\n\nHe took his wig off outright as he made this reflection, and, \nwarming his handkerchief at the fire began to rub and polish his \nbald head with it, until it glistened again.\n\n'And yet,' said the locksmith, softening under this soothing \nprocess, and stopping to smile, 'it MAY be nothing.  Any drunken \nbrawler trying to make his way into the house, would have alarmed a \nquiet soul like her.  But then'--and here was the vexation--'how \ncame it to be that man; how comes he to have this influence over \nher; how came she to favour his getting away from me; and, more \nthan all, how came she not to say it was a sudden fright, and \nnothing more?  It's a sad thing to have, in one minute, reason to \nmistrust a person I have known so long, and an old sweetheart into \nthe bargain; but what else can I do, with all this upon my mind!--\nIs that Barnaby outside there?'\n\n'Ay!' he cried, looking in and nodding.  'Sure enough it's \nBarnaby--how did you guess?'\n\n'By your shadow,' said the locksmith.\n\n'Oho!' cried Barnaby, glancing over his shoulder, 'He's a merry \nfellow, that shadow, and keeps close to me, though I AM silly.  We \nhave such pranks, such walks, such runs, such gambols on the grass!  \nSometimes he'll be half as tall as a church steeple, and sometimes \nno bigger than a dwarf.  Now, he goes on before, and now behind, \nand anon he'll be stealing on, on this side, or on that, stopping \nwhenever I stop, and thinking I can't see him, though I have my eye \non him sharp enough.  Oh! he's a merry fellow.  Tell me--is he \nsilly too?  I think he is.'\n\n'Why?' asked Gabriel.\n\n'Because be never tires of mocking me, but does it all day long.--\nWhy don't you come?'\n\n'Where?'\n\n'Upstairs.  He wants you.  Stay--where's HIS shadow?  Come.  You're \na wise man; tell me that.'\n\n'Beside him, Barnaby; beside him, I suppose,' returned the locksmith.\n\n'No!' he replied, shaking his head.  'Guess again.'\n\n'Gone out a walking, maybe?'\n\n'He has changed shadows with a woman,' the idiot whispered in his \near, and then fell back with a look of triumph.  'Her shadow's \nalways with him, and his with her.  That's sport I think, eh?'\n\n'Barnaby,' said the locksmith, with a grave look; 'come hither, \nlad.'\n\n'I know what you want to say.  I know!' he replied, keeping away \nfrom him.  'But I'm cunning, I'm silent.  I only say so much to \nyou--are you ready?'  As he spoke, he caught up the light, and \nwaved it with a wild laugh above his head.\n\n'Softly--gently,' said the locksmith, exerting all his influence to \nkeep him calm and quiet.  'I thought you had been asleep.'\n\n'So I HAVE been asleep,' he rejoined, with widely-opened eyes.  \n'There have been great faces coming and going--close to my face, \nand then a mile away--low places to creep through, whether I would \nor no--high churches to fall down from--strange creatures crowded \nup together neck and heels, to sit upon the bed--that's sleep, eh?'\n\n'Dreams, Barnaby, dreams,' said the locksmith.\n\n'Dreams!' he echoed softly, drawing closer to him.  'Those are not \ndreams.'\n\n'What are,' replied the locksmith, 'if they are not?'\n\n'I dreamed,' said Barnaby, passing his arm through Varden's, and \npeering close into his face as he answered in a whisper, 'I dreamed \njust now that something--it was in the shape of a man--followed me--\ncame softly after me--wouldn't let me be--but was always hiding \nand crouching, like a cat in dark corners, waiting till I should \npass; when it crept out and came softly after me.--Did you ever see \nme run?'\n\n'Many a time, you know.'\n\n'You never saw me run as I did in this dream.  Still it came \ncreeping on to worry me.  Nearer, nearer, nearer--I ran faster--\nleaped--sprung out of bed, and to the window--and there, in the \nstreet below--but he is waiting for us.  Are you coming?'\n\n'What in the street below, Barnaby?' said Varden, imagining that he \ntraced some connection between this vision and what had actually \noccurred.\n\nBarnaby looked into his face, muttered incoherently, waved the \nlight above his head again, laughed, and drawing the locksmith's \narm more tightly through his own, led him up the stairs in silence.\n\nThey entered a homely bedchamber, garnished in a scanty way with \nchairs, whose spindle-shanks bespoke their age, and other furniture \nof very little worth; but clean and neatly kept.  Reclining in an \neasy-chair before the fire, pale and weak from waste of blood, was \nEdward Chester, the young gentleman who had been the first to quit \nthe Maypole on the previous night, and who, extending his hand to \nthe locksmith, welcomed him as his preserver and friend.\n\n'Say no more, sir, say no more,' said Gabriel.  'I hope I would \nhave done at least as much for any man in such a strait, and most \nof all for you, sir.  A certain young lady,' he added, with some \nhesitation, 'has done us many a kind turn, and we naturally feel--I \nhope I give you no offence in saying this, sir?'\n\nThe young man smiled and shook his head; at the same time moving in \nhis chair as if in pain.\n\n'It's no great matter,' he said, in answer to the locksmith's \nsympathising look, 'a mere uneasiness arising at least as much from \nbeing cooped up here, as from the slight wound I have, or from the \nloss of blood.  Be seated, Mr Varden.'\n\n'If I may make so bold, Mr Edward, as to lean upon your chair,' \nreturned the locksmith, accommodating his action to his speech, and \nbending over him, 'I'll stand here for the convenience of speaking \nlow.  Barnaby is not in his quietest humour to-night, and at such \ntimes talking never does him good.'\n\nThey both glanced at the subject of this remark, who had taken a \nseat on the other side of the fire, and, smiling vacantly, was \nmaking puzzles on his fingers with a skein of string.\n\n'Pray, tell me, sir,' said Varden, dropping his voice still lower, \n'exactly what happened last night.  I have my reason for inquiring.  \nYou left the Maypole, alone?'\n\n'And walked homeward alone, until I had nearly reached the place \nwhere you found me, when I heard the gallop of a horse.'\n\n'Behind you?' said the locksmith.\n\n'Indeed, yes--behind me.  It was a single rider, who soon overtook \nme, and checking his horse, inquired the way to London.'\n\n'You were on the alert, sir, knowing how many highwaymen there are, \nscouring the roads in all directions?' said Varden.\n\n'I was, but I had only a stick, having imprudently left my pistols \nin their holster-case with the landlord's son.  I directed him as \nhe desired.  Before the words had passed my lips, he rode upon me \nfuriously, as if bent on trampling me down beneath his horse's \nhoofs.  In starting aside, I slipped and fell.  You found me with \nthis stab and an ugly bruise or two, and without my purse--in which \nhe found little enough for his pains.  And now, Mr Varden,' he \nadded, shaking the locksmith by the hand, 'saving the extent of my \ngratitude to you, you know as much as I.'\n\n'Except,' said Gabriel, bending down yet more, and looking \ncautiously towards their silent neighhour, 'except in respect of \nthe robber himself.  What like was he, sir?  Speak low, if you \nplease.  Barnaby means no harm, but I have watched him oftener than \nyou, and I know, little as you would think it, that he's listening \nnow.'\n\nIt required a strong confidence in the locksmith's veracity to \nlead any one to this belief, for every sense and faculty that \nBarnahy possessed, seemed to be fixed upon his game, to the \nexclusion of all other things.  Something in the young man's face \nexpressed this opinion, for Gabriel repeated what he had just said, \nmore earnestly than before, and with another glance towards \nBarnaby, again asked what like the man was.\n\n'The night was so dark,' said Edward, 'the attack so sudden, and \nhe so wrapped and muffled up, that I can hardly say.  It seems \nthat--'\n\n'Don't mention his name, sir,' returned the locksmith, following \nhis look towards Barnaby; 'I know HE saw him.  I want to know what \nYOU saw.'\n\n'All I remember is,' said Edward, 'that as he checked his horse his \nhat was blown off.  He caught it, and replaced it on his head, \nwhich I observed was bound with a dark handkerchief.  A stranger \nentered the Maypole while I was there, whom I had not seen--for I \nhad sat apart for reasons of my own--and when I rose to leave the \nroom and glanced round, he was in the shadow of the chimney and \nhidden from my sight.  But, if he and the robber were two different \npersons, their voices were strangely and most remarkably alike; for \ndirectly the man addressed me in the road, I recognised his speech \nagain.'\n\n'It is as I feared.  The very man was here to-night,' thought the \nlocksmith, changing colour.  'What dark history is this!'\n\n'Halloa!' cried a hoarse voice in his ear.  'Halloa, halloa, \nhalloa!  Bow wow wow.  What's the matter here!  Hal-loa!'\n\nThe speaker--who made the locksmith start as if he had been some \nsupernatural agent--was a large raven, who had perched upon the top \nof the easy-chair, unseen by him and Edward, and listened with a \npolite attention and a most extraordinary appearance of \ncomprehending every word, to all they had said up to this point; \nturning his head from one to the other, as if his office were to \njudge between them, and it were of the very last importance that he \nshould not lose a word.\n\n'Look at him!' said Varden, divided between admiration of the bird \nand a kind of fear of him.  'Was there ever such a knowing imp as \nthat!  Oh he's a dreadful fellow!'\n\nThe raven, with his head very much on one side, and his bright eye \nshining like a diamond, preserved a thoughtful silence for a few \nseconds, and then replied in a voice so hoarse and distant, that it \nseemed to come through his thick feathers rather than out of his \nmouth.\n\n'Halloa, halloa, halloa!  What's the matter here!  Keep up your \nspirits.  Never say die.  Bow wow wow.  I'm a devil, I'm a devil, \nI'm a devil.  Hurrah!'--And then, as if exulting in his infernal \ncharacter, he began to whistle.\n\n'I more than half believe he speaks the truth.  Upon my word I do,' \nsaid Varden.  'Do you see how he looks at me, as if he knew what I \nwas saying?'\n\nTo which the bird, balancing himself on tiptoe, as it were, and \nmoving his body up and down in a sort of grave dance, rejoined, \n'I'm a devil, I'm a devil, I'm a devil,' and flapped his wings \nagainst his sides as if he were bursting with laughter.  Barnaby \nclapped his hands, and fairly rolled upon the ground in an ecstasy \nof delight.\n\n'Strange companions, sir,' said the locksmith, shaking his head, \nand looking from one to the other.  'The bird has all the wit.'\n\n'Strange indeed!' said Edward, holding out his forefinger to the \nraven, who, in acknowledgment of the attention, made a dive at it \nimmediately with his iron bill.  'Is he old?'\n\n'A mere boy, sir,' replied the locksmith.  'A hundred and twenty, \nor thereabouts.  Call him down, Barnaby, my man.'\n\n'Call him!' echoed Barnaby, sitting upright upon the floor, and \nstaring vacantly at Gabriel, as he thrust his hair back from his \nface.  'But who can make him come!  He calls me, and makes me go \nwhere he will.  He goes on before, and I follow.  He's the master, \nand I'm the man.  Is that the truth, Grip?'\n\nThe raven gave a short, comfortable, confidential kind of croak;--a \nmost expressive croak, which seemed to say, 'You needn't let these \nfellows into our secrets.  We understand each other.  It's all \nright.'\n\n'I make HIM come?' cried Barnaby, pointing to the bird.  'Him, who \nnever goes to sleep, or so much as winks!--Why, any time of night, \nyou may see his eyes in my dark room, shining like two sparks.  And \nevery night, and all night too, he's broad awake, talking to \nhimself, thinking what he shall do to-morrow, where we shall go, \nand what he shall steal, and hide, and bury.  I make HIM come!  \nHa ha ha!'\n\nOn second thoughts, the bird appeared disposed to come of himself.  \nAfter a short survey of the ground, and a few sidelong looks at the \nceiling and at everybody present in turn, he fluttered to the \nfloor, and went to Barnaby--not in a hop, or walk, or run, but in a \npace like that of a very particular gentleman with exceedingly \ntight boots on, trying to walk fast over loose pebbles.  Then, \nstepping into his extended hand, and condescending to be held out \nat arm's length, he gave vent to a succession of sounds, not unlike \nthe drawing of some eight or ten dozen of long corks, and again \nasserted his brimstone birth and parentage with great distinctness.\n\nThe locksmith shook his head--perhaps in some doubt of the \ncreature's being really nothing but a bird--perhaps in pity for \nBamaby, who by this time had him in his arms, and was rolling \nabout, with him, on the ground.  As he raised his eyes from the \npoor fellow he encountered those of his mother, who had entered the \nroom, and was looking on in silence.\n\nShe was quite white in the face, even to her lips, but had wholly \nsubdued her emotion, and wore her usual quiet look.  Varden fancied \nas he glanced at her that she shrunk from his eye; and that she \nbusied herself about the wounded gentleman to avoid him the better.\n\nIt was time he went to bed, she said.  He was to be removed to his \nown home on the morrow, and he had already exceeded his time for \nsitting up, by a full hour.  Acting on this hint, the locksmith \nprepared to take his leave.\n\n'By the bye,' said Edward, as he shook him by the hand, and looked \nfrom him to Mrs Rudge and back again, 'what noise was that below?  \nI heard your voice in the midst of it, and should have inquired \nbefore, but our other conversation drove it from my memory.  What \nwas it?'\n\nThe locksmith looked towards her, and bit his lip.  She leant \nagainst the chair, and bent her eyes upon the ground.  Barnaby too--\nhe was listening.\n\n--'Some mad or drunken fellow, sir,' Varden at length made answer, \nlooking steadily at the widow as he spoke.  'He mistook the house, \nand tried to force an entrance.'\n\nShe breathed more freely, but stood quite motionless.  As the \nlocksmith said 'Good night,' and Barnaby caught up the candle to \nlight him down the stairs, she took it from him, and charged him--\nwith more haste and earnestness than so slight an occasion appeared \nto warrant--not to stir.  The raven followed them to satisfy \nhimself that all was right below, and when they reached the street-\ndoor, stood on the bottom stair drawing corks out of number.\n\nWith a trembling hand she unfastened the chain and bolts, and \nturned the key.  As she had her hand upon the latch, the locksmith \nsaid in a low voice,\n\n'I have told a lie to-night, for your sake, Mary, and for the sake \nof bygone times and old acquaintance, when I would scorn to do so \nfor my own.  I hope I may have done no harm, or led to none.  I \ncan't help the suspicions you have forced upon me, and I am loth, I \ntell you plainly, to leave Mr Edward here.  Take care he comes to \nno hurt.  I doubt the safety of this roof, and am glad he leaves it \nso soon.  Now, let me go.'\n\nFor a moment she hid her face in her hands and wept; but resisting \nthe strong impulse which evidently moved her to reply, opened the \ndoor--no wider than was sufficient for the passage of his body--\nand motioned him away.  As the locksmith stood upon the step, it \nwas chained and locked behind him, and the raven, in furtherance of \nthese precautions, barked like a lusty house-dog.\n\n'In league with that ill-looking figure that might have fallen from \na gibbet--he listening and hiding here--Barnaby first upon the spot \nlast night--can she who has always borne so fair a name be guilty \nof such crimes in secret!' said the locksmith, musing.  'Heaven \nforgive me if I am wrong, and send me just thoughts; but she is \npoor, the temptation may be great, and we daily hear of things as \nstrange.--Ay, bark away, my friend.  If there's any wickedness \ngoing on, that raven's in it, I'll be sworn.'\n\n\n\nChapter 7\n\n\nMrs Varden was a lady of what is commonly called an uncertain \ntemper--a phrase which being interpreted signifies a temper \ntolerably certain to make everybody more or less uncomfortable.  \nThus it generally happened, that when other people were merry, Mrs \nVarden was dull; and that when other people were dull, Mrs Varden \nwas disposed to be amazingly cheerful.  Indeed the worthy housewife \nwas of such a capricious nature, that she not only attained a \nhigher pitch of genius than Macbeth, in respect of her ability to \nbe wise, amazed, temperate and furious, loyal and neutral in an \ninstant, but would sometimes ring the changes backwards and \nforwards on all possible moods and flights in one short quarter of \nan hour; performing, as it were, a kind of triple bob major on the \npeal of instruments in the female belfry, with a skilfulness and \nrapidity of execution that astonished all who heard her.\n\nIt had been observed in this good lady (who did not want for \npersonal attractions, being plump and buxom to look at, though like \nher fair daughter, somewhat short in stature) that this \nuncertainty of disposition strengthened and increased with her \ntemporal prosperity; and divers wise men and matrons, on friendly \nterms with the locksmith and his family, even went so far as to \nassert, that a tumble down some half-dozen rounds in the world's \nladder--such as the breaking of the bank in which her husband kept \nhis money, or some little fall of that kind--would be the making \nof her, and could hardly fail to render her one of the most \nagreeable companions in existence.  Whether they were right or \nwrong in this conjecture, certain it is that minds, like bodies, \nwill often fall into a pimpled ill-conditioned state from mere \nexcess of comfort, and like them, are often successfully cured by \nremedies in themselves very nauseous and unpalatable.\n\nMrs Varden's chief aider and abettor, and at the same time her \nprincipal victim and object of wrath, was her single domestic \nservant, one Miss Miggs; or as she was called, in conformity with \nthose prejudices of society which lop and top from poor hand-\nmaidens all such genteel excrescences--Miggs.  This Miggs was a \ntall young lady, very much addicted to pattens in private life; \nslender and shrewish, of a rather uncomfortable figure, and though \nnot absolutely ill-looking, of a sharp and acid visage.  As a \ngeneral principle and abstract proposition, Miggs held the male sex \nto be utterly contemptible and unworthy of notice; to be fickle, \nfalse, base, sottish, inclined to perjury, and wholly undeserving.  \nWhen particularly exasperated against them (which, scandal said, \nwas when Sim Tappertit slighted her most) she was accustomed to \nwish with great emphasis that the whole race of women could but die \noff, in order that the men might be brought to know the real value \nof the blessings by which they set so little store; nay, her \nfeeling for her order ran so high, that she sometimes declared, if \nshe could only have good security for a fair, round number--say ten \nthousand--of young virgins following her example, she would, to \nspite mankind, hang, drown, stab, or poison herself, with a joy \npast all expression.\n\nIt was the voice of Miggs that greeted the locksmith, when he \nknocked at his own house, with a shrill cry of 'Who's there?'\n\n'Me, girl, me,' returned Gabriel.\n\nWhat, already, sir!' said Miggs, opening the door with a look of \nsurprise.  'We were just getting on our nightcaps to sit up,--me \nand mistress.  Oh, she has been SO bad!'\n\nMiggs said this with an air of uncommon candour and concern; but \nthe parlour-door was standing open, and as Gabriel very well knew \nfor whose ears it was designed, he regarded her with anything but \nan approving look as he passed in.\n\n'Master's come home, mim,' cried Miggs, running before him into the \nparlour.  'You was wrong, mim, and I was right.  I thought he \nwouldn't keep us up so late, two nights running, mim.  Master's \nalways considerate so far.  I'm so glad, mim, on your account.  I'm \na little'--here Miggs simpered--'a little sleepy myself; I'll own \nit now, mim, though I said I wasn't when you asked me.  It ain't of \nno consequence, mim, of course.'\n\n'You had better,' said the locksmith, who most devoutly wished that \nBarnaby's raven was at Miggs's ankles, 'you had better get to bed \nat once then.'\n\n'Thanking you kindly, sir,' returned Miggs, 'I couldn't take my \nrest in peace, nor fix my thoughts upon my prayers, otherways than \nthat I knew mistress was comfortable in her bed this night; by \nrights she ought to have been there, hours ago.'\n\n'You're talkative, mistress,' said Varden, pulling off his \ngreatcoat, and looking at her askew.\n\n'Taking the hint, sir,' cried Miggs, with a flushed face, 'and \nthanking you for it most kindly, I will make bold to say, that if I \ngive offence by having consideration for my mistress, I do not ask \nyour pardon, but am content to get myself into trouble and to be in \nsuffering.'\n\nHere Mrs Varden, who, with her countenance shrouded in a large \nnightcap, had been all this time intent upon the Protestant Manual, \nlooked round, and acknowledged Miggs's championship by commanding \nher to hold her tongue.\n\nEvery little bone in Miggs's throat and neck developed itself with \na spitefulness quite alarming, as she replied, 'Yes, mim, I will.'\n\n'How do you find yourself now, my dear?' said the locksmith, \ntaking a chair near his wife (who had resumed her book), and \nrubbing his knees hard as he made the inquiry.\n\n'You're very anxious to know, an't you?' returned Mrs Varden, with \nher eyes upon the print.  'You, that have not been near me all day, \nand wouldn't have been if I was dying!'\n\n'My dear Martha--' said Gabriel.\n\nMrs Varden turned over to the next page; then went back again to \nthe bottom line over leaf to be quite sure of the last words; and \nthen went on reading with an appearance of the deepest interest and \nstudy.\n\n'My dear Martha,' said the locksmith, 'how can you say such things, \nwhen you know you don't mean them?  If you were dying!  Why, if \nthere was anything serious the matter with you, Martha, shouldn't I \nbe in constant attendance upon you?'\n\n'Yes!' cried Mrs Varden, bursting into tears, 'yes, you would.  I \ndon't doubt it, Varden.  Certainly you would.  That's as much as to \ntell me that you would be hovering round me like a vulture, waiting \ntill the breath was out of my body, that you might go and marry \nsomebody else.'\n\nMiggs groaned in sympathy--a little short groan, checked in its \nbirth, and changed into a cough.  It seemed to say, 'I can't help \nit.  It's wrung from me by the dreadful brutality of that monster \nmaster.'\n\n'But you'll break my heart one of these days,' added Mrs Varden, \nwith more resignation, 'and then we shall both be happy.  My only \ndesire is to see Dolly comfortably settled, and when she is, you \nmay settle ME as soon as you like.'\n\n'Ah!' cried Miggs--and coughed again.\n\nPoor Gabriel twisted his wig about in silence for a long time, and \nthen said mildly, 'Has Dolly gone to bed?'\n\n'Your master speaks to you,' said Mrs Varden, looking sternly over \nher shoulder at Miss Miggs in waiting.\n\n'No, my dear, I spoke to you,' suggested the locksmith.\n\n'Did you hear me, Miggs?' cried the obdurate lady, stamping her \nfoot upon the ground.  'YOU are beginning to despise me now, are \nyou?  But this is example!'\n\nAt this cruel rebuke, Miggs, whose tears were always ready, for \nlarge or small parties, on the shortest notice and the most \nreasonable terms, fell a crying violently; holding both her hands \ntight upon her heart meanwhile, as if nothing less would prevent \nits splitting into small fragments.  Mrs Varden, who likewise \npossessed that faculty in high perfection, wept too, against Miggs; \nand with such effect that Miggs gave in after a time, and, except \nfor an occasional sob, which seemed to threaten some remote \nintention of breaking out again, left her mistress in possession of \nthe field.  Her superiority being thoroughly asserted, that lady \nsoon desisted likewise, and fell into a quiet melancholy.\n\nThe relief was so great, and the fatiguing occurrences of last \nnight so completely overpowered the locksmith, that he nodded in \nhis chair, and would doubtless have slept there all night, but for \nthe voice of Mrs Varden, which, after a pause of some five minutes, \nawoke him with a start.\n\n'If I am ever,' said Mrs V.--not scolding, but in a sort of \nmonotonous remonstrance--'in spirits, if I am ever cheerful, if I \nam ever more than usually disposed to be talkative and comfortable, \nthis is the way I am treated.'\n\n'Such spirits as you was in too, mim, but half an hour ago!' cried \nMiggs.  'I never see such company!'\n\n'Because,' said Mrs Varden, 'because I never interfere or \ninterrupt; because I never question where anybody comes or goes; \nbecause my whole mind and soul is bent on saving where I can save, \nand labouring in this house;--therefore, they try me as they do.'\n\n'Martha,' urged the locksmith, endeavouring to look as wakeful as \npossible, 'what is it you complain of?  I really came home with \nevery wish and desire to be happy.  I did, indeed.'\n\n'What do I complain of!' retorted his wife.  'Is it a chilling \nthing to have one's husband sulking and falling asleep directly he \ncomes home--to have him freezing all one's warm-heartedness, and \nthrowing cold water over the fireside?  Is it natural, when I know \nhe went out upon a matter in which I am as much interested as \nanybody can be, that I should wish to know all that has happened, \nor that he should tell me without my begging and praying him to do \nit?  Is that natural, or is it not?'\n\n'I am very sorry, Martha,' said the good-natured locksmith.  'I was \nreally afraid you were not disposed to talk pleasantly; I'll tell \nyou everything; I shall only be too glad, my dear.'\n\n'No, Varden,' returned his wife, rising with dignity.  'I dare say--\nthank you!  I'm not a child to be corrected one minute and petted \nthe next--I'm a little too old for that, Varden.  Miggs, carry the \nlight.--YOU can be cheerful, Miggs, at least'\n\nMiggs, who, to this moment, had been in the very depths of \ncompassionate despondency, passed instantly into the liveliest \nstate conceivable, and tossing her head as she glanced towards the \nlocksmith, bore off her mistress and the light together.\n\n'Now, who would think,' thought Varden, shrugging his shoulders and \ndrawing his chair nearer to the fire, 'that that woman could ever \nbe pleasant and agreeable?  And yet she can be.  Well, well, all of \nus have our faults.  I'll not be hard upon hers.  We have been man \nand wife too long for that.'\n\nHe dozed again--not the less pleasantly, perhaps, for his hearty \ntemper.  While his eyes were closed, the door leading to the upper \nstairs was partially opened; and a head appeared, which, at sight \nof him, hastily drew back again.\n\n'I wish,' murmured Gabriel, waking at the noise, and looking round \nthe room, 'I wish somebody would marry Miggs.  But that's \nimpossible!  I wonder whether there's any madman alive, who would \nmarry Miggs!'\n\nThis was such a vast speculation that he fell into a doze again, \nand slept until the fire was quite burnt out.  At last he roused \nhimself; and having double-locked the street-door according to \ncustom, and put the key in his pocket, went off to bed.\n\nHe had not left the room in darkness many minutes, when the head \nagain appeared, and Sim Tappertit entered, bearing in his hand a \nlittle lamp.\n\n'What the devil business has he to stop up so late!' muttered Sim, \npassing into the workshop, and setting it down upon the forge.  \n'Here's half the night gone already.  There's only one good that \nhas ever come to me, out of this cursed old rusty mechanical trade, \nand that's this piece of ironmongery, upon my soul!'\n\nAs he spoke, he drew from the right hand, or rather right leg \npocket of his smalls, a clumsy large-sized key, which he inserted \ncautiously in the lock his master had secured, and softly opened \nthe door.  That done, he replaced his piece of secret workmanship \nin his pocket; and leaving the lamp burning, and closing the door \ncarefully and without noise, stole out into the street--as little \nsuspected by the locksmith in his sound deep sleep, as by Barnaby \nhimself in his phantom-haunted dreams.\n\n\n\nChapter 8\n\n\nClear of the locksmith's house, Sim Tappertit laid aside his \ncautious manner, and assuming in its stead that of a ruffling, \nswaggering, roving blade, who would rather kill a man than \notherwise, and eat him too if needful, made the best of his way \nalong the darkened streets.\n\nHalf pausing for an instant now and then to smite his pocket and \nassure himself of the safety of his master key, he hurried on to \nBarbican, and turning into one of the narrowest of the narrow \nstreets which diverged from that centre, slackened his pace and \nwiped his heated brow, as if the termination of his walk were near \nat hand.\n\nIt was not a very choice spot for midnight expeditions, being in \ntruth one of more than questionable character, and of an appearance \nby no means inviting.  From the main street he had entered, itself \nlittle better than an alley, a low-browed doorway led into a blind \ncourt, or yard, profoundly dark, unpaved, and reeking with stagnant \nodours.  Into this ill-favoured pit, the locksmith's vagrant \n'prentice groped his way; and stopping at a house from whose \ndefaced and rotten front the rude effigy of a bottle swung to and \nfro like some gibbeted malefactor, struck thrice upon an iron \ngrating with his foot.  After listening in vain for some response \nto his signal, Mr Tappertit became impatient, and struck the \ngrating thrice again.\n\nA further delay ensued, but it was not of long duration.  The \nground seemed to open at his feet, and a ragged head appeared.\n\n'Is that the captain?' said a voice as ragged as the head.\n\n'Yes,' replied Mr Tappertit haughtily, descending as he spoke, 'who \nshould it be?'\n\n'It's so late, we gave you up,' returned the voice, as its owner \nstopped to shut and fasten the grating.  'You're late, sir.'\n\n'Lead on,' said Mr Tappertit, with a gloomy majesty, 'and make \nremarks when I require you.  Forward!'\n\nThis latter word of command was perhaps somewhat theatrical and \nunnecessary, inasmuch as the descent was by a very narrow, steep, \nand slippery flight of steps, and any rashness or departure from \nthe beaten track must have ended in a yawning water-butt.  But Mr \nTappertit being, like some other great commanders, favourable to \nstrong effects, and personal display, cried 'Forward!' again, in \nthe hoarsest voice he could assume; and led the way, with folded \narms and knitted brows, to the cellar down below, where there was a \nsmall copper fixed in one corner, a chair or two, a form and table, \na glimmering fire, and a truckle-bed, covered with a ragged \npatchwork rug.\n\n'Welcome, noble captain!' cried a lanky figure, rising as from a \nnap.\n\nThe captain nodded.  Then, throwing off his outer coat, he stood \ncomposed in all his dignity, and eyed his follower over.\n\n'What news to-night?' he asked, when he had looked into his very \nsoul.\n\n'Nothing particular,' replied the other, stretching himself--and he \nwas so long already that it was quite alarming to see him do it--\n'how come you to be so late?'\n\n'No matter,' was all the captain deigned to say in answer.  'Is the \nroom prepared?'\n\n'It is,' replied the follower.\n\n'The comrade--is he here?'\n\n'Yes.  And a sprinkling of the others--you hear 'em?'\n\n'Playing skittles!' said the captain moodily.  'Light-hearted \nrevellers!'\n\nThere was no doubt respecting the particular amusement in which \nthese heedless spirits were indulging, for even in the close and \nstifling atmosphere of the vault, the noise sounded like distant \nthunder.  It certainly appeared, at first sight, a singular spot to \nchoose, for that or any other purpose of relaxation, if the other \ncellars answered to the one in which this brief colloquy took \nplace; for the floors were of sodden earth, the walls and roof of \ndamp bare brick tapestried with the tracks of snails and slugs; the \nair was sickening, tainted, and offensive.  It seemed, from one \nstrong flavour which was uppermost among the various odours of the \nplace, that it had, at no very distant period, been used as a \nstorehouse for cheeses; a circumstance which, while it accounted \nfor the greasy moisture that hung about it, was agreeably \nsuggestive of rats.  It was naturally damp besides, and little \ntrees of fungus sprung from every mouldering corner.\n\nThe proprietor of this charming retreat, and owner of the ragged \nhead before mentioned--for he wore an old tie-wig as bare and \nfrowzy as a stunted hearth-broom--had by this time joined them; and \nstood a little apart, rubbing his hands, wagging his hoary bristled \nchin, and smiling in silence.  His eyes were closed; but had they \nbeen wide open, it would have been easy to tell, from the attentive \nexpression of the face he turned towards them--pale and unwholesome \nas might be expected in one of his underground existence--and from \na certain anxious raising and quivering of the lids, that he was \nblind.\n\n'Even Stagg hath been asleep,' said the long comrade, nodding \ntowards this person.\n\n'Sound, captain, sound!' cried the blind man; 'what does my noble \ncaptain drink--is it brandy, rum, usquebaugh?  Is it soaked \ngunpowder, or blazing oil?  Give it a name, heart of oak, and we'd \nget it for you, if it was wine from a bishop's cellar, or melted \ngold from King George's mint.'\n\n'See,' said Mr Tappertit haughtily, 'that it's something strong, \nand comes quick; and so long as you take care of that, you may \nbring it from the devil's cellar, if you like.'\n\n'Boldly said, noble captain!' rejoined the blind man.  'Spoken like \nthe 'Prentices' Glory.  Ha, ha!  From the devil's cellar!  A brave \njoke!  The captain joketh.  Ha, ha, ha!'\n\n'I'll tell you what, my fine feller,' said Mr Tappertit, eyeing the \nhost over as he walked to a closet, and took out a bottle and glass \nas carelessly as if he had been in full possession of his sight, \n'if you make that row, you'll find that the captain's very far from \njoking, and so I tell you.'\n\n'He's got his eyes on me!' cried Stagg, stopping short on his way \nback, and affecting to screen his face with the bottle.  'I feel \n'em though I can't see 'em.  Take 'em off, noble captain.  Remove \n'em, for they pierce like gimlets.'\n\nMr Tappertit smiled grimly at his comrade; and twisting out one \nmore look--a kind of ocular screw--under the influence of which the \nblind man feigned to undergo great anguish and torture, bade him, \nin a softened tone, approach, and hold his peace.\n\n'I obey you, captain,' cried Stagg, drawing close to him and \nfilling out a bumper without spilling a drop, by reason that he \nheld his little finger at the brim of the glass, and stopped at the \ninstant the liquor touched it, 'drink, noble governor.  Death to \nall masters, life to all 'prentices, and love to all fair damsels.  \nDrink, brave general, and warm your gallant heart!'\n\nMr Tappertit condescended to take the glass from his outstretched \nhand.  Stagg then dropped on one knee, and gently smoothed the \ncalves of his legs, with an air of humble admiration.\n\n'That I had but eyes!' he cried, 'to behold my captain's \nsymmetrical proportions!  That I had but eyes, to look upon these \ntwin invaders of domestic peace!'\n\n'Get out!' said Mr Tappertit, glancing downward at his favourite \nlimbs.  'Go along, will you, Stagg!'\n\n'When I touch my own afterwards,' cried the host, smiting them \nreproachfully, 'I hate 'em.  Comparatively speaking, they've no \nmore shape than wooden legs, beside these models of my noble \ncaptain's.'\n\n'Yours!' exclaimed Mr Tappertit.  'No, I should think not.  Don't \ntalk about those precious old toothpicks in the same breath with \nmine; that's rather too much.  Here.  Take the glass.  Benjamin.  \nLead on.  To business!'\n\nWith these words, he folded his arms again; and frowning with a \nsullen majesty, passed with his companion through a little door at \nthe upper end of the cellar, and disappeared; leaving Stagg to his \nprivate meditations.\n\nThe vault they entered, strewn with sawdust and dimly lighted, was \nbetween the outer one from which they had just come, and that in \nwhich the skittle-players were diverting themselves; as was \nmanifested by the increased noise and clamour of tongues, which was \nsuddenly stopped, however, and replaced by a dead silence, at a \nsignal from the long comrade.  Then, this young gentleman, going to \na little cupboard, returned with a thigh-bone, which in former \ntimes must have been part and parcel of some individual at least as \nlong as himself, and placed the same in the hands of Mr Tappertit; \nwho, receiving it as a sceptre and staff of authority, cocked his \nthree-cornered hat fiercely on the top of his head, and mounted a \nlarge table, whereon a chair of state, cheerfully ornamented with a \ncouple of skulls, was placed ready for his reception.\n\nHe had no sooner assumed this position, than another young \ngentleman appeared, bearing in his arms a huge clasped book, who \nmade him a profound obeisance, and delivering it to the long \ncomrade, advanced to the table, and turning his back upon it, stood \nthere Atlas-wise.  Then, the long comrade got upon the table too; \nand seating himself in a lower chair than Mr Tappertit's, with much \nstate and ceremony, placed the large book on the shoulders of their \nmute companion as deliberately as if he had been a wooden desk, and \nprepared to make entries therein with a pen of corresponding size.\n\nWhen the long comrade had made these preparations, he looked \ntowards Mr Tappertit; and Mr Tappertit, flourishing the bone, \nknocked nine times therewith upon one of the skulls.  At the ninth \nstroke, a third young gentleman emerged from the door leading to \nthe skittle ground, and bowing low, awaited his commands.\n\n'Prentice!' said the mighty captain, 'who waits without?'\n\nThe 'prentice made answer that a stranger was in attendance, who \nclaimed admission into that secret society of 'Prentice Knights, \nand a free participation in their rights, privileges, and \nimmunities.  Thereupon Mr Tappertit flourished the bone again, and \ngiving the other skull a prodigious rap on the nose, exclaimed \n'Admit him!'  At these dread words the 'prentice bowed once more, \nand so withdrew as he had come.\n\nThere soon appeared at the same door, two other 'prentices, having \nbetween them a third, whose eyes were bandaged, and who was attired \nin a bag-wig, and a broad-skirted coat, trimmed with tarnished \nlace; and who was girded with a sword, in compliance with the laws \nof the Institution regulating the introduction of candidates, which \nrequired them to assume this courtly dress, and kept it constantly \nin lavender, for their convenience.  One of the conductors of this \nnovice held a rusty blunderbuss pointed towards his ear, and the \nother a very ancient sabre, with which he carved imaginary \noffenders as he came along in a sanguinary and anatomical manner.\n\nAs this silent group advanced, Mr Tappertit fixed his hat upon his \nhead.  The novice then laid his hand upon his breast and bent \nbefore him.  When he had humbled himself sufficiently, the captain \nordered the bandage to be removed, and proceeded to eye him over.\n\n'Ha!' said the captain, thoughtfully, when he had concluded this \nordeal.  'Proceed.'\n\nThe long comrade read aloud as follows:--'Mark Gilbert.  Age, \nnineteen.  Bound to Thomas Curzon, hosier, Golden Fleece, Aldgate.  \nLoves Curzon's daughter.  Cannot say that Curzon's daughter loves \nhim.  Should think it probable.  Curzon pulled his ears last \nTuesday week.'\n\n'How!' cried the captain, starting.\n\n'For looking at his daughter, please you,' said the novice.\n\n'Write Curzon down, Denounced,' said the captain.  'Put a black \ncross against the name of Curzon.'\n\n'So please you,' said the novice, 'that's not the worst--he calls \nhis 'prentice idle dog, and stops his beer unless he works to his \nliking.  He gives Dutch cheese, too, eating Cheshire, sir, himself; \nand Sundays out, are only once a month.'\n\n'This,' said Mr Tappert;t gravely, 'is a flagrant case.  Put two \nblack crosses to the name of Curzon.'\n\n'If the society,' said the novice, who was an ill-looking, one-\nsided, shambling lad, with sunken eyes set close together in his \nhead--'if the society would burn his house down--for he's not \ninsured--or beat him as he comes home from his club at night, or \nhelp me to carry off his daughter, and marry her at the Fleet, \nwhether she gave consent or no--'\n\nMr Tappertit waved his grizzly truncheon as an admonition to him \nnot to interrupt, and ordered three black crosses to the name of \nCurzon.\n\n'Which means,' he said in gracious explanation, 'vengeance, \ncomplete and terrible.  'Prentice, do you love the Constitution?'\n\nTo which the novice (being to that end instructed by his attendant \nsponsors) replied 'I do!'\n\n'The Church, the State, and everything established--but the \nmasters?' quoth the captain.\n\nAgain the novice said 'I do.'\n\nHaving said it, he listened meekly to the captain, who in an \naddress prepared for such occasions, told him how that under that \nsame Constitution (which was kept in a strong box somewhere, but \nwhere exactly he could not find out, or he would have endeavoured \nto procure a copy of it), the 'prentices had, in times gone by, \nhad frequent holidays of right, broken people's heads by scores, \ndefied their masters, nay, even achieved some glorious murders in \nthe streets, which privileges had gradually been wrested from them, \nand in all which noble aspirations they were now restrained; how \nthe degrading checks imposed upon them were unquestionably \nattributable to the innovating spirit of the times, and how they \nunited therefore to resist all change, except such change as would \nrestore those good old English customs, by which they would stand \nor fall.  After illustrating the wisdom of going backward, by \nreference to that sagacious fish, the crab, and the not unfrequent \npractice of the mule and donkey, he described their general \nobjects; which were briefly vengeance on their Tyrant Masters (of \nwhose grievous and insupportable oppression no 'prentice could \nentertain a moment's doubt) and the restoration, as aforesaid, of \ntheir ancient rights and holidays; for neither of which objects \nwere they now quite ripe, being barely twenty strong, but which \nthey pledged themselves to pursue with fire and sword when needful.  \nThen he described the oath which every member of that small remnant \nof a noble body took, and which was of a dreadful and impressive \nkind; binding him, at the bidding of his chief, to resist and \nobstruct the Lord Mayor, sword-bearer, and chaplain; to despise the \nauthority of the sheriffs; and to hold the court of aldermen as \nnought; but not on any account, in case the fulness of time should \nbring a general rising of 'prentices, to damage or in any way \ndisfigure Temple Bar, which was strictly constitutional and always \nto be approached with reverence.  Having gone over these several \nheads with great eloquence and force, and having further informed \nthe novice that this society had its origin in his own teeming \nbrain, stimulated by a swelling sense of wrong and outrage, Mr \nTappertit demanded whether he had strength of heart to take the \nmighty pledge required, or whether he would withdraw while retreat \nwas yet in his power.\n\nTo this the novice made rejoinder, that he would take the vow, \nthough it should choke him; and it was accordingly administered \nwith many impressive circumstances, among which the lighting up of \nthe two skulls with a candle-end inside of each, and a great many \nflourishes with the bone, were chiefly conspicuous; not to mention \na variety of grave exercises with the blunderbuss and sabre, and \nsome dismal groaning by unseen 'prentices without.  All these dark \nand direful ceremonies being at length completed, the table was put \naside, the chair of state removed, the sceptre locked up in its \nusual cupboard, the doors of communication between the three \ncellars thrown freely open, and the 'Prentice Knights resigned \nthemselves to merriment.\n\nBut Mr Tappertit, who had a soul above the vulgar herd, and who, on \naccount of his greatness, could only afford to be merry now and \nthen, threw himself on a bench with the air of a man who was faint \nwith dignity.  He looked with an indifferent eye, alike on \nskittles, cards, and dice, thinking only of the locksmith's \ndaughter, and the base degenerate days on which he had fallen.\n\n'My noble captain neither games, nor sings, nor dances,' said his \nhost, taking a seat beside him.  'Drink, gallant general!'\n\nMr Tappertit drained the proffered goblet to the dregs; then thrust \nhis hands into his pockets, and with a lowering visage walked among \nthe skittles, while his followers (such is the influence of \nsuperior genius) restrained the ardent ball, and held his little \nshins in dumb respect.\n\n'If I had been born a corsair or a pirate, a brigand, genteel \nhighwayman or patriot--and they're the same thing,' thought Mr \nTappertit, musing among the nine-pins, 'I should have been all \nright.  But to drag out a ignoble existence unbeknown to mankind in \ngeneral--patience!  I will be famous yet.  A voice within me keeps \non whispering Greatness.  I shall burst out one of these days, and \nwhen I do, what power can keep me down?  I feel my soul getting \ninto my head at the idea.  More drink there!'\n\n'The novice,' pursued Mr Tappertit, not exactly in a voice of \nthunder, for his tones, to say the truth were rather cracked and \nshrill--but very impressively, notwithstanding--'where is he?'\n\n'Here, noble captain!' cried Stagg.  'One stands beside me who I \nfeel is a stranger.'\n\n'Have you,' said Mr Tappertit, letting his gaze fall on the party \nindicated, who was indeed the new knight, by this time restored to \nhis own apparel; 'Have you the impression of your street-door key \nin wax?'\n\nThe long comrade anticipated the reply, by producing it from the \nshelf on which it had been deposited.\n\n'Good,' said Mr Tappertit, scrutinising it attentively, while a \nbreathless silence reigned around; for he had constructed secret \ndoor-keys for the whole society, and perhaps owed something of his \ninfluence to that mean and trivial circumstance--on such slight \naccidents do even men of mind depend!--'This is easily made.  Come \nhither, friend.'\n\nWith that, he beckoned the new knight apart, and putting the \npattern in his pocket, motioned to him to walk by his side.\n\n'And so,' he said, when they had taken a few turns up and down, \nyou--you love your master's daughter?'\n\n'I do,' said the 'prentice.  'Honour bright.  No chaff, you know.'\n\n'Have you,' rejoined Mr Tappertit, catching him by the wrist, and \ngiving him a look which would have been expressive of the most \ndeadly malevolence, but for an accidental hiccup that rather \ninterfered with it; 'have you a--a rival?'\n\n'Not as I know on,' replied the 'prentice.\n\n'If you had now--' said Mr Tappertit--'what would you--eh?--'\n\nThe 'prentice looked fierce and clenched his fists.\n\n'It is enough,' cried Mr Tappertit hastily, 'we understand each \nother.  We are observed.  I thank you.'\n\nSo saying, he cast him off again; and calling the long comrade \naside after taking a few hasty turns by himself, bade him \nimmediately write and post against the wall, a notice, proscribing \none Joseph Willet (commonly known as Joe) of Chigwell; forbidding \nall 'Prentice Knights to succour, comfort, or hold communion with \nhim; and requiring them, on pain of excommunication, to molest, \nhurt, wrong, annoy, and pick quarrels with the said Joseph, \nwhensoever and wheresoever they, or any of them, should happen to \nencounter him.\n\nHaving relieved his mind by this energetic proceeding, he \ncondescended to approach the festive board, and warming by degrees, \nat length deigned to preside, and even to enchant the company with \na song.  After this, he rose to such a pitch as to consent to \nregale the society with a hornpipe, which be actually performed to \nthe music of a fiddle (played by an ingenious member) with such \nsurpassing agility and brilliancy of execution, that the spectators \ncould not be sufficiently enthusiastic in their admiration; and \ntheir host protested, with tears in his eyes, that he had never \ntruly felt his blindness until that moment.\n\nBut the host withdrawing--probably to weep in secret--soon returned \nwith the information that it wanted little more than an hour of \nday, and that all the cocks in Barbican had already begun to crow, \nas if their lives depended on it.  At this intelligence, the \n'Prentice Knights arose in haste, and marshalling into a line, \nfiled off one by one and dispersed with all speed to their several \nhomes, leaving their leader to pass the grating last.\n\n'Good night, noble captain,' whispered the blind man as he held it \nopen for his passage out; 'Farewell, brave general.  Bye, bye, \nillustrious commander.  Good luck go with you for a--conceited, \nbragging, empty-headed, duck-legged idiot.'\n\nWith which parting words, coolly added as he listened to his \nreceding footsteps and locked the grate upon himself, he descended \nthe steps, and lighting the fire below the little copper, \nprepared, without any assistance, for his daily occupation; which \nwas to retail at the area-head above pennyworths of broth and soup, \nand savoury puddings, compounded of such scraps as were to be \nbought in the heap for the least money at Fleet Market in the \nevening time; and for the sale of which he had need to have \ndepended chiefly on his private connection, for the court had no \nthoroughfare, and was not that kind of place in which many people \nwere likely to take the air, or to frequent as an agreeable \npromenade.\n\n\n\nChapter 9\n\n\nChronicler's are privileged to enter where they list, to come and \ngo through keyholes, to ride upon the wind, to overcome, in their \nsoarings up and down, all obstacles of distance, time, and place.  \nThrice blessed be this last consideration, since it enables us to \nfollow the disdainful Miggs even into the sanctity of her chamber, \nand to hold her in sweet companionship through the dreary watches \nof the night!\n\nMiss Miggs, having undone her mistress, as she phrased it (which \nmeans, assisted to undress her), and having seen her comfortably to \nbed in the back room on the first floor, withdrew to her own \napartment, in the attic story.  Notwithstanding her declaration in \nthe locksmith's presence, she was in no mood for sleep; so, putting \nher light upon the table and withdrawing the little window curtain, \nshe gazed out pensively at the wild night sky.\n\nPerhaps she wondered what star was destined for her habitation when \nshe had run her little course below; perhaps speculated which of \nthose glimmering spheres might be the natal orb of Mr Tappertit; \nperhaps marvelled how they could gaze down on that perfidious \ncreature, man, and not sicken and turn green as chemists' lamps; \nperhaps thought of nothing in particular.  Whatever she thought \nabout, there she sat, until her attention, alive to anything \nconnected with the insinuating 'prentice, was attracted by a noise \nin the next room to her own--his room; the room in which he slept, \nand dreamed--it might be, sometimes dreamed of her.\n\nThat he was not dreaming now, unless he was taking a walk in his \nsleep, was clear, for every now and then there came a shuffling \nnoise, as though he were engaged in polishing the whitewashed wall; \nthen a gentle creaking of his door; then the faintest indication of \nhis stealthy footsteps on the landing-place outside.  Noting this \nlatter circumstance, Miss Miggs turned pale and shuddered, as \nmistrusting his intentions; and more than once exclaimed, below her \nbreath, 'Oh! what a Providence it is, as I am bolted in!'--which, \nowing doubtless to her alarm, was a confusion of ideas on her part \nbetween a bolt and its use; for though there was one on the door, \nit was not fastened.\n\nMiss Miggs's sense of hearing, however, having as sharp an edge as \nher temper, and being of the same snappish and suspicious kind, \nvery soon informed her that the footsteps passed her door, and \nappeared to have some object quite separate and disconnected from \nherself.  At this discovery she became more alarmed than ever, and \nwas about to give utterance to those cries of 'Thieves!' and \n'Murder!' which she had hitherto restrained, when it occurred to \nher to look softly out, and see that her fears had some good \npalpable foundation.\n\nLooking out accordingly, and stretching her neck over the handrail, \nshe descried, to her great amazement, Mr Tappertit completely \ndressed, stealing downstairs, one step at a time, with his shoes in \none hand and a lamp in the other.  Following him with her eyes, and \ngoing down a little way herself to get the better of an intervening \nangle, she beheld him thrust his head in at the parlour-door, draw \nit back again with great swiftness, and immediately begin a retreat \nupstairs with all possible expedition.\n\n'Here's mysteries!' said the damsel, when she was safe in her own \nroom again, quite out of breath.  'Oh, gracious, here's mysteries!'\n\nThe prospect of finding anybody out in anything, would have kept \nMiss Miggs awake under the influence of henbane.  Presently, she \nheard the step again, as she would have done if it had been that of \na feather endowed with motion and walking down on tiptoe.  Then \ngliding out as before, she again beheld the retreating figure of \nthe 'prentice; again he looked cautiously in at the parlour-door, \nbut this time instead of retreating, he passed in and disappeared.\n\nMiggs was back in her room, and had her head out of the window, \nbefore an elderly gentleman could have winked and recovered from \nit.  Out he came at the street-door, shut it carefully behind him, \ntried it with his knee, and swaggered off, putting something in his \npocket as he went along.  At this spectacle Miggs cried 'Gracious!' \nagain, and then 'Goodness gracious!' and then 'Goodness gracious \nme!' and then, candle in hand, went downstairs as he had done.  \nComing to the workshop, she saw the lamp burning on the forge, and \neverything as Sim had left it.\n\n'Why I wish I may only have a walking funeral, and never be buried \ndecent with a mourning-coach and feathers, if the boy hasn't been \nand made a key for his own self!' cried Miggs.  'Oh the little \nvillain!'\n\nThis conclusion was not arrived at without consideration, and much \npeeping and peering about; nor was it unassisted by the \nrecollection that she had on several occasions come upon the \n'prentice suddenly, and found him busy at some mysterious \noccupation.  Lest the fact of Miss Miggs calling him, on whom she \nstooped to cast a favourable eye, a boy, should create surprise in \nany breast, it may be observed that she invariably affected to \nregard all male bipeds under thirty as mere chits and infants; \nwhich phenomenon is not unusual in ladies of Miss Miggs's temper, \nand is indeed generally found to be the associate of such \nindomitable and savage virtue.\n\nMiss Miggs deliberated within herself for some little time, looking \nhard at the shop-door while she did so, as though her eyes and \nthoughts were both upon it; and then, taking a sheet of paper from \na drawer, twisted it into a long thin spiral tube.  Having filled \nthis instrument with a quantity of small coal-dust from the forge, \nshe approached the door, and dropping on one knee before it, \ndexterously blew into the keyhole as much of these fine ashes as \nthe lock would hold.  When she had filled it to the brim in a very \nworkmanlike and skilful manner, she crept upstairs again, and \nchuckled as she went.\n\n'There!' cried Miggs, rubbing her hands, 'now let's see whether you \nwon't be glad to take some notice of me, mister.  He, he, he!  \nYou'll have eyes for somebody besides Miss Dolly now, I think.  A \nfat-faced puss she is, as ever I come across!'\n\nAs she uttered this criticism, she glanced approvingly at her small \nmirror, as who should say, I thank my stars that can't be said of \nme!--as it certainly could not; for Miss Miggs's style of beauty \nwas of that kind which Mr Tappertit himself had not inaptly termed, \nin private, 'scraggy.'\n\n'I don't go to bed this night!' said Miggs, wrapping herself in a \nshawl, and drawing a couple of chairs near the window, flouncing \ndown upon one, and putting her feet upon the other, 'till you come \nhome, my lad.  I wouldn't,' said Miggs viciously, 'no, not for \nfive-and-forty pound!'\n\nWith that, and with an expression of face in which a great number \nof opposite ingredients, such as mischief, cunning, malice, \ntriumph, and patient expectation, were all mixed up together in a \nkind of physiognomical punch, Miss Miggs composed herself to wait \nand listen, like some fair ogress who had set a trap and was \nwatching for a nibble from a plump young traveller.\n\nShe sat there, with perfect composure, all night.  At length, just \nupon break of day, there was a footstep in the street, and \npresently she could hear Mr Tappertit stop at the door.  Then she \ncould make out that he tried his key--that he was blowing into it--\nthat he knocked it on the nearest post to beat the dust out--that \nhe took it under a lamp to look at it--that he poked bits of stick \ninto the lock to clear it--that he peeped into the keyhole, first \nwith one eye, and then with the other--that he tried the key again--\nthat he couldn't turn it, and what was worse, couldn't get it out--\nthat he bent it--that then it was much less disposed to come out \nthan before--that he gave it a mighty twist and a great pull, and \nthen it came out so suddenly that he staggered backwards--that he \nkicked the door--that he shook it--finally, that he smote his \nforehead, and sat down on the step in despair.\n\nWhen this crisis had arrived, Miss Miggs, affecting to be exhausted \nwith terror, and to cling to the window-sill for support, put out \nher nightcap, and demanded in a faint voice who was there.\n\nMr Tappertit cried 'Hush!' and, backing to the road, exhorted her \nin frenzied pantomime to secrecy and silence.\n\n'Tell me one thing,' said Miggs.  'Is it thieves?'\n\n'No--no--no!' cried Mr Tappertit.\n\n'Then,' said Miggs, more faintly than before, 'it's fire.  Where \nis it, sir?  It's near this room, I know.  I've a good conscience, \nsir, and would much rather die than go down a ladder.  All I wish \nis, respecting my love to my married sister, Golden Lion Court, \nnumber twenty-sivin, second bell-handle on the right-hand door-\npost.'\n\n'Miggs!' cried Mr Tappertit, 'don't you know me?  Sim, you know--\nSim--'\n\n'Oh!  what about him!' cried Miggs, clasping her hands.  'Is he in \nany danger?  Is he in the midst of flames and blazes!  Oh gracious, \ngracious!'\n\n'Why I'm here, an't I?' rejoined Mr Tappertit, knocking himself on \nthe breast.  'Don't you see me?  What a fool you are, Miggs!'\n\n'There!' cried Miggs, unmindful of this compliment.  'Why--so it--\nGoodness, what is the meaning of--If you please, mim, here's--'\n\n'No, no!' cried Mr Tappertit, standing on tiptoe, as if by that \nmeans he, in the street, were any nearer being able to stop the \nmouth of Miggs in the garret.  'Don't!--I've been out without \nleave, and something or another's the matter with the lock.  Come \ndown, and undo the shop window, that I may get in that way.'\n\n'I dursn't do it, Simmun,' cried Miggs--for that was her \npronunciation of his Christian name.  'I dursn't do it, indeed.  \nYou know as well as anybody, how particular I am.  And to come \ndown in the dead of night, when the house is wrapped in slumbers \nand weiled in obscurity.'  And there she stopped and shivered, for \nher modesty caught cold at the very thought.\n\n'But Miggs,' cried Mr Tappertit, getting under the lamp, that she \nmight see his eyes.  'My darling Miggs--'\n\nMiggs screamed slightly.\n\n'--That I love so much, and never can help thinking of,' and it is \nimpossible to describe the use he made of his eyes when he said \nthis--'do--for my sake, do.'\n\n'Oh Simmun,' cried Miggs, 'this is worse than all.  I know if I \ncome down, you'll go, and--'\n\n'And what, my precious?' said Mr Tappertit.\n\n'And try,' said Miggs, hysterically, 'to kiss me, or some such \ndreadfulness; I know you will!'\n\n'I swear I won't,' said Mr Tappertit, with remarkable earnestness.  \n'Upon my soul I won't.  It's getting broad day, and the watchman's \nwaking up.  Angelic Miggs!  If you'll only come and let me in, I \npromise you faithfully and truly I won't.'\n\nMiss Miggs, whose gentle heart was touched, did not wait for the \noath (knowing how strong the temptation was, and fearing he might \nforswear himself), but tripped lightly down the stairs, and with \nher own fair hands drew back the rough fastenings of the workshop \nwindow.  Having helped the wayward 'prentice in, she faintly \narticulated the words 'Simmun is safe!' and yielding to her woman's \nnature, immediately became insensible.\n\n'I knew I should quench her,' said Sim, rather embarrassed by this \ncircumstance.  'Of course I was certain it would come to this, but \nthere was nothing else to be done--if I hadn't eyed her over, she \nwouldn't have come down.  Here.  Keep up a minute, Miggs.  What a \nslippery figure she is!  There's no holding her, comfortably.  Do \nkeep up a minute, Miggs, will you?'\n\nAs Miggs, however, was deaf to all entreaties, Mr Tappertit leant \nher against the wall as one might dispose of a walking-stick or \numbrella, until he had secured the window, when he took her in his \narms again, and, in short stages and with great difficulty--arising \nfrom her being tall and his being short, and perhaps in some degree \nfrom that peculiar physical conformation on which he had already \nremarked--carried her upstairs, and planting her, in the same \numbrella and walking-stick fashion, just inside her own door, left \nher to her repose.\n\n'He may be as cool as he likes,' said Miss Miggs, recovering as \nsoon as she was left alone; 'but I'm in his confidence and he can't \nhelp himself, nor couldn't if he was twenty Simmunses!'\n\n\n\nChapter 10\n\n\nIt was on one of those mornings, common in early spring, when the \nyear, fickle and changeable in its youth like all other created \nthings, is undecided whether to step backward into winter or \nforward into summer, and in its uncertainty inclines now to the one \nand now to the other, and now to both at once--wooing summer in the \nsunshine, and lingering still with winter in the shade--it was, in \nshort, on one of those mornings, when it is hot and cold, wet and \ndry, bright and lowering, sad and cheerful, withering and genial, \nin the compass of one short hour, that old John Willet, who was \ndropping asleep over the copper boiler, was roused by the sound of \na horse's feet, and glancing out at window, beheld a traveller of \ngoodly promise, checking his bridle at the Maypole door.\n\nHe was none of your flippant young fellows, who would call for a \ntankard of mulled ale, and make themselves as much at home as if \nthey had ordered a hogshead of wine; none of your audacious young \nswaggerers, who would even penetrate into the bar--that solemn \nsanctuary--and, smiting old John upon the back, inquire if there \nwas never a pretty girl in the house, and where he hid his little \nchambermaids, with a hundred other impertinences of that nature; \nnone of your free-and-easy companions, who would scrape their \nboots upon the firedogs in the common room, and be not at all \nparticular on the subject of spittoons; none of your unconscionable \nblades, requiring impossible chops, and taking unheard-of pickles \nfor granted.  He was a staid, grave, placid gentleman, something \npast the prime of life, yet upright in his carriage, for all that, \nand slim as a greyhound.  He was well-mounted upon a sturdy \nchestnut cob, and had the graceful seat of an experienced horseman; \nwhile his riding gear, though free from such fopperies as were then \nin vogue, was handsome and well chosen.  He wore a riding-coat of a \nsomewhat brighter green than might have been expected to suit the \ntaste of a gentleman of his years, with a short, black velvet cape, \nand laced pocket-holes and cuffs, all of a jaunty fashion; his \nlinen, too, was of the finest kind, worked in a rich pattern at the \nwrists and throat, and scrupulously white.  Although he seemed, \njudging from the mud he had picked up on the way, to have come from \nLondon, his horse was as smooth and cool as his own iron-grey \nperiwig and pigtail.  Neither man nor beast had turned a single \nhair; and saving for his soiled skirts and spatter-dashes, this \ngentleman, with his blooming face, white teeth, exactly-ordered \ndress, and perfect calmness, might have come from making an \nelaborate and leisurely toilet, to sit for an equestrian portrait \nat old John Willet's gate.\n\nIt must not be supposed that John observed these several \ncharacteristics by other than very slow degrees, or that he took in \nmore than half a one at a time, or that he even made up his mind \nupon that, without a great deal of very serious consideration.  \nIndeed, if he had been distracted in the first instance by \nquestionings and orders, it would have taken him at the least a \nfortnight to have noted what is here set down; but it happened that \nthe gentleman, being struck with the old house, or with the plump \npigeons which were skimming and curtseying about it, or with the \ntall maypole, on the top of which a weathercock, which had been out \nof order for fifteen years, performed a perpetual walk to the music \nof its own creaking, sat for some little time looking round in \nsilence.  Hence John, standing with his hand upon the horse's \nbridle, and his great eyes on the rider, and with nothing passing \nto divert his thoughts, had really got some of these little \ncircumstances into his brain by the time he was called upon to \nspeak.\n\n'A quaint place this,' said the gentleman--and his voice was as \nrich as his dress.  'Are you the landlord?'\n\n'At your service, sir,' replied John Willet.\n\n'You can give my horse good stabling, can you, and me an early \ndinner (I am not particular what, so that it be cleanly served), \nand a decent room of which there seems to be no lack in this great \nmansion,' said the stranger, again running his eyes over the \nexterior.\n\n'You can have, sir,' returned John with a readiness quite \nsurprising, 'anything you please.'\n\n'It's well I am easily satisfied,' returned the other with a smile, \n'or that might prove a hardy pledge, my friend.'  And saying so, he \ndismounted, with the aid of the block before the door, in a \ntwinkling.\n\n'Halloa there!  Hugh!' roared John.  'I ask your pardon, sir, for \nkeeping you standing in the porch; but my son has gone to town on \nbusiness, and the boy being, as I may say, of a kind of use to me, \nI'm rather put out when he's away.  Hugh!--a dreadful idle vagrant \nfellow, sir, half a gipsy, as I think--always sleeping in the sun \nin summer, and in the straw in winter time, sir--Hugh!  Dear Lord, \nto keep a gentleman a waiting here through him!--Hugh!  I wish that \nchap was dead, I do indeed.'\n\n'Possibly he is,' returned the other.  'I should think if he were \nliving, he would have heard you by this time.'\n\n'In his fits of laziness, he sleeps so desperate hard,' said the \ndistracted host, 'that if you were to fire off cannon-balls into \nhis ears, it wouldn't wake him, sir.'\n\nThe guest made no remark upon this novel cure for drowsiness, and \nrecipe for making people lively, but, with his hands clasped behind \nhim, stood in the porch, very much amused to see old John, with the \nbridle in his hand, wavering between a strong impulse to abandon \nthe animal to his fate, and a half disposition to lead him into the \nhouse, and shut him up in the parlour, while he waited on his \nmaster.\n\n'Pillory the fellow, here he is at last!' cried John, in the very \nheight and zenith of his distress.  'Did you hear me a calling, \nvillain?'\n\nThe figure he addressed made no answer, but putting his hand upon \nthe saddle, sprung into it at a bound, turned the horse's head \ntowards the stable, and was gone in an instant.\n\n'Brisk enough when he is awake,' said the guest.\n\n'Brisk enough, sir!' replied John, looking at the place where the \nhorse had been, as if not yet understanding quite, what had become \nof him.  'He melts, I think.  He goes like a drop of froth.  You \nlook at him, and there he is.  You look at him again, and--there he \nisn't.'\n\nHaving, in the absence of any more words, put this sudden climax to \nwhat he had faintly intended should be a long explanation of the \nwhole life and character of his man, the oracular John Willet led \nthe gentleman up his wide dismantled staircase into the Maypole's \nbest apartment.\n\nIt was spacious enough in all conscience, occupying the whole depth \nof the house, and having at either end a great bay window, as large \nas many modern rooms; in which some few panes of stained glass, \nemblazoned with fragments of armorial bearings, though cracked, and \npatched, and shattered, yet remained; attesting, by their \npresence, that the former owner had made the very light subservient \nto his state, and pressed the sun itself into his list of \nflatterers; bidding it, when it shone into his chamber, reflect the \nbadges of his ancient family, and take new hues and colours from \ntheir pride.\n\nBut those were old days, and now every little ray came and went as \nit would; telling the plain, bare, searching truth.  Although the \nbest room of the inn, it had the melancholy aspect of grandeur in \ndecay, and was much too vast for comfort.  Rich rustling hangings, \nwaving on the walls; and, better far, the rustling of youth and \nbeauty's dress; the light of women's eyes, outshining the tapers \nand their own rich jewels; the sound of gentle tongues, and music, \nand the tread of maiden feet, had once been there, and filled it \nwith delight.  But they were gone, and with them all its gladness.  \nIt was no longer a home; children were never born and bred there; \nthe fireside had become mercenary--a something to be bought and \nsold--a very courtezan: let who would die, or sit beside, or leave \nit, it was still the same--it missed nobody, cared for nobody, had \nequal warmth and smiles for all.  God help the man whose heart ever \nchanges with the world, as an old mansion when it becomes an inn!\n\nNo effort had been made to furnish this chilly waste, but before \nthe broad chimney a colony of chairs and tables had been planted on \na square of carpet, flanked by a ghostly screen, enriched with \nfigures, grinning and grotesque.  After lighting with his own hands \nthe faggots which were heaped upon the hearth, old John withdrew to \nhold grave council with his cook, touching the stranger's \nentertainment; while the guest himself, seeing small comfort in \nthe yet unkindled wood, opened a lattice in the distant window, and \nbasked in a sickly gleam of cold March sun.\n\nLeaving the window now and then, to rake the crackling logs \ntogether, or pace the echoing room from end to end, he closed it \nwhen the fire was quite burnt up, and having wheeled the easiest \nchair into the warmest corner, summoned John Willet.\n\n'Sir,' said John.\n\nHe wanted pen, ink, and paper.  There was an old standish on the \nmantelshelf containing a dusty apology for all three.  Having set \nthis before him, the landlord was retiring, when he motioned him to \nstay.\n\n'There's a house not far from here,' said the guest when he had \nwritten a few lines, 'which you call the Warren, I believe?'\n\nAs this was said in the tone of one who knew the fact, and asked \nthe question as a thing of course, John contented himself with \nnodding his head in the affirmative; at the same time taking one \nhand out of his pockets to cough behind, and then putting it in \nagain.\n\n'I want this note'--said the guest, glancing on what he had \nwritten, and folding it, 'conveyed there without loss of time, and \nan answer brought back here.  Have you a messenger at hand?'\n\nJohn was thoughtful for a minute or thereabouts, and then said Yes.\n\n'Let me see him,' said the guest.\n\nThis was disconcerting; for Joe being out, and Hugh engaged in \nrubbing down the chestnut cob, he designed sending on the errand, \nBarnaby, who had just then arrived in one of his rambles, and who, \nso that he thought himself employed on a grave and serious \nbusiness, would go anywhere.\n\n'Why the truth is,' said John after a long pause, 'that the person \nwho'd go quickest, is a sort of natural, as one may say, sir; and \nthough quick of foot, and as much to be trusted as the post \nitself, he's not good at talking, being touched and flighty, sir.'\n\n'You don't,' said the guest, raising his eyes to John's fat face, \n'you don't mean--what's the fellow's name--you don't mean Barnaby?'\n\n'Yes, I do,' returned the landlord, his features turning quite \nexpressive with surprise.\n\n'How comes he to be here?' inquired the guest, leaning back in his \nchair; speaking in the bland, even tone, from which he never \nvaried; and with the same soft, courteous, never-changing smile \nupon his face.  'I saw him in London last night.'\n\n'He's, for ever, here one hour, and there the next,' returned old \nJohn, after the usual pause to get the question in his mind.  \n'Sometimes he walks, and sometimes runs.  He's known along the road \nby everybody, and sometimes comes here in a cart or chaise, and \nsometimes riding double.  He comes and goes, through wind, rain, \nsnow, and hail, and on the darkest nights.  Nothing hurts HIM.'\n\n'He goes often to the Warren, does he not?' said the guest \ncarelessly.  'I seem to remember his mother telling me something to \nthat effect yesterday.  But I was not attending to the good woman \nmuch.'\n\n'You're right, sir,' John made answer, 'he does.  His father, sir, \nwas murdered in that house.'\n\n'So I have heard,' returned the guest, taking a gold toothpick \nfrom his pocket with the same sweet smile.  'A very disagreeable \ncircumstance for the family.'\n\n'Very,' said John with a puzzled look, as if it occurred to him, \ndimly and afar off, that this might by possibility be a cool way of \ntreating the subject.\n\n'All the circumstances after a murder,' said the guest \nsoliloquising, 'must be dreadfully unpleasant--so much bustle and \ndisturbance--no repose--a constant dwelling upon one subject--and \nthe running in and out, and up and down stairs, intolerable.  I \nwouldn't have such a thing happen to anybody I was nearly \ninterested in, on any account.  'Twould be enough to wear one's \nlife out.--You were going to say, friend--' he added, turning to \nJohn again.\n\n'Only that Mrs Rudge lives on a little pension from the family, and \nthat Barnaby's as free of the house as any cat or dog about it,' \nanswered John.  'Shall he do your errand, sir?'\n\n'Oh yes,' replied the guest.  'Oh certainly.  Let him do it by all \nmeans.  Please to bring him here that I may charge him to be quick.  \nIf he objects to come you may tell him it's Mr Chester.  He will \nremember my name, I dare say.'\n\nJohn was so very much astonished to find who his visitor was, that \nhe could express no astonishment at all, by looks or otherwise, but \nleft the room as if he were in the most placid and imperturbable of \nall possible conditions.  It has been reported that when he got \ndownstairs, he looked steadily at the boiler for ten minutes by \nthe clock, and all that time never once left off shaking his head; \nfor which statement there would seem to be some ground of truth and \nfeasibility, inasmuch as that interval of time did certainly \nelapse, before he returned with Barnaby to the guest's apartment.\n\n'Come hither, lad,' said Mr Chester.  'You know Mr Geoffrey \nHaredale?'\n\nBarnaby laughed, and looked at the landlord as though he would say, \n'You hear him?'  John, who was greatly shocked at this breach of \ndecorum, clapped his finger to his nose, and shook his head in mute \nremonstrance.\n\n'He knows him, sir,' said John, frowning aside at Barnaby, 'as well \nas you or I do.'\n\n'I haven't the pleasure of much acquaintance with the gentleman,' \nreturned his guest.  'YOU may have.  Limit the comparison to \nyourself, my friend.'\n\nAlthough this was said with the same easy affability, and the same \nsmile, John felt himself put down, and laying the indignity at \nBarnaby's door, determined to kick his raven, on the very first \nopportunity.\n\n'Give that,' said the guest, who had by this time sealed the note, \nand who beckoned his messenger towards him as he spoke, 'into Mr \nHaredale's own hands.  Wait for an answer, and bring it back to me \nhere.  If you should find that Mr Haredale is engaged just now, \ntell him--can he remember a message, landlord?'\n\n'When he chooses, sir,' replied John.  'He won't forget this one.'\n\n'How are you sure of that?'\n\nJohn merely pointed to him as he stood with his head bent forward, \nand his earnest gaze fixed closely on his questioner's face; and \nnodded sagely.\n\n'Tell him then, Barnaby, should he be engaged,' said Mr Chester, \n'that I shall be glad to wait his convenience here, and to see him \n(if he will call) at any time this evening.--At the worst I can \nhave a bed here, Willet, I suppose?'\n\nOld John, immensely flattered by the personal notoriety implied in \nthis familiar form of address, answered, with something like a \nknowing look, 'I should believe you could, sir,' and was turning \nover in his mind various forms of eulogium, with the view of \nselecting one appropriate to the qualities of his best bed, when \nhis ideas were put to flight by Mr Chester giving Barnaby the \nletter, and bidding him make all speed away.\n\n'Speed!' said Barnaby, folding the little packet in his breast, \n'Speed!  If you want to see hurry and mystery, come here.  Here!'\n\nWith that, he put his hand, very much to John Willet's horror, on \nthe guest's fine broadcloth sleeve, and led him stealthily to the \nback window.\n\n'Look down there,' he said softly; 'do you mark how they whisper in \neach other's ears; then dance and leap, to make believe they are in \nsport?  Do you see how they stop for a moment, when they think \nthere is no one looking, and mutter among themselves again; and \nthen how they roll and gambol, delighted with the mischief they've \nbeen plotting?  Look at 'em now.  See how they whirl and plunge.  \nAnd now they stop again, and whisper, cautiously together--little \nthinking, mind, how often I have lain upon the grass and watched \nthem.  I say what is it that they plot and hatch?  Do you know?'\n\n'They are only clothes,' returned the guest, 'such as we wear; \nhanging on those lines to dry, and fluttering in the wind.'\n\n'Clothes!' echoed Barnaby, looking close into his face, and falling \nquickly back.  'Ha ha!  Why, how much better to be silly, than as \nwise as you!  You don't see shadowy people there, like those that \nlive in sleep--not you.  Nor eyes in the knotted panes of glass, \nnor swift ghosts when it blows hard, nor do you hear voices in the \nair, nor see men stalking in the sky--not you!  I lead a merrier \nlife than you, with all your cleverness.  You're the dull men.  \nWe're the bright ones.  Ha! ha!  I'll not change with you, clever \nas you are,--not I!'\n\nWith that, he waved his hat above his head, and darted off.\n\n'A strange creature, upon my word!' said the guest, pulling out a \nhandsome box, and taking a pinch of snuff.\n\n'He wants imagination,' said Mr Willet, very slowly, and after a \nlong silence; 'that's what he wants.  I've tried to instil it into \nhim, many and many's the time; but'--John added this in confidence--\n'he an't made for it; that's the fact.'\n\nTo record that Mr Chester smiled at John's remark would be little \nto the purpose, for he preserved the same conciliatory and pleasant \nlook at all times.  He drew his chair nearer to the fire though, as \na kind of hint that he would prefer to be alone, and John, having \nno reasonable excuse for remaining, left him to himself.\n\nVery thoughtful old John Willet was, while the dinner was \npreparing; and if his brain were ever less clear at one time than \nanother, it is but reasonable to suppose that he addled it in no \nslight degree by shaking his head so much that day.  That Mr \nChester, between whom and Mr Haredale, it was notorious to all the \nneighbourhood, a deep and bitter animosity existed, should come \ndown there for the sole purpose, as it seemed, of seeing him, and \nshould choose the Maypole for their place of meeting, and should \nsend to him express, were stumbling blocks John could not overcome.  \nThe only resource he had, was to consult the boiler, and wait \nimpatiently for Barnaby's return.\n\nBut Barnaby delayed beyond all precedent.  The visitor's dinner was \nserved, removed, his wine was set, the fire replenished, the hearth \nclean swept; the light waned without, it grew dusk, became quite \ndark, and still no Barnaby appeared.  Yet, though John Willet was \nfull of wonder and misgiving, his guest sat cross-legged in the \neasy-chair, to all appearance as little ruffled in his thoughts as \nin his dress--the same calm, easy, cool gentleman, without a care \nor thought beyond his golden toothpick.\n\n'Barnaby's late,' John ventured to observe, as he placed a pair of \ntarnished candlesticks, some three feet high, upon the table, and \nsnuffed the lights they held.\n\n'He is rather so,' replied the guest, sipping his wine.  'He will \nnot be much longer, I dare say.'\n\nJohn coughed and raked the fire together.\n\n'As your roads bear no very good character, if I may judge from my \nson's mishap, though,' said Mr Chester, 'and as I have no fancy to \nbe knocked on the head--which is not only disconcerting at the \nmoment, but places one, besides, in a ridiculous position with \nrespect to the people who chance to pick one up--I shall stop here \nto-night.  I think you said you had a bed to spare.'\n\n'Such a bed, sir,' returned John Willet; 'ay, such a bed as few, \neven of the gentry's houses, own.  A fixter here, sir.  I've heard \nsay that bedstead is nigh two hundred years of age.  Your noble \nson--a fine young gentleman--slept in it last, sir, half a year \nago.'\n\n'Upon my life, a recommendation!' said the guest, shrugging his \nshoulders and wheeling his chair nearer to the fire.  'See that it \nbe well aired, Mr Willet, and let a blazing fire be lighted there \nat once.  This house is something damp and chilly.'\n\nJohn raked the faggots up again, more from habit than presence of \nmind, or any reference to this remark, and was about to withdraw, \nwhen a bounding step was heard upon the stair, and Barnaby came \npanting in.\n\n'He'll have his foot in the stirrup in an hour's time,' he cried, \nadvancing.  'He has been riding hard all day--has just come home--\nbut will be in the saddle again as soon as he has eat and drank, to \nmeet his loving friend.'\n\n'Was that his message?' asked the visitor, looking up, but without \nthe smallest discomposure--or at least without the show of any.\n\n'All but the last words,' Barnaby rejoined.  'He meant those.  I \nsaw that, in his face.'\n\n'This for your pains,' said the other, putting money in his hand, \nand glancing at him steadfastly.'   This for your pains, sharp \nBarnaby.'\n\n'For Grip, and me, and Hugh, to share among us,' he rejoined, \nputting it up, and nodding, as he counted it on his fingers.  'Grip \none, me two, Hugh three; the dog, the goat, the cats--well, we \nshall spend it pretty soon, I warn you.  Stay.--Look.  Do you wise \nmen see nothing there, now?'\n\nHe bent eagerly down on one knee, and gazed intently at the smoke, \nwhich was rolling up the chimney in a thick black cloud.  John \nWillet, who appeared to consider himself particularly and chiefly \nreferred to under the term wise men, looked that way likewise, and \nwith great solidity of feature.\n\n'Now, where do they go to, when they spring so fast up there,' \nasked Barnaby; 'eh?  Why do they tread so closely on each other's \nheels, and why are they always in a hurry--which is what you blame \nme for, when I only take pattern by these busy folk about me?  More \nof 'em! catching to each other's skirts; and as fast as they go, \nothers come!  What a merry dance it is!  I would that Grip and I \ncould frisk like that!'\n\n'What has he in that basket at his back?' asked the guest after a \nfew moments, during which Barnaby was still bending down to look \nhigher up the chimney, and earnestly watching the smoke.\n\n'In this?' he answered, jumping up, before John Willet could reply--\nshaking it as he spoke, and stooping his head to listen.  'In \nthis!  What is there here?  Tell him!'\n\n'A devil, a devil, a devil!' cried a hoarse voice.\n\n'Here's money!' said Barnaby, chinking it in his hand, 'money for a \ntreat, Grip!'\n\n'Hurrah!  Hurrah!  Hurrah!' replied the raven, 'keep up your \nspirits.  Never say die.  Bow, wow, wow!'\n\nMr Willet, who appeared to entertain strong doubts whether a \ncustomer in a laced coat and fine linen could be supposed to have \nany acquaintance even with the existence of such unpolite gentry as \nthe bird claimed to belong to, took Barnaby off at this juncture, \nwith the view of preventing any other improper declarations, and \nquitted the room with his very best bow.\n\n\n\nChapter 11\n\n\nThere was great news that night for the regular Maypole customers, \nto each of whom, as he straggled in to occupy his allotted seat in \nthe chimney-corner, John, with a most impressive slowness of \ndelivery, and in an apoplectic whisper, communicated the fact that \nMr Chester was alone in the large room upstairs, and was waiting \nthe arrival of Mr Geoffrey Haredale, to whom he had sent a letter \n(doubtless of a threatening nature) by the hands of Barnaby, then \nand there present.\n\nFor a little knot of smokers and solemn gossips, who had seldom any \nnew topics of discussion, this was a perfect Godsend.  Here was a \ngood, dark-looking mystery progressing under that very roof--\nbrought home to the fireside, as it were, and enjoyable without the \nsmallest pains or trouble.  It is extraordinary what a zest and \nrelish it gave to the drink, and how it heightened the flavour of \nthe tobacco.  Every man smoked his pipe with a face of grave and \nserious delight, and looked at his neighbour with a sort of quiet \ncongratulation.  Nay, it was felt to be such a holiday and special \nnight, that, on the motion of little Solomon Daisy, every man \n(including John himself) put down his sixpence for a can of flip, \nwhich grateful beverage was brewed with all despatch, and set down \nin the midst of them on the brick floor; both that it might simmer \nand stew before the fire, and that its fragrant steam, rising up \namong them, and mixing with the wreaths of vapour from their pipes, \nmight shroud them in a delicious atmosphere of their own, and shut \nout all the world.  The very furniture of the room seemed to \nmellow and deepen in its tone; the ceiling and walls looked \nblacker and more highly polished, the curtains of a ruddier red; \nthe fire burnt clear and high, and the crickets in the hearthstone \nchirped with a more than wonted satisfaction.\n\nThere were present two, however, who showed but little interest in \nthe general contentment.  Of these, one was Barnaby himself, who \nslept, or, to avoid being beset with questions, feigned to sleep, \nin the chimney-corner; the other, Hugh, who, sleeping too, lay \nstretched upon the bench on the opposite side, in the full glare of \nthe blazing fire.\n\nThe light that fell upon this slumbering form, showed it in all its \nmuscular and handsome proportions.  It was that of a young man, of \na hale athletic figure, and a giant's strength, whose sunburnt face \nand swarthy throat, overgrown with jet black hair, might have \nserved a painter for a model.  Loosely attired, in the coarsest and \nroughest garb, with scraps of straw and hay--his usual bed--\nclinging here and there, and mingling with his uncombed locks, he \nhad fallen asleep in a posture as careless as his dress.  The \nnegligence and disorder of the whole man, with something fierce and \nsullen in his features, gave him a picturesque appearance, that \nattracted the regards even of the Maypole customers who knew him \nwell, and caused Long Parkes to say that Hugh looked more like a \npoaching rascal to-night than ever he had seen him yet.\n\n'He's waiting here, I suppose,' said Solomon, 'to take Mr \nHaredale's horse.'\n\n'That's it, sir,' replied John Willet.  'He's not often in the \nhouse, you know.  He's more at his ease among horses than men.  I \nlook upon him as a animal himself.'\n\nFollowing up this opinion with a shrug that seemed meant to say, \n'we can't expect everybody to be like us,' John put his pipe into \nhis mouth again, and smoked like one who felt his superiority over \nthe general run of mankind.\n\n'That chap, sir,' said John, taking it out again after a time, and \npointing at him with the stem, 'though he's got all his faculties \nabout him--bottled up and corked down, if I may say so, somewheres \nor another--'\n\n'Very good!' said Parkes, nodding his head.  'A very good \nexpression, Johnny.  You'll be a tackling somebody presently.  \nYou're in twig to-night, I see.'\n\n'Take care,' said Mr Willet, not at all grateful for the \ncompliment, 'that I don't tackle you, sir, which I shall certainly \nendeavour to do, if you interrupt me when I'm making observations.--\nThat chap, I was a saying, though he has all his faculties about \nhim, somewheres or another, bottled up and corked down, has no more \nimagination than Barnaby has.  And why hasn't he?'\n\nThe three friends shook their heads at each other; saying by that \naction, without the trouble of opening their lips, 'Do you observe \nwhat a philosophical mind our friend has?'\n\n'Why hasn't he?' said John, gently striking the table with his open \nhand.  'Because they was never drawed out of him when he was a \nboy.  That's why.  What would any of us have been, if our fathers \nhadn't drawed our faculties out of us?  What would my boy Joe have \nbeen, if I hadn't drawed his faculties out of him?--Do you mind \nwhat I'm a saying of, gentlemen?'\n\n'Ah!  we mind you,' cried Parkes.  'Go on improving of us, Johnny.'\n\n'Consequently, then,' said Mr Willet, 'that chap, whose mother was \nhung when he was a little boy, along with six others, for passing \nbad notes--and it's a blessed thing to think how many people are \nhung in batches every six weeks for that, and such like offences, \nas showing how wide awake our government is--that chap that was \nthen turned loose, and had to mind cows, and frighten birds away, \nand what not, for a few pence to live on, and so got on by degrees \nto mind horses, and to sleep in course of time in lofts and litter, \ninstead of under haystacks and hedges, till at last he come to be \nhostler at the Maypole for his board and lodging and a annual \ntrifle--that chap that can't read nor write, and has never had much \nto do with anything but animals, and has never lived in any way but \nlike the animals he has lived among, IS a animal.  And,' said Mr \nWillet, arriving at his logical conclusion, 'is to be treated \naccordingly.'\n\n'Willet,' said Solomon Daisy, who had exhibited some impatience at \nthe intrusion of so unworthy a subject on their more interesting \ntheme, 'when Mr Chester come this morning, did he order the large \nroom?'\n\n'He signified, sir,' said John, 'that he wanted a large apartment.  \nYes.  Certainly.'\n\n'Why then, I'll tell you what,' said Solomon, speaking softly and \nwith an earnest look.  'He and Mr Haredale are going to fight a \nduel in it.'\n\nEverybody looked at Mr Willet, after this alarming suggestion.  Mr \nWillet looked at the fire, weighing in his own mind the effect \nwhich such an occurrence would be likely to have on the establishment.\n\n'Well,' said John, 'I don't know--I am sure--I remember that when I \nwent up last, he HAD put the lights upon the mantel-shelf.'\n\n'It's as plain,' returned Solomon, 'as the nose on Parkes's face'--\nMr Parkes, who had a large nose, rubbed it, and looked as if he \nconsidered this a personal allusion--'they'll fight in that room.  \nYou know by the newspapers what a common thing it is for gentlemen \nto fight in coffee-houses without seconds.  One of 'em will be \nwounded or perhaps killed in this house.'\n\n'That was a challenge that Barnaby took then, eh?' said John.\n\n'--Inclosing a slip of paper with the measure of his sword upon it, \nI'll bet a guinea,' answered the little man.  'We know what sort of \ngentleman Mr Haredale is.  You have told us what Barnaby said about \nhis looks, when he came back.  Depend upon it, I'm right.  Now, \nmind.'\n\nThe flip had had no flavour till now.  The tobacco had been of mere \nEnglish growth, compared with its present taste.  A duel in that \ngreat old rambling room upstairs, and the best bed ordered already \nfor the wounded man!\n\n'Would it be swords or pistols, now?' said John.\n\n'Heaven knows.  Perhaps both,' returned Solomon.  'The gentlemen \nwear swords, and may easily have pistols in their pockets--most \nlikely have, indeed.  If they fire at each other without effect, \nthen they'll draw, and go to work in earnest.'\n\nA shade passed over Mr Willet's face as he thought of broken \nwindows and disabled furniture, but bethinking himself that one of \nthe parties would probably be left alive to pay the damage, he \nbrightened up again.\n\n'And then,' said Solomon, looking from face to face, 'then we shall \nhave one of those stains upon the floor that never come out.  If Mr \nHaredale wins, depend upon it, it'll be a deep one; or if he loses, \nit will perhaps be deeper still, for he'll never give in unless \nhe's beaten down.  We know him better, eh?'\n\n'Better indeed!' they whispered all together.\n\n'As to its ever being got out again,' said Solomon, 'I tell you it \nnever will, or can be.  Why, do you know that it has been tried, at \na certain house we are acquainted with?'\n\n'The Warren!' cried John.  'No, sure!'\n\n'Yes, sure--yes.  It's only known by very few.  It has been \nwhispered about though, for all that.  They planed the board away, \nbut there it was.  They went deep, but it went deeper.  They put \nnew boards down, but there was one great spot that came through \nstill, and showed itself in the old place.  And--harkye--draw \nnearer--Mr Geoffrey made that room his study, and sits there, \nalways, with his foot (as I have heard) upon it; and he believes, \nthrough thinking of it long and very much, that it will never fade \nuntil he finds the man who did the deed.'\n\nAs this recital ended, and they all drew closer round the fire, the \ntramp of a horse was heard without.\n\n'The very man!' cried John, starting up.  'Hugh!  Hugh!'\n\nThe sleeper staggered to his feet, and hurried after him.  John \nquickly returned, ushering in with great attention and deference \n(for Mr Haredale was his landlord) the long-expected visitor, who \nstrode into the room clanking his heavy boots upon the floor; and \nlooking keenly round upon the bowing group, raised his hat in \nacknowledgment of their profound respect.\n\n'You have a stranger here, Willet, who sent to me,' he said, in a \nvoice which sounded naturally stern and deep.  'Where is he?'\n\n'In the great room upstairs, sir,' answered John.\n\n'Show the way.  Your staircase is dark, I know.  Gentlemen, good \nnight.'\n\nWith that, he signed to the landlord to go on before; and went \nclanking out, and up the stairs; old John, in his agitation, \ningeniously lighting everything but the way, and making a stumble \nat every second step.\n\n'Stop!' he said, when they reached the landing.  'I can announce \nmyself.  Don't wait.'\n\nHe laid his hand upon the door, entered, and shut it heavily.  Mr \nWillet was by no means disposed to stand there listening by \nhimself, especially as the walls were very thick; so descended, \nwith much greater alacrity than he had come up, and joined his \nfriends below.\n\n\n\nChapter 12\n\n\nThere was a brief pause in the state-room of the Maypole, as Mr \nHaredale tried the lock to satisfy himself that he had shut the \ndoor securely, and, striding up the dark chamber to where the \nscreen inclosed a little patch of light and warmth, presented \nhimself, abruptly and in silence, before the smiling guest.\n\nIf the two had no greater sympathy in their inward thoughts than in \ntheir outward bearing and appearance, the meeting did not seem \nlikely to prove a very calm or pleasant one.  With no great \ndisparity between them in point of years, they were, in every other \nrespect, as unlike and far removed from each other as two men could \nwell be.  The one was soft-spoken, delicately made, precise, and \nelegant; the other, a burly square-built man, negligently dressed, \nrough and abrupt in manner, stern, and, in his present mood, \nforbidding both in look and speech.  The one preserved a calm and \nplacid smile; the other, a distrustful frown.  The new-comer, \nindeed, appeared bent on showing by his every tone and gesture his \ndetermined opposition and hostility to the man he had come to meet.  \nThe guest who received him, on the other hand, seemed to feel that \nthe contrast between them was all in his favour, and to derive a \nquiet exultation from it which put him more at his ease than ever.\n\n'Haredale,' said this gentleman, without the least appearance of \nembarrassment or reserve, 'I am very glad to see you.'\n\n'Let us dispense with compliments.  They are misplaced between us,' \nreturned the other, waving his hand, 'and say plainly what we have \nto say.  You have asked me to meet you.  I am here.  Why do we \nstand face to face again?'\n\n'Still the same frank and sturdy character, I see!'\n\n'Good or bad, sir, I am,' returned the other, leaning his arm upon \nthe chimney-piece, and turning a haughty look upon the occupant of \nthe easy-chair, 'the man I used to be.  I have lost no old likings \nor dislikings; my memory has not failed me by a hair's-breadth.  \nYou ask me to give you a meeting.  I say, I am here.'\n\n'Our meeting, Haredale,' said Mr Chester, tapping his snuff-box, \nand following with a smile the impatient gesture he had made--\nperhaps unconsciously--towards his sword, 'is one of conference and \npeace, I hope?'\n\n'I have come here,' returned the other, 'at your desire, holding \nmyself bound to meet you, when and where you would.  I have not \ncome to bandy pleasant speeches, or hollow professions.  You are a \nsmooth man of the world, sir, and at such play have me at a \ndisadvantage.  The very last man on this earth with whom I would \nenter the lists to combat with gentle compliments and masked faces, \nis Mr Chester, I do assure you.  I am not his match at such \nweapons, and have reason to believe that few men are.'\n\n'You do me a great deal of honour Haredale,' returned the other, \nmost composedly, 'and I thank you.  I will be frank with you--'\n\n'I beg your pardon--will be what?'\n\n'Frank--open--perfectly candid.'\n\n'Hab!' cried Mr Haredale, drawing his breath.  'But don't let me \ninterrupt you.'\n\n'So resolved am I to hold this course,' returned the other, tasting \nhis wine with great deliberation; 'that I have determined not to \nquarrel with you, and not to be betrayed into a warm expression or \na hasty word.'\n\n'There again,' said Mr Haredale, 'you have me at a great advantage.  \nYour self-command--'\n\n'Is not to be disturbed, when it will serve my purpose, you would \nsay'--rejoined the other, interrupting him with the same \ncomplacency.  'Granted.  I allow it.  And I have a purpose to serve \nnow.  So have you.  I am sure our object is the same.  Let us \nattain it like sensible men, who have ceased to be boys some time.--\nDo you drink?'\n\n'With my friends,' returned the other.\n\n'At least,' said Mr Chester, 'you will be seated?'\n\n'I will stand,' returned Mr Haredale impatiently, 'on this \ndismantled, beggared hearth, and not pollute it, fallen as it is, \nwith mockeries.  Go on.'\n\n'You are wrong, Haredale,' said the other, crossing his legs, and \nsmiling as he held his glass up in the bright glow of the fire.  \n'You are really very wrong.  The world is a lively place enough, in \nwhich we must accommodate ourselves to circumstances, sail with the \nstream as glibly as we can, be content to take froth for substance, \nthe surface for the depth, the counterfeit for the real coin.  I \nwonder no philosopher has ever established that our globe itself is \nhollow.  It should be, if Nature is consistent in her works.'\n\n'YOU think it is, perhaps?'\n\n'I should say,' he returned, sipping his wine, 'there could be no \ndoubt about it.  Well; we, in trifling with this jingling toy, have \nhad the ill-luck to jostle and fall out.  We are not what the world \ncalls friends; but we are as good and true and loving friends for \nall that, as nine out of every ten of those on whom it bestows the \ntitle.  You have a niece, and I a son--a fine lad, Haredale, but \nfoolish.  They fall in love with each other, and form what this \nsame world calls an attachment; meaning a something fanciful and \nfalse like the rest, which, if it took its own free time, would \nbreak like any other bubble.  But it may not have its own free \ntime--will not, if they are left alone--and the question is, shall \nwe two, because society calls us enemies, stand aloof, and let them \nrush into each other's arms, when, by approaching each other \nsensibly, as we do now, we can prevent it, and part them?'\n\n'I love my niece,' said Mr Haredale, after a short silence.  'It \nmay sound strangely in your ears; but I love her.'\n\n'Strangely, my good fellow!' cried Mr Chester, lazily filling his \nglass again, and pulling out his toothpick.  'Not at all.  I like \nNed too--or, as you say, love him--that's the word among such near \nrelations.  I'm very fond of Ned.  He's an amazingly good fellow, \nand a handsome fellow--foolish and weak as yet; that's all.  But \nthe thing is, Haredale--for I'll be very frank, as I told you I \nwould at first--independently of any dislike that you and I might \nhave to being related to each other, and independently of the \nreligious differences between us--and damn it, that's important--I \ncouldn't afford a match of this description.  Ned and I couldn't do \nit.  It's impossible.'\n\n'Curb your tongue, in God's name, if this conversation is to last,' \nretorted Mr Haredale fiercely.  'I have said I love my niece.  Do \nyou think that, loving her, I would have her fling her heart away \non any man who had your blood in his veins?'\n\n'You see,' said the other, not at all disturbed, 'the advantage of \nbeing so frank and open.  Just what I was about to add, upon my \nhonour!  I am amazingly attached to Ned--quite doat upon him, \nindeed--and even if we could afford to throw ourselves away, that \nvery objection would be quite insuperable.--I wish you'd take some \nwine?'\n\n'Mark me,' said Mr Haredale, striding to the table, and laying his \nhand upon it heavily.  'If any man believes--presumes to think--\nthat I, in word or deed, or in the wildest dream, ever entertained \nremotely the idea of Emma Haredale's favouring the suit of any one \nwho was akin to you--in any way--I care not what--he lies.  He \nlies, and does me grievous wrong, in the mere thought.'\n\n'Haredale,' returned the other, rocking himself to and fro as in \nassent, and nodding at the fire, 'it's extremely manly, and really \nvery generous in you, to meet me in this unreserved and handsome \nway.  Upon my word, those are exactly my sentiments, only \nexpressed with much more force and power than I could use--you know \nmy sluggish nature, and will forgive me, I am sure.'\n\n'While I would restrain her from all correspondence with your son, \nand sever their intercourse here, though it should cause her \ndeath,' said Mr Haredale, who had been pacing to and fro, 'I would \ndo it kindly and tenderly if I can.  I have a trust to discharge, \nwhich my nature is not formed to understand, and, for this reason, \nthe bare fact of there being any love between them comes upon me \nto-night, almost for the first time.'\n\n'I am more delighted than I can possibly tell you,' rejoined Mr \nChester with the utmost blandness, 'to find my own impression so \nconfirmed.  You see the advantage of our having met.  We understand \neach other.  We quite agree.  We have a most complete and thorough \nexplanation, and we know what course to take.--Why don't you taste \nyour tenant's wine?  It's really very good.'\n\n'Pray who,' said Mr Haredale, 'have aided Emma, or your son?  Who \nare their go-betweens, and agents--do you know?'\n\n'All the good people hereabouts--the neighbourhood in general, I \nthink,' returned the other, with his most affable smile.  'The \nmessenger I sent to you to-day, foremost among them all.'\n\n'The idiot?  Barnaby?'\n\n'You are surprised?  I am glad of that, for I was rather so myself.  \nYes.  I wrung that from his mother--a very decent sort of woman--\nfrom whom, indeed, I chiefly learnt how serious the matter had \nbecome, and so determined to ride out here to-day, and hold a \nparley with you on this neutral ground.--You're stouter than you \nused to be, Haredale, but you look extremely well.'\n\n'Our business, I presume, is nearly at an end,' said Mr Haredale, \nwith an expression of impatience he was at no pains to conceal.  \n'Trust me, Mr Chester, my niece shall change from this time.  I \nwill appeal,' he added in a lower tone, 'to her woman's heart, her \ndignity, her pride, her duty--'\n\n'I shall do the same by Ned,' said Mr Chester, restoring some \nerrant faggots to their places in the grate with the toe of his \nboot.  'If there is anything real in this world, it is those \namazingly fine feelings and those natural obligations which must \nsubsist between father and son.  I shall put it to him on every \nground of moral and religious feeling.  I shall represent to him \nthat we cannot possibly afford it--that I have always looked \nforward to his marrying well, for a genteel provision for myself in \nthe autumn of life--that there are a great many clamorous dogs to \npay, whose claims are perfectly just and right, and who must be \npaid out of his wife's fortune.  In short, that the very highest \nand most honourable feelings of our nature, with every \nconsideration of filial duty and affection, and all that sort of \nthing, imperatively demand that he should run away with an \nheiress.'\n\n'And break her heart as speedily as possible?' said Mr Haredale, \ndrawing on his glove.\n\n'There Ned will act exactly as he pleases,' returned the other, \nsipping his wine; 'that's entirely his affair.  I wouldn't for the \nworld interfere with my son, Haredale, beyond a certain point.  The \nrelationship between father and son, you know, is positively quite \na holy kind of bond.--WON'T you let me persuade you to take one \nglass of wine?  Well! as you please, as you please,' he added, \nhelping himself again.\n\n'Chester,' said Mr Haredale, after a short silence, during which he \nhad eyed his smiling face from time to time intently, 'you have the \nhead and heart of an evil spirit in all matters of deception.'\n\n'Your health!' said the other, with a nod.  'But I have interrupted \nyou--'\n\n'If now,' pursued Mr Haredale, 'we should find it difficult to \nseparate these young people, and break off their intercourse--if, \nfor instance, you find it difficult on your side, what course do \nyou intend to take?'\n\n'Nothing plainer, my good fellow, nothing easier,' returned the \nother, shrugging his shoulders and stretching himself more \ncomfortably before the fire.  'I shall then exert those powers on \nwhich you flatter me so highly--though, upon my word, I don't \ndeserve your compliments to their full extent--and resort to a few \nlittle trivial subterfuges for rousing jealousy and resentment.  \nYou see?'\n\n'In short, justifying the means by the end, we are, as a last \nresource for tearing them asunder, to resort to treachery and--and \nlying,' said Mr Haredale.\n\n'Oh dear no.  Fie, fie!' returned the other, relishing a pinch of \nsnuff extremely.  'Not lying.  Only a little management, a little \ndiplomacy, a little--intriguing, that's the word.'\n\n'I wish,' said Mr Haredale, moving to and fro, and stopping, and \nmoving on again, like one who was ill at ease, 'that this could \nhave been foreseen or prevented.  But as it has gone so far, and it \nis necessary for us to act, it is of no use shrinking or \nregretting.  Well! I shall second your endeavours to the utmost of \nmy power.  There is one topic in the whole wide range of human \nthoughts on which we both agree.  We shall act in concert, but \napart.  There will be no need, I hope, for us to meet again.'\n\n'Are you going?' said Mr Chester, rising with a graceful indolence.  \n'Let me light you down the stairs.'\n\n'Pray keep your seat,' returned the other drily, 'I know the way.  \nSo, waving his hand slightly, and putting on his hat as he turned \nupon his heel, he went clanking out as he had come, shut the door \nbehind him, and tramped down the echoing stairs.\n\n'Pah!  A very coarse animal, indeed!' said Mr Chester, composing \nhimself in the easy-chair again.  'A rough brute.  Quite a human \nbadger!'\n\nJohn Willet and his friends, who had been listening intently for \nthe clash of swords, or firing of pistols in the great room, and \nhad indeed settled the order in which they should rush in when \nsummoned--in which procession old John had carefully arranged that \nhe should bring up the rear--were very much astonished to see Mr \nHaredale come down without a scratch, call for his horse, and ride \naway thoughtfully at a footpace.  After some consideration, it was \ndecided that he had left the gentleman above, for dead, and had \nadopted this stratagem to divert suspicion or pursuit.\n\nAs this conclusion involved the necessity of their going upstairs \nforthwith, they were about to ascend in the order they had agreed \nupon, when a smart ringing at the guest's bell, as if he had pulled \nit vigorously, overthrew all their speculations, and involved them \nin great uncertainty and doubt.  At length Mr Willet agreed to go \nupstairs himself, escorted by Hugh and Barnaby, as the strongest \nand stoutest fellows on the premises, who were to make their \nappearance under pretence of clearing away the glasses.\n\nUnder this protection, the brave and broad-faced John boldly \nentered the room, half a foot in advance, and received an order for \na boot-jack without trembling.  But when it was brought, and he \nleant his sturdy shoulder to the guest, Mr Willet was observed to \nlook very hard into his boots as he pulled them off, and, by \nopening his eyes much wider than usual, to appear to express some \nsurprise and disappointment at not finding them full of blood.  He \ntook occasion, too, to examine the gentleman as closely as he \ncould, expecting to discover sundry loopholes in his person, \npierced by his adversary's sword.  Finding none, however, and \nobserving in course of time that his guest was as cool and \nunruffled, both in his dress and temper, as he had been all day, \nold John at last heaved a deep sigh, and began to think no duel had \nbeen fought that night.\n\n'And now, Willet,' said Mr Chester, 'if the room's well aired, I'll \ntry the merits of that famous bed.'\n\n'The room, sir,' returned John, taking up a candle, and nudging \nBarnaby and Hugh to accompany them, in case the gentleman should \nunexpectedly drop down faint or dead from some internal wound, 'the \nroom's as warm as any toast in a tankard.  Barnaby, take you that \nother candle, and go on before.  Hugh!  Follow up, sir, with the \neasy-chair.'\n\nIn this order--and still, in his earnest inspection, holding his \ncandle very close to the guest; now making him feel extremely warm \nabout the legs, now threatening to set his wig on fire, and \nconstantly begging his pardon with great awkwardness and \nembarrassment--John led the party to the best bedroom, which was \nnearly as large as the chamber from which they had come, and held, \ndrawn out near the fire for warmth, a great old spectral bedstead, \nhung with faded brocade, and ornamented, at the top of each carved \npost, with a plume of feathers that had once been white, but with \ndust and age had now grown hearse-like and funereal.\n\n'Good night, my friends,' said Mr Chester with a sweet smile, \nseating himself, when he had surveyed the room from end to end, in \nthe easy-chair which his attendants wheeled before the fire.  'Good \nnight!  Barnaby, my good fellow, you say some prayers before you go \nto bed, I hope?'\n\nBarnaby nodded.  'He has some nonsense that he calls his prayers, \nsir,' returned old John, officiously.  'I'm afraid there an't much \ngood in em.'\n\n'And Hugh?' said Mr Chester, turning to him.\n\n'Not I,' he answered.  'I know his'--pointing to Barnaby--'they're \nwell enough.  He sings 'em sometimes in the straw.  I listen.'\n\n'He's quite a animal, sir,' John whispered in his ear with dignity.  \n'You'll excuse him, I'm sure.  If he has any soul at all, sir, it \nmust be such a very small one, that it don't signify what he does \nor doesn't in that way.  Good night, sir!'\n\nThe guest rejoined 'God bless you!' with a fervour that was quite \naffecting; and John, beckoning his guards to go before, bowed \nhimself out of the room, and left him to his rest in the Maypole's \nancient bed.\n\n\n\nChapter 13\n\n\nIf Joseph Willet, the denounced and proscribed of 'prentices, had \nhappened to be at home when his father's courtly guest presented \nhimself before the Maypole door--that is, if it had not perversely \nchanced to be one of the half-dozen days in the whole year on which \nhe was at liberty to absent himself for as many hours without \nquestion or reproach--he would have contrived, by hook or crook, to \ndive to the very bottom of Mr Chester's mystery, and to come at his \npurpose with as much certainty as though he had been his \nconfidential adviser.  In that fortunate case, the lovers would \nhave had quick warning of the ills that threatened them, and the \naid of various timely and wise suggestions to boot; for all Joe's \nreadiness of thought and action, and all his sympathies and good \nwishes, were enlisted in favour of the young people, and were \nstaunch in devotion to their cause.  Whether this disposition arose \nout of his old prepossessions in favour of the young lady, whose \nhistory had surrounded her in his mind, almost from his cradle, \nwith circumstances of unusual interest; or from his attachment \ntowards the young gentleman, into whose confidence he had, through \nhis shrewdness and alacrity, and the rendering of sundry important \nservices as a spy and messenger, almost imperceptibly glided; \nwhether they had their origin in either of these sources, or in the \nhabit natural to youth, or in the constant badgering and worrying \nof his venerable parent, or in any hidden little love affair of his \nown which gave him something of a fellow-feeling in the matter, it \nis needless to inquire--especially as Joe was out of the way, and \nhad no opportunity on that particular occasion of testifying to his \nsentiments either on one side or the other.\n\nIt was, in fact, the twenty-fifth of March, which, as most people \nknow to their cost, is, and has been time out of mind, one of those \nunpleasant epochs termed quarter-days.  On this twenty-fifth of \nMarch, it was John Willet's pride annually to settle, in hard cash, \nhis account with a certain vintner and distiller in the city of \nLondon; to give into whose hands a canvas bag containing its exact \namount, and not a penny more or less, was the end and object of a \njourney for Joe, so surely as the year and day came round.\n\nThis journey was performed upon an old grey mare, concerning whom \nJohn had an indistinct set of ideas hovering about him, to the \neffect that she could win a plate or cup if she tried.  She never \nhad tried, and probably never would now, being some fourteen or \nfifteen years of age, short in wind, long in body, and rather the \nworse for wear in respect of her mane and tail.  Notwithstanding \nthese slight defects, John perfectly gloried in the animal; and \nwhen she was brought round to the door by Hugh, actually retired \ninto the bar, and there, in a secret grove of lemons, laughed with \npride.\n\n'There's a bit of horseflesh, Hugh!' said John, when he had \nrecovered enough self-command to appear at the door again.  \n'There's a comely creature!  There's high mettle!  There's bone!'\n\nThere was bone enough beyond all doubt; and so Hugh seemed to \nthink, as he sat sideways in the saddle, lazily doubled up with his \nchin nearly touching his knees; and heedless of the dangling \nstirrups and loose bridle-rein, sauntered up and down on the little \ngreen before the door.\n\n'Mind you take good care of her, sir,' said John, appealing from \nthis insensible person to his son and heir, who now appeared, fully \nequipped and ready.  'Don't you ride hard.'\n\n'I should be puzzled to do that, I think, father,' Joe replied, \ncasting a disconsolate look at the animal.\n\n'None of your impudence, sir, if you please,' retorted old John.  \n'What would you ride, sir?  A wild ass or zebra would be too tame \nfor you, wouldn't he, eh sir?  You'd like to ride a roaring lion, \nwouldn't you, sir, eh sir?  Hold your tongue, sir.'  When Mr \nWillet, in his differences with his son, had exhausted all the \nquestions that occurred to him, and Joe had said nothing at all in \nanswer, he generally wound up by bidding him hold his tongue.\n\n'And what does the boy mean,' added Mr Willet, after he had stared \nat him for a little time, in a species of stupefaction, 'by cocking \nhis hat, to such an extent!  Are you going to kill the wintner, sir?'\n\n'No,' said Joe, tartly; 'I'm not.  Now your mind's at ease, \nfather.'\n\n'With a milintary air, too!' said Mr Willet, surveying him from top \nto toe; 'with a swaggering, fire-eating, biling-water drinking \nsort of way with him!  And what do you mean by pulling up the \ncrocuses and snowdrops, eh sir?'\n\n'It's only a little nosegay,' said Joe, reddening.  'There's no \nharm in that, I hope?'\n\n'You're a boy of business, you are, sir!' said Mr Willet, \ndisdainfully, 'to go supposing that wintners care for nosegays.'\n\n'I don't suppose anything of the kind,' returned Joe.  'Let them \nkeep their red noses for bottles and tankards.  These are going to \nMr Varden's house.'\n\n'And do you suppose HE minds such things as crocuses?' demanded \nJohn.\n\n'I don't know, and to say the truth, I don't care,' said Joe.  \n'Come, father, give me the money, and in the name of patience let \nme go.'\n\n'There it is, sir,' replied John; 'and take care of it; and mind \nyou don't make too much haste back, but give the mare a long rest.--\nDo you mind?'\n\n'Ay, I mind,' returned Joe.  'She'll need it, Heaven knows.'\n\n'And don't you score up too much at the Black Lion,' said John.  \n'Mind that too.'\n\n'Then why don't you let me have some money of my own?' retorted \nJoe, sorrowfully; 'why don't you, father?  What do you send me into \nLondon for, giving me only the right to call for my dinner at the \nBlack Lion, which you're to pay for next time you go, as if I was \nnot to be trusted with a few shillings?  Why do you use me like \nthis?  It's not right of you.  You can't expect me to be quiet \nunder it.'\n\n'Let him have money!' cried John, in a drowsy reverie.  'What does \nhe call money--guineas?  Hasn't he got money?  Over and above the \ntolls, hasn't he one and sixpence?'\n\n'One and sixpence!' repeated his son contemptuously.\n\n'Yes, sir,' returned John, 'one and sixpence.  When I was your age, \nI had never seen so much money, in a heap.  A shilling of it is in \ncase of accidents--the mare casting a shoe, or the like of that.  \nThe other sixpence is to spend in the diversions of London; and the \ndiversion I recommend is going to the top of the Monument, and \nsitting there.  There's no temptation there, sir--no drink--no \nyoung women--no bad characters of any sort--nothing but imagination.  \nThat's the way I enjoyed myself when I was your age, sir.'\n\nTo this, Joe made no answer, but beckoning Hugh, leaped into the \nsaddle and rode away; and a very stalwart, manly horseman he \nlooked, deserving a better charger than it was his fortune to \nbestride.  John stood staring after him, or rather after the grey \nmare (for he had no eyes for her rider), until man and beast had \nbeen out of sight some twenty minutes, when he began to think they \nwere gone, and slowly re-entering the house, fell into a gentle doze.\n\nThe unfortunate grey mare, who was the agony of Joe's life, \nfloundered along at her own will and pleasure until the Maypole was \nno longer visible, and then, contracting her legs into what in a \npuppet would have been looked upon as a clumsy and awkward \nimitation of a canter, mended her pace all at once, and did it of \nher own accord.  The acquaintance with her rider's usual mode of \nproceeding, which suggested this improvement in hers, impelled her \nlikewise to turn up a bye-way, leading--not to London, but through \nlanes running parallel with the road they had come, and passing \nwithin a few hundred yards of the Maypole, which led finally to an \ninclosure surrounding a large, old, red-brick mansion--the same of \nwhich mention was made as the Warren in the first chapter of this \nhistory.  Coming to a dead stop in a little copse thereabout, she \nsuffered her rider to dismount with right goodwill, and to tie her \nto the trunk of a tree.\n\n'Stay there, old girl,' said Joe, 'and let us see whether there's \nany little commission for me to-day.'  So saying, he left her to \nbrowze upon such stunted grass and weeds as happened to grow within \nthe length of her tether, and passing through a wicket gate, \nentered the grounds on foot.\n\nThe pathway, after a very few minutes' walking, brought him close \nto the house, towards which, and especially towards one particular \nwindow, he directed many covert glances.  It was a dreary, silent \nbuilding, with echoing courtyards, desolated turret-chambers, and \nwhole suites of rooms shut up and mouldering to ruin.\n\nThe terrace-garden, dark with the shade of overhanging trees, had \nan air of melancholy that was quite oppressive.  Great iron gates, \ndisused for many years, and red with rust, drooping on their hinges \nand overgrown with long rank grass, seemed as though they tried to \nsink into the ground, and hide their fallen state among the \nfriendly weeds.  The fantastic monsters on the walls, green with \nage and damp, and covered here and there with moss, looked grim and \ndesolate.  There was a sombre aspect even on that part of the \nmansion which was inhabited and kept in good repair, that struck \nthe beholder with a sense of sadness; of something forlorn and \nfailing, whence cheerfulness was banished.  It would have been \ndifficult to imagine a bright fire blazing in the dull and darkened \nrooms, or to picture any gaiety of heart or revelry that the \nfrowning walls shut in.  It seemed a place where such things had \nbeen, but could be no more--the very ghost of a house, haunting the \nold spot in its old outward form, and that was all.\n\nMuch of this decayed and sombre look was attributable, no doubt, to \nthe death of its former master, and the temper of its present \noccupant; but remembering the tale connected with the mansion, it \nseemed the very place for such a deed, and one that might have been \nits predestined theatre years upon years ago.  Viewed with \nreference to this legend, the sheet of water where the steward's \nbody had been found appeared to wear a black and sullen character, \nsuch as no other pool might own; the bell upon the roof that had \ntold the tale of murder to the midnight wind, became a very phantom \nwhose voice would raise the listener's hair on end; and every \nleafless bough that nodded to another, had its stealthy whispering \nof the crime.\n\nJoe paced up and down the path, sometimes stopping in affected \ncontemplation of the building or the prospect, sometimes leaning \nagainst a tree with an assumed air of idleness and indifference, \nbut always keeping an eye upon the window he had singled out at \nfirst.  After some quarter of an hour's delay, a small white hand \nwas waved to him for an instant from this casement, and the young \nman, with a respectful bow, departed; saying under his breath as he \ncrossed his horse again, 'No errand for me to-day!'\n\nBut the air of smartness, the cock of the hat to which John Willet \nhad objected, and the spring nosegay, all betokened some little \nerrand of his own, having a more interesting object than a vintner \nor even a locksmith.  So, indeed, it turned out; for when he had \nsettled with the vintner--whose place of business was down in some \ndeep cellars hard by Thames Street, and who was as purple-faced an \nold gentleman as if he had all his life supported their arched roof \non his head--when he had settled the account, and taken the \nreceipt, and declined tasting more than three glasses of old \nsherry, to the unbounded astonishment of the purple-faced vintner, \nwho, gimlet in hand, had projected an attack upon at least a score \nof dusty casks, and who stood transfixed, or morally gimleted as it \nwere, to his own wall--when he had done all this, and disposed \nbesides of a frugal dinner at the Black Lion in Whitechapel; \nspurning the Monument and John's advice, he turned his steps \ntowards the locksmith's house, attracted by the eyes of blooming \nDolly Varden.\n\nJoe was by no means a sheepish fellow, but, for all that, when he \ngot to the corner of the street in which the locksmith lived, he \ncould by no means make up his mind to walk straight to the house.  \nFirst, he resolved to stroll up another street for five minutes, \nthen up another street for five minutes more, and so on until he \nhad lost full half an hour, when he made a bold plunge and found \nhimself with a red face and a beating heart in the smoky workshop.\n\n'Joe Willet, or his ghost?' said Varden, rising from the desk at \nwhich he was busy with his books, and looking at him under his \nspectacles.  'Which is it?  Joe in the flesh, eh?  That's hearty.  \nAnd how are all the Chigwell company, Joe?'\n\n'Much as usual, sir--they and I agree as well as ever.'\n\n'Well, well!' said the locksmith.  'We must be patient, Joe, and \nbear with old folks' foibles.  How's the mare, Joe?  Does she do \nthe four miles an hour as easily as ever?  Ha, ha, ha! Does she, \nJoe?  Eh!--What have we there, Joe--a nosegay!'\n\n'A very poor one, sir--I thought Miss Dolly--'\n\n'No, no,' said Gabriel, dropping his voice, and shaking his head, \n'not Dolly.  Give 'em to her mother, Joe.  A great deal better give \n'em to her mother.  Would you mind giving 'em to Mrs Varden, Joe?'\n\n'Oh no, sir,' Joe replied, and endeavouring, but not with the \ngreatest possible success, to hide his disappointment.  'I shall be \nvery glad, I'm sure.'\n\n'That's right,' said the locksmith, patting him on the back.  'It \ndon't matter who has 'em, Joe?'\n\n'Not a bit, sir.'--Dear heart, how the words stuck in his throat!\n\n'Come in,' said Gabriel.  'I have just been called to tea.  She's \nin the parlour.'\n\n'She,' thought Joe.  'Which of 'em I wonder--Mrs or Miss?'  The \nlocksmith settled the doubt as neatly as if it had been expressed \naloud, by leading him to the door, and saying, 'Martha, my dear, \nhere's young Mr Willet.'\n\nNow, Mrs Varden, regarding the Maypole as a sort of human mantrap, \nor decoy for husbands; viewing its proprietor, and all who aided \nand abetted him, in the light of so many poachers among Christian \nmen; and believing, moreover, that the publicans coupled with \nsinners in Holy Writ were veritable licensed victuallers; was far \nfrom being favourably disposed towards her visitor.  Wherefore she \nwas taken faint directly; and being duly presented with the \ncrocuses and snowdrops, divined on further consideration that they \nwere the occasion of the languor which had seized upon her spirits.  \n'I'm afraid I couldn't bear the room another minute,' said the good \nlady, 'if they remained here.  WOULD you excuse my putting them out \nof window?'\n\nJoe begged she wouldn't mention it on any account, and smiled \nfeebly as he saw them deposited on the sill outside.  If anybody \ncould have known the pains he had taken to make up that despised \nand misused bunch of flowers!--\n\n'I feel it quite a relief to get rid of them, I assure you,' said \nMrs Varden.  'I'm better already.'  And indeed she did appear to \nhave plucked up her spirits.\n\nJoe expressed his gratitude to Providence for this favourable \ndispensation, and tried to look as if he didn't wonder where \nDolly was.\n\n'You're sad people at Chigwell, Mr Joseph,' said Mrs V.\n\n'I hope not, ma'am,' returned Joe.\n\n'You're the cruellest and most inconsiderate people in the world,' \nsaid Mrs Varden, bridling.  'I wonder old Mr Willet, having been a \nmarried man himself, doesn't know better than to conduct himself as \nhe does.  His doing it for profit is no excuse.  I would rather \npay the money twenty times over, and have Varden come home like a \nrespectable and sober tradesman.  If there is one character,' said \nMrs Varden with great emphasis, 'that offends and disgusts me more \nthan another, it is a sot.'\n\n'Come, Martha, my dear,' said the locksmith cheerily, 'let us have \ntea, and don't let us talk about sots.  There are none here, and \nJoe don't want to hear about them, I dare say.'\n\nAt this crisis, Miggs appeared with toast.\n\n'I dare say he does not,' said Mrs Varden; 'and I dare say you do \nnot, Varden.  It's a very unpleasant subiect, I have no doubt, \nthough I won't say it's personal'--Miggs coughed--'whatever I may \nbe forced to think'--Miggs sneezed expressively.  'You never will \nknow, Varden, and nobody at young Mr Willet's age--you'll excuse \nme, sir--can be expected to know, what a woman suffers when she is \nwaiting at home under such circumstances.  If you don't believe me, \nas I know you don't, here's Miggs, who is only too often a witness \nof it--ask her.'\n\n'Oh! she were very bad the other night, sir, indeed she were, said \nMiggs.  'If you hadn't the sweetness of an angel in you, mim, I \ndon't think you could abear it, I raly don't.'\n\n'Miggs,' said Mrs Varden, 'you're profane.'\n\n'Begging your pardon, mim,' returned Miggs, with shrill rapidity, \n'such was not my intentions, and such I hope is not my character, \nthough I am but a servant.'\n\n'Answering me, Miggs, and providing yourself,' retorted her \nmistress, looking round with dignity, 'is one and the same thing.  \nHow dare you speak of angels in connection with your sinful \nfellow-beings--mere'--said Mrs Varden, glancing at herself in a \nneighbouring mirror, and arranging the ribbon of her cap in a more \nbecoming fashion--'mere worms and grovellers as we are!'\n\n'I did not intend, mim, if you please, to give offence,' said \nMiggs, confident in the strength of her compliment, and developing \nstrongly in the throat as usual, 'and I did not expect it would be \ntook as such.  I hope I know my own unworthiness, and that I hate \nand despise myself and all my fellow-creatures as every practicable \nChristian should.'\n\n'You'll have the goodness, if you please,' said Mrs Varden, \nloftily, 'to step upstairs and see if Dolly has finished dressing, \nand to tell her that the chair that was ordered for her will be \nhere in a minute, and that if she keeps it waiting, I shall send it \naway that instant.--I'm sorry to see that you don't take your tea, \nVarden, and that you don't take yours, Mr Joseph; though of course \nit would be foolish of me to expect that anything that can be had \nat home, and in the company of females, would please YOU.'\n\nThis pronoun was understood in the plural sense, and included both \ngentlemen, upon both of whom it was rather hard and undeserved, \nfor Gabriel had applied himself to the meal with a very promising \nappetite, until it was spoilt by Mrs Varden herself, and Joe had as \ngreat a liking for the female society of the locksmith's house--or \nfor a part of it at all events--as man could well entertain.\n\nBut he had no opportunity to say anything in his own defence, for \nat that moment Dolly herself appeared, and struck him quite dumb \nwith her beauty.  Never had Dolly looked so handsome as she did \nthen, in all the glow and grace of youth, with all her charms \nincreased a hundredfold by a most becoming dress, by a thousand \nlittle coquettish ways which nobody could assume with a better \ngrace, and all the sparkling expectation of that accursed party.  \nIt is impossible to tell how Joe hated that party wherever it was, \nand all the other people who were going to it, whoever they were.\n\nAnd she hardly looked at him--no, hardly looked at him.  And when \nthe chair was seen through the open door coming blundering into the \nworkshop, she actually clapped her hands and seemed glad to go.  \nBut Joe gave her his arm--there was some comfort in that--and \nhanded her into it.  To see her seat herself inside, with her \nlaughing eyes brighter than diamonds, and her hand--surely she had \nthe prettiest hand in the world--on the ledge of the open window, \nand her little finger provokingly and pertly tilted up, as if it \nwondered why Joe didn't squeeze or kiss it!  To think how well one \nor two of the modest snowdrops would have become that delicate \nbodice, and how they were lying neglected outside the parlour \nwindow!  To see how Miggs looked on with a face expressive of \nknowing how all this loveliness was got up, and of being in the \nsecret of every string and pin and hook and eye, and of saying it \nain't half as real as you think, and I could look quite as well \nmyself if I took the pains!  To hear that provoking precious little \nscream when the chair was hoisted on its poles, and to catch that \ntransient but not-to-be-forgotten vision of the happy face within--\nwhat torments and aggravations, and yet what delights were these!  \nThe very chairmen seemed favoured rivals as they bore her down the \nstreet.\n\nThere never was such an alteration in a small room in a small time \nas in that parlour when they went back to finish tea.  So dark, so \ndeserted, so perfectly disenchanted.  It seemed such sheer nonsense \nto be sitting tamely there, when she was at a dance with more \nlovers than man could calculate fluttering about her--with the \nwhole party doting on and adoring her, and wanting to marry her.  \nMiggs was hovering about too; and the fact of her existence, the \nmere circumstance of her ever having been born, appeared, after \nDolly, such an unaccountable practical joke.  It was impossible to \ntalk.  It couldn't be done.  He had nothing left for it but to stir \nhis tea round, and round, and round, and ruminate on all the \nfascinations of the locksmith's lovely daughter.\n\nGabriel was dull too.  It was a part of the certain uncertainty of \nMrs Varden's temper, that when they were in this condition, she \nshould be gay and sprightly.\n\n'I need have a cheerful disposition, I am sure,' said the smiling \nhousewife, 'to preserve any spirits at all; and how I do it I can \nscarcely tell.'\n\n'Ah, mim,' sighed Miggs, 'begging your pardon for the interruption, \nthere an't a many like you.'\n\n'Take away, Miggs,' said Mrs Varden, rising, 'take away, pray.  I \nknow I'm a restraint here, and as I wish everybody to enjoy \nthemselves as they best can, I feel I had better go.'\n\n'No, no, Martha,' cried the locksmith.  'Stop here.  I'm sure we \nshall be very sorry to lose you, eh Joe!'  Joe started, and said \n'Certainly.'\n\n'Thank you, Varden, my dear,' returned his wife; 'but I know your \nwishes better.  Tobacco and beer, or spirits, have much greater \nattractions than any I can boast of, and therefore I shall go and \nsit upstairs and look out of window, my love.  Good night, Mr \nJoseph.  I'm very glad to have seen you, and I only wish I could \nhave provided something more suitable to your taste.  Remember me \nvery kindly if you please to old Mr Willet, and tell him that \nwhenever he comes here I have a crow to pluck with him.  Good \nnight!'\n\nHaving uttered these words with great sweetness of manner, the good \nlady dropped a curtsey remarkable for its condescension, and \nserenely withdrew.\n\nAnd it was for this Joe had looked forward to the twenty-fifth of \nMarch for weeks and weeks, and had gathered the flowers with so \nmuch care, and had cocked his hat, and made himself so smart!  This \nwas the end of all his bold determination, resolved upon for the \nhundredth time, to speak out to Dolly and tell her how he loved \nher!  To see her for a minute--for but a minute--to find her going \nout to a party and glad to go; to be looked upon as a common pipe-\nsmoker, beer-bibber, spirit-guzzler, and tosspot!  He bade \nfarewell to his friend the locksmith, and hastened to take horse at \nthe Black Lion, thinking as he turned towards home, as many another \nJoe has thought before and since, that here was an end to all his \nhopes--that the thing was impossible and never could be--that she \ndidn't care for him--that he was wretched for life--and that the \nonly congenial prospect left him, was to go for a soldier or a \nsailor, and get some obliging enemy to knock his brains out as \nsoon as possible.\n\n\n\nChapter 14\n\n\nJoe Willet rode leisurely along in his desponding mood, picturing \nthe locksmith's daughter going down long country-dances, and \npoussetting dreadfully with bold strangers--which was almost too \nmuch to bear--when he heard the tramp of a horse's feet behind him, \nand looking back, saw a well-mounted gentleman advancing at a \nsmart canter.  As this rider passed, he checked his steed, and \ncalled him of the Maypole by his name.  Joe set spurs to the grey \nmare, and was at his side directly.\n\n'I thought it was you, sir,' he said, touching his hat.  'A fair \nevening, sir.  Glad to see you out of doors again.'\n\nThe gentleman smiled and nodded.  'What gay doings have been going \non to-day, Joe?  Is she as pretty as ever?  Nay, don't blush, man.'\n\n'If I coloured at all, Mr Edward,' said Joe, 'which I didn't know I \ndid, it was to think I should have been such a fool as ever to have \nany hope of her.  She's as far out of my reach as--as Heaven is.'\n\n'Well, Joe, I hope that's not altogether beyond it,' said Edward, \ngood-humouredly.  'Eh?'\n\n'Ah!' sighed Joe.  'It's all very fine talking, sir.  Proverbs are \neasily made in cold blood.  But it can't be helped.  Are you bound \nfor our house, sir?'\n\n'Yes.  As I am not quite strong yet, I shall stay there to-night, \nand ride home coolly in the morning.'\n\n'If you're in no particular hurry,' said Joe after a short silence, \n'and will bear with the pace of this poor jade, I shall be glad to \nride on with you to the Warren, sir, and hold your horse when you \ndismount.  It'll save you having to walk from the Maypole, there \nand back again.  I can spare the time well, sir, for I am too soon.'\n\n'And so am I,' returned Edward, 'though I was unconsciously riding \nfast just now, in compliment I suppose to the pace of my thoughts, \nwhich were travelling post.  We will keep together, Joe, willingly, \nand be as good company as may be.  And cheer up, cheer up, think of \nthe locksmith's daughter with a stout heart, and you shall win her \nyet.'\n\nJoe shook his head; but there was something so cheery in the \nbuoyant hopeful manner of this speech, that his spirits rose under \nits influence, and communicated as it would seem some new impulse \neven to the grey mare, who, breaking from her sober amble into a \ngentle trot, emulated the pace of Edward Chester's horse, and \nappeared to flatter herself that he was doing his very best.\n\nIt was a fine dry night, and the light of a young moon, which was \nthen just rising, shed around that peace and tranquillity which \ngives to evening time its most delicious charm.  The lengthened \nshadows of the trees, softened as if reflected in still water, \nthrew their carpet on the path the travellers pursued, and the \nlight wind stirred yet more softly than before, as though it were \nsoothing Nature in her sleep.  By little and little they ceased \ntalking, and rode on side by side in a pleasant silence.\n\n'The Maypole lights are brilliant to-night,' said Edward, as they \nrode along the lane from which, while the intervening trees were \nbare of leaves, that hostelry was visible.\n\n'Brilliant indeed, sir,' returned Joe, rising in his stirrups to \nget a better view.  'Lights in the large room, and a fire \nglimmering in the best bedchamber?  Why, what company can this be \nfor, I wonder!'\n\n'Some benighted horseman wending towards London, and deterred from \ngoing on to-night by the marvellous tales of my friend the \nhighwayman, I suppose,' said Edward.\n\n'He must be a horseman of good quality to have such accommodations.  \nYour bed too, sir--!'\n\n'No matter, Joe.  Any other room will do for me.  But come--there's \nnine striking.  We may push on.'\n\nThey cantered forward at as brisk a pace as Joe's charger could \nattain, and presently stopped in the little copse where he had left \nher in the morning.  Edward dismounted, gave his bridle to his \ncompanion, and walked with a light step towards the house.\n\nA female servant was waiting at a side gate in the garden-wall, and \nadmitted him without delay.  He hurried along the terrace-walk, and \ndarted up a flight of broad steps leading into an old and gloomy \nhall, whose walls were ornamented with rusty suits of armour, \nantlers, weapons of the chase, and suchlike garniture.  Here he \npaused, but not long; for as he looked round, as if expecting the \nattendant to have followed, and wondering she had not done so, a \nlovely girl appeared, whose dark hair next moment rested on his \nbreast.  Almost at the same instant a heavy hand was laid upon her \narm, Edward felt himself thrust away, and Mr Haredale stood between \nthem.\n\nHe regarded the young man sternly without removing his hat; with \none hand clasped his niece, and with the other, in which he held \nhis riding-whip, motioned him towards the door.  The young man drew \nhimself up, and returned his gaze.\n\n'This is well done of you, sir, to corrupt my servants, and enter \nmy house unbidden and in secret, like a thief!' said Mr Haredale.  \n'Leave it, sir, and return no more.'\n\n'Miss Haredale's presence,' returned the young man, 'and your \nrelationship to her, give you a licence which, if you are a brave \nman, you will not abuse.  You have compelled me to this course, \nand the fault is yours--not mine.'\n\n'It is neither generous, nor honourable, nor the act of a true \nman, sir,' retorted the other, 'to tamper with the affections of a \nweak, trusting girl, while you shrink, in your unworthiness, from \nher guardian and protector, and dare not meet the light of day.  \nMore than this I will not say to you, save that I forbid you this \nhouse, and require you to be gone.'\n\n'It is neither generous, nor honourable, nor the act of a true man \nto play the spy,' said Edward.  'Your words imply dishonour, and I \nreject them with the scorn they merit.'\n\n'You will find,' said Mr Haredale, calmly, 'your trusty go-between \nin waiting at the gate by which you entered.  I have played no \nspy's part, sir.  I chanced to see you pass the gate, and \nfollowed.  You might have heard me knocking for admission, had you \nbeen less swift of foot, or lingered in the garden.  Please to \nwithdraw.  Your presence here is offensive to me and distressful to \nmy niece.'  As he said these words, he passed his arm about the \nwaist of the terrified and weeping girl, and drew her closer to \nhim; and though the habitual severity of his manner was scarcely \nchanged, there was yet apparent in the action an air of kindness \nand sympathy for her distress.\n\n'Mr Haredale,' said Edward, 'your arm encircles her on whom I have \nset my every hope and thought, and to purchase one minute's \nhappiness for whom I would gladly lay down my life; this house is \nthe casket that holds the precious jewel of my existence.  Your \nniece has plighted her faith to me, and I have plighted mine to \nher.  What have I done that you should hold me in this light \nesteem, and give me these discourteous words?'\n\n'You have done that, sir,' answered Mr Haredale, 'which must he \nundone.  You have tied a lover'-knot here which must be cut \nasunder.  Take good heed of what I say.  Must.  I cancel the bond \nbetween ye.  I reject you, and all of your kith and kin--all the \nfalse, hollow, heartless stock.'\n\n'High words, sir,' said Edward, scornfully.\n\n'Words of purpose and meaning, as you will find,' replied the \nother.  'Lay them to heart.'\n\n'Lay you then, these,' said Edward.  'Your cold and sullen temper, \nwhich chills every breast about you, which turns affection into \nfear, and changes duty into dread, has forced us on this secret \ncourse, repugnant to our nature and our wish, and far more foreign, \nsir, to us than you.  I am not a false, a hollow, or a heartless \nman; the character is yours, who poorly venture on these injurious \nterms, against the truth, and under the shelter whereof I reminded \nyou just now.  You shall not cancel the bond between us.  I will \nnot abandon this pursuit.  I rely upon your niece's truth and \nhonour, and set your influence at nought.  I leave her with a \nconfidence in her pure faith, which you will never weaken, and with \nno concern but that I do not leave her in some gentler care.'\n\nWith that, he pressed her cold hand to his lips, and once more \nencountering and returning Mr Haredale's steady look, withdrew.\n\nA few words to Joe as he mounted his horse sufficiently explained \nwhat had passed, and renewed all that young gentleman's despondency \nwith tenfold aggravation.  They rode back to the Maypole without \nexchanging a syllable, and arrived at the door with heavy hearts.\n\nOld John, who had peeped from behind the red curtain as they rode \nup shouting for Hugh, was out directly, and said with great \nimportance as he held the young man's stirrup,\n\n'He's comfortable in bed--the best bed.  A thorough gentleman; the \nsmilingest, affablest gentleman I ever had to do with.'\n\n'Who, Willet?' said Edward carelessly, as he dismounted.\n\n'Your worthy father, sir,' replied John.  'Your honourable, \nvenerable father.'\n\n'What does he mean?' said Edward, looking with a mixture of alarm \nand doubt, at Joe.\n\n'What DO you mean?' said Joe.  'Don't you see Mr Edward doesn't \nunderstand, father?'\n\n'Why, didn't you know of it, sir?' said John, opening his eyes \nwide.  'How very singular!  Bless you, he's been here ever since \nnoon to-day, and Mr Haredale has been having a long talk with him, \nand hasn't been gone an hour.'\n\n'My father, Willet!'\n\n'Yes, sir, he told me so--a handsome, slim, upright gentleman, in \ngreen-and-gold.  In your old room up yonder, sir.  No doubt you \ncan go in, sir,' said John, walking backwards into the road and \nlooking up at the window.  'He hasn't put out his candles yet, I \nsee.'\n\nEdward glanced at the window also, and hastily murmuring that he \nhad changed his mind--forgotten something--and must return to \nLondon, mounted his horse again and rode away; leaving the Willets, \nfather and son, looking at each other in mute astonishment.\n\n\n\nChapter 15\n\n\nAt noon next day, John Willet's guest sat lingering over his \nbreakfast in his own home, surrounded by a variety of comforts, \nwhich left the Maypole's highest flight and utmost stretch of \naccommodation at an infinite distance behind, and suggested \ncomparisons very much to the disadvantage and disfavour of that \nvenerable tavern.\n\nIn the broad old-fashioned window-seat--as capacious as many modern \nsofas, and cushioned to serve the purpose of a luxurious settee--in \nthe broad old-fashioned window-seat of a roomy chamber, Mr Chester \nlounged, very much at his ease, over a well-furnished breakfast-\ntable.  He had exchanged his riding-coat for a handsome morning-\ngown, his boots for slippers; had been at great pains to atone for \nthe having been obliged to make his toilet when he rose without the \naid of dressing-case and tiring equipage; and, having gradually \nforgotten through these means the discomforts of an indifferent \nnight and an early ride, was in a state of perfect complacency, \nindolence, and satisfaction.\n\nThe situation in which he found himself, indeed, was particularly \nfavourable to the growth of these feelings; for, not to mention the \nlazy influence of a late and lonely breakfast, with the additional \nsedative of a newspaper, there was an air of repose about his place \nof residence peculiar to itself, and which hangs about it, even in \nthese times, when it is more bustling and busy than it was in days \nof yore.\n\nThere are, still, worse places than the Temple, on a sultry day, \nfor basking in the sun, or resting idly in the shade.  There is yet \na drowsiness in its courts, and a dreamy dulness in its trees and \ngardens; those who pace its lanes and squares may yet hear the \nechoes of their footsteps on the sounding stones, and read upon its \ngates, in passing from the tumult of the Strand or Fleet Street, \n'Who enters here leaves noise behind.'  There is still the plash of \nfalling water in fair Fountain Court, and there are yet nooks and \ncorners where dun-haunted students may look down from their dusty \ngarrets, on a vagrant ray of sunlight patching the shade of the \ntall houses, and seldom troubled to reflect a passing stranger's \nform.  There is yet, in the Temple, something of a clerkly monkish \natmosphere, which public offices of law have not disturbed, and \neven legal firms have failed to scare away.  In summer time, its \npumps suggest to thirsty idlers, springs cooler, and more \nsparkling, and deeper than other wells; and as they trace the \nspillings of full pitchers on the heated ground, they snuff the \nfreshness, and, sighing, cast sad looks towards the Thames, and \nthink of baths and boats, and saunter on, despondent.\n\nIt was in a room in Paper Buildings--a row of goodly tenements, \nshaded in front by ancient trees, and looking, at the back, upon \nthe Temple Gardens--that this, our idler, lounged; now taking up \nagain the paper he had laid down a hundred times; now trifling with \nthe fragments of his meal; now pulling forth his golden toothpick, \nand glancing leisurely about the room, or out at window into the \ntrim garden walks, where a few early loiterers were already pacing \nto and fro.  Here a pair of lovers met to quarrel and make up; \nthere a dark-eyed nursery-maid had better eyes for Templars than \nher charge; on this hand an ancient spinster, with her lapdog in a \nstring, regarded both enormities with scornful sidelong looks; on \nthat a weazen old gentleman, ogling the nursery-maid, looked with \nlike scorn upon the spinster, and wondered she didn't know she was \nno longer young.  Apart from all these, on the river's margin two \nor three couple of business-talkers walked slowly up and down in \nearnest conversation; and one young man sat thoughtfully on a \nbench, alone.\n\n'Ned is amazingly patient!' said Mr Chester, glancing at this last-\nnamed person as he set down his teacup and plied the golden \ntoothpick, 'immensely patient!  He was sitting yonder when I began \nto dress, and has scarcely changed his posture since.  A most \neccentric dog!'\n\nAs he spoke, the figure rose, and came towards him with a rapid \npace.\n\n'Really, as if he had heard me,' said the father, resuming his \nnewspaper with a yawn.  'Dear Ned!'\n\nPresently the room-door opened, and the young man entered; to whom \nhis father gently waved his hand, and smiled.\n\n'Are you at leisure for a little conversation, sir?' said Edward.\n\n'Surely, Ned.  I am always at leisure.  You know my constitution.--\nHave you breakfasted?'\n\n'Three hours ago.'\n\n'What a very early dog!' cried his father, contemplating him from \nbehind the toothpick, with a languid smile.\n\n'The truth is,' said Edward, bringing a chair forward, and seating \nhimself near the table, 'that I slept but ill last night, and was \nglad to rise.  The cause of my uneasiness cannot but be known to \nyou, sir; and it is upon that I wish to speak.'\n\n'My dear boy,' returned his father, 'confide in me, I beg.  But you \nknow my constitution--don't be prosy, Ned.'\n\n'I will be plain, and brief,' said Edward.\n\n'Don't say you will, my good fellow,' returned his father, crossing \nhis legs, 'or you certainly will not.  You are going to tell me'--\n\n'Plainly this, then,' said the son, with an air of great concern, \n'that I know where you were last night--from being on the spot, \nindeed--and whom you saw, and what your purpose was.'\n\n'You don't say so!' cried his father.  'I am delighted to hear it.  \nIt saves us the worry, and terrible wear and tear of a long \nexplanation, and is a great relief for both.  At the very house!  \nWhy didn't you come up?  I should have been charmed to see you.'\n\n'I knew that what I had to say would be better said after a night's \nreflection, when both of us were cool,' returned the son.\n\n''Fore Gad, Ned,' rejoined the father, 'I was cool enough last \nnight.  That detestable Maypole!  By some infernal contrivance of \nthe builder, it holds the wind, and keeps it fresh.  You remember \nthe sharp east wind that blew so hard five weeks ago?  I give you \nmy honour it was rampant in that old house last night, though out \nof doors there was a dead calm.  But you were saying'--\n\n'I was about to say, Heaven knows how seriously and earnestly, that \nyou have made me wretched, sir.  Will you hear me gravely for a \nmoment?'\n\n'My dear Ned,' said his father, 'I will hear you with the patience \nof an anchorite.  Oblige me with the milk.'\n\n'I saw Miss Haredale last night,' Edward resumed, when he had \ncomplied with this request; 'her uncle, in her presence, \nimmediately after your interview, and, as of course I know, in \nconsequence of it, forbade me the house, and, with circumstances of \nindignity which are of your creation I am sure, commanded me to \nleave it on the instant.'\n\n'For his manner of doing so, I give you my honour, Ned, I am not \naccountable,' said his father.  'That you must excuse.  He is a \nmere boor, a log, a brute, with no address in life.--Positively a \nfly in the jug.  The first I have seen this year.'\n\nEdward rose, and paced the room.  His imperturbable parent sipped \nhis tea.\n\n'Father,' said the young man, stopping at length before him, 'we \nmust not trifle in this matter.  We must not deceive each other, or \nourselves.  Let me pursue the manly open part I wish to take, and \ndo not repel me by this unkind indifference.'\n\n'Whether I am indifferent or no,' returned the other, 'I leave you, \nmy dear boy, to judge.  A ride of twenty-five or thirty miles, \nthrough miry roads--a Maypole dinner--a tete-a-tete with Haredale, \nwhich, vanity apart, was quite a Valentine and Orson business--a \nMaypole bed--a Maypole landlord, and a Maypole retinue of idiots \nand centaurs;--whether the voluntary endurance of these things \nlooks like indifference, dear Ned, or like the excessive anxiety, \nand devotion, and all that sort of thing, of a parent, you shall \ndetermine for yourself.'\n\n'I wish you to consider, sir,' said Edward, 'in what a cruel \nsituation I am placed.  Loving Miss Haredale as I do'--\n\n'My dear fellow,' interrupted his father with a compassionate \nsmile, 'you do nothing of the kind.  You don't know anything about \nit.  There's no such thing, I assure you.  Now, do take my word for \nit.  You have good sense, Ned,--great good sense.  I wonder you \nshould be guilty of such amazing absurdities.  You really surprise \nme.'\n\n'I repeat,' said his son firmly, 'that I love her.  You have \ninterposed to part us, and have, to the extent I have just now told \nyou of, succeeded.  May I induce you, sir, in time, to think more \nfavourably of our attachment, or is it your intention and your \nfixed design to hold us asunder if you can?'\n\n'My dear Ned,' returned his father, taking a pinch of snuff and \npushing his box towards him, 'that is my purpose most undoubtedly.'\n\n'The time that has elapsed,' rejoined his son, 'since I began to \nknow her worth, has flown in such a dream that until now I have \nhardly once paused to reflect upon my true position.  What is it?  \nFrom my childhood I have been accustomed to luxury and idleness, \nand have been bred as though my fortune were large, and my \nexpectations almost without a limit.  The idea of wealth has been \nfamiliarised to me from my cradle.  I have been taught to look upon \nthose means, by which men raise themselves to riches and \ndistinction, as being beyond my heeding, and beneath my care.  I \nhave been, as the phrase is, liberally educated, and am fit for \nnothing.  I find myself at last wholly dependent upon you, with no \nresource but in your favour.  In this momentous question of my life \nwe do not, and it would seem we never can, agree.  I have shrunk \ninstinctively alike from those to whom you have urged me to pay \ncourt, and from the motives of interest and gain which have \nrendered them in your eyes visible objects for my suit.  If there \nnever has been thus much plain-speaking between us before, sir, the \nfault has not been mine, indeed.  If I seem to speak too plainly \nnow, it is, believe me father, in the hope that there may be a \nfranker spirit, a worthier reliance, and a kinder confidence \nbetween us in time to come.'\n\n'My good fellow,' said his smiling father, 'you quite affect me.  \nGo on, my dear Edward, I beg.  But remember your promise.  There is \ngreat earnestness, vast candour, a manifest sincerity in all you \nsay, but I fear I observe the faintest indications of a tendency to \nprose.'\n\n'I am very sorry, sir.'\n\n'I am very sorry, too, Ned, but you know that I cannot fix my mind \nfor any long period upon one subject.  If you'll come to the point \nat once, I'll imagine all that ought to go before, and conclude it \nsaid.  Oblige me with the milk again.  Listening, invariably makes \nme feverish.'\n\n'What I would say then, tends to this,' said Edward.  'I cannot \nbear this absolute dependence, sir, even upon you.  Time has been \nlost and opportunity thrown away, but I am yet a young man, and may \nretrieve it.  Will you give me the means of devoting such abilities \nand energies as I possess, to some worthy pursuit?  Will you let me \ntry to make for myself an honourable path in life?  For any term \nyou please to name--say for five years if you will--I will pledge \nmyself to move no further in the matter of our difference without \nyour fall concurrence.  During that period, I will endeavour \nearnestly and patiently, if ever man did, to open some prospect for \nmyself, and free you from the burden you fear I should become if I \nmarried one whose worth and beauty are her chief endowments.  Will \nyou do this, sir?  At the expiration of the term we agree upon, let \nus discuss this subject again.  Till then, unless it is revived by \nyou, let it never be renewed between us.'\n\n'My dear Ned,' returned his father, laying down the newspaper at \nwhich he had been glancing carelessly, and throwing himself back in \nthe window-seat, 'I believe you know how very much I dislike what \nare called family affairs, which are only fit for plebeian \nChristmas days, and have no manner of business with people of our \ncondition.  But as you are proceeding upon a mistake, Ned--\naltogether upon a mistake--I will conquer my repugnance to entering \non such matters, and give you a perfectly plain and candid answer, \nif you will do me the favour to shut the door.'\n\nEdward having obeyed him, he took an elegant little knife from his \npocket, and paring his nails, continued:\n\n'You have to thank me, Ned, for being of good family; for your \nmother, charming person as she was, and almost broken-hearted, and \nso forth, as she left me, when she was prematurely compelled to \nbecome immortal--had nothing to boast of in that respect.'\n\n'Her father was at least an eminent lawyer, sir,' said Edward.\n\n'Quite right, Ned; perfectly so.  He stood high at the bar, had a \ngreat name and great wealth, but having risen from nothing--I have \nalways closed my eyes to the circumstance and steadily resisted its \ncontemplation, but I fear his father dealt in pork, and that his \nbusiness did once involve cow-heel and sausages--he wished to marry \nhis daughter into a good family.  He had his heart's desire, Ned.  \nI was a younger son's younger son, and I married her.  We each had \nour object, and gained it.  She stepped at once into the politest \nand best circles, and I stepped into a fortune which I assure you \nwas very necessary to my comfort--quite indispensable.  Now, my \ngood fellow, that fortune is among the things that have been.  It \nis gone, Ned, and has been gone--how old are you?  I always \nforget.'\n\n'Seven-and-twenty, sir.'\n\n'Are you indeed?' cried his father, raising his eyelids in a \nlanguishing surprise.  'So much!  Then I should say, Ned, that as \nnearly as I remember, its skirts vanished from human knowledge, \nabout eighteen or nineteen years ago.  It was about that time when \nI came to live in these chambers (once your grandfather's, and \nbequeathed by that extremely respectable person to me), and \ncommenced to live upon an inconsiderable annuity and my past \nreputation.'\n\n'You are jesting with me, sir,' said Edward.\n\n'Not in the slightest degree, I assure you,' returned his father \nwith great composure.  'These family topics are so extremely dry, \nthat I am sorry to say they don't admit of any such relief.  It is \nfor that reason, and because they have an appearance of business, \nthat I dislike them so very much.  Well!  You know the rest.  A \nson, Ned, unless he is old enough to be a companion--that is to \nsay, unless he is some two or three and twenty--is not the kind of \nthing to have about one.  He is a restraint upon his father, his \nfather is a restraint upon him, and they make each other mutually \nuncomfortable.  Therefore, until within the last four years or so--\nI have a poor memory for dates, and if I mistake, you will correct \nme in your own mind--you pursued your studies at a distance, and \npicked up a great variety of accomplishments.  Occasionally we \npassed a week or two together here, and disconcerted each other as \nonly such near relations can.  At last you came home.  I candidly \ntell you, my dear boy, that if you had been awkward and overgrown, \nI should have exported you to some distant part of the world.'\n\n'I wish with all my soul you had, sir,' said Edward.\n\n'No you don't, Ned,' said his father coolly; 'you are mistaken, I \nassure you.  I found you a handsome, prepossessing, elegant \nfellow, and I threw you into the society I can still command.  \nHaving done that, my dear fellow, I consider that I have provided \nfor you in life, and rely upon your doing something to provide for \nme in return.'\n\n'I do not understand your meaning, sir.'\n\n'My meaning, Ned, is obvious--I observe another fly in the cream-\njug, but have the goodness not to take it out as you did the first, \nfor their walk when their legs are milky, is extremely ungraceful \nand disagreeable--my meaning is, that you must do as I did; that \nyou must marry well and make the most of yourself.'\n\n'A mere fortune-hunter!' cried the son, indignantly.\n\n'What in the devil's name, Ned, would you be!' returned the father.  \n'All men are fortune-hunters, are they not?  The law, the church, \nthe court, the camp--see how they are all crowded with fortune-\nhunters, jostling each other in the pursuit.  The stock-exchange, \nthe pulpit, the counting-house, the royal drawing-room, the \nsenate,--what but fortune-hunters are they filled with?  A fortune-\nhunter!  Yes.  You ARE one; and you would be nothing else, my dear \nNed, if you were the greatest courtier, lawyer, legislator, \nprelate, or merchant, in existence.  If you are squeamish and \nmoral, Ned, console yourself with the reflection that at the very \nworst your fortune-hunting can make but one person miserable or \nunhappy.  How many people do you suppose these other kinds of \nhuntsmen crush in following their sport--hundreds at a step?  Or \nthousands?'\n\nThe young man leant his head upon his hand, and made no answer.\n\n'I am quite charmed,' said the father rising, and walking slowly to \nand fro--stopping now and then to glance at himself in the mirror, \nor survey a picture through his glass, with the air of a \nconnoisseur, 'that we have had this conversation, Ned, unpromising \nas it was.  It establishes a confidence between us which is quite \ndelightful, and was certainly necessary, though how you can ever \nhave mistaken our positions and designs, I confess I cannot \nunderstand.  I conceived, until I found your fancy for this girl, \nthat all these points were tacitly agreed upon between us.'\n\n'I knew you were embarrassed, sir,' returned the son, raising his \nhead for a moment, and then falling into his former attitude, 'but \nI had no idea we were the beggared wretches you describe.  How \ncould I suppose it, bred as I have been; witnessing the life you \nhave always led; and the appearance you have always made?'\n\n'My dear child,' said the father--'for you really talk so like a \nchild that I must call you one--you were bred upon a careful \nprinciple; the very manner of your education, I assure you, \nmaintained my credit surprisingly.  As to the life I lead, I must \nlead it, Ned.  I must have these little refinements about me.  I \nhave always been used to them, and I cannot exist without them.  \nThey must surround me, you observe, and therefore they are here.  \nWith regard to our circumstances, Ned, you may set your mind at \nrest upon that score.  They are desperate.  Your own appearance is \nby no means despicable, and our joint pocket-money alone devours \nour income.  That's the truth.'\n\n'Why have I never known this before?  Why have you encouraged me, \nsir, to an expenditure and mode of life to which we have no right \nor title?'\n\n'My good fellow,' returned his father more compassionately than \never, 'if you made no appearance, how could you possibly succeed in \nthe pursuit for which I destined you?  As to our mode of life, \nevery man has a right to live in the best way he can; and to make \nhimself as comfortable as he can, or he is an unnatural scoundrel.  \nOur debts, I grant, are very great, and therefore it the more \nbehoves you, as a young man of principle and honour, to pay them \noff as speedily as possible.'\n\n'The villain's part,' muttered Edward, 'that I have unconsciously \nplayed!  I to win the heart of Emma Haredale!  I would, for her \nsake, I had died first!'\n\n'I am glad you see, Ned,' returned his father, 'how perfectly self-\nevident it is, that nothing can be done in that quarter.  But apart \nfrom this, and the necessity of your speedily bestowing yourself \non another (as you know you could to-morrow, if you chose), I wish \nyou'd look upon it pleasantly.  In a religious point of view alone, \nhow could you ever think of uniting yourself to a Catholic, unless \nshe was amazingly rich?  You ought to be so very Protestant, \ncoming of such a Protestant family as you do.  Let us be moral, \nNed, or we are nothing.  Even if one could set that objection \naside, which is impossible, we come to another which is quite \nconclusive.  The very idea of marrying a girl whose father was \nkilled, like meat!  Good God, Ned, how disagreeable!  Consider the \nimpossibility of having any respect for your father-in-law under \nsuch unpleasant circumstances--think of his having been \"viewed\" by \njurors, and \"sat upon\" by coroners, and of his very doubtful \nposition in the family ever afterwards.  It seems to me such an \nindelicate sort of thing that I really think the girl ought to have \nbeen put to death by the state to prevent its happening.  But I \ntease you perhaps.  You would rather be alone?  My dear Ned, most \nwillingly.  God bless you.  I shall be going out presently, but we \nshall meet to-night, or if not to-night, certainly to-morrow.  \nTake care of yourself in the mean time, for both our sakes.  You \nare a person of great consequence to me, Ned--of vast consequence \nindeed.  God bless you!'\n\nWith these words, the father, who had been arranging his cravat in \nthe glass, while he uttered them in a disconnected careless manner, \nwithdrew, humming a tune as he went.  The son, who had appeared so \nlost in thought as not to hear or understand them, remained quite \nstill and silent.  After the lapse of half an hour or so, the elder \nChester, gaily dressed, went out.  The younger still sat with his \nhead resting on his hands, in what appeared to be a kind of stupor.\n\n\n\nChapter 16\n\n\nA series of pictures representing the streets of London in the \nnight, even at the comparatively recent date of this tale, would \npresent to the eye something so very different in character from \nthe reality which is witnessed in these times, that it would be \ndifficult for the beholder to recognise his most familiar walks in \nthe altered aspect of little more than half a century ago.\n\nThey were, one and all, from the broadest and best to the narrowest \nand least frequented, very dark.  The oil and cotton lamps, though \nregularly trimmed twice or thrice in the long winter nights, burnt \nfeebly at the best; and at a late hour, when they were unassisted \nby the lamps and candles in the shops, cast but a narrow track of \ndoubtful light upon the footway, leaving the projecting doors and \nhouse-fronts in the deepest gloom.  Many of the courts and lanes \nwere left in total darkness; those of the meaner sort, where one \nglimmering light twinkled for a score of houses, being favoured in \nno slight degree.  Even in these places, the inhabitants had often \ngood reason for extinguishing their lamp as soon as it was lighted; \nand the watch being utterly inefficient and powerless to prevent \nthem, they did so at their pleasure.  Thus, in the lightest \nthoroughfares, there was at every turn some obscure and dangerous \nspot whither a thief might fly or shelter, and few would care to \nfollow; and the city being belted round by fields, green lanes, \nwaste grounds, and lonely roads, dividing it at that time from the \nsuburbs that have joined it since, escape, even where the pursuit \nwas hot, was rendered easy.\n\nIt is no wonder that with these favouring circumstances in full and \nconstant operation, street robberies, often accompanied by cruel \nwounds, and not unfrequently by loss of life, should have been of \nnightly occurrence in the very heart of London, or that quiet folks \nshould have had great dread of traversing its streets after the \nshops were closed.  It was not unusual for those who wended home \nalone at midnight, to keep the middle of the road, the better to \nguard against surprise from lurking footpads; few would venture to \nrepair at a late hour to Kentish Town or Hampstead, or even to \nKensington or Chelsea, unarmed and unattended; while he who had \nbeen loudest and most valiant at the supper-table or the tavern, \nand had but a mile or so to go, was glad to fee a link-boy to \nescort him home.\n\nThere were many other characteristics--not quite so disagreeable--\nabout the thoroughfares of London then, with which they had been \nlong familiar.  Some of the shops, especially those to the eastward \nof Temple Bar, still adhered to the old practice of hanging out a \nsign; and the creaking and swinging of these boards in their iron \nframes on windy nights, formed a strange and mournfal concert for \nthe ears of those who lay awake in bed or hurried through the \nstreets.  Long stands of hackney-chairs and groups of chairmen, \ncompared with whom the coachmen of our day are gentle and polite, \nobstructed the way and filled the air with clamour; night-cellars, \nindicated by a little stream of light crossing the pavement, and \nstretching out half-way into the road, and by the stifled roar of \nvoices from below, yawned for the reception and entertainment of \nthe most abandoned of both sexes; under every shed and bulk small \ngroups of link-boys gamed away the earnings of the day; or one more \nweary than the rest, gave way to sleep, and let the fragment of his \ntorch fall hissing on the puddled ground.\n\nThen there was the watch with staff and lantern crying the hour, \nand the kind of weather; and those who woke up at his voice and \nturned them round in bed, were glad to hear it rained, or snowed, \nor blew, or froze, for very comfort's sake.  The solitary passenger \nwas startled by the chairmen's cry of 'By your leave there!' as two \ncame trotting past him with their empty vehicle--carried backwards \nto show its being disengaged--and hurried to the nearest stand.  \nMany a private chair, too, inclosing some fine lady, monstrously \nhooped and furbelowed, and preceded by running-footmen bearing \nflambeaux--for which extinguishers are yet suspended before the \ndoors of a few houses of the better sort--made the way gay and \nlight as it danced along, and darker and more dismal when it had \npassed.  It was not unusual for these running gentry, who carried \nit with a very high hand, to quarrel in the servants' hall while \nwaiting for their masters and mistresses; and, falling to blows \neither there or in the street without, to strew the place of \nskirmish with hair-powder, fragments of bag-wigs, and scattered \nnosegays.  Gaming, the vice which ran so high among all classes \n(the fashion being of course set by the upper), was generally the \ncause of these disputes; for cards and dice were as openly used, \nand worked as much mischief, and yielded as much excitement below \nstairs, as above.  While incidents like these, arising out of drums \nand masquerades and parties at quadrille, were passing at the west \nend of the town, heavy stagecoaches and scarce heavier waggons were \nlumbering slowly towards the city, the coachmen, guard, and \npassengers, armed to the teeth, and the coach--a day or so perhaps \nbehind its time, but that was nothing--despoiled by highwaymen; who \nmade no scruple to attack, alone and single-handed, a whole caravan \nof goods and men, and sometimes shot a passenger or two, and were \nsometimes shot themselves, as the case might be.  On the morrow, \nrumours of this new act of daring on the road yielded matter for a \nfew hours' conversation through the town, and a Public Progress of \nsome fine gentleman (half-drunk) to Tyburn, dressed in the newest \nfashion, and damning the ordinary with unspeakable gallantry and \ngrace, furnished to the populace, at once a pleasant excitement and \na wholesome and profound example.\n\nAmong all the dangerous characters who, in such a state of society, \nprowled and skulked in the metropolis at night, there was one man \nfrom whom many as uncouth and fierce as he, shrunk with an \ninvoluntary dread.  Who he was, or whence he came, was a question \noften asked, but which none could answer.  His name was unknown, he \nhad never been seen until within about eight days or thereabouts, \nand was equally a stranger to the old ruffians, upon whose haunts \nhe ventured fearlessly, as to the young.  He could be no spy, for \nhe never removed his slouched hat to look about him, entered into \nconversation with no man, heeded nothing that passed, listened to \nno discourse, regarded nobody that came or went.  But so surely as \nthe dead of night set in, so surely this man was in the midst of \nthe loose concourse in the night-cellar where outcasts of every \ngrade resorted; and there he sat till morning.\n\nHe was not only a spectre at their licentious feasts; a something \nin the midst of their revelry and riot that chilled and haunted \nthem; but out of doors he was the same.  Directly it was dark, he \nwas abroad--never in company with any one, but always alone; never \nlingering or loitering, but always walking swiftly; and looking (so \nthey said who had seen him) over his shoulder from time to time, \nand as he did so quickening his pace.  In the fields, the lanes, \nthe roads, in all quarters of the town--east, west, north, and \nsouth--that man was seen gliding on like a shadow.  He was always \nhurrying away.  Those who encountered him, saw him steal past, \ncaught sight of the backward glance, and so lost him in the \ndarkness.\n\nThis constant restlessness, and flitting to and fro, gave rise to \nstrange stories.  He was seen in such distant and remote places, at \ntimes so nearly tallying with each other, that some doubted whether \nthere were not two of them, or more--some, whether he had not \nunearthly means of travelling from spot to spot.  The footpad \nhiding in a ditch had marked him passing like a ghost along its \nbrink; the vagrant had met him on the dark high-road; the beggar \nhad seen him pause upon the bridge to look down at the water, and \nthen sweep on again; they who dealt in bodies with the surgeons \ncould swear he slept in churchyards, and that they had beheld him \nglide away among the tombs on their approach.  And as they told \nthese stories to each other, one who had looked about him would \npull his neighbour by the sleeve, and there he would be among them.\n\nAt last, one man--he was one of those whose commerce lay among the \ngraves--resolved to question this strange companion.  Next night, \nwhen he had eat his poor meal voraciously (he was accustomed to do \nthat, they had observed, as though he had no other in the day), \nthis fellow sat down at his elbow.\n\n'A black night, master!'\n\n'It is a black night.'\n\n'Blacker than last, though that was pitchy too.  Didn't I pass you \nnear the turnpike in the Oxford Road?'\n\n'It's like you may.  I don't know.'\n\n'Come, come, master,' cried the fellow, urged on by the looks of \nhis comrades, and slapping him on the shoulder; 'be more \ncompanionable and communicative.  Be more the gentleman in this \ngood company.  There are tales among us that you have sold yourself \nto the devil, and I know not what.'\n\n'We all have, have we not?' returned the stranger, looking up.  'If \nwe were fewer in number, perhaps he would give better wages.'\n\n'It goes rather hard with you, indeed,' said the fellow, as the \nstranger disclosed his haggard unwashed face, and torn clothes.  \n'What of that?  Be merry, master.  A stave of a roaring song now'--\n\n'Sing you, if you desire to hear one,' replied the other, shaking \nhim roughly off; 'and don't touch me if you're a prudent man; I \ncarry arms which go off easily--they have done so, before now--and \nmake it dangerous for strangers who don't know the trick of them, \nto lay hands upon me.'\n\n'Do you threaten?' said the fellow.\n\n'Yes,' returned the other, rising and turning upon him, and looking \nfiercely round as if in apprehension of a general attack.\n\nHis voice, and look, and bearing--all expressive of the wildest \nrecklessness and desperation--daunted while they repelled the \nbystanders.  Although in a very different sphere of action now, \nthey were not without much of the effect they had wrought at the \nMaypole Inn.\n\n'I am what you all are, and live as you all do,' said the man \nsternly, after a short silence.  'I am in hiding here like the \nrest, and if we were surprised would perhaps do my part with the \nbest of ye.  If it's my humour to be left to myself, let me have \nit.  Otherwise,'--and here he swore a tremendous oath--'there'll be \nmischief done in this place, though there ARE odds of a score \nagainst me.'\n\nA low murmur, having its origin perhaps in a dread of the man and \nthe mystery that surrounded him, or perhaps in a sincere opinion on \nthe part of some of those present, that it would be an inconvenient \nprecedent to meddle too curiously with a gentleman's private \naffairs if he saw reason to conceal them, warned the fellow who \nhad occasioned this discussion that he had best pursue it no \nfurther.  After a short time the strange man lay down upon a bench \nto sleep, and when they thought of him again, they found he was \ngone.\n\nNext night, as soon as it was dark, he was abroad again and \ntraversing the streets; he was before the locksmith's house more \nthan once, but the family were out, and it was close shut.  This \nnight he crossed London Bridge and passed into Southwark.  As he \nglided down a bye street, a woman with a little basket on her arm, \nturned into it at the other end.  Directly he observed her, he \nsought the shelter of an archway, and stood aside until she had \npassed.  Then he emerged cautiously from his hiding-place, and \nfollowed.\n\nShe went into several shops to purchase various kinds of household \nnecessaries, and round every place at which she stopped he hovered \nlike her evil spirit; following her when she reappeared.  It was \nnigh eleven o'clock, and the passengers in the streets were \nthinning fast, when she turned, doubtless to go home.  The phantom \nstill followed her.\n\nShe turned into the same bye street in which he had seen her first, \nwhich, being free from shops, and narrow, was extremely dark.  She \nquickened her pace here, as though distrustful of being stopped, \nand robbed of such trifling property as she carried with her.  He \ncrept along on the other side of the road.  Had she been gifted \nwith the speed of wind, it seemed as if his terrible shadow would \nhave tracked her down.\n\nAt length the widow--for she it was--reached her own door, and, \npanting for breath, paused to take the key from her basket.  In a \nflush and glow, with the haste she had made, and the pleasure of \nbeing safe at home, she stooped to draw it out, when, raising her \nhead, she saw him standing silently beside her: the apparition of \na dream.\n\nHis hand was on her mouth, but that was needless, for her tongue \nclove to its roof, and her power of utterance was gone.  'I have \nbeen looking for you many nights.  Is the house empty?  Answer me.  \nIs any one inside?'\n\nShe could only answer by a rattle in her throat.\n\n'Make me a sign.'\n\nShe seemed to indicate that there was no one there.  He took the \nkey, unlocked the door, carried her in, and secured it carefully \nbehind them.\n\n\n\nChapter 17\n\n\nIt was a chilly night, and the fire in the widow's parlour had \nburnt low.  Her strange companion placed her in a chair, and \nstooping down before the half-extinguished ashes, raked them \ntogether and fanned them with his hat.  From time to time he \nglanced at her over his shoulder, as though to assure himself of \nher remaining quiet and making no effort to depart; and that done, \nbusied himself about the fire again.\n\nIt was not without reason that he took these pains, for his dress \nwas dank and drenched with wet, his jaws rattled with cold, and he \nshivered from head to foot.  It had rained hard during the previous \nnight and for some hours in the morning, but since noon it had been \nfine.  Wheresoever he had passed the hours of darkness, his \ncondition sufficiently betokened that many of them had been spent \nbeneath the open sky.  Besmeared with mire; his saturated clothes \nclinging with a damp embrace about his limbs; his beard unshaven, \nhis face unwashed, his meagre cheeks worn into deep hollows,--a \nmore miserable wretch could hardly be, than this man who now \ncowered down upon the widow's hearth, and watched the struggling \nflame with bloodshot eyes.\n\nShe had covered her face with her hands, fearing, as it seemed, to \nlook towards him.  So they remained for some short time in silence.  \nGlancing round again, he asked at length:\n\n'Is this your house?'\n\n'It is.  Why, in the name of Heaven, do you darken it?'\n\n'Give me meat and drink,' he answered sullenly, 'or I dare do more \nthan that.  The very marrow in my bones is cold, with wet and \nhunger.  I must have warmth and food, and I will have them here.'\n\n'You were the robber on the Chigwell road.'\n\n'I was.'\n\n'And nearly a murderer then.'\n\n'The will was not wanting.  There was one came upon me and raised \nthe hue-and-cry', that it would have gone hard with, but for his \nnimbleness.  I made a thrust at him.'\n\n'You thrust your sword at HIM!' cried the widow, looking upwards.  \n'You hear this man! you hear and saw!'\n\nHe looked at her, as, with her head thrown back, and her hands \ntight clenched together, she uttered these words in an agony of \nappeal.  Then, starting to his feet as she had done, he advanced \ntowards her.\n\n'Beware!' she cried in a suppressed voice, whose firmness stopped \nhim midway.  'Do not so much as touch me with a finger, or you are \nlost; body and soul, you are lost.'\n\n'Hear me,' he replied, menacing her with his hand.  'I, that in the \nform of a man live the life of a hunted beast; that in the body am \na spirit, a ghost upon the earth, a thing from which all creatures \nshrink, save those curst beings of another world, who will not \nleave me;--I am, in my desperation of this night, past all fear but \nthat of the hell in which I exist from day to day.  Give the \nalarm, cry out, refuse to shelter me.  I will not hurt you.  But I \nwill not be taken alive; and so surely as you threaten me above \nyour breath, I fall a dead man on this floor.  The blood with which \nI sprinkle it, be on you and yours, in the name of the Evil Spirit \nthat tempts men to their ruin!'\n\nAs he spoke, he took a pistol from his breast, and firmly clutched \nit in his hand.\n\n'Remove this man from me, good Heaven!' cried the widow.  'In thy \ngrace and mercy, give him one minute's penitence, and strike him \ndead!'\n\n'It has no such purpose,' he said, confronting her.  'It is deaf.  \nGive me to eat and drink, lest I do that it cannot help my doing, \nand will not do for you.'\n\n'Will you leave me, if I do thus much?  Will you leave me and \nreturn no more?'\n\n'I will promise nothing,' he rejoined, seating himself at the \ntable, 'nothing but this--I will execute my threat if you betray \nme.'\n\nShe rose at length, and going to a closet or pantry in the room, \nbrought out some fragments of cold meat and bread and put them on \nthe table.  He asked for brandy, and for water.  These she produced \nlikewise; and he ate and drank with the voracity of a famished \nhound.  All the time he was so engaged she kept at the uttermost \ndistance of the chamber, and sat there shuddering, but with her \nface towards him.  She never turned her back upon him once; and \nalthough when she passed him (as she was obliged to do in going to \nand from the cupboard) she gathered the skirts of her garment about \nher, as if even its touching his by chance were horrible to think \nof, still, in the midst of all this dread and terror, she kept her \nface towards his own, and watched his every movement.\n\nHis repast ended--if that can be called one, which was a mere \nravenous satisfying of the calls of hunger--he moved his chair \ntowards the fire again, and warming himself before the blaze which \nhad now sprung brightly up, accosted her once more.\n\n'I am an outcast, to whom a roof above his head is often an \nuncommon luxury, and the food a beggar would reject is delicate \nfare.  You live here at your ease.  Do you live alone?'\n\n'I do not,' she made answer with an effort.\n\n'Who dwells here besides?'\n\n'One--it is no matter who.  You had best begone, or he may find you \nhere.  Why do you linger?'\n\n'For warmth,' he replied, spreading out his hands before the fire.  \n'For warmth.  You are rich, perhaps?'\n\n'Very,' she said faintly.  'Very rich.  No doubt I am very rich.'\n\n'At least you are not penniless.  You have some money.  You were \nmaking purchases to-night.'\n\n'I have a little left.  It is but a few shillings.'\n\n'Give me your purse.  You had it in your hand at the door.  Give it \nto me.'\n\nShe stepped to the table and laid it down.  He reached across, took \nit up, and told the contents into his hand.  As he was counting \nthem, she listened for a moment, and sprung towards him.\n\n'Take what there is, take all, take more if more were there, but go \nbefore it is too late.  I have heard a wayward step without, I know \nfull well.  It will return directly.  Begone.'\n\n'What do you mean?'\n\n'Do not stop to ask.  I will not answer.  Much as I dread to touch \nyou, I would drag you to the door if I possessed the strength, \nrather than you should lose an instant.  Miserable wretch! fly from \nthis place.'\n\n'If there are spies without, I am safer here,' replied the man, \nstanding aghast.  'I will remain here, and will not fly till the \ndanger is past.'\n\n'It is too late!' cried the widow, who had listened for the step, \nand not to him.  'Hark to that foot upon the ground.  Do you \ntremble to hear it!  It is my son, my idiot son!'\n\nAs she said this wildly, there came a heavy knocking at the door.  \nHe looked at her, and she at him.\n\n'Let him come in,' said the man, hoarsely.  'I fear him less than \nthe dark, houseless night.  He knocks again.  Let him come in!'\n\n'The dread of this hour,' returned the widow, 'has been upon me all \nmy life, and I will not.  Evil will fall upon him, if you stand eye \nto eye.  My blighted boy!  Oh! all good angels who know the truth--\nhear a poor mother's prayer, and spare my boy from knowledge of \nthis man!'\n\n'He rattles at the shutters!' cried the man.  'He calls you.  That \nvoice and cry!  It was he who grappled with me in the road.  Was it \nhe?'\n\nShe had sunk upon her knees, and so knelt down, moving her lips, \nbut uttering no sound.  As he gazed upon her, uncertain what to do \nor where to turn, the shutters flew open.  He had barely time to \ncatch a knife from the table, sheathe it in the loose sleeve of his \ncoat, hide in the closet, and do all with the lightning's speed, \nwhen Barnaby tapped at the bare glass, and raised the sash \nexultingly.\n\n'Why, who can keep out Grip and me!' he cried, thrusting in his \nhead, and staring round the room.  'Are you there, mother?  How \nlong you keep us from the fire and light.'\n\nShe stammered some excuse and tendered him her hand.  But Barnaby \nsprung lightly in without assistance, and putting his arms about \nher neck, kissed her a hundred times.\n\n'We have been afield, mother--leaping ditches, scrambling through \nhedges, running down steep banks, up and away, and hurrying on.  \nThe wind has been blowing, and the rushes and young plants bowing \nand bending to it, lest it should do them harm, the cowards--and \nGrip--ha ha ha!--brave Grip, who cares for nothing, and when the \nwind rolls him over in the dust, turns manfully to bite it--Grip, \nbold Grip, has quarrelled with every little bowing twig--thinking, \nhe told me, that it mocked him--and has worried it like a bulldog.  \nHa ha ha!'\n\nThe raven, in his little basket at his master's back, hearing this \nfrequent mention of his name in a tone of exultation, expressed his \nsympathy by crowing like a cock, and afterwards running over his \nvarious phrases of speech with such rapidity, and in so many \nvarieties of hoarseness, that they sounded like the murmurs of a \ncrowd of people.\n\n'He takes such care of me besides!' said Barnaby.  'Such care, \nmother!  He watches all the time I sleep, and when I shut my eyes \nand make-believe to slumber, he practises new learning softly; but \nhe keeps his eye on me the while, and if he sees me laugh, though \nnever so little, stops directly.  He won't surprise me till he's \nperfect.'\n\nThe raven crowed again in a rapturous manner which plainly said, \n'Those are certainly some of my characteristics, and I glory in \nthem.'  In the meantime, Barnaby closed the window and secured it, \nand coming to the fireplace, prepared to sit down with his face\nto the closet.  But his mother prevented this, by hastily taking \nthat side herself, and motioning him towards the other.\n\n'How pale you are to-night!' said Barnaby, leaning on his stick.  \n'We have been cruel, Grip, and made her anxious!'\n\nAnxious in good truth, and sick at heart!  The listener held the \ndoor of his hiding-place open with his hand, and closely watched \nher son.  Grip--alive to everything his master was unconscious of--\nhad his head out of the basket, and in return was watching him \nintently with his glistening eye.\n\n'He flaps his wings,' said Barnaby, turning almost quickly enough \nto catch the retreating form and closing door, 'as if there were \nstrangers here, but Grip is wiser than to fancy that.  Jump then!'\n\nAccepting this invitation with a dignity peculiar to himself, the \nbird hopped up on his master's shoulder, from that to his extended \nhand, and so to the ground.  Barnaby unstrapping the basket and \nputting it down in a corner with the lid open, Grip's first care \nwas to shut it down with all possible despatch, and then to stand \nupon it.  Believing, no doubt, that he had now rendered it utterly \nimpossible, and beyond the power of mortal man, to shut him up in \nit any more, he drew a great many corks in triumph, and uttered a \ncorresponding number of hurrahs.\n\n'Mother!' said Barnaby, laying aside his hat and stick, and \nreturning to the chair from which he had risen, 'I'll tell you \nwhere we have been to-day, and what we have been doing,--shall I?'\n\nShe took his hand in hers, and holding it, nodded the word she \ncould not speak.\n\n'You mustn't tell,' said Barnaby, holding up his finger, 'for it's \na secret, mind, and only known to me, and Grip, and Hugh.  We had \nthe dog with us, but he's not like Grip, clever as he is, and \ndoesn't guess it yet, I'll wager.--Why do you look behind me so?'\n\n'Did I?' she answered faintly.  'I didn't know I did.  Come nearer \nme.'\n\n'You are frightened!' said Barnaby, changing colour.  'Mother--you \ndon't see'--\n\n'See what?'\n\n'There's--there's none of this about, is there?' he answered in a \nwhisper, drawing closer to her and clasping the mark upon his \nwrist.  'I am afraid there is, somewhere.  You make my hair stand \non end, and my flesh creep.  Why do you look like that?  Is it in \nthe room as I have seen it in my dreams, dashing the ceiling and \nthe walls with red?  Tell me.  Is it?'\n\nHe fell into a shivering fit as he put the question, and shutting \nout the light with his hands, sat shaking in every limb until it \nhad passed away.  After a time, he raised his head and looked about \nhim.\n\n'Is it gone?'\n\n'There has been nothing here,' rejoined his mother, soothing him.  \n'Nothing indeed, dear Barnaby.  Look!  You see there are but you \nand me.'\n\nHe gazed at her vacantly, and, becoming reassured by degrees, burst \ninto a wild laugh.\n\n'But let us see,' he said, thoughtfully.  'Were we talking?  Was it \nyou and me?  Where have we been?'\n\n'Nowhere but here.'\n\n'Aye, but Hugh, and I,' said Barnaby,--'that's it.  Maypole Hugh, \nand I, you know, and Grip--we have been lying in the forest, and \namong the trees by the road side, with a dark lantern after night \ncame on, and the dog in a noose ready to slip him when the man came \nby.'\n\n'What man?'\n\n'The robber; him that the stars winked at.  We have waited for him \nafter dark these many nights, and we shall have him.  I'd know him \nin a thousand.  Mother, see here!  This is the man.  Look!'\n\nHe twisted his handkerchief round his head, pulled his hat upon his \nbrow, wrapped his coat about him, and stood up before her: so like \nthe original he counterfeited, that the dark figure peering out \nbehind him might have passed for his own shadow.\n\n'Ha ha ha!  We shall have him,' he cried, ridding himself of the \nsemblance as hastily as he had assumed it.  'You shall see him, \nmother, bound hand and foot, and brought to London at a saddle-\ngirth; and you shall hear of him at Tyburn Tree if we have luck.  \nSo Hugh says.  You're pale again, and trembling.  And why DO you \nlook behind me so?'\n\n'It is nothing,' she answered.  'I am not quite well.  Go you to \nbed, dear, and leave me here.'\n\n'To bed!' he answered.  'I don't like bed.  I like to lie before \nthe fire, watching the prospects in the burning coals--the rivers, \nhills, and dells, in the deep, red sunset, and the wild faces.  I \nam hungry too, and Grip has eaten nothing since broad noon.  Let us \nto supper.  Grip!  To supper, lad!'\n\nThe raven flapped his wings, and, croaking his satisfaction, hopped \nto the feet of his master, and there held his bill open, ready for \nsnapping up such lumps of meat as he should throw him.  Of these he \nreceived about a score in rapid succession, without the smallest \ndiscomposure.\n\n'That's all,' said Barnaby.\n\n'More!' cried Grip.  'More!'\n\nBut it appearing for a certainty that no more was to be had, he \nretreated with his store; and disgorging the morsels one by one \nfrom his pouch, hid them in various corners--taking particular \ncare, however, to avoid the closet, as being doubtful of the hidden \nman's propensities and power of resisting temptation.  When he had \nconcluded these arrangements, he took a turn or two across the room \nwith an elaborate assumption of having nothing on his mind (but \nwith one eye hard upon his treasure all the time), and then, and \nnot till then, began to drag it out, piece by piece, and eat it \nwith the utmost relish.\n\nBarnaby, for his part, having pressed his mother to eat in vain, \nmade a hearty supper too.  Once during the progress of his meal, he \nwanted more bread from the closet and rose to get it.  She \nhurriedly interposed to prevent him, and summoning her utmost \nfortitude, passed into the recess, and brought it out herself.\n\n'Mother,' said Barnaby, looking at her steadfastly as she sat down \nbeside him after doing so; 'is to-day my birthday?'\n\n'To-day!' she answered.  'Don't you recollect it was but a week or \nso ago, and that summer, autumn, and winter have to pass before it \ncomes again?'\n\n'I remember that it has been so till now,' said Barnaby.  'But I \nthink to-day must be my birthday too, for all that.'\n\nShe asked him why?  'I'll tell you why,' he said.  'I have always \nseen you--I didn't let you know it, but I have--on the evening of \nthat day grow very sad.  I have seen you cry when Grip and I were \nmost glad; and look frightened with no reason; and I have touched \nyour hand, and felt that it was cold--as it is now.  Once, mother \n(on a birthday that was, also), Grip and I thought of this after we \nwent upstairs to bed, and when it was midnight, striking one \no'clock, we came down to your door to see if you were well.  You \nwere on your knees.  I forget what it was you said.  Grip, what was \nit we heard her say that night?'\n\n'I'm a devil!' rejoined the raven promptly.\n\n'No, no,' said Barnaby.  'But you said something in a prayer; and \nwhen you rose and walked about, you looked (as you have done ever \nsince, mother, towards night on my birthday) just as you do now.  I \nhave found that out, you see, though I am silly.  So I say you're \nwrong; and this must be my birthday--my birthday, Grip!'\n\nThe bird received this information with a crow of such duration as \na cock, gifted with intelligence beyond all others of his kind, \nmight usher in the longest day with.  Then, as if he had well \nconsidered the sentiment, and regarded it as apposite to birthdays, \nhe cried, 'Never say die!' a great many times, and flapped his \nwings for emphasis.\n\nThe widow tried to make light of Barnaby's remark, and endeavoured \nto divert his attention to some new subject; too easy a task at all \ntimes, as she knew.  His supper done, Barnaby, regardless of her \nentreaties, stretched himself on the mat before the fire; Grip \nperched upon his leg, and divided his time between dozing in the \ngrateful warmth, and endeavouring (as it presently appeared) to \nrecall a new accomplishment he had been studying all day.\n\nA long and profound silence ensued, broken only by some change of \nposition on the part of Barnaby, whose eyes were still wide open \nand intently fixed upon the fire; or by an effort of recollection \non the part of Grip, who would cry in a low voice from time to \ntime, 'Polly put the ket--' and there stop short, forgetting the \nremainder, and go off in a doze again.\n\nAfter a long interval, Barnaby's breathing grew more deep and \nregular, and his eyes were closed.  But even then the unquiet \nspirit of the raven interposed.  'Polly put the ket--' cried Grip, \nand his master was broad awake again.\n\nAt length Barnaby slept soundly, and the bird with his bill sunk \nupon his breast, his breast itself puffed out into a comfortable \nalderman-like form, and his bright eye growing smaller and smaller, \nreally seemed to be subsiding into a state of repose.  Now and then \nhe muttered in a sepulchral voice, 'Polly put the ket--' but very \ndrowsily, and more like a drunken man than a reflecting raven.\n\nThe widow, scarcely venturing to breathe, rose from her seat.  The \nman glided from the closet, and extinguished the candle.\n\n'--tle on,' cried Grip, suddenly struck with an idea and very much \nexcited.  '--tle on.  Hurrah!  Polly put the ket-tle on, we'll all \nhave tea; Polly put the ket-tle on, we'll all have tea.  Hurrah, \nhurrah, hurrah!  I'm a devil, I'm a devil, I'm a ket-tle on, Keep \nup your spirits, Never say die, Bow, wow, wow, I'm a devil, I'm a \nket-tle, I'm a--Polly put the ket-tle on, we'll all have tea.'\n\nThey stood rooted to the ground, as though it had been a voice from \nthe grave.\n\nBut even this failed to awaken the sleeper.  He turned over towards \nthe fire, his arm fell to the ground, and his head drooped heavily \nupon it.  The widow and her unwelcome visitor gazed at him and at \neach other for a moment, and then she motioned him towards the \ndoor.\n\n'Stay,' he whispered.  'You teach your son well.'\n\n'I have taught him nothing that you heard to-night.  Depart \ninstantly, or I will rouse him.'\n\n'You are free to do so.  Shall I rouse him?'\n\n'You dare not do that.'\n\n'I dare do anything, I have told you.  He knows me well, it seems.  \nAt least I will know him.'\n\n'Would you kill him in his sleep?' cried the widow, throwing \nherself between them.\n\n'Woman,' he returned between his teeth, as he motioned her aside, \n'I would see him nearer, and I will.  If you want one of us to kill \nthe other, wake him.'\n\nWith that he advanced, and bending down over the prostrate form, \nsoftly turned back the head and looked into the face.  The light of \nthe fire was upon it, and its every lineament was revealed \ndistinctly.  He contemplated it for a brief space, and hastily \nuprose.\n\n'Observe,' he whispered in the widow's ear: 'In him, of whose \nexistence I was ignorant until to-night, I have you in my power.  \nBe careful how you use me.  Be careful how you use me.  I am \ndestitute and starving, and a wanderer upon the earth.  I may take \na sure and slow revenge.'\n\n'There is some dreadful meaning in your words.  I do not fathom it.'\n\n'There is a meaning in them, and I see you fathom it to its very \ndepth.  You have anticipated it for years; you have told me as \nmuch.  I leave you to digest it.  Do not forget my warning.'\n\nHe pointed, as he left her, to the slumbering form, and stealthily \nwithdrawing, made his way into the street.  She fell on her knees \nbeside the sleeper, and remained like one stricken into stone, \nuntil the tears which fear had frozen so long, came tenderly to her \nrelief.\n\n'Oh Thou,' she cried, 'who hast taught me such deep love for this \none remnant of the promise of a happy life, out of whose \naffliction, even, perhaps the comfort springs that he is ever a \nrelying, loving child to me--never growing old or cold at heart, \nbut needing my care and duty in his manly strength as in his \ncradle-time--help him, in his darkened walk through this sad world, \nor he is doomed, and my poor heart is broken!'\n\n\n\nChapter 18\n\n\nGliding along the silent streets, and holding his course where they \nwere darkest and most gloomy, the man who had left the widow's \nhouse crossed London Bridge, and arriving in the City, plunged into \nthe backways, lanes, and courts, between Cornhill and Smithfield; \nwith no more fixedness of purpose than to lose himself among their \nwindings, and baffle pursuit, if any one were dogging his steps.\n\nIt was the dead time of the night, and all was quiet.  Now and then \na drowsy watchman's footsteps sounded on the pavement, or the \nlamplighter on his rounds went flashing past, leaving behind a \nlittle track of smoke mingled with glowing morsels of his hot red \nlink.  He hid himself even from these partakers of his lonely walk, \nand, shrinking in some arch or doorway while they passed, issued \nforth again when they were gone and so pursued his solitary way.\n\nTo be shelterless and alone in the open country, hearing the wind \nmoan and watching for day through the whole long weary night; to \nlisten to the falling rain, and crouch for warmth beneath the lee \nof some old barn or rick, or in the hollow of a tree; are dismal \nthings--but not so dismal as the wandering up and down where \nshelter is, and beds and sleepers are by thousands; a houseless \nrejected creature.  To pace the echoing stones from hour to hour, \ncounting the dull chimes of the clocks; to watch the lights \ntwinkling in chamber windows, to think what happy forgetfulness \neach house shuts in; that here are children coiled together in \ntheir beds, here youth, here age, here poverty, here wealth, all \nequal in their sleep, and all at rest; to have nothing in common \nwith the slumbering world around, not even sleep, Heaven's gift to \nall its creatures, and be akin to nothing but despair; to feel, by \nthe wretched contrast with everything on every hand, more utterly \nalone and cast away than in a trackless desert; this is a kind of \nsuffering, on which the rivers of great cities close full many a \ntime, and which the solitude in crowds alone awakens.\n\nThe miserable man paced up and down the streets--so long, so \nwearisome, so like each other--and often cast a wistful look \ntowards the east, hoping to see the first faint streaks of day.  \nBut obdurate night had yet possession of the sky, and his disturbed \nand restless walk found no relief.\n\nOne house in a back street was bright with the cheerful glare of \nlights; there was the sound of music in it too, and the tread of \ndancers, and there were cheerful voices, and many a burst of \nlaughter.  To this place--to be near something that was awake and \nglad--he returned again and again; and more than one of those who \nleft it when the merriment was at its height, felt it a check upon \ntheir mirthful mood to see him flitting to and fro like an uneasy \nghost.  At last the guests departed, one and all; and then the \nhouse was close shut up, and became as dull and silent as the rest.\n\nHis wanderings brought him at one time to the city jail.  Instead \nof hastening from it as a place of ill omen, and one he had cause \nto shun, he sat down on some steps hard by, and resting his chin \nupon his hand, gazed upon its rough and frowning walls as though \neven they became a refuge in his jaded eyes.  He paced it round and \nround, came back to the same spot, and sat down again.  He did this \noften, and once, with a hasty movement, crossed to where some men \nwere watching in the prison lodge, and had his foot upon the steps \nas though determined to accost them.  But looking round, he saw \nthat the day began to break, and failing in his purpose, turned and \nfled.\n\nHe was soon in the quarter he had lately traversed, and pacing to \nand fro again as he had done before.  He was passing down a mean \nstreet, when from an alley close at hand some shouts of revelry \narose, and there came straggling forth a dozen madcaps, whooping \nand calling to each other, who, parting noisily, took different \nways and dispersed in smaller groups.\n\nHoping that some low place of entertainment which would afford him \na safe refuge might be near at hand, he turned into this court when \nthey were all gone, and looked about for a half-opened door, or \nlighted window, or other indication of the place whence they had \ncome.  It was so profoundly dark, however, and so ill-favoured, \nthat he concluded they had but turned up there, missing their way, \nand were pouring out again when he observed them.  With this \nimpression, and finding there was no outlet but that by which he \nhad entered, he was about to turn, when from a grating near his \nfeet a sudden stream of light appeared, and the sound of talking \ncame.  He retreated into a doorway to see who these talkers were, \nand to listen to them.\n\nThe light came to the level of the pavement as he did this, and a \nman ascended, bearing in his hand a torch.  This figure unlocked \nand held open the grating as for the passage of another, who \npresently appeared, in the form of a young man of small stature and \nuncommon self-importance, dressed in an obsolete and very gaudy \nfashion.\n\n'Good night, noble captain,' said he with the torch.  'Farewell, \ncommander.  Good luck, illustrious general!'\n\nIn return to these compliments the other bade him hold his tongue, \nand keep his noise to himself, and laid upon him many similar \ninjunctions, with great fluency of speech and sternness of manner.\n\n'Commend me, captain, to the stricken Miggs,' returned the torch-\nbearer in a lower voice.  'My captain flies at higher game than \nMiggses.  Ha, ha, ha!  My captain is an eagle, both as respects his \neye and soaring wings.  My captain breaketh hearts as other \nbachelors break eggs at breakfast.'\n\n'What a fool you are, Stagg!' said Mr Tappertit, stepping on the \npavement of the court, and brushing from his legs the dust he had \ncontracted in his passage upward.\n\n'His precious limbs!' cried Stagg, clasping one of his ankles.  \n'Shall a Miggs aspire to these proportions!  No, no, my captain.  \nWe will inveigle ladies fair, and wed them in our secret cavern.  \nWe will unite ourselves with blooming beauties, captain.'\n\n'I'll tell you what, my buck,' said Mr Tappertit, releasing his \nleg; 'I'll trouble you not to take liberties, and not to broach \ncertain questions unless certain questions are broached to you.  \nSpeak when you're spoke to on particular subjects, and not \notherways.  Hold the torch up till I've got to the end of the \ncourt, and then kennel yourself, do you hear?'\n\n'I hear you, noble captain.'\n\n'Obey then,' said Mr Tappertit haughtily.  'Gentlemen, lead on!'  \nWith which word of command (addressed to an imaginary staff or \nretinue) he folded his arms, and walked with surpassing dignity \ndown the court.\n\nHis obsequious follower stood holding the torch above his head, and \nthen the observer saw for the first time, from his place of \nconcealment, that he was blind.  Some involuntary motion on his \npart caught the quick ear of the blind man, before he was conscious \nof having moved an inch towards him, for he turned suddenly and \ncried, 'Who's there?'\n\n'A man,' said the other, advancing.  'A friend.'\n\n'A stranger!' rejoined the blind man.  'Strangers are not my \nfriends.  What do you do there?'\n\n'I saw your company come out, and waited here till they were gone.  \nI want a lodging.'\n\n'A lodging at this time!' returned Stagg, pointing towards the dawn \nas though he saw it.  'Do you know the day is breaking?'\n\n'I know it,' rejoined the other, 'to my cost.  I have been \ntraversing this iron-hearted town all night.'\n\n'You had better traverse it again,' said the blind man, preparing \nto descend, 'till you find some lodgings suitable to your taste.  I \ndon't let any.'\n\n'Stay!' cried the other, holding him by the arm.\n\n'I'll beat this light about that hangdog face of yours (for hangdog \nit is, if it answers to your voice), and rouse the neighbourhood \nbesides, if you detain me,' said the blind man.  'Let me go.  Do \nyou hear?'\n\n'Do YOU hear!' returned the other, chinking a few shillings \ntogether, and hurriedly pressing them into his hand.  'I beg \nnothing of you.  I will pay for the shelter you give me.  Death!  \nIs it much to ask of such as you!  I have come from the country, \nand desire to rest where there are none to question me.  I am \nfaint, exhausted, worn out, almost dead.  Let me lie down, like a \ndog, before your fire.  I ask no more than that.  If you would be \nrid of me, I will depart to-morrow.'\n\n'If a gentleman has been unfortunate on the road,' muttered Stagg, \nyielding to the other, who, pressing on him, had already gained a \nfooting on the steps--'and can pay for his accommodation--'\n\n'I will pay you with all I have.  I am just now past the want of \nfood, God knows, and wish but to purchase shelter.  What companion \nhave you below?'\n\n'None.'\n\n'Then fasten your grate there, and show me the way.  Quick!'\n\nThe blind man complied after a moment's hesitation, and they \ndescended together.  The dialogue had passed as hurriedly as the \nwords could be spoken, and they stood in his wretched room before \nhe had had time to recover from his first surprise.\n\n'May I see where that door leads to, and what is beyond?' said the \nman, glancing keenly round.  'You will not mind that?'\n\n'I will show you myself.  Follow me, or go before.  Take your \nchoice.'\n\nHe bade him lead the way, and, by the light of the torch which his \nconductor held up for the purpose, inspected all three cellars \nnarrowly.  Assured that the blind man had spoken truth, and that he \nlived there alone, the visitor returned with him to the first, in \nwhich a fire was burning, and flung himself with a deep groan upon \nthe ground before it.\n\nHis host pursued his usual occupation without seeming to heed him \nany further.  But directly he fell asleep--and he noted his falling \ninto a slumber, as readily as the keenest-sighted man could have \ndone--he knelt down beside him, and passed his hand lightly but \ncarefully over his face and person.\n\nHis sleep was checkered with starts and moans, and sometimes with a \nmuttered word or two.  His hands were clenched, his brow bent, and \nhis mouth firmly set.  All this, the blind man accurately marked; \nand as if his curiosity were strongly awakened, and he had already \nsome inkling of his mystery, he sat watching him, if the expression \nmay be used, and listening, until it was broad day.\n\n\n\nChapter 19\n\n\nDolly Varden's pretty little head was yet bewildered by various \nrecollections of the party, and her bright eyes were yet dazzled by \na crowd of images, dancing before them like motes in the sunbeams, \namong which the effigy of one partner in particular did especially \nfigure, the same being a young coachmaker (a master in his own \nright) who had given her to understand, when he handed her into the \nchair at parting, that it was his fixed resolve to neglect his \nbusiness from that time, and die slowly for the love of her--\nDolly's head, and eyes, and thoughts, and seven senses, were all in \na state of flutter and confusion for which the party was \naccountable, although it was now three days old, when, as she was \nsitting listlessly at breakfast, reading all manner of fortunes \n(that is to say, of married and flourishing fortunes) in the \ngrounds of her teacup, a step was heard in the workshop, and Mr \nEdward Chester was descried through the glass door, standing among \nthe rusty locks and keys, like love among the roses--for which apt \ncomparison the historian may by no means take any credit to \nhimself, the same being the invention, in a sentimental mood, of \nthe chaste and modest Miggs, who, beholding him from the doorsteps \nshe was then cleaning, did, in her maiden meditation, give \nutterance to the simile.\n\nThe locksmith, who happened at the moment to have his eyes thrown \nupward and his head backward, in an intense communing with Toby, \ndid not see his visitor, until Mrs Varden, more watchful than the \nrest, had desired Sim Tappertit to open the glass door and give him \nadmission--from which untoward circumstance the good lady argued \n(for she could deduce a precious moral from the most trifling \nevent) that to take a draught of small ale in the morning was to \nobserve a pernicious, irreligious, and Pagan custom, the relish \nwhereof should be left to swine, and Satan, or at least to Popish \npersons, and should be shunned by the righteous as a work of sin \nand evil.  She would no doubt have pursued her admonition much \nfurther, and would have founded on it a long list of precious \nprecepts of inestimable value, but that the young gentleman \nstanding by in a somewhat uncomfortable and discomfited manner \nwhile she read her spouse this lecture, occasioned her to bring it \nto a premature conclusion.\n\n'I'm sure you'll excuse me, sir,' said Mrs Varden, rising and \ncurtseying.  'Varden is so very thoughtless, and needs so much \nreminding--Sim, bring a chair here.'\n\nMr Tappertit obeyed, with a flourish implying that he did so, \nunder protest.\n\n'And you can go, Sim,' said the locksmith.\n\nMr Tappertit obeyed again, still under protest; and betaking \nhimself to the workshop, began seriously to fear that he might find \nit necessary to poison his master, before his time was out.\n\nIn the meantime, Edward returned suitable replies to Mrs Varden's \ncourtesies, and that lady brightened up very much; so that when he \naccepted a dish of tea from the fair hands of Dolly, she was \nperfectly agreeable.\n\n'I am sure if there's anything we can do,--Varden, or I, or Dolly \neither,--to serve you, sir, at any time, you have only to say it, \nand it shall be done,' said Mrs V.\n\n'I am much obliged to you, I am sure,' returned Edward.  'You \nencourage me to say that I have come here now, to beg your good \noffices.'\n\nMrs Varden was delighted beyond measure.\n\n'It occurred to me that probably your fair daughter might be going \nto the Warren, either to-day or to-morrow,' said Edward, glancing \nat Dolly; 'and if so, and you will allow her to take charge of this \nletter, ma'am, you will oblige me more than I can tell you.  The \ntruth is, that while I am very anxious it should reach its \ndestination, I have particular reasons for not trusting it to any \nother conveyance; so that without your help, I am wholly at a loss.'\n\n'She was not going that way, sir, either to-day, or to-morrow, nor \nindeed all next week,' the lady graciously rejoined, 'but we shall \nbe very glad to put ourselves out of the way on your account, and \nif you wish it, you may depend upon its going to-day.  You might \nsuppose,' said Mrs Varden, frowning at her husband, 'from Varden's \nsitting there so glum and silent, that he objected to this \narrangement; but you must not mind that, sir, if you please.  It's \nhis way at home.  Out of doors, he can be cheerful and talkative \nenough.'\n\nNow, the fact was, that the unfortunate locksmith, blessing his \nstars to find his helpmate in such good humour, had been sitting \nwith a beaming face, hearing this discourse with a joy past all \nexpression.  Wherefore this sudden attack quite took him by \nsurprise.\n\n'My dear Martha--' he said.\n\n'Oh yes, I dare say,' interrupted Mrs Varden, with a smile of \nmingled scorn and pleasantry.  'Very dear!  We all know that.'\n\n'No, but my good soul,' said Gabriel, 'you are quite mistaken.  You \nare indeed.  I was delighted to find you so kind and ready.  I \nwaited, my dear, anxiously, I assure you, to hear what you would \nsay.'\n\n'You waited anxiously,' repeated Mrs V.  'Yes!  Thank you, Varden.  \nYou waited, as you always do, that I might bear the blame, if any \ncame of it.  But I am used to it,' said the lady with a kind of \nsolemn titter, 'and that's my comfort!'\n\n'I give you my word, Martha--' said Gabriel.\n\n'Let me give you MY word, my dear,' interposed his wife with a \nChristian smile, 'that such discussions as these between married \npeople, are much better left alone.  Therefore, if you please, \nVarden, we'll drop the subject.  I have no wish to pursue it.  I \ncould.  I might say a great deal.  But I would rather not.  Pray \ndon't say any more.'\n\n'I don't want to say any more,' rejoined the goaded locksmith.\n\n'Well then, don't,' said Mrs Varden.\n\n'Nor did I begin it, Martha,' added the locksmith, good-humouredly, \n'I must say that.'\n\n'You did not begin it, Varden!' exclaimed his wife, opening her \neyes very wide and looking round upon the company, as though she \nwould say, You hear this man!  'You did not begin it, Varden!  But \nyou shall not say I was out of temper.  No, you did not begin it, \noh dear no, not you, my dear!'\n\n'Well, well,' said the locksmith.  'That's settled then.'\n\n'Oh yes,' rejoined his wife, 'quite.  If you like to say Dolly \nbegan it, my dear, I shall not contradict you.  I know my duty.  I \nneed know it, I am sure.  I am often obliged to bear it in mind, \nwhen my inclination perhaps would be for the moment to forget it.  \nThank you, Varden.'  And so, with a mighty show of humility and \nforgiveness, she folded her hands, and looked round again, with a \nsmile which plainly said, 'If you desire to see the first and \nforemost among female martyrs, here she is, on view!'\n\nThis little incident, illustrative though it was of Mrs Varden's \nextraordinary sweetness and amiability, had so strong a tendency to \ncheck the conversation and to disconcert all parties but that \nexcellent lady, that only a few monosyllables were uttered until \nEdward withdrew; which he presently did, thanking the lady of the \nhouse a great many times for her condescension, and whispering in \nDolly's ear that he would call on the morrow, in case there should \nhappen to be an answer to the note--which, indeed, she knew without \nhis telling, as Barnaby and his friend Grip had dropped in on the \nprevious night to prepare her for the visit which was then \nterminating.\n\nGabriel, who had attended Edward to the door, came back with his \nhands in his pockets; and, after fidgeting about the room in a very \nuneasy manner, and casting a great many sidelong looks at Mrs \nVarden (who with the calmest countenance in the world was five \nfathoms deep in the Protestant Manual), inquired of Dolly how she \nmeant to go.  Dolly supposed by the stage-coach, and looked at her \nlady mother, who finding herself silently appealed to, dived down \nat least another fathom into the Manual, and became unconscious of \nall earthly things.\n\n'Martha--' said the locksmith.\n\n'I hear you, Varden,' said his wife, without rising to the surface.\n\n'I am sorry, my dear, you have such an objection to the Maypole and \nold John, for otherways as it's a very fine morning, and Saturday's \nnot a busy day with us, we might have all three gone to Chigwell in \nthe chaise, and had quite a happy day of it.'\n\nMrs Varden immediately closed the Manual, and bursting into tears, \nrequested to be led upstairs.\n\n'What is the matter now, Martha?' inquired the locksmith.\n\nTo which Martha rejoined, 'Oh! don't speak to me,' and protested in \nagony that if anybody had told her so, she wouldn't have believed \nit.\n\n'But, Martha,' said Gabriel, putting himself in the way as she was \nmoving off with the aid of Dolly's shoulder, 'wouldn't have \nbelieved what?  Tell me what's wrong now.  Do tell me.  Upon my \nsoul I don't know.  Do you know, child?  Damme!' cried the \nlocksmith, plucking at his wig in a kind of frenzy, 'nobody does \nknow, I verily believe, but Miggs!'\n\n'Miggs,' said Mrs Varden faintly, and with symptoms of approaching \nincoherence, 'is attached to me, and that is sufficient to draw \ndown hatred upon her in this house.  She is a comfort to me, \nwhatever she may be to others.'\n\n'She's no comfort to me,' cried Gabriel, made bold by despair.  \n'She's the misery of my life.  She's all the plagues of Egypt in \none.'\n\n'She's considered so, I have no doubt,' said Mrs Varden.  'I was \nprepared for that; it's natural; it's of a piece with the rest.  \nWhen you taunt me as you do to my face, how can I wonder that you \ntaunt her behind her back!'  And here the incoherence coming on \nvery strong, Mrs Varden wept, and laughed, and sobbed, and \nshivered, and hiccoughed, and choked; and said she knew it was very \nfoolish but she couldn't help it; and that when she was dead and \ngone, perhaps they would be sorry for it--which really under the \ncircumstances did not appear quite so probable as she seemed to \nthink--with a great deal more to the same effect.  In a word, she \npassed with great decency through all the ceremonies incidental to \nsuch occasions; and being supported upstairs, was deposited in a \nhighly spasmodic state on her own bed, where Miss Miggs shortly \nafterwards flung herself upon the body.\n\nThe philosophy of all this was, that Mrs Varden wanted to go to \nChigwell; that she did not want to make any concession or \nexplanation; that she would only go on being implored and entreated \nso to do; and that she would accept no other terms.  Accordingly, \nafter a vast amount of moaning and crying upstairs, and much \ndamping of foreheads, and vinegaring of temples, and hartshorning \nof noses, and so forth; and after most pathetic adjurations from \nMiggs, assisted by warm brandy-and-water not over-weak, and divers \nother cordials, also of a stimulating quality, administered at \nfirst in teaspoonfuls and afterwards in increasing doses, and of \nwhich Miss Miggs herself partook as a preventive measure (for \nfainting is infectious); after all these remedies, and many more \ntoo numerous to mention, but not to take, had been applied; and \nmany verbal consolations, moral, religious, and miscellaneous, had \nbeen super-added thereto; the locksmith humbled himself, and the \nend was gained.\n\n'If it's only for the sake of peace and quietness, father,' said \nDolly, urging him to go upstairs.\n\n'Oh, Doll, Doll,' said her good-natured father.  'If you ever have \na husband of your own--'\n\nDolly glanced at the glass.\n\n'--Well, WHEN you have,' said the locksmith, 'never faint, my \ndarling.  More domestic unhappiness has come of easy fainting, \nDoll, than from all the greater passions put together.  Remember \nthat, my dear, if you would be really happy, which you never can \nbe, if your husband isn't.  And a word in your ear, my precious.  \nNever have a Miggs about you!'\n\nWith this advice he kissed his blooming daughter on the cheek, and \nslowly repaired to Mrs Varden's room; where that lady, lying all \npale and languid on her couch, was refreshing herself with a sight \nof her last new bonnet, which Miggs, as a means of calming her \nscattered spirits, displayed to the best advantage at her bedside.\n\n'Here's master, mim,' said Miggs.  'Oh, what a happiness it is \nwhen man and wife come round again!  Oh gracious, to think that him \nand her should ever have a word together!'  In the energy of these \nsentiments, which were uttered as an apostrophe to the Heavens in \ngeneral, Miss Miggs perched the bonnet on the top of her own head, \nand folding her hands, turned on her tears.\n\n'I can't help it,' cried Miggs.  'I couldn't, if I was to be \ndrownded in 'em.  She has such a forgiving spirit!  She'll forget \nall that has passed, and go along with you, sir--Oh, if it was to \nthe world's end, she'd go along with you.'\n\nMrs Varden with a faint smile gently reproved her attendant for \nthis enthusiasm, and reminded her at the same time that she was far \ntoo unwell to venture out that day.\n\n'Oh no, you're not, mim, indeed you're not,' said Miggs; 'I repeal \nto master; master knows you're not, mim.  The hair, and motion of \nthe shay, will do you good, mim, and you must not give way, you \nmust not raly.  She must keep up, mustn't she, sir, for all out \nsakes?  I was a telling her that, just now.  She must remember us, \neven if she forgets herself.  Master will persuade you, mim, I'm \nsure.  There's Miss Dolly's a-going you know, and master, and you, \nand all so happy and so comfortable.  Oh!' cried Miggs, turning on \nthe tears again, previous to quitting the room in great emotion, 'I \nnever see such a blessed one as she is for the forgiveness of her \nspirit, I never, never, never did.  Not more did master neither; \nno, nor no one--never!'\n\nFor five minutes or thereabouts, Mrs Varden remained mildly opposed \nto all her husband's prayers that she would oblige him by taking a \nday's pleasure, but relenting at length, she suffered herself to be \npersuaded, and granting him her free forgiveness (the merit \nwhereof, she meekly said, rested with the Manual and not with her), \ndesired that Miggs might come and help her dress.  The handmaid \nattended promptly, and it is but justice to their joint exertions \nto record that, when the good lady came downstairs in course of \ntime, completely decked out for the journey, she really looked as \nif nothing had happened, and appeared in the very best health \nimaginable.\n\nAs to Dolly, there she was again, the very pink and pattern of good \nlooks, in a smart little cherry-coloured mantle, with a hood of \nthe same drawn over her head, and upon the top of that hood, a \nlittle straw hat trimmed with cherry-coloured ribbons, and worn the \nmerest trifle on one side--just enough in short to make it the \nwickedest and most provoking head-dress that ever malicious \nmilliner devised.  And not to speak of the manner in which these \ncherry-coloured decorations brightened her eyes, or vied with her \nlips, or shed a new bloom on her face, she wore such a cruel little \nmuff, and such a heart-rending pair of shoes, and was so \nsurrounded and hemmed in, as it were, by aggravations of all kinds, \nthat when Mr Tappettit, holding the horse's head, saw her come out \nof the house alone, such impulses came over him to decoy her into \nthe chaise and drive off like mad, that he would unquestionably \nhave done it, but for certain uneasy doubts besetting him as to the \nshortest way to Gretna Green; whether it was up the street or \ndown, or up the right-hand turning or the left; and whether, \nsupposing all the turnpikes to be carried by storm, the blacksmith \nin the end would marry them on credit; which by reason of his \nclerical office appeared, even to his excited imagination, so \nunlikely, that he hesitated.  And while he stood hesitating, and \nlooking post-chaises-and-six at Dolly, out came his master and his \nmistress, and the constant Miggs, and the opportunity was gone for \never.  For now the chaise creaked upon its springs, and Mrs Varden \nwas inside; and now it creaked again, and more than ever, and the \nlocksmith was inside; and now it bounded once, as if its heart beat \nlightly, and Dolly was inside; and now it was gone and its place \nwas empty, and he and that dreary Miggs were standing in the street \ntogether.\n\nThe hearty locksmith was in as good a humour as if nothing had \noccurred for the last twelve months to put him out of his way, \nDolly was all smiles and graces, and Mrs Varden was agreeable \nbeyond all precedent.  As they jogged through the streets talking \nof this thing and of that, who should be descried upon the pavement \nbut that very coachmaker, looking so genteel that nobody would have \nbelieved he had ever had anything to do with a coach but riding in \nit, and bowing like any nobleman.  To be sure Dolly was confused \nwhen she bowed again, and to be sure the cherry-coloured ribbons \ntrembled a little when she met his mournful eye, which seemed to \nsay, 'I have kept my word, I have begun, the business is going to \nthe devil, and you're the cause of it.'  There he stood, rooted to \nthe ground: as Dolly said, like a statue; and as Mrs Varden said, \nlike a pump; till they turned the corner: and when her father \nthought it was like his impudence, and her mother wondered what he \nmeant by it, Dolly blushed again till her very hood was pale.\n\nBut on they went, not the less merrily for this, and there was the \nlocksmith in the incautious fulness of his heart 'pulling-up' at \nall manner of places, and evincing a most intimate acquaintance \nwith all the taverns on the road, and all the landlords and all the \nlandladies, with whom, indeed, the little horse was on equally \nfriendly terms, for he kept on stopping of his own accord.  Never \nwere people so glad to see other people as these landlords and \nlandladies were to behold Mr Varden and Mrs Varden and Miss Varden; \nand wouldn't they get out, said one; and they really must walk \nupstairs, said another; and she would take it ill and be quite \ncertain they were proud if they wouldn't have a little taste of \nsomething, said a third; and so on, that it was really quite a \nProgress rather than a ride, and one continued scene of hospitality \nfrom beginning to end.  It was pleasant enough to be held in such \nesteem, not to mention the refreshments; so Mrs Varden said nothing \nat the time, and was all affability and delight--but such a body of \nevidence as she collected against the unfortunate locksmith that \nday, to be used thereafter as occasion might require, never was got \ntogether for matrimonial purposes.\n\nIn course of time--and in course of a pretty long time too, for \nthese agreeable interruptions delayed them not a little,--they \narrived upon the skirts of the Forest, and riding pleasantly on \namong the trees, came at last to the Maypole, where the locksmith's \ncheerful 'Yoho!' speedily brought to the porch old John, and after \nhim young Joe, both of whom were so transfixed at sight of the \nladies, that for a moment they were perfectly unable to give them \nany welcome, and could do nothing but stare.\n\nIt was only for a moment, however, that Joe forgot himself, for \nspeedily reviving he thrust his drowsy father aside--to Mr Willet's \nmighty and inexpressible indignation--and darting out, stood ready \nto help them to alight.  It was necessary for Dolly to get out \nfirst.  Joe had her in his arms;--yes, though for a space of time \nno longer than you could count one in, Joe had her in his arms.  \nHere was a glimpse of happiness!\n\nIt would be difficult to describe what a flat and commonplace \naffair the helping Mrs Varden out afterwards was, but Joe did it, \nand did it too with the best grace in the world.  Then old John, \nwho, entertaining a dull and foggy sort of idea that Mrs Varden \nwasn't fond of him, had been in some doubt whether she might not \nhave come for purposes of assault and battery, took courage, hoped \nshe was well, and offered to conduct her into the house.  This \ntender being amicably received, they marched in together; Joe and \nDolly followed, arm-in-arm, (happiness again!) and Varden brought \nup the rear.\n\nOld John would have it that they must sit in the bar, and nobody \nobjecting, into the bar they went.  All bars are snug places, but \nthe Maypole's was the very snuggest, cosiest, and completest bar, \nthat ever the wit of man devised.  Such amazing bottles in old \noaken pigeon-holes; such gleaming tankards dangling from pegs at \nabout the same inclination as thirsty men would hold them to their \nlips; such sturdy little Dutch kegs ranged in rows on shelves; so \nmany lemons hanging in separate nets, and forming the fragrant \ngrove already mentioned in this chronicle, suggestive, with goodly \nloaves of snowy sugar stowed away hard by, of punch, idealised \nbeyond all mortal knowledge; such closets, such presses, such \ndrawers full of pipes, such places for putting things away in \nhollow window-seats, all crammed to the throat with eatables, \ndrinkables, or savoury condiments; lastly, and to crown all, as \ntypical of the immense resources of the establishment, and its \ndefiances to all visitors to cut and come again, such a stupendous \ncheese!\n\nIt is a poor heart that never rejoices--it must have been the \npoorest, weakest, and most watery heart that ever beat, which would \nnot have warmed towards the Maypole bar.  Mrs Varden's did \ndirectly.  She could no more have reproached John Willet among \nthose household gods, the kegs and bottles, lemons, pipes, and \ncheese, than she could have stabbed him with his own bright \ncarving-knife.  The order for dinner too--it might have soothed a \nsavage.  'A bit of fish,' said John to the cook, 'and some lamb \nchops (breaded, with plenty of ketchup), and a good salad, and a \nroast spring chicken, with a dish of sausages and mashed potatoes, \nor something of that sort.'  Something of that sort!  The resources \nof these inns!  To talk carelessly about dishes, which in \nthemselves were a first-rate holiday kind of dinner, suitable to \none's wedding-day, as something of that sort: meaning, if you can't \nget a spring chicken, any other trifle in the way of poultry will \ndo--such as a peacock, perhaps!  The kitchen too, with its great \nbroad cavernous chimney; the kitchen, where nothing in the way of \ncookery seemed impossible; where you could believe in anything to \neat, they chose to tell you of.  Mrs Varden returned from the \ncontemplation of these wonders to the bar again, with a head quite \ndizzy and bewildered.  Her housekeeping capacity was not large \nenough to comprehend them.  She was obliged to go to sleep.  Waking \nwas pain, in the midst of such immensity.\n\nDolly in the meanwhile, whose gay heart and head ran upon other \nmatters, passed out at the garden door, and glancing back now and \nthen (but of course not wondering whether Joe saw her), tripped \naway by a path across the fields with which she was well \nacquainted, to discharge her mission at the Warren; and this \ndeponent hath been informed and verily believes, that you might \nhave seen many less pleasant objects than the cherry-coloured \nmantle and ribbons, as they went fluttering along the green meadows \nin the bright light of the day, like giddy things as they were.\n\n\n\nChapter 20\n\n\nThe proud consciousness of her trust, and the great importance she \nderived from it, might have advertised it to all the house if she \nhad had to run the gauntlet of its inhabitants; but as Dolly had \nplayed in every dull room and passage many and many a time, when a \nchild, and had ever since been the humble friend of Miss Haredale, \nwhose foster-sister she was, she was as free of the building as the \nyoung lady herself.  So, using no greater precaution than holding \nher breath and walking on tiptoe as she passed the library door, \nshe went straight to Emma's room as a privileged visitor.\n\nIt was the liveliest room in the building.  The chamber was sombre \nlike the rest for the matter of that, but the presence of youth and \nbeauty would make a prison cheerful (saving alas! that confinement \nwithers them), and lend some charms of their own to the gloomiest \nscene.  Birds, flowers, books, drawing, music, and a hundred such \ngraceful tokens of feminine loves and cares, filled it with more of \nlife and human sympathy than the whole house besides seemed made to \nhold.  There was heart in the room; and who that has a heart, ever \nfails to recognise the silent presence of another!\n\nDolly had one undoubtedly, and it was not a tough one either, \nthough there was a little mist of coquettishness about it, such as \nsometimes surrounds that sun of life in its morning, and slightly \ndims its lustre.  Thus, when Emma rose to greet her, and kissing \nher affectionately on the cheek, told her, in her quiet way, that \nshe had been very unhappy, the tears stood in Dolly's eyes, and she \nfelt more sorry than she could tell; but next moment she happened \nto raise them to the glass, and really there was something there so \nexceedingly agreeable, that as she sighed, she smiled, and felt \nsurprisingly consoled.\n\n'I have heard about it, miss,' said Dolly, 'and it's very sad \nindeed, but when things are at the worst they are sure to mend.'\n\n'But are you sure they are at the worst?' asked Emma with a smile.\n\n'Why, I don't see how they can very well be more unpromising than \nthey are; I really don't,' said Dolly.  'And I bring something to \nbegin with.'\n\n'Not from Edward?'\n\nDolly nodded and smiled, and feeling in her pockets (there were \npockets in those days) with an affectation of not being able to \nfind what she wanted, which greatly enhanced her importance, at \nlength produced the letter.  As Emma hastily broke the seal and \nbecame absorbed in its contents, Dolly's eyes, by one of those \nstrange accidents for which there is no accounting, wandered to the \nglass again.  She could not help wondering whether the coach-maker \nsuffered very much, and quite pitied the poor man.\n\nIt was a long letter--a very long letter, written close on all four \nsides of the sheet of paper, and crossed afterwards; but it was not \na consolatory letter, for as Emma read it she stopped from time to \ntime to put her handkerchief to her eyes.  To be sure Dolly \nmarvelled greatly to see her in so much distress, for to her \nthinking a love affair ought to be one of the best jokes, and the \nslyest, merriest kind of thing in life.  But she set it down in her \nown mind that all this came from Miss Haredale's being so constant, \nand that if she would only take on with some other young gentleman--\njust in the most innocent way possible, to keep her first lover up \nto the mark--she would find herself inexpressibly comforted.\n\n'I am sure that's what I should do if it was me,' thought Dolly.  \n'To make one's sweetheart miserable is well enough and quite right, \nbut to be made miserable one's self is a little too much!'\n\nHowever it wouldn't do to say so, and therefore she sat looking on \nin silence.  She needed a pretty considerable stretch of patience, \nfor when the long letter had been read once all through it was read \nagain, and when it had been read twice all through it was read \nagain.  During this tedious process, Dolly beguiled the time in the \nmost improving manner that occurred to her, by curling her hair on \nher fingers, with the aid of the looking-glass before mentioned, \nand giving it some killing twists.\n\nEverything has an end.  Even young ladies in love cannot read their \nletters for ever.  In course of time the packet was folded up, and \nit only remained to write the answer.\n\nBut as this promised to be a work of time likewise, Emma said she \nwould put it off until after dinner, and that Dolly must dine with \nher.  As Dolly had made up her mind to do so beforehand, she \nrequired very little pressing; and when they had settled this \npoint, they went to walk in the garden.\n\nThey strolled up and down the terrace walks, talking incessantly--\nat least, Dolly never left off once--and making that quarter of the \nsad and mournful house quite gay.  Not that they talked loudly or \nlaughed much, but they were both so very handsome, and it was such \na breezy day, and their light dresses and dark curls appeared so \nfree and joyous in their abandonment, and Emma was so fair, and \nDolly so rosy, and Emma so delicately shaped, and Dolly so plump, \nand--in short, there are no flowers for any garden like such \nflowers, let horticulturists say what they may, and both house and \ngarden seemed to know it, and to brighten up sensibly.\n\nAfter this, came the dinner and the letter writing, and some more \ntalking, in the course of which Miss Haredale took occasion to \ncharge upon Dolly certain flirtish and inconstant propensities, \nwhich accusations Dolly seemed to think very complimentary indeed, \nand to be mightily amused with.  Finding her quite incorrigible in \nthis respect, Emma suffered her to depart; but not before she had \nconfided to her that important and never-sufficiently-to-be-taken-\ncare-of answer, and endowed her moreover with a pretty little \nbracelet as a keepsake.  Having clasped it on her arm, and again \nadvised her half in jest and half in earnest to amend her roguish \nways, for she knew she was fond of Joe at heart (which Dolly \nstoutly denied, with a great many haughty protestations that she \nhoped she could do better than that indeed! and so forth), she bade \nher farewell; and after calling her back to give her more \nsupplementary messages for Edward, than anybody with tenfold the \ngravity of Dolly Varden could be reasonably expected to remember, \nat length dismissed her.\n\nDolly bade her good bye, and tripping lightly down the stairs \narrived at the dreaded library door, and was about to pass it again \non tiptoe, when it opened, and behold! there stood Mr Haredale.  \nNow, Dolly had from her childhood associated with this gentleman \nthe idea of something grim and ghostly, and being at the moment \nconscience-stricken besides, the sight of him threw her into such a \nflurry that she could neither acknowledge his presence nor run \naway, so she gave a great start, and then with downcast eyes stood \nstill and trembled.\n\n'Come here, girl,' said Mr Haredale, taking her by the hand.  'I \nwant to speak to you.'\n\n'If you please, sir, I'm in a hurry,' faltered Dolly, 'and--you \nhave frightened me by coming so suddenly upon me, sir--I would \nrather go, sir, if you'll be so good as to let me.'\n\n'Immediately,' said Mr Haredale, who had by this time led her into \nthe room and closed the door.  You shall go directly.  You have \njust left Emma?'\n\n'Yes, sir, just this minute.--Father's waiting for me, sir, if \nyou'll please to have the goodness--'\n\nI know.  I know,' said Mr Haredale.  'Answer me a question.  What \ndid you bring here to-day?' \n\n'Bring here, sir?' faltered Dolly.  \n\n'You will tell me the truth, I am sure.  Yes.'\n\nDolly hesitated for a little while, and somewhat emboldened by his \nmanner, said at last, 'Well then, sir.  It was a letter.'\n\n'From Mr Edward Chester, of course.  And you are the bearer of the \nanswer?'\n\nDolly hesitated again, and not being able to decide upon any other \ncourse of action, burst into tears.\n\n'You alarm yourself without cause,' said Mr Haredale.  'Why are you \nso foolish?  Surely you can answer me.  You know that I have but \nto put the question to Emma and learn the truth directly.  Have you \nthe answer with you?'\n\nDolly had what is popularly called a spirit of her own, and being \nnow fairly at bay, made the best of it.\n\n'Yes, sir,' she rejoined, trembling and frightened as she was.  \n'Yes, sir, I have.  You may kill me if you please, sir, but I won't \ngive it up.  I'm very sorry,--but I won't.  There, sir.'\n\n'I commend your firmness and your plain-speaking,' said Mr \nHaredale.  'Rest assured that I have as little desire to take your \nletter as your life.  You are a very discreet messenger and a good \ngirl.'\n\nNot feeling quite certain, as she afterwards said, whether he might \nnot be 'coming over her' with these compliments, Dolly kept as far \nfrom him as she could, cried again, and resolved to defend her \npocket (for the letter was there) to the last extremity.\n\n'I have some design,' said Mr Haredale after a short silence, \nduring which a smile, as he regarded her, had struggled through \nthe gloom and melancholy that was natural to his face, 'of \nproviding a companion for my niece; for her life is a very lonely \none.  Would you like the office?  You are the oldest friend she \nhas, and the best entitled to it.'\n\n'I don't know, sir,' answered Dolly, not sure but he was bantering \nher; 'I can't say.  I don't know what they might wish at home.  I \ncouldn't give an opinion, sir.'\n\n'If your friends had no objection, would you have any?' said Mr \nHaredale.  'Come.  There's a plain question; and easy to answer.'\n\n'None at all that I know of sir,' replied Dolly.  'I should be very \nglad to be near Miss Emma of course, and always am.'\n\n'That's well,' said Mr Haredale.  'That is all I had to say.  You \nare anxious to go.  Don't let me detain you.'\n\nDolly didn't let him, nor did she wait for him to try, for the \nwords had no sooner passed his lips than she was out of the room, \nout of the house, and in the fields again.\n\nThe first thing to be done, of course, when she came to herself and \nconsidered what a flurry she had been in, was to cry afresh; and \nthe next thing, when she reflected how well she had got over it, \nwas to laugh heartily.  The tears once banished gave place to the \nsmiles, and at last Dolly laughed so much that she was fain to lean \nagainst a tree, and give vent to her exultation.  When she could \nlaugh no longer, and was quite tired, she put her head-dress to \nrights, dried her eyes, looked back very merrily and triumphantly \nat the Warren chimneys, which were just visible, and resumed her \nwalk.\n\nThe twilight had come on, and it was quickly growing dusk, but the \npath was so familiar to her from frequent traversing that she \nhardly thought of this, and certainly felt no uneasiness at being \nleft alone.  Moreover, there was the bracelet to admire; and when \nshe had given it a good rub, and held it out at arm's length, it \nsparkled and glittered so beautifully on her wrist, that to look at \nit in every point of view and with every possible turn of the arm, \nwas quite an absorbing business.  There was the letter too, and it \nlooked so mysterious and knowing, when she took it out of her \npocket, and it held, as she knew, so much inside, that to turn it \nover and over, and think about it, and wonder how it began, and how \nit ended, and what it said all through, was another matter of \nconstant occupation.  Between the bracelet and the letter, there \nwas quite enough to do without thinking of anything else; and \nadmiring each by turns, Dolly went on gaily.\n\nAs she passed through a wicket-gate to where the path was narrow, \nand lay between two hedges garnished here and there with trees, she \nheard a rustling close at hand, which brought her to a sudden stop.  \nShe listened.  All was very quiet, and she went on again--not \nabsolutely frightened, but a little quicker than before perhaps, \nand possibly not quite so much at her ease, for a check of that \nkind is startling.\n\nShe had no sooner moved on again, than she was conscious of the \nsame sound, which was like that of a person tramping stealthily \namong bushes and brushwood.  Looking towards the spot whence it \nappeared to come, she almost fancied she could make out a crouching \nfigure.  She stopped again.  All was quiet as before.  On she went \nonce more--decidedly faster now--and tried to sing softly to \nherself.  It must he the wind.\n\nBut how came the wind to blow only when she walked, and cease when \nshe stood still?  She stopped involuntarily as she made the \nreflection, and the rustling noise stopped likewise.  She was \nreally frightened now, and was yet hesitating what to do, when the \nbushes crackled and snapped, and a man came plunging through them, \nclose before her.\n\n\n\nChapter 21\n\n\nIt was for the moment an inexpressible relief to Dolly, to \nrecognise in the person who forced himself into the path so \nabruptly, and now stood directly in her way, Hugh of the Maypole, \nwhose name she uttered in a tone of delighted surprise that came \nfrom her heart.\n\n'Was it you?' she said, 'how glad I am to see you! and how could \nyou terrify me so!'\n\nIn answer to which, he said nothing at all, but stood quite still, \nlooking at her.\n\n'Did you come to meet me?' asked Dolly.\n\nHugh nodded, and muttered something to the effect that he had been \nwaiting for her, and had expected her sooner.\n\n'I thought it likely they would send,' said Dolly, greatly \nreassured by this.\n\n'Nobody sent me,' was his sullen answer.  'I came of my own \naccord.'\n\nThe rough bearing of this fellow, and his wild, uncouth appearance, \nhad often filled the girl with a vague apprehension even when other \npeople were by, and had occasioned her to shrink from him \ninvoluntarily.  The having him for an unbidden companion in so \nsolitary a place, with the darkness fast gathering about them, \nrenewed and even increased the alarm she had felt at first.\n\nIf his manner had been merely dogged and passively fierce, as \nusual, she would have had no greater dislike to his company than \nshe always felt--perhaps, indeed, would have been rather glad to \nhave had him at hand.  But there was something of coarse bold \nadmiration in his look, which terrified her very much.  She glanced \ntimidly towards him, uncertain whether to go forward or retreat, \nand he stood gazing at her like a handsome satyr; and so they \nremained for some short time without stirring or breaking silence.  \nAt length Dolly took courage, shot past him, and hurried on.\n\n'Why do you spend so much breath in avoiding me?' said Hugh, \naccommodating his pace to hers, and keeping close at her side.\n\n'I wish to get back as quickly as I can, and you walk too near me, \nanswered Dolly.'\n\n'Too near!' said Hugh, stooping over her so that she could feel his \nbreath upon her forehead.  'Why too near?  You're always proud to \nME, mistress.'\n\n'I am proud to no one.  You mistake me,' answered Dolly.  'Fall \nback, if you please, or go on.'\n\n'Nay, mistress,' he rejoined, endeavouring to draw her arm through \nhis, 'I'll walk with you.'\n\nShe released herself and clenching her little hand, struck him with \nright good will.  At this, Maypole Hugh burst into a roar of \nlaughter, and passing his arm about her waist, held her in his \nstrong grasp as easily as if she had been a bird.\n\n'Ha ha ha!  Well done, mistress!  Strike again.  You shall beat my \nface, and tear my hair, and pluck my beard up by the roots, and \nwelcome, for the sake of your bright eyes.  Strike again, mistress.  \nDo.  Ha ha ha!  I like it.'\n\n'Let me go,' she cried, endeavouring with both her hands to push \nhim off.  'Let me go this moment.'\n\n'You had as good be kinder to me, Sweetlips,' said Hugh.  'You had, \nindeed.  Come.  Tell me now.  Why are you always so proud?  I \ndon't quarrel with you for it.  I love you when you're proud.  Ha \nha ha!  You can't hide your beauty from a poor fellow; that's a \ncomfort!'\n\nShe gave him no answer, but as he had not yet checked her progress, \ncontinued to press forward as rapidly as she could.  At length, \nbetween the hurry she had made, her terror, and the tightness of \nhis embrace, her strength failed her, and she could go no further.\n\n'Hugh,' cried the panting girl, 'good Hugh; if you will leave me I \nwill give you anything--everything I have--and never tell one word \nof this to any living creature.'\n\n'You had best not,' he answered.  'Harkye, little dove, you had \nbest not.  All about here know me, and what I dare do if I have a \nmind.  If ever you are going to tell, stop when the words are on \nyour lips, and think of the mischief you'll bring, if you do, upon \nsome innocent heads that you wouldn't wish to hurt a hair of.  \nBring trouble on me, and I'll bring trouble and something more on \nthem in return.  I care no more for them than for so many dogs; not \nso much--why should I?  I'd sooner kill a man than a dog any day.  \nI've never been sorry for a man's death in all my life, and I have \nfor a dog's.'\n\nThere was something so thoroughly savage in the manner of these \nexpressions, and the looks and gestures by which they were \naccompanied, that her great fear of him gave her new strength, and \nenabled her by a sudden effort to extricate herself and run fleetly \nfrom him.  But Hugh was as nimble, strong, and swift of foot, as \nany man in broad England, and it was but a fruitless expenditure of \nenergy, for he had her in his encircling arms again before she had \ngone a hundred yards.\n\n'Softly, darling--gently--would you fly from rough Hugh, that loves \nyou as well as any drawing-room gallant?'\n\n'I would,' she answered, struggling to free herself again.  'I \nwill.  Help!'\n\n'A fine for crying out,' said Hugh.  'Ha ha ha!  A fine, pretty \none, from your lips.  I pay myself!  Ha ha ha!'\n\n'Help! help! help!'  As she shrieked with the utmost violence she \ncould exert, a shout was heard in answer, and another, and another.\n\n'Thank Heaven!' cried the girl in an ecstasy.  'Joe, dear Joe, this \nway.  Help!'\n\nHer assailant paused, and stood irresolute for a moment, but the \nshouts drawing nearer and coming quick upon them, forced him to a \nspeedy decision.  He released her, whispered with a menacing look, \n'Tell HIM: and see what follows!' and leaping the hedge, was gone \nin an instant.  Dolly darted off, and fairly ran into Joe Willet's \nopen arms.\n\n'What is the matter? are you hurt? what was it? who was it? where \nis he? what was he like?' with a great many encouraging expressions \nand assurances of safety, were the first words Joe poured forth.  \nBut poor little Dolly was so breathless and terrified that for some \ntime she was quite unable to answer him, and hung upon his \nshoulder, sobbing and crying as if her heart would break.\n\nJoe had not the smallest objection to have her hanging on his \nshoulder; no, not the least, though it crushed the cherry-coloured \nribbons sadly, and put the smart little hat out of all shape.  But \nhe couldn't bear to see her cry; it went to his very heart.  He \ntried to console her, bent over her, whispered to her--some say \nkissed her, but that's a fable.  At any rate he said all the kind \nand tender things he could think of and Dolly let him go on and \ndidn't interrupt him once, and it was a good ten minutes before she \nwas able to raise her head and thank him.\n\n'What was it that frightened you?' said Joe.\n\nA man whose person was unknown to her had followed her, she \nanswered; he began by begging, and went on to threats of robbery, \nwhich he was on the point of carrying into execution, and would \nhave executed, but for Joe's timely aid.  The hesitation and \nconfusion with which she said this, Joe attributed to the fright \nshe had sustained, and no suspicion of the truth occurred to him \nfor a moment.\n\n'Stop when the words are on your lips.'  A hundred times that \nnight, and very often afterwards, when the disclosure was rising \nto her tongue, Dolly thought of that, and repressed it.  A deeply \nrooted dread of the man; the conviction that his ferocious nature, \nonce roused, would stop at nothing; and the strong assurance that \nif she impeached him, the full measure of his wrath and vengeance \nwould be wreaked on Joe, who had preserved her; these were \nconsiderations she had not the courage to overcome, and inducements \nto secrecy too powerful for her to surmount.\n\nJoe, for his part, was a great deal too happy to inquire very \ncuriously into the matter; and Dolly being yet too tremulous to \nwalk without assistance, they went forward very slowly, and in his \nmind very pleasantly, until the Maypole lights were near at hand, \ntwinkling their cheerful welcome, when Dolly stopped suddenly and \nwith a half scream exclaimed,\n\n'The letter!'\n\n'What letter?' cried Joe.\n\n'That I was carrying--I had it in my hand.  My bracelet too,' she \nsaid, clasping her wrist.  'I have lost them both.'\n\n'Do you mean just now?' said Joe.\n\n'Either I dropped them then, or they were taken from me,' answered \nDolly, vainly searching her pocket and rustling her dress.  'They \nare gone, both gone.  What an unhappy girl I am!'  With these words \npoor Dolly, who to do her justice was quite as sorry for the loss \nof the letter as for her bracelet, fell a-crying again, and \nbemoaned her fate most movingly.\n\nJoe tried to comfort her with the assurance that directly he had \nhoused her in the Maypole, he would return to the spot with a \nlantern (for it was now quite dark) and make strict search for the \nmissing articles, which there was great probability of his finding, \nas it was not likely that anybody had passed that way since, and \nshe was not conscious that they had been forcibly taken from her.  \nDolly thanked him very heartily for this offer, though with no \ngreat hope of his quest being successful; and so with many \nlamentations on her side, and many hopeful words on his, and much \nweakness on the part of Dolly and much tender supporting on the \npart of Joe, they reached the Maypole bar at last, where the \nlocksmith and his wife and old John were yet keeping high festival.\n\nMr Willet received the intelligence of Dolly's trouble with that \nsurprising presence of mind and readiness of speech for which he \nwas so eminently distinguished above all other men.  Mrs Varden \nexpressed her sympathy for her daughter's distress by scolding her \nroundly for being so late; and the honest locksmith divided himself \nbetween condoling with and kissing Dolly, and shaking hands \nheartily with Joe, whom he could not sufficiently praise or thank.\n\nIn reference to this latter point, old John was far from agreeing \nwith his friend; for besides that he by no means approved of an \nadventurous spirit in the abstract, it occurred to him that if his \nson and heir had been seriously damaged in a scuffle, the \nconsequences would assuredly have been expensive and inconvenient, \nand might perhaps have proved detrimental to the Maypole business.  \nWherefore, and because he looked with no favourable eye upon young \ngirls, but rather considered that they and the whole female sex \nwere a kind of nonsensical mistake on the part of Nature, he took \noccasion to retire and shake his head in private at the boiler; \ninspired by which silent oracle, he was moved to give Joe various \nstealthy nudges with his elbow, as a parental reproof and gentle \nadmonition to mind his own business and not make a fool of himself.\n\nJoe, however, took down the lantern and lighted it; and arming \nhimself with a stout stick, asked whether Hugh was in the stable.\n\n'He's lying asleep before the kitchen fire, sir,' said Mr Willet.  \n'What do you want him for?'\n\n'I want him to come with me to look after this bracelet and \nletter,' answered Joe.  'Halloa there!  Hugh!'\n\nDolly turned pale as death, and felt as if she must faint \nforthwith.  After a few moments, Hugh came staggering in, \nstretching himself and yawning according to custom, and presenting \nevery appearance of having been roused from a sound nap.\n\n'Here, sleepy-head,' said Joe, giving him the lantern.  'Carry \nthis, and bring the dog, and that small cudgel of yours.  And woe \nbetide the fellow if we come upon him.'\n\n'What fellow?' growled Hugh, rubbing his eyes and shaking himself.\n\n'What fellow?' returned Joe, who was in a state of great valour and \nbustle; 'a fellow you ought to know of and be more alive about.  \nIt's well for the like of you, lazy giant that you are, to be \nsnoring your time away in chimney-corners, when honest men's \ndaughters can't cross even our quiet meadows at nightfall without \nbeing set upon by footpads, and frightened out of their precious \nlives.'\n\n'They never rob me,' cried Hugh with a laugh.  'I have got nothing \nto lose.  But I'd as lief knock them at head as any other men.  How \nmany are there?'\n\n'Only one,' said Dolly faintly, for everybody looked at her.\n\n'And what was he like, mistress?' said Hugh with a glance at young \nWillet, so slight and momentary that the scowl it conveyed was lost \non all but her.  'About my height?'\n\n'Not--not so tall,' Dolly replied, scarce knowing what she said.\n\n'His dress,' said Hugh, looking at her keenly, 'like--like any of \nours now?  I know all the people hereabouts, and maybe could give a \nguess at the man, if I had anything to guide me.'\n\nDolly faltered and turned paler yet; then answered that he was \nwrapped in a loose coat and had his face hidden by a handkerchief \nand that she could give no other description of him.\n\n'You wouldn't know him if you saw him then, belike?' said Hugh with \na malicious grin.\n\n'I should not,' answered Dolly, bursting into tears again.  'I \ndon't wish to see him.  I can't bear to think of him.  I can't talk \nabout him any more.  Don't go to look for these things, Mr Joe, \npray don't.  I entreat you not to go with that man.'\n\n'Not to go with me!' cried Hugh.  'I'm too rough for them all.  \nThey're all afraid of me.  Why, bless you mistress, I've the \ntenderest heart alive.  I love all the ladies, ma'am,' said Hugh, \nturning to the locksmith's wife.\n\nMrs Varden opined that if he did, he ought to be ashamed of \nhimself; such sentiments being more consistent (so she argued) with \na benighted Mussulman or wild Islander than with a stanch \nProtestant.  Arguing from this imperfect state of his morals, Mrs \nVarden further opined that he had never studied the Manual.  Hugh \nadmitting that he never had, and moreover that he couldn't read, \nMrs Varden declared with much severity, that he ought to he even \nmore ashamed of himself than before, and strongly recommended him \nto save up his pocket-money for the purchase of one, and further to \nteach himself the contents with all convenient diligence.  She was \nstill pursuing this train of discourse, when Hugh, somewhat \nunceremoniously and irreverently, followed his young master out, \nand left her to edify the rest of the company.  This she proceeded \nto do, and finding that Mr Willet's eyes were fixed upon her with \nan appearance of deep attention, gradually addressed the whole of \nher discourse to him, whom she entertained with a moral and \ntheological lecture of considerable length, in the conviction that \ngreat workings were taking place in his spirit.  The simple truth \nwas, however, that Mr Willet, although his eyes were wide open and \nhe saw a woman before him whose head by long and steady looking at \nseemed to grow bigger and bigger until it filled the whole bar, was \nto all other intents and purposes fast asleep; and so sat leaning \nback in his chair with his hands in his pockets until his son's \nreturn caused him to wake up with a deep sigh, and a faint \nimpression that he had been dreaming about pickled pork and greens--\na vision of his slumbers which was no doubt referable to the \ncircumstance of Mrs Varden's having frequently pronounced the word \n'Grace' with much emphasis; which word, entering the portals of Mr \nWillet's brain as they stood ajar, and coupling itself with the \nwords 'before meat,' which were there ranging about, did in time \nsuggest a particular kind of meat together with that description of \nvegetable which is usually its companion.\n\nThe search was wholly unsuccessful.  Joe had groped along the path \na dozen times, and among the grass, and in the dry ditch, and in \nthe hedge, but all in vain.  Dolly, who was quite inconsolable for \nher loss, wrote a note to Miss Haredale giving her the same account \nof it that she had given at the Maypole, which Joe undertook to \ndeliver as soon as the family were stirring next day.  That done, \nthey sat down to tea in the bar, where there was an uncommon \ndisplay of buttered toast, and--in order that they might not grow \nfaint for want of sustenance, and might have a decent halting-\nplace or halfway house between dinner and supper--a few savoury \ntrifles in the shape of great rashers of broiled ham, which being \nwell cured, done to a turn, and smoking hot, sent forth a tempting \nand delicious fragrance.\n\nMrs Varden was seldom very Protestant at meals, unless it happened \nthat they were underdone, or overdone, or indeed that anything \noccurred to put her out of humour.  Her spirits rose considerably \non beholding these goodly preparations, and from the nothingness of \ngood works, she passed to the somethingness of ham and toast with \ngreat cheerfulness.  Nay, under the influence of these wholesome \nstimulants, she sharply reproved her daughter for being low and \ndespondent (which she considered an unacceptable frame of mind), \nand remarked, as she held her own plate for a fresh supply, that it \nwould be well for Dolly, who pined over the loss of a toy and a \nsheet of paper, if she would reflect upon the voluntary sacrifices \nof the missionaries in foreign parts who lived chiefly on salads.\n\nThe proceedings of such a day occasion various fluctuations in the \nhuman thermometer, and especially in instruments so sensitively and \ndelicately constructed as Mrs Varden.  Thus, at dinner Mrs V. stood \nat summer heat; genial, smiling, and delightful.  After dinner, in \nthe sunshine of the wine, she went up at least half-a-dozen \ndegrees, and was perfectly enchanting.  As its effect subsided, she \nfell rapidly, went to sleep for an hour or so at temperate, and \nwoke at something below freezing.  Now she was at summer heat \nagain, in the shade; and when tea was over, and old John, producing \na bottle of cordial from one of the oaken cases, insisted on her \nsipping two glasses thereof in slow succession, she stood steadily \nat ninety for one hour and a quarter.  Profiting by experience, the \nlocksmith took advantage of this genial weather to smoke his pipe \nin the porch, and in consequence of this prudent management, he was \nfully prepared, when the glass went down again, to start homewards \ndirectly.\n\nThe horse was accordingly put in, and the chaise brought round to \nthe door.  Joe, who would on no account be dissuaded from escorting \nthem until they had passed the most dreary and solitary part of the \nroad, led out the grey mare at the same time; and having helped \nDolly into her seat (more happiness!) sprung gaily into the saddle.  \nThen, after many good nights, and admonitions to wrap up, and \nglancing of lights, and handing in of cloaks and shawls, the chaise \nrolled away, and Joe trotted beside it--on Dolly's side, no doubt, \nand pretty close to the wheel too.\n\n\n\nChapter 22\n\n\nIt was a fine bright night, and for all her lowness of spirits \nDolly kept looking up at the stars in a manner so bewitching (and \nSHE knew it!) that Joe was clean out of his senses, and plainly \nshowed that if ever a man were--not to say over head and ears, but \nover the Monument and the top of Saint Paul's in love, that man was \nhimself.  The road was a very good one; not at all a jolting road, \nor an uneven one; and yet Dolly held the side of the chaise with \none little hand, all the way.  If there had been an executioner \nbehind him with an uplifted axe ready to chop off his head if he \ntouched that hand, Joe couldn't have helped doing it.  From putting \nhis own hand upon it as if by chance, and taking it away again \nafter a minute or so, he got to riding along without taking it off \nat all; as if he, the escort, were bound to do that as an important \npart of his duty, and had come out for the purpose.  The most \ncurious circumstance about this little incident was, that Dolly \ndidn't seem to know of it.  She looked so innocent and unconscious \nwhen she turned her eyes on Joe, that it was quite provoking.\n\nShe talked though; talked about her fright, and about Joe's coming \nup to rescue her, and about her gratitude, and about her fear that \nshe might not have thanked him enough, and about their always being \nfriends from that time forth--and about all that sort of thing.  \nAnd when Joe said, not friends he hoped, Dolly was quite surprised, \nand said not enemies she hoped; and when Joe said, couldn't they be \nsomething much better than either, Dolly all of a sudden found out \na star which was brighter than all the other stars, and begged to \ncall his attention to the same, and was ten thousand times more \ninnocent and unconscious than ever.\n\nIn this manner they travelled along, talking very little above a \nwhisper, and wishing the road could be stretched out to some dozen \ntimes its natural length--at least that was Joe's desire--when, as \nthey were getting clear of the forest and emerging on the more \nfrequented road, they heard behind them the sound of a horse's feet \nat a round trot, which growing rapidly louder as it drew nearer, \nelicited a scream from Mrs Varden, and the cry 'a friend!' from the \nrider, who now came panting up, and checked his horse beside them.\n\n'This man again!' cried Dolly, shuddering.\n\n'Hugh!' said Joe.  'What errand are you upon?'\n\n'I come to ride back with you,' he answered, glancing covertly at \nthe locksmith's daughter.  'HE sent me.\n\n'My father!' said poor Joe; adding under his breath, with a very \nunfilial apostrophe, 'Will he never think me man enough to take \ncare of myself!'\n\n'Aye!' returned Hugh to the first part of the inquiry.  'The roads \nare not safe just now, he says, and you'd better have a companion.'\n\n'Ride on then,' said Joe.  'I'm not going to turn yet.'\n\nHugh complied, and they went on again.  It was his whim or humour \nto ride immediately before the chaise, and from this position he \nconstantly turned his head, and looked back.  Dolly felt that he \nlooked at her, but she averted her eyes and feared to raise them \nonce, so great was the dread with which he had inspired her.\n\nThis interruption, and the consequent wakefulness of Mrs Varden, \nwho had been nodding in her sleep up to this point, except for a \nminute or two at a time, when she roused herself to scold the \nlocksmith for audaciously taking hold of her to prevent her nodding \nherself out of the chaise, put a restraint upon the whispered \nconversation, and made it difficult of resumption.  Indeed, before \nthey had gone another mile, Gabriel stopped at his wife's desire, \nand that good lady protested she would not hear of Joe's going a \nstep further on any account whatever.  It was in vain for Joe to \nprotest on the other hand that he was by no means tired, and would \nturn back presently, and would see them safely past such a point, \nand so forth.  Mrs Varden was obdurate, and being so was not to be \novercome by mortal agency.\n\n'Good night--if I must say it,' said Joe, sorrowfully.\n\n'Good night,' said Dolly.  She would have added, 'Take care of that \nman, and pray don't trust him,' but he had turned his horse's head, \nand was standing close to them.  She had therefore nothing for it \nbut to suffer Joe to give her hand a gentle squeeze, and when the \nchaise had gone on for some distance, to look back and wave it, as \nhe still lingered on the spot where they had parted, with the tall \ndark figure of Hugh beside him.\n\nWhat she thought about, going home; and whether the coach-maker \nheld as favourable a place in her meditations as he had occupied in \nthe morning, is unknown.  They reached home at last--at last, for \nit was a long way, made none the shorter by Mrs Varden's grumbling.  \nMiggs hearing the sound of wheels was at the door immediately.\n\n'Here they are, Simmun!  Here they are!' cried Miggs, clapping her \nhands, and issuing forth to help her mistress to alight.  'Bring a \nchair, Simmun.  Now, an't you the better for it, mim?  Don't you \nfeel more yourself than you would have done if you'd have stopped \nat home?  Oh, gracious! how cold you are!  Goodness me, sir, she's \na perfect heap of ice.'\n\n'I can't help it, my good girl.  You had better take her in to the \nfire,' said the locksmith.\n\n'Master sounds unfeeling, mim,' said Miggs, in a tone of \ncommiseration, 'but such is not his intentions, I'm sure.  After \nwhat he has seen of you this day, I never will believe but that he \nhas a deal more affection in his heart than to speak unkind.  Come \nin and sit yourself down by the fire; there's a good dear--do.'\n\nMrs Varden complied.  The locksmith followed with his hands in his \npockets, and Mr Tappertit trundled off with the chaise to a \nneighbouring stable.\n\n'Martha, my dear,' said the locksmith, when they reached the \nparlour, 'if you'll look to Dolly yourself or let somebody else do \nit, perhaps it will be only kind and reasonable.  She has been \nfrightened, you know, and is not at all well to-night.'\n\nIn fact, Dolly had thrown herself upon the sofa, quite regardless \nof all the little finery of which she had been so proud in the \nmorning, and with her face buried in her hands was crying very \nmuch.\n\nAt first sight of this phenomenon (for Dolly was by no means \naccustomed to displays of this sort, rather learning from her \nmother's example to avoid them as much as possible) Mrs Varden \nexpressed her belief that never was any woman so beset as she; that \nher life was a continued scene of trial; that whenever she was \ndisposed to be well and cheerful, so sure were the people around \nher to throw, by some means or other, a damp upon her spirits; and \nthat, as she had enjoyed herself that day, and Heaven knew it was \nvery seldom she did enjoy herself so she was now to pay the \npenalty.  To all such propositions Miggs assented freely.  Poor \nDolly, however, grew none the better for these restoratives, but \nrather worse, indeed; and seeing that she was really ill, both Mrs \nVarden and Miggs were moved to compassion, and tended her in \nearnest.\n\nBut even then, their very kindness shaped itself into their usual \ncourse of policy, and though Dolly was in a swoon, it was rendered \nclear to the meanest capacity, that Mrs Varden was the sufferer.  \nThus when Dolly began to get a little better, and passed into that \nstage in which matrons hold that remonstrance and argument may be \nsuccessfully applied, her mother represented to her, with tears in \nher eyes, that if she had been flurried and worried that day, she \nmust remember it was the common lot of humanity, and in especial of \nwomankind, who through the whole of their existence must expect no \nless, and were bound to make up their minds to meek endurance and \npatient resignation.  Mrs Varden entreated her to remember that one \nof these days she would, in all probability, have to do violence to \nher feelings so far as to be married; and that marriage, as she \nmight see every day of her life (and truly she did) was a state \nrequiring great fortitude and forbearance.  She represented to her \nin lively colours, that if she (Mrs V.) had not, in steering her \ncourse through this vale of tears, been supported by a strong \nprinciple of duty which alone upheld and prevented her from \ndrooping, she must have been in her grave many years ago; in which \ncase she desired to know what would have become of that errant \nspirit (meaning the locksmith), of whose eye she was the very \napple, and in whose path she was, as it were, a shining light and \nguiding star?\n\nMiss Miggs also put in her word to the same effect.  She said that \nindeed and indeed Miss Dolly might take pattern by her blessed \nmother, who, she always had said, and always would say, though she \nwere to be hanged, drawn, and quartered for it next minute, was \nthe mildest, amiablest, forgivingest-spirited, longest-sufferingest \nfemale as ever she could have believed; the mere narration of whose \nexcellencies had worked such a wholesome change in the mind of her \nown sister-in-law, that, whereas, before, she and her husband lived \nlike cat and dog, and were in the habit of exchanging brass \ncandlesticks, pot-lids, flat-irons, and other such strong \nresentments, they were now the happiest and affectionatest couple \nupon earth; as could be proved any day on application at Golden \nLion Court, number twenty-sivin, second bell-handle on the right-\nhand doorpost.  After glancing at herself as a comparatively \nworthless vessel, but still as one of some desert, she besought her \nto bear in mind that her aforesaid dear and only mother was of a \nweakly constitution and excitable temperament, who had constantly \nto sustain afflictions in domestic life, compared with which \nthieves and robbers were as nothing, and yet never sunk down or \ngave way to despair or wrath, but, in prize-fighting phraseology, \nalways came up to time with a cheerful countenance, and went in to \nwin as if nothing had happened.  When Miggs finished her solo, her \nmistress struck in again, and the two together performed a duet to \nthe same purpose; the burden being, that Mrs Varden was persecuted \nperfection, and Mr Varden, as the representative of mankind in that \napartment, a creature of vicious and brutal habits, utterly \ninsensible to the blessings he enjoyed.  Of so refined a character, \nindeed, was their talent of assault under the mask of sympathy, \nthat when Dolly, recovering, embraced her father tenderly, as in \nvindication of his goodness, Mrs Varden expressed her solemn hope \nthat this would be a lesson to him for the remainder of his life, \nand that he would do some little justice to a woman's nature ever \nafterwards--in which aspiration Miss Miggs, by divers sniffs and \ncoughs, more significant than the longest oration, expressed her \nentire concurrence.\n\nBut the great joy of Miggs's heart was, that she not only picked up \na full account of what had happened, but had the exquisite delight \nof conveying it to Mr Tappertit for his jealousy and torture.  For \nthat gentleman, on account of Dolly's indisposition, had been \nrequested to take his supper in the workshop, and it was conveyed \nthither by Miss Miggs's own fair hands.\n\n'Oh Simmun!' said the young lady, 'such goings on to-day!  Oh, \ngracious me, Simmun!'\n\nMr Tappertit, who was not in the best of humours, and who \ndisliked Miss Miggs more when she laid her hand on her heart and \npanted for breath than at any other time, as her deficiency of \noutline was most apparent under such circumstances, eyed her over \nin his loftiest style, and deigned to express no curiosity \nwhatever.\n\n'I never heard the like, nor nobody else,' pursued Miggs.  'The \nidea of interfering with HER.  What people can see in her to make \nit worth their while to do so, that's the joke--he he he!'\n\nFinding there was a lady in the case, Mr Tappertit haughtily \nrequested his fair friend to be more explicit, and demanded to know \nwhat she meant by 'her.'\n\n'Why, that Dolly,' said Miggs, with an extremely sharp emphasis on \nthe name.  'But, oh upon my word and honour, young Joseph Willet is \na brave one; and he do deserve her, that he do.'\n\n'Woman!' said Mr Tappertit, jumping off the counter on which he was \nseated; 'beware!'\n\n'My stars, Simmun!' cried Miggs, in affected astonishment.  'You \nfrighten me to death!  What's the matter?'\n\n'There are strings,' said Mr Tappertit, flourishing his bread-and-\ncheese knife in the air, 'in the human heart that had better not be \nwibrated.  That's what's the matter.'\n\n'Oh, very well--if you're in a huff,' cried Miggs, turning away.\n\n'Huff or no huff,' said Mr Tappertit, detaining her by the wrist.  \n'What do you mean, Jezebel?  What were you going to say?  Answer \nme!'\n\nNotwithstanding this uncivil exhortation, Miggs gladly did as she \nwas required; and told him how that their young mistress, being \nalone in the meadows after dark, had been attacked by three or four \ntall men, who would have certainly borne her away and perhaps \nmurdered her, but for the timely arrival of Joseph Willet, who with \nhis own single hand put them all to flight, and rescued her; to the \nlasting admiration of his fellow-creatures generally, and to the \neternal love and gratitude of Dolly Varden.\n\n'Very good,' said Mr Tappertit, fetching a long breath when the \ntale was told, and rubbing his hair up till it stood stiff and \nstraight on end all over his head.  'His days are numbered.'\n\n'Oh, Simmun!'\n\n'I tell you,' said the 'prentice, 'his days are numbered.  Leave \nme.  Get along with you.'\n\nMiggs departed at his bidding, but less because of his bidding than \nbecause she desired to chuckle in secret.  When she had given vent \nto her satisfaction, she returned to the parlour; where the \nlocksmith, stimulated by quietness and Toby, had become talkative, \nand was disposed to take a cheerful review of the occurrences of \nthe day.  But Mrs Varden, whose practical religion (as is not \nuncommon) was usually of the retrospective order, cut him short by \ndeclaiming on the sinfulness of such junketings, and holding that \nit was high time to go to bed.  To bed therefore she withdrew, with \nan aspect as grim and gloomy as that of the Maypole's own state \ncouch; and to bed the rest of the establishment soon afterwards \nrepaired.\n\n\n\nChapter 23\n\n\nTwilight had given place to night some hours, and it was high noon \nin those quarters of the town in which 'the world' condescended to \ndwell--the world being then, as now, of very limited dimensions and \neasily lodged--when Mr Chester reclined upon a sofa in his \ndressing-room in the Temple, entertaining himself with a book.\n\nHe was dressing, as it seemed, by easy stages, and having performed \nhalf the journey was taking a long rest.  Completely attired as to \nhis legs and feet in the trimmest fashion of the day, he had yet \nthe remainder of his toilet to perform.  The coat was stretched, \nlike a refined scarecrow, on its separate horse; the waistcoat was \ndisplayed to the best advantage; the various ornamental articles of \ndress were severally set out in most alluring order; and yet he lay \ndangling his legs between the sofa and the ground, as intent upon \nhis book as if there were nothing but bed before him.\n\n'Upon my honour,' he said, at length raising his eyes to the \nceiling with the air of a man who was reflecting seriously on what \nhe had read; 'upon my honour, the most masterly composition, the \nmost delicate thoughts, the finest code of morality, and the most \ngentlemanly sentiments in the universe!  Ah Ned, Ned, if you would \nbut form your mind by such precepts, we should have but one common \nfeeling on every subject that could possibly arise between us!'\n\nThis apostrophe was addressed, like the rest of his remarks, to \nempty air: for Edward was not present, and the father was quite \nalone.\n\n'My Lord Chesterfield,' he said, pressing his hand tenderly upon \nthe book as he laid it down, 'if I could but have profited by your \ngenius soon enough to have formed my son on the model you have left \nto all wise fathers, both he and I would have been rich men.  \nShakespeare was undoubtedly very fine in his way; Milton good, \nthough prosy; Lord Bacon deep, and decidedly knowing; but the \nwriter who should be his country's pride, is my Lord Chesterfield.'\n\nHe became thoughtful again, and the toothpick was in requisition.\n\n'I thought I was tolerably accomplished as a man of the world,' he \ncontinued, 'I flattered myself that I was pretty well versed in all \nthose little arts and graces which distinguish men of the world \nfrom boors and peasants, and separate their character from those \nintensely vulgar sentiments which are called the national \ncharacter.  Apart from any natural prepossession in my own favour, \nI believed I was.  Still, in every page of this enlightened writer, \nI find some captivating hypocrisy which has never occurred to me \nbefore, or some superlative piece of selfishness to which I was \nutterly a stranger.  I should quite blush for myself before this \nstupendous creature, if remembering his precepts, one might blush \nat anything.  An amazing man! a nobleman indeed! any King or Queen \nmay make a Lord, but only the Devil himself--and the Graces--can \nmake a Chesterfield.'\n\nMen who are thoroughly false and hollow, seldom try to hide those \nvices from themselves; and yet in the very act of avowing them, \nthey lay claim to the virtues they feign most to despise.  'For,' \nsay they, 'this is honesty, this is truth.  All mankind are like \nus, but they have not the candour to avow it.'  The more they \naffect to deny the existence of any sincerity in the world, the \nmore they would be thought to possess it in its boldest shape; and \nthis is an unconscious compliment to Truth on the part of these \nphilosophers, which will turn the laugh against them to the Day of \nJudgment.\n\nMr Chester, having extolled his favourite author, as above recited, \ntook up the book again in the excess of his admiration and was \ncomposing himself for a further perusal of its sublime morality, \nwhen he was disturbed by a noise at the outer door; occasioned as \nit seemed by the endeavours of his servant to obstruct the entrance \nof some unwelcome visitor.\n\n'A late hour for an importunate creditor,' he said, raising his \neyebrows with as indolent an expression of wonder as if the noise \nwere in the street, and one with which he had not the smallest \npossible concern.  'Much after their accustomed time.  The usual \npretence I suppose.  No doubt a heavy payment to make up tomorrow.  \nPoor fellow, he loses time, and time is money as the good proverb \nsays--I never found it out though.  Well.  What now?  You know I am \nnot at home.'\n\n'A man, sir,' replied the servant, who was to the full as cool and \nnegligent in his way as his master, 'has brought home the riding-\nwhip you lost the other day.  I told him you were out, but he said \nhe was to wait while I brought it in, and wouldn't go till I did.'\n\n'He was quite right,' returned his master, 'and you're a blockhead, \npossessing no judgment or discretion whatever.  Tell him to come \nin, and see that he rubs his shoes for exactly five minutes first.'\n\nThe man laid the whip on a chair, and withdrew.  The master, who \nhad only heard his foot upon the ground and had not taken the \ntrouble to turn round and look at him, shut his book, and pursued \nthe train of ideas his entrance had disturbed.\n\n'If time were money,' he said, handling his snuff-box, 'I would \ncompound with my creditors, and give them--let me see--how much a \nday?  There's my nap after dinner--an hour--they're extremely \nwelcome to that, and to make the most of it.  In the morning, \nbetween my breakfast and the paper, I could spare them another \nhour; in the evening before dinner say another.  Three hours a day.  \nThey might pay themselves in calls, with interest, in twelve \nmonths.  I think I shall propose it to them.  Ah, my centaur, are \nyou there?'\n\n'Here I am,' replied Hugh, striding in, followed by a dog, as rough \nand sullen as himself; 'and trouble enough I've had to get here.  \nWhat do you ask me to come for, and keep me out when I DO come?'\n\n'My good fellow,' returned the other, raising his head a little \nfrom the cushion and carelessly surveying him from top to toe, 'I \nam delighted to see you, and to have, in your being here, the very \nbest proof that you are not kept out.  How are you?'\n\n'I'm well enough,' said Hugh impatiently.\n\n'You look a perfect marvel of health.  Sit down.'\n\n'I'd rather stand,' said Hugh.\n\n'Please yourself my good fellow,' returned Mr Chester rising, \nslowly pulling off the loose robe he wore, and sitting down before \nthe dressing-glass.  'Please yourself by all means.'\n\nHaving said this in the politest and blandest tone possible, he \nwent on dressing, and took no further notice of his guest, who \nstood in the same spot as uncertain what to do next, eyeing him \nsulkily from time to time.\n\n'Are you going to speak to me, master?' he said, after a long \nsilence.\n\n'My worthy creature,' returned Mr Chester, 'you are a little \nruffled and out of humour.  I'll wait till you're quite yourself \nagain.  I am in no hurry.'\n\nThis behaviour had its intended effect.  It humbled and abashed the \nman, and made him still more irresolute and uncertain.  Hard words \nhe could have returned, violence he would have repaid with \ninterest; but this cool, complacent, contemptuous, self-possessed \nreception, caused him to feel his inferiority more completely than \nthe most elaborate arguments.  Everything contributed to this \neffect.  His own rough speech, contrasted with the soft persuasive \naccents of the other; his rude bearing, and Mr Chester's polished \nmanner; the disorder and negligence of his ragged dress, and the \nelegant attire he saw before him; with all the unaccustomed \nluxuries and comforts of the room, and the silence that gave him \nleisure to observe these things, and feel how ill at ease they made \nhim; all these influences, which have too often some effect on \ntutored minds and become of almost resistless power when brought to \nbear on such a mind as his, quelled Hugh completely.  He moved by \nlittle and little nearer to Mr Chester's chair, and glancing over \nhis shoulder at the reflection of his face in the glass, as if \nseeking for some encouragement in its expression, said at length, \nwith a rough attempt at conciliation,\n\n'ARE you going to speak to me, master, or am I to go away?'\n\n'Speak you,' said Mr Chester, 'speak you, good fellow.  I have \nspoken, have I not?  I am waiting for you.'\n\n'Why, look'ee, sir,' returned Hugh with increased embarrassment, \n'am I the man that you privately left your whip with before you \nrode away from the Maypole, and told to bring it back whenever he \nmight want to see you on a certain subject?'\n\n'No doubt the same, or you have a twin brother,' said Mr Chester, \nglancing at the reflection of his anxious face; 'which is not \nprobable, I should say.'\n\n'Then I have come, sir,' said Hugh, 'and I have brought it back, \nand something else along with it.  A letter, sir, it is, that I \ntook from the person who had charge of it.'  As he spoke, he laid \nupon the dressing-table, Dolly's lost epistle.  The very letter \nthat had cost her so much trouble.\n\n'Did you obtain this by force, my good fellow?' said Mr Chester, \ncasting his eye upon it without the least perceptible surprise or \npleasure.\n\n'Not quite,' said Hugh.  'Partly.'\n\n'Who was the messenger from whom you took it?'\n\n'A woman.  One Varden's daughter.'\n\n'Oh indeed!' said Mr Chester gaily.  'What else did you take from \nher?'\n\n'What else?'\n\n'Yes,' said the other, in a drawling manner, for he was fixing a \nvery small patch of sticking plaster on a very small pimple near \nthe corner of his mouth.  'What else?'\n\n'Well a kiss,' replied Hugh, after some hesitation.\n\n'And what else?'\n\n'Nothing.'\n\n'I think,' said Mr Chester, in the same easy tone, and smiling \ntwice or thrice to try if the patch adhered--'I think there was \nsomething else.  I have heard a trifle of jewellery spoken of--a \nmere trifle--a thing of such little value, indeed, that you may \nhave forgotten it.  Do you remember anything of the kind--such as a \nbracelet now, for instance?'\n\nHugh with a muttered oath thrust his hand into his breast, and \ndrawing the bracelet forth, wrapped in a scrap of hay, was about to \nlay it on the table likewise, when his patron stopped his hand and \nbade him put it up again.\n\n'You took that for yourself my excellent friend,' he said, 'and may \nkeep it.  I am neither a thief nor a receiver.  Don't show it to \nme.  You had better hide it again, and lose no time.  Don't let me \nsee where you put it either,' he added, turning away his head.\n\n'You're not a receiver!' said Hugh bluntly, despite the increasing \nawe in which he held him.  'What do you call THAT, master?' \nstriking the letter with his heavy hand.\n\n'I call that quite another thing,' said Mr Chester coolly.  'I \nshall prove it presently, as you will see.  You are thirsty, I \nsuppose?'\n\nHugh drew his sleeve across his lips, and gruffly answered yes.\n\n'Step to that closet and bring me a bottle you will see there, and \na glass.'\n\nHe obeyed.  His patron followed him with his eyes, and when his \nback was turned, smiled as he had never done when he stood beside \nthe mirror.  On his return he filled the glass, and bade him drink.  \nThat dram despatched, he poured him out another, and another.\n\n'How many can you bear?' he said, filling the glass again.\n\n'As many as you like to give me.  Pour on.  Fill high.  A bumper \nwith a bead in the middle!  Give me enough of this,' he added, as \nhe tossed it down his hairy throat, 'and I'll do murder if you ask \nme!'\n\n'As I don't mean to ask you, and you might possibly do it without \nbeing invited if you went on much further,' said Mr Chester with \ngreat composure, we will stop, if agreeable to you, my good friend, \nat the next glass.  You were drinking before you came here.'\n\n'I always am when I can get it,' cried Hugh boisterously, waving \nthe empty glass above his head, and throwing himself into a rude \ndancing attitude.  'I always am.  Why not?  Ha ha ha!  What's so \ngood to me as this?  What ever has been?  What else has kept away \nthe cold on bitter nights, and driven hunger off in starving times?  \nWhat else has given me the strength and courage of a man, when men \nwould have left me to die, a puny child?  I should never have had a \nman's heart but for this.  I should have died in a ditch.  Where's \nhe who when I was a weak and sickly wretch, with trembling legs and \nfading sight, bade me cheer up, as this did?  I never knew him; not \nI.  I drink to the drink, master.  Ha ha ha!'\n\n'You are an exceedingly cheerful young man,' said Mr Chester, \nputting on his cravat with great deliberation, and slightly moving \nhis head from side to side to settle his chin in its proper place.  \n'Quite a boon companion.'\n\n'Do you see this hand, master,' said Hugh, 'and this arm?' baring \nthe brawny limb to the elbow.  'It was once mere skin and bone, and \nwould have been dust in some poor churchyard by this time, but for \nthe drink.'\n\n'You may cover it,' said Mr Chester, 'it's sufficiently real in \nyour sleeve.'\n\n'I should never have been spirited up to take a kiss from the proud \nlittle beauty, master, but for the drink,' cried Hugh.  'Ha ha ha!  \nIt was a good one.  As sweet as honeysuckle, I warrant you.  I \nthank the drink for it.  I'll drink to the drink again, master.  \nFill me one more.  Come.  One more!'\n\n'You are such a promising fellow,' said his patron, putting on his \nwaistcoat with great nicety, and taking no heed of this request, \n'that I must caution you against having too many impulses from the \ndrink, and getting hung before your time.  What's your age?'\n\n'I don't know.'\n\n'At any rate,' said Mr Chester, 'you are young enough to escape \nwhat I may call a natural death for some years to come.  How can \nyou trust yourself in my hands on so short an acquaintance, with a \nhalter round your neck?  What a confiding nature yours must be!'\n\nHugh fell back a pace or two and surveyed him with a look of \nmingled terror, indignation, and surprise.  Regarding himself in \nthe glass with the same complacency as before, and speaking as \nsmoothly as if he were discussing some pleasant chit-chat of the \ntown, his patron went on:\n\n'Robbery on the king's highway, my young friend, is a very \ndangerous and ticklish occupation.  It is pleasant, I have no \ndoubt, while it lasts; but like many other pleasures in this \ntransitory world, it seldom lasts long.  And really if in the \ningenuousness of youth, you open your heart so readily on the \nsubject, I am afraid your career will be an extremely short one.'\n\n'How's this?' said Hugh.  'What do you talk of master?  Who was it \nset me on?'\n\n'Who?' said Mr Chester, wheeling sharply round, and looking full \nat him for the first time.  'I didn't hear you.  Who was it?'\n\nHugh faltered, and muttered something which was not audible.\n\n'Who was it?  I am curious to know,' said Mr Chester, with \nsurpassing affability.  'Some rustic beauty perhaps?  But be \ncautious, my good friend.  They are not always to be trusted.  Do \ntake my advice now, and be careful of yourself.'  With these words \nhe turned to the glass again, and went on with his toilet.\n\nHugh would have answered him that he, the questioner himself had \nset him on, but the words stuck in his throat.  The consummate art \nwith which his patron had led him to this point, and managed the \nwhole conversation, perfectly baffled him.  He did not doubt that \nif he had made the retort which was on his lips when Mr Chester \nturned round and questioned him so keenly, he would straightway \nhave given him into custody and had him dragged before a justice \nwith the stolen property upon him; in which case it was as certain \nhe would have been hung as it was that he had been born.  The \nascendency which it was the purpose of the man of the world to \nestablish over this savage instrument, was gained from that time.  \nHugh's submission was complete.  He dreaded him beyond description; \nand felt that accident and artifice had spun a web about him, which \nat a touch from such a master-hand as his, would bind him to the \ngallows.\n\nWith these thoughts passing through his mind, and yet wondering at \nthe very same time how he who came there rioting in the confidence \nof this man (as he thought), should be so soon and so thoroughly \nsubdued, Hugh stood cowering before him, regarding him uneasily \nfrom time to time, while he finished dressing.  When he had done \nso, he took up the letter, broke the seal, and throwing himself \nback in his chair, read it leisurely through.\n\n'Very neatly worded upon my life!  Quite a woman's letter, full of \nwhat people call tenderness, and disinterestedness, and heart, and \nall that sort of thing!'\n\nAs he spoke, he twisted it up, and glancing lazily round at Hugh as \nthough he would say 'You see this?' held it in the flame of the \ncandle.  When it was in a full blaze, he tossed it into the grate, \nand there it smouldered away.\n\n'It was directed to my son,' he said, turning to Hugh, 'and you did \nquite right to bring it here.  I opened it on my own \nresponsibility, and you see what I have done with it.  Take this, \nfor your trouble.'\n\nHugh stepped forward to receive the piece of money he held out to \nhim.  As he put it in his hand, he added:\n\n'If you should happen to find anything else of this sort, or to \npick up any kind of information you may think I would like to have, \nbring it here, will you, my good fellow?'\n\nThis was said with a smile which implied--or Hugh thought it did--\n'fail to do so at your peril!'  He answered that he would.\n\n'And don't,' said his patron, with an air of the very kindest \npatronage, 'don't be at all downcast or uneasy respecting that \nlittle rashness we have been speaking of.  Your neck is as safe in \nmy hands, my good fellow, as though a baby's fingers clasped it, I \nassure you.--Take another glass.  You are quieter now.'\n\nHugh accepted it from his hand, and looking stealthily at his \nsmiling face, drank the contents in silence.\n\n'Don't you--ha, ha!--don't you drink to the drink any more?' said \nMr Chester, in his most winning manner.\n\n'To you, sir,' was the sullen answer, with something approaching to \na bow.  'I drink to you.'\n\n'Thank you.  God bless you.  By the bye, what is your name, my good \nsoul?  You are called Hugh, I know, of course--your other name?'\n\n'I have no other name.'\n\n'A very strange fellow!  Do you mean that you never knew one, or \nthat you don't choose to tell it?  Which?'\n\n'I'd tell it if I could,' said Hugh, quickly.  'I can't.  I have \nbeen always called Hugh; nothing more.  I never knew, nor saw, nor \nthought about a father; and I was a boy of six--that's not very \nold--when they hung my mother up at Tyburn for a couple of thousand \nmen to stare at.  They might have let her live.  She was poor \nenough.'\n\n'How very sad!' exclaimed his patron, with a condescending smile.  \n'I have no doubt she was an exceedingly fine woman.'\n\n'You see that dog of mine?' said Hugh, abruptly.\n\n'Faithful, I dare say?' rejoined his patron, looking at him through \nhis glass; 'and immensely clever?  Virtuous and gifted animals, \nwhether man or beast, always are so very hideous.'\n\n'Such a dog as that, and one of the same breed, was the only living \nthing except me that howled that day,' said Hugh.  'Out of the two \nthousand odd--there was a larger crowd for its being a woman--the \ndog and I alone had any pity.  If he'd have been a man, he'd have \nbeen glad to be quit of her, for she had been forced to keep him \nlean and half-starved; but being a dog, and not having a man's \nsense, he was sorry.'\n\n'It was dull of the brute, certainly,' said Mr Chester, 'and very \nlike a brute.'\n\nHugh made no rejoinder, but whistling to his dog, who sprung up at \nthe sound and came jumping and sporting about him, bade his \nsympathising friend good night.\n\n'Good night; he returned.  'Remember; you're safe with me--quite \nsafe.  So long as you deserve it, my good fellow, as I hope you \nalways will, you have a friend in me, on whose silence you may \nrely.  Now do be careful of yourself, pray do, and consider what \njeopardy you might have stood in.  Good night! bless you!'\n\nHugh truckled before the hidden meaning of these words as much as \nsuch a being could, and crept out of the door so submissively and \nsubserviently--with an air, in short, so different from that with \nwhich he had entered--that his patron on being left alone, smiled \nmore than ever.\n\n'And yet,' he said, as he took a pinch of snuff, 'I do not like \ntheir having hanged his mother.  The fellow has a fine eye, and I \nam sure she was handsome.  But very probably she was coarse--red-\nnosed perhaps, and had clumsy feet.  Aye, it was all for the best, \nno doubt.'\n\nWith this comforting reflection, he put on his coat, took a \nfarewell glance at the glass, and summoned his man, who promptly \nattended, followed by a chair and its two bearers.\n\n'Foh!' said Mr Chester.  'The very atmosphere that centaur has \nbreathed, seems tainted with the cart and ladder.  Here, Peak.  \nBring some scent and sprinkle the floor; and take away the chair he \nsat upon, and air it; and dash a little of that mixture upon me.  I \nam stifled!'\n\nThe man obeyed; and the room and its master being both purified, \nnothing remained for Mr Chester but to demand his hat, to fold it \njauntily under his arm, to take his seat in the chair and be \ncarried off; humming a fashionable tune.\n\n\n\nChapter 24\n\n\nHow the accomplished gentleman spent the evening in the midst of a \ndazzling and brilliant circle; how he enchanted all those with \nwhom he mingled by the grace of his deportment, the politeness of \nhis manner, the vivacity of his conversation, and the sweetness of \nhis voice; how it was observed in every corner, that Chester was a \nman of that happy disposition that nothing ruffled him, that he was \none on whom the world's cares and errors sat lightly as his dress, \nand in whose smiling face a calm and tranquil mind was constantly \nreflected; how honest men, who by instinct knew him better, \nbowed down before him nevertheless, deferred to his every word, and \ncourted his favourable notice; how people, who really had good in \nthem, went with the stream, and fawned and flattered, and approved, \nand despised themselves while they did so, and yet had not the \ncourage to resist; how, in short, he was one of those who are \nreceived and cherished in society (as the phrase is) by scores who \nindividually would shrink from and be repelled by the object of \ntheir lavish regard; are things of course, which will suggest \nthemselves.  Matter so commonplace needs but a passing glance, and \nthere an end.\n\nThe despisers of mankind--apart from the mere fools and mimics, of \nthat creed--are of two sorts.  They who believe their merit \nneglected and unappreciated, make up one class; they who receive \nadulation and flattery, knowing their own worthlessness, compose \nthe other.  Be sure that the coldest-hearted misanthropes are ever \nof this last order.\n\nMr Chester sat up in bed next morning, sipping his coffee, and \nremembering with a kind of contemptuous satisfaction how he had \nshone last night, and how he had been caressed and courted, when \nhis servant brought in a very small scrap of dirty paper, tightly \nsealed in two places, on the inside whereof was inscribed in pretty \nlarge text these words: 'A friend.  Desiring of a conference.  \nImmediate.  Private.  Burn it when you've read it.'\n\n'Where in the name of the Gunpowder Plot did you pick up this?' \nsaid his master.\n\nIt was given him by a person then waiting at the door, the man \nreplied.\n\n'With a cloak and dagger?' said Mr Chester.\n\nWith nothing more threatening about him, it appeared, than a \nleather apron and a dirty face.  'Let him come in.'  In he came--Mr \nTappertit; with his hair still on end, and a great lock in his \nhand, which he put down on the floor in the middle of the chamber \nas if he were about to go through some performances in which it was \na necessary agent.\n\n'Sir,' said Mr Tappertit with a low bow, 'I thank you for this \ncondescension, and am glad to see you.  Pardon the menial office in \nwhich I am engaged, sir, and extend your sympathies to one, who, \nhumble as his appearance is, has inn'ard workings far above his \nstation.'\n\nMr Chester held the bed-curtain farther back, and looked at him \nwith a vague impression that he was some maniac, who had not only \nbroken open the door of his place of confinement, but had brought \naway the lock.  Mr Tappertit bowed again, and displayed his legs to \nthe best advantage.\n\n'You have heard, sir,' said Mr Tappertit, laying his hand upon his \nbreast, 'of G. Varden Locksmith and bell-hanger and repairs neatly \nexecuted in town and country, Clerkenwell, London?'\n\n'What then?' asked Mr Chester.\n\n'I'm his 'prentice, sir.'\n\n'What THEN?'\n\n'Ahem!' said Mr Tappertit.  'Would you permit me to shut the door, \nsir, and will you further, sir, give me your honour bright, that \nwhat passes between us is in the strictest confidence?'\n\nMr Chester laid himself calmly down in bed again, and turning a \nperfectly undisturbed face towards the strange apparition, which \nhad by this time closed the door, begged him to speak out, and to \nbe as rational as he could, without putting himself to any very \ngreat personal inconvenience.\n\n'In the first place, sir,' said Mr Tappertit, producing a small \npocket-handkerchief and shaking it out of the folds, 'as I have not \na card about me (for the envy of masters debases us below that \nlevel) allow me to offer the best substitute that circumstances \nwill admit of.  If you will take that in your own hand, sir, and \ncast your eye on the right-hand corner,' said Mr Tappertit, \noffering it with a graceful air, 'you will meet with my \ncredentials.'\n\n'Thank you,' answered Mr Chester, politely accepting it, and \nturning to some blood-red characters at one end.  '\"Four.  Simon \nTappertit.  One.\"  Is that the--'\n\n'Without the numbers, sir, that is my name,' replied the 'prentice.  \n'They are merely intended as directions to the washerwoman, and \nhave no connection with myself or family.  YOUR name, sir,' said Mr \nTappertit, looking very hard at his nightcap, 'is Chester, I \nsuppose?  You needn't pull it off, sir, thank you.  I observe E. C. \nfrom here.  We will take the rest for granted.'\n\n'Pray, Mr Tappertit,' said Mr Chester, 'has that complicated piece \nof ironmongery which you have done me the favour to bring with you, \nany immediate connection with the business we are to discuss?'\n\n'It has not, sir,' rejoined the 'prentice.  'It's going to be \nfitted on a ware'us-door in Thames Street.'\n\n'Perhaps, as that is the case,' said Mr Chester, 'and as it has a \nstronger flavour of oil than I usually refresh my bedroom with, you \nwill oblige me so far as to put it outside the door?'\n\n'By all means, sir,' said Mr Tappertit, suiting the action to the \nword.\n\n'You'll excuse my mentioning it, I hope?'\n\n'Don't apologise, sir, I beg.  And now, if you please, to \nbusiness.'\n\nDuring the whole of this dialogue, Mr Chester had suffered nothing \nbut his smile of unvarying serenity and politeness to appear upon \nhis face.  Sim Tappertit, who had far too good an opinion of \nhimself to suspect that anybody could be playing upon him, thought \nwithin himself that this was something like the respect to which he \nwas entitled, and drew a comparison from this courteous demeanour \nof a stranger, by no means favourable to the worthy locksmith.\n\n'From what passes in our house,' said Mr Tappertit, 'I am aware, \nsir, that your son keeps company with a young lady against your \ninclinations.  Sir, your son has not used me well.'\n\n'Mr Tappertit,' said the other, 'you grieve me beyond description.'\n\n'Thank you, sir,' replied the 'prentice.  'I'm glad to hear you say \nso.  He's very proud, sir, is your son; very haughty.'\n\n'I am afraid he IS haughty,' said Mr Chester.  'Do you know I was \nreally afraid of that before; and you confirm me?'\n\n'To recount the menial offices I've had to do for your son, sir,' \nsaid Mr Tappertit; 'the chairs I've had to hand him, the coaches \nI've had to call for him, the numerous degrading duties, wholly \nunconnected with my indenters, that I've had to do for him, would \nfill a family Bible.  Besides which, sir, he is but a young man \nhimself and I do not consider \"thank'ee Sim,\" a proper form of \naddress on those occasions.'\n\n'Mr Tappertit, your wisdom is beyond your years.  Pray go on.'\n\n'I thank you for your good opinion, sir,' said Sim, much gratified, \n'and will endeavour so to do.  Now sir, on this account (and \nperhaps for another reason or two which I needn't go into) I am on \nyour side.  And what I tell you is this--that as long as our people \ngo backwards and forwards, to and fro, up and down, to that there \njolly old Maypole, lettering, and messaging, and fetching and \ncarrying, you couldn't help your son keeping company with that \nyoung lady by deputy,--not if he was minded night and day by all \nthe Horse Guards, and every man of 'em in the very fullest \nuniform.'\n\nMr Tappertit stopped to take breath after this, and then started \nfresh again.\n\n'Now, sir, I am a coming to the point.  You will inquire of me, \n\"how is this to he prevented?\"  I'll tell you how.  If an honest, \ncivil, smiling gentleman like you--'\n\n'Mr Tappertit--really--'\n\n'No, no, I'm serious,' rejoined the 'prentice, 'I am, upon my soul.  \nIf an honest, civil, smiling gentleman like you, was to talk but \nten minutes to our old woman--that's Mrs Varden--and flatter her up \na bit, you'd gain her over for ever.  Then there's this point got--\nthat her daughter Dolly,'--here a flush came over Mr Tappertit's \nface--'wouldn't be allowed to be a go-between from that time \nforward; and till that point's got, there's nothing ever will \nprevent her.  Mind that.'\n\n'Mr Tappertit, your knowledge of human nature--'\n\n'Wait a minute,' said Sim, folding his arms with a dreadful \ncalmness.  'Now I come to THE point.  Sir, there is a villain at \nthat Maypole, a monster in human shape, a vagabond of the deepest \ndye, that unless you get rid of and have kidnapped and carried off \nat the very least--nothing less will do--will marry your son to \nthat young woman, as certainly and as surely as if he was the \nArchbishop of Canterbury himself.  He will, sir, for the hatred and \nmalice that he bears to you; let alone the pleasure of doing a bad \naction, which to him is its own reward.  If you knew how this chap, \nthis Joseph Willet--that's his name--comes backwards and forwards \nto our house, libelling, and denouncing, and threatening you, and \nhow I shudder when I hear him, you'd hate him worse than I do,--\nworse than I do, sir,' said Mr Tappertit wildly, putting his hair \nup straighter, and making a crunching noise with his teeth; 'if \nsich a thing is possible.'\n\n'A little private vengeance in this, Mr Tappertit?'\n\n'Private vengeance, sir, or public sentiment, or both combined--\ndestroy him,' said Mr Tappertit.  'Miggs says so too.  Miggs and me \nboth say so.  We can't bear the plotting and undermining that takes \nplace.  Our souls recoil from it.  Barnaby Rudge and Mrs Rudge are \nin it likewise; but the villain, Joseph Willet, is the ringleader.  \nTheir plottings and schemes are known to me and Miggs.  If you want \ninformation of 'em, apply to us.  Put Joseph Willet down, sir.  \nDestroy him.  Crush him.  And be happy.'\n\nWith these words, Mr Tappertit, who seemed to expect no reply, and \nto hold it as a necessary consequence of his eloquence that his \nhearer should be utterly stunned, dumbfoundered, and overwhelmed, \nfolded his arms so that the palm of each hand rested on the \nopposite shoulder, and disappeared after the manner of those \nmysterious warners of whom he had read in cheap story-books.\n\n'That fellow,' said Mr Chester, relaxing his face when he was \nfairly gone, 'is good practice.  I HAVE some command of my \nfeatures, beyond all doubt.  He fully confirms what I suspected, \nthough; and blunt tools are sometimes found of use, where sharper \ninstruments would fail.  I fear I may be obliged to make great \nhavoc among these worthy people.  A troublesome necessity!  I \nquite feel for them.'\n\nWith that he fell into a quiet slumber:--subsided into such a \ngentle, pleasant sleep, that it was quite infantine.\n\n\n\nChapter 25\n\n\nLeaving the favoured, and well-received, and flattered of the \nworld; him of the world most worldly, who never compromised himself \nby an ungentlemanly action, and never was guilty of a manly one; to \nlie smilingly asleep--for even sleep, working but little change in \nhis dissembling face, became with him a piece of cold, conventional \nhypocrisy--we follow in the steps of two slow travellers on foot, \nmaking towards Chigwell.\n\nBarnaby and his mother.  Grip in their company, of course.\n\nThe widow, to whom each painful mile seemed longer than the last, \ntoiled wearily along; while Barnaby, yielding to every inconstant \nimpulse, fluttered here and there, now leaving her far behind, now \nlingering far behind himself, now darting into some by-lane or path \nand leaving her to pursue her way alone, until he stealthily \nemerged again and came upon her with a wild shout of merriment, as \nhis wayward and capricious nature prompted.  Now he would call to \nher from the topmost branch of some high tree by the roadside; now \nusing his tall staff as a leaping-pole, come flying over ditch or \nhedge or five-barred gate; now run with surprising swiftness for a \nmile or more on the straight road, and halting, sport upon a patch \nof grass with Grip till she came up.  These were his delights; and \nwhen his patient mother heard his merry voice, or looked into his \nflushed and healthy face, she would not have abated them by one sad \nword or murmur, though each had been to her a source of suffering \nin the same degree as it was to him of pleasure.\n\nIt is something to look upon enjoyment, so that it be free and \nwild and in the face of nature, though it is but the enjoyment of \nan idiot.  It is something to know that Heaven has left the \ncapacity of gladness in such a creature's breast; it is something \nto be assured that, however lightly men may crush that faculty in \ntheir fellows, the Great Creator of mankind imparts it even to his \ndespised and slighted work.  Who would not rather see a poor idiot \nhappy in the sunlight, than a wise man pining in a darkened jail!\n\nYe men of gloom and austerity, who paint the face of Infinite \nBenevolence with an eternal frown; read in the Everlasting Book, \nwide open to your view, the lesson it would teach.  Its pictures \nare not in black and sombre hues, but bright and glowing tints; its \nmusic--save when ye drown it--is not in sighs and groans, but songs \nand cheerful sounds.  Listen to the million voices in the summer \nair, and find one dismal as your own.  Remember, if ye can, the \nsense of hope and pleasure which every glad return of day awakens \nin the breast of all your kind who have not changed their nature; \nand learn some wisdom even from the witless, when their hearts are \nlifted up they know not why, by all the mirth and happiness it \nbrings.\n\nThe widow's breast was full of care, was laden heavily with secret \ndread and sorrow; but her boy's gaiety of heart gladdened her, and \nbeguiled the long journey.  Sometimes he would bid her lean upon \nhis arm, and would keep beside her steadily for a short distance; \nbut it was more his nature to be rambling to and fro, and she \nbetter liked to see him free and happy, even than to have him near \nher, because she loved him better than herself.\n\nShe had quitted the place to which they were travelling, directly \nafter the event which had changed her whole existence; and for two-\nand-twenty years had never had courage to revisit it.  It was her \nnative village.  How many recollections crowded on her mind when it \nappeared in sight!\n\nTwo-and-twenty years.  Her boy's whole life and history.  The last \ntime she looked back upon those roofs among the trees, she carried \nhim in her arms, an infant.  How often since that time had she sat \nbeside him night and day, watching for the dawn of mind that never \ncame; how had she feared, and doubted, and yet hoped, long after \nconviction forced itself upon her!  The little stratagems she had \ndevised to try him, the little tokens he had given in his childish \nway--not of dulness but of something infinitely worse, so ghastly \nand unchildlike in its cunning--came back as vividly as if but \nyesterday had intervened.  The room in which they used to be; the \nspot in which his cradle stood; he, old and elfin-like in face, but \never dear to her, gazing at her with a wild and vacant eye, and \ncrooning some uncouth song as she sat by and rocked him; every \ncircumstance of his infancy came thronging back, and the most \ntrivial, perhaps, the most distinctly.\n\nHis older childhood, too; the strange imaginings he had; his terror \nof certain senseless things--familiar objects he endowed with life; \nthe slow and gradual breaking out of that one horror, in which, \nbefore his birth, his darkened intellect began; how, in the midst \nof all, she had found some hope and comfort in his being unlike \nanother child, and had gone on almost believing in the slow \ndevelopment of his mind until he grew a man, and then his childhood \nwas complete and lasting; one after another, all these old thoughts \nsprung up within her, strong after their long slumber and bitterer \nthan ever.\n\nShe took his arm and they hurried through the village street.  It \nwas the same as it was wont to be in old times, yet different too, \nand wore another air.  The change was in herself, not it; but she \nnever thought of that, and wondered at its alteration, and where it \nlay, and what it was.\n\nThe people all knew Barnaby, and the children of the place came \nflocking round him--as she remembered to have done with their \nfathers and mothers round some silly beggarman, when a child \nherself.  None of them knew her; they passed each well-remembered \nhouse, and yard, and homestead; and striking into the fields, were \nsoon alone again.\n\nThe Warren was the end of their journey.  Mr Haredale was walking \nin the garden, and seeing them as they passed the iron gate, \nunlocked it, and bade them enter that way.\n\n'At length you have mustered heart to visit the old place,' he said \nto the widow.  'I am glad you have.'\n\n'For the first time, and the last, sir,' she replied.\n\n'The first for many years, but not the last?'\n\n'The very last.'\n\n'You mean,' said Mr Haredale, regarding her with some surprise, \n'that having made this effort, you are resolved not to persevere \nand are determined to relapse?  This is unworthy of you.  I have \noften told you, you should return here.  You would be happier here \nthan elsewhere, I know.  As to Barnaby, it's quite his home.'\n\n'And Grip's,' said Barnaby, holding the basket open.  The raven \nhopped gravely out, and perching on his shoulder and addressing \nhimself to Mr Haredale, cried--as a hint, perhaps, that some \ntemperate refreshment would be acceptable--'Polly put the ket-tle \non, we'll all have tea!'\n\n'Hear me, Mary,' said Mr Haredale kindly, as he motioned her to \nwalk with him towards the house.  'Your life has been an example of \npatience and fortitude, except in this one particular which has \noften given me great pain.  It is enough to know that you were \ncruelly involved in the calamity which deprived me of an only \nbrother, and Emma of her father, without being obliged to suppose \n(as I sometimes am) that you associate us with the author of our \njoint misfortunes.'\n\n'Associate you with him, sir!' she cried.\n\n'Indeed,' said Mr Haredale, 'I think you do.  I almost believe \nthat because your husband was bound by so many ties to our \nrelation, and died in his service and defence, you have come in \nsome sort to connect us with his murder.'\n\n'Alas!' she answered.  'You little know my heart, sir.  You little \nknow the truth!'\n\n'It is natural you should do so; it is very probable you may, \nwithout being conscious of it,' said Mr Haredale, speaking more to \nhimself than her.  'We are a fallen house.  Money, dispensed with \nthe most lavish hand, would be a poor recompense for sufferings \nlike yours; and thinly scattered by hands so pinched and tied as \nours, it becomes a miserable mockery.  I feel it so, God knows,' he \nadded, hastily.  'Why should I wonder if she does!'\n\n'You do me wrong, dear sir, indeed,' she rejoined with great \nearnestness; 'and yet when you come to hear what I desire your \nleave to say--'\n\n'I shall find my doubts confirmed?' he said, observing that she \nfaltered and became confused.  'Well!'\n\nHe quickened his pace for a few steps, but fell back again to her \nside, and said:\n\n'And have you come all this way at last, solely to speak to me?'\n\nShe answered, 'Yes.'\n\n'A curse,' he muttered, 'upon the wretched state of us proud \nbeggars, from whom the poor and rich are equally at a distance; the \none being forced to treat us with a show of cold respect; the other \ncondescending to us in their every deed and word, and keeping more \naloof, the nearer they approach us.--Why, if it were pain to you \n(as it must have been) to break for this slight purpose the chain \nof habit forged through two-and-twenty years, could you not let me \nknow your wish, and beg me to come to you?'\n\n'There was not time, sir,' she rejoined.  'I took my resolution \nbut last night, and taking it, felt that I must not lose a day--a \nday! an hour--in having speech with you.'\n\nThey had by this time reached the house.  Mr Haredale paused for a \nmoment, and looked at her as if surprised by the energy of her \nmanner.  Observing, however, that she took no heed of him, but \nglanced up, shuddering, at the old walls with which such horrors \nwere connected in her mind, he led her by a private stair into his \nlibrary, where Emma was seated in a window, reading.\n\nThe young lady, seeing who approached, hastily rose and laid aside \nher book, and with many kind words, and not without tears, gave her \na warm and earnest welcome.  But the widow shrunk from her embrace \nas though she feared her, and sunk down trembling on a chair.\n\n'It is the return to this place after so long an absence,' said \nEmma gently.  'Pray ring, dear uncle--or stay--Barnaby will run \nhimself and ask for wine--'\n\n'Not for the world,' she cried.  'It would have another taste--I \ncould not touch it.  I want but a minute's rest.  Nothing but \nthat.'\n\nMiss Haredale stood beside her chair, regarding her with silent \npity.  She remained for a little time quite still; then rose and \nturned to Mr Haredale, who had sat down in his easy chair, and was \ncontemplating her with fixed attention.\n\nThe tale connected with the mansion borne in mind, it seemed, as \nhas been already said, the chosen theatre for such a deed as it had \nknown.  The room in which this group were now assembled--hard by \nthe very chamber where the act was done--dull, dark, and sombre; \nheavy with worm-eaten books; deadened and shut in by faded \nhangings, muffling every sound; shadowed mournfully by trees whose \nrustling boughs gave ever and anon a spectral knocking at the \nglass; wore, beyond all others in the house, a ghostly, gloomy air.  \nNor were the group assembled there, unfitting tenants of the spot.  \nThe widow, with her marked and startling face and downcast eyes; Mr \nHaredale stern and despondent ever; his niece beside him, like, yet \nmost unlike, the picture of her father, which gazed reproachfully \ndown upon them from the blackened wall; Barnaby, with his vacant \nlook and restless eye; were all in keeping with the place, and \nactors in the legend.  Nay, the very raven, who had hopped upon the \ntable and with the air of some old necromancer appeared to be \nprofoundly studying a great folio volume that lay open on a desk, \nwas strictly in unison with the rest, and looked like the embodied \nspirit of evil biding his time of mischief.\n\n'I scarcely know,' said the widow, breaking silence, 'how to begin.  \nYou will think my mind disordered.'\n\n'The whole tenor of your quiet and reproachless life since you were \nlast here,' returned Mr Haredale, mildly, 'shall bear witness for \nyou.  Why do you fear to awaken such a suspicion?  You do not speak \nto strangers.  You have not to claim our interest or consideration \nfor the first time.  Be more yourself.  Take heart.  Any advice or \nassistance that I can give you, you know is yours of right, and \nfreely yours.'\n\n'What if I came, sir,' she rejoined, 'I who have but one other \nfriend on earth, to reject your aid from this moment, and to say \nthat henceforth I launch myself upon the world, alone and \nunassisted, to sink or swim as Heaven may decree!'\n\n'You would have, if you came to me for such a purpose,' said Mr \nHaredale calmly, 'some reason to assign for conduct so \nextraordinary, which--if one may entertain the possibility of \nanything so wild and strange--would have its weight, of course.'\n\n'That, sir,' she answered, 'is the misery of my distress.  I can \ngive no reason whatever.  My own bare word is all that I can offer.  \nIt is my duty, my imperative and bounden duty.  If I did not \ndischarge it, I should be a base and guilty wretch.  Having said \nthat, my lips are sealed, and I can say no more.'\n\nAs though she felt relieved at having said so much, and had nerved \nherself to the remainder of her task, she spoke from this time with \na firmer voice and heightened courage.\n\n'Heaven is my witness, as my own heart is--and yours, dear young \nlady, will speak for me, I know--that I have lived, since that time \nwe all have bitter reason to remember, in unchanging devotion, and \ngratitude to this family.  Heaven is my witness that go where I \nmay, I shall preserve those feelings unimpaired.  And it is my \nwitness, too, that they alone impel me to the course I must take, \nand from which nothing now shall turn me, as I hope for mercy.'\n\n'These are strange riddles,' said Mr Haredale.\n\n'In this world, sir,' she replied, 'they may, perhaps, never be \nexplained.  In another, the Truth will be discovered in its own \ngood time.  And may that time,' she added in a low voice, 'be far \ndistant!'\n\n'Let me be sure,' said Mr Haredale, 'that I understand you, for I \nam doubtful of my own senses.  Do you mean that you are resolved \nvoluntarily to deprive yourself of those means of support you have \nreceived from us so long--that you are determined to resign the \nannuity we settled on you twenty years ago--to leave house, and \nhome, and goods, and begin life anew--and this, for some secret \nreason or monstrous fancy which is incapable of explanation, which \nonly now exists, and has been dormant all this time?  In the name \nof God, under what delusion are you labouring?'\n\n'As I am deeply thankful,' she made answer, 'for the kindness of \nthose, alive and dead, who have owned this house; and as I would \nnot have its roof fall down and crush me, or its very walls drip \nblood, my name being spoken in their hearing; I never will again \nsubsist upon their bounty, or let it help me to subsistence.  You \ndo not know,' she added, suddenly, 'to what uses it may be applied; \ninto what hands it may pass.  I do, and I renounce it.'\n\n'Surely,' said Mr Haredale, 'its uses rest with you.'\n\n'They did.  They rest with me no longer.  It may be--it IS--devoted \nto purposes that mock the dead in their graves.  It never can \nprosper with me.  It will bring some other heavy judgement on the \nhead of my dear son, whose innocence will suffer for his mother's \nguilt.'\n\n'What words are these!' cried Mr Haredale, regarding her with \nwonder.  'Among what associates have you fallen?  Into what guilt \nhave you ever been betrayed?'\n\n'I am guilty, and yet innocent; wrong, yet right; good in \nintention, though constrained to shield and aid the bad.  Ask me no \nmore questions, sir; but believe that I am rather to be pitied than \ncondemned.  I must leave my house to-morrow, for while I stay \nthere, it is haunted.  My future dwelling, if I am to live in \npeace, must be a secret.  If my poor boy should ever stray this \nway, do not tempt him to disclose it or have him watched when he \nreturns; for if we are hunted, we must fly again.  And now this \nload is off my mind, I beseech you--and you, dear Miss Haredale, \ntoo--to trust me if you can, and think of me kindly as you have \nbeen used to do.  If I die and cannot tell my secret even then (for \nthat may come to pass), it will sit the lighter on my breast in \nthat hour for this day's work; and on that day, and every day until \nit comes, I will pray for and thank you both, and trouble you no \nmore.\n\nWith that, she would have left them, but they detained her, and \nwith many soothing words and kind entreaties, besought her to \nconsider what she did, and above all to repose more freely upon \nthem, and say what weighed so sorely on her mind.  Finding her deaf \nto their persuasions, Mr Haredale suggested, as a last resource, \nthat she should confide in Emma, of whom, as a young person and one \nof her own sex, she might stand in less dread than of himself.  \nFrom this proposal, however, she recoiled with the same \nindescribable repugnance she had manifested when they met.  The \nutmost that could be wrung from her was, a promise that she would \nreceive Mr Haredale at her own house next evening, and in the mean \ntime reconsider her determination and their dissuasions--though any \nchange on her part, as she told them, was quite hopeless.  This \ncondition made at last, they reluctantly suffered her to depart, \nsince she would neither eat nor drink within the house; and she, \nand Barnaby, and Grip, accordingly went out as they had come, by \nthe private stair and garden-gate; seeing and being seen of no one \nby the way.\n\nIt was remarkable in the raven that during the whole interview he \nhad kept his eye on his book with exactly the air of a very sly \nhuman rascal, who, under the mask of pretending to read hard, was \nlistening to everything.  He still appeared to have the \nconversation very strongly in his mind, for although, when they \nwere alone again, he issued orders for the instant preparation of \ninnumerable kettles for purposes of tea, he was thoughtful, and \nrather seemed to do so from an abstract sense of duty, than with \nany regard to making himself agreeable, or being what is commonly \ncalled good company.\n\nThey were to return by the coach.  As there was an interval of \nfull two hours before it started, and they needed rest and some \nrefreshment, Barnaby begged hard for a visit to the Maypole.  But \nhis mother, who had no wish to be recognised by any of those who \nhad known her long ago, and who feared besides that Mr Haredale \nmight, on second thoughts, despatch some messenger to that place of \nentertainment in quest of her, proposed to wait in the churchyard \ninstead.  As it was easy for Barnaby to buy and carry thither such \nhumble viands as they required, he cheerfully assented, and in the \nchurchyard they sat down to take their frugal dinner.\n\nHere again, the raven was in a highly reflective state; walking up \nand down when he had dined, with an air of elderly complacency \nwhich was strongly suggestive of his having his hands under his \ncoat-tails; and appearing to read the tombstones with a very \ncritical taste.  Sometimes, after a long inspection of an epitaph, \nhe would strop his beak upon the grave to which it referred, and \ncry in his hoarse tones, 'I'm a devil, I'm a devil, I'm a devil!' \nbut whether he addressed his observations to any supposed person \nbelow, or merely threw them off as a general remark, is matter of \nuncertainty.\n\nIt was a quiet pretty spot, but a sad one for Barnaby's mother; for \nMr Reuben Haredale lay there, and near the vault in which his ashes \nrested, was a stone to the memory of her own husband, with a brief \ninscription recording how and when he had lost his life.  She sat \nhere, thoughtful and apart, until their time was out, and the \ndistant horn told that the coach was coming.\n\nBarnaby, who had been sleeping on the grass, sprung up quickly at \nthe sound; and Grip, who appeared to understand it equally well, \nwalked into his basket straightway, entreating society in general \n(as though he intended a kind of satire upon them in connection \nwith churchyards) never to say die on any terms.  They were soon on \nthe coach-top and rolling along the road.\n\nIt went round by the Maypole, and stopped at the door.  Joe was \nfrom home, and Hugh came sluggishly out to hand up the parcel that \nit called for.  There was no fear of old John coming out.  They \ncould see him from the coach-roof fast asleep in his cosy bar.  It \nwas a part of John's character.  He made a point of going to sleep \nat the coach's time.  He despised gadding about; he looked upon \ncoaches as things that ought to be indicted; as disturbers of the \npeace of mankind; as restless, bustling, busy, horn-blowing \ncontrivances, quite beneath the dignity of men, and only suited to \ngiddy girls that did nothing but chatter and go a-shopping.  'We \nknow nothing about coaches here, sir,' John would say, if any \nunlucky stranger made inquiry touching the offensive vehicles; 'we \ndon't book for 'em; we'd rather not; they're more trouble than \nthey're worth, with their noise and rattle.  If you like to wait \nfor 'em you can; but we don't know anything about 'em; they may \ncall and they may not--there's a carrier--he was looked upon as \nquite good enough for us, when I was a boy.'\n\nShe dropped her veil as Hugh climbed up, and while he hung behind, \nand talked to Barnaby in whispers.  But neither he nor any other \nperson spoke to her, or noticed her, or had any curiosity about \nher; and so, an alien, she visited and left the village where she \nhad been born, and had lived a merry child, a comely girl, a happy \nwife--where she had known all her enjoyment of life, and had \nentered on its hardest sorrows.\n\n\n\nChapter 26\n\n\n'And you're not surprised to hear this, Varden?' said Mr Haredale.  \n'Well!  You and she have always been the best friends, and you \nshould understand her if anybody does.'\n\n'I ask your pardon, sir,' rejoined the locksmith.  'I didn't say I \nunderstood her.  I wouldn't have the presumption to say that of any \nwoman.  It's not so easily done.  But I am not so much surprised, \nsir, as you expected me to be, certainly.'\n\n'May I ask why not, my good friend?'\n\n'I have seen, sir,' returned the locksmith with evident reluctance, \n'I have seen in connection with her, something that has filled me \nwith distrust and uneasiness.  She has made bad friends, how, or \nwhen, I don't know; but that her house is a refuge for one robber \nand cut-throat at least, I am certain.  There, sir!  Now it's out.'\n\n'Varden!'\n\n'My own eyes, sir, are my witnesses, and for her sake I would be \nwillingly half-blind, if I could but have the pleasure of \nmistrusting 'em.  I have kept the secret till now, and it will go \nno further than yourself, I know; but I tell you that with my own \neyes--broad awake--I saw, in the passage of her house one evening \nafter dark, the highwayman who robbed and wounded Mr Edward \nChester, and on the same night threatened me.'\n\n'And you made no effort to detain him?' said Mr Haredale quickly.\n\n'Sir,' returned the locksmith, 'she herself prevented me--held me, \nwith all her strength, and hung about me until he had got clear \noff.'  And having gone so far, he related circumstantially all that \nhad passed upon the night in question.\n\nThis dialogue was held in a low tone in the locksmith's little \nparlour, into which honest Gabriel had shown his visitor on his \narrival.  Mr Haredale had called upon him to entreat his company to \nthe widow's, that he might have the assistance of his persuasion \nand influence; and out of this circumstance the conversation had \narisen.\n\n'I forbore,' said Gabriel, 'from repeating one word of this to \nanybody, as it could do her no good and might do her great harm.  I \nthought and hoped, to say the truth, that she would come to me, and \ntalk to me about it, and tell me how it was; but though I have \npurposely put myself in her way more than once or twice, she has \nnever touched upon the subject--except by a look.  And indeed,' \nsaid the good-natured locksmith, 'there was a good deal in the \nlook, more than could have been put into a great many words.  It \nsaid among other matters \"Don't ask me anything\" so imploringly, \nthat I didn't ask her anything.  You'll think me an old fool, I \nknow, sir.  If it's any relief to call me one, pray do.'\n\n'I am greatly disturbed by what you tell me,' said Mr Haredale, \nafter a silence.  'What meaning do you attach to it?'\n\nThe locksmith shook his head, and looked doubtfully out of window \nat the failing light.\n\n'She cannot have married again,' said Mr Haredale.\n\n'Not without our knowledge surely, sir.'\n\n'She may have done so, in the fear that it would lead, if known, to \nsome objection or estrangement.  Suppose she married incautiously--\nit is not improbable, for her existence has been a lonely and \nmonotonous one for many years--and the man turned out a ruffian, \nshe would be anxious to screen him, and yet would revolt from his \ncrimes.  This might be.  It bears strongly on the whole drift of \nher discourse yesterday, and would quite explain her conduct.  Do \nyou suppose Barnaby is privy to these circumstances?'\n\n'Quite impossible to say, sir,' returned the locksmith, shaking his \nhead again: 'and next to impossible to find out from him.  If what \nyou suppose is really the case, I tremble for the lad--a notable \nperson, sir, to put to bad uses--'\n\n'It is not possible, Varden,' said Mr Haredale, in a still lower \ntone of voice than he had spoken yet, 'that we have been blinded \nand deceived by this woman from the beginning?  It is not possible \nthat this connection was formed in her husband's lifetime, and led \nto his and my brother's--'\n\n'Good God, sir,' cried Gabriel, interrupting him, 'don't entertain \nsuch dark thoughts for a moment.  Five-and-twenty years ago, where \nwas there a girl like her?  A gay, handsome, laughing, bright-eyed \ndamsel!  Think what she was, sir.  It makes my heart ache now, even \nnow, though I'm an old man, with a woman for a daughter, to think \nwhat she was and what she is.  We all change, but that's with Time; \nTime does his work honestly, and I don't mind him.  A fig for Time, \nsir.  Use him well, and he's a hearty fellow, and scorns to have \nyou at a disadvantage.  But care and suffering (and those have \nchanged her) are devils, sir--secret, stealthy, undermining devils--\nwho tread down the brightest flowers in Eden, and do more havoc in \na month than Time does in a year.  Picture to yourself for one \nminute what Mary was before they went to work with her fresh heart \nand face--do her that justice--and say whether such a thing is \npossible.'\n\n'You're a good fellow, Varden,' said Mr Haredale, 'and are quite \nright.  I have brooded on that subject so long, that every breath \nof suspicion carries me back to it.  You are quite right.'\n\n'It isn't, sir,' cried the locksmith with brightened eyes, and \nsturdy, honest voice; 'it isn't because I courted her before Rudge, \nand failed, that I say she was too good for him.  She would have \nbeen as much too good for me.  But she WAS too good for him; he \nwasn't free and frank enough for her.  I don't reproach his memory \nwith it, poor fellow; I only want to put her before you as she \nreally was.  For myself, I'll keep her old picture in my mind; and \nthinking of that, and what has altered her, I'll stand her friend, \nand try to win her back to peace.  And damme, sir,' cried Gabriel, \n'with your pardon for the word, I'd do the same if she had married \nfifty highwaymen in a twelvemonth; and think it in the Protestant \nManual too, though Martha said it wasn't, tooth and nail, till \ndoomsday!'\n\nIf the dark little parlour had been filled with a dense fog, which, \nclearing away in an instant, left it all radiance and brightness, \nit could not have been more suddenly cheered than by this outbreak \non the part of the hearty locksmith.  In a voice nearly as full and \nround as his own, Mr Haredale cried 'Well said!' and bade him come \naway without more parley.  The locksmith complied right willingly; \nand both getting into a hackney coach which was waiting at the \ndoor, drove off straightway.\n\nThey alighted at the street corner, and dismissing their \nconveyance, walked to the house.  To their first knock at the door \nthere was no response.  A second met with the like result.  But in \nanswer to the third, which was of a more vigorous kind, the parlour \nwindow-sash was gently raised, and a musical voice cried:\n\n'Haredale, my dear fellow, I am extremely glad to see you.  How \nvery much you have improved in your appearance since our last \nmeeting!  I never saw you looking better.  HOW do you do?'\n\nMr Haredale turned his eyes towards the casement whence the voice \nproceeded, though there was no need to do so, to recognise the \nspeaker, and Mr Chester waved his hand, and smiled a courteous \nwelcome.\n\n'The door will be opened immediately,' he said.  'There is nobody \nbut a very dilapidated female to perform such offices.  You will \nexcuse her infirmities?  If she were in a more elevated station of \nsociety, she would be gouty.  Being but a hewer of wood and drawer \nof water, she is rheumatic.  My dear Haredale, these are natural \nclass distinctions, depend upon it.'\n\nMr Haredale, whose face resumed its lowering and distrustful look \nthe moment he heard the voice, inclined his head stiffly, and \nturned his back upon the speaker.\n\n'Not opened yet,' said Mr Chester.  'Dear me!  I hope the aged soul \nhas not caught her foot in some unlucky cobweb by the way.  She is \nthere at last!  Come in, I beg!'\n\nMr Haredale entered, followed by the locksmith.  Turning with a \nlook of great astonishment to the old woman who had opened the \ndoor, he inquired for Mrs Rudge--for Barnaby.  They were both gone, \nshe replied, wagging her ancient head, for good.  There was a \ngentleman in the parlour, who perhaps could tell them more.  That \nwas all SHE knew.\n\n'Pray, sir,' said Mr Haredale, presenting himself before this new \ntenant, 'where is the person whom I came here to see?'\n\n'My dear friend,' he returned, 'I have not the least idea.'\n\n'Your trifling is ill-timed,' retorted the other in a suppressed \ntone and voice, 'and its subject ill-chosen.  Reserve it for those \nwho are your friends, and do not expend it on me.  I lay no claim \nto the distinction, and have the self-denial to reject it.'\n\n'My dear, good sir,' said Mr Chester, 'you are heated with walking.  \nSit down, I beg.  Our friend is--'\n\n'Is but a plain honest man,' returned Mr Haredale, 'and quite \nunworthy of your notice.'\n\n'Gabriel Varden by name, sir,' said the locksmith bluntly.\n\n'A worthy English yeoman!' said Mr Chester.  'A most worthy \nyeoman, of whom I have frequently heard my son Ned--darling fellow--\nspeak, and have often wished to see.  Varden, my good friend, I am \nglad to know you.  You wonder now,' he said, turning languidly to \nMr Haredale, 'to see me here.  Now, I am sure you do.'\n\nMr Haredale glanced at him--not fondly or admiringly--smiled, and \nheld his peace.\n\n'The mystery is solved in a moment,' said Mr Chester; 'in a moment.  \nWill you step aside with me one instant.  You remember our little \ncompact in reference to Ned, and your dear niece, Haredale?  You \nremember the list of assistants in their innocent intrigue?  You \nremember these two people being among them?  My dear fellow, \ncongratulate yourself, and me.  I have bought them off.'\n\n'You have done what?' said Mr Haredale.\n\n'Bought them off,' returned his smiling friend.  'I have found it \nnecessary to take some active steps towards setting this boy and \ngirl attachment quite at rest, and have begun by removing these two \nagents.  You are surprised?  Who CAN withstand the influence of a \nlittle money!  They wanted it, and have been bought off.  We have \nnothing more to fear from them.  They are gone.'\n\n'Gone!' echoed Mr Haredale.  'Where?'\n\n'My dear fellow--and you must permit me to say again, that you \nnever looked so young; so positively boyish as you do to-night--the \nLord knows where; I believe Columbus himself wouldn't find them.  \nBetween you and me they have their hidden reasons, but upon that \npoint I have pledged myself to secrecy.  She appointed to see you \nhere to-night, I know, but found it inconvenient, and couldn't \nwait.  Here is the key of the door.  I am afraid you'll find it \ninconveniently large; but as the tenement is yours, your good-\nnature will excuse that, Haredale, I am certain!'\n\n\n\nChapter 27\n\n\nMr Haredale stood in the widow's parlour with the door-key in his \nhand, gazing by turns at Mr Chester and at Gabriel Varden, and \noccasionally glancing downward at the key as in the hope that of \nits own accord it would unlock the mystery; until Mr Chester, \nputting on his hat and gloves, and sweetly inquiring whether they \nwere walking in the same direction, recalled him to himself.\n\n'No,' he said.  'Our roads diverge--widely, as you know.  For the \npresent, I shall remain here.'\n\n'You will be hipped, Haredale; you will be miserable, melancholy, \nutterly wretched,' returned the other.  'It's a place of the very \nlast description for a man of your temper.  I know it will make you \nvery miserable.'\n\n'Let it,' said Mr Haredale, sitting down; 'and thrive upon the \nthought.  Good night!'\n\nFeigning to be wholly unconscious of the abrupt wave of the hand \nwhich rendered this farewell tantamount to a dismissal, Mr Chester \nretorted with a bland and heartfelt benediction, and inquired of \nGabriel in what direction HE was going.\n\n'Yours, sir, would be too much honour for the like of me,' replied \nthe locksmith, hesitating.\n\n'I wish you to remain here a little while, Varden,' said Mr \nHaredale, without looking towards them.  'I have a word or two to \nsay to you.'\n\n'I will not intrude upon your conference another moment,' said Mr \nChester with inconceivable politeness.  'May it be satisfactory to \nyou both!  God bless you!'  So saying, and bestowing upon the \nlocksmith a most refulgent smile, he left them.\n\n'A deplorably constituted creature, that rugged person,' he said, \nas he walked along the street; 'he is an atrocity that carries its \nown punishment along with it--a bear that gnaws himself.  And here \nis one of the inestimable advantages of having a perfect command \nover one's inclinations.  I have been tempted in these two short \ninterviews, to draw upon that fellow, fifty times.  Five men in six \nwould have yielded to the impulse.  By suppressing mine, I wound \nhim deeper and more keenly than if I were the best swordsman in all \nEurope, and he the worst.  You are the wise man's very last \nresource,' he said, tapping the hilt of his weapon; 'we can but \nappeal to you when all else is said and done.  To come to you \nbefore, and thereby spare our adversaries so much, is a barbarian \nmode of warfare, quite unworthy of any man with the remotest \npretensions to delicacy of feeling, or refinement.'\n\nHe smiled so very pleasantly as he communed with himself after this \nmanner, that a beggar was emboldened to follow for alms, and to dog \nhis footsteps for some distance.  He was gratified by the \ncircumstance, feeling it complimentary to his power of feature, and \nas a reward suffered the man to follow him until he called a chair, \nwhen he graciously dismissed him with a fervent blessing.\n\n'Which is as easy as cursing,' he wisely added, as he took his \nseat, 'and more becoming to the face.--To Clerkenwell, my good \ncreatures, if you please!'  The chairmen were rendered quite \nvivacious by having such a courteous burden, and to Clerkenwell \nthey went at a fair round trot.\n\nAlighting at a certain point he had indicated to them upon the \nroad, and paying them something less than they expected from a fare \nof such gentle speech, he turned into the street in which the \nlocksmith dwelt, and presently stood beneath the shadow of the \nGolden Key.  Mr Tappertit, who was hard at work by lamplight, in a \ncorner of the workshop, remained unconscious of his presence until \na hand upon his shoulder made him start and turn his head.\n\n'Industry,' said Mr Chester, 'is the soul of business, and the \nkeystone of prosperity.  Mr Tappertit, I shall expect you to invite \nme to dinner when you are Lord Mayor of London.'\n\n'Sir,' returned the 'prentice, laying down his hammer, and rubbing \nhis nose on the back of a very sooty hand, 'I scorn the Lord Mayor \nand everything that belongs to him.  We must have another state of \nsociety, sir, before you catch me being Lord Mayor.  How de do, sir?'\n\n'The better, Mr Tappertit, for looking into your ingenuous face \nonce more.  I hope you are well.'\n\n'I am as well, sir,' said Sim, standing up to get nearer to his \near, and whispering hoarsely, 'as any man can be under the \naggrawations to which I am exposed.  My life's a burden to me.  If \nit wasn't for wengeance, I'd play at pitch and toss with it on the \nlosing hazard.'\n\n'Is Mrs Varden at home?' said Mr Chester.\n\n'Sir,' returned Sim, eyeing him over with a look of concentrated \nexpression,--'she is.  Did you wish to see her?'\n\nMr Chester nodded.\n\n'Then come this way, sir,' said Sim, wiping his face upon his \napron.  'Follow me, sir.--Would you permit me to whisper in your \near, one half a second?'\n\n'By all means.'\n\nMr Tappertit raised himself on tiptoe, applied his lips to Mr \nChester's ear, drew back his head without saying anything, looked \nhard at him, applied them to his ear again, again drew back, and \nfinally whispered--'The name is Joseph Willet.  Hush!  I say no \nmore.'\n\nHaving said that much, he beckoned the visitor with a mysterious \naspect to follow him to the parlour-door, where he announced him \nin the voice of a gentleman-usher.  'Mr Chester.'\n\n'And not Mr Ed'dard, mind,' said Sim, looking into the door again, \nand adding this by way of postscript in his own person; 'it's his \nfather.'\n\n'But do not let his father,' said Mr Chester, advancing hat in \nhand, as he observed the effect of this last explanatory \nannouncement, 'do not let his father be any check or restraint on \nyour domestic occupations, Miss Varden.'\n\n'Oh!  Now!  There!  An't I always a-saying it!' exclaimed Miggs, \nclapping her hands.  'If he an't been and took Missis for her own \ndaughter.  Well, she DO look like it, that she do.  Only think of \nthat, mim!'\n\n'Is it possible,' said Mr Chester in his softest tones, 'that this \nis Mrs Varden!  I am amazed.  That is not your daughter, Mrs \nVarden?  No, no.  Your sister.'\n\n'My daughter, indeed, sir,' returned Mrs V., blushing with great \njuvenility.\n\n'Ah, Mrs Varden!' cried the visitor.  'Ah, ma'am--humanity is \nindeed a happy lot, when we can repeat ourselves in others, and \nstill be young as they.  You must allow me to salute you--the \ncustom of the country, my dear madam--your daughter too.'\n\nDolly showed some reluctance to perform this ceremony, but was \nsharply reproved by Mrs Varden, who insisted on her undergoing it \nthat minute.  For pride, she said with great severity, was one of \nthe seven deadly sins, and humility and lowliness of heart were \nvirtues.  Wherefore she desired that Dolly would be kissed \nimmediately, on pain of her just displeasure; at the same time \ngiving her to understand that whatever she saw her mother do, she \nmight safely do herself, without being at the trouble of any \nreasoning or reflection on the subject--which, indeed, was \noffensive and undutiful, and in direct contravention of the church \ncatechism.\n\nThus admonished, Dolly complied, though by no means willingly; for \nthere was a broad, bold look of admiration in Mr Chester's face, \nrefined and polished though it sought to be, which distressed her \nvery much.  As she stood with downcast eyes, not liking to look up \nand meet his, he gazed upon her with an approving air, and then \nturned to her mother.\n\n'My friend Gabriel (whose acquaintance I only made this very \nevening) should be a happy man, Mrs Varden.'\n\n'Ah!' sighed Mrs V., shaking her head.\n\n'Ah!' echoed Miggs.\n\n'Is that the case?' said Mr Chester, compassionately.  'Dear me!'\n\n'Master has no intentions, sir,' murmured Miggs as she sidled up \nto him, 'but to be as grateful as his natur will let him, for \neverythink he owns which it is in his powers to appreciate.  But we \nnever, sir'--said Miggs, looking sideways at Mrs Varden, and \ninterlarding her discourse with a sigh--'we never know the full \nvalue of SOME wines and fig-trees till we lose 'em.  So much the \nworse, sir, for them as has the slighting of 'em on their \nconsciences when they're gone to be in full blow elsewhere.'  And \nMiss Miggs cast up her eyes to signify where that might be.\n\nAs Mrs Varden distinctly heard, and was intended to hear, all that \nMiggs said, and as these words appeared to convey in metaphorical \nterms a presage or foreboding that she would at some early period \ndroop beneath her trials and take an easy flight towards the stars, \nshe immediately began to languish, and taking a volume of the \nManual from a neighbouring table, leant her arm upon it as though \nshe were Hope and that her Anchor.  Mr Chester perceiving this, \nand seeing how the volume was lettered on the back, took it gently \nfrom her hand, and turned the fluttering leaves.\n\n'My favourite book, dear madam.  How often, how very often in his \nearly life--before he can remember'--(this clause was strictly \ntrue) 'have I deduced little easy moral lessons from its pages, for \nmy dear son Ned!  You know Ned?'\n\nMrs Varden had that honour, and a fine affable young gentleman he \nwas.\n\n'You're a mother, Mrs Varden,' said Mr Chester, taking a pinch of \nsnuff, 'and you know what I, as a father, feel, when he is praised.  \nHe gives me some uneasiness--much uneasiness--he's of a roving \nnature, ma'am--from flower to flower--from sweet to sweet--but his \nis the butterfly time of life, and we must not be hard upon such \ntrifling.'\n\nHe glanced at Dolly.  She was attending evidently to what he said.  \nJust what he desired!\n\n'The only thing I object to in this little trait of Ned's, is,' \nsaid Mr Chester, '--and the mention of his name reminds me, by the \nway, that I am about to beg the favour of a minute's talk with you \nalone--the only thing I object to in it, is, that it DOES partake \nof insincerity.  Now, however I may attempt to disguise the fact \nfrom myself in my affection for Ned, still I always revert to this--\nthat if we are not sincere, we are nothing.  Nothing upon earth.  \nLet us be sincere, my dear madam--'\n\n'--and Protestant,' murmured Mrs Varden.\n\n'--and Protestant above all things.  Let us be sincere and \nProtestant, strictly moral, strictly just (though always with a \nleaning towards mercy), strictly honest, and strictly true, and we \ngain--it is a slight point, certainly, but still it is something \ntangible; we throw up a groundwork and foundation, so to speak, of \ngoodness, on which we may afterwards erect some worthy \nsuperstructure.'\n\nNow, to be sure, Mrs Varden thought, here is a perfect character.  \nHere is a meek, righteous, thoroughgoing Christian, who, having \nmastered all these qualities, so difficult of attainment; who, \nhaving dropped a pinch of salt on the tails of all the cardinal \nvirtues, and caught them every one; makes light of their \npossession, and pants for more morality.  For the good woman never \ndoubted (as many good men and women never do), that this slighting \nkind of profession, this setting so little store by great matters, \nthis seeming to say, 'I am not proud, I am what you hear, but I \nconsider myself no better than other people; let us change the \nsubject, pray'--was perfectly genuine and true.  He so contrived \nit, and said it in that way that it appeared to have been forced \nfrom him, and its effect was marvellous.\n\nAware of the impression he had made--few men were quicker than he \nat such discoveries--Mr Chester followed up the blow by propounding \ncertain virtuous maxims, somewhat vague and general in their \nnature, doubtless, and occasionally partaking of the character of \ntruisms, worn a little out at elbow, but delivered in so charming a \nvoice and with such uncommon serenity and peace of mind, that they \nanswered as well as the best.  Nor is this to be wondered at; for \nas hollow vessels produce a far more musical sound in falling than \nthose which are substantial, so it will oftentimes be found that \nsentiments which have nothing in them make the loudest ringing in \nthe world, and are the most relished.\n\nMr Chester, with the volume gently extended in one hand, and with \nthe other planted lightly on his breast, talked to them in the most \ndelicious manner possible; and quite enchanted all his hearers, \nnotwithstanding their conflicting interests and thoughts.  Even \nDolly, who, between his keen regards and her eyeing over by Mr \nTappertit, was put quite out of countenance, could not help owning \nwithin herself that he was the sweetest-spoken gentleman she had \never seen.  Even Miss Miggs, who was divided between admiration of \nMr Chester and a mortal jealousy of her young mistress, had \nsufficient leisure to be propitiated.  Even Mr Tappertit, though \noccupied as we have seen in gazing at his heart's delight, could \nnot wholly divert his thoughts from the voice of the other charmer.  \nMrs Varden, to her own private thinking, had never been so improved \nin all her life; and when Mr Chester, rising and craving permission \nto speak with her apart, took her by the hand and led her at arm's \nlength upstairs to the best sitting-room, she almost deemed him \nsomething more than human.\n\n'Dear madam,' he said, pressing her hand delicately to his lips; \n'be seated.'\n\nMrs Varden called up quite a courtly air, and became seated.\n\n'You guess my object?' said Mr Chester, drawing a chair towards \nher.  'You divine my purpose?  I am an affectionate parent, my dear \nMrs Varden.'\n\n'That I am sure you are, sir,' said Mrs V.\n\n'Thank you,' returned Mr Chester, tapping his snuff-box lid.  \n'Heavy moral responsibilities rest with parents, Mrs Varden.'\n\nMrs Varden slightly raised her hands, shook her head, and looked at \nthe ground as though she saw straight through the globe, out at the \nother end, and into the immensity of space beyond.\n\n'I may confide in you,' said Mr Chester, 'without reserve.  I love \nmy son, ma'am, dearly; and loving him as I do, I would save him \nfrom working certain misery.  You know of his attachment to Miss \nHaredale.  You have abetted him in it, and very kind of you it was \nto do so.  I am deeply obliged to you--most deeply obliged to you--\nfor your interest in his behalf; but my dear ma'am, it is a \nmistaken one, I do assure you.'\n\nMrs Varden stammered that she was sorry--'\n\n'Sorry, my dear ma'am,' he interposed.  'Never be sorry for what is \nso very amiable, so very good in intention, so perfectly like \nyourself.  But there are grave and weighty reasons, pressing family \nconsiderations, and apart even from these, points of religious \ndifference, which interpose themselves, and render their union \nimpossible; utterly im-possible.  I should have mentioned these \ncircumstances to your husband; but he has--you will excuse my \nsaying this so freely--he has NOT your quickness of apprehension or \ndepth of moral sense.  What an extremely airy house this is, and \nhow beautifully kept!  For one like myself--a widower so long--\nthese tokens of female care and superintendence have inexpressible \ncharms.'\n\nMrs Varden began to think (she scarcely knew why) that the young Mr \nChester must be in the wrong and the old Mr Chester must he in the \nright.\n\n'My son Ned,' resumed her tempter with his most winning air, 'has \nhad, I am told, your lovely daughter's aid, and your open-hearted \nhusband's.'\n\n'--Much more than mine, sir,' said Mrs Varden; 'a great deal more.  \nI have often had my doubts.  It's a--'\n\n'A bad example,' suggested Mr Chester.  'It is.  No doubt it is.  \nYour daughter is at that age when to set before her an \nencouragement for young persons to rebel against their parents on \nthis most important point, is particularly injudicious.  You are \nquite right.  I ought to have thought of that myself, but it \nescaped me, I confess--so far superior are your sex to ours, dear \nmadam, in point of penetration and sagacity.'\n\nMrs Varden looked as wise as if she had really said something to \ndeserve this compliment--firmly believed she had, in short--and her \nfaith in her own shrewdness increased considerably.\n\n'My dear ma'am,' said Mr Chester, 'you embolden me to be plain \nwith you.  My son and I are at variance on this point.  The young \nlady and her natural guardian differ upon it, also.  And the \nclosing point is, that my son is bound by his duty to me, by his \nhonour, by every solemn tie and obligation, to marry some one \nelse.'\n\n'Engaged to marry another lady!' quoth Mrs Varden, holding up her \nhands.\n\n'My dear madam, brought up, educated, and trained, expressly for \nthat purpose.  Expressly for that purpose.--Miss Haredale, I am \ntold, is a very charming creature.'\n\n'I am her foster-mother, and should know--the best young lady in \nthe world,' said Mrs Varden.\n\n'I have not the smallest doubt of it.  I am sure she is.  And you, \nwho have stood in that tender relation towards her, are bound to \nconsult her happiness.  Now, can I--as I have said to Haredale, who \nquite agrees--can I possibly stand by, and suffer her to throw \nherself away (although she IS of a Catholic family), upon a young \nfellow who, as yet, has no heart at all?  It is no imputation upon \nhim to say he has not, because young men who have plunged deeply \ninto the frivolities and conventionalities of society, very seldom \nhave.  Their hearts never grow, my dear ma'am, till after thirty.  \nI don't believe, no, I do NOT believe, that I had any heart myself \nwhen I was Ned's age.'\n\n'Oh sir,' said Mrs Varden, 'I think you must have had.  It's \nimpossible that you, who have so much now, can ever have been \nwithout any.'\n\n'I hope,' he answered, shrugging his shoulders meekly, 'I have a \nlittle; I hope, a very little--Heaven knows!  But to return to Ned; \nI have no doubt you thought, and therefore interfered benevolently \nin his behalf, that I objected to Miss Haredale.  How very \nnatural!  My dear madam, I object to him--to him--emphatically to \nNed himself.'\n\nMrs Varden was perfectly aghast at the disclosure.\n\n'He has, if he honourably fulfils this solemn obligation of which I \nhave told you--and he must be honourable, dear Mrs Varden, or he is \nno son of mine--a fortune within his reach.  He is of most \nexpensive, ruinously expensive habits; and if, in a moment of \ncaprice and wilfulness, he were to marry this young lady, and so \ndeprive himself of the means of gratifying the tastes to which he \nhas been so long accustomed, he would--my dear madam, he would \nbreak the gentle creature's heart.  Mrs Varden, my good lady, my \ndear soul, I put it to you--is such a sacrifice to be endured?  Is \nthe female heart a thing to be trifled with in this way?  Ask your \nown, my dear madam.  Ask your own, I beseech you.'\n\n'Truly,' thought Mrs Varden, 'this gentleman is a saint.  But,' she \nadded aloud, and not unnaturally, 'if you take Miss Emma's lover \naway, sir, what becomes of the poor thing's heart then?'\n\n'The very point,' said Mr Chester, not at all abashed, 'to which I \nwished to lead you.  A marriage with my son, whom I should be \ncompelled to disown, would be followed by years of misery; they \nwould be separated, my dear madam, in a twelvemonth.  To break off \nthis attachment, which is more fancied than real, as you and I know \nvery well, will cost the dear girl but a few tears, and she is \nhappy again.  Take the case of your own daughter, the young lady \ndownstairs, who is your breathing image'--Mrs Varden coughed and \nsimpered--'there is a young man (I am sorry to say, a dissolute \nfellow, of very indifferent character) of whom I have heard Ned \nspeak--Bullet was it--Pullet--Mullet--'\n\n'There is a young man of the name of Joseph Willet, sir,' said Mrs \nVarden, folding her hands loftily.\n\n'That's he,' cried Mr Chester.  'Suppose this Joseph Willet now, \nwere to aspire to the affections of your charming daughter, and \nwere to engage them.'\n\n'It would be like his impudence,' interposed Mrs Varden, bridling, \n'to dare to think of such a thing!'\n\n'My dear madam, that's the whole case.  I know it would be like his \nimpudence.  It is like Ned's impudence to do as he has done; but \nyou would not on that account, or because of a few tears from your \nbeautiful daughter, refrain from checking their inclinations in \ntheir birth.  I meant to have reasoned thus with your husband when \nI saw him at Mrs Rudge's this evening--'\n\n'My husband,' said Mrs Varden, interposing with emotion, 'would be \na great deal better at home than going to Mrs Rudge's so often.  I \ndon't know what he does there.  I don't see what occasion he has to \nbusy himself in her affairs at all, sir.'\n\n'If I don't appear to express my concurrence in those last \nsentiments of yours,' returned Mr Chester, 'quite so strongly as \nyou might desire, it is because his being there, my dear madam, and \nnot proving conversational, led me hither, and procured me the \nhappiness of this interview with one, in whom the whole management, \nconduct, and prosperity of her family are centred, I perceive.'\n\nWith that he took Mrs Varden's hand again, and having pressed it to \nhis lips with the highflown gallantry of the day--a little \nburlesqued to render it the more striking in the good lady's \nunaccustomed eyes--proceeded in the same strain of mingled \nsophistry, cajolery, and flattery, to entreat that her utmost \ninfluence might be exerted to restrain her husband and daughter \nfrom any further promotion of Edward's suit to Miss Haredale, and \nfrom aiding or abetting either party in any way.  Mrs Varden was \nbut a woman, and had her share of vanity, obstinacy, and love of \npower.  She entered into a secret treaty of alliance, offensive and \ndefensive, with her insinuating visitor; and really did believe, as \nmany others would have done who saw and heard him, that in so doing \nshe furthered the ends of truth, justice, and morality, in a very \nuncommon degree.\n\nOverjoyed by the success of his negotiation, and mightily amused \nwithin himself, Mr Chester conducted her downstairs in the same \nstate as before; and having repeated the previous ceremony of \nsalutation, which also as before comprehended Dolly, took his \nleave; first completing the conquest of Miss Miggs's heart, by \ninquiring if 'this young lady' would light him to the door.\n\n'Oh, mim,' said Miggs, returning with the candle.  'Oh gracious me, \nmim, there's a gentleman!  Was there ever such an angel to talk as \nhe is--and such a sweet-looking man!  So upright and noble, that he \nseems to despise the very ground he walks on; and yet so mild and \ncondescending, that he seems to say \"but I will take notice on it \ntoo.\"  And to think of his taking you for Miss Dolly, and Miss \nDolly for your sister--Oh, my goodness me, if I was master wouldn't \nI be jealous of him!'\n\nMrs Varden reproved her handmaid for this vain-speaking; but very \ngently and mildly--quite smilingly indeed--remarking that she was a \nfoolish, giddy, light-headed girl, whose spirits carried her \nbeyond all bounds, and who didn't mean half she said, or she would \nbe quite angry with her.\n\n'For my part,' said Dolly, in a thoughtful manner, 'I half believe \nMr Chester is something like Miggs in that respect.  For all his \npoliteness and pleasant speaking, I am pretty sure he was making \ngame of us, more than once.'\n\n'If you venture to say such a thing again, and to speak ill of \npeople behind their backs in my presence, miss,' said Mrs Varden, \n'I shall insist upon your taking a candle and going to bed \ndirectly.  How dare you, Dolly?  I'm astonished at you.  The \nrudeness of your whole behaviour this evening has been disgraceful.  \nDid anybody ever hear,' cried the enraged matron, bursting into \ntears, 'of a daughter telling her own mother she has been made game \nof!'\n\nWhat a very uncertain temper Mrs Varden's was!\n\n\n\nChapter 28\n\n\nRepairing to a noted coffee-house in Covent Garden when he left the \nlocksmith's, Mr Chester sat long over a late dinner, entertaining \nhimself exceedingly with the whimsical recollection of his recent \nproceedings, and congratulating himself very much on his great \ncleverness.  Influenced by these thoughts, his face wore an \nexpression so benign and tranquil, that the waiter in immediate \nattendance upon him felt he could almost have died in his defence, \nand settled in his own mind (until the receipt of the bill, and a \nvery small fee for very great trouble disabused it of the idea) \nthat such an apostolic customer was worth half-a-dozen of the \nordinary run of visitors, at least.\n\nA visit to the gaming-table--not as a heated, anxious venturer, but \none whom it was quite a treat to see staking his two or three \npieces in deference to the follies of society, and smiling with \nequal benevolence on winners and losers--made it late before he \nreached home.  It was his custom to bid his servant go to bed at \nhis own time unless he had orders to the contrary, and to leave a \ncandle on the common stair.  There was a lamp on the landing by \nwhich he could always light it when he came home late, and having a \nkey of the door about him he could enter and go to bed at his \npleasure.\n\nHe opened the glass of the dull lamp, whose wick, burnt up and \nswollen like a drunkard's nose, came flying off in little \ncarbuncles at the candle's touch, and scattering hot sparks about, \nrendered it matter of some difficulty to kindle the lazy taper; \nwhen a noise, as of a man snoring deeply some steps higher up, \ncaused him to pause and listen.  It was the heavy breathing of a \nsleeper, close at hand.  Some fellow had lain down on the open \nstaircase, and was slumbering soundly.  Having lighted the candle \nat length and opened his own door, he softly ascended, holding the \ntaper high above his head, and peering cautiously about; curious to \nsee what kind of man had chosen so comfortless a shelter for his \nlodging.\n\nWith his head upon the landing and his great limbs flung over half-\na-dozen stairs, as carelessly as though he were a dead man whom \ndrunken bearers had thrown down by chance, there lay Hugh, face \nuppermost, his long hair drooping like some wild weed upon his \nwooden pillow, and his huge chest heaving with the sounds which so \nunwontedly disturbed the place and hour.\n\nHe who came upon him so unexpectedly was about to break his rest by \nthrusting him with his foot, when, glancing at his upturned face, \nhe arrested himself in the very action, and stooping down and \nshading the candle with his hand, examined his features closely.  \nClose as his first inspection was, it did not suffice, for he \npassed the light, still carefully shaded as before, across and \nacross his face, and yet observed him with a searching eye.\n\nWhile he was thus engaged, the sleeper, without any starting or \nturning round, awoke.  There was a kind of fascination in meeting \nhis steady gaze so suddenly, which took from the other the presence \nof mind to withdraw his eyes, and forced him, as it were, to meet \nhis look.  So they remained staring at each other, until Mr Chester \nat last broke silence, and asked him in a low voice, why he lay \nsleeping there.\n\n'I thought,' said Hugh, struggling into a sitting posture and \ngazing at him intently, still, 'that you were a part of my dream.  \nIt was a curious one.  I hope it may never come true, master.'\n\n'What makes you shiver?'\n\n'The--the cold, I suppose,' he growled, as he shook himself and \nrose.  'I hardly know where I am yet.'\n\n'Do you know me?' said Mr Chester.\n\n'Ay, I know you,' he answered.  'I was dreaming of you--we're not \nwhere I thought we were.  That's a comfort.'\n\nHe looked round him as he spoke, and in particular looked above his \nhead, as though he half expected to be standing under some object \nwhich had had existence in his dream.  Then he rubbed his eyes and \nshook himself again, and followed his conductor into his own rooms.\n\nMr Chester lighted the candles which stood upon his dressing-table, \nand wheeling an easy-chair towards the fire, which was yet \nburning, stirred up a cheerful blaze, sat down before it, and bade \nhis uncouth visitor 'Come here,' and draw his boots off.\n\n'You have been drinking again, my fine fellow,' he said, as Hugh \nwent down on one knee, and did as he was told.\n\n'As I'm alive, master, I've walked the twelve long miles, and \nwaited here I don't know how long, and had no drink between my lips \nsince dinner-time at noon.'\n\n'And can you do nothing better, my pleasant friend, than fall \nasleep, and shake the very building with your snores?' said Mr \nChester.  'Can't you dream in your straw at home, dull dog as you \nare, that you need come here to do it?--Reach me those slippers, \nand tread softly.'\n\nHugh obeyed in silence.\n\n'And harkee, my dear young gentleman,' said Mr Chester, as he put \nthem on, 'the next time you dream, don't let it be of me, but of \nsome dog or horse with whom you are better acquainted.  Fill the \nglass once--you'll find it and the bottle in the same place--and \nempty it to keep yourself awake.'\n\nHugh obeyed again even more zealously--and having done so, \npresented himself before his patron.\n\n'Now,' said Mr Chester, 'what do you want with me?'\n\n'There was news to-day,' returned Hugh.  'Your son was at our \nhouse--came down on horseback.  He tried to see the young woman, \nbut couldn't get sight of her.  He left some letter or some message \nwhich our Joe had charge of, but he and the old one quarrelled \nabout it when your son had gone, and the old one wouldn't let it be \ndelivered.  He says (that's the old one does) that none of his \npeople shall interfere and get him into trouble.  He's a landlord, \nhe says, and lives on everybody's custom.'\n\n'He's a jewel,' smiled Mr Chester, 'and the better for being a dull \none.--Well?'\n\n'Varden's daughter--that's the girl I kissed--'\n\n'--and stole the bracelet from upon the king's highway,' said Mr \nChester, composedly.  'Yes; what of her?'\n\n'She wrote a note at our house to the young woman, saying she lost \nthe letter I brought to you, and you burnt.  Our Joe was to carry \nit, but the old one kept him at home all next day, on purpose that \nhe shouldn't.  Next morning he gave it to me to take; and here it \nis.'\n\n'You didn't deliver it then, my good friend?' said Mr Chester, \ntwirling Dolly's note between his finger and thumb, and feigning to \nbe surprised.\n\n'I supposed you'd want to have it,' retorted Hugh.  'Burn one, burn \nall, I thought.'\n\n'My devil-may-care acquaintance,' said Mr Chester--'really if you \ndo not draw some nicer distinctions, your career will be cut short \nwith most surprising suddenness.  Don't you know that the letter \nyou brought to me, was directed to my son who resides in this very \nplace?  And can you descry no difference between his letters and \nthose addressed to other people?'\n\n'If you don't want it,' said Hugh, disconcerted by this reproof, \nfor he had expected high praise, 'give it me back, and I'll deliver \nit.  I don't know how to please you, master.'\n\n'I shall deliver it,' returned his patron, putting it away after a \nmoment's consideration, 'myself.  Does the young lady walk out, on \nfine mornings?'\n\n'Mostly--about noon is her usual time.'\n\n'Alone?'\n\n'Yes, alone.'\n\n'Where?'\n\n'In the grounds before the house.--Them that the footpath crosses.'\n\n'If the weather should be fine, I may throw myself in her way to-\nmorrow, perhaps,' said Mr Chester, as coolly as if she were one of \nhis ordinary acquaintance.  'Mr Hugh, if I should ride up to the \nMaypole door, you will do me the favour only to have seen me once.  \nYou must suppress your gratitude, and endeavour to forget my \nforbearance in the matter of the bracelet.  It is natural it should \nbreak out, and it does you honour; but when other folks are by, you \nmust, for your own sake and safety, be as like your usual self as \nthough you owed me no obligation whatever, and had never stood \nwithin these walls.  You comprehend me?'\n\nHugh understood him perfectly.  After a pause he muttered that he \nhoped his patron would involve him in no trouble about this last \nletter; for he had kept it back solely with the view of pleasing \nhim.  He was continuing in this strain, when Mr Chester with a \nmost beneficent and patronising air cut him short by saying:\n\n'My good fellow, you have my promise, my word, my sealed bond (for \na verbal pledge with me is quite as good), that I will always \nprotect you so long as you deserve it.  Now, do set your mind at \nrest.  Keep it at ease, I beg of you.  When a man puts himself in \nmy power so thoroughly as you have done, I really feel as though he \nhad a kind of claim upon me.  I am more disposed to mercy and \nforbearance under such circumstances than I can tell you, Hugh.  Do \nlook upon me as your protector, and rest assured, I entreat you, \nthat on the subject of that indiscretion, you may preserve, as long \nas you and I are friends, the lightest heart that ever beat within \na human breast.  Fill that glass once more to cheer you on your \nroad homewards--I am really quite ashamed to think how far you have \nto go--and then God bless you for the night.'\n\n'They think,' said Hugh, when he had tossed the liquor down, 'that \nI am sleeping soundly in the stable.  Ha ha ha!  The stable door is \nshut, but the steed's gone, master.'\n\n'You are a most convivial fellow,' returned his friend, 'and I love \nyour humour of all things.  Good night!  Take the greatest \npossible care of yourself, for my sake!'\n\nIt was remarkable that during the whole interview, each had \nendeavoured to catch stolen glances of the other's face, and had \nnever looked full at it.  They interchanged one brief and hasty \nglance as Hugh went out, averted their eyes directly, and so \nseparated.  Hugh closed the double doors behind him, carefully and \nwithout noise; and Mr Chester remained in his easy-chair, with his \ngaze intently fixed upon the fire.\n\n'Well!' he said, after meditating for a long time--and said with a \ndeep sigh and an uneasy shifting of his attitude, as though he \ndismissed some other subject from his thoughts, and returned to \nthat which had held possession of them all the day--the plot \nthickens; I have thrown the shell; it will explode, I think, in \neight-and-forty hours, and should scatter these good folks \namazingly.  We shall see!'\n\nHe went to bed and fell asleep, but had not slept long when he \nstarted up and thought that Hugh was at the outer door, calling in \na strange voice, very different from his own, to be admitted.  The \ndelusion was so strong upon him, and was so full of that vague \nterror of the night in which such visions have their being, that he \nrose, and taking his sheathed sword in his hand, opened the door, \nand looked out upon the staircase, and towards the spot where Hugh \nhad lain asleep; and even spoke to him by name.  But all was dark \nand quiet, and creeping back to bed again, he fell, after an hour's \nuneasy watching, into a second sleep, and woke no more till \nmorning.\n\n\n\nChapter 29\n\n\nThe thoughts of worldly men are for ever regulated by a moral law \nof gravitation, which, like the physical one, holds them down to \nearth.  The bright glory of day, and the silent wonders of a \nstarlit night, appeal to their minds in vain.  There are no signs \nin the sun, or in the moon, or in the stars, for their reading.  \nThey are like some wise men, who, learning to know each planet by \nits Latin name, have quite forgotten such small heavenly \nconstellations as Charity, Forbearance, Universal Love, and Mercy, \nalthough they shine by night and day so brightly that the blind may \nsee them; and who, looking upward at the spangled sky, see nothing \nthere but the reflection of their own great wisdom and book-\nlearning.\n\nIt is curious to imagine these people of the world, busy in \nthought, turning their eyes towards the countless spheres that \nshine above us, and making them reflect the only images their minds \ncontain.  The man who lives but in the breath of princes, has \nnothing his sight but stars for courtiers' breasts.  The envious \nman beholds his neighbours' honours even in the sky; to the money-\nhoarder, and the mass of worldly folk, the whole great universe \nabove glitters with sterling coin--fresh from the mint--stamped \nwith the sovereign's head--coming always between them and heaven, \nturn where they may.  So do the shadows of our own desires stand \nbetween us and our better angels, and thus their brightness is \neclipsed.\n\nEverything was fresh and gay, as though the world were but that \nmorning made, when Mr Chester rode at a tranquil pace along the \nForest road.  Though early in the season, it was warm and genial \nweather; the trees were budding into leaf, the hedges and the grass \nwere green, the air was musical with songs of birds, and high above \nthem all the lark poured out her richest melody.  In shady spots, \nthe morning dew sparkled on each young leaf and blade of grass; \nand where the sun was shining, some diamond drops yet glistened \nbrightly, as in unwillingness to leave so fair a world, and have \nsuch brief existence.  Even the light wind, whose rustling was as \ngentle to the ear as softly-falling water, had its hope and \npromise; and, leaving a pleasant fragrance in its track as it went \nfluttering by, whispered of its intercourse with Summer, and of his \nhappy coming.\n\nThe solitary rider went glancing on among the trees, from sunlight \ninto shade and back again, at the same even pace--looking about \nhim, certainly, from time to time, but with no greater thought of \nthe day or the scene through which he moved, than that he was \nfortunate (being choicely dressed) to have such favourable weather.  \nHe smiled very complacently at such times, but rather as if he were \nsatisfied with himself than with anything else: and so went riding \non, upon his chestnut cob, as pleasant to look upon as his own \nhorse, and probably far less sensitive to the many cheerful \ninfluences by which he was surrounded.\n\nIn the course of time, the Maypole's massive chimneys rose upon his \nview: but he quickened not his pace one jot, and with the same cool \ngravity rode up to the tavern porch.  John Willet, who was toasting \nhis red face before a great fire in the bar, and who, with \nsurpassing foresight and quickness of apprehension, had been \nthinking, as he looked at the blue sky, that if that state of \nthings lasted much longer, it might ultimately become necessary to \nleave off fires and throw the windows open, issued forth to hold \nhis stirrup; calling lustily for Hugh.\n\n'Oh, you're here, are you, sir?' said John, rather surprised by the \nquickness with which he appeared.  'Take this here valuable animal \ninto the stable, and have more than particular care of him if you \nwant to keep your place.  A mortal lazy fellow, sir; he needs a \ndeal of looking after.'\n\n'But you have a son,' returned Mr Chester, giving his bridle to \nHugh as he dismounted, and acknowledging his salute by a careless \nmotion of his hand towards his hat.  'Why don't you make HIM \nuseful?'\n\n'Why, the truth is, sir,' replied John with great importance, 'that \nmy son--what, you're a-listening are you, villain?'\n\n'Who's listening?' returned Hugh angrily.  'A treat, indeed, to \nhear YOU speak!  Would you have me take him in till he's cool?'\n\n'Walk him up and down further off then, sir,' cried old John, 'and \nwhen you see me and a noble gentleman entertaining ourselves with \ntalk, keep your distance.  If you don't know your distance, sir,' \nadded Mr Willet, after an enormously long pause, during which he \nfixed his great dull eyes on Hugh, and waited with exemplary \npatience for any little property in the way of ideas that might \ncome to him, 'we'll find a way to teach you, pretty soon.'\n\nHugh shrugged his shoulders scornfully, and in his reckless \nswaggering way, crossed to the other side of the little green, and \nthere, with the bridle slung loosely over his shoulder, led the \nhorse to and fro, glancing at his master every now and then from \nunder his bushy eyebrows, with as sinister an aspect as one would \ndesire to see.\n\nMr Chester, who, without appearing to do so, had eyed him \nattentively during this brief dispute, stepped into the porch, and \nturning abruptly to Mr Willet, said,\n\n'You keep strange servants, John.'\n\n'Strange enough to look at, sir, certainly,' answered the host; \n'but out of doors; for horses, dogs, and the likes of that; there \nan't a better man in England than is that Maypole Hugh yonder.  He \nan't fit for indoors,' added Mr Willet, with the confidential air \nof a man who felt his own superior nature.  'I do that; but if that \nchap had only a little imagination, sir--'\n\n'He's an active fellow now, I dare swear,' said Mr Chester, in a \nmusing tone, which seemed to suggest that he would have said the \nsame had there been nobody to hear him.\n\n'Active, sir!' retorted John, with quite an expression in his face; \n'that chap!  Hallo there!  You, sir!  Bring that horse here, and \ngo and hang my wig on the weathercock, to show this gentleman \nwhether you're one of the lively sort or not.'\n\nHugh made no answer, but throwing the bridle to his master, and \nsnatching his wig from his head, in a manner so unceremonious and \nhasty that the action discomposed Mr Willet not a little, though \nperformed at his own special desire, climbed nimbly to the very \nsummit of the maypole before the house, and hanging the wig upon \nthe weathercock, sent it twirling round like a roasting jack.  \nHaving achieved this performance, he cast it on the ground, and \nsliding down the pole with inconceivable rapidity, alighted on his \nfeet almost as soon as it had touched the earth.\n\n'There, sir,' said John, relapsing into his usual stolid state, \n'you won't see that at many houses, besides the Maypole, where \nthere's good accommodation for man and beast--nor that neither, \nthough that with him is nothing.'\n\nThis last remark bore reference to his vaulting on horseback, as \nupon Mr Chester's first visit, and quickly disappearing by the \nstable gate.\n\n'That with him is nothing,' repeated Mr Willet, brushing his wig \nwith his wrist, and inwardly resolving to distribute a small charge \nfor dust and damage to that article of dress, through the various \nitems of his guest's bill; 'he'll get out of a'most any winder in \nthe house.  There never was such a chap for flinging himself about \nand never hurting his bones.  It's my opinion, sir, that it's \npretty nearly allowing to his not having any imagination; and that \nif imagination could be (which it can't) knocked into him, he'd \nnever be able to do it any more.  But we was a-talking, sir, about \nmy son.'\n\n'True, Willet, true,' said his visitor, turning again towards the \nlandlord with his accustomed serenity of face.  'My good friend, \nwhat about him?'\n\nIt has been reported that Mr Willet, previously to making answer, \nwinked.  But as he was never known to be guilty of such lightness \nof conduct either before or afterwards, this may be looked upon as \na malicious invention of his enemies--founded, perhaps, upon the \nundisputed circumstance of his taking his guest by the third breast \nbutton of his coat, counting downwards from the chin, and pouring \nhis reply into his ear:\n\n'Sir,' whispered John, with dignity, 'I know my duty.  We want no \nlove-making here, sir, unbeknown to parents.  I respect a certain \nyoung gentleman, taking him in the light of a young gentleman; I \nrespect a certain young lady, taking her in the light of a young \nlady; but of the two as a couple, I have no knowledge, sir, none \nwhatever.  My son, sir, is upon his patrole.'\n\n'I thought I saw him looking through the corner window but this \nmoment,' said Mr Chester, who naturally thought that being on \npatrole, implied walking about somewhere.\n\n'No doubt you did, sir,' returned John.  'He is upon his patrole of \nhonour, sir, not to leave the premises.  Me and some friends of \nmine that use the Maypole of an evening, sir, considered what was \nbest to be done with him, to prevent his doing anything unpleasant \nin opposing your desires; and we've put him on his patrole.  And \nwhat's more, sir, he won't be off his patrole for a pretty long \ntime to come, I can tell you that.'\n\nWhen he had communicated this bright idea, which had its origin in \nthe perusal by the village cronies of a newspaper, containing, \namong other matters, an account of how some officer pending the \nsentence of some court-martial had been enlarged on parole, Mr \nWillet drew back from his guest's ear, and without any visible \nalteration of feature, chuckled thrice audibly.  This nearest \napproach to a laugh in which he ever indulged (and that but seldom \nand only on extreme occasions), never even curled his lip or \neffected the smallest change in--no, not so much as a slight \nwagging of--his great, fat, double chin, which at these times, as \nat all others, remained a perfect desert in the broad map of his \nface; one changeless, dull, tremendous blank.\n\nLest it should be matter of surprise to any, that Mr Willet adopted \nthis bold course in opposition to one whom he had often \nentertained, and who had always paid his way at the Maypole \ngallantly, it may be remarked that it was his very penetration and \nsagacity in this respect, which occasioned him to indulge in those \nunusual demonstrations of jocularity, just now recorded.  For Mr \nWillet, after carefully balancing father and son in his mental \nscales, had arrived at the distinct conclusion that the old \ngentleman was a better sort of a customer than the young one.  \nThrowing his landlord into the same scale, which was already turned \nby this consideration, and heaping upon him, again, his strong \ndesires to run counter to the unfortunate Joe, and his opposition \nas a general principle to all matters of love and matrimony, it \nwent down to the very ground straightway, and sent the light cause \nof the younger gentleman flying upwards to the ceiling.  Mr \nChester was not the kind of man to be by any means dim-sighted to \nMr Willet's motives, but he thanked him as graciously as if he had \nbeen one of the most disinterested martyrs that ever shone on \nearth; and leaving him, with many complimentary reliances on his \ngreat taste and judgment, to prepare whatever dinner he might deem \nmost fitting the occasion, bent his steps towards the Warren.\n\nDressed with more than his usual elegance; assuming a gracefulness \nof manner, which, though it was the result of long study, sat \neasily upon him and became him well; composing his features into \ntheir most serene and prepossessing expression; and setting in \nshort that guard upon himself, at every point, which denoted that \nhe attached no slight importance to the impression he was about to \nmake; he entered the bounds of Miss Haredale's usual walk.  He had \nnot gone far, or looked about him long, when he descried coming \ntowards him, a female figure.  A glimpse of the form and dress as \nshe crossed a little wooden bridge which lay between them, \nsatisfied him that he had found her whom he desired to see.  He \nthrew himself in her way, and a very few paces brought them close \ntogether.\n\nHe raised his hat from his head, and yielding the path, suffered \nher to pass him.  Then, as if the idea had but that moment \noccurred to him, he turned hastily back and said in an agitated \nvoice:\n\n'I beg pardon--do I address Miss Haredale?'\n\nShe stopped in some confusion at being so unexpectedly accosted by \na stranger; and answered 'Yes.'\n\n'Something told me,' he said, LOOKING a compliment to her beauty, \n'that it could be no other.  Miss Haredale, I bear a name which is \nnot unknown to you--which it is a pride, and yet a pain to me to \nknow, sounds pleasantly in your ears.  I am a man advanced in life, \nas you see.  I am the father of him whom you honour and distinguish \nabove all other men.  May I for weighty reasons which fill me with \ndistress, beg but a minute's conversation with you here?'\n\nWho that was inexperienced in deceit, and had a frank and youthful \nheart, could doubt the speaker's truth--could doubt it too, when \nthe voice that spoke, was like the faint echo of one she knew so \nwell, and so much loved to hear?  She inclined her head, and \nstopping, cast her eyes upon the ground.\n\n'A little more apart--among these trees.  It is an old man's hand, \nMiss Haredale; an honest one, believe me.'\n\nShe put hers in it as he said these words, and suffered him to lead \nher to a neighbouring seat.\n\n'You alarm me, sir,' she said in a low voice.  'You are not the \nbearer of any ill news, I hope?'\n\n'Of none that you anticipate,' he answered, sitting down beside \nher.  'Edward is well--quite well.  It is of him I wish to speak, \ncertainly; but I have no misfortune to communicate.'\n\nShe bowed her head again, and made as though she would have begged \nhim to proceed; but said nothing.\n\n'I am sensible that I speak to you at a disadvantage, dear Miss \nHaredale.  Believe me that I am not so forgetful of the feelings of \nmy younger days as not to know that you are little disposed to view \nme with favour.  You have heard me described as cold-hearted, \ncalculating, selfish--'\n\n'I have never, sir,'--she interposed with an altered manner and a \nfirmer voice; 'I have never heard you spoken of in harsh or \ndisrespectful terms.  You do a great wrong to Edward's nature if \nyou believe him capable of any mean or base proceeding.'\n\n'Pardon me, my sweet young lady, but your uncle--'\n\n'Nor is it my uncle's nature either,' she replied, with a \nheightened colour in her cheek.  'It is not his nature to stab in \nthe dark, nor is it mine to love such deeds.'\n\nShe rose as she spoke, and would have left him; but he detained her \nwith a gentle hand, and besought her in such persuasive accents to \nhear him but another minute, that she was easily prevailed upon to \ncomply, and so sat down again.\n\n'And it is,' said Mr Chester, looking upward, and apostrophising \nthe air; 'it is this frank, ingenuous, noble nature, Ned, that you \ncan wound so lightly.  Shame--shame upon you, boy!'\n\nShe turned towards him quickly, and with a scornful look and \nflashing eyes.  There were tears in Mr Chester's eyes, but he \ndashed them hurriedly away, as though unwilling that his weakness \nshould be known, and regarded her with mingled admiration and \ncompassion.\n\n'I never until now,' he said, 'believed, that the frivolous actions \nof a young man could move me like these of my own son.  I never \nknew till now, the worth of a woman's heart, which boys so lightly \nwin, and lightly fling away.  Trust me, dear young lady, that I \nnever until now did know your worth; and though an abhorrence of \ndeceit and falsehood has impelled me to seek you out, and would \nhave done so had you been the poorest and least gifted of your sex, \nI should have lacked the fortitude to sustain this interview could \nI have pictured you to my imagination as you really are.'\n\nOh!  If Mrs Varden could have seen the virtuous gentleman as he \nsaid these words, with indignation sparkling from his eyes--if she \ncould have heard his broken, quavering voice--if she could have \nbeheld him as he stood bareheaded in the sunlight, and with \nunwonted energy poured forth his eloquence!\n\nWith a haughty face, but pale and trembling too, Emma regarded him \nin silence.  She neither spoke nor moved, but gazed upon him as \nthough she would look into his heart.\n\n'I throw off,' said Mr Chester, 'the restraint which natural \naffection would impose on some men, and reject all bonds but those \nof truth and duty.  Miss Haredale, you are deceived; you are \ndeceived by your unworthy lover, and my unworthy son.'\n\nStill she looked at him steadily, and still said not one word.\n\n'I have ever opposed his professions of love for you; you will do \nme the justice, dear Miss Haredale, to remember that.  Your uncle \nand myself were enemies in early life, and if I had sought \nretaliation, I might have found it here.  But as we grow older, we \ngrow wiser--bitter, I would fain hope--and from the first, I have \nopposed him in this attempt.  I foresaw the end, and would have \nspared you, if I could.'\n\n'Speak plainly, sir,' she faltered.  'You deceive me, or are \ndeceived yourself.  I do not believe you--I cannot--I should not.'\n\n'First,' said Mr Chester, soothingly, 'for there may be in your \nmind some latent angry feeling to which I would not appeal, pray \ntake this letter.  It reached my hands by chance, and by mistake, \nand should have accounted to you (as I am told) for my son's not \nanswering some other note of yours.  God forbid, Miss Haredale,' \nsaid the good gentleman, with great emotion, 'that there should be \nin your gentle breast one causeless ground of quarrel with him.  \nYou should know, and you will see, that he was in no fault here.'\n\nThere appeared something so very candid, so scrupulously \nhonourable, so very truthful and just in this course something \nwhich rendered the upright person who resorted to it, so worthy of \nbelief--that Emma's heart, for the first time, sunk within her.  \nShe turned away and burst into tears.\n\n'I would,' said Mr Chester, leaning over her, and speaking in mild \nand quite venerable accents; 'I would, dear girl, it were my task \nto banish, not increase, those tokens of your grief.  My son, my \nerring son,--I will not call him deliberately criminal in this, for \nmen so young, who have been inconstant twice or thrice before, act \nwithout reflection, almost without a knowledge of the wrong they \ndo,--will break his plighted faith to you; has broken it even now.  \nShall I stop here, and having given you this warning, leave it to \nbe fulfilled; or shall I go on?'\n\n'You will go on, sir,' she answered, 'and speak more plainly yet, \nin justice both to him and me.'\n\n'My dear girl,' said Mr Chester, bending over her more \naffectionately still; 'whom I would call my daughter, but the Fates \nforbid, Edward seeks to break with you upon a false and most \nunwarrantable pretence.  I have it on his own showing; in his own \nhand.  Forgive me, if I have had a watch upon his conduct; I am his \nfather; I had a regard for your peace and his honour, and no better \nresource was left me.  There lies on his desk at this present \nmoment, ready for transmission to you, a letter, in which he tells \nyou that our poverty--our poverty; his and mine, Miss Haredale--\nforbids him to pursue his claim upon your hand; in which he offers, \nvoluntarily proposes, to free you from your pledge; and talks \nmagnanimously (men do so, very commonly, in such cases) of being in \ntime more worthy of your regard--and so forth.  A letter, to be \nplain, in which he not only jilts you--pardon the word; I would \nsummon to your aid your pride and dignity--not only jilts you, I \nfear, in favour of the object whose slighting treatment first \ninspired his brief passion for yourself and gave it birth in \nwounded vanity, but affects to make a merit and a virtue of the \nact.'\n\nShe glanced proudly at him once more, as by an involuntary impulse, \nand with a swelling breast rejoined, 'If what you say be true, he \ntakes much needless trouble, sir, to compass his design.  He's very \ntender of my peace of mind.  I quite thank him.'\n\n'The truth of what I tell you, dear young lady,' he replied, 'you \nwill test by the receipt or non-receipt of the letter of which I \nspeak.  Haredale, my dear fellow, I am delighted to see you, \nalthough we meet under singular circumstances, and upon a \nmelancholy occasion.  I hope you are very well.'\n\nAt these words the young lady raised her eyes, which were filled \nwith tears; and seeing that her uncle indeed stood before them, and \nbeing quite unequal to the trial of hearing or of speaking one word \nmore, hurriedly withdrew, and left them.  They stood looking at \neach other, and at her retreating figure, and for a long time \nneither of them spoke.\n\n'What does this mean?  Explain it,' said Mr Haredale at length.  \n'Why are you here, and why with her?'\n\n'My dear friend,' rejoined the other, resuming his accustomed \nmanner with infinite readiness, and throwing himself upon the bench \nwith a weary air, 'you told me not very long ago, at that \ndelightful old tavern of which you are the esteemed proprietor (and \na most charming establishment it is for persons of rural pursuits \nand in robust health, who are not liable to take cold), that I had \nthe head and heart of an evil spirit in all matters of deception.  \nI thought at the time; I really did think; you flattered me.  But \nnow I begin to wonder at your discernment, and vanity apart, do \nhonestly believe you spoke the truth.  Did you ever counterfeit \nextreme ingenuousness and honest indignation?  My dear fellow, you \nhave no conception, if you never did, how faint the effort makes \none.'\n\nMr Haredale surveyed him with a look of cold contempt.  'You may \nevade an explanation, I know,' he said, folding his arms.  'But I \nmust have it.  I can wait.'\n\n'Not at all.  Not at all, my good fellow.  You shall not wait a \nmoment,' returned his friend, as he lazily crossed his legs.  'The \nsimplest thing in the world.  It lies in a nutshell.  Ned has \nwritten her a letter--a boyish, honest, sentimental composition, \nwhich remains as yet in his desk, because he hasn't had the heart \nto send it.  I have taken a liberty, for which my parental \naffection and anxiety are a sufficient excuse, and possessed \nmyself of the contents.  I have described them to your niece (a \nmost enchanting person, Haredale; quite an angelic creature), with \na little colouring and description adapted to our purpose.  It's \ndone.  You may be quite easy.  It's all over.  Deprived of their \nadherents and mediators; her pride and jealousy roused to the \nutmost; with nobody to undeceive her, and you to confirm me; you \nwill find that their intercourse will close with her answer.  If \nshe receives Ned's letter by to-morrow noon, you may date their \nparting from to-morrow night.  No thanks, I beg; you owe me none.  \nI have acted for myself; and if I have forwarded our compact with \nall the ardour even you could have desired, I have done so \nselfishly, indeed.'\n\n'I curse the compact, as you call it, with my whole heart and \nsoul,' returned the other.  'It was made in an evil hour.  I have \nbound myself to a lie; I have leagued myself with you; and though I \ndid so with a righteous motive, and though it cost me such an \neffort as haply few men know, I hate and despise myself for the \ndeed.'\n\n'You are very warm,' said Mr Chester with a languid smile.\n\n'I AM warm.  I am maddened by your coldness.  'Death, Chester, if \nyour blood ran warmer in your veins, and there were no restraints \nupon me, such as those that hold and drag me back--well; it is \ndone; you tell me so, and on such a point I may believe you.  When \nI am most remorseful for this treachery, I will think of you and \nyour marriage, and try to justify myself in such remembrances, for \nhaving torn asunder Emma and your son, at any cost.  Our bond is \ncancelled now, and we may part.'\n\nMr Chester kissed his hand gracefully; and with the same tranquil \nface he had preserved throughout--even when he had seen his \ncompanion so tortured and transported by his passion that his whole \nframe was shaken--lay in his lounging posture on the seat and \nwatched him as he walked away.\n\n'My scapegoat and my drudge at school,' he said, raising his head \nto look after him; 'my friend of later days, who could not keep his \nmistress when he had won her, and threw me in her way to carry off \nthe prize; I triumph in the present and the past.  Bark on, ill-\nfavoured, ill-conditioned cur; fortune has ever been with me--I \nlike to hear you.'\n\nThe spot where they had met, was in an avenue of trees.  Mr \nHaredale not passing out on either hand, had walked straight on.  \nHe chanced to turn his head when at some considerable distance, and \nseeing that his late companion had by that time risen and was \nlooking after him, stood still as though he half expected him to \nfollow and waited for his coming up.\n\n'It MAY come to that one day, but not yet,' said Mr Chester, \nwaving his hand, as though they were the best of friends, and \nturning away.  'Not yet, Haredale.  Life is pleasant enough to me; \ndull and full of heaviness to you.  No.  To cross swords with such \na man--to indulge his humour unless upon extremity--would be weak \nindeed.'\n\nFor all that, he drew his sword as he walked along, and in an \nabsent humour ran his eye from hilt to point full twenty times.  \nBut thoughtfulness begets wrinkles; remembering this, he soon put \nit up, smoothed his contracted brow, hummed a gay tune with greater \ngaiety of manner, and was his unruffled self again.\n\n\n\nChapter 30\n\n\nA homely proverb recognises the existence of a troublesome class of \npersons who, having an inch conceded them, will take an ell.  Not \nto quote the illustrious examples of those heroic scourges of \nmankind, whose amiable path in life has been from birth to death \nthrough blood, and fire, and ruin, and who would seem to have \nexisted for no better purpose than to teach mankind that as the \nabsence of pain is pleasure, so the earth, purged of their \npresence, may be deemed a blessed place--not to quote such mighty \ninstances, it will be sufficient to refer to old John Willet.\n\nOld John having long encroached a good standard inch, full measure, \non the liberty of Joe, and having snipped off a Flemish ell in the \nmatter of the parole, grew so despotic and so great, that his \nthirst for conquest knew no bounds.  The more young Joe submitted, \nthe more absolute old John became.  The ell soon faded into \nnothing.  Yards, furlongs, miles arose; and on went old John in the \npleasantest manner possible, trimming off an exuberance in this \nplace, shearing away some liberty of speech or action in that, and \nconducting himself in his small way with as much high mightiness \nand majesty, as the most glorious tyrant that ever had his statue \nreared in the public ways, of ancient or of modern times.\n\nAs great men are urged on to the abuse of power (when they need \nurging, which is not often), by their flatterers and dependents, so \nold John was impelled to these exercises of authority by the \napplause and admiration of his Maypole cronies, who, in the \nintervals of their nightly pipes and pots, would shake their heads \nand say that Mr Willet was a father of the good old English sort; \nthat there were no new-fangled notions or modern ways in him; that \nhe put them in mind of what their fathers were when they were boys; \nthat there was no mistake about him; that it would be well for the \ncountry if there were more like him, and more was the pity that \nthere were not; with many other original remarks of that nature.  \nThen they would condescendingly give Joe to understand that it was \nall for his good, and he would be thankful for it one day; and in \nparticular, Mr Cobb would acquaint him, that when he was his age, \nhis father thought no more of giving him a parental kick, or a box \non the ears, or a cuff on the head, or some little admonition of \nthat sort, than he did of any other ordinary duty of life; and he \nwould further remark, with looks of great significance, that but \nfor this judicious bringing up, he might have never been the man he \nwas at that present speaking; which was probable enough, as he was, \nbeyond all question, the dullest dog of the party.  In short, \nbetween old John and old John's friends, there never was an \nunfortunate young fellow so bullied, badgered, worried, fretted, \nand brow-beaten; so constantly beset, or made so tired of his life, \nas poor Joe Willet.\n\nThis had come to be the recognised and established state of things; \nbut as John was very anxious to flourish his supremacy before the \neyes of Mr Chester, he did that day exceed himself, and did so \ngoad and chafe his son and heir, that but for Joe's having made a \nsolemn vow to keep his hands in his pockets when they were not \notherwise engaged, it is impossible to say what he might have done \nwith them.  But the longest day has an end, and at length Mr \nChester came downstairs to mount his horse, which was ready at the \ndoor.\n\nAs old John was not in the way at the moment, Joe, who was sitting \nin the bar ruminating on his dismal fate and the manifold \nperfections of Dolly Varden, ran out to hold the guest's stirrup \nand assist him to mount.  Mr Chester was scarcely in the saddle, \nand Joe was in the very act of making him a graceful bow, when old \nJohn came diving out of the porch, and collared him.\n\n'None of that, sir,' said John, 'none of that, sir.  No breaking of \npatroles.  How dare you come out of the door, sir, without leave?  \nYou're trying to get away, sir, are you, and to make a traitor of \nyourself again?  What do you mean, sir?'\n\n'Let me go, father,' said Joe, imploringly, as he marked the smile \nupon their visitor's face, and observed the pleasure his disgrace \nafforded him.  'This is too bad.  Who wants to get away?'\n\n'Who wants to get away!' cried John, shaking him.  'Why you do, \nsir, you do.  You're the boy, sir,' added John, collaring with one \nband, and aiding the effect of a farewell bow to the visitor with \nthe other, 'that wants to sneak into houses, and stir up \ndifferences between noble gentlemen and their sons, are you, eh?  \nHold your tongue, sir.'\n\nJoe made no effort to reply.  It was the crowning circumstance of \nhis degradation.  He extricated himself from his father's grasp, \ndarted an angry look at the departing guest, and returned into the \nhouse.\n\n'But for her,' thought Joe, as he threw his arms upon a table in \nthe common room, and laid his head upon them, 'but for Dolly, who I \ncouldn't bear should think me the rascal they would make me out to \nbe if I ran away, this house and I should part to-night.'\n\nIt being evening by this time, Solomon Daisy, Tom Cobb, and Long \nParkes, were all in the common room too, and had from the window \nbeen witnesses of what had just occurred.  Mr Willet joining them \nsoon afterwards, received the compliments of the company with great \ncomposure, and lighting his pipe, sat down among them.\n\n'We'll see, gentlemen,' said John, after a long pause, 'who's the \nmaster of this house, and who isn't.  We'll see whether boys are to \ngovern men, or men are to govern boys.'\n\n'And quite right too,' assented Solomon Daisy with some approving \nnods; 'quite right, Johnny.  Very good, Johnny.  Well said, Mr \nWillet.  Brayvo, sir.'\n\nJohn slowly brought his eyes to bear upon him, looked at him for a \nlong time, and finally made answer, to the unspeakable \nconsternation of his hearers, 'When I want encouragement from you, \nsir, I'll ask you for it.  You let me alone, sir.  I can get on \nwithout you, I hope.  Don't you tackle me, sir, if you please.'\n\n'Don't take it ill, Johnny; I didn't mean any harm,' pleaded the \nlittle man.\n\n'Very good, sir,' said John, more than usually obstinate after his \nlate success.  'Never mind, sir.  I can stand pretty firm of \nmyself, sir, I believe, without being shored up by you.'  And \nhaving given utterance to this retort, Mr Willet fixed his eyes \nupon the boiler, and fell into a kind of tobacco-trance.\n\nThe spirits of the company being somewhat damped by this \nembarrassing line of conduct on the part of their host, nothing \nmore was said for a long time; but at length Mr Cobb took upon \nhimself to remark, as he rose to knock the ashes out of his pipe, \nthat he hoped Joe would thenceforth learn to obey his father in all \nthings; that he had found, that day, he was not one of the sort of \nmen who were to be trifled with; and that he would recommend him, \npoetically speaking, to mind his eye for the future.\n\n'I'd recommend you, in return,' said Joe, looking up with a flushed \nface, 'not to talk to me.'\n\n'Hold your tongue, sir,' cried Mr Willet, suddenly rousing himself, \nand turning round.\n\n'I won't, father,' cried Joe, smiting the table with his fist, so \nthat the jugs and glasses rung again; 'these things are hard enough \nto bear from you; from anybody else I never will endure them any \nmore.  Therefore I say, Mr Cobb, don't talk to me.'\n\n'Why, who are you,' said Mr Cobb, sneeringly, 'that you're not to \nbe talked to, eh, Joe?'\n\nTo which Joe returned no answer, but with a very ominous shake of \nthe head, resumed his old position, which he would have peacefully \npreserved until the house shut up at night, but that Mr Cobb, \nstimulated by the wonder of the company at the young man's \npresumption, retorted with sundry taunts, which proved too much for \nflesh and blood to bear.  Crowding into one moment the vexation and \nthe wrath of years, Joe started up, overturned the table, fell upon \nhis long enemy, pummelled him with all his might and main, and \nfinished by driving him with surprising swiftness against a heap of \nspittoons in one corner; plunging into which, head foremost, with a \ntremendous crash, he lay at full length among the ruins, stunned \nand motionless.  Then, without waiting to receive the compliments \nof the bystanders on the victory be had won, he retreated to his \nown bedchamber, and considering himself in a state of siege, piled \nall the portable furniture against the door by way of barricade.\n\n'I have done it now,' said Joe, as he sat down upon his bedstead \nand wiped his heated face.  'I knew it would come at last.  The \nMaypole and I must part company.  I'm a roving vagabond--she hates \nme for evermore--it's all over!'\n\n\n\nChapter 31\n\n\nPondering on his unhappy lot, Joe sat and listened for a long \ntime, expecting every moment to hear their creaking footsteps on \nthe stairs, or to be greeted by his worthy father with a summons to \ncapitulate unconditionally, and deliver himself up straightway.  \nBut neither voice nor footstep came; and though some distant \nechoes, as of closing doors and people hurrying in and out of \nrooms, resounding from time to time through the great passages, and \npenetrating to his remote seclusion, gave note of unusual commotion \ndownstairs, no nearer sound disturbed his place of retreat, which \nseemed the quieter for these far-off noises, and was as dull and \nfull of gloom as any hermit's cell.\n\nIt came on darker and darker.  The old-fashioned furniture of the \nchamber, which was a kind of hospital for all the invalided \nmovables in the house, grew indistinct and shadowy in its many \nshapes; chairs and tables, which by day were as honest cripples as \nneed be, assumed a doubtful and mysterious character; and one old \nleprous screen of faded India leather and gold binding, which had \nkept out many a cold breath of air in days of yore and shut in many \na jolly face, frowned on him with a spectral aspect, and stood at \nfull height in its allotted corner, like some gaunt ghost who \nwaited to be questioned.  A portrait opposite the window--a queer, \nold grey-eyed general, in an oval frame--seemed to wink and doze as \nthe light decayed, and at length, when the last faint glimmering \nspeck of day went out, to shut its eyes in good earnest, and fall \nsound asleep.  There was such a hush and mystery about everything, \nthat Joe could not help following its example; and so went off into \na slumber likewise, and dreamed of Dolly, till the clock of \nChigwell church struck two.\n\nStill nobody came.  The distant noises in the house had ceased, and \nout of doors all was quiet; save for the occasional barking of some \ndeep-mouthed dog, and the shaking of the branches by the night \nwind.  He gazed mournfully out of window at each well-known object \nas it lay sleeping in the dim light of the moon; and creeping back \nto his former seat, thought about the late uproar, until, with long \nthinking of, it seemed to have occurred a month ago.  Thus, between \ndozing, and thinking, and walking to the window and looking out, \nthe night wore away; the grim old screen, and the kindred chairs \nand tables, began slowly to reveal themselves in their accustomed \nforms; the grey-eyed general seemed to wink and yawn and rouse \nhimself; and at last he was broad awake again, and very \nuncomfortable and cold and haggard he looked, in the dull grey \nlight of morning.\n\nThe sun had begun to peep above the forest trees, and already flung \nacross the curling mist bright bars of gold, when Joe dropped from \nhis window on the ground below, a little bundle and his trusty \nstick, and prepared to descend himself.\n\nIt was not a very difficult task; for there were so many \nprojections and gable ends in the way, that they formed a series of \nclumsy steps, with no greater obstacle than a jump of some few feet \nat last.  Joe, with his stick and bundle on his shoulder, quickly \nstood on the firm earth, and looked up at the old Maypole, it might \nbe for the last time.\n\nHe didn't apostrophise it, for he was no great scholar.  He didn't \ncurse it, for he had little ill-will to give to anything on earth.  \nHe felt more affectionate and kind to it than ever he had done in \nall his life before, so said with all his heart, 'God bless you!' \nas a parting wish, and turned away.\n\nHe walked along at a brisk pace, big with great thoughts of going \nfor a soldier and dying in some foreign country where it was very \nhot and sandy, and leaving God knows what unheard-of wealth in \nprize-money to Dolly, who would be very much affected when she came \nto know of it; and full of such youthful visions, which were \nsometimes sanguine and sometimes melancholy, but always had her for \ntheir main point and centre, pushed on vigorously until the noise \nof London sounded in his ears, and the Black Lion hove in sight.\n\nIt was only eight o'clock then, and very much astonished the Black \nLion was, to see him come walking in with dust upon his feet at \nthat early hour, with no grey mare to bear him company.  But as he \nordered breakfast to be got ready with all speed, and on its being \nset before him gave indisputable tokens of a hearty appetite, the \nLion received him, as usual, with a hospitable welcome; and treated \nhim with those marks of distinction, which, as a regular customer, \nand one within the freemasonry of the trade, he had a right to \nclaim.\n\nThis Lion or landlord,--for he was called both man and beast, by \nreason of his having instructed the artist who painted his sign, to \nconvey into the features of the lordly brute whose effigy it bore, \nas near a counterpart of his own face as his skill could compass \nand devise,--was a gentleman almost as quick of apprehension, and \nof almost as subtle a wit, as the mighty John himself.  But the \ndifference between them lay in this: that whereas Mr Willet's \nextreme sagacity and acuteness were the efforts of unassisted \nnature, the Lion stood indebted, in no small amount, to beer; of \nwhich he swigged such copious draughts, that most of his faculties \nwere utterly drowned and washed away, except the one great faculty \nof sleep, which he retained in surprising perfection.  The creaking \nLion over the house-door was, therefore, to say the truth, rather a \ndrowsy, tame, and feeble lion; and as these social representatives \nof a savage class are usually of a conventional character (being \ndepicted, for the most part, in impossible attitudes and of \nunearthly colours), he was frequently supposed by the more ignorant \nand uninformed among the neighbours, to be the veritable portrait \nof the host as he appeared on the occasion of some great funeral \nceremony or public mourning.\n\n'What noisy fellow is that in the next room?' said Joe, when he had \ndisposed of his breakfast, and had washed and brushed himself.\n\n'A recruiting serjeant,' replied the Lion.\n\nJoe started involuntarily.  Here was the very thing he had been \ndreaming of, all the way along.\n\n'And I wish,' said the Lion, 'he was anywhere else but here.  The \nparty make noise enough, but don't call for much.  There's great \ncry there, Mr Willet, but very little wool.  Your father wouldn't \nlike 'em, I know.'\n\nPerhaps not much under any circumstances.  Perhaps if he could have \nknown what was passing at that moment in Joe's mind, he would have \nliked them still less.\n\n'Is he recruiting for a--for a fine regiment?' said Joe, glancing \nat a little round mirror that hung in the bar.\n\n'I believe he is,' replied the host.  'It's much the same thing, \nwhatever regiment he's recruiting for.  I'm told there an't a deal \nof difference between a fine man and another one, when they're shot \nthrough and through.'\n\n'They're not all shot,' said Joe.\n\n'No,' the Lion answered, 'not all.  Those that are--supposing it's \ndone easy--are the best off in my opinion.'\n\n'Ah!' retorted Joe, 'but you don't care for glory.'\n\n'For what?' said the Lion.\n\n'Glory.'\n\n'No,' returned the Lion, with supreme indifference.  'I don't.  \nYou're right in that, Mr Willet.  When Glory comes here, and calls \nfor anything to drink and changes a guinea to pay for it, I'll give \nit him for nothing.  It's my belief, sir, that the Glory's arms \nwouldn't do a very strong business.'\n\nThese remarks were not at all comforting.  Joe walked out, stopped \nat the door of the next room, and listened.  The serjeant was \ndescribing a military life.  It was all drinking, he said, except \nthat there were frequent intervals of eating and love-making.  A \nbattle was the finest thing in the world--when your side won it--\nand Englishmen always did that.  'Supposing you should be killed, \nsir?' said a timid voice in one corner.  'Well, sir, supposing you \nshould be,' said the serjeant, 'what then?  Your country loves you, \nsir; his Majesty King George the Third loves you; your memory is \nhonoured, revered, respected; everybody's fond of you, and grateful \nto you; your name's wrote down at full length in a book in the War \nOffice.  Damme, gentlemen, we must all die some time, or another, \neh?'\n\nThe voice coughed, and said no more.\n\nJoe walked into the room.  A group of half-a-dozen fellows had \ngathered together in the taproom, and were listening with greedy \nears.  One of them, a carter in a smockfrock, seemed wavering and \ndisposed to enlist.  The rest, who were by no means disposed, \nstrongly urged him to do so (according to the custom of mankind), \nbacked the serjeant's arguments, and grinned among themselves.  'I \nsay nothing, boys,' said the serjeant, who sat a little apart, \ndrinking his liquor.  'For lads of spirit'--here he cast an eye on \nJoe--'this is the time.  I don't want to inveigle you.  The king's \nnot come to that, I hope.  Brisk young blood is what we want; not \nmilk and water.  We won't take five men out of six.  We want top-\nsawyers, we do.  I'm not a-going to tell tales out of school, but, \ndamme, if every gentleman's son that carries arms in our corps, \nthrough being under a cloud and having little differences with his \nrelations, was counted up'--here his eye fell on Joe again, and so \ngood-naturedly, that Joe beckoned him out.  He came directly.\n\n'You're a gentleman, by G--!' was his first remark, as he slapped \nhim on the back.  'You're a gentleman in disguise.  So am I.  Let's \nswear a friendship.'\n\nJoe didn't exactly do that, but he shook hands with him, and \nthanked him for his good opinion.\n\n'You want to serve,' said his new friend.  'You shall.  You were \nmade for it.  You're one of us by nature.  What'll you take to \ndrink?'\n\n'Nothing just now,' replied Joe, smiling faintly.  'I haven't quite \nmade up my mind.'\n\n'A mettlesome fellow like you, and not made up his mind!' cried \nthe serjeant.  'Here--let me give the bell a pull, and you'll make \nup your mind in half a minute, I know.'\n\n'You're right so far'--answered Joe, 'for if you pull the bell \nhere, where I'm known, there'll be an end of my soldiering \ninclinations in no time.  Look in my face.  You see me, do you?'\n\n'I do,' replied the serjeant with an oath, 'and a finer young \nfellow or one better qualified to serve his king and country, I \nnever set my--' he used an adjective in this place--'eyes on.\n\n'Thank you,' said Joe, 'I didn't ask you for want of a compliment, \nbut thank you all the same.  Do I look like a sneaking fellow or a \nliar?'\n\nThe serjeant rejoined with many choice asseverations that he \ndidn't; and that if his (the serjeant's) own father were to say he \ndid, he would run the old gentleman through the body cheerfully, \nand consider it a meritorious action.\n\nJoe expressed his obligations, and continued, 'You can trust me \nthen, and credit what I say.  I believe I shall enlist in your \nregiment to-night.  The reason I don't do so now is, because I \ndon't want until to-night, to do what I can't recall.  Where shall \nI find you, this evening?'\n\nHis friend replied with some unwillingness, and after much \nineffectual entreaty having for its object the immediate settlement \nof the business, that his quarters would be at the Crooked Billet \nin Tower Street; where he would be found waking until midnight, and \nsleeping until breakfast time to-morrow.\n\n'And if I do come--which it's a million to one, I shall--when will \nyou take me out of London?' demanded Joe.\n\n'To-morrow morning, at half after eight o'clock,' replied the \nserjeant.  'You'll go abroad--a country where it's all sunshine and \nplunder--the finest climate in the world.'\n\n'To go abroad,' said Joe, shaking hands with him, 'is the very \nthing I want.  You may expect me.'\n\n'You're the kind of lad for us,' cried the serjeant, holding Joe's \nhand in his, in the excess of his admiration.  'You're the boy to \npush your fortune.  I don't say it because I bear you any envy, or \nwould take away from the credit of the rise you'll make, but if I \nhad been bred and taught like you, I'd have been a colonel by this \ntime.'\n\n'Tush, man!' said Joe, 'I'm not so young as that.  Needs must when \nthe devil drives; and the devil that drives me is an empty pocket \nand an unhappy home.  For the present, good-bye.'\n\n'For king and country!' cried the serjeant, flourishing his cap.\n\n'For bread and meat!' cried Joe, snapping his fingers.  And so they \nparted.\n\nHe had very little money in his pocket; so little indeed, that \nafter paying for his breakfast (which he was too honest and perhaps \ntoo proud to score up to his father's charge) he had but a penny \nleft.  He had courage, notwithstanding, to resist all the \naffectionate importunities of the serjeant, who waylaid him at \nthe door with many protestations of eternal friendship, and did in \nparticular request that he would do him the favour to accept of \nonly one shilling as a temporary accommodation.  Rejecting his \noffers both of cash and credit, Joe walked away with stick and \nbundle as before, bent upon getting through the day as he best \ncould, and going down to the locksmith's in the dusk of the \nevening; for it should go hard, he had resolved, but he would have \na parting word with charming Dolly Varden.\n\nHe went out by Islington and so on to Highgate, and sat on many \nstones and gates, but there were no voices in the bells to bid him \nturn.  Since the time of noble Whittington, fair flower of \nmerchants, bells have come to have less sympathy with humankind.  \nThey only ring for money and on state occasions.  Wanderers have \nincreased in number; ships leave the Thames for distant regions, \ncarrying from stem to stern no other cargo; the bells are silent; \nthey ring out no entreaties or regrets; they are used to it and \nhave grown worldly.\n\nJoe bought a roll, and reduced his purse to the condition (with a \ndifference) of that celebrated purse of Fortunatus, which, \nwhatever were its favoured owner's necessities, had one unvarying \namount in it.  In these real times, when all the Fairies are dead \nand buried, there are still a great many purses which possess that \nquality.  The sum-total they contain is expressed in arithmetic by \na circle, and whether it be added to or multiplied by its own \namount, the result of the problem is more easily stated than any \nknown in figures.\n\nEvening drew on at last.  With the desolate and solitary feeling of \none who had no home or shelter, and was alone utterly in the world \nfor the first time, he bent his steps towards the locksmith's \nhouse.  He had delayed till now, knowing that Mrs Varden sometimes \nwent out alone, or with Miggs for her sole attendant, to lectures \nin the evening; and devoutly hoping that this might be one of her \nnights of moral culture.\n\nHe had walked up and down before the house, on the opposite side of \nthe way, two or three times, when as he returned to it again, he \ncaught a glimpse of a fluttering skirt at the door.  It was \nDolly's--to whom else could it belong? no dress but hers had such a \nflow as that.  He plucked up his spirits, and followed it into the \nworkshop of the Golden Key.\n\nHis darkening the door caused her to look round.  Oh that face!  \n'If it hadn't been for that,' thought Joe, 'I should never have \nwalked into poor Tom Cobb.  She's twenty times handsomer than ever.  \nShe might marry a Lord!'\n\nHe didn't say this.  He only thought it--perhaps looked it also.  \nDolly was glad to see him, and was SO sorry her father and mother \nwere away from home.  Joe begged she wouldn't mention it on any \naccount.\n\nDolly hesitated to lead the way into the parlour, for there it was \nnearly dark; at the same time she hesitated to stand talking in the \nworkshop, which was yet light and open to the street.  They had got \nby some means, too, before the little forge; and Joe having her \nhand in his (which he had no right to have, for Dolly only gave it \nhim to shake), it was so like standing before some homely altar \nbeing married, that it was the most embarrassing state of things in \nthe world.\n\n'I have come,' said Joe, 'to say good-bye--to say good-bye for I \ndon't know how many years; perhaps for ever.  I am going abroad.'\n\nNow this was exactly what he should not have said.  Here he was, \ntalking like a gentleman at large who was free to come and go and \nroam about the world at pleasure, when that gallant coachmaker had \nvowed but the night before that Miss Varden held him bound in \nadamantine chains; and had positively stated in so many words that \nshe was killing him by inches, and that in a fortnight more or \nthereabouts he expected to make a decent end and leave the business \nto his mother.\n\nDolly released her hand and said 'Indeed!'  She remarked in the \nsame breath that it was a fine night, and in short, betrayed no \nmore emotion than the forge itself.\n\n'I couldn't go,' said Joe, 'without coming to see you.  I hadn't \nthe heart to.'\n\nDolly was more sorry than she could tell, that he should have taken \nso much trouble.  It was such a long way, and he must have such a \ndeal to do.  And how WAS Mr Willet--that dear old gentleman--\n\n'Is this all you say!' cried Joe.\n\nAll!  Good gracious, what did the man expect!  She was obliged to \ntake her apron in her hand and run her eyes along the hem from \ncorner to corner, to keep herself from laughing in his face;--not \nbecause his gaze confused her--not at all.\n\nJoe had small experience in love affairs, and had no notion how \ndifferent young ladies are at different times; he had expected to \ntake Dolly up again at the very point where he had left her after \nthat delicious evening ride, and was no more prepared for such an \nalteration than to see the sun and moon change places.  He had \nbuoyed himself up all day with an indistinct idea that she would \ncertainly say 'Don't go,' or 'Don't leave us,' or 'Why do you go?' \nor 'Why do you leave us?' or would give him some little \nencouragement of that sort; he had even entertained the possibility \nof her bursting into tears, of her throwing herself into his arms, \nof her falling down in a fainting fit without previous word or \nsign; but any approach to such a line of conduct as this, had been \nso far from his thoughts that he could only look at her in silent \nwonder.\n\nDolly in the meanwhile, turned to the corners of her apron, and \nmeasured the sides, and smoothed out the wrinkles, and was as \nsilent as he.  At last after a long pause, Joe said good-bye.  \n'Good-bye'--said Dolly--with as pleasant a smile as if he were \ngoing into the next street, and were coming back to supper; 'good-\nbye.'\n\n'Come,' said Joe, putting out both hands, 'Dolly, dear Dolly, don't \nlet us part like this.  I love you dearly, with all my heart and \nsoul; with as much truth and earnestness as ever man loved woman in \nthis world, I do believe.  I am a poor fellow, as you know--poorer \nnow than ever, for I have fled from home, not being able to bear it \nany longer, and must fight my own way without help.  You are \nbeautiful, admired, are loved by everybody, are well off and happy; \nand may you ever be so!  Heaven forbid I should ever make you \notherwise; but give me a word of comfort.  Say something kind to \nme.  I have no right to expect it of you, I know, but I ask it \nbecause I love you, and shall treasure the slightest word from you \nall through my life.  Dolly, dearest, have you nothing to say to \nme?'\n\nNo.  Nothing.  Dolly was a coquette by nature, and a spoilt child.  \nShe had no notion of being carried by storm in this way.  The \ncoachmaker would have been dissolved in tears, and would have knelt \ndown, and called himself names, and clasped his hands, and beat his \nbreast, and tugged wildly at his cravat, and done all kinds of \npoetry.  Joe had no business to be going abroad.  He had no right \nto be able to do it.  If he was in adamantine chains, he couldn't.\n\n'I have said good-bye,' said Dolly, 'twice.  Take your arm away \ndirectly, Mr Joseph, or I'll call Miggs.'\n\n'I'll not reproach you,' answered Joe, 'it's my fault, no doubt.  I \nhave thought sometimes that you didn't quite despise me, but I was \na fool to think so.  Every one must, who has seen the life I have \nled--you most of all.  God bless you!'\n\nHe was gone, actually gone.  Dolly waited a little while, thinking \nhe would return, peeped out at the door, looked up the street and \ndown as well as the increasing darkness would allow, came in again, \nwaited a little longer, went upstairs humming a tune, bolted \nherself in, laid her head down on her bed, and cried as if her \nheart would break.  And yet such natures are made up of so many \ncontradictions, that if Joe Willet had come back that night, next \nday, next week, next month, the odds are a hundred to one she would \nhave treated him in the very same manner, and have wept for it \nafterwards with the very same distress.\n\nShe had no sooner left the workshop than there cautiously peered \nout from behind the chimney of the forge, a face which had already \nemerged from the same concealment twice or thrice, unseen, and \nwhich, after satisfying itself that it was now alone, was followed \nby a leg, a shoulder, and so on by degrees, until the form of Mr \nTappertit stood confessed, with a brown-paper cap stuck negligently \non one side of its head, and its arms very much a-kimbo.\n\n'Have my ears deceived me,' said the 'prentice, 'or do I dream! am \nI to thank thee, Fortun', or to cus thee--which?'\n\nHe gravely descended from his elevation, took down his piece of \nlooking-glass, planted it against the wall upon the usual bench, \ntwisted his head round, and looked closely at his legs.\n\n'If they're a dream,' said Sim, 'let sculptures have such wisions, \nand chisel 'em out when they wake.  This is reality.  Sleep has no \nsuch limbs as them.  Tremble, Willet, and despair.  She's mine!  \nShe's mine!'\n\nWith these triumphant expressions, he seized a hammer and dealt a \nheavy blow at a vice, which in his mind's eye represented the \nsconce or head of Joseph Willet.  That done, he burst into a peal \nof laughter which startled Miss Miggs even in her distant kitchen, \nand dipping his head into a bowl of water, had recourse to a jack-\ntowel inside the closet door, which served the double purpose of \nsmothering his feelings and drying his face.\n\nJoe, disconsolate and down-hearted, but full of courage too, on \nleaving the locksmith's house made the best of his way to the \nCrooked Billet, and there inquired for his friend the serjeant, \nwho, expecting no man less, received him with open arms.  In the \ncourse of five minutes after his arrival at that house of \nentertainment, he was enrolled among the gallant defenders of his \nnative land; and within half an hour, was regaled with a steaming \nsupper of boiled tripe and onions, prepared, as his friend assured \nhim more than once, at the express command of his most Sacred \nMajesty the King.  To this meal, which tasted very savoury after \nhis long fasting, he did ample justice; and when he had followed it \nup, or down, with a variety of loyal and patriotic toasts, he was \nconducted to a straw mattress in a loft over the stable, and \nlocked in there for the night.\n\nThe next morning, he found that the obliging care of his martial \nfriend had decorated his hat with sundry particoloured streamers, \nwhich made a very lively appearance; and in company with that \nofficer, and three other military gentlemen newly enrolled, who \nwere under a cloud so dense that it only left three shoes, a boot, \nand a coat and a half visible among them, repaired to the \nriverside.  Here they were joined by a corporal and four more \nheroes, of whom two were drunk and daring, and two sober and \npenitent, but each of whom, like Joe, had his dusty stick and \nbundle.  The party embarked in a passage-boat bound for Gravesend, \nwhence they were to proceed on foot to Chatham; the wind was in \ntheir favour, and they soon left London behind them, a mere dark \nmist--a giant phantom in the air.\n\n\n\nChapter 32\n\n\nMisfortunes, saith the adage, never come singly.  There is little \ndoubt that troubles are exceedingly gregarious in their nature, and \nflying in flocks, are apt to perch capriciously; crowding on the \nheads of some poor wights until there is not an inch of room left \non their unlucky crowns, and taking no more notice of others who \noffer as good resting-places for the soles of their feet, than if \nthey had no existence.  It may have happened that a flight of \ntroubles brooding over London, and looking out for Joseph Willet, \nwhom they couldn't find, darted down haphazard on the first young \nman that caught their fancy, and settled on him instead.  However \nthis may be, certain it is that on the very day of Joe's departure \nthey swarmed about the ears of Edward Chester, and did so buzz and \nflap their wings, and persecute him, that he was most profoundly \nwretched.\n\nIt was evening, and just eight o'clock, when he and his father, \nhaving wine and dessert set before them, were left to themselves \nfor the first time that day.  They had dined together, but a third \nperson had been present during the meal, and until they met at \ntable they had not seen each other since the previous night.\n\nEdward was reserved and silent.  Mr Chester was more than usually \ngay; but not caring, as it seemed, to open a conversation with one \nwhose humour was so different, he vented the lightness of his \nspirit in smiles and sparkling looks, and made no effort to awaken \nhis attention.  So they remained for some time: the father lying on \na sofa with his accustomed air of graceful negligence; the son \nseated opposite to him with downcast eyes, busied, it was plain, \nwith painful and uneasy thoughts.\n\n'My dear Edward,' said Mr Chester at length, with a most engaging \nlaugh, 'do not extend your drowsy influence to the decanter.  \nSuffer THAT to circulate, let your spirits be never so stagnant.'\n\nEdward begged his pardon, passed it, and relapsed into his former \nstate.\n\n'You do wrong not to fill your glass,' said Mr Chester, holding up \nhis own before the light.  'Wine in moderation--not in excess, for \nthat makes men ugly--has a thousand pleasant influences.  It \nbrightens the eye, improves the voice, imparts a new vivacity to \none's thoughts and conversation: you should try it, Ned.'\n\n'Ah father!' cried his son, 'if--'\n\n'My good fellow,' interposed the parent hastily, as he set down his \nglass, and raised his eyebrows with a startled and horrified \nexpression, 'for Heaven's sake don't call me by that obsolete and \nancient name.  Have some regard for delicacy.  Am I grey, or \nwrinkled, do I go on crutches, have I lost my teeth, that you adopt \nsuch a mode of address?  Good God, how very coarse!'\n\n'I was about to speak to you from my heart, sir,' returned Edward, \n'in the confidence which should subsist between us; and you check \nme in the outset.'\n\n'Now DO, Ned, DO not,' said Mr Chester, raising his delicate hand \nimploringly, 'talk in that monstrous manner.  About to speak from \nyour heart.  Don't you know that the heart is an ingenious part of \nour formation--the centre of the blood-vessels and all that sort of \nthing--which has no more to do with what you say or think, than \nyour knees have?  How can you be so very vulgar and absurd?  These \nanatomical allusions should be left to gentlemen of the medical \nprofession.  They are really not agreeable in society.  You quite \nsurprise me, Ned.'\n\n'Well! there are no such things to wound, or heal, or have regard \nfor.  I know your creed, sir, and will say no more,' returned his \nson.\n\n'There again,' said Mr Chester, sipping his wine, 'you are wrong.  \nI distinctly say there are such things.  We know there are.  The \nhearts of animals--of bullocks, sheep, and so forth--are cooked and \ndevoured, as I am told, by the lower classes, with a vast deal of \nrelish.  Men are sometimes stabbed to the heart, shot to the heart; \nbut as to speaking from the heart, or to the heart, or being warm-\nhearted, or cold-hearted, or broken-hearted, or being all heart, or \nhaving no heart--pah! these things are nonsense, Ned.'\n\n'No doubt, sir,' returned his son, seeing that he paused for him to \nspeak.  'No doubt.'\n\n'There's Haredale's niece, your late flame,' said Mr Chester, as a \ncareless illustration of his meaning.  'No doubt in your mind she \nwas all heart once.  Now she has none at all.  Yet she is the same \nperson, Ned, exactly.'\n\n'She is a changed person, sir,' cried Edward, reddening; 'and \nchanged by vile means, I believe.'\n\n'You have had a cool dismissal, have you?' said his father.  'Poor \nNed!  I told you last night what would happen.--May I ask you for \nthe nutcrackers?'\n\n'She has been tampered with, and most treacherously deceived,' \ncried Edward, rising from his seat.  'I never will believe that the \nknowledge of my real position, given her by myself, has worked this \nchange.  I know she is beset and tortured.  But though our contract \nis at an end, and broken past all redemption; though I charge upon \nher want of firmness and want of truth, both to herself and me; I \ndo not now, and never will believe, that any sordid motive, or her \nown unbiassed will, has led her to this course--never!'\n\n'You make me blush,' returned his father gaily, 'for the folly of \nyour nature, in which--but we never know ourselves--I devoutly hope \nthere is no reflection of my own.  With regard to the young lady \nherself, she has done what is very natural and proper, my dear \nfellow; what you yourself proposed, as I learn from Haredale; and \nwhat I predicted--with no great exercise of sagacity--she would do.  \nShe supposed you to be rich, or at least quite rich enough; and \nfound you poor.  Marriage is a civil contract; people marry to \nbetter their worldly condition and improve appearances; it is an \naffair of house and furniture, of liveries, servants, equipage, and \nso forth.  The lady being poor and you poor also, there is an end \nof the matter.  You cannot enter upon these considerations, and \nhave no manner of business with the ceremony.  I drink her health \nin this glass, and respect and honour her for her extreme good \nsense.  It is a lesson to you.  Fill yours, Ned.'\n\n'It is a lesson,' returned his son, 'by which I hope I may never \nprofit, and if years and experience impress it on--'\n\n'Don't say on the heart,' interposed his father.\n\n'On men whom the world and its hypocrisy have spoiled,' said Edward \nwarmly, 'Heaven keep me from its knowledge.'\n\n'Come, sir,' returned his father, raising himself a little on the \nsofa, and looking straight towards him; 'we have had enough of \nthis.  Remember, if you please, your interest, your duty, your \nmoral obligations, your filial affections, and all that sort of \nthing, which it is so very delightful and charming to reflect upon; \nor you will repent it.'\n\n'I shall never repent the preservation of my self-respect, sir,' \nsaid Edward.  'Forgive me if I say that I will not sacrifice it at \nyour bidding, and that I will not pursue the track which you would \nhave me take, and to which the secret share you have had in this \nlate separation tends.'\n\nHis father rose a little higher still, and looking at him as though \ncurious to know if he were quite resolved and earnest, dropped \ngently down again, and said in the calmest voice--eating his nuts \nmeanwhile,\n\n'Edward, my father had a son, who being a fool like you, and, like \nyou, entertaining low and disobedient sentiments, he disinherited \nand cursed one morning after breakfast.  The circumstance occurs to \nme with a singular clearness of recollection this evening.  I \nremember eating muffins at the time, with marmalade.  He led a \nmiserable life (the son, I mean) and died early; it was a happy \nrelease on all accounts; he degraded the family very much.  It is a \nsad circumstance, Edward, when a father finds it necessary to \nresort to such strong measures.\n\n'It is,' replied Edward, 'and it is sad when a son, proffering him \nhis love and duty in their best and truest sense, finds himself \nrepelled at every turn, and forced to disobey.  Dear father,' he \nadded, more earnestly though in a gentler tone, 'I have reflected \nmany times on what occurred between us when we first discussed this \nsubject.  Let there be a confidence between us; not in terms, but \ntruth.  Hear what I have to say.'\n\n'As I anticipate what it is, and cannot fail to do so, Edward,' \nreturned his father coldly, 'I decline.  I couldn't possibly.  I am \nsure it would put me out of temper, which is a state of mind I \ncan't endure.  If you intend to mar my plans for your establishment \nin life, and the preservation of that gentility and becoming pride, \nwhich our family have so long sustained--if, in short, you are \nresolved to take your own course, you must take it, and my curse \nwith it.  I am very sorry, but there's really no alternative.'\n\n'The curse may pass your lips,' said Edward, 'but it will be but \nempty breath.  I do not believe that any man on earth has greater \npower to call one down upon his fellow--least of all, upon his own \nchild--than he has to make one drop of rain or flake of snow fall \nfrom the clouds above us at his impious bidding.  Beware, sir, what \nyou do.'\n\n'You are so very irreligious, so exceedingly undutiful, so horribly \nprofane,' rejoined his father, turning his face lazily towards \nhim, and cracking another nut, 'that I positively must interrupt \nyou here.  It is quite impossible we can continue to go on, upon \nsuch terms as these.  If you will do me the favour to ring the \nbell, the servant will show you to the door.  Return to this roof \nno more, I beg you.  Go, sir, since you have no moral sense \nremaining; and go to the Devil, at my express desire.  Good day.'\n\nEdward left the room without another word or look, and turned his \nback upon the house for ever.\n\nThe father's face was slightly flushed and heated, but his manner \nwas quite unchanged, as he rang the bell again, and addressed the \nservant on his entrance.\n\n'Peak--if that gentleman who has just gone out--'\n\n'I beg your pardon, sir, Mr Edward?'\n\n'Were there more than one, dolt, that you ask the question?--If \nthat gentleman should send here for his wardrobe, let him have it, \ndo you hear?  If he should call himself at any time, I'm not at \nhome.  You'll tell him so, and shut the door.'\n\n\nSo, it soon got whispered about, that Mr Chester was very \nunfortunate in his son, who had occasioned him great grief and \nsorrow.  And the good people who heard this and told it again, \nmarvelled the more at his equanimity and even temper, and said what \nan amiable nature that man must have, who, having undergone so \nmuch, could be so placid and so calm.  And when Edward's name was \nspoken, Society shook its head, and laid its finger on its lip, and \nsighed, and looked very grave; and those who had sons about his \nage, waxed wrathful and indignant, and hoped, for Virtue's sake, \nthat he was dead.  And the world went on turning round, as usual, \nfor five years, concerning which this Narrative is silent.\n\n\n\nChapter 33\n\n\nOne wintry evening, early in the year of our Lord one thousand \nseven hundred and eighty, a keen north wind arose as it grew dark, \nand night came on with black and dismal looks.  A bitter storm of \nsleet, sharp, dense, and icy-cold, swept the wet streets, and \nrattled on the trembling windows.  Signboards, shaken past \nendurance in their creaking frames, fell crashing on the pavement; \nold tottering chimneys reeled and staggered in the blast; and many \na steeple rocked again that night, as though the earth were \ntroubled.\n\nIt was not a time for those who could by any means get light and \nwarmth, to brave the fury of the weather.  In coffee-houses of the \nbetter sort, guests crowded round the fire, forgot to be political, \nand told each other with a secret gladness that the blast grew \nfiercer every minute.  Each humble tavern by the water-side, had \nits group of uncouth figures round the hearth, who talked of \nvessels foundering at sea, and all hands lost; related many a \ndismal tale of shipwreck and drowned men, and hoped that some they \nknew were safe, and shook their heads in doubt.  In private \ndwellings, children clustered near the blaze; listening with timid \npleasure to tales of ghosts and goblins, and tall figures clad in \nwhite standing by bed-sides, and people who had gone to sleep in \nold churches and being overlooked had found themselves alone there \nat the dead hour of the night: until they shuddered at the thought \nof the dark rooms upstairs, yet loved to hear the wind moan too, \nand hoped it would continue bravely.  From time to time these happy \nindoor people stopped to listen, or one held up his finger and \ncried 'Hark!' and then, above the rumbling in the chimney, and the \nfast pattering on the glass, was heard a wailing, rushing sound, \nwhich shook the walls as though a giant's hand were on them; then a \nhoarse roar as if the sea had risen; then such a whirl and tumult \nthat the air seemed mad; and then, with a lengthened howl, the \nwaves of wind swept on, and left a moment's interval of rest.\n\nCheerily, though there were none abroad to see it, shone the \nMaypole light that evening.  Blessings on the red--deep, ruby, \nglowing red--old curtain of the window; blending into one rich \nstream of brightness, fire and candle, meat, drink, and company, \nand gleaming like a jovial eye upon the bleak waste out of doors!  \nWithin, what carpet like its crunching sand, what music merry as \nits crackling logs, what perfume like its kitchen's dainty breath, \nwhat weather genial as its hearty warmth!  Blessings on the old \nhouse, how sturdily it stood!  How did the vexed wind chafe and \nroar about its stalwart roof; how did it pant and strive with its \nwide chimneys, which still poured forth from their hospitable \nthroats, great clouds of smoke, and puffed defiance in its face; \nhow, above all, did it drive and rattle at the casement, emulous to \nextinguish that cheerful glow, which would not be put down and \nseemed the brighter for the conflict!\n\nThe profusion too, the rich and lavish bounty, of that goodly \ntavern!  It was not enough that one fire roared and sparkled on its \nspacious hearth; in the tiles which paved and compassed it, five \nhundred flickering fires burnt brightly also.  It was not enough \nthat one red curtain shut the wild night out, and shed its cheerful \ninfluence on the room.  In every saucepan lid, and candlestick, and \nvessel of copper, brass, or tin that hung upon the walls, were \ncountless ruddy hangings, flashing and gleaming with every motion \nof the blaze, and offering, let the eye wander where it might, \ninterminable vistas of the same rich colour.  The old oak \nwainscoting, the beams, the chairs, the seats, reflected it in a \ndeep, dull glimmer.  There were fires and red curtains in the very \neyes of the drinkers, in their buttons, in their liquor, in the \npipes they smoked.\n\nMr Willet sat in what had been his accustomed place five years \nbefore, with his eyes on the eternal boiler; and had sat there \nsince the clock struck eight, giving no other signs of life than \nbreathing with a loud and constant snore (though he was wide \nawake), and from time to time putting his glass to his lips, or \nknocking the ashes out of his pipe, and filling it anew.  It was \nnow half-past ten.  Mr Cobb and long Phil Parkes were his \ncompanions, as of old, and for two mortal hours and a half, none of \nthe company had pronounced one word.\n\nWhether people, by dint of sitting together in the same place and \nthe same relative positions, and doing exactly the same things for \na great many years, acquire a sixth sense, or some unknown power of \ninfluencing each other which serves them in its stead, is a \nquestion for philosophy to settle.  But certain it is that old \nJohn Willet, Mr Parkes, and Mr Cobb, were one and all firmly of \nopinion that they were very jolly companions--rather choice spirits \nthan otherwise; that they looked at each other every now and then \nas if there were a perpetual interchange of ideas going on among \nthem; that no man considered himself or his neighbour by any means \nsilent; and that each of them nodded occasionally when he caught \nthe eye of another, as if he would say, 'You have expressed \nyourself extremely well, sir, in relation to that sentiment, and I \nquite agree with you.'\n\nThe room was so very warm, the tobacco so very good, and the fire \nso very soothing, that Mr Willet by degrees began to doze; but as \nhe had perfectly acquired, by dint of long habit, the art of \nsmoking in his sleep, and as his breathing was pretty much the \nsame, awake or asleep, saving that in the latter case he sometimes \nexperienced a slight difficulty in respiration (such as a carpenter \nmeets with when he is planing and comes to a knot), neither of his \ncompanions was aware of the circumstance, until he met with one of \nthese impediments and was obliged to try again.\n\n'Johnny's dropped off,' said Mr Parkes in a whisper.\n\n'Fast as a top,' said Mr Cobb.\n\nNeither of them said any more until Mr Willet came to another knot--\none of surpassing obduracy--which bade fair to throw him into \nconvulsions, but which he got over at last without waking, by an \neffort quite superhuman.\n\n'He sleeps uncommon hard,' said Mr Cobb.\n\nMr Parkes, who was possibly a hard-sleeper himself, replied with \nsome disdain, 'Not a bit on it;' and directed his eyes towards a \nhandbill pasted over the chimney-piece, which was decorated at the \ntop with a woodcut representing a youth of tender years running \naway very fast, with a bundle over his shoulder at the end of a \nstick, and--to carry out the idea--a finger-post and a milestone \nbeside him.  Mr Cobb likewise turned his eyes in the same \ndirection, and surveyed the placard as if that were the first time \nhe had ever beheld it.  Now, this was a document which Mr Willet \nhad himself indited on the disappearance of his son Joseph, \nacquainting the nobility and gentry and the public in general with \nthe circumstances of his having left his home; describing his dress \nand appearance; and offering a reward of five pounds to any person \nor persons who would pack him up and return him safely to the \nMaypole at Chigwell, or lodge him in any of his Majesty's jails \nuntil such time as his father should come and claim him.  In this \nadvertisement Mr Willet had obstinately persisted, despite the \nadvice and entreaties of his friends, in describing his son as a \n'young boy;' and furthermore as being from eighteen inches to a \ncouple of feet shorter than he really was; two circumstances which \nperhaps accounted, in some degree, for its never having been \nproductive of any other effect than the transmission to Chigwell \nat various times and at a vast expense, of some five-and-forty \nrunaways varying from six years old to twelve.\n\nMr Cobb and Mr Parkes looked mysteriously at this composition, at \neach other, and at old John.  From the time he had pasted it up \nwith his own hands, Mr Willet had never by word or sign alluded to \nthe subject, or encouraged any one else to do so.  Nobody had the \nleast notion what his thoughts or opinions were, connected with it; \nwhether he remembered it or forgot it; whether he had any idea that \nsuch an event had ever taken place.  Therefore, even while he \nslept, no one ventured to refer to it in his presence; and for such \nsufficient reasons, these his chosen friends were silent now.\n\nMr Willet had got by this time into such a complication of knots, \nthat it was perfectly clear he must wake or die.  He chose the \nformer alternative, and opened his eyes.\n\n'If he don't come in five minutes,' said John, 'I shall have supper \nwithout him.'\n\nThe antecedent of this pronoun had been mentioned for the last time \nat eight o'clock.  Messrs Parkes and Cobb being used to this style \nof conversation, replied without difficulty that to be sure Solomon \nwas very late, and they wondered what had happened to detain him.\n\n'He an't blown away, I suppose,' said Parkes.  'It's enough to \ncarry a man of his figure off his legs, and easy too.  Do you hear \nit?  It blows great guns, indeed.  There'll be many a crash in the \nForest to-night, I reckon, and many a broken branch upon the ground \nto-morrow.'\n\n'It won't break anything in the Maypole, I take it, sir,' returned \nold John.  'Let it try.  I give it leave--what's that?'\n\n'The wind,' cried Parkes.  'It's howling like a Christian, and has \nbeen all night long.'\n\n'Did you ever, sir,' asked John, after a minute's contemplation, \n'hear the wind say \"Maypole\"?'\n\n'Why, what man ever did?' said Parkes.\n\n'Nor \"ahoy,\" perhaps?' added John.\n\n'No.  Nor that neither.'\n\n'Very good, sir,' said Mr Willet, perfectly unmoved; 'then if that \nwas the wind just now, and you'll wait a little time without \nspeaking, you'll hear it say both words very plain.'\n\nMr Willet was right.  After listening for a few moments, they could \nclearly hear, above the roar and tumult out of doors, this shout \nrepeated; and that with a shrillness and energy, which denoted that \nit came from some person in great distress or terror.  They looked \nat each other, turned pale, and held their breath.  No man stirred.\n\nIt was in this emergency that Mr Willet displayed something of that \nstrength of mind and plenitude of mental resource, which rendered \nhim the admiration of all his friends and neighbours.  After \nlooking at Messrs Parkes and Cobb for some time in silence, he \nclapped his two hands to his cheeks, and sent forth a roar which \nmade the glasses dance and rafters ring--a long-sustained, \ndiscordant bellow, that rolled onward with the wind, and startling \nevery echo, made the night a hundred times more boisterous--a deep, \nloud, dismal bray, that sounded like a human gong.  Then, with \nevery vein in his head and face swollen with the great exertion, \nand his countenance suffused with a lively purple, he drew a little \nnearer to the fire, and turning his back upon it, said with dignity:\n\n'If that's any comfort to anybody, they're welcome to it.  If it \nan't, I'm sorry for 'em.  If either of you two gentlemen likes to \ngo out and see what's the matter, you can.  I'm not curious, \nmyself.'\n\nWhile he spoke the cry drew nearer and nearer, footsteps passed the \nwindow, the latch of the door was raised, it opened, was violently \nshut again, and Solomon Daisy, with a lighted lantern in his hand, \nand the rain streaming from his disordered dress, dashed into the \nroom.\n\nA more complete picture of terror than the little man presented, it \nwould be difficult to imagine.  The perspiration stood in beads \nupon his face, his knees knocked together, his every limb trembled, \nthe power of articulation was quite gone; and there he stood, \npanting for breath, gazing on them with such livid ashy looks, that \nthey were infected with his fear, though ignorant of its occasion, \nand, reflecting his dismayed and horror-stricken visage, stared \nback again without venturing to question him; until old John \nWillet, in a fit of temporary insanity, made a dive at his cravat, \nand, seizing him by that portion of his dress, shook him to and fro \nuntil his very teeth appeared to rattle in his head.\n\n'Tell us what's the matter, sir,' said John, 'or I'll kill you.  \nTell us what's the matter, sir, or in another second I'll have your \nhead under the biler.  How dare you look like that?  Is anybody a-\nfollowing of you?  What do you mean?  Say something, or I'll be the \ndeath of you, I will.'\n\nMr Willet, in his frenzy, was so near keeping his word to the very \nletter (Solomon Daisy's eyes already beginning to roll in an \nalarming manner, and certain guttural sounds, as of a choking man, \nto issue from his throat), that the two bystanders, recovering in \nsome degree, plucked him off his victim by main force, and placed \nthe little clerk of Chigwell in a chair.  Directing a fearful gaze \nall round the room, he implored them in a faint voice to give him \nsome drink; and above all to lock the house-door and close and bar \nthe shutters of the room, without a moment's loss of time.  The \nlatter request did not tend to reassure his hearers, or to fill \nthem with the most comfortable sensations; they complied with it, \nhowever, with the greatest expedition; and having handed him a \nbumper of brandy-and-water, nearly boiling hot, waited to hear what \nhe might have to tell them.\n\n'Oh, Johnny,' said Solomon, shaking him by the hand.  'Oh, Parkes.  \nOh, Tommy Cobb.  Why did I leave this house to-night!  On the \nnineteenth of March--of all nights in the year, on the nineteenth \nof March!'\n\nThey all drew closer to the fire.  Parkes, who was nearest to the \ndoor, started and looked over his shoulder.  Mr Willet, with great \nindignation, inquired what the devil he meant by that--and then \nsaid, 'God forgive me,' and glanced over his own shoulder, and came \na little nearer.\n\n'When I left here to-night,' said Solomon Daisy, 'I little thought \nwhat day of the month it was.  I have never gone alone into the \nchurch after dark on this day, for seven-and-twenty years.  I have \nheard it said that as we keep our birthdays when we are alive, so \nthe ghosts of dead people, who are not easy in their graves, keep \nthe day they died upon.--How the wind roars!'\n\nNobody spoke.  All eyes were fastened on Solomon.\n\n'I might have known,' he said, 'what night it was, by the foul \nweather.  There's no such night in the whole year round as this is, \nalways.  I never sleep quietly in my bed on the nineteenth of \nMarch.'\n\n'Go on,' said Tom Cobb, in a low voice.  'Nor I neither.'\n\nSolomon Daisy raised his glass to his lips; put it down upon the \nfloor with such a trembling hand that the spoon tinkled in it like \na little bell; and continued thus:\n\n'Have I ever said that we are always brought back to this subject \nin some strange way, when the nineteenth of this month comes round?  \nDo you suppose it was by accident, I forgot to wind up the church-\nclock?  I never forgot it at any other time, though it's such a \nclumsy thing that it has to be wound up every day.  Why should it \nescape my memory on this day of all others?\n\n'I made as much haste down there as I could when I went from here, \nbut I had to go home first for the keys; and the wind and rain \nbeing dead against me all the way, it was pretty well as much as I \ncould do at times to keep my legs.  I got there at last, opened the \nchurch-door, and went in.  I had not met a soul all the way, and \nyou may judge whether it was dull or not.  Neither of you would \nbear me company.  If you could have known what was to come, you'd \nhave been in the right.\n\n'The wind was so strong, that it was as much as I could do to shut \nthe church-door by putting my whole weight against it; and even as \nit was, it burst wide open twice, with such strength that any of \nyou would have sworn, if you had been leaning against it, as I was, \nthat somebody was pushing on the other side.  However, I got the \nkey turned, went into the belfry, and wound up the clock--which was \nvery near run down, and would have stood stock-still in half an \nhour.\n\n'As I took up my lantern again to leave the church, it came upon me \nall at once that this was the nineteenth of March.  It came upon me \nwith a kind of shock, as if a hand had struck the thought upon my \nforehead; at the very same moment, I heard a voice outside the \ntower--rising from among the graves.'\n\nHere old John precipitately interrupted the speaker, and begged \nthat if Mr Parkes (who was seated opposite to him and was staring \ndirectly over his head) saw anything, he would have the goodness \nto mention it.  Mr Parkes apologised, and remarked that he was only \nlistening; to which Mr Willet angrily retorted, that his listening \nwith that kind of expression in his face was not agreeable, and \nthat if he couldn't look like other people, he had better put his \npocket-handkerchief over his head.  Mr Parkes with great submission \npledged himself to do so, if again required, and John Willet \nturning to Solomon desired him to proceed.  After waiting until a \nviolent gust of wind and rain, which seemed to shake even that \nsturdy house to its foundation, had passed away, the little man \ncomplied:\n\n'Never tell me that it was my fancy, or that it was any other sound \nwhich I mistook for that I tell you of.  I heard the wind whistle \nthrough the arches of the church.  I heard the steeple strain and \ncreak.  I heard the rain as it came driving against the walls.  I \nfelt the bells shake.  I saw the ropes sway to and fro.  And I \nheard that voice.'\n\n'What did it say?' asked Tom Cobb.\n\n'I don't know what; I don't know that it spoke.  It gave a kind of \ncry, as any one of us might do, if something dreadful followed us \nin a dream, and came upon us unawares; and then it died off: \nseeming to pass quite round the church.'\n\n'I don't see much in that,' said John, drawing a long breath, and \nlooking round him like a man who felt relieved.\n\n'Perhaps not,' returned his friend, 'but that's not all.'\n\n'What more do you mean to say, sir, is to come?' asked John, \npausing in the act of wiping his face upon his apron.  'What are \nyou a-going to tell us of next?'\n\n'What I saw.'\n\n'Saw!' echoed all three, bending forward.\n\n'When I opened the church-door to come out,' said the little man, \nwith an expression of face which bore ample testimony to the \nsincerity of his conviction, 'when I opened the church-door to come \nout, which I did suddenly, for I wanted to get it shut again before \nanother gust of wind came up, there crossed me--so close, that by \nstretching out my finger I could have touched it--something in the \nlikeness of a man.  It was bare-headed to the storm.  It turned its \nface without stopping, and fixed its eyes on mine.  It was a ghost--\na spirit.'\n\n'Whose?' they all three cried together.\n\nIn the excess of his emotion (for he fell back trembling in his \nchair, and waved his hand as if entreating them to question him no \nfurther), his answer was lost on all but old John Willet, who \nhappened to be seated close beside him.\n\n'Who!' cried Parkes and Tom Cobb, looking eagerly by turns at \nSolomon Daisy and at Mr Willet.  'Who was it?'\n\n'Gentlemen,' said Mr Willet after a long pause, 'you needn't ask.  \nThe likeness of a murdered man.  This is the nineteenth of March.'\n\nA profound silence ensued.\n\n'If you'll take my advice,' said John, 'we had better, one and all, \nkeep this a secret.  Such tales would not be liked at the Warren.  \nLet us keep it to ourselves for the present time at all events, or \nwe may get into trouble, and Solomon may lose his place.  Whether \nit was really as he says, or whether it wasn't, is no matter.  \nRight or wrong, nobody would believe him.  As to the probabilities, \nI don't myself think,' said Mr Willet, eyeing the corners of the \nroom in a manner which showed that, like some other philosophers, \nhe was not quite easy in his theory, 'that a ghost as had been a \nman of sense in his lifetime, would be out a-walking in such \nweather--I only know that I wouldn't, if I was one.'\n\nBut this heretical doctrine was strongly opposed by the other \nthree, who quoted a great many precedents to show that bad weather \nwas the very time for such appearances; and Mr Parkes (who had had \na ghost in his family, by the mother's side) argued the matter with \nso much ingenuity and force of illustration, that John was only \nsaved from having to retract his opinion by the opportune \nappearance of supper, to which they applied themselves with a \ndreadful relish.  Even Solomon Daisy himself, by dint of the \nelevating influences of fire, lights, brandy, and good company, so \nfar recovered as to handle his knife and fork in a highly \ncreditable manner, and to display a capacity both of eating and \ndrinking, such as banished all fear of his having sustained any \nlasting injury from his fright.\n\nSupper done, they crowded round the fire again, and, as is common \non such occasions, propounded all manner of leading questions \ncalculated to surround the story with new horrors and surprises.  \nBut Solomon Daisy, notwithstanding these temptations, adhered so \nsteadily to his original account, and repeated it so often, with \nsuch slight variations, and with such solemn asseverations of its \ntruth and reality, that his hearers were (with good reason) more \nastonished than at first.  As he took John Willet's view of the \nmatter in regard to the propriety of not bruiting the tale abroad, \nunless the spirit should appear to him again, in which case it \nwould be necessary to take immediate counsel with the clergyman, it \nwas solemnly resolved that it should be hushed up and kept quiet.  \nAnd as most men like to have a secret to tell which may exalt their \nown importance, they arrived at this conclusion with perfect \nunanimity.\n\nAs it was by this time growing late, and was long past their usual \nhour of separating, the cronies parted for the night.  Solomon \nDaisy, with a fresh candle in his lantern, repaired homewards under \nthe escort of long Phil Parkes and Mr Cobb, who were rather more \nnervous than himself.  Mr Willet, after seeing them to the door, \nreturned to collect his thoughts with the assistance of the boiler, \nand to listen to the storm of wind and rain, which had not yet \nabated one jot of its fury.\n\n\n\nChapter 34\n\n\nBefore old John had looked at the boiler quite twenty minutes, he \ngot his ideas into a focus, and brought them to bear upon Solomon \nDaisy's story.  The more he thought of it, the more impressed he \nbecame with a sense of his own wisdom, and a desire that Mr \nHaredale should be impressed with it likewise.  At length, to the \nend that he might sustain a principal and important character in \nthe affair; and might have the start of Solomon and his two \nfriends, through whose means he knew the adventure, with a variety \nof exaggerations, would be known to at least a score of people, and \nmost likely to Mr Haredale himself, by breakfast-time to-morrow; he \ndetermined to repair to the Warren before going to bed.\n\n'He's my landlord,' thought John, as he took a candle in his hand, \nand setting it down in a corner out of the wind's way, opened a \ncasement in the rear of the house, looking towards the stables.  \n'We haven't met of late years so often as we used to do--changes \nare taking place in the family--it's desirable that I should stand \nas well with them, in point of dignity, as possible--the whispering \nabout of this here tale will anger him--it's good to have \nconfidences with a gentleman of his natur', and set one's-self \nright besides.  Halloa there!  Hugh--Hugh.  Hal-loa!'\n\nWhen he had repeated this shout a dozen times, and startled every \npigeon from its slumbers, a door in one of the ruinous old \nbuildings opened, and a rough voice demanded what was amiss now, \nthat a man couldn't even have his sleep in quiet.\n\n'What!  Haven't you sleep enough, growler, that you're not to be \nknocked up for once?' said John.\n\n'No,' replied the voice, as the speaker yawned and shook himself.  \n'Not half enough.'\n\n'I don't know how you CAN sleep, with the wind a bellowsing and \nroaring about you, making the tiles fly like a pack of cards,' said \nJohn; 'but no matter for that.  Wrap yourself up in something or \nanother, and come here, for you must go as far as the Warren with \nme.  And look sharp about it.'\n\nHugh, with much low growling and muttering, went back into his \nlair; and presently reappeared, carrying a lantern and a cudgel, \nand enveloped from head to foot in an old, frowzy, slouching horse-\ncloth.  Mr Willet received this figure at the back-door, and \nushered him into the bar, while he wrapped himself in sundry \ngreatcoats and capes, and so tied and knotted his face in shawls \nand handkerchiefs, that how he breathed was a mystery.\n\n'You don't take a man out of doors at near midnight in such weather, \nwithout putting some heart into him, do you, master?' said Hugh.\n\n'Yes I do, sir,' returned Mr Willet.  'I put the heart (as you call \nit) into him when he has brought me safe home again, and his \nstanding steady on his legs an't of so much consequence.  So hold \nthat light up, if you please, and go on a step or two before, to \nshow the way.'\n\nHugh obeyed with a very indifferent grace, and a longing glance at \nthe bottles.  Old John, laying strict injunctions on his cook to \nkeep the doors locked in his absence, and to open to nobody but \nhimself on pain of dismissal, followed him into the blustering \ndarkness out of doors.\n\nThe way was wet and dismal, and the night so black, that if Mr \nWillet had been his own pilot, he would have walked into a deep \nhorsepond within a few hundred yards of his own house, and would \ncertainly have terminated his career in that ignoble sphere of \naction.  But Hugh, who had a sight as keen as any hawk's, and, \napart from that endowment, could have found his way blindfold to \nany place within a dozen miles, dragged old John along, quite deaf \nto his remonstrances, and took his own course without the slightest \nreference to, or notice of, his master.  So they made head against \nthe wind as they best could; Hugh crushing the wet grass beneath \nhis heavy tread, and stalking on after his ordinary savage \nfashion; John Willet following at arm's length, picking his \nsteps, and looking about him, now for bogs and ditches, and now \nfor such stray ghosts as might be wandering abroad, with looks of \nas much dismay and uneasiness as his immovable face was capable of \nexpressing.\n\nAt length they stood upon the broad gravel-walk before the Warren-\nhouse.  The building was profoundly dark, and none were moving near \nit save themselves.  From one solitary turret-chamber, however, \nthere shone a ray of light; and towards this speck of comfort in \nthe cold, cheerless, silent scene, Mr Willet bade his pilot lead \nhim.\n\n'The old room,' said John, looking timidly upward; 'Mr Reuben's own \napartment, God be with us!  I wonder his brother likes to sit \nthere, so late at night--on this night too.'\n\n'Why, where else should he sit?' asked Hugh, holding the lantern to \nhis breast, to keep the candle from the wind, while he trimmed it \nwith his fingers.  'It's snug enough, an't it?'\n\n'Snug!' said John indignantly.  'You have a comfortable idea of \nsnugness, you have, sir.  Do you know what was done in that room, \nyou ruffian?'\n\n'Why, what is it the worse for that!' cried Hugh, looking into \nJohn's fat face.  'Does it keep out the rain, and snow, and wind, \nthe less for that?  Is it less warm or dry, because a man was \nkilled there?  Ha, ha, ha!  Never believe it, master.  One man's no \nsuch matter as that comes to.'\n\nMr Willet fixed his dull eyes on his follower, and began--by a \nspecies of inspiration--to think it just barely possible that he \nwas something of a dangerous character, and that it might be \nadvisable to get rid of him one of these days.  He was too prudent \nto say anything, with the journey home before him; and therefore \nturned to the iron gate before which this brief dialogue had \npassed, and pulled the handle of the bell that hung beside it.  The \nturret in which the light appeared being at one corner of the \nbuilding, and only divided from the path by one of the garden-\nwalks, upon which this gate opened, Mr Haredale threw up the \nwindow directly, and demanded who was there.\n\n'Begging pardon, sir,' said John, 'I knew you sat up late, and made \nbold to come round, having a word to say to you.'\n\n'Willet--is it not?'\n\n'Of the Maypole--at your service, sir.'\n\nMr Haredale closed the window, and withdrew.  He presently appeared \nat a door in the bottom of the turret, and coming across the \ngarden-walk, unlocked the gate and let them in.\n\n'You are a late visitor, Willet.  What is the matter?'\n\n'Nothing to speak of, sir,' said John; 'an idle tale, I thought you \nought to know of; nothing more.'\n\n'Let your man go forward with the lantern, and give me your hand.  \nThe stairs are crooked and narrow.  Gently with your light, friend.  \nYou swing it like a censer.'\n\nHugh, who had already reached the turret, held it more steadily, \nand ascended first, turning round from time to time to shed his \nlight downward on the steps.  Mr Haredale following next, eyed his \nlowering face with no great favour; and Hugh, looking down on him, \nreturned his glances with interest, as they climbed the winding \nstairs.\n\nIt terminated in a little ante-room adjoining that from which they \nhad seen the light.  Mr Haredale entered first, and led the way \nthrough it into the latter chamber, where he seated himself at a \nwriting-table from which he had risen when they had rung the bell.\n\n'Come in,' he said, beckoning to old John, who remained bowing at \nthe door.  'Not you, friend,' he added hastily to Hugh, who entered \nalso.  'Willet, why do you bring that fellow here?'\n\n'Why, sir,' returned John, elevating his eyebrows, and lowering his \nvoice to the tone in which the question had been asked him, 'he's a \ngood guard, you see.'\n\n'Don't be too sure of that,' said Mr Haredale, looking towards him \nas he spoke.  'I doubt it.  He has an evil eye.'\n\n'There's no imagination in his eye,' returned Mr Willet, glancing \nover his shoulder at the organ in question, 'certainly.'\n\n'There is no good there, be assured,' said Mr Haredale.  'Wait in \nthat little room, friend, and close the door between us.'\n\nHugh shrugged his shoulders, and with a disdainful look, which \nshowed, either that he had overheard, or that he guessed the \npurport of their whispering, did as he was told.  When he was shut \nout, Mr Haredale turned to John, and bade him go on with what he \nhad to say, but not to speak too loud, for there were quick ears \nyonder.\n\nThus cautioned, Mr Willet, in an oily whisper, recited all that he \nhad heard and said that night; laying particular stress upon his \nown sagacity, upon his great regard for the family, and upon his \nsolicitude for their peace of mind and happiness.  The story moved \nhis auditor much more than he had expected.  Mr Haredale often \nchanged his attitude, rose and paced the room, returned again, \ndesired him to repeat, as nearly as he could, the very words that \nSolomon had used, and gave so many other signs of being disturbed \nand ill at ease, that even Mr Willet was surprised.\n\n'You did quite right,' he said, at the end of a long conversation, \n'to bid them keep this story secret.  It is a foolish fancy on the \npart of this weak-brained man, bred in his fears and superstition.  \nBut Miss Haredale, though she would know it to be so, would be \ndisturbed by it if it reached her ears; it is too nearly connected \nwith a subject very painful to us all, to be heard with \nindifference.  You were most prudent, and have laid me under a \ngreat obligation.  I thank you very much.'\n\nThis was equal to John's most sanguine expectations; but he would \nhave preferred Mr Haredale's looking at him when he spoke, as if he \nreally did thank him, to his walking up and down, speaking by fits \nand starts, often stopping with his eyes fixed on the ground, \nmoving hurriedly on again, like one distracted, and seeming almost \nunconscious of what he said or did.\n\nThis, however, was his manner; and it was so embarrassing to John \nthat he sat quite passive for a long time, not knowing what to \ndo.  At length he rose.  Mr Haredale stared at him for a moment as \nthough he had quite forgotten his being present, then shook hands \nwith him, and opened the door.  Hugh, who was, or feigned to be, \nfast asleep on the ante-chamber floor, sprang up on their entrance, \nand throwing his cloak about him, grasped his stick and lantern, \nand prepared to descend the stairs.\n\n'Stay,' said Mr Haredale.  'Will this man drink?'\n\n'Drink!  He'd drink the Thames up, if it was strong enough, sir, \nreplied John Willet.  'He'll have something when he gets home.  \nHe's better without it, now, sir.'\n\n'Nay.  Half the distance is done,' said Hugh.  'What a hard master \nyou are!  I shall go home the better for one glassful, halfway.  \nCome!'\n\nAs John made no reply, Mr Haredale brought out a glass of liquor, \nand gave it to Hugh, who, as he took it in his hand, threw part of \nit upon the floor.\n\n'What do you mean by splashing your drink about a gentleman's \nhouse, sir?' said John.\n\n'I'm drinking a toast,' Hugh rejoined, holding the glass above his \nhead, and fixing his eyes on Mr Haredale's face; 'a toast to this \nhouse and its master.'  With that he muttered something to himself, \nand drank the rest, and setting down the glass, preceded them \nwithout another word.\n\nJohn was a good deal scandalised by this observance, but seeing \nthat Mr Haredale took little heed of what Hugh said or did, and \nthat his thoughts were otherwise employed, he offered no apology, \nand went in silence down the stairs, across the walk, and through \nthe garden-gate.  They stopped upon the outer side for Hugh to hold \nthe light while Mr Haredale locked it on the inner; and then John \nsaw with wonder (as he often afterwards related), that he was very \npale, and that his face had changed so much and grown so haggard \nsince their entrance, that he almost seemed another man.\n\nThey were in the open road again, and John Willet was walking on \nbehind his escort, as he had come, thinking very steadily of what \nbe had just now seen, when Hugh drew him suddenly aside, and almost \nat the same instant three horsemen swept past--the nearest brushed \nhis shoulder even then--who, checking their steeds as suddenly as \nthey could, stood still, and waited for their coming up.\n\n\n\nChapter 35\n\n\nWhen John Willet saw that the horsemen wheeled smartly round, and \ndrew up three abreast in the narrow road, waiting for him and his \nman to join them, it occurred to him with unusual precipitation \nthat they must be highwaymen; and had Hugh been armed with a \nblunderbuss, in place of his stout cudgel, he would certainly have \nordered him to fire it off at a venture, and would, while the word \nof command was obeyed, have consulted his own personal safety in \nimmediate flight.  Under the circumstances of disadvantage, \nhowever, in which he and his guard were placed, he deemed it \nprudent to adopt a different style of generalship, and therefore \nwhispered his attendant to address them in the most peaceable and \ncourteous terms.  By way of acting up to the spirit and letter of \nthis instruction, Hugh stepped forward, and flourishing his staff \nbefore the very eyes of the rider nearest to him, demanded roughly \nwhat he and his fellows meant by so nearly galloping over them, and \nwhy they scoured the king's highway at that late hour of night.\n\nThe man whom be addressed was beginning an angry reply in the same \nstrain, when be was checked by the horseman in the centre, who, \ninterposing with an air of authority, inquired in a somewhat loud \nbut not harsh or unpleasant voice:\n\n'Pray, is this the London road?'\n\n'If you follow it right, it is,' replied Hugh roughly.\n\n'Nay, brother,' said the same person, 'you're but a churlish \nEnglishman, if Englishman you be--which I should much doubt but for \nyour tongue.  Your companion, I am sure, will answer me more \ncivilly.  How say you, friend?'\n\n'I say it IS the London road, sir,' answered John.  'And I wish,' \nhe added in a subdued voice, as he turned to Hugh, 'that you was in \nany other road, you vagabond.  Are you tired of your life, sir, \nthat you go a-trying to provoke three great neck-or-nothing chaps, \nthat could keep on running over us, back'ards and for'ards, till we \nwas dead, and then take our bodies up behind 'em, and drown us ten \nmiles off?'\n\n'How far is it to London?' inquired the same speaker.\n\n'Why, from here, sir,' answered John, persuasively, 'it's thirteen \nvery easy mile.'\n\nThe adjective was thrown in, as an inducement to the travellers to \nride away with all speed; but instead of having the desired effect, \nit elicited from the same person, the remark, 'Thirteen miles!  \nThat's a long distance!' which was followed by a short pause of \nindecision.\n\n'Pray,' said the gentleman, 'are there any inns hereabouts?'  At \nthe word 'inns,' John plucked up his spirit in a surprising manner; \nhis fears rolled off like smoke; all the landlord stirred within \nhim.\n\n'There are no inns,' rejoined Mr Willet, with a strong emphasis on \nthe plural number; 'but there's a Inn--one Inn--the Maypole Inn.  \nThat's a Inn indeed.  You won't see the like of that Inn often.'\n\n'You keep it, perhaps?' said the horseman, smiling.\n\n'I do, sir,' replied John, greatly wondering how he had found this \nout.\n\n'And how far is the Maypole from here?'\n\n'About a mile'--John was going to add that it was the easiest mile \nin all the world, when the third rider, who had hitherto kept a \nlittle in the rear, suddenly interposed:\n\n'And have you one excellent bed, landlord?  Hem!  A bed that you \ncan recommend--a bed that you are sure is well aired--a bed that \nhas been slept in by some perfectly respectable and unexceptionable \nperson?'\n\n'We don't take in no tagrag and bobtail at our house, sir,' \nanswered John.  'And as to the bed itself--'\n\n'Say, as to three beds,' interposed the gentleman who had spoken \nbefore; 'for we shall want three if we stay, though my friend only \nspeaks of one.'\n\n'No, no, my lord; you are too good, you are too kind; but your life \nis of far too much importance to the nation in these portentous \ntimes, to be placed upon a level with one so useless and so poor as \nmine.  A great cause, my lord, a mighty cause, depends on you.  You \nare its leader and its champion, its advanced guard and its van.  \nIt is the cause of our altars and our homes, our country and our \nfaith.  Let ME sleep on a chair--the carpet--anywhere.  No one will \nrepine if I take cold or fever.  Let John Grueby pass the night \nbeneath the open sky--no one will repine for HIM.  But forty \nthousand men of this our island in the wave (exclusive of women and \nchildren) rivet their eyes and thoughts on Lord George Gordon; and \nevery day, from the rising up of the sun to the going down of the \nsame, pray for his health and vigour.  My lord,' said the speaker, \nrising in his stirrups, 'it is a glorious cause, and must not be \nforgotten.  My lord, it is a mighty cause, and must not be \nendangered.  My lord, it is a holy cause, and must not be \ndeserted.'\n\n'It IS a holy cause,' exclaimed his lordship, lifting up his hat \nwith great solemnity.  'Amen.'\n\n'John Grueby,' said the long-winded gentleman, in a tone of mild \nreproof, 'his lordship said Amen.'\n\n'I heard my lord, sir,' said the man, sitting like a statue on his \nhorse.\n\n'And do not YOU say Amen, likewise?'\n\nTo which John Grueby made no reply at all, but sat looking straight \nbefore him.\n\n'You surprise me, Grueby,' said the gentleman.  'At a crisis like \nthe present, when Queen Elizabeth, that maiden monarch, weeps \nwithin her tomb, and Bloody Mary, with a brow of gloom and shadow, \nstalks triumphant--'\n\n'Oh, sir,' cied the man, gruffly, 'where's the use of talking of \nBloody Mary, under such circumstances as the present, when my \nlord's wet through, and tired with hard riding?  Let's either go on \nto London, sir, or put up at once; or that unfort'nate Bloody Mary \nwill have more to answer for--and she's done a deal more harm in \nher grave than she ever did in her lifetime, I believe.'\n\nBy this time Mr Willet, who had never beard so many words spoken \ntogether at one time, or delivered with such volubility and \nemphasis as by the long-winded gentleman; and whose brain, being \nwholly unable to sustain or compass them, had quite given itself up \nfor lost; recovered so far as to observe that there was ample \naccommodation at the Maypole for all the party: good beds; neat \nwines; excellent entertainment for man and beast; private rooms for \nlarge and small parties; dinners dressed upon the shortest notice; \nchoice stabling, and a lock-up coach-house; and, in short, to run \nover such recommendatory scraps of language as were painted up on \nvarious portions of the building, and which in the course of some \nforty years he had learnt to repeat with tolerable correctness.  He \nwas considering whether it was at all possible to insert any novel \nsentences to the same purpose, when the gentleman who had spoken \nfirst, turning to him of the long wind, exclaimed, 'What say you, \nGashford?  Shall we tarry at this house he speaks of, or press \nforward?  You shall decide.'\n\n'I would submit, my lord, then,' returned the person he appealed \nto, in a silky tone, 'that your health and spirits--so important, \nunder Providence, to our great cause, our pure and truthful cause'--\nhere his lordship pulled off his hat again, though it was raining \nhard--'require refreshment and repose.'\n\n'Go on before, landlord, and show the way,' said Lord George \nGordon; 'we will follow at a footpace.'\n\n'If you'll give me leave, my lord,' said John Grueby, in a low \nvoice, 'I'll change my proper place, and ride before you.  The \nlooks of the landlord's friend are not over honest, and it may be \nas well to be cautious with him.'\n\n'John Grueby is quite right,' interposed Mr Gashford, falling back \nhastily.  'My lord, a life so precious as yours must not be put in \nperil.  Go forward, John, by all means.  If you have any reason to \nsuspect the fellow, blow his brains out.'\n\nJohn made no answer, but looking straight before him, as his custom \nseemed to be when the secretary spoke, bade Hugh push on, and \nfollowed close behind him.  Then came his lordship, with Mr Willet \nat his bridle rein; and, last of all, his lordship's secretary--for \nthat, it seemed, was Gashford's office.\n\nHugh strode briskly on, often looking back at the servant, whose \nhorse was close upon his heels, and glancing with a leer at his \nbolster case of pistols, by which he seemed to set great store.  He \nwas a square-built, strong-made, bull-necked fellow, of the true \nEnglish breed; and as Hugh measured him with his eye, he measured \nHugh, regarding him meanwhile with a look of bluff disdain.  He was \nmuch older than the Maypole man, being to all appearance five-and-\nforty; but was one of those self-possessed, hard-headed, \nimperturbable fellows, who, if they are ever beaten at fisticuffs, \nor other kind of warfare, never know it, and go on coolly till they \nwin.\n\n'If I led you wrong now,' said Hugh, tauntingly, 'you'd--ha ha ha!--\nyou'd shoot me through the head, I suppose.'\n\nJohn Grueby took no more notice of this remark than if he had been \ndeaf and Hugh dumb; but kept riding on quite comfortably, with his \neyes fixed on the horizon.\n\n'Did you ever try a fall with a man when you were young, master?' \nsaid Hugh.  'Can you make any play at single-stick?'\n\nJohn Grueby looked at him sideways with the same contented air, but \ndeigned not a word in answer.\n\n'--Like this?' said Hugh, giving his cudgel one of those skilful \nflourishes, in which the rustic of that time delighted.  'Whoop!'\n\n'--Or that,' returned John Grueby, beating down his guard with his \nwhip, and striking him on the head with its butt end.  'Yes, I \nplayed a little once.  You wear your hair too long; I should have \ncracked your crown if it had been a little shorter.'\n\nIt was a pretty smart, loud-sounding rap, as it was, and evidently \nastonished Hugh; who, for the moment, seemed disposed to drag his \nnew acquaintance from his saddle.  But his face betokening neither \nmalice, triumph, rage, nor any lingering idea that he had given him \noffence; his eyes gazing steadily in the old direction, and his \nmanner being as careless and composed as if he had merely brushed \naway a fly; Hugh was so puzzled, and so disposed to look upon him \nas a customer of almost supernatural toughness, that he merely \nlaughed, and cried 'Well done!' then, sheering off a little, led \nthe way in silence.\n\nBefore the lapse of many minutes the party halted at the Maypole \ndoor.  Lord George and his secretary quickly dismounting, gave \ntheir horses to their servant, who, under the guidance of Hugh, \nrepaired to the stables.  Right glad to escape from the inclemency \nof the night, they followed Mr Willet into the common room, and \nstood warming themselves and drying their clothes before the \ncheerful fire, while he busied himself with such orders and \npreparations as his guest's high quality required.\n\nAs he bustled in and out of the room, intent on these \narrangements, he had an opportunity of observing the two \ntravellers, of whom, as yet, he knew nothing but the voice.  The \nlord, the great personage who did the Maypole so much honour, was \nabout the middle height, of a slender make, and sallow complexion, \nwith an aquiline nose, and long hair of a reddish brown, combed \nperfectly straight and smooth about his ears, and slightly \npowdered, but without the faintest vestige of a curl.  He was \nattired, under his greatcoat, in a full suit of black, quite free \nfrom any ornament, and of the most precise and sober cut.  The \ngravity of his dress, together with a certain lankness of cheek \nand stiffness of deportment, added nearly ten years to his age, \nbut his figure was that of one not yet past thirty.  As he stood \nmusing in the red glow of the fire, it was striking to observe his \nvery bright large eye, which betrayed a restlessness of thought and \npurpose, singularly at variance with the studied composure and \nsobriety of his mien, and with his quaint and sad apparel.  It had \nnothing harsh or cruel in its expression; neither had his face, \nwhich was thin and mild, and wore an air of melancholy; but it was \nsuggestive of an indefinable uneasiness; which infected those who \nlooked upon him, and filled them with a kind of pity for the man: \nthough why it did so, they would have had some trouble to explain.\n\nGashford, the secretary, was taller, angularly made, high-\nshouldered, bony, and ungraceful.  His dress, in imitation of his \nsuperior, was demure and staid in the extreme; his manner, formal \nand constrained.  This gentleman had an overhanging brow, great \nhands and feet and ears, and a pair of eyes that seemed to have \nmade an unnatural retreat into his head, and to have dug themselves \na cave to hide in.  His manner was smooth and humble, but very sly \nand slinking.  He wore the aspect of a man who was always lying in \nwait for something that WOULDN'T come to pass; but he looked \npatient--very patient--and fawned like a spaniel dog.  Even now, \nwhile he warmed and rubbed his hands before the blaze, he had the \nair of one who only presumed to enjoy it in his degree as a \ncommoner; and though he knew his lord was not regarding him, he \nlooked into his face from time to time, and with a meek and \ndeferential manner, smiled as if for practice.\n\nSuch were the guests whom old John Willet, with a fixed and leaden \neye, surveyed a hundred times, and to whom he now advanced with a \nstate candlestick in each hand, beseeching them to follow him into \na worthier chamber.  'For my lord,' said John--it is odd enough, \nbut certain people seem to have as great a pleasure in pronouncing \ntitles as their owners have in wearing them--'this room, my lord, \nisn't at all the sort of place for your lordship, and I have to \nbeg your lordship's pardon for keeping you here, my lord, one \nminute.'\n\nWith this address, John ushered them upstairs into the state \napartment, which, like many other things of state, was cold and \ncomfortless.  Their own footsteps, reverberating through the \nspacious room, struck upon their hearing with a hollow sound; and \nits damp and chilly atmosphere was rendered doubly cheerless by \ncontrast with the homely warmth they had deserted.\n\nIt was of no use, however, to propose a return to the place they \nhad quitted, for the preparations went on so briskly that there was \nno time to stop them.  John, with the tall candlesticks in his \nhands, bowed them up to the fireplace; Hugh, striding in with a \nlighted brand and pile of firewood, cast it down upon the hearth, \nand set it in a blaze; John Grueby (who had a great blue cockade in \nhis hat, which he appeared to despise mightily) brought in the \nportmanteau he had carried on his horse, and placed it on the \nfloor; and presently all three were busily engaged in drawing out \nthe screen, laying the cloth, inspecting the beds, lighting fires \nin the bedrooms, expediting the supper, and making everything as \ncosy and as snug as might be, on so short a notice.  In less than \nan hour's time, supper had been served, and ate, and cleared away; \nand Lord George and his secretary, with slippered feet, and legs \nstretched out before the fire, sat over some hot mulled wine \ntogether.\n\n'So ends, my lord,' said Gashford, filling his glass with great \ncomplacency, 'the blessed work of a most blessed day.'\n\n'And of a blessed yesterday,' said his lordship, raising his head.\n\n'Ah!'--and here the secretary clasped his hands--'a blessed \nyesterday indeed!  The Protestants of Suffolk are godly men and \ntrue.  Though others of our countrymen have lost their way in \ndarkness, even as we, my lord, did lose our road to-night, theirs \nis the light and glory.'\n\n'Did I move them, Gashford ?' said Lord George.\n\n'Move them, my lord!  Move them!  They cried to be led on against \nthe Papists, they vowed a dreadful vengeance on their heads, they \nroared like men possessed--'\n\n'But not by devils,' said his lord.\n\n'By devils! my lord!  By angels.'\n\n'Yes--oh surely--by angels, no doubt,' said Lord George, thrusting \nhis hands into his pockets, taking them out again to bite his \nnails, and looking uncomfortably at the fire.  'Of course by \nangels--eh Gashford?'\n\n'You do not doubt it, my lord?' said the secretary.\n\n'No--No,' returned his lord.  'No.  Why should I?  I suppose it \nwould be decidedly irreligious to doubt it--wouldn't it, Gashford?  \nThough there certainly were,' he added, without waiting for an \nanswer, 'some plaguy ill-looking characters among them.'\n\n'When you warmed,' said the secretary, looking sharply at the \nother's downcast eyes, which brightened slowly as he spoke; 'when \nyou warmed into that noble outbreak; when you told them that you \nwere never of the lukewarm or the timid tribe, and bade them take \nheed that they were prepared to follow one who would lead them on, \nthough to the very death; when you spoke of a hundred and twenty \nthousand men across the Scottish border who would take their own \nredress at any time, if it were not conceded; when you cried \n\"Perish the Pope and all his base adherents; the penal laws against \nthem shall never be repealed while Englishmen have hearts and \nhands\"--and waved your own and touched your sword; and when they \ncried \"No Popery!\" and you cried \"No; not even if we wade in \nblood,\" and they threw up their hats and cried \"Hurrah! not even if \nwe wade in blood; No Popery!  Lord George!  Down with the Papists--\nVengeance on their heads:\" when this was said and done, and a word \nfrom you, my lord, could raise or still the tumult--ah! then I felt \nwhat greatness was indeed, and thought, When was there ever power \nlike this of Lord George Gordon's!'\n\n'It's a great power.  You're right.  It is a great power!' he cried \nwith sparkling eyes.  'But--dear Gashford--did I really say all \nthat?'\n\n'And how much more!' cried the secretary, looking upwards.  'Ah! \nhow much more!'\n\n'And I told them what you say, about the one hundred and forty \nthousand men in Scotland, did I!' he asked with evident delight.  \n'That was bold.'\n\n'Our cause is boldness.  Truth is always bold.'\n\n'Certainly.  So is religion.  She's bold, Gashford?'\n\n'The true religion is, my lord.'\n\n'And that's ours,' he rejoined, moving uneasily in his seat, and \nbiting his nails as though he would pare them to the quick.  'There \ncan be no doubt of ours being the true one.  You feel as certain of \nthat as I do, Gashford, don't you?'\n\n'Does my lord ask ME,' whined Gashford, drawing his chair nearer \nwith an injured air, and laying his broad flat hand upon the table; \n'ME,' he repeated, bending the dark hollows of his eyes upon him \nwith an unwholesome smile, 'who, stricken by the magic of his \neloquence in Scotland but a year ago, abjured the errors of the \nRomish church, and clung to him as one whose timely hand had \nplucked me from a pit?'\n\n'True.  No--No.  I--I didn't mean it,' replied the other, shaking \nhim by the hand, rising from his seat, and pacing restlessly about \nthe room.  'It's a proud thing to lead the people, Gashford,' he \nadded as he made a sudden halt.\n\n'By force of reason too,' returned the pliant secretary.\n\n'Ay, to be sure.  They may cough and jeer, and groan in Parliament, \nand call me fool and madman, but which of them can raise this human \nsea and make it swell and roar at pleasure?  Not one.'\n\n'Not one,' repeated Gashford.\n\n'Which of them can say for his honesty, what I can say for mine; \nwhich of them has refused a minister's bribe of one thousand \npounds a year, to resign his seat in favour of another?  Not one.'\n\n'Not one,' repeated Gashford again--taking the lion's share of the \nmulled wine between whiles.\n\n'And as we are honest, true, and in a sacred cause, Gashford,' said \nLord George with a heightened colour and in a louder voice, as he \nlaid his fevered hand upon his shoulder, 'and are the only men who \nregard the mass of people out of doors, or are regarded by them, we \nwill uphold them to the last; and will raise a cry against these \nun-English Papists which shall re-echo through the country, and \nroll with a noise like thunder.  I will be worthy of the motto on \nmy coat of arms, \"Called and chosen and faithful.\"\n\n'Called,' said the secretary, 'by Heaven.'\n\n'I am.'\n\n'Chosen by the people.'\n\n'Yes.'\n\n'Faithful to both.'\n\n'To the block!'\n\nIt would be difficult to convey an adequate idea of the excited \nmanner in which he gave these answers to the secretary's \npromptings; of the rapidity of his utterance, or the violence of \nhis tone and gesture; in which, struggling through his Puritan's \ndemeanour, was something wild and ungovernable which broke through \nall restraint.  For some minutes he walked rapidly up and down the \nroom, then stopping suddenly, exclaimed,\n\n'Gashford--YOU moved them yesterday too.  Oh yes!  You did.'\n\n'I shone with a reflected light, my lord,' replied the humble \nsecretary, laying his hand upon his heart.  'I did my best.'\n\n'You did well,' said his master, 'and are a great and worthy \ninstrument.  If you will ring for John Grueby to carry the \nportmanteau into my room, and will wait here while I undress, we \nwill dispose of business as usual, if you're not too tired.'\n\n'Too tired, my lord!--But this is his consideration!  Christian \nfrom head to foot.'  With which soliloquy, the secretary tilted the \njug, and looked very hard into the mulled wine, to see how much \nremained.\n\nJohn Willet and John Grueby appeared together.  The one bearing the \ngreat candlesticks, and the other the portmanteau, showed the \ndeluded lord into his chamber; and left the secretary alone, to \nyawn and shake himself, and finally to fall asleep before the fire.\n\n'Now, Mr Gashford sir,' said John Grueby in his ear, after what \nappeared to him a moment of unconsciousness; 'my lord's abed.'\n\n'Oh.  Very good, John,' was his mild reply.  'Thank you, John.  \nNobody need sit up.  I know my room.'\n\n'I hope you're not a-going to trouble your head to-night, or my \nlord's head neither, with anything more about Bloody Mary,' said \nJohn.  'I wish the blessed old creetur had never been born.'\n\n'I said you might go to bed, John,' returned the secretary.  'You \ndidn't hear me, I think.'\n\n'Between Bloody Marys, and blue cockades, and glorious Queen \nBesses, and no Poperys, and Protestant associations, and making of \nspeeches,' pursued John Grueby, looking, as usual, a long way off, \nand taking no notice of this hint, 'my lord's half off his head.  \nWhen we go out o' doors, such a set of ragamuffins comes a-\nshouting after us, \"Gordon forever!\" that I'm ashamed of myself \nand don't know where to look.  When we're indoors, they come a-\nroaring and screaming about the house like so many devils; and my \nlord instead of ordering them to be drove away, goes out into the \nbalcony and demeans himself by making speeches to 'em, and calls \n'em \"Men of England,\" and \"Fellow-countrymen,\" as if he was fond of \n'em and thanked 'em for coming.  I can't make it out, but they're \nall mixed up somehow or another with that unfort'nate Bloody Mary, \nand call her name out till they're hoarse.  They're all Protestants \ntoo--every man and boy among 'em: and Protestants are very fond of \nspoons, I find, and silver-plate in general, whenever area-gates is \nleft open accidentally.  I wish that was the worst of it, and that \nno more harm might be to come; but if you don't stop these ugly \ncustomers in time, Mr Gashford (and I know you; you're the man that \nblows the fire), you'll find 'em grow a little bit too strong for \nyou.  One of these evenings, when the weather gets warmer and \nProtestants are thirsty, they'll be pulling London down,--and I \nnever heard that Bloody Mary went as far as THAT.'\n\nGashford had vanished long ago, and these remarks had been bestowed \non empty air.  Not at all discomposed by the discovery, John Grueby \nfixed his hat on, wrongside foremost that he might be unconscious \nof the shadow of the obnoxious cockade, and withdrew to bed; \nshaking his head in a very gloomy and prophetic manner until he \nreached his chamber.\n\n\n\nChapter 36\n\n\nGashford, with a smiling face, but still with looks of profound \ndeference and humility, betook himself towards his master's room, \nsmoothing his hair down as he went, and humming a psalm tune.  As \nhe approached Lord George's door, he cleared his throat and hummed \nmore vigorously.\n\nThere was a remarkable contrast between this man's occupation at \nthe moment, and the expression of his countenance, which was \nsingularly repulsive and malicious.  His beetling brow almost \nobscured his eyes; his lip was curled contemptuously; his very \nshoulders seemed to sneer in stealthy whisperings with his great \nflapped ears.\n\n'Hush!' he muttered softly, as he peeped in at the chamber-door.  \n'He seems to be asleep.  Pray Heaven he is!  Too much watching, too \nmuch care, too much thought--ah! Lord preserve him for a martyr!  \nHe is a saint, if ever saint drew breath on this bad earth.'\n\nPlacing his light upon a table, he walked on tiptoe to the fire, \nand sitting in a chair before it with his back towards the bed, \nwent on communing with himself like one who thought aloud:\n\n'The saviour of his country and his country's religion, the friend \nof his poor countrymen, the enemy of the proud and harsh; beloved \nof the rejected and oppressed, adored by forty thousand bold and \nloyal English hearts--what happy slumbers his should be!'  And here \nhe sighed, and warmed his hands, and shook his head as men do when \ntheir hearts are full, and heaved another sigh, and warmed his \nhands again.\n\n'Why, Gashford?' said Lord George, who was lying broad awake, upon \nhis side, and had been staring at him from his entrance.\n\n'My--my lord,' said Gashford, starting and looking round as though \nin great surprise.  'I have disturbed you!'\n\n'I have not been sleeping.'\n\n'Not sleeping!' he repeated, with assumed confusion.  'What can I \nsay for having in your presence given utterance to thoughts--but \nthey were sincere--they were sincere!' exclaimed the secretary, \ndrawing his sleeve in a hasty way across his eyes; 'and why should \nI regret your having heard them?'\n\n'Gashford,' said the poor lord, stretching out his hand with \nmanifest emotion.  'Do not regret it.  You love me well, I know--\ntoo well.  I don't deserve such homage.'\n\nGashford made no reply, but grasped the hand and pressed it to his \nlips.  Then rising, and taking from the trunk a little desk, he \nplaced it on a table near the fire, unlocked it with a key he \ncarried in his pocket, sat down before it, took out a pen, and, \nbefore dipping it in the inkstand, sucked it--to compose the \nfashion of his mouth perhaps, on which a smile was hovering yet.\n\n'How do our numbers stand since last enrolling-night?' inquired \nLord George.  'Are we really forty thousand strong, or do we still \nspeak in round numbers when we take the Association at that amount?'\n\n'Our total now exceeds that number by a score and three,' Gashford \nreplied, casting his eyes upon his papers.\n\n'The funds?'\n\n'Not VERY improving; but there is some manna in the wilderness, my \nlord.  Hem!  On Friday night the widows' mites dropped in.  \"Forty \nscavengers, three and fourpence.  An aged pew-opener of St Martin's \nparish, sixpence.  A bell-ringer of the established church, \nsixpence.  A Protestant infant, newly born, one halfpenny.  The \nUnited Link Boys, three shillings--one bad.  The anti-popish \nprisoners in Newgate, five and fourpence.  A friend in Bedlam, \nhalf-a-crown.  Dennis the hangman, one shilling.\"'\n\n'That Dennis,' said his lordship, 'is an earnest man.  I marked him \nin the crowd in Welbeck Street, last Friday.'\n\n'A good man,' rejoined the secretary, 'a staunch, sincere, and \ntruly zealous man.'\n\n'He should be encouraged,' said Lord George.  'Make a note of \nDennis.  I'll talk with him.'\n\nGashford obeyed, and went on reading from his list:\n\n'\"The Friends of Reason, half-a-guinea.  The Friends of Liberty, \nhalf-a-guinea.  The Friends of Peace, half-a-guinea.  The Friends \nof Charity, half-a-guinea.  The Friends of Mercy, half-a-guinea.  \nThe Associated Rememberers of Bloody Mary, half-a-guinea.  The \nUnited Bulldogs, half-a-guinea.\"'\n\n'The United Bulldogs,' said Lord George, biting his nails most \nhorribly, 'are a new society, are they not?'\n\n'Formerly the 'Prentice Knights, my lord.  The indentures of the \nold members expiring by degrees, they changed their name, it seems, \nthough they still have 'prentices among them, as well as workmen.'\n\n'What is their president's name?' inquired Lord George.\n\n'President,' said Gashford, reading, 'Mr Simon Tappertit.'\n\n'I remember him.  The little man, who sometimes brings an elderly \nsister to our meetings, and sometimes another female too, who is \nconscientious, I have no doubt, but not well-favoured?'\n\n'The very same, my lord.'\n\n'Tappertit is an earnest man,' said Lord George, thoughtfully.  \n'Eh, Gashford?'\n\n'One of the foremost among them all, my lord.  He snuffs the battle \nfrom afar, like the war-horse.  He throws his hat up in the street \nas if he were inspired, and makes most stirring speeches from the \nshoulders of his friends.'\n\n'Make a note of Tappertit,' said Lord George Gordon.  'We may \nadvance him to a place of trust.'\n\n'That,' rejoined the secretary, doing as he was told, 'is all--\nexcept Mrs Varden's box (fourteenth time of opening), seven \nshillings and sixpence in silver and copper, and half-a-guinea in \ngold; and Miggs (being the saving of a quarter's wages), one-and-\nthreepence.'\n\n'Miggs,' said Lord George.  'Is that a man?'\n\n'The name is entered on the list as a woman,' replied the \nsecretary.  'I think she is the tall spare female of whom you spoke \njust now, my lord, as not being well-favoured, who sometimes comes \nto hear the speeches--along with Tappertit and Mrs Varden.'\n\n'Mrs Varden is the elderly lady then, is she?'\n\nThe secretary nodded, and rubbed the bridge of his nose with the \nfeather of his pen.\n\n'She is a zealous sister,' said Lord George.  'Her collection goes \non prosperously, and is pursued with fervour.  Has her husband \njoined?'\n\n'A malignant,' returned the secretary, folding up his papers.  \n'Unworthy such a wife.  He remains in outer darkness and steadily \nrefuses.'\n\n'The consequences be upon his own head!--Gashford!'\n\n'My lord!'\n\n'You don't think,' he turned restlessly in his bed as he spoke, \n'these people will desert me, when the hour arrives?  I have spoken \nboldly for them, ventured much, suppressed nothing.  They'll not \nfall off, will they?'\n\n'No fear of that, my lord,' said Gashford, with a meaning look, \nwhich was rather the involuntary expression of his own thoughts \nthan intended as any confirmation of his words, for the other's \nface was turned away.  'Be sure there is no fear of that.'\n\n'Nor,' he said with a more restless motion than before, 'of their--\nbut they CAN sustain no harm from leaguing for this purpose.  Right \nis on our side, though Might may be against us.  You feel as sure \nof that as I--honestly, you do?'\n\nThe secretary was beginning with 'You do not doubt,' when the other \ninterrupted him, and impatiently rejoined:\n\n'Doubt.  No.  Who says I doubt?  If I doubted, should I cast away \nrelatives, friends, everything, for this unhappy country's sake; \nthis unhappy country,' he cried, springing up in bed, after \nrepeating the phrase 'unhappy country's sake' to himself, at least \na dozen times, 'forsaken of God and man, delivered over to a \ndangerous confederacy of Popish powers; the prey of corruption, \nidolatry, and despotism!  Who says I doubt?  Am I called, and \nchosen, and faithful?  Tell me.  Am I, or am I not?'\n\n'To God, the country, and yourself,' cried Gashford.\n\n'I am.  I will be.  I say again, I will be: to the block.  Who says \nas much!  Do you?  Does any man alive?'\n\nThe secretary drooped his head with an expression of perfect \nacquiescence in anything that had been said or might be; and Lord \nGeorge gradually sinking down upon his pillow, fell asleep.\n\nAlthough there was something very ludicrous in his vehement manner, \ntaken in conjunction with his meagre aspect and ungraceful \npresence, it would scarcely have provoked a smile in any man of \nkindly feeling; or even if it had, he would have felt sorry and \nalmost angry with himself next moment, for yielding to the impulse.  \nThis lord was sincere in his violence and in his wavering.  A \nnature prone to false enthusiasm, and the vanity of being a leader, \nwere the worst qualities apparent in his composition.  All the rest \nwas weakness--sheer weakness; and it is the unhappy lot of \nthoroughly weak men, that their very sympathies, affections, \nconfidences--all the qualities which in better constituted minds \nare virtues--dwindle into foibles, or turn into downright vices.\n\nGashford, with many a sly look towards the bed, sat chuckling at \nhis master's folly, until his deep and heavy breathing warned him \nthat he might retire.  Locking his desk, and replacing it within \nthe trunk (but not before he had taken from a secret lining two \nprinted handbills), he cautiously withdrew; looking back, as he \nwent, at the pale face of the slumbering man, above whose head the \ndusty plumes that crowned the Maypole couch, waved drearily and \nsadly as though it were a bier.\n\nStopping on the staircase to listen that all was quiet, and to take \noff his shoes lest his footsteps should alarm any light sleeper who \nmight be near at hand, he descended to the ground floor, and thrust \none of his bills beneath the great door of the house.  That done, \nhe crept softly back to his own chamber, and from the window let \nanother fall--carefully wrapt round a stone to save it from the \nwind--into the yard below.\n\nThey were addressed on the back 'To every Protestant into whose \nhands this shall come,' and bore within what follows:\n\n'Men and Brethren.  Whoever shall find this letter, will take it as \na warning to join, without delay, the friends of Lord George \nGordon.  There are great events at hand; and the times are \ndangerous and troubled.  Read this carefully, keep it clean, and \ndrop it somewhere else.  For King and Country.  Union.'\n\n'More seed, more seed,' said Gashford as he closed the window.  \n'When will the harvest come!'\n\n\n\nChapter 37\n\n\nTo surround anything, however monstrous or ridiculous, with an air \nof mystery, is to invest it with a secret charm, and power of \nattraction which to the crowd is irresistible.  False priests, \nfalse prophets, false doctors, false patriots, false prodigies of \nevery kind, veiling their proceedings in mystery, have always \naddressed themselves at an immense advantage to the popular \ncredulity, and have been, perhaps, more indebted to that resource \nin gaining and keeping for a time the upper hand of Truth and \nCommon Sense, than to any half-dozen items in the whole catalogue \nof imposture.  Curiosity is, and has been from the creation of the \nworld, a master-passion.  To awaken it, to gratify it by slight \ndegrees, and yet leave something always in suspense, is to \nestablish the surest hold that can be had, in wrong, on the \nunthinking portion of mankind.\n\nIf a man had stood on London Bridge, calling till he was hoarse, \nupon the passers-by, to join with Lord George Gordon, although for \nan object which no man understood, and which in that very incident \nhad a charm of its own,--the probability is, that he might have \ninfluenced a score of people in a month.  If all zealous \nProtestants had been publicly urged to join an association for the \navowed purpose of singing a hymn or two occasionally, and hearing \nsome indifferent speeches made, and ultimately of petitioning \nParliament not to pass an act for abolishing the penal laws against \nRoman Catholic priests, the penalty of perpetual imprisonment \ndenounced against those who educated children in that persuasion, \nand the disqualification of all members of the Romish church to \ninherit real property in the United Kingdom by right of purchase or \ndescent,--matters so far removed from the business and bosoms of \nthe mass, might perhaps have called together a hundred people.  But \nwhen vague rumours got abroad, that in this Protestant association \na secret power was mustering against the government for undefined \nand mighty purposes; when the air was filled with whispers of a \nconfederacy among the Popish powers to degrade and enslave England, \nestablish an inquisition in London, and turn the pens of Smithfield \nmarket into stakes and cauldrons; when terrors and alarms which no \nman understood were perpetually broached, both in and out of \nParliament, by one enthusiast who did not understand himself, and \nbygone bugbears which had lain quietly in their graves for \ncenturies, were raised again to haunt the ignorant and credulous; \nwhen all this was done, as it were, in the dark, and secret \ninvitations to join the Great Protestant Association in defence of \nreligion, life, and liberty, were dropped in the public ways, \nthrust under the house-doors, tossed in at windows, and pressed \ninto the hands of those who trod the streets by night; when they \nglared from every wall, and shone on every post and pillar, so that \nstocks and stones appeared infected with the common fear, urging \nall men to join together blindfold in resistance of they knew not \nwhat, they knew not why;--then the mania spread indeed, and the \nbody, still increasing every day, grew forty thousand strong.\n\nSo said, at least, in this month of March, 1780, Lord George \nGordon, the Association's president.  Whether it was the fact or \notherwise, few men knew or cared to ascertain.  It had never made \nany public demonstration; had scarcely ever been heard of, save \nthrough him; had never been seen; and was supposed by many to be \nthe mere creature of his disordered brain.  He was accustomed to \ntalk largely about numbers of men--stimulated, as it was inferred, \nby certain successful disturbances, arising out of the same \nsubject, which had occurred in Scotland in the previous year; was \nlooked upon as a cracked-brained member of the lower house, who \nattacked all parties and sided with none, and was very little \nregarded.  It was known that there was discontent abroad--there \nalways is; he had been accustomed to address the people by placard, \nspeech, and pamphlet, upon other questions; nothing had come, in \nEngland, of his past exertions, and nothing was apprehended from \nhis present.  Just as he has come upon the reader, he had come, \nfrom time to time, upon the public, and been forgotten in a day; as \nsuddenly as he appears in these pages, after a blank of five long \nyears, did he and his proceedings begin to force themselves, about \nthis period, upon the notice of thousands of people, who had \nmingled in active life during the whole interval, and who, without \nbeing deaf or blind to passing events, had scarcely ever thought of \nhim before.\n\n'My lord,' said Gashford in his ear, as he drew the curtains of his \nbed betimes; 'my lord!'\n\n'Yes--who's that?  What is it?'\n\n'The clock has struck nine,' returned the secretary, with meekly \nfolded hands.  'You have slept well?  I hope you have slept well?  \nIf my prayers are heard, you are refreshed indeed.'\n\n'To say the truth, I have slept so soundly,' said Lord George, \nrubbing his eyes and looking round the room, 'that I don't remember \nquite--what place is this?'\n\n'My lord!' cried Gashford, with a smile.\n\n'Oh!' returned his superior.  'Yes.  You're not a Jew then?'\n\n'A Jew!' exclaimed the pious secretary, recoiling.\n\n'I dreamed that we were Jews, Gashford.  You and I--both of us--\nJews with long beards.'\n\n'Heaven forbid, my lord!  We might as well be Papists.'\n\n'I suppose we might,' returned the other, very quickly.  'Eh?  You \nreally think so, Gashford?'\n\n'Surely I do,' the secretary cried, with looks of great surprise.\n\n'Humph!' he muttered.  'Yes, that seems reasonable.'\n\n'I hope my lord--' the secretary began.\n\n'Hope!' he echoed, interrupting him.  'Why do you say, you hope?  \nThere's no harm in thinking of such things.'\n\n'Not in dreams,' returned the Secretary.\n\n'In dreams!  No, nor waking either.'\n\n--'\"Called, and chosen, and faithful,\"' said Gashford, taking up \nLord George's watch which lay upon a chair, and seeming to read the \ninscription on the seal, abstractedly.\n\nIt was the slightest action possible, not obtruded on his notice, \nand apparently the result of a moment's absence of mind, not worth \nremark.  But as the words were uttered, Lord George, who had been \ngoing on impetuously, stopped short, reddened, and was silent.  \nApparently quite unconscious of this change in his demeanour, the \nwily Secretary stepped a little apart, under pretence of pulling up \nthe window-blind, and returning when the other had had time to \nrecover, said:\n\n'The holy cause goes bravely on, my lord.  I was not idle, even \nlast night.  I dropped two of the handbills before I went to bed, \nand both are gone this morning.  Nobody in the house has mentioned \nthe circumstance of finding them, though I have been downstairs \nfull half-an-hour.  One or two recruits will be their first fruit, \nI predict; and who shall say how many more, with Heaven's blessing \non your inspired exertions!'\n\n'It was a famous device in the beginning,' replied Lord George; 'an \nexcellent device, and did good service in Scotland.  It was quite \nworthy of you.  You remind me not to be a sluggard, Gashford, when \nthe vineyard is menaced with destruction, and may be trodden down \nby Papist feet.  Let the horses be saddled in half-an-hour.  We \nmust be up and doing!'\n\nHe said this with a heightened colour, and in a tone of such \nenthusiasm, that the secretary deemed all further prompting \nneedless, and withdrew.\n\n--'Dreamed he was a Jew,' he said thoughtfully, as he closed the \nbedroom door.  'He may come to that before he dies.  It's like \nenough.  Well!  After a time, and provided I lost nothing by it, I \ndon't see why that religion shouldn't suit me as well as any \nother.  There are rich men among the Jews; shaving is very \ntroublesome;--yes, it would suit me well enough.  For the present, \nthough, we must be Christian to the core.  Our prophetic motto will \nsuit all creeds in their turn, that's a comfort.'  Reflecting on \nthis source of consolation, he reached the sitting-room, and rang \nthe bell for breakfast.\n\nLord George was quickly dressed (for his plain toilet was easily \nmade), and as he was no less frugal in his repasts than in his \nPuritan attire, his share of the meal was soon dispatched.  The \nsecretary, however, more devoted to the good things of this world, \nor more intent on sustaining his strength and spirits for the sake \nof the Protestant cause, ate and drank to the last minute, and \nrequired indeed some three or four reminders from John Grueby, \nbefore he could resolve to tear himself away from Mr Willet's \nplentiful providing.\n\nAt length he came downstairs, wiping his greasy mouth, and having \npaid John Willet's bill, climbed into his saddle.  Lord George, who \nhad been walking up and down before the house talking to himself \nwith earnest gestures, mounted his horse; and returning old John \nWillet's stately bow, as well as the parting salutation of a dozen \nidlers whom the rumour of a live lord being about to leave the \nMaypole had gathered round the porch, they rode away, with stout \nJohn Grueby in the rear.\n\nIf Lord George Gordon had appeared in the eyes of Mr Willet, \novernight, a nobleman of somewhat quaint and odd exterior, the \nimpression was confirmed this morning, and increased a hundredfold.  \nSitting bolt upright upon his bony steed, with his long, straight \nhair, dangling about his face and fluttering in the wind; his limbs \nall angular and rigid, his elbows stuck out on either side \nungracefully, and his whole frame jogged and shaken at every motion \nof his horse's feet; a more grotesque or more ungainly figure can \nhardly be conceived.  In lieu of whip, he carried in his hand a \ngreat gold-headed cane, as large as any footman carries in these \ndays, and his various modes of holding this unwieldy weapon--now \nupright before his face like the sabre of a horse-soldier, now over \nhis shoulder like a musket, now between his finger and thumb, but \nalways in some uncouth and awkward fashion--contributed in no small \ndegree to the absurdity of his appearance.  Stiff, lank, and \nsolemn, dressed in an unusual manner, and ostentatiously \nexhibiting--whether by design or accident--all his peculiarities of \ncarriage, gesture, and conduct, all the qualities, natural and \nartificial, in which he differed from other men; he might have \nmoved the sternest looker-on to laughter, and fully provoked the \nsmiles and whispered jests which greeted his departure from the \nMaypole inn.\n\nQuite unconscious, however, of the effect he produced, he trotted \non beside his secretary, talking to himself nearly all the way, \nuntil they came within a mile or two of London, when now and then \nsome passenger went by who knew him by sight, and pointed him out \nto some one else, and perhaps stood looking after him, or cried in \njest or earnest as it might be, 'Hurrah Geordie!  No Popery!'  At \nwhich he would gravely pull off his hat, and bow.  When they \nreached the town and rode along the streets, these notices became \nmore frequent; some laughed, some hissed, some turned their heads \nand smiled, some wondered who he was, some ran along the pavement \nby his side and cheered.  When this happened in a crush of carts \nand chairs and coaches, he would make a dead stop, and pulling off \nhis hat, cry, 'Gentlemen, No Popery!' to which the gentlemen would \nrespond with lusty voices, and with three times three; and then, on \nhe would go again with a score or so of the raggedest, following at \nhis horse's heels, and shouting till their throats were parched.\n\nThe old ladies too--there were a great many old ladies in the \nstreets, and these all knew him.  Some of them--not those of the \nhighest rank, but such as sold fruit from baskets and carried \nburdens--clapped their shrivelled hands, and raised a weazen, \npiping, shrill 'Hurrah, my lord.'  Others waved their hands or \nhandkerchiefs, or shook their fans or parasols, or threw up windows \nand called in haste to those within, to come and see.  All these \nmarks of popular esteem, he received with profound gravity and \nrespect; bowing very low, and so frequently that his hat was more \noff his head than on; and looking up at the houses as he passed \nalong, with the air of one who was making a public entry, and yet \nwas not puffed up or proud.\n\nSo they rode (to the deep and unspeakable disgust of John Grueby) \nthe whole length of Whitechapel, Leadenhall Street, and Cheapside, \nand into St Paul's Churchyard.  Arriving close to the cathedral, he \nhalted; spoke to Gashford; and looking upward at its lofty dome, \nshook his head, as though he said, 'The Church in Danger!'  Then to \nbe sure, the bystanders stretched their throats indeed; and he went \non again with mighty acclamations from the mob, and lower bows than \never.\n\nSo along the Strand, up Swallow Street, into the Oxford Road, and \nthence to his house in Welbeck Street, near Cavendish Square, \nwhither he was attended by a few dozen idlers; of whom he took \nleave on the steps with this brief parting, 'Gentlemen, No Popery.  \nGood day.  God bless you.'  This being rather a shorter address \nthan they expected, was received with some displeasure, and cries \nof 'A speech! a speech!' which might have been complied with, but \nthat John Grueby, making a mad charge upon them with all three \nhorses, on his way to the stables, caused them to disperse into the \nadjoining fields, where they presently fell to pitch and toss, \nchuck-farthing, odd or even, dog-fighting, and other Protestant \nrecreations.\n\nIn the afternoon Lord George came forth again, dressed in a black \nvelvet coat, and trousers and waistcoat of the Gordon plaid, all of \nthe same Quaker cut; and in this costume, which made him look a \ndozen times more strange and singular than before, went down on \nfoot to Westminster.  Gashford, meanwhile, bestirred himself in \nbusiness matters; with which he was still engaged when, shortly \nafter dusk, John Grueby entered and announced a visitor.\n\n'Let him come in,' said Gashford.\n\n'Here! come in!' growled John to somebody without; 'You're a \nProtestant, an't you?'\n\n'I should think so,' replied a deep, gruff voice.\n\n'You've the looks of it,' said John Grueby.  'I'd have known you \nfor one, anywhere.'  With which remark he gave the visitor \nadmission, retired, and shut the door.\n\nThe man who now confronted Gashford, was a squat, thickset \npersonage, with a low, retreating forehead, a coarse shock head of \nhair, and eyes so small and near together, that his broken nose \nalone seemed to prevent their meeting and fusing into one of the \nusual size.  A dingy handkerchief twisted like a cord about his \nneck, left its great veins exposed to view, and they were swollen \nand starting, as though with gulping down strong passions, malice, \nand ill-will.  His dress was of threadbare velveteen--a faded, \nrusty, whitened black, like the ashes of a pipe or a coal fire \nafter a day's extinction; discoloured with the soils of many a \nstale debauch, and reeking yet with pot-house odours.  In lieu of \nbuckles at his knees, he wore unequal loops of packthread; and in \nhis grimy hands he held a knotted stick, the knob of which was \ncarved into a rough likeness of his own vile face.  Such was the \nvisitor who doffed his three-cornered hat in Gashford's presence, \nand waited, leering, for his notice.\n\n'Ah! Dennis!' cried the secretary.  'Sit down.'\n\n'I see my lord down yonder--' cried the man, with a jerk of his \nthumb towards the quarter that he spoke of, 'and he says to me, \nsays my lord, \"If you've nothing to do, Dennis, go up to my house \nand talk with Muster Gashford.\"  Of course I'd nothing to do, you \nknow.  These an't my working hours.  Ha ha!  I was a-taking the air \nwhen I see my lord, that's what I was doing.  I takes the air by \nnight, as the howls does, Muster Gashford.'\n\nAnd sometimes in the day-time, eh?' said the secretary--'when you \ngo out in state, you know.'\n\n'Ha ha!' roared the fellow, smiting his leg; 'for a gentleman as \n'ull say a pleasant thing in a pleasant way, give me Muster \nGashford agin' all London and Westminster!  My lord an't a bad 'un \nat that, but he's a fool to you.  Ah to be sure,--when I go out in \nstate.'\n\n'And have your carriage,' said the secretary; 'and your chaplain, \neh? and all the rest of it?'\n\n'You'll be the death of me,' cried Dennis, with another roar, 'you \nwill.  But what's in the wind now, Muster Gashford,' he asked \nhoarsely, 'Eh?  Are we to be under orders to pull down one of them \nPopish chapels--or what?'\n\n'Hush!' said the secretary, suffering the faintest smile to play \nupon his face.  'Hush!  God bless me, Dennis!  We associate, you \nknow, for strictly peaceable and lawful purposes.'\n\n'I know, bless you,' returned the man, thrusting his tongue into \nhis cheek; 'I entered a' purpose, didn't I!'\n\n'No doubt,' said Gashford, smiling as before.  And when he said so, \nDennis roared again, and smote his leg still harder, and falling \ninto fits of laughter, wiped his eyes with the corner of his \nneckerchief, and cried, 'Muster Gashford agin' all England hollow!'\n\n'Lord George and I were talking of you last night,' said Gashford, \nafter a pause.  'He says you are a very earnest fellow.'\n\n'So I am,' returned the hangman.\n\n'And that you truly hate the Papists.'\n\n'So I do,' and he confirmed it with a good round oath.  'Lookye \nhere, Muster Gashford,' said the fellow, laying his hat and stick \nupon the floor, and slowly beating the palm of one hand with the \nfingers of the other; 'Ob-serve.  I'm a constitutional officer that \nworks for my living, and does my work creditable.  Do I, or do I \nnot?'\n\n'Unquestionably.'\n\n'Very good.  Stop a minute.  My work, is sound, Protestant, \nconstitutional, English work.  Is it, or is it not?'\n\n'No man alive can doubt it.'\n\n'Nor dead neither.  Parliament says this here--says Parliament, \"If \nany man, woman, or child, does anything which goes again a certain \nnumber of our acts\"--how many hanging laws may there be at this \npresent time, Muster Gashford?  Fifty?'\n\n'I don't exactly know how many,' replied Gashford, leaning back in \nhis chair and yawning; 'a great number though.'\n\n'Well, say fifty.  Parliament says, \"If any man, woman, or child, \ndoes anything again any one of them fifty acts, that man, woman, or \nchild, shall be worked off by Dennis.\"  George the Third steps in \nwhen they number very strong at the end of a sessions, and says, \n\"These are too many for Dennis.  I'll have half for myself and \nDennis shall have half for himself;\" and sometimes he throws me in \none over that I don't expect, as he did three year ago, when I got \nMary Jones, a young woman of nineteen who come up to Tyburn with a \ninfant at her breast, and was worked off for taking a piece of \ncloth off the counter of a shop in Ludgate Hill, and putting it \ndown again when the shopman see her; and who had never done any \nharm before, and only tried to do that, in consequence of her \nhusband having been pressed three weeks previous, and she being \nleft to beg, with two young children--as was proved upon the trial.  \nHa ha!--Well!  That being the law and the practice of England, is \nthe glory of England, an't it, Muster Gashford?'\n\n'Certainly,' said the secretary.\n\n'And in times to come,' pursued the hangman, 'if our grandsons \nshould think of their grandfathers' times, and find these things \naltered, they'll say, \"Those were days indeed, and we've been going \ndown hill ever since.\"  Won't they, Muster Gashford?'\n\n'I have no doubt they will,' said the secretary.\n\n'Well then, look here,' said the hangman.  'If these Papists gets \ninto power, and begins to boil and roast instead of hang, what \nbecomes of my work!  If they touch my work that's a part of so many \nlaws, what becomes of the laws in general, what becomes of the \nreligion, what becomes of the country!--Did you ever go to church, \nMuster Gashford?'\n\n'Ever!' repeated the secretary with some indignation; 'of course.'\n\n'Well,' said the ruffian, 'I've been once--twice, counting the time \nI was christened--and when I heard the Parliament prayed for, and \nthought how many new hanging laws they made every sessions, I \nconsidered that I was prayed for.  Now mind, Muster Gashford,' said \nthe fellow, taking up his stick and shaking it with a ferocious \nair, 'I mustn't have my Protestant work touched, nor this here \nProtestant state of things altered in no degree, if I can help it; \nI mustn't have no Papists interfering with me, unless they come to \nbe worked off in course of law; I mustn't have no biling, no \nroasting, no frying--nothing but hanging.  My lord may well call \nme an earnest fellow.  In support of the great Protestant principle \nof having plenty of that, I'll,' and here he beat his club upon the \nground, 'burn, fight, kill--do anything you bid me, so that it's \nbold and devilish--though the end of it was, that I got hung \nmyself.--There, Muster Gashford!'\n\nHe appropriately followed up this frequent prostitution of a noble \nword to the vilest purposes, by pouring out in a kind of ecstasy at \nleast a score of most tremendous oaths; then wiped his heated face \nupon his neckerchief, and cried, 'No Popery!  I'm a religious man, \nby G--!'\n\nGashford had leant back in his chair, regarding him with eyes so \nsunken, and so shadowed by his heavy brows, that for aught the \nhangman saw of them, he might have been stone blind.  He remained \nsmiling in silence for a short time longer, and then said, slowly \nand distinctly:\n\n'You are indeed an earnest fellow, Dennis--a most valuable fellow--\nthe staunchest man I know of in our ranks.  But you must calm \nyourself; you must be peaceful, lawful, mild as any lamb.  I am \nsure you will be though.'\n\n'Ay, ay, we shall see, Muster Gashford, we shall see.  You won't \nhave to complain of me,' returned the other, shaking his head.\n\n'I am sure I shall not,' said the secretary in the same mild tone, \nand with the same emphasis.  'We shall have, we think, about next \nmonth, or May, when this Papist relief bill comes before the house, \nto convene our whole body for the first time.  My lord has thoughts \nof our walking in procession through the streets--just as an \ninnocent display of strength--and accompanying our petition down to \nthe door of the House of Commons.'\n\n'The sooner the better,' said Dennis, with another oath.\n\n'We shall have to draw up in divisions, our numbers being so large; \nand, I believe I may venture to say,' resumed Gashford, affecting \nnot to hear the interruption, 'though I have no direct instructions \nto that effect--that Lord George has thought of you as an excellent \nleader for one of these parties.  I have no doubt you would be an \nadmirable one.'\n\n'Try me,' said the fellow, with an ugly wink.\n\n'You would be cool, I know,' pursued the secretary, still smiling, \nand still managing his eyes so that he could watch him closely, and \nreally not be seen in turn, 'obedient to orders, and perfectly \ntemperate.  You would lead your party into no danger, I am certain.'\n\n'I'd lead them, Muster Gashford,'--the hangman was beginning in a \nreckless way, when Gashford started forward, laid his finger on his \nlips, and feigned to write, just as the door was opened by John \nGrueby.\n\n'Oh!' said John, looking in; 'here's another Protestant.'\n\n'Some other room, John,' cried Gashford in his blandest voice.  'I \nam engaged just now.'\n\nBut John had brought this new visitor to the door, and he walked in \nunbidden, as the words were uttered; giving to view the form and \nfeatures, rough attire, and reckless air, of Hugh.\n\n\n\nChapter 38\n\n\nThe secretary put his hand before his eyes to shade them from the \nglare of the lamp, and for some moments looked at Hugh with a \nfrowning brow, as if he remembered to have seen him lately, but \ncould not call to mind where, or on what occasion.  His uncertainty \nwas very brief, for before Hugh had spoken a word, he said, as his \ncountenance cleared up:\n\n'Ay, ay, I recollect.  It's quite right, John, you needn't wait.  \nDon't go, Dennis.'\n\n'Your servant, master,' said Hugh, as Grueby disappeared.\n\n'Yours, friend,' returned the secretary in his smoothest manner.  \n'What brings YOU here?  We left nothing behind us, I hope?'\n\nHugh gave a short laugh, and thrusting his hand into his breast, \nproduced one of the handbills, soiled and dirty from lying out of \ndoors all night, which he laid upon the secretary's desk after \nflattening it upon his knee, and smoothing out the wrinkles with \nhis heavy palm.\n\n'Nothing but that, master.  It fell into good hands, you see.'\n\n'What is this!' said Gashford, turning it over with an air of \nperfectly natural surprise.  'Where did you get it from, my good \nfellow; what does it mean?  I don't understand this at all.'\n\nA little disconcerted by this reception, Hugh looked from the \nsecretary to Dennis, who had risen and was standing at the table \ntoo, observing the stranger by stealth, and seeming to derive the \nutmost satisfaction from his manners and appearance.  Considering \nhimself silently appealed to by this action, Mr Dennis shook his \nhead thrice, as if to say of Gashford, 'No.  He don't know anything \nat all about it.  I know he don't.  I'll take my oath he don't;' \nand hiding his profile from Hugh with one long end of his frowzy \nneckerchief, nodded and chuckled behind this screen in extreme \napproval of the secretary's proceedings.\n\n'It tells the man that finds it, to come here, don't it?' asked \nHugh.  'I'm no scholar, myself, but I showed it to a friend, and he \nsaid it did.'\n\n'It certainly does,' said Gashford, opening his eyes to their \nutmost width; 'really this is the most remarkable circumstance I \nhave ever known.  How did you come by this piece of paper, my good \nfriend?'\n\n'Muster Gashford,' wheezed the hangman under his breath, 'agin' all \nNewgate!'\n\nWhether Hugh heard him, or saw by his manner that he was being \nplayed upon, or perceived the secretary's drift of himself, he came \nin his blunt way to the point at once.\n\n'Here!' he said, stretching out his hand and taking it back; 'never \nmind the bill, or what it says, or what it don't say.  You don't \nknow anything about it, master,--no more do I,--no more does he,' \nglancing at Dennis.  'None of us know what it means, or where it \ncomes from: there's an end of that.  Now I want to make one against \nthe Catholics, I'm a No-Popery man, and ready to be sworn in.  \nThat's what I've come here for.'\n\n'Put him down on the roll, Muster Gashford,' said Dennis \napprovingly.  'That's the way to go to work--right to the end at \nonce, and no palaver.'\n\n'What's the use of shooting wide of the mark, eh, old boy!' cried \nHugh.\n\n'My sentiments all over!' rejoined the hangman.  'This is the sort \nof chap for my division, Muster Gashford.  Down with him, sir.  Put \nhim on the roll.  I'd stand godfather to him, if he was to be \nchristened in a bonfire, made of the ruins of the Bank of England.'\n\nWith these and other expressions of confidence of the like \nflattering kind, Mr Dennis gave him a hearty slap on the back, \nwhich Hugh was not slow to return.\n\n'No Popery, brother!' cried the hangman.\n\n'No Property, brother!' responded Hugh.\n\n'Popery, Popery,' said the secretary with his usual mildness.\n\n'It's all the same!' cried Dennis.  'It's all right.  Down with \nhim, Muster Gashford.  Down with everybody, down with everything!  \nHurrah for the Protestant religion!  That's the time of day, \nMuster Gashford!'\n\nThe secretary regarded them both with a very favourable expression \nof countenance, while they gave loose to these and other \ndemonstrations of their patriotic purpose; and was about to make \nsome remark aloud, when Dennis, stepping up to him, and shading his \nmouth with his hand, said, in a hoarse whisper, as he nudged him \nwith his elbow:\n\n'Don't split upon a constitutional officer's profession, Muster \nGashford.  There are popular prejudices, you know, and he mightn't \nlike it.  Wait till he comes to be more intimate with me.  He's a \nfine-built chap, an't he?'\n\n'A powerful fellow indeed!'\n\n'Did you ever, Muster Gashford,' whispered Dennis, with a horrible \nkind of admiration, such as that with which a cannibal might regard \nhis intimate friend, when hungry,--'did you ever--and here he drew \nstill closer to his ear, and fenced his mouth with both his open \nbands--'see such a throat as his?  Do but cast your eye upon it.  \nThere's a neck for stretching, Muster Gashford!'\n\nThe secretary assented to this proposition with the best grace he \ncould assume--it is difficult to feign a true professional relish: \nwhich is eccentric sometimes--and after asking the candidate a few \nunimportant questions, proceeded to enrol him a member of the Great \nProtestant Association of England.  If anything could have exceeded \nMr Dennis's joy on the happy conclusion of this ceremony, it would \nhave been the rapture with which he received the announcement that \nthe new member could neither read nor write: those two arts being \n(as Mr Dennis swore) the greatest possible curse a civilised \ncommunity could know, and militating more against the professional \nemoluments and usefulness of the great constitutional office he had \nthe honour to hold, than any adverse circumstances that could \npresent themselves to his imagination.\n\nThe enrolment being completed, and Hugh having been informed by \nGashford, in his peculiar manner, of the peaceful and strictly \nlawful objects contemplated by the body to which he now belonged--\nduring which recital Mr Dennis nudged him very much with his elbow, \nand made divers remarkable faces--the secretary gave them both to \nunderstand that he desired to be alone.  Therefore they took their \nleaves without delay, and came out of the house together.\n\n'Are you walking, brother?' said Dennis.\n\n'Ay!' returned Hugh.  'Where you will.'\n\n'That's social,' said his new friend.  'Which way shall we take?  \nShall we go and have a look at doors that we shall make a pretty \ngood clattering at, before long--eh, brother?'\n\nHugh answering in the affirmative, they went slowly down to \nWestminster, where both houses of Parliament were then sitting.  \nMingling in the crowd of carriages, horses, servants, chairmen, \nlink-boys, porters, and idlers of all kinds, they lounged about; \nwhile Hugh's new friend pointed out to him significantly the weak \nparts of the building, how easy it was to get into the lobby, and \nso to the very door of the House of Commons; and how plainly, when \nthey marched down there in grand array, their roars and shouts \nwould be heard by the members inside; with a great deal more to the \nsame purpose, all of which Hugh received with manifest delight.\n\nHe told him, too, who some of the Lords and Commons were, by name, \nas they came in and out; whether they were friendly to the Papists \nor otherwise; and bade him take notice of their liveries and \nequipages, that he might be sure of them, in case of need.  \nSometimes he drew him close to the windows of a passing carriage, \nthat he might see its master's face by the light of the lamps; and, \nboth in respect of people and localities, he showed so much \nacquaintance with everything around, that it was plain he had often \nstudied there before; as indeed, when they grew a little more \nconfidential, he confessed he had.\n\nPerhaps the most striking part of all this was, the number of \npeople--never in groups of more than two or three together--who \nseemed to be skulking about the crowd for the same purpose.  To the \ngreater part of these, a slight nod or a look from Hugh's companion \nwas sufficient greeting; but, now and then, some man would come and \nstand beside him in the throng, and, without turning his head or \nappearing to communicate with him, would say a word or two in a low \nvoice, which he would answer in the same cautious manner.  Then \nthey would part, like strangers.  Some of these men often \nreappeared again unexpectedly in the crowd close to Hugh, and, as \nthey passed by, pressed his hand, or looked him sternly in the \nface; but they never spoke to him, nor he to them; no, not a word.\n\nIt was remarkable, too, that whenever they happened to stand where \nthere was any press of people, and Hugh chanced to be looking \ndownward, he was sure to see an arm stretched out--under his own \nperhaps, or perhaps across him--which thrust some paper into the \nhand or pocket of a bystander, and was so suddenly withdrawn that \nit was impossible to tell from whom it came; nor could he see in \nany face, on glancing quickly round, the least confusion or \nsurprise.  They often trod upon a paper like the one he carried in \nhis breast, but his companion whispered him not to touch it or to \ntake it up,--not even to look towards it,--so there they let them \nlie, and passed on.\n\nWhen they had paraded the street and all the avenues of the \nbuilding in this manner for near two hours, they turned away, and \nhis friend asked him what he thought of what he had seen, and \nwhether he was prepared for a good hot piece of work if it should \ncome to that.  The hotter the better,' said Hugh, 'I'm prepared for \nanything.'--'So am I,' said his friend, 'and so are many of us; \nand they shook hands upon it with a great oath, and with many \nterrible imprecations on the Papists.\n\nAs they were thirsty by this time, Dennis proposed that they should \nrepair together to The Boot, where there was good company and \nstrong liquor.  Hugh yielding a ready assent, they bent their steps \nthat way with no loss of time.\n\nThis Boot was a lone house of public entertainment, situated in the \nfields at the back of the Foundling Hospital; a very solitary spot \nat that period, and quite deserted after dark.  The tavern stood at \nsome distance from any high road, and was approachable only by a \ndark and narrow lane; so that Hugh was much surprised to find \nseveral people drinking there, and great merriment going on.  He \nwas still more surprised to find among them almost every face that \nhad caught his attention in the crowd; but his companion having \nwhispered him outside the door, that it was not considered good \nmanners at The Boot to appear at all curious about the company, he \nkept his own counsel, and made no show of recognition.\n\nBefore putting his lips to the liquor which was brought for them, \nDennis drank in a loud voice the health of Lord George Gordon, \nPresident of the Great Protestant Association; which toast Hugh \npledged likewise, with corresponding enthusiasm.  A fiddler who was \npresent, and who appeared to act as the appointed minstrel of the \ncompany, forthwith struck up a Scotch reel; and that in tones so \ninvigorating, that Hugh and his friend (who had both been drinking \nbefore) rose from their seats as by previous concert, and, to the \ngreat admiration of the assembled guests, performed an \nextemporaneous No-Popery Dance.\n\n\n\nChapter 39\n\n\nThe applause which the performance of Hugh and his new friend \nelicited from the company at The Boot, had not yet subsided, and \nthe two dancers were still panting from their exertions, which had \nbeen of a rather extreme and violent character, when the party was \nreinforced by the arrival of some more guests, who, being a \ndetachment of United Bulldogs, were received with very flattering \nmarks of distinction and respect.\n\nThe leader of this small party--for, including himself, they were \nbut three in number--was our old acquaintance, Mr Tappertit, who \nseemed, physically speaking, to have grown smaller with years \n(particularly as to his legs, which were stupendously little), but \nwho, in a moral point of view, in personal dignity and self-esteem, \nhad swelled into a giant.  Nor was it by any means difficult for \nthe most unobservant person to detect this state of feeling in the \nquondam 'prentice, for it not only proclaimed itself impressively \nand beyond mistake in his majestic walk and kindling eye, but found \na striking means of revelation in his turned-up nose, which scouted \nall things of earth with deep disdain, and sought communion with \nits kindred skies.\n\nMr Tappertit, as chief or captain of the Bulldogs, was attended by \nhis two lieutenants; one, the tall comrade of his younger life; the \nother, a 'Prentice Knight in days of yore--Mark Gilbert, bound in \nthe olden time to Thomas Curzon of the Golden Fleece.  These \ngentlemen, like himself, were now emancipated from their 'prentice \nthraldom, and served as journeymen; but they were, in humble \nemulation of his great example, bold and daring spirits, and \naspired to a distinguished state in great political events.  Hence \ntheir connection with the Protestant Association of England, \nsanctioned by the name of Lord George Gordon; and hence their \npresent visit to The Boot.\n\n'Gentlemen!' said Mr Tappertit, taking off his hat as a great \ngeneral might in addressing his troops.  'Well met.  My lord does \nme and you the honour to send his compliments per self.'\n\n'You've seen my lord too, have you?' said Dennis.  'I see him this \nafternoon.'\n\n'My duty called me to the Lobby when our shop shut up; and I saw \nhim there, sir,' Mr Tappertit replied, as he and his lieutenants \ntook their seats.  'How do YOU do?'\n\n'Lively, master, lively,' said the fellow.  'Here's a new brother, \nregularly put down in black and white by Muster Gashford; a credit \nto the cause; one of the stick-at-nothing sort; one arter my own \nheart.  D'ye see him?  Has he got the looks of a man that'll do, do \nyou think?' he cried, as he slapped Hugh on the back.\n\n'Looks or no looks,' said Hugh, with a drunken flourish of his arm, \n'I'm the man you want.  I hate the Papists, every one of 'em.  They \nhate me and I hate them.  They do me all the harm they can, and \nI'll do them all the harm I can.  Hurrah!'\n\n'Was there ever,' said Dennis, looking round the room, when the \necho of his boisterous voice bad died away; 'was there ever such a \ngame boy!  Why, I mean to say, brothers, that if Muster Gashford \nhad gone a hundred mile and got together fifty men of the common \nrun, they wouldn't have been worth this one.'\n\nThe greater part of the company implicitly subscribed to this \nopinion, and testified their faith in Hugh by nods and looks of \ngreat significance.  Mr Tappertit sat and contemplated him for a \nlong time in silence, as if he suspended his judgment; then drew a \nlittle nearer to him, and eyed him over more carefully; then went \nclose up to him, and took him apart into a dark corner.\n\n'I say,' he began, with a thoughtful brow, 'haven't I seen you \nbefore?'\n\n'It's like you may,' said Hugh, in his careless way.  'I don't \nknow; shouldn't wonder.'\n\n'No, but it's very easily settled,' returned Sim.  'Look at me.  \nDid you ever see ME before?  You wouldn't be likely to forget it, \nyou know, if you ever did.  Look at me.  Don't be afraid; I won't \ndo you any harm.  Take a good look--steady now.'\n\nThe encouraging way in which Mr Tappertit made this request, and \ncoupled it with an assurance that he needn't be frightened, amused \nHugh mightily--so much indeed, that be saw nothing at all of the \nsmall man before him, through closing his eyes in a fit of hearty \nlaughter, which shook his great broad sides until they ached again.\n\n'Come!' said Mr Tappertit, growing a little impatient under this \ndisrespectful treatment.  'Do you know me, feller?'\n\n'Not I,' cried Hugh.  'Ha ha ha!  Not I!  But I should like to.'\n\n'And yet I'd have wagered a seven-shilling piece,\" said Mr \nTappertit, folding his arms, and confronting him with his legs wide \napart and firmly planted on the ground, 'that you once were hostler \nat the Maypole.'\n\nHugh opened his eyes on hearing this, and looked at him in great \nsurprise.\n\n'--And so you were, too,' said Mr Tappertit, pushing him away with \na condescending playfulness.  'When did MY eyes ever deceive--\nunless it was a young woman!  Don't you know me now?'\n\n'Why it an't--' Hugh faltered.\n\n'An't it?' said Mr Tappertit.  'Are you sure of that?  You remember \nG. Varden, don't you?'\n\nCertainly Hugh did, and he remembered D. Varden too; but that he \ndidn't tell him.\n\n'You remember coming down there, before I was out of my time, to \nask after a vagabond that had bolted off, and left his disconsolate \nfather a prey to the bitterest emotions, and all the rest of it--\ndon't you?' said Mr Tappertit.\n\n'Of course I do!' cried Hugh.  'And I saw you there.'\n\n'Saw me there!' said Mr Tappertit.  'Yes, I should think you did \nsee me there.  The place would be troubled to go on without me.  \nDon't you remember my thinking you liked the vagabond, and on that \naccount going to quarrel with you; and then finding you detested \nhim worse than poison, going to drink with you?  Don't you remember \nthat?'\n\n'To be sure!' cried Hugh.\n\n'Well! and are you in the same mind now?' said Mr Tappertit.\n\n'Yes!' roared Hugh.\n\n'You speak like a man,' said Mr Tappertit, 'and I'll shake hands \nwith you.'  With these conciliatory expressions he suited the \naction to the word; and Hugh meeting his advances readily, they \nperformed the ceremony with a show of great heartiness.\n\n'I find,' said Mr Tappertit, looking round on the assembled guests, \n'that brother What's-his-name and I are old acquaintance.--You \nnever heard anything more of that rascal, I suppose, eh?'\n\n'Not a syllable,' replied Hugh.  'I never want to.  I don't believe \nI ever shall.  He's dead long ago, I hope.'\n\n'It's to be hoped, for the sake of mankind in general and the \nhappiness of society, that he is,' said Mr Tappertit, rubbing his \npalm upon his legs, and looking at it between whiles.  'Is your \nother hand at all cleaner?  Much the same.  Well, I'll owe you \nanother shake.  We'll suppose it done, if you've no objection.'\n\nHugh laughed again, and with such thorough abandonment to his mad \nhumour, that his limbs seemed dislocated, and his whole frame in \ndanger of tumbling to pieces; but Mr Tappertit, so far from \nreceiving this extreme merriment with any irritation, was pleased \nto regard it with the utmost favour, and even to join in it, so far \nas one of his gravity and station could, with any regard to that \ndecency and decorum which men in high places are expected to \nmaintain.\n\nMr Tappertit did not stop here, as many public characters might \nhave done, but calling up his brace of lieutenants, introduced Hugh \nto them with high commendation; declaring him to be a man who, at \nsuch times as those in which they lived, could not be too much \ncherished.  Further, he did him the honour to remark, that he would \nbe an acquisition of which even the United Bulldogs might be proud; \nand finding, upon sounding him, that he was quite ready and willing \nto enter the society (for he was not at all particular, and would \nhave leagued himself that night with anything, or anybody, for any \npurpose whatsoever), caused the necessary preliminaries to be gone \ninto upon the spot.  This tribute to his great merit delighted no \nman more than Mr Dennis, as he himself proclaimed with several rare \nand surprising oaths; and indeed it gave unmingled satisfaction to \nthe whole assembly.\n\n'Make anything you like of me!' cried Hugh, flourishing the can he \nhad emptied more than once.  'Put me on any duty you please.  I'm \nyour man.  I'll do it.  Here's my captain--here's my leader.  Ha ha \nha!  Let him give me the word of command, and I'll fight the whole \nParliament House single-handed, or set a lighted torch to the \nKing's Throne itself!'  With that, he smote Mr Tappertit on the \nback, with such violence that his little body seemed to shrink into \na mere nothing; and roared again until the very foundlings near at \nhand were startled in their beds.\n\nIn fact, a sense of something whimsical in their companionship \nseemed to have taken entire possession of his rude brain.  The bare \nfact of being patronised by a great man whom he could have crushed \nwith one hand, appeared in his eyes so eccentric and humorous, that \na kind of ferocious merriment gained the mastery over him, and \nquite subdued his brutal nature.  He roared and roared again; \ntoasted Mr Tappertit a hundred times; declared himself a Bulldog to \nthe core; and vowed to be faithful to him to the last drop of blood \nin his veins.\n\nAll these compliments Mr Tappertit received as matters of course--\nflattering enough in their way, but entirely attributable to his \nvast superiority.  His dignified self-possession only delighted \nHugh the more; and in a word, this giant and dwarf struck up a \nfriendship which bade fair to be of long continuance, as the one \nheld it to be his right to command, and the other considered it an \nexquisite pleasantry to obey.  Nor was Hugh by any means a passive \nfollower, who scrupled to act without precise and definite orders; \nfor when Mr Tappertit mounted on an empty cask which stood by way \nof rostrum in the room, and volunteered a speech upon the alarming \ncrisis then at hand, he placed himself beside the orator, and \nthough he grinned from ear to ear at every word he said, threw out \nsuch expressive hints to scoffers in the management of his cudgel, \nthat those who were at first the most disposed to interrupt, became \nremarkably attentive, and were the loudest in their approbation.\n\nIt was not all noise and jest, however, at The Boot, nor were the \nwhole party listeners to the speech.  There were some men at the \nother end of the room (which was a long, low-roofed chamber) in \nearnest conversation all the time; and when any of this group went \nout, fresh people were sure to come in soon afterwards and sit down \nin their places, as though the others had relieved them on some \nwatch or duty; which it was pretty clear they did, for these \nchanges took place by the clock, at intervals of half an hour.  \nThese persons whispered very much among themselves, and kept aloof, \nand often looked round, as jealous of their speech being overheard; \nsome two or three among them entered in books what seemed to be \nreports from the others; when they were not thus employed) one of \nthem would turn to the newspapers which were strewn upon the table, \nand from the St James's Chronicle, the Herald, Chronicle, or \nPublic Advertiser, would read to the rest in a low voice some \npassage having reference to the topic in which they were all so \ndeeply interested.  But the great attraction was a pamphlet called \nThe Thunderer, which espoused their own opinions, and was supposed \nat that time to emanate directly from the Association.  This was \nalways in request; and whether read aloud, to an eager knot of \nlisteners, or by some solitary man, was certain to be followed by \nstormy talking and excited looks.\n\nIn the midst of all his merriment, and admiration of his captain, \nHugh was made sensible by these and other tokens, of the presence \nof an air of mystery, akin to that which had so much impressed him \nout of doors.  It was impossible to discard a sense that something \nserious was going on, and that under the noisy revel of the public-\nhouse, there lurked unseen and dangerous matter.  Little affected \nby this, however, he was perfectly satisfied with his quarters and \nwould have remained there till morning, but that his conductor rose \nsoon after midnight, to go home; Mr Tappertit following his \nexample, left him no excuse to stay.  So they all three left the \nhouse together: roaring a No-Popery song until the fields \nresounded with the dismal noise.\n\nCheer up, captain!' cried Hugh, when they had roared themselves out \nof breath.  'Another stave!'\n\nMr Tappertit, nothing loath, began again; and so the three went \nstaggering on, arm-in-arm, shouting like madmen, and defying the \nwatch with great valour.  Indeed this did not require any unusual \nbravery or boldness, as the watchmen of that time, being selected \nfor the office on account of excessive age and extraordinary \ninfirmity, had a custom of shutting themselves up tight in their \nboxes on the first symptoms of disturbance, and remaining there \nuntil they disappeared.  In these proceedings, Mr Dennis, who had a \ngruff voice and lungs of considerable power, distinguished himself \nvery much, and acquired great credit with his two companions.\n\n'What a queer fellow you are!' said Mr Tappertit.  'You're so \nprecious sly and close.  Why don't you ever tell what trade you're \nof?'\n\n'Answer the captain instantly,' cried Hugh, beating his hat down on \nhis head; 'why don't you ever tell what trade you're of?'\n\n'I'm of as gen-teel a calling, brother, as any man in England--as \nlight a business as any gentleman could desire.'\n\n'Was you 'prenticed to it?' asked Mr Tappertit.\n\n'No.  Natural genius,' said Mr Dennis.  'No 'prenticing.  It come \nby natur'.  Muster Gashford knows my calling.  Look at that hand of \nmine--many and many a job that hand has done, with a neatness and \ndex-terity, never known afore.  When I look at that hand,' said Mr \nDennis, shaking it in the air, 'and remember the helegant bits of \nwork it has turned off, I feel quite molloncholy to think it should \never grow old and feeble.  But sich is life!'\n\nHe heaved a deep sigh as he indulged in these reflections, and \nputting his fingers with an absent air on Hugh's throat, and \nparticularly under his left ear, as if he were studying the \nanatomical development of that part of his frame, shook his head in \na despondent manner and actually shed tears.\n\n'You're a kind of artist, I suppose--eh!' said Mr Tappertit.\n\n'Yes,' rejoined Dennis; 'yes--I may call myself a artist--a fancy \nworkman--art improves natur'--that's my motto.'\n\n'And what do you call this?' said Mr Tappertit taking his stick out \nof his hand.\n\n'That's my portrait atop,' Dennis replied; 'd'ye think it's like?'\n\n'Why--it's a little too handsome,' said Mr Tappertit.  'Who did it?  \nYou?'\n\n'I!' repeated Dennis, gazing fondly on his image.  'I wish I had \nthe talent.  That was carved by a friend of mine, as is now no \nmore.  The very day afore he died, he cut that with his pocket-\nknife from memory!  \"I'll die game,\" says my friend, \"and my last \nmoments shall be dewoted to making Dennis's picter.\"  That's it.'\n\n'That was a queer fancy, wasn't it?' said Mr Tappertit.\n\n'It WAS a queer fancy,' rejoined the other, breathing on his \nfictitious nose, and polishing it with the cuff of his coat, 'but \nhe was a queer subject altogether--a kind of gipsy--one of the \nfinest, stand-up men, you ever see.  Ah!  He told me some things \nthat would startle you a bit, did that friend of mine, on the \nmorning when he died.'\n\n'You were with him at the time, were you?' said Mr Tappertit.\n\n'Yes,' he answered with a curious look, 'I was there.  Oh! yes \ncertainly, I was there.  He wouldn't have gone off half as \ncomfortable without me.  I had been with three or four of his \nfamily under the same circumstances.  They were all fine fellows.'\n\n'They must have been fond of you,' remarked Mr Tappertit, looking \nat him sideways.\n\n'I don't know that they was exactly fond of me,' said Dennis, with \na little hesitation, 'but they all had me near 'em when they \ndeparted.  I come in for their wardrobes too.  This very handkecher \nthat you see round my neck, belonged to him that I've been speaking \nof--him as did that likeness.'\n\nMr Tappertit glanced at the article referred to, and appeared to \nthink that the deceased's ideas of dress were of a peculiar and by \nno means an expensive kind.  He made no remark upon the point, \nhowever, and suffered his mysterious companion to proceed without \ninterruption.\n\n'These smalls,' said Dennis, rubbing his legs; 'these very smalls--\nthey belonged to a friend of mine that's left off sich incumbrances \nfor ever: this coat too--I've often walked behind this coat, in the \nstreet, and wondered whether it would ever come to me: this pair of \nshoes have danced a hornpipe for another man, afore my eyes, full \nhalf-a-dozen times at least: and as to my hat,' he said, taking it \noff, and whirling it round upon his fist--'Lord! I've seen this hat \ngo up Holborn on the box of a hackney-coach--ah, many and many a \nday!'\n\n'You don't mean to say their old wearers are ALL dead, I hope?' \nsaid Mr Tappertit, falling a little distance from him as he spoke.\n\n'Every one of 'em,' replied Dennis.  'Every man Jack!'\n\nThere was something so very ghastly in this circumstance, and it \nappeared to account, in such a very strange and dismal manner, for \nhis faded dress--which, in this new aspect, seemed discoloured by \nthe earth from graves--that Mr Tappertit abruptly found he was \ngoing another way, and, stopping short, bade him good night with \nthe utmost heartiness.  As they happened to be near the Old Bailey, \nand Mr Dennis knew there were turnkeys in the lodge with whom he \ncould pass the night, and discuss professional subjects of common \ninterest among them before a rousing fire, and over a social glass, \nhe separated from his companions without any great regret, and \nwarmly shaking hands with Hugh, and making an early appointment for \ntheir meeting at The Boot, left them to pursue their road.\n\n'That's a strange sort of man,' said Mr Tappertit, watching the \nhackney-coachman's hat as it went bobbing down the street.  'I \ndon't know what to make of him.  Why can't he have his smalls made \nto order, or wear live clothes at any rate?'\n\n'He's a lucky man, captain,' cried Hugh.  'I should like to have \nsuch friends as his.'\n\n'I hope he don't get 'em to make their wills, and then knock 'em on \nthe head,' said Mr Tappertit, musing.  'But come.  The United B.'s \nexpect me.  On!--What's the matter?'\n\n'I quite forgot,' said Hugh, who had started at the striking of a \nneighbouring clock.  'I have somebody to see to-night--I must turn \nback directly.  The drinking and singing put it out of my head.  \nIt's well I remembered it!'\n\nMr Tappertit looked at him as though he were about to give \nutterance to some very majestic sentiments in reference to this act \nof desertion, but as it was clear, from Hugh's hasty manner, that \nthe engagement was one of a pressing nature, he graciously forbore, \nand gave him his permission to depart immediately, which Hugh \nacknowledged with a roar of laughter.\n\n'Good night, captain!' he cried.  'I am yours to the death, \nremember!'\n\n'Farewell!' said Mr Tappertit, waving his hand.  'Be bold and \nvigilant!'\n\n'No Popery, captain!' roared Hugh.\n\n'England in blood first!' cried his desperate leader.  Whereat Hugh \ncheered and laughed, and ran off like a greyhound.\n\n'That man will prove a credit to my corps,' said Simon, turning \nthoughtfully upon his heel.  'And let me see.  In an altered state \nof society--which must ensue if we break out and are victorious--\nwhen the locksmith's child is mine, Miggs must be got rid of \nsomehow, or she'll poison the tea-kettle one evening when I'm out.  \nHe might marry Miggs, if he was drunk enough.  It shall be done.  \nI'll make a note of it.'\n\n\n\nChapter 40\n\n\nLittle thinking of the plan for his happy settlement in life which \nhad suggested itself to the teeming brain of his provident \ncommander, Hugh made no pause until Saint Dunstan's giants struck \nthe hour above him, when he worked the handle of a pump which stood \nhard by, with great vigour, and thrusting his head under the spout, \nlet the water gush upon him until a little stream ran down from \nevery uncombed hair, and he was wet to the waist.  Considerably \nrefreshed by this ablution, both in mind and body, and almost \nsobered for the time, he dried himself as he best could; then \ncrossed the road, and plied the knocker of the Middle Temple gate.\n\nThe night-porter looked through a small grating in the portal with \na surly eye, and cried 'Halloa!' which greeting Hugh returned in \nkind, and bade him open quickly.\n\n'We don't sell beer here,' cried the man; 'what else do you want?'\n\n'To come in,' Hugh replied, with a kick at the door.\n\n'Where to go?'\n\n'Paper Buildings.'\n\n'Whose chambers?'\n\n'Sir John Chester's.'  Each of which answers, he emphasised with \nanother kick.\n\nAfter a little growling on the other side, the gate was opened, and \nhe passed in: undergoing a close inspection from the porter as he \ndid so.\n\n'YOU wanting Sir John, at this time of night!' said the man.\n\n'Ay!' said Hugh.  'I!  What of that?'\n\n'Why, I must go with you and see that you do, for I don't believe \nit.'\n\n'Come along then.'\n\nEyeing him with suspicious looks, the man, with key and lantern, \nwalked on at his side, and attended him to Sir John Chester's door, \nat which Hugh gave one knock, that echoed through the dark \nstaircase like a ghostly summons, and made the dull light tremble \nin the drowsy lamp.\n\n'Do you think he wants me now?' said Hugh.\n\nBefore the man had time to answer, a footstep was heard within, a \nlight appeared, and Sir John, in his dressing-gown and slippers, \nopened the door.\n\n'I ask your pardon, Sir John,' said the porter, pulling off his \nhat.  'Here's a young man says he wants to speak to you.  It's late \nfor strangers.  I thought it best to see that all was right.'\n\n'Aha!' cried Sir John, raising his eyebrows.  'It's you, \nmessenger, is it?  Go in.  Quite right, friend.  I commend your \nprudence highly.  Thank you.  God bless you.  Good night.'\n\nTo be commended, thanked, God-blessed, and bade good night by one \nwho carried 'Sir' before his name, and wrote himself M.P. to boot, \nwas something for a porter.  He withdrew with much humility and \nreverence.  Sir John followed his late visitor into the dressing-\nroom, and sitting in his easy-chair before the fire, and moving it \nso that he could see him as he stood, hat in hand, beside the door, \nlooked at him from head to foot.\n\nThe old face, calm and pleasant as ever; the complexion, quite \njuvenile in its bloom and clearness; the same smile; the wonted \nprecision and elegance of dress; the white, well-ordered teeth; the \ndelicate hands; the composed and quiet manner; everything as it \nused to be: no mark of age or passion, envy, hate, or discontent: \nall unruffled and serene, and quite delightful to behold.\n\nHe wrote himself M.P.--but how?  Why, thus.  It was a proud family--\nmore proud, indeed, than wealthy.  He had stood in danger of \narrest; of bailiffs, and a jail--a vulgar jail, to which the common \npeople with small incomes went.  Gentlemen of ancient houses have \nno privilege of exemption from such cruel laws--unless they are of \none great house, and then they have.  A proud man of his stock and \nkindred had the means of sending him there.  He offered--not indeed \nto pay his debts, but to let him sit for a close borough until his \nown son came of age, which, if he lived, would come to pass in \ntwenty years.  It was quite as good as an Insolvent Act, and \ninfinitely more genteel.  So Sir John Chester was a member of \nParliament.\n\nBut how Sir John?  Nothing so simple, or so easy.  One touch with a \nsword of state, and the transformation was effected.  John Chester, \nEsquire, M.P., attended court--went up with an address--headed a \ndeputation.  Such elegance of manner, so many graces of deportment, \nsuch powers of conversation, could never pass unnoticed.  Mr was \ntoo common for such merit.  A man so gentlemanly should have been--\nbut Fortune is capricious--born a Duke: just as some dukes should \nhave been born labourers.  He caught the fancy of the king, knelt \ndown a grub, and rose a butterfly.  John Chester, Esquire, was \nknighted and became Sir John.\n\n'I thought when you left me this evening, my esteemed \nacquaintance,' said Sir John after a pretty long silence, 'that you \nintended to return with all despatch?'\n\n'So I did, master.'\n\n'And so you have?' he retorted, glancing at his watch.  'Is that \nwhat you would say?'\n\nInstead of replying, Hugh changed the leg on which he leant, \nshuffled his cap from one hand to the other, looked at the ground, \nthe wall, the ceiling, and finally at Sir John himself; before \nwhose pleasant face he lowered his eyes again, and fixed them on \nthe floor.\n\n'And how have you been employing yourself in the meanwhile?' quoth \nSir John, lazily crossing his legs.  'Where have you been? what \nharm have you been doing?'\n\n'No harm at all, master,' growled Hugh, with humility.  'I have \nonly done as you ordered.'\n\n'As I WHAT?' returned Sir John.\n\n'Well then,' said Hugh uneasily, 'as you advised, or said I ought, \nor said I might, or said that you would do, if you was me.  Don't \nbe so hard upon me, master.'\n\nSomething like an expression of triumph in the perfect control he \nhad established over this rough instrument appeared in the knight's \nface for an instant; but it vanished directly, as he said--paring \nhis nails while speaking:\n\n'When you say I ordered you, my good fellow, you imply that I \ndirected you to do something for me--something I wanted done--\nsomething for my own ends and purposes--you see?  Now I am sure I \nneedn't enlarge upon the extreme absurdity of such an idea, however \nunintentional; so please--' and here he turned his eyes upon him--\n'to be more guarded.  Will you?'\n\n'I meant to give you no offence,' said Hugh.  'I don't know what to \nsay.  You catch me up so very short.'\n\n'You will be caught up much shorter, my good friend--infinitely \nshorter--one of these days, depend upon it,' replied his patron \ncalmly.  'By-the-bye, instead of wondering why you have been so \nlong, my wonder should be why you came at all.  Why did you?'\n\n'You know, master,' said Hugh, 'that I couldn't read the bill I \nfound, and that supposing it to be something particular from the \nway it was wrapped up, I brought it here.'\n\n'And could you ask no one else to read it, Bruin?' said Sir John.\n\n'No one that I could trust with secrets, master.  Since Barnaby \nRudge was lost sight of for good and all--and that's five years \nago--I haven't talked with any one but you.'\n\n'You have done me honour, I am sure.'\n\n'I have come to and fro, master, all through that time, when there \nwas anything to tell, because I knew that you'd be angry with me if \nI stayed away,' said Hugh, blurting the words out, after an \nembarrassed silence; 'and because I wished to please you if I \ncould, and not to have you go against me.  There.  That's the true \nreason why I came to-night.  You know that, master, I am sure.'\n\n'You are a specious fellow,' returned Sir John, fixing his eyes \nupon him, 'and carry two faces under your hood, as well as the \nbest.  Didn't you give me in this room, this evening, any other \nreason; no dislike of anybody who has slighted you lately, on all \noccasions, abused you, treated you with rudeness; acted towards \nyou, more as if you were a mongrel dog than a man like himself?'\n\n'To be sure I did!' cried Hugh, his passion rising, as the other \nmeant it should; 'and I say it all over now, again.  I'd do \nanything to have some revenge on him--anything.  And when you told \nme that he and all the Catholics would suffer from those who joined \ntogether under that handbill, I said I'd make one of 'em, if their \nmaster was the devil himself.  I AM one of 'em.  See whether I am \nas good as my word and turn out to be among the foremost, or no.  I \nmayn't have much head, master, but I've head enough to remember \nthose that use me ill.  You shall see, and so shall he, and so \nshall hundreds more, how my spirit backs me when the time comes.  \nMy bark is nothing to my bite.  Some that I know had better have a \nwild lion among 'em than me, when I am fairly loose--they had!'\n\nThe knight looked at him with a smile of far deeper meaning than \nordinary; and pointing to the old cupboard, followed him with his \neyes while he filled and drank a glass of liquor; and smiled when \nhis back was turned, with deeper meaning yet.\n\n'You are in a blustering mood, my friend,' he said, when Hugh \nconfronted him again.\n\n'Not I, master!' cried Hugh.  'I don't say half I mean.  I can't.  \nI haven't got the gift.  There are talkers enough among us; I'll be \none of the doers.'\n\n'Oh! you have joined those fellows then?' said Sir John, with an \nair of most profound indifference.\n\n'Yes.  I went up to the house you told me of; and got put down upon \nthe muster.  There was another man there, named Dennis--'\n\n'Dennis, eh!' cried Sir John, laughing.  'Ay, ay! a pleasant \nfellow, I believe?'\n\n'A roaring dog, master--one after my own heart--hot upon the matter \ntoo--red hot.'\n\n'So I have heard,' replied Sir John, carelessly.  'You don't happen \nto know his trade, do you?'\n\n'He wouldn't say,' cried Hugh.  'He keeps it secret.'\n\n'Ha ha!' laughed Sir John.  'A strange fancy--a weakness with some \npersons--you'll know it one day, I dare swear.'\n\n'We're intimate already,' said Hugh.\n\n'Quite natural!  And have been drinking together, eh?' pursued Sir \nJohn.  'Did you say what place you went to in company, when you \nleft Lord George's?'\n\nHugh had not said or thought of saying, but he told him; and this \ninquiry being followed by a long train of questions, he related all \nthat had passed both in and out of doors, the kind of people he had \nseen, their numbers, state of feeling, mode of conversation, \napparent expectations and intentions.  His questioning was so \nartfully contrived, that he seemed even in his own eyes to \nvolunteer all this information rather than to have it wrested from \nhim; and he was brought to this state of feeling so naturally, that \nwhen Mr Chester yawned at length and declared himself quite wearied \nout, he made a rough kind of excuse for having talked so much.\n\n'There--get you gone,' said Sir John, holding the door open in his \nhand.  'You have made a pretty evening's work.  I told you not to \ndo this.  You may get into trouble.  You'll have an opportunity of \nrevenging yourself on your proud friend Haredale, though, and for \nthat, you'd hazard anything, I suppose?'\n\n'I would,' retorted Hugh, stopping in his passage out and looking \nback; 'but what do I risk!  What do I stand a chance of losing, \nmaster?  Friends, home?  A fig for 'em all; I have none; they are \nnothing to me.  Give me a good scuffle; let me pay off old scores \nin a bold riot where there are men to stand by me; and then use me \nas you like--it don't matter much to me what the end is!'\n\n'What have you done with that paper?' said Sir John.\n\n'I have it here, master.'\n\n'Drop it again as you go along; it's as well not to keep such \nthings about you.'\n\nHugh nodded, and touching his cap with an air of as much respect as \nhe could summon up, departed.\n\nSir John, fastening the doors behind him, went back to his \ndressing-room, and sat down once again before the fire, at which \nhe gazed for a long time, in earnest meditation.\n\n'This happens fortunately,' he said, breaking into a smile, 'and \npromises well.  Let me see.  My relative and I, who are the most \nProtestant fellows in the world, give our worst wishes to the Roman \nCatholic cause; and to Saville, who introduces their bill, I have \na personal objection besides; but as each of us has himself for \nthe first article in his creed, we cannot commit ourselves by \njoining with a very extravagant madman, such as this Gordon most \nundoubtedly is.  Now really, to foment his disturbances in secret, \nthrough the medium of such a very apt instrument as my savage \nfriend here, may further our real ends; and to express at all \nbecoming seasons, in moderate and polite terms, a disapprobation of \nhis proceedings, though we agree with him in principle, will \ncertainly be to gain a character for honesty and uprightness of \npurpose, which cannot fail to do us infinite service, and to raise \nus into some importance.  Good!  So much for public grounds.  As to \nprivate considerations, I confess that if these vagabonds WOULD \nmake some riotous demonstration (which does not appear impossible), \nand WOULD inflict some little chastisement on Haredale as a not \ninactive man among his sect, it would be extremely agreeable to my \nfeelings, and would amuse me beyond measure.  Good again!  Perhaps \nbetter!'\n\nWhen he came to this point, he took a pinch of snuff; then \nbeginning slowly to undress, he resumed his meditations, by saying \nwith a smile:\n\n'I fear, I DO fear exceedingly, that my friend is following fast in \nthe footsteps of his mother.  His intimacy with Mr Dennis is very \nominous.  But I have no doubt he must have come to that end any \nway.  If I lend him a helping hand, the only difference is, that he \nmay, upon the whole, possibly drink a few gallons, or puncheons, or \nhogsheads, less in this life than he otherwise would.  It's no \nbusiness of mine.  It's a matter of very small importance!'\n\nSo he took another pinch of snuff, and went to bed.\n\n\n\nChapter 41\n\n\nFrom the workshop of the Golden Key, there issued forth a tinkling \nsound, so merry and good-humoured, that it suggested the idea of \nsome one working blithely, and made quite pleasant music.  No man \nwho hammered on at a dull monotonous duty, could have brought such \ncheerful notes from steel and iron; none but a chirping, healthy, \nhonest-hearted fellow, who made the best of everything, and felt \nkindly towards everybody, could have done it for an instant.  He \nmight have been a coppersmith, and still been musical.  If he had \nsat in a jolting waggon, full of rods of iron, it seemed as if he \nwould have brought some harmony out of it.\n\nTink, tink, tink--clear as a silver bell, and audible at every \npause of the streets' harsher noises, as though it said, 'I don't \ncare; nothing puts me out; I am resolved to he happy.'  Women \nscolded, children squalled, heavy carts went rumbling by, horrible \ncries proceeded from the lungs of hawkers; still it struck in \nagain, no higher, no lower, no louder, no softer; not thrusting \nitself on people's notice a bit the more for having been outdone by \nlouder sounds--tink, tink, tink, tink, tink.\n\nIt was a perfect embodiment of the still small voice, free from all \ncold, hoarseness, huskiness, or unhealthiness of any kind; foot-\npassengers slackened their pace, and were disposed to linger near \nit; neighbours who had got up splenetic that morning, felt good-\nhumour stealing on them as they heard it, and by degrees became \nquite sprightly; mothers danced their babies to its ringing; still \nthe same magical tink, tink, tink, came gaily from the workshop of \nthe Golden Key.\n\nWho but the locksmith could have made such music!  A gleam of sun \nshining through the unsashed window, and chequering the dark \nworkshop with a broad patch of light, fell full upon him, as though \nattracted by his sunny heart.  There he stood working at his anvil, \nhis face all radiant with exercise and gladness, his sleeves turned \nup, his wig pushed off his shining forehead--the easiest, freest, \nhappiest man in all the world.  Beside him sat a sleek cat, purring \nand winking in the light, and falling every now and then into an \nidle doze, as from excess of comfort.  Toby looked on from a tall \nbench hard by; one beaming smile, from his broad nut-brown face \ndown to the slack-baked buckles in his shoes.  The very locks that \nhung around had something jovial in their rust, and seemed like \ngouty gentlemen of hearty natures, disposed to joke on their \ninfirmities.  There was nothing surly or severe in the whole scene.  \nIt seemed impossible that any one of the innumerable keys could fit \na churlish strong-box or a prison-door.  Cellars of beer and wine, \nrooms where there were fires, books, gossip, and cheering laughter--\nthese were their proper sphere of action.  Places of distrust and \ncruelty, and restraint, they would have left quadruple-locked for \never.\n\nTink, tink, tink.  The locksmith paused at last, and wiped his \nbrow.  The silence roused the cat, who, jumping softly down, crept \nto the door, and watched with tiger eyes a bird-cage in an opposite \nwindow.  Gabriel lifted Toby to his mouth, and took a hearty \ndraught.\n\nThen, as he stood upright, with his head flung back, and his portly \nchest thrown out, you would have seen that Gabriel's lower man was \nclothed in military gear.  Glancing at the wall beyond, there might \nhave been espied, hanging on their several pegs, a cap and feather, \nbroadsword, sash, and coat of scarlet; which any man learned in \nsuch matters would have known from their make and pattern to be the \nuniform of a serjeant in the Royal East London Volunteers.\n\nAs the locksmith put his mug down, empty, on the bench whence it \nhad smiled on him before, he glanced at these articles with a \nlaughing eye, and looking at them with his head a little on one \nside, as though he would get them all into a focus, said, leaning \non his hammer:\n\n'Time was, now, I remember, when I was like to run mad with the \ndesire to wear a coat of that colour.  If any one (except my \nfather) had called me a fool for my pains, how I should have fired \nand fumed!  But what a fool I must have been, sure-ly!'\n\n'Ah!' sighed Mrs Varden, who had entered unobserved.  'A fool \nindeed.  A man at your time of life, Varden, should know better \nnow.'\n\n'Why, what a ridiculous woman you are, Martha,' said the locksmith, \nturning round with a smile.\n\n'Certainly,' replied Mrs V. with great demureness.  'Of course I \nam.  I know that, Varden.  Thank you.'\n\n'I mean--' began the locksmith.\n\n'Yes,' said his wife, 'I know what you mean.  You speak quite plain \nenough to be understood, Varden.  It's very kind of you to adapt \nyourself to my capacity, I am sure.'\n\n'Tut, tut, Martha,' rejoined the locksmith; 'don't take offence at \nnothing.  I mean, how strange it is of you to run down \nvolunteering, when it's done to defend you and all the other women, \nand our own fireside and everybody else's, in case of need.'\n\n'It's unchristian,' cried Mrs Varden, shaking her head.\n\n'Unchristian!' said the locksmith.  'Why, what the devil--'\n\nMrs Varden looked at the ceiling, as in expectation that the \nconsequence of this profanity would be the immediate descent of the \nfour-post bedstead on the second floor, together with the best \nsitting-room on the first; but no visible judgment occurring, she \nheaved a deep sigh, and begged her husband, in a tone of \nresignation, to go on, and by all means to blaspheme as much as \npossible, because he knew she liked it.\n\nThe locksmith did for a moment seem disposed to gratify her, but he \ngave a great gulp, and mildly rejoined:\n\n'I was going to say, what on earth do you call it unchristian for?  \nWhich would be most unchristian, Martha--to sit quietly down and \nlet our houses be sacked by a foreign army, or to turn out like men \nand drive 'em off?  Shouldn't I be a nice sort of a Christian, if I \ncrept into a corner of my own chimney and looked on while a parcel \nof whiskered savages bore off Dolly--or you?'\n\nWhen he said 'or you,' Mrs Varden, despite herself, relaxed into a \nsmile.  There was something complimentary in the idea.  'In such a \nstate of things as that, indeed--' she simpered.\n\n'As that!' repeated the locksmith.  'Well, that would be the state \nof things directly.  Even Miggs would go.  Some black tambourine-\nplayer, with a great turban on, would be bearing HER off, and, \nunless the tambourine-player was proof against kicking and \nscratching, it's my belief he'd have the worst of it.  Ha ha ha!  \nI'd forgive the tambourine-player.  I wouldn't have him interfered \nwith on any account, poor fellow.'  And here the locksmith laughed \nagain so heartily, that tears came into his eyes--much to Mrs \nVarden's indignation, who thought the capture of so sound a \nProtestant and estimable a private character as Miggs by a pagan \nnegro, a circumstance too shocking and awful for contemplation.\n\nThe picture Gabriel had drawn, indeed, threatened serious \nconsequences, and would indubitably have led to them, but luckily \nat that moment a light footstep crossed the threshold, and Dolly, \nrunning in, threw her arms round her old father's neck and hugged \nhim tight.\n\n'Here she is at last!' cried Gabriel.  'And how well you look, \nDoll, and how late you are, my darling!'\n\nHow well she looked?  Well?  Why, if he had exhausted every \nlaudatory adjective in the dictionary, it wouldn't have been praise \nenough.  When and where was there ever such a plump, roguish, \ncomely, bright-eyed, enticing, bewitching, captivating, maddening \nlittle puss in all this world, as Dolly!  What was the Dolly of \nfive years ago, to the Dolly of that day!  How many coachmakers, \nsaddlers, cabinet-makers, and professors of other useful arts, had \ndeserted their fathers, mothers, sisters, brothers, and, most of \nall, their cousins, for the love of her!  How many unknown \ngentlemen--supposed to be of mighty fortunes, if not titles--had \nwaited round the corner after dark, and tempted Miggs the \nincorruptible, with golden guineas, to deliver offers of marriage \nfolded up in love-letters!  How many disconsolate fathers and \nsubstantial tradesmen had waited on the locksmith for the same \npurpose, with dismal tales of how their sons had lost their \nappetites, and taken to shut themselves up in dark bedrooms, and \nwandering in desolate suburbs with pale faces, and all because of \nDolly Varden's loveliness and cruelty!  How many young men, in all \nprevious times of unprecedented steadiness, had turned suddenly \nwild and wicked for the same reason, and, in an ecstasy of \nunrequited love, taken to wrench off door-knockers, and invert the \nboxes of rheumatic watchmen!  How had she recruited the king's \nservice, both by sea and land, through rendering desperate his \nloving subjects between the ages of eighteen and twenty-five!  How \nmany young ladies had publicly professed, with tears in their eyes, \nthat for their tastes she was much too short, too tall, too bold, \ntoo cold, too stout, too thin, too fair, too dark--too everything \nbut handsome!  How many old ladies, taking counsel together, had \nthanked Heaven their daughters were not like her, and had hoped she \nmight come to no harm, and had thought she would come to no good, \nand had wondered what people saw in her, and had arrived at the \nconclusion that she was 'going off' in her looks, or had never come \non in them, and that she was a thorough imposition and a popular \nmistake!\n\nAnd yet here was this same Dolly Varden, so whimsical and hard to \nplease that she was Dolly Varden still, all smiles and dimples and \npleasant looks, and caring no more for the fifty or sixty young \nfellows who at that very moment were breaking their hearts to marry \nher, than if so many oysters had been crossed in love and opened \nafterwards.\n\nDolly hugged her father as has been already stated, and having \nhugged her mother also, accompanied both into the little parlour \nwhere the cloth was already laid for dinner, and where Miss Miggs--\na trifle more rigid and bony than of yore--received her with a sort \nof hysterical gasp, intended for a smile.  Into the hands of that \nyoung virgin, she delivered her bonnet and walking dress (all of a \ndreadful, artful, and designing kind), and then said with a laugh, \nwhich rivalled the locksmith's music, 'How glad I always am to be \nat home again!'\n\n'And how glad we always are, Doll,' said her father, putting back \nthe dark hair from her sparkling eyes, 'to have you at home.  Give \nme a kiss.'\n\nIf there had been anybody of the male kind there to see her do it--\nbut there was not--it was a mercy.\n\n'I don't like your being at the Warren,' said the locksmith, 'I \ncan't bear to have you out of my sight.  And what is the news over \nyonder, Doll?'\n\n'What news there is, I think you know already,' replied his \ndaughter.  'I am sure you do though.'\n\n'Ay?' cried the locksmith.  'What's that?'\n\n'Come, come,' said Dolly, 'you know very well.  I want you to tell \nme why Mr Haredale--oh, how gruff he is again, to be sure!--has \nbeen away from home for some days past, and why he is travelling \nabout (we know he IS travelling, because of his letters) without \ntelling his own niece why or wherefore.'\n\n'Miss Emma doesn't want to know, I'll swear,' returned the \nlocksmith.\n\n'I don't know that,' said Dolly; 'but I do, at any rate.  Do tell \nme.  Why is he so secret, and what is this ghost story, which \nnobody is to tell Miss Emma, and which seems to be mixed up with \nhis going away?  Now I see you know by your colouring so.'\n\n'What the story means, or is, or has to do with it, I know no more \nthan you, my dear,' returned the locksmith, 'except that it's some \nfoolish fear of little Solomon's--which has, indeed, no meaning in \nit, I suppose.  As to Mr Haredale's journey, he goes, as I believe--'\n\n'Yes,' said Dolly.\n\n'As I believe,' resumed the locksmith, pinching her cheek, 'on \nbusiness, Doll.  What it may be, is quite another matter.  Read \nBlue Beard, and don't be too curious, pet; it's no business of \nyours or mine, depend upon that; and here's dinner, which is much \nmore to the purpose.'\n\nDolly might have remonstrated against this summary dismissal of the \nsubject, notwithstanding the appearance of dinner, but at the \nmention of Blue Beard Mrs Varden interposed, protesting she could \nnot find it in her conscience to sit tamely by, and hear her child \nrecommended to peruse the adventures of a Turk and Mussulman--far \nless of a fabulous Turk, which she considered that potentate to be.  \nShe held that, in such stirring and tremendous times as those in \nwhich they lived, it would be much more to the purpose if Dolly \nbecame a regular subscriber to the Thunderer, where she would have \nan opportunity of reading Lord George Gordon's speeches word for \nword, which would be a greater comfort and solace to her, than a \nhundred and fifty Blue Beards ever could impart.  She appealed in \nsupport of this proposition to Miss Miggs, then in waiting, who \nsaid that indeed the peace of mind she had derived from the perusal \nof that paper generally, but especially of one article of the very \nlast week as ever was, entitled 'Great Britain drenched in gore,' \nexceeded all belief; the same composition, she added, had also \nwrought such a comforting effect on the mind of a married sister of \nhers, then resident at Golden Lion Court, number twenty-sivin, \nsecond bell-handle on the right-hand door-post, that, being in a \ndelicate state of health, and in fact expecting an addition to her \nfamily, she had been seized with fits directly after its perusal, \nand had raved of the Inquisition ever since; to the great \nimprovement of her husband and friends.  Miss Miggs went on to say \nthat she would recommend all those whose hearts were hardened to \nhear Lord George themselves, whom she commended first, in respect \nof his steady Protestantism, then of his oratory, then of his eyes, \nthen of his nose, then of his legs, and lastly of his figure \ngenerally, which she looked upon as fit for any statue, prince, or \nangel, to which sentiment Mrs Varden fully subscribed.\n\nMrs Varden having cut in, looked at a box upon the mantelshelf, \npainted in imitation of a very red-brick dwelling-house, with a \nyellow roof; having at top a real chimney, down which voluntary \nsubscribers dropped their silver, gold, or pence, into the parlour; \nand on the door the counterfeit presentment of a brass plate, \nwhereon was legibly inscribed 'Protestant Association:'--and \nlooking at it, said, that it was to her a source of poignant misery \nto think that Varden never had, of all his substance, dropped \nanything into that temple, save once in secret--as she afterwards \ndiscovered--two fragments of tobacco-pipe, which she hoped would \nnot be put down to his last account.  That Dolly, she was grieved \nto say, was no less backward in her contributions, better loving, \nas it seemed, to purchase ribbons and such gauds, than to encourage \nthe great cause, then in such heavy tribulation; and that she did \nentreat her (her father she much feared could not be moved) not to \ndespise, but imitate, the bright example of Miss Miggs, who flung \nher wages, as it were, into the very countenance of the Pope, and \nbruised his features with her quarter's money.\n\n'Oh, mim,' said Miggs, 'don't relude to that.  I had no intentions, \nmim, that nobody should know.  Such sacrifices as I can make, are \nquite a widder's mite.  It's all I have,' cried Miggs with a great \nburst of tears--for with her they never came on by degrees--'but \nit's made up to me in other ways; it's well made up.'\n\nThis was quite true, though not perhaps in the sense that Miggs \nintended.  As she never failed to keep her self-denial full in Mrs \nVarden's view, it drew forth so many gifts of caps and gowns and \nother articles of dress, that upon the whole the red-brick house \nwas perhaps the best investment for her small capital she could \npossibly have hit upon; returning her interest, at the rate of \nseven or eight per cent in money, and fifty at least in personal \nrepute and credit.\n\n'You needn't cry, Miggs,' said Mrs Varden, herself in tears; 'you \nneedn't be ashamed of it, though your poor mistress IS on the same \nside.'\n\nMiggs howled at this remark, in a peculiarly dismal way, and said \nshe knowed that master hated her.  That it was a dreadful thing to \nlive in families and have dislikes, and not give satisfactions.  \nThat to make divisions was a thing she could not abear to think of, \nneither could her feelings let her do it.  That if it was master's \nwishes as she and him should part, it was best they should part, \nand she hoped he might be the happier for it, and always wished him \nwell, and that he might find somebody as would meet his \ndispositions.  It would be a hard trial, she said, to part from \nsuch a missis, but she could meet any suffering when her conscience \ntold her she was in the rights, and therefore she was willing even \nto go that lengths.  She did not think, she added, that she could \nlong survive the separations, but, as she was hated and looked upon \nunpleasant, perhaps her dying as soon as possible would be the best \nendings for all parties.  With this affecting conclusion, Miss \nMiggs shed more tears, and sobbed abundantly.\n\n'Can you bear this, Varden?' said his wife in a solemn voice, \nlaying down her knife and fork.\n\n'Why, not very well, my dear,' rejoined the locksmith, 'but I try \nto keep my temper.'\n\n'Don't let there be words on my account, mim,' sobbed Miggs.  'It's \nmuch the best that we should part.  I wouldn't stay--oh, gracious \nme!--and make dissensions, not for a annual gold mine, and found in \ntea and sugar.'\n\nLest the reader should be at any loss to discover the cause of Miss \nMiggs's deep emotion, it may be whispered apart that, happening to \nbe listening, as her custom sometimes was, when Gabriel and his \nwife conversed together, she had heard the locksmith's joke \nrelative to the foreign black who played the tambourine, and \nbursting with the spiteful feelings which the taunt awoke in her \nfair breast, exploded in the manner we have witnessed.  Matters \nhaving now arrived at a crisis, the locksmith, as usual, and for \nthe sake of peace and quietness, gave in.\n\n'What are you crying for, girl?' he said.  'What's the matter with \nyou?  What are you talking about hatred for?  I don't hate you; I \ndon't hate anybody.  Dry your eyes and make yourself agreeable, in \nHeaven's name, and let us all be happy while we can.'\n\nThe allied powers deeming it good generalship to consider this a \nsufficient apology on the part of the enemy, and confession of \nhaving been in the wrong, did dry their eyes and take it in good \npart.  Miss Miggs observed that she bore no malice, no not to her \ngreatest foe, whom she rather loved the more indeed, the greater \npersecution she sustained.  Mrs Varden approved of this meek and \nforgiving spirit in high terms, and incidentally declared as a \nclosing article of agreement, that Dolly should accompany her to \nthe Clerkenwell branch of the association, that very night.  This \nwas an extraordinary instance of her great prudence and policy; \nhaving had this end in view from the first, and entertaining a \nsecret misgiving that the locksmith (who was bold when Dolly was in \nquestion) would object, she had backed Miss Miggs up to this \npoint, in order that she might have him at a disadvantage.  The \nmanoeuvre succeeded so well that Gabriel only made a wry face, and \nwith the warning he had just had, fresh in his mind, did not dare \nto say one word.\n\nThe difference ended, therefore, in Miggs being presented with a \ngown by Mrs Varden and half-a-crown by Dolly, as if she had \neminently distinguished herself in the paths of morality and \ngoodness.  Mrs V., according to custom, expressed her hope that \nVarden would take a lesson from what had passed and learn more \ngenerous conduct for the time to come; and the dinner being now \ncold and nobody's appetite very much improved by what had passed, \nthey went on with it, as Mrs Varden said, 'like Christians.'\n\nAs there was to be a grand parade of the Royal East London \nVolunteers that afternoon, the locksmith did no more work; but sat \ndown comfortably with his pipe in his mouth, and his arm round his \npretty daughter's waist, looking lovingly on Mrs V., from time to \ntime, and exhibiting from the crown of his head to the sole of his \nfoot, one smiling surface of good humour.  And to be sure, when it \nwas time to dress him in his regimentals, and Dolly, hanging about \nhim in all kinds of graceful winning ways, helped to button and \nbuckle and brush him up and get him into one of the tightest coats \nthat ever was made by mortal tailor, he was the proudest father in \nall England.\n\n'What a handy jade it is!' said the locksmith to Mrs Varden, who \nstood by with folded hands--rather proud of her husband too--while \nMiggs held his cap and sword at arm's length, as if mistrusting \nthat the latter might run some one through the body of its own \naccord; 'but never marry a soldier, Doll, my dear.'\n\nDolly didn't ask why not, or say a word, indeed, but stooped her \nhead down very low to tie his sash.\n\n'I never wear this dress,' said honest Gabriel, 'but I think of \npoor Joe Willet.  I loved Joe; he was always a favourite of mine.  \nPoor Joe!--Dear heart, my girl, don't tie me in so tight.'\n\nDolly laughed--not like herself at all--the strangest little laugh \nthat could be--and held her head down lower still.\n\n'Poor Joe!' resumed the locksmith, muttering to himself; 'I always \nwish he had come to me.  I might have made it up between them, if \nhe had.  Ah! old John made a great mistake in his way of acting by \nthat lad--a great mistake.--Have you nearly tied that sash, my \ndear?'\n\nWhat an ill-made sash it was!  There it was, loose again and \ntrailing on the ground.  Dolly was obliged to kneel down, and \nrecommence at the beginning.\n\n'Never mind young Willet, Varden,' said his wife frowning; 'you \nmight find some one more deserving to talk about, I think.'\n\nMiss Miggs gave a great sniff to the same effect.\n\n'Nay, Martha,' cried the locksmith, 'don't let us bear too hard \nupon him.  If the lad is dead indeed, we'll deal kindly by his \nmemory.'\n\n'A runaway and a vagabond!' said Mrs Varden.\n\nMiss Miggs expressed her concurrence as before.\n\n'A runaway, my dear, but not a vagabond,' returned the locksmith in \na gentle tone.  'He behaved himself well, did Joe--always--and was \na handsome, manly fellow.  Don't call him a vagabond, Martha.'\n\nMrs Varden coughed--and so did Miggs.\n\n'He tried hard to gain your good opinion, Martha, I can tell you,' \nsaid the locksmith smiling, and stroking his chin.  'Ah! that he \ndid.  It seems but yesterday that he followed me out to the Maypole \ndoor one night, and begged me not to say how like a boy they used \nhim--say here, at home, he meant, though at the time, I recollect, \nI didn't understand.  \"And how's Miss Dolly, sir?\" says Joe,' \npursued the locksmith, musing sorrowfully, 'Ah!  Poor Joe!'\n\n'Well, I declare,' cried Miggs.  'Oh! Goodness gracious me!'\n\n'What's the matter now?' said Gabriel, turning sharply to her, \n'Why, if here an't Miss Dolly,' said the handmaid, stooping down to \nlook into her face, 'a-giving way to floods of tears.  Oh mim! oh \nsir.  Raly it's give me such a turn,' cried the susceptible damsel, \npressing her hand upon her side to quell the palpitation of her \nheart, 'that you might knock me down with a feather.'\n\nThe locksmith, after glancing at Miss Miggs as if he could have \nwished to have a feather brought straightway, looked on with a \nbroad stare while Dolly hurried away, followed by that sympathising \nyoung woman: then turning to his wife, stammered out, 'Is Dolly \nill?  Have I done anything?  Is it my fault?'\n\n'Your fault!' cried Mrs V. reproachfully.  'There--you had better \nmake haste out.'\n\n'What have I done?' said poor Gabriel.  'It was agreed that Mr \nEdward's name was never to be mentioned, and I have not spoken of \nhim, have I?'\n\nMrs Varden merely replied that she had no patience with him, and \nbounced off after the other two.  The unfortunate locksmith wound \nhis sash about him, girded on his sword, put on his cap, and walked \nout.\n\n'I am not much of a dab at my exercise,' he said under his breath, \n'but I shall get into fewer scrapes at that work than at this.  \nEvery man came into the world for something; my department seems to \nbe to make every woman cry without meaning it.  It's rather hard!'\n\nBut he forgot it before he reached the end of the street, and went \non with a shining face, nodding to the neighbours, and showering \nabout his friendly greetings like mild spring rain.\n\n\n\nChapter 42\n\n\nThe Royal East London Volunteers made a brilliant sight that day: \nformed into lines, squares, circles, triangles, and what not, to \nthe beating of drums, and the streaming of flags; and performed a \nvast number of complex evolutions, in all of which Serjeant Varden \nbore a conspicuous share.  Having displayed their military prowess \nto the utmost in these warlike shows, they marched in glittering \norder to the Chelsea Bun House, and regaled in the adjacent taverns \nuntil dark.  Then at sound of drum they fell in again, and \nreturned amidst the shouting of His Majesty's lieges to the place \nfrom whence they came.\n\nThe homeward march being somewhat tardy,--owing to the un-\nsoldierlike behaviour of certain corporals, who, being gentlemen of \nsedentary pursuits in private life and excitable out of doors, \nbroke several windows with their bayonets, and rendered it \nimperative on the commanding officer to deliver them over to a \nstrong guard, with whom they fought at intervals as they came \nalong,--it was nine o'clock when the locksmith reached home.  A \nhackney-coach was waiting near his door; and as he passed it, Mr \nHaredale looked from the window and called him by his name.\n\n'The sight of you is good for sore eyes, sir,' said the locksmith, \nstepping up to him.  'I wish you had walked in though, rather than \nwaited here.'\n\n'There is nobody at home, I find,' Mr Haredale answered; 'besides, \nI desired to be as private as I could.'\n\n'Humph!' muttered the locksmith, looking round at his house.  \n'Gone with Simon Tappertit to that precious Branch, no doubt.'\n\nMr Haredale invited him to come into the coach, and, if he were not \ntired or anxious to go home, to ride with him a little way that \nthey might have some talk together.  Gabriel cheerfully complied, \nand the coachman mounting his box drove off.\n\n'Varden,' said Mr Haredale, after a minute's pause, 'you will be \namazed to hear what errand I am on; it will seem a very strange \none.'\n\n'I have no doubt it's a reasonable one, sir, and has a meaning in \nit,' replied the locksmith; 'or it would not be yours at all.  Have \nyou just come back to town, sir?'\n\n'But half an hour ago.'\n\n'Bringing no news of Barnaby, or his mother?' said the locksmith \ndubiously.  'Ah! you needn't shake your head, sir.  It was a wild-\ngoose chase.  I feared that, from the first.  You exhausted all \nreasonable means of discovery when they went away.  To begin again \nafter so long a time has passed is hopeless, sir--quite hopeless.'\n\n'Why, where are they?' he returned impatiently.  'Where can they \nbe?  Above ground?'\n\n'God knows,' rejoined the locksmith, 'many that I knew above it \nfive years ago, have their beds under the grass now.  And the world \nis a wide place.  It's a hopeless attempt, sir, believe me.  We \nmust leave the discovery of this mystery, like all others, to time, \nand accident, and Heaven's pleasure.'\n\n'Varden, my good fellow,' said Mr Haredale, 'I have a deeper \nmeaning in my present anxiety to find them out, than you can \nfathom.  It is not a mere whim; it is not the casual revival of my \nold wishes and desires; but an earnest, solemn purpose.  My \nthoughts and dreams all tend to it, and fix it in my mind.  I have \nno rest by day or night; I have no peace or quiet; I am haunted.'\n\nHis voice was so altered from its usual tones, and his manner \nbespoke so much emotion, that Gabriel, in his wonder, could only \nsit and look towards him in the darkness, and fancy the expression \nof his face.\n\n'Do not ask me,' continued Mr Haredale, 'to explain myself.  If I \nwere to do so, you would think me the victim of some hideous fancy.  \nIt is enough that this is so, and that I cannot--no, I can not--lie \nquietly in my bed, without doing what will seem to you \nincomprehensible.'\n\n'Since when, sir,' said the locksmith after a pause, 'has this \nuneasy feeling been upon you?'\n\nMr Haredale hesitated for some moments, and then replied: 'Since \nthe night of the storm.  In short, since the last nineteenth of \nMarch.'\n\nAs though he feared that Varden might express surprise, or reason \nwith him, he hastily went on:\n\n'You will think, I know, I labour under some delusion.  Perhaps I \ndo.  But it is not a morbid one; it is a wholesome action of the \nmind, reasoning on actual occurrences.  You know the furniture \nremains in Mrs Rudge's house, and that it has been shut up, by my \norders, since she went away, save once a-week or so, when an old \nneighbour visits it to scare away the rats.  I am on my way there \nnow.'\n\n'For what purpose?' asked the locksmith.\n\n'To pass the night there,' he replied; 'and not to-night alone, but \nmany nights.  This is a secret which I trust to you in case of any \nunexpected emergency.  You will not come, unless in case of strong \nnecessity, to me; from dusk to broad day I shall be there.  Emma, \nyour daughter, and the rest, suppose me out of London, as I have \nbeen until within this hour.  Do not undeceive them.  This is the \nerrand I am bound upon.  I know I may confide it to you, and I rely \nupon your questioning me no more at this time.'\n\nWith that, as if to change the theme, he led the astounded \nlocksmith back to the night of the Maypole highwayman, to the \nrobbery of Edward Chester, to the reappearance of the man at Mrs \nRudge's house, and to all the strange circumstances which \nafterwards occurred.  He even asked him carelessly about the man's \nheight, his face, his figure, whether he was like any one he had \never seen--like Hugh, for instance, or any man he had known at any \ntime--and put many questions of that sort, which the locksmith, \nconsidering them as mere devices to engage his attention and \nprevent his expressing the astonishment he felt, answered pretty \nmuch at random.\n\nAt length, they arrived at the corner of the street in which the \nhouse stood, where Mr Haredale, alighting, dismissed the coach.  \n'If you desire to see me safely lodged,' he said, turning to the \nlocksmith with a gloomy smile, 'you can.'\n\nGabriel, to whom all former marvels had been nothing in comparison \nwith this, followed him along the narrow pavement in silence.  When \nthey reached the door, Mr Haredale softly opened it with a key he \nhad about him, and closing it when Varden entered, they were left \nin thorough darkness.\n\nThey groped their way into the ground-floor room.  Here Mr \nHaredale struck a light, and kindled a pocket taper he had brought \nwith him for the purpose.  It was then, when the flame was full \nupon him, that the locksmith saw for the first time how haggard, \npale, and changed he looked; how worn and thin he was; how \nperfectly his whole appearance coincided with all that he had said \nso strangely as they rode along.  It was not an unnatural impulse \nin Gabriel, after what he had heard, to note curiously the \nexpression of his eyes.  It was perfectly collected and rational;--\nso much so, indeed, that he felt ashamed of his momentary \nsuspicion, and drooped his own when Mr Haredale looked towards him, \nas if he feared they would betray his thoughts.\n\n'Will you walk through the house?' said Mr Haredale, with a glance \ntowards the window, the crazy shutters of which were closed and \nfastened.  'Speak low.'\n\nThere was a kind of awe about the place, which would have rendered \nit difficult to speak in any other manner.  Gabriel whispered \n'Yes,' and followed him upstairs.\n\nEverything was just as they had seen it last.  There was a sense of \ncloseness from the exclusion of fresh air, and a gloom and \nheaviness around, as though long imprisonment had made the very \nsilence sad.  The homely hangings of the beds and windows had begun \nto droop; the dust lay thick upon their dwindling folds; and damps \nhad made their way through ceiling, wall, and floor.  The boards \ncreaked beneath their tread, as if resenting the unaccustomed \nintrusion; nimble spiders, paralysed by the taper's glare, checked \nthe motion of their hundred legs upon the wall, or dropped like \nlifeless things upon the ground; the death-watch ticked; and the \nscampering feet of rats and mice rattled behind the wainscot.\n\nAs they looked about them on the decaying furniture, it was strange \nto find how vividly it presented those to whom it had belonged, and \nwith whom it was once familiar.  Grip seemed to perch again upon \nhis high-backed chair; Barnaby to crouch in his old favourite \ncorner by the fire; the mother to resume her usual seat, and watch \nhim as of old.  Even when they could separate these objects from \nthe phantoms of the mind which they invoked, the latter only glided \nout of sight, but lingered near them still; for then they seemed to \nlurk in closets and behind the doors, ready to start out and \nsuddenly accost them in well-remembered tones.\n\nThey went downstairs, and again into the room they had just now \nleft.  Mr Haredale unbuckled his sword and laid it on the table, \nwith a pair of pocket pistols; then told the locksmith he would \nlight him to the door.\n\n'But this is a dull place, sir,' said Gabriel lingering; 'may no \none share your watch?'\n\nHe shook his head, and so plainly evinced his wish to be alone, \nthat Gabriel could say no more.  In another moment the locksmith \nwas standing in the street, whence he could see that the light once \nmore travelled upstairs, and soon returning to the room below, \nshone brightly through the chinks of the shutters.\n\nIf ever man were sorely puzzled and perplexed, the locksmith was, \nthat night.  Even when snugly seated by his own fireside, with Mrs \nVarden opposite in a nightcap and night-jacket, and Dolly beside \nhim (in a most distracting dishabille) curling her hair, and \nsmiling as if she had never cried in all her life and never could--\neven then, with Toby at his elbow and his pipe in his mouth, and \nMiggs (but that perhaps was not much) falling asleep in the \nbackground, he could not quite discard his wonder and uneasiness.  \nSo in his dreams--still there was Mr Haredale, haggard and \ncareworn, listening in the solitary house to every sound that \nstirred, with the taper shining through the chinks until the day \nshould turn it pale and end his lonely watching.\n\n\n\nChapter 43\n\n\nNext morning brought no satisfaction to the locksmith's thoughts, \nnor next day, nor the next, nor many others.  Often after nightfall \nhe entered the street, and turned his eyes towards the well-known \nhouse; and as surely as he did so, there was the solitary light, \nstill gleaming through the crevices of the window-shutter, while \nall within was motionless, noiseless, cheerless, as a grave.  \nUnwilling to hazard Mr Haredale's favour by disobeying his strict \ninjunction, he never ventured to knock at the door or to make his \npresence known in any way.  But whenever strong interest and \ncuriosity attracted him to the spot--which was not seldom--the \nlight was always there.\n\nIf he could have known what passed within, the knowledge would have \nyielded him no clue to this mysterious vigil.  At twilight, Mr \nHaredale shut himself up, and at daybreak he came forth.  He never \nmissed a night, always came and went alone, and never varied his \nproceedings in the least degree.\n\nThe manner of his watch was this.  At dusk, he entered the house in \nthe same way as when the locksmith bore him company, kindled a \nlight, went through the rooms, and narrowly examined them.  That \ndone, he returned to the chamber on the ground-floor, and laying \nhis sword and pistols on the table, sat by it until morning.\n\nHe usually had a book with him, and often tried to read, but never \nfixed his eyes or thoughts upon it for five minutes together.  The \nslightest noise without doors, caught his ear; a step upon the \npavement seemed to make his heart leap.\n\nHe was not without some refreshment during the long lonely hours; \ngenerally carrying in his pocket a sandwich of bread and meat, and \na small flask of wine.  The latter diluted with large quantities of \nwater, he drank in a heated, feverish way, as though his throat \nwere dried; but he scarcely ever broke his fast, by so much as a \ncrumb of bread.\n\nIf this voluntary sacrifice of sleep and comfort had its origin, as \nthe locksmith on consideration was disposed to think, in any \nsuperstitious expectation of the fulfilment of a dream or vision \nconnected with the event on which he had brooded for so many years, \nand if he waited for some ghostly visitor who walked abroad when \nmen lay sleeping in their beds, he showed no trace of fear or \nwavering.  His stern features expressed inflexible resolution; his \nbrows were puckered, and his lips compressed, with deep and settled \npurpose; and when he started at a noise and listened, it was not \nwith the start of fear but hope, and catching up his sword as \nthough the hour had come at last, he would clutch it in his tight-\nclenched hand, and listen with sparkling eyes and eager looks, \nuntil it died away.\n\nThese disappointments were numerous, for they ensued on almost \nevery sound, but his constancy was not shaken.  Still, every night \nhe was at his post, the same stern, sleepless, sentinel; and still \nnight passed, and morning dawned, and he must watch again.\n\nThis went on for weeks; he had taken a lodging at Vauxhall in which \nto pass the day and rest himself; and from this place, when the \ntide served, he usually came to London Bridge from Westminster by \nwater, in order that he might avoid the busy streets.\n\nOne evening, shortly before twilight, he came his accustomed road \nupon the river's bank, intending to pass through Westminster Hall \ninto Palace Yard, and there take boat to London Bridge as usual.  \nThere was a pretty large concourse of people assembled round the \nHouses of Parliament, looking at the members as they entered and \ndeparted, and giving vent to rather noisy demonstrations of \napproval or dislike, according to their known opinions.  As he made \nhis way among the throng, he heard once or twice the No-Popery cry, \nwhich was then becoming pretty familiar to the ears of most men; \nbut holding it in very slight regard, and observing that the idlers \nwere of the lowest grade, he neither thought nor cared about it, \nbut made his way along, with perfect indifference.\n\nThere were many little knots and groups of persons in Westminster \nHall: some few looking upward at its noble ceiling, and at the rays \nof evening light, tinted by the setting sun, which streamed in \naslant through its small windows, and growing dimmer by degrees, \nwere quenched in the gathering gloom below; some, noisy passengers, \nmechanics going home from work, and otherwise, who hurried quickly \nthrough, waking the echoes with their voices, and soon darkening \nthe small door in the distance, as they passed into the street \nbeyond; some, in busy conference together on political or private \nmatters, pacing slowly up and down with eyes that sought the \nground, and seeming, by their attitudes, to listen earnestly from \nhead to foot.  Here, a dozen squabbling urchins made a very Babel \nin the air; there, a solitary man, half clerk, half mendicant, \npaced up and down with hungry dejection in his look and gait; at \nhis elbow passed an errand-lad, swinging his basket round and \nround, and with his shrill whistle riving the very timbers of the \nroof; while a more observant schoolboy, half-way through, pocketed \nhis ball, and eyed the distant beadle as he came looming on.  It \nwas that time of evening when, if you shut your eyes and open them \nagain, the darkness of an hour appears to have gathered in a \nsecond.  The smooth-worn pavement, dusty with footsteps, still \ncalled upon the lofty walls to reiterate the shuffle and the tread \nof feet unceasingly, save when the closing of some heavy door \nresounded through the building like a clap of thunder, and drowned \nall other noises in its rolling sound.\n\nMr Haredale, glancing only at such of these groups as he passed \nnearest to, and then in a manner betokening that his thoughts were \nelsewhere, had nearly traversed the Hall, when two persons before \nhim caught his attention.  One of these, a gentleman in elegant \nattire, carried in his hand a cane, which he twirled in a jaunty \nmanner as he loitered on; the other, an obsequious, crouching, \nfawning figure, listened to what he said--at times throwing in a \nhumble word himself--and, with his shoulders shrugged up to his \nears, rubbed his hands submissively, or answered at intervals by an \ninclination of the head, half-way between a nod of acquiescence, \nand a bow of most profound respect.\n\nIn the abstract there was nothing very remarkable in this pair, for \nservility waiting on a handsome suit of clothes and a cane--not to \nspeak of gold and silver sticks, or wands of office--is common \nenough.  But there was that about the well-dressed man, yes, and \nabout the other likewise, which struck Mr Haredale with no pleasant \nfeeling.  He hesitated, stopped, and would have stepped aside and \nturned out of his path, but at the moment, the other two faced \nabout quickly, and stumbled upon him before he could avoid them.\n\nThe gentleman with the cane lifted his hat and had begun to tender \nan apology, which Mr Haredale had begun as hastily to acknowledge \nand walk away, when he stopped short and cried, 'Haredale!  Gad \nbless me, this is strange indeed!'\n\n'It is,' he returned impatiently; 'yes--a--'\n\n'My dear friend,' cried the other, detaining him, 'why such great \nspeed?  One minute, Haredale, for the sake of old acquaintance.'\n\n'I am in haste,' he said.  'Neither of us has sought this meeting.  \nLet it be a brief one.  Good night!'\n\n'Fie, fie!' replied Sir John (for it was he), 'how very churlish!  \nWe were speaking of you.  Your name was on my lips--perhaps you \nheard me mention it?  No?  I am sorry for that.  I am really \nsorry.--You know our friend here, Haredale?  This is really a most \nremarkable meeting!'\n\nThe friend, plainly very ill at ease, had made bold to press Sir \nJohn's arm, and to give him other significant hints that he was \ndesirous of avoiding this introduction.  As it did not suit Sir \nJohn's purpose, however, that it should be evaded, he appeared \nquite unconscious of these silent remonstrances, and inclined his \nhand towards him, as he spoke, to call attention to him more \nparticularly.\n\nThe friend, therefore, had nothing for it, but to muster up the \npleasantest smile he could, and to make a conciliatory bow, as Mr \nHaredale turned his eyes upon him.  Seeing that he was recognised, \nhe put out his hand in an awkward and embarrassed manner, which was \nnot mended by its contemptuous rejection.\n\n'Mr Gashford!' said Haredale, coldly.  'It is as I have heard then.  \nYou have left the darkness for the light, sir, and hate those whose \nopinions you formerly held, with all the bitterness of a renegade.  \nYou are an honour, sir, to any cause.  I wish the one you espouse \nat present, much joy of the acquisition it has made.'\n\nThe secretary rubbed his hands and bowed, as though he would disarm \nhis adversary by humbling himself before him.  Sir John Chester \nagain exclaimed, with an air of great gaiety, 'Now, really, this is \na most remarkable meeting!' and took a pinch of snuff with his \nusual self-possession.\n\n'Mr Haredale,' said Gashford, stealthily raising his eyes, and \nletting them drop again when they met the other's steady gaze, is \ntoo conscientious, too honourable, too manly, I am sure, to attach \nunworthy motives to an honest change of opinions, even though it \nimplies a doubt of those he holds himself.  Mr Haredale is too \njust, too generous, too clear-sighted in his moral vision, to--'\n\n'Yes, sir?' he rejoined with a sarcastic smile, finding the \nsecretary stopped.  'You were saying'--\n\nGashford meekly shrugged his shoulders, and looking on the ground \nagain, was silent.\n\n'No, but let us really,' interposed Sir John at this juncture, 'let \nus really, for a moment, contemplate the very remarkable character \nof this meeting.  Haredale, my dear friend, pardon me if I think \nyou are not sufficiently impressed with its singularity.  Here we \nstand, by no previous appointment or arrangement, three old \nschoolfellows, in Westminster Hall; three old boarders in a \nremarkably dull and shady seminary at Saint Omer's, where you, \nbeing Catholics and of necessity educated out of England, were \nbrought up; and where I, being a promising young Protestant at that \ntime, was sent to learn the French tongue from a native of Paris!'\n\n'Add to the singularity, Sir John,' said Mr Haredale, 'that some of \nyou Protestants of promise are at this moment leagued in yonder \nbuilding, to prevent our having the surpassing and unheard-of \nprivilege of teaching our children to read and write--here--in this \nland, where thousands of us enter your service every year, and to \npreserve the freedom of which, we die in bloody battles abroad, in \nheaps: and that others of you, to the number of some thousands as \nI learn, are led on to look on all men of my creed as wolves and \nbeasts of prey, by this man Gashford.  Add to it besides the bare \nfact that this man lives in society, walks the streets in broad \nday--I was about to say, holds up his head, but that he does not--\nand it will be strange, and very strange, I grant you.'\n\n'Oh! you are hard upon our friend,' replied Sir John, with an \nengaging smile.  'You are really very hard upon our friend!'\n\n'Let him go on, Sir John,' said Gashford, fumbling with his gloves.  \n'Let him go on.  I can make allowances, Sir John.  I am honoured \nwith your good opinion, and I can dispense with Mr Haredale's.  Mr \nHaredale is a sufferer from the penal laws, and I can't expect his \nfavour.'\n\n'You have so much of my favour, sir,' retorted Mr Haredale, with a \nbitter glance at the third party in their conversation, 'that I am \nglad to see you in such good company.  You are the essence of your \ngreat Association, in yourselves.'\n\n'Now, there you mistake,' said Sir John, in his most benignant way.  \n'There--which is a most remarkable circumstance for a man of your \npunctuality and exactness, Haredale--you fall into error.  I don't \nbelong to the body; I have an immense respect for its members, but \nI don't belong to it; although I am, it is certainly true, the \nconscientious opponent of your being relieved.  I feel it my duty \nto be so; it is a most unfortunate necessity; and cost me a bitter \nstruggle.--Will you try this box?  If you don't object to a \ntrifling infusion of a very chaste scent, you'll find its flavour \nexquisite.'\n\n'I ask your pardon, Sir John,' said Mr Haredale, declining the \nproffer with a motion of his hand, 'for having ranked you among the \nhumble instruments who are obvious and in all men's sight.  I \nshould have done more justice to your genius.  Men of your capacity \nplot in secrecy and safety, and leave exposed posts to the duller \nwits.'\n\n'Don't apologise, for the world,' replied Sir John sweetly; 'old \nfriends like you and I, may be allowed some freedoms, or the deuce \nis in it.'\n\nGashford, who had been very restless all this time, but had not \nonce looked up, now turned to Sir John, and ventured to mutter \nsomething to the effect that he must go, or my lord would perhaps \nbe waiting.\n\n'Don't distress yourself, good sir,' said Mr Haredale, 'I'll take \nmy leave, and put you at your ease--' which he was about to do \nwithout ceremony, when he was stayed by a buzz and murmur at the \nupper end of the hall, and, looking in that direction, saw Lord \nGeorge Gordon coming in, with a crowd of people round him.\n\nThere was a lurking look of triumph, though very differently \nexpressed, in the faces of his two companions, which made it a \nnatural impulse on Mr Haredale's part not to give way before this \nleader, but to stand there while he passed.  He drew himself up \nand, clasping his hands behind him, looked on with a proud and \nscornful aspect, while Lord George slowly advanced (for the press \nwas great about him) towards the spot where they were standing.\n\nHe had left the House of Commons but that moment, and had come \nstraight down into the Hall, bringing with him, as his custom was, \nintelligence of what had been said that night in reference to the \nPapists, and what petitions had been presented in their favour, and \nwho had supported them, and when the bill was to be brought in, and \nwhen it would be advisable to present their own Great Protestant \npetition.  All this he told the persons about him in a loud voice, \nand with great abundance of ungainly gesture.  Those who were \nnearest him made comments to each other, and vented threats and \nmurmurings; those who were outside the crowd cried, 'Silence,' and \nStand back,' or closed in upon the rest, endeavouring to make a \nforcible exchange of places: and so they came driving on in a very \ndisorderly and irregular way, as it is the manner of a crowd to do.\n\nWhen they were very near to where the secretary, Sir John, and Mr \nHaredale stood, Lord George turned round and, making a few remarks \nof a sufliciently violent and incoherent kind, concluded with the \nusual sentiment, and called for three cheers to back it.  While \nthese were in the act of being given with great energy, he \nextricated himself from the press, and stepped up to Gashford's \nside.  Both he and Sir John being well known to the populace, they \nfell back a little, and left the four standing together.\n\n'Mr Haredale, Lord George,' said Sir John Chester, seeing that the \nnobleman regarded him with an inquisitive look.  'A Catholic \ngentleman unfortunately--most unhappily a Catholic--but an esteemed \nacquaintance of mine, and once of Mr Gashford's.  My dear Haredale, \nthis is Lord George Gordon.'\n\n'I should have known that, had I been ignorant of his lordship's \nperson,' said Mr Haredale.  'I hope there is but one gentleman in \nEngland who, addressing an ignorant and excited throng, would speak \nof a large body of his fellow-subjects in such injurious language \nas I heard this moment.  For shame, my lord, for shame!'\n\n'I cannot talk to you, sir,' replied Lord George in a loud voice, \nand waving his hand in a disturbed and agitated manner; 'we have \nnothing in common.'\n\n'We have much in common--many things--all that the Almighty gave \nus,' said Mr Haredale; 'and common charity, not to say common sense \nand common decency, should teach you to refrain from these \nproceedings.  If every one of those men had arms in their hands at \nthis moment, as they have them in their heads, I would not leave \nthis place without telling you that you disgrace your station.'\n\n'I don't hear you, sir,' he replied in the same manner as before; \n'I can't hear you.  It is indifferent to me what you say.  Don't \nretort, Gashford,' for the secretary had made a show of wishing to \ndo so; 'I can hold no communion with the worshippers of idols.'\n\nAs he said this, he glanced at Sir John, who lifted his hands and \neyebrows, as if deploring the intemperate conduct of Mr Haredale, \nand smiled in admiration of the crowd and of their leader.\n\n'HE retort!' cried Haredale.  'Look you here, my lord.  Do you know \nthis man?'\n\nLord George replied by laying his hand upon the shoulder of his \ncringing secretary, and viewing him with a smile of confidence.\n\n'This man,' said Mr Haredale, eyeing him from top to toe, 'who in \nhis boyhood was a thief, and has been from that time to this, a \nservile, false, and truckling knave: this man, who has crawled and \ncrept through life, wounding the hands he licked, and biting those \nhe fawned upon: this sycophant, who never knew what honour, truth, \nor courage meant; who robbed his benefactor's daughter of her \nvirtue, and married her to break her heart, and did it, with \nstripes and cruelty: this creature, who has whined at kitchen \nwindows for the broken food, and begged for halfpence at our chapel \ndoors: this apostle of the faith, whose tender conscience cannot \nbear the altars where his vicious life was publicly denounced--Do \nyou know this man?'\n\n'Oh, really--you are very, very hard upon our friend!' exclaimed \nSir John.\n\n'Let Mr Haredale go on,' said Gashford, upon whose unwholesome face \nthe perspiration had broken out during this speech, in blotches of \nwet; 'I don't mind him, Sir John; it's quite as indifferent to me \nwhat he says, as it is to my lord.  If he reviles my lord, as you \nhave heard, Sir John, how can I hope to escape?'\n\n'Is it not enough, my lord,' Mr Haredale continued, 'that I, as \ngood a gentleman as you, must hold my property, such as it is, by a \ntrick at which the state connives because of these hard laws; and \nthat we may not teach our youth in schools the common principles of \nright and wrong; but must we be denounced and ridden by such men as \nthis!  Here is a man to head your No-Popery cry!  For shame.  For \nshame!'\n\nThe infatuated nobleman had glanced more than once at Sir John \nChester, as if to inquire whether there was any truth in these \nstatements concerning Gashford, and Sir John had as often plainly \nanswered by a shrug or look, 'Oh dear me! no.'  He now said, in the \nsame loud key, and in the same strange manner as before:\n\n'I have nothing to say, sir, in reply, and no desire to hear \nanything more.  I beg you won't obtrude your conversation, or these \npersonal attacks, upon me.  I shall not be deterred from doing my \nduty to my country and my countrymen, by any such attempts, whether \nthey proceed from emissaries of the Pope or not, I assure you.  \nCome, Gashford!'\n\nThey had walked on a few paces while speaking, and were now at the \nHall-door, through which they passed together.  Mr Haredale, \nwithout any leave-taking, turned away to the river stairs, which \nwere close at hand, and hailed the only boatman who remained there.\n\nBut the throng of people--the foremost of whom had heard every word \nthat Lord George Gordon said, and among all of whom the rumour had \nbeen rapidly dispersed that the stranger was a Papist who was \nbearding him for his advocacy of the popular cause--came pouring \nout pell-mell, and, forcing the nobleman, his secretary, and Sir \nJohn Chester on before them, so that they appeared to be at their \nhead, crowded to the top of the stairs where Mr Haredale waited \nuntil the boat was ready, and there stood still, leaving him on a \nlittle clear space by himself.\n\nThey were not silent, however, though inactive.  At first some \nindistinct mutterings arose among them, which were followed by a \nhiss or two, and these swelled by degrees into a perfect storm.  \nThen one voice said, 'Down with the Papists!' and there was a \npretty general cheer, but nothing more.  After a lull of a few \nmoments, one man cried out, 'Stone him;' another, 'Duck him;' \nanother, in a stentorian voice, 'No Popery!'  This favourite cry \nthe rest re-echoed, and the mob, which might have been two hundred \nstrong, joined in a general shout.\n\nMr Haredale had stood calmly on the brink of the steps, until they \nmade this demonstration, when he looked round contemptuously, and \nwalked at a slow pace down the stairs.  He was pretty near the \nboat, when Gashford, as if without intention, turned about, and \ndirectly afterwards a great stone was thrown by some hand, in the \ncrowd, which struck him on the head, and made him stagger like a \ndrunken man.\n\nThe blood sprung freely from the wound, and trickled down his coat.  \nHe turned directly, and rushing up the steps with a boldness and \npassion which made them all fall back, demanded:\n\n'Who did that?  Show me the man who hit me.'\n\nNot a soul moved; except some in the rear who slunk off, and, \nescaping to the other side of the way, looked on like indifferent \nspectators.\n\n'Who did that?' he repeated.  'Show me the man who did it.  Dog, \nwas it you?  It was your deed, if not your hand--I know you.'\n\nHe threw himself on Gashford as he said the words, and hurled him \nto the ground.  There was a sudden motion in the crowd, and some \nlaid hands upon him, but his sword was out, and they fell off \nagain.\n\n'My lord--Sir John,'--he cried, 'draw, one of you--you are \nresponsible for this outrage, and I look to you.  Draw, if you are \ngentlemen.'  With that he struck Sir John upon the breast with the \nflat of his weapon, and with a burning face and flashing eyes stood \nupon his guard; alone, before them all.\n\nFor an instant, for the briefest space of time the mind can readily \nconceive, there was a change in Sir John's smooth face, such as no \nman ever saw there.  The next moment, he stepped forward, and laid \none hand on Mr Haredale's arm, while with the other he endeavoured \nto appease the crowd.\n\n'My dear friend, my good Haredale, you are blinded with passion--\nit's very natural, extremely natural--but you don't know friends \nfrom foes.'\n\n'I know them all, sir, I can distinguish well--' he retorted, \nalmost mad with rage.  'Sir John, Lord George--do you hear me?  Are \nyou cowards?'\n\n'Never mind, sir,' said a man, forcing his way between and pushing \nhim towards the stairs with friendly violence, 'never mind asking \nthat.  For God's sake, get away.  What CAN you do against this \nnumber?  And there are as many more in the next street, who'll be \nround dfrectly,'--indeed they began to pour in as he said the \nwords--'you'd be giddy from that cut, in the first heat of a \nscuffle.  Now do retire, sir, or take my word for it you'll be \nworse used than you would be if every man in the crowd was a woman, \nand that woman Bloody Mary.  Come, sir, make haste--as quick as you \ncan.'\n\nMr Haredale, who began to turn faint and sick, felt how sensible \nthis advice was, and descended the steps with his unknown friend's \nassistance.  John Grueby (for John it was) helped him into the \nboat, and giving her a shove off, which sent her thirty feet into \nthe tide, bade the waterman pull away like a Briton; and walked up \nagain as composedly as if he had just landed.\n\nThere was at first a slight disposition on the part of the mob to \nresent this interference; but John looking particularly strong and \ncool, and wearing besides Lord George's livery, they thought better \nof it, and contented themselves with sending a shower of small \nmissiles after the boat, which plashed harmlessly in the water; \nfor she had by this time cleared the bridge, and was darting \nswiftly down the centre of the stream.\n\nFrom this amusement, they proceeded to giving Protestant knocks at \nthe doors of private houses, breaking a few lamps, and assaulting \nsome stray constables.  But, it being whispered that a detachment \nof Life Guards had been sent for, they took to their heels with \ngreat expedition, and left the street quite clear.\n\n\n\nChapter 44\n\n\nWhen the concourse separated, and, dividing into chance clusters, \ndrew off in various directions, there still remained upon the scene \nof the late disturbance, one man.  This man was Gashford, who, \nbruised by his late fall, and hurt in a much greater degree by the \nindignity he had undergone, and the exposure of which he had been \nthe victim, limped up and down, breathing curses and threats of \nvengeance.\n\nIt was not the secretary's nature to waste his wrath in words.  \nWhile he vented the froth of his malevolence in those effusions, he \nkept a steady eye on two men, who, having disappeared with the rest \nwhen the alarm was spread, had since returned, and were now visible \nin the moonlight, at no great distance, as they walked to and fro, \nand talked together.\n\nHe made no move towards them, but waited patiently on the dark side \nof the street, until they were tired of strolling backwards and \nforwards and walked away in company.  Then he followed, but at some \ndistance: keeping them in view, without appearing to have that \nobject, or being seen by them.\n\nThey went up Parliament Street, past Saint Martin's church, and \naway by Saint Giles's to Tottenham Court Road, at the back of \nwhich, upon the western side, was then a place called the Green \nLanes.  This was a retired spot, not of the choicest kind, leading \ninto the fields.  Great heaps of ashes; stagnant pools, overgrown \nwith rank grass and duckweed; broken turnstiles; and the upright \nposts of palings long since carried off for firewood, which menaced \nall heedless walkers with their jagged and rusty nails; were the \nleading features of the landscape: while here and there a donkey, \nor a ragged horse, tethered to a stake, and cropping off a wretched \nmeal from the coarse stunted turf, were quite in keeping with the \nscene, and would have suggested (if the houses had not done so, \nsufficiently, of themselves) how very poor the people were who \nlived in the crazy huts adjacent, and how foolhardy it might prove \nfor one who carried money, or wore decent clothes, to walk that way \nalone, unless by daylight.\n\nPoverty has its whims and shows of taste, as wealth has.  Some of \nthese cabins were turreted, some had false windows painted on their \nrotten walls; one had a mimic clock, upon a crazy tower of four \nfeet high, which screened the chimney; each in its little patch of \nground had a rude seat or arbour.  The population dealt in bones, \nin rags, in broken glass, in old wheels, in birds, and dogs.  \nThese, in their several ways of stowage, filled the gardens; and \nshedding a perfume, not of the most delicious nature, in the air, \nfilled it besides with yelps, and screams, and howling.\n\nInto this retreat, the secretary followed the two men whom he had \nheld in sight; and here he saw them safely lodged, in one of the \nmeanest houses, which was but a room, and that of small dimensions.  \nHe waited without, until the sound of their voices, joined in a \ndiscordant song, assured him they were making merry; and then \napproaching the door, by means of a tottering plank which crossed \nthe ditch in front, knocked at it with his hand.\n\n'Muster Gashfordl' said the man who opened it, taking his pipe from \nhis mouth, in evident surprise.  'Why, who'd have thought of this \nhere honour!  Walk in, Muster Gashford--walk in, sir.'\n\nGashford required no second invitation, and entered with a gracious \nair.  There was a fire in the rusty grate (for though the spring \nwas pretty far advanced, the nights were cold), and on a stool \nbeside it Hugh sat smoking.  Dennis placed a chair, his only one, \nfor the secretary, in front of the hearth; and took his seat again \nupon the stool he had left when he rose to give the visitor \nadmission.\n\n'What's in the wind now, Muster Gashford?' he said, as he resumed \nhis pipe, and looked at him askew.  'Any orders from head-quarters?  \nAre we going to begin?  What is it, Muster Gashford?'\n\n'Oh, nothing, nothing,' rejoined the secretary, with a friendly nod \nto Hugh.  'We have broken the ice, though.  We had a little spurt \nto-day--eh, Dennis?'\n\n'A very little one,' growled the hangman.  'Not half enough for me.'\n\n'Nor me neither!' cried Hugh.  'Give us something to do with life \nin it--with life in it, master.  Ha, ha!'\n\n'Why, you wouldn't,' said the secretary, with his worst expression \nof face, and in his mildest tones, 'have anything to do, with--with \ndeath in it?'\n\n'I don't know that,' replied Hugh.  'I'm open to orders.  I don't \ncare; not I.'\n\n'Nor I!' vociferated Dennis.\n\n'Brave fellows!' said the secretary, in as pastor-like a voice as \nif he were commending them for some uncommon act of valour and \ngenerosity.  'By the bye'--and here he stopped and warmed his \nhands: then suddenly looked up--'who threw that stone to-day?'\n\nMr Dennis coughed and shook his head, as who should say, 'A mystery \nindeed!'  Hugh sat and smoked in silence.\n\n'It was well done!' said the secretary, warming his hands again.  \n'I should like to know that man.'\n\n'Would you?' said Dennis, after looking at his face to assure \nhimself that he was serious.  'Would you like to know that man, \nMuster Gashford?'\n\n'I should indeed,' replied the secretary.\n\n'Why then, Lord love you,' said the hangman, in his hoarest \nchuckle, as he pointed with his pipe to Hugh, 'there he sits.  \nThat's the man.  My stars and halters, Muster Gashford,' he added \nin a whisper, as he drew his stool close to him and jogged him with \nhis elbow, 'what a interesting blade he is!  He wants as much \nholding in as a thorough-bred bulldog.  If it hadn't been for me \nto-day, he'd have had that 'ere Roman down, and made a riot of it, \nin another minute.'\n\n'And why not?' cried Hugh in a surly voice, as he overheard this \nlast remark.  'Where's the good of putting things off?  Strike \nwhile the iron's hot; that's what I say.'\n\n'Ah!' retorted Dennis, shaking his head, with a kind of pity for \nhis friend's ingenuous youth; 'but suppose the iron an't hot, \nbrother!  You must get people's blood up afore you strike, and have \n'em in the humour.  There wasn't quite enough to provoke 'em to-\nday, I tell you.  If you'd had your way, you'd have spoilt the fun \nto come, and ruined us.'\n\n'Dennis is quite right,' said Gashford, smoothly.  'He is \nperfectly correct.  Dennis has great knowledge of the world.'\n\n'I ought to have, Muster Gashford, seeing what a many people I've \nhelped out of it, eh?' grinned the hangman, whispering the words \nbehind his hand.\n\nThe secretary laughed at this jest as much as Dennis could desire, \nand when he had done, said, turning to Hugh:\n\n'Dennis's policy was mine, as you may have observed.  You saw, for \ninstance, how I fell when I was set upon.  I made no resistance.  I \ndid nothing to provoke an outbreak.  Oh dear no!'\n\n'No, by the Lord Harry!' cried Dennis with a noisy laugh, 'you went \ndown very quiet, Muster Gashford--and very flat besides.  I thinks \nto myself at the time \"it's all up with Muster Gashford!\"  I never \nsee a man lay flatter nor more still--with the life in him--than \nyou did to-day.  He's a rough 'un to play with, is that 'ere \nPapist, and that's the fact.'\n\nThe secretary's face, as Dennis roared with laughter, and turned \nhis wrinkled eyes on Hugh who did the like, might have furnished a \nstudy for the devil's picture.  He sat quite silent until they \nwere serious again, and then said, looking round:\n\n'We are very pleasant here; so very pleasant, Dennis, that but for \nmy lord's particular desire that I should sup with him, and the \ntime being very near at hand, I should he inclined to stay, until \nit would be hardly safe to go homeward.  I come upon a little \nbusiness--yes, I do--as you supposed.  It's very flattering to you; \nbeing this.  If we ever should be obliged--and we can't tell, you \nknow--this is a very uncertain world'--\n\n'I believe you, Muster Gashford,' interposed the hangman with a \ngrave nod.  'The uncertainties as I've seen in reference to this \nhere state of existence, the unexpected contingencies as have come \nabout!--Oh my eye!'  Feeling the subject much too vast for \nexpression, he puffed at his pipe again, and looked the rest.\n\n'I say,' resumed the secretary, in a slow, impressive way; 'we \ncan't tell what may come to pass; and if we should be obliged, \nagainst our wills, to have recourse to violence, my lord (who has \nsuffered terribly to-day, as far as words can go) consigns to you \ntwo--bearing in mind my recommendation of you both, as good staunch \nmen, beyond all doubt and suspicion--the pleasant task of \npunishing this Haredale.  You may do as you please with him, or \nhis, provided that you show no mercy, and no quarter, and leave no \ntwo beams of his house standing where the builder placed them.  You \nmay sack it, burn it, do with it as you like, but it must come \ndown; it must be razed to the ground; and he, and all belonging to \nhim, left as shelterless as new-born infants whom their mothers \nhave exposed.  Do you understand me?' said Gashford, pausing, and \npressing his hands together gently.\n\n'Understand you, master!' cried Hugh.  'You speak plain now.  Why, \nthis is hearty!'\n\n'I knew you would like it,' said Gashford, shaking him by the hand; \n'I thought you would.  Good night!  Don't rise, Dennis: I would \nrather find my way alone.  I may have to make other visits here, \nand it's pleasant to come and go without disturbing you.  I can \nfind my way perfectly well.  Good night!'\n\nHe was gone, and had shut the door behind him.  They looked at each \nother, and nodded approvingly: Dennis stirred up the fire.\n\n'This looks a little more like business!' he said.\n\n'Ay, indeed!' cried Hugh; 'this suits me!'\n\n'I've heerd it said of Muster Gashford,' said the hangman, 'that \nhe'd a surprising memory and wonderful firmness--that he never \nforgot, and never forgave.--Let's drink his health!'\n\nHugh readily complied--pouring no liquor on the floor when he drank \nthis toast--and they pledged the secretary as a man after their own \nhearts, in a bumper.\n\n\n\nChapter 45\n\n\nWhile the worst passions of the worst men were thus working in the \ndark, and the mantle of religion, assumed to cover the ugliest \ndeformities, threatened to become the shroud of all that was good \nand peaceful in society, a circumstance occurred which once more \naltered the position of two persons from whom this history has long \nbeen separated, and to whom it must now return.\n\nIn a small English country town, the inhabitants of which supported \nthemselves by the labour of their hands in plaiting and preparing \nstraw for those who made bonnets and other articles of dress and \nornament from that material,--concealed under an assumed name, and \nliving in a quiet poverty which knew no change, no pleasures, and \nfew cares but that of struggling on from day to day in one great \ntoil for bread,--dwelt Barnaby and his mother.  Their poor cottage \nhad known no stranger's foot since they sought the shelter of its \nroof five years before; nor had they in all that time held any \ncommerce or communication with the old world from which they had \nfled.  To labour in peace, and devote her labour and her life to \nher poor son, was all the widow sought.  If happiness can be said \nat any time to be the lot of one on whom a secret sorrow preys, she \nwas happy now.  Tranquillity, resignation, and her strong love of \nhim who needed it so much, formed the small circle of her quiet \njoys; and while that remained unbroken, she was contented.\n\nFor Barnaby himself, the time which had flown by, had passed him \nlike the wind.  The daily suns of years had shed no brighter gleam \nof reason on his mind; no dawn had broken on his long, dark night.  \nHe would sit sometimes--often for days together on a low seat by \nthe fire or by the cottage door, busy at work (for he had learnt \nthe art his mother plied), and listening, God help him, to the \ntales she would repeat, as a lure to keep him in her sight.  He had \nno recollection of these little narratives; the tale of yesterday \nwas new to him upon the morrow; but he liked them at the moment; \nand when the humour held him, would remain patiently within doors, \nhearing her stories like a little child, and working cheerfully \nfrom sunrise until it was too dark to see.\n\nAt other times,--and then their scanty earnings were barely \nsufficient to furnish them with food, though of the coarsest sort,--\nhe would wander abroad from dawn of day until the twilight \ndeepened into night.  Few in that place, even of the children, \ncould be idle, and he had no companions of his own kind.  Indeed \nthere were not many who could have kept up with him in his rambles, \nhad there been a legion.  But there were a score of vagabond dogs \nbelonging to the neighbours, who served his purpose quite as well.  \nWith two or three of these, or sometimes with a full half-dozen \nbarking at his heels, he would sally forth on some long expedition \nthat consumed the day; and though, on their return at nightfall, \nthe dogs would come home limping and sore-footed, and almost spent \nwith their fatigue, Barnaby was up and off again at sunrise with \nsome new attendants of the same class, with whom he would return in \nlike manner.  On all these travels, Grip, in his little basket at \nhis master's back, was a constant member of the party, and when \nthey set off in fine weather and in high spirits, no dog barked \nlouder than the raven.\n\nTheir pleasures on these excursions were simple enough.  A crust of \nbread and scrap of meat, with water from the brook or spring, \nsufficed for their repast.  Barnaby's enjoyments were, to walk, and \nrun, and leap, till he was tired; then to lie down in the long \ngrass, or by the growing corn, or in the shade of some tall tree, \nlooking upward at the light clouds as they floated over the blue \nsurface of the sky, and listening to the lark as she poured out her \nbrilliant song.  There were wild-flowers to pluck--the bright red \npoppy, the gentle harebell, the cowslip, and the rose.  There were \nbirds to watch; fish; ants; worms; hares or rabbits, as they darted \nacross the distant pathway in the wood and so were gone: millions \nof living things to have an interest in, and lie in wait for, and \nclap hands and shout in memory of, when they had disappeared.  In \ndefault of these, or when they wearied, there was the merry \nsunlight to hunt out, as it crept in aslant through leaves and \nboughs of trees, and hid far down--deep, deep, in hollow places--\nlike a silver pool, where nodding branches seemed to bathe and \nsport; sweet scents of summer air breathing over fields of beans or \nclover; the perfume of wet leaves or moss; the life of waving \ntrees, and shadows always changing.  When these or any of them \ntired, or in excess of pleasing tempted him to shut his eyes, there \nwas slumber in the midst of all these soft delights, with the \ngentle wind murmuring like music in his ears, and everything around \nmelting into one delicious dream.\n\nTheir hut--for it was little more--stood on the outskirts of the \ntown, at a short distance from the high road, but in a secluded \nplace, where few chance passengers strayed at any season of the \nyear.  It had a plot of garden-ground attached, which Barnaby, in \nfits and starts of working, trimmed, and kept in order.  Within \ndoors and without, his mother laboured for their common good; and \nhail, rain, snow, or sunshine, found no difference in her.\n\nThough so far removed from the scenes of her past life, and with so \nlittle thought or hope of ever visiting them again, she seemed to \nhave a strange desire to know what happened in the busy world.  Any \nold newspaper, or scrap of intelligence from London, she caught at \nwith avidity.  The excitement it produced was not of a pleasurable \nkind, for her manner at such times expressed the keenest anxiety \nand dread; but it never faded in the least degree.  Then, and in \nstormy winter nights, when the wind blew loud and strong, the old \nexpression came into her face, and she would be seized with a fit \nof trembling, like one who had an ague.  But Barnaby noted little \nof this; and putting a great constraint upon herself, she usually \nrecovered her accustomed manner before the change had caught his \nobservation.\n\nGrip was by no means an idle or unprofitable member of the humble \nhousehold.  Partly by dint of Barnaby's tuition, and partly by \npursuing a species of self-instruction common to his tribe, and \nexerting his powers of observation to the utmost, he had acquired a \ndegree of sagacity which rendered him famous for miles round.  His \nconversational powers and surprising performances were the \nuniversal theme: and as many persons came to see the wonderful \nraven, and none left his exertions unrewarded--when he condescended \nto exhibit, which was not always, for genius is capricious--his \nearnings formed an important item in the common stock.  Indeed, the \nbird himself appeared to know his value well; for though he was \nperfectly free and unrestrained in the presence of Barnaby and his \nmother, he maintained in public an amazing gravity, and never \nstooped to any other gratuitous performances than biting the ankles \nof vagabond boys (an exercise in which he much delighted), killing \na fowl or two occasionally, and swallowing the dinners of various \nneighbouring dogs, of whom the boldest held him in great awe and \ndread.\n\nTime had glided on in this way, and nothing had happened to disturb \nor change their mode of life, when, one summer's night in June, \nthey were in their little garden, resting from the labours of the \nday.  The widow's work was yet upon her knee, and strewn upon the \nground about her; and Barnaby stood leaning on his spade, gazing at \nthe brightness in the west, and singing softly to himself.\n\n'A brave evening, mother!  If we had, chinking in our pockets, but \na few specks of that gold which is piled up yonder in the sky, we \nshould be rich for life.'\n\n'We are better as we are,' returned the widow with a quiet smile.  \n'Let us be contented, and we do not want and need not care to have \nit, though it lay shining at our feet.'\n\n'Ay!' said Barnaby, resting with crossed arms on his spade, and \nlooking wistfully at the sunset, that's well enough, mother; but \ngold's a good thing to have.  I wish that I knew where to find it.  \nGrip and I could do much with gold, be sure of that.'\n\n'What would you do?' she asked.\n\n'What!  A world of things.  We'd dress finely--you and I, I mean; \nnot Grip--keep horses, dogs, wear bright colours and feathers, do \nno more work, live delicately and at our ease.  Oh, we'd find uses \nfor it, mother, and uses that would do us good.  I would I knew \nwhere gold was buried.  How hard I'd work to dig it up!'\n\n'You do not know,' said his mother, rising from her seat and laying \nher hand upon his shoulder, 'what men have done to win it, and how \nthey have found, too late, that it glitters brightest at a \ndistance, and turns quite dim and dull when handled.'\n\n'Ay, ay; so you say; so you think,' he answered, still looking \neagerly in the same direction.  'For all that, mother, I should \nlike to try.'\n\n'Do you not see,' she said, 'how red it is?  Nothing bears so many \nstains of blood, as gold.  Avoid it.  None have such cause to hate \nits name as we have.  Do not so much as think of it, dear love.  It \nhas brought such misery and suffering on your head and mine as few \nhave known, and God grant few may have to undergo.  I would rather \nwe were dead and laid down in our graves, than you should ever come \nto love it.'\n\nFor a moment Barnaby withdrew his eyes and looked at her with \nwonder.  Then, glancing from the redness in the sky to the mark \nupon his wrist as if he would compare the two, he seemed about to \nquestion her with earnestness, when a new object caught his \nwandering attention, and made him quite forgetful of his purpose.\n\nThis was a man with dusty feet and garments, who stood, bare-\nheaded, behind the hedge that divided their patch of garden from \nthe pathway, and leant meekly forward as if he sought to mingle \nwith their conversation, and waited for his time to speak.  His \nface was turned towards the brightness, too, but the light that \nfell upon it showed that he was blind, and saw it not.\n\n'A blessing on those voices!' said the wayfarer.  'I feel the \nbeauty of the night more keenly, when I hear them.  They are like \neyes to me.  Will they speak again, and cheer the heart of a poor \ntraveller?'\n\n'Have you no guide?' asked the widow, after a moment's pause.\n\n'None but that,' he answered, pointing with his staff towards the \nsun; 'and sometimes a milder one at night, but she is idle now.'\n\n'Have you travelled far?'\n\n'A weary way and long,' rejoined the traveller as he shook his \nhead.  'A weary, weary, way.  I struck my stick just now upon the \nbucket of your well--be pleased to let me have a draught of water, \nlady.'\n\n'Why do you call me lady?' she returned.  'I am as poor as you.'\n\n'Your speech is soft and gentle, and I judge by that,' replied the \nman.  'The coarsest stuffs and finest silks, are--apart from the \nsense of touch--alike to me.  I cannot judge you by your dress.'\n\n'Come round this way,' said Barnaby, who had passed out at the \ngarden-gate and now stood close beside him.  'Put your hand in \nmine.  You're blind and always in the dark, eh?  Are you frightened \nin the dark?  Do you see great crowds of faces, now?  Do they grin \nand chatter?'\n\n'Alas!' returned the other, 'I see nothing.  Waking or sleeping, \nnothing.'\n\nBarnaby looked curiously at his eyes, and touching them with his \nfingers, as an inquisitive child might, led him towards the house.\n\n'You have come a long distance, 'said the widow, meeting him at the \ndoor.  'How have you found your way so far?'\n\n'Use and necessity are good teachers, as I have heard--the best of \nany,' said the blind man, sitting down upon the chair to which \nBarnaby had led him, and putting his hat and stick upon the red-\ntiled floor.  'May neither you nor your son ever learn under them.  \nThey are rough masters.'\n\n'You have wandered from the road, too,' said the widow, in a tone \nof pity.\n\n'Maybe, maybe,' returned the blind man with a sigh, and yet with \nsomething of a smile upon his face, 'that's likely.  Handposts and \nmilestones are dumb, indeed, to me.  Thank you the more for this \nrest, and this refreshing drink!'\n\nAs he spoke, he raised the mug of water to his mouth.  It was \nclear, and cold, and sparkling, but not to his taste nevertheless, \nor his thirst was not very great, for he only wetted his lips and \nput it down again.\n\nHe wore, hanging with a long strap round his neck, a kind of scrip \nor wallet, in which to carry food.  The widow set some bread and \ncheese before him, but he thanked her, and said that through the \nkindness of the charitable he had broken his fast once since \nmorning, and was not hungry.  When he had made her this reply, he \nopened his wallet, and took out a few pence, which was all it \nappeared to contain.\n\n'Might I make bold to ask,' he said, turning towards where Barnaby \nstood looking on, 'that one who has the gift of sight, would lay \nthis out for me in bread to keep me on my way?  Heaven's blessing \non the young feet that will bestir themselves in aid of one so \nhelpless as a sightless man!'\n\nBarnaby looked at his mother, who nodded assent; in another moment \nhe was gone upon his charitable errand.  The blind man sat \nlistening with an attentive face, until long after the sound of his \nretreating footsteps was inaudible to the widow, and then said, \nsuddenly, and in a very altered tone:\n\n'There are various degrees and kinds of blindness, widow.  There \nis the connubial blindness, ma'am, which perhaps you may have \nobserved in the course of your own experience, and which is a kind \nof wilful and self-bandaging blindness.  There is the blindness of \nparty, ma'am, and public men, which is the blindness of a mad bull \nin the midst of a regiment of soldiers clothed in red.  There is \nthe blind confidence of youth, which is the blindness of young \nkittens, whose eyes have not yet opened on the world; and there is \nthat physical blindness, ma'am, of which I am, contrairy to my own \ndesire, a most illustrious example.  Added to these, ma'am, is that \nblindness of the intellect, of which we have a specimen in your \ninteresting son, and which, having sometimes glimmerings and \ndawnings of the light, is scarcely to be trusted as a total \ndarkness.  Therefore, ma'am, I have taken the liberty to get him \nout of the way for a short time, while you and I confer together, \nand this precaution arising out of the delicacy of my sentiments \ntowards yourself, you will excuse me, ma'am, I know.'\n\nHaving delivered himself of this speech with many flourishes of \nmanner, he drew from beneath his coat a flat stone bottle, and \nholding the cork between his teeth, qualified his mug of water with \na plentiful infusion of the liquor it contained.  He politely \ndrained the bumper to her health, and the ladies, and setting it \ndown empty, smacked his lips with infinite relish.\n\n'I am a citizen of the world, ma'am,' said the blind man, corking \nhis bottle, 'and if I seem to conduct myself with freedom, it is \ntherefore.  You wonder who I am, ma'am, and what has brought me \nhere.  Such experience of human nature as I have, leads me to that \nconclusion, without the aid of eyes by which to read the movements \nof your soul as depicted in your feminine features.  I will \nsatisfy your curiosity immediately, ma'am; immediately.'  With \nthat he slapped his bottle on its broad back, and having put it \nunder his garment as before, crossed his legs and folded his hands, \nand settled himself in his chair, previous to proceeding any \nfurther.\n\nThe change in his manner was so unexpected, the craft and \nwickedness of his deportment were so much aggravated by his \ncondition--for we are accustomed to see in those who have lost a \nhuman sense, something in its place almost divine--and this \nalteration bred so many fears in her whom he addressed, that she \ncould not pronounce one word.  After waiting, as it seemed, for \nsome remark or answer, and waiting in vain, the visitor resumed:\n\n'Madam, my name is Stagg.  A friend of mine who has desired the \nhonour of meeting with you any time these five years past, has \ncommissioned me to call upon you.  I should be glad to whisper that \ngentleman's name in your ear.--Zounds, ma'am, are you deaf?  Do you \nhear me say that I should be glad to whisper my friend's name in \nyour ear?'\n\n'You need not repeat it,' said the widow, with a stifled groan; 'I \nsee too well from whom you come.'\n\n'But as a man of honour, ma'am,' said the blind man, striking \nhimself on the breast, 'whose credentials must not be disputed, I \ntake leave to say that I WILL mention that gentleman's name.  Ay, \nay,' he added, seeming to catch with his quick ear the very motion \nof her hand, 'but not aloud.  With your leave, ma'am, I desire the \nfavour of a whisper.'\n\nShe moved towards him, and stooped down.  He muttered a word in her \near; and, wringing her hands, she paced up and down the room like \none distracted.  The blind man, with perfect composure, produced \nhis bottle again, mixed another glassful; put it up as before; and, \ndrinking from time to time, followed her with his face in silence.\n\n'You are slow in conversation, widow,' he said after a time, \npausing in his draught.  'We shall have to talk before your son.'\n\n'What would you have me do?' she answered.  'What do you want?'\n\n'We are poor, widow, we are poor,' he retorted, stretching out his \nright hand, and rubbing his thumb upon its palm.\n\n'Poor!' she cried.  'And what am I?'\n\n'Comparisons are odious,' said the blind man.  'I don't know, I \ndon't care.  I say that we are poor.  My friend's circumstances are \nindifferent, and so are mine.  We must have our rights, widow, or \nwe must be bought off.  But you know that, as well as I, so where \nis the use of talking?'\n\nShe still walked wildly to and fro.  At length, stopping abruptly \nbefore him, she said:\n\n'Is he near here?'\n\n'He is.  Close at hand.'\n\n'Then I am lost!'\n\n'Not lost, widow,' said the blind man, calmly; 'only found.  Shall \nI call him?'\n\n'Not for the world,' she answered, with a shudder.\n\n'Very good,' he replied, crossing his legs again, for he had made \nas though he would rise and walk to the door.  'As you please, \nwidow.  His presence is not necessary that I know of.  But both he \nand I must live; to live, we must eat and drink; to eat and drink, \nwe must have money:--I say no more.'\n\n'Do you know how pinched and destitute I am?' she retorted.  'I do \nnot think you do, or can.  If you had eyes, and could look around \nyou on this poor place, you would have pity on me.  Oh! let your \nheart be softened by your own affliction, friend, and have some \nsympathy with mine.'\n\nThe blind man snapped his fingers as he answered:\n\n'--Beside the question, ma'am, beside the question.  I have the \nsoftest heart in the world, but I can't live upon it.  Many a \ngentleman lives well upon a soft head, who would find a heart of \nthe same quality a very great drawback.  Listen to me.  This is a \nmatter of business, with which sympathies and sentiments have \nnothing to do.  As a mutual friend, I wish to arrange it in a \nsatisfactory manner, if possible; and thus the case stands.--If you \nare very poor now, it's your own choice.  You have friends who, in \ncase of need, are always ready to help you.  My friend is in a more \ndestitute and desolate situation than most men, and, you and he \nbeing linked together in a common cause, he naturally looks to you \nto assist him.  He has boarded and lodged with me a long time (for \nas I said just now, I am very soft-hearted), and I quite approve of \nhis entertaining this opinion.  You have always had a roof over \nyour head; he has always been an outcast.  You have your son to \ncomfort and assist you; he has nobody at all.  The advantages must \nnot be all one side.  You are in the same boat, and we must divide \nthe ballast a little more equally.'\n\nShe was about to speak, but he checked her, and went on.\n\n'The only way of doing this, is by making up a little purse now and \nthen for my friend; and that's what I advise.  He bears you no \nmalice that I know of, ma'am: so little, that although you have \ntreated him harshly more than once, and driven him, I may say, out \nof doors, he has that regard for you that I believe even if you \ndisappointed him now, he would consent to take charge of your son, \nand to make a man of him.'\n\nHe laid a great stress on these latter words, and paused as if to \nfind out what effect they had produced.  She only answered by her \ntears.\n\n'He is a likely lad,' said the blind man, thoughtfully, 'for many \npurposes, and not ill-disposed to try his fortune in a little \nchange and bustle, if I may judge from what I heard of his talk \nwith you to-night.--Come.  In a word, my friend has pressing \nnecessity for twenty pounds.  You, who can give up an annuity, can \nget that sum for him.  It's a pity you should be troubled.  You \nseem very comfortable here, and it's worth that much to remain so.  \nTwenty pounds, widow, is a moderate demand.  You know where to \napply for it; a post will bring it you.--Twenty pounds!'\n\nShe was about to answer him again, but again he stopped her.\n\n'Don't say anything hastily; you might be sorry for it.  Think of \nit a little while.  Twenty pounds--of other people's money--how \neasy!  Turn it over in your mind.  I'm in no hurry.  Night's coming \non, and if I don't sleep here, I shall not go far.  Twenty pounds!  \nConsider of it, ma'am, for twenty minutes; give each pound a \nminute; that's a fair allowance.  I'll enjoy the air the while, \nwhich is very mild and pleasant in these parts.'\n\nWith these words he groped his way to the door, carrying his chair \nwith him.  Then seating himself, under a spreading honeysuckle, and \nstretching his legs across the threshold so that no person could \npass in or out without his knowledge, he took from his pocket a \npipe, flint, steel and tinder-box, and began to smoke.  It was a \nlovely evening, of that gentle kind, and at that time of year, when \nthe twilight is most beautiful.  Pausing now and then to let his \nsmoke curl slowly off, and to sniff the grateful fragrance of the \nflowers, he sat there at his ease--as though the cottage were his \nproper dwelling, and he had held undisputed possession of it all \nhis life--waiting for the widow's answer and for Barnaby's return.\n\n\n\nChapter 46\n\n\nWhen Barnaby returned with the bread, the sight of the pious old \npilgrim smoking his pipe and making himself so thoroughly at home, \nappeared to surprise even him; the more so, as that worthy person, \ninstead of putting up the loaf in his wallet as a scarce and \nprecious article, tossed it carelessly on the table, and producing \nhis bottle, bade him sit down and drink.\n\n'For I carry some comfort, you see,' he said.  'Taste that.  Is it \ngood?'\n\nThe water stood in Barnaby's eyes as he coughed from the strength \nof the draught, and answered in the affirmative.\n\n'Drink some more,' said the blind man; 'don't be afraid of it.  \nYou don't taste anything like that, often, eh?'\n\n'Often!' cried Barnaby.  'Never!'\n\n'Too poor?' returned the blind man with a sigh.  'Ay.  That's bad.  \nYour mother, poor soul, would be happier if she was richer, \nBarnaby.'\n\n'Why, so I tell her--the very thing I told her just before you came \nto-night, when all that gold was in the sky,' said Barnaby, drawing \nhis chair nearer to him, and looking eagerly in his face.  'Tell \nme.  Is there any way of being rich, that I could find out?'\n\n'Any way!  A hundred ways.'\n\n'Ay, ay?' he returned.  'Do you say so?  What are they?--Nay, \nmother, it's for your sake I ask; not mine;--for yours, indeed.  \nWhat are they?'\n\nThe blind man turned his face, on which there was a smile of \ntriumph, to where the widow stood in great distress; and answered,\n\n'Why, they are not to be found out by stay-at-homes, my good \nfriend.'\n\n'By stay-at-homes!' cried Barnaby, plucking at his sleeve.  'But I \nam not one.  Now, there you mistake.  I am often out before the \nsun, and travel home when he has gone to rest.  I am away in the \nwoods before the day has reached the shady places, and am often \nthere when the bright moon is peeping through the boughs, and \nlooking down upon the other moon that lives in the water.  As I \nwalk along, I try to find, among the grass and moss, some of that \nsmall money for which she works so hard and used to shed so many \ntears.  As I lie asleep in the shade, I dream of it--dream of \ndigging it up in heaps; and spying it out, hidden under bushes; and \nseeing it sparkle, as the dew-drops do, among the leaves.  But I \nnever find it.  Tell me where it is.  I'd go there, if the journey \nwere a whole year long, because I know she would be happier when I \ncame home and brought some with me.  Speak again.  I'll listen to \nyou if you talk all night.'\n\nThe blind man passed his hand lightly over the poor fellow's face, \nand finding that his elbows were planted on the table, that his \nchin rested on his two hands, that he leaned eagerly forward, and \nthat his whole manner expressed the utmost interest and anxiety, \npaused for a minute as though he desired the widow to observe this \nfully, and then made answer:\n\n'It's in the world, bold Barnaby, the merry world; not in solitary \nplaces like those you pass your time in, but in crowds, and where \nthere's noise and rattle.'\n\n'Good! good!' cried Barnaby, rubbing his hands.  'Yes! I love \nthat.  Grip loves it too.  It suits us both.  That's brave!'\n\n'--The kind of places,' said the blind man, 'that a young fellow \nlikes, and in which a good son may do more for his mother, and \nhimself to boot, in a month, than he could here in all his life--\nthat is, if he had a friend, you know, and some one to advise \nwith.'\n\n'You hear this, mother?' cried Barnaby, turning to her with \ndelight.  'Never tell me we shouldn't heed it, if it lay shining \nat out feet.  Why do we heed it so much now?  Why do you toil from \nmorning until night?'\n\n'Surely,' said the blind man, 'surely.  Have you no answer, widow?  \nIs your mind,' he slowly added, 'not made up yet?'\n\n'Let me speak with you,' she answered, 'apart.'\n\n'Lay your hand upon my sleeve,' said Stagg, arising from the table; \n'and lead me where you will.  Courage, bold Barnaby.  We'll talk \nmore of this: I've a fancy for you.  Wait there till I come back.  \nNow, widow.'\n\nShe led him out at the door, and into the little garden, where they \nstopped.\n\n'You are a fit agent,' she said, in a half breathless manner, 'and \nwell represent the man who sent you here.'\n\n'I'll tell him that you said so,' Stagg retorted.  'He has a regard \nfor you, and will respect me the more (if possible) for your \npraise.  We must have our rights, widow.'\n\n'Rights!  Do you know,' she said, 'that a word from me--'\n\n'Why do you stop?' returned the blind man calmly, after a long \npause.  'Do I know that a word from you would place my friend in \nthe last position of the dance of life?  Yes, I do.  What of that?  \nIt will never be spoken, widow.'\n\n'You are sure of that?'\n\n'Quite--so sure, that I don't come here to discuss the question.  I \nsay we must have our rights, or we must be bought off.  Keep to \nthat point, or let me return to my young friend, for I have an \ninterest in the lad, and desire to put him in the way of making his \nfortune.  Bah! you needn't speak,' he added hastily; 'I know what \nyou would say: you have hinted at it once already.  Have I no \nfeeling for you, because I am blind?  No, I have not.  Why do you \nexpect me, being in darkness, to be better than men who have their \nsight--why should you?  Is the hand of Heaven more manifest in my \nhaving no eyes, than in your having two?  It's the cant of you \nfolks to be horrified if a blind man robs, or lies, or steals; oh \nyes, it's far worse in him, who can barely live on the few \nhalfpence that are thrown to him in streets, than in you, who can \nsee, and work, and are not dependent on the mercies of the world.  \nA curse on you!  You who have five senses may be wicked at your \npleasure; we who have four, and want the most important, are to \nlive and be moral on our affliction.  The true charity and justice \nof rich to poor, all the world over!'\n\nHe paused a moment when he had said these words, and caught the \nsound of money, jingling in her hand.\n\n'Well?' he cried, quickly resuming his former manner.  'That should \nlead to something.  The point, widow?'\n\n'First answer me one question,' she replied.  'You say he is close \nat hand.  Has he left London?'\n\n'Being close at hand, widow, it would seem he has,' returned the \nblind man.\n\n'I mean, for good?  You know that.'\n\n'Yes, for good.  The truth is, widow, that his making a longer stay \nthere might have had disagreeable consequences.  He has come away \nfor that reason.'\n\n'Listen,' said the widow, telling some money out, upon a bench \nbeside them.  'Count.'\n\n'Six,' said the blind man, listening attentively.  'Any more?'\n\n'They are the savings,' she answered, 'of five years.  Six \nguineas.'\n\nHe put out his hand for one of the coins; felt it carefully, put it \nbetween his teeth, rung it on the bench; and nodded to her to \nproceed.\n\n'These have been scraped together and laid by, lest sickness or \ndeath should separate my son and me.  They have been purchased at \nthe price of much hunger, hard labour, and want of rest.  If you \nCAN take them--do--on condition that you leave this place upon the \ninstant, and enter no more into that room, where he sits now, \nexpecting your return.'\n\n'Six guineas,' said the blind man, shaking his head, 'though of the \nfullest weight that were ever coined, fall very far short of twenty \npounds, widow.'\n\n'For such a sum, as you know, I must write to a distant part of the \ncountry.  To do that, and receive an answer, I must have time.'\n\n'Two days?' said Stagg.\n\n'More.'\n\n'Four days?'\n\n'A week.  Return on this day week, at the same hour, but not to the \nhouse.  Wait at the corner of the lane.'\n\n'Of course,' said the blind man, with a crafty look, 'I shall find \nyou there?'\n\n'Where else can I take refuge?  Is it not enough that you have made \na beggar of me, and that I have sacrificed my whole store, so \nhardly earned, to preserve this home?'\n\n'Humph!' said the blind man, after some consideration.  'Set me \nwith my face towards the point you speak of, and in the middle of \nthe road.  Is this the spot?'\n\n'It is.'\n\n'On this day week at sunset.  And think of him within doors.--For \nthe present, good night.'\n\nShe made him no answer, nor did he stop for any.  He went slowly \naway, turning his head from time to time, and stopping to listen, \nas if he were curious to know whether he was watched by any one.  \nThe shadows of night were closing fast around, and he was soon lost \nin the gloom.  It was not, however, until she had traversed the \nlane from end to end, and made sure that he was gone, that she re-\nentered the cottage, and hurriedly barred the door and window.\n\n'Mother!' said Barnaby.  'What is the matter?  Where is the blind \nman?'\n\n'He is gone.'\n\n'Gone!' he cried, starting up.  'I must have more talk with him.  \nWhich way did he take?'\n\n'I don't know,' she answered, folding her arms about him.  'You \nmust not go out to-night.  There are ghosts and dreams abroad.'\n\n'Ay?' said Barnaby, in a frightened whisper.\n\n'It is not safe to stir.  We must leave this place to-morrow.'\n\n'This place!  This cottage--and the little garden, mother!'\n\n'Yes!  To-morrow morning at sunrise.  We must travel to London; \nlose ourselves in that wide place--there would be some trace of us \nin any other town--then travel on again, and find some new abode.'\n\nLittle persuasion was required to reconcile Barnaby to anything \nthat promised change.  In another minute, he was wild with delight; \nin another, full of grief at the prospect of parting with his \nfriends the dogs; in another, wild again; then he was fearful of \nwhat she had said to prevent his wandering abroad that night, and \nfull of terrors and strange questions.  His light-heartedness in \nthe end surmounted all his other feelings, and lying down in his \nclothes to the end that he might be ready on the morrow, he soon \nfell fast asleep before the poor turf fire.\n\nHis mother did not close her eyes, but sat beside him, watching.  \nEvery breath of wind sounded in her ears like that dreaded footstep \nat the door, or like that hand upon the latch, and made the calm \nsummer night, a night of horror.  At length the welcome day \nappeared.  When she had made the little preparations which were \nneedful for their journey, and had prayed upon her knees with many \ntears, she roused Barnaby, who jumped up gaily at her summons.\n\nHis clothes were few enough, and to carry Grip was a labour of \nlove.  As the sun shed his earliest beams upon the earth, they \nclosed the door of their deserted home, and turned away.  The sky \nwas blue and bright.  The air was fresh and filled with a thousand \nperfumes.  Barnaby looked upward, and laughed with all his heart.\n\nBut it was a day he usually devoted to a long ramble, and one of \nthe dogs--the ugliest of them all--came bounding up, and jumping \nround him in the fulness of his joy.  He had to bid him go back in \na surly tone, and his heart smote him while he did so.  The dog \nretreated; turned with a half-incredulous, half-imploring look; \ncame a little back; and stopped.\n\nIt was the last appeal of an old companion and a faithful friend--\ncast off.  Barnaby could bear no more, and as he shook his head and \nwaved his playmate home, he burst into tears.\n\n'Oh mother, mother, how mournful he will be when he scratches at \nthe door, and finds it always shut!'\n\nThere was such a sense of home in the thought, that though her own \neyes overflowed she would not have obliterated the recollection of \nit, either from her own mind or from his, for the wealth of the \nwhole wide world.\n\n\n\nChapter 47\n\n\nIn the exhaustless catalogue of Heaven's mercies to mankind, the \npower we have of finding some germs of comfort in the hardest \ntrials must ever occupy the foremost place; not only because it \nsupports and upholds us when we most require to be sustained, but \nbecause in this source of consolation there is something, we have \nreason to believe, of the divine spirit; something of that goodness \nwhich detects amidst our own evil doings, a redeeming quality; \nsomething which, even in our fallen nature, we possess in common \nwith the angels; which had its being in the old time when they trod \nthe earth, and lingers on it yet, in pity.\n\nHow often, on their journey, did the widow remember with a grateful \nheart, that out of his deprivation Barnaby's cheerfulness and \naffection sprung!  How often did she call to mind that but for \nthat, he might have been sullen, morose, unkind, far removed from \nher--vicious, perhaps, and cruel!  How often had she cause for \ncomfort, in his strength, and hope, and in his simple nature!  \nThose feeble powers of mind which rendered him so soon forgetful of \nthe past, save in brief gleams and flashes,--even they were a \ncomfort now.  The world to him was full of happiness; in every \ntree, and plant, and flower, in every bird, and beast, and tiny \ninsect whom a breath of summer wind laid low upon the ground, he \nhad delight.  His delight was hers; and where many a wise son would \nhave made her sorrowful, this poor light-hearted idiot filled her \nbreast with thankfulness and love.\n\nTheir stock of money was low, but from the hoard she had told into \nthe blind man's hand, the widow had withheld one guinea.  This, \nwith the few pence she possessed besides, was to two persons of \ntheir frugal habits, a goodly sum in bank.  Moreover they had Grip \nin company; and when they must otherwise have changed the guinea, \nit was but to make him exhibit outside an alehouse door, or in a \nvillage street, or in the grounds or gardens of a mansion of the \nbetter sort, and scores who would have given nothing in charity, \nwere ready to bargain for more amusement from the talking bird.\n\nOne day--for they moved slowly, and although they had many rides in \ncarts and waggons, were on the road a week--Barnaby, with Grip upon \nhis shoulder and his mother following, begged permission at a trim \nlodge to go up to the great house, at the other end of the avenue, \nand show his raven.  The man within was inclined to give them \nadmittance, and was indeed about to do so, when a stout gentleman \nwith a long whip in his hand, and a flushed face which seemed to \nindicate that he had had his morning's draught, rode up to the \ngate, and called in a loud voice and with more oaths than the \noccasion seemed to warrant to have it opened directly.\n\n'Who hast thou got here?' said the gentleman angrily, as the man \nthrew the gate wide open, and pulled off his hat, 'who are these?  \nEh? art a beggar, woman?'\n\nThe widow answered with a curtsey, that they were poor travellers.\n\n'Vagrants,' said the gentleman, 'vagrants and vagabonds.  Thee \nwish to be made acquainted with the cage, dost thee--the cage, the \nstocks, and the whipping-post?  Where dost come from?'\n\nShe told him in a timid manner,--for he was very loud, hoarse, and \nred-faced,--and besought him not to be angry, for they meant no \nharm, and would go upon their way that moment.\n\n'Don't he too sure of that,' replied the gentleman, 'we don't allow \nvagrants to roam about this place.  I know what thou want'st---\nstray linen drying on hedges, and stray poultry, eh?  What hast \ngot in that basket, lazy hound?'\n\n'Grip, Grip, Grip--Grip the clever, Grip the wicked, Grip the \nknowing--Grip, Grip, Grip,' cried the raven, whom Barnaby had shut \nup on the approach of this stern personage.  'I'm a devil I'm a \ndevil I'm a devil, Never say die Hurrah Bow wow wow, Polly put the \nkettle on we'll all have tea.'\n\n'Take the vermin out, scoundrel,' said the gentleman, 'and let me \nsee him.'\n\nBarnaby, thus condescendingly addressed, produced his bird, but not \nwithout much fear and trembling, and set him down upon the ground; \nwhich he had no sooner done than Grip drew fifty corks at least, \nand then began to dance; at the same time eyeing the gentleman with \nsurprising insolence of manner, and screwing his head so much on \none side that he appeared desirous of screwing it off upon the spot.\n\nThe cork-drawing seemed to make a greater impression on the \ngentleman's mind, than the raven's power of speech, and was indeed \nparticularly adapted to his habits and capacity.  He desired to \nhave that done again, but despite his being very peremptory, and \nnotwithstanding that Barnaby coaxed to the utmost, Grip turned a \ndeaf ear to the request, and preserved a dead silence.\n\n'Bring him along,' said the gentleman, pointing to the house.  But \nGrip, who had watched the action, anticipated his master, by \nhopping on before them;--constantly flapping his wings, and \nscreaming 'cook!' meanwhile, as a hint perhaps that there was \ncompany coming, and a small collation would be acceptable.\n\nBarnaby and his mother walked on, on either side of the gentleman \non horseback, who surveyed each of them from time to time in a \nproud and coarse manner, and occasionally thundered out some \nquestion, the tone of which alarmed Barnaby so much that he could \nfind no answer, and, as a matter of course, could make him no \nreply.  On one of these occasions, when the gentleman appeared \ndisposed to exercise his horsewhip, the widow ventured to inform \nhim in a low voice and with tears in her eyes, that her son was of \nweak mind.\n\n'An idiot, eh?' said the gentleman, looking at Barnaby as he spoke.  \n'And how long hast thou been an idiot?'\n\n'She knows,' was Barnaby's timid answer, pointing to his mother--\n'I--always, I believe.'\n\n'From his birth,' said the widow.\n\n'I don't believe it,' cried the gentleman, 'not a bit of it.  It's \nan excuse not to work.  There's nothing like flogging to cure that \ndisorder.  I'd make a difference in him in ten minutes, I'll be \nbound.'\n\n'Heaven has made none in more than twice ten years, sir,' said the \nwidow mildly.\n\n'Then why don't you shut him up? we pay enough for county \ninstitutions, damn 'em.  But thou'd rather drag him about to \nexcite charity--of course.  Ay, I know thee.'\n\nNow, this gentleman had various endearing appellations among his \nintimate friends.  By some he was called 'a country gentleman of \nthe true school,' by some 'a fine old country gentleman,' by some \n'a sporting gentleman,' by some 'a thorough-bred Englishman,' by \nsome 'a genuine John Bull;' but they all agreed in one respect, and \nthat was, that it was a pity there were not more like him, and that \nbecause there were not, the country was going to rack and ruin \nevery day.  He was in the commission of the peace, and could write \nhis name almost legibly; but his greatest qualifications were, that \nhe was more severe with poachers, was a better shot, a harder \nrider, had better horses, kept better dogs, could eat more solid \nfood, drink more strong wine, go to bed every night more drunk and \nget up every morning more sober, than any man in the county.  In \nknowledge of horseflesh he was almost equal to a farrier, in stable \nlearning he surpassed his own head groom, and in gluttony not a pig \non his estate was a match for him.  He had no seat in Parliament \nhimself, but he was extremely patriotic, and usually drove his \nvoters up to the poll with his own hands.  He was warmly attached \nto church and state, and never appointed to the living in his gift \nany but a three-bottle man and a first-rate fox-hunter.  He \nmistrusted the honesty of all poor people who could read and write, \nand had a secret jealousy of his own wife (a young lady whom he had \nmarried for what his friends called 'the good old English reason,' \nthat her father's property adjoined his own) for possessing those \naccomplishments in a greater degree than himself.  In short, \nBarnaby being an idiot, and Grip a creature of mere brute instinct, \nit would be very hard to say what this gentleman was.\n\nHe rode up to the door of a handsome house approached by a great \nflight of steps, where a man was waiting to take his horse, and led \nthe way into a large hall, which, spacious as it was, was tainted \nwith the fumes of last night's stale debauch.  Greatcoats, riding-\nwhips, bridles, top-boots, spurs, and such gear, were strewn about \non all sides, and formed, with some huge stags' antlers, and a few \nportraits of dogs and horses, its principal embellishments.\n\nThrowing himself into a great chair (in which, by the bye, he often \nsnored away the night, when he had been, according to his admirers, \na finer country gentleman than usual) he bade the man to tell his \nmistress to come down: and presently there appeared, a little \nflurried, as it seemed, by the unwonted summons, a lady much \nyounger than himself, who had the appearance of being in delicate \nhealth, and not too happy.\n\n'Here!  Thou'st no delight in following the hounds as an \nEnglishwoman should have,' said the gentleman.  'See to this \nhere.  That'll please thee perhaps.'\n\nThe lady smiled, sat down at a little distance from him, and \nglanced at Barnaby with a look of pity.\n\n'He's an idiot, the woman says,' observed the gentleman, shaking \nhis head; 'I don't believe it.'\n\n'Are you his mother?' asked the lady.\n\nShe answered yes.\n\n'What's the use of asking HER?' said the gentleman, thrusting his \nhands into his breeches pockets.  'She'll tell thee so, of course.  \nMost likely he's hired, at so much a day.  There.  Get on.  Make \nhim do something.'\n\nGrip having by this time recovered his urbanity, condescended, at \nBarnaby's solicitation, to repeat his various phrases of speech, \nand to go through the whole of his performances with the utmost \nsuccess.  The corks, and the never say die, afforded the gentleman \nso much delight that he demanded the repetition of this part of the \nentertainment, until Grip got into his basket, and positively \nrefused to say another word, good or bad.  The lady too, was much \namused with him; and the closing point of his obstinacy so \ndelighted her husband that he burst into a roar of laughter, and \ndemanded his price.\n\nBarnaby looked as though he didn't understand his meaning.  \nProbably he did not.\n\n'His price,' said the gentleman, rattling the money in his pockets, \n'what dost want for him?  How much?'\n\n'He's not to be sold,' replied Barnaby, shutting up the basket in a \ngreat hurry, and throwing the strap over his shoulder.  'Mother, \ncome away.'\n\n'Thou seest how much of an idiot he is, book-learner,' said the \ngentleman, looking scornfully at his wife.  'He can make a bargain.  \nWhat dost want for him, old woman?'\n\n'He is my son's constant companion,' said the widow.  'He is not to \nbe sold, sir, indeed.'\n\n'Not to be sold!' cried the gentleman, growing ten times redder, \nhoarser, and louder than before.  'Not to be sold!'\n\n'Indeed no,' she answered.  'We have never thought of parting with \nhim, sir, I do assure you.'\n\nHe was evidently about to make a very passionate retort, when a few \nmurmured words from his wife happening to catch his ear, he turned \nsharply round, and said, 'Eh?  What?'\n\n'We can hardly expect them to sell the bird, against their own \ndesire,' she faltered.  'If they prefer to keep him--'\n\n'Prefer to keep him!' he echoed.  'These people, who go tramping \nabout the country a-pilfering and vagabondising on all hands, \nprefer to keep a bird, when a landed proprietor and a justice asks \nhis price!  That old woman's been to school.  I know she has.  \nDon't tell me no,' he roared to the widow, 'I say, yes.'\n\nBarnaby's mother pleaded guilty to the accusation, and hoped there \nwas no harm in it.\n\n'No harm!' said the gentleman.  'No.  No harm.  No harm, ye old \nrebel, not a bit of harm.  If my clerk was here, I'd set ye in the \nstocks, I would, or lay ye in jail for prowling up and down, on the \nlook-out for petty larcenies, ye limb of a gipsy.  Here, Simon, put \nthese pilferers out, shove 'em into the road, out with 'em!  Ye \ndon't want to sell the bird, ye that come here to beg, don't ye?  \nIf they an't out in double-quick, set the dogs upon 'em!'\n\nThey waited for no further dismissal, but fled precipitately, \nleaving the gentleman to storm away by himself (for the poor lady \nhad already retreated), and making a great many vain attempts to \nsilence Grip, who, excited by the noise, drew corks enough for a \ncity feast as they hurried down the avenue, and appeared to \ncongratulate himself beyond measure on having been the cause of the \ndisturbance.  When they had nearly reached the lodge, another \nservant, emerging from the shrubbery, feigned to be very active \nin ordering them off, but this man put a crown into the widow's \nhand, and whispering that his lady sent it, thrust them gently from \nthe gate.\n\nThis incident only suggested to the widow's mind, when they halted \nat an alehouse some miles further on, and heard the justice's \ncharacter as given by his friends, that perhaps something more than \ncapacity of stomach and tastes for the kennel and the stable, were \nrequired to form either a perfect country gentleman, a thoroughbred \nEnglishman, or a genuine John Bull; and that possibly the terms \nwere sometimes misappropriated, not to say disgraced.  She little \nthought then, that a circumstance so slight would ever influence \ntheir future fortunes; but time and experience enlightened her in \nthis respect.\n\n'Mother,' said Barnaby, as they were sitting next day in a waggon \nwhich was to take them within ten miles of the capital, 'we're \ngoing to London first, you said.  Shall we see that blind man \nthere?'\n\nShe was about to answer 'Heaven forbid!' but checked herself, and \ntold him No, she thought not; why did he ask?\n\n'He's a wise man,' said Barnaby, with a thoughtful countenance.  'I \nwish that we may meet with him again.  What was it that he said of \ncrowds?  That gold was to be found where people crowded, and not \namong the trees and in such quiet places?  He spoke as if he loved \nit; London is a crowded place; I think we shall meet him there.'\n\n'But why do you desire to see him, love?' she asked.\n\n'Because,' said Barnaby, looking wistfully at her, 'he talked to me \nabout gold, which is a rare thing, and say what you will, a thing \nyou would like to have, I know.  And because he came and went away \nso strangely--just as white-headed old men come sometimes to my \nbed's foot in the night, and say what I can't remember when the \nbright day returns.  He told me he'd come back.  I wonder why he \nbroke his word!'\n\n'But you never thought of being rich or gay, before, dear Barnaby.  \nYou have always been contented.'\n\nHe laughed and bade her say that again, then cried, 'Ay ay--oh \nyes,' and laughed once more.  Then something passed that caught his \nfancy, and the topic wandered from his mind, and was succeeded by \nanother just as fleeting.\n\nBut it was plain from what he had said, and from his returning to \nthe point more than once that day, and on the next, that the blind \nman's visit, and indeed his words, had taken strong possession of \nhis mind.  Whether the idea of wealth had occurred to him for the \nfirst time on looking at the golden clouds that evening--and images \nwere often presented to his thoughts by outward objects quite as \nremote and distant; or whether their poor and humble way of life \nhad suggested it, by contrast, long ago; or whether the accident \n(as he would deem it) of the blind man's pursuing the current of \nhis own remarks, had done so at the moment; or he had been \nimpressed by the mere circumstance of the man being blind, and, \ntherefore, unlike any one with whom he had talked before; it was \nimpossible to tell.  She tried every means to discover, but in \nvain; and the probability is that Barnaby himself was equally in \nthe dark.\n\nIt filled her with uneasiness to find him harping on this string, \nbut all that she could do, was to lead him quickly to some other \nsubject, and to dismiss it from his brain.  To caution him against \ntheir visitor, to show any fear or suspicion in reference to him, \nwould only be, she feared, to increase that interest with which \nBarnaby regarded him, and to strengthen his desire to meet him once \nagain.  She hoped, by plunging into the crowd, to rid herself of \nher terrible pursuer, and then, by journeying to a distance and \nobserving increased caution, if that were possible, to live again \nunknown, in secrecy and peace.\n\nThey reached, in course of time, their halting-place within ten \nmiles of London, and lay there for the night, after bargaining to \nbe carried on for a trifle next day, in a light van which was \nreturning empty, and was to start at five o'clock in the morning.  \nThe driver was punctual, the road good--save for the dust, the \nweather being very hot and dry--and at seven in the forenoon of \nFriday the second of June, one thousand seven hundred and eighty, \nthey alighted at the foot of Westminster Bridge, bade their \nconductor farewell, and stood alone, together, on the scorching \npavement.  For the freshness which night sheds upon such busy \nthoroughfares had already departed, and the sun was shining with \nuncommon lustre.\n\n\n\nChapter 48\n\n\nUncertain where to go next, and bewildered by the crowd of people \nwho were already astir, they sat down in one of the recesses on the \nbridge, to rest.  They soon became aware that the stream of life \nwas all pouring one way, and that a vast throng of persons were \ncrossing the river from the Middlesex to the Surrey shore, in \nunusual haste and evident excitement.  They were, for the most \npart, in knots of two or three, or sometimes half-a-dozen; they \nspoke little together--many of them were quite silent; and hurried \non as if they had one absorbing object in view, which was common to \nthem all.\n\nThey were surprised to see that nearly every man in this great \nconcourse, which still came pouring past, without slackening in the \nleast, wore in his hat a blue cockade; and that the chance \npassengers who were not so decorated, appeared timidly anxious to \nescape observation or attack, and gave them the wall as if they \nwould conciliate them.  This, however, was natural enough, \nconsidering their inferiority in point of numbers; for the \nproportion of those who wore blue cockades, to those who were \ndressed as usual, was at least forty or fifty to one.  There was no \nquarrelling, however: the blue cockades went swarming on, passing \neach other when they could, and making all the speed that was \npossible in such a multitude; and exchanged nothing more than \nlooks, and very often not even those, with such of the passers-by \nas were not of their number.\n\nAt first, the current of people had been confined to the two \npathways, and but a few more eager stragglers kept the road.  But \nafter half an hour or so, the passage was completely blocked up by \nthe great press, which, being now closely wedged together, and \nimpeded by the carts and coaches it encountered, moved but slowly, \nand was sometimes at a stand for five or ten minutes together.\n\nAfter the lapse of nearly two hours, the numbers began to diminish \nvisibly, and gradually dwindling away, by little and little, left \nthe bridge quite clear, save that, now and then, some hot and dusty \nman, with the cockade in his hat, and his coat thrown over his \nshoulder, went panting by, fearful of being too late, or stopped to \nask which way his friends had taken, and being directed, hastened \non again like one refreshed.  In this comparative solitude, which \nseemed quite strange and novel after the late crowd, the widow had \nfor the first time an opportunity of inquiring of an old man who \ncame and sat beside them, what was the meaning of that great \nassemblage.\n\n'Why, where have you come from,' he returned, 'that you haven't \nheard of Lord George Gordon's great association?  This is the day \nthat he presents the petition against the Catholics, God bless \nhim!'\n\n'What have all these men to do with that?' she said.\n\n'What have they to do with it!' the old man replied.  'Why, how you \ntalk!  Don't you know his lordship has declared he won't present it \nto the house at all, unless it is attended to the door by forty \nthousand good and true men at least?  There's a crowd for you!'\n\n'A crowd indeed!' said Barnaby.  'Do you hear that, mother!'\n\n'And they're mustering yonder, as I am told,' resumed the old man, \n'nigh upon a hundred thousand strong.  Ah!  Let Lord George alone.  \nHe knows his power.  There'll be a good many faces inside them \nthree windows over there,' and he pointed to where the House of \nCommons overlooked the river, 'that'll turn pale when good Lord \nGeorge gets up this afternoon, and with reason too!  Ay, ay.  Let \nhis lordship alone.  Let him alone.  HE knows!'  And so, with much \nmumbling and chuckling and shaking of his forefinger, he rose, with \nthe assistance of his stick, and tottered off.\n\n'Mother!' said Barnaby, 'that's a brave crowd he talks of.  Come!'\n\n'Not to join it!' cried his mother.\n\n'Yes, yes,' he answered, plucking at her sleeve.  'Why not?  Come!'\n\n'You don't know,' she urged, 'what mischief they may do, where they \nmay lead you, what their meaning is.  Dear Barnaby, for my sake--'\n\n'For your sake!' he cried, patting her hand.  'Well! It IS for your \nsake, mother.  You remember what the blind man said, about the \ngold.  Here's a brave crowd!  Come!  Or wait till I come back--yes, \nyes, wait here.'\n\nShe tried with all the earnestness her fears engendered, to turn \nhim from his purpose, but in vain.  He was stooping down to buckle \non his shoe, when a hackney-coach passed them rather quickly, and a \nvoice inside called to the driver to stop.\n\n'Young man,' said a voice within.\n\n'Who's that?' cried Barnaby, looking up.\n\n'Do you wear this ornament?' returned the stranger, holding out a \nblue cockade.\n\n'In Heaven's name, no.  Pray do not give it him!' exclaimed the \nwidow.\n\n'Speak for yourself, woman,' said the man within the coach, coldly.  \n'Leave the young man to his choice; he's old enough to make it, and \nto snap your apron-strings.  He knows, without your telling, \nwhether he wears the sign of a loyal Englishman or not.'\n\nBarnaby, trembling with impatience, cried, 'Yes! yes, yes, I do,' \nas he had cried a dozen times already.  The man threw him a \ncockade, and crying, 'Make haste to St George's Fields,' ordered \nthe coachman to drive on fast; and left them.\n\nWith hands that trembled with his eagerness to fix the bauble in \nhis hat, Barnaby was adjusting it as he best could, and hurriedly \nreplying to the tears and entreaties of his mother, when two \ngentlemen passed on the opposite side of the way.  Observing them, \nand seeing how Barnaby was occupied, they stopped, whispered \ntogether for an instant, turned back, and came over to them.\n\n'Why are you sitting here?' said one of them, who was dressed in a \nplain suit of black, wore long lank hair, and carried a great cane.  \n'Why have you not gone with the rest?'\n\n'I am going, sir,' replied Barnaby, finishing his task, and putting \nhis hat on with an air of pride.  'I shall be there directly.'\n\n'Say \"my lord,\" young man, when his lordship does you the honour of \nspeaking to you,' said the second gentleman mildly.  'If you don't \nknow Lord George Gordon when you see him, it's high time you \nshould.'\n\n'Nay, Gashford,' said Lord George, as Barnaby pulled off his hat \nagain and made him a low bow, 'it's no great matter on a day like \nthis, which every Englishman will remember with delight and pride.  \nPut on your hat, friend, and follow us, for you lag behind and are \nlate.  It's past ten now.  Didn't you know that the hour for \nassembling was ten o'clock?'\n\nBarnaby shook his head and looked vacantly from one to the other.\n\n'You might have known it, friend,' said Gashford, 'it was perfectly \nunderstood.  How came you to be so ill informed?'\n\n'He cannot tell you, sir,' the widow interposed.  'It's of no use \nto ask him.  We are but this morning come from a long distance in \nthe country, and know nothing of these matters.'\n\n'The cause has taken a deep root, and has spread its branches far \nand wide,' said Lord George to his secretary.  'This is a pleasant \nhearing.  I thank Heaven for it!'\n\n'Amen!' cried Gashford with a solemn face.\n\n'You do not understand me, my lord,' said the widow.  'Pardon me, \nbut you cruelly mistake my meaning.  We know nothing of these \nmatters.  We have no desire or right to join in what you are about \nto do.  This is my son, my poor afflicted son, dearer to me than my \nown life.  In mercy's name, my lord, go your way alone, and do not \ntempt him into danger!'\n\n'My good woman,' said Gashford, 'how can you!--Dear me!--What do \nyou mean by tempting, and by danger?  Do you think his lordship is \na roaring lion, going about and seeking whom he may devour?  God \nbless me!'\n\n'No, no, my lord, forgive me,' implored the widow, laying both her \nhands upon his breast, and scarcely knowing what she did, or said, \nin the earnestness of her supplication, 'but there are reasons why \nyou should hear my earnest, mother's prayer, and leave my son with \nme.  Oh do!  He is not in his right senses, he is not, indeed!'\n\n'It is a bad sign of the wickedness of these times,' said Lord \nGeorge, evading her touch, and colouring deeply, 'that those who \ncling to the truth and support the right cause, are set down as \nmad.  Have you the heart to say this of your own son, unnatural \nmother!'\n\n'I am astonished at you!' said Gashford, with a kind of meek \nseverity.  'This is a very sad picture of female depravity.'\n\n'He has surely no appearance,' said Lord George, glancing at \nBarnaby, and whispering in his secretary's ear, 'of being deranged?  \nAnd even if he had, we must not construe any trifling peculiarity \ninto madness.  Which of us'--and here he turned red again--'would \nbe safe, if that were made the law!'\n\n'Not one,' replied the secretary; 'in that case, the greater the \nzeal, the truth, and talent; the more direct the call from above; \nthe clearer would be the madness.  With regard to this young man, \nmy lord,' he added, with a lip that slightly curled as he looked at \nBarnaby, who stood twirling his hat, and stealthily beckoning them \nto come away, 'he is as sensible and self-possessed as any one I \never saw.'\n\n'And you desire to make one of this great body?' said Lord George, \naddressing him; 'and intended to make one, did you?'\n\n'Yes--yes,' said Barnaby, with sparkling eyes.  'To be sure I did!  \nI told her so myself.'\n\n'I see,' replied Lord George, with a reproachful glance at the \nunhappy mother.  'I thought so.  Follow me and this gentleman, and \nyou shall have your wish.'\n\nBarnaby kissed his mother tenderly on the cheek, and bidding her be \nof good cheer, for their fortunes were both made now, did as he was \ndesired.  She, poor woman, followed too--with how much fear and \ngrief it would be hard to tell.\n\nThey passed quickly through the Bridge Road, where the shops were \nall shut up (for the passage of the great crowd and the expectation \nof their return had alarmed the tradesmen for their goods and \nwindows), and where, in the upper stories, all the inhabitants were \ncongregated, looking down into the street below, with faces \nvariously expressive of alarm, of interest, expectancy, and \nindignation.  Some of these applauded, and some hissed; but \nregardless of these interruptions--for the noise of a vast \ncongregation of people at a little distance, sounded in his ears \nlike the roaring of the sea--Lord George Gordon quickened his pace, \nand presently arrived before St George's Fields.\n\nThey were really fields at that time, and of considerable extent.  \nHere an immense multitude was collected, bearing flags of various \nkinds and sizes, but all of the same colour--blue, like the \ncockades--some sections marching to and fro in military array, and \nothers drawn up in circles, squares, and lines.  A large portion, \nboth of the bodies which paraded the ground, and of those which \nremained stationary, were occupied in singing hymns or psalms.  \nWith whomsoever this originated, it was well done; for the sound of \nso many thousand voices in the air must have stirred the heart of \nany man within him, and could not fail to have a wonderful effect \nupon enthusiasts, however mistaken.\n\nScouts had been posted in advance of the great body, to give notice \nof their leader's coming.  These falling back, the word was quickly \npassed through the whole host, and for a short interval there \nensued a profound and deathlike silence, during which the mass was \nso still and quiet, that the fluttering of a banner caught the eye, \nand became a circumstance of note.  Then they burst into a \ntremendous shout, into another, and another; and the air seemed \nrent and shaken, as if by the discharge of cannon.\n\n'Gashford!' cried Lord George, pressing his secretary's arm tight \nwithin his own, and speaking with as much emotion in his voice, as \nin his altered face, 'I arn called indeed, now.  I feel and know \nit.  I am the leader of a host.  If they summoned me at this moment \nwith one voice to lead them on to death, I'd do it--Yes, and fall \nfirst myself!'\n\n'It is a proud sight,' said the secretary.  'It is a noble day for \nEngland, and for the great cause throughout the world.  Such \nhomage, my lord, as I, an humble but devoted man, can render--'\n\n'What are you doing?' cried his master, catching him by both hands; \nfor he had made a show of kneeling at his feet.  'Do not unfit me, \ndear Gashford, for the solemn duty of this glorious day--' the \ntears stood in the eyes of the poor gentleman as he said the \nwords.--'Let us go among them; we have to find a place in some \ndivision for this new recruit--give me your hand.'\n\nGashford slid his cold insidious palm into his master's grasp, and \nso, hand in hand, and followed still by Barnaby and by his mother \ntoo, they mingled with the concourse.\n\nThey had by this time taken to their singing again, and as their \nleader passed between their ranks, they raised their voices to \ntheir utmost.  Many of those who were banded together to support \nthe religion of their country, even unto death, had never heard a \nhymn or psalm in all their lives.  But these fellows having for the \nmost part strong lungs, and being naturally fond of singing, \nchanted any ribaldry or nonsense that occurred to them, feeling \npretty certain that it would not be detected in the general chorus, \nand not caring much if it were.  Many of these voluntaries were \nsung under the very nose of Lord George Gordon, who, quite \nunconscious of their burden, passed on with his usual stiff and \nsolemn deportment, very much edified and delighted by the pious \nconduct of his followers.\n\nSo they went on and on, up this line, down that, round the exterior \nof this circle, and on every side of that hollow square; and still \nthere were lines, and squares, and circles out of number to review.  \nThe day being now intensely hot, and the sun striking down his \nfiercest rays upon the field, those who carried heavy banners began \nto grow faint and weary; most of the number assembled were fain to \npull off their neckcloths, and throw their coats and waistcoats \nopen; and some, towards the centre, quite overpowered by the \nexcessive heat, which was of course rendered more unendurable by \nthe multitude around them, lay down upon the grass, and offered all \nthey had about them for a drink of water.  Still, no man left the \nground, not even of those who were so distressed; still Lord \nGeorge, streaming from every pore, went on with Gashford; and still \nBarnaby and his mother followed close behind them.\n\nThey had arrived at the top of a long line of some eight hundred \nmen in single file, and Lord George had turned his head to look \nback, when a loud cry of recognition--in that peculiar and half-\nstifled tone which a voice has, when it is raised in the open air \nand in the midst of a great concourse of persons--was heard, and a \nman stepped with a shout of laughter from the rank, and smote \nBarnaby on the shoulders with his heavy hand.\n\n'How now!' he cried.  'Barnaby Rudge!  Why, where have you been \nhiding for these hundred years?'\n\nBarnaby had been thinking within himself that the smell of the \ntrodden grass brought back his old days at cricket, when he was a \nyoung boy and played on Chigwell Green.  Confused by this sudden \nand boisterous address, he stared in a bewildered manner at the \nman, and could scarcely say 'What! Hugh!'\n\n'Hugh!' echoed the other; 'ay, Hugh--Maypole Hugh!  You remember my \ndog?  He's alive now, and will know you, I warrant.  What, you wear \nthe colour, do you?  Well done!  Ha ha ha!'\n\n'You know this young man, I see,' said Lord George.\n\n'Know him, my lord! as well as I know my own right hand.  My \ncaptain knows him.  We all know him.'\n\n'Will you take him into your division?'\n\n'It hasn't in it a better, nor a nimbler, nor a more active man, \nthan Barnaby Rudge,' said Hugh.  'Show me the man who says it has!  \nFall in, Barnaby.  He shall march, my lord, between me and Dennis; \nand he shall carry,' he added, taking a flag from the hand of a \ntired man who tendered it, 'the gayest silken streamer in this \nvaliant army.'\n\n'In the name of God, no!' shrieked the widow, darting forward.  \n'Barnaby--my lord--see--he'll come back--Barnaby--Barnaby!'\n\n'Women in the field!' cried Hugh, stepping between them, and \nholding her off.  'Holloa!  My captain there!'\n\n'What's the matter here?' cried Simon Tappertit, bustling up in a \ngreat heat.  'Do you call this order?'\n\n'Nothing like it, captain,' answered Hugh, still holding her back \nwith his outstretched hand.  'It's against all orders.  Ladies are \ncarrying off our gallant soldiers from their duty.  The word of \ncommand, captain!  They're filing off the ground.  Quick!'\n\n'Close!' cried Simon, with the whole power of his lungs.  'Form!  \nMarch!'\n\nShe was thrown to the ground; the whole field was in motion; \nBarnaby was whirled away into the heart of a dense mass of men, and \nshe saw him no more.\n\n\n\nChapter 49\n\n\nThe mob had been divided from its first assemblage into four \ndivisions; the London, the Westminster, the Southwark, and the \nScotch.  Each of these divisions being subdivided into various \nbodies, and these bodies being drawn up in various forms and \nfigures, the general arrangement was, except to the few chiefs and \nleaders, as unintelligible as the plan of a great battle to the \nmeanest soldier in the field.  It was not without its method, \nhowever; for, in a very short space of time after being put in \nmotion, the crowd had resolved itself into three great parties, and \nwere prepared, as had been arranged, to cross the river by \ndifferent bridges, and make for the House of Commons in separate \ndetachments.\n\nAt the head of that division which had Westminster Bridge for its \napproach to the scene of action, Lord George Gordon took his post; \nwith Gashford at his right hand, and sundry ruffians, of most \nunpromising appearance, forming a kind of staff about him.  The \nconduct of a second party, whose route lay by Blackfriars, was \nentrusted to a committee of management, including perhaps a dozen \nmen: while the third, which was to go by London Bridge, and through \nthe main streets, in order that their numbers and their serious \nintentions might be the better known and appreciated by the \ncitizens, were led by Simon Tappertit (assisted by a few \nsubalterns, selected from the Brotherhood of United Bulldogs), \nDennis the hangman, Hugh, and some others.\n\nThe word of command being given, each of these great bodies took \nthe road assigned to it, and departed on its way, in perfect order \nand profound silence.  That which went through the City greatly \nexceeded the others in number, and was of such prodigious extent \nthat when the rear began to move, the front was nearly four miles \nin advance, notwithstanding that the men marched three abreast and \nfollowed very close upon each other.\n\nAt the head of this party, in the place where Hugh, in the madness \nof his humour, had stationed him, and walking between that \ndangerous companion and the hangman, went Barnaby; as many a man \namong the thousands who looked on that day afterwards remembered \nwell.  Forgetful of all other things in the ecstasy of the moment, \nhis face flushed and his eyes sparkling with delight, heedless of \nthe weight of the great banner he carried, and mindful only of its \nflashing in the sun and rustling in the summer breeze, on he went, \nproud, happy, elated past all telling:--the only light-hearted, \nundesigning creature, in the whole assembly.\n\n'What do you think of this?' asked Hugh, as they passed through the \ncrowded streets, and looked up at the windows which were thronged \nwith spectators.  'They have all turned out to see our flags and \nstreamers?  Eh, Barnaby?  Why, Barnaby's the greatest man of all \nthe pack!  His flag's the largest of the lot, the brightest too.  \nThere's nothing in the show, like Barnaby.  All eyes are turned on \nhim.  Ha ha ha!'\n\n'Don't make that din, brother,' growled the hangman, glancing with \nno very approving eyes at Barnaby as he spoke: 'I hope he don't \nthink there's nothing to be done, but carrying that there piece of \nblue rag, like a boy at a breaking up.  You're ready for action I \nhope, eh?  You, I mean,' he added, nudging Barnaby roughly with \nhis elbow.  'What are you staring at?  Why don't you speak?'\n\nBarnaby had been gazing at his flag, and looked vacantly from his \nquestioner to Hugh.\n\n'He don't understand your way,' said the latter.  'Here, I'll \nexplain it to him.  Barnaby old boy, attend to me.'\n\n'I'll attend,' said Barnaby, looking anxiously round; 'but I wish \nI could see her somewhere.'\n\n'See who?' demanded Dennis in a gruff tone.  'You an't in love I \nhope, brother?  That an't the sort of thing for us, you know.  We \nmustn't have no love here.'\n\n'She would be proud indeed to see me now, eh Hugh?' said Barnaby.  \n'Wouldn't it make her glad to see me at the head of this large \nshow?  She'd cry for joy, I know she would.  Where CAN she be?  She \nnever sees me at my best, and what do I care to be gay and fine if \nSHE'S not by?'\n\n'Why, what palaver's this?' asked Mr Dennis with supreme disdain.  \n'We an't got no sentimental members among us, I hope.'\n\n'Don't be uneasy, brother,' cried Hugh, 'he's only talking of his \nmother.'\n\n'Of his what?' said Mr Dennis with a strong oath.\n\n'His mother.'\n\n'And have I combined myself with this here section, and turned out \non this here memorable day, to hear men talk about their mothers!' \ngrowled Mr Dennis with extreme disgust.  'The notion of a man's \nsweetheart's bad enough, but a man's mother!'--and here his disgust \nwas so extreme that he spat upon the ground, and could say no more.\n\n'Barnaby's right,' cried Hugh with a grin, 'and I say it.  Lookee, \nbold lad.  If she's not here to see, it's because I've provided for \nher, and sent half-a-dozen gentlemen, every one of 'em with a \nblue flag (but not half as fine as yours), to take her, in state, \nto a grand house all hung round with gold and silver banners, and \neverything else you please, where she'll wait till you come, and \nwant for nothing.'\n\n'Ay!' said Barnaby, his face beaming with delight: 'have you \nindeed?  That's a good hearing.  That's fine!  Kind Hugh!'\n\n'But nothing to what will come, bless you,' retorted Hugh, with a \nwink at Dennis, who regarded his new companion in arms with great \nastonishment.\n\n'No, indeed?' cried Barnaby.\n\n'Nothing at all,' said Hugh.  'Money, cocked hats and feathers, red \ncoats and gold lace; all the fine things there are, ever were, or \nwill be; will belong to us if we are true to that noble gentleman--\nthe best man in the world--carry our flags for a few days, and keep \n'em safe.  That's all we've got to do.'\n\n'Is that all?' cried Barnaby with glistening eyes, as he clutched \nhis pole the tighter; 'I warrant you I keep this one safe, then.  \nYou have put it in good hands.  You know me, Hugh.  Nobody shall \nwrest this flag away.'\n\n'Well said!' cried Hugh.  'Ha ha!  Nobly said!  That's the old \nstout Barnaby, that I have climbed and leaped with, many and many a \nday--I knew I was not mistaken in Barnaby.--Don't you see, man,' he \nadded in a whisper, as he slipped to the other side of Dennis, \n'that the lad's a natural, and can be got to do anything, if you \ntake him the right way?  Letting alone the fun he is, he's worth a \ndozen men, in earnest, as you'd find if you tried a fall with him.  \nLeave him to me.  You shall soon see whether he's of use or not.'\n\nMr Dennis received these explanatory remarks with many nods and \nwinks, and softened his behaviour towards Barnaby from that moment.  \nHugh, laying his finger on his nose, stepped back into his former \nplace, and they proceeded in silence.\n\nIt was between two and three o'clock in the afternoon when the \nthree great parties met at Westminster, and, uniting into one huge \nmass, raised a tremendous shout.  This was not only done in token \nof their presence, but as a signal to those on whom the task \ndevolved, that it was time to take possession of the lobbies of \nboth Houses, and of the various avenues of approach, and of the \ngallery stairs.  To the last-named place, Hugh and Dennis, still \nwith their pupil between them, rushed straightway; Barnaby having \ngiven his flag into the hands of one of their own party, who kept \nthem at the outer door.  Their followers pressing on behind, they \nwere borne as on a great wave to the very doors of the gallery, \nwhence it was impossible to retreat, even if they had been so \ninclined, by reason of the throng which choked up the passages.  It \nis a familiar expression in describing a great crowd, that a person \nmight have walked upon the people's heads.  In this case it was \nactually done; for a boy who had by some means got among the \nconcourse, and was in imminent danger of suffocation, climbed to \nthe shoulders of a man beside him and walked upon the people's hats \nand heads into the open street; traversing in his passage the whole \nlength of two staircases and a long gallery.  Nor was the swarm \nwithout less dense; for a basket which had been tossed into the \ncrowd, was jerked from head to head, and shoulder to shoulder, and \nwent spinning and whirling on above them, until it was lost to \nview, without ever once falling in among them or coming near the \nground.\n\nThrough this vast throng, sprinkled doubtless here and there with \nhonest zealots, but composed for the most part of the very scum and \nrefuse of London, whose growth was fostered by bad criminal laws, \nbad prison regulations, and the worst conceivable police, such of \nthe members of both Houses of Parliament as had not taken the \nprecaution to be already at their posts, were compelled to fight \nand force their way.  Their carriages were stopped and broken; the \nwheels wrenched off; the glasses shivered to atoms; the panels \nbeaten in; drivers, footmen, and masters, pulled from their seats \nand rolled in the mud.  Lords, commoners, and reverend bishops, \nwith little distinction of person or party, were kicked and pinched \nand hustled; passed from hand to hand through various stages of \nill-usage; and sent to their fellow-senators at last with their \nclothes hanging in ribands about them, their bagwigs torn off, \nthemselves speechless and breathless, and their persons covered \nwith the powder which had been cuffed and beaten out of their hair.  \nOne lord was so long in the hands of the populace, that the Peers \nas a body resolved to sally forth and rescue him, and were in the \nact of doing so, when he happily appeared among them covered with \ndirt and bruises, and hardly to be recognised by those who knew him \nbest.  The noise and uproar were on the increase every moment.  The \nair was filled with execrations, hoots, and howlings.  The mob \nraged and roared, like a mad monster as it was, unceasingly, and \neach new outrage served to swell its fury.\n\nWithin doors, matters were even yet more threatening.  Lord George--\npreceded by a man who carried the immense petition on a porter's \nknot through the lobby to the door of the House of Commons, where \nit was received by two officers of the house who rolled it up to \nthe table ready for presentation--had taken his seat at an early \nhour, before the Speaker went to prayers.  His followers pouring in \nat the same time, the lobby and all the avenues were immediately \nfilled, as we have seen.  Thus the members were not only attacked \nin their passage through the streets, but were set upon within the \nvery walls of Parliament; while the tumult, both within and \nwithout, was so great, that those who attempted to speak could \nscarcely hear their own voices: far less, consult upon the course \nit would be wise to take in such extremity, or animate each other \nto dignified and firm resistance.  So sure as any member, just \narrived, with dress disordered and dishevelled hair, came \nstruggling through the crowd in the lobby, it yelled and screamed \nin triumph; and when the door of the House, partially and \ncautiously opened by those within for his admission, gave them a \nmomentary glimpse of the interior, they grew more wild and savage, \nlike beasts at the sight of prey, and made a rush against the \nportal which strained its locks and bolts in their staples, and \nshook the very beams.\n\nThe strangers' gallery, which was immediately above the door of the \nHouse, had been ordered to be closed on the first rumour of \ndisturbance, and was empty; save that now and then Lord George took \nhis seat there, for the convenience of coming to the head of the \nstairs which led to it, and repeating to the people what had passed \nwithin.  It was on these stairs that Barnaby, Hugh, and Dennis were \nposted.  There were two flights, short, steep, and narrow, running \nparallel to each other, and leading to two little doors \ncommunicating with a low passage which opened on the gallery.  \nBetween them was a kind of well, or unglazed skylight, for the \nadmission of light and air into the lobby, which might be some \neighteen or twenty feet below.\n\nUpon one of these little staircases--not that at the head of which \nLord George appeared from time to time, but the other--Gashford \nstood with his elbow on the bannister, and his cheek resting on his \nhand, with his usual crafty aspect.  Whenever he varied this \nattitude in the slightest degree--so much as by the gentlest motion \nof his arm--the uproar was certain to increase, not merely there, \nbut in the lobby below; from which place no doubt, some man who \nacted as fugleman to the rest, was constantly looking up and \nwatching him.\n\n'Order!' cried Hugh, in a voice which made itself heard even above \nthe roar and tumult, as Lord George appeared at the top of the \nstaircase.  'News!  News from my lord!'\n\nThe noise continued, notwithstanding his appearance, until Gashford \nlooked round.  There was silence immediately--even among the people \nin the passages without, and on the other staircases, who could \nneither see nor hear, but to whom, notwithstanding, the signal was \nconveyed with marvellous rapidity.\n\n'Gentlemen,' said Lord George, who was very pale and agitated, we \nmust be firm.  They talk of delays, but we must have no delays.  \nThey talk of taking your petition into consideration next Tuesday, \nbut we must have it considered now.  Present appearances look bad \nfor our success, but we must succeed and will!'\n\n'We must succeed and will!' echoed the crowd.  And so among their \nshouts and cheers and other cries, he bowed to them and retired, \nand presently came back again.  There was another gesture from \nGashford, and a dead silence directly.\n\n'I am afraid,' he said, this time, 'that we have little reason, \ngentlemen, to hope for any redress from the proceedings of \nParliament.  But we must redress our own grievances, we must meet \nagain, we must put our trust in Providence, and it will bless our \nendeavours.'\n\nThis speech being a little more temperate than the last, was not so \nfavourably received.  When the noise and exasperation were at their \nheight, he came back once more, and told them that the alarm had \ngone forth for many miles round; that when the King heard of their \nassembling together in that great body, he had no doubt, His \nMajesty would send down private orders to have their wishes \ncomplied with; and--with the manner of his speech as childish, \nirresolute, and uncertain as his matter--was proceeding in this \nstrain, when two gentlemen suddenly appeared at the door where he \nstood, and pressing past him and coming a step or two lower down \nupon the stairs, confronted the people.\n\nThe boldness of this action quite took them by surprise.  They were \nnot the less disconcerted, when one of the gentlemen, turning to \nLord George, spoke thus--in a loud voice that they might hear him \nwell, but quite coolly and collectedly:\n\n'You may tell these people, if you please, my lord, that I am \nGeneral Conway of whom they have heard; and that I oppose this \npetition, and all their proceedings, and yours.  I am a soldier, \nyou may tell them, and I will protect the freedom of this place \nwith my sword.  You see, my lord, that the members of this House \nare all in arms to-day; you know that the entrance to it is a \nnarrow one; you cannot be ignorant that there are men within these \nwalls who are determined to defend that pass to the last, and \nbefore whom many lives must fall if your adherents persevere.  Have \na care what you do.'\n\n'And my Lord George,' said the other gentleman, addressing him in \nlike manner, 'I desire them to hear this, from me--Colonel Gordon--\nyour near relation.  If a man among this crowd, whose uproar \nstrikes us deaf, crosses the threshold of the House of Commons, I \nswear to run my sword that moment--not into his, but into your \nbody!'\n\nWith that, they stepped back again, keeping their faces towards the \ncrowd; took each an arm of the misguided nobleman; drew him into \nthe passage, and shut the door; which they directly locked and \nfastened on the inside.\n\nThis was so quickly done, and the demeanour of both gentlemen--who \nwere not young men either--was so gallant and resolute, that the \ncrowd faltered and stared at each other with irresolute and timid \nlooks.  Many tried to turn towards the door; some of the faintest-\nhearted cried they had best go back, and called to those behind to \ngive way; and the panic and confusion were increasing rapidly, when \nGashford whispered Hugh.\n\n'What now!' Hugh roared aloud, turning towards them.  'Why go back?  \nWhere can you do better than here, boys!  One good rush against \nthese doors and one below at the same time, will do the business.  \nRush on, then!  As to the door below, let those stand back who are \nafraid.  Let those who are not afraid, try who shall be the first \nto pass it.  Here goes!  Look out down there!'\n\nWithout the delay of an instant, he threw himself headlong over the \nbannisters into the lobby below.  He had hardly touched the ground \nwhen Barnaby was at his side.  The chaplain's assistant, and some \nmembers who were imploring the people to retire, immediately \nwithdrew; and then, with a great shout, both crowds threw \nthemselves against the doors pell-mell, and besieged the House in \nearnest.\n\nAt that moment, when a second onset must have brought them into \ncollision with those who stood on the defensive within, in which \ncase great loss of life and bloodshed would inevitably have \nensued,--the hindmost portion of the crowd gave way, and the rumour \nspread from mouth to mouth that a messenger had been despatched by \nwater for the military, who were forming in the street.  Fearful of \nsustaining a charge in the narrow passages in which they were so \nclosely wedged together, the throng poured out as impetuously as \nthey had flocked in.  As the whole stream turned at once, Barnaby \nand Hugh went with it: and so, fighting and struggling and \ntrampling on fallen men and being trampled on in turn themselves, \nthey and the whole mass floated by degrees into the open street, \nwhere a large detachment of the Guards, both horse and foot, came \nhurrying up; clearing the ground before them so rapidly that the \npeople seemed to melt away as they advanced.\n\nThe word of command to halt being given, the soldiers formed across \nthe street; the rioters, breathless and exhausted with their late \nexertions, formed likewise, though in a very irregular and \ndisorderly manner.  The commanding officer rode hastily into the \nopen space between the two bodies, accompanied by a magistrate and \nan officer of the House of Commons, for whose accommodation a \ncouple of troopers had hastily dismounted.  The Riot Act was read, \nbut not a man stirred.\n\nIn the first rank of the insurgents, Barnaby and Hugh stood side by \nside.  Somebody had thrust into Barnaby's hands when he came out \ninto the street, his precious flag; which, being now rolled up and \ntied round the pole, looked like a giant quarter-staff as he \ngrasped it firmly and stood upon his guard.  If ever man believed \nwith his whole heart and soul that he was engaged in a just cause, \nand that he was bound to stand by his leader to the last, poor \nBarnaby believed it of himself and Lord George Gordon.\n\nAfter an ineffectual attempt to make himself heard, the magistrate \ngave the word and the Horse Guards came riding in among the crowd.  \nBut, even then, he galloped here and there, exhorting the people to \ndisperse; and, although heavy stones were thrown at the men, and \nsome were desperately cut and bruised, they had no orders but to \nmake prisoners of such of the rioters as were the most active, and \nto drive the people back with the flat of their sabres.  As the \nhorses came in among them, the throng gave way at many points, and \nthe Guards, following up their advantage, were rapidly clearing the \nground, when two or three of the foremost, who were in a manner cut \noff from the rest by the people closing round them, made straight \ntowards Barnaby and Hugh, who had no doubt been pointed out as the \ntwo men who dropped into the lobby: laying about them now with some \neffect, and inflicting on the more turbulent of their opponents, a \nfew slight flesh wounds, under the influence of which a man \ndropped, here and there, into the arms of his fellows, amid much \ngroaning and confusion.\n\nAt the sight of gashed and bloody faces, seen for a moment in the \ncrowd, then hidden by the press around them, Barnaby turned pale \nand sick.  But he stood his ground, and grasping his pole more \nfirmly yet, kept his eye fixed upon the nearest soldier--nodding \nhis head meanwhile, as Hugh, with a scowling visage, whispered in \nhis ear.\n\nThe soldier came spurring on, making his horse rear as the people \npressed about him, cutting at the hands of those who would have \ngrasped his rein and forced his charger back, and waving to his \ncomrades to follow--and still Barnaby, without retreating an inch, \nwaited for his coming.  Some called to him to fly, and some were in \nthe very act of closing round him, to prevent his being taken, when \nthe pole swept into the air above the people's heads, and the man's \nsaddle was empty in an instant.\n\nThen, he and Hugh turned and fled, the crowd opening to let them \npass, and closing up again so quickly that there was no clue to the \ncourse they had taken.  Panting for breath, hot, dusty, and \nexhausted with fatigue, they reached the riverside in safety, and \ngetting into a boat with all despatch were soon out of any \nimmediate danger.\n\nAs they glided down the river, they plainly heard the people \ncheering; and supposing they might have forced the soldiers to \nretreat, lay upon their oars for a few minutes, uncertain whether \nto return or not.  But the crowd passing along Westminster Bridge, \nsoon assured them that the populace were dispersing; and Hugh \nrightly guessed from this, that they had cheered the magistrate for \noffering to dismiss the military on condition of their immediate \ndeparture to their several homes, and that he and Barnaby were \nbetter where they were.  He advised, therefore, that they should \nproceed to Blackfriars, and, going ashore at the bridge, make the \nbest of their way to The Boot; where there was not only good \nentertainment and safe lodging, but where they would certainly be \njoined by many of their late companions.  Barnaby assenting, they \ndecided on this course of action, and pulled for Blackfriars \naccordingly.\n\nThey landed at a critical time, and fortunately for themselves at \nthe right moment.  For, coming into Fleet Street, they found it in \nan unusual stir; and inquiring the cause, were told that a body of \nHorse Guards had just galloped past, and that they were escorting \nsome rioters whom they had made prisoners, to Newgate for safety.  \nNot at all ill-pleased to have so narrowly escaped the cavalcade, \nthey lost no more time in asking questions, but hurried to The Boot \nwith as much speed as Hugh considered it prudent to make, without \nappearing singular or attracting an inconvenient share of public \nnotice.\n\n\nChapter 50\n\n\nThey were among the first to reach the tavern, but they had not \nbeen there many minutes, when several groups of men who had formed \npart of the crowd, came straggling in.  Among them were Simon \nTappertit and Mr Dennis; both of whom, but especially the latter, \ngreeted Barnaby with the utmost warmth, and paid him many \ncompliments on the prowess he had shown.\n\n'Which,' said Dennis, with an oath, as he rested his bludgeon in a \ncorner with his hat upon it, and took his seat at the same table \nwith them, 'it does me good to think of.  There was a opportunity!  \nBut it led to nothing.  For my part, I don't know what would.  \nThere's no spirit among the people in these here times.  Bring \nsomething to eat and drink here.  I'm disgusted with humanity.'\n\n'On what account?' asked Mr Tappertit, who had been quenching his \nfiery face in a half-gallon can.  'Don't you consider this a good \nbeginning, mister?'\n\n'Give me security that it an't a ending,' rejoined the hangman.  \n'When that soldier went down, we might have made London ours; but \nno;--we stand, and gape, and look on--the justice (I wish he had \nhad a bullet in each eye, as he would have had, if we'd gone to \nwork my way) says, \"My lads, if you'll give me your word to \ndisperse, I'll order off the military,\" our people sets up a \nhurrah, throws up the game with the winning cards in their hands, \nand skulks away like a pack of tame curs as they are.  Ah,' said \nthe hangman, in a tone of deep disgust, 'it makes me blush for my \nfeller creeturs.  I wish I had been born a ox, I do!'\n\n'You'd have been quite as agreeable a character if you had been, I \nthink,' returned Simon Tappertit, going out in a lofty manner.\n\n'Don't be too sure of that,' rejoined the hangman, calling after \nhim; 'if I was a horned animal at the present moment, with the \nsmallest grain of sense, I'd toss every man in this company, \nexcepting them two,' meaning Hugh and Barnaby, 'for his manner of \nconducting himself this day.'\n\nWith which mournful review of their proceedings, Mr Dennis sought \nconsolation in cold boiled beef and beer; but without at all \nrelaxing the grim and dissatisfied expression of his face, the \ngloom of which was rather deepened than dissipated by their \ngrateful influence.\n\nThe company who were thus libelled might have retaliated by strong \nwords, if not by blows, but they were dispirited and worn out.  The \ngreater part of them had fasted since morning; all had suffered \nextremely from the excessive heat; and between the day's shouting, \nexertion, and excitement, many had quite lost their voices, and so \nmuch of their strength that they could hardly stand.  Then they \nwere uncertain what to do next, fearful of the consequences of what \nthey had done already, and sensible that after all they had carried \nno point, but had indeed left matters worse than they had found \nthem.  Of those who had come to The Boot, many dropped off within \nan hour; such of them as were really honest and sincere, never, \nafter the morning's experience, to return, or to hold any \ncommunication with their late companions.  Others remained but to \nrefresh themselves, and then went home desponding; others who had \ntheretofore been regular in their attendance, avoided the place \naltogether.  The half-dozen prisoners whom the Guards had taken, \nwere magnified by report into half-a-hundred at least; and their \nfriends, being faint and sober, so slackened in their energy, and \nso drooped beneath these dispiriting influences, that by eight \no'clock in the evening, Dennis, Hugh, and Barnaby, were left alone.  \nEven they were fast asleep upon the benches, when Gashford's \nentrance roused them.\n\n'Oh! you ARE here then?' said the Secretary.  'Dear me!'\n\n'Why, where should we be, Muster Gashford!' Dennis rejoined as he \nrose into a sitting posture.\n\n'Oh nowhere, nowhere,' he returned with excessive mildness.  'The \nstreets are filled with blue cockades.  I rather thought you might \nhave been among them.  I am glad you are not.'\n\n'You have orders for us, master, then?' said Hugh.\n\n'Oh dear, no.  Not I.  No orders, my good fellow.  What orders \nshould I have?  You are not in my service.'\n\n'Muster Gashford,' remonstrated Dennis, 'we belong to the cause, \ndon't we?'\n\n'The cause!' repeated the secretary, looking at him in a sort of \nabstraction.  'There is no cause.  The cause is lost.'\n\n'Lost!'\n\n'Oh yes.  You have heard, I suppose?  The petition is rejected by a \nhundred and ninety-two, to six.  It's quite final.  We might have \nspared ourselves some trouble.  That, and my lord's vexation, are \nthe only circumstances I regret.  I am quite satisfied in all other \nrespects.'\n\nAs he said this, he took a penknife from his pocket, and putting \nhis hat upon his knee, began to busy himself in ripping off the \nblue cockade which he had worn all day; at the same time humming a \npsalm tune which had been very popular in the morning, and dwelling \non it with a gentle regret.\n\nHis two adherents looked at each other, and at him, as if they \nwere at a loss how to pursue the subject.  At length Hugh, after \nsome elbowing and winking between himself and Mr Dennis, ventured \nto stay his hand, and to ask him why he meddled with that riband in \nhis hat.\n\n'Because,' said the secretary, looking up with something between a \nsnarl and a smile; 'because to sit still and wear it, or to fall \nasleep and wear it, is a mockery.  That's all, friend.'\n\n'What would you have us do, master!' cried Hugh.\n\n'Nothing,' returned Gashford, shrugging his shoulders, 'nothing.  \nWhen my lord was reproached and threatened for standing by you, I, \nas a prudent man, would have had you do nothing.  When the soldiers \nwere trampling you under their horses' feet, I would have had you \ndo nothing.  When one of them was struck down by a daring hand, and \nI saw confusion and dismay in all their faces, I would have had you \ndo nothing--just what you did, in short.  This is the young man who \nhad so little prudence and so much boldness.  Ah! I am sorry for him.'\n\n'Sorry, master!' cried Hugh.\n\n'Sorry, Muster Gashford!' echoed Dennis.\n\n'In case there should be a proclamation out to-morrow, offering \nfive hundred pounds, or some such trifle, for his apprehension; and \nin case it should include another man who dropped into the lobby \nfrom the stairs above,' said Gashford, coldly; 'still, do nothing.'\n\n'Fire and fury, master!' cried Hugh, starting up.  'What have we \ndone, that you should talk to us like this!'\n\n'Nothing,' returned Gashford with a sneer.  'If you are cast into \nprison; if the young man--' here he looked hard at Barnaby's \nattentive face--'is dragged from us and from his friends; perhaps \nfrom people whom he loves, and whom his death would kill; is thrown \ninto jail, brought out and hanged before their eyes; still, do \nnothing.  You'll find it your best policy, I have no doubt.'\n\n'Come on!' cried Hugh, striding towards the door.  'Dennis--\nBarnaby--come on!'\n\n'Where?  To do what?' said Gashford, slipping past him, and \nstanding with his back against it.\n\n'Anywhere!  Anything!' cried Hugh.  'Stand aside, master, or the \nwindow will serve our turn as well.  Let us out!'\n\n'Ha ha ha!  You are of such--of such an impetuous nature,' said \nGashford, changing his manner for one of the utmost good fellowship \nand the pleasantest raillery; 'you are such an excitable creature--\nbut you'll drink with me before you go?'\n\n'Oh, yes--certainly,' growled Dennis, drawing his sleeve across his \nthirsty lips.  'No malice, brother.  Drink with Muster Gashford!'\n\nHugh wiped his heated brow, and relaxed into a smile.  The artful \nsecretary laughed outright.\n\n'Some liquor here!  Be quick, or he'll not stop, even for that.  He \nis a man of such desperate ardour!' said the smooth secretary, whom \nMr Dennis corroborated with sundry nods and muttered oaths--'Once \nroused, he is a fellow of such fierce determination!'\n\nHugh poised his sturdy arm aloft, and clapping Barnaby on the back, \nbade him fear nothing.  They shook hands together--poor Barnaby \nevidently possessed with the idea that he was among the most \nvirtuous and disinterested heroes in the world--and Gashford \nlaughed again.\n\n'I hear,' he said smoothly, as he stood among them with a great \nmeasure of liquor in his hand, and filled their glasses as quickly \nand as often as they chose, 'I hear--but I cannot say whether it be \ntrue or false--that the men who are loitering in the streets to-\nnight are half disposed to pull down a Romish chapel or two, and \nthat they only want leaders.  I even heard mention of those in Duke \nStreet, Lincoln's Inn Fields, and in Warwick Street, Golden \nSquare; but common report, you know--You are not going?'\n\n--'To do nothing, rnaster, eh?' cried Hugh.  'No jails and halter \nfor Barnaby and me.  They must be frightened out of that.  Leaders \nare wanted, are they?  Now boys!'\n\n'A most impetuous fellow!' cried the secretary.  'Ha ha!  A \ncourageous, boisterous, most vehement fellow!  A man who--'\n\nThere was no need to finish the sentence, for they had rushed out \nof the house, and were far beyond hearing.  He stopped in the \nmiddle of a laugh, listened, drew on his gloves, and, clasping his \nhands behind him, paced the deserted room for a long time, then \nbent his steps towards the busy town, and walked into the streets.\n\nThey were filled with people, for the rumour of that day's \nproceedings had made a great noise.  Those persons who did not care \nto leave home, were at their doors or windows, and one topic of \ndiscourse prevailed on every side.  Some reported that the riots \nwere effectually put down; others that they had broken out again: \nsome said that Lord George Gordon had been sent under a strong \nguard to the Tower; others that an attempt had been made upon the \nKing's life, that the soldiers had been again called out, and that \nthe noise of musketry in a distant part of the town had been \nplainly heard within an hour.  As it grew darker, these stories \nbecame more direful and mysterious; and often, when some \nfrightened passenger ran past with tidings that the rioters were \nnot far off, and were coming up, the doors were shut and barred, \nlower windows made secure, and as much consternation engendered, as \nif the city were invaded by a foreign army.\n\nGashford walked stealthily about, listening to all he heard, and \ndiffusing or confirming, whenever he had an opportunity, such false \nintelligence as suited his own purpose; and, busily occupied in \nthis way, turned into Holborn for the twentieth time, when a great \nmany women and children came flying along the street--often panting \nand looking back--and the confused murmur of numerous voices struck \nupon his ear.  Assured by these tokens, and by the red light which \nbegan to flash upon the houses on either side, that some of his \nfriends were indeed approaching, he begged a moment's shelter at a \ndoor which opened as he passed, and running with some other \npersons to an upper window, looked out upon the crowd.\n\nThey had torches among them, and the chief faces were distinctly \nvisible.  That they had been engaged in the destruction of some \nbuilding was sufficiently apparent, and that it was a Catholic \nplace of worship was evident from the spoils they bore as trophies, \nwhich were easily recognisable for the vestments of priests, and \nrich fragments of altar furniture.  Covered with soot, and dirt, \nand dust, and lime; their garments torn to rags; their hair hanging \nwildly about them; their hands and faces jagged and bleeding with \nthe wounds of rusty nails; Barnaby, Hugh, and Dennis hurried on \nbefore them all, like hideous madmen.  After them, the dense throng \ncame fighting on: some singing; some shouting in triumph; some \nquarrelling among themselves; some menacing the spectators as they \npassed; some with great wooden fragments, on which they spent their \nrage as if they had been alive, rending them limb from limb, and \nhurling the scattered morsels high into the air; some in a drunken \nstate, unconscious of the hurts they had received from falling \nbricks, and stones, and beams; one borne upon a shutter, in the \nvery midst, covered with a dingy cloth, a senseless, ghastly heap.  \nThus--a vision of coarse faces, with here and there a blot of \nflaring, smoky light; a dream of demon heads and savage eyes, and \nsticks and iron bars uplifted in the air, and whirled about; a \nbewildering horror, in which so much was seen, and yet so little, \nwhich seemed so long, and yet so short, in which there were so many \nphantoms, not to be forgotten all through life, and yet so many \nthings that could not be observed in one distracting glimpse--it \nflitted onward, and was gone.\n\nAs it passed away upon its work of wrath and ruin, a piercing \nscream was heard.  A knot of persons ran towards the spot; \nGashford, who just then emerged into the street, among them.  He \nwas on the outskirts of the little concourse, and could not see or \nhear what passed within; but one who had a better place, informed \nhim that a widow woman had descried her son among the rioters.\n\n'Is that all?' said the secretary, turning his face homewards.  \n'Well! I think this looks a little more like business!'\n\n\n\nChapter 51\n\n\nPromising as these outrages were to Gashford's view, and much like \nbusiness as they looked, they extended that night no farther.  The \nsoldiers were again called out, again they took half-a-dozen \nprisoners, and again the crowd dispersed after a short and \nbloodless scuffle.  Hot and drunken though they were, they had not \nyet broken all bounds and set all law and government at defiance.  \nSomething of their habitual deference to the authority erected by \nsociety for its own preservation yet remained among them, and had \nits majesty been vindicated in time, the secretary would have had \nto digest a bitter disappointment.\n\nBy midnight, the streets were clear and quiet, and, save that there \nstood in two parts of the town a heap of nodding walls and pile of \nrubbish, where there had been at sunset a rich and handsome \nbuilding, everything wore its usual aspect.  Even the Catholic \ngentry and tradesmen, of whom there were many resident in different \nparts of the City and its suburbs, had no fear for their lives or \nproperty, and but little indignation for the wrong they had already \nsustained in the plunder and destruction of their temples of \nworship.  An honest confidence in the government under whose \nprotection they had lived for many years, and a well-founded \nreliance on the good feeling and right thinking of the great mass \nof the community, with whom, notwithstanding their religious \ndifferences, they were every day in habits of confidential, \naffectionate, and friendly intercourse, reassured them, even under \nthe excesses that had been committed; and convinced them that they \nwho were Protestants in anything but the name, were no more to be \nconsidered as abettors of these disgraceful occurrences, than they \nthemselves were chargeable with the uses of the block, the rack, \nthe gibbet, and the stake in cruel Mary's reign.\n\nThe clock was on the stroke of one, when Gabriel Varden, with his \nlady and Miss Miggs, sat waiting in the little parlour.  This fact; \nthe toppling wicks of the dull, wasted candles; the silence that \nprevailed; and, above all, the nightcaps of both maid and matron, \nwere sufficient evidence that they had been prepared for bed some \ntime ago, and had some reason for sitting up so far beyond their \nusual hour.\n\nIf any other corroborative testimony had been required, it would \nhave been abundantly furnished in the actions of Miss Miggs, who, \nhaving arrived at that restless state and sensitive condition of \nthe nervous system which are the result of long watching, did, by a \nconstant rubbing and tweaking of her nose, a perpetual change of \nposition (arising from the sudden growth of imaginary knots and \nknobs in her chair), a frequent friction of her eyebrows, the \nincessant recurrence of a small cough, a small groan, a gasp, a \nsigh, a sniff, a spasmodic start, and by other demonstrations of \nthat nature, so file down and rasp, as it were, the patience of the \nlocksmith, that after looking at her in silence for some time, he \nat last broke out into this apostrophe:--\n\n'Miggs, my good girl, go to bed--do go to bed.  You're really worse \nthan the dripping of a hundred water-butts outside the window, or \nthe scratching of as many mice behind the wainscot.  I can't bear \nit.  Do go to bed, Miggs.  To oblige me--do.'\n\n'You haven't got nothing to untie, sir,' returned Miss Miggs, 'and \ntherefore your requests does not surprise me.  But missis has--and \nwhile you sit up, mim'--she added, turning to the locksmith's wife, \n'I couldn't, no, not if twenty times the quantity of cold water was \naperiently running down my back at this moment, go to bed with a \nquiet spirit.'\n\nHaving spoken these words, Miss Miggs made divers efforts to rub \nher shoulders in an impossible place, and shivered from head to \nfoot; thereby giving the beholders to understand that the imaginary \ncascade was still in full flow, but that a sense of duty upheld her \nunder that and all other sufferings, and nerved her to endurance.\n\nMrs Varden being too sleepy to speak, and Miss Miggs having, as the \nphrase is, said her say, the locksmith had nothing for it but to \nsigh and be as quiet as he could.\n\nBut to be quiet with such a basilisk before him was impossible.  \nIf he looked another way, it was worse to feel that she was rubbing \nher cheek, or twitching her ear, or winking her eye, or making all \nkinds of extraordinary shapes with her nose, than to see her do it.  \nIf she was for a moment free from any of these complaints, it was \nonly because of her foot being asleep, or of her arm having got the \nfidgets, or of her leg being doubled up with the cramp, or of some \nother horrible disorder which racked her whole frame.  If she did \nenjoy a moment's ease, then with her eyes shut and her mouth wide \nopen, she would be seen to sit very stiff and upright in her chair; \nthen to nod a little way forward, and stop with a jerk; then to nod \na little farther forward, and stop with another jerk; then to \nrecover herself; then to come forward again--lower--lower--lower--\nby very slow degrees, until, just as it seemed impossible that she \ncould preserve her balance for another instant, and the locksmith \nwas about to call out in an agony, to save her from dashing down \nupon her forehead and fracturing her skull, then all of a sudden \nand without the smallest notice, she would come upright and rigid \nagain with her eyes open, and in her countenance an expression of \ndefiance, sleepy but yet most obstinate, which plainly said, 'I've \nnever once closed 'em since I looked at you last, and I'll take my \noath of it!'\n\nAt length, after the clock had struck two, there was a sound at the \nstreet door, as if somebody had fallen against the knocker by \naccident.  Miss Miggs immediately jumping up and clapping her \nhands, cried with a drowsy mingling of the sacred and profane, \n'Ally Looyer, mim! there's Simmuns's knock!'\n\n'Who's there?' said Gabriel.\n\n'Me!' cried the well-known voice of Mr Tappertit.  Gabriel opened \nthe door, and gave him admission.\n\nHe did not cut a very insinuating figure, for a man of his stature \nsuffers in a crowd; and having been active in yesterday morning's \nwork, his dress was literally crushed from head to foot: his hat \nbeing beaten out of all shape, and his shoes trodden down at heel \nlike slippers.  His coat fluttered in strips about him, the buckles \nwere torn away both from his knees and feet, half his neckerchief \nwas gone, and the bosom of his shirt was rent to tatters.  Yet \nnotwithstanding all these personal disadvantages; despite his being \nvery weak from heat and fatigue; and so begrimed with mud and dust \nthat he might have been in a case, for anything of the real texture \n(either of his skin or apparel) that the eye could discern; he \nstalked haughtily into the parlour, and throwing himself into a \nchair, and endeavouring to thrust his hands into the pockets of his \nsmall-clothes, which were turned inside out and displayed upon his \nlegs, like tassels, surveyed the household with a gloomy dignity.\n\n'Simon,' said the locksmith gravely, 'how comes it that you return \nhome at this time of night, and in this condition?  Give me an \nassurance that you have not been among the rioters, and I am \nsatisfied.'\n\n'Sir,' replied Mr Tappertit, with a contemptuous look, 'I wonder at \nYOUR assurance in making such demands.'\n\n'You have been drinking,' said the locksmith.\n\n'As a general principle, and in the most offensive sense of the \nwords, sir,' returned his journeyman with great self-possession, \n'I consider you a liar.  In that last observation you have \nunintentionally--unintentionally, sir,--struck upon the truth.'\n\n'Martha,' said the locksmith, turning to his wife, and shaking his \nhead sorrowfully, while a smile at the absurd figure beside him \nstill played upon his open face, 'I trust it may turn out that this \npoor lad is not the victim of the knaves and fools we have so often \nhad words about, and who have done so much harm to-day.  If he has \nbeen at Warwick Street or Duke Street to-night--'\n\n'He has been at neither, sir,' cried Mr Tappertit in a loud voice, \nwhich he suddenly dropped into a whisper as he repeated, with eyes \nfixed upon the locksmith, 'he has been at neither.'\n\n'I am glad of it, with all my heart,' said the locksmith in a \nserious tone; 'for if he had been, and it could be proved against \nhim, Martha, your Great Association would have been to him the cart \nthat draws men to the gallows and leaves them hanging in the air.  \nIt would, as sure as we're alive!'\n\nMrs Varden was too much scared by Simon's altered manner and \nappearance, and by the accounts of the rioters which had reached \nher ears that night, to offer any retort, or to have recourse to \nher usual matrimonial policy.  Miss Miggs wrung her hands, and \nwept.\n\n'He was not at Duke Street, or at Warwick Street, G. Varden,' said \nSimon, sternly; 'but he WAS at Westminster.  Perhaps, sir, he \nkicked a county member, perhaps, sir, he tapped a lord--you may \nstare, sir, I repeat it--blood flowed from noses, and perhaps he \ntapped a lord.  Who knows?  This,' he added, putting his hand into \nhis waistcoat-pocket, and taking out a large tooth, at the sight of \nwhich both Miggs and Mrs Varden screamed, 'this was a bishop's.  \nBeware, G. Varden!'\n\n'Now, I would rather,' said the locksmith hastily, 'have paid five \nhundred pounds, than had this come to pass.  You idiot, do you know \nwhat peril you stand in?'\n\n'I know it, sir,' replied his journeyman, 'and it is my glory.  I \nwas there, everybody saw me there.  I was conspicuous, and \nprominent.  I will abide the consequences.'\n\nThe locksmith, really disturbed and agitated, paced to and fro in \nsilence--glancing at his former 'prentice every now and then--and \nat length stopping before him, said:\n\n'Get to bed, and sleep for a couple of hours that you may wake \npenitent, and with some of your senses about you.  Be sorry for \nwhat you have done, and we will try to save you.  If I call him by \nfive o'clock,' said Varden, turning hurriedly to his wife, and he \nwashes himself clean and changes his dress, he may get to the Tower \nStairs, and away by the Gravesend tide-boat, before any search is \nmade for him.  From there he can easily get on to Canterbury, \nwhere your cousin will give him work till this storm has blown \nover.  I am not sure that I do right in screening him from the \npunishment he deserves, but he has lived in this house, man and \nboy, for a dozen years, and I should be sorry if for this one day's \nwork he made a miserable end.  Lock the front-door, Miggs, and show \nno light towards the street when you go upstairs.  Quick, Simon!  \nGet to bed!'\n\n'And do you suppose, sir,' retorted Mr Tappertit, with a thickness \nand slowness of speech which contrasted forcibly with the rapidity \nand earnestness of his kind-hearted master--'and do you suppose, \nsir, that I am base and mean enough to accept your servile \nproposition?--Miscreant!'\n\n'Whatever you please, Sim, but get to bed.  Every minute is of \nconsequence.  The light here, Miggs!'\n\n'Yes yes, oh do!  Go to bed directly,' cried the two women \ntogether.\n\nMr Tappertit stood upon his feet, and pushing his chair away to \nshow that he needed no assistance, answered, swaying himself to and \nfro, and managing his head as if it had no connection whatever with \nhis body:\n\n'You spoke of Miggs, sir--Miggs may be smothered!'\n\n'Oh Simmun!' ejaculated that young lady in a faint voice.  'Oh mim!  \nOh sir!  Oh goodness gracious, what a turn he has give me!'\n\n'This family may ALL be smothered, sir,' returned Mr Tappertit, \nafter glancing at her with a smile of ineffable disdain, 'excepting \nMrs V.  I have come here, sir, for her sake, this night.  Mrs \nVarden, take this piece of paper.  It's a protection, ma'am.  You \nmay need it.'\n\nWith these words he held out at arm's length, a dirty, crumpled \nscrap of writing.  The locksmith took it from him, opened it, and \nread as follows:\n\n\n'All good friends to our cause, I hope will be particular, and do \nno injury to the property of any true Protestant.  I am well \nassured that the proprietor of this house is a staunch and worthy \nfriend to the cause.\n\nGEORGE GORDON.'\n\n\n'What's this!' said the locksmith, with an altered face.\n\n'Something that'll do you good service, young feller,' replied his \njourneyman, 'as you'll find.  Keep that safe, and where you can \nlay your hand upon it in an instant.  And chalk \"No Popery\" on your \ndoor to-morrow night, and for a week to come--that's all.'\n\n'This is a genuine document,' said the locksmith, 'I know, for I \nhave seen the hand before.  What threat does it imply?  What devil \nis abroad?'\n\n'A fiery devil,' retorted Sim; 'a flaming, furious devil.  Don't \nyou put yourself in its way, or you're done for, my buck.  Be \nwarned in time, G. Varden.  Farewell!'\n\nBut here the two women threw themselves in his way--especially Miss \nMiggs, who fell upon him with such fervour that she pinned him \nagainst the wall--and conjured him in moving words not to go forth \ntill he was sober; to listen to reason; to think of it; to take \nsome rest, and then determine.\n\n'I tell you,' said Mr Tappertit, 'that my mind is made up.  My \nbleeding country calls me and I go!  Miggs, if you don't get out of \nthe way, I'll pinch you.'\n\nMiss Miggs, still clinging to the rebel, screamed once \nvociferously--but whether in the distraction of her mind, or \nbecause of his having executed his threat, is uncertain.\n\n'Release me,' said Simon, struggling to free himself from her \nchaste, but spider-like embrace.  'Let me go!  I have made \narrangements for you in an altered state of society, and mean to \nprovide for you comfortably in life--there!  Will that satisfy \nyou?'\n\n'Oh Simmun!' cried Miss Miggs.  'Oh my blessed Simmun!  Oh mim! \nwhat are my feelings at this conflicting moment!'\n\nOf a rather turbulent description, it would seem; for her nightcap \nhad been knocked off in the scuffle, and she was on her knees upon \nthe floor, making a strange revelation of blue and yellow curl-\npapers, straggling locks of hair, tags of staylaces, and strings of \nit's impossible to say what; panting for breath, clasping her \nhands, turning her eyes upwards, shedding abundance of tears, and \nexhibiting various other symptoms of the acutest mental suffering.\n\n'I leave,' said Simon, turning to his master, with an utter \ndisregard of Miggs's maidenly affliction, 'a box of things \nupstairs.  Do what you like with 'em.  I don't want 'em.  I'm never \ncoming back here, any more.  Provide yourself, sir, with a \njourneyman; I'm my country's journeyman; henceforward that's MY \nline of business.'\n\n'Be what you like in two hours' time, but now go up to bed,' \nreturned the locksmith, planting himself in the doorway.  'Do you \nhear me?  Go to bed!'\n\n'I hear you, and defy you, Varden,' rejoined Simon Tappertit.  \n'This night, sir, I have been in the country, planning an \nexpedition which shall fill your bell-hanging soul with wonder and \ndismay.  The plot demands my utmost energy.  Let me pass!'\n\n'I'll knock you down if you come near the door,' replied the \nlocksmith.  'You had better go to bed!'\n\nSimon made no answer, but gathering himself up as straight as he \ncould, plunged head foremost at his old master, and the two went \ndriving out into the workshop together, plying their hands and feet \nso briskly that they looked like half-a-dozen, while Miggs and Mrs \nVarden screamed for twelve.\n\nIt would have been easy for Varden to knock his old 'prentice down, \nand bind him hand and foot; but as he was loth to hurt him in his \nthen defenceless state, he contented himself with parrying his \nblows when he could, taking them in perfect good part when he could \nnot, and keeping between him and the door, until a favourable \nopportunity should present itself for forcing him to retreat up-\nstairs, and shutting him up in his own room.  But, in the goodness \nof his heart, he calculated too much upon his adversary's weakness, \nand forgot that drunken men who have lost the power of walking \nsteadily, can often run.  Watching his time, Simon Tappertit made a \ncunning show of falling back, staggered unexpectedly forward, \nbrushed past him, opened the door (he knew the trick of that lock \nwell), and darted down the street like a mad dog.  The locksmith \npaused for a moment in the excess of his astonishment, and then \ngave chase.\n\nIt was an excellent season for a run, for at that silent hour the \nstreets were deserted, the air was cool, and the flying figure \nbefore him distinctly visible at a great distance, as it sped away, \nwith a long gaunt shadow following at its heels.  But the short-\nwinded locksmith had no chance against a man of Sim's youth and \nspare figure, though the day had been when he could have run him \ndown in no time.  The space between them rapidly increased, and as \nthe rays of the rising sun streamed upon Simon in the act of \nturning a distant corner, Gabriel Varden was fain to give up, and \nsit down on a doorstep to fetch his breath.  Simon meanwhile, \nwithout once stopping, fled at the same degree of swiftness to The \nBoot, where, as he well knew, some of his company were lying, and \nat which respectable hostelry--for he had already acquired the \ndistinction of being in great peril of the law--a friendly watch \nhad been expecting him all night, and was even now on the look-out \nfor his coming.\n\n'Go thy ways, Sim, go thy ways,' said the locksmith, as soon as he \ncould speak.  'I have done my best for thee, poor lad, and would \nhave saved thee, but the rope is round thy neck, I fear.'\n\nSo saying, and shaking his head in a very sorrowful and \ndisconsolate manner, he turned back, and soon re-entered his own \nhouse, where Mrs Varden and the faithful Miggs had been anxiously \nexpecting his return.\n\nNow Mrs Varden (and by consequence Miss Miggs likewise) was \nimpressed with a secret misgiving that she had done wrong; that she \nhad, to the utmost of her small means, aided and abetted the growth \nof disturbances, the end of which it was impossible to foresee; \nthat she had led remotely to the scene which had just passed; and \nthat the locksmith's time for triumph and reproach had now arrived \nindeed.  And so strongly did Mrs Varden feel this, and so \ncrestfallen was she in consequence, that while her husband was \npursuing their lost journeyman, she secreted under her chair the \nlittle red-brick dwelling-house with the yellow roof, lest it \nshould furnish new occasion for reference to the painful theme; and \nnow hid the same still more, with the skirts of her dress.\n\nBut it happened that the locksmith had been thinking of this very \narticle on his way home, and that, coming into the room and not \nseeing it, he at once demanded where it was.\n\nMrs Varden had no resource but to produce it, which she did with \nmany tears, and broken protestations that if she could have known--\n\n'Yes, yes,' said Varden, 'of course--I know that.  I don't mean to \nreproach you, my dear.  But recollect from this time that all good \nthings perverted to evil purposes, are worse than those which are \nnaturally bad.  A thoroughly wicked woman, is wicked indeed.  When \nreligion goes wrong, she is very wrong, for the same reason.  Let \nus say no more about it, my dear.'\n\nSo he dropped the red-brick dwelling-house on the floor, and \nsetting his heel upon it, crushed it into pieces.  The halfpence, \nand sixpences, and other voluntary contributions, rolled about in \nall directions, but nobody offered to touch them, or to take them \nup.\n\n'That,' said the locksmith, 'is easily disposed of, and I would to \nHeaven that everything growing out of the same society could be \nsettled as easily.'\n\n'It happens very fortunately, Varden,' said his wife, with her \nhandkerchief to her eyes, 'that in case any more disturbances \nshould happen--which I hope not; I sincerely hope not--'\n\n'I hope so too, my dear.'\n\n'--That in case any should occur, we have the piece of paper which \nthat poor misguided young man brought.'\n\n'Ay, to be sure,' said the locksmith, turning quickly round.  \n'Where is that piece of paper?'\n\nMrs Varden stood aghast as he took it from her outstretched band, \ntore it into fragments, and threw them under the grate.\n\n'Not use it?' she said.\n\n'Use it!' cried the locksmith.  No!  Let them come and pull the \nroof about our ears; let them burn us out of house and home; I'd \nneither have the protection of their leader, nor chalk their howl \nupon my door, though, for not doing it, they shot me on my own \nthreshold.  Use it!  Let them come and do their worst.  The first \nman who crosses my doorstep on such an errand as theirs, had better \nbe a hundred miles away.  Let him look to it.  The others may have \ntheir will.  I wouldn't beg or buy them off, if, instead of every \npound of iron in the place, there was a hundred weight of gold.  \nGet you to bed, Martha.  I shall take down the shutters and go to \nwork.'\n\n'So early!' said his wife.\n\n'Ay,' replied the locksmith cheerily, 'so early.  Come when they \nmay, they shall not find us skulking and hiding, as if we feared to \ntake our portion of the light of day, and left it all to them.  So \npleasant dreams to you, my dear, and cheerful sleep!'\n\nWith that he gave his wife a hearty kiss, and bade her delay no \nlonger, or it would be time to rise before she lay down to rest.  \nMrs Varden quite amiably and meekly walked upstairs, followed by \nMiggs, who, although a good deal subdued, could not refrain from \nsundry stimulative coughs and sniffs by the way, or from holding up \nher hands in astonishment at the daring conduct of master.\n\n\n\nChapter 52\n\n\nA mob is usually a creature of very mysterious existence, \nparticularly in a large city.  Where it comes from or whither it \ngoes, few men can tell.  Assembling and dispersing with equal \nsuddenness, it is as difficult to follow to its various sources as \nthe sea itself; nor does the parallel stop here, for the ocean is \nnot more fickle and uncertain, more terrible when roused, more \nunreasonable, or more cruel.\n\nThe people who were boisterous at Westminster upon the Friday \nmorning, and were eagerly bent upon the work of devastation in Duke \nStreet and Warwick Street at night, were, in the mass, the same.  \nAllowing for the chance accessions of which any crowd is morally \nsure in a town where there must always be a large number of idle \nand profligate persons, one and the same mob was at both places.  \nYet they spread themselves in various directions when they \ndispersed in the afternoon, made no appointment for reassembling, \nhad no definite purpose or design, and indeed, for anything they \nknew, were scattered beyond the hope of future union.\n\nAt The Boot, which, as has been shown, was in a manner the head-\nquarters of the rioters, there were not, upon this Friday night, a \ndozen people.  Some slept in the stable and outhouses, some in the \ncommon room, some two or three in beds.  The rest were in their \nusual homes or haunts.  Perhaps not a score in all lay in the \nadjacent fields and lanes, and under haystacks, or near the warmth \nof brick-kilns, who had not their accustomed place of rest beneath \nthe open sky.  As to the public ways within the town, they had \ntheir ordinary nightly occupants, and no others; the usual amount \nof vice and wretchedness, but no more.\n\nThe experience of one evening, however, had taught the reckless \nleaders of disturbance, that they had but to show themselves in the \nstreets, to be immediately surrounded by materials which they could \nonly have kept together when their aid was not required, at great \nrisk, expense, and trouble.  Once possessed of this secret, they \nwere as confident as if twenty thousand men, devoted to their will, \nhad been encamped about them, and assumed a confidence which could \nnot have been surpassed, though that had really been the case.  All \nday, Saturday, they remained quiet.  On Sunday, they rather studied \nhow to keep their men within call, and in full hope, than to follow \nout, by any fierce measure, their first day's proceedings.\n\n'I hope,' said Dennis, as, with a loud yawn, he raised his body \nfrom a heap of straw on which he had been sleeping, and supporting \nhis head upon his hand, appealed to Hugh on Sunday morning, 'that \nMuster Gashford allows some rest?  Perhaps he'd have us at work \nagain already, eh?'\n\n'It's not his way to let matters drop, you may be sure of that,' \ngrowled Hugh in answer.  'I'm in no humour to stir yet, though.  \nI'm as stiff as a dead body, and as full of ugly scratches as if I \nhad been fighting all day yesterday with wild cats.'\n\n'You've so much enthusiasm, that's it,' said Dennis, looking with \ngreat admiration at the uncombed head, matted beard, and torn hands \nand face of the wild figure before him; 'you're such a devil of a \nfellow.  You hurt yourself a hundred times more than you need, \nbecause you will be foremost in everything, and will do more than \nthe rest.'\n\n'For the matter of that,' returned Hugh, shaking back his ragged \nhair and glancing towards the door of the stable in which they lay; \n'there's one yonder as good as me.  What did I tell you about him?  \nDid I say he was worth a dozen, when you doubted him?'\n\nMr Dennis rolled lazily over upon his breast, and resting his chin \nupon his hand in imitation of the attitude in which Hugh lay, said, \nas he too looked towards the door:\n\n'Ay, ay, you knew him, brother, you knew him.  But who'd suppose to \nlook at that chap now, that he could be the man he is!  Isn't it a \nthousand cruel pities, brother, that instead of taking his nat'ral \nrest and qualifying himself for further exertions in this here \nhonourable cause, he should be playing at soldiers like a boy?  And \nhis cleanliness too!' said Mr Dennis, who certainly had no reason \nto entertain a fellow feeling with anybody who was particular on \nthat score; 'what weaknesses he's guilty of; with respect to his \ncleanliness!  At five o'clock this morning, there he was at the \npump, though any one would think he had gone through enough, the \nday before yesterday, to be pretty fast asleep at that time.  But \nno--when I woke for a minute or two, there he was at the pump, and \nif you'd seen him sticking them peacock's feathers into his hat \nwhen he'd done washing--ah! I'm sorry he's such a imperfect \ncharacter, but the best on us is incomplete in some pint of view or \nanother.'\n\nThe subject of this dialogue and of these concluding remarks, which \nwere uttered in a tone of philosophical meditation, was, as the \nreader will have divined, no other than Barnaby, who, with his flag \nin hand, stood sentry in the little patch of sunlight at the \ndistant door, or walked to and fro outside, singing softly to \nhimself; and keeping time to the music of some clear church bells.  \nWhether he stood still, leaning with both hands on the flagstaff, \nor, bearing it upon his shoulder, paced slowly up and down, the \ncareful arrangement of his poor dress, and his erect and lofty \nbearing, showed how high a sense he had of the great importance of \nhis trust, and how happy and how proud it made him.  To Hugh and \nhis companion, who lay in a dark corner of the gloomy shed, he, and \nthe sunlight, and the peaceful Sabbath sound to which he made \nresponse, seemed like a bright picture framed by the door, and set \noff by the stable's blackness.  The whole formed such a contrast to \nthemselves, as they lay wallowing, like some obscene animals, in \ntheir squalor and wickedness on the two heaps of straw, that for a \nfew moments they looked on without speaking, and felt almost \nashamed.\n\n'Ah!'said Hugh at length, carrying it off with a laugh: 'He's a \nrare fellow is Barnaby, and can do more, with less rest, or meat, \nor drink, than any of us.  As to his soldiering, I put him on duty \nthere.'\n\n'Then there was a object in it, and a proper good one too, I'll be \nsworn,' retorted Dennis with a broad grin, and an oath of the same \nquality.  'What was it, brother?'\n\n'Why, you see,' said Hugh, crawling a little nearer to him, 'that \nour noble captain yonder, came in yesterday morning rather the \nworse for liquor, and was--like you and me--ditto last night.'\n\nDennis looked to where Simon Tappertit lay coiled upon a truss of \nhay, snoring profoundly, and nodded.\n\n'And our noble captain,' continued Hugh with another laugh, 'our \nnoble captain and I, have planned for to-morrow a roaring \nexpedition, with good profit in it.'\n\n'Again the Papists?' asked Dennis, rubbing his hands.\n\n'Ay, against the Papists--against one of 'em at least, that some of \nus, and I for one, owe a good heavy grudge to.'\n\n'Not Muster Gashford's friend that he spoke to us about in my \nhouse, eh?' said Dennis, brimfull of pleasant expectation.\n\n'The same man,' said Hugh.\n\n'That's your sort,' cried Mr Dennis, gaily shaking hands with him, \n'that's the kind of game.  Let's have revenges and injuries, and \nall that, and we shall get on twice as fast.  Now you talk, \nindeed!'\n\n'Ha ha ha!  The captain,' added Hugh, 'has thoughts of carrying off \na woman in the bustle, and--ha ha ha!--and so have I!'\n\nMr Dennis received this part of the scheme with a wry face, \nobserving that as a general principle he objected to women \naltogether, as being unsafe and slippery persons on whom there was \nno calculating with any certainty, and who were never in the same \nmind for four-and-twenty hours at a stretch.  He might have \nexpatiated on this suggestive theme at much greater length, but \nthat it occurred to him to ask what connection existed between the \nproposed expedition and Barnaby's being posted at the stable-door \nas sentry; to which Hugh cautiously replied in these words:\n\n'Why, the people we mean to visit, were friends of his, once upon a \ntime, and I know that much of him to feel pretty sure that if he \nthought we were going to do them any harm, he'd be no friend to our \nside, but would lend a ready hand to the other.  So I've persuaded \nhim (for I know him of old) that Lord George has picked him out to \nguard this place to-morrow while we're away, and that it's a great \nhonour--and so he's on duty now, and as proud of it as if he was a \ngeneral.  Ha ha!  What do you say to me for a careful man as well \nas a devil of a one?'\n\nMr Dennis exhausted himself in compliments, and then added,\n\n'But about the expedition itself--'\n\n'About that,' said Hugh, 'you shall hear all particulars from me \nand the great captain conjointly and both together--for see, he's \nwaking up.  Rouse yourself, lion-heart.  Ha ha!  Put a good face \nupon it, and drink again.  Another hair of the dog that bit you, \ncaptain!  Call for drink!  There's enough of gold and silver cups \nand candlesticks buried underneath my bed,' he added, rolling back \nthe straw, and pointing to where the ground was newly turned, 'to \npay for it, if it was a score of casks full.  Drink, captain!'\n\nMr Tappertit received these jovial promptings with a very bad \ngrace, being much the worse, both in mind and body, for his two \nnights of debauch, and but indifferently able to stand upon his \nlegs.  With Hugh's assistance, however, he contrived to stagger to \nthe pump; and having refreshed himself with an abundant draught of \ncold water, and a copious shower of the same refreshing liquid on \nhis head and face, he ordered some rum and milk to be served; and \nupon that innocent beverage and some biscuits and cheese made a \npretty hearty meal.  That done, he disposed himself in an easy \nattitude on the ground beside his two companions (who were \ncarousing after their own tastes), and proceeded to enlighten Mr \nDennis in reference to to-morrow's project.\n\nThat their conversation was an interesting one, was rendered \nmanifest by its length, and by the close attention of all three.  \nThat it was not of an oppressively grave character, but was \nenlivened by various pleasantries arising out of the subject, was \nclear from their loud and frequent roars of laughter, which \nstartled Barnaby on his post, and made him wonder at their levity.  \nBut he was not summoned to join them, until they had eaten, and \ndrunk, and slept, and talked together for some hours; not, indeed, \nuntil the twilight; when they informed him that they were about to \nmake a slight demonstration in the streets--just to keep the \npeople's hands in, as it was Sunday night, and the public might \notherwise be disappointed--and that he was free to accompany them \nif he would.\n\nWithout the slightest preparation, saving that they carried clubs \nand wore the blue cockade, they sallied out into the streets; and, \nwith no more settled design than that of doing as much mischief as \nthey could, paraded them at random.  Their numbers rapidly \nincreasing, they soon divided into parties; and agreeing to meet \nby-and-by, in the fields near Welbeck Street, scoured the town in \nvarious directions.  The largest body, and that which augmented \nwith the greatest rapidity, was the one to which Hugh and Barnaby \nbelonged.  This took its way towards Moorfields, where there was a \nrich chapel, and in which neighbourhood several Catholic families \nwere known to reside.\n\nBeginning with the private houses so occupied, they broke open the \ndoors and windows; and while they destroyed the furniture and left \nbut the bare walls, made a sharp search for tools and engines of \ndestruction, such as hammers, pokers, axes, saws, and such like \ninstruments.  Many of the rioters made belts of cord, of \nhandkerchiefs, or any material they found at hand, and wore these \nweapons as openly as pioneers upon a field-day.  There was not the \nleast disguise or concealment--indeed, on this night, very little \nexcitement or hurry.  From the chapels, they tore down and took \naway the very altars, benches, pulpits, pews, and flooring; from \nthe dwelling-houses, the very wainscoting and stairs.  This Sunday \nevening's recreation they pursued like mere workmen who had a \ncertain task to do, and did it.  Fifty resolute men might have \nturned them at any moment; a single company of soldiers could have \nscattered them like dust; but no man interposed, no authority \nrestrained them, and, except by the terrified persons who fled from \ntheir approach, they were as little heeded as if they were pursuing \ntheir lawful occupations with the utmost sobriety and good \nconduct.\n\nIn the same manner, they marched to the place of rendezvous agreed \nupon, made great fires in the fields, and reserving the most \nvaluable of their spoils, burnt the rest.  Priestly garments, \nimages of saints, rich stuffs and ornaments, altar-furniture and \nhousehold goods, were cast into the flames, and shed a glare on the \nwhole country round; but they danced and howled, and roared about \nthese fires till they were tired, and were never for an instant \nchecked.\n\nAs the main body filed off from this scene of action, and passed \ndown Welbeck Street, they came upon Gashford, who had been a \nwitness of their proceedings, and was walking stealthily along the \npavement.  Keeping up with him, and yet not seeming to speak, Hugh \nmuttered in his ear:\n\n'Is this better, master?'\n\n'No,' said Gashford.  'It is not.'\n\n'What would you have?' said Hugh.  'Fevers are never at their \nheight at once.  They must get on by degrees.'\n\n'I would have you,' said Gashford, pinching his arm with such \nmalevolence that his nails seemed to meet in the skin; 'I would \nhave you put some meaning into your work.  Fools!  Can you make no \nbetter bonfires than of rags and scraps?  Can you burn nothing \nwhole?'\n\n'A little patience, master,' said Hugh.  'Wait but a few hours, and \nyou shall see.  Look for a redness in the sky, to-morrow night.'\n\nWith that, he fell back into his place beside Barnaby; and when the \nsecretary looked after him, both were lost in the crowd.\n\n\n\nChapter 53\n\n\nThe next day was ushered in by merry peals of bells, and by the \nfiring of the Tower guns; flags were hoisted on many of the church-\nsteeples; the usual demonstrations were made in honour of the \nanniversary of the King's birthday; and every man went about his \npleasure or business as if the city were in perfect order, and \nthere were no half-smouldering embers in its secret places, which, \non the approach of night, would kindle up again and scatter ruin \nand dismay abroad.  The leaders of the riot, rendered still more \ndaring by the success of last night and by the booty they had \nacquired, kept steadily together, and only thought of implicating \nthe mass of their followers so deeply that no hope of pardon or \nreward might tempt them to betray their more notorious confederates \ninto the hands of justice.\n\nIndeed, the sense of having gone too far to be forgiven, held the \ntimid together no less than the bold.  Many who would readily have \npointed out the foremost rioters and given evidence against them, \nfelt that escape by that means was hopeless, when their every act \nhad been observed by scores of people who had taken no part in the \ndisturbances; who had suffered in their persons, peace, or \nproperty, by the outrages of the mob; who would be most willing \nwitnesses; and whom the government would, no doubt, prefer to any \nKing's evidence that might be offered.  Many of this class had \ndeserted their usual occupations on the Saturday morning; some had \nbeen seen by their employers active in the tumult; others knew they \nmust be suspected, and that they would be discharged if they \nreturned; others had been desperate from the beginning, and \ncomforted themselves with the homely proverb, that, being hanged at \nall, they might as well be hanged for a sheep as a lamb.  They all \nhoped and believed, in a greater or less degree, that the \ngovernment they seemed to have paralysed, would, in its terror, \ncome to terms with them in the end, and suffer them to make their \nown conditions.  The least sanguine among them reasoned with \nhimself that, at the worst, they were too many to be all punished, \nand that he had as good a chance of escape as any other man.  The \ngreat mass never reasoned or thought at all, but were stimulated by \ntheir own headlong passions, by poverty, by ignorance, by the love \nof mischief, and the hope of plunder.\n\nOne other circumstance is worthy of remark; and that is, that from \nthe moment of their first outbreak at Westminster, every symptom of \norder or preconcerted arrangement among them vanished.  When they \ndivided into parties and ran to different quarters of the town, it \nwas on the spontaneous suggestion of the moment.  Each party \nswelled as it went along, like rivers as they roll towards the sea; \nnew leaders sprang up as they were wanted, disappeared when the \nnecessity was over, and reappeared at the next crisis.  Each tumult \ntook shape and form from the circumstances of the moment; sober \nworkmen, going home from their day's labour, were seen to cast down \ntheir baskets of tools and become rioters in an instant; mere boys \non errands did the like.  In a word, a moral plague ran through the \ncity.  The noise, and hurry, and excitement, had for hundreds and \nhundreds an attraction they had no firmness to resist.  The \ncontagion spread like a dread fever: an infectious madness, as yet \nnot near its height, seized on new victims every hour, and society \nbegan to tremble at their ravings.\n\nIt was between two and three o'clock in the afternoon when \nGashford looked into the lair described in the last chapter, and \nseeing only Barnaby and Dennis there, inquired for Hugh.\n\nHe was out, Barnaby told him; had gone out more than an hour ago; \nand had not yet returned.\n\n'Dennis!' said the smiling secretary, in his smoothest voice, as he \nsat down cross-legged on a barrel, 'Dennis!'\n\nThe hangman struggled into a sitting posture directly, and with his \neyes wide open, looked towards him.\n\n'How do you do, Dennis?' said Gashford, nodding.  'I hope you have \nsuffered no inconvenience from your late exertions, Dennis?'\n\n'I always will say of you, Muster Gashford,' returned the hangman, \nstaring at him, 'that that 'ere quiet way of yours might almost \nwake a dead man.  It is,' he added, with a muttered oath--still \nstaring at him in a thoughtful manner--'so awful sly!'\n\n'So distinct, eh Dennis?'\n\n'Distinct!' he answered, scratching his head, and keeping his eyes \nupon the secretary's face; 'I seem to hear it, Muster Gashford, in \nmy wery bones.'\n\n'I am very glad your sense of hearing is so sharp, and that I \nsucceed in making myself so intelligible,' said Gashford, in his \nunvarying, even tone.  'Where is your friend?'\n\nMr Dennis looked round as in expectation of beholding him asleep \nupon his bed of straw; then remembering he had seen him go out, \nreplied:\n\n'I can't say where he is, Muster Gashford, I expected him back \nafore now.  I hope it isn't time that we was busy, Muster \nGashford?'\n\n'Nay,' said the secretary, 'who should know that as well as you?  \nHow can I tell you, Dennis?  You are perfect master of your own \nactions, you know, and accountable to nobody--except sometimes to \nthe law, eh?'\n\nDennis, who was very much baffled by the cool matter-of-course \nmanner of this reply, recovered his self-possession on his \nprofessional pursuits being referred to, and pointing towards \nBarnaby, shook his head and frowned.\n\n'Hush!' cried Barnaby.\n\n'Ah!  Do hush about that, Muster Gashford,' said the hangman in a \nlow voice, 'pop'lar prejudices--you always forget--well, Barnaby, \nmy lad, what's the matter?'\n\n'I hear him coming,' he answered: 'Hark!  Do you mark that?  That's \nhis foot!  Bless you, I know his step, and his dog's too.  Tramp, \ntramp, pit-pat, on they come together, and, ha ha ha!--and here \nthey are!' he cried, joyfully welcoming Hugh with both hands, and \nthen patting him fondly on the back, as if instead of being the \nrough companion he was, he had been one of the most prepossessing \nof men.  'Here he is, and safe too!  I am glad to see him back \nagain, old Hugh!'\n\n'I'm a Turk if he don't give me a warmer welcome always than any \nman of sense,' said Hugh, shaking hands with him with a kind of \nferocious friendship, strange enough to see.  'How are you, boy?'\n\n'Hearty!' cried Barnaby, waving his hat.  'Ha ha ha!  And merrry \ntoo, Hugh!  And ready to do anything for the good cause, and the \nright, and to help the kind, mild, pale-faced gentleman--the lord \nthey used so ill--eh, Hugh?'\n\n'Ay!' returned his friend, dropping his hand, and looking at \nGashford for an instant with a changed expression before he spoke \nto him.  'Good day, master!'\n\n'And good day to you,' replied the secretary, nursing his leg.\n\n'And many good days--whole years of them, I hope.  You are heated.'\n\n'So would you have been, master,' said Hugh, wiping his face, 'if \nyou'd been running here as fast as I have.'\n\n'You know the news, then?  Yes, I supposed you would have heard it.'\n\n'News! what news?'\n\n'You don't?' cried Gashford, raising his eyebrows with an \nexclamation of surprise.  'Dear me!  Come; then I AM the first to \nmake you acquainted with your distinguished position, after all.  \nDo you see the King's Arms a-top?' he smilingly asked, as he took a \nlarge paper from his pocket, unfolded it, and held it out for \nHugh's inspection.\n\n'Well!' said Hugh.  'What's that to me?'\n\n'Much.  A great deal,' replied the secretary.  'Read it.'\n\n'I told you, the first time I saw you, that I couldn't read,' said \nHugh, impatiently.  'What in the Devil's name's inside of it?'\n\n'It is a proclamation from the King in Council,' said Gashford, \n'dated to-day, and offering a reward of five hundred pounds--five \nhundred pounds is a great deal of money, and a large temptation to \nsome people--to any one who will discover the person or persons \nmost active in demolishing those chapels on Saturday night.'\n\n'Is that all?' cried Hugh, with an indifferent air.  'I knew of \nthat.'\n\n'Truly I might have known you did,' said Gashford, smiling, and \nfolding up the document again.  'Your friend, I might have guessed--\nindeed I did guess--was sure to tell you.'\n\n'My friend!' stammered Hugh, with an unsuccessful effort to appear \nsurprised.  'What friend?'\n\n'Tut tut--do you suppose I don't know where you have been?' \nretorted Gashford, rubbing his hands, and beating the back of one \non the palm of the other, and looking at him with a cunning eye.  \n'How dull you think me!  Shall I say his name?'\n\n'No,' said Hugh, with a hasty glance towards Dennis.\n\n'You have also heard from him, no doubt,' resumed the secretary, \nafter a moment's pause, 'that the rioters who have been taken (poor \nfellows) are committed for trial, and that some very active \nwitnesses have had the temerity to appear against them.  Among \nothers--' and here he clenched his teeth, as if he would suppress \nby force some violent words that rose upon his tongue; and spoke \nvery slowly.  'Among others, a gentleman who saw the work going on \nin Warwick Street; a Catholic gentleman; one Haredale.'\n\nHugh would have prevented his uttering the word, but it was out \nalready.  Hearing the name, Barnaby turned swiftly round.\n\n'Duty, duty, bold Barnaby!' cried Hugh, assuming his wildest and \nmost rapid manner, and thrusting into his hand his staff and flag \nwhich leant against the wall.  'Mount guard without loss of time, \nfor we are off upon our expedition.  Up, Dennis, and get ready!  \nTake care that no one turns the straw upon my bed, brave Barnaby; \nwe know what's underneath it--eh?  Now, master, quick!  What you \nhave to say, say speedily, for the little captain and a cluster of \n'em are in the fields, and only waiting for us.  Sharp's the word, \nand strike's the action.  Quick!'\n\nBarnaby was not proof against this bustle and despatch.  The look \nof mingled astonishtnent and anger which had appeared in his face \nwhen he turned towards them, faded from it as the words passed from \nhis memory, like breath from a polished mirror; and grasping the \nweapon which Hugh forced upon him, he proudly took his station at \nthe door, beyond their hearing.\n\n'You might have spoiled our plans, master,' said Hugh.  'YOU, too, \nof all men!'\n\n'Who would have supposed that HE would be so quick?' urged \nGashford.\n\n'He's as quick sometimes--I don't mean with his hands, for that you \nknow, but with his head--as you or any man,' said Hugh.  'Dennis, \nit's time we were going; they're waiting for us; I came to tell \nyou.  Reach me my stick and belt.  Here!  Lend a hand, master.  \nFling this over my shoulder, and buckle it behind, will you?'\n\n'Brisk as ever!' said the secretary, adjusting it for him as he \ndesired.\n\n'A man need be brisk to-day; there's brisk work a-foot.'\n\n'There is, is there?' said Gashford.  He said it with such a \nprovoking assumption of ignorance, that Hugh, looking over his \nshoulder and angrily down upon him, replied:\n\n'Is there!  You know there is!  Who knows better than you, master, \nthat the first great step to be taken is to make examples of these \nwitnesses, and frighten all men from appearing against us or any of \nour body, any more?'\n\n'There's one we know of,' returned Gashford, with an expressive \nsmile, 'who is at least as well informed upon that subject as you \nor I.'\n\n'If we mean the same gentleman, as I suppose we do,' Hugh rejoined \nsoftly, 'I tell you this--he's as good and quick information about \neverything as--' here he paused and looked round, as if to make \nsure that the person in question was not within hearing, 'as Old \nNick himself.  Have you done that, master?  How slow you are!'\n\n'It's quite fast now,' said Gashford, rising.  'I say--you didn't \nfind that your friend disapproved of to-day's little expedition?  \nHa ha ha!  It is fortunate it jumps so well with the witness \npolicy; for, once planned, it must have been carried out.  And now \nyou are going, eh?'\n\n'Now we are going, master!' Hugh replied.  'Any parting words?'\n\n'Oh dear, no,' said Gashford sweetly.  'None!'\n\n'You're sure?' cried Hugh, nudging the grinning Dennis.\n\n'Quite sure, eh, Muster Gashford?' chuckled the hangman.\n\nGashford paused a moment, struggling with his caution and his \nmalice; then putting himself between the two men, and laying a hand \nupon the arm of each, said, in a cramped whisper:\n\n'Do not, my good friends--I am sure you will not--forget our talk \none night--in your house, Dennis--about this person.  No mercy, no \nquarter, no two beams of his house to be left standing where the \nbuilder placed them!  Fire, the saying goes, is a good servant, but \na bad master.  Makes it HIS master; he deserves no better.  But I \nam sure you will be firm, I am sure you will be very resolute, I am \nsure you will remember that he thirsts for your lives, and those of \nall your brave companions.  If you ever acted like staunch \nfellows, you will do so to-day.  Won't you, Dennis--won't you, \nHugh?'\n\nThe two looked at him, and at each other; then bursting into a roar \nof laughter, brandished their staves above their heads, shook \nhands, and hurried out.\n\nWhen they had been gone a little time, Gashford followed.  They \nwere yet in sight, and hastening to that part of the adjacent \nfields in which their fellows had already mustered; Hugh was \nlooking back, and flourishing his hat to Barnaby, who, delighted \nwith his trust, replied in the same way, and then resumed his \npacing up and down before the stable-door, where his feet had worn \na path already.  And when Gashford himself was far distant, and \nlooked back for the last time, he was still walking to and fro, \nwith the same measured tread; the most devoted and the blithest \nchampion that ever maintained a post, and felt his heart lifted up \nwith a brave sense of duty, and determination to defend it to the \nlast.\n\nSmiling at the simplicity of the poor idiot, Gashford betook \nhimself to Welbeck Street by a different path from that which he \nknew the rioters would take, and sitting down behind a curtain in \none of the upper windows of Lord George Gordon's house, waited \nimpatiently for their coming.  They were so long, that although he \nknew it had been settled they should come that way, he had a \nmisgiving they must have changed their plans and taken some other \nroute.  But at length the roar of voices was heard in the \nneighbouring fields, and soon afterwards they came thronging past, \nin a great body.\n\nHowever, they were not all, nor nearly all, in one body, but were, \nas he soon found, divided into four parties, each of which stopped \nbefore the house to give three cheers, and then went on; the \nleaders crying out in what direction they were going, and calling \non the spectators to join them.  The first detachment, carrying, by \nway of banners, some relics of the havoc they had made in \nMoorfields, proclaimed that they were on their way to Chelsea, \nwhence they would return in the same order, to make of the spoil \nthey bore, a great bonfire, near at hand.  The second gave out that \nthey were bound for Wapping, to destroy a chapel; the third, that \ntheir place of destination was East Smithfield, and their object \nthe same.  All this was done in broad, bright, summer day.  Gay \ncarriages and chairs stopped to let them pass, or turned back to \navoid them; people on foot stood aside in doorways, or perhaps \nknocked and begged permission to stand at a window, or in the hall, \nuntil the rioters had passed: but nobody interfered with them; and \nwhen they had gone by, everything went on as usual.\n\nThere still remained the fourth body, and for that the secretary \nlooked with a most intense eagerness.  At last it came up.  It was \nnumerous, and composed of picked men; for as he gazed down among \nthem, he recognised many upturned faces which he knew well--those \nof Simon Tappertit, Hugh, and Dennis in the front, of course.  They \nhalted and cheered, as the others had done; but when they moved \nagain, they did not, like them, proclaim what design they had.  \nHugh merely raised his hat upon the bludgeon he carried, and \nglancing at a spectator on the opposite side of the way, was gone.\n\nGashford followed the direction of his glance instinctively, and \nsaw, standing on the pavement, and wearing the blue cockade, Sir \nJohn Chester.  He held his hat an inch or two above his head, to \npropitiate the mob; and, resting gracefully on his cane, smiling \npleasantly, and displaying his dress and person to the very best \nadvantage, looked on in the most tranquil state imaginable.  For \nall that, and quick and dexterous as he was, Gashford had seen him \nrecognise Hugh with the air of a patron.  He had no longer any eyes \nfor the crowd, but fixed his keen regards upon Sir John.\n\nHe stood in the same place and posture until the last man in the \nconcourse had turned the corner of the street; then very \ndeliberately took the blue cockade out of his hat; put it carefully \nin his pocket, ready for the next emergency; refreshed himself with \na pinch of snuff; put up his box; and was walking slowly off, when \na passing carriage stopped, and a lady's hand let down the glass.  \nSir John's hat was off again immediately.  After a minute's \nconversation at the carriage-window, in which it was apparent that \nhe was vastly entertaining on the subject of the mob, he stepped \nlightly in, and was driven away.\n\nThe secretary smiled, but he had other thoughts to dwell upon, and \nsoon dismissed the topic.  Dinner was brought him, but he sent it \ndown untasted; and, in restless pacings up and down the room, and \nconstant glances at the clock, and many futile efforts to sit down \nand read, or go to sleep, or look out of the window, consumed four \nweary hours.  When the dial told him thus much time had crept away, \nhe stole upstairs to the top of the house, and coming out upon the \nroof sat down, with his face towards the east.\n\nHeedless of the fresh air that blew upon his heated brow, of the \npleasant meadows from which he turned, of the piles of roofs and \nchimneys upon which he looked, of the smoke and rising mist he \nvainly sought to pierce, of the shrill cries of children at their \nevening sports, the distant hum and turmoil of the town, the \ncheerful country breath that rustled past to meet it, and to droop, \nand die; he watched, and watched, till it was dark save for the \nspecks of light that twinkled in the streets below and far away--\nand, as the darkness deepened, strained his gaze and grew more \neager yet.\n\n'Nothing but gloom in that direction, still!' he muttered \nrestlessly.  'Dog! where is the redness in the sky, you promised \nme!'\n\n\n\nChapter 54\n\n\nRumours of the prevailing disturbances had, by this time, begun to \nbe pretty generally circulated through the towns and villages round \nLondon, and the tidings were everywhere received with that appetite \nfor the marvellous and love of the terrible which have probably \nbeen among the natural characteristics of mankind since the \ncreation of the world.  These accounts, however, appeared, to many \npersons at that day--as they would to us at the present, but that \nwe know them to be matter of history--so monstrous and improbable, \nthat a great number of those who were resident at a distance, and \nwho were credulous enough on other points, were really unable to \nbring their minds to believe that such things could be; and \nrejected the intelligence they received on all hands, as wholly \nfabulous and absurd.\n\nMr Willet--not so much, perhaps, on account of his having argued \nand settled the matter with himself, as by reason of his \nconstitutional obstinacy--was one of those who positively refused \nto entertain the current topic for a moment.  On this very evening, \nand perhaps at the very time when Gashford kept his solitary watch, \nold John was so red in the face with perpetually shaking his head \nin contradiction of his three ancient cronies and pot companions, \nthat he was quite a phenomenon to behold, and lighted up the \nMaypole Porch wherein they sat together, like a monstrous carbuncle \nin a fairy tale.\n\n'Do you think, sir,' said Mr Willet, looking hard at Solomon \nDaisy--for it was his custom in cases of personal altercation to \nfasten upon the smallest man in the party--'do you think, sir, that \nI'm a born fool?'\n\n'No, no, Johnny,' returned Solomon, looking round upon the little \ncircle of which he formed a part: 'We all know better than that.  \nYou're no fool, Johnny.  No, no!'\n\nMr Cobb and Mr Parkes shook their heads in unison, muttering, 'No, \nno, Johnny, not you!'  But as such compliments had usually the \neffect of making Mr Willet rather more dogged than before, he \nsurveyed them with a look of deep disdain, and returned for answer:\n\n'Then what do you mean by coming here, and telling me that this \nevening you're a-going to walk up to London together--you three--\nyou--and have the evidence of your own senses?  An't,' said Mr \nWillet, putting his pipe in his mouth with an air of solemn \ndisgust, 'an't the evidence of MY senses enough for you?'\n\n'But we haven't got it, Johnny,' pleaded Parkes, humbly.\n\n'You haven't got it, sir?' repeated Mr Willet, eyeing him from top \nto toe.  'You haven't got it, sir?  You HAVE got it, sir.  Don't I \ntell you that His blessed Majesty King George the Third would no \nmore stand a rioting and rollicking in his streets, than he'd stand \nbeing crowed over by his own Parliament?'\n\n'Yes, Johnny, but that's your sense--not your senses,' said the \nadventurous Mr Parkes.\n\n'How do you know?  'retorted John with great dignity.  'You're a \ncontradicting pretty free, you are, sir.  How do YOU know which it \nis?  I'm not aware I ever told you, sir.'\n\nMr Parkes, finding himself in the position of having got into \nmetaphysics without exactly seeing his way out of them, stammered \nforth an apology and retreated from the argument.  There then \nensued a silence of some ten minutes or a quarter of an hour, at \nthe expiration of which period Mr Willet was observed to rumble and \nshake with laughter, and presently remarked, in reference to his \nlate adversary, 'that he hoped he had tackled him enough.'  \nThereupon Messrs Cobb and Daisy laughed, and nodded, and Parkes was \nlooked upon as thoroughly and effectually put down.\n\n'Do you suppose if all this was true, that Mr Haredale would be \nconstantly away from home, as he is?' said John, after another \nsilence.  'Do you think he wouldn't be afraid to leave his house \nwith them two young women in it, and only a couple of men, or so?'\n\n'Ay, but then you know,' returned Solomon Daisy, 'his house is a \ngoodish way out of London, and they do say that the rioters won't \ngo more than two miles, or three at the farthest, off the stones.  \nBesides, you know, some of the Catholic gentlefolks have actually \nsent trinkets and suchlike down here for safety--at least, so the \nstory goes.'\n\n'The story goes!' said Mr Willet testily.  'Yes, sir.  The story \ngoes that you saw a ghost last March.  But nobody believes it.'\n\n'Well!' said Solomon, rising, to divert the attention of his two \nfriends, who tittered at this retort: 'believed or disbelieved, \nit's true; and true or not, if we mean to go to London, we must be \ngoing at once.  So shake hands, Johnny, and good night.'\n\n'I shall shake hands,' returned the landlord, putting his into his \npockets, 'with no man as goes to London on such nonsensical \nerrands.'\n\nThe three cronies were therefore reduced to the necessity of \nshaking his elbows; having performed that ceremony, and brought \nfrom the house their hats, and sticks, and greatcoats, they bade \nhim good night and departed; promising to bring him on the morrow \nfull and true accounts of the real state of the city, and if it \nwere quiet, to give him the full merit of his victory.\n\nJohn Willet looked after them, as they plodded along the road in \nthe rich glow of a summer evening; and knocking the ashes out of \nhis pipe, laughed inwardly at their folly, until his sides were \nsore.  When he had quite exhausted himself--which took some time, \nfor he laughed as slowly as he thought and spoke--he sat himself \ncomfortably with his back to the house, put his legs upon the \nbench, then his apron over his face, and fell sound asleep.\n\nHow long he slept, matters not; but it was for no brief space, for \nwhen he awoke, the rich light had faded, the sombre hues of night \nwere falling fast upon the landscape, and a few bright stars were \nalready twinkling overhead.  The birds were all at roost, the \ndaisies on the green had closed their fairy hoods, the honeysuckle \ntwining round the porch exhaled its perfume in a twofold degree, as \nthough it lost its coyness at that silent time and loved to shed \nits fragrance on the night; the ivy scarcely stirred its deep green \nleaves.  How tranquil, and how beautiful it was!\n\nWas there no sound in the air, besides the gentle rustling of the \ntrees and the grasshopper's merry chirp?  Hark!  Something very \nfaint and distant, not unlike the murmuring in a sea-shell.  Now it \ngrew louder, fainter now, and now it altogether died away.  \nPresently, it came again, subsided, came once more, grew louder, \nfainter--swelled into a roar.  It was on the road, and varied with \nits windings.  All at once it burst into a distinct sound--the \nvoices, and the tramping feet of many men.\n\nIt is questionable whether old John Willet, even then, would have \nthought of the rioters but for the cries of his cook and housemaid, \nwho ran screaming upstairs and locked themselves into one of the \nold garrets,--shrieking dismally when they had done so, by way of \nrendering their place of refuge perfectly secret and secure.  These \ntwo females did afterwards depone that Mr Willet in his \nconsternation uttered but one word, and called that up the stairs \nin a stentorian voice, six distinct times.  But as this word was a \nmonosyllable, which, however inoffensive when applied to the \nquadruped it denotes, is highly reprehensible when used in \nconnection with females of unimpeachable character, many persons \nwere inclined to believe that the young women laboured under some \nhallucination caused by excessive fear; and that their ears \ndeceived them.\n\nBe this as it may, John Willet, in whom the very uttermost extent \nof dull-headed perplexity supplied the place of courage, stationed \nhimself in the porch, and waited for their coming up.  Once, it \ndimly occurred to him that there was a kind of door to the house, \nwhich had a lock and bolts; and at the same time some shadowy ideas \nof shutters to the lower windows, flitted through his brain.  But \nhe stood stock still, looking down the road in the direction in \nwhich the noise was rapidly advancing, and did not so much as take \nhis hands out of his pockets.\n\nHe had not to wait long.  A dark mass, looming through a cloud of \ndust, soon became visible; the mob quickened their pace; shouting \nand whooping like savages, they came rushing on pell mell; and in a \nfew seconds he was bandied from hand to hand, in the heart of a \ncrowd of men.\n\n'Halloa!' cried a voice he knew, as the man who spoke came cleaving \nthrough the throng.  'Where is he?  Give him to me.  Don't hurt \nhim.  How now, old Jack!  Ha ha ha!'\n\nMr Willet looked at him, and saw it was Hugh; but he said nothing, \nand thought nothing.\n\n'These lads are thirsty and must drink!' cried Hugh, thrusting him \nback towards the house.  'Bustle, Jack, bustle.  Show us the best--\nthe very best--the over-proof that you keep for your own drinking, \nJack!'\n\nJohn faintly articulated the words, 'Who's to pay?'\n\n'He says \"Who's to pay?\"' cried Hugh, with a roar of laughter which \nwas loudly echoed by the crowd.  Then turning to John, he added, \n'Pay! Why, nobody.'\n\nJohn stared round at the mass of faces--some grinning, some fierce, \nsome lighted up by torches, some indistinct, some dusky and \nshadowy: some looking at him, some at his house, some at each \nother--and while he was, as he thought, in the very act of doing \nso, found himself, without any consciousness of having moved, in \nthe bar; sitting down in an arm-chair, and watching the destruction \nof his property, as if it were some queer play or entertainment, of \nan astonishing and stupefying nature, but having no reference to \nhimself--that he could make out--at all.\n\nYes.  Here was the bar--the bar that the boldest never entered \nwithout special invitation--the sanctuary, the mystery, the \nhallowed ground: here it was, crammed with men, clubs, sticks, \ntorches, pistols; filled with a deafening noise, oaths, shouts, \nscreams, hootings; changed all at once into a bear-garden, a \nmadhouse, an infernal temple: men darting in and out, by door and \nwindow, smashing the glass, turning the taps, drinking liquor out \nof China punchbowls, sitting astride of casks, smoking private and \npersonal pipes, cutting down the sacred grove of lemons, hacking \nand hewing at the celebrated cheese, breaking open inviolable \ndrawers, putting things in their pockets which didn't belong to \nthem, dividing his own money before his own eyes, wantonly wasting, \nbreaking, pulling down and tearing up: nothing quiet, nothing \nprivate: men everywhere--above, below, overhead, in the bedrooms, \nin the kitchen, in the yard, in the stables--clambering in at \nwindows when there were doors wide open; dropping out of windows \nwhen the stairs were handy; leaping over the bannisters into chasms \nof passages: new faces and figures presenting themselves every \ninstant--some yelling, some singing, some fighting, some breaking \nglass and crockery, some laying the dust with the liquor they \ncouldn't drink, some ringing the bells till they pulled them down, \nothers beating them with pokers till they beat them into fragments: \nmore men still--more, more, more--swarming on like insects: noise, \nsmoke, light, darkness, frolic, anger, laughter, groans, plunder, \nfear, and ruin!\n\nNearly all the time while John looked on at this bewildering scene, \nHugh kept near him; and though he was the loudest, wildest, most \ndestructive villain there, he saved his old master's bones a score \nof times.  Nay, even when Mr Tappertit, excited by liquor, came up, \nand in assertion of his prerogative politely kicked John Willet on \nthe shins, Hugh bade him return the compliment; and if old John had \nhad sufficient presence of mind to understand this whispered \ndirection, and to profit by it, he might no doubt, under Hugh's \nprotection, have done so with impunity.\n\nAt length the band began to reassemble outside the house, and to \ncall to those within, to join them, for they were losing time.  \nThese murmurs increasing, and attaining a high pitch, Hugh, and \nsome of those who yet lingered in the bar, and who plainly were the \nleaders of the troop, took counsel together, apart, as to what was \nto be done with John, to keep him quiet until their Chigwell work \nwas over.  Some proposed to set the house on fire and leave him in \nit; others, that he should be reduced to a state of temporary \ninsensibility, by knocking on the head; others, that he should be \nsworn to sit where he was until to-morrow at the same hour; others \nagain, that he should be gagged and taken off with them, under a \nsufficient guard.  All these propositions being overruled, it was \nconcluded, at last, to bind him in his chair, and the word was \npassed for Dennis.\n\n'Look'ee here, Jack!' said Hugh, striding up to him: 'We are going \nto tie you, hand and foot, but otherwise you won't be hurt.  D'ye \nhear?'\n\nJohn Willet looked at another man, as if he didn't know which was \nthe speaker, and muttered something about an ordinary every Sunday \nat two o'clock.\n\n'You won't be hurt I tell you, Jack--do you hear me?' roared Hugh, \nimpressing the assurance upon him by means of a heavy blow on the \nback.  'He's so dead scared, he's woolgathering, I think.  Give him \na drop of something to drink here.  Hand over, one of you.'\n\nA glass of liquor being passed forward, Hugh poured the contents \ndown old John's throat.  Mr Willet feebly smacked his lips, thrust \nhis hand into his pocket, and inquired what was to pay; adding, as \nhe looked vacantly round, that he believed there was a trifle of \nbroken glass--\n\n'He's out of his senses for the time, it's my belief,' said Hugh, \nafter shaking him, without any visible effect upon his system, \nuntil his keys rattled in his pocket.  'Where's that Dennis?'\n\nThe word was again passed, and presently Mr Dennis, with a long \ncord bound about his middle, something after the manner of a friar, \ncame hurrying in, attended by a body-guard of half-a-dozen of his \nmen.\n\n'Come!  Be alive here!' cried Hugh, stamping his foot upon the \nground.  'Make haste!'\n\nDennis, with a wink and a nod, unwound the cord from about his \nperson, and raising his eyes to the ceiling, looked all over it, \nand round the walls and cornice, with a curious eye; then shook his \nhead.\n\n'Move, man, can't you!' cried Hugh, with another impatient stamp of \nhis foot.  'Are we to wait here, till the cry has gone for ten \nmiles round, and our work's interrupted?'\n\n'It's all very fine talking, brother,' answered Dennis, stepping \ntowards him; 'but unless--' and here he whispered in his ear--\n'unless we do it over the door, it can't be done at all in this \nhere room.'\n\n'What can't?' Hugh demanded.\n\n'What can't!' retorted Dennis.  'Why, the old man can't.'\n\n'Why, you weren't going to hang him!' cried Hugh.\n\n'No, brother?' returned the hangman with a stare.  'What else?'\n\nHugh made no answer, but snatching the rope from his companion's \nhand, proceeded to bind old John himself; but his very first move \nwas so bungling and unskilful, that Mr Dennis entreated, almost \nwith tears in his eyes, that he might be permitted to perform the \nduty.  Hugh consenting, be achieved it in a twinkling.\n\n'There,' he said, looking mournfully at John Willet, who displayed \nno more emotion in his bonds than he had shown out of them.  \n'That's what I call pretty and workmanlike.  He's quite a picter \nnow.  But, brother, just a word with you--now that he's ready \ntrussed, as one may say, wouldn't it be better for all parties if \nwe was to work him off?  It would read uncommon well in the \nnewspapers, it would indeed.  The public would think a great deal \nmore on us!'\n\nHugh, inferring what his companion meant, rather from his gestures \nthan his technical mode of expressing himself (to which, as he was \nignorant of his calling, he wanted the clue), rejected this \nproposition for the second time, and gave the word 'Forward!' which \nwas echoed by a hundred voices from without.\n\n'To the Warren!' shouted Dennis as he ran out, followed by the \nrest.  'A witness's house, my lads!'\n\nA loud yell followed, and the whole throng hurried off, mad for \npillage and destruction.  Hugh lingered behind for a few moments to \nstimulate himself with more drink, and to set all the taps running, \na few of which had accidentally been spared; then, glancing round \nthe despoiled and plundered room, through whose shattered window \nthe rioters had thrust the Maypole itself,--for even that had been \nsawn down,--lighted a torch, clapped the mute and motionless John \nWillet on the back, and waving his light above his head, and \nuttering a fierce shout, hastened after his companions.\n\n\n\nChapter 55\n\n\nJohn Willet, left alone in his dismantled bar, continued to sit \nstaring about him; awake as to his eyes, certainly, but with all \nhis powers of reason and reflection in a sound and dreamless \nsleep.  He looked round upon the room which had been for years, \nand was within an hour ago, the pride of his heart; and not a \nmuscle of his face was moved.  The night, without, looked black and \ncold through the dreary gaps in the casement; the precious liquids, \nnow nearly leaked away, dripped with a hollow sound upon the floor; \nthe Maypole peered ruefully in through the broken window, like the \nbowsprit of a wrecked ship; the ground might have been the bottom \nof the sea, it was so strewn with precious fragments.  Currents of \nair rushed in, as the old doors jarred and creaked upon their \nhinges; the candles flickered and guttered down, and made long \nwinding-sheets; the cheery deep-red curtains flapped and fluttered \nidly in the wind; even the stout Dutch kegs, overthrown and lying \nempty in dark corners, seemed the mere husks of good fellows whose \njollity had departed, and who could kindle with a friendly glow no \nmore.  John saw this desolation, and yet saw it not.  He was \nperfectly contented to sit there, staring at it, and felt no more \nindignation or discomfort in his bonds than if they had been robes \nof honour.  So far as he was personally concerned, old Time lay \nsnoring, and the world stood still.\n\nSave for the dripping from the barrels, the rustling of such light \nfragments of destruction as the wind affected, and the dull \ncreaking of the open doors, all was profoundly quiet: indeed, \nthese sounds, like the ticking of the death-watch in the night, \nonly made the silence they invaded deeper and more apparent.  But \nquiet or noisy, it was all one to John.  If a train of heavy \nartillery could have come up and commenced ball practice outside \nthe window, it would have been all the same to him.  He was a long \nway beyond surprise.  A ghost couldn't have overtaken him.\n\nBy and by he heard a footstep--a hurried, and yet cautious \nfootstep--coming on towards the house.  It stopped, advanced again, \nthen seemed to go quite round it.  Having done that, it came \nbeneath the window, and a head looked in.\n\nIt was strongly relieved against the darkness outside by the glare \nof the guttering candles.  A pale, worn, withered face; the eyes--\nbut that was owing to its gaunt condition--unnaturally large and \nbright; the hair, a grizzled black.  It gave a searching glance all \nround the room, and a deep voice said:\n\n'Are you alone in this house?'\n\nJohn made no sign, though the question was repeated twice, and he \nheard it distinctly.  After a moment's pause, the man got in at the \nwindow.  John was not at all surprised at this, either.  There had \nbeen so much getting in and out of window in the course of the last \nhour or so, that he had quite forgotten the door, and seemed to \nhave lived among such exercises from infancy.\n\nThe man wore a large, dark, faded cloak, and a slouched hat; he \nwalked up close to John, and looked at him.  John returned the \ncompliment with interest.\n\n'How long have you been sitting thus?' said the man.\n\nJohn considered, but nothing came of it.\n\n'Which way have the party gone?'\n\nSome wandering speculations relative to the fashion of the \nstranger's boots, got into Mr Willet's mind by some accident or \nother, but they got out again in a hurry, and left him in his \nformer state.\n\n'You would do well to speak,' said the man; 'you may keep a whole \nskin, though you have nothing else left that can be hurt.  Which \nway have the party gone?'\n\n'That!' said John, finding his voice all at once, and nodding with \nperfect good faith--he couldn't point; he was so tightly bound--in \nexactly the opposite direction to the right one.\n\n'You lie!' said the man angrily, and with a threatening gesture.  \n'I came that way.  You would betray me.'\n\nIt was so evident that John's imperturbability was not assumed, but \nwas the result of the late proceedings under his roof, that the man \nstayed his hand in the very act of striking him, and turned away.\n\nJohn looked after him without so much as a twitch in a single nerve \nof his face.  He seized a glass, and holding it under one of the \nlittle casks until a few drops were collected, drank them greedily \noff; then throwing it down upon the floor impatiently, he took the \nvessel in his hands and drained it into his throat.  Some scraps of \nbread and meat were scattered about, and on these he fell next; \neating them with voracity, and pausing every now and then to \nlisten for some fancied noise outside.  When he had refreshed \nhimself in this manner with violent haste, and raised another \nbarrel to his lips, he pulled his hat upon his brow as though he \nwere about to leave the house, and turned to John.\n\n'Where are your servants?'\n\nMr Willet indistinctly remembered to have heard the rioters calling \nto them to throw the key of the room in which they were, out of \nwindow, for their keeping.  He therefore replied, 'Locked up.'\n\n'Well for them if they remain quiet, and well for you if you do the \nlike,' said the man.  'Now show me the way the party went.'\n\nThis time Mr Willet indicated it correctly.  The man was hurrying \nto the door, when suddenly there came towards them on the wind, the \nloud and rapid tolling of an alarm-bell, and then a bright and \nvivid glare streamed up, which illumined, not only the whole \nchamber, but all the country.\n\nIt was not the sudden change from darkness to this dreadful light, \nit was not the sound of distant shrieks and shouts of triumph, it \nwas not this dread invasion of the serenity and peace of night, \nthat drove the man back as though a thunderbolt had struck him.  It \nwas the Bell.  If the ghastliest shape the human mind has ever \npictured in its wildest dreams had risen up before him, he could \nnot have staggered backward from its touch, as he did from the \nfirst sound of that loud iron voice.  With eyes that started from \nhis head, his limbs convulsed, his face most horrible to see, he \nraised one arm high up into the air, and holding something \nvisionary back and down, with his other hand, drove at it as though \nhe held a knife and stabbed it to the heart.  He clutched his hair, \nand stopped his ears, and travelled madly round and round; then \ngave a frightful cry, and with it rushed away: still, still, the \nBell tolled on and seemed to follow him--louder and louder, hotter \nand hotter yet.  The glare grew brighter, the roar of voices \ndeeper; the crash of heavy bodies falling, shook the air; bright \nstreams of sparks rose up into the sky; but louder than them all--\nrising faster far, to Heaven--a million times more fierce and \nfurious--pouring forth dreadful secrets after its long silence--\nspeaking the language of the dead--the Bell--the Bell!\n\nWhat hunt of spectres could surpass that dread pursuit and flight!  \nHad there been a legion of them on his track, he could have better \nborne it.  They would have had a beginning and an end, but here all \nspace was full.  The one pursuing voice was everywhere: it sounded \nin the earth, the air; shook the long grass, and howled among the \ntrembling trees.  The echoes caught it up, the owls hooted as it \nflew upon the breeze, the nightingale was silent and hid herself \namong the thickest boughs: it seemed to goad and urge the angry \nfire, and lash it into madness; everything was steeped in one \nprevailing red; the glow was everywhere; nature was drenched in \nblood: still the remorseless crying of that awful voice--the Bell, \nthe Bell!\n\nIt ceased; but not in his ears.  The knell was at his heart.  No \nwork of man had ever voice like that which sounded there, and \nwarned him that it cried unceasingly to Heaven.  Who could hear \nthat hell, and not know what it said!  There was murder in its \nevery note--cruel, relentless, savage murder--the murder of a \nconfiding man, by one who held his every trust.  Its ringing \nsummoned phantoms from their graves.  What face was that, in which \na friendly smile changed to a look of half incredulous horror, \nwhich stiffened for a moment into one of pain, then changed again \ninto an imploring glance at Heaven, and so fell idly down with \nupturned eyes, like the dead stags' he had often peeped at when a \nlittle child: shrinking and shuddering--there was a dreadful thing \nto think of now!--and clinging to an apron as he looked!  He sank \nupon the ground, and grovelling down as if he would dig himself a \nplace to hide in, covered his face and ears: but no, no, no,--a \nhundred walls and roofs of brass would not shut out that bell, for \nin it spoke the wrathful voice of God, and from that voice, the \nwhole wide universe could not afford a refuge!\n\nWhile he rushed up and down, not knowing where to turn, and while \nhe lay crouching there, the work went briskly on indeed.  When \nthey left the Maypole, the rioters formed into a solid body, and \nadvanced at a quick pace towards the Warren.  Rumour of their \napproach having gone before, they found the garden-doors fast \nclosed, the windows made secure, and the house profoundly dark: not \na light being visible in any portion of the building.  After some \nfruitless ringing at the bells, and beating at the iron gates, they \ndrew off a few paces to reconnoitre, and confer upon the course it \nwould be best to take.\n\nVery little conference was needed, when all were bent upon one \ndesperate purpose, infuriated with liquor, and flushed with \nsuccessful riot.  The word being given to surround the house, some \nclimbed the gates, or dropped into the shallow trench and scaled \nthe garden wall, while others pulled down the solid iron fence, and \nwhile they made a breach to enter by, made deadly weapons of the \nbars.  The house being completely encircled, a small number of men \nwere despatched to break open a tool-shed in the garden; and during \ntheir absence on this errand, the remainder contented themselves \nwith knocking violently at the doors, and calling to those within, \nto come down and open them on peril of their lives.\n\nNo answer being returned to this repeated summons, and the \ndetachment who had been sent away, coming back with an accession of \npickaxes, spades, and hoes, they,--together with those who had such \narms already, or carried (as many did) axes, poles, and crowbars,--\nstruggled into the foremost rank, ready to beset the doors and \nwindows.  They had not at this time more than a dozen lighted \ntorches among them; but when these preparations were completed, \nflaming links were distributed and passed from hand to hand with \nsuch rapidity, that, in a minute's time, at least two-thirds of the \nwhole roaring mass bore, each man in his hand, a blazing brand.  \nWhirling these about their heads they raised a loud shout, and fell \nto work upon the doors and windows.\n\nAmidst the clattering of heavy blows, the rattling of broken glass, \nthe cries and execrations of the mob, and all the din and turmoil \nof the scene, Hugh and his friends kept together at the turret-door \nwhere Mr Haredale had last admitted him and old John Willet; and \nspent their united force on that.  It was a strong old oaken door, \nguarded by good bolts and a heavy bar, but it soon went crashing in \nupon the narrow stairs behind, and made, as it were, a platform to \nfacilitate their tearing up into the rooms above.  Almost at the \nsame moment, a dozen other points were forced, and at every one the \ncrowd poured in like water.\n\nA few armed servant-men were posted in the hall, and when the \nrioters forced an entrance there, they fired some half-a-dozen \nshots.  But these taking no effect, and the concourse coming on \nlike an army of devils, they only thought of consulting their own \nsafety, and retreated, echoing their assailants' cries, and hoping \nin the confusion to be taken for rioters themselves; in which \nstratagem they succeeded, with the exception of one old man who was \nnever heard of again, and was said to have had his brains beaten \nout with an iron bar (one of his fellows reported that he had seen \nthe old man fall), and to have been afterwards burnt in the flames.\n\nThe besiegers being now in complete possession of the house, spread \nthemselves over it from garret to cellar, and plied their demon \nlabours fiercely.  While some small parties kindled bonfires \nunderneath the windows, others broke up the furniture and cast the \nfragments down to feed the flames below; where the apertures in \nthe wall (windows no longer) were large enough, they threw out \ntables, chests of drawers, beds, mirrors, pictures, and flung them \nwhole into the fire; while every fresh addition to the blazing \nmasses was received with shouts, and howls, and yells, which added \nnew and dismal terrors to the conflagration.  Those who had axes \nand had spent their fury on the movables, chopped and tore down the \ndoors and window frames, broke up the flooring, hewed away the \nrafters, and buried men who lingered in the upper rooms, in heaps \nof ruins.  Some searched the drawers, the chests, the boxes, \nwriting-desks, and closets, for jewels, plate, and money; while \nothers, less mindful of gain and more mad for destruction, cast \ntheir whole contents into the courtyard without examination, and \ncalled to those below, to heap them on the blaze.  Men who had \nbeen into the cellars, and had staved the casks, rushed to and fro \nstark mad, setting fire to all they saw--often to the dresses of \ntheir own friends--and kindling the building in so many parts that \nsome had no time for escape, and were seen, with drooping hands and \nblackened faces, hanging senseless on the window-sills to which \nthey had crawled, until they were sucked and drawn into the \nburning gulf.  The more the fire crackled and raged, the wilder and \nmore cruel the men grew; as though moving in that element they \nbecame fiends, and changed their earthly nature for the qualities \nthat give delight in hell.\n\nThe burning pile, revealing rooms and passages red hot, through \ngaps made in the crumbling walls; the tributary fires that licked \nthe outer bricks and stones, with their long forked tongues, and \nran up to meet the glowing mass within; the shining of the flames \nupon the villains who looked on and fed them; the roaring of the \nangry blaze, so bright and high that it seemed in its rapacity to \nhave swallowed up the very smoke; the living flakes the wind bore \nrapidly away and hurried on with, like a storm of fiery snow; the \nnoiseless breaking of great beams of wood, which fell like feathers \non the heap of ashes, and crumbled in the very act to sparks and \npowder; the lurid tinge that overspread the sky, and the darkness, \nvery deep by contrast, which prevailed around; the exposure to the \ncoarse, common gaze, of every little nook which usages of home had \nmade a sacred place, and the destruction by rude hands of every \nlittle household favourite which old associations made a dear and \nprecious thing: all this taking place--not among pitying looks and \nfriendly murmurs of compassion, but brutal shouts and exultations, \nwhich seemed to make the very rats who stood by the old house too \nlong, creatures with some claim upon the pity and regard of those \nits roof had sheltered:--combined to form a scene never to be \nforgotten by those who saw it and were not actors in the work, so \nlong as life endured.\n\nAnd who were they?  The alarm-bell rang--and it was pulled by no \nfaint or hesitating hands--for a long time; but not a soul was \nseen.  Some of the insurgents said that when it ceased, they heard \nthe shrieks of women, and saw some garments fluttering in the air, \nas a party of men bore away no unresisting burdens.  No one could \nsay that this was true or false, in such an uproar; but where was \nHugh?  Who among them had seen him, since the forcing of the doors?  \nThe cry spread through the body.  Where was Hugh!\n\n'Here!' he hoarsely cried, appearing from the darkness; out of \nbreath, and blackened with the smoke.  'We have done all we can; \nthe fire is burning itself out; and even the corners where it \nhasn't spread, are nothing but heaps of ruins.  Disperse, my lads, \nwhile the coast's clear; get back by different ways; and meet as \nusual!'  With that, he disappeared again,--contrary to his wont, \nfor he was always first to advance, and last to go away,--leaving \nthem to follow homewards as they would.\n\nIt was not an easy task to draw off such a throng.  If Bedlam gates \nhad been flung wide open, there would not have issued forth such \nmaniacs as the frenzy of that night had made.  There were men \nthere, who danced and trampled on the beds of flowers as though \nthey trod down human enemies, and wrenched them from the stalks, \nlike savages who twisted human necks.  There were men who cast \ntheir lighted torches in the air, and suffered them to fall upon \ntheir heads and faces, blistering the skin with deep unseemly \nburns.  There were men who rushed up to the fire, and paddled in it \nwith their hands as if in water; and others who were restrained by \nforce from plunging in, to gratify their deadly longing.  On the \nskull of one drunken lad--not twenty, by his looks--who lay upon \nthe ground with a bottle to his mouth, the lead from the roof came \nstreaming down in a shower of liquid fire, white hot; melting his \nhead like wax.  When the scattered parties were collected, men--\nliving yet, but singed as with hot irons--were plucked out of the \ncellars, and carried off upon the shoulders of others, who strove \nto wake them as they went along, with ribald jokes, and left them, \ndead, in the passages of hospitals.  But of all the howling throng \nnot one learnt mercy from, or sickened at, these sights; nor was \nthe fierce, besotted, senseless rage of one man glutted.\n\nSlowly, and in small clusters, with hoarse hurrahs and repetitions \nof their usual cry, the assembly dropped away.  The last few red-\neyed stragglers reeled after those who had gone before; the distant \nnoise of men calling to each other, and whistling for others whom \nthey missed, grew fainter and fainter; at length even these sounds \ndied away, and silence reigned alone.\n\nSilence indeed!  The glare of the flames had sunk into a fitful, \nflashing light; and the gentle stars, invisible till now, looked \ndown upon the blackening heap.  A dull smoke hung upon the ruin, as \nthough to hide it from those eyes of Heaven; and the wind forbore \nto move it.  Bare walls, roof open to the sky--chambers, where the \nbeloved dead had, many and many a fair day, risen to new life and \nenergy; where so many dear ones had been sad and merry; which were \nconnected with so many thoughts and hopes, regrets and changes--all \ngone.  Nothing left but a dull and dreary blank--a smouldering heap \nof dust and ashes--the silence and solitude of utter desolation.\n\n\n\nChapter 56\n\n\nThe Maypole cronies, little drearning of the change so soon to come \nupon their favourite haunt, struck through the Forest path upon \ntheir way to London; and avoiding the main road, which was hot and \ndusty, kept to the by-paths and the fields.  As they drew nearer to \ntheir destination, they began to make inquiries of the people whom \nthey passed, concerning the riots, and the truth or falsehood of \nthe stories they had heard.  The answers went far beyond any \nintelligence that had spread to quiet Chigwell.  One man told them \nthat that afternoon the Guards, conveying to Newgate some rioters \nwho had been re-examined, had been set upon by the mob and \ncompelled to retreat; another, that the houses of two witnesses \nnear Clare Market were about to be pulled down when he came away; \nanother, that Sir George Saville's house in Leicester Fields was to \nbe burned that night, and that it would go hard with Sir George if \nhe fell into the people's hands, as it was he who had brought in \nthe Catholic bill.  All accounts agreed that the mob were out, in \nstronger numbers and more numerous parties than had yet appeared; \nthat the streets were unsafe; that no man's house or life was worth \nan hour's purchase; that the public consternation was increasing \nevery moment; and that many families had already fled the city.  \nOne fellow who wore the popular colour, damned them for not having \ncockades in their hats, and bade them set a good watch to-morrow \nnight upon their prison doors, for the locks would have a \nstraining; another asked if they were fire-proof, that they \nwalked abroad without the distinguishing mark of all good and true \nmen;--and a third who rode on horseback, and was quite alone, \nordered them to throw each man a shilling, in his hat, towards the \nsupport of the rioters.  Although they were afraid to refuse \ncompliance with this demand, and were much alarmed by these \nreports, they agreed, having come so far, to go forward, and see \nthe real state of things with their own eyes.  So they pushed on \nquicker, as men do who are excited by portentous news; and \nruminating on what they had heard, spoke little to each other.\n\nIt was now night, and as they came nearer to the city they had \ndismal confirmation of this intelligence in three great fires, all \nclose together, which burnt fiercely and were gloomily reflected in \nthe sky.  Arriving in the immediate suburbs, they found that almost \nevery house had chalked upon its door in large characters 'No \nPopery,' that the shops were shut, and that alarm and anxiety were \ndepicted in every face they passed.\n\nNoting these things with a degree of apprehension which neither of \nthe three cared to impart, in its full extent, to his companions, \nthey came to a turnpike-gate, which was shut.  They were passing \nthrough the turnstile on the path, when a horseman rode up from \nLondon at a hard gallop, and called to the toll-keeper in a voice \nof great agitation, to open quickly in the name of God.\n\nThe adjuration was so earnest and vehement, that the man, with a \nlantern in his hand, came running out--toll-keeper though he was--\nand was about to throw the gate open, when happening to look behind \nhim, he exclaimed, 'Good Heaven, what's that!  Another fire!'\n\nAt this, the three turned their heads, and saw in the distance--\nstraight in the direction whence they had come--a broad sheet of \nflame, casting a threatening light upon the clouds, which glimmered \nas though the conflagration were behind them, and showed like a \nwrathful sunset.\n\n'My mind misgives me,' said the horseman, 'or I know from what far \nbuilding those flames come.  Don't stand aghast, my good fellow.  \nOpen the gate!'\n\n'Sir,' cried the man, laying his hand upon his horse's bridle as he \nlet him through: 'I know you now, sir; be advised by me; do not go \non.  I saw them pass, and know what kind of men they are.  You will \nbe murdered.'\n\n'So be it!' said the horseman, looking intently towards the fire, \nand not at him who spoke.\n\n'But sir--sir,' cried the man, grasping at his rein more tightly \nyet, 'if you do go on, wear the blue riband.  Here, sir,' he added, \ntaking one from his own hat, 'it's necessity, not choice, that \nmakes me wear it; it's love of life and home, sir.  Wear it for \nthis one night, sir; only for this one night.'\n\n'Do!' cried the three friends, pressing round his horse.  'Mr \nHaredale--worthy sir--good gentleman--pray be persuaded.'\n\n'Who's that?' cried Mr Haredale, stooping down to look.  'Did I \nhear Daisy's voice?'\n\n'You did, sir,' cried the little man.  'Do be persuaded, sir.  This \ngentleman says very true.  Your life may hang upon it.'\n\n'Are you,' said Mr Haredale abruptly, 'afraid to come with me?'\n\n'I, sir?--N-n-no.'\n\n'Put that riband in your hat.  If we meet the rioters, swear that I \ntook you prisoner for wearing it.  I will tell them so with my own \nlips; for as I hope for mercy when I die, I will take no quarter \nfrom them, nor shall they have quarter from me, if we come hand to \nhand to-night.  Up here--behind me--quick!  Clasp me tight round \nthe body, and fear nothing.'\n\nIn an instant they were riding away, at full gallop, in a dense \ncloud of dust, and speeding on, like hunters in a dream.\n\nIt was well the good horse knew the road he traversed, for never \nonce--no, never once in all the journey--did Mr Haredale cast his \neyes upon the ground, or turn them, for an instant, from the light \ntowards which they sped so madly.  Once he said in a low voice, 'It \nis my house,' but that was the only time he spoke.  When they came \nto dark and doubtful places, he never forgot to put his hand upon \nthe little man to hold him more securely in his seat, but he kept \nhis head erect and his eyes fixed on the fire, then, and always.\n\nThe road was dangerous enough, for they went the nearest way--\nheadlong--far from the highway--by lonely lanes and paths, where \nwaggon-wheels had worn deep ruts; where hedge and ditch hemmed in \nthe narrow strip of ground; and tall trees, arching overhead, made \nit profoundly dark.  But on, on, on, with neither stop nor stumble, \ntill they reached the Maypole door, and could plainly see that the \nfire began to fade, as if for want of fuel.\n\n'Down--for one moment--for but one moment,' said Mr Haredale, \nhelping Daisy to the ground, and following himself.  'Willet--\nWillet--where are my niece and servants--Willet!'\n\nCrying to him distractedly, he rushed into the bar.--The landlord \nbound and fastened to his chair; the place dismantled, stripped, \nand pulled about his ears;--nobody could have taken shelter here.\n\nHe was a strong man, accustomed to restrain himself, and suppress \nhis strong emotions; but this preparation for what was to follow--\nthough he had seen that fire burning, and knew that his house must \nbe razed to the ground--was more than he could bear.  He covered \nhis face with his hands for a moment, and turned away his head.\n\n'Johnny, Johnny,' said Solomon--and the simple-hearted fellow \ncried outright, and wrung his hands--'Oh dear old Johnny, here's a \nchange!  That the Maypole bar should come to this, and we should \nlive to see it!  The old Warren too, Johnny--Mr Haredale--oh, \nJohnny, what a piteous sight this is!'\n\nPointing to Mr Haredale as he said these words, little Solomon \nDaisy put his elbows on the back of Mr Willet's chair, and fairly \nblubbered on his shoulder.\n\nWhile Solomon was speaking, old John sat, mute as a stock-fish, \nstaring at him with an unearthly glare, and displaying, by every \npossible symptom, entire and complete unconsciousness.  But when \nSolomon was silent again, John followed,with his great round eyes, \nthe direction of his looks, and did appear to have some dawning \ndistant notion that somebody had come to see him.\n\n'You know us, don't you, Johnny?' said the little clerk, rapping \nhimself on the breast.  'Daisy, you know--Chigwell Church--bell-\nringer--little desk on Sundays--eh, Johnny?'\n\nMr Willet reflected for a few moments, and then muttered, as it \nwere mechanically: 'Let us sing to the praise and glory of--'\n\n'Yes, to be sure,' cried the little man, hastily; 'that's it--\nthat's me, Johnny.  You're all right now, an't you?  Say you're all \nright, Johnny.'\n\n'All right?' pondered Mr Willet, as if that were a matter entirely \nbetween himself and his conscience.  'All right?  Ah!'\n\n'They haven't been misusing you with sticks, or pokers, or any \nother blunt instruments--have they, Johnny?' asked Solomon, with a \nvery anxious glance at Mr Willet's head.  'They didn't beat you, \ndid they?'\n\nJohn knitted his brow; looked downwards, as if he were mentally \nengaged in some arithmetical calculation; then upwards, as if the \ntotal would not come at his call; then at Solomon Daisy, from his \neyebrow to his shoe-buckle; then very slowly round the bar.  And \nthen a great, round, leaden-looking, and not at all transparent \ntear, came rolling out of each eye, and he said, as he shook his \nhead:\n\n'If they'd only had the goodness to murder me, I'd have thanked 'em \nkindly.'\n\n'No, no, no, don't say that, Johnny,' whimpered his little friend.  \n'It's very, very bad, but not quite so bad as that.  No, no!'\n\n'Look'ee here, sir!' cried John, turning his rueful eyes on Mr \nHaredale, who had dropped on one knee, and was hastily beginning to \nuntie his bonds.  'Look'ee here, sir!  The very Maypole--the old \ndumb Maypole--stares in at the winder, as if it said, \"John Willet, \nJohn Willet, let's go and pitch ourselves in the nighest pool of \nwater as is deep enough to hold us; for our day is over!\"'\n\n'Don't, Johnny, don't,' cried his friend: no less affected with \nthis mournful effort of Mr Willet's imagination, than by the \nsepulchral tone in which he had spoken of the Maypole.  'Please \ndon't, Johnny!'\n\n'Your loss is great, and your misfortune a heavy one,' said Mr \nHaredale, looking restlessly towards the door: 'and this is not a \ntime to comfort you.  If it were, I am in no condition to do so.  \nBefore I leave you, tell me one thing, and try to tell me plainly, \nI implore you.  Have you seen, or heard of Emma?'\n\n'No!' said Mr Willet.\n\n'Nor any one but these bloodhounds?'\n\n'No!'\n\n'They rode away, I trust in Heaven, before these dreadful scenes \nbegan,' said Mr Haredale, who, between his agitation, his eagerness \nto mount his horse again, and the dexterity with which the cords \nwere tied, had scarcely yet undone one knot.  'A knife, Daisy!'\n\n'You didn't,' said John, looking about, as though he had lost his \npocket-handkerchief, or some such slight article--'either of you \ngentlemen--see a--a coffin anywheres, did you?'\n\n'Willet!' cried Mr Haredale.  Solomon dropped the knife, and \ninstantly becoming limp from head to foot, exclaimed 'Good \ngracious!'\n\n'--Because,' said John, not at all regarding them, 'a dead man \ncalled a little time ago, on his way yonder.  I could have told you \nwhat name was on the plate, if he had brought his coffin with him, \nand left it behind.  If he didn't, it don't signify.'\n\nHis landlord, who had listened to these words with breathless \nattention, started that moment to his feet; and, without a word, \ndrew Solomon Daisy to the door, mounted his horse, took him up \nbehind again, and flew rather than galloped towards the pile of \nruins, which that day's sun had shone upon, a stately house.  Mr \nWillet stared after them, listened, looked down upon himself to \nmake quite sure that he was still unbound, and, without any \nmanifestation of impatience, disappointment, or surprise, gently \nrelapsed into the condition from which he had so imperfectly \nrecovered.\n\nMr Haredale tied his horse to the trunk of a tree, and grasping his \ncompanion's arm, stole softly along the footpath, and into what had \nbeen the garden of his house.  He stopped for an instant to look \nupon its smoking walls, and at the stars that shone through roof \nand floor upon the heap of crumbling ashes.  Solomon glanced \ntimidly in his face, but his lips were tightly pressed together, a \nresolute and stern expression sat upon his brow, and not a tear, a \nlook, or gesture indicating grief, escaped him.\n\nHe drew his sword; felt for a moment in his breast, as though he \ncarried other arms about him; then grasping Solomon by the wrist \nagain, went with a cautious step all round the house.  He looked \ninto every doorway and gap in the wall; retraced his steps at every \nrustling of the air among the leaves; and searched in every \nshadowed nook with outstretched hands.  Thus they made the circuit \nof the building: but they returned to the spot from which they had \nset out, without encountering any human being, or finding the least \ntrace of any concealed straggler.\n\nAfter a short pause, Mr Haredale shouted twice or thrice.  Then \ncried aloud, 'Is there any one in hiding here, who knows my voice!  \nThere is nothing to fear now.  If any of my people are near, I \nentreat them to answer!'  He called them all by name; his voice was \nechoed in many mournful tones; then all was silent as before.\n\nThey were standing near the foot of the turret, where the alarm-\nbell hung.  The fire had raged there, and the floors had been sawn, \nand hewn, and beaten down, besides.  It was open to the night; but \na part of the staircase still remained, winding upward from a great \nmound of dust and cinders.  Fragments of the jagged and broken \nsteps offered an insecure and giddy footing here and there, and \nthen were lost again, behind protruding angles of the wall, or in \nthe deep shadows cast upon it by other portions of the ruin; for by \nthis time the moon had risen, and shone brightly.\n\nAs they stood here, listening to the echoes as they died away, and \nhoping in vain to hear a voice they knew, some of the ashes in this \nturret slipped and rolled down.  Startled by the least noise in \nthat melancholy place, Solomon looked up in his companion's face, \nand saw that he had turned towards the spot, and that he watched \nand listened keenly.\n\nHe covered the little man's mouth with his hand, and looked again.  \nInstantly, with kindling eyes, he bade him on his life keep still, \nand neither speak nor move.  Then holding his breath, and stooping \ndown, he stole into the turret, with his drawn sword in his hand, \nand disappeared.\n\nTerrified to be left there by himself, under such desolate \ncircumstances, and after all he had seen and heard that night, \nSolomon would have followed, but there had been something in Mr \nHaredale's manner and his look, the recollection of which held him \nspellbound.  He stood rooted to the spot; and scarcely venturing to \nbreathe, looked up with mingled fear and wonder.\n\nAgain the ashes slipped and rolled--very, very softly--again--and \nthen again, as though they crumbled underneath the tread of a \nstealthy foot.  And now a figure was dimly visible; climbing very \nsoftly; and often stopping to look down; now it pursued its \ndifficult way; and now it was hidden from the view again.\n\nIt emerged once more, into the shadowy and uncertain light--higher \nnow, but not much, for the way was steep and toilsome, and its \nprogress very slow.  What phantom of the brain did he pursue; and \nwhy did he look down so constantly?  He knew he was alone.  Surely \nhis mind was not affected by that night's loss and agony.  He was \nnot about to throw himself headlong from the summit of the \ntottering wall.  Solomon turned sick, and clasped his hands.  His \nlimbs trembled beneath him, and a cold sweat broke out upon his \npallid face.\n\nIf he complied with Mr Haredale's last injunction now, it was \nbecause he had not the power to speak or move.  He strained his \ngaze, and fixed it on a patch of moonlight, into which, if he \ncontinued to ascend, he must soon emerge.  When he appeared there, \nhe would try to call to him.\n\nAgain the ashes slipped and crumbled; some stones rolled down, and \nfell with a dull, heavy sound upon the ground below.  He kept his \neyes upon the piece of moonlight.  The figure was coming on, for \nits shadow was already thrown upon the wall.  Now it appeared--and \nnow looked round at him--and now--\n\nThe horror-stricken clerk uttered a scream that pierced the air, \nand cried, 'The ghost!  The ghost!'\n\nLong before the echo of his cry had died away, another form rushed \nout into the light, flung itself upon the foremost one, knelt down \nupon its breast, and clutched its throat with both hands.\n\n'Villain!' cried Mr Haredale, in a terrible voice--for it was he.  \n'Dead and buried, as all men supposed through your infernal arts, \nbut reserved by Heaven for this--at last--at last I have you.  You, \nwhose hands are red with my brother's blood, and that of his \nfaithful servant, shed to conceal your own atrocious guilt--You, \nRudge, double murderer and monster, I arrest you in the name of \nGod, who has delivered you into my hands.  No.  Though you had the \nstrength of twenty men,' he added, as the murderer writhed and \nstruggled, you could not escape me or loosen my grasp to-night!'\n\n\n\nChapter 57\n\n\nBarnaby, armed as we have seen, continued to pace up and down \nbefore the stable-door; glad to be alone again, and heartily \nrejoicing in the unaccustomed silence and tranquillity.  After the \nwhirl of noise and riot in which the last two days had been passed, \nthe pleasures of solitude and peace were enhanced a thousandfold.  \nHe felt quite happy; and as he leaned upon his staff and mused, a \nbright smile overspread his face, and none but cheerful visions \nfloated into his brain.\n\nHad he no thoughts of her, whose sole delight he was, and whom he \nhad unconsciously plunged in such bitter sorrow and such deep \naffliction?  Oh, yes.  She was at the heart of all his cheerful \nhopes and proud reflections.  It was she whom all this honour and \ndistinction were to gladden; the joy and profit were for her.  What \ndelight it gave her to hear of the bravery of her poor boy!  Ah!  \nHe would have known that, without Hugh's telling him.  And what a \nprecious thing it was to know she lived so happily, and heard with \nso much pride (he pictured to himself her look when they told her) \nthat he was in such high esteem: bold among the boldest, and \ntrusted before them all!  And when these frays were over, and the \ngood lord had conquered his enemies, and they were all at peace \nagain, and he and she were rich, what happiness they would have in \ntalking of these troubled times when he was a great soldier: and \nwhen they sat alone together in the tranquil twilight, and she had \nno longer reason to be anxious for the morrow, what pleasure would \nhe have in the reflection that this was his doing--his--poor \nfoolish Barnaby's; and in patting her on the cheek, and saying with \na merry laugh, 'Am I silly now, mother--am I silly now?'\n\nWith a lighter heart and step, and eyes the brighter for the happy \ntear that dimmed them for a moment, Barnaby resumed his walk; and \nsinging gaily to himself, kept guard upon his quiet post.\n\nHis comrade Grip, the partner of his watch, though fond of basking \nin the sunshine, preferred to-day to walk about the stable; having \na great deal to do in the way of scattering the straw, hiding under \nit such small articles as had been casually left about, and \nhaunting Hugh's bed, to which he seemed to have taken a particular \nattachment.  Sometimes Barnaby looked in and called him, and then \nhe came hopping out; but he merely did this as a concession to his \nmaster's weakness, and soon returned again to his own grave \npursuits: peering into the straw with his bill, and rapidly \ncovering up the place, as if, Midas-like, he were whispering \nsecrets to the earth and burying them; constantly busying himself \nupon the sly; and affecting, whenever Barnaby came past, to look up \nin the clouds and have nothing whatever on his mind: in short, \nconducting himself, in many respects, in a more than usually \nthoughtful, deep, and mysterious manner.\n\nAs the day crept on, Barnaby, who had no directions forbidding him \nto eat and drink upon his post, but had been, on the contrary, \nsupplied with a bottle of beer and a basket of provisions, \ndetermined to break his fast, which he had not done since morning.  \nTo this end, he sat down on the ground before the door, and putting \nhis staff across his knees in case of alarm or surprise, summoned \nGrip to dinner.\n\nThis call, the bird obeyed with great alacrity; crying, as he \nsidled up to his master, 'I'm a devil, I'm a Polly, I'm a kettle, \nI'm a Protestant, No Popery!'  Having learnt this latter sentiment \nfrom the gentry among whom he had lived of late, he delivered it \nwith uncommon emphasis.\n\n'Well said, Grip!' cried his master, as he fed him with the \ndaintiest bits.  'Well said, old boy!'\n\n'Never say die, bow wow wow, keep up your spirits, Grip Grip Grip, \nHolloa!  We'll all have tea, I'm a Protestant kettle, No Popery!' \ncried the raven.\n\n'Gordon for ever, Grip!' cried Barnaby.\n\nThe raven, placing his head upon the ground, looked at his master \nsideways, as though he would have said, 'Say that again!'  \nPerfectly understanding his desire, Barnaby repeated the phrase a \ngreat many times.  The bird listened with profound attention; \nsometimes repeating the popular cry in a low voice, as if to \ncompare the two, and try if it would at all help him to this new \naccomplishment; sometimes flapping his wings, or barking; and \nsometimes in a kind of desperation drawing a multitude of corks, \nwith extraordinary viciousness.\n\nBarnaby was so intent upon his favourite, that he was not at first \naware of the approach of two persons on horseback, who were riding \nat a foot-pace, and coming straight towards his post.  When he \nperceived them, however, which he did when they were within some \nfifty yards of him, he jumped hastily up, and ordering Grip within \ndoors, stood with both hands on his staff, waiting until he should \nknow whether they were friends or foes.\n\nHe had hardly done so, when he observed that those who advanced \nwere a gentleman and his servant; almost at the same moment he \nrecognised Lord George Gordon, before whom he stood uncovered, with \nhis eyes turned towards the ground.\n\n'Good day!' said Lord George, not reining in his horse until he was \nclose beside him.  'Well!'\n\n'All quiet, sir, all safe!' cried Barnaby.  'The rest are away--\nthey went by that path--that one.  A grand party!'\n\n'Ay?' said Lord George, looking thoughtfully at him.  'And you?'\n\n'Oh!  They left me here to watch--to mount guard--to keep \neverything secure till they come back.  I'll do it, sir, for your \nsake.  You're a good gentleman; a kind gentleman--ay, you are.  \nThere are many against you, but we'll be a match for them, never \nfear!'\n\n'What's that?' said Lord George--pointing to the raven who was \npeeping out of the stable-door--but still looking thoughtfully, and \nin some perplexity, it seemed, at Barnaby.\n\n'Why, don't you know!' retorted Barnaby, with a wondering laugh.  \n'Not know what HE is!  A bird, to be sure.  My bird--my friend--\nGrip.'\n\n'A devil, a kettle, a Grip, a Polly, a Protestant, no Popery!' \ncried the raven.\n\n'Though, indeed,' added Barnaby, laying his hand upon the neck of \nLord George's horse, and speaking softly: 'you had good reason to \nask me what he is, for sometimes it puzzles me--and I am used to \nhim--to think he's only a bird.  He's my brother, Grip is--always \nwith me--always talking--always merry--eh, Grip?'\n\nThe raven answered by an affectionate croak, and hopping on his \nmaster's arm, which he held downward for that purpose, submitted \nwith an air of perfect indifference to be fondled, and turned his \nrestless, curious eye, now upon Lord George, and now upon his man.\n\nLord George, biting his nails in a discomfited manner, regarded \nBarnaby for some time in silence; then beckoning to his servant, \nsaid:\n\n'Come hither, John.'\n\nJohn Grueby touched his hat, and came.\n\n'Have you ever seen this young man before?' his master asked in a \nlow voice.\n\n'Twice, my lord,' said John.  'I saw him in the crowd last night \nand Saturday.'\n\n'Did--did it seem to you that his manner was at all wild or \nstrange?' Lord George demanded, faltering.\n\n'Mad,' said John, with emphatic brevity.\n\n'And why do you think him mad, sir?' said his master, speaking in a \npeevish tone.  'Don't use that word too freely.  Why do you think \nhim mad?'\n\n'My lord,' John Grueby answered, 'look at his dress, look at his \neyes, look at his restless way, hear him cry \"No Popery!\"  Mad, my \nlord.'\n\n'So because one man dresses unlike another,' returned his angry \nmaster, glancing at himself; 'and happens to differ from other men \nin his carriage and manner, and to advocate a great cause which the \ncorrupt and irreligious desert, he is to be accounted mad, is he?'\n\n'Stark, staring, raving, roaring mad, my lord,' returned the \nunmoved John.\n\n'Do you say this to my face?' cried his master, turning sharply \nupon him.\n\n'To any man, my lord, who asks me,' answered John.\n\n'Mr Gashford, I find, was right,' said Lord George; 'I thought him \nprejudiced, though I ought to have known a man like him better than \nto have supposed it possible!'\n\n'I shall never have Mr Gashford's good word, my lord,' replied \nJohn, touching his hat respectfully, 'and I don't covet it.'\n\n'You are an ill-conditioned, most ungrateful fellow,' said Lord \nGeorge: 'a spy, for anything I know.  Mr Gashford is perfectly \ncorrect, as I might have felt convinced he was.  I have done wrong \nto retain you in my service.  It is a tacit insult to him as my \nchoice and confidential friend to do so, remembering the cause you \nsided with, on the day he was maligned at Westminster.  You will \nleave me to-night--nay, as soon as we reach home.  The sooner the \nbetter.'\n\n'If it comes to that, I say so too, my lord.  Let Mr Gashford have \nhis will.  As to my being a spy, my lord, you know me better than \nto believe it, I am sure.  I don't know much about causes.  My \ncause is the cause of one man against two hundred; and I hope it \nalways will be.'\n\n'You have said quite enough,' returned Lord George, motioning him \nto go back.  'I desire to hear no more.'\n\n'If you'll let me have another word, my lord,' returned John \nGrueby, 'I'd give this silly fellow a caution not to stay here by \nhimself.  The proclamation is in a good many hands already, and \nit's well known that he was concerned in the business it relates \nto.  He had better get to a place of safety if he can, poor \ncreature.'\n\n'You hear what this man says?' cried Lord George, addressing \nBarnaby, who had looked on and wondered while this dialogue passed.  \n'He thinks you may be afraid to remain upon your post, and are kept \nhere perhaps against your will.  What do you say?'\n\n'I think, young man,' said John, in explanation, 'that the soldiers \nmay turn out and take you; and that if they do, you will certainly \nbe hung by the neck till you're dead--dead--dead.  And I think you \nhad better go from here, as fast as you can.  That's what I think.'\n\n'He's a coward, Grip, a coward!' cried Barnaby, putting the raven \non the ground, and shouldering his staff.  'Let them come!  Gordon \nfor ever!  Let them come!'\n\n'Ay!' said Lord George, 'let them!  Let us see who will venture to \nattack a power like ours; the solemn league of a whole people.  \nTHIS a madman!  You have said well, very well.  I am proud to be \nthe leader of such men as you.'\n\nBamaby's heart swelled within his bosom as he heard these words.  \nHe took Lord George's hand and carried it to his lips; patted his \nhorse's crest, as if the affection and admiration he had conceived \nfor the man extended to the animal he rode; then unfurling his \nflag, and proudly waving it, resumed his pacing up and down.\n\nLord George, with a kindling eye and glowing cheek, took off his \nhat, and flourishing it above his head, bade him exultingly \nFarewell!--then cantered off at a brisk pace; after glancing \nangrily round to see that his servant followed.  Honest John set \nspurs to his horse and rode after his master, but not before he had \nagain warned Barnaby to retreat, with many significant gestures, \nwhich indeed he continued to make, and Barnaby to resist, until the \nwindings of the road concealed them from each other's view.\n\nLeft to himself again with a still higher sense of the importance \nof his post, and stimulated to enthusiasm by the special notice and \nencouragement of his leader, Barnaby walked to and fro in a \ndelicious trance rather than as a waking man.  The sunshine which \nprevailed around was in his mind.  He had but one desire \nungratified.  If she could only see him now!\n\nThe day wore on; its heat was gently giving place to the cool of \nevening; a light wind sprung up, fanning his long hair, and making \nthe banner rustle pleasantly above his head.  There was a freedom \nand freshness in the sound and in the time, which chimed exactly \nwith his mood.  He was happier than ever.\n\nHe was leaning on his staff looking towards the declining sun, and \nreflecting with a smile that he stood sentinel at that moment over \nburied gold, when two or three figures appeared in the distance, \nmaking towards the house at a rapid pace, and motioning with their \nhands as though they urged its inmates to retreat from some \napproaching danger.  As they drew nearer, they became more earnest \nin their gestures; and they were no sooner within hearing, than the \nforemost among them cried that the soldiers were coming up.\n\nAt these words, Barnaby furled his flag, and tied it round the \npole.  His heart beat high while he did so, but he had no more fear \nor thought of retreating than the pole itself.  The friendly \nstragglers hurried past him, after giving him notice of his danger, \nand quickly passed into the house, where the utmost confusion \nimmediately prevailed.  As those within hastily closed the windows \nand the doors, they urged him by looks and signs to fly without \nloss of time, and called to him many times to do so; but he only \nshook his head indignantly in answer, and stood the firmer on his \npost.  Finding that he was not to be persuaded, they took care of \nthemselves; and leaving the place with only one old woman in it, \nspeedily withdrew.\n\nAs yet there had been no symptom of the news having any better \nfoundation than in the fears of those who brought it, but The Boot \nhad not been deserted five minutes, when there appeared, coming \nacross the fields, a body of men who, it was easy to see, by the \nglitter of their arms and ornaments in the sun, and by their \norderly and regular mode of advancing--for they came on as one \nman--were soldiers.  In a very little time, Barnaby knew that they \nwere a strong detachment of the Foot Guards, having along with them \ntwo gentlemen in private clothes, and a small party of Horse; the \nlatter brought up the rear, and were not in number more than six or \neight.\n\nThey advanced steadily; neither quickening their pace as they came \nnearer, nor raising any cry, nor showing the least emotion or \nanxiety.  Though this was a matter of course in the case of regular \ntroops, even to Barnaby, there was something particularly \nimpressive and disconcerting in it to one accustomed to the noise \nand tumult of an undisciplined mob.  For all that, he stood his \nground not a whit the less resolutely, and looked on undismayed.\n\nPresently, they marched into the yard, and halted.  The \ncommanding-officer despatched a messenger to the horsemen, one of \nwhom came riding back.  Some words passed between them, and they \nglanced at Barnaby; who well remembered the man he had unhorsed at \nWestminster, and saw him now before his eyes.  The man being \nspeedily dismissed, saluted, and rode back to his comrades, who \nwere drawn up apart at a short distance.\n\nThe officer then gave the word to prime and load.  The heavy \nringing of the musket-stocks upon the ground, and the sharp and \nrapid rattling of the ramrods in their barrels, were a kind of \nrelief to Batnahy, deadly though he knew the purport of such sounds \nto be.  When this was done, other commands were given, and the \nsoldiers instantaneously formed in single file all round the house \nand stables; completely encircling them in every part, at a \ndistance, perhaps, of some half-dozen yards; at least that seemed \nin Barnaby's eyes to be about the space left between himself and \nthose who confronted him.  The horsemen remained drawn up by \nthemselves as before.\n\nThe two gentlemen in private clothes who had kept aloof, now rode \nforward, one on either side the officer.  The proclamation having \nbeen produced and read by one of them, the officer called on \nBarnaby to surrender.\n\nHe made no answer, but stepping within the door, before which he \nhad kept guard, held his pole crosswise to protect it.  In the \nmidst of a profound silence, he was again called upon to yield.\n\nStill he offered no reply.  Indeed he had enough to do, to run his \neye backward and forward along the half-dozen men who immediately \nfronted him, and settle hurriedly within himself at which of them \nhe would strike first, when they pressed on him.  He caught the eye \nof one in the centre, and resolved to hew that fellow down, though \nhe died for it.\n\nAgain there was a dead silence, and again the same voice called \nupon him to deliver himself up.\n\nNext moment he was back in the stable, dealing blows about him like \na madman.  Two of the men lay stretched at his feet: the one he \nhad marked, dropped first--he had a thought for that, even in the \nhot blood and hurry of the struggle.  Another blow--another!  Down, \nmastered, wounded in the breast by a heavy blow from the butt-end \nof a gun (he saw the weapon in the act of falling)--breathless--and \na prisoner.\n\nAn exclamation of surprise from the officer recalled him, in some \ndegree, to himself.  He looked round.  Grip, after working in \nsecret all the afternoon, and with redoubled vigour while \neverybody's attention was distracted, had plucked away the straw \nfrom Hugh's bed, and turned up the loose ground with his iron bill.  \nThe hole had been recklessly filled to the brim, and was merely \nsprinkled with earth.  Golden cups, spoons, candlesticks, coined \nguineas--all the riches were revealed.\n\nThey brought spades and a sack; dug up everything that was hidden \nthere; and carried away more than two men could lift.  They \nhandcuffed him and bound his arms, searched him, and took away all \nhe had.  Nobody questioned or reproached him, or seemed to have \nmuch curiosity about him.  The two men he had stunned, were carried \noff by their companions in the same business-like way in which \neverything else was done.  Finally, he was left under a guard of \nfour soldiers with fixed bayonets, while the officer directed in \nperson the search of the house and the other buildings connected \nwith it.\n\nThis was soon completed.  The soldiers formed again in the yard; he \nwas marched out, with his guard about him; and ordered to fall in, \nwhere a space was left.  The others closed up all round, and so \nthey moved away, with the prisoner in the centre.\n\nWhen they came into the streets, he felt he was a sight; and \nlooking up as they passed quickly along, could see people running \nto the windows a little too late, and throwing up the sashes to \nlook after him.  Sometimes he met a staring face beyond the heads \nabout him, or under the arms of his conductors, or peering down \nupon him from a waggon-top or coach-box; but this was all he saw, \nbeing surrounded by so many men.  The very noises of the streets \nseemed muffled and subdued; and the air came stale and hot upon \nhim, like the sickly breath of an oven.\n\nTramp, tramp.  Tramp, tramp.  Heads erect, shoulders square, every \nman stepping in exact time--all so orderly and regular--nobody \nlooking at him--nobody seeming conscious of his presence,--he could \nhardly believe he was a Prisoner.  But at the word, though only \nthought, not spoken, he felt the handcuffs galling his wrists, the \ncord pressing his arms to his sides: the loaded guns levelled at \nhis head; and those cold, bright, sharp, shining points turned \ntowards him: the mere looking down at which, now that he was bound \nand helpless, made the warm current of his life run cold.\n\n\n\nChapter 58\n\n\nThey were not long in reaching the barracks, for the officer who \ncommanded the party was desirous to avoid rousing the people by the \ndisplay of military force in the streets, and was humanely anxious \nto give as little opportunity as possible for any attempt at \nrescue; knowing that it must lead to bloodshed and loss of life, \nand that if the civil authorities by whom he was accompanied, \nempowered him to order his men to fire, many innocent persons would \nprobably fall, whom curiosity or idleness had attracted to the \nspot.  He therefore led the party briskly on, avoiding with a \nmerciful prudence the more public and crowded thoroughfares, and \npursuing those which he deemed least likely to be infested by \ndisorderly persons.  This wise proceeding not only enabled them to \ngain their quarters without any interruption, but completely \nbaffled a body of rioters who had assembled in one of the main \nstreets, through which it was considered certain they would pass, \nand who remained gathered together for the purpose of releasing the \nprisoner from their hands, long after they had deposited him in a \nplace of security, closed the barrack-gates, and set a double guard \nat every entrance for its better protection.\n\nArrived at this place, poor Barnaby was marched into a stone-\nfloored room, where there was a very powerful smell of tobacco, a \nstrong thorough draught of air, and a great wooden bedstead, large \nenough for a score of men.  Several soldiers in undress were \nlounging about, or eating from tin cans; military accoutrements \ndangled on rows of pegs along the whitewashed wall; and some half-\ndozen men lay fast asleep upon their backs, snoring in concert.  \nAfter remaining here just long enough to note these things, he was \nmarched out again, and conveyed across the parade-ground to another \nportion of the building.\n\nPerhaps a man never sees so much at a glance as when he is in a \nsituation of extremity.  The chances are a hundred to one, that if \nBarnaby had lounged in at the gate to look about him, he would have \nlounged out again with a very imperfect idea of the place, and \nwould have remembered very little about it.  But as he was taken \nhandcuffed across the gravelled area, nothing escaped his notice.  \nThe dry, arid look of the dusty square, and of the bare brick \nbuilding; the clothes hanging at some of the windows; and the men \nin their shirt-sleeves and braces, lolling with half their bodies \nout of the others; the green sun-blinds at the officers' quarters, \nand the little scanty trees in front; the drummer-boys practising \nin a distant courtyard; the men at drill on the parade; the two \nsoldiers carrying a basket between them, who winked to each other \nas he went by, and slily pointed to their throats; the spruce \nserjeant who hurried past with a cane in his hand, and under his \narm a clasped book with a vellum cover; the fellows in the ground-\nfloor rooms, furbishing and brushing up their different articles of \ndress, who stopped to look at him, and whose voices as they spoke \ntogether echoed loudly through the empty galleries and passages;--\neverything, down to the stand of muskets before the guard-house, \nand the drum with a pipe-clayed belt attached, in one corner, \nimpressed itself upon his observation, as though he had noticed \nthem in the same place a hundred times, or had been a whole day \namong them, in place of one brief hurried minute.\n\nHe was taken into a small paved back yard, and there they opened a \ngreat door, plated with iron, and pierced some five feet above the \nground with a few holes to let in air and light.  Into this dungeon \nhe was walked straightway; and having locked him up there, and \nplaced a sentry over him, they left him to his meditations.\n\nThe cell, or black hole, for it had those words painted on the \ndoor, was very dark, and having recently accommodated a drunken \ndeserter, by no means clean.  Barnaby felt his way to some straw at \nthe farther end, and looking towards the door, tried to accustom \nhimself to the gloom, which, coming from the bright sunshine out of \ndoors, was not an easy task.\n\nThere was a kind of portico or colonnade outside, and this \nobstructed even the little light that at the best could have found \nits way through the small apertures in the door.  The footsteps of \nthe sentinel echoed monotonously as he paced its stone pavement to \nand fro (reminding Barnaby of the watch he had so lately kept \nhimself); and as he passed and repassed the door, he made the cell \nfor an instant so black by the interposition of his body, that his \ngoing away again seemed like the appearance of a new ray of light, \nand was quite a circumstance to look for.\n\nWhen the prisoner had sat sometime upon the ground, gazing at the \nchinks, and listening to the advancing and receding footsteps of \nhis guard, the man stood still upon his post.  Barnaby, quite \nunable to think, or to speculate on what would be done with him, \nhad been lulled into a kind of doze by his regular pace; but his \nstopping roused him; and then he became aware that two men were in \nconversation under the colonnade, and very near the door of his \ncell.\n\nHow long they had been talking there, he could not tell, for he had \nfallen into an unconsciousness of his real position, and when the \nfootsteps ceased, was answering aloud some question which seemed to \nhave been put to him by Hugh in the stable, though of the fancied \npurport, either of question or reply, notwithstanding that he awoke \nwith the latter on his lips, he had no recollection whatever.  The \nfirst words that reached his ears, were these:\n\n'Why is he brought here then, if he has to be taken away again so \nsoon?'\n\n'Why where would you have him go!  Damme, he's not as safe anywhere \nas among the king's troops, is he?  What WOULD you do with him?  \nWould you hand him over to a pack of cowardly civilians, that shake \nin their shoes till they wear the soles out, with trembling at the \nthreats of the ragamuffins he belongs to?'\n\n'That's true enough.'\n\n'True enough!--I'll tell you what.  I wish, Tom Green, that I was a \ncommissioned instead of a non-commissioned officer, and that I had \nthe command of two companies--only two companies--of my own \nregiment.  Call me out to stop these riots--give me the needful \nauthority, and half-a-dozen rounds of ball cartridge--'\n\n'Ay!' said the other voice.  'That's all very well, but they won't \ngive the needful authority.  If the magistrate won't give the \nword, what's the officer to do?'\n\nNot very well knowing, as it seemed, how to overcome this \ndifficulty, the other man contented himself with damning the \nmagistrates.\n\n'With all my heart,' said his friend.\n\n'Where's the use of a magistrate?' returned the other voice.  \n'What's a magistrate in this case, but an impertinent, unnecessary, \nunconstitutional sort of interference?  Here's a proclamation.  \nHere's a man referred to in that proclamation.  Here's proof \nagainst him, and a witness on the spot.  Damme!  Take him out and \nshoot him, sir.  Who wants a magistrate?'\n\n'When does he go before Sir John Fielding?' asked the man who had \nspoken first.\n\n'To-night at eight o'clock,' returned the other.  'Mark what \nfollows.  The magistrate commits him to Newgate.  Our people take \nhim to Newgate.  The rioters pelt our people.  Our people retire \nbefore the rioters.  Stones are thrown, insults are offered, not a \nshot's fired.  Why?  Because of the magistrates.  Damn the \nmagistrates!'\n\nWhen he had in some degree relieved his mind by cursing the \nmagistrates in various other forms of speech, the man was silent, \nsave for a low growling, still having reference to those \nauthorities, which from time to time escaped him.\n\nBarnaby, who had wit enough to know that this conversation \nconcerned, and very nearly concerned, himself, remained perfectly \nquiet until they ceased to speak, when he groped his way to the \ndoor, and peeping through the air-holes, tried to make out what \nkind of men they were, to whom he had been listening.\n\nThe one who condemned the civil power in such strong terms, was a \nserjeant--engaged just then, as the streaming ribands in his cap \nannounced, on the recruiting service.  He stood leaning sideways \nagainst a pillar nearly opposite the door, and as he growled to \nhimself, drew figures on the pavement with his cane.  The other \nman had his back towards the dungeon, and Barnaby could only see \nhis form.  To judge from that, he was a gallant, manly, handsome \nfellow, but he had lost his left arm.  It had been taken off \nbetween the elbow and the shoulder, and his empty coat-sleeve hung \nacross his breast.\n\nIt was probably this circumstance which gave him an interest beyond \nany that his companion could boast of, and attracted Barnaby's \nattention.  There was something soldierly in his bearing, and he \nwore a jaunty cap and jacket.  Perhaps he had been in the service \nat one time or other.  If he had, it could not have been very long \nago, for he was but a young fellow now.\n\n'Well, well,' he said thoughtfully; 'let the fault be where it may, \nit makes a man sorrowful to come back to old England, and see her \nin this condition.'\n\n'I suppose the pigs will join 'em next,' said the serjeant, with an \nimprecation on the rioters, 'now that the birds have set 'em the \nexample.'\n\n'The birds!' repeated Tom Green.\n\n'Ah--birds,' said the serjeant testily; 'that's English, an't it?'\n\n'I don't know what you mean.'\n\n'Go to the guard-house, and see.  You'll find a bird there, that's \ngot their cry as pat as any of 'em, and bawls \"No Popery,\" like a \nman--or like a devil, as he says he is.  I shouldn't wonder.  The \ndevil's loose in London somewhere.  Damme if I wouldn't twist his \nneck round, on the chance, if I had MY way.'\n\nThe young man had taken two or three steps away, as if to go and \nsee this creature, when he was arrested by the voice of Barnaby.\n\n'It's mine,' he called out, half laughing and half weeping--'my \npet, my friend Grip.  Ha ha ha!  Don't hurt him, he has done no \nharm.  I taught him; it's my fault.  Let me have him, if you \nplease.  He's the only friend I have left now.  He'll not dance, or \ntalk, or whistle for you, I know; but he will for me, because he \nknows me and loves me--though you wouldn't think it--very well.  \nYou wouldn't hurt a bird, I'm sure.  You're a brave soldier, sir, \nand wouldn't harm a woman or a child--no, no, nor a poor bird, I'm \ncertain.'\n\nThis latter adjuration was addressed to the serjeant, whom Barnaby \njudged from his red coat to be high in office, and able to seal \nGrip's destiny by a word.  But that gentleman, in reply, surlily \ndamned him for a thief and rebel as he was, and with many \ndisinterested imprecations on his own eyes, liver, blood, and body, \nassured him that if it rested with him to decide, he would put a \nfinal stopper on the bird, and his master too.\n\n'You talk boldly to a caged man,' said Barnaby, in anger.  'If I \nwas on the other side of the door and there were none to part us, \nyou'd change your note--ay, you may toss your head--you would!  \nKill the bird--do.  Kill anything you can, and so revenge yourself \non those who with their bare hands untied could do as much to you!'\n\nHaving vented his defiance, he flung himself into the furthest \ncorner of his prison, and muttering, 'Good bye, Grip--good bye, \ndear old Grip!' shed tears for the first time since he had been \ntaken captive; and hid his face in the straw.\n\nHe had had some fancy at first, that the one-armed man would help \nhim, or would give him a kind word in answer.  He hardly knew why, \nbut he hoped and thought so.  The young fellow had stopped when he \ncalled out, and checking himself in the very act of turning round, \nstood listening to every word he said.  Perhaps he built his feeble \ntrust on this; perhaps on his being young, and having a frank and \nhonest manner.  However that might be, he built on sand.  The other \nwent away directly he had finished speaking, and neither answered \nhim, nor returned.  No matter.  They were all against him here: he \nmight have known as much.  Good bye, old Grip, good bye!\n\nAfter some time, they came and unlocked the door, and called to him \nto come out.  He rose directly, and complied, for he would not have \nTHEM think he was subdued or frightened.  He walked out like a man, \nand looked from face to face.\n\nNone of them returned his gaze or seemed to notice it.  They \nmarched him back to the parade by the way they had brought him, and \nthere they halted, among a body of soldiers, at least twice as \nnumerous as that which had taken him prisoner in the afternoon.  \nThe officer he had seen before, bade him in a few brief words take \nnotice that if he attempted to escape, no matter how favourable a \nchance he might suppose he had, certain of the men had orders to \nfire upon him, that moment.  They then closed round him as before, \nand marched him off again.\n\nIn the same unbroken order they arrived at Bow Street, followed and \nbeset on all sides by a crowd which was continually increasing.  \nHere he was placed before a blind gentleman, and asked if he wished \nto say anything.  Not he.  What had he got to tell them?  After a \nvery little talking, which he was careless of and quite indifferent \nto, they told him he was to go to Newgate, and took him away.\n\nHe went out into the street, so surrounded and hemmed in on every \nside by soldiers, that he could see nothing; but he knew there was \na great crowd of people, by the murmur; and that they were not \nfriendly to the soldiers, was soon rendered evident by their yells \nand hisses.  How often and how eagerly he listened for the voice of \nHugh!  There was not a voice he knew among them all.  Was Hugh a \nprisoner too?  Was there no hope!\n\nAs they came nearer and nearer to the prison, the hootings of the \npeople grew more violent; stones were thrown; and every now and \nthen, a rush was made against the soldiers, which they staggered \nunder.  One of them, close before him, smarting under a blow upon \nthe temple, levelled his musket, but the officer struck it upwards \nwith his sword, and ordered him on peril of his life to desist.  \nThis was the last thing he saw with any distinctness, for directly \nafterwards he was tossed about, and beaten to and fro, as though in \na tempestuous sea.  But go where he would, there were the same \nguards about him.  Twice or thrice he was thrown down, and so were \nthey; but even then, he could not elude their vigilance for a \nmoment.  They were up again, and had closed about him, before he, \nwith his wrists so tightly bound, could scramble to his feet.  \nFenced in, thus, he felt himself hoisted to the top of a low flight \nof steps, and then for a moment he caught a glimpse of the fighting \nin the crowd, and of a few red coats sprinkled together, here and \nthere, struggling to rejoin their fellows.  Next moment, everything \nwas dark and gloomy, and he was standing in the prison lobby; the \ncentre of a group of men.\n\nA smith was speedily in attendance, who riveted upon him a set of \nheavy irons.  Stumbling on as well as he could, beneath the unusual \nburden of these fetters, he was conducted to a strong stone cell, \nwhere, fastening the door with locks, and bolts, and chains, they \nleft him, well secured; having first, unseen by him, thrust in \nGrip, who, with his head drooping and his deep black plumes rough \nand rumpled, appeared to comprehend and to partake, his master's \nfallen fortunes.\n\n\n\nChapter 59\n\n\nIt is necessary at this juncture to return to Hugh, who, having, as \nwe have seen, called to the rioters to disperse from about the \nWarren, and meet again as usual, glided back into the darkness from \nwhich he had emerged, and reappeared no more that night.\n\nHe paused in the copse which sheltered him from the observation of \nhis mad companions, and waited to ascertain whether they drew off \nat his bidding, or still lingered and called to him to join them.  \nSome few, he saw, were indisposed to go away without him, and made \ntowards the spot where he stood concealed as though they were about \nto follow in his footsteps, and urge him to come back; but these \nmen, being in their turn called to by their friends, and in truth \nnot greatly caring to venture into the dark parts of the grounds, \nwhere they might be easily surprised and taken, if any of the \nneighbours or retainers of the family were watching them from among \nthe trees, soon abandoned the idea, and hastily assembling such men \nas they found of their mind at the moment, straggled off.\n\nWhen he was satisfied that the great mass of the insurgents were \nimitating this example, and that the ground was rapidly clearing, \nhe plunged into the thickest portion of the little wood; and, \ncrashing the branches as he went, made straight towards a distant \nlight: guided by that, and by the sullen glow of the fire behind \nhim.\n\nAs he drew nearer and nearer to the twinkling beacon towards which \nhe bent his course, the red glare of a few torches began to reveal \nitself, and the voices of men speaking together in a subdued tone \nbroke the silence which, save for a distant shouting now and then, \nalready prevailed.  At length he cleared the wood, and, springing \nacross a ditch, stood in a dark lane, where a small body of ill-\nlooking vagabonds, whom he had left there some twenty minutes \nbefore, waited his coming with impatience.\n\nThey were gathered round an old post-chaise or chariot, driven by \none of themselves, who sat postilion-wise upon the near horse.  The \nblinds were drawn up, and Mr Tappertit and Dennis kept guard at the \ntwo windows.  The former assumed the command of the party, for he \nchallenged Hugh as he advanced towards them; and when he did so, \nthose who were resting on the ground about the carriage rose to \ntheir feet and clustered round him.\n\n'Well!' said Simon, in a low voice; 'is all right?'\n\n'Right enough,' replied Hugh, in the same tone.  'They're \ndispersing now--had begun before I came away.'\n\n'And is the coast clear?'\n\n'Clear enough before our men, I take it,' said Hugh.  'There are \nnot many who, knowing of their work over yonder, will want to \nmeddle with 'em to-night.--Who's got some drink here?'\n\nEverybody had some plunder from the cellar; half-a-dozen flasks and \nbottles were offered directly.  He selected the largest, and \nputting it to his mouth, sent the wine gurgling down his throat.  \nHaving emptied it, he threw it down, and stretched out his hand for \nanother, which he emptied likewise, at a draught.  Another was \ngiven him, and this he half emptied too.  Reserving what remained \nto finish with, he asked:\n\n'Have you got anything to eat, any of you?  I'm as ravenous as a \nhungry wolf.  Which of you was in the larder--come?'\n\n'I was, brother,' said Dennis, pulling off his hat, and fumbling in \nthe crown.  'There's a matter of cold venison pasty somewhere or \nanother here, if that'll do.'\n\n'Do!' cried Hugh, seating himself on the pathway.  'Bring it out! \nQuick!  Show a light here, and gather round!  Let me sup in state, \nmy lads!  Ha ha ha!'\n\nEntering into his boisterous humour, for they all had drunk deeply, \nand were as wild as he, they crowded about him, while two of their \nnumber who had torches, held them up, one on either side of him, \nthat his banquet might not be despatched in the dark.  Mr Dennis, \nhaving by this time succeeded in extricating from his hat a great \nmass of pasty, which had been wedged in so tightly that it was not \neasily got out, put it before him; and Hugh, having borrowed a \nnotched and jagged knife from one of the company, fell to work upon \nit vigorously.\n\n'I should recommend you to swallow a little fire every day, about \nan hour afore dinner, brother,' said Dennis, after a pause.  'It \nseems to agree with you, and to stimulate your appetite.'\n\nHugh looked at him, and at the blackened faces by which he was \nsurrounded, and, stopping for a moment to flourish his knife above \nhis head, answered with a roar of laughter.\n\n'Keep order, there, will you?' said Simon Tappertit.\n\n'Why, isn't a man allowed to regale himself, noble captain,' \nretorted his lieutenant, parting the men who stood between them, \nwith his knife, that he might see him,--'to regale himself a little \nbit after such work as mine?  What a hard captain!  What a strict \ncaptain!  What a tyrannical captain!  Ha ha ha!'\n\n'I wish one of you fellers would hold a bottle to his mouth to keep \nhim quiet,' said Simon, 'unless you want the military to be down \nupon us.'\n\n'And what if they are down upon us!' retorted Hugh.  'Who cares?  \nWho's afraid?  Let 'em come, I say, let 'em come.  The more, the \nmerrier.  Give me bold Barnaby at my side, and we two will settle \nthe military, without troubling any of you.  Barnaby's the man for \nthe military.  Barnaby's health!'\n\nBut as the majority of those present were by no means anxious for \na second engagement that night, being already weary and exhausted, \nthey sided with Mr Tappertit, and pressed him to make haste with \nhis supper, for they had already delayed too long.  Knowing, even \nin the height of his frenzy, that they incurred great danger by \nlingering so near the scene of the late outrages, Hugh made an end \nof his meal without more remonstrance, and rising, stepped up to Mr \nTappertit, and smote him on the back.\n\n'Now then,' he cried, 'I'm ready.  There are brave birds inside \nthis cage, eh?  Delicate birds,--tender, loving, little doves.  I \ncaged 'em--I caged 'em--one more peep!'\n\nHe thrust the little man aside as he spoke, and mounting on the \nsteps, which were half let down, pulled down the blind by force, \nand stared into the chaise like an ogre into his larder.\n\n'Ha ha ha! and did you scratch, and pinch, and struggle, pretty \nmistress?' he cried, as he grasped a little hand that sought in \nvain to free itself from his grip: 'you, so bright-eyed, and \ncherry-lipped, and daintily made?  But I love you better for it, \nmistress.  Ay, I do.  You should stab me and welcome, so that it \npleased you, and you had to cure me afterwards.  I love to see you \nproud and scornful.  It makes you handsomer than ever; and who so \nhandsome as you at any time, my pretty one!'\n\n'Come!' said Mr Tappertit, who had waited during this speech with \nconsiderable impatience.  'There's enough of that.  Come down.'\n\nThe little hand seconded this admonition by thrusting Hugh's great \nhead away with all its force, and drawing up the blind, amidst his \nnoisy laughter, and vows that he must have another look, for the \nlast glimpse of that sweet face had provoked him past all bearing.  \nHowever, as the suppressed impatience of the party now broke out \ninto open murmurs, he abandoned this design, and taking his seat \nupon the bar, contented himself with tapping at the front windows \nof the carriage, and trying to steal a glance inside; Mr Tappertit, \nmounting the steps and hanging on by the door, issued his \ndirections to the driver with a commanding voice and attitude; the \nrest got up behind, or ran by the side of the carriage, as they \ncould; some, in imitation of Hugh, endeavoured to see the face he \nhad praised so highly, and were reminded of their impertinence by \nhints from the cudgel of Mr Tappertit.  Thus they pursued their \njourney by circuitous and winding roads; preserving, except when \nthey halted to take breath, or to quarrel about the best way of \nreaching London, pretty good order and tolerable silence.\n\nIn the mean time, Dolly--beautiful, bewitching, captivating little \nDolly--her hair dishevelled, her dress torn, her dark eyelashes wet \nwith tears, her bosom heaving--her face, now pale with fear, now \ncrimsoned with indignation--her whole self a hundred times more \nbeautiful in this heightened aspect than ever she had been before--\nvainly strove to comfort Emma Haredale, and to impart to her the \nconsolation of which she stood in so much need herself.  The \nsoldiers were sure to come; they must be rescued; it would be \nimpossible to convey them through the streets of London when they \nset the threats of their guards at defiance, and shrieked to the \npassengers for help.  If they did this when they came into the more \nfrequented ways, she was certain--she was quite certain--they must \nbe released.  So poor Dolly said, and so poor Dolly tried to think; \nbut the invariable conclusion of all such arguments was, that Dolly \nburst into tears; cried, as she wrung her hands, what would they do \nor think, or who would comfort them, at home, at the Golden Key; \nand sobbed most piteously.\n\nMiss Haredale, whose feelings were usually of a quieter kind than \nDolly's, and not so much upon the surface, was dreadfully \nalarmed, and indeed had only just recovered from a swoon.  She was \nvery pale, and the hand which Dolly held was quite cold; but she \nbade her, nevertheless, remember that, under Providence, much must \ndepend upon their own discretion; that if they remained quiet and \nlulled the vigilance of the ruffians into whose hands they had \nfallen, the chances of their being able to procure assistance when \nthey reached the town, were very much increased; that unless \nsociety were quite unhinged, a hot pursuit must be immediately \ncommenced; and that her uncle, she might be sure, would never rest \nuntil he had found them out and rescued them.  But as she said \nthese latter words, the idea that he had fallen in a general \nmassacre of the Catholics that night--no very wild or improbable \nsupposition after what they had seen and undergone--struck her \ndumb; and, lost in the horrors they had witnessed, and those they \nmight be yet reserved for, she sat incapable of thought, or speech, \nor outward show of grief: as rigid, and almost as white and cold, \nas marble.\n\nOh, how many, many times, in that long ride, did Dolly think of her \nold lover,--poor, fond, slighted Joe!  How many, many times, did \nshe recall that night when she ran into his arms from the very man \nnow projecting his hateful gaze into the darkness where she sat, \nand leering through the glass in monstrous admiration!  And when \nshe thought of Joe, and what a brave fellow he was, and how he \nwould have rode boldly up, and dashed in among these villains now, \nyes, though they were double the number--and here she clenched her \nlittle hand, and pressed her foot upon the ground--the pride she \nfelt for a moment in having won his heart, faded in a burst of \ntears, and she sobbed more bitterly than ever.\n\nAs the night wore on, and they proceeded by ways which were quite \nunknown to them--for they could recognise none of the objects of \nwhich they sometimes caught a hurried glimpse--their fears \nincreased; nor were they without good foundation; it was not \ndifficult for two beautiful young women to find, in their being \nborne they knew not whither by a band of daring villains who eyed \nthem as some among these fellows did, reasons for the worst alarm.  \nWhen they at last entered London, by a suburb with which they were \nwholly unacquainted, it was past midnight, and the streets were \ndark and empty.  Nor was this the worst, for the carriage stopping \nin a lonely spot, Hugh suddenly opened the door, jumped in, and \ntook his seat between them.\n\nIt was in vain they cried for help.  He put his arm about the neck \nof each, and swore to stifle them with kisses if they were not as \nsilent as the grave.\n\n'I come here to keep you quiet,' he said, 'and that's the means I \nshall take.  So don't be quiet, pretty mistresses--make a noise--\ndo--and I shall like it all the better.'\n\nThey were proceeding at a rapid pace, and apparently with fewer \nattendants than before, though it was so dark (the torches being \nextinguished) that this was mere conjecture.  They shrunk from his \ntouch, each into the farthest corner of the carriage; but shrink as \nDolly would, his arm encircled her waist, and held her fast.  She \nneither cried nor spoke, for terror and disgust deprived her of the \npower; but she plucked at his hand as though she would die in the \neffort to disengage herself; and crouching on the ground, with her \nhead averted and held down, repelled him with a strength she \nwondered at as much as he.  The carriage stopped again.\n\n'Lift this one out,' said Hugh to the man who opened the door, as \nhe took Miss Haredale's hand, and felt how heavily it fell.  'She's \nfainted.'\n\n'So much the better,' growled Dennis--it was that amiable \ngentleman.  'She's quiet.  I always like 'em to faint, unless \nthey're very tender and composed.'\n\n'Can you take her by yourself?' asked Hugh.\n\n'I don't know till I try.  I ought to be able to; I've lifted up a \ngood many in my time,' said the hangman.  'Up then!  She's no small \nweight, brother; none of these here fine gals are.  Up again!  Now \nwe have her.'\n\nHaving by this time hoisted the young lady into his arms, he \nstaggered off with his burden.\n\n'Look ye, pretty bird,' said Hugh, drawing Dolly towards him.  \n'Remember what I told you--a kiss for every cry.  Scream, if you \nlove me, darling.  Scream once, mistress.  Pretty mistress, only \nonce, if you love me.'\n\nThrusting his face away with all her force, and holding down her \nhead, Dolly submitted to be carried out of the chaise, and borne \nafter Miss Haredale into a miserable cottage, where Hugh, after \nhugging her to his breast, set her gently down upon the floor.\n\nPoor Dolly!  Do what she would, she only looked the better for it, \nand tempted them the more.  When her eyes flashed angrily, and her \nripe lips slightly parted, to give her rapid breathing vent, who \ncould resist it?  When she wept and sobbed as though her heart \nwould break, and bemoaned her miseries in the sweetest voice that \never fell upon a listener's ear, who could be insensible to the \nlittle winning pettishness which now and then displayed itself, \neven in the sincerity and earnestness of her grief?  When, \nforgetful for a moment of herself, as she was now, she fell on her \nknees beside her friend, and bent over her, and laid her cheek to \nhers, and put her arms about her, what mortal eyes could have \navoided wandering to the delicate bodice, the streaming hair, the \nneglected dress, the perfect abandonment and unconsciousness of the \nblooming little beauty?  Who could look on and see her lavish \ncaresses and endearments, and not desire to be in Emma Haredale's \nplace; to be either her or Dolly; either the hugging or the hugged?  \nNot Hugh.  Not Dennis.\n\n'I tell you what it is, young women,' said Mr Dennis, 'I an't much \nof a lady's man myself, nor am I a party in the present business \nfurther than lending a willing hand to my friends: but if I see \nmuch more of this here sort of thing, I shall become a principal \ninstead of a accessory.  I tell you candid.'\n\n'Why have you brought us here?' said Emma.  'Are we to be \nmurdered?'\n\n'Murdered!' cried Dennis, sitting down upon a stool, and regarding \nher with great favour.  'Why, my dear, who'd murder sich \nchickabiddies as you?  If you was to ask me, now, whether you was \nbrought here to be married, there might be something in it.'\n\nAnd here he exchanged a grin with Hugh, who removed his eyes from \nDolly for the purpose.\n\n'No, no,' said Dennis, 'there'll be no murdering, my pets.  Nothing \nof that sort.  Quite the contrairy.'\n\n'You are an older man than your companion, sir,' said Emma, \ntrembling.  'Have you no pity for us?  Do you not consider that we \nare women?'\n\n'I do indeed, my dear,' retorted Dennis.  'It would be very hard \nnot to, with two such specimens afore my eyes.  Ha ha!  Oh yes , I \nconsider that.  We all consider that, miss.'\n\nHe shook his head waggishly, leered at Hugh again, and laughed very \nmuch, as if he had said a noble thing, and rather thought he was \ncoming out.\n\n'There'll be no murdering, my dear.  Not a bit on it.  I tell you \nwhat though, brother,' said Dennis, cocking his hat for the \nconvenience of scratching his head, and looking gravely at Hugh, \n'it's worthy of notice, as a proof of the amazing equalness and \ndignity of our law, that it don't make no distinction between men \nand women.  I've heerd the judge say, sometimes, to a highwayman or \nhousebreaker as had tied the ladies neck and heels--you'll excuse \nme making mention of it, my darlings--and put 'em in a cellar, that \nhe showed no consideration to women.  Now, I say that there judge \ndidn't know his business, brother; and that if I had been that \nthere highwayman or housebreaker, I should have made answer: \"What \nare you a talking of, my lord?  I showed the women as much \nconsideration as the law does, and what more would you have me do?\"  \nIf you was to count up in the newspapers the number of females as \nhave been worked off in this here city alone, in the last ten \nyear,' said Mr Dennis thoughtfully, 'you'd be surprised at the \ntotal--quite amazed, you would.  There's a dignified and equal \nthing; a beautiful thing!  But we've no security for its lasting.  \nNow that they've begun to favour these here Papists, I shouldn't \nwonder if they went and altered even THAT, one of these days.  Upon \nmy soul, I shouldn't.'\n\nThe subject, perhaps from being of too exclusive and professional a \nnature, failed to interest Hugh as much as his friend had \nanticipated.  But he had no time to pursue it, for at this crisis \nMr Tappertit entered precipitately; at sight of whom Dolly uttered \na scream of joy, and fairly threw herself into his arms.\n\n'I knew it, I was sure of it!' cried Dolly.  'My dear father's at \nthe door.  Thank God, thank God!  Bless you, Sim.  Heaven bless you \nfor this!'\n\nSimon Tappertit, who had at first implicitly believed that the \nlocksmith's daughter, unable any longer to suppress her secret \npassion for himself, was about to give it full vent in its \nintensity, and to declare that she was his for ever, looked \nextremely foolish when she said these words;--the more so, as they \nwere received by Hugh and Dennis with a loud laugh, which made her \ndraw back, and regard him with a fixed and earnest look.\n\n'Miss Haredale,' said Sim, after a very awkward silence, 'I hope \nyou're as comfortable as circumstances will permit of.  Dolly \nVarden, my darling--my own, my lovely one--I hope YOU'RE pretty \ncomfortable likewise.'\n\nPoor little Dolly!  She saw how it was; hid her face in her hands; \nand sobbed more bitterly than ever.\n\n'You meet in me, Miss V.,' said Simon, laying his hand upon his \nbreast, 'not a 'prentice, not a workman, not a slave, not the \nwictim of your father's tyrannical behaviour, but the leader of a \ngreat people, the captain of a noble band, in which these gentlemen \nare, as I may say, corporals and serjeants.  You behold in me, not \na private individual, but a public character; not a mender of \nlocks, but a healer of the wounds of his unhappy country.  Dolly \nV., sweet Dolly V., for how many years have I looked forward to \nthis present meeting!  For how many years has it been my intention \nto exalt and ennoble you!  I redeem it.  Behold in me, your \nhusband.  Yes, beautiful Dolly--charmer--enslaver--S. Tappertit is \nall your own!'\n\nAs he said these words he advanced towards her.  Dolly retreated \ntill she could go no farther, and then sank down upon the floor.  \nThinking it very possible that this might be maiden modesty, Simon \nessayed to raise her; on which Dolly, goaded to desperation, wound \nher hands in his hair, and crying out amidst her tears that he was \na dreadful little wretch, and always had been, shook, and pulled, \nand beat him, until he was fain to call for help, most lustily.  \nHugh had never admired her half so much as at that moment.\n\n'She's in an excited state to-night,' said Simon, as he smoothed \nhis rumpled feathers, 'and don't know when she's well off.  Let her \nbe by herself till to-morrow, and that'll bring her down a little.  \nCarry her into the next house!'\n\nHugh had her in his arms directly.  It might be that Mr Tappertit's \nheart was really softened by her distress, or it might be that he \nfelt it in some degree indecorous that his intended bride should be \nstruggling in the grasp of another man.  He commanded him, on \nsecond thoughts, to put her down again, and looked moodily on as \nshe flew to Miss Haredale's side, and clinging to her dress, hid \nher flushed face in its folds.\n\n'They shall remain here together till to-morrow,' said Simon, who \nhad now quite recovered his dignity--'till to-morrow.  Come away!'\n\n'Ay!' cried Hugh.  'Come away, captain.  Ha ha ha!'\n\n'What are you laughing at?' demanded Simon sternly.\n\n'Nothing, captain, nothing,' Hugh rejoined; and as he spoke, and \nclapped his hand upon the shoulder of the little man, he laughed \nagain, for some unknown reason, with tenfold violence.\n\nMr Tappertit surveyed him from head to foot with lofty scorn (this \nonly made him laugh the more), and turning to the prisoners, said:\n\n'You'll take notice, ladies, that this place is well watched on \nevery side, and that the least noise is certain to be attended with \nunpleasant consequences.  You'll hear--both of you--more of our \nintentions to-morrow.  In the mean time, don't show yourselves at \nthe window, or appeal to any of the people you may see pass it; for \nif you do, it'll be known directly that you come from a Catholic \nhouse, and all the exertions our men can make, may not be able to \nsave your lives.'\n\nWith this last caution, which was true enough, he turned to the \ndoor, followed by Hugh and Dennis.  They paused for a moment, going \nout, to look at them clasped in each other's arms, and then left \nthe cottage; fastening the door, and setting a good watch upon it, \nand indeed all round the house.\n\n'I say,' growled Dennis, as they walked away in company, 'that's a \ndainty pair.  Muster Gashford's one is as handsome as the other, \neh?'\n\n'Hush!' said Hugh, hastily.  'Don't you mention names.  It's a bad \nhabit.'\n\n'I wouldn't like to be HIM, then (as you don't like names), when he \nbreaks it out to her; that's all,' said Dennis.  'She's one of them \nfine, black-eyed, proud gals, as I wouldn't trust at such times \nwith a knife too near 'em.  I've seen some of that sort, afore now.  \nI recollect one that was worked off, many year ago--and there was a \ngentleman in that case too--that says to me, with her lip a \ntrembling, but her hand as steady as ever I see one: \"Dennis, I'm \nnear my end, but if I had a dagger in these fingers, and he was \nwithin my reach, I'd strike him dead afore me;\"--ah, she did--and \nshe'd have done it too!'\n\nStrike who dead?' demanded Hugh.\n\n'How should I know, brother?' answered Dennis.  'SHE never said; \nnot she.'\n\nHugh looked, for a moment, as though he would have made some \nfurther inquiry into this incoherent recollection; but Simon \nTappertit, who had been meditating deeply, gave his thoughts a new \ndirection.\n\n'Hugh!' said Sim.  'You have done well to-day.  You shall be \nrewarded.  So have you, Dennis.--There's no young woman YOU want to \ncarry off, is there?'\n\n'N--no,' returned that gentleman, stroking his grizzly beard, which \nwas some two inches long.  'None in partickler, I think.'\n\n'Very good,' said Sim; 'then we'll find some other way of making it \nup to you.  As to you, old boy'--he turned to Hugh--'you shall have \nMiggs (her that I promised you, you know) within three days.  Mind.  \nI pass my word for it.'\n\nHugh thanked him heartily; and as he did so, his laughing fit \nreturned with such violence that he was obliged to hold his side \nwith one hand, and to lean with the other on the shoulder of his \nsmall captain, without whose support he would certainly have rolled \nupon the ground.\n\n\n\nChapter 60\n\n\nThe three worthies turned their faces towards The Boot, with the \nintention of passing the night in that place of rendezvous, and of \nseeking the repose they so much needed in the shelter of their old \nden; for now that the mischief and destruction they had purposed \nwere achieved, and their prisoners were safely bestowed for the \nnight, they began to be conscious of exhaustion, and to feel the \nwasting effects of the madness which had led to such deplorable \nresults.\n\nNotwithstanding the lassitude and fatigue which oppressed him now, \nin common with his two companions, and indeed with all who had \ntaken an active share in that night's work, Hugh's boisterous \nmerriment broke out afresh whenever he looked at Simon Tappertit, \nand vented itself--much to that gentleman's indignation--in such \nshouts of laughter as bade fair to bring the watch upon them, and \ninvolve them in a skirmish, to which in their present worn-out \ncondition they might prove by no means equal.  Even Mr Dennis, who \nwas not at all particular on the score of gravity or dignity, and \nwho had a great relish for his young friend's eccentric humours, \ntook occasion to remonstrate with him on this imprudent behaviour, \nwhich he held to be a species of suicide, tantamount to a man's \nworking himself off without being overtaken by the law, than which \nhe could imagine nothing more ridiculous or impertinent.\n\nNot abating one jot of his noisy mirth for these remonstrances, \nHugh reeled along between them, having an arm of each, until they \nhove in sight of The Boot, and were within a field or two of that \nconvenient tavern.  He happened by great good luck to have roared \nand shouted himself into silence by this time.  They were \nproceeding onward without noise, when a scout who had been creeping \nabout the ditches all night, to warn any stragglers from \nencroaching further on what was now such dangerous ground, peeped \ncautiously from his hiding-place, and called to them to stop.\n\n'Stop! and why?' said Hugh.\n\nBecause (the scout replied) the house was filled with constables \nand soldiers; having been surprised that afternoon.  The inmates \nhad fled or been taken into custody, he could not say which.  He \nhad prevented a great many people from approaching nearer, and he \nbelieved they had gone to the markets and such places to pass the \nnight.  He had seen the distant fires, but they were all out now.  \nHe had heard the people who passed and repassed, speaking of them \ntoo, and could report that the prevailing opinion was one of \napprehension and dismay.  He had not heard a word of Barnaby--\ndidn't even know his name--but it had been said in his hearing that \nsome man had been taken and carried off to Newgate.  Whether this \nwas true or false, he could not affirm.\n\nThe three took counsel together, on hearing this, and debated what \nit might be best to do.  Hugh, deeming it possible that Barnaby was \nin the hands of the soldiers, and at that moment under detention at \nThe Boot, was for advancing stealthily, and firing the house; but \nhis companions, who objected to such rash measures unless they had \na crowd at their backs, represented that if Barnaby were taken he \nhad assuredly been removed to a stronger prison; they would never \nhave dreamed of keeping him all night in a place so weak and open \nto attack.  Yielding to this reasoning, and to their persuasions, \nHugh consented to turn back and to repair to Fleet Market; for \nwhich place, it seemed, a few of their boldest associates had \nshaped their course, on receiving the same intelligence.\n\nFeeling their strength recruited and their spirits roused, now that \nthere was a new necessity for action, they hurried away, quite \nforgetful of the fatigue under which they had been sinking but a \nfew minutes before; and soon arrived at their new place of \ndestination.\n\nFleet Market, at that time, was a long irregular row of wooden \nsheds and penthouses, occupying the centre of what is now called \nFarringdon Street.  They were jumbled together in a most unsightly \nfashion, in the middle of the road; to the great obstruction of the \nthoroughfare and the annoyance of passengers, who were fain to make \ntheir way, as they best could, among carts, baskets, barrows, \ntrucks, casks, bulks, and benches, and to jostle with porters, \nhucksters, waggoners, and a motley crowd of buyers, sellers, pick-\npockets, vagrants, and idlers.  The air was perfumed with the \nstench of rotten leaves and faded fruit; the refuse of the \nbutchers' stalls, and offal and garbage of a hundred kinds.  It was \nindispensable to most public conveniences in those days, that they \nshould be public nuisances likewise; and Fleet Market maintained \nthe principle to admiration.\n\nTo this place, perhaps because its sheds and baskets were a \ntolerable substitute for beds, or perhaps because it afforded the \nmeans of a hasty barricade in case of need, many of the rioters had \nstraggled, not only that night, but for two or three nights before.  \nIt was now broad day, but the morning being cold, a group of them \nwere gathered round a fire in a public-house, drinking hot purl, \nand smoking pipes, and planning new schemes for to-morrow.\n\nHugh and his two friends being known to most of these men, were \nreceived with signal marks of approbation, and inducted into the \nmost honourable seats.  The room-door was closed and fastened to \nkeep intruders at a distance, and then they proceeded to exchange \nnews.\n\n'The soldiers have taken possession of The Boot, I hear,' said \nHugh.  'Who knows anything about it?'\n\nSeveral cried that they did; but the majority of the company \nhaving been engaged in the assault upon the Warren, and all \npresent having been concerned in one or other of the night's \nexpeditions, it proved that they knew no more than Hugh himself; \nhaving been merely warned by each other, or by the scout, and \nknowing nothing of their own knowledge.\n\n'We left a man on guard there to-day,' said Hugh, looking round \nhim, 'who is not here.  You know who it is--Barnaby, who brought \nthe soldier down, at Westminster.  Has any man seen or heard of \nhim?'\n\nThey shook their heads, and murmured an answer in the negative, as \neach man looked round and appealed to his fellow; when a noise was \nheard without, and a man was heard to say that he wanted Hugh--that \nhe must see Hugh.\n\n'He is but one man,' cried Hugh to those who kept the door; 'let \nhim come in.'\n\n'Ay, ay!' muttered the others.  'Let him come in.  Let him come \nin.'\n\nThe door was accordingly unlocked and opened.  A one-armed man, \nwith his head and face tied up with a bloody cloth, as though he \nhad been severely beaten, his clothes torn, and his remaining hand \ngrasping a thick stick, rushed in among them, and panting for \nbreath, demanded which was Hugh.\n\n'Here he is,' replied the person he inquired for.  'I am Hugh.  \nWhat do you want with me?'\n\n'I have a message for you,' said the man.  'You know one Barnaby.'\n\n'What of him?  Did he send the message?'\n\n'Yes.  He's taken.  He's in one of the strong cells in Newgate.  He \ndefended himself as well as he could, but was overpowered by \nnumbers.  That's his message.'\n\n'When did you see him?' asked Hugh, hastily.\n\n'On his way to prison, where he was taken by a party of soldiers.  \nThey took a by-road, and not the one we expected.  I was one of \nthe few who tried to rescue him, and he called to me, and told me \nto tell Hugh where he was.  We made a good struggle, though it \nfailed.  Look here!'\n\nHe pointed to his dress and to his bandaged head, and still panting \nfor breath, glanced round the room; then faced towards Hugh again.\n\n'I know you by sight,' he said, 'for I was in the crowd on Friday, \nand on Saturday, and yesterday, but I didn't know your name.  \nYou're a bold fellow, I know.  So is he.  He fought like a lion \ntonight, but it was of no use.  I did my best, considering that I \nwant this limb.'\n\nAgain he glanced inquisitively round the room or seemed to do so, \nfor his face was nearly hidden by the bandage--and again facing \nsharply towards Hugh, grasped his stick as if he half expected to \nbe set upon, and stood on the defensive.\n\nIf he had any such apprehension, however, he was speedily reassured \nby the demeanour of all present.  None thought of the bearer of the \ntidings.  He was lost in the news he brought.  Oaths, threats, and \nexecrations, were vented on all sides.  Some cried that if they \nbore this tamely, another day would see them all in jail; some, \nthat they should have rescued the other prisoners, and this would \nnot have happened.  One man cried in a loud voice, 'Who'll follow \nme to Newgate!' and there was a loud shout and general rush towards \nthe door.\n\nBut Hugh and Dennis stood with their backs against it, and kept \nthem back, until the clamour had so far subsided that their voices \ncould be heard, when they called to them together that to go now, \nin broad day, would be madness; and that if they waited until night \nand arranged a plan of attack, they might release, not only their \nown companions, but all the prisoners, and burn down the jail.\n\n'Not that jail alone,' cried Hugh, 'but every jail in London.  They \nshall have no place to put their prisoners in.  We'll burn them all \ndown; make bonfires of them every one!  Here!' he cried, catching \nat the hangman's hand.  'Let all who're men here, join with us.  \nShake hands upon it.  Barnaby out of jail, and not a jail left \nstanding!  Who joins?'\n\nEvery man there.  And they swore a great oath to release their \nfriends from Newgate next night; to force the doors and burn the \njail; or perish in the fire themselves.\n\n\n\nChapter 61\n\n\nOn that same night--events so crowd upon each other in convulsed \nand distracted times, that more than the stirring incidents of a \nwhole life often become compressed into the compass of four-and-\ntwenty hours--on that same night, Mr Haredale, having strongly \nbound his prisoner, with the assistance of the sexton, and forced \nhim to mount his horse, conducted him to Chigwell; bent upon \nprocuring a conveyance to London from that place, and carrying him \nat once before a justice.  The disturbed state of the town would \nbe, he knew, a sufficient reason for demanding the murderer's \ncommittal to prison before daybreak, as no man could answer for the \nsecurity of any of the watch-houses or ordinary places of \ndetention; and to convey a prisoner through the streets when the \nmob were again abroad, would not only be a task of great danger and \nhazard, but would be to challenge an attempt at rescue.  Directing \nthe sexton to lead the horse, he walked close by the murderer's \nside, and in this order they reached the village about the middle \nof the night.\n\nThe people were all awake and up, for they were fearful of being \nburnt in their beds, and sought to comfort and assure each other by \nwatching in company.  A few of the stoutest-hearted were armed and \ngathered in a body on the green.  To these, who knew him well, Mr \nHaredale addressed himself, briefly narrating what had happened, \nand beseeching them to aid in conveying the criminal to London \nbefore the dawn of day.\n\nBut not a man among them dared to help him by so much as the motion \nof a finger.  The rioters, in their passage through the village, \nhad menaced with their fiercest vengeance, any person who should \naid in extinguishing the fire, or render the least assistance to \nhim, or any Catholic whomsoever.  Their threats extended to their \nlives and all they possessed.  They were assembled for their own \nprotection, and could not endanger themselves by lending any aid to \nhim.  This they told him, not without hesitation and regret, as \nthey kept aloof in the moonlight and glanced fearfully at the \nghostly rider, who, with his head drooping on his breast and his \nhat slouched down upon his brow, neither moved nor spoke.\n\nFinding it impossible to persuade them, and indeed hardly knowing \nhow to do so after what they had seen of the fury of the crowd, Mr \nHaredale besought them that at least they would leave him free to \nact for himself, and would suffer him to take the only chaise and \npair of horses that the place afforded.  This was not acceded to \nwithout some difficulty, but in the end they told him to do what he \nwould, and go away from them in heaven's name.\n\nLeaving the sexton at the horse's bridle, he drew out the chaise \nwith his own hands, and would have harnessed the horses, but that \nthe post-boy of the village--a soft-hearted, good-for-nothing, \nvagabond kind of fellow--was moved by his earnestness and passion, \nand, throwing down a pitchfork with which he was armed, swore that \nthe rioters might cut him into mincemeat if they liked, but he \nwould not stand by and see an honest gentleman who had done no \nwrong, reduced to such extremity, without doing what he could to \nhelp him.  Mr Haredale shook him warmly by the hand, and thanked \nhim from his heart.  In five minutes' time the chaise was ready, \nand this good scapegrace in his saddle.  The murderer was put \ninside, the blinds were drawn up, the sexton took his seat upon the \nbar, Mr Haredale mounted his horse and rode close beside the door; \nand so they started in the dead of night, and in profound silence, \nfor London.\n\nThe consternation was so extreme that even the horses which had \nescaped the flames at the Warren, could find no friends to shelter \nthem.  They passed them on the road, browsing on the stunted grass; \nand the driver told them, that the poor beasts had wandered to the \nvillage first, but had been driven away, lest they should bring \nthe vengeance of the crowd on any of the inhabitants.\n\nNor was this feeling confined to such small places, where the \npeople were timid, ignorant, and unprotected.  When they came near \nLondon they met, in the grey light of morning, more than one poor \nCatholic family who, terrified by the threats and warnings of \ntheir neighbours, were quitting the city on foot, and who told them \nthey could hire no cart or horse for the removal of their goods, \nand had been compelled to leave them behind, at the mercy of the \ncrowd.  Near Mile End they passed a house, the master of which, a \nCatholic gentleman of small means, having hired a waggon to remove \nhis furniture by midnight, had had it all brought down into the \nstreet, to wait the vehicle's arrival, and save time in the \npacking.  But the man with whom he made the bargain, alarmed by the \nfires that night, and by the sight of the rioters passing his \ndoor, had refused to keep it: and the poor gentleman, with his wife \nand servant and their little children, were sitting trembling among \ntheir goods in the open street, dreading the arrival of day and not \nknowing where to turn or what to do.\n\nIt was the same, they heard, with the public conveyances.  The \npanic was so great that the mails and stage-coaches were afraid to \ncarry passengers who professed the obnoxious religion.  If the \ndrivers knew them, or they admitted that they held that creed, they \nwould not take them, no, though they offered large sums; and \nyesterday, people had been afraid to recognise Catholic \nacquaintance in the streets, lest they should be marked by spies, \nand burnt out, as it was called, in consequence.  One mild old man--\na priest, whose chapel was destroyed; a very feeble, patient, \ninoffensive creature--who was trudging away, alone, designing to \nwalk some distance from town, and then try his fortune with the \ncoaches, told Mr Haredale that he feared he might not find a \nmagistrate who would have the hardihood to commit a prisoner to \njail, on his complaint.  But notwithstanding these discouraging \naccounts they went on, and reached the Mansion House soon after \nsunrise.\n\nMr Haredale threw himself from his horse, but he had no need to \nknock at the door, for it was already open, and there stood upon \nthe step a portly old man, with a very red, or rather purple face, \nwho with an anxious expression of countenance, was remonstrating \nwith some unseen personage upstairs, while the porter essayed to \nclose the door by degrees and get rid of him.  With the intense \nimpatience and excitement natural to one in his condition, Mr \nHaredale thrust himself forward and was about to speak, when the \nfat old gentleman interposed:\n\n'My good sir,' said he, 'pray let me get an answer.  This is the \nsixth time I have been here.  I was here five times yesterday.  My \nhouse is threatened with destruction.  It is to be burned down to-\nnight, and was to have been last night, but they had other business \non their hands.  Pray let me get an answer.'\n\n'My good sir,' returned Mr Haredale, shaking his head, 'my house \nis burned to the ground.  But heaven forbid that yours should be.  \nGet your answer.  Be brief, in mercy to me.'\n\n'Now, you hear this, my lord?'--said the old gentleman, calling up \nthe stairs, to where the skirt of a dressing-gown fluttered on the \nlanding-place.  'Here is a gentleman here, whose house was actually \nburnt down last night.'\n\n'Dear me, dear me,' replied a testy voice, 'I am very sorry for \nit, but what am I to do?  I can't build it up again.  The chief \nmagistrate of the city can't go and be a rebuilding of people's \nhouses, my good sir.  Stuff and nonsense!'\n\n'But the chief magistrate of the city can prevent people's houses \nfrom having any need to be rebuilt, if the chief magistrate's a \nman, and not a dummy--can't he, my lord?' cried the old gentleman \nin a choleric manner.\n\n'You are disrespectable, sir,' said the Lord Mayor--'leastways, \ndisrespectful I mean.'\n\n'Disrespectful, my lord!' returned the old gentleman.  'I was \nrespectful five times yesterday.  I can't be respectful for ever.  \nMen can't stand on being respectful when their houses are going to \nbe burnt over their heads, with them in 'em.  What am I to do, my \nlord?  AM I to have any protection!'\n\n'I told you yesterday, sir,' said the Lord Mayor, 'that you might \nhave an alderman in your house, if you could get one to come.'\n\n'What the devil's the good of an alderman?' returned the choleric \nold gentleman.\n\n'--To awe the crowd, sir,' said the Lord Mayor.\n\n'Oh Lord ha' mercy!' whimpered the old gentleman, as he wiped his \nforehead in a state of ludicrous distress, 'to think of sending an \nalderman to awe a crowd!  Why, my lord, if they were even so many \nbabies, fed on mother's milk, what do you think they'd care for an \nalderman!  Will YOU come?'\n\n'I!' said the Lord Mayor, most emphatically: 'Certainly not.'\n\n'Then what,' returned the old gentleman, 'what am I to do?  Am I a \ncitizen of England?  Am I to have the benefit of the laws?  Am I to \nhave any return for the King's taxes?'\n\n'I don't know, I am sure,' said the Lord Mayor; 'what a pity it is \nyou're a Catholic!  Why couldn't you be a Protestant, and then you \nwouldn't have got yourself into such a mess?  I'm sure I don't know \nwhat's to be done.--There are great people at the bottom of these \nriots.--Oh dear me, what a thing it is to be a public character!--\nYou must look in again in the course of the day.--Would a javelin-\nman do?--Or there's Philips the constable,--HE'S disengaged,--he's \nnot very old for a man at his time of life, except in his legs, and \nif you put him up at a window he'd look quite young by candle-\nlight, and might frighten 'em very much.--Oh dear!--well!--we'll \nsee about it.'\n\n'Stop!' cried Mr Haredale, pressing the door open as the porter \nstrove to shut it, and speaking rapidly, 'My Lord Mayor, I beg you \nnot to go away.  I have a man here, who committed a murder eight-\nand-twenty years ago.  Half-a-dozen words from me, on oath, will \njustify you in committing him to prison for re-examination.  I only \nseek, just now, to have him consigned to a place of safety.  The \nleast delay may involve his being rescued by the rioters.'\n\n'Oh dear me!' cried the Lord Mayor.  'God bless my soul--and body--\noh Lor!--well I!--there are great people at the bottom of these \nriots, you know.--You really mustn't.'\n\n'My lord,' said Mr Haredale, 'the murdered gentleman was my \nbrother; I succeeded to his inheritance; there were not wanting \nslanderous tongues at that time, to whisper that the guilt of this \nmost foul and cruel deed was mine--mine, who loved him, as he \nknows, in Heaven, dearly.  The time has come, after all these years \nof gloom and misery, for avenging him, and bringing to light a \ncrime so artful and so devilish that it has no parallel.  Every \nsecond's delay on your part loosens this man's bloody hands again, \nand leads to his escape.  My lord, I charge you hear me, and \ndespatch this matter on the instant.'\n\n'Oh dear me!' cried the chief magistrate; 'these an't business \nhours, you know--I wonder at you--how ungentlemanly it is of you--\nyou mustn't--you really mustn't.--And I suppose you are a Catholic \ntoo?'\n\n'I am,' said Mr Haredale.\n\n'God bless my soul, I believe people turn Catholics a'purpose to \nvex and worrit me,' cried the Lord Mayor.  'I wish you wouldn't \ncome here; they'll be setting the Mansion House afire next, and we \nshall have you to thank for it.  You must lock your prisoner up, \nsir--give him to a watchman--and--call again at a proper time.  \nThen we'll see about it!'\n\nBefore Mr Haredale could answer, the sharp closing of a door and \ndrawing of its bolts, gave notice that the Lord Mayor had retreated \nto his bedroom, and that further remonstrance would be unavailing.  \nThe two clients retreated likewise, and the porter shut them out \ninto the street.\n\n'That's the way he puts me off,' said the old gentleman, 'I can \nget no redress and no help.  What are you going to do, sir?'\n\n'To try elsewhere,' answered Mr Haredale, who was by this time on \nhorseback.\n\n'I feel for you, I assure you--and well I may, for we are in a \ncommon cause,' said the old gentleman.  'I may not have a house to \noffer you to-night; let me tender it while I can.  On second \nthoughts though,' he added, putting up a pocket-book he had \nproduced while speaking, 'I'll not give you a card, for if it was \nfound upon you, it might get you into trouble.  Langdale--that's my \nname--vintner and distiller--Holborn Hill--you're heartily welcome, \nif you'll come.'\n\nMr Haredale bowed, and rode off, close beside the chaise as before; \ndetermining to repair to the house of Sir John Fielding, who had \nthe reputation of being a bold and active magistrate, and fully \nresolved, in case the rioters should come upon them, to do \nexecution on the murderer with his own hands, rather than suffer \nhim to be released.\n\nThey arrived at the magistrate's dwelling, however, without \nmolestation (for the mob, as we have seen, were then intent on \ndeeper schemes), and knocked at the door.  As it had been pretty \ngenerally rumoured that Sir John was proscribed by the rioters, a \nbody of thief-takers had been keeping watch in the house all night.  \nTo one of them Mr Haredale stated his business, which appearing to \nthe man of sufficient moment to warrant his arousing the justice, \nprocured him an immediate audience.\n\nNo time was lost in committing the murderer to Newgate; then a new \nbuilding, recently completed at a vast expense, and considered to \nbe of enormous strength.  The warrant being made out, three of the \nthief-takers bound him afresh (he had been struggling, it seemed, \nin the chaise, and had loosened his manacles); gagged him lest they \nshould meet with any of the mob, and he should call to them for \nhelp; and seated themselves, along with him, in the carriage.  \nThese men being all well armed, made a formidable escort; but they \ndrew up the blinds again, as though the carriage were empty, and \ndirected Mr Haredale to ride forward, that he might not attract \nattention by seeming to belong to it.\n\nThe wisdom of this proceeding was sufficiently obvious, for as they \nhurried through the city they passed among several groups of men, \nwho, if they had not supposed the chaise to be quite empty, would \ncertainly have stopped it.  But those within keeping quite close, \nand the driver tarrying to be asked no questions, they reached the \nprison without interruption, and, once there, had him out, and safe \nwithin its gloomy walls, in a twinkling.\n\nWith eager eyes and strained attention, Mr Haredale saw him \nchained, and locked and barred up in his cell.  Nay, when he had \nleft the jail, and stood in the free street, without, he felt the \niron plates upon the doors, with his hands, and drew them over the \nstone wall, to assure himself that it was real; and to exult in its \nbeing so strong, and rough, and cold.  It was not until he turned \nhis back upon the jail, and glanced along the empty streets, so \nlifeless and quiet in the bright morning, that he felt the weight \nupon his heart; that he knew he was tortured by anxiety for those \nhe had left at home; and that home itself was but another bead in \nthe long rosary of his regrets.\n\n\n\nChapter 62\n\n\nThe prisoner, left to himself, sat down upon his bedstead: and \nresting his elbows on his knees, and his chin upon his hands, \nremained in that attitude for hours.  It would be hard to say, of \nwhat nature his reflections were.  They had no distinctness, and, \nsaving for some flashes now and then, no reference to his condition \nor the train of circumstances by which it had been brought about.  \nThe cracks in the pavement of his cell, the chinks in the wall \nwhere stone was joined to stone, the bars in the window, the iron \nring upon the floor,--such things as these, subsiding strangely \ninto one another, and awakening an indescribable kind of interest \nand amusement, engrossed his whole mind; and although at the bottom \nof his every thought there was an uneasy sense of guilt, and dread \nof death, he felt no more than that vague consciousness of it, \nwhich a sleeper has of pain.  It pursues him through his dreams, \ngnaws at the heart of all his fancied pleasures, robs the banquet \nof its taste, music of its sweetness, makes happiness itself \nunhappy, and yet is no bodily sensation, but a phantom without \nshape, or form, or visible presence; pervading everything, but \nhaving no existence; recognisable everywhere, but nowhere seen, or \ntouched, or met with face to face, until the sleep is past, and \nwaking agony returns.\n\nAfter a long time the door of his cell opened.  He looked up; saw \nthe blind man enter; and relapsed into his former position.\n\nGuided by his breathing, the visitor advanced to where he sat; and \nstopping beside him, and stretching out his hand to assure himself \nthat he was right, remained, for a good space, silent.\n\n'This is bad, Rudge.  This is bad,' he said at length.\n\nThe prisoner shuffled with his feet upon the ground in turning his \nbody from him, but made no other answer.\n\n'How were you taken?' he asked.  'And where?  You never told me \nmore than half your secret.  No matter; I know it now.  How was it, \nand where, eh?' he asked again, coming still nearer to him.\n\n'At Chigwell,' said the other.\n\n'At Chigwell!  How came you there?'\n\n'Because I went there to avoid the man I stumbled on,' he answered.  \n'Because I was chased and driven there, by him and Fate.  Because I \nwas urged to go there, by something stronger than my own will.  \nWhen I found him watching in the house she used to live in, night \nafter night, I knew I never could escape him--never! and when I \nheard the Bell--'\n\nHe shivered; muttered that it was very cold; paced quickly up and \ndown the narrow cell; and sitting down again, fell into his old \nposture.\n\n'You were saying,' said the blind man, after another pause, 'that \nwhen you heard the Bell--'\n\n'Let it be, will you?' he retorted in a hurried voice.  'It hangs \nthere yet.'\n\nThe blind man turned a wistful and inquisitive face towards him, \nbut he continued to speak, without noticing him.\n\n'I went to Chigwell, in search of the mob.  I have been so hunted \nand beset by this man, that I knew my only hope of safety lay in \njoining them.  They had gone on before; I followed them when it \nleft off.'\n\n'When what left off?'\n\n'The Bell.  They had quitted the place.  I hoped that some of them \nmight be still lingering among the ruins, and was searching for \nthem when I heard--' he drew a long breath, and wiped his forehead \nwith his sleeve--'his voice.'\n\n'Saying what?'\n\n'No matter what.  I don't know.  I was then at the foot of the \nturret, where I did the--'\n\n'Ay,' said the blind man, nodding his head with perfect composure, \n'I understand.'\n\n'I climbed the stair, or so much of it as was left; meaning to hide \ntill he had gone.  But he heard me; and followed almost as soon as \nI set foot upon the ashes.'\n\n'You might have hidden in the wall, and thrown him down, or stabbed \nhim,' said the blind man.\n\n'Might I?  Between that man and me, was one who led him on--I saw \nit, though he did not--and raised above his head a bloody hand.  It \nwas in the room above that HE and I stood glaring at each other on \nthe night of the murder, and before he fell he raised his hand like \nthat, and fixed his eyes on me.  I knew the chase would end there.'\n\n'You have a strong fancy,' said the blind man, with a smile.\n\n'Strengthen yours with blood, and see what it will come to.'\n\nHe groaned, and rocked himself, and looking up for the first time, \nsaid, in a low, hollow voice:\n\n'Eight-and-twenty years!  Eight-and-twenty years!  He has never \nchanged in all that time, never grown older, nor altered in the \nleast degree.  He has been before me in the dark night, and the \nbroad sunny day; in the twilight, the moonlight, the sunlight, the \nlight of fire, and lamp, and candle; and in the deepest gloom.  \nAlways the same!  In company, in solitude, on land, on shipboard; \nsometimes leaving me alone for months, and sometimes always with \nme.  I have seen him, at sea, come gliding in the dead of night \nalong the bright reflection of the moon in the calm water; and I \nhave seen him, on quays and market-places, with his hand uplifted, \ntowering, the centre of a busy crowd, unconscious of the terrible \nform that had its silent stand among them.  Fancy!  Are you real?  \nAm I?  Are these iron fetters, riveted on me by the smith's hammer, \nor are they fancies I can shatter at a blow?'\n\nThe blind man listened in silence.\n\n'Fancy!  Do I fancy that I killed him?  Do I fancy that as I left \nthe chamber where he lay, I saw the face of a man peeping from a \ndark door, who plainly showed me by his fearful looks that he \nsuspected what I had done?  Do I remember that I spoke fairly to \nhim--that I drew nearer--nearer yet--with the hot knife in my \nsleeve?  Do I fancy how HE died?  Did he stagger back into the \nangle of the wall into which I had hemmed him, and, bleeding \ninwardly, stand, not fail, a corpse before me?  Did I see him, for \nan instant, as I see you now, erect and on his feet--but dead!'\n\nThe blind man, who knew that he had risen, motioned him to sit down \nagain upon his bedstead; but he took no notice of the gesture.\n\n'It was then I thought, for the first time, of fastening the murder \nupon him.  It was then I dressed him in my clothes, and dragged him \ndown the back-stairs to the piece of water.  Do I remember \nlistening to the bubbles that came rising up when I had rolled him \nin?  Do I remember wiping the water from my face, and because the \nbody splashed it there, in its descent, feeling as if it MUST be \nblood?\n\n'Did I go home when I had done?  And oh, my God! how long it took \nto do!  Did I stand before my wife, and tell her?  Did I see her \nfall upon the ground; and, when I stooped to raise her, did she \nthrust me back with a force that cast me off as if I had been a \nchild, staining the hand with which she clasped my wrist?  Is THAT \nfancy?\n\n'Did she go down upon her knees, and call on Heaven to witness that \nshe and her unborn child renounced me from that hour; and did she, \nin words so solemn that they turned me cold--me, fresh from the \nhorrors my own hands had made--warn me to fly while there was time; \nfor though she would be silent, being my wretched wife, she would \nnot shelter me?  Did I go forth that night, abjured of God and man, \nand anchored deep in hell, to wander at my cable's length about the \nearth, and surely be drawn down at last?'\n\n'Why did you return?  said the blind man.\n\n'Why is blood red?  I could no more help it, than I could live \nwithout breath.  I struggled against the impulse, but I was drawn \nback, through every difficult and adverse circumstance, as by a \nmighty engine.  Nothing could stop me.  The day and hour were none \nof my choice.  Sleeping and waking, I had been among the old haunts \nfor years--had visited my own grave.  Why did I come back?  Because \nthis jail was gaping for me, and he stood beckoning at the door.'\n\n'You were not known?' said the blind man.\n\n'I was a man who had been twenty-two years dead.  No.  I was not \nknown.'\n\n'You should have kept your secret better.'\n\n'MY secret?  MINE?  It was a secret, any breath of air could \nwhisper at its will.  The stars had it in their twinkling, the \nwater in its flowing, the leaves in their rustling, the seasons in \ntheir return.  It lurked in strangers' faces, and their voices.  \nEverything had lips on which it always trembled.--MY secret!'\n\n'It was revealed by your own act at any rate,' said the blind man.\n\n'The act was not mine.  I did it, but it was not mine.  I was \nforced at times to wander round, and round, and round that spot.  \nIf you had chained me up when the fit was on me, I should have \nbroken away, and gone there.  As truly as the loadstone draws iron \ntowards it, so he, lying at the bottom of his grave, could draw me \nnear him when he would.  Was that fancy?  Did I like to go there, \nor did I strive and wrestle with the power that forced me?'\n\nThe blind man shrugged his shoulders, and smiled incredulously.  \nThe prisoner again resumed his old attitude, and for a long time \nboth were mute.\n\n'I suppose then,' said his visitor, at length breaking silence, \n'that you are penitent and resigned; that you desire to make peace \nwith everybody (in particular, with your wife who has brought you \nto this); and that you ask no greater favour than to be carried to \nTyburn as soon as possible?  That being the case, I had better take \nmy leave.  I am not good enough to be company for you.'\n\n'Have I not told you,' said the other fiercely, 'that I have \nstriven and wrestled with the power that brought me here?  Has my \nwhole life, for eight-and-twenty years, been one perpetual \nstruggle and resistance, and do you think I want to lie down and \ndie?  Do all men shrink from death--I most of all!'\n\n'That's better said.  That's better spoken, Rudge--but I'll not \ncall you that again--than anything you have said yet,' returned the \nblind man, speaking more familiarly, and laying his hands upon his \narm.  'Lookye,--I never killed a man myself, for I have never been \nplaced in a position that made it worth my while.  Farther, I am \nnot an advocate for killing men, and I don't think I should \nrecommend it or like it--for it's very hazardous--under any \ncircumstances.  But as you had the misfortune to get into this \ntrouble before I made your acquaintance, and as you have been my \ncompanion, and have been of use to me for a long time now, I \noverlook that part of the matter, and am only anxious that you \nshouldn't die unnecessarily.  Now, I do not consider that, at \npresent, it is at all necessary.'\n\n'What else is left me?' returned the prisoner.  'To eat my way \nthrough these walls with my teeth?'\n\n'Something easier than that,' returned his friend.  'Promise me \nthat you will talk no more of these fancies of yours--idle, foolish \nthings, quite beneath a man--and I'll tell you what I mean.'\n\n'Tell me,' said the other.\n\n'Your worthy lady with the tender conscience; your scrupulous, \nvirtuous, punctilious, but not blindly affectionate wife--'\n\n'What of her?'\n\n'Is now in London.'\n\n'A curse upon her, be she where she may!'\n\n'That's natural enough.  If she had taken her annuity as usual, you \nwould not have been here, and we should have been better off.  But \nthat's apart from the business.  She's in London.  Scared, as I \nsuppose, and have no doubt, by my representation when I waited upon \nher, that you were close at hand (which I, of course, urged only as \nan inducement to compliance, knowing that she was not pining to see \nyou), she left that place, and travelled up to London.'\n\n'How do you know?'\n\n'From my friend the noble captain--the illustrious general--the \nbladder, Mr Tappertit.  I learnt from him the last time I saw him, \nwhich was yesterday, that your son who is called Barnaby--not after \nhis father, I suppose--'\n\n'Death! does that matter now!'\n\n'--You are impatient,' said the blind man, calmly; 'it's a good \nsign, and looks like life--that your son Barnaby had been lured \naway from her by one of his companions who knew him of old, at \nChigwell; and that he is now among the rioters.'\n\n'And what is that to me?  If father and son be hanged together, \nwhat comfort shall I find in that?'\n\n'Stay--stay, my friend,' returned the blind man, with a cunning \nlook, 'you travel fast to journeys' ends.  Suppose I track my lady \nout, and say thus much: \"You want your son, ma'am--good.  I, \nknowing those who tempt him to remain among them, can restore him \nto you, ma'am--good.  You must pay a price, ma'am, for his \nrestoration--good again.  The price is small, and easy to be paid--\ndear ma'am, that's best of all.\"'\n\n'What mockery is this?'\n\n'Very likely, she may reply in those words.  \"No mockery at all,\" I \nanswer: \"Madam, a person said to be your husband (identity is \ndifficult of proof after the lapse of many years) is in prison, his \nlife in peril--the charge against him, murder.  Now, ma'am, your \nhusband has been dead a long, long time.  The gentleman never can \nbe confounded with him, if you will have the goodness to say a few \nwords, on oath, as to when he died, and how; and that this person \n(who I am told resembles him in some degree) is no more he than I \nam.  Such testimony will set the question quite at rest.  Pledge \nyourself to me to give it, ma' am, and I will undertake to keep \nyour son (a fine lad) out of harm's way until you have done this \ntrifling service, when he shall he delivered up to you, safe and \nsound.  On the other hand, if you decline to do so, I fear he will \nbe betrayed, and handed over to the law, which will assuredly \nsentence him to suffer death.  It is, in fact, a choice between his \nlife and death.  If you refuse, he swings.  If you comply, the \ntimber is not grown, nor the hemp sown, that shall do him any \nharm.\"'\n\n'There is a gleam of hope in this!' cried the prisoner.\n\n'A gleam!' returned his friend, 'a noon-blaze; a full and glorious \ndaylight.  Hush! I hear the tread of distant feet.  Rely on me.'\n\n'When shall I hear more?'\n\n'As soon as I do.  I should hope, to-morrow.  They are coming to \nsay that our time for talk is over.  I hear the jingling of the \nkeys.  Not another word of this just now, or they may overhear us.'\n\nAs he said these words, the lock was turned, and one of the prison \nturnkeys appearing at the door, announced that it was time for \nvisitors to leave the jail.\n\n'So soon!' said Stagg, meekly.  'But it can't be helped.  Cheer up, \nfriend.  This mistake will soon be set at rest, and then you are a \nman again!  If this charitable gentleman will lead a blind man (who \nhas nothing in return but prayers) to the prison-porch, and set him \nwith his face towards the west, he will do a worthy deed.  Thank \nyou, good sir.  I thank you very kindly.'\n\nSo saying, and pausing for an instant at the door to turn his \ngrinning face towards his friend, he departed.\n\nWhen the officer had seen him to the porch, he returned, and again \nunlocking and unbarring the door of the cell, set it wide open, \ninforming its inmate that he was at liberty to walk in the adjacent \nyard, if he thought proper, for an hour.\n\nThe prisoner answered with a sullen nod; and being left alone \nagain, sat brooding over what he had heard, and pondering upon the \nhopes the recent conversation had awakened; gazing abstractedly, \nthe while he did so, on the light without, and watching the shadows \nthrown by one wall on another, and on the stone-paved ground.\n\nIt was a dull, square yard, made cold and gloomy by high walls, and \nseeming to chill the very sunlight.  The stone, so bare, and \nrough, and obdurate, filled even him with longing thoughts of \nmeadow-land and trees; and with a burning wish to be at liberty.  \nAs he looked, he rose, and leaning against the door-post, gazed up \nat the bright blue sky, smiling even on that dreary home of crime.  \nHe seemed, for a moment, to remember lying on his back in some \nsweet-scented place, and gazing at it through moving branches, long \nago.\n\nHis attention was suddenly attracted by a clanking sound--he knew \nwhat it was, for he had startled himself by making the same noise \nin walking to the door.  Presently a voice began to sing, and he \nsaw the shadow of a figure on the pavement.  It stopped--was \nsilent all at once, as though the person for a moment had forgotten \nwhere he was, but soon remembered--and so, with the same clanking \nnoise, the shadow disappeared.\n\nHe walked out into the court and paced it to and fro; startling the \nechoes, as he went, with the harsh jangling of his fetters.  There \nwas a door near his, which, like his, stood ajar.\n\nHe had not taken half-a-dozen turns up and down the yard, when, \nstanding still to observe this door, he heard the clanking sound \nagain.  A face looked out of the grated window--he saw it very \ndimly, for the cell was dark and the bars were heavy--and directly \nafterwards, a man appeared, and came towards him.\n\nFor the sense of loneliness he had, he might have been in jail a \nyear.  Made eager by the hope of companionship, he quickened his \npace, and hastened to meet the man half way--\n\nWhat was this!  His son!\n\nThey stood face to face, staring at each other.  He shrinking and \ncowed, despite himself; Barnahy struggling with his imperfect \nmemory, and wondering where he had seen that face before.  He was \nnot uncertain long, for suddenly he laid hands upon him, and \nstriving to bear him to the ground, cried:\n\n'Ah! I know!  You are the robber!'\n\nHe said nothing in reply at first, but held down his head, and \nstruggled with him silently.  Finding the younger man too strong \nfor him, he raised his face, looked close into his eyes, and said,\n\n'I am your father.'\n\nGod knows what magic the name had for his ears; but Barnaby \nreleased his hold, fell back, and looked at him aghast.  Suddenly \nhe sprung towards him, put his arms about his neck, and pressed his \nhead against his cheek.\n\nYes, yes, he was; he was sure he was.  But where had he been so \nlong, and why had he left his mother by herself, or worse than by \nherself, with her poor foolish boy?  And had she really been as \nhappy as they said?  And where was she?  Was she near there?  She \nwas not happy now, and he in jail?  Ah, no.\n\nNot a word was said in answer; but Grip croaked loudly, and hopped \nabout them, round and round, as if enclosing them in a magic \ncircle, and invoking all the powers of mischief.\n\n\n\nChapter 63\n\n\nDuring the whole of this day, every regiment in or near the \nmetropolis was on duty in one or other part of the town; and the \nregulars and militia, in obedience to the orders which were sent to \nevery barrack and station within twenty-four hours' journey, began \nto pour in by all the roads.  But the disturbance had attained to \nsuch a formidable height, and the rioters had grown, with impunity, \nto be so audacious, that the sight of this great force, continually \naugmented by new arrivals, instead of operating as a check, \nstimulated them to outrages of greater hardihood than any they had \nyet committed; and helped to kindle a flame in London, the like of \nwhich had never been beheld, even in its ancient and rebellious \ntimes.\n\nAll yesterday, and on this day likewise, the commander-in-chief \nendeavoured to arouse the magistrates to a sense of their duty, and \nin particular the Lord Mayor, who was the faintest-hearted and most \ntimid of them all.  With this object, large bodies of the soldiery \nwere several times despatched to the Mansion House to await his \norders: but as he could, by no threats or persuasions, be induced \nto give any, and as the men remained in the open street, \nfruitlessly for any good purpose, and thrivingly for a very bad \none; these laudable attempts did harm rather than good.  For the \ncrowd, becoming speedily acquainted with the Lord Mayor's temper, \ndid not fail to take advantage of it by boasting that even the \ncivil authorities were opposed to the Papists, and could not find \nit in their hearts to molest those who were guilty of no other \noffence.  These vaunts they took care to make within the hearing of \nthe soldiers; and they, being naturally loth to quarrel with the \npeople, received their advances kindly enough: answering, when \nthey were asked if they desired to fire upon their countrymen, 'No, \nthey would be damned if they did;' and showing much honest \nsimplicity and good nature.  The feeling that the military were No-\nPopery men, and were ripe for disobeying orders and joining the \nmob, soon became very prevalent in consequence.  Rumours of their \ndisaffection, and of their leaning towards the popular cause, \nspread from mouth to mouth with astonishing rapidity; and whenever \nthey were drawn up idly in the streets or squares, there was sure \nto be a crowd about them, cheering and shaking hands, and treating \nthem with a great show of confidence and affection.\n\nBy this time, the crowd was everywhere; all concealment and \ndisguise were laid aside, and they pervaded the whole town.  If \nany man among them wanted money, he had but to knock at the door of \na dwelling-house, or walk into a shop, and demand it in the rioters \nname; and his demand was instantly complied with.  The peaceable \ncitizens being afraid to lay hands upon them, singly and alone, it \nmay be easily supposed that when gathered together in bodies, they \nwere perfectly secure from interruption.  They assembled in the \nstreets, traversed them at their will and pleasure, and publicly \nconcerted their plans.  Business was quite suspended; the greater \npart of the shops were closed; most of the houses displayed a blue \nflag in token of their adherence to the popular side; and even the \nJews in Houndsditch, Whitechapel, and those quarters, wrote upon \ntheir doors or window-shutters, 'This House is a True Protestant.'  \nThe crowd was the law, and never was the law held in greater dread, \nor more implicitly obeyed.\n\nIt was about six o'clock in the evening, when a vast mob poured \ninto Lincoln's Inn Fields by every avenue, and divided--evidently \nin pursuance of a previous design--into several parties.  It must \nnot be understood that this arrangement was known to the whole \ncrowd, but that it was the work of a few leaders; who, mingling \nwith the men as they came upon the ground, and calling to them to \nfall into this or that parry, effected it as rapidly as if it had \nbeen determined on by a council of the whole number, and every man \nhad known his place.\n\nIt was perfectly notorious to the assemblage that the largest \nbody, which comprehended about two-thirds of the whole, was \ndesigned for the attack on Newgate.  It comprehended all the \nrioters who had been conspicuous in any of their former \nproceedings; all those whom they recommended as daring hands and \nfit for the work; all those whose companions had been taken in the \nriots; and a great number of people who were relatives or friends \nof felons in the jail.  This last class included, not only the most \ndesperate and utterly abandoned villains in London, but some who \nwere comparatively innocent.  There was more than one woman there, \ndisguised in man's attire, and bent upon the rescue of a child or \nbrother.  There were the two sons of a man who lay under sentence \nof death, and who was to be executed along with three others, on \nthe next day but one.  There was a great parry of boys whose \nfellow-pickpockets were in the prison; and at the skirts of all, \na score of miserable women, outcasts from the world, seeking to \nrelease some other fallen creature as miserable as themselves, or \nmoved by a general sympathy perhaps--God knows--with all who were \nwithout hope, and wretched.\n\nOld swords, and pistols without ball or powder; sledge-hammers, \nknives, axes, saws, and weapons pillaged from the butchers' shops; \na forest of iron bars and wooden clubs; long ladders for scaling \nthe walls, each carried on the shoulders of a dozen men; lighted \ntorches; tow smeared with pitch, and tar, and brimstone; staves \nroughly plucked from fence and paling; and even crutches taken from \ncrippled beggars in the streets; composed their arms.  When all was \nready, Hugh and Dennis, with Simon Tappertit between them, led the \nway.  Roaring and chafing like an angry sea, the crowd pressed \nafter them.\n\nInstead of going straight down Holborn to the jail, as all \nexpected, their leaders took the way to Clerkenwell, and pouring \ndown a quiet street, halted before a locksmith's house--the Golden \nKey.\n\n'Beat at the door,' cried Hugh to the men about him.  'We want one \nof his craft to-night.  Beat it in, if no one answers.'\n\nThe shop was shut.  Both door and shutters were of a strong and \nsturdy kind, and they knocked without effect.  But the impatient \ncrowd raising a cry of 'Set fire to the house!' and torches being \npassed to the front, an upper window was thrown open, and the stout \nold locksmith stood before them.\n\n'What now, you villains!' he demanded.  'Where is my daughter?'\n\n'Ask no questions of us, old man,' retorted Hugh, waving his \ncomrades to be silent, 'but come down, and bring the tools of your \ntrade.  We want you.'\n\n'Want me!' cried the locksmith, glancing at the regimental dress he \nwore: 'Ay, and if some that I could name possessed the hearts of \nmice, ye should have had me long ago.  Mark me, my lad--and you \nabout him do the same.  There are a score among ye whom I see now \nand know, who are dead men from this hour.  Begone! and rob an \nundertaker's while you can!  You'll want some coffins before long.'\n\n'Will you come down?' cried Hugh.\n\n'Will you give me my daughter, ruffian?' cried the locksmith.\n\n'I know nothing of her,' Hugh rejoined.  'Burn the door!'\n\n'Stop!' cried the locksmith, in a voice that made them falter--\npresenting, as he spoke, a gun.  'Let an old man do that.  You can \nspare him better.'\n\nThe young fellow who held the light, and who was stooping down \nbefore the door, rose hastily at these words, and fell back.  The \nlocksmith ran his eye along the upturned faces, and kept the weapon \nlevelled at the threshold of his house.  It had no other rest than \nhis shoulder, but was as steady as the house itself.\n\n'Let the man who does it, take heed to his prayers,' he said \nfirmly; 'I warn him.'\n\nSnatching a torch from one who stood near him, Hugh was stepping \nforward with an oath, when he was arrested by a shrill and piercing \nshriek, and, looking upward, saw a fluttering garment on the house-\ntop.\n\nThere was another shriek, and another, and then a shrill voice \ncried, 'Is Simmun below!' At the same moment a lean neck was \nstretched over the parapet, and Miss Miggs, indistinctly seen in \nthe gathering gloom of evening, screeched in a frenzied manner, \n'Oh! dear gentlemen, let me hear Simmuns's answer from his own \nlips.  Speak to me, Simmun.  Speak to me!'\n\nMr Tappertit, who was not at all flattered by this compliment, \nlooked up, and bidding her hold her peace, ordered her to come down \nand open the door, for they wanted her master, and would take no \ndenial.\n\n'Oh good gentlemen!' cried Miss Miggs.  'Oh my own precious, \nprecious Simmun--'\n\n'Hold your nonsense, will you!' retorted Mr Tappertit; 'and come \ndown and open the door.--G. Varden, drop that gun, or it will be \nworse for you.'\n\n'Don't mind his gun,' screamed Miggs.  'Simmun and gentlemen, I \npoured a mug of table-beer right down the barrel.'\n\nThe crowd gave a loud shout, which was followed by a roar of \nlaughter.\n\n'It wouldn't go off, not if you was to load it up to the muzzle,' \nscreamed Miggs.  'Simmun and gentlemen, I'm locked up in the front \nattic, through the little door on the right hand when you think \nyou've got to the very top of the stairs--and up the flight of \ncorner steps, being careful not to knock your heads against the \nrafters, and not to tread on one side in case you should fall into \nthe two-pair bedroom through the lath and plasture, which do not \nbear, but the contrairy.  Simmun and gentlemen, I've been locked up \nhere for safety, but my endeavours has always been, and always will \nbe, to be on the right side--the blessed side and to prenounce the \nPope of Babylon, and all her inward and her outward workings, which \nis Pagin.  My sentiments is of little consequences, I know,' cried \nMiggs, with additional shrillness, 'for my positions is but a \nservant, and as sich, of humilities, still I gives expressions to \nmy feelings, and places my reliances on them which entertains my \nown opinions!'\n\nWithout taking much notice of these outpourings of Miss Miggs after \nshe had made her first announcement in relation to the gun, the \ncrowd raised a ladder against the window where the locksmith stood, \nand notwithstanding that he closed, and fastened, and defended it \nmanfully, soon forced an entrance by shivering the glass and \nbreaking in the frames.  After dealing a few stout blows about him, \nhe found himself defenceless, in the midst of a furious crowd, \nwhich overflowed the room and softened off in a confused heap of \nfaces at the door and window.\n\nThey were very wrathful with him (for he had wounded two men), and \neven called out to those in front, to bring him forth and hang him \non a lamp-post.  But Gabriel was quite undaunted, and looked from \nHugh and Dennis, who held him by either arm, to Simon Tappertit, \nwho confronted him.\n\n'You have robbed me of my daughter,' said the locksmith, 'who is \nfar dearer to me than my life; and you may take my life, if you \nwill.  I bless God that I have been enabled to keep my wife free of \nthis scene; and that He has made me a man who will not ask mercy at \nsuch hands as yours.'\n\n'And a wery game old gentleman you are,' said Mr Dennis, \napprovingly; 'and you express yourself like a man.  What's the \nodds, brother, whether it's a lamp-post to-night, or a feather-\nbed ten year to come, eh?'\n\nThe locksmith glanced at him disdainfully, but returned no other \nanswer.\n\n'For my part,' said the hangman, who particularly favoured the \nlamp-post suggestion, 'I honour your principles.  They're mine \nexactly.  In such sentiments as them,' and here he emphasised his \ndiscourse with an oath, 'I'm ready to meet you or any man halfway.--\nHave you got a bit of cord anywheres handy?  Don't put yourself \nout of the way, if you haven't.  A handkecher will do.'\n\n'Don't be a fool, master,' whispered Hugh, seizing Varden roughly \nby the shoulder; 'but do as you're bid.  You'll soon hear what \nyou're wanted for.  Do it!'\n\n'I'll do nothing at your request, or that of any scoundrel here,' \nreturned the locksmith.  'If you want any service from me, you may \nspare yourselves the pains of telling me what it is.  I tell you, \nbeforehand, I'll do nothing for you.'\n\nMr Dennis was so affected by this constancy on the part of the \nstaunch old man, that he protested--almost with tears in his eyes--\nthat to baulk his inclinations would be an act of cruelty and hard \ndealing to which he, for one, never could reconcile his conscience.  \nThe gentleman, he said, had avowed in so many words that he was \nready for working off; such being the case, he considered it their \nduty, as a civilised and enlightened crowd, to work him off.  It \nwas not often, he observed, that they had it in their power to \naccommodate themselves to the wishes of those from whom they had \nthe misfortune to differ.  Having now found an individual who \nexpressed a desire which they could reasonably indulge (and for \nhimself he was free to confess that in his opinion that desire did \nhonour to his feelings), he hoped they would decide to accede to \nhis proposition before going any further.  It was an experiment \nwhich, skilfully and dexterously performed, would be over in five \nminutes, with great comfort and satisfaction to all parties; and \nthough it did not become him (Mr Dennis) to speak well of himself \nhe trusted he might be allowed to say that he had practical \nknowledge of the subject, and, being naturally of an obliging and \nfriendly disposition, would work the gentleman off with a deal of \npleasure.\n\nThese remarks, which were addressed in the midst of a frightful din \nand turmoil to those immediately about him, were received with \ngreat favour; not so much, perhaps, because of the hangman's \neloquence, as on account of the locksmith's obstinacy.  Gabriel was \nin imminent peril, and he knew it; but he preserved a steady \nsilence; and would have done so, if they had been debating whether \nthey should roast him at a slow fire.\n\nAs the hangman spoke, there was some stir and confusion on the \nladder; and directly he was silent--so immediately upon his holding \nhis peace, that the crowd below had no time to learn what he had \nbeen saying, or to shout in response--some one at the window cried:\n\n'He has a grey head.  He is an old man: Don't hurt him!'\n\nThe locksmith turned, with a start, towards the place from which \nthe words had come, and looked hurriedly at the people who were \nhanging on the ladder and clinging to each other.\n\n'Pay no respect to my grey hair, young man,' he said, answering the \nvoice and not any one he saw.  'I don't ask it.  My heart is green \nenough to scorn and despise every man among you, band of robbers \nthat you are!'\n\nThis incautious speech by no means tended to appease the ferocity \nof the crowd.  They cried again to have him brought out; and it \nwould have gone hard with the honest locksmith, but that Hugh \nreminded them, in answer, that they wanted his services, and must \nhave them.\n\n'So, tell him what we want,' he said to Simon Tappertit, 'and \nquickly.  And open your ears, master, if you would ever use them \nafter to-night.'\n\nGabriel folded his arms, which were now at liberty, and eyed his \nold 'prentice in silence.\n\n'Lookye, Varden,' said Sim, 'we're bound for Newgate.'\n\n'I know you are,' returned the locksmith.  'You never said a truer \nword than that.'\n\n'To burn it down, I mean,' said Simon, 'and force the gates, and \nset the prisoners at liberty.  You helped to make the lock of the \ngreat door.'\n\n'I did,' said the locksmith.  'You owe me no thanks for that--as \nyou'll find before long.'\n\n'Maybe,' returned his journeyman, 'but you must show us how to \nforce it.'\n\n'Must I!'\n\n'Yes; for you know, and I don't.  You must come along with us, and \npick it with your own hands.'\n\n'When I do,' said the locksmith quietly, 'my hands shall drop off \nat the wrists, and you shall wear them, Simon Tappertit, on your \nshoulders for epaulettes.'\n\n'We'll see that,' cried Hugh, interposing, as the indignation of \nthe crowd again burst forth.  'You fill a basket with the tools \nhe'll want, while I bring him downstairs.  Open the doors below, \nsome of you.  And light the great captain, others!  Is there no \nbusiness afoot, my lads, that you can do nothing but stand and \ngrumble?'\n\nThey looked at one another, and quickly dispersing, swarmed over \nthe house, plundering and breaking, according to their custom, and \ncarrying off such articles of value as happened to please their \nfancy.  They had no great length of time for these proceedings, for \nthe basket of tools was soon prepared and slung over a man's \nshoulders.  The preparations being now completed, and everything \nready for the attack, those who were pillaging and destroying in \nthe other rooms were called down to the workshop.  They were about \nto issue forth, when the man who had been last upstairs, stepped \nforward, and asked if the young woman in the garret (who was making \na terrible noise, he said, and kept on screaming without the least \ncessation) was to be released?\n\nFor his own part, Simon Tappertit would certainly have replied in \nthe negative, but the mass of his companions, mindful of the good \nservice she had done in the matter of the gun, being of a different \nopinion, he had nothing for it but to answer, Yes.  The man, \naccordingly, went back again to the rescue, and presently returned \nwith Miss Miggs, limp and doubled up, and very damp from much \nweeping.\n\nAs the young lady had given no tokens of consciousness on their way \ndownstairs, the bearer reported her either dead or dying; and being \nat some loss what to do with her, was looking round for a \nconvenient bench or heap of ashes on which to place her senseless \nform, when she suddenly came upon her feet by some mysterious \nmeans, thrust back her hair, stared wildly at Mr Tappertit, cried, \n'My Simmuns's life is not a wictim!' and dropped into his arms with \nsuch promptitude that he staggered and reeled some paces back, \nbeneath his lovely burden.\n\n'Oh bother!' said Mr Tappertit.  'Here.  Catch hold of her, \nsomebody.  Lock her up again; she never ought to have been let out.'\n\n'My Simmun!' cried Miss Miggs, in tears, and faintly.  'My for \never, ever blessed Simmun!'\n\n'Hold up, will you,' said Mr Tappertit, in a very unresponsive \ntone, 'I'll let you fall if you don't.  What are you sliding your \nfeet off the ground for?'\n\n'My angel Simmuns!' murmured Miggs--'he promised--'\n\n'Promised!  Well, and I'll keep my promise,' answered Simon, \ntestily.  'I mean to provide for you, don't I?  Stand up!'\n\n'Where am I to go?  What is to become of me after my actions of \nthis night!' cried Miggs.  'What resting-places now remains but in \nthe silent tombses!'\n\n'I wish you was in the silent tombses, I do,' cried Mr Tappertit, \n'and boxed up tight, in a good strong one.  Here,' he cried to one \nof the bystanders, in whose ear he whispered for a moment: 'Take \nher off, will you.  You understand where?'\n\nThe fellow nodded; and taking her in his arms, notwithstanding her \nbroken protestations, and her struggles (which latter species of \nopposition, involving scratches, was much more difficult of \nresistance), carried her away.  They who were in the house poured \nout into the street; the locksmith was taken to the head of the \ncrowd, and required to walk between his two conductors; the whole \nbody was put in rapid motion; and without any shouts or noise they \nbore down straight on Newgate, and halted in a dense mass before \nthe prison-gate.\n\n\n\nChapter 64\n\n\nBreaking the silence they had hitherto preserved, they raised a \ngreat cry as soon as they were ranged before the jail, and demanded \nto speak to the governor.  This visit was not wholly unexpected, \nfor his house, which fronted the street, was strongly barricaded, \nthe wicket-gate of the prison was closed up, and at no loophole or \ngrating was any person to be seen.  Before they had repeated their \nsummons many times, a man appeared upon the roof of the governor's \nhouse, and asked what it was they wanted.\n\nSome said one thing, some another, and some only groaned and \nhissed.  It being now nearly dark, and the house high, many persons \nin the throng were not aware that any one had come to answer them, \nand continued their clamour until the intelligence was gradually \ndiffused through the whole concourse.  Ten minutes or more elapsed \nbefore any one voice could be heard with tolerable distinctness; \nduring which interval the figure remained perched alone, against \nthe summer-evening sky, looking down into the troubled street.\n\n'Are you,' said Hugh at length, 'Mr Akerman, the head jailer here?'\n\n'Of course he is, brother,' whispered Dennis.  But Hugh, without \nminding him, took his answer from the man himself.\n\n'Yes,' he said.  'I am.'\n\n'You have got some friends of ours in your custody, master.'\n\n'I have a good many people in my custody.'  He glanced downward, as \nhe spoke, into the jail: and the feeling that he could see into \nthe different yards, and that he overlooked everything which was \nhidden from their view by the rugged walls, so lashed and goaded \nthe mob, that they howled like wolves.\n\n'Deliver up our friends,' said Hugh, 'and you may keep the rest.'\n\n'It's my duty to keep them all.  I shall do my duty.'\n\n'If you don't throw the doors open, we shall break 'em down,' said \nHugh; 'for we will have the rioters out.'\n\n'All I can do, good people,' Akerman replied, 'is to exhort you to \ndisperse; and to remind you that the consequences of any \ndisturbance in this place, will be very severe, and bitterly \nrepented by most of you, when it is too late.'\n\nHe made as though he would retire when he said these words, but he \nwas checked by the voice of the locksmith.\n\n'Mr Akerman,' cried Gabriel, 'Mr Akerman.'\n\n'I will hear no more from any of you,' replied the governor, \nturning towards the speaker, and waving his hand.\n\n'But I am not one of them,' said Gabriel.  'I am an honest man, \nMr Akerman; a respectable tradesman--Gabriel Varden, the locksmith.  \nYou know me?' \n\n'You among the crowd!' cried the governor in an altered voice.\n\n'Brought here by force--brought here to pick the lock of the great \ndoor for them,' rejoined the locksmith.  'Bear witness for me, Mr \nAkerman, that I refuse to do it; and that I will not do it, come \nwhat may of my refusal.  If any violence is done to me, please to \nremember this.'\n\n'Is there no way (if helping you?' said the governor.\n\n'None, Mr Akerman.  You'll do your duty, and I'll do mine.  Once \nagain, you robbers and cut-throats,' said the locksmith, turning \nround upon them, 'I refuse.  Ah!  Howl till you're hoarse.  I \nrefuse.'\n\n'Stay--stay!' said the jailer, hastily.  'Mr Varden, I know you for \na worthy man, and one who would do no unlawful act except upon \ncompulsion--'\n\n'Upon compulsion, sir,' interposed the locksmith, who felt that the \ntone in which this was said, conveyed the speaker's impression that \nhe had ample excuse for yielding to the furious multitude who beset \nand hemmed him in, on every side, and among whom he stood, an old \nman, quite alone; 'upon compulsion, sir, I'll do nothing.'\n\n'Where is that man,' said the keeper, anxiously, 'who spoke to me \njust now?'\n\n'Here!' Hugh replied.\n\n'Do you know what the guilt of murder is, and that by keeping that \nhonest tradesman at your side you endanger his life!'\n\n'We know it very well,' he answered, 'for what else did we bring \nhim here?  Let's have our friends, master, and you shall have your \nfriend.  Is that fair, lads?'\n\nThe mob replied to him with a loud Hurrah!\n\n'You see how it is, sir?' cried Varden.  'Keep 'em out, in King \nGeorge's name.  Remember what I have said.  Good night!'\n\nThere was no more parley.  A shower of stones and other missiles \ncompelled the keeper of the jail to retire; and the mob, pressing \non, and swarming round the walls, forced Gabriel Varden close up to \nthe door.\n\nIn vain the basket of tools was laid upon the ground before him, \nand he was urged in turn by promises, by blows, by offers of \nreward, and threats of instant death, to do the office for which \nthey had brought him there.  'No,' cried the sturdy locksmith, 'I \nwill not!'\n\nHe had never loved his life so well as then, but nothing could move \nhim.  The savage faces that glared upon him, look where he would; \nthe cries of those who thirsted, like wild animals, for his blood; \nthe sight of men pressing forward, and trampling down their \nfellows, as they strove to reach him, and struck at him above the \nheads of other men, with axes and with iron bars; all failed to \ndaunt him.  He looked from man to man, and face to face, and still, \nwith quickened breath and lessening colour, cried firmly, 'I will \nnot!'\n\nDennis dealt him a blow upon the face which felled him to the \nground.  He sprung up again like a man in the prime of life, and \nwith blood upon his forehead, caught him by the throat.\n\n'You cowardly dog!' he said: 'Give me my daughter.  Give me my \ndaughter.'\n\nThey struggled together.  Some cried 'Kill him,' and some (but they \nwere not near enough) strove to trample him to death.  Tug as he \nwould at the old man's wrists, the hangman could not force him to \nunclench his hands.\n\n'Is this all the return you make me, you ungrateful monster?' he \narticulated with great difficulty, and with many oaths.\n\n'Give me my daughter!' cried the locksmith, who was now as fierce \nas those who gathered round him: 'Give me my daughter!'\n\nHe was down again, and up, and down once more, and buffeting with a \nscore of them, who bandied him from hand to hand, when one tall \nfellow, fresh from a slaughter-house, whose dress and great thigh-\nboots smoked hot with grease and blood, raised a pole-axe, and \nswearing a horrible oath, aimed it at the old man's uncovered head.  \nAt that instant, and in the very act, he fell himself, as if struck \nby lightning, and over his body a one-armed man came darting to the \nlocksmith's side.  Another man was with him, and both caught the \nlocksmith roughly in their grasp.\n\n'Leave him to us!' they cried to Hugh--struggling, as they spoke, \nto force a passage backward through the crowd.  'Leave him to us.  \nWhy do you waste your whole strength on such as he, when a couple \nof men can finish him in as many minutes!  You lose time.  Remember \nthe prisoners! remember Barnaby!'\n\nThe cry ran through the mob.  Hammers began to rattle on the walls; \nand every man strove to reach the prison, and be among the foremost \nrank.  Fighting their way through the press and struggle, as \ndesperately as if they were in the midst of enemies rather than \ntheir own friends, the two men retreated with the locksmith between \nthem, and dragged him through the very heart of the concourse.\n\nAnd now the strokes began to fall like hail upon the gate, and on \nthe strong building; for those who could not reach the door, spent \ntheir fierce rage on anything--even on the great blocks of stone, \nwhich shivered their weapons into fragments, and made their hands \nand arms to tingle as if the walls were active in their stout \nresistance, and dealt them back their blows.  The clash of iron \nringing upon iron, mingled with the deafening tumult and sounded \nhigh above it, as the great sledge-hammers rattled on the nailed \nand plated door: the sparks flew off in showers; men worked in \ngangs, and at short intervals relieved each other, that all their \nstrength might be devoted to the work; but there stood the portal \nstill, as grim and dark and strong as ever, and, saving for the \ndints upon its battered surface, quite unchanged.\n\nWhile some brought all their energies to bear upon this toilsome \ntask; and some, rearing ladders against the prison, tried to \nclamber to the summit of the walls they were too short to scale; \nand some again engaged a body of police a hundred strong, and beat \nthem back and trod them under foot by force of numbers; others \nbesieged the house on which the jailer had appeared, and driving in \nthe door, brought out his furniture, and piled it up against the \nprison-gate, to make a bonfire which should burn it down.  As soon \nas this device was understood, all those who had laboured hitherto, \ncast down their tools and helped to swell the heap; which reached \nhalf-way across the street, and was so high, that those who threw \nmore fuel on the top, got up by ladders.  When all the keeper's \ngoods were flung upon this costly pile, to the last fragment, they \nsmeared it with the pitch, and tar, and rosin they had brought, and \nsprinkled it with turpentine.  To all the woodwork round the \nprison-doors they did the like, leaving not a joist or beam \nuntouched.  This infernal christening performed, they fired the \npile with lighted matches and with blazing tow, and then stood by, \nawaiting the result.\n\nThe furniture being very dry, and rendered more combustible by wax \nand oil, besides the arts they had used, took fire at once.  The \nflames roared high and fiercely, blackening the prison-wall, and \ntwining up its loftly front like burning serpents.  At first they \ncrowded round the blaze, and vented their exultation only in their \nlooks: but when it grew hotter and fiercer--when it crackled, \nleaped, and roared, like a great furnace--when it shone upon the \nopposite houses, and lighted up not only the pale and wondering \nfaces at the windows, but the inmost corners of each habitation--\nwhen through the deep red heat and glow, the fire was seen sporting \nand toying with the door, now clinging to its obdurate surface, now \ngliding off with fierce inconstancy and soaring high into the sky, \nanon returning to fold it in its burning grasp and lure it to its \nruin--when it shone and gleamed so brightly that the church clock \nof St Sepulchre's so often pointing to the hour of death, was \nlegible as in broad day, and the vane upon its steeple-top \nglittered in the unwonted light like something richly jewelled--\nwhen blackened stone and sombre brick grew ruddy in the deep \nreflection, and windows shone like burnished gold, dotting the \nlongest distance in the fiery vista with their specks of \nbrightness--when wall and tower, and roof and chimney-stack, seemed \ndrunk, and in the flickering glare appeared to reel and stagger--\nwhen scores of objects, never seen before, burst out upon the view, \nand things the most familiar put on some new aspect--then the mob \nbegan to join the whirl, and with loud yells, and shouts, and \nclamour, such as happily is seldom heard, bestirred themselves to \nfeed the fire, and keep it at its height.\n\nAlthough the heat was so intense that the paint on the houses over \nagainst the prison, parched and crackled up, and swelling into \nboils, as it were from excess of torture, broke and crumbled away; \nalthough the glass fell from the window-sashes, and the lead and \niron on the roofs blistered the incautious hand that touched them, \nand the sparrows in the eaves took wing, and rendered giddy by the \nsmoke, fell fluttering down upon the blazing pile; still the fire \nwas tended unceasingly by busy hands, and round it, men were going \nalways.  They never slackened in their zeal, or kept aloof, but \npressed upon the flames so hard, that those in front had much ado \nto save themselves from being thrust in; if one man swooned or \ndropped, a dozen struggled for his place, and that although they \nknew the pain, and thirst, and pressure to be unendurable.  Those \nwho fell down in fainting-fits, and were not crushed or burnt, \nwere carried to an inn-yard close at hand, and dashed with water \nfrom a pump; of which buckets full were passed from man to man \namong the crowd; but such was the strong desire of all to drink, \nand such the fighting to be first, that, for the most part, the \nwhole contents were spilled upon the ground, without the lips of \none man being moistened.\n\nMeanwhile, and in the midst of all the roar and outcry, those who \nwere nearest to the pile, heaped up again the burning fragments \nthat came toppling down, and raked the fire about the door, which, \nalthough a sheet of flame, was still a door fast locked and barred, \nand kept them out.  Great pieces of blazing wood were passed, \nbesides, above the people's heads to such as stood about the \nladders, and some of these, climbing up to the topmost stave, and \nholding on with one hand by the prison wall, exerted all their \nskill and force to cast these fire-brands on the roof, or down into \nthe yards within.  In many instances their efforts were successful; \nwhich occasioned a new and appalling addition to the horrors of the \nscene: for the prisoners within, seeing from between their bars \nthat the fire caught in many places and thrived fiercely, and being \nall locked up in strong cells for the night, began to know that \nthey were in danger of being burnt alive.  This terrible fear, \nspreading from cell to cell and from yard to yard, vented itself in \nsuch dismal cries and wailings, and in such dreadful shrieks for \nhelp, that the whole jail resounded with the noise; which was \nloudly heard even above the shouting of the mob and roaring of the \nflames, and was so full of agony and despair, that it made the \nboldest tremble.\n\nIt was remarkable that these cries began in that quarter of the \njail which fronted Newgate Street, where, it was well known, the \nmen who were to suffer death on Thursday were confined.  And not \nonly were these four who had so short a time to live, the first to \nwhom the dread of being burnt occurred, but they were, throughout, \nthe most importunate of all: for they could be plainly heard, \nnotwithstanding the great thickness of the walls, crying that the \nwind set that way, and that the flames would shortly reach them; \nand calling to the officers of the jail to come and quench the \nfire from a cistern which was in their yard, and full of water.  \nJudging from what the crowd outside the walls could hear from time \nto time, these four doomed wretches never ceased to call for help; \nand that with as much distraction, and in as great a frenzy of \nattachment to existence, as though each had an honoured, happy \nlife before him, instead of eight-and-forty hours of miserable \nimprisonment, and then a violent and shameful death.\n\nBut the anguish and suffering of the two sons of one of these men, \nwhen they heard, or fancied that they heard, their father's voice, \nis past description.  After wringing their hands and rushing to and \nfro as if they were stark mad, one mounted on the shoulders of his \nbrother, and tried to clamber up the face of the high wall, guarded \nat the top with spikes and points of iron.  And when he fell among \nthe crowd, he was not deterred by his bruises, but mounted up \nagain, and fell again, and, when he found the feat impossible, \nbegan to beat the stones and tear them with his hands, as if he \ncould that way make a breach in the strong building, and force a \npassage in.  At last, they cleft their way among the mob about the \ndoor, though many men, a dozen times their match, had tried in vain \nto do so, and were seen, in--yes, in--the fire, striving to prize \nit down, with crowbars.\n\nNor were they alone affected by the outcry from within the prison.  \nThe women who were looking on, shrieked loudly, beat their hands \ntogether, stopped their ears; and many fainted: the men who were \nnot near the walls and active in the siege, rather than do nothing, \ntore up the pavement of the street, and did so with a haste and \nfury they could not have surpassed if that had been the jail, and \nthey were near their object.  Not one living creature in the throng \nwas for an instant still.  The whole great mass were mad.\n\nA shout!  Another!  Another yet, though few knew why, or what it \nmeant.  But those around the gate had seen it slowly yield, and \ndrop from its topmost hinge.  It hung on that side by but one, but \nit was upright still, because of the bar, and its having sunk, of \nits own weight, into the heap of ashes at its foot.  There was now \na gap at the top of the doorway, through which could be descried a \ngloomy passage, cavernous and dark.  Pile up the fire!\n\nIt burnt fiercely.  The door was red-hot, and the gap wider.  They \nvainly tried to shield their faces with their hands, and standing \nas if in readiness for a spring, watched the place.  Dark figures, \nsome crawling on their hands and knees, some carried in the arms of \nothers, were seen to pass along the roof.  It was plain the jail \ncould hold out no longer.  The keeper, and his officers, and their \nwives and children, were escaping.  Pile up the fire!\n\nThe door sank down again: it settled deeper in the cinders--\ntottered--yielded--was down!\n\nAs they shouted again, they fell back, for a moment, and left a \nclear space about the fire that lay between them and the jail \nentry.  Hugh leapt upon the blazing heap, and scattering a train of \nsparks into the air, and making the dark lobby glitter with those \nthat hung upon his dress, dashed into the jail.\n\nThe hangman followed.  And then so many rushed upon their track, \nthat the fire got trodden down and thinly strewn about the street; \nbut there was no need of it now, for, inside and out, the prison \nwas in flames.\n\n\n\nChapter 65\n\n\nDuring the whole course of the terrible scene which was now at its \nheight, one man in the jail suffered a degree of fear and mental \ntorment which had no parallel in the endurance, even of those who \nlay under sentence of death.\n\nWhen the rioters first assembled before the building, the murderer \nwas roused from sleep--if such slumbers as his may have that \nblessed name--by the roar of voices, and the struggling of a great \ncrowd.  He started up as these sounds met his ear, and, sitting on \nhis bedstead, listened.\n\nAfter a short interval of silence the noise burst out again.  Still \nlistening attentively, he made out, in course of time, that the \njail was besieged by a furious multitude.  His guilty conscience \ninstantly arrayed these men against himself, and brought the fear \nupon him that he would be singled out, and torn to pieces.\n\nOnce impressed with the terror of this conceit, everything tended \nto confirm and strengthen it.  His double crime, the circumstances \nunder which it had been committed, the length of time that had \nelapsed, and its discovery in spite of all, made him, as it were, \nthe visible object of the Almighty's wrath.  In all the crime and \nvice and moral gloom of the great pest-house of the capital, he \nstood alone, marked and singled out by his great guilt, a Lucifer \namong the devils.  The other prisoners were a host, hiding and \nsheltering each other--a crowd like that without the walls.  He was \none man against the whole united concourse; a single, solitary, \nlonely man, from whom the very captives in the jail fell off and \nshrunk appalled.\n\nIt might be that the intelligence of his capture having been \nbruited abroad, they had come there purposely to drag him out and \nkill him in the street; or it might be that they were the rioters, \nand, in pursuance of an old design, had come to sack the prison.  \nBut in either case he had no belief or hope that they would spare \nhim.  Every shout they raised, and every sound they made, was a \nblow upon his heart.  As the attack went on, he grew more wild and \nfrantic in his terror: tried to pull away the bars that guarded the \nchimney and prevented him from climbing up: called loudly on the \nturnkeys to cluster round the cell and save him from the fury of \nthe rabble; or put him in some dungeon underground, no matter of \nwhat depth, how dark it was, or loathsome, or beset with rats and \ncreeping things, so that it hid him and was hard to find.\n\nBut no one came, or answered him.  Fearful, even while he cried to \nthem, of attracting attention, he was silent.  By and bye, he saw, \nas he looked from his grated window, a strange glimmering on the \nstone walls and pavement of the yard.  It was feeble at first, and \ncame and went, as though some officers with torches were passing to \nand fro upon the roof of the prison.  Soon it reddened, and lighted \nbrands came whirling down, spattering the ground with fire, and \nburning sullenly in corners.  One rolled beneath a wooden bench, \nand set it in a blaze; another caught a water-spout, and so went \nclimbing up the wall, leaving a long straight track of fire behind \nit.  After a time, a slow thick shower of burning fragments, from \nsome upper portion of the prison which was blazing nigh, began to \nfall before his door.  Remembering that it opened outwards, he knew \nthat every spark which fell upon the heap, and in the act lost its \nbright life, and died an ugly speck of dust and rubbish, helped to \nentomb him in a living grave.  Still, though the jail resounded \nwith shrieks and cries for help,--though the fire bounded up as if \neach separate flame had had a tiger's life, and roared as though, \nin every one, there were a hungry voice--though the heat began to \ngrow intense, and the air suffocating, and the clamour without \nincreased, and the danger of his situation even from one merciless \nelement was every moment more extreme,--still he was afraid to \nraise his voice again, lest the crowd should break in, and should, \nof their own ears or from the information given them by the other \nprisoners, get the clue to his place of confinement.  Thus fearful \nalike, of those within the prison and of those without; of noise \nand silence; light and darkness; of being released, and being left \nthere to die; he was so tortured and tormented, that nothing man \nhas ever done to man in the horrible caprice of power and cruelty, \nexceeds his self-inflicted punishment.\n\nNow, now, the door was down.  Now they came rushing through the \njail, calling to each other in the vaulted passages; clashing the \niron gates dividing yard from yard; beating at the doors of cells \nand wards; wrenching off bolts and locks and bars; tearing down the \ndoor-posts to get men out; endeavouring to drag them by main force \nthrough gaps and windows where a child could scarcely pass; \nwhooping and yelling without a moment's rest; and running through \nthe heat and flames as if they were cased in metal.  By their legs, \ntheir arms, the hair upon their heads, they dragged the prisoners \nout.  Some threw themselves upon the captives as they got towards \nthe door, and tried to file away their irons; some danced about \nthem with a frenzied joy, and rent their clothes, and were ready, \nas it seemed, to tear them limb from limb.  Now a party of a dozen \nmen came darting through the yard into which the murderer cast \nfearful glances from his darkened window; dragging a prisoner along \nthe ground whose dress they had nearly torn from his body in their \nmad eagerness to set him free, and who was bleeding and senseless \nin their hands.  Now a score of prisoners ran to and fro, who had \nlost themselves in the intricacies of the prison, and were so \nbewildered with the noise and glare that they knew not where to \nturn or what to do, and still cried out for help, as loudly as \nbefore.  Anon some famished wretch whose theft had been a loaf of \nbread, or scrap of butcher's meat, came skulking past, barefooted--\ngoing slowly away because that jail, his house, was burning; not \nbecause he had any other, or had friends to meet, or old haunts to \nrevisit, or any liberty to gain, but liberty to starve and die.  \nAnd then a knot of highwaymen went trooping by, conducted by the \nfriends they had among the crowd, who muffled their fetters as they \nwent along, with handkerchiefs and bands of hay, and wrapped them \nin coats and cloaks, and gave them drink from bottles, and held it \nto their lips, because of their handcuffs which there was no time \nto remove.  All this, and Heaven knows how much more, was done \namidst a noise, a hurry, and distraction, like nothing that we know \nof, even in our dreams; which seemed for ever on the rise, and \nnever to decrease for the space of a single instant.\n\nHe was still looking down from his window upon these things, when a \nband of men with torches, ladders, axes, and many kinds of weapons, \npoured into the yard, and hammering at his door, inquired if there \nwere any prisoner within.  He left the window when he saw them \ncoming, and drew back into the remotest corner of the cell; but \nalthough he returned them no answer, they had a fancy that some one \nwas inside, for they presently set ladders against it, and began to \ntear away the bars at the casement; not only that, indeed, but with \npickaxes to hew down the very stones in the wall.\n\nAs soon as they had made a breach at the window, large enough for \nthe admission of a man's head, one of them thrust in a torch and \nlooked all round the room.  He followed this man's gaze until it \nrested on himself, and heard him demand why he had not answered, \nbut made him no reply.\n\nIn the general surprise and wonder, they were used to this; without \nsaying anything more, they enlarged the breach until it was large \nenough to admit the body of a man, and then came dropping down upon \nthe floor, one after another, until the cell was full.  They caught \nhim up among them, handed him to the window, and those who stood \nupon the ladders passed him down upon the pavement of the yard.  \nThen the rest came out, one after another, and, bidding him fly, \nand lose no time, or the way would be choked up, hurried away to \nrescue others.\n\nIt seemed not a minute's work from first to last.  He staggered to \nhis feet, incredulous of what had happened, when the yard was \nfilled again, and a crowd rushed on, hurrying Barnaby among them.  \nIn another minute--not so much: another minute! the same instant, \nwith no lapse or interval between!--he and his son were being \npassed from hand to hand, through the dense crowd in the street, \nand were glancing backward at a burning pile which some one said \nwas Newgate.\n\nFrom the moment of their first entrance into the prison, the crowd \ndispersed themselves about it, and swarmed into every chink and \ncrevice, as if they had a perfect acquaintance with its innermost \nparts, and bore in their minds an exact plan of the whole.  For \nthis immediate knowledge of the place, they were, no doubt, in a \ngreat degree, indebted to the hangman, who stood in the lobby, \ndirecting some to go this way, some that, and some the other; and \nwho materially assisted in bringing about the wonderful rapidity \nwith which the release of the prisoners was effected.\n\nBut this functionary of the law reserved one important piece of \nintelligence, and kept it snugly to himself.  When he had issued \nhis instructions relative to every other part of the building, and \nthe mob were dispersed from end to end, and busy at their work, he \ntook a bundle of keys from a kind of cupboard in the wall, and \ngoing by a kind of passage near the chapel (it joined the governors \nhouse, and was then on fire), betook himself to the condemned \ncells, which were a series of small, strong, dismal rooms, opening \non a low gallery, guarded, at the end at which he entered, by a \nstrong iron wicket, and at its opposite extremity by two doors and \na thick grate.  Having double locked the wicket, and assured \nhimself that the other entrances were well secured, he sat down on \na bench in the gallery, and sucked the head of his stick with the \nutmost complacency, tranquillity, and contentment.\n\nIt would have been strange enough, a man's enjoying himself in this \nquiet manner, while the prison was burning, and such a tumult was \ncleaving the air, though he had been outside the walls.  But here, \nin the very heart of the building, and moreover with the prayers \nand cries of the four men under sentence sounding in his ears, and \ntheir hands, stretched our through the gratings in their cell-\ndoors, clasped in frantic entreaty before his very eyes, it was \nparticularly remarkable.  Indeed, Mr Dennis appeared to think it an \nuncommon circumstance, and to banter himself upon it; for he thrust \nhis hat on one side as some men do when they are in a waggish \nhumour, sucked the head of his stick with a higher relish, and \nsmiled as though he would say, 'Dennis, you're a rum dog; you're a \nqueer fellow; you're capital company, Dennis, and quite a \ncharacter!'\n\nHe sat in this way for some minutes, while the four men in the \ncells, who were certain that somebody had entered the gallery, but \ncould not see who, gave vent to such piteous entreaties as wretches \nin their miserable condition may be supposed to have been inspired \nwith: urging, whoever it was, to set them at liberty, for the love \nof Heaven; and protesting, with great fervour, and truly enough, \nperhaps, for the time, that if they escaped, they would amend their \nways, and would never, never, never again do wrong before God or \nman, but would lead penitent and sober lives, and sorrowfully \nrepent the crimes they had committed.  The terrible energy with \nwhich they spoke, would have moved any person, no matter how good \nor just (if any good or just person could have strayed into that \nsad place that night), to have set them at liberty: and, while he \nwould have left any other punishment to its free course, to have \nsaved them from this last dreadful and repulsive penalty; which \nnever turned a man inclined to evil, and has hardened thousands who \nwere half inclined to good.\n\nMr Dennis, who had been bred and nurtured in the good old school, \nand had administered the good old laws on the good old plan, always \nonce and sometimes twice every six weeks, for a long time, bore \nthese appeals with a deal of philosophy.  Being at last, however, \nrather disturbed in his pleasant reflection by their repetition, he \nrapped at one of the doors with his stick, and cried:\n\n'Hold your noise there, will you?'\n\nAt this they all cried together that they were to be hanged on the \nnext day but one; and again implored his aid.\n\n'Aid! For what!' said Mr Dennis, playfully rapping the knuckles of \nthe hand nearest him.\n\n'To save us!' they cried.\n\n'Oh, certainly,' said Mr Dennis, winking at the wall in the absence \nof any friend with whom he could humour the joke.  'And so you're \nto be worked off, are you, brothers?'\n\n'Unless we are released to-night,' one of them cried, 'we are dead \nmen!'\n\n'I tell you what it is,' said the hangman, gravely; 'I'm afraid, my \nfriend, that you're not in that 'ere state of mind that's suitable \nto your condition, then; you're not a-going to be released: don't \nthink it--Will you leave off that 'ere indecent row?  I wonder you \nan't ashamed of yourselves, I do.'\n\nHe followed up this reproof by rapping every set of knuckles one \nafter the other, and having done so, resumed his seat again with a \ncheerful countenance.\n\n'You've had law,' he said, crossing his legs and elevating his \neyebrows: 'laws have been made a' purpose for you; a wery handsome \nprison's been made a' purpose for you; a parson's kept a purpose \nfor you; a constitootional officer's appointed a' purpose for you; \ncarts is maintained a' purpose for you--and yet you're not \ncontented!--WILL you hold that noise, you sir in the furthest?'\n\nA groan was the only answer.\n\n'So well as I can make out,' said Mr Dennis, in a tone of mingled \nbadinage and remonstrance, 'there's not a man among you.  I begin \nto think I'm on the opposite side, and among the ladies; though for \nthe matter of that, I've seen a many ladies face it out, in a \nmanner that did honour to the sex.--You in number two, don't grind \nthem teeth of yours.  Worse manners,' said the hangman, rapping at \nthe door with his stick, 'I never see in this place afore.  I'm \nashamed of you.  You're a disgrace to the Bailey.'\n\nAfter pausing for a moment to hear if anything could be pleaded in \njustification, Mr Dennis resumed in a sort of coaxing tone:\n\n'Now look'ee here, you four.  I'm come here to take care of you, \nand see that you an't burnt, instead of the other thing.  It's no \nuse your making any noise, for you won't be found out by them as \nhas broken in, and you'll only be hoarse when you come to the \nspeeches,--which is a pity.  What I say in respect to the speeches \nalways is, \"Give it mouth.\"  That's my maxim.  Give it mouth.  I've \nheerd,' said the hangman, pulling off his hat to take his \nhandkerchief from the crown and wipe his face, and then putting it \non again a little more on one side than before, 'I've heerd a \neloquence on them boards--you know what boards I mean--and have \nheerd a degree of mouth given to them speeches, that they was as \nclear as a bell, and as good as a play.  There's a pattern!  And \nalways, when a thing of this natur's to come off, what I stand up \nfor, is, a proper frame of mind.  Let's have a proper frame of \nmind, and we can go through with it, creditable--pleasant--\nsociable.  Whatever you do (and I address myself in particular, to \nyou in the furthest), never snivel.  I'd sooner by half, though I \nlose by it, see a man tear his clothes a' purpose to spile 'em \nbefore they come to me, than find him snivelling.  It's ten to one \na better frame of mind, every way!'\n\nWhile the hangman addressed them to this effect, in the tone and \nwith the air of a pastor in familiar conversation with his flock, \nthe noise had been in some degree subdued; for the rioters were \nbusy in conveying the prisoners to the Sessions House, which was \nbeyond the main walls of the prison, though connected with it, and \nthe crowd were busy too, in passing them from thence along the \nstreet.  But when he had got thus far in his discourse, the sound \nof voices in the yard showed plainly that the mob had returned and \nwere coming that way; and directly afterwards a violent crashing at \nthe grate below, gave note of their attack upon the cells (as they \nwere called) at last.\n\nIt was in vain the hangman ran from door to door, and covered the \ngrates, one after another, with his hat, in futile efforts to \nstifle the cries of the four men within; it was in vain he dogged \ntheir outstretched hands, and beat them with his stick, or menaced \nthem with new and lingering pains in the execution of his office; \nthe place resounded with their cries.  These, together with the \nfeeling that they were now the last men in the jail, so worked upon \nand stimulated the besiegers, that in an incredibly short space of \ntime they forced the strong grate down below, which was formed of \niron rods two inches square, drove in the two other doors, as if \nthey had been but deal partitions, and stood at the end of the \ngallery with only a bar or two between them and the cells.\n\n'Halloa!' cried Hugh, who was the first to look into the dusky \npassage: 'Dennis before us!  Well done, old boy.  Be quick, and \nopen here, for we shall be suffocated in the smoke, going out.'\n\n'Go out at once, then,' said Dennis.  'What do you want here?'\n\n'Want!' echoed Hugh.  'The four men.'\n\n'Four devils!' cried the hangman.  'Don't you know they're left for \ndeath on Thursday?  Don't you respect the law--the constitootion--\nnothing?  Let the four men be.'\n\n'Is this a time for joking?' cried Hugh.  'Do you hear 'em?  Pull \naway these bars that have got fixed between the door and the \nground; and let us in.'\n\n'Brother,' said the hangman, in a low voice, as he stooped under \npretence of doing what Hugh desired, but only looked up in his \nface, 'can't you leave these here four men to me, if I've the whim!  \nYou do what you like, and have what you like of everything for your \nshare,--give me my share.  I want these four men left alone, I tell \nyou!'\n\n'Pull the bars down, or stand out of the way,' was Hugh's reply.\n\n'You can turn the crowd if you like, you know that well enough, \nbrother,' said the hangman, slowly.  'What!  You WILL come in, will \nyou?'\n\n'Yes.'\n\n'You won't let these men alone, and leave 'em to me?  You've no \nrespect for nothing--haven't you?' said the hangman, retreating to \nthe door by which he had entered, and regarding his companion with \na scowl.  'You WILL come in, will you, brother!'\n\n'I tell you, yes.  What the devil ails you?  Where are you going?'\n\n'No matter where I'm going,' rejoined the hangman, looking in again \nat the iron wicket, which he had nearly shut upon himself, and \nheld ajar.  'Remember where you're coming.  That's all!'\n\nWith that, he shook his likeness at Hugh, and giving him a grin, \ncompared with which his usual smile was amiable, disappeared, and \nshut the door.\n\nHugh paused no longer, but goaded alike by the cries of the \nconvicts, and by the impatience of the crowd, warned the man \nimmediately behind him--the way was only wide enough for one \nabreast--to stand back, and wielded a sledge-hammer with such \nstrength, that after a few blows the iron bent and broke, and gave \nthem free admittance.\n\nIt the two sons of one of these men, of whom mention has been made, \nwere furious in their zeal before, they had now the wrath and \nvigour of lions.  Calling to the man within each cell, to keep as \nfar back as he could, lest the axes crashing through the door \nshould wound him, a party went to work upon each one, to beat it in \nby sheer strength, and force the bolts and staples from their hold.  \nBut although these two lads had the weakest party, and the worst \narmed, and did not begin until after the others, having stopped to \nwhisper to him through the grate, that door was the first open, and \nthat man was the first out.  As they dragged him into the gallery \nto knock off his irons, he fell down among them, a mere heap of \nchains, and was carried out in that state on men's shoulders, with \nno sign of life.\n\nThe release of these four wretched creatures, and conveying them, \nastounded and bewildered, into the streets so full of life--a \nspectacle they had never thought to see again, until they emerged \nfrom solitude and silence upon that last journey, when the air \nshould be heavy with the pent-up breath of thousands, and the \nstreets and houses should be built and roofed with human faces, not \nwith bricks and tiles and stones--was the crowning horror of the \nscene.  Their pale and haggard looks and hollow eyes; their \nstaggering feet, and hands stretched out as if to save themselves \nfrom falling; their wandering and uncertain air; the way they \nheaved and gasped for breath, as though in water, when they were \nfirst plunged into the crowd; all marked them for the men.  No need \nto say 'this one was doomed to die;' for there were the words \nbroadly stamped and branded on his face.  The crowd fell off, as if \nthey had been laid out for burial, and had risen in their shrouds; \nand many were seen to shudder, as though they had been actually \ndead men, when they chanced to touch or brush against their \ngarments.\n\nAt the bidding of the mob, the houses were all illuminated that \nnight--lighted up from top to bottom as at a time of public gaiety \nand joy.  Many years afterwards, old people who lived in their \nyouth near this part of the city, remembered being in a great glare \nof light, within doors and without, and as they looked, timid and \nfrightened children, from the windows, seeing a FACE go by.  Though \nthe whole great crowd and all its other terrors had faded from \ntheir recollection, this one object remained; alone, distinct, and \nwell remembered.  Even in the unpractised minds of infants, one of \nthese doomed men darting past, and but an instant seen, was an \nimage of force enough to dim the whole concourse; to find itself an \nall-absorbing place, and hold it ever after.\n\nWhen this last task had been achieved, the shouts and cries grew \nfainter; the clank of fetters, which had resounded on all sides as \nthe prisoners escaped, was heard no more; all the noises of the \ncrowd subsided into a hoarse and sullen murmur as it passed into \nthe distance; and when the human tide had rolled away, a melancholy \nheap of smoking ruins marked the spot where it had lately chafed \nand roared.\n\n\n\nChapter 66\n\n\nAlthough he had had no rest upon the previous night, and had \nwatched with little intermission for some weeks past, sleeping only \nin the day by starts and snatches, Mr Haredale, from the dawn of \nmorning until sunset, sought his niece in every place where he \ndeemed it possible she could have taken refuge.  All day long, \nnothing, save a draught of water, passed his lips; though he \nprosecuted his inquiries far and wide, and never so much as sat \ndown, once.\n\nIn every quarter he could think of; at Chigwell and in London; at \nthe houses of the tradespeople with whom he dealt, and of the \nfriends he knew; he pursued his search.  A prey to the most \nharrowing anxieties and apprehensions, he went from magistrate to \nmagistrate, and finally to the Secretary of State.  The only \ncomfort he received was from this minister, who assured him that \nthe Government, being now driven to the exercise of the extreme \nprerogatives of the Crown, were determined to exert them; that a \nproclamation would probably be out upon the morrow, giving to the \nmilitary, discretionary and unlimited power in the suppression of \nthe riots; that the sympathies of the King, the Administration, and \nboth Houses of Parliament, and indeed of all good men of every \nreligious persuasion, were strongly with the injured Catholics; and \nthat justice should be done them at any cost or hazard.  He told \nhim, moreover, that other persons whose houses had been burnt, had \nfor a time lost sight of their children or their relatives, but \nhad, in every case, within his knowledge, succeeded in discovering \nthem; that his complaint should be remembered, and fully stated in \nthe instructions given to the officers in command, and to all the \ninferior myrmidons of justice; and that everything that could be \ndone to help him, should be done, with a goodwill and in good \nfaith.\n\nGrateful for this consolation, feeble as it was in its reference to \nthe past, and little hope as it afforded him in connection with the \nsubject of distress which lay nearest to his heart; and really \nthankful for the interest the minister expressed, and seemed to \nfeel, in his condition; Mr Haredale withdrew.  He found himself, \nwith the night coming on, alone in the streets; and destitute of \nany place in which to lay his head.\n\nHe entered an hotel near Charing Cross, and ordered some \nrefreshment and a bed.  He saw that his faint and worn appearance \nattracted the attention of the landlord and his waiters; and \nthinking that they might suppose him to be penniless, took out his \npurse, and laid it on the table.  It was not that, the landlord \nsaid, in a faltering voice.  If he were one of those who had \nsuffered by the rioters, he durst not give him entertainment.  He \nhad a family of children, and had been twice warned to be careful \nin receiving guests.  He heartily prayed his forgiveness, but what \ncould he do?\n\nNothing.  No man felt that more sincerely than Mr Haredale.  He \ntold the man as much, and left the house.\n\nFeeling that he might have anticipated this occurrence, after what \nhe had seen at Chigwell in the morning, where no man dared to touch \na spade, though he offered a large reward to all who would come and \ndig among the ruins of his house, he walked along the Strand; too \nproud to expose himself to another refusal, and of too generous a \nspirit to involve in distress or ruin any honest tradesman who \nmight be weak enough to give him shelter.  He wandered into one of \nthe streets by the side of the river, and was pacing in a \nthoughtful manner up and down, thinking of things that had happened \nlong ago, when he heard a servant-man at an upper window call to \nanother on the opposite side of the street, that the mob were \nsetting fire to Newgate.\n\nTo Newgate! where that man was!  His failing strength returned, \nhis energies came back with tenfold vigour, on the instant.  If it \nwere possible--if they should set the murderer free--was he, after \nall he had undergone, to die with the suspicion of having slain his \nown brother, dimly gathering about him--\n\nHe had no consciousness of going to the jail; but there he stood, \nbefore it.  There was the crowd wedged and pressed together in a \ndense, dark, moving mass; and there were the flames soaring up into \nthe air.  His head turned round and round, lights flashed before \nhis eyes, and he struggled hard with two men.\n\n'Nay, nay,' said one.  'Be more yourself, my good sir.  We attract \nattention here.  Come away.  What can you do among so many men?'\n\n'The gentleman's always for doing something,' said the other, \nforcing him along as he spoke.  'I like him for that.  I do like \nhim for that.'\n\nThey had by this time got him into a court, hard by the prison.  He \nlooked from one to the other, and as he tried to release himself, \nfelt that he tottered on his feet.  He who had spoken first, was \nthe old gentleman whom he had seen at the Lord Mayor's.  The other \nwas John Grueby, who had stood by him so manfully at Westminster.\n\n'What does this mean?' he asked them faintly.  'How came we \ntogether?'\n\n'On the skirts of the crowd,' returned the distiller; 'but come \nwith us.  Pray come with us.  You seem to know my friend here?'\n\n'Surely,' said Mr Haredale, looking in a kind of stupor at John.\n\n'He'll tell you then,' returned the old gentleman, 'that I am a man \nto be trusted.  He's my servant.  He was lately (as you know, I \nhave no doubt) in Lord George Gordon's service; but he left it, and \nbrought, in pure goodwill to me and others, who are marked by the \nrioters, such intelligence as he had picked up, of their designs.'\n\n--'On one condition, please, sir,' said John, touching his hat.  No \nevidence against my lord--a misled man--a kind-hearted man, sir.  \nMy lord never intended this.'\n\n'The condition will be observed, of course,' rejoined the old \ndistiller.  'It's a point of honour.  But come with us, sir; pray \ncome with us.'\n\nJohn Grueby added no entreaties, but he adopted a different kind of \npersuasion, by putting his arm through one of Mr Haredale's, while \nhis master took the other, and leading him away with all speed.\n\nSensible, from a strange lightness in his head, and a difficulty in \nfixing his thoughts on anything, even to the extent of bearing his \ncompanions in his mind for a minute together without looking at \nthem, that his brain was affected by the agitation and suffering \nthrough which he had passed, and to which he was still a prey, Mr \nHaredale let them lead him where they would.  As they went along, \nhe was conscious of having no command over what he said or thought, \nand that he had a fear of going mad.\n\nThe distiller lived, as he had told him when they first met, on \nHolborn Hill, where he had great storehouses and drove a large \ntrade.  They approached his house by a back entrance, lest they \nshould attract the notice of the crowd, and went into an upper \nroom which faced towards the street; the windows, however, in \ncommon with those of every other room in the house, were boarded up \ninside, in order that, out of doors, all might appear quite dark.\n\nThey laid him on a sofa in this chamber, perfectly insensible; but \nJohn immediately fetching a surgeon, who took from him a large \nquantity of blood, he gradually came to himself.  As he was, for \nthe time, too weak to walk, they had no difficulty in persuading \nhim to remain there all night, and got him to bed without loss of a \nminute.  That done, they gave him cordial and some toast, and \npresently a pretty strong composing-draught, under the influence \nof which he soon fell into a lethargy, and, for a time, forgot his \ntroubles.\n\nThe vintner, who was a very hearty old fellow and a worthy man, had \nno thoughts of going to bed himself, for he had received several \nthreatening warnings from the rioters, and had indeed gone out that \nevening to try and gather from the conversation of the mob whether \nhis house was to be the next attacked.  He sat all night in an \neasy-chair in the same room--dozing a little now and then--and \nreceived from time to time the reports of John Grueby and two or \nthree other trustworthy persons in his employ, who went out into \nthe streets as scouts; and for whose entertainment an ample \nallowance of good cheer (which the old vintner, despite his \nanxiety, now and then attacked himself) was set forth in an \nadjoining chamber.\n\nThese accounts were of a sufficiently alarming nature from the \nfirst; but as the night wore on, they grew so much worse, and \ninvolved such a fearful amount of riot and destruction, that in \ncomparison with these new tidings all the previous disturbances \nsunk to nothing.\n\nThe first intelligence that came, was of the taking of Newgate, and \nthe escape of all the prisoners, whose track, as they made up \nHolborn and into the adjacent streets, was proclaimed to those \ncitizens who were shut up in their houses, by the rattling of \ntheir chains, which formed a dismal concert, and was heard in every \ndirection, as though so many forges were at work.  The flames too, \nshone so brightly through the vintner's skylights, that the rooms \nand staircases below were nearly as light as in broad day; while \nthe distant shouting of the mob seemed to shake the very walls and \nceilings.\n\nAt length they were heard approaching the house, and some minutes \nof terrible anxiety ensued.  They came close up, and stopped before \nit; but after giving three loud yells, went on.  And although they \nreturned several times that night, creating new alarms each time, \nthey did nothing there; having their hands full.  Shortly after \nthey had gone away for the first time, one of the scouts came \nrunning in with the news that they had stopped before Lord \nMansfield's house in Bloomsbury Square.\n\nSoon afterwards there came another, and another, and then the first \nreturned again, and so, by little and little, their tale was this:--\nThat the mob gathering round Lord Mansfield's house, had called on \nthose within to open the door, and receiving no reply (for Lord and \nLady Mansfield were at that moment escaping by the backway), forced \nan entrance according to their usual custom.  That they then began \nto demolish the house with great fury, and setting fire to it in \nseveral parts, involved in a common ruin the whole of the costly \nfurniture, the plate and jewels, a beautiful gallery of pictures, \nthe rarest collection of manuscripts ever possessed by any one \nprivate person in the world, and worse than all, because nothing \ncould replace this loss, the great Law Library, on almost every \npage of which were notes in the Judge's own hand, of inestimable \nvalue,--being the results of the study and experience of his whole \nlife.  That while they were howling and exulting round the fire, a \ntroop of soldiers, with a magistrate among them, came up, and being \ntoo late (for the mischief was by that time done), began to \ndisperse the crowd.  That the Riot Act being read, and the crowd \nstill resisting, the soldiers received orders to fire, and \nlevelling their muskets shot dead at the first discharge six men \nand a woman, and wounded many persons; and loading again directly, \nfired another volley, but over the people's heads it was supposed, \nas none were seen to fall.  That thereupon, and daunted by the \nshrieks and tumult, the crowd began to disperse, and the soldiers \nwent away, leaving the killed and wounded on the ground: which they \nhad no sooner done than the rioters came back again, and taking up \nthe dead bodies, and the wounded people, formed into a rude \nprocession, having the bodies in the front.  That in this order \nthey paraded off with a horrible merriment; fixing weapons in the \ndead men's hands to make them look as if alive; and preceded by a \nfellow ringing Lord Mansfield's dinner-bell with all his might.\n\nThe scouts reported further, that this party meeting with some \nothers who had been at similar work elsewhere, they all united into \none, and drafting off a few men with the killed and wounded, \nmarched away to Lord Mansfield's country seat at Caen Wood, between \nHampstead and Highgate; bent upon destroying that house likewise, \nand lighting up a great fire there, which from that height should \nbe seen all over London.  But in this, they were disappointed, for \na party of horse having arrived before them, they retreated faster \nthan they went, and came straight back to town.\n\nThere being now a great many parties in the streets, each went to \nwork according to its humour, and a dozen houses were quickly \nblazing, including those of Sir John Fielding and two other \njustices, and four in Holborn--one of the greatest thoroughfares in \nLondon--which were all burning at the same time, and burned until \nthey went out of themselves, for the people cut the engine hose, \nand would not suffer the firemen to play upon the flames.  At one \nhouse near Moorfields, they found in one of the rooms some canary \nbirds in cages, and these they cast into the fire alive.  The poor \nlittle creatures screamed, it was said, like infants, when they \nwere flung upon the blaze; and one man was so touched that he tried \nin vain to save them, which roused the indignation of the crowd, \nand nearly cost him his life.\n\nAt this same house, one of the fellows who went through the rooms, \nbreaking the furniture and helping to destroy the building, found a \nchild's doll--a poor toy--which he exhibited at the window to the \nmob below, as the image of some unholy saint which the late \noccupants had worshipped.  While he was doing this, another man \nwith an equally tender conscience (they had both been foremost in \nthrowing down the canary birds for roasting alive), took his seat \non the parapet of the house, and harangued the crowd from a \npamphlet circulated by the Association, relative to the true \nprinciples of Christianity!  Meanwhile the Lord Mayor, with his \nhands in his pockets, looked on as an idle man might look at any \nother show, and seemed mightily satisfied to have got a good place.\n\nSuch were the accounts brought to the old vintner by his servants \nas he sat at the side of Mr Haredale's bed, having been unable even \nto doze, after the first part of the night; too much disturbed by \nhis own fears; by the cries of the mob, the light of the fires, and \nthe firing of the soldiers.  Such, with the addition of the release \nof all the prisoners in the New Jail at Clerkenwell, and as many \nrobberies of passengers in the streets, as the crowd had leisure to \nindulge in, were the scenes of which Mr Haredale was happily \nunconscious, and which were all enacted before midnight.\n\n\n\nChapter 67\n\n\nWhen darkness broke away and morning began to dawn, the town wore a \nstrange aspect indeed.\n\nSleep had hardly been thought of all night.  The general alarm was \nso apparent in the faces of the inhabitants, and its expression was \nso aggravated by want of rest (few persons, with any property to \nlose, having dared go to bed since Monday), that a stranger coming \ninto the streets would have supposed some mortal pest or plague to \nhave been raging.  In place of the usual cheerfulness and animation \nof morning, everything was dead and silent.  The shops remained \nclosed, offices and warehouses were shut, the coach and chair \nstands were deserted, no carts or waggons rumbled through the \nslowly waking streets, the early cries were all hushed; a universal \ngloom prevailed.  Great numbers of people were out, even at \ndaybreak, but they flitted to and fro as though they shrank from \nthe sound of their own footsteps; the public ways were haunted \nrather than frequented; and round the smoking ruins people stood \napart from one another and in silence, not venturing to condemn \nthe rioters, or to be supposed to do so, even in whispers.\n\nAt the Lord President's in Piccadilly, at Lambeth Palace, at the \nLord Chancellor's in Great Ormond Street, in the Royal Exchange, \nthe Bank, the Guildhall, the Inns of Court, the Courts of Law, and \nevery chamber fronting the streets near Westminster Hall and the \nHouses of Parliament, parties of soldiers were posted before \ndaylight.  A body of Horse Guards paraded Palace Yard; an \nencampment was formed in the Park, where fifteen hundred men and \nfive battalions of Militia were under arms; the Tower was \nfortified, the drawbridges were raised, the cannon loaded and \npointed, and two regiments of artillery busied in strengthening the \nfortress and preparing it for defence.  A numerous detachment of \nsoldiers were stationed to keep guard at the New River Head, which \nthe people had threatened to attack, and where, it was said, they \nmeant to cut off the main-pipes, so that there might be no water \nfor the extinction of the flames.  In the Poultry, and on Cornhill, \nand at several other leading points, iron chains were drawn across \nthe street; parties of soldiers were distributed in some of the old \ncity churches while it was yet dark; and in several private houses \n(among them, Lord Rockingham's in Grosvenor Square); which were \nblockaded as though to sustain a siege, and had guns pointed from \nthe windows.  When the sun rose, it shone into handsome apartments \nfilled with armed men; the furniture hastily heaped away in \ncorners, and made of little or no account, in the terror of the \ntime--on arms glittering in city chambers, among desks and stools, \nand dusty books--into little smoky churchyards in odd lanes and by-\nways, with soldiers lying down among the tombs, or lounging under \nthe shade of the one old tree, and their pile of muskets sparkling \nin the light--on solitary sentries pacing up and down in \ncourtyards, silent now, but yesterday resounding with the din and \nhum of business--everywhere on guard-rooms, garrisons, and \nthreatening preparations.\n\nAs the day crept on, still more unusual sights were witnessed in \nthe streets.  The gates of the King's Bench and Fleet Prisons \nbeing opened at the usual hour, were found to have notices affixed \nto them, announcing that the rioters would come that night to burn \nthem down.  The wardens, too well knowing the likelihood there was \nof this promise being fulfilled, were fain to set their prisoners \nat liberty, and give them leave to move their goods; so, all day, \nsuch of them as had any furniture were occupied in conveying it, \nsome to this place, some to that, and not a few to the brokers' \nshops, where they gladly sold it, for any wretched price those \ngentry chose to give.  There were some broken men among these \ndebtors who had been in jail so long, and were so miserable and \ndestitute of friends, so dead to the world, and utterly forgotten \nand uncared for, that they implored their jailers not to set them \nfree, and to send them, if need were, to some other place of \ncustody.  But they, refusing to comply, lest they should incur the \nanger of the mob, turned them into the streets, where they wandered \nup and down hardly remembering the ways untrodden by their feet so \nlong, and crying--such abject things those rotten-hearted jails had \nmade them--as they slunk off in their rags, and dragged their \nslipshod feet along the pavement.\n\nEven of the three hundred prisoners who had escaped from Newgate, \nthere were some--a few, but there were some--who sought their \njailers out and delivered themselves up: preferring imprisonment \nand punishment to the horrors of such another night as the last.  \nMany of the convicts, drawn back to their old place of captivity by \nsome indescribable attraction, or by a desire to exult over it in \nits downfall and glut their revenge by seeing it in ashes, actually \nwent back in broad noon, and loitered about the cells.  Fifty were \nretaken at one time on this next day, within the prison walls; but \ntheir fate did not deter others, for there they went in spite of \neverything, and there they were taken in twos and threes, twice or \nthrice a day, all through the week.  Of the fifty just mentioned, \nsome were occupied in endeavouring to rekindle the fire; but in \ngeneral they seemed to have no object in view but to prowl and \nlounge about the old place: being often found asleep in the ruins, \nor sitting talking there, or even eating and drinking, as in a \nchoice retreat.\n\nBesides the notices on the gates of the Fleet and the King's Bench, \nmany similar announcements were left, before one o'clock at noon, \nat the houses of private individuals; and further, the mob \nproclaimed their intention of seizing on the Bank, the Mint, the \nArsenal at Woolwich, and the Royal Palaces.  The notices were \nseldom delivered by more than one man, who, if it were at a shop, \nwent in, and laid it, with a bloody threat perhaps, upon the \ncounter; or if it were at a private house, knocked at the door, and \nthrust it in the servant's hand.  Notwithstanding the presence of \nthe military in every quarter of the town, and the great force in \nthe Park, these messengers did their errands with impunity all \nthrough the day.  So did two boys who went down Holborn alone, \narmed with bars taken from the railings of Lord Mansfield's house, \nand demanded money for the rioters.  So did a tall man on horseback \nwho made a collection for the same purpose in Fleet Street, and \nrefused to take anything but gold.\n\nA rumour had now got into circulation, too, which diffused a \ngreater dread all through London, even than these publicly \nannounced intentions of the rioters, though all men knew that if \nthey were successfully effected, there must ensue a national \nbankruptcy and general ruin.  It was said that they meant to throw \nthe gates of Bedlam open, and let all the madmen loose.  This \nsuggested such dreadful images to the people's minds, and was \nindeed an act so fraught with new and unimaginable horrors in the \ncontemplation, that it beset them more than any loss or cruelty of \nwhich they could foresee the worst, and drove many sane men nearly \nmad themselves.\n\nSo the day passed on: the prisoners moving their goods; people \nrunning to and fro in the streets, carrying away their property; \ngroups standing in silence round the ruins; all business suspended; \nand the soldiers disposed as has been already mentioned, remaining \nquite inactive.  So the day passed on, and dreaded night drew near \nagain.\n\nAt last, at seven o'clock in the evening, the Privy Council issued \na solemn proclamation that it was now necessary to employ the \nmilitary, and that the officers had most direct and effectual \norders, by an immediate exertion of their utmost force, to repress \nthe disturbances; and warning all good subjects of the King to keep \nthemselves, their servants, and apprentices, within doors that \nnight.  There was then delivered out to every soldier on duty, \nthirty-six rounds of powder and ball; the drums beat; and the whole \nforce was under arms at sunset.\n\nThe City authorities, stimulated by these vigorous measures, held a \nCommon Council; passed a vote thanking the military associations \nwho had tendered their aid to the civil authorities; accepted it; \nand placed them under the direction of the two sheriffs.  At the \nQueen's palace, a double guard, the yeomen on duty, the groom-\nporters, and all other attendants, were stationed in the passages \nand on the staircases at seven o'clock, with strict instructions to \nbe watchful on their posts all night; and all the doors were \nlocked.  The gentlemen of the Temple, and the other Inns, mounted \nguard within their gates, and strengthened them with the great \nstones of the pavement, which they took up for the purpose.  In \nLincoln's Inn, they gave up the hall and commons to the \nNorthumberland Militia, under the command of Lord Algernon Percy; \nin some few of the city wards, the burgesses turned out, and \nwithout making a very fierce show, looked brave enough.  Some \nhundreds of stout gentlemen threw themselves, armed to the teeth, \ninto the halls of the different companies, double-locked and bolted \nall the gates, and dared the rioters (among themselves) to come on \nat their peril.  These arrangements being all made simultaneously, \nor nearly so, were completed by the time it got dark; and then the \nstreets were comparatively clear, and were guarded at all the great \ncorners and chief avenues by the troops: while parties of the \nofficers rode up and down in all directions, ordering chance \nstragglers home, and admonishing the residents to keep within their \nhouses, and, if any firing ensued, not to approach the windows.  \nMore chains were drawn across such of the thoroughfares as were of \na nature to favour the approach of a great crowd, and at each of \nthese points a considerable force was stationed.  All these \nprecautions having been taken, and it being now quite dark, those \nin command awaited the result in some anxiety: and not without a \nhope that such vigilant demonstrations might of themselves \ndishearten the populace, and prevent any new outrages.\n\nBut in this reckoning they were cruelly mistaken, for in half an \nhour, or less, as though the setting in of night had been their \npreconcerted signal, the rioters having previously, in small \nparties, prevented the lighting of the street lamps, rose like a \ngreat sea; and that in so many places at once, and with such \ninconceivable fury, that those who had the direction of the troops \nknew not, at first, where to turn or what to do.  One after \nanother, new fires blazed up in every quarter of the town, as \nthough it were the intention of the insurgents to wrap the city in \na circle of flames, which, contracting by degrees, should burn the \nwhole to ashes; the crowd swarmed and roared in every street; and \nnone but rioters and soldiers being out of doors, it seemed to the \nlatter as if all London were arrayed against them, and they stood \nalone against the town.\n\nIn two hours, six-and-thirty fires were raging--six-and-thirty \ngreat conflagrations: among them the Borough Clink in Tooley \nStreet, the King's Bench, the Fleet, and the New Bridewell.  In \nalmost every street, there was a battle; and in every quarter the \nmuskets of the troops were heard above the shouts and tumult of the \nmob.  The firing began in the Poultry, where the chain was drawn \nacross the road, where nearly a score of people were killed on the \nfirst discharge.  Their bodies having been hastily carried into St \nMildred's Church by the soldiers, the latter fired again, and \nfollowing fast upon the crowd, who began to give way when they saw \nthe execution that was done, formed across Cheapside, and charged \nthem at the point of the bayonet.\n\nThe streets were now a dreadful spectacle.  The shouts of the \nrabble, the shrieks of women, the cries of the wounded, and the \nconstant firing, formed a deafening and an awful accompaniment to \nthe sights which every corner presented.  Wherever the road was \nobstructed by the chains, there the fighting and the loss of life \nwere greatest; but there was hot work and bloodshed in almost every \nleading thoroughfare.\n\nAt Holborn Bridge, and on Holborn Hill, the confusion was greater \nthan in any other part; for the crowd that poured out of the city \nin two great streams, one by Ludgate Hill, and one by Newgate \nStreet, united at that spot, and formed a mass so dense, that at \nevery volley the people seemed to fall in heaps.  At this place a \nlarge detachment of soldiery were posted, who fired, now up Fleet \nMarket, now up Holborn, now up Snow Hill--constantly raking the \nstreets in each direction.  At this place too, several large fires \nwere burning, so that all the terrors of that terrible night seemed \nto be concentrated in one spot.\n\nFull twenty times, the rioters, headed by one man who wielded an \naxe in his right hand, and bestrode a brewer's horse of great size \nand strength, caparisoned with fetters taken out of Newgate, which \nclanked and jingled as he went, made an attempt to force a passage \nat this point, and fire the vintner's house.  Full twenty times \nthey were repulsed with loss of life, and still came back again; \nand though the fellow at their head was marked and singled out by \nall, and was a conspicuous object as the only rioter on horseback, \nnot a man could hit him.  So surely as the smoke cleared away, so \nsurely there was he; calling hoarsely to his companions, \nbrandishing his axe above his head, and dashing on as though he \nbore a charmed life, and was proof against ball and powder.\n\nThis man was Hugh; and in every part of the riot, he was seen.  He \nheaded two attacks upon the Bank, helped to break open the Toll-\nhouses on Blackfriars Bridge, and cast the money into the street: \nfired two of the prisons with his own hand: was here, and there, \nand everywhere--always foremost--always active--striking at the \nsoldiers, cheering on the crowd, making his horse's iron music \nheard through all the yell and uproar: but never hurt or stopped.  \nTurn him at one place, and he made a new struggle in anotlter; \nforce him to retreat at this point, and he advanced on that, \ndirectly.  Driven from Holborn for the twentieth time, he rode at \nthe head of a great crowd straight upon Saint Paul's, attacked a \nguard of soldiers who kept watch over a body of prisoners within \nthe iron railings, forced them to retreat, rescued the men they had \nin custody, and with this accession to his party, came back again, \nmad with liquor and excitement, and hallooing them on like a \ndemon.\n\nIt would have been no easy task for the most careful rider to sit a \nhorse in the midst of such a throng and tumult; but though this \nmadman rolled upon his back (he had no saddle) like a boat upon the \nsea, he never for an instant lost his seat, or failed to guide him \nwhere he would.  Through the very thickest of the press, over dead \nbodies and burning fragments, now on the pavement, now in the road, \nnow riding up a flight of steps to make himself the more \nconspicuous to his party, and now forcing a passage through a mass \nof human beings, so closely squeezed together that it seemed as if \nthe edge of a knife would scarcely part them,--on he went, as \nthough he could surmount all obstacles by the mere exercise of his \nwill.  And perhaps his not being shot was in some degree \nattributable to this very circumstance; for his extreme audacity, \nand the conviction that he must be one of those to whom the \nproclamation referred, inspired the soldiers with a desire to take \nhim alive, and diverted many an aim which otherwise might have been \nmore near the mark.\n\nThe vintner and Mr Haredale, unable to sit quietly listening to the \nnoise without seeing what went on, had climbed to the roof of the \nhouse, and hiding behind a stack of chimneys, were looking \ncautiously down into the street, almost hoping that after so many \nrepulses the rioters would be foiled, when a great shout proclaimed \nthat a parry were coming round the other way; and the dismal \njingling of those accursed fetters warned them next moment that \nthey too were led by Hugh.  The soldiers had advanced into Fleet \nMarket and were dispersing the people there; so that they came on \nwith hardly any check, and were soon before the house.\n\n'All's over now,' said the vintner.  'Fifty thousand pounds will be \nscattered in a minute.  We must save ourselves.  We can do no \nmore, and shall have reason to be thankful if we do as much.'\n\nTheir first impulse was, to clamber along the roofs of the houses, \nand, knocking at some garret window for admission, pass down that \nway into the street, and so escape.  But another fierce cry from \nbelow, and a general upturning of the faces of the crowd, apprised \nthem that they were discovered, and even that Mr Haredale was \nrecognised; for Hugh, seeing him plainly in the bright glare of \nthe fire, which in that part made it as light as day, called to him \nby his name, and swore to have his life.\n\n'Leave me here,' said Mr Haredale, 'and in Heaven's name, my good \nfriend, save yourself!  Come on!' he muttered, as he turned towards \nHugh and faced him without any further effort at concealment: 'This \nroof is high, and if we close, we will die together!'\n\n'Madness,' said the honest vintner, pulling him back, 'sheer \nmadness.  Hear reason, sir.  My good sir, hear reason.  I could \nnever make myself heard by knocking at a window now; and even if I \ncould, no one would be bold enough to connive at my escape.  \nThrough the cellars, there's a kind of passage into the back street \nby which we roll casks in and out.  We shall have time to get down \nthere before they can force an entry.  Do not delay an instant, but \ncome with me--for both our sakes--for mine--my dear good sir!'\n\nAs he spoke, and drew Mr Haredale back, they had both a glimpse of \nthe street.  It was but a glimpse, but it showed them the crowd, \ngathering and clustering round the house: some of the armed men \npressing to the front to break down the doors and windows, some \nbringing brands from the nearest fire, some with lifted faces \nfollowing their course upon the roof and pointing them out to their \ncompanions: all raging and roaring like the flames they lighted up.  \nThey saw some men thirsting for the treasures of strong liquor \nwhich they knew were stored within; they saw others, who had been \nwounded, sinking down into the opposite doorways and dying, \nsolitary wretches, in the midst of all the vast assemblage; here a \nfrightened woman trying to escape; and there a lost child; and \nthere a drunken ruffian, unconscious of the death-wound on his \nhead, raving and fighting to the last.  All these things, and even \nsuch trivial incidents as a man with his hat off, or turning round, \nor stooping down, or shaking hands with another, they marked \ndistinctly; yet in a glance so brief, that, in the act of stepping \nback, they lost the whole, and saw but the pale faces of each \nother, and the red sky above them.\n\nMr Haredale yielded to the entreaties of his companion--more \nbecause he was resolved to defend him, than for any thought he had \nof his own life, or any care he entertained for his own safety--and \nquickly re-entering the house, they descended the stairs together.  \nLoud blows were thundering on the shutters, crowbars were already \nthrust beneath the door, the glass fell from the sashes, a deep \nlight shone through every crevice, and they heard the voices of the \nforemost in the crowd so close to every chink and keyhole, that \nthey seemed to be hoarsely whispering their threats into their very \nears.  They had but a moment reached the bottom of the cellar-steps \nand shut the door behind them, when the mob broke in.\n\nThe vaults were profoundly dark, and having no torch or candle--for \nthey had been afraid to carry one, lest it should betray their \nplace of refuge--they were obliged to grope with their hands.  But \nthey were not long without light, for they had not gone far when \nthey heard the crowd forcing the door; and, looking back among the \nlow-arched passages, could see them in the distance, hurrying to \nand fro with flashing links, broaching the casks, staving the great \nvats, turning off upon the right hand and the left, into the \ndifferent cellars, and lying down to drink at the channels of \nstrong spirits which were already flowing on the ground.\n\nThey hurried on, not the less quickly for this; and had reached the \nonly vault which lay between them and the passage out, when \nsuddenly, from the direction in which they were going, a strong \nlight gleamed upon their faces; and before they could slip aside, \nor turn back, or hide themselves, two men (one bearing a torch) \ncame upon them, and cried in an astonished whisper, 'Here they \nare!'\n\nAt the same instant they pulled off what they wore upon their \nheads.  Mr Haredale saw before him Edward Chester, and then saw, \nwhen the vintner gasped his name, Joe Willet.\n\nAy, the same Joe, though with an arm the less, who used to make the \nquarterly journey on the grey mare to pay the bill to the purple-\nfaced vintner; and that very same purple-faced vintner, formerly \nof Thames Street, now looked him in the face, and challenged him by \nname.\n\n'Give me your hand,' said Joe softly, taking it whether the \nastonished vintner would or no.  'Don't fear to shake it; it's a \nfriendly one and a hearty one, though it has no fellow.  Why, how \nwell you look and how bluff you are!  And you--God bless you, sir.  \nTake heart, take heart.  We'll find them.  Be of good cheer; we \nhave not been idle.'\n\nThere was something so honest and frank in Joe's speech, that Mr \nHaredale put his hand in his involuntarily, though their meeting \nwas suspicious enough.  But his glance at Edward Chester, and that \ngentleman's keeping aloof, were not lost upon Joe, who said \nbluntly, glancing at Edward while he spoke:\n\n'Times are changed, Mr Haredale, and times have come when we ought \nto know friends from enemies, and make no confusion of names.  Let \nme tell you that but for this gentleman, you would most likely \nhave been dead by this time, or badly wounded at the best.'\n\n'What do you say?' cried Mr Haredale.\n\n'I say,' said Joe, 'first, that it was a bold thing to be in the \ncrowd at all disguised as one of them; though I won't say much \nabout that, on second thoughts, for that's my case too.  Secondly, \nthat it was a brave and glorious action--that's what I call it--to \nstrike that fellow off his horse before their eyes!'\n\n'What fellow!  Whose eyes!'\n\n'What fellow, sir!' cried Joe: 'a fellow who has no goodwill to \nyou, and who has the daring and devilry in him of twenty fellows.  \nI know him of old.  Once in the house, HE would have found you, \nhere or anywhere.  The rest owe you no particular grudge, and, \nunless they see you, will only think of drinking themselves dead.  \nBut we lose time.  Are you ready?'\n\n'Quite,' said Edward.  'Put out the torch, Joe, and go on.  And be \nsilent, there's a good fellow.'\n\n'Silent or not silent,' murmured Joe, as he dropped the flaring \nlink upon the ground, crushed it with his foot, and gave his hand \nto Mr Haredale, 'it was a brave and glorious action;--no man can \nalter that.'\n\nBoth Mr Haredale and the worthy vintner were too amazed and too \nmuch hurried to ask any further questions, so followed their \nconductors in silence.  It seemed, from a short whispering which \npresently ensued between them and the vintner relative to the best \nway of escape, that they had entered by the back-door, with the \nconnivance of John Grueby, who watched outside with the key in his \npocket, and whom they had taken into their confidence.  A party of \nthe crowd coming up that way, just as they entered, John had \ndouble-locked the door again, and made off for the soldiers, so \nthat means of retreat was cut off from under them.\n\nHowever, as the front-door had been forced, and this minor crowd, \nbeing anxious to get at the liquor, had no fancy for losing time in \nbreaking down another, but had gone round and got in from Holborn \nwith the rest, the narrow lane in the rear was quite free of \npeople.  So, when they had crawled through the passage indicated by \nthe vintner (which was a mere shelving-trap for the admission of \ncasks), and had managed with some difficulty to unchain and raise \nthe door at the upper end, they emerged into the street without \nbeing observed or interrupted.  Joe still holding Mr Haredale \ntight, and Edward taking the same care of the vintner, they hurried \nthrough the streets at a rapid pace; occasionally standing aside to \nlet some fugitives go by, or to keep out of the way of the soldiers \nwho followed them, and whose questions, when they halted to put \nany, were speedily stopped by one whispered word from Joe.\n\n\n\nChapter 68\n\n\nWhile Newgate was burning on the previous night, Barnaby and his \nfather, having been passed among the crowd from hand to hand, stood \nin Smithfield, on the outskirts of the mob, gazing at the flames \nlike men who had been suddenly roused from sleep.  Some moments \nelapsed before they could distinctly remember where they were, or \nhow they got there; or recollected that while they were standing \nidle and listless spectators of the fire, they had tools in their \nhands which had been hurriedly given them that they might free \nthemselves from their fetters.\n\nBarnaby, heavily ironed as he was, if he had obeyed his first \nimpulse, or if he had been alone, would have made his way back to \nthe side of Hugh, who to his clouded intellect now shone forth with \nthe new lustre of being his preserver and truest friend.  But his \nfather's terror of remaining in the streets, communicated itself to \nhim when he comprehended the full extent of his fears, and \nimpressed him with the same eagerness to fly to a place of safety.\n\nIn a corner of the market among the pens for cattle, Barnaby knelt \ndown, and pausing every now and then to pass his hand over his \nfather's face, or look up to him with a smile, knocked off his \nirons.  When he had seen him spring, a free man, to his feet, and \nhad given vent to the transport of delight which the sight \nawakened, he went to work upon his own, which soon fell rattling \ndown upon the ground, and left his limbs unfettered.\n\nGliding away together when this task was accomplished, and passing \nseveral groups of men, each gathered round a stooping figure to \nhide him from those who passed, but unable to repress the clanking \nsound of hammers, which told that they too were busy at the same \nwork,--the two fugitives made towards Clerkenwell, and passing \nthence to Islington, as the nearest point of egress, were quickly \nin the fields.  After wandering about for a long time, they found \nin a pasture near Finchley a poor shed, with walls of mud, and roof \nof grass and brambles, built for some cowherd, but now deserted.  \nHere, they lay down for the rest of the night.\n\nThey wandered to and fro when it was day, and once Barnaby went off \nalone to a cluster of little cottages two or three miles away, to \npurchase some bread and milk.  But finding no better shelter, they \nreturned to the same place, and lay down again to wait for night.\n\nHeaven alone can tell, with what vague hopes of duty, and \naffection; with what strange promptings of nature, intelligible to \nhim as to a man of radiant mind and most enlarged capacity; with \nwhat dim memories of children he had played with when a child \nhimself, who had prattled of their fathers, and of loving them, and \nbeing loved; with how many half-remembered, dreamy associations of \nhis mother's grief and tears and widowhood; he watched and tended \nthis man.  But that a vague and shadowy crowd of such ideas came \nslowly on him; that they taught him to be sorry when he looked upon \nhis haggard face, that they overflowed his eyes when he stooped to \nkiss him, that they kept him waking in a tearful gladness, shading \nhim from the sun, fanning him with leaves, soothing him when he \nstarted in his sleep--ah! what a troubled sleep it was--and \nwondering when SHE would come to join them and be happy, is the \ntruth.  He sat beside him all that day; listening for her footsteps \nin every breath of air, looking for her shadow on the gently-waving \ngrass, twining the hedge flowers for her pleasure when she came, \nand his when he awoke; and stooping down from time to time to \nlisten to his mutterings, and wonder why he was so restless in that \nquiet place.  The sun went down, and night came on, and he was \nstill quite tranquil; busied with these thoughts, as if there were \nno other people in the world, and the dull cloud of smoke hanging \non the immense city in the distance, hid no vices, no crimes, no \nlife or death, or cause of disquiet--nothing but clear air.\n\nBut the hour had now come when he must go alone to find out the \nblind man (a task that filled him with delight) and bring him to \nthat place; taking especial care that he was not watched or \nfollowed on his way back.  He listened to the directions he must \nobserve, repeated them again and again, and after twice or thrice \nreturning to surprise his father with a light-hearted laugh, went \nforth, at last, upon his errand: leaving Grip, whom he had carried \nfrom the jail in his arms, to his care.\n\nFleet of foot, and anxious to return, he sped swiftly on towards \nthe city, but could not reach it before the fires began, and made \nthe night angry with their dismal lustre.  When he entered the \ntown--it might be that he was changed by going there without his \nlate companions, and on no violent errand; or by the beautiful \nsolitude in which he had passed the day, or by the thoughts that \nhad come upon him,--but it seemed peopled by a legion of devils.  \nThis flight and pursuit, this cruel burning and destroying, these \ndreadful cries and stunning noises, were THEY the good lord's noble \ncause!\n\nThough almost stupefied by the bewildering scene, still be found \nthe blind man's house.  It was shut up and tenantless.\n\nHe waited for a long while, but no one came.  At last he withdrew; \nand as he knew by this time that the soldiers were firing, and many \npeople must have been killed, he went down into Holborn, where he \nheard the great crowd was, to try if he could find Hugh, and \npersuade him to avoid the danger, and return with him.\n\nIf he had been stunned and shocked before, his horror was \nincreased a thousandfold when he got into this vortex of the riot, \nand not being an actor in the terrible spectacle, had it all before \nhis eyes.  But there, in the midst, towering above them all, close \nbefore the house they were attacking now, was Hugh on horseback, \ncalling to the rest!\n\nSickened by the sights surrounding him on every side, and by the \nheat and roar, and crash, he forced his way among the crowd (where \nmany recognised him, and with shouts pressed back to let him pass), \nand in time was nearly up with Hugh, who was savagely threatening \nsome one, but whom or what he said, he could not, in the great \nconfusion, understand.  At that moment the crowd forced their way \ninto the house, and Hugh--it was impossible to see by what means, \nin such a concourse--fell headlong down.\n\nBarnaby was beside him when he staggered to his feet.  It was well \nhe made him hear his voice, or Hugh, with his uplifted axe, would \nhave cleft his skull in twain.\n\n'Barnaby--you!  Whose hand was that, that struck me down?'\n\n'Not mine.'\n\n'Whose!--I say, whose!' he cried, reeling back, and looking wildly \nround.  'What are you doing?  Where is he?  Show me!'\n\n'You are hurt,' said Barnaby--as indeed he was, in the head, both \nby the blow he had received, and by his horse's hoof.  'Come away \nwith me.'\n\nAs he spoke, he took the horse's bridle in his hand, turned him, \nand dragged Hugh several paces.  This brought them out of the \ncrowd, which was pouring from the street into the vintner's \ncellars.\n\n'Where's--where's Dennis?' said Hugh, coming to a stop, and \nchecking Barnaby with his strong arm.  'Where has he been all day?  \nWhat did he mean by leaving me as he did, in the jail, last night?  \nTell me, you--d'ye hear!'\n\nWith a flourish of his dangerous weapon, he fell down upon the \nground like a log.  After a minute, though already frantic with \ndrinking and with the wound in his head, he crawled to a stream of \nburning spirit which was pouring down the kennel, and began to \ndrink at it as if it were a brook of water.\n\nBarnaby drew him away, and forced him to rise.  Though he could \nneither stand nor walk, he involuntarily staggered to his horse, \nclimbed upon his back, and clung there.  After vainly attempting to \ndivest the animal of his clanking trappings, Barnaby sprung up \nbehind him, snatched the bridle, turned into Leather Lane, which \nwas close at hand, and urged the frightened horse into a heavy \ntrot.\n\nHe looked back, once, before he left the street; and looked upon a \nsight not easily to be erased, even from his remembrance, so long \nas he had life.\n\nThe vintner's house with a half-a-dozen others near at hand, was \none great, glowing blaze.  All night, no one had essayed to quench \nthe flames, or stop their progress; but now a body of soldiers \nwere actively engaged in pulling down two old wooden houses, which \nwere every moment in danger of taking fire, and which could \nscarcely fail, if they were left to burn, to extend the \nconflagration immensely.  The tumbling down of nodding walls and \nheavy blocks of wood, the hooting and the execrations of the crowd, \nthe distant firing of other military detachments, the distracted \nlooks and cries of those whose habitations were in danger, the \nhurrying to and fro of frightened people with their goods; the \nreflections in every quarter of the sky, of deep, red, soaring \nflames, as though the last day had come and the whole universe were \nburning; the dust, and smoke, and drift of fiery particles, \nscorching and kindling all it fell upon; the hot unwholesome \nvapour, the blight on everything; the stars, and moon, and very \nsky, obliterated;--made up such a sum of dreariness and ruin, that \nit seemed as if the face of Heaven were blotted out, and night, in \nits rest and quiet, and softened light, never could look upon the \nearth again.\n\nBut there was a worse spectacle than this--worse by far than fire \nand smoke, or even the rabble's unappeasable and maniac rage.  The \ngutters of the street, and every crack and fissure in the stones, \nran with scorching spirit, which being dammed up by busy hands, \noverflowed the road and pavement, and formed a great pool, into \nwhich the people dropped down dead by dozens.  They lay in heaps \nall round this fearful pond, husbands and wives, fathers and sons, \nmothers and daughters, women with children in their arms and babies \nat their breasts, and drank until they died.  While some stooped \nwith their lips to the brink and never raised their heads again, \nothers sprang up from their fiery draught, and danced, half in a \nmad triumph, and half in the agony of suffocation, until they fell, \nand steeped their corpses in the liquor that had killed them.  Nor \nwas even this the worst or most appalling kind of death that \nhappened on this fatal night.  From the burning cellars, where they \ndrank out of hats, pails, buckets, tubs, and shoes, some men were \ndrawn, alive, but all alight from head to foot; who, in their \nunendurable anguish and suffering, making for anything that had the \nlook of water, rolled, hissing, in this hideous lake, and splashed \nup liquid fire which lapped in all it met with as it ran along the \nsurface, and neither spared the living nor the dead.  On this last \nnight of the great riots--for the last night it was--the wretched \nvictims of a senseless outcry, became themselves the dust and ashes \nof the flames they had kindled, and strewed the public streets of \nLondon.\n\nWith all he saw in this last glance fixed indelibly upon his mind, \nBarnaby hurried from the city which enclosed such horrors; and \nholding down his head that he might not even see the glare of the \nfires upon the quiet landscape, was soon in the still country \nroads.\n\nHe stopped at about half-a-mile from the shed where his father \nlay, and with some difficulty making Hugh sensible that he must \ndismount, sunk the horse's furniture in a pool of stagnant water, \nand turned the animal loose.  That done, he supported his companion \nas well as he could, and led him slowly forward.\n\n\n\nChapter 69\n\n\nIt was the dead of night, and very dark, when Barnaby, with his \nstumbling comrade, approached the place where he had left his \nfather; but he could see him stealing away into the gloom, \ndistrustful even of him, and rapidly retreating.  After calling to \nhim twice or thrice that there was nothing to fear, but without \neffect, he suffered Hugh to sink upon the ground, and followed to \nbring him back.\n\nHe continued to creep away, until Barnaby was close upon him; then \nturned, and said in a terrible, though suppressed voice:\n\n'Let me go.  Do not lay hands upon me.  You have told her; and you \nand she together have betrayed me!'\n\nBarnaby looked at him, in silence.\n\n'You have seen your mother!'\n\n'No,' cried Barnaby, eagerly.  'Not for a long time--longer than I \ncan tell.  A whole year, I think.  Is she here?'\n\nHis father looked upon him steadfastly for a few moments, and then \nsaid--drawing nearer to him as he spoke, for, seeing his face, and \nhearing his words, it was impossible to doubt his truth:\n\n'What man is that?'\n\n'Hugh--Hugh.  Only Hugh.  You know him.  HE will not harm you.  \nWhy, you're afraid of Hugh!  Ha ha ha!  Afraid of gruff, old, noisy \nHugh!'\n\n'What man is he, I ask you,' he rejoined so fiercely, that Barnaby \nstopped in his laugh, and shrinking back, surveyed him with a look \nof terrified amazement.\n\n'Why, how stern you are!  You make me fear you, though you are my \nfather.  Why do you speak to me so?'\n\n--'I want,' he answered, putting away the hand which his son, with \na timid desire to propitiate him, laid upon his sleeve,--'I want an \nanswer, and you give me only jeers and questions.  Who have you \nbrought with you to this hiding-place, poor fool; and where is the \nblind man?'\n\n'I don't know where.  His house was close shut.  I waited, but no \nperson came; that was no fault of mine.  This is Hugh--brave Hugh, \nwho broke into that ugly jail, and set us free.  Aha!  You like him \nnow, do you?  You like him now!'\n\n'Why does he lie upon the ground?'\n\n'He has had a fall, and has been drinking.  The fields and trees go \nround, and round, and round with him, and the ground heaves under \nhis feet.  You know him?  You remember?  See!'\n\nThey had by this time returned to where he lay, and both stooped \nover him to look into his face.\n\n'I recollect the man,' his father murmured.  'Why did you bring him \nhere?'\n\n'Because he would have been killed if I had left him over yonder.  \nThey were firing guns and shedding blood.  Does the sight of blood \nturn you sick, father?  I see it does, by your face.  That's like \nme--What are you looking at?'\n\n'At nothing!' said the murderer softly, as he started back a pace \nor two, and gazed with sunken jaw and staring eyes above his son's \nhead.  'At nothing!'\n\nHe remained in the same attitude and with the same expression on \nhis face for a minute or more; then glanced slowly round as if he \nhad lost something; and went shivering back, towards the shed.\n\n'Shall I bring him in, father?' asked Barnaby, who had looked on, \nwondering.\n\nHe only answered with a suppressed groan, and lying down upon the \nground, wrapped his cloak about his head, and shrunk into the \ndarkest corner.\n\nFinding that nothing would rouse Hugh now, or make him sensible for \na moment, Barnaby dragged him along the grass, and laid him on a \nlittle heap of refuse hay and straw which had been his own bed; \nfirst having brought some water from a running stream hard by, and \nwashed his wound, and laved his hands and face.  Then he lay down \nhimself, between the two, to pass the night; and looking at the \nstars, fell fast asleep.\n\nAwakened early in the morning, by the sunshine and the songs of \nbirds, and hum of insects, he left them sleeping in the hut, and \nwalked into the sweet and pleasant air.  But he felt that on his \njaded senses, oppressed and burdened with the dreadful scenes of \nlast night, and many nights before, all the beauties of opening \nday, which he had so often tasted, and in which he had had such \ndeep delight, fell heavily.  He thought of the blithe mornings when \nhe and the dogs went bounding on together through the woods and \nfields; and the recollection filled his eyes with tears.  He had no \nconsciousness, God help him, of having done wrong, nor had he any \nnew perception of the merits of the cause in which he had been \nengaged, or those of the men who advocated it; but he was full of \ncares now, and regrets, and dismal recollections, and wishes (quite \nunknown to him before) that this or that event had never happened, \nand that the sorrow and suffering of so many people had been \nspared.  And now he began to think how happy they would be--his \nfather, mother, he, and Hugh--if they rambled away together, and \nlived in some lonely place, where there were none of these \ntroubles; and that perhaps the blind man, who had talked so wisely \nabout gold, and told him of the great secrets he knew, could teach \nthem how to live without being pinched by want.  As this occurred \nto him, he was the more sorry that he had not seen him last night; \nand he was still brooding over this regret, when his father came, \nand touched him on the shoulder.\n\n'Ah!' cried Barnaby, starting from his fit of thoughtfulness.  'Is \nit only you?'\n\n'Who should it be?'\n\n'I almost thought,' he answered, 'it was the blind man.  I must \nhave some talk with him, father.'\n\n'And so must I, for without seeing him, I don't know where to fly \nor what to do, and lingering here, is death.  You must go to him \nagain, and bring him here.'\n\n'Must I!' cried Barnaby, delighted; 'that's brave, father.  That's \nwhat I want to do.'\n\n'But you must bring only him, and none other.  And though you wait \nat his door a whole day and night, still you must wait, and not \ncome back without him.'\n\n'Don't you fear that,' he cried gaily.  'He shall come, he shall \ncome.'\n\n'Trim off these gewgaws,' said his father, plucking the scraps of \nribbon and the feathers from his hat, 'and over your own dress wear \nmy cloak.  Take heed how you go, and they will be too busy in the \nstreets to notice you.  Of your coming back you need take no \naccount, for he'll manage that, safely.'\n\n'To be sure!' said Barnaby.  'To be sure he will!  A wise man, \nfather, and one who can teach us to be rich.  Oh! I know him, I \nknow him.'\n\nHe was speedily dressed, and as well disguised as he could be.  \nWith a lighter heart he then set off upon his second journey, \nleaving Hugh, who was still in a drunken stupor, stretched upon the \nground within the shed, and his father walking to and fro before it.\n\nThe murderer, full of anxious thoughts, looked after him, and paced \nup and down, disquieted by every breath of air that whispered among \nthe boughs, and by every light shadow thrown by the passing clouds \nupon the daisied ground.  He was anxious for his safe return, and \nyet, though his own life and safety hung upon it, felt a relief \nwhile he was gone.  In the intense selfishness which the constant \npresence before him of his great crimes, and their consequences \nhere and hereafter, engendered, every thought of Barnaby, as his \nson, was swallowed up and lost.  Still, his presence was a torture \nand reproach; in his wild eyes, there were terrible images of that \nguilty night; with his unearthly aspect, and his half-formed mind, \nhe seemed to the murderer a creature who had sprung into existence \nfrom his victim's blood.  He could not bear his look, his voice, \nhis touch; and yet he was forced, by his own desperate condition \nand his only hope of cheating the gibbet, to have him by his side, \nand to know that he was inseparable from his single chance of escape.\n\nHe walked to and fro, with little rest, all day, revolving these \nthings in his mind; and still Hugh lay, unconscious, in the shed.  \nAt length, when the sun was setting, Barnaby returned, leading the \nblind man, and talking earnestly to him as they came along together.\n\nThe murderer advanced to meet them, and bidding his son go on and \nspeak to Hugh, who had just then staggered to his feet, took his \nplace at the blind man's elbow, and slowly followed, towards the \nshed.\n\n'Why did you send HIM?' said Stagg.  'Don't you know it was the way \nto have him lost, as soon as found?'\n\n'Would you have had me come myself?' returned the other.\n\n'Humph!  Perhaps not.  I was before the jail on Tuesday night, but \nmissed you in the crowd.  I was out last night, too.  There was \ngood work last night--gay work--profitable work'--he added, \nrattling the money in his pockets.\n\n'Have you--'\n\n--'Seen your good lady?  Yes.'\n\n'Do you mean to tell me more, or not?'\n\n'I'll tell you all,' returned the blind man, with a laugh.  'Excuse \nme--but I love to see you so impatient.  There's energy in it.'\n\n'Does she consent to say the word that may save me?'\n\n'No,' returned the blind man emphatically, as he turned his face \ntowards him.  'No.  Thus it is.  She has been at death's door since \nshe lost her darling--has been insensible, and I know not what.  I \ntracked her to a hospital, and presented myself (with your leave) \nat her bedside.  Our talk was not a long one, for she was weak, and \nthere being people near I was not quite easy.  But I told her all \nthat you and I agreed upon, and pointed out the young gentleman's \nposition, in strong terms.  She tried to soften me, but that, of \ncourse (as I told her), was lost time.  She cried and moaned, you \nmay be sure; all women do.  Then, of a sudden, she found her voice \nand strength, and said that Heaven would help her and her innocent \nson; and that to Heaven she appealed against us--which she did; in \nreally very pretty language, I assure you.  I advised her, as a \nfriend, not to count too much on assistance from any such distant \nquarter--recommended her to think of it--told her where I lived--\nsaid I knew she would send to me before noon, next day--and left \nher, either in a faint or shamming.'\n\nWhen he had concluded this narration, during which he had made \nseveral pauses, for the convenience of cracking and eating nuts, of \nwhich he seemed to have a pocketful, the blind man pulled a flask \nfrom his pocket, took a draught himself, and offered it to his \ncompanion.\n\n'You won't, won't you?' he said, feeling that he pushed it from \nhim.  'Well!  Then the gallant gentleman who's lodging with you, \nwill.  Hallo, bully!'\n\n'Death!' said the other, holding him back.  'Will you tell me what \nI am to do!'\n\n'Do!  Nothing easier.  Make a moonlight flitting in two hours' time \nwith the young gentleman (he's quite ready to go; I have been \ngiving him good advice as we came along), and get as far from \nLondon as you can.  Let me know where you are, and leave the rest \nto me.  She MUST come round; she can't hold out long; and as to the \nchances of your being retaken in the meanwhile, why it wasn't one \nman who got out of Newgate, but three hundred.  Think of that, for \nyour comfort.'\n\n'We must support life.  How?'\n\n'How!' repeated the blind man.  'By eating and drinking.  And how \nget meat and drink, but by paying for it!  Money!' he cried, \nslapping his pocket.  'Is money the word?  Why, the streets have \nbeen running money.  Devil send that the sport's not over yet, for \nthese are jolly times; golden, rare, roaring, scrambling times.  \nHallo, bully!  Hallo!  Hallo!  Drink, bully, drink.  Where are ye \nthere!  Hallo!'\n\nWith such vociferations, and with a boisterous manner which bespoke \nhis perfect abandonment to the general licence and disorder, he \ngroped his way towards the shed, where Hugh and Barnaby were \nsitting on the ground.\n\n'Put it about!' he cried, handing his flask to Hugh.  'The kennels \nrun with wine and gold.  Guineas and strong water flow from the \nvery pumps.  About with it, don't spare it!'\n\nExhausted, unwashed, unshorn, begrimed with smoke and dust, his \nhair clotted with blood, his voice quite gone, so that he spoke in \nwhispers; his skin parched up by fever, his whole body bruised and \ncut, and beaten about, Hugh still took the flask, and raised it to \nhis lips.  He was in the act of drinking, when the front of the \nshed was suddenly darkened, and Dennis stood before them.\n\n'No offence, no offence,' said that personage in a conciliatory \ntone, as Hugh stopped in his draught, and eyed him, with no \npleasant look, from head to foot.  'No offence, brother.  Barnaby \nhere too, eh?  How are you, Barnaby?  And two other gentlemen!  \nYour humble servant, gentlemen.  No offence to YOU either, I hope.  \nEh, brothers?'\n\nNotwithstanding that he spoke in this very friendly and confident \nmanner, he seemed to have considerable hesitation about entering, \nand remained outside the roof.  He was rather better dressed than \nusual: wearing the same suit of threadbare black, it is true, but \nhaving round his neck an unwholesome-looking cravat of a yellowish \nwhite; and, on his hands, great leather gloves, such as a gardener \nmight wear in following his trade.  His shoes were newly greased, \nand ornamented with a pair of rusty iron buckles; the packthread at \nhis knees had been renewed; and where he wanted buttons, he wore \npins.  Altogether, he had something the look of a tipstaff, or a \nbailiff's follower, desperately faded, but who had a notion of \nkeeping up the appearance of a professional character, and making \nthe best of the worst means.\n\n'You're very snug here,' said Mr Dennis, pulling out a mouldy \npocket-handkerchief, which looked like a decomposed halter, and \nwiping his forehead in a nervous manner.\n\n'Not snug enough to prevent your finding us, it seems,' Hugh \nanswered, sulkily.\n\n'Why I'll tell you what, brother,' said Dennis, with a friendly \nsmile, 'when you don't want me to know which way you're riding, you \nmust wear another sort of bells on your horse.  Ah! I know the \nsound of them you wore last night, and have got quick ears for 'em; \nthat's the truth.  Well, but how are you, brother?'\n\nHe had by this time approached, and now ventured to sit down by him.\n\n'How am I?' answered Hugh.  'Where were you yesterday?  Where did \nyou go when you left me in the jail?  Why did you leave me?  And \nwhat did you mean by rolling your eyes and shaking your fist at me, \neh?'\n\n'I shake my fist!--at you, brother!' said Dennis, gently checking \nHugh's uplifted hand, which looked threatening.\n\n'Your stick, then; it's all one.'\n\n'Lord love you, brother, I meant nothing.  You don't understand me \nby half.  I shouldn't wonder now,' he added, in the tone of a \ndesponding and an injured man, 'but you thought, because I wanted \nthem chaps left in the prison, that I was a going to desert the \nbanners?'\n\nHugh told him, with an oath, that he had thought so.\n\n'Well!' said Mr Dennis, mournfully, 'if you an't enough to make a \nman mistrust his feller-creeturs, I don't know what is.  Desert the \nbanners!  Me!  Ned Dennis, as was so christened by his own \nfather!--Is this axe your'n, brother?'\n\nYes, it's mine,' said Hugh, in the same sullen manner as before; \n'it might have hurt you, if you had come in its way once or twice \nlast night.  Put it down.'\n\n'Might have hurt me!' said Mr Dennis, still keeping it in his hand, \nand feeling the edge with an air of abstraction.  'Might have hurt \nme! and me exerting myself all the time to the wery best advantage.  \nHere's a world!  And you're not a-going to ask me to take a sup out \nof that 'ere bottle, eh?'\n\nHugh passed it towards him.  As he raised it to his lips, Barnaby \njumped up, and motioning them to be silent, looked eagerly out.\n\n'What's the matter, Barnaby?' said Dennis, glancing at Hugh and \ndropping the flask, but still holding the axe in his hand.\n\n'Hush!' he answered softly.  'What do I see glittering behind the \nhedge?'\n\n'What!' cried the hangman, raising his voice to its highest pitch, \nand laying hold of him and Hugh.  'Not SOLDIERS, surely!'\n\nThat moment, the shed was filled with armed men; and a body of \nhorse, galloping into the field, drew up before it.\n\n'There!' said Dennis, who remained untouched among them when they \nhad seized their prisoners; 'it's them two young ones, gentlemen, \nthat the proclamation puts a price on.  This other's an escaped \nfelon.--I'm sorry for it, brother,' he added, in a tone of \nresignation, addressing himself to Hugh; 'but you've brought it on \nyourself; you forced me to do it; you wouldn't respect the \nsoundest constitootional principles, you know; you went and \nwiolated the wery framework of society.  I had sooner have given \naway a trifle in charity than done this, I would upon my soul.--If \nyou'll keep fast hold on 'em, gentlemen, I think I can make a shift \nto tie 'em better than you can.'\n\nBut this operation was postponed for a few moments by a new \noccurrence.  The blind man, whose ears were quicker than most \npeople's sight, had been alarmed, before Barnaby, by a rustling in \nthe bushes, under cover of which the soldiers had advanced.  He \nretreated instantly--had hidden somewhere for a minute--and \nprobably in his confusion mistaking the point at which he had \nemerged, was now seen running across the open meadow.\n\nAn officer cried directly that he had helped to plunder a house \nlast night.  He was loudly called on, to surrender.  He ran the \nharder, and in a few seconds would have been out of gunshot.  The \nword was given, and the men fired.\n\nThere was a breathless pause and a profound silence, during which \nall eyes were fixed upon him.  He had been seen to start at the \ndischarge, as if the report had frightened him.  But he neither \nstopped nor slackened his pace in the least, and ran on full forty \nyards further.  Then, without one reel or stagger, or sign of \nfaintness, or quivering of any limb, he dropped.\n\nSome of them hurried up to where he lay;--the hangman with them.  \nEverything had passed so quickly, that the smoke had not yet \nscattered, but curled slowly off in a little cloud, which seemed \nlike the dead man's spirit moving solemnly away.  There were a few \ndrops of blood upon the grass--more, when they turned him over--\nthat was all.\n\n'Look here! Look here!' said the hangman, stooping one knee beside \nthe body, and gazing up with a disconsolate face at the officer and \nmen.  'Here's a pretty sight!'\n\n'Stand out of the way,' replied the officer.  'Serjeant! see what \nhe had about him.'\n\nThe man turned his pockets out upon the grass, and counted, besides \nsome foreign coins and two rings, five-and-forty guineas in gold.  \nThese were bundled up in a handkerchief and carried away; the body \nremained there for the present, but six men and the serjeant were \nleft to take it to the nearest public-house.\n\n'Now then, if you're going,' said the serjeant, clapping Dennis on \nthe back, and pointing after the officer who was walking towards \nthe shed.\n\nTo which Mr Dennis only replied, 'Don't talk to me!' and then \nrepeated what he had said before, namely, 'Here's a pretty sight!'\n\n'It's not one that you care for much, I should think,' observed the \nserjeant coolly.\n\n'Why, who,' said Mr Dennis rising, 'should care for it, if I \ndon't?'\n\n'Oh! I didn't know you was so tender-hearted,' said the serjeant.  \n'That's all!'\n\n'Tender-hearted!' echoed Dennis.  'Tender-hearted!  Look at this \nman.  Do you call THIS constitootional?  Do you see him shot \nthrough and through instead of being worked off like a Briton?  \nDamme, if I know which party to side with.  You're as bad as the \nother.  What's to become of the country if the military power's to \ngo a superseding the ciwilians in this way?  Where's this poor \nfeller-creetur's rights as a citizen, that he didn't have ME in \nhis last moments!  I was here.  I was willing.  I was ready.  These \nare nice times, brother, to have the dead crying out against us in \nthis way, and sleep comfortably in our beds arterwards; wery \nnice!'\n\nWhether he derived any material consolation from binding the \nprisoners, is uncertain; most probably he did.  At all events his \nbeing summoned to that work, diverted him, for the time, from these \npainful reflections, and gave his thoughts a more congenial \noccupation.\n\nThey were not all three carried off together, but in two parties; \nBarnaby and his father, going by one road in the centre of a body \nof foot; and Hugh, fast bound upon a horse, and strongly guarded by \na troop of cavalry, being taken by another.\n\nThey had no opportunity for the least communication, in the short \ninterval which preceded their departure; being kept strictly apart.  \nHugh only observed that Barnaby walked with a drooping head among \nhis guard, and, without raising his eyes, that he tried to wave \nhis fettered hand when he passed.  For himself, he buoyed up his \ncourage as he rode along, with the assurance that the mob would \nforce his jail wherever it might be, and set him at liberty.  But \nwhen they got into London, and more especially into Fleet Market, \nlately the stronghold of the rioters, where the military were \nrooting out the last remnant of the crowd, he saw that this hope \nwas gone, and felt that he was riding to his death.\n\n\n\nChapter 70\n\n\nMr Dennis having despatched this piece of business without any \npersonal hurt or inconvenience, and having now retired into the \ntranquil respectability of private life, resolved to solace himself \nwith half an hour or so of female society.  With this amiable \npurpose in his mind, he bent his steps towards the house where \nDolly and Miss Haredale were still confined, and whither Miss Miggs \nhad also been removed by order of Mr Simon Tappertit.\n\nAs he walked along the streets with his leather gloves clasped \nbehind him, and his face indicative of cheerful thought and \npleasant calculation, Mr Dennis might have been likened unto a \nfarmer ruminating among his crops, and enjoying by anticipation the \nbountiful gifts of Providence.  Look where he would, some heap of \nruins afforded him rich promise of a working off; the whole town \nappeared to have been ploughed and sown, and nurtured by most \ngenial weather; and a goodly harvest was at hand.\n\nHaving taken up arms and resorted to deeds of violence, with the \ngreat main object of preserving the Old Bailey in all its purity, \nand the gallows in all its pristine usefulness and moral grandeur, \nit would perhaps be going too far to assert that Mr Dennis had ever \ndistinctly contemplated and foreseen this happy state of things.  \nHe rather looked upon it as one of those beautiful dispensations \nwhich are inscrutably brought about for the behoof and advantage of \ngood men.  He felt, as it were, personally referred to, in this \nprosperous ripening for the gibbet; and had never considered \nhimself so much the pet and favourite child of Destiny, or loved \nthat lady so well or with such a calm and virtuous reliance, in \nall his life.\n\nAs to being taken up, himself, for a rioter, and punished with the \nrest, Mr Dennis dismissed that possibility from his thoughts as an \nidle chimera; arguing that the line of conduct he had adopted at \nNewgate, and the service he had rendered that day, would be more \nthan a set-off against any evidence which might identify him as a \nmember of the crowd.  That any charge of companionship which might \nbe made against him by those who were themselves in danger, would \ncertainly go for nought.  And that if any trivial indiscretion on \nhis part should unluckily come out, the uncommon usefulness of his \noffice, at present, and the great demand for the exercise of its \nfunctions, would certainly cause it to be winked at, and passed \nover.  In a word, he had played his cards throughout, with great \ncare; had changed sides at the very nick of time; had delivered up \ntwo of the most notorious rioters, and a distinguished felon to \nboot; and was quite at his ease.\n\nSaving--for there is a reservation; and even Mr Dennis was not \nperfectly happy--saving for one circumstance; to wit, the forcible \ndetention of Dolly and Miss Haredale, in a house almost adjoining \nhis own.  This was a stumbling-block; for if they were discovered \nand released, they could, by the testimony they had it in their \npower to give, place him in a situation of great jeopardy; and to \nset them at liberty, first extorting from them an oath of secrecy \nand silence, was a thing not to be thought of.  It was more, \nperhaps, with an eye to the danger which lurked in this quarter, \nthan from his abstract love of conversation with the sex, that the \nhangman, quickening his steps, now hastened into their society, \ncursing the amorous natures of Hugh and Mr Tappertit with great \nheartiness, at every step he took.\n\nWhen be entered the miserable room in which they were confined, \nDolly and Miss Haredale withdrew in silence to the remotest corner.  \nBut Miss Miggs, who was particularly tender of her reputation, \nimmediately fell upon her knees and began to scream very loud, \ncrying, 'What will become of me!'--'Where is my Simmuns!'--'Have \nmercy, good gentlemen, on my sex's weaknesses!'--with other doleful \nlamentations of that nature, which she delivered with great \npropriety and decorum.\n\n'Miss, miss,' whispered Dennis, beckoning to her with his \nforefinger, 'come here--I won't hurt you.  Come here, my lamb, will \nyou?'\n\nOn hearing this tender epithet, Miss Miggs, who had left off \nscreaming when he opened his lips, and had listened to him \nattentively, began again, crying: 'Oh I'm his lamb!  He says I'm \nhis lamb!  Oh gracious, why wasn't I born old and ugly!  Why was I \never made to be the youngest of six, and all of 'em dead and in \ntheir blessed graves, excepting one married sister, which is \nsettled in Golden Lion Court, number twenty-sivin, second bell-\nhandle on the--!'\n\n'Don't I say I an't a-going to hurt you?' said Dennis, pointing to \na chair.  'Why miss, what's the matter?'\n\n'I don't know what mayn't be the matter!' cried Miss Miggs, \nclasping her hands distractedly.  'Anything may be the matter!'\n\n'But nothing is, I tell you,' said the hangman.  'First stop that \nnoise and come and sit down here, will you, chuckey?'\n\nThe coaxing tone in which he said these latter words might have \nfailed in its object, if he had not accompanied them with sundry \nsharp jerks of his thumb over one shoulder, and with divers winks \nand thrustings of his tongue into his cheek, from which signals the \ndamsel gathered that he sought to speak to her apart, concerning \nMiss Haredale and Dolly.  Her curiosity being very powerful, and \nher jealousy by no means inactive, she arose, and with a great deal \nof shivering and starting back, and much muscular action among all \nthe small bones in her throat, gradually approached him.\n\n'Sit down,' said the hangman.\n\nSuiting the action to the word, he thrust her rather suddenly and \nprematurely into a chair, and designing to reassure her by a little \nharmless jocularity, such as is adapted to please and fascinate \nthe sex, converted his right forefinger into an ideal bradawl or \ngimlet, and made as though he would screw the same into her side--\nwhereat Miss Miggs shrieked again, and evinced symptoms of \nfaintness.\n\n'Lovey, my dear,' whispered Dennis, drawing his chair close to \nhers.  'When was your young man here last, eh?'\n\n'MY young man, good gentleman!' answered Miggs in a tone of \nexquisite distress.\n\n'Ah!  Simmuns, you know--him?' said Dennis.\n\n'Mine indeed!' cried Miggs, with a burst of bitterness--and as she \nsaid it, she glanced towards Dolly.  'MINE, good gentleman!'\n\nThis was just what Mr Dennis wanted, and expected.\n\n'Ah!' he said, looking so soothingly, not to say amorously on \nMiggs, that she sat, as she afterwards remarked, on pins and \nneedles of the sharpest Whitechapel kind, not knowing what \nintentions might be suggesting that expression to his features: \n'I was afraid of that.  I saw as much myself.  It's her fault.  She \nWILL entice 'em.'\n\n'I wouldn't,' cried Miggs, folding her hands and looking upwards \nwith a kind of devout blankness, 'I wouldn't lay myself out as she \ndoes; I wouldn't be as bold as her; I wouldn't seem to say to all \nmale creeturs \"Come and kiss me\"'--and here a shudder quite \nconvulsed her frame--'for any earthly crowns as might be offered.  \nWorlds,' Miggs added solemnly, 'should not reduce me.  No.  Not if \nI was Wenis.'\n\n'Well, but you ARE Wenus, you know,' said Mr Dennis, \nconfidentially.\n\n'No, I am not, good gentleman,' answered Miggs, shaking her head \nwith an air of self-denial which seemed to imply that she might be \nif she chose, but she hoped she knew better.  'No, I am not, good \ngentleman.  Don't charge me with it.'\n\nUp to this time she had turned round, every now and then, to where \nDolly and Miss Haredale had retired and uttered a scream, or groan, \nor laid her hand upon her heart and trembled excessively, with a \nview of keeping up appearances, and giving them to understand that \nshe conversed with the visitor, under protest and on compulsion, \nand at a great personal sacrifice, for their common good.  But at \nthis point, Mr Dennis looked so very full of meaning, and gave such \na singularly expressive twitch to his face as a request to her to \ncome still nearer to him, that she abandoned these little arts, and \ngave him her whole and undivided attention.\n\n'When was Simmuns here, I say?' quoth Dennis, in her ear.\n\n'Not since yesterday morning; and then only for a few minutes.  Not \nall day, the day before.'\n\n'You know he meant all along to carry off that one!' said Dennis, \nindicating Dolly by the slightest possible jerk of his head:--'And \nto hand you over to somebody else.'\n\nMiss Miggs, who had fallen into a terrible state of grief when the \nfirst part of this sentence was spoken, recovered a little at the \nsecond, and seemed by the sudden check she put upon her tears, to \nintimate that possibly this arrangement might meet her views; and \nthat it might, perhaps, remain an open question.\n\n'--But unfort'nately,' pursued Dennis, who observed this: 'somebody \nelse was fond of her too, you see; and even if he wasn't, somebody \nelse is took for a rioter, and it's all over with him.'\n\nMiss Miggs relapsed.\n\n'Now I want,' said Dennis, 'to clear this house, and to see you \nrighted.  What if I was to get her off, out of the way, eh?'\n\nMiss Miggs, brightening again, rejoined, with many breaks and \npauses from excess of feeling, that temptations had been Simmuns's \nbane.  That it was not his faults, but hers (meaning Dolly's).  \nThat men did not see through these dreadful arts as women did, and \ntherefore was caged and trapped, as Simmun had been.  That she had \nno personal motives to serve--far from it--on the contrary, her \nintentions was good towards all parties.  But forasmuch as she \nknowed that Simmun, if united to any designing and artful minxes \n(she would name no names, for that was not her dispositions)--to \nANY designing and artful minxes--must be made miserable and unhappy \nfor life, she DID incline towards prewentions.  Such, she added, \nwas her free confessions.  But as this was private feelings, and \nmight perhaps be looked upon as wengeance, she begged the gentleman \nwould say no more.  Whatever he said, wishing to do her duty by all \nmankind, even by them as had ever been her bitterest enemies, she \nwould not listen to him.  With that she stopped her ears, and shook \nher head from side to side, to intimate to Mr Dennis that though he \ntalked until he had no breath left, she was as deaf as any adder.\n\n'Lookee here, my sugar-stick,' said Mr Dennis, 'if your view's the \nsame as mine, and you'll only be quiet and slip away at the right \ntime, I can have the house clear to-morrow, and be out of this \ntrouble.--Stop though! there's the other.'\n\n'Which other, sir?' asked Miggs--still with her fingers in her ears \nand her head shaking obstinately.\n\n'Why, the tallest one, yonder,' said Dennis, as he stroked his \nchin, and added, in an undertone to himself, something about not \ncrossing Muster Gashford.\n\nMiss Miggs replied (still being profoundly deaf) that if Miss \nHaredale stood in the way at all, he might make himself quite easy \non that score; as she had gathered, from what passed between Hugh \nand Mr Tappertit when they were last there, that she was to be \nremoved alone (not by them, but by somebody else), to-morrow night.\n\nMr Dennis opened his eyes very wide at this piece of information, \nwhistled once, considered once, and finally slapped his head once \nand nodded once, as if he had got the clue to this mysterious \nremoval, and so dismissed it.  Then he imparted his design \nconcerning Dolly to Miss Miggs, who was taken more deaf than \nbefore, when he began; and so remained, all through.\n\nThe notable scheme was this.  Mr Dennis was immediately to seek out \nfrom among the rioters, some daring young fellow (and he had one in \nhis eye, he said), who, terrified by the threats he could hold out \nto him, and alarmed by the capture of so many who were no better \nand no worse than he, would gladly avail himself of any help to get \nabroad, and out of harm's way, with his plunder, even though his \njourney were incumbered by an unwilling companion; indeed, the \nunwilling companion being a beautiful girl, would probably be an \nadditional inducement and temptation.  Such a person found, he \nproposed to bring him there on the ensuing night, when the tall one \nwas taken off, and Miss Miggs had purposely retired; and then that \nDolly should be gagged, muffled in a cloak, and carried in any \nhandy conveyance down to the river's side; where there were \nabundant means of getting her smuggled snugly off in any small \ncraft of doubtful character, and no questions asked.  With regard \nto the expense of this removal, he would say, at a rough \ncalculation, that two or three silver tea or coffee-pots, with \nsomething additional for drink (such as a muffineer, or toast-\nrack), would more than cover it.  Articles of plate of every kind \nhaving been buried by the rioters in several lonely parts of \nLondon, and particularly, as he knew, in St James's Square, which, \nthough easy of access, was little frequented after dark, and had a \nconvenient piece of water in the midst, the needful funds were \nclose at hand, and could be had upon the shortest notice.  With \nregard to Dolly, the gentleman would exercise his own discretion.  \nHe would be bound to do nothing but to take her away, and keep her \naway.  All other arrangements and dispositions would rest entirely \nwith himself.\n\nIf Miss Miggs had had her hearing, no doubt she would have been \ngreatly shocked by the indelicacy of a young female's going away \nwith a stranger by night (for her moral feelings, as we have said, \nwere of the tenderest kind); but directly Mr Dennis ceased to \nspeak, she reminded him that he had only wasted breath.  She then \nwent on to say (still with her fingers in her ears) that nothing \nless than a severe practical lesson would save the locksmith's \ndaughter from utter ruin; and that she felt it, as it were, a moral \nobligation and a sacred duty to the family, to wish that some one \nwould devise one for her reformation.  Miss Miggs remarked, and \nvery justly, as an abstract sentiment which happened to occur to \nher at the moment, that she dared to say the locksmith and his wife \nwould murmur, and repine, if they were ever, by forcible abduction, \nor otherwise, to lose their child; but that we seldom knew, in this \nworld, what was best for us: such being our sinful and imperfect \nnatures, that very few arrived at that clear understanding.\n\nHaving brought their conversation to this satisfactory end, they \nparted: Dennis, to pursue his design, and take another walk about \nhis farm; Miss Miggs, to launch, when he left her, into such a \nburst of mental anguish (which she gave them to understand was \noccasioned by certain tender things he had had the presumption and \naudacity to say), that little Dolly's heart was quite melted.  \nIndeed, she said and did so much to soothe the outraged feelings of \nMiss Miggs, and looked so beautiful while doing so, that if that \nyoung maid had not had ample vent for her surpassing spite, in a \nknowledge of the mischief that was brewing, she must have scratched \nher features, on the spot.\n\n\n\nChapter 71\n\n\nAll next day, Emma Haredale, Dolly, and Miggs, remained cooped up \ntogether in what had now been their prison for so many days, \nwithout seeing any person, or hearing any sound but the murmured \nconversation, in an outer room, of the men who kept watch over \nthem.  There appeared to be more of these fellows than there had \nbeen hitherto; and they could no longer hear the voices of women, \nwhich they had before plainly distinguished.  Some new excitement, \ntoo, seemed to prevail among them; for there was much stealthy \ngoing in and out, and a constant questioning of those who were \nnewly arrived.  They had previously been quite reckless in their \nbehaviour; often making a great uproar; quarrelling among \nthemselves, fighting, dancing, and singing.  They were now very \nsubdued and silent, conversing almost in whispers, and stealing in \nand out with a soft and stealthy tread, very different from the \nboisterous trampling in which their arrivals and departures had \nhitherto been announced to the trembling captives.\n\nWhether this change was occasioned by the presence among them of \nsome person of authority in their ranks, or by any other cause, \nthey were unable to decide.  Sometimes they thought it was in part \nattributable to there being a sick man in the chamber, for last \nnight there had been a shuffling of feet, as though a burden were \nbrought in, and afterwards a moaning noise.  But they had no means \nof ascertaining the truth: for any question or entreaty on their \nparts only provoked a storm of execrations, or something worse; and \nthey were too happy to be left alone, unassailed by threats or \nadmiration, to risk even that comfort, by any voluntary \ncommunication with those who held them in durance.\n\nIt was sufficiently evident, both to Emma and to the locksmith's \npoor little daughter herself, that she, Dolly, was the great \nobject of attraction; and that so soon as they should have leisure \nto indulge in the softer passion, Hugh and Mr Tappertit would \ncertainly fall to blows for her sake; in which latter case, it was \nnot very difficult to see whose prize she would become.  With all \nher old horror of that man revived, and deepened into a degree of \naversion and abhorrence which no language can describe; with a \nthousand old recollections and regrets, and causes of distress, \nanxiety, and fear, besetting her on all sides; poor Dolly Varden--\nsweet, blooming, buxom Dolly--began to hang her head, and fade, and \ndroop, like a beautiful flower.  The colour fled from her cheeks, \nher courage forsook her, her gentle heart failed.  Unmindful of all \nher provoking caprices, forgetful of all her conquests and \ninconstancy, with all her winning little vanities quite gone, she \nnestled all the livelong day in Emma Haredale's bosom; and, \nsometimes calling on her dear old grey-haired father, sometimes on \nher mother, and sometimes even on her old home, pined slowly away, \nlike a poor bird in its cage.\n\nLight hearts, light hearts, that float so gaily on a smooth stream, \nthat are so sparkling and buoyant in the sunshine--down upon fruit, \nbloom upon flowers, blush in summer air, life of the winged insect, \nwhose whole existence is a day--how soon ye sink in troubled water!  \nPoor Dolly's heart--a little, gentle, idle, fickle thing; giddy, \nrestless, fluttering; constant to nothing but bright looks, and \nsmiles and laughter--Dolly's heart was breaking.\n\nEmma had known grief, and could bear it better.  She had little \ncomfort to impart, but she could soothe and tend her, and she did \nso; and Dolly clung to her like a child to its nurse.  In \nendeavouring to inspire her with some fortitude, she increased her \nown; and though the nights were long, and the days dismal, and she \nfelt the wasting influence of watching and fatigue, and had \nperhaps a more defined and clear perception of their destitute \ncondition and its worst dangers, she uttered no complaint.  Before \nthe ruffians, in whose power they were, she bore herself so \ncalmly, and with such an appearance, in the midst of all her \nterror, of a secret conviction that they dared not harm her, that \nthere was not a man among them but held her in some degree of \ndread; and more than one believed she had a weapon hidden in her \ndress, and was prepared to use it.\n\nSuch was their condition when they were joined by Miss Miggs, who \ngave them to understand that she too had been taken prisoner \nbecause of her charms, and detailed such feats of resistance she \nhad performed (her virtue having given her supernatural strength), \nthat they felt it quite a happiness to have her for a champion.  \nNor was this the only comfort they derived at first from Miggs's \npresence and society: for that young lady displayed such \nresignation and long-suffering, and so much meek endurance, under \nher trials, and breathed in all her chaste discourse a spirit of \nsuch holy confidence and resignation, and devout belief that all \nwould happen for the best, that Emma felt her courage strengthened \nby the bright example; never doubting but that everything she said \nwas true, and that she, like them, was torn from all she loved, and \nagonised by doubt and apprehension.  As to poor Dolly, she was \nroused, at first, by seeing one who came from home; but when she \nheard under what circumstances she had left it, and into whose \nhands her father had fallen, she wept more bitterly than ever, and \nrefused all comfort.\n\nMiss Miggs was at some trouble to reprove her for this state of \nmind, and to entreat her to take example by herself, who, she \nsaid, was now receiving back, with interest, tenfold the amount of \nher subscriptions to the red-brick dwelling-house, in the articles \nof peace of mind and a quiet conscience.  And, while on serious \ntopics, Miss Miggs considered it her duty to try her hand at the \nconversion of Miss Haredale; for whose improvement she launched \ninto a polemical address of some length, in the course whereof, \nshe likened herself unto a chosen missionary, and that young lady \nto a cannibal in darkness.  Indeed, she returned so often to these \nsublects, and so frequently called upon them to take a lesson from \nher,--at the same time vaunting and, as it were, rioting in, her \nhuge unworthiness, and abundant excess of sin,--that, in the course \nof a short time, she became, in that small chamber, rather a \nnuisance than a comfort, and rendered them, if possible, even more \nunhappy than they had been before.\n\nThe night had now come; and for the first time (for their jailers \nhad been regular in bringing food and candles), they were left in \ndarkness.  Any change in their condition in such a place inspired \nnew fears; and when some hours had passed, and the gloom was still \nunbroken, Emma could no longer repress her alarm.\n\nThey listened attentively.  There was the same murmuring in the \nouter room, and now and then a moan which seemed to be wrung from a \nperson in great pain, who made an effort to subdue it, but could \nnot.  Even these men seemed to be in darkness too; for no light \nshone through the chinks in the door, nor were they moving, as \ntheir custom was, but quite still: the silence being unbroken by \nso much as the creaking of a board.\n\nAt first, Miss Miggs wondered greatly in her own mind who this sick \nperson might be; but arriving, on second thoughts, at the \nconclusion that he was a part of the schemes on foot, and an artful \ndevice soon to be employed with great success, she opined, for Miss \nHaredale's comfort, that it must be some misguided Papist who had \nbeen wounded: and this happy supposition encouraged her to say, \nunder her breath, 'Ally Looyer!' several times.\n\n'Is it possible,' said Emma, with some indignation, 'that you who \nhave seen these men committing the outrages you have told us of, \nand who have fallen into their hands, like us, can exult in their \ncruelties!'\n\n'Personal considerations, miss,' rejoined Miggs, 'sinks into \nnothing, afore a noble cause.  Ally Looyer!  Ally Looyer!  Ally \nLooyer, good gentlemen!'\n\nIt seemed from the shrill pertinacity with which Miss Miggs \nrepeated this form of acclamation, that she was calling the same \nthrough the keyhole of the door; but in the profound darkness she \ncould not be seen.\n\n'If the time has come--Heaven knows it may come at any moment--when \nthey are bent on prosecuting the designs, whatever they may be, \nwith which they have brought us here, can you still encourage, and \ntake part with them?' demanded Emma.\n\n'I thank my goodness-gracious-blessed-stars I can, miss,' returned \nMiggs, with increased energy.--'Ally Looyer, good gentlemen!'\n\nEven Dolly, cast down and disappointed as she was, revived at this, \nand bade Miggs hold her tongue directly.\n\n'WHICH, was you pleased to observe, Miss Varden?' said Miggs, with \na strong emphasis on the irrelative pronoun.\n\nDolly repeated her request.\n\n'Ho, gracious me!' cried Miggs, with hysterical derision.  'Ho, \ngracious me!  Yes, to be sure I will.  Ho yes!  I am a abject \nslave, and a toiling, moiling, constant-working, always-being-\nfound-fault-with, never-giving-satisfactions, nor-having-no-\ntime-to-clean-oneself, potter's wessel--an't I, miss!  Ho yes!  My \nsituations is lowly, and my capacities is limited, and my duties is \nto humble myself afore the base degenerating daughters of their \nblessed mothers as is--fit to keep companies with holy saints but \nis born to persecutions from wicked relations--and to demean myself \nbefore them as is no better than Infidels--an't it, miss!  Ho yes!  \nMy only becoming occupations is to help young flaunting pagins to \nbrush and comb and titiwate theirselves into whitening and \nsuppulchres, and leave the young men to think that there an't a bit \nof padding in it nor no pinching ins nor fillings out nor pomatums \nnor deceits nor earthly wanities--an't it, miss!  Yes, to be sure \nit is--ho yes!'\n\nHaving delivered these ironical passages with a most wonderful \nvolubility, and with a shrillness perfectly deafening (especially \nwhen she jerked out the interjections), Miss Miggs, from mere \nhabit, and not because weeping was at all appropriate to the \noccasion, which was one of triumph, concluded by bursting into a \nflood of tears, and calling in an impassioned manner on the name of \nSimmuns.\n\nWhat Emma Haredale and Dolly would have done, or how long Miss \nMiggs, now that she had hoisted her true colours, would have gone \non waving them before their astonished senses, it is impossible to \ntell.  Nor is it necessary to speculate on these matters, for a \nstartling interruption occurred at that moment, which took their \nwhole attention by storm.\n\nThis was a violent knocking at the door of the house, and then its \nsudden bursting open; which was immediately succeeded by a scuffle \nin the room without, and the clash of weapons.  Transported with \nthe hope that rescue had at length arrived, Emma and Dolly shrieked \naloud for help; nor were their shrieks unanswered; for after a \nhurried interval, a man, bearing in one hand a drawn sword, and in \nthe other a taper, rushed into the chamber where they were confined.\n\nIt was some check upon their transport to find in this person an \nentire stranger, but they appealed to him, nevertheless, and \nbesought him, in impassioned language, to restore them to their \nfriends.\n\n'For what other purpose am I here?' he answered, closing the door, \nand standing with his back against it.  'With what object have I \nmade my way to this place, through difficulty and danger, but to \npreserve you?'\n\nWith a joy for which it was impossible to find adequate expression, \nthey embraced each other, and thanked Heaven for this most timely \naid.  Their deliverer stepped forward for a moment to put the light \nupon the table, and immediately returning to his former position \nagainst the door, bared his head, and looked on smilingly.\n\n'You have news of my uncle, sir?' said Emma, turning hastily \ntowards him.\n\n'And of my father and mother?' added Dolly.\n\n'Yes,' he said.  'Good news.'\n\n'They are alive and unhurt?' they both cried at once.\n\n'Yes, and unhurt,' he rejoined.\n\n'And close at hand?'\n\n'I did not say close at hand,' he answered smoothly; 'they are at \nno great distance.  YOUR friends, sweet one,' he added, addressing \nDolly, 'are within a few hours' journey.  You will be restored to \nthem, I hope, to-night.'\n\n'My uncle, sir--' faltered Emma.\n\n'Your uncle, dear Miss Haredale, happily--I say happily, because he \nhas succeeded where many of our creed have failed, and is safe--has \ncrossed the sea, and is out of Britain.'\n\n'I thank God for it,' said Emma, faintly.\n\n'You say well.  You have reason to be thankful: greater reason \nthan it is possible for you, who have seen but one night of these \ncruel outrages, to imagine.'\n\n'Does he desire,' said Emma, 'that I should follow him?'\n\n'Do you ask if he desires it?' cried the stranger in surprise.  'IF \nhe desires it!  But you do not know the danger of remaining in \nEngland, the difficulty of escape, or the price hundreds would pay \nto secure the means, when you make that inquiry.  Pardon me.  I had \nforgotten that you could not, being prisoner here.'\n\n'I gather, sir,' said Emma, after a moment's pause, 'from what you \nhint at, but fear to tell me, that I have witnessed but the \nbeginning, and the least, of the violence to which we are exposed, \nand that it has not yet slackened in its fury?'\n\nHe shrugged his shoulders, shook his head, lifted up his hands; and \nwith the same smooth smile, which was not a pleasant one to see, \ncast his eyes upon the ground, and remained silent.\n\n'You may venture, sir, to speak plain,' said Emma, 'and to tell me \nthe worst.  We have undergone some preparation for it.'\n\nBut here Dolly interposed, and entreated her not to hear the worst, \nbut the best; and besought the gentleman to tell them the best, and \nto keep the remainder of his news until they were safe among their \nfriends again.\n\n'It is told in three words,' he said, glancing at the locksmith's \ndaughter with a look of some displeasure.  'The people have risen, \nto a man, against us; the streets are filled with soldiers, who \nsupport them and do their bidding.  We have no protection but from \nabove, and no safety but in flight; and that is a poor resource; \nfor we are watched on every hand, and detained here, both by force \nand fraud.  Miss Haredale, I cannot bear--believe me, that I cannot \nbear--by speaking of myself, or what I have done, or am prepared \nto do, to seem to vaunt my services before you.  But, having \npowerful Protestant connections, and having my whole wealth \nembarked with theirs in shipping and commerce, I happily possessed \nthe means of saving your uncle.  I have the means of saving you; \nand in redemption of my sacred promise, made to him, I am here; \npledged not to leave you until I have placed you in his arms.  The \ntreachery or penitence of one of the men about you, led to the \ndiscovery of your place of confinement; and that I have forced my \nway here, sword in hand, you see.'\n\n'You bring,' said Emma, faltering, 'some note or token from my \nuncle?'\n\n'No, he doesn't,' cried Dolly, pointing at him earnestly; 'now I am \nsure he doesn't.  Don't go with him for the world!'\n\n'Hush, pretty fool--be silent,' he replied, frowning angrily upon \nher.  'No, Miss Haredale, I have no letter, nor any token of any \nkind; for while I sympathise with you, and such as you, on whom \nmisfortune so heavy and so undeserved has fallen, I value my life.  \nI carry, therefore, no writing which, found upon me, would lead to \nits certain loss.  I never thought of bringing any other token, nor \ndid Mr Haredale think of entrusting me with one--possibly because \nhe had good experience of my faith and honesty, and owed his life \nto me.'\n\nThere was a reproof conveyed in these words, which to a nature like \nEmma Haredale's, was well addressed.  But Dolly, who was \ndifferently constituted, was by no means touched by it, and still \nconjured her, in all the terms of affection and attachment she \ncould think of, not to be lured away.\n\n'Time presses,' said their visitor, who, although he sought to \nexpress the deepest interest, had something cold and even in his \nspeech, that grated on the ear; 'and danger surrounds us.  If I \nhave exposed myself to it, in vain, let it be so; but if you and he \nshould ever meet again, do me justice.  If you decide to remain (as \nI think you do), remember, Miss Haredale, that I left you with a \nsolemn caution, and acquitting myself of all the consequences to \nwhich you expose yourself.'\n\n'Stay, sir!' cried Emma--one moment, I beg you.  Cannot we--and she \ndrew Dolly closer to her--'cannot we go together?'\n\n'The task of conveying one female in safety through such scenes as \nwe must encounter, to say nothing of attracting the attention of \nthose who crowd the streets,' he answered, 'is enough.  I have said \nthat she will be restored to her friends to-night.  If you accept \nthe service I tender, Miss Haredale, she shall be instantly placed \nin safe conduct, and that promise redeemed.  Do you decide to \nremain?  People of all ranks and creeds are flying from the town, \nwhich is sacked from end to end.  Let me be of use in some \nquarter.  Do you stay, or go?'\n\n'Dolly,' said Emma, in a hurried manner, 'my dear girl, this is our \nlast hope.  If we part now, it is only that we may meet again in \nhappiness and honour.  I will trust to this gentleman.'\n\n'No no-no!' cried Dolly, clinging to her.  'Pray, pray, do not!'\n\n'You hear,' said Emma, 'that to-night--only to-night--within a few \nhours--think of that!--you will be among those who would die of \ngrief to lose you, and who are now plunged in the deepest misery \nfor your sake.  Pray for me, dear girl, as I will for you; and \nnever forget the many quiet hours we have passed together.  Say \none \"God bless you!\"  Say that at parting!'\n\nBut Dolly could say nothing; no, not when Emma kissed her cheek a \nhundred times, and covered it with tears, could she do more than \nhang upon her neck, and sob, and clasp, and hold her tight.\n\n'We have time for no more of this,' cried the man, unclenching her \nhands, and pushing her roughly off, as he drew Emma Haredale \ntowards the door: 'Now!  Quick, outside there! are you ready?'\n\n'Ay!' cried a loud voice, which made him start.  'Quite ready!  \nStand back here, for your lives!'\n\nAnd in an instant he was felled like an ox in the butcher's \nshambles--struck down as though a block of marble had fallen from \nthe roof and crushed him--and cheerful light, and beaming faces \ncame pouring in--and Emma was clasped in her uncle's embrace, and \nDolly, with a shriek that pierced the air, fell into the arms of \nher father and mother.\n\nWhat fainting there was, what laughing, what crying, what sobbing, \nwhat smiling, how much questioning, no answering, all talking \ntogether, all beside themselves with joy; what kissing, \ncongratulating, embracing, shaking of hands, and falling into all \nthese raptures, over and over and over again; no language can \ndescribe.\n\nAt length, and after a long time, the old locksmith went up and \nfairly hugged two strangers, who had stood apart and left them to \nthemselves; and then they saw--whom?  Yes, Edward Chester and \nJoseph Willet.\n\n'See here!' cried the locksmith.  'See here! where would any of us \nhave been without these two?  Oh, Mr Edward, Mr Edward--oh, Joe, \nJoe, how light, and yet how full, you have made my old heart to-\nnight!'\n\n'It was Mr Edward that knocked him down, sir,' said Joe: 'I longed \nto do it, but I gave it up to him.  Come, you brave and honest \ngentleman!  Get your senses together, for you haven't long to lie \nhere.'\n\nHe had his foot upon the breast of their sham deliverer, in the \nabsence of a spare arm; and gave him a gentle roll as he spoke.  \nGashford, for it was no other, crouching yet malignant, raised his \nscowling face, like sin subdued, and pleaded to be gently used.\n\n'I have access to all my lord's papers, Mr Haredale,' he said, in a \nsubmissive voice: Mr Haredale keeping his back towards him, and not \nonce looking round: 'there are very important documents among them.  \nThere are a great many in secret drawers, and distributed in \nvarious places, known only to my lord and me.  I can give some very \nvaluable information, and render important assistance to any \ninquiry.  You will have to answer it, if I receive ill usage.\n\n'Pah!' cried Joe, in deep disgust.  'Get up, man; you're waited \nfor, outside.  Get up, do you hear?'\n\nGashford slowly rose; and picking up his hat, and looking with a \nbaffled malevolence, yet with an air of despicable humility, all \nround the room, crawled out.\n\n'And now, gentlemen,' said Joe, who seemed to be the spokesman of \nthe party, for all the rest were silent; 'the sooner we get back \nto the Black Lion, the better, perhaps.'\n\nMr Haredale nodded assent, and drawing his niece's arm through his, \nand taking one of her hands between his own, passed out \nstraightway; followed by the locksmith, Mrs Varden, and Dolly--who \nwould scarcely have presented a sufficient surface for all the hugs \nand caresses they bestowed upon her though she had been a dozen \nDollys.  Edward Chester and Joe followed.\n\nAnd did Dolly never once look behind--not once?  Was there not one \nlittle fleeting glimpse of the dark eyelash, almost resting on her \nflushed cheek, and of the downcast sparkling eye it shaded?  Joe \nthought there was--and he is not likely to have been mistaken; for \nthere were not many eyes like Dolly's, that's the truth.\n\nThe outer room through which they had to pass, was full of men; \namong them, Mr Dennis in safe keeping; and there, had been since \nyesterday, lying in hiding behind a wooden screen which was now \nthrown down, Simon Tappertit, the recreant 'prentice, burnt and \nbruised, and with a gun-shot wound in his body; and his legs--his \nperfect legs, the pride and glory of his life, the comfort of his \nexistence--crushed into shapeless ugliness.  Wondering no longer at \nthe moans they had heard, Dolly kept closer to her father, and \nshuddered at the sight; but neither bruises, burns, nor gun-shot \nwound, nor all the torture of his shattered limbs, sent half so \nkeen a pang to Simon's breast, as Dolly passing out, with Joe for \nher preserver.\n\nA coach was ready at the door, and Dolly found herself safe and \nwhole inside, between her father and mother, with Emma Haredale and \nher uncle, quite real, sitting opposite.  But there was no Joe, no \nEdward; and they had said nothing.  They had only bowed once, and \nkept at a distance.  Dear heart! what a long way it was to the \nBlack Lion!\n\n\n\nChapter 72\n\n\nThe Black Lion was so far off, and occupied such a length of time \nin the getting at, that notwithstanding the strong presumptive \nevidence she had about her of the late events being real and of \nactual occurrence, Dolly could not divest herself of the belief \nthat she must be in a dream which was lasting all night.  Nor was \nshe quite certain that she saw and heard with her own proper \nsenses, even when the coach, in the fulness of time, stopped at the \nBlack Lion, and the host of that tavern approached in a gush of \ncheerful light to help them to dismount, and give them hearty \nwelcome.\n\nThere too, at the coach door, one on one side, one upon the other, \nwere already Edward Chester and Joe Willet, who must have followed \nin another coach: and this was such a strange and unaccountable \nproceeding, that Dolly was the more inclined to favour the idea of \nher being fast asleep.  But when Mr Willet appeared--old John \nhimself--so heavy-headed and obstinate, and with such a double \nchin as the liveliest imagination could never in its boldest \nflights have conjured up in all its vast proportions--then she \nstood corrected, and unwillingly admitted to herself that she was \nbroad awake.\n\nAnd Joe had lost an arm--he--that well-made, handsome, gallant \nfellow!  As Dolly glanced towards him, and thought of the pain he \nmust have suffered, and the far-off places in which he had been \nwandering, and wondered who had been his nurse, and hoped that \nwhoever it was, she had been as kind and gentle and considerate as \nshe would have been, the tears came rising to her bright eyes, one \nby one, little by little, until she could keep them back no longer, \nand so before them all, wept bitterly.\n\n'We are all safe now, Dolly,' said her father, kindly.  'We shall \nnot be separated any more.  Cheer up, my love, cheer up!'\n\nThe locksmith's wife knew better perhaps, than he, what ailed her \ndaughter.  But Mrs Varden being quite an altered woman--for the \nriots had done that good--added her word to his, and comforted her \nwith similar representations.\n\n'Mayhap,' said Mr Willet, senior, looking round upon the company, \n'she's hungry.  That's what it is, depend upon it--I am, myself.'\n\nThe Black Lion, who, like old John, had been waiting supper past \nall reasonable and conscionable hours, hailed this as a \nphilosophical discovery of the profoundest and most penetrating \nkind; and the table being already spread, they sat down to supper \nstraightway.\n\nThe conversation was not of the liveliest nature, nor were the \nappetites of some among them very keen.  But, in both these \nrespects, old John more than atoned for any deficiency on the part \nof the rest, and very much distinguished himself.\n\nIt was not in point of actual conversation that Mr Willet shone so \nbrilliantly, for he had none of his old cronies to 'tackle,' and \nwas rather timorous of venturing on Joe; having certain vague \nmisgivings within him, that he was ready on the shortest notice, \nand on receipt of the slightest offence, to fell the Black Lion to \nthe floor of his own parlour, and immediately to withdraw to China \nor some other remote and unknown region, there to dwell for \nevermore, or at least until he had got rid of his remaining arm and \nboth legs, and perhaps an eye or so, into the bargain.  It was with \na peculiar kind of pantomime that Mr Willet filled up every pause; \nand in this he was considered by the Black Lion, who had been his \nfamiliar for some years, quite to surpass and go beyond himself, \nand outrun the expectations of his most admiring friends.\n\nThe subject that worked in Mr Willet's mind, and occasioned these \ndemonstrations, was no other than his son's bodily disfigurement, \nwhich he had never yet got himself thoroughly to believe, or \ncomprehend.  Shortly after their first meeting, he had been \nobserved to wander, in a state of great perplexity, to the kitchen, \nand to direct his gaze towards the fire, as if in search of his \nusual adviser in all matters of doubt and difficulty.  But there \nbeing no boiler at the Black Lion, and the rioters having so beaten \nand battered his own that it was quite unfit for further service, \nhe wandered out again, in a perfect bog of uncertainty and mental \nconfusion, and in that state took the strangest means of resolving \nhis doubts: such as feeling the sleeve of his son's greatcoat as \ndeeming it possible that his arm might be there; looking at his own \narms and those of everybody else, as if to assure himself that two \nand not one was the usual allowance; sitting by the hour together \nin a brown study, as if he were endeavouring to recall Joe's image \nin his younger days, and to remember whether he really had in those \ntimes one arm or a pair; and employing himself in many other \nspeculations of the same kind.\n\nFinding himself at this supper, surrounded by faces with which he \nhad been so well acquainted in old times, Mr Willet recurred to the \nsubject with uncommon vigour; apparently resolved to understand it \nnow or never.  Sometimes, after every two or three mouthfuls, he \nlaid down his knife and fork, and stared at his son with all his \nmight--particularly at his maimed side; then, he looked slowly \nround the table until he caught some person's eye, when he shook \nhis head with great solemnity, patted his shoulder, winked, or as \none may say--for winking was a very slow process with him--went to \nsleep with one eye for a minute or two; and so, with another solemn \nshaking of his head, took up his knife and fork again, and went on \neating.  Sometimes, he put his food into his mouth abstractedly, \nand, with all his faculties concentrated on Joe, gazed at him in a \nfit of stupefaction as he cut his meat with one hand, until he was \nrecalled to himself by symptoms of choking on his own part, and was \nby that means restored to consciousness.  At other times he \nresorted to such small devices as asking him for the salt, the \npepper, the vinegar, the mustard--anything that was on his maimed \nside--and watching him as he handed it.  By dint of these \nexperiments, he did at last so satisfy and convince himself, that, \nafter a longer silence than he had yet maintained, he laid down his \nknife and fork on either side his plate, drank a long draught from \na tankard beside him (still keeping his eyes on Joe), and leaning \nbackward in his chair and fetching a long breath, said, as he \nlooked all round the board:\n\n'It's been took off!'\n\n'By George!' said the Black Lion, striking the table with his hand, \n'he's got it!'\n\n'Yes, sir,' said Mr Willet, with the look of a man who felt that he \nhad earned a compliment, and deserved it.  'That's where it is.  \nIt's been took off.'\n\n'Tell him where it was done,' said the Black Lion to Joe.\n\n'At the defence of the Savannah, father.'\n\n'At the defence of the Salwanners,' repeated Mr Willet, softly; \nagain looking round the table.\n\n'In America, where the war is,' said Joe.\n\n'In America, where the war is,' repeated Mr Willet.  'It was took \noff in the defence of the Salwanners in America where the war is.'  \nContinuing to repeat these words to himself in a low tone of voice \n(the same information had been conveyed to him in the same terms, \nat least fifty times before), Mr Willet arose from table, walked \nround to Joe, felt his empty sleeve all the way up, from the cuff, \nto where the stump of his arm remained; shook his hand; lighted his \npipe at the fire, took a long whiff, walked to the door, turned \nround once when he had reached it, wiped his left eye with the back \nof his forefinger, and said, in a faltering voice: 'My son's arm--\nwas took off--at the defence of the--Salwanners--in America--where \nthe war is'--with which words he withdrew, and returned no more \nthat night.\n\nIndeed, on various pretences, they all withdrew one after another, \nsave Dolly, who was left sitting there alone.  It was a great \nrelief to be alone, and she was crying to her heart's content, when \nshe heard Joe's voice at the end of the passage, bidding somebody \ngood night.\n\nGood night!  Then he was going elsewhere--to some distance, \nperhaps.  To what kind of home COULD he be going, now that it was \nso late!\n\nShe heard him walk along the passage, and pass the door.  But there \nwas a hesitation in his footsteps.  He turned back--Dolly's heart \nbeat high--he looked in.\n\n'Good night!'--he didn't say Dolly, but there was comfort in his \nnot saying Miss Varden.\n\n'Good night!' sobbed Dolly.\n\n'I am sorry you take on so much, for what is past and gone,' said \nJoe kindly.  'Don't.  I can't bear to see you do it.  Think of it \nno longer.  You are safe and happy now.'\n\nDolly cried the more.\n\n'You must have suffered very much within these few days--and yet \nyou're not changed, unless it's for the better.  They said you \nwere, but I don't see it.  You were--you were always very \nbeautiful,' said Joe, 'but you are more beautiful than ever, now.  \nYou are indeed.  There can be no harm in my saying so, for you must \nknow it.  You are told so very often, I am sure.'\n\nAs a general principle, Dolly DID know it, and WAS told so, very \noften.  But the coachmaker had turned out, years ago, to be a \nspecial donkey; and whether she had been afraid of making similar \ndiscoveries in others, or had grown by dint of long custom to be \ncareless of compliments generally, certain it is that although she \ncried so much, she was better pleased to be told so now, than ever \nshe had been in all her life.\n\n'I shall bless your name,' sobbed the locksmith's little daughter, \n'as long as I live.  I shall never hear it spoken without feeling \nas if my heart would burst.  I shall remember it in my prayers, \nevery night and morning till I die!'\n\n'Will you?' said Joe, eagerly.  'Will you indeed?  It makes me--\nwell, it makes me very glad and proud to hear you say so.'\n\nDolly still sobbed, and held her handkerchief to her eyes.  Joe \nstill stood, looking at her.\n\n'Your voice,' said Joe, 'brings up old times so pleasantly, that, \nfor the moment, I feel as if that night--there can be no harm in \ntalking of that night now--had come back, and nothing had happened \nin the mean time.  I feel as if I hadn't suffered any hardships, \nbut had knocked down poor Tom Cobb only yesterday, and had come to \nsee you with my bundle on my shoulder before running away.--You \nremember?'\n\nRemember!  But she said nothing.  She raised her eyes for an \ninstant.  It was but a glance; a little, tearful, timid glance.  It \nkept Joe silent though, for a long time.\n\n'Well!' he said stoutly, 'it was to be otherwise, and was.  I have \nbeen abroad, fighting all the summer and frozen up all the winter, \never since.  I have come back as poor in purse as I went, and \ncrippled for life besides.  But, Dolly, I would rather have lost \nthis other arm--ay, I would rather have lost my head--than have \ncome back to find you dead, or anything but what I always pictured \nyou to myself, and what I always hoped and wished to find you.  \nThank God for all!'\n\nOh how much, and how keenly, the little coquette of five years ago, \nfelt now!  She had found her heart at last.  Never having known its \nworth till now, she had never known the worth of his.  How \npriceless it appeared!\n\n'I did hope once,' said Joe, in his homely way, 'that I might come \nback a rich man, and marry you.  But I was a boy then, and have \nlong known better than that.  I am a poor, maimed, discharged \nsoldier, and must be content to rub through life as I can.  I can't \nsay, even now, that I shall be glad to see you married, Dolly; but \nI AM glad--yes, I am, and glad to think I can say so--to know that \nyou are admired and courted, and can pick and choose for a happy \nlife.  It's a comfort to me to know that you'll talk to your \nhusband about me; and I hope the time will come when I may be able \nto like him, and to shake hands with him, and to come and see you \nas a poor friend who knew you when you were a girl.  God bless \nyou!'\n\nHis hand DID tremble; but for all that, he took it away again, and \nleft her.\n\n\n\nChapter 73\n\n\nBy this Friday night--for it was on Friday in the riot week, that \nEmma and Dolly were rescued, by the timely aid of Joe and Edward \nChester--the disturbances were entirely quelled, and peace and \norder were restored to the affrighted city.  True, after what had \nhappened, it was impossible for any man to say how long this better \nstate of things might last, or how suddenly new outrages, exceeding \neven those so lately witnessed, might burst forth and fill its \nstreets with ruin and bloodshed; for this reason, those who had \nfled from the recent tumults still kept at a distance, and many \nfamilies, hitherto unable to procure the means of flight, now \navailed themselves of the calm, and withdrew into the country.  The \nshops, too, from Tyburn to Whitechapel, were still shut; and very \nlittle business was transacted in any of the places of great \ncommercial resort.  But, notwithstanding, and in spite of the \nmelancholy forebodings of that numerous class of society who see \nwith the greatest clearness into the darkest perspectives, the town \nremained profoundly quiet.  The strong military force disposed in \nevery advantageous quarter, and stationed at every commanding \npoint, held the scattered fragments of the mob in check; the search \nafter rioters was prosecuted with unrelenting vigour; and if there \nwere any among them so desperate and reckless as to be inclined, \nafter the terrible scenes they had beheld, to venture forth again, \nthey were so daunted by these resolute measures, that they quickly \nshrunk into their hiding-places, and had no thought but for their \nsafety.\n\nIn a word, the crowd was utterly routed.  Upwards of two hundred \nhad been shot dead in the streets.  Two hundred and fifty more were \nlying, badly wounded, in the hospitals; of whom seventy or eighty \ndied within a short time afterwards.  A hundred were already in \ncustody, and more were taken every hour.  How many perished in the \nconflagrations, or by their own excesses, is unknown; but that \nnumbers found a terrible grave in the hot ashes of the flames they \nhad kindled, or crept into vaults and cellars to drink in secret or \nto nurse their sores, and never saw the light again, is certain.  \nWhen the embers of the fires had been black and cold for many \nweeks, the labourers' spades proved this, beyond a doubt.\n\nSeventy-two private houses and four strong jails were destroyed in \nthe four great days of these riots.  The total loss of property, as \nestimated by the sufferers, was one hundred and fifty-five thousand \npounds; at the lowest and least partial estimate of disinterested \npersons, it exceeded one hundred and twenty-five thousand pounds.  \nFor this immense loss, compensation was soon afterwards made out of \nthe public purse, in pursuance of a vote of the House of Commons; \nthe sum being levied on the various wards in the city, on the \ncounty, and the borough of Southwark.  Both Lord Mansfield and Lord \nSaville, however, who had been great sufferers, refused to accept \nof any compensation whatever.\n\nThe House of Commons, sitting on Tuesday with locked and guarded \ndoors, had passed a resolution to the effect that, as soon as the \ntumults subsided, it would immediately proceed to consider the \npetitions presented from many of his Majesty's Protestant subjects, \nand would take the same into its serious consideration.  While this \nquestion was under debate, Mr Herbert, one of the members present, \nindignantly rose and called upon the House to observe that Lord \nGeorge Gordon was then sitting under the gallery with the blue \ncockade, the signal of rebellion, in his hat.  He was not only \nobliged, by those who sat near, to take it out; but offering to go \ninto the street to pacify the mob with the somewhat indefinite \nassurance that the House was prepared to give them 'the \nsatisfaction they sought,' was actually held down in his seat by \nthe combined force of several members.  In short, the disorder and \nviolence which reigned triumphant out of doors, penetrated into the \nsenate, and there, as elsewhere, terror and alarm prevailed, and \nordinary forms were for the time forgotten.\n\nOn the Thursday, both Houses had adjourned until the following \nMonday se'nnight, declaring it impossible to pursue their \ndeliberations with the necessary gravity and freedom, while they \nwere surrounded by armed troops.  And now that the rioters were \ndispersed, the citizens were beset with a new fear; for, finding \nthe public thoroughfares and all their usual places of resort \nfilled with soldiers entrusted with the free use of fire and sword, \nthey began to lend a greedy ear to the rumours which were afloat of \nmartial law being declared, and to dismal stories of prisoners \nhaving been seen hanging on lamp-posts in Cheapside and Fleet \nStreet.  These terrors being promptly dispelled by a Proclamation \ndeclaring that all the rioters in custody would be tried by a \nspecial commission in due course of law, a fresh alarm was \nengendered by its being whispered abroad that French money had been \nfound on some of the rioters, and that the disturbances had been \nfomented by foreign powers who sought to compass the overthrow and \nruin of England.  This report, which was strengthened by the \ndiffusion of anonymous handbills, but which, if it had any \nfoundation at all, probably owed its origin to the circumstance of \nsome few coins which were not English money having been swept into \nthe pockets of the insurgents with other miscellaneous booty, and \nafterwards discovered on the prisoners or the dead bodies,--caused \na great sensation; and men's minds being in that excited state \nwhen they are most apt to catch at any shadow of apprehension, was \nbruited about with much industry.\n\nAll remaining quiet, however, during the whole of this Friday, and \non this Friday night, and no new discoveries being made, confidence \nbegan to be restored, and the most timid and desponding breathed \nagain.  In Southwark, no fewer than three thousand of the \ninhabitants formed themselves into a watch, and patrolled the \nstreets every hour.  Nor were the citizens slow to follow so good \nan example: and it being the manner of peaceful men to be very bold \nwhen the danger is over, they were abundantly fierce and daring; \nnot scrupling to question the stoutest passenger with great \nseverity, and carrying it with a very high hand over all errand-\nboys, servant-girls, and 'prentices.\n\nAs day deepened into evening, and darkness crept into the nooks and \ncorners of the town as if it were mustering in secret and gathering \nstrength to venture into the open ways, Barnaby sat in his dungeon, \nwondering at the silence, and listening in vain for the noise and \noutcry which had ushered in the night of late.  Beside him, with \nhis hand in hers, sat one in whose companionship he felt at peace.  \nShe was worn, and altered, full of grief, and heavy-hearted; but \nthe same to him.\n\n'Mother,' he said, after a long silence: 'how long,--how many days \nand nights,--shall I be kept here?'\n\n'Not many, dear.  I hope not many.'\n\n'You hope!  Ay, but your hoping will not undo these chains.  I \nhope, but they don't mind that.  Grip hopes, but who cares for \nGrip?'\n\nThe raven gave a short, dull, melancholy croak.  It said 'Nobody,' \nas plainly as a croak could speak.\n\n'Who cares for Grip, except you and me?' said Barnaby, smoothing \nthe bird's rumpled feathers with his hand.  'He never speaks in \nthis place; he never says a word in jail; he sits and mopes all day \nin his dark corner, dozing sometimes, and sometimes looking at the \nlight that creeps in through the bars, and shines in his bright eye \nas if a spark from those great fires had fallen into the room and \nwas burning yet.  But who cares for Grip?'\n\nThe raven croaked again--Nobody.\n\n'And by the way,' said Barnaby, withdrawing his hand from the bird, \nand laying it upon his mother's arm, as he looked eagerly in her \nface; 'if they kill me--they may: I heard it said they would--what \nwill become of Grip when I am dead?'\n\nThe sound of the word, or the current of his own thoughts, \nsuggested to Grip his old phrase 'Never say die!'  But he stopped \nshort in the middle of it, drew a dismal cork, and subsided into a \nfaint croak, as if he lacked the heart to get through the shortest \nsentence.\n\n'Will they take HIS life as well as mine?' said Barnaby.  'I wish \nthey would.  If you and I and he could die together, there would be \nnone to feel sorry, or to grieve for us.  But do what they will, I \ndon't fear them, mother!'\n\n'They will not harm you,' she said, her tears choking her \nutterance.  'They never will harm you, when they know all.  I am \nsure they never will.'\n\n'Oh!  Don't be too sure of that,' cried Barnaby, with a strange \npleasure in the belief that she was self-deceived, and in his own \nsagacity.  'They have marked me from the first.  I heard them say \nso to each other when they brought me to this place last night; and \nI believe them.  Don't you cry for me.  They said that I was bold, \nand so I am, and so I will be.  You may think that I am silly, but \nI can die as well as another.--I have done no harm, have I?' he \nadded quickly.\n\n'None before Heaven,' she answered.\n\n'Why then,' said Barnaby, 'let them do their worst.  You told me \nonce--you--when I asked you what death meant, that it was nothing \nto be feared, if we did no harm--Aha! mother, you thought I had \nforgotten that!'\n\nHis merry laugh and playful manner smote her to the heart.  She \ndrew him closer to her, and besought him to talk to her in whispers \nand to be very quiet, for it was getting dark, and their time was \nshort, and she would soon have to leave him for the night.\n\n'You will come to-morrow?' said Barnaby.\n\nYes.  And every day.  And they would never part again.\n\nHe joyfully replied that this was well, and what he wished, and \nwhat he had felt quite certain she would tell him; and then he \nasked her where she had been so long, and why she had not come to \nsee him when he had been a great soldier, and ran through the wild \nschemes he had had for their being rich and living prosperously, \nand with some faint notion in his mind that she was sad and he had \nmade her so, tried to console and comfort her, and talked of their \nformer life and his old sports and freedom: little dreaming that \nevery word he uttered only increased her sorrow, and that her tears \nfell faster at the freshened recollection of their lost \ntranquillity.\n\n'Mother,' said Barnaby, as they heard the man approaching to close \nthe cells for the night,' when I spoke to you just now about my \nfather you cried \"Hush!\" and turned away your head.  Why did you do \nso?  Tell me why, in a word.  You thought HE was dead.  You are not \nsorry that he is alive and has come back to us.  Where is he?  \nHere?'\n\n'Do not ask any one where he is, or speak about him,' she made \nanswer.\n\n'Why not?' said Barnaby.  'Because he is a stern man, and talks \nroughly?  Well!  I don't like him, or want to be with him by \nmyself; but why not speak about him?'\n\n'Because I am sorry that he is alive; sorry that he has come back; \nand sorry that he and you have ever met.  Because, dear Barnaby, \nthe endeavour of my life has been to keep you two asunder.'\n\n'Father and son asunder!  Why?'\n\n'He has,' she whispered in his ear, 'he has shed blood.  The time \nhas come when you must know it.  He has shed the blood of one who \nloved him well, and trusted him, and never did him wrong in word or \ndeed.'\n\nBarnaby recoiled in horror, and glancing at his stained wrist for \nan instant, wrapped it, shuddering, in his dress.\n\n'But,' she added hastily as the key turned in the lock, 'although \nwe shun him, he is your father, dearest, and I am his wretched \nwife.  They seek his life, and he will lose it.  It must not be by \nour means; nay, if we could win him back to penitence, we should be \nbound to love him yet.  Do not seem to know him, except as one who \nfled with you from the jail, and if they question you about him, do \nnot answer them.  God be with you through the night, dear boy!  God \nbe with you!'\n\nShe tore herself away, and in a few seconds Barnaby was alone.  He \nstood for a long time rooted to the spot, with his face hidden in \nhis hands; then flung himself, sobbing, on his miserable bed.\n\nBut the moon came slowly up in all her gentle glory, and the stars \nlooked out, and through the small compass of the grated window, as \nthrough the narrow crevice of one good deed in a murky life of \nguilt, the face of Heaven shone bright and merciful.  He raised his \nhead; gazed upward at the quiet sky, which seemed to smile upon the \nearth in sadness, as if the night, more thoughtful than the day, \nlooked down in sorrow on the sufferings and evil deeds of men; and \nfelt its peace sink deep into his heart.  He, a poor idiot, caged \nin his narrow cell, was as much lifted up to God, while gazing on \nthe mild light, as the freest and most favoured man in all the \nspacious city; and in his ill-remembered prayer, and in the \nfragment of the childish hymn, with which he sung and crooned \nhimself asleep, there breathed as true a spirit as ever studied \nhomily expressed, or old cathedral arches echoed.\n\nAs his mother crossed a yard on her way out, she saw, through a \ngrated door which separated it from another court, her husband, \nwalking round and round, with his hands folded on his breast, and \nhis head hung down.  She asked the man who conducted her, if she \nmight speak a word with this prisoner.  Yes, but she must be quick \nfor he was locking up for the night, and there was but a minute or \nso to spare.  Saying this, he unlocked the door, and bade her go \nin.\n\nIt grated harshly as it turned upon its hinges, but he was deaf to \nthe noise, and still walked round and round the little court, \nwithout raising his head or changing his attitude in the least.  \nShe spoke to him, but her voice was weak, and failed her.  At \nlength she put herself in his track, and when he came near, \nstretched out her hand and touched him.\n\nHe started backward, trembling from head to foot; but seeing who it \nwas, demanded why she came there.  Before she could reply, he spoke \nagain.\n\n'Am I to live or die?  Do you murder too, or spare?'\n\n'My son--our son,' she answered, 'is in this prison.'\n\n'What is that to me?' he cried, stamping impatiently on the stone \npavement.  'I know it.  He can no more aid me than I can aid him.  \nIf you are come to talk of him, begone!'\n\nAs he spoke he resumed his walk, and hurried round the court as \nbefore.  When he came again to where she stood, he stopped, and \nsaid,\n\n'Am I to live or die?  Do you repent?'\n\n'Oh!--do YOU?' she answered.  'Will you, while time remains?  Do \nnot believe that I could save you, if I dared.'\n\n'Say if you would,' he answered with an oath, as he tried to \ndisengage himself and pass on.  'Say if you would.'\n\n'Listen to me for one moment,' she returned; 'for but a moment.  I \nam but newly risen from a sick-bed, from which I never hoped to \nrise again.  The best among us think, at such a time, of good \nintentions half-performed and duties left undone.  If I have ever, \nsince that fatal night, omitted to pray for your repentance before \ndeath--if I omitted, even then, anything which might tend to urge \nit on you when the horror of your crime was fresh--if, in our later \nmeeting, I yielded to the dread that was upon me, and forgot to \nfall upon my knees and solemnly adjure you, in the name of him you \nsent to his account with Heaven, to prepare for the retribution \nwhich must come, and which is stealing on you now--I humbly before \nyou, and in the agony of supplication in which you see me, beseech \nthat you will let me make atonement.'\n\n'What is the meaning of your canting words?' he answered roughly.  \n'Speak so that I may understand you.'\n\n'I will,' she answered, 'I desire to.  Bear with me for a moment \nmore.  The hand of Him who set His curse on murder, is heavy on us \nnow.  You cannot doubt it.  Our son, our innocent boy, on whom His \nanger fell before his birth, is in this place in peril of his life--\nbrought here by your guilt; yes, by that alone, as Heaven sees and \nknows, for he has been led astray in the darkness of his intellect, \nand that is the terrible consequence of your crime.'\n\n'If you come, woman-like, to load me with reproaches--' he \nmuttered, again endeavouring to break away.\n\n'I do not.  I have a different purpose.  You must hear it.  If not \nto-night, to-morrow; if not to-morrow, at another time.  You MUST \nhear it.  Husband, escape is hopeless--impossible.'\n\n'You tell me so, do you?' he said, raising his manacled hand, and \nshaking it.  'You!'\n\n'Yes,' she said, with indescribable earnestness.  'But why?'\n\n'To make me easy in this jail.  To make the time 'twixt this and \ndeath, pass pleasantly.  For my good--yes, for my good, of \ncourse,' he said, grinding his teeth, and smiling at her with a \nlivid face.\n\n'Not to load you with reproaches,' she replied; 'not to aggravate \nthe tortures and miseries of your condition, not to give you one \nhard word, but to restore you to peace and hope.  Husband, dear \nhusband, if you will but confess this dreadful crime; if you will \nbut implore forgiveness of Heaven and of those whom you have \nwronged on earth; if you will dismiss these vain uneasy thoughts, \nwhich never can be realised, and will rely on Penitence and on the \nTruth, I promise you, in the great name of the Creator, whose image \nyou have defaced, that He will comfort and console you.  And for \nmyself,' she cried, clasping her hands, and looking upward, 'I \nswear before Him, as He knows my heart and reads it now, that from \nthat hour I will love and cherish you as I did of old, and watch \nyou night and day in the short interval that will remain to us, and \nsoothe you with my truest love and duty, and pray with you, that \none threatening judgment may be arrested, and that our boy may be \nspared to bless God, in his poor way, in the free air and light!'\n\nHe fell back and gazed at her while she poured out these words, as \nthough he were for a moment awed by her manner, and knew not what \nto do.  But anger and fear soon got the mastery of him, and he \nspurned her from him.\n\n'Begone!' he cried.  'Leave me!  You plot, do you!  You plot to \nget speech with me, and let them know I am the man they say I am.  \nA curse on you and on your boy.'\n\n'On him the curse has already fallen,' she replied, wringing her \nhands.\n\n'Let it fall heavier.  Let it fall on one and all.  I hate you \nboth.  The worst has come to me.  The only comfort that I seek or I \ncan have, will be the knowledge that it comes to you.  Now go!'\n\nShe would have urged him gently, even then, but he menaced her with \nhis chain.\n\n'I say go--I say it for the last time.  The gallows has me in its \ngrasp, and it is a black phantom that may urge me on to something \nmore.  Begone!  I curse the hour that I was born, the man I slew, \nand all the living world!'\n\nIn a paroxysm of wrath, and terror, and the fear of death, he broke \nfrom her, and rushed into the darkness of his cell, where he cast \nhimself jangling down upon the stone floor, and smote it with his \nironed hands.  The man returned to lock the dungeon door, and \nhaving done so, carried her away.\n\nOn that warm, balmy night in June, there were glad faces and light \nhearts in all quarters of the town, and sleep, banished by the late \nhorrors, was doubly welcomed.  On that night, families made merry \nin their houses, and greeted each other on the common danger they \nhad escaped; and those who had been denounced, ventured into the \nstreets; and they who had been plundered, got good shelter.  Even \nthe timorous Lord Mayor, who was summoned that night before the \nPrivy Council to answer for his conduct, came back contented; \nobserving to all his friends that he had got off very well with a \nreprimand, and repeating with huge satisfaction his memorable \ndefence before the Council, 'that such was his temerity, he thought \ndeath would have been his portion.'\n\nOn that night, too, more of the scattered remnants of the mob were \ntraced to their lurking-places, and taken; and in the hospitals, \nand deep among the ruins they had made, and in the ditches, and \nfields, many unshrouded wretches lay dead: envied by those who had \nbeen active in the disturbances, and who pillowed their doomed \nheads in the temporary jails.\n\nAnd in the Tower, in a dreary room whose thick stone walls shut out \nthe hum of life, and made a stillness which the records left by \nformer prisoners with those silent witnesses seemed to deepen and \nintensify; remorseful for every act that had been done by every man \namong the cruel crowd; feeling for the time their guilt his own, \nand their lives put in peril by himself; and finding, amidst such \nreflections, little comfort in fanaticism, or in his fancied call; \nsat the unhappy author of all--Lord George Gordon.\n\nHe had been made prisoner that evening.  'If you are sure it's me \nyou want,' he said to the officers, who waited outside with the \nwarrant for his arrest on a charge of High Treason, 'I am ready to \naccompany you--' which he did without resistance.  He was conducted \nfirst before the Privy Council, and afterwards to the Horse \nGuards, and then was taken by way of Westminster Bridge, and back \nover London Bridge (for the purpose of avoiding the main streets), \nto the Tower, under the strongest guard ever known to enter its \ngates with a single prisoner.\n\nOf all his forty thousand men, not one remained to bear him \ncompany.  Friends, dependents, followers,--none were there.  His \nfawning secretary had played the traitor; and he whose weakness had \nbeen goaded and urged on by so many for their own purposes, was \ndesolate and alone.\n\n\n\nChapter 74\n\n\nMe Dennis, having been made prisoner late in the evening, was \nremoved to a neighbouring round-house for that night, and carried \nbefore a justice for examination on the next day, Saturday.  The \ncharges against him being numerous and weighty, and it being in \nparticular proved, by the testimony of Gabriel Varden, that he had \nshown a special desire to take his life, he was committed for \ntrial.  Moreover he was honoured with the distinction of being \nconsidered a chief among the insurgents, and received from the \nmagistrate's lips the complimentary assurance that he was in a \nposition of imminent danger, and would do well to prepare himself \nfor the worst.\n\nTo say that Mr Dennis's modesty was not somewhat startled by these \nhonours, or that he was altogether prepared for so flattering a \nreception, would be to claim for him a greater amount of stoical \nphilosophy than even he possessed.  Indeed this gentleman's \nstoicism was of that not uncommon kind, which enables a man to bear \nwith exemplary fortitude the afflictions of his friends, but \nrenders him, by way of counterpoise, rather selfish and sensitive \nin respect of any that happen to befall himself.  It is therefore \nno disparagement to the great officer in question to state, without \ndisguise or concealment, that he was at first very much alarmed, \nand that he betrayed divers emotions of fear, until his reasoning \npowers came to his relief, and set before him a more hopeful \nprospect.\n\nIn proportion as Mr Dennis exercised these intellectual qualities \nwith which he was gifted, in reviewing his best chances of coming \noff handsomely and with small personal inconvenience, his spirits \nrose, and his confidence increased.  When he remembered the great \nestimation in which his office was held, and the constant demand \nfor his services; when he bethought himself, how the Statute Book \nregarded him as a kind of Universal Medicine applicable to men, \nwomen, and children, of every age and variety of criminal \nconstitution; and how high he stood, in his official capacity, in \nthe favour of the Crown, and both Houses of Parliament, the Mint, \nthe Bank of England, and the Judges of the land; when he \nrecollected that whatever Ministry was in or out, he remained their \npeculiar pet and panacea, and that for his sake England stood \nsingle and conspicuous among the civilised nations of the earth: \nwhen he called these things to mind and dwelt upon them, he felt \ncertain that the national gratitude MUST relieve him from the \nconsequences of his late proceedings, and would certainly restore \nhim to his old place in the happy social system.\n\nWith these crumbs, or as one may say, with these whole loaves of \ncomfort to regale upon, Mr Dennis took his place among the escort \nthat awaited him, and repaired to jail with a manly indifference.  \nArriving at Newgate, where some of the ruined cells had been \nhastily fitted up for the safe keeping of rioters, he was warmly \nreceived by the turnkeys, as an unusual and interesting case, which \nagreeably relieved their monotonous duties.  In this spirit, he was \nfettered with great care, and conveyed into the interior of the \nprison.\n\n'Brother,' cried the hangman, as, following an officer, he \ntraversed under these novel circumstances the remains of passages \nwith which he was well acquainted, 'am I going to be along with \nanybody?'\n\n'If you'd have left more walls standing, you'd have been alone,' \nwas the reply.  'As it is, we're cramped for room, and you'll have \ncompany.'\n\n'Well,' returned Dennis, 'I don't object to company, brother.  I \nrather like company.  I was formed for society, I was.'\n\n'That's rather a pity, an't it?' said the man.\n\n'No,' answered Dennis, 'I'm not aware that it is.  Why should it be \na pity, brother?'\n\n'Oh! I don't know,' said the man carelessly.  'I thought that was \nwhat you meant.  Being formed for society, and being cut off in \nyour flower, you know--'\n\n'I say,' interposed the other quickly, 'what are you talking of?  \nDon't.  Who's a-going to be cut off in their flowers?'\n\n'Oh, nobody particular.  I thought you was, perhaps,' said the man.\n\nMr Dennis wiped his face, which had suddenly grown very hot, and \nremarking in a tremulous voice to his conductor that he had always \nbeen fond of his joke, followed him in silence until he stopped at \na door.\n\n'This is my quarters, is it?' he asked facetiously.\n\n'This is the shop, sir,' replied his friend.\n\nHe was walking in, but not with the best possible grace, when he \nsuddenly stopped, and started back.\n\n'Halloa!' said the officer.  'You're nervous.'\n\n'Nervous!' whispered Dennis in great alarm.  'Well I may be.  Shut \nthe door.'\n\n'I will, when you're in,' returned the man.\n\n'But I can't go in there,' whispered Dennis.  'I can't be shut up \nwith that man.  Do you want me to be throttled, brother?'\n\nThe officer seemed to entertain no particular desire on the subject \none way or other, but briefly remarking that he had his orders, and \nintended to obey them, pushed him in, turned the key, and retired.\n\nDennis stood trembling with his back against the door, and \ninvoluntarily raising his arm to defend himself, stared at a man, \nthe only other tenant of the cell, who lay, stretched at his fall \nlength, upon a stone bench, and who paused in his deep breathing as \nif he were about to wake.  But he rolled over on one side, let his \narm fall negligently down, drew a long sigh, and murmuring \nindistinctly, fell fast asleep again.\n\nRelieved in some degree by this, the hangman took his eyes for an \ninstant from the slumbering figure, and glanced round the cell in \nsearch of some 'vantage-ground or weapon of defence.  There was \nnothing moveable within it, but a clumsy table which could not be \ndisplaced without noise, and a heavy chair.  Stealing on tiptoe \ntowards this latter piece of furniture, he retired with it into the \nremotest corner, and intrenching himself behind it, watched the \nenemy with the utmost vigilance and caution.\n\nThe sleeping man was Hugh; and perhaps it was not unnatural for \nDennis to feel in a state of very uncomfortable suspense, and to \nwish with his whole soul that he might never wake again.  Tired of \nstanding, he crouched down in his corner after some time, and \nrested on the cold pavement; but although Hugh's breathing still \nproclaimed that he was sleeping soundly, he could not trust him out \nof his sight for an instant.  He was so afraid of him, and of some \nsudden onslaught, that he was not content to see his closed eyes \nthrough the chair-back, but every now and then, rose stealthily to \nhis feet, and peered at him with outstretched neck, to assure \nhimself that he really was still asleep, and was not about to \nspring upon him when he was off his guard.\n\nHe slept so long and so soundly, that Mr Dennis began to think he \nmight sleep on until the turnkey visited them.  He was \ncongratulating himself upon these promising appearances, and \nblessing his stars with much fervour, when one or two unpleasant \nsymptoms manifested themselves: such as another motion of the arm, \nanother sigh, a restless tossing of the head.  Then, just as it \nseemed that he was about to fall heavily to the ground from his \nnarrow bed, Hugh's eyes opened.\n\nIt happened that his face was turned directly towards his \nunexpected visitor.  He looked lazily at him for some half-dozen \nseconds without any aspect of surprise or recognition; then \nsuddenly jumped up, and with a great oath pronounced his name.\n\n'Keep off, brother, keep off!' cried Dennis, dodging behind the \nchair.  'Don't do me a mischief.  I'm a prisoner like you.  I \nhaven't the free use of my limbs.  I'm quite an old man.  Don't \nhurt me!'\n\nHe whined out the last three words in such piteous accents, that \nHugh, who had dragged away the chair, and aimed a blow at him with \nit, checked himself, and bade him get up.\n\n'I'll get up certainly, brother,' cried Dennis, anxious to \npropitiate him by any means in his power.  'I'll comply with any \nrequest of yours, I'm sure.  There--I'm up now.  What can I do for \nyou?  Only say the word, and I'll do it.'\n\n'What can you do for me!' cried Hugh, clutching him by the collar \nwith both hands, and shaking him as though he were bent on stopping \nhis breath by that means.  'What have you done for me?'\n\n'The best.  The best that could be done,' returned the hangman.\n\nHugh made him no answer, but shaking him in his strong grip until \nhis teeth chattered in his head, cast him down upon the floor, and \nflung himself on the bench again.\n\n'If it wasn't for the comfort it is to me, to see you here,' he \nmuttered, 'I'd have crushed your head against it; I would.'\n\nIt was some time before Dennis had breath enough to speak, but as \nsoon as he could resume his propitiatory strain, he did so.\n\n'I did the best that could be done, brother,' he whined; 'I did \nindeed.  I was forced with two bayonets and I don't know how many \nbullets on each side of me, to point you out.  If you hadn't been \ntaken, you'd have been shot; and what a sight that would have been--\na fine young man like you!'\n\n'Will it be a better sight now?' asked Hugh, raising his head, with \nsuch a fierce expression, that the other durst not answer him just \nthen.\n\n'A deal better,' said Dennis meekly, after a pause.  'First, \nthere's all the chances of the law, and they're five hundred \nstrong.  We may get off scot-free.  Unlikelier things than that \nhave come to pass.  Even if we shouldn't, and the chances fail, we \ncan but be worked off once: and when it's well done, it's so neat, \nso skilful, so captiwating, if that don't seem too strong a word, \nthat you'd hardly believe it could be brought to sich perfection.  \nKill one's fellow-creeturs off, with muskets!--Pah!' and his \nnature so revolted at the bare idea, that he spat upon the dungeon \npavement.\n\nHis warming on this topic, which to one unacquainted with his \npursuits and tastes appeared like courage; together with his artful \nsuppression of his own secret hopes, and mention of himself as \nbeing in the same condition with Hugh; did more to soothe that \nruffian than the most elaborate arguments could have done, or the \nmost abject submission.  He rested his arms upon his knees, and \nstooping forward, looked from beneath his shaggy hair at Dennis, \nwith something of a smile upon his face.\n\n'The fact is, brother,' said the hangman, in a tone of greater \nconfidence, 'that you got into bad company.  The man that was with \nyou was looked after more than you, and it was him I wanted.  As to \nme, what have I got by it?  Here we are, in one and the same plight.'\n\n'Lookee, rascal,' said Hugh, contracting his brows, 'I'm not \naltogether such a shallow blade but I know you expected to get \nsomething by it, or you wouldn't have done it.  But it's done, and \nyou're here, and it will soon be all over with you and me; and I'd \nas soon die as live, or live as die.  Why should I trouble myself \nto have revenge on you?  To eat, and drink, and go to sleep, as \nlong as I stay here, is all I care for.  If there was but a little \nmore sun to bask in, than can find its way into this cursed place, \nI'd lie in it all day, and not trouble myself to sit or stand up \nonce.  That's all the care I have for myself.  Why should I care \nfor YOU?'\n\nFinishing this speech with a growl like the yawn of a wild beast, \nhe stretched himself upon the bench again, and closed his eyes once \nmore.\n\nAfter looking at him in silence for some moments, Dennis, who was \ngreatly relieved to find him in this mood, drew the chair towards \nhis rough couch and sat down near him--taking the precaution, \nhowever, to keep out of the range of his brawny arm.\n\n'Well said, brother; nothing could be better said,' he ventured to \nobserve.  'We'll eat and drink of the best, and sleep our best, and \nmake the best of it every way.  Anything can be got for money.  \nLet's spend it merrily.'\n\n'Ay,' said Hugh, coiling himself into a new position.--'Where is it?'\n\n'Why, they took mine from me at the lodge,' said Mr Dennis; 'but \nmine's a peculiar case.'\n\n'Is it?  They took mine too.'\n\n'Why then, I tell you what, brother,' Dennis began.  'You must look \nup your friends--'\n\n'My friends!' cried Hugh, starting up and resting on his hands.  \n'Where are my friends?'\n\n'Your relations then,' said Dennis.\n\n'Ha ha ha!' laughed Hugh, waving one arm above his head.  'He talks \nof friends to me--talks of relations to a man whose mother died the \ndeath in store for her son, and left him, a hungry brat, without a \nface he knew in all the world!  He talks of this to me!'\n\n'Brother,' cried the hangman, whose features underwent a sudden \nchange, 'you don't mean to say--'\n\n'I mean to say,' Hugh interposed, 'that they hung her up at Tyburn.  \nWhat was good enough for her, is good enough for me.  Let them do \nthe like by me as soon as they please--the sooner the better.  Say \nno more to me.  I'm going to sleep.'\n\n'But I want to speak to you; I want to hear more about that,' said \nDennis, changing colour.\n\n'If you're a wise man,' growled Hugh, raising his head to look at \nhim with a frown, 'you'll hold your tongue.  I tell you I'm going \nto sleep.'\n\nDennis venturing to say something more in spite of this caution, \nthe desperate fellow struck at him with all his force, and missing \nhim, lay down again with many muttered oaths and imprecations, and \nturned his face towards the wall.  After two or three ineffectual \ntwitches at his dress, which he was hardy enough to venture upon, \nnotwithstanding his dangerous humour, Mr Dennis, who burnt, for \nreasons of his own, to pursue the conversation, had no alternative \nbut to sit as patiently as he could: waiting his further pleasure.\n\n\n\nChapter 75\n\n\nA month has elapsed,--and we stand in the bedchamber of Sir John \nChester.  Through the half-opened window, the Temple Garden looks \ngreen and pleasant; the placid river, gay with boat and barge, and \ndimpled with the plash of many an oar, sparkles in the distance; \nthe sky is blue and clear; and the summer air steals gently in, \nfilling the room with perfume.  The very town, the smoky town, is \nradiant.  High roofs and steeple-tops, wont to look black and \nsullen, smile a cheerful grey; every old gilded vane, and ball, and \ncross, glitters anew in the bright morning sun; and, high among \nthem all, St Paul's towers up, showing its lofty crest in burnished \ngold.\n\nSir John was breakfasting in bed.  His chocolate and toast stood \nupon a little table at his elbow; books and newspapers lay ready to \nhis hand, upon the coverlet; and, sometimes pausing to glance with \nan air of tranquil satisfaction round the well-ordered room, and \nsometimes to gaze indolently at the summer sky, he ate, and drank, \nand read the news luxuriously.\n\nThe cheerful influence of the morning seemed to have some effect, \neven upon his equable temper.  His manner was unusually gay; his \nsmile more placid and agreeable than usual; his voice more clear \nand pleasant.  He laid down the newspaper he had been reading; \nleaned back upon his pillow with the air of one who resigned \nhimself to a train of charming recollections; and after a pause, \nsoliloquised as follows:\n\n'And my friend the centaur, goes the way of his mamma!  I am not \nsurprised.  And his mysterious friend Mr Dennis, likewise!  I am \nnot surprised.  And my old postman, the exceedingly free-and-easy \nyoung madman of Chigwell!  I am quite rejoiced.  It's the very best \nthing that could possibly happen to him.'\n\nAfter delivering himself of these remarks, he fell again into his \nsmiling train of reflection; from which he roused himself at length \nto finish his chocolate, which was getting cold, and ring the bell \nfor more.\n\nThe new supply arriving, he took the cup from his servant's hand; \nand saying, with a charming affability, 'I am obliged to you, \nPeak,' dismissed him.\n\n'It is a remarkable circumstance,' he mused, dallying lazily with \nthe teaspoon, 'that my friend the madman should have been within an \nace of escaping, on his trial; and it was a good stroke of chance \n(or, as the world would say, a providential occurrence) that the \nbrother of my Lord Mayor should have been in court, with other \ncountry justices, into whose very dense heads curiosity had \npenetrated.  For though the brother of my Lord Mayor was decidedly \nwrong; and established his near relationship to that amusing person \nbeyond all doubt, in stating that my friend was sane, and had, to \nhis knowledge, wandered about the country with a vagabond parent, \navowing revolutionary and rebellious sentiments; I am not the less \nobliged to him for volunteering that evidence.  These insane \ncreatures make such very odd and embarrassing remarks, that they \nreally ought to be hanged for the comfort of society.'\n\nThe country justice had indeed turned the wavering scale against \npoor Barnaby, and solved the doubt that trembled in his favour.  \nGrip little thought how much he had to answer for.\n\n'They will be a singular party,' said Sir John, leaning his head \nupon his hand, and sipping his chocolate; 'a very curious party.  \nThe hangman himself; the centaur; and the madman.  The centaur \nwould make a very handsome preparation in Surgeons' Hall, and \nwould benefit science extremely.  I hope they have taken care to \nbespeak him.--Peak, I am not at home, of course, to anybody but the \nhairdresser.'\n\nThis reminder to his servant was called forth by a knock at the \ndoor, which the man hastened to open.  After a prolonged murmur of \nquestion and answer, he returned; and as he cautiously closed the \nroom-door behind him, a man was heard to cough in the passage.\n\n'Now, it is of no use, Peak,' said Sir John, raising his hand in \ndeprecation of his delivering any message; 'I am not at home.  I \ncannot possibly hear you.  I told you I was not at home, and my \nword is sacred.  Will you never do as you are desired?'\n\nHaving nothing to oppose to this reproof, the man was about to \nwithdraw, when the visitor who had given occasion to it, probably \nrendered impatient by delay, knocked with his knuckles at the \nchamber-door, and called out that he had urgent business with Sir \nJohn Chester, which admitted of no delay.\n\n'Let him in,' said Sir John.  'My good fellow,' he added, when the \ndoor was opened, 'how come you to intrude yourself in this \nextraordinary manner upon the privacy of a gentleman?  How can you \nbe so wholly destitute of self-respect as to be guilty of such \nremarkable ill-breeding?'\n\n'My business, Sir John, is not of a common kind, I do assure you,' \nreturned the person he addressed.  'If I have taken any uncommon \ncourse to get admission to you, I hope I shall be pardoned on that \naccount.'\n\n'Well! we shall see; we shall see,' returned Sir John, whose face \ncleared up when he saw who it was, and whose prepossessing smile \nwas now restored.  'I am sure we have met before,' he added in his \nwinning tone, 'but really I forget your name?'\n\n'My name is Gabriel Varden, sir.'\n\n'Varden, of course, Varden,' returned Sir John, tapping his \nforehead.  'Dear me, how very defective my memory becomes!  Varden \nto be sure--Mr Varden the locksmith.  You have a charming wife, Mr \nVarden, and a most beautiful daughter.  They are well?'\n\nGabriel thanked him, and said they were.\n\n'I rejoice to hear it,' said Sir John.  'Commend me to them when \nyou return, and say that I wished I were fortunate enough to \nconvey, myself, the salute which I entrust you to deliver.  And \nwhat,' he asked very sweetly, after a moment's pause, 'can I do for \nyou?  You may command me freely.'\n\n'I thank you, Sir John,' said Gabriel, with some pride in his \nmanner, 'but I have come to ask no favour of you, though I come on \nbusiness.--Private,' he added, with a glance at the man who stood \nlooking on, 'and very pressing business.'\n\n'I cannot say you are the more welcome for being independent, and \nhaving nothing to ask of me,' returned Sir John, graciously, 'for I \nshould have been happy to render you a service; still, you are \nwelcome on any terms.  Oblige me with some more chocolate, Peak, \nand don't wait.'\n\nThe man retired, and left them alone.\n\n'Sir John,' said Gabriel, 'I am a working-man, and have been so, \nall my life.  If I don't prepare you enough for what I have to \ntell; if I come to the point too abruptly; and give you a shock, \nwhich a gentleman could have spared you, or at all events lessened \nvery much; I hope you will give me credit for meaning well.  I wish \nto be careful and considerate, and I trust that in a straightforward \nperson like me, you'll take the will for the deed.'\n\n'Mr Varden,' returned the other, perfectly composed under this \nexordium; 'I beg you'll take a chair.  Chocolate, perhaps, you \ndon't relish?  Well! it IS an acquired taste, no doubt.'\n\n'Sir John,' said Gabriel, who had acknowledged with a bow the \ninvitation to be seated, but had not availed himself of it.  'Sir \nJohn'--he dropped his voice and drew nearer to the bed--'I am just \nnow come from Newgate--'\n\n'Good Gad!' cried Sir John, hastily sitting up in bed; 'from \nNewgate, Mr Varden!  How could you be so very imprudent as to come \nfrom Newgate!  Newgate, where there are jail-fevers, and ragged \npeople, and bare-footed men and women, and a thousand horrors!  \nPeak, bring the camphor, quick!  Heaven and earth, Mr Varden, my \ndear, good soul, how COULD you come from Newgate?'\n\nGabriel returned no answer, but looked on in silence while Peak \n(who had entered with the hot chocolate) ran to a drawer, and \nreturning with a bottle, sprinkled his master's dressing-gown and \nthe bedding; and besides moistening the locksmith himself, \nplentifully, described a circle round about him on the carpet.  \nWhen he had done this, he again retired; and Sir John, reclining in \nan easy attitude upon his pillow, once more turned a smiling face \ntowards his visitor.\n\n'You will forgive me, Mr Varden, I am sure, for being at first a \nlittle sensitive both on your account and my own.  I confess I was \nstartled, notwithstanding your delicate exordium.  Might I ask you \nto do me the favour not to approach any nearer?--You have really \ncome from Newgate!'\n\nThe locksmith inclined his head.\n\n'In-deed!  And now, Mr Varden, all exaggeration and embellishment \napart,' said Sir John Chester, confidentially, as he sipped his \nchocolate, 'what kind of place IS Newgate?'\n\n'A strange place, Sir John,' returned the locksmith, 'of a sad and \ndoleful kind.  A strange place, where many strange things are heard \nand seen; but few more strange than that I come to tell you of.  \nThe case is urgent.  I am sent here.'\n\n'Not--no, no--not from the jail?'\n\n'Yes, Sir John; from the jail.'\n\n'And my good, credulous, open-hearted friend,' said Sir John, \nsetting down his cup, and laughing,--'by whom?'\n\n'By a man called Dennis--for many years the hangman, and to-morrow \nmorning the hanged,' returned the locksmith.\n\nSir John had expected--had been quite certain from the first--that \nhe would say he had come from Hugh, and was prepared to meet him on \nthat point.  But this answer occasioned him a degree of \nastonishment, which, for the moment, he could not, with all his \ncommand of feature, prevent his face from expressing.  He quickly \nsubdued it, however, and said in the same light tone:\n\n'And what does the gentleman require of me?  My memory may be at \nfault again, but I don't recollect that I ever had the pleasure of \nan introduction to him, or that I ever numbered him among my \npersonal friends, I do assure you, Mr Varden.'\n\n'Sir John,' returned the locksmith, gravely, 'I will tell you, as \nnearly as I can, in the words he used to me, what he desires that \nyou should know, and what you ought to know without a moment's loss \nof time.'\n\nSir John Chester settled himself in a position of greater repose, \nand looked at his visitor with an expression of face which seemed \nto say, 'This is an amusing fellow!  I'll hear him out.'\n\n'You may have seen in the newspapers, sir,' said Gabriel, pointing \nto the one which lay by his side, 'that I was a witness against \nthis man upon his trial some days since; and that it was not his \nfault I was alive, and able to speak to what I knew.'\n\n'MAY have seen!' cried Sir John.  'My dear Mr Varden, you are quite \na public character, and live in all men's thoughts most deservedly.  \nNothing can exceed the interest with which I read your testimony, \nand remembered that I had the pleasure of a slight acquaintance \nwith you.---I hope we shall have your portrait published?'\n\n'This morning, sir,' said the locksmith, taking no notice of these \ncompliments, 'early this morning, a message was brought to me from \nNewgate, at this man's request, desiring that I would go and see \nhim, for he had something particular to communicate.  I needn't \ntell you that he is no friend of mine, and that I had never seen \nhim, until the rioters beset my house.'\n\nSir John fanned himself gently with the newspaper, and nodded.\n\n'I knew, however, from the general report,' resumed Gabriel, 'that \nthe order for his execution to-morrow, went down to the prison \nlast night; and looking upon him as a dying man, I complied with \nhis request.'\n\n'You are quite a Christian, Mr Varden,' said Sir John; 'and in that \namiable capacity, you increase my desire that you should take a \nchair.'\n\n'He said,' continued Gabriel, looking steadily at the knight, 'that \nhe had sent to me, because he had no friend or companion in the \nwhole world (being the common hangman), and because he believed, \nfrom the way in which I had given my evidence, that I was an honest \nman, and would act truly by him.  He said that, being shunned by \nevery one who knew his calling, even by people of the lowest and \nmost wretched grade, and finding, when he joined the rioters, that \nthe men he acted with had no suspicion of it (which I believe is \ntrue enough, for a poor fool of an old 'prentice of mine was one of \nthem), he had kept his own counsel, up to the time of his being \ntaken and put in jail.'\n\n'Very discreet of Mr Dennis,' observed Sir John with a slight yawn, \nthough still with the utmost affability, 'but--except for your \nadmirable and lucid manner of telling it, which is perfect--not \nvery interesting to me.'\n\n'When,' pursued the locksmith, quite unabashed and wholly \nregardless of these interruptions, 'when he was taken to the jail, \nhe found that his fellow-prisoner, in the same room, was a young \nman, Hugh by name, a leader in the riots, who had been betrayed and \ngiven up by himself.  From something which fell from this unhappy \ncreature in the course of the angry words they had at meeting, he \ndiscovered that his mother had suffered the death to which they \nboth are now condemned.--The time is very short, Sir John.'\n\nThe knight laid down his paper fan, replaced his cup upon the table \nat his side, and, saving for the smile that lurked about his mouth, \nlooked at the locksmith with as much steadiness as the locksmith \nlooked at him.\n\n'They have been in prison now, a month.  One conversation led to \nmany more; and the hangman soon found, from a comparison of time, \nand place, and dates, that he had executed the sentence of the law \nupon this woman, himself.  She had been tempted by want--as so many \npeople are--into the easy crime of passing forged notes.  She was \nyoung and handsome; and the traders who employ men, women, and \nchildren in this traffic, looked upon her as one who was well \nadapted for their business, and who would probably go on without \nsuspicion for a long time.  But they were mistaken; for she was \nstopped in the commission of her very first offence, and died for \nit.  She was of gipsy blood, Sir John--'\n\nIt might have been the effect of a passing cloud which obscured the \nsun, and cast a shadow on his face; but the knight turned deadly \npale.  Still he met the locksmith's eye, as before.\n\n'She was of gipsy blood, Sir John,' repeated Gabriel, 'and had a \nhigh, free spirit.  This, and her good looks, and her lofty manner, \ninterested some gentlemen who were easily moved by dark eyes; and \nefforts were made to save her.  They might have been successful, if \nshe would have given them any clue to her history.  But she never \nwould, or did.  There was reason to suspect that she would make an \nattempt upon her life.  A watch was set upon her night and day; and \nfrom that time she never spoke again--'\n\nSir John stretched out his hand towards his cup.  The locksmith \ngoing on, arrested it half-way.\n\n--'Until she had but a minute to live.  Then she broke silence, and \nsaid, in a low firm voice which no one heard but this executioner, \nfor all other living creatures had retired and left her to her \nfate, \"If I had a dagger within these fingers and he was within my \nreach, I would strike him dead before me, even now!\"  The man asked \n\"Who?\"  She said, \"The father of her boy.\"'\n\nSir John drew back his outstretched hand, and seeing that the \nlocksmith paused, signed to him with easy politeness and without \nany new appearance of emotion, to proceed.\n\n'It was the first word she had ever spoken, from which it could be \nunderstood that she had any relative on earth.  \"Was the child \nalive?\" he asked.  \"Yes.\"  He asked her where it was, its name, and \nwhether she had any wish respecting it.  She had but one, she said.  \nIt was that the boy might live and grow, in utter ignorance of his \nfather, so that no arts might teach him to be gentle and \nforgiving.  When he became a man, she trusted to the God of their \ntribe to bring the father and the son together, and revenge her \nthrough her child.  He asked her other questions, but she spoke no \nmore.  Indeed, he says, she scarcely said this much, to him, but \nstood with her face turned upwards to the sky, and never looked \ntowards him once.'\n\nSir John took a pinch of snuff; glanced approvingly at an elegant \nlittle sketch, entitled 'Nature,' on the wall; and raising his eyes \nto the locksmith's face again, said, with an air of courtesy and \npatronage, 'You were observing, Mr Varden--'\n\n'That she never,' returned the locksmith, who was not to be \ndiverted by any artifice from his firm manner, and his steady gaze, \n'that she never looked towards him once, Sir John; and so she died, \nand he forgot her.  But, some years afterwards, a man was \nsentenced to die the same death, who was a gipsy too; a sunburnt, \nswarthy fellow, almost a wild man; and while he lay in prison, \nunder sentence, he, who had seen the hangman more than once while \nhe was free, cut an image of him on his stick, by way of braving \ndeath, and showing those who attended on him, how little he cared \nor thought about it.  He gave this stick into his hands at Tyburn, \nand told him then, that the woman I have spoken of had left her own \npeople to join a fine gentleman, and that, being deserted by him, \nand cast off by her old friends, she had sworn within her own proud \nbreast, that whatever her misery might be, she would ask no help of \nany human being.  He told him that she had kept her word to the \nlast; and that, meeting even him in the streets--he had been fond \nof her once, it seems--she had slipped from him by a trick, and he \nnever saw her again, until, being in one of the frequent crowds at \nTyburn, with some of his rough companions, he had been driven \nalmost mad by seeing, in the criminal under another name, whose \ndeath he had come to witness, herself.  Standing in the same place \nin which she had stood, he told the hangman this, and told him, \ntoo, her real name, which only her own people and the gentleman for \nwhose sake she had left them, knew.  That name he will tell again, \nSir John, to none but you.'\n\n'To none but me!' exclaimed the knight, pausing in the act of \nraising his cup to his lips with a perfectly steady hand, and \ncurling up his little finger for the better display of a brilliant \nring with which it was ornamented: 'but me!--My dear Mr Varden, \nhow very preposterous, to select me for his confidence!  With you \nat his elbow, too, who are so perfectly trustworthy!'\n\n'Sir John, Sir John,' returned the locksmith, 'at twelve tomorrow, \nthese men die.  Hear the few words I have to add, and do not hope \nto deceive me; for though I am a plain man of humble station, and \nyou are a gentleman of rank and learning, the truth raises me to \nyour level, and I KNOW that you anticipate the disclosure with \nwhich I am about to end, and that you believe this doomed man, \nHugh, to be your son.'\n\n'Nay,' said Sir John, bantering him with a gay air; 'the wild \ngentleman, who died so suddenly, scarcely went as far as that, I \nthink?'\n\n'He did not,' returned the locksmith, 'for she had bound him by \nsome pledge, known only to these people, and which the worst among \nthem respect, not to tell your name: but, in a fantastic pattern on \nthe stick, he had carved some letters, and when the hangman asked \nit, he bade him, especially if he should ever meet with her son in \nafter life, remember that place well.'\n\n'What place?'\n\n'Chester.'\n\nThe knight finished his cup of chocolate with an appearance of \ninfinite relish, and carefully wiped his lips upon his \nhandkerchief.\n\n'Sir John,' said the locksmith, 'this is all that has been told to \nme; but since these two men have been left for death, they have \nconferred together closely.  See them, and hear what they can add.  \nSee this Dennis, and learn from him what he has not trusted to me.  \nIf you, who hold the clue to all, want corroboration (which you do \nnot), the means are easy.'\n\n'And to what,' said Sir John Chester, rising on his elbow, after \nsmoothing the pillow for its reception; 'my dear, good-natured, \nestimable Mr Varden--with whom I cannot be angry if I would--to \nwhat does all this tend?'\n\n'I take you for a man, Sir John, and I suppose it tends to some \npleading of natural affection in your breast,' returned the \nlocksmith.  'I suppose to the straining of every nerve, and the \nexertion of all the influence you have, or can make, in behalf of \nyour miserable son, and the man who has disclosed his existence to \nyou.  At the worst, I suppose to your seeing your son, and \nawakening him to a sense of his crime and danger.  He has no such \nsense now.  Think what his life must have been, when he said in my \nhearing, that if I moved you to anything, it would be to hastening \nhis death, and ensuring his silence, if you had it in your power!'\n\n'And have you, my good Mr Varden,' said Sir John in a tone of mild \nreproof, 'have you really lived to your present age, and remained \nso very simple and credulous, as to approach a gentleman of \nestablished character with such credentials as these, from \ndesperate men in their last extremity, catching at any straw?  Oh \ndear!  Oh fie, fie!'\n\nThe locksmith was going to interpose, but he stopped him:\n\n'On any other subject, Mr Varden, I shall be delighted--I shall be \ncharmed--to converse with you, but I owe it to my own character not \nto pursue this topic for another moment.'\n\n'Think better of it, sir, when I am gone,' returned the locksmith; \n'think better of it, sir.  Although you have, thrice within as many \nweeks, turned your lawful son, Mr Edward, from your door, you may \nhave time, you may have years to make your peace with HIM, Sir \nJohn: but that twelve o'clock will soon be here, and soon be past \nfor ever.'\n\n'I thank you very much,' returned the knight, kissing his delicate \nhand to the locksmith, 'for your guileless advice; and I only wish, \nmy good soul, although your simplicity is quite captivating, that \nyou had a little more worldly wisdom.  I never so much regretted \nthe arrival of my hairdresser as I do at this moment.  God bless \nyou!  Good morning!  You'll not forget my message to the ladies, Mr \nVarden?  Peak, show Mr Varden to the door.'\n\nGabriel said no more, but gave the knight a parting look, and left \nhim.  As he quitted the room, Sir John's face changed; and the \nsmile gave place to a haggard and anxious expression, like that of \na weary actor jaded by the performance of a difficult part.  He \nrose from his bed with a heavy sigh, and wrapped himself in his \nmorning-gown.\n\n'So she kept her word,' he said, 'and was constant to her threat!  \nI would I had never seen that dark face of hers,--I might have read \nthese consequences in it, from the first.  This affair would make a \nnoise abroad, if it rested on better evidence; but, as it is, and \nby not joining the scattered links of the chain, I can afford to \nslight it.--Extremely distressing to be the parent of such an \nuncouth creature!  Still, I gave him very good advice.  I told him \nhe would certainly be hanged.  I could have done no more if I had \nknown of our relationship; and there are a great many fathers who \nhave never done as much for THEIR natural children.--The \nhairdresser may come in, Peak!'\n\nThe hairdresser came in; and saw in Sir John Chester (whose \naccommodating conscience was soon quieted by the numerous \nprecedents that occurred to him in support of his last \nobservation), the same imperturbable, fascinating, elegant \ngentleman he had seen yesterday, and many yesterdays before.\n\n\n\nChapter 76\n\n\nAs the locksmith walked slowly away from Sir John Chester's \nchambers, he lingered under the trees which shaded the path, almost \nhoping that he might be summoned to return.  He had turned back \nthrice, and still loitered at the corner, when the clock struck \ntwelve.\n\nIt was a solemn sound, and not merely for its reference to to-\nmorrow; for he knew that in that chime the murderer's knell was \nrung.  He had seen him pass along the crowded street, amidst the \nexecration of the throng; and marked his quivering lip, and \ntrembling limbs; the ashy hue upon his face, his clammy brow, the \nwild distraction of his eye--the fear of death that swallowed up \nall other thoughts, and gnawed without cessation at his heart and \nbrain.  He had marked the wandering look, seeking for hope, and \nfinding, turn where it would, despair.  He had seen the remorseful, \npitiful, desolate creature, riding, with his coffin by his side, to \nthe gibbet.  He knew that, to the last, he had been an unyielding, \nobdurate man; that in the savage terror of his condition he had \nhardened, rather than relented, to his wife and child; and that the \nlast words which had passed his white lips were curses on them as \nhis enemies.\n\nMr Haredale had determined to be there, and see it done.  Nothing \nbut the evidence of his own senses could satisfy that gloomy thirst \nfor retribution which had been gathering upon him for so many \nyears.  The locksmith knew this, and when the chimes had ceased to \nvibrate, hurried away to meet him.\n\n'For these two men,' he said, as he went, 'I can do no more.  \nHeaven have mercy on them!--Alas! I say I can do no more for them, \nbut whom can I help?  Mary Rudge will have a home, and a firm \nfriend when she most wants one; but Barnaby--poor Barnaby--willing \nBarnaby--what aid can I render him?  There are many, many men of \nsense, God forgive me,' cried the honest locksmith, stopping in a \nnarrow count to pass his hand across his eyes, 'I could better \nafford to lose than Barnaby.  We have always been good friends, but \nI never knew, till now, how much I loved the lad.'\n\nThere were not many in the great city who thought of Barnaby that \nday, otherwise than as an actor in a show which was to take place \nto-morrow.  But if the whole population had had him in their minds, \nand had wished his life to be spared, not one among them could have \ndone so with a purer zeal or greater singleness of heart than the \ngood locksmith.\n\nBarnaby was to die.  There was no hope.  It is not the least evil \nattendant upon the frequent exhibition of this last dread \npunishment, of Death, that it hardens the minds of those who deal \nit out, and makes them, though they be amiable men in other \nrespects, indifferent to, or unconscious of, their great \nresponsibility.  The word had gone forth that Barnaby was to die.  \nIt went forth, every month, for lighter crimes.  It was a thing so \ncommon, that very few were startled by the awful sentence, or \ncared to question its propriety.  Just then, too, when the law had \nbeen so flagrantly outraged, its dignity must be asserted.  The \nsymbol of its dignity,--stamped upon every page of the criminal \nstatute-book,--was the gallows; and Barnaby was to die.\n\nThey had tried to save him.  The locksmith had carried petitions \nand memorials to the fountain-head, with his own hands.  But the \nwell was not one of mercy, and Barnaby was to die.\n\nFrom the first his mother had never left him, save at night; and \nwith her beside him, he was as usual contented.  On this last day, \nhe was more elated and more proud than he had been yet; and when \nshe dropped the book she had been reading to him aloud, and fell \nupon his neck, he stopped in his busy task of folding a piece of \ncrape about his hat, and wondered at her anguish.  Grip uttered a \nfeeble croak, half in encouragement, it seemed, and half in \nremonstrance, but he wanted heart to sustain it, and lapsed \nabruptly into silence.\n\nWith them who stood upon the brink of the great gulf which none can \nsee beyond, Time, so soon to lose itself in vast Eternity, rolled \non like a mighty river, swollen and rapid as it nears the sea.  It \nwas morning but now; they had sat and talked together in a dream; \nand here was evening.  The dreadful hour of separation, which even \nyesterday had seemed so distant, was at hand.\n\nThey walked out into the courtyard, clinging to each other, but not \nspeaking.  Barnaby knew that the jail was a dull, sad, miserable \nplace, and looked forward to to-morrow, as to a passage from it to \nsomething bright and beautiful.  He had a vague impression too, \nthat he was expected to be brave--that he was a man of great \nconsequence, and that the prison people would be glad to make him \nweep.  He trod the ground more firmly as he thought of this, and \nbade her take heart and cry no more, and feel how steady his hand \nwas.  'They call me silly, mother.  They shall see to-morrow!'\n\nDennis and Hugh were in the courtyard.  Hugh came forth from his \ncell as they did, stretching himself as though he had been \nsleeping.  Dennis sat upon a bench in a corner, with his knees and \nchin huddled together, and rocked himself to and fro like a person \nin severe pain.\n\nThe mother and son remained on one side of the court, and these two \nmen upon the other.  Hugh strode up and down, glancing fiercely \nevery now and then at the bright summer sky, and looking round, \nwhen he had done so, at the walls.\n\n'No reprieve, no reprieve!  Nobody comes near us.  There's only the \nnight left now!' moaned Dennis faintly, as he wrung his hands.  'Do \nyou think they'll reprieve me in the night, brother?  I've known \nreprieves come in the night, afore now.  I've known 'em come as \nlate as five, six, and seven o'clock in the morning.  Don't you \nthink there's a good chance yet,--don't you?  Say you do.  Say you \ndo, young man,' whined the miserable creature, with an imploring \ngesture towards Barnaby, 'or I shall go mad!'\n\n'Better be mad than sane, here,' said Hugh.  'GO mad.'\n\n'But tell me what you think.  Somebody tell me what he thinks!' \ncried the wretched object,--so mean, and wretched, and despicable, \nthat even Pity's self might have turned away, at sight of such a \nbeing in the likeness of a man--'isn't there a chance for me,--\nisn't there a good chance for me?  Isn't it likely they may be \ndoing this to frighten me?  Don't you think it is?  Oh!' he almost \nshrieked, as he wrung his hands, 'won't anybody give me comfort!'\n\n'You ought to be the best, instead of the worst,' said Hugh, \nstopping before him.  'Ha, ha, ha!  See the hangman, when it comes \nhome to him!'\n\n'You don't know what it is,' cried Dennis, actually writhing as he \nspoke: 'I do.  That I should come to be worked off!  I!  I!  That I \nshould come!'\n\n'And why not?' said Hugh, as he thrust back his matted hair to get \na better view of his late associate.  'How often, before I knew \nyour trade, did I hear you talking of this as if it was a treat?'\n\n'I an't unconsistent,' screamed the miserable creature; 'I'd talk \nso again, if I was hangman.  Some other man has got my old \nopinions at this minute.  That makes it worse.  Somebody's longing \nto work me off.  I know by myself that somebody must be!'\n\n'He'll soon have his longing,' said Hugh, resuming his walk.  \n'Think of that, and be quiet.'\n\nAlthough one of these men displayed, in his speech and bearing, the \nmost reckless hardihood; and the other, in his every word and \naction, testified such an extreme of abject cowardice that it was \nhumiliating to see him; it would be difficult to say which of them \nwould most have repelled and shocked an observer.  Hugh's was the \ndogged desperation of a savage at the stake; the hangman was \nreduced to a condition little better, if any, than that of a hound \nwith the halter round his neck.  Yet, as Mr Dennis knew and could \nhave told them, these were the two commonest states of mind in \npersons brought to their pass.  Such was the wholesome growth of \nthe seed sown by the law, that this kind of harvest was usually \nlooked for, as a matter of course.\n\nIn one respect they all agreed.  The wandering and uncontrollable \ntrain of thought, suggesting sudden recollections of things distant \nand long forgotten and remote from each other--the vague restless \ncraving for something undefined, which nothing could satisfy--the \nswift flight of the minutes, fusing themselves into hours, as if by \nenchantment--the rapid coming of the solemn night--the shadow of \ndeath always upon them, and yet so dim and faint, that objects the \nmeanest and most trivial started from the gloom beyond, and forced \nthemselves upon the view--the impossibility of holding the mind, \neven if they had been so disposed, to penitence and preparation, or \nof keeping it to any point while one hideous fascination tempted it \naway--these things were common to them all, and varied only in \ntheir outward tokens.\n\n'Fetch me the book I left within--upon your bed,' she said to \nBarnaby, as the clock struck.  'Kiss me first.'\n\nHe looked in her face, and saw there, that the time was come.  \nAfter a long embrace, he tore himself away, and ran to bring it to \nher; bidding her not stir till he came back.  He soon returned, for \na shriek recalled him,--but she was gone.\n\nHe ran to the yard-gate, and looked through.  They were carrying \nher away.  She had said her heart would break.  It was better so.\n\n'Don't you think,' whimpered Dennis, creeping up to him, as he \nstood with his feet rooted to the ground, gazing at the blank \nwalls--'don't you think there's still a chance?  It's a dreadful \nend; it's a terrible end for a man like me.  Don't you think \nthere's a chance?  I don't mean for you, I mean for me.  Don't let \nHIM hear us (meaning Hugh); 'he's so desperate.'\n\nNow then,' said the officer, who had been lounging in and out with \nhis hands in his pockets, and yawning as if he were in the last \nextremity for some subject of interest: 'it's time to turn in, \nboys.'\n\n'Not yet,' cried Dennis, 'not yet.  Not for an hour yet.'\n\n'I say,--your watch goes different from what it used to,' returned \nthe man.  'Once upon a time it was always too fast.  It's got the \nother fault now.'\n\n'My friend,' cried the wretched creature, falling on his knees, 'my \ndear friend--you always were my dear friend--there's some mistake.  \nSome letter has been mislaid, or some messenger has been stopped \nupon the way.  He may have fallen dead.  I saw a man once, fall \ndown dead in the street, myself, and he had papers in his pocket.  \nSend to inquire.  Let somebody go to inquire.  They never will hang \nme.  They never can.--Yes, they will,' he cried, starting to his \nfeet with a terrible scream.  'They'll hang me by a trick, and keep \nthe pardon back.  It's a plot against me.  I shall lose my life!'  \nAnd uttering another yell, he fell in a fit upon the ground.\n\n'See the hangman when it comes home to him!' cried Hugh again, as \nthey bore him away--'Ha ha ha!  Courage, bold Barnaby, what care \nwe?  Your hand!  They do well to put us out of the world, for if we \ngot loose a second time, we wouldn't let them off so easy, eh?  \nAnother shake!  A man can die but once.  If you wake in the night, \nsing that out lustily, and fall asleep again.  Ha ha ha!'\n\nBarnaby glanced once more through the grate into the empty yard; \nand then watched Hugh as he strode to the steps leading to his \nsleeping-cell.  He heard him shout, and burst into a roar of \nlaughter, and saw him flourish his hat.  Then he turned away \nhimself, like one who walked in his sleep; and, without any sense \nof fear or sorrow, lay down on his pallet, listening for the clock \nto strike again.\n\n\n\nChapter 77\n\n\nThe time wore on.  The noises in the streets became less frequent \nby degrees, until silence was scarcely broken save by the bells in \nchurch towers, marking the progress--softer and more stealthy \nwhile the city slumbered--of that Great Watcher with the hoary \nhead, who never sleeps or rests.  In the brief interval of darkness \nand repose which feverish towns enjoy, all busy sounds were hushed; \nand those who awoke from dreams lay listening in their beds, and \nlonged for dawn, and wished the dead of the night were past.\n\nInto the street outside the jail's main wall, workmen came \nstraggling at this solemn hour, in groups of two or three, and \nmeeting in the centre, cast their tools upon the ground and spoke \nin whispers.  Others soon issued from the jail itself, bearing on \ntheir shoulders planks and beams: these materials being all brought \nforth, the rest bestirred themselves, and the dull sound of hammers \nbegan to echo through the stillness.\n\nHere and there among this knot of labourers, one, with a lantern or \na smoky link, stood by to light his fellows at their work; and by \nits doubtful aid, some might be dimly seen taking up the pavement \nof the road, while others held great upright posts, or fixed them \nin the holes thus made for their reception.  Some dragged slowly \non, towards the rest, an empty cart, which they brought rumbling \nfrom the prison-yard; while others erected strong barriers across \nthe street.  All were busily engaged.  Their dusky figures moving \nto and fro, at that unusual hour, so active and so silent, might \nhave been taken for those of shadowy creatures toiling at midnight \non some ghostly unsubstantial work, which, like themselves, would \nvanish with the first gleam of day, and leave but morning mist and \nvapour.\n\nWhile it was yet dark, a few lookers-on collected, who had plainly \ncome there for the purpose and intended to remain: even those who \nhad to pass the spot on their way to some other place, lingered, \nand lingered yet, as though the attraction of that were \nirresistible.  Meanwhile the noise of saw and mallet went on \nbriskly, mingled with the clattering of boards on the stone \npavement of the road, and sometimes with the workmen's voices as \nthey called to one another.  Whenever the chimes of the \nneighbouring church were heard--and that was every quarter of an \nhour--a strange sensation, instantaneous and indescribable, but \nperfectly obvious, seemed to pervade them all.\n\nGradually, a faint brightness appeared in the east, and the air, \nwhich had been very warm all through the night, felt cool and \nchilly.  Though there was no daylight yet, the darkness was \ndiminished, and the stars looked pale.  The prison, which had been \na mere black mass with little shape or form, put on its usual \naspect; and ever and anon a solitary watchman could be seen upon \nits roof, stopping to look down upon the preparations in the \nstreet.  This man, from forming, as it were, a part of the jail, \nand knowing or being supposed to know all that was passing within, \nbecame an object of as much interest, and was as eagerly looked \nfor, and as awfully pointed out, as if he had been a spirit.\n\nBy and by, the feeble light grew stronger, and the houses with \ntheir signboards and inscriptions, stood plainly out, in the dull \ngrey morning.  Heavy stage waggons crawled from the inn-yard \nopposite; and travellers peeped out; and as they rolled sluggishly \naway, cast many a backward look towards the jail.  And now, the \nsun's first beams came glancing into the street; and the night's \nwork, which, in its various stages and in the varied fancies of the \nlookers-on had taken a hundred shapes, wore its own proper form--a \nscaffold, and a gibbet.\n\nAs the warmth of the cheerful day began to shed itself upon the \nscanty crowd, the murmur of tongues was heard, shutters were thrown \nopen, and blinds drawn up, and those who had slept in rooms over \nagainst the prison, where places to see the execution were let at \nhigh prices, rose hastily from their beds.  In some of the houses, \npeople were busy taking out the window-sashes for the better \naccommodation of spectators; in others, the spectators were already \nseated, and beguiling the time with cards, or drink, or jokes among \nthemselves.  Some had purchased seats upon the house-tops, and \nwere already crawling to their stations from parapet and garret-\nwindow.  Some were yet bargaining for good places, and stood in \nthem in a state of indecision: gazing at the slowly-swelling crowd, \nand at the workmen as they rested listlessly against the scaffold--\naffecting to listen with indifference to the proprietor's eulogy of \nthe commanding view his house afforded, and the surpassing \ncheapness of his terms.\n\nA fairer morning never shone.  From the roofs and upper stories of \nthese buildings, the spires of city churches and the great \ncathedral dome were visible, rising up beyond the prison, into the \nblue sky, and clad in the colour of light summer clouds, and \nshowing in the clear atmosphere their every scrap of tracery and \nfretwork, and every niche and loophole.  All was brightness and \npromise, excepting in the street below, into which (for it yet lay \nin shadow) the eye looked down as into a dark trench, where, in the \nmidst of so much life, and hope, and renewal of existence, stood \nthe terrible instrument of death.  It seemed as if the very sun \nforbore to look upon it.\n\nBut it was better, grim and sombre in the shade, than when, the day \nbeing more advanced, it stood confessed in the full glare and glory \nof the sun, with its black paint blistering, and its nooses \ndangling in the light like loathsome garlands.  It was better in \nthe solitude and gloom of midnight with a few forms clustering \nabout it, than in the freshness and the stir of morning: the centre \nof an eager crowd.  It was better haunting the street like a \nspectre, when men were in their beds, and influencing perchance the \ncity's dreams, than braving the broad day, and thrusting its \nobscene presence upon their waking senses.\n\nFive o'clock had struck--six--seven--and eight.  Along the two main \nstreets at either end of the cross-way, a living stream had now \nset in, rolling towards the marts of gain and business.  Carts, \ncoaches, waggons, trucks, and barrows, forced a passage through the \noutskirts of the throng, and clattered onward in the same \ndirection.  Some of these which were public conveyances and had \ncome from a short distance in the country, stopped; and the driver \npointed to the gibbet with his whip, though he might have spared \nhimself the pains, for the heads of all the passengers were turned \nthat way without his help, and the coach-windows were stuck full of \nstaring eyes.  In some of the carts and waggons, women might be \nseen, glancing fearfully at the same unsightly thing; and even \nlittle children were held up above the people's heads to see what \nkind of a toy a gallows was, and learn how men were hanged.\n\nTwo rioters were to die before the prison, who had been concerned \nin the attack upon it; and one directly afterwards in Bloomsbury \nSquare.  At nine o'clock, a strong body of military marched into \nthe street, and formed and lined a narrow passage into Holborn, \nwhich had been indifferently kept all night by constables.  Through \nthis, another cart was brought (the one already mentioned had been \nemployed in the construction of the scaffold), and wheeled up to \nthe prison-gate.  These preparations made, the soldiers stood at \nease; the officers lounged to and fro, in the alley they had made, \nor talked together at the scaffold's foot; and the concourse, \nwhich had been rapidly augmenting for some hours, and still \nreceived additions every minute, waited with an impatience which \nincreased with every chime of St Sepulchre's clock, for twelve at \nnoon.\n\nUp to this time they had been very quiet, comparatively silent, \nsave when the arrival of some new party at a window, hitherto \nunoccupied, gave them something new to look at or to talk of.  But, \nas the hour approached, a buzz and hum arose, which, deepening \nevery moment, soon swelled into a roar, and seemed to fill the air.  \nNo words or even voices could be distinguished in this clamour, nor \ndid they speak much to each other; though such as were better \ninformed upon the topic than the rest, would tell their neighbours, \nperhaps, that they might know the hangman when he came out, by his \nbeing the shorter one: and that the man who was to suffer with him \nwas named Hugh: and that it was Barnaby Rudge who would be hanged \nin Bloomsbury Square.\n\nThe hum grew, as the time drew near, so loud, that those who were \nat the windows could not hear the church-clock strike, though it \nwas close at hand.  Nor had they any need to hear it, either, for \nthey could see it in the people's faces.  So surely as another \nquarter chimed, there was a movement in the crowd--as if something \nhad passed over it--as if the light upon them had been changed--in \nwhich the fact was readable as on a brazen dial, figured by a \ngiant's hand.\n\nThree quarters past eleven!  The murmur now was deafening, yet \nevery man seemed mute.  Look where you would among the crowd, you \nsaw strained eyes and lips compressed; it would have been difficult \nfor the most vigilant observer to point this way or that, and say \nthat yonder man had cried out.  It were as easy to detect the \nmotion of lips in a sea-shell.\n\nThree quarters past eleven!  Many spectators who had retired from \nthe windows, came back refreshed, as though their watch had just \nbegun.  Those who had fallen asleep, roused themselves; and every \nperson in the crowd made one last effort to better his position--\nwhich caused a press against the sturdy barriers that made them \nbend and yield like twigs.  The officers, who until now had kept \ntogether, fell into their several positions, and gave the words of \ncommand.  Swords were drawn, muskets shouldered, and the bright \nsteel winding its way among the crowd, gleamed and glittered in the \nsun like a river.  Along this shining path, two men came hurrying \non, leading a horse, which was speedily harnessed to the cart at \nthe prison-door.  Then, a profound silence replaced the tumult that \nhad so long been gathering, and a breathless pause ensued.  Every \nwindow was now choked up with heads; the house-tops teemed with \npeople--clinging to chimneys, peering over gable-ends, and holding \non where the sudden loosening of any brick or stone would dash them \ndown into the street.  The church tower, the church roof, the \nchurch yard, the prison leads, the very water-spouts and \nlampposts--every inch of room--swarmed with human life.\n\nAt the first stroke of twelve the prison-bell began to toll.  Then \nthe roar--mingled now with cries of 'Hats off!' and 'Poor fellows!' \nand, from some specks in the great concourse, with a shriek or \ngroan--burst forth again.  It was terrible to see--if any one in \nthat distraction of excitement could have seen--the world of eager \neyes, all strained upon the scaffold and the beam.\n\nThe hollow murmuring was heard within the jail as plainly as \nwithout.  The three were brought forth into the yard, together, as \nit resounded through the air.  They knew its import well.\n\n'D'ye hear?' cried Hugh, undaunted by the sound.  'They expect us!  \nI heard them gathering when I woke in the night, and turned over on \nt'other side and fell asleep again.  We shall see how they welcome \nthe hangman, now that it comes home to him.  Ha, ha, ha!'\n\nThe Ordinary coming up at this moment, reproved him for his \nindecent mirth, and advised him to alter his demeanour.\n\n'And why, master?' said Hugh.  'Can I do better than bear it \neasily?  YOU bear it easily enough.  Oh! never tell me,' he cried, \nas the other would have spoken, 'for all your sad look and your \nsolemn air, you think little enough of it!  They say you're the \nbest maker of lobster salads in London.  Ha, ha!  I've heard that, \nyou see, before now.  Is it a good one, this morning--is your hand \nin?  How does the breakfast look?  I hope there's enough, and to \nspare, for all this hungry company that'll sit down to it, when the \nsight's over.'\n\n'I fear,' observed the clergyman, shaking his head, 'that you are \nincorrigible.'\n\n'You're right.  I am,' rejoined Hugh sternly.  'Be no hypocrite, \nmaster!  You make a merry-making of this, every month; let me be \nmerry, too.  If you want a frightened fellow there's one that'll \nsuit you.  Try your hand upon him.'\n\nHe pointed, as he spoke, to Dennis, who, with his legs trailing on \nthe ground, was held between two men; and who trembled so, that all \nhis joints and limbs seemed racked by spasms.  Turning from this \nwretched spectacle, he called to Barnaby, who stood apart.\n\n'What cheer, Barnaby?  Don't be downcast, lad.  Leave that to HIM.'\n\n'Bless you,' cried Barnaby, stepping lightly towards him, 'I'm not \nfrightened, Hugh.  I'm quite happy.  I wouldn't desire to live now, \nif they'd let me.  Look at me!  Am I afraid to die?  Will they see \nME tremble?'\n\nHugh gazed for a moment at his face, on which there was a strange, \nunearthly smile; and at his eye, which sparkled brightly; and \ninterposing between him and the Ordinary, gruffly whispered to the \nlatter:\n\n'I wouldn't say much to him, master, if I was you.  He may spoil \nyour appetite for breakfast, though you ARE used to it.'\n\nHe was the only one of the three who had washed or trimmed himself \nthat morning.  Neither of the others had done so, since their doom \nwas pronounced.  He still wore the broken peacock's feathers in his \nhat; and all his usual scraps of finery were carefully disposed \nabout his person.  His kindling eye, his firm step, his proud and \nresolute bearing, might have graced some lofty act of heroism; some \nvoluntary sacrifice, born of a noble cause and pure enthusiasm; \nrather than that felon's death.\n\nBut all these things increased his guilt.  They were mere \nassumptions.  The law had declared it so, and so it must be.  The \ngood minister had been greatly shocked, not a quarter of an hour \nbefore, at his parting with Grip.  For one in his condition, to \nfondle a bird!--The yard was filled with people; bluff civic \nfunctionaries, officers of justice, soldiers, the curious in such \nmatters, and guests who had been bidden as to a wedding.  Hugh \nlooked about him, nodded gloomily to some person in authority, who \nindicated with his hand in what direction he was to proceed; and \nclapping Barnaby on the shoulder, passed out with the gait of a \nlion.\n\nThey entered a large room, so near to the scaffold that the voices \nof those who stood about it, could be plainly heard: some \nbeseeching the javelin-men to take them out of the crowd: others \ncrying to those behind, to stand back, for they were pressed to \ndeath, and suffocating for want of air.\n\nIn the middle of this chamber, two smiths, with hammers, stood \nbeside an anvil.  Hugh walked straight up to them, and set his foot \nupon it with a sound as though it had been struck by a heavy \nweapon.  Then, with folded arms, he stood to have his irons knocked \noff: scowling haughtily round, as those who were present eyed him \nnarrowly and whispered to each other.\n\nIt took so much time to drag Dennis in, that this ceremony was over \nwith Hugh, and nearly over with Barnaby, before he appeared.  He no \nsooner came into the place he knew so well, however, and among \nfaces with which he was so familiar, than he recovered strength and \nsense enough to clasp his hands and make a last appeal.\n\n'Gentlemen, good gentlemen,' cried the abject creature, grovelling \ndown upon his knees, and actually prostrating himself upon the \nstone floor: 'Governor, dear governor--honourable sheriffs--worthy \ngentlemen--have mercy upon a wretched man that has served His \nMajesty, and the Law, and Parliament, for so many years, and don't--\ndon't let me die--because of a mistake.'\n\n'Dennis,' said the governor of the jail, 'you know what the course \nis, and that the order came with the rest.  You know that we could \ndo nothing, even if we would.'\n\n'All I ask, sir,--all I want and beg, is time, to make it sure,' \ncried the trembling wretch, looking wildly round for sympathy.  \n'The King and Government can't know it's me; I'm sure they can't \nknow it's me; or they never would bring me to this dreadful \nslaughterhouse.  They know my name, but they don't know it's the \nsame man.  Stop my execution--for charity's sake stop my execution, \ngentlemen--till they can be told that I've been hangman here, nigh \nthirty year.  Will no one go and tell them?' he implored, clenching \nhis hands and glaring round, and round, and round again--'will no \ncharitable person go and tell them!'\n\n'Mr Akerman,' said a gentleman who stood by, after a moment's \npause, 'since it may possibly produce in this unhappy man a better \nframe of mind, even at this last minute, let me assure him that he \nwas well known to have been the hangman, when his sentence was \nconsidered.'\n\n'--But perhaps they think on that account that the punishment's not \nso great,' cried the criminal, shuffling towards this speaker on \nhis knees, and holding up his folded hands; 'whereas it's worse, \nit's worse a hundred times, to me than any man.  Let them know \nthat, sir.  Let them know that.  They've made it worse to me by \ngiving me so much to do.  Stop my execution till they know that!'\n\nThe governor beckoned with his hand, and the two men, who had \nsupported him before, approached.  He uttered a piercing cry:\n\n'Wait!  Wait.  Only a moment--only one moment more!  Give me a last \nchance of reprieve.  One of us three is to go to Bloomsbury Square.  \nLet me be the one.  It may come in that time; it's sure to come.  \nIn the Lord's name let me be sent to Bloomsbury Square.  Don't hang \nme here.  It's murder.'\n\nThey took him to the anvil: but even then he could he heard above \nthe clinking of the smiths' hammers, and the hoarse raging of the \ncrowd, crying that he knew of Hugh's birth--that his father was \nliving, and was a gentleman of influence and rank--that he had \nfamily secrets in his possession--that he could tell nothing unless \nthey gave him time, but must die with them on his mind; and he \ncontinued to rave in this sort until his voice failed him, and he \nsank down a mere heap of clothes between the two attendants.\n\nIt was at this moment that the clock struck the first stroke of \ntwelve, and the bell began to toll.  The various officers, with the \ntwo sheriffs at their head, moved towards the door.  All was ready \nwhen the last chime came upon the ear.\n\nThey told Hugh this, and asked if he had anything to say.\n\n'To say!' he cried.  'Not I.  I'm ready.--Yes,' he added, as his \neye fell upon Barnaby, 'I have a word to say, too.  Come hither, \nlad.'\n\nThere was, for the moment, something kind, and even tender, \nstruggling in his fierce aspect, as he wrung his poor companion by \nthe hand.\n\n'I'll say this,' he cried, looking firmly round, 'that if I had ten \nlives to lose, and the loss of each would give me ten times the \nagony of the hardest death, I'd lay them all down--ay, I would, \nthough you gentlemen may not believe it--to save this one.  This \none,' he added, wringing his hand again, 'that will be lost through \nme.'\n\n'Not through you,' said the idiot, mildly.  'Don't say that.  You \nwere not to blame.  You have always been very good to me.--Hugh, we \nshall know what makes the stars shine, NOW!'\n\n'I took him from her in a reckless mood, and didn't think what harm \nwould come of it,' said Hugh, laying his hand upon his head, and \nspeaking in a lower voice.  'I ask her pardon; and his.--Look \nhere,' he added roughly, in his former tone.  'You see this lad?'\n\nThey murmured 'Yes,' and seemed to wonder why he asked.\n\n'That gentleman yonder--' pointing to the clergyman--'has often in \nthe last few days spoken to me of faith, and strong belief.  You \nsee what I am--more brute than man, as I have been often told--but \nI had faith enough to believe, and did believe as strongly as any \nof you gentlemen can believe anything, that this one life would be \nspared.  See what he is!--Look at him!'\n\nBarnaby had moved towards the door, and stood beckoning him to \nfollow.\n\n'If this was not faith, and strong belief!' cried Hugh, raising \nhis right arm aloft, and looking upward like a savage prophet whom \nthe near approach of Death had filled with inspiration, 'where are \nthey!  What else should teach me--me, born as I was born, and \nreared as I have been reared--to hope for any mercy in this \nhardened, cruel, unrelenting place!  Upon these human shambles, I, \nwho never raised this hand in prayer till now, call down the wrath \nof God!  On that black tree, of which I am the ripened fruit, I do \ninvoke the curse of all its victims, past, and present, and to \ncome.  On the head of that man, who, in his conscience, owns me for \nhis son, I leave the wish that he may never sicken on his bed of \ndown, but die a violent death as I do now, and have the night-wind \nfor his only mourner.  To this I say, Amen, amen!'\n\nHis arm fell downward by his side; he turned; and moved towards \nthem with a steady step, the man he had been before.\n\n'There is nothing more?' said the governor.\n\nHugh motioned Barnaby not to come near him (though without looking \nin the direction where he stood) and answered, 'There is nothing \nmore.'\n\n'Move forward!'\n\n'--Unless,' said Hugh, glancing hurriedly back,--'unless any \nperson here has a fancy for a dog; and not then, unless he means to \nuse him well.  There's one, belongs to me, at the house I came \nfrom, and it wouldn't be easy to find a better.  He'll whine at \nfirst, but he'll soon get over that.--You wonder that I think about \na dog just now, he added, with a kind of laugh.  'If any man \ndeserved it of me half as well, I'd think of HIM.'\n\nHe spoke no more, but moved onward in his place, with a careless \nair, though listening at the same time to the Service for the Dead, \nwith something between sullen attention, and quickened curiosity.  \nAs soon as he had passed the door, his miserable associate was \ncarried out; and the crowd beheld the rest.\n\nBarnaby would have mounted the steps at the same time--indeed he \nwould have gone before them, but in both attempts he was \nrestrained, as he was to undergo the sentence elsewhere.  In a few \nminutes the sheriffs reappeared, the same procession was again \nformed, and they passed through various rooms and passages to \nanother door--that at which the cart was waiting.  He held down his \nhead to avoid seeing what he knew his eyes must otherwise \nencounter, and took his seat sorrowfully,--and yet with something \nof a childish pride and pleasure,--in the vehicle.  The officers \nfell into their places at the sides, in front and in the rear; the \nsheriffs' carriages rolled on; a guard of soldiers surrounded the \nwhole; and they moved slowly forward through the throng and \npressure toward Lord Mansfield's ruined house.\n\nIt was a sad sight--all the show, and strength, and glitter, \nassembled round one helpless creature--and sadder yet to note, as \nhe rode along, how his wandering thoughts found strange \nencouragement in the crowded windows and the concourse in the \nstreets; and how, even then, he felt the influence of the bright \nsky, and looked up, smiling, into its deep unfathomable blue.  But \nthere had been many such sights since the riots were over--some so \nmoving in their nature, and so repulsive too, that they were far \nmore calculated to awaken pity for the sufferers, than respect for \nthat law whose strong arm seemed in more than one case to be as \nwantonly stretched forth now that all was safe, as it had been \nbasely paralysed in time of danger.\n\nTwo cripples--both mere boys--one with a leg of wood, one who \ndragged his twisted limbs along by the help of a crutch, were \nhanged in this same Bloomsbury Square.  As the cart was about to \nglide from under them, it was observed that they stood with their \nfaces from, not to, the house they had assisted to despoil; and \ntheir misery was protracted that this omission might be remedied.  \nAnother boy was hanged in Bow Street; other young lads in various \nquarters of the town.  Four wretched women, too, were put to \ndeath.  In a word, those who suffered as rioters were, for the most \npart, the weakest, meanest, and most miserable among them.  It was \na most exquisite satire upon the false religious cry which had led \nto so much misery, that some of these people owned themselves to be \nCatholics, and begged to be attended by their own priests.\n\nOne young man was hanged in Bishopsgate Street, whose aged grey-\nheaded father waited for him at the gallows, kissed him at its foot \nwhen he arrived, and sat there, on the ground, till they took him \ndown.  They would have given him the body of his child; but he had \nno hearse, no coffin, nothing to remove it in, being too poor--and \nwalked meekly away beside the cart that took it back to prison, \ntrying, as he went, to touch its lifeless hand.\n\nBut the crowd had forgotten these matters, or cared little about \nthem if they lived in their memory: and while one great multitude \nfought and hustled to get near the gibbet before Newgate, for a \nparting look, another followed in the train of poor lost Barnaby, \nto swell the throng that waited for him on the spot.\n\n\n\nChapter 78\n\n\nOn this same day, and about this very hour, Mr Willet the elder sat \nsmoking his pipe in a chamber at the Black Lion.  Although it was \nhot summer weather, Mr Willet sat close to the fire.  He was in a \nstate of profound cogitation, with his own thoughts, and it was his \ncustom at such times to stew himself slowly, under the impression \nthat that process of cookery was favourable to the melting out of \nhis ideas, which, when he began to simmer, sometimes oozed forth so \ncopiously as to astonish even himself.\n\nMr Willet had been several thousand times comforted by his friends \nand acquaintance, with the assurance that for the loss he had \nsustained in the damage done to the Maypole, he could 'come upon \nthe county.'  But as this phrase happened to bear an unfortunate \nresemblance to the popular expression of 'coming on the parish,' it \nsuggested to Mr Willet's mind no more consolatory visions than \npauperism on an extensive scale, and ruin in a capacious aspect.  \nConsequently, he had never failed to receive the intelligence with \na rueful shake of the head, or a dreary stare, and had been always \nobserved to appear much more melancholy after a visit of condolence \nthan at any other time in the whole four-and-twenty hours.\n\nIt chanced, however, that sitting over the fire on this particular \noccasion--perhaps because he was, as it were, done to a turn; \nperhaps because he was in an unusually bright state of mind; \nperhaps because he had considered the subject so long; perhaps \nbecause of all these favouring circumstances, taken together--it \nchanced that, sitting over the fire on this particular occasion, Mr \nWillet did, afar off and in the remotest depths of his intellect, \nperceive a kind of lurking hint or faint suggestion, that out of \nthe public purse there might issue funds for the restoration of the \nMaypole to its former high place among the taverns of the earth.  \nAnd this dim ray of light did so diffuse itself within him, and did \nso kindle up and shine, that at last he had it as plainly and \nvisibly before him as the blaze by which he sat; and, fully \npersuaded that he was the first to make the discovery, and that he \nhad started, hunted down, fallen upon, and knocked on the head, a \nperfectly original idea which had never presented itself to any \nother man, alive or dead, he laid down his pipe, rubbed his hands, \nand chuckled audibly.\n\n'Why, father!' cried Joe, entering at the moment, 'you're in \nspirits to-day!'\n\n'It's nothing partickler,' said Mr Willet, chuckling again.  'It's \nnothing at all partickler, Joseph.  Tell me something about the \nSalwanners.'  Having preferred this request, Mr Willet chuckled a \nthird time, and after these unusual demonstrations of levity, he \nput his pipe in his mouth again.\n\n'What shall I tell you, father?' asked Joe, laying his hand upon \nhis sire's shoulder, and looking down into his face.  'That I have \ncome back, poorer than a church mouse?  You know that.  That I have \ncome back, maimed and crippled?  You know that.'\n\n'It was took off,' muttered Mr Willet,with his eyes upon the fire, \n'at the defence of the Salwanners, in America, where the war is.'\n\n'Quite right,' returned Joe, smiling, and leaning with his \nremaining elbow on the back of his father's chair; 'the very \nsubject I came to speak to you about.  A man with one arm, father, \nis not of much use in the busy world.'\n\nThis was one of those vast propositions which Mr Willet had never \nconsidered for an instant, and required time to 'tackle.'  \nWherefore he made no answer.\n\n'At all events,' said Joe, 'he can't pick and choose his means of \nearning a livelihood, as another man may.  He can't say \"I will \nturn my hand to this,\" or \"I won't turn my hand to that,\" but must \ntake what he can do, and be thankful it's no worse.--What did you \nsay?'\n\nMr Willet had been softly repeating to himself, in a musing tone, \nthe words 'defence of the Salwanners:' but he seemed embarrassed at \nhaving been overheard, and answered 'Nothing.'\n\n'Now look here, father.--Mr Edward has come to England from the \nWest Indies.  When he was lost sight of (I ran away on the same \nday, father), he made a voyage to one of the islands, where a \nschool-friend of his had settled; and, finding him, wasn't too \nproud to be employed on his estate, and--and in short, got on well, \nand is prospering, and has come over here on business of his own, \nand is going back again speedily.  Our returning nearly at the \nsame time, and meeting in the course of the late troubles, has been \na good thing every way; for it has not only enabled us to do old \nfriends some service, but has opened a path in life for me which I \nmay tread without being a burden upon you.  To be plain, father, he \ncan employ me; I have satisfied myself that I can be of real use to \nhim; and I am going to carry my one arm away with him, and to make \nthe most of it.\n\nIn the mind's eye of Mr Willet, the West Indies, and indeed all \nforeign countries, were inhabited by savage nations, who were \nperpetually burying pipes of peace, flourishing tomahawks, and \npuncturing strange patterns in their bodies.  He no sooner heard \nthis announcement, therefore, than he leaned back in his chair, \ntook his pipe from his lips, and stared at his son with as much \ndismay as if he already beheld him tied to a stake, and tortured \nfor the entertainment of a lively population.  In what form of \nexpression his feelings would have found a vent, it is impossible \nto say.  Nor is it necessary: for, before a syllable occurred to \nhim, Dolly Varden came running into the room, in tears, threw \nherself on Joe's breast without a word of explanation, and clasped \nher white arms round his neck.\n\n'Dolly!' cried Joe.  'Dolly!'\n\n'Ay, call me that; call me that always,' exclaimed the locksmith's \nlittle daughter; 'never speak coldly to me, never be distant, never \nagain reprove me for the follies I have long repented, or I shall \ndie, Joe.'\n\n'I reprove you!' said Joe.\n\n'Yes--for every kind and honest word you uttered, went to my heart.  \nFor you, who have borne so much from me--for you, who owe your \nsufferings and pain to my caprice--for you to be so kind--so noble \nto me, Joe--'\n\nHe could say nothing to her.  Not a syllable.  There was an odd \nsort of eloquence in his one arm, which had crept round her waist: \nbut his lips were mute.\n\n'If you had reminded me by a word--only by one short word,' sobbed \nDolly, clinging yet closer to him, 'how little I deserved that you \nshould treat me with so much forbearance; if you had exulted only \nfor one moment in your triumph, I could have borne it better.'\n\n'Triumph!' repeated Joe, with a smile which seemed to say, 'I am a \npretty figure for that.'\n\n'Yes, triumph,' she cried, with her whole heart and soul in her \nearnest voice, and gushing tears; 'for it is one.  I am glad to \nthink and know it is.  I wouldn't be less humbled, dear--I wouldn't \nbe without the recollection of that last time we spoke together in \nthis place--no, not if I could recall the past, and make our \nparting, yesterday.'\n\nDid ever lover look as Joe looked now!\n\n'Dear Joe,' said Dolly, 'I always loved you--in my own heart I \nalways did, although I was so vain and giddy.  I hoped you would \ncome back that night.  I made quite sure you would.  I prayed for \nit on my knees.  Through all these long, long years, I have never \nonce forgotten you, or left off hoping that this happy time might \ncome.'\n\nThe eloquence of Joe's arm surpassed the most impassioned language; \nand so did that of his lips--yet he said nothing, either.\n\n'And now, at last,' cried Dolly, trembling with the fervour of her \nspeech, 'if you were sick, and shattered in your every limb; if you \nwere ailing, weak, and sorrowful; if, instead of being what you \nare, you were in everybody's eyes but mine the wreck and ruin of a \nman; I would be your wife, dear love, with greater pride and joy, \nthan if you were the stateliest lord in England!'\n\n'What have I done,' cried Joe, 'what have I done to meet with this \nreward?'\n\n'You have taught me,' said Dolly, raising her pretty face to his, \n'to know myself, and your worth; to be something better than I \nwas; to be more deserving of your true and manly nature.  In years \nto come, dear Joe, you shall find that you have done so; for I will \nbe, not only now, when we are young and full of hope, but when we \nhave grown old and weary, your patient, gentle, never-tiring \nwife.  I will never know a wish or care beyond our home and you, \nand I will always study how to please you with my best affection \nand my most devoted love.  I will: indeed I will!'\n\nJoe could only repeat his former eloquence--but it was very much to \nthe purpose.\n\n'They know of this, at home,' said Dolly.  'For your sake, I would \nleave even them; but they know it, and are glad of it, and are as \nproud of you as I am, and as full of gratitude.--You'll not come \nand see me as a poor friend who knew me when I was a girl, will \nyou, dear Joe?'\n\nWell, well!  It don't matter what Joe said in answer, but he said a \ngreat deal; and Dolly said a great deal too: and he folded Dolly in \nhis one arm pretty tight, considering that it was but one; and \nDolly made no resistance: and if ever two people were happy in this \nworld--which is not an utterly miserable one, with all its faults--\nwe may, with some appearance of certainty, conclude that they \nwere.\n\nTo say that during these proceedings Mr Willet the elder underwent \nthe greatest emotions of astonishment of which our common nature is \nsusceptible--to say that he was in a perfect paralysis of surprise, \nand that he wandered into the most stupendous and theretofore \nunattainable heights of complicated amazement--would be to shadow \nforth his state of mind in the feeblest and lamest terms.  If a \nroc, an eagle, a griffin, a flying elephant, a winged sea-horse, \nhad suddenly appeared, and, taking him on its back, carried him \nbodily into the heart of the 'Salwanners,' it would have been to \nhim as an everyday occurrence, in comparison with what he now \nbeheld.  To be sitting quietly by, seeing and hearing these things; \nto be completely overlooked, unnoticed, and disregarded, while his \nson and a young lady were talking to each other in the most \nimpassioned manner, kissing each other, and making themselves in \nall respects perfectly at home; was a position so tremendous, so \ninexplicable, so utterly beyond the widest range of his capacity of \ncomprehension, that he fell into a lethargy of wonder, and could no \nmore rouse himself than an enchanted sleeper in the first year of \nhis fairy lease, a century long.\n\n'Father,' said Joe, presenting Dolly.  'You know who this is?'\n\nMr Willet looked first at her, then at his son, then back again at \nDolly, and then made an ineffectual effort to extract a whiff from \nhis pipe, which had gone out long ago.\n\n'Say a word, father, if it's only \"how d'ye do,\"' urged Joe.\n\n'Certainly, Joseph,' answered Mr Willet.  'Oh yes!  Why not?'\n\n'To be sure,' said Joe.  'Why not?'\n\n'Ah!' replied his father.  'Why not?' and with this remark, which \nhe uttered in a low voice as though he were discussing some grave \nquestion with himself, he used the little finger--if any of his \nfingers can be said to have come under that denomination--of his \nright hand as a tobacco-stopper, and was silent again.\n\nAnd so he sat for half an hour at least, although Dolly, in the \nmost endearing of manners, hoped, a dozen times, that he was not \nangry with her.  So he sat for half an hour, quite motionless, and \nlooking all the while like nothing so much as a great Dutch Pin or \nSkittle.  At the expiration of that period, he suddenly, and \nwithout the least notice, burst (to the great consternation of the \nyoung people) into a very loud and very short laugh; and \nrepeating, 'Certainly, Joseph.  Oh yes!  Why not?' went out for a \nwalk.\n\n\n\nChapter 79\n\n\nOld John did not walk near the Golden Key, for between the Golden \nKey and the Black Lion there lay a wilderness of streets--as \neverybody knows who is acquainted with the relative bearings of \nClerkenwell and Whitechapel--and he was by no means famous for \npedestrian exercises.  But the Golden Key lies in our way, though \nit was out of his; so to the Golden Key this chapter goes.\n\nThe Golden Key itself, fair emblem of the locksmith's trade, had \nbeen pulled down by the rioters, and roughly trampled under foot.  \nBut, now, it was hoisted up again in all the glory of a new coat of \npaint, and shewed more bravely even than in days of yore.  Indeed \nthe whole house-front was spruce and trim, and so freshened up \nthroughout, that if there yet remained at large any of the rioters \nwho had been concerned in the attack upon it, the sight of the old, \ngoodly, prosperous dwelling, so revived, must have been to them as \ngall and wormwood.\n\nThe shutters of the shop were closed, however, and the window-\nblinds above were all pulled down, and in place of its usual \ncheerful appearance, the house had a look of sadness and an air of \nmourning; which the neighbours, who in old days had often seen poor \nBarnaby go in and out, were at no loss to understand.  The door \nstood partly open; but the locksmith's hammer was unheard; the cat \nsat moping on the ashy forge; all was deserted, dark, and silent.\n\nOn the threshold of this door, Mr Haredale and Edward Chester met.  \nThe younger man gave place; and both passing in with a familiar \nair, which seemed to denote that they were tarrying there, or were \nwell-accustomed to go to and fro unquestioned, shut it behind them.\n\nEntering the old back-parlour, and ascending the flight of stairs, \nabrupt and steep, and quaintly fashioned as of old, they turned \ninto the best room; the pride of Mrs Varden's heart, and erst the \nscene of Miggs's household labours.\n\n'Varden brought the mother here last evening, he told me?' said Mr \nHaredale.\n\n'She is above-stairs now--in the room over here,' Edward rejoined.  \n'Her grief, they say, is past all telling.  I needn't add--for that \nyou know beforehand, sir--that the care, humanity, and sympathy of \nthese good people have no bounds.'\n\n'I am sure of that.  Heaven repay them for it, and for much more!  \nVarden is out?'\n\n'He returned with your messenger, who arrived almost at the moment \nof his coming home himself.  He was out the whole night--but that \nof course you know.  He was with you the greater part of it?'\n\n'He was.  Without him, I should have lacked my right hand.  He is \nan older man than I; but nothing can conquer him.'\n\n'The cheeriest, stoutest-hearted fellow in the world.'\n\n'He has a right to be.  He has a right to he.  A better creature \nnever lived.  He reaps what he has sown--no more.'\n\n'It is not all men,' said Edward, after a moment's hesitation, 'who \nhave the happiness to do that.'\n\n'More than you imagine,' returned Mr Haredale.  'We note the \nharvest more than the seed-time.  You do so in me.'\n\nIn truth his pale and haggard face, and gloomy bearing, had so far \ninfluenced the remark, that Edward was, for the moment, at a loss \nto answer him.\n\n'Tut, tut,' said Mr Haredale, ''twas not very difficult to read a \nthought so natural.  But you are mistaken nevertheless.  I have \nhad my share of sorrows--more than the common lot, perhaps, but I \nhave borne them ill.  I have broken where I should have bent; and \nhave mused and brooded, when my spirit should have mixed with all \nGod's great creation.  The men who learn endurance, are they who \ncall the whole world, brother.  I have turned FROM the world, and I \npay the penalty.'\n\nEdward would have interposed, but he went on without giving him \ntime.\n\n'It is too late to evade it now.  I sometimes think, that if I had \nto live my life once more, I might amend this fault--not so much, I \ndiscover when I search my mind, for the love of what is right, as \nfor my own sake.  But even when I make these better resolutions, I \ninstinctively recoil from the idea of suffering again what I have \nundergone; and in this circumstance I find the unwelcome assurance \nthat I should still be the same man, though I could cancel the \npast, and begin anew, with its experience to guide me.'\n\n'Nay, you make too sure of that,' said Edward.\n\n'You think so,' Mr Haredale answered, 'and I am glad you do.  I \nknow myself better, and therefore distrust myself more.  Let us \nleave this subject for another--not so far removed from it as it \nmight, at first sight, seem to be.  Sir, you still love my niece, \nand she is still attached to you.'\n\n'I have that assurance from her own lips,' said Edward, 'and you \nknow--I am sure you know--that I would not exchange it for any \nblessing life could yield me.'\n\n'You are frank, honourable, and disinterested,' said Mr Haredale; \n'you have forced the conviction that you are so, even on my once-\njaundiced mind, and I believe you.  Wait here till I come back.'\n\nHe left the room as he spoke; but soon returned with his niece.  \n'On that first and only time,' he said, looking from the one to the \nother, 'when we three stood together under her father's roof, I \ntold you to quit it, and charged you never to return.'\n\n'It is the only circumstance arising out of our love,' observed \nEdward, 'that I have forgotten.'\n\n'You own a name,' said Mr Haredale, 'I had deep reason to remember.  \nI was moved and goaded by recollections of personal wrong and \ninjury, I know, but, even now I cannot charge myself with having, \nthen, or ever, lost sight of a heartfelt desire for her true \nhappiness; or with having acted--however much I was mistaken--with \nany other impulse than the one pure, single, earnest wish to be to \nher, as far as in my inferior nature lay, the father she had lost.'\n\n'Dear uncle,' cried Emma, 'I have known no parent but you.  I have \nloved the memory of others, but I have loved you all my life.  \nNever was father kinder to his child than you have been to me, \nwithout the interval of one harsh hour, since I can first \nremember.'\n\n'You speak too fondly,' he answered, 'and yet I cannot wish you \nwere less partial; for I have a pleasure in hearing those words, \nand shall have in calling them to mind when we are far asunder, \nwhich nothing else could give me.  Bear with me for a moment \nlonger, Edward, for she and I have been together many years; and \nalthough I believe that in resigning her to you I put the seal upon \nher future happiness, I find it needs an effort.'\n\nHe pressed her tenderly to his bosom, and after a minute's pause, \nresumed:\n\n'I have done you wrong, sir, and I ask your forgiveness--in no \ncommon phrase, or show of sorrow; but with earnestness and \nsincerity.  In the same spirit, I acknowledge to you both that the \ntime has been when I connived at treachery and falsehood--which if \nI did not perpetrate myself, I still permitted--to rend you two \nasunder.'\n\n'You judge yourself too harshly,' said Edward.  'Let these things \nrest.'\n\n'They rise in judgment against me when I look back, and not now for \nthe first time,' he answered.  'I cannot part from you without your \nfull forgiveness; for busy life and I have little left in common \nnow, and I have regrets enough to carry into solitude, without \naddition to the stock.'\n\n'You bear a blessing from us both,' said Emma.  'Never mingle \nthoughts of me--of me who owe you so much love and duty--with \nanything but undying affection and gratitude for the past, and \nbright hopes for the future.'\n\n'The future,' returned her uncle, with a melancholy smile, 'is a \nbright word for you, and its image should be wreathed with \ncheerful hopes.  Mine is of another kind, but it will be one of \npeace, and free, I trust, from care or passion.  When you quit \nEngland I shall leave it too.  There are cloisters abroad; and now \nthat the two great objects of my life are set at rest, I know no \nbetter home.  You droop at that, forgetting that I am growing old, \nand that my course is nearly run.  Well, we will speak of it again--\nnot once or twice, but many times; and you shall give me cheerful \ncounsel, Emma.'\n\n'And you will take it?' asked his niece.\n\n'I'll listen to it,' he answered, with a kiss, 'and it will have \nits weight, be certain.  What have I left to say?  You have, of \nlate, been much together.  It is better and more fitting that the \ncircumstances attendant on the past, which wrought your separation, \nand sowed between you suspicion and distrust, should not be entered \non by me.'\n\n'Much, much better,' whispered Emma.\n\n'I avow my share in them,' said Mr Haredale, 'though I held it, at \nthe time, in detestation.  Let no man turn aside, ever so slightly, \nfrom the broad path of honour, on the plausible pretence that he is \njustified by the goodness of his end.  All good ends can he worked \nout by good means.  Those that cannot, are bad; and may be counted \nso at once, and left alone.'\n\nHe looked from her to Edward, and said in a gentler tone:\n\n'In goods and fortune you are now nearly equal.  I have been her \nfaithful steward, and to that remnant of a richer property which my \nbrother left her, I desire to add, in token of my love, a poor \npittance, scarcely worth the mention, for which I have no longer \nany need.  I am glad you go abroad.  Let our ill-fated house \nremain the ruin it is.  When you return, after a few thriving \nyears, you will command a better, and a more fortunate one.  We are \nfriends?'\n\nEdward took his extended hand, and grasped it heartily.\n\n'You are neither slow nor cold in your response,' said Mr Haredale, \ndoing the like by him, 'and when I look upon you now, and know you, \nI feel that I would choose you for her husband.  Her father had a \ngenerous nature, and you would have pleased him well.  I give her \nto you in his name, and with his blessing.  If the world and I part \nin this act, we part on happier terms than we have lived for many a \nday.'\n\nHe placed her in his arms, and would have left the room, but that \nhe was stopped in his passage to the door by a great noise at a \ndistance, which made them start and pause.\n\nIt was a loud shouting, mingled with boisterous acclamations, that \nrent the very air.  It drew nearer and nearer every moment, and \napproached so rapidly, that, even while they listened, it burst \ninto a deafening confusion of sounds at the street corner.\n\n'This must be stopped--quieted,' said Mr Haredale, hastily.  'We \nshould have foreseen this, and provided against it.  I will go out \nto them at once.'\n\nBut, before he could reach the door, and before Edward could catch \nup his hat and follow him, they were again arrested by a loud \nshriek from above-stairs: and the locksmith's wife, bursting in, \nand fairly running into Mr Haredale's arms, cried out:\n\n'She knows it all, dear sir!--she knows it all!  We broke it out to \nher by degrees, and she is quite prepared.'  Having made this \ncommunication, and furthermore thanked Heaven with great fervour \nand heartiness, the good lady, according to the custom of matrons, \non all occasions of excitement, fainted away directly.\n\nThey ran to the window, drew up the sash, and looked into the \ncrowded street.  Among a dense mob of persons, of whom not one was \nfor an instant still, the locksmith's ruddy face and burly form \ncould be descried, beating about as though he was struggling with a \nrough sea.  Now, he was carried back a score of yards, now onward \nnearly to the door, now back again, now forced against the opposite \nhouses, now against those adjoining his own: now carried up a \nflight of steps, and greeted by the outstretched hands of half a \nhundred men, while the whole tumultuous concourse stretched their \nthroats, and cheered with all their might.  Though he was really in \na fair way to be torn to pieces in the general enthusiasm, the \nlocksmith, nothing discomposed, echoed their shouts till he was as \nhoarse as they, and in a glow of joy and right good-humour, waved \nhis hat until the daylight shone between its brim and crown.\n\nBut in all the bandyings from hand to hand, and strivings to and \nfro, and sweepings here and there, which--saving that he looked \nmore jolly and more radiant after every struggle--troubled his \npeace of mind no more than if he had been a straw upon the water's \nsurface, he never once released his firm grasp of an arm, drawn \ntight through his.  He sometimes turned to clap this friend upon \nthe back, or whisper in his ear a word of staunch encouragement, or \ncheer him with a smile; but his great care was to shield him from \nthe pressure, and force a passage for him to the Golden Key.  \nPassive and timid, scared, pale, and wondering, and gazing at the \nthrong as if he were newly risen from the dead, and felt himself a \nghost among the living, Barnaby--not Barnaby in the spirit, but in \nflesh and blood, with pulses, sinews, nerves, and beating heart, \nand strong affections--clung to his stout old friend, and followed \nwhere he led.\n\nAnd thus, in course of time, they reached the door, held ready for \ntheir entrance by no unwilling hands.  Then slipping in, and \nshutting out the crowd by main force, Gabriel stood between Mr \nHaredale and Edward Chester, and Barnaby, rushing up the stairs, \nfell upon his knees beside his mother's bed.\n\n'Such is the blessed end, sir,' cried the panting locksmith, to Mr \nHaredale, 'of the best day's work we ever did.  The rogues! it's \nbeen hard fighting to get away from 'em.  I almost thought, once or \ntwice, they'd have been too much for us with their kindness!'\n\nThey had striven, all the previous day, to rescue Barnaby from his \nimpending fate.  Failing in their attempts, in the first quarter \nto which they addressed themselves, they renewed them in another.  \nFailing there, likewise, they began afresh at midnight; and made \ntheir way, not only to the judge and jury who had tried him, but to \nmen of influence at court, to the young Prince of Wales, and even \nto the ante-chamber of the King himself.  Successful, at last, in \nawakening an interest in his favour, and an inclination to inquire \nmore dispassionately into his case, they had had an interview with \nthe minister, in his bed, so late as eight o'clock that morning.  \nThe result of a searching inquiry (in which they, who had known the \npoor fellow from his childhood, did other good service, besides \nbringing it about) was, that between eleven and twelve o'clock, a \nfree pardon to Barnaby Rudge was made out and signed, and entrusted \nto a horse-soldier for instant conveyance to the place of \nexecution.  This courier reached the spot just as the cart appeared \nin sight; and Barnaby being carried back to jail, Mr Haredale, \nassured that all was safe, had gone straight from Bloomsbury Square \nto the Golden Key, leaving to Gabriel the grateful task of bringing \nhim home in triumph.\n\n'I needn't say,' observed the locksmith, when he had shaken hands \nwith all the males in the house, and hugged all the females, five-\nand-forty times, at least, 'that, except among ourselves, I didn't \nwant to make a triumph of it.  But, directly we got into the street \nwe were known, and this hubbub began.  Of the two,' he added, as he \nwiped his crimson face, 'and after experience of both, I think I'd \nrather be taken out of my house by a crowd of enemies, than \nescorted home by a mob of friends!'\n\nIt was plain enough, however, that this was mere talk on Gabriel's \npart, and that the whole proceeding afforded him the keenest \ndelight; for the people continuing to make a great noise without, \nand to cheer as if their voices were in the freshest order, and \ngood for a fortnight, he sent upstairs for Grip (who had come home \nat his master's back, and had acknowledged the favours of the \nmultitude by drawing blood from every finger that came within his \nreach), and with the bird upon his arm presented himself at the \nfirst-floor window, and waved his hat again until it dangled by a \nshred, between his finger and thumb.  This demonstration having \nbeen received with appropriate shouts, and silence being in some \ndegree restored, he thanked them for their sympathy; and taking the \nliberty to inform them that there was a sick person in the house, \nproposed that they should give three cheers for King George, three \nmore for Old England, and three more for nothing particular, as a \nclosing ceremony.  The crowd assenting, substituted Gabriel Varden \nfor the nothing particular; and giving him one over, for good \nmeasure, dispersed in high good-humour.\n\nWhat congratulations were exchanged among the inmates at the Golden \nKey, when they were left alone; what an overflowing of joy and \nhappiness there was among them; how incapable it was of expression \nin Barnaby's own person; and how he went wildly from one to \nanother, until he became so far tranquillised, as to stretch \nhimself on the ground beside his mother's couch and fall into a \ndeep sleep; are matters that need not be told.  And it is well they \nhappened to be of this class, for they would be very hard to tell, \nwere their narration ever so indispensable.\n\nBefore leaving this bright picture, it may be well to glance at a \ndark and very different one which was presented to only a few eyes, \nthat same night.\n\nThe scene was a churchyard; the time, midnight; the persons, Edward \nChester, a clergyman, a grave-digger, and the four bearers of a \nhomely coffin.  They stood about a grave which had been newly dug, \nand one of the bearers held up a dim lantern,--the only light \nthere--which shed its feeble ray upon the book of prayer.  He \nplaced it for a moment on the coffin, when he and his companions \nwere about to lower it down.  There was no inscription on the lid.\n\nThe mould fell solemnly upon the last house of this nameless man; \nand the rattling dust left a dismal echo even in the accustomed \nears of those who had borne it to its resting-place.  The grave was \nfilled in to the top, and trodden down.  They all left the spot \ntogether.\n\n'You never saw him, living?' asked the clergyman, of Edward.\n\n'Often, years ago; not knowing him for my brother.'\n\n'Never since?'\n\n'Never.  Yesterday, he steadily refused to see me.  It was urged \nupon him, many times, at my desire.'\n\n'Still he refused?  That was hardened and unnatural.'\n\n'Do you think so?'\n\n'I infer that you do not?'\n\n'You are right.  We hear the world wonder, every day, at monsters \nof ingratitude.  Did it never occur to you that it often looks for \nmonsters of affection, as though they were things of course?'\n\nThey had reached the gate by this time, and bidding each other good \nnight, departed on their separate ways.\n\n\n\nChapter 80\n\n\nThat afternoon, when he had slept off his fatigue; had shaved, and \nwashed, and dressed, and freshened himself from top to toe; when he \nhad dined, comforted himself with a pipe, an extra Toby, a nap in \nthe great arm-chair, and a quiet chat with Mrs Varden on everything \nthat had happened, was happening, or about to happen, within the \nsphere of their domestic concern; the locksmith sat himself down at \nthe tea-table in the little back-parlour: the rosiest, cosiest, \nmerriest, heartiest, best-contented old buck, in Great Britain or \nout of it.\n\nThere he sat, with his beaming eye on Mrs V., and his shining face \nsuffused with gladness, and his capacious waistcoat smiling in \nevery wrinkle, and his jovial humour peeping from under the table \nin the very plumpness of his legs; a sight to turn the vinegar of \nmisanthropy into purest milk of human kindness.  There he sat, \nwatching his wife as she decorated the room with flowers for the \ngreater honour of Dolly and Joseph Willet, who had gone out \nwalking, and for whom the tea-kettle had been singing gaily on the \nhob full twenty minutes, chirping as never kettle chirped before; \nfor whom the best service of real undoubted china, patterned with \ndivers round-faced mandarins holding up broad umbrellas, was now \ndisplayed in all its glory; to tempt whose appetites a clear, \ntransparent, juicy ham, garnished with cool green lettuce-leaves \nand fragrant cucumber, reposed upon a shady table, covered with a \nsnow-white cloth; for whose delight, preserves and jams, crisp \ncakes and other pastry, short to eat, with cunning twists, and \ncottage loaves, and rolls of bread both white and brown, were all \nset forth in rich profusion; in whose youth Mrs V.  herself had \ngrown quite young, and stood there in a gown of red and white: \nsymmetrical in figure, buxom in bodice, ruddy in cheek and lip, \nfaultless in ankle, laughing in face and mood, in all respects \ndelicious to behold--there sat the locksmith among all and every \nthese delights, the sun that shone upon them all: the centre of the \nsystem: the source of light, heat, life, and frank enjoyment in the \nbright household world.\n\nAnd when had Dolly ever been the Dolly of that afternoon?  To see \nhow she came in, arm-in-arm with Joe; and how she made an effort \nnot to blush or seem at all confused; and how she made believe she \ndidn't care to sit on his side of the table; and how she coaxed the \nlocksmith in a whisper not to joke; and how her colour came and \nwent in a little restless flutter of happiness, which made her do \neverything wrong, and yet so charmingly wrong that it was better \nthan right!--why, the locksmith could have looked on at this (as he \nmentioned to Mrs Varden when they retired for the night) for four-\nand-twenty hours at a stretch, and never wished it done.\n\nThe recollections, too, with which they made merry over that long \nprotracted tea!  The glee with which the locksmith asked Joe if he \nremembered that stormy night at the Maypole when he first asked \nafter Dolly--the laugh they all had, about that night when she was \ngoing out to the party in the sedan-chair--the unmerciful manner in \nwhich they rallied Mrs Varden about putting those flowers outside \nthat very window--the difficulty Mrs Varden found in joining the \nlaugh against herself, at first, and the extraordinary perception \nshe had of the joke when she overcame it--the confidential \nstatements of Joe concerning the precise day and hour when he was \nfirst conscious of being fond of Dolly, and Dolly's blushing \nadmissions, half volunteered and half extorted, as to the time from \nwhich she dated the discovery that she 'didn't mind' Joe--here was \nan exhaustless fund of mirth and conversation.\n\nThen, there was a great deal to be said regarding Mrs Varden's \ndoubts, and motherly alarms, and shrewd suspicions; and it appeared \nthat from Mrs Varden's penetration and extreme sagacity nothing had \never been hidden.  She had known it all along.  She had seen it \nfrom the first.  She had always predicted it.  She had been aware \nof it before the principals.  She had said within herself (for she \nremembered the exact words) 'that young Willet is certainly \nlooking after our Dolly, and I must look after HIM.'  Accordingly, \nshe had looked after him, and had observed many little \ncircumstances (all of which she named) so exceedingly minute that \nnobody else could make anything out of them even now; and had, it \nseemed from first to last, displayed the most unbounded tact and \nmost consummate generalship.\n\nOf course the night when Joe WOULD ride homeward by the side of the \nchaise, and when Mrs Varden WOULD insist upon his going back again, \nwas not forgotten--nor the night when Dolly fainted on his name \nbeing mentioned--nor the times upon times when Mrs Varden, ever \nwatchful and prudent, had found her pining in her own chamber.  In \nshort, nothing was forgotten; and everything by some means or other \nbrought them back to the conclusion, that that was the happiest \nhour in all their lives; consequently, that everything must have \noccurred for the best, and nothing could be suggested which would \nhave made it better.\n\nWhile they were in the full glow of such discourse as this, there \ncame a startling knock at the door, opening from the street into \nthe workshop, which had been kept closed all day that the house \nmight be more quiet.  Joe, as in duty bound, would hear of nobody \nbut himself going to open it; and accordingly left the room for \nthat purpose.\n\nIt would have been odd enough, certainly, if Joe had forgotten the \nway to this door; and even if he had, as it was a pretty large one \nand stood straight before him, he could not easily have missed it.  \nBut Dolly, perhaps because she was in the flutter of spirits before \nmentioned, or perhaps because she thought he would not be able to \nopen it with his one arm--she could have had no other reason--\nhurried out after him; and they stopped so long in the passage--no \ndoubt owing to Joe's entreaties that she would not expose herself \nto the draught of July air which must infallibly come rushing in on \nthis same door being opened--that the knock was repeated, in a yet \nmore startling manner than before.\n\n'Is anybody going to open that door?' cried the locksmith.  'Or \nshall I come?'\n\nUpon that, Dolly went running back into the parlour, all dimples \nand blushes; and Joe opened it with a mighty noise, and other \nsuperfluous demonstrations of being in a violent hurry.\n\n'Well,' said the locksmith, when he reappeared: 'what is it?  eh \nJoe? what are you laughing at?'\n\n'Nothing, sir.  It's coming in.'\n\n'Who's coming in? what's coming in?'  Mrs Varden, as much at a loss \nas her husband, could only shake her head in answer to his \ninquiring look: so, the locksmith wheeled his chair round to \ncommand a better view of the room-door, and stared at it with his \neyes wide open, and a mingled expression of curiosity and wonder \nshining in his jolly face.\n\nInstead of some person or persons straightway appearing, divers \nremarkable sounds were heard, first in the workshop and afterwards \nin the little dark passage between it and the parlour, as though \nsome unwieldy chest or heavy piece of furniture were being brought \nin, by an amount of human strength inadequate to the task.  At \nlength after much struggling and humping, and bruising of the wall \non both sides, the door was forced open as by a battering-ram; and \nthe locksmith, steadily regarding what appeared beyond, smote his \nthigh, elevated his eyebrows, opened his mouth, and cried in a loud \nvoice expressive of the utmost consternation:\n\n'Damme, if it an't Miggs come back!'\n\nThe young damsel whom he named no sooner heard these words, than \ndeserting a small boy and a very large box by which she was \naccompanied, and advancing with such precipitation that her bonnet \nflew off her head, burst into the room, clasped her hands (in which \nshe held a pair of pattens, one in each), raised her eyes devotedly \nto the ceiling, and shed a flood of tears.\n\n'The old story!' cried the locksmith, looking at her in \ninexpressible desperation.  'She was born to be a damper, this \nyoung woman! nothing can prevent it!'\n\n'Ho master, ho mim!' cried Miggs, 'can I constrain my feelings in \nthese here once agin united moments!  Ho Mr Warsen, here's \nblessedness among relations, sir!  Here's forgivenesses of \ninjuries, here's amicablenesses!'\n\nThe locksmith looked from his wife to Dolly, and from Dolly to Joe, \nand from Joe to Miggs, with his eyebrows still elevated and his \nmouth still open.  When his eyes got back to Miggs, they rested on \nher; fascinated.\n\n'To think,' cried Miggs with hysterical joy, 'that Mr Joe, and dear \nMiss Dolly, has raly come together after all as has been said and \ndone contrairy!  To see them two a-settin' along with him and her, \nso pleasant and in all respects so affable and mild; and me not \nknowing of it, and not being in the ways to make no preparations \nfor their teas.  Ho what a cutting thing it is, and yet what sweet \nsensations is awoke within me!'\n\nEither in clasping her hands again, or in an ecstasy of pious joy, \nMiss Miggs clinked her pattens after the manner of a pair of \ncymbals, at this juncture; and then resumed, in the softest \naccents:\n\n'And did my missis think--ho goodness, did she think--as her own \nMiggs, which supported her under so many trials, and understood her \nnatur' when them as intended well but acted rough, went so deep \ninto her feelings--did she think as her own Miggs would ever leave \nher?  Did she think as Miggs, though she was but a servant, and \nknowed that servitudes was no inheritances, would forgit that she \nwas the humble instruments as always made it comfortable between \nthem two when they fell out, and always told master of the meekness \nand forgiveness of her blessed dispositions!  Did she think as \nMiggs had no attachments!  Did she think that wages was her only \nobject!'\n\nTo none of these interrogatories, whereof every one was more \npathetically delivered than the last, did Mrs Varden answer one \nword: but Miggs, not at all abashed by this circumstance, turned to \nthe small boy in attendance--her eldest nephew--son of her own \nmarried sister--born in Golden Lion Court, number twenty-sivin, \nand bred in the very shadow of the second bell-handle on the right-\nhand door-post--and with a plentiful use of her pocket-\nhandkerchief, addressed herself to him: requesting that on his \nreturn home he would console his parents for the loss of her, his \naunt, by delivering to them a faithful statement of his having left \nher in the bosom of that family, with which, as his aforesaid \nparents well knew, her best affections were incorporated; that he \nwould remind them that nothing less than her imperious sense of \nduty, and devoted attachment to her old master and missis, likewise \nMiss Dolly and young Mr Joe, should ever have induced her to \ndecline that pressing invitation which they, his parents, had, as \nhe could testify, given her, to lodge and board with them, free of \nall cost and charge, for evermore; lastly, that he would help her \nwith her box upstairs, and then repair straight home, bearing her \nblessing and her strong injunctions to mingle in his prayers a \nsupplication that he might in course of time grow up a locksmith, \nor a Mr Joe, and have Mrs Vardens and Miss Dollys for his relations \nand friends.\n\nHaving brought this admonition to an end--upon which, to say the \ntruth, the young gentleman for whose benefit it was designed, \nbestowed little or no heed, having to all appearance his faculties \nabsorbed in the contemplation of the sweetmeats,--Miss Miggs \nsignified to the company in general that they were not to be \nuneasy, for she would soon return; and, with her nephew's aid, \nprepared to bear her wardrobe up the staircase.\n\n'My dear,' said the locksmith to his wife.  'Do you desire this?'\n\n'I desire it!' she answered.  'I am astonished--I am amazed--at her \naudacity.  Let her leave the house this moment.'\n\nMiggs, hearing this, let her end of the box fall heavily to the \nfloor, gave a very loud sniff, crossed her arms, screwed down the \ncorners of her mouth, and cried, in an ascending scale, 'Ho, good \ngracious!' three distinct times.\n\n'You hear what your mistress says, my love,' remarked the \nlocksmith.  'You had better go, I think.  Stay; take this with you, \nfor the sake of old service.'\n\nMiss Miggs clutched the bank-note he took from his pocket-book and \nheld out to her; deposited it in a small, red leather purse; put \nthe purse in her pocket (displaying, as she did so, a considerable \nportion of some under-garment, made of flannel, and more black \ncotton stocking than is commonly seen in public); and, tossing her \nhead, as she looked at Mrs Varden, repeated--\n\n'Ho, good gracious!'\n\n'I think you said that once before, my dear,' observed the \nlocksmith.\n\n'Times is changed, is they, mim!' cried Miggs, bridling; 'you can \nspare me now, can you?  You can keep 'em down without me?  You're \nnot in wants of any one to scold, or throw the blame upon, no \nlonger, an't you, mim?  I'm glad to find you've grown so \nindependent.  I wish you joy, I'm sure!'\n\nWith that she dropped a curtsey, and keeping her head erect, her \near towards Mrs Varden, and her eye on the rest of the company, as \nshe alluded to them in her remarks, proceeded:\n\n'I'm quite delighted, I'm sure, to find sich independency, feeling \nsorry though, at the same time, mim, that you should have been \nforced into submissions when you couldn't help yourself--he he he!  \nIt must be great vexations, 'specially considering how ill you \nalways spoke of Mr Joe--to have him for a son-in-law at last; and \nI wonder Miss Dolly can put up with him, either, after being off \nand on for so many years with a coachmaker.  But I HAVE heerd say, \nthat the coachmaker thought twice about it--he he he!--and that he \ntold a young man as was a frind of his, that he hoped he knowed \nbetter than to be drawed into that; though she and all the family \nDID pull uncommon strong!'\n\nHere she paused for a reply, and receiving none, went on as before.\n\n'I HAVE heerd say, mim, that the illnesses of some ladies was all \npretensions, and that they could faint away, stone dead, whenever \nthey had the inclinations so to do.  Of course I never see sich \ncases with my own eyes--ho no!  He he he!  Nor master neither--ho \nno!  He he he!  I HAVE heerd the neighbours make remark as some one \nas they was acquainted with, was a poor good-natur'd mean-spirited \ncreetur, as went out fishing for a wife one day, and caught a \nTartar.  Of course I never to my knowledge see the poor person \nhimself.  Nor did you neither, mim--ho no.  I wonder who it can \nbe--don't you, mim?  No doubt you do, mim.  Ho yes.  He he he!'\n\nAgain Miggs paused for a reply; and none being offered, was so \noppressed with teeming spite and spleen, that she seemed like to \nburst.\n\n'I'm glad Miss Dolly can laugh,' cried Miggs with a feeble titter.  \n'I like to see folks a-laughing--so do you, mim, don't you?  You \nwas always glad to see people in spirits, wasn't you, mim?  And you \nalways did your best to keep 'em cheerful, didn't you, mim?  \nThough there an't such a great deal to laugh at now either; is \nthere, mim?  It an't so much of a catch, after looking out so sharp \never since she was a little chit, and costing such a deal in dress \nand show, to get a poor, common soldier, with one arm, is it, mim?  \nHe he!  I wouldn't have a husband with one arm, anyways.  I would \nhave two arms.  I would have two arms, if it was me, though instead \nof hands they'd only got hooks at the end, like our dustman!'\n\nMiss Miggs was about to add, and had, indeed, begun to add, that, \ntaking them in the abstract, dustmen were far more eligible matches \nthan soldiers, though, to be sure, when people were past choosing \nthey must take the best they could get, and think themselves well \noff too; but her vexation and chagrin being of that internally \nbitter sort which finds no relief in words, and is aggravated to \nmadness by want of contradiction, she could hold out no longer, and \nburst into a storm of sobs and tears.\n\nIn this extremity she fell on the unlucky nephew, tooth and nail, \nand plucking a handful of hair from his head, demanded to know how \nlong she was to stand there to be insulted, and whether or no he \nmeant to help her to carry out the box again, and if he took a \npleasure in hearing his family reviled: with other inquiries of \nthat nature; at which disgrace and provocation, the small boy, who \nhad been all this time gradually lashed into rebellion by the sight \nof unattainable pastry, walked off indignant, leaving his aunt and \nthe box to follow at their leisure.  Somehow or other, by dint of \npushing and pulling, they did attain the street at last; where Miss \nMiggs, all blowzed with the exertion of getting there, and with her \nsobs and tears, sat down upon her property to rest and grieve, \nuntil she could ensnare some other youth to help her home.\n\n'It's a thing to laugh at, Martha, not to care for,' whispered the \nlocksmith, as he followed his wife to the window, and good-\nhumouredly dried her eyes.  'What does it matter?  You had seen \nyour fault before.  Come!  Bring up Toby again, my dear; Dolly \nshall sing us a song; and we'll be all the merrier for this \ninterruption!'\n\n\n\nChapter 81\n\n\nAnother month had passed, and the end of August had nearly come, \nwhen Mr Haredale stood alone in the mail-coach office at Bristol.  \nAlthough but a few weeks had intervened since his conversation with \nEdward Chester and his niece, in the locksmith's house, and he had \nmade no change, in the mean time, in his accustomed style of dress, \nhis appearance was greatly altered.  He looked much older, and more \ncare-worn.  Agitation and anxiety of mind scatter wrinkles and grey \nhairs with no unsparing hand; but deeper traces follow on the \nsilent uprooting of old habits, and severing of dear, familiar \nties.  The affections may not be so easily wounded as the passions, \nbut their hurts are deeper, and more lasting.  He was now a \nsolitary man, and the heart within him was dreary and lonesome.\n\nHe was not the less alone for having spent so many years in \nseclusion and retirement.  This was no better preparation than a \nround of social cheerfulness: perhaps it even increased the \nkeenness of his sensibility.  He had been so dependent upon her for \ncompanionship and love; she had come to be so much a part and \nparcel of his existence; they had had so many cares and thoughts in \ncommon, which no one else had shared; that losing her was beginning \nlife anew, and being required to summon up the hope and elasticity \nof youth, amid the doubts, distrusts, and weakened energies of \nage.\n\nThe effort he had made to part from her with seeming cheerfulness \nand hope--and they had parted only yesterday--left him the more \ndepressed.  With these feelings, he was about to revisit London for \nthe last time, and look once more upon the walls of their old home, \nbefore turning his back upon it, for ever.\n\nThe journey was a very different one, in those days, from what the \npresent generation find it; but it came to an end, as the longest \njourney will, and he stood again in the streets of the metropolis.  \nHe lay at the inn where the coach stopped, and resolved, before he \nwent to bed, that he would make his arrival known to no one; would \nspend but another night in London; and would spare himself the pang \nof parting, even with the honest locksmith.\n\nSuch conditions of the mind as that to which he was a prey when he \nlay down to rest, are favourable to the growth of disordered \nfancies, and uneasy visions.  He knew this, even in the horror with \nwhich he started from his first sleep, and threw up the window to \ndispel it by the presence of some object, beyond the room, which \nhad not been, as it were, the witness of his dream.  But it was not \na new terror of the night; it had been present to him before, in \nmany shapes; it had haunted him in bygone times, and visited his \npillow again and again.  If it had been but an ugly object, a \nchildish spectre, haunting his sleep, its return, in its old form, \nmight have awakened a momentary sensation of fear, which, almost in \nthe act of waking, would have passed away.  This disquiet, \nhowever, lingered about him, and would yield to nothing.  When he \nclosed his eyes again, he felt it hovering near; as he slowly sunk \ninto a slumber, he was conscious of its gathering strength and \npurpose, and gradually assuming its recent shape; when he sprang up \nfrom his bed, the same phantom vanished from his heated brain, and \nleft him filled with a dread against which reason and waking \nthought were powerless.\n\nThe sun was up, before he could shake it off.  He rose late, but \nnot refreshed, and remained within doors all that day.  He had a \nfancy for paying his last visit to the old spot in the evening, for \nhe had been accustomed to walk there at that season, and desired to \nsee it under the aspect that was most familiar to him.  At such an \nhour as would afford him time to reach it a little before sunset, \nhe left the inn, and turned into the busy street.\n\nHe had not gone far, and was thoughtfully making his way among the \nnoisy crowd, when he felt a hand upon his shoulder, and, turning, \nrecognised one of the waiters from the inn, who begged his pardon, \nbut he had left his sword behind him.\n\n'Why have you brought it to me?' he asked, stretching out his hand, \nand yet not taking it from the man, but looking at him in a \ndisturbed and agitated manner.\n\nThe man was sorry to have disobliged him, and would carry it back \nagain.  The gentleman had said that he was going a little way into \nthe country, and that he might not return until late.  The roads \nwere not very safe for single travellers after dark; and, since the \nriots, gentlemen had been more careful than ever, not to trust \nthemselves unarmed in lonely places.  'We thought you were a \nstranger, sir,' he added, 'and that you might believe our roads to \nbe better than they are; but perhaps you know them well, and carry \nfire-arms--'\n\nHe took the sword, and putting it up at his side, thanked the man, \nand resumed his walk.\n\nIt was long remembered that he did this in a manner so strange, and \nwith such a trembling hand, that the messenger stood looking after \nhis retreating figure, doubtful whether he ought not to follow, and \nwatch him.  It was long remembered that he had been heard pacing \nhis bedroom in the dead of the night; that the attendants had \nmentioned to each other in the morning, how fevered and how pale he \nlooked; and that when this man went back to the inn, he told a \nfellow-servant that what he had observed in this short interview \nlay very heavy on his mind, and that he feared the gentleman \nintended to destroy himself, and would never come back alive.\n\nWith a half-consciousness that his manner had attracted the man's \nattention (remembering the expression of his face when they \nparted), Mr Haredale quickened his steps; and arriving at a stand \nof coaches, bargained with the driver of the best to carry him so \nfar on his road as the point where the footway struck across the \nfields, and to await his return at a house of entertainment which \nwas within a stone's-throw of that place.  Arriving there in due \ncourse, he alighted and pursued his way on foot.\n\nHe passed so near the Maypole, that he could see its smoke rising \nfrom among the trees, while a flock of pigeons--some of its old \ninhabitants, doubtless--sailed gaily home to roost, between him and \nthe unclouded sky.  'The old house will brighten up now,' he said, \nas he looked towards it, 'and there will be a merry fireside \nbeneath its ivied roof.  It is some comfort to know that everything \nwill not be blighted hereabouts.  I shall be glad to have one \npicture of life and cheerfulness to turn to, in my mind!'\n\nHe resumed his walk, and bent his steps towards the Warren.  It was \na clear, calm, silent evening, with hardly a breath of wind to stir \nthe leaves, or any sound to break the stillness of the time, but \ndrowsy sheep-bells tinkling in the distance, and, at intervals, \nthe far-off lowing of cattle, or bark of village dogs.  The sky \nwas radiant with the softened glory of sunset; and on the earth, \nand in the air, a deep repose prevailed.  At such an hour, he \narrived at the deserted mansion which had been his home so long, \nand looked for the last time upon its blackened walls.\n\nThe ashes of the commonest fire are melancholy things, for in them \nthere is an image of death and ruin,--of something that has been \nbright, and is but dull, cold, dreary dust,--with which our nature \nforces us to sympathise.  How much more sad the crumbled embers of \na home: the casting down of that great altar, where the worst among \nus sometimes perform the worship of the heart; and where the best \nhave offered up such sacrifices, and done such deeds of heroism, \nas, chronicled, would put the proudest temples of old Time, with \nall their vaunting annals, to the blush!\n\nHe roused himself from a long train of meditation, and walked \nslowly round the house.  It was by this time almost dark.\n\nHe had nearly made the circuit of the building, when he uttered a \nhalf-suppressed exclamation, started, and stood still.  Reclining, \nin an easy attitude, with his back against a tree, and \ncontemplating the ruin with an expression of pleasure,--a pleasure \nso keen that it overcame his habitual indolence and command of \nfeature, and displayed itself utterly free from all restraint or \nreserve,--before him, on his own ground, and triumphing then, as he \nhad triumphed in every misfortune and disappointment of his life, \nstood the man whose presence, of all mankind, in any place, and \nleast of all in that, he could the least endure.\n\nAlthough his blood so rose against this man, and his wrath so \nstirred within him, that he could have struck him dead, he put such \nfierce constraint upon himself that he passed him without a word or \nlook.  Yes, and he would have gone on, and not turned, though to \nresist the Devil who poured such hot temptation in his brain, \nrequired an effort scarcely to be achieved, if this man had not \nhimself summoned him to stop: and that, with an assumed compassion \nin his voice which drove him well-nigh mad, and in an instant \nrouted all the self-command it had been anguish--acute, poignant \nanguish--to sustain.\n\nAll consideration, reflection, mercy, forbearance; everything by \nwhich a goaded man can curb his rage and passion; fled from him as \nhe turned back.  And yet he said, slowly and quite calmly--far more \ncalmly than he had ever spoken to him before:\n\n'Why have you called to me?'\n\n'To remark,' said Sir John Chester with his wonted composure, 'what \nan odd chance it is, that we should meet here!'\n\n'It IS a strange chance.'\n\n'Strange?  The most remarkable and singular thing in the world.  I \nnever ride in the evening; I have not done so for years.  The whim \nseized me, quite unaccountably, in the middle of last night.--How \nvery picturesque this is!'--He pointed, as he spoke, to the \ndismantled house, and raised his glass to his eye.\n\n'You praise your own work very freely.'\n\nSir John let fall his glass; inclined his face towards him with an \nair of the most courteous inquiry; and slightly shook his head as \nthough he were remarking to himself, 'I fear this animal is going \nmad!'\n\n'I say you praise your own work very freely,' repeated Mr \nHaredale.\n\n'Work!' echoed Sir John, looking smilingly round.  'Mine!--I beg \nyour pardon, I really beg your pardon--'\n\n'Why, you see,' said Mr Haredale, 'those walls.  You see those \ntottering gables.  You see on every side where fire and smoke have \nraged.  You see the destruction that has been wanton here.  Do you \nnot?'\n\n'My good friend,' returned the knight, gently checking his \nimpatience with his hand, 'of course I do.  I see everything you \nspeak of, when you stand aside, and do not interpose yourself \nbetween the view and me.  I am very sorry for you.  If I had not \nhad the pleasure to meet you here, I think I should have written to \ntell you so.  But you don't bear it as well as I had expected--\nexcuse me--no, you don't indeed.'\n\nHe pulled out his snuff-box, and addressing him with the superior \nair of a man who, by reason of his higher nature, has a right to \nread a moral lesson to another, continued:\n\n'For you are a philosopher, you know--one of that stern and rigid \nschool who are far above the weaknesses of mankind in general.  You \nare removed, a long way, from the frailties of the crowd.  You \ncontemplate them from a height, and rail at them with a most \nimpressive bitterness.  I have heard you.'\n\n--'And shall again,' said Mr Haredale.\n\n'Thank you,' returned the other.  'Shall we walk as we talk?  The \ndamp falls rather heavily.  Well,--as you please.  But I grieve to \nsay that I can spare you only a very few moments.'\n\n'I would,' said Mr Haredale, 'you had spared me none.  I would, \nwith all my soul, you had been in Paradise (if such a monstrous \nlie could be enacted), rather than here to-night.'\n\n'Nay,' returned the other--'really--you do yourself injustice.  You \nare a rough companion, but I would not go so far to avoid you.'\n\n'Listen to me,' said Mr Haredale.  'Listen to me.'\n\n'While you rail?' inquired Sir John.\n\n'While I deliver your infamy.  You urged and stimulated to do your \nwork a fit agent, but one who in his nature--in the very essence of \nhis being--is a traitor, and who has been false to you (despite the \nsympathy you two should have together) as he has been to all \nothers.  With hints, and looks, and crafty words, which told again \nare nothing, you set on Gashford to this work--this work before us \nnow.  With these same hints, and looks, and crafty words, which \ntold again are nothing, you urged him on to gratify the deadly \nhate he owes me--I have earned it, I thank Heaven--by the abduction \nand dishonour of my niece.  You did.  I see denial in your looks,' \nhe cried, abruptly pointing in his face, and stepping back, 'and \ndenial is a lie!'\n\nHe had his hand upon his sword; but the knight, with a contemptuous \nsmile, replied to him as coldly as before.\n\n'You will take notice, sir--if you can discriminate sufficiently--\nthat I have taken the trouble to deny nothing.  Your discernment is \nhardly fine enough for the perusal of faces, not of a kind as \ncoarse as your speech; nor has it ever been, that I remember; or, \nin one face that I could name, you would have read indifference, \nnot to say disgust, somewhat sooner than you did.  I speak of a \nlong time ago,--but you understand me.'\n\n'Disguise it as you will, you mean denial.  Denial explicit or \nreserved, expressed or left to be inferred, is still a lie.  You \nsay you don't deny.  Do you admit?'\n\n'You yourself,' returned Sir John, suffering the current of his \nspeech to flow as smoothly as if it had been stemmed by no one word \nof interruption, 'publicly proclaimed the character of the \ngentleman in question (I think it was in Westminster Hall) in terms \nwhich relieve me from the necessity of making any further allusion \nto him.  You may have been warranted; you may not have been; I \ncan't say.  Assuming the gentleman to be what you described, and \nto have made to you or any other person any statements that may \nhave happened to suggest themselves to him, for the sake of his \nown security, or for the sake of money, or for his own amusement, \nor for any other consideration,--I have nothing to say of him, \nexcept that his extremely degrading situation appears to me to be \nshared with his employers.  You are so very plain yourself, that \nyou will excuse a little freedom in me, I am sure.'\n\n'Attend to me again, Sir John but once,' cried Mr Haredale; 'in \nyour every look, and word, and gesture, you tell me this was not \nyour act.  I tell you that it was, and that you tampered with the \nman I speak of, and with your wretched son (whom God forgive!) to \ndo this deed.  You talk of degradation and character.  You told me \nonce that you had purchased the absence of the poor idiot and his \nmother, when (as I have discovered since, and then suspected) you \nhad gone to tempt them, and had found them flown.  To you I traced \nthe insinuation that I alone reaped any harvest from my brother's \ndeath; and all the foul attacks and whispered calumnies that \nfollowed in its train.  In every action of my life, from that first \nhope which you converted into grief and desolation, you have stood, \nlike an adverse fate, between me and peace.  In all, you have ever \nbeen the same cold-blooded, hollow, false, unworthy villain.  For \nthe second time, and for the last, I cast these charges in your \nteeth, and spurn you from me as I would a faithless dog!'\n\nWith that he raised his arm, and struck him on the breast so that \nhe staggered.  Sir John, the instant he recovered, drew his sword, \nthrew away the scabbard and his hat, and running on his adversary \nmade a desperate lunge at his heart, which, but that his guard was \nquick and true, would have stretched him dead upon the grass.\n\nIn the act of striking him, the torrent of his opponent's rage had \nreached a stop.  He parried his rapid thrusts, without returning \nthem, and called to him, with a frantic kind of terror in his face, \nto keep back.\n\n'Not to-night! not to-night!' he cried.  'In God's name, not \ntonight!'\n\nSeeing that he lowered his weapon, and that he would not thrust in \nturn, Sir John lowered his.\n\n'Not to-night!' his adversary cried.  'Be warned in time!'\n\n'You told me--it must have been in a sort of inspiration--' said \nSir John, quite deliberately, though now he dropped his mask, and \nshowed his hatred in his face, 'that this was the last time.  Be \nassured it is!  Did you believe our last meeting was forgotten?  \nDid you believe that your every word and look was not to be \naccounted for, and was not well remembered?  Do you believe that I \nhave waited your time, or you mine?  What kind of man is he who \nentered, with all his sickening cant of honesty and truth, into a \nbond with me to prevent a marriage he affected to dislike, and when \nI had redeemed my part to the spirit and the letter, skulked from \nhis, and brought the match about in his own time, to rid himself of \na burden he had grown tired of, and cast a spurious lustre on his \nhouse?'\n\n'I have acted,' cried Mr Haredale, 'with honour and in good faith.  \nI do so now.  Do not force me to renew this duel to-night!'\n\n'You said my \"wretched\" son, I think?' said Sir John, with a smile.  \n'Poor fool!  The dupe of such a shallow knave--trapped into \nmarriage by such an uncle and by such a niece--he well deserves \nyour pity.  But he is no longer a son of mine: you are welcome to \nthe prize your craft has made, sir.'\n\n'Once more,' cried his opponent, wildly stamping on the ground, \n'although you tear me from my better angel, I implore you not to \ncome within the reach of my sword to-night.  Oh! why were you here \nat all!  Why have we met!  To-morrow would have cast us far apart \nfor ever!'\n\n'That being the case,' returned Sir John, without the least \nemotion, 'it is very fortunate we have met to-night.  Haredale, I \nhave always despised you, as you know, but I have given you credit \nfor a species of brute courage.  For the honour of my judgment, \nwhich I had thought a good one, I am sorry to find you a coward.'\n\nNot another word was spoken on either side.  They crossed swords, \nthough it was now quite dusk, and attacked each other fiercely.  \nThey were well matched, and each was thoroughly skilled in the \nmanagement of his weapon.\n\nAfter a few seconds they grew hotter and more furious, and pressing \non each other inflicted and received several slight wounds.  It was \ndirectly after receiving one of these in his arm, that Mr Haredale, \nmaking a keener thrust as he felt the warm blood spirting out, \nplunged his sword through his opponent's body to the hilt.\n\nTheir eyes met, and were on each other as he drew it out.  He put \nhis arm about the dying man, who repulsed him, feebly, and dropped \nupon the turf.  Raising himself upon his hands, he gazed at him for \nan instant, with scorn and hatred in his look; but, seeming to \nremember, even then, that this expression would distort his \nfeatures after death, he tried to smile, and, faintly moving his \nright hand, as if to hide his bloody linen in his vest, fell back \ndead--the phantom of last night.\n\n\n\nChapter the Last\n\n\nA parting glance at such of the actors in this little history as \nit has not, in the course of its events, dismissed, will bring it \nto an end.\n\nMr Haredale fled that night.  Before pursuit could be begun, indeed \nbefore Sir John was traced or missed, he had left the kingdom.  \nRepairing straight to a religious establishment, known throughout \nEurope for the rigour and severity of its discipline, and for the \nmerciless penitence it exacted from those who sought its shelter as \na refuge from the world, he took the vows which thenceforth shut \nhim out from nature and his kind, and after a few remorseful years \nwas buried in its gloomy cloisters.\n\nTwo days elapsed before the body of Sir John was found.  As soon as \nit was recognised and carried home, the faithful valet, true to his \nmaster's creed, eloped with all the cash and movables he could lay \nhis hands on, and started as a finished gentleman upon his own \naccount.  In this career he met with great success, and would \ncertainly have married an heiress in the end, but for an unlucky \ncheck which led to his premature decease.  He sank under a \ncontagious disorder, very prevalent at that time, and vulgarly \ntermed the jail fever.\n\nLord George Gordon, remaining in his prison in the Tower until \nMonday the fifth of February in the following year, was on that \nday solemnly tried at Westminster for High Treason.  Of this crime \nhe was, after a patient investigation, declared Not Guilty; upon \nthe ground that there was no proof of his having called the \nmultitude together with any traitorous or unlawful intentions.  Yet \nso many people were there, still, to whom those riots taught no \nlesson of reproof or moderation, that a public subscription was set \non foot in Scotland to defray the cost of his defence.\n\nFor seven years afterwards he remained, at the strong intercession \nof his friends, comparatively quiet; saving that he, every now and \nthen, took occasion to display his zeal for the Protestant faith in \nsome extravagant proceeding which was the delight of its enemies; \nand saving, besides, that he was formally excommunicated by the \nArchbishop of Canterbury, for refusing to appear as a witness in \nthe Ecclesiastical Court when cited for that purpose.  In the year \n1788 he was stimulated by some new insanity to write and publish \nan injurious pamphlet, reflecting on the Queen of France, in very \nviolent terms.  Being indicted for the libel, and (after various \nstrange demonstrations in court) found guilty, he fled into Holland \nin place of appearing to receive sentence: from whence, as the \nquiet burgomasters of Amsterdam had no relish for his company, \nhe was sent home again with all speed.  Arriving in the month of \nJuly at Harwich, and going thence to Birmingham, he made in the \nlatter place, in August, a public profession of the Jewish \nreligion; and figured there as a Jew until he was arrested, and \nbrought back to London to receive the sentence he had evaded.  By \nvirtue of this sentence he was, in the month of December, cast \ninto Newgate for five years and ten months, and required besides to \npay a large fine, and to furnish heavy securities for his future \ngood behaviour.\n\nAfter addressing, in the midsummer of the following year, an appeal \nto the commiseration of the National Assembly of France, which the \nEnglish minister refused to sanction, he composed himself to \nundergo his full term of punishment; and suffering his beard to \ngrow nearly to his waist, and conforming in all respects to the \nceremonies of his new religion, he applied himself to the study of \nhistory, and occasionally to the art of painting, in which, in his \nyounger days, he had shown some skill.  Deserted by his former \nfriends, and treated in all respects like the worst criminal in the \njail, he lingered on, quite cheerful and resigned, until the 1st \nof November 1793, when he died in his cell, being then only three-\nand-forty years of age.\n\nMany men with fewer sympathies for the distressed and needy, with \nless abilities and harder hearts, have made a shining figure and \nleft a brilliant fame.  He had his mourners.  The prisoners \nbemoaned his loss, and missed him; for though his means were not \nlarge, his charity was great, and in bestowing alms among them he \nconsidered the necessities of all alike, and knew no distinction of \nsect or creed.  There are wise men in the highways of the world who \nmay learn something, even from this poor crazy lord who died in \nNewgate.\n\nTo the last, he was truly served by bluff John Grueby.  John was at \nhis side before he had been four-and-twenty hours in the Tower, and \nnever left him until he died.  He had one other constant attendant, \nin the person of a beautiful Jewish girl; who attached herself to \nhim from feelings half religious, half romantic, but whose virtuous \nand disinterested character appears to have been beyond the censure \neven of the most censorious.\n\nGashford deserted him, of course.  He subsisted for a time upon his \ntraffic in his master's secrets; and, this trade failing when the \nstock was quite exhausted, procured an appointment in the \nhonourable corps of spies and eavesdroppers employed by the \ngovernment.  As one of these wretched underlings, he did his \ndrudgery, sometimes abroad, sometimes at home, and long endured the \nvarious miseries of such a station.  Ten or a dozen years ago--not \nmore--a meagre, wan old man, diseased and miserably poor, was found \ndead in his bed at an obscure inn in the Borough, where he was \nquite unknown.  He had taken poison.  There was no clue to his \nname; but it was discovered from certain entries in a pocket-book \nhe carried, that he had been secretary to Lord George Gordon in the \ntime of the famous riots.\n\nMany months after the re-establishment of peace and order, and even \nwhen it had ceased to be the town-talk, that every military \nofficer, kept at free quarters by the City during the late alarms, \nhad cost for his board and lodging four pounds four per day, and \nevery private soldier two and twopence halfpenny; many months after \neven this engrossing topic was forgotten, and the United Bulldogs \nwere to a man all killed, imprisoned, or transported, Mr Simon \nTappertit, being removed from a hospital to prison, and thence to \nhis place of trial, was discharged by proclamation, on two wooden \nlegs.  Shorn of his graceful limbs, and brought down from his high \nestate to circumstances of utter destitution, and the deepest \nmisery, he made shift to stump back to his old master, and beg for \nsome relief.  By the locksmith's advice and aid, he was established \nin business as a shoeblack, and opened shop under an archway near \nthe Horse Guards.  This being a central quarter, he quickly made a \nvery large connection; and on levee days, was sometimes known to \nhave as many as twenty half-pay officers waiting their turn for \npolishing.  Indeed his trade increased to that extent, that in \ncourse of time he entertained no less than two apprentices, besides \ntaking for his wife the widow of an eminent bone and rag collector, \nformerly of MilIbank.  With this lady (who assisted in the \nbusiness) he lived in great domestic happiness, only chequered by \nthose little storms which serve to clear the atmosphere of wedlock, \nand brighten its horizon.  In some of these gusts of bad weather, \nMr Tappertit would, in the assertion of his prerogative, so far \nforget himself, as to correct his lady with a brush, or boot, or \nshoe; while she (but only in extreme cases) would retaliate by \ntaking off his legs, and leaving him exposed to the derision of \nthose urchins who delight in mischief.\n\nMiss Miggs, baffled in all her schemes, matrimonial and otherwise, \nand cast upon a thankless, undeserving world, turned very sharp and \nsour; and did at length become so acid, and did so pinch and slap \nand tweak the hair and noses of the youth of Golden Lion Court, \nthat she was by one consent expelled that sanctuary, and desired to \nbless some other spot of earth, in preference.  It chanced at that \nmoment, that the justices of the peace for Middlesex proclaimed by \npublic placard that they stood in need of a female turnkey for the \nCounty Bridewell, and appointed a day and hour for the inspection \nof candidates.  Miss Miggs attending at the time appointed, was \ninstantly chosen and selected from one hundred and twenty-four \ncompetitors, and at once promoted to the office; which she held \nuntil her decease, more than thirty years afterwards, remaining \nsingle all that time.  It was observed of this lady that while she \nwas inflexible and grim to all her female flock, she was \nparticularly so to those who could establish any claim to beauty: \nand it was often remarked as a proof of her indomitable virtue and \nsevere chastity, that to such as had been frail she showed no \nmercy; always falling upon them on the slightest occasion, or on no \noccasion at all, with the fullest measure of her wrath.  Among \nother useful inventions which she practised upon this class of \noffenders and bequeathed to posterity, was the art of inflicting an \nexquisitely vicious poke or dig with the wards of a key in the \nsmall of the back, near the spine.  She likewise originated a mode \nof treading by accident (in pattens) on such as had small feet; \nalso very remarkable for its ingenuity, and previously quite \nunknown.\n\nIt was not very long, you may be sure, before Joe Willet and Dolly \nVarden were made husband and wife, and with a handsome sum in bank \n(for the locksmith could afford to give his daughter a good dowry), \nreopened the Maypole.  It was not very long, you may be sure, \nbefore a red-faced little boy was seen staggering about the Maypole \npassage, and kicking up his heels on the green before the door.  It \nwas not very long, counting by years, before there was a red-faced \nlittle girl, another red-faced little boy, and a whole troop of \ngirls and boys: so that, go to Chigwell when you would, there would \nsurely be seen, either in the village street, or on the green, or \nfrolicking in the farm-yard--for it was a farm now, as well as a \ntavern--more small Joes and small Dollys than could be easily \ncounted.  It was not a very long time before these appearances \nensued; but it WAS a VERY long time before Joe looked five years \nolder, or Dolly either, or the locksmith either, or his wife \neither: for cheerfulness and content are great beautifiers, and \nare famous preservers of youthful looks, depend upon it.\n\nIt was a long time, too, before there was such a country inn as the \nMaypole, in all England: indeed it is a great question whether \nthere has ever been such another to this hour, or ever will be.  It \nwas a long time too--for Never, as the proverb says, is a long day--\nbefore they forgot to have an interest in wounded soldiers at the \nMaypole, or before Joe omitted to refresh them, for the sake of his \nold campaign; or before the serjeant left off looking in there, now \nand then; or before they fatigued themselves, or each other, by \ntalking on these occasions of battles and sieges, and hard weather \nand hard service, and a thousand things belonging to a soldier's \nlife.  As to the great silver snuff-box which the King sent Joe \nwith his own hand, because of his conduct in the Riots, what guest \never went to the Maypole without putting finger and thumb into that \nbox, and taking a great pinch, though he had never taken a pinch of \nsnuff before, and almost sneezed himself into convulsions even \nthen?  As to the purple-faced vintner, where is the man who lived \nin those times and never saw HIM at the Maypole: to all appearance \nas much at home in the best room, as if he lived there?  And as to \nthe feastings and christenings, and revellings at Christmas, and \ncelebrations of birthdays, wedding-days, and all manner of days, \nboth at the Maypole and the Golden Key,--if they are not notorious, \nwhat facts are?\n\nMr Willet the elder, having been by some extraordinary means \npossessed with the idea that Joe wanted to be married, and that it \nwould be well for him, his father, to retire into private life, and \nenable him to live in comfort, took up his abode in a small cottage \nat Chigwell; where they widened and enlarged the fireplace for him, \nhung up the boiler, and furthermore planted in the little garden \noutside the front-door, a fictitious Maypole; so that he was quite \nat home directly.  To this, his new habitation, Tom Cobb, Phil \nParkes, and Solomon Daisy went regularly every night: and in the \nchimney-corner, they all four quaffed, and smoked, and prosed, and \ndozed, as they had done of old.  It being accidentally discovered \nafter a short time that Mr Willet still appeared to consider \nhimself a landlord by profession, Joe provided him with a slate, \nupon which the old man regularly scored up vast accounts for meat, \ndrink, and tobacco.  As he grew older this passion increased upon \nhim; and it became his delight to chalk against the name of each of \nhis cronies a sum of enormous magnitude, and impossible to be paid: \nand such was his secret joy in these entries, that he would be \nperpetually seen going behind the door to look at them, and coming \nforth again, suffused with the liveliest satisfaction.\n\nHe never recovered the surprise the Rioters had given him, and \nremained in the same mental condition down to the last moment of \nhis life.  It was like to have been brought to a speedy \ntermination by the first sight of his first grandchild, which \nappeared to fill him with the belief that some alarming miracle had \nhappened to Joe.  Being promptly blooded, however, by a skilful \nsurgeon, he rallied; and although the doctors all agreed, on his \nbeing attacked with symptoms of apoplexy six months afterwards, \nthat he ought to die, and took it very ill that he did not, he \nremained alive--possibly on account of his constitutional slowness--\nfor nearly seven years more, when he was one morning found \nspeechless in his bed.  He lay in this state, free from all tokens \nof uneasiness, for a whole week, when he was suddenly restored to \nconsciousness by hearing the nurse whisper in his son's ear that he \nwas going.  'I'm a-going, Joseph,' said Mr Willet, turning round \nupon the instant, 'to the Salwanners'--and immediately gave up \nthe ghost.\n\nHe left a large sum of money behind him; even more than he was \nsupposed to have been worth, although the neighbours, according to \nthe custom of mankind in calculating the wealth that other people \nought to have saved, had estimated his property in good round \nnumbers.  Joe inherited the whole; so that he became a man of great \nconsequence in those parts, and was perfectly independent.\n\nSome time elapsed before Barnaby got the better of the shock he had \nsustained, or regained his old health and gaiety.  But he recovered \nby degrees: and although he could never separate his condemnation \nand escape from the idea of a terrific dream, he became, in other \nrespects, more rational.  Dating from the time of his recovery, he \nhad a better memory and greater steadiness of purpose; but a dark \ncloud overhung his whole previous existence, and never cleared \naway.\n\nHe was not the less happy for this, for his love of freedom and \ninterest in all that moved or grew, or had its being in the \nelements, remained to him unimpaired.  He lived with his mother on \nthe Maypole farm, tending the poultry and the cattle, working in a \ngarden of his own, and helping everywhere.  He was known to every \nbird and beast about the place, and had a name for every one.  \nNever was there a lighter-hearted husbandman, a creature more \npopular with young and old, a blither or more happy soul than \nBarnaby; and though he was free to ramble where he would, he never \nquitted Her, but was for evermore her stay and comfort.\n\nIt was remarkable that although he had that dim sense of the past, \nhe sought out Hugh's dog, and took him under his care; and that he \nnever could be tempted into London.  When the Riots were many years \nold, and Edward and his wife came back to England with a family \nalmost as numerous as Dolly's, and one day appeared at the Maypole \nporch, he knew them instantly, and wept and leaped for joy.  But \nneither to visit them, nor on any other pretence, no matter how \nfull of promise and enjoyment, could he be persuaded to set foot in \nthe streets: nor did he ever conquer this repugnance or look upon \nthe town again.\n\nGrip soon recovered his looks, and became as glossy and sleek as \never.  But he was profoundly silent.  Whether he had forgotten the \nart of Polite Conversation in Newgate, or had made a vow in those \ntroubled times to forego, for a period, the display of his \naccomplishments, is matter of uncertainty; but certain it is that \nfor a whole year he never indulged in any other sound than a grave, \ndecorous croak.  At the expiration of that term, the morning being \nvery bright and sunny, he was heard to address himself to the \nhorses in the stable, upon the subject of the Kettle, so often \nmentioned in these pages; and before the witness who overheard him \ncould run into the house with the intelligence, and add to it upon \nhis solemn affirmation the statement that he had heard him laugh, \nthe bird himself advanced with fantastic steps to the very door of \nthe bar, and there cried, 'I'm a devil, I'm a devil, I'm a devil!' \nwith extraordinary rapture.\n\nFrom that period (although he was supposed to be much affected by \nthe death of Mr Willet senior), he constantly practised and \nimproved himself in the vulgar tongue; and, as he was a mere infant \nfor a raven when Barnaby was grey, he has very probably gone on \ntalking to the present time.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of Barnaby Rudge, by Charles Dickens\n\n*The Project Gutenberg Etext of The Chimes, by Charles Dickens*\n#8 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nThe Chimes\n\nby Charles Dickens\n\nSeptember, 1996  [Etext #653]\n\n\n*The Project Gutenberg Etext of The Chimes, by Charles Dickens*\n*****This file should be named tchms11.txt or tchms11.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, tchms11.txt.\nVERSIONS based on separate sources get new LETTER, tchms10a.txt.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThe Chimes by Charles Dickens\nScanned and proofed by David Price\nemail ccx074@coventry.ac.uk\n\n\n\n\n\nThe Chimes\n\n\n\n\nCHAPTER I - First Quarter.\n\n\n\nHERE are not many people - and as it is desirable that a story-\nteller and a story-reader should establish a mutual understanding\nas soon as possible, I beg it to be noticed that I confine this\nobservation neither to young people nor to little people, but\nextend it to all conditions of people:  little and big, young and\nold:  yet growing up, or already growing down again - there are\nnot, I say, many people who would care to sleep in a church.  I\ndon't mean at sermon-time in warm weather (when the thing has\nactually been done, once or twice), but in the night, and alone.  A\ngreat multitude of persons will be violently astonished, I know, by\nthis position, in the broad bold Day.  But it applies to Night.  It\nmust be argued by night, and I will undertake to maintain it\nsuccessfully on any gusty winter's night appointed for the purpose,\nwith any one opponent chosen from the rest, who will meet me singly\nin an old churchyard, before an old church-door; and will\npreviously empower me to lock him in, if needful to his\nsatisfaction, until morning.\n\nFor the night-wind has a dismal trick of wandering round and round\na building of that sort, and moaning as it goes; and of trying,\nwith its unseen hand, the windows and the doors; and seeking out\nsome crevices by which to enter.  And when it has got in; as one\nnot finding what it seeks, whatever that may be, it wails and howls\nto issue forth again:  and not content with stalking through the\naisles, and gliding round and round the pillars, and tempting the\ndeep organ, soars up to the roof, and strives to rend the rafters:\nthen flings itself despairingly upon the stones below, and passes,\nmuttering, into the vaults.  Anon, it comes up stealthily, and\ncreeps along the walls, seeming to read, in whispers, the\nInscriptions sacred to the Dead.  At some of these, it breaks out\nshrilly, as with laughter; and at others, moans and cries as if it\nwere lamenting.  It has a ghostly sound too, lingering within the\naltar; where it seems to chaunt, in its wild way, of Wrong and\nMurder done, and false Gods worshipped, in defiance of the Tables\nof the Law, which look so fair and smooth, but are so flawed and\nbroken.  Ugh!  Heaven preserve us, sitting snugly round the fire!\nIt has an awful voice, that wind at Midnight, singing in a church!\n\nBut, high up in the steeple!  There the foul blast roars and\nwhistles!  High up in the steeple, where it is free to come and go\nthrough many an airy arch and loophole, and to twist and twine\nitself about the giddy stair, and twirl the groaning weathercock,\nand make the very tower shake and shiver!  High up in the steeple,\nwhere the belfry is, and iron rails are ragged with rust, and\nsheets of lead and copper, shrivelled by the changing weather,\ncrackle and heave beneath the unaccustomed tread; and birds stuff\nshabby nests into corners of old oaken joists and beams; and dust\ngrows old and grey; and speckled spiders, indolent and fat with\nlong security, swing idly to and fro in the vibration of the bells,\nand never loose their hold upon their thread-spun castles in the\nair, or climb up sailor-like in quick alarm, or drop upon the\nground and ply a score of nimble legs to save one life!  High up in\nthe steeple of an old church, far above the light and murmur of the\ntown and far below the flying clouds that shadow it, is the wild\nand dreary place at night:  and high up in the steeple of an old\nchurch, dwelt the Chimes I tell of.\n\nThey were old Chimes, trust me.  Centuries ago, these Bells had\nbeen baptized by bishops:  so many centuries ago, that the register\nof their baptism was lost long, long before the memory of man, and\nno one knew their names.  They had had their Godfathers and\nGodmothers, these Bells (for my own part, by the way, I would\nrather incur the responsibility of being Godfather to a Bell than a\nBoy), and had their silver mugs no doubt, besides.  But Time had\nmowed down their sponsors, and Henry the Eighth had melted down\ntheir mugs; and they now hung, nameless and mugless, in the church-\ntower.\n\nNot speechless, though.  Far from it.  They had clear, loud, lusty,\nsounding voices, had these Bells; and far and wide they might be\nheard upon the wind.  Much too sturdy Chimes were they, to be\ndependent on the pleasure of the wind, moreover; for, fighting\ngallantly against it when it took an adverse whim, they would pour\ntheir cheerful notes into a listening ear right royally; and bent\non being heard on stormy nights, by some poor mother watching a\nsick child, or some lone wife whose husband was at sea, they had\nbeen sometimes known to beat a blustering Nor' Wester; aye, 'all to\nfits,' as Toby Veck said; - for though they chose to call him\nTrotty Veck, his name was Toby, and nobody could make it anything\nelse either (except Tobias) without a special act of parliament; he\nhaving been as lawfully christened in his day as the Bells had been\nin theirs, though with not quite so much of solemnity or public\nrejoicing.\n\nFor my part, I confess myself of Toby Veck's belief, for I am sure\nhe had opportunities enough of forming a correct one.  And whatever\nToby Veck said, I say.  And I take my stand by Toby Veck, although\nhe DID stand all day long (and weary work it was) just outside the\nchurch-door.  In fact he was a ticket-porter, Toby Veck, and waited\nthere for jobs.\n\nAnd a breezy, goose-skinned, blue-nosed, red-eyed, stony-toed,\ntooth-chattering place it was, to wait in, in the winter-time, as\nToby Veck well knew.  The wind came tearing round the corner -\nespecially the east wind - as if it had sallied forth, express,\nfrom the confines of the earth, to have a blow at Toby.  And\noftentimes it seemed to come upon him sooner than it had expected,\nfor bouncing round the corner, and passing Toby, it would suddenly\nwheel round again, as if it cried 'Why, here he is!'  Incontinently\nhis little white apron would be caught up over his head like a\nnaughty boy's garments, and his feeble little cane would be seen to\nwrestle and struggle unavailingly in his hand, and his legs would\nundergo tremendous agitation, and Toby himself all aslant, and\nfacing now in this direction, now in that, would be so banged and\nbuffeted, and to touzled, and worried, and hustled, and lifted off\nhis feet, as to render it a state of things but one degree removed\nfrom a positive miracle, that he wasn't carried up bodily into the\nair as a colony of frogs or snails or other very portable creatures\nsometimes are, and rained down again, to the great astonishment of\nthe natives, on some strange corner of the world where ticket-\nporters are unknown.\n\nBut, windy weather, in spite of its using him so roughly, was,\nafter all, a sort of holiday for Toby.  That's the fact.  He didn't\nseem to wait so long for a sixpence in the wind, as at other times;\nthe having to fight with that boisterous element took off his\nattention, and quite freshened him up, when he was getting hungry\nand low-spirited.  A hard frost too, or a fall of snow, was an\nEvent; and it seemed to do him good, somehow or other - it would\nhave been hard to say in what respect though, Toby!  So wind and\nfrost and snow, and perhaps a good stiff storm of hail, were Toby\nVeck's red-letter days.\n\nWet weather was the worst; the cold, damp, clammy wet, that wrapped\nhim up like a moist great-coat - the only kind of great-coat Toby\nowned, or could have added to his comfort by dispensing with.  Wet\ndays, when the rain came slowly, thickly, obstinately down; when\nthe street's throat, like his own, was choked with mist; when\nsmoking umbrellas passed and re-passed, spinning round and round\nlike so many teetotums, as they knocked against each other on the\ncrowded footway, throwing off a little whirlpool of uncomfortable\nsprinklings; when gutters brawled and waterspouts were full and\nnoisy; when the wet from the projecting stones and ledges of the\nchurch fell drip, drip, drip, on Toby, making the wisp of straw on\nwhich he stood mere mud in no time; those were the days that tried\nhim.  Then, indeed, you might see Toby looking anxiously out from\nhis shelter in an angle of the church wall - such a meagre shelter\nthat in summer time it never cast a shadow thicker than a good-\nsized walking stick upon the sunny pavement - with a disconsolate\nand lengthened face.  But coming out, a minute afterwards, to warm\nhimself by exercise, and trotting up and down some dozen times, he\nwould brighten even then, and go back more brightly to his niche.\n\nThey called him Trotty from his pace, which meant speed if it\ndidn't make it.  He could have walked faster perhaps; most likely;\nbut rob him of his trot, and Toby would have taken to his bed and\ndied.  It bespattered him with mud in dirty weather; it cost him a\nworld of trouble; he could have walked with infinitely greater\nease; but that was one reason for his clinging to it so\ntenaciously.  A weak, small, spare old man, he was a very Hercules,\nthis Toby, in his good intentions.  He loved to earn his money.  He\ndelighted to believe - Toby was very poor, and couldn't well afford\nto part with a delight - that he was worth his salt.  With a\nshilling or an eighteenpenny message or small parcel in hand, his\ncourage always high, rose higher.  As he trotted on, he would call\nout to fast Postmen ahead of him, to get out of the way; devoutly\nbelieving that in the natural course of things he must inevitably\novertake and run them down; and he had perfect faith - not often\ntested - in his being able to carry anything that man could lift.\n\nThus, even when he came out of his nook to warm himself on a wet\nday, Toby trotted.  Making, with his leaky shoes, a crooked line of\nslushy footprints in the mire; and blowing on his chilly hands and\nrubbing them against each other, poorly defended from the searching\ncold by threadbare mufflers of grey worsted, with a private\napartment only for the thumb, and a common room or tap for the rest\nof the fingers; Toby, with his knees bent and his cane beneath his\narm, still trotted.  Falling out into the road to look up at the\nbelfry when the Chimes resounded, Toby trotted still.\n\nHe made this last excursion several times a day, for they were\ncompany to him; and when he heard their voices, he had an interest\nin glancing at their lodging-place, and thinking how they were\nmoved, and what hammers beat upon them.  Perhaps he was the more\ncurious about these Bells, because there were points of resemblance\nbetween themselves and him.  They hung there, in all weathers, with\nthe wind and rain driving in upon them; facing only the outsides of\nall those houses; never getting any nearer to the blazing fires\nthat gleamed and shone upon the windows, or came puffing out of the\nchimney tops; and incapable of participation in any of the good\nthings that were constantly being handled, through the street doors\nand the area railings, to prodigious cooks.  Faces came and went at\nmany windows:  sometimes pretty faces, youthful faces, pleasant\nfaces:  sometimes the reverse:  but Toby knew no more (though he\noften speculated on these trifles, standing idle in the streets)\nwhence they came, or where they went, or whether, when the lips\nmoved, one kind word was said of him in all the year, than did the\nChimes themselves.\n\nToby was not a casuist - that he knew of, at least - and I don't\nmean to say that when he began to take to the Bells, and to knit up\nhis first rough acquaintance with them into something of a closer\nand more delicate woof, he passed through these considerations one\nby one, or held any formal review or great field-day in his\nthoughts.  But what I mean to say, and do say is, that as the\nfunctions of Toby's body, his digestive organs for example, did of\ntheir own cunning, and by a great many operations of which he was\naltogether ignorant, and the knowledge of which would have\nastonished him very much, arrive at a certain end; so his mental\nfaculties, without his privity or concurrence, set all these wheels\nand springs in motion, with a thousand others, when they worked to\nbring about his liking for the Bells.\n\nAnd though I had said his love, I would not have recalled the word,\nthough it would scarcely have expressed his complicated feeling.\nFor, being but a simple man, he invested them with a strange and\nsolemn character.  They were so mysterious, often heard and never\nseen; so high up, so far off, so full of such a deep strong melody,\nthat he regarded them with a species of awe; and sometimes when he\nlooked up at the dark arched windows in the tower, he half expected\nto be beckoned to by something which was not a Bell, and yet was\nwhat he had heard so often sounding in the Chimes.  For all this,\nToby scouted with indignation a certain flying rumour that the\nChimes were haunted, as implying the possibility of their being\nconnected with any Evil thing.  In short, they were very often in\nhis ears, and very often in his thoughts, but always in his good\nopinion; and he very often got such a crick in his neck by staring\nwith his mouth wide open, at the steeple where they hung, that he\nwas fain to take an extra trot or two, afterwards, to cure it.\n\nThe very thing he was in the act of doing one cold day, when the\nlast drowsy sound of Twelve o'clock, just struck, was humming like\na melodious monster of a Bee, and not by any means a busy bee, all\nthrough the steeple!\n\n'Dinner-time, eh!' said Toby, trotting up and down before the\nchurch.  'Ah!'\n\nToby's nose was very red, and his eyelids were very red, and he\nwinked very much, and his shoulders were very near his ears, and\nhis legs were very stiff, and altogether he was evidently a long\nway upon the frosty side of cool.\n\n'Dinner-time, eh!' repeated Toby, using his right-hand muffler like\nan infantine boxing-glove, and punishing his chest for being cold.\n'Ah-h-h-h!'\n\nHe took a silent trot, after that, for a minute or two.\n\n'There's nothing,' said Toby, breaking forth afresh - but here he\nstopped short in his trot, and with a face of great interest and\nsome alarm, felt his nose carefully all the way up.  It was but a\nlittle way (not being much of a nose) and he had soon finished.\n\n'I thought it was gone,' said Toby, trotting off again.  'It's all\nright, however.  I am sure I couldn't blame it if it was to go.  It\nhas a precious hard service of it in the bitter weather, and\nprecious little to look forward to; for I don't take snuff myself.\nIt's a good deal tried, poor creetur, at the best of times; for\nwhen it DOES get hold of a pleasant whiff or so (which an't too\noften) it's generally from somebody else's dinner, a-coming home\nfrom the baker's.'\n\nThe reflection reminded him of that other reflection, which he had\nleft unfinished.\n\n'There's nothing,' said Toby, 'more regular in its coming round\nthan dinner-time, and nothing less regular in its coming round than\ndinner.  That's the great difference between 'em.  It's took me a\nlong time to find it out.  I wonder whether it would be worth any\ngentleman's while, now, to buy that obserwation for the Papers; or\nthe Parliament!'\n\nToby was only joking, for he gravely shook his head in self-\ndepreciation.\n\n'Why! Lord!' said Toby.  'The Papers is full of obserwations as it\nis; and so's the Parliament.  Here's last week's paper, now;'\ntaking a very dirty one from his pocket, and holding it from him at\narm's length; 'full of obserwations!  Full of obserwations!  I like\nto know the news as well as any man,' said Toby, slowly; folding it\na little smaller, and putting it in his pocket again:  'but it\nalmost goes against the grain with me to read a paper now.  It\nfrightens me almost.  I don't know what we poor people are coming\nto.  Lord send we may be coming to something better in the New Year\nnigh upon us!'\n\n'Why, father, father!' said a pleasant voice, hard by.\n\nBut Toby, not hearing it, continued to trot backwards and forwards:\nmusing as he went, and talking to himself.\n\n'It seems as if we can't go right, or do right, or be righted,'\nsaid Toby.  'I hadn't much schooling, myself, when I was young; and\nI can't make out whether we have any business on the face of the\nearth, or not.  Sometimes I think we must have - a little; and\nsometimes I think we must be intruding.  I get so puzzled sometimes\nthat I am not even able to make up my mind whether there is any\ngood at all in us, or whether we are born bad.  We seem to be\ndreadful things; we seem to give a deal of trouble; we are always\nbeing complained of and guarded against.  One way or other, we fill\nthe papers.  Talk of a New Year!' said Toby, mournfully.  'I can\nbear up as well as another man at most times; better than a good\nmany, for I am as strong as a lion, and all men an't; but supposing\nit should really be that we have no right to a New Year - supposing\nwe really ARE intruding - '\n\n'Why, father, father!' said the pleasant voice again.\n\nToby heard it this time; started; stopped; and shortening his\nsight, which had been directed a long way off as seeking the\nenlightenment in the very heart of the approaching year, found\nhimself face to face with his own child, and looking close into her\neyes.\n\nBright eyes they were.  Eyes that would bear a world of looking in,\nbefore their depth was fathomed.  Dark eyes, that reflected back\nthe eyes which searched them; not flashingly, or at the owner's\nwill, but with a clear, calm, honest, patient radiance, claiming\nkindred with that light which Heaven called into being.  Eyes that\nwere beautiful and true, and beaming with Hope.  With Hope so young\nand fresh; with Hope so buoyant, vigorous, and bright, despite the\ntwenty years of work and poverty on which they had looked; that\nthey became a voice to Trotty Veck, and said:  'I think we have\nsome business here - a little!'\n\nTrotty kissed the lips belonging to the eyes, and squeezed the\nblooming face between his hands.\n\n'Why, Pet,' said Trotty.  'What's to do?  I didn't expect you to-\nday, Meg.'\n\n'Neither did I expect to come, father,' cried the girl, nodding her\nhead and smiling as she spoke.  'But here I am!  And not alone; not\nalone!'\n\n'Why you don't mean to say,' observed Trotty, looking curiously at\na covered basket which she carried in her hand, 'that you - '\n\n'Smell it, father dear,' said Meg.  'Only smell it!'\n\nTrotty was going to lift up the cover at once, in a great hurry,\nwhen she gaily interposed her hand.\n\n'No, no, no,' said Meg, with the glee of a child.  'Lengthen it out\na little.  Let me just lift up the corner; just the lit-tle ti-ny\ncor-ner, you know,' said Meg, suiting the action to the word with\nthe utmost gentleness, and speaking very softly, as if she were\nafraid of being overheard by something inside the basket; 'there.\nNow.  What's that?'\n\nToby took the shortest possible sniff at the edge of the basket,\nand cried out in a rapture:\n\n'Why, it's hot!'\n\n'It's burning hot!' cried Meg.  'Ha, ha, ha!  It's scalding hot!'\n\n'Ha, ha, ha!' roared Toby, with a sort of kick.  'It's scalding\nhot!'\n\n'But what is it, father?' said Meg.  'Come.  You haven't guessed\nwhat it is.  And you must guess what it is.  I can't think of\ntaking it out, till you guess what it is.  Don't be in such a\nhurry!  Wait a minute!  A little bit more of the cover.  Now\nguess!'\n\nMeg was in a perfect fright lest he should guess right too soon;\nshrinking away, as she held the basket towards him; curling up her\npretty shoulders; stopping her ear with her hand, as if by so doing\nshe could keep the right word out of Toby's lips; and laughing\nsoftly the whole time.\n\nMeanwhile Toby, putting a hand on each knee, bent down his nose to\nthe basket, and took a long inspiration at the lid; the grin upon\nhis withered face expanding in the process, as if he were inhaling\nlaughing gas.\n\n'Ah!  It's very nice,' said Toby.  'It an't - I suppose it an't\nPolonies?'\n\n'No, no, no!' cried Meg, delighted.  'Nothing like Polonies!'\n\n'No,' said Toby, after another sniff.  'It's - it's mellower than\nPolonies.  It's very nice.  It improves every moment.  It's too\ndecided for Trotters.  An't it?'\n\nMeg was in an ecstasy.  He could not have gone wider of the mark\nthan Trotters - except Polonies.\n\n'Liver?' said Toby, communing with himself.  'No.  There's a\nmildness about it that don't answer to liver.  Pettitoes?  No.  It\nan't faint enough for pettitoes.  It wants the stringiness of\nCocks' heads.  And I know it an't sausages.  I'll tell you what it\nis.  It's chitterlings!'\n\n'No, it an't!' cried Meg, in a burst of delight.  'No, it an't!'\n\n'Why, what am I a-thinking of!' said Toby, suddenly recovering a\nposition as near the perpendicular as it was possible for him to\nassume.  'I shall forget my own name next.  It's tripe!'\n\nTripe it was; and Meg, in high joy, protested he should say, in\nhalf a minute more, it was the best tripe ever stewed.\n\n'And so,' said Meg, busying herself exultingly with the basket,\n'I'll lay the cloth at once, father; for I have brought the tripe\nin a basin, and tied the basin up in a pocket-handkerchief; and if\nI like to be proud for once, and spread that for a cloth, and call\nit a cloth, there's no law to prevent me; is there, father?'\n\n'Not that I know of, my dear,' said Toby.  'But they're always a-\nbringing up some new law or other.'\n\n'And according to what I was reading you in the paper the other\nday, father; what the Judge said, you know; we poor people are\nsupposed to know them all.  Ha ha!  What a mistake!  My goodness\nme, how clever they think us!'\n\n'Yes, my dear,' cried Trotty; 'and they'd be very fond of any one\nof us that DID know 'em all.  He'd grow fat upon the work he'd get,\nthat man, and be popular with the gentlefolks in his neighbourhood.\nVery much so!'\n\n'He'd eat his dinner with an appetite, whoever he was, if it smelt\nlike this,' said Meg, cheerfully.  'Make haste, for there's a hot\npotato besides, and half a pint of fresh-drawn beer in a bottle.\nWhere will you dine, father?  On the Post, or on the Steps?  Dear,\ndear, how grand we are.  Two places to choose from!'\n\n'The steps to-day, my Pet,' said Trotty.  'Steps in dry weather.\nPost in wet.  There's a greater conveniency in the steps at all\ntimes, because of the sitting down; but they're rheumatic in the\ndamp.'\n\n'Then here,' said Meg, clapping her hands, after a moment's bustle;\n'here it is, all ready!  And beautiful it looks!  Come, father.\nCome!'\n\nSince his discovery of the contents of the basket, Trotty had been\nstanding looking at her - and had been speaking too - in an\nabstracted manner, which showed that though she was the object of\nhis thoughts and eyes, to the exclusion even of tripe, he neither\nsaw nor thought about her as she was at that moment, but had before\nhim some imaginary rough sketch or drama of her future life.\nRoused, now, by her cheerful summons, he shook off a melancholy\nshake of the head which was just coming upon him, and trotted to\nher side.  As he was stooping to sit down, the Chimes rang.\n\n'Amen!' said Trotty, pulling off his hat and looking up towards\nthem.\n\n'Amen to the Bells, father?' cried Meg.\n\n'They broke in like a grace, my dear,' said Trotty, taking his\nseat.  'They'd say a good one, I am sure, if they could.  Many's\nthe kind thing they say to me.'\n\n'The Bells do, father!' laughed Meg, as she set the basin, and a\nknife and fork, before him.  'Well!'\n\n'Seem to, my Pet,' said Trotty, falling to with great vigour.  'And\nwhere's the difference?  If I hear 'em, what does it matter whether\nthey speak it or not?  Why bless you, my dear,' said Toby, pointing\nat the tower with his fork, and becoming more animated under the\ninfluence of dinner, 'how often have I heard them bells say, \"Toby\nVeck, Toby Veck, keep a good heart, Toby!  Toby Veck, Toby Veck,\nkeep a good heart, Toby!\"  A million times?  More!'\n\n'Well, I never!' cried Meg.\n\nShe had, though - over and over again.  For it was Toby's constant\ntopic.\n\n'When things is very bad,' said Trotty; 'very bad indeed, I mean;\nalmost at the worst; then it's \"Toby Veck, Toby Veck, job coming\nsoon, Toby!  Toby Veck, Toby Veck, job coming soon, Toby!\"  That\nway.'\n\n'And it comes - at last, father,' said Meg, with a touch of sadness\nin her pleasant voice.\n\n'Always,' answered the unconscious Toby.  'Never fails.'\n\nWhile this discourse was holding, Trotty made no pause in his\nattack upon the savoury meat before him, but cut and ate, and cut\nand drank, and cut and chewed, and dodged about, from tripe to hot\npotato, and from hot potato back again to tripe, with an unctuous\nand unflagging relish.  But happening now to look all round the\nstreet - in case anybody should be beckoning from any door or\nwindow, for a porter - his eyes, in coming back again, encountered\nMeg:  sitting opposite to him, with her arms folded and only busy\nin watching his progress with a smile of happiness.\n\n'Why, Lord forgive me!' said Trotty, dropping his knife and fork.\n'My dove!  Meg! why didn't you tell me what a beast I was?'\n\n'Father?'\n\n'Sitting here,' said Trotty, in penitent explanation, 'cramming,\nand stuffing, and gorging myself; and you before me there, never so\nmuch as breaking your precious fast, nor wanting to, when - '\n\n'But I have broken it, father,' interposed his daughter, laughing,\n'all to bits.  I have had my dinner.'\n\n'Nonsense,' said Trotty.  'Two dinners in one day!  It an't\npossible!  You might as well tell me that two New Year's Days will\ncome together, or that I have had a gold head all my life, and\nnever changed it.'\n\n'I have had my dinner, father, for all that,' said Meg, coming\nnearer to him.  'And if you'll go on with yours, I'll tell you how\nand where; and how your dinner came to be brought; and - and\nsomething else besides.'\n\nToby still appeared incredulous; but she looked into his face with\nher clear eyes, and laying her hand upon his shoulder, motioned him\nto go on while the meat was hot.  So Trotty took up his knife and\nfork again, and went to work.  But much more slowly than before,\nand shaking his head, as if he were not at all pleased with\nhimself.\n\n'I had my dinner, father,' said Meg, after a little hesitation,\n'with - with Richard.  His dinner-time was early; and as he brought\nhis dinner with him when he came to see me, we - we had it\ntogether, father.'\n\nTrotty took a little beer, and smacked his lips.  Then he said,\n'Oh!' - because she waited.\n\n'And Richard says, father - ' Meg resumed.  Then stopped.\n\n'What does Richard say, Meg?' asked Toby.\n\n'Richard says, father - '  Another stoppage.\n\n'Richard's a long time saying it,' said Toby.\n\n'He says then, father,' Meg continued, lifting up her eyes at last,\nand speaking in a tremble, but quite plainly; 'another year is\nnearly gone, and where is the use of waiting on from year to year,\nwhen it is so unlikely we shall ever be better off than we are now?\nHe says we are poor now, father, and we shall be poor then, but we\nare young now, and years will make us old before we know it.  He\nsays that if we wait:  people in our condition:  until we see our\nway quite clearly, the way will be a narrow one indeed - the common\nway - the Grave, father.'\n\nA bolder man than Trotty Veck must needs have drawn upon his\nboldness largely, to deny it.  Trotty held his peace.\n\n'And how hard, father, to grow old, and die, and think we might\nhave cheered and helped each other!  How hard in all our lives to\nlove each other; and to grieve, apart, to see each other working,\nchanging, growing old and grey.  Even if I got the better of it,\nand forgot him (which I never could), oh father dear, how hard to\nhave a heart so full as mine is now, and live to have it slowly\ndrained out every drop, without the recollection of one happy\nmoment of a woman's life, to stay behind and comfort me, and make\nme better!'\n\nTrotty sat quite still.  Meg dried her eyes, and said more gaily:\nthat is to say, with here a laugh, and there a sob, and here a\nlaugh and sob together:\n\n'So Richard says, father; as his work was yesterday made certain\nfor some time to come, and as I love him, and have loved him full\nthree years - ah! longer than that, if he knew it! - will I marry\nhim on New Year's Day; the best and happiest day, he says, in the\nwhole year, and one that is almost sure to bring good fortune with\nit.  It's a short notice, father - isn't it? - but I haven't my\nfortune to be settled, or my wedding dresses to be made, like the\ngreat ladies, father, have I?  And he said so much, and said it in\nhis way; so strong and earnest, and all the time so kind and\ngentle; that I said I'd come and talk to you, father.  And as they\npaid the money for that work of mine this morning (unexpectedly, I\nam sure!) and as you have fared very poorly for a whole week, and\nas I couldn't help wishing there should be something to make this\nday a sort of holiday to you as well as a dear and happy day to me,\nfather, I made a little treat and brought it to surprise you.'\n\n'And see how he leaves it cooling on the step!' said another voice.\n\nIt was the voice of this same Richard, who had come upon them\nunobserved, and stood before the father and daughter; looking down\nupon them with a face as glowing as the iron on which his stout\nsledge-hammer daily rung.  A handsome, well-made, powerful\nyoungster he was; with eyes that sparkled like the red-hot\ndroppings from a furnace fire; black hair that curled about his\nswarthy temples rarely; and a smile - a smile that bore out Meg's\neulogium on his style of conversation.\n\n'See how he leaves it cooling on the step!' said Richard.  'Meg\ndon't know what he likes.  Not she!'\n\nTrotty, all action and enthusiasm, immediately reached up his hand\nto Richard, and was going to address him in great hurry, when the\nhouse-door opened without any warning, and a footman very nearly\nput his foot into the tripe.\n\n'Out of the ways here, will you!  You must always go and be a-\nsettin on our steps, must you!  You can't go and give a turn to\nnone of the neighbours never, can't you!  WILL you clear the road,\nor won't you?'\n\nStrictly speaking, the last question was irrelevant, as they had\nalready done it.\n\n'What's the matter, what's the matter!' said the gentleman for whom\nthe door was opened; coming out of the house at that kind of light-\nheavy pace - that peculiar compromise between a walk and a jog-trot\n- with which a gentleman upon the smooth down-hill of life, wearing\ncreaking boots, a watch-chain, and clean linen, MAY come out of his\nhouse:  not only without any abatement of his dignity, but with an\nexpression of having important and wealthy engagements elsewhere.\n'What's the matter!  What's the matter!'\n\n'You're always a-being begged, and prayed, upon your bended knees\nyou are,' said the footman with great emphasis to Trotty Veck, 'to\nlet our door-steps be.  Why don't you let 'em be?  CAN'T you let\n'em be?'\n\n'There!  That'll do, that'll do!' said the gentleman.  'Halloa\nthere!  Porter!' beckoning with his head to Trotty Veck.  'Come\nhere.  What's that?  Your dinner?'\n\n'Yes, sir,' said Trotty, leaving it behind him in a corner.\n\n'Don't leave it there,' exclaimed the gentleman.  'Bring it here,\nbring it here.  So!  This is your dinner, is it?'\n\n'Yes, sir,' repeated Trotty, looking with a fixed eye and a watery\nmouth, at the piece of tripe he had reserved for a last delicious\ntit-bit; which the gentleman was now turning over and over on the\nend of the fork.\n\nTwo other gentlemen had come out with him.  One was a low-spirited\ngentleman of middle age, of a meagre habit, and a disconsolate\nface; who kept his hands continually in the pockets of his scanty\npepper-and-salt trousers, very large and dog's-eared from that\ncustom; and was not particularly well brushed or washed.  The\nother, a full-sized, sleek, well-conditioned gentleman, in a blue\ncoat with bright buttons, and a white cravat.  This gentleman had a\nvery red face, as if an undue proportion of the blood in his body\nwere squeezed up into his head; which perhaps accounted for his\nhaving also the appearance of being rather cold about the heart.\n\nHe who had Toby's meat upon the fork, called to the first one by\nthe name of Filer; and they both drew near together.  Mr. Filer\nbeing exceedingly short-sighted, was obliged to go so close to the\nremnant of Toby's dinner before he could make out what it was, that\nToby's heart leaped up into his mouth.  But Mr. Filer didn't eat\nit.\n\n'This is a description of animal food, Alderman,' said Filer,\nmaking little punches in it with a pencil-case, 'commonly known to\nthe labouring population of this country, by the name of tripe.'\n\nThe Alderman laughed, and winked; for he was a merry fellow,\nAlderman Cute.  Oh, and a sly fellow too!  A knowing fellow.  Up to\neverything.  Not to be imposed upon.  Deep in the people's hearts!\nHe knew them, Cute did.  I believe you!\n\n'But who eats tripe?' said Mr. Filer, looking round.  'Tripe is\nwithout an exception the least economical, and the most wasteful\narticle of consumption that the markets of this country can by\npossibility produce.  The loss upon a pound of tripe has been found\nto be, in the boiling, seven-eights of a fifth more than the loss\nupon a pound of any other animal substance whatever.  Tripe is more\nexpensive, properly understood, than the hothouse pine-apple.\nTaking into account the number of animals slaughtered yearly within\nthe bills of mortality alone; and forming a low estimate of the\nquantity of tripe which the carcases of those animals, reasonably\nwell butchered, would yield; I find that the waste on that amount\nof tripe, if boiled, would victual a garrison of five hundred men\nfor five months of thirty-one days each, and a February over.  The\nWaste, the Waste!'\n\nTrotty stood aghast, and his legs shook under him.  He seemed to\nhave starved a garrison of five hundred men with his own hand.\n\n'Who eats tripe?' said Mr. Filer, warmly.  'Who eats tripe?'\n\nTrotty made a miserable bow.\n\n'You do, do you?' said Mr. Filer.  'Then I'll tell you something.\nYou snatch your tripe, my friend, out of the mouths of widows and\norphans.'\n\n'I hope not, sir,' said Trotty, faintly.  'I'd sooner die of want!'\n\n'Divide the amount of tripe before-mentioned, Alderman,' said Mr.\nFiler, 'by the estimated number of existing widows and orphans, and\nthe result will be one pennyweight of tripe to each.  Not a grain\nis left for that man.  Consequently, he's a robber.'\n\nTrotty was so shocked, that it gave him no concern to see the\nAlderman finish the tripe himself.  It was a relief to get rid of\nit, anyhow.\n\n'And what do you say?' asked the Alderman, jocosely, of the red-\nfaced gentleman in the blue coat.  'You have heard friend Filer.\nWhat do YOU SAY?'\n\n'What's it possible to say?' returned the gentleman.  'What IS to\nbe said?  Who can take any interest in a fellow like this,' meaning\nTrotty; 'in such degenerate times as these?  Look at him.  What an\nobject!  The good old times, the grand old times, the great old\ntimes!  THOSE were the times for a bold peasantry, and all that\nsort of thing.  Those were the times for every sort of thing, in\nfact.  There's nothing now-a-days.  Ah!' sighed the red-faced\ngentleman.  'The good old times, the good old times!'\n\nThe gentleman didn't specify what particular times he alluded to;\nnor did he say whether he objected to the present times, from a\ndisinterested consciousness that they had done nothing very\nremarkable in producing himself.\n\n'The good old times, the good old times,' repeated the gentleman.\n'What times they were!  They were the only times.  It's of no use\ntalking about any other times, or discussing what the people are in\nTHESE times.  You don't call these times, do you?  I don't.  Look\ninto Strutt's Costumes, and see what a Porter used to be, in any of\nthe good old English reigns.'\n\n'He hadn't, in his very best circumstances, a shirt to his back, or\na stocking to his foot; and there was scarcely a vegetable in all\nEngland for him to put into his mouth,' said Mr. Filer.  'I can\nprove it, by tables.'\n\nBut still the red-faced gentleman extolled the good old times, the\ngrand old times, the great old times.  No matter what anybody else\nsaid, he still went turning round and round in one set form of\nwords concerning them; as a poor squirrel turns and turns in its\nrevolving cage; touching the mechanism, and trick of which, it has\nprobably quite as distinct perceptions, as ever this red-faced\ngentleman had of his deceased Millennium.\n\nIt is possible that poor Trotty's faith in these very vague Old\nTimes was not entirely destroyed, for he felt vague enough at that\nmoment.  One thing, however, was plain to him, in the midst of his\ndistress; to wit, that however these gentlemen might differ in\ndetails, his misgivings of that morning, and of many other\nmornings, were well founded.  'No, no.  We can't go right or do\nright,' thought Trotty in despair.  'There is no good in us.  We\nare born bad!'\n\nBut Trotty had a father's heart within him; which had somehow got\ninto his breast in spite of this decree; and he could not bear that\nMeg, in the blush of her brief joy, should have her fortune read by\nthese wise gentlemen.  'God help her,' thought poor Trotty.  'She\nwill know it soon enough.'\n\nHe anxiously signed, therefore, to the young smith, to take her\naway.  But he was so busy, talking to her softly at a little\ndistance, that he only became conscious of this desire,\nsimultaneously with Alderman Cute.  Now, the Alderman had not yet\nhad his say, but HE was a philosopher, too - practical, though!\nOh, very practical - and, as he had no idea of losing any portion\nof his audience, he cried 'Stop!'\n\n'Now, you know,' said the Alderman, addressing his two friends,\nwith a self-complacent smile upon his face which was habitual to\nhim, 'I am a plain man, and a practical man; and I go to work in a\nplain practical way.  That's my way.  There is not the least\nmystery or difficulty in dealing with this sort of people if you\nonly understand 'em, and can talk to 'em in their own manner.  Now,\nyou Porter!  Don't you ever tell me, or anybody else, my friend,\nthat you haven't always enough to eat, and of the best; because I\nknow better.  I have tasted your tripe, you know, and you can't\n\"chaff\" me.  You understand what \"chaff\" means, eh?  That's the\nright word, isn't it?  Ha, ha, ha! Lord bless you,' said the\nAlderman, turning to his friends again, 'it's the easiest thing on\nearth to deal with this sort of people, if you understand 'em.'\n\nFamous man for the common people, Alderman Cute!  Never out of\ntemper with them!  Easy, affable, joking, knowing gentleman!\n\n'You see, my friend,' pursued the Alderman, 'there's a great deal\nof nonsense talked about Want - \"hard up,\" you know; that's the\nphrase, isn't it? ha! ha! ha! - and I intend to Put it Down.\nThere's a certain amount of cant in vogue about Starvation, and I\nmean to Put it Down.  That's all!  Lord bless you,' said the\nAlderman, turning to his friends again, 'you may Put Down anything\namong this sort of people, if you only know the way to set about\nit.'\n\nTrotty took Meg's hand and drew it through his arm.  He didn't seem\nto know what he was doing though.\n\n'Your daughter, eh?' said the Alderman, chucking her familiarly\nunder the chin.\n\nAlways affable with the working classes, Alderman Cute!  Knew what\npleased them!  Not a bit of pride!\n\n'Where's her mother?' asked that worthy gentleman.\n\n'Dead,' said Toby.  'Her mother got up linen; and was called to\nHeaven when She was born.'\n\n'Not to get up linen THERE, I suppose,' remarked the Alderman\npleasantly\n\nToby might or might not have been able to separate his wife in\nHeaven from her old pursuits.  But query:  If Mrs. Alderman Cute\nhad gone to Heaven, would Mr. Alderman Cute have pictured her as\nholding any state or station there?\n\n'And you're making love to her, are you?' said Cute to the young\nsmith.\n\n'Yes,' returned Richard quickly, for he was nettled by the\nquestion.  'And we are going to be married on New Year's Day.'\n\n'What do you mean!' cried Filer sharply.  'Married!'\n\n'Why, yes, we're thinking of it, Master,' said Richard.  'We're\nrather in a hurry, you see, in case it should be Put Down first.'\n\n'Ah!' cried Filer, with a groan.  'Put THAT down indeed, Alderman,\nand you'll do something.  Married!  Married!!  The ignorance of the\nfirst principles of political economy on the part of these people;\ntheir improvidence; their wickedness; is, by Heavens! enough to -\nNow look at that couple, will you!'\n\nWell?  They were worth looking at.  And marriage seemed as\nreasonable and fair a deed as they need have in contemplation.\n\n'A man may live to be as old as Methuselah,' said Mr. Filer, 'and\nmay labour all his life for the benefit of such people as those;\nand may heap up facts on figures, facts on figures, facts on\nfigures, mountains high and dry; and he can no more hope to\npersuade 'em that they have no right or business to be married,\nthan he can hope to persuade 'em that they have no earthly right or\nbusiness to be born.  And THAT we know they haven't.  We reduced it\nto a mathematical certainty long ago!'\n\nAlderman Cute was mightily diverted, and laid his right forefinger\non the side of his nose, as much as to say to both his friends,\n'Observe me, will you!  Keep your eye on the practical man!' - and\ncalled Meg to him.\n\n'Come here, my girl!' said Alderman Cute.\n\nThe young blood of her lover had been mounting, wrathfully, within\nthe last few minutes; and he was indisposed to let her come.  But,\nsetting a constraint upon himself, he came forward with a stride as\nMeg approached, and stood beside her.  Trotty kept her hand within\nhis arm still, but looked from face to face as wildly as a sleeper\nin a dream.\n\n'Now, I'm going to give you a word or two of good advice, my girl,'\nsaid the Alderman, in his nice easy way.  'It's my place to give\nadvice, you know, because I'm a Justice.  You know I'm a Justice,\ndon't you?'\n\nMeg timidly said, 'Yes.'  But everybody knew Alderman Cute was a\nJustice!  Oh dear, so active a Justice always!  Who such a mote of\nbrightness in the public eye, as Cute!\n\n'You are going to be married, you say,' pursued the Alderman.\n'Very unbecoming and indelicate in one of your sex!  But never mind\nthat.  After you are married, you'll quarrel with your husband and\ncome to be a distressed wife.  You may think not; but you will,\nbecause I tell you so.  Now, I give you fair warning, that I have\nmade up my mind to Put distressed wives Down.  So, don't be brought\nbefore me.  You'll have children - boys.  Those boys will grow up\nbad, of course, and run wild in the streets, without shoes and\nstockings.  Mind, my young friend!  I'll convict 'em summarily,\nevery one, for I am determined to Put boys without shoes and\nstockings, Down.  Perhaps your husband will die young (most likely)\nand leave you with a baby.  Then you'll be turned out of doors, and\nwander up and down the streets.  Now, don't wander near me, my\ndear, for I am resolved, to Put all wandering mothers Down.  All\nyoung mothers, of all sorts and kinds, it's my determination to Put\nDown.  Don't think to plead illness as an excuse with me; or babies\nas an excuse with me; for all sick persons and young children (I\nhope you know the church-service, but I'm afraid not) I am\ndetermined to Put Down.  And if you attempt, desperately, and\nungratefully, and impiously, and fraudulently attempt, to drown\nyourself, or hang yourself, I'll have no pity for you, for I have\nmade up my mind to Put all suicide Down!  If there is one thing,'\nsaid the Alderman, with his self-satisfied smile, 'on which I can\nbe said to have made up my mind more than on another, it is to Put\nsuicide Down.  So don't try it on.  That's the phrase, isn't it?\nHa, ha! now we understand each other.'\n\nToby knew not whether to be agonised or glad, to see that Meg had\nturned a deadly white, and dropped her lover's hand.\n\n'And as for you, you dull dog,' said the Alderman, turning with\neven increased cheerfulness and urbanity to the young smith, 'what\nare you thinking of being married for?  What do you want to be\nmarried for, you silly fellow?  If I was a fine, young, strapping\nchap like you, I should be ashamed of being milksop enough to pin\nmyself to a woman's apron-strings!  Why, she'll be an old woman\nbefore you're a middle-aged man!  And a pretty figure you'll cut\nthen, with a draggle-tailed wife and a crowd of squalling children\ncrying after you wherever you go!'\n\nO, he knew how to banter the common people, Alderman Cute!\n\n'There!  Go along with you,' said the Alderman, 'and repent.  Don't\nmake such a fool of yourself as to get married on New Year's Day.\nYou'll think very differently of it, long before next New Year's\nDay:  a trim young fellow like you, with all the girls looking\nafter you.  There!  Go along with you!'\n\nThey went along.  Not arm in arm, or hand in hand, or interchanging\nbright glances; but, she in tears; he, gloomy and down-looking.\nWere these the hearts that had so lately made old Toby's leap up\nfrom its faintness?  No, no.  The Alderman (a blessing on his\nhead!) had Put THEM Down.\n\n'As you happen to be here,' said the Alderman to Toby, 'you shall\ncarry a letter for me.  Can you be quick?  You're an old man.'\n\nToby, who had been looking after Meg, quite stupidly, made shift to\nmurmur out that he was very quick, and very strong.\n\n'How old are you?' inquired the Alderman.\n\n'I'm over sixty, sir,' said Toby.\n\n'O!  This man's a great deal past the average age, you know,' cried\nMr. Filer breaking in as if his patience would bear some trying,\nbut this really was carrying matters a little too far.\n\n'I feel I'm intruding, sir,' said Toby.  'I - I misdoubted it this\nmorning.  Oh dear me!'\n\nThe Alderman cut him short by giving him the letter from his\npocket.  Toby would have got a shilling too; but Mr. Filer clearly\nshowing that in that case he would rob a certain given number of\npersons of ninepence-halfpenny a-piece, he only got sixpence; and\nthought himself very well off to get that.\n\nThen the Alderman gave an arm to each of his friends, and walked\noff in high feather; but, he immediately came hurrying back alone,\nas if he had forgotten something.\n\n'Porter!' said the Alderman.\n\n'Sir!' said Toby.\n\n'Take care of that daughter of yours.  She's much too handsome.'\n\n'Even her good looks are stolen from somebody or other, I suppose,'\nthought Toby, looking at the sixpence in his hand, and thinking of\nthe tripe.  'She's been and robbed five hundred ladies of a bloom\na-piece, I shouldn't wonder.  It's very dreadful!'\n\n'She's much too handsome, my man,' repeated the Alderman.  'The\nchances are, that she'll come to no good, I clearly see.  Observe\nwhat I say.  Take care of her!'  With which, he hurried off again.\n\n'Wrong every way.  Wrong every way!' said Trotty, clasping his\nhands.  'Born bad.  No business here!'\n\nThe Chimes came clashing in upon him as he said the words.  Full,\nloud, and sounding - but with no encouragement.  No, not a drop.\n\n'The tune's changed,' cried the old man, as he listened.  'There's\nnot a word of all that fancy in it.  Why should there be?  I have\nno business with the New Year nor with the old one neither.  Let me\ndie!'\n\nStill the Bells, pealing forth their changes, made the very air\nspin.  Put 'em down, Put 'em down!  Good old Times, Good old Times!\nFacts and Figures, Facts and Figures!  Put 'em down, Put 'em down!\nIf they said anything they said this, until the brain of Toby\nreeled.\n\nHe pressed his bewildered head between his hands, as if to keep it\nfrom splitting asunder.  A well-timed action, as it happened; for\nfinding the letter in one of them, and being by that means reminded\nof his charge, he fell, mechanically, into his usual trot, and\ntrotted off.\n\n\n\nCHAPTER II - The Second Quarter.\n\n\n\nTHE letter Toby had received from Alderman Cute, was addressed to a\ngreat man in the great district of the town.  The greatest district\nof the town.  It must have been the greatest district of the town,\nbecause it was commonly called 'the world' by its inhabitants.  The\nletter positively seemed heavier in Toby's hand, than another\nletter.  Not because the Alderman had sealed it with a very large\ncoat of arms and no end of wax, but because of the weighty name on\nthe superscription, and the ponderous amount of gold and silver\nwith which it was associated.\n\n'How different from us!' thought Toby, in all simplicity and\nearnestness, as he looked at the direction.  'Divide the lively\nturtles in the bills of mortality, by the number of gentlefolks\nable to buy 'em; and whose share does he take but his own!  As to\nsnatching tripe from anybody's mouth - he'd scorn it!'\n\nWith the involuntary homage due to such an exalted character, Toby\ninterposed a corner of his apron between the letter and his\nfingers.\n\n'His children,' said Trotty, and a mist rose before his eyes; 'his\ndaughters - Gentlemen may win their hearts and marry them; they may\nbe happy wives and mothers; they may be handsome like my darling M-\ne-'.\n\nHe couldn't finish the name.  The final letter swelled in his\nthroat, to the size of the whole alphabet.\n\n'Never mind,' thought Trotty.  'I know what I mean.  That's more\nthan enough for me.'  And with this consolatory rumination, trotted\non.\n\nIt was a hard frost, that day.  The air was bracing, crisp, and\nclear.  The wintry sun, though powerless for warmth, looked\nbrightly down upon the ice it was too weak to melt, and set a\nradiant glory there.  At other times, Trotty might have learned a\npoor man's lesson from the wintry sun; but, he was past that, now.\n\nThe Year was Old, that day.  The patient Year had lived through the\nreproaches and misuses of its slanderers, and faithfully performed\nits work.  Spring, summer, autumn, winter.  It had laboured through\nthe destined round, and now laid down its weary head to die.  Shut\nout from hope, high impulse, active happiness, itself, but active\nmessenger of many joys to others, it made appeal in its decline to\nhave its toiling days and patient hours remembered, and to die in\npeace.  Trotty might have read a poor man's allegory in the fading\nyear; but he was past that, now.\n\nAnd only he?  Or has the like appeal been ever made, by seventy\nyears at once upon an English labourer's head, and made in vain!\n\nThe streets were full of motion, and the shops were decked out\ngaily.  The New Year, like an Infant Heir to the whole world, was\nwaited for, with welcomes, presents, and rejoicings.  There were\nbooks and toys for the New Year, glittering trinkets for the New\nYear, dresses for the New Year, schemes of fortune for the New\nYear; new inventions to beguile it.  Its life was parcelled out in\nalmanacks and pocket-books; the coming of its moons, and stars, and\ntides, was known beforehand to the moment; all the workings of its\nseasons in their days and nights, were calculated with as much\nprecision as Mr. Filer could work sums in men and women.\n\nThe New Year, the New Year.  Everywhere the New Year!  The Old Year\nwas already looked upon as dead; and its effects were selling\ncheap, like some drowned mariner's aboardship.  Its patterns were\nLast Year's, and going at a sacrifice, before its breath was gone.\nIts treasures were mere dirt, beside the riches of its unborn\nsuccessor!\n\nTrotty had no portion, to his thinking, in the New Year or the Old.\n\n'Put 'em down, Put 'em down!  Facts and Figures, Facts and Figures!\nGood old Times, Good old Times!  Put 'em down, Put 'em down!' - his\ntrot went to that measure, and would fit itself to nothing else.\n\nBut, even that one, melancholy as it was, brought him, in due time,\nto the end of his journey.  To the mansion of Sir Joseph Bowley,\nMember of Parliament.\n\nThe door was opened by a Porter.  Such a Porter!  Not of Toby's\norder.  Quite another thing.  His place was the ticket though; not\nToby's.\n\nThis Porter underwent some hard panting before he could speak;\nhaving breathed himself by coming incautiously out of his chair,\nwithout first taking time to think about it and compose his mind.\nWhen he had found his voice - which it took him a long time to do,\nfor it was a long way off, and hidden under a load of meat - he\nsaid in a fat whisper,\n\n'Who's it from?'\n\nToby told him.\n\n'You're to take it in, yourself,' said the Porter, pointing to a\nroom at the end of a long passage, opening from the hall.\n'Everything goes straight in, on this day of the year.  You're not\na bit too soon; for the carriage is at the door now, and they have\nonly come to town for a couple of hours, a' purpose.'\n\nToby wiped his feet (which were quite dry already) with great care,\nand took the way pointed out to him; observing as he went that it\nwas an awfully grand house, but hushed and covered up, as if the\nfamily were in the country.  Knocking at the room-door, he was told\nto enter from within; and doing so found himself in a spacious\nlibrary, where, at a table strewn with files and papers, were a\nstately lady in a bonnet; and a not very stately gentleman in black\nwho wrote from her dictation; while another, and an older, and a\nmuch statelier gentleman, whose hat and cane were on the table,\nwalked up and down, with one hand in his breast, and looked\ncomplacently from time to time at his own picture - a full length;\na very full length - hanging over the fireplace.\n\n'What is this?' said the last-named gentleman.  'Mr. Fish, will you\nhave the goodness to attend?'\n\nMr. Fish begged pardon, and taking the letter from Toby, handed it,\nwith great respect.\n\n'From Alderman Cute, Sir Joseph.'\n\n'Is this all?  Have you nothing else, Porter?' inquired Sir Joseph.\n\nToby replied in the negative.\n\n'You have no bill or demand upon me - my name is Bowley, Sir Joseph\nBowley - of any kind from anybody, have you?' said Sir Joseph.  'If\nyou have, present it.  There is a cheque-book by the side of Mr.\nFish.  I allow nothing to be carried into the New Year.  Every\ndescription of account is settled in this house at the close of the\nold one.  So that if death was to - to - '\n\n'To cut,' suggested Mr. Fish.\n\n'To sever, sir,' returned Sir Joseph, with great asperity, 'the\ncord of existence - my affairs would be found, I hope, in a state\nof preparation.'\n\n'My dear Sir Joseph!' said the lady, who was greatly younger than\nthe gentleman.  'How shocking!'\n\n'My lady Bowley,' returned Sir Joseph, floundering now and then, as\nin the great depth of his observations, 'at this season of the year\nwe should think of - of - ourselves.  We should look into our - our\naccounts.  We should feel that every return of so eventful a period\nin human transactions, involves a matter of deep moment between a\nman and his - and his banker.'\n\nSir Joseph delivered these words as if he felt the full morality of\nwhat he was saying; and desired that even Trotty should have an\nopportunity of being improved by such discourse.  Possibly he had\nthis end before him in still forbearing to break the seal of the\nletter, and in telling Trotty to wait where he was, a minute.\n\n'You were desiring Mr. Fish to say, my lady - ' observed Sir\nJoseph.\n\n'Mr. Fish has said that, I believe,' returned his lady, glancing at\nthe letter.  'But, upon my word, Sir Joseph, I don't think I can\nlet it go after all.  It is so very dear.'\n\n'What is dear?' inquired Sir Joseph.\n\n'That Charity, my love.  They only allow two votes for a\nsubscription of five pounds.  Really monstrous!'\n\n'My lady Bowley,' returned Sir Joseph, 'you surprise me.  Is the\nluxury of feeling in proportion to the number of votes; or is it,\nto a rightly constituted mind, in proportion to the number of\napplicants, and the wholesome state of mind to which their\ncanvassing reduces them?  Is there no excitement of the purest kind\nin having two votes to dispose of among fifty people?'\n\n'Not to me, I acknowledge,' replied the lady.  'It bores one.\nBesides, one can't oblige one's acquaintance.  But you are the Poor\nMan's Friend, you know, Sir Joseph.  You think otherwise.'\n\n'I AM the Poor Man's Friend,' observed Sir Joseph, glancing at the\npoor man present.  'As such I may be taunted.  As such I have been\ntaunted.  But I ask no other title.'\n\n'Bless him for a noble gentleman!' thought Trotty.\n\n'I don't agree with Cute here, for instance,' said Sir Joseph,\nholding out the letter.  'I don't agree with the Filer party.  I\ndon't agree with any party.  My friend the Poor Man, has no\nbusiness with anything of that sort, and nothing of that sort has\nany business with him.  My friend the Poor Man, in my district, is\nmy business.  No man or body of men has any right to interfere\nbetween my friend and me.  That is the ground I take.  I assume a -\na paternal character towards my friend.  I say, \"My good fellow, I\nwill treat you paternally.\"'\n\nToby listened with great gravity, and began to feel more\ncomfortable.\n\n'Your only business, my good fellow,' pursued Sir Joseph, looking\nabstractedly at Toby; 'your only business in life is with me.  You\nneedn't trouble yourself to think about anything.  I will think for\nyou; I know what is good for you; I am your perpetual parent.  Such\nis the dispensation of an all-wise Providence!  Now, the design of\nyour creation is - not that you should swill, and guzzle, and\nassociate your enjoyments, brutally, with food; Toby thought\nremorsefully of the tripe; 'but that you should feel the Dignity of\nLabour.  Go forth erect into the cheerful morning air, and - and\nstop there.  Live hard and temperately, be respectful, exercise\nyour self-denial, bring up your family on next to nothing, pay your\nrent as regularly as the clock strikes, be punctual in your\ndealings (I set you a good example; you will find Mr. Fish, my\nconfidential secretary, with a cash-box before him at all times);\nand you may trust to me to be your Friend and Father.'\n\n'Nice children, indeed, Sir Joseph!' said the lady, with a shudder.\n'Rheumatisms, and fevers, and crooked legs, and asthmas, and all\nkinds of horrors!'\n\n'My lady,' returned Sir Joseph, with solemnity, 'not the less am I\nthe Poor Man's Friend and Father.  Not the less shall he receive\nencouragement at my hands.  Every quarter-day he will be put in\ncommunication with Mr. Fish.  Every New Year's Day, myself and\nfriends will drink his health.  Once every year, myself and friends\nwill address him with the deepest feeling.  Once in his life, he\nmay even perhaps receive; in public, in the presence of the gentry;\na Trifle from a Friend.  And when, upheld no more by these\nstimulants, and the Dignity of Labour, he sinks into his\ncomfortable grave, then, my lady' - here Sir Joseph blew his nose -\n'I will be a Friend and a Father - on the same terms - to his\nchildren.'\n\nToby was greatly moved.\n\n'O! You have a thankful family, Sir Joseph!' cried his wife.\n\n'My lady,' said Sir Joseph, quite majestically, 'Ingratitude is\nknown to be the sin of that class.  I expect no other return.'\n\n'Ah!  Born bad!' thought Toby.  'Nothing melts us.'\n\n'What man can do, I do,' pursued Sir Joseph.  'I do my duty as the\nPoor Man's Friend and Father; and I endeavour to educate his mind,\nby inculcating on all occasions the one great moral lesson which\nthat class requires.  That is, entire Dependence on myself.  They\nhave no business whatever with - with themselves.  If wicked and\ndesigning persons tell them otherwise, and they become impatient\nand discontented, and are guilty of insubordinate conduct and\nblack-hearted ingratitude; which is undoubtedly the case; I am\ntheir Friend and Father still.  It is so Ordained.  It is in the\nnature of things.'\n\nWith that great sentiment, he opened the Alderman's letter; and\nread it.\n\n'Very polite and attentive, I am sure!' exclaimed Sir Joseph.  'My\nlady, the Alderman is so obliging as to remind me that he has had\n\"the distinguished honour\" - he is very good - of meeting me at the\nhouse of our mutual friend Deedles, the banker; and he does me the\nfavour to inquire whether it will be agreeable to me to have Will\nFern put down.'\n\n'MOST agreeable!' replied my Lady Bowley.  'The worst man among\nthem!  He has been committing a robbery, I hope?'\n\n'Why no,' said Sir Joseph', referring to the letter.  'Not quite.\nVery near.  Not quite.  He came up to London, it seems, to look for\nemployment (trying to better himself - that's his story), and being\nfound at night asleep in a shed, was taken into custody, and\ncarried next morning before the Alderman.  The Alderman observes\n(very properly) that he is determined to put this sort of thing\ndown; and that if it will be agreeable to me to have Will Fern put\ndown, he will be happy to begin with him.'\n\n'Let him be made an example of, by all means,' returned the lady.\n'Last winter, when I introduced pinking and eyelet-holing among the\nmen and boys in the village, as a nice evening employment, and had\nthe lines,\n\n\nO let us love our occupations,\nBless the squire and his relations,\nLive upon our daily rations,\nAnd always know our proper stations,\n\n\nset to music on the new system, for them to sing the while; this\nvery Fern - I see him now - touched that hat of his, and said, \"I\nhumbly ask your pardon, my lady, but AN'T I something different\nfrom a great girl?\"  I expected it, of course; who can expect\nanything but insolence and ingratitude from that class of people!\nThat is not to the purpose, however.  Sir Joseph!  Make an example\nof him!'\n\n'Hem!' coughed Sir Joseph.  'Mr. Fish, if you'll have the goodness\nto attend - '\n\nMr. Fish immediately seized his pen, and wrote from Sir Joseph's\ndictation.\n\n'Private.  My dear Sir.  I am very much indebted to you for your\ncourtesy in the matter of the man William Fern, of whom, I regret\nto add, I can say nothing favourable.  I have uniformly considered\nmyself in the light of his Friend and Father, but have been repaid\n(a common case, I grieve to say) with ingratitude, and constant\nopposition to my plans.  He is a turbulent and rebellious spirit.\nHis character will not bear investigation.  Nothing will persuade\nhim to be happy when he might.  Under these circumstances, it\nappears to me, I own, that when he comes before you again (as you\ninformed me he promised to do to-morrow, pending your inquiries,\nand I think he may be so far relied upon), his committal for some\nshort term as a Vagabond, would be a service to society, and would\nbe a salutary example in a country where - for the sake of those\nwho are, through good and evil report, the Friends and Fathers of\nthe Poor, as well as with a view to that, generally speaking,\nmisguided class themselves - examples are greatly needed.  And I\nam,' and so forth.\n\n'It appears,' remarked Sir Joseph when he had signed this letter,\nand Mr. Fish was sealing it, 'as if this were Ordained:  really.\nAt the close of the year, I wind up my account and strike my\nbalance, even with William Fern!'\n\nTrotty, who had long ago relapsed, and was very low-spirited,\nstepped forward with a rueful face to take the letter.\n\n'With my compliments and thanks,' said Sir Joseph.  'Stop!'\n\n'Stop!' echoed Mr. Fish.\n\n'You have heard, perhaps,' said Sir Joseph, oracularly, 'certain\nremarks into which I have been led respecting the solemn period of\ntime at which we have arrived, and the duty imposed upon us of\nsettling our affairs, and being prepared.  You have observed that I\ndon't shelter myself behind my superior standing in society, but\nthat Mr. Fish - that gentleman - has a cheque-book at his elbow,\nand is in fact here, to enable me to turn over a perfectly new\nleaf, and enter on the epoch before us with a clean account.  Now,\nmy friend, can you lay your hand upon your heart, and say, that you\nalso have made preparations for a New Year?'\n\n'I am afraid, sir,' stammered Trotty, looking meekly at him, 'that\nI am a - a - little behind-hand with the world.'\n\n' Behind-hand with the world!' repeated Sir Joseph Bowley, in a\ntone of terrible distinctness.\n\n'I am afraid, sir,' faltered Trotty, 'that there's a matter of ten\nor twelve shillings owing to Mrs. Chickenstalker.'\n\n'To Mrs. Chickenstalker!' repeated Sir Joseph, in the same tone as\nbefore.\n\n'A shop, sir,' exclaimed Toby, 'in the general line.  Also a - a\nlittle money on account of rent.  A very little, sir.  It oughtn't\nto be owing, I know, but we have been hard put to it, indeed!'\n\nSir Joseph looked at his lady, and at Mr. Fish, and at Trotty, one\nafter another, twice all round.  He then made a despondent gesture\nwith both hands at once, as if he gave the thing up altogether.\n\n'How a man, even among this improvident and impracticable race; an\nold man; a man grown grey; can look a New Year in the face, with\nhis affairs in this condition; how he can lie down on his bed at\nnight, and get up again in the morning, and - There!' he said,\nturning his back on Trotty.  'Take the letter.  Take the letter!'\n\n'I heartily wish it was otherwise, sir,' said Trotty, anxious to\nexcuse himself.  'We have been tried very hard.'\n\nSir Joseph still repeating 'Take the letter, take the letter!' and\nMr. Fish not only saying the same thing, but giving additional\nforce to the request by motioning the bearer to the door, he had\nnothing for it but to make his bow and leave the house.  And in the\nstreet, poor Trotty pulled his worn old hat down on his head, to\nhide the grief he felt at getting no hold on the New Year,\nanywhere.\n\nHe didn't even lift his hat to look up at the Bell tower when he\ncame to the old church on his return.  He halted there a moment,\nfrom habit:  and knew that it was growing dark, and that the\nsteeple rose above him, indistinct and faint, in the murky air.  He\nknew, too, that the Chimes would ring immediately; and that they\nsounded to his fancy, at such a time, like voices in the clouds.\nBut he only made the more haste to deliver the Alderman's letter,\nand get out of the way before they began; for he dreaded to hear\nthem tagging 'Friends and Fathers, Friends and Fathers,' to the\nburden they had rung out last.\n\nToby discharged himself of his commission, therefore, with all\npossible speed, and set off trotting homeward.  But what with his\npace, which was at best an awkward one in the street; and what with\nhis hat, which didn't improve it; he trotted against somebody in\nless than no time, and was sent staggering out into the road.\n\n'I beg your pardon, I'm sure!' said Trotty, pulling up his hat in\ngreat confusion, and between the hat and the torn lining, fixing\nhis head into a kind of bee-hive.  'I hope I haven't hurt you.'\n\nAs to hurting anybody, Toby was not such an absolute Samson, but\nthat he was much more likely to be hurt himself:  and indeed, he\nhad flown out into the road, like a shuttlecock.  He had such an\nopinion of his own strength, however, that he was in real concern\nfor the other party:  and said again,\n\n'I hope I haven't hurt you?'\n\nThe man against whom he had run; a sun-browned, sinewy, country-\nlooking man, with grizzled hair, and a rough chin; stared at him\nfor a moment, as if he suspected him to be in jest.  But, satisfied\nof his good faith, he answered:\n\n'No, friend.  You have not hurt me.'\n\n'Nor the child, I hope?' said Trotty.\n\n'Nor the child,' returned the man.  'I thank you kindly.'\n\nAs he said so, he glanced at a little girl he carried in his arms,\nasleep:  and shading her face with the long end of the poor\nhandkerchief he wore about his throat, went slowly on.\n\nThe tone in which he said 'I thank you kindly,' penetrated Trotty's\nheart.  He was so jaded and foot-sore, and so soiled with travel,\nand looked about him so forlorn and strange, that it was a comfort\nto him to be able to thank any one:  no matter for how little.\nToby stood gazing after him as he plodded wearily away, with the\nchild's arm clinging round his neck.\n\nAt the figure in the worn shoes - now the very shade and ghost of\nshoes - rough leather leggings, common frock, and broad slouched\nhat, Trotty stood gazing, blind to the whole street.  And at the\nchild's arm, clinging round its neck.\n\nBefore he merged into the darkness the traveller stopped; and\nlooking round, and seeing Trotty standing there yet, seemed\nundecided whether to return or go on.  After doing first the one\nand then the other, he came back, and Trotty went half-way to meet\nhim.\n\n'You can tell me, perhaps,' said the man with a faint smile, 'and\nif you can I am sure you will, and I'd rather ask you than another\n- where Alderman Cute lives.'\n\n'Close at hand,' replied Toby.  'I'll show you his house with\npleasure.'\n\n'I was to have gone to him elsewhere to-morrow,' said the man,\naccompanying Toby, 'but I'm uneasy under suspicion, and want to\nclear myself, and to be free to go and seek my bread - I don't know\nwhere.  So, maybe he'll forgive my going to his house to-night.'\n\n'It's impossible,' cried Toby with a start, 'that your name's\nFern!'\n\n'Eh!' cried the other, turning on him in astonishment.\n\n'Fern!  Will Fern!' said Trotty.\n\n'That's my name,' replied the other.\n\n'Why then,' said Trotty, seizing him by the arm, and looking\ncautiously round, 'for Heaven's sake don't go to him!  Don't go to\nhim!  He'll put you down as sure as ever you were born.  Here! come\nup this alley, and I'll tell you what I mean.  Don't go to HIM.'\n\nHis new acquaintance looked as if he thought him mad; but he bore\nhim company nevertheless.  When they were shrouded from\nobservation, Trotty told him what he knew, and what character he\nhad received, and all about it.\n\nThe subject of his history listened to it with a calmness that\nsurprised him.  He did not contradict or interrupt it, once.  He\nnodded his head now and then - more in corroboration of an old and\nworn-out story, it appeared, than in refutation of it; and once or\ntwice threw back his hat, and passed his freckled hand over a brow,\nwhere every furrow he had ploughed seemed to have set its image in\nlittle.  But he did no more.\n\n'It's true enough in the main,' he said, 'master, I could sift\ngrain from husk here and there, but let it be as 'tis.  What odds?\nI have gone against his plans; to my misfortun'.  I can't help it;\nI should do the like to-morrow.  As to character, them gentlefolks\nwill search and search, and pry and pry, and have it as free from\nspot or speck in us, afore they'll help us to a dry good word! -\nWell! I hope they don't lose good opinion as easy as we do, or\ntheir lives is strict indeed, and hardly worth the keeping.  For\nmyself, master, I never took with that hand' - holding it before\nhim - 'what wasn't my own; and never held it back from work,\nhowever hard, or poorly paid.  Whoever can deny it, let him chop it\noff!  But when work won't maintain me like a human creetur; when my\nliving is so bad, that I am Hungry, out of doors and in; when I see\na whole working life begin that way, go on that way, and end that\nway, without a chance or change; then I say to the gentlefolks\n\"Keep away from me!  Let my cottage be.  My doors is dark enough\nwithout your darkening of 'em more.  Don't look for me to come up\ninto the Park to help the show when there's a Birthday, or a fine\nSpeechmaking, or what not.  Act your Plays and Games without me,\nand be welcome to 'em, and enjoy 'em.  We've nowt to do with one\nanother.  I'm best let alone!\"'\n\nSeeing that the child in his arms had opened her eyes, and was\nlooking about her in wonder, he checked himself to say a word or\ntwo of foolish prattle in her ear, and stand her on the ground\nbeside him.  Then slowly winding one of her long tresses round and\nround his rough forefinger like a ring, while she hung about his\ndusty leg, he said to Trotty:\n\n'I'm not a cross-grained man by natu', I believe; and easy\nsatisfied, I'm sure.  I bear no ill-will against none of 'em.  I\nonly want to live like one of the Almighty's creeturs.  I can't - I\ndon't - and so there's a pit dug between me, and them that can and\ndo.  There's others like me.  You might tell 'em off by hundreds\nand by thousands, sooner than by ones.'\n\nTrotty knew he spoke the Truth in this, and shook his head to\nsignify as much.\n\n'I've got a bad name this way,' said Fern; 'and I'm not likely, I'm\nafeared, to get a better.  'Tan't lawful to be out of sorts, and I\nAM out of sorts, though God knows I'd sooner bear a cheerful spirit\nif I could.  Well!  I don't know as this Alderman could hurt ME\nmuch by sending me to jail; but without a friend to speak a word\nfor me, he might do it; and you see - !' pointing downward with his\nfinger, at the child.\n\n'She has a beautiful face,' said Trotty.\n\n'Why yes!' replied the other in a low voice, as he gently turned it\nup with both his hands towards his own, and looked upon it\nsteadfastly.  'I've thought so, many times.  I've thought so, when\nmy hearth was very cold, and cupboard very bare.  I thought so\nt'other night, when we were taken like two thieves.  But they -\nthey shouldn't try the little face too often, should they, Lilian?\nThat's hardly fair upon a man!'\n\nHe sunk his voice so low, and gazed upon her with an air so stern\nand strange, that Toby, to divert the current of his thoughts,\ninquired if his wife were living.\n\n'I never had one,' he returned, shaking his head.  'She's my\nbrother's child:  a orphan.  Nine year old, though you'd hardly\nthink it; but she's tired and worn out now.  They'd have taken care\non her, the Union - eight-and-twenty mile away from where we live -\nbetween four walls (as they took care of my old father when he\ncouldn't work no more, though he didn't trouble 'em long); but I\ntook her instead, and she's lived with me ever since.  Her mother\nhad a friend once, in London here.  We are trying to find her, and\nto find work too; but it's a large place.  Never mind.  More room\nfor us to walk about in, Lilly!'\n\nMeeting the child's eyes with a smile which melted Toby more than\ntears, he shook him by the hand.\n\n'I don't so much as know your name,' he said, 'but I've opened my\nheart free to you, for I'm thankful to you; with good reason.  I'll\ntake your advice, and keep clear of this - '\n\n'Justice,' suggested Toby.\n\n'Ah!' he said.  'If that's the name they give him.  This Justice.\nAnd to-morrow will try whether there's better fortun' to be met\nwith, somewheres near London.  Good night.  A Happy New Year!'\n\n'Stay!' cried Trotty, catching at his hand, as he relaxed his grip.\n'Stay!  The New Year never can be happy to me, if we part like\nthis.  The New Year never can be happy to me, if I see the child\nand you go wandering away, you don't know where, without a shelter\nfor your heads.  Come home with me!  I'm a poor man, living in a\npoor place; but I can give you lodging for one night and never miss\nit.  Come home with me!  Here!  I'll take her!' cried Trotty,\nlifting up the child.  'A pretty one!  I'd carry twenty times her\nweight, and never know I'd got it.  Tell me if I go too quick for\nyou.  I'm very fast.  I always was!'  Trotty said this, taking\nabout six of his trotting paces to one stride of his fatigued\ncompanion; and with his thin legs quivering again, beneath the load\nhe bore.\n\n'Why, she's as light,' said Trotty, trotting in his speech as well\nas in his gait; for he couldn't bear to be thanked, and dreaded a\nmoment's pause; 'as light as a feather.  Lighter than a Peacock's\nfeather - a great deal lighter.  Here we are and here we go!  Round\nthis first turning to the right, Uncle Will, and past the pump, and\nsharp off up the passage to the left, right opposite the public-\nhouse.  Here we are and here we go!  Cross over, Uncle Will, and\nmind the kidney pieman at the corner!  Here we are and here we go!\nDown the Mews here, Uncle Will, and stop at the black door, with\n\"T. Veck, Ticket Porter,\" wrote upon a board; and here we are and\nhere we go, and here we are indeed, my precious.  Meg, surprising\nyou!'\n\nWith which words Trotty, in a breathless state, set the child down\nbefore his daughter in the middle of the floor.  The little visitor\nlooked once at Meg; and doubting nothing in that face, but trusting\neverything she saw there; ran into her arms.\n\n'Here we are and here we go!' cried Trotty, running round the room,\nand choking audibly.  'Here, Uncle Will, here's a fire you know!\nWhy don't you come to the fire?  Oh here we are and here we go!\nMeg, my precious darling, where's the kettle?  Here it is and here\nit goes, and it'll bile in no time!'\n\nTrotty really had picked up the kettle somewhere or other in the\ncourse of his wild career and now put it on the fire:  while Meg,\nseating the child in a warm corner, knelt down on the ground before\nher, and pulled off her shoes, and dried her wet feet on a cloth.\nAy, and she laughed at Trotty too - so pleasantly, so cheerfully,\nthat Trotty could have blessed her where she kneeled; for he had\nseen that, when they entered, she was sitting by the fire in tears.\n\n'Why, father!' said Meg.  'You're crazy to-night, I think.  I don't\nknow what the Bells would say to that.  Poor little feet.  How cold\nthey are!'\n\n'Oh, they're warmer now!' exclaimed the child.  'They're quite warm\nnow!'\n\n'No, no, no,' said Meg.  'We haven't rubbed 'em half enough.  We're\nso busy.  So busy!  And when they're done, we'll brush out the damp\nhair; and when that's done, we'll bring some colour to the poor\npale face with fresh water; and when that's done, we'll be so gay,\nand brisk, and happy - !'\n\nThe child, in a burst of sobbing, clasped her round the neck;\ncaressed her fair cheek with its hand; and said, 'Oh Meg! oh dear\nMeg!'\n\nToby's blessing could have done no more.  Who could do more!\n\n'Why, father!' cried Meg, after a pause.\n\n'Here I am and here I go, my dear!' said Trotty.\n\n'Good Gracious me!' cried Meg.  'He's crazy!  He's put the dear\nchild's bonnet on the kettle, and hung the lid behind the door!'\n\n'I didn't go for to do it, my love,' said Trotty, hastily repairing\nthis mistake.  'Meg, my dear?'\n\nMeg looked towards him and saw that he had elaborately stationed\nhimself behind the chair of their male visitor, where with many\nmysterious gestures he was holding up the sixpence he had earned.\n\n'I see, my dear,' said Trotty, 'as I was coming in, half an ounce\nof tea lying somewhere on the stairs; and I'm pretty sure there was\na bit of bacon too.  As I don't remember where it was exactly, I'll\ngo myself and try to find 'em.'\n\nWith this inscrutable artifice, Toby withdrew to purchase the\nviands he had spoken of, for ready money, at Mrs. Chickenstalker's;\nand presently came back, pretending he had not been able to find\nthem, at first, in the dark.\n\n'But here they are at last,' said Trotty, setting out the tea-\nthings, 'all correct!  I was pretty sure it was tea, and a rasher.\nSo it is.  Meg, my pet, if you'll just make the tea, while your\nunworthy father toasts the bacon, we shall be ready, immediate.\nIt's a curious circumstance,' said Trotty, proceeding in his\ncookery, with the assistance of the toasting-fork, 'curious, but\nwell known to my friends, that I never care, myself, for rashers,\nnor for tea.  I like to see other people enjoy 'em,' said Trotty,\nspeaking very loud, to impress the fact upon his guest, 'but to me,\nas food, they're disagreeable.'\n\nYet Trotty sniffed the savour of the hissing bacon - ah! - as if he\nliked it; and when he poured the boiling water in the tea-pot,\nlooked lovingly down into the depths of that snug cauldron, and\nsuffered the fragrant steam to curl about his nose, and wreathe his\nhead and face in a thick cloud.  However, for all this, he neither\nate nor drank, except at the very beginning, a mere morsel for\nform's sake, which he appeared to eat with infinite relish, but\ndeclared was perfectly uninteresting to him.\n\nNo.  Trotty's occupation was, to see Will Fern and Lilian eat and\ndrink; and so was Meg's.  And never did spectators at a city dinner\nor court banquet find such high delight in seeing others feast:\nalthough it were a monarch or a pope:  as those two did, in looking\non that night.  Meg smiled at Trotty, Trotty laughed at Meg.  Meg\nshook her head, and made belief to clap her hands, applauding\nTrotty; Trotty conveyed, in dumb-show, unintelligible narratives of\nhow and when and where he had found their visitors, to Meg; and\nthey were happy.  Very happy.\n\n'Although,' thought Trotty, sorrowfully, as he watched Meg's face;\n'that match is broken off, I see!'\n\n'Now, I'll tell you what,' said Trotty after tea.  'The little one,\nshe sleeps with Meg, I know.'\n\n'With good Meg!' cried the child, caressing her.  'With Meg.'\n\n'That's right,' said Trotty.  'And I shouldn't wonder if she kiss\nMeg's father, won't she?  I'M Meg's father.'\n\nMightily delighted Trotty was, when the child went timidly towards\nhim, and having kissed him, fell back upon Meg again.\n\n'She's as sensible as Solomon,' said Trotty.  'Here we come and\nhere we - no, we don't - I don't mean that - I - what was I saying,\nMeg, my precious?'\n\nMeg looked towards their guest, who leaned upon her chair, and with\nhis face turned from her, fondled the child's head, half hidden in\nher lap.\n\n'To be sure,' said Toby.  'To be sure!  I don't know what I'm\nrambling on about, to-night.  My wits are wool-gathering, I think.\nWill Fern, you come along with me.  You're tired to death, and\nbroken down for want of rest.  You come along with me.'  The man\nstill played with the child's curls, still leaned upon Meg's chair,\nstill turned away his face.  He didn't speak, but in his rough\ncoarse fingers, clenching and expanding in the fair hair of the\nchild, there was an eloquence that said enough.\n\n'Yes, yes,' said Trotty, answering unconsciously what he saw\nexpressed in his daughter's face.  'Take her with you, Meg.  Get\nher to bed.  There!  Now, Will, I'll show you where you lie.  It's\nnot much of a place:  only a loft; but, having a loft, I always\nsay, is one of the great conveniences of living in a mews; and till\nthis coach-house and stable gets a better let, we live here cheap.\nThere's plenty of sweet hay up there, belonging to a neighbour; and\nit's as clean as hands, and Meg, can make it.  Cheer up!  Don't\ngive way.  A new heart for a New Year, always!'\n\nThe hand released from the child's hair, had fallen, trembling,\ninto Trotty's hand.  So Trotty, talking without intermission, led\nhim out as tenderly and easily as if he had been a child himself.\nReturning before Meg, he listened for an instant at the door of her\nlittle chamber; an adjoining room.  The child was murmuring a\nsimple Prayer before lying down to sleep; and when she had\nremembered Meg's name, 'Dearly, Dearly' - so her words ran - Trotty\nheard her stop and ask for his.\n\nIt was some short time before the foolish little old fellow could\ncompose himself to mend the fire, and draw his chair to the warm\nhearth.  But, when he had done so, and had trimmed the light, he\ntook his newspaper from his pocket, and began to read.  Carelessly\nat first, and skimming up and down the columns; but with an earnest\nand a sad attention, very soon.\n\nFor this same dreaded paper re-directed Trotty's thoughts into the\nchannel they had taken all that day, and which the day's events had\nso marked out and shaped.  His interest in the two wanderers had\nset him on another course of thinking, and a happier one, for the\ntime; but being alone again, and reading of the crimes and\nviolences of the people, he relapsed into his former train.\n\nIn this mood, he came to an account (and it was not the first he\nhad ever read) of a woman who had laid her desperate hands not only\non her own life but on that of her young child.  A crime so\nterrible, and so revolting to his soul, dilated with the love of\nMeg, that he let the journal drop, and fell back in his chair,\nappalled!\n\n'Unnatural and cruel!' Toby cried.  'Unnatural and cruel!  None but\npeople who were bad at heart, born bad, who had no business on the\nearth, could do such deeds.  It's too true, all I've heard to-day;\ntoo just, too full of proof.  We're Bad!'\n\nThe Chimes took up the words so suddenly - burst out so loud, and\nclear, and sonorous - that the Bells seemed to strike him in his\nchair.\n\nAnd what was that, they said?\n\n'Toby Veck, Toby Veck, waiting for you Toby!  Toby Veck, Toby Veck,\nwaiting for you Toby!  Come and see us, come and see us, Drag him\nto us, drag him to us, Haunt and hunt him, haunt and hunt him,\nBreak his slumbers, break his slumbers!  Toby Veck Toby Veck, door\nopen wide Toby, Toby Veck Toby Veck, door open wide Toby - ' then\nfiercely back to their impetuous strain again, and ringing in the\nvery bricks and plaster on the walls.\n\nToby listened.  Fancy, fancy!  His remorse for having run away from\nthem that afternoon!  No, no.  Nothing of the kind.  Again, again,\nand yet a dozen times again.  'Haunt and hunt him, haunt and hunt\nhim, Drag him to us, drag him to us!'  Deafening the whole town!\n\n'Meg,' said Trotty softly:  tapping at her door.  'Do you hear\nanything?'\n\n'I hear the Bells, father.  Surely they're very loud to-night.'\n\n'Is she asleep?' said Toby, making an excuse for peeping in.\n\n'So peacefully and happily!  I can't leave her yet though, father.\nLook how she holds my hand!'\n\n'Meg,' whispered Trotty.  'Listen to the Bells!'\n\nShe listened, with her face towards him all the time.  But it\nunderwent no change.  She didn't understand them.\n\nTrotty withdrew, resumed his seat by the fire, and once more\nlistened by himself.  He remained here a little time.\n\nIt was impossible to bear it; their energy was dreadful.\n\n'If the tower-door is really open,' said Toby, hastily laying aside\nhis apron, but never thinking of his hat, 'what's to hinder me from\ngoing up into the steeple and satisfying myself?  If it's shut, I\ndon't want any other satisfaction.  That's enough.'\n\nHe was pretty certain as he slipped out quietly into the street\nthat he should find it shut and locked, for he knew the door well,\nand had so rarely seen it open, that he couldn't reckon above three\ntimes in all.  It was a low arched portal, outside the church, in a\ndark nook behind a column; and had such great iron hinges, and such\na monstrous lock, that there was more hinge and lock than door.\n\nBut what was his astonishment when, coming bare-headed to the\nchurch; and putting his hand into this dark nook, with a certain\nmisgiving that it might be unexpectedly seized, and a shivering\npropensity to draw it back again; he found that the door, which\nopened outwards, actually stood ajar!\n\nHe thought, on the first surprise, of going back; or of getting a\nlight, or a companion, but his courage aided him immediately, and\nhe determined to ascend alone.\n\n'What have I to fear?' said Trotty.  'It's a church!  Besides, the\nringers may be there, and have forgotten to shut the door.'  So he\nwent in, feeling his way as he went, like a blind man; for it was\nvery dark.  And very quiet, for the Chimes were silent.\n\nThe dust from the street had blown into the recess; and lying\nthere, heaped up, made it so soft and velvet-like to the foot, that\nthere was something startling, even in that.  The narrow stair was\nso close to the door, too, that he stumbled at the very first; and\nshutting the door upon himself, by striking it with his foot, and\ncausing it to rebound back heavily, he couldn't open it again.\n\nThis was another reason, however, for going on.  Trotty groped his\nway, and went on.  Up, up, up, and round, and round; and up, up,\nup; higher, higher, higher up!\n\nIt was a disagreeable staircase for that groping work; so low and\nnarrow, that his groping hand was always touching something; and it\noften felt so like a man or ghostly figure standing up erect and\nmaking room for him to pass without discovery, that he would rub\nthe smooth wall upward searching for its face, and downward\nsearching for its feet, while a chill tingling crept all over him.\nTwice or thrice, a door or niche broke the monotonous surface; and\nthen it seemed a gap as wide as the whole church; and he felt on\nthe brink of an abyss, and going to tumble headlong down, until he\nfound the wall again.\n\nStill up, up, up; and round and round; and up, up, up; higher,\nhigher, higher up!\n\nAt length, the dull and stifling atmosphere began to freshen:\npresently to feel quite windy:  presently it blew so strong, that\nhe could hardly keep his legs.  But, he got to an arched window in\nthe tower, breast high, and holding tight, looked down upon the\nhouse-tops, on the smoking chimneys, on the blur and blotch of\nlights (towards the place where Meg was wondering where he was and\ncalling to him perhaps), all kneaded up together in a leaven of\nmist and darkness.\n\nThis was the belfry, where the ringers came.  He had caught hold of\none of the frayed ropes which hung down through apertures in the\noaken roof.  At first he started, thinking it was hair; then\ntrembled at the very thought of waking the deep Bell.  The Bells\nthemselves were higher.  Higher, Trotty, in his fascination, or in\nworking out the spell upon him, groped his way.  By ladders now,\nand toilsomely, for it was steep, and not too certain holding for\nthe feet.\n\nUp, up, up; and climb and clamber; up, up, up; higher, higher,\nhigher up!\n\nUntil, ascending through the floor, and pausing with his head just\nraised above its beams, he came among the Bells.  It was barely\npossible to make out their great shapes in the gloom; but there\nthey were.  Shadowy, and dark, and dumb.\n\nA heavy sense of dread and loneliness fell instantly upon him, as\nhe climbed into this airy nest of stone and metal.  His head went\nround and round.  He listened, and then raised a wild 'Holloa!'\nHolloa! was mournfully protracted by the echoes.\n\nGiddy, confused, and out of breath, and frightened, Toby looked\nabout him vacantly, and sunk down in a swoon.\n\n\n\nCHAPTER III - Third Quarter.\n\n\n\nBLACK are the brooding clouds and troubled the deep waters, when\nthe Sea of Thought, first heaving from a calm, gives up its Dead.\nMonsters uncouth and wild, arise in premature, imperfect\nresurrection; the several parts and shapes of different things are\njoined and mixed by chance; and when, and how, and by what\nwonderful degrees, each separates from each, and every sense and\nobject of the mind resumes its usual form and lives again, no man -\nthough every man is every day the casket of this type of the Great\nMystery - can tell.\n\nSo, when and how the darkness of the night-black steeple changed to\nshining light; when and how the solitary tower was peopled with a\nmyriad figures; when and how the whispered 'Haunt and hunt him,'\nbreathing monotonously through his sleep or swoon, became a voice\nexclaiming in the waking ears of Trotty, 'Break his slumbers;' when\nand how he ceased to have a sluggish and confused idea that such\nthings were, companioning a host of others that were not; there are\nno dates or means to tell.  But, awake and standing on his feet\nupon the boards where he had lately lain, he saw this Goblin Sight.\n\nHe saw the tower, whither his charmed footsteps had brought him,\nswarming with dwarf phantoms, spirits, elfin creatures of the\nBells.  He saw them leaping, flying, dropping, pouring from the\nBells without a pause.  He saw them, round him on the ground; above\nhim, in the air; clambering from him, by the ropes below; looking\ndown upon him, from the massive iron-girded beams; peeping in upon\nhim, through the chinks and loopholes in the walls; spreading away\nand away from him in enlarging circles, as the water ripples give\nway to a huge stone that suddenly comes plashing in among them.  He\nsaw them, of all aspects and all shapes.  He saw them ugly,\nhandsome, crippled, exquisitely formed.  He saw them young, he saw\nthem old, he saw them kind, he saw them cruel, he saw them merry,\nhe saw them grim; he saw them dance, and heard them sing; he saw\nthem tear their hair, and heard them howl.  He saw the air thick\nwith them.  He saw them come and go, incessantly.  He saw them\nriding downward, soaring upward, sailing off afar, perching near at\nhand, all restless and all violently active.  Stone, and brick, and\nslate, and tile, became transparent to him as to them.  He saw them\nIN the houses, busy at the sleepers' beds.  He saw them soothing\npeople in their dreams; he saw them beating them with knotted\nwhips; he saw them yelling in their ears; he saw them playing\nsoftest music on their pillows; he saw them cheering some with the\nsongs of birds and the perfume of flowers; he saw them flashing\nawful faces on the troubled rest of others, from enchanted mirrors\nwhich they carried in their hands.\n\nHe saw these creatures, not only among sleeping men but waking\nalso, active in pursuits irreconcilable with one another, and\npossessing or assuming natures the most opposite.  He saw one\nbuckling on innumerable wings to increase his speed; another\nloading himself with chains and weights, to retard his.  He saw\nsome putting the hands of clocks forward, some putting the hands of\nclocks backward, some endeavouring to stop the clock entirely.  He\nsaw them representing, here a marriage ceremony, there a funeral;\nin this chamber an election, in that a ball he saw, everywhere,\nrestless and untiring motion.\n\nBewildered by the host of shifting and extraordinary figures, as\nwell as by the uproar of the Bells, which all this while were\nringing, Trotty clung to a wooden pillar for support, and turned\nhis white face here and there, in mute and stunned astonishment.\n\nAs he gazed, the Chimes stopped.  Instantaneous change!  The whole\nswarm fainted! their forms collapsed, their speed deserted them;\nthey sought to fly, but in the act of falling died and melted into\nair.  No fresh supply succeeded them.  One straggler leaped down\npretty briskly from the surface of the Great Bell, and alighted on\nhis feet, but he was dead and gone before he could turn round.\nSome few of the late company who had gambolled in the tower,\nremained there, spinning over and over a little longer; but these\nbecame at every turn more faint, and few, and feeble, and soon went\nthe way of the rest.  The last of all was one small hunchback, who\nhad got into an echoing corner, where he twirled and twirled, and\nfloated by himself a long time; showing such perseverance, that at\nlast he dwindled to a leg and even to a foot, before he finally\nretired; but he vanished in the end, and then the tower was silent.\n\nThen and not before, did Trotty see in every Bell a bearded figure\nof the bulk and stature of the Bell - incomprehensibly, a figure\nand the Bell itself.  Gigantic, grave, and darkly watchful of him,\nas he stood rooted to the ground.\n\nMysterious and awful figures!  Resting on nothing; poised in the\nnight air of the tower, with their draped and hooded heads merged\nin the dim roof; motionless and shadowy.  Shadowy and dark,\nalthough he saw them by some light belonging to themselves - none\nelse was there - each with its muffled hand upon its goblin mouth.\n\nHe could not plunge down wildly through the opening in the floor;\nfor all power of motion had deserted him.  Otherwise he would have\ndone so - aye, would have thrown himself, headforemost, from the\nsteeple-top, rather than have seen them watching him with eyes that\nwould have waked and watched although the pupils had been taken\nout.\n\nAgain, again, the dread and terror of the lonely place, and of the\nwild and fearful night that reigned there, touched him like a\nspectral hand.  His distance from all help; the long, dark,\nwinding, ghost-beleaguered way that lay between him and the earth\non which men lived; his being high, high, high, up there, where it\nhad made him dizzy to see the birds fly in the day; cut off from\nall good people, who at such an hour were safe at home and sleeping\nin their beds; all this struck coldly through him, not as a\nreflection but a bodily sensation.  Meantime his eyes and thoughts\nand fears, were fixed upon the watchful figures; which, rendered\nunlike any figures of this world by the deep gloom and shade\nenwrapping and enfolding them, as well as by their looks and forms\nand supernatural hovering above the floor, were nevertheless as\nplainly to be seen as were the stalwart oaken frames, cross-pieces,\nbars and beams, set up there to support the Bells.  These hemmed\nthem, in a very forest of hewn timber; from the entanglements,\nintricacies, and depths of which, as from among the boughs of a\ndead wood blighted for their phantom use, they kept their darksome\nand unwinking watch.\n\nA blast of air - how cold and shrill! - came moaning through the\ntower.  As it died away, the Great Bell, or the Goblin of the Great\nBell, spoke.\n\n'What visitor is this!' it said.  The voice was low and deep, and\nTrotty fancied that it sounded in the other figures as well.\n\n'I thought my name was called by the Chimes!' said Trotty, raising\nhis hands in an attitude of supplication.  'I hardly know why I am\nhere, or how I came.  I have listened to the Chimes these many\nyears.  They have cheered me often.'\n\n'And you have thanked them?' said the Bell.\n\n'A thousand times!' cried Trotty.\n\n'How?'\n\n'I am a poor man,' faltered Trotty, 'and could only thank them in\nwords.'\n\n'And always so?' inquired the Goblin of the Bell.  'Have you never\ndone us wrong in words?'\n\n'No!' cried Trotty eagerly.\n\n'Never done us foul, and false, and wicked wrong, in words?'\npursued the Goblin of the Bell.\n\nTrotty was about to answer, 'Never!'  But he stopped, and was\nconfused.\n\n'The voice of Time,' said the Phantom, 'cries to man, Advance!\nTime is for his advancement and improvement; for his greater worth,\nhis greater happiness, his better life; his progress onward to that\ngoal within its knowledge and its view, and set there, in the\nperiod when Time and He began.  Ages of darkness, wickedness, and\nviolence, have come and gone - millions uncountable, have suffered,\nlived, and died - to point the way before him.  Who seeks to turn\nhim back, or stay him on his course, arrests a mighty engine which\nwill strike the meddler dead; and be the fiercer and the wilder,\never, for its momentary check!'\n\n'I never did so to my knowledge, sir,' said Trotty.  'It was quite\nby accident if I did.  I wouldn't go to do it, I'm sure.'\n\n'Who puts into the mouth of Time, or of its servants,' said the\nGoblin of the Bell, 'a cry of lamentation for days which have had\ntheir trial and their failure, and have left deep traces of it\nwhich the blind may see - a cry that only serves the present time,\nby showing men how much it needs their help when any ears can\nlisten to regrets for such a past - who does this, does a wrong.\nAnd you have done that wrong, to us, the Chimes.'\n\nTrotty's first excess of fear was gone.  But he had felt tenderly\nand gratefully towards the Bells, as you have seen; and when he\nheard himself arraigned as one who had offended them so weightily,\nhis heart was touched with penitence and grief.\n\n'If you knew,' said Trotty, clasping his hands earnestly - 'or\nperhaps you do know - if you know how often you have kept me\ncompany; how often you have cheered me up when I've been low; how\nyou were quite the plaything of my little daughter Meg (almost the\nonly one she ever had) when first her mother died, and she and me\nwere left alone; you won't bear malice for a hasty word!'\n\n'Who hears in us, the Chimes, one note bespeaking disregard, or\nstern regard, of any hope, or joy, or pain, or sorrow, of the many-\nsorrowed throng; who hears us make response to any creed that\ngauges human passions and affections, as it gauges the amount of\nmiserable food on which humanity may pine and wither; does us\nwrong.  That wrong you have done us!' said the Bell.\n\n'I have!' said Trotty.  'Oh forgive me!'\n\n'Who hears us echo the dull vermin of the earth:  the Putters Down\nof crushed and broken natures, formed to be raised up higher than\nsuch maggots of the time can crawl or can conceive,' pursued the\nGoblin of the Bell; 'who does so, does us wrong.  And you have done\nus wrong!'\n\n'Not meaning it,' said Trotty.  'In my ignorance.  Not meaning it!'\n\n'Lastly, and most of all,' pursued the Bell.  'Who turns his back\nupon the fallen and disfigured of his kind; abandons them as vile;\nand does not trace and track with pitying eyes the unfenced\nprecipice by which they fell from good - grasping in their fall\nsome tufts and shreds of that lost soil, and clinging to them still\nwhen bruised and dying in the gulf below; does wrong to Heaven and\nman, to time and to eternity.  And you have done that wrong!'\n\n'Spare me!' cried Trotty, falling on his knees; 'for Mercy's sake!'\n\n'Listen!' said the Shadow.\n\n'Listen!' cried the other Shadows.\n\n'Listen!' said a clear and childlike voice, which Trotty thought he\nrecognised as having heard before.\n\nThe organ sounded faintly in the church below.  Swelling by\ndegrees, the melody ascended to the roof, and filled the choir and\nnave.  Expanding more and more, it rose up, up; up, up; higher,\nhigher, higher up; awakening agitated hearts within the burly piles\nof oak:  the hollow bells, the iron-bound doors, the stairs of\nsolid stone; until the tower walls were insufficient to contain it,\nand it soared into the sky.\n\nNo wonder that an old man's breast could not contain a sound so\nvast and mighty.  It broke from that weak prison in a rush of\ntears; and Trotty put his hands before his face.\n\n'Listen!' said the Shadow.\n\n'Listen!' said the other Shadows.\n\n'Listen!' said the child's voice.\n\nA solemn strain of blended voices, rose into the tower.\n\nIt was a very low and mournful strain - a Dirge - and as he\nlistened, Trotty heard his child among the singers.\n\n'She is dead!' exclaimed the old man.  'Meg is dead!  Her Spirit\ncalls to me.  I hear it!'\n\n'The Spirit of your child bewails the dead, and mingles with the\ndead - dead hopes, dead fancies, dead imaginings of youth,'\nreturned the Bell, 'but she is living.  Learn from her life, a\nliving truth.  Learn from the creature dearest to your heart, how\nbad the bad are born.  See every bud and leaf plucked one by one\nfrom off the fairest stem, and know how bare and wretched it may\nbe.  Follow her!  To desperation!'\n\nEach of the shadowy figures stretched its right arm forth, and\npointed downward.\n\n'The Spirit of the Chimes is your companion,' said the figure.\n\n'Go!  It stands behind you!'\n\nTrotty turned, and saw - the child!  The child Will Fern had\ncarried in the street; the child whom Meg had watched, but now,\nasleep!\n\n'I carried her myself, to-night,' said Trotty.  'In these arms!'\n\n'Show him what he calls himself,' said the dark figures, one and\nall.\n\nThe tower opened at his feet.  He looked down, and beheld his own\nform, lying at the bottom, on the outside:  crushed and motionless.\n\n'No more a living man!' cried Trotty.  'Dead!'\n\n'Dead!' said the figures all together.\n\n'Gracious Heaven!  And the New Year - '\n\n'Past,' said the figures.\n\n'What!' he cried, shuddering.  'I missed my way, and coming on the\noutside of this tower in the dark, fell down - a year ago?'\n\n'Nine years ago!' replied the figures.\n\nAs they gave the answer, they recalled their outstretched hands;\nand where their figures had been, there the Bells were.\n\nAnd they rung; their time being come again.  And once again, vast\nmultitudes of phantoms sprung into existence; once again, were\nincoherently engaged, as they had been before; once again, faded on\nthe stopping of the Chimes; and dwindled into nothing.\n\n'What are these?' he asked his guide.  'If I am not mad, what are\nthese?'\n\n'Spirits of the Bells.  Their sound upon the air,' returned the\nchild.  'They take such shapes and occupations as the hopes and\nthoughts of mortals, and the recollections they have stored up,\ngive them.'\n\n'And you,' said Trotty wildly.  'What are you?'\n\n'Hush, hush!' returned the child.  'Look here!'\n\nIn a poor, mean room; working at the same kind of embroidery which\nhe had often, often seen before her; Meg, his own dear daughter,\nwas presented to his view.  He made no effort to imprint his kisses\non her face; he did not strive to clasp her to his loving heart; he\nknew that such endearments were, for him, no more.  But, he held\nhis trembling breath, and brushed away the blinding tears, that he\nmight look upon her; that he might only see her.\n\nAh!  Changed.  Changed.  The light of the clear eye, how dimmed.\nThe bloom, how faded from the cheek.  Beautiful she was, as she had\never been, but Hope, Hope, Hope, oh where was the fresh Hope that\nhad spoken to him like a voice!\n\nShe looked up from her work, at a companion.  Following her eyes,\nthe old man started back.\n\nIn the woman grown, he recognised her at a glance.  In the long\nsilken hair, he saw the self-same curls; around the lips, the\nchild's expression lingering still.  See!  In the eyes, now turned\ninquiringly on Meg, there shone the very look that scanned those\nfeatures when he brought her home!\n\nThen what was this, beside him!\n\nLooking with awe into its face, he saw a something reigning there:\na lofty something, undefined and indistinct, which made it hardly\nmore than a remembrance of that child - as yonder figure might be -\nyet it was the same:  the same:  and wore the dress.\n\nHark.  They were speaking!\n\n'Meg,' said Lilian, hesitating.  'How often you raise your head\nfrom your work to look at me!'\n\n'Are my looks so altered, that they frighten you?' asked Meg.\n\n'Nay, dear!  But you smile at that, yourself!  Why not smile, when\nyou look at me, Meg?'\n\n'I do so.  Do I not?' she answered:  smiling on her.\n\n'Now you do,' said Lilian, 'but not usually.  When you think I'm\nbusy, and don't see you, you look so anxious and so doubtful, that\nI hardly like to raise my eyes.  There is little cause for smiling\nin this hard and toilsome life, but you were once so cheerful.'\n\n'Am I not now!' cried Meg, speaking in a tone of strange alarm, and\nrising to embrace her.  'Do I make our weary life more weary to\nyou, Lilian!'\n\n'You have been the only thing that made it life,' said Lilian,\nfervently kissing her; 'sometimes the only thing that made me care\nto live so, Meg.  Such work, such work!  So many hours, so many\ndays, so many long, long nights of hopeless, cheerless, never-\nending work - not to heap up riches, not to live grandly or gaily,\nnot to live upon enough, however coarse; but to earn bare bread; to\nscrape together just enough to toil upon, and want upon, and keep\nalive in us the consciousness of our hard fate!  Oh Meg, Meg!' she\nraised her voice and twined her arms about her as she spoke, like\none in pain.  'How can the cruel world go round, and bear to look\nupon such lives!'\n\n'Lilly!' said Meg, soothing her, and putting back her hair from her\nwet face.  'Why, Lilly!  You!  So pretty and so young!'\n\n'Oh Meg!' she interrupted, holding her at arm's-length, and looking\nin her face imploringly.  'The worst of all, the worst of all!\nStrike me old, Meg!  Wither me, and shrivel me, and free me from\nthe dreadful thoughts that tempt me in my youth!'\n\nTrotty turned to look upon his guide.  But the Spirit of the child\nhad taken flight.  Was gone.\n\nNeither did he himself remain in the same place; for, Sir Joseph\nBowley, Friend and Father of the Poor, held a great festivity at\nBowley Hall, in honour of the natal day of Lady Bowley.  And as\nLady Bowley had been born on New Year's Day (which the local\nnewspapers considered an especial pointing of the finger of\nProvidence to number One, as Lady Bowley's destined figure in\nCreation), it was on a New Year's Day that this festivity took\nplace.\n\nBowley Hall was full of visitors.  The red-faced gentleman was\nthere, Mr. Filer was there, the great Alderman Cute was there -\nAlderman Cute had a sympathetic feeling with great people, and had\nconsiderably improved his acquaintance with Sir Joseph Bowley on\nthe strength of his attentive letter:  indeed had become quite a\nfriend of the family since then - and many guests were there.\nTrotty's ghost was there, wandering about, poor phantom, drearily;\nand looking for its guide.\n\nThere was to be a great dinner in the Great Hall.  At which Sir\nJoseph Bowley, in his celebrated character of Friend and Father of\nthe Poor, was to make his great speech.  Certain plum-puddings were\nto be eaten by his Friends and Children in another Hall first; and,\nat a given signal, Friends and Children flocking in among their\nFriends and Fathers, were to form a family assemblage, with not one\nmanly eye therein unmoistened by emotion.\n\nBut, there was more than this to happen.  Even more than this.  Sir\nJoseph Bowley, Baronet and Member of Parliament, was to play a\nmatch at skittles - real skittles - with his tenants!\n\n'Which quite reminds me,' said Alderman Cute, 'of the days of old\nKing Hal, stout King Hal, bluff King Hal.  Ah!  Fine character!'\n\n'Very,' said Mr. Filer, dryly.  'For marrying women and murdering\n'em.  Considerably more than the average number of wives by the\nbye.'\n\n'You'll marry the beautiful ladies, and not murder 'em, eh?' said\nAlderman Cute to the heir of Bowley, aged twelve.  'Sweet boy!  We\nshall have this little gentleman in Parliament now,' said the\nAlderman, holding him by the shoulders, and looking as reflective\nas he could, 'before we know where we are.  We shall hear of his\nsuccesses at the poll; his speeches in the House; his overtures\nfrom Governments; his brilliant achievements of all kinds; ah! we\nshall make our little orations about him in the Common Council,\nI'll be bound; before we have time to look about us!'\n\n'Oh, the difference of shoes and stockings!' Trotty thought.  But\nhis heart yearned towards the child, for the love of those same\nshoeless and stockingless boys, predestined (by the Alderman) to\nturn out bad, who might have been the children of poor Meg.\n\n'Richard,' moaned Trotty, roaming among the company, to and fro;\n'where is he?  I can't find Richard!  Where is Richard?'  Not\nlikely to be there, if still alive!  But Trotty's grief and\nsolitude confused him; and he still went wandering among the\ngallant company, looking for his guide, and saying, 'Where is\nRichard?  Show me Richard!'\n\nHe was wandering thus, when he encountered Mr. Fish, the\nconfidential Secretary:  in great agitation.\n\n'Bless my heart and soul!' cried Mr. Fish.  'Where's Alderman Cute?\nHas anybody seen the Alderman?'\n\nSeen the Alderman?  Oh dear!  Who could ever help seeing the\nAlderman?  He was so considerate, so affable, he bore so much in\nmind the natural desires of folks to see him, that if he had a\nfault, it was the being constantly On View.  And wherever the great\npeople were, there, to be sure, attracted by the kindred sympathy\nbetween great souls, was Cute.\n\nSeveral voices cried that he was in the circle round Sir Joseph.\nMr. Fish made way there; found him; and took him secretly into a\nwindow near at hand.  Trotty joined them.  Not of his own accord.\nHe felt that his steps were led in that direction.\n\n'My dear Alderman Cute,' said Mr. Fish.  'A little more this way.\nThe most dreadful circumstance has occurred.  I have this moment\nreceived the intelligence.  I think it will be best not to acquaint\nSir Joseph with it till the day is over.  You understand Sir\nJoseph, and will give me your opinion.  The most frightful and\ndeplorable event!'\n\n'Fish!' returned the Alderman.  'Fish!  My good fellow, what is the\nmatter?  Nothing revolutionary, I hope!  No - no attempted\ninterference with the magistrates?'\n\n'Deedles, the banker,' gasped the Secretary.  'Deedles Brothers -\nwho was to have been here to-day - high in office in the\nGoldsmiths' Company - '\n\n'Not stopped!' exclaimed the Alderman, 'It can't be!'\n\n'Shot himself.'\n\n'Good God!'\n\n'Put a double-barrelled pistol to his mouth, in his own counting\nhouse,' said Mr. Fish, 'and blew his brains out.  No motive.\nPrincely circumstances!'\n\n'Circumstances!' exclaimed the Alderman.  'A man of noble fortune.\nOne of the most respectable of men.  Suicide, Mr. Fish!  By his own\nhand!'\n\n'This very morning,' returned Mr. Fish.\n\n'Oh the brain, the brain!' exclaimed the pious Alderman, lifting up\nhis hands.  'Oh the nerves, the nerves; the mysteries of this\nmachine called Man!  Oh the little that unhinges it:  poor\ncreatures that we are!  Perhaps a dinner, Mr. Fish.  Perhaps the\nconduct of his son, who, I have heard, ran very wild, and was in\nthe habit of drawing bills upon him without the least authority!  A\nmost respectable man.  One of the most respectable men I ever knew!\nA lamentable instance, Mr. Fish.  A public calamity!  I shall make\na point of wearing the deepest mourning.  A most respectable man!\nBut there is One above.  We must submit, Mr. Fish.  We must\nsubmit!'\n\nWhat, Alderman!  No word of Putting Down?  Remember, Justice, your\nhigh moral boast and pride.  Come, Alderman!  Balance those scales.\nThrow me into this, the empty one, no dinner, and Nature's founts\nin some poor woman, dried by starving misery and rendered obdurate\nto claims for which her offspring HAS authority in holy mother Eve.\nWeigh me the two, you Daniel, going to judgment, when your day\nshall come!  Weigh them, in the eyes of suffering thousands,\naudience (not unmindful) of the grim farce you play.  Or supposing\nthat you strayed from your five wits - it's not so far to go, but\nthat it might be - and laid hands upon that throat of yours,\nwarning your fellows (if you have a fellow) how they croak their\ncomfortable wickedness to raving heads and stricken hearts.  What\nthen?\n\nThe words rose up in Trotty's breast, as if they had been spoken by\nsome other voice within him.  Alderman Cute pledged himself to Mr.\nFish that he would assist him in breaking the melancholy\ncatastrophe to Sir Joseph when the day was over.  Then, before they\nparted, wringing Mr. Fish's hand in bitterness of soul, he said,\n'The most respectable of men!'  And added that he hardly knew (not\neven he), why such afflictions were allowed on earth.\n\n'It's almost enough to make one think, if one didn't know better,'\nsaid Alderman Cute, 'that at times some motion of a capsizing\nnature was going on in things, which affected the general economy\nof the social fabric.  Deedles Brothers!'\n\nThe skittle-playing came off with immense success.  Sir Joseph\nknocked the pins about quite skilfully; Master Bowley took an\ninnings at a shorter distance also; and everybody said that now,\nwhen a Baronet and the Son of a Baronet played at skittles, the\ncountry was coming round again, as fast as it could come.\n\nAt its proper time, the Banquet was served up.  Trotty\ninvoluntarily repaired to the Hall with the rest, for he felt\nhimself conducted thither by some stronger impulse than his own\nfree will.  The sight was gay in the extreme; the ladies were very\nhandsome; the visitors delighted, cheerful, and good-tempered.\nWhen the lower doors were opened, and the people flocked in, in\ntheir rustic dresses, the beauty of the spectacle was at its\nheight; but Trotty only murmured more and more, 'Where is Richard!\nHe should help and comfort her!  I can't see Richard!'\n\nThere had been some speeches made; and Lady Bowley's health had\nbeen proposed; and Sir Joseph Bowley had returned thanks, and had\nmade his great speech, showing by various pieces of evidence that\nhe was the born Friend and Father, and so forth; and had given as a\nToast, his Friends and Children, and the Dignity of Labour; when a\nslight disturbance at the bottom of the Hall attracted Toby's\nnotice.  After some confusion, noise, and opposition, one man broke\nthrough the rest, and stood forward by himself.\n\nNot Richard.  No.  But one whom he had thought of, and had looked\nfor, many times.  In a scantier supply of light, he might have\ndoubted the identity of that worn man, so old, and grey, and bent;\nbut with a blaze of lamps upon his gnarled and knotted head, he\nknew Will Fern as soon as he stepped forth.\n\n'What is this!' exclaimed Sir Joseph, rising.  'Who gave this man\nadmittance?  This is a criminal from prison!  Mr. Fish, sir, WILL\nyou have the goodness - '\n\n'A minute!' said Will Fern.  'A minute!  My Lady, you was born on\nthis day along with a New Year.  Get me a minute's leave to speak.'\n\nShe made some intercession for him.  Sir Joseph took his seat\nagain, with native dignity.\n\nThe ragged visitor - for he was miserably dressed - looked round\nupon the company, and made his homage to them with a humble bow.\n\n'Gentlefolks!' he said.  'You've drunk the Labourer.  Look at me!'\n\n'Just come from jail,' said Mr. Fish.\n\n'Just come from jail,' said Will.  'And neither for the first time,\nnor the second, nor the third, nor yet the fourth.'\n\nMr. Filer was heard to remark testily, that four times was over the\naverage; and he ought to be ashamed of himself.\n\n'Gentlefolks!' repeated Will Fern.  'Look at me!  You see I'm at\nthe worst.  Beyond all hurt or harm; beyond your help; for the time\nwhen your kind words or kind actions could have done me good,' - he\nstruck his hand upon his breast, and shook his head, 'is gone, with\nthe scent of last year's beans or clover on the air.  Let me say a\nword for these,' pointing to the labouring people in the Hall; 'and\nwhen you're met together, hear the real Truth spoke out for once.'\n\n'There's not a man here,' said the host, 'who would have him for a\nspokesman.'\n\n'Like enough, Sir Joseph.  I believe it.  Not the less true,\nperhaps, is what I say.  Perhaps that's a proof on it.\nGentlefolks, I've lived many a year in this place.  You may see the\ncottage from the sunk fence over yonder.  I've seen the ladies draw\nit in their books, a hundred times.  It looks well in a picter,\nI've heerd say; but there an't weather in picters, and maybe 'tis\nfitter for that, than for a place to live in.  Well!  I lived\nthere.  How hard - how bitter hard, I lived there, I won't say.\nAny day in the year, and every day, you can judge for your own\nselves.'\n\nHe spoke as he had spoken on the night when Trotty found him in the\nstreet.  His voice was deeper and more husky, and had a trembling\nin it now and then; but he never raised it passionately, and seldom\nlifted it above the firm stern level of the homely facts he stated.\n\n''Tis harder than you think for, gentlefolks, to grow up decent,\ncommonly decent, in such a place.  That I growed up a man and not a\nbrute, says something for me - as I was then.  As I am now, there's\nnothing can be said for me or done for me.  I'm past it.'\n\n'I am glad this man has entered,' observed Sir Joseph, looking\nround serenely.  'Don't disturb him.  It appears to be Ordained.\nHe is an example:  a living example.  I hope and trust, and\nconfidently expect, that it will not be lost upon my Friends here.'\n\n'I dragged on,' said Fern, after a moment's silence, 'somehow.\nNeither me nor any other man knows how; but so heavy, that I\ncouldn't put a cheerful face upon it, or make believe that I was\nanything but what I was.  Now, gentlemen - you gentlemen that sits\nat Sessions - when you see a man with discontent writ on his face,\nyou says to one another, \"He's suspicious.  I has my doubts,\" says\nyou, \"about Will Fern.  Watch that fellow!\"  I don't say,\ngentlemen, it ain't quite nat'ral, but I say 'tis so; and from that\nhour, whatever Will Fern does, or lets alone - all one - it goes\nagainst him.'\n\nAlderman Cute stuck his thumbs in his waistcoat-pockets, and\nleaning back in his chair, and smiling, winked at a neighbouring\nchandelier.  As much as to say, 'Of course!  I told you so.  The\ncommon cry!  Lord bless you, we are up to all this sort of thing -\nmyself and human nature.'\n\n'Now, gentlemen,' said Will Fern, holding out his hands, and\nflushing for an instant in his haggard face, 'see how your laws are\nmade to trap and hunt us when we're brought to this.  I tries to\nlive elsewhere.  And I'm a vagabond.  To jail with him!  I comes\nback here.  I goes a-nutting in your woods, and breaks - who don't?\n- a limber branch or two.  To jail with him!  One of your keepers\nsees me in the broad day, near my own patch of garden, with a gun.\nTo jail with him!  I has a nat'ral angry word with that man, when\nI'm free again.  To jail with him!  I cuts a stick.  To jail with\nhim!  I eats a rotten apple or a turnip.  To jail with him!  It's\ntwenty mile away; and coming back I begs a trifle on the road.  To\njail with him!  At last, the constable, the keeper - anybody -\nfinds me anywhere, a-doing anything.  To jail with him, for he's a\nvagrant, and a jail-bird known; and jail's the only home he's got.'\n\nThe Alderman nodded sagaciously, as who should say, 'A very good\nhome too!'\n\n'Do I say this to serve MY cause!' cried Fern.  'Who can give me\nback my liberty, who can give me back my good name, who can give me\nback my innocent niece?  Not all the Lords and Ladies in wide\nEngland.  But, gentlemen, gentlemen, dealing with other men like\nme, begin at the right end.  Give us, in mercy, better homes when\nwe're a-lying in our cradles; give us better food when we're a-\nworking for our lives; give us kinder laws to bring us back when\nwere a-going wrong; and don't set jail, jail, jail, afore us,\neverywhere we turn.  There an't a condescension you can show the\nLabourer then, that he won't take, as ready and as grateful as a\nman can be; for, he has a patient, peaceful, willing heart.  But\nyou must put his rightful spirit in him first; for, whether he's a\nwreck and ruin such as me, or is like one of them that stand here\nnow, his spirit is divided from you at this time.  Bring it back,\ngentlefolks, bring it back!  Bring it back, afore the day comes\nwhen even his Bible changes in his altered mind, and the words seem\nto him to read, as they have sometimes read in my own eyes - in\njail:  \"Whither thou goest, I can Not go; where thou lodgest, I do\nNot lodge; thy people are Not my people; Nor thy God my God!'\n\nA sudden stir and agitation took place in Hall.  Trotty thought at\nfirst, that several had risen to eject the man; and hence this\nchange in its appearance.  But, another moment showed him that the\nroom and all the company had vanished from his sight, and that his\ndaughter was again before him, seated at her work.  But in a\npoorer, meaner garret than before; and with no Lilian by her side.\n\nThe frame at which she had worked, was put away upon a shelf and\ncovered up.  The chair in which she had sat, was turned against the\nwall.  A history was written in these little things, and in Meg's\ngrief-worn face.  Oh! who could fail to read it!\n\nMeg strained her eyes upon her work until it was too dark to see\nthe threads; and when the night closed in, she lighted her feeble\ncandle and worked on.  Still her old father was invisible about\nher; looking down upon her; loving her - how dearly loving her! -\nand talking to her in a tender voice about the old times, and the\nBells.  Though he knew, poor Trotty, though he knew she could not\nhear him.\n\nA great part of the evening had worn away, when a knock came at her\ndoor.  She opened it.  A man was on the threshold.  A slouching,\nmoody, drunken sloven, wasted by intemperance and vice, and with\nhis matted hair and unshorn beard in wild disorder; but, with some\ntraces on him, too, of having been a man of good proportion and\ngood features in his youth.\n\nHe stopped until he had her leave to enter; and she, retiring a\npace of two from the open door, silently and sorrowfully looked\nupon him.  Trotty had his wish.  He saw Richard.\n\n'May I come in, Margaret?'\n\n'Yes!  Come in.  Come in!'\n\nIt was well that Trotty knew him before he spoke; for with any\ndoubt remaining on his mind, the harsh discordant voice would have\npersuaded him that it was not Richard but some other man.\n\nThere were but two chairs in the room.  She gave him hers, and\nstood at some short distance from him, waiting to hear what he had\nto say.\n\nHe sat, however, staring vacantly at the floor; with a lustreless\nand stupid smile.  A spectacle of such deep degradation, of such\nabject hopelessness, of such a miserable downfall, that she put her\nhands before her face and turned away, lest he should see how much\nit moved her.\n\nRoused by the rustling of her dress, or some such trifling sound,\nhe lifted his head, and began to speak as if there had been no\npause since he entered.\n\n'Still at work, Margaret?  You work late.'\n\n'I generally do.'\n\n'And early?'\n\n'And early.'\n\n'So she said.  She said you never tired; or never owned that you\ntired.  Not all the time you lived together.  Not even when you\nfainted, between work and fasting.  But I told you that, the last\ntime I came.'\n\n'You did,' she answered.  'And I implored you to tell me nothing\nmore; and you made me a solemn promise, Richard, that you never\nwould.'\n\n'A solemn promise,' he repeated, with a drivelling laugh and vacant\nstare.  'A solemn promise.  To he sure.  A solemn promise!'\nAwakening, as it were, after a time; in the same manner as before;\nhe said with sudden animation:\n\n'How can I help it, Margaret?  What am I to do?  She has been to me\nagain!'\n\n'Again!' cried Meg, clasping her hands.  'O, does she think of me\nso often!  Has she been again!'\n\n'Twenty times again,' said Richard.  'Margaret, she haunts me.  She\ncomes behind me in the street, and thrusts it in my hand.  I hear\nher foot upon the ashes when I'm at my work (ha, ha! that an't\noften), and before I can turn my head, her voice is in my ear,\nsaying, \"Richard, don't look round.  For Heaven's love, give her\nthis!\"  She brings it where I live:  she sends it in letters; she\ntaps at the window and lays it on the sill.  What CAN I do?  Look\nat it!\"\n\nHe held out in his hand a little purse, and chinked the money it\nenclosed.\n\n'Hide it,' sad Meg.  'Hide it!  When she comes again, tell her,\nRichard, that I love her in my soul.  That I never lie down to\nsleep, but I bless her, and pray for her.  That, in my solitary\nwork, I never cease to have her in my thoughts.  That she is with\nme, night and day.  That if I died to-morrow, I would remember her\nwith my last breath.  But, that I cannot look upon it!'\n\nHe slowly recalled his hand, and crushing the purse together, said\nwith a kind of drowsy thoughtfulness:\n\n'I told her so.  I told her so, as plain as words could speak.\nI've taken this gift back and left it at her door, a dozen times\nsince then.  But when she came at last, and stood before me, face\nto face, what could I do?'\n\n'You saw her!' exclaimed Meg.  'You saw her!  O, Lilian, my sweet\ngirl!  O, Lilian, Lilian!'\n\n'I saw her,' he went on to say, not answering, but engaged in the\nsame slow pursuit of his own thoughts.  'There she stood:\ntrembling!  \"How does she look, Richard?  Does she ever speak of\nme?  Is she thinner?  My old place at the table:  what's in my old\nplace?  And the frame she taught me our old work on - has she burnt\nit, Richard!\"  There she was.  I heard her say it.'\n\nMeg checked her sobs, and with the tears streaming from her eyes,\nbent over him to listen.  Not to lose a breath.\n\nWith his arms resting on his knees; and stooping forward in his\nchair, as if what he said were written on the ground in some half\nlegible character, which it was his occupation to decipher and\nconnect; he went on.\n\n'\"Richard, I have fallen very low; and you may guess how much I\nhave suffered in having this sent back, when I can bear to bring it\nin my hand to you.  But you loved her once, even in my memory,\ndearly.  Others stepped in between you; fears, and jealousies, and\ndoubts, and vanities, estranged you from her; but you did love her,\neven in my memory!\"  I suppose I did,' he said, interrupting\nhimself for a moment.  'I did!  That's neither here nor there - \"O\nRichard, if you ever did; if you have any memory for what is gone\nand lost, take it to her once more.  Once more!  Tell her how I\nlaid my head upon your shoulder, where her own head might have\nlain, and was so humble to you, Richard.  Tell her that you looked\ninto my face, and saw the beauty which she used to praise, all\ngone:  all gone:  and in its place, a poor, wan, hollow cheek, that\nshe would weep to see.  Tell her everything, and take it back, and\nshe will not refuse again.  She will not have the heart!\"'\n\nSo he sat musing, and repeating the last words, until he woke\nagain, and rose.\n\n'You won't take it, Margaret?'\n\nShe shook her head, and motioned an entreaty to him to leave her.\n\n'Good night, Margaret.'\n\n'Good night!'\n\nHe turned to look upon her; struck by her sorrow, and perhaps by\nthe pity for himself which trembled in her voice.  It was a quick\nand rapid action; and for the moment some flash of his old bearing\nkindled in his form.  In the next he went as he had come.  Nor did\nthis glimmer of a quenched fire seem to light him to a quicker\nsense of his debasement.\n\nIn any mood, in any grief, in any torture of the mind or body,\nMeg's work must be done.  She sat down to her task, and plied it.\nNight, midnight.  Still she worked.\n\nShe had a meagre fire, the night being very cold; and rose at\nintervals to mend it.  The Chimes rang half-past twelve while she\nwas thus engaged; and when they ceased she heard a gentle knocking\nat the door.  Before she could so much as wonder who was there, at\nthat unusual hour, it opened.\n\nO Youth and Beauty, happy as ye should be, look at this.  O Youth\nand Beauty, blest and blessing all within your reach, and working\nout the ends of your Beneficent Creator, look at this!\n\nShe saw the entering figure; screamed its name; cried 'Lilian!'\n\nIt was swift, and fell upon its knees before her:  clinging to her\ndress.\n\n'Up, dear!  Up!  Lilian!  My own dearest!'\n\n'Never more, Meg; never more!  Here!  Here!  Close to you, holding\nto you, feeling your dear breath upon my face!'\n\n'Sweet Lilian!  Darling Lilian!  Child of my heart - no mother's\nlove can be more tender - lay your head upon my breast!'\n\n'Never more, Meg.  Never more!  When I first looked into your face,\nyou knelt before me.  On my knees before you, let me die.  Let it\nbe here!'\n\n'You have come back.  My Treasure!  We will live together, work\ntogether, hope together, die together!'\n\n'Ah!  Kiss my lips, Meg; fold your arms about me; press me to your\nbosom; look kindly on me; but don't raise me.  Let it be here.  Let\nme see the last of your dear face upon my knees!'\n\nO Youth and Beauty, happy as ye should be, look at this!  O Youth\nand Beauty, working out the ends of your Beneficent Creator, look\nat this!\n\n'Forgive me, Meg!  So dear, so dear!  Forgive me!  I know you do, I\nsee you do, but say so, Meg!'\n\nShe said so, with her lips on Lilian's cheek.  And with her arms\ntwined round - she knew it now - a broken heart.\n\n'His blessing on you, dearest love.  Kiss me once more!  He\nsuffered her to sit beside His feet, and dry them with her hair.  O\nMeg, what Mercy and Compassion!'\n\nAs she died, the Spirit of the child returning, innocent and\nradiant, touched the old man with its hand, and beckoned him away.\n\n\n\nCHAPTER IV - Fourth Quarter.\n\n\n\nSOME new remembrance of the ghostly figures in the Bells; some\nfaint impression of the ringing of the Chimes; some giddy\nconsciousness of having seen the swarm of phantoms reproduced and\nreproduced until the recollection of them lost itself in the\nconfusion of their numbers; some hurried knowledge, how conveyed to\nhim he knew not, that more years had passed; and Trotty, with the\nSpirit of the child attending him, stood looking on at mortal\ncompany.\n\nFat company, rosy-cheeked company, comfortable company.  They were\nbut two, but they were red enough for ten.  They sat before a\nbright fire, with a small low table between them; and unless the\nfragrance of hot tea and muffins lingered longer in that room than\nin most others, the table had seen service very lately.  But all\nthe cups and saucers being clean, and in their proper places in the\ncorner-cupboard; and the brass toasting-fork hanging in its usual\nnook and spreading its four idle fingers out as if it wanted to be\nmeasured for a glove; there remained no other visible tokens of the\nmeal just finished, than such as purred and washed their whiskers\nin the person of the basking cat, and glistened in the gracious,\nnot to say the greasy, faces of her patrons.\n\nThis cosy couple (married, evidently) had made a fair division of\nthe fire between them, and sat looking at the glowing sparks that\ndropped into the grate; now nodding off into a doze; now waking up\nagain when some hot fragment, larger than the rest, came rattling\ndown, as if the fire were coming with it.\n\nIt was in no danger of sudden extinction, however; for it gleamed\nnot only in the little room, and on the panes of window-glass in\nthe door, and on the curtain half drawn across them, but in the\nlittle shop beyond.  A little shop, quite crammed and choked with\nthe abundance of its stock; a perfectly voracious little shop, with\na maw as accommodating and full as any shark's.  Cheese, butter,\nfirewood, soap, pickles, matches, bacon, table-beer, peg-tops,\nsweetmeats, boys' kites, bird-seed, cold ham, birch brooms, hearth-\nstones, salt, vinegar, blacking, red-herrings, stationery, lard,\nmushroom-ketchup, staylaces, loaves of bread, shuttlecocks, eggs,\nand slate pencil; everything was fish that came to the net of this\ngreedy little shop, and all articles were in its net.  How many\nother kinds of petty merchandise were there, it would be difficult\nto say; but balls of packthread, ropes of onions, pounds of\ncandles, cabbage-nets, and brushes, hung in bunches from the\nceiling, like extraordinary fruit; while various odd canisters\nemitting aromatic smells, established the veracity of the\ninscription over the outer door, which informed the public that the\nkeeper of this little shop was a licensed dealer in tea, coffee,\ntobacco, pepper, and snuff.\n\nGlancing at such of these articles as were visible in the shining\nof the blaze, and the less cheerful radiance of two smoky lamps\nwhich burnt but dimly in the shop itself, as though its plethora\nsat heavy on their lungs; and glancing, then, at one of the two\nfaces by the parlour-fire; Trotty had small difficulty in\nrecognising in the stout old lady, Mrs. Chickenstalker:  always\ninclined to corpulency, even in the days when he had known her as\nestablished in the general line, and having a small balance against\nhim in her books.\n\nThe features of her companion were less easy to him.  The great\nbroad chin, with creases in it large enough to hide a finger in;\nthe astonished eyes, that seemed to expostulate with themselves for\nsinking deeper and deeper into the yielding fat of the soft face;\nthe nose afflicted with that disordered action of its functions\nwhich is generally termed The Snuffles; the short thick throat and\nlabouring chest, with other beauties of the like description;\nthough calculated to impress the memory, Trotty could at first\nallot to nobody he had ever known:  and yet he had some\nrecollection of them too.  At length, in Mrs. Chickenstalker's\npartner in the general line, and in the crooked and eccentric line\nof life, he recognised the former porter of Sir Joseph Bowley; an\napoplectic innocent, who had connected himself in Trotty's mind\nwith Mrs. Chickenstalker years ago, by giving him admission to the\nmansion where he had confessed his obligations to that lady, and\ndrawn on his unlucky head such grave reproach.\n\nTrotty had little interest in a change like this, after the changes\nhe had seen; but association is very strong sometimes; and he\nlooked involuntarily behind the parlour-door, where the accounts of\ncredit customers were usually kept in chalk.  There was no record\nof his name.  Some names were there, but they were strange to him,\nand infinitely fewer than of old; from which he argued that the\nporter was an advocate of ready-money transactions, and on coming\ninto the business had looked pretty sharp after the Chickenstalker\ndefaulters.\n\nSo desolate was Trotty, and so mournful for the youth and promise\nof his blighted child, that it was a sorrow to him, even to have no\nplace in Mrs. Chickenstalker's ledger.\n\n'What sort of a night is it, Anne?' inquired the former porter of\nSir Joseph Bowley, stretching out his legs before the fire, and\nrubbing as much of them as his short arms could reach; with an air\nthat added, 'Here I am if it's bad, and I don't want to go out if\nit's good.'\n\n'Blowing and sleeting hard,' returned his wife; 'and threatening\nsnow.  Dark.  And very cold.'\n\n'I'm glad to think we had muffins,' said the former porter, in the\ntone of one who had set his conscience at rest.  'It's a sort of\nnight that's meant for muffins.  Likewise crumpets.  Also Sally\nLunns.'\n\nThe former porter mentioned each successive kind of eatable, as if\nhe were musingly summing up his good actions.  After which he\nrubbed his fat legs as before, and jerking them at the knees to get\nthe fire upon the yet unroasted parts, laughed as if somebody had\ntickled him.\n\n'You're in spirits, Tugby, my dear,' observed his wife.\n\nThe firm was Tugby, late Chickenstalker.\n\n'No,' said Tugby.  'No.  Not particular.  I'm a little elewated.\nThe muffins came so pat!'\n\nWith that he chuckled until he was black in the face; and had so\nmuch ado to become any other colour, that his fat legs took the\nstrangest excursions into the air.  Nor were they reduced to\nanything like decorum until Mrs. Tugby had thumped him violently on\nthe back, and shaken him as if he were a great bottle.\n\n'Good gracious, goodness, lord-a-mercy bless and save the man!'\ncried Mrs. Tugby, in great terror.  'What's he doing?'\n\nMr. Tugby wiped his eyes, and faintly repeated that he found\nhimself a little elewated.\n\n'Then don't be so again, that's a dear good soul,' said Mrs. Tugby,\n'if you don't want to frighten me to death, with your struggling\nand fighting!'\n\nMr. Tugby said he wouldn't; but, his whole existence was a fight,\nin which, if any judgment might be founded on the constantly-\nincreasing shortness of his breath, and the deepening purple of his\nface, he was always getting the worst of it.\n\n'So it's blowing, and sleeting, and threatening snow; and it's\ndark, and very cold, is it, my dear?' said Mr. Tugby, looking at\nthe fire, and reverting to the cream and marrow of his temporary\nelevation.\n\n'Hard weather indeed,' returned his wife, shaking her head.\n\n'Aye, aye!  Years,' said Mr. Tugby, 'are like Christians in that\nrespect.  Some of 'em die hard; some of 'em die easy.  This one\nhasn't many days to run, and is making a fight for it.  I like him\nall the better.  There's a customer, my love!'\n\nAttentive to the rattling door, Mrs. Tugby had already risen.\n\n'Now then!' said that lady, passing out into the little shop.\n'What's wanted?  Oh!  I beg your pardon, sir, I'm sure.  I didn't\nthink it was you.'\n\nShe made this apology to a gentleman in black, who, with his\nwristbands tucked up, and his hat cocked loungingly on one side,\nand his hands in his pockets, sat down astride on the table-beer\nbarrel, and nodded in return.\n\n'This is a bad business up-stairs, Mrs. Tugby,' said the gentleman.\n'The man can't live.'\n\n'Not the back-attic can't!' cried Tugby, coming out into the shop\nto join the conference.\n\n'The back-attic, Mr. Tugby,' said the gentleman, 'is coming down-\nstairs fast, and will be below the basement very soon.'\n\nLooking by turns at Tugby and his wife, he sounded the barrel with\nhis knuckles for the depth of beer, and having found it, played a\ntune upon the empty part.\n\n'The back-attic, Mr. Tugby,' said the gentleman:  Tugby having\nstood in silent consternation for some time:  'is Going.'\n\n'Then,' said Tugby, turning to his wife, 'he must Go, you know,\nbefore he's Gone.'\n\n'I don't think you can move him,' said the gentleman, shaking his\nhead.  'I wouldn't take the responsibility of saying it could be\ndone, myself.  You had better leave him where he is.  He can't live\nlong.'\n\n'It's the only subject,' said Tugby, bringing the butter-scale down\nupon the counter with a crash, by weighing his fist on it, 'that\nwe've ever had a word upon; she and me; and look what it comes to!\nHe's going to die here, after all.  Going to die upon the premises.\nGoing to die in our house!'\n\n'And where should he have died, Tugby?' cried his wife.\n\n'In the workhouse,' he returned.  'What are workhouses made for?'\n\n'Not for that,' said Mrs. Tugby, with great energy.  'Not for that!\nNeither did I marry you for that.  Don't think it, Tugby.  I won't\nhave it.  I won't allow it.  I'd be separated first, and never see\nyour face again.  When my widow's name stood over that door, as it\ndid for many years:  this house being known as Mrs.\nChickenstalker's far and wide, and never known but to its honest\ncredit and its good report:  when my widow's name stood over that\ndoor, Tugby, I knew him as a handsome, steady, manly, independent\nyouth; I knew her as the sweetest-looking, sweetest-tempered girl,\neyes ever saw; I knew her father (poor old creetur, he fell down\nfrom the steeple walking in his sleep, and killed himself), for the\nsimplest, hardest-working, childest-hearted man, that ever drew the\nbreath of life; and when I turn them out of house and home, may\nangels turn me out of Heaven.  As they would!  And serve me right!'\n\nHer old face, which had been a plump and dimpled one before the\nchanges which had come to pass, seemed to shine out of her as she\nsaid these words; and when she dried her eyes, and shook her head\nand her handkerchief at Tugby, with an expression of firmness which\nit was quite clear was not to be easily resisted, Trotty said,\n'Bless her!  Bless her!'\n\nThen he listened, with a panting heart, for what should follow.\nKnowing nothing yet, but that they spoke of Meg.\n\nIf Tugby had been a little elevated in the parlour, he more than\nbalanced that account by being not a little depressed in the shop,\nwhere he now stood staring at his wife, without attempting a reply;\nsecretly conveying, however - either in a fit of abstraction or as\na precautionary measure - all the money from the till into his own\npockets, as he looked at her.\n\nThe gentleman upon the table-beer cask, who appeared to be some\nauthorised medical attendant upon the poor, was far too well\naccustomed, evidently, to little differences of opinion between man\nand wife, to interpose any remark in this instance.  He sat softly\nwhistling, and turning little drops of beer out of the tap upon the\nground, until there was a perfect calm:  when he raised his head,\nand said to Mrs. Tugby, late Chickenstalker:\n\n'There's something interesting about the woman, even now.  How did\nshe come to marry him?'\n\n'Why that,' said Mrs. Tugby, taking a seat near him, 'is not the\nleast cruel part of her story, sir.  You see they kept company, she\nand Richard, many years ago.  When they were a young and beautiful\ncouple, everything was settled, and they were to have been married\non a New Year's Day.  But, somehow, Richard got it into his head,\nthrough what the gentlemen told him, that he might do better, and\nthat he'd soon repent it, and that she wasn't good enough for him,\nand that a young man of spirit had no business to be married.  And\nthe gentlemen frightened her, and made her melancholy, and timid of\nhis deserting her, and of her children coming to the gallows, and\nof its being wicked to be man and wife, and a good deal more of it.\nAnd in short, they lingered and lingered, and their trust in one\nanother was broken, and so at last was the match.  But the fault\nwas his.  She would have married him, sir, joyfully.  I've seen her\nheart swell many times afterwards, when he passed her in a proud\nand careless way; and never did a woman grieve more truly for a\nman, than she for Richard when he first went wrong.'\n\n'Oh! he went wrong, did he?' said the gentleman, pulling out the\nvent-peg of the table-beer, and trying to peep down into the barrel\nthrough the hole.\n\n'Well, sir, I don't know that he rightly understood himself, you\nsee.  I think his mind was troubled by their having broke with one\nanother; and that but for being ashamed before the gentlemen, and\nperhaps for being uncertain too, how she might take it, he'd have\ngone through any suffering or trial to have had Meg's promise and\nMeg's hand again.  That's my belief.  He never said so; more's the\npity!  He took to drinking, idling, bad companions:  all the fine\nresources that were to be so much better for him than the Home he\nmight have had.  He lost his looks, his character, his health, his\nstrength, his friends, his work:  everything!'\n\n'He didn't lose everything, Mrs. Tugby,' returned the gentleman,\n'because he gained a wife; and I want to know how he gained her.'\n\n'I'm coming to it, sir, in a moment.  This went on for years and\nyears; he sinking lower and lower; she enduring, poor thing,\nmiseries enough to wear her life away.  At last, he was so cast\ndown, and cast out, that no one would employ or notice him; and\ndoors were shut upon him, go where he would.  Applying from place\nto place, and door to door; and coming for the hundredth time to\none gentleman who had often and often tried him (he was a good\nworkman to the very end); that gentleman, who knew his history,\nsaid, \"I believe you are incorrigible; there is only one person in\nthe world who has a chance of reclaiming you; ask me to trust you\nno more, until she tries to do it.\"  Something like that, in his\nanger and vexation.'\n\n'Ah!' said the gentleman.  'Well?'\n\n'Well, sir, he went to her, and kneeled to her; said it was so;\nsaid it ever had been so; and made a prayer to her to save him.'\n\n'And she? - Don't distress yourself, Mrs. Tugby.'\n\n'She came to me that night to ask me about living here.  \"What he\nwas once to me,\" she said, \"is buried in a grave, side by side with\nwhat I was to him.  But I have thought of this; and I will make the\ntrial.  In the hope of saving him; for the love of the light-\nhearted girl (you remember her) who was to have been married on a\nNew Year's Day; and for the love of her Richard.\"  And she said he\nhad come to her from Lilian, and Lilian had trusted to him, and she\nnever could forget that.  So they were married; and when they came\nhome here, and I saw them, I hoped that such prophecies as parted\nthem when they were young, may not often fulfil themselves as they\ndid in this case, or I wouldn't be the makers of them for a Mine of\nGold.'\n\nThe gentleman got off the cask, and stretched himself, observing:\n\n'I suppose he used her ill, as soon as they were married?'\n\n'I don't think he ever did that,' said Mrs. Tugby, shaking her\nhead, and wiping her eyes.  'He went on better for a short time;\nbut, his habits were too old and strong to be got rid of; he soon\nfell back a little; and was falling fast back, when his illness\ncame so strong upon him.  I think he has always felt for her.  I am\nsure he has.  I have seen him, in his crying fits and tremblings,\ntry to kiss her hand; and I have heard him call her \"Meg,\" and say\nit was her nineteenth birthday.  There he has been lying, now,\nthese weeks and months.  Between him and her baby, she has not been\nable to do her old work; and by not being able to be regular, she\nhas lost it, even if she could have done it.  How they have lived,\nI hardly know!'\n\n'I know,' muttered Mr. Tugby; looking at the till, and round the\nshop, and at his wife; and rolling his head with immense\nintelligence.  'Like Fighting Cocks!'\n\nHe was interrupted by a cry - a sound of lamentation - from the\nupper story of the house.  The gentleman moved hurriedly to the\ndoor.\n\n'My friend,' he said, looking back, 'you needn't discuss whether he\nshall be removed or not.  He has spared you that trouble, I\nbelieve.'\n\nSaying so, he ran up-stairs, followed by Mrs. Tugby; while Mr.\nTugby panted and grumbled after them at leisure:  being rendered\nmore than commonly short-winded by the weight of the till, in which\nthere had been an inconvenient quantity of copper.  Trotty, with\nthe child beside him, floated up the staircase like mere air.\n\n'Follow her!  Follow her!  Follow her!'  He heard the ghostly\nvoices in the Bells repeat their words as he ascended.  'Learn it,\nfrom the creature dearest to your heart!'\n\nIt was over.  It was over.  And this was she, her father's pride\nand joy!  This haggard, wretched woman, weeping by the bed, if it\ndeserved that name, and pressing to her breast, and hanging down\nher head upon, an infant.  Who can tell how spare, how sickly, and\nhow poor an infant!  Who can tell how dear!\n\n'Thank God!' cried Trotty, holding up his folded hands.  'O, God be\nthanked!  She loves her child!'\n\nThe gentleman, not otherwise hard-hearted or indifferent to such\nscenes, than that he saw them every day, and knew that they were\nfigures of no moment in the Filer sums - mere scratches in the\nworking of these calculations - laid his hand upon the heart that\nbeat no more, and listened for the breath, and said, 'His pain is\nover.  It's better as it is!'  Mrs. Tugby tried to comfort her with\nkindness.  Mr. Tugby tried philosophy.\n\n'Come, come!' he said, with his hands in his pockets, 'you mustn't\ngive way, you know.  That won't do.  You must fight up.  What would\nhave become of me if I had given way when I was porter, and we had\nas many as six runaway carriage-doubles at our door in one night!\nBut, I fell back upon my strength of mind, and didn't open it!'\n\nAgain Trotty heard the voices saying, 'Follow her!'  He turned\ntowards his guide, and saw it rising from him, passing through the\nair.  'Follow her!' it said.  And vanished.\n\nHe hovered round her; sat down at her feet; looked up into her face\nfor one trace of her old self; listened for one note of her old\npleasant voice.  He flitted round the child:  so wan, so\nprematurely old, so dreadful in its gravity, so plaintive in its\nfeeble, mournful, miserable wail.  He almost worshipped it.  He\nclung to it as her only safeguard; as the last unbroken link that\nbound her to endurance.  He set his father's hope and trust on the\nfrail baby; watched her every look upon it as she held it in her\narms; and cried a thousand times, 'She loves it!  God be thanked,\nshe loves it!'\n\nHe saw the woman tend her in the night; return to her when her\ngrudging husband was asleep, and all was still; encourage her, shed\ntears with her, set nourishment before her.  He saw the day come,\nand the night again; the day, the night; the time go by; the house\nof death relieved of death; the room left to herself and to the\nchild; he heard it moan and cry; he saw it harass her, and tire her\nout, and when she slumbered in exhaustion, drag her back to\nconsciousness, and hold her with its little hands upon the rack;\nbut she was constant to it, gentle with it, patient with it.\nPatient!  Was its loving mother in her inmost heart and soul, and\nhad its Being knitted up with hers as when she carried it unborn.\n\nAll this time, she was in want:  languishing away, in dire and\npining want.  With the baby in her arms, she wandered here and\nthere, in quest of occupation; and with its thin face lying in her\nlap, and looking up in hers, did any work for any wretched sum; a\nday and night of labour for as many farthings as there were figures\non the dial.  If she had quarrelled with it; if she had neglected\nit; if she had looked upon it with a moment's hate; if, in the\nfrenzy of an instant, she had struck it!  No.  His comfort was, She\nloved it always.\n\nShe told no one of her extremity, and wandered abroad in the day\nlest she should be questioned by her only friend:  for any help she\nreceived from her hands, occasioned fresh disputes between the good\nwoman and her husband; and it was new bitterness to be the daily\ncause of strife and discord, where she owed so much.\n\nShe loved it still.  She loved it more and more.  But a change fell\non the aspect of her love.  One night.\n\nShe was singing faintly to it in its sleep, and walking to and fro\nto hush it, when her door was softly opened, and a man looked in.\n\n'For the last time,' he said.\n\n'William Fern!'\n\n'For the last time.'\n\nHe listened like a man pursued:  and spoke in whispers.\n\n'Margaret, my race is nearly run.  I couldn't finish it, without a\nparting word with you.  Without one grateful word.'\n\n'What have you done?' she asked:  regarding him with terror.\n\nHe looked at her, but gave no answer.\n\nAfter a short silence, he made a gesture with his hand, as if he\nset her question by; as if he brushed it aside; and said:\n\n'It's long ago, Margaret, now:  but that night is as fresh in my\nmemory as ever 'twas.  We little thought, then,' he added, looking\nround, 'that we should ever meet like this.  Your child, Margaret?\nLet me have it in my arms.  Let me hold your child.'\n\nHe put his hat upon the floor, and took it.  And he trembled as he\ntook it, from head to foot.\n\n'Is it a girl?'\n\n'Yes.'\n\nHe put his hand before its little face.\n\n'See how weak I'm grown, Margaret, when I want the courage to look\nat it!  Let her be, a moment.  I won't hurt her.  It's long ago,\nbut - What's her name?'\n\n'Margaret,' she answered, quickly.\n\n'I'm glad of that,' he said.  'I'm glad of that!'  He seemed to\nbreathe more freely; and after pausing for an instant, took away\nhis hand, and looked upon the infant's face.  But covered it again,\nimmediately.\n\n'Margaret!' he said; and gave her back the child.  'It's Lilian's.'\n\n'Lilian's!'\n\n'I held the same face in my arms when Lilian's mother died and left\nher.'\n\n'When Lilian's mother died and left her!' she repeated, wildly.\n\n'How shrill you speak!  Why do you fix your eyes upon me so?\nMargaret!'\n\nShe sunk down in a chair, and pressed the infant to her breast, and\nwept over it.  Sometimes, she released it from her embrace, to look\nanxiously in its face:  then strained it to her bosom again.  At\nthose times, when she gazed upon it, then it was that something\nfierce and terrible began to mingle with her love.  Then it was\nthat her old father quailed.\n\n'Follow her!' was sounded through the house.  'Learn it, from the\ncreature dearest to your heart!'\n\n'Margaret,' said Fern, bending over her, and kissing her upon the\nbrow:  'I thank you for the last time.  Good night.  Good bye!  Put\nyour hand in mine, and tell me you'll forget me from this hour, and\ntry to think the end of me was here.'\n\n'What have you done?' she asked again.\n\n'There'll be a Fire to-night,' he said, removing from her.\n'There'll be Fires this winter-time, to light the dark nights,\nEast, West, North, and South.  When you see the distant sky red,\nthey'll be blazing.  When you see the distant sky red, think of me\nno more; or, if you do, remember what a Hell was lighted up inside\nof me, and think you see its flames reflected in the clouds.  Good\nnight.  Good bye!'  She called to him; but he was gone.  She sat\ndown stupefied, until her infant roused her to a sense of hunger,\ncold, and darkness.  She paced the room with it the livelong night,\nhushing it and soothing it.  She said at intervals, 'Like Lilian,\nwhen her mother died and left her!'  Why was her step so quick, her\neye so wild, her love so fierce and terrible, whenever she repeated\nthose words?\n\n'But, it is Love,' said Trotty.  'It is Love.  She'll never cease\nto love it.  My poor Meg!'\n\nShe dressed the child next morning with unusual care - ah, vain\nexpenditure of care upon such squalid robes! - and once more tried\nto find some means of life.  It was the last day of the Old Year.\nShe tried till night, and never broke her fast.  She tried in vain.\n\nShe mingled with an abject crowd, who tarried in the snow, until it\npleased some officer appointed to dispense the public charity (the\nlawful charity; not that once preached upon a Mount), to call them\nin, and question them, and say to this one, 'Go to such a place,'\nto that one, 'Come next week;' to make a football of another\nwretch, and pass him here and there, from hand to hand, from house\nto house, until he wearied and lay down to die; or started up and\nrobbed, and so became a higher sort of criminal, whose claims\nallowed of no delay.  Here, too, she failed.\n\nShe loved her child, and wished to have it lying on her breast.\nAnd that was quite enough.\n\nIt was night:  a bleak, dark, cutting night:  when, pressing the\nchild close to her for warmth, she arrived outside the house she\ncalled her home.  She was so faint and giddy, that she saw no one\nstanding in the doorway until she was close upon it, and about to\nenter.  Then, she recognised the master of the house, who had so\ndisposed himself - with his person it was not difficult - as to\nfill up the whole entry.\n\n'O!' he said softly.  'You have come back?'\n\nShe looked at the child, and shook her head.\n\n'Don't you think you have lived here long enough without paying any\nrent?  Don't you think that, without any money, you've been a\npretty constant customer at this shop, now?' said Mr. Tugby.\n\nShe repeated the same mute appeal.\n\n'Suppose you try and deal somewhere else,' he said.  'And suppose\nyou provide yourself with another lodging.  Come!  Don't you think\nyou could manage it?'\n\nShe said in a low voice, that it was very late.  To-morrow.\n\n'Now I see what you want,' said Tugby; 'and what you mean.  You\nknow there are two parties in this house about you, and you delight\nin setting 'em by the ears.  I don't want any quarrels; I'm\nspeaking softly to avoid a quarrel; but if you don't go away, I'll\nspeak out loud, and you shall cause words high enough to please\nyou.  But you shan't come in.  That I am determined.'\n\nShe put her hair back with her hand, and looked in a sudden manner\nat the sky, and the dark lowering distance.\n\n'This is the last night of an Old Year, and I won't carry ill-blood\nand quarrellings and disturbances into a New One, to please you nor\nanybody else,' said Tugby, who was quite a retail Friend and\nFather.  'I wonder you an't ashamed of yourself, to carry such\npractices into a New Year.  If you haven't any business in the\nworld, but to be always giving way, and always making disturbances\nbetween man and wife, you'd be better out of it.  Go along with\nyou.'\n\n'Follow her!  To desperation!'\n\nAgain the old man heard the voices.  Looking up, he saw the figures\nhovering in the air, and pointing where she went, down the dark\nstreet.\n\n'She loves it!' he exclaimed, in agonised entreaty for her.\n'Chimes! she loves it still!'\n\n'Follow her!'  The shadow swept upon the track she had taken, like\na cloud.\n\nHe joined in the pursuit; he kept close to her; he looked into her\nface.  He saw the same fierce and terrible expression mingling with\nher love, and kindling in her eyes.  He heard her say, 'Like\nLilian!  To be changed like Lilian!' and her speed redoubled.\n\nO, for something to awaken her!  For any sight, or sound, or scent,\nto call up tender recollections in a brain on fire!  For any gentle\nimage of the Past, to rise before her!\n\n'I was her father!  I was her father!' cried the old man,\nstretching out his hands to the dark shadows flying on above.\n'Have mercy on her, and on me!  Where does she go?  Turn her back!\nI was her father!'\n\nBut they only pointed to her, as she hurried on; and said, 'To\ndesperation!  Learn it from the creature dearest to your heart!'  A\nhundred voices echoed it.  The air was made of breath expended in\nthose words.  He seemed to take them in, at every gasp he drew.\nThey were everywhere, and not to be escaped.  And still she hurried\non; the same light in her eyes, the same words in her mouth, 'Like\nLilian!  To be changed like Lilian!'  All at once she stopped.\n\n'Now, turn her back!' exclaimed the old man, tearing his white\nhair.  'My child!  Meg!  Turn her back!  Great Father, turn her\nback!'\n\nIn her own scanty shawl, she wrapped the baby warm.  With her\nfevered hands, she smoothed its limbs, composed its face, arranged\nits mean attire.  In her wasted arms she folded it, as though she\nnever would resign it more.  And with her dry lips, kissed it in a\nfinal pang, and last long agony of Love.\n\nPutting its tiny hand up to her neck, and holding it there, within\nher dress, next to her distracted heart, she set its sleeping face\nagainst her:  closely, steadily, against her:  and sped onward to\nthe River.\n\nTo the rolling River, swift and dim, where Winter Night sat\nbrooding like the last dark thoughts of many who had sought a\nrefuge there before her.  Where scattered lights upon the banks\ngleamed sullen, red, and dull, as torches that were burning there,\nto show the way to Death.  Where no abode of living people cast its\nshadow, on the deep, impenetrable, melancholy shade.\n\nTo the River!  To that portal of Eternity, her desperate footsteps\ntended with the swiftness of its rapid waters running to the sea.\nHe tried to touch her as she passed him, going down to its dark\nlevel:  but, the wild distempered form, the fierce and terrible\nlove, the desperation that had left all human check or hold behind,\nswept by him like the wind.\n\nHe followed her.  She paused a moment on the brink, before the\ndreadful plunge.  He fell down on his knees, and in a shriek\naddressed the figures in the Bells now hovering above them.\n\n'I have learnt it!' cried the old man.  'From the creature dearest\nto my heart!  O, save her, save her!'\n\nHe could wind his fingers in her dress; could hold it!  As the\nwords escaped his lips, he felt his sense of touch return, and knew\nthat he detained her.\n\nThe figures looked down steadfastly upon him.\n\n'I have learnt it!' cried the old man.  'O, have mercy on me in\nthis hour, if, in my love for her, so young and good, I slandered\nNature in the breasts of mothers rendered desperate!  Pity my\npresumption, wickedness, and ignorance, and save her.'  He felt his\nhold relaxing.  They were silent still.\n\n'Have mercy on her!' he exclaimed, 'as one in whom this dreadful\ncrime has sprung from Love perverted; from the strongest, deepest\nLove we fallen creatures know!  Think what her misery must have\nbeen, when such seed bears such fruit!  Heaven meant her to be\ngood.  There is no loving mother on the earth who might not come to\nthis, if such a life had gone before.  O, have mercy on my child,\nwho, even at this pass, means mercy to her own, and dies herself,\nand perils her immortal soul, to save it!'\n\nShe was in his arms.  He held her now.  His strength was like a\ngiant's.\n\n'I see the Spirit of the Chimes among you!' cried the old man,\nsingling out the child, and speaking in some inspiration, which\ntheir looks conveyed to him.  'I know that our inheritance is held\nin store for us by Time.  I know there is a sea of Time to rise one\nday, before which all who wrong us or oppress us will be swept away\nlike leaves.  I see it, on the flow!  I know that we must trust and\nhope, and neither doubt ourselves, nor doubt the good in one\nanother.  I have learnt it from the creature dearest to my heart.\nI clasp her in my arms again.  O Spirits, merciful and good, I take\nyour lesson to my breast along with her!  O Spirits, merciful and\ngood, I am grateful!'\n\nHe might have said more; but, the Bells, the old familiar Bells,\nhis own dear, constant, steady friends, the Chimes, began to ring\nthe joy-peals for a New Year:  so lustily, so merrily, so happily,\nso gaily, that he leapt upon his feet, and broke the spell that\nbound him.\n\n\n'And whatever you do, father,' said Meg, 'don't eat tripe again,\nwithout asking some doctor whether it's likely to agree with you;\nfor how you HAVE been going on, Good gracious!'\n\nShe was working with her needle, at the little table by the fire;\ndressing her simple gown with ribbons for her wedding.  So quietly\nhappy, so blooming and youthful, so full of beautiful promise, that\nhe uttered a great cry as if it were an Angel in his house; then\nflew to clasp her in his arms.\n\nBut, he caught his feet in the newspaper, which had fallen on the\nhearth; and somebody came rushing in between them.\n\n'No!' cried the voice of this same somebody; a generous and jolly\nvoice it was!  'Not even you.  Not even you.  The first kiss of Meg\nin the New Year is mine.  Mine!  I have been waiting outside the\nhouse, this hour, to hear the Bells and claim it.  Meg, my precious\nprize, a happy year!  A life of happy years, my darling wife!'\n\nAnd Richard smothered her with kisses.\n\nYou never in all your life saw anything like Trotty after this.  I\ndon't care where you have lived or what you have seen; you never in\nall your life saw anything at all approaching him!  He sat down in\nhis chair and beat his knees and cried; he sat down in his chair\nand beat his knees and laughed; he sat down in his chair and beat\nhis knees and laughed and cried together; he got out of his chair\nand hugged Meg; he got out of his chair and hugged Richard; he got\nout of his chair and hugged them both at once; he kept running up\nto Meg, and squeezing her fresh face between his hands and kissing\nit, going from her backwards not to lose sight of it, and running\nup again like a figure in a magic lantern; and whatever he did, he\nwas constantly sitting himself down in his chair, and never\nstopping in it for one single moment; being - that's the truth -\nbeside himself with joy.\n\n'And to-morrow's your wedding-day, my pet!' cried Trotty.  'Your\nreal, happy wedding-day!'\n\n'To-day!' cried Richard, shaking hands with him.  'To-day.  The\nChimes are ringing in the New Year.  Hear them!'\n\nThey WERE ringing!  Bless their sturdy hearts, they WERE ringing!\nGreat Bells as they were; melodious, deep-mouthed, noble Bells;\ncast in no common metal; made by no common founder; when had they\never chimed like that, before!\n\n'But, to-day, my pet,' said Trotty.  'You and Richard had some\nwords to-day.'\n\n'Because he's such a bad fellow, father,' said Meg.  'An't you,\nRichard?  Such a headstrong, violent man!  He'd have made no more\nof speaking his mind to that great Alderman, and putting HIM down I\ndon't know where, than he would of - '\n\n' - Kissing Meg,' suggested Richard.  Doing it too!\n\n'No.  Not a bit more,' said Meg.  'But I wouldn't let him, father.\nWhere would have been the use!'\n\n'Richard my boy!' cried Trotty.  'You was turned up Trumps\noriginally; and Trumps you must be, till you die!  But, you were\ncrying by the fire to-night, my pet, when I came home!  Why did you\ncry by the fire?'\n\n'I was thinking of the years we've passed together, father.  Only\nthat.  And thinking that you might miss me, and be lonely.'\n\nTrotty was backing off to that extraordinary chair again, when the\nchild, who had been awakened by the noise, came running in half-\ndressed.\n\n'Why, here she is!' cried Trotty, catching her up.  'Here's little\nLilian!  Ha ha ha!  Here we are and here we go!  O here we are and\nhere we go again!  And here we are and here we go! and Uncle Will\ntoo!'  Stopping in his trot to greet him heartily.  'O, Uncle Will,\nthe vision that I've had to-night, through lodging you!  O, Uncle\nWill, the obligations that you've laid me under, by your coming, my\ngood friend!'\n\nBefore Will Fern could make the least reply, a band of music burst\ninto the room, attended by a lot of neighbours, screaming 'A Happy\nNew Year, Meg!'  'A Happy Wedding!'  'Many of em!' and other\nfragmentary good wishes of that sort.  The Drum (who was a private\nfriend of Trotty's) then stepped forward, and said:\n\n'Trotty Veck, my boy!  It's got about, that your daughter is going\nto be married to-morrow.  There an't a soul that knows you that\ndon't wish you well, or that knows her and don't wish her well.  Or\nthat knows you both, and don't wish you both all the happiness the\nNew Year can bring.  And here we are, to play it in and dance it\nin, accordingly.'\n\nWhich was received with a general shout.  The Drum was rather\ndrunk, by-the-bye; but, never mind.\n\n'What a happiness it is, I'm sure,' said Trotty, 'to be so\nesteemed!  How kind and neighbourly you are!  It's all along of my\ndear daughter.  She deserves it!'\n\nThey were ready for a dance in half a second (Meg and Richard at\nthe top); and the Drum was on the very brink of feathering away\nwith all his power; when a combination of prodigious sounds was\nheard outside, and a good-humoured comely woman of some fifty years\nof age, or thereabouts, came running in, attended by a man bearing\na stone pitcher of terrific size, and closely followed by the\nmarrow-bones and cleavers, and the bells; not THE Bells, but a\nportable collection on a frame.\n\nTrotty said, 'It's Mrs. Chickenstalker!'  And sat down and beat his\nknees again.\n\n'Married, and not tell me, Meg!' cried the good woman.  'Never!  I\ncouldn't rest on the last night of the Old Year without coming to\nwish you joy.  I couldn't have done it, Meg.  Not if I had been\nbed-ridden.  So here I am; and as it's New Year's Eve, and the Eve\nof your wedding too, my dear, I had a little flip made, and brought\nit with me.'\n\nMrs. Chickenstalker's notion of a little flip did honour to her\ncharacter.  The pitcher steamed and smoked and reeked like a\nvolcano; and the man who had carried it, was faint.\n\n'Mrs. Tugby!' said Trotty, who had been going round and round her,\nin an ecstasy. - 'I SHOULD say, Chickenstalker - Bless your heart\nand soul!  A Happy New Year, and many of 'em!  Mrs. Tugby,' said\nTrotty when he had saluted her; - 'I SHOULD say, Chickenstalker -\nThis is William Fern and Lilian.'\n\nThe worthy dame, to his surprise, turned very pale and very red.\n\n'Not Lilian Fern whose mother died in Dorsetshire!' said she.\n\nHer uncle answered 'Yes,' and meeting hastily, they exchanged some\nhurried words together; of which the upshot was, that Mrs.\nChickenstalker shook him by both hands; saluted Trotty on his cheek\nagain of her own free will; and took the child to her capacious\nbreast.\n\n'Will Fern!' said Trotty, pulling on his right-hand muffler.  'Not\nthe friend you was hoping to find?'\n\n'Ay!' returned Will, putting a hand on each of Trotty's shoulders.\n'And like to prove a'most as good a friend, if that can be, as one\nI found.'\n\n'O!' said Trotty.  'Please to play up there.  Will you have the\ngoodness!'\n\nTo the music of the band, and, the bells, the marrow-bones and\ncleavers, all at once; and while the Chimes were yet in lusty\noperation out of doors; Trotty, making Meg and Richard, second\ncouple, led off Mrs. Chickenstalker down the dance, and danced it\nin a step unknown before or since; founded on his own peculiar\ntrot.\n\nHad Trotty dreamed?  Or, are his joys and sorrows, and the actors\nin them, but a dream; himself a dream; the teller of this tale a\ndreamer, waking but now?  If it be so, O listener, dear to him in\nall his visions, try to bear in mind the stern realities from which\nthese shadows come; and in your sphere - none is too wide, and none\ntoo limited for such an end - endeavour to correct, improve, and\nsoften them.  So may the New Year be a happy one to you, happy to\nmany more whose happiness depends on you!  So may each year be\nhappier than the last, and not the meanest of our brethren or\nsisterhood debarred their rightful share, in what our Great Creator\nformed them to enjoy.\n\n\n\n\n\nEnd of The Project Gutenberg Etext of The Chimes, by Charles Dickens\n\n****The Project Gutenberg Etext of The Cricket on the Hearth****\n#10 in our series by Charles Dickens\n\n\nCopyright laws are changing all over the world, be sure to check\nthe copyright laws for your country before posting these files!!\n\nPlease take a look at the important information in this header.\nWe encourage you to keep this file on your own disk, keeping an\nelectronic path open for the next readers.  Do not remove this.\n\n\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\n\n**Etexts Readable By Both Humans and By Computers, Since 1971**\n\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\n\nInformation on contacting Project Gutenberg to get Etexts, and\nfurther information is included below.  We need your donations.\n\n\nThe Cricket on the Hearth\n\nby Charles Dickens\n\nOctober, 1996  [Etext #678]\n\n\n****The Project Gutenberg Etext of The Cricket on the Hearth****\n*****This file should be named tcoth10.txt or tcoth10.zip******\n\nCorrected EDITIONS of our etexts get a new NUMBER, tcoth11.txt.\nVERSIONS based on separate sources get new LETTER, tcoth10a.txt.\n\n\nWe are now trying to release all our books one month in advance\nof the official release dates, for time for better editing.\n\nPlease note:  neither this list nor its contents are final till\nmidnight of the last day of the month of any such announcement.\nThe official release date of all Project Gutenberg Etexts is at\nMidnight, Central Time, of the last day of the stated month.  A\npreliminary version may often be posted for suggestion, comment\nand editing by those who wish to do so.  To be sure you have an\nup to date first edition [xxxxx10x.xxx] please check file sizes\nin the first week of the next month.  Since our ftp program has\na bug in it that scrambles the date [tried to fix and failed] a\nlook at the file size will have to do, but we will try to see a\nnew copy has at least one byte more or less.\n\n\nInformation about Project Gutenberg (one page)\n\nWe produce about two million dollars for each hour we work.  The\nfifty hours is one conservative estimate for how long it we take\nto get any etext selected, entered, proofread, edited, copyright\nsearched and analyzed, the copyright letters written, etc.  This\nprojected audience is one hundred million readers.  If our value\nper text is nominally estimated at one dollar then we produce $2\nmillion dollars per hour this year as we release thirty-two text\nfiles per month:  or 400 more Etexts in 1996 for a total of 800.\nIf these reach just 10% of the computerized population, then the\ntotal should reach 80 billion Etexts.\n\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\nFiles by the December 31, 2001.  [10,000 x 100,000,000=Trillion]\nThis is ten thousand titles each to one hundred million readers,\nwhich is only 10% of the present number of computer users.  2001\nshould have at least twice as many computer users as that, so it\nwill require us reaching less than 5% of the users in 2001.\n\n\nWe need your donations more than ever!\n\n\nAll donations should be made to \"Project Gutenberg/BU\":  and are\ntax deductible to the extent allowable by law. (BU = Benedictine\nUniversity).  (Subscriptions to our paper newsletter go to BU.)\n\nFor these and other matters, please mail to:\n\nProject Gutenberg\nP. O. Box  2782\nChampaign, IL 61825\n\nWhen all other email fails try our Executive Director:\nMichael S. Hart <hart@pobox.com>\n\nWe would prefer to send you this information by email\n(Internet, Bitnet, Compuserve, ATTMAIL or MCImail).\n\n******\nIf you have an FTP program (or emulator), please\nFTP directly to the Project Gutenberg archives:\n[Mac users, do NOT point and click. . .type]\n\nftp uiarchive.cso.uiuc.edu\nlogin:  anonymous\npassword:  your@login\ncd etext/etext90 through /etext96\nor cd etext/articles [get suggest gut for more information]\ndir [to see files]\nget or mget [to get files. . .set bin for zip files]\nGET INDEX?00.GUT\nfor a list of books\nand\nGET NEW GUT for general information\nand\nMGET GUT* for newsletters.\n\n**Information prepared by the Project Gutenberg legal advisor**\n(Three Pages)\n\n\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\nWhy is this \"Small Print!\" statement here?  You know: lawyers.\nThey tell us you might sue us if there is something wrong with\nyour copy of this etext, even if you got it for free from\nsomeone other than us, and even if what's wrong is not our\nfault.  So, among other things, this \"Small Print!\" statement\ndisclaims most of our liability to you.  It also tells you how\nyou can distribute copies of this etext if you want to.\n\n*BEFORE!* YOU USE OR READ THIS ETEXT\nBy using or reading any part of this PROJECT GUTENBERG-tm\netext, you indicate that you understand, agree to and accept\nthis \"Small Print!\" statement.  If you do not, you can receive\na refund of the money (if any) you paid for this etext by\nsending a request within 30 days of receiving it to the person\nyou got it from.  If you received this etext on a physical\nmedium (such as a disk), you must return it with your request.\n\nABOUT PROJECT GUTENBERG-TM ETEXTS\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\ntm etexts, is a \"public domain\" work distributed by Professor\nMichael S. Hart through the Project Gutenberg Association at\nBenedictine University (the \"Project\").  Among other\nthings, this means that no one owns a United States copyright\non or for this work, so the Project (and you!) can copy and\ndistribute it in the United States without permission and\nwithout paying copyright royalties.  Special rules, set forth\nbelow, apply if you wish to copy and distribute this etext\nunder the Project's \"PROJECT GUTENBERG\" trademark.\n\nTo create these etexts, the Project expends considerable\nefforts to identify, transcribe and proofread public domain\nworks.  Despite these efforts, the Project's etexts and any\nmedium they may be on may contain \"Defects\".  Among other\nthings, Defects may take the form of incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other\nintellectual property infringement, a defective or damaged\ndisk or other etext medium, a computer virus, or computer\ncodes that damage or cannot be read by your equipment.\n\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\nBut for the \"Right of Replacement or Refund\" described below,\n[1] the Project (and any other party you may receive this\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\nliability to you for damages, costs and expenses, including\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf you discover a Defect in this etext within 90 days of\nreceiving it, you can receive a refund of the money (if any)\nyou paid for it by sending an explanatory note within that\ntime to the person you received it from.  If you received it\non a physical medium, you must return it with your note, and\nsuch person may choose to alternatively give you a replacement\ncopy.  If you received it electronically, such person may\nchoose to alternatively give you a second opportunity to\nreceive it electronically.\n\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\".  NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.\n\nSome states do not allow disclaimers of implied warranties or\nthe exclusion or limitation of consequential damages, so the\nabove disclaimers and exclusions may not apply to you, and you\nmay have other legal rights.\n\nINDEMNITY\nYou will indemnify and hold the Project, its directors,\nofficers, members and agents harmless from all liability, cost\nand expense, including legal fees, that arise directly or\nindirectly from any of the following that you do or cause:\n[1] distribution of this etext, [2] alteration, modification,\nor addition to the etext, or [3] any Defect.\n\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\nYou may distribute copies of this etext electronically, or by\ndisk, book or any other medium if you either delete this\n\"Small Print!\" and all other references to Project Gutenberg,\nor:\n\n[1]  Only give exact copies of it.  Among other things, this\n     requires that you do not remove, alter or modify the\n     etext or this \"small print!\" statement.  You may however,\n     if you wish, distribute this etext in machine readable\n     binary, compressed, mark-up, or proprietary form,\n     including any form resulting from conversion by word pro-\n     cessing or hypertext software, but only so long as\n     *EITHER*:\n\n     [*]  The etext, when displayed, is clearly readable, and\n          does *not* contain characters other than those\n          intended by the author of the work, although tilde\n          (~), asterisk (*) and underline (_) characters may\n          be used to convey punctuation intended by the\n          author, and additional characters may be used to\n          indicate hypertext links; OR\n\n     [*]  The etext may be readily converted by the reader at\n          no expense into plain ASCII, EBCDIC or equivalent\n          form by the program that displays the etext (as is\n          the case, for instance, with most word processors);\n          OR\n\n     [*]  You provide, or agree to also provide on request at\n          no additional cost, fee or expense, a copy of the\n          etext in its original plain ASCII form (or in EBCDIC\n          or other equivalent proprietary form).\n\n[2]  Honor the etext refund and replacement provisions of this\n     \"Small Print!\" statement.\n\n[3]  Pay a trademark license fee to the Project of 20% of the\n     net profits you derive calculated using the method you\n     already use to calculate your applicable taxes.  If you\n     don't derive profits, no royalty is due.  Royalties are\n     payable to \"Project Gutenberg Association / Benedictine\n     University\" within the 60 days following each\n     date you prepare (or were legally required to prepare)\n     your annual (or equivalent periodic) tax return.\n\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO?\nThe Project gratefully accepts contributions in money, time,\nscanning machines, OCR software, public domain etexts, royalty\nfree copyright licenses, and every other sort of contribution\nyou can think of.  Money should be paid to \"Project Gutenberg\nAssociation / Benedictine University\".\n\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\n\n\n\n\n\nThe Cricket on the Hearth by Charles Dickens\nSCanned and David Price ccx074@coventry.ac.uk\n\n\n\n\n\nThe Cricket on the Hearth\n\n\n\n\n\nCHAPTER I - Chirp the First\n\n\n\nTHE kettle began it!  Don't tell me what Mrs. Peerybingle said.  I\nknow better.  Mrs. Peerybingle may leave it on record to the end of\ntime that she couldn't say which of them began it; but, I say the\nkettle did.  I ought to know, I hope!  The kettle began it, full\nfive minutes by the little waxy-faced Dutch clock in the corner,\nbefore the Cricket uttered a chirp.\n\nAs if the clock hadn't finished striking, and the convulsive little\nHaymaker at the top of it, jerking away right and left with a\nscythe in front of a Moorish Palace, hadn't mowed down half an acre\nof imaginary grass before the Cricket joined in at all!\n\nWhy, I am not naturally positive.  Every one knows that.  I\nwouldn't set my own opinion against the opinion of Mrs.\nPeerybingle, unless I were quite sure, on any account whatever.\nNothing should induce me.  But, this is a question of act.  And the\nfact is, that the kettle began it, at least five minutes before the\nCricket gave any sign of being in existence.  Contradict me, and\nI'll say ten.\n\nLet me narrate exactly how it happened.  I should have proceeded to\ndo so in my very first word, but for this plain consideration - if\nI am to tell a story I must begin at the beginning; and how is it\npossible to begin at the beginning, without beginning at the\nkettle?\n\nIt appeared as if there were a sort of match, or trial of skill,\nyou must understand, between the kettle and the Cricket.  And this\nis what led to it, and how it came about.\n\nMrs. Peerybingle, going out into the raw twilight, and clicking\nover the wet stones in a pair of pattens that worked innumerable\nrough impressions of the first proposition in Euclid all about the\nyard - Mrs. Peerybingle filled the kettle at the water-butt.\nPresently returning, less the pattens (and a good deal less, for\nthey were tall and Mrs. Peerybingle was but short), she set the\nkettle on the fire.  In doing which she lost her temper, or mislaid\nit for an instant; for, the water being uncomfortably cold, and in\nthat slippy, slushy, sleety sort of state wherein it seems to\npenetrate through every kind of substance, patten rings included -\nhad laid hold of Mrs. Peerybingle's toes, and even splashed her\nlegs.  And when we rather plume ourselves (with reason too) upon\nour legs, and keep ourselves particularly neat in point of\nstockings, we find this, for the moment, hard to bear.\n\nBesides, the kettle was aggravating and obstinate.  It wouldn't\nallow itself to be adjusted on the top bar; it wouldn't hear of\naccommodating itself kindly to the knobs of coal; it WOULD lean\nforward with a drunken air, and dribble, a very Idiot of a kettle,\non the hearth.  It was quarrelsome, and hissed and spluttered\nmorosely at the fire.  To sum up all, the lid, resisting Mrs.\nPeerybingle's fingers, first of all turned topsy-turvy, and then,\nwith an ingenious pertinacity deserving of a better cause, dived\nsideways in - down to the very bottom of the kettle.  And the hull\nof the Royal George has never made half the monstrous resistance to\ncoming out of the water, which the lid of that kettle employed\nagainst Mrs. Peerybingle, before she got it up again.\n\nIt looked sullen and pig-headed enough, even then; carrying its\nhandle with an air of defiance, and cocking its spout pertly and\nmockingly at Mrs. Peerybingle, as if it said, 'I won't boil.\nNothing shall induce me!'\n\nBut Mrs. Peerybingle, with restored good humour, dusted her chubby\nlittle hands against each other, and sat down before the kettle,\nlaughing.  Meantime, the jolly blaze uprose and fell, flashing and\ngleaming on the little Haymaker at the top of the Dutch clock,\nuntil one might have thought he stood stock still before the\nMoorish Palace, and nothing was in motion but the flame.\n\nHe was on the move, however; and had his spasms, two to the second,\nall right and regular.  But, his sufferings when the clock was\ngoing to strike, were frightful to behold; and, when a Cuckoo\nlooked out of a trap-door in the Palace, and gave note six times,\nit shook him, each time, like a spectral voice - or like a\nsomething wiry, plucking at his legs.\n\nIt was not until a violent commotion and a whirring noise among the\nweights and ropes below him had quite subsided, that this terrified\nHaymaker became himself again.  Nor was he startled without reason;\nfor these rattling, bony skeletons of clocks are very disconcerting\nin their operation, and I wonder very much how any set of men, but\nmost of all how Dutchmen, can have had a liking to invent them.\nThere is a popular belief that Dutchmen love broad cases and much\nclothing for their own lower selves; and they might know better\nthan to leave their clocks so very lank and unprotected, surely.\n\nNow it was, you observe, that the kettle began to spend the\nevening.  Now it was, that the kettle, growing mellow and musical,\nbegan to have irrepressible gurglings in its throat, and to indulge\nin short vocal snorts, which it checked in the bud, as if it hadn't\nquite made up its mind yet, to be good company.  Now it was, that\nafter two or three such vain attempts to stifle its convivial\nsentiments, it threw off all moroseness, all reserve, and burst\ninto a stream of song so cosy and hilarious, as never maudlin\nnightingale yet formed the least idea of.\n\nSo plain too!  Bless you, you might have understood it like a book\n- better than some books you and I could name, perhaps.  With its\nwarm breath gushing forth in a light cloud which merrily and\ngracefully ascended a few feet, then hung about the chimney-corner\nas its own domestic Heaven, it trolled its song with that strong\nenergy of cheerfulness, that its iron body hummed and stirred upon\nthe fire; and the lid itself, the recently rebellious lid - such is\nthe influence of a bright example - performed a sort of jig, and\nclattered like a deaf and dumb young cymbal that had never known\nthe use of its twin brother.\n\nThat this song of the kettle's was a song of invitation and welcome\nto somebody out of doors:  to somebody at that moment coming on,\ntowards the snug small home and the crisp fire:  there is no doubt\nwhatever.  Mrs. Peerybingle knew it, perfectly, as she sat musing\nbefore the hearth.  It's a dark night, sang the kettle, and the\nrotten leaves are lying by the way; and, above, all is mist and\ndarkness, and, below, all is mire and clay; and there's only one\nrelief in all the sad and murky air; and I don't know that it is\none, for it's nothing but a glare; of deep and angry crimson, where\nthe sun and wind together; set a brand upon the clouds for being\nguilty of such weather; and the widest open country is a long dull\nstreak of black; and there's hoar-frost on the finger-post, and\nthaw upon the track; and the ice it isn't water, and the water\nisn't free; and you couldn't say that anything is what it ought to\nbe; but he's coming, coming, coming! -\n\nAnd here, if you like, the Cricket DID chime in! with a Chirrup,\nChirrup, Chirrup of such magnitude, by way of chorus; with a voice\nso astoundingly disproportionate to its size, as compared with the\nkettle; (size! you couldn't see it!) that if it had then and there\nburst itself like an overcharged gun, if it had fallen a victim on\nthe spot, and chirruped its little body into fifty pieces, it would\nhave seemed a natural and inevitable consequence, for which it had\nexpressly laboured.\n\nThe kettle had had the last of its solo performance.  It persevered\nwith undiminished ardour; but the Cricket took first fiddle and\nkept it.  Good Heaven, how it chirped!  Its shrill, sharp, piercing\nvoice resounded through the house, and seemed to twinkle in the\nouter darkness like a star.  There was an indescribable little\ntrill and tremble in it, at its loudest, which suggested its being\ncarried off its legs, and made to leap again, by its own intense\nenthusiasm.  Yet they went very well together, the Cricket and the\nkettle.  The burden of the song was still the same; and louder,\nlouder, louder still, they sang it in their emulation.\n\nThe fair little listener - for fair she was, and young:  though\nsomething of what is called the dumpling shape; but I don't myself\nobject to that - lighted a candle, glanced at the Haymaker on the\ntop of the clock, who was getting in a pretty average crop of\nminutes; and looked out of the window, where she saw nothing, owing\nto the darkness, but her own face imaged in the glass.  And my\nopinion is (and so would yours have been), that she might have\nlooked a long way, and seen nothing half so agreeable.  When she\ncame back, and sat down in her former seat, the Cricket and the\nkettle were still keeping it up, with a perfect fury of\ncompetition.  The kettle's weak side clearly being, that he didn't\nknow when he was beat.\n\nThere was all the excitement of a race about it.  Chirp, chirp,\nchirp!  Cricket a mile ahead.  Hum, hum, hum - m - m!  Kettle\nmaking play in the distance, like a great top.  Chirp, chirp,\nchirp!  Cricket round the corner.  Hum, hum, hum - m - m!  Kettle\nsticking to him in his own way; no idea of giving in.  Chirp,\nchirp, chirp!  Cricket fresher than ever.  Hum, hum, hum - m - m!\nKettle slow and steady.  Chirp, chirp, chirp!  Cricket going in to\nfinish him.  Hum, hum, hum - m - m!  Kettle not to be finished.\nUntil at last they got so jumbled together, in the hurry-skurry,\nhelter-skelter, of the match, that whether the kettle chirped and\nthe Cricket hummed, or the Cricket chirped and the kettle hummed,\nor they both chirped and both hummed, it would have taken a clearer\nhead than yours or mine to have decided with anything like\ncertainty.  But, of this, there is no doubt:  that, the kettle and\nthe Cricket, at one and the same moment, and by some power of\namalgamation best known to themselves, sent, each, his fireside\nsong of comfort streaming into a ray of the candle that shone out\nthrough the window, and a long way down the lane.  And this light,\nbursting on a certain person who, on the instant, approached\ntowards it through the gloom, expressed the whole thing to him,\nliterally in a twinkling, and cried, 'Welcome home, old fellow!\nWelcome home, my boy!'\n\nThis end attained, the kettle, being dead beat, boiled over, and\nwas taken off the fire.  Mrs. Peerybingle then went running to the\ndoor, where, what with the wheels of a cart, the tramp of a horse,\nthe voice of a man, the tearing in and out of an excited dog, and\nthe surprising and mysterious appearance of a baby, there was soon\nthe very What's-his-name to pay.\n\nWhere the baby came from, or how Mrs. Peerybingle got hold of it in\nthat flash of time, I don't know.  But a live baby there was, in\nMrs. Peerybingle's arms; and a pretty tolerable amount of pride she\nseemed to have in it, when she was drawn gently to the fire, by a\nsturdy figure of a man, much taller and much older than herself,\nwho had to stoop a long way down, to kiss her.  But she was worth\nthe trouble.  Six foot six, with the lumbago, might have done it.\n\n'Oh goodness, John!' said Mrs. P.  'What a state you are in with\nthe weather!'\n\nHe was something the worse for it, undeniably.  The thick mist hung\nin clots upon his eyelashes like candied thaw; and between the fog\nand fire together, there were rainbows in his very whiskers.\n\n'Why, you see, Dot,' John made answer, slowly, as he unrolled a\nshawl from about his throat; and warmed his hands; 'it - it an't\nexactly summer weather.  So, no wonder.'\n\n'I wish you wouldn't call me Dot, John.  I don't like it,' said\nMrs. Peerybingle:  pouting in a way that clearly showed she DID\nlike it, very much.\n\n'Why what else are you?' returned John, looking down upon her with\na smile, and giving her waist as light a squeeze as his huge hand\nand arm could give.  'A dot and' - here he glanced at the baby - 'a\ndot and carry - I won't say it, for fear I should spoil it; but I\nwas very near a joke.  I don't know as ever I was nearer.'\n\nHe was often near to something or other very clever, by his own\naccount:  this lumbering, slow, honest John; this John so heavy,\nbut so light of spirit; so rough upon the surface, but so gentle at\nthe core; so dull without, so quick within; so stolid, but so good!\nOh Mother Nature, give thy children the true poetry of heart that\nhid itself in this poor Carrier's breast - he was but a Carrier by\nthe way - and we can bear to have them talking prose, and leading\nlives of prose; and bear to bless thee for their company!\n\nIt was pleasant to see Dot, with her little figure, and her baby in\nher arms:  a very doll of a baby:  glancing with a coquettish\nthoughtfulness at the fire, and inclining her delicate little head\njust enough on one side to let it rest in an odd, half-natural,\nhalf-affected, wholly nestling and agreeable manner, on the great\nrugged figure of the Carrier.  It was pleasant to see him, with his\ntender awkwardness, endeavouring to adapt his rude support to her\nslight need, and make his burly middle-age a leaning-staff not\ninappropriate to her blooming youth.  It was pleasant to observe\nhow Tilly Slowboy, waiting in the background for the baby, took\nspecial cognizance (though in her earliest teens) of this grouping;\nand stood with her mouth and eyes wide open, and her head thrust\nforward, taking it in as if it were air.  Nor was it less agreeable\nto observe how John the Carrier, reference being made by Dot to the\naforesaid baby, checked his hand when on the point of touching the\ninfant, as if he thought he might crack it; and bending down,\nsurveyed it from a safe distance, with a kind of puzzled pride,\nsuch as an amiable mastiff might be supposed to show, if he found\nhimself, one day, the father of a young canary.\n\n'An't he beautiful, John?  Don't he look precious in his sleep?'\n\n'Very precious,' said John.  'Very much so.  He generally IS\nasleep, an't he?'\n\n'Lor, John!  Good gracious no!'\n\n'Oh,' said John, pondering.  'I thought his eyes was generally\nshut.  Halloa!'\n\n'Goodness, John, how you startle one!'\n\n'It an't right for him to turn 'em up in that way!' said the\nastonished Carrier, 'is it?  See how he's winking with both of 'em\nat once!  And look at his mouth!  Why he's gasping like a gold and\nsilver fish!'\n\n'You don't deserve to be a father, you don't,' said Dot, with all\nthe dignity of an experienced matron.  'But how should you know\nwhat little complaints children are troubled with, John!  You\nwouldn't so much as know their names, you stupid fellow.'  And when\nshe had turned the baby over on her left arm, and had slapped its\nback as a restorative, she pinched her husband's ear, laughing.\n\n'No,' said John, pulling off his outer coat.  'It's very true, Dot.\nI don't know much about it.  I only know that I've been fighting\npretty stiffly with the wind to-night.  It's been blowing north-\neast, straight into the cart, the whole way home.'\n\n'Poor old man, so it has!' cried Mrs. Peerybingle, instantly\nbecoming very active.  'Here!  Take the precious darling, Tilly,\nwhile I make myself of some use.  Bless it, I could smother it with\nkissing it, I could!  Hie then, good dog!  Hie, Boxer, boy!  Only\nlet me make the tea first, John; and then I'll help you with the\nparcels, like a busy bee.  \"How doth the little\" - and all the rest\nof it, you know, John.  Did you ever learn \"how doth the little,\"\nwhen you went to school, John?'\n\n'Not to quite know it,' John returned.  'I was very near it once.\nBut I should only have spoilt it, I dare say.'\n\n'Ha ha,' laughed Dot.  She had the blithest little laugh you ever\nheard.  'What a dear old darling of a dunce you are, John, to be\nsure!'\n\nNot at all disputing this position, John went out to see that the\nboy with the lantern, which had been dancing to and fro before the\ndoor and window, like a Will of the Wisp, took due care of the\nhorse; who was fatter than you would quite believe, if I gave you\nhis measure, and so old that his birthday was lost in the mists of\nantiquity.  Boxer, feeling that his attentions were due to the\nfamily in general, and must be impartially distributed, dashed in\nand out with bewildering inconstancy; now, describing a circle of\nshort barks round the horse, where he was being rubbed down at the\nstable-door; now feigning to make savage rushes at his mistress,\nand facetiously bringing himself to sudden stops; now, eliciting a\nshriek from Tilly Slowboy, in the low nursing-chair near the fire,\nby the unexpected application of his moist nose to her countenance;\nnow, exhibiting an obtrusive interest in the baby; now, going round\nand round upon the hearth, and lying down as if he had established\nhimself for the night; now, getting up again, and taking that\nnothing of a fag-end of a tail of his, out into the weather, as if\nhe had just remembered an appointment, and was off, at a round\ntrot, to keep it.\n\n'There!  There's the teapot, ready on the hob!' said Dot; as\nbriskly busy as a child at play at keeping house.  'And there's the\nold knuckle of ham; and there's the butter; and there's the crusty\nloaf, and all!  Here's the clothes-basket for the small parcels,\nJohn, if you've got any there - where are you, John?'\n\n'Don't let the dear child fall under the grate, Tilly, whatever you\ndo!'\n\nIt may be noted of Miss Slowboy, in spite of her rejecting the\ncaution with some vivacity, that she had a rare and surprising\ntalent for getting this baby into difficulties and had several\ntimes imperilled its short life, in a quiet way peculiarly her own.\nShe was of a spare and straight shape, this young lady, insomuch\nthat her garments appeared to be in constant danger of sliding off\nthose sharp pegs, her shoulders, on which they were loosely hung.\nHer costume was remarkable for the partial development, on all\npossible occasions, of some flannel vestment of a singular\nstructure; also for affording glimpses, in the region of the back,\nof a corset, or pair of stays, in colour a dead-green.  Being\nalways in a state of gaping admiration at everything, and absorbed,\nbesides, in the perpetual contemplation of her mistress's\nperfections and the baby's, Miss Slowboy, in her little errors of\njudgment, may be said to have done equal honour to her head and to\nher heart; and though these did less honour to the baby's head,\nwhich they were the occasional means of bringing into contact with\ndeal doors, dressers, stair-rails, bed-posts, and other foreign\nsubstances, still they were the honest results of Tilly Slowboy's\nconstant astonishment at finding herself so kindly treated, and\ninstalled in such a comfortable home.  For, the maternal and\npaternal Slowboy were alike unknown to Fame, and Tilly had been\nbred by public charity, a foundling; which word, though only\ndiffering from fondling by one vowel's length, is very different in\nmeaning, and expresses quite another thing.\n\nTo have seen little Mrs. Peerybingle come back with her husband,\ntugging at the clothes-basket, and making the most strenuous\nexertions to do nothing at all (for he carried it), would have\namused you almost as much as it amused him.  It may have\nentertained the Cricket too, for anything I know; but, certainly,\nit now began to chirp again, vehemently.\n\n'Heyday!' said John, in his slow way.  'It's merrier than ever, to-\nnight, I think.'\n\n'And it's sure to bring us good fortune, John!  It always has done\nso.  To have a Cricket on the Hearth, is the luckiest thing in all\nthe world!'\n\nJohn looked at her as if he had very nearly got the thought into\nhis head, that she was his Cricket in chief, and he quite agreed\nwith her.  But, it was probably one of his narrow escapes, for he\nsaid nothing.\n\n'The first time I heard its cheerful little note, John, was on that\nnight when you brought me home - when you brought me to my new home\nhere; its little mistress.  Nearly a year ago.  You recollect,\nJohn?'\n\nO yes.  John remembered.  I should think so!\n\n'Its chirp was such a welcome to me!  It seemed so full of promise\nand encouragement.  It seemed to say, you would be kind and gentle\nwith me, and would not expect (I had a fear of that, John, then) to\nfind an old head on the shoulders of your foolish little wife.'\n\nJohn thoughtfully patted one of the shoulders, and then the head,\nas though he would have said No, no; he had had no such\nexpectation; he had been quite content to take them as they were.\nAnd really he had reason.  They were very comely.\n\n'It spoke the truth, John, when it seemed to say so; for you have\never been, I am sure, the best, the most considerate, the most\naffectionate of husbands to me.  This has been a happy home, John;\nand I love the Cricket for its sake!'\n\n'Why so do I then,' said the Carrier.  'So do I, Dot.'\n\n'I love it for the many times I have heard it, and the many\nthoughts its harmless music has given me.  Sometimes, in the\ntwilight, when I have felt a little solitary and down-hearted, John\n- before baby was here to keep me company and make the house gay -\nwhen I have thought how lonely you would be if I should die; how\nlonely I should be if I could know that you had lost me, dear; its\nChirp, Chirp, Chirp upon the hearth, has seemed to tell me of\nanother little voice, so sweet, so very dear to me, before whose\ncoming sound my trouble vanished like a dream.  And when I used to\nfear - I did fear once, John, I was very young you know - that ours\nmight prove to be an ill-assorted marriage, I being such a child,\nand you more like my guardian than my husband; and that you might\nnot, however hard you tried, be able to learn to love me, as you\nhoped and prayed you might; its Chirp, Chirp, Chirp has cheered me\nup again, and filled me with new trust and confidence.  I was\nthinking of these things to-night, dear, when I sat expecting you;\nand I love the Cricket for their sake!'\n\n'And so do I,' repeated John.  'But, Dot?  I hope and pray that I\nmight learn to love you?  How you talk!  I had learnt that, long\nbefore I brought you here, to be the Cricket's little mistress,\nDot!'\n\nShe laid her hand, an instant, on his arm, and looked up at him\nwith an agitated face, as if she would have told him something.\nNext moment she was down upon her knees before the basket, speaking\nin a sprightly voice, and busy with the parcels.\n\n'There are not many of them to-night, John, but I saw some goods\nbehind the cart, just now; and though they give more trouble,\nperhaps, still they pay as well; so we have no reason to grumble,\nhave we?  Besides, you have been delivering, I dare say, as you\ncame along?'\n\n'Oh yes,' John said.  'A good many.'\n\n'Why what's this round box?  Heart alive, John, it's a wedding-\ncake!'\n\n'Leave a woman alone to find out that,' said John, admiringly.\n'Now a man would never have thought of it.  Whereas, it's my belief\nthat if you was to pack a wedding-cake up in a tea-chest, or a\nturn-up bedstead, or a pickled salmon keg, or any unlikely thing, a\nwoman would be sure to find it out directly.  Yes; I called for it\nat the pastry-cook's.'\n\n'And it weighs I don't know what - whole hundredweights!' cried\nDot, making a great demonstration of trying to lift it.\n\n'Whose is it, John?  Where is it going?'\n\n'Read the writing on the other side,' said John.\n\n'Why, John!  My Goodness, John!'\n\n'Ah! who'd have thought it!' John returned.\n\n'You never mean to say,' pursued Dot, sitting on the floor and\nshaking her head at him, 'that it's Gruff and Tackleton the\ntoymaker!'\n\nJohn nodded.\n\nMrs. Peerybingle nodded also, fifty times at least.  Not in assent\n- in dumb and pitying amazement; screwing up her lips the while\nwith all their little force (they were never made for screwing up;\nI am clear of that), and looking the good Carrier through and\nthrough, in her abstraction.  Miss Slowboy, in the mean time, who\nhad a mechanical power of reproducing scraps of current\nconversation for the delectation of the baby, with all the sense\nstruck out of them, and all the nouns changed into the plural\nnumber, inquired aloud of that young creature, Was it Gruffs and\nTackletons the toymakers then, and Would it call at Pastry-cooks\nfor wedding-cakes, and Did its mothers know the boxes when its\nfathers brought them homes; and so on.\n\n'And that is really to come about!' said Dot.  'Why, she and I were\ngirls at school together, John.'\n\nHe might have been thinking of her, or nearly thinking of her,\nperhaps, as she was in that same school time.  He looked upon her\nwith a thoughtful pleasure, but he made no answer.\n\n'And he's as old!  As unlike her! - Why, how many years older than\nyou, is Gruff and Tackleton, John?'\n\n'How many more cups of tea shall I drink to-night at one sitting,\nthan Gruff and Tackleton ever took in four, I wonder!' replied\nJohn, good-humouredly, as he drew a chair to the round table, and\nbegan at the cold ham.  'As to eating, I eat but little; but that\nlittle I enjoy, Dot.'\n\nEven this, his usual sentiment at meal times, one of his innocent\ndelusions (for his appetite was always obstinate, and flatly\ncontradicted him), awoke no smile in the face of his little wife,\nwho stood among the parcels, pushing the cake-box slowly from her\nwith her foot, and never once looked, though her eyes were cast\ndown too, upon the dainty shoe she generally was so mindful of.\nAbsorbed in thought, she stood there, heedless alike of the tea and\nJohn (although he called to her, and rapped the table with his\nknife to startle her), until he rose and touched her on the arm;\nwhen she looked at him for a moment, and hurried to her place\nbehind the teaboard, laughing at her negligence.  But, not as she\nhad laughed before.  The manner and the music were quite changed.\n\nThe Cricket, too, had stopped.  Somehow the room was not so\ncheerful as it had been.  Nothing like it.\n\n'So, these are all the parcels, are they, John?' she said, breaking\na long silence, which the honest Carrier had devoted to the\npractical illustration of one part of his favourite sentiment -\ncertainly enjoying what he ate, if it couldn't be admitted that he\nate but little.  'So, these are all the parcels; are they, John?'\n\n'That's all,' said John.  'Why - no - I - ' laying down his knife\nand fork, and taking a long breath.  'I declare - I've clean\nforgotten the old gentleman!'\n\n'The old gentleman?'\n\n'In the cart,' said John.  'He was asleep, among the straw, the\nlast time I saw him.  I've very nearly remembered him, twice, since\nI came in; but he went out of my head again.  Holloa!  Yahip there!\nRouse up!  That's my hearty!'\n\nJohn said these latter words outside the door, whither he had\nhurried with the candle in his hand.\n\nMiss Slowboy, conscious of some mysterious reference to The Old\nGentleman, and connecting in her mystified imagination certain\nassociations of a religious nature with the phrase, was so\ndisturbed, that hastily rising from the low chair by the fire to\nseek protection near the skirts of her mistress, and coming into\ncontact as she crossed the doorway with an ancient Stranger, she\ninstinctively made a charge or butt at him with the only offensive\ninstrument within her reach.  This instrument happening to be the\nbaby, great commotion and alarm ensued, which the sagacity of Boxer\nrather tended to increase; for, that good dog, more thoughtful than\nits master, had, it seemed, been watching the old gentleman in his\nsleep, lest he should walk off with a few young poplar trees that\nwere tied up behind the cart; and he still attended on him very\nclosely, worrying his gaiters in fact, and making dead sets at the\nbuttons.\n\n'You're such an undeniable good sleeper, sir,' said John, when\ntranquillity was restored; in the mean time the old gentleman had\nstood, bareheaded and motionless, in the centre of the room; 'that\nI have half a mind to ask you where the other six are - only that\nwould be a joke, and I know I should spoil it.  Very near though,'\nmurmured the Carrier, with a chuckle; 'very near!'\n\nThe Stranger, who had long white hair, good features, singularly\nbold and well defined for an old man, and dark, bright, penetrating\neyes, looked round with a smile, and saluted the Carrier's wife by\ngravely inclining his head.\n\nHis garb was very quaint and odd - a long, long way behind the\ntime.  Its hue was brown, all over.  In his hand he held a great\nbrown club or walking-stick; and striking this upon the floor, it\nfell asunder, and became a chair.  On which he sat down, quite\ncomposedly.\n\n'There!' said the Carrier, turning to his wife.  'That's the way I\nfound him, sitting by the roadside!  Upright as a milestone.  And\nalmost as deaf.'\n\n'Sitting in the open air, John!'\n\n'In the open air,' replied the Carrier, 'just at dusk.  \"Carriage\nPaid,\" he said; and gave me eighteenpence.  Then he got in.  And\nthere he is.'\n\n'He's going, John, I think!'\n\nNot at all.  He was only going to speak.\n\n'If you please, I was to be left till called for,' said the\nStranger, mildly.  'Don't mind me.'\n\nWith that, he took a pair of spectacles from one of his large\npockets, and a book from another, and leisurely began to read.\nMaking no more of Boxer than if he had been a house lamb!\n\nThe Carrier and his wife exchanged a look of perplexity.  The\nStranger raised his head; and glancing from the latter to the\nformer, said,\n\n'Your daughter, my good friend?'\n\n'Wife,' returned John.\n\n'Niece?' said the Stranger.\n\n'Wife,' roared John.\n\n'Indeed?' observed the Stranger.  'Surely?  Very young!'\n\nHe quietly turned over, and resumed his reading.  But, before he\ncould have read two lines, he again interrupted himself to say:\n\n'Baby, yours?'\n\nJohn gave him a gigantic nod; equivalent to an answer in the\naffirmative, delivered through a speaking trumpet.\n\n'Girl?'\n\n'Bo-o-oy!' roared John.\n\n'Also very young, eh?'\n\nMrs. Peerybingle instantly struck in.  'Two months and three da-\nays!  Vaccinated just six weeks ago-o!  Took very fine-ly!\nConsidered, by the doctor, a remarkably beautiful chi-ild!  Equal\nto the general run of children at five months o-old!  Takes notice,\nin a way quite wonderful!  May seem impossible to you, but feels\nhis legs al-ready!'\n\nHere the breathless little mother, who had been shrieking these\nshort sentences into the old man's ear, until her pretty face was\ncrimsoned, held up the Baby before him as a stubborn and triumphant\nfact; while Tilly Slowboy, with a melodious cry of 'Ketcher,\nKetcher' - which sounded like some unknown words, adapted to a\npopular Sneeze - performed some cow-like gambols round that all\nunconscious Innocent.\n\n'Hark!  He's called for, sure enough,' said John.  'There's\nsomebody at the door.  Open it, Tilly.'\n\nBefore she could reach it, however, it was opened from without;\nbeing a primitive sort of door, with a latch, that any one could\nlift if he chose - and a good many people did choose, for all kinds\nof neighbours liked to have a cheerful word or two with the\nCarrier, though he was no great talker himself.  Being opened, it\ngave admission to a little, meagre, thoughtful, dingy-faced man,\nwho seemed to have made himself a great-coat from the sack-cloth\ncovering of some old box; for, when he turned to shut the door, and\nkeep the weather out, he disclosed upon the back of that garment,\nthe inscription G & T in large black capitals.  Also the word GLASS\nin bold characters.\n\n'Good evening, John!' said the little man.  'Good evening, Mum.\nGood evening, Tilly.  Good evening, Unbeknown!  How's Baby, Mum?\nBoxer's pretty well I hope?'\n\n'All thriving, Caleb,' replied Dot.  'I am sure you need only look\nat the dear child, for one, to know that.'\n\n'And I'm sure I need only look at you for another,' said Caleb.\n\nHe didn't look at her though; he had a wandering and thoughtful eye\nwhich seemed to be always projecting itself into some other time\nand place, no matter what he said; a description which will equally\napply to his voice.\n\n'Or at John for another,' said Caleb.  'Or at Tilly, as far as that\ngoes.  Or certainly at Boxer.'\n\n'Busy just now, Caleb?' asked the Carrier.\n\n'Why, pretty well, John,' he returned, with the distraught air of a\nman who was casting about for the Philosopher's stone, at least.\n'Pretty much so.  There's rather a run on Noah's Arks at present.\nI could have wished to improve upon the Family, but I don't see how\nit's to be done at the price.  It would be a satisfaction to one's\nmind, to make it clearer which was Shems and Hams, and which was\nWives.  Flies an't on that scale neither, as compared with\nelephants you know!  Ah! well!  Have you got anything in the parcel\nline for me, John?'\n\nThe Carrier put his hand into a pocket of the coat he had taken\noff; and brought out, carefully preserved in moss and paper, a tiny\nflower-pot.\n\n'There it is!' he said, adjusting it with great care.  'Not so much\nas a leaf damaged.  Full of buds!'\n\nCaleb's dull eye brightened, as he took it, and thanked him.\n\n'Dear, Caleb,' said the Carrier.  'Very dear at this season.'\n\n'Never mind that.  It would be cheap to me, whatever it cost,'\nreturned the little man.  'Anything else, John?'\n\n'A small box,' replied the Carrier.  'Here you are!'\n\n'\"For Caleb Plummer,\"' said the little man, spelling out the\ndirection.  '\"With Cash.\"  With Cash, John?  I don't think it's for\nme.'\n\n'With Care,' returned the Carrier, looking over his shoulder.\n'Where do you make out cash?'\n\n'Oh!  To be sure!' said Caleb.  'It's all right.  With care!  Yes,\nyes; that's mine.  It might have been with cash, indeed, if my dear\nBoy in the Golden South Americas had lived, John.  You loved him\nlike a son; didn't you?  You needn't say you did.  I know, of\ncourse.  \"Caleb Plummer.  With care.\"  Yes, yes, it's all right.\nIt's a box of dolls' eyes for my daughter's work.  I wish it was\nher own sight in a box, John.'\n\n'I wish it was, or could be!' cried the Carrier.\n\n'Thank'ee,' said the little man.  'You speak very hearty.  To think\nthat she should never see the Dolls - and them a-staring at her, so\nbold, all day long!  That's where it cuts.  What's the damage,\nJohn?'\n\n'I'll damage you,' said John, 'if you inquire.  Dot!  Very near?'\n\n'Well! it's like you to say so,' observed the little man.  'It's\nyour kind way.  Let me see.  I think that's all.'\n\n'I think not,' said the Carrier.  'Try again.'\n\n'Something for our Governor, eh?' said Caleb, after pondering a\nlittle while.  'To be sure.  That's what I came for; but my head's\nso running on them Arks and things!  He hasn't been here, has he?'\n\n'Not he,' returned the Carrier.  'He's too busy, courting.'\n\n'He's coming round though,' said Caleb; 'for he told me to keep on\nthe near side of the road going home, and it was ten to one he'd\ntake me up.  I had better go, by the bye. - You couldn't have the\ngoodness to let me pinch Boxer's tail, Mum, for half a moment,\ncould you?'\n\n'Why, Caleb! what a question!'\n\n'Oh never mind, Mum,' said the little man.  'He mightn't like it\nperhaps.  There's a small order just come in, for barking dogs; and\nI should wish to go as close to Natur' as I could, for sixpence.\nThat's all.  Never mind, Mum.'\n\nIt happened opportunely, that Boxer, without receiving the proposed\nstimulus, began to bark with great zeal.  But, as this implied the\napproach of some new visitor, Caleb, postponing his study from the\nlife to a more convenient season, shouldered the round box, and\ntook a hurried leave.  He might have spared himself the trouble,\nfor he met the visitor upon the threshold.\n\n'Oh!  You are here, are you?  Wait a bit.  I'll take you home.\nJohn Peerybingle, my service to you.  More of my service to your\npretty wife.  Handsomer every day!  Better too, if possible!  And\nyounger,' mused the speaker, in a low voice; 'that's the Devil of\nit!'\n\n'I should be astonished at your paying compliments, Mr. Tackleton,'\nsaid Dot, not with the best grace in the world; 'but for your\ncondition.'\n\n'You know all about it then?'\n\n'I have got myself to believe it, somehow,' said Dot.\n\n'After a hard struggle, I suppose?'\n\n'Very.'\n\nTackleton the Toy-merchant, pretty generally known as Gruff and\nTackleton - for that was the firm, though Gruff had been bought out\nlong ago; only leaving his name, and as some said his nature,\naccording to its Dictionary meaning, in the business - Tackleton\nthe Toy-merchant, was a man whose vocation had been quite\nmisunderstood by his Parents and Guardians.  If they had made him a\nMoney Lender, or a sharp Attorney, or a Sheriff's Officer, or a\nBroker, he might have sown his discontented oats in his youth, and,\nafter having had the full run of himself in ill-natured\ntransactions, might have turned out amiable, at last, for the sake\nof a little freshness and novelty.  But, cramped and chafing in the\npeaceable pursuit of toy-making, he was a domestic Ogre, who had\nbeen living on children all his life, and was their implacable\nenemy.  He despised all toys; wouldn't have bought one for the\nworld; delighted, in his malice, to insinuate grim expressions into\nthe faces of brown-paper farmers who drove pigs to market, bellmen\nwho advertised lost lawyers' consciences, movable old ladies who\ndarned stockings or carved pies; and other like samples of his\nstock in trade.  In appalling masks; hideous, hairy, red-eyed Jacks\nin Boxes; Vampire Kites; demoniacal Tumblers who wouldn't lie down,\nand were perpetually flying forward, to stare infants out of\ncountenance; his soul perfectly revelled.  They were his only\nrelief, and safety-valve.  He was great in such inventions.\nAnything suggestive of a Pony-nightmare was delicious to him.  He\nhad even lost money (and he took to that toy very kindly) by\ngetting up Goblin slides for magic-lanterns, whereon the Powers of\nDarkness were depicted as a sort of supernatural shell-fish, with\nhuman faces.  In intensifying the portraiture of Giants, he had\nsunk quite a little capital; and, though no painter himself, he\ncould indicate, for the instruction of his artists, with a piece of\nchalk, a certain furtive leer for the countenances of those\nmonsters, which was safe to destroy the peace of mind of any young\ngentleman between the ages of six and eleven, for the whole\nChristmas or Midsummer Vacation.\n\nWhat he was in toys, he was (as most men are) in other things.  You\nmay easily suppose, therefore, that within the great green cape,\nwhich reached down to the calves of his legs, there was buttoned up\nto the chin an uncommonly pleasant fellow; and that he was about as\nchoice a spirit, and as agreeable a companion, as ever stood in a\npair of bull-headed-looking boots with mahogany-coloured tops.\n\nStill, Tackleton, the toy-merchant, was going to be married.  In\nspite of all this, he was going to be married.  And to a young wife\ntoo, a beautiful young wife.\n\nHe didn't look much like a bridegroom, as he stood in the Carrier's\nkitchen, with a twist in his dry face, and a screw in his body, and\nhis hat jerked over the bridge of his nose, and his hands tucked\ndown into the bottoms of his pockets, and his whole sarcastic ill-\nconditioned self peering out of one little corner of one little\neye, like the concentrated essence of any number of ravens.  But, a\nBridegroom he designed to be.\n\n'In three days' time.  Next Thursday.  The last day of the first\nmonth in the year.  That's my wedding-day,' said Tackleton.\n\nDid I mention that he had always one eye wide open, and one eye\nnearly shut; and that the one eye nearly shut, was always the\nexpressive eye?  I don't think I did.\n\n'That's my wedding-day!' said Tackleton, rattling his money.\n\n'Why, it's our wedding-day too,' exclaimed the Carrier.\n\n'Ha ha!' laughed Tackleton.  'Odd!  You're just such another\ncouple.  Just!'\n\nThe indignation of Dot at this presumptuous assertion is not to be\ndescribed.  What next?  His imagination would compass the\npossibility of just such another Baby, perhaps.  The man was mad.\n\n'I say!  A word with you,' murmured Tackleton, nudging the Carrier\nwith his elbow, and taking him a little apart.  'You'll come to the\nwedding?  We're in the same boat, you know.'\n\n'How in the same boat?' inquired the Carrier.\n\n'A little disparity, you know,' said Tackleton, with another nudge.\n'Come and spend an evening with us, beforehand.'\n\n'Why?' demanded John, astonished at this pressing hospitality.\n\n'Why?' returned the other.  'That's a new way of receiving an\ninvitation.  Why, for pleasure - sociability, you know, and all\nthat!'\n\n'I thought you were never sociable,' said John, in his plain way.\n\n'Tchah!  It's of no use to be anything but free with you, I see,'\nsaid Tackleton.  'Why, then, the truth is you have a - what tea-\ndrinking people call a sort of a comfortable appearance together,\nyou and your wife.  We know better, you know, but - '\n\n'No, we don't know better,' interposed John.  'What are you talking\nabout?'\n\n'Well!  We DON'T know better, then,' said Tackleton.  'We'll agree\nthat we don't.  As you like; what does it matter?  I was going to\nsay, as you have that sort of appearance, your company will produce\na favourable effect on Mrs. Tackleton that will be.  And, though I\ndon't think your good lady's very friendly to me, in this matter,\nstill she can't help herself from falling into my views, for\nthere's a compactness and cosiness of appearance about her that\nalways tells, even in an indifferent case.  You'll say you'll\ncome?'\n\n'We have arranged to keep our Wedding-Day (as far as that goes) at\nhome,' said John.  'We have made the promise to ourselves these six\nmonths.  We think, you see, that home - '\n\n'Bah! what's home?' cried Tackleton.  'Four walls and a ceiling!\n(why don't you kill that Cricket?  I would!  I always do.  I hate\ntheir noise.)  There are four walls and a ceiling at my house.\nCome to me!'\n\n'You kill your Crickets, eh?' said John.\n\n'Scrunch 'em, sir,' returned the other, setting his heel heavily on\nthe floor.  'You'll say you'll come? it's as much your interest as\nmine, you know, that the women should persuade each other that\nthey're quiet and contented, and couldn't be better off.  I know\ntheir way.  Whatever one woman says, another woman is determined to\nclinch, always.  There's that spirit of emulation among 'em, sir,\nthat if your wife says to my wife, \"I'm the happiest woman in the\nworld, and mine's the best husband in the world, and I dote on\nhim,\" my wife will say the same to yours, or more, and half believe\nit.'\n\n'Do you mean to say she don't, then?' asked the Carrier.\n\n'Don't!' cried Tackleton, with a short, sharp laugh.  'Don't what?'\n\nThe Carrier had some faint idea of adding, 'dote upon you.'  But,\nhappening to meet the half-closed eye, as it twinkled upon him over\nthe turned-up collar of the cape, which was within an ace of poking\nit out, he felt it such an unlikely part and parcel of anything to\nbe doted on, that he substituted, 'that she don't believe it?'\n\n'Ah you dog!  You're joking,' said Tackleton.\n\nBut the Carrier, though slow to understand the full drift of his\nmeaning, eyed him in such a serious manner, that he was obliged to\nbe a little more explanatory.\n\n'I have the humour,' said Tackleton:  holding up the fingers of his\nleft hand, and tapping the forefinger, to imply 'there I am,\nTackleton to wit:' 'I have the humour, sir, to marry a young wife,\nand a pretty wife:' here he rapped his little finger, to express\nthe Bride; not sparingly, but sharply; with a sense of power.  'I'm\nable to gratify that humour and I do.  It's my whim.  But - now\nlook there!'\n\nHe pointed to where Dot was sitting, thoughtfully, before the fire;\nleaning her dimpled chin upon her hand, and watching the bright\nblaze.  The Carrier looked at her, and then at him, and then at\nher, and then at him again.\n\n'She honours and obeys, no doubt, you know,' said Tackleton; 'and\nthat, as I am not a man of sentiment, is quite enough for ME.  But\ndo you think there's anything more in it?'\n\n'I think,' observed the Carrier, 'that I should chuck any man out\nof window, who said there wasn't.'\n\n'Exactly so,' returned the other with an unusual alacrity of\nassent.  'To be sure!  Doubtless you would.  Of course.  I'm\ncertain of it.  Good night.  Pleasant dreams!'\n\nThe Carrier was puzzled, and made uncomfortable and uncertain, in\nspite of himself.  He couldn't help showing it, in his manner.\n\n'Good night, my dear friend!' said Tackleton, compassionately.\n'I'm off.  We're exactly alike, in reality, I see.  You won't give\nus to-morrow evening?  Well!  Next day you go out visiting, I know.\nI'll meet you there, and bring my wife that is to be.  It'll do her\ngood.  You're agreeable?  Thank'ee.  What's that!'\n\nIt was a loud cry from the Carrier's wife:  a loud, sharp, sudden\ncry, that made the room ring, like a glass vessel.  She had risen\nfrom her seat, and stood like one transfixed by terror and\nsurprise.  The Stranger had advanced towards the fire to warm\nhimself, and stood within a short stride of her chair.  But quite\nstill.\n\n'Dot!' cried the Carrier.  'Mary!  Darling!  What's the matter?'\n\nThey were all about her in a moment.  Caleb, who had been dozing on\nthe cake-box, in the first imperfect recovery of his suspended\npresence of mind, seized Miss Slowboy by the hair of her head, but\nimmediately apologised.\n\n'Mary!' exclaimed the Carrier, supporting her in his arms.  'Are\nyou ill!  What is it?  Tell me, dear!'\n\nShe only answered by beating her hands together, and falling into a\nwild fit of laughter.  Then, sinking from his grasp upon the\nground, she covered her face with her apron, and wept bitterly.\nAnd then she laughed again, and then she cried again, and then she\nsaid how cold it was, and suffered him to lead her to the fire,\nwhere she sat down as before.  The old man standing, as before,\nquite still.\n\n'I'm better, John,' she said.  'I'm quite well now - I -'\n\n'John!'  But John was on the other side of her.  Why turn her face\ntowards the strange old gentleman, as if addressing him!  Was her\nbrain wandering?\n\n'Only a fancy, John dear - a kind of shock - a something coming\nsuddenly before my eyes - I don't know what it was.  It's quite\ngone, quite gone.'\n\n'I'm glad it's gone,' muttered Tackleton, turning the expressive\neye all round the room.  'I wonder where it's gone, and what it\nwas.  Humph!  Caleb, come here!  Who's that with the grey hair?'\n\n'I don't know, sir,' returned Caleb in a whisper.  'Never see him\nbefore, in all my life.  A beautiful figure for a nut-cracker;\nquite a new model.  With a screw-jaw opening down into his\nwaistcoat, he'd be lovely.'\n\n'Not ugly enough,' said Tackleton.\n\n'Or for a firebox, either,' observed Caleb, in deep contemplation,\n'what a model!  Unscrew his head to put the matches in; turn him\nheels up'ards for the light; and what a firebox for a gentleman's\nmantel-shelf, just as he stands!'\n\n'Not half ugly enough,' said Tackleton.  'Nothing in him at all!\nCome!  Bring that box!  All right now, I hope?'\n\n'Quite gone!' said the little woman, waving him hurriedly away.\n'Good night!'\n\n'Good night,' said Tackleton.  'Good night, John Peerybingle!  Take\ncare how you carry that box, Caleb.  Let it fall, and I'll murder\nyou!  Dark as pitch, and weather worse than ever, eh?  Good night!'\n\nSo, with another sharp look round the room, he went out at the\ndoor; followed by Caleb with the wedding-cake on his head.\n\nThe Carrier had been so much astounded by his little wife, and so\nbusily engaged in soothing and tending her, that he had scarcely\nbeen conscious of the Stranger's presence, until now, when he again\nstood there, their only guest.\n\n'He don't belong to them, you see,' said John.  'I must give him a\nhint to go.'\n\n'I beg your pardon, friend,' said the old gentleman, advancing to\nhim; 'the more so, as I fear your wife has not been well; but the\nAttendant whom my infirmity,' he touched his ears and shook his\nhead, 'renders almost indispensable, not having arrived, I fear\nthere must be some mistake.  The bad night which made the shelter\nof your comfortable cart (may I never have a worse!) so acceptable,\nis still as bad as ever.  Would you, in your kindness, suffer me to\nrent a bed here?'\n\n'Yes, yes,' cried Dot.  'Yes!  Certainly!'\n\n'Oh!' said the Carrier, surprised by the rapidity of this consent.\n\n'Well!  I don't object; but, still I'm not quite sure that - '\n\n'Hush!' she interrupted.  'Dear John!'\n\n'Why, he's stone deaf,' urged John.\n\n'I know he is, but - Yes, sir, certainly.  Yes! certainly!  I'll\nmake him up a bed, directly, John.'\n\nAs she hurried off to do it, the flutter of her spirits, and the\nagitation of her manner, were so strange that the Carrier stood\nlooking after her, quite confounded.\n\n'Did its mothers make it up a Beds then!' cried Miss Slowboy to the\nBaby; 'and did its hair grow brown and curly, when its caps was\nlifted off, and frighten it, a precious Pets, a-sitting by the\nfires!'\n\nWith that unaccountable attraction of the mind to trifles, which is\noften incidental to a state of doubt and confusion, the Carrier as\nhe walked slowly to and fro, found himself mentally repeating even\nthese absurd words, many times.  So many times that he got them by\nheart, and was still conning them over and over, like a lesson,\nwhen Tilly, after administering as much friction to the little bald\nhead with her hand as she thought wholesome (according to the\npractice of nurses), had once more tied the Baby's cap on.\n\n'And frighten it, a precious Pets, a-sitting by the fires.  What\nfrightened Dot, I wonder!' mused the Carrier, pacing to and fro.\n\nHe scouted, from his heart, the insinuations of the Toy-merchant,\nand yet they filled him with a vague, indefinite uneasiness.  For,\nTackleton was quick and sly; and he had that painful sense,\nhimself, of being of slow perception, that a broken hint was always\nworrying to him.  He certainly had no intention in his mind of\nlinking anything that Tackleton had said, with the unusual conduct\nof his wife, but the two subjects of reflection came into his mind\ntogether, and he could not keep them asunder.\n\nThe bed was soon made ready; and the visitor, declining all\nrefreshment but a cup of tea, retired.  Then, Dot - quite well\nagain, she said, quite well again - arranged the great chair in the\nchimney-corner for her husband; filled his pipe and gave it him;\nand took her usual little stool beside him on the hearth.\n\nShe always WOULD sit on that little stool.  I think she must have\nhad a kind of notion that it was a coaxing, wheedling little stool.\n\nShe was, out and out, the very best filler of a pipe, I should say,\nin the four quarters of the globe.  To see her put that chubby\nlittle finger in the bowl, and then blow down the pipe to clear the\ntube, and, when she had done so, affect to think that there was\nreally something in the tube, and blow a dozen times, and hold it\nto her eye like a telescope, with a most provoking twist in her\ncapital little face, as she looked down it, was quite a brilliant\nthing.  As to the tobacco, she was perfect mistress of the subject;\nand her lighting of the pipe, with a wisp of paper, when the\nCarrier had it in his mouth - going so very near his nose, and yet\nnot scorching it - was Art, high Art.\n\nAnd the Cricket and the kettle, turning up again, acknowledged it!\nThe bright fire, blazing up again, acknowledged it!  The little\nMower on the clock, in his unheeded work, acknowledged it!  The\nCarrier, in his smoothing forehead and expanding face, acknowledged\nit, the readiest of all.\n\nAnd as he soberly and thoughtfully puffed at his old pipe, and as\nthe Dutch clock ticked, and as the red fire gleamed, and as the\nCricket chirped; that Genius of his Hearth and Home (for such the\nCricket was) came out, in fairy shape, into the room, and summoned\nmany forms of Home about him.  Dots of all ages, and all sizes,\nfilled the chamber.  Dots who were merry children, running on\nbefore him gathering flowers, in the fields; coy Dots, half\nshrinking from, half yielding to, the pleading of his own rough\nimage; newly-married Dots, alighting at the door, and taking\nwondering possession of the household keys; motherly little Dots,\nattended by fictitious Slowboys, bearing babies to be christened;\nmatronly Dots, still young and blooming, watching Dots of\ndaughters, as they danced at rustic balls; fat Dots, encircled and\nbeset by troops of rosy grandchildren; withered Dots, who leaned on\nsticks, and tottered as they crept along.  Old Carriers too,\nappeared, with blind old Boxers lying at their feet; and newer\ncarts with younger drivers ('Peerybingle Brothers' on the tilt);\nand sick old Carriers, tended by the gentlest hands; and graves of\ndead and gone old Carriers, green in the churchyard.  And as the\nCricket showed him all these things - he saw them plainly, though\nhis eyes were fixed upon the fire - the Carrier's heart grew light\nand happy, and he thanked his Household Gods with all his might,\nand cared no more for Gruff and Tackleton than you do.\n\n\nBut, what was that young figure of a man, which the same Fairy\nCricket set so near Her stool, and which remained there, singly and\nalone?  Why did it linger still, so near her, with its arm upon the\nchimney-piece, ever repeating 'Married! and not to me!'\n\nO Dot!  O failing Dot!  There is no place for it in all your\nhusband's visions; why has its shadow fallen on his hearth!\n\n\n\nCHAPTER II - Chirp The Second\n\n\n\nCALEB PLUMMER and his Blind Daughter lived all alone by themselves,\nas the Story-books say - and my blessing, with yours to back it I\nhope, on the Story-books, for saying anything in this workaday\nworld! - Caleb Plummer and his Blind Daughter lived all alone by\nthemselves, in a little cracked nutshell of a wooden house, which\nwas, in truth, no better than a pimple on the prominent red-brick\nnose of Gruff and Tackleton.  The premises of Gruff and Tackleton\nwere the great feature of the street; but you might have knocked\ndown Caleb Plummer's dwelling with a hammer or two, and carried off\nthe pieces in a cart.\n\nIf any one had done the dwelling-house of Caleb Plummer the honour\nto miss it after such an inroad, it would have been, no doubt, to\ncommend its demolition as a vast improvement.  It stuck to the\npremises of Gruff and Tackleton, like a barnacle to a ship's keel,\nor a snail to a door, or a little bunch of toadstools to the stem\nof a tree.\n\nBut, it was the germ from which the full-grown trunk of Gruff and\nTackleton had sprung; and, under its crazy roof, the Gruff before\nlast, had, in a small way, made toys for a generation of old boys\nand girls, who had played with them, and found them out, and broken\nthem, and gone to sleep.\n\nI have said that Caleb and his poor Blind Daughter lived here.  I\nshould have said that Caleb lived here, and his poor Blind Daughter\nsomewhere else - in an enchanted home of Caleb's furnishing, where\nscarcity and shabbiness were not, and trouble never entered.  Caleb\nwas no sorcerer, but in the only magic art that still remains to\nus, the magic of devoted, deathless love, Nature had been the\nmistress of his study; and from her teaching, all the wonder came.\n\nThe Blind Girl never knew that ceilings were discoloured, walls\nblotched and bare of plaster here and there, high crevices\nunstopped and widening every day, beams mouldering and tending\ndownward.  The Blind Girl never knew that iron was rusting, wood\nrotting, paper peeling off; the size, and shape, and true\nproportion of the dwelling, withering away.  The Blind Girl never\nknew that ugly shapes of delf and earthenware were on the board;\nthat sorrow and faintheartedness were in the house; that Caleb's\nscanty hairs were turning greyer and more grey, before her\nsightless face.  The Blind Girl never knew they had a master, cold,\nexacting, and uninterested - never knew that Tackleton was\nTackleton in short; but lived in the belief of an eccentric\nhumourist who loved to have his jest with them, and who, while he\nwas the Guardian Angel of their lives, disdained to hear one word\nof thankfulness.\n\nAnd all was Caleb's doing; all the doing of her simple father!  But\nhe too had a Cricket on his Hearth; and listening sadly to its\nmusic when the motherless Blind Child was very young, that Spirit\nhad inspired him with the thought that even her great deprivation\nmight be almost changed into a blessing, and the girl made happy by\nthese little means.  For all the Cricket tribe are potent Spirits,\neven though the people who hold converse with them do not know it\n(which is frequently the case); and there are not in the unseen\nworld, voices more gentle and more true, that may be so implicitly\nrelied on, or that are so certain to give none but tenderest\ncounsel, as the Voices in which the Spirits of the Fireside and the\nHearth address themselves to human kind.\n\nCaleb and his daughter were at work together in their usual\nworking-room, which served them for their ordinary living-room as\nwell; and a strange place it was.  There were houses in it,\nfinished and unfinished, for Dolls of all stations in life.\nSuburban tenements for Dolls of moderate means; kitchens and single\napartments for Dolls of the lower classes; capital town residences\nfor Dolls of high estate.  Some of these establishments were\nalready furnished according to estimate, with a view to the\nconvenience of Dolls of limited income; others could be fitted on\nthe most expensive scale, at a moment's notice, from whole shelves\nof chairs and tables, sofas, bedsteads, and upholstery.  The\nnobility and gentry, and public in general, for whose accommodation\nthese tenements were designed, lay, here and there, in baskets,\nstaring straight up at the ceiling; but, in denoting their degrees\nin society, and confining them to their respective stations (which\nexperience shows to be lamentably difficult in real life), the\nmakers of these Dolls had far improved on Nature, who is often\nfroward and perverse; for, they, not resting on such arbitrary\nmarks as satin, cotton-print, and bits of rag, had superadded\nstriking personal differences which allowed of no mistake.  Thus,\nthe Doll-lady of distinction had wax limbs of perfect symmetry; but\nonly she and her compeers.  The next grade in the social scale\nbeing made of leather, and the next of coarse linen stuff.  As to\nthe common-people, they had just so many matches out of tinder-\nboxes, for their arms and legs, and there they were - established\nin their sphere at once, beyond the possibility of getting out of\nit.\n\nThere were various other samples of his handicraft, besides Dolls,\nin Caleb Plummer's room.  There were Noah's Arks, in which the\nBirds and Beasts were an uncommonly tight fit, I assure you; though\nthey could be crammed in, anyhow, at the roof, and rattled and\nshaken into the smallest compass.  By a bold poetical licence, most\nof these Noah's Arks had knockers on the doors; inconsistent\nappendages, perhaps, as suggestive of morning callers and a\nPostman, yet a pleasant finish to the outside of the building.\nThere were scores of melancholy little carts, which, when the\nwheels went round, performed most doleful music.  Many small\nfiddles, drums, and other instruments of torture; no end of cannon,\nshields, swords, spears, and guns.  There were little tumblers in\nred breeches, incessantly swarming up high obstacles of red-tape,\nand coming down, head first, on the other side; and there were\ninnumerable old gentlemen of respectable, not to say venerable,\nappearance, insanely flying over horizontal pegs, inserted, for the\npurpose, in their own street doors.  There were beasts of all\nsorts; horses, in particular, of every breed, from the spotted\nbarrel on four pegs, with a small tippet for a mane, to the\nthoroughbred rocker on his highest mettle.  As it would have been\nhard to count the dozens upon dozens of grotesque figures that were\never ready to commit all sorts of absurdities on the turning of a\nhandle, so it would have been no easy task to mention any human\nfolly, vice, or weakness, that had not its type, immediate or\nremote, in Caleb Plummer's room.  And not in an exaggerated form,\nfor very little handles will move men and women to as strange\nperformances, as any Toy was ever made to undertake.\n\nIn the midst of all these objects, Caleb and his daughter sat at\nwork.  The Blind Girl busy as a Doll's dressmaker; Caleb painting\nand glazing the four-pair front of a desirable family mansion.\n\nThe care imprinted in the lines of Caleb's face, and his absorbed\nand dreamy manner, which would have sat well on some alchemist or\nabstruse student, were at first sight an odd contrast to his\noccupation, and the trivialities about him.  But, trivial things,\ninvented and pursued for bread, become very serious matters of\nfact; and, apart from this consideration, I am not at all prepared\nto say, myself, that if Caleb had been a Lord Chamberlain, or a\nMember of Parliament, or a lawyer, or even a great speculator, he\nwould have dealt in toys one whit less whimsical, while I have a\nvery great doubt whether they would have been as harmless.\n\n'So you were out in the rain last night, father, in your beautiful\nnew great-coat,' said Caleb's daughter.\n\n'In my beautiful new great-coat,' answered Caleb, glancing towards\na clothes-line in the room, on which the sack-cloth garment\npreviously described, was carefully hung up to dry.\n\n'How glad I am you bought it, father!'\n\n'And of such a tailor, too,' said Caleb.  'Quite a fashionable\ntailor.  It's too good for me.'\n\nThe Blind Girl rested from her work, and laughed with delight.\n\n'Too good, father!  What can be too good for you?'\n\n'I'm half-ashamed to wear it though,' said Caleb, watching the\neffect of what he said, upon her brightening face; 'upon my word!\nWhen I hear the boys and people say behind me, \"Hal-loa!  Here's a\nswell!\"  I don't know which way to look.  And when the beggar\nwouldn't go away last night; and when I said I was a very common\nman, said \"No, your Honour!  Bless your Honour, don't say that!\"  I\nwas quite ashamed.  I really felt as if I hadn't a right to wear\nit.'\n\nHappy Blind Girl!  How merry she was, in her exultation!\n\n'I see you, father,' she said, clasping her hands, 'as plainly, as\nif I had the eyes I never want when you are with me.  A blue coat -\n'\n\n'Bright blue,' said Caleb.\n\n'Yes, yes!  Bright blue!' exclaimed the girl, turning up her\nradiant face; 'the colour I can just remember in the blessed sky!\nYou told me it was blue before!  A bright blue coat - '\n\n'Made loose to the figure,' suggested Caleb.\n\n'Made loose to the figure!' cried the Blind Girl, laughing\nheartily; 'and in it, you, dear father, with your merry eye, your\nsmiling face, your free step, and your dark hair - looking so young\nand handsome!'\n\n'Halloa!  Halloa!' said Caleb.  'I shall be vain, presently!'\n\n'I think you are, already,' cried the Blind Girl, pointing at him,\nin her glee.  'I know you, father!  Ha, ha, ha!  I've found you\nout, you see!'\n\nHow different the picture in her mind, from Caleb, as he sat\nobserving her!  She had spoken of his free step.  She was right in\nthat.  For years and years, he had never once crossed that\nthreshold at his own slow pace, but with a footfall counterfeited\nfor her ear; and never had he, when his heart was heaviest,\nforgotten the light tread that was to render hers so cheerful and\ncourageous!\n\nHeaven knows!  But I think Caleb's vague bewilderment of manner may\nhave half originated in his having confused himself about himself\nand everything around him, for the love of his Blind Daughter.  How\ncould the little man be otherwise than bewildered, after labouring\nfor so many years to destroy his own identity, and that of all the\nobjects that had any bearing on it!\n\n'There we are,' said Caleb, falling back a pace or two to form the\nbetter judgment of his work; 'as near the real thing as\nsixpenn'orth of halfpence is to sixpence.  What a pity that the\nwhole front of the house opens at once!  If there was only a\nstaircase in it, now, and regular doors to the rooms to go in at!\nBut that's the worst of my calling, I'm always deluding myself, and\nswindling myself.'\n\n'You are speaking quite softly.  You are not tired, father?'\n\n'Tired!' echoed Caleb, with a great burst of animation, 'what\nshould tire me, Bertha?  I was never tired.  What does it mean?'\n\nTo give the greater force to his words, he checked himself in an\ninvoluntary imitation of two half-length stretching and yawning\nfigures on the mantel-shelf, who were represented as in one eternal\nstate of weariness from the waist upwards; and hummed a fragment of\na song.  It was a Bacchanalian song, something about a Sparkling\nBowl.  He sang it with an assumption of a Devil-may-care voice,\nthat made his face a thousand times more meagre and more thoughtful\nthan ever.\n\n'What!  You're singing, are you?' said Tackleton, putting his head\nin at the door.  'Go it!  I can't sing.'\n\nNobody would have suspected him of it.  He hadn't what is generally\ntermed a singing face, by any means.\n\n'I can't afford to sing,' said Tackleton.  'I'm glad YOU CAN.  I\nhope you can afford to work too.  Hardly time for both, I should\nthink?'\n\n'If you could only see him, Bertha, how he's winking at me!'\nwhispered Caleb.  'Such a man to joke! you'd think, if you didn't\nknow him, he was in earnest - wouldn't you now?'\n\nThe Blind Girl smiled and nodded.\n\n'The bird that can sing and won't sing, must be made to sing, they\nsay,' grumbled Tackleton.  'What about the owl that can't sing, and\noughtn't to sing, and will sing; is there anything that HE should\nbe made to do?'\n\n'The extent to which he's winking at this moment!' whispered Caleb\nto his daughter.  'O, my gracious!'\n\n'Always merry and light-hearted with us!' cried the smiling Bertha.\n\n'O, you're there, are you?' answered Tackleton.  'Poor Idiot!'\n\nHe really did believe she was an Idiot; and he founded the belief,\nI can't say whether consciously or not, upon her being fond of him.\n\n'Well! and being there, - how are you?' said Tackleton, in his\ngrudging way.\n\n'Oh! well; quite well.  And as happy as even you can wish me to be.\nAs happy as you would make the whole world, if you could!'\n\n'Poor Idiot!' muttered Tackleton.  'No gleam of reason.  Not a\ngleam!'\n\nThe Blind Girl took his hand and kissed it; held it for a moment in\nher own two hands; and laid her cheek against it tenderly, before\nreleasing it.  There was such unspeakable affection and such\nfervent gratitude in the act, that Tackleton himself was moved to\nsay, in a milder growl than usual:\n\n'What's the matter now?'\n\n'I stood it close beside my pillow when I went to sleep last night,\nand remembered it in my dreams.  And when the day broke, and the\nglorious red sun - the RED sun, father?'\n\n'Red in the mornings and the evenings, Bertha,' said poor Caleb,\nwith a woeful glance at his employer.\n\n'When it rose, and the bright light I almost fear to strike myself\nagainst in walking, came into the room, I turned the little tree\ntowards it, and blessed Heaven for making things so precious, and\nblessed you for sending them to cheer me!'\n\n'Bedlam broke loose!' said Tackleton under his breath.  'We shall\narrive at the strait-waistcoat and mufflers soon.  We're getting\non!'\n\nCaleb, with his hands hooked loosely in each other, stared vacantly\nbefore him while his daughter spoke, as if he really were uncertain\n(I believe he was) whether Tackleton had done anything to deserve\nher thanks, or not.  If he could have been a perfectly free agent,\nat that moment, required, on pain of death, to kick the Toy-\nmerchant, or fall at his feet, according to his merits, I believe\nit would have been an even chance which course he would have taken.\nYet, Caleb knew that with his own hands he had brought the little\nrose-tree home for her, so carefully, and that with his own lips he\nhad forged the innocent deception which should help to keep her\nfrom suspecting how much, how very much, he every day, denied\nhimself, that she might be the happier.\n\n'Bertha!' said Tackleton, assuming, for the nonce, a little\ncordiality.  'Come here.'\n\n'Oh!  I can come straight to you!  You needn't guide me!' she\nrejoined.\n\n'Shall I tell you a secret, Bertha?'\n\n'If you will!' she answered, eagerly.\n\nHow bright the darkened face!  How adorned with light, the\nlistening head!\n\n'This is the day on which little what's-her-name, the spoilt child,\nPeerybingle's wife, pays her regular visit to you - makes her\nfantastic Pic-Nic here; an't it?' said Tackleton, with a strong\nexpression of distaste for the whole concern.\n\n'Yes,' replied Bertha.  'This is the day.'\n\n'I thought so,' said Tackleton.  'I should like to join the party.'\n\n'Do you hear that, father!' cried the Blind Girl in an ecstasy.\n\n'Yes, yes, I hear it,' murmured Caleb, with the fixed look of a\nsleep-walker; 'but I don't believe it.  It's one of my lies, I've\nno doubt.'\n\n'You see I - I want to bring the Peerybingles a little more into\ncompany with May Fielding,' said Tackleton.  'I am going to be\nmarried to May.'\n\n'Married!' cried the Blind Girl, starting from him.\n\n'She's such a con-founded Idiot,' muttered Tackleton, 'that I was\nafraid she'd never comprehend me.  Ah, Bertha!  Married!  Church,\nparson, clerk, beadle, glass-coach, bells, breakfast, bride-cake,\nfavours, marrow-bones, cleavers, and all the rest of the\ntomfoolery.  A wedding, you know; a wedding.  Don't you know what a\nwedding is?'\n\n'I know,' replied the Blind Girl, in a gentle tone.  'I\nunderstand!'\n\n'Do you?' muttered Tackleton.  'It's more than I expected.  Well!\nOn that account I want to join the party, and to bring May and her\nmother.  I'll send in a little something or other, before the\nafternoon.  A cold leg of mutton, or some comfortable trifle of\nthat sort.  You'll expect me?'\n\n'Yes,' she answered.\n\nShe had drooped her head, and turned away; and so stood, with her\nhands crossed, musing.\n\n'I don't think you will,' muttered Tackleton, looking at her; 'for\nyou seem to have forgotten all about it, already.  Caleb!'\n\n'I may venture to say I'm here, I suppose,' thought Caleb.  'Sir!'\n\n'Take care she don't forget what I've been saying to her.'\n\n'SHE never forgets,' returned Caleb.  'It's one of the few things\nshe an't clever in.'\n\n'Every man thinks his own geese swans,' observed the Toy-merchant,\nwith a shrug.  'Poor devil!'\n\nHaving delivered himself of which remark, with infinite contempt,\nold Gruff and Tackleton withdrew.\n\nBertha remained where he had left her, lost in meditation.  The\ngaiety had vanished from her downcast face, and it was very sad.\nThree or four times she shook her head, as if bewailing some\nremembrance or some loss; but her sorrowful reflections found no\nvent in words.\n\nIt was not until Caleb had been occupied, some time, in yoking a\nteam of horses to a waggon by the summary process of nailing the\nharness to the vital parts of their bodies, that she drew near to\nhis working-stool, and sitting down beside him, said:\n\n'Father, I am lonely in the dark.  I want my eyes, my patient,\nwilling eyes.'\n\n'Here they are,' said Caleb.  'Always ready.  They are more yours\nthan mine, Bertha, any hour in the four-and-twenty.  What shall\nyour eyes do for you, dear?'\n\n'Look round the room, father.'\n\n'All right,' said Caleb.  'No sooner said than done, Bertha.'\n\n'Tell me about it.'\n\n'It's much the same as usual,' said Caleb.  'Homely, but very snug.\nThe gay colours on the walls; the bright flowers on the plates and\ndishes; the shining wood, where there are beams or panels; the\ngeneral cheerfulness and neatness of the building; make it very\npretty.'\n\nCheerful and neat it was wherever Bertha's hands could busy\nthemselves.  But nowhere else, were cheerfulness and neatness\npossible, in the old crazy shed which Caleb's fancy so transformed.\n\n'You have your working dress on, and are not so gallant as when you\nwear the handsome coat?' said Bertha, touching him.\n\n'Not quite so gallant,' answered Caleb.  'Pretty brisk though.'\n\n'Father,' said the Blind Girl, drawing close to his side, and\nstealing one arm round his neck, 'tell me something about May.  She\nis very fair?'\n\n'She is indeed,' said Caleb.  And she was indeed.  It was quite a\nrare thing to Caleb, not to have to draw on his invention.\n\n'Her hair is dark,' said Bertha, pensively, 'darker than mine.  Her\nvoice is sweet and musical, I know.  I have often loved to hear it.\nHer shape - '\n\n'There's not a Doll's in all the room to equal it,' said Caleb.\n'And her eyes! - '\n\nHe stopped; for Bertha had drawn closer round his neck, and from\nthe arm that clung about him, came a warning pressure which he\nunderstood too well.\n\nHe coughed a moment, hammered for a moment, and then fell back upon\nthe song about the sparkling bowl; his infallible resource in all\nsuch difficulties.\n\n'Our friend, father, our benefactor.  I am never tired, you know,\nof hearing about him. - Now, was I ever?' she said, hastily.\n\n'Of course not,' answered Caleb, 'and with reason.'\n\n'Ah!  With how much reason!' cried the Blind Girl.  With such\nfervency, that Caleb, though his motives were so pure, could not\nendure to meet her face; but dropped his eyes, as if she could have\nread in them his innocent deceit.\n\n'Then, tell me again about him, dear father,' said Bertha.  'Many\ntimes again!  His face is benevolent, kind, and tender.  Honest and\ntrue, I am sure it is.  The manly heart that tries to cloak all\nfavours with a show of roughness and unwillingness, beats in its\nevery look and glance.'\n\n'And makes it noble!' added Caleb, in his quiet desperation.\n\n'And makes it noble!' cried the Blind Girl.  'He is older than May,\nfather.'\n\n'Ye-es,' said Caleb, reluctantly.  'He's a little older than May.\nBut that don't signify.'\n\n'Oh father, yes!  To be his patient companion in infirmity and age;\nto be his gentle nurse in sickness, and his constant friend in\nsuffering and sorrow; to know no weariness in working for his sake;\nto watch him, tend him, sit beside his bed and talk to him awake,\nand pray for him asleep; what privileges these would be!  What\nopportunities for proving all her truth and devotion to him!  Would\nshe do all this, dear father?\n\n'No doubt of it,' said Caleb.\n\n'I love her, father; I can love her from my soul!' exclaimed the\nBlind Girl.  And saying so, she laid her poor blind face on Caleb's\nshoulder, and so wept and wept, that he was almost sorry to have\nbrought that tearful happiness upon her.\n\nIn the mean time, there had been a pretty sharp commotion at John\nPeerybingle's, for little Mrs. Peerybingle naturally couldn't think\nof going anywhere without the Baby; and to get the Baby under weigh\ntook time.  Not that there was much of the Baby, speaking of it as\na thing of weight and measure, but there was a vast deal to do\nabout and about it, and it all had to be done by easy stages.  For\ninstance, when the Baby was got, by hook and by crook, to a certain\npoint of dressing, and you might have rationally supposed that\nanother touch or two would finish him off, and turn him out a tip-\ntop Baby challenging the world, he was unexpectedly extinguished in\na flannel cap, and hustled off to bed; where he simmered (so to\nspeak) between two blankets for the best part of an hour.  From\nthis state of inaction he was then recalled, shining very much and\nroaring violently, to partake of - well?  I would rather say, if\nyou'll permit me to speak generally - of a slight repast.  After\nwhich, he went to sleep again.  Mrs. Peerybingle took advantage of\nthis interval, to make herself as smart in a small way as ever you\nsaw anybody in all your life; and, during the same short truce,\nMiss Slowboy insinuated herself into a spencer of a fashion so\nsurprising and ingenious, that it had no connection with herself,\nor anything else in the universe, but was a shrunken, dog's-eared,\nindependent fact, pursuing its lonely course without the least\nregard to anybody.  By this time, the Baby, being all alive again,\nwas invested, by the united efforts of Mrs. Peerybingle and Miss\nSlowboy, with a cream-coloured mantle for its body, and a sort of\nnankeen raised-pie for its head; and so in course of time they all\nthree got down to the door, where the old horse had already taken\nmore than the full value of his day's toll out of the Turnpike\nTrust, by tearing up the road with his impatient autographs; and\nwhence Boxer might be dimly seen in the remote perspective,\nstanding looking back, and tempting him to come on without orders.\n\nAs to a chair, or anything of that kind for helping Mrs.\nPeerybingle into the cart, you know very little of John, if you\nthink THAT was necessary.  Before you could have seen him lift her\nfrom the ground, there she was in her place, fresh and rosy,\nsaying, 'John!  How CAN you!  Think of Tilly!'\n\nIf I might be allowed to mention a young lady's legs, on any terms,\nI would observe of Miss Slowboy's that there was a fatality about\nthem which rendered them singularly liable to be grazed; and that\nshe never effected the smallest ascent or descent, without\nrecording the circumstance upon them with a notch, as Robinson\nCrusoe marked the days upon his wooden calendar.  But as this might\nbe considered ungenteel, I'll think of it.\n\n'John?  You've got the Basket with the Veal and Ham-Pie and things,\nand the bottles of Beer?' said Dot.  'If you haven't, you must turn\nround again, this very minute.'\n\n'You're a nice little article,' returned the Carrier, 'to be\ntalking about turning round, after keeping me a full quarter of an\nhour behind my time.'\n\n'I am sorry for it, John,' said Dot in a great bustle, 'but I\nreally could not think of going to Bertha's - I would not do it,\nJohn, on any account - without the Veal and Ham-Pie and things, and\nthe bottles of Beer.  Way!'\n\nThis monosyllable was addressed to the horse, who didn't mind it at\nall.\n\n'Oh DO way, John!' said Mrs. Peerybingle.  'Please!'\n\n'It'll be time enough to do that,' returned John, 'when I begin to\nleave things behind me.  The basket's here, safe enough.'\n\n'What a hard-hearted monster you must be, John, not to have said\nso, at once, and save me such a turn!  I declared I wouldn't go to\nBertha's without the Veal and Ham-Pie and things, and the bottles\nof Beer, for any money.  Regularly once a fortnight ever since we\nhave been married, John, have we made our little Pic-Nic there.  If\nanything was to go wrong with it, I should almost think we were\nnever to be lucky again.'\n\n'It was a kind thought in the first instance,' said the Carrier:\n'and I honour you for it, little woman.'\n\n'My dear John,' replied Dot, turning very red, 'don't talk about\nhonouring ME.  Good Gracious!'\n\n'By the bye - ' observed the Carrier.  'That old gentleman - '\n\nAgain so visibly, and instantly embarrassed!\n\n'He's an odd fish,' said the Carrier, looking straight along the\nroad before them.  'I can't make him out.  I don't believe there's\nany harm in him.'\n\n'None at all.  I'm - I'm sure there's none at all.'\n\n'Yes,' said the Carrier, with his eyes attracted to her face by the\ngreat earnestness of her manner.  'I am glad you feel so certain of\nit, because it's a confirmation to me.  It's curious that he should\nhave taken it into his head to ask leave to go on lodging with us;\nan't it?  Things come about so strangely.'\n\n'So very strangely,' she rejoined in a low voice, scarcely audible.\n\n'However, he's a good-natured old gentleman,' said John, 'and pays\nas a gentleman, and I think his word is to be relied upon, like a\ngentleman's.  I had quite a long talk with him this morning:  he\ncan hear me better already, he says, as he gets more used to my\nvoice.  He told me a great deal about himself, and I told him a\ngreat deal about myself, and a rare lot of questions he asked me.\nI gave him information about my having two beats, you know, in my\nbusiness; one day to the right from our house and back again;\nanother day to the left from our house and back again (for he's a\nstranger and don't know the names of places about here); and he\nseemed quite pleased.  \"Why, then I shall be returning home to-\nnight your way,\" he says, \"when I thought you'd be coming in an\nexactly opposite direction.  That's capital!  I may trouble you for\nanother lift perhaps, but I'll engage not to fall so sound asleep\nagain.\"  He WAS sound asleep, sure-ly! - Dot! what are you thinking\nof?'\n\n'Thinking of, John?  I - I was listening to you.'\n\n'O!  That's all right!' said the honest Carrier.  'I was afraid,\nfrom the look of your face, that I had gone rambling on so long, as\nto set you thinking about something else.  I was very near it, I'll\nbe bound.'\n\nDot making no reply, they jogged on, for some little time, in\nsilence.  But, it was not easy to remain silent very long in John\nPeerybingle's cart, for everybody on the road had something to say.\nThough it might only be 'How are you!' and indeed it was very often\nnothing else, still, to give that back again in the right spirit of\ncordiality, required, not merely a nod and a smile, but as\nwholesome an action of the lungs withal, as a long-winded\nParliamentary speech.  Sometimes, passengers on foot, or horseback,\nplodded on a little way beside the cart, for the express purpose of\nhaving a chat; and then there was a great deal to be said, on both\nsides.\n\nThen, Boxer gave occasion to more good-natured recognitions of, and\nby, the Carrier, than half-a-dozen Christians could have done!\nEverybody knew him, all along the road - especially the fowls and\npigs, who when they saw him approaching, with his body all on one\nside, and his ears pricked up inquisitively, and that knob of a\ntail making the most of itself in the air, immediately withdrew\ninto remote back settlements, without waiting for the honour of a\nnearer acquaintance.  He had business everywhere; going down all\nthe turnings, looking into all the wells, bolting in and out of all\nthe cottages, dashing into the midst of all the Dame-Schools,\nfluttering all the pigeons, magnifying the tails of all the cats,\nand trotting into the public-houses like a regular customer.\nWherever he went, somebody or other might have been heard to cry,\n'Halloa!  Here's Boxer!' and out came that somebody forthwith,\naccompanied by at least two or three other somebodies, to give John\nPeerybingle and his pretty wife, Good Day.\n\nThe packages and parcels for the errand cart, were numerous; and\nthere were many stoppages to take them in and give them out, which\nwere not by any means the worst parts of the journey.  Some people\nwere so full of expectation about their parcels, and other people\nwere so full of wonder about their parcels, and other people were\nso full of inexhaustible directions about their parcels, and John\nhad such a lively interest in all the parcels, that it was as good\nas a play.  Likewise, there were articles to carry, which required\nto be considered and discussed, and in reference to the adjustment\nand disposition of which, councils had to be holden by the Carrier\nand the senders:  at which Boxer usually assisted, in short fits of\nthe closest attention, and long fits of tearing round and round the\nassembled sages and barking himself hoarse.  Of all these little\nincidents, Dot was the amused and open-eyed spectatress from her\nchair in the cart; and as she sat there, looking on - a charming\nlittle portrait framed to admiration by the tilt - there was no\nlack of nudgings and glancings and whisperings and envyings among\nthe younger men.  And this delighted John the Carrier, beyond\nmeasure; for he was proud to have his little wife admired, knowing\nthat she didn't mind it - that, if anything, she rather liked it\nperhaps.\n\nThe trip was a little foggy, to be sure, in the January weather;\nand was raw and cold.  But who cared for such trifles?  Not Dot,\ndecidedly.  Not Tilly Slowboy, for she deemed sitting in a cart, on\nany terms, to be the highest point of human joys; the crowning\ncircumstance of earthly hopes.  Not the Baby, I'll be sworn; for\nit's not in Baby nature to be warmer or more sound asleep, though\nits capacity is great in both respects, than that blessed young\nPeerybingle was, all the way.\n\nYou couldn't see very far in the fog, of course; but you could see\na great deal!  It's astonishing how much you may see, in a thicker\nfog than that, if you will only take the trouble to look for it.\nWhy, even to sit watching for the Fairy-rings in the fields, and\nfor the patches of hoar-frost still lingering in the shade, near\nhedges and by trees, was a pleasant occupation:  to make no mention\nof the unexpected shapes in which the trees themselves came\nstarting out of the mist, and glided into it again.  The hedges\nwere tangled and bare, and waved a multitude of blighted garlands\nin the wind; but there was no discouragement in this.  It was\nagreeable to contemplate; for it made the fireside warmer in\npossession, and the summer greener in expectancy.  The river looked\nchilly; but it was in motion, and moving at a good pace - which was\na great point.  The canal was rather slow and torpid; that must be\nadmitted.  Never mind.  It would freeze the sooner when the frost\nset fairly in, and then there would be skating, and sliding; and\nthe heavy old barges, frozen up somewhere near a wharf, would smoke\ntheir rusty iron chimney pipes all day, and have a lazy time of it.\n\nIn one place, there was a great mound of weeds or stubble burning;\nand they watched the fire, so white in the daytime, flaring through\nthe fog, with only here and there a dash of red in it, until, in\nconsequence, as she observed, of the smoke 'getting up her nose,'\nMiss Slowboy choked - she could do anything of that sort, on the\nsmallest provocation - and woke the Baby, who wouldn't go to sleep\nagain.  But, Boxer, who was in advance some quarter of a mile or\nso, had already passed the outposts of the town, and gained the\ncorner of the street where Caleb and his daughter lived; and long\nbefore they had reached the door, he and the Blind Girl were on the\npavement waiting to receive them.\n\nBoxer, by the way, made certain delicate distinctions of his own,\nin his communication with Bertha, which persuade me fully that he\nknew her to be blind.  He never sought to attract her attention by\nlooking at her, as he often did with other people, but touched her\ninvariably.  What experience he could ever have had of blind people\nor blind dogs, I don't know.  He had never lived with a blind\nmaster; nor had Mr. Boxer the elder, nor Mrs. Boxer, nor any of his\nrespectable family on either side, ever been visited with\nblindness, that I am aware of.  He may have found it out for\nhimself, perhaps, but he had got hold of it somehow; and therefore\nhe had hold of Bertha too, by the skirt, and kept hold, until Mrs.\nPeerybingle and the Baby, and Miss Slowboy, and the basket, were\nall got safely within doors.\n\nMay Fielding was already come; and so was her mother - a little\nquerulous chip of an old lady with a peevish face, who, in right of\nhaving preserved a waist like a bedpost, was supposed to be a most\ntranscendent figure; and who, in consequence of having once been\nbetter off, or of labouring under an impression that she might have\nbeen, if something had happened which never did happen, and seemed\nto have never been particularly likely to come to pass - but it's\nall the same - was very genteel and patronising indeed.  Gruff and\nTackleton was also there, doing the agreeable, with the evident\nsensation of being as perfectly at home, and as unquestionably in\nhis own element, as a fresh young salmon on the top of the Great\nPyramid.\n\n'May!  My dear old friend!' cried Dot, running up to meet her.\n'What a happiness to see you.'\n\nHer old friend was, to the full, as hearty and as glad as she; and\nit really was, if you'll believe me, quite a pleasant sight to see\nthem embrace.  Tackleton was a man of taste beyond all question.\nMay was very pretty.\n\nYou know sometimes, when you are used to a pretty face, how, when\nit comes into contact and comparison with another pretty face, it\nseems for the moment to be homely and faded, and hardly to deserve\nthe high opinion you have had of it.  Now, this was not at all the\ncase, either with Dot or May; for May's face set off Dot's, and\nDot's face set off May's, so naturally and agreeably, that, as John\nPeerybingle was very near saying when he came into the room, they\nought to have been born sisters - which was the only improvement\nyou could have suggested.\n\nTackleton had brought his leg of mutton, and, wonderful to relate,\na tart besides - but we don't mind a little dissipation when our\nbrides are in the case. we don't get married every day - and in\naddition to these dainties, there were the Veal and Ham-Pie, and\n'things,' as Mrs. Peerybingle called them; which were chiefly nuts\nand oranges, and cakes, and such small deer.  When the repast was\nset forth on the board, flanked by Caleb's contribution, which was\na great wooden bowl of smoking potatoes (he was prohibited, by\nsolemn compact, from producing any other viands), Tackleton led his\nintended mother-in-law to the post of honour.  For the better\ngracing of this place at the high festival, the majestic old soul\nhad adorned herself with a cap, calculated to inspire the\nthoughtless with sentiments of awe.  She also wore her gloves.  But\nlet us be genteel, or die!\n\nCaleb sat next his daughter; Dot and her old schoolfellow were side\nby side; the good Carrier took care of the bottom of the table.\nMiss Slowboy was isolated, for the time being, from every article\nof furniture but the chair she sat on, that she might have nothing\nelse to knock the Baby's head against.\n\nAs Tilly stared about her at the dolls and toys, they stared at her\nand at the company.  The venerable old gentlemen at the street\ndoors (who were all in full action) showed especial interest in the\nparty, pausing occasionally before leaping, as if they were\nlistening to the conversation, and then plunging wildly over and\nover, a great many times, without halting for breath - as in a\nfrantic state of delight with the whole proceedings.\n\nCertainly, if these old gentlemen were inclined to have a fiendish\njoy in the contemplation of Tackleton's discomfiture, they had good\nreason to be satisfied.  Tackleton couldn't get on at all; and the\nmore cheerful his intended bride became in Dot's society, the less\nhe liked it, though he had brought them together for that purpose.\nFor he was a regular dog in the manger, was Tackleton; and when\nthey laughed and he couldn't, he took it into his head,\nimmediately, that they must be laughing at him.\n\n'Ah, May!' said Dot.  'Dear dear, what changes!  To talk of those\nmerry school-days makes one young again.'\n\n'Why, you an't particularly old, at any time; are you?' said\nTackleton.\n\n'Look at my sober plodding husband there,' returned Dot.  'He adds\ntwenty years to my age at least.  Don't you, John?'\n\n'Forty,' John replied.\n\n'How many YOU'll add to May's, I am sure I don't know,' said Dot,\nlaughing.  'But she can't be much less than a hundred years of age\non her next birthday.'\n\n'Ha ha!' laughed Tackleton.  Hollow as a drum, that laugh though.\nAnd he looked as if he could have twisted Dot's neck, comfortably.\n\n'Dear dear!' said Dot.  'Only to remember how we used to talk, at\nschool, about the husbands we would choose.  I don't know how\nyoung, and how handsome, and how gay, and how lively, mine was not\nto be!  And as to May's! - Ah dear!  I don't know whether to laugh\nor cry, when I think what silly girls we were.'\n\nMay seemed to know which to do; for the colour flushed into her\nface, and tears stood in her eyes.\n\n'Even the very persons themselves - real live young men - were\nfixed on sometimes,' said Dot.  'We little thought how things would\ncome about.  I never fixed on John I'm sure; I never so much as\nthought of him.  And if I had told you, you were ever to be married\nto Mr. Tackleton, why you'd have slapped me.  Wouldn't you, May?'\n\nThough May didn't say yes, she certainly didn't say no, or express\nno, by any means.\n\nTackleton laughed - quite shouted, he laughed so loud.  John\nPeerybingle laughed too, in his ordinary good-natured and contented\nmanner; but his was a mere whisper of a laugh, to Tackleton's.\n\n'You couldn't help yourselves, for all that.  You couldn't resist\nus, you see,' said Tackleton.  'Here we are!  Here we are!'\n\n'Where are your gay young bridegrooms now!'\n\n'Some of them are dead,' said Dot; 'and some of them forgotten.\nSome of them, if they could stand among us at this moment, would\nnot believe we were the same creatures; would not believe that what\nthey saw and heard was real, and we COULD forget them so.  No! they\nwould not believe one word of it!'\n\n'Why, Dot!' exclaimed the Carrier.  'Little woman!'\n\nShe had spoken with such earnestness and fire, that she stood in\nneed of some recalling to herself, without doubt.  Her husband's\ncheck was very gentle, for he merely interfered, as he supposed, to\nshield old Tackleton; but it proved effectual, for she stopped, and\nsaid no more.  There was an uncommon agitation, even in her\nsilence, which the wary Tackleton, who had brought his half-shut\neye to bear upon her, noted closely, and remembered to some purpose\ntoo.\n\nMay uttered no word, good or bad, but sat quite still, with her\neyes cast down, and made no sign of interest in what had passed.\nThe good lady her mother now interposed, observing, in the first\ninstance, that girls were girls, and byegones byegones, and that so\nlong as young people were young and thoughtless, they would\nprobably conduct themselves like young and thoughtless persons:\nwith two or three other positions of a no less sound and\nincontrovertible character.  She then remarked, in a devout spirit,\nthat she thanked Heaven she had always found in her daughter May, a\ndutiful and obedient child; for which she took no credit to\nherself, though she had every reason to believe it was entirely\nowing to herself.  With regard to Mr. Tackleton she said, That he\nwas in a moral point of view an undeniable individual, and That he\nwas in an eligible point of view a son-in-law to be desired, no one\nin their senses could doubt.  (She was very emphatic here.)  With\nregard to the family into which he was so soon about, after some\nsolicitation, to be admitted, she believed Mr. Tackleton knew that,\nalthough reduced in purse, it had some pretensions to gentility;\nand if certain circumstances, not wholly unconnected, she would go\nso far as to say, with the Indigo Trade, but to which she would not\nmore particularly refer, had happened differently, it might perhaps\nhave been in possession of wealth.  She then remarked that she\nwould not allude to the past, and would not mention that her\ndaughter had for some time rejected the suit of Mr. Tackleton; and\nthat she would not say a great many other things which she did say,\nat great length.  Finally, she delivered it as the general result\nof her observation and experience, that those marriages in which\nthere was least of what was romantically and sillily called love,\nwere always the happiest; and that she anticipated the greatest\npossible amount of bliss - not rapturous bliss; but the solid,\nsteady-going article - from the approaching nuptials.  She\nconcluded by informing the company that to-morrow was the day she\nhad lived for, expressly; and that when it was over, she would\ndesire nothing better than to be packed up and disposed of, in any\ngenteel place of burial.\n\nAs these remarks were quite unanswerable - which is the happy\nproperty of all remarks that are sufficiently wide of the purpose -\nthey changed the current of the conversation, and diverted the\ngeneral attention to the Veal and Ham-Pie, the cold mutton, the\npotatoes, and the tart.  In order that the bottled beer might not\nbe slighted, John Peerybingle proposed To-morrow:  the Wedding-Day;\nand called upon them to drink a bumper to it, before he proceeded\non his journey.\n\nFor you ought to know that he only rested there, and gave the old\nhorse a bait.  He had to go some four of five miles farther on; and\nwhen he returned in the evening, he called for Dot, and took\nanother rest on his way home.  This was the order of the day on all\nthe Pic-Nic occasions, had been, ever since their institution.\n\nThere were two persons present, besides the bride and bridegroom\nelect, who did but indifferent honour to the toast.  One of these\nwas Dot, too flushed and discomposed to adapt herself to any small\noccurrence of the moment; the other, Bertha, who rose up hurriedly,\nbefore the rest, and left the table.\n\n'Good bye!' said stout John Peerybingle, pulling on his dreadnought\ncoat.  'I shall be back at the old time.  Good bye all!'\n\n'Good bye, John,' returned Caleb.\n\nHe seemed to say it by rote, and to wave his hand in the same\nunconscious manner; for he stood observing Bertha with an anxious\nwondering face, that never altered its expression.\n\n'Good bye, young shaver!' said the jolly Carrier, bending down to\nkiss the child; which Tilly Slowboy, now intent upon her knife and\nfork, had deposited asleep (and strange to say, without damage) in\na little cot of Bertha's furnishing; 'good bye!  Time will come, I\nsuppose, when YOU'LL turn out into the cold, my little friend, and\nleave your old father to enjoy his pipe and his rheumatics in the\nchimney-corner; eh?  Where's Dot?'\n\n'I'm here, John!' she said, starting.\n\n'Come, come!' returned the Carrier, clapping his sounding hands.\n'Where's the pipe?'\n\n'I quite forgot the pipe, John.'\n\nForgot the pipe!  Was such a wonder ever heard of!  She!  Forgot\nthe pipe!\n\n'I'll - I'll fill it directly.  It's soon done.'\n\nBut it was not so soon done, either.  It lay in the usual place -\nthe Carrier's dreadnought pocket - with the little pouch, her own\nwork, from which she was used to fill it, but her hand shook so,\nthat she entangled it (and yet her hand was small enough to have\ncome out easily, I am sure), and bungled terribly.  The filling of\nthe pipe and lighting it, those little offices in which I have\ncommended her discretion, were vilely done, from first to last.\nDuring the whole process, Tackleton stood looking on maliciously\nwith the half-closed eye; which, whenever it met hers - or caught\nit, for it can hardly be said to have ever met another eye:  rather\nbeing a kind of trap to snatch it up - augmented her confusion in a\nmost remarkable degree.\n\n'Why, what a clumsy Dot you are, this afternoon!' said John.  'I\ncould have done it better myself, I verify believe!'\n\nWith these good-natured words, he strode away, and presently was\nheard, in company with Boxer, and the old horse, and the cart,\nmaking lively music down the road.  What time the dreamy Caleb\nstill stood, watching his blind daughter, with the same expression\non his face.\n\n'Bertha!' said Caleb, softly.  'What has happened?  How changed you\nare, my darling, in a few hours - since this morning.  YOU silent\nand dull all day!  What is it?  Tell me!'\n\n'Oh father, father!' cried the Blind Girl, bursting into tears.\n'Oh my hard, hard fate!'\n\nCaleb drew his hand across his eyes before he answered her.\n\n'But think how cheerful and how happy you have been, Bertha!  How\ngood, and how much loved, by many people.'\n\n'That strikes me to the heart, dear father!  Always so mindful of\nme!  Always so kind to me!'\n\nCaleb was very much perplexed to understand her.\n\n'To be - to be blind, Bertha, my poor dear,' he faltered, 'is a\ngreat affliction; but - '\n\n'I have never felt it!' cried the Blind Girl.  'I have never felt\nit, in its fulness.  Never!  I have sometimes wished that I could\nsee you, or could see him - only once, dear father, only for one\nlittle minute - that I might know what it is I treasure up,' she\nlaid her hands upon her breast, 'and hold here!  That I might be\nsure and have it right!  And sometimes (but then I was a child) I\nhave wept in my prayers at night, to think that when your images\nascended from my heart to Heaven, they might not be the true\nresemblance of yourselves.  But I have never had these feelings\nlong.  They have passed away and left me tranquil and contented.'\n\n'And they will again,' said Caleb.\n\n'But, father!  Oh my good, gentle father, bear with me, if I am\nwicked!' said the Blind Girl.  'This is not the sorrow that so\nweighs me down!'\n\nHer father could not choose but let his moist eyes overflow; she\nwas so earnest and pathetic, but he did not understand her, yet.\n\n'Bring her to me,' said Bertha.  'I cannot hold it closed and shut\nwithin myself.  Bring her to me, father!'\n\nShe knew he hesitated, and said, 'May.  Bring May!'\n\nMay heard the mention of her name, and coming quietly towards her,\ntouched her on the arm.  The Blind Girl turned immediately, and\nheld her by both hands.\n\n'Look into my face, Dear heart, Sweet heart!' said Bertha.  'Read\nit with your beautiful eyes, and tell me if the truth is written on\nit.'\n\n'Dear Bertha, Yes!'\n\nThe Blind Girl still, upturning the blank sightless face, down\nwhich the tears were coursing fast, addressed her in these words:\n\n'There is not, in my soul, a wish or thought that is not for your\ngood, bright May!  There is not, in my soul, a grateful\nrecollection stronger than the deep remembrance which is stored\nthere, of the many many times when, in the full pride of sight and\nbeauty, you have had consideration for Blind Bertha, even when we\ntwo were children, or when Bertha was as much a child as ever\nblindness can be!  Every blessing on your head!  Light upon your\nhappy course!  Not the less, my dear May;' and she drew towards\nher, in a closer grasp; 'not the less, my bird, because, to-day,\nthe knowledge that you are to be His wife has wrung my heart almost\nto breaking!  Father, May, Mary! oh forgive me that it is so, for\nthe sake of all he has done to relieve the weariness of my dark\nlife:  and for the sake of the belief you have in me, when I call\nHeaven to witness that I could not wish him married to a wife more\nworthy of his goodness!'\n\nWhile speaking, she had released May Fielding's hands, and clasped\nher garments in an attitude of mingled supplication and love.\nSinking lower and lower down, as she proceeded in her strange\nconfession, she dropped at last at the feet of her friend, and hid\nher blind face in the folds of her dress.\n\n'Great Power!' exclaimed her father, smitten at one blow with the\ntruth, 'have I deceived her from the cradle, but to break her heart\nat last!'\n\nIt was well for all of them that Dot, that beaming, useful, busy\nlittle Dot - for such she was, whatever faults she had, and however\nyou may learn to hate her, in good time - it was well for all of\nthem, I say, that she was there:  or where this would have ended,\nit were hard to tell.  But Dot, recovering her self-possession,\ninterposed, before May could reply, or Caleb say another word.\n\n'Come, come, dear Bertha! come away with me!  Give her your arm,\nMay.  So!  How composed she is, you see, already; and how good it\nis of her to mind us,' said the cheery little woman, kissing her\nupon the forehead.  'Come away, dear Bertha.  Come! and here's her\ngood father will come with her; won't you, Caleb?  To - be - sure!'\n\nWell, well! she was a noble little Dot in such things, and it must\nhave been an obdurate nature that could have withstood her\ninfluence.  When she had got poor Caleb and his Bertha away, that\nthey might comfort and console each other, as she knew they only\ncould, she presently came bouncing back, - the saying is, as fresh\nas any daisy; I say fresher - to mount guard over that bridling\nlittle piece of consequence in the cap and gloves, and prevent the\ndear old creature from making discoveries.\n\n'So bring me the precious Baby, Tilly,' said she, drawing a chair\nto the fire; 'and while I have it in my lap, here's Mrs. Fielding,\nTilly, will tell me all about the management of Babies, and put me\nright in twenty points where I'm as wrong as can be.  Won't you,\nMrs. Fielding?'\n\nNot even the Welsh Giant, who, according to the popular expression,\nwas so 'slow' as to perform a fatal surgical operation upon\nhimself, in emulation of a juggling-trick achieved by his arch-\nenemy at breakfast-time; not even he fell half so readily into the\nsnare prepared for him, as the old lady did into this artful\npitfall.  The fact of Tackleton having walked out; and furthermore,\nof two or three people having been talking together at a distance,\nfor two minutes, leaving her to her own resources; was quite enough\nto have put her on her dignity, and the bewailment of that\nmysterious convulsion in the Indigo trade, for four-and-twenty\nhours.  But this becoming deference to her experience, on the part\nof the young mother, was so irresistible, that after a short\naffectation of humility, she began to enlighten her with the best\ngrace in the world; and sitting bolt upright before the wicked Dot,\nshe did, in half an hour, deliver more infallible domestic recipes\nand precepts, than would (if acted on) have utterly destroyed and\ndone up that Young Peerybingle, though he had been an Infant\nSamson.\n\nTo change the theme, Dot did a little needlework - she carried the\ncontents of a whole workbox in her pocket; however she contrived\nit, I don't know - then did a little nursing; then a little more\nneedlework; then had a little whispering chat with May, while the\nold lady dozed; and so in little bits of bustle, which was quite\nher manner always, found it a very short afternoon.  Then, as it\ngrew dark, and as it was a solemn part of this Institution of the\nPic-Nic that she should perform all Bertha's household tasks, she\ntrimmed the fire, and swept the hearth, and set the tea-board out,\nand drew the curtain, and lighted a candle.  Then she played an air\nor two on a rude kind of harp, which Caleb had contrived for\nBertha, and played them very well; for Nature had made her delicate\nlittle ear as choice a one for music as it would have been for\njewels, if she had had any to wear.  By this time it was the\nestablished hour for having tea; and Tackleton came back again, to\nshare the meal, and spend the evening.\n\nCaleb and Bertha had returned some time before, and Caleb had sat\ndown to his afternoon's work.  But he couldn't settle to it, poor\nfellow, being anxious and remorseful for his daughter.  It was\ntouching to see him sitting idle on his working-stool, regarding\nher so wistfully, and always saying in his face, 'Have I deceived\nher from her cradle, but to break her heart!'\n\nWhen it was night, and tea was done, and Dot had nothing more to do\nin washing up the cups and saucers; in a word - for I must come to\nit, and there is no use in putting it off - when the time drew nigh\nfor expecting the Carrier's return in every sound of distant\nwheels, her manner changed again, her colour came and went, and she\nwas very restless.  Not as good wives are, when listening for their\nhusbands.  No, no, no.  It was another sort of restlessness from\nthat.\n\nWheels heard.  A horse's feet.  The barking of a dog.  The gradual\napproach of all the sounds.  The scratching paw of Boxer at the\ndoor!\n\n'Whose step is that!' cried Bertha, starting up.\n\n'Whose step?' returned the Carrier, standing in the portal, with\nhis brown face ruddy as a winter berry from the keen night air.\n'Why, mine.'\n\n'The other step,' said Bertha.  'The man's tread behind you!'\n\n'She is not to be deceived,' observed the Carrier, laughing.  'Come\nalong, sir.  You'll be welcome, never fear!'\n\nHe spoke in a loud tone; and as he spoke, the deaf old gentleman\nentered.\n\n'He's not so much a stranger, that you haven't seen him once,\nCaleb,' said the Carrier.  'You'll give him house-room till we go?'\n\n'Oh surely, John, and take it as an honour.'\n\n'He's the best company on earth, to talk secrets in,' said John.\n'I have reasonable good lungs, but he tries 'em, I can tell you.\nSit down, sir.  All friends here, and glad to see you!'\n\nWhen he had imparted this assurance, in a voice that amply\ncorroborated what he had said about his lungs, he added in his\nnatural tone, 'A chair in the chimney-corner, and leave to sit\nquite silent and look pleasantly about him, is all he cares for.\nHe's easily pleased.'\n\nBertha had been listening intently.  She called Caleb to her side,\nwhen he had set the chair, and asked him, in a low voice, to\ndescribe their visitor.  When he had done so (truly now; with\nscrupulous fidelity), she moved, for the first time since he had\ncome in, and sighed, and seemed to have no further interest\nconcerning him.\n\nThe Carrier was in high spirits, good fellow that he was, and\nfonder of his little wife than ever.\n\n'A clumsy Dot she was, this afternoon!' he said, encircling her\nwith his rough arm, as she stood, removed from the rest; 'and yet I\nlike her somehow.  See yonder, Dot!'\n\nHe pointed to the old man.  She looked down.  I think she trembled.\n\n'He's - ha ha ha! - he's full of admiration for you!' said the\nCarrier.  'Talked of nothing else, the whole way here.  Why, he's a\nbrave old boy.  I like him for it!'\n\n'I wish he had had a better subject, John,' she said, with an\nuneasy glance about the room.  At Tackleton especially.\n\n'A better subject!' cried the jovial John.  'There's no such thing.\nCome, off with the great-coat, off with the thick shawl, off with\nthe heavy wrappers! and a cosy half-hour by the fire!  My humble\nservice, Mistress.  A game at cribbage, you and I?  That's hearty.\nThe cards and board, Dot.  And a glass of beer here, if there's any\nleft, small wife!'\n\nHis challenge was addressed to the old lady, who accepting it with\ngracious readiness, they were soon engaged upon the game.  At\nfirst, the Carrier looked about him sometimes, with a smile, or now\nand then called Dot to peep over his shoulder at his hand, and\nadvise him on some knotty point.  But his adversary being a rigid\ndisciplinarian, and subject to an occasional weakness in respect of\npegging more than she was entitled to, required such vigilance on\nhis part, as left him neither eyes nor ears to spare.  Thus, his\nwhole attention gradually became absorbed upon the cards; and he\nthought of nothing else, until a hand upon his shoulder restored\nhim to a consciousness of Tackleton.\n\n'I am sorry to disturb you - but a word, directly.'\n\n'I'm going to deal,' returned the Carrier.  'It's a crisis.'\n\n'It is,' said Tackleton.  'Come here, man!'\n\nThere was that in his pale face which made the other rise\nimmediately, and ask him, in a hurry, what the matter was.\n\n'Hush!  John Peerybingle,' said Tackleton.  'I am sorry for this.\nI am indeed.  I have been afraid of it.  I have suspected it from\nthe first.'\n\n'What is it?' asked the Carrier, with a frightened aspect.\n\n'Hush!  I'll show you, if you'll come with me.'\n\nThe Carrier accompanied him, without another word.  They went\nacross a yard, where the stars were shining, and by a little side-\ndoor, into Tackleton's own counting-house, where there was a glass\nwindow, commanding the ware-room, which was closed for the night.\nThere was no light in the counting-house itself, but there were\nlamps in the long narrow ware-room; and consequently the window was\nbright.\n\n'A moment!' said Tackleton.  'Can you bear to look through that\nwindow, do you think?'\n\n'Why not?' returned the Carrier.\n\n'A moment more,' said Tackleton.  'Don't commit any violence.  It's\nof no use.  It's dangerous too.  You're a strong-made man; and you\nmight do murder before you know it.'\n\nThe Carrier looked him in the face, and recoiled a step as if he\nhad been struck.  In one stride he was at the window, and he saw -\n\nOh Shadow on the Hearth!  Oh truthful Cricket!  Oh perfidious Wife!\n\nHe saw her, with the old man - old no longer, but erect and gallant\n- bearing in his hand the false white hair that had won his way\ninto their desolate and miserable home.  He saw her listening to\nhim, as he bent his head to whisper in her ear; and suffering him\nto clasp her round the waist, as they moved slowly down the dim\nwooden gallery towards the door by which they had entered it.  He\nsaw them stop, and saw her turn - to have the face, the face he\nloved so, so presented to his view! - and saw her, with her own\nhands, adjust the lie upon his head, laughing, as she did it, at\nhis unsuspicious nature!\n\nHe clenched his strong right hand at first, as if it would have\nbeaten down a lion.  But opening it immediately again, he spread it\nout before the eyes of Tackleton (for he was tender of her, even\nthen), and so, as they passed out, fell down upon a desk, and was\nas weak as any infant.\n\nHe was wrapped up to the chin, and busy with his horse and parcels,\nwhen she came into the room, prepared for going home.\n\n'Now, John, dear!  Good night, May!  Good night, Bertha!'\n\nCould she kiss them?  Could she be blithe and cheerful in her\nparting?  Could she venture to reveal her face to them without a\nblush?  Yes.  Tackleton observed her closely, and she did all this.\n\nTilly was hushing the Baby, and she crossed and re-crossed\nTackleton, a dozen times, repeating drowsily:\n\n'Did the knowledge that it was to be its wifes, then, wring its\nhearts almost to breaking; and did its fathers deceive it from its\ncradles but to break its hearts at last!'\n\n'Now, Tilly, give me the Baby!  Good night, Mr. Tackleton.  Where's\nJohn, for goodness' sake?'\n\n'He's going to walk beside the horse's head,' said Tackleton; who\nhelped her to her seat.\n\n'My dear John.  Walk?  To-night?'\n\nThe muffled figure of her husband made a hasty sign in the\naffirmative; and the false stranger and the little nurse being in\ntheir places, the old horse moved off.  Boxer, the unconscious\nBoxer, running on before, running back, running round and round the\ncart, and barking as triumphantly and merrily as ever.\n\nWhen Tackleton had gone off likewise, escorting May and her mother\nhome, poor Caleb sat down by the fire beside his daughter; anxious\nand remorseful at the core; and still saying in his wistful\ncontemplation of her, 'Have I deceived her from her cradle, but to\nbreak her heart at last!'\n\nThe toys that had been set in motion for the Baby, had all stopped,\nand run down, long ago.  In the faint light and silence, the\nimperturbably calm dolls, the agitated rocking-horses with\ndistended eyes and nostrils, the old gentlemen at the street-doors,\nstanding half doubled up upon their failing knees and ankles, the\nwry-faced nut-crackers, the very Beasts upon their way into the\nArk, in twos, like a Boarding School out walking, might have been\nimagined to be stricken motionless with fantastic wonder, at Dot\nbeing false, or Tackleton beloved, under any combination of\ncircumstances.\n\n\n\nCHAPTER III - Chirp the Third\n\n\n\nTHE Dutch clock in the corner struck Ten, when the Carrier sat down\nby his fireside.  So troubled and grief-worn, that he seemed to\nscare the Cuckoo, who, having cut his ten melodious announcements\nas short as possible, plunged back into the Moorish Palace again,\nand clapped his little door behind him, as if the unwonted\nspectacle were too much for his feelings.\n\nIf the little Haymaker had been armed with the sharpest of scythes,\nand had cut at every stroke into the Carrier's heart, he never\ncould have gashed and wounded it, as Dot had done.\n\nIt was a heart so full of love for her; so bound up and held\ntogether by innumerable threads of winning remembrance, spun from\nthe daily working of her many qualities of endearment; it was a\nheart in which she had enshrined herself so gently and so closely;\na heart so single and so earnest in its Truth, so strong in right,\nso weak in wrong; that it could cherish neither passion nor revenge\nat first, and had only room to hold the broken image of its Idol.\n\nBut, slowly, slowly, as the Carrier sat brooding on his hearth, now\ncold and dark, other and fiercer thoughts began to rise within him,\nas an angry wind comes rising in the night.  The Stranger was\nbeneath his outraged roof.  Three steps would take him to his\nchamber-door.  One blow would beat it in.  'You might do murder\nbefore you know it,' Tackleton had said.  How could it be murder,\nif he gave the villain time to grapple with him hand to hand!  He\nwas the younger man.\n\nIt was an ill-timed thought, bad for the dark mood of his mind.  It\nwas an angry thought, goading him to some avenging act, that should\nchange the cheerful house into a haunted place which lonely\ntravellers would dread to pass by night; and where the timid would\nsee shadows struggling in the ruined windows when the moon was dim,\nand hear wild noises in the stormy weather.\n\nHe was the younger man!  Yes, yes; some lover who had won the heart\nthat HE had never touched.  Some lover of her early choice, of whom\nshe had thought and dreamed, for whom she had pined and pined, when\nhe had fancied her so happy by his side.  O agony to think of it!\n\nShe had been above-stairs with the Baby, getting it to bed.  As he\nsat brooding on the hearth, she came close beside him, without his\nknowledge - in the turning of the rack of his great misery, he lost\nall other sounds - and put her little stool at his feet.  He only\nknew it, when he felt her hand upon his own, and saw her looking up\ninto his face.\n\nWith wonder?  No.  It was his first impression, and he was fain to\nlook at her again, to set it right.  No, not with wonder.  With an\neager and inquiring look; but not with wonder.  At first it was\nalarmed and serious; then, it changed into a strange, wild,\ndreadful smile of recognition of his thoughts; then, there was\nnothing but her clasped hands on her brow, and her bent head, and\nfalling hair.\n\nThough the power of Omnipotence had been his to wield at that\nmoment, he had too much of its diviner property of Mercy in his\nbreast, to have turned one feather's weight of it against her.  But\nhe could not bear to see her crouching down upon the little seat\nwhere he had often looked on her, with love and pride, so innocent\nand gay; and, when she rose and left him, sobbing as she went, he\nfelt it a relief to have the vacant place beside him rather than\nher so long-cherished presence.  This in itself was anguish keener\nthan all, reminding him how desolate he was become, and how the\ngreat bond of his life was rent asunder.\n\nThe more he felt this, and the more he knew he could have better\nborne to see her lying prematurely dead before him with their\nlittle child upon her breast, the higher and the stronger rose his\nwrath against his enemy.  He looked about him for a weapon.\n\nThere was a gun, hanging on the wall.  He took it down, and moved a\npace or two towards the door of the perfidious Stranger's room.  He\nknew the gun was loaded.  Some shadowy idea that it was just to\nshoot this man like a wild beast, seized him, and dilated in his\nmind until it grew into a monstrous demon in complete possession of\nhim, casting out all milder thoughts and setting up its undivided\nempire.\n\nThat phrase is wrong.  Not casting out his milder thoughts, but\nartfully transforming them.  Changing them into scourges to drive\nhim on.  Turning water into blood, love into hate, gentleness into\nblind ferocity.  Her image, sorrowing, humbled, but still pleading\nto his tenderness and mercy with resistless power, never left his\nmind; but, staying there, it urged him to the door; raised the\nweapon to his shoulder; fitted and nerved his finger to the\ntrigger; and cried 'Kill him!  In his bed!'\n\nHe reversed the gun to beat the stock up the door; he already held\nit lifted in the air; some indistinct design was in his thoughts of\ncalling out to him to fly, for God's sake, by the window -\n\nWhen, suddenly, the struggling fire illumined the whole chimney\nwith a glow of light; and the Cricket on the Hearth began to Chirp!\n\nNo sound he could have heard, no human voice, not even hers, could\nso have moved and softened him.  The artless words in which she had\ntold him of her love for this same Cricket, were once more freshly\nspoken; her trembling, earnest manner at the moment, was again\nbefore him; her pleasant voice - O what a voice it was, for making\nhousehold music at the fireside of an honest man! - thrilled\nthrough and through his better nature, and awoke it into life and\naction.\n\nHe recoiled from the door, like a man walking in his sleep,\nawakened from a frightful dream; and put the gun aside.  Clasping\nhis hands before his face, he then sat down again beside the fire,\nand found relief in tears.\n\nThe Cricket on the Hearth came out into the room, and stood in\nFairy shape before him.\n\n'\"I love it,\"' said the Fairy Voice, repeating what he well\nremembered, '\"for the many times I have heard it, and the many\nthoughts its harmless music has given me.\"'\n\n'She said so!' cried the Carrier.  'True!'\n\n'\"This has been a happy home, John; and I love the Cricket for its\nsake!\"'\n\n'It has been, Heaven knows,' returned the Carrier.  'She made it\nhappy, always, - until now.'\n\n'So gracefully sweet-tempered; so domestic, joyful, busy, and\nlight-hearted!' said the Voice.\n\n'Otherwise I never could have loved her as I did,' returned the\nCarrier.\n\nThe Voice, correcting him, said 'do.'\n\nThe Carrier repeated 'as I did.'  But not firmly.  His faltering\ntongue resisted his control, and would speak in its own way, for\nitself and him.\n\nThe Figure, in an attitude of invocation, raised its hand and said:\n\n'Upon your own hearth - '\n\n'The hearth she has blighted,' interposed the Carrier.\n\n'The hearth she has - how often! - blessed and brightened,' said\nthe Cricket; 'the hearth which, but for her, were only a few stones\nand bricks and rusty bars, but which has been, through her, the\nAltar of your Home; on which you have nightly sacrificed some petty\npassion, selfishness, or care, and offered up the homage of a\ntranquil mind, a trusting nature, and an overflowing heart; so that\nthe smoke from this poor chimney has gone upward with a better\nfragrance than the richest incense that is burnt before the richest\nshrines in all the gaudy temples of this world! - Upon your own\nhearth; in its quiet sanctuary; surrounded by its gentle influences\nand associations; hear her!  Hear me!  Hear everything that speaks\nthe language of your hearth and home!'\n\n'And pleads for her?' inquired the Carrier.\n\n'All things that speak the language of your hearth and home, must\nplead for her!' returned the Cricket.  'For they speak the truth.'\n\nAnd while the Carrier, with his head upon his hands, continued to\nsit meditating in his chair, the Presence stood beside him,\nsuggesting his reflections by its power, and presenting them before\nhim, as in a glass or picture.  It was not a solitary Presence.\nFrom the hearthstone, from the chimney, from the clock, the pipe,\nthe kettle, and the cradle; from the floor, the walls, the ceiling,\nand the stairs; from the cart without, and the cupboard within, and\nthe household implements; from every thing and every place with\nwhich she had ever been familiar, and with which she had ever\nentwined one recollection of herself in her unhappy husband's mind;\nFairies came trooping forth.  Not to stand beside him as the\nCricket did, but to busy and bestir themselves.  To do all honour\nto her image.  To pull him by the skirts, and point to it when it\nappeared.  To cluster round it, and embrace it, and strew flowers\nfor it to tread on.  To try to crown its fair head with their tiny\nhands.  To show that they were fond of it and loved it; and that\nthere was not one ugly, wicked or accusatory creature to claim\nknowledge of it - none but their playful and approving selves.\n\nHis thoughts were constant to her image.  It was always there.\n\nShe sat plying her needle, before the fire, and singing to herself.\nSuch a blithe, thriving, steady little Dot!  The fairy figures\nturned upon him all at once, by one consent, with one prodigious\nconcentrated stare, and seemed to say, 'Is this the light wife you\nare mourning for!'\n\nThere were sounds of gaiety outside, musical instruments, and noisy\ntongues, and laughter.  A crowd of young merry-makers came pouring\nin, among whom were May Fielding and a score of pretty girls.  Dot\nwas the fairest of them all; as young as any of them too.  They\ncame to summon her to join their party.  It was a dance.  If ever\nlittle foot were made for dancing, hers was, surely.  But she\nlaughed, and shook her head, and pointed to her cookery on the\nfire, and her table ready spread:  with an exulting defiance that\nrendered her more charming than she was before.  And so she merrily\ndismissed them, nodding to her would-be partners, one by one, as\nthey passed, but with a comical indifference, enough to make them\ngo and drown themselves immediately if they were her admirers - and\nthey must have been so, more or less; they couldn't help it.  And\nyet indifference was not her character.  O no!  For presently,\nthere came a certain Carrier to the door; and bless her what a\nwelcome she bestowed upon him!\n\nAgain the staring figures turned upon him all at once, and seemed\nto say, 'Is this the wife who has forsaken you!'\n\nA shadow fell upon the mirror or the picture:  call it what you\nwill.  A great shadow of the Stranger, as he first stood underneath\ntheir roof; covering its surface, and blotting out all other\nobjects.  But the nimble Fairies worked like bees to clear it off\nagain.  And Dot again was there.  Still bright and beautiful.\n\nRocking her little Baby in its cradle, singing to it softly, and\nresting her head upon a shoulder which had its counterpart in the\nmusing figure by which the Fairy Cricket stood.\n\nThe night - I mean the real night:  not going by Fairy clocks - was\nwearing now; and in this stage of the Carrier's thoughts, the moon\nburst out, and shone brightly in the sky.  Perhaps some calm and\nquiet light had risen also, in his mind; and he could think more\nsoberly of what had happened.\n\nAlthough the shadow of the Stranger fell at intervals upon the\nglass - always distinct, and big, and thoroughly defined - it never\nfell so darkly as at first.  Whenever it appeared, the Fairies\nuttered a general cry of consternation, and plied their little arms\nand legs, with inconceivable activity, to rub it out.  And whenever\nthey got at Dot again, and showed her to him once more, bright and\nbeautiful, they cheered in the most inspiring manner.\n\nThey never showed her, otherwise than beautiful and bright, for\nthey were Household Spirits to whom falsehood is annihilation; and\nbeing so, what Dot was there for them, but the one active, beaming,\npleasant little creature who had been the light and sun of the\nCarrier's Home!\n\nThe Fairies were prodigiously excited when they showed her, with\nthe Baby, gossiping among a knot of sage old matrons, and affecting\nto be wondrous old and matronly herself, and leaning in a staid,\ndemure old way upon her husband's arm, attempting - she! such a bud\nof a little woman - to convey the idea of having abjured the\nvanities of the world in general, and of being the sort of person\nto whom it was no novelty at all to be a mother; yet in the same\nbreath, they showed her, laughing at the Carrier for being awkward,\nand pulling up his shirt-collar to make him smart, and mincing\nmerrily about that very room to teach him how to dance!\n\nThey turned, and stared immensely at him when they showed her with\nthe Blind Girl; for, though she carried cheerfulness and animation\nwith her wheresoever she went, she bore those influences into Caleb\nPlummer's home, heaped up and running over.  The Blind Girl's love\nfor her, and trust in her, and gratitude to her; her own good busy\nway of setting Bertha's thanks aside; her dexterous little arts for\nfilling up each moment of the visit in doing something useful to\nthe house, and really working hard while feigning to make holiday;\nher bountiful provision of those standing delicacies, the Veal and\nHam-Pie and the bottles of Beer; her radiant little face arriving\nat the door, and taking leave; the wonderful expression in her\nwhole self, from her neat foot to the crown of her head, of being a\npart of the establishment - a something necessary to it, which it\ncouldn't be without; all this the Fairies revelled in, and loved\nher for.  And once again they looked upon him all at once,\nappealingly, and seemed to say, while some among them nestled in\nher dress and fondled her, 'Is this the wife who has betrayed your\nconfidence!'\n\nMore than once, or twice, or thrice, in the long thoughtful night,\nthey showed her to him sitting on her favourite seat, with her bent\nhead, her hands clasped on her brow, her falling hair.  As he had\nseen her last.  And when they found her thus, they neither turned\nnor looked upon him, but gathered close round her, and comforted\nand kissed her, and pressed on one another to show sympathy and\nkindness to her, and forgot him altogether.\n\nThus the night passed.  The moon went down; the stars grew pale;\nthe cold day broke; the sun rose.  The Carrier still sat, musing,\nin the chimney corner.  He had sat there, with his head upon his\nhands, all night.  All night the faithful Cricket had been Chirp,\nChirp, Chirping on the Hearth.  All night he had listened to its\nvoice.  All night the household Fairies had been busy with him.\nAll night she had been amiable and blameless in the glass, except\nwhen that one shadow fell upon it.\n\nHe rose up when it was broad day, and washed and dressed himself.\nHe couldn't go about his customary cheerful avocations - he wanted\nspirit for them - but it mattered the less, that it was Tackleton's\nwedding-day, and he had arranged to make his rounds by proxy.  He\nthought to have gone merrily to church with Dot.  But such plans\nwere at an end.  It was their own wedding-day too.  Ah! how little\nhe had looked for such a close to such a year!\n\nThe Carrier had expected that Tackleton would pay him an early\nvisit; and he was right.  He had not walked to and fro before his\nown door, many minutes, when he saw the Toy-merchant coming in his\nchaise along the road.  As the chaise drew nearer, he perceived\nthat Tackleton was dressed out sprucely for his marriage, and that\nhe had decorated his horse's head with flowers and favours.\n\nThe horse looked much more like a bridegroom than Tackleton, whose\nhalf-closed eye was more disagreeably expressive than ever.  But\nthe Carrier took little heed of this.  His thoughts had other\noccupation.\n\n'John Peerybingle!' said Tackleton, with an air of condolence.  'My\ngood fellow, how do you find yourself this morning?'\n\n'I have had but a poor night, Master Tackleton,' returned the\nCarrier, shaking his head:  'for I have been a good deal disturbed\nin my mind.  But it's over now!  Can you spare me half an hour or\nso, for some private talk?'\n\n'I came on purpose,' returned Tackleton, alighting.  'Never mind\nthe horse.  He'll stand quiet enough, with the reins over this\npost, if you'll give him a mouthful of hay.'\n\nThe Carrier having brought it from his stable, and set it before\nhim, they turned into the house.\n\n'You are not married before noon,' he said, 'I think?'\n\n'No,' answered Tackleton.  'Plenty of time.  Plenty of time.'\n\nWhen they entered the kitchen, Tilly Slowboy was rapping at the\nStranger's door; which was only removed from it by a few steps.\nOne of her very red eyes (for Tilly had been crying all night long,\nbecause her mistress cried) was at the keyhole; and she was\nknocking very loud; and seemed frightened.\n\n'If you please I can't make nobody hear,' said Tilly, looking\nround.  'I hope nobody an't gone and been and died if you please!'\n\nThis philanthropic wish, Miss Slowboy emphasised with various new\nraps and kicks at the door; which led to no result whatever.\n\n'Shall I go?' said Tackleton.  'It's curious.'\n\nThe Carrier, who had turned his face from the door, signed to him\nto go if he would.\n\nSo Tackleton went to Tilly Slowboy's relief; and he too kicked and\nknocked; and he too failed to get the least reply.  But he thought\nof trying the handle of the door; and as it opened easily, he\npeeped in, looked in, went in, and soon came running out again.\n\n'John Peerybingle,' said Tackleton, in his ear.  'I hope there has\nbeen nothing - nothing rash in the night?'\n\nThe Carrier turned upon him quickly.\n\n'Because he's gone!' said Tackleton; 'and the window's open.  I\ndon't see any marks - to be sure it's almost on a level with the\ngarden:  but I was afraid there might have been some - some\nscuffle.  Eh?'\n\nHe nearly shut up the expressive eye altogether; he looked at him\nso hard.  And he gave his eye, and his face, and his whole person,\na sharp twist.  As if he would have screwed the truth out of him.\n\n'Make yourself easy,' said the Carrier.  'He went into that room\nlast night, without harm in word or deed from me, and no one has\nentered it since.  He is away of his own free will.  I'd go out\ngladly at that door, and beg my bread from house to house, for\nlife, if I could so change the past that he had never come.  But he\nhas come and gone.  And I have done with him!'\n\n'Oh! - Well, I think he has got off pretty easy,' said Tackleton,\ntaking a chair.\n\nThe sneer was lost upon the Carrier, who sat down too, and shaded\nhis face with his hand, for some little time, before proceeding.\n\n'You showed me last night,' he said at length, 'my wife; my wife\nthat I love; secretly - '\n\n'And tenderly,' insinuated Tackleton.\n\n'Conniving at that man's disguise, and giving him opportunities of\nmeeting her alone.  I think there's no sight I wouldn't have rather\nseen than that.  I think there's no man in the world I wouldn't\nhave rather had to show it me.'\n\n'I confess to having had my suspicions always,' said Tackleton.\n'And that has made me objectionable here, I know.'\n\n'But as you did show it me,' pursued the Carrier, not minding him;\n'and as you saw her, my wife, my wife that I love' - his voice, and\neye, and hand, grew steadier and firmer as he repeated these words:\nevidently in pursuance of a steadfast purpose - 'as you saw her at\nthis disadvantage, it is right and just that you should also see\nwith my eyes, and look into my breast, and know what my mind is,\nupon the subject.  For it's settled,' said the Carrier, regarding\nhim attentively.  'And nothing can shake it now.'\n\nTackleton muttered a few general words of assent, about its being\nnecessary to vindicate something or other; but he was overawed by\nthe manner of his companion.  Plain and unpolished as it was, it\nhad a something dignified and noble in it, which nothing but the\nsoul of generous honour dwelling in the man could have imparted.\n\n'I am a plain, rough man,' pursued the Carrier, 'with very little\nto recommend me.  I am not a clever man, as you very well know.  I\nam not a young man.  I loved my little Dot, because I had seen her\ngrow up, from a child, in her father's house; because I knew how\nprecious she was; because she had been my life, for years and\nyears.  There's many men I can't compare with, who never could have\nloved my little Dot like me, I think!'\n\nHe paused, and softly beat the ground a short time with his foot,\nbefore resuming.\n\n'I often thought that though I wasn't good enough for her, I should\nmake her a kind husband, and perhaps know her value better than\nanother; and in this way I reconciled it to myself, and came to\nthink it might be possible that we should be married.  And in the\nend it came about, and we were married.'\n\n'Hah!' said Tackleton, with a significant shake of the head.\n\n'I had studied myself; I had had experience of myself; I knew how\nmuch I loved her, and how happy I should be,' pursued the Carrier.\n'But I had not - I feel it now - sufficiently considered her.'\n\n'To be sure,' said Tackleton.  'Giddiness, frivolity, fickleness,\nlove of admiration!  Not considered!  All left out of sight!  Hah!'\n\n'You had best not interrupt me,' said the Carrier, with some\nsternness, 'till you understand me; and you're wide of doing so.\nIf, yesterday, I'd have struck that man down at a blow, who dared\nto breathe a word against her, to-day I'd set my foot upon his\nface, if he was my brother!'\n\nThe Toy-merchant gazed at him in astonishment.  He went on in a\nsofter tone:\n\n'Did I consider,' said the Carrier, 'that I took her - at her age,\nand with her beauty - from her young companions, and the many\nscenes of which she was the ornament; in which she was the\nbrightest little star that ever shone, to shut her up from day to\nday in my dull house, and keep my tedious company?  Did I consider\nhow little suited I was to her sprightly humour, and how wearisome\na plodding man like me must be, to one of her quick spirit?  Did I\nconsider that it was no merit in me, or claim in me, that I loved\nher, when everybody must, who knew her?  Never.  I took advantage\nof her hopeful nature and her cheerful disposition; and I married\nher.  I wish I never had!  For her sake; not for mine!'\n\nThe Toy-merchant gazed at him, without winking.  Even the half-shut\neye was open now.\n\n'Heaven bless her!' said the Carrier, 'for the cheerful constancy\nwith which she tried to keep the knowledge of this from me!  And\nHeaven help me, that, in my slow mind, I have not found it out\nbefore!  Poor child!  Poor Dot!  I not to find it out, who have\nseen her eyes fill with tears, when such a marriage as our own was\nspoken of!  I, who have seen the secret trembling on her lips a\nhundred times, and never suspected it till last night!  Poor girl!\nThat I could ever hope she would be fond of me!  That I could ever\nbelieve she was!'\n\n'She made a show of it,' said Tackleton.  'She made such a show of\nit, that to tell you the truth it was the origin of my misgivings.'\n\nAnd here he asserted the superiority of May Fielding, who certainly\nmade no sort of show of being fond of HIM.\n\n'She has tried,' said the poor Carrier, with greater emotion than\nhe had exhibited yet; 'I only now begin to know how hard she has\ntried, to be my dutiful and zealous wife.  How good she has been;\nhow much she has done; how brave and strong a heart she has; let\nthe happiness I have known under this roof bear witness!  It will\nbe some help and comfort to me, when I am here alone.'\n\n'Here alone?' said Tackleton.  'Oh!  Then you do mean to take some\nnotice of this?'\n\n'I mean,' returned the Carrier, 'to do her the greatest kindness,\nand make her the best reparation, in my power.  I can release her\nfrom the daily pain of an unequal marriage, and the struggle to\nconceal it.  She shall be as free as I can render her.'\n\n'Make HER reparation!' exclaimed Tackleton, twisting and turning\nhis great ears with his hands.  'There must be something wrong\nhere.  You didn't say that, of course.'\n\nThe Carrier set his grip upon the collar of the Toy-merchant, and\nshook him like a reed.\n\n'Listen to me!' he said.  'And take care that you hear me right.\nListen to me.  Do I speak plainly?'\n\n'Very plainly indeed,' answered Tackleton.\n\n'As if I meant it?'\n\n'Very much as if you meant it.'\n\n'I sat upon that hearth, last night, all night,' exclaimed the\nCarrier.  'On the spot where she has often sat beside me, with her\nsweet face looking into mine.  I called up her whole life, day by\nday.  I had her dear self, in its every passage, in review before\nme.  And upon my soul she is innocent, if there is One to judge the\ninnocent and guilty!'\n\nStaunch Cricket on the Hearth!  Loyal household Fairies!\n\n'Passion and distrust have left me!' said the Carrier; 'and nothing\nbut my grief remains.  In an unhappy moment some old lover, better\nsuited to her tastes and years than I; forsaken, perhaps, for me,\nagainst her will; returned.  In an unhappy moment, taken by\nsurprise, and wanting time to think of what she did, she made\nherself a party to his treachery, by concealing it.  Last night she\nsaw him, in the interview we witnessed.  It was wrong.  But\notherwise than this she is innocent if there is truth on earth!'\n\n'If that is your opinion' - Tackleton began.\n\n'So, let her go!' pursued the Carrier.  'Go, with my blessing for\nthe many happy hours she has given me, and my forgiveness for any\npang she has caused me.  Let her go, and have the peace of mind I\nwish her!  She'll never hate me.  She'll learn to like me better,\nwhen I'm not a drag upon her, and she wears the chain I have\nriveted, more lightly.  This is the day on which I took her, with\nso little thought for her enjoyment, from her home.  To-day she\nshall return to it, and I will trouble her no more.  Her father and\nmother will be here to-day - we had made a little plan for keeping\nit together - and they shall take her home.  I can trust her,\nthere, or anywhere.  She leaves me without blame, and she will live\nso I am sure.  If I should die - I may perhaps while she is still\nyoung; I have lost some courage in a few hours - she'll find that I\nremembered her, and loved her to the last!  This is the end of what\nyou showed me.  Now, it's over!'\n\n'O no, John, not over.  Do not say it's over yet!  Not quite yet.\nI have heard your noble words.  I could not steal away, pretending\nto be ignorant of what has affected me with such deep gratitude.\nDo not say it's over, 'till the clock has struck again!'\n\nShe had entered shortly after Tackleton, and had remained there.\nShe never looked at Tackleton, but fixed her eyes upon her husband.\nBut she kept away from him, setting as wide a space as possible\nbetween them; and though she spoke with most impassioned\nearnestness, she went no nearer to him even then.  How different in\nthis from her old self!\n\n'No hand can make the clock which will strike again for me the\nhours that are gone,' replied the Carrier, with a faint smile.\n'But let it be so, if you will, my dear.  It will strike soon.\nIt's of little matter what we say.  I'd try to please you in a\nharder case than that.'\n\n'Well!' muttered Tackleton.  'I must be off, for when the clock\nstrikes again, it'll be necessary for me to be upon my way to\nchurch.  Good morning, John Peerybingle.  I'm sorry to be deprived\nof the pleasure of your company.  Sorry for the loss, and the\noccasion of it too!'\n\n'I have spoken plainly?' said the Carrier, accompanying him to the\ndoor.\n\n'Oh quite!'\n\n'And you'll remember what I have said?'\n\n'Why, if you compel me to make the observation,' said Tackleton,\npreviously taking the precaution of getting into his chaise; 'I\nmust say that it was so very unexpected, that I'm far from being\nlikely to forget it.'\n\n'The better for us both,' returned the Carrier.  'Good bye.  I give\nyou joy!'\n\n'I wish I could give it to YOU,' said Tackleton.  'As I can't;\nthank'ee.  Between ourselves, (as I told you before, eh?) I don't\nmuch think I shall have the less joy in my married life, because\nMay hasn't been too officious about me, and too demonstrative.\nGood bye!  Take care of yourself.'\n\nThe Carrier stood looking after him until he was smaller in the\ndistance than his horse's flowers and favours near at hand; and\nthen, with a deep sigh, went strolling like a restless, broken man,\namong some neighbouring elms; unwilling to return until the clock\nwas on the eve of striking.\n\nHis little wife, being left alone, sobbed piteously; but often\ndried her eyes and checked herself, to say how good he was, how\nexcellent he was! and once or twice she laughed; so heartily,\ntriumphantly, and incoherently (still crying all the time), that\nTilly was quite horrified.\n\n'Ow if you please don't!' said Tilly.  'It's enough to dead and\nbury the Baby, so it is if you please.'\n\n'Will you bring him sometimes, to see his father, Tilly,' inquired\nher mistress, drying her eyes; 'when I can't live here, and have\ngone to my old home?'\n\n'Ow if you please don't!' cried Tilly, throwing back her head, and\nbursting out into a howl - she looked at the moment uncommonly like\nBoxer.  'Ow if you please don't!  Ow, what has everybody gone and\nbeen and done with everybody, making everybody else so wretched!\nOw-w-w-w!'\n\nThe soft-hearted Slowboy trailed off at this juncture, into such a\ndeplorable howl, the more tremendous from its long suppression,\nthat she must infallibly have awakened the Baby, and frightened him\ninto something serious (probably convulsions), if her eyes had not\nencountered Caleb Plummer, leading in his daughter.  This spectacle\nrestoring her to a sense of the proprieties, she stood for some few\nmoments silent, with her mouth wide open; and then, posting off to\nthe bed on which the Baby lay asleep, danced in a weird, Saint\nVitus manner on the floor, and at the same time rummaged with her\nface and head among the bedclothes, apparently deriving much relief\nfrom those extraordinary operations.\n\n'Mary!' said Bertha.  'Not at the marriage!'\n\n'I told her you would not be there, mum,' whispered Caleb.  'I\nheard as much last night.  But bless you,' said the little man,\ntaking her tenderly by both hands, 'I don't care for what they say.\nI don't believe them.  There an't much of me, but that little\nshould be torn to pieces sooner than I'd trust a word against you!'\n\nHe put his arms about her and hugged her, as a child might have\nhugged one of his own dolls.\n\n'Bertha couldn't stay at home this morning,' said Caleb.  'She was\nafraid, I know, to hear the bells ring, and couldn't trust herself\nto be so near them on their wedding-day.  So we started in good\ntime, and came here.  I have been thinking of what I have done,'\nsaid Caleb, after a moment's pause; 'I have been blaming myself\ntill I hardly knew what to do or where to turn, for the distress of\nmind I have caused her; and I've come to the conclusion that I'd\nbetter, if you'll stay with me, mum, the while, tell her the truth.\nYou'll stay with me the while?' he inquired, trembling from head to\nfoot.  'I don't know what effect it may have upon her; I don't know\nwhat she'll think of me; I don't know that she'll ever care for her\npoor father afterwards.  But it's best for her that she should be\nundeceived, and I must bear the consequences as I deserve!'\n\n' Mary,' said Bertha, 'where is your hand!  Ah!  Here it is here it\nis!' pressing it to her lips, with a smile, and drawing it through\nher arm.  'I heard them speaking softly among themselves, last\nnight, of some blame against you.  They were wrong.'\n\nThe Carrier's Wife was silent.  Caleb answered for her.\n\n'They were wrong,' he said.\n\n'I knew it!' cried Bertha, proudly.  'I told them so.  I scorned to\nhear a word!  Blame HER with justice!' she pressed the hand between\nher own, and the soft cheek against her face.  'No!  I am not so\nblind as that.'\n\nHer father went on one side of her, while Dot remained upon the\nother:  holding her hand.\n\n'I know you all,' said Bertha, 'better than you think.  But none so\nwell as her.  Not even you, father.  There is nothing half so real\nand so true about me, as she is.  If I could be restored to sight\nthis instant, and not a word were spoken, I could choose her from a\ncrowd!  My sister!'\n\n'Bertha, my dear!' said Caleb, 'I have something on my mind I want\nto tell you, while we three are alone.  Hear me kindly!  I have a\nconfession to make to you, my darling.'\n\n'A confession, father?'\n\n'I have wandered from the truth and lost myself, my child,' said\nCaleb, with a pitiable expression in his bewildered face.  'I have\nwandered from the truth, intending to be kind to you; and have been\ncruel.'\n\nShe turned her wonder-stricken face towards him, and repeated\n'Cruel!'\n\n'He accuses himself too strongly, Bertha,' said Dot.  'You'll say\nso, presently.  You'll be the first to tell him so.'\n\n'He cruel to me!' cried Bertha, with a smile of incredulity.\n\n'Not meaning it, my child,' said Caleb.  'But I have been; though I\nnever suspected it, till yesterday.  My dear blind daughter, hear\nme and forgive me!  The world you live in, heart of mine, doesn't\nexist as I have represented it.  The eyes you have trusted in, have\nbeen false to you.'\n\nShe turned her wonder-stricken face towards him still; but drew\nback, and clung closer to her friend.\n\n'Your road in life was rough, my poor one,' said Caleb, 'and I\nmeant to smooth it for you.  I have altered objects, changed the\ncharacters of people, invented many things that never have been, to\nmake you happier.  I have had concealments from you, put deceptions\non you, God forgive me! and surrounded you with fancies.'\n\n'But living people are not fancies!' she said hurriedly, and\nturning very pale, and still retiring from him.  'You can't change\nthem.'\n\n'I have done so, Bertha,' pleaded Caleb.  'There is one person that\nyou know, my dove - '\n\n'Oh father! why do you say, I know?' she answered, in a term of\nkeen reproach.  'What and whom do I know!  I who have no leader!  I\nso miserably blind.'\n\nIn the anguish of her heart, she stretched out her hands, as if she\nwere groping her way; then spread them, in a manner most forlorn\nand sad, upon her face.\n\n'The marriage that takes place to-day,' said Caleb, 'is with a\nstern, sordid, grinding man.  A hard master to you and me, my dear,\nfor many years.  Ugly in his looks, and in his nature.  Cold and\ncallous always.  Unlike what I have painted him to you in\neverything, my child.  In everything.'\n\n'Oh why,' cried the Blind Girl, tortured, as it seemed, almost\nbeyond endurance, 'why did you ever do this!  Why did you ever fill\nmy heart so full, and then come in like Death, and tear away the\nobjects of my love!  O Heaven, how blind I am!  How helpless and\nalone!'\n\nHer afflicted father hung his head, and offered no reply but in his\npenitence and sorrow.\n\nShe had been but a short time in this passion of regret, when the\nCricket on the Hearth, unheard by all but her, began to chirp.  Not\nmerrily, but in a low, faint, sorrowing way.  It was so mournful\nthat her tears began to flow; and when the Presence which had been\nbeside the Carrier all night, appeared behind her, pointing to her\nfather, they fell down like rain.\n\nShe heard the Cricket-voice more plainly soon, and was conscious,\nthrough her blindness, of the Presence hovering about her father.\n\n'Mary,' said the Blind Girl, 'tell me what my home is.  What it\ntruly is.'\n\n'It is a poor place, Bertha; very poor and bare indeed.  The house\nwill scarcely keep out wind and rain another winter.  It is as\nroughly shielded from the weather, Bertha,' Dot continued in a low,\nclear voice, 'as your poor father in his sack-cloth coat.'\n\nThe Blind Girl, greatly agitated, rose, and led the Carrier's\nlittle wife aside.\n\n'Those presents that I took such care of; that came almost at my\nwish, and were so dearly welcome to me,' she said, trembling;\n'where did they come from?  Did you send them?'\n\n'No.'\n\n'Who then?'\n\nDot saw she knew, already, and was silent.  The Blind Girl spread\nher hands before her face again.  But in quite another manner now.\n\n'Dear Mary, a moment.  One moment?  More this way.  Speak softly to\nme.  You are true, I know.  You'd not deceive me now; would you?'\n\n'No, Bertha, indeed!'\n\n'No, I am sure you would not.  You have too much pity for me.\nMary, look across the room to where we were just now - to where my\nfather is - my father, so compassionate and loving to me - and tell\nme what you see.'\n\n'I see,' said Dot, who understood her well, 'an old man sitting in\na chair, and leaning sorrowfully on the back, with his face resting\non his hand.  As if his child should comfort him, Bertha.'\n\n'Yes, yes.  She will.  Go on.'\n\n'He is an old man, worn with care and work.  He is a spare,\ndejected, thoughtful, grey-haired man.  I see him now, despondent\nand bowed down, and striving against nothing.  But, Bertha, I have\nseen him many times before, and striving hard in many ways for one\ngreat sacred object.  And I honour his grey head, and bless him!'\n\nThe Blind Girl broke away from her; and throwing herself upon her\nknees before him, took the grey head to her breast.\n\n'It is my sight restored.  It is my sight!' she cried.  'I have\nbeen blind, and now my eyes are open.  I never knew him!  To think\nI might have died, and never truly seen the father who has been so\nloving to me!'\n\nThere were no words for Caleb's emotion.\n\n'There is not a gallant figure on this earth,' exclaimed the Blind\nGirl, holding him in her embrace, 'that I would love so dearly, and\nwould cherish so devotedly, as this!  The greyer, and more worn,\nthe dearer, father!  Never let them say I am blind again.  There's\nnot a furrow in his face, there's not a hair upon his head, that\nshall be forgotten in my prayers and thanks to Heaven!'\n\nCaleb managed to articulate 'My Bertha!'\n\n'And in my blindness, I believed him,' said the girl, caressing him\nwith tears of exquisite affection, 'to be so different!  And having\nhim beside me, day by day, so mindful of me - always, never dreamed\nof this!'\n\n'The fresh smart father in the blue coat, Bertha,' said poor Caleb.\n'He's gone!'\n\n'Nothing is gone,' she answered.  'Dearest father, no!  Everything\nis here - in you.  The father that I loved so well; the father that\nI never loved enough, and never knew; the benefactor whom I first\nbegan to reverence and love, because he had such sympathy for me;\nAll are here in you.  Nothing is dead to me.  The soul of all that\nwas most dear to me is here - here, with the worn face, and the\ngrey head.  And I am NOT blind, father, any longer!'\n\nDot's whole attention had been concentrated, during this discourse,\nupon the father and daughter; but looking, now, towards the little\nHaymaker in the Moorish meadow, she saw that the clock was within a\nfew minutes of striking, and fell, immediately, into a nervous and\nexcited state.\n\n'Father,' said Bertha, hesitating.  'Mary.'\n\n'Yes, my dear,' returned Caleb.  'Here she is.'\n\n'There is no change in HER.  You never told me anything of HER that\nwas not true?'\n\n'I should have done it, my dear, I am afraid,' returned Caleb, 'if\nI could have made her better than she was.  But I must have changed\nher for the worse, if I had changed her at all.  Nothing could\nimprove her, Bertha.'\n\nConfident as the Blind Girl had been when she asked the question,\nher delight and pride in the reply and her renewed embrace of Dot,\nwere charming to behold.\n\n'More changes than you think for, may happen though, my dear,' said\nDot.  'Changes for the better, I mean; changes for great joy to\nsome of us.  You mustn't let them startle you too much, if any such\nshould ever happen, and affect you?  Are those wheels upon the\nroad?  You've a quick ear, Bertha.  Are they wheels?'\n\n'Yes.  Coming very fast.'\n\n'I - I - I know you have a quick ear,' said Dot, placing her hand\nupon her heart, and evidently talking on, as fast as she could to\nhide its palpitating state, 'because I have noticed it often, and\nbecause you were so quick to find out that strange step last night.\nThough why you should have said, as I very well recollect you did\nsay, Bertha, \"Whose step is that!\" and why you should have taken\nany greater observation of it than of any other step, I don't know.\nThough as I said just now, there are great changes in the world:\ngreat changes:  and we can't do better than prepare ourselves to be\nsurprised at hardly anything.'\n\nCaleb wondered what this meant; perceiving that she spoke to him,\nno less than to his daughter.  He saw her, with astonishment, so\nfluttered and distressed that she could scarcely breathe; and\nholding to a chair, to save herself from falling.\n\n'They are wheels indeed!' she panted.  'Coming nearer!  Nearer!\nVery close!  And now you hear them stopping at the garden-gate!\nAnd now you hear a step outside the door - the same step, Bertha,\nis it not! - and now!' -\n\nShe uttered a wild cry of uncontrollable delight; and running up to\nCaleb put her hands upon his eyes, as a young man rushed into the\nroom, and flinging away his hat into the air, came sweeping down\nupon them.\n\n'Is it over?' cried Dot.\n\n'Yes!'\n\n'Happily over?'\n\n'Yes!'\n\n'Do you recollect the voice, dear Caleb?  Did you ever hear the\nlike of it before?' cried Dot.\n\n'If my boy in the Golden South Americas was alive' - said Caleb,\ntrembling.\n\n'He is alive!' shrieked Dot, removing her hands from his eyes, and\nclapping them in ecstasy; 'look at him!  See where he stands before\nyou, healthy and strong!  Your own dear son!  Your own dear living,\nloving brother, Bertha\n\nAll honour to the little creature for her transports!  All honour\nto her tears and laughter, when the three were locked in one\nanother's arms!  All honour to the heartiness with which she met\nthe sunburnt sailor-fellow, with his dark streaming hair, half-way,\nand never turned her rosy little mouth aside, but suffered him to\nkiss it, freely, and to press her to his bounding heart!\n\nAnd honour to the Cuckoo too - why not! - for bursting out of the\ntrap-door in the Moorish Palace like a house-breaker, and\nhiccoughing twelve times on the assembled company, as if he had got\ndrunk for joy!\n\nThe Carrier, entering, started back.  And well he might, to find\nhimself in such good company.\n\n'Look, John!' said Caleb, exultingly, 'look here!  My own boy from\nthe Golden South Americas!  My own son!  Him that you fitted out,\nand sent away yourself!  Him that you were always such a friend\nto!'\n\nThe Carrier advanced to seize him by the hand; but, recoiling, as\nsome feature in his face awakened a remembrance of the Deaf Man in\nthe Cart, said:\n\n'Edward!  Was it you?'\n\n'Now tell him all!' cried Dot.  'Tell him all, Edward; and don't\nspare me, for nothing shall make me spare myself in his eyes, ever\nagain.'\n\n'I was the man,' said Edward.\n\n'And could you steal, disguised, into the house of your old\nfriend?' rejoined the Carrier.  'There was a frank boy once - how\nmany years is it, Caleb, since we heard that he was dead, and had\nit proved, we thought? - who never would have done that.'\n\n'There was a generous friend of mine, once; more a father to me\nthan a friend;' said Edward, 'who never would have judged me, or\nany other man, unheard.  You were he.  So I am certain you will\nhear me now.'\n\nThe Carrier, with a troubled glance at Dot, who still kept far away\nfrom him, replied, 'Well! that's but fair.  I will.'\n\n'You must know that when I left here, a boy,' said Edward, 'I was\nin love, and my love was returned.  She was a very young girl, who\nperhaps (you may tell me) didn't know her own mind.  But I knew\nmine, and I had a passion for her.'\n\n'You had!' exclaimed the Carrier.  'You!'\n\n'Indeed I had,' returned the other.  'And she returned it.  I have\never since believed she did, and now I am sure she did.'\n\n'Heaven help me!' said the Carrier.  'This is worse than all.'\n\n'Constant to her,' said Edward, 'and returning, full of hope, after\nmany hardships and perils, to redeem my part of our old contract, I\nheard, twenty miles away, that she was false to me; that she had\nforgotten me; and had bestowed herself upon another and a richer\nman.  I had no mind to reproach her; but I wished to see her, and\nto prove beyond dispute that this was true.  I hoped she might have\nbeen forced into it, against her own desire and recollection.  It\nwould be small comfort, but it would be some, I thought, and on I\ncame.  That I might have the truth, the real truth; observing\nfreely for myself, and judging for myself, without obstruction on\nthe one hand, or presenting my own influence (if I had any) before\nher, on the other; I dressed myself unlike myself - you know how;\nand waited on the road - you know where.  You had no suspicion of\nme; neither had - had she,' pointing to Dot, 'until I whispered in\nher ear at that fireside, and she so nearly betrayed me.'\n\n'But when she knew that Edward was alive, and had come back,'\nsobbed Dot, now speaking for herself, as she had burned to do, all\nthrough this narrative; 'and when she knew his purpose, she advised\nhim by all means to keep his secret close; for his old friend John\nPeerybingle was much too open in his nature, and too clumsy in all\nartifice - being a clumsy man in general,' said Dot, half laughing\nand half crying - 'to keep it for him.  And when she - that's me,\nJohn,' sobbed the little woman - 'told him all, and how his\nsweetheart had believed him to be dead; and how she had at last\nbeen over-persuaded by her mother into a marriage which the silly,\ndear old thing called advantageous; and when she - that's me again,\nJohn - told him they were not yet married (though close upon it),\nand that it would be nothing but a sacrifice if it went on, for\nthere was no love on her side; and when he went nearly mad with joy\nto hear it; then she - that's me again - said she would go between\nthem, as she had often done before in old times, John, and would\nsound his sweetheart and be sure that what she - me again, John -\nsaid and thought was right.  And it was right, John!  And they were\nbrought together, John!  And they were married, John, an hour ago!\nAnd here's the Bride!  And Gruff and Tackleton may die a bachelor!\nAnd I'm a happy little woman, May, God bless you!'\n\nShe was an irresistible little woman, if that be anything to the\npurpose; and never so completely irresistible as in her present\ntransports.  There never were congratulations so endearing and\ndelicious, as those she lavished on herself and on the Bride.\n\nAmid the tumult of emotions in his breast, the honest Carrier had\nstood, confounded.  Flying, now, towards her, Dot stretched out her\nhand to stop him, and retreated as before.\n\n'No, John, no!  Hear all!  Don't love me any more, John, till\nyou've heard every word I have to say.  It was wrong to have a\nsecret from you, John.  I'm very sorry.  I didn't think it any harm,\ntill I came and sat down by you on the little stool last night.\nBut when I knew by what was written in your face, that you had seen\nme walking in the gallery with Edward, and when I knew what you\nthought, I felt how giddy and how wrong it was.  But oh, dear John,\nhow could you, could you, think so!'\n\nLittle woman, how she sobbed again!  John Peerybingle would have\ncaught her in his arms.  But no; she wouldn't let him.\n\n'Don't love me yet, please, John!  Not for a long time yet!  When I\nwas sad about this intended marriage, dear, it was because I\nremembered May and Edward such young lovers; and knew that her\nheart was far away from Tackleton.  You believe that, now.  Don't\nyou, John?'\n\nJohn was going to make another rush at this appeal; but she stopped\nhim again.\n\n'No; keep there, please, John!  When I laugh at you, as I sometimes\ndo, John, and call you clumsy and a dear old goose, and names of\nthat sort, it's because I love you, John, so well, and take such\npleasure in your ways, and wouldn't see you altered in the least\nrespect to have you made a King to-morrow.'\n\n'Hooroar!' said Caleb with unusual vigour.  'My opinion!'\n\n'And when I speak of people being middle-aged, and steady, John,\nand pretend that we are a humdrum couple, going on in a jog-trot\nsort of way, it's only because I'm such a silly little thing, John,\nthat I like, sometimes, to act a kind of Play with Baby, and all\nthat:  and make believe.'\n\nShe saw that he was coming; and stopped him again.  But she was\nvery nearly too late.\n\n'No, don't love me for another minute or two, if you please, John!\nWhat I want most to tell you, I have kept to the last.  My dear,\ngood, generous John, when we were talking the other night about the\nCricket, I had it on my lips to say, that at first I did not love\nyou quite so dearly as I do now; that when I first came home here,\nI was half afraid I mightn't learn to love you every bit as well as\nI hoped and prayed I might - being so very young, John!  But, dear\nJohn, every day and hour I loved you more and more.  And if I could\nhave loved you better than I do, the noble words I heard you say\nthis morning, would have made me.  But I can't.  All the affection\nthat I had (it was a great deal, John) I gave you, as you well\ndeserve, long, long ago, and I have no more left to give.  Now, my\ndear husband, take me to your heart again!  That's my home, John;\nand never, never think of sending me to any other!'\n\nYou never will derive so much delight from seeing a glorious little\nwoman in the arms of a third party, as you would have felt if you\nhad seen Dot run into the Carrier's embrace.  It was the most\ncomplete, unmitigated, soul-fraught little piece of earnestness\nthat ever you beheld in all your days.\n\nYou maybe sure the Carrier was in a state of perfect rapture; and\nyou may be sure Dot was likewise; and you may be sure they all\nwere, inclusive of Miss Slowboy, who wept copiously for joy, and\nwishing to include her young charge in the general interchange of\ncongratulations, handed round the Baby to everybody in succession,\nas if it were something to drink.\n\nBut, now, the sound of wheels was heard again outside the door; and\nsomebody exclaimed that Gruff and Tackleton was coming back.\nSpeedily that worthy gentleman appeared, looking warm and\nflustered.\n\n'Why, what the Devil's this, John Peerybingle!' said Tackleton.\n'There's some mistake.  I appointed Mrs. Tackleton to meet me at\nthe church, and I'll swear I passed her on the road, on her way\nhere.  Oh! here she is!  I beg your pardon, sir; I haven't the\npleasure of knowing you; but if you can do me the favour to spare\nthis young lady, she has rather a particular engagement this\nmorning.'\n\n'But I can't spare her,' returned Edward.  'I couldn't think of\nit.'\n\n'What do you mean, you vagabond?' said Tackleton.\n\n'I mean, that as I can make allowance for your being vexed,'\nreturned the other, with a smile, 'I am as deaf to harsh discourse\nthis morning, as I was to all discourse last night.'\n\nThe look that Tackleton bestowed upon him, and the start he gave!\n\n'I am sorry, sir,' said Edward, holding out May's left hand, and\nespecially the third finger; 'that the young lady can't accompany\nyou to church; but as she has been there once, this morning,\nperhaps you'll excuse her.'\n\nTackleton looked hard at the third finger, and took a little piece\nof silver-paper, apparently containing a ring, from his waistcoat-\npocket.\n\n'Miss Slowboy,' said Tackleton.  'Will you have the kindness to\nthrow that in the fire?  Thank'ee.'\n\n'It was a previous engagement, quite an old engagement, that\nprevented my wife from keeping her appointment with you, I assure\nyou,' said Edward.\n\n'Mr. Tackleton will do me the justice to acknowledge that I\nrevealed it to him faithfully; and that I told him, many times, I\nnever could forget it,' said May, blushing.\n\n'Oh certainly!' said Tackleton.  'Oh to be sure.  Oh it's all\nright.  It's quite correct.  Mrs. Edward Plummer, I infer?'\n\n'That's the name,' returned the bridegroom.\n\n'Ah, I shouldn't have known you, sir,' said Tackleton, scrutinising\nhis face narrowly, and making a low bow.  'I give you joy, sir!'\n\n'Thank'ee.'\n\n'Mrs. Peerybingle,' said Tackleton, turning suddenly to where she\nstood with her husband; 'I am sorry.  You haven't done me a very\ngreat kindness, but, upon my life I am sorry.  You are better than\nI thought you.  John Peerybingle, I am sorry.  You understand me;\nthat's enough.  It's quite correct, ladies and gentlemen all, and\nperfectly satisfactory.  Good morning!'\n\nWith these words he carried it off, and carried himself off too:\nmerely stopping at the door, to take the flowers and favours from\nhis horse's head, and to kick that animal once, in the ribs, as a\nmeans of informing him that there was a screw loose in his\narrangements.\n\nOf course it became a serious duty now, to make such a day of it,\nas should mark these events for a high Feast and Festival in the\nPeerybingle Calendar for evermore.  Accordingly, Dot went to work\nto produce such an entertainment, as should reflect undying honour\non the house and on every one concerned; and in a very short space\nof time, she was up to her dimpled elbows in flour, and whitening\nthe Carrier's coat, every time he came near her, by stopping him to\ngive him a kiss.  That good fellow washed the greens, and peeled\nthe turnips, and broke the plates, and upset iron pots full of cold\nwater on the fire, and made himself useful in all sorts of ways:\nwhile a couple of professional assistants, hastily called in from\nsomewhere in the neighbourhood, as on a point of life or death, ran\nagainst each other in all the doorways and round all the corners,\nand everybody tumbled over Tilly Slowboy and the Baby, everywhere.\nTilly never came out in such force before.  Her ubiquity was the\ntheme of general admiration.  She was a stumbling-block in the\npassage at five-and-twenty minutes past two; a man-trap in the\nkitchen at half-past two precisely; and a pitfall in the garret at\nfive-and-twenty minutes to three.  The Baby's head was, as it were,\na test and touchstone for every description of matter, - animal,\nvegetable, and mineral.  Nothing was in use that day that didn't\ncome, at some time or other, into close acquaintance with it.\n\nThen, there was a great Expedition set on foot to go and find out\nMrs. Fielding; and to be dismally penitent to that excellent\ngentlewoman; and to bring her back, by force, if needful, to be\nhappy and forgiving.  And when the Expedition first discovered her,\nshe would listen to no terms at all, but said, an unspeakable\nnumber of times, that ever she should have lived to see the day!\nand couldn't be got to say anything else, except, 'Now carry me to\nthe grave:' which seemed absurd, on account of her not being dead,\nor anything at all like it.  After a time, she lapsed into a state\nof dreadful calmness, and observed, that when that unfortunate\ntrain of circumstances had occurred in the Indigo Trade, she had\nforeseen that she would be exposed, during her whole life, to every\nspecies of insult and contumely; and that she was glad to find it\nwas the case; and begged they wouldn't trouble themselves about\nher, - for what was she? oh, dear! a nobody! - but would forget\nthat such a being lived, and would take their course in life\nwithout her.  From this bitterly sarcastic mood, she passed into an\nangry one, in which she gave vent to the remarkable expression that\nthe worm would turn if trodden on; and, after that, she yielded to\na soft regret, and said, if they had only given her their\nconfidence, what might she not have had it in her power to suggest!\nTaking advantage of this crisis in her feelings, the Expedition\nembraced her; and she very soon had her gloves on, and was on her\nway to John Peerybingle's in a state of unimpeachable gentility;\nwith a paper parcel at her side containing a cap of state, almost\nas tall, and quite as stiff, as a mitre.\n\nThen, there were Dot's father and mother to come, in another little\nchaise; and they were behind their time; and fears were\nentertained; and there was much looking out for them down the road;\nand Mrs. Fielding always would look in the wrong and morally\nimpossible direction; and being apprised thereof, hoped she might\ntake the liberty of looking where she pleased.  At last they came:\na chubby little couple, jogging along in a snug and comfortable\nlittle way that quite belonged to the Dot family; and Dot and her\nmother, side by side, were wonderful to see.  They were so like\neach other.\n\nThen, Dot's mother had to renew her acquaintance with May's mother;\nand May's mother always stood on her gentility; and Dot's mother\nnever stood on anything but her active little feet.  And old Dot -\nso to call Dot's father, I forgot it wasn't his right name, but\nnever mind - took liberties, and shook hands at first sight, and\nseemed to think a cap but so much starch and muslin, and didn't\ndefer himself at all to the Indigo Trade, but said there was no\nhelp for it now; and, in Mrs. Fielding's summing up, was a good-\nnatured kind of man - but coarse, my dear.\n\nI wouldn't have missed Dot, doing the honours in her wedding-gown,\nmy benison on her bright face! for any money.  No! nor the good\nCarrier, so jovial and so ruddy, at the bottom of the table.  Nor\nthe brown, fresh sailor-fellow, and his handsome wife.  Nor any one\namong them.  To have missed the dinner would have been to miss as\njolly and as stout a meal as man need eat; and to have missed the\noverflowing cups in which they drank The Wedding-Day, would have\nbeen the greatest miss of all.\n\nAfter dinner, Caleb sang the song about the Sparkling Bowl.  As I'm\na living man, hoping to keep so, for a year or two, he sang it\nthrough.\n\nAnd, by-the-by, a most unlooked-for incident occurred, just as he\nfinished the last verse.\n\nThere was a tap at the door; and a man came staggering in, without\nsaying with your leave, or by your leave, with something heavy on\nhis head.  Setting this down in the middle of the table,\nsymmetrically in the centre of the nuts and apples, he said:\n\n'Mr. Tackleton's compliments, and as he hasn't got no use for the\ncake himself, p'raps you'll eat it.'\n\nAnd with those words, he walked off.\n\nThere was some surprise among the company, as you may imagine.\nMrs. Fielding, being a lady of infinite discernment, suggested that\nthe cake was poisoned, and related a narrative of a cake, which,\nwithin her knowledge, had turned a seminary for young ladies, blue.\nBut she was overruled by acclamation; and the cake was cut by May,\nwith much ceremony and rejoicing.\n\nI don't think any one had tasted it, when there came another tap at\nthe door, and the same man appeared again, having under his arm a\nvast brown-paper parcel.\n\n'Mr. Tackleton's compliments, and he's sent a few toys for the\nBabby.  They ain't ugly.'\n\nAfter the delivery of which expressions, he retired again.\n\nThe whole party would have experienced great difficulty in finding\nwords for their astonishment, even if they had had ample time to\nseek them.  But they had none at all; for the messenger had\nscarcely shut the door behind him, when there came another tap, and\nTackleton himself walked in.\n\n'Mrs. Peerybingle!' said the Toy-merchant, hat in hand.  'I'm\nsorry.  I'm more sorry than I was this morning.  I have had time to\nthink of it.  John Peerybingle!  I'm sour by disposition; but I\ncan't help being sweetened, more or less, by coming face to face\nwith such a man as you.  Caleb!  This unconscious little nurse gave\nme a broken hint last night, of which I have found the thread.  I\nblush to think how easily I might have bound you and your daughter\nto me, and what a miserable idiot I was, when I took her for one!\nFriends, one and all, my house is very lonely to-night.  I have not\nso much as a Cricket on my Hearth.  I have scared them all away.\nBe gracious to me; let me join this happy party!'\n\nHe was at home in five minutes.  You never saw such a fellow.  What\nHAD he been doing with himself all his life, never to have known,\nbefore, his great capacity of being jovial!  Or what had the\nFairies been doing with him, to have effected such a change!\n\n'John! you won't send me home this evening; will you?' whispered\nDot.\n\nHe had been very near it though!\n\nThere wanted but one living creature to make the party complete;\nand, in the twinkling of an eye, there he was, very thirsty with\nhard running, and engaged in hopeless endeavours to squeeze his\nhead into a narrow pitcher.  He had gone with the cart to its\njourney's end, very much disgusted with the absence of his master,\nand stupendously rebellious to the Deputy.  After lingering about\nthe stable for some little time, vainly attempting to incite the\nold horse to the mutinous act of returning on his own account, he\nhad walked into the tap-room and laid himself down before the fire.\nBut suddenly yielding to the conviction that the Deputy was a\nhumbug, and must be abandoned, he had got up again, turned tail,\nand come home.\n\nThere was a dance in the evening.  With which general mention of\nthat recreation, I should have left it alone, if I had not some\nreason to suppose that it was quite an original dance, and one of a\nmost uncommon figure.  It was formed in an odd way; in this way.\n\nEdward, that sailor-fellow - a good free dashing sort of a fellow\nhe was - had been telling them various marvels concerning parrots,\nand mines, and Mexicans, and gold dust, when all at once he took it\nin his head to jump up from his seat and propose a dance; for\nBertha's harp was there, and she had such a hand upon it as you\nseldom hear.  Dot (sly little piece of affectation when she chose)\nsaid her dancing days were over; I think because the Carrier was\nsmoking his pipe, and she liked sitting by him, best.  Mrs.\nFielding had no choice, of course, but to say HER dancing days were\nover, after that; and everybody said the same, except May; May was\nready.\n\nSo, May and Edward got up, amid great applause, to dance alone; and\nBertha plays her liveliest tune.\n\nWell! if you'll believe me, they have not been dancing five\nminutes, when suddenly the Carrier flings his pipe away, takes Dot\nround the waist, dashes out into the room, and starts off with her,\ntoe and heel, quite wonderfully.  Tackleton no sooner sees this,\nthan he skims across to Mrs. Fielding, takes her round the waist,\nand follows suit.  Old Dot no sooner sees this, than up he is, all\nalive, whisks off Mrs. Dot in the middle of the dance, and is the\nforemost there.  Caleb no sooner sees this, than he clutches Tilly\nSlowboy by both hands and goes off at score; Miss Slowboy, firm in\nthe belief that diving hotly in among the other couples, and\neffecting any number of concussions with them, is your only\nprinciple of footing it.\n\nHark! how the Cricket joins the music with its Chirp, Chirp, Chirp;\nand how the kettle hums!\n\n* * * * *\n\nBut what is this!  Even as I listen to them, blithely, and turn\ntowards Dot, for one last glimpse of a little figure very pleasant\nto me, she and the rest have vanished into air, and I am left\nalone.  A Cricket sings upon the Hearth; a broken child's-toy lies\nupon the ground; and nothing else remains.\n\n\n\n\nEnd of The Project Gutenberg Etext of The Cricket on the Hearth\n\n\u001a"
  },
  {
    "path": "testdata/silesia/reymont",
    "content": "%PDF-1.3\n3 0 obj <<\n/Length 153       \n>>\nstream\n1 0 0 1 244.142 480.998 cm\nBT\n/F18 17.215 Tf 0 0 Td[(CH\\212OPI)]TJ/F19 11.955 Tf -41.476 -46.675 Td[(W\\212AD)28(Y)-1(S\\212)1(A)108(W)-326(REYMONT)]TJ\nET\nendstream\nendobj\n2 0 obj <<\n/Type /Page\n/Contents 3 0 R\n/Resources 1 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n1 0 obj <<\n/Font << /F18 6 0 R /F19 9 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n13 0 obj <<\n/Length 62        \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(2)]TJ\nET\nendstream\nendobj\n12 0 obj <<\n/Type /Page\n/Contents 13 0 R\n/Resources 11 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n11 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n19 0 obj <<\n/Length 823       \n>>\nstream\n1 0 0 1 87.94 632.399 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Spis)-374(tre)-1(\\261)1(ci)]TJ/F31 11.955 Tf 0 -53.4 Td[(I)-1125(Jesie\\253)-26238(7)]TJ/F33 10.909 Tf 0 -24.658 Td[(1)]TJ 368.323 0 Td[(9)]TJ -368.323 -24.657 Td[(2)-32613(17)]TJ 0 -24.658 Td[(3)-32613(29)]TJ 0 -24.658 Td[(4)-32613(45)]TJ 0 -24.658 Td[(5)-32613(59)]TJ 0 -24.658 Td[(6)-32613(77)]TJ 0 -24.658 Td[(7)-32613(87)]TJ 0 -24.658 Td[(8)-32038(101)]TJ 0 -24.658 Td[(9)-32038(111)]TJ 0 -24.658 Td[(10)-31463(119)]TJ 0 -24.657 Td[(11)-31463(135)]TJ 0 -24.658 Td[(12)-31463(155)]TJ/F31 11.955 Tf 0 -38.295 Td[(I)-31(I)-1125(Zi)1(ma)-25167(17)1(1)]TJ/F33 10.909 Tf 0 -24.658 Td[(13)-31463(173)]TJ 0 -24.657 Td[(14)-31463(187)]TJ 0 -24.658 Td[(15)-31463(199)]TJ 0 -24.658 Td[(16)-31463(213)]TJ 0 -24.658 Td[(17)-31463(229)]TJ/F17 10.909 Tf 369.141 -29.888 Td[(3)]TJ\nET\nendstream\nendobj\n18 0 obj <<\n/Type /Page\n/Contents 19 0 R\n/Resources 17 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n17 0 obj <<\n/Font << /F31 22 0 R /F33 25 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n28 0 obj <<\n/Length 984       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(4)]TJ/F29 10.909 Tf 306.262 0 Td[(SP)1(IS)-333(TRE\\221CI)]TJ/F33 10.909 Tf -306.262 -35.866 Td[(18)-31463(239)]TJ 0 -25.242 Td[(19)-31463(253)]TJ 0 -25.243 Td[(20)-31463(267)]TJ 0 -25.243 Td[(21)-31463(281)]TJ 0 -25.243 Td[(22)-31463(293)]TJ 0 -25.243 Td[(23)-31463(307)]TJ 0 -25.243 Td[(24)-31463(315)]TJ 0 -25.243 Td[(25)-31463(331)]TJ/F31 11.955 Tf 0 -38.879 Td[(I)-31(I)-31(I)-1125(W)-1(i)1(os)1(na)-23549(35)1(3)]TJ/F33 10.909 Tf 0 -25.243 Td[(26)-31463(355)]TJ 0 -25.242 Td[(27)-31463(371)]TJ 0 -25.243 Td[(28)-31463(389)]TJ 0 -25.243 Td[(29)-31463(407)]TJ 0 -25.243 Td[(30)-31463(429)]TJ 0 -25.243 Td[(31)-31463(453)]TJ 0 -25.243 Td[(32)-31463(475)]TJ 0 -25.243 Td[(33)-31463(499)]TJ 0 -25.242 Td[(34)-31463(525)]TJ 0 -25.243 Td[(35)-31463(545)]TJ 0 -25.243 Td[(36)-31463(561)]TJ/F31 11.955 Tf 0 -38.879 Td[(IV)-1125(L)1(ato)-25029(57)1(3)]TJ/F33 10.909 Tf 0 -25.243 Td[(37)-31463(575)]TJ 0 -25.243 Td[(38)-31463(597)]TJ\nET\nendstream\nendobj\n27 0 obj <<\n/Type /Page\n/Contents 28 0 R\n/Resources 26 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n26 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R /F33 25 0 R /F31 22 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n34 0 obj <<\n/Length 488       \n>>\nstream\n1 0 0 1 87.94 740.002 cm\nBT\n/F29 10.909 Tf 0 0 Td[(SP)1(IS)-333(TRE\\221CI)]TJ/F17 10.909 Tf 369.141 0 Td[(5)]TJ/F33 10.909 Tf -369.141 -35.866 Td[(39)-31463(617)]TJ 0 -24.458 Td[(40)-31463(631)]TJ 0 -24.458 Td[(41)-31463(649)]TJ 0 -24.458 Td[(42)-31463(669)]TJ 0 -24.459 Td[(43)-31463(681)]TJ 0 -24.458 Td[(44)-31463(691)]TJ 0 -24.458 Td[(45)-31463(703)]TJ 0 -24.459 Td[(46)-31463(721)]TJ 0 -24.458 Td[(47)-31463(729)]TJ 0 -24.458 Td[(48)-31463(739)]TJ 0 -24.459 Td[(49)-31463(749)]TJ\nET\nendstream\nendobj\n33 0 obj <<\n/Type /Page\n/Contents 34 0 R\n/Resources 32 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n32 0 obj <<\n/Font << /F29 31 0 R /F17 16 0 R /F33 25 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n37 0 obj <<\n/Length 117       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(6)]TJ/F29 10.909 Tf 306.262 0 Td[(SP)1(IS)-333(TRE\\221CI)]TJ\nET\nendstream\nendobj\n36 0 obj <<\n/Type /Page\n/Contents 37 0 R\n/Resources 35 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 10 0 R\n>> endobj\n35 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n40 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 243.175 510.595 cm\nBT\n/F31 14.346 Tf 0 0 Td[(C)1(Z\\206\\221\\202)-375(I)]TJ 3.503 -37.858 Td[(JESIE)-1(\\213)]TJ\nET\nendstream\nendobj\n39 0 obj <<\n/Type /Page\n/Contents 40 0 R\n/Resources 38 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n38 0 obj <<\n/Font << /F31 22 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n44 0 obj <<\n/Length 0         \n>>\nstream\nendstream\nendobj\n43 0 obj <<\n/Type /Page\n/Contents 44 0 R\n/Resources 42 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n42 0 obj <<\n/ProcSet [ /PDF ]\n>> endobj\n47 0 obj <<\n/Length 6775      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(1)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-333(Nie)-1(c)28(h)-333(b)-27(\\246)-1(dzie)-334(p)-27(o)-28(c)28(h)28(w)27(al)1(on)28(y)-333(Je)-1(zus)-333(C)-1(h)1(rystus!)]TJ 27.879 -13.549 Td[({)-333(Na)-334(wieki)-333(wiek)27(\\363)28(w,)-333(mo)-56(ja)-333(Agato,)-333(a)-333(dok)56(\\241d)-333(to)-333(w)27(\\246dr)1(uj)1(e)-1(cie)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-380(W)83(e)-380(\\261)-1(wiat,)-380(d)1(o)-381(l)1(ud)1(z)-1(i,)-380(d)1(obro)-27(dzie)-1(j)1(u)-380(k)28(o)-28(c)28(han)28(y)-380({)-380(w)-380(t)27(y)1(li)-380(\\261)-1(wiat)1(!...)-380({)-380(z)-1(ak)1(re\\261)-1(li)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(kij)1(as)-1(zkiem)-417(\\252uk)-417(o)-27(d)-417(wsc)27(ho)-27(du)-416(do)-417(zac)27(h)1(o)-28(du)1(.)-417(Ksi\\241d)1(z)-418(sp)-28(o)-55(jr)1(z)-1(a\\252)-417(b)-27(e)-1(zwiedni)1(e)-418(w)-417(t\\246)-417(d)1(al)]TJ 0 -13.55 Td[(i)-406(ry)1(c)27(h\\252o)-406(pr)1(z)-1(yw)28(ar\\252)-406(o)-28(cz)-1(y)84(,)-406(b)-27(o)-407(n)1(ad)-406(zac)27(ho)-27(dem)-407(wis)-1(i)1(a\\252o)-407(o\\261lepia)-55(j\\241ce)-407(s\\252o\\253ce)-1(;)-406(a)-406(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(sp)28(yta\\252)-333(c)-1(isz)-1(ej,)-333(l)1(\\246)-1(kl)1(iwie)-1(j)-333(j)1(akb)28(y)84(...)]TJ 27.879 -13.549 Td[({)-333(Wyp)-27(\\246)-1(d)1(z)-1(i)1(li)-333(w)27(as)-334(K)1(\\252)-1(\\246b)-27(o)27(wie,)-333(c)-1(o?)-333(A)-333(m)-1(o\\273e)-334(to)-333(ino)-333(ni)1(e)-1(zgo)-28(da?..)1(.)-333(m)-1(o\\273e)-1(.)1(..)]TJ 0 -13.549 Td[(Nie)-339(z)-1(ar)1(az)-340(o)-28(d)1(rze)-1(k\\252a,)-339(wyp)1(rosto)28(w)27(a\\252a)-339(s)-1(i)1(\\246)-340(n)1(ie)-1(co,)-339(p)-27(o)27(wlek\\252a)-339(ci\\246)-1(\\273k)28(o)-339(s)-1(tar)1(ymi)-339(wy-)]TJ -27.879 -13.549 Td[(p)-27(e)-1(\\252z\\252ym)-1(i)-317(o)-27(c)-1(zam)-1(i)-316(p)-28(o)-317(p)-27(olac)27(h)-316(o)-56(j)1(e)-1(sie)-1(n)1(ia\\252yc)27(h)1(,)-317(pu)1(s)-1(t)28(y)1(c)27(h)-317(i)-317(p)-27(o)-317(dac)28(hac)27(h)-316(w)-1(si,)-317(zan)28(u)1(rz)-1(on)1(e)-1(j)]TJ 0 -13.549 Td[(w)-334(sadac)28(h.)]TJ 27.879 -13.55 Td[({)-310(I...)-309(nie)-310(w)-1(y)1(p)-28(\\246dzali.)1(..)-310(jak)1(\\273)-1(eb)28(y)84(...)-310(d)1(obre)-310(s)-1(\\241)-310(l)1(ud)1(z)-1(ie)-310({)-310(krewniak)1(i.)-310(Niez)-1(go)-27(dy)-310(te\\273)]TJ -27.879 -13.549 Td[(ni)1(jaki)1(e)-1(j)-372(b)28(y\\242)-374(n)1(ie)-373(b)28(y\\252o.)-373(S)1(am)-1(am)-373(in)1(o)-373(z)-1(miark)28(o)28(w)28(a\\252a,)-373(\\273)-1(e)-373(trza)-373(mi)-373(w)-373(\\261)-1(wiat.)-373(Z)-373(cud)1(z)-1(ego)]TJ 0 -13.549 Td[(w)28(oz)-1(a)-333(to)-333(z)-1(\\252a\\271)-334(c)27(h)1(o)-28(\\242)-334(i)-333(w)-333(p)-28(\\363\\252)-333(morz)-1(a.)]TJ 27.879 -13.549 Td[(T)83(rza)-271(b)28(y\\252o..)1(.)-271(rob)-27(ot)28(y)-271(ju\\273)-271(la)-271(mnie)-271(nie)-271(m)-1(i)1(a\\252)-1(y)84(...)-271(n)1(a)-271(z)-1(i)1(m)-1(\\246)-271(idzie,)-271(to)-271(jak\\273e)-272({)-271(dar)1(m)-1(o)]TJ -27.879 -13.549 Td[(mi)-333(to)-334(d)1(adz\\241)-334(w)28(arz\\246)-334(ab)-27(o)-334(i)-333(ten)-333(k)56(\\241t)-333(do)-333(s)-1(p)1(ania?...)]TJ 27.879 -13.55 Td[(A)-307(\\273e)-307(ryc)28(h)28(t)28(yk)-306(i)-307(cio\\252k)56(a)-307(o)-28(d)1(s)-1(ad)1(z)-1(i)1(li)-307(o)-27(d)-307(maci...)-306(a)-307(i)-306(g\\241ski,)-306(b)-28(o)-306(to)-307(j)1(u\\273)-307(z)-1(i)1(m)-1(n)1(e)-307(no)-28(c)28(ki,)]TJ -27.879 -13.549 Td[(trza)-312(z)-1(agn)1(a\\242)-313(p)-27(o)-28(d)-312(strze)-1(c)27(h)1(\\246)-1(,)-312(tom)-312(i)-312(z)-1(r)1(obi\\252a)-312(mie)-1(j)1(s)-1(ce)-1(.)1(..)-312(jak\\273e,)-313(b)29(ydl)1(\\241te)-1(k)-312(sz)-1(k)28(o)-28(d)1(a,)-312(Bo\\273)-1(e,)]TJ 0 -13.549 Td[(st)27(w)28(orze)-1(n)1(ie)-331(te\\273...)-330(A)-330(lud)1(z)-1(i)1(e)-331(dob)1(re,)-330(b)-28(o)-330(mi\\246)-331(c)27(h)1(o)-28(\\242)-331(l)1(ate)-1(m)-330(przytu)1(l\\241,)-330(k)56(\\241ta)-330(ani)-330(tej)-330(\\252y\\273)-1(k)1(i)]TJ 0 -13.549 Td[(stra)28(wy)-334(n)1(ie)-334(\\273a\\252uj)1(\\241,)-334(\\273e)-334(se)-334(cz)-1(\\252o)28(wie)-1(k)-333(ki)1(e)-1(j)-333(j)1(ak)55(a)-333(gosp)-28(o)-27(dyn)1(i)-333(parad)1(uj)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(A)-333(na)-333(z)-1(i)1(m)-1(\\246)-334(w)28(e)-334(\\261wiat,)-333(p)-28(o)-333(pr)1(os)-1(zon)28(ym.)]TJ 0 -13.55 Td[(Niewie)-1(l)1(a)-327(mi)-326(p)-28(otr)1(z)-1(a,)-326(to)-326(s)-1(e)-327(u)-326(d)1(obr)1(yc)27(h)-326(lu)1(dzi)-326(upr)1(os)-1(z\\246)-327(i)-326(do)-326(z)-1(wiesn)28(y)-326(z)-327(P)28(ana)-55(je-)]TJ -27.879 -13.549 Td[(zuso)27(w)28(\\241)-331(\\252)-1(ask)56(\\241)-332(p)1(rze)-1(c)28(h)28(yrl)1(am)-1(,)-331(a)-331(jes)-1(zc)-1(ze)-332(si\\246)-332(co\\261)-332(ni)1(e)-1(co\\261)-332(grosz)-1(a)-331(u\\261cibi)-331({)-331(to)-331(ryc)27(h)29(t)28(yk)-331(la)]TJ 0 -13.549 Td[(ni)1(c)27(h)-333(n)1(a)-334(p)1(rze)-1(dn)1(o)28(w)27(ek...)-333(k)1(re)-1(wn)1(iaki)-333(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h...)]TJ 27.879 -13.549 Td[(A)-333(ju)1(\\273)-334(ta)-333(Je)-1(zusic)-1(zek)-334(p)1(rze)-1(n)1(a)-56(j)1(s)-1(\\252o)-28(d)1(s)-1(zy)-333(biedot)28(y)-333(op)1(u\\261c)-1(i\\242)-333(nie)-334(op)1(u\\261c)-1(i)1(.)]TJ 0 -13.549 Td[({)-401(Nie)-402(op)1(u\\261c)-1(i)1(,)-401(nie)-401({)-402(za)28(w)27(o\\252a\\252)-401(gor\\241co)-402(i)-401(wst)28(ydl)1(iwie)-402(ws)-1(ad)1(z)-1(i)1(\\252)-402(j)1(e)-1(j)-400(w)-402(gar\\261\\242)-402(z\\252o-)]TJ -27.879 -13.55 Td[(t\\363)28(wk)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(o)-28(dzieju)-333(nasz)-334(se)-1(r)1(dec)-1(zn)28(y)84(,)-334(d)1(obr)1(o)-28(dzieju)1(!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(pad\\252a)-359(m)27(u)-358(do)-359(k)28(olan)-359(r)1(oz)-1(tr)1(z)-1(\\246s)-1(ion)1(\\241)-359(g\\252)-1(o)28(w)28(\\241,)-359(a)-359(\\252)-1(zy)-359(jak)-359(gr)1(o)-28(c)27(h)-359(p)-27(osypa\\252y)-359(si\\246)]TJ -27.879 -13.549 Td[(p)-27(o)-334(j)1(e)-1(j)-333(t)28(w)28(arzy)-333(s)-1(zarej)-333(i)-333(z)-1(rad)1(lon)1(e)-1(j)-333(j)1(ak)-333(te)-334(jes)-1(i)1(e)-1(n)1(ne)-334(p)-27(o)-28(d)1(or\\363)28(w)-1(k)1(i.)]TJ 27.879 -13.549 Td[({)-333(Id\\271c)-1(ie)-333(z)-334(B)-1(ogi)1(e)-1(m,)-333(id\\271c)-1(i)1(e)-334({)-333(s)-1(ze)-1(p)1(ta\\252)-334(zak\\252op)-27(otan)28(y)-333(p)-28(o)-27(dn)1(os)-1(z\\241c)-334(j\\241)-333(z)-334(ziem)-1(i.)]TJ 0 -13.55 Td[(Ze)-1(b)1(ra\\252a)-359(dr)1(\\273)-1(\\241cymi)-359(r\\246k)56(am)-1(i)-359(tor)1(b)28(y)-359(i)-359(k)1(ijasz)-1(ek)-359(z)-360(j)1(e)-1(\\273em)-360(n)1(a)-359(k)28(o\\253cu,)-359(p)1(rz)-1(e\\273e)-1(gn)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-309(i)-308(p)-27(osz)-1(\\252a)-308(sz)-1(erok)56(\\241,)-308(wyb)-27(ois)-1(t\\241)-308(d)1(rog\\241)-308(ku)-307(las)-1(om;)-308(r)1(az)-309(w)-308(raz)-308(t)27(y)1(lk)28(o)-308(o)-28(dwr)1(ac)-1(a\\252a)-308(s)-1(i)1(\\246)-309(ku)]TJ 0 -13.549 Td[(ws)-1(i)1(,)-278(ku)-277(p)-27(olom,)-278(na)-277(kt\\363ry)1(c)27(h)-277(k)28(opan)1(o)-278(k)56(arto\\015e;)-277(i)-278(n)1(a)-278(te)-278(dym)28(y)-278(p)1(as)-1(tu)1(s)-1(i)1(c)27(h)-277(ognisk,)-277(c)-1(o)-278(si\\246)]TJ 369.141 -29.888 Td[(9)]TJ\nET\nendstream\nendobj\n46 0 obj <<\n/Type /Page\n/Contents 47 0 R\n/Resources 45 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n45 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n50 0 obj <<\n/Length 9856      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(10)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(1.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(sn)28(u\\252y)-238(nisk)28(o)-239(n)1(ad)-238(\\261)-1(cierni)1(s)-1(k)56(ami)-239({)-238(p)-28(ogl)1(\\241da\\252a)-239(\\273a\\252o\\261)-1(n)1(ie,)-239(a\\273)-239(i)-238(z)-1(n)1(ikn)1(\\246)-1(\\252a)-238(z)-1(a)-238(przyd)1(ro\\273n)28(ymi)]TJ 0 -13.549 Td[(kr)1(z)-1(ami)-333(.)]TJ 27.879 -13.549 Td[(A)-336(k)1(s)-1(i\\241d)1(z)-336(usiad)1(\\252)-336(z)-336(p)-28(o)28(wrotem)-336(n)1(a)-336(k)28(\\363\\252k)56(ac)27(h)-335(o)-28(d)-335(p\\252u)1(ga,)-336(za\\273)-1(y)1(\\252)-336(tab)1(aki)-336(i)-335(roz\\252o\\273)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(br)1(e)-1(wiar)1(z)-1(,)-266(ale)-267(o)-27(c)-1(zy)-266(z)-1(e\\261)-1(l)1(iz)-1(gi)1(w)27(a\\252y)-266(m)27(u)-266(si\\246)-267(z)-266(c)-1(ze)-1(r)1(w)27(on)28(yc)28(h)-266(liter)-266(i)-266(lec)-1(ia\\252y)-266(p)-27(o)-267(ogr)1(om)-1(n)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(w)-410(jes)-1(ienn)1(e)-1(j)-409(z)-1(ad)1(umie)-411(p)-27(ogr\\241\\273on)28(yc)28(h)-410(z)-1(i)1(e)-1(miac)27(h)1(,)-410(to)-410(p)-28(o)-410(b)1(lady)1(m)-411(ni)1(e)-1(b)1(ie)-411(b)1(\\252\\241dzi\\252y)-410(lub)]TJ 0 -13.55 Td[(zatrzym)27(yw)28(a\\252y)-333(s)-1(i)1(\\246)-334(na)-333(par)1(obku)1(,)-333(p)-28(o)-28(c)28(h)28(ylon)29(ym)-334(n)1(ad)-333(p\\252ugi)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-329(W)83(alek..)1(.)-329(bru)1(z)-1(d)1(a)-330(k)1(rzyw)27(a.)1(..)-329(te)-1(.)1(..)-329({)-330(za)28(w)27(o\\252a\\252)-329(un)1(os)-1(z\\241c)-330(s)-1(i)1(\\246)-330(ni)1(e)-1(co)-330(i)-329(c)28(ho)-28(d)1(z)-1(i\\252)-329(ju)1(\\273)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(ami)-283(k)1(rok)-283(za)-283(k)1(rokiem)-283(z)-1(a)-282(par\\241)-282(t\\252ust)27(y)1(c)27(h)-282(s)-1(iwk)28(\\363)28(w,)-283(ci\\241)-28(gn)1(\\241c)-1(yc)28(h)-282(p\\252ug)-282(z)-1(e)-283(s)-1(k)1(rzyp)-28(em.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\241\\252)-293(zno)28(wu)-292(b)-28(ez)-1(wiedn)1(ie)-293(p)1(rz)-1(ebi)1(e)-1(ga\\242)-293(cz)-1(erw)28(one)-293(li)1(te)-1(ry)-292(b)1(re)-1(wiar)1(z)-1(a)-292(i)-293(p)-27(oru)1(s)-1(za\\242)]TJ -27.879 -13.549 Td[(ustami,)-301(ale)-301(c)-1(o)-301(c)27(h)28(wil)1(a)-302(gon)1(i\\252)-301(o)-28(cz)-1(ami)-301(s)-1(i)1(w)-1(k)1(i,)-301(to)-301(s)-1(tad)1(k)28(o)-301(w)-1(r)1(on,)-301(kt\\363r)1(e)-302(ostro\\273nie,)-301(z)-302(wy-)]TJ 0 -13.549 Td[(ci\\241)-28(gni)1(\\246)-1(t)28(ymi)-308(dziobami)-308(p)-28(o)-27(dsk)55(ak)1(iw)27(a\\252y)-308(w)-309(b)1(ru\\271dzie)-309(i)-308(raz)-309(w)-308(raz,)-309(za)-309(k)56(a\\273dym)-309(\\261wiste)-1(m)]TJ 0 -13.55 Td[(bat)1(a,)-274(za)-273(k)55(a\\273dy)1(m)-274(na)28(wrotem)-274(p\\252u)1(ga,)-273(p)-28(o)-28(d)1(ryw)28(a\\252y)-273(s)-1(i\\246)-273(c)-1(i\\246\\273k)28(o,)-274(p)1(ada\\252y)-273(z)-1(ar)1(az)-274(na)-273(zorane)]TJ 0 -13.549 Td[(zagon)28(y)-333(i)-333(os)-1(tr)1(z)-1(y\\252y)-333(dziob)28(y)-333(o)-333(t)28(w)27(ar)1(de,)-333(z)-1(es)-1(c)28(h\\252e)-334(skib)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(W)83(alek!)-333(a)-333(\\261)-1(mign)1(ij)-333(no)-333(pr)1(a)28(w)27(\\241)-333(p)-28(o)-333(p)-27(ortk)56(ac)27(h)1(,)-333(b)-28(o)-333(zos)-1(ta)-55(je!)]TJ 0 -13.549 Td[(U\\261m)-1(iec)27(h)1(n\\241\\252)-325(si\\246)-1(,)-324(b)-28(o)-324(jak)28(o\\273)-325(p)-28(o)-325(b)1(ac)-1(i)1(e)-326(p)1(ra)28(w)27(a)-325(j)1(u\\273)-325(r\\363)28(wno)-325(ci\\241)-28(gn)1(\\246)-1(\\252a,)-325(a)-324(gdy)-325(k)28(on)1(ie)]TJ -27.879 -13.549 Td[(dosz\\252)-1(y)-268(d)1(o)-268(drogi)1(,)-268(un)1(i\\363s)-1(\\252)-268(si\\246)-269(\\273yw)27(o)-268(p)-27(oklepa\\252)-268(je)-268(pr)1(z)-1(yj)1(a\\271)-1(n)1(ie)-269(p)-27(o)-268(k)56(ark)56(ac)27(h,)-268(a\\273)-268(wyc)-1(i)1(\\241)-28(ga\\252y)]TJ 0 -13.55 Td[(do)-333(n)1(ie)-1(go)-333(nozdr)1(z)-1(a)-333(i)-333(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lsk)28(o)-333(ob)28(w)27(\\241c)28(hiw)28(a\\252y)-333(t)28(w)27(arz.)]TJ 27.879 -13.549 Td[({)-272(He)-1(eet-)-1(aa!)-272({)-272(w)28(o\\252a\\252)-273(\\261pi)1(e)-1(wni)1(e)-273(W)84(ale)-1(k)1(,)-272(wyc)-1(i)1(\\241)-28(gn\\241\\252)-272(b\\252yszc)-1(z\\241c)-1(y)-272(j)1(akb)28(y)-272(ze)-273(srebra)]TJ -27.879 -13.549 Td[(p\\252u)1(g,)-369(un)1(i\\363s\\252)-370(go)-369(lekk)28(o,)-369(p)-27(o)-28(ci\\241)-28(gn)1(\\241\\252)-370(k)28(on)1(ie)-370(l)1(e)-1(j)1(c)-1(ami,)-369(\\273e)-370(zato)-28(cz)-1(y\\252y)-369(k)1(r\\363tki)-369(\\252u)1(k,)-369(wrazi\\252)]TJ 0 -13.549 Td[(kr)1(\\363)-56(j)-353(b)1(\\252ysz)-1(cz)-1(\\241cy)-353(w)-353(r\\273ysk)28(o,)-353(\\261)-1(mign)1(\\241\\252)-353(batem)-1(,)-352(k)28(onie)-353(p)-27(o)-28(c)-1(i)1(\\241)-28(g\\252y)-353(z)-353(m)-1(iejsca,)-353(a\\273)-354(zgrzyt-)]TJ 0 -13.549 Td[(n\\246\\252y)-397(orczyki)-397({)-397(i)-396(ora\\252)-397(dalej)-396(w)-1(i)1(e)-1(lk)1(i)-397(\\252an)-397(zie)-1(mi,)-396(c)-1(o)-397(p)-27(o)-28(d)-396(prost)28(ym)-397(k)55(\\241t)1(e)-1(m)-397(s)-1(p)1(ada\\252)-397(o)-28(d)]TJ 0 -13.55 Td[(dr)1(ogi)-326(p)-28(o)-326(p)-28(o)-27(c)27(h)28(y\\252o\\261c)-1(i)-326(i)-326(ni)1(b)28(y)-326(d\\252ugi)-326(w)28(\\241te)-1(k)-326(zgrze)-1(b)1(n)28(yc)27(h)-326(skib)-326(r)1(oz)-1(ci\\241)-28(ga\\252)-326(s)-1(i)1(\\246)-327(a\\273)-327(ku)-326(ws)-1(i)1(,)]TJ 0 -13.549 Td[(le\\273)-1(\\241ce)-1(j)-332(nisk)28(o)-334(i)-333(j)1(akb)28(y)-333(zatopion)1(e)-1(j)-333(w)-333(c)-1(zerw)27(on)1(a)28(w)-1(y)1(c)27(h)-333(i)-333(\\273)-1(\\363\\252ta)28(wyc)28(h)-333(s)-1(ad)1(ac)27(h.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-334(b)29(y\\252o,)-333(c)-1(iep\\252o)-333(i)-333(nieco)-334(se)-1(n)1(nie.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e,)-247(c)27(h)1(o)-28(cia\\273)-248(to)-247(b)28(y)1(\\252)-248(j)1(u\\273)-247(k)28(oniec)-248(wrze\\261)-1(n)1(ia,)-247(pr)1(z)-1(ygr)1(z)-1(ew)27(a\\252o)-247(j)1(e)-1(sz)-1(cz)-1(e)-247(niezgorz)-1(ej)]TJ -27.879 -13.549 Td[({)-408(wis)-1(i)1(a\\252)-1(o)-408(w)-408(p)-28(o\\252o)28(wie)-409(d)1(rogi)-408(mi\\246)-1(d)1(z)-1(y)-408(p)-27(o\\252ud)1(niem)-409(a)-408(zac)27(ho)-27(dem)-1(,)-408(n)1(ad)-408(lasam)-1(i)1(,)-408(\\273)-1(e)-409(j)1(u\\273)]TJ 0 -13.55 Td[(kr)1(z)-1(e)-335(i)-335(k)56(amionki)1(,)-335(i)-335(gr)1(usz)-1(e)-335(p)-27(o)-335(p)-28(ol)1(ac)27(h,)-334(a)-335(na)28(w)28(e)-1(t)-334(z)-1(es)-1(c)28(h\\252e)-335(t)27(w)28(ard)1(e)-336(skib)29(y)-335(k\\252ad)1(\\252)-1(y)-334(z)-1(a)-334(s)-1(i\\246)]TJ 0 -13.549 Td[(cie)-1(n)1(ie)-334(mo)-28(cne)-334(i)-333(c)28(h\\252o)-28(dn)1(e)-1(.)]TJ 27.879 -13.549 Td[(Cisz)-1(a)-456(b)28(y\\252a)-456(n)1(a)-456(p)-28(ol)1(ac)27(h)-456(op)1(ustos)-1(za\\252yc)27(h)-455(i)-456(up)1(a)-56(j)1(a)-56(j\\241ca)-456(s\\252)-1(o)-27(dk)28(o\\261\\242)-457(w)-456(p)-28(o)28(wietrzu,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(m)-1(glon)29(ym)-453(ku)1(rza)28(w)27(\\241)-452(s)-1(\\252on)1(e)-1(cz)-1(n)1(\\241;)-452(na)-452(wys)-1(ok)1(im)-1(,)-452(b)1(lady)1(m)-453(b\\252\\246kicie)-453(l)1(e)-1(\\273a\\252y)-453(gd)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(e)-1(gd)1(z)-1(ie)-477(b)-27(ez)-1(\\252adn)1(ie)-477(p)-27(orozrz)-1(u)1(c)-1(an)1(e)-477(ogromne)-477(b)1(ia\\252e)-477(c)27(hm)28(ur)1(y)-477(n)1(ib)28(y)-476(z)-1(w)28(a\\252y)-477(\\261ni)1(e)-1(g\\363)28(w,)]TJ 0 -13.55 Td[(na)28(wian)1(e)-334(pr)1(z)-1(ez)-334(wic)27(h)1(ry)-333(i)-333(p)-28(ostrz\\246pion)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-357(p)-28(o)-27(d)-357(nimi,)-357(j)1(ak)-358(ok)1(ie)-1(m)-357(ogarn)1(\\241\\242)-1(,)-357(le\\273)-1(a\\252y)-357(sz)-1(ar)1(e)-358(p)-28(ol)1(a)-358(n)1(ib)28(y)-357(olb)1(rzym)-1(i)1(a)-358(misa)-358(o)]TJ -27.879 -13.549 Td[(mo)-28(dr)1(yc)27(h)-313(w)-1(r)1(\\246)-1(b)1(ac)27(h)-314(l)1(as)-1(\\363)28(w)-314({)-314(m)-1(isa,)-314(p)1(rze)-1(z)-314(kt\\363r\\241,)-314(j)1(ak)-314(sre)-1(b)1(rn)1(e)-315(p)1(rz)-1(\\246dziw)28(o)-314(rozb\\252ys\\252e)-315(w)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(u)1(,)-259(migota\\252a)-259(s)-1(i)1(\\246)-260(w)-259(skr\\246tac)27(h)-258(rz)-1(ek)56(a)-259(s)-1(p)-27(o)-28(d)-258(olc)27(h)-258(i)-259(\\252oz)-1(i)1(n)-259(nad)1(br)1(z)-1(e\\273)-1(n)28(y)1(c)27(h.)-258(Wz)-1(b)1(iera\\252a)]TJ 0 -13.549 Td[(w)-368(p)-27(o\\261ro)-28(d)1(ku)-367(ws)-1(i)-367(w)-367(ogromn)28(y)-367(p)-27(o)-28(d\\252u)1(\\273)-1(n)28(y)-367(sta)28(w)-368(i)-367(u)1(c)-1(iek)56(a\\252a)-368(n)1(a)-368(p)-27(\\363\\252no)-27(c)-368(wyrw)28(\\241)-367(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(pag\\363r)1(k)28(\\363)28(w)-1(;)-265(na)-265(dn)1(ie)-266(k)28(otlin)28(y)84(,)-265(dok)28(o\\252a)-266(sta)28(w)-1(u)1(,)-266(l)1(e)-1(\\273a\\252a)-266(wie)-1(\\261)-266(i)-265(gra\\252a)-266(w)-265(s)-1(\\252o\\253cu)-265(jes)-1(i)1(e)-1(n)1(n)28(ymi)]TJ 0 -13.55 Td[(bar)1(w)27(ami)-394(sad\\363)28(w)-394({)-394(nib)28(y)-393(c)-1(ze)-1(r)1(w)27(on)1(o-)-1(\\273\\363\\252ta)-394(lisz)-1(k)56(a,)-394(zw)-1(i)1(ni\\246ta)-394(na)-394(sz)-1(ar)1(ym)-394(li\\261)-1(ciu)-393(\\252opia-)]TJ 0 -13.549 Td[(n)28(u)1(,)-309(o)-27(d)-308(kt\\363rej)-308(do)-308(las)-1(\\363)28(w)-309(wyci\\241)-28(ga\\252o)-308(s)-1(i)1(\\246)-309(d\\252ugi)1(e)-1(,)-308(s)-1(p)1(l\\241tan)1(e)-309(niec)-1(o)-308(pr)1(z)-1(\\246dziw)28(o)-309(zagon\\363)28(w,)]TJ 0 -13.549 Td[(p\\252ac)28(h)28(t)28(y)-451(p)-28(\\363l)-451(sz)-1(ary)1(c)27(h,)-451(sz)-1(n)29(ury)-451(mie)-1(d)1(z)-452(p)-27(e)-1(\\252n)28(y)1(c)27(h)-451(k)56(am)-1(i)1(onek)-452(i)-451(tar)1(nin)1(-)-1(t)28(yl)1(k)28(o)-452(gd)1(z)-1(ieni)1(e)-1(-)]TJ 0 -13.549 Td[(gdzie)-424(w)-424(t)1(e)-1(j)-423(sre)-1(b)1(rn)1(a)27(w)28(ej)-424(szaro\\261)-1(ci)-423(rozle)-1(w)28(a\\252y)-424(si\\246)-424(stru)1(gi)-424(z\\252ota)-424({)-423(\\252ub)1(in)28(y)-423(\\273)-1(\\363\\252ci\\252y)-423(s)-1(i\\246)]TJ 0 -13.549 Td[(kwiatem)-318(pac)28(hn\\241cym,)-318(to)-317(biela\\252y)-318(omdl)1(a\\252)-1(e,)-318(wysc)27(h)1(\\252e)-319(\\252o\\273ysk)55(a)-317(s)-1(tr)1(umie)-1(n)1(i)-318(al)1(b)-28(o)-318(l)1(e)-1(\\273a\\252y)]TJ 0 -13.55 Td[(pi)1(as)-1(zc)-1(zyste)-320(se)-1(n)1(ne)-319(drogi)-319(i)-318(nad)-319(n)1(imi)-319(rz\\246)-1(d)1(y)-319(p)-28(ot\\246\\273)-1(n)29(yc)27(h)-318(top)-28(ol)1(i)-319(z)-320(w)28(olna)-319(ws)-1(p)1(in)1(a\\252)-1(y)-318(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(wz)-1(g\\363r)1(z)-1(a)-333(i)-333(p)-27(o)-28(c)27(h)28(yl)1(a\\252y)-334(k)1(u)-333(lasom)-1(.)]TJ\nET\nendstream\nendobj\n49 0 obj <<\n/Type /Page\n/Contents 50 0 R\n/Resources 48 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n48 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n53 0 obj <<\n/Length 9388      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(11)]TJ -335.807 -35.866 Td[(Ksi\\241dz)-385(o)-28(c)28(kn\\241\\252)-385(si\\246)-386(z)-385(z)-1(ap)1(atrze)-1(n)1(ia,)-385(b)-27(o)-385(d\\252u)1(gi,)-385(\\273a\\252os)-1(n)28(y)-384(ryk)-385(r)1(oz)-1(leg\\252)-385(s)-1(i)1(\\246)-386(gd)1(z)-1(ie\\261)]TJ -27.879 -13.549 Td[(ni)1(e)-1(d)1(ale)-1(k)28(o,)-492(a\\273)-493(wr)1(on)28(y)-492(p)-28(o)-27(derw)27(a\\252y)-492(si\\246)-493(z)-493(k)1(rzykiem)-493(i)-492(s)-1(k)28(o\\261n)28(ym)-492(rzutem)-493(lec)-1(i)1(a\\252y)-493(n)1(a)]TJ 0 -13.549 Td[(k)28(opan)1(isk)55(a{)-303(a)-304(c)-1(zarn)28(y)-303(m)-1(i)1(go)-28(c)-1(\\241cy)-304(cie\\253)-304(b)1(ie)-1(g\\252)-304(za)-304(n)1(im)-1(i)-303(do\\252em)-305(p)-27(o)-304(r)1(\\273)-1(ysk)56(ac)27(h)-303(i)-304(p)-27(o)-28(dor)1(\\363)27(w-)]TJ 0 -13.549 Td[(k)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252)-465(r\\246k)55(\\241)-464(o)-28(c)-1(zy)-464(i)-465(pat)1(rz)-1(y)1(\\252)-465(p)-28(o)-27(d)-465(s\\252o\\253ce)-465({)-465(dr)1(og\\241)-465(o)-28(d)-464(las\\363)27(w)-465(sz\\252)-1(a)-464(jak)56(a\\261)]TJ -27.879 -13.55 Td[(dziew)27(cz)-1(y)1(na)-397(i)-397(ci\\241)-28(gn\\246\\252a)-397(z)-1(a)-397(sob\\241)-397(na)-397(p)-27(ostronk)1(u)-397(du)1(\\273)-1(\\241,)-397(cze)-1(rw)28(on\\241)-397(kr)1(o)28(w)27(\\246;)-397(gdy)-397(p)1(rze)-1(-)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi\\252a)-272(ob)-27(ok,)-272(p)-27(o)-28(c)28(h)28(w)27(al)1(i\\252a)-272(B)-1(oga)-271(i)-272(c)27(h)1(c)-1(ia\\252a)-272(skr)1(\\246)-1(ci\\242)-1(,)-271(ab)28(y)-272(k)1(s)-1(i\\246dza)-272(p)-27(o)-28(c)-1(a\\252o)28(w)28(a\\242)-273(w)-272(r)1(\\246)-1(k)28(\\246,)]TJ 0 -13.549 Td[(ale)-334(k)1(ro)28(w)27(a)-333(sz)-1(arp)1(n\\246\\252a)-334(j)1(\\241)-334(w)-333(b)-27(ok)-334(i)-333(zno)28(wu)-333(ry)1(c)-1(ze)-1(\\242)-334(zac)-1(z\\246\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(spr)1(z)-1(edan)1(ie)-334(pr)1(o)28(w)27(ad)1(z)-1(isz)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-339(Ni...)-339(in)1(o)-340(d)1(o)-340(m\\252yn)1(arz)-1(o)28(w)28(e)-1(go)-339(b)28(ysia..)1(.)-340(a)-339(st\\363)-56(j)1(\\273)-1(e,)-340(zap)-27(o)27(wietrzona.)1(..)-339(W\\261)-1(ciek\\252a\\261)]TJ -27.879 -13.549 Td[(si\\246)-326(cz)-1(y)-325(co!)-325({)-325(w)27(o\\252a\\252a)-325(z)-1(ad)1(ysz)-1(an)1(a;)-325(usi\\252uj)1(\\241c)-326(p)-27(o)27(wstrzyma\\242)-1(,)-325(al)1(e)-326(kro)28(w)28(a)-325(j\\241)-325(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\246\\252a,)]TJ 0 -13.55 Td[(\\273e)-334(ju)1(\\273)-334(obi)1(e)-334(gna\\252y)-333(w)-334(d)1(yrd)1(y)83(,)-333(a\\273)-334(k)1(urz)-333(je)-334(zakry)1(\\252)-334(ob)1(\\252)-1(ok)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(A)-447(p)-27(ote)-1(m)-447(wl\\363k\\252)-447(s)-1(i)1(\\246)-448(ci\\246)-1(\\273k)28(o)-447(p)-28(o)-447(p)1(ias)-1(zcz)-1(ystej)-447(dr)1(o)-28(dze)-448(\\233yd)-446(s)-1(zm)-1(aciarz,)-447(p)-27(c)27(h)1(a\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(sob\\241)-333(tac)-1(zki)-333(dob)1(rze)-334(na\\252ad)1(o)27(w)28(ane,)-333(b)-27(o)-334(raz)-333(w)-334(raz)-333(przysiada\\252)-333(i)-333(c)-1(i)1(\\246)-1(\\273k)28(o)-334(d)1(ysz)-1(a\\252.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(tam)-333(s)-1(\\252yc)28(ha\\242)-1(,)-333(M)1(os)-1(zku?)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(s\\252yc)27(h)1(a\\242)-1(?...)-333(Kom)28(u)-333(dob)1(rze)-1(,)-333(to)-333(i)-333(dob)1(rze)-334(s)-1(\\252yc)28(ha\\242...)]TJ 0 -13.55 Td[(Kar)1(to\\015e)-467(,)-466(c)28(h)28(w)27(a\\252a)-466(Bogu)-466(obr)1(o)-28(dzi\\252y)83(,)-466(\\273yto)-466(s)-1(y)1(pie,)-466(k)56(apusta)-466(b)-28(\\246dzie.)-466(Kto)-466(m)-1(a)]TJ -27.879 -13.549 Td[(k)56(arto\\015)1(e)-1(,)-267(kto)-267(m)-1(a)-267(\\273)-1(y)1(to,)-268(k)1(to)-268(ma)-268(k)56(ap)1(ust\\246)-268(te)-1(m)28(u)-267(dob)1(rze)-268(s)-1(\\252yc)28(ha\\242!)-268({)-267(P)28(o)-28(ca\\252o)27(w)28(a\\252)-268(k)1(s)-1(i\\246dza)]TJ 0 -13.549 Td[(w)-365(r\\246k)55(a)28(w,)-365(z)-1(a\\252o\\273y\\252)-365(na)-365(k)56(ark)-365(p)1(as)-366(o)-27(d)-365(tac)-1(zek)-365(i)-365(p)-28(c)28(ha\\252)-365(dal)1(e)-1(j)1(,)-365(l\\273e)-1(j)-365(j)1(u\\273,)-365(b)-27(o)-366(zacz)-1(yn)1(a\\252)-365(s)-1(i\\246)]TJ 0 -13.549 Td[(spadek)-333(\\252ago)-28(dn)29(y)83(.)]TJ 27.879 -13.549 Td[(A)-461(p)-28(ot)1(e)-1(m)-462(sze)-1(d)1(\\252)-462(\\261ro)-28(d)1(kiem)-462(dr)1(ogi)-461(w)-462(ku)1(rza)28(w)-1(i)1(e)-1(,)-461(b)-27(o)-462(zamiata\\252)-462(n)1(ogami,)-461(\\261)-1(lep)28(y)]TJ -27.879 -13.55 Td[(dziad)1(,)-333(pro)28(w)28(adzon)28(y)-333(przez)-334(t\\252uste)-1(go)-333(ku)1(nd)1(la)-334(n)1(a)-333(s)-1(zn)28(ur)1(ku.)]TJ 27.879 -13.549 Td[(A)-329(p)-27(ote)-1(m)-329(lec)-1(ia\\252)-329(o)-28(d)-328(las)-1(u)-328(c)27(h)1(\\252)-1(op)1(ak)-329(z)-329(but)1(e)-1(lk)56(\\241,)-329(ale)-329(ten)-329(uj)1(rza)27(wsz)-1(y)-329(k)1(s)-1(i\\246dza)-329(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(dr)1(o)-28(dze)-334(okr)1(\\241\\273)-1(y\\252)-333(go)-333(z)-334(dal)1(a)-334(i)-333(b)1(ie)-1(g\\252)-333(na)-333(pr)1(z)-1(e\\252a)-56(j)-333(p)-27(\\363l)-333(do)-333(k)56(arcz)-1(m)28(y)83(.)]TJ 27.879 -13.549 Td[(T)83(o)-483(zno)28(wu)-483(c)27(h)1(\\252op)-483(z)-483(s)-1(\\241siedn)1(ie)-1(j)-482(ws)-1(i)-483(wi\\363z\\252)-483(z)-1(b)-27(o\\273)-1(e)-483(do)-483(m\\252yn)1(a)-483(alb)-27(o)-483(\\233)-1(y)1(d\\363)28(wk)55(a)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(i\\252a)-333(stado)-333(kup)1(ion)28(yc)28(h)-333(g\\246)-1(si.)]TJ 27.879 -13.55 Td[(A)-392(k)56(a\\273)-1(d)1(y)-393(p)-27(o)-28(c)28(h)28(w)27(al)1(i\\252)-393(Boga,)-392(zam)-1(ieni)1(\\252)-393(s\\252\\363)28(w)-393(par)1(\\246)-393(i)-392(sz)-1(ed\\252)-392(w)-393(sw)27(o)-55(j\\241)-392(dr)1(og\\246)-1(,)-392(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(pr)1(o)28(w)27(ad)1(z)-1(an)28(y)-271(\\273)-1(y)1(c)-1(zliwym)-272(s\\252o)28(w)27(em)-272(i)-272(sp)-27(o)-56(jr)1(z)-1(eni)1(e)-1(m)-272(ksi\\246dza,)-272(k)1(t\\363ren,)-271(\\273)-1(e)-272(j)1(u\\273)-272(s\\252o\\253ce)-272(b)28(y\\252o)]TJ 0 -13.549 Td[(coraz)-334(n)1(i\\273)-1(ej,)-333(p)-27(o)28(w)-1(sta\\252)-333(i)-334(k)1(rzykn\\241\\252)-333(do)-333(W)84(alk)56(a:)]TJ 27.879 -13.549 Td[({)-333(Do)-28(\\363rz)-333(do)-333(brz\\363z)-1(ek)-333(i)-333(do)-333(dom)28(u..)1(.)-333(na)-333(nic)-333(s)-1(i\\246)-333(k)28(onie)-334(zmac)27(ha)-55(j\\241.)]TJ 0 -13.549 Td[(I)-346(p)-27(os)-1(ze)-1(d)1(\\252)-346(w)27(ol)1(no)-346(miedzam)-1(i,)-345(o)-28(dma)28(wia\\252)-346(p)-28(\\363\\252g\\252ose)-1(m)-346(mo)-28(dl)1(it)28(wy)-346(i)-346(j)1(as)-1(n)28(y)1(m)-1(,)-345(p)-28(e\\252-)]TJ -27.879 -13.55 Td[(n)28(ym)-333(k)28(o)-28(c)27(h)1(ania)-333(sp)-28(o)-55(jrzeniem)-334(ogarn)1(ia\\252)-333(p)-28(ol)1(a)-1(.)1(..)]TJ 27.879 -13.549 Td[(...)1(Rz)-1(\\246dy)-328(k)28(obi)1(e)-1(t)-328(cz)-1(erwieni\\252y)-328(si\\246)-329(n)1(a)-329(k)28(op)1(anisk)56(ac)27(h.)1(..)-328(rozle)-1(ga\\252)-328(si\\246)-329(gru)1(c)27(h)1(ot)-329(zsy-)]TJ -27.879 -13.549 Td[(p)28(yw)28(an)28(yc)28(h)-406(d)1(o)-406(w)28(oz)-1(\\363)28(w)-406(k)56(arto\\015)1(i...)-405(m)-1(i)1(e)-1(j)1(s)-1(cam)-406(orano)-405(jes)-1(zc)-1(ze)-406(p)-28(o)-27(d)-406(siew)-1(.)1(..)-406(stada)-405(kr\\363)28(w)]TJ 0 -13.549 Td[(srok)56(at)28(yc)27(h)-396(p)1(as)-1(\\252y)-396(si\\246)-397(na)-396(u)1(gorac)27(h)1(...)-396(d)1(\\252)-1(u)1(gie,)-396(p)-28(op)1(ie)-1(l)1(ate)-397(zagon)28(y)-396(rdza)28(wi\\252y)-396(s)-1(i\\246)-396(m)-1(\\252o)-28(d)1(\\241)]TJ 0 -13.549 Td[(sz)-1(cz)-1(otk)56(\\241)-373(z)-1(b)-27(\\363\\273)-374(ws)-1(c)28(ho)-28(d)1(z)-1(\\241cyc)27(h)1(...)-373(to)-373(g\\246)-1(si)-373(nib)29(y)-374(p)1(\\252at)28(y)-374(\\261ni)1(e)-1(g\\363)28(w)-374(b)1(ieli\\252y)-373(s)-1(i)1(\\246)-374(na)-373(wytar-)]TJ 0 -13.549 Td[(t)28(yc)27(h)1(,)-344(zru)1(dzia\\252yc)27(h)-343(\\252\\241k)56(ac)27(h.)1(..)-344(kr)1(o)28(w)27(a)-344(gd)1(z)-1(ie\\261)-344(z)-1(ar)1(yc)-1(za\\252a...)-343(ognisk)56(a)-344(s)-1(i)1(\\246)-345(p)1(ali\\252y)-343(i)-344(d)1(\\252)-1(u)1(gie,)]TJ 0 -13.55 Td[(ni)1(e)-1(b)1(ie)-1(skie)-393(w)27(ar)1(k)28(o)-28(c)-1(ze)-394(d)1(ym\\363)28(w)-394(ci\\241)-28(gn)1(\\246)-1(\\252y)-393(si\\246)-394(n)1(ad)-393(zagonami..)1(.)-393(W)83(\\363z)-393(z)-1(atu)1(rk)28(ota\\252)-393(alb)-27(o)]TJ 0 -13.549 Td[(p\\252u)1(g)-426(zgrzytn\\241\\252)-426(o)-425(k)56(am)-1(ieni)1(e)-1(..)1(.)-426(to)-425(c)-1(isza)-426(z)-1(n)1(o)28(w)-1(u)-425(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252a)-426(zie)-1(mi\\246)-426(n)1(a)-426(c)27(h)28(wil)1(\\246)-1(,)-425(\\273)-1(e)]TJ 0 -13.549 Td[(s\\252)-1(y)1(c)27(ha\\242)-421(b)28(y\\252o)-421(g\\252u)1(c)27(h)28(y)-421(b)-27(e\\252k)28(ot)-421(rze)-1(ki)-420(i)-421(tur)1(k)28(ot)-421(m)-1(\\252y)1(na,)-421(sc)27(h)1(o)27(w)28(anego)-421(z)-1(a)-421(wsi\\241,)-421(w)-421(zbi-)]TJ 0 -13.549 Td[(t)28(ym)-427(g\\241sz)-1(cz)-1(u)-426(dr)1(z)-1(ew)-427(p)-27(o\\273)-1(\\363\\252k\\252yc)28(h..)1(.)-427(to)-426(z)-1(n)1(o)27(wu)-426(\\261)-1(p)1(iew)-1(k)56(a)-426(s)-1(i\\246)-427(ze)-1(r)1(w)27(a\\252a)-427(l)1(ub)-426(krzyk)-426(nie)]TJ 0 -13.549 Td[(wiadomo)-333(sk)56(\\241d)-332(p)-28(o)28(ws)-1(ta\\252y)-332(lec)-1(ia\\252)-332(nisk)28(o,)-332(t\\252uk\\252)-333(si\\246)-333(p)-27(o)-333(b)1(ruzdac)28(h)-332(i)-333(d)1(o\\252)-1(ac)28(h)-332(i)-333(ton)1(\\241\\252)-333(b)-27(e)-1(z)]TJ 0 -13.55 Td[(ec)27(ha)-279(w)-280(j)1(e)-1(siennej)-279(sz)-1(ar)1(o\\261)-1(ci,)-279(na)-279(\\261)-1(cierni)1(s)-1(k)56(ac)27(h)-279(op)1(rz\\246)-1(d)1(z)-1(on)28(y)1(c)27(h)-279(sre)-1(b)1(rn)28(y)1(m)-1(i)-279(p)1(a)-56(j\\246cz)-1(yn)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(w)-367(pu)1(s)-1(t)28(yc)28(h)-367(se)-1(n)1(n)28(yc)28(h)-367(d)1(rogac)27(h)1(,)-367(n)1(ad)-367(kt)1(\\363rymi)-367(p)-27(o)-28(c)27(h)29(yla\\252y)-367(si\\246)-367(jarz\\246bin)28(y)-366(o)-367(kr)1(w)27(a)28(wyc)27(h)1(,)]TJ\nET\nendstream\nendobj\n52 0 obj <<\n/Type /Page\n/Contents 53 0 R\n/Resources 51 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n51 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n56 0 obj <<\n/Length 8419      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(12)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(1.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(ci\\246)-1(\\273kic)28(h)-309(g\\252o)28(w)27(ac)28(h..)1(.)-309(to)-309(w\\252\\363)-28(cz)-1(on)1(o)-309(role)-309(i)-308(tuman)-309(sz)-1(ar)1(e)-1(go,)-308(przes)-1(\\252onecz)-1(n)1(ionego)-309(ku)1(rz)-1(u)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-284(si\\246)-284(za)-283(bron)1(am)-1(i)1(,)-283(w)-1(y)1(d\\252u\\273a\\252)-284(i)-283(p)-27(e\\252z)-1(a\\252)-283(a\\273)-284(na)-283(wz)-1(g\\363r)1(z)-1(e)-283(i)-283(opada\\252,)-283(a)-283(sp)-28(o)-28(d)-282(niego)]TJ 0 -13.549 Td[(ni)1(b)28(y)-442(z)-443(ob)1(\\252)-1(ok)1(u)-442(wyc)27(h)28(y)1(la\\252)-443(si\\246)-443(b)-27(osy)-442(c)27(h\\252op)1(,)-442(z)-443(go\\252\\241)-443(g\\252o)28(w)28(\\241,)-442(prze)-1(wi\\241zan)28(y)-442(p)1(\\252a)-1(c)28(h)28(t\\241)-442({)]TJ 0 -13.549 Td[(sz)-1(ed\\252)-400(w)27(ol)1(no,)-400(nab)1(iera\\252)-400(z)-1(i)1(arna)-400(z)-401(p)1(\\252ac)27(h)28(t)28(y)-400(i)-400(sia\\252)-400(ru)1(c)27(hem)-401(monot)1(onn)28(ym,)-400(n)1(ab)-28(o\\273n)28(ym)]TJ 0 -13.549 Td[(i)-356(b\\252ogos\\252)-1(a)28(wi\\241cym)-357(zie)-1(mi,)-356(do)-27(c)27(ho)-27(dzi\\252)-357(d)1(o)-357(k)28(o\\253ca)-357(zagon\\363)28(w,)-356(nabi)1(e)-1(r)1(a\\252)-357(z)-357(w)27(or)1(k)55(a)-356(z)-1(b)-27(o\\273a,)]TJ 0 -13.55 Td[(na)28(wraca\\252)-385(i)-384(z)-385(w)28(oln)1(a)-385(p)-27(o)-28(d)1(c)27(ho)-27(dzi\\252)-385(p)-27(o)-28(d)-384(wzg\\363rze)-1(,)-384(\\273e)-385(na)-55(jp)1(ie)-1(r)1(w)-385(g\\252o)28(w)27(a)-384(rozc)-1(zo)-28(c)27(h)1(ran)1(a,)]TJ 0 -13.549 Td[(p)-27(ote)-1(m)-334(ramion)1(a,)-334(a)-334(w)-334(k)28(o\\253)1(c)-1(u)-333(ju)1(\\273)-334(b)28(y\\252)-334(ca\\252)-1(y)-333(widn)29(y)-334(na)-333(tle)-334(s)-1(\\252o\\253ca)-334(z)-334(t)28(ym)-334(s)-1(am)28(ym)-334(b\\252o-)]TJ 0 -13.549 Td[(gos\\252)-1(a)28(wi\\241cym)-339(r)1(uc)27(h)1(e)-1(m)-338(s)-1(i)1(e)-1(j)1(b)28(y;)-338(z)-339(t)28(y)1(m)-339(sa)-1(m)28(ym)-338(\\261)-1(wi\\246t)28(ym)-339(r)1(z)-1(u)1(te)-1(m)-338(roz)-1(r)1(z)-1(u)1(c)-1(a\\252)-338(zb)-28(o\\273e)-1(,)-338(co)]TJ 0 -13.549 Td[(jak)-333(z\\252ot)28(y)-333(p)28(y\\252)-333(k)28(olis)-1(t)28(y)1(m)-334(wirem)-334(p)1(ada\\252o)-333(na)-333(z)-1(iemi\\246)-1(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-349(sz)-1(ed\\252)-348(c)-1(or)1(az)-350(w)28(oln)1(ie)-1(j)1(,)-349(czas)-1(em)-349(przysta)28(w)27(a\\252,)-348(ab)28(y)-349(o)-27(detc)27(hn)1(\\241\\242)-1(,)-348(to)-349(zno)28(wu)]TJ -27.879 -13.549 Td[(ob)-27(e)-1(j)1(rza\\252)-333(s)-1(i)1(\\246)-334(n)1(a)-333(sw)27(o)-55(je)-333(siwki,)-332(to)-333(pr)1(z)-1(y)1(g)-1(l)1(\\241da\\252)-333(si\\246)-333(c)27(h)1(\\252opak)28(om,)-333(ob)1(t\\252uku)1(j\\241cym)-333(k)56(am)-1(i)1(e)-1(-)]TJ 0 -13.55 Td[(ni)1(am)-1(i)-308(ogromn\\241)-308(gru)1(s)-1(z\\246)-1(,)-308(a\\273)-309(h)28(u)1(rme)-1(m)-308(przyb)1(ie)-1(gl)1(i)-309(d)1(o)-309(n)1(ie)-1(go)-308(i)-308(c)27(ho)28(w)28(a)-56(j)1(\\241c)-309(r\\246c)-1(e)-309(za)-309(siebie)]TJ 0 -13.549 Td[(ca\\252)-1(o)28(w)28(ali)-333(w)-334(r)1(\\246)-1(k)56(a)28(w)-334(sutan)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[(P)28(og\\252ad)1(z)-1(i\\252)-333(ic)27(h)-332(p)-28(o)-333(g\\252o)28(w)27(ac)27(h)-333(i)-333(r)1(z)-1(ek\\252)-333(up)-27(om)-1(i)1(na)-56(j)1(\\241c)-1(o:)]TJ 0 -13.549 Td[({)-333(Nie)-334(\\252amc)-1(ie)-333(ino)-333(ga\\252\\246)-1(zi,)-333(b)-27(o)-334(n)1(a)-334(b)-27(ez)-1(r)1(ok)-334(gr)1(usz)-1(ek)-333(m)-1(i)1(e)-1(\\242)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(cie.)]TJ 0 -13.549 Td[({)-374(M)1(y)-374(n)1(ie)-374(rzucalim)-373(na)-374(gr)1(usz)-1(k)1(i,)-374(i)1(no)-373(\\273)-1(e)-374(tam)-374(j)1(e)-1(st)-374(gap)1(ie)-374(gn)1(iaz)-1(d)1(o)-374({)-373(oz)-1(w)28(a\\252)-374(si\\246)]TJ -27.879 -13.55 Td[(\\261m)-1(ielsz)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-317(s)-1(i)1(\\246)-318(u\\261mie)-1(c)28(hn)1(\\241\\252)-318(d)1(obr)1(otliwie)-318(i)-317(zaraz)-317(z)-1(n)1(o)28(w)-1(u)-316(przystan\\241\\252)-317(pr)1(z)-1(y)-317(k)28(op)1(ac)-1(z-)]TJ -27.879 -13.549 Td[(k)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(Szc)-1(z\\246)-1(\\261\\242)-334(Bo\\273)-1(e)-333(w)-334(rob)-27(o)-28(cie)-1(!)]TJ 0 -13.549 Td[({)-313(Bo\\273)-1(e)-313(z)-1(ap)1(\\252a\\242)-1(,)-312(dzi\\246)-1(k)1(ujem)27(y)1(!)-313({)-313(o)-28(d)1(p)-28(o)28(wiedzie)-1(l)1(i)-313(raze)-1(m,)-313(p)1(ros)-1(t)1(uj\\241c)-313(si\\246)-1(,)-312(i)-313(ru)1(s)-1(zyli)]TJ -27.879 -13.55 Td[(ws)-1(zysc)-1(y)-333(d)1(o)-334(u)1(c)-1(a\\252o)28(w)27(an)1(ia)-333(r\\241k)-333(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a)-334(k)28(o)-28(c)28(han)1(e)-1(go.)]TJ 27.879 -13.549 Td[({)-316(P)28(an)-315(B\\363g)-316(da\\252)-316(lato\\261)-316(u)1(ro)-28(dza)-56(j)-315(na)-315(k)55(ar)1(to\\015e,)-316(co?)-316({)-316(m)-1(\\363)28(wi\\252)-316(wyci\\241)-28(ga)-56(j)1(\\241c)-316(ot)27(w)28(art\\241)]TJ -27.879 -13.549 Td[(tab)1(akierk)28(\\246)-249(d)1(o)-248(m)-1(\\246\\273)-1(czyz)-1(n)-247({)-248(bral)1(i)-248(s)-1(u)1(m)-1(i)1(e)-1(n)1(nie)-248(i)-248(z)-249(szac)-1(u)1(nkiem)-248(w)-249(sz)-1(cz)-1(y)1(pt)28(y)84(,)-248(nie)-248(\\261)-1(miej\\241c)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(n)1(im)-334(za\\273)-1(y)1(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(k)56(ar)1(to\\015e)-334(k)1(ie)-1(j)-333(k)28(o)-27(c)-1(ie)-333(\\252)-1(b)29(y)-333(i)-334(d)1(u\\273o)-333(p)-28(o)-28(d)-332(krzam)-1(i.)]TJ 0 -13.55 Td[({)-333(Ha,)-333(to)-334(\\261wini)1(e)-334(z)-1(d)1(ro\\273e)-1(j)1(\\241,)-334(b)-27(o)-333(jaki)-333(tak)1(i)-333(c)27(hcia\\252)-333(b)-28(\\246dzie)-334(wsadza\\242)-334(do)-333(k)56(armik)56(a.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(i)-333(tak)-333(d)1(rogie;)-333(na)-333(z)-1(ar)1(az)-1(\\246)-334(l)1(ate)-1(m)-333(w)-1(y)1(gin\\246\\252y)83(,)-333(a)-333(i)-333(do)-333(Pr)1(us)-334(ku)1(pu)1(j\\241.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(p)1(ra)28(wda.)-333(A)-333(c)-1(zyje)-333(to)-334(ziem)-1(n)1(iaki)-333(k)28(op)1(ie)-1(cie?)]TJ 0 -13.549 Td[({)-333(A)-334(Bory)1(no)28(w)27(e.)]TJ 0 -13.549 Td[({)-333(Gosp)-28(o)-28(d)1(arza)-334(n)1(ie)-334(wid)1(z)-1(\\246,)-333(tom)-334(i)-333(roze)-1(zna\\242)-333(nie)-334(r)1(oz)-1(ez)-1(n)1(a\\252.)]TJ 0 -13.55 Td[({)-333(Oc)-1(i)1(e)-1(c)-334(p)-27(o)-55(jec)27(hal)1(i)-334(z)-333(m)-1(oim)-333(ano)-333(do)-333(b)-27(oru.)]TJ 0 -13.549 Td[({)-406(A)-407(t)1(o)-407(wy)83(,)-406(An)1(na,)-406(j)1(ak\\273)-1(e)-406(s)-1(i\\246)-406(m)-1(acie?)-407({)-406(z)-1(wr\\363)-28(ci\\252)-406(s)-1(i)1(\\246)-407(do)-406(m\\252)-1(o)-27(dej,)-406(pr)1(z)-1(ysto)-55(jnej)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)-397(w)-397(cz)-1(erw)28(onej)-397(c)28(h)28(ustce)-398(n)1(a)-397(g\\252o)27(wie)-397(,)-397(k)1(t\\363ra,)-397(\\273e)-398(r)1(\\246)-1(ce)-397(m)-1(ia\\252a)-397(u)29(w)27(alan)1(e)-398(ziem)-1(i)1(\\241,)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(zapask)28(\\246)-334(uj)1(\\246)-1(\\252a)-333(jego)-334(r)1(\\246)-1(k)28(\\246)-333(i)-334(p)-27(o)-28(ca\\252o)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-334(s)-1(i)1(\\246)-334(m)-1(a)-333(ten)-333(w)27(asz)-334(c)27(h)1(\\252opak,)-333(com)-334(go)-333(to)-333(w)27(e)-334(\\273ni)1(w)27(a)-333(c)27(h)1(rz)-1(ci\\252?)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-334(d)1(obro)-27(dz)-1(i)1(e)-1(j)1(o)27(wi,)-333(zdr)1(\\363)27(w,)-333(si\\246)-334(c)27(h)1(o)28(w)27(a)-333(i)-333(c)-1(o\\261)-333(niec)-1(o\\261)-334(b)1(a\\252yku)1(je.)]TJ 0 -13.55 Td[({)-333(No,)-333(z)-1(osta\\253cie)-334(z)-334(Bogiem)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(an)28(u)-333(Bogu)-333(o)-28(d)1(da)-55(jem)-1(.)]TJ 0 -13.549 Td[(I)-402(ksi\\241dz)-402(s)-1(k)1(r\\246c)-1(i\\252)-402(n)1(a)-402(pra)28(w)28(o,)-402(ku)-401(c)-1(me)-1(n)29(tarzo)27(wi,)-401(kt\\363ry)-402(l)1(e)-1(\\273a\\252)-402(z)-403(tej)-402(stron)28(y)-401(w)-1(si,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-333(top)-27(olami)-333(w)-1(y)1(s)-1(ad)1(z)-1(on)1(e)-1(j)-333(d)1(ro)-28(d)1(z)-1(e.)]TJ 27.879 -13.549 Td[(D\\252ugo)-419(z)-1(a)-419(nim)-420(sp)-27(ogl\\241dal)1(i)-420(w)-420(milcz)-1(eni)1(u,)-419(na)-419(jego)-420(s)-1(m)28(uk)1(\\252)-1(\\241,)-419(p)-27(o)-28(c)27(h)28(y)1(lon\\241)-419(niec)-1(o)]TJ -27.879 -13.55 Td[(p)-27(os)-1(ta\\242,)-447(d)1(opiero)-447(gd)1(y)-447(p)1(rze)-1(sz)-1(ed\\252)-447(n)1(iskie,)-447(k)56(am)-1(i)1(e)-1(n)1(ne)-447(ogro)-28(d)1(z)-1(eni)1(e)-448(cme)-1(n)28(tar)1(z)-1(a)-447(i)-446(s)-1(zed\\252)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(mogi\\252ami)-334(ku)-333(k)56(ap)1(licy)83(,)-333(c)-1(o)-333(sta\\252a)-334(wp)-28(o\\261r\\363)-27(d)-334(p)-27(o\\273\\363\\252k\\252yc)27(h)-333(b)1(rz)-1(\\363z)-333(i)-334(kl)1(on\\363)28(w)-334(cz)-1(er-)]TJ\nET\nendstream\nendobj\n55 0 obj <<\n/Type /Page\n/Contents 56 0 R\n/Resources 54 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 41 0 R\n>> endobj\n54 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n59 0 obj <<\n/Length 8636      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(13)]TJ -363.686 -35.866 Td[(w)28(on)28(yc)27(h)1(,)-333(roz)-1(wi\\241za\\252y)-333(s)-1(i)1(\\246)-334(im)-334(j)1(\\246)-1(zyki)1(.)]TJ 27.879 -13.549 Td[({)-333(Le)-1(p)1(s)-1(ze)-1(go)-333(to)-333(i)-333(na)-333(c)-1(a\\252ym)-333(\\261)-1(wiec)-1(i)1(e)-334(nie)-333(z)-1(n)1(ale)-1(\\271\\242)-334({)-333(z)-1(acz)-1(\\246\\252a)-333(kt\\363ra\\261)-334(z)-333(k)28(obiet.)]TJ 0 -13.549 Td[({)-293(Ju)1(\\261)-1(ci,)-293(c)28(hcia\\252y)-293(go)-293(te\\273)-293(z)-1(ab)1(ra\\242)-293(do)-293(miasta...)-293(\\273eb)28(y)-293(o)-28(ciec)-294(z)-293(w)28(\\363)-56(jt)1(e)-1(m)-293(ni)1(e)-294(j)1(e)-1(\\271dzili)]TJ -27.879 -13.549 Td[(pr)1(os)-1(i)1(\\242)-260(b)1(iskup)1(a,)-259(to)-258(b)28(y\\261w)27(a)-258(go)-259(i)-259(n)1(ie)-259(mie)-1(l)1(i...)-258(Kop)1(ta)-259(no,)-258(lu)1(dzie)-1(,)-258(k)28(opt)1(a,)-259(b)-27(o)-259(d)1(o)-259(wie)-1(cz)-1(or)1(a)]TJ 0 -13.549 Td[(ma\\252o)-300(d)1(alek)27(o,)-299(a)-299(ziem)-1(n)1(iak)28(\\363)28(w)-300(ma\\252o)-299(w)-1(i)1(e)-1(le!)-299({)-299(m)-1(\\363)28(wi\\252a)-299(Ann)1(a)-300(wysyp)1(uj\\241c)-299(s)-1(w)28(\\363)-56(j)-298(k)28(os)-1(z)-300(n)1(a)]TJ 0 -13.55 Td[(ku)1(p)-28(\\246)-333(\\273)-1(\\363\\252c\\241)-1(c\\241)-333(s)-1(i\\246)-333(na)-333(rozk)28(opan)1(e)-1(j)-333(ziem)-1(i,)-333(p)-27(e)-1(\\252n)1(e)-1(j)-333(zes)-1(c)27(h)1(\\252yc)27(h)-333(\\252\\246c)-1(i)1(n.)]TJ 27.879 -13.549 Td[(Wzi\\246li)-480(si\\246)-480(c)27(h)28(y)1(\\273)-1(o)-480(za)-480(rob)-27(ot\\246)-480(i)-480(w)-480(cic)27(h)1(o\\261)-1(ci,)-479(\\273)-1(e)-480(in)1(o)-480(s)-1(\\252yc)28(ha\\242)-480(b)28(y\\252o)-479(dziaban)1(ie)]TJ -27.879 -13.549 Td[(mot)28(yc)-1(ze)-1(k)-422(o)-423(t)28(w)27(ar)1(d\\241)-423(zie)-1(mi\\246,)-423(a)-423(cz)-1(asem)-424(suc)28(h)28(y)-423(d)1(\\271)-1(wi\\246k)-423(\\273e)-1(laza)-423(o)-423(k)56(amie)-1(\\253)1(.)-423(Cz)-1(asami)]TJ 0 -13.549 Td[(kto\\261)-280(niekto\\261)-280(w)-1(y)1(prosto)28(w)27(a\\252)-280(zgi\\246)-1(t)28(y)-280(i)-279(z)-1(b)-27(ola\\252y)-280(grzbiet,)-280(o)-28(d)1(e)-1(t)1(c)27(hn)1(\\241\\252)-281(g\\252\\246b)-27(ok)28(o,)-280(p)-28(op)1(atrzy\\252)]TJ 0 -13.549 Td[(b)-27(e)-1(zm)27(y\\261ln)1(ie)-301(na)-301(sie)-1(j)1(\\241c)-1(ego)-301(p)1(rz)-1(ed)-300(nimi)-301(i)-300(z)-1(n)1(o)27(wu)-300(k)28(opa\\252,)-300(w)-1(y)1(biera\\252)-301(z)-301(s)-1(zarej)-301(ziem)-1(i)-300(\\273)-1(\\363\\252te)]TJ 0 -13.549 Td[(zie)-1(mni)1(aki)-333(i)-333(rz)-1(u)1(c)-1(a\\252)-333(do)-333(k)28(osz)-1(a,)-333(p)1(rz)-1(ed)-333(si\\246)-334(sto)-56(j)1(\\241c)-1(ego.)]TJ 27.879 -13.55 Td[(Lud)1(z)-1(i)1(.)-379(b)28(y\\252o)-379(k)1(ilk)56(ana\\261c)-1(i)1(oro,)-379(p)1(rze)-1(w)28(a\\273)-1(n)1(ie)-380(stary)1(c)27(h)-378(k)28(obiet)-379(i)-379(k)28(omorn)1(ik)28(\\363)28(w)-1(,)-378(a)-379(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-1(i)-442(bieli\\252y)-442(s)-1(i\\246)-443(dw)28(a)-443(kr)1(z)-1(y\\273aki,)-442(u)-443(k)1(t\\363ryc)28(h)-443(w)-443(p\\252ac)28(h)28(tac)27(h)-442(le\\273)-1(a\\252y)-443(d)1(z)-1(i)1(e)-1(ci)-443(raz)-443(w)-443(raz)]TJ 0 -13.549 Td[(p)-27(op\\252aku)1(j\\241c.)]TJ 27.879 -13.549 Td[({)-333(A)-334(tak)-333(i)-333(stara)-333(p)-28(osz\\252)-1(a)-333(w)28(e)-334(\\261)-1(wiat)-333({)-333(z)-1(acz\\246)-1(\\252a)-333(Jagust)28(ynk)56(a)]TJ 0 -13.549 Td[({)-333(Kto?)-334({)-333(sp)28(yta\\252a)-333(Ann)1(a)-334(p)-27(o)-28(d)1(nosz)-1(\\241c)-334(si\\246.)]TJ 0 -13.55 Td[({)-333(A)-334(stara)-333(Agata.)]TJ 0 -13.549 Td[({)-333(Na)-334(\\273e)-1(b)1(ry)84(...)]TJ 0 -13.549 Td[({)-322(J)1(u\\261c)-1(i,)-321(\\273e)-322(na)-321(\\273)-1(ebry)1(!)-322(Hal)1(e)-1(!)-321(ni)1(e)-322(na)-321(s)-1(\\252o)-28(d)1(k)28(o\\261)-1(ci,)-321(ino)-321(na)-321(\\273)-1(ebr)1(y)83(.)-321(Ob)1(robi)1(\\252)-1(a)-321(krew-)]TJ -27.879 -13.549 Td[(ni)1(ak)28(\\363)27(w,)-333(wys\\252)-1(u)1(\\273)-1(y)1(\\252a)-334(si\\246)-334(im)-333(b)-28(ez)-334(lat)1(o,)-334(t)1(o)-334(j)1(u\\273)-334(j)1(\\241)-334(p)1(u\\261c)-1(i)1(\\252)-1(y)-333(n)1(a)-334(w)28(oln)28(y)-333(d)1(e)-1(c)28(h.)]TJ 27.879 -13.549 Td[({)-412(W)84(r\\363)-28(ci)-412(na)-412(zwie)-1(sn\\246,)-412(to)-412(i)1(m)-413(n)1(az)-1(n)1(os)-1(i)-411(w)-413(tor)1(e)-1(b)-27(ec)-1(zk)55(ac)28(h,)-412(a)-412(t)1(o)-412(i)-412(c)-1(u)1(kru)1(,)-412(a)-412(to)-412(i)]TJ -27.879 -13.55 Td[(har)1(bat)28(y)84(,)-400(a)-401(to)-400(i)-400(grosz)-1(a)-400(c)-1(o\\261)-400(niec)-1(o\\261;)-400(z)-1(ar)1(az)-401(j\\241)-400(b)-27(\\246)-1(d)1(\\241)-401(mi\\252o)28(w)28(a\\252)-1(y)84(,)-400(k)56(a\\273)-1(\\241)-400(s)-1(p)1(a\\242)-401(w)-400(\\252)-1(\\363\\273ku)1(,)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-281(pierzyn)1(\\241)-1(,)-281(rob)1(i\\242)-282(n)1(ie)-282(dad)1(z)-1(\\241,)-281(c)-1(ob)29(y)-282(se)-282(wyp)-27(o)-28(c)-1(ze)-1(n)1(a.)-281(A)-282(wuj)1(na,)-281(a)-282(ciotk)56(a)-282(j)1(e)-1(j)-281(m\\363)28(w)-1(i)1(\\241,)]TJ 0 -13.549 Td[(p)-27(\\363ki)-411(te)-1(go)-411(os)-1(tat)1(niego)-412(sz)-1(el\\241\\273k)55(a)-411(o)-28(d)-411(n)1(ie)-1(j)-411(n)1(ie)-412(wyci\\241)-28(gn)1(\\241...)-411(A)-412(j)1(e)-1(sieni\\241)-411(to)-412(j)1(u\\273)-412(l)1(a)-412(n)1(ie)-1(j)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(ca)-353(n)1(ie)-353(ma)-353(w)-352(s)-1(i)1(e)-1(n)1(i)-353(an)1(i)-353(w)28(e)-353(c)27(h)1(liwie.)-352(Scie)-1(r)1(w)-1(y)84(,)-352(psie)-353(kr)1(e)-1(wni)1(aki)-352(i)-353(zap)-27(o)27(wietrzone)]TJ 0 -13.549 Td[({)-333(w)-1(y)1(bu)1(c)27(ha\\252a)-333(Jagust)28(ynk)56(a)-333(i)-333(taki)-333(gni)1(e)-1(w)-333(j\\241)-333(przej\\241\\252,)-333(\\273)-1(e)-333(s)-1(tar)1(a)-334(j)1(e)-1(j)-333(t)28(w)28(arz)-334(p)-27(osinia\\252a.)]TJ 27.879 -13.55 Td[({)-470(Biednem)27(u)-469(to)-470(za)28(w)-1(sze)-471(n)1(a)-470(ten)-470(p)1(rz)-1(y)1(k\\252ad)-470(wiat)1(r)-470(w)-470(o)-28(cz)-1(y)-469(dorzuci\\252)-470(j)1(e)-1(d)1(e)-1(n)-469(z)]TJ -27.879 -13.549 Td[(k)28(omorni)1(k)28(\\363)27(w,)-333(stary)84(,)-334(wyn)1(\\246)-1(d)1(z)-1(n)1(ia\\252y)-333(c)27(h)1(\\252op)-333(z)-334(krzyw)28(\\241)-334(g\\246b\\241.)]TJ 27.879 -13.549 Td[({)-333(Kopta)-333(n)1(o,)-334(l)1(udzie,)-333(k)28(opta)-333({)-333(p)-28(op)-27(\\246)-1(d)1(z)-1(a\\252a)-333(Ann)1(a)-334(n)1(ierada)-333(tok)28(o)28(wi)-333(rozm)-1(o)28(wy)83(.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-322(\\273e)-323(to)-322(d\\252ugo)-322(ni)1(e)-323(mog\\252)-1(a)-322(b)-27(e)-1(z)-323(gad)1(ania,)-322(to)-322(sp)-28(o)-55(jrza\\252a)-322(na)-322(s)-1(iej\\241ce)-1(go)]TJ -27.879 -13.549 Td[(i)-333(rze)-1(k)1(\\252)-1(a:)]TJ 27.879 -13.55 Td[({)-333(T)83(e)-334(P)28(acz)-1(es)-1(i)1(e)-334(to)-333(s)-1(tar)1(e)-334(c)27(h)1(\\252)-1(op)29(y)83(,)-333(\\273e)-334(ja\\273e)-334(im)-333(ju)1(\\273)-334(k\\252aki)-333(na)-333(\\252bac)28(h)-333(pu)1(s)-1(zc)-1(za)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-333(Ale)-334(k)56(a)28(w)27(alery)-333(za)27(wd)1(y)-333({)-334(r)1(z)-1(ek\\252a)-334(i)1(nsz)-1(a)-333(k)28(obi)1(e)-1(ta.)]TJ 0 -13.549 Td[({)-333(A)-334(t)28(yl)1(e)-334(dziew)-1(u)1(c)27(h)-333(si\\246)-334(starze)-1(j)1(e)-334(alb)-27(o)-333(i)-334(s\\252u\\273b)28(y)-333(sz)-1(uk)56(a\\242)-334(i)1(dzie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)1(,)-333(a)-334(on)1(e)-334(m)-1(a)-55(j\\241)-333(ca\\252)-1(y)-333(p)-27(\\363\\252w\\252\\363)-28(c)-1(ze)-1(k)-333(i)-333(j)1(e)-1(sz)-1(ez)-1(e)-333(\\252)-1(\\241czk)28(\\246)-334(z)-1(a)-333(m\\252ynem)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(ab)-27(o)-333(to)-334(i)1(m)-334(matk)56(a)-334(d)1(a)-334(si\\246)-334(\\273e)-1(n)1(i\\242...)-333(ab)-27(o)-334(to)-333(im)-333(p)-28(op)1(u\\261c)-1(i.)1(..)]TJ 0 -13.549 Td[({)-411(A)-411(kto)-411(b)28(y)-411(kro)28(wy)-411(doi)1(\\252)-1(,)-411(k)1(to)-412(b)29(y)-411(opiera\\252,)-411(kto)-411(b)28(y)-411(k)28(ol)1(e)-412(gos)-1(p)-27(o)-28(d)1(arst)27(w)28(a)-411(ab)-28(o)-411(i)]TJ -27.879 -13.55 Td[(\\261w)-1(y)1(\\253)-333(c)27(ho)-27(dzi\\252...)]TJ 27.879 -13.549 Td[({)-399(Ob)1(rz\\241dza)-56(j)1(\\241)-399(s)-1(e)-399(matul\\246)-399(i)-399(J)1(agusi\\246)-1(,)-398(b)-28(o)-399(j)1(ak\\273e)-1(,)-398(Jagna)-399(ki)1(e)-1(j)-398(pan)1(i)-399(jak)56(a,)-398(kiej)-399(i)]TJ -27.879 -13.549 Td[(dr)1(uga)-412(dziedzicz)-1(k)56(a,)-412(in)1(o)-413(si\\246)-413(stroi)1(...)-412(a)-412(m)27(y)1(je,)-412(a)-413(w)-412(lu)1(s)-1(terku)-411(przegl\\241da,)-412(a)-412(w)28(ark)28(o)-28(cz)-1(e)]TJ 0 -13.549 Td[(zaplata.)]TJ 27.879 -13.549 Td[({)-333(I)-334(p)1(atrzy)-333(ino,)-333(k)28(ogo)-333(b)28(y)-333(pu)1(\\261)-1(ci\\242)-334(p)-27(o)-28(d)-333(p)1(ie)-1(r)1(z)-1(y)1(n\\246,)-334(k)1(t\\363ren)]TJ 0 -13.55 Td[(ab)28(y)-333(mo)-28(cn)28(y!)-333({)-333(dorzuci\\252a)-333(z)-1(n)1(o)27(wu)-333(ze)-334(z\\252)-1(y)1(m)-334(u\\261mie)-1(c)28(hem)-334(Jagu)1(s)-1(t)28(yn)1(k)55(a.)]TJ 0 -13.549 Td[({)-333(J\\363z)-1(ek)-333(B)-1(an)1(ac)27(h)1(\\363)27(w)-333(p)-28(osy\\252a\\252)-333(z)-334(w)27(\\363)-27(dk)56(\\241)-333({)-334(n)1(ie)-334(c)27(h)1(c)-1(i)1(a\\252a)-1(.)]TJ\nET\nendstream\nendobj\n58 0 obj <<\n/Type /Page\n/Contents 59 0 R\n/Resources 57 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n57 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n63 0 obj <<\n/Length 8274      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(14)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(1.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(C)-1(i)1(e)-1(..)1(.)-333(dzie)-1(d)1(z)-1(i)1(c)-1(zk)55(a)-333(zap)-28(o)28(wietrzona.)]TJ 0 -13.549 Td[({)-444(A)-444(s)-1(tar)1(a)-444(ino)-444(w)-444(k)28(o\\261)-1(cie)-1(l)1(e)-445(siadu)1(je,)-444(a)-444(na)-444(ksi\\241\\273)-1(ce)-445(si\\246)-445(mo)-28(d)1(li,)-444(a)-444(na)-444(o)-28(d)1(pu)1(s)-1(t)28(y)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi!)]TJ 27.879 -13.549 Td[({)-409(Pr)1(a)27(wd)1(a,)-410(al)1(e)-410(cz)-1(aro)28(wni)1(c)-1(a)-409(to)-409(te)-1(\\273)-409(jes)-1(t;)-409(a)-409(W)84(a)27(wr)1(z)-1(on)1(o)27(wym)-409(kro)28(w)28(om)-410(to)-409(c)27(h)28(to)]TJ -27.879 -13.549 Td[(mle)-1(k)28(o)-376(o)-27(debra\\252,)-375(c)-1(o?)-376(A)-376(jak)-375(na)-376(Jad)1(am)-1(o)28(w)28(e)-1(go)-376(c)27(h)1(\\252opak)56(a,)-376(co)-376(jej)-376(\\261liwki)-376(w)-376(sadku)-375(ob-)]TJ 0 -13.55 Td[(ry)1(w)27(a\\252,)-404(jak)1(ie)-1(\\261)-404(z)-1(\\252e)-405(s\\252o)28(w)27(o)-404(p)-28(o)28(wiedzia\\252a,)-404(to)-404(m)27(u)-404(si\\246)-405(zaraz)-405(tak)1(i)-404(k)28(o\\252)-1(t)1(un)-404(zbi\\252)-404(i)-404(tak)-404(go)]TJ 0 -13.549 Td[(p)-27(okr\\246c)-1(i)1(\\252)-1(o,)-333(Jezus!)]TJ 27.879 -13.549 Td[({)-465(I)-464(m)-1(a)-465(t)1(u)-465(b)1(\\252ogos)-1(\\252a)28(wie)-1(\\253)1(s)-1(t)28(w)28(o)-465(Bo\\273)-1(e)-465(b)28(y\\242)-465(n)1(ad)-465(n)1(aro)-28(d)1(e)-1(m,)-464(kiej)-465(tak)1(ie)-465(w)27(e)-465(ws)-1(i)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(\\241.)1(..)]TJ 27.879 -13.549 Td[({)-339(A)-338(dr)1(z)-1(ewie)-1(j)1(,)-339(k)1(ie)-1(j)-338(j)1(e)-1(sz)-1(cz)-1(e)-339(k)1(ro)28(w)-1(y)-338(p)1(as)-1(a\\252am)-339(tatu)1(s)-1(i)1(o)27(w)28(e)-1(,)-338(to)-338(bacz)-1(\\246,)-339(\\273e)-339(takie)-339(ze)]TJ -27.879 -13.549 Td[(ws)-1(i)-333(wygan)1(iali)-333({)-333(do)-28(d)1(a\\252a)-334(zno)28(wu)-333(Jagust)28(yn)1(k)55(a.)]TJ 27.879 -13.55 Td[({)-442(T)27(ym)-442(s)-1(i\\246)-443(k)1(rzywda)-442(nie)-443(stani)1(e)-1(,)-442(b)-27(o)-443(ma)-443(j)1(\\241)-443(k)1(to)-443(strze)-1(c...)1(i)-443(zni\\273a)-56(j)1(\\241c)-443(g\\252os)-443(do)]TJ -27.879 -13.549 Td[(sz)-1(eptu)1(,)-470(a)-471(p)1(atrz\\241c)-471(z)-471(u)1(k)28(os)-1(a)-470(n)1(a)-471(An)1(n\\246,)-470(c)-1(o)-470(k)28(op)1(a\\252a)-471(n)1(a)-471(p)1(rze)-1(d)1(z)-1(i)1(e)-471(pi)1(e)-1(rwsz)-1(\\241)-470(z)-471(k)1(ra)-56(j)1(a)]TJ 0 -13.549 Td[(redl)1(in\\246,)-333(s)-1(ze)-1(p)1(ta\\252a)-334(Jagu)1(s)-1(t)28(y)1(nk)56(a)-334(s\\241siadk)28(om:)]TJ 27.879 -13.549 Td[({)-321(A)-322(p)-27(ono)-321(pi)1(e)-1(r)1(w)-1(sz)-1(y)-321(d)1(o)-322(ob)1(ron)28(y)-321(to)-321(ano)-321(c)27(h)1(\\252op)-321(Hanki)1(...)-321(c)-1(i)1(e)-1(k)56(a)-321(s)-1(i\\246)-321(on)-321(z)-1(a)-321(Jagn\\241)]TJ -27.879 -13.549 Td[(kiej)-333(ten)-333(pi)1(e)-1(s.:.)]TJ 27.879 -13.55 Td[({)-245(Lab)-28(oga.)1(..)-245(m)-1(oi\\261cie)-1(wy)84(...)-245(cude\\253k)56(a)-245(pr)1(a)27(wicie...)-245(Hale!)-245(to)-246(b)29(y)-246(j)1(u\\273)-246(gr)1(z)-1(ec)27(h)-245(i)-245(ob)1(raz)-1(a)]TJ -27.879 -13.549 Td[(b)-27(os)-1(k)56(a)-333(b)28(y\\252a...)-333({)-333(s)-1(zepta\\252y)-333(do)-333(sie)-1(b)1(ie)-334(k)28(op)1(i\\241c)-334(i)-333(ni)1(e)-334(p)-28(o)-27(dn)1(os)-1(z\\241c)-334(g\\252\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(on)-332(jeden...)-333(a)-333(to)-333(jak)-333(za)-334(suk)56(\\241,)-333(tak)-333(c)27(h)1(\\252opaki)-333(za)-334(n)1(i\\241)-333(gania)-55(j\\241.)]TJ 0 -13.549 Td[({)-388(A)-388(b)-28(o)-388(te\\273)-389(ur)1(o)-28(d\\246)-388(m)-1(a,)-388(t)1(o)-389(ma;)-388(wypasion)1(a)-389(k)1(ie)-1(j)-387(ja\\252o)28(w)-1(i)1(c)-1(a,)-388(b)1(ia\\252a)-389(n)1(a)-388(g\\246)-1(b)1(ie)-1(,)-388(a)]TJ -27.879 -13.549 Td[(\\261le)-1(p)1(ie)-313(to)-312(m)-1(a)-312(ryc)28(h)28(t)28(yk)-312(jak)-312(te)-313(ln)1(o)27(w)28(e)-313(kwiatki)1(...)-312(a)-313(mo)-28(cna,)-312(\\273)-1(e)-313(i)-312(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-312(c)27(h)1(\\252op)-312(jej)-312(nie)]TJ 0 -13.55 Td[(ur)1(adzi...)-333(,)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(co)-333(robi)1(,)-333(ino)-333(\\273)-1(r)1(e)-334(a)-333(w)-1(y)1(s)-1(yp)1(ia)-333(s)-1(i\\246,)-333(to)-333(nie)-333(m)-1(a)-333(ur)1(o)-28(dn)1(a)-334(b)29(y\\242)-1(.)1(..)]TJ 0 -13.549 Td[(Mi)1(lc)-1(za\\252y)-333(d\\252ug\\241)-333(c)27(h)29(w)-1(i)1(l\\246)-1(,)-333(b)-27(o)-333(trze)-1(b)1(a)-334(b)28(y)1(\\252o)-334(k)56(arto\\015)1(e)-334(wysyp)28(yw)28(a\\242)-334(na)-333(ku)1(p)-28(\\246.)]TJ 0 -13.549 Td[(A)-326(p)-27(otem)-326(ju)1(\\273)-327(z)-326(r)1(z)-1(ad)1(k)55(a)-325(p)-28(ogad)1(yw)28(a\\252)-1(y)-325(to)-326(o)-325(t)28(ym)-1(,)-325(to)-326(o)-325(o)28(w)-1(y)1(m)-326(a\\273)-327(i)-325(zam)-1(il)1(k\\252y)83(,)-325(b)-28(o)]TJ -27.879 -13.549 Td[(kt\\363r)1(a\\261)-334(do)-55(jr)1(z)-1(a\\252a,)-333(\\273)-1(e)-333(o)-28(d)-333(ws)-1(i)-333(r\\273yskiem)-334(b)1(ie)-1(\\273y)-333(J\\363z)-1(k)56(a)-333(B)-1(or)1(yni)1(ank)56(a.)-333(,)]TJ 27.879 -13.55 Td[(Jak)28(o\\273)-334(i)-333(ta)-333(nad)1(bi)1(e)-1(ga\\252a)-333(z)-1(zia)-56(j)1(ana)-333(i)-333(ju)1(\\273)-334(z)-334(d)1(ale)-1(k)56(a)-333(krzycz)-1(a\\252a:)]TJ 0 -13.549 Td[({)-333(Hank)56(a,)-333(a)-334(c)28(ho)-28(d)1(\\271)-1(cie)-334(i)1(no)-333(do)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-333(b)-28(o)-333(kro)28(wie)-334(si\\246)-334(cos)-1(i)1(k)-333(s)-1(ta\\252o.)]TJ 0 -13.549 Td[({)-333(Je)-1(zus)-333(Maria,)-333(a)-333(kt\\363r)1(e)-1(j)1(?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(ci)-333(grani)1(as)-1(tej..)1(.)-334(a)-333(to)-333(c)-1(i)1(...)-333(tc)27(h)29(u)-333(z)-1(\\252ap)1(a\\242)-334(ni)1(e)-334(m)-1(og\\246..-)]TJ 0 -13.549 Td[({)-267(Lob)-27(oga,)-267(a\\273e)-268(mn)1(ie)-268(zatkn)1(\\246)-1(\\252o,)-266(m)27(y\\261la\\252am,)-267(\\273)-1(e)-267(mo)-56(j)1(e)-1(j)1(...-za)27(w)28(o\\252a\\252a)-267(z)-267(ulg\\241)-267(An)1(na.)]TJ 0 -13.55 Td[({)-265(Witek)-266(j)1(\\241)-266(co)-265(dopi)1(e)-1(r)1(o)-266(p)1(rz)-1(y)1(gna\\252,)-265(b)-28(o)-265(ga)-56(j)1(o)28(w)-1(y)-265(ic)28(h)-265(wyp)-28(\\246dzi\\252)-265(z)-266(z)-1(aga)-55(j\\363)28(w.)-265(Kro)28(w)27(a)]TJ -27.879 -13.549 Td[(si\\246)-390(zlac)27(h)1(a\\252a,)-389(b)-27(o)-389(tak)55(a)-389(\\261pa\\261na.)1(..)-389(i)-389(zaraz)-389(przed)-389(ob)-27(or\\241)-389(up)1(ad\\252a..)1(.)-389(i)-389(ani)-388(pi\\242)-389(nie)-389(pi)1(je,)]TJ 0 -13.549 Td[(ani)-333(\\273re\\242)-334(ni)1(e)-334(\\273)-1(r)1(e)-1(,)-333(in)1(o)-334(si\\246)-334(t)1(arz)-1(a,)-333(a)-333(ry)1(c)-1(zy)83(,)-333(\\273e)-334(lob)-27(oga!)]TJ 27.879 -13.549 Td[({)-333(Ojca)-333(to)-334(n)1(ie)-334(ma?)]TJ 0 -13.549 Td[({)-399(Ni,)-399(t)1(atulo)-399(j)1(e)-1(sz)-1(cze)-400(n)1(ie)-400(p)1(rzyjec)27(h)1(ali.)-399(O)-398(Je)-1(zus,)-399(m\\363)-56(j)-399(J)1(e)-1(zus,)-399(tak)56(a)-399(kro)28(w)28(a,)-399(c)-1(o)]TJ -27.879 -13.549 Td[(na)-333(raz)-333(dob)1(rz)-1(e)-333(i)-334(gar)1(niec)-334(mlek)55(a)-333(d)1(a)27(w)28(a\\252a.)-333(A)-334(c)28(ho)-28(d)1(\\271)-1(cie\\273)-334(ryc)28(h\\252o.)]TJ 27.879 -13.55 Td[({)-333(Duc)28(hem)-334(c)-1(i)-333(l)1(e)-1(c\\246)-1(,)-333(w)-333(to)-334(o)-28(czym)-1(gn)1(ienie.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-448(i)-447(w)-1(y)1(j\\246\\252)-1(a)-447(dzie)-1(c)28(k)28(o)-448(z)-448(p\\252ac)28(h)28(t)28(y)83(,)-447(nad)1(z)-1(ia\\252a)-447(m)27(u)-447(c)-1(zap)-27(e)-1(cz)-1(k)28(\\246)-448(z)-448(ku)1(tas)-1(i)1(k)55(ami,)]TJ -27.879 -13.549 Td[(okr)1(\\246)-1(ci\\252a)-449(zapask)55(\\241)-448(i)-449(p)-27(os)-1(z\\252a)-449(\\273)-1(y)1(w)27(o,)-448(a)-449(tak)56(a)-449(b)28(y\\252a)-448(s)-1(tr)1(w)27(o\\273ona)-449(wie\\261)-1(ci\\241,)-448(\\273)-1(e)-449(na)28(w)28(e)-1(t)-448(nie)]TJ 0 -13.549 Td[(opu)1(\\261)-1(ci\\252a)-282(w)27(e\\252niak)56(a,)-282(z)-1(ap)-27(om)-1(n)1(ia\\252a)-283(d)1(o)-283(cna,)-282(a\\273)-283(jej)-282(o)-28(d)1(s)-1(\\252oni)1(\\246)-1(te)-283(d)1(o)-283(k)28(olan)-282(n)1(ogi)-283(b)1(ieli\\252y)-282(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-334(r)1(oli.)-333(J\\363zk)55(a)-333(bi)1(e)-1(g\\252a)-333(pr)1(z)-1(o)-28(d)1(e)-1(m.)]TJ 27.879 -13.55 Td[(A)-238(k)28(opacz)-1(e,)-238(k)56(a\\273)-1(d)1(y)-239(ok)1(rakiem)-239(n)1(ad)-238(s)-1(w)28(o)-56(j)1(\\241)-238(redlin)1(\\241,)-238(p)-28(osu)28(w)28(ali)-238(s)-1(i)1(\\246)-239(z)-239(w)28(olna,)-238(k)28(op)1(i\\241c)]TJ -27.879 -13.549 Td[(leniwiej,)-333(j)1(ak)28(o)-334(\\273e)-334(n)1(ikt)-333(nie)-333(pil)1(i\\252)-334(i)-333(n)1(ie)-334(p)-27(ogania\\252.)]TJ\nET\nendstream\nendobj\n62 0 obj <<\n/Type /Page\n/Contents 63 0 R\n/Resources 61 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n61 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n66 0 obj <<\n/Length 8352      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(15)]TJ -335.807 -35.866 Td[(S\\252o\\253)1(c)-1(e)-290(j)1(u\\273)-290(si\\246)-290(pr)1(z)-1(etac)-1(za\\252o)-290(n)1(a)-290(z)-1(ac)28(h\\363)-28(d)-289(i)-289(jak)1(b)28(y)-290(r)1(oz)-1(\\273arzone)-290(bi)1(e)-1(giem)-290(sz)-1(alon)29(ym)]TJ -27.879 -13.549 Td[(cz)-1(erwieni\\252o)-223(s)-1(i)1(\\246)-224(k)28(o\\252em)-224(ogromn)28(ym)-223(i)-223(zs)-1(u)28(w)28(a\\252o)-223(z)-1(a)-223(cz)-1(arn)1(e)-1(,)-222(w)-1(y)1(s)-1(oki)1(e)-224(lasy)83(.)-223(M)1(rok)-223(g\\246s)-1(tn)1(ia\\252)]TJ 0 -13.549 Td[(i)-236(p)-28(e\\252z)-1(a\\252)-237(j)1(u\\273)-237(p)-27(o)-237(p)-27(olac)27(h)1(;)-237(sun)1(\\241\\252)-237(br)1(uzdami,)-236(c)-1(zai\\252)-237(si\\246)-237(p)-28(o)-236(ro)28(w)27(ac)28(h,)-236(w)-1(zbi)1(e)-1(r)1(a\\252)-237(w)-237(g\\241s)-1(zcz)-1(ac)27(h)]TJ 0 -13.549 Td[(i)-412(z)-412(w)27(oln)1(a)-412(rozle)-1(w)28(a\\252)-412(s)-1(i\\246)-412(p)-27(o)-413(ziem)-1(i)1(,)-412(przygasz)-1(a\\252,)-412(ogar)1(nia\\252)-412(i)-412(t\\252u)1(m)-1(i)1(\\252)-413(b)1(arwy)83(,)-411(\\273)-1(e)-412(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(cz)-1(u)1(b)28(y)-333(drzew)-1(,)-333(wie\\273)-1(e)-334(i)-333(d)1(ac)27(h)28(y)-333(k)28(o\\261c)-1(i)1(o\\252)-1(a)-333(gorza\\252y)-333(p\\252omie)-1(n)1(iami.)]TJ 27.879 -13.55 Td[(A)-333(niekt\\363r)1(z)-1(y)-333(\\261c)-1(i\\241)-28(gal)1(i)-333(ju\\273)-333(z)-334(p)-27(\\363l)-334(d)1(o)-333(dom\\363)27(w.)]TJ 0 -13.549 Td[(G\\252osy)-287(lud)1(z)-1(k)1(ie)-1(,)-287(r)1(\\273)-1(enia,)-287(p)-27(ory)1(kiw)28(ania,)-287(tu)1(rk)28(ot)28(y)-287(w)28(oz)-1(\\363)28(w)-287(c)-1(oraz)-287(os)-1(tr)1(z)-1(ej)-287(b)1(rz)-1(mia\\252y)]TJ -27.879 -13.549 Td[(w)-334(cic)28(h)28(ym,)-333(om)-1(ro)-27(c)-1(zon)28(ym)-333(p)-28(o)28(wietrzu.)]TJ 27.879 -13.549 Td[(Sy)1(gnatu)1(rk)56(a)-474(na)-473(k)27(o\\261cie)-1(l)1(e)-475(zac)-1(z\\246\\252)-1(a)-473(dzw)27(on)1(i\\242)-475(An)1(io\\252)-474(P)28(a\\253)1(s)-1(k)1(i)-474(spi\\273o)28(w)-1(y)1(m)-475(\\261wie)-1(r)1(-)]TJ -27.879 -13.549 Td[(gotem)-1(,)-488(\\273e)-489(lud)1(z)-1(i)1(e)-489(przysta)28(w)27(ali)-488(i)-488(s)-1(zept)-488(pacie)-1(r)1(z)-1(\\363)28(w,)-488(nib)28(y)-488(sz)-1(em)-1(r)1(anie)-488(opada)-55(j\\241cyc)27(h)]TJ 0 -13.549 Td[(listk)28(\\363)28(w,)-333(pada\\252)-333(w)-334(mrok)1(i.)]TJ 27.879 -13.55 Td[(Ze)-314(\\261)-1(p)1(iew)27(ami)-313(a)-314(p)-27(okrzyk)56(am)-1(i)-313(w)28(e)-1(so\\252ymi)-314(sp)-27(\\246)-1(d)1(z)-1(an)1(o)-314(b)28(yd)1(\\252o)-314(z)-314(p)1(as)-1(t)28(wisk,)-313(c)-1(o)-313(c)-1(i\\273b\\241)]TJ -27.879 -13.549 Td[(sz)-1(\\252o)-262(d)1(rogami)-262(w)-262(tuman)1(ac)27(h)-262(k)1(urza)28(wy)83(,)-262(\\273e)-262(t)28(y\\252k)28(o)-262(raz)-262(w)-262(raz)-262(wyc)27(h)28(y)1(la\\252y)-262(si\\246)-262(z)-263(n)1(iej)-262(g\\252o)28(wy)]TJ 0 -13.549 Td[(p)-27(ot\\246)-1(\\273ne)-333(i)-334(r)1(ogi)-333(krzac)-1(zas)-1(te.)]TJ 27.879 -13.549 Td[(Ow)28(c)-1(e)-430(p)-28(ob)-27(ekiw)27(a\\252y)-430(tu)-429(i)-430(\\363)27(wd)1(z)-1(ie,)-430(to)-430(g\\246)-1(si)-430(z)-1(erw)28(a\\252y)-430(s)-1(i\\246)-430(z)-431(p)1(as)-1(t)28(wisk)-431(i)-430(stad)1(am)-1(i)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-1(y)84(,)-390(c)-1(a\\252e)-391(w)-390(z)-1(orzac)27(h)-390(zac)27(h)1(o)-28(du)-390(zatopi)1(one,)-391(\\273e)-391(t)28(ylk)28(o)-390(krzyk)-390(pr)1(z)-1(enik)1(liwy)-390(z)-1(n)1(ac)-1(zy\\252)]TJ 0 -13.55 Td[(je)-333(w)-334(p)-27(o)28(w)-1(i)1(e)-1(trzu.)]TJ 27.879 -13.549 Td[({)-333(Ale)-334(sz)-1(k)28(o)-28(d)1(a,)-333(ta)-334(gr)1(aniasta)-333(to)-333(s)-1(ieln)1(a)-334(kr)1(o)28(w)27(a.)]TJ 0 -13.549 Td[({)-333(I..:)-333(ni)1(e)-334(na)-333(bi)1(e)-1(dak)56(a)-333(tra\\014)1(\\252o.)]TJ 0 -13.549 Td[({)-333(A)-334(tak)-333(i)-333(b)28(y)1(dl\\241tk)56(a)-333(\\273)-1(al)1(,)-334(co)-333(s)-1(i\\246)-333(z)-1(marn)28(u)1(je.)]TJ 0 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(yni)-333(Bory)1(na)-333(nie)-333(m)-1(a,)-333(to)-333(ws)-1(zys)-1(t)1(k)28(o)-334(leci)-334(k)1(ie)-1(j)-332(prze)-1(z)-333(s)-1(ito.)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(to)-334(Han)1(k)56(a)-334(n)1(ie)-334(gosp)-28(o)-27(dyn)1(i?)]TJ 0 -13.549 Td[({)-365(La)-365(s)-1(i)1(e)-1(b)1(ie)-1(.)1(..)-365(jak)1(b)28(y)-365(na)-365(k)28(omorn)28(y)1(m)-366(u)-364(o)-56(jca)-365(s)-1(i)1(e)-1(d)1(z)-1(\\241,)-365(tu)-364(ju)1(\\261)-1(ci)-365(patr)1(z)-1(\\241,)-365(ab)29(y)-365(ino)]TJ -27.879 -13.549 Td[(na)-333(sw)27(o)-55(j\\241)-333(s)-1(tr)1(on\\246)-334(co\\261)-334(n)1(ie)-1(co\\261)-334(u)1(rw)27(a\\242,)-333(a)-333(o)-56(jco)28(w)27(ego)-334(n)1(iec)27(h)28(ta)-333(pi)1(e)-1(s)-334(p)1(iln)29(uje.)]TJ 27.879 -13.549 Td[({)-333(A)-334(J\\363zk)56(a,)-333(\\273)-1(e)-334(t)1(o)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(kr)1(z)-1(at)-333(g\\252up)1(i,)-333(to)-333(i)-333(c)-1(\\363\\273)-334(p)-27(orad)1(z)-1(i?)]TJ 0 -13.549 Td[(-Hale)-1(,)-333(ab)-27(o)-333(to)-334(Bory)1(na)-333(nie)-333(m)-1(\\363g\\252b)28(y)-333(gr)1(on)28(t)-333(o)-28(dd)1(a\\242)-334(An)28(tk)28(o)28(wi,)-333(c)-1(o?)]TJ 0 -13.55 Td[({)-339(A)-339(sam)-339(p)-28(\\363)-55(jd)1(z)-1(i)1(e)-340(d)1(o)-339(ni)1(c)27(h)-339(n)1(a)-339(wycug,)-338(c)-1(o?...)-338(Star)1(z)-1(y\\261c)-1(i)1(e)-1(.)-338(W)83(a)28(wrzku,)-338(a)-339(do)-339(cna)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-260(g\\252up)1(i)-260({)-259(z)-1(acz)-1(\\246\\252a)-260(\\273yw)28(o)-260(Jagust)28(yn)1(k)55(a.)-259({)-260(Ho,)-259(ho,)-259(Boryna)-259(jes)-1(zc)-1(ze)-260(kr)1(z)-1(epki,)-259(mo\\273)-1(e)]TJ 0 -13.549 Td[(si\\246)-334(o\\273e)-1(n)1(i\\242)-1(,)-333(a)-333(g\\252up)1(i)-334(b)29(y)-333(b)28(y\\252,)-333(\\273)-1(eb)28(y)-333(dziec)-1(i)1(om)-334(z)-1(ap)1(isyw)27(a\\252.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(k)1(rz)-1(epk)1(i)-334(t)1(o)-334(j)1(u\\261c)-1(i,)-333(\\273e)-334(j)1(e)-1(st,)-333(ale)-334(j)1(u\\273)-334(ma)-333(z)-1(e)-334(sz)-1(e\\261)-1(\\242dzies)-1(i)1(\\241t)-334(r)1(ok)28(\\363)27(w.)]TJ 0 -13.549 Td[({)-439(Nie)-439(b)-27(\\363)-56(j)-438(s)-1(i)1(\\246)-1(,)-438(W)83(a)28(wrzku,)-438(k)55(a\\273da)-438(m)-1(\\252\\363)-28(d)1(k)56(a)-439(p)-28(\\363)-55(jd)1(z)-1(i)1(e)-440(za)-439(n)1(ie)-1(go,)-438(niec)27(h)28(b)29(y)-439(t)28(ylk)28(o)]TJ -27.879 -13.55 Td[(rze)-1(k)1(\\252.)]TJ 27.879 -13.549 Td[({)-333(Ju\\273)-334(d)1(wie)-334(\\273on)28(y)-333(p)-28(o)-27(c)27(ho)28(w)28(a\\252.)]TJ 0 -13.549 Td[({)-414(Niec)27(h)-414(se)-414(p)-28(o)-28(c)28(ho)28(w)28(a)-415(i)-413(trze)-1(ci\\241,)-414(P)28(an)1(ie)-414(B)-1(o\\273e)-415(m)28(u)-414(p)-27(om)-1(\\363\\273,)-414(a)-414(n)1(ie)-1(c)28(h)-414(dziec)-1(i)1(om)-1(,)]TJ -27.879 -13.549 Td[(p)-27(\\363ki)-490(\\273)-1(yw,)-490(nie)-491(d)1(a)-56(j)1(e)-491(ni)-490(sta)-56(j)1(a,)-491(n)1(i)-491(l)1(is)-1(zki)-490(jedn)1(e)-1(j)1(,)-491(n)1(i)-491(t)28(y)1(le)-1(,)-490(co)-491(tr)1(e)-1(p)-27(e)-1(m)-491(p)1(rzydepn)1(ie.)]TJ 0 -13.549 Td[(\\221cierwy)83(,)-283(wyr)1(yc)27(h)28(t)1(o)27(w)28(a\\252yb)28(y)-283(go,)-283(ki)1(e)-1(j)-283(mo)-56(j)1(e)-284(mni)1(e)-1(.)-283(Da\\252yb)28(y)-283(m)28(u)-283(wycugi)-283(\\273e)-284(na)-283(wyrob)-27(ek)]TJ 0 -13.549 Td[(b)28(y)-323(c)27(ho)-27(dzi\\252,)-324(z)-324(g\\252o)-28(d)1(u)-324(b)29(y)-324(zdyc)28(ha\\252)-324(ab)-27(o)-324(i)-323(na)-324(\\273e)-1(b)1(ry)84(,)-324(p)-27(o)-324(pr)1(os)-1(zon)28(ym)-324(sz)-1(ed\\252.)-323(Odd)1(a)-56(j)-323(in)1(o,)]TJ 0 -13.55 Td[(co)-334(m)-1(asz)-1(,)-333(dziec)-1(iom)-334({)-334(to)-333(c)-1(i)-334(o)-27(dd)1(adz\\241;)-334(ryc)28(h)28(t)28(yk)-334(ci)-334(tego)-334(starcz)-1(y)-333(na)-334(sz)-1(n)28(u)1(rec)-1(ze)-1(k)-333(ab)-28(o)-333(i)]TJ 0 -13.549 Td[(na)-333(ten)-333(k)56(am)-1(ie\\253)-333(d)1(o)-334(sz)-1(y)1(i...)]TJ 27.879 -13.549 Td[({)-333(Lud)1(z)-1(ie,)-333(a)-334(t)1(o)-334(cz)-1(as)-334(d)1(o)-333(dom)27(u)1(,)-333(m)-1(r)1(o)-28(cz)-1(eje.)]TJ 0 -13.549 Td[({)-333(C)-1(zas,)-334(czas)-1(!)-333(S\\252o\\253)1(c)-1(e)-334(j)1(u\\273)-333(z)-1(asz)-1(\\252o.)]TJ 0 -13.549 Td[(P)28(ozbieral)1(i)-370(p)1(r\\246)-1(d)1(k)28(o)-370(mot)28(ycz)-1(ki)1(,)-370(k)28(osz)-1(yk)1(i,)-370(t)1(o)-370(dw)28(o)-56(j)1(aki)-369(o)-28(d)-369(obiad)1(\\363)28(w)-370(i)-370(sz)-1(l)1(i)-370(w)28(olno)]TJ -27.879 -13.55 Td[(g\\246s)-1(iego)-446(miedz\\241,)-446(p)-27(ogadu)1(j\\241c)-446(c)-1(o\\261)-446(n)1(ie)-1(co\\261,a)-446(t)28(ylk)28(o)-445(s)-1(tar)1(a)-446(Jagust)28(yn)1(k)55(a)-445(w)-1(y)1(krzykiw)28(a\\252a)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273)-333(nami\\246)-1(tn)1(ie)-334(n)1(a)-334(d)1(z)-1(i)1(e)-1(ci)-333(w)-1(\\252asne,)-333(a)-334(p)-27(otem)-334(ju)1(\\273)-334(i)-333(na)-333(ws)-1(zystkic)28(h)-333(p)-28(omsto)28(w)27(a\\252a.)]TJ\nET\nendstream\nendobj\n65 0 obj <<\n/Type /Page\n/Contents 66 0 R\n/Resources 64 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n64 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n69 0 obj <<\n/Length 867       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(16)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(1.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(A)-379(r\\363)28(wno)-379(z)-379(n)1(im)-1(i)-378(jak)56(a\\261)-380(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)1(a)-379(gna\\252a)-379(mac)-1(ior)1(\\246)-380(z)-379(pr)1(os)-1(i\\246tami)-379(i)-379(\\261piew)28(a\\252)-1(a)]TJ -27.879 -13.549 Td[(cie)-1(n)1(kim)-333(g\\252)-1(osiki)1(e)-1(m:)]TJ 27.879 -13.549 Td[(Aj,)-298(ni)1(e)-300(c)28(ho)-28(d)1(\\271)-299(kiele)-299(w)27(oza,)-299(Aj)1(,)-299(n)1(ie)-299(trzyma)-56(j)-298(s)-1(i\\246)-299(osi,)-299(Aj)1(,)-299(n)1(ie)-299(da)-55(j)-299(c)28(h\\252op)1(u)-299(g\\246b)28(y)84(,-)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(g\\252up)1(ia,)-333(wrze)-1(sz)-1(cz)-1(y)84(,)-333(kiejb)28(y)-333(j)1(\\241)-334(k)1(to)-334(ze)-334(sk)28(\\363ry)-333(ob)-27(dzie)-1(r)1(a\\252)]TJ\nET\nendstream\nendobj\n68 0 obj <<\n/Type /Page\n/Contents 69 0 R\n/Resources 67 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n67 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n72 0 obj <<\n/Length 6815      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(2)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-408(B)-1(or)1(yno)28(wym)-408(p)-28(o)-28(d)1(w)27(or)1(c)-1(u)1(,)-408(obsta)28(w)-1(i)1(on)28(ym)-408(z)-409(trze)-1(c)28(h)-408(stron)-408(b)1(ud)1(o)27(wlami)-408(gosp)-28(o)-28(d)1(ar-)]TJ 0 -13.549 Td[(skimi,)-450(a)-451(z)-450(c)-1(zw)27(ar)1(te)-1(j)-450(sadem)-1(,)-450(k)1(t\\363ry)-450(go)-450(o)-28(dd)1(z)-1(iela\\252)-450(o)-28(d)-450(dr)1(ogi,)-450(ju)1(\\273)-451(s)-1(i)1(\\246)-451(z)-1(ebr)1(a\\252o)-451(d)1(o\\261)-1(\\242)]TJ 0 -13.549 Td[(nar)1(o)-28(du)1(;)-375(k)1(ilk)56(a)-375(k)28(ob)1(iet)-375(rad)1(z)-1(i)1(\\252)-1(o)-374(i)-374(w)-1(y)1(dziwia\\252o)-375(nad)-374(ogr)1(om)-1(n)1(\\241)-375(cz)-1(erw)28(ono-bia\\252\\241)-374(kro)28(w)28(\\241,)]TJ 0 -13.549 Td[(le\\273)-1(\\241c\\241)-333(prze)-1(d)-333(ob)-27(or\\241)-333(n)1(a)-334(ku)1(pi)1(e)-334(na)28(w)28(oz)-1(u)1(.)]TJ 27.879 -13.55 Td[(St)1(ary)-308(p)1(ies)-1(,)-307(kula)28(wy)-308(n)1(iec)-1(o)-307(i)-308(z)-308(oblaz\\252\\241)-308(n)1(a)-308(b)-27(ok)55(ac)28(h)-308(sier\\261c)-1(i\\241,)-307(ogania\\252)-307(grani)1(as)-1(t\\241,)]TJ -27.879 -13.549 Td[(ob)28(w)28(\\241c)27(h)1(iw)27(a\\252)-270(j)1(\\241,)-270(s)-1(zcz)-1(ek)55(a\\252,)-269(to)-270(w)-1(y)1(pad)1(a\\252)-271(w)-270(op)1(\\252otki)-270(i)-270(gn)1(a\\252)-270(dziec)-1(i)-270(n)1(a)-270(dr)1(og\\246)-1(,)-270(co)-270(s)-1(i)1(\\246)-271(b)29(y\\252y)]TJ 0 -13.549 Td[(wies)-1(za\\252y)-274(n)1(a)-273(p\\252otac)27(h)-273(i)-273(zaz)-1(i)1(e)-1(r)1(a\\252)-1(y)-273(ciek)55(a)28(wie)-273(w)-274(ob)-27(e)-1(j)1(\\261)-1(cie,)-274(al)1(b)-28(o)-273(do)-27(c)-1(iera\\252)-273(do)-273(mac)-1(ior)1(y)83(,)-273(co)]TJ 0 -13.549 Td[(leg\\252a)-334(p)-27(o)-28(d)-333(c)28(ha\\252up)1(\\241)-334(i)-333(r)1(oz)-1(w)28(alona)-333(j)1(\\246)-1(cz)-1(a\\252a)-333(c)-1(ic)28(ho,)-333(b)-27(o)-334(ssa\\252)-1(y)-333(j)1(\\241)-334(b)1(ia\\252e,)-334(m\\252o)-28(d)1(e)-334(pr)1(os)-1(i\\246ta.)]TJ 27.879 -13.549 Td[(Hank)56(a)-381(n)1(adb)1(ieg\\252)-1(a)-380(w)-1(\\252a\\261ni)1(e)-382(zz)-1(i)1(a)-56(j)1(ana,)-380(przypad)1(\\252a)-381(d)1(o)-381(kro)28(wy)-381(i)-380(j\\246\\252a)-381(j\\241)-380(g\\252as)-1(k)56(a\\242)]TJ -27.879 -13.549 Td[(p)-27(o)-334(g\\246bu)1(li)-333(i)-333(\\252bie.)]TJ 27.879 -13.55 Td[({)-412(Gran)29(ula,)-412(b)1(iedoto,)-412(gr)1(a)-1(n)29(ula!)-412({)-412(w)28(o\\252a\\252a)-413(\\252za)28(w)27(o,)-412(a\\273)-412(bu)1(c)27(hn)1(\\246)-1(\\252a)-412(p\\252acz)-1(em)-413(i)-411(la-)]TJ -27.879 -13.549 Td[(me)-1(n)28(t)1(e)-1(m)-334(serdec)-1(zn)28(ym.)]TJ 27.879 -13.549 Td[(A)-397(k)28(ob)1(iet)28(y)-397(rad)1(z)-1(i)1(\\252y)-397(raz)-397(w)-397(r)1(az)-397(no)28(w)27(e)-397(r)1(ato)28(w)27(an)1(ie)-397(c)27(h)1(ore)-1(j)1(;)-397(t)1(o)-397(s)-1(\\363l)-396(rozpu)1(s)-1(zc)-1(zon\\241)]TJ -27.879 -13.549 Td[(wlew)27(ali)-398(jej)-399(w)-399(gard)1(\\252)-1(o,)-398(to)-399(topion)29(y)-399(z)-400(p)-27(o\\261w)-1(i)1(\\246)-1(canej)-399(gr)1(om)-1(n)1(ic)-1(y)-398(w)27(osk)-399(z)-399(m)-1(lekiem;)-399(ra-)]TJ 0 -13.549 Td[(dzi\\252)-291(kt)1(os)-1(ik)-290(m)27(yd)1(\\252a)-291(z)-292(se)-1(r)1(w)27(atk)56(\\241)-291({)-291(i)1(nsz)-1(a)-291(zno)28(wu)-291(w)28(o\\252a\\252a,)-291(\\273e)-1(b)28(y)-290(krew)-291(pu)1(\\261)-1(ci\\242)-1(-ale)-291(kr)1(o)27(wie)]TJ 0 -13.55 Td[(ni)1(c)-365(n)1(ie)-364(p)-28(omaga\\252o,)-364(wyci\\241)-28(ga\\252a)-364(si\\246)-364(coraz)-364(d\\252u\\273ej,)-364(n)1(iekiedy)-364(p)-27(o)-28(d)1(nosi\\252a)-364(\\252e)-1(b)-363(i)-363(p)-28(or)1(yki-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(a)-366(d\\252ugo,)-366(jakb)29(y)-367(o)-367(r)1(atun)1(e)-1(k,)-366(b)-28(ol)1(e)-1(\\261nie,)-367(a\\273)-367(jej)-366(pi\\246kn)1(e)-368(o)-28(czy)-367(o)-367(b)1(ia\\252k)55(ac)28(h)-367(r)1(\\363\\273)-1(o)28(wyc)27(h)]TJ 0 -13.549 Td[(m\\246)-1(tn)1(ia\\252y)-387(mg\\252\\241)-387(i)-387(ci\\246)-1(\\273ki,)-386(rogat)28(y)-387(\\252eb)-387(op)1(ada\\252)-387(z)-387(wys)-1(i)1(le)-1(n)1(ia,)-387(\\273e)-387(ino)-387(wysu)28(w)28(a\\252a)-387(oz)-1(\\363r)-386(i)]TJ 0 -13.549 Td[(p)-27(olizyw)27(a\\252a)-333(r\\246c)-1(e)-333(Hanki.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(b)28(y)-333(Am)27(b)1(ro\\273y)-334(co)-333(p)-28(or)1(adzi\\252?)-334({)-333(z)-1(ap)1(rop)-27(ono)28(w)28(a\\252)-1(a)-333(kt\\363r)1(a\\261)-1(.)]TJ 0 -13.55 Td[({)-333(Pra)28(wda,)-333(n)1(a)-334(c)28(horob)1(ac)27(h)-333(on)-333(j)1(e)-1(st)-333(z)-1(n)1(a)-56(j)1(\\241c)-1(y)-333({)-333(z)-1(a)28(wt\\363ro)28(w)28(ali.)]TJ 0 -13.549 Td[(Bie)-1(\\273yj)-349(n)1(o,)-349(J\\363zia!)-349(Na)-350(An)1(io\\252)-349(P)28(a\\253ski)-349(d)1(z)-1(w)28(onil)1(i,)-349(to)-349(m)27(u)1(s)-1(i)-349(j)1(e)-1(sz)-1(cz)-1(e)-349(b)28(y\\242)-350(p)1(rzy)-349(k)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(iele)-276(Lab)-28(oga,)-275(a)-276(jak)-275(o)-28(cie)-1(c)-276(nad)1(jad)1(\\241)-276(b)-27(\\246)-1(d)1(z)-1(ie)-276(to)-276(p)-27(oms)-1(to)28(w)28(anie,)-276(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(.)-275({)-276(A)-276(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)]TJ 0 -13.549 Td[(m)27(y)-333(n)1(icz)-1(ego)-334(n)1(ie)-1(win)1(o)28(w)27(ate!)-333(-)-1(n)1(arze)-1(k)56(a\\252a)-333(p\\252acz)-1(liwie.)]TJ 27.879 -13.549 Td[(A)-379(p)-27(otem)-379(s)-1(iad)1(\\252a)-379(na)-378(pr)1(o)-1(gu)-378(ob)-27(ory)84(,)-379(wsadzi\\252a)-379(c)27(h)1(\\252opak)28(o)28(wi)-379(w)-379(u)1(s)-1(ta,)-378(b)-28(o)-378(p)-28(op)1(\\252a-)]TJ -27.879 -13.55 Td[(kiw)28(a\\252,)-317(b)1(ia\\252\\241,)-317(p)-27(e)-1(\\252n)1(\\241)-317(pi)1(e)-1(r\\261)-317(i)-316(z)-318(tr)1(w)27(og\\241)-317(n)1(iez)-1(miern\\241)-316(s)-1(p)-27(ogl\\241d)1(a)-1(\\252a)-316(na)-317(kr)1(o)28(w)27(\\246)-317(rz\\246)-1(\\273\\241c)-1(\\241,)-316(to)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(op)1(\\252)-1(otk)1(i)-333(na)-333(drog\\246)-333(i)-333(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252a.)]TJ 27.879 -13.549 Td[(W)-333(pacierz)-334(ab)-27(o)-333(i)-334(d)1(w)27(a)-333(wpad)1(\\252a)-334(J\\363zia)-333(z)-334(kr)1(z)-1(yk)1(ie)-1(m,)-333(\\273)-1(e)-333(Jam)27(b)1(ro\\273)-1(y)-333(j)1(u\\273)-334(i)1(d\\241.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-281(i)-281(pr)1(z)-1(ysze)-1(d)1(\\252)-282(zaraz)-281(dziad)-280(m)-1(o\\273e)-282(stu)1(le)-1(tn)1(i,)-281(p)1(rost)27(y)-280(jak)-281(\\261wiec)-1(a,)-281(t)28(w)28(arz)-281(m)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(suc)27(h)1(\\241,)-361(p)-28(omarsz)-1(czon\\241)-361(jak)-361(k)56(artof)1(e)-1(l)-361(n)1(a)-362(zwie)-1(sn\\246)-361(i)-361(s)-1(zar\\241)-361(tak)56(\\241\\273)-1(,)-361(wygolon)1(\\241)-361(i)-361(p)-28(o)-28(ci\\246t\\241)]TJ 0 -13.55 Td[(sz)-1(ramami,)-412(w\\252os)-1(y)-411(bia\\252e)-412(jak)-411(m)-1(lek)28(o)-412(k)28(osm)27(yk)56(ami)-412(opad)1(a\\252y)-412(m)27(u)-411(na)-412(cz)-1(o\\252o)-412(i)-411(k)55(ar)1(k,)-412(b)-27(o)]TJ 0 -13.549 Td[(b)28(y\\252)-333(z)-334(go\\252\\241)-333(g\\252o)27(w)28(\\241.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(ed\\252)-333(pr)1(os)-1(to)-333(do)-333(kr)1(o)27(wy)-333(i)-333(dok)1(ume)-1(n)28(t)1(nie)-334(j)1(\\241)-333(o)-1(b)-27(ejrza\\252.)]TJ 335.807 -29.888 Td[(17)]TJ\nET\nendstream\nendobj\n71 0 obj <<\n/Type /Page\n/Contents 72 0 R\n/Resources 70 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n70 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n75 0 obj <<\n/Length 9331      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(18)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(Oho,)-333(wid)1(z)-1(\\246,)-333(\\273)-1(e)-334(\\261wie\\273)-1(e)-334(mi\\246s)-1(o)-333(jedl)1(i)-334(b)-27(\\246dzie)-1(t)1(a.)]TJ 0 -13.549 Td[({)-300(A)-301(d)1(y\\242)-301(j)1(e)-1(j)-300(p)-27(om\\363\\273)-1(cie)-301(co,)-300(w)-1(y)1(le)-1(k)1(ujcie,)-300(a)-301(to)-27(\\242)-301(kro)28(w)28(a)-301(ze)-301(trzysta)-300(z)-1(\\252ot)28(yc)27(h)-300(w)28(arta)]TJ -27.879 -13.549 Td[({)-269(i)-269(dop)1(ie)-1(r)1(o)-269(p)-28(o)-269(cie)-1(l)1(\\246)-1(ciu,)-269(a)-269(d)1(y\\242)-270(p)-27(om\\363\\273)-1(cie)-1(!)-269(O)-268(m)-1(\\363)-55(j)-269(Jez)-1(u,)-268(m)-1(\\363)-55(j)-269(Jez)-1(u)1(!)-269({)-270(za)28(w)27(o\\252a\\252a)-269(J\\363z)-1(i)1(a.)]TJ 27.879 -13.549 Td[(Am)27(b)1(ro\\273y)-256(w)-1(y)1(j\\241\\252)-256(z)-257(kies)-1(ze)-1(n)1(i)-256(pu)1(s)-1(zc)-1(zad\\252o,)-256(p)-27(o)27(w)28(e)-1(co)28(w)27(a\\252)-256(je)-257(p)-27(o)-256(c)27(h)1(ole)-1(wie,)-256(przyj)1(rza\\252)]TJ -27.879 -13.549 Td[(si\\246)-475(p)-27(o)-28(d)-473(z)-1(orz\\246)-475(ostrzu)-474(i)-474(p)1(rze)-1(ci\\241\\252)-474(gran)28(u)1(li)-474(ar)1(te)-1(r)1(ie)-475(p)-27(o)-28(d)-473(brzuc)28(hem)-475({)-474(ale)-474(krew)-474(nie)]TJ 0 -13.55 Td[(try)1(s)-1(n)1(\\246)-1(\\252a,)-333(a)-333(c)-1(iek\\252a)-333(w)27(oln)1(o)-333(c)-1(zarna,)-333(spi)1(e)-1(n)1(iona.)]TJ 27.879 -13.549 Td[(St)1(ali)-333(w)-1(szys)-1(cy)-333(dok)28(o\\252a)-333(p)-28(o)-27(c)27(h)28(yl)1(e)-1(n)1(i)-334(i)-333(p)1(atrzyli)-333(b)-27(e)-1(z)-333(o)-28(dd)1(e)-1(c)27(h)29(u.)]TJ 0 -13.549 Td[({)-334(Za)-334(p)-27(\\363\\271no!)-333(Oho,)-333(b)28(yd)1(l\\241tk)28(o)-334(ostatni)1(\\241)-334(par)1(\\246)-335(p)1(usz)-1(cz)-1(a)-333({)-334(rze)-1(k)1(\\252)-334(uro)-27(c)-1(zy\\261c)-1(ie)-334(Am-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(y)84(.)-302({)-303(Nic)-303(to,)-302(in)1(o)-303(p)1(as)-1(ku)1(dn)1(ik)-302(alb)-27(o)-303(i)-302(c)-1(o)-302(in)1(nego...)-302(trza)-303(b)28(y)1(\\252)-1(o)-302(z)-1(ar)1(az)-1(,)-302(ki)1(e)-1(j)-302(zac)27(hor)1(z)-1(a-)]TJ 0 -13.549 Td[(\\252a...)-334(al)1(e)-335(te)-334(bab)28(y)-334(t)1(o)-335(i)1(no)-334(ju)1(c)27(h)28(y)-333(do)-334(p\\252ak)56(ani)1(a)-334(s)-1(\\241)-334(m\\241dre,)-334(a)-334(jak)-333(trza)-334(radzi\\242,)-334(to)-334(w)-335(b)-27(ek)]TJ 0 -13.549 Td[(kiej)-406(o)27(w)28(ce)-1(.)-406({)-407(Sp)1(lun)1(\\241\\252)-407(p)-27(ogardl)1(iwie)-1(,)-406(obsz)-1(ed\\252)-406(kro)28(w)27(\\246,)-406(z)-1(a)-55(jrza\\252)-407(jej)-406(w)-407(o)-28(cz)-1(y)84(,)-407(p)1(rz)-1(y)1(jrza\\252)]TJ 0 -13.55 Td[(si\\246)-400(oz)-1(or)1(o)28(w)-1(i)1(,)-400(ob)1(tar\\252)-399(z)-1(akr)1(w)27(a)28(wione)-399(r\\246)-1(ce)-400(o)-399(jej)-399(m)-1(i\\246kk)56(\\241,)-399(l\\261ni\\241c\\241)-400(sk)28(\\363r\\246)-400(i)-399(zabiera\\252)-399(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-333(o)-28(d)1(e)-1(j)1(\\261)-1(cia.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(ten)-333(p)-27(o)-28(c)27(h)1(o)28(w)27(ek)-333(dzw)27(oni)1(\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(;)-333(zadzw)27(on)1(ita)-333(w)-334(gark)1(i)-333(s)-1(ami.)]TJ 0 -13.549 Td[({)-371(Ociec)-371(z)-372(An)29(tkiem)-1(!)-370({)-371(kr)1(z)-1(yk)1(n\\246\\252a)-371(J\\363z)-1(k)56(a)-371(i)-370(wybi)1(e)-1(g\\252)-371(n)1(a)-371(dr)1(og\\246)-372(n)1(apr)1(z)-1(ec)-1(i)1(w)-1(,)-370(b)-28(o)]TJ -27.879 -13.549 Td[(g\\252uc)28(h)28(y)83(,)-299(c)-1(i)1(\\246)-1(\\273ki)-300(tu)1(rk)28(ot)-300(r)1(oz)-1(leg\\252)-300(s)-1(i)1(\\246)-301(z)-300(dr)1(ugiej)-300(stron)29(y)-300(s)-1(t)1(a)27(wu)1(,)-300(gdzie)-300(z)-301(r)1(oz)-1(cz)-1(erwienion)1(e)-1(j)]TJ 0 -13.55 Td[(zorz)-1(am)-333(z)-1(ac)28(ho)-28(d)1(u)-333(kur)1(z)-1(a)28(wie)-334(cz)-1(ern)1(ia\\252)-333(d\\252ugi)-333(w)28(\\363z)-334(i)-333(k)28(onie.)]TJ 27.879 -13.549 Td[({)-316(T)83(atu)1(lu,)-316(a)-316(to.)1(..)-316(gran)1(ias)-1(ta)-316(j)1(u\\273)-316(z)-1(d)1(yc)27(h)1(a)-316({)-317(w)28(o\\252a\\252a,)-316(dob)1(ie)-1(ga)-55(j\\241c)-316(do)-316(o)-56(j)1(c)-1(a,)-315(kt\\363ry)]TJ -27.879 -13.549 Td[(skr\\246c)-1(a\\252)-390(w\\252a\\261)-1(n)1(ie)-390(na)-390(t\\246)-390(s)-1(tr)1(on\\246)-390(s)-1(ta)28(wu.)-389(An)28(tek)-390(s)-1(ze)-1(d)1(\\252)-390(w)-390(k)28(o\\253cu)-390(i)-390(p)-27(o)-28(d)1(trzym)27(y)1(w)27(a\\252,)-390(b)-27(o)]TJ 0 -13.549 Td[(wie\\271)-1(li)-333(d)1(\\252ug\\241)-333(s)-1(osn\\246.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(\\242)-333(b)28(yle)-334(cze)-1(go)-333(p)-28(o)-333(pr)1(\\363\\273)-1(n)1(icy)-334({)-333(mru)1(kn\\241\\252)-333(p)-28(o)-27(dcina)-55(j\\241c)-334(k)28(on)1(ie.)]TJ 0 -13.55 Td[({)-294(J)1(am)27(br)1(o\\273)-1(y)-293(pu)1(s)-1(zc)-1(zali)-293(krew)-294(i)-293(nic...)-293(i)-293(w)27(osk)-294(t)1(opion)28(y)-293(lal)1(i)-294(j)1(e)-1(j)-293(w)-294(gar)1(dzie)-1(l)-293(i)-293(nic...)]TJ -27.879 -13.549 Td[(i)-293(s\\363l..)1(.)-293(i)-292(nic...)-292(p)-28(ewnie)-293(p)1(as)-1(ku)1(dn)1(ik..)1(.Witek)-293(p)-27(eda\\252,)-293(co)-293(b)-27(oro)28(wy)-293(wygn)1(a\\252)-293(ic)27(h)-292(z)-293(z)-1(aga)-55(j\\363)28(w)]TJ 0 -13.549 Td[(i)-333(c)-1(o)-333(gran)29(ula)-333(zara)-334(si\\246)-334(p)-27(ok\\252ad)1(a\\252a)-334(i)-333(st\\246)-1(k)56(a\\252a,)-333(ja\\273e)-334(j\\241)-333(i)-333(pr)1(z)-1(y)1(gna\\252...)]TJ 27.879 -13.549 Td[({)-341(G)1(rani)1(as)-1(ta,)-340(na)-55(jlepsza)-341(kr)1(o)27(w)28(a,)-341(a\\273eb)28(y)-341(w)28(as,)-341(\\261c)-1(ierwy)84(,)-341(p)-27(okr)1(\\246)-1(ci\\252o,)-341(k)1(ie)-1(j)-340(tak)-340(pi)1(l-)]TJ -27.879 -13.549 Td[(n)28(u)1(jec)-1(ie!)-333({)-333(rz)-1(u)1(c)-1(i)1(\\252)-334(lejce)-334(syno)28(wi)-333(i)-333(z)-334(batem)-334(w)-333(gar\\261c)-1(i)-333(p)-27(obieg\\252)-334(p)1(rzo)-28(dem.)]TJ 27.879 -13.55 Td[(Bab)28(y)-244(si\\246)-245(r)1(oz)-1(st\\241)-28(pi)1(\\252y)83(,)-244(a)-244(Wi)1(te)-1(k)1(,)-244(kt\\363ry)-244(ca\\252y)-244(cz)-1(as)-244(c)-1(o\\261)-244(na)-55(jsp)-28(ok)28(o)-55(jn)1(ie)-1(j)-243(m)-1(a)-55(jstro)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-293(c)27(h)1(a\\252up)1(\\241,)-293(s)-1(k)28(o)-28(czy\\252)-294(w)-293(ogr\\363)-27(d)-293(i)-293(pr)1(z)-1(epad)1(\\252)-294(ze)-294(strac)27(h)29(u,)-293(n)1(a)27(w)28(e)-1(t)-293(Han)1(k)56(a)-294(p)-27(o)-28(d)1(nios\\252a)-293(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(p)1(rogu)-333(i)-333(s)-1(t)1(a\\252)-1(a)-333(b)-27(e)-1(zrad)1(na,)-333(s)-1(t)1(rw)27(o\\273ona.)]TJ 27.879 -13.549 Td[({)-228(Zmarno)28(w)28(ali)-228(mi)-228(b)28(yd)1(l\\246!...)-227({)-228(w)-1(y)1(krzykn)1(\\241\\252)-229(wr)1(e)-1(sz)-1(cie)-228(s)-1(tar)1(y)83(,)-228(ob)-27(ejrza)28(w)-1(szy)-228(kro)28(w)28(\\246)-1(.)]TJ -27.879 -13.549 Td[({)-373(T)84(rz)-1(y)1(s)-1(ta)-372(z)-1(\\252ot)28(yc)28(h)-373(j)1(ak)-372(w)-373(b\\252oto!)-372(Do)-373(miski)-372(to)-373(\\261c)-1(ierw)28(\\363)28(w)-373(a\\273)-373(g\\246)-1(sto,)-372(a)-373(p)1(rz)-1(y)1(pil)1(no)28(w)27(a\\242)]TJ 0 -13.55 Td[(ni)1(e)-301(m)-1(a)-300(kto.)-301(T)83(ak)56(a)-300(kro)28(w)27(a,)-300(tak)56(a)-301(kr)1(o)27(w)28(a!)-300(A)-301(to)-301(cz)-1(\\252o)28(wiek)-301(r)1(usz)-1(y\\242)-301(si\\246)-301(z)-301(dom)28(u)-301(n)1(ie)-301(mo\\273)-1(e,)]TJ 0 -13.549 Td[(b)-27(o)-334(zaraz)-334(szk)28(o)-28(da)-333(i)-333(up)1(adek...)]TJ 27.879 -13.549 Td[({)-361(D)1(y\\242)-361(ja)-360(o)-28(d)-360(p)-27(o\\252)-1(edn)1(ia)-360(s)-1(ame)-1(go)-360(b)28(y\\252am)-361(p)1(rzy)-361(k)28(op)1(aniu)1({)-361(t\\252u)1(m)-1(aczy\\252a)-361(si\\246)-361(c)-1(i)1(c)27(ho)]TJ -27.879 -13.549 Td[(Hank)56(a.)]TJ 27.879 -13.549 Td[({)-416(A)-417(b)-27(o)-417(t)28(y)-416(co)-417(ki)1(e)-1(j)-416(wid)1(z)-1(isz!)-417({)-416(krzykn)1(\\241\\252)-417(z)-417(w\\261c)-1(i)1(e)-1(k\\252o\\261c)-1(i)1(\\241.{)-417(A)-416(b)-27(o)-417(t)28(y)-416(s)-1(t)1(ois)-1(z)-417(o)]TJ -27.879 -13.549 Td[(mo)-56(j)1(e)-1(!.)1(..)-326(T)83(ak)55(a)-326(kr)1(o)27(w)28(a,)-326(taki)-326(haman,)-326(\\273e)-327(i)-326(dru)1(giej)-326(nie)-327(w)-326(k)56(a\\273)-1(d)1(ym)-327(dw)28(orze)-327(b)28(y)-326(znalaz\\252!)]TJ 27.879 -13.55 Td[(Wyr)1(z)-1(ek)56(a\\252)-491(c)-1(or)1(az)-491(\\273)-1(a\\252o\\261niej)-490(i)-491(ob)-27(c)27(h)1(o)-28(dzi\\252)-491(j)1(\\241,)-491(p)1(r\\363b)-27(o)28(w)27(a\\252)-491(p)-27(o)-28(d)1(nie\\261\\242)-1(,)-490(c)-1(i\\241)-27(ga\\252)-491(z)-1(a)]TJ -27.879 -13.549 Td[(ogon,)-233(z)-1(agl)1(\\241da\\252)-234(w)-234(z\\246)-1(b)29(y)83(,)-233(ale)-234(kro)28(w)28(a)-234(dy)1(s)-1(za\\252a)-234(c)27(h)1(rapl)1(iwie)-234(i)-234(coraz)-234(c)-1(i)1(\\246)-1(\\273e)-1(j)1(,)-234(kr)1(e)-1(w)-234(p)1(rze)-1(sta\\252a)]TJ 0 -13.549 Td[(p\\252y)1(n\\241\\242,)-334(t)28(y)1(lk)28(o)-334(k)1(rz)-1(ep\\252a)-333(w)-334(czarne,)-333(s)-1(p)1(iec)-1(zone)-334(\\273u\\273le)-334({)-333(wyra\\271nie)-333(ju)1(\\273)-334(z)-1(d)1(yc)27(h)1(a\\252a)]TJ 27.879 -13.549 Td[({)-410(Nie)-410(m)-1(a)-410(co,)-410(ino)-410(j)1(\\241)-410(trza)-411(d)1(orzn\\241\\242,)-410(c)27(h)1(o)-28(\\242)-411(t)28(yl)1(a)-411(si\\246)-410(w)-1(r)1(\\363)-28(ci!)-410({)-410(rze)-1(k\\252)-410(w)-410(k)28(o\\253cu,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(ni\\363s\\252)-437(k)28(os\\246)-437(z)-1(e)-437(sto)-28(d)1(o\\252y)83(,)-436(p)-28(o)-27(os)-1(tr)1(z)-1(y\\252)-436(j\\241)-436(nieco)-437(n)1(a)-437(tacz)-1(aln)1(iku)1(,)-437(co)-436(s)-1(ta\\252)-436(p)-28(o)-28(d)-436(ok)56(a-)]TJ 0 -13.55 Td[(p)-27(e)-1(m)-446(ob)-27(ory)84(,)-446(rozdzia\\252)-446(si\\246)-446(z)-1(e)-446(sp)-28(encerk)56(a,)-446(za)27(win)1(\\241\\252)-446(r\\246k)56(a)27(wy)-445(k)28(os)-1(zuli)-445(i)-446(zabr)1(a\\252)-446(s)-1(i)1(\\246)-447(d)1(o)]TJ 0 -13.549 Td[(zarz)-1(y)1(nan)1(ia...)]TJ\nET\nendstream\nendobj\n74 0 obj <<\n/Type /Page\n/Contents 75 0 R\n/Resources 73 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 60 0 R\n>> endobj\n73 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n78 0 obj <<\n/Length 9313      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(19)]TJ -335.807 -35.866 Td[(Hank)56(a)-266(z)-266(J\\363z)-1(i)1(\\241)-266(buc)28(hn)1(\\246)-1(\\252y)-266(p)1(\\252ac)-1(ze)-1(m,)-266(b)-27(o)-266(gran)28(u)1(la,)-266(j)1(akb)28(y)-266(cz)-1(u)1(j\\241c)-266(\\261)-1(mier\\242,)-266(un)1(ios\\252)-1(a)]TJ -27.879 -13.549 Td[(z)-342(t)1(rud)1(e)-1(m)-341(\\252e)-1(b)1(,)-341(za)-1(r)1(ycz)-1(a\\252a)-341(g\\252uc)28(ho)-341(i..)1(.)-341(pad)1(\\252a)-342(z)-341(pr)1(z)-1(erzni\\246t)28(ym)-341(gard\\252em)-1(,)-340(grz)-1(ebi)1(\\241c)-342(in)1(o)]TJ 0 -13.549 Td[(nogami.)1(..)-325(Pi)1(e)-1(s)-325(z)-1(l)1(iz)-1(y)1(w)27(a\\252)-325(kr)1(z)-1(epn)1(\\241c)-1(\\241)-325(n)1(a)-325(p)-27(o)27(wietrzu)-325(k)1(re)-1(w,)-324(a)-325(p)-28(otem)-325(s)-1(k)28(o)-28(czy\\252)-325(na)-325(d)1(o\\252y)]TJ 0 -13.549 Td[(o)-28(d)-311(k)56(arto\\015i)-311(i)-312(sz)-1(cz)-1(ek)56(a\\252)-312(na)-312(k)28(on)1(ie)-312(s)-1(to)-55(j\\241ce)-312(z)-313(w)28(oz)-1(em)-312(w)-312(op\\252otk)56(ac)27(h)1(,)-312(b)-27(o)-312(tam)-312(je)-312(zos)-1(ta)28(wi\\252)]TJ 0 -13.549 Td[(An)28(tek,)-333(a)-333(s)-1(am)-334(sp)-27(ok)28(o)-56(j)1(nie)-334(p)1(rzygl\\241d)1(a\\252)-334(si\\246)-334(j)1(atc)-1(e.)]TJ 27.879 -13.55 Td[({)-269(Ni)1(e)-270(b)1(ucz)-1(,)-268(g\\252up)1(ia!)-269(O)1(jco)27(w)28(a)-269(k)1(ro)28(w)27(a)-268(to)-269(ni)1(e)-269(nasz)-1(a)-269(strata)-268(p)-28(o)28(wiedzia\\252)-269(ze)-269(z)-1(\\252o\\261c)-1(i\\241)]TJ -27.879 -13.549 Td[(do)-314(\\273)-1(on)29(y)-315(i)-314(z)-1(ab)1(ra\\252)-315(si\\246)-315(do)-314(w)-1(y)1(prz\\246)-1(gan)1(ia)-315(i)-314(rozbi)1(e)-1(ran)1(ia)-315(k)28(on)1(i,)-314(kt\\363re)-315(j)1(u\\273)-315(Witek)-314(c)-1(i\\241)-27(g)-1(n)1(\\241\\252)]TJ 0 -13.549 Td[(za)-334(gr)1(z)-1(ywy)-333(do)-333(sta)-56(j)1(ni.)]TJ 27.879 -13.549 Td[({)-326(Zie)-1(mn)1(iak)28(\\363)28(w)-327(w)-326(p)-28(ol)1(u)-326(du)1(\\273)-1(o?)-326({)-326(z)-1(agad)1(n\\241\\252)-326(Boryn)1(a,)-326(m)27(yj)1(\\241c)-327(p)-27(o)-28(d)-326(stud)1(ni\\241)-326(r)1(\\246)-1(ce)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(oga\\242)-334(tam)-333(m)-1(a\\252o,)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(z)-1(e)-334(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(i)1(a)-334(w)28(ork)28(\\363)28(w'.)]TJ 0 -13.549 Td[({)-333(T)83(rze)-1(b)1(a)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(z)-1(wie\\271)-1(\\242.)]TJ 0 -13.55 Td[({)-402(Hale,)-401(z)-1(w)28(o\\271)-1(cie)-402(s)-1(e)-402(sam)-1(i)1(,)-402(j)1(a)-402(ju)1(\\273)-402(kulas\\363)28(w)-402(nie)-402(cz)-1(u)1(j\\246)-402(n)1(i)-402(kr)1(z)-1(y\\273a...)-401(a)-402(i)-401(lico)27(wy)]TJ -27.879 -13.549 Td[(ku)1(le)-1(j)1(e)-334(n)1(a)-334(p)1(rz)-1(edn)1(i\\241.)]TJ 27.879 -13.549 Td[({)-408(J\\363z)-1(k)56(a,)-408(zw)27(o\\252a)-55(j)-408(no)-408(Ku)1(b)-28(\\246)-408(o)-28(d)-408(k)28(opan)1(ia,)-408(ni)1(e)-1(c)28(h)-408(\\271)-1(r)1(\\363bk)28(\\246)-409(za\\252o\\273)-1(y)-408(za)-408(lico)27(w)28(e)-1(go)-408(i)]TJ -27.879 -13.549 Td[(trza)-333(dzis)-1(i)1(a)-56(j)-333(zw)-1(i)1(e)-1(\\271\\242)-1(.)-333({)-333(Des)-1(zc)-1(z)-334(an)1(o)-333(b)28(y\\242)-334(mo\\273)-1(e.)]TJ 27.879 -13.549 Td[(Ale)-379(wrza\\252)-379(z\\252o\\261)-1(ci\\241)-378(i)-379(zmart)28(wie)-1(n)1(iem)-1(,)-378(b)-27(o)-379(coraz)-379(to)-378(pr)1(z)-1(ysta)28(w)27(a\\252)-378(pr)1(z)-1(ed)-378(kro)28(w)28(\\241)-379(i)]TJ -27.879 -13.55 Td[(kl\\241\\252)-249(s)-1(i)1(arc)-1(zy\\261c)-1(i)1(e)-1(,)-249(a)-250(p)-27(otem)-250(\\252az)-1(i\\252)-249(p)-28(o)-249(p)-28(o)-27(dw)28(\\363rzu)-250(i)-249(zagl\\241da\\252)-249(to)-250(d)1(o)-250(ob)-27(ory)84(,)-250(to)-249(do)-249(s)-1(t)1(o)-28(do\\252y)84(,)]TJ 0 -13.549 Td[(to)-333(p)-28(o)-27(d)-333(s)-1(zop)-28(\\246)-333(i)-333(s)-1(am)-334(n)1(ie)-334(wiedzia\\252,)-333(c)-1(zego)-334(sz)-1(u)1(k)55(a,)-333(\\273ar\\252a)-333(go)-334(an)1(o)-333(tak)55(a)-333(strata.)]TJ 27.879 -13.549 Td[({)-248(Witek!)-248(Witek!)-248({)-249(j)1(\\241\\252)-249(w)28(o\\252a\\242)-249(i)-248(o)-28(dp)1(ina\\252)-248(s)-1(ze)-1(r)1(oki)-248(rze)-1(mie\\253)-248(z)-249(bio)-27(der,)-248(ale)-249(c)27(h)1(\\252opak)]TJ -27.879 -13.549 Td[(si\\246)-334(ni)1(e)-334(p)-27(ok)55(aza\\252.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-356(si\\246)-355(p)-28(or)1(oz)-1(c)28(ho)-28(d)1(z)-1(il)1(i,)-355(b)-27(o)-355(rozumieli,)-355(\\273e)-355(tak)56(a)-355(s)-1(zk)28(o)-28(da)-354(i)-355(tak)56(a)-355(m)-1(ar)1(k)28(otno\\261\\242)]TJ -27.879 -13.55 Td[(m)27(u)1(s)-1(i)-352(s)-1(i\\246)-353(s)-1(k)28(o\\253)1(c)-1(zy\\242)-354(b)1(itk)56(\\241,)-353(jak)28(o)-353(\\273e)-354(d)1(o)-353(niej)-353(Boryn)1(a)-353(b)28(y\\252)-353(s)-1(k)28(or)1(y)-353(z)-1(azwyc)-1(za)-56(j)1(,)-353(ale)-353(s)-1(tar)1(y)]TJ 0 -13.549 Td[(kl\\241\\252)-333(t)28(ylk)28(o)-333(dzisia)-56(j)-333(i)-333(p)-27(osz)-1(ed\\252)-333(do)-333(izb)28(y)83(.)]TJ 27.879 -13.549 Td[({)-375(Hank)56(a,)-375(a)-376(d)1(a)-56(j)-375(n)1(o)-375(je\\261)-1(\\242!)-375({)-376(kr)1(z)-1(y)1(kn\\241\\252)-375(na)-375(s)-1(y)1(no)28(w)27(\\241)-375(w)-376(ot)28(w)28(arte)-375(okno)-375(i)-375(p)-28(osze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(na)-333(sw)27(o)-55(j\\241)-333(s)-1(tr)1(on\\246.)]TJ 27.879 -13.549 Td[(Dom)-468(b)28(y\\252)-467(z)-1(wyk\\252y)84(,)-468(kmiec)-1(y)-467({)-468(pr)1(z)-1(edzielon)28(y)-468(n)1(a)-468(p)1(rz)-1(estrza\\252)-468(s)-1(ieni)1(\\241)-468(ogromn\\241;)]TJ -27.879 -13.55 Td[(sz)-1(cz)-1(yt)1(e)-1(m)-304(wyc)27(h)1(o)-28(dzi\\252)-304(n)1(a)-304(p)-27(o)-28(dw)28(\\363rze)-1(,)-303(a)-304(f)1(ron)28(tem)-304(c)-1(ztero)-28(oki)1(e)-1(n)1(n)28(ym)-304(na)-303(s)-1(ad)-303(i)-303(na)-304(d)1(rog\\246.)]TJ 27.879 -13.549 Td[(Jedn)1(\\241)-346(p)-28(o\\252o)28(w)28(\\246)-347(o)-28(d)-345(ogro)-27(du)-345(z)-1(a)-55(jmo)27(w)28(a\\252)-346(Boryn)1(a)-346(z)-347(J)1(\\363z)-1(i\\241,)-345(a)-346(na)-346(d)1(ru)1(gie)-1(j)-345(s)-1(i)1(e)-1(d)1(z)-1(ieli)]TJ -27.879 -13.549 Td[(An)28(tk)28(o)28(wie.)-334(P)29(arob)-27(e)-1(k)-333(z)-334(p)1(as)-1(tu)1(c)27(h)1(e)-1(m)-333(s)-1(yp)1(iali)-333(pr)1(z)-1(y)-333(k)28(on)1(iac)27(h)1(.)]TJ 27.879 -13.549 Td[(W)-281(izbie)-281(b)28(y\\252o)-281(ju)1(\\273)-282(cz)-1(ar)1(nia)28(w)28(o,)-282(b)-27(o)-281(pr)1(z)-1(ez)-282(ma\\252e)-282(okienk)56(a,)-281(p)1(rzys)-1(\\252on)1(i\\246)-1(te)-281(ok)56(ap)-28(em)-282(i)]TJ -27.879 -13.549 Td[(zaga)-56(jon)1(e)-282(dr)1(z)-1(ew)27(ami,)-281(m)-1(a\\252o)-281(prze)-1(cisk)56(a\\252)-1(o)-281(s)-1(i)1(\\246)-283(\\261wiat\\252a,)-281(a)-282(i)-281(m)-1(r)1(o)-28(c)-1(za\\252o)-282(j)1(u\\273)-282(na)-281(\\261)-1(wiec)-1(i)1(e)-1(,)-281(\\273)-1(e)]TJ 0 -13.55 Td[(t)28(ylk)28(o)-346(p)-27(o\\252ys)-1(k)1(iw)27(a\\252y)-346(sz)-1(k\\252a)-346(obr)1(az)-1(\\363)28(w)-346(\\261)-1(wi\\246t)28(yc)27(h)1(,)-347(co)-346(rz\\246)-1(d)1(e)-1(m)-346(c)-1(ze)-1(r)1(ni\\252y)-346(si\\246)-347(na)-346(b)1(ie)-1(l)1(on)28(yc)27(h)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(ac)27(h)1(;)-293(izba)-293(b)28(y\\252a)-293(d)1(u\\273a,)-293(ale)-293(pr)1(z)-1(ygn)1(iec)-1(ion)1(a)-293(c)-1(zarn)29(ym)-294(p)1(u\\252ap)-27(e)-1(m)-293(i)-293(ogr)1(om)-1(n)29(ym)-1(i)-292(b)-28(el-)]TJ 0 -13.549 Td[(k)56(am)-1(i)-230(p)-27(o)-28(d)-230(n)1(im,)-230(i)-230(tak)-230(z)-1(asta)28(wiona)-230(r\\363\\273n)28(ym)-230(s)-1(p)1(rz\\246)-1(tem)-1(,)-230(\\273e)-231(t)28(yl)1(k)28(o)-231(k)28(o\\252o)-230(wielkiego)-230(k)28(om)-1(in)1(a)]TJ 0 -13.549 Td[(z)-334(ok)56(ap)-27(e)-1(m,)-333(c)-1(o)-333(s)-1(t)1(a\\252)-334(p)1(rz)-1(y)-333(sienn)1(e)-1(j)-333(\\261c)-1(i)1(anie,)-333(b)28(y\\252o)-333(niec)-1(o\\261)-333(s)-1(w)28(ob)-28(o)-27(dnego)-333(m)-1(i)1(e)-1(j)1(s)-1(ca.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-469(si\\246)-469(rozz)-1(u)1(\\252)-469(i)-468(p)-27(os)-1(ze)-1(d)1(\\252)-469(do)-468(c)-1(i)1(e)-1(mnego)-469(al)1(kierz)-1(a,)-468(zam)27(yk)56(a)-55(j\\241c)-469(d)1(rz)-1(wi)-468(z)-1(a)]TJ -27.879 -13.549 Td[(sob\\241,)-365(o)-28(d)1(s)-1(u)1(n\\241\\252)-365(\\273)-366(ma\\252e)-1(j)-364(s)-1(zybk)1(i)-365(des)-1(k)28(\\246,)-365(\\273)-1(e)-365(z)-1(ac)27(h)1(o)-28(d)1(nie)-365(\\261)-1(wiat\\252o)-365(kr)1(w)27(a)28(wym)-366(b)1(rzas)-1(ki)1(e)-1(m)]TJ 0 -13.55 Td[(zala\\252o)-334(al)1(kie)-1(r)1(z)-1(.)]TJ 27.879 -13.549 Td[(Iz)-1(d)1(e)-1(b)1(k)56(a)-290(p)-28(e\\252na)-290(b)28(y)1(\\252)-1(a)-290(r)1(\\363\\273)-1(n)29(yc)27(h)-289(rup)1(iec)-1(i)-290(i)-290(statk)28(\\363)28(w)-290(gos)-1(p)-27(o)-28(d)1(arskic)27(h)1(,)-290(na)-290(d)1(r\\241\\273k)55(ac)28(h,)]TJ -27.879 -13.549 Td[(w)-395(p)-28(op)1(rze)-1(k)-395(p)1(rze)-1(wies)-1(zon)28(yc)28(h,)-395(wisia\\252y)-395(k)28(o\\273uc)28(h)28(y)83(,)-394(c)-1(ze)-1(r)1(w)27(on)1(e)-396(pasiaste)-396(w)28(e\\252)-1(n)1(iaki)1(,)-395(bia\\252e)]TJ 0 -13.549 Td[(sukman)28(y)84(,)-382(to)-383(ca\\252e)-383(p)-27(\\246)-1(ki)-382(motk)28(\\363)28(w)-383(sz)-1(ar)1(e)-1(j)-382(p)1(rz\\246)-1(d)1(z)-1(y)-382(i)-382(zw)-1(i)1(ni\\246te)-383(w)-382(k\\252\\246)-1(b)28(y)-382(b)1(ru)1(dne)-382(run)1(a)]TJ 0 -13.549 Td[(o)28(wie)-1(c)-448(i)-447(w)28(orki)-447(z)-448(p)1(ierze)-1(m.)-447(Wyci\\241)-28(gn\\241\\252)-447(bi)1(a\\252\\241)-448(sukman\\246)-447(i)-448(p)1(as)-448(cz)-1(erw)28(on)28(y)83(,)-447(a)-447(p)-27(ote)-1(m)]TJ 0 -13.55 Td[(d\\252u)1(go)-382(cz)-1(ego\\261)-382(sz)-1(u)1(k)55(a\\252)-381(w)-382(b)-27(e)-1(cz)-1(k)56(ac)27(h)-381(n)1(ap)-28(e\\252ni)1(on)28(yc)27(h)-381(zb)-27(o\\273)-1(em)-1(,)-381(to)-381(w)-382(k)56(\\241c)-1(ie)-381(p)-28(o)-28(d)-381(stose)-1(m)]TJ 0 -13.549 Td[(staryc)28(h)-365(rze)-1(mieni)-365(i)-365(\\273e)-1(last)28(w)27(a,)-364(a\\273)-366(us\\252ysz)-1(a)28(ws)-1(zy)-365(Hank)28(\\246)-365(w)-366(p)1(ie)-1(r)1(w)-1(sze)-366(izbie,)-365(zac)-1(i\\241)-27(gn\\241\\252)]TJ\nET\nendstream\nendobj\n77 0 obj <<\n/Type /Page\n/Contents 78 0 R\n/Resources 76 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n76 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n82 0 obj <<\n/Length 9264      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(20)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(desk)28(\\246)-334(na)-333(okienk)28(o)-333(i)-333(z)-1(n)1(o)28(w)-1(u)-333(co\\261)-334(d)1(\\252ugo)-333(grze)-1(b)1(a\\252)-334(w)-333(z)-1(b)-27(o\\273)-1(u)1(.)]TJ 27.879 -13.549 Td[(A)-268(n)1(a)-268(\\252a)27(wie)-268(p)-27(o)-28(d)-267(oknem)-268(ju\\273)-268(si\\246)-268(dymi\\252o)-268(j)1(ad\\252o;)-268(o)-28(d)-267(ogromnego)-268(t)28(ygla)-268(z)-268(k)56(apu)1(s)-1(t\\241)]TJ -27.879 -13.549 Td[(rozc)27(h)1(o)-28(dzi\\252)-263(si\\246)-263(z)-1(ap)1(ac)27(h)-262(s\\252)-1(on)1(in)28(y)84(,)-263(j)1(ak)-263(o)-27(d)-263(j)1(a)-56(j)1(e)-1(cz)-1(n)1(icy)83(,)-262(kt\\363rej)-262(niez)-1(gor)1(s)-1(za)-263(mise)-1(cz)-1(k)56(a)-263(sta\\252a)]TJ 0 -13.549 Td[(ob)-27(ok.)]TJ 27.879 -13.549 Td[({)-241(Gdzie)-242(Wi)1(te)-1(k)-241(pas\\252)-242(k)1(ro)28(w)-1(y)1(?)-242({)-241(z)-1(ap)28(yt)1(a\\252)-1(,)-241(kr)1(a)-56(j)1(\\241c)-242(p)-28(ot)1(\\246)-1(\\273n)28(y)-241(glon)-241(c)27(h)1(le)-1(b)1(a)-242(z)-242(b)-27(o)-28(c)28(hna)]TJ -27.879 -13.55 Td[(jak)-333(p)1(rze)-1(tak)-333(wielkiego.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(d)1(w)27(or)1(s)-1(ki)1(c)27(h)-333(zaga)-56(j)1(ac)27(h)-333(i)-333(b)-28(or)1(o)28(w)-1(y)-333(go)-333(s)-1(t)1(am)27(t\\241d)-333(wygon)1(i\\252.)]TJ 0 -13.549 Td[({)-333(\\221cie)-1(r)1(wy)83(,)-333(zm)-1(ar)1(no)28(w)27(al)1(i)-334(mi)-333(b)28(yd)1(l\\246.)]TJ 0 -13.549 Td[({)-281(Pr)1(z)-1(ec)-1(i)1(\\246)-1(c)27(h)1(,)-281(t)28(ylo)-281(k)1(ro)28(w)27(a,)-281(to)-281(si\\246)-281(z)-1(\\252ac)27(h)1(a\\252a)-281(w)-282(t)28(ym)-281(goni)1(e)-1(n)1(iu,)-281(\\273e)-282(si\\246)-281(w)-282(n)1(iej)-281(c)-1(osik)]TJ -27.879 -13.549 Td[(zapali\\252o.)]TJ 27.879 -13.549 Td[({)-237(Dziadaki)1(,)-237(psiekrwie.)-237(P)28(a\\261niki)-236(s)-1(\\241)-237(nasz)-1(e,)-237(w)-237(tab)-27(e)-1(li)-237(stoi)-237(ki)1(e)-1(j)-236(w)27(\\363\\252)-237(a)-237(one)-237(c)-1(i\\246giem)]TJ -27.879 -13.55 Td[(wygani)1(a)-56(j)1(\\241)-334(i)-333(p)-27(e)-1(d)1(a)-56(j)1(\\241,)-334(co)-333(ic)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(Dru)1(gic)27(h)-333(te\\273)-334(p)-27(o)28(w)-1(y)1(ganiali)1(,)-334(a)-333(c)27(h)1(\\252opak)56(a)-333(W)83(alk)28(o)28(w)28(e)-1(go)-333(tak)-333(z)-1(b)1(i\\252,)-333(tak)-333(z)-1(b)1(i\\252...)]TJ 0 -13.549 Td[({)-333(Ha!)-333(do)-333(s)-1(\\241d)1(u)-333(trza)-334(ab)-27(o)-333(i)-333(do)-333(k)28(om)-1(i)1(s)-1(arza.)-333(T)83(rzysta)-334(z\\252ot)28(yc)27(h)-333(w)28(arta,)-333(j)1(ak)-333(nic.)]TJ 0 -13.549 Td[({)-397(P)28(ew)-1(n)1(ie,)-397(p)-28(ewnie)-397({)-397(przytak)1(iw)27(a\\252a)-397(rad)1(a)-397(niez)-1(miern)1(ie)-1(,)-396(\\273)-1(e)-397(o)-28(c)-1(i)1(e)-1(c)-398(si\\246)-397(ud)1(obru)1(-)]TJ -27.879 -13.549 Td[(c)27(h)1(ali.)]TJ 27.879 -13.55 Td[({)-362(P)29(o)27(wiedzcie)-362(An)28(tk)28(o)28(wi,)-361(\\273)-1(e)-362(sk)28(oro)-361(z)-1(iem)-1(n)1(iaki)-361(zw)-1(i)1(e)-1(z\\241,)-362(t)1(o)-362(ni)1(e)-1(c)28(h)-362(si\\246)-362(w)28(e)-1(zm\\241)-362(do)]TJ -27.879 -13.549 Td[(kr)1(o)27(wy)84(,)-318(tr)1(z)-1(a)-317(j\\241)-317(ob\\252u)1(pi\\242)-318(i)-317(p)-27(o)-28(\\242)-1(wierto)28(w)28(a\\242)-1(.)-317(Pr)1(z)-1(yn)1(d\\246)-318(o)-27(d)-317(w)27(\\363)-55(jta,)-317(to)-318(w)28(ama)-318(p)-27(om)-1(og\\246.)-317(W)]TJ 0 -13.549 Td[(s\\241s)-1(ieku)-231(u)-230(b)-28(elki)-231(j)1(\\241)-231(p)-28(o)28(wies)-1(i\\242)-231({)-231(b)-28(\\246dzie)-232(p)1(rze)-1(spiecz)-1(n)1(ie)-232(o)-28(d)1(e)-232(p)1(s)-1(\\363)28(w)-231(le)-1(b)-27(o)-231(jensz)-1(ej)-231(gad)1(z)-1(in)29(y)83(..)1(.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zy\\252)-338(w)-1(r)1(yc)27(h)1(le)-339(je\\261)-1(\\242)-339(i)-338(ws)-1(t)1(a\\252)-1(,)-338(b)28(y)1(c)27(h)-338(s)-1(i)1(\\246)-339(niec)-1(o)-338(przy)28(ogarn)1(\\241\\242)-1(,)-338(ale)-339(tak)1(ie)-339(o)-28(ci\\241-)]TJ -27.879 -13.549 Td[(\\273e)-1(n)1(ie)-304(p)-27(o)-28(cz)-1(u)1(\\252)-303(w)-303(s)-1(ob)1(ie)-1(,)-302(takie)-303(c)-1(i)1(\\241)-28(gotki)-302(w)-304(k)28(o\\261c)-1(i)1(ac)27(h,)-302(tak)56(\\241)-303(s)-1(enn)1(o\\261)-1(\\242,)-303(\\273e)-304(j)1(ak)-303(sta\\252,)-303(rzuci\\252)]TJ 0 -13.55 Td[(si\\246)-334(na)-333(\\252\\363\\273k)28(o)-334(b)28(y)-333(si\\246)-334(z)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-334(pr)1(z)-1(edrzyma\\242)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-303(p)-27(osz)-1(\\252a)-303(na)-302(s)-1(w)28(o)-56(j)1(\\241)-303(s)-1(tr)1(on\\246)-303(i)-303(kr)1(z)-1(\\241ta\\252a)-303(si\\246)-303(p)-28(o)-303(i)1(z)-1(b)1(ie)-1(,)-302(i)-303(c)-1(or)1(az)-304(t)1(o)-303(w)-1(y)1(c)27(h)28(yl)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-348(pr)1(z)-1(ez)-348(okn)1(o)-348(sp)-27(o)-56(jr)1(z)-1(e\\242)-348(na)-347(An)28(tk)56(a,)-347(kt\\363r)1(y)-348(p)-27(o\\273ywia\\252)-348(si\\246)-348(n)1(a)-348(gan)1(ku)1(,)-348(p)1(rze)-1(d)-347(d)1(om)-1(em;)]TJ 0 -13.549 Td[(o)-28(d)1(s)-1(ad)1(z)-1(i\\252)-453(s)-1(i)1(\\246)-454(o)-28(d)-453(miski)-453(ob)28(ycz)-1(a)-55(jni)1(e)-454(i)-453(z)-454(w)27(ol)1(na)-453(c)-1(i\\241)-27(gn\\241\\252)-453(\\252)-1(y)1(\\273)-1(k)28(\\246)-454(za)-453(\\252)-1(y)1(\\273)-1(k)56(\\241,)-453(s)-1(k)1(rz)-1(y)1(bi\\241c)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(o)-431(o)-430(wr\\246b)28(y)-431(i)-430(sp)-28(oziera)-55(j\\241c)-431(cz)-1(asam)-1(i)-430(p)1(rz)-1(ed)-430(s)-1(i)1(\\246)-431(na)-430(s)-1(ta)28(w)-431({)-430(b)-27(o)-431(zac)27(h\\363)-27(d)-430(ju\\273)-430(b)28(y\\252)]TJ 0 -13.55 Td[(i)-396(na)-397(w)28(o)-28(d)1(z)-1(ie)-397(cz)-1(y)1(ni\\252y)-396(s)-1(i)1(\\246)-398(z\\252otopu)1(rp)1(uro)28(w)28(e)-397(t\\246)-1(cz)-1(e)-397(i)-396(p\\252omienn)1(e)-397(k)28(olis)-1(k)56(a,)-396(pr)1(z)-1(ez)-397(kt\\363re)]TJ 0 -13.549 Td[(ni)1(b)28(y)-466(bi)1(a\\252)-1(e)-466(c)27(hm)28(ur)1(ki)-466(pr)1(z)-1(ep\\252yw)28(a\\252y)-466(z)-467(g\\246gote)-1(m)-466(g\\246)-1(si,)-466(rozlew)27(a)-55(j\\241c)-467(d)1(z)-1(iob)1(ami)-466(s)-1(zn)28(ur)1(y)]TJ 0 -13.549 Td[(kr)1(w)27(a)28(wyc)27(h)-333(p)-27(ere)-1(\\252.)]TJ 27.879 -13.549 Td[(Wie\\261)-322(zac)-1(zyn)1(a\\252a)-322(si\\246)-322(mro)28(wi\\242)-321(i)-321(w)-1(r)1(z)-1(e\\242)-322(ru)1(c)27(h)1(e)-1(m;)-321(na)-321(dr)1(o)-28(dze)-322(z)-321(obu)-321(stron)-320(s)-1(ta)28(wu,)]TJ -27.879 -13.549 Td[(ci\\241)-28(gle)-316(p)-28(o)-27(dnosi\\252y)-316(si\\246)-317(k)1(urza)28(wy)-316(i)-316(tur)1(k)28(ot)28(y)-316(w)27(oz\\363)28(w)-1(,)-315(i)-316(p)-28(or)1(ykiw)28(ani)1(a)-316(kr\\363)28(w,)-316(kt\\363re)-316(w)27(c)28(ho-)]TJ 0 -13.55 Td[(dzi\\252y)-367(do)-368(sta)28(wu)-368(p)-27(o)-368(k)28(ol)1(ana,)-367(pi\\252y)-367(w)27(oln)1(o)-368(i)-367(p)-28(o)-27(dn)1(os)-1(i\\252y)-367(c)-1(i)1(\\246)-1(\\273kie)-368(\\252b)28(y)84(,)-368(a\\273)-368(cie)-1(n)1(kie)-368(stru)1(gi)]TJ 0 -13.549 Td[(w)28(o)-28(dy)84(,)-333(nib)29(y)-334(b)1(icz)-1(e)-334(op)1(ali,)-333(op)1(ada\\252y)-333(im)-334(z)-333(s)-1(ze)-1(r)1(okic)27(h)-333(g\\246bu)1(l.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie\\261,)-346(o)-28(d)-346(d)1(rugi)1(e)-1(go)-346(k)28(o\\253ca)-346(s)-1(ta)28(wu,)-345(s)-1(\\252yc)28(ha\\242)-347(b)29(y\\252o)-346(trzas)-1(k)-346(ki)1(janek)-346(b)1(ab)-346(pior)1(\\241-)]TJ -27.879 -13.549 Td[(cyc)27(h)-333(i)-333(g\\252uc)28(h)28(y)84(,)-334(monot)1(onn)28(y)-333(\\252op)-27(ot)-334(cep)-28(\\363)28(w)-334(w)-333(jak)1(ie)-1(j)1(\\261)-334(s)-1(t)1(o)-28(dole.)]TJ 27.879 -13.549 Td[({)-488(An)29(te)-1(k)1(,)-488(u)1(r\\241b)-487(no)-487(pie\\253k)28(\\363)28(w,)-487(b)-28(o)-487(s)-1(ama)-488(n)1(ie)-488(p)-27(orad)1(z)-1(\\246-)-1(p)1(rosi\\252a)-488(n)1(ie)-1(\\261mia\\252o)-488(i)-487(z)]TJ -27.879 -13.549 Td[(oba)28(w)28(\\241,)-333(b)-28(o)-333(ni)1(c)-334(to)-333(nie)-334(b)29(y\\252o)-334(u)-332(niego)-334(skl\\241\\242)-333(ab)-28(o)-333(i)-333(z)-1(b)1(i\\242)-334(z)-334(l)1(e)-1(d)1(a)-334(p)-27(o)28(w)27(o)-27(du.)]TJ 27.879 -13.55 Td[(Nie)-396(o)-28(d)1(rze)-1(k\\252)-396(n)1(a)28(w)27(et,)-396(j)1(akb)28(y)-395(nie)-396(s\\252ys)-1(za\\252,)-396(\\273e)-396(ona)-396(n)1(ie)-396(\\261)-1(mia\\252a)-396(p)-27(o)28(wt\\363rzy\\242)-396(i)-396(ju)1(\\273)]TJ -27.879 -13.549 Td[(sam)-1(a)-442(p)-27(os)-1(z\\252a)-442(ud)1(z)-1(iab)29(yw)27(a\\242)-442(trzas)-1(k)1(i)-442(z)-443(p)1(ni)-442({)-442(i)-442(milcz)-1(a\\252)-442(z\\252y)83(,)-442(zm\\246)-1(cz)-1(on)28(y)-441(c)-1(a\\252o)-28(d)1(z)-1(ienn)1(\\241)]TJ 0 -13.549 Td[(pr)1(ac)-1(\\241)-366(s)-1(ro)-27(dze)-1(,)-366(i)-367(pat)1(rz)-1(y)1(\\252)-367(te)-1(r)1(az)-368(n)1(a)-367(sta)28(w)-1(,)-366(na)-367(d)1(ru)1(g\\241)-367(s)-1(tr)1(on\\246,)-367(w)-367(d)1(u\\273y)-367(dom,)-367(\\261wiec)-1(\\241cy)]TJ 0 -13.549 Td[(bi)1(a\\252ym)-1(i)-497(\\261c)-1(i)1(anami)-498(i)-497(sz)-1(y)1(bami)-497(okien,)-497(b)-27(o)-498(zac)27(h\\363)-27(d)-497(bi\\252)-497(w)-498(n)1(ie)-1(go.)-497(P)29(\\246)-1(ki)-497(cz)-1(erw)28(on)28(yc)27(h)]TJ 0 -13.549 Td[(georgin)1(ii)-389(wyc)27(h)28(y)1(la\\252y)-389(si\\246)-390(zz)-1(a)-389(k)56(amiennego)-389(p\\252otu)-388(i)-389(pal)1(i\\252y)-389(jaskra)28(w)28(o)-389(na)-389(tle)-389(\\261)-1(cian)1(,)-389(a)]TJ 0 -13.55 Td[(pr)1(z)-1(ed)-416(c)27(h)1(a\\252)-1(u)1(p\\241,)-416(w)-417(sadzie)-1(,)-416(to)-416(m)-1(i\\246dzy)-416(op\\252otk)56(ami)-417(u)28(wij)1(a\\252a)-417(si\\246)-417(wys)-1(ok)56(a)-416(p)-28(osta\\242)-1(,)-416(ale)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(y)-317(r)1(oz)-1(ez)-1(n)1(a\\242)-318(ni)1(e)-318(mo\\273)-1(n)1(a)-318(b)29(y\\252o,)-317(b)-28(o)-317(co)-318(c)28(h)28(wila)-317(gin)1(\\246)-1(\\252a)-317(w)-318(sieni,)-317(to)-317(p)-27(o)-28(d)-317(d)1(rze)-1(w)28(am)-1(i)1(.)]TJ\nET\nendstream\nendobj\n81 0 obj <<\n/Type /Page\n/Contents 82 0 R\n/Resources 80 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n80 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n85 0 obj <<\n/Length 8705      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(21)]TJ -335.807 -35.866 Td[({)-294(\\221p)1(i\\241)-294(s)-1(e)-294(kiej)-294(dziedzic)-1(,)-294(a)-294(t)28(y)84(,)-294(par)1(obku)1(,)-294(r\\363b)-294({)-294(mru)1(kn\\241\\252)-294(z)-1(e)-294(z)-1(\\252o\\261c)-1(i)1(\\241,)-294(b)-28(o)-294(o)-55(jco)27(w)28(e)]TJ -27.879 -13.549 Td[(c)27(h)1(rap)1(anie)-334(r)1(oz)-1(lega\\252o)-333(s)-1(i\\246)-333(a\\273)-334(na)-333(gank)1(u.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(ed\\252)-333(na)-333(p)-27(o)-28(dw)28(\\363rze)-334(i)-333(raz)-334(j)1(e)-1(sz)-1(cze)-334(pr)1(z)-1(yj)1(rza\\252)-334(si\\246)-334(kr)1(o)27(wie.)]TJ 0 -13.549 Td[({)-430(Ju)1(\\261)-1(cik,)-429(o)-56(j)1(c)-1(o)28(w)28(a)-430(kr)1(o)27(w)28(a)-430(ale)-430(i)-429(nasz)-1(a)-429(s)-1(tr)1(ata)-430({)-430(r)1(z)-1(ek\\252)-430(d)1(o)-430(\\273)-1(on)29(y)83(,)-429(kt\\363ra,)-429(\\273)-1(e)-430(to)]TJ -27.879 -13.549 Td[(Ku)1(ba)-333(pr)1(z)-1(ywi\\363z\\252)-334(ziem)-1(n)1(iaki)-333(z)-334(p)-27(ola,)-333(rzuci\\252a)-333(\\252upan)1(ie)-334(d)1(rze)-1(w)28(a)-334(i)-333(sz)-1(\\252a)-333(do)-333(w)28(oz)-1(a.)]TJ 27.879 -13.55 Td[({)-333(Do\\252y)-333(jes)-1(zc)-1(ze)-334(ni)1(e)-334(wyp)-28(or)1(z)-1(\\241d)1(z)-1(on)1(e)-1(,)-333(to)-333(trza)-333(z)-1(es)-1(u)1(\\242)-334(na)-333(klepi)1(s)-1(k)28(o.)]TJ 0 -13.549 Td[({)-265(K)1(ie)-1(j)-264(o)-27(c)-1(iec)-265(m\\363)27(wil)1(i,)-264(\\273)-1(eb)28(y\\261)-265(n)1(a)-265(kl)1(e)-1(p)1(is)-1(k)1(u)-265(k)1(ro)28(w)27(\\246)-265(z)-265(K)1(ub)1(\\241)-265(ob)-27(dar\\252)-264(i)-264(w)-1(y)1(p)-28(or)1(z)-1(\\241d)1(z)-1(i\\252.)]TJ 0 -13.549 Td[({)-341(Zm)-1(ie\\261c)-1(i)-341(si\\246)-342(i)-341(kr)1(o)27(w)28(a,)-341(z)-1(mies)-1(zc)-1(z\\241)-341(s)-1(i\\246)-341(i)-341(z)-1(iemniak)1(i-)-1(sze)-1(p)1(ta\\252)-342(Ku)1(ba,)-341(ot)28(wiera)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(wierz)-1(eje)-333(s)-1(to)-28(d)1(o\\252y)-333(na)-333(ro\\261c)-1(ie\\273.)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(t)1(a)-334(n)1(ie)-334(j)1(e)-1(ste)-1(m)-333(drzyk,)-333(cob)28(ym)-333(kro)28(w)27(\\246)-333(ob\\252up)1(ia\\252)-333(z)-1(e)-334(sk)28(\\363ry)-333({)-333(rzuci\\252)-334(An)29(te)-1(k)1(.)]TJ 0 -13.549 Td[(I)-498(j)1(u\\273)-498(nie)-498(m)-1(\\363)28(wili)1(,)-498(s)-1(\\252y)1(c)27(ha\\242)-498(b)28(y\\252o)-498(t)28(yl)1(k)28(o)-498(gruc)28(hot)-498(zs)-1(y)1(p)28(yw)28(an)28(yc)27(h)-497(na)-498(kl)1(e)-1(p)1(is)-1(k)28(o)]TJ -27.879 -13.55 Td[(zie)-1(mni)1(ak)28(\\363)27(w.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-365(z)-1(gas\\252o,)-366(wiecz)-1(\\363r)-365(si\\246)-366(rob)1(i\\252,)-365(\\261)-1(wiec)-1(i)1(\\252y)-366(j)1(e)-1(szc)-1(ze)-366(z)-1(or)1(z)-1(e)-365(\\252)-1(u)1(nami)-365(z)-1(ak)1(rze)-1(p)1(\\252)-1(ej)]TJ -27.879 -13.549 Td[(kr)1(w)-1(i)-294(i)-294(ost)28(yg\\252ego)-295(z\\252ota)-294(i)-294(p)-27(os)-1(yp)29(yw)27(a\\252y)84(,)-294(na)-294(sta)28(w)-295(j)1(akb)28(y)-294(p)28(y)1(\\252e)-1(m)-294(m)-1(iedzian)28(y)1(m)-1(,)-294(\\273e)-295(w)28(o)-28(d)1(y)]TJ 0 -13.549 Td[(cic)27(h)1(e)-334(dr)1(ga\\252)-1(y)-333(r)1(dza)27(w)28(\\241)-333(\\252)-1(u)1(s)-1(k)56(\\241)-333(i)-333(s)-1(zme)-1(rem)-334(se)-1(n)1(n)28(ym.)]TJ 27.879 -13.549 Td[(Wie\\261)-303(z)-1(ap)1(ada\\252a)-303(w)-303(m)-1(r)1(ok)56(a)-1(c)28(h)-303(i)-302(w)-304(g\\252\\246b)-28(ok)56(\\241,)-302(m)-1(ar)1(t)27(w)28(\\241)-303(cis)-1(z\\246)-304(j)1(e)-1(sienn)1(e)-1(go)-303(wiec)-1(zora.)]TJ -27.879 -13.55 Td[(Cha\\252u)1(p)28(y)-404(mala\\252y)84(,)-404(j)1(akb)28(y)-404(si\\246)-404(p)1(rz)-1(y)1(p\\252asz)-1(cz)-1(a\\252y)-403(do)-404(ziem)-1(i)1(,)-404(jak)1(b)28(y)-404(si\\246)-404(tu)1(li\\252y)-404(d)1(o)-404(d)1(rze)-1(w)]TJ 0 -13.549 Td[(se)-1(n)1(nie)-334(p)-27(o)-28(c)28(h)28(ylon)28(y)1(c)27(h,)-333(d)1(o)-334(p)1(\\252ot\\363)28(w)-334(sz)-1(ar)1(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-338(z)-339(K)1(ub)1(\\241)-339(zw)28(o)-1(zili)-337(z)-1(iemniaki)1(,)-338(a)-338(Hank)56(a)-338(z)-339(J\\363zi\\241)-338(u)28(wij)1(a\\252)-1(y)-337(s)-1(i\\246)-338(k)28(o\\252o)-338(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(s)-1(t)28(w)28(a,)-430(b)-27(o)-430(g\\246)-1(si)-430(t)1(rz)-1(a)-429(b)28(y\\252o)-430(zagna\\242)-430(na)-430(n)1(o)-28(c,)-430(to)-430(\\261winie)-430(n)1(ak)55(ar)1(m)-1(i)1(\\242)-1(,)-430(b)-27(o)-430(z)-430(kwiki)1(e)-1(m)]TJ 0 -13.549 Td[(cis)-1(n)1(\\246)-1(\\252y)-347(si\\246)-348(d)1(o)-347(s)-1(ieni)-346(i)-347(w)-1(sadza\\252y)-347(\\273)-1(ar)1(\\252o)-28(c)-1(zne)-347(ryj)1(e)-348(d)1(o)-347(c)-1(ebratek,)-347(gd)1(z)-1(i)1(e)-348(sta\\252)-1(o)-347(p)1(icie)-348(d)1(la)]TJ 0 -13.55 Td[(b)28(yd)1(l\\241t,)-300(to)-300(kro)28(wy)-300(w)-1(y)1(doi\\242,)-300(b)-28(o)-300(w\\252a\\261)-1(n)1(ie)-301(Wit)1(e)-1(k)-300(pr)1(z)-1(ygn)1(a\\252)-301(r)1(e)-1(sz)-1(t)1(\\246)-301(z)-301(past)28(wis)-1(k)56(a)-300(i)-300(z)-1(ak\\252a-)]TJ 0 -13.549 Td[(da\\252)-333(im)-333(z)-1(a)-333(drab)1(in)28(y)-333(p)-27(o)-333(gar\\261)-1(ci)-333(s)-1(i)1(ana,)-333(\\273e)-1(b)28(y)-333(sp)-28(ok)28(o)-55(jn)1(ie)-1(j)-332(s)-1(ta\\252y)-333(pr)1(z)-1(y)-333(d)1(o)-56(j)1(e)-1(n)1(iu.)]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-498(J\\363z)-1(ia)-498(zabr)1(a\\252)-1(a)-498(si\\246)-499(d)1(oi\\242)-498(pierws)-1(z\\241)-498(z)-499(b)1(rze)-1(gu)1(,)-498(gdy)-498(Wi)1(te)-1(k)-498(wylaz\\252)-498(o)-28(d)]TJ -27.879 -13.549 Td[(\\273\\252)-1(ob)-27(\\363)28(w)-334(i)-333(sp)28(yta\\252)-333(c)-1(i)1(c)27(ho,)-333(tr)1(w)27(o\\273nie:)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(i)1(a,)-334(a)-333(gosp)-28(o)-28(d)1(arz)-334(\\271li?..)1(.)]TJ 0 -13.55 Td[({)-291(O)-291(Jez)-1(u)1(,)-291(spier\\241)-291(ci\\246)-1(,)-290(c)27(h)28(u)1(dziaku)1(,)-291(s)-1(p)1(ie)-1(r)1(\\241...)-291(t)1(ak)-291(p)-28(omsto)28(w)27(ali)-291({)-291(o)-27(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)]TJ -27.879 -13.549 Td[(wyt)28(yk)56(a)-56(j)1(\\241c)-268(ku)-267(\\261wiat\\252u)-267(g\\252o)28(w)27(\\246)-268(i)-267(os\\252ania)-55(j\\241c)-268(r)1(\\246)-1(k)56(\\241)-267(t)28(w)27(arz,)-267(b)-27(o)-268(kr)1(o)28(w)27(a)-267(c)27(h)1(las)-1(ta\\252a)-267(ogonem,)]TJ 0 -13.549 Td[(ogani)1(a)-56(j)1(\\241c)-334(s)-1(i\\246)-333(o)-28(d)-333(m)27(u)1(c)27(h)1(.)]TJ 27.879 -13.549 Td[({)-270(Ale...)-270(b)-27(om)-270(to)-270(w)-1(i)1(no)28(w)27(at)28(y)84(...)-270(al)1(e)-1(..)1(.)-270(b)-28(or)1(o)28(w)-1(y)-270(mi\\246)-270(wygna\\252)-270(i)-270(j)1(e)-1(sz)-1(cz)-1(e)-270(c)27(h)1(c)-1(i)1(a\\252)-271(k)1(ijem)]TJ -27.879 -13.549 Td[(spra\\242,)-372(inom)-372(ucie)-1(k)1(\\252...)-372(a)-373(gr)1(an)28(ul)1(a)-373(zarn)1(o)-373(si\\246)-373(j)1(\\246)-1(\\252a)-372(p)-28(ok)1(\\252)-1(ad)1(a\\242)-1(,)-372(a)-372(p)-27(oryki)1(w)27(a\\242,)-373(a)-372(st\\246)-1(k)56(a\\242,)]TJ 0 -13.55 Td[(\\273e)-1(m)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)-333(przygn)1(a\\252.)]TJ 27.879 -13.549 Td[(Zamilk\\252,)-333(ale)-334(s\\252yc)27(h)1(a\\242)-334(b)28(y\\252o)-333(cic)27(h)1(e)-1(,)-333(b)-27(ole)-1(sne)-333(c)27(hl)1(ipan)1(ie)-334(i)-333(siur)1(k)55(an)1(ie)-334(n)1(os)-1(em)-1(.)]TJ 0 -13.549 Td[({)-310(Ju\\261c)-1(i)1(,)-310(\\273)-1(e)-311(n)1(ie)-311(p)1(ierws)-1(zyzna,)-310(ale)-311(za)28(wdy)-310(tak)-310(si\\246)-311(b)-27(o)-56(j)1(am)-1(..)1(.b)-27(o)-311(n)1(ijak)1(ie)-1(j)-309(w)-1(y)1(trzy-)]TJ -27.879 -13.549 Td[(ma\\252o\\261)-1(ci)-333(na)-333(bicie)-334(n)1(ie)-334(mam)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(,)-333(p)1(arob)-27(e)-1(k)-333(t)28(yl)1(i,)-333(a)-334(b)-27(o)-56(j)1(a)-334(si\\246...)-333(j)1(u\\273)-334(j)1(a)-334(p)1(rze)-1(\\252o\\273\\246)-334(tatu)1(s)-1(io)28(wi..)-333(.)]TJ 0 -13.549 Td[({)-456(Pr)1(z)-1(e\\252o\\273)-1(ysz)-1(,)-455(J\\363z)-1(ia?)-456({)-456(z)-1(a)28(w)28(o\\252a\\252)-457(r)1(ado\\261nie)-456({)-457(b)-27(o)-456(to)-456(b)-27(oro)28(w)-1(y)-456(mi\\246)-456(wygna\\252)-456(z)]TJ -27.879 -13.55 Td[(kr)1(o)27(w)28(ami,)-333(b)-28(o..)1(.)]TJ 27.879 -13.549 Td[({)-333(Prze\\252)-1(o\\273\\246,)-334(W)1(ite)-1(k)1(,)-333(ino)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(ni)1(e)-334(b)-27(o)-56(ja)-55(j!)]TJ 0 -13.549 Td[({)-350(K)1(ie)-1(j)-349(tak)1(...)-349(to)-350(n)1(a\\261)-1(ci)-349(te)-1(go)-349(ptak)56(a!)-349({)-350(sz)-1(epn)1(\\241\\252)-350(z)-350(rad)1(o\\261)-1(ci\\241)-349(i)-350(wyj)1(\\241\\252)-350(z)-350(zanad)1(rz)-1(a)]TJ -27.879 -13.549 Td[(dr)1(e)-1(wn)1(iane)-334(cud)1(\\252o.)-333({)-334(Ob)1(ac)-1(z)-333(ino,)-333(j)1(ak)-333(s)-1(i\\246)-333(s)-1(am)-334(r)1(uc)27(h)1(a.)]TJ 27.879 -13.549 Td[(P)28(osta)28(w)-1(i)1(\\252)-403(go)-403(n)1(a)-403(pr)1(ogu)-403(ob)-27(ory)84(,)-403(n)1(akr\\246ci\\252,)-403(i)-402(ptak)-402(z)-1(acz)-1(\\241\\252)-402(s)-1(i\\246)-403(ki)1(w)27(a\\242,)-403(p)-27(o)-28(d)1(nosi\\242)]TJ -27.879 -13.55 Td[(nogi)-333(d)1(\\252ugie)-334(i)-333(space)-1(r)1(o)28(w)27(a\\242...)]TJ 27.879 -13.549 Td[({)-395(Bo)-28(ciek,)-395(J)1(e)-1(zu,)-394(a)-395(d)1(y\\242)-395(s)-1(i)1(\\246)-396(r)1(uc)28(ha)-395(k)1(ie)-1(j)-394(\\273ywy!)-394({)-395(za)27(w)28(o\\252a\\252a)-395(zdu)1(m)-1(ion)1(a,)-395(o)-27(dsta-)]TJ\nET\nendstream\nendobj\n84 0 obj <<\n/Type /Page\n/Contents 85 0 R\n/Resources 83 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n83 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n88 0 obj <<\n/Length 9162      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(22)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(wi\\252a)-342(sz)-1(k)28(op)-27(ek,)-342(p)1(rzyku)1(c)-1(n)1(\\246)-1(\\252a)-341(prze)-1(d)-341(p)1(rogiem)-342(i)-341(z)-342(na)-56(j)1(\\273)-1(y)1(w)-1(sz\\241)-342(rad)1(o\\261)-1(ci\\241)-342(i)-341(zdu)1(m)-1(ieni)1(e)-1(m)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252a.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu!)-333(to)-333(z)-334(ciebie)-334(mec)27(han)1(ik!)-333(I)-333(to)-334(si\\246)-334(sam)-334(tak)-333(r)1(uc)27(h)1(a,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-252(A)-251(s)-1(am,)-251(J\\363z)-1(ia,)-251(in)1(o)-252(go)-252(k)28(o\\252ec)-1(zkiem)-252(nak)1(r\\246c)-1(\\246,)-252(to)-251(ju)1(\\273)-253(se)-252(s)-1(p)1(ac)-1(eru)1(je)-252(ki)1(e)-1(j)-251(dziedzic)]TJ -27.879 -13.549 Td[(p)-27(o)-351(obi)1(e)-1(d)1(z)-1(ie)-351({)-351(o.)1(..)-351({)-351(o)-27(dwr\\363)-28(ci\\252)-351(go)-351(i)-350(ptak)-350(p)-27(o)27(w)28(a\\273)-1(n)1(ie)-351(a)-351(\\261m)-1(iesz)-1(n)1(ie)-351(z)-1(arazem)-352(p)-27(o)-28(d)1(nosi\\252)]TJ 0 -13.55 Td[(d\\252u)1(g\\241)-334(szyj\\246)-334(p)-27(o)-28(d)1(nosi\\252)-334(n)1(ogi)-333(i)-333(s)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246li)-499(s)-1(i)1(\\246)-500(\\261m)-1(i)1(a\\242)-500(se)-1(r)1(dec)-1(znie)-499(i)-499(ba)28(wi\\242)-499(jego)-499(ruc)28(hami)-499(t)28(ylk)28(o)-499(J\\363zia)-499(c)-1(zasam)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a)-333(o)-28(cz)-1(y)-333(n)1(a)-334(c)28(h\\252opak)56(a)-333({)-333(p)-28(o)-28(d)1(z)-1(i)1(w)-334(w)-333(nic)28(h)-333(b)28(y\\252)-333(a)-334(zdu)1(m)-1(i)1(e)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(i)1(a!)-334({)-333(rozleg\\252)-334(si\\246)-334(g\\252os)-334(Bory)1(n)28(y)-333(s)-1(p)1(rze)-1(d)-333(c)28(ha\\252up)29(y)83(.)]TJ 0 -13.549 Td[({)-333(A)-334(cz)-1(eg\\363)-56(j)1(?)-334({)-333(o)-28(d)1(krzykn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(z)-1(i)-333(in)1(o.)]TJ 0 -13.55 Td[({)-333(Kiej)-333(do)-55(jem)-334(kr)1(o)27(wy)84(.)]TJ 0 -13.549 Td[({)-465(Pil)1(n)28(uj)-465(tu)1(,)-465(b)-28(o)-465(id)1(\\246)-466(do)-465(w)28(\\363)-56(j)1(ta)-466(-p)-27(o)28(w)-1(iedzia\\252,)-465(ws)-1(ad)1(z)-1(a)-55(j\\241c)-466(g\\252o)28(w)28(\\246)-466(do)-465(cie)-1(mnej)]TJ -27.879 -13.549 Td[(ob)-27(ory)-333({)-333(nie)-334(ma)-333(tuta)-55(j)-333(tego)-334(zna)-55(jd)1(k)55(a)-333(co?)]TJ 27.879 -13.549 Td[({)-409(Wi)1(tk)56(a?)-1(.)1(..)-409(n)1(i,)-409(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-409(p)-27(o)-409(ziem)-1(n)1(iaki)-408(z)-410(An)29(tkiem)-1(,)-408(b)-27(o)-409(Kub)1(a)-409(mia\\252)-409(u)1(rz)-1(n)1(\\241\\242)]TJ -27.879 -13.549 Td[(sie)-1(cz)-1(k)1(i)-291(dla)-291(k)28(oni)1(...)-291({)-291(o)-28(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-291(pr)1(\\246)-1(d)1(k)28(o)-292(i)-291(tr)1(o)-28(c)27(h)1(\\246)-292(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-291(b)-27(o)-291(Witek)-291(przy-)]TJ 0 -13.55 Td[(cupn)1(\\241\\252)-334(za)-333(ni\\241)-333(ze)-334(s)-1(tr)1(ac)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[({)-374(\\221)1(c)-1(ierw)28(a)-374(ten)-374(c)28(h\\252op)1(ak,)-374(to)-373(ino)-374(p)1(as)-1(y)-373(dr)1(z)-1(e\\242)-1(,)-373(\\273)-1(eb)28(y)-373(z)-1(marn)1(o)27(w)28(a\\242)-374(tak)56(\\241)-374(kro)28(w)28(\\246)-375({)]TJ -27.879 -13.549 Td[(mrucza\\252)-342(p)-27(o)27(wraca)-56(j)1(\\241c)-342(do)-341(iz)-1(b)29(y)83(,)-341(gdzie)-342(si\\246)-342(o)-28(dzia\\252)-341(w)-342(no)28(w)27(\\241)-341(k)56(ap)-28(ot\\246)-342(b)1(ia\\252\\241,)-341(w)-1(y)1(s)-1(zyw)27(an)1(\\241)]TJ 0 -13.549 Td[(na)-446(w)-1(szys)-1(tk)1(ic)27(h)-446(s)-1(zw)28(ac)27(h)-446(c)-1(zarn)28(ymi)-446(tas)-1(iemk)55(ami,)-446(nad)1(z)-1(ia\\252)-446(w)-1(y)1(s)-1(oki)-446(c)-1(zarn)28(y)-446(k)56(ap)-28(elu)1(s)-1(z,)]TJ 0 -13.549 Td[(okr)1(\\246)-1(ci\\252)-334(si\\246)-334(cze)-1(rw)28(on)28(ym)-333(pase)-1(m)-333(i)-334(p)-27(osz)-1(ed\\252)-333(dr)1(og\\241)-334(n)1(ad)-333(s)-1(ta)28(w)28(e)-1(m)-333(ku)-333(m\\252)-1(y)1(no)28(wi.)]TJ 27.879 -13.55 Td[({)-338(Rob)-28(ot)28(y)-338(j)1(e)-1(sz)-1(cz)-1(e)-338(t)28(yla...)-338(zw)28(\\363z)-1(k)56(a)-338(drzew)27(a...)-338(siew)-339(n)1(ie)-339(sk)28(o\\253cz)-1(on)29(y)83(..)1(.)-338(k)55(ap)1(usta)-338(w)]TJ -27.879 -13.549 Td[(p)-27(olu.)1(..)-350(\\261)-1(ci\\363\\252k)56(a)-351(n)1(ie)-351(wygrab)1(iona.)1(..)-350(p)-28(o)-27(dora\\242)-350(b)28(y)-350(trza)-351(n)1(a)-351(k)56(arto\\015)1(e)-1(.)1(..)-350(dob)1(rz)-1(e)-350(b)28(y)-350(i)-350(p)-28(o)-28(d)]TJ 0 -13.549 Td[(o)28(ws)-1(y)84(...)-424(a)-424(tu)-424(j)1(e)-1(d)1(\\271)-425(n)1(a)-424(s)-1(\\241d)1(y)83(..)1(.)-424(Lab)-28(oga,)-424(\\273e)-425(to)-424(cz)-1(\\252ek)-424(ni)1(gdy)-424(ob)1(robi)1(\\242)-425(s)-1(i)1(\\246)-425(n)1(ie)-425(ob)1(robi)1(,)]TJ 0 -13.549 Td[(in)1(o)-314(ci\\246)-1(gi)1(e)-1(m)-314(j)1(ak)-314(ten)-313(w)27(\\363\\252)-314(w)-313(jarzmie)-1(.)1(..)-314(\\273e)-314(i)-314(wyspa\\242)-314(si\\246)-314(ni)1(e)-315(ma)-313(c)-1(zas)-1(u)-313(ni)-313(o)-28(d)1(p)-28(o)-27(c)-1(z\\241\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-500(r)1(oz)-1(m)28(y\\261)-1(l)1(a\\252)-1(.)-499({)-500(A)-499(tu)-500(i)-499(ten)-500(s\\241d..)1(.)-500(T\\252umok)-500(\\261c)-1(i)1(e)-1(r)1(w)27(a,)-499(hale,)-500(j)1(a)-500(z)-500(ni\\241)-499(s)-1(yp)1(ia\\252em)-1(..)1(.)]TJ 0 -13.55 Td[(\\273e)-1(b)28(y)1(\\261)-330(oz\\363r)-329(straci\\252a...)-329(l)1(akud)1(ro)-329(j)1(ak)55(a\\261...)-328(s)-1(u)1(k)55(a.)1(..)-329({)-329(splu)1(n\\241\\252)-329(ze)-330(z\\252o\\261)-1(ci\\241,)-329(n)1(abi\\252)-329(f)1(a)-56(j)1(e)-1(cz)-1(k)28(\\246)]TJ 0 -13.549 Td[(mac)27(hor)1(k)56(\\241)-334(i)-333(d)1(\\252)-1(u)1(go)-334(p)-27(o)-28(ciera\\252)-333(z)-1(wilgotn)1(ia\\252e)-334(zapa\\252ki)-333(o)-333(p)-28(or)1(tki,)-333(n)1(im)-334(zapali)1(\\252.)]TJ 27.879 -13.549 Td[(Py)1(k)55(a\\252)-284(o)-28(d)-283(c)-1(zasu)-284(do)-284(cz)-1(asu)-284(i)-284(wl\\363k)1(\\252)-284(s)-1(i\\246)-284(w)27(ol)1(no;)-284(b)-27(ola\\252y)-284(go)-284(ws)-1(zystkie)-284(k)28(o\\261)-1(ci)-284(i)-284(\\273ale)]TJ -27.879 -13.549 Td[(za)-334(kr)1(o)28(w)27(\\241)-333(raz)-334(w)-333(raz)-334(go)-333(mark)28(o)-28(ci\\252y)-333(i)-333(roz)-1(b)1(iera\\252y)83(.)]TJ 27.879 -13.549 Td[(A)-408(tu)-408(an)1(i)-409(o)-27(db)1(i\\242)-409(si\\246)-409(n)1(a)-409(ki)1(m)-1(,)-408(an)1(i)-408(w)-1(y)1(\\273)-1(ali)1(\\242)-1(,)-408(n)1(ic)-1(.)1(..)-408(s)-1(am)-408(jak)-408(ten)-408(k)28(o\\252e)-1(k)1(;)-408(s)-1(am)-409(o)]TJ -27.879 -13.55 Td[(ws)-1(zystkim)-460(m)27(y)1(\\261)-1(l,)-459(s)-1(am)-460(delib)-27(eruj)-459(\\252b)-27(e)-1(m,)-460(sam)-461(k)1(ie)-1(l)1(e)-461(wsz)-1(ystkiego)-460(obi)1(e)-1(ga)-55(j)-460(ki)1(e)-1(j)-459(te)-1(n)]TJ 0 -13.549 Td[(pi)1(e)-1(s...)-374(a)-374(do)-374(nik)28(og\\363)-55(j)-374(s)-1(\\252o)28(w)28(a)-375(p)1(rze)-1(m\\363)28(w)-1(i)1(\\242)-375(i)-374(rady)-374(znik)56(\\241d)-374(n)1(i)-375(p)-27(omo)-28(cy)-375({)-374(a)-374(ino)-374(s)-1(t)1(rata)-374(i)]TJ 0 -13.549 Td[(up)1(adek..)1(.)-406(a)-406(wsz)-1(ystki)1(e)-407(t)1(o)-406(kiej)-405(te)-406(w)-1(i)1(lki)-405(z)-1(a)-406(o)28(w)28(c)-1(\\241..)1(.)-406(a)-405(ino)-405(s)-1(ku)1(bi\\241,)-405(a)-406(p)1(atrz\\241,)-406(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(oze)-1(rw)28(\\241)-333(w)-334(k)56(a)28(w)27(a\\252y)84(...)]TJ 27.879 -13.549 Td[(Ciem)-1(n)1(a)27(w)28(o)-309(j)1(u\\273)-309(b)28(y\\252o)-308(w)27(e)-309(ws)-1(i)1(,)-309(pr)1(z)-1(ez)-309(pr)1(z)-1(ywieran)1(e)-310(d)1(rzwi)-309(i)-308(okna,)-308(\\273)-1(e)-309(to)-309(wiecz)-1(\\363r)]TJ -27.879 -13.549 Td[(b)28(y\\252)-450(c)-1(i)1(e)-1(p)1(\\252y)83(,)-450(bu)1(c)27(h)1(a\\252)-1(y)-450(sm)27(u)1(gi)-451(ogn)1(isk)-451(i)-450(zapac)28(h)-450(goto)27(w)28(an)28(yc)28(h)-450(z)-1(i)1(e)-1(mniak)28(\\363)28(w)-450(i)-451(\\273ur)1(u)-450(z)-1(e)]TJ 0 -13.55 Td[(skw)27(ar)1(k)55(ami;)-448(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-449(jedl)1(i)-448(w)-449(sieniac)28(h)-448(alb)-27(o)-448(i)-448(z)-1(go\\252a)-448(pr)1(z)-1(ed)-448(d)1(om)-1(ami,)-448(\\273e)-449(in)1(o)]TJ 0 -13.549 Td[(skrzyb)-27(ot)-334(\\252y\\273ek)-334(s\\252yc)27(h)1(a\\242)-334(b)28(y\\252o)-333(a)-333(p)-28(ogad)1(yw)28(ania.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-369(s)-1(zed\\252)-369(coraz)-369(w)27(oln)1(iej,)-368(b)-28(o)-369(o)-27(c)-1(i\\246\\273a)-1(\\252o)-368(go)-369(rozdra\\273ni)1(e)-1(n)1(ie)-1(,)-368(a)-369(p)-27(ote)-1(m)-369(p)1(rzy-)]TJ -27.879 -13.549 Td[(p)-27(om)-1(n)1(ienie)-334(n)1(ieb)-28(osz)-1(cz)-1(k)1(i,)-333(c)-1(o)-333(j\\241)-333(n)1(a)-334(zwie)-1(sn\\246)-333(b)28(y\\252)-333(p)-28(o)-28(c)28(ho)28(w)27(a\\252,)-333(u)1(\\252api\\252o)-333(go)-334(za)-333(grdy)1(k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[(Ho!)-239(h)1(o!..)1(.)-239(pr)1(z)-1(y)-238(niej,)-238(c)-1(o)-239(j)1(\\241)-239(ws)-1(p)-27(ominam)-239(wiec)-1(zorem)-239(w)-239(dobr)1(y)-239(sp)-28(os\\363b,)-238(nie)-239(p)1(rzy-)]TJ -27.879 -13.55 Td[(go)-28(d)1(z)-1(i\\252ob)29(y)-307(si\\246)-307(tak)-307(gr)1(an)28(uli)1(...)-306(gos)-1(p)-27(o)-28(dy)1(ni)-306(to)-307(b)28(y\\252a,)-306(gos)-1(p)-27(o)-28(d)1(yni!)1(...)-306(Ju\\261c)-1(i,)-306(\\273e)-308(i)-306(mam)-1(r)1(ot,)]TJ 0 -13.549 Td[(i)-273(p)1(rze)-1(kl)1(\\246)-1(tn)1(ic)-1(a)-272(te)-1(\\273,)-273(\\273e)-274(i)-272(dob)1(re)-1(go)-272(s)-1(\\252o)28(w)27(a)-273(n)1(ik)28(om)27(u)-272(da\\242)-273(n)1(ie)-274(d)1(a\\252a)-273(i)-273(ci\\246)-1(gi)1(e)-1(m)-273(si\\246)-274(z)-273(b)1(abami)]TJ\nET\nendstream\nendobj\n87 0 obj <<\n/Type /Page\n/Contents 88 0 R\n/Resources 86 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n86 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n91 0 obj <<\n/Length 8204      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(23)]TJ -363.686 -35.866 Td[(za)-345(\\252)-1(b)29(y)-345(w)27(o)-27(dzi\\252a...)-345(al)1(e)-346(za)27(w\\273dy)-345(\\273ona)-345(i)-344(gos)-1(p)-27(o)-28(dy)1(ni!)-344({)-345(T)83(u)-345(w)28(e)-1(stc)27(h)1(n\\241\\252)-345(p)-27(ob)-28(o\\273nie)-345(na)-345(j)1(e)-1(j)]TJ 0 -13.549 Td[(in)28(t)1(e)-1(n)1(c)-1(j)1(\\246)-1(,)-333(i)-333(\\273)-1(al)-333(go)-333(jes)-1(zcz)-1(e)-334(wi\\246ksz)-1(y)-333(d)1(usi\\252,)-333(b)-28(o)-333(pr)1(z)-1(yp)-27(omina\\252,)-333(j)1(ak)-334(t)1(o)-334(b)28(y)1(w)27(a\\252o...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-496(z)-495(rob)-27(ot)28(y)83(,)-494(s)-1(p)1(rac)-1(o)28(w)28(an)28(y)-495({)-495(to)-495(i)-495(j)1(e)-1(\\261\\242)-496(t\\252u)1(s)-1(to)-495(d)1(a\\252a,)-495(i)-495(cz)-1(\\246s)-1(to)-495(g\\246s)-1(to)]TJ -27.879 -13.549 Td[(kie\\252basy)-360(p)-27(o)-28(d)1(t)27(y)1(k)55(a\\252a)-359(kryj)1(om)-1(o)-359(przed)-360(d)1(z)-1(iecis)-1(k)56(ami...)-359(A)-360(j)1(ak)-360(si\\246)-360(w)-1(sz)-1(y)1(s)-1(tk)28(o)-359(darzy\\252o!..)1(.)]TJ 0 -13.549 Td[(i)-406(cielaki,)-405(i)-406(g\\241ski,)-406(i)-405(prosiaki)1(...)-406(\\273e)-406(c)-1(o)-406(j)1(armarek)-406(b)28(y)1(\\252)-1(o)-405(z)-407(cz)-1(em)-406(je\\271)-1(d)1(z)-1(i\\242)-406(d)1(o)-406(m)-1(i)1(as)-1(ta,)-405(i)]TJ 0 -13.55 Td[(grosz)-319(b)28(y)1(\\252)-319(za)27(wsz)-1(e)-318(goto)27(wy)84(,)-318(na)-318(z)-1(ak)1(\\252)-1(ad)-317(z)-319(s)-1(amego)-319(p)1(rzyc)27(h)1(\\363)27(wku)1(...)-318(A)-318(ju)1(\\273)-319(co)-319(k)56(apu)1(s)-1(t)28(y)-318(z)]TJ 0 -13.549 Td[(gro)-27(c)27(hem,)-334(t)1(o)-334(j)1(u\\273)-334(j)1(e)-1(n)1(s)-1(za)-334(zgo\\252a)-333(tak)-333(nie)-334(p)-27(otra\\014)1(...)]TJ 27.879 -13.549 Td[(A)-333(te)-1(r)1(az)-334(c)-1(o?..)1(.)]TJ 0 -13.549 Td[(An)28(tek)-335(i)1(no)-335(n)1(a)-335(sw)27(o)-55(j\\241)-334(s)-1(tr)1(on\\246)-335(c)-1(i)1(\\241)-28(gni)1(e)-1(,)-334(k)28(o)27(w)28(al)-334(te)-1(\\273)-335(wyp)1(atruj)1(e)-1(,)-334(ab)28(y)-334(c)-1(o)-334(c)27(h)28(y)1(c)-1(i\\242,)-335(a)]TJ -27.879 -13.549 Td[(J\\363zk)55(a?)-250(S)1(krzat)-250(g\\252u)1(pi,)-249(kt\\363r)1(e)-1(m)28(u)-250(p)1(le)-1(wy)-249(jes)-1(zc)-1(ze)-250(w)27(e)-250(\\252b)1(ie)-1(,)-249(c)-1(o)-249(i)-250(n)1(ie)-250(dziw)27(ot)1(a,)-250(b)-27(o)-250(dzieusz)-1(e)]TJ 0 -13.549 Td[(ma\\252o)-354(co)-354(n)1(a)-354(d)1(z)-1(iesi\\241t)28(y)-354(r)1(ok)-353(idzie...)-353(Hank)56(a)-353(kiej)-353(ta)-354(\\242ma)-354(\\252azi,)-353(a)-354(c)28(horu)-353(j)1(e)-354(jeno,)-353(i)-353(t)28(yle)]TJ 0 -13.55 Td[(zrobi)1(,)-334(co)-333(te)-1(n)-333(p)1(ies)-334(z)-1(ap)1(\\252ac)-1(ze)-1(.)1(..)]TJ 27.879 -13.549 Td[(T)83(o)-28(\\242)-292(i)-292(marnieje)-292(ws)-1(zystk)28(o...)-292(gr)1(an)28(ule)-292(trza)-292(b)28(y\\252o)-292(dor)1(z)-1(n)1(\\241\\242)-1(..)1(.)-292(w)27(e)-292(\\273)-1(n)1(iw)27(a)-292(wiepr)1(z)-1(ak)]TJ -27.879 -13.549 Td[(zdec)27(h\\252..)1(.)-394(wron)28(y)-393(g\\241s)-1(ki)-393(tak)-394(p)1(rze)-1(b)1(ra\\252y)83(,)-393(\\273)-1(e)-394(z)-394(p)-28(o\\252o)28(w)28(a)-394(os)-1(ta\\252a!.)1(..)-394(T)28(yle)-394(marnacji)1(,)-394(t)28(yle)]TJ 0 -13.549 Td[(up)1(adk)1(u!..)1(.)-334(P)1(rze)-1(z)-333(s)-1(ito)-333(ws)-1(zy\\242k)28(o)-334(l)1(e)-1(ci,)-333(pr)1(z)-1(ez)-334(s)-1(i)1(to...)]TJ 27.879 -13.549 Td[({)-281(Al)1(e)-282(n)1(ie)-281(dam!)-281({)-280(wykrzykn)1(\\241\\252)-281(pr)1(a)27(wie)-281(g\\252o\\261no)-281({)-280(p)-28(\\363k)1(i)-281(ru)1(c)27(h)1(am)-281(t)28(ym)-1(i)-280(ku)1(las)-1(ami,)]TJ -27.879 -13.55 Td[(to)-333(ani)-333(j)1(e)-1(d)1(ne)-1(j)-332(m)-1(or)1(gi)-334(n)1(ie)-334(o)-27(dpi)1(s)-1(z\\246)-334(i)-333(do)-333(w)28(a)-56(ju)-332(na)-333(w)-1(y)1(c)-1(u)1(g)-334(n)1(ie)-334(p)-27(\\363)-56(j)1(d\\246...)]TJ 27.879 -13.549 Td[(Ino)-370(Gr)1(z)-1(ela)-370(z)-371(w)27(o)-55(jsk)56(a)-371(d)1(o)-371(d)1(om)-371(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(,)-370(to)-371(n)1(ie)-1(c)28(h)28(ta)-370(s)-1(e)-370(An)28(te)-1(k)-370(n)1(a)-371(\\273oni)1(n\\241)-370(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(ark)28(\\246)-334(wr\\363)-27(c)-1(i.)1(..)-333(nie)-333(dam...)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(c)28(h)28(w)27(al)1(on)28(y!)-333({)-333(z)-1(ab)1(rzm)-1(ia\\252)-333(jak)1(i\\261)-334(g\\252os)-1(.)]TJ 0 -13.549 Td[({)-353(Na)-352(w)-1(i)1(e)-1(ki)1(!...)-352({)-353(o)-28(d)1(rzuci\\252)-353(mac)27(hi)1(naln)1(ie)-353(i)-353(skr\\246c)-1(i)1(\\252)-353(z)-353(dr)1(ogi)-353(w)-353(sz)-1(eroki)1(e)-354(i)-352(d\\252u)1(gie)]TJ -27.879 -13.55 Td[(op\\252otk)1(i,)-333(b)-28(o)-333(w)28(\\363)-56(jt)1(o)27(w)28(a)-333(os)-1(ad)1(a)-334(le\\273a\\252)-1(a)-333(tr)1(o)-28(c)27(h)1(\\246)-334(w)-334(g\\252\\246bi.)]TJ 27.879 -13.549 Td[(W)-333(okn)1(ac)27(h)-333(si\\246)-334(\\261w)-1(ieci\\252o)-334(i)-333(p)1(ie)-1(ski)-333(u)1(jada\\242)-333(p)-28(o)-27(c)-1(z\\246)-1(\\252y)84(.)]TJ 0 -13.549 Td[(Wsz)-1(ed\\252)-333(pr)1(os)-1(to)-333(do)-333(\\261w)-1(i)1(e)-1(tli)1(c)-1(y)84(.)]TJ 0 -13.549 Td[({)-298(W)84(\\363)-56(jt)-297(doma?)-298({)-298(z)-1(ap)28(y)1(ta\\252)-298(t\\252uste)-1(j)-297(k)28(obiet)28(y)83(,)-297(kl\\246c)-1(z\\241c)-1(ej)-298(p)1(rzyk)28(o\\252ys)-1(ce)-298(i)-298(k)56(armi\\241c)-1(ej)]TJ -27.879 -13.549 Td[(dziec)27(k)28(o.)]TJ 27.879 -13.55 Td[({)-370(Zarn)1(o)-370(w)-1(r)1(\\363)-28(c)-1(\\241,)-369(p)-28(o)-55(jec)27(ha\\252)-370(p)-27(o)-370(z)-1(i)1(e)-1(mniak)1(i.)-370(S)1(iada)-55(jcie)-1(,)-369(Mac)-1(i)1(e)-1(j)1(u,)-370(a)-370(d)1(y\\242)-371(i)-370(ci)-370(te\\273)]TJ -27.879 -13.549 Td[(cz)-1(ek)55(a)-55(j\\241)-333(na)-333(ni)1(e)-1(go)-333({)-333(w)-1(sk)56(az)-1(a\\252a)-333(ru)1(c)27(hem)]TJ 27.879 -13.549 Td[(br)1(o)-28(dy)-225(n)1(a)-225(dziada)-225(siedz\\241c)-1(ego)-226(p)1(rzy)-225(k)28(ominie;)-225(b)28(y\\252)-225(to)-225(ten)-225(stary)-225(\\261le)-1(p)1(iec)-1(,)-225(w)28(o)-28(dzon)28(y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-370(p)1(s)-1(a;)-369(cz)-1(erw)27(on)1(a)28(w)27(e)-370(\\261wiat\\252o)-369(s)-1(zc)-1(zap)-369(ostro)-369(op\\252yw)28(a\\252o)-370(j)1(e)-1(go)-369(ogromn\\241,)-369(wygolon)1(\\241)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(,)-232(\\252)-1(y)1(s)-1(\\241)-233(cz)-1(asz)-1(k)28(\\246)-233(i)-233(sz)-1(erok)28(o)-233(ot)28(w)28(arte)-233(o)-28(cz)-1(y)84(,)-233(z)-1(asn)28(u)1(te)-234(b)1(ielm)-1(em,)-233(ni)1(e)-1(r)1(uc)27(h)1(om)-1(o)-233(t)1(kwi\\241c)-1(e)]TJ 0 -13.55 Td[(p)-27(o)-28(d)-333(siwym)-1(i)1(,)-334(k)1(rzac)-1(zas)-1(t)28(ymi)-333(br)1(w)-1(i)1(am)-1(i)1(...)]TJ 27.879 -13.549 Td[({)-229(S)1(k)56(\\241d)-229(t)1(o)-229(P)28(an)-228(B\\363g)-229(pr)1(o)27(w)28(adzi?)-229({)-228(z)-1(ap)29(yta\\252)-229(Boryn)1(a,)-229(siad)1(a)-56(j\\241c)-229(p)-27(o)-229(d)1(ru)1(gie)-1(j)-228(stron)1(ie)]TJ -27.879 -13.549 Td[(ogni)1(a.)]TJ 27.879 -13.549 Td[({)-459(Ze)-459(\\261)-1(wiata,)-458(a)-459(sk)55(\\241d)1(\\273)-1(e)-459(b)28(y)84(,)-459(gosp)-27(o)-28(dar)1(z)-1(u)1(?)-459({)-459(o)-28(dp)-27(o)28(wiada\\252)-459(w)28(oln)1(o)-459(rozlaz)-1(\\252y)1(m)-1(,)]TJ -27.879 -13.549 Td[(j\\246cz)-1(\\241cym,)-397(i\\261c)-1(i)1(e)-397(proszaln)28(ym)-397(g\\252ose)-1(m)-397(i)-396(nad)1(s)-1(t)1(a)27(wia\\252)-396(pil)1(nie)-397(u)1(s)-1(z\\363)27(w,)-396(a)-397(wyci\\241)-28(gn)1(\\241\\252)-397(ta-)]TJ 0 -13.549 Td[(bak)1(ie)-1(r)1(k)28(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-333(Za\\273)-1(yj)1(c)-1(i)1(e)-1(,)-333(gosp)-28(o)-28(d)1(arzu.)]TJ 0 -13.549 Td[(Maciej)-338(za\\273)-1(y\\252)-338(r)1(z)-1(ete)-1(l)1(nie)-338(i)-338(kic)28(hn)1(\\241\\252)-339(r)1(az)-339(p)-27(o)-338(raz)-338(trzy)-338(razy)83(,)-337(a\\273)-339(m)28(u)-338(\\252z)-1(y)-337(w)-339(o)-27(c)-1(zac)27(h)]TJ -27.879 -13.549 Td[(stan\\246\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(T)83(\\246)-1(ga)-333(ju)1(c)27(h)1(a!)-333({)-334(i)-333(r\\246k)56(a)27(w)28(em)-334(tar\\252)-333(z)-1(a\\252za)28(w)-1(i)1(one)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(w)27(am)-333(b)-28(\\246dzie)-334(n)1(a)-334(zdr)1(o)28(w)-1(i)1(e)-1(.)-333(P)28(ete)-1(r)1(bu)1(rk)56(a,)-333(dobr)1(z)-1(e)-333(ano)-333(robi)-333(n)1(a)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.55 Td[({)-396(Wst\\241)-28(p)-27(c)-1(ie)-396(ju)1(tro)-396(do)-396(mnie,)-396(kro)28(w)28(e)-1(m)-396(dorzn\\241\\252,)-396(to)-396(si\\246)-397(tam)-396(jak)56(a)-396(s)-1(ztu)1(c)-1(zk)55(a)-396(la)]TJ -27.879 -13.549 Td[(w)28(as)-334(z)-1(n)1(a)-56(j)1(\\261)-1(\\242)-334(zna)-55(jd)1(z)-1(ie.)]TJ\nET\nendstream\nendobj\n90 0 obj <<\n/Type /Page\n/Contents 91 0 R\n/Resources 89 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n89 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n94 0 obj <<\n/Length 8315      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(24)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(.)1(..)-333(B)-1(or)1(yna,)-333(wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(c)-1(o?..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(\\273e\\261)-1(cie)-334(to)-333(roze)-1(znali)1(?)-1(.)1(..)-333(no,)-333(n)1(o.)]TJ 0 -13.549 Td[({)-333(P)28(o)-333(g\\252)-1(osie)-334(i)1(no,)-333(p)-27(o)-334(gad)1(aniu)1(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(ta)-334(w)28(e)-334(\\261wie)-1(cie)-334(s\\252yc)27(h)1(a\\242)-1(?)-333(W)83(\\246dr)1(ujecie)-334(ci\\246)-1(gi)1(e)-1(m?)]TJ 0 -13.549 Td[({)-439(Moi\\261c)-1(iewy)83(,)-439(a)-439(c)-1(\\363\\273)-440(b)28(y)1(!)-440({)-439(A)-439(to)-440(\\271le,)-440(a)-439(to)-439(i)-440(d)1(obrze,)-440(a)-439(to)-439(i)-440(r)1(\\363\\273)-1(n)1(ie)-1(,)-439(j)1(ak)-440(w)28(e)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(e)-1(cie)-1(.)-430(A)-431(ws)-1(zysc)-1(y)-431(p)1(isz)-1(cz)-1(\\241,)-431(a)-430(narze)-1(k)56(a)-55(j\\241,)-431(j)1(ak)-431(pr)1(z)-1(y)1(jdzie)-431(dziado)28(wi)-431(co)-431(da\\242)-431(ab)-27(o)-431(i)]TJ 0 -13.549 Td[(dr)1(ugiem)27(u)1(,)-333(ale)-334(n)1(a)-334(gor)1(z)-1(a\\252\\246)-334(ma)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wd\\246)-333(rze)-1(kl)1(i\\261)-1(cie,)-333(b)-28(o)-333(ano)-333(tak)-333(i)-333(jes)-1(t.)]TJ 0 -13.549 Td[({)-440(Ho,)-439(h)1(o!)-440(t)28(yl)1(e)-441(r)1(ok)28(\\363)28(w)-440(s)-1(i)1(\\246)-440(c)-1(z\\252e)-1(k)-439(te)-1(l)1(e)-1(p)1(ie)-440(p)-28(o)-439(tej)-440(\\261wi\\246te)-1(j)-439(zie)-1(mi,)-439(to)-440(si\\246)-440(i)-439(wie)]TJ -27.879 -13.549 Td[(r\\363\\273ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-346(A)-345(gdzie)-1(\\261c)-1(i)1(e)-347(t)1(o)-346(p)-28(o)-27(dzie)-1(l)1(i)-346(tego)-346(zna)-56(j)1(d\\246,)-346(co)-346(w)28(as)-347(p)1(ro)28(w)28(adza\\252)-346(\\252oni?)-346({)-346(zap)28(yt)1(a\\252)-1(a)]TJ -27.879 -13.55 Td[(w)28(\\363)-56(jt)1(o)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-311(P)29(os)-1(ze)-1(d)1(\\252)-311(s)-1(e)-311(\\261c)-1(ierw)28(a,)-311(p)-27(osz)-1(ed\\252,)-311(wy\\252u)1(s)-1(k)56(a\\252)-311(on)-310(mi)-311(d)1(obrze)-311(torb)-27(e)-1(cz)-1(k)1(i...)-310(Mia\\252em)]TJ -27.879 -13.549 Td[(co\\261)-252(gr)1(os)-1(za)-251(o)-28(d)-250(lud)1(z)-1(i)-250(o)-28(c)27(h)1(\\014arn)29(yc)27(h)1(,)-251(com)-252(go)-250(ni\\363s\\252)-251(na)-251(w)28(ot)28(ywy)-251(d)1(o)-251(Cz)-1(\\246s)-1(to)-27(c)27(ho)28(ws)-1(k)1(ie)-1(j)-250(P)28(a-)]TJ 0 -13.549 Td[(ni)1(e)-1(n)1(ki,)-254(to)-254(mi)-254(j)1(uc)28(ha)-254(p)-27(o)-28(debr)1(a\\252)-254(i)-254(p)-28(osze)-1(d)1(\\252)-255(w)28(e)-254(\\261)-1(wiat!)-254(Cic)28(ho)-55(j,)-254(Bur)1(e)-1(k)1(!)-254(b)-28(o)-254(t)1(o)-254(p)-28(ewniki)1(e)-1(m)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)1(!)-334({)-333(p)-27(o)-28(ci\\241)-28(gn\\241\\252)-333(s)-1(zn)28(u)1(rkiem)-334(i)-333(p)1(ie)-1(s)-333(w)27(ar)1(c)-1(ze)-1(\\242)-334(p)1(rze)-1(sta\\252.)]TJ 27.879 -13.55 Td[(Zgad\\252,)-333(b)-27(o)-334(w)28(\\363)-56(j)1(t)-333(w)-1(sze)-1(d)1(\\252)-1(,)-333(b)1(at)-334(r)1(z)-1(u)1(c)-1(i)1(\\252)-334(w)-333(k)55(\\241t)-333(i)-333(o)-28(d)-333(p)1(rogu)-333(w)28(o\\252a\\252)-1(:)]TJ 0 -13.549 Td[({)-351(\\233on)1(o,)-350(je)-1(\\261\\242,)-351(b)-27(om)-351(g\\252o)-28(d)1(n)28(y)-350(kiej)-351(wil)1(k)-351({)-350(jak)-350(s)-1(i)1(\\246)-351(m)-1(acie,)-351(M)1(ac)-1(i)1(e)-1(j)1(u;)-350(a)-351(wy)-350(c)-1(ze)-1(go,)]TJ -27.879 -13.549 Td[(dziad)1(u?...)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(d)1(o)-333(w)27(as,)-333(Pietrze)-1(,)-333(w)28(e)-1(d)1(le)-334(tej)-333(mo)-56(jej)-333(spra)28(wy)84(,)-334(co)-333(m)-1(a)-333(b)28(y\\242)-333(jut)1(ro.)]TJ 0 -13.549 Td[({)-412(Ja)-413(za\\261)-413(se)-413(p)-27(o)-28(c)-1(zek)55(am,)-412(pan)1(ie)-413(w)28(\\363)-56(j)1(c)-1(ie.)-412(Ka\\273e)-1(cie)-413(w)-412(s)-1(ieni)1(ac)27(h)-412({)-412(dob)1(rze)-413(i)-412(tam)]TJ -27.879 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(ie,)-372(a)-371(os)-1(ta)28(wicie)-372(pr)1(z)-1(y)-371(ogniu)1(,)-372(\\273e)-372(to)-372(stary)-372(j)1(e)-1(stem)-1(,)-371(os)-1(tan)1(\\246)-1(,)-371(a)-372(d)1(ac)-1(ie)-372(t\\246)-372(mise)-1(cz)-1(k)28(\\246)]TJ 0 -13.549 Td[(zie)-1(mni)1(ak)28(\\363)27(w)-366(ab)-28(o)-366(i)-367(c)28(hleba)-366(s)-1(ki)1(bk)28(\\246,)-367(to)-366(pacierz)-367(z)-1(a)-366(w)27(as)-367(zm\\363)27(wi\\246)-367(j)1(e)-1(d)1(e)-1(n)-366(ab)-27(o)-367(i)-366(dr)1(ugi..)1(.)]TJ 0 -13.549 Td[(jak)1(b)28(y\\261c)-1(ie)-333(dali)-333(goto)28(wy)-333(grosz)-334(ab)-28(o)-333(i)-333(dzies)-1(i)1(\\241tk)28(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Sied\\271c)-1(i)1(e)-334(s)-1(e,)-333(dostani)1(e)-1(cie)-334(i)-333(k)28(olacj\\246,)-333(a)-334(c)28(hce)-1(cie,)-334(t)1(o)-334(zano)-28(cuj)1(c)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(I)-362(w)28(\\363)-56(j)1(t)-362(siad)1(\\252)-362(do)-361(mis)-1(k)1(i,)-362(ok)1(rytej)-361(par)1(\\241)-362(\\261w)-1(i)1(e)-1(\\273o)-362(u)1(t\\252ucz)-1(on)28(y)1(c)27(h)-361(z)-1(i)1(e)-1(mniak)28(\\363)28(w)-362(i)-361(p)-27(o-)]TJ -27.879 -13.55 Td[(lan)28(y)1(c)27(h)-333(ob)1(\\014cie)-334(skw)27(ar)1(k)55(ar)1(ni,)-333(w)-333(dru)1(giej)-333(don)1(ic)-1(y)-333(sta\\252o)-334(zsiad\\252e)-334(mlek)28(o.)]TJ 27.879 -13.549 Td[({)-322(S)1(iada)-55(jcie)-1(,)-321(Macie)-1(j)1(u,)-321(z)-323(n)1(am)-1(i)1(,)-322(zjec)-1(ie,)-322(co)-322(jes)-1(t)-321({)-322(z)-1(ap)1(rasz)-1(a\\252a)-322(w)28(\\363)-56(j)1(to)27(w)28(a,)-322(k)1(\\252)-1(ad)1(\\241c)]TJ -27.879 -13.549 Td[(trzec)-1(i\\241)-333(\\252y\\273k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(.)-333(P)1(rzyjec)27(h)1(a\\252)-1(em)-334(z)-333(b)-28(or)1(u,)-333(tom)-334(se)-334(j)1(u\\273)-334(d)1(obrze)-334(p)-27(o)-28(dj)1(ad\\252..)1(.)]TJ 0 -13.549 Td[({)-275(Bierz)-1(cie)-275(s)-1(i)1(\\246)-276(an)1(o)-275(z)-1(a)-275(\\252y\\273k)28(\\246,)-275(ni)1(e)-276(zas)-1(zk)28(o)-28(dzi)-275(w)28(am,)-275(te)-1(r)1(az)-276(j)1(u\\273)-275(wiec)-1(zory)-275(d)1(\\252ugie...)]TJ 0 -13.55 Td[({)-418(D\\252ugi)-418(p)1(ac)-1(i)1(e)-1(r)1(z)-419(i)-418(d)1(u\\273a)-418(m)-1(isk)56(a,)-418(jes)-1(zc)-1(ze)-418(b)-28(ez)-419(to)-418(n)1(ikto)-55(j)-418(ni)1(e)-419(p)-27(om)-1(ar)1(\\252)-418({)-419(r)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(dziad)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-376(wzdr)1(aga\\252)-376(si\\246,)-375(ale)-376(w)-375(k)28(o\\253cu,)-375(\\273e)-376(s\\252onin)1(a)-375(m)-1(o)-27(c)-1(n)1(o)-376(r)1(az)-1(i\\252a)-375(m)28(u)-375(nozdr)1(z)-1(a,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(iad)1(\\252)-334(si\\246)-334(d)1(o)-334(\\252a)28(wki)-333(i)-333(p)-28(o)-55(jad)1(a\\252)-334(z)-333(w)27(oln)1(a,)-333(delik)56(atni)1(e)-1(,)-333(jak)-333(ob)29(yc)-1(za)-56(j)-333(k)56(aza\\252.)]TJ 27.879 -13.549 Td[(A)-336(w)27(\\363)-55(jto)28(w)28(a)-337(r)1(az)-337(w)-337(r)1(az)-337(ws)-1(ta)28(w)28(a\\252a)-337(i)-336(d)1(ok\\252ada\\252a)-336(k)56(arto\\015)1(i,)-336(to)-336(m)-1(lek)56(a)-337(p)1(rzylew)27(a\\252a.)]TJ -27.879 -13.549 Td[(Dziado)28(ws)-1(k)1(i)-333(pies)-334(s)-1(i)1(\\246)-334(kr\\246ci\\252)-334(i)-333(sk)56(am)-1(la\\252)-333(zdzie)-1(b)1(k)28(o)-334(d)1(o)-334(j)1(ad\\252a.)]TJ 27.879 -13.55 Td[({)-267(Cic)27(ho,)-267(Bu)1(re)-1(k)1(,)-267(gos)-1(p)-27(o)-28(dar)1(z)-1(e)-267(ano)-267(jedz\\241...)-267(i)-267(t)28(y)-267(dostani)1(e)-1(sz)-1(,)-267(n)1(ie)-268(b)-27(\\363)-56(j)-267(si\\246...)-267(u)1(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(a\\252)-435(go)-435(dziad)-434(i)-435(w)28(c)-1(i)1(\\241)-28(ga\\252)-435(nozdr)1(z)-1(ami)-435(smak)28(o)27(wit)1(\\241)-435(w)27(o\\253)1(,)-435(a)-435(p)1(rzygrze)-1(w)28(a\\252)-435(r\\246ce)-436(p)1(rzy)]TJ 0 -13.549 Td[(ogni)1(u.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(J)1(e)-1(wk)56(a)-334(w)28(as)-334(p)-27(o)-28(dob)1(no)-333(z)-1(ask)56(ar\\273y\\252a)-334({)-333(zac)-1(z\\241\\252)-334(w)28(\\363)-56(j)1(t,)-333(p)-28(o)-27(djad)1(\\252s)-1(zy)-333(nieco.)]TJ 0 -13.549 Td[({)-317(A)-318(on)1(a)-318(ci!)-317(\\233e)-1(m)-317(to)-318(j)1(e)-1(j)-317(zas)-1(\\252u)1(g)-318(n)1(ie)-318(wyp)1(\\252ac)-1(i\\252!)-317(Zap\\252aci\\252e)-1(m,)-317(jak)-317(B\\363g)-318(w)-317(niebi)1(e)-1(,)]TJ -27.879 -13.55 Td[(i)-333(jes)-1(zcz)-1(em)-334(p)-27(onadt)1(o)-334(z)-334(d)1(obr)1(e)-1(go)-333(s)-1(erca)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(u)-333(za)-334(c)28(hrzcin)28(y)-333(da\\252)-333(w)27(or)1(e)-1(k)-333(o)28(ws)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-333(Ona)-333(p)-27(o)27(wieda,)-333(\\273e)-334(ten)-333(dziec)-1(iak)-333(to.)1(..)]TJ\nET\nendstream\nendobj\n93 0 obj <<\n/Type /Page\n/Contents 94 0 R\n/Resources 92 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 79 0 R\n>> endobj\n92 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n97 0 obj <<\n/Length 9004      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(25)]TJ -335.807 -35.866 Td[({)-333(W)-333(im)-1(i)1(\\246)-334(Oj)1(c)-1(a)-333(i)-333(Syn)1(a!)-333(W\\261)-1(ciek\\252a)-334(si\\246)-334(czy)-334(co?)]TJ 0 -13.549 Td[({)-333(Ho,)-333(ho,)-333(s)-1(t)1(ary)-333(z)-334(w)27(as,)-333(a)-333(jes)-1(zc)-1(ze)-334(ma)-56(j)1(s)-1(ter!)-333({)-333(W)83(\\363)-55(jto)28(wie)-334(p)-27(o)-28(cz)-1(\\246li)-333(s)-1(i)1(\\246)-334(\\261)-1(mia\\242.)]TJ 0 -13.549 Td[({)-430(Starem)27(u)-430(p)1(r\\246dze)-1(j)-430(si\\246)-431(pr)1(z)-1(y)1(tra\\014,)-430(b)-27(o)-431(p)1(rakt)28(yk)-430(ci)-431(j)1(e)-1(st)-430(i)-431(zna)-55(j\\241cy!)-430({)-431(sz)-1(ept)1(a\\252)]TJ -27.879 -13.549 Td[(dziad)1(.)]TJ 27.879 -13.549 Td[(-C)-1(y)1(gani)-375(j)1(ak)-375(te)-1(n)-374(pies)-1(,)-375(an)1(im)-376(j)1(\\241)-375(tkn\\241\\252.)1(Je)-1(sz)-1(cz)-1(e)-375(b)28(y)-375(,tak)1(i)-375(t\\252umok...)1(.tak)56(a)-375(p)-28(o)-28(d)1(e)]TJ -27.879 -13.55 Td[(p\\252otem)-260(zdyc)28(ha\\252a)-260(a)-259(s)-1(k)56(amla\\252a,)-259(c)-1(ob)28(y)-259(j\\241)-259(z)-1(a)-259(s)-1(am\\241)-260(w)28(arz\\246)-260(a)-260(k)56(\\241t)-259(do)-260(span)1(ia)-259(w)-1(zi\\241\\242,)-260(b)-27(o)-260(n)1(a)]TJ 0 -13.549 Td[(zim)-1(\\246)-304(sz)-1(\\252o.)-304(Ni)1(e)-305(c)28(hcia\\252e)-1(m,)-304(al)1(e)-305(n)1(ieb)-28(osz)-1(k)56(a)-304(p)-27(e)-1(d)1(a:)-304(\\377)28(W)84(e)-1(\\271m)-1(i)1(e)-1(m,)-304(p)1(rz)-1(y)1(da)-304(si\\246)-304(w)-304(dom)27(u)1(,)-304(co)]TJ 0 -13.549 Td[(mam)27(y)-345(p)1(rzyna)-55(jmo)27(w)28(a\\242?)-346(b)-27(\\246)-1(d)1(z)-1(i)1(e)-346(sw)27(o)-55(ja)-345(p)-27(o)-28(d)-345(r)1(\\246)-1(k)56(\\241...\")-345(Ni)1(e)-346(c)27(h)1(c)-1(i)1(a\\252)-1(em)-345(ja,)-345(j)1(ak)28(o)-346(\\273e)-346(zim\\241)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)-339(nij)1(akiej,)-339(a)-339(jedn)1(a)-339(g\\246)-1(b)1(a)-340(wi\\246c)-1(ej)-339(d)1(o)-340(miski.)-339(Ale)-339(nieb)-28(oszk)55(a)-339(p)-27(e)-1(d)1(o:)-339(\\377)-56(Nie)-339(turb)1(uj)]TJ 0 -13.549 Td[(si\\246)-1(,)-313(u)1(m)-1(ie)-313(p)-28(on)1(o)-314(w)28(e)-1(\\252n)1(iaki)-313(i)-313(p\\252\\363tn)1(o)-314(tk)56(a\\242,)-314(zas)-1(ad)1(z)-1(\\246)-313(j\\241)-313(i)-314(n)1(iec)27(h)28(ta)-313(s)-1(e)-313(\\261)-1(cibie,)-313(z)-1(a)28(w\\273)-1(d)1(y)-313(c)-1(o\\261)]TJ 0 -13.549 Td[(u\\261cibie\".)-282(No)-283(i)-282(osta\\252a,)-283(o)-28(d)1(pas\\252a)-283(si\\246)-283(in)1(o)-283(i)-282(zarno)-282(s)-1(i)1(\\246)-283(p)-28(ostara\\252a)-282(o)-283(p)1(rzyc)27(h)1(\\363)27(w)28(ek...)-282(A)-282(kto)]TJ 0 -13.55 Td[(w)-334(sp)-27(\\363\\252c)-1(e,)-333(to)-334(j)1(u\\273)-334(r)1(\\363\\273)-1(n)1(ie)-334(gad)1(ali...)]TJ 27.879 -13.549 Td[({)-333(Ona)-333(sk)55(ar)1(\\273)-1(y)-333(na)-333(w)28(as)-1(.)]TJ 0 -13.549 Td[({)-333(Zak)55(atr)1(up)1(i\\246)-334(\\261c)-1(ierw)28(\\246)-1(,)-333(cygana)-333(p)1(ie)-1(skiego!)]TJ 0 -13.549 Td[({)-333(Ale)-334(d)1(o)-334(s\\241du)-333(tr)1(z)-1(a)-333(w)27(am)-333(i\\261\\242)-1(.)]TJ 0 -13.549 Td[({)-265(P)28(\\363)-55(jd)1(\\246)-1(.)-265(B\\363g)-265(zap\\252a\\242)-1(,)-264(\\273)-1(e\\261)-1(cie)-265(m)-1(i)-264(p)-28(o)28(wiedzie)-1(l)1(i,)-265(b)-27(o)-265(wie)-1(d)1(z)-1(i)1(a\\252)-1(em)-265(ino,)-264(\\273)-1(e)-265(o)-265(z)-1(as\\252ugi)]TJ -27.879 -13.55 Td[({)-347(ale)-348(zap\\252aci\\252em)-1(,)-347(n)1(a)-347(c)-1(o)-347(\\261w)-1(i)1(adk)28(\\363)28(w)-348(mam.)-347(A)-347(p)28(ysk)55(acz)-348(zap)-27(o)27(wietrzon)28(y)84(,)-347(a)-347(dzid\\363)28(wk)56(a!)]TJ 0 -13.549 Td[(Lab)-27(oga)-375(t)28(yle)-374(umart)28(wie)-1(n)1(ia,)-374(\\273)-1(e)-375(j)1(a\\273)-375(c)27(h)28(y)1(ba)-374(udzier\\273y\\242)-375(ni)1(e)-375(udzier\\273\\246)-375(a)-375(to)-374(mi)-375(i)-374(kr)1(o)27(w)28(a)]TJ 0 -13.549 Td[(pad)1(\\252a,)-306(\\273)-1(e)-306(dorzn\\241\\242)-306(m)27(u)1(s)-1(i)1(a\\252)-1(em,)-306(rob)-27(ot)28(y)-306(nie)-306(p)-28(ok)28(o\\253)1(c)-1(zone,)-306(a)-306(tu)-306(cz)-1(\\252o)28(wie)-1(k)-306(sam)-307(k)1(ie)-1(j)-305(te)-1(n)]TJ 0 -13.549 Td[(pal)1(e)-1(c.)]TJ 27.879 -13.549 Td[({)-333(U)-334(wd)1(o)27(w)28(c)-1(a)-333(to)-333(kiej)-333(mi\\246)-1(d)1(z)-1(y)-333(wilk)56(ami)-333(o)28(w)27(ca)-334({)-333(p)-27(o)27(wiedzia\\252)-333(z)-1(n)1(o)27(wu)-333(d)1(z)-1(i)1(ad.)-333(.)]TJ 0 -13.55 Td[({)-333(O)-333(kro)28(wie)-1(m)-333(s)-1(\\252ysz)-1(a\\252,)-333(m\\363)28(w)-1(i)1(li)-333(m)-1(i)-333(j)1(u\\273)-334(n)1(a)-333(p)-28(olu)1(...)]TJ 0 -13.549 Td[({)-225(T)83(o)-225(d)1(w)27(or)1(s)-1(k)56(a)-225(spra)28(w)28(a,)-225(b)-27(o)-225(p)-28(on)1(o)-225(b)-27(oro)28(w)-1(y)-224(wygna\\252)-225(z)-225(z)-1(aga)-55(j\\363)28(w.)-225(Na)-56(j)1(lepsz)-1(a)-225(k)1(ro)28(w)27(a!)]TJ -27.879 -13.549 Td[(Ze)-229(tr)1(z)-1(ysta)-228(z)-1(\\252ot)28(yc)27(h)-227(w)27(art)1(a\\252)-1(a,)-228(\\273e)-1(gn)1(a\\252a)-229(si\\246,)-228(b)-28(o)-228(c)-1(i)1(\\246)-1(\\273k)56(a)-229(b)28(y)1(\\252a,)-229(zapal)1(i\\252y)-228(s)-1(i\\246)-228(w)-229(ni)1(e)-1(j)-228(w)28(\\241tpi)1(a,)]TJ 0 -13.549 Td[(\\273e)-1(m)-334(d)1(orzn\\241\\242)-334(m)28(usia\\252...)-333(Ale)-333(dw)28(oro)28(wi)-334(t)1(e)-1(go)-333(nie)-333(daru)1(j\\246...)-333(P)28(o)-27(dam)-334(d)1(o)-334(s\\241du)1(.)]TJ 27.879 -13.549 Td[(Ale)-382(w)28(\\363)-56(jt)-381(z)-1(acz\\241\\252)-382(m)27(u)-381(t\\252umac)-1(zy\\242)-382(i)-381(prze)-1(k)1(\\252ada\\242)-1(,)-381(\\273e)-1(b)28(y)-381(s)-1(i)1(\\246)-383(wstrzyma\\252)-1(,)-381(jak)28(o)-381(w)]TJ -27.879 -13.55 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(ej)-265(z\\252o\\261)-1(ci)-265(za)27(wsz)-1(e)-265(s)-1(i)1(\\246)-266(\\271le)-265(radzi,)-265(b)-27(o)-265(s)-1(t)1(a\\252)-266(za)-265(dw)28(orem,)-265(a)-265(w)-266(k)28(o\\253)1(c)-1(u)1(,)-265(\\273e)-1(b)28(y)-264(z)-1(wr\\363)-28(ci\\242)]TJ 0 -13.549 Td[(rozmo)27(w)28(\\246)-334(w)-333(inn)1(\\241)-334(stron)1(\\246)-1(,)-333(mru)1(gn\\241\\252)-333(na)-333(\\273)-1(on)1(\\246)-334(i)-333(p)-28(o)28(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-333(B)-1(ob)29(y\\261)-1(cie)-334(si\\246,)-333(Mac)-1(i)1(e)-1(j)1(u,)-333(o\\273)-1(eni)1(li)-333(i)-333(m)-1(i)1(a\\252)-1(b)29(y)-333(kto)-334(gosp)-27(o)-28(dar)1(s)-1(t)28(w)28(a)-334(p)1(iln)1(o)27(w)28(a\\242.)]TJ 0 -13.549 Td[({)-272(K)1(picie)-272(c)-1(zy)-272(co?...)-271(A)-272(d)1(y\\242)-272(na)-272(Zi)1(e)-1(ln)1(\\241)-272(sk)28(o\\253cz)-1(y\\252em)-272(pi\\246\\242dzie)-1(si\\241t)-271(i)-272(osie)-1(m)-272(r)1(ok)28(\\363)27(w.)]TJ -27.879 -13.549 Td[(Co)-334(w)28(ama)-334(te\\273)-334(w)-333(g\\252)-1(o)28(wie,)-333(jes)-1(zc)-1(ze)-334(tam)28(ta)-334(d)1(obr)1(z)-1(e)-334(n)1(ie)-334(ost)28(yg\\252a...)]TJ 27.879 -13.55 Td[({)-325(W)83(e\\271c)-1(ie)-325(k)28(obit\\246)-325(do)-325(sw)27(ego)-325(w)-1(i)1(e)-1(ku)1(,)-325(a)-325(z)-1(ar)1(az)-326(si\\246)-326(w)28(am)-326(zgoi)-325(ws)-1(zystk)28(o)-325({)-326(d)1(o)-28(d)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)1(o)27(w)28(a)-333(i)-334(j)1(\\246)-1(\\252a)-333(s)-1(p)1(rz\\241ta\\242)-334(ze)-334(s)-1(t)1(o\\252)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-358(Dobr)1(a)-359(\\273ona)-358(g\\252o)28(wy)-358(m)-1(\\246\\273)-1(o)28(w)28(e)-1(j)-358(k)28(or)1(ona)-358({)-358(dorzuci\\252)-358(dziad)1(,)-359(ob)1(mac)-1(u)1(j\\241c)-359(miski,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-334(pr)1(z)-1(ed)-333(nim)-333(p)-28(osta)28(wi\\252a)-334(w)28(\\363)-56(j)1(to)28(w)27(a.)]TJ 27.879 -13.549 Td[(\\233ac)27(h)1(n\\241\\252)-262(s)-1(i)1(\\246)-263(Boryn)1(a,)-262(ale)-262(z)-1(amedyto)28(w)28(a\\252)-263(g\\252\\246b)-27(ok)28(o,)-262(\\273)-1(e)-262(m)27(u)-261(to)-262(s)-1(amem)27(u)-262(d)1(o)-262(g\\252o)27(wy)]TJ -27.879 -13.549 Td[(ni)1(e)-499(p)1(rzys)-1(z\\252o.)-498(Bo)-28(\\242)-498(jak)56(a)-498(si\\246)-498(tam)-498(k)28(obi)1(e)-1(ta)-498(n)1(adar)1(z)-1(y)84(,)-498(a)-498(za)28(w)-1(\\273dy)-497(\\273)-498(ni\\241)-497(le)-1(p)1(iej)-498(n)1(i\\271)-1(l)1(i)]TJ 0 -13.55 Td[(sam)-1(em)27(u)-333(b)1(ie)-1(d)1(o)28(w)27(a\\242...)]TJ 27.879 -13.549 Td[({)-248(Kt\\363r)1(a)-248(i)-248(g\\252u)1(pia)-248(j)1(e)-1(st,)-247(i)-248(ni)1(e)-1(mra)28(w)27(a,)-247(kt\\363ra)-247(z)-1(n)1(\\363)27(w)-248(k)1(\\252)-1(\\363t)1(nica,)-248(kt\\363r)1(a)-248(do)-247(c)27(h\\252op)1(s)-1(ki)1(c)27(h)]TJ -27.879 -13.549 Td[(k)28(o\\252tun)1(\\363)28(w)-477(s)-1(i)1(\\246)-1(ga)-55(j\\241ca,)-477(kt)1(\\363ra)-477(p)1(aparu)1(c)27(h)-476(a)-476(lata)28(w)-1(i)1(e)-1(c)-477(p)-27(o)-477(m)28(uzyk)56(ac)27(h)-476(i)-476(k)55(ar)1(c)-1(zm)-1(ac)28(h,)-476(a)]TJ 0 -13.549 Td[(za)27(w\\273dy)-333(c)27(h)1(\\252opu)-333(z)-334(n)1(i\\241)-333(le)-1(p)1(iej)-333(i)-333(w)-1(y)1(go)-28(da)-333({)-333(c)-1(i\\241)-27(gn\\241\\252)-333(dziad,)-333(p)-27(o)-56(j)1(ada)-55(j\\241c.)]TJ 27.879 -13.549 Td[({)-333(Dopiero)-333(b)28(y)-333(na)-333(ws)-1(i)-333(wyd)1(z)-1(i)1(w)-1(i)1(ali)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(Boryn)1(a)]TJ 0 -13.55 Td[({)-346(Hale)-347({)-346(lud)1(z)-1(i)1(e)-347(w)27(ar)1(na)-346(z)-1(wr\\363)-27(c)-1(\\241)-346(kro)28(w)28(\\246)-347(ab)-28(o)-346(i)-346(co)-347(p)-27(orad)1(z)-1(\\241.)-346(ab)-27(o)-347(i)-346(ki)1(e)-1(le)-346(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(s)-1(t)28(w)28(a)-334(c)28(ho)-28(d)1(z)-1(i)1(\\242)-334(b)-28(\\246d\\241,)-333(ab)-27(o)-333(s)-1(i\\246)-333(nad)-333(w)28(am)-1(i)-333(u)1(\\273)-1(al\\241)-333({)-333(z)-1(agad)1(a\\252a)-334(gor)1(\\241c)-1(o)-333(w)27(\\363)-55(jto)28(w)28(a.)]TJ\nET\nendstream\nendobj\n96 0 obj <<\n/Type /Page\n/Contents 97 0 R\n/Resources 95 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n95 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n101 0 obj <<\n/Length 8074      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(26)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-395(Ab)-27(o)-395(i)-394(c)-1(iep\\252\\241)-395(p)1(ierzyn\\246)-395(nar)1(z)-1(\\241d)1(z)-1(\\241)-395({)-394(z)-1(a\\261m)-1(i)1(a\\252)-395(s)-1(i)1(\\246)-396(w)28(\\363)-56(j)1(t.)-395(A)-394(w)27(e)-395(ws)-1(i)-394(t)28(yle)-395(jes)-1(t)]TJ -27.879 -13.549 Td[(dziewuc)27(h)1(,)-333(\\273)-1(e)-334(j)1(ak)-333(s)-1(i)1(\\246)-334(idzie)-334(mi\\246dzy)-333(c)27(ha\\252u)1(pami,)-333(to)-333(bu)1(c)27(ha)-333(kiej)-333(z)-334(p)1(iec)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Ale)-1(,)-333(wid)1(z)-1(i)1(s)-1(z)-334(go,)-333(r)1(oz)-1(p)1(us)-1(t)1(nik.)1(..)-333(c)-1(ze)-1(go)-333(m)28(u)-333(s)-1(i\\246)-333(z)-1(ac)28(hcie)-1(w)28(a...)]TJ 0 -13.549 Td[({)-333(A)-333(Zo\\261)-1(k)56(a)-333(Grzegorz)-1(o)28(w)28(a)-333(na)-333(ten)-333(pr)1(z)-1(y)1(k\\252ad,)-333(\\261m)-1(i)1(g\\252)-1(a,)-332(pi\\246kna)-333(i)-333(wian)1(o)-333(niez)-1(gor)1(-)]TJ -27.879 -13.549 Td[(sz)-1(e.)]TJ 27.879 -13.55 Td[({)-333(A)-334(c\\363\\273)-334(to)-333(Maciejo)28(wi)-334(p)-27(otrza)-333(w)-1(i)1(ana,)-333(ni)1(e)-334(gos)-1(p)-27(o)-28(d)1(arz)-334(to)-333(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(w)28(e)-334(ws)-1(i)1(?)]TJ 0 -13.549 Td[({)-333(Kto)-333(b)28(y)-333(ta)-333(m)-1(ia\\252)-333(dob)1(ra)-333(a)-334(i)-333(gr)1(on)28(tu)-333(d)1(os)-1(y\\242)-333({)-334(zaop)-28(on)1(o)28(w)27(a\\252)-333(dziad.)]TJ 0 -13.549 Td[({)-269(Ni,)-268(Grze)-1(gor)1(z)-1(o)28(w)28(a)-269(nie)-269(la)-269(n)1(ic)27(h)-268({)-269(p)-28(o)-27(dj)1(\\241\\252)-269(w)27(\\363)-55(jt)-269({)-269(za)-269(md\\252a)-269(i)-269(m\\252\\363)-28(dk)56(a)-269(to)-269(j)1(e)-1(szc)-1(ze)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(J\\246dr)1(k)28(o)28(w)27(a)-333(Kasia?)-334({)-333(wylicz)-1(a\\252a)-333(dal)1(e)-1(j)-333(w)28(\\363)-56(j)1(to)28(w)27(a.)]TJ 0 -13.549 Td[({)-333(Zm)-1(\\363)28(wiona.)-333(W)1(c)-1(zora)-56(j)-333(Ro)-27(c)27(h\\363)28(w)-333(Adam)-334(p)-27(osy\\252a\\252)-334(z)-334(w)28(\\363)-28(d)1(k)55(\\241)]TJ 0 -13.549 Td[({)-333(Je)-1(st)-333(c)-1(i)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(Stac)27(h)1(o)28(w)27(a)-333(W)83(eron)1(k)55(a.)]TJ 0 -13.55 Td[({)-333(Mamrot,)-333(lata)28(wiec)-334(i)-333(jedn)1(o)-334(b)1(ie)-1(d)1(ro)-333(ma)-334(gr)1(ubsze)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(wd)1(o)27(w)28(a)-333(p)-28(o)-333(T)83(omku,)-333(j)1(ak\\273)-1(e)-333(to)-334(j)1(e)-1(j)1(?...)-333(c)-1(a\\252k)1(ie)-1(m)-333(jes)-1(zc)-1(ze)-334(do)-333(\\273e)-1(n)1(iac)-1(zki.)1(..)]TJ 0 -13.549 Td[({)-299(T)83(ro)-55(je)-300(d)1(z)-1(i)1(e)-1(ci,)-299(cz)-1(tery)-299(morgi,)-299(d)1(w)27(a)-299(kr)1(o)27(wie)-299(ogon)28(y)-299(i)-299(s)-1(t)1(ary)-299(k)28(o\\273)-1(u)1(c)27(h)-299(p)-27(o)-299(nieb)-27(os)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(yk)1(u)]TJ 27.879 -13.549 Td[({)-333(A)-334(Ul)1(is)-1(i)1(a)-334(tego)-333(W)83(o)-55(jtk)56(a,)-333(c)-1(o)-333(to)-333(z)-1(a)-333(k)28(o\\261)-1(cio\\252em)-334(sie)-1(d)1(z)-1(i)1(?)-1(.)1(..)]TJ 0 -13.55 Td[({)-279(I...)-279(t)1(o)-280(l)1(a)-279(k)55(a)28(w)28(ale)-1(r)1(a...)-279(z)-279(pr)1(z)-1(yc)28(ho)28(wkiem)-1(,)-279(c)28(h\\252op)1(ak)-279(m)-1(\\363g\\252b)28(y)-278(ju\\273)-279(b)28(y\\242)-279(do)-279(p)1(as)-1(ion)1(-)]TJ -27.879 -13.549 Td[(ki,)-333(al)1(e)-334(Macie)-1(j)1(o)28(w)-1(i)-333(tego)-333(nie)-334(p)-27(otr)1(z)-1(a,)-333(ma)-334(j)1(u\\273)-334(p)1(as)-1(t)1(uc)27(h)1(a)-334(sw)27(o)-55(jego.)]TJ 27.879 -13.549 Td[({)-340(Jes)-1(t)-339(c)-1(i)-339(jes)-1(zcz)-1(e,)-340(j)1(e)-1(st)-340(tego)-340(nasienia)-339(pan)1(o)27(w)28(e)-1(go,)-339(ale)-340(in)1(o)-340(wybi)1(e)-1(ram)-340(tak)1(ie)-1(,)-339(c)-1(o)]TJ -27.879 -13.549 Td[(b)28(y)-333(p)1(as)-1(o)28(w)27(a\\252y)-333(la)-333(Macieja.)]TJ 27.879 -13.549 Td[({)-333(A)-334(zabacz)-1(y)1(\\252a\\261)-334(o)-334(j)1(e)-1(d)1(nej,)-333(co)-334(b)29(y)-334(b)29(y\\252a)-334(l)1(a)-334(n)1(ic)27(h)-333(w)-333(s)-1(am)-333(raz.)]TJ 0 -13.55 Td[({)-333(Kt\\363rn)1(a?....)]TJ 0 -13.549 Td[({)-333(A)-334(Jagn)1(a)-333(Dom)-1(i)1(nik)28(o)28(w)28(a)-1(?)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(ca\\252kiem)-334(o)-333(niej)-333(pr)1(z)-1(ep)-27(om)-1(n)1(ia\\252am)-1(.)]TJ 0 -13.549 Td[({)-364(Sieln)1(a)-365(d)1(z)-1(i)1(e)-1(wuc)28(ha,)-364(a)-364(ros\\252a,)-364(\\273)-1(e)-365(b)-27(ez)-365(p\\252ot)-364(n)1(ie)-365(p)1(rz)-1(ejd)1(z)-1(i)1(e)-1(,)-364(b)-27(o)-364(\\273)-1(erd)1(ki)-364(p)-28(o)-27(d)-364(ni\\241)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(k)56(a)-56(j)1(\\241...)-333(a)-333(pi)1(\\246)-1(kn)1(a,)-333(bia\\252a)-333(na)-333(g\\246)-1(b)1(ie,)-333(a)-334(u)1(ro)-28(d)1(na)-333(kiej)-333(ja\\252o)28(wic)-1(a.)]TJ 27.879 -13.55 Td[({)-438(Jagna)-438({)-438(p)-28(o)28(wt\\363rzy\\252)-438(B)-1(or)1(yna)-438(s\\252)-1(u)1(c)27(h)1(a)-56(j)1(\\241c)-1(y)-438(w)-439(mil)1(c)-1(ze)-1(n)1(iu)-438(wyliczania)-438({)-438(a)-439(to)]TJ -27.879 -13.549 Td[(p)-27(o)27(wieda)-55(j\\241)-333(o)-333(niej,)-333(\\273e)-334(\\252as)-1(a)-333(na)-333(c)27(h)1(\\252opak)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-297(Ale)-1(,)-297(b)29(y\\252)-298(to)-297(kto)-297(pr)1(z)-1(y)-297(t)28(ym,)-297(to)-297(w)-1(i)1(e)-1(!)-297(Pl)1(e)-1(ciuc)28(h)28(y)-297(plet\\241,)-297(b)28(yl)1(e)-298(pl)1(e)-1(\\261\\242)-1(,)-297(a)-297(w)-1(szys)-1(tk)28(o)]TJ -27.879 -13.549 Td[(in)1(o)-334(p)1(rze)-1(z)-334(zazdro\\261\\242)-334({)-333(bron)1(i\\252a)-333(m)-1(o)-27(c)-1(n)1(o)-334(w)28(\\363)-56(j)1(to)28(w)27(a)]TJ 27.879 -13.549 Td[({)-368(Ja)-369(te\\273)-369(ni)1(e)-369(p)-28(o)28(wiedam)-369(sam)-369(z)-369(siebie,)-368(ino)-368(tak)-368(p)-28(ogad)1(uj)1(\\241.)-369(Al)1(e)-369(trza)-369(mi)-368(i\\261)-1(\\242)-369({)]TJ -27.879 -13.55 Td[(p)-27(opra)28(wi\\252)-333(pasa,)-333(w)-1(r)1(az)-1(i\\252)-333(w)28(\\246)-1(gielek)-333(w)27(e)-334(f)1(a)-56(j)1(k)28(\\246)-334(i)-333(p)28(ykn)1(\\241\\252)-334(p)1(ar\\246)-334(r)1(az)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(k)1(t\\363r\\241)-333(to)-334(w)-333(s)-1(\\241d)1(z)-1(i)1(e)-1(?)-333({)-334(zap)28(yta\\252)-333(s)-1(p)-27(ok)28(o)-55(jni)1(e)-1(.)]TJ 0 -13.549 Td[({)-475(Na)-475(dzie)-1(wi\\241t)1(\\241)-476(n)1(apisane)-475(w)-476(p)-27(o)28(wie)-1(stce)-1(.)-475(M)1(usic)-1(i)1(e)-476(do)-475(d)1(nia)-475(ws)-1(t)1(a\\242)-1(,)-475(j)1(e)-1(\\261li)-475(na)]TJ -27.879 -13.549 Td[(pi)1(e)-1(c)28(h)28(t)28(y)83(.)]TJ 27.879 -13.549 Td[({)-368(I)-1(.)1(..)-368(\\271)-1(r)1(\\363bk)56(\\241)-369(se)-369(w)28(olno)-368(p)-28(o)-55(jad)1(\\246)-1(.)-368(Osta\\253cie)-369(z)-369(Bogiem)-1(,)-368(d)1(z)-1(i\\246ku)1(j\\246)-369(w)28(am)-1(a)-368(za)-369(p)-27(o-)]TJ -27.879 -13.549 Td[(\\273ywie)-1(n)1(ie)-334(i)-333(som)-1(siedzk)55(\\241)-333(rad)1(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-335(Id\\271cie)-336(z)-335(Bogiem)-1(,)-334(a)-335(p)-28(om)28(y\\261lc)-1(i)1(e)-1(,)-335(co\\261w)27(a)-335(w)28(am)-1(a)-334(raili)1(...)-335(P)29(o)27(wiec)-1(i)1(e)-1(,)-334(to)-335(z)-336(w)28(\\363)-28(d)1(k)55(\\241)]TJ -27.879 -13.549 Td[(p)-27(\\363)-56(j)1(d\\246)-334(d)1(o)-334(p)1(ani)-333(matki)-333(i)-333(jes)-1(zc)-1(ze)-334(p)1(rze)-1(d)-333(Go)-27(dami)-333(s)-1(p)1(ra)28(wim)-334(w)28(e)-1(se)-1(l)1(e)-1(...)]TJ 27.879 -13.549 Td[(Boryn)1(a)-334(n)1(ie)-334(o)-28(d)1(rze)-1(k\\252)-333(ni)1(c)-1(,)-333(\\252yp)1(n\\241\\252)-333(ino)-333(o)-28(cz)-1(ami)-333(i)-333(wys)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[({)-347(Jak)-347(stary)-347(m\\252\\363)-28(dk)28(\\246)-347(bierze)-1(,)-347(d)1(iab)-27(e)-1(\\252)-347(si\\246)-348(cies)-1(zy)83(,)-347(b)-27(o)-347(pr)1(o\\014t)-347(z)-348(tego)-347(mia\\252)-348(b)-27(\\246dzie)]TJ -27.879 -13.549 Td[({)-333(rze)-1(k\\252)-333(dziad)-333(p)-27(o)28(w)27(a\\273nie,)-333(s)-1(k)1(robi)1(\\241c)-334(g\\252o\\261)-1(n)1(o)-334(p)-27(o)-333(dni)1(e)-334(mis)-1(k)1(i.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-303(w)27(ol)1(no)-303(wraca\\252)-303(i)-303(\\273)-1(u)1(\\252)-303(w)-303(s)-1(ob)1(ie)-303(roz)-1(w)28(a\\273nie,)-303(co)-303(m)27(u)-302(raili)1(.)-303(Nie)-303(da\\252)-303(p)-27(oz)-1(n)1(a\\242)]TJ -27.879 -13.549 Td[(p)-27(o)-331(sobie)-331(tam)-331(u)-330(w)27(\\363)-55(jt\\363)28(w,)-330(\\273)-1(e)-331(m)27(u)-330(si\\246)-331(ta)-331(m)28(y\\261)-1(l)-330(s)-1(t)1(ras)-1(zni)1(e)-331(uda\\252a,)-330(b)-28(o)-330(jak\\273e,)-331(gosp)-28(o)-27(darz)]TJ\nET\nendstream\nendobj\n100 0 obj <<\n/Type /Page\n/Contents 101 0 R\n/Resources 99 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n99 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n104 0 obj <<\n/Length 9436      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(27)]TJ -363.686 -35.866 Td[(b)28(y\\252,)-357(a)-358(nie)-358(\\273aden)-358(c)28(h\\252opak)1(,)-358(c)-1(o)-357(to)-358(m)-1(a)-357(jes)-1(zc)-1(ze)-358(m)-1(lek)28(o)-358(p)-27(o)-28(d)-357(nos)-1(em,)-358(a)-358(n)1(a)-358(ws)-1(p)-27(om)-1(i)1(nek)]TJ 0 -13.549 Td[(o)-333(\\273)-1(eniaczc)-1(e)-334(a\\273e)-334(kwicz)-1(y)-333(i)-333(z)-334(n)1(ogi)-333(na)-333(nog\\246)-334(p)1(rzydeptu)1(je)]TJ 27.879 -13.549 Td[(No)-28(c)-330(ju)1(\\273)-330(ogarn\\246\\252a)-330(z)-1(i)1(e)-1(mi\\246,)-330(gwiazdy)-330(srebr)1(n\\241)-330(r)1(os)-1(\\241)-330(p)-27(ob\\252yskiw)28(a\\252y)-330(z)-330(cie)-1(mn)28(yc)28(h,)]TJ -27.879 -13.549 Td[(g\\252uc)28(h)28(yc)27(h)-294(g\\252)-1(\\246bi)1(n,)-295(cic)27(h)1(o)-296(b)29(y\\252o)-295(w)27(e)-296(wsi,)-295(psy)-295(t)28(ylk)28(o)-295(ni)1(e)-1(ki)1(e)-1(d)1(y)-295(p)-28(osz)-1(cze)-1(ki)1(w)27(a\\252y)84(,)-295(a)-296(tu)-294(i)-295(\\363)27(w-)]TJ 0 -13.549 Td[(dzie)-319(sp)-28(oza)-319(d)1(rze)-1(w)-318(m)-1(\\273y\\252y)-318(s)-1(i\\246)-319(s\\252ab)-27(e)-319(\\261)-1(wiate\\252k)55(a.)1(..)-318(c)-1(zas)-1(em)-319(wilgotn)28(y)-318(p)-27(o)-28(dm)28(uc)28(h)-318(z)-1(a)28(wia\\252)]TJ 0 -13.55 Td[(z)-334(\\252\\241k,)-333(\\273e)-334(dr)1(z)-1(ew)27(a)-333(p)-27(o)-28(c)-1(z\\246\\252)-1(y)-333(si\\246)-334(l)1(e)-1(kk)28(o)-333(c)27(h)29(yb)-28(ota\\242.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-468(nie)-468(wr\\363)-28(ci\\252)-468(dr)1(og\\241,)-468(jak)56(\\241)-468(b)28(y)1(\\252)-469(p)1(rzysz)-1(ed\\252,)-468(a)-468(t)28(yl)1(k)28(o)-468(pu\\261ci\\252)-468(s)-1(i)1(\\246)-469(w)-468(d\\363\\252,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(zed\\252)-386(m)-1(ost,)-386(p)-27(o)-28(d)-385(kt\\363rym)-386(w)28(o)-28(da)-386(z)-386(b)-28(e\\252k)28(otem)-387(p)1(rze)-1(lew)27(a\\252a)-386(si\\246)-386(do)-386(rze)-1(k)1(i)-386(i)-386(w)28(ali\\252a)]TJ 0 -13.549 Td[(g\\252uc)28(ho)-357(n)1(a)-357(m\\252yn,)-356(i)-357(n)1(a)28(w)-1(r)1(\\363)-28(ci\\252)-357(na)-356(dru)1(g\\241)-357(stron)1(\\246)-357(s)-1(ta)28(wu)-356({)-357(w)27(o)-27(dy)-356(le)-1(\\273a\\252y)-357(cic)27(h)1(e)-357(i)-357(l)1(\\261)-1(n)1(i\\252y)]TJ 0 -13.549 Td[(si\\246)-456(cz)-1(ar)1(nia)28(w)28(o,)-455(p)-28(ob)1(rz)-1(e\\273ne)-456(d)1(rze)-1(w)28(a)-455(rz)-1(u)1(c)-1(a\\252y)-455(n)1(a)-455(ta\\015\\246)-456(czarne)-455(c)-1(ieni)1(e)-456(i)-455(jak)1(b)28(y)-455(ram\\241)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252y)-252(brze)-1(gi)1(,)-252(a)-253(w)-252(p)-27(o\\261)-1(r)1(o)-28(dku)-251(s)-1(ta)28(wu,)-252(gd)1(z)-1(i)1(e)-253(ja\\261ni)1(e)-1(j)-252(b)29(y\\252o,)-252(o)-28(db)1(ij)1(a\\252)-1(y)-252(si\\246)-252(gw)-1(i)1(az)-1(d)1(y)]TJ 0 -13.55 Td[(ni)1(b)28(y)-333(w)-334(zwie)-1(r)1(c)-1(iad)1(le)-334(stalo)28(wym.)]TJ 27.879 -13.549 Td[(Maciej)-349(sam)-349(ni)1(e)-349(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-348(dlacze)-1(go)-349(n)1(ie)-349(p)-27(os)-1(ze)-1(d)1(\\252)-349(pr)1(os)-1(to)-348(do)-348(dom)27(u)1(,)-349(a)-348(wybr)1(a\\252)]TJ -27.879 -13.549 Td[(d\\252u)1(\\273)-1(sz)-1(\\241)-425(dr)1(og\\246)-1(,)-425(mo\\273)-1(e)-425(ab)28(y)-425(prze)-1(j)1(\\261)-1(\\242)-425(k)28(o\\252o)-426(d)1(om)27(u)-425(Jagn)28(y)1(?)-426(a)-425(m)-1(o\\273e)-426(ab)28(y)-425(ze)-1(b)1(ra\\242)-426(n)1(ie)-1(co)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(li)-333(i)-333(p)-27(om)-1(edy)1(to)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-238(Ju)1(\\261)-1(ci,)-238(\\273e)-239(b)28(y)1(\\252)-1(ob)29(y)-238(niezgorz)-1(ej!)-237(ju)1(\\261)-1(ci!)-238(A)-238(co)-238(tam)-239(o)-238(n)1(iej)-238(m\\363)27(wi\\241,)-237(to)-238(tak)55(a)-238(p)1(ra)28(wda.)]TJ -27.879 -13.55 Td[({)-302(S)1(pl)1(un\\241\\252.)-301({)-302(S)1(ielna)-301(k)28(obieta!{)-301(Dres)-1(zc)-1(z)-302(n)1(im)-302(wstrz\\241s)-1(n\\241\\252,)-301(b)-27(o)-302(i)-301(c)27(h)1(\\252\\363)-28(d)-301(w)-1(i)1(lgotn)28(y)-301(s)-1(zed\\252)]TJ 0 -13.549 Td[(o)-28(d)-333(sta)28(w)27(\\363)28(w,)-333(a)-334(u)-333(w)28(\\363)-56(j)1(t\\363)28(w)-334(gor)1(\\241c)-334(b)28(y\\252)-333(s)-1(i)1(ln)28(y)84(.)]TJ 27.879 -13.549 Td[({)-311(A)-311(b)-27(e)-1(z)-311(k)28(obiet)28(y)-311(trza)-311(zm)-1(arn)1(ie\\242)-312(ab)-27(o)-311(dziec)-1(iom)-311(gosp)-28(o)-28(d)1(ark)28(\\246)-311(o)-28(dp)1(isa\\242)-312({)-311(m)28(y\\261)-1(l)1(a\\252)]TJ -27.879 -13.549 Td[({)-340(a)-340(du)1(\\273)-1(a)-340(ju)1(c)27(h)1(a)-340(i)-340(kiej)-340(malo)28(w)27(an)1(a.)-340({)-340(A)-341(k)1(ro)28(w)27(a)-340(n)1(a)-56(j)1(le)-1(p)1(s)-1(za)-340(pad)1(\\252)-1(a,)-339(a)-341(k)1(to)-340(w)-1(i)1(e)-341(j)1(utra?..)1(.)]TJ 0 -13.549 Td[(Mo\\273e)-256(to)-255(i)-255(trza)-255(p)-28(oszuk)56(a\\242)-256(\\273on)28(y?)-255(T)27(yl)1(e)-256(obl)1(e)-1(cz)-1(enia)-255(p)-27(o)-255(nieb)-28(oszc)-1(e)-256(j)1(e)-1(st)-255({)-255(przygo)-28(d)1(z)-1(i)1(\\252)-1(ob)29(y)]TJ 0 -13.55 Td[(si\\246)-1(.)-262(A)-1(l)1(e)-264(stara)-263(Domin)1(ik)28(o)28(w)27(a)-263(to)-263(p)1(ie)-1(s...)-262(a)-263(c)-1(\\363\\273,)-263(ma)-56(j\\241)-263(c)28(ha\\252up)-27(\\246)-263(i)-263(gron)28(t)1(,)-263(tob)28(y)-263(n)1(a)-263(s)-1(w)28(o)-56(j)1(e)-1(m)]TJ 0 -13.549 Td[(osta\\252a.)-353(T)83(r)1(o)-56(j)1(e)-353(ic)27(h)1(,)-353(a)-352(m)-1(a)-55(j\\241)-352(pi\\246tn)1(a\\261)-1(cie)-353(morg\\363)28(w)-1(,)-352(to)-352(nib)29(y)-353(n)1(a)-353(Jagn)1(\\246)-353(pi)1(\\246)-1(\\242)-353(i)-352(s)-1(p)1(\\252ata)-353(za)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)-27(\\246)-400(i)-398(le)-1(w)28(en)28(tarz!)-399(P)1(i\\246)-1(\\242)-399(morg\\363)28(w)-399(to)-399(ryc)28(h)28(t)28(yk)-399(te)-399(p)-27(ola)-399(za)-399(m)-1(o)-55(jem)-399(k)55(ar)1(to\\015iskiem,)]TJ 0 -13.549 Td[(\\273yto,)-374(wid)1(z)-1(i)-374(mi)-374(si\\246,)-374(p)-28(osia\\252y)-374(lat)1(o\\261)-1(,)-374(tak)1(...)-374(P)1(i\\246\\242)-375(morg\\363)28(w)-374(do)-374(moic)27(h)-373(to...)-373(trzydzie)-1(\\261ci)]TJ 0 -13.549 Td[(pi)1(e)-1(\\242)-334(b)-27(ez)-334(ma)-1(\\252a!)-333(Kar)1(w)27(as)-333(p)-28(ola!)1(...)]TJ 27.879 -13.55 Td[(Zatar\\252)-255(r)1(\\246)-1(ce)-255(i)-255(p)-27(opra)28(wi\\252)-255(p)1(as)-1(a.)-254({)-255(T)83(o)-255(i)1(no)-255(m\\252ynar)1(z)-255(m)-1(a)-255(wi\\246c)-1(ej.)1(..)-255(z\\252o)-28(dziej,)-254(krzyw-)]TJ -27.879 -13.549 Td[(d\\241)-420(l)1(udzk)56(\\241)-420(a)-421(p)1(ro)-28(cen)28(tami,)-420(a)-420(os)-1(zuk)56(a\\253st)28(w)27(em)-420(t)27(y)1(la)-420(nab)1(ra\\252...)-420(A)-420(n)1(a)-420(b)-28(ez)-1(r)1(ok)-420(p)-27(o)-28(dwi\\363-)]TJ 0 -13.549 Td[(z\\252)-1(b)29(ym)-471(gn)1(o)-56(j)1(u,)-470(a)-470(up)1(ra)28(w)-1(i)1(\\252)-471(i)-470(p)1(s)-1(ze)-1(n)1(ic)-1(y)-470(p)-27(osia\\252)-471(n)1(a)-470(c)-1(a\\252ym)-470(k)55(a)28(w)28(ale)-1(;)-470(k)28(on)1(ia)-470(b)28(y)-470(trze)-1(b)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kup)1(i\\242)-1(,)-333(a)-333(i)-333(p)-28(o)-333(gran)29(uli)-333(kr)1(o)28(w)-1(i)1(n\\246)-334(j)1(ak)55(\\241.)1(..)-333(Pra)28(wda,)-333(k)1(ro)28(w)27(\\246)-334(b)29(y)-333(dosta\\242)-334(dosta\\252a...)]TJ 27.879 -13.549 Td[(I)-289(tak)-289(rozm)27(y)1(\\261)-1(la\\252,)-289(l)1(ic)-1(zy\\252,)-289(r)1(oz)-1(marza\\252)-290(si\\246)-289(gos)-1(p)-27(o)-28(d)1(ars)-1(k)28(o,)-288(a\\273)-290(cz)-1(ase)-1(m)-289(i)-289(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)]TJ -27.879 -13.55 Td[(z)-323(c)-1(i\\246\\273)-1(k)1(ie)-1(j)-322(delib)-27(erac)-1(j)1(i.)-323(A)-323(\\273e)-323(m)-1(\\241d)1(ry)-323(c)28(h\\252op)-323(b)29(y\\252,)-323(to)-323(wsz)-1(ystk)28(o)-323(zas)-1(i\\246)-323(z)-1(b)1(iera\\252)-323(w)-323(s)-1(ob)1(ie)-323(i)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)-27(ok)28(o)-333(w)-334(g\\252o)28(w)27(\\246)-333(patrzy\\252,)-333(cob)28(y)-333(c)-1(ze)-1(go)-333(ni)1(e)-334(pr)1(z)-1(e\\261)-1(lepi)1(\\242)-334(i)-333(nie)-333(przep)-28(omni)1(e)-1(\\242.)]TJ 27.879 -13.549 Td[({)-297(W)83(rzes)-1(zc)-1(za\\252yb)28(y)-297(ju)1(c)27(h)28(y)84(,)-297(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252y!)-297({)-297(p)-28(om)28(y\\261la\\252)-298(o)-297(dziec)-1(iac)28(h,)-297(ale)-298(wn)1(e)-1(t)-297(fala)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(y)-350(i)-349(p)-28(ewno\\261)-1(ci)-350(zala\\252a)-350(m)27(u)-350(se)-1(r)1(c)-1(e)-350(i)-350(s)-1(k)1(rz)-1(epi)1(\\252)-1(a)-350(g\\252u)1(c)27(he)-350(jes)-1(zc)-1(ze,)-350(w)27(ah)1(a)-56(j\\241ce)-351(p)-27(ostano-)]TJ 0 -13.549 Td[(wienia.)]TJ 27.879 -13.549 Td[(Gr)1(on)28(t)-326(m\\363)-56(j)1(,)-326(w)28(ara)-325(k)28(om)27(u)-325(dr)1(ugiem)27(u)-325(do)-325(niego.)-326(A)-325(nie)-326(c)28(hce)-1(ta,)-325(to...)-325({)-326(n)1(ie)-326(s)-1(k)28(o\\253)1(-)]TJ -27.879 -13.55 Td[(cz)-1(y\\252,)-333(b)-27(o)-334(stan\\241\\252)-333(pr)1(z)-1(ed)-333(c)27(h)1(a\\252up)1(\\241)-334(Jagn)29(y)83(.)]TJ 27.879 -13.549 Td[(\\221wieci\\252o)-460(si\\246)-460(u)-458(nic)28(h)-459(jes)-1(zc)-1(ze)-460(i)-459(p)1(rze)-1(z)-460(ot)28(w)28(arte)-459(okno)-459(pad)1(a\\252a)-460(sze)-1(rok)56(a)-459(sm)27(uga)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(at\\252a)-470(i)-469(sz)-1(\\252a)-469(prze)-1(z)-469(kierz)-470(georgin)1(io)28(w)-1(y)-469(i)-469(n)1(is)-1(k)1(ie)-470(dr)1(z)-1(ew)27(a)-469(\\261liwk)28(o)28(w)27(e)-470(a\\273)-470(n)1(a)-469(p\\252ot)-469(i)]TJ 0 -13.549 Td[(dr)1(og\\246)-1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-334(stan\\241\\252)-333(w)-334(cieniu)-333(i)-333(zapu)1(\\261)-1(ci\\252)-333(w)-1(zrok)-333(w)-333(iz)-1(b)-27(\\246.)]TJ 0 -13.55 Td[(Lampk)56(a)-252(tli\\252a)-252(si\\246)-252(nad)-252(ok)56(ap)-27(e)-1(m,)-252(al)1(e)-253(w)-252(k)28(ominie)-252(m)27(u)1(s)-1(i)1(a\\252)-253(si\\246)-252(bu)1(z)-1(o)28(w)28(a\\242)-253(t\\246gi)-252(ogie\\253,)]TJ -27.879 -13.549 Td[(b)-27(o)-425(s\\252yc)27(h)1(a\\242)-425(b)28(y)1(\\252)-1(o)-424(tr)1(z)-1(ask)-424(\\261)-1(wiercz)-1(yn)29(y)-424(i)-425(cze)-1(rw)28(ona)28(w)28(e)-425(\\261w)-1(i)1(at\\252o)-425(zap)-28(e\\252ni)1(a\\252)-1(o)-424(ogr)1(om)-1(n)1(\\241,)]TJ\nET\nendstream\nendobj\n103 0 obj <<\n/Type /Page\n/Contents 104 0 R\n/Resources 102 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n102 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n107 0 obj <<\n/Length 9547      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(28)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(2.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(mro)-28(cz)-1(n)1(\\241)-316(p)-27(o)-315(k)56(\\241tac)27(h)-315(izb)-27(\\246)-1(;)-315(stara,)-315(s)-1(k)1(ulon)1(a)-316(p)1(rze)-1(d)-315(k)28(omin)1(e)-1(m,)-315(c)-1(zyta\\252a)-315(c)-1(osik)-315(g\\252o\\261no,)-315(a)]TJ 0 -13.549 Td[(Jagn)1(a)-319(p)1(rze)-1(ciw)-318(niej)-318(t)28(w)28(arz\\241)-318(do)-318(okn)1(a)-319(siedzia\\252a;)-318(w)-318(k)28(os)-1(zuli)-317(b)28(y\\252a)-318(t)28(ylk)28(o)-318(i)-318(z)-318(p)-28(o)-27(dwini)1(\\246)-1(-)]TJ 0 -13.549 Td[(t)28(ymi)-333(do)-333(ramion)-333(r\\246k)56(a)27(w)28(ami)-333(|)-334(p)-27(o)-28(d)1(s)-1(ku)1(b)28(yw)28(a\\252a)-334(g\\246\\261)-1(.)]TJ 27.879 -13.549 Td[({)-333(Uro)-28(d)1(na)-333(ju)1(c)27(ha,)-333(to)-333(u)1(ro)-28(dn)1(a!)-333({)-334(m)28(y\\261la\\252.)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(nosi\\252a)-273(cz)-1(ase)-1(m)-273(g\\252o)28(w)27(\\246,)-273(n)1(as)-1(\\252u)1(c)27(h)1(iw)27(a\\252a)-273(matki)1(,)-273(wz)-1(d)1(yc)27(h)1(a\\252a)-273(c)-1(i)1(\\246)-1(\\273k)28(o,)-273(to)-273(zno)28(wu)]TJ -27.879 -13.55 Td[(br)1(a\\252a)-223(s)-1(i\\246)-223(s)-1(k)1(uba\\242)-223(pi)1(\\363ra,)-223(a\\273)-223(g\\246)-1(\\261)-223(z)-1(ag\\246ga\\252a)-224(b)-27(ole\\261)-1(n)1(ie)-223(i)-223(rw)28(a\\242)-224(si\\246)-224(p)-27(o)-28(cz)-1(\\246\\252a)-223(z)-224(kr)1(z)-1(yk)1(ie)-1(m)-223(z)-224(j)1(e)-1(j)]TJ 0 -13.549 Td[(r\\241k)1(,)-326(i)-326(bi)1(\\242)-327(skrzyd\\252ami,)-326(\\273e)-327(p)1(uc)27(h)-325(s)-1(i)1(\\246)-327(rozwia\\252)-326(p)-28(o)-326(i)1(z)-1(b)1(ie)-327(b)1(ia\\252ym)-326(tumanem)-1(.)-325(Us)-1(p)-27(ok)28(oi\\252a)]TJ 0 -13.549 Td[(j\\241)-335(ry)1(c)27(h\\252o)-335(i)-335(m)-1(o)-27(c)-1(n)1(o)-336(\\261c)-1(isk)56(a\\252a)-336(k)28(olan)1(ami,)-335(\\273)-1(e)-336(g\\246\\261)-336(jeno)-335(p)-27(og\\246)-1(gi)1(w)27(a\\252a)-335(z)-336(c)-1(ic)28(ha)-335(a)-336(b)-27(ole\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(i)-333(o)-28(d)1(p)-28(o)28(wiada\\252y)-333(j)1(e)-1(j)-333(in)1(ne)-333(gdzie)-1(\\261)-333(z)-334(s)-1(i)1(e)-1(n)1(i)-334(czy)-334(z)-333(p)-28(o)-27(dw)28(\\363rz)-1(a.)]TJ 27.879 -13.549 Td[({)-258(P)1(i\\246)-1(k)1(na)-258(k)28(ob)1(ieta)-258({)-258(p)-27(om)27(y\\261la\\252)-258(i)-257(o)-28(dsz)-1(ed\\252)-257(\\261)-1(pi)1(e)-1(sz)-1(n)1(ie,)-258(b)-27(o)-258(m)27(u)-257(ud)1(e)-1(r)1(z)-1(y)1(\\252)-1(o)-257(do)-258(g\\252o)28(wy)83(,)]TJ -27.879 -13.549 Td[(a\\273)-334(si\\246)-334(p)-27(o)-28(d)1(rapa\\252,)-333(zapi\\241\\252)-333(p)-28(\\246tl\\246)-333(i)-334(p)1(as)-1(a)-333(p)1(rz)-1(y)1(c)-1(i\\241)-27(gn\\241\\252.)]TJ 27.879 -13.55 Td[(Ju)1(\\273)-413(b)29(y\\252)-412(w)-412(sw)27(oi)1(c)27(h)-411(w)-1(r)1(otac)27(h)-411(i)-412(w)28(c)27(h)1(o)-28(dzi\\252)-412(w)-411(o)-1(p)1(\\252otki,)-411(gdy)-411(s)-1(i)1(\\246)-412(ob)-28(ejr)1(z)-1(a\\252)-412(n)1(a)-412(jej)]TJ -27.879 -13.549 Td[(dom,)-287(b)-27(o)-287(ryc)27(h)29(t)28(yk)-287(s)-1(t)1(a)-1(\\252)-287(n)1(aprzec)-1(iw,)-287(t)28(ylo)-287(\\273e)-288(p)-27(o)-287(tam)27(tej)-287(stroni)1(e)-288(w)28(o)-28(dy)84(.)-287(Kto\\261)-287(akur)1(atnie)]TJ 0 -13.549 Td[(wyc)27(h)1(o)-28(dzi\\252,)-479(b)-27(o)-480(pr)1(z)-1(ez)-480(dr)1(z)-1(wi)-479(uc)28(h)28(ylon)1(e)-480(lun)1(\\246)-1(\\252a)-479(s)-1(t)1(ruga)-479(\\261)-1(wiat)1(\\252)-1(a)-479(i)-479(jak)-479(b\\252ysk)56(a)-480(wica)]TJ 0 -13.549 Td[(zam)-1(igot)1(a\\252)-1(a)-257(i)-257(p)1(ad\\252a)-257(a\\273)-257(na)-257(s)-1(t)1(a)27(w,)-257(p)-27(otem)-258(cz)-1(yj)1(e)-1(\\261)-257(mo)-28(c)-1(n)1(e)-258(st\\241)-28(p)1(ania)-257(zadu)1(dni)1(\\252y)83(,)-257(i)-257(r)1(oz)-1(leg\\252)]TJ 0 -13.549 Td[(si\\246)-490(c)27(h)1(lu)1(p)-28(ot)-489(w)28(o)-28(dy)-489(n)1(abieran)1(e)-1(j)1(,)-489(a)-490(w)-489(k)28(o\\253cu)-489(ws)-1(k)1(ro\\261)-490(ciem)-1(n)1(i)-489(i)-489(m)-1(gi)1(e)-1(\\252,)-489(c)-1(o)-489(si\\246)-490(b)29(y\\252y)]TJ 0 -13.55 Td[(zw)-1(l)1(e)-1(k)56(a\\252y)-333(z)-334(\\252\\241k,)-333(\\261)-1(p)1(iew)-334(si\\246)-334(ozw)27(a\\252)-333(przycisz)-1(on)28(y)1(:)]TJ 27.879 -13.549 Td[(Ja)-416(za)-416(w)27(o)-28(d)1(\\241,)-416(t)28(y)-416(za)-416(w)27(o)-28(d)1(\\241,)-416(Jak\\273e)-417(j)1(a)-416(c)-1(i)-416(b)1(uzi)-416(p)-27(o)-28(dom?...)-416(P)29(o)-28(dam)-416(c)-1(i)-415(j\\241)-416(na)-416(l)1(i-)]TJ -27.879 -13.549 Td[(ste)-1(cz)-1(k)1(u,)-333(A)-333(na\\261c)-1(i-\\273)-1(e,)-333(k)28(o)-28(c)27(h)1(anec)-1(zku)1(...)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(a\\252)-334(d)1(\\252)-1(u)1(go,)-333(ale)-334(g\\252os)-334(r)1(yc)27(h)1(\\252)-1(o)-333(p)1(rz)-1(epad)1(\\252)-334(i)-333(\\261wiat\\252a)-334(wkr)1(\\363tc)-1(e)-333(p)-28(ogas\\252y)83(.)]TJ 0 -13.549 Td[(Na)-254(n)1(ieb)-28(o)-253(wtac)-1(za\\252)-254(si\\246)-254(z)-1(za)-254(l)1(as)-1(\\363)28(w)-254(ksi\\246\\273)-1(yc)-254(w)-253(p)-28(e\\252ni)-253(i)-253(roz)-1(srebr)1(z)-1(a\\252)-254(czub)28(y)-253(dr)1(z)-1(ew,)-254(i)]TJ -27.879 -13.55 Td[(sia\\252)-250(pr)1(z)-1(ez)-250(ga\\252\\246)-1(zie)-250(\\261)-1(wiat\\252o)-250(n)1(a)-250(sta)28(w)-1(,)-249(i)-250(zagl\\241d)1(a\\252)-250(w)-250(okna)-249(c)27(hat)1(,)-250(co)-250(m)27(u)-249(b)28(y\\252y)-249(nap)1(rze)-1(ciw.)]TJ 0 -13.549 Td[(Psi)-326(n)1(a)28(w)27(et)-326(p)-27(om)-1(i)1(lkli)1(,)-326(cic)27(h)1(o\\261)-1(\\242)-326(ni)1(e)-1(zg\\252\\246)-1(b)1(iona)-325(ob)-56(j)1(\\246)-1(\\252a)-325(w)-1(i)1(e)-1(\\261)-326(c)-1(a\\252\\241)-325(i)-326(st)28(w)27(orzenie)-326(ws)-1(ze)-1(l)1(kie.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-314(obsz)-1(ed\\252)-314(p)-27(o)-28(dw)28(\\363rze)-1(,)-314(za)-56(j)1(rza\\252)-314(do)-314(k)28(oni)1(,)-314(parsk)56(a\\252y)-314(i)-314(gry)1(z)-1(\\252y)-314(ob)1(roki;)-314(wsa-)]TJ -27.879 -13.549 Td[(dzi\\252)-428(g\\252o)28(w)27(\\246)-428(do)-428(ob)-28(or)1(y)83(,)-428(b)-27(o)-428(dr)1(z)-1(wi)-428(d)1(la)-428(gor\\241c)-1(a)-428(sta\\252y)-428(ot)28(w)27(or)1(e)-1(m.)-428(Kro)28(wy)-428(le\\273)-1(a\\252y)-428(p)1(rze)-1(-)]TJ 0 -13.549 Td[(\\273u)28(w)27(a)-55(j\\241c)-399(a)-399(p)-27(ost\\246)-1(k)1(uj\\241c,)-398(jak)28(o)-399(to)-398(jes)-1(t)-398(z)-1(wycz)-1(a)-55(jn)1(ie)-399(u)-398(b)28(yd)1(l\\241te)-1(k)1(.)-399(P)1(rzyw)27(ar)1(\\252)-399(wrota)-399(d)1(o)]TJ 0 -13.55 Td[(sto)-28(do\\252y)84(.)]TJ 27.879 -13.549 Td[(Zdj)1(\\241)28(w)-1(sz)-1(y)-333(k)56(ap)-27(e)-1(l)1(usz)-1(,)-333(s)-1(zed\\252)-333(do)-333(iz)-1(b)29(y)-333(i)-334(m\\363)28(wi\\252)-334(p)-27(\\363\\252g\\252os)-1(em)-334(p)1(ac)-1(ierz.)]TJ 0 -13.549 Td[(A)-333(\\273)-1(e)-334(spal)1(i)-333(ju\\273)-333(w)-1(szys)-1(cy)83(,)-333(r)1(oz)-1(zu\\252)-333(s)-1(i\\246)-333(p)-28(o)-333(cic)27(h)28(u)-333(i)-333(zaraz)-334(l)1(e)-1(g\\252)-333(s)-1(p)1(a\\242)-1(.)]TJ 0 -13.549 Td[(Ale)-261(zas)-1(n)1(\\241\\242)-262(n)1(ie)-261(m)-1(\\363g\\252,)-260(to)-261(pi)1(e)-1(rzyn)1(a)-261(go)-261(par)1(z)-1(y\\252a,)-260(\\273)-1(e)-261(nogi)-260(s)-1(p)-27(o)-28(d)-260(ni)1(e)-1(j)-260(wys)-1(u)29(w)27(a\\252,)-261(to)]TJ -27.879 -13.549 Td[(m)27(u)-340(p)-27(o)-341(g\\252o)28(wie)-341(c)27(h)1(o)-28(dzi\\252y)-341(spr)1(a)28(w)-1(y)-340(r\\363\\273ne,)-341(a)-340(turb)1(ac)-1(j)1(e)-1(,)-340(a)-341(p)-27(om)27(y)1(\\261)-1(leni)1(a...)-340(to)-341(m)28(u)-341(b)1(rzuc)27(h)]TJ 0 -13.55 Td[(ano)-333(ci\\246)-1(\\273y\\252)-333(s)-1(r)1(o)-28(dze)-1(,)-333(\\273e)-334(p)-27(os)-1(t\\246kiw)28(a\\252)-334(i)-333(mru)1(c)-1(za\\252.)]TJ 27.879 -13.549 Td[({)-344(Za)28(w\\273)-1(d)1(y)-344(m\\363)27(wi\\246,)-344(\\273e)-345(zs)-1(i)1(ad\\252e)-344(m)-1(l)1(e)-1(k)28(o)-344(in)1(o)-344(rozpiera)-344(b)1(rzuc)28(ho,)-344(cob)28(y)-344(n)1(a)-344(no)-27(c)-345(n)1(ie)]TJ -27.879 -13.549 Td[(da)28(w)28(a\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(A)-400(p)-27(ote)-1(m)-400(j\\241\\252)-400(m)27(y)1(\\261)-1(le\\242)-401(o)-400(Jagn)1(ie;)-400(jak)-400(b)28(y)-399(to)-400(dobr)1(z)-1(e)-400(b)28(y\\252o,)-400(b)-27(o)-400(i)-400(ur)1(o)-28(dn)1(a,)-400(i)-400(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(arn)1(a,)-418(i)-417(t)27(y)1(le)-418(p)-28(ol)1(a...)-417(T)83(o)-418(z)-1(n)1(o)28(w)-1(u)-417(p)1(rz)-1(y)1(p)-28(omin)1(a\\252)-418(s)-1(ob)1(ie)-418(dziec)-1(i,)-417(to)-418(te)-418(gadan)1(ia)-418(n)1(a)]TJ 0 -13.549 Td[(Jagn)1(\\246)-1(,)-348(\\273e)-349(m\\241c)-1(i\\252o)-348(si\\246)-349(w)-348(nim)-348(ws)-1(ze)-1(l)1(a)-1(k)1(ie)-349(r)1(oz)-1(ez)-1(n)1(anie,)-348(i)-348(ju)1(\\273)-349(n)1(ie)-349(wiedzia\\252,)-348(c)-1(o)-348(p)-27(o)-28(cz)-1(\\241\\242,)]TJ 0 -13.55 Td[(\\273e)-374(un)1(i\\363s\\252)-374(si\\246)-373(niec)-1(o,)-373(i)-373(j)1(ak)-373(to)-373(b)28(y\\252o)-373(zw)-1(y)1(c)-1(za)-56(j)1(nie,)-373(c)27(h)1(c)-1(ia\\252o)-373(m)28(u)-373(s)-1(i)1(\\246)-374(d)1(u)-373(dr)1(ugiego)-373(\\252\\363\\273)-1(k)56(a)]TJ 0 -13.549 Td[(za)27(w)28(o\\252a\\242)-334(i)-333(p)-27(oradzi\\242:)]TJ 27.879 -13.549 Td[({)-333(Mary)1(\\261)-1(!)-333(\\233e)-1(n)1(i\\242)-334(si\\246)-334(cz)-1(y)-333(to)-333(si\\246)-334(ni)1(e)-334(\\273)-1(eni)1(\\242)-334(z)-334(Jagn)1(\\241?)-1(.)1(..)]TJ 0 -13.549 Td[(Ale)-345(w)-345(c)-1(zas)-345(s)-1(ob)1(ie)-345(przyp)-27(omnia\\252,)-345(\\273e)-345(Mary)1(\\261)-346(j)1(u\\273)-345(o)-28(d)-344(z)-1(wies)-1(n)29(y)-345(na)-344(c)-1(me)-1(n)29(tarzu,)-345(a)]TJ -27.879 -13.549 Td[(tam)-354(s)-1(e)-355(\\261pi)-354(J)1(\\363z)-1(k)56(a)-354(i)-354(c)27(h)1(rapi)1(e)-1(,)-354(a)-354(on)-354(j)1(e)-1(st)-354(s)-1(ierot\\241,)-354(k)1(t\\363ra)-354(p)-28(or)1(adzi\\242)-355(si\\246)-355(n)1(ik)28(ogo)-354(ni)1(e)-355(ma;)]TJ 0 -13.55 Td[(to)-377(in)1(o)-377(w)27(es)-1(t)1(c)27(hn)1(\\241\\252)-377(c)-1(i\\246\\273)-1(k)28(o,)-376(prze\\273)-1(egna\\252)-377(si\\246)-378(i)-376(j\\241\\252)-377(m\\363)27(wi\\242)-377(z)-1(d)1(ro)28(w)27(a\\261ki)-377(za)-377(ni)1(e)-1(b)-27(os)-1(zcz)-1(k)28(\\246)-377(i)]TJ 0 -13.549 Td[(ws)-1(zystkie)-334(d)1(usz)-1(e)-333(w)-334(cz)-1(y\\261\\242)-1(cu)-333(osta)-56(j)1(\\241c)-1(e.)]TJ\nET\nendstream\nendobj\n106 0 obj <<\n/Type /Page\n/Contents 107 0 R\n/Resources 105 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n105 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n110 0 obj <<\n/Length 7101      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(3)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ju)1(\\273)-296(\\261wit)-295(u)1(bieli\\252)-295(d)1(ac)27(h)28(y)-294(i)-295(zgrz)-1(ebn)1(\\241,)-295(sz)-1(ar)1(\\241)-295(p\\252ac)28(h)28(t\\241)-295(pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252)-295(no)-28(c)-295(i)-295(gwiazdy)-294(p)-27(obla-)]TJ 0 -13.549 Td[(d\\252e,)-333(gdy)-333(ru)1(c)27(h)-333(si\\246)-334(u)1(c)-1(zyni)1(\\252)-334(w)-333(B)-1(or)1(yno)28(wym)-334(ob)-27(ej\\261c)-1(iu)1(.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-223(z)-1(wl\\363k)1(\\252)-224(si\\246)-224(z)-224(wyr)1(k)55(a)-223(i)-223(wyjr)1(z)-1(a\\252)-223(przed)-223(s)-1(ta)-55(jn)1(i\\246)-224(-s)-1(zron)-223(l)1(e)-1(\\273a\\252)-224(n)1(a)-224(ziem)-1(i)-223(i)-223(sz)-1(aro)]TJ -27.879 -13.55 Td[(b)28(y\\252o)-244(jes)-1(zc)-1(ze)-1(,)-244(ale)-245(j)1(u\\273)-245(zorze)-246(r)1(oz)-1(p)1(ala\\252y)-244(s)-1(i\\246)-245(n)1(a)-245(ws)-1(c)28(ho)-28(d)1(ni)1(e)-1(j)-244(s)-1(t)1(roni)1(e)-245(i)-245(cz)-1(erwieni\\252y)-244(c)-1(zub)29(y)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)-326(oszroni)1(a\\252)-1(y)1(c)27(h)-325({)-325(p)1(rz)-1(eci\\241)-28(gn\\241\\252)-325(si\\246)-326(z)-325(lub)-27(o\\261c)-1(i\\241,)-325(ziewn\\241\\252)-325(par\\246)-325(razy)-325(i)-325(p)-27(os)-1(ze)-1(d)1(\\252)-326(d)1(o)]TJ 0 -13.549 Td[(ob)-27(ory)84(,)-308(ab)28(y)-307(krzykn)1(\\241\\242)-309(n)1(a)-308(Wit)1(k)55(a,)-307(\\273)-1(e)-308(cz)-1(as)-308(ws)-1(ta)28(w)28(a\\242)-1(,)-307(ale)-308(c)27(h\\252op)1(ak)-308(u)1(ni\\363s\\252)-308(ni)1(e)-1(co)-308(s)-1(enn)1(\\241)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-334(i)-333(sz)-1(epn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(Zaraz)-1(,)-333(K)1(uba,)-333(zaraz!)-333({)-334(i)-333(p)1(rz)-1(y)1(tula\\252)-333(si\\246)-334(do)-333(lego)28(w)-1(i)1(s)-1(k)56(a.)]TJ 0 -13.549 Td[({)-336(P)28(o\\261pij)-335(s)-1(e)-336(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-336(bi)1(e)-1(dot)1(o,)-336(p)-28(o\\261pi)1(j!)-336({)-336(P)1(rzy)28(okry\\252)-336(go)-336(k)28(o\\273uc)27(h)1(e)-1(m)-336(i)-336(p)-27(oku)1(s)-1(z-)]TJ -27.879 -13.55 Td[(t)28(yk)56(a\\252,)-327(b)-27(o)-327(\\273e)-327(nog\\246)-327(mia\\252)-327(k)1(ie)-1(d)1(y\\261)-327(pr)1(z)-1(es)-1(tr)1(z)-1(elon\\241)-326(w)-327(k)28(olan)1(ie)-1(,)-326(ku)1(la\\252)-327(sro)-28(d)1(z)-1(e)-327(i)-326(c)-1(i\\241)-27(gn\\241\\252)-327(j)1(\\241)]TJ 0 -13.549 Td[(za)-358(sob\\241;)-357(um)28(y\\252)-358(si\\246)-358(p)-27(o)-28(d)-357(s)-1(t)1(udn)1(i\\241,)-357(pr)1(z)-1(yg\\252ad)1(z)-1(i\\252)-357(d\\252on)1(i\\241)-358(r)1(z)-1(ad)1(kie,)-358(wyl)1(e)-1(n)1(ia\\252e)-358(w\\252)-1(osy)84(,)-358(co)]TJ 0 -13.549 Td[(m)27(u)-324(si\\246)-325(b)28(y)1(\\252y)-325(p)-27(ozw)-1(i)1(ja\\252y)-324(w)-325(k)28(o\\252tun)29(y)83(,)-324(i)-324(kl\\246kn\\241\\252)-324(na)-324(pr)1(og)-1(u)-324(sta)-55(jni)-324(o)-28(d)1(ma)27(wia\\242)-325(p)1(ac)-1(i)1(e)-1(rze.)]TJ 27.879 -13.549 Td[(Gosp)-28(o)-27(darz)-402(s)-1(pal)1(i)-403(j)1(e)-1(szc)-1(ze)-1(,)-402(w)-403(okn)1(ac)27(h)-402(c)27(h)1(a\\252up)28(y)-402(zapala\\252y)-402(s)-1(i)1(\\246)-403(krw)28(a)28(w)27(e)-403(b)1(rz)-1(aski)]TJ -27.879 -13.549 Td[(z\\363rz)-1(,)-490(a)-491(g\\246)-1(ste)-1(,)-490(bia\\252e)-491(mg\\252)-1(y)-490(z)-1(wlek)56(a\\252)-1(y)-490(s)-1(i\\246)-491(z)-491(w)27(oln)1(a)-491(ze)-492(sta)28(w)27(\\363)28(w,)-491(k)28(o\\252ysa\\252)-1(y)-490(c)-1(i\\246\\273k)28(o)-491(i)]TJ 0 -13.55 Td[(p)-27(os)-1(u)28(w)28(a\\252y)-333(w)-334(g\\363r\\246)-333(p)-28(o)-27(dart)28(ymi)-333(sz)-1(matami.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-450(p)1(rz)-1(esu)28(w)27(a\\252)-450(w)-450(p)1(alc)-1(ac)28(h)-450(k)28(or)1(onk)28(\\246)-450(i)-450(mo)-28(dl)1(i\\252)-450(s)-1(i\\246)-450(d)1(\\252)-1(u)1(go)-450(a)-450(bi)1(e)-1(ga\\252)-450(o)-28(czam)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-421(p)-27(o)-28(d)1(w)27(\\363rzu,)-420(p)-27(o)-420(oknac)28(h)-420(c)27(ha\\252u)1(p)28(y)84(,)-421(p)-27(o)-420(s)-1(ad)1(z)-1(ie)-420(om)-1(r)1(o)-28(c)-1(zon)28(ym)-420(jes)-1(zc)-1(ze)-421(na)-420(d)1(ole)-1(,)-420(p)-27(o)]TJ 0 -13.549 Td[(jab)1(\\252onk)56(ac)27(h)1(,)-361(ob)28(wiesz)-1(on)28(y)1(c)27(h)-360(jab\\252k)56(ami)-361(n)1(ib)28(y)-360(pi\\246\\261c)-1(ie;)-361(r)1(z)-1(u)1(c)-1(i\\252)-360(c)-1(zym\\261)-1(ci\\261)-361(do)-360(bud)1(y)83(,)-360(k)28(o\\252o)]TJ 0 -13.549 Td[(dr)1(z)-1(wi,)-333(w)-333(bia\\252y)-333(\\252e)-1(b)-332(\\212ap)28(y)83(,)-333(a\\273)-334(p)1(ies)-334(z)-1(a)28(w)28(arcz)-1(a\\252,)-333(z)-1(win)1(\\241\\252)-334(si\\246)-334(i)-333(spa\\252)-333(dal)1(e)-1(j)1(.)]TJ 27.879 -13.55 Td[({)-279(Ale)-1(,)-279(d)1(o)-279(s)-1(ame)-1(go)-279(s\\252)-1(o\\253)1(c)-1(a)-279(spa\\252)-279(b)-28(\\246dzies)-1(z,)-279(ju)1(c)27(ho!)-279({)-279(i)-279(rzuci\\252)-279(w)-280(n)1(ie)-1(go)-279(raz,)-279(dr)1(ugi,)]TJ -27.879 -13.549 Td[(\\273e)-294(p)1(ie)-1(s)-293(wylaz\\252,)-293(pr)1(z)-1(ec)-1(i\\241)-27(ga\\252)-293(s)-1(i\\246,)-293(zie)-1(w)28(a\\252,)-293(mac)27(h)1(a\\252)-294(ogon)1(e)-1(m,)-293(p)1(rzys)-1(i)1(ad\\252)-293(wp)-28(o)-27(dle)-293(i)-293(j)1(\\241\\252)-293(s)-1(i\\246)]TJ 0 -13.549 Td[(dr)1(apa\\242)-334(i)-333(cz)-1(y)1(ni\\242)-334(z\\246bami)-333(w)-334(g\\246s)-1(t)28(yc)28(h)-333(kud)1(\\252ac)27(h)-333(p)-27(orz\\241dek.)]TJ 27.879 -13.549 Td[({)-448(I)-448(o)-28(c)27(h)1(\\014ar)1(uj\\246)-448(ten)-448(pacierz)-448(T)83(obie)-448(i)-448(ws)-1(zystkim)-448(\\261)-1(wi\\246t)28(ym.)-448(Am)-1(en!)-447({)-449(Bi\\252)-448(si\\246)]TJ -27.879 -13.549 Td[(d\\252u)1(go)-334(w)-333(pi)1(e)-1(rsi,)-333(a)-333(p)-28(o)28(ws)-1(t)1(a)-56(j\\241c,)-333(rze)-1(k)1(\\252)-334(d)1(o)-334(\\212ap)28(y)1(:)]TJ 27.879 -13.55 Td[({)-333(Hale)-1(!)-333(al)1(igan)28(t)-333(ju)1(c)27(ha,)-333(wyb)1(ie)-1(r)1(a)-334(se)-334(p)-27(c)27(h)1(\\252y)-334(k)1(ie)-1(j)-332(baba)-333(na)-333(w)28(e)-1(se)-1(l)1(e)-1(!)]TJ 0 -13.549 Td[(A)-417(\\273e)-418(rob)-27(otn)28(y)-416(b)28(y\\252,)-417(to)-417(si\\246)-417(z)-1(a)-55(j\\241\\252)-417(obr)1(z)-1(\\241d)1(kiem)-418({)-417(w)28(\\363z)-418(wyto)-27(c)-1(zy\\252)-417(z)-1(e)-417(s)-1(to)-27(do\\252y)-417(i)]TJ -27.879 -13.549 Td[(nasmaro)28(w)27(a\\252,)-226(nap)-27(oi\\252)-226(k)28(o)-1(n)1(ie)-227(i)-226(pr)1(z)-1(y\\252o\\273yl)-226(im)-227(siana,)-226(a\\273)-227(par)1(s)-1(k)56(a\\242)-227(zac)-1(z\\246)-1(\\252y)-226(i)-226(bi\\242)-227(k)28(op)28(y)1(tam)-1(i)1(,)]TJ 0 -13.549 Td[(a)-337(p)-27(ote)-1(m)-337(pr)1(z)-1(yn)1(i\\363s\\252)-338(z)-337(s\\241s)-1(iek)56(a)-337(niec)-1(o)-337(zgoni)1(n,)-337(d)1(obrze)-338(ok)1(rasz)-1(on)28(y)1(c)27(h)-337(o)28(ws)-1(em,)-337(i)-337(ws)-1(y)1(pa\\252)]TJ 0 -13.549 Td[(to)-333(klacz)-1(y)-333(d)1(o)-334(\\273\\252obu)1(,)-334(b)-27(o)-333(s)-1(ta\\252a)-333(w)-334(gr)1(\\363)-28(dce,)-334(osobn)1(o:)]TJ 27.879 -13.55 Td[({)-292(\\233r)1(e)-1(j)1(,)-292(stara,)-291(\\273)-1(r)1(e)-1(j)1(;)-292(\\271r\\363b)1(k)55(a)-291(mie)-1(\\242)-292(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(sz)-1(,)-291(to)-292(ci)-291(m)-1(o)-27(c)-1(y)-291(trza,)-292(\\273rej!)-291({)-292(P)28(og\\252ad)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(j\\241)-271(p)-28(o)-271(nozdrzac)27(h)1(,)-272(a\\273)-272(kl)1(ac)-1(z)-272(p)-27(o\\252o\\273)-1(y\\252a)-271(m)27(u)-271(\\252e)-1(b)-271(na)-271(ramieniu)-271(i)-272(p)1(ies)-1(zc)-1(zotliwie)-272(c)28(h)28(wyta\\252a)]TJ 0 -13.549 Td[(w)28(argami)-334(za)-333(k)28(o\\252)-1(t)1(un)28(y)84(.)]TJ 363.686 -29.888 Td[(29)]TJ\nET\nendstream\nendobj\n109 0 obj <<\n/Type /Page\n/Contents 110 0 R\n/Resources 108 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n108 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n113 0 obj <<\n/Length 9892      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(30)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(-...Ziemniak)1(i)-363(d)1(o)-362(p)-28(o\\252edn)1(ia)-362(z)-1(wiez)-1(iem)27(y)84(,)-362(a)-362(p)-28(o)-28(d)-361(w)-1(i)1(e)-1(cz)-1(\\363r)-362(d)1(o)-363(l)1(as)-1(u)1(,)-362(p)-28(o)-362(\\261c)-1(i\\363\\252k)28(\\246)-363({)]TJ -27.879 -13.549 Td[(ni)1(e)-334(b)-27(\\363)-56(j)-333(si\\246)-1(,)-333(\\261c)-1(i)1(\\363\\252k)55(a)-333(letk)56(a,)-334(n)1(ie)-334(zgoni)1(\\246)-334(c)-1(i)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-356(A)-357(t)28(y)84(,)-357(w)28(a\\252k)28(oniu)1(,)-356(batem)-357(dostani)1(e)-1(sz)-1(,)-356(widzisz)-357(go,)-356(o)27(wies)-357(m)27(u)-356(p)1(ac)27(h)1(nie,)-357(p)1(r\\363\\273-)]TJ -27.879 -13.549 Td[(ni)1(ak)28(o)27(wi)-310({)-310(m\\363)28(wi\\252)-310(do)-310(w)28(a\\252ac)27(h)1(a,)-310(c)-1(o)-310(sta\\252)-310(ob)-27(ok)-310(i)-310(\\252eb)-310(wt)28(yk)56(a\\252)-310(m)-1(i\\246dzy)-310(d)1(e)-1(ski)-310(p)1(rze)-1(gro)-27(dy)84(,)]TJ 0 -13.549 Td[(do)-333(\\273\\252obu)-333(kl)1(ac)-1(zy)-333({)-334(grzmotn\\241\\252)-333(go)-334(p)1(i\\246\\261)-1(ci\\241)-333(w)-334(zad,)-333(a\\273)-334(k)28(o\\253)-333(u)1(s)-1(k)28(o)-28(czy\\252)-334(w)-333(b)-28(ok)-333(i)-333(zar\\273a\\252)-1(.)]TJ 27.879 -13.55 Td[({)-244(Hale,)-244(p)1(arob)1(ku)-243(\\273)-1(yd)1(o)28(w)-1(ski!)-243(\\233re)-1(\\242)-244(to)-243(b)28(y\\261)-244(c)27(h)1(o)-28(\\242)-244(i)-244(cz)-1(yst)28(y)-244(o)28(wies)-245(\\273ar\\252,)-244(a)-243(do)-244(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.549 Td[(ci\\246)-334(ni)1(e)-334(ma,)-334(b)-27(ez)-334(bata,)-333(j)1(uc)27(h)1(o,)-333(z)-334(mie)-1(j)1(s)-1(ca)-333(nie)-333(rusz)-1(y)1(s)-1(z,)-333(c)-1(o?)]TJ 27.879 -13.549 Td[(Wymin)1(\\241\\252)-308(go)-307(i)-308(za)-56(j)1(rza\\252)-308(d)1(o)-308(\\271r\\363bk)1(i,)-307(c)-1(o)-307(s)-1(ta\\252a)-307(pr)1(z)-1(y)-307(\\261)-1(cian)1(ie)-308(s)-1(amej)-307(i)-308(j)1(u\\273)-308(z)-308(d)1(alek)55(a)]TJ -27.879 -13.549 Td[(wyci\\241)-28(ga\\252a)-333(do)-333(niego)-334(k)56(asz)-1(tan)1(o)28(w)27(at)28(y)-333(\\252e)-1(b)-332(z)-1(e)-334(strza\\252k)55(\\241)-333(b)1(ia\\252\\241)-334(n)1(a)-334(czole)-334(i)-333(r\\273a\\252a)-334(cic)27(h)1(o.)]TJ 27.879 -13.549 Td[({)-366(Cic)28(ho)-56(j)1(,)-366(ma\\252a,)-366(cic)27(h)1(o)-56(j)1(!)-366(P)28(o)-28(d)1(jedz)-366(se)-367(an)1(o,)-366(b)-27(o)-366(p)-27(o)-56(j)1(e)-1(d)1(z)-1(ies)-1(z)-366(z)-366(gos)-1(p)-27(o)-28(d)1(arze)-1(m)-366(do)]TJ -27.879 -13.549 Td[(mias)-1(t)1(a!)-435({)-435(Uw)-1(i)1(\\252)-436(k)1(\\252ak)-435(s)-1(i)1(ana)-435(i)-435(wycz)-1(y\\261c)-1(i)1(\\252)-435(jej)-435(b)-27(ok)-435(z)-1(a)28(w)28(alan)28(y)84(.)-435({)-435(T)27(yl)1(a)-435(klacz)-1(,)-435(\\273e)-436(j)1(u\\273)]TJ 0 -13.55 Td[(do)-393(ogiera)-393(cz)-1(as,)-393(a)-393(\\261)-1(win)1(ia\\261)-1(.)-393(Ut)28(yt)1(le)-1(sz)-394(si\\246)-394(za)28(w)-1(d)1(y)-393(kiej)-393(mac)-1(i)1(ora)-393({)-394(p)-27(ogad)1(yw)27(a\\252)-393(w)28(c)-1(i\\241\\273)]TJ 0 -13.549 Td[(i)-427(p)-27(osz)-1(ed\\252)-427(d)1(o)-427(c)27(h)1(le)-1(w)28(\\363)28(w)-427(w)-1(y)1(pu\\261ci\\242)-428(\\261wini)1(e)-1(,)-426(b)-28(o)-427(k)1(w)-1(i)1(c)-1(za\\252y)83(,)-426(a)-427(\\212apa)-427(c)28(ho)-28(d)1(z)-1(i\\252)-427(za)-427(n)1(im)-427(i)]TJ 0 -13.549 Td[(zagl\\241da\\252)-333(m)27(u)-333(w)-333(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-483(Zj)1(ad\\252b)28(y\\261)-483(i)-482(t)28(y)83(,)-482(c)-1(o?)-483(T)83(o)-482(na\\261c)-1(i-\\273)-1(e)-483(c)28(hlebasz)-1(k)56(a,)-482(na\\261c)-1(i!)-482(Wyj)1(\\241\\252)-483(z)-1(za)-483(p)1(az)-1(u)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(k)56(a)28(w)27(a\\252ek)-297(i)-297(rzuci\\252,)-297(pies)-298(p)-27(o)-28(c)28(h)28(wyc)-1(i)1(\\252)-298(i)-297(sc)27(h)1(o)27(w)28(a\\252)-297(s)-1(i\\246)-297(do)-297(b)1(udy)84(,)-297(b)-27(o)-297(\\261)-1(win)1(ie)-298(an)1(o)-298(l)1(e)-1(cia\\252y)-297(m)27(u)]TJ 0 -13.55 Td[(wydr)1(z)-1(e\\242)-1(.)]TJ 27.879 -13.549 Td[({)-245(Hale,)-245(te)-246(sw)-1(y)1(nie)-245(to)-246(k)1(ie)-1(j)-244(c)-1(z\\252o)27(wiek)-245(ni)1(e)-1(kt\\363r)1(y)83(,)-245(ab)29(y)-245(ino)-245(c)27(h)29(yc)-1(i\\242)-245(c)-1(u)1(dze)-246(i)-245(ze)-1(c)28(hla\\242...)]TJ 0 -13.549 Td[(Za)-56(j)1(rza\\252)-334(d)1(o)-334(sto)-28(d)1(o\\252y)-334(i)-333(d)1(\\252ugo)-333(patr)1(z)-1(y\\252)-333(na)-333(wisz)-1(\\241c\\241)-334(u)-333(b)-27(elki)-333(kro)28(w)28(\\246)]TJ 0 -13.549 Td[({)-282(G)1(\\252)-1(u)1(pi)1(e)-283(t)1(o)-282(jeno)-281(b)28(ydl)1(e)-1(,)-281(a)-282(i)-281(te)-1(m)28(u)-282(n)1(a)-282(k)28(on)1(ie)-1(c)-282(p)1(rzys)-1(z\\252o.)-282(W)1(idzi)-282(mi)-282(si\\246,)-282(co)-282(j)1(utro)]TJ -27.879 -13.549 Td[(zgotuj)1(\\241)-334(mi\\246s)-1(a..)1(.)-334(T)28(yle)-333(i)-333(z)-334(c)-1(i)1(e)-1(b)1(ie)-1(,)-333(b)1(ie)-1(d)1(oto,)-333(\\273)-1(e)-333(c)-1(z\\252e)-1(k)-333(se)-334(p)-28(o)-27(dj)1(e)-334(w)-334(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246...)]TJ 27.879 -13.55 Td[(W)84(e)-1(stc)27(h)1(n\\241\\252)-333(do)-333(te)-1(go)-333(jad)1(\\252a)-334(i)-333(p)-27(o)28(w)-1(l)1(\\363k\\252)-334(si\\246)-334(b)1(ud)1(z)-1(i)1(\\242)-334(Witk)56(a...)]TJ 0 -13.549 Td[({)-333(S\\252o\\253ce)-334(in)1(o,)-333(ino)-333({)-333(z)-1(ar)1(no)-333(s)-1(i\\246)-333(p)-28(ok)56(a\\273e)-1(..)1(.)-333(Kro)28(wy)-333(trza)-334(wyp)-27(\\246)-1(d)1(z)-1(a\\242.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-252(mam)-1(r)1(ota\\252)-252(c)-1(o\\261,)-252(bron)1(i\\252)-252(s)-1(i)1(\\246)-1(,)-252(p)1(rzyk\\252ada\\252)-252(do)-252(k)28(o\\273uc)28(ha,)-252(ale)-252(w)-253(k)28(o\\253)1(c)-1(u)-252(wsta\\242)]TJ -27.879 -13.549 Td[(ws)-1(ta\\252)-333(i)-333(\\252az)-1(i)1(\\252)-334(o)-28(ci\\246\\273)-1(a\\252y)-333(i)-333(s)-1(enn)29(y)-334(p)-27(o)-333(p)-28(o)-27(dw)28(\\363rzu.)]TJ 27.879 -13.549 Td[(Gosp)-28(o)-27(darz)-347(z)-1(aspal)1(i)-348(d)1(z)-1(i)1(s)-1(ia)-55(j,)-347(b)-27(o)-347(s)-1(\\252o\\253)1(c)-1(e)-348(j)1(u\\273)-347(w)27(es)-1(z\\252o)-348(i)-347(r)1(oz)-1(cz)-1(erwieni\\252o)-347(sz)-1(ron)29(y)83(,)-347(i)]TJ -27.879 -13.55 Td[(zapali\\252o)-333(\\252un)29(y)-334(w)-333(w)27(o)-27(dac)27(h)-333(i)-333(sz)-1(y)1(bac)27(h)-332(a)-334(z)-334(c)28(ha\\252u)1(p)28(y)-333(nikt)-333(si\\246)-334(n)1(ie)-334(p)-27(ok)56(az)-1(yw)28(a\\252...)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-287(sie)-1(d)1(z)-1(i)1(a\\252)-288(n)1(a)-287(progu)-286(ob)-28(or)1(y)-287(i)-287(p)-28(o)-27(drap)29(yw)27(a\\252)-287(si\\246)-288(za)-56(j)1(adle,)-287(i)-287(pr)1(z)-1(ez)-1(iew)28(a\\252)-1(,)-286(a)-288(\\273e)]TJ -27.879 -13.549 Td[(wr\\363b)1(le)-263(p)-28(o)-28(cz\\246)-1(\\252y)-263(zlat)28(yw)28(a\\242)-263(z)-264(d)1(ac)27(h)1(\\363)27(w)-262(do)-263(stud)1(ni)-262(i)-263(tr)1(z)-1(epa\\242)-263(s)-1(i)1(\\246)-264(w)-262(k)28(orycie)-1(,)-262(to)-263(p)1(rzyni\\363s\\252)]TJ 0 -13.549 Td[(dr)1(abk)28(\\246)-281(i)-280(wlaz\\252)-281(p)-27(o)-28(d)-280(ok)56(ap)-280(z)-1(a)-55(jrze)-1(\\242)-281(d)1(o)-281(gn)1(iazd)-280(jask)28(\\363\\252)-1(czyc)27(h)1(,)-281(b)-27(o)-281(cic)28(ho)-280(tam)-281(jak)28(o\\261)-281(b)29(y\\252o.)]TJ 27.879 -13.549 Td[({)-333(P)28(omarz)-1(\\252y)-333(cz)-1(y)-333(co?)]TJ 0 -13.55 Td[(I)-333(j\\241\\252)-333(w)-1(y)1(c)-1(i\\241)-27(ga\\242)-334(delik)56(atni)1(e)-334(p)-27(om)-1(or)1(z)-1(on)1(e)-334(ptasz)-1(k)1(i)-333(i)-334(k)1(\\252a)-1(\\261\\242)-334(j)1(e)-334(z)-1(a)-333(p)1(az)-1(u)1(c)27(h\\246.)]TJ 0 -13.549 Td[({)-396(Kub)1(a,)-396(wie)-1(cie,)-396(nie)-396(\\273)-1(y)1(j\\241,)-396(o!)-396({)-396(P)28(obi)1(e)-1(g\\252)-396(do)-396(p)1(arobk)56(a)-396(i)-396(p)-27(o)-1(k)56(azyw)28(a\\252)-397(sz)-1(t)28(ywn)1(e)-1(,)]TJ -27.879 -13.549 Td[(p)-27(ogas)-1(\\252e)-398(jask)28(\\363\\252)-1(k)1(i.)-398(Ale)-398(Kub)1(a)-398(wz)-1(i\\241\\252)-398(in)1(o)-398(w)-399(r)1(\\246)-1(k)28(\\246,)-398(pr)1(z)-1(y)1(\\252)-1(o\\273y\\252)-398(do)-398(u)1(c)27(h)1(a,)-398(dm)28(uc)27(h)1(n\\241\\252)-398(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-333(i)-333(rzek\\252:)]TJ 27.879 -13.549 Td[({)-356(Z)-1(d)1(r\\246t)28(w)-1(i)1(a\\252)-1(y)84(,)-356(b)-28(o)-356(pr)1(z)-1(y)1(m)-1(r)1(o)-1(zek)-357(gal)1(an)28(t)28(y)83(.)-356(Ale)-357(\\273e)-357(to)-356(g\\252)-1(u)1(pie)-356(nie)-357(p)-27(osz)-1(\\252y)-356(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(do)-333(cie)-1(p)1(\\252yc)27(h)-333(k)1(ra)-56(j)1(\\363)28(w)-1(,)-333(n)1(o)-334(n)1(o...)-333({)-333(I)-334(p)-27(osz)-1(ed\\252)-333(do)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(r)1(ob)-28(ot)28(y)84(.)]TJ 27.879 -13.55 Td[(A)-457(Witek)-458(siad)1(\\252)-458(p)-27(o)-28(d)-457(c)27(h)1(a\\252up\\241,)-457(w)-458(sz)-1(czyc)-1(i)1(e)-1(,)-457(b)-27(o)-458(s\\252)-1(o\\253)1(c)-1(e)-457(ju\\273)-458(t)1(am)-458(do)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(i)-443(ob)1(le)-1(w)28(a\\252o)-443(bielon)1(e)-444(\\261c)-1(ian)29(y)83(,)-443(p)-27(o)-443(kt\\363ry)1(c)27(h)-443(i)-443(m)28(uc)28(h)28(y)-443(\\252az)-1(i)1(\\242)-444(p)-27(o)-28(cz)-1(yn)1(a\\252y;)-443(wyci\\241)-28(ga\\252)-443(z)-1(za)]TJ 0 -13.549 Td[(k)28(osz)-1(u)1(li)-324(te,)-324(kt\\363r)1(e)-325(j)1(u\\273)-324(ogrz)-1(an)1(e)-325(n)1(iec)-1(o)-324(j)1(e)-1(go)-324(cia\\252e)-1(m,)-324(gme)-1(r)1(a\\252y)-324(s)-1(i)1(\\246)-325(tr)1(o)-28(c)27(h)1(\\246)-1(,)-324(c)28(h)28(ur)1(c)27(h)1(a\\252)-325(n)1(a)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-284(rozdzia)28(wia\\252)-285(i)1(m)-285(dziobk)1(i,)-284(p)-28(oi)1(\\252)-285(z)-285(u)1(s)-1(t)-284(w\\252as)-1(n)28(y)1(c)27(h,)-284(a\\273)-285(o\\273ywia\\252y)-284(s)-1(i\\246,)-284(ot)28(wie)-1(r)1(a\\252)-1(y)-284(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(i)-385(p)-27(o)-28(cz)-1(y)1(na\\252y)-385(wyd)1(z)-1(i)1(e)-1(r)1(a\\242)-386(si\\246)-385(do)-384(ucie)-1(cz)-1(k)1(i;)-385(wtedy)-384(pra)28(w)28(\\241)-385(r\\246k)56(\\241)-385(c)-1(zai\\252)-385(si\\246)-385(p)-27(o)-385(\\261)-1(cian)1(ie)-385(i)]TJ 0 -13.55 Td[(raz)-333(w)-334(raz)-333(z)-1(agarn)1(\\241\\252)-334(j)1(ak)56(\\241)-334(m)28(uc)27(h)1(\\246)-1(,)-333(n)1(ak)56(armia\\252)-334(n)1(i\\241)-333(i)-334(p)1(usz)-1(cza\\252)-1(.)]TJ 27.879 -13.549 Td[({)-307(Le\\242)-1(t)1(a)-307(se)-308(d)1(o)-307(matul)1(i,)-307(l)1(e)-1(\\242ta)-307(-s)-1(zepta\\252,)-306(patrz\\241c)-307(jak)-306(jask)28(\\363\\252ki)-306(s)-1(iad)1(a\\252y)-307(n)1(a)-307(k)56(alet-)]TJ\nET\nendstream\nendobj\n112 0 obj <<\n/Type /Page\n/Contents 113 0 R\n/Resources 111 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 98 0 R\n>> endobj\n111 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n116 0 obj <<\n/Length 9026      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(31)]TJ -363.686 -35.866 Td[(ni)1(c)-1(y)-333(ob)-27(ory)84(,)-334(cze)-1(sa\\252y)-334(si\\246)-334(d)1(z)-1(i)1(obk)56(am)-334(i)-333(sz)-1(cz)-1(ebiot)1(a\\252)-1(y)-333(j)1(akb)28(y)-333(d)1(z)-1(i\\246k)28(c)-1(zyn)1(ie)-1(n)1(ia)]TJ 27.879 -13.549 Td[(A)-236(\\212apa)-236(siedzia\\252)-236(pr)1(z)-1(ed)-236(n)1(im)-237(n)1(a)-236(z)-1(ad)1(z)-1(i)1(e)-237(i)-236(sk)28(om)-1(l)1(a\\252)-237(u)1(c)-1(i)1(e)-1(sz)-1(n)1(ie,)-236(a)-236(c)-1(o)-236(kt\\363r)1(y)-236(pt)1(as)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(wyfr)1(u)28(w)28(a\\252)-1(,)-226(r)1(z)-1(u)1(c)-1(a\\252)-226(s)-1(i)1(\\246)-227(z)-1(a)-226(ni)1(m)-1(,)-226(b)1(ie)-1(g\\252)-226(kil)1(k)55(a)-226(kr)1(ok)28(\\363)27(w)-226(i)-226(z)-1(a)28(wraca\\252)-227(z)-226(p)-28(o)28(wrotem)-227(str\\363\\273o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-245(Al)1(e)-1(,)-244(z)-1(\\252ap)-244(wiater)-244(w)-245(p)-28(ol)1(u)-245({)-244(mrucz)-1(a\\252)-244(Witek)-245(i)-244(tak)-244(s)-1(i)1(\\246)-245(z)-1(atop)1(i\\252)-245(w)-245(r)1(oz)-1(gr)1(z)-1(ew)27(an)1(iu)]TJ -27.879 -13.549 Td[(jask)28(\\363\\252e)-1(k)1(,)-333(\\273)-1(e)-334(an)1(i)-333(w)-1(i)1(dzia\\252,)-333(kiedy)-333(Boryn)1(a)-334(wysz)-1(ed\\252)-333(z)-1(za)-333(w)27(\\246g\\252a)-334(i)-333(stan\\241\\252)-333(pr)1(z)-1(ed)-333(nim.)]TJ 27.879 -13.55 Td[({)-333(Ptasz)-1(k)56(ami)-333(s)-1(i\\246,)-333(\\261)-1(cierw)28(o,)-334(zaba)28(wiasz)-1(,)-333(co?)]TJ 0 -13.549 Td[(P)28(or)1(w)27(a\\252)-305(si\\246,)-305(b)28(y)-304(u)1(c)-1(iek)56(a\\242)-1(,)-304(ale)-305(ju)1(\\273)-305(gos)-1(p)-27(o)-28(d)1(arz)-305(c)27(h)28(y)1(c)-1(i\\252)-304(go)-305(kr)1(\\363tk)28(o)-305(za)-305(k)56(ark)-304(i)-305(d)1(rug\\241)]TJ -27.879 -13.549 Td[(r\\246k)56(\\241)-334(sz)-1(y)1(bk)28(o)-333(o)-28(dp)1(as)-1(y)1(w)27(a\\252)-333(s)-1(ze)-1(r)1(oki,)-333(t)28(w)27(ar)1(dy)-333(pas)-333(rze)-1(mienn)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(n)1(ie)-334(b)1(ijcie)-1(,)-333(a)-333(dy)1(\\242)-1(!)-333(zd\\241\\273y\\252)-334(k)1(rzykn\\241\\242)-333(jeno.)]TJ 0 -13.549 Td[({)-377(T)83(aki\\261)-377(to)-378(p)1(as)-1(t)1(uc)27(h)1(,)-377(c)-1(o?)-377(T)83(ak)-377(to)-377(pil)1(n)28(uj)1(e)-1(sz)-1(,)-377(co?)-377(Na)-56(jl)1(e)-1(p)1(s)-1(za)-377(kro)28(w)27(a)-377(si\\246)-378(zm)-1(ar)1(-)]TJ -27.879 -13.549 Td[(no)28(w)28(a\\252a,)-313(c)-1(o?...)-313(T)28(y)-313(z)-1(n)1(a)-56(jd)1(ku)1(,)-314(t)28(y)-313(p)-27(okrak)28(o)-313(w)28(ars)-1(i)1(as)-1(k)56(a!)-313(T)27(y)1(!)-314({)-313(I)-313(bi\\252)-313(z)-1(ap)1(ami\\246)-1(tal)1(e)-1(,)-313(gdzie)]TJ 0 -13.55 Td[(p)-27(opad)1(\\252)-1(o,)-333(a\\273)-334(r)1(z)-1(emie)-1(\\253)-333(\\261wisz)-1(cz)-1(a\\252,)-333(a)-333(c)27(h\\252op)1(ak)-333(w)-1(i)1(\\252)-334(si\\246)-334(ki)1(e)-1(j)-333(p)1(is)-1(k)28(or)1(z)-334(i)-333(wrze)-1(sz)-1(cz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)1(ijta!)-333(Lob)-27(oga!)-333(Zabij)1(e)-334(mi\\246)-1(!)-333(Gosp)-27(o)-28(dar)1(z)-1(u)1(!...)-333(O)-333(Jez)-1(u)-333(r)1(atuj)1(ta...)]TJ 0 -13.549 Td[(A\\273)-338(Han)1(k)55(a)-337(wyj)1(rz)-1(a\\252a)-337(z)-338(c)28(ha\\252up)29(y)83(,)-337(co)-338(si\\246)-338(d)1(z)-1(ieje,)-337(a)-337(Kub)1(a)-338(spl)1(un\\241\\252)-337(i)-337(s)-1(c)28(ho)28(w)28(a\\252)-338(si\\246)]TJ -27.879 -13.549 Td[(do)-333(sta)-56(j)1(ni.)]TJ 27.879 -13.549 Td[(A)-341(Boryn)1(a)-342(\\252oi\\252)-341(go)-341(rzete)-1(ln)1(ie,)-341(wybij)1(a\\252)-341(m)27(u)-341(n)1(a)-341(s)-1(k)28(\\363r)1(z)-1(e)-341(s)-1(wv)28(o)-56(j)1(\\241)-341(s)-1(tr)1(at\\246)-342(tak)-341(za)-56(j)1(a-)]TJ -27.879 -13.55 Td[(dl)1(e)-1(,)-404(\\273)-1(e)-404(Witek)-405(mia\\252)-404(ju\\273)-404(g\\246)-1(b)-27(\\246)-405(p)-28(osin)1(ion\\241)-404(i)-404(z)-405(nosa)-405(p)1(u\\261c)-1(i\\252a)-404(m)27(u)-404(si\\246)-405(krew,)-404(krzyc)-1(za\\252)]TJ 0 -13.549 Td[(wnieb)-27(og\\252os)-1(y)-266(i)-266(c)-1(u)1(dem)-267(jak)1(im\\261)-267(s)-1(i\\246)-266(w)-1(y)1(rw)28(a\\252)-1(,)-266(c)28(h)28(wyc)-1(i)1(\\252)-267(si\\246)-267(obu)1(')-266(r\\246k)55(ami)-266(z)-267(t)28(y\\252u)-266(za)-267(p)-27(ortk)1(i)]TJ 0 -13.549 Td[(i)-333(gna\\252)-333(w)-334(op)1(\\252otki.)]TJ 27.879 -13.549 Td[({)-367(J)1(e)-1(zu,)-366(z)-1(ab)1(ili)-366(m)-1(\\246,)-366(z)-1(ab)1(ili)-366(m)-1(\\246!)-367({)-366(rycz)-1(a\\252)-366(i)-367(t)1(ak)-367(p)-27(\\246)-1(d)1(z)-1(i)1(\\252)-1(,)-366(a\\273)-367(m)27(u)-366(r)1(e)-1(sz)-1(ta)-366(jask)28(\\363\\252e)-1(k)]TJ -27.879 -13.549 Td[(wylat)28(yw)28(a\\252a)-334(zz)-1(a)-333(p)1(az)-1(u)1(c)27(h)28(y)-333(i)-333(rozs)-1(y)1(p)28(yw)28(a\\252)-1(a)-333(si\\246)-334(p)-27(o)-334(d)1(ro)-28(d)1(z)-1(e.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-371(p)-27(ogroz)-1(i)1(\\252)-371(jes)-1(zc)-1(ze)-371(z)-1(a)-370(nim,)-371(op)1(as)-1(a\\252)-371(si\\246)-371(i)-370(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-371(do)-371(c)28(ha\\252u)1(p)28(y)83(,)-370(i)-371(za)-56(j)1(rza\\252)]TJ -27.879 -13.549 Td[(na)-333(An)28(tk)28(o)28(w)28(\\241)-334(stron)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-423(S\\252o\\253ce)-424(ju)1(\\273)-424(na)-423(dw)28(a)-423(c)27(h\\252op)1(a,)-424(a)-423(t)28(y)-423(s)-1(i\\246)-423(jes)-1(zc)-1(ze)-424(wyleguj)1(e)-1(sz)-1(!)-423({)-423(krzykn)1(\\241\\252)-424(do)]TJ -27.879 -13.549 Td[(syna.)]TJ 27.879 -13.549 Td[({)-333(Zm)-1(og\\252em)-334(si\\246)-334(w)28(c)-1(zora)-56(j)-333(k)1(ie)-1(j)-332(b)28(ydl)1(\\246)-1(,)-333(to)-333(m)27(u)1(s)-1(z\\246)-334(si\\246)-334(wyw)28(c)-1(zas)-1(o)28(w)28(a\\242)-1(.)]TJ 0 -13.55 Td[({)-463(Do)-462(s)-1(\\241d)1(u)-463(p)-27(o)-56(j)1(ad\\246...)-462(Z)-1(wie\\271)-463(z)-1(i)1(e)-1(mniak)1(i,)-463(a)-463(j)1(ak)-463(l)1(udzie)-463(sk)27(o\\253)1(c)-1(z\\241)-463(k)28(op)1(anie,)-463(to)]TJ -27.879 -13.549 Td[(zagna\\242)-334(j)1(e)-334(do)-333(grab)1(ie)-1(n)1(ia)-333(\\261)-1(ci\\363\\252ki,)-333(a)-333(t)28(y)-333(m)-1(\\363g\\252b)28(y)1(\\261)-334(k)28(o\\252ki)-333(p)-27(oz)-1(ab)1(ija\\242)-334(d)1(o)-333(ogac)-1(enia.)]TJ 27.879 -13.549 Td[({)-333(Oga\\242)-1(cie)-334(se)-334(sam)-1(i)-333(c)28(ha\\252up)-27(\\246,)-334(n)1(ama)-334(tu)1(ta)-56(j)-333(n)1(ie)-334(wieje.)]TJ 0 -13.549 Td[({)-333(Rz)-1(ek\\252e)-1(\\261...)-333(to)-333(s)-1(w)28(o)-56(j)1(\\241)-333(s)-1(tr)1(on\\246)-334(ogac\\246)-1(,)-333(a)-333(t)28(y)-333(m)-1(ar)1(z)-1(n)1(ij,)-333(ki)1(e)-1(j)1(\\261)-334(w)27(a\\252k)28(o\\253)1(.)]TJ 0 -13.549 Td[(T)83(rzasn\\241\\252)-333(drzwiam)-1(i)-333(i)-333(p)-27(os)-1(zed\\252)-333(na)-333(s)-1(w)28(o)-56(j)1(\\241)-334(stron)1(\\246)-1(.)]TJ 0 -13.55 Td[(J\\363zk)55(a)-333(j)1(u\\273)-334(r)1(oz)-1(p)1(a)-1(l)1(i\\252a)-334(ogi)1(e)-1(\\253)-333(i)-333(sz)-1(\\252a)-333(doi)1(\\242)-334(kro)28(wy)83(.)]TJ 0 -13.549 Td[({)-333(Ryc)27(h)1(\\252)-1(o)-333(d)1(a)-56(j)-333(j)1(e)-1(\\261\\242)-1(,)-333(b)-27(o)-334(tr)1(z)-1(a)-333(mi)-333(jec)27(ha\\242...)]TJ 0 -13.549 Td[({)-333(Przec)-1(i\\246c)27(h)-333(si\\246)-334(n)1(ie)-334(oze)-1(d)1(r\\246,)-334(d)1(w)27(\\363)-27(c)27(h)-333(rob)-27(\\363t)-333(raze)-1(m)-333(nie)-334(p)-27(orad)1(z)-1(\\246)-333({)-334(i)-333(p)-27(os)-1(z\\252a.)]TJ 0 -13.549 Td[({)-253(Sp)-27(ok)28(o)-55(jnego)-253(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ia)-253(n)1(ie)-254(ma,)-253(i)1(no)-253(k\\252y\\271ni)1(j)-253(si\\246)-253(z)-1(e)-253(w)-1(szys)-1(tk)1(imi!)-253({)-253(m)28(y\\261)-1(l)1(a\\252)]TJ -27.879 -13.549 Td[(i)-354(w)-1(zi\\241\\252)-355(si\\246)-355(do)-354(oblec)-1(ze)-1(n)1(ia,)-354(ale)-355(z)-1(\\252y)-354(b)28(y\\252)-355(i)-354(z)-1(gr)1(yzion)28(y)83(.)-354(Jak\\273e)-1(,)-354(ci\\241)-28(g\\252a)-355(w)28(o)-56(j)1(na)-355(z)-355(synem,)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a)-387(ni)1(e)-388(mo\\273)-1(n)1(a)-387(rze)-1(c,)-387(b)-27(o)-387(zaraz)-387(do)-387(o)-28(cz)-1(\\363)28(w)-387(z)-387(pazurami)-387(sk)56(ac)-1(ze)-387(alb)-28(o)-386(rz)-1(ekn)1(ie)-387(c)-1(o\\261,)]TJ 0 -13.55 Td[(co)-334(j)1(a\\273)-1(e)-334(w)28(e)-334(w)28(\\241tpiac)28(h)-333(p)-27(o)-28(c)-1(zuj)1(e)-1(sz)-1(.)-333(Na)-333(ni)1(k)28(ogo)-334(si\\246)-334(spu)1(\\261)-1(ci\\242,)-334(i)1(no)-333(har)1(uj)-333(i)-333(har)1(uj)1(!)]TJ 27.879 -13.549 Td[(Z\\252o\\261)-1(\\242)-426(w)-425(nim)-426(zbiera\\252a,)-425(a\\273)-426(p)-27(oklin)1(a\\252)-426(z)-426(c)-1(i)1(c)27(ha)-425(i)-425(rz)-1(u)1(c)-1(a\\252)-425(s)-1(zmatam)-1(i)-425(p)-27(o)-426(izbie)-426(a)]TJ -27.879 -13.549 Td[(bu)1(tami.)]TJ 27.879 -13.549 Td[({)-333(S\\252uc)28(ha\\242)-334(si\\246)-334(p)-27(o)28(winn)28(y)84(,)-333(a)-333(nie)-334(s\\252uc)28(ha)-55(j\\241!)-333(Cz)-1(em)27(u)-333(to?{)-333(m)27(y\\261la\\252.)]TJ 0 -13.549 Td[({)-310(Widzi)-310(m)-1(i)-310(si\\246,)-311(co)-311(b)-27(ez)-311(kij)1(as)-1(zk)55(a)-310(z)-311(n)1(im)-1(i)-310(ob)28(y)1(\\242)-311(s)-1(i)1(\\246)-311(nie)-311(ob)-27(\\246dzie)-1(,)-310(b)-27(e)-1(z)-311(t)28(w)28(ard)1(e)-1(go!)]TJ -27.879 -13.55 Td[(Da)28(wno)-320(s)-1(i)1(\\246)-321(im)-321(t)1(o)-321(n)1(ale)-1(\\273a\\252o,)-320(z)-1(ar)1(az)-321(p)-27(o)-321(\\261mie)-1(r)1(c)-1(i)-320(n)1(ie)-1(b)-27(osz)-1(cz)-1(ki)1(,)-320(kiej)-320(k\\252y\\271ni\\242)-321(si\\246)-320(z)-1(acz)-1(\\246\\252y)]TJ 0 -13.549 Td[(o)-281(gron)29(ta,)-281(ale)-281(s)-1(i\\246)-281(jes)-1(zcz)-1(e)-281(w)27(ago)28(w)27(a\\252,)-280(\\273)-1(eb)28(y)-281(zgorsz)-1(enia)-281(w)28(e)-282(wsi)-281(ni)1(e)-282(cz)-1(y)-281(n)1(i\\242.)-281(Gosp)-28(o)-27(darz)]TJ\nET\nendstream\nendobj\n115 0 obj <<\n/Type /Page\n/Contents 116 0 R\n/Resources 114 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n114 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n120 0 obj <<\n/Length 9517      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(32)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(b)28(y\\252)-433(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)-433(n)1(ie)-434(leda)-433(jak)1(i,)-434(n)1(a)-434(t)1(rz)-1(y)1(dzie)-1(stu)-433(morgac)27(h)1(,)-433(i)-434(z)-434(r)1(o)-28(du)-433(n)1(ie)-434(b)-27(e)-1(l)1(e)-434(c)27(h)28(to)-433({)]TJ 0 -13.549 Td[(Boryn)1(a,)-249(wiadomo.)-249(Al)1(e)-250(d)1(obr)1(o\\261)-1(ci\\241)-249(z)-249(nimi)-249(si\\246)-249(ni)1(e)-250(sk)28(o\\253cz)-1(y)84(,)-249(n)1(ie)-1(!)1(...)-249({)-248(T)83(u)-249(p)1(rzys)-1(zed\\252)-249(m)27(u)]TJ 0 -13.549 Td[(na)-294(m)28(y\\261)-1(l)-294(zi\\246)-1(\\242,)-294(k)28(o)28(w)27(al,)-294(kt)1(\\363re)-1(n)-293(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-294(p)-27(o)-295(cic)28(h)28(u)-294(bu)1(rzy\\252,)-294(a)-295(i)-294(sam)-295(w)27(ci\\241\\273)-295(n)1(as)-1(ta)28(w)28(a\\252,)]TJ 0 -13.549 Td[(\\273e)-1(b)28(y)-333(m)28(u)-333(s)-1(ze)-1(\\261\\242)-334(morg\\363)28(w)-334(o)-27(dpi)1(s)-1(a\\242)-334(i)-333(morg\\246)-333(las)-1(u)1(,)-333(a)-334(j)1(u\\273)-334(n)1(a)-334(r)1(e)-1(sz)-1(t)1(\\246)-334(c)27(h)1(c)-1(ia\\252)-333(p)-27(o)-28(c)-1(ze)-1(k)56(a\\242...)]TJ 27.879 -13.549 Td[({)-327(T)83(o)-327(n)1(ib)28(y)-327(k)1(ie)-1(j)-326(z)-1(amr\\246!)-327(P)29(o)-28(c)-1(ze)-1(k)56(a)-55(j,)-327(j)1(uc)28(ho,)-327(p)-27(o)-28(cz)-1(ek)56(a)-56(j-m)28(y\\261)-1(l)1(a\\252)-327(z)-1(e)-327(z)-1(\\252o\\261c)-1(i\\241.)-326({)-327(P)28(\\363ki)]TJ -27.879 -13.55 Td[(si\\246)-334(in)1(o)-334(r)1(uc)27(h)1(am,)-334(n)1(ie)-334(p)-27(o)28(w)27(\\241c)28(hasz)-334(t)28(y)-333(ani)-333(z)-1(agon)1(a!)-333(Wid)1(z)-1(isz)-334(go,)-333(m\\241dral)1(a!)]TJ 27.879 -13.549 Td[(Kar)1(to\\015e)-364(j)1(u\\273)-364(mo)-28(c)-1(n)1(o)-364(p)-27(erk)28(ota\\252y)-363(w)-364(k)28(om)-1(i)1(nie,)-364(gd)1(y)-363(J\\363z)-1(k)56(a)-364(p)1(rzysz)-1(\\252a)-364(o)-27(d)-363(udo)-55(ju)-363(i)]TJ -27.879 -13.549 Td[(wnetki)-333(nar)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a)-333(\\261niad)1(anie)]TJ 27.879 -13.549 Td[({)-279(J\\363zk)56(a!)-279(A)-278(m)-1(i\\246so)-279(s)-1(ama)-279(p)1(rze)-1(d)1(a)27(w)28(a)-56(j)1(.)-279(J)1(utro)-278(niedziela,)-279(l)1(ud)1(z)-1(ie)-279(si\\246)-279(ju)1(\\273)-280(zwiedzia-)]TJ -27.879 -13.549 Td[(\\252y)83(,)-298(to)-299(si\\246)-299(ic)27(h)-298(tu)-298(nalec)-1(i;)-298(in)1(o)-299(nie)-299(b)-27(orgu)1(j)-299(n)1(ik)28(om)27(u)1(.)-299(P)28(o\\261ladek)-299(osta)28(w)-299(la)-299(n)1(as)-1(;)-298(z)-1(a)28(w)27(o\\252a)-298(s)-1(i\\246)]TJ 0 -13.549 Td[(Jam)28(bro\\273a)-333(to)-334(zas)-1(ol)1(i)-334(i)-333(p)1(rzypr)1(a)27(wi.)1(..)]TJ 27.879 -13.55 Td[({)-333(A)-334(d)1(y\\242)-334(i)-333(k)28(o)28(w)27(al)-333(u)1(m)-1(i)1(e)-1(j)1(\\241...)]TJ 0 -13.549 Td[({)-333(Ale)-1(,)-333(p)-27(o)-28(d)1(z)-1(ieli\\252b)29(y)83(,)-333(si\\246)-334(kiej)-333(wilk)-333(z)-334(o)28(w)28(c)-1(\\241.)]TJ 0 -13.549 Td[({)-333(Magdzie)-334(b)-27(\\246dzie)-334(mark)28(otn)1(o,)-334(\\273e)-334(to)-333(nasza)-334(kr)1(o)28(w)27(a,)-333(a)-333(ona)-333(na)28(w)27(et)-333(nie)-333(obacz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(l)1(a)-334(M)1(agdy)-333(wytn)1(ij)-333(jak)56(\\241)-333(s)-1(ztucz)-1(k)28(\\246)-333(i)-333(z)-1(an)1(ie)-1(\\261,)-333(ale)-334(k)28(o)28(w)28(a)-1(l)1(a)-334(n)1(ie)-334(w)28(o\\252a)-56(j)1(.)]TJ 0 -13.549 Td[(|)-333(Dobr)1(y\\261)-1(cie,)-333(tatulu)1(,)-333(dob)1(ry)83(.)]TJ 0 -13.55 Td[({)-315(Hale,)-315(c\\363ru)1(c)27(hn)1(o,)-315(h)1(ale)-1(!)-314(Pil)1(n)28(uj)-314(tuta)-55(j,)-314(a)-315(ju)1(\\273)-316(ci)-315(b)1(u\\252e)-1(czk)28(\\246)-316(p)1(rzywie)-1(z\\246)-315(ab)-28(o)-315(i)-314(c)-1(o.)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(jad)1(\\252)-500(s)-1(e)-500(ni)1(e)-1(zgorze)-1(j)1(,)-500(opasa\\252)-500(si\\246)-501(p)1(as)-1(em,)-500(pr)1(z)-1(y)1(g\\252)-1(ad)1(z)-1(i)1(\\252)-500(p)-28(o\\261lin)1(ion\\241)-500(d)1(\\252oni\\241)]TJ -27.879 -13.549 Td[(zw)-1(i)1(c)27(hr)1(z)-1(on)1(e)-334(i)-333(rzadkie)-333(w)-1(\\252osy)83(,)-333(u)1(j\\241\\252)-333(bat)-333(i)-333(jes)-1(zcz)-1(e)-334(si\\246)-334(r)1(oz)-1(gl\\241d)1(a\\252)-334(p)-27(o)-333(iz)-1(b)1(ie...)]TJ 27.879 -13.549 Td[({)-403(Bym)-403(cz)-1(ego)-403(n)1(ie)-403(przep)-28(omnia\\252.)-402({)-403(Chcia\\252o)-403(m)28(u)-402(s)-1(i\\246)-403(za)-56(j)1(rz)-1(e\\242)-403(do)-402(k)28(om)-1(or)1(y)83(,)-402(ale)]TJ -27.879 -13.549 Td[(si\\246)-334(p)-27(o)27(wstrzyma\\252,)-334(b)-27(o)-333(J\\363z)-1(k)56(a)-333(patr)1(z)-1(a\\252a,)-333(wi\\246c)-334(s)-1(i)1(\\246)-334(prze\\273)-1(egna\\252)-333(i)-333(rusz)-1(y)1(\\252.)]TJ 27.879 -13.55 Td[(A)-333(ju)1(\\273)-334(z)-334(w)28(as)-1(\\241)-28(ga,)-333(zbiera)-55(j\\241c)-334(w)-333(gar\\261\\242)-334(par)1(c)-1(ian)1(e)-334(lejce)-1(,)-333(r)1(z)-1(ek\\252)-334(J)1(\\363z)-1(ce)-334(na)-333(ganek:)]TJ 0 -13.549 Td[({)-356(Sk)28(o\\253cz\\241)-357(zie)-1(mni)1(aki,)-356(to)-357(zaraz)-357(i)1(\\261)-1(\\242)-357(gr)1(abi\\242)-357(\\261c)-1(i)1(\\363\\252k)28(\\246)-1(,)-356(kwitek)-357(j)1(e)-1(st)-356(z)-1(a)-356(obrazem)-1(.)]TJ -27.879 -13.549 Td[(A)-333(niec)27(h)28(t)1(a)-334(ze)-1(tn)1(\\241)-333(jakiego)-333(grabk)56(a)-333(alb)-27(o)-334(i)-333(c)28(ho)-56(j)1(k)28(\\246)-334({)-333(przyd)1(a)-334(si\\246.)]TJ 27.879 -13.549 Td[(W)84(\\363z)-334(ru)1(s)-1(zy\\252)-334(i)-333(j)1(u\\273)-334(b)29(y\\252)-334(w)-333(op\\252otk)56(ac)27(h)1(,)-333(gdy)-333(Wit)1(e)-1(k)-333(mign\\241\\252)-333(p)-28(o)-27(d)-333(jab)1(\\252oniami.)]TJ 0 -13.549 Td[({)-318(Zab)1(ac)-1(zy\\252em)-1(..)1(.)-318(p)1(rru)1(...)-317(Witek!)-317(Pr)1(ru!)-317(Witek,)-317(pu)1(\\261)-1(\\242)-318(k)1(ro)28(w)-1(y)-317(na)-317(\\252\\241ki,)-317(a)-318(p)1(iln)28(u)1(j,)]TJ -27.879 -13.55 Td[(b)-27(o)-334(ci\\246,)-333(juc)28(ho,)-333(spier\\246,)-333(\\273)-1(e)-334(p)-27(opami\\246tasz)-1(!)]TJ 27.879 -13.549 Td[({)-333(Ale)-1(,)-333(p)-27(o)-28(ca\\252uj)1(ta)-334(m\\246)-334(gd)1(z)-1(ie\\261)-1(.)1(..)-333({)-334(o)-27(dkr)1(z)-1(yk)1(n\\241\\252)-333(hard)1(o)-334(zni)1(k)55(a)-55(j\\241c)-333(z)-1(a)-333(s)-1(to)-27(do\\252\\241.)]TJ 0 -13.549 Td[({)-333(B)-1(\\246dzies)-1(z)-334(t)1(u)-333(p)28(ysk)28(o)27(w)28(a\\252,)-333(jak)-333(zle)-1(z\\246)-1(,)-333(to)-333(ob)1(ac)-1(zys)-1(z...)]TJ 0 -13.549 Td[(Sk)1(r\\246c)-1(i\\252)-342(z)-342(op)1(\\252)-1(ot)1(k)28(\\363)27(w)-342(n)1(a)-342(lew)27(o,)-341(na)-342(d)1(rog\\246)-342(w)-1(i)1(o)-28(d\\241c\\241)-342(ku)-341(k)28(o\\261)-1(cio\\252o)28(wi;)-342(p)-27(o)-28(d)1(c)-1(i\\241\\252)-342(b)1(a-)]TJ -27.879 -13.549 Td[(tem)-334(\\271r\\363bk)28(\\246,)-333(\\273)-1(e)-333(p)-28(o)-28(d)1(yrd)1(a\\252a)-334(tr)1(uc)28(hcikiem)-334(p)-27(o)-334(wyb)-27(oiste)-1(j)1(,)-333(p)-28(e\\252nej)-333(k)56(am)-1(i)1(e)-1(n)1(i)-333(dro)-27(dz)-1(e.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-432(b)28(y)1(\\252o)-432(ju)1(\\273)-432(c)27(h)28(y)1(la)-432(t)28(yla)-431(nad)-431(c)27(h)1(a\\252up)1(am)-1(i)-431(i)-432(\\261wie)-1(ci\\252o)-432(coraz)-432(cieplej,)-431(b)-27(o)-432(z)]TJ -27.879 -13.549 Td[(osz)-1(ron)1(ia\\252yc)28(h)-385(strze)-1(c)27(h)-384(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(y)-384(s)-1(i)1(\\246)-386(op)1(aryn)-384(i)-385(w)28(o)-28(da)-385(sk)56(ap)28(yw)28(a\\252)-1(a,)-384(t)28(ylk)28(o)-385(w)-385(cie)-1(n)1(iac)27(h)]TJ 0 -13.549 Td[({)-432(p)-27(o)-28(d)-431(p)1(\\252otam)-1(i)-431(w)-432(sadac)28(h,)-431(p)-28(o)-431(ro)28(w)27(ac)28(h,)-431(le\\273)-1(a\\252)-432(j)1(e)-1(szc)-1(ze)-432(s)-1(iwy)-431(mr\\363z)-1(;)-431(p)-27(o)-432(sta)28(w)-1(i)1(e)-432(w)-1(l)1(e)-1(-)]TJ 0 -13.549 Td[(k\\252y)-383(s)-1(i)1(\\246)-384(os)-1(tatn)1(ie)-384(zrze)-1(d)1(\\252)-1(e)-383(m)-1(g\\252y)-383(i)-383(w)27(o)-28(d)1(a)-384(p)-27(o)-28(cz)-1(yn)1(a\\252a)-384(sp)-27(o)-28(d)-383(bielm)-384(wrze\\242)-384(brzas)-1(k)56(ami)-383(i)]TJ 0 -13.549 Td[(o)-28(d)1(b\\252yskiw)28(a\\242)-334(s\\252)-1(o\\253)1(c)-1(e.)]TJ 27.879 -13.549 Td[(W)84(e)-485(wsi)-484(p)-27(o)-28(cz)-1(yn)1(a\\252)-484(si\\246)-484(ju)1(\\273)-485(zwyk\\252y)-483(ruc)28(h:)-483(p)-28(or)1(anek)-484(b)28(y\\252)-483(jasn)28(y)-484(i)-483(c)27(h)1(\\252o)-28(dn)28(y)84(,)-484(a)]TJ -27.879 -13.55 Td[(\\273e)-387(za\\261)-386(przymroze)-1(k)-385(orze)-1(\\271wi\\252)-386(p)-27(o)27(wietrze)-1(,)-385(to)-386(i)-385(ra\\271)-1(n)1(iej)-386(si\\246)-386(p)-27(orusz)-1(al)1(i,)-386(i)-385(z)-1(gi)1(e)-1(\\252kli)1(w)-1(i)1(e)-1(j)1(;)]TJ 0 -13.549 Td[(wyc)27(h)1(o)-28(dzili)-253(gromadn)1(ie)-255(n)1(a)-254(p)-27(ola,)-254(kt\\363r)1(z)-1(y)-254(d)1(o)-254(k)28(opan)1(ia)-254(sz)-1(li)-253(z)-255(mot)28(ycz)-1(k)56(ami)-254(a)-254(k)28(os)-1(zyk)56(ami)]TJ 0 -13.549 Td[(na)-331(r)1(\\246)-1(k)1(u,)-331(d)1(o)-56(j)1(ada)-56(j)1(\\241c)-332(\\261ni)1(ada\\253)1(;)-331(kt\\363rzy)-331(z)-331(p\\252u)1(gie)-1(m)-331(ci\\241)-28(gn\\246li)-331(n)1(a)-331(\\261c)-1(iern)1(is)-1(k)56(a;)-331(k)1(t\\363rzy)83(.)-331(n)1(a)]TJ 0 -13.549 Td[(w)28(oz)-1(ac)27(h)-280(b)1(ron)28(y)-280(w)-1(i)1(e)-1(\\271li)-281(a)-280(w)27(or)1(ki)-281(p)-27(e\\252)-1(n)1(e)-281(z)-1(iar)1(na)-280(s)-1(iewnego;)-281(kt\\363r)1(z)-1(y)-280(z)-1(n)1(\\363)28(w)-281(z)-1(asi\\246)-281(wykr\\246c)-1(al)1(i)]TJ 0 -13.549 Td[(ku)-483(lasom)-484(z)-484(gr)1(abiami)-483(na)-483(ramionac)28(h,)-483(\\261)-1(ci\\363\\252k)28(\\246)-484(grab)1(i\\242)-484({)-483(\\273)-1(e)-484(in)1(o)-484(d)1(ud)1(ni\\252o)-483(p)-28(o)-483(obu)]TJ 0 -13.55 Td[(stronac)28(h)-229(s)-1(ta)28(wu)-229(i)-229(krzyk)-229(s)-1(i)1(\\246)-230(w)-1(zmaga\\252,)-230(b)-27(o)-230(d)1(rogi)-229(b)28(y\\252y)-229(zat\\252o)-28(c)-1(zone)-230(b)29(yd\\252em)-230(ci\\241)-28(gn\\241cym)]TJ 0 -13.549 Td[(na)-464(pasz)-1(\\246,)-464(s)-1(zc)-1(ze)-1(k)56(an)1(ie)-1(m)-465(p)1(s)-1(\\363)28(w,)-464(p)-28(ok)1(rz)-1(y)1(k)55(ami,)-464(co)-465(wybu)1(c)27(h)1(a\\252)-1(y)-464(raz)-465(w)-464(raz)-465(z)-465(ni)1(s)-1(ki)1(e)-1(j)1(,)]TJ\nET\nendstream\nendobj\n119 0 obj <<\n/Type /Page\n/Contents 120 0 R\n/Resources 118 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n118 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n123 0 obj <<\n/Length 9955      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(33)]TJ -363.686 -35.866 Td[(ci\\246)-1(\\273kiej)-333(ku)1(rz)-1(a)28(wy)84(,)-334(j)1(ak)56(a)-334(si\\246)-334(b)29(y\\252a)-334(wznosi\\252a)-334(z)-333(oros)-1(i)1(a\\252yc)27(h)-333(d)1(r\\363g.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-264(wymija\\252)-264(tr)1(z)-1(o)-28(d)1(y)-264(ostro\\273ni)1(e)-1(,)-263(c)-1(zas)-1(em)-264(\\261)-1(mign)1(\\241)-1(\\252)-263(p)-28(o)-264(w)28(e\\252)-1(n)1(ie)-264(jak)1(ie)-264(jagni)1(\\241t-)]TJ -27.879 -13.549 Td[(k)28(o)-323(g\\252up)1(ie)-1(,)-323(co)-323(s)-1(i)1(\\246)-324(ni)1(e)-324(u)1(s)-1(u)28(w)28(a\\252o)-323(prze)-1(d)-322(\\271)-1(r)1(e)-1(b)1(ic)-1(\\241,)-323(t)1(o)-324(ciel\\246)-324(j)1(akie,)-323(a\\273)-324(i)-323(wymin)1(\\241\\252)-324(wsz)-1(yst-)]TJ 0 -13.549 Td[(kic)28(h)-331(i)-330(k)28(o\\252o)-331(k)28(o\\261c)-1(io\\252a,)-330(kt\\363r)1(y)-331(sta\\252)-331(os)-1(\\252on)1(i\\246t)27(y)-330(p)-27(ot\\246)-1(\\273n)28(ym)-331(w)28(a\\252e)-1(m)-331(li)1(p)-331(\\273\\363\\252kn\\241cyc)27(h)-330(i)-330(klo-)]TJ 0 -13.549 Td[(n\\363)28(w)-333(wjec)27(ha\\252)-333(na)-333(sz)-1(eroki)-333(go\\261c)-1(i)1(niec)-1(,)-333(ob)1(s)-1(ad)1(z)-1(on)29(y)-333(z)-334(obu)-332(s)-1(tr)1(o)-1(n)-332(ogromn)28(ymi)-333(top)-27(olam)-1(i)1(.)]TJ 27.879 -13.55 Td[(A)-439(\\273e)-440(w)-439(k)28(o\\261)-1(ciele)-440(b)29(y\\252a)-439(m)-1(sz)-1(a)-439(\\261wi\\246)-1(t)1(a,)-439(b)-28(o)-439(sygnat)1(urk)56(a)-439(p)1(rz)-1(edzw)27(on)1(i\\252a)-439(o\\014ar)1(\\246)-440(i)]TJ -27.879 -13.549 Td[(h)28(u)1(c)-1(za\\252y)-333(przycis)-1(zon)28(ym)-333(g\\252os)-1(em)-334(organ)29(y)83(,)-333(zdj\\241\\252)-333(k)56(ap)-28(elu)1(s)-1(z)-334(i)-333(w)28(e)-1(stc)27(h)1(n\\241\\252)-333(p)-28(ob)-27(o\\273nie.)]TJ 27.879 -13.549 Td[(Droga)-348(b)28(y\\252a)-348(pu)1(s)-1(ta)-348(i)-349(zas)-1(\\252an)1(a)-349(op)1(ad\\252ym)-349(l)1(i\\261)-1(ciem)-349(tak)-348(ob\\014cie,)-349(\\273e)-349(wyb)-27(o)-56(j)1(e)-349(i)-349(g\\252\\246-)]TJ -27.879 -13.549 Td[(b)-27(ok)28(o)-434(p)-27(o)28(wyrzynan)1(e)-434(k)28(olein)28(y)-433(p)-27(okr)1(y\\252y)-433(s)-1(i)1(\\246)-434(rd)1(z)-1(a)28(w)28(o-)-1(z\\252o)-28(c)-1(i)1(s)-1(t)28(ym)-433(k)28(obierce)-1(m)-433(p)-27(o)-28(c)-1(i)1(\\246)-1(t)28(ym)]TJ 0 -13.549 Td[(g\\246s)-1(t)28(ymi)-333(pr\\246gami)-333(c)-1(ieni)1(\\363)27(w,)-333(jak)1(ie)-334(rzuca\\252y)-333(pn)1(ie)-334(tn)1(p)-28(oli)1(,)-333(b)-28(o)-333(s)-1(\\252o\\253)1(c)-1(e)-333(z)-334(b)-28(ok)1(u)-333(\\261)-1(wiec)-1(i)1(\\252)-1(o.)]TJ 27.879 -13.549 Td[({)-349(Wio,)-349(m)-1(al)1(u\\261k)55(a)-349(wio!)-349({)-350(\\221)1(w)-1(i)1(s)-1(n)1(\\241\\252)-350(bat)1(e)-1(m)-350(i)-349(\\271rebica)-350(p)1(rze)-1(z)-350(ki)1(lk)56(a)-350(sta)-56(j)1(a\\253)-349(p)-28(osz\\252)-1(a)]TJ -27.879 -13.55 Td[(ra\\271ni)1(e)-1(j)1(,)-283(ale)-283(p)-27(otem)-283(opad)1(\\252)-1(a)-282(i)-283(wlek\\252a)-283(si\\246)-283(w)28(olno)-282(b)-28(o)-282(dr)1(ga)-1(,)-282(c)27(h)1(o)-28(\\242)-283(ni)1(e)-1(znacz)-1(n)1(ie,)-283(sz)-1(\\252a)-282(p)-28(o)-28(d)]TJ 0 -13.549 Td[(wz)-1(g\\363r)1(z)-1(a,)-333(n)1(a)-334(kt\\363r)1(yc)27(h)-333(cze)-1(rn)1(ia\\252y)-333(lasy)83(.)]TJ 27.879 -13.549 Td[(Boryn)1(a,)-349(\\273e)-350(go)-348(ta)-349(c)-1(i)1(s)-1(za)-349(mro)-28(cz)-1(y)1(\\252)-1(a)-348(s)-1(enn)1(o\\261)-1(ci\\241,)-349(to)-348(p)-28(ogl)1(\\241da\\252)-349(pr)1(z)-1(ez)-349(k)28(olumnad)1(\\246)]TJ -27.879 -13.549 Td[(top)-27(oli)-338(na)-338(p)-28(ola,)-338(p)1(\\252)-1(a)28(wi\\241ce)-339(s)-1(i\\246)-339(w)-338(r\\363\\273o)27(wym,)-338(p)-28(or)1(ank)28(o)28(wym)-339(\\261w)-1(i)1(e)-1(tle,)-338(alb)-27(o)-339(m)27(y)1(\\261)-1(le\\242)-339(usi-)]TJ 0 -13.549 Td[(\\252o)28(w)27(a\\252)-306(o)-307(spr)1(a)28(w)-1(i)1(e)-307(z)-307(Jew)-1(k)56(\\241,)-306(to)-306(u)-306(gran)29(uli)-306({)-306(ale)-307(n)1(ie)-307(m\\363g\\252)-307(sobi)1(e)-307(da\\242)-306(rady)84(,)-306(tak)-306(go)-307(\\261pi)1(k)]TJ 0 -13.55 Td[(rn)1(orzy\\252...)]TJ 27.879 -13.549 Td[(Pt)1(as)-1(zki)-436(\\242w)-1(i)1(e)-1(r)1(k)55(a\\252y)-436(w)-436(ga\\252\\246z)-1(iac)28(h,)-436(to)-435(c)-1(zas)-1(em)-437(wiatr)-435(pr)1(z)-1(egarn\\241\\252)-436(l)1(e)-1(ciuc)28(hn)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(pal)1(c)-1(ar)1(ni)-274(p)-27(o)-275(cz)-1(u)1(bac)28(h)-274(dr)1(z)-1(ew,)-274(\\273)-1(e)-275(i)1(no)-274(jak)1(i)-274(taki)-274(liste)-1(cze)-1(k,)-274(k)1(ie)-1(b)29(y)-274(m)-1(ot)28(yl)-274(z\\252ot)28(y)83(,)-274(o)-28(d)1(ryw)28(a\\252)]TJ 0 -13.549 Td[(si\\246)-388(o)-27(d)-387(mac)-1(i)-386(,s)-1(p)1(ada\\252)-387(k)28(ol)1(is)-1(to)-386(na)-387(d)1(rog\\246)-387(ab)-28(o)-387(i)-386(na)-387(zakur)1(z)-1(on)1(e)-388(ost)28(y)83(,)-386(c)-1(o)-387(zaogni)1(on)28(ymi)]TJ 0 -13.549 Td[(o)-28(cz)-1(ami)-447(kwiat\\363)28(w)-447(har)1(do)-447(patr)1(z)-1(y)1(\\252)-1(y)-447(w)-447(s\\252o\\253ce)-448(a)-447(top)-27(ole)-448(zagw)27(ar)1(z)-1(y\\252y)84(,)-447(p)-27(os)-1(ze)-1(mra\\252y)-447(z)]TJ 0 -13.55 Td[(cic)27(h)1(a)-287(ga\\252)-1(\\241zk)56(am)-1(i)-286(i)-287(p)-27(om)-1(il)1(k\\252y)-287(ki)1(e)-1(j)-286(te)-288(ku)1(m)27(y)84(,)-287(co)-287(na)-287(P)28(o)-27(dn)1(ie)-1(sienie)-287(o)-28(cz)-1(y)-286(p)-28(o)-28(d)1(nies\\241,)-287(r\\246c)-1(e)]TJ 0 -13.549 Td[(roz\\252o\\273)-1(\\241)-431(i)-432(w)28(e)-1(stc)27(h)1(n\\241)-431(m)-1(o)-27(dli)1(te)-1(wni)1(e)-1(,)-431(a)-432(p)1(adn)1(\\241)-432(wnetki)-431(w)-432(pr)1(o)-28(c)27(h)-431(p)1(rz)-1(ed)-431(Ma)-55(jes)-1(tatem,)]TJ 0 -13.549 Td[(uk)1(ryt)28(ym)-333(w)-334(tej)-333(z)-1(\\252otej)-333(monstran)1(c)-1(j)1(i,)-333(z)-1(a)28(wis)-1(\\252ej)-333(nad)-332(z)-1(iemi\\241)-334(\\261wi\\246t\\241,)-333(nad)-333(ro)-27(dzon\\241...)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(p)-27(o)-28(d)-333(l)1(a)-1(sem)-334(pr)1(z)-1(ec)27(kn)1(\\241\\252)-334(n)1(a)-334(d)1(obr)1(e)-334(i)-333(ws)-1(tr)1(z)-1(yma\\252)-334(k)28(on)1(ia.)]TJ 0 -13.549 Td[({)-461(Wsc)27(h)1(o)-28(dzi)-461(ni)1(e)-1(zgorze)-1(j)-460({)-461(s)-1(ze)-1(p)1(n\\241\\252,)-461(p)1(rzyjr)1(z)-1(a)28(ws)-1(zy)-461(si\\246)-462(p)-27(o)-28(d)-460(\\261)-1(wiat\\252o)-461(sz)-1(ar)1(ym)]TJ -27.879 -13.55 Td[(zagonom,)-333(o)-1(r)1(dza)28(w)-1(i)1(on)28(ym)-334(k)1(r\\363tk)56(\\241)-334(szc)-1(zotk)56(\\241)-334(ws)-1(c)28(ho)-28(d)1(z)-1(\\241cego)-334(\\273yta.)]TJ 27.879 -13.549 Td[({)-290(Ka)28(w)27(a\\252)-290(p)-27(ola,)-290(a)-290(pr)1(z)-1(yleg\\252o)-290(do)-290(mo)-56(j)1(e)-1(go,)-290(ki)1(e)-1(b)28(y)-290(k)1(to)-291(z)-290(um)28(ys)-1(\\252u)-289(narz\\241dzi\\252!)-290(\\233yto,)]TJ -27.879 -13.549 Td[(widzi)-364(mi)-364(s)-1(i)1(\\246)-1(,)-364(w)28(c)-1(zora)-55(j)-364(p)-27(os)-1(i)1(a\\252)-1(y)84(.)-364({)-364(Ogar)1(n\\241\\252)-364(p)-28(o\\273\\241dl)1(iwym)-365(sp)-27(o)-56(j)1(rz)-1(eni)1(e)-1(m)-364(z)-1(b)1(ron)1(o)27(w)28(ane)]TJ 0 -13.549 Td[(zagon)28(y)83(,)-333(w)28(e)-1(stc)27(h)1(n\\241\\252)-333(i)-333(w)-1(j)1(e)-1(c)28(ha\\252)-333(w)-334(las.)]TJ 27.879 -13.549 Td[(P)28(ogan)1(ia\\252)-411(cz\\246)-1(sto)-410(k)28(onia,)-410(b)-27(o)-410(droga)-410(sz)-1(\\252a)-410(p)-28(o)-410(r\\363)28(wn)28(ym)-410(i)-410(t)28(w)27(ar)1(dsz)-1(a)-410(b)28(y\\252a,)-410(t)28(ylk)28(o)]TJ -27.879 -13.55 Td[(g\\246s)-1(to)-333(pr)1(z)-1(ero\\261ni\\246ta)-333(k)28(orz)-1(eni)1(am)-1(i)1(,)-334(n)1(a)-333(kt\\363ryc)28(h)-333(w)27(\\363z)-333(p)-28(o)-28(d)1(s)-1(k)56(aki)1(w)27(a\\252)-333(i)-333(tur)1(k)28(ota\\252)-1(.)]TJ 27.879 -13.549 Td[(Ale)-334(j)1(u\\273)-333(nie)-334(d)1(rze)-1(ma\\252,)-333(o)27(wian)29(y)-333(s)-1(u)1(ro)28(w)-1(y)1(m)-334(i)-333(c)27(h)1(\\252o)-28(dn)28(y)1(m)-334(dec)27(h)1(e)-1(m)-333(las)-1(u)1(.)]TJ 0 -13.549 Td[(B\\363r)-465(b)28(y\\252)-466(ogr)1(om)-1(n)29(y)83(,)-465(stary)-465({)-466(sta\\252)-466(zbi)1(t\\241)-466(g\\246s)-1(t)28(w)28(\\241)-466(w)-465(m)-1(a)-55(jes)-1(t)1(ac)-1(ie)-466(wieku)-465(i)-465(si\\252y)83(,)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(o)-299(pr)1(z)-1(y)-299(dr)1(z)-1(ewie)-300(s)-1(ama)-299(s)-1(osna)-299(pra)28(wie,)-300(a)-299(c)-1(z\\246s)-1(to)-299(d\\241b)-299(roso)-28(c)28(hat)28(y)-299(i)-300(siwy)-299(z)-1(e)-300(staro-)]TJ 0 -13.549 Td[(\\261c)-1(i,)-308(a)-308(c)-1(zas)-1(em)-309(br)1(z)-1(ozy)-309(w)-308(bia\\252yc)28(h)-308(k)28(os)-1(zulac)28(h,)-308(z)-309(rozpl)1(e)-1(cion)28(ymi)-308(w)27(ar)1(k)28(o)-28(c)-1(zam)-1(i)-308(\\273\\363\\252t)28(ym)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-403(to)-401(jes)-1(ie\\253)-401(ju)1(\\273)-403(b)29(y\\252a.)-402(P)28(o)-27(dlejsz)-1(e)-402(kr)1(z)-1(e,)-402(j)1(ak)28(o)-402(les)-1(zc)-1(zyna,)-401(to)-402(k)56(ar\\252o)28(w)28(ata)-402(grab)1(ina,)-401(to)]TJ 0 -13.55 Td[(osic)-1(zyn)1(a)-317(d)1(r\\273\\241c)-1(a)-316(tuli)1(\\252)-317(si\\246)-317(d)1(o)-317(cz)-1(erw)28(on)28(yc)28(h,)-316(p)-27(ot\\246)-1(\\273n)28(yc)28(h)-316(pn)1(i)-316(tak)-316(z)-1(w)28(art)28(yc)27(h)-315(k)28(orona)-316(mi)]TJ 0 -13.549 Td[(i)-389(p)-27(opl\\241t)1(an)28(yc)27(h)-388(ga\\252\\246)-1(ziami,)-389(\\273)-1(e)-389(in)1(o)-389(gdzie)-1(n)1(iegdzie)-390(p)1(rze)-1(d)1(z)-1(iera\\252o)-389(si\\246)-390(s\\252o\\253ce)-390(i)-389(p)-27(e\\252)-1(za\\252o)]TJ 0 -13.549 Td[(ni)1(b)28(y)-333(z)-1(\\252ote)-334(p)1(a)-56(j)1(\\241ki)-333(p)-27(o)-334(mc)27(h)1(ac)27(h)-333(zie)-1(l)1(on)28(yc)27(h)-332(i)-334(p)1(apr)1(o)-28(c)-1(i)1(ac)27(h)-333(zrud)1(z)-1(i)1(a\\252)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[({)-333(Z)-1(a)28(w\\273dy)-333(m)-1(o)-55(jego)-334(tu)-333(s\\241)-333(c)-1(zte)-1(r)1(y)-334(morgi)1(!)-334({)-333(m)27(y)1(\\261)-1(la\\252)-333(i)-334(p)-27(o\\273e)-1(r)1(a\\252)-334(o)-28(cz)-1(ami)-333(las)-1(,)-333(i)-333(ju)1(\\273)]TJ -27.879 -13.549 Td[(na)-300(ok)28(o)-301(wyb)1(ie)-1(r)1(a\\252)-301(co)-301(n)1(a)-56(jl)1(e)-1(p)1(s)-1(zy)83(.)-300(Pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)-300(P)29(an)-301(J)1(e)-1(zus)-301(n)1(ie)-301(da)-300(nas)-301(uk)1(rzywdzi\\242)-301({)-301(ab)-27(o)]TJ 0 -13.55 Td[(i)-349(same)-350(si\\246)-349(n)1(ie)-349(dam)27(y)84(,)-349(n)1(ie...)-348(Dw)27(or)1(o)27(wi)-348(w)-1(i)1(dzi)-349(si\\246)-349(du)1(\\273)-1(o,)-348(a)-349(nam)-349(ma\\252o.)-349(Zarn)1(o...)-348(m)-1(o)-55(je)]TJ 0 -13.549 Td[(ze)-310(czte)-1(r)1(y)83(,)-308(a)-309(Jagu)1(s)-1(in)1(e)-309(z)-309(m)-1(orga.)1(..)-309(czte)-1(r)1(y)-309(i)-308(jed)-309(n)1(a...)-308(Wio!)-308(g\\252up)1(ia,)-309(srok)28(\\363)28(w)-309(si\\246)-309(b)-27(\\246)-1(dzie)]TJ\nET\nendstream\nendobj\n122 0 obj <<\n/Type /Page\n/Contents 123 0 R\n/Resources 121 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n121 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n126 0 obj <<\n/Length 8987      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(34)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(b)-27(o)-56(j)1(a\\252)-1(a!)-338({)-339(T)84(rz)-1(epn)1(\\241\\252)-339(j)1(\\241)-339(bat)1(e)-1(m,)-339(b)-27(o)-339(n)1(a)-339(susz)-1(ce)-1(,)-338(co)-339(d\\271wiga\\252a)-339(Bo\\273\\241)-339(M\\246k)28(\\246)-1(,)-338(k\\252\\363)-28(ci\\252y)-338(s)-1(i\\246)]TJ 0 -13.549 Td[(sroki)-333(tak)-333(za)-56(jad)1(le,)-333(a)-1(\\273)-333(\\271)-1(r)1(e)-1(b)1(ic)-1(a)-333(strzyg\\252a)-334(u)1(s)-1(zami)-334(i)-333(p)1(rzys)-1(ta)28(w)28(a\\252a.)]TJ 27.879 -13.549 Td[({)-328(Sr)1(ok)28(o)27(w)28(e)-329(w)28(e)-1(sele)-329({)-328(desz)-1(cz)-1(u)-328(b)-27(\\246dzie)-329(wiele.)-328({)-328(Przypi)1(\\241\\252)-329(p)1(ar\\246)-328(bat\\363)28(w)-328(\\271)-1(rebi)1(c)-1(y)-328(i)]TJ -27.879 -13.549 Td[(jec)27(h)1(a\\252)-334(k)1(\\252)-1(u)1(s)-1(em.)]TJ 27.879 -13.549 Td[(Dob)1(rz)-1(e)-361(b)28(y)1(\\252o)-361(ju)1(\\273)-362(p)-27(o)-361(\\363sme)-1(j)1(,)-361(b)-27(o)-361(lu)1(dzie)-361(na)-361(p)-27(olac)27(h)-360(siadali)-360(do)-360(\\261)-1(n)1(iadan)1(io)28(w)-1(y)1(c)27(h)]TJ -27.879 -13.55 Td[(dw)28(o)-56(j)1(ak)28(\\363)28(w)-1(,)-282(gdy)-283(wj)1(e)-1(\\273d\\273a\\252)-283(do)-283(T)28(ymo)27(w)28(a,)-283(n)1(a)-283(pu)1(s)-1(te)-283(ul)1(ic)-1(zki,)-282(obsta)28(w)-1(i)1(one)-283(p)-28(ozapad)1(an)28(y-)]TJ 0 -13.549 Td[(mi)-339(d)1(om)-1(ost)28(w)27(ami,)-338(c)-1(o)-339(p)1(rzys)-1(i)1(ad\\252y)-339(n)1(ib)28(y)-338(s)-1(tar)1(e)-340(p)1(rze)-1(k)1(upk)1(i)-339(nad)-338(ry)1(nsz)-1(tok)56(ami,)-339(p)-27(e\\252n)28(ymi)]TJ 0 -13.549 Td[(\\261m)-1(ieci,)-333(kur)1(,)-333(\\233)-1(y)1(dzi\\241t)-333(ob)-28(d)1(art)28(yc)27(h)-332(i)-334(n)1(ierogaciz)-1(n)29(y)83(.)]TJ 27.879 -13.549 Td[(Zaraz)-289(n)1(a)-289(wje\\271)-1(d)1(z)-1(i)1(e)-289(obst\\241)-28(pi)1(li)-289(go)-288(\\233ydzi)-288(i)-289(\\233yd)1(\\363)28(w)-1(k)1(i)-289(i)-288(n)28(u\\273)-289(zagl\\241d)1(a\\242)-289(do)-289(w)28(as\\241)-28(gu,)]TJ -27.879 -13.549 Td[(mac)-1(a\\242)-334(p)-27(o)-28(d)-333(gr)1(o)-28(c)27(h)1(o)28(w)-1(in)1(ami,)-333(p)-28(o)-27(d)-333(s)-1(iedzeniem)-1(,)-333(cz)-1(y)-333(n)1(ie)-334(wiez)-1(ie)-333(c)-1(ze)-1(go)-333(na)-333(sprzedani)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-247(P)29(os)-1(z\\252y)83(,)-246(par)1(c)27(h)28(y!)-246({)-247(mru)1(kn\\241\\252,)-246(wje\\273)-1(d)1(\\273)-1(a)-55(j\\241c)-247(na)-246(ryn)1(e)-1(k,)-246(p)-27(o)-28(d)-246(c)-1(i)1(e)-1(\\253)-246(s)-1(t)1(aryc)27(h)1(,)-247(p)-27(o)-28(ob)1(-)]TJ -27.879 -13.55 Td[(dzieran)28(y)1(c)27(h)-352(k)56(asz)-1(tan)1(\\363)27(w,)-352(k)28(on)1(a)-56(j)1(\\241c)-1(yc)28(h)-352(n)1(a)-352(\\261)-1(ro)-27(dku)-351(placu,)-351(gdzie)-353(j)1(u\\273)-352(s)-1(ta\\252o)-352(ki)1(lk)56(ana\\261c)-1(ie)]TJ 0 -13.549 Td[(w)28(oz)-1(\\363)28(w)-334(z)-333(w)-1(y)1(prz\\246)-1(gn)1(i\\246t)27(y)1(m)-1(i)-333(k)28(o\\253)1(m)-1(i)1(.)]TJ 27.879 -13.549 Td[(I)-340(sw)27(\\363)-55(j)-339(w)27(as\\241)-28(g)-339(tam)-340(umie\\261)-1(ci\\252,)-339(\\271)-1(rebi)1(c)-1(\\246)-340(wy\\252o\\273y\\252)-340(\\252b)-27(e)-1(m)-340(d)1(o)-340(p)-27(\\363\\252k)28(os)-1(zk)56(a,)-340(n)1(as)-1(u)1(\\252)-340(jej)]TJ -27.879 -13.549 Td[(do)-402(k)28(ob)1(ia\\252ki)-402(obr)1(oku,)-402(b)1(at)-402(s)-1(c)28(ho)28(w)27(a\\252)-402(na)-402(d)1(no,)-402(p)-27(o)-28(d)-402(sie)-1(d)1(z)-1(eni)1(e)-1(,)-402(otr)1(z)-1(epa\\252)-402(s)-1(i)1(\\246)-403(z)-1(e)-402(s)-1(\\252om)28(y)]TJ 0 -13.549 Td[(i)-352(rusz)-1(y)1(\\252)-353(pr)1(os)-1(to)-352(do)-353(M)1(ordk)1(i,)-353(tam)-353(gd)1(z)-1(i)1(e)-354(b)1(\\252ysz)-1(cz)-1(a\\252y)-352(trzy)-353(mos)-1(i)1(\\246)-1(\\273ne)-353(talerze)-1(,)-352(ab)28(y)-352(s)-1(i\\246)]TJ 0 -13.55 Td[(ni)1(e)-1(co)-291(pr)1(z)-1(y)28(ogoli)1(\\242)-292({)-290(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-291(wkr\\363tce)-292(czys)-1(to)-290(os)-1(tr)1(ugan)28(y)-290(i)-291(t)28(ylk)28(o)-290(z)-292(j)1(e)-1(d)1(n)28(ym)-291(zac)-1(i\\246c)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(na)-333(b)1(ro)-28(d)1(z)-1(ie,)-333(z)-1(al)1(e)-1(pi)1(on)28(ym)-334(p)1(api)1(e)-1(rem,)-333(prze)-1(z)-333(kt\\363ry)-333(s\\241c)-1(zy\\252a)-333(s)-1(i\\246)-333(krew)-1(.)]TJ 27.879 -13.549 Td[(S\\241d)1(y)-333(nie)-333(b)28(y\\252y)-333(jes)-1(zcz)-1(e)-334(zac)-1(z\\246)-1(t)1(e)-1(.)]TJ 0 -13.549 Td[(Ale)-301(p)1(rze)-1(d)-300(d)1(om)-1(em)-301(s\\241do)28(wym)-1(,)-300(co)-301(sta\\252)-301(zaraz)-301(w)-300(ryn)1(ku,)-300(n)1(aprze)-1(ciw)-301(ogr)1(om)-1(n)1(e)-1(go)]TJ -27.879 -13.549 Td[(p)-27(oklasz)-1(tor)1(nego)-449(k)28(o\\261cio\\252a,)-448(c)-1(ze)-1(k)56(a\\252o)-448(ju)1(\\273)-449(sp)-28(or)1(o)-448(naro)-27(du.)-447(Siedzieli)-448(na)-448(wyd)1(e)-1(p)1(tan)28(yc)27(h)]TJ 0 -13.55 Td[(stopn)1(iac)27(h)1(,)-441(to)-441(k)1(upi)1(li)-441(si\\246)-441(p)-27(o)-28(d)-440(oknami)-441(i)-440(raz)-441(w)-441(raz)-441(zagl\\241dal)1(i)-441(do)-440(\\261)-1(r)1(o)-28(dk)56(a,)-440(k)28(obiet)28(y)]TJ 0 -13.549 Td[(za\\261)-351(p)1(rzyku)1(c)-1(n)1(\\246)-1(\\252y)-349(p)-28(o)-27(d)-350(b)1(ielon)28(ymi)-349(\\261)-1(cianami,)-349(opu)1(\\261)-1(ci\\252y)-350(cze)-1(rw)28(one)-350(zapaski)-349(z)-350(g\\252)-1(\\363)28(w)-350(n)1(a)]TJ 0 -13.549 Td[(ramion)1(a)-334(i)-333(r)1(a)-56(jco)28(w)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[(Boryn)1(a,)-246(\\273e)-246(do)-55(jrza\\252)-246(Jewk)28(\\246)-246(z)-246(dzie)-1(c)28(kiem)-246(na)-246(r)1(\\246)-1(k)1(u,)-245(s)-1(to)-55(j\\241ca)-246(w)-246(gr)1(om)-1(ad)1(z)-1(ie)-246(sw)27(oi)1(c)27(h)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(adk)28(\\363)28(w,)-392(to)-391(si\\246)-392(ze)-1(\\271li\\252)-391(z)-1(arn)1(o,)-391(jak)28(o)-391(\\273)-1(e)-392(sk)28(ory)-391(b)28(y)1(\\252)-392(do)-391(z\\252o\\261)-1(ci,)-391(s)-1(p)1(lun)1(\\241\\252)-392(i)-391(ws)-1(ze)-1(d)1(\\252)-392(d)1(o)]TJ 0 -13.55 Td[(sie)-1(n)1(i)-333(dru)1(giej,)-333(bi)1(e)-1(gn)1(\\241c)-1(ej)-333(na)-333(pr)1(z)-1(es)-1(tr)1(z)-1(a\\252)-333(s)-1(\\241d)1(o)28(w)27(ego)-334(d)1(om)-1(ost)28(w)27(a.)]TJ 27.879 -13.549 Td[(P)28(o)-289(lew)27(ej)-289(stroni)1(e)-290(b)28(y\\252)-289(s\\241d,)-289(a)-289(p)-28(o)-289(pr)1(a)28(w)27(ej)-289(mie)-1(sz)-1(k)56(a\\252)-289(s)-1(ekretarz,)-289(b)-27(o)-290(j)1(ak)28(o\\273)-290(w\\252a\\261)-1(n)1(ie)]TJ -27.879 -13.549 Td[(Jace)-1(k)-316(w)-1(y)1(ni\\363s\\252)-317(s)-1(amo)28(w)27(ar)-316(pr)1(z)-1(ed)-317(sam)-317(pr)1(\\363g)-317(i)-317(tak)-316(go)-317(rozdm)27(u)1(c)27(h)1(iw)27(a\\252)-316(c)27(holew)28(\\241)-317(z)-1(a)28(wz)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(cie)-1(,)-352(\\273)-1(e)-353(dymi\\252)-353(n)1(ib)28(y)-352(k)28(o)-1(min)-352(fab)1(rycz)-1(n)29(y)83(,)-352(a)-353(c)-1(o)-353(c)28(h)28(wila)-353(ostry)84(,)-353(gni)1(e)-1(wn)28(y)-353(g\\252os)-353(krzycz)-1(a\\252)-353(z)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)1(i)-333(z)-1(ad)1(ymionej)-333(s)-1(i)1(e)-1(n)1(i:)]TJ 27.879 -13.55 Td[({)-333(Jac)-1(ek!)-333(bu)1(c)-1(i)1(ki)-333(pan)1(ie)-1(n)1(k)28(om)-1(!)]TJ 0 -13.549 Td[({)-333(Zaraz)-1(,)-333(zaraz!)]TJ 0 -13.549 Td[(Samo)28(w)27(ar)-333(j)1(u\\273)-333(nib)28(y)-333(wul)1(k)55(an)-332(h)28(ucz)-1(a\\252)-333(i)-333(bu)1(c)27(ha\\252)-333(p\\252omieniami.)]TJ 0 -13.549 Td[({)-333(Jac)-1(ek!)-333(w)28(o)-28(d\\246)-334(p)1(an)28(u)-333(d)1(o)-334(m)28(yc)-1(i)1(a.)]TJ 0 -13.549 Td[({)-284(Dy)1(\\242)-285(zara,)-283(z)-1(r)1(obi)-283(s)-1(i\\246)-284(wsz)-1(y\\242k)28(o,)-284(zrob)1(i!)-284({)-283(I)-284(s)-1(p)-27(o)-28(con)28(y)84(,)-284(n)1(ie)-1(p)1(rzytomn)28(y)83(,)-283(gani)1(a\\252)-284(p)-28(o)]TJ -27.879 -13.549 Td[(sie)-1(n)1(i,)-333(a\\273)-334(d)1(udn)1(i\\252o,)-333(p)-28(o)28(wraca\\252,)-333(dm)28(uc)27(h)1(a\\252)-334(i)-333(zno)28(wu)-333(lec)-1(ia\\252,)-333(b)-27(o)-334(p)1(ani)-333(kr)1(z)-1(y)1(c)-1(za\\252a:)]TJ 27.879 -13.55 Td[({)-333(Jac)-1(ek!)-333(ku)1(lfon)1(ie)-334(j)1(e)-1(d)1(e)-1(n)1(,)-334(gd)1(z)-1(i)1(e)-334(mo)-56(je)-333(p)-28(o\\253)1(c)-1(zo)-28(c)27(h)29(y?!..)]TJ 0 -13.549 Td[({)-333(Ale)-1(!)-333(\\261c)-1(i)1(e)-1(r)1(w)27(a,)-333(ni)1(e)-334(s)-1(amo)28(w)27(ar)1(!)]TJ 0 -13.549 Td[(T)83(rw)28(a\\252o)-391(to)-391(ws)-1(zys)-1(t)1(k)28(o)-391(dobr)1(yc)27(h)-390(par\\246)-391(pacierzy)83(,)-391(ab)-27(o)-391(i)-391(z)-392(k)28(or)1(onk)28(\\246,)-391(a\\273)-392(wresz)-1(cie)]TJ -27.879 -13.549 Td[(dr)1(z)-1(wi)-333(s\\241do)28(w)27(e)-333(s)-1(i\\246)-334(ot)28(w)28(ar\\252y)-333(i)-333(nar)1(\\363)-28(d)-333(p)-27(o)-28(c)-1(z\\241\\252)-333(nap)-27(e)-1(\\252ni)1(a\\242)-334(du)1(\\273)-1(\\241,)-333(wyb)1(ie)-1(l)1(on\\241)-333(izb)-28(\\246.)]TJ 27.879 -13.549 Td[(Jace)-1(k,)-333(ju)1(\\273)-334(te)-1(r)1(az)-335(j)1(ak)28(o)-334(w)28(o\\271)-1(n)28(y)84(,)-334(b)-27(oso,)-334(w)-334(mo)-28(dr)1(yc)27(h)-333(p)-27(ortk)56(ac)27(h)-333(i)-334(tak)1(im\\273)-1(e)-334(lejb)1(iku)]TJ -27.879 -13.55 Td[(z)-377(mos)-1(i)1(\\246)-1(\\273n)28(ymi)-376(guzik)56(am)-1(i,)-376(z)-377(cz)-1(erw)28(on\\241,)-376(sp)-28(o)-27(c)-1(on\\241)-376(t)28(w)28(arz)-1(\\241,)-376(kt\\363r)1(\\241)-377(r)1(az)-377(w)-377(r)1(az)-377(ob)-28(ciera\\252)]TJ 0 -13.549 Td[(r\\246k)56(a)27(w)28(em)-1(,)-448(u)28(wij)1(a\\252)-448(s)-1(i\\246)-448(z)-1(a)-448(cz)-1(ar)1(n)28(ymi)-448(kratami,)-448(d)1(z)-1(i)1(e)-1(l\\241cymi)-448(izb)-28(\\246)-448(na)-448(d)1(w)-1(i)1(e)-449(p)-27(o\\252)-1(o)28(wy)84(,)-448(i)]TJ\nET\nendstream\nendobj\n125 0 obj <<\n/Type /Page\n/Contents 126 0 R\n/Resources 124 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n124 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n129 0 obj <<\n/Length 8420      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(35)]TJ -363.686 -35.866 Td[(rzuca\\252)-296(\\252b)-27(e)-1(m)-295(nib)29(y)-296(k)28(o\\253)1(,)-295(kiej)-295(go)-296(gi)1(e)-1(z)-296(u)1(k)56(\\241s)-1(i,)-295(b)-27(o)-295(p\\252o)28(w)27(e)-296(w\\252osy)-296(spad)1(a\\252y)-295(m)27(u)-295(grzyw)28(\\241)-296(n)1(a)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)84(,)-395(to)-396(zagl\\241da\\252)-395(os)-1(tr)1(o\\273)-1(n)1(ie)-396(do)-395(s)-1(\\241siedn)1(ie)-1(j)-395(stancji)-395(i)-395(p)-28(ot)1(e)-1(m)-396(siada\\252)-395(na)-395(c)27(h)28(wil\\246)-395(p)-28(o)-28(d)]TJ 0 -13.549 Td[(zie)-1(l)1(on)28(ym)-334(p)1(ie)-1(cem)-1(.)]TJ 27.879 -13.549 Td[(A)-308(nar)1(o)-28(du)-308(si\\246)-309(n)1(a)28(w)27(ali)1(\\252o,)-309(\\273e)-309(an)1(i)-308(palca)-308(w)27(etkn)1(\\241\\242)-1(,)-308(i)-308(par)1(li)-308(s)-1(i)1(\\246)-309(coraz)-309(kr)1(z)-1(ep)-28(ciej)-308(na)]TJ -27.879 -13.549 Td[(kr)1(at)27(y)84(,)-306(a\\273)-307(trze)-1(sz)-1(cza\\252)-1(y)1(;)-307(gw)28(ar)-306(z)-1(r)1(az)-1(u)-306(cic)27(h)28(y)-306(p)-27(o)-28(d)1(nosi\\252)-307(si\\246)-307(z)-307(w)28(olna,)-306(sz)-1(em)-1(r)1(a\\252,)-307(p)1(rze)-1(w)28(ala\\252)]TJ 0 -13.55 Td[(p)-27(o)-271(iz)-1(b)1(ie,)-271(h)28(ucz)-1(a\\252)-271(cz)-1(asam)-1(i)1(,)-271(pr)1(z)-1(ec)27(ho)-27(dzi\\252)-271(m)-1(iejscam)-1(i)-271(-w)-271(k\\252\\363tni)1(\\246)-1(,)-271(\\273e)-272(j)1(akie)-272(t)1(akie)-272(mo)-28(cne)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(o)-334(p)1(ada\\252o)-333(c)-1(or)1(az)-334(g\\246)-1(\\261cie)-1(j)1(.)]TJ 27.879 -13.549 Td[(\\233yd)1(z)-1(i)-414(sz)-1(w)28(argotal)1(i)-414(p)-28(o)-27(d)-414(okn)1(am)-1(i,)-413(a)-414(jakie\\261)-415(b)1(ab)28(y)-414(n)1(a)-414(g\\252os)-415(op)-27(o)27(wiad)1(a\\252y)-414(s)-1(w)28(o)-56(j)1(e)]TJ -27.879 -13.549 Td[(kr)1(z)-1(ywd)1(y)-265(i)-264(j)1(e)-1(szc)-1(ze)-265(g\\252o\\261)-1(n)1(iej)-264(p)-28(op)1(\\252akiw)28(a\\252y)83(,)-264(ale)-264(nie)-264(m)-1(o\\273na)-264(b)28(y\\252o)-264(roze)-1(zna\\242,)-264(kto)-264(i)-264(gdzie,)]TJ 0 -13.549 Td[(b)-27(o)-337(cias)-1(n)1(ota)-336(b)28(y\\252a)-337(i)-336(g\\252o)28(w)27(a)-336(pr)1(z)-1(y)-336(g\\252o)27(wie,)-336(jak)28(o)-336(te)-1(n)-336(zagon)-336(p)-28(e\\252e)-1(n)-336(mak)28(\\363)28(w)-337(cz)-1(erw)28(on)28(yc)27(h)]TJ 0 -13.549 Td[(i)-397(k)1(\\252os)-1(\\363)28(w)-397(\\273)-1(y)1(tnic)28(h,)-396(c)-1(o)-397(go)-396(te)-1(n)-396(wiate)-1(r)-396(\\273e)-1(n)1(ie)-1(,)-396(a)-397(on)-396(s)-1(i\\246)-397(zak)28(ole)-1(b)1(ie)-397(i)-397(gw)28(arzy)83(,)-396(i)-397(sz)-1(u)1(m)-1(i)1(,)]TJ 0 -13.55 Td[(a)-441(p)-28(otem)-442(sta)-56(j)1(e)-442(r\\363)28(wno)-441(k\\252os)-442(p)1(rzy)-441(k\\252os)-1(ie.)-441(T)83(o)-441(z)-1(n)1(o)27(wu)1(j)-441(Je)-1(wk)56(a,)-441(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-441(B)-1(or)1(yn\\246)]TJ 0 -13.549 Td[(ws)-1(p)1(artego)-347(o)-347(kr)1(at)27(y)84(,)-347(j)1(\\246)-1(\\252a)-347(d)1(ogadyw)28(a\\242)-347(i)-347(wykrzyki)1(w)27(a\\242)-347(na)-347(n)1(iego,)-347(\\273e)-348(ze)-1(\\271lon)28(y)-346(o)-28(dr)1(z)-1(ek\\252)]TJ 0 -13.549 Td[(ostro:)]TJ 27.879 -13.549 Td[({)-333(Zam)-1(il)1(kni)1(j,)-333(s)-1(u)1(k)28(o,)-333(b)-28(o)-333(ci)-334(gn)1(atki)-333(p)-27(orac)27(h)29(uj)1(\\246)-1(,)-333(\\273e)-334(ro)-28(d)1(z)-1(on)1(a)-334(n)1(ie)-334(p)-27(oz)-1(n)1(a.)]TJ 0 -13.549 Td[(A)-314(n)1(a)-314(to)-313(Je)-1(wk)56(a)-314(r)1(oz)-1(sro\\273ona)-314(n)29(u\\273)-314(p)1(az)-1(u)1(ry)-314(wyci\\241)-28(ga\\242)-314(i)-313(dr)1(z)-1(e\\242)-314(s)-1(i)1(\\246)-314(do)-314(n)1(iego)-314(pr)1(z)-1(ez)]TJ -27.879 -13.55 Td[(g\\246s)-1(t)28(w)28(\\246)-390(l)1(ud)1(z)-1(k)56(\\241,)-388(a\\273)-390(j)1(e)-1(j)-388(c)28(h)28(ustk)56(a)-389(spad)1(\\252)-1(a)-388(z)-389(g\\252o)27(wy)-388(i)-389(d)1(z)-1(i)1(e)-1(ciak)-388(s)-1(i\\246)-389(r)1(oz)-1(kr)1(z)-1(y)1(c)-1(za\\252)-1(,)-388(\\273e)-389(nie)]TJ 0 -13.549 Td[(wiada,)-338(n)1(a)-338(c)-1(zyrn)-337(b)28(y)-338(s)-1(i)1(\\246)-339(sk)28(o\\253cz)-1(y\\252o,)-338(gd)1(y)-338(nar)1(az)-339(Jace)-1(k)-338(si\\246)-339(ze)-1(r)1(w)27(a\\252,)-338(ot)28(w)28(orzy\\252)-339(d)1(rzwi)-338(i)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta,)-333(\\261c)-1(i)1(e)-1(rwy)84(,)-333(b)-28(o)-333(ano)-333(s\\241d)-333(idzie!...)]TJ 0 -13.549 Td[(Jak)28(o\\273)-364(i)-364(s)-1(\\241d)-363(w)-1(sze)-1(d)1(\\252)-1(;)-363(na)-56(j)1(pi)1(e)-1(rw)-364(gr)1(ub)28(y)84(,)-364(wys)-1(ok)1(i)-364(dziedzic)-365(z)-364(Rac)-1(ib)-27(oro)28(wic,)-364(a)-364(z)-1(a)]TJ -27.879 -13.55 Td[(ni)1(m)-288(dw)28(\\363)-28(c)27(h)-287(\\252a)27(wn)1(ik)28(\\363)28(w)-288(i)-288(se)-1(kr)1(e)-1(tar)1(z)-1(,)-287(kt\\363ry)-287(usiad\\252)-288(p)1(rzy)-288(b)-27(o)-28(cz)-1(n)28(y)1(m)-289(stoli)1(ku)-288(p)-27(o)-28(d)-287(okn)1(e)-1(m)]TJ 0 -13.549 Td[(i)-252(r)1(oz)-1(k)1(\\252)-1(ad)1(a\\252)-252(pap)1(iery)-252(a)-251(patrzy\\252)-252(n)1(a)-252(s\\246)-1(d)1(z)-1(i\\363)28(w,)-252(j)1(ak)-252(stan\\246li)-251(przy)-252(wielki)1(m)-253(stole,)-252(ok)1(ryt)28(ym)]TJ 0 -13.549 Td[(cz)-1(erw)28(on)28(ym)-334(sukn)1(e)-1(m,)-333(i)-333(na\\252o\\273yli)-333(z\\252ote)-334(\\252a\\253cuc)27(h)29(y)-333(na)-333(grub)-27(e)-334(k)56(ark)1(i...)1(.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-332(si\\246)-332(z)-1(r)1(obi\\252o,)-331(\\273)-1(e)-332(s\\252yc)27(h)1(a\\242)-332(b)28(y\\252o)-332(t)28(yc)28(h,)-331(c)-1(o)-331(na)-331(ulicy)-331(p)-28(o)-28(d)-331(okn)1(ami)-332(gw)28(arzyli.)]TJ 0 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-477(roz\\252o\\273)-1(y\\252)-476(p)1(apiery)84(,)-476(c)27(hr)1(z)-1(\\241kn)1(\\241\\252,)-476(s)-1(p)-27(o)-56(j)1(rza\\252)-477(n)1(a)-477(sekretarza)-477(i)-476(gr)1(ub)28(y)1(m)-1(,)]TJ -27.879 -13.55 Td[(don)1(o\\261)-1(n)29(ym)-334(g\\252ose)-1(m)-334(ozna)-55(jmi\\252,)-333(\\273e)-334(s)-1(\\241d)1(y)-333(s)-1(i\\246)-333(roz)-1(p)-27(o)-28(cz)-1(y)1(na)-55(j\\241.)]TJ 27.879 -13.549 Td[(P)28(otem)-290(se)-1(kr)1(e)-1(tar)1(z)-290(pr)1(z)-1(ec)-1(zyta\\252)-289(s)-1(p)1(ra)28(wy)-290(n)1(a)-290(d)1(z)-1(i)1(e)-1(\\253)-289(d)1(z)-1(isiejsz)-1(y)84(,)-289(c)-1(o\\261)-290(sze)-1(p)1(n\\241\\252)-290(p)1(ierw-)]TJ -27.879 -13.549 Td[(sz)-1(em)27(u)-333(\\252a)28(wnik)28(o)28(wi,)-333(ten)-333(o)-28(dd)1(a\\252)-334(to)-333(s\\246)-1(d)1(z)-1(iem)27(u)1(,)-333(kt\\363ry)-333(ki)1(w)-1(n)1(\\241\\252)-334(g\\252o)28(w)28(\\241)-334(p)-27(otaku)1(j\\241co.)]TJ 27.879 -13.549 Td[(S\\241d)1(y)-333(s)-1(i)1(\\246)-334(rozp)-28(o)-27(c)-1(z\\246)-1(\\252y)84(.)]TJ 0 -13.549 Td[(Pi)1(e)-1(r)1(w)-1(sz)-1(a)-310(sz)-1(\\252a)-311(spr)1(a)28(w)27(a)-310(z)-1(e)-311(sk)56(argi)-310(s)-1(tr)1(a\\273)-1(n)1(ik)56(a)-311(n)1(a)-311(j)1(akiego\\261)-311(\\252yc)-1(zk)56(a)-311(o)-310(niep)-27(orz\\241dki)]TJ -27.879 -13.55 Td[(w)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)1(.)]TJ 27.879 -13.549 Td[(Sk)56(azan)28(y)-333(z)-1(ao)-27(c)-1(znie.)]TJ 0 -13.549 Td[(P)28(otem)-334(o)-333(p)-27(obicie)-334(c)27(h)1(\\252opak)56(a)-333(z)-1(a)-333(wypasani)1(e)-334(k)28(o\\253mi)-333(k)28(onicz)-1(y)1(n)28(y)83(.)]TJ 0 -13.549 Td[(P)28(ogo)-28(d)1(z)-1(i)1(li)-333(s)-1(i)1(\\246)-334({)-334(matk)56(a)-333(dosta\\252a)-334(p)1(i\\246)-1(\\242)-333(rub)1(li,)-333(a)-333(c)27(h)1(\\252)-1(op)1(ak)-333(no)28(w)28(e)-334(p)-28(or)1(tki)-333(i)-333(lejb)1(ik.)]TJ 0 -13.549 Td[(Sp)1(ra)28(w)28(a)-334(o)-333(w)27(or)1(anie)-333(s)-1(i\\246.)]TJ 0 -13.549 Td[(Od)1(\\252o\\273)-1(on)1(a)-334(z)-334(b)1(raku)-333(d)1(o)28(w)27(o)-28(d)1(\\363)28(w)-1(.)]TJ 0 -13.55 Td[(Sp)1(ra)28(w)28(a)-245(o)-244(k)1(radzie\\273)-245(le\\261)-1(n)1(\\241)-244(w)-245(b)-27(orze)-245(s\\246dz)-1(i)1(e)-1(go;)-244(sta)28(w)27(a\\252)-244(rz\\241dca)-244({)-244(os)-1(k)56(ar\\273eni)-244(c)27(h)1(\\252opi)]TJ -27.879 -13.549 Td[(z)-334(Roki)1(c)-1(in)1(.)]TJ 27.879 -13.549 Td[(Sk)56(azani)-333(n)1(a)-334(k)56(ary)-333(p)1(ie)-1(n)1(i\\246\\273)-1(n)1(e)-334(lub)-332(o)-28(dsiedze)-1(n)1(ie)-334(w)-334(ar)1(e)-1(sz)-1(cie)-334(p)-27(o)-333(dw)28(a)-334(t)28(ygo)-27(dn)1(ie)-1(.)]TJ 0 -13.549 Td[(Nie)-334(p)1(rzyj\\246li)-333(wyrok)1(u,)-333(p)-27(\\363)-56(jd)1(\\241)-333(do)-333(ap)-28(elacji.)]TJ 0 -13.549 Td[(I)-269(tak)-268(g\\252o\\261)-1(n)1(o)-269(z)-1(acz)-1(\\246li)-268(w)-1(y)1(krzykiw)28(a\\242)-269(na)-269(n)1(ie)-1(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-269(b)-27(o)-269(las)-269(b)28(y\\252)-269(wsp)-28(\\363ln)29(y)83(,)]TJ -27.879 -13.55 Td[(se)-1(rwit)1(uto)28(wy)83(,)-333(a\\273)-334(s\\246)-1(d)1(z)-1(i)1(a)-334(skin)1(\\241\\252)-334(n)1(a)-334(Jac)28(k)56(a,)-334(i)-333(ten)-333(zagrz)-1(mia\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta,)-333(cic)27(h)1(o)-56(j)1(ta,)-333(b)-28(o)-333(tu)-333(s\\241d,)-333(n)1(ie)-334(k)56(arcz)-1(ma.)]TJ\nET\nendstream\nendobj\n128 0 obj <<\n/Type /Page\n/Contents 129 0 R\n/Resources 127 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n127 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n132 0 obj <<\n/Length 7563      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(36)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(I)-296(tak)-295(sz)-1(\\252a)-296(spr)1(a)27(w)28(a)-296(za)-296(spr)1(a)27(w)28(\\241,)-296(k)1(ie)-1(b)29(y)-296(skib)1(a)-296(z)-1(a)-295(s)-1(k)1(ib\\241,)-295(r\\363)28(wno)-296(i)-295(do\\261\\242)-296(s)-1(p)-27(ok)28(o)-55(jni)1(e)-1(,)]TJ -27.879 -13.549 Td[(cz)-1(ase)-1(m)-272(t)28(yl)1(k)28(o)-272(p)-27(o)-28(dn)1(os)-1(i\\252y)-271(s)-1(i)1(\\246)-273(sk)56(argi)-271(ab)-28(o)-271(c)27(hl)1(ipan)1(ie)-1(,)-271(ab)-27(o)-272(i)-271(prze)-1(k)1(le)-1(\\253)1(s)-1(t)28(w)28(o,)-272(al)1(e)-273(t)1(e)-273(J)1(ac)-1(ek)]TJ 0 -13.549 Td[(wnet)-333(przycis)-1(za\\252.)]TJ 27.879 -13.549 Td[(Z)-332(iz)-1(b)29(y)-332(ub)28(y)1(\\252o)-333(n)1(iec)-1(o)-332(lu)1(dzi,)-332(ale)-333(w)-332(ic)27(h)-331(m)-1(i)1(e)-1(j)1(s)-1(ce)-333(p)1(rz)-1(y)1(b)28(y\\252o)-332(t)28(yle)-333(n)1(o)28(w)-1(y)1(c)27(h,)-332(\\273e)-333(stali)]TJ -27.879 -13.549 Td[(zbici)-326(kieb)28(y)-326(w)-326(s)-1(n)1(op,)-326(\\273e)-327(n)1(ikto)-326(p)-27(oruszy\\242)-327(si\\246)-327(n)1(ie)-327(m\\363g\\252)-326(i)-326(z)-1(r)1(obi\\252)-326(si\\246)-327(tak)1(i)-326(gor\\241c,)-326(i\\273)-327(an)1(i)]TJ 0 -13.55 Td[(o)-28(d)1(e)-1(tc)28(hn)1(\\241\\242)-334(a\\273)-334(s\\246)-1(d)1(z)-1(ia)-333(p)-27(ole)-1(ci\\252)-333(ot)28(w)27(orzy\\242)-334(ok)1(na.)]TJ 27.879 -13.549 Td[(T)83(eraz)-414(s)-1(z\\252a)-414(spra)28(w)28(a)-414(B)-1(ar)1(tk)56(a)-414(Koz\\252a)-414(z)-415(Li)1(piec)-414(o)-414(krad)1(z)-1(i)1(e)-1(\\273)-414(\\261)-1(win)1(i)-414(u)-413(Mar)1(c)-1(j)1(ann)28(y)]TJ -27.879 -13.549 Td[(An)28(ton)1(\\363)28(w)-1(n)29(y)-231(P)28(acz)-1(e\\261)-1(.)-230(\\221wiad)1(k)28(o)28(w)-1(i)1(e)-1(:)-230(ta\\273)-232(M)1(arcjan)1(na,)-231(syn)-230(jej)-230(Szym)-1(on)1(,)-231(Barb)1(ara)-231(P)1(ies)-1(ek)]TJ 0 -13.549 Td[(itd)1(.)]TJ 27.879 -13.549 Td[({)-333(\\221wiad)1(k)28(o)27(wie)-333(c)-1(zy)-333(s)-1(\\241?)-333(.)-334(zap)28(yta\\252)-333(\\252a)28(w)-1(n)1(ik.)]TJ 0 -13.549 Td[({)-333(Je)-1(ste\\261)-1(m)28(y!)-333({)-334(za)28(w)27(o\\252ali)-333(c)27(h)1(\\363rem)-1(.)]TJ 0 -13.55 Td[(Boryn)1(a,)-320(kt)1(\\363ry)-319(dot\\241d)-319(s)-1(amotn)1(ie)-320(a)-320(cie)-1(r)1(pli)1(w)-1(i)1(e)-320(s)-1(ta\\252)-319(przy)-320(k)1(racie)-1(,)-319(pr)1(z)-1(ysun)1(\\241\\252)-320(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co)-334(d)1(o)-333(P)28(ac)-1(ze)-1(sio)28(w)28(e)-1(j)-333(p)1(rz)-1(y)1(w)-1(i)1(ta\\242)-1(,)-333(b)-27(o)-28(\\242)-334(to)-333(b)28(y)1(\\252)-1(a)-333(Domini)1(k)28(o)27(w)28(a,)-333(matk)55(a)-333(Jagn)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Os)-1(k)56(ar)1(\\273)-1(on)28(y)84(,)-333(B)-1(ar)1(te)-1(k)-333(Kozio\\252,)-333(bl)1(i\\273)-1(ej,)-333(za)-333(krat\\246.)]TJ 0 -13.549 Td[(Niski)-381(c)27(h)1(\\252)-1(op)-381(p)1(rze)-1(p)28(y)1(c)27(ha\\252)-381(s)-1(i)1(\\246)-382(z)-1(e)-382(\\261ro)-28(d)1(k)56(a)-382(tak)-381(gw)28(a\\252)-1(t)1(o)27(wn)1(ie)-1(,)-381(a\\273)-382(kl)1(\\241\\242)-382(p)-28(o)-28(cz\\246)-1(li)1(,)-382(\\273e)]TJ -27.879 -13.549 Td[(dep)-27(c)-1(ze)-334(p)-27(o)-334(k)1(ulasac)27(h)-333(i)-333(pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(e)-1(k)-333(ozdziera.)]TJ 27.879 -13.55 Td[({)-362(C)-1(i)1(c)27(ho)-55(jta,)-362(\\261c)-1(i)1(e)-1(rwy)84(,)-362(b)-28(o)-362(pr)1(z)-1(e\\261)-1(wietn)28(y)-362(s)-1(\\241d)-362(m\\363)28(wi!)-362({)-363(k)1(rz)-1(y)1(kn\\241\\252)-362(Jac)-1(ek,)-362(wpu)1(s)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(a)-55(j\\241c)-334(go.)]TJ 27.879 -13.549 Td[({)-333(Wy)-333(B)-1(ar)1(t\\252om)-1(i)1(e)-1(j)-333(Kozio\\252?)]TJ 0 -13.549 Td[(Ch\\252op)-298(d)1(rapa\\252)-298(s)-1(i)1(\\246)-299(fr)1(as)-1(ob)1(liwie)-299(p)-27(o)-298(g\\246)-1(st)28(yc)27(h)1(,)-299(r)1(\\363)28(w)-1(n)1(o)-299(ob)-27(ci\\246)-1(t)28(y)1(c)27(h)-298(w\\252os)-1(ac)27(h)1(;)-298(g\\252up)-27(o-)]TJ -27.879 -13.549 Td[(w)28(at)27(y)-249(u\\261m)-1(i)1(e)-1(c)27(h)-249(skrzywia\\252)-250(m)27(u)-249(s)-1(u)1(c)27(h)1(\\241,)-250(wygolon)1(\\241)-250(t)28(w)27(arz,)-250(a)-250(ma\\252e)-250(rud)1(a)27(w)28(e)-250(o)-28(c)-1(zki)-249(c)27(h)28(ytr)1(z)-1(e)]TJ 0 -13.55 Td[(sk)55(ak)56(a\\252y)-333(p)-27(o)-334(s\\246)-1(d)1(z)-1(iac)28(h)-333(ni)1(b)28(y)-333(w)-1(i)1(e)-1(wi\\363r)1(ki.)]TJ 27.879 -13.549 Td[({)-333(Wy)-333(B)-1(ar)1(t\\252om)-1(i)1(e)-1(j)-333(Kozio\\252?)-333({)-334(zap)28(yta\\252)-333(z)-1(n)1(o)28(w)-1(u)-332(s)-1(\\246dzia,)-333(b)-28(o)-333(c)27(h)1(\\252op)-333(m)-1(i)1(lc)-1(za\\252.)]TJ 0 -13.549 Td[({)-382(Dy\\242)-382(ju)1(\\261)-1(ci,)-382(on)-382(ci)-382(Bart\\252omie)-1(j)-381(Koz)-1(i)1(o\\252)-1(,)-381(dopr)1(as)-1(zam)-383(si\\246)-382(\\252as)-1(ki)-382(p)1(rze)-1(\\261wie)-1(tn)1(e)-1(go)]TJ -27.879 -13.549 Td[(s\\241du!)-333({)-333(pi)1(s)-1(zc)-1(za\\252a)-334(ogr)1(om)-1(n)1(a)-334(k)28(ob)1(ieta,)-333(w)-1(p)29(yc)27(h)1(a)-56(j)1(\\241c)-334(s)-1(i\\246)-333(s)-1(i\\252\\241)-333(za)-334(kr)1(at)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(wy)-333(cz)-1(ego?)]TJ 0 -13.55 Td[({)-421(Dopr)1(as)-1(zam)-422(si\\246)-422(\\252aski,)-421(a)-421(dy\\242)-421(ja)-421(\\273)-1(on)1(a)-422(tego)-421(c)27(h)28(u)1(dziak)56(a,)-421(B)-1(ar)1(tk)55(a)-421(Koz\\252a)-421({)-422(i)]TJ -27.879 -13.549 Td[(k\\252an)1(ia\\252a)-274(s)-1(i\\246)-274(r\\246k)55(\\241)-274(ziem)-1(i)1(,)-274(a\\273)-275(wyr)1(urk)28(o)28(w)28(an)28(ym)-274(c)-1(ze)-1(p)-27(ce)-1(m)-274(z)-1(a)28(w)28(adza\\252)-1(a)-274(o)-274(st\\363\\252)-274(s)-1(\\246dzio)28(ws)-1(ki)1(.)]TJ 27.879 -13.549 Td[({)-333(\\221wiad)1(kuj)1(e)-1(cie?)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(to)-333(z)-1(a)-333(\\261w)-1(i)1(adk)56(a?)-334(n)1(i,)-333(jeno)-333(dop)1(rasz)-1(am)-334(si\\246...)]TJ 0 -13.549 Td[({)-333(W)83(o\\271n)28(y;)-333(wyrzu\\242)-333(j\\241)-333(z)-1(a)-333(krat)1(\\246)-1(.)]TJ 0 -13.55 Td[({)-333(Wyc)27(h)1(o)-28(d)1(\\271)-1(ta,)-333(k)28(ob)1(ie)-1(to,)-333(b)-27(o)-333(nie)-334(l)1(a)-334(w)28(as)-334(tu)-333(miejsc)-1(e...-)]TJ 0 -13.549 Td[(Ch)28(wyci\\252)-334(j)1(\\241)-334(za)-333(ramiona)-333(i)-333(p)-28(c)28(ha\\252)-333(z)-1(ad)1(e)-1(m.)]TJ 0 -13.549 Td[({)-430(Dop)1(rasz)-1(am)-430(si\\246)-430(pr)1(z)-1(e\\261)-1(wietnego)-430(s\\241du)1(,)-430(ki)1(e)-1(j)-429(m\\363)-56(j)-429(ano)-430(n)1(ie)-430(dos\\252ysz)-1(y)-429(na)-430(ten)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(k\\252ad..)1(.)-334({)-333(kr)1(z)-1(ycz)-1(a\\252a.)]TJ 27.879 -13.549 Td[({)-297(Wyc)28(ho)-28(d)1(\\271)-1(ta,)-297(p)-27(\\363ki)-297(p)-27(o)-297(dob)1(rem)27(u)-297({)-297(i)-297(a\\273)-297(j\\246kn\\246\\252a,)-297(tak)-297(j\\241)-297(ciepn\\241\\252)-297(n)1(a)-297(krat\\246,)-297(b)-28(o)]TJ -27.879 -13.549 Td[(ani)-333(k)1(roku)-333(p)-27(o)-333(dobr)1(o)-28(c)-1(i)-333(u)1(s)-1(t\\241)-27(pi\\242)-333(nie)-334(c)28(hcia\\252a.)]TJ 27.879 -13.55 Td[({)-333(Wyj)1(d\\271c)-1(ie,)-333(b)-28(\\246dziem)27(y)-333(g\\252o\\261)-1(n)1(o)-333(m)-1(\\363)28(wili,)-333(to)-333(c)27(h)1(o)-28(\\242)-334(on)-333(K)1(oz)-1(io\\252,)-333(a)-333(us\\252ys)-1(zy!)]TJ 0 -13.549 Td[(Zac)-1(z\\246\\252)-1(o)-333(si\\246)-334(wres)-1(zc)-1(i)1(e)-334(bad)1(anie.)]TJ 0 -13.549 Td[({)-333(Jak)-333(s)-1(i\\246)-333(nazyw)27(acie?)]TJ 0 -13.549 Td[({)-333(H\\246)-1(?...)-333(a,)-333(p)1(rze)-1(zyw)27(am?...)-333(P)1(rz)-1(ecie)-1(c)28(h)-333(w)27(o\\252ali)-333(m\\246,)-334(t)1(o)-334(n)1(ib)28(y)-333(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-334(wiedz\\241...)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(.)-333(Jak)-333(si\\246)-334(n)1(az)-1(y)1(w)27(acie)-1(?)-333({)-333(ind)1(ago)27(w)28(a\\252)-334(n)1(ieub)1(\\252)-1(agan)1(ie)-334(s\\246)-1(d)1(z)-1(i)1(a.)]TJ 0 -13.55 Td[({)-333(B)-1(ar)1(te)-1(k)-333(Kozio\\252,)-333(pr)1(z)-1(e\\261)-1(wietn)28(y)-333(s\\241dzie)-334({)-333(rzuci\\252a)-334(\\273ona.)]TJ 0 -13.549 Td[({)-333(Ile)-334(lat?)]TJ\nET\nendstream\nendobj\n131 0 obj <<\n/Type /Page\n/Contents 132 0 R\n/Resources 130 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 117 0 R\n>> endobj\n130 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n135 0 obj <<\n/Length 8231      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(37)]TJ -335.807 -35.866 Td[({)-333(H\\246)-1(?...)-333(a,)-333(lat?..)1(.)-333(b)-28(o)-333(ja)-333(to)-333(p)-28(omn)1(\\246)-1(!)-333(Matk)56(a,)-333(wiele)-334(to)-333(ja)-333(mam)-334(rok)28(\\363)28(w?...)]TJ 0 -13.549 Td[({)-333(Pi\\246\\242)-1(d)1(z)-1(i)1(e)-1(si\\241t)-333(i)-333(dw)28(a,)-334(wid)1(z)-1(i)-333(mi)-333(s)-1(i)1(\\246)-1(,)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(na)-333(z)-1(wies)-1(n)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arz?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(I...)-333(trzy)-333(m)-1(or)1(gi)-333(piac)28(h)28(u)-333(i)-333(te)-1(n)-332(jeden)-333(kro)28(wi)-333(ogon...)-333(sieln)28(y)-333(gosp)-28(o)-28(d)1(arz.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-334(j)1(u\\273)-334(k)56(aran)28(y)1(?)]TJ 0 -13.55 Td[({)-333(H\\246)-1(?...)-333(k)56(aran)29(y?)]TJ 0 -13.549 Td[({)-333(C)-1(zy)-333(s)-1(i)1(e)-1(d)1(z)-1(ieli\\261c)-1(i)1(e)-334(w)-334(k)28(ozie?)]TJ 0 -13.549 Td[({)-325(T)83(o)-325(nib)29(y)-325(w)-326(k)1(re)-1(min)1(ale?)-1(..)1(.)-325(k)56(aran)28(y?..)1(.)-325(Matk)56(a,)-325(b)28(y\\252em)-326(to)-325(w)-325(kreminale,)-325(h\\246?...)]TJ 0 -13.549 Td[({)-274(A)-275(b)29(y\\252e)-1(\\261,)-274(B)-1(ar)1(tku,)-274(b)29(y\\252e)-1(\\261,)-274(a)-275(to)-274(ci\\246)-275(te)-275(\\261c)-1(i)1(e)-1(r)1(w)-1(y)-274(d)1(w)27(or)1(s)-1(ki)1(e)-275(o)-275(to)-274(zdec)27(h\\252e)-274(jagni)1(\\241t-)]TJ -27.879 -13.549 Td[(k)28(o...)]TJ 27.879 -13.549 Td[({)-316(Ju)1(\\261)-1(ci,)-316(j)1(u\\261)-1(ci..)1(.)-316(na)-316(p)1(a\\261)-1(n)1(iku)-315(z)-1(n)1(alaz)-1(\\252em)-317(zdec)27(h)1(\\252e)-317(j)1(agni\\246...)-315(w)-1(zionem,)-316(c)-1(o)-316(mia\\252y)]TJ -27.879 -13.55 Td[(psy)-420(r)1(oz)-1(w\\252\\363)-28(c)-1(y)1(\\242)-1(..)1(.)-420(p)-27(os)-1(k)56(ar\\273y\\252y)83(,)-419(przysi\\246)-1(g\\252y)84(,)-420(com)-421(u)1(krad)1(\\252,)-420(s)-1(\\241d)-419(pr)1(z)-1(ys\\241dzi\\252...)-419(w)-1(sadzi-)]TJ 0 -13.549 Td[(\\252y)-433(m)-1(\\246)-434(i)-433(s)-1(i)1(e)-1(d)1(z)-1(ia\\252em...)-433(Nie)-1(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-434(j)1(e)-1(st)-434(in)1(o,)-433(nies)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(\\242...)-433({)-433(m)-1(\\363)28(wi\\252)]TJ 0 -13.549 Td[(g\\252uc)28(ho)-333(i)-333(obzie)-1(r)1(a\\252)-334(si\\246)-334(znacz)-1(n)1(ie)-334(n)1(a)-334(\\273on\\246.)]TJ 27.879 -13.549 Td[({)-306(Os)-1(k)56(ar\\273eni)-306(jes)-1(t)1(e)-1(\\261c)-1(ie)-306(o)-307(kr)1(adzie\\273)-307(m)-1(aciory)-306(M)1(arcjann)1(ie)-307(P)28(acze)-1(\\261!)-307(W)1(z)-1(i\\246li\\261cie)-307(j\\241)]TJ -27.879 -13.549 Td[(z)-334(p)-27(ola,)-333(zagnali)-333(do)-333(d)1(om)27(u,)-333(zarzn\\246li)-333(i)-333(z)-1(j)1(e)-1(d)1(li!)-333(Co)-334(macie)-334(n)1(a)-334(sw)27(o)-55(j\\241)-333(obr)1(on\\246?)]TJ 27.879 -13.55 Td[({)-412(H\\246)-1(?)-413(Zj)1(ad\\252em)-1(!)-412(\\233eb)28(ym)-413(tak)-412(Boga)-413(p)1(rzy)-412(s)-1(k)28(onan)1(iu)-412(n)1(ie)-413(ogl\\241d)1(a\\252)-1(,)-412(\\273e)-413(ni)1(e)-413(z)-1(j)1(a-)]TJ -27.879 -13.549 Td[(d\\252em!...)-333(o)-333(\\261)-1(wiec)-1(i)1(e)-334(ro)-28(d)1(z)-1(on)29(y)83(,)-333(ja)-333(zjad)1(\\252)-1(em!)-333({)-334(w)28(o\\252a\\252)-334(\\273a\\252o\\261)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(m)-1(acie)-334(n)1(a)-334(sw)27(o)-55(j\\241)-333(obr)1(on\\246?)]TJ 0 -13.549 Td[({)-230(Obr)1(on\\246...)-230(m)-1(i)1(a\\252)-1(em)-231(to)-230(c)-1(o)-230(rze)-1(c,)-230(m)-1(atk)56(a?...)-230(Ju)1(\\261)-1(ci,)-230(bacz)-1(\\246;)-230(niewino)28(w)28(at)28(ym)-1(,)-230(\\261wini)]TJ -27.879 -13.549 Td[(ni)1(e)-418(zjad)1(\\252e)-1(m)-417(a)-417(M)1(arc)-1(j)1(ann)1(a)-417(Domini)1(k)28(o)27(w)28(a,)-417(n)1(a)-417(ten)-417(p)1(rz)-1(y)1(k\\252ad,)-416(s)-1(zc)-1(ze)-1(k)56(a)-417(b)-27(ele)-418(co,)-417(k)1(ie)-1(j)]TJ 0 -13.55 Td[(ten)-333(pies,)-334(\\273e)-334(in)1(o)-334(c)28(h)28(yci\\242)-334(za)-334(t)1(e)-1(n)-333(p)1(as)-1(ku)1(dn)29(y)-334(p)29(ys)-1(k)-333(a)-333(s)-1(p)1(ra\\242...)-333(a..)1(.)]TJ 27.879 -13.549 Td[({)-333(O)-333(lud)1(z)-1(ie,)-333(lu)1(dz)-1(i)1(e)-1(!.)1(..)-333({)-334(j)1(\\246)-1(k)1(n\\246\\252a)-334(Domin)1(ik)28(o)28(w)27(a.)]TJ 0 -13.549 Td[({)-442(T)83(o)-442(ju)1(\\273)-443(sobie)-442(p)-28(\\363\\271ni)1(e)-1(j)-441(z)-1(rob)1(icie)-1(,)-442(at)1(e)-1(raz)-442(m\\363)27(w)28(c)-1(i)1(e)-1(,)-442(j)1(akim)-442(s)-1(p)-27(os)-1(ob)-27(em)-443(\\261winia)]TJ -27.879 -13.549 Td[(P)28(acz)-1(es)-1(i)1(o)27(w)28(ej)-333(z)-1(n)1(alaz)-1(\\252a)-333(s)-1(i)1(\\246)-334(u)-333(w)28(as)-1(?...)]TJ 27.879 -13.549 Td[({)-248(\\221win)1(ia)-248(P)28(ac)-1(ze)-1(sio)28(w)28(a..)-248(u)-248(mnie?...)-248(Matk)56(a,)-248(co)-248(to)-249(wielmo\\273)-1(n)29(y)-248(dzie)-1(d)1(z)-1(i)1(c)-249(rze)-1(k)1(li?...)]TJ 0 -13.55 Td[({)-333(A)-334(d)1(y\\242,)-334(Bart)1(ku,)-333(to)-333(o)-334(t)28(y)1(m)-334(pr)1(os)-1(iak)1(u,)-333(co)-334(to)-333(za)-334(tob)1(\\241)-334(p)1(rzylaz\\252)-334(d)1(o)-334(c)28(ha\\252up)29(y)83(..)1(.)]TJ 0 -13.549 Td[({)-296(Bac)-1(z\\246)-1(,)-296(j)1(u\\261c)-1(i)1(,)-296(\\273)-1(e)-296(bacz)-1(\\246,)-296(b)-27(o)-296(prosiak)-296(to)-296(b)28(y)1(\\252,)-296(a)-296(nie)-296(\\261)-1(win)1(ia)-296(\\273)-1(ad)1(na;)-296(d)1(opr)1(as)-1(zam)]TJ -27.879 -13.549 Td[(si\\246)-365(\\252as)-1(k)1(i)-364(w)-1(i)1(e)-1(lmo\\273nego)-365(s\\241du)1(,)-364(niec)27(h)-364(s\\252ys)-1(z\\241,)-364(c)-1(om)-364(ano)-364(rze)-1(k)1(\\252)-1(,)-364(i)-364(p)1(rzywt\\363rz\\246)-1(;)-364(p)1(ros)-1(i)1(ak)]TJ 0 -13.549 Td[(to)-306(b)28(y\\252,)-306(a)-306(nie)-306(\\261)-1(win)1(ia;)-306(bi)1(a\\252)-1(n)29(y)-306(prosiak,)-306(a)-306(kiele)-307(ogon)1(a)-306(ab)-28(o)-306(i)-306(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-307(p)-27(oni)1(\\273)-1(ej)-306(cz)-1(arn)1(o)]TJ 0 -13.549 Td[(\\252ac)-1(i)1(at)28(y)83(.)]TJ 27.879 -13.55 Td[({)-333(Dobr)1(z)-1(e,)-333(ale)-334(sk)55(\\241d)-333(si\\246)-334(wzi\\241\\252)-334(u)-332(w)27(as?)]TJ 0 -13.549 Td[({)-327(Nib)28(y)-327(u)-326(m)-1(n)1(ie)-1(?..)1(.)-327(Zarno)-327(ws)-1(zy\\242k)28(o)-327(doku)1(m)-1(en)28(tn)1(ie)-328(r)1(z)-1(ekn\\246,)-327(z)-328(cz)-1(ego)-327(s)-1(i)1(\\246)-328(p)-27(ok)55(a\\273e)]TJ -27.879 -13.549 Td[(la)-456(pr)1(z)-1(e\\261)-1(wietnego)-456(s)-1(\\241d)1(u)-456(i)-456(la)-456(z)-1(gr)1(om)-1(ad)1(z)-1(on)1(e)-1(go)-456(nar)1(o)-28(du)1(,)-456(c)-1(o)-456(jes)-1(t)1(e)-1(m)-457(n)1(iew)-1(i)1(no)28(w)27(at)28(y)84(,)-456(a)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-333(c)-1(ygan)-333(j)1(e)-1(st)-333(bab)1(a,)-333(plec)-1(i)1(uc)27(h)-333(i)-333(ozorn)1(ic)-1(a)-333(zap)-28(o)28(wietrzona!)]TJ 27.879 -13.549 Td[({)-384(Ja)-384(c)-1(ygan)1(i\\246!)-384(A)-385(d)1(y\\242)-385(tej)-384(Na)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(ej)-384(P)28(an)1(ie)-1(n)1(ki)-384(up)1(rosz)-1(\\246,)-384(\\273)-1(eb)28(y)-384(w)28(as)-385(pi)1(e)-1(r)1(un)]TJ -27.879 -13.549 Td[(b)-27(e)-1(z)-364(\\261wi\\246)-1(tej)-363(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)-363(ni)1(e)-364(trzas)-1(n)1(\\241\\252!)-364({)-363(rze)-1(k\\252a)-363(c)-1(ic)28(ho,)-363(z)-364(w)27(estc)27(hn)1(ieniem)-364(ci\\246)-1(\\273kim)-364(d)1(o)]TJ 0 -13.55 Td[(obr)1(az)-1(u)-350(Matk)1(i)-351(Bos)-1(ki)1(e)-1(j)1(,)-351(wis)-1(z\\241ce)-1(go)-351(w)-351(r)1(ogu)-351(izb)28(y)84(,)-351(Domini)1(k)28(o)27(w)28(a,)-351(a)-350(p)-28(otem)-1(,)-350(\\273)-1(e)-351(to)-351(j)1(u\\273)]TJ 0 -13.549 Td[(\\261c)-1(ierp)1(ie)-1(\\242)-333(nie)-334(mog\\252a,)-333(wyc)-1(i)1(\\241)-28(gn\\246\\252a)-334(zwini)1(\\246)-1(t\\241,)-333(c)27(h)29(ud)1(\\241)-334(p)1(i\\246)-1(\\261\\242)-334(d)1(o)-334(n)1(iego)-334(i)-333(sykn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-355(T)28(y)-355(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(u)-355(\\261w)-1(i)1(\\253ski!)-355(t)28(y)-355(zb)-27(\\363)-56(ju)1(!)-355(t)28(y!.)1(..)-355({)-355(i)-355(r)1(oz)-1(cz)-1(ap)1(ie)-1(r)1(z)-1(y\\252a)-355(p)1(alce)-1(,)-355(j)1(akb)28(y)-355(go)]TJ -27.879 -13.549 Td[(c)27(h)29(yc)-1(i)1(\\242)-334(c)27(h)1(c)-1(ia\\252a.)]TJ 27.879 -13.549 Td[(Ale)-334(Bart)1(k)28(o)27(w)28(a)-333(rz)-1(u)1(c)-1(i)1(\\252)-1(a)-333(si\\246)-334(d)1(o)-334(n)1(ie)-1(j)-332(z)-334(krzyki)1(e)-1(m.)]TJ 0 -13.55 Td[({)-333(C)-1(o!)-333(b)1(i\\252ab)28(y\\261)-333(g)-1(o,)-333(suk)28(o)-333(jedn)1(a,)-333(bi\\252ab)29(y\\261)-1(,)-333(cz)-1(ar)1(o)27(wn)1(ic)-1(o,)-333(k)56(acie)-334(syno)28(ws)-1(k)1(i,)-333(t)28(y!)]TJ 0 -13.549 Td[({)-333(Uc)-1(iszy\\242)-334(si\\246)-1(!)-333({)-333(z)-1(a)28(w)28(o\\252a\\252)-334(s\\246)-1(d)1(z)-1(ia.)]TJ\nET\nendstream\nendobj\n134 0 obj <<\n/Type /Page\n/Contents 135 0 R\n/Resources 133 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n133 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n139 0 obj <<\n/Length 10071     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(38)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-399(S)1(tul)1(ta)-399(p)28(y)1(s)-1(ki)1(,)-399(k)1(ie)-1(j)-398(s\\241d)-398(m)-1(\\363)28(wi,)-398(b)-27(o)-399(w)28(a)-56(ju)-398(wyciepn)1(\\246)-399(na)-399(osobn)1(o\\261)-1(\\242!)-398({)-399(p)-27(opar)1(\\252)]TJ -27.879 -13.549 Td[(Jace)-1(k,)-333(p)-27(o)-28(d)1(c)-1(i\\241)-27(ga)-56(j)1(\\241)-1(c)-333(parcian)1(ki,)-333(b)-27(o)-334(m)28(u)-333(s)-1(i)1(\\246)-334(b)28(y\\252)-333(ob)-27(e)-1(rtelek)-333(ob)-28(erw)28(a\\252.)]TJ 27.879 -13.549 Td[(Ucis)-1(zy\\252o)-299(si\\246)-300(zaraz,)-299(a)-299(b)1(ab)28(y)83(,)-298(\\273)-1(e)-299(to)-299(bl)1(is)-1(k)28(o)-298(b)28(y\\252o)-299(do)-299(c)28(h)28(wyc)-1(eni)1(a)-299(s)-1(i)1(\\246)-300(za)-299(\\252b)28(y)83(,)-298(s)-1(ta\\252y)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(cic)27(h)1(o,)-333(ino)-333(s)-1(i)1(\\246)-334(o)-28(cz)-1(ami)-333(jad)1(\\252)-1(y)-333(a)-333(wz)-1(d)1(yc)27(h)1(a\\252y)-333(z)-1(e)-334(z\\252o\\261)-1(ci...)]TJ 27.879 -13.549 Td[({)-333(M\\363)28(w)27(cie,)-333(B)-1(ar)1(t\\252om)-1(ieju)1(,)-333(m)-1(\\363)28(w)28(c)-1(ie)-333(w)-1(szys)-1(tk)28(o)-333(a)-333(pr)1(a)27(wd)1(\\246)-1(.)]TJ 0 -13.55 Td[({)-484(P)1(ra)28(w)-1(d)1(\\246)-1(?..)1(.)-484(S)1(am)-1(\\241)-484(cz)-1(y)1(s)-1(t\\241)-484(k)1(ie)-1(j)-483(sz)-1(k\\252o)-484(p)1(ra)28(wd\\246)-484(rze)-1(k)1(n\\246,)-484(rze)-1(teln)1(ie)-484(p)-28(o)28(wiem)-1(,)]TJ -27.879 -13.549 Td[(kiej)-386(n)1(a)-387(sp)-27(o)27(wiedzi,)-386(kiej)-386(gosp)-28(o)-27(darz)-386(do)-386(gos)-1(p)-27(o)-28(d)1(arzy)83(,)-386(kiej)-386(sw)27(\\363)-55(j)-386(do)-386(sw)27(o)-55(jak)28(\\363)28(w,)-386(b)-28(om)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arz)-357(z)-357(dziada)-357(p)1(rad)1(z)-1(iad)1(a,)-357(a)-357(n)1(ie)-357(k)28(om)-1(or)1(nik,)-356(nie)-357(p)1(re)-1(f)1(e)-1(sjan)29(t)-357(jak)1(i)-357(ab)-27(o)-357(i)-357(j)1(e)-1(n)1(s)-1(zy)]TJ 0 -13.549 Td[(mie)-1(sc)27(k)1(i)-334(zdzier.)-333(T)83(o)-333(tak)-333(b)28(y\\252o.)]TJ 27.879 -13.549 Td[({)-333(P)28(atrz)-333(dobr)1(z)-1(e)-333(w)-334(g\\252o)28(w)27(\\246,)-333(b)28(y\\261)-334(cz)-1(eg\\363)-56(j)-333(n)1(ie)-334(p)1(rze)-1(p)-27(omnia\\252)-333(-)-1(r)1(adzi\\252a.)]TJ 0 -13.549 Td[({)-455(Nie)-455(p)1(rze)-1(p)-27(om)-1(n)1(\\246)-1(,)-454(Magd)1(u\\261,)-455(ni)1(e)-1(.)-454(T)83(o)-455(b)28(y\\252o)-454(tak.)-455(S)1(z)-1(ed\\252em)-455(s)-1(e...)-454(a)-455(bacz)-1(\\246,)-455(\\273e)]TJ -27.879 -13.55 Td[(to)-382(ry)1(c)27(h)28(t)28(yk)-382(zwie)-1(sna)-382(b)28(y)1(\\252a...)-382(i)-382(za)-382(Wilcz)-1(y)1(m)-383(Do\\252em)-1(,)-382(w)28(edle)-382(B)-1(or)1(yno)28(w)28(e)-1(j)-382(k)28(on)1(icz)-1(yn)29(y)83(..)1(.)]TJ 0 -13.549 Td[(id)1(\\246)-351(se)-351(i)-349(m)-1(\\363)28(wi\\246)-350(pacierz)-1(,)-349(b)-28(o)-350(n)1(a)-350(ten)-350(p)1(rz)-1(y)1(k\\252ad)-350(p)1(rze)-1(d)1(z)-1(w)28(onil)1(i)-350(ju)1(\\273)-351(n)1(a)-350(Ani)1(o\\252)-350(P)28(a\\253ski..)1(.)]TJ 0 -13.549 Td[(no)-27(c)27(k)56(a)-327(te\\273)-327(s)-1(z\\252a...)-326(id)1(\\246)-327(s)-1(e...)-326(ja\\273)-327(t)1(u)-326(s)-1(\\252ysz)-1(\\246:)-326(g\\252)-1(os)-327(n)1(ie)-327(g\\252os?)-327(Lob)-28(oga,)-326(m)28(y\\261)-1(l)1(\\246)-327(s)-1(e:)-327(c)28(hr)1(z)-1(\\241k)56(a)]TJ 0 -13.549 Td[(alb)-27(o)-369(i)-370(n)1(ie)-370(c)28(hrz\\241k)56(a?)-1(.)1(..)-369(Ogl\\241d)1(n\\241\\252e)-1(m)-369(z)-1(a)-369(s)-1(i)1(\\246)-370(ni)1(c)-1(ze)-1(go)-369(nie)-369(w)-1(i)1(dn)1(o,)-370(cic)28(ho)-369(c)-1(a\\252kiem.)-369(Z)-1(\\252e)]TJ 0 -13.549 Td[(m\\246)-327(ku)1(s)-1(i)-326(cz)-1(y)-326(co?)-1(.)1(..)-326(Ide)-327(d)1(ale)-1(j)-325(i)-327(\\273e)-327(m\\246)-327(zdzie)-1(b)1(k)28(o)-326(m)-1(r)1(\\363)27(wki)-326(ob)1(laz)-1(\\252y)-326(ze)-327(strac)27(h)29(u,)-326(m\\363)27(wi\\246)]TJ 0 -13.55 Td[(se)-397(P)29(oz)-1(d)1(ro)28(w)-1(i)1(e)-1(n)1(ie)-396(Anielskie.)-396(Chr)1(z)-1(\\241k)56(a)-396(zno)28(wu!)-395(Cie)-1(!)-395(m)27(y\\261l\\246)-396(sobie,)-396(n)1(ic)-1(,)-395(jeno)-395(s)-1(wyn)1(ia)]TJ 0 -13.549 Td[(to)-334(ab)-27(o)-334(i)-333(z)-1(asie)-334(p)1(ros)-1(i)1(ak.)-334(Zl)1(az)-1(\\252e)-1(m)-334(zdziebk)28(o)-333(w)-334(b)-28(ok,)-333(w)-334(k)28(on)1(ic)-1(zyn)1(\\246)-335(i)-333(ob)-27(e)-1(j)1(rz)-1(a\\252em)-334(s)-1(i)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[(ju)1(\\261)-1(ci,)-346(\\273)-1(e)-347(cosik)-347(l)1(iz)-1(i)1(e)-347(z)-1(a)-346(m)-1(n)1(\\241,)-347(p)1(rzys)-1(t)1(an\\241\\252e)-1(m)-346(ja)-347(p)1(rzystan\\246\\252)-1(o)-346(i)-346(to,)-347(a)-346(bia\\252n)1(e)-1(,)-346(ni)1(s)-1(ki)1(e)-347(i)]TJ 0 -13.549 Td[(d\\252u)1(gie...)-366(a)-367(\\261lepie)-366(\\261)-1(wiec)-1(i\\252y)-366(ki)1(e)-1(j)-366(u)-366(\\271bi)1(k)55(a)-366(ab)-27(o)-367(zgo\\252a)-367(u)-366(z\\252e)-1(go..)1(.)-366(Prze)-1(\\273egna\\252e)-1(m)-366(s)-1(i\\246,)-366(a)]TJ 0 -13.549 Td[(\\273e)-364(i)-362(s)-1(k)28(\\363r)1(a)-363(mi)-363(\\261c)-1(ierp)1(\\252a,)-363(tom)-363(ru)1(s)-1(zy\\252)-363(l)1(e)-1(p)1(s)-1(zym)-363(krok)1(ie)-1(m)-363(j)1(ak\\273)-1(e,)-363(ab)-27(o)-363(to)-362(wiadomo,)-363(co)]TJ 0 -13.55 Td[(si\\246)-386(p)-27(o)-385(no)-28(cac)27(h)-384(t\\252ucz)-1(e?...)-385(A)-385(ws)-1(zysc)-1(y)-385(w)-385(Lip)-27(c)-1(ac)28(h)-385(wiedz\\241,)-385(c)-1(o)-385(n)1(a)-386(W)1(ilcz)-1(yc)28(h)-385(Do\\252ac)27(h)]TJ 0 -13.549 Td[(strasz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-350(Ju\\261ci,)-350(\\273)-1(e)-350(pr)1(a)27(wd)1(a,)-350(b)-28(o)-350(\\252oni)1(,)-350(kiej)-350(S)1(ik)28(ora)-350(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252)-350(tam)-351(n)1(o)-28(c\\241,)-350(to)-350(go)-351(u)1(\\252a-)]TJ -27.879 -13.549 Td[(pi)1(\\252o)-359(za)-358(grd)1(yk)28(\\246)-359(i)-357(rz)-1(u)1(c)-1(i)1(\\252)-1(o)-358(o)-358(ziem)-1(i)1(\\246)-1(,)-358(i)-358(tak)-357(z)-1(b)1(i\\252o,)-358(\\273)-1(e)-358(c)27(h)1(\\252)-1(op)-357(c)27(h)1(orz)-1(a\\252)-358(d)1(wie)-359(n)1(ie)-1(d)1(z)-1(i)1(e)-1(le)-358({)]TJ 0 -13.549 Td[(ob)-55(ja\\261ni)1(a\\252)-1(a)-333(\\273ona.)]TJ 27.879 -13.55 Td[({)-303(Cic)27(h)1(o)-56(j)1(,)-303(Magdu)1(\\261)-1(,)-302(c)-1(ic)28(ho)-55(j!)-303(Id\\246,)-303(id)1(\\246)-1(.)1(..)-303(id\\246...)-302(a)-304(t)1(o)-304(f)1(ort)-303(lezie)-304(za)-303(m)-1(n)1(\\241)-303(i)-303(c)27(h)1(rz)-1(\\241k)56(a!)]TJ -27.879 -13.549 Td[(A)-345(\\273e)-345(to)-344(b)28(y\\252)-345(r)1(yc)27(h)28(t)28(yk)-344(mies)-1(i\\241cz)-1(ek)-344(w)-1(y)1(laz)-1(\\252)-344(s)-1(e)-345(n)1(a)-345(n)1(ie)-1(b)-27(o,)-344(to)-345(p)1(atrz\\246)-1(,)-344(a)-345(to)-344(ino)-344(pr)1(os)-1(iak)1(,)]TJ 0 -13.549 Td[(ni)1(e)-397(z\\252e)-1(.)-395(Oz)-1(gn)1(ie)-1(w)28(a\\252e)-1(m)-396(si\\246)-1(,)-395(b)-28(o)-396(co)-396(se)-397(ten)-396(g\\252u)1(pi)-396(m)28(y\\261li)-396({)-396(strasz)-1(y\\242,)-396(tom)-396(rzuci\\252)-396(na\\253)]TJ 0 -13.549 Td[(pat)28(y)1(kiem)-353(i)-351(id\\246)-352(ku)-351(domo)28(wi)-352(Sze)-1(d)1(\\252e)-1(m)-352(se)-353(miedz\\241,)-352(mi\\246dzy)-352(Mi)1(c)27(ha\\252o)28(wymi)-352(bu)1(rak)56(ami)]TJ 0 -13.549 Td[(a)-334(psz)-1(eni)1(c)-1(\\241)-334(Boryn)1(o)27(w)28(a,)-334(a)-334(p)-27(ote)-1(m)-334(mi\\246)-1(d)1(z)-1(y)-334(j)1(ark)56(\\241)-334(T)83(omk)55(a)-334(a)-334(o)28(ws)-1(em)-335(tego)-334(Ja\\261k)55(a,)-334(co)-334(go)]TJ 0 -13.55 Td[(\\252oni)-345(d)1(o)-345(w)27(o)-55(jsk)56(a)-346(wzie)-1(n)1(i,)-345(a)-345(kt\\363r)1(e)-1(go)-345(to)-345(k)28(ob)1(ie)-1(t)1(a)-346(ak)1(uratn)1(ie)-345(w)27(cz)-1(or)1(a)-56(j)-345(zleg\\252a...)-345(P)1(ros)-1(i)1(ak)]TJ 0 -13.549 Td[(for)1(t)-450(z)-1(a)-449(m)-1(n)1(\\241)-450(kiej)-450(p)1(ie)-1(s,)-450(to)-450(se)-450(idzi)-450(ob)-27(ok,)-450(to)-450(wlaz\\252)-450(w)-450(k)56(arto\\015e)-450(Domini)1(k)28(o)27(w)28(ej)-450(i)-450(tu)]TJ 0 -13.549 Td[(p)28(yskn)1(ie)-1(,)-333(i)-333(tam)-333(p)28(ysknie,)-333(i)-333(c)27(h)1(rz)-1(\\241k)1(nie,)-333(i)-333(kwikn)1(ie)-1(,)-333(a)-333(nie)-333(os)-1(ta)-55(je,)-333(ino)-333(za)-334(mn\\241.)1(..)]TJ 27.879 -13.549 Td[(Sk)1(r\\246c)-1(i\\252em)-419(na)-419(\\261c)-1(i)1(e)-1(\\273k)28(\\246)-1(,)-418(c)-1(o)-419(b)1(ie)-1(\\273y)-419(n)1(a)-419(pr)1(z)-1(e\\252a)-56(j)-418({)-419(ona)-418(z)-1(a)-419(mn\\241.)-418(Gor\\241co)-419(mi)-419(si\\246)]TJ -27.879 -13.549 Td[(zrobi)1(\\252)-1(o,)-366(b)-27(o)-366(lab)-28(oga,)-366(tak)56(a)-366(\\261)-1(win)1(ia,)-366(c)-1(o)-366(mo\\273)-1(e)-366(nie)-367(\\261wini)1(a!)-367(S)1(kr\\246ci\\252e)-1(m)-367(n)1(a)-366(drog\\246)-366(w)27(edle)]TJ 0 -13.549 Td[(\\014gu)1(ry)84(,)-322(p)1(ros)-1(i)1(ak)-322(za)-322(m)-1(n)1(\\241...)-321(Widzia\\252em)-1(,)-321(bia\\252y)-322(b)29(y\\252,)-322(a)-322(ki)1(e)-1(le)-322(ogon)1(a,)-322(p)-27(oni\\273e)-1(j)-321(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)]TJ 0 -13.55 Td[(cz)-1(arn)1(o)-304(\\252ac)-1(i)1(at)27(y)1(!)-304(Ja)-304(b)-27(e)-1(z)-304(r\\363)28(w)-304({)-304(ona)-304(za)-304(mn\\241,)-304(j)1(a)-304(na)-304(te)-304(mogi\\252ki,)-304(co)-304(za)-304(\\014gur)1(\\241)-304(s)-1(\\241)-304({)-304(on)1(a)]TJ 0 -13.549 Td[(za)-312(mn\\241,)-311(ja)-311(na)-312(k)56(amion)1(ki,)-311(a)-312(ona)-311(kiej)-311(m)-1(i)-311(si\\246)-312(nie)-312(r)1(z)-1(u)1(c)-1(i)-311(p)-27(o)-28(d)-311(kul)1(as)-1(y)-311({)-312(r)1(ym)-1(n)1(\\241\\252e)-1(m)-312(k)1(ie)-1(j)]TJ 0 -13.549 Td[(d\\252u)1(gi.)-353(O)1(p)-28(\\246tana)-352(c)-1(zy)-353(co?...)-352(Le)-1(d)1(w)-1(i)1(e)-1(m)-353(si\\246)-353(p)-28(ozbi)1(e)-1(r)1(a\\252)-1(,)-352(a)-353(on)1(a)-353(kiej)-352(nie)-353(zadrze)-353(ogona)-352(i)]TJ 0 -13.549 Td[(w)-278(s)-1(k)28(ok)-278(p)1(rze)-1(d)1(e)-279(mn\\241!)-278(A)-278(le\\242)-1(\\273e)-279(se)-1(,)-278(zap)-27(o)27(wietrzona,)-278(p)-27(om)27(y)1(\\261)-1(la\\252em.)-278(Ale)-279(n)1(ie)-279(u)1(c)-1(iek\\252a,)-278(in)1(o)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273)-255(p)1(rze)-1(d)1(e)-255(mn\\241)-254(le)-1(cia\\252a)-254({)-255(a\\273)-255(d)1(o)-255(same)-1(j)-254(c)27(h)1(a\\252up)28(y)-254({)-254(do)-254(s)-1(amej)-254(c)27(ha\\252u)1(p)28(y)84(,)-255(p)1(rze)-1(\\261wie)-1(tn)29(y)]TJ 0 -13.55 Td[(s\\241dzie)-1(,)-464(a\\273)-465(w)-464(ogro)-28(d)1(z)-1(enie)-465(w)28(es)-1(z\\252a,)-465(a\\273)-464(do)-464(s)-1(ieni)-464(wlaz\\252a,)-465(a)-464(\\273)-1(e)-464(drzwi)-465(d)1(o)-464(iz)-1(b)29(y)-465(b)29(y\\252y)]TJ 0 -13.549 Td[(wyw)28(arte,)-334(t)1(o)-334(i)-333(d)1(o)-334(izb)28(y)-333(p)-27(os)-1(z\\252a...)-333(T)83(ak)-333(mi)-333(P)28(anie)-333(B)-1(o\\273e)-334(dop)-27(om\\363\\273)-334(Ame)-1(n)1(!)]TJ\nET\nendstream\nendobj\n138 0 obj <<\n/Type /Page\n/Contents 139 0 R\n/Resources 137 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n137 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n142 0 obj <<\n/Length 9549      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(39)]TJ -335.807 -35.866 Td[({)-333(A)-334(p)-27(otem)-334(zarz)-1(n)1(\\246)-1(l)1(i\\261)-1(cie)-334(i)-333(zjedli)1(,)-333(pra)28(wda?)-333({)-334(r)1(z)-1(ek\\252.)-333(s)-1(\\246dzia)-333(rozba)28(wion)28(y)84(.)]TJ 0 -13.549 Td[({)-323(H\\246)-1(!)-322(Zarz)-1(n)1(\\246)-1(l)1(i)-323(i)-323(z)-1(j)1(e)-1(d)1(li?..)1(.)-323(A)-323(c)-1(o\\261w)27(a)-323(zrob)1(i\\242)-324(mieli?)-323(Pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-323(dzie)-1(\\253)-322({)-323(prosiak)]TJ -27.879 -13.549 Td[(ni)1(e)-449(o)-28(d)1(c)27(ho)-27(dzi;)-448(pr)1(z)-1(es)-1(zed\\252)-448(t)28(ydzie\\253)-448(jes)-1(t)1(,)-448(ani)-448(j)1(e)-1(j)-448(wygon)1(i\\242,)-448(b)-28(o)-448(z)-448(kwikiem)-449(wraca!..)1(.)]TJ 0 -13.549 Td[(Mo)-55(ja)-348(p)-28(o)-27(dt)28(yk)56(a\\252a)-349(j)1(e)-1(j)1(,)-348(c)-1(o)-348(mog\\252)-1(a,)-348(b)-27(o)-348(jak\\273e)-349(g\\252o)-28(dem)-349(morzy\\242,)-349(Bo\\273e)-349(s)-1(t)28(w)28(orze)-1(n)1(ie)-349(te\\273)-1(..)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(e\\261)-1(wietn)28(y)-299(s\\241d)-299(jest)-300(m\\241d)1(ry)83(,)-299(t)1(o)-300(spr)1(a)27(wiedl)1(iwie)-300(se)-300(wymiarku)1(je,)-299(\\273)-1(e)-299(c)-1(om)-299(z)-300(n)1(i\\241)-299(bied-)]TJ 0 -13.55 Td[(n)28(y)-274(s)-1(i)1(e)-1(r)1(ota)-275(mia\\252)-275(zrob)1(i\\242)-1(?)-274(Nikto)-55(j)-275(p)-27(o)-275(n)1(i\\241)-274(nie)-275(p)1(rzyc)27(h)1(o)-28(dzi\\252,)-275(a)-274(w)-275(d)1(om)27(u)-274(bi)1(e)-1(d)1(a)-275({)-275(a)-274(\\273)-1(ar)1(\\252a,)]TJ 0 -13.549 Td[(\\273e)-290(i)-290(d)1(w)-1(i)1(e)-290(dru)1(gie)-290(t)28(yl)1(e)-290(nie)-290(ze)-1(c)28(hla)-55(j\\241..)1(:)-290(Jesz)-1(cz)-1(e)-290(z)-290(mies)-1(i\\241c,)-289(to)-290(b)29(y)-290(n)1(as)-290(z)-1(e\\273)-1(ar)1(\\252a)-290(i)-289(z)-290(b)-28(eb)-27(e)-1(-)]TJ 0 -13.549 Td[(c)27(h)1(am)-1(i)1(...)-320(Co)-320(b)28(y)1(\\252o)-320(radzi\\242?)-320(Mia\\252a)-320(on)1(a)-320(nas)-320({)-320(to\\261)-1(w)28(a)-320(m)28(y)-320(j\\241)-320(zjad)1(\\252y)83(,)-319(a)-320(i)-320(to)-320(n)1(ie)-1(ca\\252\\241,)-320(b)-27(o)]TJ 0 -13.549 Td[(na)-321(ws)-1(i)-321(si\\246)-322(zw)-1(iedzia\\252y)84(,)-322(a)-321(Domini)1(k)28(o)27(w)28(a)-321(p)-28(osk)56(ar\\273)-1(y)1(\\252)-1(a,)-321(\\273e)-322(to)-321(jej,)-321(pr)1(z)-1(ysz)-1(\\252a)-321(z)-1(e)-321(s)-1(o\\252t)28(yse)-1(m)]TJ 0 -13.549 Td[(i)-333(z)-1(ab)1(ra\\252a)-333(w)-1(szy\\242)-1(k)28(o.)1(..)]TJ 27.879 -13.549 Td[({)-333(Ws)-1(zystk)28(o?...)-333(a)-333(c)-1(a\\252y)-333(z)-1(ad)-332(to)-334(gd)1(z)-1(i)1(e)-1(?...)-333({)-333(s)-1(y)1(kn\\246\\252a)-334(z\\252o)28(w)-1(r)1(ogo)-334(Domin)1(ik)28(o)28(w)27(a.)]TJ 0 -13.55 Td[({)-320(Gdzie?)-321(Sp)28(y)1(ta)-56(j)1(ta)-321(si\\246)-321(Kr)1(ucz)-1(k)56(a)-321(i)-320(d)1(rugi)1(c)27(h)-320(pi)1(e)-1(sk)28(\\363)27(w.)-320(Wyn)1(ie\\261)-1(li)1(\\261)-1(m)28(y)-321(n)1(a)-321(n)1(o)-28(c)-321(do)]TJ -27.879 -13.549 Td[(sto)-28(d\\363\\252ki)1(.)-375(Psy)83(,)-374(\\273)-1(e)-375(to)-375(cz)-1(u)1(jn)1(e)-376(p)1(s)-1(ie)-375(par)1(y)83(,)-374(a)-375(w)-1(r)1(ota)-375(b)28(y\\252y)-374(dziur)1(a)27(w)28(e)-1(,)-374(wyc)-1(i\\241)-27(gn\\246\\252y)-375(i)-375(b)1(al)]TJ 0 -13.549 Td[(se)-334(s)-1(p)1(ra)28(wi\\252y)-333(m)-1(o)-55(j\\241)-333(krw)28(a)28(w)-1(i)1(c)-1(\\241,)-333(\\273e)-334(c)27(h)1(o)-28(dzi\\252y)-333(ob\\273arte)-334(k)1(ie)-1(j)-332(te)-334(dziedzic)-1(e.)]TJ 27.879 -13.549 Td[({)-412(Hale,)-412(\\261w)-1(i)1(nia)-412(sama)-412(p)-28(osz)-1(\\252a)-412(za)-412(nim,)-412(g\\252u)1(pi)-412(u)29(w)-1(i)1(e)-1(r)1(z)-1(y)84(,)-412(ale)-412(nie)-412(s\\241d.)-412(Z\\252o)-28(d)1(z)-1(iej)]TJ -27.879 -13.549 Td[(ju)1(c)27(h)1(a,)-333(a)-334(b)1(arana)-333(m\\252ynar)1(z)-1(o)28(wi,)-333(a)-334(g\\246\\261)-334(d)1(obro)-27(dzie)-1(j)1(o)28(w)-1(i)-333(to)-333(kto)-333(p)-27(okrad)1(\\252,)-334(co?...)]TJ 27.879 -13.55 Td[({)-382(Wid)1(z)-1(i)1(a\\252a\\261)-1(,)-382(co?)-382(Wid)1(z)-1(ia\\252a\\261!)-382({)-382(wrzas)-1(n)1(\\246)-1(\\252a)-382(Koz\\252o)27(w)28(a,)-382(p)1(rzys)-1(k)56(aku)1(j\\241c)-382(z)-383(p)1(az)-1(u)1(-)]TJ -27.879 -13.549 Td[(rami.)]TJ 27.879 -13.549 Td[({)-289(A)-288(k)56(arto\\015e)-289(z)-289(or)1(ganisto)28(w)27(ego)-289(d)1(o\\252u)-289(t)1(o)-289(kto?...)-288(A)-289(ci\\246giem)-289(c)-1(osik)-288(k)28(om)27(u\\261)-289(w)28(e)-289(ws)-1(i)]TJ -27.879 -13.549 Td[(gin)1(ie)-1(,)-333(to)-333(g\\241sk)55(a,)-333(to)-333(ku)1(ry)84(,)-334(t)1(o)-334(spr)1(z)-1(\\246t)-334(j)1(aki)-333({)-333(c)-1(i\\241)-27(gn\\246\\252)-1(a)-333(n)1(ie)-1(u)1(b\\252agan)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-321(T)28(y)-321(\\261c)-1(i)1(e)-1(rw)28(o!)-321(Co\\261)-321(t)28(y)-321(r)1(obi\\252a)-321(za)-321(m\\252o)-28(du)1(,)-321(a)-320(i)-321(co)-321(t)28(w)27(o)-55(ja)-321(Jagn)1(a)-321(teraz)-321(wypr)1(a)27(wia)]TJ -27.879 -13.55 Td[(z)-334(p)1(arobk)56(ami;)-333(to)-333(c)-1(i)-333(tego)-334(n)1(ikt)-333(n)1(ie)-334(wyp)-27(om)-1(in)1(a,)-333(a)-334(t)28(y)-333(ki)1(e)-1(j)-333(ten)-333(p)1(ie)-1(s...)]TJ 27.879 -13.549 Td[({)-474(W)84(ara)-474(ci)-474(o)-28(d)-473(Jagn)28(y!)-474(W)84(ara,)-473(b)-28(o)-474(ci)-474(ten)-474(p)28(y)1(s)-1(k)-474(t)1(ak)-474(s)-1(p)1(ier\\246,)-474(\\273)-1(e...)-473(W)83(ara!)1(...)-474({)]TJ -27.879 -13.549 Td[(ry)1(kn\\246\\252a)-334(wielkim)-333(g\\252os)-1(em)-1(,)-333(u)1(go)-28(dzona)-333(j)1(ak)-334(w)-333(\\273)-1(y)1(w)27(e)-334(mi\\246s)-1(o.)]TJ 27.879 -13.549 Td[({)-325(C)-1(i)1(c)27(ho)-55(jta,)-325(p)28(ysk)56(ac)-1(ze)-1(,)-325(b)-27(o)-326(za)-325(drzwi)-326(wyciepn)1(\\246)-1(!)-325({)-326(u)1(c)-1(i)1(s)-1(zal)-325(Jac)-1(ek,)-325(p)-28(o)-27(dci\\241)-28(ga)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(par)1(c)-1(i)1(anek.)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246\\252)-1(o)-333(si\\246)-334(p)1(rz)-1(es)-1(\\252u)1(c)27(h)1(iw)27(an)1(ie)-334(\\261wiadk)28(\\363)28(w.)]TJ 0 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-500(\\261wiadcz)-1(y)1(\\252a)-500(p)-28(osz)-1(k)28(o)-27(do)28(w)27(an)1(a,)-500(Domin)1(ik)28(o)28(w)27(a)-500(a)-499(z)-1(ez)-1(n)1(a)27(w)28(a\\252a)-500(cic)27(h)28(y)1(m)-1(,)]TJ -27.879 -13.549 Td[(nab)-27(o\\273n)28(ym)-350(g\\252ose)-1(m)-349(i)-349(przysi\\246)-1(ga\\252a)-349(c)-1(o)-349(c)27(h)29(w)-1(i)1(la)-349(prze)-1(d)-348(t\\241)-350(Cz\\246)-1(sto)-28(c)27(h)1(o)28(w)-1(sk)56(\\241,)-349(jak)28(o)-349(\\261)-1(win)1(ia)]TJ 0 -13.549 Td[(jej,)-450(i)-451(\\273)-1(egna\\252a)-451(si\\246)-1(,)-450(i)-451(bi\\252a)-451(w)-451(pi)1(e)-1(r)1(s)-1(i,)-450(\\273)-1(e)-451(pra)28(wda)-451(j)1(e)-1(st,)-451(j)1(ak)28(o)-452(j)1(\\241)-451(uk)1(rad\\252)-451(z)-451(past)27(wisk)56(a)]TJ 0 -13.549 Td[(Kozio\\252,)-426(i)-426(n)1(ie)-426(\\273)-1(\\241d)1(a)-1(\\252a)-426(o)-27(d)-426(pr)1(z)-1(e\\261)-1(wietn)1(e)-1(go)-426(s\\241du)-425(k)55(ar)1(y)-426(na)-426(n)1(iego,)-426(niec)27(h)-425(m)27(u)-425(ju\\273)-426(tam)]TJ 0 -13.55 Td[(Jez)-1(u)1(s)-1(icze)-1(k)-319(cz)-1(y\\261\\242c)-1(a)-319(z)-1(a)-319(to)-319(n)1(ie)-320(p)-27(o\\273a\\252)-1(u)1(je)-319({)-319(ale)-320(d)1(om)-1(aga\\252a)-319(si\\246)-320(wielkim)-319(g\\252os)-1(em)-320(s\\241du)-318(i)]TJ 0 -13.549 Td[(k)56(aryza)-333(to,)-334(\\273e)-334(tak)-333(sp)-28(ostp)-27(ono)28(w)28(a\\252)-334(j)1(\\241)-334(i)-333(Jagn)1(\\246)-334(w)27(ob)-27(ec)-334(c)-1(a\\252ego)-334(n)1(a-ro)-28(d)1(u.)]TJ 27.879 -13.549 Td[(\\221wiad)1(c)-1(zy\\252)-430(p)-28(otem)-431(S)1(z)-1(ymek,)-430(s)-1(yn)-430(Domin)1(ik)28(o)28(w)27(ej;)-430(cz)-1(ap)1(k)28(\\246)-431(p)-28(o)28(wies)-1(i)1(\\252)-431(na)-430(r\\246k)56(ac)27(h)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\273on)28(yc)28(h)-298(jak)-298(do)-298(p)1(ac)-1(ierza,)-298(o)-28(c)-1(z\\363)28(w)-299(ni)1(e)-299(s)-1(p)1(u\\261c)-1(i)1(\\252)-299(z)-299(s\\246)-1(d)1(z)-1(i)1(e)-1(go)-298(i)-298(j\\246kliwym,)-298(niepr)1(z)-1(yt)1(om)-1(-)]TJ 0 -13.549 Td[(n)28(ym)-368(g\\252os)-1(em)-369(z)-1(ezna)28(w)27(a\\252,)-368(\\273)-1(e)-368(\\261)-1(win)1(ia)-369(b)29(y\\252a)-369(matcz)-1(yn)1(a,)-368(\\273)-1(e)-369(b)1(ia\\252na)-368(b)28(y\\252a)-368(c)-1(a\\252a,)-368(in)1(o)-369(ki)1(e)-1(le)]TJ 0 -13.549 Td[(ogona)-302(cz)-1(ar)1(n\\241)-302(\\252at\\246)-302(m)-1(i)1(a\\252)-1(a,)-301(a)-303(u)1(c)27(h)1(o)-302(roze)-1(rw)28(ane,)-302(b)-27(o)-302(j\\241)-302(b)28(y\\252)-302(\\212ap)1(a)-302(B)-1(or)1(yno)28(wy)-302(c)27(h)29(yc)-1(i)1(\\252)-303(n)1(a)]TJ 0 -13.55 Td[(zw)-1(i)1(e)-1(sn\\246,)-333(a)-334(tak)-333(kwicz)-1(a\\252a,)-333(\\273e)-334(c)27(h)1(o)-28(cia\\273)-334(w)-334(sto)-28(d)1(\\363\\252c)-1(e)-334(b)29(y\\252)-334({)-333(us\\252ysz)-1(a\\252..)1(.)]TJ 27.879 -13.549 Td[(P)28(otem)-334(za)28(w)27(ez)-1(w)28(ano)-333(B)-1(ar)1(bar)1(\\246)-334(Piese)-1(k)-333(i)-333(in)1(n)28(yc)27(h)1(.)]TJ 0 -13.549 Td[(\\221wiad)1(c)-1(zyli)-306(p)-27(o)-307(k)28(olei)-307(i)-306(pr)1(z)-1(y)1(s)-1(i\\246gali,)-306(a)-307(S)1(z)-1(ymek)-307(w)28(c)-1(i)1(\\241\\273)-308(sta\\252)-307(z)-307(cz)-1(ap)1(k)56(\\241)-307(na)-306(r\\246k)55(ac)28(h,)]TJ -27.879 -13.549 Td[(wpatr)1(z)-1(on)28(y)-400(p)-28(ob)-27(o\\273nie)-401(w)-401(s)-1(\\246dziego,)-401(a)-401(K)1(oz)-1(\\252o)28(w)27(a)-401(d)1(ar\\252a)-401(si\\246)-401(z)-1(a)-401(k)1(rat\\246)-401(z)-401(krzykiem)-401(z)-1(a-)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(za\\253)-308(i)-307(z)-1(\\252orze)-1(cze)-1(\\253)1(,)-308(a)-308(Dom)-1(i)1(nik)28(o)28(w)28(a)-308(ino)-308(wzdyc)28(ha\\252a)-308(do)-308(ob)1(razu,)-308(a)-308(p)-27(ogl\\241d)1(a)-308(\\252)-1(a)-308(n)1(a)]TJ 0 -13.55 Td[(Koz\\252a,)-333(kt\\363ry)-333(sk)55(ak)56(a\\252)-333(o)-28(c)-1(zami,)-333(nas\\252uc)27(h)1(iw)28(a\\252)-1(,)-333(a)-333(obziera\\252)-333(s)-1(i\\246)-333(na)-333(s)-1(w)28(o)-56(j)1(\\241)-334(M)1(agdu)1(s)-1(i\\246.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-377(s\\252uc)28(ha\\252)-377(u)29(w)27(a\\273nie)-377(i)-376(raz)-377(w)-376(raz)-377(sz)-1(me)-1(r)1(,)-377(to)-376(u)28(w)28(agi)-377(z\\252o\\261)-1(l)1(iw)27(e)-377(al)1(b)-28(o)-376(\\261)-1(miec)27(h)]TJ\nET\nendstream\nendobj\n141 0 obj <<\n/Type /Page\n/Contents 142 0 R\n/Resources 140 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n140 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n145 0 obj <<\n/Length 8907      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(40)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(si\\246)-334(rozleg\\252)-334(g\\252u)1(c)27(h)28(y)-333(p)-27(o)-28(d)-333(p)-27(o)27(w)28(a\\252\\241,)-333(a\\273)-334(Jace)-1(k)-333(m)27(u)1(s)-1(i)1(a\\252)-334(p)1(rzyc)-1(isza\\242)-334(gro\\271b\\241.)]TJ 27.879 -13.549 Td[(Sp)1(ra)28(w)28(a)-437(c)-1(i)1(\\241)-28(gn\\246\\252a)-437(si\\246)-437(d\\252ugo,)-436(a\\273)-437(do)-437(p)1(rze)-1(r)1(w)-1(y)84(,)-437(w)-437(k)1(t\\363rej)-437(s\\241d)-436(p)-28(osz)-1(ed\\252)-436(do)-437(s\\241-)]TJ -27.879 -13.549 Td[(sie)-1(d)1(niej)-412(izb)28(y)-412(na)-412(n)1(arad\\246,)-412(a)-413(n)1(ar\\363)-28(d)-411(w)-1(y)1(s)-1(yp)1(a\\252)-413(si\\246)-413(d)1(o)-413(sieni)-412(i)-412(pr)1(z)-1(ed)-412(dom)-412(o)-28(detc)27(h)1(n\\241\\242)]TJ 0 -13.549 Td[(ni)1(e)-1(co:)-334(kto)-334(p)-28(o)-55(je\\261)-1(\\242)-334(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-335(k)1(to)-334(z)-1(e)-335(sw)27(oi)1(m)-1(i)-334(\\261wiadk)56(ami)-334(s)-1(i\\246)-334(z)-1(m\\363)28(wi\\242)-1(,)-334(kt)1(o)-335(wyw)28(o)-28(d)1(z)-1(i\\242)]TJ 0 -13.549 Td[(kr)1(z)-1(ywd)1(y)-386(sw)27(o)-55(je,)-385(a)-386(j)1(e)-1(n)1(s)-1(zy)-385(z)-1(n)1(o)27(wu)1(j)-385(wyrze)-1(k)56(a\\242)-386(n)1(a)-386(n)1(ie)-1(spr)1(a)27(wiedl)1(iw)27(o\\261\\242)-386(a)-385(p)-28(omsto)28(w)27(a\\242,)]TJ 0 -13.55 Td[(jak)-333(to)-333(zw)-1(y)1(c)-1(za)-56(j)1(nie)-334(b)29(yw)27(a)-333(n)1(a)-334(r)1(ok)55(ac)28(h.)]TJ 27.879 -13.549 Td[(P)28(o)-333(pr)1(z)-1(erwie)-334(i)-333(o)-28(d)1(c)-1(zytan)1(iu)-333(wyrok)28(\\363)28(w)-333(przysz)-1(\\252a)-333(na)-333(s)-1(t)1(\\363\\252)-334(spra)28(w)28(a)-334(Bory)1(n)28(y)83(.)]TJ 0 -13.549 Td[(Jew)-1(k)56(a)-237(s)-1(tan)1(\\246)-1(\\252a)-238(p)1(rze)-1(d)-237(s\\241dem)-238(i)-238(p)-27(oh)28(u\\261tu)1(j\\241c)-238(dziec)27(k)28(o,)-238(ob)29(w)-1(i)1(ni\\246te)-238(w)-238(zapas)-1(k)28(\\246,)-237(j\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(p\\252acz)-1(l)1(iwie)-361(wyw)28(o)-28(d)1(z)-1(i\\242)-360(krzywdy)-359(s)-1(w)28(o)-56(j)1(e)-361(i)-360(\\273ale;)-360(jak)28(o)-360(s\\252u\\273y\\252a)-360(u)-360(Boryn)29(y)-360(i)-360(p)1(rac)-1(o)28(w)28(a\\252a,)]TJ 0 -13.549 Td[(ja\\273e)-405(j)1(e)-1(j)-403(kul)1(as)-1(y)-404(u)1(s)-1(ta)28(w)28(a\\252y)83(,)-404(a)-404(n)1(igdy)-403(dobr)1(e)-1(go)-404(s\\252o)27(w)28(a)-404(ni)1(e)-405(us\\252ysz)-1(a\\252a,)-404(k)56(\\241ta)-404(ni)1(e)-405(mia\\252a)]TJ 0 -13.549 Td[(na)-372(s)-1(p)1(anie)-373(an)1(i)-373(jad)1(\\252a)-373(do\\261\\242)-1(,)-372(\\273)-1(e)-373(si\\246)-373(u)-373(s\\241s)-1(i)1(ad\\363)28(w)-373(p)-27(o\\273)-1(ywia\\242)-373(m)28(usia\\252a,)-373(a)-373(p)-27(otem)-374(zas\\252)-1(u)1(g)]TJ 0 -13.55 Td[(ni)1(e)-377(z)-1(ap)1(\\252ac)-1(i\\252)-376(i)-376(z)-377(jego)-377(w\\252asn)28(ym)-377(d)1(z)-1(i)1(e)-1(c)27(k)1(ie)-1(m)-376(w)-1(y)1(gna\\252)-376(j\\241)-376(w)-377(c)-1(a\\252y)-376(\\261w)-1(i)1(at...)-376(bu)1(c)27(h)1(n\\246\\252a)-377(w)]TJ 0 -13.549 Td[(k)28(o\\253cu)-333(ogromn)28(y)1(m)-334(p\\252acz)-1(em)-334(i)-333(rzuci\\252a)-333(s)-1(i\\246)-333(na)-333(k)28(olana)-333(pr)1(z)-1(ed)-333(s\\246)-1(d)1(z)-1(iami)-333(z)-334(kr)1(z)-1(yk)1(ie)-1(m)-333(:)]TJ 27.879 -13.549 Td[({)-333(Krzywda)-333(to)-333(m)-1(o)-55(ja,)-333(kr)1(z)-1(ywd)1(a!)-334(a)-333(d)1(z)-1(iec)-1(i)1(ak)-333(jego,)-334(p)1(rze)-1(\\261wie)-1(tn)29(y)-333(s)-1(\\241d)1(z)-1(ie!)]TJ 0 -13.549 Td[({)-333(C)-1(y)1(gani)-333(jak)-333(ten)-333(p)1(ie)-1(s)-334({)-333(mru)1(kn\\241\\252)-333(B)-1(or)1(yna)-333(ze)-334(z)-1(gr)1(oz)-1(\\241.)]TJ 0 -13.549 Td[({)-360(Ja)-359(c)-1(y)1(gani\\246?!)-360(A)-360(d)1(y\\242)-360(ws)-1(zystkie,)-360(a)-359(dy\\242)-360(ca\\252e)-360(Lip)-28(ce)-360(wie)-1(d)1(z)-1(\\241,)-359(\\273e)-1(..)1(.)-360(\\273e)-1(\\261)-360(suk)56(a)-360(i)]TJ -27.879 -13.55 Td[(lata)28(wiec)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-360(Wi)1(e)-1(lmo\\273n)28(y)-360(s\\241dzie)-1(,)-359(a)-360(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-359(to)-360(mi)-360(in)1(o)-360(m)-1(\\363)28(wili)1(:)-360(Jew)-1(k)56(a,)-359(Je)-1(wu\\261,)-360(i)-359(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(s\\252)-1(o)-27(dzie)-1(j)1(,)-361(a)-361(to)-361(mi)-361(paciork)1(i)-361(pr)1(z)-1(ywie\\271)-1(l)1(i)-361(a)-361(to)-361(c)-1(z\\246s)-1(to)-361(g\\246s)-1(to)-361(b)1(u\\252k)28(\\246)-361(z)-362(miasta)-361(i)-361(m)-1(\\363)28(wili)1(:)]TJ 0 -13.549 Td[(\\377)-56(Na\\261ci,)-332(Je)-1(wu\\261,)-332(na\\261c)-1(i)1(,)-333(b)-27(o\\261)-333(mi)-332(na)-55(jmilejsz)-1(a..)1(.\")-333({)-332(a)-332(te)-1(r)1(az)-1(,)-332(o)-332(m)-1(\\363)-55(j)-332(Je)-1(zu,)-332(m\\363)-56(j)-332(Jezu!..)1(.)]TJ 0 -13.549 Td[({)-333(p)-28(o)-27(c)-1(z\\246)-1(\\252a)-333(rycz)-1(e\\242.)]TJ 27.879 -13.55 Td[({)-332(Cygan)1(,)-332(j)1(uc)27(h)1(a,)-332(mo\\273e)-1(m)-332(ci\\246)-332(jes)-1(zc)-1(ze)-332(pierzyn\\241)-331(przy)28(o)-28(d)1(z)-1(ia\\252)-331(i)-332(m\\363)27(wi\\252:)-331(\\377)-56(\\221)1(pij)-331(se)-1(,)]TJ -27.879 -13.549 Td[(Jew)-1(u)1(\\261)-1(,)-333(\\261pi)1(j!..)1(.\")]TJ 27.879 -13.549 Td[(Iz)-1(b)1(a)-333(z)-1(atr)1(z)-1(\\246s)-1(\\252a)-333(s)-1(i)1(\\246)-334(\\261)-1(miec)27(hem.)]TJ 0 -13.549 Td[({)-317(Ab)-28(o)-317(n)1(ie)-1(,)-317(co?)-318(Ab)-27(o\\261ta)-318(n)1(ie)-318(sk)56(am)-1(\\252ali)1(,)-317(jak)28(o)-317(te)-1(n)-317(p)1(ies)-318(pr)1(z)-1(ed)-317(dr)1(z)-1(wiami,)-317(ab)-27(o\\261)-1(ta)]TJ -27.879 -13.549 Td[(ma\\252o)-334(ob)1(ie)-1(co)28(w)27(al)1(i,)-333(c)-1(o?)]TJ 27.879 -13.55 Td[({)-306(Lob)-27(o)-1(ga,)-305(lud)1(z)-1(ie,)-306(\\273e)-307(to)-306(pi)1(e)-1(ru)1(n)-306(n)1(ie)-307(zabij)1(e)-307(tak)56(\\241)-306(p)-27(okrak)28(\\246?)-307({)-306(zakrzykn)1(\\241\\252)-307(zdu)1(-)]TJ -27.879 -13.549 Td[(mion)28(y)84(.)]TJ 27.879 -13.549 Td[({)-434(Wielmo\\273)-1(n)29(y)-434(s)-1(\\241d)1(z)-1(i)1(e)-1(,)-434(ca\\252y)-434(\\261w)-1(i)1(at)-434(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-433(jak)-434(to)-434(b)29(y\\252o,)-434(c)-1(a\\252e)-434(Lip)-27(c)-1(e)-434(m)-1(og\\241)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(\\261)-1(wiad)1(c)-1(zy\\242)-1(,)-372(co)-372(pr)1(a)27(wd)1(\\246)-373(m\\363)28(w)-1(i\\246.)-372(S)1(\\252)-1(u)1(\\273)-1(y)1(\\252am)-373(u)-372(n)1(ic)27(h)1(,)-372(to)-372(mi)-372(c)-1(i\\246giem)-373(sp)-28(ok)28(o)-55(ju)-371(nie)]TJ 0 -13.549 Td[(da)28(w)28(a\\252.)-435(O)-435(biedn)1(a)-436(j)1(a)-435(s)-1(ierota,)-435(b)1(ie)-1(d)1(na!)1(...)-435(O)-435(dol)1(a)-436(mo)-56(j)1(a)-435(nies)-1(zc)-1(z\\246\\261)-1(li)1(w)27(a!.)1(..)-435(Ab)-28(o)-435(tom)]TJ 0 -13.55 Td[(si\\246)-437(mog\\252a)-437(ob)1(ron)1(i\\242)-437(pr)1(z)-1(ed)-436(t)28(yli)1(m)-437(c)27(h)1(\\252op)-28(em?)-1(..)1(.)-436(Krzycz)-1(a\\252am,)-436(to)-437(m\\246)-437(spr)1(a\\252)-437(i)-436(zrob)1(i\\252,)]TJ 0 -13.549 Td[(co)-452(c)27(h)1(c)-1(ia\\252.)1(..)-452(A)-451(gdzie)-1(\\273)-452(j)1(a)-452(si\\246)-452(p)-28(o)-27(dzie)-1(j)1(\\246)-452(z)-453(t)28(y)1(m)-452(dzie)-1(ci\\241tec)-1(zkiem,)-452(gdzie?...)-451(\\221wiadk)1(i)]TJ 0 -13.549 Td[(p)-27(o)27(wiedz\\241)-333(i)-333(przy\\261w)-1(i)1(adcz)-1(\\241!)-333({)-333(w)27(o\\252a\\252a)-333(w)-1(\\261r\\363)-27(d)-333(p\\252acz)-1(u)-333(i)-333(kr)1(z)-1(yk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(Ale)-320(\\261w)-1(i)1(adk)28(o)28(wie)-320(w)-320(rze)-1(czywis)-1(to\\261c)-1(i)-319(n)1(ic)-320(nie)-320(ze)-1(znal)1(i)-320(p)1(r\\363)-28(cz)-320(plotek)-319(i)-320(d)1(om)27(ys\\252\\363)27(w,)]TJ -27.879 -13.549 Td[(wi\\246c)-380(zno)28(wu)-379(j)1(\\246)-1(\\252a)-379(d)1(o)28(w)27(o)-28(d)1(z)-1(i)1(\\242)-380(i)-378(przek)28(on)28(yw)28(a)-1(\\242,)-379(a\\273)-379(w)-379(k)28(o\\253cu)-378(jak)28(o)-379(ostatni)-378(do)28(w)28(\\363)-28(d)-379(r)1(oz)-1(-)]TJ 0 -13.549 Td[(p)-27(o)27(wi\\252a)-337(d)1(z)-1(iec)27(k)28(o)-337(i)-337(p)-27(o\\252o\\273)-1(y)1(\\252)-1(a)-337(j)1(e)-338(p)1(rze)-1(d)-337(s\\246)-1(d)1(z)-1(i)1(am)-1(i)1(;)-337(dzie)-1(c)28(k)28(o)-337(w)-1(i)1(e)-1(rzga\\252o)-337(nagimi)-337(n)1(\\363\\273)-1(k)56(ami)]TJ 0 -13.55 Td[(i)-333(krzycz)-1(a\\252o)-333(wnieb)-28(og\\252osy)83(.)]TJ 27.879 -13.549 Td[({)-368(Wi)1(e)-1(lmo\\273n)28(y)-368(s\\241d)-368(sam)-368(obacz)-1(y)84(,)-368(cz)-1(yj)1(e)-369(on)1(o;)-368(o,)-367(te)-1(n)-367(c)-1(i)-367(s)-1(ar)1(n)-368(n)1(os)-369(ki)1(e)-1(j)-367(k)56(artofel,)]TJ -27.879 -13.549 Td[(te)-363(same)-363(bu)1(re)-363(\\261lepie)-363(i)-362(k)56(ap)1(ra)28(w)27(e...)-362(Kr)1(opla)-362(w)-363(k)1(ropl)1(\\246)-363(ni)1(kt)-362(jensz)-1(y)84(,)-362(jeno)-362(B)-1(or)1(yna!)1(...)-362({)]TJ 0 -13.549 Td[(w)28(o\\252)-1(a\\252a.)]TJ 27.879 -13.549 Td[(Ale)-355(ju)1(\\273)-356(i)-355(s\\241d)-355(n)1(ie)-356(m\\363g\\252)-355(p)-28(o)28(ws)-1(t)1(rz)-1(y)1(m)-1(a\\242)-355(s)-1(i\\246)-355(o)-28(d)-354(\\261)-1(miec)27(h)28(u,)-354(a)-355(nar\\363)-27(d)-355(a\\273)-356(h)29(ucz)-1(a\\252)-355(z)]TJ -27.879 -13.55 Td[(uciec)27(h)28(y)84(,)-333(pr)1(z)-1(ygl)1(\\241)-1(d)1(ali)-333(si\\246)-334(dziec)27(ku)1(,)-333(to)-334(Bory)1(nie)-333(i)-334(r)1(az)-334(w)-334(r)1(az)-334(kto\\261)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(ci)-333(pan)1(nica,)-333(kiej)-333(ten)-333(pies)-334(o)-28(d)1(art)28(y)-333(z)-1(e)-333(s)-1(k)28(\\363r)1(y!)]TJ\nET\nendstream\nendobj\n144 0 obj <<\n/Type /Page\n/Contents 145 0 R\n/Resources 143 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n143 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n148 0 obj <<\n/Length 8595      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(41)]TJ -335.807 -35.866 Td[({)-333(B)-1(or)1(yna)-333(wdo)28(wie)-1(c,)-333(o\\273)-1(eni)1(\\252b)28(y)-333(s)-1(i\\246)-333(z)-334(ni)1(\\241,)-334(a)-333(c)27(h)1(\\252opak)-333(zda\\252b)28(y)-333(si\\246)-334(do)-333(p)1(as)-1(ion)1(ki..)1(.)]TJ 0 -13.549 Td[({)-333(Le)-1(n)1(ie)-1(j)1(e)-334(ci)-333(ona)-333(kiej)-333(kro)28(w)28(a)-334(n)1(a)-334(zwie)-1(sn\\246.)]TJ 0 -13.549 Td[({)-322(A)-323(u)1(ro)-28(d)1(na!)-322(jeno)-322(gro)-27(c)27(ho)28(winami)-322(pr)1(z)-1(y)1(trz\\241)-1(\\261\\242)-323(i)-322(w)-323(p)1(roso)-323(wsadzi\\242)-323({)-322(w)-1(szys)-1(tk)1(ie)]TJ -27.879 -13.549 Td[(gap)28(y)-333(u)1(c)-1(iekn\\241.)1(..)]TJ 27.879 -13.549 Td[({)-333(Ju\\273)-334(i)-333(tak)-333(p)1(s)-1(y)-333(u)1(c)-1(iek)56(a)-56(j)1(\\241,)-334(k)1(ie)-1(j)-332(Je)-1(wusia)-333(b)-27(e)-1(z)-334(wie\\261)-334(id)1(z)-1(ie!..)1(.)]TJ 0 -13.55 Td[({)-333(A)-334(g\\246bu)1(s)-1(i)1(\\246)-334(c)-1(i)-333(ma)-334(k)1(ie)-1(j)-332(p)-28(om)28(yjami)-333(wymalo)28(w)27(an)1(\\241...)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(gosp)-28(o)-28(d)1(arn)1(a,)-334(r)1(az)-334(w)-334(r)1(ok)-333(s)-1(i\\246)-333(m)27(yj)1(e)-1(,)-333(cob)28(y)-333(na)-333(m)27(y)1(d\\252o)-333(nie)-334(wyd)1(a)28(w)27(a\\242...)]TJ 0 -13.549 Td[({)-333(\\233ydom)-333(w)-334(pi)1(e)-1(cac)27(h)-333(p)1(ali,)-333(c)-1(zasu)-333(nie)-333(m)-1(a,)-333(to)-333(i)-333(nie)-333(dziw)27(ota!)]TJ 0 -13.549 Td[(Dogad)1(yw)27(al)1(i)-367(c)-1(oraz)-367(z)-1(\\252o\\261liwiej)-367(i)-367(okr)1(utn)1(ie)-1(j)1(,)-367(a)-367(ona)-367(zm)-1(il)1(k\\252a)-367(i)-367(niepr)1(z)-1(ytomn)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(ami)-333(psa)-334(zgoni)1(onego)-334(p)1(atrzy\\252a)-333(p)-28(o)-333(lu)1(dziac)27(h)-333(i)-333(w)28(a\\273)-1(y\\252a)-333(c)-1(o\\261)-333(w)-334(sobie...)]TJ 27.879 -13.549 Td[({)-323(Cic)27(h)1(o)-56(jt)1(a!)-323(T)83(o)-323(grzyc)27(h)-323(tak)-322(s)-1(i\\246)-323(na\\261m)-1(i)1(e)-1(w)28(a\\242)-324(n)1(ad)-323(biedot)1(\\241!)-323({)-323(krzykn\\246\\252a)-323(Domi-)]TJ -27.879 -13.55 Td[(ni)1(k)28(o)27(w)28(a)-333(tak)-333(m)-1(o)-28(cno,)-333(a\\273)-333(p)-28(omilk)1(li,)-333(i)-333(jaki)-333(tak)1(i)-334(d)1(rap)1(a\\252)-334(si\\246)-334(p)-27(o)-333(\\252)-1(b)1(ie)-334(ze)-334(ws)-1(t)28(y)1(du.)]TJ 27.879 -13.549 Td[(Sp)1(ra)28(w)28(a)-334(sk)28(o\\253cz)-1(y)1(\\252)-1(a)-333(si\\246)-334(na)-333(n)1(ic)-1(zym.)]TJ 0 -13.549 Td[(Boryn)1(a)-451(p)-27(o)-28(c)-1(zu\\252)-451(n)1(iez)-1(miern\\241)-450(ulg\\246,)-451(b)-27(o)-451(c)28(ho)-28(cia\\273)-451(ni)1(e)-452(b)29(y\\252)-451(wini)1(e)-1(n)1(,)-451(ale)-451(za)27(w\\273dy)]TJ -27.879 -13.549 Td[(b)-27(o)-56(j)1(a\\252)-428(s)-1(i\\246)-428(l)1(udzkiego)-428(ob)1(m)-1(\\363)28(wisk)55(a,)-427(no)-427(i)-428(tego)-428(\\273e)-428(przys\\241dzi\\242)-428(m)-1(og\\241,)-427(b)28(y)-427(p\\252ac)-1(i)1(\\252)-428({)-428(b)-27(o)]TJ 0 -13.549 Td[(pr)1(a)28(w)27(o)-319(j)1(u\\261c)-1(i)-318(j)1(e)-1(st)-319(ci)-319(tak)1(ie)-1(,)-318(\\273e)-319(nik)1(ie)-1(j)-318(n)1(ie)-319(wiada,)-318(k)28(ogo)-319(za)-319(\\252eb)-318(c)27(h)28(yci,)-318(w)-1(i)1(no)28(w)27(at)1(e)-1(go)-318(c)-1(zy)]TJ 0 -13.55 Td[(spra)28(wiedli)1(w)27(ego.)-334(Byw)28(a\\252o)-334(j)1(u\\273)-333(tak)-333(nie)-334(r)1(az)-1(,)-333(n)1(ie)-334(dw)28(a,)-333(ni)1(e)-334(dzies)-1(i\\246\\242)-1(.)1(..)-333(b)28(yw)28(a\\252o.)]TJ 27.879 -13.549 Td[(Wysze)-1(d)1(\\252)-369(zaraz)-369(ze)-369(s)-1(\\241d)1(u)-368(i)-368(c)-1(zek)55(a)-55(j\\241c)-369(n)1(a)-369(D)1(om)-1(in)1(ik)28(o)28(w)27(\\241,)-368(j)1(\\241\\252)-369(.medyto)28(w)28(a\\242)-369(i)-368(roz-)]TJ -27.879 -13.549 Td[(w)28(a\\273)-1(a\\242)-334(w)-333(s)-1(ob)1(ie)-334(ca\\252\\241)-334(t\\246)-333(s)-1(p)1(ra)28(w)27(\\246.)-333(Nie)-334(m\\363gt)-333(z)-1(rozumie\\242)-1(,)-333(p)-27(o)-333(c)-1(o)-333(i)-333(dlacz)-1(ego)-333(s)-1(k)56(ar\\273y\\252a.)]TJ 27.879 -13.549 Td[({)-393(Ni,)-392(to)-393(nie)-393(j)1(e)-1(j)-392(rozum)-393(i)-393(g\\252o)28(w)27(a,)-392(to)-393(jensz)-1(y)84(,)-393(kt)1(o\\261)-394(d)1(rugi)-392(przez)-394(n)1(i\\241)-393(si\\246)-1(ga,)-392(ale)]TJ -27.879 -13.549 Td[(kto?:.)1(.)]TJ 27.879 -13.55 Td[(P)28(osz)-1(l)1(i)-367(z)-366(Dom)-1(i)1(nik)28(o)28(w)28(\\241)-367(i)-366(z)-367(S)1(z)-1(ymki)1(e)-1(m)-367(d)1(o)-366(k)55(ar)1(c)-1(zm)27(y)-366(nap)1(i\\242)-367(si\\246)-367(i)-366(p)1(rz)-1(egry)1(\\271)-1(\\242)-367(co\\261)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co\\261)-1(,)-320(b)-28(o)-321(b)29(y\\252o)-321(ju)1(\\273)-322(d)1(obr)1(z)-1(e)-321(p)-27(o)-321(p)-28(o\\252u)1(dn)1(iu,)-320(i)-321(c)27(h)1(o)-28(c)-1(i)1(a\\273)-322(m)28(u)-321(Domin)1(ik)28(o)28(w)27(a)-321(n)1(ap)-27(om)27(yk)56(a\\252a)]TJ 0 -13.549 Td[(z)-322(lekk)56(a,)-321(\\273)-1(e)-321(c)-1(a\\252a)-321(ta)-322(Jew)28(c)-1(zyna)-321(spra)28(w)28(a)-322(to)-321(m)27(u)1(s)-1(i)-321(b)29(y\\242)-322(rob)-27(ota)-321(k)28(o)27(w)28(ala,)-321(zi\\246)-1(cia)-321(jego,)-321(nie)]TJ 0 -13.549 Td[(m\\363g\\252)-334(u)28(wierzy\\242.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(b)28(y)-333(m)28(u)-333(z)-334(tego)-334(p)1(rzys)-1(z\\252o?)]TJ 0 -13.55 Td[({)-297(T)27(yl)1(a,)-298(\\273eb)28(y)-297(w)27(as)-298(p)-27(ok\\252y\\271ni\\242)-297(a)-298(p)-27(o)-28(d)1(a\\242)-298(na)-297(p)-28(o\\261mie)-1(wisk)28(o)-297(i)-298(u)1(mart)28(wie)-1(n)1(ie.)-298(Dr)1(ugi)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)-333(j)1(e)-1(st)-334(t)1(aki,)-333(\\273)-1(e)-333(z)-334(jensz)-1(ego)-333(la)-333(s)-1(ame)-1(j)-333(u)1(c)-1(i)1(e)-1(c)27(h)29(y)-333(pasy)-334(b)29(y)-333(dar\\252.)]TJ 27.879 -13.549 Td[({)-329(Dziwno)-329(mi)-329(tej)-329(za)28(w)-1(zi\\246to\\261)-1(ci)-329(Jew)27(cz)-1(y)1(nej!)-329(Bom)-329(nie)-329(uk)1(rzywdzi\\252)-329(w)-329(nicz)-1(y)1(m)-1(,)-329(a)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(em)-334(za)-334(c)28(hrze)-1(st)-333(te)-1(go)-333(j)1(e)-1(j)-333(b)-27(\\246)-1(k)56(ar)1(ta)-334(d)1(a\\252)-334(d)1(obro)-27(dzie)-1(j)1(o)28(w)-1(i)-333(w)28(orek)-333(o)27(wsa...)]TJ 27.879 -13.549 Td[({)-363(S)1(\\252)-1(u)1(\\273)-1(y)-362(ona)-363(u)-362(m\\252)-1(y)1(narza,)-363(a)-363(t)1(e)-1(n)-362(w)-363(k)28(om)-1(p)1(anii)-362(z)-364(k)28(o)28(w)28(a1e)-1(m)-363(c)27(h)1(o)-28(dzi..)1(:)-363(miarku)1(-)]TJ -27.879 -13.55 Td[(jecie)-1(?!.)1(..)]TJ 27.879 -13.549 Td[({)-333(Miar)1(kuj)1(\\246)-1(,)-333(in)1(o)-334(\\273e)-334(n)1(ic)-334(roze)-1(zna\\242)-333(nie)-333(m)-1(og\\246!)-333(Napij)1(w)27(a)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e!)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(p)1(ijcie)-334(p)1(rz\\363)-28(dzi,)-333(Macieju)1(!)]TJ 0 -13.549 Td[(Napi)1(li)-352(si\\246)-352(raz)-352(i)-351(dr)1(ugi,)-351(z)-1(j)1(e)-1(d)1(li)-351(dru)1(gi)-352(f)1(un)28(t)-351(kie\\252basy)-352(z)-352(p)-27(\\363\\252b)-28(o)-28(c)28(henki)1(e)-1(m)-352(c)28(hleba,)]TJ -27.879 -13.549 Td[(stary)-333(ku)1(pi\\252)-333(rz\\241dek)-334(b)1(u\\252ek)-333(dla)-333(J\\363zi)-333(i)-334(zabi)1(e)-1(ral)1(i)-333(s)-1(i\\246)-333(do)-333(p)-28(o)28(wrotu)1(.)]TJ 27.879 -13.549 Td[({)-333(Siad)1(a)-56(j)1(c)-1(ie,)-333(Dominik)28(o)28(w)28(a,)-333(z)-1(e)-334(mn)1(\\241,)-334(c)28(kno)-333(sam)-1(em)27(u)1(,)-333(p)-28(ogw)28(arzym...)]TJ 0 -13.55 Td[({)-333(A)-334(d)1(obr)1(z)-1(e,)-333(ino)-333(s)-1(k)28(o)-27(c)-1(z\\246)-334(jes)-1(zcz)-1(e)-334(d)1(o)-334(k)1(las)-1(ztoru)-332(z)-1(m\\363)27(wic)-333(pacie)-1(r)1(z)-1(.)]TJ 0 -13.549 Td[(P)28(osz)-1(\\252a,)-333(ale)-333(w)-334(dob)1(re)-334(d)1(w)27(a)-333(pacierze)-334(ju)1(\\273)-334(b)28(y\\252a)-333(z)-334(p)-27(o)28(w)-1(r)1(ote)-1(m,)-333(i)-333(z)-1(ar)1(az)-334(p)-27(o)-56(jec)27(h)1(ali.)]TJ 0 -13.549 Td[(Szyme)-1(k)-344(wl\\363k\\252)-344(s)-1(i\\246)-345(za)-345(n)1(imi)-345(w)28(olno,)-344(b)-27(o)-345(w)-345(j)1(e)-1(d)1(n\\241)-344(s)-1(zk)55(ap)-27(\\246)-345(i)-344(piac)28(h)28(y)-344(b)28(y\\252y)-344(s)-1(rogi)1(e)-1(,)]TJ -27.879 -13.549 Td[(ale)-388(r)1(oz)-1(ebr)1(a\\252o)-388(go)-387(ni)1(e)-1(co,)-387(\\273)-1(e)-388(to)-387(n)1(ie)-388(b)28(y\\252)-387(zw)-1(y)1(c)-1(za)-56(j)1(n)28(y)-387(picia)-387(i)-387(os)-1(zo\\252om)-1(i)1(on)28(y)-387(s)-1(\\241d)1(e)-1(m,)-387(to)]TJ 0 -13.549 Td[(si\\246)-387(in)1(o)-387(kiw)28(a\\252)-387(senni)1(e)-387(w)-387(p)-27(\\363\\252k)28(os)-1(zk)55(ac)28(h)-386(i)-386(raz)-387(w)-387(r)1(az)-387(przec)-1(yk)56(a)-55(j\\241c)-387(zdzie)-1(r)1(a\\252)-387(cz)-1(ap)1(k)28(\\246)-387(z)-1(e)]TJ 0 -13.55 Td[(\\252ba,)-404(\\273)-1(egna\\252)-405(si\\246)-406(n)1(ab)-28(o\\273ni)1(e)-406(i)-404(w)-1(p)1(atrzon)28(y)-405(n)1(ie)-1(p)1(rzytomnie)-405(w)-405(ogon)-405(sz)-1(k)56(ap)28(y)84(,)-405(j)1(ak)28(ob)28(y)-405(w)]TJ 0 -13.549 Td[(dziedzico)27(w)28(\\241)-357(t)28(w)27(ar)1(z)-358(n)1(a)-357(s\\241dzie)-1(,)-356(m)-1(amrota\\252:)-356(\\377...\\221)1(winia)-356(m)-1(atczyna,)-356(bia\\252a)-357(ca\\252a,)-357(a)-357(in)1(o)]TJ\nET\nendstream\nendobj\n147 0 obj <<\n/Type /Page\n/Contents 148 0 R\n/Resources 146 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n146 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n151 0 obj <<\n/Length 9012      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(42)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(kiele)-334(ogon)1(a)-333(c)-1(zarn\\241)-333(\\252at\\246)-334(mia\\252a...)1(\")]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-333(s)-1(i\\246)-333(ju\\273)-333(b)28(y\\252o)-333(prze)-1(t)1(ac)-1(za\\252o)-334(ku)-332(z)-1(ac)27(h)1(o)-28(d)1(o)27(wi,)-333(gd)1(y)-333(w)-1(j)1(e)-1(c)28(hali)-333(w)-333(las)-1(.)]TJ 0 -13.549 Td[(Ma\\252o)-331(w)-1(i)1(e)-1(le)-332(p)-27(ogady)1(w)27(ali)1(,)-332(c)28(ho)-28(\\242)-332(siedzie)-1(l)1(i)-332(w)-332(p)-27(o)-28(d)1(le)-332(sie)-1(b)1(ie)-332(na)-331(pr)1(z)-1(edn)1(im)-332(s)-1(i)1(e)-1(d)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ni)1(u.)]TJ 27.879 -13.549 Td[(Cz)-1(ase)-1(m)-294(kt\\363r)1(e)-1(\\261)-294(z)-1(agad)1(n\\246\\252o)-294(jakim\\261)-294(s)-1(\\252o)28(w)27(em,)-294(\\273)-1(e)-294(to)-294(nieob)28(ycz)-1(n)1(ie)-294(s)-1(iedzie\\242)-295(j)1(ak)-294(te)]TJ -27.879 -13.55 Td[(mruk)1(i,)-333(ale)-334(in)1(o)-333(t)27(y)1(la)-334(t)1(e)-1(go)-333(b)28(y\\252o,)-333(\\273e)-1(b)28(y)-333(\\261pik)-333(n)1(ie)-334(morzy\\252)-334(i)-333(j)1(\\246)-1(zyk)-333(ni)1(e)-334(z)-1(asec)27(h\\252..)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-368(p)-27(ogania\\252)-368(\\271r\\363b)1(k)28(\\246)-1(,)-367(b)-28(o)-367(w)27(oln)1(i\\252a,)-368(\\273e)-368(to)-368(j)1(u\\273)-368(do)-367(p)-28(\\363\\252)-368(b)-27(ok)28(\\363)28(w)-368(s)-1(p)-27(otn)1(ia\\252a)-368(z)]TJ -27.879 -13.549 Td[(um\\246c)-1(ze)-1(n)1(ia)-372(i)-371(gor)1(\\241)-1(ca,)-371(c)-1(zas)-1(em)-372(p)-27(ogwiz)-1(d)1(a\\252)-372(a)-371(m)-1(il)1(c)-1(za\\252,)-372(i)-371(co\\261)-372(\\273)-1(u)1(\\252,)-372(co\\261)-372(w)27(a\\273y\\252)-371(w)-372(s)-1(ob)1(ie,)]TJ 0 -13.549 Td[(co\\261)-488(k)56(alkul)1(o)27(w)28(a\\252)-487(i)-488(cz\\246)-1(sto)-488(a)-487(n)1(ie)-1(wid)1(nie)-487(p)-28(ogl)1(\\241da\\252)-487(na)-487(s)-1(tar)1(\\241,)-487(na)-487(jej)-487(s)-1(u)1(c)27(h)1(\\241)-488(ki)1(e)-1(b)28(y)-487(z)]TJ 0 -13.549 Td[(bl)1(ic)27(h)1(o)27(w)28(anego)-385(w)27(osku)-385(t)28(w)27(ar)1(z)-1(,)-385(ca\\252\\241)-386(w)-385(p)-28(o)-28(d)1(\\252u\\273n)28(yc)28(h)-385(bru)1(z)-1(d)1(ac)27(h)-385(zas)-1(t)28(yg\\252\\241)-385({)-386(p)-27(oru)1(s)-1(za\\252a)]TJ 0 -13.549 Td[(b)-27(e)-1(zz)-1(\\246bn)29(ym)-1(i)-405(w)28(argami,)-405(jakb)29(y)-406(si\\246)-406(mo)-28(d)1(li\\252a)-406(p)-27(o)-405(c)-1(ic)28(h)28(u;)-405(cz)-1(ase)-1(m)-405(p)-28(o)-28(ci\\241)-28(ga\\252a)-405(c)-1(zerw)27(on)1(\\241)]TJ 0 -13.55 Td[(zapask)28(\\246)-229(b)1(arz)-1(ej)-227(na)-228(cz)-1(o\\252o,)-228(b)-27(o)-228(s\\252o)-1(\\253)1(c)-1(e)-228(\\261w)-1(i)1(e)-1(ci\\252o)-228(pr)1(os)-1(to)-228(w)-228(o)-28(czy)83(,)-228(i)-227(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-228(n)1(ie)-1(r)1(uc)28(homo,)]TJ 0 -13.549 Td[(in)1(o)-334(j)1(e)-1(j)-333(b)1(ur)1(e)-334(o)-28(cz)-1(y)-333(gorza\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(Wyk)28(op)1(ali\\261c)-1(ie)-333(ta)-334(j)1(u\\273,)-333(c)-1(o?)-333({)-334(zagadn)1(\\241\\252)-334(wres)-1(zcie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(.)-334(O)1(bro)-27(dzi\\252y)-333(lato\\261)-334(n)1(ie)-1(zgorze)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Przyc)28(ho)28(w)27(a\\242)-333(b)-28(\\246dzie)-334(w)28(am)-1(a)-333(\\252ac)-1(n)1(iej.)]TJ 0 -13.55 Td[({)-333(Ws)-1(ad)1(z)-1(i)1(\\252am)-334(te\\273)-334(wie)-1(p)1(rzk)55(a)-333(do)-333(k)56(armik)56(a,)-333(b)-28(o)-333(w)-333(z)-1(ap)1(ust)27(y)-333(mo\\273)-1(e)-333(s)-1(i\\246)-333(z)-1(d)1(a\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(p)-27(ew)-1(n)1(ie...)-333(m\\363)27(wi\\252y)84(,)-333(\\273)-1(e)-334(W)84(alek)-333(R)-1(af)1(a\\252\\363)28(w)-334(pr)1(z)-1(y)1(s)-1(y\\252a\\252)-333(z)-334(w)27(\\363)-27(dk)56(\\241?...)]TJ 0 -13.549 Td[({)-327(Nie)-327(on)-326(jeden,)-327(n)1(ie...)-326(a)-1(l)1(e)-328(p)-27(o)-327(p)1(r\\363\\273nicy)-327(in)1(o)-327(grosz)-327(trac\\241)-1(.)1(..n)1(ie)-327(la)-327(takic)28(h)-327(Jagu)1(\\261)]TJ -27.879 -13.549 Td[(mo)-56(j)1(a,)-334(n)1(ie.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(os)-1(\\252a)-414(g\\252o)27(w)28(\\246)-415(i)-414(jastrz\\246bimi)-414(o)-28(cz)-1(ami)-414(w)-1(p)1(i\\252a)-414(s)-1(i\\246)-414(w)-415(n)1(ie)-1(go,)-414(al)1(e)-415(B)-1(or)1(yna,)-414(\\273e)]TJ -27.879 -13.55 Td[(cz)-1(\\252ek)-323(b)29(y\\252)-323(w)-322(latac)27(h)1(,)-322(nie)-322(w)-1(i)1(c)27(her)-322(\\273)-1(ad)1(e)-1(n)1(,)-322(to)-322(t)27(w)28(arz)-323(p)-27(ok)56(az)-1(a\\252)-322(zim)-1(n)1(\\241)-322(i)-323(sp)-27(ok)28(o)-56(jn)1(\\241)-322(nie)-323(d)1(o)]TJ 0 -13.549 Td[(roze)-1(znan)1(ia:)-333(D\\252ugo)-333(ni)1(e)-334(rze)-1(k)1(li)-333(ni)-333(s\\252)-1(o)28(w)28(a,)-333(jakb)29(y)-334(si\\246)-334(t\\241)-333(n)1(ie)-1(mot\\241)-333(m)-1(o)-27(c)-1(u)1(j\\241c)-334(ze)-334(sob\\241.)]TJ 27.879 -13.549 Td[(Boryn)1(ie)-433(n)1(ij)1(ak)28(o)-432(b)28(y\\252o)-432(z)-1(aczyna\\242)-432(pierwsz)-1(em)27(u)1(,)-432(b)-27(o)-432(jak\\273e)-1(,)-431(w)-433(l)1(atac)27(h)-432(j)1(u\\273)-432(b)28(y\\252)-432(i)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(arz)-315(na)-315(ca\\252e)-316(Li)1(p)-28(ce)-316(p)1(ierws)-1(zy;)-315(n)1(o)-315(i)-315(m\\363g\\252)-315(to)-315(z)-1(asi\\246)-315(tak)-315(p)1(rosto)-315(rze)-1(\\242,)-315(co)-315(m)27(u)-314(s)-1(i\\246)]TJ 0 -13.549 Td[(Jagu)1(\\261)-401(ud)1(a\\252a?)-1(.)1(..Hon)1(or)-400(przec)-1(iec)27(h)-399(s)-1(w)28(\\363)-56(j)-400(mia\\252)-400(i)-400(p)-27(om)27(y\\261lenie)-400({)-400(ale)-401(\\273e)-401(kr)1(w)-1(i)1(e)-401(gor\\241ce)-1(j)]TJ 0 -13.55 Td[(b)28(y\\252)-321(z)-322(p)1(rz)-1(y)1(ro)-28(d)1(z)-1(enia,)-321(to)-321(a\\273e)-322(go)-322(z\\252o\\261)-1(\\242)-321(p)-28(or)1(yw)27(a\\252a,)-321(\\273e)-322(m)27(u)1(s)-1(i)-321(tak)-321(b)1(ac)-1(zy\\242)-322(na)-321(sie)-1(b)1(ie,)-321(tak)]TJ 0 -13.549 Td[(k)28(o\\252o)28(w)27(a\\242)-334(a)-333(zabiega\\242)-1(.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-340(p)1(rz)-1(ezie)-1(r)1(a\\252a)-340(go)-340(c)-1(o\\261)-340(n)1(ie)-1(co\\261)-340(i)-340(miark)28(o)28(w)28(ala)-340(zas)-1(i\\246,)-340(co)-340(go)-340(tak)-339(m)-1(ar)1(-)]TJ -27.879 -13.549 Td[(k)28(o)-28(ci)-312(i)-311(rozbi)1(e)-1(ra,)-311(ale)-312(n)1(i)-312(s\\252\\363)27(wki)1(e)-1(m)-312(n)1(ie)-312(p)-27(om)-1(og\\252a,)-311(ino)-311(raz)-312(w)-312(r)1(az)-313(p)-27(ogl\\241d)1(a\\252a)-312(n)1(a\\253,)-311(to)-312(w)]TJ 0 -13.549 Td[(ten)-333(\\261)-1(wiat)-333(i)-333(te)-334(d)1(ale)-1(k)28(o\\261ci)-334(n)1(iebies)-1(k)1(ie)-1(,)-333(a\\273)-333(i)-334(r)1(z)-1(ek\\252a)-333(niec)27(h)1(c)-1(\\241cy:)]TJ 27.879 -13.55 Td[({)-333(Gor\\241c)-334(ci)-333(taki,)-333(k)1(ie)-1(b)29(y)-334(w)28(e)-334(\\273niw)28(a.)]TJ 0 -13.549 Td[({)-333(Rz)-1(ekli\\261c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-324(i)-324(tak)-324(b)28(y)1(\\252o,)-324(b)-28(o)-324(d)1(rog\\246)-324(otac)-1(za\\252y)-324(p)-27(ot\\246)-1(\\273ne)-324(\\261)-1(cian)28(y)-323(b)-28(or)1(u,)-324(\\273e)-325(\\273aden)-324(wiat)1(e)-1(r)]TJ -27.879 -13.549 Td[(ni)-241(p)1(rze)-1(wiew)-242(n)1(ij)1(aki)-241(nie)-241(pr)1(z)-1(edzie)-1(r)1(a\\252)-242(si\\246)-241(z)-242(p)-27(\\363l,)-241(a)-241(s)-1(\\252o\\253ce)-242(wisia\\252o)-241(pr)1(os)-1(to)-241(nad)-240(g\\252o)27(w)28(ami)-241(i)]TJ 0 -13.549 Td[(tak)-237(dogr)1(z)-1(ew)27(a\\252o,)-237(\\273)-1(e)-238(r)1(oz)-1(p)1(ra\\273one)-238(dr)1(z)-1(ew)27(a)-237(s)-1(t)1(a\\252)-1(y)-237(b)-27(e)-1(z)-238(r)1(uc)27(h)29(u)-237(i)-238(omdl)1(a\\252)-1(e)-238(czub)28(y)-237(p)-27(o)-28(c)27(h)28(y)1(la\\252y)]TJ 0 -13.549 Td[(nad)-274(dr)1(og\\241,)-275(i)-275(t)28(yl)1(k)28(o)-275(raz)-275(w)-275(raz)-275(pusz)-1(cza\\252)-1(y)-274(bu)1(rsz)-1(t)28(yn)1(o)27(w)28(e)-275(igliw)28(o,)-275(co)-275(k)28(o\\252uj\\241cy)-275(sp\\252yw)28(a\\252o)]TJ 0 -13.55 Td[(na)-333(d)1(rog\\246)-1(.)-333(G)1(rz)-1(y)1(bn)28(y)-333(zapac)28(h)-333(ba)-55(jor\\363)28(w)-334(i)-333(l)1(i\\261)-1(cia)-333(d\\246b)-28(o)28(w)28(e)-1(go)-333(a\\273)-334(wierci\\252)-334(w)-333(nozdr)1(z)-1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-243(Wiec)-1(i)1(e)-1(,)-243(d)1(z)-1(iwn)1(o)-244(t)1(o)-244(mni)1(e)-1(,)-243(a)-243(i)-243(d)1(rugi)1(m)-1(,)-243(\\273e)-244(taki)-243(gosp)-27(o)-28(dar)1(z)-1(,)-243(co)-243(to)-243(i)-243(p)-28(om)28(y\\261)-1(l)1(e)-1(n)1(ie)]TJ -27.879 -13.549 Td[(ni)1(e)-330(b)-27(e)-1(l)1(e)-330(j)1(akie)-329(m)-1(a,)-328(i)-329(gron)29(tu)-329(tela,)-329(p)-27(os\\252)-1(u)1(c)27(h)-328(u)-329(n)1(aro)-28(d)1(u)-329({)-329(ki)1(e)-1(j)-328(wy)-329(na)-329(ten)-329(p)1(rzyk\\252ad)1(,)-329(a)]TJ 0 -13.549 Td[(do)-333(u)1(rz)-1(\\246du)-332(am)27(bi)1(tu)-333(nie)-333(m)-1(acie...)]TJ 27.879 -13.549 Td[({)-469(Ut)1(ra\\014li)1(\\261)-1(cie,)-469(\\273e)-469(am)27(b)1(itu)-468(nij)1(akiego)-469(n)1(ie)-469(mam)-1(.)-468(Co)-469(mi)-469(p)-27(o)-469(t)28(ym?)-469(S)1(o\\252t)27(y)1(s)-1(em)]TJ -27.879 -13.55 Td[(b)28(y\\252em)-296(b)-27(e)-1(z)-295(trzy)-296(r)1(oki,)-295(tom)-296(d)1(op\\252aci\\252)-296(got)1(o)27(wym)-295(gros)-1(zem)-1(.)-295(A)-295(c)-1(om)-295(namarno)28(w)28(a\\252)-296(siebie)]TJ 0 -13.549 Td[(i)-459(k)28(on)1(isk)28(\\363)27(w!)-459(com)-459(s)-1(i)1(\\246)-460(n)1(ak\\252y\\271ni\\252)-459(i)-458(nab)1(ie)-1(ga\\252,)-458(\\273)-1(e)-459(i)-459(te\\253)-459(p)1(ies)-460(p)-27(olo)28(wy)-459(ni)1(e)-460(wi\\246c)-1(ej.)-458(A)]TJ\nET\nendstream\nendobj\n150 0 obj <<\n/Type /Page\n/Contents 151 0 R\n/Resources 149 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 136 0 R\n>> endobj\n149 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n154 0 obj <<\n/Length 8225      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(43)]TJ -363.686 -35.866 Td[(up)1(adek)-487(w)-487(gosp)-27(o)-28(dar)1(s)-1(t)28(wie)-487(b)28(y\\252)-487(i)-486(marnacja,)-486(\\273)-1(e)-487(j)1(a\\273)-1(e)-487(mi)-487(mo)-56(j)1(a)-487(ni)1(e)-488(d)1(a\\252a)-487(d)1(obrego)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a...)]TJ 27.879 -13.549 Td[({)-464(Mia\\252a)-464(i)-465(on)1(a)-465(sw)27(\\363)-55(j)-464(rozum.)-464(Urz)-1(\\246dn)1(ikiem)-465(b)28(y)1(\\242)-465(z)-1(a)28(w\\273)-1(d)1(y)-464(to)-465(i)-464(hon)1(or)-464(jes)-1(t,)-464(i)]TJ -27.879 -13.549 Td[(pr)1(o\\014t.)]TJ 27.879 -13.549 Td[({)-256(B)-1(\\363g)-256(zap\\252a\\242.)-256(Str)1(a\\273)-1(n)1(ik)28(o)28(w)-1(i)-256(si\\246)-256(k\\252ania)-55(j,)-256(p)1(isarz)-1(a)-256(ob)1(\\252apia)-55(j)-256(z)-1(a)-256(n)1(ogi)-256(i)-256(b)-27(e)-1(le)-256(c)-1(iar)1(a-)]TJ -27.879 -13.55 Td[(c)27(h)1(a,)-243(co)-243(z)-243(u)1(rz\\246)-1(d)1(u)-243({)-242(te\\273)-1(..)1(.)-243(Wi)1(e)-1(lgi)-242(mi)-243(h)1(onor!)-242(Nie)-243(p)1(\\252ac)-1(\\241)-242(p)-28(o)-28(d)1(atk)28(\\363)28(w,)-243(mos)-1(t)-242(s)-1(i)1(\\246)-243(p)-28(op)1(s)-1(o)28(w)28(a,)]TJ 0 -13.549 Td[(w\\261)-1(ciekni)1(e)-317(si\\246)-316(p)1(ie)-1(s,)-315(kt\\363ry)-315(w)28(e)-1(\\271m)-1(i)1(e)-317(k)1(\\252onic\\241)-316(p)-27(o)-316(\\252b)1(ie)-316({)-316(k)1(to)-316(wino)28(w)28(at)28(y?...S)1(o\\252t)28(ys)-316(wino-)]TJ 0 -13.549 Td[(w)28(at)27(y)84(,)-254(do)-254(\\261)-1(tr)1(afu)-254(so\\252t)28(ys)-1(a)-254(c)-1(i)1(\\241)-28(ga)-56(j)1(\\241!)-254(Hale)-1(,)-254(j)1(e)-1(st)-255(p)1(ro\\014)1(t.)-254(Dos)-1(y\\242)-254(ja)-254(pisarzo)27(wi)-254(i)-254(do)-254(p)-27(o)27(wiatu)]TJ 0 -13.549 Td[(nan)1(os)-1(i)1(\\252)-334(i)-333(ku)1(r,)-333(i)-333(ja)-55(jk)28(\\363)28(w,)-333(i)-334(g\\241sk)28(\\246)-334(n)1(ie)-1(k)1(t\\363r\\241...)]TJ 27.879 -13.549 Td[({)-499(P)1(ra)28(wd\\246)-499(m)-1(\\363)28(wicie)-1(,)-498(ale)-499(Pi)1(e)-1(tr)1(k)28(o)27(wi)-499(w)28(\\363)-56(j)1(tost)27(w)28(o)-499(d)1(o)-499(grd)1(yki)-499(n)1(ie)-499(wraca,)-499(ni)1(e)-1(;)]TJ -27.879 -13.549 Td[(gron)29(tu)-333(ju)1(\\273)-334(doku)1(pi)1(\\252)-334(i)-333(sto)-28(d\\363\\252k)28(\\246)-334(d)1(os)-1(t)1(a)27(wi\\252,)-333(i)-333(k)28(oni)1(e)-334(m)-1(a)-333(ki)1(e)-1(j)-333(te)-333(haman)28(y!.)1(..)]TJ 27.879 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(i)1(no)-333(nie)-333(w)-1(i)1(ada,)-333(c)-1(o)-333(m)28(u)-333(z)-334(tego)-334(ostani)1(e)-1(,)-333(kiej)-333(si\\246)-334(ur)1(z)-1(\\241d)-333(sk)28(o\\253czy)83(..)1(.)]TJ 0 -13.549 Td[({)-333(My\\261licie...)]TJ 0 -13.549 Td[({)-333(Oc)-1(zy)-333(s)-1(w)28(o)-56(j)1(e)-334(mam)-334(i)-333(miarku)1(j\\246)-334(se)-334(\\271dziebk)28(o...)]TJ 0 -13.549 Td[({)-333(Duf)1(n)28(y)-333(c)-1(i)-333(on)-333(w)-333(s)-1(iebi)1(e)-334(i)-333(z)-334(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(m)-333(k)28(ot)27(y)-333(d)1(rze)-1(.)]TJ 0 -13.549 Td[({)-415(A)-1(\\273e)-416(m)28(u)-415(s)-1(i\\246)-416(d)1(arzy)83(,)-415(to)-415(ino)-415(b)-28(ez)-416(k)28(obi)1(e)-1(t\\246;)-415(on)-415(s)-1(e)-416(w)28(\\363)-56(j)1(tuj)1(e)-1(,)-415(a)-416(on)1(a)-416(wv)-415(gar\\261c)-1(i)]TJ -27.879 -13.55 Td[(ws)-1(zy\\242k)28(o)-334(d)1(z)-1(ier\\273y)83(.)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-333(z)-1(n)1(o)27(wu)-333(z)-334(p)1(ac)-1(i)1(e)-1(rz)-333(dob)1(ry)83(.)]TJ 0 -13.549 Td[({)-333(A)-334(wy)-333(to)-333(nie)-333(p)-28(o\\261lec)-1(ie)-333(z)-334(w)27(\\363)-27(dk)56(\\241)-334(d)1(o)-333(kt\\363rej?...)-333({)-333(z)-1(ap)29(yta\\252a)-333(os)-1(tr)1(o\\273)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(I...)-333(ni)1(e)-334(bier\\241)-333(m\\246)-334(ju)1(\\273)-334(c)-1(i)1(\\241)-28(gotki)-333(d)1(o)-334(k)28(ob)1(ie)-1(t)1(,)-334(za)-333(s)-1(tar)1(ym)-1(.)1(..)]TJ 0 -13.549 Td[({)-276(Nie)-277(p)-27(o)27(wiad)1(a)-56(j)1(c)-1(ie)-276(p)-28(o)-276(pr)1(\\363\\273)-1(n)1(ic)-1(y)1(!)-277(In)1(o)-277(ten)-276(s)-1(t)1(ary)83(,)-276(co)-277(si\\246)-277(r)1(uc)27(h)1(a\\242)-277(ni)1(e)-277(m)-1(o\\273e,)-277(\\252y\\273ki)]TJ -27.879 -13.55 Td[(sam)-466(d)1(o)-465(g\\246)-1(b)28(y)-465(n)1(ie)-465(doni)1(e)-1(sie)-466(i)-464(na)-465(pr)1(z)-1(y)1(piec)27(ku)-464(s)-1(e)-465(do)-28(c)28(ho)-28(d)1(z)-1(i)1(...)-465(Wi)1(dzia\\252am)-1(,)-464(kie)-1(j)1(\\261)-1(cie)]TJ 0 -13.549 Td[(w)28(ore)-1(k)-333(\\273yta)-333(nie\\261li.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273em)-334(w)-334(sobie)-333(krze)-1(p)1(ki)-333(jes)-1(zcz)-1(e,)-333(ale)-334(kt\\363r)1(a)-334(b)28(y)-333(ta)-333(p)-27(os)-1(z\\252a)-334(za)-333(m)-1(n)1(ie?)-1(.)1(.)]TJ 0 -13.549 Td[({)-333(Kt\\363ren)-333(ni)1(e)-334(pr)1(oban)28(t,)-333(co)-334(wie?)-334(O)1(bacz)-1(ycie!)]TJ 0 -13.549 Td[({)-333(Star)1(ym)-1(,)-333(d)1(z)-1(i)1(e)-1(ci)-334(d)1(orasta)-56(j)1(\\241...)-333(a)-333(pierwsz)-1(ej)-333(z)-334(br)1(z)-1(egu)-333(ni)1(e)-334(w)27(ezm)-1(\\246...)]TJ 0 -13.55 Td[({)-333(Zr\\363b)-27(c)-1(ie)-333(ino)-333(z)-1(ap)1(is,)-334(a)-333(i)-333(co)-334(n)1(a)-56(j)1(pierws)-1(ze)-334(si\\246)-334(w)28(am)-1(a)-333(ni)1(e)-334(s)-1(p)1(rze)-1(ciwi\\241..)1(.)]TJ 0 -13.549 Td[({)-281(La)-281(z)-1(ap)1(isu!)-281(Ki)1(e)-1(j)-280(te)-282(\\261w)-1(i)1(nie!)-281(Za)-281(t\\246)-282(morg\\246)-281(to)-281(i)-281(m\\252\\363)-28(dk)56(a)-281(na)-55(jcz)-1(y)1(s)-1(tsz)-1(a)-281(a)-281(p)-27(\\363)-56(j)1(dzie)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(\\242b)28(y)-333(z)-1(a)-333(dziada)-333(sp)-28(o)-27(d)-333(k)28(o\\261)-1(cio\\252a...)]TJ 27.879 -13.549 Td[({)-333(A)-334(c)28(h\\252op)28(y)-333(to)-333(z)-1(a)-333(wianem)-334(n)1(ie)-334(p)1(atrz\\241,)-333(c)-1(o?)]TJ 0 -13.549 Td[(Nie)-283(o)-28(d)1(rze)-1(k)1(\\252)-283(ju)1(\\273)-1(,)-282(j)1(e)-1(n)1(o)-283(skrop)1(i\\252)-283(b)1(ate)-1(m)-282(\\271)-1(rebi)1(c)-1(\\246,)-283(\\273e)-283(ru)1(s)-1(zy\\252a)-282(z)-283(m)-1(i)1(e)-1(j)1(s)-1(ca)-283(galop)-27(em)-1(.)]TJ 0 -13.55 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-333(d\\252ugo.)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-305(gd)1(y)-304(w)-1(y)1(jec)27(hal)1(i)-305(z)-304(las)-1(u)-303(na)-304(p)-28(ola,)-304(mi\\246dzy)-304(przyd)1(ro\\273ne)-305(top)-27(ole,)-304(B)-1(or)1(yna,)]TJ -27.879 -13.549 Td[(kt\\363r)1(y)-333(c)-1(a\\252y)-333(te)-1(n)-332(c)-1(zas)-334(bu)1(rzy\\252)-334(si\\246)-334(w)-333(s)-1(ob)1(ie)-334(i)-333(p)1(rz)-1(egry)1(z)-1(a\\252,)-333(wybu)1(c)27(h)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-398(Na)-398(p)1(s)-1(y)-397(takie)-398(u)1(rz)-1(\\241d)1(z)-1(eni)1(e)-399(w)28(e)-398(\\261)-1(wiec)-1(i)1(e)-1(!)-397(Z)-1(a)-397(w)-1(szys)-1(tk)28(o)-397(p\\252a\\242,)-398(c)27(h)1(o)-28(\\242)-1(b)29(y)-398(i)-397(z)-1(a)-398(to)]TJ -27.879 -13.549 Td[(dob)1(re)-255(s)-1(\\252o)28(w)28(o!)-255(\\231le)-255(jes)-1(t,)-254(\\273)-1(e)-255(i)-255(gorze)-1(j)-254(b)28(yc)-255(ni)1(e)-256(b)28(y)1(\\252o.)-255(Ju\\273)-255(na)28(w)28(e)-1(t)-255(d)1(z)-1(i)1(e)-1(ci)-255(n)1(a)-255(o)-56(jc\\363)28(w)-255(nasta)-56(j)1(\\241,)]TJ 0 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(h)28(u)-333(n)1(ie)-334(ma)-334(n)1(ijak)1(ie)-1(go,)-333(a)-333(ws)-1(zystkie)-334(si\\246)-334(\\273r\\241)-333(z)-1(e)-333(s)-1(ob)1(\\241)-334(k)1(ie)-1(j)-333(p)1(s)-1(y)84(.)]TJ 27.879 -13.55 Td[({)-333(B)-1(o)-333(g\\252up)1(ie,)-334(n)1(ie)-334(b)1(ac)-1(z\\241,)-333(\\273)-1(e)-334(wsz)-1(y)1(s)-1(tki)1(c)27(h)-333(j)1(e)-1(d)1(nak)28(o)-333(ta)-334(\\261wi\\246)-1(t)1(a)-334(ziem)-1(ia)-333(p)-27(okry)1(je.)]TJ 0 -13.549 Td[({)-359(Le)-1(d)1(a)-359(jeden)-359(ab)-27(o)-359(dr)1(ugi)-359(o)-28(d)-358(z)-1(i)1(e)-1(mi)-359(o)-28(d)1(r\\363s)-1(\\252,)-358(a)-360(j)1(u\\273)-359(do)-359(o)-55(jc\\363)27(w)-359(z)-359(p)28(yskiem)-1(,)-359(cob)28(y)]TJ -27.879 -13.549 Td[(m)27(u)-429(j)1(e)-1(go)-430(cz)-1(\\246\\261)-1(\\242)-430(d)1(a)27(w)28(ali.)-429(Ze)-430(s)-1(tar)1(s)-1(zyc)27(h)-429(s)-1(i)1(\\246)-431(i)1(no)-430(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a)-56(j)1(\\241!)-430(\\221cierwy)83(,)-429(w)27(e)-430(wsi)-430(im)]TJ 0 -13.549 Td[(cias)-1(n)1(o,)-333(p)-28(or)1(z)-1(\\241d)1(ki)-333(s)-1(tar)1(e)-334(im)-334(z\\252e)-1(,)-333(u)1(bieru)-333(n)1(a)28(w)27(et)-334(wst)28(ydz\\241)-333(s)-1(i\\246)-333(niekt\\363rzy!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(wsz)-1(y)1(s)-1(tk)28(o)-333(b)-27(e)-1(z)-334(to,)-333(\\273e)-334(Boga)-334(si\\246)-334(n)1(ie)-334(b)-27(o)-56(j)1(\\241...)]TJ 0 -13.55 Td[({)-333(B)-1(ez)-334(to)-333(i)-333(nie)-333(b)-28(ez)-334(to,)-333(a)-333(\\271)-1(le)-333(jes)-1(t.)]TJ 0 -13.549 Td[({)-333(Nie)-334(id)1(z)-1(i)1(e)-334(na)-333(lepsz)-1(e,)-333(nie.)]TJ\nET\nendstream\nendobj\n153 0 obj <<\n/Type /Page\n/Contents 154 0 R\n/Resources 152 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n152 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n158 0 obj <<\n/Length 8094      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(44)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(3.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(Ma)-333(i\\261)-1(\\242,)-333(kto)-333(ic)27(h)-332(ta)-334(zniew)28(oli?)]TJ 0 -13.549 Td[({)-333(Kara)-333(b)-27(os)-1(k)56(a!)-333(B)-1(o)-333(p)1(rz)-1(y)1(jdzie)-334(t)1(a)-334(go)-28(d)1(z)-1(i)1(na)-333(s)-1(\\241d)1(u)-333(P)28(an)1(a)-56(jezus)-1(o)28(w)28(e)-1(go,)-333(p)1(rzyjd)1(z)-1(ie.)]TJ 0 -13.549 Td[({)-333(Ale)-334(co)-334(si\\246)-334(p)1(rz\\363)-28(dzi)-333(nar)1(o)-28(du)-333(n)1(am)-1(ar)1(n)28(uj)1(e)-1(,)-333(tego)-333(nikt)-333(n)1(ie)-334(o)-28(d)1(bierze)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(zasy)-334(t)1(akie,)-334(\\273e)-334(lepi)1(e)-1(j)1(,)-334(cob)28(y)-333(m\\363r)-333(pr)1(z)-1(ysz)-1(ed\\252.)]TJ 0 -13.549 Td[({)-287(Cz)-1(asy!)-287(Ju)1(\\261)-1(ci,)-287(al)1(e)-288(i)-286(lud)1(z)-1(ie)-287(s)-1(\\241)-286(w)-1(i)1(nne.)-287(A)-287(k)28(o)28(w)28(al)-287(to)-287(c)-1(o?)-287(A)-287(w)28(\\363)-56(j)1(t?)-287(Z)-287(dobr)1(o)-28(dzie-)]TJ -27.879 -13.55 Td[(jem)-334(si\\246)-334(d)1(r\\241,)-333(lu)1(dzi)-333(bun)29(tuj)1(\\241)-334(a)-333(tuman)1(i\\241,)-333(a)-334(g\\252u)1(pie)-333(w)-1(ierz\\241.)]TJ 27.879 -13.549 Td[({)-333(T)83(e)-1(n)-333(k)28(o)28(w)28(al)-333(to)-334(mo)-55(ja)-333(trucizna,)-333(c)27(h)1(o)-28(cia\\273)-334(i)-333(zi\\246)-1(\\242)-333(te)-1(\\273...)]TJ 0 -13.549 Td[(I)-280(tak)-280(se)-281(j)1(u\\273)-280(s)-1(p)-27(o\\252e)-1(cz)-1(n)1(ie)-280(w)-1(yr)1(z)-1(ek)56(ali)-280(n)1(a)-281(t)1(e)-1(n)-279(\\261)-1(wiat,)-280(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-281(na)-280(wie\\261)-1(,)-279(c)-1(o)-280(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(coraz)-334(b)1(li\\273e)-1(j)-333(wid)1(na,)-333(pr)1(z)-1(ez)-334(top)-27(ole.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-304(sm)-1(\\246tarze)-1(m)-305(cze)-1(rwieni)1(\\252)-305(s)-1(i)1(\\246)-306(j)1(u\\273)-305(z)-305(dal)1(a)-305(rz\\241d)-304(k)28(obiet)-305(p)-27(o)-28(c)27(h)29(ylon)28(yc)28(h)-304(i)-305(zas)-1(n)28(u)1(-)]TJ -27.879 -13.549 Td[(t)28(yc)27(h)-314(d)1(e)-1(l)1(ik)56(atn\\241)-314(m)-1(g\\252\\241)-315(d)1(ym\\363)28(w)-1(,)-314(a)-315(wkr)1(\\363tc)-1(e)-315(i)-314(g\\252uc)28(h)28(y)84(,)-315(monoton)1(n)28(y)-314(trze)-1(p)-27(ot)-315(mi\\241d)1(li\\252)-314(j\\241\\252)]TJ 0 -13.55 Td[(raz)-333(w)-334(raz)-333(dop\\252y)1(w)27(a\\242)-334(z)-334(p)-27(o)28(wie)-1(w)28(em)-1(,)-333(co)-334(si\\246)-334(b)29(y\\252)-334(p)-27(o)-28(d)1(nosi\\252)-334(z)-333(nizinn)29(yc)27(h)-333(\\252\\241k.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(y)-334(czas)-334(na)-333(mi\\241dleni)1(e)-1(.)-333(Zlez)-1(\\246)-334(p)1(rzy)-333(nic)28(h,)-333(b)-27(o)-334(j)1(e)-1(st)-333(tam)-334(i)-333(Jagu\\261)-333(m)-1(o)-55(ja.)]TJ 0 -13.549 Td[({)-333(Nic)-334(mi)-333(z)-334(dr)1(ogi,)-333(to)-333(w)27(as)-334(p)-27(o)-28(d)1(w)-1(i)1(e)-1(z\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(y\\261c)-1(i)1(e)-1(,)-333(Macieju)1(,)-334(\\273e)-334(j)1(a\\273)-1(e)-334(mi)-333(dziwno.)1(..)-333({)-334(u)1(\\261)-1(miec)27(h)1(n\\246\\252)-1(a)-333(si\\246)-334(c)27(h)29(ytrze)-1(.)]TJ 0 -13.549 Td[(Sk)1(r\\246c)-1(i\\252)-440(z)-441(top)-27(olo)28(w)27(ej)-440(n)1(a)-441(p)-27(oln)1(\\241)-441(d)1(r\\363\\273k)28(\\246)-1(,)-440(co)-441(b)1(ie)-1(g\\252a)-440(do)-440(sm)-1(\\246tarn)1(ic)27(h)-440(wr)1(\\363tni,)-440(i)]TJ -27.879 -13.55 Td[(p)-27(o)-28(dwi\\363z\\252)-387(p)-27(o)-28(d)-387(sm\\246)-1(tar)1(z)-1(,)-386(gdz)-1(i)1(e)-388(p)-27(o)-28(d)-386(k)56(am)-1(i)1(e)-1(n)1(n)28(ym)-387(s)-1(zarym)-387(p)1(\\252ote)-1(m,)-387(w)-387(cieniu)-386(br)1(z)-1(\\363z,)]TJ 0 -13.549 Td[(klon)1(\\363)28(w)-316(i)-316(t)28(yc)27(h)-315(krzy\\273\\363)27(w,)-315(c)-1(o)-316(si\\246)-316(z)-317(mogi\\252ek)-316(p)-27(o)-28(c)27(h)28(y)1(la\\252y)-316(ku)-315(p)-28(ol)1(om)-1(,)-315(kilk)56(an)1(a\\261)-1(cie)-316(k)28(obiet)]TJ 0 -13.549 Td[(mi\\241dl)1(i\\252o)-373(z)-1(a)28(wz)-1(i\\246cie)-374(suc)28(h)28(y)-373(len,)-373(a\\273)-373(m)-1(g\\252a)-373(p)28(y)1(\\252\\363)27(w)-373(wisia\\252a)-373(nad)-373(n)1(imi)-373(i)-373(d)1(\\252)-1(u)1(gie)-373(w)-1(\\252\\363kn)1(a)]TJ 0 -13.549 Td[(cz)-1(epia\\252y)-270(s)-1(i)1(\\246)-271(\\273)-1(\\363\\252t)28(yc)28(h)-271(l)1(is)-1(t)1(k)28(\\363)27(w)-270(brz\\363z)-271(i)-270(w)-1(i)1(s)-1(ia\\252y)-270(u)-270(c)-1(zarn)29(yc)27(h)-270(ramion)-270(kr)1(z)-1(y\\273\\363)28(w;)-271(w)-270(p)-28(o)-28(d)1(le,)]TJ 0 -13.549 Td[(na)-340(pr\\246tac)27(h)-340(rozpi)1(\\246)-1(t)28(yc)28(h,)-341(n)1(ad)-341(d)1(o\\252am)-1(i)1(,)-341(w)-341(kt\\363r)1(yc)27(h)-340(pali)1(\\252y)-341(si\\246)-342(ogn)1(ie,)-341(pr)1(z)-1(es)-1(u)1(s)-1(zano)-340(le)-1(n)]TJ 0 -13.55 Td[(mokra)28(wy)-333(jes)-1(zc)-1(ze)-1(.)]TJ 27.879 -13.549 Td[(Mi)1(\\241dlice)-253(ostro)-252(k\\252apa\\252y)84(,)-253(a\\273)-253(ca\\252y)-252(rz)-1(\\241d)-252(k)28(ob)1(iet)-253(p)-27(o)-28(c)28(h)28(yla\\252)-252(s)-1(i\\246)-253(ci\\241)-28(gl)1(e)-253(w)-253(kr)1(\\363tkic)27(h)-252(a)]TJ -27.879 -13.549 Td[(pr)1(\\246)-1(d)1(kic)28(h)-254(d)1(rganiac)28(h,)-253(i)-254(t)28(ylk)28(o)-254(coraz)-254(kt\\363ra\\261)-254(si\\246)-254(prosto)28(w)27(a\\252a,)-254(r)1(oz)-1(tr)1(z)-1(ep)28(yw)28(a\\252a)-254(pr)1(z)-1(ygar)1(\\261)-1(\\242)]TJ 0 -13.549 Td[(ln)28(u)-468(z)-469(ostatnic)28(h)-469(p)1(a\\271)-1(d)1(z)-1(i)1(e)-1(r)1(z)-1(y)84(,)-469(zw)-1(i)1(ja\\252a)-469(j)1(\\241)-469(w)-469(ku)1(k\\252\\246)-469(lib)-27(o)-469(w)-469(c)27(h)1(o)-28(c)27(h)1(o\\252a)-469(i)-469(r)1(z)-1(u)1(c)-1(a\\252a)-469(n)1(a)]TJ 0 -13.549 Td[(rozp)-27(os)-1(tar)1(t\\241)-334(p)1(\\252ac)27(h)28(t\\246)-334(p)1(rze)-1(d)-333(siebie.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e,)-323(\\273)-1(e)-323(s)-1(i\\246)-323(ju)1(\\273)-324(b)28(y\\252o)-323(pr)1(z)-1(eto)-28(cz)-1(y\\252o)-323(nad)-323(l)1(as)-1(y)84(,)-323(\\261)-1(wiec)-1(i)1(\\252)-1(o)-323(im)-323(pr)1(os)-1(to)-323(w)-324(t)28(w)28(arze)-1(,)]TJ -27.879 -13.549 Td[(ale)-304(n)1(ic)-304(to)-303({)-303(rob)-27(ota,)-303(\\261)-1(miec)27(h)28(y)84(,)-303(w)27(es)-1(o\\252e)-304(s\\252o)28(w)27(a)-303(nie)-303(usta)28(w)27(a\\252y)-303(ani)-303(n)1(a)-304(to)-303(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie.)]TJ 27.879 -13.549 Td[({)-398(S)1(z)-1(cz)-1(\\246\\261)-1(\\242)-398(Bo\\273)-1(e)-398(na)-397(rob)-27(ot\\246)-1(!)-397({)-398(z)-1(a)28(w)28(o\\252a\\252)-398(B)-1(or)1(yna)-398(d)1(o)-398(Jagn)28(y)84(,)-398(kt)1(\\363ra)-398(mi\\241dl)1(i\\252a)-398(z)]TJ -27.879 -13.549 Td[(kr)1(a)-56(ja)-327(z)-1(ar)1(no;)-327(w)-328(k)28(os)-1(zuli)-327(b)28(y\\252a)-328(i)1(no)-328(a)-327(w)-328(c)-1(ze)-1(r)1(w)27(on)29(ym)-328(w)27(e\\252niak)1(u)-328(i)-327(w)-328(c)27(h)28(u)1(s)-1(t)1(c)-1(e)-328(na)-327(g\\252o)27(wie)]TJ 0 -13.549 Td[(o)-28(d)-333(k)1(urzu.)]TJ 27.879 -13.55 Td[({)-441(B\\363g)-441(zap\\252a\\242)-1(!)-440({)-441(o)-28(d)1(rzuci\\252a)-441(w)27(es)-1(o\\252o)-440(i)-441(mo)-28(dr)1(e)-1(,)-440(ogromne)-441(o)-28(c)-1(zy)-441(p)-27(o)-28(d)1(nios\\252a)-441(na)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go,)-333(i)-333(u\\261mie)-1(c)28(h)-333(pr)1(z)-1(ele)-1(cia\\252)-333(pr)1(z)-1(ez)-334(jej)-333(ur)1(o)-28(dn)1(\\241,)-333(opalon)1(\\241)-334(t)28(w)28(arz.)]TJ 27.879 -13.549 Td[({)-333(Su)1(c)27(h)28(y)84(,)-333(c)-1(\\363ru)1(c)27(h)1(no,)-333(co?)-334({)-333(p)28(yta\\252a)-333(s)-1(tar)1(a,)-333(obmac)-1(u)1(j\\241c)-334(ob)1(m)-1(i)1(\\241dlon)1(e)-334(gar\\261c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-252(S)1(uc)27(h)29(y)-252(kiej)-251(piepr)1(z)-1(,)-252(j)1(a\\273)-1(e)-252(si\\246)-252(\\252am)-1(ie...)-251({)-252(Zno)28(wu)-252(sp)-27(o)-56(jr)1(z)-1(a\\252a)-252(n)1(a)-252(stare)-1(go)-251(z)-253(u)1(\\261)-1(mie-)]TJ -27.879 -13.549 Td[(c)27(h)1(e)-1(m,)-344(a\\273)-344(ciarki)-343(pr)1(z)-1(es)-1(z\\252y)-344(p)-27(o)-344(ni)1(m)-1(,)-343(\\273)-1(e)-344(\\261)-1(wisn\\241\\252)-344(b)1(atem)-345(i)-343(o)-28(dj)1(e)-1(c)28(ha\\252,)-343(ale)-345(r)1(az)-344(w)-345(r)1(az)-344(s)-1(i\\246)]TJ 0 -13.549 Td[(obr)1(ac)-1(a\\252)-333(z)-1(a)-333(n)1(i\\241,)-333(c)27(ho)-27(\\242)-334(ju)1(\\273)-334(widn)1(a)-334(n)1(ie)-334(b)29(y\\252a,)-333(b)-28(o)-333(m)27(u)-333(j)1(ak)-333(\\273)-1(yw)28(a)-333(s)-1(ta\\252a)-333(w)-334(o)-27(c)-1(zac)27(h.)1(..)]TJ 27.879 -13.55 Td[({)-333(Dz)-1(i)1(e)-1(u)1(c)27(ha)-333(kiej)-333(\\252ani)1(a...)-333(W)-333(s)-1(am)-333(raz)-334({)-333(rozm)27(y\\261la\\252.)]TJ\nET\nendstream\nendobj\n157 0 obj <<\n/Type /Page\n/Contents 158 0 R\n/Resources 156 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n156 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n161 0 obj <<\n/Length 5814      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(4)]TJ/F17 10.909 Tf 0 -73.325 Td[(By\\252a)-334(n)1(iedzie)-1(l)1(a)-334({)-333(c)-1(i)1(c)27(h)28(y)84(,)-333(opa)-55(j\\246c)-1(zon)28(y)-333(i)-333(przes)-1(\\252onec)-1(zni)1(on)28(y)-333(dzie\\253)-333(w)-1(r)1(z)-1(e\\261)-1(n)1(io)28(wy)83(.)]TJ 27.879 -13.549 Td[(Na)-294(\\261)-1(ciern)1(is)-1(k)1(u,)-294(tu)1(\\273)-295(za)-294(s)-1(to)-27(do\\252ami,)-294(pas\\252)-294(s)-1(i\\246)-294(dzisia)-56(j)-293(c)-1(a\\252y)-294(i)1(n)28(w)27(en)28(tar)1(z)-295(Boryn)1(o)27(wy)]TJ -27.879 -13.549 Td[(a)-273(p)-27(o)-28(d)-273(b)1(rogiem)-273(w)-1(y)1(s)-1(oki)1(m)-274(i)-272(p)-28(\\246k)56(at)27(y)1(m)-1(,)-272(okr\\241\\273on)28(ym)-273(z)-1(i)1(e)-1(lon)1(\\241)-273(s)-1(zc)-1(zotk)56(\\241)-273(\\273yta,)-273(wykr)1(usz)-1(o-)]TJ 0 -13.55 Td[(nego)-317(p)1(rz)-1(y)-316(uk)1(\\252)-1(ad)1(aniu)1(,)-317(l)1(e)-1(\\273a\\252)-317(Kub)1(a,)-317(d)1(a)27(w)28(a\\252)-317(bacze)-1(n)1(ie)-318(n)1(a)-317(in)29(w)27(en)28(tarz)-317(i)-317(u)1(c)-1(zy\\252)-317(p)1(ac)-1(ierza)]TJ 0 -13.549 Td[(Wit)1(k)55(a)-291({)-291(c)-1(z\\246)-1(sto)-291(p)-28(okr)1(z)-1(y)1(kiw)28(a)-1(\\252)-291(na)-291(n)1(ie)-1(go)-291(alb)-27(o)-292(i)-291(zas)-1(i)1(e)-292(s)-1(ztu)1(rc)27(h)1(a\\252)-292(b)1(ic)-1(zyskiem)-1(,)-291(b)-27(o)-291(c)27(h\\252o-)]TJ 0 -13.549 Td[(pak)-333(m)28(yli\\252)-333(s)-1(i)1(\\246)-334(i)-333(lata\\252)-333(o)-28(c)-1(zami)-333(p)-28(o)-333(s)-1(ad)1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(acz)-1(,)-333(co)-28(\\242)-334(r)1(z)-1(ek\\252e)-1(m,)-333(b)-27(o)-334(to)-333(pacierz)-334({)-333(up)-27(omina\\252)-333(p)-27(o)27(w)28(a\\273)-1(n)1(ie)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(b)1(ac)-1(z\\246)-1(,)-333(Ku)1(ba,)-333(b)1(ac)-1(z\\246)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(cze)-1(g\\363)-55(j)-333(\\261)-1(lepi)1(as)-1(z)-334(p)-27(o)-333(s)-1(ad)1(ac)27(h?)]TJ 0 -13.55 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(c)-1(o)-333(s)-1(\\241)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(jab\\252k)56(a)-333(u)-333(K\\252\\246b)-28(\\363)28(w...)]TJ 0 -13.549 Td[({)-333(Zjad\\252b)29(y\\261)-1(!)-333(A)-333(s)-1(ad)1(z)-1(i)1(\\252)-1(e\\261)-334(j)1(e)-334(to,)-333(c)-1(o?)-333(P)28(o)28(wt\\363rz)-334(\\377)28(Wierz\\246)-1(\".)]TJ 0 -13.549 Td[({)-333(Wy\\261c)-1(ie)-333(te)-1(\\273)-333(nie)-334(wywiedl)1(i)-334(k)1(urop)1(at)28(w)27(\\363)28(w,)-333(a)-334(wzie)-1(n)1(i\\261c)-1(ie)-333(c)-1(a\\252e)-334(stado.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(!)-333(Jab)1(\\252k)56(a)-334(s\\241)-334(K)1(\\252\\246)-1(b)-27(o)28(w)27(e,)-334(a)-333(p)1(tas)-1(zki)-333(P)28(an)1(a)-56(jezuso)27(w)28(e)-1(,)-333(r)1(oz)-1(u)1(m)-1(iesz)-1(!)]TJ 0 -13.549 Td[({)-333(Ale)-1(\\261cie)-334(je)-333(w)-1(zieni)-333(z)-334(d)1(z)-1(iedzico)28(w)27(ego)-334(p)-27(ola..)1(.)]TJ 0 -13.55 Td[({)-333(I)-334(p)-27(ole)-334(j)1(e)-1(st)-333(P)28(ana)-55(jez)-1(u)1(s)-1(o)28(w)28(e)-1(.)-333(Hale,)-333(jaki)-333(m\\241dr)1(ala,)-333(p)-28(o)28(wt\\363rz)-333(\\377)27(W)1(ie)-1(r)1(z)-1(\\246\".)]TJ 0 -13.549 Td[(P)28(o)28(wtarza\\252)-270(pr)1(\\246)-1(d)1(k)28(o,)-270(b)-27(o)-270(go)-270(ju)1(\\273)-271(k)28(ol)1(ana)-270(b)-27(ola\\252y)-270(o)-27(d)-270(kl)1(\\246)-1(cz)-1(enia,)-269(ale)-270(nie)-270(\\261c)-1(ierp)1(ia\\252...)]TJ 0 -13.549 Td[({)-254(W)1(idzi)-254(mi)-253(s)-1(i\\246,)-253(c)-1(o)-253(\\271)-1(r\\363b)1(k)56(a)-254(id)1(z)-1(ie)-254(w)-254(M)1(ic)27(h)1(a\\252o)27(w)28(\\241)-254(k)28(on)1(icz)-1(yn)1(\\246)-1(!)-253({)-254(k)1(rz)-1(y)1(kn\\241\\252)-253(goto)27(wy)]TJ -27.879 -13.549 Td[(do)-333(b)1(ie)-1(gn)1(i\\246)-1(cia.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246)-334(o)-333(\\271r\\363bk)28(\\246,)-333(a)-334(p)1(atrz)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-1(a..)1(.)]TJ 0 -13.55 Td[(Ko\\253)1(c)-1(zy\\252)-485(wre)-1(szc)-1(ie,)-485(ale)-485(ju)1(\\273)-486(n)1(ie)-486(m\\363g\\252)-485(w)-1(y)1(trzyma\\242)-1(,)-485(p)1(rzys)-1(i)1(ada\\252)-485(na)-485(p)1(i\\246)-1(tac)28(h,)]TJ -27.879 -13.549 Td[(wykr)1(\\246)-1(ca\\252)-233(s)-1(i\\246)-233(na)-233(wsz)-1(ystkie)-233(stron)28(y)84(,)-233(a)-233(zo)-28(c)-1(zyws)-1(zy)-233(b)1(and)1(\\246)-234(wr\\363b)1(li)-233(n)1(a)-233(\\261)-1(li)1(w)-1(k)56(ac)27(h)1(,)-233(\\261m)-1(i)1(gn\\241\\252)]TJ 0 -13.549 Td[(w)-334(n)1(ie)-334(gr)1(ud)1(k)55(\\241)-333(z)-1(i)1(e)-1(mi)-333(i)-333(\\261)-1(p)1(ie)-1(sznie)-334(b)1(i\\252)-333(s)-1(i\\246)-333(w)-334(p)1(ie)-1(r)1(s)-1(i.)]TJ 27.879 -13.549 Td[({)-333(A)-334(o)-27(c)27(h\\014)1(aro)28(w)27(an)1(ie)-334(to)-333(zjad\\252e\\261)-334(ki)1(e)-1(j)-333(u)1(l\\246)-1(ga\\252k)28(\\246,)-333(c)-1(o?)]TJ 0 -13.549 Td[(P)28(o)28(wiedzia\\252)-358(o)-27(c)27(h\\014)1(aro)28(w)27(an)1(ie)-358(i)-357(z)-358(wielk)56(\\241)-357(ulg\\241)-357(wz)-1(i\\241\\252)-357(si\\246)-358(do)-357(\\261pi\\241ce)-1(go)-357(\\212ap)28(y)-357(i)-357(j)1(\\241\\252)]TJ -27.879 -13.55 Td[(z)-334(n)1(im)-334(b)1(aras)-1(zk)28(o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-386(Ale)-1(,)-386(gzi\\252)-387(si\\246)-387(ci\\246)-1(gi)1(e)-1(m)-387(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-386(kiej)-386(ten)-386(c)-1(ielak)-386(g\\252up)1(i.)-387({)-386(P)28(on)1(ie)-1(siec)-1(i)1(e)-387(dobr)1(o-)]TJ -27.879 -13.549 Td[(dziejo)28(wi)-333(ptasz)-1(ki)1(?)]TJ 27.879 -13.549 Td[({)-333(P)28(oni)1(e)-1(s\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Sp)1(ie)-1(k)1(lib)28(ym)-333(w)-334(p)-27(olu.)]TJ 0 -13.55 Td[({)-333(Sp)1(ie)-1(cz)-334(se)-334(z)-1(i)1(e)-1(mniak)28(\\363)28(w.)-333(Co)-334(m)28(u)-333(s)-1(i)1(\\246)-334(z)-1(ac)28(hciew)27(a!)]TJ 0 -13.549 Td[({)-277(I)-1(d)1(\\241)-278(j)1(u\\273)-278(d)1(o)-278(k)28(o\\261c)-1(i)1(o\\252a!)-278({)-277(z)-1(a)28(w)28(o\\252a\\252)-278(Wit)1(e)-1(k,)-277(sp)-28(ostrze)-1(ga)-55(j\\241c)-278(p)1(rze)-1(z)-278(p)1(\\252ot)27(y)-277(i)-277(dr)1(z)-1(ew)27(a)]TJ -27.879 -13.549 Td[(miga)-56(j)1(\\241c)-1(e)-333(c)-1(ze)-1(rw)28(one)-333(z)-1(ap)1(as)-1(ki)-333(n)1(a)-334(d)1(ro)-28(d)1(z)-1(e.)]TJ 363.686 -29.888 Td[(45)]TJ\nET\nendstream\nendobj\n160 0 obj <<\n/Type /Page\n/Contents 161 0 R\n/Resources 159 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n159 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n164 0 obj <<\n/Length 9757      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(46)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(S\\252o\\253)1(c)-1(e)-368(p)1(rzygrze)-1(w)28(a\\252o)-368(n)1(iez)-1(gorzej,)-367(\\273)-1(e)-368(wsz)-1(ystki)1(e)-368(okna)-367(i)-368(d)1(rzwi)-368(c)28(ha\\252up)-367(p)-27(o)28(wy-)]TJ -27.879 -13.549 Td[(wierano)-454(n)1(a)-454(pr)1(z)-1(es)-1(tr)1(z)-1(a\\252;)-453(gdzie)-1(n)1(iegdzie)-1(,)-453(p)-28(o)-28(d)-453(pr)1(z)-1(y)1(z)-1(b)1(am)-1(i,)-453(m)27(yt)1(o)-454(s)-1(i\\246)-454(jesz)-1(cz)-1(e,)-454(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(zno)28(wu)-414(c)-1(ze)-1(sano)-414(i)-415(zapl)1(e)-1(tan)1(o)-415(w)28(ark)28(o)-28(cze)-1(,)-414(gdzie)-415(wytr)1(z)-1(ep)28(yw)28(ano)-414(\\261)-1(wi\\241tec)-1(zne)-415(szm)-1(at)28(y)84(,)]TJ 0 -13.549 Td[(zm)-1(i\\246te)-320(c)-1(a\\252ot)28(ygo)-28(d)1(ni)1(o)27(wym)-320(le\\273)-1(eni)1(e)-1(m)-320(w)-320(s)-1(kr)1(z)-1(y)1(niac)27(h)1(,)-320(gd)1(z)-1(ie)-320(ju)1(\\273)-321(wyc)28(ho)-28(d)1(z)-1(on)1(o)-320(na)-320(d)1(ro-)]TJ 0 -13.549 Td[(g\\246,)-422(\\273)-1(e)-422(raz)-423(w)-422(raz)-422(nib)29(y)-422(m)-1(ak)1(i)-422(c)-1(ze)-1(r)1(w)27(on)1(e)-1(,)-422(n)1(ib)28(y)-422(georgin)1(ie)-423(\\273\\363\\252te)-1(,)-422(co)-422(dokwit)1(a\\252)-1(y)-421(p)-28(o)-28(d)]TJ 0 -13.55 Td[(\\261c)-1(ian)1(am)-1(i)1(,)-342(lib)-27(o)-342(te)-343(n)1(agietki)-342(i)-342(n)1(as)-1(tu)1(rcje)-342({)-342(tak)-342(s)-1(z\\252y)-342(k)28(ob)1(ie)-1(t)28(y)-342(stro)-55(jn)1(e)-1(,)-342(sz)-1(\\252y)-341(dzie)-1(w)28(c)-1(zy-)]TJ 0 -13.549 Td[(n)28(y)84(,)-422(sz)-1(l)1(i)-422(p)1(arob)-27(c)-1(y)84(,)-422(sz\\252)-1(y)-421(dziec)-1(i)1(,)-422(sz)-1(li)-421(gosp)-28(o)-28(d)1(arze)-422(w)-422(bi)1(a)-1(\\252y)1(c)27(h)-421(k)56(ap)-28(otac)28(h,)-421(p)-28(o)-27(dobn)1(i)-422(d)1(o)]TJ 0 -13.549 Td[(ogromn)28(yc)28(h)-317(\\273ytn)1(ic)27(h)-316(s)-1(n)1(op)-28(\\363)28(w,)-317(a)-316(w)-1(sz)-1(y)1(s)-1(cy)-317(d)1(\\241\\273)-1(yl)1(i)-317(w)27(ol)1(no)-317(ku)-316(k)28(o\\261c)-1(io\\252o)28(wi)-317(d)1(rogami)-317(nad)]TJ 0 -13.549 Td[(sta)27(w)28(em)-1(,)-333(kt\\363r)1(e)-1(n)-333(n)1(ib)28(y)-333(misa)-334(z\\252ota)-334(o)-27(db)1(ija\\252)-333(w)-334(sobie)-333(s)-1(\\252o\\253ce,)-334(a\\273)-333(o)-28(c)-1(zy)-333(razi\\252o.)]TJ 27.879 -13.549 Td[(A)-300(dzw)27(on)29(y)-300(w)27(ci\\241\\273)-301(b)1(i\\252y)-300(rad)1(os)-1(n)28(y)1(m)-301(g\\252os)-1(em)-301(n)1(iedzie)-1(l)1(i,)-300(o)-28(dp)-27(o)-28(cz)-1(n)1(ienia,)-300(mo)-28(d)1(lit)28(wy)83(.)]TJ 0 -13.549 Td[(Ku)1(ba)-380(cze)-1(k)56(a\\252,)-380(a\\273)-380(p)1(rz)-1(edzw)27(on)1(i\\241,)-379(ale)-380(\\273)-1(e)-380(n)1(ie)-380(m)-1(\\363g\\252)-380(si\\246)-380(do)-27(c)-1(ze)-1(k)56(a\\242,)-380(sc)27(h)1(o)27(w)28(a\\252)-380(p)-27(\\246)-1(k)]TJ -27.879 -13.55 Td[(pt)1(ak)28(\\363)27(w)-333(p)-28(o)-27(d)-333(k)56(ap)-28(ot\\246)-334(i)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-333(Witek,)-333(jak)-333(wyd)1(z)-1(w)28(oni\\241,)-333(sp)-28(\\246d\\271)-333(b)28(yd)1(\\252)-1(o)-333(d)1(o)-334(ob)-27(\\363r)-333(i)-333(pr)1(z)-1(yc)28(ho)-28(d)1(\\271)-334(do)-333(k)28(o\\261c)-1(io\\252a.)]TJ 0 -13.549 Td[(Rusz)-1(y)1(\\252,)-307(ile)-307(m\\363g\\252,)-307(ry)1(c)27(h\\252o,)-306(b)-28(o)-307(k)1(ula\\252)-307(sro)-28(d)1(z)-1(e,)-307(d)1(r\\363\\273k)55(\\241)-306(biegn\\241c\\241)-307(p)-27(o)-28(d)-307(ogr)1(o)-28(dami,)]TJ -27.879 -13.549 Td[(a)-333(tak)-333(z)-1(as\\252an\\241)-333(\\273)-1(\\363\\252t)28(ym)-333(li\\261c)-1(iem)-334(top)-27(oli,)-333(\\273e)-334(sz)-1(ed\\252)-333(kieb)28(y)-333(p)-28(o)-333(sz)-1(af)1(rano)28(wym)-333(kilimie.)]TJ 27.879 -13.549 Td[(Pl)1(e)-1(b)1(ania)-365(sta\\252a)-365(na)-365(pr)1(os)-1(t)-365(k)28(o\\261c)-1(io\\252a,)-365(p)1(rze)-1(d)1(z)-1(ielon)1(a)-366(t)28(yl)1(k)28(o)-366(o)-27(de\\253)-365(dr)1(og\\241,)-365(w)-366(g\\252\\246bi)]TJ -27.879 -13.55 Td[(wielkiego)-334(ogr)1(o)-28(du)1(,)-333(p)-28(e\\252nego)-334(j)1(e)-1(szc)-1(ze)-334(gru)1(s)-1(ze)-1(k)-333(zielon)28(yc)27(h)-332(i)-334(j)1(ab\\252ek)-333(rumian)29(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-335(ganki)1(e)-1(m,)-336(ob)1(ro\\261ni\\246t)28(ym)-336(w)-336(p)-27(o)-28(cz)-1(erwienia\\252e)-336(wino,)-335(Ku)1(ba)-336(si\\246)-336(zatrzyma\\252)]TJ -27.879 -13.549 Td[(b)-27(e)-1(zrad)1(nie,)-356(s)-1(p)-27(oz)-1(i)1(e)-1(ra)-55(j\\241c)-357(n)1(ie\\261)-1(mia\\252o)-356(w)-357(okn)1(a)-357(i)-356(w)-357(sie\\253,)-356(p)-27(o)27(wywieran)1(e)-357(na)-356(o\\261)-1(cie\\273)-1(;)-356(a)-356(\\273)-1(e)]TJ 0 -13.549 Td[(w)28(e)-1(j)1(\\261)-1(\\242)-402(n)1(ie)-402(\\261m)-1(ia\\252,)-401(cofn)1(\\241\\252)-402(si\\246)-402(p)-27(o)-28(d)-401(wie)-1(l)1(ki)-401(klom)27(b)1(,)-401(p)-28(e\\252e)-1(n)-401(r)1(\\363\\273)-1(,)-401(lewk)28(onii)-401(i)-401(as)-1(t)1(r\\363)28(w)-1(,)-401(o)-28(d)]TJ 0 -13.549 Td[(kt\\363r)1(yc)27(h)-369(bi)1(\\252)-370(s)-1(\\252o)-27(dki,)-369(u)1(pa)-56(j)1(a)-56(j)1(\\241c)-1(y)-369(z)-1(ap)1(ac)27(h)1(;)-370(stado)-369(bia\\252yc)28(h)-369(go\\252)-1(\\246bi)-369(\\252az)-1(i)1(\\252o)-370(p)-27(o)-370(zie)-1(l)1(on)28(ym,)]TJ 0 -13.55 Td[(oms)-1(zon)28(ym)-333(dac)27(h)29(u)-333(i)-334(sfr)1(u)28(w)28(a\\252)-1(o)-333(n)1(a)-334(gan)1(e)-1(k.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-325(c)27(h)1(o)-28(dzi\\252)-325(p)-28(o)-325(ogr)1(o)-28(dzie)-326(z)-325(br)1(e)-1(wiarzerm)-326(w)-325(r\\246ku)1(,)-325(ale)-326(r)1(a)-1(z)-325(wraz)-326(p)-27(otrz\\241sa\\252)]TJ -27.879 -13.549 Td[(gru)1(s)-1(z\\241,)-356(to)-357(j)1(ab\\252onk)56(\\241,)-356(\\273e)-357(s)-1(\\252yc)28(ha\\242)-357(b)28(y)1(\\252)-357(c)-1(i)1(\\246)-1(\\273kie)-357(p)1(ac)-1(an)1(ie)-357(o)28(w)27(o)-27(c)-1(\\363)28(w)-357(o)-356(z)-1(iemi\\246)-1(,)-356(p)-27(oz)-1(b)1(iera\\252)]TJ 0 -13.549 Td[(je)-333(w)-334(p)-27(o\\252\\246)-334(s)-1(u)1(tann)29(y)-334(i)-333(n)1(i\\363s\\252)-334(d)1(o)-334(d)1(om)27(u)1(.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-333(z)-1(ast\\241)-28(p)1(i\\252)-334(m)28(u)-333(dr)1(og\\246)-334(i)-333(p)-28(ok)28(or)1(nie)-333(p)-28(o)-27(dj\\241\\252)-333(za)-334(k)28(olan)1(a.)]TJ 0 -13.55 Td[({)-333(C)-1(\\363\\273)-333(to)-334(p)-27(o)28(wie)-1(cie?)-334(Ah)1(a...)-333(Ku)1(ba)-333(B)-1(or)1(yno)28(wy)83(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(dy)1(\\242)-334(par)1(\\246)-334(kur)1(opatk)28(\\363)28(w)-334(d)1(obr)1(o)-28(dziejo)28(wi)-333(przyni)1(os)-1(\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(ci)-334(zap\\252a\\242.)-333(Cho)-28(d)1(\\271)-334(z)-1(e)-333(m)-1(n)1(\\241.)]TJ 0 -13.549 Td[(Ku)1(ba)-346(w)-1(sz)-1(ed\\252)-346(ino)-346(do)-346(s)-1(i)1(e)-1(ni)-346(i)-346(os)-1(ta\\252)-346(pr)1(z)-1(y)-346(pr)1(ogu,)-346(b)-28(o)-346(nij)1(ak)-346(nie)-347(\\261m)-1(i)1(a\\252)-347(w)27(ej\\261\\242)-347(na)]TJ -27.879 -13.549 Td[(p)-27(ok)28(o)-56(j)1(e)-1(,)-387(p)-27(ogl\\241da\\252)-387(t)28(yla)-387(co)-387(prze)-1(z)-387(dr)1(z)-1(wi)-387(ot)28(w)27(ar)1(te)-388(n)1(a)-388(ob)1(razy)-387(wis)-1(z\\241c)-1(e)-387(p)-28(o)-387(\\261c)-1(i)1(anac)27(h)-386(i)]TJ 0 -13.55 Td[(pr)1(z)-1(e\\273)-1(egna\\252)-302(si\\246)-302(p)-28(ob)-27(o\\273nie,)-302(i)-302(w)28(es)-1(tc)28(hn\\241\\252,)-301(a)-302(tak)-302(si\\246)-303(czu\\252)-302(ol\\261nion)29(y)-302(t)28(ymi)-302(\\261)-1(l)1(ic)-1(zno\\261ciam)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-309(a\\273e)-309(\\252z)-1(y)-307(m)-1(ia\\252)-308(w)-308(o)-28(cz)-1(ac)28(h)-308(i)-308(k)28(on)1(ie)-1(cz)-1(n)1(ie)-308(c)27(hcia\\252o)-308(m)27(u)-307(s)-1(i\\246)-308(z)-1(m\\363)28(wi\\242)-309(p)1(ac)-1(i)1(e)-1(rz,)-308(j)1(e)-1(n)1(o)-308(\\273)-1(e)-308(s)-1(i\\246)]TJ 0 -13.549 Td[(b)-27(o)-56(j)1(a\\252)-334(kl)1(\\246)-1(kn)1(\\241\\242)-334(na)-333(b\\252y)1(s)-1(zc)-1(z\\241c)-1(ej,)-333(\\261liskiej)-333(p)-27(os)-1(ad)1(z)-1(ce)-1(,)-333(\\273e)-1(b)28(y)-333(j)1(e)-1(j)-333(n)1(ie)-334(p)-27(o)28(w)27(ala\\242.)]TJ 27.879 -13.549 Td[(Ale)-334(i)-333(k)1(s)-1(i\\241d)1(z)-334(zaraz)-334(wysz)-1(ed\\252)-333(z)-334(p)-27(ok)28(o)-56(j\\363)28(w,)-333(da\\252)-333(m)27(u)-333(z\\252ot\\363)28(w)-1(k)28(\\246)-333(i)-333(rz)-1(ek\\252:)]TJ 0 -13.549 Td[({)-315(B\\363g)-315(c)-1(i)-314(z)-1(ap)1(\\252a\\242)-1(,)-314(Kub)1(a,)-315(dob)1(ry)-314(z)-316(ciebie)-315(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-315(i)-314(p)-28(ob)-27(o\\273n)28(y)83(,)-314(b)-28(o)-314(c)-1(o)-315(n)1(ie)-1(d)1(z)-1(i)1(e)-1(la)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzisz)-334(do)-333(k)28(o\\261c)-1(io\\252a.)]TJ 27.879 -13.55 Td[(Ku)1(ba)-359(p)-28(o)-27(dj\\241\\252)-359(go)-359(z)-1(a)-359(nogi,)-359(ale)-360(b)29(y\\252)-360(t)1(a)-1(k)-359(og\\252u)1(s)-1(zon)28(y)-359(rad)1(o\\261)-1(ci\\241,)-359(\\273)-1(e)-360(an)1(i)-359(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)]TJ -27.879 -13.549 Td[(kiedy)-333(znal)1(az)-1(\\252)-333(s)-1(i\\246)-333(na)-333(dro)-27(dze)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-362(Cie,)-362(za)-362(te)-362(par)1(\\246)-363(p)1(tasz)-1(k)28(\\363)28(w,)-362(a)-362(t)28(yl)1(ac)27(hn)1(a)-362(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)1(!)-362(Dob)1(ro)-28(d)1(z)-1(iej)-361(k)28(o)-28(c)27(h)1(an)28(y!)-362({)]TJ -27.879 -13.549 Td[(sz)-1(epta\\252,)-438(p)1(rz)-1(y)1(gl\\241da)-55(j\\241c)-438(s)-1(i\\246)-438(pieni)1(\\241dzo)27(wi.)-438(Ni)1(e)-1(r)1(az)-439(c)-1(i)-437(on)-438(nosi\\252)-438(dob)1(ro)-28(d)1(z)-1(iejo)28(wi)-438(r\\363\\273ne)]TJ 0 -13.549 Td[(pt)1(as)-1(zki,)-299(to)-300(za)-56(j)1(\\241c)-1(zk)56(a,)-299(to)-300(gr)1(z)-1(yb)1(k)28(\\363)28(w)-1(,)-299(ale)-300(n)1(igdy)-299(j)1(e)-1(sz)-1(cz)-1(e)-299(t)27(y)1(la)-300(n)1(ie)-300(d)1(os)-1(ta\\252;)-299(c)-1(o)-299(na)-55(jwy\\273e)-1(j)]TJ 0 -13.55 Td[(to)-277(dzies)-1(i)1(\\241tk)28(\\246)-278(ab)-27(o)-277(i)-277(to)-277(dob)1(re)-277(s)-1(\\252o)28(w)27(o.)1(..)-277(A)-277(dzisia)-56(j)-276(Je)-1(zu)-277(m\\363)-56(j)-276(k)28(o)-28(c)27(h)1(an)28(y!)-277(Ca\\252\\241)-277(z\\252)-1(ot)1(\\363)27(wk)28(\\246,)]TJ 0 -13.549 Td[(i)-354(na)-355(p)-27(ok)28(o)-56(j)1(e)-355(go)-355(w)28(o\\252)-1(a\\252,)-354(i)-355(t)28(yl)1(a)-355(dob)1(ro\\261c)-1(i)-354(m)27(u)-354(p)-27(o)27(wiedzia\\252...)-354(Jez)-1(u)1(s)-1(!)-354(A\\273)-1(e)-355(za)-355(grd)1(yk)28(\\246)-355(go)]TJ\nET\nendstream\nendobj\n163 0 obj <<\n/Type /Page\n/Contents 164 0 R\n/Resources 162 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n162 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n167 0 obj <<\n/Length 10089     \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(47)]TJ -363.686 -35.866 Td[(co\\261)-276(u\\252ap)1(i\\252o)-276(i)-275(\\252zy)-275(s)-1(ame)-276(lec)-1(i)1(a\\252)-1(y)-275(m)28(u)-275(z)-276(o)-28(cz\\363)27(w,)-275(a)-275(w)-276(se)-1(r)1(c)-1(u)-275(p)-27(o)-28(cz)-1(u)1(\\252)-276(tak)56(\\241)-275(gor\\241co\\261)-1(\\242,)-275(jakb)29(y)]TJ 0 -13.549 Td[(m)27(u)-332(kto)-333(z)-1(arze)-1(wia)-333(n)1(as)-1(u)1(\\252)-334(za)-334(p)1(az)-1(u)1(c)27(h)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-455(Ino)-455(j)1(e)-1(d)1(e)-1(n)-454(ksi\\241dz)-455(usz)-1(an)29(uj)1(e)-456(cz)-1(\\252o)28(wie)-1(k)56(a,)-455(i)1(no)-455(on)-454(jeden'..)1(.Niec)27(h)-455(ci)-455(B\\363g)-455(da)]TJ -27.879 -13.549 Td[(zdro)28(wie)-400(i)-399(ta)-400(P)28(an)1(ie)-1(n)1(k)56(a)-400(Cz)-1(\\246sto)-28(c)27(h)1(o)27(wsk)55(a.)1(..Dob)1(ry)-399(z)-400(c)-1(iebi)1(e)-401(p)1(an,)-399(dob)1(ry!)1(...)-399(B)-1(o)-28(\\242)-400(ca\\252a)]TJ 0 -13.549 Td[(wie\\261)-1(:)-352(i)-352(par)1(obki)1(,)-352(i)-353(gosp)-27(o)-28(dar)1(z)-1(e,)-352(i)-352(w)-1(szys)-1(tk)1(ie)-1(,)-352(to)-352(in)1(o)-352(go)-353(k)1(ulase)-1(m)-352(przez)-1(yw)28(ali,)-352(a)-352(ni)1(e)-1(-)]TJ 0 -13.55 Td[(zgu\\252\\241,)-269(a)-269(dar)1(m)-1(ozjad)1(e)-1(m,)-269(a)-269(nik)1(to)-269(dob)1(re)-1(go)-269(s\\252o)28(w)27(a)-269(ni)1(gdy)-269(n)1(ie)-270(d)1(a\\252,)-269(nikt)1(o)-270(n)1(ie)-269(p)-28(o\\273a\\252o)27(w)28(a\\252)]TJ 0 -13.549 Td[({)-417(c)28(h)28(yb)1(a)-417(in)1(o)-417(te)-417(k)28(on)1(is)-1(k)56(a)-416(ab)-28(o)-416(i)-417(te)-417(p)1(ie)-1(ski.)1(..)-416(a)-417(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-417(ro)-27(do)28(wy)-417(b)28(y)1(\\252...)-416(gos)-1(p)-27(o)-28(d)1(ars)-1(k)1(i)]TJ 0 -13.549 Td[(syn..)1(.)-333(nie)-334(zna)-55(jd)1(a)-334(\\273aden.)1(..)-333(nie)-333(obie\\273)-1(y)1(\\261)-1(wiat,)-333(a)-333(c)27(hr)1(z)-1(e\\261)-1(cij)1(an)-333(pr)1(a)27(wy)84(,)-333(k)55(atol)1(ik...)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(nosi\\252)-364(g\\252o)28(w)27(\\246)-364(c)-1(or)1(az)-365(wy\\273e)-1(j)-363(i)-364(c)-1(or)1(az)-365(h)1(ardziej,)-364(p)1(rosto)27(w)28(a\\252)-364(s)-1(i)1(\\246)-1(,)-364(j)1(ak)-364(m\\363g\\252,)-364(i)-364(z)]TJ -27.879 -13.549 Td[(g\\363ry)84(,)-412(wyzyw)28(a)-56(j\\241co)-412(p)1(ra)28(w)-1(i)1(e)-413(p)1(atrzy\\252)-412(na)-411(\\261)-1(wiat,)-411(na)-412(lu)1(dzi)-412(w)28(c)27(h)1(o)-28(dz\\241c)-1(y)1(c)27(h)-412(n)1(a)-412(sm)-1(\\246tarz)]TJ 0 -13.549 Td[(i)-370(na)-370(te)-370(k)28(onie,)-370(c)-1(o)-370(sta\\252y)-370(p)-28(o)-27(d)-370(m)27(u)1(rem)-371(pr)1(z)-1(y)-370(w)28(oz)-1(ac)28(h;)-370(n)1(adzia\\252)-371(czap)-28(\\246)-370(na)-370(s)-1(k)28(o\\252tu)1(nion)1(\\241)]TJ 0 -13.55 Td[(g\\252o)28(w)27(\\246)-343(i)-342(w)27(ol)1(no,)-342(go)-28(d)1(nie)-343(r)1(usz)-1(y\\252)-342(do)-342(k)28(o\\261)-1(cio\\252a,)-342(jak)-342(gos)-1(p)-27(o)-28(d)1(arz)-343(jak)1(i,)-343(zat)28(yk)56(a)-56(j)1(\\241c)-343(r\\246c)-1(e)-343(za)]TJ 0 -13.549 Td[(pas)-333(i)-333(tak)-333(z)-1(amiata)-56(j)1(\\241c)-334(kr)1(z)-1(yw)28(\\241)-333(nog\\241,)-333(\\273e)-334(kur)1(z)-1(a)28(w)28(a)-334(za)-334(n)1(im)-334(wsta)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Nie,)-278(n)1(ie)-278(os)-1(ta\\252)-277(dzis)-1(i)1(a)-56(j)-277(w)-278(kru)1(c)27(h)1(c)-1(ie)-278(j)1(ak)-278(za)28(w)-1(d)1(y)83(,)-277(jak)-277(pr)1(z)-1(ysta\\252o)-278(la)-277(niego,)-278(j)1(e)-1(n)1(o)-278(si\\246)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(n)1(o)-314(j)1(\\241\\252)-314(pr)1(z)-1(ep)28(yc)28(ha\\242)-314(pr)1(z)-1(ez)-314(c)-1(i)1(\\273)-1(b)-27(\\246)-314(i)-314(p)1(ar\\252)-314(p)1(rosto)-314(a\\273)-314(pr)1(z)-1(ed)-313(w)-1(i)1(e)-1(lk)1(i)-314(o\\252tar)1(z)-314({)-314(a\\273)-314(tam,)]TJ 0 -13.549 Td[(gdzie)-432(sta)27(w)28(a\\252y)-432(same)-433(gosp)-27(o)-28(dar)1(z)-1(e,)-432(gd)1(z)-1(ie)-432(sto)-56(j)1(a\\252)-432(Boryn)1(a)-432(i)-432(w)28(\\363)-56(j)1(t)-432(sam)-1(;)-431(k)56(a)-56(j)-431(s)-1(ta)28(w)28(a\\252y)]TJ 0 -13.55 Td[(te,)-405(co)-405(nosi\\252y)-405(b)1(aldac)28(h)-405(n)1(ad)-405(d)1(obro)-27(dzie)-1(j)1(e)-1(m,)-405(ab)-27(o)-405(i)-404(te)-1(,)-404(c)-1(o)-405(ze)-405(\\261)-1(wiec)-1(ami)-405(k)1(ie)-1(j)-404(k\\252on)1(ic)-1(e)]TJ 0 -13.549 Td[(trzymali)-333(s)-1(t)1(ra\\273)-334(p)1(rz)-1(y)-333(o\\252tar)1(z)-1(u)-333(w)-333(c)-1(zas)-334(P)28(o)-27(dni)1(e)-1(sie)-1(n)1(ia.)]TJ 27.879 -13.549 Td[(P)28(atr)1(z)-1(yl)1(i)-248(na)-248(niego)-248(z)-1(e)-249(zdu)1(mie)-1(n)1(ie)-1(m)-248(i)-248(z)-1(gr)1(oz)-1(\\241,)-248(a)-248(z)-249(cz)-1(\\246s)-1(to)-248(g\\246s)-1(to)-248(us\\252ysz)-1(a\\252)-248(pr)1(z)-1(yk)1(re)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(o)-373(i)-373(o)-28(debr)1(a\\252)-374(taki)1(e)-374(sp)-28(o)-55(jrzenie,)-373(jak)28(o)-373(ten)-373(pi)1(e)-1(s,)-373(kt\\363ren)-373(si\\246)-374(tam)-373(c)-1(i)1(\\261)-1(n)1(ie)-1(,)-373(gd)1(z)-1(ie)-373(go)]TJ 0 -13.549 Td[(ni)1(e)-282(w)28(o\\252a)-56(j\\241.)-280(Ale)-282(Ku)1(ba)-281(n)1(ic)-282(sobi)1(e)-282(z)-281(te)-1(go)-281(d)1(z)-1(isia)-55(j)-281(ni)1(e)-282(rob)1(i\\252;)-281(\\261c)-1(isk)56(a\\252)-282(w)-281(gar)1(\\261)-1(ci)-281(pieni)1(\\241dz,)]TJ 0 -13.55 Td[(a)-314(dusz\\246)-315(m)-1(i)1(a\\252)-315(p)-27(e)-1(\\252n)1(\\241)-315(s\\252o)-28(dk)28(o\\261c)-1(i)-314(i)-314(dob)1(ro)-28(ci,)-314(jak)28(ob)29(y)-315(p)-27(o)-314(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-314(si\\246)-315(c)-1(zu\\252)-314(ab)-27(o)-315(zas)-1(ie)-314(i)]TJ 0 -13.549 Td[(lepiej.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246\\252)-1(o)-333(si\\246)-334(n)1(ab)-28(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o.)]TJ 0 -13.549 Td[(Ukl\\246kn)1(\\241\\252)-284(p)1(rzy)-283(s)-1(ame)-1(j)-282(kracie)-284(i)-283(\\261piew)27(a\\252)-283(z)-284(i)1(nn)28(ymi,)-283(zapatr)1(z)-1(on)29(y)-283(p)-28(ob)-27(o\\273)-1(n)1(ie)-284(w)-283(o\\252-)]TJ -27.879 -13.549 Td[(tarz,)-254(gdzie)-255(u)-254(g\\363ry)-254(b)28(y\\252)-254(B)-1(\\363g)-254(Ocie)-1(c,)-254(s)-1(i)1(w)-1(y)-254(P)28(an)-254(i)-254(s)-1(r)1(ogi,)-254(ryc)28(h)28(t)28(yk)-254(p)-28(o)-27(dobn)29(y)-255(d)1(o)-255(d)1(z)-1(iedzica)]TJ 0 -13.55 Td[(z)-335(Dr)1(z)-1(azgo)27(w)28(ej)-334(W)83(oli)1(,)-334(a)-335(w)-334(p)-28(o\\261ro)-28(d)1(ku)-334(sam)-1(a)-334(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wsk)55(a)-334(w)-335(z\\252o)-28(cis)-1(t)28(y)1(m)-335(obl)1(e)-1(cz)-1(eniu)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252a)-262(n)1(a)-262(n)1(iego...)-261(a)-261(ws)-1(z\\246)-1(d)1(y)-261(l\\261)-1(n)1(i\\252a)-261(s)-1(i\\246)-261(p)-28(oz\\252ota,)-261(jar)1(z)-1(y\\252y)-261(si\\246)-262(\\261wiec)-1(e)-262(i)-261(sta\\252y)-261(bu)1(kiet)28(y)]TJ 0 -13.549 Td[(pap)1(iero)28(wyc)27(h)-371(cze)-1(rw)28(on)28(yc)28(h)-371(kwiat)1(\\363)27(w..)1(.)-371(a)-371(z)-1(e)-371(\\261)-1(cian)-370(i)-371(z)-372(oki)1(e)-1(n)-370(k)28(oloro)28(wyc)27(h)-370(wyc)27(h)28(y)1(la\\252y)]TJ 0 -13.549 Td[(si\\246)-417(z\\252ote)-416(obr\\246c)-1(ze)-416(i)-416(\\261w)-1(i)1(\\246)-1(te,)-416(suro)28(w)28(e)-417(t)28(w)28(arze)-1(,)-415(i)-416(sm)27(ugi)-415(z)-1(\\252ota,)-415(pur)1(pu)1(ry)84(,)-416(\\014ol)1(e)-1(tu)-415(nib)29(y)]TJ 0 -13.549 Td[(t\\246c)-1(za)-381(p)1(ada\\252y)-380(na)-380(jego)-381(t)28(w)28(arz)-381(i)-380(g\\252o)27(w)28(\\246,)-381(ca\\252kiem)-381(jak)1(b)28(y)-380(s)-1(i\\246)-381(u)1(n)28(ur)1(z)-1(a\\252)-380(w)-381(sta)27(wie)-380(prze)-1(d)]TJ 0 -13.55 Td[(zac)27(ho)-27(dem)-1(,)-316(ki)1(e)-1(d)1(y)-316(.s)-1(\\252o\\253)1(c)-1(e)-316(bij)1(e)-317(w)-316(w)27(o)-28(d)1(\\246)-1(.)-316(I)-316(p)-27(o)-28(cz)-1(u)1(\\252)-317(si\\246)-317(j)1(ak)28(ob)28(y)-316(w)-316(niebie)-316(w)-317(t)28(yc)28(h)-316(\\261licz)-1(-)]TJ 0 -13.549 Td[(no\\261ciac)27(h)1(,)-404(\\273e)-404(ru)1(c)27(ha\\242)-403(s)-1(i\\246)-404(n)1(ie)-404(\\261m)-1(i)1(a\\252,)-404(i)1(no)-403(kl\\246c)-1(za\\252)-404(wpatr)1(z)-1(on)28(y)-403(w)-403(c)-1(zarni)1(a)27(w)28(\\241,)-403(s)-1(\\252o)-28(d)1(k)56(\\241,)]TJ 0 -13.549 Td[(matc)-1(zyn)1(\\241)-327(t)27(w)28(arz)-327(.Cz)-1(\\246sto)-28(c)27(h)1(o)27(wskiej,)-327(i)1(no)-327(m\\363)28(w)-1(i)1(\\252)-328(p)1(ac)-1(i)1(e)-1(r)1(z)-328(za)-327(pacierz)-1(em)-327(s)-1(p)1(ie)-1(czon)28(ymi)]TJ 0 -13.549 Td[(w)28(argami,)-444(a)-444(p)-27(ote)-1(m)-444(in)1(o)-444(\\261piew)27(a\\252)-444(tak)-443(\\273)-1(ar)1(liwie,)-444(tak)-444(ze)-445(wsz)-1(y)1(s)-1(tki)1(c)27(h)-443(s)-1(i\\252)-444(d)1(usz)-1(y)-443(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(rz\\241c)-1(ej,)-331(t)1(ak)-331(s)-1(erc)-1(em)-332(p)-27(e\\252n)28(ym)-332(ekstaz)-1(y)84(,)-331(\\273e)-332(jego)-331(z)-1(asc)27(h\\252y)84(,)-331(s)-1(k)1(rzypi\\241cy)-331(g\\252os)-332(r)1(oz)-1(lega\\252)-331(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-55(jd)1(ono\\261niej.)]TJ 27.879 -13.55 Td[({)-333(B)-1(ec)-1(zycie,)-334(K)1(uba,)-333(k)1(ie)-1(j)-333(t)1(a)-334(k)28(oza)-334(\\273yd)1(o)27(wsk)56(a!)-334({)-333(sz)-1(epn)1(\\241\\252)-334(m)28(u)-333(kto\\261)-334(z)-334(b)-27(oku)1(.)]TJ 0 -13.549 Td[({)-324(La)-324(P)28(ana)-324(Jez)-1(u)1(s)-1(a)-324(i)-324(tej)-324(P)28(ani)1(e)-1(n)1(ki..)1(.)-324({)-325(mru)1(kn\\241\\252,)-324(p)1(rze)-1(ry)1(w)27(a)-55(j\\241c,)-324(b)-28(o)-324(si\\246)-325(k)28(o\\261c)-1(i)1(\\363\\252)]TJ -27.879 -13.549 Td[(ucisz)-1(y)1(\\252)-1(.)-359(Ksi\\241dz)-360(ws)-1(ze)-1(d)1(\\252)-360(na)-360(am)28(b)-28(on)1(\\246)-1(,)-359(i)-360(ws)-1(zysc)-1(y)-359(z)-1(ad)1(arli)-359(g\\252)-1(o)28(wy)-360(i)-359(w)-1(p)1(atryw)28(ali)-359(s)-1(i\\246)-360(w)]TJ 0 -13.549 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a,)-268(k)1(t\\363ren)-267(w)-268(b)1(ia\\252e)-1(j)-267(k)28(om\\273y)-267(p)-28(o)-28(c)28(h)28(yli)1(\\252)-268(si\\246)-268(n)1(ad)-267(naro)-27(dem)-268(i)-267(c)-1(zyta\\252)-267(Ew)28(angeli\\246)]TJ 0 -13.549 Td[({)-290(a)-289(\\261)-1(wiat\\252a)-290(i)-289(far)1(b)28(y)-290(b)1(i\\252y)-289(na)-290(n)1(ie)-1(go)-289(z)-290(okien,)-289(\\273)-1(e)-290(widzia\\252)-290(si\\246)-290(ws)-1(zystkim)-290(j)1(ak)28(o)-290(ten)-290(an)1(io\\252)]TJ 0 -13.55 Td[(p\\252y)1(n\\241cy)-457(na)-457(t)1(\\246)-1(cz)-1(y)84(...)-456(Ks)-1(i)1(\\241dz)-457(m)-1(\\363)28(wi\\252)-457(d)1(\\252)-1(u)1(go)-457(i)-457(tak)-456(m)-1(o)-27(c)-1(n)1(o,)-457(\\273e)-458(j)1(aki)-457(tak)1(i)-457(w)28(e)-1(stc)27(h)1(n\\241\\252)]TJ 0 -13.549 Td[(skru)1(s)-1(zon)28(ym)-232(se)-1(r)1(c)-1(em)-1(,)-231(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-231(\\252z)-1(y)-231(p)-27(o)-28(c)-1(i)1(e)-1(k\\252y)84(,)-231(a)-232(kt\\363r)1(e)-1(n)-231(zn\\363)28(w)-232(zas)-1(ie)-232(spu)1(s)-1(zc)-1(za\\252)-232(o)-27(c)-1(zy)]TJ\nET\nendstream\nendobj\n166 0 obj <<\n/Type /Page\n/Contents 167 0 R\n/Resources 165 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n165 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n170 0 obj <<\n/Length 10348     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(48)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(i)-329(k)56(a)-56(ja\\252)-329(si\\246)-330(w)-330(sumieniu)-329({)-329(i)-329(obiec)-1(y)1(w)27(a\\252)-329(p)-28(op)1(ra)28(w)27(\\246...)-329(A)-329(Ku)1(ba)-329(patrzy\\252)-329(w)-330(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a,)]TJ 0 -13.549 Td[(jak)-391(w)-391(obr)1(az)-392(\\261w)-1(i)1(\\246)-1(t)28(y)84(,)-392(i)-391(a\\273)-391(m)27(u)-391(d)1(z)-1(i)1(w)-1(n)1(o)-391(b)28(y\\252o,)-391(\\273)-1(e)-391(to)-392(t)1(e)-1(n)-391(sam)-392(d)1(obry)-391(p)1(an,)-391(co)-391(m)-1(\\363)28(wi\\252)]TJ 0 -13.549 Td[(do)-327(niego)-328(i)-327(da\\252)-328(m)28(u)-327(z)-1(\\252ot\\363)28(wk)28(\\246)-328(b)-28(o)-328(t)1(e)-1(raz)-328(wygl\\241d)1(a\\252)-328(j)1(ak)-328(arc)28(han)1(io\\252)-328(na)-327(ognist)28(ym)-328(w)28(oz)-1(ie)]TJ 0 -13.549 Td[(br)1(z)-1(ask)28(\\363)28(w)-1(,)-259(t)28(w)27(ar)1(z)-260(m)27(u)-259(p)-27(oblad)1(\\252a,)-260(o)-28(czy)-260(cis)-1(k)56(a\\252y)-259(b\\252ysk)56(a)27(wice)-1(,)-259(gdy)-259(zac)-1(z\\241\\252)-260(p)-27(o)-28(dn)1(os)-1(i)1(\\242)-261(g\\252os)]TJ 0 -13.549 Td[(i)-318(wyp)-27(omina\\242)-318(n)1(aro)-28(do)28(wi)-318(gr)1(z)-1(ec)27(h)28(y)-317(ws)-1(ze)-1(lk)1(ie)-1(,)-317(a)-318(sk)55(\\241)-28(p)1(s)-1(t)28(w)28(o,)-318(a)-318(p)1(ij)1(a\\253st)27(w)28(o,)-318(a)-317(roz)-1(p)1(ust\\246)-1(,)-317(a)]TJ 0 -13.55 Td[(cz)-1(yn)1(ienie)-374(sz)-1(k)28(\\363)-27(d,)-373(niesz)-1(an)1(o)27(w)28(anie)-373(s)-1(tar)1(s)-1(zyc)27(h)1(,)-374(b)-27(ez)-1(b)-27(o\\273)-1(n)1(o\\261)-1(\\242!)-373(I)-374(w)28(o\\252)-1(a\\252)-373(wie)-1(l)1(kim)-374(g\\252ose)-1(m)]TJ 0 -13.549 Td[(o)-433(up)1(am)-1(i)1(\\246)-1(tan)1(ie)-434(si\\246)-1(,)-433(b)1(\\252aga\\252,)-433(z)-1(akl)1(ina\\252,)-433(pr)1(os)-1(i)1(\\252)-434({)-433(a\\273)-434(Ku)1(ba)-433(n)1(ie)-434(wytrzyma\\252)-433(i)-434(j)1(\\241\\252)-433(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\241\\261\\242)-398(w)-397(sobi)1(e)-398(z)-397(win)29(y)-397(t)28(yc)27(h)-396(ws)-1(zystkic)28(h)-397(gr)1(z)-1(ec)27(h)1(\\363)27(w,)-396(z)-398(\\273al\\363)28(w,)-397(ze)-397(s)-1(kr)1(uc)28(h)28(y)-397(i)-396(ryk)1(n\\241\\252)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)29(ym)-450(p\\252acz)-1(em)-1(,)-449(a)-450(z)-1(a)-450(n)1(im)-450(nar\\363)-27(d)-450(ca\\252y:)-450(k)28(ob)1(ie)-1(t)28(y)84(,)-450(gosp)-28(o)-27(darze)-450(na)28(w)27(et,)-450(\\273e)-451(p)1(\\252ac)-1(z)]TJ 0 -13.549 Td[(si\\246)-483(ucz)-1(yn)1(i\\252)-483(w)-483(k)28(o\\261c)-1(i)1(e)-1(le,)-483(c)28(hli)1(pani)1(e)-1(,)-482(w)-1(y)1(c)-1(ieran)1(ie)-483(nos\\363)28(w)-1(,)-482(a)-483(gdy)-482(ksi\\241dz)-483(z)-483(p)-27(okutn)1(\\241)]TJ 0 -13.549 Td[(mo)-28(dl)1(it)28(w)27(\\241)-257(z)-1(wr\\363)-28(ci\\252)-258(si\\246)-258(do)-257(o\\252tarza)-258(i)-257(pad\\252)-257(na)-258(k)28(ol)1(ana)-258({)-257(j\\246k)-258(p)1(rze)-1(lec)-1(i)1(a\\252)-258(k)28(o\\261)-1(ci\\363\\252,)-257(i)-258(n)1(ar\\363)-28(d)1(,)]TJ 0 -13.55 Td[(jak)-240(las)-241(przygi\\246t)28(y)-241(wic)27(h)29(ur\\241,)-240(run)1(\\241\\252)-241(t)28(w)27(arzami)-241(na)-241(p)-27(o)-28(d)1(\\252og\\246)-1(,)-241(a\\273)-241(ku)1(rz)-241(s)-1(i\\246)-241(p)-27(o)-28(dn)1(i\\363s\\252)-242(i)-240(nib)29(y)]TJ 0 -13.549 Td[(ob\\252ok)1(ie)-1(m)-294(os)-1(\\252on)1(i\\252)-295(te)-294(s)-1(erca)-295(skru)1(s)-1(zone)-294(i)-295(\\252zami,)-294(w)27(es)-1(tc)28(hn)1(ie)-1(n)1(iami,)-294(krzyki)1(e)-1(m)-295(w)28(o\\252a)-56(j)1(\\241c)-1(e)]TJ 0 -13.549 Td[(do)-333(P)28(an)1(a)-334(o)-333(zm)-1(i)1(\\252)-1(o)28(w)28(anie.)]TJ 27.879 -13.549 Td[(A)-466(p)-28(otem)-467(cic)27(h)1(o\\261)-1(\\242)-467(zapad\\252a,)-466(cic)27(h)1(o\\261)-1(\\242)-467(rozmo)-28(dleni)1(a)-467(i)-466(s)-1(erd)1(e)-1(cz)-1(n)1(e)-1(j)-466(r)1(o)-1(zmo)27(wy)-466(z)]TJ -27.879 -13.549 Td[(P)28(an)1(e)-1(m,)-226(b)-27(o)-226(z)-1(acz\\246)-1(\\252a)-226(si\\246)-227(suma)-226({)-226(or)1(gan)28(y)-226(h)28(u)1(c)-1(za\\252y)-226(zg\\252us)-1(zon)28(ym,)-226(p)-27(ok)28(orn)29(ym)-226(a)-226(g\\252\\246)-1(b)-27(okim)]TJ 0 -13.55 Td[(g\\252os)-1(em)-334(a\\273)-333(dusza)-334(Ku)1(b)28(y)-333(z)-1(amiera\\252a)-333(z)-334(lu)1(b)-28(o\\261c)-1(i)-333(i)-333(sz)-1(cz)-1(\\246\\261)-1(cia)-333(ni)1(e)-1(op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(go.)1(..)]TJ 27.879 -13.549 Td[(A)-305(p)-27(otem)-306(g\\252os)-305(ksi\\246)-1(d)1(z)-1(a)-304(p)-28(o)-27(dnosi\\252)-305(si\\246)-305(z)-306(n)1(ag\\252a)-305(o)-28(d)-304(o\\252tarza)-305(i)-305(p)1(\\252)-1(y)1(n\\241\\252)-305(n)1(ad)-305(p)-27(o)-28(c)27(h)29(y-)]TJ -27.879 -13.549 Td[(lon)28(y)1(m)-1(i)-402(g\\252o)28(w)28(am)-1(i)-401(s)-1(tr)1(ug\\241)-402(br)1(z)-1(mie\\253)-402(pr)1(z)-1(eni)1(k)55(a)-55(j\\241cyc)27(h)-401(i)-402(\\261)-1(wi\\246t)28(yc)27(h)1(;)-402(to)-402(d)1(z)-1(w)28(onki)-402(k)1(r\\363tk)56(\\241)]TJ 0 -13.549 Td[(salw)27(\\241)-373(d)1(\\271)-1(wi\\246c)-1(za\\252y)83(,)-372(to)-373(dy)1(m)27(y)-373(k)56(adzid)1(e)-1(\\252)-373(b)1(i\\252y)-373(pac)28(hn)1(\\241c)-1(ymi)-373(s\\252up)1(am)-1(i)-373(i)-372(nib)29(y)-373(ob\\252oki)1(e)-1(m)]TJ 0 -13.549 Td[(p)-27(okryw)28(a\\252y)-409(kl\\246c)-1(z\\241c)-1(y)1(c)27(h)-409(i)-409(rozm)-1(o)-27(dlon)29(yc)27(h)-409({)-409(a)-410(K)1(ub)-27(\\246)-410(nap)-27(e\\252nia\\252y)-409(tak)56(\\241)-410(r)1(oz)-1(k)28(osz)-1(\\241,)-409(a\\273)]TJ 0 -13.55 Td[(wz)-1(d)1(yc)27(h)1(a\\252)-343(ino,)-343(r)1(oz)-1(k\\252ad)1(a\\252)-343(r\\246)-1(ce,)-343(bi\\252)-343(si\\246)-344(w)-343(p)1(ie)-1(r)1(s)-1(i)-343(i)-343(zamie)-1(r)1(a\\252)-343(z)-344(tej)-343(s\\252)-1(o)-27(dki)1(e)-1(j)-343(n)1(iem)-1(o)-27(c)-1(y)84(,)]TJ 0 -13.549 Td[(a)-287(s)-1(zme)-1(r)1(y)-287(m)-1(o)-27(dlit)28(w,)-287(w)28(e)-1(stc)27(h)1(nieni)1(a,)-287(nag\\252e)-288(wyk)1(rz)-1(y)1(ki)-287(i)-287(j)1(\\246)-1(ki)-287(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-1(,)-287(gor)1(\\241c)-1(e)-287(o)-28(d-)]TJ 0 -13.549 Td[(dec)27(h)29(y)83(,)-300(\\261)-1(wiat)1(\\252)-1(a,)-300(d)1(ym)27(y)84(,)-300(g\\252os)-301(organ\\363)28(w)-300(z)-1(atap)1(ia\\252y)-300(go)-301(j)1(ak)28(ob)28(y)-300(w)-301(\\261w)-1(i)1(\\246)-1(t)28(ym)-301(\\261ni)1(e)-1(,)-300(jak)28(ob)29(y)]TJ 0 -13.549 Td[(w)-334(zapami\\246tani)1(u.)]TJ 27.879 -13.549 Td[({)-263(Jez)-1(u)1(s)-1(!)-262(Jez)-1(u)1(s)-264(m\\363)-56(j)-262(k)28(o)-28(c)28(han)28(y!)-262({)-263(sz)-1(epta\\252)-263(ol)1(\\261)-1(n)1(ion)28(y)-263(i)-262(ni)1(e)-1(p)1(rz)-1(y)1(tom)-1(n)29(y)83(,)-262(a)-263(z)-1(\\252ot\\363)28(wk)28(\\246)]TJ -27.879 -13.55 Td[(mo)-28(c)-1(n)1(o)-406(dzie)-1(r)1(\\273)-1(y\\252)-406(w)-406(gar\\261)-1(ci,)-406(b)-27(o)-407(gd)1(y)-406(p)-28(o)-406(P)28(o)-27(dn)1(ie)-1(sieniu)-406(J)1(am)27(br)1(o\\273)-1(y)-406(zac)-1(z\\241\\252)-407(ob)-27(c)27(h)1(o)-28(d)1(z)-1(i\\242)]TJ 0 -13.549 Td[(z)-400(tac)27(k)56(\\241)-400(i)-399(p)-27(obrz\\246)-1(k)1(iw)27(a\\242,)-399(b)28(y)-400(s\\252ys)-1(zeli,)-399(\\273)-1(e)-400(zbiera)-400(n)1(a)-400(\\261w)-1(i)1(at\\252o,)-400(Ku)1(ba)-399(p)-28(o)28(ws)-1(ta\\252,)-399(rzuci\\252)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(o)-394(pieni)1(\\241dz)-394(i)-394(d\\252ugo,)-393(jak)28(o)-394(\\273)-1(e)-394(tak)-394(cz)-1(yn)1(ili)-394(gosp)-27(o)-28(dar)1(z)-1(e,)-394(wybiera\\252)-394(sobie)-394(res)-1(zt)28(y)]TJ 0 -13.549 Td[(dw)28(adzie\\261)-1(cia)-333(i)-333(s)-1(ze)-1(\\261\\242)-334(grosz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-334({)-333(us\\252ys)-1(za\\252)-334(z)-333(lub)-27(o\\261c)-1(i\\241.)]TJ 0 -13.55 Td[(I)-333(kiedy)-332(roznosili)-333(\\261wie)-1(ce)-1(,)-332(b)-28(o)-333(n)1(ab)-28(o\\273e\\253st)27(w)28(o)-333(b)28(y\\252o)-333(z)-333(wysta)27(wieni)1(e)-1(m)-333(i)-333(p)1(ro)-28(ce)-1(sj\\241,)]TJ -27.879 -13.549 Td[(Ku)1(ba)-449(w)-1(y)1(c)-1(i\\241)-27(gn\\241\\252)-450(\\261mia\\252o)-450(r)1(\\246)-1(k)28(\\246,)-449(i)-450(c)28(ho)-28(cia\\273)-450(okr)1(utn)1(ie)-450(c)27(h)1(c)-1(i)1(a\\252)-1(o)-449(m)27(u)-449(si\\246)-450(wzi\\241\\242)-450(c)-1(a\\252\\241)-449({)]TJ 0 -13.549 Td[(wz)-1(i)1(on)-291(jedn)1(ak)28(o)-292(n)1(a)-56(j)1(m)-1(n)1(ie)-1(j)1(s)-1(z\\241,)-291(ogarek)-291(pr)1(a)27(wie,)-291(b)-28(o)-291(sp)-28(otk)56(a\\252)-291(s)-1(i)1(\\246)-292(z)-292(suro)28(wym,)-291(k)56(arc)-1(\\241cym)]TJ 0 -13.549 Td[(wz)-1(r)1(okiem)-346(Domin)1(ik)28(o)28(w)27(ej,)-345(co)-345(sta\\252a)-345(w)-346(p)-27(o)-28(d)1(le)-346(n)1(iego)-345(z)-346(Jagu)1(s)-1(i\\241)-345({)-345(zapal)1(i\\252)-345(j\\241)-345(wnet,)-345(b)-27(o)]TJ 0 -13.549 Td[(ju)1(\\273)-301(i)-300(k)1(s)-1(i\\241d)1(z)-301(u)1(j\\241\\252)-300(monstrancj\\246,)-300(ob)1(r\\363)-28(ci\\252)-300(s)-1(i\\246)-300(z)-301(n)1(i\\241)-300(do)-300(lu)1(du)1(,)-300(\\273)-1(e)-300(pad)1(li)-300(na)-300(t)28(w)28(arz.)-300(Zain-)]TJ 0 -13.549 Td[(ton)1(o)27(w)28(a\\252)-345(pie\\261)-1(\\253)-344(i)-345(sc)27(ho)-27(dzi\\252)-345(w)27(oln)1(o)-345(p)-28(o)-345(stopn)1(iac)27(h)-344(o\\252tarza)-345(w)-346(u)1(lic\\246)-346(z)-345(nag\\252a)-345(uczynion)1(\\241)]TJ 0 -13.55 Td[(z)-296(g\\252)-1(\\363)28(w)-296(roz\\261)-1(p)1(iew)27(an)28(y)1(c)27(h,)-295(\\261)-1(wiate\\252)-296(p\\252on\\241cyc)27(h)1(,)-296(b)1(arw)-296(os)-1(tr)1(yc)27(h)-295(i)-296(g\\252os)-1(\\363)28(w)-296(j\\246kliwyc)28(h;)-296(p)1(ro-)]TJ 0 -13.549 Td[(ce)-1(sja)-410(ru)1(s)-1(zy\\252a,)-410(organ)28(y)-410(h)28(u)1(kn\\246\\252y)-410(p)-27(ot\\246)-1(\\273nie,)-410(dzw)27(on)1(ki)-410(p)-27(o)-28(c)-1(z\\246\\252)-1(y)-410(r)1(ytmic)-1(zni)1(e)-411(dzw)27(on)1(i\\242,)]TJ 0 -13.549 Td[(lu)1(d)-265(p)-28(o)-27(c)27(h)28(wyci\\252)-265(w)-1(t\\363r)-265(i)-265(\\261pi)1(e)-1(w)28(a\\252)-266(j)1(e)-1(d)1(n)28(ym)-266(ogr)1(om)-1(n)29(ym)-266(g\\252ose)-1(m)-265(w)-1(i)1(ary;)-265(a)-265(przo)-28(d)1(e)-1(m)-265(c)-1(i\\273b)28(y)84(,)]TJ 0 -13.549 Td[(w)-386(s)-1(k)1(r\\246)-1(t)1(ac)27(h)-386(r)1(oz)-1(c)28(h)28(wian)28(yc)27(h)-385(\\261)-1(wiat)1(e)-1(\\252,)-386(migota\\252)-386(srebrn)29(y)-386(krzy\\273,)-386(k)28(o\\252ys)-1(a\\252y)-385(s)-1(i\\246)-386(ni)1(e)-1(sione)]TJ 0 -13.549 Td[(feretron)29(y)83(,)-341(ca)-1(\\252e)-341(w)-342(tiu)1(lac)27(h)-341(a)-341(kwiatac)28(h)-341(i)-341(k)28(oronac)28(h)-341(s)-1(zyc)27(h)1(o)28(w)-1(y)1(c)27(h,)-341(a)-341(ju)1(\\273)-342(w)28(e)-342(dr)1(z)-1(wiac)27(h)]TJ 0 -13.55 Td[(wielkic)28(h,)-456(k)1(t\\363rymi)-456(p)1(rze)-1(z)-456(ob\\252ok)1(i)-456(dy)1(m)-1(\\363)28(w)-456(k)56(adzieln)28(yc)28(h)-456(b)1(uc)27(h)1(a\\252o)-456(s\\252)-1(o\\253)1(c)-1(e,)-456(r)1(oz)-1(wij)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-403(na)-402(wie)-1(t)1(rz)-1(e)-402(p)-28(o)-28(c)28(h)28(ylon)1(e)-403(c)27(h)1(or\\241)-28(gwie)-403(i)-402(n)1(ib)28(y)-402(ptak)1(i)-403(p)1(ur)1(pur)1(o)28(w)27(e)-403(i)-402(zie)-1(l)1(one)-403(\\252op)-27(ota\\252y)]TJ\nET\nendstream\nendobj\n169 0 obj <<\n/Type /Page\n/Contents 170 0 R\n/Resources 168 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 155 0 R\n>> endobj\n168 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n173 0 obj <<\n/Length 9662      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(49)]TJ -363.686 -35.866 Td[(skrzyd\\252ami.)]TJ 27.879 -13.549 Td[(Pr)1(o)-28(ce)-1(sja)-333(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-333(k)28(o\\261c)-1(i\\363\\252.)]TJ 0 -13.549 Td[(Ku)1(ba)-378(os\\252ania\\252)-378(d)1(\\252)-1(on)1(i\\241)-378(\\261wie)-1(c\\246)-379(i)-377(trzyma\\252)-378(s)-1(i\\246)-378(up)1(arcie)-378(tu\\273)-378(przy)-378(k)1(s)-1(i\\246dzu,)-377(nad)]TJ -27.879 -13.549 Td[(kt\\363r)1(ym)-276(Boryn)1(a)-276(i)-275(k)28(o)28(w)28(al,)-275(i)-275(w)27(\\363)-55(jt,)-275(i)-275(T)83(ome)-1(k)-275(K\\252\\241b)-275(n)1(ie)-1(\\261li)-275(cz)-1(erw)28(on)28(y)-275(bald)1(ac)27(h)1(im)-1(,)-275(a)-275(s)-1(p)-27(o)-28(d)]TJ 0 -13.549 Td[(ni)1(e)-1(go)-315(p)1(romienia\\252a)-315(mon)1(s)-1(tr)1(ancja)-315(z\\252ota)-315(i)-314(tak)-315(b)28(y)1(\\252)-1(a)-314(c)-1(a\\252a)-315(w)-315(ogn)1(iac)27(h)-314(s\\252o\\253ca,)-315(\\273e)-316(p)1(rze)-1(z)]TJ 0 -13.55 Td[(\\261ro)-28(d)1(e)-1(k)-333(sz)-1(klan)29(y)-333(w)-1(i)1(da\\242)-334(b)28(y)1(\\252o)-334(b)1(lad\\241,)-333(p)1(rze)-1(\\271ro)-28(cz)-1(yst\\241)-333(Hos)-1(ti)1(\\246)-334(\\261)-1(wi\\246t\\241..)1(.)]TJ 27.879 -13.549 Td[(T)83(ak)-366(b)28(y\\252)-366(ni)1(e)-1(p)1(rz)-1(y)1(tom)-1(n)29(y)83(,)-366(\\273e)-367(raz)-367(w)-366(raz)-367(si\\246)-367(p)-27(ot)28(yk)56(a\\252)-367(i)-366(n)1(adept)28(yw)28(a\\252)-367(d)1(rugi)1(m)-367(na)]TJ -27.879 -13.549 Td[(nogi)1(.)]TJ 27.879 -13.549 Td[({)-333(Uw)27(a\\273a)-56(j)1(,)-333(niedo)-55(jdo!)]TJ 0 -13.549 Td[({)-333(P)28(okrak)56(a,)-333(ku)1(las)-334(j)1(e)-1(d)1(e)-1(n)1(!)-334({)-333(rzucali)-333(m)28(u,)-333(p)-27(os)-1(zturc)28(h)28(uj)1(\\241c)-334(n)1(ie)-1(r)1(z)-1(ad)1(k)28(o.)]TJ 0 -13.549 Td[(Nie)-317(s\\252ys)-1(za\\252)-317(n)1(ic)-317(z)-317(tego;)-317(\\261piew)-317(lu)1(du)-316(b)1(rz)-1(mia\\252)-316(p)-28(ot\\246\\273)-1(n)29(ym)-317(g\\252os)-1(em,)-317(p)-27(o)-28(d)1(nosi\\252)-317(si\\246)]TJ -27.879 -13.55 Td[(jak)-281(s\\252up)1(,)-281(jak)-281(fal)1(a,)-281(z)-1(d)1(a)-282(si\\246,)-281(p\\252yn)1(\\241\\252)-282(i)-281(b)1(i\\252)-282(w)-281(s)-1(\\252o\\253)1(c)-1(e)-281(blad)1(e)-1(;)-281(d)1(z)-1(w)28(on)28(y)-281(h)28(ucza\\252)-1(y)-281(n)1(ieustan-)]TJ 0 -13.549 Td[(ni)1(e)-324(\\261pi\\273o)28(w)-1(y)1(m)-1(i)-323(u)1(s)-1(t)1(am)-1(i,)-322(a\\273)-324(trz\\246s)-1(\\252y)-323(si\\246)-324(l)1(ip)28(y)-323(i)-323(k)1(lon)28(y)83(,)-322(i)-323(raz)-323(w)-324(r)1(az)-324(jak)1(i\\261)-324(cz)-1(erw)28(on)28(y)-323(li)1(\\261)-1(\\242)]TJ 0 -13.549 Td[(o)-28(d)1(ryw)28(a\\252)-328(s)-1(i)1(\\246)-328(i)-328(n)1(ib)28(y)-328(p)1(tak)-327(s)-1(p)1(\\252)-1(osz)-1(on)29(y)-328(spad)1(a\\252)-328(na)-327(g\\252)-1(o)28(wy)84(,)-328(a)-328(wysok)28(o,)-328(wysok)28(o)-328(n)1(ad)-328(p)1(ro-)]TJ 0 -13.549 Td[(ce)-1(sj\\241,)-289(n)1(ad)-289(cz)-1(u)1(bami)-289(dr)1(z)-1(ew)-290(p)-27(o)-28(c)28(h)28(ylon)28(y)1(c)27(h,)-288(nad)-289(wie\\273\\241)-290(k)28(o\\261cio\\252a)-289(kr\\241\\273y\\252o)-289(s)-1(tad)1(o)-289(go\\252\\246)-1(b)1(i)]TJ 0 -13.549 Td[(ze)-1(strasz)-1(on)28(y)1(c)27(h.)1(..)]TJ 27.879 -13.55 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(....)]TJ 0 -13.549 Td[(A)-332(p)-27(o)-332(n)1(ab)-28(o\\273e)-1(\\253)1(s)-1(t)28(wie)-332(n)1(ar\\363)-28(d)-331(wysypa\\252)-332(si\\246)-332(na)-331(s)-1(m\\246tarz)-332(pr)1(z)-1(yk)28(o\\261c)-1(i)1(e)-1(ln)29(y;)-332(wysze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(i)-500(z)-501(in)1(n)28(ymi)-500(Kub)1(a,)-500(ale)-501(si\\246)-501(dzisia)-56(j)-499(nie)-501(\\261pi)1(e)-1(sz)-1(y\\252)-500(do)-500(d)1(om)27(u,)-500(c)28(ho)-28(cia\\273)-501(wiedzia\\252,)-500(\\273)-1(e)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-448(n)1(a)-448(ob)1(iad)-447(m)-1(i)1(\\246)-1(so)-448(z)-448(tej)-447(dorzni\\246tej)-447(kro)28(wy)-448({)-447(nie,)-448(p)-27(osta)28(w)27(a\\252,)-447(p)-28(ogad)1(yw)27(a\\252)-447(z)-1(e)]TJ 0 -13.549 Td[(zna)-56(j)1(omk)55(ami,)-301(a)-301(p)1(rzys)-1(u)29(w)27(a\\252)-301(si\\246)-302(d)1(o)-301(s)-1(w)28(oic)28(h)-301(gosp)-28(o)-28(d)1(arzy)83(,)-300(b)-28(o)-301(i)-301(An)29(te)-1(k)-300(z)-302(\\273on\\241)-301(sto)-56(j)1(ali)-301(w)]TJ 0 -13.55 Td[(ku)1(pie)-333(z)-334(dr)1(ugimi)-333(i)-333(p)-28(or)1(e)-1(d)1(z)-1(ali)1(,)-334(j)1(ak)-333(to)-333(w)-334(ni)1(e)-1(d)1(z)-1(iel\\246)-334(p)-27(o)-333(s)-1(u)1(m)-1(i)1(e)-334(z)-1(wycz)-1(a)-55(jn)1(ie.)]TJ 27.879 -13.549 Td[(A)-375(w)-376(dr)1(ugiej)-375(gromadzie,)-375(c)-1(o)-375(s)-1(i)1(\\246)-376(ju)1(\\273)-376(b)28(y\\252a)-375(s)-1(k)1(upi)1(\\252)-1(a)-375(za)-376(wrotn)1(iami)-375(na)-375(dro)-27(dze)-1(,)]TJ -27.879 -13.549 Td[(rej)-304(w)28(o)-28(dzi\\252)-304(k)28(o)28(w)27(al,)-304(d)1(u\\273y)-304(c)27(h)1(\\252)-1(op)1(,)-304(ub)1(ran)28(y)-304(j)1(u\\273)-304(c)-1(a\\252kiem)-305(z)-304(m)-1(i)1(e)-1(j)1(s)-1(k)56(a,)-304(b)-27(o)-304(w)-305(cz)-1(ar)1(nej)-304(k)56(ap)-28(o-)]TJ 0 -13.549 Td[(cie)-1(,)-276(p)-27(ok)56(apan)1(e)-1(j)-276(w)28(oskiem)-277(na)-276(p)1(lec)-1(ac)27(h)1(,)-276(i)-276(w)-276(granato)28(wym)-276(k)55(aszkiec)-1(ie,)-276(s)-1(p)-27(o)-28(d)1(nie)-276(m)-1(i)1(a\\252)-277(n)1(a)]TJ 0 -13.549 Td[(bu)1(t)28(y)-335(i)-335(s)-1(r)1(e)-1(b)1(rn\\241)-335(d)1(e)-1(wizk)28(\\246)-336(n)1(a)-336(k)56(amize)-1(lce;)-335(t)27(w)28(arz)-335(m)-1(i)1(a\\252)-336(cz)-1(erw)28(on\\241)-335(i)-335(ru)1(de)-335(w)27(\\241sy)83(,)-335(i)-335(w\\252osy)]TJ 0 -13.55 Td[(p)-27(okr\\246c)-1(on)1(e)-1(;)-309(ra)-55(jco)28(w)27(a\\252)-309(don)1(o\\261)-1(n)1(ie)-310(a)-310(p)-27(o\\261m)-1(i)1(e)-1(w)28(a\\252)-310(si\\246)-1(,)-309(\\273e)-310(a\\273)-310(rec)27(h)1(ota\\252,)-309(b)-28(o)-309(wykpi)1(s)-310(to)-309(b)28(y\\252)]TJ 0 -13.549 Td[(na)-255(ca\\252\\241)-255(w)-1(i)1(e)-1(\\261,)-255(\\273)-1(e)-255(niec)27(h)-254(B)-1(\\363g)-255(b)1(roni)-255(d)1(os)-1(t)1(a\\242)-256(m)27(u)-254(s)-1(i)1(\\246)-256(na)-255(j)1(\\246)-1(z\\363r.)-255(Boryn)1(a)-255(ino)-255(strzyg\\252)-255(o)-28(cz)-1(a-)]TJ 0 -13.549 Td[(mi)-311(ku)-310(n)1(iem)27(u)-310(a)-311(n)1(ads\\252)-1(u)1(c)27(h)1(iw)27(a\\252,)-310(b)-27(o)-311(si\\246)-311(b)-28(o)-55(ja\\252)-310(jego)-311(gadan)1(ia,)-310(\\273)-1(e)-311(to)-310(na)28(w)27(et)-311(r)1(o)-28(dzonem)27(u)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)-300(n)1(ie)-301(p)1(rze)-1(p)1(u\\261c)-1(i)1(\\252)-1(,)-299(a)-301(c\\363\\273)-301(d)1(opiero)-300(te\\261)-1(ci,)-300(z)-300(kt\\363ry)1(m)-301(b)28(y)1(\\252)-301(w)-300(w)28(o)-56(jn)1(ie)-301(o)-300(wian)1(o)-300(\\273)-1(on)1(ine)]TJ 0 -13.549 Td[({)-330(a)-1(l)1(e)-331(nic)-330(nie)-331(wymiark)28(o)28(w)28(a\\252,)-331(b)-27(o)-330(m)27(u)-330(si\\246)-331(na)28(win\\246\\252y)-330(p)-28(o)-27(d)-331(o)-27(c)-1(zy)-330(Dom)-1(i)1(nik)28(o)28(w)27(a)-330(z)-331(Jagn)1(\\241,)]TJ 0 -13.55 Td[(wyc)27(h)1(o)-28(dz\\241ce)-326(z)-326(k)28(o\\261c)-1(i)1(o\\252a)-326({)-325(sz)-1(\\252y)-325(w)28(oln)1(o,)-325(jak)28(o)-325(\\273e)-326(i)-325(g\\246s)-1(to)-325(b)28(y)1(\\252)-1(o)-325(n)1(aro)-28(d)1(u)-325(na)-325(sm\\246)-1(tar)1(z)-1(u)1(,)-325(i)]TJ 0 -13.549 Td[(\\273e)-337(si\\246)-337(wita\\252y)-336(t)1(o)-336(z)-337(t)28(ym,)-336(to)-336(z)-336(o)27(wym)-336(i)-336(p)-27(ogadyw)28(a\\252y)-336(s\\252)-1(o)28(w)28(e)-1(m)-336(ni)1(e)-1(kt)1(\\363rym,)-336(b)-27(o)-336(c)27(ho)-27(c)-1(ia\\273)]TJ 0 -13.549 Td[(ws)-1(zystkie)-315(b)28(y\\252y)-314(s)-1(ob)1(ie)-315(zna)-56(j)1(ome)-316(a)-314(p)-28(ok)1(umane)-315(i)-314(p)-28(o)28(wino)28(w)28(ate)-315(i)-315(z)-315(wsie)-315(jedn)1(e)-1(j)1(,)-315(\\273e)-315(c)-1(z\\246)-1(-)]TJ 0 -13.549 Td[(sto)-351(in)1(o)-351(b)-28(ez)-351(p\\252ot)-351(l)1(ib)-28(o)-350(o)-351(mie)-1(d)1(z)-1(\\246)-351(sie)-1(d)1(z)-1(i)1(e)-1(li)-350({)-351(a)-351(za)28(w)-1(\\273dy)-350(p)-28(ogw)28(arzy\\242)-351(pr)1(z)-1(ed)-351(k)28(o\\261cio\\252e)-1(m)]TJ 0 -13.549 Td[(mi\\252o)-349(jest)-349(i)-349(p)-27(otrze)-1(b)1(a...)-348(Dominik)28(o)28(w)28(a)-349(rozw)27(o)-27(dzi\\252a)-349(s)-1(i)1(\\246)-350(cic)28(h)28(ym,)-349(nab)-27(o\\273n)28(ym)-349(g\\252os)-1(em)-349(o)]TJ 0 -13.549 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(u,)-360(a)-360(Jagna)-360(rozgl\\241d)1(a\\252)-1(a)-360(si\\246)-361(p)-27(o)-360(lud)1(z)-1(iac)28(h,)-360(j)1(ak)28(o)-361(\\273e)-361(wzros)-1(t)1(e)-1(m)-361(r)1(\\363)28(w)-1(n)1(a)-360(b)28(y\\252a)]TJ 0 -13.55 Td[(i)-328(c)28(h\\252op)-27(om)-329(n)1(a)-56(j)1(ro\\261le)-1(j)1(s)-1(zym,)-328(a)-328(stro)-55(jna)-328(d)1(z)-1(i)1(s)-1(ia)-55(j)-328(b)29(y\\252a,)-328(\\273e)-329(a\\273)-328(o)-28(cz)-1(y)-328(r)1(w)27(a\\252a)-328(p)1(arobk)28(\\363)28(w,)-328(co)]TJ 0 -13.549 Td[(si\\246)-385(w)-384(kup)-27(\\246)-385(zbi)1(li)-384(pr)1(z)-1(ed)-384(wr\\363tn)1(iami,)-384(na)-384(d)1(ro)-28(dze,)-384(kur)1(z)-1(yl)1(i)-384(pap)1(ie)-1(r)1(os)-1(y)-384(i)-384(sz)-1(cz)-1(erzyli)-384(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-275(z\\246)-1(b)29(y)83(.)-275(Bo)-276(i)-275(u)1(ro)-28(d)1(na)-275(b)28(y\\252a,)-275(i)-275(s)-1(t)1(ro)-56(j)1(na,)-275(i)-275(taki)1(e)-1(j)-275(p)-27(os)-1(t)1(ury)84(,)-275(\\273)-1(e)-275(i)-276(d)1(ru)1(gie)-1(j)-274(dzie)-1(d)1(z)-1(ic\\363)28(wnie)]TJ 0 -13.549 Td[(z)-334(n)1(i\\241)-333(s)-1(i\\246)-333(nie)-334(mierzy\\242)-1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(wu)1(c)27(h)28(y)-336(ano)-336(i)-337(k)28(ob)1(iet)27(y)-336(\\273e)-1(n)1(iate,)-337(p)1(rz)-1(ec)27(h)1(o)-28(dz\\241ce)-337(m)-1(imo)-336(s)-1(p)-27(oz)-1(iera\\252y)-336(na)-336(ni\\241)-336(z)]TJ -27.879 -13.55 Td[(zaz)-1(d)1(ro\\261)-1(ci\\241)-410(ab)-27(o)-410(i)-410(zgo\\252a)-410(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a)-1(\\252y)-409(w)-410(p)-28(o)-27(dle,)-410(ab)28(yc)28(h)-410(n)1(as)-1(y)1(c)-1(i\\242)-410(o)-28(cz)-1(y)-409(t)28(ym)-410(jej)-410(w)28(e)-1(\\252-)]TJ 0 -13.549 Td[(ni)1(akiem)-358(p)1(as)-1(iast)28(ym)-357(i)-357(s)-1(u)1(t)28(ym,)-357(c)-1(o)-357(j)1(ak)-357(t\\246)-1(cz\\241)-358(mazursk)56(\\241)-357(m)-1(i)1(e)-1(n)1(i\\252)-357(s)-1(i\\246)-357(na)-357(n)1(ie)-1(j)1(,)-357(to)-357(na)-357(j)1(e)-1(j)]TJ\nET\nendstream\nendobj\n172 0 obj <<\n/Type /Page\n/Contents 173 0 R\n/Resources 171 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n171 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n177 0 obj <<\n/Length 8739      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(50)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(cz)-1(arn)1(e)-275(trze)-1(wiki)-274(w)-1(y)1(s)-1(oki)1(e)-1(,)-275(zasz)-1(n)28(u)1(ro)28(w)27(an)1(e)-275(a\\273)-276(p)-27(o)-275(bi)1(a\\252\\241)-275(p)-28(o\\253)1(c)-1(zo)-28(c)27(h)1(\\246)-276(cze)-1(rw)28(on)28(ymi)-275(szn)28(u-)]TJ 0 -13.549 Td[(ro)28(w)28(ad\\252ami,)-344(to)-344(n)1(a)-344(gorse)-1(t)-344(z)-344(zie)-1(l)1(onego)-344(aks)-1(amitu)1(,)-344(tak)-344(wyszyt)28(y)-344(z)-1(\\252otem,)-344(\\273)-1(e)-344(a\\273)-344(s)-1(i\\246)-344(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(ac)28(h)-366(mieni\\252o,)-365(to)-366(na)-366(sz)-1(n)29(ury)-365(bu)1(rs)-1(zt)28(yn)1(\\363)27(w)-366(i)-365(k)28(orali,)-365(c)-1(o)-366(otacz)-1(a\\252y)-365(jej,)-366(b)1(ia\\252\\241,)-366(p)-27(e\\252)-1(n)1(\\241)]TJ 0 -13.549 Td[(sz)-1(yj)1(\\246)-348({)-348(p)-28(\\246k)-348(r)1(\\363\\273)-1(n)1(obarwn)28(y)1(c)27(h)-347(w)-1(st\\241\\273e)-1(k)-347(z)-1(wies)-1(za\\252)-348(s)-1(i)1(\\246)-349(o)-27(d)-348(n)1(ic)27(h)-347(na)-347(plec)-1(ac)28(h)-348(i)-347(gdy)-347(s)-1(z\\252a,)]TJ 0 -13.549 Td[(wi\\252)-333(s)-1(i\\246)-333(z)-1(a)-333(ni\\241)-333(n)1(ib)28(y)-333(t\\246)-1(cza.)]TJ 27.879 -13.55 Td[(Ale)-231(Jagn)1(a)-231(n)1(ie)-231(wid)1(z)-1(ia\\252a)-230(z)-1(azdr)1(os)-1(n)28(y)1(c)27(h)-230(sp)-28(o)-55(jrze\\253,)-230(b\\252\\241d)1(z)-1(i\\252a)-230(m)-1(o)-27(dry)1(m)-1(i)-230(o)-28(cz)-1(ami)-230(p)-28(o)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(ac)28(h)-250(i)-250(natk)1(n\\241)28(ws)-1(zy)-250(s)-1(i)1(\\246)-251(na)-250(wlepion)1(e)-251(w)-250(sie)-1(b)1(ie)-251(o)-27(c)-1(zy)-250(An)28(tk)56(a,)-250(obl)1(a\\252)-1(a)-250(si\\246)-251(r)1(umie\\253ce)-1(m)]TJ 0 -13.549 Td[(i)-333(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241)28(ws)-1(zy)-333(m)-1(atk)28(\\246)-333(z)-1(a)-333(r\\246k)56(a)27(w,)-333(ru)1(s)-1(zy\\252a)-333(przo)-28(d)1(e)-1(m,)-333(nie)-333(c)-1(ze)-1(k)56(a)-56(j)1(\\241c)-1(.)-333(.)]TJ 27.879 -13.549 Td[({)-333(Jagna,)-333(p)-27(o)-28(cz)-1(ek)55(a)-55(j!)-333({)-333(krzykn)1(\\246)-1(\\252a)-333(z)-1(a)-333(n)1(i\\241)-334(matk)56(a)-333(w)-1(i)1(ta)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(z)-334(Boryn)1(\\241.)]TJ 0 -13.549 Td[(Zatrzyma\\252a)-261(si\\246)-261(n)1(a)-261(d)1(ro)-28(d)1(z)-1(e,)-260(b)-28(o)-260(i)-260(par)1(ob)-28(cy)-260(h)28(u)1(rme)-1(m)-261(j)1(\\241)-260(oto)-28(c)-1(zyli)-260(i)-260(p)-27(o)-28(cz)-1(\\246li)-260(wita\\242)]TJ -27.879 -13.549 Td[(a)-333(przyma)28(w)-1(i)1(a\\242)-334(z)-1(\\252o\\261liwie)-334(K)1(ub)1(ie)-1(,)-333(kt)1(\\363re)-1(n)-332(s)-1(ze)-1(d)1(\\252)-334(za)-334(n)1(i\\241,)-333(wpatr)1(z)-1(on)-333(ki)1(e)-1(b)28(y)-333(w)-333(obr)1(az)-1(.)]TJ 27.879 -13.55 Td[(Sp)1(lu)1(n\\241\\252)-383(jeno)-383(i)-383(p)-28(o)28(wl\\363k\\252)-383(si\\246)-384(d)1(o)-384(d)1(om)27(u)1(,)-383(b)-28(o)-383(i)-383(gos)-1(p)-27(o)-28(d)1(arze)-384(ju)1(\\273)-384(ci\\241)-28(gn)1(\\246)-1(li)1(,)-383(i)-384(t)1(rz)-1(a)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-333(za)-56(jr)1(z)-1(e\\242)-334(d)1(o)-334(k)28(on)1(i.)]TJ 27.879 -13.549 Td[({)-258(Ca\\252)-1(k)1(ie)-1(m)-258(kiej)-258(na)-258(t)28(ym)-258(obrazie!)-258({)-258(z)-1(a)28(w)27(o\\252a\\252)-258(b)-27(e)-1(zw)-1(i)1(e)-1(d)1(nie,)-258(s)-1(i)1(e)-1(d)1(z)-1(\\241c)-259(j)1(u\\273)-258(w)-259(gan)1(ku.)]TJ 0 -13.549 Td[({)-333(Kto,)-333(Ku)1(ba?)-334({)-333(p)28(y)1(ta\\252)-1(a)-333(J\\363zia,)-333(s)-1(zyku)1(j\\241ca)-333(obiad)1(.)]TJ 0 -13.549 Td[(Sp)1(u\\261c)-1(i)1(\\252)-334(o)-28(czy)83(,)-333(b)-27(o)-334(wst)28(yd)-333(m)27(u)-333(si\\246)-334(zrob)1(i\\252o)-334(i)-333(strac)28(h,)-333(\\273e)-1(b)28(y)-333(n)1(ie)-334(p)-27(oz)-1(n)1(ali.)]TJ 0 -13.55 Td[(Ale)-280(\\273)-1(e)-280(obiad)-279(b)28(y\\252)-280(syt)28(y)-280(a)-280(d\\252ugi)1(,)-280(to)-280(i)-280(wryc)28(hle)-280(z)-1(ap)-27(omnia\\252;)-280(b)-27(o)-280(m)-1(i)1(\\246)-1(so)-280(b)28(y\\252o,)-280(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-318(k)56(apu)1(s)-1(ta)-318(z)-318(gro)-28(c)28(hem)-1(,)-318(b)29(y\\252)-318(i)-318(ros\\363\\252)-318(z)-319(zie)-1(mni)1(ak)55(ami,)-318(a)-318(n)1(a)-318(am)-1(en)-318(p)-27(os)-1(t)1(a)27(wil)1(i)-318(niez)-1(gor)1(s)-1(z\\241)]TJ 0 -13.549 Td[(mis)-1(ecz)-1(k)28(\\246)-334(k)56(asz)-1(y)-333(j)1(\\246)-1(cz)-1(miennej,)-333(u)1(pr)1(a\\273)-1(on)1(e)-1(j)-333(ze)-334(s\\252)-1(on)1(in\\241.)]TJ 27.879 -13.549 Td[(Jedli)-366(w)28(olno,)-366(p)-27(o)27(w)28(a\\273)-1(n)1(ie)-367(i)-366(w)-367(milcz)-1(eniu)1(,)-367(d)1(opiero)-366(kiej)-366(z)-1(asycili)-366(pierws)-1(zy)-366(g\\252\\363)-28(d,)]TJ -27.879 -13.549 Td[(j\\246li)-333(p)-27(ogadyw)28(a\\242)-334(i)-333(sm)-1(ak)28(o)28(w)28(a\\242)-334(w)-334(j)1(adle...)]TJ 27.879 -13.55 Td[(J\\363zia,)-408(\\273e)-409(to)-408(on)1(a)-408(dzisia)-56(j)-407(b)28(y\\252a)-408(za)-408(gos)-1(p)-27(o)-28(dy)1(ni\\241,)-407(to)-408(ino)-408(p)1(rzys)-1(i)1(ada\\252a)-408(c)-1(zasam)-1(i)]TJ -27.879 -13.549 Td[(na)-352(k)1(ra)-56(j)1(u)-352(\\252a)28(wki,)-352(p)-27(o)-56(j)1(ada\\252a)-352(spiesz)-1(n)1(ie)-1(,)-351(a)-352(piln)1(ie)-352(bacz)-1(y\\252a,)-352(czy)-352(w)27(ar)1(z)-1(a)-352(n)1(ie)-353(sc)27(h)1(o)-28(dzi,)-352(b)29(y)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nie\\261)-1(\\242)-333(z)-334(izb)28(y)-333(garnk)1(i)-334(i)-333(d)1(o\\252o\\273)-1(y\\242,)-333(b)28(y)-333(ni)1(e)-334(p)-27(o)27(wiedzieli,)-333(\\273)-1(e)-333(w)-334(misc)-1(e)-334(d)1(nieje.)]TJ 27.879 -13.549 Td[(A)-333(obiad)1(o)28(w)27(ali)-333(n)1(a)-334(gan)1(ku,)-333(\\273e)-334(to)-333(c)-1(zas)-334(b)28(y)1(\\252)-334(cic)27(h)28(y)-333(i)-333(ciep\\252y)83(.)]TJ 0 -13.549 Td[(\\212apa)-459(kr)1(\\246)-1(ci\\252)-459(s)-1(i)1(\\246)-460(i)-459(sk)55(amla\\252,)-459(to)-459(ob)-27(c)-1(i)1(e)-1(ra\\252)-459(si\\246)-460(o)-459(n)1(o)-1(gi)-458(jedz\\241c)-1(yc)28(h,)-459(zaz)-1(iera\\252)-459(do)]TJ -27.879 -13.55 Td[(mis)-1(ek,)-408(a\\273)-409(m)27(u)-408(r)1(az)-409(w)-409(r)1(az)-409(kto\\261)-409(rzuci\\252)-408(k)28(os)-1(tk)28(\\246)-409(j)1(ak)55(\\241,)-408(z)-409(k)1(t\\363r\\241)-408(ucie)-1(k)56(a\\252)-409(p)-27(o)-28(d)-408(p)1(rzyz)-1(b)-27(\\246,)]TJ 0 -13.549 Td[(ab)-27(o)-358(zas)-1(ie)-358(u)1(c)-1(ies)-1(zon)-357(ob)-28(ecno\\261c)-1(i\\241)-357(gos)-1(p)-27(o)-28(d)1(a)-1(r)1(z)-1(y)-357(i)-358(\\273e)-358(ws)-1(p)-27(ominan)1(o)-358(jego)-358(imi\\246,)-358(szc)-1(ze)-1(k)56(a\\252)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(n)1(ie)-459(i)-458(gon)1(i\\252)-458(z)-1(a)-458(wr\\363bl)1(am)-1(i,)-458(co)-458(s)-1(i\\246)-458(b)28(y\\252y)-458(wies)-1(za\\252y)-458(p)-28(o)-458(p\\252otac)28(h,)-458(o)-28(cz)-1(eku)1(j\\241c)-459(n)1(a)]TJ 0 -13.549 Td[(okr)1(usz)-1(yn)29(y)83(.)]TJ 27.879 -13.549 Td[(A)-378(dr)1(og\\241)-379(cz)-1(\\246sto)-379(k)1(to\\261)-379(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252)-378(i)-378(p)-28(ozdr)1(a)28(w)-1(ia\\252)-378(j)1(e)-1(d)1(z)-1(\\241cyc)27(h)1(,)-378(\\273)-1(e)-378(h)28(urmem)-379(o)-28(d)1(-)]TJ -27.879 -13.55 Td[(p)-27(o)27(wiad)1(ali.)]TJ 27.879 -13.549 Td[({)-333(P)28(ono)-333(pt)1(as)-1(zki)-333(nosi\\252e)-1(\\261)-333(dobr)1(o)-28(dziejo)28(wi?)-334({)-333(zagadn)1(\\241\\252)-334(Boryn)1(a.)]TJ 0 -13.549 Td[({)-379(Nos)-1(i\\252em)-1(,)-379(n)1(os)-1(i\\252em!)-380({)-379(P)28(o\\252o\\273y\\252)-380(z)-380(n)1(ag\\252a)-380(\\252y\\273k)28(\\246)-380(i)-379(j\\241\\252)-379(op)-27(o)27(wiad)1(a\\242)-1(,)-379(j)1(aku)-379(go)-380(to)]TJ -27.879 -13.549 Td[(ksi\\241dz)-333(w)27(ez)-1(w)28(a\\252)-334(n)1(a)-334(p)-27(ok)28(o)-55(je,)-334(j)1(aku)-333(tam)-333(pi\\246kn)1(e)-1(,)-333(\\273e)-334(t)28(yla)-333(ks)-1(i)1(\\246)-1(g\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(Kiedy)-333(tu)-333(u)1(n)-333(ws)-1(zys)-1(tk)1(ie)-334(p)1(rz)-1(ecz)-1(yta?)-333({)-333(oz)-1(w)28(a\\252a)-334(si\\246)-334(J\\363zia)]TJ 0 -13.549 Td[({)-378(Kiedy?)-378(A)-378(wie)-1(czorami!)-378(Cho)-28(d)1(z)-1(i)-378(se)-379(p)-27(o)-378(p)-28(ok)28(o)-55(jac)27(h)1(,)-378(p)-27(opij)1(a)-379(ar)1(bat\\246)-378(i)-378(c)-1(i\\246giem)]TJ -27.879 -13.55 Td[(cz)-1(yta.)]TJ 27.879 -13.549 Td[({)-333(Musi)-333(b)28(y\\242...)-333(n)1(ab)-28(o\\273ne)-334(wsz)-1(y)1(\\242)-1(ki)1(e)-334({)-334(wtr)1(\\241c)-1(i\\252)-333(Ku)1(ba)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(n)1(ie)-334(leme)-1(n)28(tar)1(z)-1(e.)]TJ 0 -13.549 Td[({)-333(A)-334(gaze)-1(t)28(y)-333(to)-333(co)-334(d)1(nia)-333(s)-1(t)1(\\363)-56(jk)56(a)-333(pr)1(z)-1(yn)1(os)-1(i)-333({)-333(dor)1(z)-1(u)1(c)-1(i)1(\\252)-1(a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(w)-334(gazetac)27(h)-333(p)1(is)-1(z\\241,)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(dzieje)-334(w)28(e)-334(\\261w)-1(i)1(e)-1(cie...)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(An)29(te)-1(k)1(.)]TJ 0 -13.55 Td[({)-333(I)-334(k)28(o)28(w)28(al)-334(z)-333(m)-1(\\252yn)1(arze)-1(m)-333(trzym)-1(a)-55(j\\241)-333(gaze)-1(t\\246.)]TJ 0 -13.549 Td[({)-333(I...)-333(to)-333(i)-333(tak)55(a)-333(k)28(o)28(w)27(al)1(o)27(w)28(a)-333(gaz)-1(eta!)-333({)-334(r)1(z)-1(ek\\252)-333(ur\\241)-27(gliwie)-334(Boryn)1(a.)]TJ\nET\nendstream\nendobj\n176 0 obj <<\n/Type /Page\n/Contents 177 0 R\n/Resources 175 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n175 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n180 0 obj <<\n/Length 8865      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(51)]TJ -335.807 -35.866 Td[({)-333(T)83(akut)1(k)55(a)-333(sam)-1(a)-333(kiej)-333(ksi\\246)-1(\\273a)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(ostro)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-333(C)-1(zyta\\252e\\261)-1(?)-333(Wies)-1(z?)]TJ 0 -13.549 Td[({)-333(C)-1(zyta\\252em)-334(i)-333(wie)-1(m,)-333(a)-333(b)-28(o)-333(raz!)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-334(zm)-1(\\241d)1(rza\\252)-1(e\\261)-334(n)1(ic)-334(z)-334(tego,)-333(\\273)-1(e)-333(s)-1(i\\246)-333(z)-1(ad)1(a)-56(j)1(e)-1(sz)-334(z)-334(k)28(o)28(w)27(al)1(e)-1(m.)]TJ 0 -13.549 Td[({)-451(La)-451(o)-56(j)1(c)-1(a)-451(to)-451(in)1(o)-451(te)-1(n)-450(m)-1(\\241d)1(ry)84(,)-451(c)-1(o)-451(c)27(h)1(o)-28(cia)-451(z)-452(p)-27(\\363\\252w)-1(\\252\\363)-27(c)-1(ze)-1(k)-451(ma)-451(ab)-28(o)-451(i)-451(ogon)1(\\363)28(w)]TJ -27.879 -13.55 Td[(kr)1(o)27(wic)28(h)-333(z)-334(me)-1(n)1(del.)]TJ 27.879 -13.549 Td[({)-455(Za)28(wrzyj)-455(g\\246b)-27(\\246)-1(,)-454(p)-28(\\363ki)1(m)-455(dobr)1(y!)-455(A)-454(to)-455(in)1(o)-455(ok)56(az)-1(j)1(i)-455(sz)-1(u)1(k)55(a,)-454(\\273)-1(eb)28(y)-454(s)-1(i\\246)-455(k\\252y\\271ni)1(\\242)-1(!)]TJ -27.879 -13.549 Td[(Chleb)-333(ci\\246)-334(to)-333(rozpiera,)-333(wid)1(z)-1(\\246...)-333(m\\363)-56(j)-333(c)28(hleb..)1(.)]TJ 27.879 -13.549 Td[({)-333(O\\261)-1(ci\\241)-333(on)-333(mi)-333(ju\\273)-333(s)-1(toi)-333(w)28(e)-334(grd)1(yc)-1(e,)-333(o\\261)-1(ci\\241..)1(.)]TJ 0 -13.549 Td[({)-325(Szuk)56(a)-56(j)-325(se)-326(lepsz)-1(ego,)-326(n)1(a)-326(Han)1(c)-1(zyn)28(y)1(c)27(h)-325(trze)-1(c)28(h)-325(m)-1(or)1(gac)27(h)-325(b)-27(\\246)-1(d)1(z)-1(iesz)-326(jad)1(\\252)-326(bu)1(\\252ki.)]TJ 0 -13.549 Td[({)-333(B)-1(\\246d\\246)-333(\\273)-1(ar\\252)-333(zie)-1(mni)1(aki,)-333(ale)-334(mi)-333(ic)27(h)-332(nikt)1(\\363)-56(j)-333(n)1(ie)-334(wym\\363)27(wi.)]TJ 0 -13.55 Td[({)-333(Nie)-334(wyma)28(w)-1(i)1(am)-334(c)-1(i)-333(i)-333(j)1(a...)]TJ 0 -13.549 Td[({)-283(In)1(o)-283(kto)-282(dr)1(ugi?...)-282(Haru)1(j)-282(jak)-282(te)-1(n)-282(w)28(\\363\\252,)-283(j)1(e)-1(sz)-1(cz)-1(e)-283(ci)-283(s\\252o)28(w)27(a)-282(dobr)1(e)-1(go)-282(nie)-283(d)1(adz\\241...)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(\\261wiec)-1(ie)-333(jes)-1(t)-333(lek)28(c)-1(iej,)-333(n)1(ie)-334(tr)1(z)-1(a)-333(rob)1(i\\242)-1(,)-333(a)-333(dad)1(z)-1(\\241)-333(ws)-1(zystk)28(o...)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(j)1(e)-1(st)-334(l)1(e)-1(p)1(ie)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(se)-334(id)1(\\271)-334(i)-333(p)-27(os)-1(makuj)1(.)]TJ 0 -13.55 Td[({)-333(Z)-334(go\\252ymi)-333(r\\246k)56(a)-1(mi)-333(ni)1(e)-334(p)-27(\\363)-56(jd)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Kij)1(e)-1(k)-333(ci)-334(d)1(am)-1(,)-333(cob)28(y\\261)-333(s)-1(i\\246)-333(m)-1(ia\\252)-333(cz)-1(ym)-333(o)-28(d)-333(pi)1(e)-1(sk)28(\\363)27(w)-333(ogani)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-308(Ocie)-1(c!)-308({)-308(wrzas)-1(n)1(\\241\\252)-308(An)28(tek)-308(z)-1(r)1(yw)27(a)-55(j\\241c)-308(s)-1(i)1(\\246)-309(z)-308(\\252)-1(a)28(wki,)-307(ale)-309(p)1(ad\\252)-308(zaraz)-1(,)-307(b)-28(o)-308(Han)1(k)55(a)]TJ -27.879 -13.549 Td[(uj)1(\\246)-1(\\252a)-420(go)-421(wp)-28(\\363\\252,)-420(a)-421(stary)-420(p)-28(op)1(atrzy\\252)-421(gr)1(o\\271)-1(n)1(ie)-1(,)-420(pr)1(z)-1(e\\273)-1(egna\\252)-420(s)-1(i\\246,)-421(j)1(ak)28(o)-421(\\273e)-421(ju)1(\\273)-421(b)28(y\\252o)-421(p)-27(o)]TJ 0 -13.549 Td[(obi)1(e)-1(d)1(z)-1(ie,)-333(i)-333(o)-28(dc)28(ho)-28(d)1(z)-1(\\241c)-333(do)-333(iz)-1(b)29(y)-333(rz)-1(ek\\252)-333(t)28(w)27(ar)1(do:)]TJ 27.879 -13.55 Td[({)-333(Na)-334(wycug)-333(do)-333(cie)-1(b)1(ie)-334(n)1(ie)-334(p)-27(\\363)-56(j)1(d\\246,)-333(nie!)]TJ 0 -13.549 Td[(P)28(or)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(il)1(i)-336(si\\246)-336(zaraz)-336(,)1(ino)-335(An)28(tek)-335(os)-1(ta\\252)-335(i)-335(m)-1(edyto)28(w)28(a\\252,)-335(Kub)1(a)-336(wyp)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(k)28(oni)1(e)-410(na)-409(k)28(on)1(ic)-1(zysk)28(o)-409(z)-1(a)-409(sto)-28(do\\252y)84(,)-409(u)28(w)28(ali\\252)-409(s)-1(i\\246)-409(p)-28(o)-27(d)-409(br)1(ogiem)-1(,)-409(ab)28(y)-409(si\\246)-409(prze)-1(spa\\242,)-409(ale)]TJ 0 -13.549 Td[(spa\\242)-357(n)1(ie)-357(m\\363g\\252)-1(,)-356(ci\\246\\273)-1(y\\252o)-356(m)27(u)-356(w)-356(\\273)-1(yw)28(o)-28(cie)-357(j)1(e)-1(d)1(z)-1(enie,)-356(a)-357(i)-356(ta)-356(m)27(y\\261l,)-356(\\273)-1(e)-356(gdyb)28(y)-356(mia\\252)-356(jak)56(\\241)]TJ 0 -13.549 Td[(strze)-1(lb)-27(\\246,)-258(tob)28(y)-258(m\\363g\\252)-258(t)28(yle)-258(ustrze)-1(la\\242)-258(pt)1(as)-1(zk)28(\\363)27(w)-258(i)-258(za)-56(j)1(\\241c)-1(zk)56(a)-258(niekt\\363r)1(e)-1(go,)-258(\\273e)-258(c)-1(o)-258(n)1(ie)-1(d)1(z)-1(iel\\246)]TJ 0 -13.55 Td[(nosi\\252b)28(y)-333(d)1(obro)-27(dzie)-1(j)1(o)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-432(b)28(y)-432(s)-1(tr)1(z)-1(elb)-27(\\246)-433(zrobi)1(\\252)-1(,)-432(j)1(ak)28(o)-432(to)-433(i)-432(b)-27(oro)28(w)28(e)-1(m)28(u)-432(zm)-1(a)-55(jstro)28(w)27(a\\252)-432(tak)56(\\241,)-432(\\273)-1(e)-432(jak)]TJ -27.879 -13.549 Td[(strze)-1(li)-333(w)-333(le)-1(sie,)-333(to)-334(a\\273)-333(w)27(e)-334(wsi)-333(s)-1(i\\246)-333(roz)-1(l)1(e)-1(ga?)]TJ 27.879 -13.549 Td[({)-383(Mec)27(h)1(anik)-383(j)1(uc)28(ha!)-383(Al)1(e)-384(p)1(i\\246)-1(\\242)-383(ru)1(bli)-383(t)1(rz)-1(a)-383(m)28(u)-383(za)-383(tak)56(\\241)-383(z)-1(ap)1(\\252ac)-1(i\\242!)-383({)-383(rozm)27(y)1(\\261)-1(la\\252.)]TJ -27.879 -13.549 Td[({)-377(Hal)1(e)-377(s)-1(k)56(\\241d)-376(wz)-1(i\\241\\242?...)-376(na)-376(z)-1(i)1(m)-1(\\246)-377(i)1(dzie)-1(,)-376(k)28(o\\273uc)27(h)-376(tr)1(z)-1(a)-376(kup)1(i\\242,)-377(b)1(ut)28(y)-376(te)-1(\\273)-377(d)1(\\252u\\273e)-1(j)-376(j)1(ak)-377(d)1(o)]TJ 0 -13.55 Td[(Go)-28(d)1(\\363)28(w)-325(ni)1(e)-325(w)-1(y)1(dzie)-1(r)1(\\273)-1(\\241..)1(.)-325(Ju)1(\\261)-1(ci,)-324(winn)1(e)-325(m)-1(i)-324(s)-1(\\241)-324(jes)-1(zcz)-1(e)-325(d)1(z)-1(ies)-1(i)1(\\246)-1(\\242)-325(ru)1(bl)1(i)-325(i)-324(dw)28(o)-56(j)1(e)-325(s)-1(zma)-1(t)1(,)]TJ 0 -13.549 Td[(p)-27(ortki)-465(i)-466(k)28(osz)-1(u)1(l\\246)-1(.)1(..)-466(Ko\\273uc)28(h)-466(c)28(ho)-28(\\242b)28(y)-465(i)-466(z)-466(pi\\246\\242)-1(.)1(..kr)1(\\363tki)-466(b)-27(\\246dzie)-1(.)1(..)-466(b)1(ucis)-1(k)56(a)-466(ze)-466(trzy)83(..)1(.)]TJ 0 -13.549 Td[(a)-430(to)-430(i)-430(c)-1(zapk)56(a)-430(b)28(y)-430(s)-1(i\\246)-430(z)-1(d)1(a\\252a...a)-430(ru)1(bla)-430(tr)1(z)-1(a)-430(z)-1(an)1(ie\\261)-1(\\242)-430(dobr)1(o)-28(dziejo)28(wi)-430(na)-430(w)27(ot)28(yw)28(\\246)-431(za)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(\\363)28(w...)1(\\221cie)-1(r)1(w)27(a..)1(.)-362(\\273)-1(e)-362(i)-362(ni)1(c)-363(ni)1(e)-363(ostanie!..)1(.)-362({)-362(Sp)1(lun)1(\\241\\252)-363(i)-361(z)-1(acz)-1(\\241\\252)-362(z)-363(k)1(ie)-1(sze)-1(n)1(i)-362(w)-363(l)1(e)-1(j)1(biku)]TJ 0 -13.549 Td[(wybi)1(e)-1(r)1(a\\242)-308(ok)1(ruc)28(h)28(y)-307(t)28(yt)1(onio)28(w)28(e)-308(i)-306(natr)1(a\\014\\252)-307(n)1(a)-307(ten)-307(p)1(ieni\\241d)1(z)-1(,)-306(o)-307(kt\\363r)1(ym)-307(b)28(y\\252)-307(zap)-27(om)-1(n)1(ia\\252)]TJ 0 -13.549 Td[(w)-232(cza)-1(sie)-232(ob)1(iad)1(u...)-231({)-231({)-231({)-232(Jes)-1(t)-231(ci)-231(goto)27(wy)-231(grosz)-1(,)-231(j)1(e)-1(st!)-231({)-232(O)1(dec)27(hcia\\252o)-231(m)27(u)-231(si\\246)-232(spa\\242)-232(n)1(agle;)]TJ 0 -13.55 Td[(o)-28(d)-283(k)56(arczm)27(y)-283(rozleg\\252)-284(si\\246)-284(d)1(aleki,)-283(pr)1(z)-1(ec)-1(edzon)28(y)-283(g\\252os)-284(m)28(uzyki)-283(i)-283(j)1(akb)28(y)-283(ec)27(ha)-283(p)-27(okrzyk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-427(T)83(a\\253cuj)1(\\241)-428(se)-428(j)1(uc)27(h)29(y)-427(i)-427(gorz)-1(a\\252\\246)-427(pij)1(\\241,)-427(i)-427(papi)1(e)-1(r)1(os)-1(y)-427(ku)1(rz\\241!)-427({)-428(w)28(e)-1(stc)27(h)1(n\\241\\252)-427(i)-427(leg\\252)]TJ -27.879 -13.549 Td[(zno)28(wu)-360(n)1(a)-360(b)1(rzuc)27(h)29(u,)-359(i)-360(p)1(atrzy\\252)-360(n)1(a)-360(sp)-28(\\246tane)-360(k)28(on)1(ie,)-360(\\273e)-360(z)-1(b)1(i\\252y)-359(s)-1(i\\246)-360(w)-359(kup)-27(\\246)-360(i)-359(gryz\\252y)-360(p)-27(o)]TJ 0 -13.549 Td[(k)56(ark)56(ac)27(h)1(,)-419(a)-418(rozm)27(y\\261la\\252,)-418(\\273)-1(e)-419(wiec)-1(zorem)-419(m)27(u)1(s)-1(i)-418(i)-418(on)-418(z)-1(a)-55(j\\261\\242)-419(do)-418(k)55(ar)1(c)-1(zm)27(y)-418(i)-418(kup)1(i\\242)-419(sobie)]TJ 0 -13.549 Td[(t)28(yton)1(iu,)-384(i)-385(c)28(ho)-28(cia\\273)-385(p)-27(opatr)1(z)-1(e\\242)-385(na)-385(b)1(alu)1(j\\241cyc)27(h)1(.)-385(Raz)-385(w)-385(raz)-385(ogl\\241d)1(a\\252)-385(p)1(ie)-1(n)1(i\\241dz)-385(i)-384(s)-1(p)-27(o-)]TJ 0 -13.55 Td[(gl\\241d)1(a\\252)-430(na)-430(s)-1(\\252o\\253)1(c)-1(e,)-430(wysok)28(o)-430(b)28(y\\252o)-430(jes)-1(zcz)-1(e)-430(i)-430(s)-1(z\\252o)-430(dzisia)-56(j)-429(tak)-430(w)28(olno)-430(ku)-429(z)-1(ac)28(ho)-28(d)1(o)28(w)-1(i)1(,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-341(s)-1(e)-342(t)1(e)-1(\\273)-342(k)1(rz)-1(y)1(nk)28(\\246)-342(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(a\\252o)-342(n)1(ie)-1(d)1(z)-1(i)1(e)-1(ln)1(ie...)-341(A)-341(rw)27(a\\252o)-341(go)-341(tak)-341(do)-341(k)55(ar)1(c)-1(zm)27(y)84(,)-341(\\273)-1(e)]TJ\nET\nendstream\nendobj\n179 0 obj <<\n/Type /Page\n/Contents 180 0 R\n/Resources 178 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n178 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n183 0 obj <<\n/Length 8348      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(52)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(wydzier\\273e)-1(\\242)-310(n)1(ie)-310(m\\363g\\252,)-309(pr)1(z)-1(ek\\252ada\\252)-309(s)-1(i\\246)-309(ino)-309(z)-310(b)-27(oku)-309(n)1(a)-310(b)-27(ok)-309(i)-309(p)-28(ost\\246kiw)28(a\\252)-310(z)-310(t)1(\\246)-1(skno\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(ale)-402(n)1(ie)-402(p)-27(os)-1(ze)-1(d)1(\\252)-402(zaraz,)-401(b)-28(o)-401(akur)1(atni)1(e)-402(z)-1(za)-402(sto)-28(d)1(o\\252y)-402(wysz)-1(ed\\252)-401(An)28(tek)-401(z)-402(Hank)56(\\241)-401(i)-402(sz)-1(l)1(i)]TJ 0 -13.549 Td[(mie)-1(d)1(z)-1(\\241)-333(w)-333(p)-28(ola.)]TJ 27.879 -13.549 Td[(An)28(tek)-486(sz)-1(ed\\252)-485(przo)-28(d)1(e)-1(m,)-486(a)-486(Han)1(k)56(a)-486(z)-486(c)27(h\\252op)1(akiem)-486(na)-486(r)1(\\246)-1(ku)-485(za)-486(nim,)-485(c)-1(zas)-1(em)]TJ -27.879 -13.549 Td[(co\\261)-429(r)1(z)-1(ekli)-427(i)-428(sz)-1(l)1(i)-428(w)28(olno,)-427(a)-428(coraz)-428(to)-428(An)28(t)1(e)-1(k)-427(p)-28(o)-28(c)28(h)28(yla\\252)-427(s)-1(i\\246)-428(n)1(ad)-428(r)1(ol\\241)-428(i)-427(dot)28(yk)56(a\\252)-428(r)1(\\246)-1(k)56(\\241)]TJ 0 -13.55 Td[(ws)-1(c)28(ho)-28(d)1(z)-1(\\241cyc)27(h)-332(\\271)-1(d)1(z)-1(ieb)-28(e\\252.)]TJ 27.879 -13.549 Td[({)-402(I)-1(d)1(z)-1(i)1(e)-1(..)1(.)-403(g\\246ste)-403(kiej)-402(s)-1(zc)-1(zotk)56(a...)-402({)-402(m)-1(r)1(ukn)1(\\241\\252)-403(i)-402(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252)-403(o)-28(cz)-1(ami)-402(te)-403(morgi,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-334(obsiew)27(a\\252)-333(z)-1(a)-333(o)-28(d)1(rob)-27(e)-1(k)-333(o)-56(j)1(c)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-333(G\\246s)-1(te,)-333(ale)-334(o)-56(j)1(c)-1(o)28(w)28(e)-334(lepsz)-1(e,)-333(idzie)-334(k)1(ie)-1(j)-332(b)-28(\\363r!)-333({)-333(m\\363)27(wi\\252a)]TJ 0 -13.549 Td[(Hank)56(a)-333(patr)1(z)-1(\\241c)-333(na)-333(s)-1(\\241sie)-1(d)1(ni)1(e)-334(z)-1(agon)29(y)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(rol)1(a)-334(lepi)1(e)-1(j)-333(d)1(opr)1(a)27(wion)1(a.)]TJ 0 -13.55 Td[({)-333(Mie\\242)-334(ze)-334(trzy)-333(kro)28(wy)83(,)-333(tob)28(y)-333(i)-333(ziem)-1(ia)-333(si\\246)-334(p)-27(o\\273)-1(y)1(w)-1(i)1(\\252)-1(a.)]TJ 0 -13.549 Td[({)-333(I)-334(k)28(on)1(ia)-333(s)-1(w)28(o)-56(j)1(e)-1(go.)]TJ 0 -13.549 Td[({)-330(I)-331(p)1(rzyc)27(h)1(o)28(w)27(a\\242)-331(co)-330(na)-330(s)-1(p)1(rze)-1(d)1(a\\273)-1(.)-330(A)-330(tak,)-330(co?)-331(K)1(a\\273)-1(d)1(\\241)-331(p)1(lew)27(\\246,)-330(k)55(a\\273d\\241)-330(ob)1(ie)-1(r)1(z)-1(yn)1(\\246)]TJ -27.879 -13.549 Td[(o)-28(ciec)-334(rac)27(h)29(uj)1(\\241)-334(i)-333(ma)-56(j)1(\\241)-334(za)-334(wielgie)-333(rze)-1(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(wsz)-1(ystk)28(o)-333(w)-1(y)1(p)-28(omin)1(a!..)]TJ 0 -13.55 Td[(Zamilkli)-301(nagle)-302(,b)-27(o)-302(ucz)-1(u)1(c)-1(i)1(e)-303(k)1(rz)-1(y)1(w)-1(d)1(y)-302(zala\\252o)-302(im)-302(s)-1(erca)-302(\\273)-1(al)1(e)-1(m,)-302(gn)1(ie)-1(w)28(e)-1(m)-302(i)-302(g\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(ym)-1(,)-333(sz)-1(ar)1(pi\\241cym)-334(b)1(un)29(te)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Ino)-333(os)-1(iem)-334(morg\\363)28(w)-333(b)28(y)-333(w)-1(y)1(pad\\252o)-333({)-333(w)-1(y)1(krzykn)1(\\241\\252)-334(b)-27(e)-1(zwie)-1(d)1(ni)1(e)-1(.)]TJ 0 -13.549 Td[({)-426(Ju)1(\\261)-1(ci,)-426(\\273e)-427(n)1(ie)-426(w)-1(i)1(\\246)-1(ce)-1(j)1(.)-426(Pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-426(to)-426(i)-426(J\\363zk)56(a)-426(i)-426(k)28(o)28(w)27(alo)28(w)28(a,)-426(i)-426(G)1(rz)-1(ela,)-426(i)-425(m)27(y)-426({)]TJ -27.879 -13.549 Td[(wylicza\\252)-1(a.)]TJ 27.879 -13.55 Td[({)-333(Ko)28(w)27(alo)28(w)28(e)-334(b)28(y)-333(sp\\252aci\\242)-334(i)-333(os)-1(ta\\242)-333(przy)-333(c)27(h)1(a\\252upi)1(e)-334(i)-333(p)-28(\\363\\252w\\252\\363)-28(cz)-1(ku)1(...)]TJ 0 -13.549 Td[({)-325(A)-326(masz)-326(to)-326(czym)-1(?)-325(.j)1(\\246)-1(kn)1(\\246)-1(\\252a)-325(a\\273)-1(e)-325(w)-326(t)28(ym)-326(u)1(c)-1(zuciu)-325(b)-27(e)-1(zsilno\\261ci)-326(t)1(ak)-326(siln)29(ym)-1(,)-325(\\273e)]TJ -27.879 -13.549 Td[(\\252z)-1(y)-383(jej)-384(p)-27(o)-28(cie)-1(k)1(\\252y)-384(p)-27(o)-384(t)28(w)27(arzy)84(,)-384(gdy)-383(ogarn\\246\\252a)-384(o)-28(cz)-1(ami)-384(te)-384(p)-27(ola)-384(o)-56(j)1(c)-1(o)28(w)28(e)-1(,)-383(t\\246)-385(ziem)-1(i)1(\\246)-385(j)1(ak)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(o)-319(cz)-1(yste,)-319(gd)1(z)-1(i)1(e)-319(i)-319(p)1(s)-1(zenica,)-318(i)-319(\\273yto,)-318(i)-318(j\\246c)-1(zm)-1(i)1(e)-1(\\253)1(,)-319(i)-318(b)1(urak)1(i)-319(o)-27(d)-318(s)-1(ki)1(b)28(y)-318(do)-318(s)-1(ki)1(b)28(y)-318(s)-1(ia\\242)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(mo\\273)-1(n)1(a...)-333(T)28(yle)-334(d)1(obra,)-333(a)-333(to)-333(w)-1(szys)-1(tk)28(o)-333(cud)1(z)-1(e...)-333(ni)1(e)-334(ic)27(h)1(...)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(b)1(ucz)-1(,)-333(g\\252up)1(ia,)-333(z)-1(a)28(w\\273)-1(d)1(y)-333(z)-334(tego)-334(osiem)-334(morg\\363)28(w)-334(n)1(as)-1(ze)-1(..)1(.)]TJ 0 -13.549 Td[({)-360(\\233eb)28(y)-359(c)27(h)1(o)-28(c)-1(i)1(a\\273)-360(z)-360(p)-28(o\\252o)28(w)27(a)-359(z)-360(c)27(h)1(a\\252up\\241)-359(i)-359(z)-360(t)28(ym)-360(k)56(apu\\261ni)1(s)-1(ki)1(e)-1(m!)-359({)-360(ws)-1(k)56(aza\\252a)-360(na)]TJ -27.879 -13.549 Td[(lew)27(o,)-333(w)-333(\\252\\241ki,)-333(gdzie)-334(mo)-28(d)1(rz)-1(a\\252y)-333(d)1(\\252ugie)-334(zagon)28(y)-333(k)56(apu)1(s)-1(t)28(y;)-333(skr\\246c)-1(i)1(li)-333(ku)-333(n)1(im)-1(.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(li)-474(n)1(a)-474(kr)1(a)-56(ju)-473(\\252\\241k)-474(p)-27(o)-28(d)-473(krzami,)-474(Han)1(k)55(a)-473(p)-28(ok)56(armia\\252a)-474(d)1(z)-1(i)1(e)-1(c)28(k)28(o,)-474(b)-27(o)-474(p\\252ak)56(a\\242)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)-1(z\\246\\252)-1(o,)-333(a)-333(An)28(tek)-333(s)-1(kr)1(\\246)-1(ci\\252)-333(pap)1(ie)-1(r)1(os)-1(a,)-333(zapali)1(\\252)-334(i)-333(p)-27(on)28(ur)1(o)-334(p)1(atrzy\\252)-334(p)1(rze)-1(d)-333(si\\246...)]TJ 27.879 -13.55 Td[(Nie)-258(m)-1(\\363)28(wi\\252)-258(on)-258(\\273)-1(on)1(ie)-1(,)-258(co)-258(go)-259(\\273ar\\252o)-258(w)27(e)-258(w)27(\\241tp)1(iac)27(h)1(,)-258(ni)-258(co)-259(m)28(u)-258(le\\273)-1(a\\252o)-258(na)-258(se)-1(r)1(c)-1(u)-258(n)1(ib)28(y)]TJ -27.879 -13.549 Td[(w)28(\\246)-1(giel)-333(roz\\273)-1(ar)1(z)-1(on)28(y)84(,)-333(b)-28(o)-333(ani)1(b)28(y)-333(m)-1(\\363g\\252)-333(wyp)-27(o)27(wiedzie\\242)-1(,)-333(n)1(ib)28(y)-333(z)-1(r)1(oz)-1(u)1(m)-1(i)1(a\\252a)-334(go)-333(dob)1(rze)-1(..)1(.)]TJ 27.879 -13.549 Td[(Zwyc)-1(za)-56(j)1(ni)1(e)-1(,)-312(jak)-313(k)28(ob)1(ieta,)-313(co)-313(ni)-312(p)-28(om)28(y\\261le)-1(n)1(ia)-313(n)1(ie)-313(m)-1(a,)-312(ni)-312(nicz)-1(ego)-313(n)1(ie)-313(w)-1(y)1(m)-1(iar)1(-)]TJ -27.879 -13.549 Td[(ku)1(je)-334(sama,)-334(i)1(no)-333(\\273)-1(yj)1(e)-334(se)-334(jak)28(o)-333(ten)-333(c)-1(i)1(e)-1(\\253)-333(p)1(ada)-55(j\\241cy)-334(o)-27(d)-333(c)-1(z\\252o)27(wiek)56(a...)]TJ 27.879 -13.549 Td[({)-258(A)-258(gos)-1(p)-27(o)-28(d)1(arst)28(w)27(o,)-258(a)-258(d)1(z)-1(iec)-1(i)1(,)-258(a)-258(kum)28(y)-258({)-258(to)-258(i)-258(ca\\252)-1(y)-257(\\261)-1(wiat)-258(la)-258(n)1(ie)-1(j)1(.)-258(Ka\\273da)-258(k)28(ob)1(ie)-1(ta)]TJ -27.879 -13.549 Td[(tak)56(a,)-470(k)56(a\\273)-1(d)1(a...)-469({)-470(roz)-1(m)28(y\\261la\\252)-470(gorzk)28(o)-470(i)-470(a\\273)-470(go)-470(\\261)-1(cis)-1(n)1(\\246)-1(\\252o)-470(za)-470(s)-1(erce)-1(.)1(..)-470({)-470(T)83(en)-470(p)1(tak,)-470(co)]TJ 0 -13.55 Td[(p)-27(olatuj)1(e)-407(nad)-406(\\252)-1(\\246gami,)-407(ma)-407(lepiej)-406(ni\\271li)-407(cz)-1(\\252o)28(wiek)-407(dr)1(ugi.)1(..)-407(Co)-407(m)28(u)-407(tam)-407(za)-407(k\\252op)-27(ot)27(y)1(!)]TJ 0 -13.549 Td[(P)28(olat)1(uje)-367(se)-1(,)-367(p)-27(o\\261)-1(p)1(iew)-1(u)1(je,)-367(a)-367(P)28(an)-366(Je)-1(zus)-367(obsiew)27(a)-367(la)-367(n)1(iego)-367(p)-28(ola,)-366(\\273)-1(e)-367(ino)-367(m)28(u)-367(zbiera\\242)]TJ 0 -13.549 Td[(a)-333(p)-28(o\\273ywia\\242)-334(si\\246...)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(i)-333(goto)28(wyc)28(h)-333(pieni\\246dzy)-333(o)-28(cie)-1(c)-333(m)-1(i)1(e)-1(\\242)-334(n)1(ie)-334(ma?)-334(zac)-1(z\\246)-1(\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)1(!...)]TJ 0 -13.55 Td[({)-406(A)-406(J\\363zc)-1(e)-406(to)-406(kup)1(i\\252)-406(k)28(orale)-406(takie,)-406(\\273)-1(e)-406(i)-406(kro)28(w)28(\\246)-407(b)28(y)-405(kup)1(i\\252)-406(z)-1(a)-406(n)1(ie)-1(,)-406(a)-406(G)1(rz)-1(eli)-406(to)]TJ -27.879 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-334(d)1(o)-333(w)27(o)-55(jsk)55(a)-333(\\261)-1(l)1(e)-334(pi)1(e)-1(n)1(i\\241dze)-1(.)]TJ\nET\nendstream\nendobj\n182 0 obj <<\n/Type /Page\n/Contents 183 0 R\n/Resources 181 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n181 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n186 0 obj <<\n/Length 9460      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(53)]TJ -335.807 -35.866 Td[({)-333(S\\252a\\242)-334(\\261le...)-333({)-333(o)-28(dp)-27(o)28(w)-1(i)1(ada\\252)-333(m)27(y\\261l\\241c)-334(o)-333(c)-1(zym)-333(inn)28(y)1(m)-1(.)]TJ 0 -13.549 Td[({)-425(A)-424(pr)1(z)-1(ec)-1(iec)27(h)-424(to)-425(u)1(krzywdzenie)-425(ws)-1(zystkic)28(h!)-424(A)-425(sz)-1(mat)28(y)-425(p)-27(o)-425(matc)-1(e)-425(to)-424(du)1(s)-1(i)]TJ -27.879 -13.549 Td[(w)-359(skrzyn)1(i)-359(i)-358(n)1(a)27(w)28(e)-1(t)-358(n)1(a)-359(o)-28(cz)-1(y)-358(n)1(ie)-359(p)-27(ok)55(a\\273e)-1(.)1(..)-358(A)-359(w)28(e)-1(\\252n)1(iaki)-358(takie,)-358(a)-359(c)28(h)28(ust)28(y)83(,)-358(a)-358(c)-1(ze)-1(p)1(ki,)-358(a)]TJ 0 -13.549 Td[(pacior)1(ki...)-372({)-373(j\\246\\252a)-373(d)1(\\252)-1(u)1(go)-373(wyli)1(c)-1(za\\242)-374(d)1(obr)1(o)-373(ws)-1(ze)-1(lk)1(ie)-373(i)-373(kr)1(z)-1(ywd)1(y)83(,)-372(i)-373(\\273ale)-1(,)-372(i)-373(n)1(adzie)-1(j)1(e)-1(,)-372(a)]TJ 0 -13.549 Td[(An)28(tek)-333(m)-1(i)1(lc)-1(za\\252)-334(za)28(wz)-1(i\\246c)-1(i)1(e)-1(,)-333(a\\273)-334(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(ona)-333(s)-1(ztur)1(c)27(hn)1(\\246)-1(\\252a)-333(go)-333(w)-334(rami\\246.)]TJ 27.879 -13.55 Td[({)-333(\\221p)1(is)-1(z)-333(to?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(S\\252uc)28(ham,)-333(gada)-55(j)-333(s)-1(e,)-333(gada)-55(j,)-333(to)-333(c)-1(i)-333(u)1(l\\273)-1(y)1(!)-334(A)-333(j)1(ak)-334(sk)28(o\\253cz)-1(y)1(s)-1(z,)-333(to)-334(mi)-333(p)-27(o)27(wiedz...)]TJ 0 -13.549 Td[(Hank)56(a,)-423(\\273e)-424(to)-423(p\\252ak)1(s)-1(iw)28(a)-423(b)28(y\\252a,)-423(a)-423(i)-423(z)-1(ebr)1(a\\252)-1(o)-423(si\\246)-424(j)1(e)-1(j)-422(du\\273o)-423(w)-424(d)1(usz)-1(y)84(,)-423(bu)1(c)27(h)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(p\\252acz)-1(em)-358(i)-356(j\\246\\252)-1(a)-357(m)28(u)-357(wyrzuca\\242)-1(,)-357(\\273e)-358(m\\363)28(wi)-357(do)-357(ni)1(e)-1(j)-357(j)1(ak)-357(do)-357(d)1(z)-1(iewki)-357(jak)1(ie)-1(j)1(,)-357(\\273e)-358(ni)1(e)-358(db)1(a)]TJ 0 -13.549 Td[(o)-333(ni\\241)-333(ani)-333(o)-333(dziec)-1(i.)]TJ 27.879 -13.549 Td[(A\\273)-334(An)28(t)1(e)-1(k)-333(ze)-1(rw)28(a\\252)-334(si\\246)-334(n)1(a)-333(r\\363)28(w)-1(n)1(e)-334(n)1(ogi)-334(i)-333(za)28(w)27(o\\252a\\252)-333(ur\\241)-27(gliwie)-334(:)]TJ 0 -13.55 Td[({)-284(W)1(ykrzyku)1(j)-283(s)-1(ob)1(ie)-1(,)-283(te)-284(gap)28(y)-283(ano)-284(ci\\246)-284(us\\252ysz)-1(\\241)-283(i)-284(p)-27(o\\273)-1(al)1(\\241)-284(s)-1(i)1(\\246)-284(nad)-283(tob\\241!)-283({)-284(Wsk)56(a-)]TJ -27.879 -13.549 Td[(za\\252)-365(o)-28(cz)-1(ami)-364(na)-364(w)-1(r)1(on)28(y)-364(le)-1(c\\241c)-1(e)-364(m)-1(imo)-364(nad)-364(\\252\\241k)56(am)-1(i,)-364(n)1(ac)-1(isn\\241\\252)-364(c)-1(zapk)28(\\246)-365(i)-364(wielkimi)-364(kro-)]TJ 0 -13.549 Td[(k)56(am)-1(i)-333(p)-27(osz)-1(ed\\252)-333(ku)-333(ws)-1(i.)]TJ 27.879 -13.549 Td[({)-333(An)28(tek,)-333(An)28(tek!)-333({)-334(w)28(o\\252a\\252a)-334(za)-334(n)1(im)-334(\\273a\\252o\\261)-1(n)1(ie,)-333(ale)-334(ani)-333(si\\246)-334(o)-28(d)1(wr\\363)-28(ci\\252.)]TJ 0 -13.549 Td[(Ob)28(win)1(\\246)-1(\\252a)-483(c)28(h\\252opak)56(a)-483(i)-482(p)-28(op)1(\\252akuj)1(\\241c)-484(sz)-1(\\252a)-483(miedzam)-1(i)-482(z)-484(p)-27(o)28(wrotem)-484(d)1(o)-483(dom)28(u;)]TJ -27.879 -13.55 Td[(ci\\246)-1(\\273k)28(o)-323(j)1(e)-1(j)-322(b)28(y\\252o)-323(n)1(a)-323(se)-1(r)1(c)-1(u)-322({)-323(an)1(i)-323(p)-27(ogada\\242)-323(ani)-322(wy\\273ali\\242)-323(s)-1(i)1(\\246)-324(p)1(rze)-1(d)-322(kim)-323(n)1(a)-323(d)1(ol\\246)-323(s)-1(w)28(o)-56(j)1(\\241.)]TJ 0 -13.549 Td[(A)-464(to)-463(c)-1(z\\252o)27(wiek)-464(\\273yje)-464(ci\\246gie)-1(m)-464(j)1(ak)-464(ten)-464(sam)-1(son,)-463(\\273)-1(e)-464(n)1(a)27(w)28(e)-1(t)-463(do)-464(s\\241s)-1(i)1(ad\\363)28(w)-464(p)-28(\\363)-55(j\\261\\242)-464(nie)]TJ 0 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-389(i)-389(p)-27(ogadan)1(iem)-389(s)-1(erca)-389(n)1(ie)-389(ucies)-1(zy)83(.)-388(Da\\252b)28(y)-388(jej)-388(An)28(te)-1(k)-388(ku)1(m)27(y!)-388(Nic,)-389(i)1(no)-389(sied\\271)]TJ 0 -13.549 Td[(w)-363(c)28(ha\\252up)1(ie)-363(a)-363(h)1(aru)1(j,)-362(a)-363(zabiega)-56(j)1(,)-362(a)-363(jesz)-1(cz)-1(e)-363(s\\252o)27(w)28(a)-362(dobr)1(e)-1(go)-362(nie)-363(u)1(s)-1(\\252yszys)-1(z!)-362(I)-1(n)1(ne)-363(d)1(o)]TJ 0 -13.549 Td[(k)56(arcz)-1(m\\363)28(w)-440(c)27(h)1(o)-28(dz\\241)-440(a)-439(na)-439(w)27(es)-1(ela..)1(.)-440(a)-439(ten)-440(An)29(te)-1(k)1(...)-439(b)-28(o)-439(to)-440(m)28(u)-439(dogo)-27(dz)-1(i)1(\\242)-440(m)-1(o\\273na?..)1(.)]TJ 0 -13.55 Td[(Cz)-1(ase)-1(m)-313(taki,)-313(\\273e)-314(i)-313(d)1(o)-313(ran)28(y)-313(p)1(rzy\\252\\363\\273)-1(.)1(..)-313(to)-313(z)-1(n)1(o)27(wu)-312(c)-1(a\\252e)-314(t)28(ygo)-27(dn)1(ie)-314(ledwie)-313(b\\241kn)1(ie)-314(j)1(akie)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(o)-318(i)-317(an)1(i)-318(sp)-27(o)-56(j)1(rz)-1(y)84(...)-317(n)1(ic)-1(,)-317(j)1(e)-1(n)1(o)-318(medytu)1(je)-318(a)-317(me)-1(d)1(ytuj)1(e)-1(.)1(..)-317(Pra)28(wda,)-317(\\273e)-318(ma)-318(i)-317(o)-317(c)-1(zym!)]TJ 0 -13.549 Td[(Bo)-380(i)-379(ten)-379(o)-28(c)-1(i)1(e)-1(c)-380(n)1(ie)-380(m\\363g\\252b)28(y)-379(to)-380(j)1(u\\273)-380(gron)29(t)-380(i)1(m)-380(o)-28(dp)1(isa\\242)-1(,)-379(ni)1(e)-380(c)-1(zas)-380(to)-379(s)-1(tar)1(e)-1(m)28(u)-379(i\\261)-1(\\242)-380(n)1(a)]TJ 0 -13.549 Td[(wycug?)-334(A)-333(dy)1(\\242)-334(dogad)1(z)-1(a\\252ab)28(y)-333(m)28(u,)-333(\\273e)-334(i)-333(ro)-28(d)1(z)-1(on)1(e)-1(m)28(u)-333(nie)-333(b)28(y\\252ob)28(y)-333(u)-333(n)1(ie)-1(j)-332(le)-1(p)1(ie)-1(j)1(...)]TJ 27.879 -13.549 Td[(Chcia\\252a)-399(pr)1(z)-1(ysi\\241\\261\\242)-400(d)1(o)-399(Ku)1(b)28(y)83(,)-398(ale)-399(przyp)1(i\\241\\252)-399(s)-1(i)1(\\246)-400(p)1(le)-1(cami)-399(do)-399(b)1(rogu)-398(i)-399(u)1(da)28(w)27(a\\252,)]TJ -27.879 -13.55 Td[(\\273e)-334(\\261pi,)-332(c)27(h)1(o)-28(\\242)-333(m)27(u)-332(s)-1(\\252o\\253ce)-333(\\261)-1(wiec)-1(i)1(\\252o)-333(prosto)-333(w)-333(o)-28(czy)83(,)-333(d)1(opi)1(e)-1(ro)-332(gdy)-333(zni)1(kn\\246\\252a)-333(z)-1(a)-332(w)27(\\246g\\252e)-1(m)]TJ 0 -13.549 Td[(sto)-28(do\\252y)84(,)-378(p)-27(o)-28(d)1(ni\\363s\\252)-378(si\\246)-1(,)-377(otrze)-1(p)1(a\\252)-378(ze)-379(s\\252om)27(y)-377(i)-378(w)28(oln)1(o)-378(j\\241\\252)-378(si\\246)-378(p)1(rz)-1(ebi)1(e)-1(ra\\242)-378(p)-27(o)-28(d)-377(sadami)]TJ 0 -13.549 Td[(ku)-333(k)56(arczm)-1(ie...)-333(p)1(ali\\252a)-333(go)-334(an)1(o)-334(t)1(a)-334(z\\252ot\\363)28(w)-1(k)56(a...)]TJ 27.879 -13.549 Td[(A)-314(k)55(ar)1(c)-1(zma)-315(sta\\252a)-315(n)1(a)-314(k)28(o\\253cu)-314(ws)-1(i,)-314(za)-315(p)1(leban)1(i\\241,)-314(na)-314(p)-28(o)-27(c)-1(z\\241tku)-314(top)-27(olo)28(w)28(e)-1(j)-314(d)1(rogi.)]TJ 0 -13.549 Td[(Lud)1(z)-1(i)-416(b)28(y\\252o)-417(ma\\252o)-417(co;)-417(m)27(u)1(z)-1(y)1(k)55(a)-417(czas)-1(em)-418(p)-27(ob)1(rz)-1(\\246kiw)28(a\\252a,)-417(ale)-417(n)1(ikto)-417(n)1(ie)-417(ta\\253co-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-403(jes)-1(zc)-1(ze)-1(,)-402(za)-403(ran)1(o)-403(b)28(y\\252o,)-402(i)-403(m\\252o)-28(dzi)-403(w)28(oleli)-402(gz)-1(i\\242)-403(si\\246)-403(w)-403(s)-1(ad)1(z)-1(i)1(e)-404(al)1(b)-28(o)-402(w)-1(y)1(s)-1(ta)28(w)28(a\\242)-404(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)-28(dj)1(e)-1(\\271dzie)-337(i)-336(p)-28(o)-27(d)-337(\\261cianami,)-336(gdzie)-337(na)-336(\\261)-1(wie\\273)-1(y)1(c)27(h,)-336(\\273\\363\\252t)27(y)1(c)27(h)-336(jes)-1(zc)-1(ze)-337(b)-27(e)-1(lk)56(ac)28(h)-337(siedzia\\252o)]TJ 0 -13.549 Td[(sp)-28(or)1(o)-434(dziew)27(cz)-1(y)1(n)-433(i)-434(k)28(ob)1(iet,)-434(a)-433(w)-434(wielgiej)-433(iz)-1(b)1(ie)-434(z)-434(cz)-1(ar)1(n)28(ym,)-434(ok)28(op)-27(con)28(ym)-434(p)1(u\\252ap)-27(e)-1(m)]TJ 0 -13.549 Td[(pu)1(s)-1(t)1(o)-343(pra)28(wie)-343(b)28(y\\252o,)-343(ma\\252e)-343(prze)-1(p)1(alone)-343(sz)-1(yb)1(ki)-343(p)1(rze)-1(siew)27(a\\252y)-343(cz)-1(erw)28(one)-343(pr)1(z)-1(edzac)27(h)1(o)-28(d-)]TJ 0 -13.549 Td[(ni)1(e)-296(\\261w)-1(i)1(at\\252o)-296(tak)-295(s\\252ab)-28(o,)-295(\\273e)-296(i)1(no)-295(s)-1(m)28(uga)-295(le\\273)-1(a\\252a)-295(na)-295(p)-27(o)28(w)-1(y)1(bij)1(anej)-295(p)-27(o)-28(d\\252o)-28(d)1(z)-1(e,)-295(a)-295(w)-296(k)56(\\241tac)27(h)]TJ 0 -13.549 Td[(mrok)-471(zalega\\252.)-471(Jakie\\261)-471(lud)1(z)-1(i)1(e)-472(siedzie)-1(li)-470(z)-1(a)-470(s)-1(to\\252ami)-471(p)-27(o)-28(d)-470(\\261)-1(cian\\241,)-470(ale)-471(roz)-1(ezna\\242)-471(nie)]TJ 0 -13.55 Td[(roze)-1(zna\\252,)-333(kto)-333(taki)1(?)]TJ 27.879 -13.549 Td[(Jeden)-380(Jam)28(br)1(o\\273)-1(y)-379(z)-380(brac)28(kim)-380(o)-28(d)-379(\\261w)-1(i)1(at\\252a)-380(s)-1(t)1(o)-56(ja\\252)-379(p)-28(o)-28(d)-379(okn)1(e)-1(m)-380(z)-380(b)1(utele)-1(czk)55(\\241)-379(w)]TJ -27.879 -13.549 Td[(gar\\261c)-1(i)-333({)-333(pr)1(z)-1(epij)1(ali)-333(g\\246s)-1(to)-333(do)-333(sie)-1(b)1(ie)-334(i)-333(p)-27(ogadyw)28(ali.)1(..)]TJ 27.879 -13.549 Td[(Bas)-1(y)-480(bu)1(c)-1(za\\252y)-481(j)1(ak)28(o)-481(ten)-481(b)1(\\241k,)-481(k)1(ie)-1(j)-480(si\\246)-481(w)27(edr)1(z)-1(e)-481(d)1(o)-481(izb)28(y)-481(ze)-481(dw)28(oru)-480(i)-481(l)1(e)-1(c\\241c)-1(y)]TJ -27.879 -13.549 Td[(h)28(u)1(c)-1(zy)83(.)1(..)-456(a)-456(czas)-1(em)-456(s)-1(kr)1(z)-1(yp)1(k)56(a)-456(z)-456(nag\\252a)-456(zapi)1(s)-1(k)56(a\\252a)-456(cie)-1(n)1(k)28(o)-456(jak)28(ob)29(y)-456(p)1(tas)-1(ze)-1(k)-455(w)27(ab)1(i\\241cy)]TJ 0 -13.55 Td[(ab)-27(o)-334(i)-333(b)-27(\\246)-1(b)-27(enek)-334(zah)28(u)1(rk)28(ota\\252)-333(i)-333(p)-28(ob)1(rz\\246)-1(ki)1(w)27(a\\252...)-333(ale)-333(w)-1(n)1(e)-1(t)-333(cic)27(h)1(o\\261)-1(\\242)-333(z)-1(alega\\252a.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-253(p)-27(os)-1(ze)-1(d)1(\\252)-253(pr)1(os)-1(to)-253(d)1(o)-253(s)-1(zyn)1(kw)27(asu,)-252(z)-1(a)-253(kt\\363r)1(ym)-253(s)-1(iedzia\\252)-253(Jan)1(kiel)-253(w)-253(jar)1(m)27(u\\252ce)]TJ\nET\nendstream\nendobj\n185 0 obj <<\n/Type /Page\n/Contents 186 0 R\n/Resources 184 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n184 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n189 0 obj <<\n/Length 8287      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(54)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(i)-273(w)-273(k)28(oszuli)-272(t)28(ylk)28(o,)-273(b)-27(o)-273(ciep\\252o)-273(b)28(y)1(\\252)-1(o,)-272(p)-27(og)-1(\\252askiw)28(a\\252)-273(siw)27(\\241)-272(bro)-27(d\\246,)-273(kiw)28(a\\252)-273(si\\246)-273(i)-273(wycz)-1(yt)28(yw)28(a\\252)]TJ 0 -13.549 Td[(w)-334(k)1(s)-1(i\\241\\273ce)-1(,)-333(pr)1(z)-1(y)1(k\\252ada)-56(j)1(\\241c)-334(o)-28(cz)-1(y)-333(p)1(ra)28(wie)-334(d)1(o)-334(sam)27(yc)28(h)-333(k)56(art.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-488(si\\246)-488(nam)28(y\\261)-1(l)1(a\\252)-1(,)-487(pr)1(z)-1(es)-1(t\\246p)-27(o)27(w)28(a\\252)-488(z)-488(nogi)-488(n)1(a)-488(nog\\246,)-488(p)1(rze)-1(li)1(c)-1(za\\252)-488(pieni)1(\\241dze)-1(,)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dr)1(ap)28(yw)28(a\\252)-394(s)-1(i\\246)-394(p)-27(o)-394(k)28(o\\252tun)1(ac)27(h)-394(i)-393(s)-1(ta\\252)-394(tak)-393(d\\252ugo,)-393(a\\273)-395(Jan)1(kiel)-394(sp)-28(oziera\\252)-394(na)-394(n)1(iego)-394(i)]TJ 0 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(es)-1(ta)-55(j\\241c)-333(s)-1(i\\246)-333(kiw)27(a\\242)-333(i)-333(m)-1(o)-28(d)1(li\\242,)-333(br)1(z)-1(\\246kn\\241\\252)-333(raz)-334(i)-333(d)1(rugi)-333(k)1(ie)-1(l)1(is)-1(zk)56(am)-1(i)1(...)]TJ 27.879 -13.55 Td[({)-333(P)28(\\363\\252kw)28(ate)-1(r)1(e)-1(k,)-333(in)1(o)-333(krze)-1(p)1(kiej!)-333({)-333(z)-1(arz\\241dzi\\252)-333(wre)-1(szc)-1(ie.)]TJ 0 -13.549 Td[(Jan)1(kiel)-334(w)-333(milcz)-1(eniu)-333(n)1(alew)27(a\\252)-333(i)-333(le)-1(w)28(\\241)-333(r\\246)-1(k)28(\\246)-333(w)-1(y)1(c)-1(i\\241)-27(ga\\252)-334(p)-27(o)-333(pieni\\241d)1(z)-1(e...)]TJ 0 -13.549 Td[({)-333(W)-333(s)-1(zk\\252o?)-334({)-333(z)-1(ap)29(yta\\252,)-333(z)-1(gar)1(n\\241)28(ws)-1(zy)-333(do)-333(opa\\252ki)-333(za\\261)-1(n)1(ie)-1(d)1(z)-1(i)1(a\\252)-1(e)-333(m)-1(i)1(e)-1(d)1(z)-1(iak)1(i.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(n)1(ie)-334(w)-333(but)1(!...)]TJ 0 -13.549 Td[(Usun\\241\\252)-438(s)-1(i\\246)-439(n)1(a)-439(s)-1(am)-439(k)28(on)1(ie)-1(c)-439(sz)-1(yn)1(kw)28(as)-1(u)1(,)-439(wyp)1(i\\252)-439(pi)1(e)-1(rwsz)-1(y)-438(kielisz)-1(ek,)-439(spl)1(un)1(\\241\\252)]TJ -27.879 -13.549 Td[(i)-399(j)1(\\241\\252)-399(p)-28(ogl)1(\\241da\\242)-399(p)-28(o)-399(k)56(ar)1(c)-1(zm)-1(i)1(e)-1(;)-399(wyp)1(i\\252)-399(dr)1(ugi,)-398(pr)1(z)-1(yj)1(rza\\252)-399(s)-1(i\\246)-399(bu)1(tele)-1(cz)-1(ce)-399(p)-28(o)-27(d)-399(\\261w)-1(i)1(at\\252o,)]TJ 0 -13.55 Td[(stukn)1(\\241\\252)-334(n)1(i\\241)-333(m)-1(o)-27(c)-1(no.)]TJ 27.879 -13.549 Td[({)-262(Da)-55(jcie)-262(no)-261(dr)1(ugi)-262(i)-261(mac)27(hor)1(ki!)-261({)-262(rzek\\252)-262(\\261m)-1(ielej,)-261(b)-28(o)-261(b\\252oga)-262(ciep\\252o\\261\\242)-263(go)-261(przej\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-334(gor)1(z)-1(a\\252ce)-334(i)-333(dziwna)-333(m)-1(o)-27(c)-334(rozla\\252a)-333(m)27(u)-333(si\\246)-334(p)-27(o)-334(k)28(o\\261ciac)27(h.)]TJ 27.879 -13.549 Td[({)-333(Zas)-1(\\252ugi)-333(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(Ku)1(ba)-333(o)-28(debr)1(a\\252)-1(?)]TJ 0 -13.549 Td[({)-333(Gdzieb)28(y)83(.)1(..)-333(No)28(w)-1(y)-333(Rok)-333(to?)]TJ 0 -13.55 Td[({)-333(Mo\\273e)-334(dola\\242)-333(araku)1(?)]TJ 0 -13.549 Td[({)-368(Al)1(e)-1(..)1(.)-368(n)1(ie)-368(c)27(h)28(w)28(aci...)-367({)-368(P)1(rze)-1(li)1(c)-1(zy\\252)-368(p)1(ie)-1(n)1(i\\241dze)-368(i)-367(\\273)-1(a\\252o\\261nie)-368(sp)-28(o)-55(jr)1(z)-1(a\\252)-367(na)-368(\\015)1(as)-1(zk)28(\\246)]TJ -27.879 -13.549 Td[(arak)1(u.)]TJ 27.879 -13.549 Td[({)-333(P)28(ob)-27(orguj)1(\\246)-1(,)-333(alb)-27(o)-333(ja)-333(to)-333(Kub)28(y)-333(n)1(ie)-334(znam!..)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(tr)1(z)-1(eba..)1(.)-334(c)28(h)28(to)-333(b)-28(or)1(guj)1(e)-1(,)-333(ten)-333(s)-1(i)1(\\246)-334(z)-334(bu)1(t\\363)28(w)-334(zz)-1(u)1(je...-p)-27(o)27(wiedzia\\252)-333(os)-1(tr)1(o.)]TJ 0 -13.55 Td[(Mi)1(m)-1(o)-333(to)-333(Janki)1(e)-1(l)-333(p)-27(os)-1(ta)28(wi\\252)-333(przed)-333(nim)-333(\\015asz)-1(ec)-1(zk)28(\\246)-334(arak)1(u.)]TJ 0 -13.549 Td[(Op)1(ie)-1(r)1(a\\252)-368(s)-1(i\\246,)-368(j)1(u\\273)-368(na)28(w)27(et)-368(b)1(ra\\252)-368(s)-1(i)1(\\246)-369(wyj)1(\\261)-1(\\242,)-368(ale)-368(ju)1(c)27(ha)-368(h)1(arak)-368(t)1(ak)-368(z)-1(ap)1(ac)27(h)1(nia\\252,)-368(\\273e)]TJ -27.879 -13.549 Td[(ja\\273e)-334(w)-333(nosie)-334(wierci\\252o,)-334(wi\\246c)-334(si\\246)-334(i)-333(n)1(ie)-334(zm)-1(aga\\252)-333(d\\252u)1(\\273)-1(ej,)-333(jeno)-333(wypi)1(\\252)-334(n)1(ie)-334(me)-1(d)1(ytu)1(j\\241c.)]TJ 27.879 -13.549 Td[({)-333(Zarobi)1(li\\261c)-1(ie)-333(w)-334(les)-1(i)1(e)-1(?...)-333({)-333(p)28(yta\\252)-333(Jank)1(ie)-1(l)-333(cierpl)1(iwie)-1(.)]TJ 0 -13.549 Td[({)-343(Nie)-344(w)-343(le)-1(sie...)-343(ptaszk)28(\\363)27(w,)-343(com)-344(je)-343(w)-344(s)-1(i)1(d\\252a)-343(c)27(h)28(yci\\252,)-343(zanies)-1(\\252em)-344(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(o)27(wi)]TJ -27.879 -13.55 Td[(sz)-1(e\\261)-1(\\242)-334(i)-333(d)1(ali)-333(mi)-334(z\\252ot\\363)28(w)-1(k)28(\\246...)]TJ 27.879 -13.549 Td[({)-333(Z\\252)-1(ot)1(\\363)27(wk)28(\\246)-334(za)-333(s)-1(ze)-1(\\261\\242)-1(!)-333(Ja)-333(b)28(ym)-333(z)-1(a)-333(k)56(a\\273)-1(d)1(e)-1(go)-333(da\\252)-333(Ku)1(bie)-334(d)1(z)-1(i)1(e)-1(si\\241tk)28(\\246.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-333(kur)1(opat)28(wy)-333(to)-334(k)28(osz)-1(ern)1(e)-1(?..)1(.)-334({)-333(zdumia\\252)-333(s)-1(i)1(\\246)-1(.)]TJ 0 -13.549 Td[(Niec)27(h)-334(Kub)-27(\\246)-336(g\\252o)28(w)28(a)-335(o)-335(to)-335(ni)1(e)-336(b)-27(oli..)1(.)-335(ni)1(e)-1(c)27(h)-334(t)28(ylk)28(o)-335(p)1(rzyniesie)-336(d)1(u\\273o,)-335(a)-335(za)-335(k)55(a\\273d\\241)]TJ -27.879 -13.549 Td[(dostan)1(ie)-334(zaraz)-334(d)1(o)-334(r\\246ki)-333(p)-27(o)-334(d)1(z)-1(i)1(e)-1(si\\241tce)-1(.)-333(Ase)-1(n)1(c)-1(j)1(\\246)-334(p)-28(osta)28(wi\\246)-334(n)1(a)-334(zgo)-28(d\\246,)-333(c)-1(o?)]TJ 27.879 -13.55 Td[({)-333(I)-334(p)-27(o)-333(c)-1(a\\252ym)-333(dzie)-1(si\\241tku)-333(J)1(ankiel)-333(z)-1(ap)1(\\252ac)-1(i)1(?)-1(.)1(..)]TJ 0 -13.549 Td[({)-475(M)1(o)-56(je)-475(s\\252o)28(w)27(o)-475(n)1(ie)-475(te)-1(n)-474(wiatr)1(.)-475(A)-475(za)-475(te)-475(sz)-1(e\\261)-1(\\242...)-474(to)-475(Ku)1(ba)-474(m)-1(ia\\252b)29(y)-475(ni)1(e)-476(d)1(w)27(a)]TJ -27.879 -13.549 Td[(p)-27(\\363\\252kw)27(aterk)1(i)-373(c)-1(zyste)-1(j)1(,)-373(a)-373(c)-1(zte)-1(r)1(y)-373(z)-374(ar)1(akiem)-374(i)-372(\\261)-1(ledzia,)-373(i)-373(b)1(u\\252k)28(\\246,)-373(i)-373(paczk)28(\\246)-374(mac)27(hor)1(ki..)1(.)]TJ 0 -13.549 Td[(rozumie)-334(K)1(ub)1(a?)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-471(Ju\\261c)-1(i)1(...)-471(cz)-1(tery)-471(p)-27(\\363\\252kw)27(aterki)-471(z)-471(arakiem)-472(i)-471(\\261ledzia...)-471(i.)1(..j)1(u\\261)-1(ci,)-471(n)1(ie)-472(b)28(y)1(dlem)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h,)-455(to)-454(m)-1(i)1(arkuj)1(\\246)-1(.)1(..)-455(r)1(yc)27(h)28(t)28(y)1(k)-455(pr)1(a)27(wd)1(a!)-455(Cz)-1(tery)-454(p)-28(\\363\\252k)1(w)27(aterki)-454(z)-456(h)1(araki)1(e)-1(m...)-454(i)]TJ 0 -13.55 Td[(mac)27(hor)1(k)56(a,)-392(i)-392(b)1(u\\252k)28(\\363)28(w...)-391(i)-392(c)-1(a\\252ego)-392(\\261le)-1(d)1(z)-1(i)1(a...)-392({)-391(Mro)-27(c)-1(zy\\252a)-392(go)-392(j)1(u\\273)-392(w)27(\\363)-27(dk)56(a)-392(i)-392(n)1(iec)-1(o)-392(r)1(oz)-1(-)]TJ 0 -13.549 Td[(bi)1(e)-1(r)1(a\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Przyn)1(ie)-1(sie)-334(K)1(ub)1(a?)-1(..)1(.)]TJ 0 -13.549 Td[({)-274(Cz)-1(t)1(e)-1(ry)-273(p)-28(\\363\\252k)1(w)27(aterki.)1(..)-274(i)-273(\\261)-1(led\\271...)-273(i...)-273(Przyn)1(ie)-1(s\\246)-1(.)1(..)-274(Cie,)-274(\\273e)-1(b)28(y)1(m)-275(to)-273(m)-1(ia\\252)-274(strzel-)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(..)1(.)-382({)-382(ozw)27(a\\252)-382(si\\246)-382(przytomni)1(e)-1(j)-381(i)-382(j)1(\\241\\252)-382(z)-1(n)1(o)27(wu)-381(obli)1(c)-1(za\\242)-383({)-382(k)28(o\\273uc)28(h)-382(n)1(a)-382(ten)-382(p)1(rz)-1(y)1(k\\252ad)-382(z)]TJ 0 -13.55 Td[(pi)1(\\246)-1(\\242)-264(ru)1(bli.)1(..)-264(bu)1(t)28(y)-264(b)28(y)-264(si\\246)-264(z)-1(d)1(a\\252y)83(..)1(.)-264(z)-1(e)-264(trzy)-264(ru)1(bl)1(e)-1(..)1(.)-264(ni;)-263(nie)-264(c)27(h)28(w)28(ac)-1(i)1(...)-264(a)-264(k)28(o)28(w)28(al)-264(b)28(y)-264(c)28(hcie)-1(l)1(i)]TJ 0 -13.549 Td[(z)-334(p)1(i\\246)-1(\\242)-333(rub)1(li)-333(za)-334(f)1(uzj\\246...)-333(t)28(yla)-333(c)-1(o)-333(o)-28(d)-333(Raf)1(a\\252a...)-333(ni)1(...)-333(m)27(y)1(\\261)-1(la\\252)-333(g\\252o\\261)-1(n)1(o.)]TJ\nET\nendstream\nendobj\n188 0 obj <<\n/Type /Page\n/Contents 189 0 R\n/Resources 187 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 174 0 R\n>> endobj\n187 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n192 0 obj <<\n/Length 8961      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(55)]TJ -335.807 -35.866 Td[(Jan)1(kiel)-334(zrob)1(i\\252)-334(szybki)1(e)-334(obl)1(ic)-1(ze)-1(n)1(ie)-334(k)1(re)-1(d)1(\\241)-333(i)-334(sze)-1(pn)1(\\241\\252)-334(m)28(u)-333(cic)27(h)1(o)-334(d)1(o)-334(u)1(c)27(h)1(a:)]TJ 0 -13.549 Td[({)-333(Zas)-1(tr)1(z)-1(eli\\252b)28(y)-333(Ku)1(ba)-333(s)-1(ar)1(n\\246?)-1(.)1(.)]TJ 0 -13.549 Td[({)-333(Ale)-1(,)-333(z)-333(pi\\246\\261)-1(ci)-333(nie)-333(z)-1(astrze)-1(li)1(,)-333(a)-334(z)-334(f)1(uzji)-333(tob)29(ym)-334(j)1(uc)27(h)1(\\246)-334(ustrze)-1(l)1(i\\252...)]TJ 0 -13.549 Td[({)-333(Kub)1(a)-334(u)1(mie)-334(strz)-1(eli\\242?...)]TJ 0 -13.549 Td[({)-347(Jan)1(kiel)-347(j)1(e)-1(st)-347(\\233yd)1(,)-347(to)-347(i)-346(ni)1(e)-348(wie,)-347(a)-346(w)27(e)-347(ws)-1(i)-346(wie)-1(d)1(z)-1(\\241)-346(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(,)-346(\\273)-1(e)-347(c)27(h)1(o)-28(d)1(z)-1(i\\252em)]TJ -27.879 -13.55 Td[(z)-334(d)1(z)-1(iedzicam)-1(i)-333(d)1(o)-334(b)-27(oru)1(,)-333(\\273)-1(e)-334(mi)-333(ten)-333(kul)1(as)-334(pr)1(z)-1(es)-1(tr)1(z)-1(elili)1(...)-333(to)-333(umie\\242)-334(umiem)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-400(Ja)-400(dam)-400(s)-1(tr)1(z)-1(elb)-27(\\246)-1(,)-400(d)1(am)-401(p)1(ro)-28(c)28(h,)-400(d)1(am)-1(,)-400(co)-400(p)-28(otr)1(z)-1(eba.)1(..)-400(a)-400(Kub)1(a,)-400(c)-1(o)-400(u)1(s)-1(tr)1(z)-1(eli,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(nies)-1(i)1(e)-442(do)-441(mni)1(e)-1(!)-441(Za)-441(sarn\\246)-441(dam)-441(ca\\252)-1(ego)-441(ru)1(bla.)1(..)-441(s)-1(\\252y)1(s)-1(zy?...)-441(Ca\\252e)-1(go)-441(r)1(ub)1(la!)-441(Za)]TJ 0 -13.549 Td[(pr)1(o)-28(c)27(h)-470(Ku)1(ba)-470(z)-1(ap)1(\\252ac)-1(i)-470(pi)1(\\246)-1(tn)1(a\\261)-1(cie)-471(k)28(opi)1(e)-1(j)1(e)-1(k)-470(o)-28(d)-470(sz)-1(tu)1(ki,)-470(o)-28(dt)1(r\\241c)-1(\\246...)-470(A)-470(z)-1(a)-470(to,)-471(co)-470(s)-1(i\\246)]TJ 0 -13.549 Td[(fu)1(z)-1(j)1(a)-333(b)-28(\\246dzie)-334(p)1(s)-1(u)1(\\242)-1(,)-333(to)-333(Kub)1(a)-333(przyn)1(ie)-1(sie)-334(\\242wiartk)28(\\246)-334(o)28(wsa...)]TJ 27.879 -13.549 Td[({)-407(Rub)1(la)-407(z)-1(a)-407(sarn)1(\\246)-1(..)1(.)-407(a)-407(nib)28(y)-406(ja)-407(z)-1(a)-407(p)1(ro)-28(c)28(h)-407(pi)1(\\246)-1(tn)1(a\\261)-1(cie...)-407(ca\\252e)-1(go)-407(ru)1(bl)1(a!...)-407(n)1(ib)28(y)]TJ -27.879 -13.55 Td[(jak)-333(to?..)1(.)]TJ 27.879 -13.549 Td[(Jan)1(kiel)-334(zno)28(wu)-333(wylicza\\252)-334(m)28(u)-333(s)-1(zc)-1(ze)-1(g\\363\\252o)28(w)28(o....)]TJ 0 -13.549 Td[({)-333(Ows)-1(a?...)-333(P)1(rze)-1(cie)-1(c)28(h)-333(k)28(oni)1(om)-334(o)-28(d)-333(p)28(y)1(s)-1(k)56(a)-333(nie)-333(o)-28(dejm\\246)-1(.)1(..to)-333(jedn)1(o)-334(zrozumia\\252.)]TJ 0 -13.549 Td[({)-333(P)28(o)-333(c)-1(o)-333(br)1(a\\242)-334(k)28(oniom!)-333(U)-333(B)-1(or)1(yn)28(y)-333(jes)-1(t)-333(i)-333(gd)1(z)-1(ie)-333(ind)1(z)-1(iej.)1(..)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(n)1(ib)28(y)84(...)-333({)-333(wytrze)-1(sz)-1(cza\\252)-334(o)-28(cz)-1(y)-333(i)-333(k)56(alku)1(lo)28(w)27(a\\252.)]TJ 0 -13.55 Td[({)-370(W)1(s)-1(zys)-1(t)1(kie)-370(tak)-369(robi)1(\\241!)-370(A)-369(Kub)1(a)-370(m)28(y\\261)-1(la\\252,)-369(sk)55(\\241d)-369(p)1(arob)-27(c)-1(y)-369(m)-1(a)-55(j\\241)-369(pieni\\241d)1(z)-1(e?...)]TJ -27.879 -13.549 Td[(Ka\\273dem)27(u)-399(tr)1(z)-1(eba)-399(mac)27(hor)1(ki,)-399(a)-399(kielisz)-1(k)56(a)-399(w)27(\\363)-28(d)1(ki,)-399(a)-399(p)-28(ota\\253)1(c)-1(o)28(w)28(a\\242)-400(w)-400(n)1(iedzie)-1(l)1(\\246)-1(!.)1(..)-399(T)83(o)]TJ 0 -13.549 Td[(sk)55(\\241d)-333(wzi\\241\\242?)-1(..)1(.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(.)1(..)-370(z\\252o)-28(d)1(z)-1(iej)-369(to)-370(j)1(e)-1(ste)-1(m,)-369(parc)28(h)28(u)-369(jeden,)-369(c)-1(zy)-370(co?..)-369(z)-1(agrzmia\\252)-370(n)1(agle)-370(bij)1(\\241c)]TJ -27.879 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(\\241)-334(w)-333(s)-1(t\\363\\252,)-333(a\\273)-334(ki)1(e)-1(li)1(s)-1(zki)-333(p)-27(o)-28(dsk)28(o)-28(cz)-1(y\\252y)84(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(o)-333(si\\246)-334(Ku)1(ba)-333(rzuci!)-333(Niec)27(h)-333(Ku)1(ba)-333(p\\252aci)-333(i)-334(i)1(dzie)-334(sobie)-334(d)1(o)-333(diab)1(\\252a!...)]TJ 0 -13.549 Td[(Ale)-388(Ku)1(ba)-388(n)1(ie)-388(z)-1(ap)1(\\252ac)-1(i\\252)-387(i)-388(n)1(ie)-388(p)-28(osz)-1(ed\\252,)-387(nie)-388(mia\\252)-388(j)1(u\\273)-388(pi)1(e)-1(ni)1(\\246)-1(d)1(z)-1(y)-387(i)-388(win)1(ie)-1(n)-387(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(\\233yd)1(o)27(wi.)1(..)-482(t)1(o)-482(si\\246)-482(ino)-481(s)-1(p)1(ar\\252)-482(ci\\246\\273)-1(k)28(o)-481(o)-482(sz)-1(y)1(nkw)28(as)-482(i)-482(j)1(\\241\\252)-482(se)-1(n)1(nie)-482(ob)1(licz)-1(a\\242,)-481(a)-482(Jan)1(kiel)]TJ 0 -13.549 Td[(ud)1(obr)1(uc)27(h)1(a\\252)-334(si\\246)-334(i)-333(n)1(ic)-334(j)1(u\\273)-334(n)1(ie)-334(m\\363)28(w)-1(i)1(\\252)-1(.)1(..)]TJ 27.879 -13.549 Td[(T)28(ym)-1(czas)-1(em)-351(do)-351(k)56(arcz)-1(m)28(y)-351(n)1(ap\\252yw)28(a\\252o)-351(coraz)-351(wi\\246)-1(ce)-1(j)-350(lu)1(dzi,)-351(b)-27(o)-351(j)1(u\\273)-351(mrok)-350(g\\246)-1(st-)]TJ -27.879 -13.55 Td[(ni)1(a\\252,)-275(zapali)1(li)-274(\\261)-1(wiat\\252o,)-274(m)27(u)1(z)-1(y)1(k)55(a)-274(ra\\271niej)-274(si\\246)-275(oz)-1(w)28(a\\252a)-275(i)-274(gw)28(ar)-274(s)-1(i\\246)-275(p)-27(o)-28(d)1(nosi\\252;)-274(nar\\363)-27(d)-274(kup)1(i\\252)]TJ 0 -13.549 Td[(si\\246)-415(p)1(rzy)-414(sz)-1(y)1(nkw)28(as)-1(i)1(e)-1(,)-414(p)-27(o)-28(d)-413(\\261c)-1(ian)1(am)-1(i)-413(alb)-27(o)-414(i)-414(zgo\\252a)-414(w)-414(p)-28(o\\261ro)-27(dku)-413(izb)28(y)-414(i)-413(rai\\252,)-413(p)-28(oga-)]TJ 0 -13.549 Td[(dy)1(w)27(a\\252,)-465(u)1(\\273)-1(ala\\252)-465(si\\246,)-465(a)-465(kto)-465(n)1(ie)-1(k)1(to)-465(i)-465(pr)1(z)-1(epij)1(a\\252)-465(do)-465(d)1(rugi)1(e)-1(go,)-465(al)1(e)-466(z)-465(rzadk)56(a,)-465(b)-27(o)-465(nie)]TJ 0 -13.549 Td[(na)-440(p)1(ija\\253)1(s)-1(t)28(w)28(o)-440(przysz)-1(li)1(,)-440(jeno)-440(tak)-440(sobie)-440(p)-28(o)-440(s\\241s)-1(iedzku)-440(p)-27(osta\\242)-1(,)-440(p)-27(ogw)28(arz)-1(y)1(\\242)-1(,)-440(skrzy-)]TJ 0 -13.549 Td[(pi)1(c)-353(p)-28(os\\252uc)27(h)1(a\\242)-353(ab)-28(o)-352(i)-353(b)1(as)-1(\\363)28(w,)-353(co\\261)-353(niec)-1(o\\261)-353(p)-27(os)-1(\\252y)1(s)-1(ze)-1(\\242)-353(n)1(o)27(w)28(e)-1(go;)-352(ni)1(e)-1(d)1(z)-1(iela)-353(p)1(rze)-1(ciec)27(h)-352(to)]TJ 0 -13.55 Td[(o)-28(d)1(p)-28(o)-27(c)-1(z\\241\\242)-421(ni)-420(f)1(olg\\246)-421(d)1(a\\242)-421(cie)-1(k)56(a)28(w)28(o\\261)-1(ci)-420(nie)-420(grze)-1(c)27(h)1(,)-420(a)-420(c)27(ho)-27(\\242)-1(b)28(y)-420(i)-420(ten)-420(ki)1(e)-1(li)1(s)-1(ze)-1(k)-420(wyp)1(i\\242)-421(z)]TJ 0 -13.549 Td[(ku)1(m)-1(ami..)1(.)-318(b)28(yle)-319(p)1(rzysto)-56(j)1(nie)-319(i)-318(b)-27(ez)-319(obr)1(az)-1(y)-318(b)-27(os)-1(ki)1(e)-1(j)-318(si\\246)-319(ob)29(y\\242)-319(ob)28(y)1(\\252)-1(o,)-318(to)-318(i)-318(sam)-319(dob)1(ro-)]TJ 0 -13.549 Td[(dziej)-283(nie)-284(b)1(ron)1(i\\252...)-283(Jak\\273e)-1(,)-283(i)-283(b)28(yd)1(l\\246)-284(n)1(a)-284(ten)-283(przyk\\252ad)-283(p)-27(o)-283(pracy)-283(o)-28(dp)-27(o)-28(cz)-1(\\241\\242)-284(r)1(ade)-284(i)-283(m)27(u)1(s)-1(i)1(.)]TJ 0 -13.549 Td[(A)-435(z)-1(a\\261)-436(p)1(rz)-1(y)-435(stole)-436(zas)-1(iedl)1(i)-436(gosp)-28(o)-27(darze)-436(starsi)-436(i)-435(k)28(obi)1(e)-1(t)28(y)-435(niekt\\363r)1(e)-1(,)-435(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(ane)-436(w)]TJ 0 -13.549 Td[(cz)-1(erw)28(one)-315(w)28(e)-1(\\252ni)1(aki)-314(i)-315(c)28(h)28(ust)28(y)83(,)-314(\\273e)-315(widzia\\252y)-314(s)-1(i\\246)-314(jak)28(o)-314(te)-315(m)-1(al)1(w)-1(y)-314(rozkwit\\252e,)-314(a)-315(\\273e)-315(raze)-1(m)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)-280(m\\363)28(wili,)-280(to)-280(i)1(no)-280(sz)-1(u)1(m)-281(sz)-1(ed\\252)-280(p)-27(o)-280(k)55(ar)1(c)-1(zmie)-1(,)-279(kiejb)28(y)-280(b)-27(oru)1(,)-280(i)-280(tu)1(p)-28(ot)-280(n)1(\\363g,)-280(jak)28(ob)29(y)]TJ 0 -13.55 Td[(bi)1(c)-1(ie)-333(c)-1(epami)-333(w)-334(kl)1(e)-1(p)1(is)-1(k)28(o,)-333(i)-333(g\\252os)-334(t)28(yc)28(h)-333(s)-1(k)1(rz)-1(y)1(pic,)-333(c)-1(o)-333(c)-1(i)1(\\246)-1(giem)-334(\\261pi)1(e)-1(w)28(a\\252y)-334(\\014)1(gluj)1(\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(\\377)-56(A)-333(c)27(h)28(to)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(z)-1(a)-333(mn\\241)-333(goni\\252?...)-333(za)-333(m)-1(n)1(\\241)-334(gon)1(i\\252...\")]TJ 0 -13.549 Td[({)-246(\\377Oto)-246(ja.:)1(.)-246(oto)-247(j)1(a...)-246(oto)-246(ja.)1(..\")-246({)-247(o)-27(db)1(\\241kiw)28(a\\252)-1(y)-246(st\\246k)55(a)-55(j\\241c)-247(b)1(as)-1(y)84(,)-246(a)-246(b)-28(\\246b)-27(e)-1(n)1(e)-1(k)-246(trz\\241s\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(in)1(o,)-333(a)-334(c)28(hic)27(h)1(ota\\252,)-333(a)-334(b)1(arasz)-1(k)28(o)28(w)28(al)-333(i)-334(wr)1(z)-1(a)28(w)27(\\246)-333(c)-1(zyni)1(\\252)-334(b)1(rz)-1(\\246k)56(ad\\252ami.)]TJ 27.879 -13.549 Td[(Niewie)-1(l)1(a)-453(lu)1(dzi)-452(ta\\253co)28(w)27(a\\252o,)-452(ale)-453(tak)-452(ostro)-452(pr)1(z)-1(ytu)1(p)28(yw)28(ali,)-452(a\\273e)-453(dy)1(le)-453(p)-27(o)-28(d\\252ogi)]TJ -27.879 -13.55 Td[(skrzypi)1(a\\252)-1(y)-461(i)-461(s)-1(t)1(\\363)-1(\\252)-461(dy)1(gota\\252,)-462(\\273e)-462(raz)-462(w)-461(raz)-462(\\015asz)-1(k)1(i)-462(p)-27(ob)1(rz)-1(\\246kiw)28(a\\252y)-461(i)-462(wywraca\\252y)-461(s)-1(i\\246)]TJ 0 -13.549 Td[(kieliszki...)]TJ\nET\nendstream\nendobj\n191 0 obj <<\n/Type /Page\n/Contents 192 0 R\n/Resources 190 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n190 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n196 0 obj <<\n/Length 9931      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(56)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(Ale)-500(o)-27(c)27(hot)28(y)-499(wielgiej)-500(n)1(ie)-500(b)28(y)1(\\252o,)-500(b)-27(o)-499(i)-500(ok)56(azji,)-499(jak)28(o)-499(to)-499(przy)-499(w)27(es)-1(elac)27(h)-499(b)29(yw)27(a)]TJ -27.879 -13.549 Td[(ab)-27(o)-374(i)-373(zr\\246)-1(k)28(o)28(win)1(ac)27(h,)-373(n)1(ie)-374(b)28(y\\252o.)-373(T)83(a\\253)1(c)-1(o)28(w)28(ali)-373(ot)-374(tak)-373(sobie,)-373(la)-374(u)1(c)-1(i)1(e)-1(c)28(h)28(y)-373(jednej)-373(ab)-27(o)-374(d)1(la)]TJ 0 -13.549 Td[(wypr)1(os)-1(to)28(w)28(ania)-238(n)1(\\363g)-238(i)-238(grzbiet\\363)28(w;)-238(t)28(ylk)28(o)-238(c)27(h)1(\\252opaki)1(,)-238(c)-1(o)-238(mieli)-238(p)-27(\\363\\271)-1(n)1(\\241)-238(jes)-1(i)1(e)-1(n)1(i\\241)-238(do)-238(w)28(o)-56(j)1(s)-1(k)56(a)]TJ 0 -13.549 Td[(sta)27(w)28(a\\242,)-310(z)-1(ab)1(a)27(wial)1(i)-310(s)-1(i\\246)-310(mo)-28(c)-1(n)1(iej)-310(i)-310(pi)1(li)-310(na)-310(f)1(rasunek,)-310(co)-310(i)-310(ni)1(e)-311(dziw)28(ota,)-310(b)-27(o)-311(mieli)-310(ic)28(h)-310(w)]TJ 0 -13.549 Td[(t)28(yli)-333(\\261wiat)-333(p)-28(ogn)1(a\\242)-1(,)-333(do)-333(ob)-27(c)-1(y)1(c)27(h.)]TJ 27.879 -13.55 Td[(A)-322(w)28(\\363)-56(j)1(t\\363)28(w)-323(b)1(rat)-322(n)1(a)-56(j)1(g\\252o\\261)-1(n)1(ie)-1(j)-321(wykr)1(z)-1(yk)1(iw)27(a\\252,)-321(a)-322(p)-28(o)-321(nim)-322(Mar)1(c)-1(in)-321(Bia\\252e)-1(k)1(,)-322(T)83(ome)-1(k)]TJ -27.879 -13.549 Td[(Si)1(k)28(ora)-401(i)-401(P)29(a)27(w)28(e)-1(\\252)-401(Bory)1(na,)-401(stry)1(jec)-1(zn)28(y)-401(An)28(t)1(k)55(a,)-400(kt\\363ren)-401(i)-400(s)-1(am)-401(pr)1(z)-1(ysze)-1(d)1(\\252)-402(d)1(o)-401(k)56(arcz)-1(m)28(y)]TJ 0 -13.549 Td[(o)-425(z)-1(mroku)1(,)-425(t)28(ylk)28(o)-425(\\273)-1(e)-425(nie)-426(t)1(a\\253co)27(w)28(a\\252)-426(d)1(z)-1(i)1(s)-1(ia)-55(j,)-425(a)-425(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-425(w)-426(al)1(kierz)-1(u)1(,)-425(z)-426(k)28(o)28(w)27(al)1(e)-1(m)-426(i)-425(z)]TJ 0 -13.549 Td[(dr)1(ugimi,)-317(i)-316(F)83(ran)1(e)-1(k)-316(m)-1(\\252yn)1(arcz)-1(yk)1(,)-317(niski,)-316(kr\\246p)28(y)-317(i)-317(k)28(\\246dzie)-1(r)1(z)-1(a)28(wy)83(,)-316(te)-1(n)-316(c)-1(i)-317(gad)1(at)28(ywus)-317(b)28(y\\252)]TJ 0 -13.549 Td[(na)-55(jwi\\246ksz)-1(y)-314(i)-314(zb)-28(ere\\271)-1(n)1(ik,)-314(i)-314(kp)1(iarz,)-314(i)-314(na)-314(d)1(z)-1(ieuc)28(h)28(y)-314(tak)-314(\\252ak)28(om)27(y)84(,)-314(\\273)-1(e)-314(c)-1(z\\246)-1(sto)-314(g\\246)-1(sto)-314(p)28(ysk)]TJ 0 -13.549 Td[(mia\\252)-323(zbit)28(y)-322(i)-322(p)-28(o)-28(d)1(rap)1(an)28(y)83(.)-322(Ale)-323(\\273e)-323(dzisia)-56(j)-322(o)-28(c)28(hla\\252)-322(s)-1(i\\246)-323(zaraz)-323(miejsc)-1(a,)-322(jak)-322(to)-323(n)1(ieb)-28(oskie)]TJ 0 -13.55 Td[(st)27(w)28(orze)-1(n)1(ie,)-335(to)-335(in)1(o)-335(ta\\252)-335(p)1(rz)-1(y)-334(s)-1(zyn)1(kw)27(asie)-335(z)-336(gr)1(ub)1(\\241)-335(Magd)1(\\241)-335(o)-28(d)-335(or)1(ganist)28(y)83(,)-334(kt\\363ra)-334(b)28(y\\252a)]TJ 0 -13.549 Td[(ju)1(\\273)-334(w)-333(s)-1(z\\363s)-1(t)28(ym)-333(m)-1(i)1(e)-1(si\\241c)-1(u)1(.)]TJ 27.879 -13.549 Td[(Dob)1(ro)-28(d)1(z)-1(iej)-425(j)1(u\\273)-426(t)1(o)-426(wyp)-27(omina\\252)-425(na)-425(am)28(b)-28(on)1(ie)-426(i)-424(nagani)1(a\\252)-426(go)-425(d)1(o)-426(o\\273enku)1(,)-425(ale)]TJ -27.879 -13.549 Td[(F)84(ranek)-321(s)-1(\\252u)1(c)27(h)1(a\\242)-322(nie)-321(c)27(h)1(c)-1(ia\\252,)-321(\\273e)-322(to)-321(do)-321(w)28(o)-56(j)1(s)-1(k)56(a)-321(s)-1(ta)28(w)28(a\\242)-322(mia\\252)-321(jes)-1(ieni)1(\\241,)-322(t)1(o)-322(co)-321(m)27(u)-321(ta)-321(p)-27(o)]TJ 0 -13.549 Td[(bab)1(ie...)]TJ 27.879 -13.55 Td[(Magd)1(usia)-389(w)-1(\\252a\\261ni)1(e)-390(c)-1(i)1(\\241)-28(gn\\246\\252a)-390(go)-389(w)-389(k)55(\\241t)1(,)-389(do)-389(nalep)28(y)84(,)-389(i)-389(c)-1(osik)-389(m)27(u)-389(m\\363)28(wi\\252a)-390(p)1(\\252a-)]TJ -27.879 -13.549 Td[(cz)-1(\\241cym)-334(g\\252ose)-1(m,)-333(a)-334(on)-333(j)1(e)-1(j)-332(na)-333(to)-334(r)1(az)-334(w)-334(r)1(az)-334(p)-27(o)27(wiad)1(a\\252:)]TJ 27.879 -13.549 Td[({)-326(G)1(\\252upi)1(a\\261)-1(!)-325(Nie)-326(lata\\252em)-326(z)-1(a)-325(tob\\241)-325(.)-326(Chr)1(z)-1(cin)28(y)-325(z)-1(ap)1(\\252ac)-1(\\246)-326(i)-325(z)-326(rub)1(la)-325(rz)-1(u)1(c)-1(\\246,)-325(jak)-325(m)-1(i)]TJ -27.879 -13.549 Td[(si\\246)-286(sp)-27(o)-28(dob)1(a!...)-284({)-285(Nieprzytomn)28(y)-284(b)28(y\\252)-285(i)-285(p)-27(c)27(h)1(n\\241\\252)-285(j)1(\\241,)-285(a\\273)-285(przysiad\\252a)-285(n)1(a)-285(nal)1(e)-1(p)1(ie)-285(k)28(om)-1(in)1(a)]TJ 0 -13.549 Td[(w)-230(p)-28(o)-27(dle)-230(Ku)1(b)28(y)83(,)-229(kt\\363ren)-230(j)1(u\\273)-230(s)-1(p)1(a\\252)-230(w)-231(p)-27(op)1(ie)-1(l)1(e)-1(,)-230(a)-230(z)-230(nogami)-230(n)1(a)-230(iz)-1(b)1(ie)-230({)-230(c)27(h)1(lipa\\252a)-230(tam)-230(sobie)]TJ 0 -13.55 Td[(cic)27(h)1(o,)-374(a)-375(F)84(ran)1(e)-1(k)-374(p)-27(os)-1(ze)-1(d)1(\\252)-374(z)-1(n)1(o)27(wu)-374(p)1(i\\242)-375(i)-374(b)1(ra\\242)-375(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)-374(d)1(o)-375(t)1(a\\253ca)-375({)-374(gosp)-28(o)-27(darskie)]TJ 0 -13.549 Td[(ni)1(e)-396(c)27(hcia\\252y)-395(b)-28(o)-395(m\\252)-1(y)1(narczyk,)-395(c)-1(\\363\\273)-396(to?)-395(P)28(arob)-27(e)-1(k)-395(p)1(ra)28(w)-1(i)1(e)-1(.)-395(A)-396(p)1(roste)-396(dziew)-1(k)1(i)-396(te\\273,)-396(b)-27(o)]TJ 0 -13.549 Td[(pi)1(jan)28(y)-284(b)28(y\\252)-285(i)-284(w)-286(t)1(a\\253cu)-285(zb)-28(ere\\273)-1(e\\253st)28(w)27(a)-285(czyni\\252,)-284(to)-285(in)1(o)-285(s)-1(p)1(lun)1(\\241)-285(i)-285(wzi\\241\\252)-285(s)-1(i)1(\\246)-286(z)-285(Jam)28(bro\\273ym)]TJ 0 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\242)-334(i)-333(z)-334(gosp)-28(o)-27(darzam)-1(i)1(,)-333(kt\\363rzy)-333(\\273)-1(e)-334(mieli)-333(w)-334(m\\252yn)1(ie)-334(zb)-28(o\\273e)-1(,)-333(sta)28(w)-1(i)1(ali)-333(s)-1(w)28(o)-56(j)1(e)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-362(W)1(ypij)1(c)-1(i)1(e)-1(,)-361(F)83(r)1(anek,)-362(a)-362(zmie)-1(l)1(c)-1(ie)-362(r)1(yc)27(h)1(le)-1(j)1(,)-362(b)-27(o)-362(j)1(u\\273)-362(mi)-362(b)1(aba)-362(g\\252o)28(w)27(\\246)-362(k)28(o\\252acz)-1(e,)-362(\\273e)]TJ -27.879 -13.55 Td[(na)-333(kl)1(uski)-333(nie)-333(m)-1(a)-333(i)-333(\\271)-1(d)1(z)-1(iebk)56(a)-333(m\\241ki.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo)-56(j)1(a)-333(o)-334(k)56(asz)-1(\\246)-334(ci\\246gie)-1(m)-333(m)-1(i)-333(tu)1(rk)28(o)-28(cz)-1(e...)]TJ 0 -13.549 Td[({)-333(\\233e)-334(to)-333(i)-334(ospa)-333(la)-333(k)56(armik)56(a)-334(p)-27(otrzebna.)1(..)-333(-)-1(.)-333(m\\363)28(wi\\252)-334(tr)1(z)-1(ec)-1(i)1(.)]TJ 0 -13.549 Td[(F)84(ranek)-240(pi\\252,)-240(ob)1(ie)-1(cyw)28(a\\252)-241(i)-240(p)1(rze)-1(c)27(h)29(w)27(ala\\252)-240(si\\246)-241(g\\252o\\261)-1(n)1(o,)-240(\\273)-1(e)-240(w)27(e)-241(m\\252yn)1(ie)-241(ws)-1(zystk)28(o)-241(i)1(dzie)]TJ -27.879 -13.549 Td[(jego)-342(g\\252o)28(w)28(\\241,)-342(\\273e)-342(m)-1(\\252yn)1(arz)-342(s\\252uc)27(h)1(a\\242)-342(go)-342(m)28(usi,)-342(b)-27(o)-341(jakb)28(y)-341(ni)1(e)-1(..)1(.)-342(to)-341(on)-341(z)-1(n)1(a)-342(taki)1(e)-342(s)-1(ztuki)1(,)]TJ 0 -13.55 Td[(\\273e)-356(robak)1(i)-356(zal\\246gn\\241)-355(s)-1(i\\246)-355(w)-356(s)-1(k)1(rzyniac)28(h..)1(.)-356(w)28(o)-28(d)1(a)-356(wysc)27(hn)1(ie...)-355(ryb)29(y)-356(wyzdy)1(c)27(ha)-55(j\\241,)-355(sk)28(oro)]TJ 0 -13.549 Td[(jeno)-333(c)27(h)29(uc)27(h)1(ni)1(e)-334(na)-333(s)-1(ta)28(w...)-333(m\\241k)56(a)-334(si\\246)-334(t)1(ak)-334(zw)28(arz)-1(y)84(,)-333(\\273)-1(e)-333(i)-334(p)1(lac)27(k)56(a)-333(z)-334(n)1(ie)-1(j)-333(n)1(ie)-334(u)1(piecz)-1(e...)]TJ 27.879 -13.549 Td[({)-371(Os)-1(k)1(ub)1(a)-1(\\252ab)29(ym)-372(ci)-371(te)-1(n)-371(\\252eb)-371(baran)1(i,)-371(\\273e)-1(b)28(y)1(\\261)-372(m)-1(n)1(ie)-372(tak)-371(zrobi)1(\\252!)-372({)-371(wykr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-402(kt\\363ra)-403(za)28(w)-1(sze)-404(b)28(y)1(w)27(a\\252a)-403(tam,)-403(gd)1(z)-1(ie)-403(i)-403(wsz)-1(ysc)-1(y)84(,)-403(b)-27(o)-403(c)27(h)1(o)-28(cia\\273)-404(n)1(ie)-403(pij)1(a\\252a,)]TJ 0 -13.549 Td[(\\273e)-330(to)-329(m)-1(a\\252o)-329(kiedy)-329(b)28(y)1(\\252)-330(ten)-329(grosz)-330(goto)28(wy)83(,)-329(al)1(e)-330(z)-1(d)1(arzy\\242)-330(si\\246)-330(mog\\252o)-330(,)1(c)-1(o)-329(ku)1(m)-330(p)-27(os)-1(ta)28(wi\\252)]TJ 0 -13.549 Td[(p)-27(\\363\\252kw)27(aterk)28(\\246)-406(jak)56(\\241)-406(alb)-27(o)-406(p)-27(o)28(w)-1(i)1(no)28(w)27(at)28(y)-406(d)1(ru)1(g\\241)-406(b)-28(o)-406(si\\246)-406(jej)-406(ostrego)-406(j\\246z)-1(y)1(k)55(a)-405(bali.)-405(T)83(o)-28(\\242)-406(i)]TJ 0 -13.55 Td[(F)84(ranek)-416(,c)27(h)1(o)-28(\\242)-417(b)28(y\\252)-416(pi)1(jan)28(y)-416(a)-416(z)-1(l\\241k)1(\\252)-417(si\\246)-417(j)1(e)-1(j)-416(i)-416(zam)-1(il)1(kn\\241\\252)-416(,b)-27(o)-417(wiedzia\\252a)-417(o)-416(n)1(im)-417(r\\363\\273ne)]TJ 0 -13.549 Td[(r\\363\\273no\\261c)-1(i)-262(,j)1(ak)-262(to)-263(w)28(e)-263(m\\252ynie)-262(gos)-1(p)-27(o)-28(dar)1(z)-1(y)-262(,a)-262(ona)-262(,\\273e)-263(to)-263(j)1(u\\273)-263(b)29(y\\252a)-263(p)-27(o)-28(d)1(pita)-262(ni)1(e)-1(co)-263(,)1(uj\\246\\252a)]TJ 0 -13.549 Td[(si\\246)-334(p)-27(o)-28(d)-333(b)-27(oki)-333(pr)1(z)-1(ytu)1(p)28(yw)28(a\\252a)-334(w)-333(takt)-333(i)-333(n)28(u\\273)-333(w)-1(y)1(krzykiw)28(a\\242)]TJ 27.879 -13.549 Td[({)-416(T)83(a\\253)1(c)-1(u)1(j\\241)-415(kiej)-416(m)28(uc)28(h)28(y)-416(w)-416(smole)-1(!)-415(Jew)-1(k)56(a,)-415(a)-416(ru)1(c)27(ha)-55(j\\273e)-416(s)-1(i)1(\\246)-1(.)-415(Gani)1(a\\252)-1(a)-415(gdzie)-1(sik)]TJ -27.879 -13.549 Td[(p)-27(o)-344(n)1(o)-28(cy)83(,)-343(a)-343(teraz)-344(\\261pi)-342(w)-344(ta\\253)1(c)-1(u)1(.)-343(T)83(om)-1(ek!)-343(A)-343(p)1(r\\246)-1(d)1(z)-1(ej!)-343(A)-343(to)-343(ci)-343(tak)-343(ci\\246)-1(\\273y)-343(ta)-343(\\242)-1(wiar)1(tk)56(a,)]TJ 0 -13.55 Td[(co\\261)-379(j\\241)-378(Jan)1(klo)28(wi)-378(s)-1(p)1(rze)-1(d)1(a\\252,)-378(c)-1(o?...)-378(Ni)1(e)-379(b)-27(\\363)-56(j)-378(si\\246,)-378(o)-28(cie)-1(c)-378(jes)-1(zc)-1(ze)-379(n)1(ie)-379(wiedz\\241.)-378(Mar)1(ys)-1(i)1(a!)]TJ 0 -13.549 Td[(Zada)28(w)28(a)-56(j)-333(si\\246)-334(z)-334(r)1(e)-1(kr)1(utami,)-333(zada)28(w)27(a)-55(j,)-333(a)-333(pr)1(o\\261)-334(m\\246)-334(z)-334(mie)-1(j)1(s)-1(ca)-333(na)-333(kum\\246...)]TJ\nET\nendstream\nendobj\n195 0 obj <<\n/Type /Page\n/Contents 196 0 R\n/Resources 194 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n194 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n199 0 obj <<\n/Length 8977      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(57)]TJ -335.807 -35.866 Td[(I)-382(tak)-383(d)1(alej)-382(dogry)1(z)-1(a\\252a)-382(p)-28(o)-382(k)28(olei)-382(tanec)-1(znik)28(om;)-382(niep)-27(om)-1(i)1(ark)28(o)28(w)27(an)1(a)-383(b)28(y)1(\\252a)-383(i)-382(z\\252)-1(a)]TJ -27.879 -13.549 Td[(na)-298(ws)-1(zys)-1(t)1(kic)27(h)1(,)-299(\\273e)-299(to)-299(d)1(z)-1(ieci)-299(j)1(\\241)-299(s)-1(k)1(rzywdzi\\252y)83(,)-298(a)-299(on)1(a)-299(na)-298(s)-1(tar)1(o\\261)-1(\\242)-299(n)1(a)-299(wyrob)-27(e)-1(k)-298(c)27(h)1(o)-28(dzi\\242)]TJ 0 -13.549 Td[(m)27(u)1(s)-1(i)1(a\\252a,)-276(al)1(e)-276(\\273)-1(e)-276(n)1(ikto)-275(n)1(ie)-276(o)-28(d)1(p)-28(o)28(wiada\\252,)-275(wykr)1(z)-1(ycza\\252)-1(a)-275(si\\246)-276(i)-275(p)-28(osz\\252)-1(a)-275(d)1(o)-276(alk)1(ie)-1(r)1(z)-1(a,)-275(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-334(k)28(o)28(w)27(al)-333(z)-334(An)29(tkiem)-334(i)-333(kil)1(ku)-333(m\\252o)-28(dsz)-1(yc)28(h)-333(gos)-1(p)-27(o)-28(d)1(arzy)83(.)]TJ 27.879 -13.549 Td[(Lampa)-489(w)-1(i)1(s)-1(ia\\252a)-489(u)-489(cz)-1(arn)1(e)-1(go)-489(pu)1(\\252apu)-489(i)-489(md\\252ym)-489(\\273)-1(\\363\\252ta)28(wym)-490(\\261w)-1(i)1(at\\252e)-1(m)-490(r)1(oz)-1(j)1(a-)]TJ -27.879 -13.55 Td[(\\261nia\\252a)-362(jasne,)-362(p)-27(o)28(w)-1(i)1(c)27(hr)1(z)-1(on)1(e)-363(g\\252o)28(wy)-362({)-362(s)-1(i)1(e)-1(d)1(z)-1(ieli)-362(d)1(ok)28(o\\252a)-362(s)-1(to\\252u)1(,)-362(ws)-1(p)1(arli)-362(si\\246)-362(m)-1(o)-28(cno)-362(n)1(a)]TJ 0 -13.549 Td[(r\\246k)56(ac)27(h)-300(ws)-1(zysc)-1(y)-300(o)-28(cz)-1(y)-300(ut)1(kwili)-300(w)-301(k)28(o)28(w)27(al)1(a,)-301(k)1(t\\363ren)-300(p)-28(o)-28(c)28(h)28(ylon)29(y)-301(n)1(ad)-300(s)-1(to\\252em,)-301(cz)-1(erw)28(on)28(y)84(,)]TJ 0 -13.549 Td[(rozk\\252ada\\252)-333(s)-1(zerok)28(o)-333(r\\246)-1(ce,)-334(czas)-1(em)-334(bi)1(\\252)-334(p)1(i\\246)-1(\\261ci\\241)-334(i)-333(gad)1(a\\252)-334(z)-334(cic)28(ha:)]TJ 27.879 -13.549 Td[({)-322(P)1(ra)28(wd\\246)-322(m\\363)27(wi\\246,)-322(b)-27(o)-322(t)1(ak)-322(stoi)-322(w)-322(gaze)-1(cie)-322(wyp)1(is)-1(an)1(e)-1(,)-321(wyra\\271nie)-322(j)1(ak)-322(w)28(\\363\\252...)-321(Nie)]TJ -27.879 -13.549 Td[(tak)-333(lu)1(dzie)-334(\\273yj\\241)-333(w)27(e)-333(\\261)-1(wiec)-1(i)1(e)-334(jak)-333(u)-333(n)1(as)-1(,)-333(n)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-428(Co)-428(j)1(e)-1(st?)-428(Dziedz)-1(i)1(c)-428(c)-1(i)-427(pan)28(u)1(je,)-428(ksi\\241d)1(z)-428(c)-1(i)-427(pan)28(u)1(je,)-428(u)1(rz\\246)-1(dn)1(ik)-427(c)-1(i)-427(pan)28(u)1(je)-428({)-428(a)]TJ -27.879 -13.55 Td[(t)28(y)-456(in)1(o)-456(r\\363b)-455(a)-456(z)-456(g\\252o)-28(du)-455(z)-1(d)1(yc)27(h)1(a)-56(j)-455(i)-456(k)56(a\\273dem)27(u)-455(s)-1(i\\246)-456(ni)1(s)-1(k)28(o)-456(k)1(\\252)-1(an)1(ia)-55(j,)-456(\\273e)-1(b)29(y\\261)-456(p)-28(o)-456(\\252b)1(ie)-456(nie)]TJ 0 -13.549 Td[(ob)-27(e)-1(r)1(w)27(a\\252...)]TJ 27.879 -13.549 Td[(A)-333(gron)28(tu)-333(ma\\252o,)-333(\\273)-1(e)-333(nied\\252u)1(go)-334(to)-333(i)-333(p)-27(o)-334(zagonie)-333(na)-333(c)-1(z\\252o)27(wiek)56(a)-334(n)1(ie)-334(starcz)-1(y)1(!)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(m)-1(a)-333(s)-1(am)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333(n)1(i\\273)-334(d)1(wie)-334(ws)-1(i)1(e)-334(raze)-1(m...)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(adali)-333(w)28(c)-1(zora)-55(j)-333(na)-333(s)-1(\\241d)1(ac)27(h)1(,)-334(\\273e)-334(n)1(ada)28(w)27(a\\242)-333(b)-28(\\246d\\241)-333(no)28(w)28(e)-334(gru)1(n)28(ta.)]TJ 0 -13.55 Td[({)-333(Jakie?)]TJ 0 -13.549 Td[({)-333(C)-1(zyj)1(e)-1(\\273)-334(b)29(y)-333({)-334(a)-333(dw)28(orskie!-)]TJ 0 -13.549 Td[({)-253(Al)1(e)-1(!)-252(Dali\\261ta)-253(d)1(z)-1(iedzicom)-1(,)-252(to)-253(o)-28(d)1(bi)1(e)-1(ra\\242)-253(b)-27(\\246dzie)-1(ta!)-252(Ale)-253(cudzym)-253(j)1(u\\273)-253(s)-1(i)1(\\246)-253(rz)-1(\\241d)1(z)-1(\\241)]TJ -27.879 -13.549 Td[({)-333(krzykn)1(\\246)-1(\\252a)-333(Jagust)28(ynk)56(a)-333(nac)28(h)28(yla)-55(j\\241c)-334(si\\246)-334(d)1(o)-334(n)1(ic)27(h)-333(ze)-334(\\261m)-1(i)1(e)-1(c)28(hem)-1(.)]TJ 27.879 -13.549 Td[(-...I)-395(sami)-395(si\\246)-395(rz)-1(\\241d)1(z)-1(\\241)-394({)-395(c)-1(i\\241)-27(gn\\241\\252)-395(d)1(ale)-1(j)-394(k)28(o)28(w)27(al)-394(nie)-395(zw)27(a\\273a)-56(j)1(\\241c)-396(n)1(a)-395(bab)1(ie)-395(p)-28(o)28(wie-)]TJ -27.879 -13.55 Td[(dzenie)-406(nic)-406({)-406(a)-406(wsz)-1(yscy)-406(w)27(e)-406(sz)-1(k)28(o\\252ac)27(h)-405(s)-1(i)1(\\246)-407(u)1(c)-1(z\\241,)-406(w)28(e)-407(d)1(w)27(or)1(ac)27(h)-406(mies)-1(zk)56(a)-56(j)1(\\241)-406(i)-406(p)1(anami)]TJ 0 -13.549 Td[(s\\241...)]TJ 27.879 -13.549 Td[({)-333(Gdzie)-334(to)-333(tak?)-333({)-333(z)-1(ap)28(y)1(ta\\252a)-334(An)28(tk)56(a,)-333(kt\\363r)1(e)-1(n)-333(zaraz)-333(z)-334(kra)-55(ju)-333(siedzia\\252.)]TJ 0 -13.549 Td[({)-333(W)-333(c)-1(iep\\252yc)28(h)-333(kra)-55(jac)28(h!)-333({)-333(o)-28(dr)1(z)-1(u)1(c)-1(i\\252.)]TJ 0 -13.549 Td[({)-384(T)83(o)-384(kiej)-384(tak)-384(d)1(obrze)-1(,)-384(cze)-1(m)28(u\\273)-385(t)1(o)-385(k)28(o)28(w)28(al)-384(tam)-385(n)1(ie)-385(p)-27(o)-56(j)1(e)-1(c)28(ha\\252,)-384(co?)-1(.)1(..)-384(Smolu)1(c)27(h)]TJ -27.879 -13.55 Td[(ju)1(c)27(h)1(a,)-333(\\252)-1(\\273e)-334(j)1(ak)-334(t)1(e)-1(n)-333(p)1(ie)-1(s)-333(i)-333(tumani,)-333(a)-333(wy)-333(g\\252)-1(u)1(pi)1(e)-334(wie)-1(r)1(z)-1(yt)1(a!)-334({)-333(za)27(w)28(o\\252a\\252a)-334(n)1(am)-1(i)1(\\246)-1(tn)1(ie.)]TJ 27.879 -13.549 Td[({)-333(M\\363)28(wi\\246)-334(p)-27(o)-334(d)1(obrem)27(u)1(:)-333(id\\271cie)-334(sobie,)-333(Jagust)28(ynk)28(o,)-333(sk)55(\\241d)1(\\273)-1(e\\261c)-1(ie)-333(przysz)-1(li)1(...)]TJ 0 -13.549 Td[({)-250(A)-250(n)1(ie)-251(p)-27(\\363)-55(jd\\246!)-250(K)1(arc)-1(zma)-250(la)-250(ws)-1(zystkic)27(h)1(,)-250(a)-250(j)1(a)-250(tak)56(a)-250(dob)1(ra)-250(za)-250(s)-1(w)28(o)-56(j)1(e)-251(tr)1(z)-1(y)-250(gr)1(os)-1(ze)]TJ -27.879 -13.549 Td[(jak)-229(i)-229(t)28(y)1(!)-229(Ale)-1(,)-229(n)1(aucz)-1(y)1(c)-1(iel)-229(jak)1(i,)-229(\\233ydom)-229(s)-1(i)1(\\246)-230(wys)-1(\\252u)1(guj)1(e)-1(,)-229(z)-229(urz\\246)-1(d)1(ni)1(k)55(ami)-229(trzyma,)-229(o)-229(s)-1(ta)-55(j\\246)]TJ 0 -13.549 Td[(cz)-1(ap)1(k)28(\\246)-252(p)1(rze)-1(d)-250(dziedzic)-1(em)-251(z)-1(d)1(e)-1(j)1(m)27(u)1(je,)-251(a)-250(te)-252(m)28(u)-250(w)-1(i)1(e)-1(rz\\241!..)1(.)-251(P)1(ys)-1(k)56(acz)-251(jeden!..)1(.Wiem)-251(ja..)1(.)]TJ 0 -13.55 Td[({)-262(ale)-263(ju)1(\\273)-263(ni)1(e)-263(s)-1(k)28(o\\253)1(c)-1(zy\\252a,)-262(b)-28(o)-262(j\\241)-262(k)28(o)28(w)27(al)-262(kr)1(z)-1(epk)28(o)-262(uj)1(\\241\\252)-263(p)-27(o)-28(d)-262(\\273)-1(ebr)1(a,)-262(nog\\241)-262(ot)27(w)28(orzy\\252)-262(drzwi)]TJ 0 -13.549 Td[(i)-333(wyrzuci\\252)-334(d)1(o)-333(w)-1(i)1(e)-1(lk)1(ie)-1(j)-333(i)1(z)-1(b)28(y)84(,)-333(\\273)-1(e)-333(pad)1(\\252)-1(a)-333(j)1(ak)-334(d)1(\\252uga)-333(w)-334(p)-27(o\\261)-1(r)1(o)-28(dk)1(u.)]TJ 27.879 -13.549 Td[(Nie)-334(p)-27(oms)-1(to)28(w)28(a\\252a)-334(n)1(a)27(w)28(et,)-333(t)27(y)1(lk)28(o)-333(p)-28(o)28(ws)-1(ta)28(wsz)-1(y)-333(rze)-1(k)1(\\252)-1(a)-333(w)28(e)-1(so\\252o:)]TJ 0 -13.549 Td[({)-333(Krze)-1(p)1(ki)-333(ju)1(c)27(ha)-333(ki)1(e)-1(j)-333(k)28(o\\253)1(,)-333(z)-1(d)1(a\\252)-1(b)29(y)-333(m)-1(i)-333(si\\246)-334(taki)-333(n)1(a)-334(c)28(h\\252opa.)1(..)]TJ 0 -13.549 Td[(Nar\\363)-27(d)-333(gruc)28(hn)1(\\241\\252)-334(\\261m)-1(i)1(e)-1(c)27(h)1(e)-1(m,)-333(a)-333(ona)-333(wys)-1(z\\252a)-334(zaraz)-334(p)-27(oms)-1(tu)1(j\\241c)-333(z)-334(c)-1(i)1(c)27(ha.)]TJ 0 -13.549 Td[(Ale)-412(j)1(u\\273)-412(i)-411(k)55(ar)1(c)-1(zma)-412(pu)1(s)-1(t)1(os)-1(za\\252a,)-412(m)28(uzyk)56(a)-412(zm)-1(il)1(k\\252a,)-412(l)1(ud)1(z)-1(ie)-412(si\\246)-412(rozc)27(h)1(o)-28(dzili)-411(do)]TJ -27.879 -13.55 Td[(dom\\363)28(w,)-379(to)-379(sta)28(w)27(al)1(i)-379(ku)1(pk)56(ami)-379(pr)1(z)-1(ed)-378(k)55(ar)1(c)-1(zm)-1(\\241,)-378(b)-27(o)-379(to)-379(i)-378(w)-1(i)1(e)-1(cz)-1(\\363r)-378(b)28(y\\252)-379(ciep\\252y)-379(i)-378(jasn)28(y)84(,)]TJ 0 -13.549 Td[(ksi\\246\\273)-1(yc)-491(\\261wiec)-1(i\\252,)-490(t)28(ylk)28(o)-490(rekru)1(c)-1(i)-490(jesz)-1(cz)-1(e)-491(ostali)-490(i)-490(pil)1(i)-490(na)-490(um\\363r)-490(i)-491(wyk)1(rz)-1(y)1(kiw)28(ali,)-490(a)]TJ 0 -13.549 Td[(Jam)28(bro\\273y)83(,)-316(spit)28(y)-316(jak)28(o)-316(b)28(yd)1(l\\246)-1(,)-316(wylaz\\252)-317(na)-316(\\261)-1(r)1(o)-28(dek)-316(drogi)-316(i)-316(w)-1(y)1(\\261)-1(p)1(ie)-1(wyw)28(a\\252,)-317(t)1(ac)-1(za)-56(j)1(\\241c)-317(s)-1(i\\246)]TJ 0 -13.549 Td[(ze)-334(s)-1(tr)1(on)28(y)-333(na)-333(s)-1(t)1(ron\\246.)]TJ 27.879 -13.549 Td[(A)-333(i)-333(c)-1(i)-333(z)-334(alk)1(ie)-1(r)1(z)-1(a,)-333(z)-334(k)28(o)28(w)28(ale)-1(m)-333(na)-333(c)-1(zele)-1(,)-333(wysz)-1(l)1(i.)]TJ 0 -13.55 Td[(P)28(otem,)-290(k)1(ie)-1(d)1(y)-289(ju)1(\\273)-290(Jank)1(ie)-1(l)-289(p)-27(o)-28(cz)-1(\\241\\252.)-289(gas)-1(i)1(\\242)-290(\\261)-1(wiat)1(\\252)-1(a,)-289(r)1(e)-1(kr)1(uci)-289(s)-1(i\\246)-289(w)-1(y)1(to)-28(c)-1(zyli)1(,)-289(uj\\246li)]TJ -27.879 -13.549 Td[(si\\246)-376(mo)-28(cno)-375(p)-27(o)-28(d)-374(r\\246c)-1(e)-375(i)-375(sz)-1(li)-374(c)-1(a\\252\\241)-375(d)1(rog\\241)-375(\\261piew)27(a)-55(j\\241cy)-375(z)-375(gard\\252a)-375(wsz)-1(y)1(s)-1(tki)1(e)-1(go,)-375(a\\273e)-375(psy)]TJ\nET\nendstream\nendobj\n198 0 obj <<\n/Type /Page\n/Contents 199 0 R\n/Resources 197 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n197 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n202 0 obj <<\n/Length 8553      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(58)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(4.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(uj)1(ada\\252y)-333(i)-333(jak)1(i)-333(taki)-333(z)-334(c)27(h)1(a\\252up)28(y)-333(wyj)1(rz)-1(a\\252.)1(..)]TJ 27.879 -13.549 Td[(Ku)1(ba)-266(t)28(ylk)28(o)-266(spa\\252)-266(w)27(ci\\241\\273)-266(w)-267(p)-27(opi)1(e)-1(le)-266(tak)-266(kr)1(z)-1(epk)28(o,)-266(a\\273)-266(go)-266(Janki)1(e)-1(l)-266(b)1(udzi\\242)-266(m)27(u)1(s)-1(ia\\252,)]TJ -27.879 -13.549 Td[(ale)-334(p)1(arob)-27(e)-1(k)-333(wsta\\242)-334(ni)1(e)-334(c)27(h)1(c)-1(ia\\252,)-333(k)28(op)1(a\\252)-1(,)-333(to)-333(grzmo)-28(c)-1(i)1(\\252)-334(w)-333(p)-28(o)28(wietrze)-334(i)-333(m)-1(r)1(ucz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-243(P)28(\\363)-28(dzi,)-243(\\233yd)1(z)-1(ie.)-243(Jak)-243(c)27(hc\\246)-1(,)-243(tak)-243(spa\\252)-243(b)-28(\\246d\\246...)-243(gosp)-28(o)-28(d)1(arz)-244(j)1(e)-1(ste)-1(m,)-243(to)-243(w)27(ol\\246)-244(sw)28(o)-56(j\\241)]TJ -27.879 -13.549 Td[(mam)-1(,)-333(a)-333(t)28(y\\261)-334(\\273\\363\\252te)-1(k)-333(i)-333(par)1(c)27(h)1(!...)]TJ 27.879 -13.55 Td[(Wiad)1(ro)-351(w)27(o)-27(dy)-351(p)-28(omog\\252o,)-351(\\273)-1(e)-352(wsta\\252)-352(i)-351(wytr)1(z)-1(e\\271)-1(wia\\252)-351(niec)-1(o,)-351(j)1(e)-1(n)1(o)-352(ze)-352(s)-1(t)1(rac)27(h)1(e)-1(m)-352(a)]TJ -27.879 -13.549 Td[(zdumieni)1(e)-1(m)-334(s\\252uc)28(ha\\252,)-333(jak)28(o)-333(c)-1(a\\252ego)-333(rub)1(la)-333(przepi\\252)-333({)-334(k)1(t\\363rego)-334(win)1(ie)-1(n)-332(jes)-1(t..)1(.)]TJ 27.879 -13.549 Td[({)-417(J)1(ak\\273)-1(e?...)-416(dw)28(a)-417(p)-27(\\363\\252kw)28(ate)-1(rk)1(i)-417(z)-417(h)1(araki)1(e)-1(m...)-416(c)-1(a\\252ego)-417(\\261ledzia...)-416(mac)27(hor)1(ki..)1(.)-417(i)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-316(d)1(w)27(a)-315(p)-28(\\363\\252kw)28(aterki.)1(..)-316(t)1(o)-316(ju)1(\\273)-316(c)-1(a\\252y)-315(ru)1(b)-28(el?...)-315(Jak\\273e)-1(?..)1(.)-316(d)1(w)27(a.)1(..)-316({)-315(m)-1(a)-55(jacz)-1(y)1(\\252o)-316(m)27(u)]TJ 0 -13.549 Td[(si\\246)-1(.)]TJ 27.879 -13.549 Td[(Jan)1(kiel)-342(przek)28(ona\\252)-342(go)-342(w)-342(k)28(o\\253cu)-342(i)-342(p)-27(orozumie)-1(l)1(i)-342(s)-1(i)1(\\246)-343(co)-342(do)-342(strze)-1(lb)29(y)83(,)-342(k)1(t\\363r\\241)-342(\\233yd)]TJ -27.879 -13.55 Td[(mia\\252)-334(m)28(u)-333(pr)1(z)-1(y)1(w)-1(i)1(e)-1(\\271\\242)-334(z)-334(jar)1(m)-1(ar)1(ku,)-333(a)-333(na)-333(zgo)-28(d\\246)-333(p)-28(osta)28(w)-1(i)1(\\252)-334(es)-1(encji)-333(ze)-334(s)-1(p)1(iry)1(tuse)-1(m...)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-333(o)27(wsa)-334(stan)1(o)27(w)28(c)-1(zo)-333(Kub)1(a)-334(p)1(rzynosi\\242)-334(n)1(ie)-334(ob)1(ie)-1(cyw)28(a\\252.)]TJ 0 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c)-334(K)1(ub)-27(\\363)28(w)-334(z\\252)-1(o)-27(dzie)-1(j)-333(n)1(ie)-334(b)29(y\\252,)-333(to)-334(i)-333(syn)-333(j)1(e)-1(go)-333(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)-333(n)1(ie)-334(j)1(e)-1(st.)]TJ 0 -13.549 Td[({)-333(Id\\271c)-1(ie)-333(ju\\273)-333(s)-1(ob)1(ie)-1(,)-333(cz)-1(as)-333(s)-1(p)1(a\\242)-1(..)1(.)-334(a)-333(j)1(a)-334(mam)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(pacie)-1(r)1(z)-1(e)-334(o)-27(dma)28(w)-1(i)1(a\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-439(Ci!.)1(..)-439(sp)-27(e)-1(ku)1(lan)28(t)-439(j)1(aki!)-438(Do)-439(z\\252o)-28(dziejst)27(w)28(a)-439(n)1(am)-1(a)28(wia,)-439(a)-438(pacie)-1(r)1(z)-1(e)-439(m\\363)27(wi\\252)-438(b)-28(\\246-)]TJ -27.879 -13.55 Td[(dzie...)-294({)-293(m)-1(r)1(ucz)-1(a\\252)-294(id)1(\\241c)-295(ku)-293(domo)28(wi)-294(i)-294(j)1(\\241\\252)-294(s)-1(ob)1(ie)-295(p)1(rzyp)-27(om)-1(in)1(a\\242)-294(i)-294(k)56(alkul)1(o)27(w)28(a\\242,)-294(b)-28(o)-293(nij)1(ak)]TJ 0 -13.549 Td[(ni)1(e)-373(c)28(hcia\\252o)-372(m)28(u)-372(si\\246)-372(w)-372(g\\252o)28(w)-1(i)1(e)-372(p)-28(omie\\261)-1(ci\\242)-1(,)-371(\\273e)-373(ca\\252e)-1(go)-371(rub)1(la)-372(p)1(rze)-1(p)1(i\\252...)-371(ale)-372(\\273)-1(e)-372(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-301(wyt)1(rz)-1(e\\271w)-1(i)1(a\\252)-300(i)-300(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-300(go)-300(r)1(oz)-1(ebra\\252o,)-299(to)-300(p)-27(otacz)-1(a\\252)-300(si\\246)-300(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-300(a)-300(i)-299(raz)-300(w)-300(raz)]TJ 0 -13.549 Td[(w\\252az)-1(i\\252)-333(na)-333(p)1(\\252)-1(ot)28(y)84(,)-333(to)-334(n)1(a)-333(bud)1(ul)1(e)-1(c)-334(l)1(e)-1(\\273\\241c)-1(y)-333(gd)1(z)-1(ieni)1(e)-1(gdzie)-334(p)1(rze)-1(d)-333(c)28(ha\\252u)1(pami)-333(i)-334(k)1(l\\241\\252...)]TJ 27.879 -13.549 Td[({)-360(\\233)-1(eb)28(y)-360(w)28(as)-1(,)-360(ju)1(c)27(h)28(y)84(,)-360(p)-28(okr)1(\\246)-1(ci\\252o!..)1(.)-361(\\212a)-55(jd)1(usy)-361(j)1(e)-1(d)1(ne...)-360(\\273e)-1(b)28(y)-360(tak)-360(dr)1(og\\246)-361(p)-27(oz)-1(asta-)]TJ -27.879 -13.55 Td[(wia\\242!...)-287(nic,)-288(j)1(e)-1(n)1(o)-288(si\\246)-288(p)-27(o)-28(c)27(h)1(la\\252y)83(..)1(.)-288(zb)-28(ere\\271)-1(n)1(iki.)1(..)-288(a)-287(dob)1(ro)-28(d)1(z)-1(iej)-287(na)-288(d)1(armo)-288(wyp)-27(omina..)1(.)]TJ 0 -13.549 Td[(a)-335(d)1(obro)-27(dzie)-1(j)1(...-tu)-334(s)-1(i)1(\\246)-336(zas)-1(tan)1(o)28(w)-1(i)1(\\252)-335(d\\252ugo)-334(i)-335(miark)28(o)28(w)27(a\\252,)-334(a\\273)-336(i)-334(w)-1(r)1(e)-1(sz)-1(cie)-335(c)27(h)28(y)1(c)-1(i\\252o)-335(si\\246)-335(go)]TJ 0 -13.549 Td[(roze)-1(znan)1(ie)-358(i)-357(\\273a\\252)-1(o\\261\\242)-358(tak)56(a,)-357(a\\273)-358(pr)1(z)-1(y)1(s)-1(tan)1(\\241\\252,)-358(ogl)1(\\241da\\252)-358(si\\246)-358(d)1(o)-28(ok)28(o\\252a,)-357(p)-28(o)-27(c)27(h)28(yl)1(a\\252)-358(sz)-1(u)1(k)55(a)-55(j\\241c)]TJ 0 -13.549 Td[(cz)-1(ego)-319(b)28(y)-319(t)28(w)28(ard)1(e)-1(go)-319(d)1(o)-319(r\\246ki.)1(..)-319(ale)-319(zap)-28(omni)1(a\\252)-319(w)-1(n)1(e)-1(t)-318(i)-319(c)27(h)29(w)-1(y)1(c)-1(i\\252)-319(si\\246)-319(za)-319(kud)1(\\252y)83(,)-318(i)-319(j\\241\\252)-318(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(a\\242)-334(p)-27(o)-334(p)29(ys)-1(k)1(u)-333(ku\\252aki)1(e)-1(m)-334(i)-333(wyk)1(rz)-1(y)1(kiw)28(a\\242)-1(:)]TJ 27.879 -13.55 Td[({)-254(P)1(ijan)1(ica)-254(jes)-1(te\\261)-254(i)-254(\\261w)-1(i)1(nia)-253(z)-1(ap)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(ona!)-253(Do)-254(d)1(obro)-27(dzie)-1(j)1(a)-254(ci\\246)-254(z)-1(a)28(wle)-1(k)28(\\246,)-254(n)1(iec)27(h)]TJ -27.879 -13.549 Td[(ci\\246)-381(w)-1(y)1(p)-28(omni)-380(pr)1(z)-1(ed)-380(c)-1(a\\252ym)-381(n)1(aro)-28(d)1(e)-1(m,)-381(\\273e)-1(\\261)-381(p)1(ie)-1(s)-381(i)-380(pi)1(jani)1(c)-1(a..)1(.)-381(\\273e)-1(\\261)-381(d)1(w)27(a)-381(p)-27(o)-381(d)1(w)27(a)-380(p)-28(\\363\\252-)]TJ 0 -13.549 Td[(kw)28(ate)-1(r)1(ki..)1(.)-333(\\273)-1(e\\261)-334(c)-1(a\\252ego)-334(r)1(ub)1(la)-333(prze)-1(p)1(i\\252...)-333(\\273e)-1(\\261)-333(jak)28(o)-333(to)-334(b)29(ydl)1(\\246)-334(ab)-28(o)-333(i)-333(gorsz)-1(y)1(!...)-333(\\273e)-1(\\261.)-333(.)]TJ 27.879 -13.549 Td[(I)-448(\\273)-1(a\\252o\\261\\242)-449(z)-449(nag\\252a)-448(go)-449(ob)-55(j)1(\\246)-1(\\252a)-448(nad)-448(sob\\241,)-448(\\273)-1(e)-449(p)1(rzys)-1(i)1(ad\\252)-448(na)-448(dro)-27(dze)-449(i)-449(b)1(uc)28(hn)1(\\241\\252)]TJ -27.879 -13.549 Td[(p\\252acz)-1(em.)]TJ 27.879 -13.55 Td[(Jasn)28(y)83(,)-487(ogromn)28(y)-488(ksi\\246)-1(\\273yc)-488(p\\252yn)1(\\241\\252)-488(w)-489(p)1(rze)-1(strze)-1(n)1(iac)27(h)-487(c)-1(iemn)28(yc)27(h)1(,)-488(a)-488(gdzienie-)]TJ -27.879 -13.549 Td[(gdzie,)-455(z)-455(rzadk)56(a)-455(kieb)28(y)-455(srebr)1(ne)-455(gw)27(o\\271dzie,)-455(gwiaz)-1(d)1(y)-455(b)1(\\252ys)-1(k)56(a\\252y;)-455(mg\\252y)-455(sz)-1(ar)1(\\241,)-455(n)1(ik\\252\\241)]TJ 0 -13.549 Td[(pr)1(z)-1(\\246dz\\241)-442(mota\\252y)-441(s)-1(i\\246)-442(n)1(ad)-441(w)-1(si\\241)-441(i)-442(p)1(rze)-1(s\\252on\\241)-442(p)-27(o)28(wle)-1(k)56(a\\252y)-441(nad)-441(w)28(o)-28(dami.)-441(Niez)-1(g\\252\\246bio-)]TJ 0 -13.549 Td[(na)-354(c)-1(ic)28(ho\\261\\242)-356(n)1(o)-28(cy)-355(jesie)-1(n)1(nej)-355(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252a)-355(\\261)-1(wiat,)-354(t)28(ylk)28(o)-355(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-355(wyry)1(w)27(a\\252y)-354(s)-1(i\\246)]TJ 0 -13.549 Td[(\\261piewy)-334(wr)1(ac)-1(a)-55(j\\241c)-1(y)1(c)27(h)-333(z)-334(k)56(arczm)27(y)-333(alb)-27(o)-334(u)1(jad)1(ania)-333(ps\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-457(n)1(a)-457(dr)1(o)-28(dze)-458(p)1(rze)-1(d)-456(k)56(arcz)-1(m\\241)-457(Jam)27(b)1(ro\\273y)-457(tacz)-1(a\\252)-457(si\\246)-457(z)-1(e)-457(stron)28(y)-456(na)-457(stron)1(\\246)-458(i)]TJ -27.879 -13.55 Td[(\\261piew)27(a\\252)-333(w)27(ci\\241\\273,)-333(nieustann)1(ie,)-334(a\\273)-333(do)-333(wytrze)-1(\\271wie)-1(n)1(ia:)]TJ 27.879 -13.549 Td[(Da)-246(Mar)1(y\\261)-247(mo)-56(j)1(a,)-246(Mar)1(y\\261)-1(!)-246(D)1(a)-247(k)28(om)28(u)-246(p)1(iw)27(o)-246(w)28(arzys)-1(z?)-246(Da)-246(k)28(om)27(u)-246(p)1(iw)28(o)-247(w)28(arzysz)-1(?..)]TJ -27.879 -13.549 Td[(Da)-333(Mary)1(\\261)-334(mo)-56(ja,)-333(M)1(ary\\261!...)]TJ\nET\nendstream\nendobj\n201 0 obj <<\n/Type /Page\n/Contents 202 0 R\n/Resources 200 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n200 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n205 0 obj <<\n/Length 6826      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(5)]TJ/F17 10.909 Tf 0 -73.325 Td[(Jes)-1(ie\\253)-333(sz)-1(\\252a)-333(c)-1(or)1(az)-334(g\\252\\246)-1(b)1(s)-1(za.)]TJ 27.879 -13.549 Td[(Blade)-385(d)1(nie)-385(wlek\\252y)-385(si\\246)-385(przez)-386(p)1(uste)-1(,)-384(og\\252uc)28(h\\252e)-385(p)-28(ol)1(a)-385(i)-385(p)1(rzym)-1(i)1(e)-1(r)1(a\\252)-1(y)-384(w)-385(lasac)27(h)]TJ -27.879 -13.549 Td[(coraz)-363(c)-1(ic)28(hsz)-1(e,)-363(coraz)-363(bl)1(adsz)-1(e)-363({)-363(ni)1(b)28(y)-363(te)-363(\\261wi\\246)-1(te)-363(Hostie)-363(w)-363(dogasa)-56(j)1(\\241c)-1(yc)28(h)-363(b)1(rzas)-1(k)56(ac)27(h)]TJ 0 -13.55 Td[(gromni)1(c)-1(.)]TJ 27.879 -13.549 Td[(A)-363(co)-363(\\261)-1(witan)1(ie)-363({)-363(dzie)-1(\\253)-362(ws)-1(ta)28(w)28(a\\252)-363(le)-1(n)1(iwie)-1(j)1(,)-363(st\\246)-1(\\273a\\252y)-363(o)-28(d)-362(c)27(h)1(\\252)-1(o)-27(du)-362(i)-363(c)-1(a\\252y)-362(w)-364(sz)-1(r)1(o-)]TJ -27.879 -13.549 Td[(nac)28(h,)-323(i)-324(w)-324(b)-28(ol)1(e)-1(snej)-324(cic)27(h)1(o\\261)-1(ci)-324(ziem)-1(i)-324(zamie)-1(r)1(a)-56(j)1(\\241c)-1(ej;)-323(s)-1(\\252o\\253ce)-324(blad)1(e)-325(i)-323(c)-1(i\\246\\273kie)-324(w)-1(y)1(kwita\\252o)]TJ 0 -13.549 Td[(z)-362(g\\252\\246bin)-361(w)-361(w)-1(i)1(e)-1(\\253)1(c)-1(ac)27(h)-361(wron)-361(i)-361(k)56(a)28(w)27(ek,)-361(c)-1(o)-361(si\\246)-362(z)-1(r)1(yw)28(a\\252)-1(y)-361(gd)1(z)-1(ie\\261)-362(znad)-361(z\\363rz,)-362(l)1(e)-1(cia\\252y)-361(ni-)]TJ 0 -13.549 Td[(sk)28(o)-321(n)1(ad)-320(p)-27(olam)-1(i)-320(i)-320(k)1(rak)56(a\\252y)-320(g\\252uc)27(h)1(o,)-320(d\\252u)1(go,)-320(\\273)-1(a\\252o\\261)-1(n)1(ie...)-320(a)-320(z)-1(a)-320(n)1(imi)-320(bieg\\252)-321(ostry)84(,)-320(zim)-1(n)29(y)]TJ 0 -13.549 Td[(wiatr,)-364(m)-1(\\241ci\\252)-365(w)27(o)-27(dy)-365(st\\246)-1(\\273a\\252e)-1(,)-364(w)27(arzy\\252)-365(res)-1(ztki)-365(zieleni)-365(i)-365(r)1(w)27(a\\252)-365(ostatnie)-365(li\\261c)-1(i)1(e)-366(top)-27(olom)]TJ 0 -13.55 Td[(p)-27(o)-28(c)27(h)28(y)1(lon)28(ym)-402(nad)-401(dr)1(ogam)-1(i)1(,)-402(\\273)-1(e)-402(sp\\252yw)28(a\\252y)-402(c)-1(i)1(c)27(ho)-402(n)1(ib)28(y)-401(\\252z)-1(a)-402({)-402(kr)1(w)27(a)28(w)28(e)-403(\\252zy)-402(umar\\252ego)]TJ 0 -13.549 Td[(lata,)-333(i)-333(p)1(ada\\252y)-333(c)-1(i\\246\\273k)28(o)-334(n)1(a)-334(ziem)-1(i)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-372(A)-371(co)-372(\\261w)-1(i)1(tanie)-372({)-371(ws)-1(ie)-372(b)1(ud)1(z)-1(i)1(\\252)-1(y)-371(si\\246)-372(p)-27(\\363\\271)-1(n)1(ie)-1(j)1(:)-371(le)-1(n)1(iwiej)-372(b)29(yd\\252o)-371(s)-1(z\\252o)-372(n)1(a)-372(p)1(as)-1(z\\246)-1(,)]TJ -27.879 -13.549 Td[(cis)-1(ze)-1(j)-286(skrzypi)1(a\\252)-1(y)-286(wie)-1(r)1(z)-1(eje)-287(i)-287(cisz)-1(ej)-287(b)1(rzm)-1(i)1(a\\252)-1(y)-286(g\\252os)-1(y)-286(przyt\\252u)1(m)-1(ion)1(e)-287(m)-1(ar)1(t)27(w)28(ot\\241)-287(i)-286(pu)1(s)-1(t-)]TJ 0 -13.549 Td[(k)56(\\241)-324(p)-27(\\363l,)-323(i)-323(c)-1(i)1(s)-1(ze)-1(j)1(,)-324(t)1(rw)27(o\\273ni)1(e)-1(j)-323(t\\246tni)1(\\252o)-324(\\273yc)-1(i)1(e)-324(s)-1(amo)-323({)-324(a)-323(niekiedy)-323(p)1(rz)-1(ed)-323(c)27(h)1(a\\252upami)-323(alb)-27(o)]TJ 0 -13.55 Td[(i)-316(w)-317(p)-28(ol)1(ac)27(h)-316(widn)1(i)-317(b)29(yli)-316(lud)1(z)-1(ie,)-316(jak)-316(przysta)28(w)27(ali)-316(n)1(agle)-317(i)-317(p)1(atrzyli)-316(d\\252u)1(go)-317(w)-317(d)1(al)-317(omro-)]TJ 0 -13.549 Td[(cz)-1(on)1(\\241,)-431(sin\\241.)1(..)-430(alb)-27(o)-431(i)-430(te)-431(rogate,)-430(p)-28(ot\\246\\273ne)-431(\\252b)28(y)-430(p)-27(o)-28(dn)1(os)-1(i\\252y)-430(si\\246)-431(o)-28(d)-430(tr)1(a)27(w)-430(p)-28(o\\273\\363\\252k\\252yc)27(h)]TJ 0 -13.549 Td[(i)-406(prze\\273)-1(u)28(w)28(a)-56(j)1(\\241c)-407(z)-407(w)27(oln)1(a,)-406(z)-1(atap)1(ia\\252y)-407(\\261lepia)-406(w)-407(pr)1(z)-1(es)-1(t)1(rz)-1(e\\253)-406(dalek)56(\\241...)-406(dal)1(e)-1(k)56(\\241...)1(i)-407(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(g)-1(\\252u)1(c)27(h)28(y)84(,)-333(\\273)-1(a\\252osn)28(y)-333(ryk)-333(t\\252u)1(k\\252)-333(s)-1(i\\246)-334(p)-27(o)-333(pu)1(s)-1(t)28(yc)28(h)-333(p)-28(ol)1(ac)27(h.)]TJ 27.879 -13.549 Td[(A)-461(co)-461(\\261)-1(witan)1(ie)-462({)-461(mro)-27(c)-1(zniej)-461(b)29(y\\252o)-461(i)-461(z)-1(i)1(m)-1(n)1(ie)-1(j)1(,)-461(i)-461(n)1(i\\273)-1(ej)-461(d)1(ym)27(y)-460(rozs)-1(n)28(u)28(w)28(a\\252y)-461(si\\246)]TJ -27.879 -13.55 Td[(p)-27(o)-431(nagi)1(c)27(h)-430(s)-1(ad)1(ac)27(h,)-430(i)-431(wi\\246ce)-1(j)-430(ptak)28(\\363)28(w)-431(zlat)28(yw)28(a\\252o)-431(do)-430(w)-1(si)-431(i)-430(s)-1(zuk)56(a\\252o)-431(sc)27(h)1(roni)1(e)-1(n)1(ia)-431(p)-27(o)]TJ 0 -13.549 Td[(sto)-28(do\\252ac)28(h)-386(i)-386(brogac)28(h,)-386(a)-386(wron)28(y)-386(siada\\252y)-386(n)1(a)-387(k)56(aleni)1(c)-1(ac)27(h)1(,)-386(to)-386(w)-1(i)1(e)-1(sz)-1(a\\252y)-386(si\\246)-387(n)1(a)-387(n)1(agic)27(h)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(ac)28(h)-306(lu)1(b)-306(kr\\241\\273y\\252y)-306(nad)-305(z)-1(iemi\\241)-306(kracz)-1(\\241c)-306(g\\252)-1(u)1(c)27(h)1(o)-307({)-306(j)1(ak)28(ob)28(y)-306(pi)1(e)-1(\\261\\253)-306(z)-1(i)1(m)27(y)-306(\\261piew)27(a)-55(j\\241c)]TJ 0 -13.549 Td[(\\273a\\252)-1(osn\\241.)]TJ 27.879 -13.549 Td[(P)28(o\\252u)1(dni)1(a)-237(b)28(y)1(\\252)-1(y)-236(s\\252onec)-1(zne,)-237(al)1(e)-237(tak)-237(mart)28(w)28(e)-237(i)-236(niem)-1(e,)-236(\\273)-1(e)-237(p)-27(os)-1(zum)28(y)-236(las)-1(\\363)28(w)-237(d)1(o)-28(c)27(h)1(o-)]TJ -27.879 -13.55 Td[(dzi\\252y)-314(g\\252u)1(c)27(h)28(y)1(m)-315(szm)-1(erem)-315(i)-313(b)-27(e)-1(\\252k)28(ot)-314(r)1(z)-1(eki)-314(r)1(oz)-1(lega\\252)-314(si\\246)-314(jak)-314(\\252k)56(an)1(ie)-314(b)-28(oles)-1(n)1(e)-1(,)-313(a)-314(sz)-1(cz)-1(\\241tk)1(i)]TJ 0 -13.549 Td[(bab)1(iego)-362(l)1(ata)-362(r)1(w)27(a\\252y)-361(si\\246)-362(n)1(ie)-362(wiad)1(om)-1(o)-361(sk)55(\\241d)-361(i)-361(p)1(rze)-1(p)1(ada\\252y)-361(w)-361(os)-1(tr)1(yc)27(h,)-361(zimn)28(yc)28(h)-361(c)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(ac)27(h)-333(c)27(h)1(a\\252up)1(.)]TJ 27.879 -13.549 Td[(A)-451(s)-1(m\\246te)-1(k)-451(k)28(on)1(ania)-451(b)28(y\\252)-451(w)-452(t)28(y)1(c)27(h)-451(p)-27(o\\252udn)1(iac)27(h)-450(c)-1(ic)28(h)28(yc)27(h)1(,)-451(na)-451(pu)1(s)-1(t)28(yc)28(h)-451(dr)1(ogac)27(h)]TJ -27.879 -13.549 Td[(le\\273)-1(a\\252o)-488(milcze)-1(n)1(ie)-1(,)-487(a)-488(w)-488(o)-28(d)1(art)28(yc)27(h)-487(z)-488(li\\261c)-1(i)-487(s)-1(ad)1(ac)27(h)-487(c)-1(zai\\252a)-488(si\\246)-488(g\\252\\246)-1(b)-27(ok)56(a)-488(m)-1(elan)1(c)27(hol)1(ia)]TJ 0 -13.55 Td[(\\273a\\252)-1(o\\261ci)-334(i)-333(tr)1(w)27(ogi)-333(zaraze)-1(m.)]TJ 27.879 -13.549 Td[(I)-437(c)-1(z\\246)-1(sto,)-437(c)-1(or)1(az)-438(cz)-1(\\246\\261)-1(ciej)-437(nieb)-27(o)-438(p)-27(o)28(wle)-1(k)56(a\\252o)-437(s)-1(i\\246)-437(bu)1(rymi)-437(c)27(hm)28(ur)1(am)-1(i)1(,)-438(\\273e)-438(j)1(u\\273)-438(o)]TJ -27.879 -13.549 Td[(letni)1(m)-334(p)-27(o)-28(dwiec)-1(zorku)-333(m)28(usian)1(o)-334(sc)27(h)1(o)-28(dzi\\242)-334(z)-334(p)-27(\\363l,)-333(b)-27(o)-334(mrok)-333(ogar)1(nia\\252)-333(\\261)-1(wiat)1(...)]TJ 363.686 -29.888 Td[(59)]TJ\nET\nendstream\nendobj\n204 0 obj <<\n/Type /Page\n/Contents 205 0 R\n/Resources 203 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n203 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n208 0 obj <<\n/Length 9539      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(60)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(Do)-28(or)1(yw)27(an)1(o)-257(p)-27(o)-28(dor)1(\\363)27(wki)1(,)-257(\\273e)-258(n)1(iekt\\363ry)-256(k\\252ad\\252)-257(skib)-27(\\246)-258(ostatn)1(i\\241)-257(ju)1(\\273)-257(o)-257(g\\246)-1(st)28(ym)-257(m)-1(r)1(o-)]TJ -27.879 -13.549 Td[(ku)1(,)-228(a)-227(wrac)-1(a)-55(j\\241c)-228(d)1(o)-228(d)1(om)-228(obziera\\252)-228(si\\246)-228(j)1(e)-1(sz)-1(cz)-1(e)-228(za)-228(si\\246)-228(za)-228(rol)1(\\246)-228(i)-228(\\273egna\\252)-228(j)1(\\241)-228(w)28(e)-1(stc)27(h)1(nieni)1(e)-1(m)]TJ 0 -13.549 Td[(do)-333(wiosn)28(y)83(.)]TJ 27.879 -13.549 Td[(A)-280(na)-280(p)1(rz)-1(edwiecz)-1(erz\\246)-281(c)-1(z\\246s)-1(to)-280(spada\\252y)-280(d)1(e)-1(sz)-1(cze)-1(,)-280(kr)1(\\363tkie)-280(b)28(y\\252y)-280(jesz)-1(cz)-1(e,)-280(ale)-281(zim-)]TJ -27.879 -13.549 Td[(ne)-336(i)-335(coraz)-336(cz)-1(\\246\\261)-1(cie)-1(j)-335(p)1(rze)-1(ci\\241)-28(ga\\252y)-335(s)-1(i)1(\\246)-336(do)-336(zmroku)-335({)-336(d)1(o)-336(d)1(\\252ugiego)-336(j)1(e)-1(siennego)-336(zmroku)1(,)]TJ 0 -13.55 Td[(w)-325(k)1(t\\363rym)-325(j)1(ak)-325(k)1(w)-1(i)1(at)28(y)-325(z\\252ote)-325(p\\252on)1(\\246)-1(\\252y)-324(okna)-324(c)27(h)1(at)-325(i)-324(sz)-1(kl)1(i\\252y)-325(si\\246)-325(k)56(a\\252u\\273ami)-325(p)1(uste)-325(dr)1(ogi)]TJ 0 -13.549 Td[({)-333(a)-334(mokr)1(a)-334(zimna)-333(no)-28(c)-333(t\\252uk\\252a)-333(s)-1(i)1(\\246)-334(o)-334(\\261cian)28(y)-333(i)-333(p)-28(o)-55(j\\246kiw)28(a\\252a)-334(w)-333(s)-1(ad)1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-419(ten)-419(b)-27(o)-28(ciek)-419(z)-419(przetr\\241con)28(ym)-419(s)-1(k)1(rz)-1(y)1(d\\252em)-1(,)-418(c)-1(o)-419(si\\246)-419(b)28(y\\252)-419(osta\\252)-419(i)-419(kt)1(\\363re)-1(go)]TJ -27.879 -13.549 Td[(widy)1(w)27(an)1(o)-253(sam)-1(ot)1(nie)-253(b)1(ro)-28(d)1(z)-1(\\241cym)-253(p)-27(o)-252(\\252\\241k)55(ac)28(h,)-252(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\242)-253(j\\241\\252)-252(p)-28(o)-27(d)-252(br\\363g)-252(Boryn)28(y)-252(ab)-27(o)]TJ 0 -13.549 Td[(i)-384(zas)-1(i\\246)-384(na)-384(s)-1(amo)-384(p)-28(o)-27(dw)28(\\363rz)-1(e,)-384(gdzie)-384(m)27(u)-384(Wi)1(te)-1(k)-384(skw)28(a)-1(p)1(liwie)-384(p)-28(o)-27(drzuca\\252)-385(n)1(a)-384(przyn)1(\\246)-1(t\\246)]TJ 0 -13.549 Td[(jad)1(\\252o.)]TJ 27.879 -13.55 Td[(A)-268(i)-268(d)1(z)-1(iad)1(y)-268(r\\363\\273ne)-268(c)-1(or)1(az)-269(cz)-1(\\246\\261)-1(ciej)-268(na)28(wiedza\\252)-1(y)-267(w)-1(i)1(e)-1(\\261;)-268(i)-268(te)-268(z)-1(wycz)-1(a)-55(jne,)-268(p)1(ros)-1(zaln)1(e)-1(,)]TJ -27.879 -13.549 Td[(co)-255(z)-255(tor)1(b\\241)-254(g\\252\\246)-1(b)-27(ok)56(\\241)-255(i)-254(z)-255(p)1(ac)-1(ierze)-1(m)-254(d\\252ugi)1(m)-255(s)-1(z\\252y)-254(o)-28(d)-254(dr)1(z)-1(wi)-254(do)-254(dr)1(z)-1(wi,)-254(pr)1(z)-1(epr)1(o)27(w)28(adzane)]TJ 0 -13.549 Td[(uj)1(adan)1(iem)-262(p)1(ies)-1(k)28(\\363)28(w)-261({)-261(a)-261(b)28(y)1(\\252y)-261(i)-261(d)1(ru)1(gie)-1(,)-260(insz)-1(e,)-261(t)1(akie)-1(,)-260(c)-1(o)-260(o)-28(d)-261(miejsc)-261(\\261)-1(wi\\246t)28(yc)27(h)-260(c)-1(i)1(\\241)-28(gn\\246\\252y)]TJ 0 -13.549 Td[(i)-335(zna\\252y)-334(Ostr\\241)-335(Bram\\246)-1(,)-334(Cz)-1(\\246s)-1(to)-27(c)27(ho)28(w)28(\\246)-335(i)-335(Kalw)28(ari)1(\\246)-1(,)-334(a)-335(rad)1(e)-336(op)-27(o)28(wiada\\252y)-334(d\\252ugi)1(m)-1(i)-334(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(cz)-1(orami,)-360(c)-1(o)-360(s)-1(i)1(\\246)-362(gd)1(z)-1(i)1(e)-362(w)28(e)-361(\\261)-1(wiecie)-361(dzie)-1(j)1(e)-361(i)-361(j)1(akie)-361(cuda)-360(s)-1(i)1(\\246)-362(gd)1(z)-1(i)1(e)-361(s)-1(ta\\252y)84(,)-361(a)-361(t)1(ra\\014a\\252)-360(s)-1(i\\246)]TJ 0 -13.55 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-313(i)-313(taki)1(,)-313(kt\\363ren)-313(p)-27(o)-313(cic)27(h)28(u)-312(p)-28(o)28(wiad)1(a\\252)-314(si\\246)-313(a\\273)-314(z)-313(Zie)-1(mi)-313(\\221)1(wi\\246)-1(tej)-313(i)-312(takie)-313(c)-1(u)1(de\\253k)56(a)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\252)-1(,)-331(takie)-332(kr)1(a)-56(j)1(e)-332(z)-1(n)1(a\\252)-1(,)-331(pr)1(z)-1(ez)-332(takie)-332(wielgac)27(hn)1(e)-332(m)-1(or)1(z)-1(a)-331(jec)27(ha\\252,)-331(t)28(yla)-332(p)1(rzyg\\363)-28(d)-331(do-)]TJ 0 -13.549 Td[(zna\\252,)-337(\\273e)-337(a\\273)-338(d)1(z)-1(i)1(w)-337(ogarni)1(a\\252)-337(s)-1(\\252u)1(c)27(ha)-55(j\\241cyc)27(h)-336(p)-27(ob)-28(o\\273ni)1(e)-1(,)-336(a)-337(niejedn)1(e)-1(m)28(u)-337(i)-336(u)28(wierzy\\242)-337(b)28(y\\252o)]TJ 0 -13.549 Td[(tru)1(dn)1(o)-365(w)-365(to)-365(ws)-1(zystk)28(o...)-364(Ale)-366(c)28(hciwie)-365(s)-1(\\252uc)28(ha\\252,)-365(j)1(ak)28(o)-365(\\273e)-366(k)56(a\\273den)-365(rad)-364(si\\246)-366(cze)-1(go\\261)-365(no-)]TJ 0 -13.549 Td[(w)28(e)-1(go)-327(d)1(o)27(wiedzia\\252,)-327(a)-326(i)-327(wiec)-1(zory)-327(b)29(y\\252y)-327(d\\252u)1(gie,)-327(i)-327(d)1(o)-327(\\261)-1(wit)1(u)-327(wyspa\\242)-327(s)-1(i)1(\\246)-328(j)1(e)-1(sz)-1(cze)-328(mo\\273)-1(n)1(a)]TJ 0 -13.55 Td[(b)28(y\\252o)-333(c)27(h)1(o)-28(\\242b)28(y)-333(i)-333(na)-333(oba)-333(b)-28(ok)1(i.)]TJ 27.879 -13.549 Td[(Hej!)-333(Jes)-1(ie\\253)-333(to)-333(b)28(y\\252a,)-333(p)-27(\\363\\271)-1(n)1(a)-334(j)1(e)-1(sie\\253!)]TJ 0 -13.549 Td[(I)-393(an)1(i)-393(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(wk)28(\\363)28(w,)-393(n)1(i)-393(p)-27(okrzyk)28(\\363)28(w)-393(w)27(es)-1(o\\252yc)28(h,)-392(ni)-393(t)1(e)-1(go)-393(p)1(tas)-1(zk)28(\\363)28(w)-393(piu)1(k)56(ania,)]TJ -27.879 -13.549 Td[(ni)-293(na)28(w)28(o\\252yw)27(a\\253)-293(ni)1(e)-295(s\\252yc)27(h)1(a\\242)-294(b)28(y\\252o)-294(w)28(e)-295(wsi)-294({)-294(n)1(ic,)-294(j)1(e)-1(n)1(o)-294(te)-1(n)-293(wiatr,)-293(p)-27(o)-56(j\\246ku)1(j\\241cy)-294(w)-294(strze)-1(-)]TJ 0 -13.549 Td[(c)27(h)1(ac)27(h)1(,)-376(jeno)-376(te)-376(d\\273d\\273e)-1(,)-376(syp)1(i\\241c)-1(e)-376(jak)28(ob)28(y)-375(s)-1(zkliw)28(e)-1(m)-376(p)-27(o)-376(s)-1(zybac)28(h,)-376(i)-376(to)-376(g\\252u)1(c)27(he,)-376(wzm)-1(a-)]TJ 0 -13.55 Td[(ga)-56(j)1(\\241c)-1(e)-333(s)-1(i\\246)-333(c)-1(o)-333(dn)1(ia)-333(bicie)-334(ce)-1(p)-27(\\363)28(w)-334(p)-27(o)-333(s)-1(to)-28(d)1(o\\252ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-297(mart)28(wia\\252y)-297(r)1(\\363)27(wn)1(o,)-297(jak)28(o)-296(te)-298(p)-27(ola)-297(ok)28(\\363l)1(ne,)-297(co)-297(w)-1(y)1(c)-1(ze)-1(r)1(pan)1(e)-1(,)-297(szare)-1(,)-296(o)-28(dar)1(te)]TJ -27.879 -13.549 Td[(w)-427(o)-27(dp)-27(o)-28(cz)-1(n)1(ie)-1(n)1(iu)-426(le\\273)-1(a\\252y)-426(i)-426(cic)27(h)1(o\\261)-1(ci)-426(t\\246)-1(\\273enia;)-426(j)1(ak)28(o)-427(te)-426(drzew)-1(in)29(y)-426(nagie,)-426(p)-28(oskr)1(\\246)-1(cane,)]TJ 0 -13.549 Td[(\\273a\\252)-1(ob)1(ne,)-333(dr)1(\\246)-1(t)28(wie)-1(j)1(\\241c)-1(e)-333(z)-334(w)27(ol)1(na)-333(na)-333(d\\252u)1(g\\241,)-333(d\\252ug\\241)-333(zim)-1(\\246...)]TJ 27.879 -13.549 Td[(Jes)-1(ie\\253)-333(to)-333(b)28(y\\252a,)-333(ro)-27(dzona)-333(m)-1(atk)56(a)-333(z)-1(i)1(m)27(y)84(.)]TJ 0 -13.55 Td[(Ino)-429(si\\246)-430(t)28(ym)-430(p)-27(okr)1(z)-1(epian)1(o,)-429(\\273)-1(e)-429(nie)-430(ma)-429(jes)-1(zc)-1(ze)-430(p)1(luc)28(h)28(y)83(,)-429(\\273e)-430(d)1(rogi)-429(nie)-429(bard)1(z)-1(o)]TJ -27.879 -13.549 Td[(rozmi\\246)-1(k)1(\\252)-1(y)-337(i)-337(mo\\273)-1(e)-338(wytr)1(z)-1(y)1(m)-1(a)-337(p)-28(ogo)-27(da)-337(do)-337(jarmark)1(u,)-337(na)-337(kt\\363r)1(e)-1(n)-337(ca\\252e)-338(Lip)-27(c)-1(e)-338(si\\246)-338(wy-)]TJ 0 -13.549 Td[(bi)1(e)-1(r)1(a\\252)-1(y)84(,)-333(jak)1(b)28(y)-333(na)-333(o)-28(dp)1(ust)-333(jaki.)]TJ 27.879 -13.549 Td[(Bo)-238(j)1(armark)-237(mia\\252)-237(b)28(y\\242)-238(n)1(a)-238(\\261wi\\246)-1(t)1(\\241)-238(Kor)1(du)1(l\\246)-1(,)-237(w)28(aln)28(y)-237(i)-237(ostatni)-237(j)1(u\\273)-238(p)1(rze)-1(d)-237(G)1(o)-28(dami,)]TJ -27.879 -13.549 Td[(wi\\246c)-334(s)-1(i)1(\\246)-334(na\\253)-333(wsz)-1(ysc)-1(y)-333(sz)-1(y)1(k)28(o)27(w)28(ali)-333(n)1(ale)-1(\\273ycie)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-231(n)1(a)-230(par)1(\\246)-231(d)1(ni)-229(prze)-1(d)1(tem)-231(d)1(e)-1(l)1(ib)-27(e)-1(ro)28(w)28(ano)-230(p)-27(o)-230(ws)-1(i)1(,)-230(co)-230(b)28(y)-230(si\\246)-230(s)-1(p)1(rze)-1(d)1(a\\242)-231(d)1(a\\252o,)-230(cz)-1(y)]TJ -27.879 -13.55 Td[(z)-274(i)1(n)28(w)27(en)28(tar)1(z)-1(a,)-273(cz)-1(y)-272(z)-274(ziarn)1(a)-274(ab)-27(o)-273(te\\273)-274(z)-273(drob)1(nego)-273(pr)1(z)-1(yc)28(h\\363)28(wku.)-273(A)-273(\\273e)-274(n)1(a)-273(z)-1(i)1(m)-1(\\246)-273(s)-1(z\\252o,)-273(to)]TJ 0 -13.549 Td[(i)-244(ku)1(p)-28(o)28(w)28(a\\242)-245(trza)-244(b)28(y\\252o)-244(ni)1(e)-1(ma\\252o)-244(i)-244(z)-245(pr)1(z)-1(y)28(o)-27(dzie)-1(wku)1(,)-244(i)-244(z)-1(e)-244(s)-1(p)1(rz\\246)-1(t\\363)28(w,)-244(i)-244(z)-245(r)1(\\363\\273)-1(n)28(y)1(c)27(h)-244(r)1(\\363\\273)-1(n)1(o\\261)-1(ci)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arskic)28(h,)-328(z)-328(c)-1(zego)-328(i)-328(r\\363\\273ne)-328(tur)1(bacje)-328(p)-28(osz\\252)-1(y)84(,)-328(i)-327(s)-1(w)28(ary)84(,)-328(i)-328(k\\252\\363tn)1(ie)-328(p)-28(o)-328(c)28(ha\\252up)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(b)-27(o)-28(\\242)-311(wiad)1(om)-1(o)-310(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h,)-310(\\273e)-311(u)-310(ni)1(k)28(og\\363)-56(j)-310(si\\246)-311(n)1(ie)-311(p)1(rze)-1(lew)28(a)-311(a)-310(o)-310(grosz)-311(goto)28(wy)-310(c)-1(oraz)-310(to)]TJ 0 -13.549 Td[(tru)1(dn)1(iej.)]TJ 27.879 -13.55 Td[(A)-265(tu)-265(i)-266(r)1(yc)27(h)28(t)28(yk)-265(w)-266(t)1(e)-1(n)-265(cz)-1(as)-266(i)-265(p\\252aci\\242)-266(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252o)-266(p)-27(o)-28(datk)1(i,)-265(to)-266(gminn)1(e)-266(s)-1(k)1(\\252adki)]TJ -27.879 -13.549 Td[(i)-248(s)-1(p)1(\\252at)27(y)-248(r\\363\\273ne)-249(mi\\246dzy)-248(s)-1(ob)1(\\241,)-249(a)-248(c)-1(z\\246)-1(sto)-249(i)-248(p)1(rz)-1(edn)1(\\363)28(w)-1(k)28(o)28(w)28(e)-249(p)-28(o\\273ycz)-1(ki)1(,)-249(a)-248(jak)-248(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-248(to)-248(i)]TJ\nET\nendstream\nendobj\n207 0 obj <<\n/Type /Page\n/Contents 208 0 R\n/Resources 206 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 193 0 R\n>> endobj\n206 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n211 0 obj <<\n/Length 9350      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(61)]TJ -363.686 -35.866 Td[(zas)-1(\\252ugi)-282(s)-1(\\252u)1(\\273)-1(b)1(ie)-283({)-283(t)28(yla)-283(t)1(e)-1(go)-283(r)1(az)-1(em)-1(,)-282(\\273)-1(e)-283(n)1(ie)-1(k)1(t\\363ren,)-283(c)28(ho)-28(\\242b)28(y)-282(i)-283(z)-283(p)-28(\\363\\252w\\252\\363k)28(o)28(wyc)27(h)1(,)-283(ci\\246)-1(\\273k)28(o)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a\\252)-458(i)-456(k)55(al)1(kulo)28(w)28(a\\252,)-457(a)-457(nic)-457(nie)-457(wyc)27(h)1(o)-28(dzi\\252o)-457(b)-28(ez)-458(wyp)1(ro)28(w)27(ad)1(z)-1(eni)1(a)-457(na)-457(jar)1(m)-1(ar)1(k)]TJ 0 -13.549 Td[(k)28(oni)1(a)-334(ab)-27(o)-333(i)-334(k)1(ro)28(wy)83(,)-333(a)-333(ju)1(\\273)-334(o)-334(b)1(iedn)1(ie)-1(j)1(s)-1(zyc)27(h)-332(to)-334(i)-333(n)1(ie)-334(ma)-334(co)-333(rz)-1(ec.)]TJ 27.879 -13.549 Td[(Wi\\246c)-315(te\\273)-315(i)-314(jak)1(i)-314(taki)-314(wypr)1(o)27(w)28(adza\\252)-314(kro)28(win\\246)-314(prze)-1(d)-313(ob)-28(or)1(\\246)-1(,)-314(wycie)-1(r)1(a\\252)-315(j)1(e)-1(j)-314(ogn)1(o-)]TJ -27.879 -13.549 Td[(jon)1(e)-289(b)-27(oki)-289(wiec)27(h)1(e)-1(tk)1(ie)-1(m)-288(i)-289(n)1(a)-289(n)1(o)-28(c)-289(pr)1(z)-1(yr)1(z)-1(u)1(c)-1(a\\252)-288(k)28(onicz)-1(y)1(n)28(y)83(,)-288(to)-288(goto)28(w)27(an)1(e)-1(go)-288(j\\246c)-1(zm)-1(i)1(e)-1(n)1(ia)]TJ 0 -13.55 Td[(z)-411(k)56(arto\\015ami.)-410(b)28(yl)1(e)-412(j)1(e)-1(n)1(o)-411(wyp)-27(\\246)-1(cz)-1(n)1(ia\\252a)-411(\\271dziebk)28(o;)-410(kt\\363ren)-410(z)-1(n)1(\\363)27(w)-411(p)1(rzys)-1(p)-27(osabia\\252)-410(s)-1(ta-)]TJ 0 -13.549 Td[(re,)-466(p)-28(o\\261lep\\252e)-467(ca\\252kiem)-467(wyw\\252oki,)-466(\\273)-1(eb)28(y)-466(c)27(h)29(yla)-466(t)28(yla)-466(do)-466(k)28(oni)-466(b)28(y)1(\\252)-1(y)-466(p)-27(o)-28(d)1(obne)-466(na)-466(te)-1(n)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(k\\252ad.)-333(Insz)-1(e)-333(z)-1(n)1(o)27(wu)-333(m\\252\\363)-28(ci\\252y)-333(z)-1(a)28(wz)-1(i\\246cie)-334(dn)1(ie)-334(ca\\252e)-1(,)-333(\\273e)-1(b)28(y)-333(zd\\241\\273y\\242)-334(n)1(a)-334(j)1(armark.)]TJ 27.879 -13.549 Td[(I)-252(u)-251(Bory)1(n\\363)28(w)-252(sp)-28(osobion)1(o)-252(si\\246)-252(ra\\271ni)1(e)-1(;)-251(s)-1(tar)1(y)-252(z)-252(K)1(ub)1(\\241)-252(dom\\252\\363)-28(ca\\252)-252(p)1(s)-1(ze)-1(n)1(ic)-1(y)84(,)-251(a)-252(J\\363z-)]TJ -27.879 -13.549 Td[(k)56(a)-308(z)-308(Han)1(k)56(\\241,)-308(co)-308(i)1(m)-308(ino)-307(cz)-1(asu)-307(os)-1(ta)28(w)28(a\\252)-1(o,)-307(to)-307(p)-27(o)-28(dp)1(as)-1(a\\252y)-307(m)-1(acior)1(\\246)-308(i)-308(te)-307(g\\241s)-1(ki)-307(wyb)1(rane)]TJ 0 -13.549 Td[(z)-298(os)-1(t)1(a)27(wian)29(yc)27(h)-297(na)-297(c)27(h)1(o)27(w)28(ani)1(e)-1(,)-297(An)28(tek)-298(za\\261)-298(z)-298(Witki)1(e)-1(m,)-298(\\273e)-298(to)-298(l)1(e)-1(d)1(a)-298(dzie\\253)-297(s)-1(p)-27(o)-28(d)1(z)-1(iew)27(an)1(o)]TJ 0 -13.55 Td[(si\\246)-365(d)1(e)-1(sz)-1(cz\\363)27(w;)-364(j)1(e)-1(\\271dzili)-364(d)1(o)-364(b)-27(oru)-364(p)-27(o)-364(s)-1(u)1(s)-1(z)-364(na)-364(ogi)1(e)-1(\\253)-363(i)-364(p)-27(o)-364(\\261)-1(ci\\363\\252k)28(\\246)-1(,)-364(z)-364(kt\\363r)1(e)-1(j)-363(c)-1(o)-364(p)-27(os)-1(z\\252o)]TJ 0 -13.549 Td[(do)-333(ob)-27(ory)84(,)-333(a)-334(resz)-1(t\\246)-334(zw)28(alali)-333(p)-27(o)-28(d)-333(c)27(h)1(a\\252up)-27(\\246)-334(do)-333(ogac)-1(eni)1(a)-334(\\261c)-1(i)1(an.)]TJ 27.879 -13.549 Td[(I)-394(tak)-393(ta)-394(p)1(rzys)-1(p)1(ies)-1(zona)-393(rob)-27(o)-1(t)1(a)-394(trw)28(a\\252a)-394(a\\273)-394(do)-393(p)-28(\\363\\271na)-393(w)-394(no)-28(c)-394(ostatn)1(i\\241)-394(p)1(rz)-1(ed)]TJ -27.879 -13.549 Td[(jar)1(m)-1(ar)1(kiem)-1(;)-428(dopi)1(e)-1(r)1(o)-430(gd)1(y)-429(psze)-1(n)1(ic)-1(a)-429(j)1(u\\273)-429(w)27(e)-429(w)27(or)1(ac)27(h)-429(le\\273a\\252)-1(a)-429(n)1(a)-429(w)27(ozie)-429(w)-1(to)-27(c)-1(zon)28(ym)]TJ 0 -13.549 Td[(do)-433(s)-1(to)-27(do\\252y)-434(i)-433(ws)-1(zystk)28(o)-434(b)28(y\\252o)-433(przyrz\\241dzone)-434(n)1(a)-434(ju)1(tro)-433({)-434(s)-1(i)1(e)-1(d)1(li)-434(wsz)-1(yscy)-434(raze)-1(m)-434(d)1(o)]TJ 0 -13.55 Td[(wiec)-1(ze)-1(r)1(z)-1(y)-333(w)-334(Bory)1(no)28(w)27(ej)-333(izbie.)]TJ 27.879 -13.549 Td[(Na)-438(k)28(om)-1(i)1(nie)-438(bu)1(z)-1(o)28(w)28(a\\252)-439(si\\246)-439(w)28(e)-1(so\\252y)-438(ogie\\253)-438(ze)-439(\\261w)-1(i)1(e)-1(rczyn)28(y)83(,)-437(p)-28(otr)1(z)-1(askuj)1(\\241c)-1(y)-438(ci\\246-)]TJ -27.879 -13.549 Td[(giem)-1(,)-298(a)-299(oni)-299(j)1(e)-1(d)1(li)-299(w)28(oln)1(o)-299(i)-299(w)-299(m)-1(i)1(lc)-1(zeniu)1(,)-299(z)-1(e)-299(to)-299(p)-27(o)-299(spraco)28(w)27(an)1(iu)-299(n)1(ik)28(om)27(u)-298(s)-1(i)1(\\246)-300(o)-27(dzyw)27(a\\242)]TJ 0 -13.549 Td[(ni)1(e)-441(c)27(h)1(c)-1(i)1(a\\252)-1(o,)-440(a\\273)-440(dop)1(ie)-1(r)1(o)-440(kiedy)-440(sk)28(o\\253cz)-1(yl)1(i)-440(i)-440(gdy)-440(ju)1(\\273)-441(k)28(ob)1(ie)-1(t)28(y)-440(p)-27(osprz\\241ta\\252y)-440(mis)-1(k)1(i)-440(i)]TJ 0 -13.549 Td[(garn)1(ki)-333(z)-334(\\252a)28(w)-1(y)84(,)-333(Boryn)1(a)-334(r)1(z)-1(ek\\252,)-333(c)-1(o\\261)-334(n)1(iec)-1(o\\261)-334(p)1(rzys)-1(u)29(w)27(a)-55(j\\241c)-334(si\\246)-334(d)1(o)-334(k)28(omin)1(a:)]TJ 27.879 -13.55 Td[({)-333(Przed)-333(\\261)-1(witan)1(ie)-1(m)-333(trza)-334(r)1(usz)-1(y)1(\\242)-1(!)]TJ 0 -13.549 Td[({)-255(Ju\\261c)-1(i)1(,)-255(\\273)-1(e)-256(n)1(ie)-256(p)-27(\\363\\271niej)-255({)-255(o)-28(dr)1(z)-1(ek\\252)-255(An)28(te)-1(k)-255(i)-255(zabr)1(a\\252)-256(si\\246)-256(d)1(o)-255(s)-1(maro)28(w)27(an)1(ia)-255(up)1(rz\\246)-1(\\273y)83(,)]TJ -27.879 -13.549 Td[(Ku)1(ba)-472(s)-1(tr)1(uga\\252)-473(b)1(ijak)-472(do)-472(c)-1(ep)-27(\\363)27(w,)-472(a)-473(W)1(ite)-1(k)-472(ob)1(ie)-1(r)1(a\\252)-473(k)56(arto\\015)1(e)-473(na)-472(rano)-472(i)-473(r)1(az)-473(w)-473(raz)]TJ 0 -13.549 Td[(p)-27(os)-1(ztur)1(c)27(hi)1(w)27(a\\252)-333(\\212ap)-28(\\246,)-333(kt\\363ren)-333(le\\273)-1(a\\252)-333(ob)-27(ok)-333(i)-334(wyb)1(iera\\252)-334(sobi)1(e)-334(p)-27(c)27(h\\252y)-333(z\\246)-1(b)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-411(s)-1(i)1(\\246)-412(u)1(c)-1(zyni)1(\\252)-1(a,)-410(\\273)-1(e)-411(ino)-411(ogi)1(e)-1(\\253)-410(trzas)-1(k)56(a\\252)-411(i)-411(\\261)-1(wiersz)-1(cze)-412(za)-411(k)28(om)-1(in)1(e)-1(m)-411(p)-27(o-)]TJ -27.879 -13.55 Td[(skrzypi)1(w)27(a\\252y)-247(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)-247(a)-247(z)-247(dru)1(giej)-247(s)-1(t)1(ron)28(y)-247(d)1(om)27(u)-247(d)1(o)-28(c)27(h)1(o)-28(dzi\\252)-247(pl)1(usk)-247(w)27(o)-28(d)1(y)-247(i)-247(sz)-1(cz)-1(\\246k)56(anie)]TJ 0 -13.549 Td[(m)27(y)1(t)28(yc)27(h)-333(garn)1(k)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kub)1(a,)-333(os)-1(tan)1(ie)-1(sz)-334(to)-333(w)-334(s\\252u\\273bi)1(e)-334(d\\252u)1(\\273)-1(ej,)-333(co?)]TJ 0 -13.549 Td[(Ku)1(ba)-318(s)-1(p)1(u\\261c)-1(i)1(\\252)-319(o\\261ni)1(k,)-318(kt\\363ry)1(m)-319(stru)1(ga\\252)-1(,)-318(i)-318(zapat)1(rz)-1(y)1(\\252)-319(si\\246)-319(w)-318(ogie\\253)-318(tak)-318(d)1(\\252)-1(u)1(go,)-318(a\\273)]TJ -27.879 -13.549 Td[(Boryn)1(a)-334(m)28(u)-333(pr)1(z)-1(yp)-27(omnia\\252.)]TJ 27.879 -13.55 Td[({)-333(S\\252ysz)-1(a\\252e\\261)-1(,)-333(com)-334(ci)-334(r)1(z)-1(ek\\252?)]TJ 0 -13.549 Td[({)-261(S\\252ysz)-1(e\\242)-262(s)-1(\\252ysza\\252)-1(em,)-262(i)1(no)-261(tak)-262(w)-261(g\\252o)27(w)28(\\246)-262(z)-1(ac)28(ho)-28(d)1(z)-1(\\246,)-261(\\273)-1(e)-262(p)-27(o)-262(p)1(ra)28(wdzie)-262(to)-261(krzywdy)]TJ -27.879 -13.549 Td[(mi)-333(nij)1(akiej)-333(u)-333(w)27(as)-333(nie)-334(b)29(y\\252o...)-333(Ju)1(\\261)-1(ci,)-333(ale)-334(i)1(no...)-333({)-333(ur)1(w)27(a\\252)-333(z)-1(ak)1(\\252)-1(op)-27(otan)28(y)84(.)]TJ 27.879 -13.549 Td[({)-434(J\\363zia,)-433(da)-55(j)-434(n)1(o)-434(gorza\\252ki)-433(i)-434(co)-434(pr)1(z)-1(egry\\271\\242,)-434(co)-434(mam)27(y)-433(na)-434(suc)28(ho)-434(r)1(adzi\\242)-1(,)-433(kiej)]TJ -27.879 -13.549 Td[(\\233yd)1(y)-439(j)1(akie)-439({)-439(zarz\\241dzi\\252)-439(stary)-438(i)-438(przysun)1(\\241\\252)-439(pr)1(z)-1(ed)-438(k)28(om)-1(i)1(n)-439(\\252a)28(wk)28(\\246)-1(,)-438(na)-438(kt\\363r)1(e)-1(j)-438(J\\363zia)]TJ 0 -13.549 Td[(wnet)-333(p)-28(osta)28(w)-1(i)1(\\252)-1(a)-333(b)1(utelk)28(\\246)-1(,)-333(wian)1(e)-1(k)-333(ki)1(e)-1(\\252b)1(a)-1(sy)-333(i)-333(c)27(h)1(le)-1(b)1(.)]TJ 27.879 -13.55 Td[({)-333(Napij)-333(si\\246,)-333(Kub)1(a,)-333(i)-334(r)1(z)-1(ekn)1(ij)-333(s)-1(w)28(o)-56(j)1(e)-334(s\\252o)27(w)28(o.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(gosp)-28(o)-27(darzu.)1(..)-333(Osta\\242)-1(,)-333(tob)28(y)1(m)-334(s)-1(i)1(\\246)-334(os)-1(t)1(a\\252)-1(,)-333(i)1(no...)1(ino.)1(..)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(t)1(\\241)-28(pi\\246)-333(c)-1(i)-333(co\\261)-334(nieco\\261)-1(!.)1(..)]TJ 0 -13.549 Td[({)-339(Pr)1(z)-1(yd)1(a\\242)-340(b)28(y)-339(si\\246)-340(p)1(rzyda\\252o,)-339(b)-27(o)-339(to)-339(i)-339(k)28(o\\273)-1(u)1(c)27(h)-339(zlatuj)1(e)-340(ze)-340(mnie.,)-339(i)-339(b)1(ucis)-1(k)56(a)-339(te\\273)-1(,)]TJ -27.879 -13.549 Td[(a)-396(i)-397(k)56(ap)-27(ot)-396(jaki)-396(ku)1(pi\\252b)29(ym)-1(.)1(..)-396(ju)1(\\273)-397(jak)-396(ten)-396(dziad)1(ak)-397(j)1(aki)-396(jes)-1(t)-396(cz)-1(\\252o)28(wie)-1(k)1(,)-396(\\273)-1(e)-397(n)1(a)28(w)27(et)-397(d)1(o)]TJ 0 -13.55 Td[(k)28(o\\261c)-1(io\\252a)-323(i\\261\\242)-1(,)-323(to)-323(in)1(o)-323(do)-323(kru)1(c)27(h)28(t)28(y)84(...)-323(b)-27(o)-323(jak\\273e)-324(mi)-323(pr)1(z)-1(ed)-323(o\\252tarz)-323(w)-324(tak)1(im)-324(ob)1(le)-1(cze)-1(n)1(iu..)1(.)]TJ 27.879 -13.549 Td[({)-274(A)-273(w)-274(ni)1(e)-1(d)1(z)-1(iel\\246)-274(ni)1(e)-274(bacz)-1(y\\252e\\261)-274(na)-274(t)1(o,)-274(in)1(o\\261)-274(s)-1(i\\246)-274(p)-27(c)27(h)1(a\\252)-274(tam,)-274(gd)1(z)-1(i)1(e)-275(n)1(a)-56(j)1(pierwsz)-1(e...)]TJ\nET\nendstream\nendobj\n210 0 obj <<\n/Type /Page\n/Contents 211 0 R\n/Resources 209 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n209 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n215 0 obj <<\n/Length 9398      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(62)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[({)-333(rze)-1(k\\252)-333(s)-1(u)1(ro)28(w)28(o)-334(Boryn)1(a.)]TJ 27.879 -13.549 Td[({)-264(Ju\\261c)-1(i)1(...)-264(Hale...)-264(Pr)1(a)27(wd)1(a...)-264({)-264(b\\241k)56(a\\252)-265(sro)-28(d)1(z)-1(e)-264(z)-1(a)28(ws)-1(t)28(yd)1(z)-1(on)29(y)-264(i)-265(ciem)-1(n)29(y)-265(r)1(umieniec)]TJ -27.879 -13.549 Td[(obl)1(a\\252)-334(m)28(u)-333(t)28(w)27(ar)1(z)-1(.)]TJ 27.879 -13.549 Td[({)-315(A)-315(to)-315(i)-315(dobr)1(o)-28(dziej)-315(nau)1(c)-1(za,)-315(\\273e)-1(b)28(y)-315(sz)-1(an)1(o)28(w)27(a\\242)-315(s)-1(tar)1(s)-1(zyc)27(h)1(.)-315(Napij)-314(no)-315(s)-1(i)1(\\246)-1(,)-315(Ku)1(ba,)]TJ -27.879 -13.549 Td[(na)-390(z)-1(go)-28(d)1(\\246)-391(i)-391(s\\252)-1(u)1(c)27(h)1(a)-56(j)1(,)-391(co)-28(\\242)-392(r)1(z)-1(ekn)1(\\246)-1(,)-390(a)-391(s)-1(am)-391(si\\246)-391(p)-28(omiar)1(kuj)1(e)-1(sz)-1(,)-390(\\273)-1(e)-391(co)-391(par)1(ob)-28(ek,)-391(to)-390(nie)]TJ 0 -13.55 Td[(gosp)-28(o)-28(d)1(arz...)-292(Ku)1(\\273)-1(d)1(e)-1(n)-292(ma)-292(s)-1(w)28(o)-56(j)1(e)-293(miejsc)-1(e)-293(i)-292(l)1(a)-293(k)56(a\\273dego)-293(co)-292(inn)1(e)-1(go)-292(P)28(an)-292(Jez)-1(u)1(s)-293(wyzna-)]TJ 0 -13.549 Td[(cz)-1(y\\252.)-251(Wyznac)-1(zy\\252)-252(ci)-252(P)28(an)-251(Je)-1(zus)-252(t)28(w)28(o)-56(je,)-252(to)-252(go)-251(s)-1(i\\246)-252(pi)1(ln)28(u)1(j)-252(i)-252(n)1(ie)-252(przes)-1(t\\246pu)1(j,)-252(n)1(a)-252(pi)1(e)-1(rwsz)-1(e)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(ce)-379(s)-1(i\\246)-379(n)1(ie)-379(p)-28(c)28(ha)-56(j)-378(i)-379(n)1(ie)-379(wyno\\261)-379(si\\246)-379(nad)-378(dru)1(gie)-379({)-379(b)-27(o)-379(z)-1(gr)1(z)-1(es)-1(zysz)-380(ci\\246\\273)-1(k)28(o.)-378(I)-379(s)-1(am)]TJ 0 -13.549 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-292(c)-1(i)-293(p)-27(o)28(w)-1(t)1(\\363rz)-1(y)-292(to)-293(s)-1(amo,)-293(\\273)-1(e)-293(tak)-293(b)28(y)1(\\242)-294(m)28(us)-1(i)1(,)-293(b)28(yc)28(h)-293(p)-27(orz\\241de)-1(k)-292(na)-293(\\261w)-1(i)1(e)-1(cie)-294(b)29(y\\252.)]TJ 0 -13.549 Td[(Mi)1(arku)1(jes)-1(z)-334(se)-1(,)-333(Ku)1(ba?)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)28(y)1(dlem)-334(p)1(rz)-1(ecie)-1(c)28(h)-333(i)-333(s)-1(w)28(o)-56(j)1(e)-334(p)-28(om)28(y\\261le)-1(n)1(ie)-334(mam.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(b)1(ac)-1(z\\273e)-1(,)-333(b)28(y\\261)-333(s)-1(i\\246)-333(nad)-333(d)1(rugi)1(e)-334(nie)-333(w)-1(y)1(nosi\\252.)]TJ 0 -13.549 Td[({)-333(I...)-333(in)1(om)-334(bl)1(i\\273)-1(ej)-333(o\\252tarza)-334(c)28(hcia\\252)-333(b)28(y\\242...)]TJ 0 -13.549 Td[({)-365(P)28(an)-364(Je)-1(zus)-365(z)-365(k)55(a\\273dego)-365(k)56(\\241ta)-365(s\\252)-1(y)1(s)-1(zy)83(,)-364(nie)-365(b)-27(\\363)-56(j)-365(si\\246.)-365(I)-365(p)-27(o)-365(c)-1(o)-365(si\\246)-365(p)-28(c)28(ha\\242)-365(m)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(na)-55(jp)1(ierws)-1(ze)-1(,)-333(ki)1(e)-1(j)-333(wsz)-1(ysc)-1(y)-333(wiedz\\241,)-333(kto\\261)-334(j)1(e)-1(st?)]TJ 27.879 -13.549 Td[({)-422(Ju\\261ci,)-422(ju)1(\\261)-1(ci...)-421(gos)-1(p)-27(o)-28(dar)1(z)-1(em)-423(b)29(y\\252b)28(ym,)-422(to)-422(i)-422(bal)1(dac)27(h)-421(nosi\\242)-423(b)28(y)1(m)-423(n)1(os)-1(i\\252,)-422(a)-422(i)]TJ -27.879 -13.55 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a)-386(p)-28(o)-28(d)-385(pac)28(h\\246)-386(w)-1(i)1(\\363)-28(d\\252,)-386(i)-385(w)-387(\\252a)28(wk)55(ac)28(h)-386(siada\\252,)-385(i)-386(z)-387(ksi\\241\\273ki)-386(g\\252o\\261no)-386(\\261piew)27(a\\252..)1(.)]TJ 0 -13.549 Td[(a)-361(\\273e)-1(m)-361(ino)-361(p)1(arob)-27(e)-1(k,)-360(c)27(ho)-27(c)-1(ia)-361(i)-360(s)-1(yn)-360(gos)-1(p)-27(o)-28(d)1(ars)-1(k)1(i,)-361(to)-361(mi)-361(w)-361(kru)1(c)27(hcie)-361(s)-1(ta\\242)-361(ab)-27(o)-361(prze)-1(d)]TJ 0 -13.549 Td[(dr)1(z)-1(wiami,)-333(j)1(ak)28(o)-334(te)-334(p)1(ies)-1(ki)1(...)-333({)-333(p)-28(o)28(wiedzia\\252)-334(sm)27(u)1(tno.)]TJ 27.879 -13.549 Td[({)-333(T)83(akie)-334(j)1(u\\273)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-334(urz\\241dzenie)-334(j)1(e)-1(st)-333(i)-333(nie)-333(t)27(w)28(o)-56(j)1(a)-333(g\\252)-1(o)28(w)28(a)-334(zmie)-1(n)1(i.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(n)1(ie)-334(mo)-56(j)1(a,)-334(p)-27(ew)-1(n)1(ie.)]TJ 0 -13.55 Td[({)-333(Napij)-333(si\\246)-334(j)1(e)-1(szc)-1(ze)-1(,)-333(Ku)1(ba,)-333(i)-333(rze)-1(k)1(nij)1(,)-333(c)-1(o)-333(c)-1(i)-333(mam)-334(zas)-1(\\252u)1(g)-334(d)1(o)-28(da\\242.)]TJ 0 -13.549 Td[(Ku)1(ba)-436(wyp)1(i\\252,)-436(al)1(e)-437(\\273e)-436(go)-436(ju)1(\\273)-436(niec)-1(o)-435(z)-1(amro)-28(cz)-1(y)1(\\252a)-436(gorza\\252)-1(k)56(a,)-435(to)-436(u)28(wid)1(z)-1(ia\\252o)-435(m)27(u)]TJ -27.879 -13.549 Td[(si\\246)-1(,)-375(\\273e)-376(w)-375(k)56(arcz)-1(mie)-375(s)-1(iedzi)-375(z)-376(M)1(ic)27(h)1(a\\252e)-1(m)-375(o)-28(d)-375(or)1(ganist)28(y)-375(ab)-28(o)-375(i)-375(z)-375(dr)1(ugim)-375(k)55(amrat)1(e)-1(m)-375(i)]TJ 0 -13.549 Td[(ra)-55(jcuj)1(\\241)-268(se)-269(sw)28(o)-1(b)-27(o)-28(d)1(nie,)-267(w)27(es)-1(o\\252o,)-267(jak)-267(r\\363)28(w)-1(n)29(y)-268(z)-268(r\\363)28(wn)28(ym.)-267(Ro\\261)-1(cie)-1(b)1(n\\241\\252)-268(\\271dziebk)28(o)-267(k)55(ap)-27(ot\\246,)]TJ 0 -13.549 Td[(wyci\\241)-28(gn\\241\\252)-333(nogi)1(,)-333(buc)28(hn)1(\\241\\252)-334(p)1(i\\246)-1(\\261c)-1(i)1(\\241)-334(w)-333(\\252a)27(wk)28(\\246)-334(i)-333(zakrzykn)1(\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(C)-1(ztery)-333(pap)1(ierki)-333(i)-333(ru)1(bla)-333(z)-1(ad)1(atku)-333(d)1(o\\252o\\273)-1(y)-333({)-333(to)-333(os)-1(tan)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-312(Wid)1(z)-1(i)-312(mi)-312(s)-1(i)1(\\246)-1(,)-312(\\273e)-1(\\261)-312(pij)1(an)28(y)-312(ab)-27(o)-313(ci)-312(s)-1(i)1(\\246)-313(w)-313(g\\252o)28(wie)-313(p)-27(op)1(s)-1(u)1(\\252)-1(o)-312({)-312(za)27(w)28(o\\252a\\252.)-312(B)-1(or)1(yna,)]TJ -27.879 -13.549 Td[(ale)-362(Kub)1(a)-362(s)-1(ze)-1(d)1(\\252)-362(ju\\273)-362(z)-1(a)-362(m)28(y\\261l\\241)-362(s)-1(w)28(o)-56(j)1(\\241)-362(i)-362(da)28(wn)28(ym)-362(m)-1(ar)1(z)-1(eniem,)-362(a)-362(z)-1(resz)-1(t\\241)-362(n)1(ie)-363(s\\252ys)-1(za\\252)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arskiego)-247(g\\252)-1(osu,)-246(w)-1(i)1(\\246)-1(c)-247(roz)-1(p)1(rosto)28(w)-1(y)1(w)27(a\\252)-247(s)-1(k)1(urczon\\241)-247(du)1(s)-1(z\\246)-1(,)-246(r\\363s)-1(\\252)-247(w)-247(am)27(b)1(it)-247(i)-247(tak)56(\\241)]TJ 0 -13.549 Td[(p)-27(e)-1(wno\\261\\242)-334(siebie,)-333(jak)28(ob)28(y)-333(sam)27(ym)-333(gos)-1(p)-27(o)-28(d)1(arz)-1(em)-334(si\\246)-334(p)-27(o)-28(cz)-1(u)1(\\252.)]TJ 27.879 -13.55 Td[({)-459(C)-1(ztery)-459(pap)1(ie)-1(r)1(ki)-459(i)-459(jes)-1(zc)-1(ze)-460(jeden)-459(z)-1(ad)1(atku)-459(d)1(o\\252o\\273)-1(y)84(,)-460(t)1(o)-460(u)-459(n)1(ie)-1(go)-459(ostan\\246,)-460(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(,)-315(to)-316(psiac)27(h)1(ma\\242)-317(n)1(a)-316(jar)1(m)-1(ar)1(k)-316(p)-27(\\363)-56(j)1(d\\246)-316(i)-316(s\\252u\\273b)-28(\\246)-316(se)-317(zna)-55(jd)1(\\246)-1(,)-315(c)27(ho)-27(\\242)-1(b)28(y)-315(i)-316(n)1(a)-316(fu)1(rmana)-316(d)1(o)]TJ 0 -13.549 Td[(cugo)28(wyc)27(h)-268(w)28(e)-269(dw)28(orze)-1(.)1(..)-268(Zna)-55(j\\241)-268(m)-1(i)1(\\246)-1(,)-268(i\\273e)-1(m)-268(rob)-27(otn)28(y)-268(i)-268(na)-268(ws)-1(zystkim)-268(w)-269(p)-27(olu)-268(cz)-1(y)-268(ki)1(e)-1(le)]TJ 0 -13.549 Td[(dom)28(u)-280(s)-1(i)1(\\246)-281(z)-1(n)1(a)-56(j)1(\\241c)-1(y)84(,)-281(\\273e)-281(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-280(gosp)-28(o)-27(darzo)28(w)-1(i)-280(b)28(y)1(d\\252o)-281(p)1(a\\261)-1(\\242)-281(u)-280(mn)1(ie)-281(-)-1(a)-280(uczy\\242)-281(s)-1(i)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[(A)-333(nie,)-333(to)-333(ptasz)-1(ki)-333(strze)-1(l)1(a\\252)-334(b)-27(\\246)-1(d)1(\\246)-334(i)-333(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(o)27(wi)-333(nosi\\252)-333(ab)-28(o)-333(i)-333(Jank)1(lo)28(w)-1(i)1(...)-333(a)-333(nie...)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(e)-1(..)1(.)-333(Kutern)1(oga)-334(j)1(e)-1(d)1(e)-1(n)1(,)-333(jak)-333(br)1(yk)56(a.)-333(Kub)1(a!)-333({)-334(kr)1(z)-1(yk)1(n\\241\\252)-333(os)-1(tr)1(o)-334(stary)84(.)]TJ 0 -13.55 Td[(Ku)1(ba)-336(zamilk\\252,)-335(w)-1(y)1(trze)-1(\\271w)-1(i)1(a\\252)-336(z)-336(rozm)-1(ar)1(z)-1(enia,)-335(ale)-336(har)1(do\\261c)-1(i)-335(nie)-336(straci\\252,)-336(b)-27(o)-336(j)1(\\241\\252)]TJ -27.879 -13.549 Td[(si\\246)-298(nieust\\246pliwym)-297(c)-1(zyni\\242,)-297(\\273)-1(e)-298(Boryn)1(a)-298(r)1(ad)-298(n)1(ierad)-297(dor)1(z)-1(uca\\252)-298(m)28(u)-297(p)-28(o)-297(p)-28(\\363\\252r)1(ubl)1(u,)-297(to)-298(p)-27(o)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(\\363)27(w)28(c)-1(e,)-339(a\\273)-339(i)-339(s)-1(t)1(an\\246\\252)-1(o,)-338(\\273)-1(e)-339(obiec)-1(a\\252)-339(m)28(u)-339(n)1(a)-339(przysz)-1(\\252y)-339(r)1(ok)-339(do\\252o\\273y\\242)-339(trzy)-339(rub)1(le)-339(i)-339(dwie)]TJ 0 -13.549 Td[(k)28(osz)-1(u)1(le)-334(mias)-1(t)1(o)-334(zadatku)1(.)]TJ 27.879 -13.549 Td[({)-407(Ho,)-406(ho,)-406(ptasz)-1(ek)-407(z)-407(cie)-1(b)1(ie)-407({)-407(w)28(o\\252)-1(a\\252)-406(s)-1(tar)1(y)-407(pr)1(z)-1(epi)1(ja)-56(j)1(\\241c)-407(do)-407(n)1(iego)-407(na)-407(zgo)-28(d)1(\\246)-1(,)]TJ -27.879 -13.55 Td[(c)27(h)1(o)-28(\\242)-386(z)-1(\\252y)-385(b)28(y\\252,)-386(\\273e)-387(t)28(y)1(la)-386(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)-385(wyw)27(ali)1(\\242)-387(m)28(usi,)-386(al)1(e)-387(w)28(ago)28(w)27(a\\242)-386(s)-1(i)1(\\246)-387(n)1(ie)-386(b)28(y\\252o)-386(co,)-386(b)-27(o)]TJ 0 -13.549 Td[(Ku)1(ba)-420(w)28(arta\\252)-420(i)-419(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-420(rob)-27(otn)28(y)-419(parob)1(,)-420(c)28(ho)-28(\\242b)28(y)-420(i)-419(z)-1(a)-420(d)1(w)27(\\363)-27(c)27(h,)-419(gos)-1(p)-27(o)-28(d)1(arskie)-1(go)-419(nie)]TJ\nET\nendstream\nendobj\n214 0 obj <<\n/Type /Page\n/Contents 215 0 R\n/Resources 213 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n213 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n218 0 obj <<\n/Length 9741      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(63)]TJ -363.686 -35.866 Td[(ru)1(s)-1(zy\\252)-284(i)-283(o)-284(in)28(w)28(e)-1(n)28(t)1(arz)-284(db)1(a)-1(\\252)-283(w)-1(i)1(\\246)-1(ce)-1(j)-283(ni\\271li)-283(o)-284(s)-1(i)1(e)-1(b)1(ie)-1(,)-283(c)27(h)1(o)-28(\\242)-285(i)-283(ku)1(la)28(w)-1(y)-283(b)28(y\\252,)-284(i)-283(m)-1(o)-27(c)-1(y)-283(w)-1(i)1(e)-1(lk)1(ie)-1(j)]TJ 0 -13.549 Td[(ni)1(e)-382(m)-1(i)1(a\\252)-1(,)-381(ale)-382(n)1(a)-382(gosp)-28(o)-27(darst)28(wie)-382(s)-1(i)1(\\246)-382(z)-1(n)1(a\\252)-382({)-382(mo\\273na)-382(si\\246)-382(ca\\252kiem)-382(s)-1(p)1(u\\261c)-1(i)1(\\242)-382(na)-382(n)1(iego,)]TJ 0 -13.549 Td[(\\273e)-334(ws)-1(zys)-1(t)1(k)28(o)-1(,)-333(j)1(ak)-333(przyn)1(ale)-1(\\273a\\252o,)-333(z)-1(r)1(obi)-333(i)-333(jes)-1(zc)-1(ze)-334(n)1(a)-56(j)1(e)-1(mnik)56(a)-333(pr)1(z)-1(yp)1(iln)29(uje.)]TJ 27.879 -13.549 Td[(P)28(or)1(adzili)-258(j)1(e)-1(sz)-1(cze)-259(o)-258(t)28(ym)-258(i)-257(o)-258(o)27(wym,)-258(i)-257(gdy)-257(s)-1(i\\246)-258(rozc)27(h)1(o)-28(dzili)1(,)-258(Ku)1(ba)-258(j)1(u\\273)-258(o)-28(de)-258(d)1(rz)-1(wi)]TJ -27.879 -13.549 Td[(ni)1(e)-1(\\261m)-1(i)1(a\\252o)-334(ca\\252kiem)-334(s)-1(i)1(\\246)-334(oz)-1(w)28(a\\252:)]TJ 27.879 -13.55 Td[({)-237(Z)-1(go)-27(da)-237(na)-237(trzy)-237(rub)1(le)-238(i)-237(dwie)-238(k)28(oszule,)-237(ino..)1(.)-238(i)1(no..)1(.)-238(n)1(ie)-238(p)1(rz)-1(eda)28(w)28(a)-56(j)1(c)-1(ie)-237(\\271)-1(rebi)1(c)-1(y)84(...)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-296(mnie)-297(si\\246)-297(u)1(l\\246)-1(g\\252a.)1(..)-297(k)28(o\\273uc)28(hem)-297(sw)27(oim)-297(p)1(rzy)28(o)-28(dziew)27(a\\252em)-1(,)-296(\\273e)-1(b)28(y)-296(n)1(ie)-297(pr)1(z)-1(em)-1(ar)1(z)-1(\\252a..)1(.)]TJ 0 -13.549 Td[(tob)28(y)1(m)-485(n)1(ie)-484(\\261c)-1(ierp)1(ia\\252,)-484(\\273e)-1(b)29(y)-484(j)1(\\241)-484(\\233yd)-483(jaki)-483(bi)1(ja\\252)-484(li)1(b)-28(o)-483(i)-484(\\252ac)27(h)1(m)27(yt)1(e)-1(k)-483(z)-484(m)-1(iasta..)1(.)-484(Nie)]TJ 0 -13.549 Td[(sprze)-1(d)1(a)28(w)27(a)-55(jcie)-1(.)1(..)-336(z)-1(\\252oto,)-336(n)1(ie)-337(\\271rebica...)-336(ki)1(e)-1(j)-336(ten)-336(d)1(z)-1(ieciak)-336(p)-28(os\\252usz)-1(n)1(a...)-336(k)28(o\\253)-336(tak)1(i,)-336(\\273)-1(e)-336(i)]TJ 0 -13.549 Td[(dr)1(ugi)-333(cz)-1(\\252o)28(wie)-1(k)-333({)-333(pr)1(os)-1(t)28(y)-333(pi)1(e)-1(s)-334(p)1(rzy)-333(niej.)-333(Nie)-333(s)-1(p)1(rz)-1(eda)28(w)28(a)-56(j)1(c)-1(ie...)]TJ 27.879 -13.549 Td[({)-333(Ani)-333(mi)-333(to)-334(w)-333(g\\252o)27(wie)-333(nie)-334(p)-27(osta\\252o.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(w)-334(k)56(ar)1(c)-1(zm)-1(ie)-333(p)-28(o)28(wiedali)-333(i.)1(..)-333(b)-28(o)-55(ja\\252em)-334(si\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Opi)1(e)-1(ku)1(n)28(y)84(,)-334(p)1(s)-1(i)1(e)-1(kr)1(w)-1(i)1(e)-1(,)-333(za)27(w\\273dy)-333(n)1(a)-56(jl)1(e)-1(p)1(ie)-1(j)-332(w)-1(i)1(e)-1(dz\\241!)]TJ 0 -13.549 Td[(Ku)1(ba)-395(b)28(y\\252b)28(y)-395(go)-395(za)-396(n)1(ogi)-395(u\\252ap)1(i\\252)-395(z)-396(rad)1(o\\261)-1(ci,)-395(in)1(o)-396(\\261mie)-1(\\242)-395(nie)-395(\\261)-1(mia\\252,)-395(to)-395(nad)1(z)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(cz)-1(ap)-27(\\246)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(ry)1(c)27(h\\252o,)-333(j)1(ak)28(o)-334(\\273e)-334(i)-333(cz)-1(as)-334(b)29(y\\252o)-334(spa\\242)-334(b)1(ac)-1(z\\241c)-334(n)1(a)-334(j)1(armark)-333(ju)1(trze)-1(j)1(s)-1(zy)83(.)]TJ 27.879 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(..)]TJ 0 -13.55 Td[(Jak)28(o\\273)-400(i)-400(n)1(a)-1(za)-56(j)1(utr)1(z)-1(,)-399(jes)-1(zc)-1(ze)-400(prze)-1(d)-399(\\261)-1(wit)1(aniem)-1(,)-399(\\273)-1(e)-400(ni)1(e)-1(ledwie)-400(p)-27(o)-400(dr)1(ugic)28(h)-400(ku)1(-)]TJ -27.879 -13.549 Td[(rac)28(h,)-333(a)-333(ju)1(\\273)-334(na)-333(ws)-1(zys)-1(t)1(kic)27(h)-333(d)1(rogac)28(h)-333(i)-333(\\261)-1(cie)-1(\\273k)56(ac)27(h)-333(d)1(o)-334(T)28(ymo)27(w)28(a)-333(ruszali)-333(s)-1(i\\246)-333(lud)1(z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Kto)-333(jeno)-333(\\273y\\252,)-333(to)-334(z)-333(c)-1(a\\252ej)-333(ok)28(olicy)-333(w)27(ali)1(\\252)-334(n)1(a)-334(j)1(armark.)]TJ 0 -13.549 Td[(Nad)-303(r)1(anem)-304(up)1(ad\\252)-303(mo)-28(c)-1(n)29(y)-303(des)-1(zc)-1(z,)-303(ale)-303(p)-28(o)-303(ws)-1(c)28(ho)-28(d)1(z)-1(i)1(e)-304(pr)1(z)-1(etar\\252o)-303(s)-1(i)1(\\246)-304(ni)1(e)-1(co,)-303(ino)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)-27(o)-467(b)29(y\\252o)-467(zas)-1(n)28(u)1(te)-467(bu)1(rymi)-466(c)27(hm)28(ur)1(z)-1(ysk)56(am)-1(i)1(,)-467(a)-466(nad)-466(ni)1(z)-1(in)1(n)28(ymi)-466(z)-1(iemiami)-467(wsia\\252y)]TJ 0 -13.55 Td[(mg\\252y)-356(s)-1(zare,)-356(ki)1(e)-1(b)28(y)-355(z)-1(grzebne)-356(p\\252\\363tn)1(a,)-356(d)1(o)-356(c)-1(n)1(a)-356(pr)1(z)-1(em)-1(i\\246k\\252e,)-356(i)-356(p)-27(o)-356(dr)1(ogac)27(h)-355(s)-1(zkli\\252y)-355(s)-1(i\\246)]TJ 0 -13.549 Td[(k)56(a\\252u\\273e)-1(,)-333(a)-333(gdzie)-1(n)1(iegdzie)-334(p)-27(o)-334(d)1(o\\252k)56(ac)27(h)-333(b\\252oto)-333(c)27(h)1(lup)1(a\\252o)-334(p)-27(o)-28(d)-333(n)1(ogami.)]TJ 27.879 -13.549 Td[(I)-333(z)-334(Lipi)1(e)-1(c)-334(wyc)28(ho)-28(d)1(z)-1(on)1(o)-334(o)-27(d)-333(w)27(cz)-1(esnego)-334(r)1(ana.)]TJ 0 -13.549 Td[(Na)-346(top)-27(olo)28(w)28(e)-1(j)-345(dr)1(o)-28(dze)-346(z)-1(a)-346(k)28(o\\261c)-1(i)1(o\\252e)-1(m)-346(i)-346(h)1(e)-1(n)1(,)-346(a\\273)-346(d)1(o)-346(las\\363)27(w,)-345(w)-1(i)1(dn)28(y)-345(b)28(y\\252)-346(\\252a\\253)1(c)-1(u)1(c)27(h)]TJ -27.879 -13.549 Td[(w)28(oz)-1(\\363)28(w,)-269(to)-27(c)-1(z\\241c)-1(y)1(c)27(h)-268(s)-1(i)1(\\246)-269(w)27(oln)1(o,)-268(krok)-268(z)-1(a)-268(krok)1(ie)-1(m,)-268(tak)56(a)-269(ci\\273)-1(b)1(a)-269(b)29(y\\252a,)-269(a)-268(b)-28(ok)56(ami,)-268(p)-28(o)-268(obu)]TJ 0 -13.55 Td[(stronac)28(h,)-333(in)1(o)-334(si\\246)-334(mieni\\252o)-333(o)-28(d)-333(cz)-1(erw)28(on)28(yc)28(h)-333(w)27(e\\252niak)28(\\363)28(w)-333(i)-334(b)1(ia\\252yc)28(h)-333(k)55(ap)-27(ot)-333(c)27(h)1(\\252o)-1(p)1(s)-1(k)1(ic)27(h)1(.)]TJ 27.879 -13.549 Td[(T)28(yla)-333(naro)-27(du)-333(sz)-1(\\252o,)-333(jak)1(b)28(y)-333(wie)-1(\\261)-333(c)-1(a\\252a)-333(w)-1(y)1(c)27(ho)-27(dzi\\252a.)]TJ 0 -13.549 Td[(Szli)-436(gosp)-27(o)-28(dar)1(z)-1(e)-436(c)-1(o)-436(b)1(ie)-1(d)1(ni)1(e)-1(j)1(s)-1(i,)-435(s)-1(z\\252y)-436(k)28(obiet)28(y)83(,)-435(s)-1(z\\252y)-436(par)1(obki)-436(i)-435(dzie)-1(w)28(c)-1(zyn)28(y)84(,)-436(i)]TJ -27.879 -13.549 Td[(k)28(omorni)1(c)-1(y)-371(te\\273)-372(s)-1(zli,)-371(a)-371(i)-372(b)1(iedota)-371(s)-1(ama)-372(-n)1(a)-56(jemnicy)-371(tak)28(o\\273)-372(c)-1(i)1(\\241)-28(gn\\246li,)-371(b)-27(o)-372(j)1(armark)-371(to)]TJ 0 -13.549 Td[(b)28(y\\252)-333(ten,)-333(na)-333(kt\\363r)1(ym)-334(go)-28(d)1(z)-1(on)1(o)-333(s)-1(i\\246)-333(do)-333(rob)-27(\\363t)-334(i)-333(zm)-1(i)1(e)-1(n)1(iano)-333(s\\252)-1(u)1(\\273)-1(b)29(y)83(.)]TJ 27.879 -13.55 Td[(Kto)-333(co)-334(ku)1(pi)1(\\242)-1(,)-333(kto)-333(s)-1(p)1(rze)-1(d)1(a\\242)-1(,)-333(a)-333(jensi)-333(b)28(yle)-333(jarmark)1(u)-333(u\\273y\\242)-1(.)]TJ 0 -13.549 Td[(Kt\\363r)1(e)-1(n)-251(w)-1(i)1(\\363)-28(d\\252)-252(n)1(a)-252(p)-28(ostron)1(ku)-252(k)1(ro)28(w)-1(i)1(n\\246)-252(alb)-27(o)-252(i)-252(c)-1(i)1(o\\252)-1(ak)56(a,)-252(k)1(to)-252(z)-1(a\\261)-252(gna\\252)-252(p)1(rz)-1(ed)-252(sob\\241)]TJ -27.879 -13.549 Td[(mac)-1(ior)1(\\246)-279(z)-278(pr)1(os)-1(i)1(\\246)-1(tami,)-278(co)-278(in)1(o)-278(p)-28(ok)1(w)-1(i)1(kiw)28(a\\252y)-278(i)-278(rw)28(a\\252y)-278(si\\246)-278(tak,)-278(\\273e)-279(t)1(rz)-1(a)-277(je)-278(b)28(y\\252o)-278(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(ogani)1(a\\242)-362(i)-361(str\\363\\273o)28(w)27(a\\242,)-361(b)28(yc)28(h)-361(p)-27(o)-28(d)-361(w)28(ozy)-361(nie)-361(wpad)1(\\252)-1(y)1(;)-361(jensz)-1(y)-360(c)-1(z\\252apa\\252)-361(s)-1(i)1(\\246)-362(n)1(a)-361(s)-1(zk)55(ap)1(ie;)]TJ 0 -13.549 Td[(dr)1(ugie)-453(ogan)1(ia\\252y)-453(wystrzy\\273one)-453(bar)1(an)28(y)84(,)-453(gd)1(z)-1(ieniegdzie)-453(za\\261)-453(bieli\\252o)-453(si\\246)-453(stadk)28(o)-452(g)-1(\\246si)]TJ 0 -13.549 Td[(z)-437(p)-28(o)-28(d)1(wi\\241z)-1(an)29(ym)-1(i)-436(s)-1(kr)1(z)-1(y)1(d\\252am)-1(i)1(,)-437(to)-437(grze)-1(b)1(ieniaste)-438(k)28(ogu)1(t)28(y)-437(wyzie)-1(r)1(a\\252)-1(y)-436(s)-1(p)-27(o)-28(d)-436(z)-1(ap)1(as)-1(ek)]TJ 0 -13.55 Td[(k)28(obi)1(e)-1(cyc)27(h)1(...)-338(A)-339(i)-339(w)28(oz)-1(y)-338(niez)-1(gor)1(z)-1(ej)-338(jec)27(ha\\252y)-338(w)-1(y)1(\\252)-1(ad)1(o)28(w)27(an)1(e)-1(,)-338(raz)-339(w)-339(raz)-339(z)-340(j)1(akiego\\261)-339(p)-28(\\363\\252-)]TJ 0 -13.549 Td[(k)28(osz)-1(k)56(a)-347(sp)-28(o)-28(d)-346(s\\252)-1(om)28(y)-347(wyzie)-1(r)1(a\\252)-347(ryj)-346(k)56(armnik)56(a)-347(i)-346(kwic)-1(za\\252,)-347(a\\273)-347(g\\246)-1(si)-347(g\\246ga\\252y)-347(ze)-1(strac)27(h)1(ane)]TJ 0 -13.549 Td[(i)-320(psy)83(,)-320(co)-321(sz)-1(\\252y)-320(zar\\363)28(w)-1(n)1(o)-321(z)-320(lud)1(\\271)-1(mi,)-320(dosz)-1(cz)-1(ekiw)28(a\\242)-321(p)-27(o)-28(cz)-1(yn)1(a\\252y)-321(p)1(rzy)-320(w)27(ozac)27(h)-320(I)-321(szli)-320(tak)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-287(dr)1(og\\241,)-288(\\273e)-288(c)27(h)1(o)-28(\\242)-288(s)-1(zerok)56(a)-288(b)28(y)1(\\252)-1(a,)-287(a)-287(p)-28(omie\\261)-1(ci\\242)-288(si\\246)-288(tru)1(dn)1(o)-288(ws)-1(zystkim)-288(b)29(y\\252o,)-288(\\273e)-288(jak)1(i)]TJ 0 -13.549 Td[(taki)-333(sc)27(h)1(o)-28(dzi\\252)-334(n)1(a)-333(p)-28(ole)-333(w)-334(b)1(ruzdy)84(.)]TJ 27.879 -13.55 Td[(O)-298(d)1(u\\273ym)-299(j)1(u\\273)-298(dni)1(u,)-298(ki)1(e)-1(j)-298(si\\246)-298(tak)-298(pr)1(z)-1(etar\\252o)-298(na)-298(n)1(ie)-1(b)1(ie,)-298(\\273)-1(e)-298(ino,)-298(i)1(no)-298(s)-1(\\252o\\253)1(c)-1(a)-298(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(e\\242,)-300(wysz)-1(ed\\252)-300(i)-299(B)-1(or)1(yna)-299(z)-300(c)27(ha\\252u)1(p)28(y;)-299(prz\\363)-28(d)1(z)-1(i)-299(ju)1(\\273)-1(,)-299(b)-28(o)-299(o)-300(\\261)-1(witan)1(iu)1(,)-300(Han)1(k)55(a)-299(z)-301(J)1(\\363z)-1(k)56(\\241)]TJ\nET\nendstream\nendobj\n217 0 obj <<\n/Type /Page\n/Contents 218 0 R\n/Resources 216 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n216 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n221 0 obj <<\n/Length 8236      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(64)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(p)-27(ogna\\252y)-460(m)-1(acior\\246)-461(i)-460(p)-28(o)-27(dpasion)1(e)-1(go)-461(wiepr)1(z)-1(k)56(a,)-460(a)-461(An)28(tek)-461(p)-27(o)28(wi\\363z)-1(\\252)-461(d)1(z)-1(i)1(e)-1(si\\246\\242)-462(w)28(ork)28(\\363)28(w)]TJ 0 -13.549 Td[(psze)-1(n)1(ic)-1(y)-432(i)-433(p)-27(\\363\\252)-433(k)28(orcz)-1(y)1(k)55(a)-432(c)-1(ze)-1(r)1(w)27(on)1(e)-1(j)-432(k)28(oni)1(c)-1(zyn)28(y)84(.)-433(W)-432(dom)28(u)-433(osta)28(w)27(a\\252)-433(t)28(yl)1(k)28(o)-433(Ku)1(ba)-433(z)]TJ 0 -13.549 Td[(Wit)1(kiem)-334(i)-333(Jagust)28(ynk)56(a,)-333(pr)1(z)-1(y)1(w)27(o\\252ana,)-333(\\273e)-1(b)29(y)-333(je\\261)-1(\\242)-334(u)29(w)27(arzy\\252a)-333(i)-333(kr\\363)28(w)-334(d)1(o)-56(j)1(rza\\252)-1(a.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-333(b)-27(e)-1(cz)-1(a\\252)-333(w)-334(g\\252os)-334(p)-27(o)-28(d)-333(ob)-27(or\\241,)-333(b)-27(o)-333(c)27(hcia\\252o)-333(m)27(u)-333(si\\246)-334(n)1(a)-334(j)1(armark.)]TJ 0 -13.549 Td[({)-401(Cze)-1(go)-400(s)-1(i\\246)-401(to)-400(g\\252upi)1(e)-1(m)28(u)-401(zac)27(h)1(c)-1(iew)28(a!)-401({)-401(mru)1(kn)1(\\241\\252)-401(B)-1(or)1(yna,)-400(pr)1(z)-1(e\\273)-1(egna\\252)-400(s)-1(i\\246)-401(i)]TJ -27.879 -13.55 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-432(p)1(ies)-1(zo,)-431(b)-28(o)-431(licz)-1(y)1(\\252)-1(,)-431(\\273e)-432(si\\246)-432(p)-27(o)-432(d)1(ro)-28(d)1(z)-1(e)-431(przysi\\246dz)-1(i)1(e)-432(do)-431(k)28(ogo;)-431(jak)28(o\\273)-431(i)-432(zaraz)]TJ 0 -13.549 Td[(tak)-356(s)-1(i\\246)-357(sta\\252o,)-357(b)-27(o)-357(tu)1(\\273)-358(za)-357(k)56(arcz)-1(m\\241)-357(d)1(op)-28(\\246dzi\\252)-357(go)-357(or)1(ganista,)-356(jad\\241cy)-357(b)1(ryczk)55(\\241)-356(w)-357(par\\246)]TJ 0 -13.549 Td[(t\\246gic)27(h)-333(k)28(on)1(i.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to,)-333(na)-333(piec)27(h)29(t)27(y)84(,)-333(Macie)-1(j)1(u?)]TJ 0 -13.549 Td[({)-333(La)-334(zdr)1(o)27(wia.)1(..)-333(Niec)27(h)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(c)28(h)28(w)28(alon)28(y)84(.)]TJ 0 -13.549 Td[({)-333(Na)-334(wieki.)-333(S)1(iada)-55(jcie)-334(z)-334(n)1(am)-1(i)1(,)-333(z)-1(mie\\261)-1(cim)27(y)-333(si\\246!)-334({)-333(p)1(rop)-27(ono)28(w)27(a\\252a)-333(organ)1(i\\261)-1(cin)1(a.)]TJ 0 -13.55 Td[({)-297(B\\363g)-297(z)-1(ap)1(\\252a\\242)-1(.)-296(Dos)-1(ze)-1(d)1(\\252b)28(ym,)-297(ale)-297(j)1(ak)-297(p)-27(o)27(wiad)1(a)-56(j)1(\\241,)-297(z)-1(a)28(w\\273dy)-297(milej)-296(duszy)83(,)-297(k)1(ie)-1(j)-296(j\\241)]TJ -27.879 -13.549 Td[(w)28(\\363z)-334(ru)1(s)-1(zy)-333({)-334(o)-28(d)1(rze)-1(k)1(\\252)-334(sado)28(wi\\241c)-334(si\\246)-334(na)-333(p)1(rz)-1(edn)1(im)-334(siedze)-1(n)1(iu,)-333(p)1(le)-1(cami)-333(do)-333(k)28(oni.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ali)-333(sobie)-334(p)1(rzyja\\271ni)1(e)-334(r\\246c)-1(e)-334(z)-333(organi)1(s)-1(tami)-333(i)-333(k)28(onie)-333(rusz)-1(y)1(\\252y)83(.)]TJ 0 -13.549 Td[({)-481(A)-481(pan)-481(Ja\\261)-481(s)-1(k)56(\\241d)-481(si\\246)-482(wz)-1(i)1(\\241\\252)-1(,)-481(to)-481(j)1(u\\273)-482(n)1(ie)-482(w)-481(klasac)27(h)1(?)-482({)-481(z)-1(ap)28(y)1(ta\\252)-482(c)28(h\\252op)-27(c)-1(a,)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(\\241ce)-1(go)-333(z)-334(p)1(arobk)1(ie)-1(m)-333(i)-333(p)-28(o)28(w)28(o\\273)-1(\\241ce)-1(go.)]TJ 27.879 -13.55 Td[({)-333(Przyj)1(e)-1(c)28(ha\\252e)-1(m)-333(t)28(ylk)28(o)-333(na)-333(jar)1(m)-1(ar)1(k!)-333({)-334(za)28(w)27(o\\252a\\252)-333(w)27(es)-1(o\\252o)-333(organ)1(i\\261)-1(ciu)1(c)27(h.)]TJ 0 -13.549 Td[({)-298(Z)-1(a\\273yj)1(c)-1(ie,)-298(fran)1(c)-1(u)1(s)-1(k)56(a..)1(.)-299({)-298(pr)1(op)-28(on)1(o)28(w)27(a\\252)-299(or)1(ganista)-298(pstrzyk)56(a)-56(j\\241c)-298(w)-299(tabak)1(ie)-1(r)1(k)28(\\246)-1(.)]TJ 0 -13.549 Td[(Za\\273)-1(y)1(li)-333(i)-333(p)-28(ok)1(ic)27(h)1(ali)-333(s)-1(olenn)1(ie.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(tam)-334(u)-333(w)28(as)-1(?)-333(Sp)1(rze)-1(da)-55(jec)-1(i)1(e)-334(c)-1(o)-333(d)1(z)-1(isia)-55(j?)]TJ 0 -13.549 Td[({)-333(B)-1(oga\\242)-333(ta)-334(n)1(ie,)-334(p)-27(o)28(wie)-1(\\271li)-333(do)-333(d)1(nia)-333(psz)-1(eni)1(c)-1(\\246,)-333(a)-334(k)28(ob)1(iet)27(y)-333(p)-27(ogna\\252y)-333(\\261w)-1(i)1(ni\\246.)]TJ 0 -13.55 Td[({)-367(A\\273)-368(t)28(yle!)-367({)-367(w)-1(y)1(krzykn)1(\\246)-1(\\252a)-367(organi)1(\\261)-1(cina.)-367({)-367(Jasiu,)-367(w)28(e)-1(\\271)-367(s)-1(zalik,)-367(b)-27(o)-367(c)27(h)1(\\252)-1(o)-27(dn)1(o)-1(!)-367({)]TJ -27.879 -13.549 Td[(za)27(w)28(o\\252a\\252a)-334(d)1(o)-334(syn)1(a.)]TJ 27.879 -13.549 Td[({)-327(C)-1(i)1(e)-1(p)1(\\252)-1(o)-327(mi,)-327(z)-1(u)1(p)-28(e\\252nie)-328(ciep\\252o)-327({)-328(zap)-28(ewnia\\252,)-327(lec)-1(z)-328(mimo)-328(t)1(o)-328(okr)1(\\246)-1(ci\\252a)-328(m)28(u)-327(c)-1(ze)-1(r)1(-)]TJ -27.879 -13.549 Td[(w)28(on)28(ym)-334(sz)-1(al)1(e)-1(m)-333(s)-1(zyj\\246.)]TJ 27.879 -13.549 Td[({)-333(Ab)-28(o)-333(to)-333(wyc)27(h)1(o)-28(dy)-333(ma\\252e)-1(?)-333(Ju\\273)-334(n)1(ie)-334(wiad)1(a,)-333(s)-1(k)56(\\241c)-1(i)-333(b)1(ra\\242)-334(n)1(a)-334(wsz)-1(ystk)28(o..)1(.)]TJ 0 -13.55 Td[({)-333(Nie)-334(n)1(arz)-1(ek)56(a)-56(j)1(c)-1(ie,)-333(Macie)-1(j)1(u,)-333(c)28(h)28(w)27(al)1(i\\242)-334(Boga,)-333(m)-1(acie)-334(d)1(os)-1(y\\242...)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(tej)-333(zie)-1(mi)-333(ni)1(e)-334(ugr)1(yz)-1(\\246,)-333(a)-334(got)1(o)27(w)28(e)-1(go)-333(grosza)-334(w)-333(z)-1(ap)1(as)-1(ie)-333(nie)-334(ma.)]TJ 0 -13.549 Td[({)-361(B)-1(o)-361(rozp)-27(o\\273)-1(ycza)-1(cie...)-361(ma\\252o)-362(t)1(o)-362(mac)-1(i)1(e)-362(p)-27(o)-362(l)1(udziac)28(h?...)-361(Wi)1(e)-1(d)1(z)-1(\\241)-361(s)-1(\\241siedzi,)-361(jak)]TJ -27.879 -13.549 Td[(kto)-333(sie)-1(d)1(z)-1(i)1(!...)]TJ 27.879 -13.549 Td[(Ale)-364(Bory)1(na,)-363(nierad)-363(t)28(ym)-363(w)-1(yp)-27(omink)28(om)-363(przy)-363(parob)1(ku)1(,)-364(p)-27(o)-28(c)28(h)28(yli\\252)-363(s)-1(i)1(\\246)-364(s)-1(zybk)28(o)]TJ -27.879 -13.55 Td[(i)-333(c)-1(i)1(c)27(ho)-333(zap)28(yta\\252:)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(an)-333(Ja\\261)-334(d)1(\\252ugo)-333(b)-28(\\246dzie)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(w)-334(kl)1(as)-1(ac)27(h)1(?)]TJ 0 -13.549 Td[({)-333(Do)-334(\\261wi\\241t)-333(jeno.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)-333(d)1(o)-334(d)1(om)-334(cz)-1(y)-333(te\\273)-334(do)-333(ur)1(z)-1(\\246du)-333(p)-27(\\363)-55(jdzie?)]TJ 0 -13.549 Td[({)-351(Moi\\261c)-1(i)1(e)-1(wy)84(,)-351(a)-352(c\\363\\273)-352(b)28(y)-351(w)-351(dom)28(u)-351(rob)1(i\\252)-351(na)-351(t)28(yc)27(h)-350(pi\\246tnastu)-351(morgac)28(h.)-351(A)-351(ma\\252)-1(o)]TJ -27.879 -13.549 Td[(to)-333(jes)-1(zc)-1(ze)-334(d)1(robi)1(az)-1(gu)1(!...)-333(A)-333(c)-1(zas)-1(y)-333(ci\\246\\273)-1(ki)1(e)-1(,)-333(j)1(ak)-334(z)-333(k)55(amienia.)1(..)-333({)-334(w)28(es)-1(tc)28(hn\\246\\252a.)]TJ 27.879 -13.55 Td[({)-333(B)-1(o)-333(i)-333(pr)1(a)27(wd)1(a,)-333(c)27(hr)1(z)-1(t\\363)28(w)-334(t)1(o)-334(ta)-333(jesz)-1(cz)-1(e)-334(j)1(e)-1(st)-333(dosy\\242,)-334(al)1(e)-334(c)-1(o)-333(z)-334(tego)-333(z)-1(a)-333(pr)1(o\\014t!)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(c)27(h)1(\\363)28(w)-1(k)28(\\363)28(w)-333(nie)-333(braku)1(je)-333(prze)-1(ciec)27(h)-333({)-333(dor)1(z)-1(u)1(c)-1(i\\252)-333(ir)1(onicz)-1(n)1(ie)-334(Boryn)1(a.)]TJ 0 -13.549 Td[({)-287(I..)1(.)-287(co)-287(za)-287(p)-27(o)-28(c)27(h)1(o)28(w)-1(k)1(i,)-287(sama)-287(bi)1(e)-1(d)1(ota)-287(mrze)-1(,)-286(a)-287(ledwie)-287(p)1(ar\\246)-287(razy)-287(w)-287(r)1(ok)-287(zdar)1(z)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-334(jak)1(i\\261)-334(gosp)-28(o)-27(darski)-333(p)-27(ogrz)-1(eb,)-333(z)-333(kt\\363rego)-334(co\\261)-334(k)56(apn)1(ie.)]TJ 27.879 -13.549 Td[({)-333(A)-334(i)-333(w)28(ot)28(yw)-334(coraz)-334(mni)1(e)-1(j)1(,)-333(a)-334(i)-333(tar)1(guj\\241)-333(si\\246)-334(j)1(ak)-334(t)1(e)-334(\\233ydy!)-333({)-333(dor)1(z)-1(u)1(c)-1(i)1(\\252)-1(a.)]TJ 0 -13.55 Td[({)-333(Z)-334(b)1(ie)-1(d)1(y)-333(to)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(id)1(z)-1(ie)-333(i)-334(ze)-334(z\\252yc)27(h)-333(cz)-1(as\\363)28(w)-334(.{)-333(u)1(s)-1(pr)1(a)28(w)-1(i)1(e)-1(d)1(liwia\\252)-333(B)-1(or)1(yna.)]TJ 0 -13.549 Td[({)-334(Ale)-335(i)-334(z)-335(te)-1(go,)-334(\\273e)-335(lud)1(z)-1(i)1(e)-335(o)-335(zba)28(wienie)-335(sw)27(o)-55(je)-335(an)1(i)-334(t)28(yc)27(h)-334(w)-335(czy\\261)-1(\\242c)-1(u)-334(osta)-56(j)1(\\241c)-1(y)1(c)27(h)]TJ\nET\nendstream\nendobj\n220 0 obj <<\n/Type /Page\n/Contents 221 0 R\n/Resources 219 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n219 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n224 0 obj <<\n/Length 8839      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(65)]TJ -363.686 -35.866 Td[(ni)1(e)-334(z)-1(ab)1(iega)-56(j\\241.)-333(P)1(rob)-27(os)-1(zc)-1(z)-333(nieraz)-334(o)-333(t)28(ym)-333(m)-1(\\363)28(wi\\252)-334(d)1(o)-333(m)-1(o)-55(jego.)]TJ 27.879 -13.549 Td[({)-428(I)-428(dw)28(or\\363)28(w)-429(coraz)-428(m)-1(n)1(ie)-1(j)1(.)-428(Da)28(wniej,)-428(k)1(ie)-1(d)1(y)-428(s)-1(i)1(\\246)-429(je\\271dz)-1(i)1(\\252o)-429(p)-27(o)-428(s)-1(n)1(opk)56(ac)27(h)-427(c)-1(zy)-428(z)]TJ -27.879 -13.549 Td[(op\\252atk)56(ami,)-403(c)-1(zy)-404(p)-27(o)-404(k)28(ol\\246dzie,)-404(cz)-1(y)-403(te)-1(\\273)-404(p)-27(o)-404(s)-1(p)1(isie)-404({)-404(to)-404(j)1(ak)-404(w)-404(d)1(ym)-404(do)-404(d)1(w)27(or)1(u)-404({)-403(nie)]TJ 0 -13.549 Td[(\\273a\\252)-1(o)28(w)28(ali)-314(i)-314(zb)-27(o\\273)-1(a,)-314(i)-314(p)1(ieni\\246dzy)83(,)-313(i)-314(legumin)28(y)84(.)-314(A)-314(teraz)-1(,)-313(B)-1(o\\273e)-315(zmi\\252uj)-314(si\\246,)-314(k)56(a\\273)-1(d)1(y)-314(gos)-1(p)-27(o-)]TJ 0 -13.549 Td[(dar)1(z)-366(s)-1(i\\246)-366(k)1(urczy)-366(i)-365(jak)-365(c)-1(i)-365(da)-365(s)-1(n)1(op)-28(czyn\\246)-366(\\273yta,)-365(to)-366(p)-27(e)-1(wn)1(ie)-366(z)-1(j)1(e)-1(d)1(z)-1(on)1(\\241)-366(p)1(rz)-1(ez)-366(m)27(y)1(s)-1(zy)83(,)-365(a)]TJ 0 -13.55 Td[(jak)-373(t\\246)-374(\\242wiartcz)-1(y)1(n\\246)-374(o)28(ws)-1(a)-373(dostanies)-1(z,)-373(to)-374(p)-27(e)-1(wn)1(ie)-374(pl)1(e)-1(w)-374(w)-373(nim)-374(wi\\246c)-1(ej)-373(ni)1(\\271)-1(li)-373(ziarn)1(a.)]TJ 0 -13.549 Td[(Niec)27(h)-272(\\273)-1(on)1(a)-273(p)-28(o)28(wie,)-273(jak)1(ie)-274(mi)-273(to)-273(j)1(a)-56(j)1(k)56(a)-273(da)28(w)27(al)1(i)-273(lato\\261)-273(z)-1(a)-273(spi)1(s)-274(wielk)56(ano)-28(cn)28(y)-273({)-273(wi\\246ce)-1(j)-272(ni\\273)]TJ 0 -13.549 Td[(p)-27(o\\252o)27(w)28(a)-342(b)28(y)1(\\252a)-342(zbuk)28(\\363)28(w.)-341(\\233)-1(eb)28(y)-341(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-341(nie)-342(mia\\252)-341(te)-1(j)-341(tr)1(o)-28(c)27(h)28(y)-341(gru)1(n)28(tu)1(,)-342(tob)28(y)-341(j)1(ak)-342(d)1(z)-1(iad)]TJ 0 -13.549 Td[(\\273e)-1(b)1(ra\\242)-334(m)28(usia\\252)-334({)-333(z)-1(ak)28(o\\253)1(c)-1(zy\\252)-333(p)-28(o)-27(dsu)28(w)27(a)-55(j\\241c)-333(B)-1(ory)1(nie)-333(tabaki)1(e)-1(rk)28(\\246.)]TJ 27.879 -13.549 Td[({)-360(Ju)1(\\261)-1(ci,)-360(j)1(u\\261c)-1(i)1(...)-360({)-360(p)-27(otaki)1(w)27(a\\252)-360(Boryn)1(a,)-360(ale)-360(n)1(ie)-361(j)1(e)-1(go)-359(tumani\\242,)-360(wiedzia\\252)-360(ci)-360(on)]TJ -27.879 -13.549 Td[(dob)1(rze)-1(,)-304(\\273e)-305(organ)1(ista)-305(p)1(ieni\\241d)1(z)-1(e)-305(ma)-304(i)-304(na)-304(pr)1(o)-28(c)-1(en)28(ta)-304(alb)-27(o)-305(i)-304(n)1(a)-305(o)-27(drob)-27(ek)-304(k)28(om)-1(or)1(nik)28(om)]TJ 0 -13.55 Td[(rozp)-27(o\\273)-1(ycz)-1(a,)-333(to)-333(in)1(o)-334(u)1(\\261)-1(miec)27(h)1(a\\252)-334(si\\246)-334(n)1(a)-334(te)-333(w)-1(yr)1(z)-1(ek)56(ania)-333(i)-333(z)-1(n)1(o)28(w)-1(u)-332(s)-1(p)28(y)1(ta\\252)-334(o)-333(Jas)-1(i)1(a...)]TJ 27.879 -13.549 Td[({)-333(I)-334(c\\363\\273)-1(,)-333(d)1(o)-334(u)1(rz\\246)-1(d)1(u)-333(p)-28(\\363)-55(jd)1(z)-1(ie?...)]TJ 0 -13.549 Td[({)-319(Co?)-320(M)1(\\363)-56(j)-319(Ja\\261)-319(do)-319(ur)1(z)-1(\\246du)1(,)-319(na)-319(pi)1(s)-1(ar)1(k)55(a?)-319(Nie)-319(p)-28(o)-319(tom)-319(s)-1(ob)1(ie)-320(o)-28(d)-318(g\\246)-1(b)28(y)-319(o)-27(dejmo-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(a,)-333(\\273e)-1(b)29(y)-333(s)-1(k)28(o\\253czy\\252)-334(sz)-1(k)28(o\\252y)84(,)-333(nie.)-333(Do)-333(s)-1(em)-1(i)1(nari)1(um)-334(p)-27(\\363)-56(j)1(dzie)-334(n)1(a)-334(k)1(s)-1(i\\246dza...)]TJ 27.879 -13.549 Td[({)-333(Na)-334(k)1(s)-1(i\\246dza!)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(m)27(u)-333(to)-333(\\271le)-334(b)-27(\\246)-1(d)1(z)-1(ie?)-334(A)-333(b)-27(o)-334(to)-333(kt\\363r)1(e)-1(n)-333(k)1(s)-1(i\\241d)1(z)-334(ma)-334(\\271le?)-1(.)1(..)]TJ 0 -13.549 Td[({)-332(P)29(e)-1(wni)1(e)-1(,)-331(p)-28(ewnie...)-331(a)-332(i)-331(hon)1(or)-332(j)1(e)-1(st,)-332(i)-331(to,)-331(jak)-331(p)-28(o)28(wiada)-55(j\\241,)-331(\\273)-1(e)-332(kt)1(o)-332(ma)-332(ksi\\246)-1(d)1(z)-1(a)]TJ -27.879 -13.549 Td[(w)-325(ro)-28(d)1(z)-1(i)1(e)-1(,)-325(t)1(e)-1(m)28(u)-325(b)1(ie)-1(d)1(a)-325(nie)-325(d)1(ob)-28(o)-28(d)1(z)-1(i)1(e)-1(..)1(.)-325(p)-27(o)27(wiedzia\\252)-325(w)28(olno)-325(i)-324(z)-326(sz)-1(acun)1(kiem)-325(p)-28(ogl)1(\\241da\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-377(rami\\246)-376(na)-376(c)27(h)1(\\252)-1(op)1(ak)56(a,)-376(p)-28(ogwizdu)1(j\\241ce)-1(go)-376(k)28(oniom,)-376(\\273e)-377(to)-376(przystan\\246\\252y)-376(niec)-1(o)-376(d)1(la)]TJ 0 -13.549 Td[(p)-27(otrze)-1(b)28(y)-333(sw)27(o)-55(jej..)1(.)]TJ 27.879 -13.55 Td[({)-334(M\\363)28(wili,)-333(\\273)-1(e)-334(i)-334(m)-1(\\252yn)1(arz\\363)27(w)-334(S)1(tac)27(ho)-334(k)1(s)-1(i\\246dze)-1(m)-334(mia\\252)-334(b)28(y\\242)-335(a)-334(teraz)-334(jes)-1(t)-334(p)-27(ono)-334(w)28(e)]TJ -27.879 -13.549 Td[(wielgic)27(h)-333(szk)27(o\\252ac)28(h)-333(i)-333(na)-333(do)-28(c)28(h)28(tora)-333(p)1(rakt)28(yku)1(je...)]TJ 27.879 -13.549 Td[({)-332(Ale,)-331(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-332(b)28(y)-332(b)28(y)1(\\242)-332(takiem)27(u)-331(\\252a)-56(j)1(duso)28(w)-1(i)1(,)-332(p)1(rze)-1(cie)-1(\\273)-332(mo)-56(j)1(a)-332(Magd)1(a)-332(jest)-332(ju)1(\\273)]TJ -27.879 -13.549 Td[(w)-334(sz\\363s)-1(t)28(ym)-333(m)-1(ies)-1(i)1(\\241c)-1(u)1(,)-333(i)-334(t)1(o)-334(o)-28(d)-332(niego...)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(ali,)-333(\\273e)-334(to)-334(o)-27(d)-333(m)-1(\\252y)1(narcz)-1(y)1(k)55(a.)]TJ 0 -13.55 Td[({)-408(Al)1(e)-1(,)-407(pra)28(wda)-407(b)28(y\\252a,)-407(m)-1(\\252yn)1(arzo)27(w)28(a)-408(tak)-407(gada,)-407(\\273)-1(eb)28(y)-407(s)-1(w)28(o)-56(j)1(e)-1(go)-407(z)-1(as\\252oni\\242.)-408(Roz-)]TJ -27.879 -13.549 Td[(pu)1(s)-1(t)1(nik)-333(to,)-333(\\273e)-334(niec)27(h)-333(r)1(\\246)-1(k)56(a)-333(b)-28(osk)56(a)-334(b)1(ron)1(i,)-333(pra)28(wie)-334(m)28(u)-333(i\\261\\242)-334(na)-333(d)1(oktora.)]TJ 27.879 -13.549 Td[({)-357(Ju)1(\\261)-1(ci,)-356(\\273)-1(e)-357(ksi\\246)-1(d)1(z)-1(em)-357(b)28(y\\242)-357(lepi)1(e)-1(j)1(,)-357(b)-27(o)-357(to)-357(i)-356(P)28(an)28(u)-356(Je)-1(zuso)28(wi)-357(c)27(h)29(w)27(a\\252a,)-357(i)-356(lu)1(dziom)]TJ -27.879 -13.549 Td[(na)-274(p)-28(o)-27(c)-1(iec)27(h)1(\\246)-276({)-274(p)-28(og\\252ask)56(a\\252)-275(j\\241)-275(c)28(h)28(ytr)1(z)-1(e)-275(Boryn)1(a,)-275(b)-27(o)-275(co)-275(s)-1(i)1(\\246)-275(tam)-275(m)-1(ia\\252)-274(s)-1(p)1(ie)-1(r)1(a\\242)-276(z)-275(k)28(ob)1(ie)-1(t)1(\\241,)]TJ 0 -13.549 Td[(i)-370(c)-1(a\\252ki)1(e)-1(m)-371(u)28(w)28(a\\273nie)-371(s\\252uc)27(h)1(a\\252)-371(j)1(e)-1(j)-370(wyw)28(o)-28(d\\363)28(w,)-370(a)-371(organ)1(ista)-371(r)1(az)-371(p)-28(o)-370(raz)-371(u)1(c)27(h)28(yla\\252)-370(c)-1(zapk)1(i)]TJ 0 -13.55 Td[(i)-327(g\\252)-1(o\\261n)28(ym:)-327(\\377)-56(Na)-328(wieki!)1(\")-328(o)-28(d)1(p)-28(o)28(wiada\\252)-327(na)-328(p)-27(ozdro)28(wienia)-327(w)-1(y)1(m)-1(i)1(jan)28(yc)28(h)-327(lud)1(z)-1(i.)-327(Jec)27(hal)1(i)]TJ 0 -13.549 Td[(tru)1(c)27(h)28(t)1(e)-1(m)-349(i)-348(Jas)-1(i)1(o)-349(c)27(h)28(w)28(ac)27(k)28(o)-348(w)-1(y)1(m)-1(i)1(ja\\252)-349(w)28(oz)-1(y)84(,)-349(t)1(o)-349(lu)1(dzi,)-349(to)-348(in)28(w)28(e)-1(n)29(tarz)-349(pr)1(o)27(w)28(adzon)28(y)84(,)-349(a\\273)]TJ 0 -13.549 Td[(dop)1(ad\\252)-333(lasu,)-333(gdzie)-334(j)1(u\\273)-334(l)1(u\\271niej)-333(b)28(y\\252o)-333(i)-333(dr)1(oga)-334(sz)-1(ersz)-1(a.)]TJ 27.879 -13.549 Td[(Zaraz)-441(na)-440(s)-1(kr)1(a)-56(j)1(u)-441(d)1(op)-27(\\246)-1(dzili)-440(Domini)1(k)28(o)27(w)28(\\241,)-441(j)1(e)-1(c)28(ha\\252a)-441(z)-441(Jagn)1(\\241)-441(i)-441(S)1(z)-1(y)1(m)-1(k)1(ie)-1(m,)-441(a)]TJ -27.879 -13.549 Td[(kr)1(o)27(w)28(a)-241(u)29(w)-1(i)1(\\241z)-1(an)1(a)-241(za)-241(r)1(ogi)-241(sz\\252)-1(a)-240(za)-241(w)28(oz)-1(em)-1(,)-240(z)-241(k)1(t\\363rego)-241(wygl\\241d)1(a\\252y)-241(b)1(ia\\252e)-241(sz)-1(yj)1(e)-241(g\\241sior\\363)28(w,)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-334(sycz)-1(\\241cyc)27(h)1(,)-333(jak)28(o)-333(te)-334(\\273m)-1(i)1(je.)]TJ 27.879 -13.55 Td[(P)28(o)-28(c)28(h)28(w)28(alili)-333(Boga,)-333(a)-334(Boryn)1(a)-333(a\\273)-334(s)-1(i)1(\\246)-334(wyc)27(h)28(y)1(li\\252)-333(przy)-333(m)-1(i)1(jani)1(u)-333(i)-333(z)-1(a)28(w)28(o\\252)-1(a\\252:)]TJ 0 -13.549 Td[({)-333(Sp)-27(\\363\\271)-1(n)1(ita)-333(s)-1(i)1(\\246)-1(!)]TJ 0 -13.549 Td[({)-333(Zd\\241\\273ym)-334(n)1(a)-334(cz)-1(as!)-333({)-334(o)-27(dkr)1(z)-1(yk)1(n\\246\\252)-1(a)-333(Jagn)1(a)-334(ze)-334(\\261m)-1(iec)27(h)1(e)-1(m.)]TJ 0 -13.549 Td[(Pr)1(z)-1(ejec)27(h)1(ali,)-481(ale)-482(organ)1(i\\261c)-1(iu)1(c)27(h)-481(p)1(ar\\246)-482(razy)-481(obraca\\252)-482(si\\246)-482(za)-482(n)1(i\\241,)-481(a\\273)-482(w)-482(k)28(o\\253cu)]TJ -27.879 -13.549 Td[(sp)28(yta\\252:)]TJ 27.879 -13.55 Td[({)-333(T)83(o)-334(J)1(agusia)-334(D)1(om)-1(in)1(ik)28(o)28(w)27(a?)]TJ 0 -13.549 Td[({)-333(Ona)-333(ci)-334(sama,)-334(on)1(a)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(Boryn)1(a)-334(p)1(atrz\\241c)-334(z)-334(o)-28(d)1(daleni)1(a)-334(n)1(a)-334(n)1(i\\241.)]TJ\nET\nendstream\nendobj\n223 0 obj <<\n/Type /Page\n/Contents 224 0 R\n/Resources 222 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n222 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n227 0 obj <<\n/Length 9667      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(66)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(Nie)-334(p)-27(oz)-1(n)1(a\\252e)-1(m,)-333(b)-28(o)-333(d)1(obrze)-334(ju)1(\\273)-334(ze)-334(dw)28(a)-333(lata)-333(jej)-333(nie)-333(w)-1(i)1(dzia\\252e)-1(m.)]TJ 0 -13.549 Td[({)-360(M\\252\\363)-27(dk)56(a)-360(to)-360(j)1(e)-1(st)-360(jes)-1(zcz)-1(e,)-360(a)-360(wtedy)-360(b)29(yd\\252o)-360(p)1(as)-1(a\\252a.)-360(Rozbu)1(c)27(h)1(a\\252)-1(a)-359(s)-1(i\\246)-360(in)1(o,)-360(kiej)]TJ -27.879 -13.549 Td[(ja\\252o)28(wica)-334(n)1(a)-334(k)28(on)1(icz)-1(yn)1(ie)-334({)-333(i)-333(a\\273)-334(si\\246)-334(wyc)27(h)29(yli\\252,)-333(\\273e)-1(b)28(y)-333(sp)-28(o)-55(jr)1(z)-1(e\\242)-334(na)-333(ni)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(ar)1(dzo)-334(\\252ad)1(na)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252)-333(c)27(h)1(\\252opak.)]TJ 0 -13.549 Td[({)-333(Jak)-333(w)-1(szys)-1(tk)1(ie)-334(d)1(z)-1(iewki)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(organ)1(i\\261c)-1(in)1(a)-333(p)-28(ogard)1(liwie.)]TJ 0 -13.55 Td[({)-398(Ju\\261c)-1(i)1(,)-398(\\273)-1(e)-399(g\\252ad)1(k)55(a.)-398(Ud)1(a\\252a)-399(si\\246)-399(d)1(z)-1(i)1(e)-1(u)1(c)27(ha,)-398(tote\\273)-399(n)1(ie)-399(ma)-398(t)27(y)1(go)-28(dn)1(ia,)-398(\\273)-1(eb)28(y)-398(kto)]TJ -27.879 -13.549 Td[(do)-333(n)1(ie)-1(j)-333(z)-333(w)27(\\363)-28(d)1(k)56(\\241)-334(n)1(ie)-334(p)-27(os)-1(y)1(\\252)-1(a\\252.)]TJ 27.879 -13.549 Td[({)-426(Pr)1(z)-1(ebiern)1(a!)-426(Star)1(a)-426(m)27(y\\261li,)-425(\\273)-1(e)-426(c)-1(o)-426(na)-55(jmni)1(e)-1(j)-425(to)-426(ju\\273)-426(jak)1(i)-426(rz\\241dca)-426(z)-1(j)1(e)-1(d)1(z)-1(ie)-426(p)-28(o)]TJ -27.879 -13.549 Td[(ni)1(\\241,)-333(i)-334(p)1(arob)1(k)28(\\363)27(w)-333(o)-28(dgan)1(ia..)1(.)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(z)-1(j)1(adli)1(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(m\\363g\\252b)28(y)-333(j\\241)-333(wz)-1(i\\241\\242)-333(i)-334(tak)1(i,)-333(c)-1(o)-333(sie)-1(d)1(z)-1(i)-333(c)28(ho)-28(\\242b)28(y)-333(i)-333(na)-333(w\\252)-1(\\363)-27(c)-1(e...)-333(w)28(arta)-333(te)-1(go.)1(..)]TJ 0 -13.549 Td[({)-309(T)83(o)-309(t)28(ylk)28(o)-309(w)27(am)-309(p)-27(os)-1(\\252a\\242)-310(sw)28(at\\363)27(w,)-309(M)1(ac)-1(ieju)1(,)-309(kiedy)-309(j)1(\\241)-310(t)1(ak)-309(c)27(h)28(w)28(alicie!)-309({)-310(zac)-1(z\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334(\\261m)-1(ia\\242;)-333(a)-333(B)-1(or)1(yna)-333(ju)1(\\273)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(oz)-1(w)28(a\\252)-334(n)1(i)-333(s)-1(\\252o)28(w)28(e)-1(m.)]TJ 27.879 -13.549 Td[({)-258(Hale,)-258(taki)-257(tam)-259(\\252ac)28(hm)27(y)1(te)-1(k)-257(m)-1(iesc)27(ki,)-257(w)-1(i)1(e)-1(lga)-258(mi)-258(osoba,)-258(co)-258(in)1(o)-258(gos)-1(p)-27(o)-28(dar)1(s)-1(k)1(im)]TJ -27.879 -13.549 Td[(ku)1(rom)-374(p)-28(o)-28(d)-373(ogon)-374(u)28(w)28(a\\273)-1(a,)-374(cz)-1(y)-373(la)-374(niej)-374(j)1(a)-56(jk)28(\\363)28(w)-374(ni)1(e)-375(ni)1(e)-1(s\\241,)-374(ab)-28(o)-374(i)-374(l)1(ud)1(z)-1(iom)-374(w)-375(gar)1(\\261)-1(cie,)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-342(si\\246)-342(ta)-341(przekpiw)28(a\\252a)-342(z)-342(r)1(o)-28(do)28(wyc)27(h)-341(gosp)-28(o)-27(darzy!)-341(W)83(ar)1(a)-342(ci)-342(o)-27(d)-342(Jagu)1(s)-1(i)1(!{)-342(m)28(y\\261la\\252,)]TJ 0 -13.549 Td[(ze)-1(\\271lon)28(y)-411(siln)1(ie)-1(,)-410(i)-411(in)1(o)-411(p)-28(ogl\\241d)1(a\\252)-411(przed)-411(si\\246)-1(,)-410(na)-411(c)-1(zerwie)-1(n)1(iej\\241cy)-411(z)-1(ap)1(as)-1(k)56(ami)-411(w)28(\\363z)-412(Do-)]TJ 0 -13.55 Td[(mini)1(k)28(o)27(w)28(e)-1(j)1(,)-397(kt\\363r)1(e)-1(n)-397(osta)28(w)27(a\\252)-397(coraz)-398(d)1(alej,)-397(b)-27(o)-397(Jas)-1(i)1(o)-398(t)1(\\246)-1(go)-397(pr)1(a\\273)-1(y\\252)-397(k)28(on)1(ie)-1(,)-397(\\273e)-398(r)1(w)27(a\\252y)-397(z)]TJ 0 -13.549 Td[(k)28(op)28(yt)1(a,)-334(a\\273)-333(s)-1(i\\246)-333(b\\252oto)-333(ot)28(w)-1(i)1(e)-1(ra\\252o.)]TJ 27.879 -13.549 Td[(Pr)1(\\363\\273)-1(n)1(o)-430(organ)1(i\\261)-1(cin)1(a)-430(p)-28(ogad)1(yw)28(a\\252)-1(a)-429(o)-430(t)28(ym)-430(i)-430(o)28(w)-1(y)1(m)-1(,)-429(kiw)28(a\\252)-430(g\\252)-1(o)28(w)28(\\241,)-430(cos)-1(ik)-429(tam)]TJ -27.879 -13.549 Td[(mam)-1(r)1(ota\\252)-250(p)-27(o)-28(d)-250(n)1(os)-1(em)-250(i)-250(t)1(ak)-250(si\\246)-250(z)-1(a)28(wz)-1(i)1(\\241)-1(\\252,)-249(\\273)-1(e)-250(ozw)27(a\\242)-250(si\\246)-250(nie)-250(c)28(hcia\\252)-250(ni)-249(s)-1(\\252o)28(w)28(e)-1(m)-250(j)1(e)-1(d)1(n)28(ym.)]TJ 27.879 -13.549 Td[(I)-294(sk)28(oro)-294(t)28(y)1(lk)28(o)-294(wjec)27(h)1(ali)-294(n)1(a)-294(wyb)-27(oist)27(y)-293(br)1(uk)-293(m)-1(i)1(as)-1(tec)-1(zk)56(a,)-294(ze)-1(siad)1(\\252)-294(z)-294(bry)1(c)-1(zki)-293(i)-294(j)1(\\241\\252)]TJ -27.879 -13.55 Td[(dzi\\246k)28(o)28(w)27(a\\242)-334(za)-333(p)-28(o)-28(d)1(wie)-1(zienie.)]TJ 27.879 -13.549 Td[({)-254(P)28(o)-28(d)-253(wiec)-1(z\\363r)-254(wracam)27(y)84(,)-254(c)27(h)1(c)-1(ec)-1(i)1(e)-1(,)-254(to)-253(s)-1(i\\246)-254(pr)1(z)-1(ysi\\241d)1(\\271)-1(cie)-254(do)-254(n)1(a)-1(s)-254({)-254(p)1(rop)-27(ono)28(w)27(a\\252a.)]TJ 0 -13.549 Td[({)-337(B\\363g)-337(zap\\252a\\242,)-337(mam)-337(przec)-1(iec)27(h)-336(sw)27(o)-55(je)-337(k)28(onie.)-337(P)29(o)27(wiedzia\\252y)-336(b)28(y)83(,)-336(\\273)-1(e)-337(si\\246)-337(do)-336(k)55(al)1(i-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(an)1(ia)-335(go)-28(dz\\246)-1(,)-335(n)1(a)-336(p)-27(omo)-28(c)-1(n)1(ik)56(a)-335(organi)1(\\261)-1(cie)-1(.)1(...)-335(a)-335(ja)-335(ta)-336(n)29(ut)28(y)-335(ni)1(jakiej)-335(n)1(ie)-336(wyci\\241)-28(gn\\246)-335(i)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(c\\363)27(w)-333(gas)-1(i)1(\\242)-334(ni)1(e)-1(nau)1(c)-1(zn)28(y)84(...)]TJ 27.879 -13.55 Td[(P)28(o)-55(jec)27(hal)1(i)-429(w)-430(b)-27(o)-28(cz)-1(n)1(\\241)-430(u)1(licz)-1(k)28(\\246,)-429(a)-429(on)-429(si\\246)-430(z)-430(w)28(oln)1(a)-430(p)1(rze)-1(d)1(z)-1(i)1(e)-1(ra\\252)-429(p)1(rz)-1(ez)-430(g\\252\\363)28(wn\\241,)]TJ -27.879 -13.549 Td[(do)-394(r)1(ynk)1(u,)-394(b)-27(o)-394(jar)1(m)-1(ar)1(k)-394(b)28(y\\252)-394(sieln)28(y)-394(i)-394(c)28(ho)-28(\\242)-394(to)-394(jesz)-1(cz)-1(e)-394(do\\261\\242)-395(r)1(ano,)-394(a)-394(n)1(aro)-28(d)1(u)-394(j)1(u\\273)-394(s)-1(i\\246)]TJ 0 -13.549 Td[(g\\246s)-1(t)28(wi\\252o)-488(ni)1(e)-1(zgorze)-1(j)1(;)-488(ws)-1(zystkie)-488(ul)1(ic)-1(e,)-488(p)1(lac)-1(e,)-488(zau\\252ki)-487(i)-488(p)-27(o)-28(d)1(w)27(\\363rza)-488(za)27(w)28(alon)1(e)-489(b)29(y\\252y)]TJ 0 -13.549 Td[(lu)1(d\\271m)-1(i)1(,)-293(w)28(oz)-1(ami)-292(i)-292(to)27(w)28(arem)-293(r\\363\\273n)28(ym)-292({)-293(n)1(ic)-1(,)-292(j)1(e)-1(n)1(o)-293(ta)-292(wie)-1(l)1(k)55(a)-292(w)27(o)-27(da,)-292(do)-292(kt\\363r)1(e)-1(j)-292(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-274(ze)-274(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-273(s)-1(t)1(ron)-273(dop)1(\\252)-1(y)1(w)27(a\\252y)-273(no)28(w)27(e)-274(r)1(z)-1(eki)-273(lud)1(z)-1(ki)1(e)-274(i)-274(cie)-1(\\261ni)1(\\252y)-274(si\\246)-1(,)-273(k)28(oleba\\252y)84(,)]TJ 0 -13.55 Td[(to)-28(cz)-1(y)1(\\252y)-294(p)-28(o)-294(cias)-1(n)29(yc)27(h)-293(uliczk)55(ac)28(h,)-294(a\\273e)-295(d)1(om)27(y)-294(si\\246)-295(tr)1(z)-1(\\241\\261\\242)-295(zda\\252y)-294(i)-294(r)1(oz)-1(lew)27(a\\252y)-294(p)-27(o)-294(wielkim)]TJ 0 -13.549 Td[(pl)1(ac)-1(u)-378(kl)1(as)-1(ztorn)28(y)1(m)-1(.)-378(Niew)-1(i)1(e)-1(lk)1(ie)-379(jes)-1(zcz)-1(e)-379(p)-27(o)-379(d)1(ro)-28(d)1(z)-1(e)-379(b)1(\\252oto,)-379(t)1(uta)-55(j)-379(b)1(ite)-379(i)-378(rozrab)1(iane)]TJ 0 -13.549 Td[(t)28(ysi\\241c)-1(ami)-333(n\\363g,)-333(b)28(y)1(\\252o)-334(j)1(u\\273)-334(p)-27(o)-333(k)28(os)-1(tk)1(i)-334(i)-333(tr)1(ysk)55(a\\252o)-333(s)-1(p)-27(o)-28(d)1(-)-1(k)28(\\363\\252)-333(na)-333(ws)-1(zystkie)-334(stron)29(y)83(.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-234(ju)1(\\273)-235(b)28(y\\252)-234(znacz)-1(n)28(y)84(,)-234(a)-234(w)-1(zmaga\\252)-235(si\\246)-235(z)-235(k)56(a\\273d\\241)-234(c)27(h)28(wil)1(\\241;)-234(g\\252)-1(u)1(c)27(h)1(a)-235(wrza)28(w)27(a)-234(h)28(u)1(c)-1(za-)]TJ -27.879 -13.549 Td[(\\252a)-349(nib)28(y)-349(b)-27(\\363r,)-349(ki)1(e)-1(j)-349(morze)-350(si\\246)-350(k)28(oleba\\252a,)-349(bi)1(\\252a)-350(o)-349(\\261)-1(cian)28(y)-349(d)1(om)-1(\\363)28(w)-349(i)-350(p)1(rze)-1(w)28(ala\\252a)-349(z)-350(k)28(o\\253ca)]TJ 0 -13.549 Td[(w)-429(k)28(oni)1(e)-1(c,)-429(\\273e)-430(t)28(yl)1(k)28(o)-429(niekiedy)-428(s)-1(\\252yc)28(ha\\242)-429(b)28(y\\252o)-429(r)1(yki)-429(k)1(r\\363)28(w,)-429(to)-429(gr)1(anie)-429(k)56(ataryn)1(ki)-429(p)1(rzy)]TJ 0 -13.55 Td[(k)56(aru)1(z)-1(eli,)-473(to)-473(p)1(\\252)-1(aczliw)28(e)-474(lame)-1(n)29(tac)-1(j)1(e)-474(d)1(z)-1(iad)1(\\363)28(w)-474(alb)-27(o)-473(os)-1(t)1(re)-1(,)-472(prze)-1(n)1(ik)56(a)-56(j)1(\\241c)-1(e)-473(pisz)-1(cza\\252)-1(k)1(i)]TJ 0 -13.549 Td[(k)28(osz)-1(yk)56(arzy)84(.)]TJ 27.879 -13.549 Td[(Jarmark)-299(b)28(y)1(\\252)-300(wielki,)-299(c)-1(o)-299(si\\246)-300(z)-1(o)28(wie,)-300(n)1(aro)-28(d)1(u)-299(s)-1(k)1(upi)1(\\252)-1(o)-299(si\\246)-300(t)28(yla,)-299(\\273)-1(e)-300(i)-299(p)1(rze)-1(j)1(\\261)-1(\\242)-300(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(ni)1(e)-1(\\252at)28(w)28(o,)-336(a)-336(j)1(u\\273)-336(w)-336(ryn)1(ku)-336(p)-27(o)-28(d)-335(klasztorem)-337(to)-335(B)-1(or)1(yna)-336(p)1(rze)-1(z)-336(si\\252\\246)-337(p)-27(c)27(h)1(a\\242)-336(s)-1(i\\246)-336(m)28(usia\\252,)]TJ 0 -13.549 Td[(taki)-333(g\\241sz)-1(cz)-334(si\\246)-334(cz)-1(yn)1(i\\252)-333(m)-1(i\\246dzy)-333(kramami.)]TJ 27.879 -13.55 Td[(By\\252o)-327(te)-1(\\273)-327(tego,)-327(\\273)-1(e)-327(ani)-327(p)1(rze)-1(li)1(c)-1(zy\\242)-1(,)-326(ni)-327(ob)-55(j)1(\\241\\242)-328({)-327(gdzieb)28(y)-327(za\\261)-328(tam)-327(kto)-327(p)-27(orad)1(z)-1(i\\252.)]TJ 0 -13.549 Td[(A)-420(n)1(a)-56(j)1(pierw)28(e)-1(j)-419(te)-420(p)1(\\252\\363)-28(c)-1(i)1(e)-1(n)1(ne,)-420(wysokie)-420(bu)1(dy)84(,)-419(c)-1(o)-420(sta\\252y)-419(w)-1(zd\\252u)1(\\273)-420(klasz)-1(tor)1(u)-420(w)28(e)]TJ\nET\nendstream\nendobj\n226 0 obj <<\n/Type /Page\n/Contents 227 0 R\n/Resources 225 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 212 0 R\n>> endobj\n225 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n230 0 obj <<\n/Length 8857      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(67)]TJ -363.686 -35.866 Td[(dw)28(a)-322(rz\\246)-1(d)1(y)83(,)-322(zap)-27(c)27(han)1(e)-323(ca\\252kiem)-323(to)28(w)28(are)-1(m)-322(k)28(obi)1(e)-1(cym)-323({)-322(a)-322(p)1(\\252\\363tnami,)-322(a)-322(c)27(h)28(u)1(s)-1(t)1(k)55(ami,)-322(co)]TJ 0 -13.549 Td[(wisia\\252y)-433(na)-433(\\273e)-1(r)1(dk)56(ac)27(h)-433(i)-432(jak)28(o)-433(te)-433(m)-1(aki)-432(b)28(y\\252y)-433(cz)-1(erw)28(one,)-433(\\273)-1(e)-433(a\\273)-434(si\\246)-433(w)-434(o)-28(czac)27(h)-433(\\242mi\\252o,)]TJ 0 -13.549 Td[(a)-462(d)1(ru)1(gie)-462(z)-1(asi\\246)-462(c)-1(a\\252ki)1(e)-1(m)-462(\\273\\363\\252te)-462(s)-1(i\\246)-462(wid)1(z)-1(ia\\252y)84(,)-462(a)-461(insze)-463(b)1(ur)1(ac)-1(zk)28(o)27(w)28(e...)-461(i)-462(kto)-461(je)-462(tam)]TJ 0 -13.549 Td[(ws)-1(zystkie)-370(spami\\246ta!)-370(A)-369(dzieuc)27(h)-369(i)-369(k)28(obiet)-369(p)-28(e\\252no)-369(tu)-370(p)1(rze)-1(d)-369(n)1(imi,)-370(\\273e)-370(i)-369(kija)-369(ni)1(e)-371(b)29(y\\252o)]TJ 0 -13.549 Td[(gdzie)-355(w)-1(r)1(az)-1(i)1(\\242)-356({)-355(kt\\363r)1(a)-355(targo)28(w)27(a\\252a)-355(i)-355(wyb)1(iera\\252a)-355(s)-1(ob)1(ie)-1(,)-354(a)-355(dru)1(gie)-356(ab)29(y)-355(in)1(o)-356(p)-27(op)1(atrze)-1(\\242)-355(i)]TJ 0 -13.55 Td[(o)-28(cz)-1(y)-333(se)-334(ucies)-1(zy\\242)-334(\\261licz)-1(n)1(o\\261)-1(ciami.)]TJ 27.879 -13.549 Td[(A)-411(p)-28(ot)1(e)-1(m)-411(z)-1(n)1(\\363)27(w)-411(s)-1(z\\252y)-411(kram)28(y)83(,)-411(co)-412(si\\246)-411(a\\273)-412(l\\261ni\\252y)-411(o)-28(d)-411(p)1(ac)-1(i)1(ork)28(\\363)28(w,)-411(luste)-1(r)1(e)-1(k,)-411(szy-)]TJ -27.879 -13.549 Td[(c)27(h)1(\\363)28(w)-1(,)-329(a)-330(wst\\241\\273)-1(ek,)-329(a)-330(k)1(ryzk)28(\\363)27(w)-329(on)28(yc)27(h)-329(n)1(a)-330(sz)-1(yj)1(\\246)-1(,)-329(a)-329(kwiatusz)-1(k)28(\\363)28(w)-330(zielon)28(yc)28(h,)-329(z)-1(\\252ot)28(yc)28(h)-329(i)]TJ 0 -13.549 Td[(r\\363\\273n)28(yc)28(h..)1(.)-334(a)-333(cz)-1(epk)28(\\363)28(w)-334(i)-333(B\\363g)-333(ta)-334(wie)-333(c)-1(ze)-1(go)-333(jes)-1(zc)-1(ze.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie)-255(zno)28(wu)-255(\\261)-1(wi\\246te)-255(obrazy)-255(p)1(rz)-1(eda)28(w)28(ali)-255(w)-255(p)-27(oz)-1(\\252o)-28(cist)27(y)1(c)27(h)-255(r)1(am)-1(ac)28(h)-255(i)-255(za)-255(s)-1(zk\\252em)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-356(c)27(ho)-27(\\242)-356(s)-1(ta\\252y)-355(p)-27(o)-28(d)-355(\\261)-1(cian)1(am)-1(i)-355(alb)-27(o)-356(i)-355(zgo\\252)-1(a)-355(na)-355(z)-1(i)1(e)-1(mi)-355(le)-1(\\273a\\252y)83(,)-355(a)-355(s)-1(ze)-1(d)1(\\252)-356(o)-28(d)-355(n)1(ic)27(h)-355(b)1(las)-1(k)1(,)]TJ 0 -13.55 Td[(\\273e)-334(jaki)-333(tak)1(i)-334(d)1(o)-333(c)-1(zapki)-333(si\\246ga\\252)-334(i)-333(znak)-333(krzy\\273a)-334(cz)-1(y)1(ni\\252)-333(\\261)-1(wi\\246tego.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-360(k)1(upi)1(\\252)-360(j)1(e)-1(d)1(w)27(ab)1(n\\241)-359(c)27(h)28(u)1(s)-1(t)1(k)28(\\246)-360(na)-359(g\\252o)28(w)27(\\246)-359(dla)-359(J\\363zki,)-359(kt\\363r)1(\\241)-360(b)29(y\\252)-360(j)1(e)-1(szc)-1(ze)-360(na)]TJ -27.879 -13.549 Td[(zw)-1(i)1(e)-1(sn\\246)-268(obi)1(e)-1(ca\\252)-268(d)1(z)-1(iew)27(czynie)-268(za)-268(p)1(as)-1(i)1(onk)28(\\246,)-268(ws)-1(ad)1(z)-1(i)1(\\252)-268(za)-268(pazuc)28(h\\246)-268(i)-267(j\\241\\252)-268(si\\246)-268(p)1(rze)-1(p)28(y)1(c)27(ha\\242)]TJ 0 -13.549 Td[(do)-333(tar)1(go)27(wisk)56(a)-334(\\261wi\\253skiego,)-333(c)-1(o)-333(b)28(y\\252o)-333(z)-1(a)-333(kl)1(a)-1(sztorem)-1(.)]TJ 27.879 -13.549 Td[(Ale)-334(sze)-1(d)1(\\252)-334(w)28(olno,)-333(\\273e)-334(to)-333(c)-1(i\\273ba)-333(b)28(y)1(\\252)-1(a)-333(sroga)-333(i)-333(\\273)-1(e)-334(si\\246)-334(p)-27(opatr)1(z)-1(e\\242)-334(b)28(y)1(\\252)-1(o)-333(n)1(a)-334(co.)]TJ 0 -13.55 Td[(Gd)1(z)-1(ie)-421(cz)-1(ap)1(ni)1(c)-1(y)-420(p)-28(o)-28(d)-420(d)1(om)-1(ami)-420(p)-28(or)1(oz)-1(wies)-1(zali)-421(sze)-1(rok)1(ie)-421(drab)1(in)28(y)84(,)-421(za)28(wie)-1(sz)-1(on)1(e)]TJ -27.879 -13.549 Td[(o)-28(d)-333(g\\363r)1(y)-333(do)-333(do\\252u)-333(cz)-1(ap)1(k)55(ami.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie)-352(z)-1(n)1(\\363)28(w)-353(sz)-1(ew)27(cy)-352(t)28(w)27(or)1(z)-1(yl)1(i)-352(c)-1(a\\252\\241)-352(ul)1(ic)-1(\\246)-352(w)-1(y)1(s)-1(oki)1(c)27(h)-352(k)28(oz\\252\\363)27(w)-352(dr)1(e)-1(wn)1(ian)28(yc)28(h,)-352(na)]TJ -27.879 -13.549 Td[(kt\\363r)1(yc)27(h)1(,)-289(sc)-1(ze)-1(p)1(ione)-289(za)-289(usz)-1(y)84(,)-289(wisia\\252y)-289(sze)-1(regi)-289(b)1(ut\\363)28(w,)-289(i)-288(takic)28(h)-289(zwyc)-1(za)-56(j)1(n)28(yc)28(h,)-288(\\273)-1(\\363\\252t)28(yc)27(h)]TJ 0 -13.549 Td[(do)-369(smaro)28(w)27(an)1(ia)-369(pr)1(z)-1(etopion)29(ym)-370(sad\\252em)-1(,)-368(\\273)-1(eb)28(y)-369(w)28(o)-28(dy)-369(n)1(ie)-370(p)1(u\\261c)-1(i)1(\\252y;)-369(i)-369(taki)1(c)27(h)-369(j)1(u\\273)-369(p)-28(o)-28(d)]TJ 0 -13.55 Td[(glan)1(c)-422(p)1(rzys)-1(zyk)28(o)28(w)27(an)29(yc)27(h)1(,)-421(i)-421(ci\\273e)-1(m)-421(k)28(obi)1(e)-1(cyc)27(h)-420(z)-421(c)-1(ze)-1(r)1(w)27(on)28(y)1(m)-1(i)-420(s)-1(zn)28(ur)1(o)27(w)28(ad\\252ami)-421(a)-421(n)1(a)]TJ 0 -13.549 Td[(wysokic)27(h)-333(ob)-27(cas)-1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(A)-297(z)-1(a)-297(n)1(imi)-297(c)-1(i\\241)-27(gn\\246\\252y)-297(s)-1(i\\246)-297(rymarze)-298(z)-297(c)27(hom\\241tami)-297(na)-297(k)28(o\\252k)56(ac)27(h)-296(i)-297(upr)1(z)-1(\\246\\273)-1(\\241)-297(r)1(oz)-1(wie-)]TJ -27.879 -13.549 Td[(sz)-1(on)1(\\241.)]TJ 27.879 -13.549 Td[(A)-333(p)-28(otem)-334(p)-27(o)28(wro\\271)-1(n)1(icy)-334(i)-333(ci,)-333(co)-334(siec)-1(i)-333(sprze)-1(d)1(a)28(w)27(ali)1(.)]TJ 0 -13.55 Td[(I)-333(c)-1(i,)-333(co)-334(z)-333(s)-1(it)1(am)-1(i)-333(p)-27(o)-334(\\261wie)-1(cie)-334(j)1(e)-1(\\271dzili)1(.)]TJ 0 -13.549 Td[(I)-333(c)-1(i,)-333(co)-334(z)-333(k)55(asz\\241)-334(p)-27(o)-334(j)1(armark)56(ac)27(h)-333(si\\246)-334(w)28(o)-28(d)1(z)-1(il)1(i.)]TJ 0 -13.549 Td[(A)-333(k)28(o\\252o)-28(dzieje,)-334(a)-333(garb)1(arze)-1(.)]TJ 0 -13.549 Td[(Gd)1(z)-1(ie)-352(zno)28(wu)-352(kr)1(a)27(w)28(c)-1(e)-352(i)-352(k)28(o\\273usz)-1(ar)1(z)-1(e)-352(rozw)-1(i)1(e)-1(sili)-352(sw)28(o)-56(je)-352(to)28(w)27(ar)1(y)83(,)-351(o)-28(d)-352(kt)1(\\363ryc)27(h)-351(bi)1(\\252)]TJ -27.879 -13.549 Td[(taki)-321(zapac)27(h)-321(a\\273e)-322(w)-322(n)1(oz)-1(d)1(rz)-1(ac)28(h)-321(w)-1(i)1(e)-1(r)1(c)-1(i\\252o;)-321(te)-322(mia\\252y)-321(o)-28(db)28(y)1(t)-322(n)1(ie)-1(zgorsz)-1(y)84(,)-321(\\273)-1(e)-322(to)-321(na)-321(z)-1(i)1(m)-1(\\246)]TJ 0 -13.55 Td[(sz)-1(\\252o.)]TJ 27.879 -13.549 Td[(A)-381(p)-28(ot)1(e)-1(m)-382(ca\\252e)-382(rz\\246dy)-381(s)-1(t)1(o\\252)-1(\\363)28(w,)-381(nak)1(ryt)28(yc)28(h)-381(p\\252\\363)-28(cienn)28(ymi)-381(daszk)55(ami,)-381(a)-381(na)-381(ni)1(c)27(h)]TJ -27.879 -13.549 Td[(zw)27(o)-55(je)-299(ki)1(e)-1(\\252bas)-298(c)-1(ze)-1(r)1(w)27(on)28(y)1(c)27(h)-298(i)-298(gru)1(b)28(yc)27(h)-298(k)1(ie)-1(j)-298(l)1(in)28(y)84(,)-299(w)28(a\\252y)-298(\\273)-1(\\363\\252tego)-299(sad\\252a,)-298(b)-27(o)-28(c)-1(zki)-298(w)28(\\246)-1(d)1(z)-1(o-)]TJ 0 -13.549 Td[(ne,)-386(p)-28(o\\252cie)-387(s)-1(\\252on)1(in)28(y)84(,)-387(sz)-1(yn)1(ki)-386(-)-1(.)-386(s)-1(p)1(i\\246trza\\252)-1(y)-386(si\\246)-387(na)-387(k)1(up)1(ac)27(h,)-386(a)-387(gd)1(z)-1(ie)-387(zn\\363)28(w)-387(n)1(a)-387(hak)56(ac)27(h)]TJ 0 -13.549 Td[(wisia\\252y)-340(c)-1(a\\252e)-340(w)-1(i)1(e)-1(p)1(rzki)-340(wypap)1(rosz)-1(on)1(e)-341(i)-340(b)1(ro)-28(cz)-1(\\241ce)-341(j)1(e)-1(szc)-1(ze)-341(p)-27(os)-1(ok)56(\\241,)-340(\\273e)-341(tr)1(z)-1(a)-340(b)28(y)1(\\252o)-340(o)-28(d-)]TJ 0 -13.549 Td[(gani)1(a\\242)-334(pi)1(e)-1(sk)28(\\363)27(w,)-333(co)-334(si\\246)-334(cisn\\246\\252)-1(y)84(.)]TJ 27.879 -13.55 Td[(A)-281(w)-281(p)-27(o)-28(d)1(le)-281(rze)-1(\\271nik)28(\\363)28(w,)-281(j)1(ak)28(o)-281(te)-281(b)1(rat)28(y)-281(r)1(o)-28(dzone,)-281(stali)-280(piek)56(arze)-282(i)-280(na)-280(p)-28(o)-27(des)-1(\\252anej)]TJ -27.879 -13.549 Td[(gru)1(b)-28(o)-431(s\\252om)-1(i)1(e)-1(,)-431(n)1(a)-431(w)27(ozac)27(h,)-430(na)-431(s)-1(t)1(o)-1(\\252ac)28(h,)-431(w)-431(k)28(os)-1(zac)27(h)-430(i)-431(gdzie)-432(si\\246)-431(da\\252o,)-431(le\\273)-1(a\\252y)-431(g\\363r)1(y)]TJ 0 -13.549 Td[(b)-27(o)-28(c)27(h)1(n\\363)28(w)-334(wielkic)28(h)-333(jak)-333(k)28(o\\252a,)-333(pl)1(ac)27(k)28(\\363)28(w)-334(\\273\\363\\252t)28(yc)27(h,)-333(b)1(u\\252ek,)-333(kuk)1(ie)-1(\\252ek..)1(.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie)-389(za\\261)-389(i)-389(kt)1(o)-389(pr)1(z)-1(elicz)-1(y)84(,)-389(i)-388(s)-1(p)1(am)-1(i)1(\\246)-1(ta)-388(te)-389(w)-1(sz)-1(y)1(s)-1(tki)1(e)-389(kram)28(y)-389(i)-388(to,)-389(co)-389(w)-389(ni)1(c)27(h)]TJ -27.879 -13.549 Td[(sprze)-1(d)1(a)28(w)27(ali)1(?)-1(.)1(..)]TJ 27.879 -13.55 Td[(By\\252y)-285(z)-285(z)-1(ab)1(a)28(w)-1(k)56(ami)-285(i)-285(t)1(akie)-285(z)-286(p)1(ierni)1(k)55(ami,)-284(gdzie)-286(z)-285(cias)-1(t)1(a)-285(le)-1(p)1(ion)1(e)-286(b)28(y)1(\\252y)-285(z)-1(wierze)]TJ -27.879 -13.549 Td[(r\\363\\273ne,)-457(a)-457(s)-1(erca,)-457(a)-457(\\273o\\252)-1(n)1(ierz)-1(e)-457(i)-457(cud)1(aki)-457(takie,)-457(\\273e)-458(i)-457(n)1(ie)-458(r)1(oz)-1(ez)-1(n)1(a\\242)-458(b)-27(ele)-458(k)28(om)28(u;)-457(b)29(y\\252y)]TJ\nET\nendstream\nendobj\n229 0 obj <<\n/Type /Page\n/Contents 230 0 R\n/Resources 228 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n228 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n234 0 obj <<\n/Length 8802      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(68)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(taki)1(e)-1(,)-288(gdzie)-289(k)56(alendar)1(z)-1(e,)-288(gdzie)-289(ks)-1(i)1(\\241\\273)-1(ki)-288(n)1(ab)-28(o\\273ne,)-289(gd)1(z)-1(i)1(e)-289(histori)1(e)-289(o)-289(zb)-28(\\363)-55(jac)27(h)-288(i)-288(srogic)27(h)]TJ 0 -13.549 Td[(Magi)1(e)-1(lon)1(ac)27(h)-317(prze)-1(d)1(a)28(w)27(ali)-317(i)-318(lem)-1(en)28(tar)1(z)-1(e)-318(te)-1(\\273;)-318(b)28(y)1(\\252y)-318(i)-318(taki)1(e)-1(,)-318(gd)1(z)-1(i)1(e)-319(p)1(is)-1(zcz)-1(a\\252ki,)-317(organk)1(i)]TJ 0 -13.549 Td[(i)-471(gl)1(ini)1(ane)-471(kur)1(as)-1(k)1(i,)-471(i)-470(jensz)-1(e)-471(m)27(u)1(z)-1(y)1(c)27(kie)-471(r)1(z)-1(ec)-1(zy)83(,)-470(w)-471(kt\\363re)-471(j)1(uc)28(h)28(y)-471(\\273\\363\\252tki)-471(l)1(a)-471(z)-1(ac)28(h\\246t)28(y)]TJ 0 -13.549 Td[(gral)1(i,)-431(\\273e)-432(tak)1(i)-431(jazgot)-431(si\\246)-431(c)-1(zyni)1(\\252,)-431(\\273)-1(e)-431(i)-431(wytr)1(z)-1(y)1(m)-1(a\\242)-431(tru)1(dn)1(o)-431(b)28(y\\252o)-431(b)-27(o)-431(ci)-431(tu)-430(kur)1(as)-1(ek)]TJ 0 -13.549 Td[(pi)1(s)-1(zc)-1(zy)83(,)-380(tam)-380(tr\\241bk)56(a)-380(p)-28(otr)1(\\246)-1(b)1(uj)1(e)-1(,)-380(gdzie)-381(z)-381(p)1(isz)-1(cz)-1(a\\252ek)-380(prze)-1(b)1(ieran\\241)-380(n)28(u)1(t\\246)-381(wyc)-1(i)1(\\241)-28(ga)-56(j)1(\\241,)]TJ 0 -13.55 Td[(tam)-402(ci)-402(zno)28(wu)-401(s)-1(k)1(rzypki)-401(p)1(is)-1(k)56(a)-55(j\\241,)-401(a)-402(\\363)28(wdzie)-402(b)-27(\\246)-1(b)-27(e)-1(n)-401(p)-27(ob)-27(e)-1(ku)1(je)-402(st\\246)-1(k)56(a)-55(j\\241cy)-402({)-401(ja\\273e)-402(w)27(e)]TJ 0 -13.549 Td[(\\252bi)1(e)-334(\\252up)1(a\\252)-1(o)-333(o)-28(d)-333(wr)1(z)-1(asku.)]TJ 27.879 -13.549 Td[(Za\\261)-383(w)-382(p)-28(o\\261ro)-28(d)1(ku)-382(r)1(ynku)-381(do)-28(ok)28(o\\252a)-382(dr)1(z)-1(ew)-383(rozci\\241)-28(gali)-382(si\\246)-383(b)-27(e)-1(d)1(nar)1(z)-1(e,)-382(blac)28(harze)]TJ -27.879 -13.549 Td[(i)-363(garncarze)-1(,)-363(p)-27(orozs)-1(ta)28(wiali)-363(t)28(yle)-364(mise)-1(k)-363(i)-363(garnk)28(\\363)28(w,)-363(\\273)-1(e)-364(ledwie)-364(p)1(rze)-1(j)1(\\261)-1(\\242)-364(mo\\273)-1(n)1(a)-364(b)29(y\\252o,)]TJ 0 -13.549 Td[(a)-346(za)-346(n)1(imi)-346(stolarze)-1(;)-345(\\252\\363\\273)-1(k)56(a)-346(i)-345(skrzyni)1(e)-347(malo)28(w)28(ane,)-346(i)-345(s)-1(zafy)84(,)-346(i)-345(p)-27(\\363\\252)-1(k)1(i,)-346(i)-345(s)-1(t)1(o\\252)-1(y)-345(a\\273e)-347(gr)1(a\\252y)]TJ 0 -13.549 Td[(t)28(ymi)-333(farb)1(ami,)-333(\\273)-1(e)-334(o)-27(c)-1(zy)-333(trza)-334(b)28(y)1(\\252o)-334(mru)1(\\273)-1(y\\242...)]TJ 27.879 -13.55 Td[(A)-259(wsz)-1(\\246dy)84(,)-259(n)1(a)-259(w)27(ozac)27(h)1(,)-259(p)-27(o)-28(d)-258(\\261)-1(cianami,)-258(w)-1(zd\\252u)1(\\273)-259(rynsztok)28(\\363)27(w,)-258(gdzie)-259(ino)-259(miejsc)-1(a)]TJ -27.879 -13.549 Td[(b)28(y\\252o,)-472(rozsiad\\252y)-472(si\\246)-473(k)28(obi)1(e)-1(t)28(y)-472(s)-1(p)1(rze)-1(d)1(a)-56(j)1(\\241c)-1(e;)-473(k)1(t\\363ra)-472(c)-1(ebu)1(le)-473(w)28(e)-473(wiank)56(ac)27(h)-472(al)1(b)-28(o)-472(i)-472(w)27(e)]TJ 0 -13.549 Td[(w)28(ork)56(ac)27(h;)]TJ 27.879 -13.549 Td[(kt\\363r)1(a)-362(z)-362(p)1(\\252)-1(\\363t)1(nami)-362(sw)27(o)-55(jej)-361(rob)-27(ot)28(y)-362(i)-361(w)28(e)-1(\\252n)1(iak)56(am)-1(i;)-361(kt\\363r)1(a)-362(z)-362(j)1(a)-56(j)1(k)55(ami)-361(a)-362(se)-1(r)1(k)55(ami,)]TJ -27.879 -13.549 Td[(a)-417(gr)1(z)-1(yb)1(am)-1(i)1(,)-417(a)-417(mas)-1(\\252em)-417(w)-417(os)-1(e\\252k)55(ac)28(h,)-417(p)-27(o)-28(ob)29(w)-1(i)1(jan)28(yc)28(h)-417(w)-417(sz)-1(matki)1(;)-417(in)1(na)-417(zn\\363)28(w)-417(zas)-1(i\\246)]TJ 0 -13.55 Td[(zie)-1(mni)1(aki,)-357(to)-357(g\\241s)-1(k)28(\\363)28(w)-357(par)1(\\246)-1(,)-357(to)-357(wypi)1(e)-1(rzon\\241)-357(ku)1(r\\246,)-357(to)-357(le)-1(n)-356(pi\\246kni)1(e)-358(wycz)-1(es)-1(an)28(y)84(,)-357(alb)-27(o)]TJ 0 -13.549 Td[(i)-327(motki)-326(pr)1(z)-1(\\246dzy)-327(mia\\252a;)-327(a)-327(k)56(a\\273da)-327(sie)-1(d)1(z)-1(i)1(a\\252a)-327(przy)-327(sw)28(oim)-327(i)-327(p)-27(ore)-1(d)1(z)-1(a\\252y)-326(s)-1(e)-327(go)-28(d)1(nie,)-327(j)1(ak)]TJ 0 -13.549 Td[(to)-399(z)-1(wycz)-1(a)-55(jn)1(ie)-400(na)-399(j)1(arm)-1(ar)1(k)56(ac)27(h)-399(b)28(yw)28(a,)-399(a)-400(tr)1(a\\014\\252)-399(s)-1(i\\246)-399(kup)1(ie)-1(c,)-399(to)-399(s)-1(p)1(rz)-1(eda)28(w)28(a\\252y)-400(w)28(oln)1(o,)]TJ 0 -13.549 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-288(b)-27(ez)-289(gor)1(\\241c)-1(o\\261c)-1(i,)-287(p)-28(o)-288(gosp)-28(o)-27(darsku)1(,)-288(nie)-288(tak,)-288(j)1(ak)28(o)-288(te)-289(\\233y)1(dy)84(,)-288(c)-1(o)-288(wykr)1(z)-1(y)1(kuj)1(\\241,)]TJ 0 -13.549 Td[(han)1(dr)1(yc)-1(z\\241)-333(i)-333(c)-1(isk)56(a)-56(j\\241)-333(si\\246)-334(ki)1(e)-1(j)-333(g\\252u)1(pie.)]TJ 27.879 -13.55 Td[(Gd)1(z)-1(i)1(e)-1(ni)1(e)-1(gd)1(z)-1(ie)-370(z)-1(a\\261)-371(p)-27(omi\\246)-1(d)1(z)-1(y)-370(w)28(oz)-1(ami)-370(i)-370(kramam)-1(i)-370(ku)1(rzy\\252o)-371(si\\246)-371(z)-371(b)1(lasz)-1(an)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(k)28(omink)28(\\363)28(w)-382({)-382(tam)-383(spr)1(z)-1(eda)28(w)28(ali)-382(gor\\241c\\241)-382(herbat)1(\\246)-383({)-382(a)-382(insze)-383(jad)1(\\252o,)-382(jak)28(o)-382(to:)-382(k)1(ie)-1(\\252b)1(as)-1(\\246)]TJ 0 -13.549 Td[(pr)1(a\\273)-1(on)1(\\241,)-333(k)55(ap)1(ust\\246)-1(,)-333(b)1(arsz)-1(cz)-334(z)-334(ziem)-1(n)1(iak)56(am)-1(i)-333(te\\273)-334(mie)-1(l)1(i.)]TJ 27.879 -13.549 Td[(I)-375(d)1(z)-1(i)1(ad\\363)28(w)-375(z)-1(l)1(az)-1(\\252o)-375(si\\246)-375(ze)-375(w)-1(szys)-1(tk)1(ic)27(h)-374(stron)-374(c)-1(o)-374(niemiara:)-374(\\261)-1(lep)28(yc)28(h,)-374(kul)1(a)27(wyc)28(h,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(m)28(yc)27(h)-304(i)-304(zgo\\252a)-305(b)-27(ez)-305(r\\241k)-304(i)-304(n\\363g,)-304(t)28(y)1(la)-305(j)1(ak)-304(na)-304(o)-28(d)1(pu\\261cie)-305(jak)1(im.)-304(Wygryw)28(ali)-304(n)1(a)-305(skrzy-)]TJ 0 -13.55 Td[(pi)1(c)-1(ac)28(h)-454(p)1(ie\\261)-1(n)1(ie)-454(p)-28(ob)-27(o\\273ne,)-454(d)1(rugi)1(e)-454(\\261)-1(p)1(ie)-1(w)28(ali)-453(p)-28(ob)1(rz\\246)-1(k)1(uj\\241c)-454(w)-453(m)-1(isec)-1(zki,)-453(a)-454(ws)-1(zystkie)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)-314(w)27(oz\\363)27(w,)-315(sp)-28(o)-27(d)-315(\\261)-1(cian)-315(i)-315(pr)1(os)-1(to)-315(z)-316(b)1(\\252o)-28(c)27(k)56(a)-315(\\273)-1(ebr)1(ali)-315(l\\246kliwie)-316(i)-315(wyp)1(rasz)-1(ali)-315(sobi)1(e)-316(te)-1(n)]TJ 0 -13.549 Td[(grosik)-333(jak)1(i\\261)-334(ab)-27(o)-334(j)1(e)-1(n)1(s)-1(ze)-334(ws)-1(p)-27(omo\\273)-1(eni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ejr)1(z)-1(a\\252)-322(to)-323(wsz)-1(ystk)28(o)-322(B)-1(or)1(yna,)-322(p)-27(o)-28(dziw)28(o)27(w)28(a\\252)-323(si\\246)-323(n)1(ad)-322(niejedn)29(ym)-1(,)-322(p)-27(ogw)27(ar)1(z)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(co\\261)-482(n)1(ie)-1(co\\261)-482(ze)-481(z)-1(n)1(a)-56(jomk)56(ami)-481(i)-481(dop)-27(c)27(h)1(a\\252)-481(s)-1(i)1(\\246)-482(wres)-1(zc)-1(i)1(e)-482(n)1(a)-481(targo)28(wisk)28(o)-481(\\261)-1(wi\\253)1(s)-1(kie,)-481(za)]TJ 0 -13.55 Td[(klasztor,)-372(na)-372(ogromn)28(y)-372(piaszc)-1(zys)-1(t)28(y)-372(p)1(lac)-1(,)-372(z)-373(r)1(z)-1(ad)1(k)55(a)-372(in)1(o)-373(ob)1(s)-1(ad)1(z)-1(on)28(y)-372(d)1(om)-1(ami,)-372(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-386(sam)27(y)1(m)-387(m)28(urem)-386(klasz)-1(tor)1(u,)-386(zz)-1(a)-386(kt)1(\\363re)-1(go)-386(wyc)28(h)28(yla\\252y)-385(s)-1(i\\246)-386(ogromne)-386(d\\246b)28(y)84(,)-386(p)-28(e\\252ne)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-444(\\273)-1(\\363\\252t)28(yc)28(h)-444(li)1(\\261)-1(ci,)-444(k)1(upi)1(\\252o)-444(s)-1(i\\246)-444(d)1(os)-1(y\\242)-444(lu)1(dzi,)-444(w)28(oz)-1(\\363)28(w)-444(i)-444(le\\273a\\252)-1(y)-443(c)-1(a\\252e)-444(z)-1(agon)29(y)-444(\\261)-1(wi\\253)]TJ 0 -13.549 Td[(sp)-28(\\246dzon)28(yc)28(h)-333(na)-333(s)-1(p)1(rze)-1(d)1(a\\273)-1(.)]TJ 27.879 -13.549 Td[(Ryc)27(h)1(\\252o)-334(o)-27(dn)1(alaz)-1(\\252)-333(Hank)28(\\246)-334(z)-333(J\\363z)-1(k)56(\\241,)-333(b)-27(o)-334(zaraz)-334(z)-333(kra)-55(ja)-333(b)28(y\\252y)84(.)]TJ 0 -13.549 Td[({)-333(Sp)1(rz)-1(eda)-55(jeta,)-333(c)-1(o?)]TJ 0 -13.55 Td[({)-333(Hale)-1(,)-333(j)1(u\\273)-334(t)1(u)-333(targo)28(w)27(al)1(i)-334(r)1(z)-1(e\\271)-1(n)1(icy)-333(m)-1(acior\\246,)-333(ale)-334(ma\\252o)-334(d)1(a)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-333(\\221win)1(ie)-334(dr)1(ogie?)]TJ 0 -13.549 Td[({)-333(B)-1(oga\\242)-333(tam)-334(dr)1(ogie,)-334(sp)-27(\\246)-1(d)1(z)-1(il)1(i)-334(t)28(y)1(la,)-333(\\273)-1(e)-334(n)1(ie)-334(wiad)1(a,)-333(kto)-333(c)-1(i)-333(to)-333(rozkup)1(i.)]TJ 0 -13.549 Td[({)-333(S\\241)-333(lud)1(z)-1(i)1(e)-334(z)-334(Lip)1(iec)-1(?)]TJ 0 -13.549 Td[({)-495(O,)-495(ha\\253)-495(t)1(am)-496(ma)-56(j\\241)-495(p)1(ros)-1(i)1(\\246)-1(ta)-495(K\\252\\246b)28(y)83(,)-495(a)-495(i)-495(S)1(z)-1(yme)-1(k)-495(D)1(om)-1(in)1(ik)28(\\363)28(w)-496(stoi)-495(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(wieprzku)1(.)]TJ 27.879 -13.549 Td[({)-333(Uw)-1(i)1(\\253ta)-333(s)-1(i)1(\\246)-334(ryc)28(h\\252o,)-333(to)-333(s)-1(e)-334(\\271dziebk)28(o)-333(p)-27(opatrzycie)-334(n)1(a)-334(j)1(armark.)]TJ\nET\nendstream\nendobj\n233 0 obj <<\n/Type /Page\n/Contents 234 0 R\n/Resources 232 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n232 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n237 0 obj <<\n/Length 7852      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(69)]TJ -335.807 -35.866 Td[({)-333(Ju\\273)-334(t)1(e)-1(\\273)-334(i)-333(c)28(kno)-333(tak)-333(s)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Wiele)-334(d)1(a)-56(j\\241)-333(za)-334(mac)-1(i)1(or\\246?)]TJ 0 -13.549 Td[({)-406(T)83(rzyd)1(z)-1(ie\\261)-1(ci)-406(p)1(apierk)28(\\363)28(w,)-406(p)-28(o)28(wiad)1(a)-56(j)1(\\241,)-406(\\273)-1(e)-406(niedop)1(as)-1(i)1(ona,)-406(b)-27(o)-406(ino)-406(w)-406(gn)1(atac)27(h)]TJ -27.879 -13.549 Td[(gru)1(ba,)-333(a)-333(nie)-333(w)-334(s\\252)-1(on)1(in)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-400(Ocygani)1(a)-56(j)1(\\241,)-400(jak)-399(ino)-400(mog\\241...)-399(ale,)-400(m)-1(a)-399(c)-1(i)-400(s\\252onin)1(\\246)-400(na)-400(j)1(akie)-400(c)-1(zte)-1(r)1(y)-400(pal)1(c)-1(e...)]TJ -27.879 -13.55 Td[({)-371(rz)-1(ek\\252,)-371(om)-1(aca)28(ws)-1(zy)-372(maciorze)-372(grzbiet)-371(i)-372(b)-27(oki.)-371({)-371(Wiepr)1(z)-1(ak)-371(c)27(h)28(u)1(dy)-371(n)1(a)-372(b)-27(ok)56(ac)27(h,)-371(ale)]TJ 0 -13.549 Td[(p)-27(ortki)-453(ma)-453(ni)1(e)-1(zgors)-1(ze)-454(n)1(a)-453(s)-1(zynk)1(i)-453({)-453(do)-28(d)1(a\\252)-454(sp)-27(\\246)-1(d)1(z)-1(iwsz)-1(y)-453(go)-453(z)-453(m)-1(okr)1(e)-1(go)-453(p)1(ias)-1(k)1(u,)-453(w)]TJ 0 -13.549 Td[(kt\\363r)1(ym)-334(d)1(o)-334(p)-27(\\363\\252)-334(b)-27(ok)28(\\363)28(w)-334(l)1(e)-1(\\273a\\252)-334(zan)28(ur)1(z)-1(on)29(y)83(.)]TJ 27.879 -13.549 Td[({)-496(Za)-496(tr)1(z)-1(y)1(dzie)-1(\\261c)-1(i)-495(pi)1(\\246)-1(\\242)-496(s)-1(p)1(rze)-1(d)1(a)-56(j)1(c)-1(ie,)-496(za)-56(j)1(rze)-496(do)-496(An)28(t)1(k)55(a)-495(ino)-496(i)-495(za)-1(r)1(az)-496(do)-496(w)28(as)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(le)-1(ce)-1(.)-333(Je\\261)-1(\\242)-333(w)27(am)-333(s)-1(i\\246)-333(nie)-334(c)28(hce)-1(?..)1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-56(j)1(ad\\252y\\261m)27(y)-333(j)1(u\\273)-334(c)28(hleba.)]TJ 0 -13.55 Td[({)-290(Kup)1(i\\246)-291(w)28(am)-291(i)-290(kie\\252)-1(b)1(as)-1(y)84(,)-290(ino)-290(sprze)-1(d)1(a)-56(j)1(c)-1(i)1(e)-1(,)-290(a)-291(d)1(obr)1(z)-1(e.)-290(T)83(atulu)1(,)-290(a)-291(n)1(ie)-291(zabacz)-1(cie)]TJ -27.879 -13.549 Td[(o)-333(c)27(h)28(u)1(s)-1(tce)-1(,)-333(co\\261)-1(cie)-334(to)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(na)-333(z)-1(wies)-1(n)1(e)-334(obi)1(e)-1(cali..)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-446(si\\246gn\\241\\252)-445(z)-1(a)-445(pazuc)27(h)1(\\246)-1(,)-445(al)1(e)-446(s)-1(i)1(\\246)-446(w)-1(strzyma\\252,)-445(jakb)29(y)-446(go)-445(co\\261)-446(tkn\\246\\252o,)-445(b)-28(o)]TJ -27.879 -13.549 Td[(t)28(ylk)28(o)-333(mac)27(hn)1(\\241\\252)-334(r)1(\\246)-1(k)56(\\241)-333(i)-333(rz)-1(ek\\252)-333(o)-28(dc)28(ho)-28(d)1(z)-1(\\241c:)]TJ 27.879 -13.549 Td[({)-350(Ku)1(pi\\246)-350(ci,)-350(J\\363zia,)-350(ku)1(pi)1(\\246)-1(..)1(.)-350({)-350(i)-350(a\\273)-350(w)-350(dyr)1(dy)-350(r)1(usz)-1(y\\252,)-349(b)-28(o)-350(d)1(o)-56(j)1(rza\\252)-351(t)28(w)28(arz)-350(Jagn)28(y)]TJ -27.879 -13.55 Td[(mi\\246)-1(d)1(z)-1(y)-275(w)27(ozam)-1(i)1(,)-276(ale)-276(nim)-276(dosz)-1(ed\\252,)-275(s)-1(cz)-1(ez)-1(\\252a)-276(gd)1(z)-1(ie\\261)-276(do)-276(cna,)-276(j)1(akb)28(y)-276(si\\246)-276(w)-277(ziem)-1(i)1(\\246)-277(zapa-)]TJ 0 -13.549 Td[(d\\252a;)-308(j\\241\\252)-309(wi\\246c)-310(o)-28(d)1(s)-1(zuk)1(iw)27(a\\242)-309(An)28(tk)56(a;)-309(n)1(ie)-1(\\252acno)-309(t)1(o)-309(b)28(y\\252o,)-309(b)-27(o)-309(w)-309(te)-1(j)-308(ul)1(ic)-1(zc)-1(e,)-309(p)1(ro)28(w)27(ad)1(z)-1(\\241ce)-1(j)]TJ 0 -13.549 Td[(z)-365(targo)28(wisk)55(a)-364(na)-364(ryn)1(e)-1(k)1(,)-365(sta\\252)-365(w)28(\\363z)-365(przy)-364(w)27(ozie,)-365(i)-364(to)-365(w)-364(rz\\246)-1(d\\363)28(w)-365(p)1(ar\\246,)-365(\\273e)-365(\\261ro)-28(d)1(kiem)-365(i)]TJ 0 -13.549 Td[(z)-344(tru)1(dem)-345(n)1(ie)-1(ma\\252ym)-344(a)-344(b)1(ac)-1(ze)-1(n)1(ie)-1(m)-344(mo\\273)-1(n)1(a)-344(b)28(y\\252o)-344(p)1(rze)-1(j)1(e)-1(c)28(ha\\242,)-344(ale)-344(w)-1(n)1(e)-1(t)-343(s)-1(i\\246)-344(n)1(a)-344(niego)]TJ 0 -13.549 Td[(nat)1(kn\\241\\252.)-328(An)29(te)-1(k)-327(s)-1(iedzia\\252)-328(na)-327(w)27(ork)56(ac)27(h)-327(i)-328(smag)-1(a\\252)-328(b)1(atem)-329(\\273ydo)28(wskie)-328(kur)1(y)83(,)-328(co)-328(si\\246)-328(s)-1(ta-)]TJ 0 -13.55 Td[(dami)-415(u)28(wij)1(a\\252y)-415(k)28(o\\252o)-416(k)28(ob)1(ia\\252e)-1(k)1(,)-415(z)-416(kt\\363r)1(yc)27(h)-414(jad\\252y)-415(k)28(on)1(ie,)-415(a)-416(p)-27(\\363\\252g\\246bkiem)-416(o)-27(dp)-27(o)28(w)-1(i)1(ada\\252)]TJ 0 -13.549 Td[(ku)1(p)-28(com:)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252em)-334(sie)-1(d)1(e)-1(m,)-333(to)-333(p)-28(o)28(wiedzia\\252e)-1(m.)]TJ 0 -13.549 Td[({)-333(Sze)-1(\\261\\242)-334(i)-333(p)-27(\\363\\252)-334(d)1(a)-56(j\\246,)-333(wi\\246)-1(ce)-1(j)-332(nie)-334(mo\\273na,)-333(psze)-1(n)1(ic)-1(a)-333(ze)-334(\\261)-1(n)1(ie)-1(d)1(z)-1(i)1(\\241.)]TJ 0 -13.549 Td[({)-342(Jak)-342(c)-1(i)1(,)-343(p)1(arc)28(h)28(u,)-342(lu)1(n\\246)-342(prze)-1(z)-342(te)-1(n)-342(p)29(ys)-1(k)-342(p)1(as)-1(k)1(ud)1(n)28(y)83(,)-342(to)-342(ci)-342(w)-1(n)1(e)-1(t)-342(ze)-1(\\261niedzieje...)]TJ -27.879 -13.55 Td[(Ale,)-333(psz)-1(enica)-333(c)-1(zys)-1(t)1(a)-334(j)1(ak)-333(z)-1(\\252oto.)]TJ 27.879 -13.549 Td[({)-310(Mo\\273)-1(e)-310(b)28(y\\242,)-311(al)1(e)-311(w)-1(i)1(lgotna.)1(..)-310(Kup)1(i\\246)-311(na)-310(miar\\246)-311(i)-310(p)-27(o)-311(sz)-1(e\\261)-1(\\242)-310(rub)1(li)-310(i)-310(pi\\246\\242)-311(z)-1(\\252ot)28(yc)28(h.)]TJ 0 -13.549 Td[({)-333(Kup)1(isz)-334(na)-333(w)27(ag\\246)-333(i)-334(p)-27(o)-333(s)-1(i)1(e)-1(d)1(e)-1(m,)-333(rze)-1(k\\252em)-1(!)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(si\\246)-334(gosp)-28(o)-27(darz)-334(gn)1(iew)27(a!)-333(Ku)1(pi\\246)-333(nie)-333(kup)1(i\\246)-1(,)-333(a)-333(p)-27(otargo)28(w)27(a\\242)-333(m)-1(o\\273na.)]TJ 0 -13.549 Td[({)-465(A)-466(t)1(arguj)-465(si\\246,)-465(kiej)-465(c)-1(i)-465(p)28(y)1(s)-1(k)56(a)-465(nie)-465(s)-1(zk)28(o)-28(da.)-465({)-465(I)-465(nie)-466(zwraca\\252)-466(j)1(u\\273)-466(u)29(w)27(agi)-465(na)]TJ -27.879 -13.55 Td[(\\233yd)1(\\363)27(w,)-333(kt\\363r)1(z)-1(y)-333(rozwi\\241z)-1(y)1(w)27(ali)-333(w)28(orki)-333(p)-27(o)-333(k)28(ole)-1(i)-333(i)-333(ogl\\241d)1(ali)-333(psz)-1(eni)1(c)-1(\\246.)]TJ 27.879 -13.549 Td[({)-333(An)28(tek,)-333(p)-28(\\363)-55(jd)1(e)-334(ino)-333(d)1(o)-334(p)1(is)-1(ar)1(z)-1(a)-333(i)-333(w)-334(to)-333(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie)-334(p)1(rzyjd)1(e)-334(do)-333(cie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(C)-1(o?)-333(Na)-333(dw)28(\\363r)-333(s)-1(k)56(arg\\246)-334(p)-27(o)-28(d)1(a)-56(j)1(e)-1(cie)-1(?)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(ez)-334(k)28(ogo)-334(t)1(o)-334(p)1(ad\\252a)-333(m)-1(o)-55(ja)-333(gran)1(ias)-1(ta?)]TJ 0 -13.549 Td[({)-333(Du\\273o)-334(t)1(o)-334(wsk)28(\\363rac)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Sw)28(o)-56(j)1(e)-1(go)-333(dar)1(o)27(w)28(a\\242)-334(ni)1(e)-334(dar)1(uj)1(\\246)-1(.)]TJ 0 -13.55 Td[({)-319(I...)-319(b)-27(oro)28(w)28(e)-1(go)-319(p)1(rz)-1(y)1(prze\\242)-320(gdzie)-319(w)-320(b)-27(oru)-318(do)-319(c)27(h)1(o)-56(j)1(ak)55(a,)-319(spr)1(a\\242)-320(cz)-1(y)1(m)-320(t)28(w)28(ardy)1(m)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-1(b)28(y)-333(m)28(u)-333(a\\273)-334(\\273)-1(ebr)1(a)-334(zapi)1(s)-1(zc)-1(za\\252y{)-333(z)-1(ar)1(az)-334(b)28(y\\252ab)28(y)-333(spra)28(wiedli)1(w)27(o\\261\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(or)1(o)27(wy?)-333(Ju\\261c)-1(i)1(,)-333(\\273)-1(e)-334(m)28(u)-333(s)-1(i)1(\\246)-334(to)-333(nale\\273)-1(y)84(,)-333(ale)-334(d)1(w)27(or)1(o)27(wi)-333(te\\273)-334({)-333(rz)-1(ek\\252)-333(t)28(w)27(ar)1(do.)]TJ 0 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(m)-1(i)-333(z\\252ot\\363)27(wk)28(\\246.)]TJ 0 -13.549 Td[({)-333(Na)-334(co)-333(c)-1(i?)]TJ 0 -13.55 Td[({)-333(Gorza\\252ki)-333(b)28(ym)-333(s)-1(i\\246)-333(napi)1(\\252)-334(i)-333(p)1(rz)-1(egryz\\252)-333(c)-1(o..)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(mas)-1(z)-333(to)-334(sw)27(oi)1(c)27(h?..)1(.)-334(Ci\\246giem)-334(in)1(o)-334(w)-333(o)-56(j)1(c)-1(o)28(w)28(\\241)-334(gar)1(\\261)-1(\\242)-334(u)29(w)27(a\\273as)-1(z.)]TJ\nET\nendstream\nendobj\n236 0 obj <<\n/Type /Page\n/Contents 237 0 R\n/Resources 235 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n235 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n240 0 obj <<\n/Length 8738      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(70)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(An)28(tek)-232(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-233(si\\246)-233(gw)28(a\\252to)28(w)-1(n)1(ie)-233(i)-232(j)1(\\241\\252)-232(p)-28(ogwizdyw)28(a\\242)-233(ze)-233(z\\252o\\261)-1(ci,)-232(a)-232(s)-1(tar)1(y)83(,)-232(c)27(h)1(o)-28(cia\\273)]TJ -27.879 -13.549 Td[(z)-334(\\273alem)-334(i)-333(m)-1(ar)1(k)28(otno\\261c)-1(i)1(\\241,)-334(wysup)1(\\252a\\252)-334(z\\252ot\\363)28(w)-1(k)28(\\246)-333(i)-333(da\\252.)]TJ 27.879 -13.549 Td[({)-329(\\233yw)-328(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-328(s)-1(w)28(o)-56(j)1(\\241)-329(kr)1(w)27(a)28(wic)-1(\\241.)1(..)-329({)-328(m)27(y\\261la\\252)-329(i)-328(s)-1(p)1(ies)-1(znie)-329(si\\246)-329(pr)1(z)-1(ec)-1(i)1(s)-1(k)56(a\\252)-329(do)]TJ -27.879 -13.549 Td[(ogromnego,)-328(nar)1(o\\273)-1(n)1(e)-1(go)-328(sz)-1(yn)1(ku,)-328(gd)1(z)-1(i)1(e)-329(b)28(y\\252o)-328(ju)1(\\273)-329(sp)-28(or)1(o)-328(lud)1(z)-1(i)-328(p)-27(o\\273)-1(y)1(w)-1(i)1(a)-56(j\\241cyc)28(h)-328(s)-1(i)1(\\246)-1(;)-328(w)]TJ 0 -13.549 Td[(alki)1(e)-1(r)1(z)-1(u)-333(o)-28(d)-332(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(a)-333(mie)-1(sz)-1(k)56(a\\252)-333(pisarz.)]TJ 27.879 -13.55 Td[(W\\252a\\261nie)-444(s)-1(iedzia\\252)-444(p)-28(o)-28(d)-443(oknem)-445(p)1(rz)-1(y)-444(stole)-445(z)-444(c)-1(ygar)1(e)-1(m)-445(w)-444(z)-1(\\246bac)28(h,)-444(w)-445(k)28(oszuli)]TJ -27.879 -13.549 Td[(b)28(y\\252)-401(t)28(y)1(lk)28(o,)-401(n)1(ie)-401(um)27(y)1(t)28(y)-401(i)-401(r)1(oz)-1(cz)-1(o)-28(c)28(hr)1(an)28(y;)-401(j)1(ak)56(a\\261)-402(k)28(ob)1(ie)-1(t)1(a)-401(s)-1(p)1(a\\252a)-401(na)-401(sienn)1(iku)-400(w)-401(k)55(\\241cie,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kryta)-380(paltem.)-381({)-381(S)1(iada)-55(jcie,)-381(p)1(anie)-381(gosp)-28(o)-27(darzu!)-380({)-381(zrz)-1(u)1(c)-1(i)1(\\252)-381(z)-1(e)-381(sto\\252k)55(a)-380(ob\\252o)-28(cone)]TJ 0 -13.549 Td[(ub)1(ran)1(ie)-252(i)-251(p)-28(o)-27(dsun)1(\\241\\252)-252(Boryn)1(ie)-1(,)-251(kt)1(\\363re)-1(n)-251(zaraz)-252(op)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-252(dok)1(ume)-1(n)29(tnie)-252(ca\\252\\241)-252(spr)1(a)28(w)27(\\246.)]TJ 27.879 -13.549 Td[({)-492(W)83(asza)-492(w)-1(ygr)1(ana,)-492(j)1(ak)-492(ame)-1(n)-491(w)-493(p)1(ac)-1(ierzu.)-492(J)1(e)-1(sz)-1(cz)-1(e)-492(b)28(y!)-492(K)1(ro)28(w)27(a)-492(zdec)27(h\\252a)-492(i)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opak)-379(c)27(hor)1(uj)1(e)-381(z)-380(pr)1(z)-1(es)-1(t)1(rac)27(h)28(u)1(.)-380(Dob)1(ra)-380(n)1(as)-1(za!)-380({)-379(z)-1(atar)1(\\252)-380(r\\246c)-1(e)-380(i)-380(sz)-1(u)1(k)56(a\\252)-380(pap)1(ie)-1(r)1(u)-380(n)1(a)]TJ 0 -13.55 Td[(stole)-1(.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(.)1(..)-333(kiej)-333(z)-1(d)1(ro)28(wy)-333(c)27(h\\252op)1(ak.)]TJ 0 -13.549 Td[({)-333(Nic)-334(n)1(ie)-334(sz)-1(k)28(o)-28(d)1(z)-1(i)1(,)-334(m\\363g\\252)-333(z)-1(ac)27(h)1(oro)28(w)28(a\\242)-1(.)-333(Bi\\252)-334(go)-333(p)1(rz)-1(ecie)-1(\\273...)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(b)1(i\\252)-333(ino)-333(c)27(h)1(\\252opak)56(a)-334(s\\241s)-1(i)1(ad\\363)28(w.)]TJ 0 -13.549 Td[({)-427(Szk)28(o)-28(da,)-427(to)-427(b)28(y)-428(b)29(y\\252o)-428(j)1(e)-1(sz)-1(cz)-1(e)-427(le)-1(p)1(s)-1(ze)-1(.)-427(Ale)-428(t)1(o)-428(si\\246)-428(jak)28(o\\261)-428(ze)-1(sztuku)1(je,)-427(tak)-428(\\273e)]TJ -27.879 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-333(i)-333(c)27(hor)1(oba)-333(z)-334(p)-27(obicia,)-333(i)-333(z)-1(d)1(e)-1(c)28(h\\252a)-333(kro)28(w)28(a.)-334(Ni)1(e)-1(c)28(h)-333(dw)28(\\363r)-333(p\\252ac)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(o)-333(n)1(ic)-334(ni)1(e)-334(id)1(z)-1(ie,)-333(ino)-333(o)-333(s)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(\\242.)]TJ 0 -13.549 Td[({)-254(Zaraz)-254(si\\246)-255(n)1(api)1(s)-1(ze)-255(sk)56(arg\\246)-1(.)-253(F)83(r)1(ania,)-253(a)-254(ru)1(s)-1(z)-254(no)-254(si\\246,)-254(w)27(a\\252k)28(on)1(iu!)-253({)-254(krzykn)1(\\241\\252)-254(i)-254(tak)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(n)1(o)-338(k)28(op)1(n\\241\\252)-337(le\\273)-1(\\241c\\241,)-337(\\273)-1(e)-338(p)-27(o)-28(d)1(nios\\252a)-338(r)1(oz)-1(cz)-1(o)-28(c)28(hr)1(an\\241)-337(g\\252)-1(o)28(w)28(\\246)-1(.)-337({)-337(Przyn)1(ie)-1(\\261)-337(no)-337(gorza\\252)-1(k)1(i)]TJ 0 -13.549 Td[(i)-333(c)-1(o)-333(zje\\261)-1(\\242...)]TJ 27.879 -13.55 Td[({)-428(Ani)-428(d)1(ydk)56(a)-428(nie)-428(m)-1(am,)-428(a)-428(wie)-1(sz,)-429(G)1(uciu,)-428(\\273e)-429(n)1(ie)-429(zb)-28(or)1(guj)1(\\241....)-428({)-428(mrucza\\252)-1(a)-428(i)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(i\\363s\\252)-1(szy)-463(si\\246)-463(z)-463(b)1(ar\\252ogu,)-462(j)1(\\246)-1(\\252a)-462(z)-1(iew)28(a\\242)-463(i)-462(prze)-1(ci\\241)-28(ga\\242)-463(si\\246;)-462(w)-1(i)1(e)-1(lk)56(a)-462(b)28(y\\252a)-462(jak)-462(pi)1(e)-1(c,)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-440(mia\\252a)-439(ogromn\\241,)-438(obrz\\246)-1(k)1(\\252)-1(\\241,)-438(p)-28(osini)1(ac)-1(zon\\241)-439(i)-439(p)1(rze)-1(p)1(it\\241,)-439(a)-439(g\\252os)-440(cienki)1(,)-439(jakb)29(y)]TJ 0 -13.549 Td[(dziec)-1(i)1(\\241tk)55(a.)]TJ 27.879 -13.549 Td[(Pi)1(s)-1(ar)1(z)-393(praco)28(w)27(a\\252,)-392(a\\273)-393(pi)1(\\363ro)-393(skr)1(z)-1(yp)1(ia\\252o,)-392(p)-28(o)-28(ci\\241)-28(ga\\252)-392(c)-1(y)1(gara,)-392(pu)1(s)-1(zc)-1(za\\252)-393(d)1(ym)-393(na)]TJ -27.879 -13.55 Td[(Boryn)1(\\246)-1(,)-346(kt\\363ry)-346(przypat)1(ryw)28(a\\252)-347(s)-1(i\\246)-347(p)1(is)-1(an)1(iu,)-346(z)-1(aciera\\252)-347(c)27(h)29(ude,)-347(p)1(iego)27(w)28(ate)-347(r\\246c)-1(e)-347(i)-347(raz)-347(w)]TJ 0 -13.549 Td[(raz)-431(o)-28(d)1(wrac)-1(a\\252)-430(w)-1(y)1(n\\246dznia\\252\\241,)-430(okrosz)-1(cz)-1(on)1(\\241)-431(t)28(w)27(ar)1(z)-431(na)-431(F)84(ran)1(k)28(\\246)-1(;)-430(z)-1(\\246b)28(y)-431(p)1(rze)-1(d)1(nie)-431(mia\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(\\252)-1(aman)1(e)-1(,)-333(usta)-333(s)-1(in)1(e)-334(i)-333(wielkie)-334(czarne)-333(w)27(\\241sy)83(.)]TJ 27.879 -13.549 Td[(Napi)1(s)-1(a\\252)-349(sk)55(ar)1(g\\246)-1(,)-348(w)-1(zi\\241\\252)-349(za)-349(ni\\241)-349(r)1(ubl)1(a,)-349(wz)-1(i\\241\\252)-349(n)1(a)-349(m)-1(ar)1(ki)-349(d)1(rugi)1(e)-1(go)-349(i)-349(u)1(go)-28(dzi\\252)-349(si\\246)]TJ -27.879 -13.549 Td[(na)-333(tr)1(z)-1(y)-333(za)-334(sta)28(w)27(an)1(ie)-334(w)-334(s\\241dzie,)-333(jak)-333(spra)28(w)28(a)-334(p)1(rzyjd)1(z)-1(ie)-333(na)-333(s)-1(t\\363\\252.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-435(s)-1(i)1(\\246)-436(n)1(a)-435(w)-1(szys)-1(tk)28(o)-434(z)-1(go)-28(d)1(z)-1(i)1(\\252)-435(s)-1(kw)28(apli)1(w)-1(i)1(e)-1(,)-434(c)27(ho)-27(\\242)-436(m)28(u)-435(ta)-435(p)1(ieni\\246dzy)-435(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(\\273al,)-333(b)-28(o)-333(miark)28(o)28(w)27(a\\252,)-333(\\273e)-334(dw)28(\\363r)-333(m)27(u)-332(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(zap\\252ac)-1(i)1(,)-334(i)-333(z)-333(na)28(wi\\241z)-1(k)56(\\241.)]TJ 27.879 -13.549 Td[({)-479(Spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-480(m)28(usi)-480(b)29(y\\242)-480(na)-479(\\261)-1(wiecie)-1(,)-479(to)-479(s)-1(p)1(ra)28(w)27(a)-479(wygran)1(a!)-480({)-479(rze)-1(k)1(\\252)-480(na)]TJ -27.879 -13.549 Td[(o)-28(d)1(c)27(ho)-27(dn)28(y)1(m)-1(.)]TJ 27.879 -13.549 Td[({)-381(Nie)-382(wygr)1(am)27(y)-381(w)-381(gm)-1(i)1(nn)28(ym,)-381(to)-381(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-1(m)28(y)-381(do)-381(z)-1(j)1(az)-1(d)1(u,)-381(zjazd)-381(ni)1(e)-382(p)-27(oradzi,)]TJ -27.879 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-1(m)28(y)-333(do)-333(okr\\246go)28(w)27(ego,)-333(do)-333(iz)-1(b)29(y)-333(s)-1(\\241d)1(o)27(w)28(e)-1(j)-332({)-334(a)-333(nie)-333(daru)1(jem)27(y)84(.)]TJ 27.879 -13.55 Td[({)-318(Z)-1(a\\261b)28(ym)-318(tam)-319(dar)1(o)28(w)27(a\\252)-318(s)-1(w)28(o)-56(j)1(e)-1(!)-318({)-319(za)28(w)27(o\\252a\\252)-318(z)-319(z)-1(a)28(wz)-1(i)1(\\246)-1(to\\261c)-1(i)1(\\241)-319(Boryn)1(a.)-318({)-319(I)-318(k)28(om)27(u)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e,)-321(d)1(w)27(oro)28(wi,)-320(c)-1(o)-321(ma)-321(t)28(yle)-321(las\\363)28(w)-322(i)-320(z)-1(i)1(e)-1(mi!..)1(.)-321({)-321(r)1(oz)-1(m)28(y\\261)-1(la\\252)-320(w)-1(yc)28(ho)-28(d)1(z)-1(\\241c)-321(n)1(a)-321(ryn)1(e)-1(k)-320(i)]TJ 0 -13.549 Td[(zaraz)-334(j)1(ak)28(o\\261)-334(pr)1(z)-1(y)-333(c)-1(zapn)1(ik)56(ac)27(h)-333(n)1(atkn)1(\\241\\252)-334(si\\246)-334(n)1(a)-334(Jagn)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(St)1(a\\252)-1(a)-333(w)-333(c)-1(zap)-28(ce)-334(gran)1(ato)28(w)27(ej)-333(na)-333(g\\252o)28(w)-1(i)1(e)-1(,)-333(a)-333(dr)1(ug\\241)-333(jes)-1(zc)-1(ze)-334(targo)28(w)28(a\\252a.)]TJ 0 -13.549 Td[({)-409(Ob)1(ac)-1(zc)-1(i)1(e)-410(n)1(o,)-409(Macie)-1(j)1(u,)-409(b)-27(o)-409(ten)-409(\\273\\363\\252te)-1(k)-408(p)-28(o)28(wiada,)-408(\\273)-1(e)-409(dob)1(ra,)-409(a)-409(p)-27(e)-1(wn)1(ikiem)]TJ -27.879 -13.55 Td[(cygani.)1(..)]TJ 27.879 -13.549 Td[({)-333(Galan)28(ta,)-333(l)1(a)-334(J\\246dr)1(z)-1(yc)28(ha?)-333({)-334(Ju)1(\\261)-1(ci,)-333(Szymk)28(o)28(w)-1(i)-333(j)1(u\\273)-334(k)1(up)1(i\\252am)-1(.)]TJ\nET\nendstream\nendobj\n239 0 obj <<\n/Type /Page\n/Contents 240 0 R\n/Resources 238 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n238 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n243 0 obj <<\n/Length 8373      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(71)]TJ -335.807 -35.866 Td[({)-333(Nie)-334(za)-334(ma\\252a)-333(to)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(?)]TJ 0 -13.549 Td[({)-333(T)83(akusi\\253)1(k)55(\\241)-333(ma)-334(ci)-333(g\\252o)27(w)28(\\246)-334(ki)1(e)-1(j)-333(mo)-56(j)1(a...)]TJ 0 -13.549 Td[({)-333(Pi\\246kn)28(y)-333(z)-334(ciebie)-333(b)28(y\\252b)28(y)-333(par)1(ob)-28(ecz)-1(ek...)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(i)-333(ni)1(e)-1(!)-333({)-333(z)-1(a)28(w)27(o\\252a\\252a)-333(z)-1(u)1(c)27(h)1(o)27(w)28(ato,)-333(bak)1(ie)-1(r)1(uj)1(\\241c)-334(nieco)-334(cz)-1(ap)1(k)28(\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Wnetki)-333(b)28(y)-333(ci\\246)-334(tu)-333(go)-27(dzi\\252y)-333(do)-333(s)-1(iebi)1(e)-1(..)1(.)]TJ 0 -13.55 Td[({)-333(Hale)-1(.)1(..)-333(inom)-333(z)-1(a)-333(dr)1(oga)-334(d)1(o)-334(s\\252u\\273b)28(y)84(.)-333({)-334(Zacz)-1(\\246\\252a)-334(si\\246)-334(\\261m)-1(i)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(k)28(om)27(u)1(...)-333(m)-1(n)1(ie)-334(b)29(y\\261)-334(ta)-333(z)-1(a)-333(dr)1(oga)-334(n)1(ie)-334(b)29(y\\252a...)]TJ 0 -13.549 Td[({)-333(I)-334(w)-333(p)-28(ol)1(u)-333(robi)1(\\242)-334(b)28(ym)-333(nie)-334(r)1(obi\\252a.)1(..)]TJ 0 -13.549 Td[({)-352(Robi\\252b)29(ym)-353(j)1(a)-352(z)-1(a)-352(ciebie,)-352(Jagu\\261,)-352(r)1(obi\\252..)1(.)-352({)-352(s)-1(ze)-1(p)1(n\\241\\252)-352(cis)-1(ze)-1(j)-351(i)-352(tak)-352(sp)-28(o)-55(jr)1(z)-1(a\\252)-352(na)]TJ -27.879 -13.549 Td[(ni)1(\\241)-345(nami\\246tni)1(e)-1(,)-344(a\\273)-345(dziew)27(cz)-1(yn)1(a)-345(cofn)1(\\246)-1(\\252a)-345(si\\246)-345(zak\\252op)-27(otana)-345(i)-344(j)1(u\\273)-345(b)-27(e)-1(z)-345(targu)-344(zap\\252aci\\252a)]TJ 0 -13.549 Td[(za)-334(cz)-1(ap)1(k)28(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-377(S)1(prze)-1(d)1(ali\\261c)-1(i)1(e)-378(kr)1(o)28(w)27(\\246?)-378({)-376(z)-1(ap)28(y)1(ta\\252)-377(p)-28(o)-377(c)28(h)28(wili)-377(op)1(am)-1(i)1(\\246)-1(ta)28(ws)-1(zy)-377(si\\246)-377(niec)-1(o)-377(i)-376(wy-)]TJ -27.879 -13.549 Td[(tc)27(h)1(n\\241)28(ws)-1(zy)-333(z)-334(o)28(w)27(ej)-333(lu)1(b)-28(o\\261c)-1(i)1(,)-333(c)-1(o)-333(m)27(u)-333(j)1(ak)-333(gorza\\252)-1(k)56(a)-333(bu)1(c)27(hn)1(\\246)-1(\\252a)-333(do)-333(g\\252o)28(wy)83(.)]TJ 27.879 -13.549 Td[({)-388(Kup)1(ili)-388(j)1(\\241)-389(la)-388(ksi\\246dza)-389(d)1(o)-389(Jerzo)28(w)27(a.)-388(Matk)56(a)-388(p)-27(os)-1(z\\252a)-389(z)-389(or)1(ganistami,)-388(b)-28(o)-388(c)27(h)1(c)-1(\\241)]TJ -27.879 -13.549 Td[(zgo)-28(dzi\\242)-334(p)1(arobk)56(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(m)28(y)-334(sobi)1(e)-334(c)27(h)1(o)-28(\\242)-1(b)29(y)-334(n)1(a)-333(te)-1(n)-333(k)1(ie)-1(l)1(is)-1(ze)-1(k)-333(s\\252o)-28(dk)1(ie)-1(j)-333(wst\\241)-28(p)1(im)27(y!)1(...)]TJ 0 -13.55 Td[({)-333(Jak\\273e)-334(to?)]TJ 0 -13.549 Td[({)-333(Zz)-1(i\\246b\\252a\\261,)-333(Jagu\\261,)-333(to)-334(si\\246)-334(\\271dziebk)28(o)-333(ogrze)-1(j)1(e)-1(sz)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Gdzieb)28(ym)-334(za\\261)-334(z)-334(w)28(ami)-333(s)-1(z\\252a)-334(n)1(a)-334(w)28(\\363)-28(dk)28(\\246!..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(p)1(rz)-1(y)1(nies)-1(e)-333(i)-334(t)1(uta)-55(j)-333(s)-1(i\\246)-333(nap)1(ijem)-1(,)-333(Jagu)1(\\261)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-334(za)-334(d)1(obre)-333(s)-1(\\252o)28(w)27(o,)-333(al)1(e)-334(m)-1(i)-333(matki)-333(tr)1(z)-1(a)-333(p)-28(oszuk)56(a\\242)-1(.)]TJ 0 -13.55 Td[({)-359(P)29(o)-1(mog\\246)-359(ci,)-359(Jagu)1(\\261)-1(.)1(..)-359({)-358(s)-1(ze)-1(p)1(n\\241\\252)-359(cic)27(h)29(ym)-359(g\\252os)-1(em)-359(i)-359(p)-27(os)-1(zed\\252)-359(p)1(rz)-1(o)-27(dem)-1(,)-358(a)-359(tak)]TJ -27.879 -13.549 Td[(rob)1(i\\252)-447(\\252ok)28(c)-1(iami,)-447(\\273e)-448(Jagn)1(a)-447(s)-1(w)28(ob)-28(o)-27(dn)1(ie)-448(sz)-1(\\252a)-447(za)-448(n)1(im)-447(w)-1(skro\\261)-447(c)-1(i)1(\\273)-1(b)28(y)84(,)-447(ale)-447(gdy)-447(w)28(e)-1(sz)-1(l)1(i)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(p)1(\\252\\363)-28(c)-1(i)1(e)-1(n)1(ne)-334(kr)1(am)27(y)84(,)-333(dzie)-1(w)28(cz)-1(yn)1(a)-334(zw)28(olni\\252a,)-333(p)1(rz)-1(y)1(s)-1(ta)28(w)28(a\\252a)-334(i)-333(a\\273)-334(j)1(e)-1(j)-333(o)-27(c)-1(zy)]TJ 27.879 -13.549 Td[(T)83(o)-303(c)-1(i)-303(\\261liczno\\261)-1(ci,)-303(m\\363)-56(j)-302(Je)-1(zus)-303(k)28(o)-28(c)27(h)1(an)28(y!)-303({)-303(s)-1(ze)-1(p)1(ta\\252a)-303(przysta)-56(j)1(\\241c)-304(pr)1(z)-1(ed)-303(ws)-1(t\\241\\273k)56(a-)]TJ -27.879 -13.549 Td[(mi,)-333(kt\\363re)-333(u)28(wie)-1(sz)-1(on)1(e)-334(w)-333(g\\363rz)-1(e,)-333(k)28(o\\252ysa\\252)-1(y)-333(si\\246)-334(n)1(a)-334(wietrze)-334(n)1(ib)28(y)-333(t\\246c)-1(za)-334(p)1(al\\241ca.)]TJ 27.879 -13.55 Td[({)-351(Kt\\363ra)-351(ci)-351(s)-1(i)1(\\246)-352(widzi,)-351(Jagu)1(\\261)-1(,)-351(to)-351(se)-352(wybi)1(e)-1(r)1(z)-1(..)1(.)-351({)-352(r)1(z)-1(ek\\252)-351(p)-28(o)-351(n)1(am)27(y\\261le)-352(p)1(rze)-1(zwy-)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273a)-56(j)1(\\241c)-334(sk)55(\\241)-28(p)1(s)-1(t)28(w)28(o.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(ta)-333(\\273\\363\\252ta)-334(w)-333(kwiat)28(y)83(,)-333(z)-334(r)1(ub)1(la)-333(k)28(os)-1(ztuj)1(e)-334(ab)-28(o)-333(i)-333(dzies)-1(i)1(\\246)-1(\\242)-334(z\\252ot)28(yc)27(h)1(!)]TJ 0 -13.549 Td[({)-333(Nie)-334(t)28(w)28(o)-56(ja)-333(w)-333(t)27(y)1(m)-334(g\\252o)28(w)27(a,)-333(w)28(e)-1(\\271)-334(i)1(no...)]TJ 0 -13.549 Td[(Ale)-336(Jagu\\261)-336(p)1(rz)-1(ez)-336(s)-1(i)1(\\252)-1(\\246)-336(i)-336(z)-336(\\273alem)-337(o)-27(derw)27(a\\252a)-336(r)1(\\246)-1(ce)-336(o)-28(d)-336(wst\\241\\273)-1(k)1(i)-336(i)-336(p)-27(osz)-1(\\252a)-336(d)1(ale)-1(j)-335(do)]TJ -27.879 -13.55 Td[(dr)1(ugiego)-333(kram)28(u,)-333(Boryn)1(a)-334(in)1(o)-333(p)-28(ozos)-1(ta\\252)-333(na)-333(c)27(h)29(w)-1(i)1(l\\246)-1(.)]TJ 27.879 -13.549 Td[(A)-333(w)-334(t)28(ym)-333(z)-1(n)1(o)27(wu)-333(c)27(h)29(ustki)-333(b)28(y\\252y)-333(i)-333(mate)-1(r)1(ie)-334(n)1(a)-334(stanik)1(i)-333(i)-334(k)56(af)1(tan)28(y)84(.)]TJ 0 -13.549 Td[({)-435(Jezus)-435(m\\363)-56(j,)-434(jak)1(ie)-435(\\261)-1(l)1(ic)-1(zno\\261c)-1(i)1(,)-435(Jez)-1(u)1(s)-1(!)-434({)-435(sz)-1(ept)1(a\\252)-1(a)-434(o)-28(cz)-1(aro)28(w)28(ana)-434(i)-435(r)1(a)-1(z)-435(w)-434(raz)]TJ -27.879 -13.549 Td[(zan)28(ur)1(z)-1(a\\252a)-278(r)1(\\246)-1(ce)-278(dr)1(\\273)-1(\\241ce)-278(w)-278(zie)-1(l)1(one)-278(at\\252asy)83(,)-277(to)-277(w)-278(c)-1(ze)-1(r)1(w)27(on)1(e)-278(aksam)-1(it)28(y)-277(i)-277(a\\273)-278(s)-1(i)1(\\246)-278(jej)-277(\\242)-1(mi\\252o)]TJ 0 -13.549 Td[(w)-347(o)-28(c)-1(zac)27(h)-346(i)-347(s)-1(erce)-348(dy)1(gota\\252o)-348(z)-347(rozk)28(os)-1(zy)83(.)-346(A)-348(te)-347(c)27(h)28(u)1(s)-1(t)1(ki)-347(na)-347(g\\252o)28(w)27(\\246!)-347(P)28(\\241so)27(w)28(e)-348(j)1(e)-1(d)1(w)27(ab)1(ne)]TJ 0 -13.549 Td[(z)-339(zie)-1(l)1(on)28(ymi)-339(k)1(w)-1(i)1(atam)-1(i)-338(pr)1(z)-1(y)-338(obr)1(\\246)-1(b)1(ku;)-338(z\\252)-1(o)-27(c)-1(iste)-339(ca\\252e)-339(kiej)-339(t)1(a)-339(\\261w)-1(i)1(\\246)-1(ta)-338(m)-1(on)1(s)-1(tr)1(ancja;)-338(a)]TJ 0 -13.55 Td[(mo)-28(dr)1(e)-295(j)1(ak)28(o)-294(to)-294(nieb)-27(o)-294(p)-28(o)-294(d)1(e)-1(sz)-1(czu;)-294(a)-294(b)1(ia\\252e)-1(;)-293(a)-294(ju\\273)-294(n)1(a)-56(j\\261licz)-1(n)1(iejsz)-1(e)-294(te)-295(mieni)1(\\241c)-1(e,)-294(c)-1(o)-294(si\\246)]TJ 0 -13.549 Td[(l\\261kni)1(\\252y)-365(kiej)-365(w)28(o)-28(da)-365(p)-27(o)-28(d)-365(zac)27(h)1(o)-28(dz\\241cym)-366(s\\252o\\253ce)-1(m,)-365(a)-365(lekkie,)-365(ki)1(e)-1(b)28(y)-364(z)-366(pa)-55(j\\246c)-1(zyn)28(y)1(!)-365(Nie,)]TJ 0 -13.549 Td[(ni)1(e)-442(\\261)-1(cierpi)1(a\\252a)-442(i)-441(j)1(\\246)-1(\\252a)-441(przymierz)-1(a\\242)-441(na)-441(g\\252o)27(w)28(\\246)-442(a)-441(pr)1(z)-1(egl\\241da\\242)-441(s)-1(i\\246)-442(w)-441(lu)1(s)-1(terku)1(,)-441(kt\\363re)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(trzym)27(yw)28(a\\252a)-334(\\233y)1(d\\363)28(wk)55(a.)]TJ 27.879 -13.549 Td[(\\221l)1(ic)-1(zni)1(e)-435(jej)-434(b)28(y\\252o,)-434(j)1(ak)28(ob)28(y)-434(z)-1(or)1(z)-1(e)-435(n)1(am)-1(ota\\252a)-434(na)-434(sw)27(oic)28(h)-434(ln)1(ian)28(yc)27(h)-433(w)-1(\\252osac)27(h)1(;)-435(a)]TJ -27.879 -13.55 Td[(one)-441(mo)-28(d)1(re)-441(o)-28(c)-1(zy)-440(tak)-441(rozgorza\\252y)-441(z)-441(rad)1(o\\261)-1(ci,)-440(a\\273)-442(\\014)1(o\\252k)28(o)27(wy)-440(c)-1(i)1(e)-1(\\253)-440(pad)1(a\\252)-441(o)-28(d)-440(nic)28(h)-441(n)1(a)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-450(p)-27(okra\\261nia\\252\\241;)-449(u\\261mie)-1(c)28(ha\\252a)-449(s)-1(i\\246)-449(do)-449(s)-1(iebi)1(e)-1(,)-449(a\\273)-450(lu)1(dzie)-450(p)-27(ogl\\241dal)1(i)-450(n)1(a)-450(n)1(i\\241,)-449(tak)56(a)]TJ\nET\nendstream\nendobj\n242 0 obj <<\n/Type /Page\n/Contents 243 0 R\n/Resources 241 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n241 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n246 0 obj <<\n/Length 8122      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(72)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(b)28(y\\252a)-333(ur)1(o)-28(dn)1(a)-333(i)-334(t)1(ak)55(a)-333(m\\252)-1(o)-27(do\\261\\242)-334(i)-333(z)-1(d)1(ro)28(wie)-334(b)1(i\\252o)-334(o)-27(d)-333(niej.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ic\\363)28(w)-1(n)1(a)-333(jak)56(a)-334(p)1(rze)-1(b)1(rana)-333(cz)-1(y)-333(co?)-334({)-333(s)-1(ze)-1(p)1(tali.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(gl\\241da\\252a)-326(s)-1(i)1(\\246)-327(s)-1(ob)1(ie)-327(d)1(\\252ugo)-326(i)-326(z)-327(ci\\246)-1(\\273kim)-326(w)27(es)-1(tc)28(hn)1(ie)-1(n)1(iem)-327(zdj\\246\\252a)-326(c)27(h)28(u)1(s)-1(tk)28(\\246,)-326(ale)]TJ -27.879 -13.549 Td[(wz)-1(i)1(\\246)-1(\\252a)-336(si\\246)-337(tar)1(go)27(w)28(a\\242,)-336(b)-28(o)-336(c)28(ho)-28(\\242)-336(kup)1(i\\242)-336(nie)-336(m)-1(i)1(a\\252a,)-336(a)-336(ino)-336(tak)-335(s)-1(ob)1(ie)-1(,)-335(\\273)-1(eb)28(y)-336(o)-28(cz)-1(y)-335(d\\252u\\273e)-1(j)]TJ 0 -13.549 Td[(nacies)-1(zy\\242.)]TJ 27.879 -13.55 Td[(Ost)28(yg\\252a)-358(wnetki,)-358(b)-27(o)-358(ku)1(p)-28(co)28(w)27(a)-358(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-358(p)1(i\\246)-1(\\242)-358(ru)1(bli)1(,)-358(\\273)-1(e)-358(i)-358(sam)-359(Bory)1(na)-358(j)1(\\241\\252)]TJ -27.879 -13.549 Td[(j\\241)-333(zaraz)-334(o)-28(d)1(w)27(o)-27(dzi\\242)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(li)-485(j)1(e)-1(sz)-1(cz)-1(e)-486(p)1(rze)-1(d)-485(p)1(ac)-1(i)1(ork)56(am)-1(i)-485({)-485(a)-486(b)28(y)1(\\252)-1(o)-485(ic)28(h)-485(tam)-486(niema\\252o,)-486(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(kto)-339(ca\\252y)-339(kram)-339(p)-27(os)-1(u)1(\\252)-339(t)27(y)1(m)-1(i)-338(k)55(am)28(usz)-1(cz)-1(k)56(ami)-339(dr)1(ogimi,)-339(\\273e)-340(si\\246)-340(l)1(\\261)-1(n)1(i\\252y)-339(a)-339(p)-27(o\\252)-1(y)1(s)-1(k)56(a\\252y)-339(in)1(o,)]TJ 0 -13.549 Td[(a\\273e)-447(o)-27(c)-1(z\\363)27(w)-445(o)-28(derw)28(a\\242)-447(b)29(y\\252o)-446(tru)1(dn)1(o:)-446(b)1(urszt)27(y)1(n)28(y)-446(\\273\\363\\252te)-1(,)-445(jak)28(ob)29(y)-446(z)-446(\\273)-1(y)1(w)-1(i)1(c)-1(y)-445(pac)27(h)1(n\\241ce)-1(j)]TJ 0 -13.549 Td[(uczynion)1(e)-1(;)-334(k)28(oral)1(e)-1(,)-334(kieb)28(y)-335(z)-335(t)28(yc)28(h)-334(krop)-27(e)-1(l)-334(krwi)-334(nan)1(iz)-1(an)1(e)-1(,)-334(a)-335(p)-27(er\\252y)-335(b)1(ia\\252e)-1(,)-334(wielkie)-335(j)1(ak)]TJ 0 -13.55 Td[(orze)-1(c)28(h)28(y)-333(lask)28(o)27(w)28(e,)-334(a)-333(dr)1(ugie)-333(z)-1(e)-334(srebr)1(a)-334(i)-333(z\\252ota...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(ierza\\252a)-359(Jagu\\261)-359(ni)1(e)-1(jedn)1(e)-360(i)-358(przebiera\\252a)-359(mi\\246)-1(d)1(z)-1(y)-358(nimi,)-359(a.)-358(ju\\273)-359(si\\246)-360(j)1(e)-1(j)-358(wi-)]TJ -27.879 -13.549 Td[(dzia\\252)-355(na)-55(j\\261licz)-1(n)1(iejsz)-1(ym)-355(s)-1(zn)28(ur)-354(k)28(orali,)-355(ob)29(w)-1(i)1(n\\246\\252)-1(a)-355(n)1(im)-356(b)1(ia\\252\\241)-355(s)-1(zyj\\246)-355(w)27(e)-355(c)-1(zte)-1(r)1(y)-355(rz\\246)-1(d)1(y)-355(i)]TJ 0 -13.549 Td[(zw)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-334(si\\246)-334(d)1(o)-334(starego)]TJ 27.879 -13.549 Td[({)-333(Uw)27(a\\273ac)-1(i)1(e)-1(,)-333(co?)]TJ 0 -13.55 Td[({)-346(Pi\\246kn)1(ie)-347(c)-1(i)1(,)-346(Jagu\\261!)-346(Mni)1(e)-347(ta)-347(n)1(ie)-347(d)1(z)-1(i)1(w)27(ota)-346(k)28(orale,)-346(b)-28(o)-346(i)-346(ano)-346(le\\273)-1(y)-346(w)28(e)-347(s)-1(k)1(rzyni)]TJ -27.879 -13.549 Td[(co\\261)-348(z)-348(os)-1(iem)-348(bi)1(c)-1(z\\363)28(w)-348(p)-28(o)-347(ni)1(e)-1(b)-27(os)-1(zc)-1(e,)-347(a)-348(wielkic)28(h)-348(j)1(ak)-347(dobr)1(y)-348(gr)1(o)-28(c)27(h)-347(p)-27(oln)28(y)1(!...)-347({)-348(r)1(z)-1(ek\\252)-348(z)]TJ 0 -13.549 Td[(rozm)27(y)1(s)-1(\\252em)-1(,)-333(o)-28(d)-333(n)1(iec)27(hce)-1(n)1(ia)-333(nib)29(y)83(.)]TJ 27.879 -13.549 Td[({)-385(C)-1(o)-385(m)-1(i)-385(ta)-385(z)-386(tego,)-386(ki)1(e)-1(j)-385(n)1(ie)-386(mo)-56(je!)-385({)-386(r)1(z)-1(u)1(c)-1(i\\252a)-385(os)-1(tr)1(o)-386(p)1(ac)-1(ior)1(ki)-385(i)-386(spi)1(e)-1(sz)-1(n)1(ie)-386(ju)1(\\273)]TJ -27.879 -13.549 Td[(sz)-1(\\252a,)-333(z)-1(ac)28(hm)28(urzona)-333(i)-333(s)-1(m)28(utn)1(a.)]TJ 27.879 -13.55 Td[({)-333(Jagu\\261,)-333(a)-334(to)-333(p)1(rz)-1(y)1(s)-1(i\\241d)1(\\271)-1(m)28(y)-333(s)-1(e)-334(\\271dziebk)28(o.)]TJ 0 -13.549 Td[({)-333(Ale)-1(,)-333(d)1(o)-334(matki)-333(mi)-333(c)-1(zas)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(nie)-334(o)-27(dj)1(e)-1(dzie)-334(cie.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iedl)1(i)-334(n)1(a)-333(jakim\\261)-334(d)1(ys)-1(zlu)-333(wysta)-56(j)1(\\241c)-1(y)1(m)]TJ 0 -13.549 Td[({)-333(Sieln)28(y)-333(j)1(armarek)-334({)-333(rze)-1(k)1(\\252)-334(p)-27(o)-333(c)27(h)28(wili)-333(Boryn)1(a)-333(roz)-1(gl)1(\\241da)-56(j)1(\\241c)-334(si\\246)-334(p)-27(o)-334(r)1(ynk)1(u)]TJ 0 -13.55 Td[(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-246(nie)-246(m)-1(a\\252y)-246({)-246(p)-27(ogl\\241da\\252a)-246(j)1(e)-1(sz)-1(cz)-1(e)-246(ku)-246(kr)1(am)-1(om)-246(z)-247(\\273a\\252)-1(o\\261ci\\241)-246(i)-246(c)-1(z\\246)-1(sto)-246(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(w)28(e)-1(stc)27(h)1(n\\246\\252)-1(a)-333(ale)-333(ju\\273)-333(j\\241)-333(o)-28(dc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-333(sm)27(u)1(tno\\261\\242)-1(,)-333(b)-27(o)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-317(T)28(ym)-317(d)1(z)-1(i)1(e)-1(d)1(z)-1(icom)-317(to)-317(d)1(obr)1(z)-1(e...)-316(Wid)1(z)-1(i)1(a\\252)-1(am)-317(d)1(z)-1(i)1(e)-1(d)1(z)-1(iczk)28(\\246)-317(z)-317(W)83(oli)-316(z)-317(pan)1(ienk)56(a-)]TJ -27.879 -13.549 Td[(mi,)-333(to)-333(t)27(y)1(la)-333(s)-1(ob)1(ie)-334(ku)1(p)-28(o)28(w)28(ali)-333(,\\273)-1(e)-333(a\\273)-1(e)-334(l)1(ok)55(a)-55(j)-333(za)-334(n)1(imi)-334(n)1(os)-1(i)1(\\252)-1(!)-333(I)-333(tak)-333(c)-1(o)-333(j)1(armark!)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(c)-1(i\\246giem)-334(j)1(arma)-1(r)1(c)-1(zy)-333({)-334(t)1(e)-1(m)28(u)-333(d\\252ugo)-333(n)1(ie)-334(starcz)-1(y)84(.)]TJ 0 -13.55 Td[({)-333(Im)-334(tam)-334(wystarcz)-1(y)84(.)]TJ 0 -13.549 Td[({)-347(P)28(\\363ki)-347(\\233yd)1(y)-348(d)1(a)-56(j)1(\\241)-348({)-347(rzuci\\252)-347(z)-1(\\252o\\261liwie,)-348(a\\273)-347(Jagu\\261)-348(ob)-27(ejrza\\252a)-348(si\\246)-348(n)1(a)-347(niego)-348(i)-347(n)1(ie)]TJ -27.879 -13.549 Td[(wiedzia\\252a,)-333(c)-1(o)-333(rze)-1(c)-334(n)1(a)-334(t)1(o,)-334(a)-333(stary)84(,)-333(nie)-334(p)1(atrz\\241c)-334(na)-333(n)1(i\\241,)-333(z)-1(agad)1(n\\241\\252)-333(c)-1(ic)28(ho:)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(li)-333(to)-334(o)-27(d)-333(Mic)28(ha\\252a)-333(W)83(o)-55(jtk)28(o)28(w)27(ego)-333(z)-334(w)27(\\363)-27(dk)56(\\241)-333(u)-333(c)-1(iebi)1(e)-1(,)-333(Jagu)1(\\261)-1(,)-333(co?)-1(.)1(..)]TJ 0 -13.549 Td[({)-285(A)-285(b)29(yli)-285(i)-284(p)-28(osz)-1(l)1(i!..)1(.)-285(Niez)-1(gu)1(\\252)-1(a)-284(jeden,)-285(j)1(e)-1(m)28(u)-285(te\\273)-285(s)-1(w)28(at\\363)28(w)-1(,)-284(p)-28(osy\\252a\\242...)-285({)-284(z)-1(a\\261m)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-1(.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-367(p)-28(o)28(wsta\\252)-367(pr)1(\\246)-1(d)1(k)27(o,)-366(wyj\\241\\252)-367(z)-367(zanad)1(rz)-1(a)-366(c)27(h)28(u)1(s)-1(tk)28(\\246)-367(i)-367(co\\261)-367(jes)-1(zc)-1(ze)-367(w)-368(p)1(api)1(e)-1(r)]TJ -27.879 -13.549 Td[(o)28(wini\\246te.)]TJ 27.879 -13.549 Td[({)-333(P)28(otrzyma)-56(j)-333(n)1(o)-334(t)1(o,)-334(Jagu)1(\\261)-1(,)-333(b)-27(o)-333(m)-1(n)1(ie)-334(tr)1(z)-1(eba)-333(z)-1(a)-55(jr)1(z)-1(e\\242)-334(do)-333(An)28(tk)56(a.)]TJ 0 -13.549 Td[({)-333(Je)-1(st)-333(to)-334(n)1(a)-333(jarmarku)1(?)-334({)-333(o)-28(cz)-1(y)-333(j)1(e)-1(j)-333(p)-27(o)-56(j)1(a\\261)-1(n)1(ia\\252y)84(.)]TJ 0 -13.549 Td[({)-446(Osta\\252)-447(p)1(rzy)-446(z)-1(b)-27(o\\273u,)-446(tam)-446(ano)-446(w)-446(ulicy)84(.)-446(W)83(e\\271)-447(sobie,)-446(Jagu\\261,)-446(to)-446(la)-446(cie)-1(b)1(ie)-447({)]TJ -27.879 -13.55 Td[(do)-27(da\\252)-333(w)-1(i)1(dz\\241c)-1(,)-333(\\273e)-334(Jagna)-333(zdumion)29(ym)-1(i)-333(o)-27(c)-1(zam)-1(i)-333(w)28(o)-28(dzi\\252a)-333(p)-28(o)-333(c)27(h)29(ustc)-1(e.)]TJ 27.879 -13.549 Td[({)-445(Da)-56(j)1(e)-1(cie?)-1(.)1(..)-445(Napr)1(a)27(wd)1(\\246)-446(la)-445(m)-1(n)1(ie?)-446(Jez)-1(u)1(s)-1(,)-445(j)1(akie)-446(\\261liczno\\261c)-1(i!)-445({)-445(wykr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ\nET\nendstream\nendobj\n245 0 obj <<\n/Type /Page\n/Contents 246 0 R\n/Resources 244 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 231 0 R\n>> endobj\n244 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n249 0 obj <<\n/Length 8336      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(73)]TJ -363.686 -35.866 Td[(rozwija)-55(j\\241c)-405(wst\\241\\273)-1(k)28(\\246)-405(t)1(\\246)-405(s)-1(am\\241,)-404(c)-1(o)-404(s)-1(i)1(\\246)-405(jej)-404(tak)-404(p)-28(o)-27(doba\\252a.)-404({)-404(Hale)-1(,)-404(in)1(o)-404(tak)-405(p)1(rze)-1(kp)1(i-)]TJ 0 -13.549 Td[(w)28(ac)-1(ie)-330(se)-331(ze)-330(m)-1(n)1(ie)-1(,)-329(z)-1(a)-329(c)-1(\\363\\273)-330(b)28(y)-330(mni)1(e)-1(?...)-329(Kosz)-1(tu)1(je)-330(t)28(yla)-330(p)1(ieni\\246dzy)83(.)1(..)-330(a)-330(c)28(h)28(ustk)56(a)-330(c)-1(zysto)]TJ 0 -13.549 Td[(jedw)28(abn)1(a....)]TJ 27.879 -13.549 Td[({)-480(W)84(e\\271)-1(,)-479(Jagu\\261,)-479(w)27(e\\271)-1(,)-479(la)-479(c)-1(iebi)1(e)-480(kup)1(i\\252e)-1(m,)-479(a)-480(jak)-479(ta)-479(kt\\363ren)-479(par)1(ob)-28(ek)-480(b)-27(\\246dzie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(epi)1(ja\\252)-333(do)-333(c)-1(iebi)1(e)-1(,)-333(ni)1(e)-334(o)-28(d)1(pij)1(a)-56(j)1(,)-334(n)1(a)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(s)-1(p)1(ie)-1(szy\\242)-1(.)1(..)-333(m)-1(n)1(ie)-334(j)1(u\\273)-334(cz)-1(as)-333(i\\261)-1(\\242.)]TJ 27.879 -13.55 Td[({)-333(Mo)-56(j)1(e)-334(to,)-333(p)1(ra)28(w)-1(d)1(\\246)-334(m\\363)27(wicie?)]TJ 0 -13.549 Td[({)-333(Za\\261)-1(b)28(y)1(m)-334(tam)-334(o)-28(cygan)1(ia\\252)-334(ci\\246!)]TJ 0 -13.549 Td[({)-333(I)-334(u)28(wierzy\\242)-334(tr)1(ud)1(no.)-333({)-333(I)-334(rozk\\252ad)1(a\\252)-1(a)-333(ci\\241)-28(gle)-333(c)27(h)28(u)1(s)-1(tk)28(\\246)-334(to)-333(ws)-1(t)1(\\241\\273)-1(k)28(\\246.)]TJ 0 -13.549 Td[({)-333(Os)-1(t)1(a)-56(j)-333(z)-334(Bogiem)-1(,)-333(Jagu)1(\\261)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(w)28(am)-334(z)-1(ap)1(\\252a\\242)-1(,)-333(Macieju)1(.)]TJ 0 -13.549 Td[(Boryn)1(a)-488(o)-27(dsz)-1(ed\\252,)-487(a)-487(Jagna)-487(raz)-487(jes)-1(zc)-1(ze)-488(r)1(oz)-1(win)1(\\246)-1(\\252a)-487(i)-487(pr)1(z)-1(epatry)1(w)27(a\\252a,)-487(n)1(araz)]TJ -27.879 -13.55 Td[(za)27(win)1(\\246)-1(\\252a)-318(ws)-1(zystk)28(o)-318(raz)-1(em)-319(i)-318(c)28(hcia\\252a)-318(bie\\273)-1(y)1(\\242)-319(za)-319(n)1(im)-318(i)-318(o)-28(dd)1(a\\242)-1(..)1(.)-318(b)-28(o)-318(j)1(ak\\273)-1(e)-318(jej)-318(br)1(a\\242)-319(o)-28(d)]TJ 0 -13.549 Td[(ob)-27(c)-1(ego,)-333(nie)-334(k)1(rew)-1(n)29(y)-334(\\273aden)-333(n)1(i)-334(p)-27(o)-28(ciotek)-333(na)28(w)27(et...)-333(al)1(e)-334(ju)1(\\273)-334(s)-1(t)1(are)-1(go)-333(n)1(ie)-334(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(P)28(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252a)-400(w)28(oln)1(o)-400(s)-1(zuk)56(a\\242)-400(m)-1(atk)1(i)-400(i)-400(z)-400(lu)1(b)-28(o\\261c)-1(i)1(\\241,)-400(ostro\\273)-1(n)1(ie)-400(dot)28(yk)56(a\\252a)-400(c)27(h)29(ustki.)]TJ -27.879 -13.549 Td[(ws)-1(ad)1(z)-1(on)1(e)-1(j)-333(z)-1(a)-334(p)1(az)-1(u)1(c)27(h\\246.)-334(T)83(ak)56(a)-334(b)28(y)1(\\252)-1(a)-334(u)1(rad)1(o)27(w)28(ana,)-333(\\273)-1(e)-334(ino)-334(j)1(e)-1(j)-333(bia\\252e)-334(z)-1(\\246b)28(y)-334(p)-27(o\\252yskiw)28(a\\252y)]TJ 0 -13.549 Td[(w)-334(u)1(\\261)-1(miec)27(h)28(u)-333(a)-333(t)28(w)28(arz)-334(gorza\\252a)-333(rumie\\253ce)-1(m.)]TJ 27.879 -13.55 Td[({)-289(Jagu)1(s)-1(i)1(a!...)-288(Do)-289(ws)-1(p)-27(omo\\273)-1(enia.)1(..)-289(b)1(ie)-1(d)1(na)-288(s)-1(ierota.)1(..)-289(lu)1(dzie)-289(k)28(o)-28(c)27(h)1(ane...)-288(krze)-1(\\261ci-)]TJ -27.879 -13.549 Td[(jan)29(y)-333(pra)28(wdziw)28(e)-1(..)1(.)-334(Zd)1(ro)28(w)27(a\\261)-333(Mari)1(a)-334(za)-334(t)1(e)-334(du)1(s)-1(zyc)-1(zki.)1(..)-333(Jagusia!.)1(..)]TJ 27.879 -13.549 Td[(Jagn)1(a)-456(opr)1(z)-1(y)1(tom)-1(n)1(ia\\252a)-456(i)-455(j)1(\\246)-1(\\252a)-455(o)-28(c)-1(zami)-456(sz)-1(u)1(k)56(a\\242)-1(,)-455(kto)-455(j\\241)-455(w)27(o\\252a\\252)-455(i)-456(sk)56(\\241d,)-455(i)-455(w)-1(n)1(e)-1(t)]TJ -27.879 -13.549 Td[(do)-55(jr)1(z)-1(a\\252a)-356(Agat\\246)-356(siedz\\241c)-1(\\241)-356(p)-27(o)-28(d)-355(m)28(urem)-356(klasz)-1(tor)1(u)-356(n)1(a)-356(gar)1(\\261)-1(ci)-356(s\\252om)27(y)84(,)-356(\\273e)-357(t)1(o)-356(b\\252o)-28(c)28(k)28(o)-356(w)]TJ 0 -13.549 Td[(t)28(ym)-334(miejsc)-1(u)-333(b)29(y\\252o)-334(p)-27(o)-333(k)28(os)-1(tk)1(i.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a,)-323(\\273e)-1(b)29(y)-323(jaki)1(e)-1(go)-323(grosza)-323(p)-28(osz)-1(u)1(k)55(a\\242,)-323(a)-323(Agata)-323(u)1(rado)28(w)28(ana)-323(z)-323(obacz)-1(e-)]TJ -27.879 -13.549 Td[(ni)1(a)-334(sw)27(o)-55(jacz)-1(k)1(i,)-333(n)28(u\\273)-333(w)-1(y)1(p)28(yt)28(yw)28(a\\242)-334(s)-1(i)1(\\246)-1(,)-333(co)-334(tam)-333(w)-334(Lip)-27(cac)27(h)-333(si\\246)-334(dzieje...)]TJ 27.879 -13.549 Td[({)-333(Wyk)28(op)1(ali\\261ta)-334(j)1(u\\273?)]TJ 0 -13.549 Td[({)-333(Do)-334(cna!)]TJ 0 -13.549 Td[({)-333(Nie)-334(wiec)-1(ie,)-333(c)-1(o)-333(u)-333(K\\252\\246b)-28(\\363)28(w?)]TJ 0 -13.55 Td[({)-333(Wygn)1(ali)-333(w)27(as)-334(w)-333(t)28(yli)-333(\\261w)-1(i)1(at,)-333(na)-333(\\273)-1(ebr)1(y)83(,)-333(a)-333(c)-1(iek)56(a)28(w)-1(i\\261cie)-334(ic)28(h?)]TJ 0 -13.549 Td[({)-420(Wygn)1(ali,)-420(n)1(ie)-421(wygn)1(ali,)-420(samam)-421(p)-27(os)-1(z\\252a,)-420(b)-27(o)-421(t)1(rz)-1(a)-420(b)28(y)1(\\252o...)-420(j)1(ak\\273)-1(e,)-420(dar)1(m)-1(o)-420(to)]TJ -27.879 -13.549 Td[(mi)-490(d)1(adz\\241)-490(t)1(e)-1(n)-489(k)56(\\241t)-489(ab)-28(o)-489(je\\261)-1(\\242,)-489(kiej)-489(s)-1(ie)-489(u)-489(nic)28(h)-489(nie)-490(p)1(rze)-1(lew)28(a...)-489(A)-489(c)-1(iek)56(a)27(w)28(am,)-490(b)-27(o)-28(\\242)]TJ 0 -13.549 Td[(kr)1(e)-1(wni)1(aki...)]TJ 27.879 -13.549 Td[({)-333(A)-334(co)-333(z)-334(w)27(ami?)]TJ 0 -13.55 Td[({)-407(A)-406(c)-1(o,)-406(c)27(h)1(o)-28(dz\\246)-407(o)-28(d)-406(k)28(o\\261)-1(cio\\252a)-407(d)1(o)-407(k)28(o\\261)-1(cio\\252a,)-406(o)-28(d)-406(w)-1(si)-407(d)1(o)-407(wsi)-407(,o)-27(d)-407(j)1(armarku)-406(na)]TJ -27.879 -13.549 Td[(jar)1(m)-1(ar)1(e)-1(k)-451(i)-452(t\\241)-452(m)-1(o)-27(dli)1(t)27(w)28(\\241)-452(up)1(rasz)-1(am)-452(se)-453(u)-451(dobr)1(yc)27(h)-451(lud)1(z)-1(i)-451(gdzie)-453(k)56(\\241t,)-452(gd)1(z)-1(i)1(e)-453(w)28(arzy)]TJ 0 -13.549 Td[(\\252y\\273k)28(\\246)-1(,)-362(gdzie)-364(gr)1(os)-1(ik)-362(jaki)1(!)-363(Dob)1(re)-363(s)-1(\\241)-363(lu)1(dzie,)-363(ub)-27(ogiem)27(u)-362(ni)1(e)-364(d)1(adz\\241)-363(umrze)-1(\\242)-363(z)-363(g\\252o)-28(du)1(,)]TJ 0 -13.549 Td[(ni)1(e)-1(..)1(.)-333(Nie)-334(wie)-1(cie,)-333(z)-1(d)1(ro)28(wi)-334(t)1(am)-334(ws)-1(zysc)-1(y)-333(u)-333(K\\252\\246b)-28(\\363)28(w?)-334({)-333(zap)28(yta\\252a)-333(nie\\261)-1(mia\\252o.)]TJ 27.879 -13.549 Td[({)-333(Zdro)28(wi,)-333(a)-333(w)-1(y)-333(n)1(ie)-334(c)27(h)1(oru)1(jec)-1(ie?)]TJ 0 -13.549 Td[({)-366(I...)-365(gdzie)-367(za\\261)-1(,)-365(w)-367(p)1(iers)-1(i)1(ac)27(h)-366(m\\246)-366(c)-1(i\\246giem)-367(p)-27(ob)-27(oliw)28(a,)-366(a)-366(jak)-365(s)-1(i\\246)-366(nazi\\246bi\\246,)-366(to)-366(i)]TJ -27.879 -13.55 Td[(\\273yw)27(\\241)-274(krwi\\241)-274(pl)1(uj)1(\\246)-1(..)1(.)-275(Ni)1(e)-1(d)1(\\252)-1(u)1(go)-275(mi)-274(ju)1(\\273)-275(,n)1(ie)-1(d)1(\\252ugo..)1(.)-275(Ch)1(o)-28(\\242)-275(in)1(o)-275(d)1(o)-275(zwie)-1(sn)28(y)-274(do)-27(c)-1(i\\241)-27(gn\\241\\242,)]TJ 0 -13.549 Td[(wr\\363)-28(ci\\242)-329(d)1(o)-329(ws)-1(i)-328(i)-328(tam)-329(se)-329(mi\\246)-1(d)1(z)-1(y)-328(sw)27(o)-55(jem)-1(i)-328(zam)-1(r)1(z)-1(e\\242)-329({)-329(o)-328(to)-328(ino)-328(Je)-1(zusicz)-1(k)56(a)-328(prosz\\246)-1(,)-328(o)]TJ 0 -13.549 Td[(to)-378(j)1(e)-1(d)1(ynie...)-377({)-378(roz\\252)-1(o\\273y\\252a)-378(r)1(\\246)-1(ce)-1(,)-378(ok)1(r\\246c)-1(on)1(e)-379(r\\363\\273a\\253cami,)-378(wz)-1(n)1(ies)-1(\\252a)-378(zap\\252ak)56(an\\241)-378(t)28(w)28(arz)-378(i)]TJ 0 -13.549 Td[(j\\246\\252a)-333(s)-1(i\\246)-333(m)-1(o)-28(d)1(li\\242)-334(t)1(ak)-334(gor)1(\\241c)-1(o,)-333(a\\273)-334(\\252zy)-333(jej)-333(p)-27(o)-28(c)-1(iek\\252y)-333(z)-334(zac)-1(ze)-1(r)1(wie)-1(n)1(ion)28(yc)28(h)-333(o)-28(cz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(Zm)-1(\\363)28(w)28(c)-1(ie)-333(pacie)-1(r)1(z)-334(z)-1(a)-333(tatu)1(la)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(Jagna)-333(wt)28(yk)56(a)-56(j)1(\\241c)-334(jej)-333(pi)1(e)-1(n)1(i\\241dz.)]TJ 0 -13.55 Td[({)-381(T)83(o)-381(b)-27(\\246dzie)-381(z)-1(a)-381(t)28(yc)28(h)-381(w)-381(cz)-1(y)1(\\261)-1(cu)-381(osta)-56(j)1(\\241c)-1(y)1(c)27(h,)-380(a)-381(z)-1(a)-380(s)-1(w)28(oic)27(h)-380(to)-381(ju)1(\\273)-381(ja)-381(i)-380(tak)-381(si\\246)]TJ -27.879 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-349(mo)-28(d)1(l\\246)-349(i)-348(B)-1(oga)-348(pr)1(os)-1(z\\246)-1(,)-348(za)-349(\\273ywyc)27(h)-348(i)-348(u)1(m)-1(ar)1(\\252yc)27(h)1(,)-349(Jagu)1(\\261)-1(,)-348(a)-348(nie)-348(przysy\\252ali)-348(to)]TJ\nET\nendstream\nendobj\n248 0 obj <<\n/Type /Page\n/Contents 249 0 R\n/Resources 247 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n247 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n253 0 obj <<\n/Length 7713      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(74)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(z)-334(w)28(\\363)-28(dk)56(\\241?)]TJ 27.879 -13.549 Td[({)-333(Przyc)28(ho)-28(d)1(z)-1(il)1(i.)]TJ 0 -13.549 Td[({)-333(I)-334(\\273aden)-333(c)-1(i)-333(si\\246)-334(n)1(ie)-334(u)28(wid)1(z)-1(i)1(a\\252)-1(?..)1(..)]TJ 0 -13.549 Td[({)-389(\\233ad)1(e)-1(n)1(.)-389(Osta)-56(j)1(c)-1(ie)-389(z)-389(Bogie)-1(m,)-389(a)-388(na)-389(zwz)-1(ies)-1(n)1(\\246)-389(do)-389(n)1(as)-390(za)-56(j)1(rzyjcie...)-388({)-389(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzia\\252a)-333(pr)1(\\246)-1(d)1(k)28(o)-334(i)-333(p)-27(os)-1(z\\252a)-334(d)1(o)-334(matki)1(,)-333(kt\\363r\\241)-333(uj)1(rza\\252a)-334(z)-334(d)1(ala)-333(z)-334(organ)1(is)-1(t)1(am)-1(i.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-321(za\\261)-321(p)-27(o)28(wrac)-1(a\\252)-320(d)1(o)-321(An)28(t)1(k)55(a)-320(w)28(olno,)-320(r)1(az)-1(,)-320(\\273e)-321(ci\\273)-1(b)1(a)-320(b)28(y\\252a,)-320(a)-320(dru)1(gie,)-320(\\273)-1(e)-320(m)27(u)]TJ -27.879 -13.549 Td[(Jagu)1(\\261)-334(c)-1(i)1(\\246)-1(giem)-334(w)-333(m)27(y\\261li)-333(s)-1(t)1(a\\252)-1(a,)-333(al)1(e)-334(nim)-333(dosz)-1(ed\\252,)-333(sp)-28(otk)56(a\\252)-333(s)-1(i\\246)-333(z)-334(k)28(o)28(w)27(alem.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(w)-1(i)1(tali)-333(s)-1(i)1(\\246)-334(i)-333(s)-1(zli)-333(w)-334(p)-27(o)-28(d)1(le)-334(sie)-1(b)1(ie)-334(milcz)-1(\\241c.)]TJ 0 -13.549 Td[({)-333(Sk)28(o\\253)1(c)-1(zyc)-1(i)1(e)-334(to)-333(z)-1(e)-334(mn)1(\\241)-1(,)-333(h)1(\\246)-1(?)-333({)-334(zacz)-1(\\241\\252)-333(os)-1(tr)1(o)-334(k)28(o)28(w)28(al.)]TJ 0 -13.549 Td[({)-294(Nib)28(y)-294(z)-295(cz)-1(ym?)-295(M)1(og\\252e)-1(\\261)-295(mi)-294(to)-294(s)-1(amo)-295(i)-294(w)-294(Lip)-27(c)-1(ac)27(h)-293(p)-28(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)-294({)-295(Z\\252y)-294(ju)1(\\273)-295(b)28(y\\252.)]TJ 0 -13.549 Td[({)-333(Przec)-1(ie\\273)-334(j)1(u\\273)-334(cz)-1(tery)-333(r)1(o)-1(k)1(i)-333(c)-1(ze)-1(k)56(am.)]TJ 0 -13.55 Td[({)-367(P)1(rzybaczy\\252e)-1(\\261)-367(se)-367(dzis)-1(i)1(a)-56(j)1(!)-367(T)83(o)-366(s)-1(e)-367(j)1(e)-1(sz)-1(cz)-1(e)-367(p)-27(o)-28(cz)-1(ek)56(a)-56(j)-366(ze)-367(c)-1(zte)-1(r)1(dzie)-1(\\261ci,)-367(k)1(ie)-1(j)-366(za-)]TJ -27.879 -13.549 Td[(mr\\246.)]TJ 27.879 -13.549 Td[({)-333(Ju\\273)-334(i)-333(l)1(udzie)-334(mi)-333(redz\\241,)-333(\\273)-1(eb)28(y)-333(do)-333(s\\241du)-333(p)-27(o)-28(da\\242...)-333(al)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(d)1(a)-56(j.)-333(P)29(o)27(wiem)-334(ci,)-333(gdzie)-334(sk)56(argi)-333(pisz\\241,)-334(i)-333(n)1(a)-334(p)1(isarza)-334(d)1(am)-334(ru)1(bla.)1(..)]TJ 0 -13.549 Td[({)-333(Ale)-334(se)-334(m)27(y)1(\\261)-1(l\\246,)-333(\\273)-1(e)-333(p)-28(o)-333(dob)1(rem)27(u)-333(si\\246)-334(zgo)-28(dzim)28(y)83(..)1(.)-334({)-333(skr\\246c)-1(i)1(\\252)-334(c)27(h)29(ytrze)-1(.)]TJ 0 -13.55 Td[({)-333(Pra)28(wda,)-333(z)-333(kim)-334(n)1(ie)-334(w)28(o)-56(j)1(n\\241)-333({)-334(z)-333(t)27(y)1(m)-334(zgo)-28(d\\241.)]TJ 0 -13.549 Td[({)-333(Sami)-333(to)-334(miar)1(kuj)1(e)-1(cie)-334(n)1(ie)-1(zgorze)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Mni)1(e)-334(ta)-333(z)-334(tob\\241)-333(n)1(i)-334(zgo)-28(d)1(y)83(,)-333(ni)-333(w)28(o)-56(j)1(n)28(y)-333(ni)1(e)-334(p)-28(ot)1(rz)-1(eba.)]TJ 0 -13.549 Td[({)-333(Za)27(w\\273dy)-333(to)-333(pierwsz)-1(y)-333(\\273onie)-334(p)-27(o)28(wiadam,)-333(\\273)-1(e)-333(o)-28(c)-1(i)1(e)-1(c)-334(j)1(e)-1(st)-333(z)-1(a)-333(s)-1(p)1(ra)28(wiedliw)28(o\\261c)-1(i\\241.)]TJ 0 -13.549 Td[({)-315(Ka\\273den)-315(j)1(e)-1(st)-315(za)-315(s)-1(p)1(ra)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(ci\\241,)-315(k)28(om)28(u)-315(j)1(\\241)-315(w)-316(k)1(um)27(y)-314(pr)1(os)-1(i\\242)-315(p)-27(otrza)-315({)-315(m)-1(n)1(ie)]TJ -27.879 -13.55 Td[(ni)1(e)-405(p)-28(otr)1(z)-1(a.)-404(b)-27(om)-405(c)-1(i)-404(ni)1(c)-405(niewino)28(w)28(at)27(y)-404({)-404(p)-28(o)28(wiedzia\\252)-405(t)28(w)28(ardo,)-404(a\\273)-405(k)28(o)28(w)27(al)-404(zm)-1(i\\246k\\252,)-404(\\273)-1(e)]TJ 0 -13.549 Td[(to)-422(z)-423(tej)-422(s)-1(tr)1(on)28(y)-422(go)-423(n)1(ap)-28(o)-27(c)-1(z\\241\\242)-423(ni)1(e)-423(nap)-27(o)-28(cz)-1(n)1(ie)-1(,)-422(i)-422(j)1(akb)28(y)-422(ni)1(gdy)-422(ni)1(c)-1(,)-422(na)-55(jsp)-28(ok)28(o)-55(jn)1(iej)-422(i)]TJ 0 -13.549 Td[(pr)1(os)-1(z\\241c)-1(o)-333(rzek\\252:)]TJ 27.879 -13.549 Td[({)-333(Napi\\252b)28(y)1(m)-334(si\\246)-334(cz)-1(ego,)-333(p)-28(osta)28(w)-1(i)1(c)-1(ie?..)]TJ 0 -13.549 Td[({)-287(P)28(os)-1(ta)28(wie.)-287(Jak\\273)-1(e.)-287(na)-55(jlepsz)-1(y)-287(zi\\246\\242)-288(prosi,)-287(to)-287(c)27(h)1(o)-28(\\242)-1(b)29(y)-288(i)-287(ca\\252\\241)-288(kw)28(art\\246)-288({)-287(pr)1(z)-1(ekp)1(i-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-383(zdziebk)28(o)-382(w)28(c)27(ho)-27(dz\\241c)-383(do)-382(n)1(aro\\273nego)-382(s)-1(zynk)1(u;)-382(b)28(y)1(\\252)-383(j)1(u\\273)-382(tam)-383(i)-382(J)1(am)27(br)1(o\\273)-1(y)84(,)-382(ale)-382(nie)]TJ 0 -13.549 Td[(pi)1(\\252,)-334(siedzia\\252)-333(w)-334(k)56(\\241c)-1(ie)-333(m)-1(ar)1(k)28(otn)28(y)-333(jak)1(i\\261)-334(i)-333(s)-1(m)28(utn)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-333(gnatac)27(h)-332(m)-1(\\246)-334(\\252u)1(pie,)-333(to)-333(p)-28(ewnie)-334(n)1(a)-333(plu)1(c)27(h\\246)-333({)-334(wyr)1(z)-1(ek)56(a)-1(\\252.)]TJ 0 -13.549 Td[(Wyp)1(ili)-407(r)1(az)-408(i)-407(dr)1(ugi,)-407(ale)-407(w)-408(milcz)-1(eni)1(u,)-407(b)-27(o)-408(ob)1(a)-56(j)-407(d)1(o\\261)-1(\\242)-407(z)-1(\\252o\\261c)-1(i)-407(mieli)-407(do)-407(s)-1(i)1(\\246)-408(na)]TJ -27.879 -13.549 Td[(w)28(\\241tpiac)28(h.)]TJ 27.879 -13.55 Td[({)-385(K)1(ie)-1(j)-384(n)1(a)-385(p)-27(ogrz)-1(ebi)1(e)-385(pij)1(e)-1(ta!)-384({)-385(ozw)27(a\\252)-384(s)-1(i\\246)-385(Jam)28(br)1(o\\273)-1(y)84(,)-385(z\\252y)-385(j)1(u\\261c)-1(i,)-384(\\273e)-386(go)-384(to)-385(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(oprosili)1(,)-333(b)-28(o)-333(o)-28(d)-333(ran)1(a)-333(jakb)28(y)-333(n)1(ic)-334(w)-333(g\\246)-1(b)1(ie)-334(n)1(ie)-334(mia\\252.)]TJ 27.879 -13.549 Td[({)-336(Jak)1(\\273)-1(e)-336(gada\\242?)-336(Ocie)-1(c)-336(t)28(yl)1(a)-336(dzisia)-56(j)-335(s)-1(p)1(rze)-1(d)1(a)-56(j)1(e)-1(,)-335(to)-336(m)27(u)1(s)-1(z\\241)-336(u)28(w)28(a\\273)-1(a\\242,)-336(k)28(om)28(u)-335(pie-)]TJ -27.879 -13.549 Td[(ni)1(\\241dze)-334(na)-333(pr)1(o)-28(ce)-1(n)28(ta)-333(da\\242...)]TJ 27.879 -13.549 Td[({)-333(Macie)-1(j)1(u!)-333(M\\363)28(wi\\246)-334(w)28(am,)-334(M)1(ac)-1(i)1(e)-1(j)1(u,)-333(\\273)-1(e)-333(P)28(an)-333(Jez)-1(u)1(s)-1(..)]TJ 0 -13.549 Td[({)-352(Kom)28(u)-352(Maciej,)-352(to)-352(M)1(ac)-1(iej,)-351(a)-353(t)1(obie)-352(w)27(ar)1(a!)-352(Wid)1(z)-1(isz)-353(go,)-351(juc)28(h\\246.)-352(Za)-352(pan)-351(brat)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(nia)-333(z)-334(p)1(as)-1(tu)1(c)27(h\\241.)-333({)-333(Oze)-1(\\271li\\252)-333(s)-1(i)1(\\246)-334(s)-1(r)1(o)-28(dze)-1(.)]TJ 27.879 -13.549 Td[(A)-333(k)28(o)27(w)28(al,)-333(\\273e)-334(to)-333(ju)1(\\273)-334(p)-28(o)-333(dw)28(\\363)-28(c)28(h)-333(m)-1(o)-27(c)-1(n)28(y)1(c)27(h,)-333(n)1(abra\\252)-333(rez)-1(on)29(u)-333(i)-333(rz)-1(ek\\252)-333(c)-1(i)1(c)27(ho:)]TJ 0 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c,)-333(p)-28(o)28(wiedzc)-1(ie)-333(to)-334(s\\252o)28(w)27(o:)-333(dacie)-334(czy)-334(n)1(ie?)]TJ 0 -13.549 Td[({)-458(P)28(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(em:)-458(do)-458(grob)1(u)-458(z)-1(e)-458(s)-1(ob)1(\\241)-459(n)1(ie)-459(zabier\\246,)-458(a)-458(prz\\363)-28(d)1(z)-1(i)-458(n)1(i)-458(m)-1(orga)-458(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(opu)1(s)-1(zc)-1(z\\246)-1(.)-299(Na)-299(wycug)-299(do)-299(w)28(a)-56(j)1(u)-299(nie)-299(p)-27(\\363)-56(jd)1(\\246)-1(.)1(..)-299(jes)-1(zc)-1(ze)-300(mi)-299(mi\\252y)-299(ten)-299(rok)-299(ab)-27(o)-299(i)-299(dw)28(a)-300(n)1(a)]TJ 0 -13.55 Td[(\\261w)-1(i)1(e)-1(cie)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(sp\\252at\\246)-333(da)-55(jcie)-1(.)]TJ\nET\nendstream\nendobj\n252 0 obj <<\n/Type /Page\n/Contents 253 0 R\n/Resources 251 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n251 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n256 0 obj <<\n/Length 8043      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(75)]TJ -335.807 -35.866 Td[({)-333(Rz)-1(ek\\252e)-1(m,)-333(s)-1(\\252ysza\\252)-1(e\\261?)]TJ 0 -13.549 Td[({)-471(Za)-472(tr)1(z)-1(ec)-1(i)1(\\241)-472(k)28(ob)1(iet\\241)-472(si\\246)-472(ogl)1(\\241da)-56(j)1(\\241,)-471(to)-471(c)-1(o)-471(im)-472(t)1(a)-472(znacz)-1(\\241)-471(dziec)-1(i)-471({)-471(sz)-1(epn)1(\\241\\252)]TJ -27.879 -13.549 Td[(Jam)28(bro\\273y)83(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(i)-333(p)-28(ewnie.)]TJ 0 -13.549 Td[({)-333(Sp)-27(o)-28(dob)1(a)-333(m)-1(i)-333(si\\246)-1(,)-333(to)-333(si\\246)-334(i)-333(o\\273)-1(eni)1(\\246)-1(.)-333(Zabr)1(onisz?)]TJ 0 -13.55 Td[({)-333(Zabron)1(i\\242)-334(n)1(ie)-334(zabron)1(i\\246,)-334(al)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(m)-1(i)-333(si\\246)-334(sp)-28(o)-27(doba,)-333(to)-333(z)-334(w)28(\\363)-28(d)1(k)55(\\241)-333(p)-27(o\\261)-1(l\\246)-333(c)27(ho)-27(\\242)-1(b)28(y)-333(j)1(utr)1(o.)]TJ 0 -13.549 Td[({)-273(\\221)1(lij)1(c)-1(ie,)-273(a)-272(b)-28(o)-272(ja)-273(to)-272(w)27(am)-273(pr)1(z)-1(ec)-1(i)1(w)-1(n)29(y!)-273(Da)-55(jcie)-273(mi)-273(c)27(h)1(o)-28(cia\\273)-273(te)-1(go)-272(c)-1(io\\252k)56(a,)-273(co)-273(w)28(am)]TJ -27.879 -13.549 Td[(osta\\252)-339(p)-28(o)-338(grani)1(as)-1(tej,)-338(to)-339(i)-339(sam)-339(p)-28(omog\\246.)-339(Roz)-1(u)1(m)-339(w)-1(y)-338(s)-1(w)28(\\363)-56(j)-338(mac)-1(ie,)-339(t)1(o)-339(m)-1(i)1(arku)1(jec)-1(ie,)-339(z)]TJ 0 -13.549 Td[(cz)-1(ym)-299(w)28(am)-299(na)-55(jlepi)1(e)-1(j)1(.)-299(Nie)-299(r)1(az)-299(i)-299(n)1(ie)-299(dw)28(a)-299(p)1(rz)-1(ek\\252ada\\252em)-299(\\273)-1(on)1(ie,)-299(co)-299(w)28(am)-299(ano)-298(k)28(obiet)28(y)]TJ 0 -13.549 Td[(p)-27(otrze)-1(b)1(a,)-333(\\273)-1(eb)28(y)-333(up)1(adku)-333(w)-333(gos)-1(p)-27(o)-28(d)1(arst)27(wie)-333(nie)-334(b)29(y\\252o...)]TJ 27.879 -13.55 Td[({)-333(M\\363)28(wi\\252e)-1(\\261)-334(t)1(o)-334(tak,)-333(M)1(ic)27(h)1(a\\252?)-1(.)1(.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)1(m)-334(tak)-333(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)-333(\\261wi\\246)-1(tej)-333(n)1(ie)-334(do)-27(c)-1(ze)-1(k)56(a\\252.)-333(M\\363)28(wi\\252e)-1(m.)]TJ 0 -13.549 Td[(Ca\\252e)-1(j)-346(w)-1(si)-347(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-347(re)-1(d)1(z)-1(\\246,)-347(j)1(a)-1(k)-346(k)28(om)27(u)-347(p)-27(otrzeba,)-347(a)-347(ni)1(e)-348(wiedzia\\252b)28(ym,)-347(c)-1(o)-347(w)28(am)]TJ -27.879 -13.549 Td[(p)-27(otrze)-1(b)1(a!)]TJ 27.879 -13.549 Td[({)-439(C)-1(y)1(ganisz)-440(t)28(y)84(,)-440(j)1(uc)28(ho,)-439(a\\273)-440(si\\246)-440(k)1(urzy)83(,)-439(al)1(e)-440(ju)1(tro)-439(pr)1(z)-1(yj)1(d\\271,)-439(c)-1(io\\252k)56(a)-439(dostani)1(e)-1(sz)-1(,)]TJ -27.879 -13.55 Td[(b)-27(o)-345(j)1(ak)-345(p)1(ros)-1(i)1(s)-1(z)-345({)-344(dam;)-345(a)-344(pr)1(a)27(w)28(o)28(w)27(a\\242)-345(si\\246)-345(ze)-1(c)27(h)1(c)-1(esz)-345(z)-1(e)-345(mn\\241)-344({)-345(to)-344(te)-1(n)-344(p)1(at)27(y)1(k)-345(z\\252am)-1(an)29(y)]TJ 0 -13.549 Td[(w)28(e)-1(\\271m)-1(i)1(e)-1(sz)-334(alb)-27(o)-334(i)-333(co)-334(gor)1(s)-1(za.)]TJ 27.879 -13.549 Td[(Napi)1(li)-279(s)-1(i)1(\\246)-280(jesz)-1(cz)-1(e,)-279(k)28(o)28(w)27(al)-279(j)1(u\\273)-280(p)-27(osta)27(wi\\252)-279(i)-279(p)1(rz)-1(y)1(z)-1(w)28(a\\252)-280(j)1(e)-1(szc)-1(ze)-280(do)-279(k)28(ompan)1(ii)-279(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(a,)-234(kt\\363ren)-234(o)-28(c)27(h)1(otnie)-235(si\\246)-235(pr)1(z)-1(ysiad)1(\\252)-235(i)-235(j)1(\\241\\252)-235(gadki)-234(ucies)-1(zne)-235(op)-27(o)27(wiad)1(a\\242)-1(,)-234(a)-235(pr)1(z)-1(ekp)1(iw)27(a\\242)]TJ 0 -13.549 Td[(si\\246)-1(,)-333(\\273e)-334(raz)-333(w)-334(raz)-334(\\261mie)-1(c)28(hem)-334(wyb)1(uc)27(h)1(ali.)]TJ 27.879 -13.55 Td[(Nied\\252u)1(go)-342(cies)-1(zyli)-341(si\\246)-342(ze)-342(sob\\241)-341(b)-27(o)-342(k)56(a\\273dem)27(u)-341(p)1(iln)1(o)-341(b)28(y\\252o)-341(i\\261)-1(\\242)-341(do)-341(sw)27(oic)28(h,)-341(a)-341(i)-341(do)]TJ -27.879 -13.549 Td[(spra)28(w)-320(r)1(\\363\\273)-1(n)29(yc)27(h)1(;)-320(r)1(oz)-1(es)-1(zli)-319(si\\246)-320(w)-320(zgo)-28(d)1(z)-1(ie,)-319(ale)-320(j)1(e)-1(d)1(e)-1(n)-319(d)1(rugi)1(e)-1(m)28(u)-319(nie)-319(u)28(wie)-1(r)1(z)-1(y\\252)-319(ani)-319(t)28(yl)1(a,)]TJ 0 -13.549 Td[(co)-407(za)-407(p)1(az)-1(n)1(ok)28(c)-1(iem)-407({)-406(z)-1(n)1(ali)-406(s)-1(i\\246)-407(d)1(obr)1(z)-1(e)-407(j)1(ak)-407(te)-406(\\252)-1(y)1(s)-1(e)-407(k)28(on)1(ie)-407(i)-406(pr)1(z)-1(ez)-1(ierali)-406(n)1(a)-407(wskro\\261,)]TJ 0 -13.549 Td[(kieb)28(y)-333(p)1(rz)-1(ez)-334(sz)-1(yb)29(y)83(.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273y)-370(t)28(ylk)28(o)-369(os)-1(ta\\252,)-370(p)-27(o)-28(cz)-1(ekiw)28(a\\252)-370(na)-370(k)1(um\\363)28(w)-371(ab)-27(o)-370(i)-369(z)-1(n)1(a)-56(jomk)28(\\363)28(w,)-370(\\273)-1(eb)28(y)-369(m)27(u)]TJ -27.879 -13.55 Td[(kto)-333(p)-27(os)-1(ta)28(wi\\252)-333(jes)-1(zc)-1(ze)-334(jak)56(\\241)-333(p)-27(\\363\\252)-1(k)1(w)27(aterk)28(\\246,)]TJ 27.879 -13.549 Td[(b)-27(o)-336(dobr)1(a)-336(i)-336(psu)-336(m)28(uc)28(ha,)-336(p)-27(\\363ki)-336(kt)1(o)-336(c)-1(a\\252e)-1(go)-336(gn)1(ata)-336(ni)1(e)-337(rzuci,)-336(a)-336(n)1(api\\242)-336(s)-1(i)1(\\246)-337(lu)1(bi)1(a\\252)]TJ -27.879 -13.549 Td[(ni)1(e)-1(zgorze)-1(j)-381(i)-381(same)-1(m)28(u)-381(s)-1(ta)28(wia\\242)-381(s)-1(ob)1(ie)-382(b)28(y)1(\\252)-1(o)-381(tr)1(udn)1(o,)-381(a)-381(nie)-381(dziw)27(ot)1(a,)-381(k)28(o\\261)-1(cie)-1(l)1(n)28(ym)-382(b)29(y\\252)]TJ 0 -13.549 Td[(in)1(o.)]TJ 27.879 -13.549 Td[(I)-333(jarmark)-333(d)1(obiega\\252)-334(j)1(u\\273)-334(k)28(o\\253)1(c)-1(a.)]TJ 0 -13.55 Td[(W)-358(s)-1(amo)-359(p)-27(o\\252ud)1(ni)1(e)-359(z)-1(a\\261w)-1(i)1(e)-1(ci\\252o)-359(s\\252o\\253ce)-1(,)-358(ale)-359(t)28(yl)1(k)28(o)-359(t)28(yla,)-358(cob)28(y)-358(kto)-358(lustrem)-359(mi-)]TJ -27.879 -13.549 Td[(gn\\241\\252)-319(p)-28(o)-319(\\261)-1(wiec)-1(i)1(e)-1(,)-319(i)-320(zaraz)-320(si\\246)-320(sc)27(ho)28(w)28(a\\252o)-320(za)-320(c)27(h)1(m)27(u)1(ry;)-319(a)-320(j)1(u\\273)-320(p)1(rz)-1(ed)-319(wie)-1(cz)-1(or)1(e)-1(m)-320(sp)-27(os)-1(\\246p-)]TJ 0 -13.549 Td[(ni)1(a\\252o)-417(n)1(a)-417(\\261wie)-1(cie,)-416(c)27(hm)28(ur)1(z)-1(ysk)56(a)-417(wlek\\252y)-416(s)-1(i)1(\\246)-417(nisk)28(o,)-416(\\273)-1(e)-416(pra)28(wie)-417(n)1(a)-417(d)1(ac)27(h)1(ac)27(h)-416(le\\273)-1(a\\252y)84(,)-416(i)]TJ 0 -13.549 Td[(dr)1(obn)28(y)-377(d)1(e)-1(sz)-1(cz)-378(j\\241\\252)-377(s)-1(ia\\242)-377(kie)-1(j)-377(p)1(rze)-1(z)-378(g\\246s)-1(t)1(e)-378(s)-1(it)1(o.)-378(T)83(o)-377(i)-377(roz)-1(j)1(e)-1(\\273d\\273ali)-377(si\\246)-378(pr)1(\\246)-1(d)1(z)-1(ej,)-377(k)56(a\\273)-1(d)1(y)]TJ 0 -13.549 Td[(spies)-1(zy\\252)-333(do)-333(dom)28(u,)-333(\\273)-1(eb)28(y)-333(si\\246)-334(d)1(os)-1(ta\\242)-334(p)1(rze)-1(d)-333(n)1(o)-28(c\\241)-334(i)-333(wi\\246ks)-1(z\\241)-333(plu)1(c)27(h)1(\\241.)]TJ 27.879 -13.549 Td[(I)-307(h)1(and)1(le)-1(r)1(z)-1(e)-307(ry)1(c)27(hl)1(e)-1(j)-306(zdejmo)27(w)28(ali)-306(kram)28(y)-307(i)-306(pak)28(o)28(w)28(ali)-306(s)-1(i\\246)-307(n)1(a)-307(w)28(oz)-1(y)84(,)-307(\\273e)-307(to)-307(d)1(e)-1(sz)-1(cz)]TJ -27.879 -13.55 Td[(zac)-1(in)1(a\\252)-334(coraz)-334(g\\246s)-1(t)1(s)-1(zy)-333(i)-334(zimni)1(e)-1(j)1(s)-1(zy)83(.)]TJ 27.879 -13.549 Td[(Mr)1(ok)-333(z)-1(ap)1(ada\\252)-334(p)1(r\\246dk)28(o)-333(c)-1(i)1(\\246)-1(\\273ki)-333(i)-333(m)-1(ok)1(ry)84(.)]TJ 0 -13.549 Td[(Mi)1(as)-1(tec)-1(zk)28(o)-333(pustosz)-1(a\\252o)-333(i)-333(m)-1(il)1(k\\252o.)]TJ 0 -13.549 Td[(T)28(ylk)28(o)-393(dziady)-393(jesz)-1(cz)-1(e)-394(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-394(p)-28(o)-55(j\\246kiw)28(ali)-393(s)-1(p)-27(o)-28(d)-393(\\261c)-1(i)1(an)-393(i)-394(w)-393(k)56(arc)-1(zmac)27(h)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(y)-333(si\\246)-334(wrzas)-1(k)1(i)-333(pij)1(ak)28(\\363)27(w)-333(i)-333(k\\252\\363tni)1(e)-1(.)]TJ 27.879 -13.55 Td[(Jak)28(o\\261)-479(ju)1(\\273)-479(o)-479(sam)27(ym)-478(w)-1(i)1(e)-1(cz)-1(or)1(z)-1(e)-479(wyjec)27(h)1(ali)-478(z)-479(m)-1(iasta)-478(B)-1(or)1(yno)28(wie;)-479(sprzedali)]TJ -27.879 -13.549 Td[(ws)-1(zystk)28(o,)-402(co)-402(mieli,)-401(naku)1(p)-28(o)28(w)28(ali)-402(r)1(\\363\\273)-1(n)1(o\\261)-1(ci)-402(i)-401(u\\273yli)-401(jar)1(m)-1(ar)1(ku,)-401(c)-1(o)-401(s)-1(i\\246)-402(zo)28(w)-1(i)1(e)-1(.)-401(An)28(tek)]TJ\nET\nendstream\nendobj\n255 0 obj <<\n/Type /Page\n/Contents 256 0 R\n/Resources 254 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n254 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n259 0 obj <<\n/Length 2930      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(76)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(5.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(p)-27(o)-28(dcin)1(a\\252)-475(k)28(oni)-474(i)-474(jec)27(ha\\252,)-474(a\\273)-475(si\\246)-475(b\\252oto)-474(ot)28(w)-1(i)1(e)-1(ra\\252o,)-474(b)-27(o)-475(i)-474(z)-1(i)1(\\241b)-474(b)28(y\\252,)-474(i)-475(p)-27(o)-28(d)1(pili)-474(sobie)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)-430(ni)1(e)-1(zgorze)-1(j)1(,)-431(stary)84(,)-430(c)27(ho)-27(\\242)-431(s)-1(k)56(\\241)-28(p)28(y)-430(b)28(y)1(\\252)-431(i)-430(a\\273)-431(piszc)-1(za\\252)-431(za)-431(grosze)-1(m,)-430(a)-431(tak)-430(ic)27(h)]TJ 0 -13.549 Td[(dzisia)-56(j)-332(ugasz)-1(cz)-1(a\\252)-333(i)-333(m)-334(i)-333(nap)1(itkiem)-334(,)1(i)-334(t)28(y)1(m)-334(dob)1(rym)-333(s)-1(\\252o)28(w)27(em,)-334(\\273e)-334(a\\273)-334(d)1(z)-1(i)1(w)-1(n)1(o)-333(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(No)-28(c)-334(si\\246)-334(zrob)1(i\\252a)-333(z)-1(u)1(p)-28(e\\252na,)-333(gdy)-333(d)1(o)-56(j)1(e)-1(c)27(h)1(ali)-333(do)-333(lasu.)]TJ 0 -13.549 Td[(Ciem)-1(n)1(o)-383(b)29(y\\252o,)-382(\\273)-1(e)-382(c)27(ho)-27(\\242)-383(ok)28(o)-382(w)-1(y)1(k)28(ol;)-382(des)-1(zcz)-383(pad)1(a\\252)-383(coraz)-382(grub)1(s)-1(zy)-382(i)-382(gdzienie-)]TJ -27.879 -13.55 Td[(gdzie)-359(p)-28(o)-359(d)1(ro)-28(d)1(z)-1(e)-360(r)1(oz)-1(l)1(e)-1(ga\\252y)-359(si\\246)-360(tu)1(rk)28(ot)28(y)-359(w)27(oz\\363)28(w)-360(i)-359(o)-27(c)27(hr)1(yp\\252e)-359(\\261)-1(p)1(ie)-1(wy)-359(p)1(ijak)28(\\363)28(w,)-359(alb)-27(o)-359(i)]TJ 0 -13.549 Td[(ktosik)-333(cz)-1(\\252apa\\252)-333(si\\246)-334(w)27(ol)1(no)-333(p)-28(o)-333(b)1(\\252)-1(o)-27(c)-1(ie.)]TJ 27.879 -13.549 Td[(A)-403(\\261)-1(ro)-27(dki)1(e)-1(m)-404(top)-27(olo)28(w)28(e)-1(j)-403(dr)1(ogi,)-403(c)-1(o)-403(ino)-403(s)-1(zumia\\252a)-403(g\\252uc)27(h)1(o)-404(i)-403(p)-27(o)-56(j\\246kiw)28(a\\252a)-404(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(z)-354(z)-1(imna,)-353(s)-1(ze)-1(d)1(\\252)-354(Jam)27(b)1(ro\\273y)-354(pij)1(an)28(y)-354(j)1(u\\273)-354(c)-1(a\\252ki)1(e)-1(m,)-354(tacz)-1(a\\252)-354(si\\246)-354(z)-355(b)-27(oku)-354(n)1(a)-354(b)-27(ok,)-354(cz)-1(ase)-1(m)]TJ 0 -13.549 Td[(ut)1(kn\\241\\252)-294(na)-295(d)1(rze)-1(w)28(o)-295(ab)-27(o)-295(i)-294(w)-295(b)1(\\252)-1(ot)1(o,)-295(ale)-295(si\\246)-295(ry)1(c)27(h\\252o)-294(p)-28(o)-27(dnosi\\252)-294(i)-295(ci\\246gie)-1(m)-295(p)-27(o)-28(d)1(\\261)-1(p)1(ie)-1(wyw)28(a\\252)]TJ 0 -13.549 Td[(na)-333(ca\\252e)-334(gard)1(\\252)-1(o,)-333(j)1(ak)-333(to)-334(mia\\252)-333(w)27(e)-333(z)-1(wycz)-1(a)-55(ju)1(.)]TJ 27.879 -13.55 Td[(Pl)1(uc)27(h)1(a)-370(sz)-1(\\252a)-369(tak)56(a)-370(i)-369(c)-1(iemno\\261\\242)-1(,)-369(\\273)-1(e)-370(k)28(on)1(iom)-370(ogon\\363)28(w)-370(n)1(ie)-370(roze)-1(zna\\252,)-369(a)-370(i)-369(\\261)-1(wiat)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(ws)-1(i)-333(wid)1(z)-1(ia\\252y)-333(si\\246)-334(ledwie)-333(jak)28(o)-333(to)-334(wil)1(c)-1(zyc)27(h)-333(\\261lepi\\363)28(w)-333(m)-1(igot)1(anie.)]TJ\nET\nendstream\nendobj\n258 0 obj <<\n/Type /Page\n/Contents 259 0 R\n/Resources 257 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n257 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n262 0 obj <<\n/Length 6684      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(6)]TJ/F17 10.909 Tf 0 -73.325 Td[(Des)-1(zc)-1(ze)-334(si\\246)-334(rozpad)1(a\\252y)-333(na)-333(dob)1(re)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-383(o)-28(d)-382(s)-1(amego)-383(jar)1(m)-1(ar)1(ku)-382(\\261w)-1(i)1(at)-383(z)-383(w)28(olna)-382(z)-1(at)1(apia\\252)-382(s)-1(i\\246)-383(w)-382(s)-1(zaryc)28(h,)-382(m\\246)-1(tn)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(sz)-1(kl)1(iw)27(ac)28(h)-347(des)-1(zcz)-1(\\363)28(w,)-347(\\273)-1(e)-347(t)28(ylk)28(o)-347(obr)1(ys)-1(y)-346(b)-28(or\\363)28(w)-347(i)-347(ws)-1(i)-347(ma)-56(j)1(ac)-1(zy\\252y)-347(b)1(lade,)-347(ni)1(b)28(y)-347(z)-348(p)1(rze)-1(-)]TJ 0 -13.549 Td[(mi\\246)-1(k)1(\\252e)-1(j)-333(p)1(rz)-1(\\246dzy)-333(utk)56(an)1(e)-1(.)]TJ 27.879 -13.55 Td[(Sz\\252y)-333(niesk)28(o\\253cz)-1(one,)-333(z)-1(i)1(m)-1(n)1(e)-1(,)-333(p)1(rze)-1(n)1(ik)56(a)-56(j\\241ce)-334(sz)-1(ar)1(ugi)-333(jes)-1(i)1(e)-1(n)1(ne.)]TJ 0 -13.549 Td[(Si)1(w)27(e,)-294(lo)-28(d)1(o)28(w)27(ate)-294(bicze)-295(d)1(e)-1(sz)-1(cz)-1(\\363)28(w)-294(s)-1(i)1(e)-1(k\\252y)-294(b)-27(ez)-1(u)1(s)-1(tan)1(nie)-294(z)-1(i)1(e)-1(mi\\246)-294(i)-294(pr)1(z)-1(em)-1(i)1(\\246)-1(k)56(a\\252y)-294(do)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)1(i,)-333(a\\273)-334(d)1(rz)-1(ew)28(o)-334(k)56(a\\273de,)-334(\\271d\\271b\\252o)-333(k)56(a\\273)-1(d)1(e)-334(dy)1(gota\\252o)-334(w)-333(b)-28(ez)-1(miern)28(y)1(m)-334(b)-27(\\363lu.)]TJ 27.879 -13.549 Td[(A)-312(sp)-28(o)-27(d)-312(ci\\246)-1(\\273kic)28(h)-312(c)28(hm)27(u)1(r,)-312(sk\\252\\246bion)29(yc)27(h)-311(nad)-311(z)-1(iemi\\241,)-312(sp)-28(o)-28(d)-311(zie)-1(l)1(ona)28(w)-1(y)1(c)27(h)-311(s)-1(zarug)]TJ -27.879 -13.549 Td[(wyc)27(h)29(yla\\252y)-428(si\\246)-429(c)28(h)28(wilami)-428(s)-1(zmat)28(y)-428(p)-28(\\363l)-427(p)-28(o)-28(cze)-1(rn)1(ia\\252yc)28(h,)-428(p)1(rze)-1(mi\\246)-1(k)1(\\252yc)27(h)1(,)-428(rozp\\252asz)-1(cz)-1(o-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-369({)-370(t)1(o)-370(wyb)1(\\252ys)-1(k)1(iw)27(a\\252y)-369(stru)1(gi)-370(spi)1(e)-1(n)1(ionej)-369(w)27(o)-27(dy)84(,)-369(p\\252yn\\241cej)-369(bru)1(z)-1(d)1(ami,)-369(alb)-27(o)-370(cz)-1(er-)]TJ 0 -13.55 Td[(ni)1(a\\252y)-275(drze)-1(w)28(a)-275(s)-1(amotn)1(e)-276(na)-275(miedzac)27(h)-275({)-275(jak)-274(przygi\\246te)-1(,)-274(nabr)1(z)-1(mia\\252e)-276(wil)1(go)-28(c)-1(i)1(\\241,)-275(trz\\246)-1(s\\252y)]TJ 0 -13.549 Td[(ostatnimi)-333(\\252ac)27(h)1(m)-1(an)1(am)-1(i)-333(li)1(\\261)-1(ci)-333(i)-333(s)-1(zam)-1(ota\\252y)-333(si\\246)-334(rozpacznie,)-333(nib)29(y)-334(p)1(s)-1(y)-333(n)1(a)-334(u)29(w)-1(i)1(\\246)-1(zi.)]TJ 27.879 -13.549 Td[(Drogi)-333(op)1(ustos)-1(za\\252e)-334(rozla\\252y)-333(s)-1(i)1(\\246)-334(w)-334(b)1(\\252otniste,)-333(g)-1(n)1(ij)1(\\241c)-1(e)-334(k)56(a\\252u\\273e.)]TJ 0 -13.549 Td[(Kr)1(\\363tkie;)-319(s)-1(m)28(utn)1(e)-1(,)-318(b)-28(ez)-1(s\\252onec)-1(zne)-319(dn)1(ie)-319(w)-1(l)1(e)-1(k\\252y)-318(s)-1(i\\246)-319(c)-1(i)1(\\246)-1(\\273k)28(o)-319(pr)1(z)-1(egni\\252ymi)-319(sm)27(u)1(ga-)]TJ -27.879 -13.549 Td[(mi)-396(\\261w)-1(i)1(at\\252a,)-396(a)-396(no)-27(c)-1(e)-396(z)-1(ap)1(ada\\252y)-395(c)-1(zarne,)-396(g\\252u)1(c)27(he,)-396(r)1(oz)-1(p)1(ac)-1(zliw)28(e)-397(b)-27(ez)-1(u)1(s)-1(tan)1(n)28(ym,)-396(mono-)]TJ 0 -13.55 Td[(ton)1(n)28(ym)-334(c)28(hlu)1(p)-28(otem...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(era\\273a)-56(j)1(\\241c)-1(a)-333(c)-1(i)1(c)27(ho\\261\\242)-334(ogarn)1(\\246)-1(\\252a)-333(zie)-1(mi\\246.)]TJ 0 -13.549 Td[(Umilk\\252y)-333(p)-27(ola,)-333(pr)1(z)-1(ycic)27(h)1(\\252y)-333(w)-1(sie,)-333(og\\252uc)27(h)1(\\252y)-333(b)-28(ory)84(.)]TJ 0 -13.549 Td[(Wsie)-382(p)-28(o)-27(c)-1(ze)-1(r)1(nia\\252y)-381(i)-382(j)1(akb)28(y)-381(s)-1(il)1(niej)-382(p)1(rzyw)28(ar\\252y)-382(d)1(o)-382(zie)-1(mi,)-381(do)-382(p)1(\\252ot\\363)28(w)-1(,)-381(do)-381(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(sad\\363)28(w)-334(n)1(agic)27(h)1(,)-334(p)-27(oskr\\246c)-1(an)29(yc)27(h)-333(i)-333(j)1(\\246)-1(cz)-1(\\241cyc)27(h)-333(z)-333(c)-1(ic)28(ha.)]TJ 27.879 -13.55 Td[(Szara)-260(ku)1(rza)28(w)27(a)-260(desz)-1(cz)-1(\\363)28(w)-260(przys\\252oni\\252a)-260(\\261w)-1(i)1(at,)-260(wypi)1(\\252)-1(a)-260(b)1(arwy)83(,)-259(z)-1(gasi\\252a)-260(\\261)-1(wiat\\252a)-260(i)]TJ -27.879 -13.549 Td[(zatopi\\252a)-283(w)-284(mrok)56(ac)27(h)-283(z)-1(i)1(e)-1(mi\\246,)-284(\\273e)-284(ws)-1(zystk)28(o)-284(wyd)1(a\\252o)-284(si\\246)-284(jak)1(b)28(y)-284(senn)28(ym)-283(m)-1(a)-55(jacz)-1(eniem,)]TJ 0 -13.549 Td[(a)-247(sm)27(u)1(te)-1(k)-246(w)-1(sta)28(w)27(a\\252)-247(z)-247(p)-27(\\363l)-247(pr)1(z)-1(egni\\252y)1(c)27(h,)-246(z)-248(b)-27(or\\363)28(w)-247(zdr\\246t)28(wia\\252yc)27(h)1(,)-247(z)-247(pu)1(s)-1(tek)-247(ob)1(umar\\252yc)27(h)]TJ 0 -13.549 Td[(i)-377(w)-1(l)1(\\363k\\252)-378(s)-1(i)1(\\246)-378(c)-1(i\\246\\273)-1(k)1(im)-378(tuman)1(e)-1(m;)-378(p)1(rzys)-1(ta)28(w)28(a\\252)-378(na)-377(g\\252uc)27(h)29(yc)27(h)-377(rozs)-1(ta)-55(jac)28(h,)-377(p)-28(o)-27(d)-378(k)1(rz)-1(y)1(\\273)-1(a-)]TJ 0 -13.549 Td[(mi,)-360(co)-360(wyci\\241)-28(ga\\252y)-359(rozpacz)-1(n)1(ie)-360(ramiona,)-359(n)1(a)-360(pu)1(s)-1(t)28(yc)28(h)-359(drogac)28(h,)-359(gdzie)-360(nagie)-360(d)1(rze)-1(w)28(a)]TJ 0 -13.55 Td[(trz\\246s)-1(\\252y)-408(si\\246)-408(z)-408(z)-1(imna)-407(i)-408(\\252k)56(a\\252y)-408(w)-408(m\\246)-1(ce)-409({)-407(do)-408(op)1(usz)-1(cz)-1(on)28(y)1(c)27(h)-407(gniazd)-408(zagl\\241d)1(a\\252)-408(pu)1(s)-1(t)28(y-)]TJ 0 -13.549 Td[(mi)-331(o)-28(cz)-1(ami,)-330(do)-330(roz)-1(w)28(alon)28(y)1(c)27(h)-330(c)27(ha\\252u)1(p)-330({)-331(na)-330(umar\\252yc)27(h)-330(cm)-1(en)28(tarzac)27(h)-330(t\\252u)1(k\\252)-331(s)-1(i)1(\\246)-331(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(mogi\\252)-387(z)-1(ap)-27(omnian)29(yc)27(h)-386(i)-387(kr)1(z)-1(y\\273y)-387(p)-27(ogni)1(\\252yc)27(h)-386(i)-387(p)1(\\252)-1(y)1(n\\241\\252)-387(\\261w)-1(i)1(ate)-1(m)-387(ca\\252ym)-1(;)-386(pr)1(z)-1(ez)-388(n)1(agie,)]TJ 0 -13.549 Td[(o)-28(d)1(arte,)-413(splu)1(ga)28(w)-1(i)1(one)-413(p)-27(ola,)-413(p)1(rze)-1(z)-413(ws)-1(i)1(e)-413(z)-1(ap)1(ad\\252e)-413(i)-413(zagl\\241d)1(a\\252)-413(do)-412(c)27(hat,)-412(do)-412(ob)-28(\\363r)1(,)-413(d)1(o)]TJ 0 -13.549 Td[(sad\\363)28(w,)-408(a\\273)-407(b)28(yd)1(\\252)-1(o)-407(ry)1(c)-1(za\\252o)-408(z)-408(t)1(rw)27(ogi)1(,)-407(drze)-1(w)28(a)-407(s)-1(i\\246)-407(przygin)1(a\\252y)-407(z)-408(g\\252uc)28(h)28(ym)-408(j)1(\\246)-1(k)1(ie)-1(m,)-407(a)]TJ 0 -13.55 Td[(lu)1(dzie)-448(wzdyc)28(hali)-447(\\273a\\252o\\261)-1(n)1(ie)-448(w)-447(strasz)-1(n)1(e)-1(j)-447(t)1(\\246)-1(skno)-27(c)-1(ie)-447({)-447(w)-448(n)1(ie)-1(u)1(tul)1(onej)-447(t\\246s)-1(kn)1(o)-28(cie)-448(za)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(em.)]TJ 27.879 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)]TJ 335.807 -29.888 Td[(77)]TJ\nET\nendstream\nendobj\n261 0 obj <<\n/Type /Page\n/Contents 262 0 R\n/Resources 260 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n260 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n265 0 obj <<\n/Length 9072      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(78)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(6.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(Des)-1(zc)-1(z)-230(m\\273)-1(y)1(\\252)-230(b)-28(ezustanni)1(e)-1(,)-229(jak)28(ob)28(y)-229(kto)-230(d)1(rob)1(n)28(ym)-230(sz)-1(kl)1(iw)27(em)-230(pr)1(z)-1(ys\\252ania\\252)-229(\\261)-1(wiat,)]TJ -27.879 -13.549 Td[(\\273e)-230(Lip)-27(ce)-230(ca\\252e)-230(ton)1(\\246)-1(\\252y)-229(w)-229(g\\246s)-1(t)28(y)1(c)27(h)-229(tu)1(manac)27(h)-228(s)-1(zaru)1(gi,)-229(sp)-28(o)-27(d)-229(kt\\363r)1(e)-1(j)-228(t)28(ylk)28(o)-229(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(cz)-1(erni)1(a\\252y)-341(dac)28(h)28(y)84(,)-341(to)-341(ob)1(mokni\\246te)-341(p\\252ot)28(y)-340(k)55(amienn)1(e)-342(l)1(ub)-340(te)-341(br)1(udn)1(e)-341(k)28(o\\252tun)28(y)-340(dym\\363)28(w,)]TJ 0 -13.549 Td[(co)-334(si\\246)-334(wi\\252y)-333(nad)-332(k)28(om)-1(in)1(am)-1(i)-333(i)-333(wlek\\252y)-333(p)-28(o)-333(sadac)27(h)1(.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-244(b)29(y\\252o)-244(w)28(e)-244(wsi,)-243(t)27(y)1(lk)28(o)-243(gdzie)-1(n)1(iegdzie)-244(m\\252)-1(\\363)-27(c)-1(on)1(o)-244(p)-27(o)-243(s)-1(to)-27(do\\252ac)27(h)1(,)-243(ale)-244(z)-244(rzadk)56(a,)]TJ -27.879 -13.55 Td[(b)-27(o)-334(wie\\261)-334(ca\\252a)-334(b)28(y)1(\\252a)-334(n)1(a)-334(k)56(apu)1(\\261)-1(n)1(isk)55(ac)28(h.)]TJ 27.879 -13.549 Td[(Pu)1(s)-1(t)1(k)55(a)-308(le)-1(\\273a\\252a)-309(na)-308(b\\252otn)1(is)-1(tej,)-308(rozm)-1(i)1(\\246)-1(k\\252ej)-308(dro)-27(dze)-310(i)-308(pu)1(s)-1(to)-308(b)28(y\\252o)-309(w)-309(ob)-27(e)-1(j)1(\\261)-1(ciac)28(h)-309(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-334(domami,)-334(c)-1(zas)-1(ami)-334(t)28(ylk)28(o)-334(kto\\261)-335(zam)-1(a)-55(jacz)-1(y)1(\\252)-335(w)28(e)-335(m)-1(gl)1(e)-335(i)-334(gin\\241\\252)-334(wne)-1(t)1(ki,)-334(\\273)-1(e)-334(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(cz)-1(\\252apan)1(ie)-387(tr)1(e)-1(p)-27(\\363)28(w)-387(p)-27(o)-386(b\\252o)-28(cie)-387(b)28(y)1(\\252o)-387(s\\252yc)27(h)1(a\\242)-1(,)-386(alb)-27(o)-386(w)27(\\363z)-386(na\\252ado)28(w)28(an)28(y)-386(k)56(apust\\241)-386(wl\\363k\\252)]TJ 0 -13.549 Td[(si\\246)-319(w)27(oln)1(o)-319(o)-28(d)-318(tor)1(fo)28(wis)-1(k)-318(i)-319(r)1(oz)-1(gan)1(ia\\252)-319(g\\246s)-1(i)1(,)-319(b)1(ro)-28(d)1(z)-1(\\241ce)-319(z)-1(a)-319(l)1(i\\261)-1(ciami)-319(spad)1(\\252ymi)-319(z)-319(w)28(oz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(St)1(a)27(w)-307(s)-1(zamota\\252)-308(si\\246)-308(w)-307(c)-1(iasn)28(yc)28(h)-307(br)1(z)-1(egac)27(h)-307(i)-307(p)1(rz)-1(y)1(biera\\252)-307(c)-1(i\\241)-27(gle)-1(,)-307(b)-27(o)-307(a\\273)-308(s)-1(i)1(\\246)-308(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(lew)27(a\\252)-435(w)-435(ni)1(\\273)-1(sz)-1(yc)28(h)-435(miejsc)-1(ac)28(h)-435(na)-435(d)1(rog\\246)-435(p)-28(o)-435(Bory)1(no)28(ww)27(ej)-435(stron)1(ie)-1(,)-435(si\\246ga\\252)-435(p\\252ot\\363)28(w)-435(i)]TJ 0 -13.549 Td[(br)1(yzga\\252)-334(p)1(ian\\241)-333(na)-333(\\261)-1(cian)28(y)-333(c)28(ha\\252up)1(.)]TJ 27.879 -13.549 Td[(Ca\\252a)-429(wie)-1(\\261)-429(b)28(y)1(\\252a)-429(z)-1(a)-55(j\\246ta)-429(wycinan)1(ie)-1(m)-429(i)-428(z)-1(w)28(o\\273)-1(eni)1(e)-1(m)-429(k)56(apu)1(s)-1(t)28(y;)-428(p)-28(e\\252no)-429(j)1(e)-1(j)-428(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(p)-27(o)-328(klepi)1(s)-1(k)56(ac)27(h)1(,)-328(sieniac)28(h)-328(i)-327(izbac)27(h)1(,)-328(a)-327(jak)-327(u)-328(n)1(ie)-1(k)1(t\\363ryc)28(h)-328(i)-327(p)-27(o)-28(d)-327(ok)55(ap)1(am)-1(i)-327(s)-1(i)1(nia\\252y)-327(kup)29(y)]TJ 0 -13.549 Td[(g\\252\\363)28(w)27(ek.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(ed)-333(domami,)-333(wys)-1(t)1(a)27(wion)1(e)-334(na)-333(desz)-1(cz)-1(,)-333(mok\\252y)-333(ogromne)-334(b)-27(ec)-1(zki.)]TJ 0 -13.549 Td[(Sp)1(ies)-1(zono)-390(si\\246)-391(n)1(a)-391(gw)28(a\\252t,)-390(b)-27(o)-391(d)1(e)-1(szc)-1(z)-391(p)1(ra)28(wie)-391(n)1(ie)-391(u)1(s)-1(ta)28(w)28(a\\252,)-390(a)-391(d)1(rogi)-390(r)1(obi\\252y)-390(si\\246)]TJ -27.879 -13.549 Td[(grz\\241s)-1(k)1(ie)-1(,)-333(n)1(ie)-334(d)1(o)-334(p)1(rze)-1(b)28(y)1(c)-1(ia.)]TJ 27.879 -13.549 Td[(I)-333(u)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-333(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(wyc)-1(i)1(nano.)]TJ 0 -13.549 Td[(Ju)1(\\273)-462(o)-28(d)-460(ran)1(a)-461(p)-28(o)-55(jec)27(ha\\252a)-461(n)1(a)-461(k)55(ap)1(u\\261ni)1(s)-1(k)28(o)-461(Jagn)1(a)-461(z)-462(S)1(z)-1(ymkiem,)-461(b)-28(o)-461(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)]TJ -27.879 -13.55 Td[(osta\\252)-334(i)-333(\\252ata\\252)-333(ano)-333(dac)27(h)1(,)-333(\\273)-1(e)-333(to)-334(p)1(rze)-1(ciek)55(a\\252)-333(w)-334(p)1(aru)-333(miejsc)-1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-341(wie)-1(cz)-1(\\363r)-341(to)-342(ju)1(\\273)-343(b)28(y)1(\\252o)-343(i)-341(jakb)29(y)-342(s)-1(i\\246)-342(\\271dzie)-1(b)1(k)28(o)-342(m)-1(r)1(o)-28(c)-1(ze\\242)-343(zac)-1(zyna\\252o,)-342(t)1(o)-343(stara)]TJ -27.879 -13.549 Td[(raz)-271(w)-272(raz)-271(w)-1(y)1(c)27(ho)-27(dzi\\252a)-272(p)1(rze)-1(d)-271(d)1(om)-272(i)-271(p)1(atrza\\252a)-272(w)-271(m)-1(g\\252y)84(,)-271(ku)-271(m\\252yno)28(wi,)-271(i)-271(nas\\252uc)28(hiw)28(a\\252a,)]TJ 0 -13.549 Td[(cz)-1(y)-333(ni)1(e)-334(jad)1(\\241)-334(j)1(e)-1(szc)-1(ze)-1(?..)]TJ 27.879 -13.549 Td[(A)-463(n)1(a)-463(k)56(apu\\261ni)1(s)-1(k)56(ac)27(h)1(,)-463(le\\273)-1(\\241cyc)28(h)-463(n)1(is)-1(k)28(o)-463(za)-463(m\\252ynem,)-463(w)-463(torf)1(o)27(wisk)56(ac)27(h)1(,)-463(wrza\\252)-1(a)]TJ -27.879 -13.55 Td[(jesz)-1(cz)-1(e)-334(n)1(a)-333(dobr)1(e)-334(rob)-27(ota.)]TJ 27.879 -13.549 Td[(Cz)-1(ar)1(nia)28(w)28(e)-369(mokre)-368(m)-1(g\\252y)-368(l)1(e)-1(\\273a\\252y)-368(na)-368(\\252\\241k)56(ac)27(h)1(,)-368(\\273)-1(e)-368(t)28(ylk)28(o)-368(gdzieniegdzie)-369(b)1(\\252ysk)55(a\\252y)]TJ -27.879 -13.549 Td[(sz)-1(erokie)-358(ro)28(wy)-358(p)-28(e\\252ne)-359(siw)28(e)-1(j)-358(w)28(o)-28(d)1(y)-358(i)-358(w)-1(y)1(s)-1(oki)1(e)-359(z)-1(agon)29(y)-358(k)55(ap)1(ust)28(y)83(,)-358(sini)1(e)-1(j)1(\\241c)-1(ej)-358(bl)1(ad\\241)-358(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(leni\\241)-341(alb)-27(o)-341(rdza)28(w)27(ej)-341(nib)29(y)-341(pasy)-342(b)1(lac)27(h)29(y)-342(\\273e)-1(l)1(az)-1(n)1(e)-1(j)1(,)-341(a)-342(tu)-341(i)-341(\\363)28(wdzie)-342(ma)-56(j)1(ac)-1(zy\\252y)-341(w)27(e)-342(mgle)]TJ 0 -13.549 Td[(cz)-1(erw)28(one)-334(w)28(e)-1(\\252n)1(iaki)-333(k)28(obi)1(e)-1(t)-333(i)-333(kup)29(y)-333(w)-1(y)1(c)-1(i\\246t)28(yc)27(h)-333(g\\252\\363)28(w)28(e)-1(k.)]TJ 27.879 -13.55 Td[(W)-274(dali)-274(pr)1(z)-1(em)-1(gl)1(onej,)-274(nad)-274(rze)-1(k)56(\\241,)-274(c)-1(o)-275(p)1(\\252yn\\246\\252a)-275(z)-275(sz)-1(u)1(m)-1(em)-275(ws)-1(kr)1(o\\261)-275(g\\246)-1(st)28(yc)27(h)-274(z)-1(ar)1(o-)]TJ -27.879 -13.549 Td[(\\261li,)-308(sin)1(ie)-1(j)1(\\241c)-1(y)1(c)27(h)-307(nib)29(y)-308(c)27(h)1(m)27(u)1(ra,)-307(c)-1(ze)-1(rn)1(ia\\252y)-307(s)-1(togi)-307(torf)1(u)-308(i)-307(w)27(ozy)83(,)-307(do)-307(kt\\363ryc)28(h)-308(d)1(onosz)-1(on)1(o)]TJ 0 -13.549 Td[(k)56(apu)1(s)-1(t\\246)-274(w)-274(p\\252ac)27(h)29(tac)27(h)1(,)-274(b)-27(o)-274(z)-275(p)-27(o)28(w)27(o)-27(du)-273(roz)-1(mi\\246k\\252e)-1(go)-273(grun)29(tu)-274(d)1(o)-56(j)1(e)-1(c)27(h)1(a\\242)-275(n)1(ie)-274(b)28(y\\252o)-274(mo\\273)-1(n)1(a)]TJ 0 -13.549 Td[(do)-333(k)56(apu)1(\\261)-1(n)1(isk)28(\\363)27(w.)]TJ 27.879 -13.549 Td[(Do)-28(cin)1(ali)-296(ju)1(\\273)-297(n)1(iekt\\363rzy)-296(i)-296(zabi)1(e)-1(ral)1(i)-296(s)-1(i)1(\\246)-297(d)1(o)-296(dom)28(u,)-296(wi\\246c)-297(i)-295(g\\252)-1(osy)-296(coraz)-296(m)-1(o)-27(c)-1(n)1(ie)-1(j)1(-)]TJ -27.879 -13.549 Td[(sz)-1(e)-334(r)1(oz)-1(lega\\252y)-333(s)-1(i\\246)-333(w)27(e)-334(mgle)-333(i)-334(l)1(e)-1(cia\\252y)83(,)-333(z)-333(z)-1(agon)28(u)-333(n)1(a)-334(zagon.)]TJ 27.879 -13.55 Td[(Jagn)1(a)-377(sk)28(o\\253cz)-1(y\\252a)-376(dopi)1(e)-1(r)1(o)-377(co)-377(sw)27(\\363)-55(j)-377(zagon,)-376(zm)-1(\\246c)-1(zona)-376(b)28(y\\252a)-376(s)-1(ro)-27(dze)-1(,)-376(g\\252o)-28(dn)1(a)-377(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(emo)-28(c)-1(zona)-299(d)1(o)-299(sk)28(\\363ry)83(,)-298(b)-28(o)-298(na)28(w)27(et)-299(i)-298(trep)28(y)-299(zapad)1(a\\252)-1(y)-298(s)-1(i)1(\\246)-300(w)-299(ru)1(dy)84(,)-299(tor)1(\\014ast)28(y)-299(gru)1(n)28(t)-299(p)-27(o)]TJ 0 -13.549 Td[(k)28(ostki,)-333(\\273e)-334(raz)-334(w)-333(raz)-334(j)1(e)-334(z)-1(zu)28(w)28(a\\252a,)-333(\\273)-1(eb)28(y)-333(wyla\\242)-334(w)28(o)-28(d\\246.)]TJ 27.879 -13.549 Td[({)-448(S)1(z)-1(y)1(m)-1(ek,)-447(a)-448(dy)1(\\242)-448(s)-1(i\\246)-448(r)1(uc)27(h)1(a)-56(j)-447(p)1(r\\246dze)-1(j)1(,)-448(b)-27(o)-448(j)1(u\\273)-448(ku)1(las)-1(\\363)28(w)-448(n)1(ie)-448(cz)-1(u)1(j\\246!{)-448(w)28(o\\252a\\252)-1(a)]TJ -27.879 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-1(,)-344(a)-344(wid)1(z)-1(\\241c,)-344(\\273)-1(e)-344(c)27(h)1(\\252opak)-344(ni)1(e)-345(mo\\273)-1(e)-344(s)-1(ob)1(ie)-345(zada\\242,)-344(wyrw)28(a\\252a)-344(m)27(u)-343(niec)-1(i)1(e)-1(rp)1(liwie)]TJ 0 -13.55 Td[(ogromn)28(y)-333(tob)-27(o\\252,)-333(z)-1(arzuci\\252a)-333(go)-334(n)1(a)-333(plec)-1(y)-333(i)-333(p)-27(onies)-1(\\252a)-333(na)-333(w)28(\\363z)-1(.)]TJ 27.879 -13.549 Td[({)-323(P)29(arob)-27(e)-1(k)-322(z)-323(c)-1(i)1(e)-1(b)1(ie)-323(t)28(yli,)-322(mi\\246)-1(tk)1(i)-323(j)1(e)-1(ste\\261)-323(w)-323(grzbiec)-1(i)1(e)-323(kiej)-323(k)28(ob)1(ieta)-323(p)-27(o)-323(r)1(o)-28(dac)28(h)-323({)]TJ\nET\nendstream\nendobj\n264 0 obj <<\n/Type /Page\n/Contents 265 0 R\n/Resources 263 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 250 0 R\n>> endobj\n263 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n268 0 obj <<\n/Length 8403      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(79)]TJ -363.686 -35.866 Td[(sz)-1(epn)1(\\246)-1(\\252a)-333(p)-28(ogar)1(dliwie,)-333(ws)-1(yp)1(uj)1(\\241c)-334(k)56(apu)1(s)-1(t\\246)-334(d)1(o)-333(p)-28(\\363\\252k)28(osz)-1(k)28(\\363)28(w)-334(wys\\252an)28(yc)28(h)-333(s)-1(\\252om\\241.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-405(przyws)-1(t)28(y)1(dzon)28(y)-406(mam)-1(r)1(ota\\252)-407(co\\261)-406(p)-28(o)-28(d)-405(nose)-1(m,)-406(skrob)1(a\\252)-407(si\\246)-406(p)-28(o)-406(k)28(o\\252tu)1(-)]TJ -27.879 -13.549 Td[(nac)28(h)-333(i)-333(z)-1(ap)1(rz\\246)-1(ga\\252)-333(k)28(onia.)]TJ 27.879 -13.549 Td[({)-394(Sp)1(ies)-1(z)-395(si\\246,)-394(Szyme)-1(k)1(,)-394(b)-28(o)-394(n)1(o)-28(c)-1(!)-394({)-394(n)1(agania\\252a)-394(go)-394(znosz)-1(\\241c)-394(c)-1(o)-394(c)27(h)28(wil)1(a)-394(k)55(ap)1(ust\\246)]TJ -27.879 -13.549 Td[(na)-333(w)28(\\363z)-1(.)]TJ 27.879 -13.55 Td[(Jak)28(o\\273)-360(i)-360(n)1(o)-28(c)-360(nad)1(c)27(ho)-27(dzi\\252a,)-360(mrok)-359(g\\246)-1(stni)1(a\\252)-360(i)-360(cz)-1(ern)1(ia\\252,)-360(a)-360(d)1(e)-1(sz)-1(cz)-360(s)-1(i)1(\\246)-361(wzm)-1(aga\\252,)]TJ -27.879 -13.549 Td[(\\273e)-334(t)28(ylk)28(o)-333(plu)1(s)-1(k)56(a\\252o)-333(p)-28(o)-333(rozmi\\246)-1(k)1(\\252)-1(ej)-333(zie)-1(mi)-333(i)-333(ro)28(w)27(ac)28(h,)-333(j)1(akb)28(y)-333(kto)-333(z)-1(i)1(arnem)-334(sypa\\252.)]TJ 27.879 -13.549 Td[({)-318(J\\363zia!)-318(sk)28(o\\253cz)-1(ycie)-318(to)-318(dzisia)-56(j)1(?)-318({)-318(z)-1(a)28(w)27(o\\252a\\252a)-318(d)1(o)-318(B)-1(or)1(yni)1(anki,)-317(kt\\363ra)-318(z)-318(Hank)56(\\241)-318(i)]TJ -27.879 -13.549 Td[(Ku)1(b\\241)-333(wyc)-1(in)1(a\\252a)-334(w)-333(p)-27(o)-28(dle.)]TJ 27.879 -13.549 Td[({)-478(Sk)28(o\\253)1(c)-1(zym)27(y)-477(b)-28(o)-478(i)-478(cz)-1(as)-478(do)-478(dom)28(u,)-478(t)1(ak)55(a)-478(p)1(luc)28(ha,)-478(\\273e)-479(mnie)-478(ju)1(\\273)-479(d)1(o)-479(k)28(oszuli)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ej\\246\\252o.)-333(Je)-1(d)1(z)-1(iecie)-334(to)-333(ju)1(\\273)-1(?)]TJ 27.879 -13.55 Td[({)-468(Ju\\261c)-1(i)1(.)-469(No)-27(c)-469(z)-1(ar)1(ute\\253k)28(o)-468(i)-468(tak)56(a)-468(\\242)-1(ma,)-468(\\273)-1(e)-469(si\\246)-469(d)1(rogi)-468(n)1(ie)-469(rozez)-1(n)1(a)-1(.)-468(J)1(utro)-468(si\\246)]TJ -27.879 -13.549 Td[(zw)-1(i)1(e)-1(zie)-390(res)-1(zt\\246)-1(.)-389(S)1(ie)-1(l)1(n\\241)-390(macie)-390(k)56(apu)1(s)-1(t\\246!{)-390(d)1(o)-28(da\\252a)-389(p)-28(o)-27(c)27(h)28(yl)1(a)-56(j)1(\\241c)-390(s)-1(i\\246)-390(k)1(u)-390(n)1(im)-390(i)-389(patr)1(z)-1(\\241c)]TJ 0 -13.549 Td[(na)-333(ma)-56(j)1(ac)-1(z\\241c)-1(e)-334(w)-333(mgle)-334(ku)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(w)28(as)-1(za)-333(niez)-1(gor)1(s)-1(za,)-333(a)-334(j)1(u\\273)-334(co)-333(k)28(orpi)1(e)-1(le,)-333(to)-333(m)-1(acie)-334(n)1(a)-56(jwi\\246ksz)-1(e...)]TJ 0 -13.549 Td[({)-333(Z)-334(n)1(o)27(w)28(ego)-334(n)1(as)-1(ieni)1(a)-334(b)28(y)1(\\252a)-334(r)1(oz)-1(sada,)-333(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-333(p)1(rzywie)-1(\\271li)-333(z)-334(W)84(arsz)-1(a)28(wy)83(.)]TJ 0 -13.55 Td[({)-378(Jagna!)-378({)-379(ozw)27(a\\252)-378(s)-1(i)1(\\246)-379(z)-1(n)1(o)28(w)-1(u)-378(z)-379(mgie\\252)-379(g\\252os)-379(J\\363zi)-378({)-379(wiec)-1(i)1(e)-1(,)-378(a)-379(to)-378(ju)1(tro)-378(W)83(al)1(e)-1(k)]TJ -27.879 -13.549 Td[(J\\363ze)-1(f)1(\\363)27(w)-333(\\261)-1(l)1(e)-334(z)-334(w)28(\\363)-28(dk)56(\\241)-333(do)-333(Mary)1(s)-1(i)-333(p)-27(o)-28(ciotk)28(o)28(w)27(ej..)1(.)]TJ 27.879 -13.549 Td[({)-349(T)83(ak)1(i)-349(skrzat!)-348(A)-349(ma)-349(to)-349(on)1(a)-349(j)1(u\\273)-349(lata?)-349(W)1(idzi)-349(mi)-348(s)-1(i\\246,)-348(\\273)-1(e)-349(j)1(e)-1(sz)-1(cz)-1(e)-349(\\252on)1(i)-349(kr)1(o)27(wy)]TJ -27.879 -13.549 Td[(pasa\\252a!..)1(.)]TJ 27.879 -13.549 Td[({)-333(La)-334(c)28(h\\252opa)-333(to)-333(ju)1(\\273)-334(lata)-333(ma,)-334(al)1(e)-334(i)-333(m)-1(or)1(g\\363)28(w)-334(ma)-334(t)28(yl)1(a,)-334(\\273e)-334(si\\246)-334(p)1(arobk)1(i)-333(\\261)-1(p)1(ie)-1(sz)-1(\\241.)]TJ 0 -13.55 Td[({)-333(B)-1(\\246d\\241)-333(si\\246)-334(i)-333(do)-333(cie)-1(b)1(ie)-334(\\261pies)-1(zy\\252y)84(,)-333(J\\363z)-1(ia,)-333(b)-27(\\246d\\241...)]TJ 0 -13.549 Td[({)-440(Jak)-440(si\\246)-440(tatu\\261)-440(z)-440(trze)-1(ci\\241)-440(ni)1(e)-441(o\\273e)-1(n)1(i\\241!)-440({)-440(zakrzycz)-1(a\\252a)-440(Jagu)1(s)-1(t)28(yn)1(k)55(a)-439(gdzie)-1(\\261)-440(z)]TJ -27.879 -13.549 Td[(trzec)-1(iego)-333(z)-1(agona.)]TJ 27.879 -13.549 Td[({)-470(Co)-469(w)27(am)-470(te\\273)-470(w)-470(g\\252o)28(w)-1(i)1(e)-1(,)-469(a)-470(to)-27(\\242)-470(dopi)1(e)-1(r)1(o)-470(na)-469(z)-1(wies)-1(n)1(\\246)-470(matk)28(\\246)-470(p)-28(o)-28(c)28(ho)28(w)28(ali)-470({)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzia\\252a)-333(przetrw)28(o\\273)-1(on)28(y)1(m)-334(g\\252os)-1(em)-334(Han)1(k)55(a.)]TJ 27.879 -13.55 Td[({)-298(C)-1(o)-298(ta)-298(c)27(h\\252op)1(u)-298(s)-1(zk)28(o)-28(dzi.)-298(Ku)1(\\273)-1(d)1(e)-1(n)-298(c)28(h\\252op)-298(to)-298(jak)-298(te)-1(n)-298(wiepr)1(z)-1(ak)1(,)-299(\\273e)-1(b)29(y)-299(n)1(ie)-299(wiem)]TJ -27.879 -13.549 Td[(jak)-447(b)28(y\\252)-448(n)1(ac)27(h)1(lan)28(y)84(,)-448(to)-448(d)1(o)-448(no)28(w)28(e)-1(go)-448(k)28(or)1(yta)-448(r)1(yj)-447(w)-1(r)1(az)-1(i.)1(..)-448(Ho,)-447(ho,)-447(jedna)-447(jes)-1(zc)-1(ze)-448(nie)]TJ 0 -13.549 Td[(do)-55(jd)1(z)-1(i)1(e)-1(..)1(.)-336(nie)-336(os)-1(t)28(y)1(gnie)-336(c)-1(a\\252ki)1(e)-1(m,)-336(a)-336(ju)1(\\273)-337(za)-336(dr)1(ug\\241)-336(si\\246)-337(ogl\\241d)1(a...)-335(pies)-1(k)1(i)-336(to)-336(nar)1(\\363)-28(d..)1(.)-336(A)]TJ 0 -13.549 Td[(jak)-273(to)-274(zrob)1(i\\252)-274(S)1(ik)28(ora?)-274(W)-273(trzy)-273(t)27(y)1(go)-28(dn)1(ie)-274(p)-27(o)-274(p)-27(o)-28(c)27(h)1(o)27(wku)-273(p)1(ie)-1(r)1(w)-1(sz)-1(ej)-273(z)-274(dr)1(ug\\241)-274(si\\246)-274(o\\273e)-1(n)1(i\\252.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(al)1(e)-334(i)-333(drob)1(iazgu)-333(p)-28(o)-333(ni)1(e)-1(b)-27(os)-1(zcz)-1(ce)-334(os)-1(t)1(a\\252)-1(o)-333(pi)1(\\246)-1(cioro.)1(..)]TJ 0 -13.55 Td[({)-303(Rze)-1(kl)1(i\\261)-1(cie!)-303(Ale)-303(ino)-303(g\\252u)1(pie)-303(u)28(wierz\\241,)-303(\\273e)-304(la)-302(dzie)-1(ci)-303(si\\246)-303(p)-28(o\\273e)-1(n)1(i\\252...)-302(la)-303(s)-1(i)1(e)-1(b)1(ie)-1(,)-302(b)-28(o)]TJ -27.879 -13.549 Td[(m)27(u)-332(m)-1(ar)1(k)28(otno)-333(b)28(y\\252o)-333(s)-1(ame)-1(m)28(u)-333(p)-27(o)-28(d)-333(pi)1(e)-1(r)1(z)-1(yn)1(\\241)-334(')1(...)]TJ 27.879 -13.549 Td[({)-333(My)-333(b)28(y\\261w)27(a)-333(o)-55(jc)-1(u)-332(nie)-334(d)1(ali,)-333(oh)1(o!...)-333({)-333(z)-1(a)28(w)28(o\\252a\\252a)-334(energicz)-1(n)1(ie)-334(J\\363zia.)]TJ 0 -13.549 Td[({)-333(M\\252\\363)-28(d)1(k)55(a)-333(t)28(y)-333(jes)-1(zc)-1(ze)-1(,)-333(to)-333(i)-333(g\\252up)1(ia...)-333(o)-55(jco)28(w)-1(y)-333(gru)1(n)28(t,)-333(to)-333(i)-333(o)-56(j)1(c)-1(o)28(w)28(a)-334(w)28(ola!)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(ci)-333(te)-1(\\273)-334(co\\261)-334(znacz)-1(\\241)-333(i)-333(pr)1(a)27(w)28(o)-333(s)-1(w)28(o)-56(j)1(e)-334(m)-1(a)-55(j\\241)-333({)-333(z)-1(acz)-1(\\246\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-395(Z)-395(cudzego)-395(w)27(oza)-395(to)-395(z)-1(\\252a\\271)-395(c)27(h)1(o)-28(\\242)-396(i)-394(w)-396(p)-27(\\363\\252)-395(morza)-395({)-395(m)-1(r)1(ukn)1(\\246)-1(\\252a)-395(g\\252uc)28(ho)-395(Jagu)1(-)]TJ -27.879 -13.55 Td[(st)27(y)1(nk)56(a)-378(i)-378(z)-1(amilk)1(\\252)-1(a,)-378(b)-27(o)-378(J\\363zk)55(a)-378(rozgni)1(e)-1(w)28(ana)-378(zac)-1(z\\246)-1(\\252a)-378(na)28(w)28(o\\252yw)27(a\\242)-378(Witk)56(a,)-378(co)-379(si\\246)-378(b)28(y\\252)]TJ 0 -13.549 Td[(w)28(a\\252)-1(\\246sa\\252)-287(gdzie)-1(\\261)-287(n)1(ad)-286(rz)-1(ek)56(\\241,)-287(a)-286(Jagna)-287(si\\246)-287(n)1(ie)-287(w)-1(t)1(r\\241c)-1(a\\252a)-286(do)-287(tej)-286(rozm)-1(o)28(wy)-287({)-286(u\\261m)-1(i)1(e)-1(c)28(ha\\252a)]TJ 0 -13.549 Td[(si\\246)-290(i)1(no)-289(n)1(iekiedy)84(,)-289(\\273)-1(e)-289(si\\246)-289(to)-289(jej)-288(jarmark)-288(pr)1(z)-1(yp)-27(omnia\\252,)-288(i)-289(nosi\\252a)-289(k)56(apu)1(s)-1(t)1(\\246)-1(,)-289(a)-288(s)-1(k)28(or)1(o)-289(w)27(\\363z)]TJ 0 -13.549 Td[(b)28(y\\252)-333(ju)1(\\273)-334(p)-27(e)-1(\\252en,)-333(Szyme)-1(k)-333(j)1(\\241\\252)-334(wyj)1(e)-1(\\273d\\273a\\242)-334(ku)-333(d)1(ro)-28(d)1(z)-1(e.)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a)-56(jcie)-334(z)-333(B)-1(ogiem)-334({)-333(rzuci\\252a)-333(do)-333(s)-1(\\241siad)1(e)-1(k.)]TJ 0 -13.55 Td[({)-400(Jed\\271ta)-400(z)-400(B)-1(ogiem,)-400(m)27(y)-399(te)-1(\\273)-400(zaraz)-1(.)1(..)-400(Jagu)1(\\261)-1(,)-399(a)-400(przyj)1(dzie)-1(sz)-400(do)-400(nas)-400(ob)1(ie)-1(r)1(a\\242)-1(,)]TJ -27.879 -13.549 Td[(co?)]TJ\nET\nendstream\nendobj\n267 0 obj <<\n/Type /Page\n/Contents 268 0 R\n/Resources 266 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n266 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n272 0 obj <<\n/Length 8213      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(80)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(6.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-334(in)1(o,)-334(k)1(ie)-1(d)1(y)-333(p)-28(otr)1(z)-1(a,)-333(a)-333(pr)1(z)-1(yj)1(d\\246,)-333(J\\363z)-1(i)1(a,)-333(przyj)1(d\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(A)-334(w)-333(niedziel\\246)-334(c)28(h\\252opak)1(i)-334(wyp)1(ra)28(wia)-56(j)1(\\241)-334(m)28(uzyk)28(\\246)-334(u)-333(K)1(\\252\\246)-1(b)-27(\\363)28(w)-1(,)-333(wiec)-1(ie)-333(to?)]TJ 0 -13.549 Td[({)-333(Wiem)-1(,)-333(J\\363zia,)-333(wiem)-1(.)]TJ 0 -13.549 Td[({)-245(Sp)-27(otk)56(ac)-1(ie)-245(An)28(tk)56(a,)-245(to)-246(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(cie,)-246(\\273e)-246(cz)-1(ek)56(am)27(y)84(,)-246(n)1(iec)27(h)-245(si\\246)-246(p)-27(o\\261)-1(p)1(ie)-1(szy)-246({)-245(pr)1(os)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(Hank)56(a.)]TJ 27.879 -13.55 Td[({)-333(Dobr)1(z)-1(e,)-333(dobr)1(z)-1(e...)]TJ 0 -13.549 Td[(P)28(ob)1(ie)-1(g\\252a)-333(pr)1(\\246)-1(d)1(z)-1(ej,)-333(\\273)-1(eb)28(y)-333(dogn)1(a\\242)-334(w)27(\\363z,)-333(b)-28(o)-333(Szyme)-1(k)-333(o)-28(d)1(jec)27(ha\\252)-333(b)28(y\\252)-333(ju\\273)-333(z)-1(e)-334(sta)-56(j)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-322(in)1(o)-321(go)-321(s)-1(\\252y)1(c)27(ha\\242)-321(b)28(y\\252o,)-320(jak)-321(kl)1(\\241\\252)-321(na)-321(k)28(on)1(ia;)-321(w)28(\\363z)-322(gr)1(z)-1(\\246z)-1(n)1(\\241\\252)-321(i)-321(z)-1(ar)1(z)-1(yn)1(a\\252)-321(s)-1(i)1(\\246)-322(a\\273)-321(p)-27(o)-321(os)-1(ie)]TJ 0 -13.549 Td[(w)-341(rozmi\\246)-1(k\\252y)1(m)-1(,)-340(tor\\014)1(as)-1(t)28(ym)-341(gru)1(ncie,)-341(\\273)-1(e)-341(n)1(a)-341(do\\252k)56(ac)27(h)-340(i)-341(w)-341(gor)1(s)-1(zyc)27(h)-340(m)-1(i)1(e)-1(j)1(s)-1(cac)27(h)-340(ob)-28(o)-55(je)]TJ 0 -13.549 Td[(m)27(u)1(s)-1(i)1(e)-1(li)-333(p)-27(omaga\\242)-334(k)28(onio)28(wi,)-333(\\273e)-1(b)28(y)-333(wyci\\241)-28(gn)1(\\241\\252)-334(z)-333(trz\\246)-1(sa)27(wisk)56(a.)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-270(ob)-27(o)-56(j)1(e)-1(,)-269(Szyme)-1(k)-269(wi\\363)-28(d)1(\\252)-270(k)28(oni)1(a)-270(i)-269(z)-1(w)28(a\\273)-1(a\\252,)-269(\\273)-1(eb)28(y)-269(nie)-270(wywr\\363)-27(c)-1(i\\242,)-269(b)-28(o)-269(do\\252\\363)28(w)]TJ -27.879 -13.55 Td[(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-312(b)29(y\\252o)-311(p)-27(e)-1(\\252no,)-310(a)-311(Jagn)1(a)-311(s)-1(z\\252a)-311(z)-311(dr)1(ugiej)-311(stron)29(y)83(,)-310(p)-28(o)-28(d)1(pi)1(e)-1(ra\\252a)-310(ram)-1(i)1(e)-1(n)1(ie)-1(m)-311(w)28(\\363z)-311(i)]TJ 0 -13.549 Td[(rozm)27(y)1(\\261)-1(la\\252a,)-333(j)1(ak)-334(si\\246)-334(to)-333(tr)1(z)-1(eba)-333(wys)-1(tr)1(oi\\242)-334(n)1(a)-334(to)-333(obi)1(e)-1(r)1(anie)-334(d)1(o)-333(B)-1(or)1(yn\\363)28(w.)]TJ 27.879 -13.549 Td[(Mr)1(ok)-337(zapad)1(a\\252)-337(p)1(r\\246)-1(d)1(k)28(o,)-337(\\273e)-337(ledwie)-337(k)28(on)1(ia)-337(wid)1(a\\242)-337(b)28(y\\252o,)-336(des)-1(zc)-1(z)-337(j)1(akb)28(y)-336(pr)1(z)-1(es)-1(ta\\252,)]TJ -27.879 -13.549 Td[(t)28(ylk)28(o)-229(mokra,)-229(ci\\246)-1(\\273k)56(a)-230(mg\\252a)-229(w)-1(i)1(s)-1(ia\\252a,)-229(\\273e)-230(o)-28(d)1(dyc)28(ha\\242)-230(b)29(y\\252o)-230(ci\\246\\273)-1(k)28(o,)-229(a)-229(g\\363r\\241)-229(s)-1(zumia\\252)-229(g\\252uc)27(h)1(o)]TJ 0 -13.549 Td[(wiatr)-333(i)-333(bi)1(\\252)-334(w)-333(drze)-1(w)28(a)-333(na)-333(grob)1(li,)-333(do)-333(kt\\363r)1(e)-1(j)-333(d)1(o)-56(j)1(e)-1(\\273d\\273ali)-333(w\\252)-1(a\\261ni)1(e)-1(.)]TJ 27.879 -13.55 Td[(P)28(o)-28(d)1(jazd)-473(na)-473(grob)1(l\\246)-474(b)28(y\\252)-473(c)-1(i)1(\\246)-1(\\273ki,)-473(b)-27(o)-474(strom)28(y)-474(i)-473(\\261liski,)-473(k)28(o\\253)-473(ut)28(y)1(k)55(a\\252)-473(i)-473(c)-1(o)-473(krok)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-334(o)-28(d)1(p)-28(o)-27(c)-1(zyw)27(a\\242,)-333(\\273)-1(e)-333(le)-1(d)1(wie)-334(zdzie)-1(r)1(\\273)-1(eli)-333(w)28(\\363z)-1(,)-333(\\273)-1(eb)28(y)-333(n)1(ie)-334(uciek\\252.)]TJ 27.879 -13.549 Td[({)-290(Nie)-291(tr)1(z)-1(a)-290(b)28(y\\252o)-290(t)28(yle)-291(k)1(\\252a\\261)-1(\\242)-291(n)1(a)-291(j)1(e)-1(d)1(nego)-290(k)28(onia!)-290({)-290(oz)-1(w)28(a\\252)-290(s)-1(i\\246)-290(jaki\\261)-290(g\\252os)-291(z)-291(grob)1(li.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(wy)84(,)-333(An)28(toni)1(?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(.)]TJ 0 -13.55 Td[({)-333(A)-334(p)-27(o\\261pies)-1(za)-56(j)1(c)-1(i)1(e)-1(,)-333(b)-27(o)-334(j)1(u\\273)-334(tam)-333(Hank)56(a)-333(w)27(as)-334(wyp)1(atru)1(je...P)29(om)-1(\\363\\273c)-1(i)1(e)-334(nam...)]TJ 0 -13.549 Td[({)-266(P)28(o)-28(cz)-1(ek)56(a)-56(jcie,)-266(niec)27(h)-266(in)1(o)-266(z)-1(ejd)1(\\246)-1(,)-266(to)-266(p)-28(omog\\246.)-267(P)29(om)-1(r)1(ok)55(a)-266(tak)56(a,)-266(\\273)-1(e)-266(nic)-267(n)1(ie)-267(wid)1(a\\242)-1(.)]TJ 0 -13.549 Td[(Wj)1(e)-1(c)28(hali)-274(zaraz)-274(na)-274(gr)1(obl\\246,)-274(b)-27(o)-274(tak)-274(p)-27(ot\\246)-1(\\273ni)1(e)-275(p)-27(o)-28(dp)1(ar\\252,)-274(a\\273)-274(k)28(o\\253)-274(r)1(usz)-1(y\\252)-274(z)-274(k)28(op)28(yta)]TJ -27.879 -13.549 Td[(i)-333(z)-1(at)1(rz)-1(y)1(m)-1(a\\252)-333(s)-1(i)1(\\246)-334(dop)1(ie)-1(r)1(o)-334(n)1(a)-333(w)-1(i)1(e)-1(rzc)27(h)29(u.)]TJ 27.879 -13.549 Td[({)-465(B\\363g)-465(w)28(am)-466(zap\\252a\\242,)-465(ale)-465(te\\273)-465(m)-1(o)-27(c)-1(n)1(i)-465(jes)-1(t)1(e)-1(\\261c)-1(ie,)-465(\\273e)-465(lab)-27(oga!{)-465(wyci\\241)-28(gn\\246\\252a)-465(do)]TJ -27.879 -13.55 Td[(ni)1(e)-1(go)-333(r\\246k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[(Zamilkli)-391(nagle,)-392(w)28(\\363z)-392(ruszy\\252,)-392(a)-392(on)1(i)-392(sz)-1(li)-391(k)28(o\\252o)-392(s)-1(i)1(e)-1(b)1(ie)-392(nie)-392(wiedz\\241c)-1(,)-391(c)-1(o)-392(m\\363)28(w)-1(i)1(\\242)-1(,)]TJ -27.879 -13.549 Td[(zm)-1(iesz)-1(an)1(i)-334(d)1(z)-1(i)1(w)-1(n)1(ie)-334(ob)-27(o)-56(j)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(r)1(ac)-1(acie)-334(to?)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(c)-1(i)1(c)27(ho.)]TJ 0 -13.549 Td[({)-435(Ino)-435(c)-1(i\\246)-435(do)-435(m)-1(\\252y)1(na)-435(o)-28(dp)1(ro)28(w)27(ad)1(z)-1(\\246,)-435(Jagu\\261,)-435(b)-28(o)-435(tam)-435(w)-436(dr)1(o)-28(dze)-436(w)28(o)-28(da)-435(wyrw)28(\\246)]TJ -27.879 -13.55 Td[(zrobi)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(d)1(opi)1(e)-1(ro)-333(cie)-1(mn)1(ic)-1(a,)-333(co?)-334({)-333(wykrzykn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[({)-333(B)-1(oi)1(s)-1(z)-334(si\\246,)-333(Jagu\\261?)-334({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(pr)1(z)-1(ysu)28(w)28(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(bli)1(\\273)-1(ej.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(b)1(a\\252ab)28(ym)-334(si\\246)-334(ta.)1(..)]TJ 0 -13.549 Td[(Zno)28(wu)-310(z)-1(amil)1(kli)-310(i)-310(s)-1(zli)-310(tak)-310(pr)1(z)-1(y)-310(s)-1(ob)1(ie,)-311(\\273e)-311(b)1(io)-28(d)1(ro)-311(w)-310(bio)-27(dro,)-310(r)1(am)-1(i\\246)-310(w)-311(rami\\246...)]TJ 0 -13.549 Td[({)-333(A)-334(o)-27(c)-1(zy)-333(to)-334(si\\246)-334(w)28(am)-334(\\261w)-1(i)1(c)-1(\\241)-333(jak)-333(tem)27(u)-333(wil)1(k)28(o)27(wi.)1(..)-333(a\\273)-1(e)-333(dz)-1(i)1(w)-1(n)1(o...)]TJ 0 -13.55 Td[({)-333(B)-1(\\246dzies)-1(z)-334(w)-333(ni)1(e)-1(d)1(z)-1(iel\\246)-334(n)1(a)-334(m)28(uzyce)-334(u)-333(K\\252\\246b)-28(\\363)28(w?)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(matk)56(a)-333(m)-1(i)-333(d)1(adz\\241...)]TJ 0 -13.549 Td[({)-333(Przyj)1(d\\271,)-333(Jagu\\261,)-333(przyjd)1(\\271)-1(.)1(..)-333({)-334(p)1(rosi\\252)-333(c)-1(ic)28(h)28(ym,)-333(przyd)1(usz)-1(on)28(y)1(m)-334(g\\252os)-1(em.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(c)-1(ecie)-334(to?)-333({)-334(zap)28(yta\\252a)-333(m)-1(i)1(\\246)-1(kk)28(o,)-333(zagl\\241d)1(a)-56(j\\241c)-333(m)27(u)-333(w)-333(o)-28(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-312(Lab)-27(oga,)-312(a)-312(dy\\242)-312(in)1(o)-312(la)-312(c)-1(i)1(e)-1(b)1(ie)-313(zgo)-28(dzi\\252em)-313(skrzyp)1(k)55(a)-312(z)-312(W)83(ol)1(i)-312(i)-312(la)-312(ciebie)-312(nam\\363-)]TJ -27.879 -13.55 Td[(wi\\252e)-1(m)-366(K\\252\\246)-1(b)1(a,)-366(\\273)-1(eb)28(y)-366(da\\252)-366(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-366(la)-367(ciebie,)-366(Jagu\\261)-366(s)-1(ze)-1(p)1(ta\\252)-367(i)-366(tak)-366(p)1(rz)-1(y)1(s)-1(u)28(w)28(a\\252)-366(t)27(w)28(arz)]TJ 0 -13.549 Td[(do)-333(j)1(e)-1(j)-333(t)28(w)28(arzy)83(,)-333(i)-333(dysza\\252)-1(,)-333(a\\273)-333(s)-1(i\\246)-333(c)-1(of)1(n\\246\\252)-1(a)-333(n)1(ie)-1(co)-333(i)-334(zady)1(gota\\252a)-334(ze)-334(wz)-1(r)1(usz)-1(enia.)]TJ\nET\nendstream\nendobj\n271 0 obj <<\n/Type /Page\n/Contents 272 0 R\n/Resources 270 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n270 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n275 0 obj <<\n/Length 8808      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(81)]TJ -335.807 -35.866 Td[({)-333(Id\\271c)-1(ie)-333(ju\\273...)-333(cz)-1(ek)56(a)-56(j)1(\\241)-334(n)1(a)-334(w)28(as)-1(.)1(..)-333(jes)-1(zc)-1(ze)-334(kt)1(o)-334(n)1(as)-334(obacz)-1(y)84(...)-333(id)1(\\271)-1(cie...)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rzyjd)1(z)-1(i)1(e)-1(sz)-1(?)]TJ 0 -13.549 Td[({)-320(Przyj)1(d\\246...)-320(pr)1(z)-1(yj)1(d\\246...)-320({)-320(p)-28(o)28(wt\\363rzy\\252a)-320(obzie)-1(r)1(a)-56(j)1(\\241c)-321(s)-1(i)1(\\246)-321(z)-1(a)-320(ni)1(m)-1(,)-320(ale)-320(ju\\273)-320(z)-1(n)1(ikn)1(\\241\\252)]TJ -27.879 -13.549 Td[(w)-334(mgle,)-333(t)28(ylk)28(o)-333(o)-28(dg\\252os)-334(j)1(e)-1(go)-333(kr)1(ok)28(\\363)27(w)-333(s)-1(\\252y)1(c)27(ha\\242)-334(b)29(y\\252o)-334(p)-27(o)-333(b\\252o)-28(cie.)]TJ 27.879 -13.549 Td[(Dresz)-1(cz)-402(ni\\241)-401(ws)-1(tr)1(z)-1(\\241sn\\241\\252)-401(gw)27(a\\252to)28(wn)28(y)-401(i)-401(c)-1(o\\261)-402(j)1(ak)-402(p)1(\\252om)-1(i)1(e)-1(\\253)-401(wic)28(hrem)-402(p)1(rz)-1(elec)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-451(serc)-1(e)-450(i)-450(g\\252o)28(w)28(\\246)-1(;)-450(a\\273)-450(si\\246)-451(zato)-28(cz)-1(y)1(\\252a.)-450(Ani)-449(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)-450(co)-450(si\\246)-451(j)1(e)-1(j)-449(sta\\252)-1(o,)-449(o)-28(cz)-1(y)-450(j)1(\\241)]TJ 0 -13.549 Td[(pal)1(i\\252y)83(,)-449(jakb)28(y)-449(z)-1(asyp)1(ane)-450(z)-1(ar)1(z)-1(ew)-1(i)1(e)-1(m,)-450(tc)28(h)28(u)-450(z\\252apa\\242)-450(ni)1(e)-451(mog\\252a)-450(ni)-449(przycis)-1(zy\\242)-450(s)-1(erca)]TJ 0 -13.549 Td[(nami\\246tni)1(e)-259(bij)1(\\241c)-1(ego;)-259(r)1(oz)-1(k)1(\\252)-1(ad)1(a\\252a)-259(r)1(\\246)-1(ce)-259(b)-28(ez)-1(wiedn)1(ie,)-259(j)1(ak)-259(d)1(o)-259(ob)-27(e)-1(j)1(mo)27(w)28(ani)1(a,)-259(r)1(oz)-1(p)1(r\\246)-1(\\273a\\252a)]TJ 0 -13.549 Td[(si\\246)-266(w)-265(s)-1(ob)1(ie,)-265(b)-28(o)-265(j)1(\\241)-265(bra\\252y)-265(t)1(akie)-266(szalone)-265(c)-1(i\\241)-27(gotki,)-265(\\273e)-266(omal)-265(n)1(ie)-266(kr)1(z)-1(y)1(c)-1(za\\252a...)-265(d)1(op)-28(\\246dzi\\252a)]TJ 0 -13.549 Td[(w)28(oz)-1(u)1(,)-435(c)28(h)28(wyc)-1(i)1(\\252)-1(a)-434(s)-1(i)1(\\246)-435(lu\\261ni)-434(i)-434(c)27(ho)-27(\\242)-435(nie)-435(p)-27(otrza)-435(b)29(y\\252o,)-435(t)1(ak)-435(p)-27(ot\\246\\273)-1(n)1(ie)-435(p)-28(c)28(ha\\252a,)-434(a\\273)-435(w)27(\\363z)]TJ 0 -13.549 Td[(skrzypi)1(a\\252)-1(,)-260(c)27(h)28(wia\\252)-261(si\\246)-262(i)-261(g\\252\\363)28(wki)-261(spad)1(a\\252y)-261(w)-261(b\\252oto...)-260(a)-261(prze)-1(d)-260(o)-28(cz)-1(ami)-261(ci\\246)-1(gi)1(e)-1(m)-261(widzia\\252a)]TJ 0 -13.55 Td[(jego)-333(t)28(w)27(arz)-333(i)-334(o)-27(c)-1(zy)-333(rozis)-1(k)1(rz)-1(on)1(e)-1(,)-333(p)-27(o\\273\\241dliw)28(e...)-333(pal\\241ce...)]TJ 27.879 -13.549 Td[({)-274(Smok,)-274(n)1(ie)-275(c)27(h)1(\\252op..)1(.)-274(c)27(h)28(yb)1(a)-274(takiego)-275(d)1(ru)1(gie)-1(go)-274(w)28(e)-275(\\261w)-1(i)1(e)-1(cie)-275(n)1(ie)-275(ma...)-274({)-274(m)28(y\\261)-1(l)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(b)-27(e)-1(z\\252adn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Op)1(rzytomnia\\252)-399(j\\241)-399(tur)1(k)28(ot)-399(m)-1(\\252yn)1(a,)-399(ob)-28(ok)-399(k)1(t\\363rego)-400(p)1(rze)-1(j)1(e)-1(\\273d\\273ali,)-399(i)-399(sz)-1(u)1(m)-400(w)28(o)-28(dy)]TJ -27.879 -13.549 Td[(p\\252y)1(n\\241ce)-1(j)-364(na)-364(k)28(o\\252a)-365(i)-364(sp)-28(o)-28(d)-364(sta)28(wide\\252)-365(ot)28(w)28(art)28(yc)27(h)1(,)-364(b)-28(o)-364(przyb)-27(\\363r)-364(b)28(y\\252)-364(ogromn)28(y)83(.)-364(Rz)-1(ek)56(a)-365(z)]TJ 0 -13.55 Td[(ry)1(kiem)-329(g\\252uc)27(h)29(ym)-329(spad)1(a\\252a)-329(n)1(a)-329(d)1(\\363\\252)-329(i)-328(rozbi)1(ta)-329(n)1(a)-328(bia\\252\\241)-328(m)-1(i)1(az)-1(g\\246,)-328(k\\252\\246)-1(b)1(i\\252a)-329(si\\246)-329(i)-328(j)1(a\\261)-1(n)1(ia\\252a)]TJ 0 -13.549 Td[(w)-334(r)1(z)-1(ec)-1(e)-333(rozle)-1(w)28(a)-56(j)1(\\241c)-1(ej)-333(s)-1(i)1(\\246)-334(s)-1(zerok)28(o.)]TJ 27.879 -13.549 Td[(W)-386(d)1(om)27(u)-385(m)-1(\\252yn)1(arza,)-386(s)-1(to)-55(j\\241cym)-386(z)-1(ar)1(az)-387(p)1(rz)-1(y)-385(dro)-27(dze)-1(;)-386(j)1(u\\273)-386(s)-1(i)1(\\246)-387(\\261w)-1(i)1(e)-1(ci\\252o)-386(i)-386(pr)1(z)-1(ez)]TJ -27.879 -13.549 Td[(sz)-1(yb)29(y)-334(p)1(rzys)-1(\\252on)1(i\\246te)-334(\\014r)1(ank)56(ami)-334(wid)1(a\\242)-334(b)28(y)1(\\252)-1(o)-333(lamp)-27(\\246)-334(s)-1(to)-55(j\\241c\\241)-333(na)-333(s)-1(tol)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ma)-56(j)1(\\241)-333(lam)-1(p)-27(\\246)-334(ki)1(e)-1(j)-333(u)-333(d)1(obr)1(o)-28(dzieja)-333(alb)-27(o)-334(i)-333(w)28(e)-334(dw)28(orze)-334(jak)1(im)]TJ 0 -13.55 Td[(-B)-1(o)-496(to)-497(nie)-497(b)-27(ogac)-1(ze?)-1(.)1(..)-497(Gr)1(on)28(tu)-496(to)-497(ma)-497(wi\\246)-1(cej)-497(o)-28(d)-496(Boryn)29(y)-497(i)-497(n)1(a)-497(pr)1(o)-28(ce)-1(n)28(ta)]TJ -27.879 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-334(da)-55(je,)-333(i)-333(na)-333(m)-1(i)1(e)-1(leni)1(u)-333(to)-333(nie)-334(ok)1(piw)28(a,)-333(c)-1(o:)-333({)-333(c)-1(i)1(\\241)-28(gn\\241\\252)-333(Szyme)-1(k.)]TJ 27.879 -13.549 Td[({)-234(\\233yj)1(\\241)-234(kiej)-233(dzie)-1(d)1(z)-1(i)1(c)-1(e...)-233(T)83(akim)-234(to)-233(dobr)1(z)-1(e...)-233(P)28(o)-234(p)-27(ok)28(o)-56(j)1(u)-234(c)28(ho)-28(d)1(z)-1(\\241.)1(..)-234(n)1(a)-234(k)56(anap)1(ac)27(h)]TJ -27.879 -13.549 Td[(si\\246)-234(wyleguj)1(\\241...)-232(w)-234(cieple)-233(s)-1(i)1(e)-1(d)1(z)-1(\\241...)-232(s)-1(\\252o)-28(d)1(k)28(o)-233(jad)1(a)-56(j\\241,)-232(a)-233(lud)1(z)-1(ie)-233(na)-233(n)1(ic)27(h)-232(rob)1(i\\241...)-233({)-233(m)28(y\\261la\\252a,)]TJ 0 -13.549 Td[(ale)-383(b)-28(ez)-384(zazdro\\261c)-1(i)1(,)-383(nie)-383(s\\252)-1(u)1(c)27(h)1(a)-56(j\\241c)-383(Szymk)56(a,)-383(kt\\363ren)-383(o)-383(i)1(le)-384(mru)1(kliwy)-383(b)29(y\\252)-383(o)-383(t)27(y)1(le)-384(k)1(ie)-1(j)]TJ 0 -13.55 Td[(si\\246)-334(rozgada\\252,)-333(to)-333(ju)1(\\273)-334(b)-27(e)-1(z)-334(n)1(ijak)1(ie)-1(go)-333(k)28(o\\253)1(c)-1(a.)]TJ 27.879 -13.549 Td[(Do)28(wle)-1(k)1(li)-333(s)-1(i)1(\\246)-334(wre)-1(sz)-1(cie)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 0 -13.549 Td[(W)-261(i)1(z)-1(b)1(ie)-261(w)-1(i)1(dn)1(o)-261(b)28(y\\252o)-261(i)-260(c)-1(iep\\252o,)-260(ogie)-1(\\253)-260(b)1(uzo)27(w)28(a\\252)-261(si\\246)-262(w)28(es)-1(o\\252o)-261(n)1(a)-261(trzonie;)-261(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(obi)1(e)-1(r)1(a\\252)-334(zie)-1(mni)1(aki,)-333(a)-333(s)-1(tar)1(a)-334(n)1(as)-1(ta)28(wia\\252a)-333(k)28(olac)-1(j)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Jaki)1(\\261)-334(s)-1(tar)1(y)83(,)-333(siwy)-333(c)-1(z\\252o)27(wiek)-333(grza\\252)-334(si\\246)-334(p)1(rzy)-334(k)28(omin)1(ie)-1(.)]TJ 0 -13.55 Td[({)-333(Sk)28(o\\253)1(c)-1(zyli\\261c)-1(i)1(e)-1(,)-333(Jagu)1(\\261)-1(?)]TJ 0 -13.549 Td[(A)-333(ino,)-333(telo)-333(\\273)-1(e)-333(ta)-334(\\271dziebk)28(o,)-333(mo\\273)-1(e)-334(ze)-334(tr)1(z)-1(y)-333(p\\252ac)28(h)28(t)28(y)83(,)-333(osta\\252o)-334(n)1(a)-334(zagoni)1(e)-1(.)]TJ 0 -13.549 Td[(P)28(osz)-1(\\252a)-231(do)-231(k)28(om)-1(or)1(y)-232(si\\246)-232(pr)1(z)-1(ebr)1(a\\242)-232(i)-232(wkr)1(\\363tc)-1(e)-232(j)1(u\\273)-232(si\\246)-232(z)-1(wij)1(a\\252a)-232(p)-27(o)-232(i)1(z)-1(b)1(ie)-232(i)-232(n)1(arz\\241dza-)]TJ -27.879 -13.549 Td[(\\252a)-352(j)1(e)-1(d)1(z)-1(enie)-352(p)1(iln)1(ie)-352(p)-28(ogl)1(\\241da)-56(j)1(\\241c)-352(i)-352(ciek)55(a)28(wie)-352(na)-351(s)-1(tar)1(e)-1(go,)-351(kt\\363ren)-351(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-351(w)-352(g\\252\\246)-1(b)-27(okim)]TJ 0 -13.549 Td[(milcz)-1(eniu)1(,)-333(p)1(atrz)-1(a\\252)-333(w)-333(ogie\\253,)-332(prze)-1(b)1(iera\\252)-333(z)-1(i)1(arna)-333(r)1(\\363\\273)-1(a\\253)1(c)-1(a)-333(i)-332(p)-28(or)1(usz)-1(a\\252)-333(ustami.)-333(A)-333(gd)1(y)]TJ 0 -13.549 Td[(siadali)-333(d)1(o)-334(k)28(ol)1(ac)-1(j)1(i,)-333(s)-1(tar)1(a)-334(p)-27(o\\252o\\273)-1(y)1(\\252a)-334(\\252y\\273k)28(\\246)-334(dl)1(a)-334(n)1(iego)-334(i)-333(zaprasza\\252)-1(a.)]TJ 27.879 -13.55 Td[({)-375(Osta)-56(j)1(c)-1(i)1(e)-376(z)-375(Bogie)-1(m...)-374(z)-1(a)-55(jrz\\246)-375(tu)-375(j)1(e)-1(sz)-1(cz)-1(e,)-375(b)-27(o)-375(mo\\273)-1(e)-375(i)-375(w)-375(Lip)-27(c)-1(ac)28(h)-375(ostan\\246)-375(na)]TJ -27.879 -13.549 Td[(d\\252u)1(\\273)-1(ej.)1(..)]TJ 27.879 -13.549 Td[(Ukl\\246kn)1(\\241\\252)-415(n)1(a)-414(\\261)-1(r)1(o)-28(dk)1(u)-414(izb)28(y)83(,)-413(p)-28(o)-27(c)27(h)28(yl)1(i\\252)-414(s)-1(i\\246)-414(pr)1(z)-1(ed)-414(obr)1(az)-1(ami,)-414(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-414(i)-414(wy-)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(to?)-334({)-333(z)-1(ap)29(yta\\252a)-334(J)1(agna)-333(z)-1(d)1(z)-1(iwion)1(a.)]TJ 0 -13.55 Td[({)-400(W)83(\\246dro)28(wni)1(k)-401(ci)-400(to)-401(\\261wi\\246t)27(y)84(,)-400(o)-28(d)-400(grob)1(u)-400(Jez)-1(u)1(s)-1(o)28(w)27(ego)-400(idzie)-1(.)-400(Da)28(wno)-400(go)-400(z)-1(n)1(am)-1(,)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(tu)-333(n)1(ieraz)-334(b)28(yw)28(a\\252)-333(i)-334(p)1(rzynosi\\252)-333(\\261)-1(wi\\246to\\261c)-1(i)-333(r\\363\\273ne...)-333(Jak)28(o\\261)-334(ze)-334(tr)1(z)-1(y)-333(rok)1(i)-333(te)-1(m)28(u...)]TJ\nET\nendstream\nendobj\n274 0 obj <<\n/Type /Page\n/Contents 275 0 R\n/Resources 273 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n273 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n278 0 obj <<\n/Length 7523      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(82)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(6.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(Nie)-333(s)-1(k)28(o\\253)1(c)-1(zy\\252a,)-333(b)-28(o)-333(ws)-1(zed\\252)-333(Jam)27(b)1(ro\\273y)83(,)-333(p)-27(o)-28(c)27(h)29(w)27(ali\\252)-333(Boga)-333(i)-333(usiad\\252)-333(pr)1(z)-1(ed)-333(k)28(omi-)]TJ -27.879 -13.549 Td[(nem.)]TJ 27.879 -13.549 Td[({)-333(Zi\\241b)-333(taki)-333(i)-333(pl)1(uc)27(h)1(a,)-333(\\273)-1(e)-334(a\\273e)-334(mi)-333(m)-1(o)-55(ja)-333(dr)1(e)-1(wn)1(iana)-333(noga)-333(s)-1(k)28(ostn)1(ia\\252a)]TJ 0 -13.549 Td[({)-268(W)83(am)-268(te\\273)-269(p)-27(o)-268(no)-28(cy)-268(i)-268(tak)1(im)-269(b)1(\\252o)-28(c)27(ku)-267(\\252az)-1(i\\242...)-267(nie)-268(s)-1(iedzielib)28(y)1(\\261)-1(cie)-269(t)1(o)-269(w)-268(c)27(h)1(a\\252up)1(ie)]TJ -27.879 -13.549 Td[(i)-333(pacierze)-334(s)-1(e)-333(prze)-1(p)-27(o)28(wiadali)1(...mru)1(c)-1(za\\252a)-334(D)1(om)-1(in)1(ik)28(o)28(w)27(a.)]TJ 27.879 -13.55 Td[({)-298(Cni\\252o)-298(mi)-298(s)-1(i\\246)-298(s)-1(ame)-1(m)28(u,)-298(tom)-298(do)-298(d)1(z)-1(ieuc)28(h)-298(wys)-1(ze)-1(d)1(\\252)-298(i)-298(do)-298(c)-1(i)1(e)-1(b)1(ie)-1(,)-298(Jagu)1(\\261)-1(,)-298(p)1(ierw-)]TJ -27.879 -13.549 Td[(sz)-1(ej)-333(ws)-1(t\\241)-28(p)1(i\\252em)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Kos)-1(t)1(uc)27(h)1(a)-334(w)28(asz)-1(ej)-333(dzie)-1(wu)1(s)-1(ze)-334(na)-333(imi\\246...)]TJ 0 -13.549 Td[({)-333(Z)-334(m\\252o)-28(dszym)-1(i)-333(h)29(ula,)-333(a)-333(o)-334(mni)1(e)-334(c)-1(a\\252k)1(ie)-1(m)-333(z)-1(ab)1(ac)-1(zy\\252a!..)1(.)]TJ 0 -13.549 Td[({)-333(Ale)-1(?..)1(.)-333({)-334(zagadn)1(\\246)-1(\\252a)-333(Dom)-1(i)1(nik)28(o)28(w)28(a)-334(p)29(yta)-56(j)1(\\241c)-1(o.)]TJ 0 -13.549 Td[({)-333(Pra)28(wd\\246)-333(m)-1(\\363)28(wi\\246.)-333(Dobro)-27(dzie)-1(j)-333(b)29(y\\252)-334(z)-333(P)28(anem)-334(Jez)-1(u)1(s)-1(em)-334(u)-333(Bartk)56(a)-333(z)-1(a)-333(w)28(o)-28(d\\241.)1(..)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(e)-1(..)1(.)-333(na)-333(jarmark)1(u)-333(w)-1(i)1(dzia\\252am)-334(go)-333(z)-1(d)1(ro)28(wym...)]TJ 0 -13.549 Td[({)-333(Zi\\246)-1(ciasz)-1(ek)-333(c)-1(i)-333(go)-333(tak)-333(s)-1(p)1(ra\\252)-333(k)28(o\\252)-1(k)1(ie)-1(m,)-333(\\273e)-334(a\\273)-334(m)27(u)-332(w)27(\\241tp)1(ia)-334(o)-27(db)1(i\\252.)]TJ 0 -13.549 Td[({)-333(O)-333(c)-1(\\363\\273,)-333(kiedy?...)]TJ 0 -13.549 Td[({)-312(A)-312(o)-311(c)-1(\\363\\273)-312(ba,)-311(jak)-311(nie)-312(o)-312(gr)1(on)28(t.)-312(W)84(adzili)-311(s)-1(i)1(\\246)-313(j)1(u\\273)-312(z)-312(p)-28(\\363\\252)-312(r)1(oku,)-311(a\\273)-312(s)-1(i\\246)-312(i)-311(dzis)-1(i)1(a)-56(j)-311(w)]TJ -27.879 -13.549 Td[(p)-27(o\\252e)-1(d)1(nie)-334(p)-27(orac)28(ho)28(w)27(al)1(i.)]TJ 27.879 -13.55 Td[({)-333(\\233e)-334(to)-333(k)55(ar)1(y)-333(b)-28(oskiej)-333(nie)-333(m)-1(a)-333(na)-333(t)28(yc)28(h)-333(z)-1(ab)1(ijak)28(\\363)28(w{)-333(oz)-1(w)28(a\\252)-1(a)-333(si\\246)-334(Jagn)1(a.)]TJ 0 -13.549 Td[({)-336(P)1(rzyjd)1(z)-1(ie,)-336(n)1(ie)-336(b)-27(\\363)-56(j)-335(s)-1(i\\246,)-336(J)1(agno,)-336(p)1(rzyjd)1(z)-1(i)1(e)-337({)-335(rze)-1(k\\252a)-336(t)28(w)28(ard)1(o)-336(s)-1(tar)1(a)-336(wz)-1(n)1(os)-1(z\\241c)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)-333(n)1(a)-334(ob)1(razy)-333(\\261)-1(wi\\246te)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(to)-334(j)1(u\\273)-334(p)-27(omar\\252,)-333(nie)-333(w)-1(stan)1(ie)-334({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(Jam)27(b)1(ro\\273y)-334(cic)28(ho.)]TJ 0 -13.549 Td[({)-333(Siad)1(a)-56(j)1(c)-1(ie)-333(do)-333(m)-1(i)1(s)-1(ki)1(,)-334(zjecie)-1(,)-333(co)-334(j)1(e)-1(st.)]TJ 0 -13.55 Td[({)-363(Ni)1(e)-364(o)-27(d)-363(t)1(e)-1(gom,)-363(n)1(ie.)-363(Mi)1(s)-1(ec)-1(zc)-1(e)-363(j)1(e)-1(d)1(nej,)-362(b)-28(ele)-363(d)1(u\\273e)-1(j)1(,)-363(p)-27(orad)1(z)-1(\\246)-363(jesz)-1(cz)-1(e)-363({)-363(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(kp)1(iw)27(a\\252.)]TJ 27.879 -13.549 Td[({)-333(W)83(am)-333(to)-334(i)1(no)-333(przekpiw)28(ani)1(a)-334(w)-333(g\\252o)27(wie)-333(i)-334(zaba)28(w)28(a.)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(a)-334(i)-333(mo)-56(j)1(e)-1(go,)-333(t)28(yl)1(a)-1(,)-333(n)1(a)-334(c\\363\\273)-334(mi)-333(tur)1(bacje,)-333(h\\246?)]TJ 0 -13.549 Td[(Ob)1(s)-1(iedl)1(i)-268(\\252a)28(wk)28(\\246)-1(,)-267(na)-268(k)1(t\\363re)-1(j)-267(sta\\252y)-268(miski,)-267(i)-268(jedl)1(i)-268(w)28(olno)-267(i)-268(w)-268(milcz)-1(eni)1(u.)-268(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)]TJ -27.879 -13.55 Td[(pi)1(lno)28(w)28(a\\252,)-399(\\273)-1(eb)28(y)-399(dok)1(\\252ada\\242)-400(i)-399(d)1(olew)27(a\\242,)-399(t)28(ylk)28(o)-399(Jam)27(b)1(ro\\273y)-399(raz)-399(p)-28(o)-399(raz)-399(p)-28(o)28(wiad)1(a\\252)-400(j)1(akie)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(o)-385(ucie)-1(szne)-386(i)-384(s)-1(am)-385(s)-1(i\\246)-385(\\261)-1(mia\\252)-385(n)1(a)-56(jb)1(ard)1(z)-1(iej,)-385(b)-27(o)-385(c)27(h)1(\\252opaki)1(,)-385(c)27(ho)-27(c)-1(ia\\273)-385(rad)1(e)-386(b)28(y)1(\\252)-1(y)-384(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(mia\\242,)-333(bali)-333(si\\246)-334(srogiego)-334(wzroku)-333(matki)1(.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(o)-28(dziej)-333(w)-334(d)1(om)27(u?)-333({)-334(zagadn)1(\\246)-1(\\252a)-333(p)-27(o)-28(d)-333(k)28(oni)1(e)-1(c.)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-334(b)28(y)-333(na)-333(taki)1(e)-334(b\\252oto?)-333(T)83(ak)-333(\\233)-1(y)1(d)-333(w)-334(ksi\\241\\273k)56(ac)27(h)-333(sie)-1(d)1(z)-1(i.)]TJ 0 -13.55 Td[({)-333(M\\241dr)1(y)-333(c)-1(i)-333(on)1(,)-334(m\\241d)1(ry)83(.)1(..)]TJ 0 -13.549 Td[({)-333(I)-334(d)1(obry)84(,)-333(\\273)-1(e)-333(nie)-333(z)-1(n)1(ale)-1(\\271\\242)-334(lepsz)-1(ego...)-333({)-333(do)-27(da\\252a)-333(Jagna.)]TJ 0 -13.549 Td[({)-296(J)1(u\\261c)-1(i.)1(..)-296(p)-27(ew)-1(n)1(ie...)-295(na)-295(brzuc)28(h)-295(s)-1(e)-296(n)1(ie)-296(plu)1(je)-296(an)1(i)-296(d)1(ru)1(gie)-1(m)28(u)-295(na)-295(bro)-28(d)1(\\246)-1(,)-295(a)-295(c)-1(o)-295(m)27(u)]TJ -27.879 -13.549 Td[(kto)-333(da,)-333(w)28(e)-1(\\271mie)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(tl)1(ib)28(y\\261c)-1(i)1(e)-334(b)-27(e)-1(le)-334(cze)-1(go.)]TJ 0 -13.549 Td[(P)28(o)28(ws)-1(tal)1(i)-390(o)-27(d)-390(k)28(ol)1(ac)-1(j)1(i.)-390(J)1(agna)-390(ze)-390(star\\241)-390(siad)1(\\252y)-390(d)1(o)-390(k)56(\\241dzieli)-390(p)1(rze)-1(d)-389(k)28(omin)1(e)-1(m,)-390(a)]TJ -27.879 -13.55 Td[(syno)28(wie)-251(jak)-251(zwykle)-251(za)-56(j\\246li)-251(si\\246)-251(s)-1(p)1(rz\\241tani)1(e)-1(m,)-251(m)27(y)1(c)-1(iem)-251(nacz)-1(y\\253)-250(i)-251(ob)1(rz\\241dki)1(e)-1(m.)-251(T)83(ak)-251(j)1(u\\273)]TJ 0 -13.549 Td[(za)27(w\\273dy)-226(u)-226(Domini)1(k)28(o)27(w)28(e)-1(j)-226(b)29(y\\252o,)-226(\\273)-1(e)-227(syn\\363)28(w)-226(s)-1(w)28(oic)27(h)-226(d)1(z)-1(ier\\273y\\252a)-226(\\273)-1(elaz)-1(n)1(\\241)-227(r)1(\\246)-1(k)56(\\241)-226(i)-227(r)1(yc)27(h)29(to)27(w)28(a\\252a)]TJ 0 -13.549 Td[(ic)28(h)-333(na)-333(dziew)-1(k)1(i,)-333(\\273)-1(eb)28(y)-333(ino)-333(Jagu)1(s)-1(ia)-333(r\\241czk)28(\\363)27(w)-333(s)-1(e)-333(nie)-334(p)-27(omaz)-1(a\\252a)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273y)-369(zapali\\252)-369(f)1(a)-56(j)1(k)28(\\246)-370(,p)29(yk)55(a\\252)-369(w)-369(k)28(omin,)-369(t)1(o)-369(p)-28(op)1(ra)28(w)-1(i)1(a\\252)-369(g\\252)-1(o)28(wni)1(e)-370(i)-369(d)1(orzuca\\252)]TJ -27.879 -13.549 Td[(ga\\252\\246)-1(zi)-333(i)-333(raz)-334(w)-333(raz)-334(sp)-28(ogl)1(\\241da\\252)-333(na)-333(k)28(obiet)28(y)83(,)-333(w)28(a\\273)-1(y)1(\\252)-334(cos)-1(ik)-333(w)-333(g\\252o)27(wie)-333(i)-333(uk\\252ad)1(a\\252)-1(.)]TJ 27.879 -13.55 Td[({)-333(B)-1(y)1(\\252)-1(y)-333(p)-27(ono)-333(u)-333(w)28(as)-334(s)-1(w)28(at)28(y?)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(to)-333(jedn)1(e)-1(.)]TJ\nET\nendstream\nendobj\n277 0 obj <<\n/Type /Page\n/Contents 278 0 R\n/Resources 276 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n276 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n281 0 obj <<\n/Length 7229      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(83)]TJ -335.807 -35.866 Td[({)-252(Nie)-252(dziw)28(ota,)-252(Jagn)1(a)-252(kiej)-252(malo)28(w)27(an)1(a.)-252(Dob)1(ro)-28(d)1(z)-1(iej)-252(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252,)-252(\\273)-1(e)-252(i)-252(w)-252(mie\\261)-1(cie)]TJ -27.879 -13.549 Td[(ni)1(e)-334(s)-1(p)-27(otk)56(a\\242)-334(p)1(i\\246)-1(k)1(niejsz)-1(ej:)]TJ 27.879 -13.549 Td[(Jagn)1(a)-334(p)-27(o)-28(cz)-1(erwienia\\252a)-333(z)-334(ucies)-1(zno\\261c)-1(i)1(.)]TJ 0 -13.549 Td[({)-441(T)83(ak)-440(p)-28(o)28(wiedzia\\252!)-441(Niec)27(h)-440(m)27(u)-440(B\\363g)-441(da)-441(zdr)1(o)27(wie!)-441(D)1(a)27(wn)1(o)-441(s)-1(i\\246)-441(j)1(u\\273)-441(z)-1(b)1(iera\\252am)]TJ -27.879 -13.549 Td[(zanie\\261)-1(\\242)-333(na)-333(w)27(ot)28(yw)28(\\246)-1(,)-333(d)1(a)27(wn)1(o,)-333(ale)-334(ju)1(tro)-333(zaraz)-334(zanies)-1(\\246.)]TJ 27.879 -13.55 Td[({)-328(P)1(rz)-1(y)1(s)-1(\\252a\\252b)28(y)-328(t)1(u)-328(j)1(e)-1(sz)-1(cz)-1(e)-328(kto\\261)-328(z)-328(w)27(\\363)-28(d)1(k)56(\\241)-1(,)-327(ino)-327(s)-1(i\\246)-328(b)-27(o)-56(j\\241)-327(\\271)-1(d)1(z)-1(iebk)28(o.)1(..)-328({)-328(zac)-1(z\\241\\252)-328(p)-28(o)]TJ -27.879 -13.549 Td[(cic)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[({)-283(P)28(ar)1(ob)-28(ek?...)-283({)-282(z)-1(ap)28(y)1(ta\\252)-1(a)-282(s)-1(tar)1(a)-283(na)28(wija)-55(j\\241c)-283(na)-283(f)1(urk)28(o)-27(c)-1(z\\241c)-1(e)-283(p)-28(o)-282(p)-28(o)-28(d)1(\\252o)-28(dze)-283(w)-1(r)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ciono.)]TJ 27.879 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arz)-334(n)1(a)-334(ca\\252\\241)-333(w)-1(i)1(e)-1(\\261,)-333(ro)-28(do)28(wy)84(...)-333(ale)-334(wd)1(o)27(wiec)-1(.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(c)27(k)28(\\363)28(w)-333(c)-1(u)1(dzyc)27(h)-333(k)28(oleba\\252a)-333(ni)1(e)-334(b)-27(\\246)-1(d)1(\\246)-1(..)1(.)]TJ 0 -13.55 Td[({)-333(Odc)28(ho)28(w)27(an)1(e)-1(,)-333(n)1(ie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(Jagu\\261,)-333(o)-28(dc)28(ho)28(w)27(an)1(e)-1(.)]TJ 0 -13.549 Td[(Co)-377(jej)-376(tam)-378(p)-27(o)-377(starym..)1(.)-377(ma)-377(jes)-1(zc)-1(ze)-377(lata...)-376(p)-28(o)-27(c)-1(ze)-1(k)56(a)-377(si\\246)-377(i)-377(na)-376(m)-1(\\252o)-28(d)1(e)-1(go,)-376(jak)]TJ -27.879 -13.549 Td[(si\\246)-334(jej)-333(u)1(da)-333(jaki.)]TJ 27.879 -13.549 Td[({)-294(T)83(akiego)-294(nie)-294(br)1(akni)1(e)-1(,)-294(a)-294(b)-27(o)-294(to)-294(m)-1(\\252o)-28(d)1(yc)27(h)-293(brak)1(?)-295(Jak)-294(\\261wiec)-1(e)-295(c)28(h\\252op)1(aki,)-294(p)1(apie-)]TJ -27.879 -13.549 Td[(rosy)-360(p)1(al\\241,)-359(w)-360(k)56(arc)-1(zmie)-360(ta\\253cuj)1(\\241,)-360(gor)1(z)-1(a\\252k)28(\\246)-360(pi)1(j\\241)-360(i)-359(in)1(o)-360(p)1(a)-1(t)1(rz)-1(\\241)-359(z)-1(a)-359(dzieuc)27(h)1(am)-1(i)1(,)-360(kt)1(\\363)-1(r)1(a)]TJ 0 -13.55 Td[(jak)1(ie)-276(morgi)-275(m)-1(a)-275(i)-275(tro)-28(c)27(h)1(\\246)-276(goto)28(w)27(ego)-276(gr)1(os)-1(za,)-275(\\273)-1(eb)28(y)-275(balo)28(w)28(a\\242)-276(b)28(y\\252o)-275(z)-1(a)-275(c)-1(o..)1(.)-276(G)1(os)-1(p)-27(o)-28(dar)1(z)-1(e)]TJ 0 -13.549 Td[(ju)1(c)27(h)28(y)84(,)-365(d)1(o)-365(p)-28(o\\252edn)1(ia)-365(\\261)-1(p)1(i\\241,)-365(a)-365(p)-27(o)-365(p)-27(o\\252e)-1(d)1(niu)-364(tac)-1(zk)56(am)-1(i)-364(gn\\363)-55(j)-365(w)28(o\\273)-1(\\241)-365(i)-365(mot)28(ycz)-1(k)56(ami)-365(orz\\241)]TJ 0 -13.549 Td[(p)-27(ole)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Na)-334(p)-27(oni)1(e)-1(wierk)28(\\246)-334(tak)1(ie)-1(m)28(u)-333(Jagn)28(y)-333(n)1(ie)-334(dam.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(r\\363\\273)-1(n)1(o)-333(m)-1(\\363)28(wi\\241,)-333(\\273)-1(e\\261)-1(cie)-334(w)28(e)-334(wsi)-334(n)1(a)-56(j)1(m)-1(\\241d)1(rze)-1(j)1(s)-1(za...)]TJ 0 -13.55 Td[({)-333(Ale)-334(i)-333(za)-334(starym)-333(te)-1(\\273)-333(ucie)-1(c)28(h)28(y)-333(nij)1(akiej)-333(dl)1(a)-334(m\\252\\363)-28(dk)1(i...)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(d)1(o)-333(ucie)-1(c)28(h)28(y)-333(nie)-333(m)-1(a)-333(m\\252)-1(o)-27(dyc)28(h?)]TJ 0 -13.549 Td[({)-333(Star)1(y\\261)-1(cie)-334(k)1(ie)-1(j)-333(\\261wiat,)-333(a)-333(pstro)-333(w)27(am)-333(jes)-1(zc)-1(ze)-334(w)28(e)-334(\\252bie)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252a)-334(sur)1(o)27(w)28(o.)]TJ 0 -13.549 Td[({)-333(I...)-333(gada)-333(si\\246)-1(,)-333(b)28(y)1(le)-334(oz\\363r)-333(nie)-334(skie\\252c)-1(za\\252.)]TJ 0 -13.549 Td[(Zamilkli)-333(n)1(a)-334(d)1(\\252ugo.)]TJ 0 -13.55 Td[({)-333(Star)1(y)-334(u)1(s)-1(zan)28(u)1(je)-334(i)-333(n)1(a)-334(cud)1(z)-1(y)-333(grosz)-334(n)1(ie)-1(\\252asy)-333({)-334(p)-27(o)-28(d)1(j\\241\\252)-333(z)-1(n)1(o)27(wu)-333(Jam)28(br)1(o\\273)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(n)1(ie,)-334(i)1(no)-333(obraza)-333(b)-28(osk)56(a)-334(z)-333(te)-1(go)-333(b)28(yw)28(a.)]TJ 0 -13.549 Td[({)-333(M\\363g\\252b)28(y)-333(zapis)-334(zrob)1(i\\242)-334({)-333(rze)-1(k\\252)-333(se)-1(ri)1(o)-334(wytr)1(z)-1(\\241sa)-56(j)1(\\241c)-334(fa)-55(jk)28(\\246)-334(n)1(a)-333(trzon.)]TJ 0 -13.549 Td[({)-488(Jagn)1(a)-488(ma)-488(dosy\\242)-488(s)-1(w)28(o)-56(j)1(e)-1(go)-487({)-488(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-487(p)-28(o)-487(c)27(h)28(wili)1(,)-488(w)27(ah)1(a)-56(j)1(\\241c)-1(a)-487(ju\\273)-488(i)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)-27(e)-1(wn)1(a.)]TJ 27.879 -13.55 Td[({)-333(Wi\\246c)-1(ej)-333(b)28(y)-333(on)-333(da\\252,)-333(n)1(i\\271)-1(l)1(i)-333(w)-1(zi\\241\\252,)-333(wi\\246)-1(cej.)]TJ 0 -13.549 Td[({)-333(Rz)-1(ekli\\261c)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[({)-497(Co)-497(wiad)1(om)-1(o;)-496(ni)1(e)-497(z)-498(wiat)1(ru)-496(w)-1(zi\\241\\252em)-497(ani)-496(z)-498(p)-27(om)28(y\\261)-1(l)1(unk)1(u)-497(n)1(ie)-497(o)-28(d)-496(s)-1(i)1(e)-1(b)1(ie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252e)-1(m...)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-415(z)-1(n)1(o)27(wu)1(.)-415(Star)1(a)-416(og\\252ad)1(z)-1(a\\252a)-415(d\\252u)1(go)-415(rozw)-1(i)1(c)27(hr)1(z)-1(on)1(\\241)-416(k)56(\\241d)1(z)-1(iel,)-415(p)-27(otem)-416(p)-27(o-)]TJ -27.879 -13.549 Td[(\\261lini)1(\\252a)-349(p)1(ale)-1(c)-349(i)-348(j)1(\\246)-1(\\252a)-348(w)-1(y)1(c)-1(i\\241)-27(ga\\242)-349(lni)1(ane)-349(w\\252\\363kna)-348(lew)27(\\241)-348(r\\246k)56(\\241,)-349(a)-348(pr)1(a)28(w)27(\\241)-348(pu)1(s)-1(zc)-1(za\\252a)-349(w)-348(w)-1(i)1(r)]TJ 0 -13.55 Td[(wrze)-1(ciono,)-333(\\273e)-334(z)-334(w)28(arcz)-1(eniem,)-333(kieb)28(y)-333(b\\241k,)-333(kr)1(\\246)-1(ci\\252o)-333(s)-1(i\\246)-333(p)-28(o)-333(p)-27(o)-28(d\\252o)-28(d)1(z)-1(e)-333(i)-334(f)1(ur)1(k)28(ota\\252o.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-1(?)-333(Ma)-333(to)-334(p)1(rzys)-1(\\252a\\242?)]TJ 0 -13.549 Td[({)-333(Kt\\363ren?)]TJ 0 -13.549 Td[({)-369(Ni)1(e)-369(wie)-1(cie)-369(to?)-369(A)-368(dy)1(\\242)-369(tam)27(ten!)-368({)-369(wsk)56(az)-1(a\\252)-369(p)1(rze)-1(z)-369(ok)1(no)-368(na)-369(\\261wiat\\252a,)-368(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(migo)-28(cz)-1(\\241ce)-334(pr)1(z)-1(ez)-334(sta)27(w,)-333(u)-333(Boryn)29(y)83(.)]TJ 27.879 -13.55 Td[({)-274(Doros\\252e)-275(d)1(z)-1(i)1(e)-1(ci,)-274(d)1(obrego)-274(s)-1(\\252o)28(w)28(a)-274(nie)-274(dad)1(z)-1(\\241)-274(i)-273(pra)28(w)28(a)-274(do)-274(sw)27(oic)28(h)-274(cz)-1(\\246\\261)-1(ci)-274(ma)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-358(Ale)-358(mo\\273)-1(e)-358(zapisa\\242)-359(t)1(o,)-358(co)-358(jego...)-357(jak\\273e)-1(?...)-357(A)-358(c)27(h)1(\\252op)-358(d)1(obr)1(y)-358(i)-358(gosp)-28(o)-27(darz)-358(n)1(ie)]TJ\nET\nendstream\nendobj\n280 0 obj <<\n/Type /Page\n/Contents 281 0 R\n/Resources 279 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n279 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n284 0 obj <<\n/Length 9647      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(84)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(6.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(b)-27(e)-1(le)-250(jaki)1(,)-251(i)-250(p)-27(ob)-27(o\\273)-1(n)28(y)84(,)-250(i)-250(krze)-1(p)1(ki)-250(jes)-1(zc)-1(ze,)-251(sam)-251(wid)1(z)-1(ia\\252em,)-251(j)1(ak)-250(s)-1(e)-250(k)28(orz)-1(ec)-251(\\273yta)-250(z)-1(ad)1(a)27(w)28(a\\252)]TJ 0 -13.549 Td[(na)-360(pl)1(e)-1(cy)83(.)-360(Ju\\273)-361(tam)-361(b)29(y)-361(Jagn)1(ie)-361(ni)1(c)-361(nie)-361(b)1(rak)28(o)28(w)27(a\\252o,)-360(c)27(h)28(yb)1(a)-361(tego)-361(p)1(tas)-1(i)1(e)-1(go)-360(m)-1(lek)56(a...)-360(a)]TJ 0 -13.549 Td[(\\273e)-308(w)27(asz)-308(J\\246)-1(d)1(rzyc)27(h)-307(na)-307(b)-28(ez)-1(r)1(ok)-308(d)1(o)-308(w)28(o)-56(j)1(s)-1(k)56(a)-308(sta)-56(j)1(e)-1(.)1(..)-307(to)-308(Boryn)1(a)-308(z)-308(ur)1(z)-1(\\246dn)1(ik)56(am)-1(i)-307(si\\246)-308(z)-1(n)1(a,)]TJ 0 -13.549 Td[(wie,)-334(d)1(o)-333(k)28(ogo)-334(tr)1(a\\014\\242,)-334(m\\363g\\252b)28(y)-333(p)-27(om)-1(\\363)-27(c)-1(.)-333(..)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(c)-1(i)-333(si\\246)-334(wid)1(z)-1(i,)-333(Jagu)1(\\261)-1(?...)]TJ 0 -13.55 Td[({)-441(Mn)1(ie)-442(ta)-441(ws)-1(zystk)28(o)-441(jedn)1(o,)-441(k)55(a\\273ec)-1(ie,)-441(to)-441(p)-27(\\363)-56(jd)1(\\246)-1(.)-441(.)-440(w)27(asz)-1(a)-441(w)-441(t)27(y)1(m)-442(g\\252o)28(w)27(a)-441(n)1(ie)]TJ -27.879 -13.549 Td[(mo)-56(j)1(a...)-344({)-345(m\\363)28(wi\\252a)-345(cic)28(ho,)-344(ws)-1(p)1(ar\\252a)-345(czo)-1(\\252o)-344(na)-344(k)56(\\241dzieli)-344(i)-344(z)-1(ap)1(atrzy\\252a)-345(si\\246)-345(w)-344(ogie)-1(\\253)-344(b)-27(ez)-1(-)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(ln)1(ie.)-296(i)-295(s\\252uc)27(h)1(a\\252a)-296(w)28(e)-1(so\\252e)-1(go)-295(trzas)-1(k)56(an)1(ia)-296(ga\\252\\241ze)-1(k)1(.)-296(T)83(en)-295(cz)-1(y)-295(tam)27(ten,)-295(wsz)-1(ystk)28(o)-295(b)28(y\\252o)]TJ 0 -13.549 Td[(jej)-333(zar\\363)28(wno)-333({)-334(wstrz\\241s)-1(n)1(\\246)-1(\\252a)-333(s)-1(i\\246)-333(t)28(ylk)28(o)-333(niec)-1(o)-333(n)1(a)-334(p)1(rzyp)-28(omni)1(e)-1(n)1(ie)-334(An)28(tk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-1(?)-333({)-334(p)28(y)1(ta\\252)-334(Jam)28(br)1(o\\273)-1(y)-333(p)-27(o)27(wsta)-56(j)1(\\241c)-334(z)-334(\\252a)28(wki.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(pr)1(z)-1(ysy\\252a)-55(j\\241...)-333(zr\\246k)28(o)27(win)29(y)-333(nie)-334(\\261lu)1(b)-333(jes)-1(zc)-1(ze)-334(o)-28(d)1(rze)-1(k\\252a)-333(w)28(olno.)]TJ 0 -13.55 Td[(Jam)28(bro\\273y)-333(p)-28(o\\273egna\\252)-333(s)-1(i\\246)-334(i)-333(p)-27(osz)-1(ed\\252)-333(prosto)-333(do)-333(Boryn)28(y)84(.)]TJ 0 -13.549 Td[(Jagn)1(a)-334(w)28(c)-1(i)1(\\241\\273)-334(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(nieru)1(c)27(h)1(om)-1(a)-333(i)-333(m)-1(i)1(lc)-1(z\\241ca.)]TJ 0 -13.549 Td[({)-333(Jagu\\261...)-333(c\\363ruc)28(hn)1(o...)-333(c)-1(o?..)1(.)]TJ 0 -13.549 Td[({)-374(A)-375(n)1(ic)-1(..)1(.)-375(wsz)-1(y)1(\\242)-1(k)28(o)-374(m)-1(i)-374(z)-1(ar)1(\\363)28(w)-1(n)1(o...)-374(k)56(a\\273)-1(ec)-1(i)1(e)-1(,)-374(to)-375(p)-27(\\363)-55(jde)-374(z)-1(a)-374(B)-1(or)1(yn\\246...)-374(a)-375(n)1(ie,)-375(to)]TJ -27.879 -13.549 Td[(ostan\\246)-334(p)1(rzy)-333(w)27(as...)-333(b)-27(o)-334(mi)-333(to)-333(\\271)-1(le)-333(z)-334(w)27(ami?..)]TJ 27.879 -13.55 Td[(St)1(ara)-333(prz\\246)-1(d)1(\\252a)-334(d)1(alej)-333(i)-333(m)-1(\\363)28(wi\\252a)-333(c)-1(ic)28(ho:)]TJ 0 -13.549 Td[({)-386(Na)-56(j)1(le)-1(p)1(iej)-386(c)27(h)1(c)-1(\\246)-387(l)1(a)-387(ciebie,)-386(na)-55(jlepi)1(e)-1(j)1(...)-386(Ju)1(\\261)-1(ci,)-386(\\273)-1(e)-386(s)-1(tar)1(y)-386(on)-386(jes)-1(t,)-386(al)1(e)-387(krzepki)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e,)-458(i)-457(lu)1(dzki,)-457(nie)-458(t)1(ak)-458(j)1(ak)-458(d)1(ru)1(gie)-458(c)27(h)1(\\252)-1(op)29(y)83(,)-457(usz)-1(an)29(uje)-458(ci\\246...)-457(P)28(an)1(i\\241)-458(se)-458(b)-28(\\246dzies)-1(z)]TJ 0 -13.549 Td[(u)-385(niego,)-385(gos)-1(p)-27(o)-28(d)1(yni\\241.)1(..)-386(A)-385(jak)-385(z)-1(ap)1(is)-386(zrobi)1(,)-386(to)-385(ju)1(\\273)-386(go)-386(tak)-385(nary)1(c)27(h)28(tu)1(j\\246,)-386(\\273e)-1(b)29(y)-386(gr)1(on)28(t)]TJ 0 -13.549 Td[(wypad)1(\\252)-334(wp)-27(o)-28(d)1(le)-334(nasz)-1(ego,)-333(k)28(o\\252o)-334(\\273yta)-333(p)-27(o)-28(d)-333(g\\363rk)56(\\241..)1(.)]TJ 27.879 -13.55 Td[(a)-384(c)28(ho)-28(\\242b)28(y)-383(i)-384(ze)-384(s)-1(ze)-1(\\261\\242)-384(m)-1(or)1(g\\363)27(w)-384(zapi)1(s)-1(a\\252..)1(.)-384(S)1(\\252)-1(u)1(c)27(h)1(as)-1(z)-384(to)-384(?)-383(Z)-1(e)-384(sz)-1(e\\261\\242)-385(morg\\363)28(w!)-384(A)]TJ -27.879 -13.549 Td[(trza)-446(ci)-445(i\\261)-1(\\242)-446(za)-446(c)28(h\\252opa.)1(..)-445(trza...)-445(p)-28(o)-445(c)-1(o)-445(m)-1(a)-55(j\\241)-445(w)-1(y)1(gadyw)28(a\\242)-446(na)-445(c)-1(iebi)1(e)-446(i)-446(n)1(a)-446(ozorac)27(h)]TJ 0 -13.549 Td[(obn)1(os)-1(i)1(\\242)-357(p)-27(o)-356(ws)-1(i)-356(?...)-355(Wieprzk)56(a)-356(b)28(y)-356(si\\246)-357(zabi)1(\\252)-1(o.)1(..)-356(a)-356(mo\\273)-1(e)-356(i)-356(ni)1(e)-1(..)1(.)-356(m)-1(o\\273e)-1(.)1(..)-356({)-356(umil)1(k\\252a)-356(i)]TJ 0 -13.549 Td[(ju)1(\\273)-282(w)-281(g\\252o)28(w)-1(i)1(e)-282(u)1(k\\252ada\\252a)-281(s)-1(ob)1(ie)-282(r)1(e)-1(sz)-1(t)1(\\246)-282(,b)-27(o)-281(Jagu\\261)-281(jakb)29(y)-281(nie)-281(s)-1(\\252ysza\\252)-1(a)-281(j)1(e)-1(j)-280(s)-1(\\252\\363)28(w,)-281(prz\\246d\\252a)]TJ 0 -13.549 Td[(mac)27(hi)1(naln)1(ie)-295(,i)-295(j)1(akb)28(y)-294(jej)-295(n)1(ie)-295(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-295(los)-295(w)-1(\\252asn)28(y)84(,)-295(w\\252as)-1(n)28(y)84(,)-295(t)1(ak)-295(ni)1(e)-296(m)28(y\\261la\\252a)-295(o)-295(t)28(ym)]TJ 0 -13.55 Td[(zam)-1(\\246\\273)-1(ciu)1(.)]TJ 27.879 -13.549 Td[(A)-407(b)-27(o)-407(to)-407(jej)-407(\\271le)-408(b)28(y)1(\\252o)-408(p)1(rzy)-407(matc)-1(e?)-408(Rob)1(i\\252a,)-407(co)-407(c)27(hcia\\252a,)-407(i)-407(n)1(ikt)-407(j)1(e)-1(j)-407(marn)1(e)-1(go)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(a)-371(n)1(ie)-371(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252.)-370(Co)-371(j)1(\\241)-371(tam)-370(ob)-28(c)28(ho)-28(d)1(z)-1(i\\252y)-370(gron)29(ta,)-370(a)-371(zapisy)83(,)-370(a)-370(m)-1(a)-55(j\\241tk)1(i)-371({)-370(t)28(yle)]TJ 0 -13.549 Td[(co)-395(n)1(ic)-1(,)-394(ab)-27(o)-394(i)-395(m\\241\\273?)-395(Ma\\252o)-394(to)-394(c)27(h\\252op)1(ak)28(\\363)27(w)-394(lata\\252o)-394(z)-1(a)-394(ni\\241?)-394({)-395(n)1(iec)27(h)28(b)28(y)-394(t)28(yl)1(k)28(o)-395(c)28(hcia\\252a,)]TJ 0 -13.549 Td[(to)-341(c)28(ho)-28(\\242b)28(y)-341(wsz)-1(ystki)1(e)-342(n)1(a)-341(jedn)1(\\241)-341(no)-28(c)-341(si\\246)-341(z)-1(lec\\241...)-341(i)-340(m)27(y1)-341(j)1(e)-1(j)-340(leniwie)-341(si\\246)-341(s)-1(n)28(u)1(\\252a)-341(jak)-340(ni\\242)]TJ 0 -13.55 Td[(ln)1(iana)-375(z)-376(k)56(\\241dzie)-1(l)1(i)-376(i)-375(j)1(ak)-376(ta)-375(ni)1(\\242)-376(okr\\246c)-1(a\\252a)-375(s)-1(i\\246)-376(ci\\241)-28(gl)1(e)-376(jedn)1(ak)28(o)-376(n)1(a)-376(t)28(ym,)-375(\\273)-1(e)-376(j)1(ak)-376(matk)56(a)]TJ 0 -13.549 Td[(k)56(a\\273)-1(\\241,)-422(to)-422(p)-27(\\363)-56(j)1(dzie)-423(za)-422(Boryn)1(\\246)-1(..)1(.)-422(Ju\\261c)-1(i,)-421(\\273)-1(e)-423(go)-422(n)1(a)28(w)27(et)-422(w)27(oli)-422(o)-27(d)-422(in)1(n)28(yc)27(h)1(,)-422(b)-27(o)-423(k)1(upi)1(\\252)-423(j)1(e)-1(j)]TJ 0 -13.549 Td[(ws)-1(t\\241\\273k)28(\\246)-319(i)-319(c)27(h)28(u)1(s)-1(tk)28(\\246...)-318(ju\\261ci...)-319(al)1(e)-320(i)-319(An)29(te)-1(k)-319(b)29(y)-319(ku)1(pi\\252)-319(to)-319(sam)-1(o.)1(..)-319(a)-319(i)-319(in)1(ne)-319(mo\\273)-1(e...)-319(\\273e)-1(b)29(y)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-297(m)-1(i)1(a\\252)-1(y)-297(Boryn)1(o)27(w)28(e)-298(pi)1(e)-1(n)1(i\\241dze)-1(.)1(..)-298(k)56(a\\273den)-298(d)1(obr)1(y)83(..)1(.)-298(i)-297(ws)-1(zys)-1(t)1(kie)-298(raze)-1(m...)-297(a)-298(b)-27(o)-298(on)1(a)]TJ 0 -13.549 Td[(ma)-334(g\\252o)28(w)28(\\246)-1(,)-333(\\273e)-1(b)28(y)-333(wyb)1(ie)-1(r)1(a\\242)-1(!)-333(Mat)1(ki)-333(w)-334(t)28(ym)-333(g\\252)-1(o)28(w)28(a,)-333(\\273)-1(eb)28(y)-333(z)-1(r)1(obi\\242,)-333(jak)-333(p)-27(otrza...)]TJ 27.879 -13.549 Td[(Zapatr)1(z)-1(y)1(\\252)-1(a)-364(si\\246)-365(zno)28(w)-1(u)-363(w)-365(okn)1(o,)-365(b)-27(o)-364(p)-28(o)-27(c)-1(ze)-1(r)1(nia\\252e,)-365(zwi\\246d\\252e)-365(georgin)1(ie)-1(,)-364(k)28(o\\252ysa-)]TJ -27.879 -13.55 Td[(ne)-378(prze)-1(z)-378(w)-1(i)1(atr,)-378(z)-1(agl)1(\\241da\\252y)-378(w)-379(sz)-1(y)1(b)28(y)83(,)-378(ale)-379(wn)1(e)-1(t)-378(zap)-28(omnia\\252a)-378(o)-378(nic)28(h,)-378(z)-1(ap)-27(omnia\\252a)-378(o)]TJ 0 -13.549 Td[(ws)-1(zystkim,)-384(n)1(a)28(w)27(et)-384(o)-384(sobie)-384(sam)-1(ej,)-383(z)-1(ap)1(ad\\252a)-384(w)-383(takie)-384(pr)1(z)-1(e\\261)-1(wi\\246te)-384(b)-28(ez)-1(czucie)-1(,)-383(jak)-383(ta)]TJ 0 -13.549 Td[(zie)-1(mia)-359(r)1(o)-28(dzona)-359(w)-359(j)1(e)-1(sienne)-359(mart)28(w)28(e)-360(n)1(o)-28(c)-1(e)-359({)-359(b)-27(o)-359(jak)28(o)-359(t)1(a)-359(z)-1(iemia)-359(\\261)-1(wi\\246ta)-359(b)28(y)1(\\252a)-359(Jagu-)]TJ 0 -13.549 Td[(sina)-438(du)1(s)-1(za)-438({)-439(j)1(ak)28(o)-439(t)1(a)-439(ziem)-1(ia.)-438(Le\\273)-1(a\\252a)-438(w)-438(jakic)28(h\\261)-439(g\\252\\246b)-27(ok)28(o\\261)-1(ciac)27(h)-438(n)1(ie)-439(r)1(oz)-1(ez)-1(n)1(an)28(yc)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-423(n)1(ik)28(ogo)-422(w)-423(b)-27(ez)-1(\\252ad)1(z)-1(ie)-422(m)-1(ar)1(z)-1(e\\253)-422(se)-1(n)1(n)28(yc)27(h)-421({)-422(ogromna)-422(a)-422(nie\\261w)-1(i)1(a)-1(d)1(oma)-423(siebie)-422({)]TJ 0 -13.55 Td[(p)-27(ot\\246)-1(\\273na)-399(a)-400(b)-27(e)-1(z)-400(w)28(oli,)-399(b)-28(ez)-400(c)27(hce)-1(n)1(ia,)-399(b)-28(ez)-400(pr)1(agnie\\253)-400(mart)28(w)28(a)-400(a)-399(nie\\261)-1(miertelna,)-399(i)-400(j)1(ak)28(o)]TJ 0 -13.549 Td[(t\\246)-327(z)-1(i)1(e)-1(mi\\246)-327(bra\\252)-327(wic)28(her)-327(k)56(a\\273)-1(d)1(y)83(,)-326(obtu)1(la\\252)-327(s)-1(ob)1(\\241)-327(i)-327(k)28(o\\252ysa\\252,)-327(i)-327(n)1(i\\363s\\252)-327(tam)-1(,)-326(gdzie)-328(c)28(hcia\\252...)-326(i)]TJ\nET\nendstream\nendobj\n283 0 obj <<\n/Type /Page\n/Contents 284 0 R\n/Resources 282 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 269 0 R\n>> endobj\n282 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n287 0 obj <<\n/Length 4859      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(85)]TJ -363.686 -35.866 Td[(jak)28(o)-374(t\\246)-374(z)-1(i)1(e)-1(mi\\246)-374(o)-374(w)-1(i)1(o\\261)-1(n)1(ie)-375(b)1(ud)1(z)-1(i\\252o)-374(cie)-1(p)1(\\252e)-375(s\\252o\\253ce)-1(,)-374(zap\\252ad)1(nia\\252o)-374(\\273ycie)-1(m,)-374(ws)-1(t)1(rz)-1(\\241sa\\252o)]TJ 0 -13.549 Td[(dr)1(e)-1(sz)-1(cze)-1(m)-303(ognia,)-303(p)-27(o\\273)-1(\\241d)1(ani)1(a)-1(,)-302(m)-1(i\\252o\\261c)-1(i)-303(a)-303(on)1(a)-304(r)1(o)-28(dzi,)-303(b)-27(o)-303(m)27(u)1(s)-1(i;)-303(\\273yj)1(e)-1(,)-303(\\261piew)27(a,)-302(pan)28(u)1(je,)]TJ 0 -13.549 Td[(t)28(w)27(or)1(z)-1(y)-275(i)-276(u)1(nice)-1(st)28(wia,)-276(b)-27(o)-276(m)28(usi;)-276(j)1(e)-1(st,)-275(b)-28(o)-275(m)27(usi..)1(.)-276(b)-27(o)-276(j)1(ak)28(o)-276(ta)-276(ziem)-1(ia)-275(\\261)-1(wi\\246ta,)-276(tak)56(\\241)-276(b)29(y\\252a)]TJ 0 -13.549 Td[(Jagu)1(s)-1(in)1(a)-334(d)1(usz)-1(a)-333({)-333(jak)28(o)-333(ta)-333(z)-1(iemia!...)]TJ 27.879 -13.549 Td[(I)-380(d\\252ugo)-380(tak)-380(siedzia\\252a)-381(w)-380(milcz)-1(eniu)1(,)-380(ino)-380(te)-380(o)-28(c)-1(zy)-380(gwie)-1(zdn)1(e)-381(\\261wie)-1(ci\\252y)-380(s)-1(i)1(\\246)-381(kiej)]TJ -27.879 -13.55 Td[(sp)-28(ok)28(o)-55(jn)1(e)-415(w)27(o)-27(dy)-414(w)-415(wio\\261ni)1(ane)-415(p)-27(o\\252ud)1(nie,)-414(a\\273)-415(o)-28(c)28(kn\\246\\252a)-415(z)-414(nag\\252a,)-414(b)-27(o)-415(kt)1(os)-1(ik)-414(ot)28(wiera\\252)]TJ 0 -13.549 Td[(dr)1(z)-1(wi)-333(do)-333(sie)-1(n)1(i.)]TJ 27.879 -13.549 Td[(Wb)1(ie)-1(g\\252a)-274(J\\363z)-1(k)56(a)-274(z)-1(ad)1(ys)-1(zana,)-274(pr)1(z)-1(yp)1(ad\\252a)-274(do)-274(k)28(om)-1(in)1(a,)-275(wyl)1(e)-1(w)28(a\\252a)-275(z)-275(trep)-27(\\363)27(w)-274(w)27(o)-28(d)1(\\246)]TJ -27.879 -13.549 Td[(i)-333(rze)-1(k)1(\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261,)-333(ju)1(tro)-333(u)-333(nas)-334(ob)1(ierani)1(e)-1(,)-333(pr)1(z)-1(y)1(jdzies)-1(z?)]TJ 0 -13.549 Td[({)-333(Przyj)1(d\\246.)]TJ 0 -13.55 Td[({)-305(W)-306(i)1(z)-1(bi)1(e)-306(b)-28(\\246dziem)27(y)-305(obi)1(e)-1(ral)1(i.)-305(Jam)27(b)1(ro\\273y)-306(tam)-305(s)-1(iedz\\241)-306(u)-305(tat)1(ula,)-305(tom)-306(si\\246)-306(c)27(h)29(y\\252-)]TJ -27.879 -13.549 Td[(kiem)-372(wyr)1(w)27(a\\252a)-371(na)-371(wie)-1(\\261,)-371(\\273e)-1(b)28(y)-371(ci)-371(p)-28(o)28(wiedzie)-1(\\242.)-371(B\\246)-1(d)1(z)-1(ie)-371(Ulisia)-371(i)-372(M)1(arysia,)-371(i)-371(Wik)1(ta,)-371(i)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(i)1(otk)28(o)28(w)27(e,)-334(i)-333(d)1(ru)1(gie)-1(.)1(..)-333(I)-334(c)28(h\\252opak)1(i)-334(p)1(rzyjd)1(\\241...)-333(P)1(ie)-1(tr)1(e)-1(k)-333(ob)1(ie)-1(ca\\252)-333(s)-1(i\\246)-333(z)-1(e)-334(skrzyp)1(ic)-1(\\241.)1(..)]TJ 27.879 -13.549 Td[({)-333(Kt\\363ren)-333(to?)]TJ 0 -13.549 Td[({)-298(A)-297(Mic)28(ha\\252\\363)28(w,)-298(co)-298(za)-298(w)28(\\363)-56(j)1(te)-1(m)-298(siedz\\241,)-298(co)-298(to)-297(w)-298(k)28(opan)1(ie)-298(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-298(z)-298(w)28(o)-56(jsk)56(a...)]TJ -27.879 -13.55 Td[(i)-333(tak)-333(m\\363)27(wi)-333(p)-27(okracz)-1(n)1(ie)-1(,)-333(\\273e)-334(go)-333(i)-333(w)-1(y)1(m)-1(i)1(ark)28(o)28(w)27(a\\242)-334(tr)1(ud)1(no..)1(.)]TJ 27.879 -13.549 Td[(Natrzepa\\252a,)-333(c)-1(o)-333(in)1(o)-334(mog\\252a,)-333(i)-333(p)-28(olecia\\252a)-334(d)1(o)-334(d)1(om)-1(.)]TJ 0 -13.549 Td[(Cisz)-1(a)-333(z)-1(n)1(o)28(w)-1(u)-333(ob)-55(j)1(\\246)-1(\\252a)-333(izb)-28(\\246.)]TJ 0 -13.549 Td[(Cz)-1(asami)-366(d)1(e)-1(sz)-1(cz)-366(ud)1(e)-1(r)1(z)-1(a\\252)-365(w)-366(sz)-1(yb)29(y)83(,)-365(jak)1(b)28(y)-365(kto)-366(p)1(rzygar\\261c)-1(i)1(\\241)-366(p)1(ias)-1(k)1(u)-365(rz)-1(u)1(c)-1(i)1(\\252,)-366(to)]TJ -27.879 -13.549 Td[(wiatr)-437(szumia\\252)-437(i)-437(b)1(a)-1(r)1(as)-1(zk)28(o)28(w)27(a\\252)-437(w)-437(sadzie)-438(al)1(b)-28(o)-437(d)1(m)27(u)1(c)27(ha\\252)-437(w)-437(k)28(omin,)-436(\\273)-1(e)-437(g\\252o)27(wn)1(ie)-437(s)-1(i\\246)]TJ 0 -13.55 Td[(rozs)-1(y)1(p)28(yw)28(a\\252)-1(y)-364(p)-27(o)-364(trzonie,)-364(i)-364(dym)-364(bu)1(c)27(ha\\252)-364(na)-364(izb)-27(\\246)-1(..)1(.)-365(a)-364(ci\\246gie)-1(m)-364(w)27(ar)1(c)-1(za\\252)-1(y)-364(wr)1(z)-1(ec)-1(ion)1(a)]TJ 0 -13.549 Td[(p)-27(o)-334(p)-27(o)-28(d)1(\\252o)-28(dze)-1(.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-368(c)-1(i)1(\\241)-28(gn\\241\\252)-368(s)-1(i\\246)-369(w)28(olno)-368(i)-369(d)1(\\252ugo,)-368(a\\273)-369(s)-1(tar)1(a)-369(cic)27(h)29(ym)-1(,)-368(dr)1(\\273)-1(\\241cym)-369(g\\252ose)-1(m)-369(za-)]TJ -27.879 -13.549 Td[(\\261piew)27(a\\252a:)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(tki)1(e)-334(nasz)-1(e)-333(dzie)-1(n)1(ne)-334(d)1(z)-1(i)1(e)-1(n)1(ne)-334(spr)1(a)27(wy)84(...)]TJ 0 -13.55 Td[(A)-344(c)27(h)1(\\252opaki)-344(z)-344(Jagn\\241)-344(wt\\363ro)28(w)28(ali)-344(z)-345(cic)27(h)1(a,)-344(a)-344(tak)-344(pr)1(z)-1(enik)1(liwie)-345(a\\273)-344(kur)1(y)-344(w)-345(sieni)]TJ -27.879 -13.549 Td[(na)-333(grz\\246dac)27(h)-333(k)1(rz)-1(ek)28(orzy\\242)-334(zac)-1(z\\246\\252)-1(y)-333(i)-333(p)-27(ogdaki)1(w)27(a\\242.)]TJ\nET\nendstream\nendobj\n286 0 obj <<\n/Type /Page\n/Contents 287 0 R\n/Resources 285 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n285 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n291 0 obj <<\n/Length 119       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(86)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(6.)]TJ\nET\nendstream\nendobj\n290 0 obj <<\n/Type /Page\n/Contents 291 0 R\n/Resources 289 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n289 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n294 0 obj <<\n/Length 7494      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(7)]TJ/F17 10.909 Tf 0 -73.325 Td[(Naza)-56(ju)1(trz)-334(d)1(z)-1(i)1(e)-1(\\253)-333(b)29(y\\252)-334(tak)-333(samo)-334(zades)-1(zc)-1(zon)28(y)-333(i)-333(p)-27(os)-1(\\246pn)28(y)84(.)]TJ 27.879 -13.549 Td[(Co)-311(c)27(h)29(w)-1(i)1(la)-311(kto\\261)-311(wyc)27(h)1(o)-28(d)1(z)-1(i\\252)-311(z)-311(j)1(akiej\\261)-311(c)27(h)1(a\\252)-1(u)1(p)28(y)-310(i)-311(d\\252u)1(go)-311(a)-311(f)1(rasobliwie)-311(p)-27(ogl\\241d)1(a\\252)]TJ -27.879 -13.549 Td[(w)-364(omglon)28(y)-363(\\261)-1(wiat)1(,)-364(cz)-1(y)-363(s)-1(i)1(\\246)-364(gdzie)-364(nie)-364(p)1(rze)-1(j)1(a\\261)-1(n)1(ia)-364({)-363(ale)-364(nic,)-363(kromi\\246)-364(bu)1(ryc)28(h)-363(c)27(hm)28(ur)1(,)]TJ 0 -13.55 Td[(p\\252y)1(n\\241cyc)27(h)-403(tak)-404(n)1(is)-1(k)28(o,)-403(\\273)-1(e)-404(d)1(ar\\252y)-404(si\\246)-404(o)-404(d)1(rz)-1(ew)28(a,)-404(wida\\242)-404(n)1(ie)-404(b)28(y\\252o;)-404(d)1(e)-1(szc)-1(z)-404(m\\273)-1(y\\252)-404(b)-27(ez)-1(-)]TJ 0 -13.549 Td[(ustan)1(nie,)-370(t)28(yle)-371(\\273e)-371(j)1(a)-1(k)28(o\\261)-370(z)-1(ar)1(az)-371(z)-371(p)-27(o\\252ud)1(nia)-370(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-370(w)-371(ul)1(e)-1(w)28(\\246)-1(,)-370(j)1(ak)28(ob)28(y)-370(kto)-370(up)1(ust)28(y)]TJ 0 -13.549 Td[(ni)1(e)-1(b)1(ie)-1(skie)-333(ot)27(w)28(orzy\\252,)-333(\\273)-1(e)-333(ino)-333(du)1(dn)1(i\\252o)-333(p)-28(o)-333(dac)28(hac)27(h)1(.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-438(si\\246)-437(kw)27(asili)-436(p)-28(o)-437(c)28(ha\\252up)1(ac)27(h)1(;)-437(jak)1(i)-437(taki)-437(l)1(az)-1(\\252)-437(p)-27(o)-437(t)28(ym)-437(b\\252o)-28(cie)-437(i)-437(des)-1(zc)-1(zu)]TJ -27.879 -13.549 Td[(do)-371(s\\241s)-1(i)1(ad\\363)28(w)-372(n)1(a)-371(w)-1(y)1(rze)-1(k)56(ani)1(e)-1(,)-371(\\273e)-372(to)-371(cz)-1(as)-371(taki,)-371(co)-371(i)-371(psa)-372(n)1(a)-371(dw)28(\\363r)-371(wygoni\\242)-371(tru)1(dn)1(o,)]TJ 0 -13.549 Td[(a)-415(tu)-414(n)1(iejede)-1(n)-414(\\261c)-1(i)1(\\363\\252k)28(\\246)-416(mia\\252)-414(jes)-1(zc)-1(ze)-415(w)-415(les)-1(ie,)-414(kto)-415(zn\\363)28(w)-415(d)1(rew)-415(nie)-415(zwi\\363z)-1(\\252,)-414(a)-415(i)1(nsz)-1(e,)]TJ 0 -13.55 Td[(b)-27(e)-1(z)-330(ma\\252a)-330(ws)-1(zystkie)-330(p)1(ra)28(w)-1(i)1(e)-1(,)-329(nie)-330(d)1(o)-28(ci\\246)-1(l)1(i)-330(w)-330(p)-27(olu)-329(k)56(apu)1(s)-1(t)28(y)84(,)-330(p)-27(o)-330(k)1(t\\363r\\241)-330(i)-329(ni)1(e)-330(w)-1(y)1(je)-1(c)28(ha\\242)]TJ 0 -13.549 Td[(dzisia)-56(j)1(,)-333(b)-27(o)-333(ano)-333(sta)27(w)-333(tak)-333(p)1(rzybr)1(a\\252)-333(w)-334(n)1(o)-28(cy)83(,)-333(\\271e)-334(m)28(usieli)-333(do)-333(d)1(nia)-333(wywrze\\242)-334(sta)28(w)-1(i)1(d\\252a)]TJ 0 -13.549 Td[(i)-338(p)1(u\\261c)-1(i\\242)-338(w)27(o)-27(d\\246)-339(d)1(o)-338(rze)-1(ki)1(,)-338(kt\\363ra)-338(i)-337(prze)-1(z)-338(to)-338(rozla\\252a)-338(s)-1(i)1(\\246)-339(sz)-1(erok)28(o,)-338(a\\273)-338(\\252)-1(\\241k)1(i)-338(s)-1(t)1(a)-1(n)1(\\246)-1(\\252y)-337(p)-28(o)-28(d)]TJ 0 -13.549 Td[(w)28(o)-28(d\\241,)-457(a)-457(k)56(apu)1(\\261)-1(n)1(isk)55(a)-457(j)1(ak)28(o)-457(te)-458(wysp)28(y)-457(c)-1(zerni)1(a\\252)-1(y)-456(s)-1(i\\246)-457(grzbietami)-457(z)-1(agon)1(\\363)27(w)-457(sp)-28(o\\261r\\363)-28(d)]TJ 0 -13.549 Td[(siw)27(ej,)-333(spieni)1(onej)-333(topieli.)]TJ 27.879 -13.55 Td[(U)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-333(te\\273)-334(n)1(ie)-334(zw)-1(i)1(e)-1(\\271li)-333(te)-1(j)-332(re)-1(szt)27(y)84(,)-333(jak)56(a)-333(w)-334(p)-27(olu)-333(osta\\252a.)]TJ 0 -13.549 Td[(Jagn)1(a)-306(ju)1(\\273)-306(o)-28(d)-305(rana)-305(nie)-306(mog\\252a)-306(d)1(a\\242)-307(sobi)1(e)-307(r)1(ady)84(,)-306(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-305(ino)-305(z)-306(k)55(\\241ta)-305(w)-306(k)56(\\241t,)-306(to)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(y)1(\\252a)-316(p)1(rze)-1(z)-315(okna)-315(na)-315(kr)1(z)-1(\\246)-315(ge)-1(or)1(ginii)1(,)-315(p)-28(o)28(w)28(alon\\241)-315(p)1(rz)-1(ez)-316(f)1(al\\246,)-315(w)-316(ten)-315(\\261w)-1(i)1(at)-315(z)-1(ad)1(e)-1(sz)-1(-)]TJ 0 -13.549 Td[(cz)-1(on)28(y)-333(i)-333(wz)-1(d)1(yc)27(h)1(a\\252a)-334(\\273a\\252o\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[({)-327(Cni)-327(mi)-327(si\\246,)-327(\\273)-1(e)-327(lab)-27(oga!)-327({)-327(sz)-1(epta\\252a,)-327(z)-327(ni)1(e)-1(cie)-1(r)1(pli)1(w)27(o\\261c)-1(i\\241)-327(o)-27(c)-1(ze)-1(k)1(uj\\241c)-327(zm)-1(r)1(oku)-327(i)]TJ -27.879 -13.55 Td[(p)-27(\\363)-56(j)1(\\261)-1(cia)-279(do)-279(B)-1(or)1(yn\\363)28(w)-279(na)-279(to)-279(obieran)1(ie)-280(k)56(apu)1(s)-1(t)28(y)84(,)-279(a)-280(tu)-278(dz)-1(i)1(e)-1(\\253)-279(wl\\363k)1(\\252)-280(si\\246)-280(tak)-279(w)28(olno,)-279(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ten)-259(d)1(z)-1(iad)1(e)-1(k)-258(p)-28(o)-258(b\\252o)-28(cie)-1(,)-258(tak)-259(n)28(u)1(dn)1(ie)-259(i)-259(tak)-258(jak)28(o\\261)-259(s)-1(m)28(utn)1(ie)-1(,)-258(\\273)-1(e)-259(ju)1(\\273)-259(w)-1(y)1(dzie)-1(r)1(\\273)-1(y\\242)-259(b)28(y)1(\\252)-1(o)-258(nie)]TJ 0 -13.549 Td[(sp)-28(os\\363b.)-318(Rozdra\\273ni)1(ona)-318(te)-1(\\273)-318(b)28(y\\252a,)-318(\\273e)-319(c)-1(i)1(\\246)-1(giem)-319(k)1(rzyc)-1(za\\252a)-318(na)-318(c)27(h\\252op)1(ak)28(\\363)28(w)-319(i)-318(p)-27(otr\\241ca\\252a,)]TJ 0 -13.549 Td[(co)-343(s)-1(i\\246)-343(j)1(e)-1(j)-342(t)27(y)1(lk)28(o)-343(p)-27(o)-28(d)-343(r)1(\\246)-1(ce)-343(na)28(win\\246\\252o,)-343(a)-343(do)-342(te)-1(go)-343(g\\252o)28(w)28(a)-343(j\\241)-343(p)-27(ob)-28(ol)1(iw)27(a\\252a,)-342(a\\273)-344(se)-343(o)27(wse)-1(m)]TJ 0 -13.549 Td[(rozpr)1(a\\273)-1(on)28(y)1(m)-342(i)-342(o)-27(c)-1(tem)-342(s)-1(k)1(ropi)1(on)28(ym)-342(ob)1(\\252)-1(o\\273y\\252a)-341(c)-1(iemi\\246)-342({)-342(d)1(opiero)-341(prze)-1(sz\\252)-1(o.)-341(Mi)1(m)-1(o)-341(to)]TJ 0 -13.55 Td[(mie)-1(j)1(s)-1(ca)-470(so)-1(b)1(ie)-470(z)-1(n)1(ale)-1(\\271\\242)-470(nie)-470(m)-1(og\\252a)-470(i)-470(r)1(ob)-28(ot)1(a)-470(le)-1(cia\\252a)-470(z)-470(r\\241k,)-470(a)-470(on)1(a)-470(z)-1(ap)1(atrza\\252a)-470(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-364(sta)28(w)-364(r)1(oz)-1(c)28(hlu)1(s)-1(tan)29(y)83(,)-363(kt\\363r)1(e)-1(n)-363(n)1(ib)28(y)-363(p)1(tak)-363(jaki)-363(r)1(oz)-1(wij)1(a\\252)-364(ci\\246)-1(\\273kie)-363(s)-1(kr)1(z)-1(y)1(d\\252a,)-363(bi\\252)-363(n)1(im)-1(i)1(,)]TJ 0 -13.549 Td[(p)-27(o)-28(dr)1(yw)27(a\\252)-419(si\\246)-419(z)-420(szume)-1(m,)-419(a\\273)-419(w)27(o)-27(da)-419(wyp)1(ryskiw)28(a\\252a)-419(na)-419(d)1(rogi,)-419(a)-418(ulec)-1(i)1(e)-1(\\242)-419(nie)-419(m\\363g\\252,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-437(n)1(ogam)-1(i)-437(wr)1(o\\261)-1(n)1(i\\246)-1(t)28(y)-437(w)-437(ziem)-1(i\\246.)-437(A)-437(za)-437(w)28(o)-28(d\\241)-437(sta\\252)-437(dom)-437(Boryn)28(y)84(,)-437(d)1(obrze)-437(b)28(y\\252o)]TJ 0 -13.549 Td[(wida\\242)-391(z)-1(i)1(e)-1(lon)29(y)-391(z)-1(e)-391(s)-1(tar)1(o\\261)-1(ci)-391(dac)28(h)-391(i)-391(ganek)-391(\\261w)-1(i)1(e)-1(\\273o)-391(p)-28(ok)1(ryt)28(y)-391(gon)28(tami,)-391(b)-27(o)-391(s)-1(i)1(\\246)-392(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(\\273\\363\\252)-1(ci\\252y)84(,)-333(i)-334(zabu)1(do)28(w)28(ania)-333(z)-1(a)-333(sadem)-1(,)-333(ale)-333(c)-1(a\\252kiem)-334(n)1(ie)-334(wiedzia\\252a,)-333(na)-333(c)-1(o)-333(p)1(atrz)-1(y)84(...)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(ej)-314(n)1(ie)-314(b)28(y)1(\\252)-1(o)-313(o)-28(d)-313(sa)-1(mego)-314(ran)1(a,)-313(b)-28(o)-313(j\\241)-313(w)27(ez)-1(w)28(ali)-313(do)-313(ro)-28(d)1(z)-1(\\241ce)-1(j)-313(k)28(ob)1(ie)-1(t)28(y)]TJ -27.879 -13.549 Td[(na)-333(d)1(rugi)-333(k)28(on)1(ie)-1(c)-333(w)-1(si,)-333(jak)28(o)-333(\\273e)-334(lekuj)1(\\241c)-1(a)-333(b)28(y\\252a)-333(i)-333(z)-1(n)1(a)-56(j)1(\\241c)-1(a)-333(s)-1(i)1(\\246)-334(na)-333(r\\363\\273n)28(yc)28(h)-333(c)27(h)1(orobac)28(h.)]TJ 363.686 -29.888 Td[(87)]TJ\nET\nendstream\nendobj\n293 0 obj <<\n/Type /Page\n/Contents 294 0 R\n/Resources 292 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n292 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n297 0 obj <<\n/Length 9417      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(88)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(A)-415(J)1(agn\\246)-415(a\\273)-415(p)-28(o)-27(dry)1(w)27(a\\252o,)-414(\\273)-1(eb)28(y)-415(gd)1(z)-1(i)1(e)-415(bie\\273)-1(y\\242)-415(w)28(e)-415(\\261)-1(wiat,)-414(do)-414(lud)1(z)-1(i)1(,)-415(ale)-415(co)-415(si\\246)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzia\\252a)-395(n)1(a)-395(g\\252o)28(w)27(\\246)-395(w)-395(zapask)28(\\246)-395(i)-394(w)-1(y)1(jrza\\252a)-395(za)-395(p)1(r\\363g)-395(n)1(a)-395(b)1(\\252oto)-395(i)-394(plu)1(c)27(h)1(\\246)-395({)-395(to)-394(s)-1(i\\246)]TJ 0 -13.549 Td[(jej)-320(o)-28(dec)27(h)1(c)-1(i)1(e)-1(w)28(a\\252o)-321(ws)-1(zystkiego...)-320(\\273)-1(e)-321(w)-321(k)28(o\\253)1(c)-1(u)-320(a\\273)-321(s)-1(i)1(\\246)-321(jej)-321(p)1(\\252ak)55(a\\242)-321(c)28(hcia\\252o)-321(z)-321(tej)-321(j)1(akiej\\261)]TJ 0 -13.549 Td[(dziwnej)-441(t)1(\\246)-1(skno\\261c)-1(i)1(...)-441(to)-441(n)1(ie)-441(m)-1(og\\241c)-441(s)-1(ob)1(ie)-442(p)-27(orad)1(z)-1(i)1(\\242)-1(,)-441(ot)28(w)28(orzy\\252a)-441(s)-1(w)28(o)-56(j)1(\\241)-441(s)-1(k)1(rz)-1(y)1(nk)28(\\246)-441(i)]TJ 0 -13.549 Td[(j\\246\\252a)-330(z)-329(niej)-329(wyjmo)28(w)27(a\\242)-330(a)-329(rozk\\252ada\\242)-330(p)-27(o)-330(\\252\\363\\273k)56(ac)27(h)-329(pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(e)-1(k)-329(\\261w)-1(i)1(\\241te)-1(cz)-1(n)29(y)83(..)1(.)-330(a\\273)-329(p)-28(o-)]TJ 0 -13.55 Td[(cz)-1(erwienia\\252o)-436(w)-436(izbie)-436(o)-28(d)-436(w)28(e\\252)-1(n)1(iak)28(\\363)28(w)-436(pasias)-1(t)28(y)1(c)27(h.)1(..)-436(zapas)-1(ek..)1(.)-436(k)56(aftan)1(\\363)27(w..)1(.)-436(ale)-436(nie)]TJ 0 -13.549 Td[(cie)-1(sz)-1(y)1(\\252o)-282(j)1(\\241)-282(t)1(u)-281(dzis)-1(i)1(a)-56(j)1(,)-282(n)1(ie...)-281(pat)1(rz)-1(y)1(\\252a)-282(ob)-27(o)-56(j)1(\\246)-1(tn)29(ym,)-282(zn)28(u)1(dzon)28(ym)-282(wzroki)1(e)-1(m)-282(n)1(a)-281(dob)1(ro)]TJ 0 -13.549 Td[(sw)27(o)-55(je,)-298(t)28(ylk)28(o)-297(wyc)-1(i)1(\\241)-28(gn\\246\\252a)-298(sp)-28(o)-28(d)-297(sp)-28(o)-27(du)-297(c)27(h)28(u)1(s)-1(t)1(k)28(\\246)-299(Bory)1(no)28(w)27(\\241)-297(i)-298(wst\\241\\273)-1(k)28(\\246,)-298(u)1(s)-1(t)1(roi\\252a)-298(si\\246)-298(w)]TJ 0 -13.549 Td[(ni)1(\\241)-334(i)-333(d)1(\\252ugo)-333(przegl\\241da\\252a)-333(s)-1(i\\246)-333(w)-334(lu)1(s)-1(terk)1(u.)]TJ 27.879 -13.549 Td[({)-445(Niez)-1(gor)1(z)-1(ej.)1(..)-445(trza)-445(si\\246)-445(na)-445(wiec)-1(z\\363r)-445(w)-445(to)-445(p)1(rzy)28(o)-28(dzia\\242...p)-27(om)27(y)1(\\261)-1(la\\252a)-445(i)-444(z)-1(d)1(j\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(zaraz)-1(,)-333(b)-27(o)-333(kto\\261)-334(sz)-1(ed\\252)-333(op\\252otk)56(ami)-333(do)-333(c)27(ha\\252u)1(p)28(y)84(.)]TJ 27.879 -13.55 Td[(Wsz)-1(ed\\252)-446(Mateusz)-1(..)1(.)-447(Jagn)1(a)-447(a\\273)-447(kr)1(z)-1(yk)1(n\\246)-1(\\252a)-446(z)-1(e)-447(zdziwienia,)-446(b)-28(o)-446(te)-1(n)-446(ci)-447(t)1(o)-447(b)28(y\\252,)]TJ -27.879 -13.549 Td[(o)-458(kt\\363rego)-458(na)-55(jwi\\246c)-1(ej)-458(p)-28(oma)28(wiano)-458(j)1(\\241,)-459(\\273e)-459(z)-458(nim)-458(w)-459(sadzie)-459(n)1(o)-28(c)-1(ami)-458(si\\246)-459(sc)27(ho)-27(dzi,)-458(a)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)-452(i)-452(gd)1(z)-1(ie)-452(ind)1(z)-1(iej)-452(p)1(usz)-1(cz)-1(a.)1(..)-452(P)28(arob)-27(e)-1(k)-452(b)29(y\\252)-452(s)-1(tar)1(s)-1(zy)83(,)-452(b)-27(o)-452(m)27(u)-452(j)1(u\\273)-453(d)1(obr)1(z)-1(e)-452(b)28(y\\252o)]TJ 0 -13.549 Td[(p)-27(o)-378(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(stc)-1(e,)-377(k)55(a)28(w)28(aler)-378(j)1(e)-1(sz)-1(cze)-1(,)-377(ale)-378(\\273e)-1(n)1(i\\242)-378(s)-1(i)1(\\246)-378(nie)-378(c)28(hcia\\252,)-377(\\273)-1(e)-378(to)-377(s)-1(i)1(os)-1(tr)1(y)-378(mia\\252)-377(nie)]TJ 0 -13.549 Td[(p)-27(o)27(wyd)1(a)28(w)27(an)1(e)-1(,)-301(a)-302(jak)-301(Jagust)28(ynk)56(a)-302(p)1(lotk)28(o)28(w)27(a\\252a,)-301(\\273)-1(e)-302(m)28(u)-302(to)-301(dzie)-1(u)1(c)27(h)28(y)-301(ab)-28(o)-301(i)-302(cud)1(z)-1(e)-302(\\273)-1(on)29(y)]TJ 0 -13.55 Td[(lepiej)-272(s)-1(mak)28(o)28(w)27(a\\252y)84(...)-273(Ch)1(\\252)-1(op)-272(b)28(y)1(\\252)-273(roz)-1(r)1(os)-1(\\252y)-272(jak)-273(d)1(\\241b,)-272(m)-1(o)-27(c)-1(n)28(y)84(,)-273(d)1(uf)1(a)-56(j\\241cy)-273(w)-273(siebie)-273(i)-273(p)1(rze)-1(z)]TJ 0 -13.549 Td[(to)-439(t)1(ak)-439(h)1(arn)28(y)-438(i)-439(n)1(ieust\\246)-1(p)1(liwy)83(,)-438(\\273e)-440(ma\\252o)-439(k)1(to)-439(si\\246)-439(go)-439(n)1(ie)-439(b)-28(o)-55(ja\\252.)-438(A)-439(sp)-28(osobn)1(a)-439(j)1(uc)27(h)1(a)]TJ 0 -13.549 Td[(b)28(y\\252a)-349(do)-350(wsz)-1(ystki)1(e)-1(go;)-349(na)-350(\\015)1(e)-1(ciku)-349(gry)1(w)27(a\\252,)-350(\\273e)-350(a\\273)-350(do)-350(d)1(usz)-1(y)-349(sz)-1(\\252o,)-350(w)28(\\363z)-350(z)-1(r)1(obi\\242)-350(zrob)1(i\\252,)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)28(y)-483(s)-1(ta)28(wia\\252,)-483(piec)-1(e)-484(wylepi)1(a\\252)-1(,)-483(ws)-1(zystk)28(o)-484(rob)1(i\\252)-484(tak)-483(s)-1(p)1(ra)28(w)-1(n)1(ie,)-484(\\273e)-485(i)1(no)-484(m)28(u)-483(s)-1(i\\246)]TJ 0 -13.549 Td[(rob)-27(ota)-381(w)-381(gar\\261)-1(ciac)28(h)-381(pali)1(\\252a;)-381(gros)-1(z)-381(go)-381(s)-1(i\\246)-381(ino)-381(n)1(ie)-382(tr)1(z)-1(y)1(m)-1(a\\252)-381(c)-1(a\\252k)1(ie)-1(m,)-381(c)27(h)1(o)-28(\\242)-382(zarab)1(ia\\252)]TJ 0 -13.55 Td[(sp)-28(or)1(o)-269(b)-27(o)-269(wsz)-1(ystk)28(o)-268(z)-1(araz)-269(p)1(rze)-1(p)1(i\\252)-269(i)-268(p)1(rze)-1(f)1(und)1(o)28(w)27(a\\252)-268(alb)-28(o)-268(i)-268(rozp)-28(o\\273ycz)-1(y\\252..)1(.)-269(G)1(o\\252\\241b)-268(b)28(y\\252o)]TJ 0 -13.549 Td[(m)27(u)-369(za)-370(p)1(rze)-1(zw)-1(i)1(s)-1(k)28(o,)-369(c)27(h)1(o)-28(\\242)-370(i)-369(do)-370(j)1(as)-1(tr)1(z)-1(\\246bi)1(a)-370(pr)1(\\246)-1(d)1(z)-1(ej)-369(b)28(y\\252)-370(p)-27(o)-28(d)1(obien)-369(z)-370(t)28(w)27(ar)1(z)-1(y)-369(i)-370(z)-370(on)1(e)-1(j)]TJ 0 -13.549 Td[(zapalcz)-1(y)1(w)27(o\\261c)-1(i.)1(..)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(c)28(h)28(w)28(alon)28(y!)]TJ 0 -13.549 Td[({)-333(Na)-334(wieki.)1(..)-333(Mateusz)-1(!)]TJ 0 -13.55 Td[({)-333(Jam)-334(ci,)-333(Jagu\\261,)-333(ja..)1(.)]TJ 0 -13.549 Td[(\\221cisn\\241\\252)-302(j)1(\\241)-302(za)-302(r)1(\\246)-1(k)28(\\246)-302(i)-301(tak)-302(gor)1(\\241c)-1(o)-302(p)1(atrzy\\252)-302(w)-301(o)-28(c)-1(zy)83(,)-301(a\\273)-302(s)-1(i)1(\\246)-302(dzie)-1(w)28(c)-1(zyn)1(a)-302(zarumie-)]TJ -27.879 -13.549 Td[(ni)1(\\252a)-334(i)-333(n)1(ie)-1(sp)-27(ok)28(o)-56(jn)1(ie)-334(n)1(a)-334(d)1(rzw)-1(i)-333(p)-27(ogl\\241d)1(a\\252a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(z)-334(p)-27(\\363\\252)-333(roku)-333(b)28(y)1(\\252)-1(e\\261)-334(w)28(e)-334(\\261w)-1(i)1(e)-1(cie)-1(.)1(..)-333({)-334(sze)-1(p)1(n\\246\\252)-1(a)-333(zm)-1(i)1(e)-1(sz)-1(an)1(a.)]TJ 0 -13.549 Td[({)-310(Ca\\252e)-310(p)-28(\\363\\252)-309(roku)-309(i)-310(d)1(w)27(ad)1(z)-1(ie\\261c)-1(ia)-309(i)-310(trzy)-310(d)1(ni)1(...)-310(d)1(obr)1(z)-1(em)-310(licz)-1(y\\252:)1(..)-310({)-309(a)-310(r\\241k)-309(jej)-310(n)1(ie)]TJ -27.879 -13.55 Td[(pu)1(s)-1(zcz)-1(a\\252.)]TJ 27.879 -13.549 Td[({)-367(Zapal\\246)-368(\\261wiat\\252o!)-367({)-368(za)28(w)27(o\\252a\\252a,)-367(\\273)-1(e)-368(t)1(o)-368(si\\246)-368(j)1(u\\273)-368(mro)-28(cz)-1(y)1(\\252o)-368(n)1(a)-368(d)1(obre)-367(i)-368(\\273eb)28(y)-367(m)27(u)]TJ -27.879 -13.549 Td[(si\\246)-334(wyrw)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-382(Pr)1(z)-1(ywit)1(a)-56(j\\273e)-383(mn)1(ie)-1(,)-382(J)1(agu\\261)-383({)-382(p)1(rosi\\252)-382(c)-1(ic)28(ho)-382(i)-382(c)28(hcia\\252)-382(j\\241)-382(ob)-55(j\\241\\242,)-382(ale)-382(w)-1(y)1(s)-1(u)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-340(p)1(r\\246)-1(d)1(k)28(o)-339(i)-339(s)-1(z\\252a)-340(d)1(o)-339(k)28(om)-1(i)1(na)-339(z)-1(ap)1(ali\\242)-340(\\261wiat\\252o,)-339(b)-27(o)-56(j)1(a\\252)-1(a)-339(si\\246,)-339(\\273)-1(eb)28(y)-339(ic)27(h)-338(tak)-339(p)-28(o)-339(ciem)-1(ku)]TJ 0 -13.549 Td[(matk)56(a)-386(n)1(ie)-386(z)-1(esz)-1(\\252a)-385(ab)-28(o)-385(i)-386(k)1(to)-386(d)1(ru)1(gi,)-385(ale)-386(ni)1(e)-386(z)-1(d)1(\\241\\273)-1(y\\252a,)-385(b)-27(o)-386(M)1(ate)-1(u)1(s)-1(z)-386(c)28(h)28(yci\\252)-386(j)1(\\241)-386(wp)-27(\\363\\252,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)-1(isn\\241\\252)-333(mo)-28(c)-1(n)1(o)-334(d)1(o)-334(siebie)-333(i)-333(j\\241\\252)-333(z)-1(ap)1(am)-1(i\\246tale)-333(c)-1(a\\252o)28(w)27(a\\242...)]TJ 27.879 -13.549 Td[(Zatrze)-1(p)-27(ota\\252a)-339(s)-1(i)1(\\246)-340(kiej)-339(ptak)1(,)-339(ale)-340(n)1(ie)-340(jej)-339(mo)-28(c)-340(wyr)1(w)27(a\\242)-340(si\\246)-340(tak)1(ie)-1(m)28(u)-339(g\\252o)-28(d)1(nem)27(u)]TJ -27.879 -13.549 Td[(sm)-1(ok)28(o)28(wi,)-236(kt\\363ren)-236(\\261)-1(cisk)55(a\\252,)-236(a\\273)-237(\\273e)-1(b)1(ra)-236(trze)-1(sz)-1(cz)-1(a\\252y)-236(,)-236(i)-237(tak)-236(ca\\252o)27(w)28(a\\252,)-236(\\273)-1(e)-237(ca\\252kiem)-237(z)-1(es)-1(\\252ab)1(\\252a,)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-333(j)1(e)-1(j)-333(zas)-1(z\\252y)-333(m)-1(g\\252\\241,)-333(tc)28(h)28(u)-333(z)-1(\\252ap)1(a\\242)-334(ni)1(e)-334(mog\\252)-1(a,)-333(\\273e)-334(in)1(o)-334(ostatki)1(e)-1(m)-334(sk)56(am)-1(l)1(a\\252a:)]TJ 27.879 -13.549 Td[({)-333(Pu)1(\\261)-1(\\242...)-333(Mateusz...)-333(Matu)1(la...)]TJ 0 -13.55 Td[({)-366(Jesz)-1(cz)-1(e)-366(\\271dzie)-1(b)1(k)28(o,)-366(J)1(agu\\261,)-366(j)1(e)-1(sz)-1(cz)-1(e)-366(raz,)-365(b)-28(o)-365(s)-1(i\\246)-366(ca\\252kiem)-366(w)-1(\\261cie)-1(k)1(n\\246...)-365({)-366(I)-366(tak)]TJ -27.879 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\252,)-376(\\273)-1(e)-376(m)27(u)-375(dzie)-1(w)28(c)-1(zyn)1(a)-376(c)-1(a\\252kiem)-376(z)-1(mi\\246k\\252a)-376(i)-376(lec)-1(ia\\252a)-376(p)1(rz)-1(ez)-377(r)1(\\246)-1(ce)-377(k)1(ie)-1(j)-375(w)27(o)-27(da,)-376(ale)]TJ\nET\nendstream\nendobj\n296 0 obj <<\n/Type /Page\n/Contents 297 0 R\n/Resources 295 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n295 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n300 0 obj <<\n/Length 9153      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(89)]TJ -363.686 -35.866 Td[(pu)1(\\261)-1(ci\\252)-499(j\\241,)-499(b)-27(o)-499(p)-28(os\\252ysz)-1(a\\252)-499(w)-500(sieniac)28(h)-499(krok)1(i,)-499(s)-1(am)-499(z)-1(ap)1(ali\\252)-499(nad)-498(ok)55(ap)-27(em)-500(lampk)28(\\246)-499(i)]TJ 0 -13.549 Td[(skr\\246c)-1(a\\252)-442(p)1(apierosa,)-442(a)-442(r)1(oz)-1(iskrzon)28(ymi)-442(u)1(c)-1(i)1(e)-1(c)28(h\\241)-442(o)-28(cz)-1(ami)-441(s)-1(p)-27(ogl\\241da\\252)-442(n)1(a)-442(Jagu)1(\\261)-1(,)-442(\\273e)-442(to)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-380(przyj)1(\\261)-1(\\242)-380(do)-380(siebie)-380(nie)-380(pr)1(z)-1(ysz\\252)-1(a,)-379(b)-28(o)-380(si\\246)-380(m)-1(o)-27(c)-1(n)1(o)-380(dz)-1(i)1(e)-1(r)1(\\273)-1(y\\252a)-380(\\261c)-1(i)1(an)28(y)-380(i)-380(d)1(ys)-1(za\\252a)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o.)]TJ 27.879 -13.549 Td[(J\\246drzyc)28(h)-249(wsz)-1(ed\\252)-249(i)-248(ogie)-1(\\253)-248(na)-248(trzonie)-249(rozdm)28(uc)28(hiw)28(a\\252,)-249(n)1(as)-1(ta)28(wia\\252)-249(garn)1(ki)-249(z)-249(w)28(o)-28(d\\241)]TJ -27.879 -13.55 Td[(i)-375(ci\\246gie)-1(m)-375(si\\246)-376(p)-27(o)-375(izbi)1(e)-376(kr)1(\\246)-1(ci\\252,)-375(\\273e)-376(j)1(u\\273)-375(ma\\252)-1(o)-374(w)-1(i)1(e)-1(le)-375(z)-1(e)-375(sob\\241)-375(m\\363)28(w)-1(i)1(li,)-375(a)-375(i)1(no)-375(p)-27(ogl\\241dal)1(i)]TJ 0 -13.549 Td[(na)-333(si\\246)-334(iskrz\\241c)-1(y)1(m)-1(i)1(,)-334(g\\252o)-27(dn)28(ymi)-333(o)-28(cz)-1(ami,)-333(j)1(a)-1(k)28(ob)29(y)-333(s)-1(i\\246)-333(z)-1(j)1(e)-1(\\261\\242)-334(c)27(h)1(c)-1(ieli.)1(..)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(tk)1(i,)-432(b)-28(o)-432(jak)28(o\\261)-433(w)-432(pacierz)-1(y)-432(p)1(ar\\246,)-433(n)1(ades)-1(z\\252a)-433(Domin)1(ik)28(o)28(w)27(a,)-432(m)28(usi)-433(b)29(y\\242)-433(z\\252)-1(a)]TJ -27.879 -13.549 Td[(b)28(y\\252a,)-417(b)-27(o)-417(j)1(u\\273)-418(w)-417(sieniac)27(h)-416(wyw)27(ar)1(\\252a)-417(g\\246)-1(b)-27(\\246)-418(n)1(a)-417(Szymk)55(a,)-416(a)-418(u)1(jr)1(z)-1(a)28(ws)-1(zy)-417(Mateusza)-417(p)-28(o-)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252a)-389(na\\253)-388(s)-1(r)1(ogo,)-389(n)1(a)-389(przywitan)1(ie)-389(nie)-389(zw)27(a\\273a\\252a)-389(i)-389(p)-27(osz)-1(\\252a)-389(d)1(o)-389(k)28(om)-1(or)1(y)-389(p)1(rze)-1(ob)1(le)-1(c)]TJ 0 -13.549 Td[(si\\246)-1(.)]TJ 27.879 -13.55 Td[({)-333(Id\\271)-334(se)-1(,)-333(b)-27(o)-333(c)-1(i\\246)-333(m)-1(atk)56(a)-333(z)-1(ekln)1(\\241)-334(j)1(e)-1(sz)-1(cze)-1(..)1(.)-334({)-333(p)1(ros)-1(i)1(\\252)-1(a)-333(cic)27(h)1(o.)]TJ 0 -13.549 Td[({)-333(Wyj)1(dzie)-1(sz)-334(to)-333(do)-333(mnie,)-333(Jagu\\261,)-333(c)-1(o?)-333({)-334(p)1(rosi\\252.)]TJ 0 -13.549 Td[({)-237(W)83(r)1(\\363)-28(c)-1(i)1(\\252e)-1(\\261)-238(t)1(o)-238(j)1(u\\273)-237(z)-1(e)-237(\\261)-1(wiata?)-237({)-237(rz)-1(ek\\252a)-237(stara,)-237(jak)1(b)28(y)-237(go)-237(dop)1(ie)-1(r)1(o)-238(sp)-27(os)-1(tr)1(z)-1(ega)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)1(\\252)-1(em,)-333(m)-1(atk)28(o..)1(.)-333({)-334(m\\363)28(w)-1(i)1(\\252)-334(\\252ago)-28(d)1(nie)-333(i)-333(c)27(hcia\\252)-333(j\\241)-333(w)-334(r\\246k)28(\\246)-334(p)-27(o)-28(ca\\252o)27(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-361(Ale)-1(,)-361(suk)56(a)-362(ci)-361(b)28(y\\252a)-361(m)-1(atk)56(\\241,)-361(nie)-361(ja!)-361({)-362(w)28(arkn)1(\\246)-1(\\252a)-361(wyryw)28(a)-56(j)1(\\241c)-362(r\\246k)28(\\246)-362(z)-1(e)-362(z\\252o\\261)-1(ci\\241.)]TJ -27.879 -13.55 Td[({)-333(P)28(o)-333(c)-1(o\\261)-334(tu)-332(przysz)-1(ed\\252?)-334(M)1(\\363)28(w)-1(i)1(\\252)-1(am)-333(c)-1(i)-333(j)1(u\\273,)-333(\\273)-1(e)-334(tu)1(ta)-56(j)-333(n)1(ic)-334(p)-27(o)-333(tobie...)]TJ 27.879 -13.549 Td[({)-433(Do)-433(Jagusi)-433(przysz)-1(ed\\252em)-1(,)-433(n)1(ie)-434(d)1(o)-434(w)28(as)-434({)-433(har)1(do)-433(za)27(w)28(o\\252a\\252,)-433(b)-28(o)-433(go)-433(ju)1(\\273)-434(z)-1(\\252o\\261\\242)]TJ -27.879 -13.549 Td[(br)1(a\\252a)]TJ 27.879 -13.549 Td[({)-233(W)83(ar)1(a)-233(c)-1(i)-233(o)-27(d)-233(Jagu)1(s)-1(i,)-232(s)-1(\\252ysz)-1(ysz!)-233(W)83(ar)1(a)-233(c)-1(i,)-233(\\273eb)28(y)-233(j\\241)-233(p)-27(otem)-234(b)-27(e)-1(z)-233(cie)-1(b)1(ie)-234(n)1(a)-233(oz)-1(or)1(ac)27(h)]TJ -27.879 -13.549 Td[(obn)1(os)-1(i)1(li)-276(p)-27(o)-276(wsi,)-276(j)1(ak)-276(t\\246)-276(j)1(ak)55(a)-275(os)-1(tatn)1(i\\241..)1(.)-276(ani)-275(mi)-276(si\\246)-276(p)-28(ok)56(azuj)-275(na)-275(o)-28(c)-1(zy!.)1(..)-276({)-275(w)-1(r)1(z)-1(asn\\246\\252a.)]TJ 27.879 -13.55 Td[({)-333(Krzycz)-1(ycie)-334(ki)1(e)-1(j)-333(wron)1(a,)-333(\\273)-1(e)-333(w)-1(i)1(e)-1(\\261)-334(ca\\252a)-334(u)1(s)-1(\\252y)1(s)-1(zy!...)]TJ 0 -13.549 Td[({)-269(Nie)-1(c)28(h)-269(us\\252ys)-1(z\\241,)-269(ni)1(e)-1(c)27(h)-269(si\\246)-270(zlec)-1(\\241,)-269(n)1(ie)-1(c)28(h)-269(wie)-1(d)1(z)-1(\\241,)-269(\\273e)-1(\\261)-270(si\\246)-270(J)1(agn)28(y)-269(przycz)-1(epi\\252)-269(kiej)]TJ -27.879 -13.549 Td[(rze)-1(p)-332(psie)-1(go)-333(ogona,)-333(\\273e)-334(i)-333(o\\273)-1(ogi)1(e)-1(m)-333(trud)1(no)-333(ci\\246)-334(o)-28(d)1(e)-1(gn)1(a\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-244(\\233e)-1(b)28(y)1(\\261)-1(cie)-245(ni)1(e)-245(k)28(obi)1(e)-1(ta,)-244(to)-244(b)28(ym)-244(w)27(ama)-245(\\271dziebk)28(o)-244(\\273)-1(ebr)1(a)-245(zmac)-1(a\\252)-244(z)-1(a)-244(p)-28(o)28(wiedan)1(ie)]TJ -27.879 -13.549 Td[(taki)1(e)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-357(S)1(pr)1(\\363bu)1(j,)-356(z)-1(b)-27(\\363)-56(j)1(u)-356(jeden,)-356(s)-1(p)1(r\\363bu)1(j,)-356(psie!...)-356({)-357(p)-27(o)-28(c)28(h)28(wyc)-1(i)1(\\252a)-357(z)-1(a)-356(\\273)-1(elazn)28(y)-356(p)-28(ogr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(bacz.)]TJ 27.879 -13.549 Td[(Ale)-307(i)-307(na)-307(t)28(y)1(m)-308(sk)28(o\\253cz)-1(y)1(\\252)-1(a,)-306(b)-28(o)-307(M)1(ate)-1(u)1(s)-1(z)-307(s)-1(p)1(lu)1(n\\241\\252,)-307(tr)1(z)-1(asn\\241\\252)-307(dr)1(z)-1(wiami)-307(i)-307(wysze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(pr)1(\\246)-1(d)1(k)28(o,)-333(b)-28(o)-333(jak)1(\\273)-1(e,)-333(z)-334(bab)1(\\241)-334(si\\246)-334(to)-333(mia\\252)-333(bi\\242)-334(i)-333(p)-27(o\\261)-1(miewis)-1(k)28(o)-333(z)-334(siebie)-333(dla)-333(ws)-1(i)-333(cz)-1(yn)1(i\\242?)]TJ 27.879 -13.549 Td[(A)-313(stara,)-312(\\273e)-313(to)-313(j)1(u\\273)-313(j)1(e)-1(go)-312(nie)-313(sta\\252o,)-312(w)-1(siad)1(\\252)-1(a)-312(na)-312(Jagn\\246)-313(i)-312(h)1(a)-56(j\\273e)-313(jazgota\\242,)-313(a)-312(wy-)]TJ -27.879 -13.55 Td[(p)-27(om)-1(i)1(na\\242)-317(wsz)-1(ystk)28(o,)-316(co)-317(mia\\252a)-316(na)-316(w)28(\\241tpiac)28(h..)1(.Jagu\\261)-316(s)-1(iedzia\\252a)-316(c)-1(i)1(c)27(ho,)-316(a\\273)-316(z)-1(mart)28(wia\\252a)]TJ 0 -13.549 Td[(ze)-385(strac)28(h)28(u,)-383(ale)-384(kiedy)-383(s)-1(\\252o)28(w)27(a)-383(m)-1(atk)1(i)-384(d)1(o)-56(j\\246\\252y)-384(j)1(\\241)-384(d)1(o)-384(\\273)-1(y)1(w)27(ego...)-383(prze)-1(c)28(kn\\246\\252a,)-384(sc)27(h)1(o)27(w)28(a\\252a)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-346(w)-347(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-347(i)-346(b)1(uc)28(hn\\246\\252a)-346(p\\252acz)-1(em)-347(i)-346(wyrzek)55(an)1(iami...)1(roz)-1(\\273alon)1(a)-347(b)29(y\\252a)-346(s)-1(ro)-27(dze)-1(..)1(.)]TJ 0 -13.549 Td[(b)-27(o)-292(prze)-1(cie\\273)-293(n)1(ic)-293(tem)27(u)-291(niewinn)1(a...n)1(ie)-293(zw)28(o\\252)-1(y)1(w)27(a\\252a)-292(go)-292(do)-292(c)28(ha\\252up)28(y)84(...)-291(s)-1(am)-292(przysz)-1(ed\\252..)1(.)]TJ 0 -13.549 Td[(a)-301(n)1(a)-301(zw)-1(i)1(e)-1(sn\\246,)-301(co)-301(matk)56(a)-301(wyp)-27(om)-1(i)1(na)-56(j)1(\\241...)-300(to...)-300(sp)-28(otk)56(a\\252)-301(j)1(\\241)-301(pr)1(z)-1(y)-300(pr)1(z)-1(e\\252az)-1(ie...)1(m)-1(og\\252a)-300(s)-1(i\\246)]TJ 0 -13.549 Td[(to)-330(wyr)1(w)27(a\\242)-330(takiem)27(u)-329(sm)-1(ok)28(o)28(wi?...)-329(kiej)-330(j)1(\\241)-330(tak)-330(oze)-1(b)1(ra\\252o,)-330(\\273e)-1(.)1(..)-330(a)-330(p)-27(otem)-330(m)-1(og\\252a)-330(si\\246)-330(to)]TJ 0 -13.55 Td[(ogna\\242)-322(prze)-1(d)-321(nim?...)-322(Za)28(w)-1(sze)-323(s)-1(i)1(\\246)-323(z)-323(ni)1(\\241)-323(tak)-322(d)1(z)-1(ieje,)-322(\\273)-1(e)-322(niec)27(h)-322(kt)1(o)-323(a)-322(os)-1(t)1(ro)-322(s)-1(p)-27(o)-56(j)1(rzy)-323(n)1(a)]TJ 0 -13.549 Td[(ni)1(\\241)-332(al)1(b)-28(o)-331(i)-331(\\261c)-1(i\\261ni)1(e)-332(mo)-28(c)-1(n)1(o...)-331(to)-331(si\\246)-332(w)-331(niej)-331(ws)-1(zystk)28(o)-331(trz\\246)-1(sie)-1(,)-331(mo)-28(c)-331(j\\241)-331(o)-28(d)1(c)27(ho)-27(dzi)-331(i)-331(tak)]TJ 0 -13.549 Td[(mdli)-333(w)-333(do\\252ku)1(,)-334(\\273e)-334(j)1(u\\273)-334(o)-333(ni)1(c)-1(zym)-334(n)1(ie)-334(wie...)-333(co)-334(on)1(a)-334(win)1(o)28(w)27(ata?)]TJ 27.879 -13.549 Td[(Sk)56(ar)1(\\273)-1(y\\252a)-476(si\\246)-476(c)-1(ic)28(ho)-476(p)1(rze)-1(z)-476(\\252z)-1(y)84(,)-476(a\\273)-476(s)-1(tar)1(a)-476(s)-1(i)1(\\246)-477(u)1(dobr)1(uc)28(ha\\252a)-476(i)-476(j)1(\\246)-1(\\252a)-476(tr)1(os)-1(kl)1(iwie)]TJ -27.879 -13.549 Td[(ob)-27(c)-1(iera\\242)-333(jej)-333(t)27(w)28(arz)-333(i)-334(o)-27(c)-1(zy)83(,)-333(a)-333(g\\252as)-1(k)56(a\\242)-334(p)-27(o)-333(g\\252o)27(win)1(ie)-1(,)-333(a)-333(usp)-27(ok)55(a)-55(ja\\242...)]TJ 27.879 -13.55 Td[({)-342(Cic)28(ho)-56(j)1(,)-342(Jagu)1(\\261)-1(,)-341(nie)-342(p)1(\\252)-1(acz...)-342(n)1(ie...)-341(a)-342(to)-342(o)-28(cz)-1(y)-341(c)-1(i)-341(s)-1(i\\246)-342(zac)-1(ze)-1(r)1(wie)-1(n)1(i\\241)-342(ki)1(e)-1(j)-341(kr\\363l)1(i-)]TJ -27.879 -13.549 Td[(k)28(o)28(wi)-334(i)-333(j)1(ak)-333(to)-334(p)-27(\\363)-56(j)1(dzies)-1(z)-334(d)1(o)-333(B)-1(or)1(yn\\363)28(w?)]TJ\nET\nendstream\nendobj\n299 0 obj <<\n/Type /Page\n/Contents 300 0 R\n/Resources 298 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n298 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n303 0 obj <<\n/Length 8624      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(90)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-333(C)-1(zas)-334(to)-333(ju)1(\\273)-1(?)-333({)-333(s)-1(p)28(y)1(ta\\252)-1(a)-333(p)-27(o)-334(c)28(h)28(wili,)-333(sp)-27(ok)28(o)-56(jn)1(iejsz)-1(a)-333(ni)1(e)-1(co.)]TJ 0 -13.549 Td[(-Ju\\261c)-1(i)1(,)-347(\\273e)-347(p)-27(ora,)-346(a)-347(p)1(rz)-1(y)1(bierz)-347(si\\246)-347(pi)1(\\246)-1(kn)1(ie,)-347(l)1(udzie)-347(tam)-346(b)-28(\\246d\\241,)-346(a)-347(i)-346(sam)-347(B)-1(or)1(yna)]TJ -27.879 -13.549 Td[(u)28(w)28(a\\273)-1(a.)1(..)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-334(si\\246)-334(zaraz)-334(Jagu)1(\\261)-334(i)-333(z)-1(acz\\246)-1(\\252a)-333(s)-1(i\\246)-333(ub)1(ie)-1(r)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(u)28(w)28(arzy\\242)-334(ci)-333(to)-334(mlek)56(a?)]TJ 0 -13.55 Td[({)-333(Nie)-334(c)27(h)1(c)-1(e)-333(m)-1(i)-333(si\\246)-334(ca\\252kiem)-334(je\\261)-1(\\242,)-333(matulu)1(.)]TJ 0 -13.549 Td[({)-460(Szyme)-1(k)1(,)-460(wygrze)-1(w)28(as)-1(z)-460(s)-1(i)1(\\246)-461(p)-27(okrak)28(o,)-459(a)-460(tam)-461(k)1(ro)28(w)-1(y)-459(o)-460(pu)1(s)-1(t)28(y)-460(\\273\\252\\363b)-460(z\\246)-1(b)1(am)-1(i)]TJ -27.879 -13.549 Td[(dzw)28(oni\\241!)-333({)-333(krzykn)1(\\246)-1(\\252a)-333(res)-1(zt\\241)-333(z)-1(\\252o\\261c)-1(i,)-333(a\\273)-334(S)1(z)-1(y)1(m)-1(ek)-333(ucie)-1(k)1(\\252,)-334(\\273eb)28(y)-333(c)-1(ze)-1(go)-333(ni)1(e)-334(ob)-27(e)-1(rw)28(a\\242.)]TJ 27.879 -13.549 Td[({)-465(Wid)1(z)-1(i)-464(m)-1(i)-464(s)-1(i\\246)-465({)-465(m\\363)27(wi\\252a)-465(cisz)-1(ej,)-464(p)-28(omaga)-56(j)1(\\241c)-466(Jagn)1(ie)-465(s)-1(i\\246)-465(pr)1(z)-1(y)28(o)-27(dzia\\242)-466({)-465(\\273e)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-267(jest)-268(w)-268(zgo)-28(d)1(z)-1(ie)-268(z)-267(B)-1(ory)1(n\\241.)-267(Sp)-27(otk)56(a\\252am)-268(go,)-267(w)-1(i)1(\\363)-28(d\\252)-267(o)-28(d)-267(s)-1(tar)1(e)-1(go)-267(s)-1(i)1(e)-1(ln)1(e)-1(go)-267(c)-1(i)1(o\\252)-1(k)56(a..)1(.)]TJ 0 -13.549 Td[(Szk)28(o)-28(d)1(a...)-406(dobr)1(z)-1(e)-407(w)28(art)-407(z)-407(p)1(i\\246)-1(tn)1(a\\261)-1(cie)-407(pap)1(ierk)28(\\363)28(w)-1(.)1(..)-407(al)1(e)-408(mo\\273e)-408(to)-406(i)-407(d)1(obrze)-1(,)-406(\\273)-1(e)-407(s\\241)-407(w)]TJ 0 -13.55 Td[(zgo)-28(dzie,)-435(b)-27(o)-435(k)28(o)27(w)28(al)-435(p)29(ys)-1(k)56(acz)-436(i)-434(na)-435(p)1(ra)28(wie)-435(s)-1(i\\246)-435(zna..)1(.)-435({)-435(o)-28(d)1(s)-1(t\\241)-27(pi\\252a)-435(p)1(ar\\246)-435(krok)28(\\363)28(w)-435(i)-435(z)]TJ 0 -13.549 Td[(lu)1(b)-28(o\\261c)-1(i)1(\\241)-437(p)1(rzygl\\241d)1(a\\252)-1(a)-436(si\\246)-437(c\\363rce)-1(.)-436(Ale,)-436(te)-1(go)-436(z\\252o)-28(dzieja)-436(Koz)-1(\\252a)-436(p)-27(ono)-436(ju)1(\\273)-437(wypu)1(\\261)-1(cili)1(,)]TJ 0 -13.549 Td[(trzeba)-333(z)-1(n)1(o)27(wu)-333(zam)27(yk)56(a\\242)-334(wsz)-1(y)1(s)-1(tk)28(o)-333(a)-333(piln)1(o)28(w)27(a\\242...)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-56(j)1(d\\246)-334(j)1(u\\273!)]TJ 0 -13.549 Td[({)-278(Id\\271,)-278(a)-278(s)-1(i)1(e)-1(d)1(\\271)-279(do)-278(p)-27(\\363\\252no)-27(c)27(k)56(a)-278(i)-278(gz)-1(ij)-277(s)-1(i)1(\\246)-279(tam)-278(z)-279(p)1(arobk)56(ami!)-278({)-278(wybu)1(c)27(h)1(n\\246\\252)-1(a)-278(r)1(e)-1(sz)-1(t\\241)]TJ -27.879 -13.55 Td[(z\\252)-1(o\\261ci.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-332(wys)-1(z\\252a,)-332(al)1(e)-333(j)1(e)-1(sz)-1(cze)-333(z)-332(d)1(rogi)-332(s\\252ysz)-1(a\\252a)-332(star\\241,)-331(jak)-331(krzycz)-1(a\\252a)-332(n)1(a)-332(J\\246drk)56(a,)]TJ -27.879 -13.549 Td[(\\273e)-334(\\261)-1(win)1(ie)-334(n)1(ie)-334(w)28(e)-1(gn)1(ane)-334(d)1(o)-334(c)28(hlew)27(\\363)28(w,)-333(a)-333(kur)1(y)-334(n)1(o)-28(cuj)1(\\241)-334(p)-27(o)-334(d)1(rze)-1(w)28(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(U)-333(B)-1(or)1(yn)28(y)-333(ju)1(\\273)-334(b)28(y)1(\\252)-1(o)-333(sp)-28(or)1(o)-334(lu)1(dzi.)]TJ 0 -13.549 Td[(Ogie\\253)-446(bu)1(z)-1(o)28(w)28(a\\252)-447(s)-1(i)1(\\246)-447(na)-447(k)28(omin)1(ie)-447(i)-447(r)1(oz)-1(\\261wie)-1(tl)1(a\\252)-447(ogromn\\241)-446(iz)-1(b)-27(\\246,)-447(a\\273)-447(l\\261ni)1(\\252y)-447(si\\246)]TJ -27.879 -13.55 Td[(sz)-1(k\\252a)-444(o)-27(d)-444(obr)1(az)-1(\\363)28(w)-444(i)-444(k)28(o\\252ysa\\252y)-444(si\\246)-444(te)-445(\\261wiat)28(y)83(,)-443(c)-1(zyni)1(one)-444(z)-445(k)28(ol)1(oro)28(w)-1(y)1(c)27(h)-443(op\\252atk)28(\\363)28(w)-444(i)]TJ 0 -13.549 Td[(na)-382(ni)1(tk)55(ac)28(h)-382(wis)-1(z\\241c)-1(e)-383(u)-382(czarn)28(yc)28(h,)-382(ok)28(op)-28(con)28(yc)28(h)-382(b)-28(elek;)-382(na)-382(\\261)-1(ro)-27(dku)-382(i)1(z)-1(b)28(y)-382(le\\273)-1(a\\252a)-382(kup)1(a)]TJ 0 -13.549 Td[(cz)-1(erw)28(onej)-278(k)56(apu)1(s)-1(t)28(y)84(,)-278(a)-278(w)-278(p)-28(\\363\\252k)28(ol)1(e)-1(,)-278(sz)-1(erok)28(o)-278(zato)-28(cz)-1(on)1(e)-1(,)-277(t)27(w)28(arzami)-278(do)-278(ogn)1(ia,)-278(siedzia\\252y)]TJ 0 -13.549 Td[(rz\\246)-1(d)1(e)-1(m)-354(d)1(z)-1(iew)28(c)-1(zyn)28(y)-354(i)-353(kilk)56(a)-354(k)28(ob)1(iet)-354(s)-1(t)1(ars)-1(zyc)27(h)-353({)-354(ob)1(ie)-1(r)1(a\\252y)-354(z)-354(li\\261c)-1(i)-353(k)55(ap)1(ust\\246)-1(,)-353(a)-354(g\\252\\363)28(w)-1(k)1(i)]TJ 0 -13.549 Td[(rzuca\\252y)-333(na)-333(roze)-1(s\\252an\\241)-333(p)-28(o)-27(d)-333(oknem)-334(p)1(\\252ac)27(h)28(t\\246.)]TJ 27.879 -13.55 Td[(Jagu)1(\\261)-302(ogrza\\252a)-301(r\\246)-1(ce)-302(p)1(rzy)-301(k)28(om)-1(i)1(nie,)-301(os)-1(ta)28(wi\\252a)-301(trep)28(y)-301(p)-27(o)-28(d)-301(ok)1(nem)-302(i)-301(siad\\252a)-301(zaraz)]TJ -27.879 -13.549 Td[(z)-334(kr)1(a)-56(j)1(u)-333(pr)1(z)-1(y)-333(stare)-1(j)-332(Jagust)28(ynce)-1(,)-333(i)-333(j)1(\\246)-1(\\252a)-333(s)-1(i\\246)-333(rob)-27(ot)27(y)84(.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-310(si\\246)-310(te)-1(\\273)-310(w)-310(miar\\246)-310(p)-28(o)-27(dn)1(os)-1(i\\252,)-309(b)-28(o)-310(p)1(rzyb)28(yw)28(a\\252o)-310(jes)-1(zc)-1(ze)-310(k)28(obiet)-310(i)-310(p)1(arob)1(k)28(\\363)27(w,)]TJ -27.879 -13.549 Td[(kt\\363r)1(z)-1(y)-371(w)-1(r)1(az)-373(z)-372(Ku)1(b\\241)-372(znosili)-372(k)56(ap)1(ust\\246)-373(ze)-372(s)-1(to)-28(d)1(o\\252y)83(,)-371(ale)-373(cz\\246)-1(\\261c)-1(iej)-371(kurzyli)-371(pap)1(ie)-1(r)1(os)-1(y)-371(i)]TJ 0 -13.549 Td[(sz)-1(cz)-1(erzyli)-333(z\\246)-1(b)28(y)-333(d)1(o)-334(d)1(z)-1(iew)28(c)-1(zyn,)-333(a)-333(pr)1(z)-1(e\\261)-1(miew)27(al)1(i)-334(si\\246)-334(sp)-27(o\\252)-1(ecz)-1(n)1(ie)-1(.)]TJ 27.879 -13.55 Td[(J\\363zk)55(a,)-241(c)27(h)1(o)-28(\\242)-242(to)-242(i)-242(skrzat)-242(b)29(y\\252)-242(jes)-1(zcz)-1(e,)-242(a)-242(r)1(e)-1(j)-241(w)27(o)-27(dzi\\252a)-242(i)-242(w)-242(r)1(ob)-28(o)-27(c)-1(ie,)-242(i)-241(w)-242(\\261)-1(miec)27(hac)28(h,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(starego)-333(nie)-334(b)29(y\\252o,)-333(a)-334(Han)1(k)55(a,)-333(j)1(ak)-333(to)-334(zwycz)-1(a)-55(jni)1(e)-1(,)-333(kiej)-333(ta)-333(\\242)-1(ma)-333(\\252az)-1(i\\252a)-333(ab)-27(o)-334(mru)1(k.)]TJ 27.879 -13.549 Td[({)-436(Cze)-1(rw)28(ono)-435(w)-436(izbie,)-436(j)1(akb)28(y)-435(o)-28(d)-435(m)-1(ak)28(o)28(wyc)27(h)-435(kwiat\\363)28(w!)-436({za)28(w)27(o\\252a\\252)-436(An)28(t)1(e)-1(k,)-435(b)-28(o)]TJ -27.879 -13.549 Td[(b)28(y\\252)-459(wto)-28(czy\\252)-459(do)-459(sieni)-459(b)-27(e)-1(czki,)-459(a)-459(teraz)-459(usta)28(wia\\252)-459(przed)-459(k)28(ominem,)-459(z)-460(b)-27(oku)-458(ni)1(e)-1(co,)]TJ 0 -13.549 Td[(sz)-1(atk)28(o)28(wnic\\246.)]TJ 27.879 -13.549 Td[({)-333(B)-1(a,)-333(ze)-1(stroi)1(\\252)-1(y)-333(si\\246)-334(ki)1(e)-1(j)-333(n)1(a)-334(w)28(es)-1(ele)-1(!)-333({)-333(ozw)27(a\\252a)-333(s)-1(i\\246)-333(kt\\363ra\\261)-334(starsza)]TJ 0 -13.55 Td[({)-333(Jagu\\261)-334(t)1(o)-334(ki)1(e)-1(j)1(b)28(y)-333(j\\241)-333(kto)-333(w)-334(mleku)-333(wym)27(y)1(\\252)-334({)-333(z)-1(acz\\246)-1(\\252a)-333(z)-1(\\252o\\261liwie)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a.)]TJ 0 -13.549 Td[({)-333(P)28(oni)1(e)-1(c)27(h)1(a)-56(j)1(c)-1(i)1(e)-334({)-334(sze)-1(p)1(n\\246)-1(\\252a)-333(cz)-1(erwieni\\241c)-334(si\\246.)]TJ 0 -13.549 Td[({)-364(Cies)-1(zta)-364(si\\246)-364(dzie)-1(w)28(cz)-1(yn)29(y)83(,)-363(b)-28(o)-364(j)1(u\\273)-364(Mateusz)-364(pr)1(z)-1(yw)28(\\246)-1(d)1(ro)28(w)28(a\\252)-364(z)-1(e)-364(\\261)-1(wiat)1(a,)-364(zaraz)]TJ -27.879 -13.549 Td[(si\\246)-334(tu)-333(zac)-1(zn\\241)-333(m)27(u)1(z)-1(y)1(ki)-333(a)-334(ta\\253)1(c)-1(e,)-333(a)-333(w)-1(y)1(s)-1(ta)28(w)28(anie)-334(p)-27(o)-333(s)-1(ad)1(ac)27(h.)1(..)-333({)-334(ci\\241)-28(gn)1(\\246)-1(\\252a)-333(stara.)]TJ 27.879 -13.549 Td[({)-333(C)-1(a\\252e)-333(lato)-333(go)-334(n)1(ie)-334(b)28(y\\252o.)]TJ 0 -13.55 Td[({)-333(Jak\\273e)-1(,)-333(dw)28(\\363r)-333(sta)27(wia\\252)-333(w)27(e)-333(W)83(oli)1(.)]TJ 0 -13.549 Td[({)-333(Ma)-56(j)1(s)-1(t)1(e)-1(r)-333(j)1(uc)27(h)1(a,)-333(ba\\253k)1(i)-333(nose)-1(m)-334(p)1(usz)-1(cza)-334({)-333(rze)-1(k)1(\\252)-334(kt\\363r)1(y\\261)-334(z)-334(p)1(arob)1(k)28(\\363)27(w.)]TJ\nET\nendstream\nendobj\n302 0 obj <<\n/Type /Page\n/Contents 303 0 R\n/Resources 301 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 288 0 R\n>> endobj\n301 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n306 0 obj <<\n/Length 9042      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(91)]TJ -335.807 -35.866 Td[({)-333(A)-334(d)1(o)-334(d)1(z)-1(i)1(e)-1(u)1(c)27(h)-333(tak)-333(sp)-28(osobn)28(y)84(,)-333(\\273)-1(e)-333(i)-333(trze)-1(c)27(h)-332(kw)27(ar)1(ta\\252\\363)27(w)-333(c)-1(ze)-1(k)56(a\\242)-334(n)1(ie)-334(p)-27(otrza...)]TJ 0 -13.549 Td[({)-408(Jagu)1(s)-1(t)28(y)1(nk)56(a)-408(to)-408(n)1(ik)28(om)28(u)-408(d)1(obr)1(e)-1(go)-408(s\\252o)28(w)27(a)-408(n)1(ie)-408(dad)1(z)-1(\\241{)-407(z)-1(acz)-1(\\246\\252a)-408(j)1(ak)55(a\\261)-408(d)1(z)-1(iew-)]TJ -27.879 -13.549 Td[(cz)-1(yn)1(a.)]TJ 27.879 -13.549 Td[({)-333(Pil)1(n)28(uj)-333(si\\246,)-333(b)28(ym)-334(o)-333(tobi)1(e)-334(ni)1(e)-334(c)27(h)1(c)-1(ia\\252a)-333(c)-1(o)-333(rzec)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Wiec)-1(ie,)-333(p)-27(ono)-333(te)-1(n)-333(stary)-333(w)28(\\246)-1(d)1(ro)28(wnik)-333(j)1(u\\273)-334(p)1(rzys)-1(ze)-1(d)1(\\252)-334(.)]TJ 0 -13.55 Td[({)-333(B)-1(\\246dzie)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(u)-333(nas!)-333({)-334(za)28(w)27(o\\252a\\252a)-333(J\\363z)-1(i)1(a.)]TJ 0 -13.549 Td[({)-333(B)-1(ez)-334(ca\\252e)-334(trzy)-333(roki)-333(b)28(yw)28(a\\252)-333(w)27(e)-334(\\261wie)-1(cie.)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(\\261wiec)-1(ie?...)-333(By\\252)-334(ci)-333(u)-333(grob)1(u)-333(Je)-1(zuso)28(w)27(ego!)]TJ 0 -13.549 Td[({)-397(Hale!)-396(Widzia\\252)-397(go)-396(tam)-397(kto?)-397(Cygani)-396(ju)1(c)27(h)1(a,)-397(a)-397(g\\252u)1(pie)-397(wierz\\241;)-397(tak)-396(s)-1(amo)-397(i)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-333(op)-27(o)28(w)-1(i)1(ada)-333(o)-334(zamors)-1(k)1(ic)27(h)-333(k)1(ra)-56(j)1(ac)27(h)1(,)-334(co)-333(ino)-333(w)-334(gaze)-1(t)1(ac)27(h)-333(wycz)-1(yta.)1(..)]TJ 27.879 -13.549 Td[({)-246(N)-1(i)1(e)-247(gada)-55(jcie)-1(,)-246(Jagu)1(s)-1(t)28(yn)1(k)28(o,)-247(sam)-247(d)1(obro)-27(dzie)-1(j)-246(p)1(rzyt)28(wie)-1(r)1(dza\\252)-247(do)-246(mo)-56(jej)-246(matki.)]TJ 0 -13.55 Td[({)-271(P)1(ra)28(wda,)-270(\\273)-1(e)-270(to)-271(Domin)1(ik)28(o)28(w)27(a)-270(jakb)28(y)-270(d)1(rug\\241)-270(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-271(m)-1(a)-270(na)-270(pleban)1(i)-271(i)-270(za)27(w\\273dy)]TJ -27.879 -13.549 Td[(wiedz\\241,)-334(czy)-334(k)1(s)-1(i\\246dza)-333(brzuc)28(h)-333(b)-28(ol)1(i)-333(le)-1(k)1(uj\\241ca)-333(prze)-1(ciec)27(h)1(...)]TJ 27.879 -13.549 Td[(Jagn)1(a)-421(z)-1(milk)1(\\252a,)-421(ale)-421(p)-27(o)-28(c)-1(zu\\252a)-420(dziwn\\241)-421(o)-27(c)27(hot\\246)-421(c)28(ho)-28(\\242b)28(y)-421(t)28(y)1(m)-421(no\\273)-1(em)-421(j\\241)-420(\\273)-1(gn)1(\\241\\242)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-482(c)-1(a\\252a)-482(izba)-482(p)1(arskn\\246\\252a)-482(\\261)-1(miec)27(hem,)-482(t)28(ylk)28(o)-482(M)1(is)-1(i)1(a)-482(Grze)-1(gor)1(z)-1(o)28(w)28(a)-482(nac)27(h)29(yli\\252a)-482(si\\246)-483(d)1(o)]TJ 0 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(e)-1(j)-333(i)-333(sp)28(yta\\252a:)]TJ 27.879 -13.55 Td[({)-333(Sk)56(\\241d)-333(on)-333(j)1(e)-1(st?)]TJ 0 -13.549 Td[({)-263(Sk)56(\\241d?)-263(Ze)-264(\\261)-1(wiata)-263(sz)-1(erokiego,)-263(ab)-28(o)-263(to)-263(kto)-263(w)-1(i)1(e)-1(?)-263({)-264(Nac)28(h)28(yli\\252a)-263(s)-1(i)1(\\246)-264(ni)1(e)-1(co,)-264(wzi\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(g\\252\\363)28(w)-1(k)28(\\246)-403(n)1(a)-403(d)1(\\252o\\253,)-402(ob)-27(c)-1(in)1(a\\252a)-403(li)1(\\261)-1(cie)-403(i)-402(m\\363)27(wi\\252a)-402(s)-1(zybk)28(o,)-402(coraz)-403(g\\252o\\261niej,)-402(\\273e)-1(b)28(y)-402(i)-402(dr)1(ugie)]TJ 0 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252y:)-333({)-334(Co)-334(tr)1(z)-1(ec)-1(i)1(\\241)-334(zim\\246)-334(przyc)28(ho)-28(d)1(z)-1(i)-333(do)-333(Lip)1(ie)-1(c)-334(i)-333(u)-333(Boryn)29(y)-334(zak\\252ada)-333(kw)28(ate)-1(r)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(e)-1(m)-375(k)56(az)-1(a\\252)-375(si\\246)-376(p)1(rze)-1(zyw)27(a\\242,)-375(c)27(h)1(o)-28(\\242)-376(m)28(u)-375(ta)-375(p)-27(e)-1(wn)1(ie)-376(i)-375(n)1(ie)-376(Ro)-27(c)27(h.)1(..)-375(Dz)-1(i)1(ad)-375(jest)-375(i)-375(nie)]TJ 0 -13.55 Td[(dziad)1(,)-440(kto)-440(go)-439(tam)-441(wie...)-439(ale)-440(p)-28(ob)-27(o\\273)-1(n)29(y)-440(cz)-1(\\252o)28(wie)-1(k)-439(i)-440(dob)1(ry)84(...)-439(ino)-440(m)28(u)-440(tej)-439(obr\\241cz)-1(k)1(i)]TJ 0 -13.549 Td[(nad)-351(g\\252)-1(o)28(w)28(\\246)-1(,)-352(a)-352(b)28(y\\252b)29(y)-353(r)1(yc)27(h)29(t)27(y)1(k)-352(kiej)-352(te)-353(\\261w)-1(i)1(\\241tki)-352(na)-352(ob)1(raz)-1(ac)28(h.)-352(R\\363\\273a\\253ce)-353(ma)-56(j\\241)-352(n)1(a)-353(sz)-1(y)1(i)]TJ 0 -13.549 Td[(ob)-27(c)-1(ieran)1(e)-459(o)-458(gr)1(\\363b)-458(Jez)-1(u)1(s)-1(o)28(wy)83(.)1(..)-458(ob)1(raz)-1(k)1(i)-458(dziec)-1(iom)-458(d)1(a)-56(j)1(e)-459(\\261w)-1(i)1(\\246)-1(te,)-458(a)-458(j)1(ak)-458(ni)1(e)-1(kt\\363r)1(ym,)]TJ 0 -13.549 Td[(to)-479(i)-480(t)1(akie)-480(z)-480(k)1(r\\363lami,)-479(c)-1(o)-479(to)-479(z)-480(nasz)-1(ego)-480(n)1(aro)-28(d)1(u)-479(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-479(wyc)27(h)1(o)-28(d)1(z)-1(i\\252y)84(...)-479(i)-479(ksi\\241\\273)-1(k)1(i)]TJ 0 -13.549 Td[(p)-27(ob)-28(o\\273ne)-368(ma)-368(t)1(akie,)-368(w)-367(kt\\363ryc)28(h)-367(s)-1(toi)-367(ws)-1(zystk)28(o,)-368(i)-367(h)1(is)-1(t)1(o)-1(r)1(ie)-368(r\\363\\273ne)-368(o)-367(\\261)-1(wiecie)-1(.)1(..)-367(c)-1(zyta\\252)]TJ 0 -13.55 Td[(je)-381(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-381(mo)-56(jem)27(u)-380(W)83(al)1(k)28(o)27(wi,)-380(to)-381(i)-381(j)1(a,)-381(i)-381(m\\363)-56(j)-380(s)-1(\\252u)1(c)27(hal)1(im)-1(,)-380(inom)-381(p)1(rz)-1(ep)-27(om)-1(n)1(ia\\252a,)-381(b)-27(o)]TJ 0 -13.549 Td[(i)-453(wymiark)28(o)28(w)28(a\\242)-454(ci\\246\\273)-1(k)28(o..)1(.)-453(A)-453(n)1(ab)-28(o\\273n)28(y)-453(tak)1(i,)-453(\\273e)-454(z)-453(p)-27(\\363\\252)-453(dni)1(a)-453(przekl\\246c)-1(zy)83(,)-453(d)1(ru)1(gi)-453(raz)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-317(krzy\\273e)-1(m)-317(alb)-28(o)-317(i)-317(gdzie)-318(w)-317(p)-28(ol)1(u,)-317(a)-318(d)1(o)-318(k)28(o\\261cio\\252a)-318(in)1(o)-317(na)-317(m)-1(sz)-1(\\246)-317(c)27(ho)-28(d)1(z)-1(i)1(.)-317(Dobro)-27(dzie)-1(j)]TJ 0 -13.549 Td[(zaprasz)-1(a\\252)-333(go)-333(do)-333(s)-1(iebi)1(e)-1(,)-333(n)1(a)-334(p)1(le)-1(b)1(ani)1(\\246)-1(,)-333(to)-333(m)27(u)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-333(Z)-334(n)1(aro)-28(d)1(e)-1(m)-333(m)-1(i)-333(osta\\242)-1(,)-333(n)1(ie)-334(na)-333(p)-27(ok)28(o)-56(j)1(ac)27(h)-333(mo)-56(j)1(e)-334(m)-1(i)1(e)-1(j)1(s)-1(ce)-1(.)1(..)]TJ 0 -13.55 Td[({)-361(Mi)1(arkuj)1(\\241)-361(te\\273)-362(ws)-1(zysc)-1(y)84(,)-361(\\273e)-362(n)1(ie)-362(m)28(usi)-361(b)28(y\\242)-361(z)-362(c)28(h\\252opskiego)-361(stan)28(u,)-361(c)28(ho)-28(\\242)-361(m\\363)27(wi)]TJ -27.879 -13.549 Td[(jak)-274(ws)-1(zystkie)-275(i)-274(nau)1(c)-1(zn)28(y)-274(jes)-1(t)1(;)-275(j)1(ak\\273)-1(e,)-274(z)-275(\\233ydem)-275(gada\\252)-274(p)-28(o)-274(niemie)-1(c)28(ku,)-274(a)-274(w)27(e)-275(d)1(w)27(orze)-275(w)]TJ 0 -13.549 Td[(Drzazgo)27(w)28(e)-1(j)-258({)-258(to)-258(z)-259(pani)1(e)-1(n)1(k)55(\\241,)-258(co)-259(b)29(y\\252a)-259(la)-258(z)-1(d)1(ro)28(wia)-259(w)-258(c)-1(i)1(e)-1(p)1(\\252)-1(y)1(c)27(h)-258(kr)1(a)-56(jac)28(h,)-258(te\\273)-259(rozm)-1(\\363)28(wi\\252)]TJ 0 -13.549 Td[(si\\246)-248(p)-28(o)-247(z)-1(agr)1(aniczne)-1(m)28(u.)1(..)-248(a)-247(o)-28(d)-247(ni)1(k)28(ogo)-248(n)1(ic)-248(nie)-248(w)28(e\\271)-1(mie,)-248(t)28(yl)1(e)-248(c)-1(o)-247(k)55(ap)1(k)28(\\246)-248(m)-1(l)1(e)-1(k)56(a)-248(i)-247(kr)1(om)-1(k)28(\\246)]TJ 0 -13.549 Td[(c)27(h)1(leba,)-267(a)-267(i)-267(za)-267(to)-267(j)1(e)-1(sz)-1(cz)-1(e)-267(dziec)-1(i)-267(u)1(c)-1(zy)83(.)1(..)-267(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j\\241.)1(..)-267({)-267(ale)-267(K\\252\\246b)-28(o)28(w)28(a)-267(urw)28(a\\252a)-267(z)-268(n)1(ag\\252a,)]TJ 0 -13.549 Td[(b)-27(o)-334(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)-333(bu)1(c)27(h)1(n\\246\\252y)-334(\\261mie)-1(c)28(hem)-334(i)-333(a\\273)-334(si\\246)-334(p)-27(ok\\252ada\\252y)84(.)]TJ 27.879 -13.55 Td[(\\221mieli)-410(si\\246)-411(z)-410(Ku)1(b)28(y)83(,)-410(k)1(t\\363ren)-410(ni)1(\\363s)-1(\\252)-410(w)-410(p\\252ac)27(h)1(c)-1(ie)-410(k)56(apu)1(s)-1(t\\246)-410(i)-410(p)-28(c)28(hn)1(i\\246)-1(t)28(y)-410(p)1(rze)-1(z)-410(k)28(o-)]TJ -27.879 -13.549 Td[(go\\261,)-444(p)1(rze)-1(wr\\363)-27(c)-1(i\\252)-443(si\\246)-444(na)-443(\\261ro)-28(d)1(ku)-443(jak)-443(d)1(\\252ugi,)-443(a\\273)-443(s)-1(i\\246)-443(k)55(ap)1(usta)-443(roz)-1(l)1(e)-1(cia\\252a)-443(p)-28(o)-443(izbie,)-443(a)]TJ 0 -13.549 Td[(on)-418(w)-1(sta)28(w)27(a\\252)-419(z)-419(tr)1(udem)-419(i)-419(co)-419(si\\246)-420(j)1(u\\273)-419(ze)-1(b)1(ra\\252)-419(na)-418(c)-1(zw)27(or)1(aki,)-419(t)1(o)-419(pad)1(a\\252)-419(z)-1(n)1(o)27(wu)1(,)-419(b)-27(o)-419(go)]TJ 0 -13.549 Td[(p)-27(op)28(yc)27(h)1(ali.)]TJ 27.879 -13.549 Td[(J\\363zia)-333(go)-334(ob)1(roni)1(\\252)-1(a)-333(i)-333(p)-27(om)-1(og\\252a)-333(ws)-1(ta\\242,)-333(ale)-334(te\\273)-334(p)-27(om)-1(sto)28(w)27(a\\252,)-333(p)-27(om)-1(sto)28(w)27(a\\252.)1(..)]TJ 0 -13.55 Td[(I)-333(z)-334(w)27(ol)1(na)-333(rozm)-1(o)28(w)28(a)-334(p)1(rz)-1(esz)-1(\\252a)-333(na)-333(c)-1(o)-333(in)1(nego.)]TJ 0 -13.549 Td[(Wsz)-1(y)1(s)-1(tki)1(e)-297(m)-1(\\363)28(wi\\252y)-296(z)-297(c)-1(i)1(c)27(ha,)-296(a)-296(gw)27(ar)-296(si\\246)-297(cz)-1(yn)1(i\\252)-296(jak)28(ob)28(y)-296(w)-297(u)1(lu)-296(pr)1(z)-1(ed)-296(wyro)-55(jem)-1(,)]TJ\nET\nendstream\nendobj\n305 0 obj <<\n/Type /Page\n/Contents 306 0 R\n/Resources 304 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n304 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n310 0 obj <<\n/Length 8684      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(92)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(a)-365(\\261)-1(miec)27(h)28(y)-365(sz)-1(\\252y)84(,)-365(a)-365(pr)1(z)-1(ekpiw)28(ani)1(a)-366(a)-365(r)1(ob)-28(ota)-365(sz)-1(\\252a)-365(c)27(h)29(yb)-28(ciki)1(e)-1(m,)-365(in)1(o)-366(tr)1(z)-1(ask)56(a\\252)-1(y)-364(no\\273)-1(e)-365(o)]TJ 0 -13.549 Td[(g\\252\\241b)28(y)84(,)-391(a)-390(g\\252)-1(\\363)28(wki)-390(jak)28(o)-391(t)1(e)-392(k)1(ule)-391(r)1(az)-392(wr)1(az)-392(p)1(ada\\252y)-390(na)-391(p)1(\\252ac)27(h)28(t\\246)-391(i)-390(s)-1(t)1(o)-1(\\273y\\252y)-390(s)-1(i\\246)-391(w)-391(coraz)]TJ 0 -13.549 Td[(wi\\246ks)-1(z\\241)-331(ku)1(p)-28(\\246.)-331(An)28(tek)-331(za\\261)-332(sz)-1(atk)28(o)28(w)28(a\\252)-331(nad)-331(wielki)1(m)-332(ce)-1(b)1(rem)-332(p)1(rzy)-331(k)28(om)-1(i)1(nie;)-331(rozdzia-)]TJ 0 -13.549 Td[(n)28(y)-394(b)28(y\\252,)-395(\\273e)-395(os)-1(ta\\252)-395(i)1(no)-395(w)-395(k)28(osz)-1(u)1(li)-395(i)-394(w)-395(p)-27(ortk)56(ac)27(h)-394(pasias)-1(t)28(y)1(c)27(h)-394(z)-396(w)28(e)-1(\\252n)1(iak)28(o)28(w)27(ego)-395(sukn)1(a,)]TJ 0 -13.549 Td[(rozc)-1(zerwie)-1(n)1(i\\252)-360(si\\246)-1(,)-359(\\252)-1(eb)-360(m)28(u)-360(si\\246)-360(rozw)-1(i)1(c)27(hr)1(z)-1(y)1(\\252)-361(i)-359(p)-28(ot)-360(g\\246sto)-360(p)-28(ok)1(ry\\252)-360(m)27(u)-359(cz)-1(o\\252o;)-360(t\\246go)-360(ro-)]TJ 0 -13.55 Td[(bi)1(\\252,)-329(ale)-329(\\261)-1(mia\\252)-329(si\\246)-329(c)-1(i)1(\\246)-1(giem)-329(i)-329(p)1(rze)-1(kp)1(iw)28(a\\252)-1(,)-328(a)-329(taki)-328(b)28(y\\252)-329(u)1(ro)-28(d)1(n)28(y)83(,)-328(\\273)-1(e)-329(Jagn)1(a)-329(jak)-328(w)-329(obraz)]TJ 0 -13.549 Td[(p)-27(ogl\\241da\\252a,)-282(a)-283(i)-283(n)1(ie)-283(ona)-283(j)1(e)-1(d)1(na)-283(t)28(ylk)28(o.)1(..)-283(a)-283(on)-282(p)1(rz)-1(y)1(s)-1(ta)28(w)28(a\\252)-1(,)-282(\\273)-1(eb)28(y)-282(o)-28(detc)27(h)1(n\\241\\242,)-283(i)-283(w)28(es)-1(o\\252ym)]TJ 0 -13.549 Td[(wz)-1(r)1(okiem)-306(tak)-305(patr)1(z)-1(a\\252)-305(na)-306(n)1(i\\241,)-305(a\\273)-306(s)-1(p)1(usz)-1(cza\\252)-1(a)-305(o)-28(cz)-1(y)-305(i)-305(c)-1(ze)-1(r)1(wie)-1(n)1(i\\252a)-306(si\\246.)-306(Al)1(e)-306(nik)1(t)-306(tego)]TJ 0 -13.549 Td[(ni)1(e)-316(wid)1(z)-1(ia\\252)-315(p)1(r\\363)-28(cz)-316(Jagu)1(s)-1(t)28(y)1(nki,)-314(a)-315(i)-315(ta)-315(ud)1(a)28(w)27(a\\252a,)-315(\\273e)-316(n)1(ie)-315(patrzy)84(,)-315(jeno)-315(sobie)-315(w)-315(g\\252o)27(wie)]TJ 0 -13.549 Td[(uk)1(\\252ada\\252a,)-333(jak)-333(to)-333(op)-28(o)28(wiedzie\\242)-334(na)-333(ws)-1(i.)]TJ 27.879 -13.549 Td[({)-333(Marcyc)27(h)1(a)-333(p)-28(on)1(o)-334(zleg\\252a)-1(,)-333(wiec)-1(i)1(e)-334(to?)-334({)-333(zac)-1(z\\246)-1(\\252a)-333(K\\252\\246b)-28(o)28(w)28(a)-1(.)]TJ 0 -13.55 Td[({)-333(Nie)-334(n)1(o)27(win)1(a)-334(t)1(o)-334(j)1(e)-1(j)1(,)-333(c)-1(o)-333(roku)-333(se)-334(to)-333(rob)1(i.)]TJ 0 -13.549 Td[({)-431(Baba)-431(j)1(ak)-431(tu)1(r,)-431(to)-431(j)1(e)-1(j)-430(dziec)-1(iak)-430(krew)-431(o)-28(dci\\241)-28(ga)-431(o)-27(d)-431(g\\252o)28(wy)-431({)-431(mru)1(kn\\246\\252a)-431(Ja-)]TJ -27.879 -13.549 Td[(gust)28(yn)1(k)55(a)-382(i)-381(c)27(hcia\\252a)-382(dal)1(e)-1(j)-381(c)-1(o\\261)-382(o)-382(t)28(ym)-382(rze)-1(c,)-382(ale)-382(j\\241)-382(zgromi\\252y)-382(dr)1(ugie,)-382(\\273e)-383(to)-381(o)-382(takic)27(h)]TJ 0 -13.549 Td[(rze)-1(czac)27(h)-333(m\\363)27(wi)-333(p)1(rz)-1(y)-333(d)1(z)-1(ieuc)28(hac)28(h.)]TJ 27.879 -13.549 Td[({)-369(Wi)1(e)-1(d)1(z)-1(\\241)-369(on)1(e)-369(i)-369(o)-369(lepsz)-1(y)1(c)27(h,)-368(nie)-369(b)-27(\\363)-56(j)1(ta)-369(si\\246)-1(.)-368(T)83(e)-1(r)1(az)-370(n)1(as)-1(t)1(a\\252)-369(c)-1(zas)-370(t)1(aki,)-369(\\273e)-369(ju\\273)-369(i)]TJ -27.879 -13.55 Td[(g\\246s)-1(iar)1(c)-1(e)-405(n)1(ie)-405(m\\363)28(w)-1(i)1(\\241)-405(o)-404(b)-28(o)-27(c)-1(ian)1(ie,)-405(i)1(no)-404(s)-1(i\\246)-404(w)-405(o)-28(cz)-1(y)-404(roze)-1(\\261mie)-1(j)1(e)-1(.)1(..)-404(nie)-404(tak)-405(t)1(o)-405(p)1(rz)-1(\\363)-27(dzi)]TJ 0 -13.549 Td[(b)28(yw)28(a\\252o,)-333(nie..)]TJ 27.879 -13.549 Td[({)-235(No)-235(,)-235(w)-1(y)1(\\261)-1(cie)-236(ta)-235(j)1(u\\273)-235(w)-1(sz)-1(y)1(s)-1(tk)28(o)-235(wiedzie)-1(l)1(i)-235(jes)-1(zc)-1(ze)-236(za)-235(b)28(yd)1(\\252)-1(em...)-235({)-235(rze)-1(k)1(\\252)-1(a)-235(p)-27(o)28(w)27(a\\273-)]TJ -27.879 -13.549 Td[(ni)1(e)-334(s)-1(t)1(ara)-333(W)83(a)28(wrzono)28(w)27(a)-333({)-333(a)-334(b)-27(o)-333(to)-334(n)1(ie)-334(b)1(ac)-1(z\\246)-1(,)-333(co\\261)-1(cie)-334(wyp)1(ra)28(wiali)-333(na)-333(past)28(wis)-1(k)56(ac)28(h...)]TJ 27.879 -13.549 Td[({)-320(K)1(ie)-1(d)1(y)-320(b)1(ac)-1(zycie,)-320(to)-319(i)-320(osta)28(w)27(cie)-320(la)-319(s)-1(iebi)1(e)-1(!)-319({)-320(zakrzykn)1(\\246)-1(\\252a)-320(ostro)-319(Jagust)28(ynk)56(a.)]TJ 0 -13.55 Td[({)-257(By\\252am)-257(ju)1(\\273)-258(za)-257(c)27(h)1(\\252op)-28(em...)-257(za)-257(Mateusze)-1(m,)-257(wid)1(z)-1(i)-257(mi)-257(si\\246...)-256(nie,)-257(za)-257(Mic)28(ha\\252em)-1(,)]TJ -27.879 -13.549 Td[(tak,)-333(b)-27(o)-333(ju\\261ci)-334(W)84(a)28(w)-1(r)1(z)-1(on)-333(b)29(y\\252)-334(t)1(rz)-1(eci...)-333(mru)1(c)-1(za\\252a)-334(n)1(ie)-334(mog\\241c)-334(utr)1(a\\014\\242.)]TJ 27.879 -13.549 Td[({)-375(Ale,)-375(s)-1(iedzita)-375(i)-375(n)1(ie)-376(wiec)-1(i)1(e)-1(,)-375(co)-375(s)-1(i\\246)-375(s)-1(ta\\252o!)-375({)-375(za)28(w)27(o\\252a\\252a)-375(wpada)-55(j\\241c)-375(z)-1(ad)1(ys)-1(zana)]TJ -27.879 -13.549 Td[(Nastusia)-333(Go\\252\\246)-1(b)1(iank)56(a,)-333(Mateusz)-1(a)-333(sios)-1(t)1(ra.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(os)-1(\\252y)-294(si\\246)-295(ciek)55(a)28(w)28(e)-295(zap)28(ytan)1(ia)-294(ze)-295(ws)-1(zystkic)28(h)-294(s)-1(t)1(ron)-294(i)-294(wsz)-1(y)1(s)-1(tki)1(e)-295(o)-28(cz)-1(y)-293(s)-1(p)-27(o-)]TJ -27.879 -13.55 Td[(cz)-1(\\246\\252y)-334(n)1(a)-333(niej.)-333(,)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(m\\252ynar)1(z)-1(o)28(wi)-333(ukr)1(adli)-333(k)28(on)1(ie)-1(!)]TJ 0 -13.549 Td[({)-333(Kiedy?)]TJ 0 -13.549 Td[({)-333(Ze)-334(trzy)-333(pacie)-1(r)1(z)-1(e)-333(te)-1(m)28(u.)-333(Dopi)1(e)-1(r)1(o)-334(co)-334(J)1(ankiel)-333(um\\363)28(wi\\252)-334(M)1(ate)-1(u)1(s)-1(zo)28(w)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(Janki)1(e)-1(l)-333(ta)-333(wie)-334(ws)-1(zystk)28(o)-334(zaraz,)-333(a)-334(mo\\273e)-334(i)-333(nieco)-334(p)1(rz\\363)-28(dzi...)]TJ 0 -13.55 Td[({)-333(T)83(akie)-334(k)28(on)1(ie,)-333(kiej)-333(te)-334(haman)28(y!)]TJ 0 -13.549 Td[({)-337(Ze)-338(s)-1(t)1(a)-56(jn)1(i)-337(wypr)1(o)27(w)28(adzi\\252y)84(.)-338(P)29(arob)-27(e)-1(k)-337(p)-27(os)-1(ze)-1(d)1(\\252)-337(do)-337(m)-1(\\252yn)1(a)-337(p)-28(o)-337(obr)1(ok,)-337(wraca,)-338(a)]TJ -27.879 -13.549 Td[(tu)-333(j)1(u\\273)-334(n)1(i)-333(k)28(oni,)-333(n)1(i)-334(u)1(pr)1(z)-1(\\246\\273)-1(y)-333(n)1(ie)-334(ma)-334(a)-333(p)1(ie)-1(s)-333(w)-334(bu)1(dzie)-334(stru)1(t)28(y)83(,)-333(no!)]TJ 27.879 -13.549 Td[({)-333(Na)-334(zim\\246)-334(id)1(z)-1(ie,)-333(to)-333(s)-1(i\\246)-333(ju\\273)-333(r\\363\\273no\\261c)-1(i)-333(zac)-1(zyna)-55(j\\241.)]TJ 0 -13.549 Td[({)-307(A)-307(b)-27(o)-307(k)56(ary)-307(n)1(a)-307(z)-1(\\252o)-28(d)1(z)-1(iej\\363)28(w)-307(ni)1(e)-308(ma)-307(\\273)-1(ad)1(nej.)1(..)-307(Hale,)-307(du)1(\\273)-1(o)-307(m)28(u)-307(zrob)1(i\\241,)-307(ws)-1(ad)1(z)-1(\\241)]TJ -27.879 -13.549 Td[(do)-407(kr)1(ymina\\252u)1(,)-407(dadz\\241)-407(je\\261)-1(\\242,)-407(w)-408(cieple)-407(s)-1(i\\246)-407(wys)-1(i)1(e)-1(d)1(z)-1(i,)-407(z)-407(k)28(ole)-1(gami)-407(wypr)1(akt)28(yku)1(je,)-407(\\273)-1(e)]TJ 0 -13.55 Td[(kiej)-333(go)-333(pu)1(s)-1(zc)-1(z\\241)-333(to)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(le)-1(p)1(s)-1(zy)-333(jes)-1(t)-333(z\\252o)-28(dziej,)-333(b)-27(o)-334(n)1(aucz)-1(n)28(y)84(.)]TJ 27.879 -13.549 Td[({)-241(G)1(dyb)28(y)-240(tak)-240(m)-1(n)1(ie)-241(k)28(onia)-240(wypr)1(o)27(w)28(adzili,)-240(a)-241(z\\252apa\\252b)28(y)1(m)-242(t)1(ob)28(ym)-241(ub)1(i\\252)-241(n)1(a)-241(mie)-1(j)1(s)-1(cu)]TJ -27.879 -13.549 Td[(jak)-333(p)1(s)-1(a)-333(w\\261)-1(ciek\\252e)-1(go!)-333({)-333(wykrzykn)1(\\241\\252)-334(j)1(e)-1(d)1(e)-1(n)-333(z)-333(parob)1(k)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-374(A)-375(b)-27(o)-375(in)1(o)-375(tego)-374(b)28(y)-375(w)28(arta\\252)-374(taki)-374(c)-1(z\\252o)28(w)-1(i)1(e)-1(k,)-374(b)-27(o)-375(in)1(o)-375(g\\252u)1(pie)-375(szuk)56(a)-56(j)1(\\241)-375(spra)28(wie-)]TJ -27.879 -13.549 Td[(dl)1(iw)27(o\\261ci)-334(w)28(e)-334(\\261wie)-1(cie.)-334(K)1(u\\273den)-333(m)-1(a)-333(p)1(ra)28(w)27(o)-333(do)-27(c)27(ho)-27(dzi\\242)-334(s)-1(w)28(o)-56(j)1(e)-1(j)-332(krzywdy)84(.)]TJ 27.879 -13.55 Td[({)-259(Z\\252apa\\242)-259(taki)1(e)-1(go)-259(i)-258(c)-1(a\\252\\241)-259(ku)1(p\\241)-259(c)28(ho)-28(\\242b)28(y)-258(z)-1(ab)1(i\\242)-1(,)-258(to)-259(i)-259(k)56(ary)84(,)-259(n)1(ie)-259(m)-1(a,)-258(b)-28(o)-259(wsz)-1(y)1(s)-1(tki)1(c)27(h)]TJ -27.879 -13.549 Td[(to)-333(b)28(y)-333(k)56(arali?)]TJ\nET\nendstream\nendobj\n309 0 obj <<\n/Type /Page\n/Contents 310 0 R\n/Resources 308 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n308 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n313 0 obj <<\n/Length 9259      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(93)]TJ -335.807 -35.866 Td[({)-352(Bac)-1(z\\246...)-352(zrob)1(ili)-351(tak)-352(u)-351(nas...)-351(z)-1(ar)1(az)-1(,)-351(z)-1(a)-352(d)1(ru)1(gim)-352(c)27(h\\252op)-27(em)-353(j)1(u\\273)-352(b)28(y)1(\\252)-1(am..)1(.)-352(ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(widzi)-333(mi)-334(si\\246,)-333(\\273)-1(e)-334(j)1(e)-1(sz)-1(cze)-334(z)-1(a)-333(Mateusze)-1(m...)]TJ 27.879 -13.549 Td[(Ale)-334(t)1(e)-334(wyw)27(o)-27(dy)-333(pr)1(z)-1(erw)28(a\\252)-334(Boryn)1(a)-334(w)28(c)27(h)1(o)-28(dz\\241c)-334(d)1(o)-334(i)1(z)-1(b)28(y)84(.)]TJ 0 -13.549 Td[({)-305(T)83(ak)-305(s)-1(e)-305(na)-305(uc)28(ho)-305(gadacie)-1(,)-305(a\\273e)-306(p)-27(o)-305(dru)1(giej)-305(s)-1(tr)1(onie)-305(s)-1(ta)28(wu)-305(s\\252yc)27(h)1(a\\242)-1(!)-305({)-305(z)-1(a)28(w)28(o\\252a\\252)]TJ -27.879 -13.549 Td[(w)28(e)-1(so\\252o,)-500(cz)-1(ap)1(k)28(\\246)-500(z)-1(d)1(j\\241\\252)-499(i)-500(wita\\252)-499(s)-1(i)1(\\246)-500(z)-1(e)-500(wsz)-1(ystkimi)-499(p)-27(o)-500(k)28(olei.)-499(Musia\\252)-499(m)-1(i)1(e)-1(\\242)-500(j)1(u\\273)-500(w)]TJ 0 -13.55 Td[(g\\252o)28(w)-1(i)1(e)-1(,)-297(b)-27(o)-297(c)-1(ze)-1(r)1(w)27(on)29(y)-297(b)28(y\\252)-297(jak)-297(\\242wik,)-297(k)56(ap)-27(ot\\246)-298(rozpu)1(\\261)-1(ci\\252)-297(i)-297(g\\252o\\261)-1(n)1(o)-297(a)-297(du\\273o)-297(gada\\252,)-297(cz)-1(ego)]TJ 0 -13.549 Td[(zw)-1(y)1(c)-1(za)-56(j)1(n)28(y)-383(ni)1(e)-384(b)28(y)1(\\252)-1(.)-382(C)-1(h)1(c)-1(i)1(a\\252)-1(o)-383(m)28(u)-383(si\\246)-384(p)1(rzysi\\241\\261)-1(\\242)-383(do)-383(Jagu)1(s)-1(i)1(,)-383(ale)-384(si\\246)-383(w)27(ago)28(w)28(a\\252)-1(,)-382(\\273)-1(e)-383(to)]TJ 0 -13.549 Td[(tak)-378(na)-379(o)-28(czac)27(h)-378(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-378(nij)1(ak)28(o,)-379(p)-27(\\363ki)-378(z)-1(m\\363)28(w)-1(i)1(ona)-379(z)-379(ni)1(m)-379(nie)-379(jest,)-379(to)-379(i)1(no)-379(w)28(e)-1(so\\252o)]TJ 0 -13.549 Td[(p)-27(ogadyw)28(a\\252)-278(i)-277(rad)-277(na)-278(n)1(i\\241)-278(p)1(atrzy\\252,)-278(tak)56(a)-277(pi\\246kna)-277(dzis)-1(i)1(a)-56(j)-277(b)28(y\\252a)-278(i)-277(wystro)-56(j)1(ona)-277(w)-278(c)27(h)28(u)1(s)-1(tk)28(\\246)]TJ 0 -13.549 Td[(o)-28(d)-333(n)1(iego.)]TJ 27.879 -13.549 Td[(Zaraz)-333(te\\273)-334(W)1(itek)-333(z)-333(Ku)1(b\\241)-333(p)1(rzynie\\261li)-333(d)1(\\252ug\\241)-333(\\252a)28(w)27(\\246)-333(p)1(rze)-1(d)-332(k)28(omin,)-332(J\\363z)-1(i)1(a)-333(okry)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(j\\241)-333(cz)-1(yst)28(ym)-334(p)1(\\252\\363tnem)-334(i)-333(zac)-1(z\\246)-1(\\252a)-333(usta)28(w)-1(i)1(a\\242)-334(m)-1(i)1(s)-1(ki)-333(i)-333(\\252y\\273ki)-333(do)-333(j)1(e)-1(d)1(z)-1(enia.)]TJ 27.879 -13.549 Td[(A)-313(B)-1(ory)1(na)-313(w)-1(y)1(ni\\363s\\252)-314(z)-314(k)28(omory)-313(p)-27(\\246)-1(k)56(at\\241,)-313(dob)1(rz)-1(e)-313(p)-28(\\363\\252garn)1(c)-1(o)28(w)28(\\241)-314(b)1(utl\\246)-314(ok)28(o)28(witki)-313(i)]TJ -27.879 -13.549 Td[(j\\241\\252)-333(z)-334(n)1(i\\241)-333(ob)-28(c)27(h)1(o)-28(d)1(z)-1(i\\242)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-333(p)-27(o)-333(k)28(ole)-1(i)-333(i)-333(pr)1(z)-1(epi)1(ja\\242.)]TJ 27.879 -13.549 Td[(Dzie)-1(w)28(cz)-1(yn)29(y)-334(si\\246)-334(n)1(iec)-1(o)-333(wz)-1(d)1(raga\\252y)83(,)-333(a\\273)-334(k)1(t\\363ry\\261)-333(z)-334(parob)1(k)28(\\363)28(w)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252:)]TJ 0 -13.549 Td[({)-333(\\212ak)28(om)-1(e)-333(na)-333(ok)28(o)27(witk)28(\\246,)-333(kiej)-333(k)28(ot)-333(na)-333(mle)-1(k)28(o,)-333(in)1(o)-334(si\\246)-334(p)1(rosi\\242)-334(d)1(a)-56(j)1(\\241.)]TJ 0 -13.55 Td[({)-333(Sam)-334(p)1(ij)1(anica)-334(zatracon)28(y)84(,)-333(c)-1(i\\246giem)-334(sie)-1(d)1(z)-1(i)-333(u)-333(Jan)1(kla,)-333(to)-333(m)27(y)1(\\261)-1(li)1(,)-334(\\273e)-334(wsz)-1(ysc)-1(y)1(!)]TJ 0 -13.549 Td[(I)-329(p)1(i\\252y)83(,)-328(o)-28(dwraca\\252y)-329(si\\246,)-329(pr)1(z)-1(y)1(s)-1(\\252ani)1(a\\252y)-329(t)28(w)27(ar)1(z)-330(r)1(\\246)-1(k)56(\\241,)-328(re)-1(szt\\246)-330(c)28(hlu)1(s)-1(ta\\252y)-328(na)-329(ziem)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(kr)1(z)-1(ywi\\252y)-333(si\\246)-1(,)-333(m\\363)28(w)-1(i)1(\\252y)-334(\\377mo)-28(cna\")-333(i)-333(o)-28(d)1(da)28(w)27(a\\252y)-333(kielisze)-1(k)-333(Boryn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-333(Jagna)-333(up)1(ar\\252a)-333(s)-1(i\\246)-333(i)-334(n)1(ie)-334(p)1(i\\252a,)-333(m)-1(i)1(m)-1(o)-333(pr)1(\\363\\261)-1(b)-333(i)-333(n)1(am)-1(a)28(wia\\253)1(.)]TJ 0 -13.549 Td[({)-333(Na)27(w)28(et)-334(i)-333(sm)-1(ak)1(u)-333(gorza\\252)-1(k)1(i)-333(nie)-334(znam)-333(i)-333(nie)-333(c)-1(iek)56(a)27(w)28(am)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a.)]TJ 0 -13.55 Td[({)-333(No,)-333(s)-1(iad)1(a)-56(j)1(c)-1(ie,)-333(lud)1(z)-1(i)1(e)-334(k)28(o)-28(c)27(h)1(ane,)-333(c)-1(o)-333(jest,)-333(to)-334(zjem)27(y!)-333({)-333(zaprasz)-1(a\\252)-333(stary)84(.)]TJ 0 -13.549 Td[(Ob)1(s)-1(iedl)1(i)-316(p)-28(o)-316(c)-1(eregielac)27(h)-316(r)1(\\363\\273)-1(n)28(y)1(c)27(h,)-316(j)1(ak)-317(t)1(o)-317(ob)28(y)1(c)-1(za)-56(j)-316(k)56(a\\273e)-1(,)-316(\\252a)28(w)27(\\246)-317(i)-316(z)-317(w)28(oln)1(a)-317(j)1(e)-1(d)1(li,)]TJ -27.879 -13.549 Td[(a)-333(raz)-334(w)-333(raz)-334(p)-27(ogadyw)28(ali.)]TJ 27.879 -13.549 Td[(Z)-280(mise)-1(k)-279(d)1(ymi\\252o)-280(p)1(ar\\241,)-279(\\273)-1(e)-280(p)1(rzys)-1(\\252on)1(i\\252a)-280(wsz)-1(ystki)1(c)27(h)-279(jak)-279(c)27(h)1(m)27(u)1(r\\241,)-279(z)-280(kt\\363r)1(e)-1(j)-279(t)28(ylk)28(o)]TJ -27.879 -13.549 Td[(skrzyb)-27(ot)-334(\\252y\\273e)-1(k)1(,)-333(m)-1(lask)56(anie)-333(i)-333(to)-334(s\\252o)28(w)27(o)-333(niekt\\363r)1(e)-334(s)-1(\\252yc)28(ha\\242)-334(b)29(y\\252o.)]TJ 27.879 -13.55 Td[(Jad)1(\\252)-1(o)-360(zw)27(ar)1(z)-1(yl)1(i)-360(w)-1(y)1(bran)1(e)-1(,)-360(a\\273)-360(s)-1(i\\246)-360(dziwi\\252)-361(n)1(iejeden,)-360(b)-27(o)-361(i)-360(ziem)-1(n)1(iaki)-360(z)-361(r)1(os)-1(o\\252em)]TJ -27.879 -13.549 Td[(b)28(y\\252y)84(,)-244(i)-244(mi\\246s)-1(o)-244(got)1(o)27(w)28(ane)-244(z)-244(pra\\273on\\241)-244(j)1(\\246)-1(cz)-1(mienn)1(\\241)-244(k)56(as)-1(z\\241,)-244(i)-244(k)56(apu)1(s)-1(t)1(a)-244(z)-245(gr)1(o)-28(c)27(h)1(e)-1(m)-244({)-244(rze)-1(tel-)]TJ 0 -13.549 Td[(ni)1(e)-289(u)1(go\\261)-1(cili,)-287(p)-28(o)-288(gosp)-28(o)-27(darsku)1(,)-288(a)-288(do)-288(tego)-288(B)-1(or)1(yna)-288(ci\\246gie)-1(m)-288(zaprasz)-1(a\\252)-288(a)-288(p)1(rzym)27(u)1(s)-1(za\\252,)]TJ 0 -13.549 Td[(a)-333(J\\363z)-1(i)1(a)-334(ze)-334(sw)27(ej)-333(s)-1(tr)1(on)28(y)-333(i)-333(Hank)56(a)-333(piln)1(o)28(w)27(a\\252y)-333(b)28(y)-333(zas)-1(i\\246)-333(dola\\242)-334(i)-333(d)1(o\\252o\\273)-1(y\\242...)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-323(d)1(orz)-1(u)1(c)-1(a\\252)-323(suc)28(h)28(yc)27(h)-322(k)55(ar)1(p)-28(\\363)28(w)-323(na)-323(ogie\\253,)-323(\\273e)-324(i)1(no)-323(trzas)-1(k)56(a\\252)-323(w)27(eso\\252)-1(o,)-323(a)-323(K)1(uba)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-374(te)-1(n)-373(cz)-1(as,)-374(co)-374(j)1(e)-1(d)1(li,)-373(z)-1(n)1(os)-1(i)1(\\252)-374(k)56(apust\\246)-374(i)-373(z)-1(syp)28(yw)28(a\\252)-374(n)1(a)-374(ku)1(p)-28(\\246,)-374(a)-373(\\252ak)28(om)-1(i)1(e)-375(w)28(ci\\241)-28(ga\\252)]TJ 0 -13.549 Td[(w)-334(siebie)-333(z)-1(ap)1(ac)27(h)28(y)84(,)-333(oblizyw)28(a\\252)-334(si\\246)-334(i)-333(wzdyc)28(ha\\252.)]TJ 27.879 -13.549 Td[({)-357(P)28(\\363\\252)-356(w)27(o\\252u)-356(b)28(ym)-357(zjad\\252)-356(z)-358(j)1(e)-1(d)1(n\\241)-357(al)1(b)-28(o)-356(z)-358(d)1(w)27(oma)-357(mise)-1(cz)-1(k)56(ami)-357(k)56(asz)-1(y)84(...)-356(a)-357(ju)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(tak)-410(\\273r\\241)-410(jak)-410(te)-411(k)28(on)1(ice)-411(wyg\\252o)-28(dzone,)-410(jes)-1(zcz)-1(e)-411(got)1(o)27(w)28(e)-411(cz)-1(\\252o)28(wie)-1(k)28(o)28(wi)-410(ni)1(e)-411(z)-1(osta)28(wi\\242)-411(n)1(i)]TJ 0 -13.549 Td[(k)28(oste)-1(cz)-1(ek)-304(m)27(y\\261la\\252)-305(z)-304(m)-1(ar)1(k)28(otno\\261c)-1(i\\241)-304(i)-304(przyci\\241)-28(ga\\252)-304(pasa,)-305(t)1(ak)-305(m)28(u)-304(w)-305(kiszk)55(ac)28(h)-304(bu)1(rc)-1(za\\252o)]TJ 0 -13.549 Td[(z)-334(g\\252o)-28(d)1(u.)]TJ 27.879 -13.55 Td[(Ale)-334(r)1(yc)27(h)1(\\252o)-334(sk)28(o\\253cz)-1(y)1(li)-333(i)-333(p)-28(o)-28(d)1(ni)1(e)-1(\\261li)-333(s)-1(i)1(\\246)-334(z)-334(\\377B\\363g)-334(zap\\252a\\242\")-334(gosp)-27(o)-28(dar)1(s)-1(t)28(wu.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(w)27(am)-333(p)-28(\\363)-55(jd)1(z)-1(ie)-333(na)-333(z)-1(d)1(ro)28(wie)-1(.)]TJ 0 -13.549 Td[(Rumor)-268(si\\246)-268(ucz)-1(yn)1(i\\252,)-268(k)1(to)-268(w)-1(y)1(c)27(ho)-27(dzi\\252)-268(pr)1(z)-1(ew)-1(i)1(e)-1(tr)1(z)-1(y\\242)-268(si\\246)-269(i)-267(k)28(o\\261)-1(ci)-268(pr)1(z)-1(ec)-1(i)1(\\241)-28(gn\\241\\242,)-268(kto)]TJ -27.879 -13.549 Td[(za\\261)-406(sp)-28(o)-55(jr)1(z)-1(e\\242)-406(w)-405(n)1(ie)-1(b)-27(o,)-405(czy)-405(s)-1(i)1(\\246)-406(n)1(ie)-405(przeja\\261nia,)-405(a)-404(jak)-405(p)1(arob)1(ki,)-405(to)-404(\\273)-1(eb)28(y)-405(n)1(a)-405(ganku)]TJ 0 -13.549 Td[(p)-27(ogz)-1(i\\242)-333(s)-1(i\\246)-333(z)-334(dziew)27(cz)-1(yn)1(ami.)]TJ 27.879 -13.55 Td[(A)-301(Kub)1(a)-301(s)-1(iad)1(\\252)-301(na)-301(progu)-300(z)-302(mis)-1(k)56(\\241)-301(na)-301(k)28(olan)1(ac)27(h)-301(i)-301(j)1(ad\\252,)-301(a\\273)-302(m)28(u)-301(si\\246)-302(u)1(s)-1(zy)-301(trz\\246)-1(s\\252y)83(,)]TJ -27.879 -13.549 Td[(ni)1(e)-225(zw)27(a\\273a)-56(j)1(\\241c)-224(na)-224(\\212ap)-27(\\246)-1(,)-223(kt\\363ren)-223(przyp)-27(om)-1(i)1(na\\252)-224(si\\246)-224(r\\363\\273)-1(n)1(ie,)-224(a)-224(wid)1(z)-1(\\241c,)-224(\\273e)-225(n)1(ic)-224(nie)-224(ws)-1(k)28(\\363r)1(a,)]TJ\nET\nendstream\nendobj\n312 0 obj <<\n/Type /Page\n/Contents 313 0 R\n/Resources 311 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n311 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n316 0 obj <<\n/Length 8860      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(94)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(wysun\\241\\252)-493(si\\246)-494(n)1(a)-493(ganek)-493(do)-493(ps\\363)28(w)-1(,)-493(co)-493(z)-494(lu)1(d\\271m)-1(i)-493(p)-27(o\\261c)-1(i\\241)-27(ga\\252y)-493(i)-493(gryz\\252y)-493(s)-1(i\\246)-493(o)-493(k)28(o\\261)-1(ci)]TJ 0 -13.549 Td[(wyrzucone)-333(prze)-1(z)-333(J\\363z)-1(i\\246.)]TJ 27.879 -13.549 Td[(Wzi\\246li)-239(s)-1(i\\246)-239(akur)1(atnie)-239(z)-240(p)-27(o)27(wr)1(o)-1(t)1(e)-1(m)-239(do)-239(rob)-27(ot)28(y)83(,)-239(kiedy)-239(Ro)-28(c)28(h)-239(s)-1(t)1(an\\241\\252)-239(w)27(e)-240(d)1(rzw)-1(i)1(ac)27(h)]TJ -27.879 -13.549 Td[(z)-334(p)-27(o)-28(c)27(h)29(w)27(aleni)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(wieki!)-333({)-333(o)-28(d)1(rz)-1(ekli)-333(c)28(h\\363rem.)]TJ 0 -13.55 Td[({)-304(Sp)1(ie)-1(sz)-305(si\\246,)-304(\\015isie,)-304(p)-28(\\363k)1(i)-304(jes)-1(t)-304(n)1(a)-305(misie...)-304(Sp)-27(\\363\\271nil)1(i\\261)-1(cie)-305(si\\246,)-304(ale)-305(j)1(e)-1(sz)-1(cze)-305(dl)1(a)-305(w)28(as)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie...)-333({)-333(za)27(w)28(o\\252a\\252)-334(Boryn)1(a,)-333(pr)1(z)-1(ysu)28(w)28(a)-56(j)1(\\241c)-334(m)27(u)-333(sto\\252e)-1(k)-333(d)1(o)-334(k)28(omin)1(a.)]TJ 27.879 -13.549 Td[({)-333(Mlek)56(a)-334(i)-333(c)27(h)1(leba)-333(da)-55(j)-333(m)-1(i)1(,)-334(J)1(\\363z)-1(ia,)-333(a)-333(wys)-1(t)1(arc)-1(zy)84(.)]TJ 0 -13.549 Td[({)-333(Je)-1(st)-333(jes)-1(zc)-1(ze)-334(i)-333(\\271dzie)-1(b)1(k)28(o)-334(mi\\246s)-1(a.)1(..)-333({)-334(ozw)27(a\\252a)-333(si\\246)-334(ni)1(e)-1(\\261m)-1(i)1(a\\252o)-334(Han)1(k)55(a.)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(B\\363g)-333(z)-1(ap)1(\\252a\\242)-1(,)-333(mi\\246)-1(sa)-333(nie)-334(j)1(adam.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(il)1(kli)-300(z)-301(p)-27(o)-28(c)-1(z\\241tku)-300(i)-300(p)1(rz)-1(y)1(patr)1(yw)27(al)1(i)-301(m)28(u)-300(s)-1(i)1(\\246)-301(;)-300(z)-301(\\273)-1(yczliw)28(\\241)-301(cie)-1(k)56(a)28(w)28(o\\261)-1(ci\\241,)-300(ale)]TJ -27.879 -13.55 Td[(gdy)-333(p)1(rzys)-1(i)1(ad\\252)-333(do)-333(jad)1(\\252)-1(a,)-333(r)1(oz)-1(mo)28(w)-1(y)-333(i)-333(\\261m)-1(i)1(e)-1(c)28(h)28(y)-333(p)-28(o)-28(d)1(ni)1(os)-1(\\252y)-333(s)-1(i)1(\\246)-334(na)-333(no)28(w)28(o.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-281(Jagna)-281(m)-1(i)1(lc)-1(za\\252a,)-281(p)-28(ogl)1(\\241da\\252a)-281(c)-1(z\\246)-1(sto)-282(n)1(a)-281(w)27(\\246dro)28(wni)1(k)55(a)-281(ze)-282(z)-1(d)1(umieniem)-1(,)-281(\\273e)]TJ -27.879 -13.549 Td[(to)-355(taki)-354(c)-1(z\\252o)27(wiek)-355(jak)-354(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(,)-354(a)-356(u)-354(grob)1(u)-355(Jez)-1(u)1(s)-1(o)28(w)28(e)-1(go)-355(b)28(y\\252,)-354(p)-28(\\363\\252)-355(\\261w)-1(i)1(ata)-355(z)-1(es)-1(ze)-1(d)1(\\252)-355(i)]TJ 0 -13.549 Td[(cud\\363)28(w)-361(t)28(yl)1(a)-361(widzia\\252...)-360(Jak)-361(to)-360(tam)-361(m)-1(o\\273e)-361(b)28(y\\242)-361(w)-361(t)28(ym)-361(\\261w)-1(i)1(e)-1(cie)-1(?)-360({)-361(m)27(y\\261la\\252a:)-360({)-361(Gd)1(z)-1(ie)]TJ 0 -13.549 Td[(to)-294(i\\261\\242,)-294(\\273)-1(eb)28(y)-293(tam)-294(z)-1(a)-55(j\\261)-1(\\242?...)-293(Naok)28(\\363\\252)-294(prze)-1(ciec)27(h)-293(ino)-293(w)-1(sie)-294(a)-294(p)-27(ola,)-294(a)-294(b)-27(ory)84(,)-294(a)-294(za)-294(ni)1(m)-1(i)-293(te)-1(\\273)]TJ 0 -13.55 Td[(ws)-1(i)1(e)-338(i)-338(p)-27(ola,)-337(i)-337(lasy)83(..)1(..)-337(Z)-1(e)-337(s)-1(to)-337(m)-1(i)1(l)-338(t)1(rz)-1(a)-337(i\\261\\242)-338(ab)-27(o)-338(i)-337(z)-338(t)28(ysi\\241c)-338({)-338(m)28(y\\261la\\252a)-338(i)-337(mia\\252a)-338(d)1(z)-1(i)1(w)-1(n)1(\\241)]TJ 0 -13.549 Td[(o)-28(c)28(hot\\246)-334(si\\246)-334(sp)28(yta\\242,)-333(ale)-334(gd)1(z)-1(ie)-333(b)28(y)-333(to)-333(z)-1(a\\261)-334(mog\\252a,)-333(wv\\261)-1(mia\\252b)28(y)-333(j)1(\\241)-334(j)1(e)-1(sz)-1(cz)-1(e...)1(.)]TJ 27.879 -13.549 Td[(Ch\\252op)1(ak)-225(Rafa\\252\\363)28(w,)-225(co)-225(t)1(o)-225(b)28(y\\252)-224(z)-225(w)27(o)-55(jsk)55(a)-224(p)-28(o)28(wr\\363)-28(ci\\252,)-224(przyn)1(i\\363s)-1(\\252)-224(s)-1(kr)1(z)-1(y)1(p)-28(ce)-1(,)-224(nastroi)1(\\252)]TJ -27.879 -13.549 Td[(i)-333(z)-1(acz\\241\\252)-334(p)1(rz)-1(egry)1(w)27(a\\242)-334(p)1(ie)-1(\\261ni)1(e)-334(r\\363\\273ne.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-381(si\\246)-381(ucz)-1(y)1(ni\\252a,)-380(des)-1(zc)-1(z)-381(t)28(ylk)28(o)-380(z)-1(acina\\252)-380(w)-381(s)-1(zyb)28(y)-380(i)-381(p)1(s)-1(y)-380(jazgota\\252y)-381(p)1(rz)-1(ed)]TJ -27.879 -13.55 Td[(domem)-1(.)-258(A)-258(on)-258(gr)1(a\\252)-259(w)28(c)-1(i\\241\\273)-258(i)-258(c)-1(or)1(az)-259(to)-258(c)-1(o\\261)-258(no)28(w)27(ego,)-258(pr)1(z)-1(ebiera\\252)-258(in)1(o)-259(p)1(alc)-1(ami)-258(i)-258(sm)27(yki)1(e)-1(m)]TJ 0 -13.549 Td[(tak)-259(c)-1(i)1(\\241\\252)-260(p)-27(o)-260(stru)1(nac)28(h,)-259(\\273)-1(e)-259(n)28(uta)-259(jak)1(b)28(y)-259(s)-1(ama)-260(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a.)1(..)-259(p)-28(ob)-27(o\\273ne)-260(p)1(ie)-1(\\261ni)1(e)-260(gra\\252)-259(jak-)]TJ 0 -13.549 Td[(b)28(y)-300(l)1(a)-301(tego)-300(w)27(\\246dr)1(o)28(w)-1(n)1(ik)56(a;)-300(kt\\363ren)-300(o)-27(c)-1(z\\363)27(w)-300(z)-301(n)1(ic)27(h)-299(nie)-300(s)-1(p)1(usz)-1(cz)-1(a\\252,)-300(a)-300(p)-27(otem)-301(zno)28(wu)-300(in)1(ne,)]TJ 0 -13.549 Td[(\\261w)-1(i)1(ato)27(w)28(e)-382(c)-1(a\\252ki)1(e)-1(m)-382(t\\246)-382(o)-382(Jas)-1(i)1(u,)-382(j)1(ad\\241cym)-382(na)-381(w)27(o)-56(j)1(e)-1(n)1(k)28(\\246)-1(,)-381(c)-1(o)-381(j\\241)-382(to)-382(cz)-1(\\246sto)-382(dziew)27(cz)-1(yn)29(y)]TJ 0 -13.549 Td[(za)27(w)28(o)-28(d)1(z)-1(i\\252y)-251(p)-27(o)-251(p)-27(olac)27(h)1(...)-251(a)-251(tak)-251(\\273a\\252o\\261)-1(l)1(iwie)-252(wyci\\241)-28(ga\\252)-251(n)28(u)1(t\\246)-252(z)-251(o)27(wyc)28(h)-251(d)1(re)-1(wu)1(le)-1(k)1(,)-251(a\\273)-252(mr\\363z)]TJ 0 -13.55 Td[(sz)-1(ed\\252,)-342(p)-28(o)-342(k)28(o\\261)-1(ciac)27(h)-342(ws)-1(zystkic)27(h)1(,)-343(a)-342(Jagusi,)-342(\\273)-1(e)-343(to)-342(c)-1(zuj)1(na)-343(b)29(y\\252a)-343(na)-342(m)27(u)1(z)-1(yk)28(\\246)-343(j)1(ak)-343(ma\\252o)]TJ 0 -13.549 Td[(kto,)-333(\\252zy)-333(c)-1(iu)1(rkiem)-334(p)-27(o)-28(ciek\\252y)-333(p)-28(o)-333(t)28(w)27(ar)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(rze)-1(sta\\253,)-333(b)-27(o)-333(Jagusia)-334(p)1(\\252ac)-1(ze)-1(!)1(...)-333({)-333(z)-1(a)28(w)28(o\\252)-1(a)-333(Nastk)56(a)]TJ 0 -13.549 Td[({)-412(Nie)-1(.)1(..)-412(to)-413(i)1(no)-412(tak...)-412(ozbiera)-412(mnie)-413(za)28(w)-1(d)1(y)-412(grani)1(e)-1(..)1(.)-413(n)1(ie...sz)-1(ept)1(a\\252)-1(a)-412(za)27(wst)28(y-)]TJ -27.879 -13.549 Td[(dzona)-333(kr)1(yj\\241c)-333(t)27(w)28(arz)-334(w)-333(z)-1(ap)1(as)-1(ce.)]TJ 27.879 -13.55 Td[(Nie)-446(p)-27(omog\\252)-1(o)-445(to)-446(n)1(ic,)-446(b)-27(o)-446(c)28(ho)-28(\\242)-446(n)1(ie)-446(c)27(h)1(c)-1(i)1(a\\252)-1(a,)-445(a)-446(\\252zy)-445(s)-1(ame)-446(k)56(apa\\252y)-446(z)-446(t)1(e)-1(j)-445(onej)]TJ -27.879 -13.549 Td[(t\\246s)-1(kl)1(iw)27(o\\261ci)-334(d)1(z)-1(i)1(w)-1(n)1(e)-1(j)1(,)-333(c)-1(o)-333(jej)-333(b)28(y\\252a)-333(ws)-1(ta\\252a)-333(w)-334(serc)-1(u)-333(n)1(ie)-334(wiad)1(om)-1(o)-333(za)-334(cz)-1(y)1(m)-1(.)1(..)]TJ 27.879 -13.549 Td[(Ale)-345(c)28(h\\252op)1(ak)-345(gr)1(a\\242)-345(ni)1(e)-345(przes)-1(ta\\252,)-344(t)28(yla)-344(\\273e)-345(te)-1(r)1(az)-345(rzn\\241\\252)-344(o)-28(d)-344(uc)28(ha)-344(s)-1(i)1(arcz)-1(yste)-345(ma-)]TJ -27.879 -13.549 Td[(zury)-300(a)-300(ob)-28(ertasy)-300(takie,)-300(a\\273)-301(dziew)27(cz)-1(yn)29(y)-301(u)1(s)-1(i)1(e)-1(d)1(z)-1(ie\\242)-301(n)1(ie)-301(mog\\252)-1(y)84(,)-300(ino)-300(\\261c)-1(isk)56(a\\252y)-301(d)1(ygo)-28(cz)-1(\\241c)]TJ 0 -13.549 Td[(z)-352(u)1(c)-1(iec)27(h)28(y)-351(k)28(olan)1(a)-352(a)-351(rzuca\\252y)-351(ramionami)-351(,)-352(p)1(arob)1(ki)-351(przytu)1(p)28(yw)28(ali)-351(raz)-352(w)-351(raz)-352(i)-351(p)-27(o)-28(d-)]TJ 0 -13.549 Td[(\\261piewyw)27(al)1(i)-365(w)27(eso\\252)-1(o)-364({)-365(iz)-1(b)1(a)-365(nap)-27(e\\252)-1(n)1(i\\252a)-365(si\\246)-365(w)-1(r)1(z)-1(a)28(w)28(\\241)-365(a)-365(tup)-27(otem)-366(i)-364(\\261)-1(miec)27(h)1(am)-1(i)-364(,)-365(a\\273)-365(s)-1(i\\246)]TJ 0 -13.55 Td[(sz)-1(yb)29(y)-334(t)1(rz)-1(\\246s\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Naraz)-278(p)1(ies)-278(j\\241\\252)-277(s)-1(k)28(o)28(wyc)-1(ze\\242)-278(w)-278(sie)-1(n)1(i)-278(i)-277(tak)-277(p)1(rz)-1(era\\271liwie)-278(za)28(w)-1(y)1(\\252,)-278(\\273e)-278(umilk)1(li)-277(w)-1(szy-)]TJ -27.879 -13.549 Td[(sc)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(si\\246)-334(sta\\252o?)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)-376(rz)-1(u)1(c)-1(i)1(\\252)-378(si\\246)-378(d)1(o)-378(sieni)-377(tak)-377(pr)1(\\246)-1(d)1(k)28(o,)-377(\\273)-1(e)-377(o)-378(ma\\252o)-378(si\\246)-378(n)1(ie)-378(p)1(rze)-1(wr\\363)-27(c)-1(i\\252)-377(o)-377(s)-1(zat-)]TJ -27.879 -13.55 Td[(k)28(o)28(wnic\\246)-1(.)]TJ 27.879 -13.549 Td[({)-353(I)-1(,)-353(n)1(ic)-1(.)1(..)-354(c)28(h\\252op)1(ak)-354(k)1(t\\363ry\\261)-354(p)1(rzyc)-1(i)1(\\241\\252)-354(psu)-353(ogon)-353(dr)1(z)-1(wiami)-354(i)-353(b)-27(e)-1(z)-354(t)1(o)-354(tak)-353(wy\\252!)-354({)]TJ\nET\nendstream\nendobj\n315 0 obj <<\n/Type /Page\n/Contents 316 0 R\n/Resources 314 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n314 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n319 0 obj <<\n/Length 9264      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(95)]TJ -363.686 -35.866 Td[(za)27(w)28(o\\252a\\252)-334(An)29(te)-1(k,)-333(wyj)1(rza)27(wsz)-1(y)-333(d)1(o)-334(sieni.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334(to)-333(Witk)56(a)-333(rob)-27(ota)-333({)-334(zau)28(w)28(a\\273)-1(y)-333(\\252)-333(B)-1(or)1(yna.)]TJ 0 -13.549 Td[({)-372(Ale,)-372(Witek)-372(b)28(y)-372(ta)-372(p)1(s)-1(a)-372(krzywdzi\\252,)-372(kt)1(\\363re)-1(n)-371(z)-1(b)1(ie)-1(r)1(a)-372(p)-28(o)-372(ws)-1(i)-371(w)-1(y)1(w)-1(\\252\\363ki)-372(r)1(\\363\\273)-1(n)1(e)-373(i)]TJ -27.879 -13.549 Td[(lekuj)1(e)-1(.)1(..)-333({)-334(b)1(ron)1(i\\252a)-334(gor)1(\\241c)-1(o)-333(J\\363zia.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)-284(p)-28(o)28(wr\\363)-27(c)-1(i\\252)-285(mo)-28(cno)-285(wz)-1(b)1(urzon)28(y)84(,)-285(os)-1(w)28(ob)-27(o)-28(dzi\\242)-285(m)27(usia\\252)-285(psa,)-285(b)-27(o)-285(s)-1(k)28(o)28(wyt)-285(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.55 Td[(s\\252)-1(y)1(c)27(ha\\242)-333(ju)1(\\273)-334(gdzie)-1(\\261)-333(w)-334(op)1(\\252)-1(ot)1(k)55(ac)28(h.)]TJ 27.879 -13.549 Td[({)-417(I)-417(p)1(ies)-418(st)28(w)27(or)1(z)-1(enie)-417(b)-27(os)-1(ki)1(e)-1(,)-416(i)-417(cz)-1(u)1(je)-417(krzywd\\246)-417(jak)28(o)-416(i)-417(cz)-1(\\252o)28(wie)-1(k)1(...)-417(P)29(an)-417(Jez)-1(u)1(s)]TJ -27.879 -13.549 Td[(mia\\252)-334(t)1(e)-1(\\273)-334(sw)27(o)-55(jego)-334(p)1(ies)-1(k)56(a)-333(i)-333(nie)-334(d)1(a\\252)-334(n)1(ik)28(om)28(u)-333(krzywdzi\\242)-1(.)1(..)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(p)-27(oryw)28(c)-1(zo.)]TJ 27.879 -13.549 Td[({)-397(P)28(an)-397(Jez)-1(u)1(s)-398(b)28(y)-397(tam)-398(mia\\252)-397(pies)-1(k)56(a,)-397(jak)-397(wsz)-1(ysc)-1(y)-397(l)1(udzie?)-1(.)1(..)-397({)-398(w)28(\\241tpi)1(\\252a)-398(Jagu)1(-)]TJ -27.879 -13.549 Td[(st)27(y)1(nk)56(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(\\273e)-1(b)29(y\\261)-1(cie)-334(wiedzieli,)-333(to)-333(m)-1(i)1(a\\252)-334(i)-333(Bur)1(kiem)-334(go)-333(prze)-1(zyw)28(a\\252...)]TJ 0 -13.55 Td[({)-333(Hale)-1(.)1(..)-333(No!)-333(C)-1(i)1(e)-1(..)1(.)-334({)-333(o)-28(d)1(z)-1(y)1(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(c)-1(i)1(e)-1(k)56(a)28(w)27(e)-333(g\\252)-1(osy)83(.)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)-232(milcz)-1(a\\252)-232(c)27(h)28(wil\\246,)-233(a)-232(p)-28(ot)1(e)-1(m)-233(p)-27(o)-28(dn)1(i\\363s\\252)-233(s)-1(i)1(w)27(\\241)-233(g\\252o)28(w)28(\\246)-1(,)-232(ok)28(olon\\241)-232(d\\252ugi)1(m)-1(i)1(,)-233(r\\363)28(wno)]TJ -27.879 -13.549 Td[(nad)-400(czo\\252)-1(em)-401(u)1(c)-1(i\\246t)28(ymi)-400(w)-1(\\252osam)-1(i)1(,)-401(u)1(tkwi\\252)-400(blad)1(e)-1(,)-400(j)1(akb)28(y)-400(wyp\\252ak)56(ane)-401(o)-27(c)-1(zy)-400(w)-401(ogni)1(u)-400(i)]TJ 0 -13.549 Td[(ozw)27(a\\252)-333(s)-1(i\\246)-333(c)-1(ic)28(ho,)-333(pr)1(z)-1(ebi)1(e)-1(ra)-55(j\\241c)-333(palcam)-1(i)-333(ziarn)1(a)-334(r)1(\\363\\273)-1(a\\253)1(c)-1(a.)1(..)]TJ 27.879 -13.549 Td[(W)-333(o)28(w)-1(y)-333(cz)-1(as)-333(daleki..)1(.)]TJ 0 -13.55 Td[(Kiej)-358(P)28(an)-358(Je)-1(zus)-359(j)1(e)-1(sz)-1(cz)-1(e)-359(p)-27(o)-359(zie)-1(mi)-358(c)27(had)1(z)-1(a\\252)-358(i)-359(rz\\241dy)-358(nad)-358(nar)1(o)-28(dem)-359(s)-1(am)-359(spr)1(a-)]TJ -27.879 -13.549 Td[(w)28(o)27(w)28(a\\252,)-333(s)-1(ta\\252o)-333(s)-1(i)1(\\246)-334(to,)-333(c)-1(o)-27(\\242)-334(w)27(am)-333(rze)-1(kn)1(\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[(Szed\\252)-472(s)-1(e)-473(P)28(an)-471(Je)-1(zus)-473(n)1(a)-473(o)-27(dp)1(ust)-473(d)1(o)-473(M)1(s)-1(to)28(w)28(a,)-472(a)-473(d)1(rogi)-472(nik)56(a)-55(j)-472(nie)-472(b)28(y\\252o,)-472(ino)]TJ -27.879 -13.549 Td[(pi)1(ac)27(h)28(y)-322(s)-1(r)1(ogie)-323(a)-323(p)1(arz\\241c)-1(e,)-323(b)-27(o)-323(s\\252o\\253ce)-323(pr)1(z)-1(yp)1(iek)55(a\\252o)-322(i)-323(gor)1(\\241c)-323(b)28(y\\252)-323(t)1(aki,)-322(jak)-322(kieb)28(y)-322(prze)-1(d)]TJ 0 -13.549 Td[(bu)1(rz\\241...)-333(A)-333(c)-1(ieni)1(a)-334(n)1(ik)56(a)-56(j)-333(n)1(i)-333(os)-1(\\252on)28(y)84(.)]TJ 27.879 -13.55 Td[(P)28(an)-309(Jez)-1(u)1(s)-310(sz)-1(ed\\252)-309(z)-310(c)-1(i)1(e)-1(rp)1(liw)28(o\\261)-1(ci\\241)-309(wie)-1(l)1(k)55(\\241,)-309(b)-27(o)-310(d)1(o)-310(l)1(as)-1(u)-309(b)28(y)1(\\252)-1(o)-309(j)1(e)-1(sz)-1(cz)-1(e)-310(k)56(a)28(w)28(a\\252)-310(dr)1(o-)]TJ -27.879 -13.549 Td[(gi,)-350(ale)-352(\\273e)-351(ju)1(\\273)-352(t)28(yc)28(h)-351(\\261wi\\246)-1(t)28(yc)28(h)-351(n)1(\\363\\273)-1(k)28(\\363)28(w)-351(n)1(ie)-352(czu\\252)-351(z)-351(utr)1(udzenia)-351(i)-350(pi\\242)-351(m)27(u)-350(si\\246)-351(okru)1(tnie)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(o,)-352(to)-352(s)-1(e)-353(r)1(az)-353(w)-353(raz)-353(p)1(rzysiada\\252)-352(na)-352(w)-1(y)1(dmac)27(h,)-352(c)27(h)1(o)-28(cia)-353(tam)-352(i)-353(b)1(arze)-1(j)-352(p)1(rzygrze)-1(-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(o,)-346(i)-346(r)1(os)-1(\\252y)-346(sam)-1(e)-347(i)1(no)-346(k)28(oz)-1(i)1(e)-1(b)1(r\\363)-28(d)1(ki,)-346(a)-346(c)-1(ieni)1(a)-347(b)29(y\\252o)-347(t)28(yl)1(a,)-346(c)-1(o)-346(o)-28(d)-346(t)28(yc)28(h)-346(p)-28(osc)27(h)1(ni\\246t)28(yc)27(h)]TJ 0 -13.549 Td[(bad)1(yli)-333(d)1(z)-1(iew)27(an)1(n,)-333(\\273e)-334(i)-333(ptasze)-1(k)-333(b)28(y)-333(si\\246)-334(n)1(ie)-334(s)-1(c)28(hr)1(oni\\252..)1(..)]TJ 27.879 -13.55 Td[(Ale)-322(co)-321(pr)1(z)-1(ysiad\\252,)-321(to)-321(i)-321(ni)1(e)-322(o)-28(d)1(z)-1(ip)1(n\\241\\252)-321(na)28(w)28(e)-1(t)-321(rze)-1(t)1(e)-1(ln)1(ie,)-322(b)-27(o)-321(z)-1(ar)1(az)-322(Z\\252y)83(,)-321(j)1(ak)28(o)-322(ten)]TJ -27.879 -13.549 Td[(jastrz\\241b)-361(p)1(as)-1(k)1(udn)29(y)83(,)-361(co)-361(bi)1(je)-361(z)-362(g\\363ry)-360(w)-362(u)1(s)-1(ta\\252ego)-361(ptasz)-1(k)56(a,)-361(t)1(ak)-361(c)-1(i)-361(on)-360(z)-1(ap)-27(o)28(wie)-1(t)1(rz)-1(on)29(y)]TJ 0 -13.549 Td[(bi)1(\\252)-375(racicam)-1(i)-374(w)-375(p)1(iac)27(h)-374(a)-375(t)1(arz)-1(a\\252)-374(s)-1(i\\246)-375(j)1(ak)28(o)-375(to)-374(b)28(yd)1(l\\246,)-375(\\273e)-375(tak)56(a)-375(ku)1(rza)27(w)28(a,)-374(tak)55(a)-374(\\242)-1(ma)-374(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a,)-333(co)-334(i)-333(\\261wiata)-333(w)-1(i)1(da\\242)-334(n)1(ie)-334(b)28(y)1(\\252o...)]TJ 27.879 -13.549 Td[(P)28(an)-362(Jez)-1(u)1(s)-1(,)-362(c)27(ho)-27(\\242)-364(m)28(u)-362(piersi)-363(zapiera\\252o)-363(i)-362(ledwie)-363(s)-1(i)1(\\246)-364(j)1(u\\273)-363(ru)1(c)27(h)1(a\\252)-1(,)-362(to)-363(wsta)28(w)27(a\\252)-363(i)]TJ -27.879 -13.55 Td[(sz)-1(ed\\252,)-371(a)-372(in)1(o)-372(si\\246)-372(p)-27(o\\261)-1(miew)27(a\\252)-371(z)-372(g\\252up)1(ie)-1(go,)-371(b)-27(o)-372(p)1(rz)-1(ecie)-1(c)28(h)-371(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-371(\\273e)-372(Z)-1(\\252y)-371(c)27(h)1(c)-1(i)1(a\\252)-372(m)27(u)]TJ 0 -13.549 Td[(zm)27(yli)1(\\242)-334(dr)1(og\\246)-1(,)-333(cob)28(y)-333(nie)-333(s)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(o)-27(dpu)1(s)-1(t)-333(n)1(a)-334(zba)28(wienie)-334(gr)1(z)-1(es)-1(znego)-333(naro)-27(du)1(...)]TJ 27.879 -13.549 Td[(I)-333(s)-1(ze)-1(d)1(\\252)-334(P)28(an)-332(Je)-1(zus...)-333(sz)-1(ed\\252...)-333(a\\273)-333(i)-334(p)1(rzysz)-1(ed\\252)-333(do)-333(las)-1(u)1(...)]TJ 0 -13.549 Td[(Od)1(p)-28(o)-27(c)-1(z\\241\\252)-290(se)-290(w)-289(c)-1(ieni)1(u)-289(niezgo)-1(r)1(z)-1(ej,)-289(o)-27(c)27(h\\252o)-28(d)1(z)-1(i)1(\\252)-290(w)28(o)-28(d\\241)-289(i)-289(co\\261)-290(ni)1(e)-1(co\\261)-290(z)-290(tor)1(b)28(y)-289(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(gry)1(z)-1(,)-333(p)-27(ote)-1(m)-333(w)-1(y)1(\\252)-1(ama\\252)-333(niez)-1(gor)1(s)-1(zy)-333(kij)1(as)-1(ze)-1(k,)-333(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-334(si\\246)-334(i)-333(wlaz\\252)-334(w)-333(b)-28(\\363r)1(.)]TJ 27.879 -13.549 Td[(A)-246(b)-27(\\363r)-245(b)28(y\\252)-246(stary)-245(i)-246(g\\246s)-1(t)28(y)84(,)-246(a)-246(b)1(\\252ota)-246(ni)1(e)-1(pr)1(z)-1(eb)28(yte,)-246(a)-245(c)27(hr)1(ap)28(y)-246(i)-245(opar)1(z)-1(elisk)56(a)-246(takie,)-246(\\273e)]TJ -27.879 -13.55 Td[(m)27(u)1(s)-1(i)-229(sam)-230(Z\\252y)-229(tam)-230(d)1(om)-1(o)28(w)28(a\\252,)-229(a)-230(g\\241sz)-1(cz)-1(e,)-229(\\273)-1(e)-229(i)-229(niekt\\363rem)27(u)-228(ptak)28(o)28(wi)-229(\\252)-1(acno)-229(p)1(rz)-1(emkn\\241\\242)]TJ 0 -13.549 Td[(si\\246)-346(n)1(ie)-346(b)29(y\\252o.)-345(Je)-1(n)1(o)-345(P)28(an)-345(Jez)-1(u)1(s)-346(wsz)-1(ed\\252,)-345(a)-345(tu)-345(k)1(ie)-1(j)-344(Z\\252y)-345(b)-28(or)1(e)-1(m)-345(nie)-345(z)-1(atr)1(z)-1(\\246s)-1(i)1(e)-1(,)-345(k)1(ie)-1(j)-344(nie)]TJ 0 -13.549 Td[(zac)-1(znie)-401(w)-1(y)1(\\242)-1(,)-401(ki)1(e)-1(j)-401(n)1(ie)-402(p)-27(o)-28(cz)-1(n)1(ie)-402(\\252ama\\242)-402(c)28(ho)-55(jar\\363)28(w)-401(a)-402(wiater,)-401(j)1(ak)28(o)-401(\\273)-1(e)-401(to)-402(j)1(e)-1(n)1(o)-401(parob)]TJ 0 -13.549 Td[(pi)1(e)-1(ki)1(e)-1(ln)29(y)83(,)-364(p)-28(omaga\\252)-365(w)-365(te)-365(p)-28(\\246dy)-364(i)-365(r)1(w)27(a\\252)-365(susz)-1(k)1(i,)-365(rw)28(a\\252)-365(d)1(\\246)-1(b)28(y)84(,)-365(r)1(w)27(a\\252)-365(ga\\252\\246z)-1(ie)-365(i)-364(h)28(ucz)-1(a\\252,)-364(i)]TJ 0 -13.549 Td[(h)28(u)1(rk)28(ota\\252)-333(p)-28(o)-333(b)-27(orz)-1(e)-333(jak)28(o)-333(te)-1(n)-332(g\\252)-1(u)1(pi)1(.)]TJ 27.879 -13.55 Td[(Ciem)-1(n)1(o\\261)-1(\\242)-470(s)-1(i\\246)-470(s)-1(ta\\252a,)-470(\\273e)-471(c)28(ho)-28(cia)-470(ok)28(o)-470(w)-1(y)1(k)28(ol)-470({)-470(a)-471(tu)-469(s)-1(zum,)-470(a)-470(tu)-470(tr)1(z)-1(ask...)-470(a)]TJ -27.879 -13.549 Td[(tu)-341(z)-1(a)28(wieruc)28(ha..)1(.)-342(a)-342(tu)-341(jaki)1(e)-1(\\261)-342(z)-1(wierzaki,)-341(p)-28(omiot)28(y)-342(d)1(iab)-27(e)-1(l)1(s)-1(ki)1(e)-343(wysk)56(akuj)1(\\241)-342(i)-342(sz)-1(cz)-1(erz\\241)]TJ\nET\nendstream\nendobj\n318 0 obj <<\n/Type /Page\n/Contents 319 0 R\n/Resources 317 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n317 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n322 0 obj <<\n/Length 9222      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(96)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(k\\252y)84(...)-333(i)-333(w)27(ar)1(c)-1(z\\241...)1(i)-334(strasz)-1(\\241.)1(..)-333(i)-333(\\261)-1(wiec)-1(\\241)-333(\\261le)-1(p)1(iami,)-333(i...)-333(in)1(o...)-333(in)1(o)-333(c)27(h)28(yci\\242)-334(p)1(az)-1(u)1(rami.)]TJ 27.879 -13.549 Td[(ale)-385(ju)1(\\261)-1(ci,)-384(\\273)-1(e)-385(nie)-385(\\261m)-1(i)1(a\\252)-1(y)84(,)-385(b)-27(o)-385(j)1(ak\\273)-1(e)-385(b)28(y)84(...)-384(P)28(an)-385(ci)-385(Jezus)-385(b)28(y\\252)-385(w)-385(sw)27(o)-55(jej)-385(\\261wi\\246)-1(tej)]TJ -27.879 -13.549 Td[(osobie...)]TJ 27.879 -13.549 Td[(Ale)-461(i)-462(P)29(an)28(u)-461(Jez)-1(u)1(s)-1(o)28(wi)-461(do\\261\\242)-462(b)28(y)1(\\252)-1(o)-461(tego)-461(g\\252)-1(u)1(pi)1(e)-1(go)-461(s)-1(tr)1(ac)27(h)1(ania,)-461(i)-461(\\273e)-462(pi)1(lno)-461(na)]TJ -27.879 -13.549 Td[(o)-28(d)1(pu)1(s)-1(t,)-362(to)-363(pr)1(z)-1(e\\273)-1(egna\\252)-363(b)-27(\\363r)-363(i)-362(z)-1(ar)1(az)-364(ws)-1(zystkie)-363(Z\\252e)-364(i)-362(z)-1(e)-363(sw)27(oimi)-363(k)1(umam)-1(i)-362(przepadl)1(i)]TJ 0 -13.55 Td[(w)-334(op)1(arze)-1(l)1(is)-1(k)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Osta\\252)-272(si\\246)-272(ino)-272(t)1(aki)-272(d)1(z)-1(ik)1(i)-272(pi)1(e)-1(s,)-272(b)-27(o)-272(w)-272(on)28(y)-271(c)-1(zas)-272(pies)-1(k)1(i)-272(ni)1(e)-273(b)29(y\\252y)-272(j)1(e)-1(sz)-1(cz)-1(e)-272(z)-272(lu)1(d\\271m)-1(i)]TJ -27.879 -13.549 Td[(p)-27(obrat)1(ane.)]TJ 27.879 -13.549 Td[(T)83(en)-397(ci)-397(to)-397(pies)-398(osta\\252)-397(i)-397(le)-1(cia\\252)-397(z)-1(a)-397(P)29(anem)-398(Jez)-1(u)1(s)-1(em)-1(,)-396(s)-1(zc)-1(ze)-1(k)56(a\\252,)-397(to)-397(do)-27(c)-1(iera\\252)-397(do)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(t)28(yc)28(h)-436(n)1(\\363\\273)-1(ek)-436(Jego,)-436(to)-436(u)1(dar)1(\\252)-436(z)-1(\\246bami)-436(za)-436(p)-27(ortec)-1(zki,)-435(to)-436(k)56(ap)-28(ot)-435(Mu)-435(oz)-1(d)1(ar\\252)-436(i)-436(za)]TJ 0 -13.549 Td[(torb)29(y)-323(c)27(h)29(yta\\252,)-323(i)-322(s)-1(i)1(e)-1(ln)1(ie)-323(s)-1(i)1(\\246)-324(d)1(obi)1(e)-1(ra\\252)-322(do)-323(mi\\246s)-1(a..)1(.)-323(ale)-323(P)28(an)-322(Jez)-1(u)1(s)-1(,)-322(jak)28(o)-323(\\273e)-323(b)28(y\\252)-323(l)1(ito\\261)-1(ci-)]TJ 0 -13.55 Td[(wy)-359(i)-359(krzywdy)-359(n)1(ij)1(akiem)27(u)-359(st)28(w)27(or)1(z)-1(eniu)-358(z)-1(rob)1(i\\242)-360(b)29(y)-359(nie)-359(z)-1(r)1(obi\\252,)-359(a)-359(m\\363g\\252)-360(go)-359(ki)1(jasz)-1(ki)1(e)-1(m)]TJ 0 -13.549 Td[(pr)1(z)-1(etr\\241ci\\242)-334(ab)-27(o)-333(i)-333(z)-1(asie)-334(sam)27(ym)-333(p)-28(om)28(y\\261)-1(l)1(e)-1(n)1(ie)-1(m)-333(z)-1(ab)1(i\\242)-1(,)-333(to)-333(in)1(o)-334(p)-27(o)28(wie)-1(d)1(a:)]TJ 27.879 -13.549 Td[({)-333(Na\\261)-1(ci,)-333(g\\252up)1(i,)-333(c)27(h)1(le)-1(b)1(as)-1(zk)56(a,)-334(k)1(ie)-1(j)1(\\261)-334(g\\252o)-28(d)1(n)28(y)-333({)-334(i)-333(r)1(z)-1(u)1(c)-1(i\\252)-333(m)27(u)-333(z)-333(torb)28(y)84(.)]TJ 0 -13.549 Td[(Ale)-357(p)1(ies)-357(s)-1(i)1(\\246)-357(roze)-1(\\271li\\252)-356(i)-357(zapami\\246ta\\252,)-356(\\273)-1(e)-357(n)1(ic,)-357(i)1(no)-356(k\\252y)-356(s)-1(zc)-1(ze)-1(r)1(z)-1(y)84(,)-356(w)27(arczy)83(,)-356(uj)1(ada,)]TJ -27.879 -13.549 Td[(a)-333(do)-28(ciera)-333(i)-333(c)-1(a\\252kiem)-334(j)1(u\\273)-334(p)1(s)-1(u)1(je)-334(J)1(e)-1(zuso)27(w)28(e)-334(p)-27(ortec)-1(zki.)]TJ 27.879 -13.55 Td[({)-387(Chlebam)-387(ci)-387(da\\252,)-386(nie)-387(ukr)1(z)-1(y)1(w)-1(d)1(z)-1(i)1(\\252)-1(,)-386(a)-387(oblecz)-1(enie)-387(mi)-387(rwies)-1(z)-387(i)-387(sz)-1(cz)-1(ek)56(as)-1(z)-387(p)-28(o)]TJ -27.879 -13.549 Td[(pr)1(\\363\\273)-1(n)1(icy)83(.)-476(G)1(\\252)-1(u)1(pi)1(\\261)-1(,)-476(m\\363)-55(j,)-476(p)1(ie)-1(sku)1(,)-476(b)-27(o\\261)-477(P)28(an)1(a)-476(s)-1(w)28(e)-1(go)-475(nie)-476(p)-28(ozna\\252.)-475(Je)-1(sz)-1(cz)-1(e)-476(t)28(y)-476(za)-476(to)]TJ 0 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)28(o)28(wi)-384(o)-27(ds\\252)-1(u)1(\\273)-1(y)1(s)-1(z)-384(i)-384(\\273y\\242)-384(b)-27(e)-1(z)-384(ni)1(e)-1(go)-384(n)1(ie)-384(p)-27(oradzisz)-1(..)1(.)-384({)-384(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-384(P)28(an)-383(Je)-1(zus)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(o,)-297(a\\273)-297(pies)-297(s)-1(iad)1(\\252)-297(na)-297(zadzie,)-297(p)-27(ote)-1(m)-297(za)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(,)-296(ogon)-297(wtu)1(li\\252)-297(mi\\246)-1(d)1(z)-1(y)-296(nogi,)-296(z)-1(a)28(wy\\252)]TJ 0 -13.549 Td[(i)-333(kiej)-333(og\\252up)1(ia\\252y)-333(p)-28(ogn)1(a\\252)-334(w)-333(c)-1(a\\252y)-333(\\261w)-1(i)1(at.)]TJ 27.879 -13.55 Td[(A)-333(P)28(an)-333(Jez)-1(u)1(s)-334(pr)1(z)-1(ysze)-1(d)1(\\252)-334(na)-333(o)-28(d)1(pu)1(s)-1(t.)]TJ 0 -13.549 Td[(Na)-288(o)-28(dp)1(u\\261c)-1(i)1(e)-289(nar)1(o)-28(du)-287(jak)-288(dr)1(z)-1(ew)-289(w)-288(b)-27(oru)-288(ab)-27(o)-288(te)-1(j)-287(tra)28(wy)-288(na)-288(\\252\\241k)55(ac)28(h)-288({)-288(a\\273)-289(g\\246s)-1(to.)]TJ 0 -13.549 Td[(Ale)-491(w)-492(k)28(o\\261c)-1(i)1(e)-1(le)-491(b)28(y\\252o)-491(pu)1(s)-1(t)1(o,)-491(b)-28(o)-491(w)-491(k)56(arc)-1(zmie)-492(gr)1(ali,)-491(a)-491(p)1(rz)-1(ed)-491(kr)1(uc)28(h)28(t\\241)-491(c)-1(a\\252y)]TJ -27.879 -13.549 Td[(jar)1(m)-1(ar)1(k)-333(i)-333(pij)1(a\\253st)27(w)28(o,)-333(i)-333(rozpu)1(s)-1(ta,)-333(i)-333(obr)1(az)-1(a)-333(b)-27(os)-1(k)56(a,)-333(jak)28(o)-333(i)-333(w)-334(te)-333(c)-1(zas)-1(y)-333(b)28(y)1(w)27(a.)]TJ 27.879 -13.549 Td[(Wyc)28(ho)-28(d)1(z)-1(i)-428(P)28(an)-428(Jez)-1(u)1(s)-429(p)-28(o)-428(s)-1(u)1(mie)-429(i)-429(p)1(atrzy)83(,)-428(a\\273)-429(tu)-428(n)1(ar\\363)-28(d)-428(kiej)-428(to)-429(zb)-27(o\\273)-1(e)-429(p)-27(o)-28(d)]TJ -27.879 -13.55 Td[(wiatrem,)-286(to)-285(w)-286(t\\246,)-286(t)1(o)-286(w)-286(on)1(\\241)-286(stron)1(\\246)-286(s)-1(i\\246)-286(k)28(ol)1(e)-1(b)1(ie)-286(i)-285(ucie)-1(k)56(a,)-285(a)-286(n)1(ie)-1(k)1(t\\363ry)-285(z)-286(bi)1(c)-1(ze)-1(m)-286(b)1(ie\\273)-1(y)84(,)]TJ 0 -13.549 Td[(kto)-322(\\273e)-1(r)1(dk)28(\\246)-322(z)-323(p)1(\\252otu)-322(wyci\\241)-28(ga,)-321(kto)-322(zn\\363)28(w)-322(p)-28(o)-322(k\\252on)1(ice)-323(si\\246)-1(ga,)-321(a)-322(inszy)-322(z)-1(asi\\246)-322(i)-322(k)56(am)-1(i)1(e)-1(n)1(ia)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a,)-317(a)-318(bab)28(y)-318(w)-318(kr)1(z)-1(yk)-317(i)-318(na)-318(p)1(\\252ot)28(y)-318(s)-1(i)1(\\246)-319(d)1(r\\241,)-318(to)-318(n)1(a)-318(w)27(ozy)83(,)-318(a)-318(d)1(z)-1(i)1(e)-1(ci)-318(w)-318(b)-28(ek,)-318(a)-318(wsz)-1(y)1(s)-1(cy)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(\\241:)]TJ 27.879 -13.549 Td[({)-333(W\\261)-1(ciek\\252y)-333(pies,)-334(w\\261c)-1(iek\\252y)-333(pi)1(e)-1(s!)]TJ 0 -13.55 Td[(A)-235(p)1(ie)-1(s)-235(\\261)-1(r)1(o)-28(dk)1(ie)-1(m)-235(lu)1(dzi,)-235(ki)1(e)-1(b)28(y)-235(z)-235(nag\\252a)-235(r)1(oz)-1(st\\241)-28(pi)1(on\\241)-235(u)1(lic\\241,)-235(gna)-235(z)-235(w)-1(y)1(w)-1(i)1(e)-1(sz)-1(on)29(ym)]TJ -27.879 -13.549 Td[(ozore)-1(m)-342(i)-341(wpr)1(os)-1(t)-341(na)-341(P)28(ana)-341(Je)-1(zusa.)-342(Ni)1(e)-342(ul\\241k\\252)-341(c)-1(i)-341(s)-1(i)1(\\246)-342(P)28(an)-341(nasz)-1(,)-341(nie...)-341(p)-27(oz)-1(n)1(a\\252,)-342(\\273e)-342(to)]TJ 0 -13.549 Td[(ten)-384(s)-1(am)-385(p)1(ies)-1(ek)-385(z)-384(b)-28(or)1(u,)-384(to)-385(i)1(no)-384(roz)-1(p)-27(ostar\\252)-384(t\\246)-385(s)-1(w)28(o)-56(j)1(\\241)-385(\\261wi\\246)-1(t)1(\\241)-385(k)56(ap)-28(ot)1(\\246)-385(i)-385(p)-27(o)28(wie)-1(d)1(a)-385(d)1(o)]TJ 0 -13.549 Td[(zw)-1(i)1(e)-1(rza,)-333(kt\\363r)1(e)-1(n)-333(z)-334(n)1(ag\\252a)-334(p)1(rzys)-1(t)1(an\\241\\252:)]TJ 27.879 -13.549 Td[({)-384(P)28(\\363)-55(jd)1(\\271)-384(tu,)-383(B)-1(u)1(rek,)-384(p)1(rze)-1(spiec)-1(zni)1(e)-1(j)1(s)-1(zy\\261)-384(t)28(y)-384(p)1(rz)-1(y)-383(mnie)-384(n)1(i\\271)-1(l)1(i)-384(w)-384(b)-27(orze)-1(.)-383(Okry)1(\\252)]TJ -27.879 -13.549 Td[(go)-333(k)55(ap)-27(ot\\241,)-333(osp)-28(ostar\\252)-333(nad)-333(n)1(im)-334(r)1(\\246)-1(ce)-334(i)-333(p)-27(o)27(wiad)1(a:)]TJ 27.879 -13.55 Td[({)-473(Nie)-474(zabij)1(a)-56(j)1(c)-1(ie)-473(go,)-473(lud)1(z)-1(i)1(e)-1(,)-473(b)-27(o)-474(to)-473(te\\273)-474(st)28(w)27(orze)-1(n)1(ie)-474(b)-27(oskie,)-473(a)-474(b)1(ie)-1(d)1(ne)-473(jes)-1(t,)]TJ -27.879 -13.549 Td[(g\\252o)-28(d)1(ne,)-334(zgoni)1(one)-334(i)-333(b)-27(e)-1(zpa\\253)1(s)-1(k)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-318(c)27(h)1(\\252)-1(op)1(i)-318(j)1(e)-1(li)-317(krzycz)-1(e\\242)-1(,)-318(j)1(e)-1(l)1(i)-318(wydziwia\\242;)-318(a)-318(mam)-1(r)1(ota\\242)-319(tr)1(z)-1(ask)56(a\\242)-319(k\\252on)1(icam)-1(i)-318(o)]TJ -27.879 -13.549 Td[(zie)-1(mi\\246:)-288(\\273e)-288(to)-288(zw)-1(i)1(e)-1(rz)-288(d)1(z)-1(i)1(ki)-288(i)-287(w\\261)-1(cie)-1(k)1(\\252)-1(y)84(,)-287(\\273)-1(e)-288(im)-288(j)1(u\\273)-288(t)28(yla)-288(g\\241sk)28(\\363)28(w)-288(i)-288(o)28(wiec)-1(ze)-1(k)-287(p)-28(or)1(w)27(a\\252,)-287(\\273)-1(e)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-362(sz)-1(k)28(o)-28(d)1(y)-362(cz)-1(yn)1(i,)-361(a)-362(i)-362(cz)-1(\\252o)28(wiek)55(a)-361(usz)-1(an)1(o)27(w)28(a\\242)-362(nie)-362(uszan)28(uj)1(e)-1(,)-361(ino)-361(z)-1(araz)-362(k\\252ami..)1(.)]TJ 0 -13.55 Td[(\\273e)-447(n)1(ikt)-446(b)-27(e)-1(z)-446(kij)1(a)-446(na)-446(p)-27(ole)-446(nie)-446(wyjd)1(z)-1(i)1(e)-1(,)-446(b)-27(o)-446(b)-27(e)-1(z)-446(te)-1(go)-446(p)1(iekielni)1(k)55(a)-446(p)1(rze)-1(spiecz)-1(n)1(o\\261)-1(ci)]TJ 0 -13.549 Td[(ni)1(jaki)1(e)-1(j)-333(n)1(ie)-334(ma...)-333(\\273e)-334(z)-1(ab)1(i\\242)-334(go)-333(trza)-333(k)28(oniec)-1(zni)1(e)-1(...)]TJ\nET\nendstream\nendobj\n321 0 obj <<\n/Type /Page\n/Contents 322 0 R\n/Resources 320 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 307 0 R\n>> endobj\n320 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n325 0 obj <<\n/Length 8579      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(97)]TJ -335.807 -35.866 Td[(I)-280(c)27(hcieli)-280(pr)1(z)-1(ez)-281(mo)-28(c)-281(p)1(s)-1(a)-280(sp)-28(o)-27(d)-280(P)28(an)1(a)-56(jezuso)27(w)28(e)-1(j)-279(k)55(ap)-27(ot)28(y)-280(wz)-1(i\\241\\242)-280(a)-280(z)-1(ak)56(ato)28(w)27(a\\242.)-280(A\\273)]TJ -27.879 -13.549 Td[(si\\246)-334(P)28(an)-333(Jezus)-334(ozgniew)27(a\\252)-333(i)-333(krzykn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-425(Nie)-425(r)1(uc)27(h)1(a)-56(j)1(,)-425(j)1(e)-1(d)1(e)-1(n)-424(dr)1(ugi!)-424(T)83(o)-425(si\\246,)-425(\\252a)-56(j)1(du)1(s)-1(y)-424(i)-425(p)1(ijan)1(ice)-1(,)-424(psa)-425(b)-27(oita,)-425(a)-424(P)28(ana)]TJ -27.879 -13.549 Td[(Boga)-334(to)-333(si\\246)-334(ni)1(e)-334(b)-27(oita,)-333(c)-1(o?..)]TJ 27.879 -13.549 Td[(Od)1(s)-1(t\\241)-27(pili)1(,)-272(b)-27(o)-272(mo)-28(cno)-271(rze)-1(k)1(\\252)-1(,)-271(a)-271(P)28(an)-271(Je)-1(zus)-272(i)1(m)-272(dalej)-271(p)-27(o)27(wieda)-271({)-272(\\273e)-272(s\\241)-272(\\252a)-56(j)1(du)1(s)-1(y)84(...)]TJ -27.879 -13.55 Td[(\\273e)-348(pr)1(z)-1(yszli)-347(na)-347(o)-28(d)1(pu)1(s)-1(t,)-347(a)-347(p)1(ij\\241)-347(in)1(o)-347(p)-28(o)-347(k)56(arcz)-1(mac)27(h)1(,)-347(a)-347(B)-1(oga)-347(ob)1(ra\\273a)-56(j\\241,)-346(a)-348(p)-27(oku)1(t)28(y)-347(nie)]TJ 0 -13.549 Td[(cz)-1(yn)1(i\\241)-434(i)-434(pr)1(z)-1(ekl\\246tnik)1(i)-434(s)-1(\\241,)-434(a)-434(k)56(at)28(y)-434(jedn)1(e)-435(la)-434(d)1(rugi)1(c)27(h,)-434(z\\252o)-28(dzieje,)-434(b)-28(ezb)-28(o\\273nik)1(i)-434(i)-434(k)56(a)-1(r)1(a)]TJ 0 -13.549 Td[(b)-27(os)-1(k)56(a)-333(ic)27(h)-333(n)1(ie)-334(mini)1(e)-1(.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zy\\252)-333(P)28(an)-333(Jez)-1(u)1(s)-1(,)-333(p)-27(o)-28(dn)1(i\\363s\\252)-334(ki)1(jasz)-1(ek)-333(i)-333(c)27(hcia\\252)-333(o)-28(dej\\261\\242)-1(.)1(..)]TJ 0 -13.549 Td[(Ale)-348(ju\\273)-348(Go)-348(nar)1(\\363)-28(d)-348(p)-27(oz)-1(n)1(a\\252)-349(i)-348(ki)1(e)-1(j)-348(n)1(ie)-349(r)1(ymnie)-348(prze)-1(d)-347(Nim)-349(n)1(a)-349(k)28(ol)1(ana,)-348(kiej)-348(n)1(ie)]TJ -27.879 -13.549 Td[(ry)1(kn\\241)-333(p\\252acz)-1(em)-334(i)-333(kiej)-333(n)1(ie)-334(zac)-1(zn\\241)-333(s)-1(k)28(omle\\242)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-333(Os)-1(t)1(a\\253)-333(z)-334(nami,)-333(P)28(an)1(ie)-1(!)-333(O)1(s)-1(ta\\253)1(,)-333(P)28(anie)-333(Je)-1(zu)-333(Chry)1(s)-1(te!)]TJ 0 -13.549 Td[(Osta\\253!)-377(A)-378(to)-378(Ci)-378(wie)-1(r)1(ne)-378(b)-28(\\246dziem)27(y)84(,)-378(kiej)-377(te)-1(n)-377(pies)-1(.)1(..)-378(p)1(ijan)1(ic)-1(e)-378(m)28(y)83(,)-378(b)-27(ez)-1(b)-27(o\\273)-1(n)1(iki)]TJ -27.879 -13.549 Td[(m)27(y)84(,)-359(z)-1(\\252e)-360(m)28(y)-359(lud)1(z)-1(ie,)-359(ale)-360(osta\\253!)1(...)-359(Uk)56(arz)-1(,)-359(b)1(ij,)-359(ale)-360(osta\\253)1(!...)-359(Si)1(e)-1(r)1(ot)27(y)-359(m)28(y)-359(opuszc)-1(zone,)]TJ 0 -13.549 Td[(lu)1(dzie)-223(b)-28(ez)-1(p)1(a\\253skie..-,)-223(i)-222(tak)-223(p)1(\\252)-1(ak)56(ali)1(,)-223(tak)-223(\\273ebral)1(i,)-223(tak)-222(c)-1(a\\252o)28(w)27(al)1(i)-223(Go)-223(p)-27(o)-223(r)1(\\246)-1(k)56(ac)27(h)-222(i)-223(p)-27(o)-223(t)28(yc)27(h)]TJ 0 -13.549 Td[(nogac)28(h)-374(\\261)-1(wi\\246t)28(yc)27(h)1(,)-374(\\273)-1(e)-375(zm)-1(i)1(\\246)-1(k\\252o)-374(s)-1(erce)-375(P)28(a\\253)1(s)-1(ki)1(e)-1(,)-374(osta\\252)-375(z)-375(n)1(imi)-375(p)1(rze)-1(z)-374(par\\246)-375(p)1(ac)-1(i)1(e)-1(r)1(z)-1(\\363)28(w,)]TJ 0 -13.55 Td[(nau)1(c)-1(za\\252,)-333(rozgrz)-1(esz)-1(a\\252)-333(i)-333(b\\252ogos)-1(\\252a)28(wi\\252)-333(w)-1(szys)-1(tk)1(ie)-1(m)28(u.)]TJ 27.879 -13.549 Td[(A)-333(p)-28(otem,)-333(kiedy)-333(ju)1(\\273)-334(o)-28(d)1(c)27(ho)-27(dzi\\252,)-333(to)-334(p)-27(o)28(wiada:)]TJ 0 -13.549 Td[({)-459(Krzywd\\246)-459(w)27(am)-459(cz)-1(yn)1(i\\252)-459(pies?)-460(Od)1(t\\241d)-459(w)28(am)-459(o)-28(ds\\252ugiw)28(a\\242)-460(b)-27(\\246dz)-1(i)1(e)-1(.)-459(I)-459(g\\241sk)28(\\363)28(w)]TJ -27.879 -13.549 Td[(p)-27(opil)1(n)28(uj)1(e)-1(,)-282(i)-283(o)28(w)-1(i)1(e)-1(cz)-1(k)1(i)-283(ogani)1(a\\252)-283(b)-28(\\246dzie,)-283(i)-283(j)1(ak)-283(si\\246)-283(jeden)-283(al)1(b)-28(o)-283(d)1(ru)1(gi)-283(sc)27(hl)1(as)-1(z)-283({)-283(c)27(h)29(udob)29(y)]TJ 0 -13.549 Td[(i)-240(d)1(obra)-240(str\\363\\273e)-1(m)-240(b)-27(\\246)-1(d)1(z)-1(ie)-240(a)-240(przyj)1(ac)-1(ielem)-1(.)-239(I)-1(n)1(o)-240(go)-240(s)-1(zan)28(uj)1(ta)-240(i)-240(kr)1(z)-1(ywd)1(y)-240(m)27(u)-240(n)1(ie)-240(c)-1(zy\\253cie.)]TJ 27.879 -13.55 Td[(I)-333(o)-28(dsz)-1(ed\\252)-333(P)28(an)-333(Jez)-1(u)1(s)-334(w)28(e)-334(\\261)-1(wiat)-333(t)28(yli)1(.)]TJ 0 -13.549 Td[(A)-333(ob)-28(ejr)1(z)-1(y)-333(si\\246)-334({)-333(B)-1(u)1(rek)-333(s)-1(iedzi)-333(tam,)-334(gd)1(z)-1(i)1(e)-334(go)-333(obron)1(i\\252.)]TJ 0 -13.549 Td[({)-333(B)-1(u)1(rek,)-333(a)-334(p)-27(\\363)-28(d)1(z)-1(i)-333(ze)-334(mn\\241,)-333(c)-1(\\363\\273)-333(to,)-333(s)-1(am,)-333(g\\252up)1(i,)-333(os)-1(tan)1(ie)-1(sz?)-1(.)1(,)]TJ 0 -13.549 Td[(I)-335(p)1(ie)-1(s)-335(p)-27(osz)-1(ed\\252,)-334(i)-335(j)1(u\\273)-335(s)-1(zed\\252)-335(wsz)-1(\\246dy)-334(z)-1(a)-334(P)28(anem)-335(i)-335(tak)1(i)-335(cic)27(h)29(y)83(,)-334(taki)-334(c)-1(zuj)1(n)28(y)83(,)-334(taki)]TJ -27.879 -13.549 Td[(wiern)28(y)84(,)-333(kie)-1(j)-332(parob)-27(ek)-334(n)1(a)-56(j)1(lepsz)-1(y)84(.)]TJ 27.879 -13.55 Td[(I)-333(p)-28(osz)-1(l)1(i)-334(j)1(u\\273)-333(w)-1(sz)-1(\\246dzie)-334(r)1(az)-1(em)-1(.)]TJ 0 -13.549 Td[(I)-333(b)-28(ez)-334(b)-27(ory)-333(s)-1(zli,)-333(i)-333(b)-27(e)-1(z)-333(w)27(o)-28(d)1(y)-333({)-334(ca\\252ym)-334(\\261wiatem)-1(.)]TJ 0 -13.549 Td[(A)-387(\\273e)-388(n)1(ieraz)-387(i)-387(g\\252\\363)-28(d)-386(b)28(y\\252,)-387(to)-387(p)1(ies)-1(ek)-387(pt)1(as)-1(zk)55(a)-386(jakiego)-387(wytrop)1(i\\252,)-387(to)-386(g\\241s)-1(k)28(\\246)-387(ab)-28(o)]TJ -27.879 -13.549 Td[(bar)1(ank)56(a)-333(przyn)1(i\\363s)-1(\\252)-333(i)-333(tak)-333(s)-1(e)-333(s)-1(p)-27(o\\252e)-1(cz)-1(n)1(ie)-334(\\273yli.)]TJ 27.879 -13.549 Td[(A)-311(cz)-1(\\246s)-1(to)-311(g\\246s)-1(t)1(o,)-311(kiedy)-311(Jezusic)-1(ze)-1(k)-310(s)-1(tr)1(ud)1(z)-1(on)28(y)-310(s)-1(p)-27(o)-28(cz)-1(yw)28(a\\252,)-311(to)-311(Burek)-311(o)-28(d)1(gani)1(a\\252)]TJ -27.879 -13.55 Td[(z\\252)-1(y)1(c)27(h)-333(lu)1(dzi)-333(ab)-28(o)-333(i)-333(z)-1(wierza)-334(d)1(z)-1(i)1(kiego)-334(i)-333(n)1(ie)-334(d)1(a)-1(\\252)-333(P)28(an)1(a)-334(n)1(as)-1(ze)-1(go,)-333(n)1(ie...)]TJ 27.879 -13.549 Td[(Kiej)-354(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-355(cz)-1(as,)-355(\\273e)-355(\\233yd)1(y)-355(p)1(as)-1(k)1(udn)1(e)-355(i)-354(one)-355(f)1(aryze)-1(j)1(e)-355(s)-1(r)1(ogie)-355(wied\\252y)-354(P)28(ana)]TJ -27.879 -13.549 Td[(na)-317(um\\246c)-1(ze)-1(n)1(ie)-318({)-318(to)-317(Burek)-317(rz)-1(u)1(c)-1(i)1(\\252)-318(si\\246)-318(na)-317(ws)-1(zys)-1(t)1(kic)27(h)-317(i)-317(j\\241\\252)-317(gry\\271\\242)-1(,)-317(i)-317(bron)1(i\\242,)-318(j)1(ak)-317(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(umia\\252a)-333(bi)1(e)-1(dot)1(a)-334(k)28(o)-28(c)28(han)1(a.)]TJ 27.879 -13.549 Td[(A)-333(Je)-1(zus)-333(m)27(u)-333(rzek\\252)-334(sp)-28(o)-27(d)-333(dr)1(z)-1(ew)27(a,)-333(kt\\363r)1(e)-334(d\\271wiga\\252)-333(na)-333(m)-1(\\246k)28(\\246)-334(sw)27(o)-55(j\\241)-333(\\261)-1(wi\\246t\\241:)]TJ 0 -13.549 Td[({)-333(Su)1(m)-1(ieni)1(e)-334(bar)1(z)-1(ej)-333(ic)27(h)-333(gr)1(y\\271\\242)-334(b)-28(\\246dzie...)-333(a)-333(t)28(y)-333(nie)-334(u)1(redzis)-1(z...)]TJ 0 -13.55 Td[(I)-333(kiej)-333(um\\246)-1(cz)-1(on)1(e)-1(go)-333(p)-27(o)27(wiesili)-333(na)-333(kr)1(z)-1(yzie,)-333(to)-334(Bur)1(e)-1(k)-333(siad\\252)-333(i)-333(wy\\252...)]TJ 0 -13.549 Td[(...)1(dru)1(giego)-411(dn)1(ia,)-411(kiej)-411(wsz)-1(ystki)1(e)-412(lu)1(dzie)-411(p)-28(o)-28(o)-27(dc)27(h)1(o)-28(dzili)1(,)-411(\\273)-1(e)-411(ju)1(\\273)-412(an)1(i)-411(P)28(an)1(ienki)]TJ -27.879 -13.549 Td[(Na)-56(j)1(\\261)-1(wi\\246tsz)-1(ej,)-333(ni)-333(ap)-27(osto\\252\\363)27(w)-333(\\261)-1(wi\\246t)28(yc)27(h)-333(n)1(ie)-334(b)28(y)1(\\252o...)-333(to)-333(os)-1(ta\\252)-333(in)1(o)-334(Bur)1(e)-1(k.)1(..)]TJ 27.879 -13.549 Td[(...)1(liza\\252)-309(raz)-309(w)-308(raz)-309(te)-309(\\261w)-1(i)1(\\246)-1(te,)-308(prze)-1(b)1(ite)-309(go\\271dziam\\253,)-308(k)28(ona)-55(j\\241ce)-309(n\\363\\273ki)-308(P)28(ana)-55(jez)-1(u)1(-)]TJ -27.879 -13.549 Td[(so)27(w)28(e)-334(i)-333(wy\\252...)-333(wy\\252...)-333(wy\\252..)1(.)]TJ 27.879 -13.55 Td[(...)1(a)-445(kiej)-445(ju)1(\\273)-446(tr)1(z)-1(ec)-1(i)-444(dzie)-1(\\253)-444(nad)1(s)-1(ze)-1(d)1(\\252...)-445(p)1(rze)-1(c)27(k)1(n\\241\\252)-445(P)28(an)-445(J)1(e)-1(zus)-445(i)-445(patr)1(z)-1(y)84(,)-445(a)-445(tu)]TJ -27.879 -13.549 Td[(ni)1(k)28(ogo)-449(w)-448(p)-27(o)-28(dl)1(e)-449(krzy\\273a...)-448(in)1(o)-448(jeden)-448(B)-1(u)1(rek)-448(s)-1(k)56(amli)-448(\\273a\\252)-1(o\\261liwie)-448(i)-448(tul)1(i)-448(s)-1(i\\246)-448(do)-448(jego)]TJ\nET\nendstream\nendobj\n324 0 obj <<\n/Type /Page\n/Contents 325 0 R\n/Resources 323 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n323 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n329 0 obj <<\n/Length 8079      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(98)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(nog\\363)28(w...)]TJ 27.879 -13.549 Td[(...)1(to)-249(P)28(an)-249(nasz)-250(Jez)-1(u)1(s)-250(Chr)1(ys)-1(t)1(us)-250(P)1(rze)-1(n)1(a)-56(j\\261wi\\246ts)-1(zy)-249(p)-28(o)-55(jr)1(z)-1(a\\252)-249(m)-1(i)1(\\252)-1(o\\261ciwie)-250(n)1(a)-250(n)1(ie)-1(go)]TJ -27.879 -13.549 Td[(w)-334(t)1(e)-1(j)-333(go)-28(d)1(z)-1(i)1(nie)-333(i)-334(r)1(z)-1(ek\\252)-333(os)-1(tatn)1(im)-334(tc)28(hem)-1(:)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-56(j)1(d\\271,)-333(B)-1(u)1(rek,)-333(z)-1(e)-333(m)-1(n)1(\\241!)]TJ 0 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(...)]TJ 0 -13.55 Td[(I)-333(pies)-1(ek)-333(w)-334(to)-333(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie)-334(p)1(u\\261c)-1(i\\252)-333(ostatni\\241)-333(p)1(ar\\246)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(za)-334(P)29(anem)-1(.)1(..)]TJ 0 -13.549 Td[(Ame)-1(n)1(.)]TJ 0 -13.549 Td[({)-468(T)83(ak)-468(b)29(y\\252o,)-468(jak)28(om)-468(rzek\\252,)-468(lu)1(dzie)-469(k)28(o)-27(c)27(han)1(e)-1(!)-467({)-468(p)-28(o)28(wiedzia\\252)-468(\\252ago)-28(dn)1(ie,)-468(s)-1(k)28(o\\253)1(-)]TJ -27.879 -13.549 Td[(cz)-1(ywsz)-1(y)-388(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-389(si\\246)-388(i)-388(p)-28(osze)-1(d)1(\\252)-389(n)1(a)-388(dru)1(g\\241)-388(s)-1(tr)1(on\\246,)-388(gdzie)-389(m)28(u)-388(j)1(u\\273)-388(Hank)56(a)-388(s)-1(p)1(anie)]TJ 0 -13.549 Td[(nar)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a,)-333(\\273e)-334(to)-333(wie)-1(l)1(c)-1(e)-334(b)29(y\\252)-334(u)1(tru)1(dzon.)]TJ 27.879 -13.549 Td[(G\\252u)1(c)27(he)-309(m)-1(i)1(lc)-1(ze)-1(n)1(ie)-310(zaleg\\252o)-310(i)1(z)-1(b)-27(\\246)-1(.)-309(Rozw)27(a\\273ali)-309(se)-310(ws)-1(zysc)-1(y)-309(t\\246)-309(dziwn\\241)-309(hi)1(s)-1(tor)1(i\\246)-1(,)-309(a)]TJ -27.879 -13.55 Td[(dziew)27(cz)-1(y)1(n)28(y)-315(n)1(ie)-1(k)1(t\\363re,)-315(jak)-314(Jagusia,)-315(J\\363zk)56(a)-315(i)-315(Nastk)56(a,)-315(to)-315(ob)-27(c)-1(i)1(e)-1(ra\\252y)-314(ukr)1(adkiem)-315(o)-28(cz)-1(y)84(,)]TJ 0 -13.549 Td[(b)-27(o)-368(tak)-367(je)-368(rze)-1(wn)1(o\\261)-1(ci\\241)-368(p)1(rze)-1(j)1(\\246)-1(\\252a)-368(d)1(ola)-368(P)29(a\\253sk)55(a)-367(i)-368(ta)-367(B)-1(u)1(rk)28(o)28(w)27(a)-367(pr)1(z)-1(ygo)-27(da;)-367(a)-368(s)-1(amo)-368(j)1(u\\273)]TJ 0 -13.549 Td[(to,)-304(\\273e)-305(s)-1(i\\246)-304(taki)-304(pies)-305(znalaz\\252)-305(w)28(e)-305(\\261w)-1(i)1(e)-1(cie,)-305(co)-304(le)-1(p)1(s)-1(zy)-304(b)28(y\\252)-304(o)-28(d)-304(lu)1(dzi)-305(i)-304(wiern)1(ie)-1(j)1(s)-1(zy)-304(P)28(an)28(u)1(,)]TJ 0 -13.549 Td[(zas)-1(tan)1(o)27(wi\\252o)-486(ws)-1(zys)-1(tk)1(ic)27(h)-486(n)1(ie)-1(ma\\252o...)-486(i)-486(p)-28(o)-28(cz\\246)-1(li)-486(z)-487(w)28(olna,)-486(p)-27(o)-487(c)-1(i)1(c)27(h)28(u)-486(j)1(e)-1(sz)-1(cz)-1(e)-487(cz)-1(y)1(ni\\242)]TJ 0 -13.549 Td[(u)28(w)28(agi)-323(r)1(\\363\\273)-1(n)1(e)-323(i)-323(d)1(z)-1(iw)28(o)28(w)27(a\\242)-323(si\\246)-323(nad)-322(t)28(ym)-323(zrz\\241dze)-1(n)1(ie)-1(m)-323(b)-27(oskim,)-323(a\\273)-323(Jagu)1(s)-1(t)28(yn)1(k)56(a,)-323(kt)1(\\363ra)]TJ 0 -13.55 Td[(b)28(y\\252a)-333(pi)1(lni)1(e)-334(s)-1(\\252u)1(c)27(ha\\252a,)-333(p)-27(o)-28(dn)1(ies)-1(\\252a)-333(g\\252o)27(w)28(\\246,)-334(za\\261m)-1(ia\\252a)-333(s)-1(i)1(\\246)-334(ur)1(\\241)-28(gliwie)-333(i)-334(p)-27(o)28(wiada:)]TJ 27.879 -13.549 Td[({)-488(B)-1(a)-55(j)-488(ba)-55(ju)1(,)-489(c)28(h\\252op)-488(\\261liwy)-488(rwie,)-489(a)-488(in)1(o)-489(ic)28(h)-488(dwie!)-488(Ja)-489(w)28(a)-56(j)1(u)-488(lepsz)-1(\\241)-488(p)-28(o)28(wiem)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(p)-28(o)28(wiastk)28(\\246)-1(,)-333(o)-333(t)28(ym)-1(,)-333(sk)56(\\241d)-333(s)-1(i)1(\\246)-334(w)27(\\363\\252)-333(wz)-1(i\\241\\252)-333(cz)-1(\\252o)28(wie)-1(k)28(o)28(wi:)]TJ 27.879 -13.549 Td[(P)28(an)-333(B\\363g)-333(s)-1(t)28(w)28(orzy\\252)-334(b)29(yk)55(a.)]TJ 0 -13.549 Td[(I)-333(b)28(yk)-333(b)28(y\\252.)]TJ 0 -13.55 Td[(A)-333(c)27(h\\252op)-333(wzi\\241\\252)-333(k)28(oz)-1(ik)56(a,)]TJ 0 -13.549 Td[(Urzn\\241\\252)-333(m)27(u)-333(u)-332(do\\252u)]TJ 0 -13.549 Td[(I)-333(s)-1(t)28(w)28(orz)-1(y)1(\\252)-334(w)28(o\\252u-)]TJ 0 -13.549 Td[(...)1(i)-333(w)27(\\363\\252)-333(jes)-1(t!)]TJ 0 -13.549 Td[({)-333(T)83(ak)56(a)-334(d)1(obra)-333(mo)-56(j)1(a)-334(p)1(ra)28(wda)-333(jak)28(o)-333(i)-333(Ro)-28(c)27(h)1(o)27(w)28(a!)-333({)-334(p)-27(o)-28(cz)-1(\\246\\252a)-333(s)-1(i\\246)-334(\\261mia\\242)-1(.)]TJ 0 -13.55 Td[(Iz)-1(b)1(a)-345(te\\273)-346(ca\\252)-1(a)-345(gr)1(uc)27(h)1(n\\246\\252a)-345(\\261)-1(miec)27(hem)-345(i)-345(wnet)-345(p)-28(osypa\\252y)-344(s)-1(i\\246)-345(\\273)-1(ar)1(t)28(y)83(,)-345(to)-345(gad)1(ki,)-345(to)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(p)-28(o)28(wiastki)-333(r\\363\\273ne.)]TJ 27.879 -13.549 Td[({)-333(Jagust)28(ynk)56(a)-333(to)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(wie)-1(d)1(z)-1(\\241.)1(..)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(wdo)28(w)28(a)-334(p)-27(o)-333(trze)-1(c)27(h)-333(c)28(h\\252op)1(ac)27(h,)-333(to)-333(i)-333(nau)1(c)-1(zna.)]TJ 0 -13.549 Td[({)-315(Ju)1(\\261)-1(ci,)-315(jeden)-315(j)1(\\241)-315(ucz)-1(y\\252)-315(r)1(ano)-315(bi)1(c)-1(zyskiem)-1(..)1(.)-315(dr)1(ugi)-315(w)-315(p)-27(o\\252)-1(edn)1(ie)-315(rz)-1(emie)-1(n)1(iem)-1(,)-315(a)]TJ -27.879 -13.55 Td[(trzec)-1(i)-333(na)-333(o)-28(d)1(wie)-1(cz)-1(erz)-334(cz\\246)-1(sto)-334(g\\246sto)-334(k)1(\\252)-1(on)1(ic\\241)-334(p)-27(ogani)1(a\\252)-1(.)1(..)-333({)-334(w)28(o\\252a\\252)-334(Raf)1(a\\252\\363)27(w.)]TJ 27.879 -13.549 Td[({)-465(P)28(os)-1(z\\252ab)28(ym)-465(i)-465(z)-1(a)-465(c)-1(zw)27(ar)1(te)-1(go,)-465(al)1(e)-466(nie)-465(z)-1(a)-465(cie)-1(b)1(ie,)-466(b)-27(o\\261)-466(za)-465(g\\252)-1(u)1(pi)-465(i)-465(c)27(h)1(o)-28(d)1(z)-1(isz)]TJ -27.879 -13.549 Td[(usmark)56(an)28(y)-333(kiej)-333(\\233ydziak.)]TJ 27.879 -13.549 Td[({)-423(Jak)-423(te)-1(m)28(u)-423(psu)-423(Jez)-1(u)1(s)-1(o)28(w)28(e)-1(m)28(u)-423(b)28(y\\252o)-423(pr)1(z)-1(ez)-424(P)28(an)1(a,)-424(t)1(ak)-423(k)28(obieta)-423(ob)28(y\\242)-424(si\\246)-424(n)1(ie)]TJ -27.879 -13.549 Td[(ob)-27(\\246)-1(d)1(z)-1(ie)-333(b)-28(ez)-334(b)1(ic)-1(i)1(a)-1(.)1(..)-333(to)-333(i)-334(J)1(agust)27(y)1(nce)-334(mark)28(otno.)1(..)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252)-333(kt\\363r)1(y\\261)-334(z)-334(p)1(arob)1(k)28(\\363)27(w.)]TJ 27.879 -13.549 Td[({)-381(G\\252u)1(pi\\261...)-381(b)1(ac)-1(z)-381(in)1(o,)-381(kiej)-381(ni)1(e)-1(sies)-1(z)-381(o)-56(j)1(c)-1(o)28(w)27(e)-381(\\242)-1(wiar)1(tki)-381(d)1(o)-381(Jankl)1(a,)-381(b)28(y)-381(ci\\246)-382(n)1(ikt)]TJ -27.879 -13.55 Td[(ni)1(e)-315(widzia\\252,)-314(a)-314(wdo)28(wie)-1(\\253)1(s)-1(t)28(wu)-314(d)1(a)-56(j)-314(sp)-28(ok)28(\\363)-55(j,)-314(to)-314(n)1(ie)-315(n)1(a)-315(t)28(w)28(\\363)-56(j)-314(r)1(oz)-1(u)1(m)-315({)-314(w)27(ar)1(kn\\246\\252a)-314(os)-1(tr)1(o,)]TJ 0 -13.549 Td[(a\\273)-330(p)1(rzymilkl)1(i,)-329(b)-27(o)-330(b)1(ali)-329(si\\246,)-329(\\273)-1(e)-329(w)-330(z\\252o\\261)-1(ci)-329(ws)-1(zystk)28(o)-329(g\\252o\\261)-1(n)1(o)-330(wyp)-27(o)28(wie)-1(,)-328(c)-1(o)-329(t)28(ylk)28(o)-329(wie,)-329(a)]TJ 0 -13.549 Td[(mog\\252a)-293(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-293(sp)-28(or)1(o.)-293(P)1(rz)-1(ek)28(orn)1(a)-293(b)1(a)-1(b)1(a)-293(b)28(y)1(\\252a,)-293(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iw)27(a)-292(i)-293(o)-292(w)-1(sz)-1(y)1(s)-1(tk)1(im)-293(m)-1(a)-55(j\\241ca)]TJ 0 -13.549 Td[(sw)27(o)-55(je)-374(p)-27(o)28(wie)-1(d)1(z)-1(eni)1(e)-1(,)-373(n)1(ie)-1(r)1(az)-374(taki)1(e)-1(,)-373(\\273e)-374(a\\273)-373(lud)1(z)-1(i)1(om)-374(sk)28(\\363ra)-373(c)-1(i)1(e)-1(rp)1(\\252a)-373(i)-373(w)-1(\\252osy)-373(ws)-1(ta)28(w)28(a\\252y)]TJ 0 -13.549 Td[(na)-466(g\\252o)28(wie)-1(,)-465(b)-28(o)-466(ni)1(c)-467(n)1(ie)-467(u)1(s)-1(zano)28(w)27(a\\252a,)-466(n)1(a)28(w)27(et)-466(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-466(i)-466(k)28(o\\261c)-1(io\\252a,)-466(\\273e)-467(j)1(u\\273)-467(n)1(ieraz)-467(j)1(\\241)]TJ 0 -13.55 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-371(n)1(ap)-28(omin)1(a\\252)-372(i)-371(d)1(o)-372(op)1(ami\\246)-1(tan)1(ia)-371(pr)1(z)-1(yn)1(agla\\252,)-371(nie)-371(p)-28(omog\\252o,)-371(a)-372(p)-27(otem)-372(in)1(o)]TJ 0 -13.549 Td[(p)-27(o)-334(wsi)-333(m)-1(\\363)28(wi\\252a)-333(:)]TJ\nET\nendstream\nendobj\n328 0 obj <<\n/Type /Page\n/Contents 329 0 R\n/Resources 327 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n327 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n332 0 obj <<\n/Length 6884      \n>>\nstream\n1 0 0 1 451.626 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(99)]TJ -335.807 -35.866 Td[({)-391(I)-391(b)-27(e)-1(z)-391(ksi\\246dza)-391(k)55(a\\273den)-390(do)-391(P)28(an)1(a)-391(B)-1(oga)-390(tra\\014,)-390(niec)27(h)-390(jeno)-391(b)-27(\\246dzie)-392(p)-27(o)-28(cz)-1(ciwy;)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(yn)1(i)-334(l)1(e)-1(p)1(ie)-1(j)-333(m)28(u)-333(pi)1(lno)28(w)28(a\\242)-1(,)-333(b)-27(o)-334(z)-333(trze)-1(cim)-334(c)28(ho)-28(d)1(z)-1(i)-333(i)-333(zno)28(wu)-333(gdzie)-334(zgub)1(i...)]TJ 27.879 -13.549 Td[(T)83(ak)56(a)-333(b)28(y\\252a)-333(Jagust)27(y)1(nk)56(a...)]TJ 0 -13.549 Td[(Roz)-1(c)28(ho)-28(d)1(z)-1(i)1(\\242)-236(si\\246)-235(ju)1(\\273)-236(mieli,)-235(k)1(ie)-1(d)1(y)-235(ws)-1(zed\\252)-235(w)28(\\363)-56(jt)-234(z)-236(so\\252t)28(ys)-1(em,)-235(ob)-27(c)27(ho)-27(dzili)-235(c)28(ha\\252up)29(y)83(,)]TJ -27.879 -13.549 Td[(\\273e)-1(b)28(y)-285(ju)1(tro)-285(p)-28(o)-27(d\\252ug)-285(rozk\\252adu)-285(wyc)28(ho)-28(d)1(z)-1(il)1(i)-286(n)1(a)-286(sz)-1(ar)1(w)27(ar)1(k,)-285(na)-286(d)1(rog\\246)-286(za)-286(m\\252yn,)-285(r)1(oz)-1(m)28(yt\\241)]TJ 0 -13.55 Td[(pr)1(z)-1(ez)-334(d)1(e)-1(sz)-1(cz)-1(e...)]TJ 27.879 -13.549 Td[(Ale)-334(w)28(\\363)-56(j)1(t)-333(prz\\363)-28(d)1(z)-1(i,)-333(sk)28(oro)-333(jeno)-333(ws)-1(ze)-1(d)1(\\252,)-333(roz)-1(\\252o\\273y\\252)-333(r\\246)-1(ce)-334(i)-333(wykr)1(z)-1(yk)1(n\\241\\252:)]TJ 0 -13.549 Td[({)-333(Same)-334(na)-55(jp)1(ierws)-1(ze)-334(dziew)27(cz)-1(y)1(n)28(y)-333(ju)1(c)27(ha)-333(stary)-333(s)-1(e)-333(z)-1(w)28(o\\252a\\252)-1(!)1(.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-244(pr)1(a)27(wd)1(\\246)-245(rzek\\252,)-244(b)-27(o)-244(b)28(y\\252y)-244(same)-245(gosp)-28(o)-27(darskie)-244(c\\363rki)-243(ro)-28(d)1(o)27(w)28(e)-245({)-243(i)-244(z)-244(w)-1(i)1(anem)-1(.)]TJ 0 -13.549 Td[(Boryn)1(a)-402(gosp)-27(o)-28(dar)1(z)-402(b)28(y\\252)-401(pr)1(z)-1(ec)-1(ie\\273)-402(p)1(ierws)-1(zy)-401(na)-401(c)-1(a\\252\\241)-401(wie)-1(\\261,)-401(to)-401(jak\\273e,)-402(d)1(z)-1(i)1(e)-1(wki)]TJ -27.879 -13.549 Td[(s\\252)-1(u)1(\\273)-1(ebn)1(e)-1(,)-467(k)28(omorni)1(c)-1(e)-468(alb)-27(o)-468(b)1(iedot\\246)-468(tak)56(\\241,)-467(c)-1(o)-467(to)-468(w)-468(d)1(z)-1(i)1(e)-1(si\\246)-1(cior)1(o)-468(wis)-1(i)-467(u)-467(kr)1(o)27(wiego)]TJ 0 -13.55 Td[(ogona)-333({)-333(z)-1(w)28(o\\252yw)27(a\\252b)29(y)-334(d)1(o)-333(s)-1(iebi)1(e)-334(i)-333(z)-1(ap)1(rasz)-1(a\\252!)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-328(p)-27(ogada\\252)-328(ze)-329(starym)-328(na)-328(osobn)1(o\\261)-1(ci,)-328(ale)-328(tak)-328(c)-1(ic)28(ho,)-328(\\273e)-329(n)1(ikt)-328(n)1(ie)-329(u)1(s)-1(\\252ysz)-1(a\\252,)]TJ -27.879 -13.549 Td[(p)-27(o\\261)-1(mia\\252)-344(si\\246)-344(z)-344(dziew)27(cz)-1(yn)1(ami)-344(i)-343(p)-28(osz)-1(ed\\252)-343(ryc)28(h\\252o,)-344(b)-27(o)-344(j)1(e)-1(sz)-1(cze)-345(ca\\252e)-344(p)-28(\\363\\252)-343(w)-1(si)-343(z)-1(w)28(o\\252yw)27(a\\242)]TJ 0 -13.549 Td[(mia\\252)-381(n)1(a)-381(j)1(utr)1(o.)-381(Wk)1(r\\363tce)-381(te)-1(\\273)-381(i)-380(zac)-1(z\\246)-1(l)1(i)-381(si\\246)-381(r)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(i\\242)-381(wsz)-1(yscy)83(,)-380(\\273)-1(e)-381(t)1(o)-381(p)-27(\\363\\271)-1(n)1(o)-381(b)29(y\\252o,)]TJ 0 -13.549 Td[(a)-456(i)-455(k)56(apust)28(y)-456(p)1(ra)28(wie)-456(ju)1(\\273)-457(zbr)1(ak\\252o)-456(d)1(o)-456(obi)1(e)-1(ran)1(ia.)-455(B)-1(or)1(yna)-456(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)28(a\\252)-456(w)-1(szys)-1(tk)1(im)-456(a)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u)-333(z)-334(osobna,)-333(i)-333(co)-334(starszym)-334(k)28(ob)1(ie)-1(tom)-333(ot)28(w)-1(i)1(e)-1(ra\\252)-333(dr)1(z)-1(wi)-333(i)-333(wypr)1(o)27(w)28(adza\\252...)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(n)1(a)-334(o)-28(d)1(c)27(h)1(o)-28(dn)28(y)1(m)-334(rze)-1(k)1(\\252a)-334(w)-333(g\\252os)-1(:)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-334(za)-334(u)1(gos)-1(zc)-1(ze)-1(n)1(ie,)-333(ale)-334(dob)1(rze)-334(ca\\252)-1(k)1(ie)-1(m)-333(nie)-333(b)28(y\\252o.)]TJ 0 -13.549 Td[({)-333(Hale)-1(!)-333(No.)1(..)]TJ 0 -13.549 Td[({)-388(G)1(os)-1(p)-27(o)-28(dy)1(ni)-387(brak)-387(w)28(am)-1(,)-387(Macie)-1(j)1(u,)-387(a)-388(b)-27(e)-1(z)-388(to)-387(nij)1(akiego)-388(p)-27(orz\\241dku)-387(n)1(ie)-388(m)-1(o\\273e)]TJ -27.879 -13.55 Td[(b)28(y\\242...)]TJ 27.879 -13.549 Td[({)-342(Co)-342(robi)1(\\242)-1(,)-342(moi\\261c)-1(iewy?...)-342(Co)-342(rob)1(i\\242?)-1(.)1(..)-342(Zrz\\241dze)-1(n)1(ie)-343(j)1(u\\273)-342(takie)-342(b)-28(oskie,)-342(\\273e)-343(p)-27(o-)]TJ -27.879 -13.549 Td[(mar\\252a...)]TJ 27.879 -13.549 Td[({)-427(Ma\\252o)-428(to)-427(dziew)27(cz)-1(y)1(n!)-427(A)-428(d)1(y\\242)-428(w)-428(k)56(a\\273den)-427(c)-1(zw)27(ar)1(te)-1(k)-427(in)1(o)-428(wyp)1(atru)1(j\\241)-428(p)-27(o)-427(w)-1(si,)]TJ -27.879 -13.549 Td[(cz)-1(y)-372(s)-1(w)28(at)28(y)-373(o)-28(d)-372(w)27(as)-373(n)1(ie)-373(id\\241)-373(d)1(o)-373(kt\\363r)1(e)-1(j)1(...-m\\363)27(wi\\252a)-372(c)27(h)28(ytr)1(z)-1(e)-373(ci\\241)-28(ga)-56(j)1(\\241c)-373(go)-373(z)-1(a)-372(j\\246z)-1(yk)1(,)-373(ale)]TJ 0 -13.55 Td[(Boryn)1(a,)-316(c)28(ho)-28(\\242)-316(i)-315(mia\\252)-316(j)1(u\\273)-316(o)-28(d)1(p)-27(o)27(wied\\271.)-315(p)-28(o)-28(d)1(rap)1(a\\252)-316(si\\246)-316(t)28(ylk)28(o)-315(p)-28(o)-315(g\\252o)27(wie)-316(i)-315(u)1(\\261)-1(mie)-1(c)28(ha\\252,)-315(a)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a\\252)-333(b)-27(e)-1(zw)-1(i)1(e)-1(d)1(nie)-334(o)-27(c)-1(zam)-1(i)-333(Jagu)1(s)-1(i)1(,)-333(kt\\363ra)-333(z)-1(ab)1(iera\\252a)-334(si\\246)-334(d)1(o)-333(w)-1(y)1(j\\261c)-1(ia.)1(..)]TJ 27.879 -13.549 Td[(Na)-294(to)-295(i)-294(cz)-1(ek)56(a\\252)-295(An)28(t)1(e)-1(k,)-294(p)1(rz)-1(y)28(o)-27(dzia\\252)-295(si\\246)-295(n)1(iez)-1(n)1(ac)-1(znie)-294(i)-295(wysze)-1(d)1(\\252)-295(nap)1(rz\\363)-28(d.)-294(Jagu)1(\\261)]TJ -27.879 -13.549 Td[(sam)-1(a)-333(s)-1(z\\252a)-333(do)-333(dom)27(u)1(,)-333(b)-28(o)-333(in)1(ne)-334(mies)-1(zk)56(a\\252y)-333(w)-334(dr)1(ugiej)-333(stroni)1(e)-1(,)-333(ku)-333(m\\252yn)1(o)27(wi.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(wyc)28(h)28(yla)-55(j\\241c)-334(si\\246)-334(z)-333(c)-1(iemno\\261c)-1(i)-333(sp)-28(o)-28(d)-332(p\\252ota)-333(jaki)1(e)-1(go\\261.)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a,)-333(p)-27(oz)-1(n)1(a\\252)-1(a)-333(g\\252os)-334(j)1(e)-1(go)-333(i)-333(p)-28(o)-27(c)-1(z\\246)-1(\\252a)-333(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-334(d)1(ygota\\242.)]TJ 0 -13.549 Td[({)-358(Odp)1(ro)28(w)27(ad)1(z)-1(\\246)-359(ci\\246,)-359(Jagu)1(\\261)-1(!)-358({)-358(Ob)-27(e)-1(j)1(rz)-1(a\\252)-358(s)-1(i)1(\\246)-359({)-359(n)1(o)-28(c)-359(b)28(y\\252a)-358(c)-1(i)1(e)-1(mna,)-358(b)-27(e)-1(z)-359(gwiazd,)]TJ -27.879 -13.549 Td[(wiatr)-333(h)28(u)1(c)-1(za\\252)-334(g\\363r)1(\\241)-334(i)-333(miota\\252)-333(dr)1(z)-1(ew)27(ami.)]TJ 27.879 -13.549 Td[(Ob)-55(j)1(a\\252)-334(j)1(\\241)-334(wp)-27(\\363\\252)-334(mo)-28(cno)-333(i)-333(tak)-333(przytu)1(le)-1(n)1(i)-333(do)-333(s)-1(i)1(e)-1(b)1(ie)-334(zgin\\246li)-333(w)-334(ciem)-1(n)1(o\\261)-1(ciac)27(h)1(.)]TJ\nET\nendstream\nendobj\n331 0 obj <<\n/Type /Page\n/Contents 332 0 R\n/Resources 330 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n330 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n335 0 obj <<\n/Length 120       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(100)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(7.)]TJ\nET\nendstream\nendobj\n334 0 obj <<\n/Type /Page\n/Contents 335 0 R\n/Resources 333 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n333 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n338 0 obj <<\n/Length 6581      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(8)]TJ/F17 10.909 Tf 0 -73.325 Td[(Naza)-56(ju)1(trz)-334(gr)1(uc)28(hn\\246\\252a)-333(p)-28(o)-333(Lip)-27(c)-1(ac)28(h)-333(wie)-1(\\261\\242)-334(o)-333(B)-1(or)1(yno)28(wyc)27(h)-332(z)-334(Jagn\\241)-333(zm)-1(\\363)28(winac)28(h.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-364(b)28(y)1(\\252)-365(d)1(z)-1(iew)27(os\\252\\246)-1(b)-27(em)-365({)-364(w)-1(i)1(\\246)-1(c)-365(w)28(\\363)-56(j)1(to)28(w)27(a,)-364(\\273e)-365(m\\241\\273)-365(s)-1(r)1(ogo)-365(p)1(rzyk)56(az)-1(yw)28(a\\252)-365(p)1(ary)]TJ -27.879 -13.549 Td[(z)-337(g)-1(\\246b)28(y)-337(n)1(ie)-337(pu)1(s)-1(zc)-1(za\\242)-338(p)1(rz\\363)-28(dzi,)-337(n)1(im)-338(p)-27(o)28(wr\\363)-28(ci,)-337(d)1(opiero)-337(n)1(a)-337(o)-28(dwiec)-1(ze)-1(r)1(z)-1(u)-336(p)-28(ob)1(ieg\\252)-1(a)-337(d)1(o)]TJ 0 -13.549 Td[(s\\241s)-1(iad)1(ki,)-265(rze)-1(k)28(omo)-266(soli)-265(p)-28(o\\273ycz)-1(y)1(\\242)-1(,)-265(i)-266(j)1(u\\273)-266(n)1(a)-266(o)-28(d)1(c)27(h)1(o)-28(dn)28(y)1(m)-266(nie)-266(wytr)1(z)-1(y)1(m)-1(a\\252a,)-265(ino)-265(wz)-1(i\\246\\252a)]TJ 0 -13.55 Td[(ku)1(m)-1(\\246)-333(na)-333(b)-28(ok)-333(i)-333(sz)-1(epn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-281(Wiec)-1(i)1(e)-282(to,)-281(Bory)1(na)-281(p)-27(os)-1(\\252a\\252)-281(z)-282(w)28(\\363)-28(d)1(k)55(\\241)-281(d)1(o)-281(Jagn)28(y!)-281(In)1(o)-282(n)1(ie)-281(m)-1(\\363)28(w)28(c)-1(ie,)-281(b)-27(o)-281(m)-1(\\363)-55(j)-281(tak)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(k)55(azyw)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[({)-335(Nie)-335(m)-1(o\\273e)-336(b)29(y\\242)-1(!)-335(G)1(dzie)-1(b)29(ym)-336(t)1(a)-335(z)-336(ozore)-1(m)-335(p)-27(o)-335(w)-1(si)-335(lata\\252a!)-335(P)1(lec)-1(iu)1(c)27(h)-334(to)-335(jes)-1(tem)]TJ -27.879 -13.549 Td[(cz)-1(y)-296(co?...)-295(T)83(aki)-296(d)1(z)-1(iad)-295(i)-296(za)-296(tr)1(z)-1(ec)-1(i\\241)-295(k)28(obiet\\246)-296(s)-1(i\\246)-296(bi)1(e)-1(r)1(z)-1(e!)-296(Co)-296(to)-296(d)1(z)-1(iec)-1(i)-295(na)-296(to)-295(p)-28(o)28(wiedz\\241!)]TJ 0 -13.549 Td[(O)-333(\\261)-1(wiecie)-1(,)-333(\\261w)-1(i)1(e)-1(cie!)-334({)-333(j)1(\\246)-1(kn)1(\\246)-1(\\252a)-333(z)-1(e)-333(z)-1(gr)1(oz)-1(\\241.)]TJ 27.879 -13.55 Td[(A)-347(s)-1(k)28(oro)-347(w)28(\\363)-56(j)1(to)27(w)28(a)-347(w)-1(y)1(s)-1(z\\252a,)-348(p)1(rzy)28(o)-28(dzia\\252a)-347(s)-1(i\\246)-347(w)-348(zapas)-1(k)28(\\246)-347(i)-348(c)28(h)28(y\\252ki)1(e)-1(m)-348(p)1(rze)-1(z)-348(sad)]TJ -27.879 -13.549 Td[(wpad)1(\\252a)-270(d)1(o)-269(K\\252\\246)-1(b)-27(\\363)28(w,)-269(c)-1(o)-269(w)-269(p)-28(o)-27(dle)-269(s)-1(iedzieli,)-269(p)-27(o\\273)-1(y)1(c)-1(zy\\242)-270(szc)-1(zotki)-269(p)1(ac)-1(ze)-1(snej,)-269(\\273e)-270(j)1(e)-1(j)-268(b)28(y\\252a)]TJ 0 -13.549 Td[(si\\246)-334(gdzies)-1(i)1(k)-334(zap)-27(o)-28(dzia\\252a.)]TJ 27.879 -13.549 Td[({)-326(S)1(\\252ys)-1(zeli\\261c)-1(ie?)-326(Boryn)1(a)-326(\\273)-1(eni)-325(si\\246)-326(z)-326(Jagn\\241)-326(D)1(om)-1(in)1(ik)28(\\363)28(wn\\241!)-325(Dopiero)-325(c)-1(o)-326(sz\\252)-1(y)-325(do)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)-333(z)-333(w)27(\\363)-28(d)1(k)55(\\241.)]TJ 27.879 -13.55 Td[({)-319(Nie)-1(!)-319({)-319(c)-1(u)1(de\\253k)56(a)-319(pra)28(wicie!)-320(Jak)1(\\273)-1(e)-320(b)29(y)-320(t)1(o,)-320(d)1(z)-1(i)1(e)-1(ci)-319(doros\\252e)-320(i)-319(s)-1(am)-319(ju)1(\\273)-320(w)-320(latac)28(h!)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)-333(\\273e)-334(ni)1(e)-1(m\\252o)-28(dy)84(,)-333(ale)-334(m)28(u)-333(nie)-333(o)-28(dm\\363)28(wi\\241...)-333(n)1(ie)-1(,)-333(gosp)-28(o)-27(darz)-333(taki,)-333(b)-27(ogac)-1(z!)]TJ 0 -13.549 Td[({)-290(Alb)-27(o)-290(i)-289(ta)-290(Jagna!)-289(Wid)1(z)-1(i)1(e)-1(li)1(\\261)-1(cie)-1(,)-289(m)-1(oi)-289(lu)1(dzie)-1(!)-289(T)83(o)-290(si\\246)-290(\\252)-1(ac)28(ha\\252a)-290(z)-290(t)28(ym)-290(i)-290(o)28(wym...)]TJ -27.879 -13.549 Td[(a)-389(te)-1(r)1(az)-390(gos)-1(p)-27(o)-28(d)1(yni)1(\\241)-390(p)1(ie)-1(r)1(ws)-1(z\\241)-390(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(!)-389(Jes)-1(t)-389(to)-389(na)-389(\\261w)-1(iecie)-390(spra)28(wiedli)1(w)27(o\\261\\242)-1(?)-389(C)-1(o?..)1(.)]TJ 0 -13.549 Td[(A)-333(t)28(yla)-333(dzie)-1(u)1(c)27(h)-333(siedzi...)-333(c)27(h)1(o)-28(\\242b)28(y)-333(i)-333(te)-334(sios)-1(tr)1(z)-1(yn)1(e)-1(.)1(..)]TJ 27.879 -13.55 Td[({)-388(A)-387(m)-1(o)-55(je)-388(p)-27(o)-388(br)1(ac)-1(ie!)-388(A)-387(Kopr)1(z)-1(ywian)1(ki!)-387(A)-388(Nas)-1(t)1(usia!)-388(A)-387(dru)1(gie!)-388(T)83(o)-388(n)1(ie)-388(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(arskie?)-334(Nie)-333(\\261)-1(w)28(arne?)-334(Ni)1(e)-334(p)-27(o)-28(c)-1(zc)-1(i)1(w)27(e?)-334(Co?...)]TJ 27.879 -13.549 Td[({)-432(B\\246)-1(d)1(z)-1(ie)-432(si\\246)-433(on)1(a)-432(dop)1(ie)-1(r)1(o)-432(nad)1(yma\\252)-1(a!)-431(I)-432(tak)-432(kiej)-432(t)1(e)-1(n)-431(pa)28(w)-432(c)27(ho)-27(dzi)-432(a)-432(g\\252o)27(wy)]TJ -27.879 -13.549 Td[(zadzie)-1(r)1(a.)]TJ 27.879 -13.549 Td[({)-328(Bez)-328(obr)1(az)-1(y)-327(b)-28(oskiej)-327(s)-1(i)1(\\246)-328(te)-1(\\273)-328(ob)29(y\\242)-328(ni)1(e)-328(ob)-28(\\246dzie)-328({)-327(k)28(o)27(w)28(al)-327(ni)-327(dru)1(gie)-328(d)1(z)-1(iec)-1(i)-327(n)1(ie)]TJ -27.879 -13.55 Td[(dar)1(uj)1(\\241)-334(sw)27(o)-55(jego)-334(macos)-1(ze)-1(,)-333(n)1(ie)-1(!)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(p)-27(oredz\\241)-334(t)1(o)-334(co?)-334(G)1(ron)28(t)-333(s)-1(tar)1(e)-1(go,)-333(to)-333(i)-333(w)27(ol)1(a)-334(j)1(e)-1(go.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(p)-27(o)-333(pra)28(wie)-334(j)1(e)-1(go,)-333(ale)-333(p)-28(o)-333(s)-1(p)1(ra)28(wiedliw)28(o\\261)-1(ci)-333(i)-333(dziec)-1(i\\253)1(s)-1(k)1(i)-334(t)1(e)-1(\\273.)]TJ 0 -13.549 Td[({)-333(Moi\\261c)-1(i)1(e)-1(wy)83(,)-333(spr)1(a)27(wiedl)1(iw)27(o\\261\\242)-334(ma)-334(za)28(w\\273)-1(d)1(y)-334(t)1(e)-1(n)1(,)-334(k)28(ogo)-333(sta\\242)-334(na)-333(ni)1(\\241...)]TJ 0 -13.549 Td[(Na)28(wyrze)-1(k)56(a\\252y)83(,)-383(na\\273ali\\252y)-383(s)-1(i)1(\\246)-385(n)1(a)-384(\\261w)-1(i)1(at)-384(i)-383(jego)-384(spra)28(wy)-384(i)-383(roze)-1(sz)-1(\\252y)-383(s)-1(i)1(\\246)-1(,)-383(a)-384(z)-384(ni)1(m)-1(i)]TJ -27.879 -13.55 Td[(rozla\\252a)-333(s)-1(i\\246)-333(ta)-334(wie\\261)-1(\\242)-333(p)-28(o)-333(ws)-1(i)-333(ca\\252e)-1(j)1(.)]TJ 27.879 -13.549 Td[(\\233e)-252(rob)-27(ot)28(y)-251(b)28(y\\252o)-251(ni)1(e)-1(wiela)-251(i)-252(n)1(iepil)1(ne,)-252(a)-251(lu)1(dzie)-252(siedzie)-1(l)1(i)-251(p)-28(o)-251(c)27(h)1(a\\252upac)28(h,)-251(b)-27(o)-252(d)1(rogi)]TJ -27.879 -13.549 Td[(b)28(y\\252y)-318(do)-319(cna)-319(r)1(oz)-1(mi\\246k\\252y)83(,)-318(to)-319(p)-27(ogw)27(ar)1(z)-1(ano)-318(o)-319(t)28(yc)27(h)-318(z)-1(m\\363)28(winac)28(h)-319(p)-27(o)-319(c)27(h)1(a\\252upac)28(h)-319(wsz)-1(y)1(s)-1(t-)]TJ 358.232 -29.888 Td[(101)]TJ\nET\nendstream\nendobj\n337 0 obj <<\n/Type /Page\n/Contents 338 0 R\n/Resources 336 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n336 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n341 0 obj <<\n/Length 9434      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(102)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(8.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(kic)28(h.)-392(Wie\\261)-394(ca\\252\\241)-393(ogarn)1(\\246)-1(\\252a)-392(c)-1(iek)56(a)27(w)28(o\\261\\242)-1(,)-392(na)-393(cz)-1(y)1(m)-393(s)-1(i\\246)-393(to)-393(sk)28(o\\253czy;)-393(sp)-28(o)-27(dzie)-1(w)28(ali)-392(s)-1(i\\246)-393(z)]TJ 0 -13.549 Td[(g\\363ry)84(,)-333(\\273)-1(e)-334(n)1(as)-1(t\\241)-27(pi\\241)-333(bitk)1(i)-334(a)-333(pr)1(o)-28(c)-1(eso)27(w)28(ani)1(e)-1(,)-333(a)-334(h)1(istorie)-334(r)1(\\363\\273)-1(n)1(e)-1(.)-333(Jak\\273e)-1(,)-333(znali)-333(Boryn)1(o)27(w)28(\\241)]TJ 0 -13.549 Td[(gw)28(a\\252)-1(t)1(o)27(wn)1(o\\261)-1(\\242,)-401(\\273)-1(e)-402(j)1(ak)-401(s)-1(i\\246)-401(z)-1(a)28(w)28(e)-1(\\271m)-1(i)1(e)-1(,)-401(to)-401(i)-401(dob)1(ro)-28(d)1(z)-1(iejo)28(wi)-401(nie)-401(ust\\241)-28(pi)1(,)-401(a)-402(i)-401(An)28(t)1(k)28(o)27(w)28(\\241)]TJ 0 -13.549 Td[(har)1(do\\261\\242)-334(te\\273)-334(z)-1(n)1(ali.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-460(lud)1(z)-1(ie)-460(s)-1(p)-27(\\246)-1(d)1(z)-1(eni)-460(d)1(o)-461(sz)-1(ar)1(w)27(ar)1(ku,)-460(n)1(a)-461(rozerw)27(an)1(\\241)-460(grobl\\246)-460(z)-1(a)-460(m)-1(\\252y)1(nem)-1(,)]TJ -27.879 -13.55 Td[(p)-27(oprzysta)28(w)27(ali)-333(i)-333(j)1(\\246)-1(li)-333(o)-333(t)28(ym)-334(zdar)1(z)-1(eniu)-332(p)-28(or)1(e)-1(d)1(z)-1(a\\242.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(erze)-1(k)1(\\252)-381(co\\261)-380(niec)-1(o\\261)-380(jeden,)-380(p)1(rze)-1(r)1(z)-1(ek\\252)-380(i)-380(d)1(rugi,)-379(a\\273)-381(w)-380(k)28(o\\253cu)-380(stary)-379(K\\252\\241b,)-380(\\273e)]TJ -27.879 -13.549 Td[(to)-333(m)-1(\\241d)1(ry)-333(c)27(h)1(\\252op)-333(b)28(y\\252)-333(i)-333(p)-28(o)28(w)28(a\\273)-1(an)28(y)84(,)-333(p)-27(o)27(wiedzia\\252)-333(s)-1(u)1(ro)28(w)27(o:)]TJ 27.879 -13.549 Td[({)-333(Z)-334(tego)-333(padn)1(ie)-334(z\\252e)-334(na)-333(wie\\261)-334(c)-1(a\\252\\241,)-333(b)1(ac)-1(zc)-1(ie)-333(ino.)]TJ 0 -13.549 Td[({)-333(An)28(tek)-334(n)1(ie)-334(u)1(s)-1(t\\241)-27(pi,)-333(j)1(ak\\273)-1(e?)-334(No)28(w)28(a)-334(g\\246ba)-333(do)-333(miski{)-333(rze)-1(k\\252)-333(kt\\363ry)1(\\261)-1(.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(,)-333(u)-333(Bory)1(n)28(y)-333(s)-1(tar)1(c)-1(zy\\252ob)28(y)-333(i)-333(la)-333(pi\\246ciu)-333({)-333(o)-334(d)1(z)-1(ia\\252y)-333(p)-27(\\363)-56(j)1(dzie.)]TJ 0 -13.55 Td[({)-333(B)-1(ez)-334(zapisu)-333(si\\246)-334(tam)-334(n)1(ie)-334(ob)-27(e)-1(j)1(dzie.)]TJ 0 -13.549 Td[({)-333(Dom)-1(i)1(nik)28(o)28(w)28(a)-334(n)1(ie)-334(g\\252u)1(pia,)-333(ju)1(\\273)-334(on)1(a)-334(wsz)-1(ystkic)28(h)-333(wyryc)28(h)28(tuj)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Matk)56(\\241)-333(jes)-1(t,)-333(to)-333(jej)-333(psie)-334(p)1(ra)28(w)27(o)-333(o)-333(dziec)27(k)28(o)-333(s)-1(toi\\242)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252)-333(K\\252\\241b.)]TJ 0 -13.549 Td[({)-333(W)-333(k)28(o\\261)-1(cie)-1(l)1(e)-334(pr)1(z)-1(es)-1(i)1(aduj)1(e)-1(,)-333(a)-333(c)27(h)28(y)1(tra)-333(na)-333(grosz)-334(kiej)-333(ten)-333(\\233yd.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j)-333(leda)-333(co)-334(n)1(a)-334(lu)1(dzi,)-333(\\273e)-1(b)28(y)-333(ci)-333(oz)-1(\\363r)-333(n)1(ie)-334(o)-28(d)1(j\\246\\252o.)]TJ 0 -13.55 Td[(I)-395(tak)-394(ca\\252e)-396(p)-27(op)-27(o\\252ud)1(nie)-395(za)-56(j)1(m)-1(o)28(w)28(a\\252)-1(a)-394(s)-1(i)1(\\246)-395(w)-1(i)1(e)-1(\\261)-395(zm)-1(\\363)28(win)1(am)-1(i,)-394(co)-395(i)-394(nie)-395(d)1(z)-1(iw,)-394(b)-28(o)]TJ -27.879 -13.549 Td[(Boryn)1(o)27(wie)-385(b)28(yl)1(i)-385(ro)-28(d)1(o)27(wi,)-384(s)-1(tar)1(z)-1(y)-385(gosp)-28(o)-27(darze,)-385(a)-385(Macie)-1(j)1(,)-385(c)27(h)1(o)-28(c)-1(i)1(a\\273)-386(u)1(rz)-1(\\246du)-384(nij)1(akiego)]TJ 0 -13.549 Td[(ni)1(e)-278(s)-1(p)1(ra)28(w)28(o)27(w)28(a\\252,)-277(a)-278(gr)1(om)-1(ad)1(z)-1(ie)-277(prze)-1(w)28(o)-28(d)1(z)-1(i\\252.)-277(Jak)1(\\273)-1(e,)-278(n)1(a)-277(o)-28(dwiec)-1(zn)28(yc)28(h)-277(kmie)-1(cyc)27(h)-276(rolac)27(h)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(,)-333(z)-334(dziada)-333(pr)1(adziada)-333(w)27(e)-334(ws)-1(i)-333(b)28(y\\252,)-333(rozum)-334(mia\\252,)-334(b)-27(ogac)-1(t)28(w)28(o)-334(mia\\252)-334({)-333(\\273)-1(e)-334(c)27(h)1(c)-1(\\241c)]TJ 0 -13.549 Td[(ni)1(e)-334(c)27(h)1(c)-1(\\241c,)-333(a)-334(s\\252uc)28(hali)-333(i)-333(u)28(w)28(a\\273)-1(ali)-333(go)-333(ws)-1(zysc)-1(y)84(.)]TJ 27.879 -13.55 Td[(Jeno)-351(ni)1(kt)-351(z)-352(dziec)-1(i)1(,)-351(ni)-351(k)28(o)28(w)27(al)-351(n)1(a)28(w)27(et,)-351(o)-351(z)-1(m\\363)28(w)-1(i)1(nac)27(h)-350(nie)-351(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-351(b)1(ali)-351(s)-1(i)1(\\246)-352(do)]TJ -27.879 -13.549 Td[(ni)1(c)27(h)-333(z)-334(n)1(o)28(w)-1(i)1(n\\241)-333(bie\\273)-1(y)1(\\242)-1(,)-333(b)28(yc)28(h)-333(w)-334(p)1(ierws)-1(ze)-1(j)-333(z\\252o\\261)-1(ci)-333(c)-1(zeg)-1(o)-333(n)1(ie)-334(ob)-27(e)-1(r)1(w)27(a\\242.)]TJ 27.879 -13.549 Td[(Wi\\246c)-414(te\\273)-414(w)-414(c)27(h)1(a\\252upi)1(e)-414(B)-1(or)1(yn\\363)28(w)-414(cic)27(h)1(o)-414(b)29(y\\252o)-414(j)1(e)-1(sz)-1(cz)-1(e,)-414(cisz)-1(ej)-413(dzisia)-56(j)-413(n)1(i\\271)-1(l)1(i)-414(za-)]TJ -27.879 -13.549 Td[(zw)-1(y)1(c)-1(za)-56(j)-289({)-289(d)1(e)-1(sz)-1(cz)-290(b)28(y)1(\\252)-290(p)1(rze)-1(sta\\252)-290(p)1(ada\\242)-289(i)-289(o)-28(d)-289(ran)1(a)-289(prze)-1(ciera\\252o)-289(s)-1(i)1(\\246)-290(na)-289(n)1(ie)-1(b)1(ie,)-289(to)-290(zaraz)]TJ 0 -13.549 Td[(p)-27(o)-294(\\261)-1(n)1(iadan)1(iu)-294(An)29(te)-1(k)-293(z)-295(Ku)1(b\\241)-294(i)-294(z)-294(k)28(ob)1(ie)-1(tami)-294(p)-27(o)-56(j)1(e)-1(c)28(hali)-293(do)-294(lasu)-294(zbiera\\242)-294(sus)-1(z)-294(n)1(a)-294(opa\\252)]TJ 0 -13.55 Td[(i)-333(pr)1(ob)-28(o)28(w)28(a\\242)-1(,)-333(cz)-1(yb)29(y)-334(si\\246)-334(n)1(ie)-334(d)1(a\\252o)-334(k)28(ol)1(e)-1(k)-333(ugr)1(abi\\242.)]TJ 27.879 -13.549 Td[(St)1(ary)-333(p)-28(ozosta\\252)-334(w)-333(dom)27(u)1(.)]TJ 0 -13.549 Td[(A)-311(j)1(u\\273)-311(o)-28(d)-310(s)-1(ame)-1(go)-310(rana)-310(b)28(y\\252)-311(d)1(z)-1(iwn)1(ie)-311(przykr)1(y)83(,)-310(dziwnie)-311(ze)-1(\\271lon)28(y)84(,)-311(\\273e)-312(i)1(no)-311(sz)-1(u)1(k)56(a\\252)]TJ -27.879 -13.549 Td[(ok)56(az)-1(j)1(i,)-344(na)-345(k)28(ogo)-344(b)28(y)-344(w)-1(y)1(w)-1(r)1(z)-1(e\\242)-345(niep)-27(ok)28(\\363)-56(j)-344(i)-344(z)-1(\\252o\\261\\242)-1(,)-344(jaki)1(e)-345(go)-345(roztrz\\246)-1(sa\\252y;)-344(Witk)56(a)-345(spr)1(a\\252,)]TJ 0 -13.549 Td[(b)-27(o)-358(p)-27(o)-28(d)-357(kro)28(wy)-358(s\\252om)27(y)-357(nie)-358(p)1(rzyrzuci\\252)-358(i)-357(le)-1(\\273a\\252y)-358(d)1(o)-358(p)-27(\\363\\252)-358(b)-27(ok)28(\\363)27(w)-357(w)-358(gno)-55(ju,)-357(z)-358(An)28(tki)1(e)-1(m)]TJ 0 -13.55 Td[(si\\246)-370(p)-28(ok)1(\\252)-1(\\363)-27(c)-1(i\\252;)-369(Hank)28(\\246)-370(wykr)1(z)-1(y)1(c)-1(za\\252)-370(za)-370(c)27(h)1(\\252opak)56(a,)-370(k)1(t\\363ren)-370(wyb)1(a\\252yk)28(o)28(w)27(a\\252)-370(p)1(rze)-1(d)-369(d)1(om)-370(i)]TJ 0 -13.549 Td[(ut)28(y)1(tla\\252)-397(si\\246)-397(w)-396(b\\252o)-27(c)-1(ie;)-396(na)28(w)28(e)-1(t)-396(na)-396(J\\363zk)28(\\246)-397(p)-27(o)27(wsta\\252,)-396(\\273)-1(e)-397(si\\246)-397(d)1(\\252ugo)-396(guzdr)1(a\\252a...)-396(a)-396(k)28(onie)]TJ 0 -13.549 Td[(cz)-1(ek)55(a\\252y)-333(n)1(a)-334(n)1(i\\241.)]TJ 27.879 -13.549 Td[(A)-301(gdy)-301(wres)-1(zc)-1(i)1(e)-302(p)-27(oz)-1(osta\\252)-302(sam,)-302(z)-301(Jagust)28(ynk)56(\\241)-301(ino,)-301(k)1(t\\363ra)-301(b)28(y\\252a)-301(os)-1(ta\\252a)-301(z)-302(w)28(c)-1(zo-)]TJ -27.879 -13.549 Td[(ra)-55(j,)-383(\\273eb)28(y)-383(dogl)1(\\241dn\\241\\242)-383(in)28(w)28(en)28(tarza,)-383(to)-383(ju)1(\\273)-384(ca\\252kiem)-384(n)1(ie)-383(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-382(c)-1(o)-383(rob)1(i\\242)-383(z)-1(e)-383(s)-1(ob)1(\\241.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(p)-28(omin)1(a\\252)-300(sobie)-300(ci\\246giem)-1(,)-299(co)-300(m)28(u)-299(Jam)27(b)1(ro\\273)-300(p)1(ra)28(wi\\252)-300(o)-299(p)1(rz)-1(y)1(j\\246c)-1(iu)-299(p)1(rze)-1(z)-299(Dom)-1(i)1(nik)28(o-)]TJ 0 -13.55 Td[(w)28(\\241,)-270(c)-1(o)-270(rzek\\252a)-271(J)1(agna,)-270(a)-270(mimo)-271(t)1(o)-271(d)1(uf)1(no\\261c)-1(i)-270(w)-270(sie)-1(b)1(ie)-271(n)1(ie)-270(m)-1(ia\\252)-270(i)-270(d)1(z)-1(iad)1(o)28(w)-1(i)-269(w)-1(i)1(e)-1(rzy\\242)-270(nie)]TJ 0 -13.549 Td[(bar)1(dzo)-245(wierz)-1(y)1(\\252,)-245(\\273e)-246(to)-244(m)-1(\\363g\\252)-245(za)-245(ten)-244(kielis)-1(zek)-245(o)-28(cygani)1(\\242)-246(i)1(no.)-244(T)83(o)-245(\\252az)-1(i)1(\\252)-245(p)-28(o)-244(iz)-1(b)1(ie,)-245(okn)1(e)-1(m)]TJ 0 -13.549 Td[(na)-309(pu)1(s)-1(t)1(\\241)-310(d)1(rog\\246)-310(wygl\\241d)1(a\\252)-310(ab)-27(o)-310(zgo\\252a)-310(i)-309(z)-310(gan)1(ku)-309(n)1(a)-310(Jagu)1(s)-1(in)1(\\241)-310(c)28(ha\\252u)1(p)-28(\\246)-310(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(nie)]TJ 0 -13.549 Td[(sp)-28(oziera\\252)-334({)-333(a)-333(z)-1(mierzc)27(h)28(u)-333(wycz)-1(ekiw)28(a\\252)-334(k)1(ie)-1(j)-332(z)-1(mi\\252o)28(w)27(an)1(ia...)]TJ 27.879 -13.549 Td[(St)1(o)-459(r)1(az)-1(y)-458(c)27(h)1(c)-1(i)1(a\\252o)-459(m)28(u)-458(s)-1(i)1(\\246)-459(bi)1(e)-1(\\273y\\242)-459(d)1(o)-459(w)28(\\363)-56(j)1(ta)-458(i)-458(p)-28(ogn)1(a\\242)-1(,)-458(b)28(y)-458(p)-27(osz)-1(li)-458(p)1(r\\246dze)-1(j)-458({)]TJ -27.879 -13.55 Td[(ale)-337(os)-1(ta\\252)-337(w)-337(dom)27(u)1(,)-337(b)-27(o)-338(go)-337(p)-27(o)28(w)-1(strzym)28(yw)27(a\\252y)-337(o)-28(czy)-337(Jagust)28(ynki)1(,)-337(c)-1(o)-337(za)-338(n)1(im)-337(c)27(ho)-27(dzi\\252y)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m;)-333(o)-28(c)-1(zy)-333(z)-1(mru)1(\\273)-1(on)1(e)-1(,)-333(a)-333(\\261)-1(wiec\\241c)-1(e)-334(u)1(r\\241)-28(gl)1(iw)27(o\\261c)-1(i)1(\\241)-334(i)-333(n)1(a\\261)-1(miec)27(hl)1(iw)27(e...)]TJ\nET\nendstream\nendobj\n340 0 obj <<\n/Type /Page\n/Contents 341 0 R\n/Resources 339 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 326 0 R\n>> endobj\n339 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n344 0 obj <<\n/Length 8720      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(103)]TJ -330.353 -35.866 Td[({)-333(C)-1(zaro)28(wni)1(c)-1(a)-333(ju)1(c)27(ha,)-333(wierci)-333(\\261)-1(lepi)1(am)-1(i)-333(ki)1(e)-1(j)-333(\\261widerkiem)-334({)-333(m)27(y)1(\\261)-1(la\\252.)]TJ 0 -13.549 Td[(A)-323(Jagust)28(ynk)56(a)-323(\\252az)-1(i\\252a)-323(p)-27(o)-324(c)28(ha\\252up)1(ie)-324(i)-323(ob)-27(ej\\261c)-1(iu)-323(z)-323(prz\\241\\261lic\\241)-324(p)-27(o)-28(d)-323(p)1(ac)27(h\\241)-323(i)-323(n)1(agl\\241-)]TJ -27.879 -13.549 Td[(da\\252a)-273({)-274(pr)1(z)-1(\\246d\\252a,)-273(a\\273)-274(w)-1(r)1(z)-1(ec)-1(i)1(ono)-274(t)1(urk)28(ota\\252o)-273(w)-274(p)-28(o)28(wietrzu,)-273(na)28(wija\\252a)-273(ni\\242)-274(i)-273(s)-1(z\\252a)-274(d)1(ale)-1(j)1(,)-274(d)1(o)]TJ 0 -13.549 Td[(g\\246s)-1(i,)-259(do)-260(\\261w)-1(i)1(\\253,)-260(d)1(o)-260(ob)-27(ory)83(,)-259(a)-260(\\212apa)-260(w\\252\\363)-28(cz)-1(y\\252)-260(si\\246)-260(z)-1(a)-260(n)1(i\\241)-260(se)-1(n)1(n)28(y)-260(i)-260(o)-27(c)-1(i\\246\\273a\\252)-1(y)1({)-260(nie)-260(o)-28(d)1(z)-1(yw)28(a\\252a)]TJ 0 -13.549 Td[(si\\246)-334(do)-334(starego,)-333(c)27(ho)-27(\\242)-335(d)1(obr)1(z)-1(e)-334(wiedzia\\252a,)-334(co)-334(go)-334(t)1(ak)-334(rozbi)1(e)-1(r)1(a)-334(i)-334(mark)28(o)-27(c)-1(i,)-333(co)-334(ni)1(m)-334(tak)]TJ 0 -13.55 Td[(rzuca,)-333(\\273)-1(e)-333(a\\273)-334(w)-1(zi\\241\\252)-333(s)-1(i)1(\\246)-334(do)-333(z)-1(ab)1(ij)1(ania)-333(k)28(o\\252\\363)28(w)-334(p)-27(o)-28(d)-333(\\261)-1(cian)1(\\241)-334(d)1(o)-334(ogacenia.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-1(a)-333(in)1(o)-334(p)1(rzy)-333(nim)-333(raz)-334(w)-333(raz)-1(,)-333(a\\273)-333(w)-334(k)28(o\\253cu)-333(rze)-1(k)1(\\252a:)]TJ 0 -13.549 Td[({)-333(Nie)-334(id)1(z)-1(i)1(e)-334(w)27(ama)-333(dzis)-1(i)1(a)-56(j)-333(rob)-27(ota.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ie)-334(id)1(z)-1(i)1(e)-1(,)-333(psiac)28(hma\\242)-1(,)-333(n)1(ie)-334(id)1(z)-1(ie.)]TJ 0 -13.549 Td[({)-242(S)1(o)-28(doma)-242(tu)1(ta)-56(j)-241(b)-28(\\246dzie,)-242(m\\363)-56(j)-241(Jez)-1(u)1(!)-242(So)-27(doma!)-242({)-242(m)28(y\\261)-1(l)1(a\\252a)-242(o)-28(dc)28(ho)-28(d)1(z)-1(\\241c.)-242({)-242(D)1(obrze)]TJ -27.879 -13.549 Td[(stary)-273(rob)1(i,)-273(\\273e)-274(si\\246)-273(\\273)-1(eni,)-272(dob)1(rz)-1(e!)-273(A)-273(to)-273(b)28(y)-272(m)27(u)-273(d)1(a\\252y)-273(taki)-273(wycug)-273(d)1(z)-1(i)1(e)-1(ci)-273(jak)-272(m)-1(n)1(ie)-1(!)-272(C)-1(a\\252e)]TJ 0 -13.55 Td[(dzies)-1(i)1(\\246)-1(\\242)-236(m)-1(or)1(g\\363)27(w)-236(p)-27(ola)-236(jak)-235(z)-1(\\252oto)-236(da\\252am,)-236(i)-236(co?...)-236({)-236(splu)1(n\\246\\252a)-236(z)-1(e)-236(z)-1(\\252o\\261c)-1(i)1(\\241.)-236({)-236(Na)-236(w)-1(y)1(robk)1(i)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dz\\246,)-334(n)1(a)-333(k)27(omorn)1(ic\\246)-334(z)-1(esz)-1(\\252am!...)]TJ 27.879 -13.549 Td[(A)-297(s)-1(t)1(ary)83(,)-297(\\273e)-298(t)1(o)-298(j)1(u\\273)-297(w)-1(y)1(dzie)-1(r)1(\\273)-1(e\\242)-298(n)1(ie)-298(m\\363g\\252,)-297(gru)1(c)27(hn)1(\\241\\252)-297(s)-1(iekier\\246)-297(o)-297(z)-1(iemi\\246)-298(i)-297(kr)1(z)-1(y)1(k-)]TJ -27.879 -13.549 Td[(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(Na)-334(p)1(s)-1(a)-333(tak)56(a)-333(rob)-28(ot)1(a!)]TJ 0 -13.55 Td[({)-333(Gryzie)-334(w)28(as)-334(co\\261)-334(na)-333(wn\\241tr)1(z)-1(u)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(gr)1(yz)-1(i)1(e)-1(,)-333(gry)1(z)-1(ie.:.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-533(pr)1(z)-1(ysiad)1(\\252)-1(a)-533(na)-533(pr)1(z)-1(yzbi)1(e)-1(,)-533(wyc)-1(i)1(\\241)-28(gn\\246\\252a)-534(d\\252u)1(g\\241)-534(n)1(i\\242)-1(,)-533(zw)-1(i)1(n\\246\\252a)-534(na)]TJ -27.879 -13.549 Td[(wrze)-1(ciono)-333(i)-333(c)-1(i)1(c)27(ho,)-333(tr)1(o)-28(c)27(h)1(\\246)-334(z)-334(ob)1(a)27(w)28(\\241)-333(rze)-1(k\\252a:)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(n)1(ie)-334(mac)-1(i)1(e)-334(s)-1(i)1(\\246)-334(z)-334(cz)-1(ego)-334(mark)28(o)-27(c)-1(i\\242)-333(ni)-333(tur)1(b)-28(o)28(w)28(a\\242)-1(.)]TJ 0 -13.55 Td[({)-333(Wiec)-1(ie)-333(to?)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)1(c)-1(ie)-333(s)-1(i\\246,)-333(Dominik)28(o)28(wra)-333(m\\241dra,)-333(a)-333(Jagn)1(a)-334(te\\273)-334(p)-27(o)-334(m)28(y\\261le)-1(n)1(ie)-334(ma.)]TJ 0 -13.549 Td[({)-333(Rz)-1(ekli\\261c)-1(i)1(e)-1(!)-333({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(rad)1(o\\261)-1(n)1(ie)-334(i)-333(p)1(rz)-1(y)1(s)-1(iad)1(\\252)-334(w)-333(p)-28(o)-27(dle.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(mam)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-333(d\\252ugo)-333(pr)1(z)-1(etrzym)27(u)1(j\\241c)-333(s)-1(i\\246)-333(w)-1(za)-56(j)1(e)-1(mni)1(e)-1(.)]TJ 0 -13.55 Td[({)-446(Na)-445(w)27(es)-1(ele)-446(m)-1(n)1(ie)-446(z)-1(ap)1(ro\\261c)-1(i)1(e)-1(,)-445(to)-446(w)27(am)-446(t)1(akiego)-446(\\377)-56(Chmiela\")-446(za\\261)-1(p)1(iew)27(am,)-446(\\273e)]TJ -27.879 -13.549 Td[(ry)1(c)27(h)28(t)28(yk)-320(w)-321(dzie)-1(wi\\246\\242)-321(m)-1(i)1(e)-1(si\\246c)-1(y)-320(c)27(hr)1(z)-1(cin)28(y)-320(wypr)1(a)27(wicie...)-320({)-321(z)-1(acz)-1(\\246\\252a)-321(ir)1(onicz)-1(n)1(ie,)-321(ale)-321(wi-)]TJ 0 -13.549 Td[(dz\\241c,)-334(\\273e)-334(stary)-333(si\\246)-334(sc)27(hm)28(ur)1(z)-1(y\\252,)-333(d)1(orz)-1(u)1(c)-1(i)1(\\252a)-334(in)1(n)28(ym)-333(tonem)-1(:)]TJ 27.879 -13.549 Td[({)-490(Dob)1(rze)-491(rob)1(icie)-1(,)-489(Macie)-1(j)1(u,)-489(dob)1(rz)-1(e.)-490(Jak)-489(m)-1(\\363)-55(j)-490(p)-27(omar\\252)-490(\\273e)-1(b)28(ym)-490(b)28(y)1(\\252a)-490(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(p)-27(os)-1(zuk)56(a\\252a)-397(c)27(h)1(\\252opa,)-397(to)-397(n)1(ie)-397(k)28(om)-1(orn)1(ic\\241)-397(b)28(ym)-397(dzisia)-56(j)-396(b)28(y\\252a,)-397(n)1(ie)-1(.)1(..G\\252u)1(pia)-397(b)29(y\\252am)-1(,)-396(z)-1(a-)]TJ 0 -13.55 Td[(wierz)-1(y)1(\\252am)-334(dziec)-1(iom)-333(....)-333(n)1(a)-334(wycug)-333(p)-27(os)-1(z\\252am)-1(,)-333(gron)29(t)-334(o)-27(dp)1(is)-1(a\\252am,)-333(i)-333(c)-1(o?...)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(t)1(a)-334(n)1(ie)-334(o)-28(d)1(pisz)-1(\\246)-333(ni)-333(zagona!)-333({)-333(rz)-1(ek\\252)-333(t)28(w)27(ar)1(do.)]TJ 0 -13.549 Td[({)-250(Macie)-250(wy)-250(rozum,)-250(\\273e)-251(tak)-249(m)-1(\\363)28(wicie)-1(,)-249(m)-1(acie!)-250(P)28(o)-250(s\\241dac)28(h)-250(si\\246)-250(w)-1(\\252\\363)-28(czy\\252am)-1(,)-249(to)-250(ino)]TJ -27.879 -13.549 Td[(te)-251(par\\246)-251(z\\252)-1(ot)28(y)1(c)27(h,)-250(c)-1(om)-251(m)-1(i)1(a\\252)-1(a)-251({)-250(p)-28(osz)-1(\\252y)84(,)-251(a)-251(s)-1(p)1(ra)28(wiedliw)28(o\\261c)-1(i)-251(n)1(ie)-251(kup)1(i\\252am)-1(.)1(..)-251(i)-251(n)1(a)-251(s)-1(tar)1(o\\261)-1(\\242)]TJ 0 -13.549 Td[(na)-239(p)-28(on)1(iew)-1(i)1(e)-1(r)1(k)28(\\246)-1(,)-239(na)-239(w)-1(yr)1(ob)-28(ek!)-239(\\233e)-1(b)28(y)1(\\261)-1(ta,)-239(\\261c)-1(ierwy)83(,)-239(p)-27(o)-28(de)-240(p)1(\\252ote)-1(m)-240(wyzdy)1(c)27(ha\\252y)-239(z)-1(a)-239(m)-1(o)-55(je)]TJ 0 -13.549 Td[(uk)1(rzywdze)-1(ni)1(e)-1(!)-327(P)28(os)-1(z\\252am)-329(d)1(o)-328(ni)1(c)27(h)-328(w)-328(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246,)-328(\\273e)-1(b)29(y)-328(c)27(h)1(o)-28(c)-1(i)1(a)-328(p)-28(op)1(atrze)-1(\\242)-328(na)-328(c)28(ha\\252up)-27(\\246,)]TJ 0 -13.55 Td[(na)-454(ten)-454(sad,)-454(com)-454(go)-455(an)1(o)-454(s)-1(ama)-454(s)-1(zcz)-1(epi\\252a,)-454(to)-454(syn)1(o)27(w)28(a)-454(wyw)27(ar)1(\\252)-1(a)-454(n)1(a)-454(m)-1(n)1(ie)-454(p)28(ys)-1(k)-453(,)]TJ 0 -13.549 Td[(\\273e)-407(n)1(a)-406(p)1(rz)-1(e\\261piegi)-406(p)1(rzyc)27(h)1(o)-28(dz\\246)-1(!)-405(M\\363)-55(j)-406(t)28(y)-405(Je)-1(zu)-405(k)28(o)-28(c)27(h)1(an)28(y!)-405(Ja)-406(na)-405(pr)1(z)-1(e\\261)-1(p)1(ie)-1(gi)1(,)-406(n)1(a)-406(s)-1(w)28(\\363)-56(j)]TJ 0 -13.549 Td[(ro)-27(dzon)28(y)-238(gron)29(t)-238(przyc)28(ho)-28(d)1(z)-1(\\246!)-238(My)1(\\261)-1(la\\252am)-238(\\273)-1(e)-238(tr)1(up)-27(e)-1(m)-238(pad)1(n\\246,)-238(tak)-238(mni)1(e)-239(\\273a\\252o\\261)-1(\\242)-238(\\261)-1(cisn\\246\\252a!)]TJ 0 -13.549 Td[(P)28(osz)-1(\\252am)-277(do)-277(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a,)-277(\\273)-1(eb)28(y)-277(ic)28(h)-277(c)27(h)1(o)-28(cia\\273)-278(za)-277(to)-277(s)-1(k)56(arci\\252)-277(z)-278(am)28(b)-28(on)29(y)83(,)-277(to)-277(mi)-277(rzek\\252,)-277(\\273)-1(e)]TJ 0 -13.549 Td[(za)-366(te)-366(k)1(rz)-1(y)1(w)-1(d)1(y)-365(P)28(an)-365(Jez)-1(u)1(s)-366(m)-1(n)1(ie)-366(wyn)1(agro)-28(d)1(z)-1(i!.)1(..Ju)1(\\261)-1(ci,)-365(ju)1(\\261)-1(ci...)-365(j)1(ak)-366(k)1(to)-366(n)1(ic)-366(n)1(ie)-366(ma,)]TJ 0 -13.55 Td[(dob)1(ra)-319(m)27(u)-319(i)-320(J)1(e)-1(zuso)27(w)28(a)-320(\\252ask)56(a,)-320(d)1(obra.)1(..)-320(al)1(e)-320(z)-1(a)28(wdy)-319(w)27(ol)1(a\\252)-1(ab)29(ym)-320(ja)-319(p)-28(ogosp)-27(o)-28(dar)1(z)-1(y\\242)-320(tu)]TJ 0 -13.549 Td[(na)-309(gr)1(oncie)-1(,)-309(w)-309(cie)-1(p)1(\\252e)-1(j)-308(iz)-1(b)1(ie)-309(p)-28(o)-28(d)-308(pierzyn)1(\\241)-310(si\\246)-309(prze)-1(spa\\242)-309(t\\252usto)-309(s)-1(e)-309(p)-27(o)-28(dj)1(e)-1(\\261\\242)-310(i)-309(u)1(c)-1(i)1(e)-1(c)27(h)29(y)]TJ\nET\nendstream\nendobj\n343 0 obj <<\n/Type /Page\n/Contents 344 0 R\n/Resources 342 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n342 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n348 0 obj <<\n/Length 7672      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(104)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(8.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(za\\273)-1(y\\242...)]TJ 27.879 -13.549 Td[(I)-468(j\\246\\252a)-469(z)-469(t)1(ak)55(\\241)-468(gor\\241co\\261)-1(ci\\241)-468(wygadyw)28(a\\242)-469(n)1(a)-469(wsz)-1(ystk)28(o,)-468(\\273)-1(e)-468(B)-1(or)1(yna)-468(p)-27(o)27(wsta\\252)-469(i)]TJ -27.879 -13.549 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(wie\\261)-334(d)1(o)-334(w)28(\\363)-56(j)1(ta,)-333(jak)28(o)-333(\\273)-1(e)-333(i)-334(mro)-27(c)-1(ze)-1(\\242)-333(p)-28(o)-28(czyna\\252o.)]TJ 27.879 -13.549 Td[({)-333(Ryc)27(h)1(\\252)-1(o)-333(id)1(z)-1(i)1(e)-1(ta,)-333(co?)]TJ 0 -13.549 Td[({)-333(W)-333(te)-334(min)28(ut)28(y)84(,)-333(z)-1(ar)1(no)-333(Szymon)-333(przyj)1(d\\241.)]TJ 0 -13.55 Td[(Jak)28(o\\273)-226(i)-225(p)1(rzys)-1(ze)-1(d)1(\\252,)-225(i)-226(p)-27(osz)-1(li)-225(j)1(u\\273)-226(r)1(az)-1(em)-226(d)1(o)-226(k)56(arcz)-1(m)28(y)83(,)-225(ab)28(y)-225(si\\246)-226(n)1(api\\242)-225(jaki)-225(ki)1(e)-1(li)1(s)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(i)-371(wz)-1(i\\241\\242)-371(araku)-371(n)1(a)-371(p)-28(o)-28(cz\\246)-1(stun)1(e)-1(k.)-371(Jam)28(br)1(o\\273)-1(y)-371(j)1(u\\273)-372(tam)-371(b)28(y\\252)-371(i)-371(w)-1(n)1(e)-1(t)-371(p)1(rzys)-1(ta\\252)-371(do)-371(n)1(ic)27(h)1(,)]TJ 0 -13.549 Td[(ale)-334(n)1(ied\\252ugo)-333(p)1(ili,)-333(b)-27(o)-334(M)1(ac)-1(iej)-333(ic)28(h)-333(p)-28(op)-27(\\246dza\\252.)]TJ 27.879 -13.549 Td[({)-470(P)28(o)-28(cz)-1(ek)56(am)-471(n)1(a)-471(w)28(as)-471(tu)1(ta)-56(j)1(;)-470(o)-28(d)1(pij)1(\\241,)-470(to)-470(z)-1(ab)1(ie)-1(r)1(z)-1(cie)-471(k)28(ob)1(iet)28(y)-470(i)-470(przyc)27(h)1(o)-28(d)1(\\271)-1(cie)]TJ -27.879 -13.549 Td[(du)1(c)27(h)1(e)-1(m)-333({)-334(za)28(w)27(o\\252a\\252)-333(z)-1(a)-333(nimi.)]TJ 27.879 -13.549 Td[(Szli)-315(mo)-28(cno)-315(\\261ro)-28(d)1(kiem)-316(d)1(rogi,)-315(a\\273)-315(b\\252oto)-315(si\\246)-315(ot)27(wiera\\252o;)-315(mrok)-314(g\\246)-1(stnia\\252)-315(i)-315(p)-27(okr)1(y-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-392(\\261wiat)-391(sz)-1(ary)1(m)-1(,)-390(s)-1(m)28(utn)28(y)1(m)-392(p)1(rz\\246)-1(d)1(z)-1(iw)28(e)-1(m,)-391(w)-391(kt\\363r)1(ym)-391(w)-1(i)1(e)-1(\\261)-391(c)-1(a\\252a)-391(zapada\\252a,)-390(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(gdzieniegdzie)-346(p)-27(o)-28(cz)-1(\\246\\252y)-345(z)-346(mrok)28(\\363)28(w)-346(wyb)1(\\252ys)-1(k)1(iw)27(a\\242)-345(\\261)-1(wiat\\252a)-345(c)27(h)1(at)-345(i)-345(psy)-345(nasz)-1(cz)-1(ekiw)28(a\\252y)]TJ 0 -13.549 Td[(w)-334(op)1(\\252otk)56(ac)27(h,)-333(j)1(ak)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(pr)1(z)-1(ed)-333(k)28(olacj\\241.)]TJ 27.879 -13.549 Td[({)-333(Kumotrze?)-334({)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(p)-27(o)-333(c)27(h)28(wili)-333(w)28(\\363)-56(j)1(t.)]TJ 0 -13.549 Td[({)-333(He)-1(?)]TJ 0 -13.55 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(\\273)-1(e)-333(B)-1(ory)1(na)-333(wypr)1(a)27(wi)-333(sie)-1(l)1(ne)-334(w)28(e)-1(se)-1(l)1(is)-1(k)28(o.)]TJ 0 -13.549 Td[({)-333(Wyp)1(ra)28(w)-1(i)-333(ab)-27(o)-333(i)-333(nie)-334(wyp)1(ra)28(wi!)-333({)-334(o)-27(drzek\\252)-334(zgry\\271liwie,)-333(\\273)-1(e)-333(to)-334(mru)1(k)-333(b)28(y\\252.)]TJ 0 -13.549 Td[({)-228(W)1(ypr)1(a)27(wi!)-227(W)83(\\363)-55(jt)-227(w)27(ama)-228(to)-227(m)-1(\\363)28(wi,)-227(to)-228(wie)-1(r)1(z)-1(cie.)-228(Ja)-227(ju\\273)-228(w)-228(t)28(y)1(m)-1(.)-227(Wyry)1(c)27(h)28(tu)1(jem)27(y)]TJ -27.879 -13.549 Td[(tak)56(\\241)-333(z)-334(nic)28(h)-333(par)1(\\246)-1(,)-333(\\273e)-334(ja\\273)-334(h)1(a!)]TJ 27.879 -13.549 Td[({)-333(Ino)-333(klacz)-334(p)-27(onies)-1(i)1(e)-1(,)-333(b)-27(o)-334(ogier,)-333(wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(ma)-334(k)28(on)1(opie)-334(w)-333(ogoni)1(e)-1(!)]TJ 0 -13.55 Td[({)-333(Nie)-334(n)1(as)-1(za)-334(to)-333(rzec)-1(z.)]TJ 0 -13.549 Td[({)-333(Hale)-1(.)1(..)-333(dziec)-1(i)-333(nas)-333(w)-1(y)1(klin)1(a\\242)-334(b)-27(\\246)-1(d)1(\\241...)]TJ 0 -13.549 Td[({)-333(B)-1(\\246dzie)-334(gal)1(an)28(to,)-333(ja,)-333(w)28(\\363)-56(jt)1(,)-334(t)1(o)-334(w)28(am)-1(a)-333(m\\363)28(w)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(W)84(e)-1(sz)-1(li)-333(zaraz)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)1(.)]TJ 0 -13.549 Td[(W)-333(izbie)-333(b)28(y\\252o)-333(w)-1(i)1(dno,)-333(zam)-1(i)1(e)-1(ciono,)-333(cz)-1(y)1(s)-1(to)-333({)-333(s)-1(p)-27(o)-28(d)1(z)-1(iew)27(al)1(i)-334(si\\246)-334(i)1(c)27(h)-333(p)1(rz)-1(ecie)-1(.)]TJ 0 -13.55 Td[(Dzie)-1(w)28(os\\252)-1(\\246b)28(y)-441(p)-28(o)-28(c)28(h)28(w)28(alili)-441(B)-1(oga,)-441(przywitali)-441(s)-1(i)1(\\246)-443(k)28(olejn)1(o)-442(ze)-443(wsz)-1(ystkimi)-442(b)-27(o)-442(i)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opaki)-459(s)-1(i)1(e)-1(d)1(z)-1(ieli)-459(w)-460(iz)-1(b)1(ie,)-460(usiedli)-459(na)-459(przysun)1(i\\246)-1(t)28(yc)28(h)-460(d)1(o)-460(k)28(omina)-459(s)-1(to\\252k)56(ac)27(h)-459(i)-460(j)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(p)-27(ogadyw)28(a\\242)-334(to)-333(o)-333(t)27(y)1(m)-1(,)-333(to)-333(o)-333(o)27(wym.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(zi\\241b,)-333(j)1(akb)28(y)-333(ju)1(\\273)-334(na)-333(mr\\363z)-334(sz)-1(\\252o)-333({)-333(z)-1(acz)-1(\\241\\252)-333(w)27(\\363)-55(jt,)-333(ogr)1(z)-1(ew)27(a)-55(j\\241c)-334(r)1(\\246)-1(ce)-1(.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(n)1(ie)-334(n)1(a)-334(zwie)-1(sn\\246)-333(idzie,)-334(t)1(o)-334(i)-333(n)1(ie)-334(dziw)28(ota!)]TJ 0 -13.55 Td[({)-333(Zw)-1(i)1(e)-1(\\271li\\261c)-1(ie)-333(ju)1(\\273)-334(k)56(apust\\246,)-334(co?)]TJ 0 -13.549 Td[({)-288(I..)-287(os)-1(ta\\252o)-288(tam)-288(n)1(a)-288(k)55(ap)1(u\\261ni)1(s)-1(ku)-287(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-288(ale)-288(te)-1(r)1(az)-289(n)1(ie)-288(do)-55(jedzie)-288({)-288(o)-28(dp)-27(o)28(wia-)]TJ -27.879 -13.549 Td[(da\\252a)-374(s)-1(t)1(ara)-375(sp)-27(ok)28(o)-56(jn)1(ie)-375(i)-374(c)27(h)1(o)-28(dzi\\252a)-374(o)-28(c)-1(zami)-375(za)-375(J)1(agn\\241,)-374(kt\\363ra)-374(p)-27(o)-28(d)-374(oknem)-375(mota\\252a)-375(n)1(a)]TJ 0 -13.549 Td[(moto)28(w)-1(i)1(d\\252o)-346(p)1(rz\\246)-1(d)1(z)-1(\\246)-346(w)-346(p)1(arn)1(iki,)-345(a)-345(b)28(y\\252a)-346(d)1(z)-1(i)1(s)-1(ia)-55(j)-345(tak)-346(u)1(ro)-28(d)1(na,)-345(\\273e)-346(w)27(\\363)-55(jt,)-345(c)27(h)1(\\252op)-346(m\\252o)-28(d)1(y)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e,)-333(s)-1(p)-27(ogl\\241d)1(a)-1(\\252)-333(na)-333(n)1(i\\241)-334(\\252ak)28(om)28(ymi)-333(o)-28(c)-1(zami)-334({)-333(ale)-334(w)-333(k)28(o\\253cu)-333(zac)-1(z\\241\\252:)]TJ 27.879 -13.549 Td[({)-482(\\233e)-482(to)-482(p)1(luc)28(ha,)-481(b\\252o)-28(c)27(k)28(o)-481(i)-482(\\242m)-1(a,)-481(to\\261)-1(w)28(a)-482(z)-482(Szymonem)-482(ws)-1(t\\241)-28(p)1(ili)-481(do)-482(w)28(as)-482(p)-28(o)]TJ -27.879 -13.55 Td[(dr)1(o)-28(dze;)-260(przyj)1(\\246)-1(li)1(\\261)-1(cie)-261(n)1(as)-261(go)-28(d)1(nie,)-260(ugo\\261c)-1(i)1(li)-260(dob)1(rym)-260(s)-1(\\252o)28(w)28(e)-1(m,)-260(to)-260(c)27(h)1(e)-1(b)1(a)-261(co)-260(s)-1(tar)1(guj)1(e)-1(m)28(y)]TJ 0 -13.549 Td[(u)-333(w)28(as)-1(,)-333(matk)28(o...)]TJ 27.879 -13.549 Td[({)-333(I)-334(w)28(e)-334(\\261w)-1(i)1(e)-1(cie)-334(co\\261)-334(ni)1(e)-1(co\\261)-334(s)-1(tar)1(go)28(w)27(a\\242)-334(mo\\273na,)-333(in)1(o)-334(p)-27(os)-1(zuk)56(a\\242)-334(tr)1(z)-1(a.)1(..)]TJ 0 -13.549 Td[({)-316(P)1(ra)28(wd\\246\\261)-1(cie)-316(rzekli,)-315(matk)28(o,)-316(j)1(e)-1(n)1(o)-316(n)1(ic)-316(nam)-315(p)-28(o)-315(s)-1(zuk)56(ani)1(u,)-315(b)-28(o)-315(u)-315(w)27(as)-316(wid)1(z)-1(i)-315(si\\246)]TJ -27.879 -13.549 Td[(nam)-333(na)-55(jlepi)1(e)-1(j)1(.)]TJ 27.879 -13.55 Td[({)-333(T)83(argu)1(jcie)-334({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252a)-333(w)27(eso\\252)-1(o.)]TJ 0 -13.549 Td[({)-333(Ja\\252o)27(wic\\246)-334(b)28(y)1(\\261)-1(m)28(y)-333(na)-333(te)-1(n)-333(p)1(rzyk\\252ad)-333(zatargo)28(w)27(al)1(i.)]TJ\nET\nendstream\nendobj\n347 0 obj <<\n/Type /Page\n/Contents 348 0 R\n/Resources 346 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n346 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n351 0 obj <<\n/Length 8012      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(105)]TJ -330.353 -35.866 Td[({)-333(Ho,)-333(ho!)-333(Drogo)-333(s)-1(t)1(oi;)-333(nie)-333(na)-333(b)28(yle)-333(jakim)-333(p)-28(ostron)1(ku)-333(j)1(\\241)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie!)]TJ 0 -13.549 Td[({)-327(Ze)-328(\\261reb\\252a)-327(p)-27(o\\261)-1(wi\\246c)-1(an)1(e)-1(go)-327(mam)28(y)-327(p)-28(o)28(wr\\363ze)-1(k)1(,)-327(a)-327(z)-328(t)1(a)-1(k)1(ie)-1(go)-327(t)1(o)-327(c)27(ho)-27(\\242)-1(b)28(y)-326(i)-327(s)-1(mok,)]TJ -27.879 -13.549 Td[(a)-333(nie)-333(z)-1(erwie)-334(si\\246)-1(.)1(..)-333(No,)-333(w)-1(i)1(e)-1(la,)-333(matk)28(o?{)-333(i)-334(j)1(\\241\\252)-334(wyci\\241)-28(ga\\242)-333(but)1(e)-1(lk)28(\\246)-333(z)-334(kies)-1(ze)-1(n)1(i...)]TJ 27.879 -13.549 Td[({)-357(Wiela?)-357(N)-1(i)1(e)-1(\\252acno)-357(to)-357(rze)-1(c!)-357(M\\252\\363)-28(d)1(k)55(a,)-357(a)-357(n)1(a)-358(d)1(z)-1(i)1(e)-1(wi\\246tnast\\241)-357(z)-1(wies)-1(n)1(\\246)-358(jej)-357(id)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(dob)1(ra)-333(i)-333(rob)-27(otna,)-333(\\273e)-334(mog\\252)-1(ab)29(y)-333(jes)-1(zc)-1(ze)-334(rok)28(\\363)28(w)-334(p)1(ar\\246)-334(p)-27(osta\\242)-334(u)-333(matki.)1(..)]TJ 27.879 -13.55 Td[({)-333(P\\252one)-333(to)-334(stani)1(e)-334({)-333(b)-28(o)-333(b)-27(e)-1(z)-334(p)1(rzyc)27(h)1(o)27(wku)1(,)-333(p\\252on)1(e)-1(...)]TJ 0 -13.549 Td[({)-333(La)-334(d)1(ru)1(gie)-1(j)-333(t)1(o)-334(i)-333(pr)1(z)-1(y)-333(matce)-334(o)-334(t)1(o)-334(n)1(ie)-1(t)1(rud)1(no!)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(Szymon.)]TJ 0 -13.549 Td[(W)84(\\363)-56(jt)-333(si\\246)-334(r)1(oz)-1(e\\261)-1(mia\\252)-333(g\\252)-1(o\\261no,)-333(a)-333(stara)-333(b\\252ysn\\246\\252a)-334(in)1(o)-333(o)-28(c)-1(zami)-334(i)-333(r)1(z)-1(ek\\252a)-333(pr\\246dk)28(o:)]TJ 0 -13.549 Td[({)-333(Szuk)56(a)-56(j)1(c)-1(i)1(e)-334(dr)1(ugiej,)-333(mo)-56(j)1(a)-334(mo\\273)-1(e)-333(p)-28(o)-27(c)-1(ze)-1(k)56(a\\242.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(mo\\273)-1(e,)-333(ale)-334(m)28(y)-333(nie)-334(zna)-55(jd)1(z)-1(i)1(e)-1(m)28(y)-334(u)1(ro)-28(d)1(niejsze)-1(j)-333(i)-333(u)-333(lepsze)-1(j)-333(mac)-1(i)1(!)]TJ 0 -13.549 Td[({)-333(Rz)-1(ekli\\261c)-1(i)1(e)-1(!;)1(..)]TJ 0 -13.55 Td[({)-266(Ja,)-266(w)27(\\363)-55(jt,)-266(to)-266(w)27(ama)-266(m)-1(\\363)28(wi\\246,)-267(t)1(o)-267(wierzc)-1(ie...)-266({)-266(Wyci\\241)-28(gn)1(\\241\\252)-267(k)1(ie)-1(l)1(is)-1(ze)-1(k)1(,)-267(wyt)1(ar\\252)-267(go)]TJ -27.879 -13.549 Td[(p)-27(o\\252\\241)-372(k)56(ap)-27(ot)27(y)84(,)-371(nal)1(a\\252)-372(w)-372(n)1(iego)-372(ar)1(aku)-371(i)-371(rze)-1(k\\252)-371(p)-27(o)27(w)28(a\\273)-1(n)1(ie:)-372({)-371(S)1(\\252)-1(u)1(c)27(h)1(a)-56(jcie,)-371(Dom)-1(i)1(nik)28(o)28(w)28(a,)]TJ 0 -13.549 Td[(pi)1(lni)1(e)-1(,)-398(co)-399(w)28(ama)-399(p)-27(o)28(wie)-1(m;)-398(ur)1(z)-1(\\246dn)1(ik)-398(jeste)-1(m)-398(i)-398(m)-1(o)-55(je)-398(s)-1(\\252o)28(w)27(o)-398(to)-398(ni)1(e)-399(ten)-398(ptasze)-1(k,)-398(co)]TJ 0 -13.549 Td[(se)-384(piskni)1(e)-1(,)-383(\\014u)1(kn)1(ie)-384(i)-383(t)28(yla\\261)-384(go)-383(ju\\273)-383(w)-1(i)1(dzia\\252!)-384(S)1(z)-1(y)1(m)-1(on)1(,)-384(t)1(e)-1(\\273)-384(wiad)1(om)-1(o,)-383(kto)-383(jes)-1(t)-383({)-383(nie)]TJ 0 -13.549 Td[(obi)1(e)-1(\\273y\\261w)-1(i)1(a)-1(t)-360(\\273)-1(ad)1(e)-1(n)1(,)-361(i)1(no)-361(gosp)-28(o)-27(darz,)-361(o)-27(c)-1(iec)-361(dziec)-1(iom)-361(i)-360(s)-1(o\\252t)28(ys!..)1(.)-361(Mi)1(arku)1(jcie)-361(s)-1(e)-361(in)1(o,)]TJ 0 -13.55 Td[(jak)1(ie)-334(\\014)1(gury)-333(d)1(o)-334(w)28(as)-334(pr)1(z)-1(y)1(s)-1(z\\252y)-334(i)-333(z)-333(c)-1(zym,)-334(miar)1(kuj)1(c)-1(ie!)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(wiem)-1(,)-333(P)1(ie)-1(t)1(rz)-1(e,)-333(i)-333(u)28(w)28(a\\273)-1(am.)]TJ 0 -13.549 Td[({)-479(M)1(\\241dra\\261c)-1(i)1(e)-480(k)28(ob)1(ieta,)-479(to)-479(i)-478(to)-479(wiec)-1(i)1(e)-1(,)-478(\\273)-1(e)-479(pr)1(\\246)-1(d)1(z)-1(ej)-479(czy)-479(p)-27(\\363\\271)-1(n)1(ie)-1(j)1(,)-479(a)-478(Jagu\\261)-479(z)]TJ -27.879 -13.549 Td[(dom)28(u)-359(i\\261\\242)-360(m)28(usi)-359(na)-359(sw)27(o)-55(je,)-359(tak)-359(j)1(u\\273)-360(P)29(an)-359(Jez)-1(u)1(s)-360(p)-27(os)-1(tan)1(o)28(w)-1(i)1(\\252)-1(,)-358(\\273)-1(e)-359(o)-56(jce)-360(d)1(z)-1(i)1(e)-1(ci)-359(c)27(h)1(o)27(w)28(a)-56(j)1(\\241)]TJ 0 -13.549 Td[(la)-333(\\261)-1(wiat)1(a,)-334(n)1(ie)-334(la)-333(sie)-1(b)1(ie.)]TJ 27.879 -13.55 Td[({)-333(Oj,)-333(p)1(ra)28(wda,)-333(pr)1(a)27(wd)1(a,)-334(t)28(y)-333(matk)28(o)]TJ 0 -13.549 Td[(Cac)27(k)56(a)-56(j)1(,)-333(c)-1(ze)-1(sz)-1(,)-333(strze)-1(\\273)]TJ 0 -13.549 Td[(I)-333(jes)-1(zc)-1(ze)-334(dop)1(\\252a\\242)-334(k)28(om)27(u)1(-)]TJ 0 -13.549 Td[(\\233e)-1(b)29(y)-333(w)-1(zi\\241\\252)-333(z)-334(dom)28(u..)1(.)]TJ 0 -13.549 Td[({)-264(T)83(ak)-264(ju)1(\\273)-265(na)-264(\\261wie)-1(cie)-265(j)1(e)-1(st,)-264(to)-264(i)-264(ni)1(e)-265(z)-1(mieni.)-264(Ch)28(y)1(ba)-264(k)56(apk)28(\\246)-265(p)1(rze)-1(p)1(ijem)27(y)84(,)-264(matk)28(o?)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(ja)-333(wie)-1(m?...)-333(Niew)27(ol)1(i\\242)-334(jej)-333(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(,)-333(c\\363\\273)-1(,)-333(Jagu)1(\\261)-1(,)-333(o)-28(d)1(pij)1(e)-1(sz)-1(?..)1(.)]TJ 0 -13.549 Td[({)-333(I...)-333(ja)-333(ta)-333(wie)-1(m...)-333({)-333(pi)1(s)-1(kn)1(\\246)-1(\\252a)-333(o)-28(d)1(w)-1(r)1(ac)-1(a)-55(j\\241c)-334(d)1(o)-334(ok)1(na)-333(z)-1(acz)-1(erwienion)1(\\241)-333(t)27(w)28(arz.)]TJ 0 -13.549 Td[({)-269(P)28(os)-1(\\252u)1(s)-1(zna!)-269(P)28(ok)28(or)1(ne)-270(ciel\\246)-270(d)1(w)-1(i)1(e)-270(m)-1(atk)1(i)-269(s)-1(sie)-1(.)1(..)-269({)-270(d)1(orzuci\\252)-270(S)1(z)-1(y)1(m)-1(on)-269(p)-27(o)28(w)27(a\\273ni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(W)-333(w)27(asz)-1(e)-334(r)1(\\246)-1(ce)-1(,)-333(matk)28(o!)]TJ 0 -13.549 Td[({)-332(Pij)1(c)-1(i)1(e)-333(z)-333(Bogie)-1(m,)-332(ale\\261)-1(cie)-333(j)1(e)-1(sz)-1(cze)-333(nie)-332(rz)-1(ekli)1(,)-332(kto)-332(taki?{)-332(p)-28(o)28(wiedzia\\252a,)-332(\\273)-1(e)-333(to)]TJ -27.879 -13.55 Td[(ni)1(e)-1(ob)28(y)1(c)-1(za)-56(j)1(nie)-334(wiedzie\\242)-334(nap)1(rz\\363)-28(d,)-333(n)1(ie)-334(o)-28(d)-332(dz)-1(i)1(e)-1(w)28(os)-1(\\252\\246b)-28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(Kto?)-334(A)-333(sam)-334(c)-1(i)-333(Bory)1(na!)-333({)-333(w)-1(y)1(krzykn)1(\\241\\252)-334(p)1(rz)-1(ec)27(h)28(y)1(la)-56(j)1(\\241c)-334(kielisze)-1(k.)]TJ 0 -13.549 Td[({)-333(Star)1(y!)-333(Wdo)28(wiec)-1(!)-333({)-333(w)-1(y)1(krzykn)1(\\246)-1(\\252a)-333(nib)29(y)-333(z)-334(z)-1(a)28(w)28(o)-28(dem)-1(.)]TJ 0 -13.549 Td[({)-341(Star)1(y!)-341(Nie)-341(obra\\273a)-56(j)1(c)-1(i)1(e)-342(P)28(an)1(a)-341(B)-1(oga!)-341(S)1(tary)84(,)-341(a)-341(s)-1(\\241d)-340(m)-1(i)1(a\\252)-342(j)1(e)-1(sz)-1(cz)-1(e)-341(ni)1(e)-1(d)1(a)27(wn)1(o)-342(o)]TJ -27.879 -13.549 Td[(dziec)27(k)28(o!)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(i)1(no)-333(\\273)-1(e)-334(to)-333(n)1(ie)-334(jego)-333(b)28(y\\252o.)]TJ 0 -13.55 Td[({)-291(J)1(ak\\273)-1(e,)-290(go)-1(sp)-27(o)-28(dar)1(z)-291(taki)-290(i)-291(zada)28(w)28(a\\252b)28(y)-291(si\\246)-291(z)-291(p)1(ie)-1(r)1(w)-1(sz\\241)-291(lepsz)-1(\\241!)-290(Pi)1(jcie)-1(,)-290(matk)28(o...)]TJ 0 -13.549 Td[({)-375(Wyp)1(i\\242)-376(b)29(ym)-376(wyp)1(i\\252a,)-375(in)1(o)-376(\\273e)-376(t)1(o)-376(wd)1(o)27(wiec)-1(,)-374(a)-376(starem)27(u)-374(pr\\246dzej)-375(z)-376(b)1(rze)-1(ga)-375(do)]TJ -27.879 -13.549 Td[(Abr)1(am)-1(k)56(a)-333(na)-333(pi)1(w)27(o,)-333(to)-333(p)-28(ot)1(e)-1(m)-334(co?...D)1(z)-1(iec)-1(i)-333(mac)-1(o)-27(c)27(h\\246)-333(w)-1(y)1(\\273)-1(en\\241)-333(i..)1(.)]TJ 27.879 -13.549 Td[({)-333(M\\363)28(wili)-333(Maciej,)-333(c)-1(ob)29(y)-334(b)-27(ez)-334(z)-1(ap)1(isu)-333(nie)-333(b)28(y\\252o...)-333({)-333(mruk)1(n\\241\\252)-333(Szym)-1(on)1(.)]TJ 0 -13.549 Td[({)-333(Przed)-333(\\261)-1(lu)1(b)-27(e)-1(m)-334(c)28(h)28(yb)1(a!)]TJ 0 -13.55 Td[(Dzie)-1(w)28(os\\252)-1(\\246b)28(y)-299(zm)-1(il)1(kli,)-299(d)1(opiero)-299(p)-27(o)-300(c)28(h)28(w)-1(i)1(li)-299(w)27(\\363)-55(jt)-299(nal)1(a\\252)-300(n)1(o)27(wy)-299(kielisze)-1(k)-299(i)-299(z)-1(wr)1(\\363)-28(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(n)1(im)-334(d)1(o)-334(Jagn)29(y)83(.)]TJ\nET\nendstream\nendobj\n350 0 obj <<\n/Type /Page\n/Contents 351 0 R\n/Resources 349 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n349 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n354 0 obj <<\n/Length 9691      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(106)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(8.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-412(Nap)1(ij)-411(s)-1(i)1(\\246)-1(,)-411(Jagu\\261,)-412(n)1(apij)1(!)-412(Ch)1(\\252)-1(op)1(a)-412(ci)-412(r)1(aim)27(y)-411(kiej)-411(d\\241b,)-411(pan)1(i\\241)-412(se)-412(b)-28(\\246dzies)-1(z)-412(i)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(yn)1(i\\241)-334(n)1(a)-333(w)-1(i)1(e)-1(\\261)-334(ca\\252\\241,)-333(no,)-333(w)-334(t)28(w)28(o)-56(j)1(e)-334(r\\246c)-1(e,)-333(Jagu\\261,)-333(nie)-333(w)-1(st)28(yda)-55(j)-333(si\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[(W)84(aha\\252a)-298(s)-1(i\\246,)-298(c)-1(ze)-1(r)1(wie)-1(n)1(i\\252a,)-298(o)-28(dwraca\\252a)-298(do)-298(\\261)-1(cian)28(y)84(,)-298(ale)-299(w)-299(k)28(o\\253)1(c)-1(u)1(,)-298(przys\\252oniwsz)-1(y)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(z)-334(zapask)55(\\241,)-333(u)1(pi\\252a)-333(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-334(i)-333(wyla\\252a)-333(res)-1(zt\\246)-334(n)1(a)-334(p)-27(o)-28(d)1(\\252)-1(og\\246...)]TJ 27.879 -13.549 Td[(Wtedy)-312(kielisz)-1(ek)-313(ob)1(s)-1(ze)-1(d)1(\\252)-313(ws)-1(zystkic)27(h)-312(p)-27(o)-313(k)28(olei.)-313(S)1(tara)-313(p)-27(o)-28(d)1(a\\252a)-313(c)27(h)1(le)-1(b)1(,)-313(s\\363l,)-313(a)-312(w)]TJ -27.879 -13.55 Td[(k)28(o\\253cu)-333(i)-333(w)28(\\246)-1(d)1(z)-1(on)1(e)-1(j)1(,)-334(suc)28(hej)-333(kie\\252basy)-333(na)-333(przegryzk)28(\\246)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-336(par)1(\\246)-337(razy)-336(z)-337(rz\\246)-1(d)1(u,)-336(a\\273)-337(o)-27(c)-1(zy)-336(p)-28(o)-55(ja\\261ni)1(a\\252)-1(y)-336(wsz)-1(ystki)1(m)-337(i)-336(j\\246z)-1(y)1(ki)-336(s)-1(i)1(\\246)-337(roz-)]TJ -27.879 -13.549 Td[(wi\\241za\\252)-1(y)84(.)-380(Jagna)-381(i)1(no)-381(u)1(c)-1(i)1(e)-1(k\\252a)-381(d)1(o)-381(k)28(omory)84(,)-381(b)-27(o)-381(n)1(ie)-381(wiada)-381(cze)-1(m)28(u)-381(c)28(h)28(yci\\252)-381(j\\241)-380(p\\252acz)-1(,)-380(\\273)-1(e)]TJ 0 -13.549 Td[(a\\273)-334(p)1(rze)-1(z)-334(\\261c)-1(i)1(an\\246)-334(s\\252yc)27(h)1(a\\242)-334(b)28(y\\252o)-333(c)27(h)1(lip)1(anie.)]TJ 27.879 -13.549 Td[(St)1(ara)-333(c)27(hcia\\252a)-333(do)-333(niej)-333(bi)1(e)-1(\\273y\\242,)-334(al)1(e)-334(j\\241)-333(w)28(\\363)-56(jt)-333(zatrzyma\\252.)]TJ 0 -13.549 Td[({)-321(I)-320(c)-1(i)1(e)-1(le)-321(b)-27(ec)-1(zy)83(,)-320(kiej)-320(je)-321(o)-28(d)-320(mac)-1(i)-320(o)-28(d)1(s)-1(ad)1(z)-1(a)-55(j\\241..)1(.)-321(zwyk\\252a)-321(to)-320(rze)-1(cz)-1(.)-320(Nie)-321(w)28(e)-321(\\261)-1(wiat)]TJ -27.879 -13.55 Td[(id)1(z)-1(ie,)-385(nie)-385(na)-385(dru)1(g\\241)-386(wie\\261)-1(,)-385(to)-385(s)-1(i)1(\\246)-386(z)-386(ni\\241)-385(jesz)-1(cz)-1(e)-386(cies)-1(zy\\242)-386(b)-27(\\246)-1(d)1(z)-1(iecie)-1(.)1(..)-385(Nie)-386(b)-27(\\246)-1(d)1(z)-1(ie)-386(j)1(e)-1(j)]TJ 0 -13.549 Td[(ni)1(jak)56(a)-333(krzywda,)-333(to)-333(ja,)-333(w)28(\\363)-56(jt)1(,)-334(w)28(ama)-334(m\\363)28(wi\\246)-334({)-333(w)-1(i)1(e)-1(rzcie)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(in)1(om)-334(s)-1(e)-333(m)27(y\\261la\\252a)-333(z)-1(a)28(wdy)84(,)-333(w)-1(n)29(ucz)-1(k)28(\\363)28(w)-334(si\\246)-334(d)1(o)-28(cz)-1(ek)55(am)-333(na)-333(p)-28(o)-27(c)-1(iec)27(h)1(\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Nie)-334(tu)1(rbu)1(jcie)-334(si\\246,)-333(je)-1(szc)-1(ze)-334(s)-1(i)1(\\246)-334(\\273)-1(n)1(iw)28(a)-334(n)1(ie)-334(zac)-1(zn\\241,)-333(a)-333(ju)1(\\273)-334(pi)1(e)-1(rwsz)-1(y)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-313(P)28(an)-313(J)1(e)-1(zus)-313(to)-313(t)27(y)1(lk)28(o)-313(wie)-314(p)1(rz)-1(\\363)-27(dzi,)-313(ni)1(e)-314(m)28(y)83(,)-313(gr)1(z)-1(es)-1(zni!)-312(Z)-1(ap)1(ili\\261m)27(y)84(,)-313(p)1(ra)28(w)-1(d)1(a...)-313(a)]TJ -27.879 -13.55 Td[(mnie)-333(tak)-333(jak)28(o\\261)-334(\\273a\\252o\\261)-1(li)1(w)-1(i)1(e)-334(na)-333(s)-1(ercu)-333(,)-333(kiej)-333(na)-333(p)-27(o)-28(c)27(h)1(o)27(wku)1(...)]TJ 27.879 -13.549 Td[({)-370(I)-369(nie)-370(d)1(z)-1(i)1(w)27(ota,)-369(jedy)1(nacz)-1(k)56(a)-370(z)-370(d)1(om)27(u)1(,)-370(to)-369(w)27(a)-55(ju)-369(si\\246)-370(ju)1(\\273)-370(z)-1(a)-369(ni\\241)-369(c)-1(n)1(i...)-369(Jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(\\271dzie)-1(b)1(k)28(o,)-375(n)1(a)-375(f)1(ras)-1(u)1(nek!)-374(Wiec)-1(ie,)-375(p)-27(\\363)-55(jdziem)-375(ws)-1(zys)-1(t)1(kie)-375(do)-374(k)55(ar)1(c)-1(zm)27(y)84(,)-375(b)-27(o)-375(mi)-374(ju)1(\\273)-376(an)1(o)]TJ 0 -13.549 Td[(w)28(\\363)-28(dki)-333(zbr)1(ak\\252o,)-333(a)-334(i)-333(tam)-333(pan)-333(m\\252o)-28(dy)-333(ki)1(e)-1(j)-333(n)1(a)-334(w)28(\\241)-28(gli)1(k)55(ac)28(h)-333(wyc)-1(ze)-1(k)1(uj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(W)-333(k)55(ar)1(c)-1(zm)-1(i)1(e)-334(to)-333(z)-1(r)1(\\246)-1(k)28(o)28(win)28(y)-333(b)-27(\\246)-1(d)1(z)-1(iem)27(y)-333(o)-28(d)1(pr)1(a)27(wia\\242?)]TJ 0 -13.55 Td[({)-333(P)28(o)-333(s)-1(tar)1(e)-1(m)28(u,)-333(jak)-333(o)-55(jce)-334(nasi)-333(robi)1(li,)-333(ja,)-333(w)28(\\363)-56(j)1(t,)-333(w)27(ama)-333(to)-334(r)1(z)-1(ek\\252e)-1(m)-333({)-334(wierzc)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Kob)1(ie)-1(t)28(y)-333(si\\246)-334(\\271dziebk)28(o)-333(przy)28(o)-28(d)1(z)-1(ia\\252y)-333(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(iej)-333(i)-333(w)-1(n)1(e)-1(t)-333(wyc)27(h)1(o)-28(d)1(z)-1(il)1(i.)]TJ 0 -13.549 Td[({)-288(A)-287(c)27(h)1(\\252opaki)-287(to)-287(os)-1(tan)1(\\241?)-288(Si)1(os)-1(tr)1(z)-1(yn)1(e)-288(z)-1(m\\363)28(w)-1(i)1(n)28(y)83(,)-287(to)-287(i)-288(l)1(a)-288(n)1(ic)27(h)-287(uciec)27(h)1(a)-288({)-288(zau)28(w)28(a-)]TJ -27.879 -13.549 Td[(\\273y\\252)-334(w)28(\\363)-56(j)1(t,)-333(\\273)-1(e)-333(to)-334(p)1(arobk)1(i)-333(\\273)-1(a\\252osne)-334(min)28(y)-333(mieli)-333(i)-333(p)-28(ogl\\241d)1(ali)-333(na)-333(ma\\242)-334(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(ru)1(dno)-333(d)1(om)-334(na)-333(b)-27(os)-1(ki)1(e)-1(j)-333(Op)1(atrzno\\261c)-1(i)-333(osta)28(wi\\242)-1(.)]TJ 0 -13.55 Td[({)-333(Przyzwijcie)-334(an)1(o)-334(Agat\\246)-333(o)-28(d)-333(K\\252\\246b)-28(\\363)28(w,)-333(to)-334(p)1(rzypi)1(ln)28(uj)1(e)-1(.)]TJ 0 -13.549 Td[({)-426(Agata)-425(ju)1(\\273)-426(na)-425(\\273)-1(ebry)-425(p)-27(os)-1(z\\252a.)-426(Za)28(w)27(o\\252a)-425(s)-1(i\\246)-426(k)28(ogo)-425(p)-28(o)-425(dr)1(o)-28(dze)-1(.)-425(Cho)-28(d)1(\\271)-1(t)1(a,)-426(J\\246-)]TJ -27.879 -13.549 Td[(dr)1(z)-1(y)1(c)27(h,)-428(i)-428(t)28(y)84(,)-429(S)1(z)-1(y)1(m)-1(ek,)-428(a)-428(k)56(ap)-28(ot)28(y)-428(w)28(e)-1(\\271ta;)-428(c)-1(\\363\\273)-429(t)1(o)-429(j)1(ak)-428(te)-429(dziad)1(aki)-428(i\\261)-1(\\242)-428(c)27(h)1(c)-1(eta?)-1(.)1(..)-428(A)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(h)-344(si\\246)-344(in)1(o)-344(kt\\363r)1(e)-1(n)-343(spij)1(e)-1(.)1(..)-344(t)1(o)-344(p)-27(opami\\246ta.)-344(Kr)1(o)28(w)-1(y)-343(jes)-1(zcz)-1(e)-344(n)1(ie)-344(obrz\\241dzone,)-343(\\261)-1(win)1(i)]TJ 0 -13.549 Td[(trza)-333(k)55(ar)1(to\\015i)-333(u)1(t\\252uc)-334({)-333(bacz)-1(cie)-334(o)-333(t)28(ym.)]TJ 27.879 -13.55 Td[({)-442(Bac)-1(zym,)-442(m)-1(atu)1(lu,)-441(bacz)-1(ym!)-442({)-442(sz)-1(eptali)-442(t)1(rw)27(o\\273ni)1(e)-1(,)-442(c)28(ho)-28(\\242)-442(c)27(h)1(\\252)-1(op)29(y)-442(b)28(y\\252y)-442(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(p)-27(o)27(w)28(a\\252\\246)-243(i)-242(rozros\\252)-1(e)-242(jak)28(o)-243(t)1(e)-243(grusze)-243(na)-242(m)-1(i)1(e)-1(d)1(z)-1(ac)27(h)1(,)-242(ale)-243(s\\252)-1(u)1(c)27(h)1(ali)-242(s)-1(i\\246)-243(matki)-242(ki)1(e)-1(j)-242(wyr)1(os)-1(tki)1(,)]TJ 0 -13.549 Td[(b)-27(o)-310(ic)28(h)-309(\\273)-1(elazn\\241)-310(r)1(\\246)-1(k)56(\\241)-309(z)-1(a)-309(\\252b)28(y)-309(trzym)-1(a\\252a,)-309(a)-309(jak)-309(b)28(y\\252o)-309(p)-28(otr)1(z)-1(a,)-309(to)-309(c)27(ho)-27(\\242)-1(b)28(y)-309(i)-309(p)-28(o)-309(s)-1(t)1(o\\252)-1(k)1(u,)-309(a)]TJ 0 -13.549 Td[(do)-333(ku)1(d\\252\\363)28(w)-334(si\\246g\\252)-1(a)-333(i)-333(p)-27(o)-334(p)29(ys)-1(k)56(ac)27(h)-332(s)-1(p)1(ra\\252a,)-333(a)-334(p)-27(os\\252)-1(u)1(c)27(h)-333(m)28(usia\\252)-334(b)29(y\\242)-334(i)-333(u)28(w)28(a\\273)-1(an)1(ie.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(l)1(i)-334(d)1(o)-333(k)55(ar)1(c)-1(zm)27(y)84(.)]TJ 0 -13.549 Td[(No)-28(c)-399(j)1(u\\273)-399(b)28(y\\252a)-398(c)-1(iemna,)-398(\\273)-1(e)-399(c)27(h)1(o)-28(\\242)-399(ok)28(o)-399(wyk)28(ol,)-398(zw)-1(y)1(c)-1(za)-56(j)1(nie)-399(w)-399(p)1(luc)28(h)28(y)-399(j)1(e)-1(sienn)1(e)-1(.)]TJ -27.879 -13.55 Td[(Wiat)1(r)-366(s)-1(ze)-1(d)1(\\252)-366(g\\363r\\241)-366(i)-366(bi)1(\\252)-366(w)-367(cz)-1(u)1(b)28(y)-366(d)1(rz)-1(ew,)-366(\\273)-1(e)-366(in)1(o)-367(si\\246)-366(k)28(ole)-1(b)1(a\\252y)-366(i)-366(a\\273)-366(k\\252ad\\252y)-366(n)1(a)-367(p)1(\\252ot)28(y)]TJ 0 -13.549 Td[(z)-429(s)-1(zumem)-1(;)-428(s)-1(ta)28(w)-429(h)29(ucz)-1(a\\252)-429(i)-428(tak)-429(si\\246)-429(cie)-1(p)1(a\\252,)-429(\\273e)-429(bry)1(z)-1(gi)-428(roz)-1(b)1(ite)-429(w)-429(p)1(ian\\246)-429(p)1(ada\\252y)-429(n)1(a)]TJ 0 -13.549 Td[(\\261ro)-28(d)1(e)-1(k)-333(dr)1(ogi)-333(i)-333(nierzadk)28(o)-333(c)27(hl)1(usta\\252y)-333(na)-333(t)28(w)27(arze)-334(id)1(\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(W)-294(k)56(arcz)-1(mie)-295(te\\273)-295(widn)1(o)-294(nie)-295(b)29(y\\252o,)-294(a)-295(wiater)-294(pr)1(z)-1(ez)-295(wygni)1(e)-1(cion\\241)-294(sz)-1(yb)1(k)28(\\246)-295(z)-1(a)28(wie-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(,)-333(a\\273)-333(ta)-334(l)1(am)-1(p)1(k)55(a)-333(na)-333(sz)-1(n)28(u)1(rku)-332(z)-1(a)-333(s)-1(zyn)1(kw)27(ase)-1(m)-333(k)28(ole)-1(b)1(a\\252a)-334(si\\246)-334(k)1(ie)-1(j)-332(kwiat)-333(z)-1(\\252ot)28(y)83(.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-329(si\\246)-329(d)1(o)-329(n)1(ic)27(h)-328(r)1(z)-1(u)1(c)-1(i)1(\\252)-329(wita\\242,)-328(a)-329(ca\\252o)27(w)28(a\\242,)-329(a)-328(ob)1(\\252)-1(ap)1(ia\\242)-329(z)-328(gor\\241c)-1(o\\261c)-1(i)1(\\241,)-328(\\273)-1(e)-329(to)]TJ -27.879 -13.549 Td[(zm)-1(iar)1(k)28(o)28(w)27(a\\252,)-333(i\\273)-334(Jagu)1(\\261)-334(jak)1(b)28(y)-333(ju)1(\\273)-334(jego.)]TJ\nET\nendstream\nendobj\n353 0 obj <<\n/Type /Page\n/Contents 354 0 R\n/Resources 352 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n352 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n357 0 obj <<\n/Length 8305      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(107)]TJ -330.353 -35.866 Td[({)-291(A)-290(P)28(an)-291(J)1(e)-1(zus)-291(rze)-1(k)1(\\252)-1(:)-290(w)27(e\\271)-291(s)-1(e,)-291(r)1(obaku)1(,)-291(n)1(iew)-1(i)1(as)-1(t\\246,)-291(\\273e)-1(b)29(y)-291(ci)-291(si\\246)-1(,)-290(c)27(h)28(u)1(dziaku)1(,)-291(n)1(ie)]TJ -27.879 -13.549 Td[(cni\\252o)-333(s)-1(ame)-1(m)28(u.)-333(Ame)-1(n)1(!)-333({)-334(b)-27(e\\252k)28(ota\\252)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273y)83(,)-267(ale)-268(\\273e)-1(,)-267(wi\\246)-1(ce)-1(j)-267(go)-28(d)1(z)-1(i)1(n)28(y)-268(p)-27(opi)1(ja\\252,)-267(to)-268(ju)1(\\261)-1(ci,)-267(\\273)-1(e)-268(w)-268(j)1(\\246)-1(zyku)-267(n)1(i)-268(w)-268(n)1(ogac)27(h)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(n)29(y)-333(ju\\273)-333(nie)-334(b)29(y\\252.)]TJ 27.879 -13.549 Td[(Zaraz)-352(te)-1(\\273)-352(na)-352(sz)-1(y)1(nkw)28(as)-1(i)1(e)-353(\\233yd)-352(p)-27(osta)28(w)-1(i)1(\\252)-353(ar)1(ak)-352(i)-352(s\\252)-1(o)-27(dk)56(\\241,)-352(i)-352(ase)-1(n)1(c)-1(j)1(\\246)-1(,)-352(a)-352(d)1(o)-352(te)-1(go)]TJ -27.879 -13.55 Td[(\\261le)-1(d)1(z)-1(i)1(e)-1(,)-333(pl)1(ac)-1(ek)-333(z)-334(s)-1(zafr)1(anem)-334(i)-333(jak)1(ie)-1(\\261)-333(w)-1(y)1(m)27(y\\261lne)-333(kuki)1(e)-1(\\252ki)-333(z)-334(maki)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-381(Jedzta,)-381(p)1(ij)1(ta,)-381(lu)1(dzie)-381(k)28(o)-28(c)27(h)1(ane,)-381(b)1(rat)28(y)-381(r)1(o)-28(dzone,)-381(k)1(rze)-1(\\261c)-1(ij)1(an)28(y)-380(w)-1(i)1(e)-1(rn)1(e)-1(!)-380({)-381(za-)]TJ -27.879 -13.549 Td[(pr)1(as)-1(za\\252)-398(Jam)27(b)1(ro\\273y)83(.)-398({)-398(Mi)1(a\\252e)-1(m)-398(i)-398(ja)-398(k)28(ob)1(ie)-1(t)1(\\246)-1(,)-398(in)1(o)-398(ju)1(\\273)-399(ca\\252kiem)-399(n)1(ie)-399(p)-27(omn\\246)-398(gdzie)-1(?..)1(.)]TJ 0 -13.549 Td[(Wid)1(z)-1(i)-249(mi)-249(si\\246)-1(,)-249(\\273e)-250(w)28(e)-250(F)84(ran)1(c)-1(j)1(i...)-249(n)1(ie)-1(,)-248(w)-250(Itali)1(i)-249(to)-250(b)29(y\\252o,)-249(nie...)-249(al)1(e)-1(m)-249(te)-1(r)1(az)-250(osta\\252)-250(sierot\\241..)1(.)]TJ 0 -13.549 Td[(P)28(o)28(wiedam)-334(w)28(am)-1(,)-333(\\273e)-334(co)-334(starsz)-1(y)-333(k)1(rz)-1(y)1(kn\\241\\252:)-333(Szlu)1(s)-1(u)1(j!)]TJ 27.879 -13.549 Td[({)-333(P)1(ijcie)-333(n)1(o)-1(,)-332(lu)1(dzie)-1(!)-332(Pi)1(e)-1(tr)1(z)-1(e,)-333(zac)-1(zyn)1(a)-56(jcie)-333({)-333(p)1(rze)-1(r)1(w)27(a\\252)-333(m)28(u)-332(B)-1(or)1(yna,)-332(pr)1(z)-1(yn)1(i\\363s\\252)]TJ -27.879 -13.55 Td[(za)-393(ca\\252\\241)-393(z\\252ot\\363)28(wk)28(\\246)-393(k)56(arme)-1(lk)28(\\363)28(w)-392(i)-392(wt)27(y)1(k)55(a\\252)-392(je)-392(Jagusi)-392(w)-393(gar)1(\\261)-1(cie.)-392({)-393(Na\\261c)-1(i)1(,)-392(Jagu\\261,)-392(s)-1(\\252o-)]TJ 0 -13.549 Td[(dziu)1(s)-1(ie\\253k)1(ie)-334(s\\241,)-334(n)1(a\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(.)1(..)-333(s)-1(zk)28(o)-28(d)1(ujec)-1(i)1(e)-334(s)-1(i)1(\\246)-1(..)1(.)-333({)-334(wzdraga\\252a)-333(s)-1(i)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-274(Nie)-275(b)-27(\\363)-56(j)-274(si\\246)-1(.)1(..)-274(s)-1(ta\\242)-274(m)-1(n)1(ie)-275(n)1(a)-275(to,)-274(ob)1(ac)-1(zys)-1(z)-274(s)-1(ama...)-274(na\\261ci...a)-274(j)1(u\\273)-275(b)28(y)-274(la)-274(cie)-1(b)1(ie)-275(i)]TJ -27.879 -13.549 Td[(pt)1(as)-1(iego)-287(m)-1(l)1(e)-1(k)56(a)-287(nal)1(az)-1(\\252..)1(.)-287(ju)1(\\273)-288(ci)-287(ta)-287(u)-287(mni)1(e)-288(kr)1(z)-1(ywd)1(y)-287(ni)1(jakiej)-287(n)1(ie)-287(b)-28(\\246dzie...)-287({)-287(i)-287(zac)-1(z\\241\\252)]TJ 0 -13.55 Td[(j\\241)-337(wp)-27(\\363\\252)-338(b)1(ra\\242)-338(a)-337(n)1(iew)27(oli\\242)-337(do)-337(p)1(ic)-1(i)1(a)-338(i)-337(j)1(ad\\252a.)-337(Jagn)1(a)-337(s)-1(p)-27(ok)28(o)-56(j)1(nie)-337(w)-1(szys)-1(tk)28(o)-337(p)1(rzyjmo)28(w)27(a-)]TJ 0 -13.549 Td[(\\252a,)-387(z)-1(i)1(m)-1(n)1(o)-388(i)-387(ob)-27(o)-56(j)1(\\246)-1(tn)1(ie,)-387(jakb)28(y)-387(to)-387(n)1(ie)-388(jej)-387(zm)-1(\\363)28(win)28(y)-387(b)28(y)1(\\252y)-388(d)1(z)-1(i)1(s)-1(ia)-55(j.)-387(Jeno)-387(t)28(ylk)28(o)-387(jedn)1(o)]TJ 0 -13.549 Td[(p)-27(om)27(y\\261la\\252a,)-454(cz)-1(y)-453(s)-1(tar)1(y)-454(te)-454(k)28(orale,)-454(o)-454(kt\\363r)1(yc)27(h)-453(na)-454(j)1(armarku)-453(w)-1(sp)-27(om)-1(in)1(a\\252,)-454(da)-453(prze)-1(d)]TJ 0 -13.549 Td[(\\261lub)-27(e)-1(m.)]TJ 27.879 -13.549 Td[(G\\246s)-1(to)-414(p)1(i\\242)-415(p)-27(o)-28(c)-1(z\\246)-1(l)1(i,)-414(jeden)-414(p)-28(o)-414(dr)1(ugim)-414(i)-414(na)-414(prze)-1(k)1(\\252adank)28(\\246)-414(arak)-414(z)-1(e)-414(s)-1(\\252o)-28(d)1(k)55(\\241,)-414(i)]TJ -27.879 -13.55 Td[(ws)-1(zysc)-1(y)-474(wraz)-475(m\\363)28(wi\\242)-475(zac)-1(z\\246)-1(li)1(,)-474(na)28(w)27(et)-474(Dom)-1(i)1(nik)28(o)28(w)28(a)-475(p)-27(o)-28(d)1(pi\\252a)-474(s)-1(e)-475(n)1(iez)-1(gor)1(z)-1(ej)-474(i)-474(n)28(u\\273)]TJ 0 -13.549 Td[(wyw)28(o)-28(dzi\\242)-431(r)1(\\363\\273)-1(n)1(o\\261)-1(ci,)-430(n)28(u)1(\\273)-431(pr)1(a)27(wi\\242,)-430(a\\273)-431(si\\246)-431(w)28(\\363)-56(j)1(t)-430(dziw)28(o)27(w)28(a\\252,)-430(\\273)-1(e)-430(tak)56(a)-431(m\\241dr)1(a)-430(k)28(obieta)]TJ 0 -13.549 Td[(jest.)]TJ 27.879 -13.549 Td[(Sy)1(no)28(wie)-445(s)-1(i)1(\\246)-445(te)-1(\\273)-445(p)-27(opil)1(i,)-444(b)-28(o)-444(Jam)27(b)1(ro\\273)-1(y)84(,)-444(to)-445(w)28(\\363)-56(j)1(t)-445(p)1(rz)-1(epi)1(jali)-444(do)-444(nic)28(h)-444(g\\246)-1(sto)-445(i)]TJ -27.879 -13.549 Td[(zac)27(h\\246c)-1(al)1(i.)]TJ 27.879 -13.55 Td[({)-333(Pij)1(ta,)-333(c)27(h)1(\\252)-1(op)1(aki,)-333(zm)-1(\\363)28(win)28(y)-333(to)-333(Jagn)28(y)84(,)-333(pij)1(ta...)]TJ 0 -13.549 Td[({)-482(Bac)-1(zym)-482(to,)-482(baczym)-483({)-482(r)1(az)-1(em)-482(o)-28(dp)-27(o)28(w)-1(i)1(adali)-481(i)-482(c)27(h)1(c)-1(ieli)-482(Jam)28(br)1(o\\273)-1(a)-482(w)-482(r\\246k)28(\\246)]TJ -27.879 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\242)-1(,)-279(a\\273)-280(w)-280(k)28(o\\253)1(c)-1(u)-279(Domini)1(k)28(o)27(w)28(a)-280(o)-27(dci\\241)-28(gn)1(\\246)-1(\\252a)-280(Bory)1(n\\246)-280(p)-27(o)-28(d)-279(okn)1(o)-280(i)-279(z)-1(ar)1(az)-280(do)-280(n)1(iego,)]TJ 0 -13.549 Td[(pr)1(os)-1(to)-333(z)-334(mos)-1(t)1(u:)]TJ 27.879 -13.549 Td[({)-333(W)83(asz)-1(a)-333(Jagu)1(s)-1(ia,)-333(Macieju)1(,)-333(w)27(asz)-1(a.)]TJ 0 -13.55 Td[({)-333(B)-1(\\363g)-333(w)28(am)-334(z)-1(ap)1(\\252a\\242)-1(,)-333(matk)28(o,)-333(z)-1(a)-333(c\\363rk)28(\\246)-1(.)-333({)-333(U\\252api)1(\\252)-334(j\\241)-333(za)-334(sz)-1(y)1(j\\246)-334(i)-333(ca\\252o)27(w)28(a\\252.)]TJ 0 -13.549 Td[({)-333(Obi)1(e)-1(cali\\261c)-1(ie)-333(z)-1(ap)1(is)-334(zrobi)1(\\242)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(Zapis!)-333(A)-334(co)-333(p)-28(o)-333(z)-1(ap)1(isie)-1(,)-333(co)-334(mo)-55(je,)-334(t)1(o)-334(i)-333(j)1(e)-1(j)1(...)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(\\273e)-1(b)29(y)-333(to)-334(\\261m)-1(i)1(a\\252e)-334(ok)28(o)-334(mia\\252a)-333(pr)1(z)-1(ed)-333(pasierbami,)-333(\\273e)-1(b)28(y)-333(n)1(ie)-334(wykl)1(inal)1(i!)]TJ 0 -13.549 Td[({)-333(W)83(ar)1(a)-334(im)-333(o)-28(d)-333(mo)-56(j)1(e)-1(go!)-333(Wsz)-1(y)1(s)-1(tk)28(o)-333(mo)-56(je)-333({)-334(to)-333(i)-333(Jagusin)1(e)-334(ws)-1(zystk)28(o.)]TJ 0 -13.549 Td[({)-411(B\\363g)-411(w)27(am)-411(z)-1(ap)1(\\252a\\242)-1(,)-411(al)1(e)-412(miark)1(ujcie)-411(ino,)-410(\\273)-1(e)-411(to)-411(s)-1(tar)1(s)-1(i)-411(\\271dziebk)28(o)-411(j)1(e)-1(ste)-1(\\261c)-1(i)1(e)-1(,)-411(a)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-334(i)-333(tak)-333(ku)1(\\273)-1(d)1(e)-1(n)-332(\\261)-1(mierteln)28(y)84(,)-334(b)-27(o)-333(to)]TJ 27.879 -13.549 Td[(\\221mier\\242)-334(n)1(ie)-334(wyb)1(ie)-1(r)1(a,)-333(Dz)-1(i)1(\\261)-334(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)56(a)-333({)-334(j)1(utr)1(o)-334(j)1(agni\\246)-334(R\\363)28(wno)-333(jej)-333(p)-27(opad)1(nie...)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-1(m)-334(k)1(rze)-1(pk)1(i,)-333(z)-1(e)-333(dw)28(adzie)-1(\\261c)-1(i)1(a)-334(r)1(ok)28(\\363)27(w)-333(s)-1(t)1(rz)-1(y)1(m)-1(am)-333({)-334(n)1(ie)-334(b)-27(\\363)-56(j)1(c)-1(ie)-333(s)-1(i\\246!)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-1(b)-27(o)-55(ja)-333(w)-1(i)1(lc)-1(y)-333(zjedli)1(.)]TJ 0 -13.549 Td[({)-268(T)84(akim)-268(r)1(ad,)-267(\\273)-1(e)-268(m\\363)28(w)27(cie,)-268(cz)-1(ego)-268(c)28(hce)-1(cie.)-268(Ch)1(c)-1(ec)-1(ie,)-267(b)28(ym)-268(zapisa\\252)-268(te)-267(trzy)-268(morgi)]TJ -27.879 -13.55 Td[(k)28(o\\252o)-333(\\212uk)56(as)-1(zo)28(w)-1(y)1(c)27(h?)]TJ 27.879 -13.549 Td[({)-326(Dobr)1(a)-327(i)-326(p)1(s)-1(u)-326(m)28(uc)27(h)1(a,)-326(kiej)-326(g\\252o)-28(dn)29(y)-326({)-327(m)28(y)-326(ta)-327(n)1(ieg\\252)-1(o)-27(dn)1(e)-1(.)-326(Na)-326(Jagusi\\246)-327(p)-27(o)-326(o)-56(jcu)]TJ\nET\nendstream\nendobj\n356 0 obj <<\n/Type /Page\n/Contents 357 0 R\n/Resources 355 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n355 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n360 0 obj <<\n/Length 8893      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(108)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(8.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(wypad)1(ni)1(e)-479(p)1(i\\246)-1(\\242)-478(i)-478(z)-478(morga)-478(lasu..)1(.)-478(zapisz)-1(cie)-478(i)-478(wy)-478(sz)-1(e\\261)-1(\\242.)-478(T)83(e)-478(s)-1(ze\\261)-1(\\242)-478(m)-1(or)1(g\\363)27(w)-478(p)1(rzy)]TJ 0 -13.549 Td[(dr)1(o)-28(dze,)-334(gd)1(z)-1(i)1(e)-1(\\261c)-1(i)1(e)-334(to)-334(l)1(ato\\261)-334(mie)-1(l)1(i)-333(k)55(ar)1(to\\015e.)]TJ 27.879 -13.549 Td[({)-333(Na)-56(j)1(le)-1(p)1(s)-1(ze)-334(p)-27(ole)-334(mo)-56(j)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(Jagu)1(s)-1(ia)-333(to)-333(wybierek,)-333(a)-333(nie)-334(n)1(a)-56(j)1(lepsz)-1(a)-333(w)27(e)-333(w)-1(si!)]TJ 0 -13.549 Td[({)-386(Prze)-1(ciec)27(h)-386(\\273e)-387(tak,)-386(b)-28(ez)-387(to)-386(i)-387(sw)28(at\\363)27(w)-386(p)-28(os\\252a\\252e)-1(m,)-386(ale)-387(b)-27(\\363)-56(j)1(c)-1(ie)-387(si\\246)-387(Boga,)-386(s)-1(ze)-1(\\261\\242)]TJ -27.879 -13.55 Td[(morg\\363)28(w)-327(to)-327(k)55(ar)1(w)27(as)-327(p)-27(o)-1(l)1(a,)-327(c)-1(a\\252e)-327(gos)-1(p)-27(o)-28(d)1(arst)28(w)27(o.)-327(Co)-327(b)28(y)-326(dz)-1(i)1(e)-1(ci)-327(p)-27(o)27(wiedzia\\252y!)-326({)-327(J\\241\\252)-327(s)-1(i\\246)]TJ 0 -13.549 Td[(dr)1(apa\\242)-319(p)-27(o)-318(g\\252o)27(wie,)-318(b)-27(o)-319(go)-318(\\273a\\252)-1(o\\261\\242)-319(u)1(\\252api\\252a)-318(z)-1(a)-318(se)-1(rce;)-319(j)1(ak\\273e)-1(,)-318(t)28(yle)-318(p)-28(ol)1(a)-319(d)1(a\\242)-1(,)-318(n)1(a)-56(j)1(le)-1(p)1(s)-1(ze)-1(j)]TJ 0 -13.549 Td[(zie)-1(mi!)]TJ 27.879 -13.549 Td[({)-292(M)1(oi\\261c)-1(iewy)83(,)-291(m)-1(\\241d)1(rzy\\261c)-1(ie)-292(i)-291(wy)83(,)-291(\\273)-1(e)-292(szuk)56(a\\242)-1(,)-291(miarku)1(jec)-1(i)1(e)-292(s)-1(ami,)-291(\\273)-1(e)-292(zapis)-292(to)-291(ino)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(p)1(iec)-1(zno\\261\\242)-420(la)-420(d)1(z)-1(iew)28(c)-1(zyn)28(y)84(.)-420(P)1(rze)-1(cie)-1(c)28(h)-419(te)-1(go)-419(gron)28(tu)1(,)-420(p)-27(\\363ki)-419(\\273)-1(yj)1(e)-1(cie,)-420(n)1(ikt)-419(w)27(ama)]TJ 0 -13.549 Td[(ni)1(e)-428(o)-28(dmierzy)-428(i)-427(n)1(ie)-428(w)27(e\\271)-1(mie)-428({)-427(a)-428(co)-428(j)1(e)-1(st)-427(Jagusine,)-427(c)-1(o)-427(jej)-427(s)-1(i\\246)-428(p)-27(o)-428(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(ci)]TJ 0 -13.55 Td[(nal)1(e)-1(\\273y)-278(p)-27(o)-277(o)-56(j)1(c)-1(u,)-277(to)-277(z)-1(ar)1(az)-278(na)-277(z)-1(wies)-1(n)1(\\246)-278(om)-1(\\246tr\\246)-278(si\\246)-278(spr)1(o)27(w)28(adzi)-277(i)-278(j)1(u\\273)-278(w)28(as)-1(ze)-1(,)-277(mo\\273)-1(ec)-1(i)1(e)-278(s)-1(e)]TJ 0 -13.549 Td[(obsiew)27(a\\242...)-302(Miark)1(uj)1(e)-1(cie)-303(,)-303(\\273)-1(e)-303(to)-303(n)1(ie)-304(k)1(rzywda)-303(w)28(as)-1(za,)-303(i)-303(te)-303(sz)-1(e\\261)-1(\\242)-303(morg\\363)28(w)-304(zapi)1(s)-1(ze)-1(cie.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(l)1(a)-334(Jagu)1(s)-1(i)-333(zapisz\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Kiedy?)]TJ 0 -13.549 Td[({)-299(A)-298(c)27(h)1(o)-28(\\242)-1(b)29(y)-299(i)-298(ju)1(tro!)-298(Nie)-1(,)-298(w)-299(sob)-28(ot\\246)-299(n)1(a)-299(zap)-28(o)28(wiedzi)-299(d)1(am)27(y)-298(i)-299(zaraz)-299(p)-27(o)-56(jedziem)27(y)]TJ -27.879 -13.55 Td[(do)-333(miasta.)-333(C)-1(o)-333(tam,)-333(raz)-334(k)28(ozie)-334(\\261m)-1(i)1(e)-1(r\\242!)]TJ 27.879 -13.549 Td[({)-445(J)1(a)-1(gu)1(\\261)-1(,)-444(c)27(h)1(o)-28(d)1(\\271)-446(i)1(no,)-444(c)-1(\\363r)1(uc)27(h)1(no,)-444(c)27(h)1(o)-28(d\\271!)-445({)-444(z)-1(a)28(w)28(o\\252a\\252)-1(a)-444(na)-444(dzie)-1(w)28(c)-1(zyn)1(\\246)-1(,)-444(kt\\363rej)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)-333(tak)-333(co\\261)-334(pr)1(a)28(w)-1(i\\252)-333(a)-333(przyp)1(ie)-1(r)1(a\\252)-334(d)1(o)-334(szynkw)28(asu,)-333(\\273)-1(e)-333(\\261)-1(mia\\252a)-333(s)-1(i\\246)-333(w)-334(g\\252os)-1(.)]TJ 27.879 -13.549 Td[({)-364(A)-365(to)-364(c)-1(i)1(,)-365(Jagu)1(\\261)-1(,)-364(Maciej)-364(z)-1(ap)1(isuj\\241)-364(te)-365(sz)-1(e\\261)-1(\\242)-365(morg\\363)28(w)-364(przy)83(,)-364(d)1(ro)-28(d)1(z)-1(e)-365({)-364(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzia\\252a.)]TJ 27.879 -13.55 Td[({)-333(B)-1(\\363g)-333(w)28(am)-334(z)-1(ap)1(\\252a\\242)-334({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(wyci\\241)-28(ga)-55(j\\241c)-334(d)1(o\\253)-333(r\\246k)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Napij)1(c)-1(i)1(e)-334(s)-1(i)1(\\246)-334(do)-333(Jagn)28(y)-333(tej)-333(s)-1(\\252o)-28(d)1(z)-1(i)1(u\\261kiej..)1(.)]TJ 0 -13.549 Td[(Napi)1(li)-332(si\\246,)-332(Maciej)-332(u)1(j\\241\\252)-332(j)1(\\241)-332(wp)-27(\\363\\252)-332(i)-332(wi\\363)-28(d)1(\\252)-332(do)-331(gromady)84(,)-332(ale)-332(m)27(u)-331(si\\246)-332(w)-1(y)1(m)-1(k)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-333(p)-27(o)-28(des)-1(z\\252a)-334(d)1(o)-333(braci,)-333(z)-334(kt\\363r)1(ymi)-333(ra)-56(j)1(c)-1(o)28(w)28(a\\252)-334(a)-333(p)-27(opij)1(a\\252)-334(Jam)28(bro\\273y)84(.)]TJ 27.879 -13.549 Td[(W)-366(k)56(arcz)-1(mie)-366(gw)27(ar)-365(s)-1(i\\246)-366(p)-28(o)-27(dn)1(os)-1(i\\252)-366(coraz)-367(wi\\246ksz)-1(y)-366(i)-365(lud)1(z)-1(i)-366(p)1(rzyb)28(yw)28(a\\252o,)-366(b)-27(o)-366(jaki)]TJ -27.879 -13.55 Td[(taki)1(,)-246(z)-1(as\\252ys)-1(za)28(w)-1(szy)-246(g\\252)-1(osy)83(,)-245(w)-1(st\\246)-1(p)-27(o)28(w)27(a\\252)-246(za)-56(j)1(rz)-1(e\\242,)-246(a)-247(k)1(t\\363ren)-246(z)-1(n)1(\\363)28(w)-1(,)-246(b)29(y)-246(s)-1(i\\246)-246(przy)-246(tej)-246(ok)56(az)-1(j)1(i)]TJ 0 -13.549 Td[(nap)1(i\\242)-325(z)-1(a)-324(dar)1(m)-1(o;)-324(na)28(w)27(et)-325(d)1(z)-1(i)1(ad)-325(\\261lep)28(y)83(,)-324(w)28(o)-28(dzon)28(y)-325(p)1(rze)-1(z)-325(p)1(s)-1(a,)-324(z)-1(n)1(alaz)-1(\\252)-324(s)-1(i\\246)-325(i)-324(s)-1(iedzia\\252)-325(n)1(a)]TJ 0 -13.549 Td[(widn)29(ym)-364(m)-1(iejsc)-1(u)1(,)-364(n)1(as)-1(\\252uc)28(hiw)28(a\\252)-364(i)-364(raz)-364(w)-364(raz)-365(p)1(ac)-1(i)1(e)-1(r)1(z)-365(m\\363)28(w)-1(i)1(\\252)-365(w)-364(g\\252os,)-364(a\\273)-365(p)-27(os)-1(\\252y)1(s)-1(ze)-1(li)-363(i)]TJ 0 -13.549 Td[(sam)-1(a)-333(Domini)1(k)28(o)27(w)28(a)-334(d)1(a\\252a)-334(m)28(u)-333(w)28(\\363)-28(dki)1(,)-333(prze)-1(gr)1(y\\271\\242)-334(i)-333(par\\246)-333(dw)28(o)-56(jak)28(\\363)28(w)-333(w)-334(gar\\261\\242.)]TJ 27.879 -13.549 Td[(T)83(\\246go)-464(s)-1(ob)1(ie)-464(p)-28(o)-27(dp)1(ili,)-463(\\273)-1(e)-464(ju)1(\\273)-464(w)-1(sz)-1(y)1(s)-1(cy)-464(razem)-465(gad)1(ali,)-463(a)-464(br)1(ali)-464(si\\246)-464(w)-464(bary)84(,)-464(a)]TJ -27.879 -13.55 Td[(ob\\252ap)1(iali,)-343(a)-343(ca\\252o)27(w)28(ali)-343(i)-343(k)56(a\\273)-1(d)1(e)-1(n)-342(dru)1(giem)27(u)-343(b)28(y)1(\\252)-344(b)1(ratem)-344(i)-343(p)1(rz)-1(y)1(jacie)-1(l)1(e)-1(m,)-343(z)-1(wycza)-56(jn)1(ie,)]TJ 0 -13.549 Td[(jak)-333(p)1(rzy)-333(g\\246)-1(st)28(ym)-334(kieliszku.)]TJ 27.879 -13.549 Td[(Ino)-324(\\233yd)-323(u)28(wija\\252)-324(si\\246)-325(cic)27(h)1(o)-324(i)-324(s)-1(ta)28(wia\\252)-324(c)-1(or)1(az)-325(n)1(o)27(w)28(e)-325(k)1(w)27(art)28(y)-324(i)-324(b)1(utelki)-323(z)-325(pi)1(w)27(em)-1(,)-324(a)]TJ -27.879 -13.549 Td[(zapisyw)28(a\\252)-334(kr)1(e)-1(d)1(\\241)-334(n)1(a)-334(d)1(rzw)-1(i)1(ac)27(h,)-333(co)-333(kto)-333(s)-1(ta)28(wia\\252.)]TJ 27.879 -13.549 Td[(A)-282(Boryn)1(a)-282(b)28(y\\252)-282(j)1(akb)28(y)-281(o)-28(c)-1(zadzia\\252y)-282(z)-282(u)1(c)-1(iec)27(h)29(y)83(,)-282(p)1(i\\252,)-282(cz)-1(\\246sto)27(w)28(a\\252,)-282(zapr)1(as)-1(za\\252,)-282(gada\\252,)]TJ -27.879 -13.549 Td[(jak)-295(ma\\252o)-296(kto)-295(go)-296(ki)1(e)-1(d)1(y)-296(s\\252ysz)-1(a\\252,)-295(i)-296(ci\\246gie)-1(m)-296(d)1(o)-296(Jagu)1(s)-1(i)-295(ci\\241)-28(gn)1(\\241)-1(\\252)-295(i)-296(s\\252o)-28(d)1(k)28(o\\261)-1(ci)-296(j)1(e)-1(j)-295(p)1(ra)28(wi\\252,)]TJ 0 -13.55 Td[(p)-27(o)-440(g\\246bu)1(s)-1(i)-439(g\\252as)-1(k)56(a\\252,)-439(\\273)-1(e)-440(to)-439(ni)1(e)-1(ob)28(y)1(c)-1(za)-56(jn)1(ie)-440(b)28(y)1(\\252o)-440(tak)-439(pr)1(z)-1(y)-439(ws)-1(zystkic)27(h)-439(u)1(\\252api\\242)-440(j)1(\\241)-440(za)]TJ 0 -13.549 Td[(sz)-1(yj)1(\\246)-422(i)-421(ca\\252o)27(w)28(a\\242,)-421(c)27(ho)-27(\\242)-422(go)-421(i)-421(c)-1(i)1(\\241)-28(gotki)-421(sielne)-421(bra\\252y)84(,)-421(\\273)-1(e)-421(z)-1(d)1(z)-1(i)1(e)-1(r\\273y\\242)-421(nie)-421(m)-1(\\363g\\252,)-421(to)-421(in)1(o)]TJ 0 -13.549 Td[(wp)-28(\\363\\252)-333(j\\241)-333(c)27(h)29(w)-1(y)1(ta\\252)-334(a)-333(w)-334(ciem)-1(n)29(y)-334(k)56(\\241t)-333(ci\\241)-28(gn\\241\\252.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-304(w)-1(r)1(yc)27(h)1(le)-305(si\\246)-305(op)1(atrzy\\252a,)-304(\\273)-1(e)-305(czas)-305(ju)1(\\273)-305(do)-304(dom)28(u)-304(i\\261\\242)-1(,)-304(i)-304(j)1(\\246)-1(\\252a)-304(s)-1(yn)1(k)28(\\363)28(w)]TJ -27.879 -13.549 Td[(w)28(o\\252)-1(a\\242,)-333(\\273)-1(eb)28(y)-333(si\\246)-334(zbierali)1(.)]TJ 27.879 -13.55 Td[(Ale)-469(S)1(z)-1(y)1(m)-1(ek)-468(ju)1(\\273)-469(b)28(y\\252)-468(s)-1(p)1(it)28(y)83(,)-468(to)-468(in)1(o)-469(n)1(a)-469(matcz)-1(y)1(ne)-469(gad)1(anie)-469(p)1(as)-1(a)-468(p)-27(opr)1(a)27(wi\\252,)]TJ -27.879 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(\\241)-334(gr)1(z)-1(motn\\241\\252)-333(w)-334(st\\363\\252)-334(i)-333(k)1(rz)-1(y)1(kn\\241\\252:)]TJ\nET\nendstream\nendobj\n359 0 obj <<\n/Type /Page\n/Contents 360 0 R\n/Resources 358 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 345 0 R\n>> endobj\n358 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n363 0 obj <<\n/Length 8389      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(109)]TJ -330.353 -35.866 Td[({)-334(Gosp)-27(o)-28(dar)1(z)-335(j)1(e)-1(ste)-1(m,)-334(p)1(s)-1(i)1(ac)27(hma\\242)-1(!)1(...)-334(K)1(om)27(u)-333(w)27(ola,)-333(niec)27(h)-333(idzie...)-334(Ch)1(c)-1(\\246)-334(pi\\242,)-334(to)]TJ -27.879 -13.549 Td[(pi)1(\\252)-334(b)-27(\\246)-1(d)1(\\246)-1(.)1(..)-333(\\233ydzie,)-334(gor)1(z)-1(a\\252ki)1(!)]TJ 27.879 -13.549 Td[({)-375(Cic)27(h)1(o)-56(j,)-374(Szym)-1(ek,)-375(cic)27(h)1(o)-56(j)1(,)-375(b)-28(o)-375(ci\\246)-376(spi)1(e)-1(r)1(\\241!)-375({)-376(j)1(\\246)-1(cza\\252)-376(\\252za)27(w)28(o)-375(J\\246drzyc)27(h)1(,)-375(te\\273)-376(ju)1(\\273)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(n)1(o)-333(pij)1(an)28(y)83(,)-333(i)-333(o)-28(d)1(c)-1(i)1(\\241)-28(ga\\252)-334(za)-333(k)55(ap)-27(ot\\246)-334(b)1(rata.)]TJ 27.879 -13.549 Td[({)-333(Do)-334(d)1(om)27(u)1(,)-333(c)27(h\\252op)1(aki,)-333(do)-333(d)1(om)27(u!)-333({)-333(sykn\\246\\252a)-333(Dom)-1(in)1(ik)28(o)28(w)27(a)-333(gro\\271ni)1(e)-1(.)]TJ 0 -13.55 Td[({)-293(Gosp)-27(o)-28(dar)1(z)-294(j)1(e)-1(stem)-1(!)-292(C)-1(h)1(c)-1(\\246)-293(osta\\242)-1(,)-292(to)-293(os)-1(tan)1(\\246)-293(i)-293(gorza\\252k)28(\\246)-294(p)1(i\\252)-293(b)-27(\\246)-1(d)1(\\246)-1(.)1(..)-293(d)1(os)-1(y\\242)-293(ju)1(\\273)]TJ -27.879 -13.549 Td[(matc)-1(zyn)1(e)-1(go)-333(pan)1(o)27(w)28(ani)1(a...)-333(a)-333(nie...)-333(wygon)1(i\\246)-1(..)1(.)-333(psiac)27(h)1(m)-1(a\\242...)]TJ 27.879 -13.549 Td[(Ale)-327(s)-1(t)1(ara)-327(grzmotn\\246\\252a)-327(go)-327(in)1(o)-327(w)-327(piersi,)-327(a\\273)-327(si\\246)-328(p)-27(oto)-28(czy\\252)-327(i)-327(op)1(am)-1(i\\246ta\\252)-327(wnet,)-327(a)]TJ -27.879 -13.549 Td[(J\\246drzyc)28(h)-224(nadzia\\252)-224(m)27(u)-224(cz)-1(ap)1(k)28(\\246)-225(i)-224(w)-1(y)1(pro)28(w)28(adzi\\252)-225(n)1(a)-225(d)1(rog\\246,)-224(ale)-225(Szymk)56(a)-225(wid)1(a\\242)-225(roze)-1(b)1(ra\\252o)]TJ 0 -13.549 Td[(p)-27(o)27(wietrze)-259(,)-258(b)-27(o)-258(ino)-258(usze)-1(d)1(\\252)-259(p)1(ar\\246)-259(kr)1(ok)28(\\363)28(w)-1(,)-258(zato)-28(cz)-1(y\\252)-258(si\\246)-1(,)-258(c)28(h)28(wyc)-1(i)1(\\252)-259(p)1(\\252otk)56(a)-259(i)-258(j)1(\\241\\252)-259(k)1(rz)-1(y)1(c)-1(ze)-1(\\242)]TJ 0 -13.549 Td[(i)-333(mam)-1(r)1(ota\\242)-1(:)]TJ 27.879 -13.55 Td[({)-286(Gos)-1(p)-27(o)-28(d)1(arz)-287(j)1(e)-1(ste)-1(m,)-286(psiac)27(h)1(m)-1(a\\242...)-286(gron)29(t)-287(m\\363)-56(j)1(...)-286(mo)-56(j)1(a)-287(w)28(ola)-287(r)1(obi\\242...)-286(gorza\\252k)28(\\246)]TJ -27.879 -13.549 Td[(pi)1(\\252)-334(b)-27(\\246)-1(d)1(\\246)-1(.)1(..)-333(\\233ydzie,)-334(ar)1(aku!)1(...)-333(a)-333(nie...)-333(wygon)1(i\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-232(Szyme)-1(k!)-232(Lob)-27(oga,)-232(Szyme)-1(k)1(,)-232(c)27(ho)-27(dzi)-232(do)-232(dom)28(u,)-232(matul)1(a)-233(i)1(d\\241!)-232({)-232(j\\246c)-1(za\\252)-233(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(i)-333(p\\252ak)56(a\\252)-333(rz)-1(ewn)28(ymi)-333(\\252z)-1(ami.)]TJ 27.879 -13.549 Td[(Wkr)1(\\363tc)-1(e)-368(nad)1(e)-1(sz)-1(\\252a)-368(stara)-368(z)-369(Jagn)1(\\241)-369(i)-368(zabr)1(a\\252a)-369(syn)1(\\363)27(w)-368(sp)-28(o)-28(d)-367(p\\252ota,)-368(b)-27(o)-368(s)-1(i\\246)-368(tam)]TJ -27.879 -13.55 Td[(ju)1(\\273)-334(b)28(y)1(li)-333(\\271)-1(d)1(z)-1(iebk)28(o)-333(za)-334(\\252b)28(y)-333(b)1(rali)-333(i)-333(tarzali)-333(p)-27(o)-334(b)1(\\252o)-28(c)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-246(w)-246(k)56(arcz)-1(mie)-246(p)-27(o)-246(w)-1(y)1(j\\261c)-1(iu)-245(k)28(obi)1(e)-1(t)-246(p)1(rzyc)-1(i)1(c)27(h\\252o)-246(n)1(iec)-1(o,)-245(lud)1(z)-1(ie)-246(si\\246)-246(p)-28(or)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(il)1(i)-246(z)]TJ -27.879 -13.549 Td[(w)28(olna,)-261(\\273)-1(e)-261(os)-1(ta\\252)-261(ino)-261(B)-1(or)1(yna)-261(z)-1(e)-261(s)-1(w)28(atam)-1(i)1(,)-262(Jam)28(br)1(o\\273)-1(y)-261(i)-261(dziad)-261(z)-1(ar)1(\\363)27(wn)1(o)-262(\\273e)-262(ws)-1(zys)-1(t)1(kimi)]TJ 0 -13.549 Td[(ju)1(\\273)-334(p)1(ij\\241cy)83(.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273y)-293(b)28(y)1(\\252)-293(niepr)1(z)-1(ytomn)28(y)84(,)-293(sta\\252)-293(na)-293(\\261ro)-28(d)1(ku,)-292(p)-28(o)-27(d\\261piewyw)27(a\\252,)-292(to)-293(op)-28(o)28(wiad)1(a\\252)]TJ -27.879 -13.55 Td[(w)-334(g\\252os:)]TJ 27.879 -13.549 Td[({)-366(Cz)-1(ar)1(n)28(y)-366(b)28(y)1(\\252)-1(,)1(..)-366(j)1(ak)-366(ten)-366(sagan)-366(b)28(y)1(\\252)-367(czarn)28(y)84(...)-366({)-366(zmie)-1(r)1(z)-1(y\\252)-366(d)1(o)-366(mnie...)-366(al)1(e)-367(tr)1(a-)]TJ -27.879 -13.549 Td[(\\014sz)-407(m)-1(\\246)-407(gdzie\\261)-1(..)1(.)-407(wraz)-1(i)1(\\252e)-1(m)-407(m)27(u)-406(bagn)1(e)-1(t)-407(w)-407(k)56(a\\252du)1(n...)-406(z)-1(akr)1(\\246)-1(ci\\252em)-1(,)-407(\\273e)-407(ino)-407(c)28(hru)1(pn)1(\\246)-1(-)]TJ 0 -13.549 Td[(\\252o...)-474(p)1(ie)-1(r)1(w)-1(szy!...)-474(S)1(toim)28(y)83(..)1(.)-475(stoim)28(y)83(..)1(.)-474(a)-475(tu)-474(n)1(ac)-1(zelnik)-474(w)28(ali..)1(.)-474(Je)-1(zu)-474(Chry)1(s)-1(te!)-474(Sam)]TJ 0 -13.549 Td[(nacze)-1(ln)1(ik!.)1(..)-370(C)-1(h)1(\\252opaki)1(...)-370(p)-28(o)28(wiad)1(a...)-370(Naro)-28(d)1(z)-1(ie...)-370(p)-27(o)28(w)-1(i)1(ada...)-370(S)1(z)-1(lu)1(s)-1(u)1(j.)1(..)-371(szlusuj)1(...)-370({)]TJ 0 -13.55 Td[(kr)1(z)-1(yk)1(n\\241\\252)-425(ogromn)28(ym)-425(g\\252)-1(osem)-1(,)-425(wyp)1(rosto)27(w)28(a\\252)-425(s)-1(i)1(\\246)-426(jak)-425(stru)1(na)-425(i)-425(cofa\\252)-425(s)-1(i)1(\\246)-426(w)28(olno,)-425(a\\273)]TJ 0 -13.549 Td[(m)27(u)-320(dr)1(e)-1(wnian)1(a)-321(noga)-321(stuk)56(a\\252a.)-321({)-321(Pij)1(c)-1(i)1(e)-322(d)1(o)-322(mn)1(ie)-1(,)-321(P)1(ietrze)-1(,)-321(p)1(ijcie...)-321(sierotam)-321(jes)-1(t..)1(.{)]TJ 0 -13.549 Td[(b)-27(e)-1(\\252k)28(ota\\252)-432(ni)1(e)-1(wyra\\271ni)1(e)-433(sp)-28(o)-27(d)-432(\\261)-1(cian)28(y)84(,)-432(ale)-432(s)-1(i)1(\\246)-433(ni)1(e)-433(d)1(o)-28(c)-1(ze)-1(k)56(a\\252,)-432(b)-27(o)-432(nar)1(az)-433(si\\246)-433(p)-27(orw)28(a\\252)-432(i)]TJ 0 -13.549 Td[(wysz)-1(ed\\252)-333(z)-334(k)56(arc)-1(zm)27(y)84(,)-333(t)28(ylk)28(o)-333(z)-334(d)1(rogi)-333(dolat)28(y)1(w)27(a\\252)-333(jego)-334(g\\252os)-334(c)28(hrap)1(liwy)84(,)-333(\\261)-1(p)1(ie)-1(w)28(a)-56(j)1(\\241c)-1(y)84(...)]TJ 27.879 -13.549 Td[(A)-497(do)-498(k)56(arcz)-1(m)28(y)-498(wsz)-1(ed\\252)-497(m)-1(\\252yn)1(arz,)-498(ogr)1(om)-1(n)28(y)-497(c)27(h)1(\\252op,)-497(ub)1(ran)28(y)-497(,)-498(z)-498(miejsk)55(a,)-497(z)]TJ -27.879 -13.55 Td[(cz)-1(erw)28(on\\241)-333(t)28(w)27(arz\\241,)-333(s)-1(i)1(w)-1(y)-333(i)-333(z)-334(ma\\252ymi,)-333(b)28(ystrymi)-333(o)-28(cz)-1(k)56(ami.)-333(j)]TJ 27.879 -13.549 Td[({)-333(Pij)1(e)-1(cie)-334(se)-1(,)-333(gosp)-28(o)-27(darze!)-334(Ho,)-333(h)1(o)-334(i)-333(w)28(\\363)-56(j)1(t,)-333(i)-333(s)-1(o\\252t)28(ys,)-333(i)-334(Bory)1(na!)-333(W)84(e)-1(se)-1(le)-333(c)-1(zy)-333(c)-1(o!)]TJ 0 -13.549 Td[({)-267(Nie)-267(c)-1(o)-267(in)1(s)-1(ze)-1(.)-266(Napij)1(c)-1(i)1(e)-268(si\\246)-268(z)-267(nami,)-267(p)1(anie)-267(m\\252)-1(y)1(narzu,)-266(napi)1(jcie)-268({)-267(p)1(rop)-27(ono)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(Boryn)1(a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-333(z)-1(n)1(\\363)27(w)-333(k)28(olejk)56(\\241.)]TJ 0 -13.549 Td[({)-333(Kiej\\261c)-1(ie)-333(tac)-1(y)84(,)-333(p)-28(o)28(wiem)-334(w)28(am)-334(no)28(win)1(\\246)-1(,)-333(\\273e)-334(wytrze)-1(\\271wie)-1(j)1(e)-1(ta!)]TJ 0 -13.55 Td[(Wyt)1(rz)-1(esz)-1(cz)-1(yl)1(i)-334(n)1(a)-333(niego)-334(n)1(ieprzytomne)-333(o)-28(c)-1(zy:)]TJ 0 -13.549 Td[({)-313(A)-312(to)-313(n)1(ie)-313(m)-1(a)-312(go)-28(dzin)28(y)84(,)-313(j)1(ak)-313(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-313(spr)1(z)-1(eda\\252)-313(p)-27(or\\246b)-27(\\246)-313(na)-313(W)1(ilcz)-1(yc)28(h)-313(D)1(o\\252)-1(ac)28(h!)]TJ 0 -13.549 Td[({)-243(A)-243(h)29(yc)-1(el,)-242(psie)-244(k)1(r\\363tki)1(!)-243(Sp)1(rze)-1(d)1(a\\252,)-243(nasz)-1(\\241)-242(p)-28(or)1(\\246)-1(b)-27(\\246)-243(s)-1(p)1(rz)-1(eda\\252!)-242({)-243(krzykn)1(\\241\\252)-243(B)-1(or)1(yna)]TJ -27.879 -13.549 Td[(i)-333(w)-334(zapami\\246ta\\252o\\261)-1(ci)-333(grzm)-1(otn)1(\\241\\252)-334(b)1(utelk)56(\\241)-333(o)-334(zie)-1(mi\\246.)]TJ 27.879 -13.549 Td[({)-245(Sp)1(rze)-1(d)1(a\\252!)-245(Pr)1(a)27(w)28(o)-245(jes)-1(t)-244(i)-245(na)-245(d)1(z)-1(iedzica,)-245(i)-245(n)1(a)-245(ku\\273dego,)-245(pr)1(a)28(w)27(o)-245(jest...)-245({)-245(b)-27(e\\252)-1(k)28(ot)1(a\\252)]TJ -27.879 -13.55 Td[(pi)1(jan)28(y)-333(S)1(z)-1(ymon.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(p)1(ra)28(wda!)-333(Ja,)-333(w)28(\\363)-56(jt)1(,)-334(w)28(ama)-334(m\\363)28(wi\\246)-1(,)-333(\\273e)-334(ni)1(e)-1(p)1(ra)28(w)-1(d)1(a,)-333(to)-333(w)-1(i)1(e)-1(rzcie)-1(!)]TJ\nET\nendstream\nendobj\n362 0 obj <<\n/Type /Page\n/Contents 363 0 R\n/Resources 361 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n361 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n367 0 obj <<\n/Length 712       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(110)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(8.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-358(S)1(pr)1(z)-1(eda\\252,)-357(ino)-357(\\273)-1(e)-358(wz)-1(i)1(\\241\\242)-359(n)1(ie)-358(dam)28(y)83(,)-357(jak)-357(B\\363g)-358(na)-357(niebi)1(e)-1(,)-357(nie)-358(d)1(am)27(y!)-357({)-358(w)28(o\\252a\\252)]TJ -27.879 -13.549 Td[(Boryn)1(a)-334(i)-333(b)1(i\\252)-334(p)1(i\\246\\261)-1(ci\\241)-333(w)-334(st\\363\\252...)]TJ 27.879 -13.549 Td[(M\\252yn)1(arz)-261(p)-28(osz)-1(ed\\252,)-261(a)-261(oni)-261(j)1(e)-1(sz)-1(cz)-1(e)-261(d\\252u)1(g)-1(o)-261(w)-261(no)-28(c)-261(radzili)-261(i)-261(o)-27(dgra\\273ali)-261(si\\246)-262(d)1(w)27(oro)28(wi.)]TJ\nET\nendstream\nendobj\n366 0 obj <<\n/Type /Page\n/Contents 367 0 R\n/Resources 365 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n365 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n370 0 obj <<\n/Length 6485      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(9)]TJ/F17 10.909 Tf 0 -73.325 Td[(Zbi)1(e)-1(g\\252o)-333(dni)-333(p)1(ar\\246)-334(o)-27(d)-333(z)-1(m\\363)28(w)-1(i)1(n)-333(Jagusin)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Des)-1(zc)-1(ze)-446(u)1(s)-1(ta\\252y)84(,)-445(dr)1(ogi)-445(o)-28(cie)-1(k)1(\\252)-1(y)-444(i)-445(s)-1(t\\246\\273)-1(a\\252y)-445(n)1(iec)-1(o,)-445(w)28(o)-28(dy)-444(s)-1(p)1(\\252)-1(y)1(n\\246\\252y)83(,)-445(\\273e)-446(in)1(o)-445(p)-28(o)]TJ -27.879 -13.549 Td[(br)1(uzdac)28(h,)-378(a)-378(gdzieniegdzie)-379(i)-378(p)-27(o)-378(ni)1(z)-1(in)1(ac)27(h)-378(a)-378(\\252\\246gac)27(h)-378(siwia\\252y)-378(si\\246)-379(m\\246)-1(t)1(ne)-379(k)56(a\\252u\\273e)-379(k)1(ie)-1(j)]TJ 0 -13.55 Td[(te)-334(o)-27(c)-1(zy)-333(z)-1(ap\\252ak)56(an)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Nadsze)-1(d)1(\\252)-375(Dz)-1(i)1(e)-1(\\253)-374(Zadu)1(s)-1(zn)28(y)84(,)-375(sz)-1(ar)1(y)83(,)-374(b)-27(e)-1(zs)-1(\\252on)1(e)-1(cz)-1(n)29(y)-375(i)-374(m)-1(ar)1(t)28(w)-1(y)84(,)-374(\\273)-1(e)-375(n)1(a)27(w)28(e)-1(t)-374(wiatr)]TJ -27.879 -13.549 Td[(ni)1(e)-326(pr)1(z)-1(egarn)1(ia\\252)-325(z)-1(es)-1(c)28(h\\252ymi)-325(bad)1(ylami)-325(ni)-325(c)28(h)28(wia\\252)-325(drze)-1(w)28(ami,)-325(c)-1(o)-325(sta\\252y)-325(c)-1(i)1(\\246)-1(\\273k)28(o)-325(p)-28(o)-28(c)28(h)28(y-)]TJ 0 -13.549 Td[(lon)1(e)-334(nad)-333(ziem)-1(i)1(\\241...)]TJ 27.879 -13.549 Td[(Bole)-1(sna,)-333(g\\252u)1(c)27(ha)-333(cis)-1(za)-333(przygn)1(ie)-1(t\\252a)-333(\\261w)-1(i)1(at.)]TJ 0 -13.549 Td[(A)-402(w)-401(Lip)-28(cac)27(h)-401(j)1(u\\273)-402(o)-28(d)-401(ran)1(a)-402(dzw)28(on)28(y)-402(b)1(i\\252y)-401(w)27(oln)1(o)-402(a)-402(b)-27(ez)-1(u)1(s)-1(tan)1(nie)-402({)-401(i)-402(\\273a\\252os)-1(n)1(e)-1(,)]TJ -27.879 -13.55 Td[(rozb)-27(ola\\252e)-370(d)1(\\271)-1(wi\\246ki)-369(p)-27(o)-56(j)1(\\246)-1(k)1(iw)27(a\\252y)-369(p)-27(o)-369(omglon)28(yc)28(h,)-369(p)1(ust)28(yc)27(h)-368(p)-28(ol)1(ac)27(h;)-368(p)-28(on)29(urym)-369(g\\252ose)-1(m)]TJ 0 -13.549 Td[(\\273a\\252)-1(ob)29(y)-483(w)27(o\\252a\\252y)-483(w)-484(ten)-483(d)1(z)-1(ie\\253)-483(sm)-1(\\246tn)28(y)84(,)-483(w)-484(ten)-483(d)1(z)-1(ie\\253,)-483(co)-483(w)-1(sta\\252)-483(blad)1(y)83(,)-483(sp)-28(o)28(wit)28(y)-483(w)]TJ 0 -13.549 Td[(mg\\252y)-418(a\\273)-418(d)1(o)-418(t)28(yc)27(h)-417(d)1(al)-418(zapad)1(\\252yc)27(h)1(,)-418(a\\273)-418(d)1(o)-418(t)28(yc)27(h)-417(b)-27(ez)-1(kr)1(e)-1(s\\363)28(w)-418(z)-1(iemi)-418(i)-417(ni)1(e)-1(b)1(a,)-418(sin)28(y)84(,)-418(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(zg\\252\\246)-1(b)1(ionej)-333(topi)1(e)-1(li)-333(p)-27(o)-28(d)1(obn)28(y)84(.)]TJ 27.879 -13.549 Td[(Od)-252(z\\363rz)-253(w)-1(sc)27(h)1(o)-28(dn)1(ic)27(h)1(,)-253(co)-253(si\\246)-253(jes)-1(zcz)-1(e)-253(\\273arz)-1(y)1(\\252y)-253(bl)1(ado,)-252(kieb)28(y)-253(t)1(a)-253(m)-1(i)1(e)-1(d)1(\\271)-253(s)-1(t)28(ygn)1(\\241c)-1(a,)]TJ -27.879 -13.55 Td[(sp)-28(o)-28(d)-332(s)-1(in)29(yc)27(h)-333(c)27(h)1(m)27(u)1(r)-333(z)-1(acz)-1(\\246\\252y)-333(p\\252yn)1(\\241\\242)-334(stada)-333(w)-1(r)1(on)-333(i)-333(k)56(a)27(w)28(e)-1(k)1(...)]TJ 27.879 -13.549 Td[(Sz\\252y)-309(wys)-1(ok)28(o,)-309(wysok)28(o,)-309(\\273)-1(e)-310(l)1(e)-1(d)1(w)-1(i)1(e)-310(okiem)-310(roze)-1(zna\\252)-309(i)-309(ledwie)-310(u)1(c)27(hem)-310(p)-27(o)-28(c)28(h)28(wyc)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(t\\246)-334(d)1(z)-1(i)1(k)55(\\241,)-333(\\273a\\252os)-1(n)1(\\241)-334(wrza)28(w)27(\\246)-334(k)1(rak)56(a\\253,)-333(p)-27(o)-28(dob)1(n\\241)-333(do)-333(j\\246k)28(\\363)28(w)-334(n)1(o)-28(c)-1(y)-333(j)1(e)-1(sienn)28(y)1(c)27(h.)1(..)]TJ 27.879 -13.549 Td[(A)-333(dzw)27(on)28(y)-333(b)1(i\\252y)-333(w)27(ci\\241\\273.)]TJ 0 -13.549 Td[(P)28(on)28(u)1(ry)-495(h)28(ymn)-496(r)1(oz)-1(lew)27(a\\252)-496(si\\246)-496(c)-1(i)1(\\246)-1(\\273k)28(o)-496(w)-496(m)-1(ar)1(t)28(w)-1(y)1(rn)-496(,)-495(og\\252uc)27(h)1(\\252ym)-496(p)-28(o)28(wietrzu,)]TJ -27.879 -13.55 Td[(opad)1(a\\252)-227(n)1(a)-226(p)-28(ola)-226(j)1(\\246)-1(k)56(ami,)-226(h)28(ucz)-1(a\\252)-226(p)-27(o)-227(wsiac)27(h)-226(i)-226(l)1(as)-1(ac)27(h)-225(\\273)-1(a\\252o\\261c)-1(i\\241,)-226(p)1(\\252yn\\241\\252)-226(\\261)-1(wiatem)-227(ca\\252ym,)]TJ 0 -13.549 Td[(\\273e)-293(l)1(udzie)-292(i)-292(p)-27(ola,)-291(i)-292(ws)-1(i)1(e)-293(zda\\252y)-291(s)-1(i\\246)-292(j)1(u\\273)-292(b)28(y\\242)-292(jedn)29(ym)-292(wie)-1(l)1(kim)-292(s)-1(erce)-1(m,)-292(b)1(ij)1(\\241c)-1(ym)-292(sk)56(arg\\241)]TJ 0 -13.549 Td[(\\273a\\252)-1(osn\\241.)1(..)]TJ 27.879 -13.549 Td[(Pt)1(ac)-1(t)28(w)28(o)-335(p\\252yn)1(\\246)-1(\\252o)-335(w)28(c)-1(i\\241\\273,)-335(a\\273)-335(dziw)-335(i)-335(l\\246k)-335(ogarn)1(ia\\252,)-335(b)-27(o)-335(s)-1(z\\252y)-335(coraz)-335(ni\\273e)-1(j)-334(i)-335(coraz)]TJ -27.879 -13.549 Td[(wi\\246ks)-1(zymi)-353(stadami,)-353(\\273e)-354(n)1(ieb)-28(o)-353(p)-27(okr)1(y\\252o)-353(s)-1(i\\246)-353(j)1(akb)28(y)-353(sadz\\241)-353(rozw)-1(i)1(an\\241,)-353(a)-353(g\\252u)1(c)27(h)28(y)-352(s)-1(zum)]TJ 0 -13.55 Td[(skrzyde\\252)-431(i)-431(k)1(rak)56(a\\253)-431(wzm)-1(aga\\252)-430(s)-1(i\\246,)-431(p)-27(ot\\246\\273)-1(n)1(ia\\252)-431(i)-430(h)28(ucz)-1(a\\252)-431(n)1(ib)28(y)-430(bu)1(rza)-431(nad)1(c)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-1(a..)1(.)]TJ 0 -13.549 Td[(Zatacz)-1(a\\252y)-350(k)1(r\\246gi)-350(n)1(ad)-350(wsi\\241)-350(i)-349(jak)-349(kup)1(a)-350(li\\261ci)-350(p)-27(orw)28(ana)-350(p)1(rze)-1(z)-350(wic)27(h)29(ur\\246)-350(k)28(o\\252o)28(w)28(a\\252)-1(y)-349(nad)]TJ 0 -13.549 Td[(p)-27(olami,)-294(opad)1(a\\252y)-294(n)1(a)-294(las)-1(y)84(,)-294(wies)-1(za\\252y)-294(si\\246)-294(na)-294(n)1(agic)27(h)-293(top)-28(ol)1(ac)27(h,)-293(obsiad\\252y)-293(lip)28(y)-293(przy)-294(k)28(o-)]TJ 0 -13.549 Td[(\\261c)-1(iele,)-287(d)1(rze)-1(w)28(a)-287(na)-286(c)-1(men)28(tarzu,)-286(s)-1(ad)1(y)83(,)-286(k)56(alenice)-287(c)27(ha\\252u)1(p,)-286(p\\252ot)28(y)-286(na)28(w)27(et...)1(a\\273)-287(z)-1(es)-1(tr)1(as)-1(zone)]TJ 0 -13.549 Td[(b)-27(e)-1(zustann)29(ym)-348(biciem)-348(dzw)27(on)1(\\363)27(w)-347(z)-1(erw)28(a)-1(\\252y)-347(s)-1(i)1(\\246)-348(i)-348(cz)-1(ar)1(n\\241)-348(c)28(hm)28(ur\\241)-347(le)-1(cia\\252y)-347(ku)-347(b)-28(or)1(om)-1(..)1(.)]TJ 0 -13.55 Td[(a)-333(os)-1(tr)1(y)83(,)-333(p)1(rz)-1(eni)1(kliwy)-333(s)-1(zum)-333(p\\252yn)1(\\241\\252)-334(za)-333(nimi.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(\\246)-1(\\273k)56(a)-334(zima)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(!)-333({)-333(m)-1(\\363)28(wili)-333(l)1(udzie.)]TJ 0 -13.549 Td[({)-333(Do)-334(l)1(as)-1(\\363)28(w)-334(ci\\241)-28(gn)1(\\241,)-333(ani)-333(c)27(h)29(ybi,)-333(\\261ni)1(e)-1(gi)-333(wnet)-333(s)-1(p)1(adn\\241.)]TJ 330.353 -29.888 Td[(111)]TJ\nET\nendstream\nendobj\n369 0 obj <<\n/Type /Page\n/Contents 370 0 R\n/Resources 368 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n368 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n373 0 obj <<\n/Length 9672      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(112)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(9.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[(I)-391(wyc)28(ho)-28(d)1(z)-1(il)1(i)-391(p)1(rz)-1(ed)-390(c)27(ha\\252u)1(p)28(y)-391(coraz)-391(li)1(c)-1(zniej,)-390(b)-27(o)-391(nigd)1(y)-391(j)1(e)-1(sz)-1(cze)-392(n)1(ie)-391(widziano)]TJ -27.879 -13.549 Td[(t)28(yle)-454(p)1(tact)27(w)28(a)-453(raz)-1(em)-454({)-453(patr)1(z)-1(an)1(o)-454(d)1(\\252)-1(u)1(go,)-453(z)-1(e)-454(sm)27(u)1(tkiem)-454(dziwn)28(ym,)-453(a\\273)-454(znikn)1(\\246)-1(\\252y)-453(w)]TJ 0 -13.549 Td[(b)-27(orac)27(h)1(.)-359(P)28(atr)1(z)-1(an)1(o,)-359(wz)-1(d)1(yc)27(h)1(ano)-359(ci\\246)-1(\\273k)28(o,)-359(j)1(aki)-359(taki)-358(z)-1(n)1(ak)-359(krzy\\273a)-359(p)-28(o\\252o\\273y\\252)-359(na)-359(cz)-1(ol)1(e)-360(w)]TJ 0 -13.549 Td[(obr)1(onie)-336(przed)-336(z)-1(\\252em)-1(,)-336(i)-336(j)1(\\246)-1(l)1(i)-336(s)-1(i\\246)-336(przy)28(o)-28(d)1(z)-1(iew)27(a\\242)-336(do)-336(k)28(o\\261)-1(cio\\252a)-336(i)-336(wyc)27(h)1(o)-28(dzi\\242,)-337(b)-27(o)-336(dzw)27(on)29(y)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273)-338(j)1(\\246)-1(cz)-1(a\\252y)-337(g\\252uc)27(h)1(o,)-338(a)-337(z)-338(dru)1(gic)27(h)-337(wsi)-338(j)1(u\\273)-338(s)-1(zli)-337(lud)1(z)-1(i)1(e)-338(drogami,)-337(m)-1(a)-55(jacz)-1(y)1(li)-338(wskro\\261)]TJ 0 -13.55 Td[(mgie)-1(\\252)-333(p)-27(o)-334(\\261c)-1(i)1(e)-1(\\273k)56(ac)27(h)-333(i)-333(dr)1(\\363\\273)-1(k)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Sm)28(utek)-407(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(y)-407(pad)1(\\252)-408(n)1(a)-407(w)-1(szys)-1(tk)1(ie)-408(d)1(usz)-1(e;)-407(jak)56(a\\261)-408(dziwni)1(e)-408(b)-27(ole)-1(sna)-407(ci-)]TJ -27.879 -13.549 Td[(c)27(h)1(o\\261)-1(\\242)-347(omota\\252a)-347(se)-1(r)1(c)-1(a)-346({)-347(cic)27(h)1(o\\261)-1(\\242)-347(r)1(oz)-1(p)1(am)-1(i\\246t)28(yw)28(a\\253)-346(\\273)-1(a\\252o\\261liwyc)27(h)-346(i)-346(ws)-1(p)-27(om)-1(i)1(nek)-347(o)-346(t)28(yc)27(h)1(,)]TJ 0 -13.549 Td[(co)-481(j)1(u\\273)-481(b)28(yl)1(i)-481(o)-27(des)-1(zli)-480(tam)-1(,)-480(p)-27(o)-28(d)-480(te)-481(b)1(rzoz)-1(y)-480(z)-1(wiesz)-1(one,)-480(p)-28(o)-27(d)-480(te)-481(c)-1(zarn)1(e)-1(,)-480(p)-27(o)-28(c)27(h)28(y)1(lone)]TJ 0 -13.549 Td[(kr)1(z)-1(y\\273e)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-395(M)1(\\363)-56(j)-394(t)28(y)-394(Je)-1(zu)-394(k)28(o)-28(c)27(h)1(an)28(y!)-394(M\\363)-56(j)-394(Jezu!)-394({)-395(wz)-1(d)1(yc)27(h)1(ali)-394(i)-395(p)-27(o)-28(d)1(nosili)-394(s)-1(zare,)-395(j)1(ak)-395(ta)]TJ -27.879 -13.55 Td[(zie)-1(mia,)-432(t)28(w)27(ar)1(z)-1(e)-433(i)-432(top)1(ili)-432(o)-28(cz)-1(y)-432(b)-28(eztrw)28(o\\273)-1(n)1(e)-433(w)-433(ta)-56(j)1(e)-1(mn)1(ic)-1(y)84(,)-432(i)-433(sz)-1(l)1(i)-433(sp)-27(ok)28(o)-56(jn)1(ie)-433(sk\\252ada\\242)]TJ 0 -13.549 Td[(o\\014ar)1(y)-333(i)-333(pacie)-1(r)1(z)-1(e)-334(za)-333(z)-1(mar\\252yc)28(h.)]TJ 27.879 -13.549 Td[(Wie\\261)-387(b)28(y\\252a)-387(j)1(akb)28(y)-387(zatop)1(iona)-387(w)-387(ci\\246\\273)-1(ki)1(e)-1(j)1(,)-387(\\273)-1(a\\252o\\261liw)28(e)-1(j)-386(cis)-1(zy)-387(j)1(e)-1(n)1(o)-387(j\\246kli)1(w)27(e,)-387(pr)1(o-)]TJ -27.879 -13.549 Td[(sz)-1(aln)1(e)-334(\\261piew)27(an)1(ia)-333(dziad\\363)28(w)-334(sp)-27(o)-28(d)-333(k)28(o\\261c)-1(io\\252a)-333(do)-27(c)27(ho)-27(dzi\\252y)-334(czas)-1(ami.)]TJ 27.879 -13.549 Td[(I)-274(u)-274(B)-1(or)1(yn\\363)28(w)-275(cisz)-1(ej)-274(b)28(y\\252o)-274(ni\\271li)-274(zaz)-1(wycz)-1(a)-55(j,)-274(c)27(h)1(o)-28(c)-1(i)1(a\\273)-275(tam,)-275(w)28(e)-275(\\261ro)-28(d)1(ku,)-274(sie)-1(d)1(z)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.55 Td[(pi)1(e)-1(k\\252o)-333(pr)1(z)-1(y)1(ta)-56(j)1(o)-1(n)1(e)-1(,)-333(goto)28(w)28(e)-334(za)-334(lad)1(a)-333(c)-1(zym)-334(wyb)1(uc)27(h)1(n\\241\\242...)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-333(d)1(z)-1(i)1(e)-1(ci)-333(w)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-333(ju)1(\\273)-334(o)-333(ws)-1(zys)-1(t)1(kim.)]TJ 0 -13.549 Td[(A)-333(w)27(cz)-1(or)1(a)-56(j)1(,)-334(w)-333(ni)1(e)-1(d)1(z)-1(iel\\246,)-334(wysz\\252)-1(y)-333(p)1(ierws)-1(ze)-334(zap)-28(o)28(wiedzi)-334(starego)-333(z)-334(Jagusi\\241..)1(.)]TJ 0 -13.549 Td[(W)-304(sob)-27(ot\\246)-305(t)1(o)-304(je\\271)-1(d)1(z)-1(il)1(i)-304(do)-303(m)-1(iasta,)-304(gd)1(z)-1(i)1(e)-305(u)-303(rejen)28(ta)-304(zapi)1(s)-1(a\\252)-304(Boryn)1(a)-304(s)-1(ze\\261)-1(\\242)-304(m)-1(or)1(-)]TJ -27.879 -13.549 Td[(g\\363)28(w)-412(Jagusi...)-411(W)83(r\\363)-27(c)-1(i\\252)-412(p)-27(\\363\\271no)-412(i)-412(z)-412(t)28(w)27(ar)1(z)-1(\\241)-412(p)-27(o)-28(d)1(rapan)1(\\241,)-412(b)-27(o)-412(\\273)-1(e)-412(b)28(y\\252)-412(\\271dziebk)28(o)-412(n)1(apit)28(y)84(,)]TJ 0 -13.55 Td[(to)-328(j)1(u\\273)-328(n)1(a)-328(w)27(ozie)-328(c)27(h)1(c)-1(i)1(a\\252)-328(b)28(y\\252)-328(Jagn)1(\\246)-328(bra\\242,)-327(ale)-328(t)27(y)1(la)-328(wzi\\241\\252,)-328(co)-328(pi)1(\\246)-1(\\261c)-1(i\\241)-327(a)-328(p)1(a)-1(zur)1(am)-1(i)-327(m)27(u)]TJ 0 -13.549 Td[(da\\252y)84(.)]TJ 27.879 -13.549 Td[(A)-404(w)-404(dom)28(u)-404(z)-404(n)1(ikim)-404(ni)1(e)-405(m\\363)28(w)-1(i)1(\\252,)-404(c)27(h)1(o)-28(\\242)-404(i)-404(An)28(tek)-404(ci\\246)-1(gi)1(e)-1(m)-404(nasu)28(w)28(a\\252)-404(m)27(u)-403(s)-1(i\\246)-404(na)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)84(,)-363(i)1(no)-363(zaraz)-363(l)1(e)-1(g\\252)-363(spa\\242,)-363(j)1(ak)-363(sta\\252,)-362(w)-363(bu)1(tac)27(h)-362(i)-363(k)28(o\\273uc)28(h)28(u.)1(..)-363(a\\273)-363(r)1(ano)-362(J\\363z)-1(ia)-362(z)-1(acz)-1(\\246\\252a)]TJ 0 -13.549 Td[(mam)-1(r)1(ota\\242)-334(na)-333(n)1(ie)-1(go,)-333(\\273e)-334(pi)1(e)-1(rzyn)1(\\246)-334(b\\252otem)-334(p)-27(omaz)-1(a\\252.)]TJ 27.879 -13.55 Td[({)-352(Cic)27(h)1(o)-56(j)1(,)-352(J\\363zia,)-352(cic)27(h)1(o)-56(j!)-351(Z)-1(d)1(arzy)-352(si\\246)-353(to)-352(i)-351(niekt\\363r)1(e)-1(m)28(u,)-352(co)-352(nigd)1(y)-352(gorza\\252ki)-352(n)1(ie)]TJ -27.879 -13.549 Td[(pi)1(je...)-301({)-302(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-302(w)28(e)-1(so\\252o)-302(i)-301(zaraz)-302(o)-28(d)-301(r)1(ana)-301(p)-28(osz)-1(ed\\252)-301(do)-301(Jagn)28(y)-301(i)-301(ju)1(\\273)-302(tam)-302(d)1(o)-302(p)-27(\\363\\271)-1(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-333(\\273e)-334(pr)1(\\363\\273)-1(n)1(o)-334(z)-333(obiad)1(e)-1(m)-333(i)-334(wiecz)-1(erz\\241)-334(n)1(a\\253)-333(c)-1(ze)-1(k)56(ali)1(.)]TJ 27.879 -13.549 Td[(I)-432(d)1(z)-1(isia)-55(j)-432(wsta\\252)-432(p)-27(\\363\\271)-1(n)1(o,)-432(j)1(u\\273)-432(dob)1(rze)-433(p)-27(o)-432(wsc)27(ho)-27(dzie)-1(,)-431(w)-432(na)-55(jlepsz\\241)-432(k)56(ap)-28(ot\\246)-432(si\\246)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzia\\252,)-339(b)1(ut)28(y)-338(\\261)-1(wi\\241tecz)-1(n)1(e)-339(k)55(aza\\252)-339(se)-339(Witk)28(o)28(wi)-338(s)-1(ad)1(\\252e)-1(m)-339(wysm)-1(ar)1(o)28(w)27(a\\242)-339(i)-338(no)28(w)28(e)-339(w)-1(i)1(e)-1(-)]TJ 0 -13.55 Td[(c)27(h)1(e)-1(tk)1(i)-393(ze)-394(s\\252om)27(y)-393(p)1(rzyci\\241\\242)-394({)-392(Kub)1(a)-393(go)-393(wygoli\\252,)-392(a)-393(on)-393(si\\246)-393(pase)-1(m)-393(okr)1(\\246)-1(ci\\252,)-393(k)56(ap)-27(e)-1(lu)1(s)-1(z)]TJ 0 -13.549 Td[(nad)1(z)-1(i)1(a\\252)-263(i)-262(ni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-263(wygl\\241da\\252)-262(pr)1(z)-1(ez)-263(okn)1(o)-263(n)1(a)-263(gan)1(e)-1(k,)-262(b)-27(o)-263(tam)-262(Hank)56(a)-262(is)-1(k)56(a\\252a)-262(c)27(h\\252o-)]TJ 0 -13.549 Td[(pak)56(a,)-327(a)-327(n)1(ie)-327(c)27(hcia\\252)-327(si\\246)-328(z)-327(ni\\241)-327(wid)1(z)-1(i)1(e)-1(\\242,)-327(a\\273)-328(i)-326(dop)1(atrzy\\252,)-327(\\273)-1(e)-327(w)27(esz)-1(\\252a)-327(na)-327(c)28(h)28(wil\\246)-327(do)-327(izb)28(y)84(,)]TJ 0 -13.549 Td[(to)-333(s)-1(i)1(\\246)-334(c)27(h)28(y)1(\\252)-1(k)1(ie)-1(m)-333(w)-1(y)1(s)-1(u)1(n\\241\\252)-333(w)-334(op)1(\\252)-1(ot)1(ki)-333({)-334(i)-333(t)28(yl)1(a)-334(go)-333(ju)1(\\273)-334(dn)1(ia)-333(te)-1(go)-333(widzieli..)1(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-259(ca\\252y)-259(dzie\\253)-259(p)-28(op)1(\\252akiw)28(a\\252a)-260(i)-259(t)1(\\252)-1(u)1(k\\252a)-259(s)-1(i)1(\\246)-260(p)-27(o)-260(i)1(z)-1(b)1(ie)-1(,)-258(jak)-259(ten)-259(ptak)-259(zamkni)1(\\246)-1(t)28(y!)]TJ -27.879 -13.549 Td[(An)28(tek)-330(za\\261)-330(gorz)-1(a\\252)-330(w)-330(m\\246k)55(ac)28(h)-330(coraz)-330(b)-27(ole)-1(\\261ni)1(e)-1(jszyc)27(h)-329(i)-330(sro\\273s)-1(zyc)27(h)-329({)-330(ani)-329(jad)1(\\252,)-330(ni)-329(s)-1(p)1(a\\252,)]TJ 0 -13.55 Td[(ni)-318(m\\363g\\252)-318(s)-1(i\\246)-319(za)-56(j)1(\\241\\242)-319(cz)-1(ymk)28(olwiek;)-318(b)28(y\\252)-318(og\\252usz)-1(on)29(y)-319(j)1(e)-1(szc)-1(ze)-1(,)-318(n)1(ie)-1(p)1(rzytomn)28(y)-318(z)-1(go\\252a)-318(i)-318(nie)]TJ 0 -13.549 Td[(wiedz\\241c)-1(y)84(,)-317(c)-1(o)-317(si\\246)-317(z)-318(n)1(im)-317(dzie)-1(j)1(e)-1(.)-317(Tw)28(arz)-317(m)27(u)-316(p)-28(o)-28(cz)-1(ern)1(ia\\252a,)-317(\\273e)-318(t)28(yl)1(k)28(o)-318(o)-27(c)-1(zy)-317(uczyni\\252y)-316(s)-1(i\\246)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-435(w)-1(i)1(\\246)-1(ksz)-1(e)-435(i)-435(p\\252on)1(\\246)-1(\\252y)-435(sz)-1(kl)1(is)-1(t)1(o,)-435(jakb)28(y)-435(\\252zami)-435(s)-1(k)56(amie)-1(n)1(ia\\252ymi)-435({)-435(z)-1(\\246b)28(y)-435(zac)-1(in)1(a\\252,)]TJ 0 -13.549 Td[(\\273e)-1(b)28(y)-282(n)1(ie)-283(kr)1(z)-1(ycz)-1(e\\242)-283(w)-282(g\\252os)-283(i)-282(nie)-282(w)-1(y)1(klin)1(a\\242)-1(,)-282(a)-282(c)27(ho)-27(dzi\\252)-283(w)28(ci\\241\\273)-283(p)-27(o)-283(izbi)1(e)-1(,)-282(to)-282(p)-27(o)-283(ob)-27(e)-1(j)1(\\261)-1(ciu)1(,)]TJ 0 -13.549 Td[(to)-387(w)-387(op\\252otk)1(i)-387(s)-1(ze)-1(d)1(\\252)-387(lub)-386(na)-387(d)1(rog\\246)-387(i)-387(p)-27(o)27(wr)1(ac)-1(a\\252,)-387(p)1(ada\\252)-387(w)-387(ganku)-386(na)-387(\\252a)28(w)28(\\246)-388(i)-387(siedzia\\252)]TJ 0 -13.55 Td[(go)-28(d)1(z)-1(in)1(ami,)-470(z)-1(ap)1(atrz)-1(on)29(y)-471(p)1(rze)-1(d)-470(si\\246)-471(i)-470(ut)1(opion)28(y)-470(w)-470(b)-28(olu)1(,)-470(c)-1(o)-470(w)-471(n)1(im)-471(r\\363s\\252)-471(j)1(e)-1(sz)-1(cze)-471(i)]TJ 0 -13.549 Td[(p)-27(ot\\246)-1(\\273ni)1(a\\252)-1(.)]TJ\nET\nendstream\nendobj\n372 0 obj <<\n/Type /Page\n/Contents 373 0 R\n/Resources 371 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n371 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n376 0 obj <<\n/Length 8514      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(113)]TJ -330.353 -35.866 Td[(Dom)-310(og\\252uc)27(h)1(\\252,)-310(in)1(o)-310(p\\252ak)56(ania)-310(w)-310(n)1(im)-311(si\\246)-310(rozle)-1(ga\\252y)84(,)-310(j\\246ki)-310(a)-310(w)28(e)-1(stc)27(h)1(ni)1(e)-1(n)1(ia,)-310(kieb)28(y)]TJ -27.879 -13.549 Td[(p)-27(o)-359(p)-27(ogrz)-1(ebi)1(e)-359(c)-1(zyim.)-359(Dr)1(z)-1(wi)-358(s)-1(ta\\252y)-358(w)-1(y)1(w)27(ar)1(te)-359(na)-359(r)1(oz)-1(cie)-1(\\273)-359(d)1(o)-359(ob)-27(\\363r)-359(i)-358(c)27(h)1(le)-1(w)28(\\363)28(w,)-359(\\273e)-359(in-)]TJ 0 -13.549 Td[(w)28(e)-1(n)28(tar)1(z)-275(\\252)-1(azi\\252)-275(p)-27(o)-275(sadzie)-275(i)-275(zagl\\241da\\252)-274(w)-275(okna,)-274(a)-275(ni)1(e)-276(mia\\252)-275(go)-274(kto)-275(n)1(agna\\242)-275(z)-275(p)-28(o)28(wrotem,)]TJ 0 -13.549 Td[(t)28(yle)-333(c)-1(o)-333(s)-1(tar)1(y)-333(\\212apa)-333(nasz)-1(cz)-1(ekiw)28(a\\252)-334(i)-333(zagania\\252,)-333(ale)-333(na)-333(dar)1(m)-1(o,)-333(b)-27(o)-334(n)1(ie)-334(u)1(radzi\\252.)]TJ 27.879 -13.549 Td[(W)-296(sta)-56(j)1(ni)-296(n)1(a)-296(w)27(erku)-296(K)1(ub)1(a)-297(czy\\261)-1(ci\\252)-296(s)-1(t)1(rz)-1(elb)-27(\\246)-1(,)-296(a)-296(W)1(ite)-1(k)-295(z)-297(p)-27(o)-28(dziw)28(e)-1(m)-296(nab)-27(o\\273)-1(n)29(ym)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(gl\\241da\\252)-333(s)-1(i\\246)-333(te)-1(m)28(u)-333(i)-333(wyz)-1(i)1(e)-1(ra\\252)-333(okienk)1(ie)-1(m,)-333(\\273)-1(eb)28(y)-333(ic)28(h)-333(kto)-333(nie)-333(z)-1(es)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[({)-333(Hukn)1(\\246)-1(\\252o,)-333(\\273e)-334(Je)-1(zus!)-333(My\\261la\\252em)-1(,)-333(\\273e)-334(to)-333(dziedzic)-334(ab)-27(o)-334(b)-27(oro)28(wy)-333(s)-1(tr)1(z)-1(ela)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-341(Hal)1(e)-1(..)1(.)-341(j)1(u\\261c)-1(i.)1(..)-341(d)1(a)28(w)-1(n)1(om)-341(nie)-341(strze)-1(l)1(a\\252)-1(,)-340(t\\246gom)-341(nab)1(i\\252)-341(i)-340(gruc)28(hn)1(\\246)-1(\\252o)-341(k)1(ie)-1(j)-340(z)-341(har)1(-)]TJ -27.879 -13.549 Td[(mat)28(y)83(..)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o\\261)-1(cie)-334(zaraz)-334(z)-333(w)-1(i)1(e)-1(cz)-1(or)1(a)-334(p)-27(os)-1(zli?..)1(.)]TJ 0 -13.549 Td[({)-436(T)83(ak,)-436(p)-27(osz)-1(ed\\252em)-437(n)1(a)-436(dw)28(orskie,)-436(p)-28(o)-27(d)-436(las,)-436(b)-27(o)-436(tam)-437(n)1(a)-436(oz)-1(i)1(m)-1(in)1(\\246)-437(l)1(ubi)1(\\241)-436(k)28(oz)-1(y)]TJ -27.879 -13.55 Td[(wyc)27(h)1(o)-28(dzi\\242...)-394(\\202)-1(ma)-395(b)28(y)1(\\252)-1(a,)-394(tom)-395(s)-1(iedzia\\252)-395(d)1(\\252ugo...)-394(a\\273)-396(t)1(u)-395(n)1(a)-395(\\261)-1(witan)1(iu)-394(rogac)-1(z)-395(id)1(z)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(zai\\252e)-1(m)-459(si\\246)-459(tak,)-458(\\273)-1(e)-459(in)1(o)-459(z)-459(pi)1(\\246)-1(\\242)-459(kr)1(ok)28(\\363)27(w)-459(b)29(y\\252)-459(o)-28(d)1(e)-459(m)-1(n)1(ie...)-459(n)1(ie)-459(strze)-1(li)1(\\252)-1(em,)-459(b)-27(o)]TJ 0 -13.549 Td[(okr)1(utn)28(y)-347(b)28(y\\252,)-347(kiej)-347(w)27(\\363\\252..)1(.)-348(to)-347(m)27(y\\261l\\246...)-347(ni)1(e)-348(uredz\\246)-1(.)1(..)-348(P)1(u\\261c)-1(i)1(\\252e)-1(m)-348(go..)1(.)-348(a)-347(w)-348(jak)1(i)-348(p)1(ac)-1(ierz)]TJ 0 -13.549 Td[(ab)-27(o)-492(d)1(w)27(a.)1(..)-491(\\252anie)-491(w)-1(ysz\\252)-1(y)84(...)-491(W)1(ybr)1(a\\252)-1(em)-492(se)-492(n)1(a)-56(j)1(le)-1(p)1(s)-1(z\\241...)-491(in)1(om)-492(p)1(rzy\\252o\\273)-1(y\\252,)-491(j)1(ak)-491(nie)]TJ 0 -13.549 Td[(h)28(u)1(kni)1(e)-1(!)-356(T)83(\\246gom)-356(nabi)1(\\252,)-356(ba,)-356(a\\273e)-356(m)-1(i)-356(r)1(am)-1(i)1(\\246)-357(spu)1(c)27(hn)1(\\246)-1(\\252o,)-356(t)1(ak)-356(dosta\\252e)-1(m)-356(pr)1(z)-1(yk)1(\\252adem)-1(..)1(.)]TJ 0 -13.55 Td[(ale)-224(si\\246)-224(z)-1(w)28(ali\\252a...)-223(in)1(o)-224(k)28(opa\\252a)-224(n)1(ogam)-1(i)1(...)-223(jes)-1(zc)-1(ze)-224(b)28(y)-224(n)1(ie)-1(.)1(..z)-224(p)-27(\\363\\252)-224(gar\\261c)-1(i)-223(s)-1(iek)56(a\\253ca)-224(dosta\\252a)]TJ 0 -13.549 Td[(w)-412(b)-28(ok)1(...)-412(a)-412(b)-27(ec)-1(za\\252a)-412(ju)1(c)27(ha.)1(..a\\273e)-1(m)-412(s)-1(i)1(\\246)-413(b)-27(o)-56(j)1(a\\252,)-412(b)28(y)-412(n)1(ie)-412(p)-28(os\\252ys)-1(za\\252)-412(b)-27(oro)28(w)-1(y)84(,)-412(i)-411(dorzn\\241\\242)]TJ 0 -13.549 Td[(m)27(u)1(s)-1(i)1(a\\252e)-1(m...)]TJ 27.879 -13.549 Td[({)-333(W)-333(le)-1(sie)-334(osta\\252a,)-333(c)-1(o?)-333({)-334(p)29(yta\\252)-334(c)28(h\\252op)1(ak)-334(r)1(oz)-1(gor)1(\\241c)-1(zk)28(o)27(w)28(an)28(y)-333(op)-27(o)28(w)-1(i)1(e)-1(\\261c)-1(i\\241.)]TJ 0 -13.549 Td[({)-361(Gd)1(z)-1(ie)-361(os)-1(ta\\252a,)-361(to)-361(osta\\252a,)-361(ni)1(c)-362(ci)-361(do)-361(tego,)-361(a)-361(p)-28(o)28(wie)-1(d)1(z)-362(k)28(om)28(u)-361(c)27(h)1(o)-28(\\242)-362(s\\252o)28(w)27(o,)-361(to)]TJ -27.879 -13.55 Td[(obaczys)-1(z,)-333(c)-1(o)-333(c)-1(i)-333(zrob)1(i\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(pr)1(z)-1(yk)56(azujecie)-1(,)-333(to)-333(i)-333(ni)1(e)-334(p)-28(o)28(wiem)-1(,)-333(a)-333(J\\363zi)-334(t)1(o)-334(mo\\273)-1(n)1(a?)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(ca\\252a)-334(wie\\261)-334(b)28(y)-333(zaraz)-334(wiedzia\\252a.)-333(Na\\261)-1(ci)-333(dzies)-1(i\\241tk)28(\\246,)-333(ku)1(p)-333(s)-1(e)-334(co...)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(m)-334(i)-333(tak)1(,)-334(i)1(no)-333(m)-1(n)1(ie)-334(w)28(e)-1(\\271cie)-334(kiedy)-333(ze)-334(sob\\241,)-333(moi)-334(z\\252o)-28(ci,)-333(m)-1(oi)1(...)]TJ 0 -13.549 Td[({)-333(\\221n)1(iadan)1(ie)-1(!)-333({)-333(krzycz)-1(a\\252a)-333(s)-1(p)1(rze)-1(d)-333(d)1(om)27(u)-333(J)1(\\363z)-1(k)56(a.)]TJ 0 -13.55 Td[({)-333(Ino)-333(c)-1(ic)28(ho)-333(b)28(y\\242,)-333(w)27(ez)-1(m\\246)-334(ci\\246,)-334(w)28(ez)-1(m\\246)-1(!)]TJ 0 -13.549 Td[({)-333(I)-334(d)1(ac)-1(ie)-333(m)-1(i)-333(c)28(ho)-28(\\242)-334(ten)-333(razicz)-1(ek)-333(s)-1(tr)1(z)-1(eln)1(\\241\\242)-1(,)-333(dacie?)-334(Co?)-334({)-333(b\\252aga\\252.)]TJ 0 -13.549 Td[({)-333(Ale)-1(.)1(.)-333(pro)-27(c)27(h)-333(to)-333(m)27(y\\261li,)-333(g\\252u)1(pi,)-333(\\273e)-334(dar)1(m)-1(o)-333(da)-55(j\\241.)1(..)]TJ 0 -13.549 Td[({)-289(Mam)-289(pi)1(e)-1(n)1(i\\241dze)-1(,)-289(K)1(ub)1(a,)-289(m)-1(am,)-289(j)1(e)-1(sz)-1(cz)-1(e)-289(w)-289(jarmarek)-289(d)1(ali)-289(mi)-289(gos)-1(p)-27(o)-28(d)1(arz)-290(d)1(w)27(a)]TJ -27.879 -13.549 Td[(z\\252)-1(ot)1(e)-1(,)-333(co)-334(j)1(e)-334(c)27(h)1(o)27(w)28(am)-334(n)1(a)-334(wyp)-27(omink)1(i,)-333(to...)]TJ 27.879 -13.55 Td[({)-371(Dob)1(rze)-1(,)-370(dob)1(rze)-1(,)-370(nau)1(c)-1(z\\246)-371(c)-1(i)1(\\246)-372({)-370(s)-1(zepn\\241\\252)-370(i)-371(p)-27(og\\252adzi\\252)-371(c)28(h\\252opak)56(a)-370(p)-28(o)-370(g\\252)-1(o)28(wie...)]TJ -27.879 -13.549 Td[(b)-27(o)-334(go)-333(tak)-333(uj)1(\\241\\252)-334(za)-333(s)-1(erce)-334(t)28(ym)-334(sk)56(am)-1(leni)1(e)-1(m.)]TJ 27.879 -13.549 Td[(A)-305(w)-306(par)1(\\246)-306(pacie)-1(r)1(z)-1(y)-305(p)-27(o)-306(\\261niad)1(ani)1(u)-305(ju\\273)-306(ob)1(a)-56(j)-305(sz)-1(l)1(i)-306(d)1(o)-306(k)28(o\\261c)-1(i)1(o\\252a.)-306(K)1(uba)-305(ku)1(s)-1(zt)28(yk)56(a\\252)]TJ -27.879 -13.549 Td[(ra\\271no,)-345(a)-346(Wit)1(e)-1(k)-345(os)-1(ta)28(w)28(a\\252)-346(s)-1(i\\246)-346(n)1(ie)-1(co,)-346(b)-27(o)-346(m)28(u)-346(mark)28(otn)1(o)-346(b)28(y)1(\\252)-1(o,)-345(\\273)-1(e)-346(to)-345(nie)-346(mia\\252)-346(b)1(ut\\363)28(w,)]TJ 0 -13.549 Td[(in)1(o)-334(b)-27(oso)-334(sz)-1(ed\\252.)]TJ 27.879 -13.549 Td[({)-333(A)-334(cz)-1(y)-333(to)-333(mo\\273)-1(n)1(a)-334(d)1(o)-334(zakr)1(ys)-1(ti)1(i)-333(b)-28(oso,)-333(c)-1(o?)-333({)-334(p)29(yta\\252)-334(cic)27(h)1(o.)]TJ 0 -13.55 Td[({)-333(G\\252up)1(i\\261)-1(!)-333(P)29(an)-333(Je)-1(zus)-333(c)-1(i)-333(na)-333(b)1(ut)28(y)-333(c)-1(zyje)-333(z)-1(w)28(a\\273)-1(a,)-333(a)-333(ni)1(e)-334(na)-333(pacierze)-1(...)]TJ 0 -13.549 Td[({)-247(P)28(e)-1(wn)1(ie)-248(\\273e)-248(tak,)-247(in)1(o)-248(w)-247(but)1(ac)27(h)-247(to)-247(z)-1(a)28(w\\273)-1(d)1(y)-247(przysto)-56(j)1(niej.)1(..)-247({)-248(sz)-1(epta\\252)-247(sm)27(ut)1(niej.)]TJ 0 -13.549 Td[({)-333(Kup)1(isz)-334(t)28(y)-333(s)-1(obi)1(e)-334(jes)-1(zcz)-1(e)-334(b)1(ut)28(y)84(,)-333(kup)1(is)-1(z...)]TJ 0 -13.549 Td[({)-328(A)-328(ku)1(pi\\246,)-328(K)1(uba,)-327(kup)1(i\\246.)-328(Niec)27(h)-328(i)1(no)-328(p)-27(o)-28(d)1(ros)-1(n)1(\\246)-329(n)1(a)-328(par)1(obk)56(a,)-328(to)-328(zaraz)-328(p)-27(o)-56(jad)1(\\246)]TJ -27.879 -13.549 Td[(do)-230(W)84(arsz)-1(a)28(wy)-230(i)-230(z)-1(go)-28(d)1(z)-1(\\246)-230(s)-1(i\\246)-230(do)-230(k)28(oni.)1(..a)-230(w)-231(mie\\261)-1(cie)-231(to)-230(j)1(u\\273)-231(wsz)-1(ystkie)-230(c)27(ho)-27(dz\\241)-231(w)-230(bu)1(tac)27(h)1(,)]TJ 0 -13.55 Td[(pr)1(a)28(w)-1(d)1(a,)-333(Kub)1(a?)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(p)1(ra)28(wda!)-333({)-333(bacz)-1(ysz)-334(to)-333(jes)-1(zcz)-1(e?)]TJ\nET\nendstream\nendobj\n375 0 obj <<\n/Type /Page\n/Contents 376 0 R\n/Resources 374 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n374 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n379 0 obj <<\n/Length 9535      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(114)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(9.)]TJ/F17 10.909 Tf -270.504 -35.866 Td[({)-402(I)-403(j)1(ak!)-402(Pi)1(\\246)-1(\\242)-403(r)1(ok)28(\\363)28(w)-403(mia\\252e)-1(m,)-402(kiej)-402(m\\246)-403(Koz\\252o)28(w)27(a)-402(pr)1(z)-1(ywie\\271)-1(l)1(i,)-402(to)-402(i)-402(bacz)-1(\\246)-403(d)1(o-)]TJ -27.879 -13.549 Td[(br)1(z)-1(e...)-354(j)1(u\\261c)-1(i.)1(..)-354(z)-1(i)1(\\241b)-354(b)28(y\\252...)-354(p)1(iec)27(h)28(t)28(y\\261m)27(y)-354(sz)-1(li)-354(d)1(o)-355(masz)-1(yn)29(y)83(..)1(.)-354(bac)-1(z\\246...)-354(a)-354(tu)-354(t)28(yla)-354(jar)1(z)-1(\\241-)]TJ 0 -13.549 Td[(ce)-1(go)-356(\\261)-1(wiat\\252a..)1(.)-357(\\273e)-357(jesz)-1(cz)-1(e)-357(m\\246)-357(w)-357(o)-28(czac)27(h)-356(\\242)-1(mi.)1(..)-356(bac)-1(z\\246...)-356(a)-357(d)1(om)-357(kiele)-357(d)1(om)27(u)-356(i)-356(takie)]TJ 0 -13.549 Td[(wielgac)27(h)1(ne)-334(n)1(ic)-1(zym)-334(k)28(o\\261ci\\363\\252...)]TJ 27.879 -13.549 Td[({)-333(B)-1(a)-55(jes)-1(z!)-333({)-334(r)1(z)-1(u)1(c)-1(i)1(\\252)-334(wz)-1(gar)1(dli)1(w)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[({)-266(Bac)-1(z\\246)-266(dob)1(rz)-1(e,)-266(K)1(ub)1(a)-1(.)1(..)-266(p)1(rze)-1(ciem)-267(i)-265(dac)28(h\\363)28(w)-266(nie)-266(d)1(o)-56(jr)1(z)-1(a\\252..)1(.)-266(a)-266(t)28(yl)1(a)-266(p)-28(o)28(w)28(oz)-1(\\363)28(w...)]TJ -27.879 -13.549 Td[(okn)1(a)-330(d)1(o)-330(sam)-1(ej)-329(z)-1(i)1(e)-1(mi...)-329(j)1(u\\261c)-1(i.)1(..)-329(c)-1(a\\252e)-330(\\261c)-1(ian)29(y)-330(wid)1(z)-1(i)-329(mi)-330(si\\246)-330(ze)-330(s)-1(zyb)1(...)-329(i)-329(takie)-330(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(dzw)28(onienie...)]TJ 27.879 -13.549 Td[({)-333(Ko\\261)-1(cio\\252\\363)28(w)-334(t)28(yl)1(a,)-333(to)-334(i)-333(n)1(ie)-334(dziw)28(ota!)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(b)-27(o)-333(s)-1(k)56(\\241d\\273e)-334(b)28(y)-333(d)1(z)-1(w)28(onieni)1(a)-334(b)29(y\\252y?)]TJ 0 -13.549 Td[(Zmilkli)1(,)-338(b)-28(o)-338(ju)1(\\273)-339(w)27(esz)-1(li)-338(n)1(a)-339(cme)-1(n)28(tar)1(z)-339(i)-338(j\\246li)-338(s)-1(i)1(\\246)-339(pr)1(z)-1(ep)28(yc)28(ha\\242)-339(p)1(rze)-1(z)-339(g\\246s)-1(t)28(y)-338(t\\252u)1(m)-1(,)]TJ -27.879 -13.55 Td[(co)-334(b)28(y)1(\\252)-334(zaleg\\252)-334(d)1(o)-28(ok)28(o\\252a)-334(k)28(o\\261c)-1(i)1(o\\252)-1(a,)-333(\\273e)-334(to)-333(w)27(e)-333(\\261)-1(r)1(o)-28(dku)-332(p)-28(omie\\261)-1(ci\\242)-334(si\\246)-334(n)1(ie)-334(mogli.)]TJ 27.879 -13.549 Td[(Dziady)-396(u)1(c)-1(zyni)1(\\252)-1(y)-396(u)1(lic\\246)-397(o)-28(d)-396(g\\252\\363)28(w)-1(n)29(yc)27(h)-396(d)1(rz)-1(wi)-396(a\\273)-397(h)1(e)-1(n)-396(n)1(a)-397(d)1(rog\\246)-1(,)-396(a)-396(k)55(a\\273den)-396(na)]TJ -27.879 -13.549 Td[(sw)27(\\363)-55(j)-375(sp)-28(os\\363b)-375(si\\246)-375(wydziera\\252,)-375(a)-375(kr)1(z)-1(ycza\\252)-1(,)-374(a)-375(m)-1(o)-27(dli)1(\\252)-375(w)-376(g\\252os)-375(i)-375(d)1(oprasz)-1(a\\252)-375(wsp)-28(omo\\273e)-1(-)]TJ 0 -13.549 Td[(ni)1(a,)-355(a)-356(j)1(ak)-355(niekt\\363r)1(z)-1(y)-355(to)-355(i)-355(na)-355(skrzyp)1(k)55(ac)28(h)-355(p)-28(ogr)1(yw)28(ali,)-355(i)-355(pi)1(e)-1(\\261ni)-355(wyci\\241)-28(gali)-355(j)1(\\246)-1(k)1(liwymi)]TJ 0 -13.549 Td[(g\\252os)-1(ami,)-311(a)-312(d)1(rugi)1(e)-313(n)1(a)-312(pi)1(s)-1(zc)-1(za\\252k)56(ac)27(h)-311(lib)-27(o)-312(i)-312(h)1(armoni)1(k)55(ac)28(h,)-311(\\273)-1(e)-312(wrzas)-1(k)-311(s)-1(i\\246)-312(r)1(oz)-1(lega\\252,)-312(a\\273)]TJ 0 -13.55 Td[(w)-334(u)1(s)-1(zac)27(h)-333(wierci\\252o...)]TJ 27.879 -13.549 Td[(W)-345(zakrystii)-345(t)1(e)-1(\\273)-345(b)28(y\\252o)-345(naro)-27(du)-345(g\\246sto,)-345(a\\273)-346(\\273e)-1(b)1(ra)-345(trzes)-1(zc)-1(za\\252y)-345(przy)-345(stole,)-345(gdzie)]TJ -27.879 -13.549 Td[(organ)1(ista)-409(pr)1(z)-1(yj)1(mo)27(w)28(a\\252)-409(na)-408(wyp)-28(omin)1(ki,)-408(a)-409(pr)1(z)-1(y)-408(dr)1(ugim)-409(syn)-408(jego,)-409(Ja\\261,)-409(ten,)-408(c)-1(o)-408(to)]TJ 0 -13.549 Td[(b)28(y\\252)-333(w)28(e)-334(s)-1(zk)28(o\\252ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-272(do)-27(c)-1(isn\\241\\252)-272(si\\246)-273(p)1(rz\\363)-28(dzi)-272(i)-272(n)1(ie)-1(ma\\252\\241)-272(litan)1(i\\246)-273(i)1(m)-1(ion)-271(p)-28(o)-27(da\\252)-272(organ)1(i\\261)-1(cie,)-272(kt\\363ren)]TJ -27.879 -13.55 Td[(zapisyw)28(a\\252)-385(i)-384(b)1(ra\\252)-384(z)-1(a)-384(k)56(a\\273)-1(d)1(\\241)-384(dusz\\246)-385(p)-27(o)-385(sze)-1(\\261\\242)-385(grosz)-1(y)-384(al)1(b)-28(o)-384(i)-384(p)-27(o)-384(trzy)-384(ja)-55(jk)56(a,)-384(je\\261)-1(l)1(i)-384(kto)]TJ 0 -13.549 Td[(ni)1(e)-334(mia\\252)-334(goto)28(wyc)27(h)-332(pieni\\246dzy)84(.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-387(os)-1(ta\\252)-387(nieco)-388(w)-388(t)28(yl)1(e)-1(,)-387(\\273)-1(e)-388(go)-387(to)-388(p)-27(o)-387(b)-28(osyc)27(h)-387(n)1(ogac)27(h)-387(s)-1(r)1(o)-28(dze)-388(dept)1(ali,)-387(ale)]TJ -27.879 -13.549 Td[(si\\246)-403(p)-27(c)27(h)1(a\\252,)-402(jak)-401(m)-1(\\363g\\252,)-402(c)28(ho)-28(\\242)-402(ta)-402(i)-402(n)1(iejeden)-402(bu)1(rkn)1(\\241\\252,)-402(\\273e)-403(to)-402(si\\246)-402(to)-402(p)-28(o)-27(d)-402(\\252ok)28(cie)-403(ci\\261nie)]TJ 0 -13.549 Td[(a)-374(starsz)-1(ym)-374(zas)-1(t\\241)-28(p)1(ia,)-374(p)1(ie)-1(n)1(i\\241d)1(z)-1(e)-374(w)-375(gar)1(\\261)-1(ci)-374(\\261c)-1(isk)56(a\\252)-374({)-374(dop)1(ie)-1(r)1(o)-374(kiej)-374(go)-374(d)1(op)-28(c)28(hn\\246li)-374(d)1(o)]TJ 0 -13.55 Td[(sto\\252u,)-339(wprost)-339(organi)1(s)-1(t)28(y)84(,)-339(z)-1(ap)-27(om)-1(n)1(ia\\252)-339(j\\246z)-1(yk)56(a)-339(w)-340(g\\246bie...)-339(Jak)1(\\273)-1(e,)-339(gos)-1(p)-27(o)-28(dar)1(z)-1(e)-339(s)-1(ami;)-339(a)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(yn)1(ie)-342(in)1(o,)-341(c)-1(a\\252a)-341(w)-1(i)1(e)-1(\\261)-342(p)1(ra)28(wie)-1(,)-341(b)-27(o)-341(i)-341(m)-1(\\252yn)1(arzo)27(w)28(a)-341(w)-342(k)56(ap)-27(e)-1(lu)1(s)-1(zu)-341(kiej)-341(d)1(z)-1(iedzicz)-1(-)]TJ 0 -13.549 Td[(k)56(a,)-372(i)-372(k)28(o)28(w)27(alo)28(wie,)-372(i)-372(w)27(\\363)-55(jt)-372(ze)-373(sw)27(o)-55(j\\241..)1(.)-372(a)-372(w)-1(sz)-1(y)1(s)-1(cy)-372(patr)1(z)-1(\\241)-372(w)-372(niego...)-372(t)1(o)-373(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241..)1(.)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(p)-28(omin)1(a)-56(j\\241)-312(sobie)-312(w)-313(g\\252os)-312(dusze)-313(r\\363\\273ne...)-312(i)-312(p)-27(o)-312(dzies)-1(i\\246\\242)-1(.)1(..)-312(i)-312(p)-27(o)-313(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(i)1(a)-313(i)1(m)-1(ion)]TJ 0 -13.549 Td[(p)-27(o)-28(da)-55(j\\241..)1(.)-405(z)-1(a)-405(ca\\252\\241)-405(famili)1(\\246)-1(..)1(.)-405(z)-1(a)-405(o)-55(jc\\363)27(w,)-405(d)1(z)-1(i)1(ad\\363)28(w)-405(i)-405(pr)1(adziad\\363)28(w...)-405(A)-405(on)-404(c)-1(o?..)1(.)-405(Wie)]TJ 0 -13.55 Td[(to,)-355(kto)-355(jego)-356(ma\\242)-1(?)-355(Kto)-356(o)-55(jciec)-1(?...)-355(Wi)1(e)-1(?...)-355(Ma)-355(to)-355(da\\242)-356(za)-356(k)28(ogo?...)-355(Jez)-1(u)-355(m\\363)-56(j)1(!)-355(Je)-1(zu-)]TJ 0 -13.549 Td[(sic)-1(zku)1(...)-342(to)-341(ino)-341(g\\246)-1(b)-27(\\246)-343(sze)-1(rok)28(o)-341(ot)28(w)27(orzy\\252)-342(i)-341(te)-342(o)-28(c)-1(zy)-342(mo)-28(d)1(re)-342(i)-342(sto)-56(j)1(a\\252)-342(nieru)1(c)27(ha)28(wy)-342(j)1(ak)28(o)]TJ 0 -13.549 Td[(ten)-299(g\\252up)1(i)-300(i)-299(se)-1(r)1(c)-1(e)-299(m)27(u)-299(si\\246)-300(skur)1(c)-1(zy\\252o)-300(z)-299(b)-28(ol)1(e)-1(n)1(ia,)-299(\\273)-1(e)-300(l)1(e)-1(d)1(w)-1(i)1(e)-300(z)-1(i)1(pa\\252,)-299(ledwie)-300(m\\363g\\252)-300(z\\252apa\\242)]TJ 0 -13.549 Td[(tego)-392(d)1(e)-1(c)28(h)28(u..)1(.)-392(i)-391(tak)-391(m)28(u)-391(s)-1(i\\246)-391(c)27(kn)1(o)-392(zrob)1(i\\252o)-392(w)-391(do\\252ku)1(,)-392(j)1(akb)28(y)-391(j)1(u\\273)-392(mia\\252)-391(os)-1(tatn)1(i\\241)-391(par\\246)]TJ 0 -13.549 Td[(pu)1(\\261)-1(ci\\242...)-288(ale)-289(n)1(ie)-289(d)1(os)-1(to)-55(ja\\252)-288(tak,)-288(b)-28(o)-288(go)-289(o)-27(dep)-28(c)28(hn)1(\\246)-1(li)-288(w)-289(k)56(\\241t,)-288(p)-27(o)-28(d)-288(kr)1(opielni)1(c)-1(\\246,)-288(to)-289(si\\246)-289(in)1(o)]TJ 0 -13.549 Td[(ws)-1(p)1(ar\\252)-367(g\\252o)28(win\\241)-367(o)-366(on\\241)-367(mis\\246)-367(c)-1(yn)1(o)28(w)27(\\241,)-366(\\273)-1(eb)28(y)-367(n)1(ie)-367(pa\\261\\242)-1(,)-366(a)-367(\\252z)-1(y)-366(to)-367(m)27(u)-366(j)1(ak)-367(te)-367(paciork)1(i)]TJ 0 -13.55 Td[(su\\252y)-418(s)-1(i\\246)-418(z)-419(o)-28(c)-1(z\\363)28(w...)-418(jak)-418(te)-419(r)1(\\363\\273)-1(a\\253)1(c)-1(e)-419(\\273a\\252os)-1(n)1(e)-1(..)1(.)-419(i)-418(p)1(r\\363\\273)-1(n)1(o)-419(j)1(e)-419(c)27(h)1(c)-1(i)1(a\\252)-419(p)-27(o)27(wstrzyma\\242)-1(..)1(.)]TJ 0 -13.549 Td[(dar)1(e)-1(mni)1(e)-1(..)1(.)-355(i)-354(tak)-354(s)-1(i\\246)-355(tr)1(z)-1(\\241s\\252)-355(w)-355(sobie,)-354(tak)-355(d)1(ygota\\252)-355(k)56(a\\273d\\241)-355(k)28(ostec)-1(zk)55(\\241,)-354(\\273e)-356(an)1(i)-354(z)-1(\\246b)-28(\\363)28(w)]TJ 0 -13.549 Td[(ze)-1(wrze)-1(\\242)-377(nie)-377(m)-1(\\363g\\252,)-377(an)1(i)-377(ustoi\\242)-378(p)1(rosto;)-377(przysiad\\252)-377(w)-377(k)55(\\241cie)-378(n)1(a)-377(p)-28(o)-28(d)1(\\252o)-28(dze,)-377(o)-28(d)-377(o)-28(cz)-1(\\363)28(w)]TJ 0 -13.549 Td[(lu)1(dzkic)27(h)1(,)-333(i)-333(p\\252ak)56(a\\252)-334(r)1(z)-1(ew)-1(n)29(ymi,)-333(s)-1(iero)-27(c)-1(ymi)-333(\\252z)-1(ami..)1(:)]TJ 27.879 -13.549 Td[({)-317(M)1(atulu)1(!)-317(Mat)1(ulu)1(!)-317({)-317(sk)56(am)-1(la\\252o)-316(w)-317(nim)-317(cos)-1(ik)-316(i)-317(o\\271dziera\\252o)-317(m)27(u)-316(du)1(s)-1(z\\246)-317(do)-317(d)1(na.)]TJ -27.879 -13.55 Td[(A)-461(p)-27(omiark)28(o)28(w)28(a\\242)-462(n)1(ie)-461(m)-1(\\363g\\252)-461(n)1(i)-461(r)1(oz)-1(ez)-1(n)1(a\\242)-1(,)-460(c)-1(ze)-1(m)28(u)-460(to)-461(ws)-1(zys)-1(cy)-461(o)-55(jc\\363)28(w)-461(m)-1(a)-55(j\\241,)-460(m)-1(atk)1(i)]TJ 0 -13.549 Td[(ma)-56(j)1(\\241,)-334(a)-333(on)-333(j)1(e)-1(d)1(e)-1(n)-333(sierota,)-333(on)-333(jeden)-333(t)28(ylk)28(o,)-333(on)-333(j)1(e)-1(d)1(e)-1(n)1(...)]TJ\nET\nendstream\nendobj\n378 0 obj <<\n/Type /Page\n/Contents 379 0 R\n/Resources 377 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 364 0 R\n>> endobj\n377 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n382 0 obj <<\n/Length 9286      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(115)]TJ -330.353 -35.866 Td[({)-445(Jez)-1(u)-444(m\\363)-56(j)1(,)-445(Jez)-1(u)1(!...)-444({)-445(c)27(h)1(lip)1(a\\252)-445(i)-445(zanosi\\252)-445(s)-1(i)1(\\246)-446(j)1(ak)28(o)-445(ten)-445(p)1(tas)-1(zek)-445(du)1(s)-1(zon)28(y)-444(w)]TJ -27.879 -13.549 Td[(sid\\252ac)27(h)1(,)-333(dop)1(ie)-1(r)1(o)-334(K)1(uba)-333(go)-333(o)-28(dn)1(alaz\\252)-334(i)-333(za)27(w)28(o\\252a\\252:)]TJ 27.879 -13.549 Td[({)-333(Witek,)-333(da\\252e\\261)-334(to)-333(ju)1(\\273)-334(na)-333(wyp)-27(om)-1(in)1(ki?)]TJ 0 -13.549 Td[({)-275(Nie)-276({)-276(o)-27(drze)-1(k)1(\\252,)-276(p)-27(orw)28(a\\252)-276(si\\246)-276(z)-276(n)1(ag\\252a,)-276(wytar)1(\\252)-276(o)-28(czy)-276(i)-275(z)-276(mo)-28(c\\241)-276(j)1(\\241\\252)-276(i\\261\\242)-276(do)-275(s)-1(to\\252u)1(...)]TJ -27.879 -13.549 Td[(tak)-227(i)-227(on)-227(p)-27(o)-28(d)1(a)-228(i)1(m)-1(i)1(ona...)-227(co)-227(ta)-227(m)-1(a)-55(j\\241)-227(wiedzie)-1(\\242,)-227(\\273e)-228(ni)1(e)-228(ma)-228(n)1(ik)28(ogo...)-227(p)-27(o)-227(c)-1(o.)1(..)-227(s)-1(i)1(e)-1(r)1(ota,)-227(to)]TJ 0 -13.55 Td[(la)-281(siebie...a)-281(zna)-55(jd)1(a)-281(,)-281(to)-281(zna)-55(jda.)1(..)-281(Zadzier\\273ys)-1(t)1(o)-281(p)-28(o)28(wi\\363)-28(d)1(\\252)-281(o)-28(c)-1(zami)-281(i)-281(p)-27(e)-1(wn)28(ym)-281(g\\252ose)-1(m)]TJ 0 -13.549 Td[(p)-27(o)-28(da\\252)-429(i)1(m)-1(i)1(ona:)-428(J\\363z)-1(efy)84(,)-429(M)1(arian)1(n)28(y)-429(i)-428(An)28(ton)1(ie)-1(go,)-428(te,)-429(co)-429(m)27(u)-428(p)1(ie)-1(r)1(w)-1(sz)-1(e)-429(p)1(rzys)-1(z\\252y)-429(n)1(a)]TJ 0 -13.549 Td[(pami\\246\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(Zap\\252aci\\252,)-376(wz)-1(i)1(\\241\\252)-377(r)1(e)-1(sz)-1(t\\246)-376(i)-376(p)-27(os)-1(ze)-1(d)1(\\252)-376(z)-377(Ku)1(b\\241)-376(n)1(a)-377(k)28(o\\261ci\\363\\252)-376(p)-28(omo)-28(d)1(li\\242)-376(s)-1(i\\246)-376(i)-376(wys)-1(\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\242)-1(,)-333(j)1(ak)-333(ks)-1(i\\241d)1(z)-334(wyp)-27(om)-1(n)1(i)-333(jego)-334(d)1(usz)-1(e...)]TJ 27.879 -13.549 Td[(Na)-319(\\261ro)-28(d)1(ku)-318(k)28(o\\261)-1(cio\\252a)-319(sta\\252)-319(k)56(atafalk)-318(z)-320(t)1(rumn\\241)-318(na)-319(wierzc)27(h)28(u)-318(obsta)28(wion\\241)-319(j)1(arz\\241-)]TJ -27.879 -13.55 Td[(cym)-1(i)-366(\\261)-1(wiat\\252ami,)-367(a)-367(ksi\\241dz)-367(z)-368(am)28(b)-28(on)29(y)-367(wyp)-28(omin)1(a\\252)-367(nies)-1(k)28(o\\253)1(c)-1(zone)-367(litan)1(ie)-368(i)1(m)-1(i)1(on)-367({)-367(a)]TJ 0 -13.549 Td[(co)-428(p)1(rz)-1(erw)28(a\\252,)-427(o)-28(dp)-27(o)28(w)-1(i)1(ada\\252)-427(m)27(u)-427(g\\252o\\261)-1(n)29(y)-427(pacie)-1(r)1(z)-1(,)-427(m\\363)27(wion)29(y)-428(p)1(rze)-1(z)-428(wsz)-1(y)1(s)-1(tki)1(c)27(h)-427(za)-428(te)]TJ 0 -13.549 Td[(zm)-1(ar)1(\\252)-1(e)-333(w)-334(cz)-1(y\\261c)-1(u)-332(os)-1(ta)-55(j\\241ce)-1(.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-446(p)1(rzykl\\246kn)1(\\241\\252)-446(przy)-446(Ku)1(bi)1(e)-1(,)-446(k)1(t\\363ren)-446(wyci\\241)-28(gn)1(\\241\\252)-446(z)-447(zanad)1(rza)-446(k)28(oron)1(k)28(\\246)-447(i)]TJ -27.879 -13.549 Td[(j\\241\\252)-323(o)-27(dma)28(w)-1(i)1(a)-1(\\242)-323(ws)-1(zystkie)-323(Zdr)1(o)27(w)28(a\\261)-323(i)-323(Wierz\\246)-1(,)-322(jaki)1(e)-324(ksi\\241d)1(z)-324(n)1(ak)56(az)-1(yw)28(a\\252;)-323(zm)-1(\\363)28(wi\\252)-323(i)-323(on)]TJ 0 -13.55 Td[(pacierz)-263(j)1(e)-1(d)1(e)-1(n)-262(i)-262(dr)1(ugi,)-262(ale)-262(z)-1(morzy\\252y)-262(go)-263(w)-262(k)28(o\\253cu)-262(m)-1(on)1(otonn)1(e)-263(g\\252os)-1(y)-262(mo)-28(dli)1(t)28(w)-1(,)-262(ciep\\252o)]TJ 0 -13.549 Td[(i)-333(wyc)-1(zerpan)1(ie)-334(p)1(\\252)-1(acze)-1(m,)-333(to)-334(si\\246)-334(\\271dziebk)28(o)-333(ws)-1(p)1(ar\\252)-334(o)-333(b)1(ie)-1(d)1(ro)-333(Kub)29(y)-333(i)-334(zasn\\241\\252...)]TJ 27.879 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)]TJ 0 -13.549 Td[(P)28(o)-362(p)-28(o\\252u)1(dn)1(iu,)-362(na)-362(niesz)-1(p)-27(ory)84(,)-363(j)1(akie)-363(si\\246)-363(o)-28(d)1(pra)28(wia\\252y)-362(raz)-363(w)-363(r)1(ok)-363(w)-362(c)-1(me)-1(n)29(tarnej)]TJ -27.879 -13.549 Td[(k)56(apli)1(c)-1(y)84(,)-333(p)-28(o)-28(ci\\241)-28(gn)1(\\246)-1(l)1(i)-333(w)-1(sz)-1(y)1(s)-1(cy)-333(o)-28(d)-333(Boryn)28(y)84(.)]TJ 27.879 -13.55 Td[(Szli)-440(An)28(tk)28(o)28(wie)-441(z)-441(dzie\\242)-1(mi,)-440(s)-1(zli)-440(k)28(o)28(w)27(alo)28(wie,)-441(sz)-1(\\252a)-440(J\\363z)-1(k)56(a)-440(z)-441(Jagust)27(y)1(nk)56(\\241,)-440(a)-441(na)]TJ -27.879 -13.549 Td[(k)28(o\\253cu)-333(ku)1(s)-1(zt)28(yk)56(a\\252)-334(Ku)1(ba)-333(z)-334(Wi)1(tkiem)-334({)-333(b)28(yc)27(h)-332(ju\\273)-333(t)28(yc)27(h)-333(\\261wi\\241tk)28(\\363)28(w)-334(za\\273)-1(y\\242)-333(do)-333(c)-1(n)1(a.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-382(j)1(u\\273)-382(przywiera\\252)-383(sz)-1(ar)1(e)-1(,)-382(zm)-1(\\246cz)-1(one)-382(p)-28(o)28(wieki.)-382(gas)-1(n)1(\\241\\252)-383(i)-382(zapad)1(a\\252)-383(z)-383(w)28(olna)]TJ -27.879 -13.549 Td[(w)-483(p)1(rz)-1(era\\273a)-56(j)1(\\241c)-1(e,)-483(sm)27(u)1(tne)-483(top)1(iele)-483(z)-1(mrok)28(\\363)28(w;)-483(wiatr)-482(si\\246)-483(p)-28(or)1(usz)-1(y\\252)-482(i)-483(p)1(rz)-1(eci\\241)-28(ga\\252)-483(p)-27(o)]TJ 0 -13.549 Td[(p)-27(olac)27(h)-416(z)-418(j)1(\\246)-1(k)1(ie)-1(m,)-416(t\\252)-1(u)1(k\\252)-417(si\\246)-417(m)-1(i)1(\\246)-1(d)1(z)-1(y)-417(d)1(rze)-1(win)1(am)-1(i)-416(a)-417(wion\\241\\252)-417(sur)1(o)28(w)-1(y)1(m)-1(,)-416(prze)-1(gn)1(i\\252ym)]TJ 0 -13.55 Td[(tc)27(h)1(e)-1(m)-333(jes)-1(i)1(e)-1(ni)1(.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-383(b)28(y\\252o,)-383(t\\241)-383(dziwnie)-383(p)-28(os\\246)-1(p)1(n\\241)-383(cic)27(h)1(o\\261)-1(ci\\241)-383(Zadusze)-1(k;)-383(t\\252u)1(m)27(y)-383(sz)-1(\\252y)-383(d)1(rog\\241)-383(w)]TJ -27.879 -13.549 Td[(suro)28(wym)-281(milcz)-1(eni)1(u,)-280(in)1(o)-281(tu)1(p)-28(ot)-280(n\\363g)-280(s)-1(i)1(\\246)-281(rozle)-1(ga\\252)-280(g\\252uc)27(h)1(o,)-280(ino)-280(te)-281(dr)1(z)-1(ew)27(a)-280(pr)1(z)-1(y)1(dro\\273ne)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(i)1(a\\252)-1(y)-374(s)-1(i)1(\\246)-375(nies)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-376(i)-374(c)-1(i)1(c)27(h)28(y)-374(a)-375(b)-27(oles)-1(n)28(y)-374(s)-1(zum)-375(ga\\252\\246z)-1(i)-374(dr)1(\\273)-1(a\\252)-375(n)1(ad)-374(g\\252)-1(o)28(w)28(am)-1(i)1(,)-375(in)1(o)]TJ 0 -13.549 Td[(te)-334(gr)1(ania)-333(i)-333(\\261)-1(p)1(iew)-1(y)-333(p)1(rosz)-1(aln)1(e)-334(dziad)1(\\363)27(w)-333(\\252k)56(a\\252)-1(y)-333(w)-333(p)-28(o)28(wietrzu)-333(i)-333(opad)1(a\\252)-1(y)-333(b)-27(ez)-334(e)-1(c)28(ha...)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(ed)-319(w)-1(r)1(\\363tni)1(am)-1(i,)-319(a)-320(n)1(a)28(w)27(et)-320(i)-319(w\\261)-1(r)1(\\363)-28(d)-319(m)-1(ogi\\252,)-319(p)-27(o)-28(d)-319(m)27(u)1(re)-1(m,)-319(s)-1(ta\\252y)-319(rz\\246)-1(d)1(y)-320(b)-27(ec)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(sol\\363)28(w)27(ek,)-333(a)-334(ob)-27(ok)-333(ni)1(c)27(h)-333(rozk\\252ada\\252y)-333(si\\246)-334(gr)1(om)-1(ad)1(y)-334(d)1(z)-1(i)1(ad\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-398(n)1(ar\\363)-28(d)-397(p)1(\\252yn\\241\\252)-398(ca\\252\\241)-398(d)1(rog\\241)-398(p)-27(o)-28(d)-397(top)-27(olami)-398(ku)-397(cm)-1(en)28(tar)1(z)-1(o)28(wi;)-397(w)-398(m)-1(r)1(oku,)-397(c)-1(o)]TJ -27.879 -13.549 Td[(b)28(y\\252)-494(j)1(u\\273)-494(przytr)1(z)-1(\\241s\\252)-494(\\261)-1(wiat)-494(j)1(akb)28(y)-494(p)-27(opi)1(o\\252e)-1(m)-494(s)-1(zarym,)-494(b)1(\\252ys)-1(k)56(a\\252y)-494(\\261w)-1(i)1(at\\252a)-494(\\261)-1(wiec)-1(ze)-1(k)1(,)]TJ 0 -13.549 Td[(jak)1(ie)-400(m)-1(ieli)-400(n)1(iekt\\363rzy)83(,)-399(i)-400(c)27(h)29(w)-1(i)1(a\\252)-1(y)-399(s)-1(i)1(\\246)-401(\\273\\363\\252te)-401(p)1(\\252om)27(yk)1(i)-400(lamp)-28(ek)-400(ma\\261)-1(l)1(an)28(yc)27(h)1(,)-400(a)-400(k)56(a\\273dy)84(,)]TJ 0 -13.549 Td[(ni)1(m)-355(wsz)-1(ed\\252)-354(na)-354(cm)-1(en)28(tar)1(z)-1(,)-354(wyci\\241)-28(ga\\252)-354(z)-354(tob)-28(o\\252k)56(a)-354(c)27(h)1(le)-1(b)1(,)-354(to)-354(se)-1(r,)-353(to)-354(\\271)-1(d)1(z)-1(iebk)28(o)-354(s\\252onin)29(y)]TJ 0 -13.55 Td[(alb)-27(o)-341(kie\\252basy)83(,)-341(to)-341(motek)-341(pr)1(z)-1(\\246dzy)-341(lu)1(b)-341(t\\246)-342(p)1(rzygar\\261\\242)-342(l)1(n)28(u)-341(wycz)-1(es)-1(an)1(e)-1(go,)-341(t)1(o)-341(grz)-1(y)1(b)-28(\\363)28(w)]TJ 0 -13.549 Td[(wianek,)-472(i)-472(s)-1(k)1(\\252adali)-472(to)-472(ws)-1(zys)-1(t)1(k)28(o)-473(p)-27(ob)-27(o)-1(\\273ni)1(e)-473(w)-473(b)-27(ec)-1(zki)-472({)-473(a)-472(b)28(y\\252y)-472(on)1(e)-473(ksi\\246)-1(\\273e)-1(,)-472(b)29(y\\252y)]TJ 0 -13.549 Td[(organ)1(isto)27(w)28(e)-416(i)-415(Jam)27(b)1(ro\\273e)-1(go,)-415(a)-415(res)-1(zta)-416(d)1(z)-1(iad)1(o)28(w)-1(skie,)-415(a)-416(k)1(t\\363ren)-415(w)-416(ni)1(e)-416(nie)-415(k\\252ad\\252,)-415(to)]TJ 0 -13.549 Td[(grosz)-325(j)1(aki)-324(w)27(cis)-1(k)56(a\\252)-324(w)-325(wyci\\241)-28(gn)1(i\\246)-1(te)-324(r\\246c)-1(e)-325(d)1(z)-1(i)1(ado)28(ws)-1(ki)1(e)-1(..)1(.)-325(i)-324(sz)-1(epta\\252)-324(imion)1(a)-325(zm)-1(ar)1(\\252yc)27(h)1(,)]TJ 0 -13.549 Td[(za)-334(kt)1(\\363re)-334(p)1(ros)-1(i)1(\\252)-334(o)-333(pacierz)-1(.)1(..)]TJ 27.879 -13.55 Td[(Ch\\363r)-358(mo)-28(d\\252\\363)28(w,)-359(\\261pi)1(e)-1(w)28(\\363)27(w,)-358(imion)-358(wyp)-28(omin)1(an)28(yc)28(h)-359(j)1(\\246)-1(k)1(liwym)-359(ry)1(tm)-1(em)-359(wz)-1(n)1(os)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-305(w)27(ci\\241\\273)-305(nad)-304(w)-1(r)1(\\363tni)1(am)-1(i,)-304(a)-305(lu)1(dzie)-305(pr)1(z)-1(ec)27(ho)-27(dzili)-305({)-304(s)-1(zli)-305(d)1(alej,)-304(roz)-1(p)1(rasz)-1(al)1(i)-305(si\\246)-305(w)-1(\\261r\\363)-28(d)]TJ\nET\nendstream\nendobj\n381 0 obj <<\n/Type /Page\n/Contents 382 0 R\n/Resources 380 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n380 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n386 0 obj <<\n/Length 9337      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(116)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(9.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(mogi\\252,)-461(i\\273)-461(wnet,)-461(nib)29(y)-461(rob)1(ac)-1(zki)-461(\\261wi\\246)-1(to)-55(ja\\253)1(s)-1(ki)1(e)-1(,)-461(j)1(\\246)-1(\\252y)-460(ja\\261nie\\242)-462(i)-461(migota\\242)-461(\\261w)-1(i)1(ate)-1(\\252k)56(a)]TJ 0 -13.549 Td[(ws)-1(k)1(r\\363\\261)-334(mrok)28(\\363)28(w)-334(i)-333(g\\241sz)-1(cz)-1(\\363)28(w)-333(drze)-1(w,)-333(i)-333(tra)28(w)-333(z)-1(es)-1(c)28(hn)1(i\\246)-1(t)28(yc)28(h.)]TJ 27.879 -13.549 Td[(G\\252u)1(c)27(h)28(y)84(,)-412(p)1(rz)-1(y)1(c)-1(iszo)-1(n)29(y)-412(tr)1(w)27(o\\273nie)-412(sz)-1(ept)-412(p)1(ac)-1(i)1(e)-1(rzy)-412(d)1(rga\\252)-412(w)-412(pr)1(z)-1(y)1(z)-1(iemnej)-412(cis)-1(zy;)]TJ -27.879 -13.549 Td[(cz)-1(ase)-1(m)-323(s)-1(zlo)-28(c)28(h)-323(b)-27(oles)-1(n)28(y)-322(z)-1(erw)28(a\\252)-324(si\\246)-323(z)-324(mogi\\252;)-323(cz)-1(asem)-324(lamen)28(t)-323(\\273)-1(a\\252osn)28(y)-323(wi\\252)-323(si\\246)-323(w)-324(r)1(oz)-1(-)]TJ 0 -13.549 Td[(dziera)-55(j\\241cyc)27(h)-316(s)-1(kr)1(\\246)-1(tac)28(h)-317(w\\261r\\363)-28(d)-316(krzy\\273\\363)27(w;)-316(to)-317(jaki)1(\\261)-318(n)1(ag\\252y)83(,)-316(kr\\363tki)1(,)-317(nab)1(rzm)-1(i)1(a\\252y)-317(rozpa-)]TJ 0 -13.55 Td[(cz)-1(\\241)-311(kr)1(z)-1(yk)1(,)-311(jak)-311(p)1(ioru)1(n,)-310(roz)-1(d)1(z)-1(i)1(e)-1(ra\\252)-311(p)-27(o)28(wie)-1(tr)1(z)-1(e)-311(alb)-27(o)-311(c)-1(ic)28(he)-311(p\\252acz)-1(e)-311(dzie)-1(ci\\246c)-1(e)-311({)-311(s)-1(i)1(e)-1(r)1(o)-28(c)-1(e)]TJ 0 -13.549 Td[(p\\252acz)-1(e)-333(kwili\\252y)-333(w)-333(o)-1(mro)-27(c)-1(zon)28(yc)28(h)-333(g\\241s)-1(zc)-1(zac)27(h)-333(n)1(ib)28(y)-333(p)1(is)-1(kl)1(\\246)-1(ta.)1(..)]TJ 27.879 -13.549 Td[(A)-295(c)28(h)28(wilami)-295(opad)1(a\\252o)-295(na)-295(cme)-1(n)28(t)1(arz)-295(g\\252)-1(u)1(c)27(h)1(e)-296(i)-294(c)-1(i\\246\\273kie)-295(m)-1(i)1(lc)-1(ze)-1(n)1(ie,)-295(\\273e)-296(in)1(o)-295(dr)1(z)-1(ew)27(a)]TJ -27.879 -13.549 Td[(sz)-1(u)1(m)-1(ia\\252y)-440(p)-27(os)-1(\\246pn)1(ie,)-440(a)-441(ec)27(h)1(a)-441(p)1(\\252ak)55(a\\253)-440(l)1(udzkic)28(h,)-440(sk)55(ar)1(g,)-440(krzyk)28(\\363)28(w)-441(b)-27(oles)-1(n)28(y)1(c)27(h)-440(\\273a\\252o\\261)-1(ci)]TJ 0 -13.549 Td[(bi)1(\\252y)-334(k)1(u)-333(niebu)1(,)-333(w)-334(\\261w)-1(i)1(at)-334(ca\\252y)-333(s)-1(z\\252y)83(.)1(..)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-375(sn)28(u)1(li)-374(si\\246)-374(w\\261)-1(r\\363)-27(d)-374(mogi\\252)-374(cic)27(h)1(o,)-374(sz)-1(eptal)1(i)-374(l\\246kli)1(w)-1(i)1(e)-375(i)-373(trw)28(o\\273)-1(n)1(ie)-374(p)-28(ogl)1(\\241dali)]TJ -27.879 -13.55 Td[(w)-334(d)1(al)-333(om)-1(r)1(o)-28(cz)-1(on)1(\\241,)-334(n)1(iez)-1(g\\252\\246bion)1(\\241...)]TJ 27.879 -13.549 Td[({)-426(Ka\\273dy)-426(u)1(m)-1(iera!)-426({)-426(wz)-1(d)1(yc)27(h)1(ali)-426(ci\\246)-1(\\273k)28(o)-426(z)-427(k)56(amie)-1(n)1(n\\241)-426(rezygnacj\\241)-426(i)-426(wlekli)-426(si\\246)]TJ -27.879 -13.549 Td[(dal)1(e)-1(j)-440(,)-440(p)1(rzysiadali)-440(p)1(rzy)-440(grob)1(ac)27(h)-440(o)-55(jc\\363)27(w)-440(,)-440(m\\363)27(wil)1(i)-440(pacie)-1(r)1(z)-1(e,)-440(to)-440(s)-1(i)1(e)-1(d)1(z)-1(ieli)-440(cis)-1(i)1(,)-440(z)-1(a-)]TJ 0 -13.549 Td[(du)1(mani,)-385(g\\252u)1(s)-1(i)-385(n)1(a)-386(\\273ycie)-1(,)-384(g\\252)-1(u)1(s)-1(i)-385(n)1(a)-385(\\261)-1(mier\\242,)-385(g\\252)-1(u)1(s)-1(i)-384(na)-385(b)-28(\\363l)-385({)-385(j)1(ak)-385(te)-386(d)1(rze)-1(w)28(a,)-385(i)-385(jak)-385(te)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a)-333(k)28(oleba\\252y)-333(si\\246)-334(im)-333(dusze)-334(w)-334(se)-1(n)1(n)28(ym)-333(p)-28(o)-28(czuciu)-333(trw)28(ogi...)]TJ 27.879 -13.55 Td[({)-347(Jez)-1(u)1(s)-348(m\\363)-55(j!)-347(P)28(an)1(ie)-347(m)-1(i)1(\\252os)-1(iern)28(y)84(,)-347(M)1(ario!)-347({)-346(rw)27(a\\252o)-347(si\\246)-347(im)-347(z)-348(d)1(usz)-348(u)1(m\\246)-1(cz)-1(on)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(zam)-1(\\246te)-1(m)-295(i)-294(p)-28(o)-27(dnosili)-294(t)28(w)27(ar)1(z)-1(e)-295(z)-1(ak)1(rz)-1(ep\\252e)-295(i)-295(wycze)-1(rp)1(ane)-295(j)1(a)-1(k)-294(ta)-295(zie)-1(mia)-294(\\261)-1(wi\\246ta,)-295(a)-295(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(sz)-1(are)-374(ni)1(b)28(y)-374(te)-375(k)56(a\\252u\\273e,)-374(c)-1(o)-374(si\\246)-375(j)1(e)-1(sz)-1(cz)-1(e)-374(s)-1(i)1(w)-1(i)1(\\252)-1(y)-373(w)-375(mrok)56(ac)27(h)1(,)-374(wie)-1(sz)-1(al)1(i)-374(u)-374(kr)1(z)-1(y\\273\\363)28(w)-375(i)-374(r)1(u-)]TJ 0 -13.549 Td[(c)27(h)1(am)-1(i)-279(t)28(yc)28(h)-279(drze)-1(w)-279(rozc)27(h)28(wian)28(y)1(c)27(h)-279(se)-1(n)1(nie)-280(osu)28(w)28(ali)-279(s)-1(i\\246)-280(n)1(a)-280(k)28(ol)1(ana;)-279(do)-279(s)-1(t\\363p)-279(Ch)1(rystusa)]TJ 0 -13.549 Td[(rzucali)-333(se)-1(rca)-333(s)-1(tr)1(w)27(o\\273one)-334(i)-333(wyb)1(uc)27(h)1(ali)-333(\\261w)-1(i)1(\\246)-1(t)28(ym)-333(p\\252ac)-1(ze)-1(m)-333(o)-28(dd)1(ani)1(a)-334(si\\246)-334(i)-333(rezygnacji.)]TJ 27.879 -13.55 Td[(Ku)1(ba)-300(z)-302(W)1(itkiem)-301(c)27(h)1(o)-28(dzili)-300(raze)-1(m)-300(z)-302(d)1(ru)1(gimi,)-301(a)-300(gdy)-300(ju)1(\\273)-301(do)-301(cna)-300(p)-28(o)-27(c)-1(iemnia\\252o,)]TJ -27.879 -13.549 Td[(Ku)1(ba)-333(p)-28(o)28(wl\\363k\\252)-333(s)-1(i)1(\\246)-334(w)-334(g\\252\\241b)1(,)-333(na)-333(s)-1(tar)1(y)-333(c)-1(me)-1(n)29(tarz.)]TJ 27.879 -13.549 Td[(A)-335(tam)-335(na)-334(z)-1(ap)1(adni)1(\\246)-1(t)28(yc)28(h)-335(gr)1(obac)27(h)-334(c)-1(i)1(c)27(ho)-334(b)28(y\\252o,)-335(p)1(usto)-335(i)-335(mro)-28(czno)-335({)-335(tam)-335(le\\273)-1(eli)]TJ -27.879 -13.549 Td[(zap)-28(omni)1(ani,)-408(o)-409(kt\\363r)1(yc)27(h)-408(i)-408(pami\\246\\242)-410(u)1(mar\\252a)-409(d)1(a)27(wn)1(o)-409({)-409(j)1(ak)28(o)-409(i)-408(te)-409(dn)1(ie)-409(ic)27(h)1(,)-409(i)-408(c)-1(zasy)83(,)-408(i)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o;)-312(tam)-312(jeno)-311(ptaki)-311(jaki)1(e)-1(\\261)-312(krzycz)-1(a\\252y)-311(z)-1(\\252o)28(wrogo)-312(i)-312(sm)27(u)1(tni)1(e)-313(sz)-1(ele\\261)-1(ci\\252a)-312(g\\246s)-1(t)28(w)28(a,)]TJ 0 -13.55 Td[(a)-489(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-489(ste)-1(r)1(c)-1(za\\252)-489(krzy\\273)-489(spr\\363)-27(c)27(hn)1(ia\\252y)-489({)-489(t)1(am)-490(l)1(e)-1(\\273a\\252y)-489(p)-27(ok)28(ote)-1(m)-489(r)1(o)-28(dy)-488(c)-1(a\\252e,)]TJ 0 -13.549 Td[(ws)-1(i)1(e)-399(ca\\252e)-1(,)-398(p)-27(ok)28(olenia)-398(ca\\252e)-1({)-398(tam)-398(si\\246)-399(j)1(u\\273)-398(ni)1(kt)-398(ni)1(e)-399(mo)-28(dl)1(i\\252,)-398(ni)1(e)-399(p)1(\\252)-1(ak)56(a\\252,)-398(l)1(am)-1(p)-27(e)-1(k)-397(nie)]TJ 0 -13.549 Td[(pal)1(i\\252...wiat)1(r)-355(jeno)-355(h)28(u)1(c)-1(za\\252)-355(w)-356(ga\\252\\246z)-1(i)1(ac)27(h)-355(a)-355(rw)28(a\\252)-355(li\\261c)-1(i)1(e)-356(ostatnie)-355(i)-355(rzuca\\252)-355(je)-355(w)-356(n)1(o)-28(c)-356(n)1(a)]TJ 0 -13.549 Td[(zatrace)-1(n)1(ie)-371(ostatnie...)-370(tam)-370(jeno)-370(g\\252os)-1(y)-370(j)1(akie\\261)-1(,)-370(co)-371(n)1(ie)-371(b)29(y\\252y)-370(g\\252os)-1(ami,)-370(c)-1(i)1(e)-1(n)1(ie)-1(,)-370(co)-370(nie)]TJ 0 -13.549 Td[(b)28(y\\252y)-333(cieniami,)-333(t\\252uk)1(\\252)-1(y)-333(si\\246)-334(o)-333(nagi)1(e)-334(dr)1(z)-1(ew)27(a)-333(kiej)-333(te)-334(p)1(taki)-333(o\\261le)-1(p)1(\\252e)-334(i)-333(jakb)29(y)-333(s)-1(k)56(am)-1(l)1(a\\252y)]TJ 27.879 -13.55 Td[(o)-333(z)-1(mi\\252o)28(w)27(an)1(ie...)]TJ 0 -13.549 Td[(Ku)1(ba)-225(w)-1(y)1(j\\241\\252)-225(z)-226(z)-1(an)1(adrza)-225(par\\246)-225(os)-1(zc)-1(z\\246)-1(d)1(z)-1(on)28(y)1(c)27(h)-225(skib)-27(e)-1(k)-225(c)27(h)1(leba,)-225(rw)28(a\\252)-226(j)1(e)-226(w)-226(glon)1(ki,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(kl\\246k)55(a\\252)-333(i)-333(rozrz)-1(u)1(c)-1(a\\252)-333(p)-27(o)-334(mogi\\252ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-260(P)29(o\\273)-1(yw)-259(s)-1(i\\246,)-260(d)1(usz)-1(o)-259(krze)-1(\\261cija\\253)1(s)-1(k)56(a,)-259(c)-1(o)-259(c)-1(i\\246)-260(wyp)-27(ominam)-260(w)-260(wiec)-1(zorn)29(ym)-260(c)-1(zas)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(p)-27(o\\273)-1(yw)-333(s)-1(i)1(\\246)-1(,)-333(p)-27(okutn)1(ico)-334(cz)-1(\\252o)28(wiec)-1(za,)-333(p)-28(o\\273yw)-333(s)-1(i\\246!)-333({)-334(sz)-1(ept)1(a\\252)-334(z)-334(p)1(rze)-1(j)1(\\246)-1(ciem)-1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(ez)-1(n)1(\\241)-334(t)1(o?)-334({)-333(p)28(yta\\252)-333(c)-1(ic)28(ho)-333(Witek)-333(z)-1(at)1(rw)27(o\\273on)28(ym)-333(g\\252os)-1(em)-1(.)]TJ 0 -13.55 Td[({)-389(Pr)1(z)-1(ec)-1(iec)27(h)1(!)-389(Ks)-1(i)1(\\241dz)-390(\\273ywi\\242)-390(n)1(ie)-390(d)1(a!...)-389(w)-389(b)-27(e)-1(cz)-1(ki)-389(d)1(ru)1(gie)-390(k\\252ad)1(\\241,)-389(ale)-390(t)28(ym)-389(bie-)]TJ -27.879 -13.549 Td[(dot)1(om)-332(nic)-332(z)-332(tego.,.)-331(Ksi\\246)-1(d)1(z)-1(o)28(w)28(e)-332(alb)-28(o)-331(i)-332(d)1(z)-1(i)1(adoskie)-332(\\261)-1(win)1(ie)-332(ma)-56(j)1(\\241)-332(wy\\273)-1(erk)28(\\246...)-331(a)-332(d)1(usz)-1(e)]TJ 0 -13.549 Td[(p)-27(okutu)1(j\\241ce)-334(g\\252\\363)-28(d)-333(cierpi)1(\\241...)]TJ 27.879 -13.549 Td[({)-333(Przyj)1(d\\241)-333(to?...)]TJ 0 -13.549 Td[({)-485(Nie)-485(b)-27(\\363)-56(j)-484(s)-1(i\\246...)1(w)-1(sz)-1(y)1(tkie)-485(te,)-485(c)-1(o)-484(c)-1(zy\\261)-1(co)28(w)27(e)-485(m\\246)-1(ki)-484(c)-1(ierp)1(i\\241...)-484(w)-1(szys)-1(tk)1(ie)-1(.)-484(P)28(an)]TJ -27.879 -13.55 Td[(Jez)-1(u)1(s)-334(o)-28(d)1(puszc)-1(za)-334(j)1(e)-334(na)-333(ten)-333(dzie\\253)-333(na)-333(z)-1(i)1(e)-1(mi\\246,)-334(\\273eb)28(y)-333(s)-1(w)28(oic)27(h)-333(n)1(a)28(w)-1(i)1(e)-1(d)1(z)-1(i\\252y)84(...)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(sw)27(oi)1(c)27(h)-333(na)28(wiedzi\\252y!)-333({)-333(p)-28(o)28(wt\\363rzy\\252)-333(z)-334(dr)1(\\273)-1(eniem)-334(Wi)1(te)-1(k.)]TJ\nET\nendstream\nendobj\n385 0 obj <<\n/Type /Page\n/Contents 386 0 R\n/Resources 384 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n384 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n389 0 obj <<\n/Length 9434      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(117)]TJ -330.353 -35.866 Td[({)-380(Nie)-381(b)-27(o)-56(j)1(a)-56(j)-380(si\\246,)-380(g\\252up)1(i,)-380(z)-1(\\252y)-380(d)1(z)-1(isia)-55(j)-380(nie)-380(m)-1(a)-380(p)1(rz)-1(y)1(s)-1(t\\246pu)1(,)-380(wyp)-28(omin)1(ki)-380(ano)-380(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(gani)1(a)-56(j)1(\\241)-373(go,)-372(i)-372(t)1(e)-373(pacierze)-1(,)-372(i)-372(te)-372(\\261)-1(wiat\\252a.)1(..A)-372(i)-372(P)28(an)-372(Jezus)-373(sam)-373(c)28(ho)-28(d)1(z)-1(i)-371(s)-1(e)-373(d)1(z)-1(i)1(s)-1(ia)-55(j)-372(p)-27(o)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-316(i)-315(licz)-1(y;)-315(gosp)-28(o)-28(d)1(arz)-316(k)28(o)-28(c)28(han)28(y)84(,)-315(c)-1(o)-315(m)27(u)-315(ta)-315(jes)-1(zc)-1(ze)-316(du)1(s)-1(z)-316(osta\\252o,)-315(a\\273)-316(s)-1(e)-316(wyb)1(ie)-1(r)1(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkie,)-391(wyb)1(ierz)-1(e...)-390(Dob)1(rze)-391(bac)-1(z\\246,)-391(j)1(ak)-391(matu)1(la)-391(m\\363)28(w)-1(i)1(li,)-390(a)-391(i)-390(s)-1(tar)1(e)-391(lud)1(z)-1(i)1(e)-391(przy-)]TJ 0 -13.549 Td[(t)28(wie)-1(r)1(dza)-56(j)1(\\241...)]TJ 27.879 -13.55 Td[({)-433(P)28(an)-433(Jez)-1(u)1(s)-434(se)-434(c)27(h)1(o)-28(dzi)-433(dzisia)-56(j)-433(p)-27(o)-433(\\261)-1(wiecie)-1(!)-433({)-433(sz)-1(epta\\252)-433(Witek)-433(i)-433(ogl\\241da\\252)-433(si\\246)]TJ -27.879 -13.549 Td[(bacznie...)]TJ 27.879 -13.549 Td[({)-358(Al)1(e)-1(,)-357(z)-1(ob)1(ac)-1(zysz)-358(ta...)-357(to)-358(i)1(no)-357(\\261)-1(wi\\246te)-358(widz\\241)-358(ab)-27(o)-358(i)-357(zas)-1(ie)-358(p)-27(okrzywdzone)-358(n)1(a)-56(j)1(-)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej.)1(..)]TJ 27.879 -13.549 Td[({)-356(P)29(atrzc)-1(ie)-356(n)1(o,)-356(a)-356(t)1(am)-356(s)-1(i\\246)-356(\\261w)-1(i)1(e)-1(ci)-356(i)-355(lu)1(dzie)-356(jakie\\261)-356(s)-1(\\241{)-355(z)-1(a)28(w)28(o\\252a\\252)-356(Witek)-356(ze)-356(s)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(c)27(h)1(e)-1(m)-333(w)-1(sk)56(az)-1(u)1(j\\241c)-334(n)1(a)-334(sze)-1(reg)-333(m)-1(ogi)1(\\252)-334(p)-27(o)-28(d)-333(sam)27(ym)-333(p\\252otem)-1(.)]TJ 27.879 -13.55 Td[({)-406(T)83(o)-406(le\\273)-1(\\241)-406(ci,)-406(co)-406(ic)27(h)-405(to)-406(w)-406(b)-28(or)1(u)-406(p)-27(obil)1(i...)-405(ju\\261c)-1(i)1(...)-406(i)-405(m)-1(o)-55(je)-406(pan)28(y)-406(t)1(am)-407(le\\273\\241...)-406(i)]TJ -27.879 -13.549 Td[(matk)56(a)-334(mo)-56(j)1(a...)-333(ju)1(\\261)-1(ci..)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(edar)1(li)-355(si\\246)-356(p)1(rze)-1(z)-355(g\\241s)-1(zcz)-356(i)-355(p)1(rzykl\\246kn)1(\\246)-1(li)-354(u)-355(mogi\\252)-355(z)-1(ap)1(ad\\252yc)28(h)-355(i)-354(tak)-355(rozwia-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h,)-244(\\273e)-245(ledwie)-244(\\261)-1(l)1(ad)-244(in)1(o)-245(zos)-1(t)1(a\\252)-1(;)-243(ani)-244(kr)1(z)-1(y\\273e)-245(ic)28(h)-244(znacz)-1(y\\252y)84(,)-244(ni)-244(d)1(rze)-1(w)28(a)-244(jaki)1(e)-245(o)-28(cienia\\252y)84(,)]TJ 0 -13.549 Td[(ni)1(c)-1(,)-336(jeno)-336(te)-1(n)-336(p)1(iac)27(h)-336(sz)-1(cz)-1(ery)84(,)-336(par\\246)-337(ze)-1(sc)27(h)1(\\252yc)27(h)-336(b)1(adyli)-336(d)1(z)-1(iew)27(an)1(n)28(y)-336(i)-336(c)-1(isz)-1(a,)-336(zap)-28(omni)1(e)-1(-)]TJ 0 -13.55 Td[(ni)1(e)-1(,)-333(\\261m)-1(i)1(e)-1(r\\242.)-333(.)-333(.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273y)-283(z)-284(Jagust)28(ynk)56(\\241)-284(i)-283(K\\252\\241b)-283(stary)-283(kl\\246c)-1(zeli)-284(p)1(rzy)-283(t)27(y)1(c)27(h)-283(grob)1(ac)27(h)-283(umar\\252yc)28(h;)]TJ -27.879 -13.549 Td[(dwie)-374(lampk)1(i)-374(tli\\252y)-374(si\\246)-374(w)27(ci\\261ni\\246te)-375(w)-374(p)1(ias)-1(ek,)-374(wiat)1(r)-374(z)-1(a)28(wiew)27(a\\252)-374(i)-374(k)28(o\\252y)1(s)-1(a\\252)-374(\\261w)-1(i)1(at\\252)-1(ami,)-373(i)]TJ 0 -13.549 Td[(rw)28(a\\252)-334(s\\252o)28(w)27(a)-333(pacierz)-1(y)84(,)-333(i)-333(ni\\363s\\252)-333(je)-334(w)-333(no)-28(c)-333(c)-1(zarn\\241.)1(..)]TJ 27.879 -13.549 Td[({)-287(Ju\\261c)-1(i.)1(..)-287(m)-1(atu)1(la)-287(m)-1(o)-55(ja)-287(tam)-288(le\\273)-1(\\241.)1(..)-287(bacz)-1(\\246...)-287({)-287(s)-1(ze)-1(p)1(ta\\252)-288(K)1(uba)-287(cic)27(h)1(o,)-288(wi\\246c)-1(ej)-287(do)]TJ -27.879 -13.55 Td[(sie)-1(b)1(ie)-393(n)1(i\\271li)-392(d)1(o)-393(W)1(itk)56(a,)-392(kt\\363r)1(e)-1(n)-391(przyku)1(c)-1(n)1(\\241\\252)-392(przy)-392(ni)1(m)-1(,)-391(b)-28(o)-392(zi\\241b)-392(go)-392(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252)-393(n)1(a)]TJ 0 -13.549 Td[(ws)-1(k)1(ro\\261)-1(.)]TJ 27.879 -13.549 Td[({)-289(A)-290(zw)27(ali)-289(j)1(\\241)-290(M)1(ag)-1(d)1(alen\\241..)1(.)-290(O)1(c)-1(iec)-290(gron)29(t)-290(sw)27(\\363)-55(j)-289(m)-1(i)1(e)-1(li)1(,)-290(al)1(e)-290(s)-1(\\252u)1(\\273)-1(yl)1(i)-290(w)28(e)-290(dw)28(orze)-290(z)-1(a)]TJ -27.879 -13.549 Td[(fu)1(rmana.)1(..)-354(w)-355(ogi)1(e)-1(ry)-354(i)1(no)-354(je\\271)-1(d)1(z)-1(i)1(li)-354(z)-1(e)-354(s)-1(tar)1(s)-1(zym)-354(panem...)-354(a)-354(p)-27(ote)-1(m)-354(p)-28(omarl)1(i...)-354(gron)29(t)]TJ 0 -13.549 Td[(stryj)1(e)-440(wz)-1(i)1(e)-1(n)1(i...)1(a)-440(j)1(a)-439(pa\\253)1(s)-1(ki)1(e)-440(p)1(ros)-1(i)1(aki)-439(pasa\\252e)-1(m...)-438(Ju\\261c)-1(i,)-438(Magdal)1(e)-1(n)1(a)-439(b)28(y\\252o)-439(m)-1(atce,)]TJ 0 -13.55 Td[(a)-429(o)-55(jcu)-429(P)1(iete)-1(r)-428(i)-429(n)1(a)-429(p)1(rz)-1(ezw)-1(i)1(s)-1(k)28(o)-429(S)1(o)-28(c)27(h)1(a,)-429(j)1(ak)28(o)-429(i)-428(m)-1(n)1(ie)-429(jes)-1(t.)1({)-429(A)-429(p)-27(otem)-429(dzie)-1(d)1(z)-1(i)1(c)-430(d)1(o)]TJ 0 -13.549 Td[(k)28(oni)-332(mnie)-333(wz)-1(i)1(\\241\\252,)-333(b)28(y)1(m)-333(w)-333(ogie)-1(r)1(y)-333(p)-27(o)-333(o)-55(jcu)-332(je\\271)-1(d)1(z)-1(i\\252..)1(.)-333(to)-332(ino)-332(na)-333(p)-27(olo)28(w)28(ania)-332(w)27(e)-333(\\261w)-1(i)1(at,)]TJ 0 -13.549 Td[(do)-403(dr)1(ugic)28(h)-403(pan\\363)28(w)-403(je)-1(\\271dzili)1(m)-404(c)-1(i)1(\\246)-1(giem...)-403(s)-1(tr)1(z)-1(y)1(la\\252e)-1(m)-404(i)-403(ja)-403(ni)1(e)-1(zgorze)-1(j)1(...)-403(\\273)-1(e)-404(m\\252o)-28(d)1(s)-1(zy)]TJ 0 -13.549 Td[(dziedzic)-368(s)-1(tr)1(z)-1(elb)-27(\\246)-369(mi)-368(dal)1(i...)-367(a)-368(m)-1(atk)56(a)-368(in)1(o)-368(z)-1(e)-368(stars)-1(z\\241)-368(pan)1(i\\241)-368(sie)-1(d)1(z)-1(i)1(a\\252a)-368(w)27(e)-368(dw)28(orze)-1(..)1(.)]TJ 0 -13.549 Td[(Dob)1(rz)-1(e)-278(bacz\\246)-1(..)1(.)-278(i)-278(ki)1(e)-1(j)-277(ws)-1(zys)-1(tk)1(ie)-278(s)-1(z\\252y)83(..)1(.)-278(wz)-1(ieni)-277(i)-278(mnie...)-277(B)-1(ez)-278(c)-1(a\\252y)-278(r)1(ok)-278(b)28(y\\252em)-1(.)1(..)-278(a)-278(co)]TJ 0 -13.55 Td[(k)56(az)-1(al)1(i,)-362(rob)1(i\\252e)-1(m...)-362(j)1(u\\261c)-1(i)1(,)-362(nie)-362(jedn)1(e)-1(go)-362(b)1(urk)56(a)-362(zak)55(atr)1(up)1(i\\252e)-1(m...)-362(n)1(ie)-362(dw)28(\\363)-28(c)27(h)1(...)-362(a)-362(m\\252o)-28(d-)]TJ 0 -13.549 Td[(sz)-1(y)-335(dziedzic)-336(d)1(os)-1(ta\\252)-335(w)28(e)-336(\\015ak)1(i...)-335(w)28(\\241tpia)-335(m)28(u)-335(wyp\\252yn)1(\\246)-1(\\252y)84(...)-335(P)28(an)-334(m)-1(\\363)-55(j)-335(pr)1(z)-1(ec)-1(ie...)-335(d)1(obr)1(y)]TJ 0 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)1(...)-253(na)-253(b)1(ary)-253(wz)-1(i)1(\\241\\252)-1(em)-254(i)-253(wyn)1(ies)-1(\\252em)-1(.)1(..)-253(a)-253(p)-28(otem)-254(d)1(o)-253(c)-1(iep\\252yc)28(h)-253(kr)1(a)-56(j)1(\\363)27(w)-253(p)-27(o)-56(jec)27(h)1(a\\252,)]TJ 0 -13.549 Td[(i)-372(mni)1(e)-373(k)56(aza\\252)-372(s)-1(tar)1(s)-1(ze)-1(m)28(u)-372(p)1(an)28(u)-372(l)1(is)-1(t)28(y)-371(nie\\261)-1(\\242...)-371(p)-28(osze)-1(d)1(\\252)-1(em...)-372(j)1(u\\261c)-1(i)1(,)-372(\\273e)-373(ste)-1(r)1(an)28(y)-372(b)29(y\\252e)-1(m)]TJ 0 -13.549 Td[(kiej)-355(ten)-355(pi)1(e)-1(s...)-355(ku)1(las)-356(mi)-355(pr)1(z)-1(es)-1(tr)1(z)-1(elili)1(,)-355(z)-1(agoi\\242)-355(s)-1(i\\246)-355(nie)-355(c)27(hcia\\252,)-355(\\273)-1(e)-355(to)-355(c)-1(i\\246giem)-356(in)1(o)-356(n)1(a)]TJ 0 -13.549 Td[(dw)28(orze)-1(,)-368(p)-27(o)-28(d)-368(go\\252ym)-368(nieb)-27(e)-1(m...)-368(a)-368(\\261)-1(n)1(ie)-1(gi)-368(b)29(y\\252y)-368(p)-28(o)-368(pas)-369(i)-368(mrozy)-368(s)-1(i)1(arc)-1(zyste)-1(.)1(..b)1(a)-1(cz\\246)-1(..)1(.)]TJ 0 -13.55 Td[(ju)1(\\261)-1(ci..)1(.)-325(pr)1(z)-1(ywlek\\252em)-326(si\\246)-325(no)-27(c)-1(\\241..)1(.)-325(s)-1(zuk)56(am...)-324(Je)-1(zus,)-325(Mar)1(io!)-325(Jak)1(b)28(y)-325(mnie)-325(kto)-324(k\\252onic\\241)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-320(c)-1(i)1(e)-1(mi\\246)-320(zdzie)-1(l)1(i\\252!...)-319(Dw)28(oru)-319(nie)-320(ma,)-319(gumie)-1(n)-319(n)1(ie)-320(ma:..)-319(p\\252ot\\363)28(w)-320(n)1(a)27(w)28(e)-1(t)-319(ni)1(e)-320(os)-1(ta-)]TJ 0 -13.549 Td[(\\252o...)-325(d)1(o)-326(cna)-325(ws)-1(zystk)28(o)-326(spal)1(one...)-325(a)-325(s)-1(tar)1(y)-325(pan)-325(i)-325(p)1(ani)-325(s)-1(t)1(ars)-1(za,)-325(i)-325(m)-1(at)1(ula)-325(mo)-56(ja.)1(..)-325(i)-325(ta)]TJ 0 -13.549 Td[(J\\363ze)-1(f)1(k)55(a,)-289(c)-1(o)-289(z)-1(a)-289(p)-28(ok)28(o)-55(j\\363)28(wk)28(\\246)-291(b)29(y\\252a...)-289(p)-28(ob)1(ite)-290(le\\273)-1(\\241)-290(n)1(a)-290(\\261m)-1(i)1(e)-1(r)1(\\242)-291(w)-290(ogr)1(o)-28(dzie!...)-289(Je)-1(zu!)-289(Jez)-1(u)1(!)]TJ 0 -13.549 Td[(bacz\\246)-312(wsz)-1(ystk)28(o...)-310(ju)1(\\261)-1(ci...)-310(Mari)1(o!)-311({)-311(j)1(\\246)-1(cz)-1(a\\252)-311(cic)27(h)1(o)-311(i)-311(\\252zy)-311(j)1(ak)-311(gro)-27(c)27(h)-310(s)-1(yp)1(a\\252y)-311(m)27(u)-310(si\\246)-312(t)1(ak)]TJ 0 -13.55 Td[(g\\246s)-1(to)-421(p)-27(o)-421(t)28(w)27(arzy)84(,)-421(\\273)-1(e)-421(i)-421(ju)1(\\273)-422(n)1(ie)-422(ob)-27(cie)-1(r)1(a\\252...)-421(p)-27(o)-56(j)1(\\246)-1(ki)1(w)27(a\\252)-421(in)1(o)-421(z)-422(\\273a\\252)-1(o\\261ci)-421(i)-421(ut\\246sknieni)1(a,)]TJ 0 -13.549 Td[(b)-27(o)-450(jak)-450(\\273yw)27(e)-450(tak)-450(m)27(u)-449(to)-450(w)-1(szys)-1(tk)28(o)-450(stan\\246\\252o)-450(przed)-450(o)-28(cz)-1(ami,)-450(a)-450(Wit)1(e)-1(k)-450(spa\\252)-450(se)-1(,)-450(b)-27(o)]TJ\nET\nendstream\nendobj\n388 0 obj <<\n/Type /Page\n/Contents 389 0 R\n/Resources 387 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n387 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n392 0 obj <<\n/Length 9014      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(118)]TJ/F29 10.909 Tf 298.383 0 Td[(R)28(OZDZIA\\212)-334(9.)]TJ/F17 10.909 Tf -298.383 -35.866 Td[(strud)1(z)-1(on)1(a)-333(b)28(y\\252a)-333(biedota)-333(p\\252ak)56(ani)1(e)-1(m...)]TJ 27.879 -13.549 Td[(No)-28(c)-425(b)28(y\\252a)-425(c)-1(or)1(az)-426(g\\252\\246)-1(b)1(s)-1(za,)-425(wiatr)-425(mo)-28(cniej)-425(tar)1(ga\\252)-426(d)1(rze)-1(w)28(am)-1(i)1(,)-425(\\273)-1(e)-425(d\\252ugi)1(e)-426(w)27(ar)1(-)]TJ -27.879 -13.549 Td[(k)28(o)-28(cz)-1(e)-436(br)1(z)-1(\\363z)-436(z)-1(amiata\\252y)-436(p)-27(o)-436(mogi\\252ac)27(h,)-435(a)-436(bia\\252e)-436(ic)27(h)-435(pn)1(ie)-1(,)-436(n)1(ib)28(y)-435(w)-437(gz\\252a)-436(\\261)-1(miertelne)]TJ 0 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dziane,)-439(ma)-56(jacz)-1(y)1(\\252y)-439(w)-440(mrok)56(ac)27(h)1(...)-439(Lu)1(dzie)-439(s)-1(i\\246)-439(rozc)27(ho)-27(dzili..)1(.)-439(\\261)-1(wiat\\252a)-439(gas\\252y)83(..)1(.)]TJ 0 -13.549 Td[(\\261piewy)-286(dziad\\363)28(w)-286(umilk)1(\\252y)83(..)1(.)-286(m)-1(i)1(lc)-1(zenie)-286(uro)-27(c)-1(zyste)-287(a)-286(p)-27(e)-1(\\252n)1(e)-287(d)1(z)-1(i)1(w)-1(n)29(yc)27(h)-286(sze)-1(les)-1(t)1(\\363)27(w)-286(i)-286(g\\252o-)]TJ 0 -13.55 Td[(s\\363)27(w)-246(prze)-1(j)1(m)27(u)1(j\\241cyc)27(h)-246(zapan)1(o)27(w)28(a\\252o)-247(w\\261r\\363)-28(d)-246(mogi\\252...)-246(Cme)-1(n)28(tar)1(z)-247(jak)1(b)28(y)-247(si\\246)-247(n)1(ap)-28(e\\252nia\\252)-246(c)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(am)-1(i)1(...)-310(t\\252umem)-311(widm...)-310(g\\241sz)-1(cze)-1(m)-310(m)-1(ro)-27(c)-1(zn)28(yc)28(h)-310(z)-1(ar)1(ys)-1(\\363)28(w...)-310(g\\246d\\271b\\241)-310(rozj\\246c)-1(zon)28(yc)28(h)-310(a)]TJ 0 -13.549 Td[(cic)27(h)28(y)1(c)27(h)-305(g\\252)-1(os\\363)28(w...)-306(o)-27(c)-1(eanem)-306(dziwn)28(yc)27(h)-305(dr)1(ga\\253,)-305(ruc)28(hem)-306(c)-1(iemno\\261c)-1(i.)1(..)-306(b)1(\\252ys)-1(k)56(ami)-306(tr)1(w)27(o-)]TJ 0 -13.549 Td[(gi,)-410(n)1(ie)-1(m)28(ym)-411(\\252k)56(an)1(ie)-1(m...)-410(ta)-55(jemnic\\241)-410(p)-28(e\\252n\\241)-410(pr)1(z)-1(era\\273e)-1(n)1(ia)-411(i)-410(zam\\246)-1(tu)-410({)-410(a\\273)-411(stad)1(o)-411(wron)]TJ 0 -13.549 Td[(ze)-1(rw)28(a\\252o)-434(s)-1(i)1(\\246)-435(z)-434(k)55(ap)1(licy)-434(i)-434(z)-434(krzykiem)-434(uc)-1(i)1(e)-1(k)56(a\\252y)-434(n)1(a)-435(p)-27(ola,)-434(a)-434(p)1(s)-1(y)-433(w)-435(ca\\252yc)27(h)-433(Lip)-27(c)-1(ac)27(h)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(z\\246\\252)-1(y)-333(wy\\242)-333(d\\252ugo,)-333(rozpaczliwie,)-334(\\273a\\252o\\261)-1(n)1(ie...)]TJ 27.879 -13.55 Td[(Wie\\261)-451(b)28(y)1(\\252)-1(a)-450(cic)27(h)1(a)-451(mimo)-451(\\261w)-1(i)1(\\246)-1(ta,)-450(d)1(rogi)-450(b)28(y\\252y)-450(pu)1(s)-1(te,)-450(k)55(ar)1(c)-1(zm)-1(a)-450(za)-1(mkn)1(i\\246ta,)-451(a)]TJ -27.879 -13.549 Td[(gdzieniegdzie)-454(t)28(y)1(lk)28(o)-454(p)1(rze)-1(z)-453(m)-1(a\\252e)-454(zap)-27(o)-28(c)-1(on)1(e)-454(sz)-1(yb)1(ki)-453(b\\252y)1(s)-1(k)56(a\\252y)-453(\\261)-1(wiate\\252k)56(a)-454(i)-453(p)1(\\252yn\\246\\252y)]TJ 0 -13.549 Td[(cic)27(h)1(e)-334(\\261)-1(p)1(iew)-1(y)-333(p)-27(ob)-27(o\\273)-1(n)28(yc)28(h)-333(i)-333(g\\252o\\261)-1(n)1(e)-334(mo)-28(dli)1(t)28(w)-1(y)-333(o)-28(d)1(ma)27(wian)1(e)-334(z)-1(a)-333(zm)-1(ar)1(\\252yc)27(h)1(...)]TJ 27.879 -13.549 Td[(Z)-222(trw)28(og\\241)-222(w)-1(y)1(s)-1(u)28(w)28(ano)-222(si\\246)-223(p)1(rz)-1(ed)-222(d)1(om)27(y)84(,)-222(z)-223(trw)28(og\\241)-222(nas\\252uc)27(h)1(iw)28(ano)-222(s)-1(zum\\363)28(w)-223(d)1(rze)-1(w,)]TJ -27.879 -13.549 Td[(z)-295(tr)1(w)27(og\\241)-294(p)1(atrzano)-294(w)-295(ok)1(na,)-294(cz)-1(y)-294(n)1(ie)-295(sto)-56(j)1(\\241,)-294(nie)-294(ja)28(wi\\241)-294(s)-1(i\\246)-294(c)-1(i)1(,)-294(c)-1(o)-294(w)-295(d)1(ni)1(u)-294(t)28(ym)-295(b)1(\\252\\241dz\\241,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(gnani)-338(t\\246s)-1(k)1(not\\241)-338(i)-339(w)28(ol\\241)-339(Bo\\273\\241...)-338(c)-1(zy)-339(n)1(ie)-339(j)1(\\246)-1(cz)-1(\\241)-338(p)-28(ok)1(utn)1(ic)-1(zo)-339(n)1(a)-339(r)1(oz)-1(sta)-56(j)1(ac)27(h.)1(..)-338(c)-1(zy)]TJ 0 -13.549 Td[(ni)1(e)-334(z)-1(agl)1(\\241da)-55(j\\241)-333(przez)-334(s)-1(zyb)28(y)-333(\\273a\\252o\\261)-1(n)1(ie)-1(?..)]TJ 27.879 -13.549 Td[(A)-378(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-1(,)-377(s)-1(tar)1(ym)-378(zw)-1(ycza)-56(jem)-378(\\261w)-1(i)1(\\246)-1(t)28(ym,)-378(gosp)-27(o)-28(dy)1(nie)-378(wysta)28(w)-1(i)1(a\\252)-1(y)-377(na)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(z)-1(b)28(y)-333(r)1(e)-1(sz)-1(tk)1(i)-334(wiec)-1(zerz)-1(y)84(,)-333(\\273)-1(egna\\252y)-333(si\\246)-334(p)-27(ob)-27(o\\273)-1(ni)1(e)-334(i)-333(s)-1(ze)-1(p)1(ta\\252y:.)1(.)]TJ 27.879 -13.549 Td[({)-333(Na\\261)-1(ci,)-333(p)-27(o\\273)-1(yw)-333(s)-1(i)1(\\246)-1(,)-333(du)1(s)-1(zo)-333(krze)-1(\\261c)-1(i)1(ja\\253sk)56(a,)-333(w)-334(cz)-1(y\\261cu)-333(os)-1(ta)-55(j\\241ca...)]TJ 0 -13.55 Td[(W\\261r\\363)-28(d)-277(cisz)-1(y)84(,)-277(s)-1(m\\246tku,)-277(r)1(oz)-1(p)1(am)-1(i\\246t)28(yw)28(a\\253,)-277(l\\246ku)-277(p)1(\\252)-1(y)1(n\\241\\252)-277(te)-1(n)-277(wiecz)-1(\\363r)-277(Zadu)1(s)-1(zek...)]TJ 0 -13.549 Td[(W)-479(iz)-1(b)1(ie)-480(u)-480(An)29(tk)28(\\363)28(w)-480(s)-1(iedzia\\252)-480(Ro)-28(c)28(h,)-480(t)1(e)-1(n)-479(c)-1(i)-479(w)27(\\246dr)1(o)27(wn)1(ik)-480(z)-480(Ziem)-1(i)-479(\\221wi\\246te)-1(j)1(,)-480(i)]TJ -27.879 -13.549 Td[(cz)-1(yta\\252)-355(a)-354(p)-28(o)28(wiada\\252)-354(p)-28(ob)-27(o\\273)-1(n)1(e)-355(i)-355(\\261)-1(wi\\246te)-355(hi)1(s)-1(tor)1(ie)-1(.)-354(Lud)1(z)-1(i)-355(b)29(y\\252o)-355(do\\261\\242)-1(,)-354(b)-27(o)-355(i)-355(Jam)28(bro\\273y)-355(z)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(\\241)-372(i)-371(K\\252\\246)-1(b)-27(em)-373(p)1(rzys)-1(zli,)-371(i)-372(Ku)1(ba)-372(z)-372(Witk)1(ie)-1(m,)-372(i)-371(J\\363z)-1(ia)-372(z)-372(Nastusi\\241;)-372(n)1(ie)-372(b)28(y\\252o)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-333(starego)-334(Boryn)29(y)83(,)-333(kt\\363r)1(e)-1(n)-333(d)1(o)-334(p)-27(\\363\\271na)-333(w)-334(n)1(o)-28(c)-334(sie)-1(d)1(z)-1(i)1(a\\252)-334(u)-333(Jagu)1(s)-1(i)1(.)]TJ 27.879 -13.55 Td[(Cic)27(h)1(o)-273(b)28(y)1(\\252)-1(o)-272(w)-273(izbie,)-272(\\273)-1(e)-273(in)1(o)-273(ten)-272(\\261)-1(wiersz)-1(cz)-273(z)-1(a)-272(k)28(om)-1(i)1(nem)-273(s)-1(kr)1(z)-1(yp)1(ia\\252,)-272(a)-273(trzask)55(a\\252y)]TJ -27.879 -13.549 Td[(suc)27(h)1(e)-334(k)56(arp)28(y)-333(n)1(a)-334(ogn)1(iu.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ieli)-333(ws)-1(zysc)-1(y)-333(n)1(a)-334(\\252a)28(w)27(ac)28(h)-333(pr)1(z)-1(ed)-333(k)28(ominem)-1(,)-333(i)1(no)-333(An)28(te)-1(k)-333(p)-27(o)-28(d)-333(ok)1(nem)-1(.)]TJ 0 -13.549 Td[(A)-292(Ro)-28(c)28(h)-292(p)1(rze)-1(garn)1(ia\\252)-292(raz)-292(w)-292(raz)-292(ki)1(jasz)-1(ki)1(e)-1(m)-292(w)28(\\241)-28(gielki)-292(i)-291(c)-1(i)1(c)27(h)28(ym)-292(g\\252ose)-1(m)-292(m\\363)27(wi\\252:)]TJ 0 -13.549 Td[(...)1(Nie)-334(strasz)-1(n)1(o)-334(u)1(m)-1(i)1(e)-1(ra\\242,)-333(ni)1(e)-1(,)-333(b)-27(o)-334(-)]TJ 0 -13.55 Td[(\\377)-56(J)1(ak)28(o)-388(ci)-387(pt)1(a)-1(szk)28(o)27(wie,)-387(co)-388(p)-27(o)-28(d)-387(zim\\246)-388(d)1(o)-388(ciep\\252yc)28(h)-387(kra)-55(j\\363)28(w)-387(c)-1(i\\241)-27(gn\\241,)-387(tak)-387(ci)-387(du)1(-)]TJ -27.879 -13.549 Td[(sz)-1(ycz)-1(k)56(a)-333(s)-1(t)1(rud)1(z)-1(on)1(a)-334(d)1(o)-334(J)1(e)-1(zusa)-334(p)-27(o)-28(d)1(\\241\\273)-1(a..)1(.)]TJ 27.879 -13.549 Td[(Jak)28(o)-334(te)-334(d)1(rze)-1(win)28(y)84(,)-334(w)-334(n)1(ago\\261)-1(ci)-334(sto)-55(j\\241c)-1(e)-334(o)-333(z)-1(wie\\261)-1(n)1(ie)-1(,)-333(P)28(an)-333(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a)-334(w)-334(listki)]TJ -27.879 -13.549 Td[(zie)-1(l)1(one)-265(a)-265(kwiatusz)-1(k)1(i)-265(pac)28(hn)1(\\241c)-1(e,)-265(tak)-265(ci,)-265(d)1(usz)-1(o)-265(cz)-1(\\252o)28(wiec)-1(za,)-265(do)-265(J)1(e)-1(zusa)-265(i\\261)-1(\\242)-265(p)-27(o)-265(rad)1(o\\261)-1(\\242,)]TJ 0 -13.549 Td[(p)-27(o)-334(w)28(e)-1(sele)-1(,)-333(p)-27(o)-333(z)-1(wies)-1(n)1(\\246)-334(i)-333(ono)-333(pr)1(z)-1(y)28(ob)1(le)-1(cz)-1(eni)1(e)-334(wie)-1(czne)-1(.)1(..)]TJ 27.879 -13.549 Td[(Jak)28(o)-283(t\\246)-284(ziem)-1(i\\246)-283(ro)-28(d)1(z)-1(\\241c\\241)-283(a)-284(stru)1(dzon\\241)-283(ogarn)1(ia)-283(s)-1(\\252o\\253)1(c)-1(e{)-284(t)1(ak)-283(c)-1(i)-283(P)28(an)-283(p)1(rzyho\\252u)1(bi)]TJ -27.879 -13.55 Td[(du)1(s)-1(zycz)-1(k)28(\\246)-333(k)55(a\\273d\\241,)-333(\\273e)-334(ni)1(c)-334(jej)-333(z)-1(i)1(m)27(y)-333(ni)1(c)-334(jej)-333(b)-27(ole)-1(n)1(ie,)-334(n)1(ic)-334(j)1(e)-1(j)-333(\\261mie)-1(r)1(\\242)-334(sam)-1(a..)1(.)]TJ 27.879 -13.549 Td[(Hej!)-333(Bo)-334(in)1(o)-333(p\\252ak)56(anie)-334(j)1(e)-1(st)-333(na)-333(tej)-333(z)-1(iemic)-1(e,)-333(jeno)-333(\\273a\\252)-1(o\\261\\242)-334(a)-333(tur)1(bacja!)]TJ 0 -13.549 Td[(I)-333(z)-1(\\252o\\261\\242)-334(jak)28(o)-333(te)-334(ost)28(y)-333(s)-1(i\\246)-334(p)1(leni,)-333(i)-333(w)-333(b)-28(or)1(y)-334(u)1(rasta!)]TJ 0 -13.549 Td[(A)-316(w)-1(szys)-1(tk)28(o)-316(pr)1(\\363\\273)-1(n)1(e)-317(jes)-1(t)-316(i)-316(d)1(a)-1(r)1(e)-1(mne)-316({)-317(j)1(ak)28(o)-317(to)-316(pr)1(\\363)-28(c)27(h)1(no,)-316(j)1(ak)28(o)-317(te)-317(p)-27(\\246puszki,)-316(c)-1(o)]TJ -27.879 -13.549 Td[(je)-333(na)-333(w)27(o)-27(dzie)-334(wiater)-333(w)-1(y)1(dyma,)-333(a)-334(d)1(ru)1(gi)-333(je)-334(zas)-1(i)1(\\246)-334(precz)-334(\\273)-1(eni)1(e)-1(.\")]TJ\nET\nendstream\nendobj\n391 0 obj <<\n/Type /Page\n/Contents 392 0 R\n/Resources 390 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n390 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n395 0 obj <<\n/Length 6485      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(10)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-386(am)27(b)-27(oni)1(e)-387(i)-386(k)56(a\\273dem)27(u)-385(z)-387(osobna)-386(t)1(o)-387(m\\363)28(wi\\246)-1(,)-385(ale)-387(wy)-386(j)1(ak)-386(te)-386(psy)-386(t)28(ylk)28(o)-386(nasta)-55(jec)-1(ie)]TJ 0 -13.549 Td[(jeden)-277(na)-277(dr)1(ugiego,)-277(t)27(y)1(lk)28(o...)-277({)-277(w)-1(i)1(atr)-278(r)1(e)-1(sz)-1(t)1(\\246)-278(s)-1(\\252\\363)28(w)-278(w)28(e)-1(p)-27(c)27(h)1(n\\241\\252)-277(m)27(u)-277(do)-277(gard)1(\\252a,)-278(\\273e)-278(ksi\\241dz)]TJ 0 -13.549 Td[(si\\246)-230(sro)-28(d)1(z)-1(e)-229(z)-1(ak)56(as\\252a\\252)-1(,)-228(a)-230(An)29(te)-1(k)-229(n)1(ic)-229(nie)-229(rze)-1(k\\252,)-229(sz)-1(ed\\252)-229(w)-229(p)-27(o)-28(dle)-229(i)-229(wypat)1(ryw)28(a\\252)-230(w)-229(mrok)56(ac)27(h)1(,)]TJ 0 -13.55 Td[(p)-27(om)-1(i)1(\\246)-1(d)1(z)-1(y)-333(dr)1(z)-1(ew)27(ami.)]TJ 27.879 -13.549 Td[(Wiat)1(r)-356(si\\246)-356(p)-28(o)-27(dn)1(os)-1(i\\252)-356(coraz)-356(mo)-28(cniejsz)-1(y)84(,)-356(p)1(rze)-1(w)28(ala\\252)-356(si\\246)-356(p)-27(o)-356(dr)1(o)-28(dze)-356(i)-356(tak)-355(bi\\252)-355(w)]TJ -27.879 -13.549 Td[(top)-27(ole,)-334(i)-333(miota\\252)-333(nimi,)-333(a\\273)-334(si\\246)-334(p)1(rzygin)1(a\\252)-1(y)-333(z)-333(j\\246kiem)-334(i)-333(s)-1(zumia\\252y)-333(rozs)-1(r)1(o\\273)-1(on)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-306(A)-305(m)-1(\\363)28(wi\\252e)-1(m)-306(j)1(usz)-1(e)-306({)-305(z)-1(acz)-1(\\241\\252)-306(zno)28(wu)-305(ks)-1(i)1(\\241dz)-306({)-306(\\273e)-1(b)29(y)-306(sam)-306(k)28(ob)28(y\\252\\246)-306(z)-1(ap)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(do)-359(sta)28(w)-1(u)1(,)-359(to)-359(j\\241)-359(n)1(aprz\\363)-28(d)-359(wyp)1(u\\261c)-1(i)1(\\252)-360(n)1(o,)-359(i)-359(z)-1(ap)-27(o)-28(d)1(z)-1(ia\\252a)-359(si\\246)-1(.)1(..)-359(\\221l)1(e)-1(p)1(a)-360(p)1(rze)-1(cie\\273)-1(,)-359(zale)-1(zie)]TJ 0 -13.549 Td[(gdzie)-349(mi\\246dzy)-348(p\\252ot)28(y)-348(i)-348(jes)-1(zc)-1(ze)-349(n)1(ogi)-348(p)-28(o\\252amie!)-348({)-349(Biad)1(a\\252)-349(i)-348(b)1(a)-1(r)1(dzo)-348(troskliwie)-349(szuk)56(a\\252,)]TJ 0 -13.55 Td[(zagl\\241da\\252)-333(z)-1(a)-333(dr)1(z)-1(ew)27(o)-333(k)56(a\\273)-1(d)1(e)-1(,)-333(wyp)1(atryw)28(a\\252)-334(p)-27(o)-333(p)-28(ol)1(ac)27(h.)]TJ 27.879 -13.549 Td[({)-330(P)1(rz)-1(ecie)-1(c)28(h)-330(za)27(w\\273dy)-329(s)-1(ama)-330(c)27(h)1(o)-28(dzi\\252a...)1({)-330(Zna)-330(d)1(obrze)-330(drog\\246)-330(do)-330(sta)28(wu..)1(.)-330(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(cie)-1(\\273,)-358(nal)1(a\\252)-359(k)1(to)-358(b\\241d)1(\\271)-359(w)28(o)-28(dy)-358(d)1(o)-358(b)-27(e)-1(cz)-1(ki)1(,)-358(wykr\\246c)-1(i)1(\\252)-359(t)28(y)1(lk)28(o,)-358(a)-358(ona)-358(j)1(u\\273)-358(s)-1(ama)-358(tra\\014)1(\\252)-1(a)-358(n)1(a)]TJ 0 -13.549 Td[(pl)1(e)-1(b)1(ani\\246...)-381({)-382(Ale)-382(w)-382(dzie\\253)-382(j)1(\\241)-382(zaprz\\246gali...)-381(a)-382(d)1(z)-1(isia)-55(j)-382(M)1(agda)-382(cz)-1(y)-381(W)83(al)1(e)-1(k)-381(pu\\261c)-1(i)1(li)-382(j)1(\\241)]TJ 0 -13.549 Td[(ju)1(\\273)-430(o)-429(zm)-1(ierzc)27(h)28(u)1(...)-429(W)84(alek!)-429({)-429(krzykn)1(\\241\\252)-430(g\\252o\\261no,)-429(b)-27(o)-429(c)-1(ie\\253)-429(j)1(aki\\261)-430(zama)-56(j)1(ac)-1(zy\\252)-429(w)-1(\\261r\\363)-28(d)]TJ 0 -13.55 Td[(top)-27(oli..)1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(alk)56(a)-333(widzia\\252e)-1(m)-333(p)-28(o)-333(n)1(as)-1(ze)-1(j)-333(stron)1(ie,)-334(al)1(e)-334(jes)-1(zc)-1(ze)-334(p)1(rze)-1(d)-333(zm)-1(r)1(okiem)-1(.)]TJ 0 -13.549 Td[({)-386(P)29(olaz)-1(\\252)-385(j\\241)-385(s)-1(zuk)56(a\\242)-1(,)-385(ry)1(c)27(h\\252o)-385(w)-386(cz)-1(as.)-386(Kl)1(ac)-1(z)-386(ma)-386(ze)-386(dw)28(adzie\\261)-1(cia)-386(r)1(ok)28(\\363)27(w,)-385(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(mnie)-288(s)-1(i\\246)-288(ul\\246g\\252a...)-288(wys\\252u\\273y\\252a)-288(s)-1(obi)1(e)-289(\\252as)-1(k)56(a)28(wy)-288(c)27(h)1(le)-1(b)1(...)-288(a)-288(pr)1(z)-1(ywi\\241zana)-288(j)1(ak)-288(c)-1(z\\252o)27(wiek..)1(.)]TJ 0 -13.549 Td[(M\\363)-55(j)-333(Bo\\273)-1(e,)-333(\\273)-1(eb)28(y)-333(s)-1(i\\246)-333(jej)-333(c)-1(o)-333(z\\252)-1(ego)-333(nie)-333(s)-1(ta\\252o!)]TJ 27.879 -13.55 Td[({)-247(Co)-246(jej)-246(ta)-247(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(!)-246({)-247(mru)1(kn\\241\\252)-246(An)28(te)-1(k)-246(ze)-247(z)-1(\\252o\\261c)-1(i\\241,)-246(b)-27(o)-247(j)1(ak\\273)-1(e,)-246(p)-28(osz)-1(ed\\252)-246(do)-246(dobr)1(o-)]TJ -27.879 -13.549 Td[(dzieja)-305(p)-28(o)-305(rad)1(\\246)-1(,)-305(p)-27(o)-306(u)1(\\273)-1(aleni)1(e)-306(s)-1(i\\246,)-305(to)-306(go)-305(ino)-305(s)-1(k)1(rzyc)-1(za\\252)-306(i)-305(jesz)-1(cz)-1(e)-306(zabr)1(a\\252,)-306(\\273e)-1(b)29(y)-306(k)28(ob)29(y\\252y)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a\\242!)-353(Ju\\261c)-1(i)1(,)-354(i)-353(k)28(ob)29(y\\252y)-353(s)-1(zk)28(o)-28(da,)-353(c)27(h)1(o)-28(\\242)-354(ta)-353(i)-353(\\261le)-1(p)1(a,)-353(i)-353(s)-1(tara,)-353(al)1(e)-354(z)-1(a)28(w\\273)-1(d)1(y)-353(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wi)]TJ 0 -13.549 Td[(p)-27(o)27(win)1(na)-333(b)28(y\\242)-333(pierws)-1(zyzna!)]TJ 27.879 -13.549 Td[({)-333(A)-334(t)28(y)-333(si\\246)-334(op)1(am)-1(i\\246ta)-56(j)-332(i)-334(n)1(ie)-334(p)-27(oms)-1(tu)1(j,)-333(b)-27(o)-28(\\242)-334(to)-333(o)-56(j)1(c)-1(i)1(e)-1(c)-334(r)1(o)-28(dzon)28(y!)-333(S)1(\\252ys)-1(zysz)-1(!)]TJ 0 -13.55 Td[({)-333(Dobr)1(z)-1(e)-334(p)1(am)-1(i)1(\\246)-1(tam!)-333({)-334(o)-27(dp)1(ar\\252)-334(ze)-334(z\\252o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-329(G)1(rze)-1(c)28(h)-329(\\261mie)-1(r)1(te)-1(l)1(n)28(y)-328(i)-329(ob)1(raza)-329(b)-27(os)-1(k)56(a.)-328(A)-329(n)1(ic)-329(ten)-328(dobr)1(e)-1(go)-328(nie)-328(z)-1(w)28(o)-56(j)1(uje)-329(sobi)1(e)-1(,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(n)-472(w)-472(z)-1(ap)1(am)-1(i\\246ta\\252o\\261c)-1(i)-472(r\\246k)28(\\246)-473(p)-27(o)-28(dn)1(os)-1(i)-472(n)1(a)-473(o)-55(jc\\363)27(w)-472(i)-472(prze)-1(ciwi)-472(s)-1(i)1(\\246)-473(przyk)56(azaniom)]TJ 0 -13.549 Td[(Bo\\273)-1(ym.)-333(Masz)-334(rozum,)-333(to\\261)-334(o)-333(t)28(ym)-334(wiedzie\\242)-334(p)-28(o)28(win)1(ie)-1(n)1(.)]TJ 27.879 -13.549 Td[({)-333(Sp)1(ra)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(ci)-333(c)27(hc\\246)-334(in)1(o.)]TJ 0 -13.55 Td[({)-333(A)-334(p)-27(oms)-1(t)28(y)-333(sz)-1(uk)56(asz)-1(,)-333(co?)]TJ 0 -13.549 Td[(An)28(tek)-333(nie)-333(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-333(co)-334(r)1(z)-1(ec)-334(na)-333(to.)]TJ 0 -13.549 Td[({)-333(A)-334(i)-333(to)-333(ci)-334(j)1(e)-1(szc)-1(ze)-334(p)-28(o)28(wiem)-1(,)-333(\\273e)-334(p)-27(ok)28(orn)1(e)-334(c)-1(i)1(e)-1(l\\246)-333(dwie)-334(matki)-333(ss)-1(ie.)]TJ 330.353 -29.888 Td[(119)]TJ\nET\nendstream\nendobj\n394 0 obj <<\n/Type /Page\n/Contents 395 0 R\n/Resources 393 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n393 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n398 0 obj <<\n/Length 8534      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(120)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-262(Wsz)-1(y)1(s)-1(cy)-262(mi)-262(to)-262(p)-27(o)27(wieda)-55(j\\241.)1(..)-262(ju)1(\\261)-1(ci,)-261(ino)-262(tej)-262(p)-27(ok)28(orn)1(o\\261)-1(ci)-262(mam)-262(ju\\273)-262(p)-27(o)-262(grdy)1(k)28(\\246)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-269(w)-1(i)1(\\246)-1(ce)-1(j)-268(n)1(ie)-269(\\261)-1(cierp)1(i\\246)-1(!)-268(Cho)-28(\\242b)28(y)-268(i)-268(z)-1(b)-27(\\363)-56(j)1(,)-269(c)28(ho)-28(\\242b)28(y)-268(i)-268(ukr)1(z)-1(ywd)1(z)-1(iciel,)-268(ale)-269(\\273)-1(e)-269(o)-55(jciec)-269(ro)-28(d)1(z)-1(o-)]TJ 0 -13.549 Td[(n)28(y)84(,)-316(to)-316(j)1(u\\273)-316(m)27(u)-315(w)27(ol)1(no)-316(ws)-1(zystk)28(o,)-316(a)-316(d)1(z)-1(i)1(e)-1(ciom)-316(nie)-316(w)28(olno)-316(d)1(o)-28(c)27(h)1(o)-28(dzi\\242)-316(s)-1(w)28(o)-56(j)1(e)-1(j)-315(krzywdy)1(!)]TJ 0 -13.549 Td[(Lab)-27(oga,)-333(takie)-334(u)1(rz\\241dze)-1(n)1(ie)-334(na)-333(\\261w)-1(i)1(e)-1(cie,)-334(\\273e)-334(in)1(o)-333(plu)1(n\\241\\242)-334(a)-333(i\\261\\242)-1(,)-333(gd)1(z)-1(ie)-333(o)-28(c)-1(zy)-333(p)-28(on)1(ies)-1(\\241..)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(i)1(d\\271,)-334(k)1(t\\363\\273)-334(ci\\246)-334(trzyma?)-334({)-333(rzuci\\252)-333(p)-28(or)1(yw)27(cz)-1(o)-333(ksi\\241d)1(z)-1(.)]TJ 0 -13.55 Td[({)-333(Mo\\273e)-334(i)-333(p)-28(\\363)-55(jd)1(\\246)-1(,)-333(b)-27(o)-334(co)-333(m)-1(i)-333(tu)1(ta)-56(j)-333(r)1(obi\\242,)-333(c)-1(o?)-333({)-334(sze)-1(p)1(ta\\252)-334(cis)-1(zej,)-333(\\252z)-1(a)28(w)28(o)-334(j)1(ak)28(o\\261)-1(.)]TJ 0 -13.549 Td[({)-443(B)-1(a)-55(jes)-1(z)-444(i)-443(t)28(yle.)-444(D)1(rud)1(z)-1(y)-443(i)-443(jedn)1(e)-1(go)-443(z)-1(agon)1(a)-444(n)1(ie)-444(m)-1(a)-55(j\\241,)-443(a)-443(s)-1(iedz\\241,)-443(pracuj)1(\\241)-444(i)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-369(P)29(an)28(u)-368(B)-1(ogu)-368(d)1(z)-1(i)1(\\246)-1(ku)1(j\\241.)-368(Wzi\\241\\252b)28(y\\261)-369(si\\246)-369(d)1(o)-369(r)1(ob)-28(ot)28(y)84(,)-368(a)-369(n)1(ie)-369(wyrze)-1(k)56(a\\252)-368(jak)-368(bab)1(a.)]TJ 0 -13.549 Td[(Zdr)1(o)27(wy)-333(j)1(e)-1(ste)-1(\\261,)-333(m)-1(o)-27(c)-1(n)28(y)84(,)-333(m)-1(asz)-334(o)-333(c)-1(o)-333(r\\246ce)-334(z)-1(acz)-1(epi)1(\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iec)27(h)1(,)-333(c)-1(a\\252e)-334(tr)1(z)-1(y)-333(morgi!)-333({)-333(rzuci\\252)-334(u)1(r\\241)-28(gl)1(iwie)-1(.)]TJ 0 -13.549 Td[({)-333(\\233on\\246)-334(i)-333(d)1(z)-1(iec)-1(i)-333(masz)-1(,)-333(to\\261)-334(o)-333(t)28(ym)-334(p)1(am)-1(i)1(\\246)-1(ta\\242)-333(p)-28(o)28(wini)1(e)-1(n)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(acz)-1(\\246)-333(ja)-333(dob)1(rze)-1(,)-333(bacz\\246)-1(...)-333({)-333(mruk)1(n\\241\\252)-333(przez)-334(z)-1(\\246b)28(y)84(.)]TJ 0 -13.549 Td[(Wyszli)-319(pr)1(z)-1(ed)-319(k)56(arcz)-1(m\\246,)-319(\\261)-1(wiec)-1(i)1(\\252)-1(o)-319(si\\246)-319(w)-320(okn)1(ac)27(h)-318(i)-319(jaki)1(e)-1(\\261)-319(g\\252)-1(osy)-319(wydziera\\252y)-319(si\\246)]TJ -27.879 -13.549 Td[(a\\273)-334(n)1(a)-334(d)1(rog\\246.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(to,)-333(zno)28(wu)-333(pij)1(at)28(yk)56(a,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-232(Re)-1(k)1(rut)28(y)84(,)-232(te,)-232(c)-1(o)-232(ic)28(h)-232(d)1(o)-233(w)28(o)-56(j)1(s)-1(k)56(a)-232(lato\\261)-232(wz)-1(ieni)1(,)-232(pij)1(\\241)-232(s)-1(e)-232(la)-232(uciec)27(h)28(y)84(...)-232(W)-231(niedziel\\246)]TJ -27.879 -13.55 Td[(ic)28(h)-333(p)-28(ogn)1(a)-56(j)1(\\241)-334(w)-333(t)28(ylac)27(h)1(n)28(y)-333(\\261)-1(wiat)1(,)-334(t)1(o)-334(si\\246)-334(cies)-1(z\\241.:.)]TJ 27.879 -13.549 Td[({)-424(Karcz)-1(ma)-424(pra)28(wie)-425(p)-27(e\\252)-1(n)1(a!)-424({)-425(sze)-1(p)1(n\\241\\252)-424(ks)-1(i\\241d)1(z)-425(p)1(rz)-1(y)1(s)-1(ta)-55(j\\241c)-425(p)1(rzy)-424(top)-28(ol)1(i,)-424(s)-1(k)56(\\241d)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-333(dob)1(rze)-334(wida\\242)-333(prze)-1(z)-333(okno)-333(ca\\252)-1(e)-333(w)-1(n)1(\\246)-1(t)1(rz)-1(e)-333(z)-1(ap)-27(c)27(h)1(ane)-334(lu)1(d\\271mi:)]TJ 27.879 -13.549 Td[({)-305(Bo)-305(si\\246)-306(zej\\261\\242)-306(mia\\252y)-305(d)1(z)-1(i)1(s)-1(ia)-55(j)-305(i)-304(ur)1(e)-1(d)1(z)-1(i\\242...)-304(wz)-1(gl\\246dem)-305(te)-1(go)-305(l)1(as)-1(u)1(,)-305(co)-305(go)-305(dziedzic)]TJ -27.879 -13.549 Td[(sprze)-1(d)1(a\\252)-334(\\233y)1(dom)-334(n)1(a)-334(p)-27(or\\246b)-27(\\246)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-333(Przec)-1(ie\\273)-334(n)1(ie)-1(ca\\252y)-333(s)-1(p)1(rz)-1(eda\\252,)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(t)28(yle)-334(zos)-1(ta\\252o!)]TJ 0 -13.549 Td[({)-333(P)28(\\363ki)-333(z)-334(n)1(am)-1(i)-333(si\\246)-334(n)1(ie)-334(ugo)-27(dzi,)-333(to)-333(ani)-333(c)27(h)1(o)-56(j)1(ak)55(a)-333(ru)1(s)-1(zy\\242)-334(n)1(ie)-334(d)1(am)27(y!)-333(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(to?...)-333({)-333(z)-1(ap)28(y)1(ta\\252)-334(wystrasz)-1(on)28(y)1(m)-334(ni)1(e)-1(co)-334(g\\252ose)-1(m.)]TJ 0 -13.549 Td[({)-434(A)-433(ni)1(e)-435(d)1(am)27(y)-433(i)-433(t)27(y)1(la!)-434(O)1(c)-1(iec)-434(c)27(h)1(c)-1(e)-434(si\\246)-434(pr)1(a)27(w)28(o)28(w)27(a\\242,)-434(al)1(e)-434(K\\252\\241b)-434(i)-433(te,)-434(co)-434(z)-434(n)1(im)]TJ -27.879 -13.549 Td[(trzyma)-56(j)1(\\241,)-341(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j)1(\\241,)-341(\\273e)-342(s\\241du)-340(n)1(ie)-341(c)27(hc\\241,)-341(a)-340(r\\241ba\\242)-341(n)1(ie)-341(p)-28(ozw)27(ol)1(\\241)-341(i)-341(c)28(ho)-28(\\242b)28(y)-340(c)-1(a\\252\\241)-341(wsi\\241)]TJ 0 -13.55 Td[(i\\261\\242)-293(pr)1(z)-1(ysz)-1(\\252o,)-292(to)-292(p)-28(\\363)-55(jd)1(\\241,)-293(a)-292(i)-293(z)-293(siekierami,)-292(i)-293(z)-293(wid)1(\\252am)-1(i)1(,)-293(j)1(ak)-293(wyp)1(adn)1(ie)-1(,)-292(a)-292(s)-1(w)28(o)-56(j)1(e)-1(go)-292(nie)]TJ 0 -13.549 Td[(dad)1(z)-1(\\241.)1(..)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zus)-333(Maria!)-333(T)83(o)-333(b)28(y)-333(si\\246)-334(b)-27(e)-1(z)-333(bitk)1(i)-334(i)-333(j)1(akiego)-334(n)1(ies)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(a)-334(n)1(ie)-334(ob)28(y)1(\\252o!)]TJ 0 -13.549 Td[({)-298(P)28(ewnie!)-298(Jak)-297(s)-1(i\\246)-298(p)1(ar\\246)-298(\\252)-1(b)-27(\\363)28(w)-298(dw)28(orskic)27(h)-297(s)-1(i)1(e)-1(ki)1(e)-1(r)1(am)-1(i)-297(roz)-1(w)28(ali,)-297(to)-298(z)-1(ar)1(az)-299(b)-27(\\246dzie)]TJ -27.879 -13.549 Td[(spra)28(wiedli)1(w)27(o\\261\\242)-1(!)]TJ 27.879 -13.55 Td[({)-299(An)28(tek!)-298(R)-1(ozum)-299(ci)-299(si\\246)-299(z)-1(e)-299(z)-1(\\252o\\261c)-1(i)-298(p)-28(omies)-1(za\\252)-299(c)-1(zy)-299(co?)-299(G\\252up)1(s)-1(t)28(w)28(a)-299(pl)1(e)-1(cie)-1(sz,)-299(m\\363)-56(j)]TJ -27.879 -13.549 Td[(dr)1(ogi!)]TJ 27.879 -13.549 Td[(Ale)-312(An)28(tek)-312(ju)1(\\273)-313(ni)1(e)-313(s\\252uc)27(h)1(a\\252,)-312(rzuci\\252)-312(s)-1(i\\246)-312(ni)1(e)-1(co)-312(w)-313(b)-27(ok)-312(i)-312(zgin\\241\\252)-312(w)-312(c)-1(iemno\\261c)-1(iac)28(h,)]TJ -27.879 -13.549 Td[(a)-422(k)1(s)-1(i\\241d)1(z)-422(p)-28(osz)-1(ed\\252)-421(s)-1(p)1(ie)-1(sz)-1(n)1(ie)-422(ku)-421(pl)1(e)-1(b)1(ani,)-421(b)-28(o)-421(us\\252ys)-1(za\\252)-422(tu)1(rk)28(ot)-422(k)28(\\363\\252)-421(i)-422(cic)27(h)1(e)-1(,)-421(\\273)-1(a\\252osne)]TJ 0 -13.549 Td[(r\\273e)-1(n)1(ie)-334(k)28(ob)29(y\\252y)83(..)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-300(z)-1(a\\261)-301(p)-27(os)-1(ze)-1(d)1(\\252)-301(w)-301(d)1(\\363\\252)-301(ws)-1(i)1(,)-301(k)1(u)-301(m\\252yn)1(o)27(wi,)-300(a)-301(d)1(ru)1(g\\241)-301(stron)1(\\241)-301(s)-1(t)1(a)27(wu)1(,)-301(\\273e)-1(b)29(y)-301(n)1(ie)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\242)-334(k)28(o\\252o)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)-333(Jagn)28(y)84(.)]TJ 27.879 -13.549 Td[(Jak)-329(zadr)1(a)-329(tkwi\\252a)-329(m)27(u)-328(ona)-329(p)-27(o)-28(d)-328(s)-1(erce)-1(m,)-329(jak)-328(z)-1(\\252a)-329(zadra,)-328(\\273)-1(e)-329(jej)-329(n)1(ie)-330(wyci\\241)-28(gn)1(\\241\\242)]TJ -27.879 -13.549 Td[(ni)-333(u)1(c)-1(i)1(e)-1(c)-334(o)-27(d)-333(niej.)]TJ 27.879 -13.549 Td[(A)-455(b)28(ystre)-455(\\261)-1(wiat\\252o)-455(bi)1(\\252o)-456(z)-455(jej)-455(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-455(jasne)-456(i)-455(w)28(es)-1(o\\252e)-456(j)1(akie\\261)-1(..)1(.)-455(przystan\\241\\252,)]TJ -27.879 -13.549 Td[(ab)28(y)-354(sp)-28(o)-55(jr)1(z)-1(e\\242)-355(in)1(o)-354(te)-1(n)-354(j)1(e)-1(d)1(e)-1(n)-353(razik,)-354(ab)28(y)-354(c)28(ho)-28(\\242)-354(z)-1(akl)1(\\241\\242)-355(ze)-355(z)-1(\\252o\\261c)-1(i)-354({)-354(ale)-354(go)-354(w)-1(n)1(e)-1(t)-354(cos)-1(i)1(k)]TJ 0 -13.55 Td[(p)-27(o)-28(derw)28(a\\252o)-334(z)-333(m)-1(iejsc)-1(a,)-333(\\273e)-334(p)-27(ogna\\252)-333(jak)28(o)-333(ten)-333(w)-1(i)1(c)27(her,)-333(n)1(i)-334(si\\246)-334(ob)-27(ejrza\\252)-333(z)-1(a)-333(s)-1(i)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ojco)28(w)27(a)-333(ona)-333(ju)1(\\273)-1(,)-333(o)-55(jco)27(w)28(a!)]TJ\nET\nendstream\nendobj\n397 0 obj <<\n/Type /Page\n/Contents 398 0 R\n/Resources 396 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 383 0 R\n>> endobj\n396 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n401 0 obj <<\n/Length 8602      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(121)]TJ -330.353 -35.866 Td[(Do)-242(s)-1(zw)27(agr)1(a)-243(b)1(ie\\273)-1(a\\252,)-242(do)-242(k)28(o)28(w)27(ala)-242({)-242(rady)-242(i)-242(on)-242(ni)1(jaki)1(e)-1(j)-242(n)1(ie)-243(da,)-242(ale)-242(m)-1(i)1(\\246)-1(d)1(z)-1(y)-242(lu)1(d\\271m)-1(i)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co)-329(p)-28(osiedzi,)-329(a)-329(nie)-329(tam)-1(,)-329(w)-329(c)27(h)1(a\\252upi)1(e)-330(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)1(...Al)1(b)-28(o)-329(i)-329(ten)-329(ksi\\241dz!)-329(Do)-329(rob)-27(ot)28(y)-329(go)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-402(z)-1(agan)1(ia\\252!)-403(Hal)1(e)-1(,)-402(s)-1(am)-402(nic)-403(n)1(ie)-403(r)1(obi,)-402(fr)1(as)-1(u)1(nku)-402(n)1(ij)1(akiego)-403(n)1(i)-403(tu)1(rb)1(ac)-1(j)1(i)-403(\\273adn)1(e)-1(j)]TJ 0 -13.549 Td[(ni)1(e)-318(ma,)-317(t)1(o)-317(\\252at)27(w)28(o)-317(m)28(u)-317(d)1(rugi)1(c)27(h)-316(p)-28(ogan)1(ia\\242.)-317(Kob)1(ie)-1(t\\246)-317(m)28(u)-317(wyp)-27(omnia\\252)-317(i)-316(dzie)-1(ci..)1(.)-317(b)1(ac)-1(zy)]TJ 0 -13.549 Td[(on)-398(j)1(\\241)-399(d)1(obrze)-1(,)-398(b)1(ac)-1(zy!)-398(Ju)1(\\273)-399(m)27(u)-398(d)1(o\\261)-1(\\242)-399(ob)1(mie)-1(r)1(z)-1(\\252y)-398(jej)-398(p)1(\\252)-1(ak)56(an)1(ia)-399(i)-398(ta)-398(j)1(e)-1(j)-398(p)-27(ok)28(orn)1(o\\261)-1(\\242,)-398(i)]TJ 0 -13.55 Td[(te)-387(jej)-386(ps)-1(i)1(e)-1(,)-386(s)-1(k)56(aml\\241c)-1(e)-387(o)-28(czy)83(..)1(.)-387(i)-387(gd)1(yb)28(y)-386(nie)-387(on)1(a!...)-386(\\233e)-1(b)28(y)-386(to)-387(b)28(yt)-386(s)-1(am!)-387(J)1(e)-1(zus)-387(m\\363)-56(j!)-386({)]TJ 0 -13.549 Td[(j\\246kn)1(\\241\\252)-321(ci\\246\\273)-1(k)28(o)-320(i)-320(p)-27(orw)28(a\\252)-321(go)-320(d)1(z)-1(ik)1(i,)-320(s)-1(zalon)28(y)-320(gn)1(iew)-1(,)-320(\\273e)-321(c)28(hcia\\252o)-320(m)27(u)-320(si\\246)-320(c)27(h)28(yci\\242)-321(k)28(ogo)-320(za)]TJ 0 -13.549 Td[(gard)1(z)-1(i)1(e)-1(l,)-333(d)1(usi\\242)-1(,)-333(r)1(oz)-1(d)1(z)-1(iera\\242)-334(i)-333(b)1(i\\242)-334(a\\273)-334(d)1(o)-333(\\261)-1(mie)-1(r)1(c)-1(i)1(!...)]TJ 27.879 -13.549 Td[(Ale)-414(k)28(ogo?)-1(.)1(..)-414(Nie,)-414(ni)1(e)-415(wiedzia\\252,)-414(i)-414(z\\252o\\261)-1(\\242)-414(ust\\241)-28(pi)1(\\252)-1(a)-414(n)1(agle,)-414(jak)-414(b)29(y\\252a)-414(przysz)-1(\\252a,)]TJ -27.879 -13.549 Td[(a)-402(on)-402(patr)1(z)-1(y)1(\\252)-403(p)1(ust)28(ym)-403(wzrokiem)-403(w)-402(no)-28(c)-402(i)-402(nas\\252uc)27(h)1(iw)28(a\\252)-403(sz)-1(amota\\253)-402(wic)28(h)28(ur)1(y)83(,)-402(co)-402(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(al)1(a\\252a)-321(p)-27(o)-320(sadac)27(h)-319(i)-320(tak)-320(ciepa\\252a)-320(dr)1(z)-1(ew)27(ami,)-319(a\\273)-321(k\\252ad)1(\\252y)-320(s)-1(i\\246)-320(na)-320(p)1(\\252ot)28(y)-320(i)-320(c)27(h)1(lasta\\252y)]TJ 0 -13.55 Td[(go)-252(ga\\252\\246)-1(ziami)-252(p)-28(o)-252(t)28(w)27(ar)1(z)-1(y)84(...)-252(i)-252(wl\\363k\\252)-252(s)-1(i)1(\\246)-253(w)27(ol)1(no,)-252(o)-28(ci\\246\\273)-1(ale,)-252(\\273)-1(e)-252(ledwie)-253(si\\246)-253(m\\363g\\252)-252(p)-28(or)1(usz)-1(a\\242,)]TJ 0 -13.549 Td[(b)-27(o)-385(na)-384(du)1(s)-1(z\\246)-385(j\\246\\252y)-385(m)28(u)-385(si\\246)-385(zw)27(ala\\242)-385(zmory)-385(sm)27(u)1(tku)1(,)-385(u)1(m)-1(\\246c)-1(ze)-1(n)1(ia,)-384(niemo)-28(c)-1(y)84(,)-384(i\\273)-385(ryc)28(h\\252o)]TJ 0 -13.549 Td[(zap)-28(omni)1(a\\252)-1(,)-333(gd)1(z)-1(ie)-333(idzie)-334(i)-333(z)-334(czym)-1(?..)]TJ 27.879 -13.549 Td[({)-313(Oj)1(c)-1(o)28(w)28(a)-313(jes)-1(t)-312(Jagna,)-312(o)-56(j)1(c)-1(o)28(w)27(a!)-312({)-313(pr)1(z)-1(erze)-1(k)56(a\\252)-313(raz)-313(p)-27(o)-313(raz)-313(a)-313(coraz)-313(c)-1(i)1(s)-1(ze)-1(j)-312({)-313(jak)28(o)]TJ -27.879 -13.549 Td[(ten)-333(pacierz)-1(,)-333(b)28(y)1(c)27(h)-333(go)-333(nie)-333(z)-1(ap)-27(omn\\241\\242.)]TJ 27.879 -13.55 Td[(W)-360(k)1(u\\271ni)-359(c)-1(ze)-1(r)1(w)27(on)1(o)-360(b)28(y\\252o)-360(o)-27(d)-360(ogn)1(is)-1(k)56(a,)-359(c)27(h\\252op)1(ak)-360(d)1(ym)-1(a\\252)-359(m)-1(iec)27(h)1(e)-1(m)-360(zapami\\246ta-)]TJ -27.879 -13.549 Td[(le,)-428(a\\273)-429(roz\\273)-1(ar)1(z)-1(on)1(e)-429(w)28(\\246)-1(gle)-428(w)27(ar)1(c)-1(za\\252y)-428(i)-428(buc)28(ha\\252y)-428(kr)1(w)27(a)28(wym)-429(p)1(\\252om)-1(i)1(e)-1(n)1(ie)-1(m;)-428(k)28(o)28(w)27(al)-428(sta\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-417(k)28(o)28(w)28(adle,)-417(c)-1(zapk)28(\\246)-418(mia\\252)-417(na)-417(t)28(yle)-418(g\\252o)28(wy)83(,)-417(r)1(\\246)-1(ce)-418(nagi)1(e)-1(,)-417(sk)28(\\363rz)-1(an)29(y)-417(fartu)1(c)27(h)1(,)-417(t)27(w)28(arz)]TJ 0 -13.549 Td[(usmolon\\241)-286(tak,)-286(\\273e)-287(m)28(u)-286(in)1(o)-287(o)-28(czy)-286(\\261)-1(wiec)-1(i\\252y)-286(si\\246)-287(j)1(ak)28(o)-286(te)-287(w)28(\\241)-28(gliki)1(,)-286(a)-287(k)1(u\\252)-286(\\273)-1(elazo)-287(cz)-1(erw)28(one)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(o,)-330(a\\273)-330(h)29(ucz)-1(a\\252o,)-329(i)-330(d)1(e)-1(sz)-1(cz)-330(iskier)-330(r)1(oz)-1(p)1(ryskiw)28(a\\252)-330(s)-1(i)1(\\246)-330(s)-1(p)-27(o)-28(d)-329(m\\252)-1(ot)1(a)-330(i)-330(z)-330(syki)1(e)-1(m)-330(top)1(i\\252)]TJ 0 -13.55 Td[(si\\246)-334(w)-334(b)1(\\252otnistej)-333(z)-1(i)1(e)-1(mi.)]TJ 27.879 -13.549 Td[({)-333(A)-334(co?)-334({)-333(zap)28(yta\\252)-333(p)-28(o)-333(c)27(h)28(wil)1(i.)]TJ 0 -13.549 Td[({)-341(I...)-340(c)-1(\\363\\273)-341(b)28(y)-341(za\\261)-1(!)-341({)-341(o)-27(dpar)1(\\252)-341(c)-1(ic)28(ho)-341(An)28(t)1(e)-1(k,)-340(w)-1(spar)1(\\252)-341(s)-1(i\\246)-341(o)-341(w)27(as\\241)-28(g,)-341(k)1(t\\363ryc)28(h)-341(kil)1(k)55(a)]TJ -27.879 -13.549 Td[(sta\\252o)-334(d)1(o)-334(oku)1(c)-1(i)1(a,)-333(i)-334(zapat)1(rz)-1(y)1(\\252)-334(si\\246)-334(w)-333(ogie)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-297(praco)28(w)27(a\\252)-297(t\\246go,)-297(nagrzew)27(a\\252)-297(\\273)-1(elazo)-297(raz)-298(p)-27(o)-297(raz)-297(i)-297(ku\\252,)-297(d)1(z)-1(w)28(oni)1(\\252)-298(d)1(o)-297(taktu)]TJ -27.879 -13.55 Td[(m\\252ote)-1(m,)-313(to)-314(p)-27(omaga\\252)-314(c)27(h)1(\\252opak)28(o)28(wi)-314(d)1(yma\\242)-314(m)-1(i)1(e)-1(c)27(h)1(e)-1(m,)-313(gdy)-313(mo)-28(cniejsz)-1(ego)-314(ogn)1(ia)-313(b)28(y\\252o)]TJ 0 -13.549 Td[(p)-27(otrze)-1(b)1(a,)-415(a)-414(ukr)1(adki)1(e)-1(m)-415(p)-27(ogl\\241d)1(a\\252)-415(n)1(a)-415(An)28(tk)56(a)-414(i)-415(u)1(\\261)-1(miec)27(h)-414(z\\252)-1(o\\261liwy)-414(wi\\252)-415(m)28(u)-414(s)-1(i\\246)-414(p)-28(o)-28(d)]TJ 0 -13.549 Td[(ru)1(dymi)-333(w)28(\\241s)-1(ami.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(e\\261)-334(p)-27(ono)-333(u)-333(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a?)-334(No)-333(i)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(b)28(y)84(,)-333(nic!)-333(W)-333(k)28(o\\261)-1(ciele)-334(b)28(ym)-333(to)-333(s)-1(amo)-334(u)1(s)-1(\\252y)1(s)-1(za\\252)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(c)28(hcia\\252e)-1(\\261)-333(c)-1(o)-333(inn)1(e)-1(go?)-333({)-334(za\\261m)-1(ia\\252)-333(si\\246)-334(ir)1(onicz)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Ks)-1(i)1(\\241dz)-334(p)1(rze)-1(cie)-1(,)-333(u)1(c)-1(zon)28(y)84(...)-333({)-333(m)-1(\\363)28(wi\\252)-333(uspra)28(wiedli)1(w)-1(i)1(a)-56(j\\241co)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-333(Uc)-1(zon)28(y)84(,)-334(j)1(ak)-333(wz)-1(i\\241\\242)-334(t)1(rz)-1(eba,)-333(al)1(e)-334(nie,)-333(kiej)-333(co)-334(d)1(a\\242)-334(k)28(om)27(u)1(...)]TJ 0 -13.549 Td[(Ale)-334(An)29(tk)28(o)28(w)-1(i)-333(j)1(u\\273)-334(si\\246)-334(o)-28(d)1(e)-1(c)28(hcia\\252o)-333(s)-1(p)1(rz)-1(eciwia\\242)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(\\363)-56(j)1(d\\246)-334(d)1(o)-333(iz)-1(b)29(y)-334({)-333(rze)-1(k)1(\\252)-334(p)-27(o)-333(c)27(h)28(wili)1(:)]TJ 0 -13.549 Td[({)-476(Id\\271,)-476(w)28(\\363)-56(j)1(t)-476(ws)-1(t\\241)-27(pi)-475(do)-476(mnie,)-476(to)-475(tam)-477(p)1(rzyjd)1(z)-1(i)1(e)-1(m)28(y!)-476(A)-475(m)-1(ac)28(hork)56(a)-476(j)1(e)-1(st)-476(na)]TJ -27.879 -13.55 Td[(sz)-1(af)1(c)-1(e,)-333(z)-1(ap)1(a)-1(l)-333(se)-1(.)1(..)]TJ 27.879 -13.549 Td[(Nie)-292(s)-1(\\252y)1(s)-1(za\\252)-292(na)28(w)28(e)-1(t,)-291(t)27(y)1(lk)28(o)-292(ws)-1(ze)-1(d)1(\\252)-292(do)-291(m)-1(iesz)-1(k)56(ani)1(a,)-292(c)-1(o)-291(p)-28(o)-292(d)1(ru)1(gie)-1(j)-291(stron)1(ie)-293(d)1(rogi)]TJ -27.879 -13.549 Td[(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(Si)1(os)-1(tr)1(a)-459(rozpala\\252a)-459(ogi)1(e)-1(\\253)1(,)-459(a)-459(n)1(a)-56(jstarszy)-459(c)27(h)1(\\252opak)-459(u)1(c)-1(zy\\252)-459(si\\246)-459(na)-459(elem)-1(en)28(tarzu)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-333(stole...)-333(Pr)1(z)-1(ywit)1(ali)-333(s)-1(i\\246)-333(w)-334(milcz)-1(eni)1(u.)]TJ 27.879 -13.55 Td[({)-293(Uc)-1(zy)-294(si\\246)-294(to?)-293({)-294(zau)28(w)28(a\\273)-1(y\\252,)-293(b)-27(o)-294(c)28(h\\252opak)-293(sylab)1(iz)-1(o)28(w)28(a\\252)-294(g\\252o\\261no)-293(i)-294(w)28(o)-28(d)1(z)-1(i\\252)-293(z)-1(astru)1(-)]TJ -27.879 -13.549 Td[(gan)28(ym)-333(pat)28(yki)1(e)-1(m)-333(p)-28(o)-333(literac)28(h.)]TJ\nET\nendstream\nendobj\n400 0 obj <<\n/Type /Page\n/Contents 401 0 R\n/Resources 399 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n399 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n405 0 obj <<\n/Length 7519      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(122)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Ju\\273)-334(o)-27(d)-333(k)28(opan)1(ia)-333(pani)1(e)-1(n)1(k)55(a)-333(z)-334(m\\252yna)-333(m)28(u)-333(p)-28(ok)56(azuj)1(\\241,)-334(b)-27(o)-333(m)-1(\\363)-55(j)-333(c)-1(zasu)-333(nie)-333(m)-1(a.)]TJ 0 -13.549 Td[({)-333(Ro)-28(c)27(h)-333(te\\273)-334(u)1(c)-1(zy)-333(ju\\273)-333(o)-28(d)-333(w)28(c)-1(zora)-56(j)-333(w)-333(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-333(i)1(z)-1(b)1(ie)-1(.)]TJ 0 -13.549 Td[({)-311(Ch)1(c)-1(ia\\252am)-311(i)-310(j)1(a)-311(tam)-311(s\\252a\\242)-311(Ja\\261)-1(k)56(a,)-310(ale)-311(m\\363)-56(j)-310(nie)-311(d)1(a,)-310(\\273)-1(e)-311(to)-310(u)-310(o)-56(jca)-311(i)-310(\\273e)-311(pani)1(e)-1(n)1(k)55(a)]TJ -27.879 -13.549 Td[(wi\\246c)-1(ej)-333(ucz)-1(on)1(a,)-333(b)-28(o)-333(w)-334(sz)-1(k)28(o\\252ac)28(h)-333(b)28(y\\252a)-333(w)27(e)-333(W)83(arsza)27(wie...)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(p)-27(ew)-1(n)1(ie...)-333({)-333(p)-28(o)28(wie)-1(d)1(z)-1(i)1(a\\252,)-334(b)29(yle)-334(co\\261)-334(rzec)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(Jasiek)-333(taki)-333(z)-1(m)28(y\\261ln)28(y)-333(do)-333(lem)-1(en)28(tar)1(z)-1(a,)-333(a\\273)-334(si\\246)-334(p)1(anienk)56(a)-333(dziwuj)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(..)1(.)-334(k)28(o)28(w)28(alo)28(w)27(e)-333(nasie)-1(n)1(ie)-334(p)1(rz)-1(ecie)-1(\\273...)-333(syn)-333(taki)1(e)-1(go)-333(m)-1(\\241d)1(rali)1(...)]TJ 0 -13.549 Td[({)-361(Prze)-1(k)1(piw)28(as)-1(z)-362(si\\246,)-362(a)-361(on)-361(na)-55(jlepi)1(e)-1(j)-361(p)-27(o)28(w)-1(i)1(ada,)-361(\\273)-1(e)-362(p)-27(\\363ki)-361(o)-28(ciec)-362(\\273)-1(yj)1(\\241,)-361(to)-362(za)27(w\\273dy)]TJ -27.879 -13.549 Td[(zapis)-334(mog\\241)-333(o)-28(debr)1(a\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-335(Ju)1(\\261)-1(ci,)-335(wyr)1(w)-1(i)1(j)-335(wilk)28(o)28(wi)-335(z)-335(gard)1(\\252a,)-335(wyrwij)1(!)-335(S)1(z)-1(e\\261)-1(\\242)-335(morg\\363)28(w)-335(gron)28(tu)1(!)-335(T)83(o)-335(m)28(y)-335(u)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go)-333(z)-334(k)28(ob)1(ie)-1(t\\241)-333(za)-334(p)1(arobk)28(\\363)28(w)-333(pra)28(wie)-334(s\\252u\\273ym,)-333(a)-334(on)-333(ob)-27(ce)-1(j)-333(zapisuj)1(e)-1(,)-333(l)1(e)-1(d)1(a)-334(k)28(om)28(u..)1(.)]TJ 27.879 -13.55 Td[({)-305(K\\252\\363)-28(ci\\252)-305(si\\246)-305(b)-28(\\246dzies)-1(z)-305(a)-305(p)-27(om)-1(sto)28(w)27(a\\252,)-305(a)-304(rady)-304(u)-305(lu)1(dzi)-305(sz)-1(u)1(k)56(a\\252)-1(,)-304(a)-305(pr)1(a)27(w)28(o)28(w)27(a\\252)-305({)-305(to)]TJ -27.879 -13.549 Td[(ci\\246)-334(jesz)-1(cz)-1(e)-334(z)-333(c)27(ha\\252u)1(p)28(y)-333(wygoni.)1(..m\\363)28(w)-1(i)1(\\252)-1(a)-333(cic)27(h)1(o)-334(ogl)1(\\241da)-56(j)1(\\241c)-334(si\\246)-334(na)-333(d)1(rz)-1(wi.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(to)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252?)-334({)-333(z)-1(a)28(w)27(o\\252a\\252)-333(g\\252o\\261)-1(n)1(o)-334(zry)1(w)27(a)-55(j\\241c)-334(si\\246)-334(ze)-334(s)-1(t)1(o\\252)-1(k)56(a.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(j)-333(in)1(o...)-333(tak)-333(lu)1(dzie)-334(m\\363)27(wi\\241,)-333(cic)27(h)1(o)-56(j)1(!...)-333({)-333(sz)-1(epta\\252a)-333(l\\246)-1(k)1(liwie.)]TJ 0 -13.549 Td[({)-395(Nie)-395(ust\\241)-28(pi)1(\\246)-1(,)-395(n)1(ie)-1(c)28(h)-395(m\\246)-396(p)1(rz)-1(ez)-396(mo)-28(c)-395(wyc)-1(i)1(e)-1(p)1(nie,)-395(do)-395(s\\241du)-394(p)-28(\\363)-55(jd\\246,)-395(p)1(ra)28(w)27(o)28(w)28(a\\252)]TJ -27.879 -13.55 Td[(si\\246)-334(b)-27(\\246)-1(d)1(\\246)-1(,)-333(a)-333(nie)-333(ust\\241)-28(pi)1(\\246)-1(!)-333({)-333(krzycz)-1(a\\252)-333(pra)28(wie.)]TJ 27.879 -13.549 Td[({)-261(I)-261(g\\252o)28(w)28(\\241)-261(m)27(u)1(ru)-260(nie)-261(pr)1(z)-1(ebij)1(e)-1(sz,)-261(c)27(h)1(o)-28(\\242)-1(b)29(y\\261)-261(i)-261(try)1(k)55(a\\252)-260(jak)-261(ten)-260(baran)1(!)-261({)-261(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-333(w)28(c)27(h)1(o)-28(dz\\241c)-334(do)-333(izb)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(co)-333(z)-1(r)1(obi\\242?)-334(M)1(\\241dre)-333(rady)-333(mas)-1(z)-333(la)-334(l)1(ud)1(z)-1(i,)-333(to)-333(p)-27(orad\\271...)]TJ 0 -13.549 Td[({)-333(Z\\252)-1(o\\261ci\\241)-334(ze)-334(starym)-333(nie)-333(w)-1(y)1(gra!)]TJ 0 -13.55 Td[(Zapal)1(i\\252)-330(f)1(a)-56(j)1(k)28(\\246)-330(i)-329(j\\241\\252)-329(m)27(u)-329(p)1(rze)-1(k\\252ad)1(a\\242)-1(,)-329(t\\252u)1(m)-1(acz)-1(y)1(\\242)-1(,)-329(\\252ago)-28(d)1(z)-1(i\\242)-329(i)-329(tak)-329(kr\\246c)-1(i\\242,)-329(a\\273)-330(si\\246)]TJ -27.879 -13.549 Td[(An)28(tek)-333(p)-28(ozna\\252)-333(i)-333(krzykn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(T)27(y)-333(z)-334(n)1(im)-334(tr)1(z)-1(y)1(m)-1(asz)-1(!,)]TJ 0 -13.549 Td[({)-333(Za)-334(spr)1(a)27(wiedl)1(iw)27(o\\261c)-1(i)1(\\241)-334(j)1(e)-1(ste)-1(m.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(e)-334(ci)-333(z)-1(a)-333(ni)1(\\241)-334(zap\\252aci\\252?)]TJ 0 -13.55 Td[({)-333(Je)-1(\\261li)-333(zap\\252ac)-1(i)1(\\252,)-334(t)1(o)-334(n)1(ie)-334(z)-334(t)28(w)28(o)-56(j)1(e)-1(j)-333(ki)1(e)-1(sz)-1(eni)1(.)]TJ 0 -13.549 Td[({)-353(A)-354(z)-354(mo)-55(jej,)-353(psiac)27(h)1(m)-1(a\\242,)-353(z)-354(mo)-56(jej!)-353(Dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-353(j)1(uc)27(h)1(a)-354(z)-353(c)-1(u)1(dze)-1(go.)-353(Dosy\\242)-354(ju)1(\\273)]TJ -27.879 -13.549 Td[(wz)-1(i)1(\\241\\252)-1(e\\261,)-334(t)1(o)-334(ci)-333(nie)-334(p)1(iln)1(o.)]TJ 27.879 -13.549 Td[({)-333(T)27(yl)1(e)-1(m)-333(w)-1(zi\\241\\252,)-333(c)-1(o)-333(i)-333(t)28(y!)]TJ 0 -13.549 Td[({)-291(Hale)-1(,)-291(t)28(yl)1(e)-1(..)1(.)-292(a)-291(s)-1(t)1(atki,)-291(a)-291(s)-1(zm)-1(at)28(y)84(,)-291(a)-292(kr)1(o)27(w)28(\\246,)-292(a)-291(ile\\261)-292(wycygani)1(\\252)-292(o)-28(d)-291(o)-55(jca?)-292(Bac)-1(ze)]TJ -27.879 -13.55 Td[(dob)1(rze)-345(i)-344(te)-345(g\\241ski,)-344(te)-345(p)1(ros)-1(i)1(aki)-344(i)-344(kto)-345(t)1(am)-345(z)-1(l)1(ic)-1(zy!)-344(A)-344(c)-1(io\\252ek,)-344(c)-1(o)-344(ci)-345(go)-344(da\\252)-344(ni)1(e)-1(d)1(a)27(wn)1(o,)]TJ 0 -13.549 Td[(to)-333(nic?)]TJ 27.879 -13.549 Td[({)-333(Mog\\252e)-1(\\261)-333(i)-333(t)27(y)-333(b)1(ra\\242.)]TJ 0 -13.549 Td[({)-333(Z\\252)-1(o)-27(dzie)-1(j)-332(nie)-334(j)1(e)-1(stem)-334(ni)-333(ten)-333(cygan!)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(a)-334(z\\252o)-28(d)1(z)-1(iejem)-334(j)1(e)-1(ste)-1(m,)-333(ja?..)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(k)28(o)-28(cz)-1(y)1(li)-383(do)-383(s)-1(iebi)1(e)-1(,)-383(goto)28(w)-1(i)-383(si\\246)-384(c)27(h)29(yc)-1(i)1(\\242)-384(z)-1(a)-383(orzydla,)-383(ale)-384(op)1(adli)-383(wnet,)-383(b)-28(o)]TJ -27.879 -13.55 Td[(An)28(tek)-333(rze)-1(k\\252)-333(cis)-1(ze)-1(j)1(:)]TJ 27.879 -13.549 Td[({)-240(Nie)-240(m\\363)27(wi\\246)-240(tego)-240(do)-240(cie)-1(b)1(ie...)-240(Ale)-240(sw)27(o)-55(jego)-240(nie)-240(dam,)-240(c)28(ho)-28(\\242b)28(ym)-240(mia\\252)-240(s)-1(k)56(api)1(e)-1(\\242...)]TJ 0 -13.549 Td[({)-305(I..)1(.)-305(n)1(ie)-305(t)28(yla)-305(ci)-305(t)1(am)-306(o)-304(te)-1(n)-304(gr)1(un)28(t)-304(idzie,)-305(wid)1(z)-1(i)-304(m)-1(i)-304(s)-1(i)1(\\246)-1(..)1(.rzuci\\252)-305(d)1(rwi\\241c)-1(o)-304(k)28(o)27(w)28(al.)]TJ 0 -13.549 Td[({)-333(Ino)-333(o)-334(co?)]TJ 0 -13.549 Td[({)-333(Lata\\252e)-1(\\261)-334(za)-333(Jagn\\241,)-333(to)-333(c)-1(i)-333(teraz)-334(i)-333(mark)28(otn)1(o.)]TJ 0 -13.55 Td[({)-333(Wid)1(z)-1(ia\\252e\\261)-1(?..)1(.)-334({)-333(kr)1(z)-1(yk)1(n\\241\\252)-333(ugo)-28(d)1(z)-1(on)28(y)-333(j)1(akb)28(y)-333(w)-333(s)-1(amo)-334(se)-1(r)1(c)-1(e.)]TJ 0 -13.549 Td[({)-333(S\\241)-333(takie)-333(w)27(e)-334(wsi,)-333(c)-1(o)-333(i)-333(widzia\\252y)83(,)-333(a)-333(ni)1(e)-334(raz...)]TJ\nET\nendstream\nendobj\n404 0 obj <<\n/Type /Page\n/Contents 405 0 R\n/Resources 403 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n403 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n408 0 obj <<\n/Length 8776      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(123)]TJ -330.353 -35.866 Td[({)-461(\\233eb)28(y)-460(im)-461(p)-27(om)-1(r)1(ok)55(a)-460(pad)1(\\252a)-461(n)1(a)-461(\\261le)-1(p)1(ie)-1(!)-460({)-460(s)-1(ze)-1(p)1(n\\241\\252)-461(cisz)-1(ej,)-460(b)-27(o)-461(w\\252a\\261)-1(n)1(ie)-461(w)27(\\363)-55(jt)]TJ -27.879 -13.549 Td[(w)28(c)27(ho)-27(dzi\\252)-399(d)1(o)-399(i)1(z)-1(b)28(y)-398(i)-398(wita\\252)-398(s)-1(i)1(\\246)-399(z)-1(e)-399(wsz)-1(y)1(s)-1(tki)1(m)-1(i)1(;)-399(snad)1(\\271)-399(wiedzia\\252,)-398(o)-399(co)-399(si\\246)-399(k)1(\\252\\363)-28(c)-1(\\241,)-398(b)-27(o)]TJ 0 -13.549 Td[(r\\363)28(wni)1(e)-1(\\273)-334(j)1(\\241\\252)-334(b)1(roni)1(\\242)-334(s)-1(t)1(are)-1(go)-333(i)-333(uspr)1(a)28(w)-1(i)1(e)-1(d)1(liwia\\242)-1(.)]TJ 27.879 -13.549 Td[({)-300(Dobr)1(z)-1(e)-301(w)28(as)-301(p)-27(oi\\252)-301(i)-300(wyp)1(as)-1(a\\252)-300(kie\\252basam)-1(i)1(,)-301(t)1(o)-301(i)-300(ni)1(e)-301(dziw)28(ota,)-300(\\273)-1(e)-301(go)-300(br)1(onicie...)]TJ 0 -13.549 Td[({)-333(B)-1(ele)-334(cz)-1(ego)-333(nie)-334(p)-27(o)28(wiada)-55(j,)-333(ki)1(e)-1(j)-333(w)28(\\363)-56(j)1(t)-334(d)1(o)-333(c)-1(i\\246)-333(m)-1(\\363)28(wi!)-333(krzykn)1(\\241\\252)-334(wyn)1(io\\261le)-1(.)]TJ 0 -13.55 Td[({)-333(W)83(asz)-1(e)-333(w)27(\\363)-55(jtost)28(w)27(o)-333(s)-1(toi)-333(u)-333(mni)1(e)-334(t)28(yle,)-333(c)-1(o)-333(ten)-333(pat)28(yk)-333(z\\252)-1(aman)28(y)84(...)]TJ 0 -13.549 Td[({)-333(C)-1(o\\261)-333(rze)-1(k\\252,)-333(co?)]TJ 0 -13.549 Td[({)-370(S)1(\\252ys)-1(ze)-1(l)1(i\\261)-1(cie!)-370(A)-370(n)1(ie,)-370(to)-370(r)1(z)-1(ekn\\246)-370(j)1(e)-1(sz)-1(cz)-1(e)-370(taki)1(e)-371(s\\252o)28(w)27(o,)-369(a\\273)-371(w)28(am)-370(w)-370(pi\\246t)28(y)-370(p)-27(\\363)-56(j)1(-)]TJ -27.879 -13.549 Td[(dzie...)]TJ 27.879 -13.549 Td[({)-333(Rz)-1(ekni)1(j)-333(to)-334(s\\252o)28(w)27(o,)-333(rze)-1(k)1(nij)1(!)]TJ 0 -13.549 Td[({)-440(A)-440(rze)-1(kn)1(\\246)-441({)-440(oto)-440(pij)1(ani)1(c)-1(a)-440(jes)-1(t)1(e)-1(\\261c)-1(ie)-440(i)-440(ju)1(dasz)-1(,)-440(i)-440(p)1(rz)-1(eni)1(e)-1(wierca!)-440(A)-440(rz)-1(ekn)1(\\246)-1(,)]TJ -27.879 -13.55 Td[(\\273e)-477(za)-477(gr)1(om)-1(ad)1(z)-1(k)1(ie)-477(p)1(ieni\\241d)1(z)-1(e)-476(balu)1(jec)-1(i)1(e)-477(i)-476(d)1(obrze)-1(\\261cie)-477(za)-476(to)-476(wz)-1(i\\246li)-476(o)-28(d)-475(dw)28(oru)1(,)-476(\\273)-1(e)]TJ 0 -13.549 Td[(dziedzic)-282(s)-1(p)1(rze)-1(da\\252)-281(nas)-1(z)-282(las!..)1(.)-282(A)-282(c)27(h)1(c)-1(ecie)-1(,)-281(to)-282(w)27(am)-282(j)1(e)-1(sz)-1(cz)-1(e)-282(co)-282(do\\252o\\273\\246)-1(,)-281(ino)-282(\\273e)-282(ju\\273)-282(t)28(ym)]TJ 0 -13.549 Td[(kij)1(as)-1(zkiem...)-333({)-333(w)27(o\\252a\\252)-333(z)-1(ap)1(alc)-1(zywie)-334(p)-27(ory)1(w)27(a)-56(j)1(\\241c)-334(za)-334(k)1(ij.)]TJ 27.879 -13.549 Td[({)-333(Urz\\246)-1(d)1(nik)-333(j)1(e)-1(ste)-1(m,)-333(m)-1(i)1(arku)1(j)-333(s)-1(i)1(\\246)-1(,)-333(An)28(tek,)-333(b)28(y\\261)-333(nie)-334(\\273a\\252o)28(w)27(a\\252.)]TJ 0 -13.549 Td[({)-390(A)-390(w)-390(m)-1(o)-55(jej)-390(c)27(h)1(a\\252upi)1(e)-391(lu)1(dzi)-390(ni)1(e)-391(nast\\246pu)1(j,)-390(b)-27(o)-390(tu)-390(n)1(ie)-391(k)56(arcz)-1(ma!)-390({)-390(kr)1(z)-1(ycza\\252)]TJ -27.879 -13.55 Td[(k)28(o)28(w)27(al)-246(zas)-1(\\252an)1(ia)-56(j)1(\\241c)-247(sob\\241)-246(w)27(\\363)-55(jta,)-246(ale)-246(An)28(tek)-247(j)1(u\\273)-246(na)-246(nic)-246(nie)-246(z)-1(w)28(a\\273)-1(a\\252,)-246(b)-27(o)-247(ob)1(u)-246(zw)-1(y)1(m)27(y\\261la\\252)]TJ 0 -13.549 Td[(jak)-333(p)1(s)-1(\\363)28(w,)-333(trzas)-1(n)1(\\241\\252)-334(d)1(rzw)-1(i)1(am)-1(i)-333(i)-333(wysz)-1(ed\\252...)]TJ 27.879 -13.549 Td[(Ul\\273y\\252o)-309(m)27(u)-308(rz)-1(etelni)1(e)-1(;)-309(sp)-28(ok)28(o)-55(jn)1(iejsz)-1(y)-309(wr\\363)-27(c)-1(i\\252)-309(d)1(o)-309(dom)27(u)1(,)-309(in)1(o)-309(t)27(y)1(m)-310(j)1(e)-1(d)1(n)28(ym)-309(m)-1(ar)1(-)]TJ -27.879 -13.549 Td[(k)28(otn)28(y)84(,)-333(\\273)-1(e)-333(niep)-28(otr)1(z)-1(ebn)1(ie)-334(p)-27(ok\\252\\363)-28(ci\\252)-333(s)-1(i\\246)-333(z)-1(e)-334(sz)-1(w)28(agrem)-1(.)]TJ 27.879 -13.549 Td[({)-364(T)84(e)-1(raz)-364(j)1(u\\273)-364(wsz)-1(yscy)-364(b)-27(\\246)-1(d)1(\\241)-364(p)1(rze)-1(ciwk)28(o)-364(mnie!)-363({)-364(m)28(y\\261)-1(l)1(a\\252)-364(naza)-56(j)1(utr)1(z)-364(rano)-363(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(\\261niad)1(aniu)-333(i)-333(ze)-334(zdumieni)1(e)-1(m)-334(zobaczy\\252)-334(k)28(o)28(w)28(ala)-334(w)28(c)27(h)1(o)-28(dz\\241ce)-1(go)-333(do)-333(izb)28(y)83(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(w)-1(i)1(tali)-333(s)-1(i)1(\\246)-1(,)-333(jak)1(b)28(y)-333(nigd)1(y)-333(nic)-333(nie)-334(zasz)-1(\\252o)-333(p)-28(omi\\246dzy)-333(nimi)]TJ 0 -13.549 Td[(A)-352(\\273e)-352(An)28(tek)-351(s)-1(ze)-1(d)1(\\252)-352(do)-351(s)-1(t)1(o)-28(do\\252y)-351(ur)1(z)-1(n)1(\\241\\242)-352(s)-1(iec)-1(zki,)-351(k)28(o)28(w)27(al)-351(p)-27(os)-1(ze)-1(d)1(\\252)-352(za)-352(n)1(im,)-352(p)1(rzy-)]TJ -27.879 -13.549 Td[(siad\\252)-333(s)-1(i)1(\\246)-334(na)-333(s)-1(n)1(opk)56(ac)27(h)-333(zrzucon)28(yc)28(h)-333(z)-1(e)-333(s)-1(\\241sie)-1(k)56(a)-333(do)-333(om\\252)-1(ot)1(u)-333(i)-333(j\\241\\252)-333(c)-1(ic)28(ho)-333(m)-1(\\363)28(wi\\242:)]TJ 27.879 -13.549 Td[({)-255(Na)-255(psa)-255(w)-1(szys)-1(tk)1(ie)-256(k)1(\\252)-1(\\363t)1(nie)-255(i)-255(o)-255(c)-1(o)-255(j)1(e)-1(sz)-1(cz)-1(e?)-255(O)-255(to)-255(g\\252up)1(ie)-256(s\\252o)27(w)28(o!)-255(T)83(om)-255(pierwsz)-1(y)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(ciebie)-334(i)-333(p)1(ierws)-1(zy)-333(w)-1(y)1(c)-1(i\\241)-27(gam)-334(r\\246k)28(\\246)-334(do)-333(zgo)-28(dy)84(...)]TJ 27.879 -13.549 Td[(An)28(tek)-333(p)-28(o)-27(da\\252)-333(m)27(u)-333(r\\246k)28(\\246,)-334(sp)-27(o)-56(j)1(rz)-1(a\\252)-333(p)-27(o)-28(dejr)1(z)-1(li)1(w)-1(i)1(e)-334(i)-333(m)-1(r)1(ukn)1(\\241\\252:)]TJ 0 -13.549 Td[({)-330(Ju\\261c)-1(i,)-330(\\273e)-331(ino)-330(to)-331(s\\252o)28(w)27(o,)-330(b)-27(om)-331(z)-1(\\252o\\261c)-1(i)-330(d)1(o)-331(w)28(as)-331(nie)-331(mia\\252)-330(W)83(\\363)-55(jt)-330(m)-1(n)1(ie)-331(ze)-1(\\271li\\252,)-330(b)-28(o)]TJ -27.879 -13.549 Td[(co)-334(si\\246)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(uj)1(m)-1(o)28(w)28(a\\252,)-334(n)1(ie)-334(j)1(e)-1(go)-333(spra)28(w)28(a,)-333(to)-334(m)28(u)-333(w)27(ar)1(a!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(samo)-334(m)28(u)-333(rze)-1(k\\252em,)-334(b)-27(o)-333(c)27(h)1(c)-1(ia\\252)-333(bi)1(e)-1(\\273y\\242)-334(za)-334(tob)1(\\241...)]TJ 0 -13.55 Td[({)-308(B)-1(i\\242)-309(mn)1(ie)-1(.)1(..)-308(da\\252b)28(ym)-309(j)1(a)-309(m)28(u)-308(bi)1(tk)28(\\246)-1(,)-308(jak)-308(j)1(e)-1(go)-308(p)-28(o)-27(c)-1(iotk)28(o)28(wi,)-308(c)-1(o)-308(jesz)-1(cz)-1(e)-309(o)-28(d)-308(\\273ni)1(w)]TJ -27.879 -13.549 Td[(\\273e)-1(b)1(ra)-333(s)-1(e)-334(l)1(e)-1(ku)1(je...)-333({)-333(w)-1(y)1(krzykn)1(\\241\\252)-334(i)-333(j)1(\\241\\252)-334(n)1(a)-1(k)1(\\252ada\\242)-334(s\\252om)-1(\\246)-333(do)-333(lady)84(.)]TJ 27.879 -13.549 Td[({)-343(I)-342(tom)-343(m)28(u)-343(p)1(rzyp)-27(om)-1(n)1(ia\\252...)-342({)-342(rz)-1(u)1(c)-1(i)1(\\252)-343(skromnie)-343(k)28(o)28(w)28(al)-343(i)-342(u)1(\\261)-1(miec)27(hn)1(\\241\\252)-343(si\\246)-343(c)27(h)29(y-)]TJ -27.879 -13.549 Td[(trze.)]TJ 27.879 -13.549 Td[({)-386(Je)-1(sz)-1(cze)-387(ja)-386(si\\246)-387(z)-387(n)1(im)-387(p)-27(orac)28(h)28(uj)1(\\246)-1(,)-386(p)-27(opami\\246ta)-386(m)-1(n)1(ie...)-386(\\014gu)1(ra)-386(ju)1(c)27(h)1(a,)-387(u)1(rz\\246)-1(d)1(-)]TJ -27.879 -13.549 Td[(ni)1(k!..)1(.)]TJ 27.879 -13.55 Td[({)-252(Ryf)1(a)-252(j)1(e)-1(st)-252(i)-251(t)27(y)1(la,)-252(p)-27(oni)1(e)-1(c)28(ha)-56(j)-251(go.)-251(Um)27(y\\261li\\252em)-252(c)-1(osik)-251(i)-252(z)-252(t)28(ym)-252(do)-251(c)-1(iebi)1(e)-253(p)1(rzyc)27(h)1(o-)]TJ -27.879 -13.549 Td[(dz\\246...)-286(T)83(r)1(z)-1(a)-286(zrobi)1(\\242)-287(tak.)1(..)-286(P)28(o)-286(p)-27(o\\252ud)1(niu)-285(przyj)1(dzie)-287(t)1(u)-286(mo)-56(ja,)-285(to)-286(raze)-1(m)-286(z)-287(n)1(i\\241)-286(id)1(\\271)-1(cie)-287(d)1(o)]TJ 0 -13.549 Td[(starego)-362(r)1(oz)-1(m\\363)28(w)-1(i)1(\\242)-362(s)-1(i)1(\\246)-362(dok)1(ume)-1(n)28(t)1(nie...)-361(Na)-361(ni)1(c)-362(tam)-362(z\\252o\\261)-1(ci)-361(i)-361(\\273)-1(al)1(e)-1(n)1(ia)-361(s)-1(i\\246)-361(p)-28(o)-361(k)56(\\241tac)27(h)1(,)]TJ 0 -13.549 Td[(trza)-333(w)-334(o)-28(cz)-1(y)-333(stan\\241\\242)-333(i)-334(p)1(rosto)-333(p)-28(o)28(wiedzie)-1(\\242,)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(ma...)]TJ 27.879 -13.549 Td[(B\\246)-1(d)1(z)-1(ie)-333(dob)1(rz)-1(e)-333(ab)-28(o)-333(i)-333(nie)-333(b)-28(\\246dzie,)-333(ale)-334(trza)-333(w)-1(szys)-1(tk)28(o)-333(wy\\252o\\273)-1(y)1(\\242)-1(!.)1(..)]TJ 0 -13.55 Td[({)-333(C)-1(o)-333(tu)-333(wyk)1(\\252)-1(ad)1(a\\242)-1(,)-333(ki)1(e)-1(j)-333(zapi)1(s)-334(z)-1(r)1(obi\\252!)]TJ 0 -13.549 Td[({)-275(I)-276(z\\252o\\261)-1(ci\\241)-275(z)-276(ni)1(m)-276(ni)1(e)-276(p)-27(ore)-1(d)1(z)-1(i)1(!)-275(Ju\\261c)-1(i,)-275(\\273e)-276(zapis)-275(z)-1(r)1(obi\\252,)-275(ale)-276(p)-27(\\363ki)-275(\\273yje,)-275(to)-275(z)-1(a)28(wdy)]TJ\nET\nendstream\nendobj\n407 0 obj <<\n/Type /Page\n/Contents 408 0 R\n/Resources 406 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n406 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n411 0 obj <<\n/Length 8998      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(124)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(go)-306(mo\\273)-1(e)-306(o)-28(debr)1(a\\242)-307({)-306(b)1(ac)-1(z)-306(to)-306(s)-1(ob)1(ie)-306(i)-306(la)-306(tego)-306(nie)-306(p)-28(ot)1(rz)-1(a)-306(m)28(u)-306(si\\246)-306(przec)-1(iwi\\242.)-306(Niec)27(h)-305(s)-1(i\\246)]TJ 0 -13.549 Td[(\\273e)-1(n)1(i,)-333(niec)27(h)-333(ma)-333(s)-1(w)28(o)-56(j)1(\\241)-334(u)1(c)-1(iec)27(h)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-438(p)1(rzybl)1(ad\\252)-438(na)-437(to)-438(pr)1(z)-1(y)1(p)-28(omni)1(e)-1(n)1(ie)-439(i)-437(dr)1(\\273)-1(e\\242)-438(p)-28(o)-28(cz\\241\\252)-438(w)-438(s)-1(ob)1(ie)-1(,)-437(a\\273)-438(rz)-1(n)1(\\241\\242)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(t)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[({)-408(P)1(rze)-1(ciw)-408(tem)27(u)-407(nie)-408(p)-27(o)27(wsta)28(w)27(a)-55(j)-408(w)-408(o)-27(c)-1(zy)83(,)-407(a)-408(pr)1(z)-1(yc)28(h)28(w)27(al)1(a)-56(j)-407(i)-408(m\\363)28(w)-1(,)-407(\\273)-1(e)-408(d)1(obrze)]TJ -27.879 -13.55 Td[(rob)1(i,)-407(i)-407(zapis,)-407(mia\\252)-407(w)27(ol)1(\\246)-1(,)-407(to)-407(zrob)1(i\\252...)-407(n)1(iec)27(h)-407(in)1(o)-407(res)-1(zt\\246)-408(n)1(am)-408(p)1(rzy)28(obieca)-408({)-407(tob)1(ie)-407(i)]TJ 0 -13.549 Td[(mo)-56(j)1(e)-1(j)1(,)-334(a)-333(p)1(rz)-1(y)-333(\\261wiadk)56(ac)27(h)1(!)-333({)-334(d)1(o)-28(da\\252)-333(c)27(h)29(ytrze)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(J\\363zk)56(a)-334(i)-333(G)1(rz)-1(ela?)-333({)-334(zap)28(yta\\252)-333(z)-334(n)1(ie)-1(c)28(h\\246c)-1(i\\241.)]TJ 0 -13.549 Td[({)-398(Sp)1(\\252)-1(aci)-398(s)-1(i)1(\\246)-399(ic)27(h)1(!)-398(B)-1(o)-398(to)-398(Gr)1(z)-1(ela)-398(m)-1(a\\252o)-398(wybra\\252?)-398(Ady)-398(p)1(ra)28(w)-1(i)1(e)-399(m)27(u)-398(co)-398(m)-1(i)1(e)-1(si\\241c)]TJ -27.879 -13.549 Td[(p)-27(os)-1(y\\252a)-374(do)-374(w)28(o)-56(j)1(s)-1(k)56(a.)-374(Mni)1(e)-375(in)1(o)-375(s\\252uc)27(h)1(a)-56(j)1(,)-374(z)-1(r)1(\\363b,)-374(jak)-374(ci)-374(redz)-1(\\246,)-374(a)-374(nie)-375(stracisz)-1(.)-374(M)1(o)-56(ja)-374(w)]TJ 0 -13.549 Td[(t)28(ym)-334(g\\252o)28(w)28(a,)-333(\\273)-1(e)-334(j)1(u\\273)-334(tak)-333(p)-27(okieru)1(j\\246,)-333(c)-1(o)-333(ws)-1(zystk)28(o)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(nasz)-1(e...)]TJ 27.879 -13.55 Td[({)-333(Je)-1(sz)-1(cze)-334(bar)1(an)-333(\\273)-1(yj)1(e)-1(;)-333(a)-333(ju)1(\\273)-334(ku)1(\\261)-1(n)1(ie)-1(r)1(z)-334(k)28(o\\273uc)27(h)-333(n)1(a)-333(nim)-333(s)-1(zyje...)]TJ 0 -13.549 Td[({)-367(Mn)1(ie)-368(s\\252uc)28(ha)-56(j)1(...)-366(N)-1(i)1(e)-1(c)28(h)-367(in)1(o)-367(przy)28(obi)1(e)-1(ca)-367(przy)-367(\\261w)-1(i)1(adk)56(ac)27(h)1(,)-367(\\273)-1(eb)28(y)-367(in)1(o)-367(b)28(y\\252o)-367(z)-1(a)]TJ -27.879 -13.549 Td[(co)-408(c)28(h)28(yci\\242)-408(p)1(az)-1(u)1(rami...)-407(s\\241d)-407(j)1(e)-1(sz)-1(cz)-1(e)-407(jes)-1(t)-407(i)-407(spra)28(wiedli)1(w)27(o\\261\\242)-1(,)-407(n)1(ie)-408(b)-27(\\363)-56(j)-406(s)-1(i\\246.)-407(A)-407(jes)-1(t)-407(j)1(u\\273)]TJ 0 -13.549 Td[(jedn)1(a)-333(z)-1(acz)-1(epk)56(a,)-333(b)-27(o)-28(\\242)-334(z)-1(osta\\252)-333(gron)28(t)-333(p)-27(o)-334(t)28(w)28(o)-56(j)1(e)-1(j)-333(matce)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Wielk)56(a)-334(p)1(arad)1(a,)-334(czte)-1(ry)-333(morgi)-333({)-333(na)-333(mnie)-333(i)-334(n)1(a)-333(t)27(w)28(o)-56(j)1(\\241...)]TJ 0 -13.55 Td[({)-345(Ale)-346(go)-346(n)1(ie)-346(da\\252)-345(tobi)1(e)-346(ni)-345(mo)-56(jej!)-345(A)-345(t)28(yle)-346(rok)28(\\363)28(w)-346(sieje)-346(i)-345(z)-1(b)1(iera!)-345(Zap\\252aci)-346(w)28(am)]TJ -27.879 -13.549 Td[(dob)1(rze)-309(z)-1(a)-309(t)1(o)-309(i)-309(z)-309(p)1(ro)-28(ce)-1(n)29(tam)-1(i)1(...)-308(Przywt\\363rz\\246)-309(raz)-309(jes)-1(zcz)-1(e,)-309(starem)27(u)-308(si\\246)-309(w)-309(nicz)-1(y)1(m)-309(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(w)-1(,)]TJ 27.879 -13.549 Td[(pr)1(z)-1(y)1(c)27(h)28(w)28(ala)-56(j)1(,)-225(pr)1(z)-1(ygad)1(uj)1(,)-225(na)-225(w)28(e)-1(se)-1(le)-225(id\\271,)-225(dob)1(rego)-225(s)-1(\\252o)28(w)27(a)-225(n)1(ie)-226(\\273a\\252uj)1(,)-225(a)-226(ob)1(ac)-1(zysz)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-298(go)-297(nar)1(yc)27(h)28(tu)1(jem)27(y)84(...)-297(A)-297(n)1(ie)-298(d)1(a)-297(s)-1(i\\246)-297(dob)1(ro)-28(ci\\241,)-297(to)-297(s)-1(\\241d)1(y)-297(rad)1(\\246)-298(m)28(u)-297(dad)1(z)-1(\\241.)1(..)-297(Z)-297(Jagusi\\241)]TJ 0 -13.55 Td[(znacie)-476(si\\246)-475(dob)1(rze)-1(..)1(.)-475(to)-475(i)-475(on)1(a)-475(m)-1(og\\252ab)29(y)-475(c)-1(i)-474(p)-28(om\\363)-28(c)-475(c)-1(o\\261)-475(ni)1(e)-1(co\\261)-1(.)1(..)-475(j)1(e)-1(n)1(o)-475(jej)-475(rzeknij)]TJ 0 -13.549 Td[(o)-460(t)28(y)1(m)-1(..)1(.)-460(on)1(a)-460(j)1(e)-1(sz)-1(cze)-460(le)-1(p)1(iej)-460(mog\\252ab)28(y)-459(stare)-1(go)-459(na)-459(nasz)-1(\\241)-459(s)-1(t)1(ron\\246)-460(p)1(rze)-1(c)28(h)28(yli\\242...)-459(n)1(o,)]TJ 0 -13.549 Td[(zgo)-28(da?...)-333(Bo)-333(c)-1(zas)-334(mi)-334(j)1(u\\273)-333(i\\261)-1(\\242...)]TJ 27.879 -13.549 Td[({)-318(Zgo)-28(d)1(a!)-318(In)1(o)-318(pr)1(\\246)-1(d)1(k)28(o)-318(id)1(\\271)-1(,)-317(b)28(ym)-318(ci)-318(w)-318(p)28(y)1(s)-1(k)-317(nie)-318(d)1(a\\252)-318(i)-318(za)-318(wrota)-317(nie)-318(wycie)-1(p)1(n\\241\\252!)]TJ -27.879 -13.549 Td[({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(pr)1(z)-1(ez)-334(z)-1(\\246b)28(y)84(.)]TJ 27.879 -13.55 Td[({)-361(Co)-361(t)28(y)84(,)-361(An)28(tek?)-361(Co)-361(t)28(y?)-361({)-361(b)-27(e)-1(\\252k)28(ota\\252)-361(p)1(rze)-1(strasz)-1(on)29(y)83(,)-360(b)-28(o)-361(An)29(te)-1(k)-360(pu)1(\\261)-1(ci\\252)-361(k)28(os)-1(\\246)-361(i)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252)-333(ku)-333(ni)1(e)-1(m)28(u)-333(blad)1(y)83(,)-333(ze)-334(strasz)-1(n)28(y)1(m)-1(i)-333(o)-28(cz)-1(ami.)]TJ 27.879 -13.549 Td[({)-294(Ju)1(dasz)-294(\\261)-1(cierw)27(a,)-293(z)-1(\\252o)-27(dzie)-1(j)1(!)-294({)-293(w)-1(y)1(c)27(hl)1(ust)27(y)1(w)27(a\\252)-294(ze)-294(s)-1(i)1(e)-1(b)1(ie)-294(s)-1(p)1(ie)-1(n)1(ion\\241)-293(niena)28(wi\\261c)-1(i\\241)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(a,)-333(a\\273)-334(k)28(o)28(w)27(al)-333(p)-27(orw)28(a\\252)-334(si\\246)-334(i)-333(uciek\\252)-333(c)-1(o)-333(tc)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[({)-431(Roz)-1(u)1(m)-432(m)28(u)-431(si\\246)-432(p)1(s)-1(u)1(je)-431(c)-1(zy)-431(co?)-432({)-431(m)28(y\\261)-1(l)1(a\\252)-432(j)1(u\\273)-431(na)-431(d)1(ro)-28(d)1(z)-1(e.)-431({)-431(Jak\\273e)-1(,)-431(d)1(obr\\241)]TJ -27.879 -13.55 Td[(rad)1(\\246)-295(da\\252em)-1(..)1(.)-295(a)-294(te)-1(n)1(?...)-294(Kiej)-294(taki)-294(g\\252)-1(u)1(pi)1(,)-295(to)-294(niec)27(h)-294(id)1(z)-1(i)1(e)-295(na)-295(wyr)1(ob)-28(ek,)-294(niec)27(h)-294(go)-294(s)-1(tar)1(y)]TJ 0 -13.549 Td[(wygoni)1(,)-333(p)-28(omog\\246)-334(jesz)-1(cz)-1(e)-334(d)1(o)-333(te)-1(go..)1(.)-333(a)-334(tak)-333(cz)-1(y)-333(o)28(w)27(ak)-333(gr)1(on)28(tu)-333(n)1(ie)-334(p)-27(opu)1(s)-1(zc)-1(z\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[(T)83(aki)1(\\261)-351(to)-351(t)28(y!)-350(W)-351(p)29(ys)-1(k)-350(c)27(h)1(c)-1(i)1(a\\252e)-1(\\261)-351(mi)-351(d)1(a\\242)-1(,)-350(za)-351(wrota)-350(w)-1(y)1(c)-1(iepn)1(\\241\\242)-1(,)-350(\\273e)-1(m)-351(si\\246)-351(c)27(h)1(c)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(z)-466(tob)1(\\241)-466(p)-27(o)-28(d)1(z)-1(ieli\\242...)-465(\\273e)-466(kiej)-465(do)-465(br)1(ata)-466(p)1(rzys)-1(ze)-1(d)1(\\252e)-1(m)-465(z)-466(dob)1(rym)-466(s\\252o)28(w)27(em)-1(!)-465(T)83(aki)1(\\261)-466(to)]TJ 0 -13.549 Td[(t)28(y!)-413(Aha,)-413(sa)-1(m)-413(b)28(y\\261)-414(c)27(h)1(c)-1(i)1(a\\252)-414(ws)-1(zystk)28(o)-414(b)1(ra\\242!)-414(Ni)1(e)-1(do)-27(c)-1(ze)-1(k)56(an)1(ie)-414(t)28(w)27(o)-55(je!)-414(W)1(yc)-1(i)1(\\241)-28(gn\\241\\252e\\261)-414(t)28(y)]TJ 0 -13.549 Td[(ze)-372(mnie)-371(mo)-56(j)1(e)-372(zam)27(ys\\252y)83(,)-370(to)-371(ju)1(\\273)-372(ci\\246)-1(,)-370(ju)1(c)27(ho,)-370(przyry)1(c)27(h)28(tu)1(j\\246,)-371(ja\\273)-371(ci\\246)-372(f)1(ryb)1(ra)-371(an)1(gie)-1(l)1(s)-1(k)56(a)]TJ 0 -13.55 Td[(p)-27(otrz\\246)-1(sie!)-353({)-354(Rozs)-1(r)1(a\\273)-1(a\\252)-353(s)-1(i)1(\\246)-354(coraz)-354(b)1(ardziej,)-353(b)-27(o)-353(go)-353(w)-1(\\261c)-1(i)1(e)-1(k\\252o\\261\\242)-354(p)-27(oryw)28(a\\252a,)-353(\\273)-1(e)-353(An)28(tek)]TJ 0 -13.549 Td[(pr)1(z)-1(ejr)1(z)-1(a\\252)-340(jego)-341(zam)27(y)1(s)-1(\\252y)-340(i)-340(got\\363)28(w)-341(j)1(e)-1(sz)-1(cz)-1(e)-340(w)-1(y)1(da\\242)-341(p)1(rze)-1(d)-340(stary)1(m)-1(.)-340(T)83(ego)-341(si\\246)-341(n)1(a)-56(j)1(wi\\246)-1(ce)-1(j)]TJ 0 -13.549 Td[(oba)28(wia\\252.)]TJ 27.879 -13.549 Td[({)-441(T)83(r)1(z)-1(a)-440(te)-1(m)28(u)-441(zap)-27(obiec)-1(!)-440({)-441(zdec)-1(yd)1(o)28(w)27(a\\252)-441(n)1(at)28(yc)27(h)1(m)-1(iast)-441(i)-440(mim)-1(o)-440(oba)28(wy)-441(p)1(rz)-1(ed)]TJ -27.879 -13.549 Td[(An)28(tk)1(ie)-1(m)-333(z)-1(a)28(wr\\363)-28(ci\\252)-333(z)-334(p)-28(o)28(wrotem)-334(d)1(o)-334(Bory)1(n\\363)28(w.)]TJ 27.879 -13.55 Td[({)-390(Jes)-1(t)-389(gos)-1(p)-27(o)-28(dar)1(z)-1(?)-390({)-390(zap)28(yta\\252)-390(W)1(itk)56(a,)-390(kt\\363r)1(e)-1(n)-389(w)-1(p)1(rost)-390(dom)28(u)-390(smaga\\252)-390(k)55(amie-)]TJ -27.879 -13.549 Td[(ni)1(am)-1(i)-333(n)1(a)-334(g\\246s)-1(i)1(,)-333(p\\252yw)28(a)-56(j\\241ce)-334(p)-27(o)-333(s)-1(ta)28(wie.)]TJ\nET\nendstream\nendobj\n410 0 obj <<\n/Type /Page\n/Contents 411 0 R\n/Resources 409 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n409 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n414 0 obj <<\n/Length 9829      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(125)]TJ -330.353 -35.866 Td[({)-333(Hale)-1(,)-333(j)1(e)-1(st)-333(tam)-1(!)-333(P)28(oszli)-333(przec)-1(ie)-333(do)-333(m)-1(\\252yn)1(arz\\363)27(w)-333(z)-1(ap)1(rasz)-1(a\\242)-333(na)-333(w)27(es)-1(ele...)]TJ 0 -13.549 Td[({)-366(W)1(yjd)1(\\246)-366(napr)1(z)-1(ec)-1(i)1(w)-1(,)-365(ni)1(b)28(y)-366(t)1(o)-366(s)-1(i)1(\\246)-366(s)-1(p)-27(otk)56(am)27(y!)-365({)-366(p)-27(om)27(y\\261la\\252)-366(i)-365(p)-27(os)-1(ze)-1(d)1(\\252)-366(ku)-365(m\\252y-)]TJ -27.879 -13.549 Td[(nar)1(z)-1(o)28(wi,)-417(al)1(e)-418(p)-27(o)-417(d)1(ro)-28(d)1(z)-1(e)-417(ws)-1(t\\241)-27(pi\\252)-417(j)1(e)-1(sz)-1(cze)-418(d)1(o)-417(dom)28(u)-417(i)-416(pr)1(z)-1(yk)56(aza\\252)-417(\\273)-1(on)1(ie)-417(pi\\246kn)1(ie)-417(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzia\\242)-1(,)-333(d)1(z)-1(iec)-1(i)-333(zabr)1(a\\242)-334(i)-333(z)-1(ar)1(az)-1(,)-333(j)1(ak)-334(p)1(rze)-1(d)1(z)-1(w)28(oni\\241)-333(p)-27(o\\252ud)1(nie,)-333(i\\261)-1(\\242)-333(do)-333(An)28(tk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-324(Ju)1(\\273)-325(on)-323(ci)-324(p)-27(o)27(wie,)-324(co)-324(rob)1(i\\242!...)-323(Nic)-324(s)-1(ama)-324(ni)1(e)-325(r)1(\\363b)-324(i)-323(nie)-324(miark)1(uj,)-323(b)-28(o\\261)-324(g\\252u)1(pia,)]TJ -27.879 -13.55 Td[(a)-324(in)1(o)-324(jak)-324(b)-27(\\246dzie)-324(p)-28(otr)1(z)-1(a,)-324(t)1(o)-324(b)-28(ekni)1(j,)-324(o)-55(jco)28(w)27(e)-324(nogi)-323(ob\\252ap)-324(i)-323(pro\\261...)-323(a)-324(s)-1(\\252u)1(c)27(ha)-55(j)-324(d)1(obrze,)]TJ 0 -13.549 Td[(co)-334(o)-55(jcie)-1(c)-333(p)-28(o)28(wiedz\\241)-334(i)-333(co)-334(An)29(te)-1(k)-333(p)1(rz)-1(\\363)-27(dzi)-333(m)-1(\\363)28(wi\\252)-334(b)-27(\\246dzie)-1(.)1(..)]TJ 27.879 -13.549 Td[(Z)-383(dob)1(ry)-383(pacierz)-384(j)1(\\241)-384(n)1(aucz)-1(a\\252,)-383(a)-383(pr)1(z)-1(ez)-384(okn)1(o)-384(p)1(atrzy\\252,)-383(cz)-1(y)-383(ic)28(h)-383(na)-383(mo\\261)-1(cie)-384(n)1(ie)]TJ -27.879 -13.549 Td[(wida\\242.)]TJ 27.879 -13.549 Td[({)-333(Za)-56(jr)1(z)-1(\\246)-333(do)-333(m)-1(\\252yn)1(a,)-333(c)-1(zy)-333(jag\\252\\246)-334(zrob)1(ili.)-333({)-333(D\\252u\\273y\\252o)-334(m)28(u)-333(si\\246)-334(w)-334(d)1(om)27(u)-333(cze)-1(k)56(a\\242)-1(.)]TJ 0 -13.549 Td[(Ale)-467(sz)-1(ed\\252)-467(w)28(olno,)-466(przysta)28(w)27(a\\252)-467(a)-467(medyto)28(w)28(a\\252...)-466({)-467(Ju\\261c)-1(i)1(,)-467(kto)-467(go)-466(ta)-467(wie)-1(,)-466(c)-1(o)]TJ -27.879 -13.55 Td[(zrobi)1(?)-331(Skl)1(\\241\\252)-331(mnie,)-330(a)-331(got\\363)28(w)-331(zrob)1(i\\242)-1(,)-330(com)-331(redzi\\252...)-330(to)-330(i)-331(l)1(e)-1(p)1(ie)-1(j)1(,)-330(\\273)-1(e)-331(k)28(ob)1(ie)-1(ta)-330(pr)1(z)-1(y)-330(t)28(ym)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie...)-361(a)-362(n)1(ie)-362(z)-1(r)1(obi,)-361(p)-27(ok\\252\\363)-28(c\\241)-362(s)-1(i)1(\\246)-1(..)1(.)-362(stary)-361(go)-362(wyp)-27(\\246)-1(d)1(z)-1(i)1(...)-361(T)83(ak)-362(ab)-27(o)-362(i)-361(ni)1(e)-1(,)-361(a)-362(za)27(wsz)-1(e)]TJ 0 -13.549 Td[(si\\246)-359(c)-1(osik)-358(ud)1(rze)-359(la)-359(siebie...)-358({)-358(z)-1(a\\261m)-1(i)1(a\\252)-359(si\\246)-359(rad)1(o\\261)-1(n)1(ie)-1(,)-358(zatar\\252)-358(r\\246)-1(ce,)-359(n)1(ac)-1(isn\\241\\252)-358(k)56(as)-1(zkiet)]TJ 0 -13.549 Td[(i)-333(z)-1(ap)1(i\\241\\252)-333(k)55(ap)-27(ot\\246,)-333(b)-28(o)-333(wie)-1(t)1(rz)-1(n)1(o)-333(b)28(y\\252o)-333(i)-334(zi\\241b)-333(p)1(rze)-1(j)1(m)27(uj)1(\\241c)-1(y)-333(sz)-1(ed\\252)-333(o)-28(d)-333(sta)28(wu.)]TJ 27.879 -13.549 Td[({)-309(Przymroze)-1(k)-309(b)-27(\\246)-1(d)1(z)-1(ie)-309(alb)-28(o)-309(i)-309(pl)1(uc)27(h)29(y)-310(n)1(o)28(w)27(e)-310({)-309(s)-1(ze)-1(p)1(n\\241\\252)-309(pr)1(z)-1(ysta)-56(j)1(\\241c)-310(na)-309(mo\\261)-1(cie)-310(i)]TJ -27.879 -13.55 Td[(sp)-28(ogl\\241d)1(a)-56(j)1(\\241c)-249(p)-27(o)-249(n)1(iebie...)-248(Ch)1(m)27(ur)1(y)-248(gna\\252y)-248(ni)1(s)-1(k)28(o,)-248(b)1(ure,)-248(ci\\246)-1(\\273kie,)-248(jakb)29(y)-248(ob\\252o)-28(cone,)-248(nib)29(y)]TJ 0 -13.549 Td[(stada)-386(n)1(ie)-1(m)28(yt)28(yc)27(h)-385(bar)1(an\\363)28(w.)-386(Sta)28(w)-386(p)-27(om)-1(r)1(ukiw)28(a\\252)-386(g\\252uc)27(h)1(o,)-386(a)-386(cz)-1(asam)-1(i)-385(c)27(hl)1(usta\\252)-386(w)27(o)-28(d)1(\\241)]TJ 0 -13.549 Td[(o)-393(br)1(z)-1(egi,)-393(n)1(a)-393(kt\\363r)1(yc)27(h)-392(gdzie)-1(n)1(ieg)-1(d)1(z)-1(i)1(e)-394(w\\261r\\363)-28(d)-392(c)-1(zarn)28(y)1(c)27(h,)-392(p)-28(o)-28(c)28(h)28(ylon)29(yc)27(h)-392(olc)27(h)-392(i)-393(wierz)-1(b)]TJ 0 -13.549 Td[(roso)-28(c)27(h)1(at)28(yc)27(h)-378(c)-1(ze)-1(r)1(wie)-1(n)1(i\\252y)-379(si\\246)-379(k)28(obiet)28(y)-379(pi)1(e)-1(r)1(\\241c)-1(e)-379(s)-1(zmat)27(y)-378({)-379(kij)1(anki)-378(trzas)-1(k)56(a\\252y)-379(za)-56(j)1(adle)]TJ 0 -13.549 Td[(p)-27(o)-341(ob)1(u)-340(b)1(rz)-1(egac)27(h)1(.)-340(Na)-340(drogac)28(h)-340(pu)1(s)-1(to)-340(b)28(y)1(\\252o,)-340(g\\246)-1(si)-340(t)28(ylk)28(o)-340(c)-1(a\\252ymi)-340(stadami)-340(bab)1(ra\\252y)-340(w)]TJ 0 -13.55 Td[(st\\246)-1(\\273a\\252ym)-342(b)1(\\252o)-28(cie)-342(i)-341(p)-27(o)-341(ro)28(w)28(ac)27(h,)-340(z)-1(arzucon)28(yc)28(h)-341(op)1(ad\\252ymi)-341(li\\261\\242)-1(mi)-341(i)-341(\\261mie)-1(ciami,)-341(i)-341(d)1(z)-1(ieci)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252y)-333(p)1(rz)-1(ed)-333(d)1(om)-1(ami.)-333(Kogu)1(t)28(y)-334(zacz)-1(\\246\\252)-1(y)-333(p)1(ia\\242)-334(p)-27(o)-333(p\\252otac)27(h)1(,)-333(jakb)29(y)-334(n)1(a)-334(zmian\\246.)]TJ 27.879 -13.549 Td[({)-333(W)83(e)-334(m\\252yn)1(ie)-334(p)1(r\\246)-1(d)1(z)-1(ej)-333(si\\246)-334(ic)28(h)-333(do)-28(cz)-1(ek)56(am)-1(!)-333({)-333(sz)-1(epn\\241\\252)-333(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(d)1(\\363\\252.)]TJ 0 -13.549 Td[(An)28(tek)-308(za\\261)-309(p)-27(o)-308(o)-28(dej\\261ciu)-308(k)28(o)28(w)28(ala)-308(j\\241\\252)-308(rzn\\241\\242)-308(tak)-308(za)-56(j)1(adle)-308(s)-1(i)1(e)-1(cz)-1(k)28(\\246,)-308(\\273e)-309(ca\\252)-1(k)1(ie)-1(m)-308(si\\246)]TJ -27.879 -13.549 Td[(zatraci\\252)-332(w)-332(tej)-332(r)1(ob)-28(o)-28(cie)-332(i)-332(d)1(o)-332(p)-27(o\\252ud)1(nia)-332(n)1(arzn\\241\\252)-332(t)28(yl)1(e)-1(,)-331(a\\273)-333(K)1(ub)1(a,)-332(kt\\363r)1(e)-1(n)-331(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252)-332(z)]TJ 0 -13.55 Td[(lasu,)-333(wykr)1(z)-1(yk)1(n\\241\\252)]TJ 27.879 -13.549 Td[({)-401(Na)-400(c)-1(a\\252y)-400(t)28(ydzie\\253)-400(b)-28(\\246dzie)-401(tego,)-401(n)1(o)-401({)-400(dziw)27(o)28(w)28(a\\252)-401(si\\246)-401(talk)-400(g\\252o\\261)-1(n)1(o,)-401(a\\273)-401(An)29(te)-1(k)]TJ -27.879 -13.549 Td[(opr)1(z)-1(y)1(tom)-1(n)1(ia\\252,)-333(lad\\246)-333(rz)-1(u)1(c)-1(i)1(\\252,)-334(p)1(rze)-1(ci\\241)-28(gn)1(\\241\\252)-334(si\\246)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[({)-300(C)-1(o)-300(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-300(to)-300(b)-28(\\246dzie,)-300(a)-301(tr)1(z)-1(a)-300(mi)-300(s)-1(i\\246)-300(z)-301(o)-56(j)1(c)-1(em)-301(rozm\\363)27(wi\\242)-300(dzis)-1(i)1(a)-56(j!)-300({)-300(p)-27(os)-1(tan)1(a-)]TJ -27.879 -13.549 Td[(wia\\252...)-306({)-307(Cygan)-306(on)-306(j)1(e)-1(st)-307(i)-306(ju)1(dasz)-1(,)-306(ale)-307(mo\\273e)-307(i)-307(d)1(obrze)-307(redzi..)1(.)-307(Ju)1(\\261)-1(ci,)-306(m)27(u)1(s)-1(i)-306(on)-306(w)-307(t)28(ym)]TJ 0 -13.55 Td[(co)-334(mie\\242)-1(..)1(.-My\\261la\\252)-333(o)-334(k)28(o)28(w)28(alu)-333(i)-333(z)-1(a)-55(jr)1(z)-1(a\\252)-333(na)-333(dr)1(ug\\241)-333(stron\\246,)-333(o)-56(j)1(c)-1(o)28(w)28(\\241,)-333(i)-333(w)-1(n)1(e)-1(t)-333(si\\246)-334(cofn)1(\\241\\252,)]TJ 0 -13.549 Td[(b)-27(o)-393(tam)-393(siedzia\\252o)-393(ze)-393(dw)28(adzie\\261)-1(cioro)-392(dziec)-1(i)-392(i)-392(w)-1(sz)-1(y)1(s)-1(tki)1(e)-393(raze)-1(m)-393(a)-392(w)-393(g\\252os)-393(sylabi)1(z)-1(o-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(y)84(...)-351(Ro)-28(c)28(h)-351(je)-352(n)1(aucz)-1(a\\252)-351(i)-352(p)1(iln)1(ie)-352(b)1(ac)-1(zy\\252,)-351(b)28(y)-351(psic)27(h)-351(\\014)1(gl\\363)28(w)-352(ni)1(e)-352(s)-1(tr)1(oi\\252y)83(.)1(..)-351(C)-1(h)1(o)-28(dzi\\252)-351(s)-1(e)]TJ 0 -13.549 Td[(do)-27(ok)28(o\\252a)-375(n)1(ic)27(h)-374(z)-375(r)1(\\363\\273)-1(a\\253)1(c)-1(em)-375(w)-374(r\\246ku,)-374(nas\\252uc)28(hiw)28(a\\252,)-374(c)-1(zas)-1(em)-375(kt\\363r)1(e)-375(p)-27(opra)28(wi\\252,)-374(cz)-1(ase)-1(m)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252)-370(za)-371(u)1(c)27(h)1(o,)-370(c)-1(zas)-1(em)-370(p)-28(og\\252ask)55(a\\252,)-370(a)-370(cz)-1(\\246sto)-370(g\\246)-1(sto)-370(przysiad\\252)-370(i)-370(cierpl)1(iwie)-371(wy-)]TJ 0 -13.549 Td[(k\\252ad)1(a\\252)-1(,)-328(j)1(a)-1(k)28(o)-328(tam)-329(stoi,)-328(i)-329(p)29(yta\\252,)-329(a)-328(dziec)-1(isk)56(a)-329(h)28(u)1(rme)-1(m)-329(j)1(e)-1(d)1(no)-328(pr)1(z)-1(ez)-329(dru)1(gie)-329(rw)28(a\\252y)-329(si\\246)]TJ 0 -13.55 Td[(o)-28(d)1(p)-28(o)28(wiad)1(a)-1(\\242,)-330(jak)28(o)-330(te)-331(in)1(dory)84(,)-330(kiej)-330(je)-331(kto)-330(p)-27(o)-28(dr)1(a\\273)-1(n)1(i...)-330(a)-331(t)1(ak)-331(g\\252o\\261no,)-330(\\273)-1(e)-331(i)-330(p)-27(o)-331(d)1(ru)1(gie)-1(j)]TJ 0 -13.549 Td[(stroni)1(e)-334(s)-1(\\252yc)28(ha\\242)-334(b)29(y\\252o...)]TJ 27.879 -13.549 Td[(Hank)56(a)-238(goto)28(w)27(a\\252a)-239(ob)1(iad)-238(i)-238(p)-28(ogad)1(yw)28(a\\252a)-239(z)-239(o)-56(j)1(c)-1(em)-239(sw)27(oim,)-238(s)-1(t)1(arym)-239(Byli)1(c)-1(\\241,)-238(kt\\363ren)]TJ -27.879 -13.549 Td[(rzadk)28(o)-333(zac)27(ho)-28(d)1(z)-1(i)1(\\252,)-334(\\273e)-334(to)-333(sc)27(hor)1(o)27(w)28(an)28(y)-333(b)28(y)1(\\252)-334(i)-333(ledwie)-334(si\\246)-334(j)1(u\\273)-334(r)1(uc)28(ha\\252.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-274(p)-28(o)-27(d)-275(ok)1(nem)-1(,)-274(ws)-1(p)1(art)28(y)-275(n)1(a)-275(Han)1(k)28(\\246)-275(s)-1(p)-27(oz)-1(i)1(e)-1(ra\\252.)1(..)-275(siwy)-274(b)28(y\\252)-275(ca\\252kiem)-1(,)-274(w)27(ar)1(-)]TJ -27.879 -13.55 Td[(gi)-415(m)27(u)-415(si\\246)-416(tr)1(z)-1(\\246s)-1(\\252y)-415(i)-415(g\\252os)-416(m)-1(i)1(a\\252)-416(s\\252ab)28(y)83(,)-415(j)1(akb)28(y)-415(ptasz\\246)-1(cy)83(,)-415(a)-415(w)-416(pi)1(e)-1(rsiac)28(h)-415(m)27(u)-415(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(rz\\246)-1(zia\\252o..)1(.)]TJ\nET\nendstream\nendobj\n413 0 obj <<\n/Type /Page\n/Contents 414 0 R\n/Resources 412 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n412 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n417 0 obj <<\n/Length 9572      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(126)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Je)-1(d)1(li\\261c)-1(i)1(e)-334(\\261)-1(n)1(iadan)1(ie,)-333(c)-1(o?)-334({)-333(p)28(y)1(ta\\252a)-334(cic)27(h)1(o.)]TJ 0 -13.549 Td[({)-365(I..)1(.)-365(p)-27(o)-365(pr)1(a)28(w)-1(d)1(z)-1(i)1(e)-366(to)-364(W)83(eron)1(k)55(a)-364(z)-1(ab)1(ac)-1(zy\\252a)-365(mi)-365(d)1(a\\242)-1(..)1(.)-365(i)-364(nie)-365(u)1(p)-28(omin)1(a\\252)-1(em)-365(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-313(W)83(eron)1(k)55(a)-313(psy)-313(na)28(w)28(e)-1(t)-313(g\\252o)-28(dzi,)-313(b)-27(o)-314(t)1(u)-313(nieraz)-314(d)1(o)-314(mn)1(ie)-314(p)-27(o)-28(dj)1(e)-1(\\261\\242)-314(p)1(rz)-1(y)1(c)27(ho)-27(dz\\241!)-314({)]TJ -27.879 -13.549 Td[(za)27(w)28(o\\252a\\252a,)-260(b)-28(o)-260(i)-259(przy)-260(t)28(ym)-260(gniew)28(a\\252)-1(a)-260(si\\246)-260(z)-1(e)-260(s)-1(tar)1(s)-1(z\\241)-260(s)-1(i)1(os)-1(tr)1(\\241)-261(j)1(e)-1(szc)-1(ze)-261(o)-28(d)-259(z)-1(es)-1(z\\252e)-1(j)-259(z)-1(i)1(m)27(y)84(,)-260(\\273)-1(e)]TJ 0 -13.55 Td[(to)-321(tam)27(ta)-321(p)-27(o)-322(\\261m)-1(i)1(e)-1(rci)-321(m)-1(atk)1(i)-322(p)-27(ob)1(ra\\252a)-322(wsz)-1(ystk)28(o,)-321(c)-1(o)-321(p)-27(oz)-1(osta\\252o,)-322(i)-321(o)-28(d)1(da\\242)-322(n)1(ie)-322(c)28(hcia\\252a,)]TJ 0 -13.549 Td[(to)-333(s)-1(i)1(\\246)-334(i)-333(pra)28(wie)-334(n)1(ie)-334(wid)1(yw)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[({)-246(Bo)-245(s)-1(i\\246)-246(u)-245(n)1(ic)27(h)-245(ni)1(e)-246(przele)-1(w)28(a,)-245(nie...)-245({)-246(b)1(roni)1(\\252)-246(cic)27(h)1(o...)-245(Stac)28(h)-246(m\\252\\363)-28(ci)-246(u)-245(or)1(ganist)28(y)83(,)]TJ -27.879 -13.549 Td[(to)-393(i)-393(tam)-393(p)-28(o)-55(je)-394(i)-393(j)1(e)-1(szc)-1(ze)-394(cz)-1(terd)1(z)-1(ie\\261)-1(ci)-393(grosz)-1(y)-392(z)-1(a)-393(dzie\\253)-393(bi)1(e)-1(rze...)-393(a)-393(w)-394(c)28(ha\\252u)1(pie)-393(t)27(y)1(la)]TJ 0 -13.549 Td[(g\\241b.)1(..)-312(\\273)-1(e)-312(i)-313(t)28(y)1(c)27(h)-312(zie)-1(mni)1(ak)28(\\363)27(w)-312(ni)1(e)-313(s)-1(tar)1(c)-1(zy)83(.)1(..)-312(Pr)1(a)27(wd)1(a...)-312(\\273)-1(e)-312(dwie)-313(k)1(ro)28(w)-1(y)-312(ma)-56(j)1(\\241)-312(i)-313(mlek)28(o)]TJ 0 -13.549 Td[(jest...)-300(\\273e)-301(m)-1(as\\252o)-300(i)-301(sery)-300(do)-300(mias)-1(ta)-300(n)1(os)-1(i)-300(i)-300(ten)-300(gros)-1(z)-300(jaki)-300(zbierze)-1(.)1(..ale)-300(z)-1(ab)1(ac)-1(zy)-300(c)-1(z\\246)-1(sto)]TJ 0 -13.55 Td[(da\\242)-368(je\\261)-1(\\242)-368(ni)1(e)-369(d)1(z)-1(iw)28(ota)-368(...)-368(d)1(z)-1(i)1(e)-1(ci)-368(t)28(yla..)1(.)-368(a)-368(to)-368(i)-368(w)27(e\\252niak)1(i)-368(lud)1(z)-1(i)1(om)-369(tk)56(a..)1(.)-368(i)-368(pr)1(z)-1(\\246dzie)-1(,)-367(i)]TJ 0 -13.549 Td[(har)1(uj)1(e)-309(jak)-308(ten)-308(w)27(\\363\\252..)1(.)-309(a)-308(b)-27(o)-309(to)-308(du)1(\\273)-1(o)-308(m)-1(i)-308(tr)1(z)-1(a?...)-308(\\233eb)28(y)-308(ino)-308(w)-309(p)-27(or\\246...)-308(i)-308(c)-1(o)-308(dn)1(ia...)-308(to..)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(si\\246)-334(d)1(o)-334(n)1(as)-334(pr)1(z)-1(enie\\261)-1(cie)-334(n)1(a)-333(z)-1(wies)-1(n)1(\\246)-1(,)-333(ki)1(e)-1(j)-333(w)28(am)-334(u)-333(tej)-333(s)-1(u)1(ki)-333(tak)-333(\\271le)-1(.)1(..)]TJ 0 -13.549 Td[({)-464(Dy\\242)-465(si\\246)-465(ni)1(e)-465(s)-1(k)56(ar\\273\\246)-1(,)-464(n)1(ie)-465(nar)1(z)-1(ek)56(am)-1(,)-464(in)1(o...)-464(ino.)1(..)-464({)-465(g\\252os)-465(m)28(u)-464(s)-1(i\\246)-465(za\\252ama\\252)]TJ -27.879 -13.549 Td[(nagl)1(e)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-333(P)28(opa\\261lib)29(y\\261)-1(cie)-334(g\\246s)-1(i)1(,)-333(to)-334(d)1(z)-1(ieci)-334(p)1(rzypi)1(lno)28(w)28(ali..)1(.)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystk)28(o)-333(b)28(ym)-334(r)1(obi\\252,)-333(Han)28(u)1(\\261)-1(,)-333(ws)-1(zystk)28(o)-333({)-334(sz)-1(epta\\252)-333(c)-1(i)1(c)27(h)28(u)1(tk)28(o.)]TJ 0 -13.549 Td[({)-333(W)-333(iz)-1(b)1(ie)-334(j)1(e)-1(st)-333(m)-1(iejsce)-1(,)-333(to)-333(s)-1(i\\246)-333(\\252\\363\\273)-1(k)28(o)-333(ws)-1(ta)28(wi,)-333(b)28(y\\261c)-1(i)1(e)-334(c)-1(i)1(e)-1(p)1(\\252)-1(o)-333(mieli...)]TJ 0 -13.549 Td[({)-284(A)-284(dy\\242)-284(i)-284(w)-285(ob)-27(orze)-1(,)-284(i)-284(p)1(rzy)-284(k)28(oniac)28(h)-284(spa\\252b)28(ym,)-284(b)28(yl)1(e)-285(u)-284(ciebie,)-284(Han)28(u\\261.)-284(b)28(yl)1(e)-285(ju)1(\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-380(w)-1(r)1(ac)-1(a\\242!)-380(Byle...)-379({)-380(zac)27(h\\252y)1(s)-1(n)1(\\241\\252)-380(s)-1(i)1(\\246)-381(a\\273)-380(t\\241)-379(pro\\261b\\241)-379(b\\252agaln)1(\\241)-380(i)-379(\\252)-1(zy)-379(j\\246\\252)-1(y)-379(m)27(u)-379(k)56(apa\\242)]TJ 0 -13.55 Td[(z)-355(zapad)1(\\252yc)27(h)1(,)-355(p)-27(o)-28(cz)-1(erwienia\\252y)1(c)27(h)-354(o)-28(cz)-1(\\363)28(w...)-354({)-354(Zabra\\252a)-354(mi)-354(pierzyn\\246,)-354(b)-28(o)-354(p)-27(o)27(wiad)1(a,)-354(\\273)-1(e)]TJ 0 -13.549 Td[(dziec)-1(i)-420(nie)-421(ma)-56(j)1(\\241)-421(p)-28(o)-27(d)-421(cz)-1(ym)-421(spa\\242...)-420(ju\\261ci...)-420(m)-1(ar)1(z)-1(\\252y)84(,)-421(\\273)-1(em)-421(s)-1(am)-421(j)1(e)-422(b)1(ra\\252)-421(d)1(o)-421(s)-1(iebi)1(e)-1(.:)1(.)]TJ 0 -13.549 Td[(ale)-380(k)28(o\\273)-1(u)1(s)-1(zysk)28(o)-380(s)-1(i)1(\\246)-381(wytar)1(\\252)-1(o)-379(i)-380(nic)-380(m\\246)-381(n)1(ie)-380(grze)-1(j)1(e)-1(...)-379(i)-380(\\252\\363\\273)-1(k)28(o)-379(m)-1(i)-380(wziena...)-379(a)-380(p)-28(o)-379(m)-1(o-)]TJ 0 -13.549 Td[(jej)-400(s)-1(tr)1(onie)-401(zim)-1(n)1(o...)-400(ani)-401(t)1(e)-1(j)-400(s)-1(zc)-1(zap)28(y)-401(d)1(rze)-1(w)28(a)-401(n)1(ie)-402(p)-27(ozw)27(oli)1(...)-401(i)-400(k)56(a\\273)-1(d)1(\\241)-401(\\252y\\273)-1(k)28(\\246)-401(stra)28(wy)]TJ 0 -13.549 Td[(wyp)-27(om)-1(i)1(na...)-406(na)-407(\\273)-1(ebr)1(y)-407(wygani)1(a...)-407(a)-407(kiej)-407(mo)-28(cy)-407(ni)1(e)-408(mam)-1(,)-407(d)1(o)-407(c)-1(i)1(e)-1(b)1(ie)-1(m)-407(s)-1(i)1(\\246)-408(ledwie)]TJ 0 -13.55 Td[(zw)-1(l)1(\\363k\\252...)]TJ 27.879 -13.549 Td[({)-333(Lab)-28(oga!)-333(A)-333(c)-1(zem)27(u\\261cie)-334(to)-333(nam)-334(n)1(ic)-334(n)1(igdy)-333(n)1(ie)-334(r)1(z)-1(ekli,)-333(\\273e)-334(w)27(am)-333(tak)-333(\\271)-1(l)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(..)1(.)-334(c\\363rk)56(a..)1(.)-334(on)-333(d)1(obr)1(y)-333(c)-1(z\\252o)27(wiek,)-333(ale)-334(ci\\246giem)-334(na)-333(wyrob)1(ku.)1(..)-333(jak\\273e)-1(.)1(..)]TJ 0 -13.549 Td[({)-409(Pi)1(e)-1(kieln)1(ic)-1(a)-409(j)1(e)-1(d)1(na!)-409(Wzi\\246\\252a)-410(p)-27(\\363\\252)-409(gron)28(tu)-408(i)-409(p)-28(\\363\\252)-409(c)27(h)1(a\\252up)28(y)84(,)-409(i)-409(ws)-1(zystk)28(o,)-409(i)-409(taki)]TJ -27.879 -13.549 Td[(w)28(am)-349(d)1(a)-56(j)1(e)-349(wycug!)-347(Do)-348(s\\241du)-347(trza)-348(i\\261)-1(\\242!)-348(Je\\261\\242)-349(mieli)-348(w)28(am)-348(da)28(w)27(a\\242)-348(i)-348(op)1(a\\252,)-348(i)-348(t)1(o,)-348(co)-348(w)27(am)]TJ 0 -13.55 Td[(do)-410(ub)1(ie)-1(r)1(u)-410(p)-28(otr)1(z)-1(eba,)-410(a)-411(m)28(y)-411(te)-411(d)1(w)27(an)1(a\\261)-1(cie)-411(ru)1(bli)-410(w)-411(r)1(ok...)-410(b)-27(o\\261)-1(m)28(y)-411(p)1(rz)-1(ecie)-1(c)28(h)-411(i)-410(d)1(\\252)-1(u)1(g)]TJ 0 -13.549 Td[(sp\\252ac)-1(i)1(li..)1(.)-334(co,)-333(ni)1(e)-334(tak?...)]TJ 27.879 -13.549 Td[({)-325(Pr)1(a)27(wd)1(a!)-325(Rz)-1(ete)-1(l)1(ni)-325(j)1(e)-1(ste)-1(\\261c)-1(i)1(e)-1(,)-325(p)1(ra)28(wda...)-324(ale)-326(i)-325(te)-325(par)1(\\246)-326(z)-1(\\252ot)28(yc)28(h,)-325(co)-325(o)-28(d)-325(w)28(as)-1(,)-325(a)]TJ -27.879 -13.549 Td[(com)-372(j)1(e)-372(c)27(h)1(o)28(w)27(a\\252)-371(sobie)-371(na)-371(p)-27(o)-28(c)27(h)1(o)27(w)28(ek,)-371(wyc)-1(y)1(gani\\252a)-371(o)-28(d)1(e)-372(mni)1(e)-1(..)1(.)-371(a)-371(p)-28(otem)-372(i)-370(da\\242)-371(b)28(y\\252o)]TJ 0 -13.549 Td[(p)-27(otrza...)-401(Jak\\273e)-402(dziec)27(k)28(o...)-401({)-401(Um)-1(i)1(lk\\252)-401(i)-402(siedzia\\252)-402(cic)27(h)29(y)83(,)-401(skulon)29(y)83(,)-401(p)-27(o)-28(dob)1(n)28(y)-401(do)-401(kup)29(y)]TJ 0 -13.549 Td[(staryc)28(h)-333(w)-1(i)1(\\363r\\363)28(w)-334(p)1(r\\246)-1(d)1(z)-1(ej)-333(n)1(i\\271)-1(l)1(i)-334(d)1(o)-333(c)-1(z\\252o)27(wiek)56(a.)]TJ 27.879 -13.55 Td[(A)-239(p)-28(o)-239(obi)1(e)-1(dzie,)-239(s)-1(k)28(oro)-239(jeno)-239(k)28(o)28(w)27(alo)28(w)28(a)-240(w)28(e)-1(sz\\252)-1(a)-239(z)-240(d)1(z)-1(ie\\242)-1(mi)-239(i)-239(j\\246\\252)-1(a)-239(si\\246)-240(wita\\242)-1(,)-239(zabr)1(a\\252)]TJ -27.879 -13.549 Td[(w)28(\\246)-1(ze)-1(\\252ek,)-333(jaki)-333(m)28(u)-333(Hank)56(a)-333(narz\\241dzi\\252a)-333(p)-28(o)-333(kr)1(yjom)28(u,)-333(i)-333(wyni)1(\\363s)-1(\\252)-333(s)-1(i\\246)-333(p)-28(o)-333(cic)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-334(n)1(a)-334(ob)1(iad)-333(n)1(ie)-334(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[(Ko)28(w)28(alo)28(w)27(a)-317(p)-27(os)-1(t)1(ano)28(wi\\252a)-317(z)-1(atem)-317(c)-1(ze)-1(k)56(a\\242)-317(c)27(h)1(o)-28(\\242)-1(b)29(y)-317(i)-317(d)1(o)-317(no)-27(c)-1(y;)-316(Hank)56(a)-317(nar)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-281(ok)1(nem)-282(w)28(arsz)-1(tat)-281(i)-280(przec)-1(i\\241)-27(ga\\252)-1(a)-281(p)1(ac)-1(ze\\261)-1(n)28(y)-280(w)27(\\241tek)-281(pr)1(z)-1(ez)-281(p\\252o)-28(c)27(h)29(y)-281(i)-281(t)28(ylk)28(o)-281(n)1(iekiedy)84(,)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(\\242)-236(i)-236(z)-237(n)1(ie)-1(\\261mia\\252o\\261)-1(ci\\241,)-236(r)1(z)-1(u)1(c)-1(i\\252a)-236(j)1(akie)-236(s)-1(\\252o)28(w)27(o)-236(w)-236(rozmo)27(w)28(\\246)-1(,)-235(jak)56(\\241)-236(wi\\363)-28(d\\252)-236(An)29(te)-1(k)-236(z)-236(s)-1(i)1(os)-1(tr)1(\\241;)]TJ 0 -13.549 Td[(wyw)28(o)-28(dzi\\252)-308(s)-1(w)28(o)-56(j)1(e)-309(\\273)-1(al)1(e)-1(,)-308(w)-308(c)-1(zym)-309(m)28(u)-308(ju)1(\\273)-309(i)-308(p)1(rz)-1(y)1(w)-1(t)1(arz)-1(a\\252a,)-308(al)1(e)-309(nied\\252u)1(go)-308(to)-309(tr)1(w)27(a\\252o,)-308(b)-27(o)]TJ\nET\nendstream\nendobj\n416 0 obj <<\n/Type /Page\n/Contents 417 0 R\n/Resources 415 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 402 0 R\n>> endobj\n415 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n420 0 obj <<\n/Length 9350      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(127)]TJ -358.232 -35.866 Td[(wpad)1(\\252a)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a)-334(i)-333(j)1(akb)28(y)-333(o)-28(d)-333(n)1(ie)-1(c)28(hce)-1(n)1(ia)-333(m)-1(\\363)28(wi\\252a:)]TJ 27.879 -13.549 Td[({)-487(Od)-486(organi)1(s)-1(t\\363)28(w)-487(lec)-1(\\246,)-487(do)-487(p)1(rani)1(a)-487(m)-1(n)1(ie)-488(za)28(w)27(o\\252a\\252y)84(...)-487(Dop)1(iero)-487(c)-1(o)-487(b)29(y\\252)-487(tam)]TJ -27.879 -13.549 Td[(Maciej)-247(z)-247(Jagn\\241)-247(p)1(rosi\\242)-247(na)-247(w)28(e)-1(se)-1(le.)-247(P)28(\\363)-55(jd)1(\\241!)-247(Ju)1(\\261)-1(ci,)-247(sw)27(\\363)-55(j)-247(d)1(o)-247(s)-1(w)28(e)-1(go,)-246(b)-28(ogacz)-247(do)-247(b)-27(ogac)-1(za)]TJ 0 -13.549 Td[(ci\\241)-28(gni)1(e)-1(..)1(.)-333(i)-334(k)1(s)-1(i\\246dza)-333(te)-1(\\273)-334(p)1(rosili.)1(..)]TJ 27.879 -13.549 Td[({)-333(I)-334(d)1(obro)-27(dzie)-1(j)1(a)-334(p)1(rosili?..)1(.)-333({)-334(wykr)1(z)-1(y)1(kn\\246\\252a)-334(Han)1(k)55(a.)]TJ 0 -13.55 Td[({)-287(A)-287(c\\363\\273)-288(to,)-286(\\261)-1(wi\\246t)28(y)-287(c)-1(zy)-287(co?)-287(Prosili)1(,)-287(p)-28(o)28(wiedzia\\252;)-287(\\273e)-288(mo\\273e)-288(p)1(rz)-1(y)1(jd)1(z)-1(ie...)-286(lac)-1(ze)-1(go)]TJ -27.879 -13.549 Td[(ni)1(e)-1(?...)-275(B)-1(o)-276(t)1(o)-276(m)-1(\\252o)-28(d)1(uc)28(ha)-276(n)1(ie)-277(u)1(ro)-28(d)1(na,)-275(a)-276(b)-28(o)-276(to)-275(jad\\252a)-276(d)1(obr)1(e)-1(go)-276(i)-275(napi)1(tku)-276(n)1(ie)-276(nasz)-1(yk)1(u-)]TJ 0 -13.549 Td[(j\\241?)-243(M)1(\\252)-1(y)1(narze)-243(s)-1(i\\246)-243(te\\273)-244(ob)1(ie)-1(cali)-243(i)-242(z)-244(c\\363rk)56(\\241.)-243(Ho,)-243(h)1(o,)-243(takiego)-243(w)28(e)-1(se)-1(la,)-242(jak)-243(Li)1(p)-28(ce)-244(Li)1(p)-28(cam)-1(i)1(,)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-258(n)1(ie)-258(b)28(y\\252o!)-257(Wiem)-258(d)1(obrze)-1(,)-257(b)-27(o)-258(z)-258(J)1(e)-1(wk)56(\\241)-258(o)-28(d)-257(m\\252yn)1(arz)-1(\\363)28(w)-258(k)1(uc)27(h)1(aro)28(w)28(a\\242)-258(b)-28(\\246dziem)27(y)84(.)]TJ 0 -13.549 Td[(Wiepr)1(z)-1(a)-349(ju)1(\\273)-350(im)-350(Jam)28(br)1(o\\273)-1(y)-349(spra)28(wi\\252,)-349(kie\\252basy)-349(robi\\241.)1(..)-349({)-350(p)1(rze)-1(r)1(w)27(a\\252a)-349(nagle,)-349(b)-28(o)-349(nik)1(t)]TJ 0 -13.549 Td[(ni)1(e)-339(m\\363)28(wi\\252)-338(i)-338(n)1(ie)-338(p)28(yta\\252,)-337(s)-1(iedzieli)-338(c)28(hm)28(urn)1(i,)-338(wi\\246c)-338(pr)1(z)-1(yj)1(rza\\252)-1(a)-337(s)-1(i\\246)-338(wsz)-1(ystkim)-338(u)29(w)27(a\\273nie)]TJ 0 -13.55 Td[(i)-333(wykrzykn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-333(Zanosi)-334(si\\246)-334(u)-332(w)27(as)-334(n)1(a)-334(co\\261)-1(!)]TJ 0 -13.549 Td[({)-378(Zan)1(os)-1(i)-377(c)-1(zy)-378(n)1(ie)-378(z)-1(an)1(os)-1(i)1(,)-378(a)-378(w)28(am)-378(ni)1(c)-379(d)1(o)-378(tego!)-378({)-377(p)-28(o)28(wiedz)-1(i)1(a\\252a)-378(tak)-378(ostro)-377(k)28(o-)]TJ -27.879 -13.549 Td[(w)28(alo)28(w)27(a,)-462(a\\273)-463(Jagu)1(s)-1(t)28(yn)1(k)55(a)-462(si\\246)-463(obr)1(az)-1(i\\252a)-462(i)-462(p)-28(osz)-1(\\252a)-462(na)-462(dr)1(ug\\241)-462(s)-1(tr)1(on\\246,)-463(d)1(o)-462(J\\363z)-1(i,)-462(kt)1(\\363ra)]TJ 0 -13.549 Td[(usta)28(wia\\252a)-317(\\252a)28(w)-1(k)1(i)-317(i)-317(sto\\252ki,)-316(b)-28(o)-316(dzie)-1(ci)-317(si\\246)-317(ju)1(\\273)-317(p)-28(or)1(oz)-1(c)27(h)1(o)-28(dzi\\252y)84(,)-317(a)-317(Ro)-28(c)28(h)-317(p)-27(olaz\\252)-317(na)-316(w)-1(i)1(e)-1(\\261.)]TJ 27.879 -13.55 Td[({)-361(P)28(ewnie,)-361(\\273)-1(e)-361(o)-56(j)1(c)-1(i)1(e)-1(c)-361(nie)-361(b)-27(\\246)-1(d)1(z)-1(ie)-361(so)-1(b)1(ie)-361(\\273)-1(a\\252o)28(w)27(a\\252)-361(n)1(icz)-1(ego{)-361(s)-1(ze)-1(p)1(n\\246\\252a)-361(k)28(o)27(w)28(alo)28(w)27(a)]TJ -27.879 -13.549 Td[(roz\\273)-1(al)1(on)28(ym)-334(g\\252ose)-1(m.)]TJ 27.879 -13.549 Td[({)-320(Nie)-320(ma)-320(to)-320(n)1(a)-320(to?)-320({)-320(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-319(Hank)56(a)-320(i)-320(zmilk\\252a)-320(zas)-1(t)1(rac)27(h)1(ana,)-320(b)-27(o)-320(An)29(te)-1(k)]TJ -27.879 -13.549 Td[(sp)-28(o)-55(jrza\\252)-265(n)1(a)-265(n)1(i\\241)-265(gr)1(o\\271)-1(n)1(ie.)-265(S)1(ie)-1(d)1(z)-1(i)1(e)-1(li)-264(wi\\246c)-265(pr)1(a)27(wie)-265(w)-264(m)-1(il)1(c)-1(ze)-1(n)1(iu)-264(i)-264(c)-1(ze)-1(k)56(ali)1(;)-265(cz)-1(ase)-1(m)-264(kt\\363re)]TJ 0 -13.549 Td[(ni)1(e)-1(co\\261)-334(rze)-1(k)1(\\252)-1(o)-333(i)-333(zno)28(wu)-333(z)-1(ap)1(ada\\252o)-333(g\\252uc)27(h)1(e)-1(,)-333(ci\\246)-1(\\273kie,)-333(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(\\241c)-1(e)-334(mil)1(c)-1(ze)-1(n)1(ie)-1(.)1(..)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(ed)-361(c)27(h)1(a\\252up)1(\\241)-362(i)-361(n)1(a)-362(gan)1(ku)-361(Wi)1(te)-1(k)-361(z)-361(dzie)-1(\\242mi)-362(wyp)1(ra)28(wia\\252)-361(takie)-362(b)1(rew)27(erie,)-361(a\\273)]TJ -27.879 -13.549 Td[(\\212apa)-333(sz)-1(cz)-1(ek)56(a\\252)-334(i)-333(c)27(h)1(a\\252up)1(a)-334(si\\246)-334(tr)1(z)-1(\\246s)-1(\\252a.)]TJ 27.879 -13.549 Td[({)-349(G)1(oto)28(w)-1(y)1(c)27(h)-348(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)-348(m)27(u)1(s)-1(i)-348(mie\\242)-349(te)-1(\\273)-349(d)1(os)-1(y\\242,)-348(c)-1(i\\241)-27(gle)-349(c)-1(o\\261)-348(s)-1(p)1(rz)-1(eda)-55(je;)-348(a)-349(wyda)]TJ -27.879 -13.549 Td[(na)-333(co?)-1(.)1(..)]TJ 27.879 -13.549 Td[(An)28(tek)-296(mac)27(h)1(n\\241\\252)-296(r)1(\\246)-1(k)56(\\241)-296(n)1(a)-296(to)-296(siostrzyne)-296(s\\252)-1(o)28(w)28(o)-296(i)-295(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-296(z)-296(iz)-1(b)29(y)-296(na)-295(p)-28(o)28(wietrze)-1(,)]TJ -27.879 -13.55 Td[(c)27(k)1(ni\\252o)-262(m)27(u)-262(s)-1(i)1(\\246)-263(w)-263(c)27(h)1(a\\252upi)1(e)-263(i)-263(n)1(iep)-28(ok)28(\\363)-55(j)-262(w)-263(ni)1(m)-263(r\\363s\\252)-263(i)-262(s)-1(tr)1(ac)27(h,)-262(sam)-263(nie)-263(wiedzia\\252)-262(c)-1(ze)-1(go..)1(.)]TJ 0 -13.549 Td[(cz)-1(ek)55(a\\252)-372(na)-372(o)-56(j)1(c)-1(a)-372(i)-373(n)1(ie)-1(cierp)1(liwi\\252)-373(si\\246,)-373(a)-372(rad)-372(b)28(y)1(\\252)-373(w)-373(d)1(usz)-1(y)84(,)-373(\\273e)-373(tam)27(t)1(e)-1(go)-372(tak)-373(d)1(\\252ugo)-372(nie)]TJ 0 -13.549 Td[(wida\\242.)-313({)-314(\\377)-55(Nie)-314(o)-313(gron)28(t)-313(tobi)1(e)-314(idzie,)-313(a)-314(o)-313(Jagusie\")-314(p)1(rzyp)-28(omni)1(a\\252)-314(sobie,)-313(c)-1(o)-313(m)27(u)-313(k)28(o)28(w)28(al)]TJ 0 -13.549 Td[(w)28(c)-1(zora)-56(j)-377(p)-28(o)28(wiedzia\\252...)-378({)-378(\\212\\273e)-379(jak)-378(ten)-378(p)1(ie)-1(s!)-378({)-378(wykrzykn)1(\\241\\252)-378(z)-1(ap)1(am)-1(i\\246tale.)-378(Wzi\\241\\252)-378(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-367(ogacania)-367(\\261)-1(cian)28(y)-367(o)-28(d)-367(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(a,)-367(Wit)1(e)-1(k)-367(nosi\\252)-367(m)27(u)-367(\\261c)-1(i\\363\\252k)28(\\246)-368(z)-367(kup)29(y)83(,)-367(a)-367(on)-367(ubi)1(ja\\252)-367(i)]TJ 0 -13.55 Td[(zak\\252ada\\252)-263(\\273e)-1(r)1(dk)56(ami,)-263(al)1(e)-263(m)27(u)-262(r\\246c)-1(e)-263(d)1(r\\273)-1(a\\252y)-262(i)-263(r)1(az)-263(w)-263(raz)-263(zaprze)-1(sta)28(w)27(a\\252)-262(rob)-27(ot)28(y)83(.)-262(Ws)-1(p)1(iera\\252)]TJ 0 -13.549 Td[(si\\246)-390(o)-390(\\261cian\\246)-390(i)-389(pr)1(z)-1(ez)-390(nagi)1(e)-1(,)-389(b)-27(e)-1(zlistne)-390(d)1(rze)-1(w)28(a)-390(p)1(atrzy\\252)-390(za)-390(sta)28(w,)-390(h)1(a\\253,)-389(n)1(a)-390(Jagu)1(s)-1(in)1(\\241)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)-27(\\246)-1(.)1(..)-426(Nie,)-426(nie)-426(mi\\252o)27(w)28(ani)1(e)-427(w)-426(nim)-426(wz)-1(r)1(as)-1(ta\\252o,)-426(i)1(no)-426(z\\252)-1(o\\261\\242)-427(i)-425(t)27(y)1(s)-1(i\\241ce)-427(u)1(c)-1(zu\\242)-426(ni)1(e)-1(-)]TJ 0 -13.549 Td[(na)28(wistn)28(yc)28(h,)-399(a\\273)-400(s)-1(i)1(\\246)-400(z)-1(d)1(z)-1(iwi\\252)-399(te)-1(m)28(u!)-399(Su)1(k)56(a,)-400(\\261cie)-1(r)1(w)27(a,)-399(rzucili)-399(jej)-399(gnat,)-399(to)-399(i)-400(p)-27(osz)-1(\\252a!)-399({)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(\\252a\\252.)]TJ 27.879 -13.549 Td[(Ale)-433(p)1(rz)-1(y)1(s)-1(z\\252y)-433(n)1(a\\253)-433(wsp)-28(omni)1(e)-1(n)1(ia,)-433(wyp)-27(e\\252)-1(z\\252y)-433(sk)56(\\241d\\261c)-1(i)1(\\261)-1(,)-432(z)-433(t)27(y)1(c)27(h)-432(p)-28(\\363l)-432(nagi)1(c)27(h,)-432(z)]TJ -27.879 -13.55 Td[(dr)1(\\363g,)-290(z)-291(s)-1(ad)1(\\363)27(w)-290(s)-1(cz)-1(ern)1(ia\\252yc)27(h)-290(i)-290(p)-27(oku)1(rc)-1(zon)28(yc)28(h)-290(i)-290(obsiad\\252y)-290(m)27(u)-290(se)-1(r)1(c)-1(e,)-290(c)-1(ze)-1(p)1(ia\\252y)-290(s)-1(i\\246)-290(m)27(y-)]TJ 0 -13.549 Td[(\\261li,)-323(ma)-56(jaczy\\252y)-323(prze)-1(d)-322(o)-28(c)-1(zami...)-323(a\\273)-324(p)-27(ot)-323(p)-27(okry\\252)-323(m)27(u)-323(czo\\252)-1(o,)-323(o)-27(c)-1(zy)-323(roz)-1(b)1(\\252ys\\252)-1(y)-323(i)-323(d)1(res)-1(zc)-1(z)]TJ 0 -13.549 Td[(go)-274(przec)27(ho)-27(dzi\\252)-275(mo)-28(cn)28(y)84(,)-274(ognist)28(y!...)-274(Hej,)-274(a)-274(tam)-274(w)-275(sadzie)-1(.)1(..a)-274(w)-1(t)1(e)-1(d)1(y)-274(w)-275(les)-1(i)1(e)-1(..)1(.)-275(a)-274(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(raze)-1(m)-333(p)-28(o)28(wracali)-333(z)-334(miasta...)]TJ 27.879 -13.549 Td[(Jez)-1(u)1(s)-1(!)-327(A\\273)-328(si\\246)-328(z)-1(ato)-27(c)-1(zy\\252,)-327(b)-28(o)-327(z)-328(nag\\252a)-327(uj)1(rz)-1(a\\252)-327(tu\\273)-328(p)1(rze)-1(d)-327(sob\\241)-327(jej)-327(t)28(w)27(ar)1(z)-328(roz)-1(p)1(\\252o-)]TJ -27.879 -13.55 Td[(mie)-1(n)1(ion)1(\\241,)-365(d)1(ysz)-1(\\241c\\241)-364(nami\\246)-1(t)1(nie,)-364(jej)-364(mo)-28(dr)1(e)-365(o)-28(cz)-1(y)-364(i)-364(te)-364(usta)-365(p)-27(e\\252ne)-365(i)-364(tak)-364(cz)-1(erw)28(one,)-364(a)]TJ 0 -13.549 Td[(tak)-404(bli)1(s)-1(ki)1(e)-1(,)-404(\\273)-1(e)-405(ic)28(h)-404(tc)27(hn)1(ienie)-405(cz)-1(u)1(\\252,)-405(b)1(uc)27(h)1(n\\246\\252y)-405(n)1(a)-405(n)1(ie)-1(go)-404(\\273)-1(ar)1(e)-1(m...)-404(i)-405(t)1(e)-1(n)-404(g\\252os)-405(c)-1(i)1(c)27(h)28(y)84(,)]TJ\nET\nendstream\nendobj\n419 0 obj <<\n/Type /Page\n/Contents 420 0 R\n/Resources 418 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n418 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n424 0 obj <<\n/Length 9876      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(128)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ur)1(yw)28(an)28(y)83(,)-372(nab)1(rzm)-1(ia\\252y)-372(m)-1(i)1(\\252o\\261)-1(ci\\241)-373(i)-372(ogniem....{)-372(Jan)28(to\\261!...)-372(Jan)28(to\\261!)-373({)-372(prze)-1(c)28(h)28(yla\\252a)-372(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-442(niego)-443(b)1(lisk)28(o,)-443(\\273e)-443(c)-1(zu\\252)-443(j)1(\\241)-443(ca\\252)-1(\\241)-442(przy)-442(s)-1(ob)1(ie)-1(,)-442(jej)-442(piersi,)-443(j)1(e)-1(j)-442(ramion)1(a,)-443(j)1(e)-1(j)-442(nogi)-442({)]TJ 0 -13.549 Td[(a\\273)-385(o)-28(c)-1(zy)-385(p)1(rze)-1(ciera\\252)-385(i)-385(o)-27(dp)-27(\\246)-1(d)1(z)-1(a\\252)-385(p)1(rec)-1(z)-385(o)-28(d)-384(s)-1(i\\246)-385(te)-385(mary)-385(mami\\241c)-1(e,)-385(i)-384(c)-1(a\\252a)-385(j)1(e)-1(go)-385(z\\252o\\261)-1(\\242)]TJ 0 -13.549 Td[(za)27(wzi\\246)-1(t)1(a)-320(s)-1(k)56(ap)28(yw)28(a\\252a)-320(m)27(u)-319(z)-321(se)-1(r)1(c)-1(a)-320(n)1(ib)28(y)-320(te)-320(lo)-28(d)1(y)-320(z)-1(e)-320(strze)-1(c)27(h)1(,)-320(gd)1(y)-320(je)-320(w)-1(i)1(o\\261)-1(n)1(iane)-320(s)-1(\\252o\\253)1(c)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(grz)-1(eje,)-446(a)-446(bu)1(dzi\\252o)-446(s)-1(i)1(\\246)-447(zno)28(wu)-446(k)28(o)-28(c)27(h)1(anie)-446(i)-446(wz)-1(n)1(os)-1(i)1(\\252)-1(a)-446(sw)27(\\363)-55(j)-446(\\252eb)-446(k)28(olcz)-1(ast)28(y)-446(t\\246)-1(sk-)]TJ 0 -13.55 Td[(no\\261\\242)-446(b)-27(oles)-1(n)1(a,)-445(tak)55(a)-445(strasz)-1(n)1(a)-446(t)1(\\246)-1(skno\\261\\242)-1(,)-445(\\273e)-446(c)27(h)1(o)-28(\\242b)28(y)-445(g\\252o)27(w)28(\\241)-445(t\\252uc)-446(o)-445(\\261c)-1(ian)1(\\246)-446(i)-445(ry)1(c)-1(ze)-1(\\242)]TJ 0 -13.549 Td[(wnieb)-27(og\\252os)-1(y!)]TJ 27.879 -13.549 Td[({)-355(A)-354(\\273)-1(eb)28(y)-354(to)-355(siarcz)-1(y)1(s)-1(te)-355(zatrzas)-1(n)1(\\246)-1(\\252y!)-354({)-355(wyk)1(rz)-1(y)1(kn\\241\\252)-354(przytomni)1(e)-1(j)1(\\241c)-356(i)-354(b)28(ystro)]TJ -27.879 -13.549 Td[(sp)-28(o)-55(jrza\\252)-424(n)1(a)-424(W)1(itk)56(a,)-423(c)-1(zy)-424(t)1(e)-1(n)-423(n)1(ie)-424(dom)28(y\\261la)-424(si\\246)-424(cz)-1(ego...)-423(Od)-423(tr)1(z)-1(ec)27(h)-423(t)28(ygo)-27(dni)-423(b)28(y)1(\\252)-424(w)]TJ 0 -13.549 Td[(gor\\241cz)-1(ce,)-436(w)-436(o)-27(c)-1(ze)-1(k)1(iw)27(an)1(iu)-435(jak)1(ie)-1(go\\261)-436(cud)1(u,)-435(a)-436(n)1(ic)-436(n)1(ie)-436(m)-1(\\363g\\252)-435(p)-27(ore)-1(d)1(z)-1(i)1(\\242)-1(,)-435(ni)1(c)-1(ze)-1(m)28(u)-435(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\242)-1(!)-305(A)-306(b)-27(o)-306(to)-306(r)1(az)-306(przyc)27(h)1(o)-28(d)1(z)-1(i\\252y)-305(m)27(u)-305(s)-1(zalon)1(e)-307(m)28(y\\261li)-306(i)-305(p)-27(os)-1(tan)1(o)27(wieni)1(a,)-306(\\273e)-306(bieg\\252,)]TJ 0 -13.55 Td[(ab)28(y)-360(si\\246)-360(z)-361(ni)1(\\241)-361(zobaczy\\242)-1(,)-360(b)-27(o)-360(to)-360(jedn)1(\\241)-360(no)-28(c)-360(na)-360(d)1(e)-1(sz)-1(cz)-1(u)-359(i)-360(c)27(h)1(\\252)-1(o)-27(dzie)-361(w)28(aro)28(w)27(a\\252)-360(j)1(ak)-360(te)-1(n)]TJ 0 -13.549 Td[(pi)1(e)-1(s)-334(p)1(rze)-1(d)-333(j)1(e)-1(j)-332(c)27(ha\\252u)1(p\\241!)-333(Nie)-334(wysz)-1(\\252a,)-333(u)1(nik)56(a\\252a)-333(go,)-333(na)-333(dro)-27(dze)-334(ju)1(\\273)-334(z)-334(d)1(ala)-334(omij)1(a\\252a!...)]TJ 27.879 -13.549 Td[(Nie,)-331(to)-331(nie!)-331(I)-331(c)-1(or)1(az)-332(bar)1(dziej)-331(z)-1(a)28(wz)-1(i)1(na\\252)-331(s)-1(i)1(\\246)-332(pr)1(z)-1(ec)-1(i)1(w)-1(k)28(o)-331(n)1(ie)-1(j)-330(i)-331(pr)1(z)-1(ec)-1(iw)-331(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(kiem)27(u)1(!)-263(Oj)1(c)-1(o)28(w)28(a)-263(ona,)-262(to)-263(i)-263(ob)-27(ca,)-263(to)-263(i)-262(ta)-263(pr)1(z)-1(y)1(b\\252\\246)-1(d)1(a,)-263(ten)-262(pies)-264(b)-27(ez)-1(p)1(a\\253ski,)-263(t)1(e)-1(n)-262(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(co)-327(gron)29(t,)-327(d)1(obro)-326(na)-55(jwy\\273s)-1(ze)-327(im)-327(kr)1(adni)1(e)-327({)-327(a)-327(t)1(o)-327(kij)1(e)-1(m)-327(go)-326(c)27(h)1(o)-28(\\242)-1(b)29(y)-327(i)-326(na)-326(\\261)-1(mier\\242)-327(z)-1(ak)56(a-)]TJ 0 -13.55 Td[(tru)1(pi)1(\\246)-1(!)]TJ 27.879 -13.549 Td[(A)-337(b)-28(o)-337(to)-337(raz)-337(c)27(hcia\\252o)-337(m)27(u)-337(si\\246)-338(o)-55(jcu)-337(do)-337(o)-28(cz\\363)27(w)-337(s)-1(tan)1(\\241\\242)-338(i)-337(rzec)-1(:)-337(n)1(ie)-338(mo\\273)-1(ec)-1(i)1(e)-338(s)-1(i)1(\\246)-338(z)]TJ -27.879 -13.549 Td[(Jagn)1(\\241)-384(\\273)-1(eni\\242,)-384(b)-27(o)-384(ona)-383(m)-1(o)-55(ja!)-384(Al)1(e)-385(strac)28(h)-384(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-384(m)27(u)-383(w)-1(\\252osy)-384(n)1(a)-384(g\\252o)27(wie,)-384(co)-384(p)-27(o)27(wie)]TJ 0 -13.549 Td[(stary)84(,)-334(co)-333(lud)1(z)-1(i)1(e)-334(,)-333(c)-1(o)-333(wie)-1(\\261?...)-333(')]TJ 27.879 -13.549 Td[(A)-352(p)1(rz)-1(ecie)-1(\\273)-352(Jagu\\261)-352(b)-27(\\246)-1(d)1(z)-1(i)1(e)-353(j)1(e)-1(go)-352(mac)-1(o)-27(c)27(h\\241,)-351(m)-1(atk)56(\\241)-352(j)1(akb)28(y{)-352(j)1(ak\\273e)-353(to)-352(mo\\273e)-353(b)28(y)1(\\242)-1(,)]TJ -27.879 -13.55 Td[(jak)1(\\273)-1(e?...)-424(T)83(o)-28(\\242)-425(grze)-1(c)28(h)-424(m)27(u)1(s)-1(i)-424(b)28(y\\242,)-425(gr)1(z)-1(ec)27(h)1(!)-425(A\\273)-425(b)1(a\\252)-425(si\\246)-425(m)27(y)1(\\261)-1(le\\242)-425(o)-425(t)28(y)1(m)-1(,)-424(b)-27(o)-425(m)27(u)-424(se)-1(r)1(c)-1(e)]TJ 0 -13.549 Td[(zam)-1(iera\\252o)-477(z)-1(e)-478(zgrozy)-477(niewyt\\252umacz)-1(on)1(e)-1(j)1(,)-478(z)-477(oba)28(wy)-478(p)1(rze)-1(d)-477(j)1(ak)55(\\241\\261)-477(s)-1(tr)1(as)-1(zn\\241)-477(k)55(ar)1(\\241)-478(j)]TJ 0 -13.549 Td[(b)-27(os)-1(k)56(\\241...)-383(I)-384(nie)-384(rze)-1(c)-384(o)-384(t)28(ym)-385(n)1(ik)28(om)28(u,)-384(in)1(o)-384(to)-384(nosi\\242)-384(w)-385(sobi)1(e)-385(j)1(ak)28(o)-384(z)-1(arzew)-1(i)1(e)-1(,)-384(j)1(ak)28(o)-384(te)-1(n)]TJ 0 -13.549 Td[(ogie\\253)-333(\\273)-1(y)1(w)-1(y)84(,)-333(kt\\363r)1(e)-1(n)-333(a\\273)-334(d)1(o)-334(k)28(o\\261ci)-334(p)1(rze)-1(p)1(ala...)-333(n)1(ie)-334(n)1(a)-334(lu)1(dzk)56(\\241)-334(to)-333(mo)-28(c,)-334(n)1(ie.)]TJ 27.879 -13.549 Td[(A)-333(tu)-333(ju)1(\\273)-334(za)-334(t)28(yd)1(z)-1(i)1(e)-1(\\253)-333(\\261lub)1(...)]TJ 0 -13.55 Td[({)-333(Gosp)-28(o)-28(d)1(arz)-334(i)1(d\\241!)-333({)-333(z)-1(a)28(w)27(o\\252a\\252)-333(Witek)-333(pr)1(\\246)-1(d)1(k)28(o,)-334(a\\273)-333(An)28(tek)-334(d)1(rgn)1(\\241\\252)-334(ze)-334(strac)27(h)28(u)1(.)]TJ 0 -13.549 Td[(Mr)1(o)-28(c)-1(za\\252o)-333(ju\\273)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Zmie)-1(r)1(z)-1(c)28(h)-331(sypa\\252)-330(s)-1(i\\246)-331(n)1(a)-331(wie\\261)-1(,)-330(jak)28(o)-331(ten)-330(p)-28(op)1(i\\363\\252)-331(n)1(ie)-1(wystud)1(z)-1(on)29(y)-331(i)-330(o)-28(d)-330(ukr)1(yte)-1(go)]TJ -27.879 -13.549 Td[(zarz)-1(ewia)-343(rud)1(a)28(w)-1(y)-343(j)1(e)-1(sz)-1(cz)-1(e)-343({)-344(zorze)-344(dogasa\\252y)83(,)-343(b)1(lad\\252y)-343(o)-28(d)-343(t)28(y)1(c)27(h)-343(c)27(h)1(m)27(u)1(r)-343(bur)1(yc)27(h)1(,)-343(kt\\363re)]TJ 0 -13.549 Td[(wiatr)-363(gn)1(a\\252)-363(i)-363(zw)27(ala\\252)-363(n)1(a)-363(z)-1(ac)28(h\\363)-28(d)1(,)-363(i)-363(sto\\273y\\252)-363(w)-364(g\\363r)1(y)-363(pr)1(z)-1(eogromne.)-363(Zimno)-363(si\\246)-363(rob)1(i\\252o,)]TJ 0 -13.55 Td[(zie)-1(mia)-247(t\\246)-1(\\273a\\252a,)-247(p)-28(o)28(wietrze)-248(c)-1(zyn)1(i\\252o)-248(si\\246)-248(ostre,)-247(rze)-1(\\271w)27(e)-248(j)1(ak)-247(przed)-247(przymrozkiem)-248(i)-247(takie)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(liw)28(e)-1(,)-404(\\273e)-405(tu)1(p)-28(ot)-404(i)-404(r)1(yki)-404(p)-27(\\246)-1(d)1(z)-1(on)1(e)-1(go)-404(do)-404(w)28(o)-28(dop)-27(o)-55(ju)-404(in)29(w)27(en)28(tarza)-404(s)-1(z\\252y)-404(g\\252o\\261)-1(n)1(ie)-1(j)1(,)-404(a)]TJ 0 -13.549 Td[(skrzyp)28(y)-256(wr\\363tn)1(i)-256(i)-256(stud)1(z)-1(i)1(e)-1(n)1(n)28(yc)27(h)-255(\\273)-1(u)1(ra)28(wi,)-256(rozm)-1(o)28(wy)84(,)-256(krzyki)-256(d)1(z)-1(i)1(e)-1(ci,)-256(sz)-1(cz)-1(ek)56(ania)-256(lecia\\252y)]TJ 0 -13.549 Td[(wyra\\271ni)1(e)-1(j)-414(pr)1(z)-1(ez)-415(s)-1(t)1(a)27(w;)-414(gdzie)-1(n)1(iegdzie)-415(b\\252ysk)56(a\\252y)-415(j)1(u\\273)-415(okn)1(a)-415(i)-414(pad)1(a\\252y)-415(n)1(a)-415(w)28(o)-28(d\\246)-415(d)1(\\252u-)]TJ 0 -13.549 Td[(gie,)-363(p)-28(or)1(w)27(an)1(e)-1(,)-363(d)1(rga)-56(j)1(\\241c)-1(e)-363(o)-28(db)1(ic)-1(i)1(a)-364(\\261wie)-1(t)1(liste)-1(..)1(.)-363(a)-364(sp)-27(oz)-1(a)-363(las\\363)27(w)-363(wyc)27(h)28(y)1(la\\252)-364(si\\246)-364(z)-363(w)27(oln)1(a)]TJ 0 -13.549 Td[(ogromn)28(y)84(,)-355(cz)-1(erw)28(on)28(y)-355(k)1(s)-1(i\\246\\273)-1(y)1(c)-356(w)-355(p)-27(e\\252ni,)-354(a\\273)-356(\\252u)1(n)28(y)-355(b)1(i\\252y)-355(n)1(ad)-355(n)1(im,)-355(j)1(akb)28(y)-354(p)-28(o\\273ar)-355(b)1(uc)28(ha\\252)]TJ 0 -13.55 Td[(gdzie\\261)-334(w)-334(g\\252\\246bi)-333(las\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-223(przy)28(o)-28(dzia\\252)-223(si\\246)-224(w)-223(z)-1(wycz)-1(a)-55(jn)1(e)-224(sz)-1(mat)28(y)-223(i)-223(p)-27(os)-1(ze)-1(d)1(\\252)-224(w)-223(p)-27(o)-28(dw)28(\\363rze)-224(d)1(o)-223(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(s)-1(t)28(w)28(a,)-277(za)-56(j)1(rz)-1(a\\252)-277(d)1(o)-277(k)28(oni)1(,)-277(d)1(o)-277(kr\\363)28(w,)-277(d)1(o)-277(s)-1(to)-27(do\\252y)83(,)-276(a)-277(na)28(w)28(e)-1(t)-276(i)-277(do)-276(prosiak)28(\\363)28(w,)-277(skrzyc)-1(za\\252)]TJ 0 -13.549 Td[(Ku)1(b)-28(\\246)-308(z)-1(a)-308(c)-1(o\\261)-308(i)-308(Witk)56(a)-308(r\\363)28(wnie\\273)-1(,)-308(\\273e)-309(ciel\\246)-1(ta)-308(wylaz\\252y)-308(z)-309(gr\\363)-27(dki)-308(i)-308(\\252azi\\252y)-308(p)-28(omi\\246dzy)-308(kro-)]TJ 0 -13.549 Td[(w)28(am)-1(i,)-344(a)-345(gdy)-344(wr\\363)-28(ci\\252)-345(d)1(o)-345(izb)28(y)-345(sw)27(o)-55(jej,)-344(ju\\273)-345(tam)-345(cz)-1(ek)56(ali)-345(n)1(a\\253)-345(wsz)-1(ysc)-1(y)84(...)-344(Mil)1(c)-1(ze)-1(l)1(i,)-345(in)1(o)]TJ 0 -13.55 Td[(ws)-1(zystkie)-330(o)-28(cz)-1(y)-329(p)-28(o)-27(dni)1(os)-1(\\252y)-329(s)-1(i\\246)-330(n)1(a)-330(niego)-330(i)-329(opad)1(\\252)-1(y)-329(wnet,)-330(b)-27(o)-330(pr)1(z)-1(y)1(s)-1(tan)1(\\241\\252)-330(na)-330(\\261ro)-27(dku)1(,)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(rza\\252)-334(si\\246)-334(p)-27(o)-334(n)1(ic)27(h)-333(i)-333(zap)28(yta\\252)-333(dr)1(wi\\241c)-1(o:)]TJ\nET\nendstream\nendobj\n423 0 obj <<\n/Type /Page\n/Contents 424 0 R\n/Resources 422 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n422 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n427 0 obj <<\n/Length 7590      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(129)]TJ -330.353 -35.866 Td[({)-333(Ws)-1(zystkie!)-333(Jak)-333(na)-333(s)-1(\\241d)-333(j)1(aki!)]TJ 0 -13.549 Td[({)-330(Nie)-331(na)-330(s)-1(\\241d)1(,)-331(i)1(no)-330(do)-330(w)27(as)-331(p)1(rzy\\261)-1(l)1(im)-331(z)-331(pr)1(os)-1(ze)-1(n)1(iem)-331({)-331(r)1(z)-1(ek\\252a)-331(n)1(ie\\261)-1(mia\\252o)-331(k)28(o)28(w)28(a-)]TJ -27.879 -13.549 Td[(lo)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(cz)-1(em)27(u)1(\\273)-334(to)-333(i)-333(t)28(w)27(\\363)-55(j)-333(nie)-333(przysz)-1(ed\\252?...)]TJ 0 -13.549 Td[({)-333(Rob)-28(ot\\246)-333(m)-1(a)-333(pil)1(n\\241,)-333(to)-333(os)-1(ta\\252)-333(w)-334(d)1(om)27(u)1(...)]TJ 0 -13.55 Td[({)-465(Ju)1(\\261)-1(ci..)1(.)-465(r)1(ob)-28(ot\\246...)-464(ju)1(\\261)-1(ci..)1(.)-465({)-464(u\\261m)-1(iec)27(h)1(n\\241\\252)-465(si\\246)-465(d)1(om)27(y\\261lni)1(e)-1(,)-464(z)-1(r)1(z)-1(u)1(c)-1(i\\252)-464(k)55(ap)-27(ot\\246)-465(i)]TJ -27.879 -13.549 Td[(j\\241\\252)-342(z)-1(zu)28(w)28(a\\242)-343(bu)1(t)27(y)84(,)-342(a)-343(on)1(i)-343(milcze)-1(li)1(,)-343(n)1(ie)-343(wiedz)-1(\\241c,)-342(o)-28(d)-342(c)-1(zego)-343(zac)-1(z\\241\\242)-1(.)-342(Ko)28(w)27(al)1(o)27(w)28(a)-342(c)27(hr)1(z)-1(\\241-)]TJ 0 -13.549 Td[(k)56(a\\252a)-457(i)-456(p)1(rzyc)-1(i)1(s)-1(za\\252a)-457(d)1(z)-1(i)1(e)-1(ci,)-456(b)-27(o)-457(si\\246)-456(bra\\252y)-456(d)1(o)-457(b)1(arasz)-1(k)28(o)28(w)28(ania,)-456(Han)1(k)55(a)-456(siedzia\\252a)-457(n)1(a)]TJ 0 -13.549 Td[(pr)1(ogu)-286(i)-286(k)56(armi\\252a)-287(c)28(h\\252op)1(ak)55(a,)-286(a)-286(lata\\252a)-286(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)28(y)1(m)-1(i)-286(o)-28(czam)-1(i)-286(p)-27(o)-286(t)27(w)28(arzy)-286(An)28(tk)56(a,)-286(kt\\363-)]TJ 0 -13.549 Td[(ren)-398(siedzia\\252)-398(p)-27(o)-28(d)-398(ok)1(nem)-399(i)-397(uk\\252ad)1(a\\252)-398(s)-1(ob)1(ie)-399(w)-398(g\\252o)28(wie,)-398(c)-1(o)-397(m)-1(a)-398(r)1(z)-1(ec)-1(,)-397(a)-398(dr\\273a\\252)-398(ca\\252)-1(y)-397(z)-1(e)]TJ 0 -13.549 Td[(wz)-1(r)1(usz)-1(enia)-358(i)-358(niec)-1(i)1(e)-1(rp)1(liw)28(o\\261)-1(ci.)-358(Jedna)-358(J\\363zia)-359(sp)-28(ok)28(o)-55(jn)1(ie)-359(obi)1(e)-1(ra\\252a)-358(z)-1(i)1(e)-1(mniak)1(i)-359(p)-27(o)-28(d)-358(k)28(o-)]TJ 0 -13.55 Td[(minem,)-289(p)1(rzyrzuca\\252)-1(a)-288(dr)1(e)-1(w)28(e)-1(k)-288(na)-288(ogie\\253)-288(i)-289(ciek)55(a)28(wie)-289(p)-27(ogl\\241da\\252a)-288(p)-28(o)-288(ws)-1(zystkic)27(h)1(,)-288(b)-28(o)-288(nic)]TJ 0 -13.549 Td[(wymiark)28(o)28(w)27(a\\242)-333(nie)-333(m)-1(og\\252a)-333(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego)-334(c)28(hce)-1(cie)-1(,)-333(m\\363)28(w)27(cie!)-334({)-333(za)27(w)28(o\\252a\\252)-334(ostro,)-333(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(on)28(y)-333(m)-1(i)1(lc)-1(ze)-1(n)1(iem)-1(.)]TJ 0 -13.549 Td[({)-347(A)-348(to.)1(..)-347(m)-1(\\363)28(w,)-347(An)28(tek...)-347(a)-347(to)-347(przy\\261lim)-348(w)28(e)-1(d)1(le)-348(tego)-347(z)-1(ap)1(is)-1(u)1(...)-347({)-347(j\\241k)56(a\\252a)-348(k)28(o)28(w)28(a-)]TJ -27.879 -13.549 Td[(lo)28(w)28(a.)]TJ 27.879 -13.55 Td[({)-333(Zapis)-334(zrob)1(i\\252e)-1(m,)-333(a)-333(\\261)-1(lu)1(b)-333(w)-334(n)1(iedzie)-1(l)1(\\246)-1(..)1(.)-334(t)1(o)-334(w)28(am)-334(rze)-1(k)1(n\\246)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(wiem)27(y)84(,)-333(ale)-334(n)1(ie)-334(o)-333(to)-333(przy\\261lim)-334(-)]TJ 0 -13.549 Td[({)-333(A)-334(cz)-1(ego?)]TJ 0 -13.549 Td[(Zapi)1(s)-1(ali)1(\\261)-1(cie)-334(ca\\252)-1(e)-333(s)-1(ze)-1(\\261\\242)-334(morg\\363)28(w!)]TJ 0 -13.549 Td[({)-333(B)-1(om)-333(tak)-333(c)27(hcia\\252,)-333(a)-333(z)-1(ec)27(hc\\246,)-334(t)1(o)-334(w)-333(te)-1(n)-333(mig)-333(zapisz)-1(\\246)-334(wsz)-1(y)1(s)-1(tk)28(o..)1(.)]TJ 0 -13.55 Td[({)-333(Jak)-333(w)-1(szys)-1(tk)28(o)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(w)27(asz)-1(e,)-333(to)-333(z)-1(ap)1(is)-1(ze)-1(cie!)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(ci\\253skie,)-333(nasz)-1(e.)]TJ 0 -13.549 Td[({)-291(G)1(\\252)-1(u)1(pi)1(\\261)-292(j)1(ak)-291(ten)-290(baran)1(!)-291(G)1(run)29(t)-291(jes)-1(t)-290(m)-1(\\363)-55(j)-290(i)-291(zrobi)1(\\246)-292(z)-291(n)1(im)-291(,)-291(co)-291(mi)-291(si\\246)-291(s)-1(p)-27(o)-28(d)1(oba!)]TJ 0 -13.549 Td[({)-333(Zrobi)1(c)-1(ie)-333(ab)-28(o)-333(i)-333(nie)-333(z)-1(rob)1(icie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(T)27(y)-333(mi)-333(w)-1(zbr)1(onisz)-1(,)-333(t)28(y!)]TJ 0 -13.55 Td[({)-338(A)-337(ja,)-337(a)-337(m)27(y)-337(w)-1(szys)-1(tk)1(ie)-1(,)-337(a)-337(nie,)-338(t)1(o)-338(s\\241dy)-337(w)27(am)-338(wzbron)1(i\\241!)-337({)-338(k)1(rz)-1(y)1(kn\\241\\252,)-337(b)-27(o)-338(ju)1(\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-334(m\\363g\\252)-334(\\261c)-1(ierp)1(ie)-1(\\242)-333(i)-333(buc)28(hn)1(\\241\\252)-334(zapami\\246ta\\252o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-368(S\\241d)1(am)-1(i)-367(m)-1(i)-368(wygr)1(a\\273)-1(asz)-1(,)-368(co?)-368(S\\241d)1(am)-1(i!)-367(Z)-1(amkn)1(ij)-368(t)28(y)-368(g\\246b)-27(\\246)-1(,)-368(p)-27(\\363kim)-368(dob)1(ry)84(,)-368(b)-28(o)]TJ -27.879 -13.549 Td[(p)-27(o\\273)-1(a\\252u)1(jes)-1(z!)-334({)-333(kr)1(z)-1(ycza\\252)-334(p)1(rz)-1(y)1(s)-1(k)56(aku)1(j\\241c)-334(d)1(o)-334(n)1(iego)-334(z)-334(p)1(i\\246\\261)-1(ciami.)]TJ 27.879 -13.549 Td[({)-333(A)-334(u)1(krzywdzi\\242)-334(si\\246)-334(n)1(ie)-334(d)1(am)27(y!)-333({)-333(wrz)-1(asn\\246\\252a)-333(Hank)56(a)-334(p)-27(o)-28(d)1(nosz)-1(\\241c)-334(si\\246)-334(n)1(a)-333(nogi.)]TJ 0 -13.55 Td[({)-300(A)-299(t)27(y)-299(c)-1(zego?)-300(T)83(rzy)-300(morgi)-299(piac)28(h)28(u)-300(wn)1(ie)-1(s\\252a)-300(i)-299(s)-1(tar)1(\\241)-300(p\\252ac)28(h)28(t\\246)-1(,)-299(a)-300(b)-27(\\246)-1(d)1(z)-1(i)1(e)-301(t)1(u)-300(p)28(y)1(s)-1(k)]TJ -27.879 -13.549 Td[(wywiera\\252a?)]TJ 27.879 -13.549 Td[({)-324(Wy)1(\\261)-1(cie)-324(i)-324(t)28(yl)1(a)-324(An)28(tk)28(o)28(wi)-324(n)1(ie)-324(dali,)-323(na)28(w)28(e)-1(t)-323(t)27(y)1(c)27(h)-323(jego)-324(morg\\363)28(w)-324(m)-1(atczyn)28(yc)28(h,)-324(a)]TJ -27.879 -13.549 Td[(rob)1(im)27(y)-333(w)28(am)-334(za)-334(p)1(arob)1(k)28(\\363)27(w,)-333(jak)-333(te)-333(w)27(o\\252y)84(.)]TJ 27.879 -13.549 Td[({)-333(Sp)1(rz)-1(\\241t)1(ac)-1(ie)-333(z)-1(a)-333(to)-334(z)-333(trze)-1(c)28(h)-333(m)-1(or)1(g\\363)27(w.)]TJ 0 -13.549 Td[({)-333(A)-334(o)-27(drab)1(iam)27(y)-333(w)28(am)-334(za)-334(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(ia)-333(ab)-27(o)-334(i)-333(wi\\246c)-1(ej!)]TJ 0 -13.55 Td[({)-333(Jak)-333(w)27(am)-333(krzywda,)-333(id)1(\\271)-1(cie)-334(se)-334(p)-27(os)-1(zuk)56(a\\242)-334(lepi)1(e)-1(j)1(!)]TJ 0 -13.549 Td[({)-326(Nie)-327(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-1(m)-327(szuk)56(a\\242)-1(,)-326(b)-27(o)-327(tu)-326(j)1(e)-1(st)-326(nasz)-1(e!)-326(Nas)-1(ze)-327(p)-28(o)-326(dziad)1(ac)27(h)-326(pr)1(adziadac)28(h!)]TJ -27.879 -13.549 Td[({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(mo)-28(c)-1(n)1(o)-334(An)29(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-422(u)1(derzy\\252)-422(go)-422(o)-27(c)-1(zam)-1(i)-421(i)-421(nic)-422(n)1(ie)-422(o)-28(dr)1(z)-1(ek\\252,)-422(p)1(rzys)-1(i)1(ad\\252)-422(p)1(rze)-1(d)-421(k)28(omin)-421(i)-422(p)-27(o-)]TJ -27.879 -13.549 Td[(grze)-1(b)1(ac)-1(zem)-310(tak)-309(dziaba\\252)-309(w)-310(g\\252o)28(wni)1(e)-1(,)-309(a\\273)-310(iskr)1(y)-310(si\\246)-310(syp)1(a\\252y)-310({)-309(z\\252y)-310(b)29(y\\252,)-309(ognie)-309(c)27(ho)-27(dzi\\252y)]TJ 0 -13.55 Td[(m)27(u)-337(p)-27(o)-338(t)28(w)28(arzy)-338(i)-337(w\\252)-1(osy)-337(m)27(u)-337(c)-1(i)1(\\246)-1(giem)-338(s)-1(p)1(ada\\252y)-337(na)-337(o)-28(c)-1(zy)84(,)-338(j)1(arz)-1(\\241ce)-338(jak)-337(u)-337(\\273)-1(b)1(ik)56(a...al)1(e)-338(s)-1(i\\246)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(h)1(am)-1(o)28(w)28(a\\252,)-333(c)27(ho)-27(\\242)-334(ledwie)-334(i)-333(zdzie)-1(r)1(\\273)-1(a\\252..)1(..)]TJ\nET\nendstream\nendobj\n426 0 obj <<\n/Type /Page\n/Contents 427 0 R\n/Resources 425 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n425 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n430 0 obj <<\n/Length 9367      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(130)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(D\\252ugi)1(e)-316(milcz)-1(eni)1(e)-316(zale)-1(g\\252o)-315(izb)-27(\\246)-1(,)-315(\\273e)-316(i)1(no)-315(te)-315(przysapki)-315(a)-315(d)1(yc)27(h)1(ani)1(a)-316(p)1(r\\246dki)1(e)-316(s\\252y-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\242)-334(b)28(y\\252o.)-333(Han)1(k)55(a)-333(sz)-1(lo)-27(c)27(ha\\252a)-333(z)-334(cic)27(h)1(a)-334(i)-333(p)-27(oh)28(u)1(\\261)-1(t)28(yw)28(a\\252a)-334(d)1(z)-1(iec)27(k)28(o,)-333(b)-27(o)-333(s)-1(k)56(amle)-1(\\242)-333(p)-28(o)-28(cz\\246)-1(\\252o.)]TJ 27.879 -13.549 Td[({)-333(My)-333(ni)1(e)-334(pr)1(z)-1(ec)-1(iwn)1(i)-333(o\\273)-1(enk)28(o)28(wi,)-333(c)27(hcec)-1(ie,)-333(to)-333(s)-1(i\\246)-333(\\273)-1(e\\253cie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rze)-1(ciw)28(c)-1(ie)-333(s)-1(i\\246,)-333(du)1(\\273)-1(o)-333(o)-334(t)1(o)-334(sto)-56(j)1(\\246)-1(!)1(...)]TJ 0 -13.549 Td[({)-333(Ino)-333(z)-1(ap)1(is)-334(o)-28(d)1(bierzc)-1(i)1(e)-334({)-333(dorzuci\\252a)-333(prze)-1(z)-333(\\252z)-1(y)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-345(Zmilkn)1(ies)-1(z)-345(t)28(y)83(,)-344(a)-345(to,)-344(psiac)27(h)1(m)-1(a\\242,)-345(j)1(az)-1(go)-28(cz)-1(e)-345(ci\\246gie)-1(m)-345(j)1(ak)-345(ta)-345(suk)56(a!)-344({)-345(rzuci\\252)-345(z)]TJ -27.879 -13.549 Td[(tak)56(\\241)-333(m)-1(o)-28(c\\241)-333(p)-28(ogr)1(z)-1(ebacz)-334(w)-334(ogi)1(e)-1(\\253)1(,)-334(a\\273)-333(s)-1(i\\246)-333(g\\252o)27(wn)1(ie)-334(p)-27(oto)-28(c)-1(zy\\252y)-333(na)-333(izb)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-353(A)-352(w)-1(y)-352(s)-1(i)1(\\246)-353(m)-1(iar)1(kuj)1(c)-1(i)1(e)-1(,)-352(b)-28(o)-352(to)-353(n)1(ie)-353(dzie)-1(wk)56(a)-353(w)28(as)-1(za,)-353(\\273e)-1(b)29(y\\261)-1(cie)-353(g\\246b)-28(e)-353(wywierali)]TJ -27.879 -13.549 Td[(na)-333(n)1(i\\241!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(cze)-1(m)28(u)-333(p)28(yskuj)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Ma)-333(pra)28(w)28(o,)-333(b)-28(o)-333(si\\246)-334(o)-333(s)-1(w)28(o)-56(j)1(e)-334(up)-27(omina!)-333({)-333(wrz)-1(esz)-1(cz)-1(a\\252)-333(c)-1(or)1(az)-334(m)-1(o)-27(c)-1(n)1(ie)-1(j)-332(An)28(te)-1(k)1(.)]TJ 0 -13.55 Td[({)-284(Chce)-1(cie,)-284(to)-284(i)-284(zapisz)-1(cie,)-284(ale)-285(t)1(o,)-284(c)-1(o)-284(osta\\252o,)-284(o)-28(d)1(pisz)-1(cie)-284(na)-284(nas)-284({)-284(z)-1(acz\\246)-1(\\252a)-284(c)-1(i)1(c)27(ho)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)1(o)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-293(G)1(\\252up)1(ia\\261)-1(!)-292(Wid)1(z)-1(i)1(s)-1(z)-293(j)1(\\241,)-293(mo)-56(j)1(e)-1(m)-293(si\\246)-293(tu)-292(b)-27(\\246)-1(d)1(z)-1(i)1(e)-293(dzie)-1(l)1(i\\252a!)-293(Ni)1(e)-293(b)-28(\\363)-55(j)-292(s)-1(i\\246,)-292(na)-293(wycug)]TJ -27.879 -13.549 Td[(do)-333(w)28(a)-56(j)1(u)-333(nie)-333(p)-28(\\363)-55(jd)1(\\246)-1(...)-333({)-333(rze)-1(k)1(\\252e)-1(m!)]TJ 27.879 -13.549 Td[({)-333(A)-334(m)28(y)-333(nie)-333(ust\\241)-28(pi)1(m)-1(.)-333(Sp)1(ra)28(wiedliw)28(o\\261c)-1(i)-333(c)27(h)1(c)-1(em)27(y)84(.)]TJ 0 -13.55 Td[({)-333(Jak)-333(w)27(ez)-1(m\\246)-334(ki)1(ja,)-333(to)-333(w)27(ama)-333(dam)-334(spr)1(a)27(wiedl)1(iw)27(o\\261\\242.)]TJ 0 -13.549 Td[({)-333(Sp)1(r\\363bu)1(jcie)-334(in)1(o)-333(tkn\\241\\242,)-333(a)-334(p)-27(ew)-1(n)1(ikiem)-334(w)28(e)-1(sela)-334(n)1(ie)-334(d)1(o)-28(cz)-1(ek)55(acie...)]TJ 0 -13.549 Td[(I)-495(j)1(\\246)-1(li)-494(s)-1(i)1(\\246)-496(j)1(u\\273)-495(k\\252\\363)-28(ci\\242,)-495(pr)1(z)-1(ysk)56(akiw)28(a\\242)-496(d)1(o)-495(si\\246)-1(,)-494(grozi\\242)-1(,)-494(bi\\242)-495(p)1(i\\246)-1(\\261c)-1(i)1(am)-1(i)-494(w)-495(s)-1(t\\363\\252,)]TJ -27.879 -13.549 Td[(wykr)1(z)-1(yk)1(iw)27(a\\242)-410(a)-409(wyp)-28(omin)1(a\\242)-410(ws)-1(zys)-1(t)1(kie)-410(sw)27(o)-55(je)-410(\\273ale)-410(i)-409(krzywdy)84(.)-410(An)29(te)-1(k)-409(tak)-409(s)-1(i)1(\\246)-410(z)-1(a-)]TJ 0 -13.549 Td[(pami\\246ta\\252)-356(i)-356(tak)-356(rozsro\\273)-1(y)1(\\252,)-356(\\273)-1(e)-356(w\\261)-1(cie)-1(k)1(\\252)-1(o\\261\\242)-357(b)1(uc)28(ha\\252a)-356(z)-357(n)1(iego)-356(i)-356(raz)-357(w)-356(raz)-356(ju)1(\\273)-357(starego)]TJ 0 -13.55 Td[(c)27(h)29(w)-1(y)1(ta\\252)-323(to)-322(za)-323(rami\\246,)-322(to)-322(z)-1(a)-322(orzydl)1(e)-323(i)-322(got\\363)27(w)-322(b)28(y\\252)-322(bi)1(\\242)-1(..)1(.)-323(al)1(e)-323(s)-1(t)1(ary)-322(jes)-1(zc)-1(ze)-323(si\\246)-323(h)1(am)-1(o-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(,)-360(n)1(ie)-361(c)28(hcia\\252)-360(bij)1(at)27(y)1(ki,)-360(o)-28(d)1(p)28(yc)28(ha\\252)-360(An)28(tk)56(a,)-360(na)-360(ob)-28(elgi)-360(z)-361(r)1(z)-1(ad)1(k)56(a)-361(o)-27(dp)-27(o)27(wiad)1(a\\252,)-360(b)28(yc)27(h)]TJ 0 -13.549 Td[(in)1(o)-468(d)1(z)-1(iw)28(o)28(wis)-1(k)56(a)-467(la)-468(s\\241s)-1(i)1(ad\\363)28(w)-468(i)-467(ws)-1(i)-467(ca\\252)-1(ej)-467(ni)1(e)-468(c)-1(zyn)1(i\\242)-1(.)-467(W)-467(izbie)-468(p)-27(o)-28(d)1(ni\\363s\\252)-468(si\\246)-468(tak)1(i)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)-371(i)-372(z)-1(am\\246t,)-372(i)-372(p)1(\\252ac)-1(z,)-372(b)-27(o)-372(obie)-372(k)28(obi)1(e)-1(t)28(y)-372(p)1(\\252ak)55(a\\252y)-372(i)-371(w)27(o\\252a\\252y)-372(n)1(a)-372(pr)1(z)-1(em)-1(i)1(an,)-372(a)-372(d)1(z)-1(i)1(e)-1(ci)]TJ 0 -13.549 Td[(te\\273)-349(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252y)84(,)-349(\\273e)-349(Kub)1(a)-349(z)-349(W)1(itkiem)-349(pr)1(z)-1(y)1(le)-1(cieli)-348(z)-349(p)-28(o)-27(dw)27(\\363r)1(z)-1(a)-348(p)-27(o)-28(d)-348(okna..)1(.)-349(al)1(e)-349(nic)]TJ 0 -13.55 Td[(roze)-1(zna\\242)-412(s)-1(i\\246)-413(n)1(ie)-413(r)1(oz)-1(ez)-1(n)1(ali,)-412(b)-27(o)-413(ws)-1(zysc)-1(y)-412(razem)-413(krzycz)-1(eli,)-412(a\\273)-413(w)-412(k)28(o\\253cu,)-412(kiedy)-412(im)]TJ 0 -13.549 Td[(ju)1(\\273)-281(z)-1(ab)1(rak\\252o)-281(g\\252osu,)-280(c)27(hr)1(z)-1(y)1(pieli)-281(i)1(no)-281(sam)27(y)1(m)-1(i)-280(przekle\\253st)27(w)28(ami)-281(a)-281(p)-27(ogro\\271bami.)-280(Hank)56(a)]TJ 0 -13.549 Td[(ry)1(kn\\246\\252a)-298(no)28(wym,)-298(ogromn)28(ym)-298(p)1(\\252)-1(acze)-1(m,)-298(ws)-1(p)1(ar\\252a)-298(si\\246)-298(o)-298(ok)55(ap)-297(i)-298(j)1(\\246)-1(\\252a)-298(zalew)27(an)28(y)1(m)-299(p)1(rze)-1(z)]TJ 0 -13.549 Td[(\\252z)-1(y)84(,)-333(ni)1(e)-1(p)1(rz)-1(y)1(tom)-1(n)29(ym)-334(g\\252ose)-1(m)-334(k)1(rzyc)-1(ze)-1(\\242:)]TJ 27.879 -13.549 Td[({)-399(Na)-398(\\273)-1(ebr)1(\\246)-399(ino)-398(nam)-399(i\\261\\242)-1(,)-398(w)27(e)-399(\\261wiat...)-398(o)-399(m\\363)-56(j)-398(Jez)-1(u)1(s)-1(,)-398(m\\363)-56(j)-398(Jez)-1(u)1(s)-1(!.)1(..)-399(A)-398(jak)-398(te)]TJ -27.879 -13.55 Td[(w)28(o\\252)-1(y)-364(h)1(aro)28(w)28(alim)-365(i)-364(d)1(ni)1(e)-1(...)-364(i)-364(n)1(o)-28(ce)-1(..)1(.)-364(z)-1(a)-364(par)1(obk)28(\\363)28(w...)-364(a)-364(teraz)-365(co?...)-364(A)-364(P)28(an)-364(B\\363g)-364(w)27(as)]TJ 0 -13.549 Td[(p)-27(ok)55(ar)1(z)-1(e)-245(z)-1(a)-245(krzywd\\246)-246(n)1(as)-1(z\\241!..)1(.)-246(P)29(ok)55(ar)1(z)-1(e...)-245(Ca\\252e)-246(sz)-1(e\\261)-1(\\242)-246(morg\\363)28(w)-245(z)-1(ap)1(is)-1(al)1(i...)-245(a)-245(te)-246(sz)-1(mat)28(y)]TJ 0 -13.549 Td[(p)-27(o)-277(matc)-1(e...)-276(te)-1(,)-276(paciork)1(i...)-276(to)-277(wsz)-1(ystk)28(o...)-276(i)-277(l)1(a)-277(k)28(ogo)-277(to?)-277(La)-276(k)28(ogo?)-1(.)1(..)-277(La)-276(takiej)-277(\\261wini)1(!)]TJ 0 -13.549 Td[(A)-375(\\273)-1(eb)28(y\\261)-376(p)-27(o)-28(d)1(e)-376(p\\252otem)-376(zdec)27(h\\252a)-375(z)-1(a)-375(kr)1(z)-1(ywd)1(\\246)-376(nasz)-1(\\241,)-375(a)-375(\\273)-1(eb)28(y)-375(c)-1(i)1(\\246)-376(rob)1(aki)-375(rozto)-28(c)-1(zy\\252y)84(,)]TJ 0 -13.549 Td[(t)28(y)-333(wyw\\252)-1(ok)28(o,)-333(t)28(y)-333(laku)1(dr)1(o)-334(j)1(e)-1(d)1(na,)-333(t)28(y!.)1(..)]TJ 27.879 -13.549 Td[({)-333(C)-1(o\\261)-333(p)-28(o)28(wiedzia\\252a?...)-333({)-334(zary)1(c)-1(za\\252)-334(stary)-333(p)1(rz)-1(y)1(s)-1(k)56(aku)1(j\\241c)-334(d)1(o)-334(n)1(iej...)]TJ 0 -13.55 Td[({)-333(\\233e)-334(laku)1(dra)-333(i)-333(w\\252\\363k)-333(te)-1(n)1(,)-334(t)1(o)-334(i)-333(ca\\252a)-334(wie\\261)-334(wie)-334(o)-333(t)28(ym...ca\\252y)-333(\\261)-1(wiat!.)1(..)-333(c)-1(a\\252y!)1(...)]TJ 0 -13.549 Td[({)-281(W)83(ar)1(a)-281(c)-1(i)-281(o)-28(d)-280(niej,)-281(b)-27(o)-281(c)-1(i)-280(te)-1(n)-281(p)29(ys)-1(k)-280(o)-282(\\261cian\\246)-281(roz)-1(b)1(ij)1(\\246)-1(,)-281(w)28(ara...)-280({)-282(i)-281(j)1(\\241\\252)-281(ni\\241)-281(tr)1(z)-1(\\241\\261\\242)-1(,)]TJ -27.879 -13.549 Td[(ale)-334(j)1(u\\273)-333(An)28(te)-1(k)-333(p)1(rzys)-1(k)28(o)-27(c)-1(zy\\252)-334(i)-333(os\\252oni\\252,)-333(i)-333(r\\363)28(wni)1(e)-1(\\273)-334(k)1(rz)-1(y)1(c)-1(ze)-1(\\242)-333(p)-28(o)-28(cz\\241\\252)-1(:)]TJ 27.879 -13.549 Td[({)-323(I)-322(ja)-322(pr)1(z)-1(ywt\\363r)1(z)-1(\\246,)-323(\\273e)-323(laku)1(dr)1(a)-323(jest,)-323(w\\252\\363k,)-322(ja!)-322(A)-322(s)-1(pa\\252)-322(z)-323(ni)1(\\241,)-323(kt)1(o)-323(c)27(h)1(c)-1(i)1(a\\252)-1(,)-322(j)1(a!...)]TJ -27.879 -13.549 Td[({)-396(w)28(o\\252a\\252)-396(n)1(ie)-1(p)1(rzytomnie)-396(i)-395(gad)1(a\\252)-1(,)-395(co)-396(m)28(u)-395(\\261)-1(li)1(na)-396(n)1(a)-396(j)1(\\246)-1(zyk)-395(pr)1(z)-1(yn)1(ies)-1(\\252a,)-395(nie)-396(sk)28(o\\253czy\\252,)]TJ 0 -13.55 Td[(b)-27(o)-303(stary)84(,)-302(rozw\\261)-1(cie)-1(k)1(lon)28(y)-302(ju)1(\\273)-303(teraz)-303(d)1(o)-302(os)-1(tatk)56(a,)-302(trzasn\\241\\252)-302(go)-303(tak)-302(w)-302(p)28(ysk,)-302(a\\273)-303(r)1(ymn\\241\\252)]TJ 0 -13.549 Td[(\\252b)-27(e)-1(m)-354(n)1(a)-354(osz)-1(k)1(lon\\241)-353(s)-1(zafk)28(\\246)-354(i)-353(z)-354(ni)1(\\241)-354(r)1(a)-1(zem)-354(z)-1(w)28(ali\\252)-353(s)-1(i\\246)-353(na)-354(ziem)-1(i)1(\\246)-1(..)1(.)-354(P)29(orw)27(a\\252)-353(s)-1(i)1(\\246)-354(ryc)28(h\\252o)]TJ\nET\nendstream\nendobj\n429 0 obj <<\n/Type /Page\n/Contents 430 0 R\n/Resources 428 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n428 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n433 0 obj <<\n/Length 9721      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(131)]TJ -358.232 -35.866 Td[(okr)1(w)27(a)28(wion)28(y)-333(i)-333(ru)1(n\\241\\252)-333(na)-333(o)-56(j)1(c)-1(a.)]TJ 27.879 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(li)-300(si\\246)-301(n)1(a)-301(siebie)-300(jak)-300(d)1(w)27(a)-300(p)1(s)-1(y)-300(w\\261c)-1(iek\\252e,)-300(c)27(h)28(ycili)-299(s)-1(i\\246)-300(z)-1(a)-300(p)1(ie)-1(r)1(s)-1(i)-300(i)-300(w)28(o)-28(d)1(z)-1(il)1(i)-300(p)-28(o)]TJ -27.879 -13.549 Td[(izbie,)-312(m)-1(iot)1(ali,)-312(bili)-312(sob\\241)-313(o)-312(\\252\\363\\273)-1(k)56(a,)-312(o)-313(s)-1(k)1(rzynie,)-312(o)-313(\\261c)-1(ian)29(y)83(,)-312(a\\273)-313(\\252)-1(b)29(y)-313(tr)1(z)-1(ask)56(a\\252)-1(y)84(.)-312(Krzyk)-313(si\\246)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(i\\363s\\252)-342(n)1(ieopisan)28(y)84(,)-341(k)28(obiet)28(y)-341(c)27(h)1(c)-1(ia\\252y)-341(i)1(c)27(h)-341(r)1(oz)-1(erw)28(a\\242)-1(,)-341(al)1(e)-342(p)1(rz)-1(ew)28(a)-1(l)1(ili)-341(si\\246)-341(na)-341(z)-1(i)1(e)-1(mi\\246)-341(i)]TJ 0 -13.549 Td[(tak)-333(zw)27(arci)-333(c)-1(a\\252\\241)-333(ni)1(e)-1(n)1(a)27(wi\\261c)-1(i)1(\\241)-334(i)-333(kr)1(z)-1(y)1(w)-1(d)1(am)-1(i)-333(tar)1(z)-1(ali)-333(si\\246,)-333(gnietli,)-333(d)1(usili.)1(..)]TJ 27.879 -13.55 Td[(Ca\\252e)-334(s)-1(zcz)-1(\\246\\261)-1(cie,)-334(\\273e)-334(ry)1(c)27(h\\252o)-333(roze)-1(r)1(w)27(al)1(i)-334(i)1(c)27(h)-333(s\\241s)-1(iedzi)-333(i)-333(o)-28(dgr)1(o)-28(dzili)-333(o)-28(d)-332(s)-1(iebi)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(An)28(tk)56(a)-320(p)1(rze)-1(n)1(ie\\261)-1(li)-319(na)-319(dr)1(ug\\241)-320(stron)1(\\246)-320(i)-320(zlew)27(al)1(i)-320(w)28(o)-28(d\\241,)-319(tak)-319(os)-1(\\252ab)1(\\252)-320(z)-320(um\\246)-1(cze)-1(n)1(ia)-320(i)]TJ -27.879 -13.549 Td[(up)1(\\252ywu)-333(krwi,)-333(b)-27(o)-333(t)27(w)28(arz)-333(m)-1(ia\\252)-333(p)-27(orozc)-1(in)1(an\\241)-333(o)-334(szyb)28(y)84(.)]TJ 27.879 -13.549 Td[(St)1(are)-1(m)28(u)-350(nic)-351(si\\246)-351(nie)-351(sta\\252o;)-351(sp)-27(e)-1(n)1(c)-1(er)-351(mia\\252)-350(niec)-1(o)-350(p)-28(o)-27(dart)28(y)-350(i)-351(t)28(w)28(arz)-351(p)-27(o)-28(dr)1(apan\\241)]TJ -27.879 -13.549 Td[(i)-371(a\\273)-371(s)-1(i)1(n\\241)-371(z)-371(w)-1(\\261cie)-1(k)1(\\252)-1(o\\261ci...)-371(S)1(kl\\241\\252)-371(i)-371(p)-27(o)28(wygani)1(a\\252)-372(l)1(ud)1(z)-1(i,)-370(c)-1(o)-371(si\\246)-371(b)28(yli)-371(zlec)-1(i)1(e)-1(li)1(,)-371(dr)1(z)-1(wi)-371(o)-28(d)]TJ 0 -13.549 Td[(sie)-1(n)1(i)-333(z)-1(amkn\\241\\252)-333(i)-333(s)-1(i)1(ad\\252)-333(przed)-333(k)28(om)-1(i)1(nem)-1(..)1(.)]TJ 27.879 -13.55 Td[(Ale)-292(u)1(s)-1(p)-27(ok)28(oi\\242)-291(s)-1(i\\246)-291(nie)-292(m\\363g\\252,)-291(b)-27(o)-292(m)28(u)-291(c)-1(i)1(\\246)-1(giem)-292(wraca\\252o)-292(p)1(rzyp)-27(om)-1(n)1(ie)-1(n)1(ie)-292(tego,)-291(c)-1(o)]TJ -27.879 -13.549 Td[(na)-333(Jagn)1(\\246)-334(wyp)-28(o)28(wiedzieli,)-333(a)-333(\\273)-1(ga\\252o)-333(go)-334(w)-333(s)-1(erce)-334(jak)1(b)28(y)-333(no\\273e)-1(m...)]TJ 27.879 -13.549 Td[({)-315(Nie)-316(dar)1(uj)1(\\246)-316(ja)-315(c)-1(i)-315(tego,)-315(psie)-316(jeden)-315(,)-315(nie)-315(daru)1(j\\246!{)-315(przysi\\246)-1(ga\\252)-315(so)-1(b)1(ie)-316(w)-315(du)1(s)-1(zy)83(.)]TJ -27.879 -13.549 Td[({)-344(Jak)1(\\273)-1(e,)-344(n)1(a)-344(Jagu)1(s)-1(i\\246...)-343({)-344(Al)1(e)-344(w)-1(n)1(e)-1(t)-343(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i\\252o)-343(m)27(u)-343(do)-343(g\\252o)27(wy)-343(i)-344(to,)-343(co)-344(ni)1(e)-1(raz)-344(j)1(u\\273)]TJ 0 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252)-400(o)-400(n)1(iej,)-399(c)-1(o)-399(da)28(wniej)-399(p)-28(ogad)1(yw)28(ali,)-399(a)-400(na)-399(c)-1(o)-399(nie)-400(zwraca\\252)-400(u)28(w)28(agi!)-400(G)1(or\\241co)-400(m)27(u)]TJ 0 -13.55 Td[(si\\246)-353(robi)1(\\252)-1(o)-352(i)-353(d)1(z)-1(i)1(w)-1(n)1(ie)-353(du)1(s)-1(zno,)-352(i)-353(d)1(z)-1(iwn)1(ie)-353(m)-1(ar)1(k)28(otno.)1(..)-353({)-352(Nie)-1(p)1(ra)28(wda,)-352(plec)-1(i)1(uc)27(h)29(y)-353(i)-352(z)-1(a-)]TJ 0 -13.549 Td[(zdro\\261ni)1(ki,)-277(wiadomo!)-277({)-278(wykr)1(z)-1(yk)1(n\\241\\252)-277(w)-278(g\\252os)-1(,)-277(ale)-278(coraz)-278(wi\\246ce)-1(j)-277(m)28(u)-277(s)-1(i\\246)-278(p)1(rzyp)-27(om)-1(i)1(na\\252o)]TJ 0 -13.549 Td[(gada\\253)-365(lud)1(z)-1(ki)1(c)27(h.)-366({)-366(Jak\\273e)-1(,)-366(r)1(o)-28(dzon)28(y)-366(s)-1(y)1(n)-366(p)-28(o)28(wieda,)-366(to)-366(ni)1(e)-367(m)-1(a)-55(j\\241)-366(sz)-1(cz)-1(ek)56(a\\242)-1(!)-366(\\221cierw)28(a!)]TJ 0 -13.549 Td[({)-333(ale)-334(\\273ar\\252y)-333(go)-334(te)-333(w)-1(sp)-27(om)-1(i)1(nki)-333(j)1(ak)-334(ogi)1(e)-1(\\253)1(...)]TJ 27.879 -13.549 Td[(A)-423(gdy)-423(J\\363z)-1(i)1(a)-424(p)-27(os)-1(p)1(rz\\241ta\\252a)-424(\\261lady)-423(bi)1(t)27(wy)84(,)-424(a)-423(w)-424(k)28(o\\253)1(c)-1(u)1(,)-424(c)28(ho)-28(\\242)-424(i)-423(p)-27(\\363\\271)-1(n)1(o,)-424(p)-27(o)-28(d)1(a\\252)-1(a)]TJ -27.879 -13.55 Td[(k)28(olacj\\246,)-333(s)-1(p)1(r\\363b)-27(o)27(w)28(a\\252)-334(ziem)-1(n)1(iak)28(\\363)28(w)-334(i)-333(p)-27(o\\252o\\273)-1(y)1(\\252)-334(\\252y\\273k)28(\\246)-1(,)-333(n)1(ie)-334(m\\363g\\252)-334(p)1(rze)-1(\\252kn)1(\\241\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Zas)-1(yp)1(a\\252e)-1(\\261)-334(ob)1(roki)-333(k)28(on)1(iom?)-334({)-333(z)-1(ap)28(y)1(ta\\252)-334(K)1(ub)28(y)84(.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)1(...)]TJ 0 -13.549 Td[({)-333(Gdzie)-334(W)1(ite)-1(k)1(?)]TJ 0 -13.549 Td[({)-271(P)28(o)-271(Jam)28(bro\\273a)-271(p)-28(ol)1(e)-1(cia\\252,)-271(b)28(y)-271(An)28(t)1(k)28(o)27(wi)-271(g\\252o)28(w)27(\\246)-271(opatr)1(z)-1(y\\252;)-271(g\\246ba)-271(m)28(u)-271(spuc)28(h\\252a)-271(kiej)]TJ -27.879 -13.55 Td[(garn)1(e)-1(k)-329({)-330(do)-28(d)1(a\\252)-330(i)-330(wyn)1(i\\363s)-1(\\252)-330(si\\246)-330(z)-1(ar)1(az)-1(,)-329(b)-28(o)-330(k)1(s)-1(i\\246\\273)-1(y)1(c)-331(\\261wie)-1(ci\\252,)-330(a)-330(on)-329(si\\246)-331(d)1(z)-1(i)1(s)-1(ia)-55(j)-330(wyb)1(iera\\252)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(las)-334(n)1(a)-333(p)-28(olo)28(w)28(anie...)-333({)-333(Juc)28(h)28(y)84(,)-334(c)28(hleb)-333(ic)28(h)-333(rozpiera,)-333(to)-333(s)-1(i)1(\\246)-334(bij)1(\\241)-333(m)-1(r)1(ucz)-1(a\\252.)]TJ 27.879 -13.549 Td[(St)1(ary)-283(te)-1(\\273)-283(p)-28(osze)-1(d)1(\\252)-284(n)1(a)-284(wie\\261)-1(,)-283(n)1(ie)-284(wst\\241)-28(pi)1(\\252)-284(j)1(e)-1(d)1(nak)-283(d)1(o)-284(Jagn)29(y)83(,)-283(c)27(h)1(o)-28(\\242)-284(si\\246)-284(w)-283(okn)1(ac)27(h)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(e)-1(ci\\252o,)-333(z)-1(a)28(wr\\363)-28(ci\\252)-333(s)-1(p)-27(o)-28(d)-333(sam)27(yc)28(h)-333(dr)1(z)-1(wi)-333(i)-333(p)-28(olaz\\252)-333(drog\\241)-333(ku)-333(m\\252yn)1(o)27(wi.)]TJ 27.879 -13.549 Td[(No)-28(c)-398(b)28(y\\252a)-398(c)27(h)1(\\252)-1(o)-27(dn)1(a,)-398(w)-1(y)1(is)-1(k)1(rz)-1(on)1(a,)-398(pr)1(z)-1(y)1(m)-1(r)1(oz)-1(ek)-398(\\261)-1(cina\\252)-398(ziem)-1(i\\246,)-398(ksi\\246\\273)-1(yc)-398(wis)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(wysok)28(o)-406(i)-405(tak)-405(j)1(as)-1(n)1(o)-405(\\261)-1(wiec)-1(i\\252,)-405(\\273e)-406(ca\\252y)-405(s)-1(ta)28(w)-406(r)1(oz)-1(i)1(s)-1(kr)1(z)-1(y\\252)-405(si\\246)-406(j)1(akb)28(y)-405(\\273ywym)-406(srebrem,)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a)-352(rzuca\\252y)-352(d\\252ugie,)-352(c)27(h)28(wiejn)1(e)-353(c)-1(i)1(e)-1(n)1(ie)-353(na)-352(dr)1(ogi)-352(puste.)-353(P)29(\\363\\271)-1(n)1(o)-353(j)1(u\\273)-353(b)28(y)1(\\252o,)-353(\\261wiat\\252a)]TJ 0 -13.549 Td[(w)-280(domac)27(h)-280(gas\\252y)83(,)-280(in)1(o)-280(bielone)-280(\\261)-1(cian)28(y)-280(wyst\\246p)-28(o)28(w)28(a\\252)-1(y)-280(mo)-28(cni)1(e)-1(j)-280(ze)-281(sad\\363)28(w)-280(nagic)28(h,)-280(cis)-1(za)]TJ 0 -13.549 Td[(i)-351(no)-28(c)-351(ogarni)1(a\\252)-1(a)-351(wie\\261)-352(c)-1(a\\252\\241,)-351(jeden)-351(m\\252)-1(y)1(n)-351(tur)1(k)28(ota\\252)-352(i)-351(w)27(o)-27(da)-351(b)-28(e\\252k)28(ota\\252a)-352(monot)1(onni)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Maciej)-405(c)27(h)1(o)-28(dzi\\252)-405(to)-405(t\\241,)-405(to)-405(d)1(rug\\241)-405(stron)1(\\241)-405(s)-1(ta)28(wu)-405(i)-405(n)1(ie)-406(wiedzia\\252,)-405(co)-405(z)-406(sob\\241)-405(p)-27(o)-28(cz)-1(\\241\\242,)]TJ 0 -13.549 Td[(ni)1(e)-374(u)1(s)-1(p)-27(ok)28(oi\\252)-373(s)-1(i)1(\\246)-1(,)-373(gd)1(z)-1(i)1(e)-374(tam,)-373(j)1(e)-1(sz)-1(cz)-1(e)-373(bar)1(z)-1(ej)-373(r)1(oz)-1(b)1(ie)-1(r)1(a\\252a)-373(go)-373(z)-1(\\252o\\261\\242)-374(i)-373(n)1(iena)28(wi\\261)-1(\\242;)-373(a\\273)-373(i)]TJ 0 -13.55 Td[(do)-386(k)56(arc)-1(zm)27(y)-386(p)-27(os)-1(ze)-1(d)1(\\252,)-387(p)-27(os)-1(\\252a\\252)-387(p)-27(o)-387(w)28(\\363)-56(j)1(ta)-387(i)-386(pr)1(a)27(wie)-387(d)1(o)-387(p)-27(\\363\\252no)-28(c)28(k)55(a)-386(pi\\252,)-386(ale)-387(rob)1(ak)55(a)-386(nie)]TJ 0 -13.549 Td[(zala\\252...)-333(jeno)-333(jedn)1(o)-333(p)-28(ostano)28(wienie)-333(p)-28(o)28(wz)-1(i)1(\\241)-1(\\252.)]TJ 27.879 -13.549 Td[(Rano)-283(naza)-56(j)1(utr)1(z)-1(,)-283(s)-1(k)28(or)1(o)-284(ws)-1(t)1(a\\252)-1(,)-283(za)-56(j)1(rz)-1(a\\252)-283(na)-283(dr)1(ug\\241)-284(stron)1(\\246)-1(.)-283(An)28(tek)-283(le\\273)-1(a\\252)-284(j)1(e)-1(szc)-1(ze)-1(,)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(z)-334(mia\\252)-334(ob)29(w)-1(i)1(\\241z)-1(an)1(\\241)-334(w)-333(okrw)28(a)28(w)-1(i)1(on\\241)-333(s)-1(zm)-1(at)1(\\246)-1(,)-333(ale)-334(si\\246)-334(u)1(ni\\363s\\252)-333(niec)-1(o.)]TJ 27.879 -13.549 Td[({)-311(W)1(yno\\261ta)-311(mi)-311(si\\246)-311(w)-311(ten)-311(mig)-310(z)-312(c)28(ha\\252up)29(y)83(,)-310(\\273)-1(eb)28(y)-310(ni)-310(\\261)-1(lad)1(u)-310(p)-28(o)-311(w)28(as)-311(ni)1(e)-312(osta\\252o!)-311({)]TJ -27.879 -13.55 Td[(kr)1(z)-1(yk)1(n\\241\\252.{)-226(C)-1(h)1(c)-1(es)-1(z)-226(w)27(o)-55(jn)28(y)84(,)-226(c)27(hce)-1(sz)-227(s\\241du)1(,)-227(i)1(d\\271)-227(d)1(o)-227(s\\241du)1(,)-227(sk)56(ar\\273)-227(mni)1(e)-1(,)-226(do)-27(c)27(ho)-27(d\\271)-227(sw)27(o)-55(jego.)]TJ 0 -13.549 Td[(Co\\261)-323(sw)27(o)-55(je)-323(p)-27(os)-1(i)1(a\\252)-323({)-322(latem)-323(z)-1(b)1(ierze)-1(sz)-1(,)-322(a)-322(te)-1(r)1(az)-323(wyno\\261)-322(s)-1(i\\246!)-322(Niec)27(h)-322(mo)-56(je)-322(o)-28(c)-1(zy)-322(w)27(as)-322(nie)]TJ\nET\nendstream\nendobj\n432 0 obj <<\n/Type /Page\n/Contents 433 0 R\n/Resources 431 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n431 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n436 0 obj <<\n/Length 9393      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(132)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(widz\\241!)-439(S\\252ysz)-1(y)1(s)-1(z!)-440({)-439(ryk)1(n\\241\\252,)-439(b)-28(o)-439(An)28(tek)-440(p)-27(o)-28(d)1(ni\\363s\\252)-440(si\\246,)-440(al)1(e)-440(nic)-440(n)1(ie)-440(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(.)1(..)-439(i)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252)-334(si\\246)-334(w)28(olno)-333(u)1(biera\\242...)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(mi)-333(do)-333(p)-27(o\\252)-1(edn)1(ia)-333(ju)1(\\273)-334(w)27(as)-333(nie)-334(b)29(y\\252o!)-333({)-334(za)28(w)27(o\\252a\\252)-333(jes)-1(zc)-1(ze)-334(z)-334(sieni.)]TJ 0 -13.549 Td[(An)28(tek)-333(i)-333(na)-333(to)-333(nie)-334(o)-27(drzek\\252,)-334(j)1(akb)28(y)-333(n)1(ic)-334(n)1(ie)-334(s\\252)-1(y)1(s)-1(za\\252...)]TJ 0 -13.549 Td[({)-304(J\\363zk)55(a,)-303(z)-1(a)28(w)27(o\\252a)-55(j)-304(Ku)1(b)-28(\\246,)-304(n)1(ie)-1(c)28(h)-304(za\\252)-1(o\\273y)-304(k)28(ob)28(y\\252\\246)-304(do)-304(w)28(oz)-1(u)-303(i)-304(wywie)-1(zie)-304(ic)27(h)1(,)-304(gdzie)]TJ -27.879 -13.55 Td[(c)27(h)1(c)-1(\\241!)]TJ 27.879 -13.549 Td[({)-444(Hale,)-444(k)1(ie)-1(j)-443(Ku)1(bie)-444(cos)-1(ik)-443(jes)-1(t)1(,)-444(le\\273)-1(y)-443(na)-444(w)28(erku)-443(i)-444(j)1(\\246)-1(cz)-1(y)-443(ino,)-443(a)-444(p)-27(o)27(wiad)1(a,)-444(\\273e)]TJ -27.879 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-333(ws)-1(ta\\242)-334(n)1(ie)-334(mo\\273)-1(e,)-333(tak)-333(go)-333(te)-1(n)-333(k)1(ulas)-334(k)1(rzyw)-1(y)-333(b)-27(oli.)1(..)]TJ 27.879 -13.549 Td[({)-379(Hale,)-379(noga)-379(go)-379(b)-27(oli)1(!)-379(W)83(a\\252k)28(o\\253)-378(jeden,)-379(o)-27(dp)-27(o)-28(c)-1(zyw)28(a\\242)-380(se)-380(c)28(hce)-380(i)-378(s)-1(am)-379(z)-1(a)-55(j\\241\\252)-379(si\\246)]TJ -27.879 -13.549 Td[(ran)1(n)28(ym)-333(obrz\\241dk)1(ie)-1(m)-333(gos)-1(p)-27(o)-28(dar)1(s)-1(k)1(im)-1(.)]TJ 27.879 -13.549 Td[(Ale)-481(K)1(uba)-480(rozc)27(h)1(orz)-1(a\\252)-480(nap)1(ra)28(wd\\246,)-481(n)1(ie)-481(p)-27(o)28(w)-1(i)1(ada\\252,)-480(c)-1(o)-480(m)27(u)-480(j)1(e)-1(st,)-480(c)27(ho)-27(\\242)-481(go)-481(si\\246)]TJ -27.879 -13.55 Td[(Boryn)1(a)-286(p)28(y)1(ta\\252,)-285(ino)-285(\\273)-1(e)-286(c)28(hor)1(y)83(,)-285(a)-285(tak)-286(j)1(\\246)-1(cza\\252)-1(,)-285(tak)-285(st\\246)-1(k)56(a\\252,)-285(a\\273)-286(k)28(oni)1(e)-286(r\\273a\\252y)83(,)-285(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252y)]TJ 0 -13.549 Td[(do)-429(wyrk)56(a)-429(i)-429(ob)28(w)28(\\241c)27(hi)1(w)27(a\\252y)-429(m)27(u)-428(t)27(w)28(arz,)-429(i)-429(liza\\252y)83(,)-429(a)-429(Witek)-429(c)-1(or)1(az)-430(to)-429(nosi\\252)-429(m)27(u)-429(w)28(o)-28(d\\246)]TJ 0 -13.549 Td[(wiaderk)1(ie)-1(m)-333(i)-333(ukrad)1(kiem)-334(p)1(ra\\252)-333(w)-334(p)-27(otoku)-333(j)1(akie\\261)-334(s)-1(zm)-1(at)28(y)-333(skrw)28(a)28(w)-1(i)1(one...)]TJ 27.879 -13.549 Td[(St)1(ary)-333(nie)-333(s)-1(p)-27(os)-1(t)1(rz)-1(eg\\252)-334(t)1(e)-1(go,)-333(b)-27(o)-334(p)1(rzypi)1(lno)28(wyw)28(a\\252)-1(,)-333(b)29(y)-334(si\\246)-334(An)29(tk)28(o)27(wie)-333(w)-1(y)1(nosili.)]TJ 0 -13.549 Td[(I)-333(w)-1(y)1(nosili)-333(s)-1(i)1(\\246)-1(.)]TJ 0 -13.55 Td[(Be)-1(z)-274(kr)1(z)-1(yk)28(\\363)28(w)-274(j)1(u\\273,)-274(b)-27(e)-1(z)-274(k\\252\\363tn)1(i,)-274(b)-27(e)-1(z)-274(spr)1(z)-1(ec)-1(iwia\\253)-273(pak)28(o)28(w)28(ali)-274(si\\246,)-274(wyn)1(os)-1(il)1(i)-274(statki,)]TJ -27.879 -13.549 Td[(wi\\241zali)-367(t)1(ob)-28(o\\252y;)-366(Hank)56(a)-366(a\\273)-368(md)1(la\\252a)-367(z)-367(\\273a\\252)-1(o\\261ci,)-367(An)29(te)-1(k)-366(j\\241)-366(w)27(o)-27(d\\241)-367(t)1(rz)-1(e\\271w)-1(i)1(\\252)-367(i)-367(p)-27(ogan)1(ia\\252,)]TJ 0 -13.549 Td[(b)28(yl)1(e)-334(ju)1(\\273)-334(ry)1(c)27(hl)1(e)-1(j)-333(ze)-1(j)1(\\261)-1(\\242)-334(z)-333(o)-56(j)1(c)-1(o)28(ws)-1(ki)1(c)27(h)-333(o)-28(cz)-1(\\363)28(w,)-333(b)28(yl)1(e)-334(pr)1(\\246)-1(dzej...)]TJ 27.879 -13.549 Td[(P)28(o\\273ycz)-1(y\\252)-303(k)28(oni)1(a)-304(o)-27(d)-303(K\\252\\246ba,)-303(o)-56(j)1(c)-1(o)28(w)28(e)-1(go)-303(n)1(ie)-304(c)28(hcia\\252,)-303(i)-303(przew)27(ozi\\252)-303(rz)-1(ecz)-1(y)-303(d)1(o)-304(Han)1(-)]TJ -27.879 -13.549 Td[(cz)-1(yn)1(e)-1(go)-333(o)-56(j)1(c)-1(a,)-333(n)1(a)-334(k)28(on)1(iec)-334(ws)-1(i,)-333(za)-334(k)56(ar)1(c)-1(zm)-1(\\246)-333(jes)-1(zc)-1(ze)-1(.)1(..)]TJ 27.879 -13.55 Td[(Ze)-301(wsi)-300(przysz)-1(\\252o)-300(p)1(aru)-300(gosp)-28(o)-27(darzy)-300(z)-301(Ro)-28(c)28(hem)-301(n)1(a)-300(c)-1(ze)-1(le)-300(i)-300(c)27(h)1(c)-1(ieli)-300(zgo)-28(d)1(\\246)-301(c)-1(zyn)1(i\\242)]TJ -27.879 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(n)1(imi,)-333(ale)-334(n)1(i)-334(syn)1(,)-333(ni)-333(o)-56(j)1(c)-1(i)1(e)-1(c)-334(m\\363)28(wi\\242)-334(sobie)-334(o)-333(t)28(ym)-334(n)1(ie)-334(d)1(ali..)1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(obr)1(\\363bu)1(je,)-334(j)1(ak)-333(to)-333(w)27(oln)1(o\\261)-1(\\242)-334(smakuj)1(e)-334(i)-333(s)-1(w)28(\\363)-56(j)-332(c)27(hl)1(e)-1(b)-333(o)-28(d)1(p)-28(o)28(wiedzia\\252)-333(s)-1(tar)1(y)83(.)]TJ 0 -13.549 Td[(An)28(tek)-247(nic)-247(nie)-248(o)-27(drzek\\252)-248(n)1(a)-248(n)1(am)-1(o)28(wy)84(,)-248(i)1(no)-247(p)-28(o)-27(dni)1(\\363s)-1(\\252)-247(pi\\246\\261)-1(\\242)-247(i)-248(t)1(ak)-248(zakl\\241\\252)-247(s)-1(t)1(ras)-1(zni)1(e)-1(,)]TJ -27.879 -13.549 Td[(tak)-358(p)-27(ogrozi\\252,)-358(a\\273)-358(Ro)-28(c)28(h)-358(zblad)1(\\252)-358(i)-358(cofn)1(\\241\\252)-358(s)-1(i\\246)-358(do)-357(k)28(obiet,)-358(kt)1(\\363ryc)27(h)-357(si\\246)-358(do\\261)-1(\\242)-358(ze)-1(b)1(ra\\252o)-358(w)]TJ 0 -13.55 Td[(op\\252otk)56(ac)28(h)-386(i)-386(w)-386(ganku)1(,)-386(\\273e)-1(b)28(y)-385(to)-386(Hance)-387(p)-27(om)-1(\\363)-27(c)-1(,)-386(a)-386(g\\252\\363)28(wnie,)-386(b)28(y)-385(s)-1(i\\246)-386(w)-386(g\\252)-1(os)-386(u\\273ala\\242)-386(i)]TJ 0 -13.549 Td[(p)28(ysk)28(o)28(w)27(a\\242)-333(a)-334(u)1(redza)-1(\\242!..)1(.)]TJ 27.879 -13.549 Td[(Gd)1(y)-353(zab)-27(e)-1(cz)-1(an)1(a)-353(J\\363zia)-353(p)-27(o)-28(d)1(a)28(w)27(a\\252a)-353(ob)1(iad)-352(o)-56(j)1(c)-1(u)-352(i)-352(Ro)-28(c)27(h)1(o)28(w)-1(i)1(,)-353(j)1(u\\273)-353(tamc)-1(i)-352(z)-353(ostat-)]TJ -27.879 -13.549 Td[(ni)1(m)-1(i)-313(rze)-1(czam)-1(i)-313(i)-314(d)1(z)-1(i)1(e)-1(\\242m)-1(i)-313(wyje\\273d\\273ali)-314(z)-314(op)1(\\252otk)28(\\363)28(w)-314(na)-313(drog\\246...)-313(An)28(tek)-313(ni)-313(s)-1(i\\246)-314(ob)-27(ejrza\\252)]TJ 0 -13.549 Td[(na)-333(c)28(ha\\252u)1(p)-28(\\246,)-333(pr)1(z)-1(e\\273)-1(egna\\252)-333(si\\246)-333(ino,)-332(w)27(es)-1(tc)28(hn)1(\\241\\252)-333(c)-1(i\\246\\273)-1(k)28(o,)-332(s)-1(maga\\252)-333(k)28(onia,)-332(p)-28(o)-27(dp)1(ie)-1(r)1(a\\252)-333(w)27(\\363z,)]TJ 0 -13.55 Td[(b)-27(o)-350(k)28(opi)1(as)-1(to)-349(b)28(y\\252)-350(n)1(a\\252)-1(o\\273on)28(y)84(,)-350(i)-349(s)-1(ze)-1(d)1(\\252)-350(jak)-349(mart)28(wy)83(,)-349(a)-350(blad)1(y)-350(j)1(ak)-350(ten)-349(pap)1(ie)-1(r)1(,)-350(o)-28(cz)-1(y)-349(m)27(u)]TJ 0 -13.549 Td[(gorza\\252y)-428(z)-1(aci\\246)-1(t)1(o\\261)-1(ci\\241)-429(i)-428(z\\246)-1(b)29(y)-429(szc)-1(z\\246)-1(k)56(a\\252y)-428(kiej)-428(w)27(e)-429(f)1(e)-1(b)1(rze)-1(.)1(..)-428(ale)-429(ni)-428(j)1(e)-1(d)1(nego)-429(s\\252o)27(w)28(a)-428(nie)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252,)-368(Han)1(k)55(a)-367(z)-1(a\\261)-368(wlek\\252a)-368(si\\246)-368(za)-368(w)28(oz)-1(em)-1(,)-367(starsz)-1(y)-367(c)27(h\\252op)1(ak)-368(cze)-1(p)1(ia\\252)-368(si\\246)-368(m)-1(at)1(c)-1(zynego)]TJ 0 -13.549 Td[(w)28(e)-1(\\252ni)1(ak)55(a)-407(i)-407(krzycz)-1(a\\252)-407(wnieb)-28(og\\252osy)83(,)-407(m\\252o)-28(dsz)-1(ego)-407(tuli)1(\\252)-1(a)-407(d)1(o)-408(p)1(ie)-1(r)1(s)-1(i)-407(i)-407(z)-1(agan)1(ia\\252a)-407(prze)-1(d)]TJ 0 -13.549 Td[(sob\\241)-322(kro)28(wy)83(,)-322(stadk)28(o)-322(g\\246)-1(si)-322(i)-322(dw)28(a)-323(c)28(h)28(ud)1(e)-323(pr)1(os)-1(iak)1(i,)-322(a)-323(t)1(a)-1(k)-322(r)1(yc)-1(za\\252a,)-322(tak)-322(w)-1(y)1(klin)1(a\\252a,)-322(tak)]TJ 0 -13.549 Td[(za)27(w)28(o)-28(d)1(z)-1(i\\252a,)-333(\\273e)-334(lu)1(dz)-1(i)1(e)-334(wyc)27(h)1(o)-28(dzili)-333(z)-334(d)1(om\\363)27(w)-333(i)-333(jakb)29(y)-334(p)1(ro)-28(ce)-1(sj\\241)-333(ic)28(h)-333(o)-28(dp)1(ro)28(w)28(adzali.)]TJ 27.879 -13.55 Td[(A)-333(u)-333(s)-1(tar)1(e)-1(go)-333(obi)1(ad)-333(jedli)-333(w)-333(p)-28(on)29(ury)1(m)-334(milcz)-1(eniu)1(.)]TJ 0 -13.549 Td[(St)1(ary)-376(\\212ap)1(a)-376(s)-1(zc)-1(ze)-1(k)56(a\\252)-376(n)1(a)-376(ganku)1(,)-376(b)1(ie)-1(g\\252)-376(za)-376(w)27(ozem)-1(,)-375(p)-28(o)28(wraca\\252)-376(z)-1(n)1(o)27(wu)-375(i)-376(wy\\252...)]TJ -27.879 -13.549 Td[(Wit)1(e)-1(k)-313(go)-313(n)1(a)27(w)28(o\\252yw)28(a\\252,)-313(ale)-314(p)1(ies)-314(n)1(ie)-314(s\\252uc)28(ha\\252,)-313(bi)1(e)-1(ga\\252)-313(p)-27(o)-313(s)-1(ad)1(z)-1(ie,)-313(ob)28(w)28(\\241c)27(h)1(iw)27(a\\252)-313(p)-27(o)-28(d)1(w)27(\\363-)]TJ 0 -13.549 Td[(rze)-1(,)-400(wpad)1(a\\252)-401(do)-400(izb)28(y)-401(An)29(tk)28(\\363)27(w,)-400(obl)1(e)-1(cia\\252)-401(j)1(\\241)-401(par)1(\\246)-401(razy)83(,)-400(w)-1(y)1(pad)1(\\252)-401(do)-400(s)-1(ieni)1(,)-401(sz)-1(cz)-1(ek)56(a\\252,)]TJ 0 -13.549 Td[(sk)28(om)-1(li)1(\\252...)-339(p)-28(o\\252asi\\252)-340(si\\246)-340(do)-340(J)1(\\363z)-1(i)-339(i)-340(zno)28(wu)-339(lata\\252)-340(j)1(ak)-340(osz)-1(ala\\252y)84(,)-340(to)-339(pr)1(z)-1(ysiad)1(a\\252)-340(na)-339(z)-1(ad)1(z)-1(ie)]TJ 0 -13.55 Td[(i)-432(og\\252up)1(ia\\252ym)-432(wz)-1(rok)1(ie)-1(m)-432(pat)1(rz)-1(y)1(\\252)-1(,)-431(a\\273)-433(wres)-1(zc)-1(i)1(e)-433(ze)-1(rw)28(a\\252)-432(s)-1(i)1(\\246)-1(,)-432(wtu)1(li\\252)-432(ogon)-432(p)-27(o)-28(d)-432(si\\246)-432(i)]TJ 0 -13.549 Td[(p)-27(ole)-1(cia\\252)-333(z)-1(a)-333(An)28(tk)56(ami...)]TJ\nET\nendstream\nendobj\n435 0 obj <<\n/Type /Page\n/Contents 436 0 R\n/Resources 434 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 421 0 R\n>> endobj\n434 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n439 0 obj <<\n/Length 2624      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(133)]TJ -330.353 -35.866 Td[({)-333(A)-334(to)-333(i)-333(\\212apa)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(za)-333(niem)-1(i)1(...)]TJ 0 -13.549 Td[({)-356(W)84(r\\363)-28(ci,)-356(wyg\\252o)-28(d)1(z)-1(i)-355(s)-1(i\\246,)-356(to)-356(wr)1(\\363)-28(c)-1(i)1(,)-356(ni)1(e)-357(b)-27(\\363)-56(j)-355(s)-1(i)1(\\246)-1(,)-356(J)1(\\363z)-1(ia)-356({)-355(m)-1(\\363)28(wi\\252)-356(mi\\246)-1(k)1(k)28(o)-356(s)-1(tar)1(y)83(.)]TJ -27.879 -13.549 Td[({)-343(Nie)-344(bu)1(c)-1(z,)-343(g\\252up)1(ia!)-343(Wyp)-27(orz\\241d\\271)-344(tam)28(t\\241)-343(s)-1(tr)1(on\\246,)-343(R)-1(o)-27(c)27(h)-343(b)-27(\\246)-1(d)1(\\241)-344(mieli)-343(mie)-1(sz)-1(k)56(an)1(ie)-1(.)-343(Za-)]TJ 0 -13.549 Td[(w)28(o\\252)-1(a)-55(j)-303(Jagust)27(y)1(nki)1(,)-304(to)-304(ci)-304(p)-27(omo\\273)-1(e...)-303(i)-304(za)-56(jmij)-303(si\\246)-304(gos)-1(p)-27(o)-28(dar)1(s)-1(t)28(w)28(e)-1(m,)-304(gosp)-27(o)-28(dyn)1(i\\241)-304(teraz)]TJ 0 -13.549 Td[(jeste)-1(\\261,)-341(n)1(a)-341(t)28(w)28(o)-56(j)1(e)-1(j)-340(g\\252o)28(w)-1(i)1(e)-342(wsz)-1(y)1(s)-1(tk)28(o..)1(.)-341(n)1(o)-341(n)1(ie)-341(bu)1(c)-1(z,)-341(n)1(ie...)-340(uj\\241\\252)-340(jej)-340(g\\252)-1(o)28(w)28(\\246)-341(i)-341(g\\252ask)56(a\\252)-341(a)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)-1(isk)56(a\\252)-334(d)1(o)-334(p)1(ie)-1(r)1(s)-1(i)1(,)-334(a)-333(h)1(o\\252)-1(u)1(bi)1(\\252)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-56(j)1(ad\\246)-334(d)1(o)-333(m)-1(iasta,)-333(to)-333(c)-1(i)-333(tr)1(z)-1(ew)-1(i)1(ki)-333(kup)1(i\\246.)]TJ 0 -13.549 Td[({)-333(Kup)1(icie)-1(,)-333(tatu)1(lu?)-333(Napr)1(a)27(wd)1(\\246)-334(ku)1(picie?)-1(.)1(..)]TJ 0 -13.549 Td[({)-409(Ku)1(pi\\246)-409(c)-1(i,)-408(kup)1(i\\246)-410(ci)-409(i)-409(co)-410(wi\\246ce)-1(j)1(,)-409(ino)-409(d)1(obr\\241)-409(c\\363rk)56(\\241)-409(b\\241d)1(\\271)-1(,)-409(o)-409(gosp)-28(o)-27(darst)28(wie)]TJ -27.879 -13.549 Td[(pami\\246ta)-56(j)1(!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(i)-333(n)1(a)-334(k)56(af)1(tan)-333(m)-1(i)-333(k)1(up)-27(c)-1(ie,)-333(taki)-333(j)1(ak)-334(ma)-333(Nas)-1(tu)1(s)-1(i)1(a)-334(G)1(o\\252)-1(\\246bi)1(ank)56(a.)]TJ 0 -13.55 Td[({)-333(Kup)1(i\\246)-334(ci,)-333(c)-1(\\363r)1(k)28(o,)-333(kup)1(i\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(I)-334(wst\\241\\273)-1(ek,)-333(in)1(o)-334(d)1(\\252)-1(u)1(gic)27(h)1(,)-333(b)-28(ob)29(ym)-334(n)1(ie)-334(mia\\252a)-333(na)-333(w)27(asz)-1(e)-334(w)28(es)-1(ele)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(ci)-333(ino)-333(p)-27(otrz)-1(a,)-333(m\\363)28(w,)-334(a)-333(ws)-1(zystk)28(o)-333(m)-1(ia\\252a)-333(b)-27(\\246)-1(d)1(z)-1(ies)-1(z)-333(,)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o.)]TJ\nET\nendstream\nendobj\n438 0 obj <<\n/Type /Page\n/Contents 439 0 R\n/Resources 437 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n437 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n443 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(134)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(10.)]TJ\nET\nendstream\nendobj\n442 0 obj <<\n/Type /Page\n/Contents 443 0 R\n/Resources 441 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n441 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n446 0 obj <<\n/Length 7135      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(11)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-333(\\221p)1(is)-1(z)-333(to,)-334(J)1(agu\\261?)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-321(A)-321(b)-28(o)-321(to)-321(m)-1(og\\246.)-321(Oc)28(kn\\246\\252am)-322(n)1(a)-322(r)1(oz)-1(\\261w)-1(i)1(c)-1(ie)-321(i)-321(c)-1(i)1(\\246)-1(giem)-322(mi)-321(w)-321(g\\252)-1(o)28(wie)-322(stoi)-321(\\273e)-322(ju)1(\\273)]TJ -27.879 -13.549 Td[(dzisia)-56(j)-332(w)27(es)-1(ele)-1(.)1(..)-333(a\\273)-334(wierz)-1(y)1(\\242)-334(tru)1(dn)1(o:)]TJ 27.879 -13.55 Td[({)-333(Mark)28(otn)1(o)-333(c)-1(i,)-333(c\\363rk)28(o,)-333(c)-1(o?)-333({)-333(s)-1(p)28(y)1(ta\\252a)-334(cisz)-1(ej...)-333(z)-333(l\\246)-1(k)1(liw)28(\\241)-334(n)1(adzie)-1(j)1(\\241)-333(w)-334(se)-1(rcu.)1(..)]TJ 0 -13.549 Td[({)-300(Co)-300(b)28(y)-300(z)-1(a\\261)-300(m)-1(ar)1(k)28(otno)-300(mia\\252o)-300(b)28(y\\242!)-300(Ino,)-300(\\273e)-301(o)-27(d)-300(w)27(as)-300(trze)-1(b)1(a)-300(m)-1(i)-300(i)1(\\261)-1(\\242,)-300(na)-300(sw)27(o)-55(je...)]TJ 0 -13.549 Td[(St)1(ara)-277(ni)1(e)-278(o)-28(d)1(rze)-1(k\\252a,)-277(st\\252umi\\252a)-277(w)-277(sobie)-277(\\273)-1(al)1(,)-277(jaki)-276(nagle)-277(j\\241)-277(p)1(rze)-1(wierci\\252,)-277(i)-277(ws)-1(t)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(z)-317(p)-27(o\\261)-1(cie)-1(l)1(i,)-316(przy)28(o)-28(d)1(z)-1(ia\\252a)-316(s)-1(i\\246)-317(b)29(yle)-317(jak)-316(i)-316(p)-28(osz)-1(\\252a)-316(do)-316(s)-1(ta)-55(jn)1(i)-317(b)1(ud)1(z)-1(i\\242)-317(c)28(h\\252opak)28(\\363)28(w.)-316(Z)-1(aspal)1(i)]TJ 0 -13.549 Td[(ni)1(e)-1(co)-352(p)-28(o)-351(w)27(cz)-1(or)1(a)-56(jszyc)27(h)-351(roz)-1(p)1(lec)-1(in)1(ac)27(h)1(,)-352(b)-27(o)-352(dzie)-1(\\253)-351(ju)1(\\273)-353(b)29(y\\252)-352(du)1(\\273)-1(y)84(,)-352(\\261w)-1(i)1(t)-352(z)-1(atop)1(i\\252)-352(zie)-1(mi\\246)]TJ 0 -13.549 Td[(w)-362(s)-1(r)1(e)-1(b)1(rzys)-1(t)1(e)-1(j)1(,)-362(p)-27(o\\252)-1(y)1(s)-1(kl)1(iw)27(ej)-361(s)-1(zronami)-362(t)1(opieli,)-361(z)-1(orze)-362(s)-1(i)1(\\246)-363(r)1(oz)-1(p)1(ala\\252y)-362(na)-361(w)-1(sc)27(h)1(o)-28(dzie)-362({)]TJ 0 -13.55 Td[(jak)28(ob)29(y)-333(kto)-334(n)1(ieb)-28(o)-333(p)-27(os)-1(yp)1(a\\252)-334(zarze)-1(wiem.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-448(um)27(y)1(\\252a)-449(si\\246)-449(w)-449(sieni)-448(i)-448(c)-1(ic)28(ho)-448(c)27(h)1(o)-28(dzi\\252a)-449(p)-27(o)-448(iz)-1(b)1(ie,)-449(al)1(e)-449(raz)-449(w)-448(raz)]TJ -27.879 -13.549 Td[(p)-27(ogl\\241da\\252a)-292(n)1(a)-293(J)1(agn\\246,)-292(kt\\363rej)-292(ledwie)-292(g\\252o)28(w)27(\\246)-292(m)-1(o\\273na)-292(b)28(y)1(\\252)-1(o)-292(r)1(oz)-1(ez)-1(n)1(a\\242)-293(n)1(a)-292(p)-28(o\\261c)-1(i)1(e)-1(li)-291(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(mrok)28(\\363)28(w,)-334(j)1(akie)-334(j)1(e)-1(szc)-1(ze)-334(z)-1(al)1(e)-1(ga\\252y)-333(izb)-28(\\246...)]TJ 27.879 -13.549 Td[({)-285(Le\\273)-285(s)-1(e,)-285(c\\363rk)28(o,)-285(l)1(e)-1(\\273...)-284(Os)-1(t)1(atni)-284(to)-285(raz)-285(u)-284(m)-1(at)1(ki,)-285(ostatn)1(i.{)-285(m)28(y\\261la\\252a)-285(z)-285(c)-1(zu\\252o\\261c)-1(i\\241)]TJ -27.879 -13.55 Td[(i)-492(z)-493(t)28(ym)-492(b)-28(ol)1(e)-1(sn)28(ym)-492(\\273)-1(alem,)-492(c)-1(o)-492(w)27(ci\\241\\273)-492(p)-28(o)28(wraca\\252.)-492(Nie)-493(c)27(h)1(c)-1(i)1(a\\252)-1(o)-492(si\\246)-493(j)1(e)-1(j)-491(w)-1(i)1(e)-1(rzy\\242,)-492(\\273)-1(e)]TJ 0 -13.549 Td[(to)-388(n)1(apra)28(wd\\246)-388(ju)1(\\273)-389(d)1(z)-1(i)1(s)-1(ia)-55(j,)-387(a\\273)-389(sobie)-388(pr)1(z)-1(yp)-27(omina\\242)-388(m)27(u)1(s)-1(i)1(a\\252a)-388(w)-1(sz)-1(y)1(s)-1(tk)28(o.)1(..)-388(T)83(ak,)-387(s)-1(ama)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(a)-467(te)-1(go,)-467(a)-468(te)-1(r)1(az)-1(,)-467(a)-468(te)-1(r)1(az)-1(..)1(.)-468(jak)1(b)28(y)-468(strac)28(h)-468(n)1(i\\241)-468(o)28(w)-1(\\252ad)1(n\\241\\252)-468(i)-467(tak)-468(zatrz)-1(\\241s\\252,)-468(a\\273)]TJ 0 -13.549 Td[(skur)1(c)-1(zy\\252a)-338(s)-1(i\\246)-338(z)-339(b)-27(\\363lu)-338(i)-337(przysiad\\252a)-338(n)1(a)-339(\\252\\363\\273ku)1(...)-338(Boryn)1(a)-338(dobr)1(y)-338(c)-1(z\\252o)28(w)-1(i)1(e)-1(k,)-337(usz)-1(an)28(u)1(je)-338(i)]TJ 0 -13.549 Td[(kr)1(z)-1(ywd)1(y)-265(j)1(e)-1(j)-263(nie)-264(z)-1(r)1(obi..)1(.)-264(a)-265(Jagu)1(\\261)-265(p)-27(opr)1(o)27(w)28(adzi)-264(go,)-264(gdzie)-265(i)1(no)-264(z)-1(ec)27(h)1(c)-1(e,)-264(b)-28(o)-264(stary)-264(\\261wiata)]TJ 0 -13.55 Td[(Bo\\273)-1(ego)-334(p)-27(oza)-334(n)1(i\\241)-333(nie)-334(wid)1(z)-1(i)1(...)]TJ 27.879 -13.549 Td[(Nie,)-392(nie)-393(o)-392(to)-392(s)-1(i)1(\\246)-393(b)-28(o)-55(ja\\252a,)-392(ni)1(e)-393(o)-393(to.)1(..)-392(pasie)-1(r)1(b)28(y!)-392(Ju)1(\\261)-1(ci...)-392(p)-27(o)-393(co)-392(b)28(y\\252o)-392(An)28(tk)28(\\363)28(w)]TJ -27.879 -13.549 Td[(wygani)1(a\\242)-1(?)-452(T)83(eraz)-452(d)1(opiero)-451(b)-28(\\246d\\241)-451(z)-1(ap)1(iek)55(a\\242)-452(a)-451(p)-28(omst)27(y)-451(sz)-1(u)1(k)55(a\\242!..)1(.)-452(A)-451(nie)-452(wygan)1(ia\\242,)]TJ 0 -13.549 Td[(to)-361(An)28(tek)-362(b)29(y\\252b)28(y)-361(p)-28(o)-28(d)-361(b)-27(oki)1(e)-1(m)-362(i)-361(ob)1(raz)-1(a)-361(b)-27(os)-1(k)56(a)-361(ab)-28(o)-361(i)-361(c)-1(o)-361(gorsz)-1(e)-362(wysz)-1(\\252ob)28(y)-361(z)-362(tego!..)1(.)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-382(m\\363)-55(j!)-380(A)-381(rad)1(y)-381(j)1(u\\273)-381(nie)-381(ma...)-380(Zap)-28(o)28(wiedzi)-381(wysz)-1(\\252y)84(...)-380(w)-1(i)1(e)-1(p)1(rze)-1(k)-380(z)-1(ab)1(it)28(y)83(,)-380(w)27(es)-1(eln)1(i)]TJ 0 -13.55 Td[(sprosz)-1(eni)1(...)-331(t)28(yla)-331(ju)1(\\273)-332(zrobi)1(one...)-331(z)-1(ap)1(is)-332(w)-331(s)-1(kr)1(z)-1(y)1(nce)-1(..)1(.)-332({)-331(Nie,)-331(nie!)-331(Co)-332(b)-27(\\246dzie)-1(,)-331(to)-331(b)-27(\\246)-1(-)]TJ 0 -13.549 Td[(dzie,)-293(a)-293(k)1(rzywdy)-293(n)1(ij)1(akiej,)-293(p)-27(\\363ki)-292(\\273)-1(y)1(je,)-293(zrobi)1(\\242)-294(j)1(e)-1(j)-292(n)1(ie)-293(dam!...)-292({)-293(p)-27(om)27(y\\261la\\252a)-293(stano)28(w)28(c)-1(zo)]TJ 0 -13.549 Td[(i)-333(p)-27(os)-1(z\\252a)-334(zno)28(wu)-333(do)-333(c)27(h)1(\\252opak)28(\\363)28(w)-334(kr)1(z)-1(y)1(c)-1(ze)-1(\\242,)-333(c)-1(ze)-1(m)28(u)-333(nie)-333(w)-1(sta)-55(j\\241.)]TJ 27.879 -13.549 Td[(Za)-275(p)-28(o)28(wrotem)-276(c)28(hcia\\252a)-275(os)-1(tr)1(o)-276(w)28(o\\252a\\242)-276(n)1(a)-275(Jagn\\246,)-275(ale)-276(Jagu)1(\\261)-276(u)1(s)-1(n)1(\\246)-1(\\252a,)-275(r\\363)28(wn)28(y)84(,)-275(c)-1(i)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(o)-28(d)1(dec)27(h)-403(s)-1(zed\\252)-404(o)-27(d)-403(\\252)-1(\\363\\273k)56(a,)-404(a)-403(j\\241)-403(z)-1(n)1(o)28(w)-1(u)-403(c)28(h)28(wyc)-1(i)1(\\252y)-404(w)28(\\241tpl)1(iw)27(o\\261c)-1(i)-403(r)1(\\363\\273)-1(ne)-403(i)-404(\\273ale,)-404(i)-403(jak)-403(te)]TJ 0 -13.55 Td[(jastrz\\246bie)-495(c)-1(ze)-1(p)1(ia\\252y)-495(si\\246)-495(pazur)1(am)-1(i)-495(serc)-1(a,)-494(dar)1(\\252)-1(y)-494(i)-495(kr)1(z)-1(ycz)-1(a\\252y)-494(s)-1(tr)1(ac)27(hem)-495(a)-495(trosk)56(\\241!)]TJ 0 -13.549 Td[(Ukl\\246k\\252a)-339(p)-27(o)-28(d)-339(okn)1(e)-1(m,)-339(wp)1(i\\252a)-339(z)-1(acz)-1(erwienion)1(e)-1(,)-339(r)1(oz)-1(p)1(alone)-339(o)-28(cz)-1(y)-339(w)-339(\\261w)-1(i)1(t)-339(i)-339(mo)-28(dli)1(\\252a)-339(s)-1(i\\246)]TJ 0 -13.549 Td[(d\\252u)1(go)-334(i)-333(gor)1(\\241c)-1(o.)-333(Wsta\\252a)-334(mo)-28(cna)-333(i)-333(na)-333(ws)-1(zystk)28(o)-334(goto)28(w)28(a.)]TJ 358.232 -29.888 Td[(135)]TJ\nET\nendstream\nendobj\n445 0 obj <<\n/Type /Page\n/Contents 446 0 R\n/Resources 444 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n444 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n449 0 obj <<\n/Length 8873      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(136)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-292(Jagu\\261!)-292(Wsta\\253,)-292(c\\363rk)28(o,)-292(c)-1(zas)-293(j)1(u\\273!)-292(Ewk)56(a)-293(zaraz)-293(p)1(rzylec)-1(i)-292(d)1(o)-293(goto)28(w)28(ania,)-292(a)-292(t)28(yla)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(r)1(ob)-28(ot)28(y)1(!)]TJ 27.879 -13.549 Td[({)-333(P)28(ogo)-28(d)1(a)-334(to?)-333({)-334(p)29(yta\\252a)-333(p)-28(o)-28(d)1(nosz)-1(\\241c)-333(o)-28(c)-1(i)1(\\246)-1(\\273a\\252\\241)-334(g\\252o)28(w)27(\\246.)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(ak)55(a,)-333(a\\273)-333(s)-1(i\\246)-333(l\\261)-1(n)1(i)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-334(o)-28(d)-333(p)1(rz)-1(y)1(m)-1(r)1(oz)-1(ku)1(!)-333(S\\252o\\253)1(c)-1(e)-334(zaraz)-334(wze)-1(j)1(dzie)-1(.)1(..)]TJ 0 -13.549 Td[(Jagn)1(a)-306(ubi)1(e)-1(r)1(a\\252)-1(a)-306(si\\246)-306(s)-1(zyb)1(k)28(o.)-306(Star)1(a)-306(jej)-306(p)-27(omog\\252)-1(a)-306(i)-305(d\\252ugo)-306(o)-306(czym)-1(\\261)-306(rozm)27(y)1(\\261)-1(la\\252a,)]TJ -27.879 -13.55 Td[(b)-27(o)-334(w)-333(k)28(o\\253cu)-333(rze)-1(k)1(\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-333(A)-333(p)1(rz)-1(y)1(w)-1(t)1(\\363rz)-1(\\246)-333(ci)-333(jes)-1(zc)-1(ze,)-333(c)-1(om)-333(j)1(u\\273)-333(nieraz)-333(m)-1(\\363)28(wi\\252a...)1(B)-1(or)1(yn\\246)-333(trza)-333(u)28(w)28(a\\273)-1(a\\242...)]TJ -27.879 -13.549 Td[(dob)1(ry)-352(on)-352(c)-1(z\\252o)28(w)-1(i)1(e)-1(k.)1(..)-352(z)-353(b)-28(ele)-353(kim)-352(s)-1(i\\246)-353(n)1(ie)-353(zada)28(w)27(a\\242...)-352(b)28(y)1(c)27(h)-352(c)-1(i)1(\\246)-353(z)-1(n)1(o)27(wu)-352(n)1(a)-353(ozory)-352(nie)]TJ 0 -13.549 Td[(wz)-1(i)1(\\246)-1(li)1(...)-333(lu)1(dzie)-334(to)-333(jak)-333(te)-334(p)1(s)-1(y)84(...)-333(in)1(o)-333(gry\\271\\242)-1(!)-333(S)1(\\252)-1(u)1(c)27(h)1(as)-1(z)-334(to,)-333(c\\363rk)28(o?...)]TJ 27.879 -13.549 Td[({)-257(S)1(\\252uc)28(ham,)-257(s\\252uc)28(ham,)-257(ale)-257(t)1(ak)-257(m\\363)28(w)-1(i)1(c)-1(ie,)-256(jakb)28(y)1(m)-257(s)-1(w)28(o)-56(j)1(e)-1(go)-256(rozum)28(u)-257(n)1(ie)-257(mia\\252a...)]TJ 0 -13.549 Td[({)-256(R)-1(ad)1(y)-256(dobr)1(e)-1(j)-256(n)1(ik)28(om)27(u)-256(n)1(ie)-257(za)-257(wiele)-1(.)1(..)-256(B)-1(acz)-257(i)-256(to,)-256(b)28(y)-256(z)-257(B)-1(or)1(yn\\241)-256(nie)-257(h)29(uru)1(-bur)1(u,)]TJ -27.879 -13.55 Td[(a)-406(mi\\246tk)28(o,)-406(a)-405(dob)1(ro)-28(ci\\241.)-406(S)1(tarsz)-1(y)-405(w\\273)-1(d)1(y)-406(u)28(w)28(a\\273)-1(n)1(iejsz)-1(y)-405(jes)-1(t)-405(na)-406(to)-405(ni\\271li)-405(m)-1(\\252o)-28(d)1(z)-1(i)1(ak...)-405(a)]TJ 0 -13.549 Td[(kto)-333(wie,)-334(mo\\273e)-334(c)-1(i)-333(z)-333(g)-1(r)1(on)28(tu)-333(p)1(rzypisa\\242)-334(ab)-27(o)-333(goto)27(wy)-333(grosz)-334(za)-334(p)1(az)-1(u)1(c)27(h)1(\\246)-334(wraz)-1(i)1(\\242)-1(!)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(sto)-56(j)1(\\246)-334(tam)-334(o)-333(to)-333({)-334(b)1(ur)1(kn\\246\\252a)-334(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(ona.)]TJ 0 -13.549 Td[({)-265(Bo\\261)-266(m\\252o)-28(da)-265(i)-264(g\\252)-1(u)1(pi)1(a...)-265(A)-265(ob)-27(e)-1(j)1(rzyj)-265(si\\246)-265(ino)-265(p)-27(o)-265(ws)-1(i)1(,)-265(p)-28(o)-265(l)1(ud)1(z)-1(iac)28(h,)-265(to)-265(ob)1(ac)-1(zysz)-1(,)]TJ -27.879 -13.549 Td[(o)-279(c)-1(o)-279(s)-1(i)1(\\246)-280(k\\252\\363)-28(c\\241,)-279(o)-280(co)-280(p)1(ra)28(wuj)1(\\241,)-280(o)-279(co)-280(zabiega)-56(j)1(\\241!)-279(O)-279(grun)29(t)-280(j)1(e)-1(n)1(o,)-279(o)-280(d)1(obr)1(o!)-280(Dob)1(rze)-280(b)28(y)-279(ci)]TJ 0 -13.55 Td[(to)-285(b)28(y\\252o)-285(b)-27(e)-1(z)-286(t)1(e)-1(go)-285(z)-1(agon)1(a,)-285(b)-28(ez)-286(tej)-285(\\261wi\\246)-1(tej)-285(zie)-1(mi,)-285(co?)-286(Ni)1(e)-286(do)-285(wyrob)1(ku)-285(i)-285(b)1(ie)-1(d)1(o)28(w)27(an)1(ia)]TJ 0 -13.549 Td[(P)28(an)-424(Jezus)-425(ci\\246)-425(st)28(w)27(orzy\\252,)-424(ni)1(e)-1(!)-424(A)-424(p)-27(o)-425(com)-425(ca\\252)-1(e)-424(\\273)-1(ycie)-425(zabi)1(e)-1(ga\\252a?)-425({)-424(La)-424(c)-1(i)1(e)-1(b)1(ie)-425(in)1(o,)]TJ 0 -13.549 Td[(Jagu)1(\\261)-1(!)-333(A)-333(te)-1(r)1(az)-334(os)-1(tan)1(\\246)-334(ki)1(e)-1(j)-333(ten)-333(pal)1(e)-1(c)-334(sama)-334(j)1(e)-1(d)1(na!.)1(..)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(c)28(h\\252op)1(aki)-333(id\\241)-333(w)-334(\\261wiat?)-334(O)1(s)-1(ta)-55(j\\241..)1(.)]TJ 0 -13.549 Td[({)-269(T)27(yl)1(a)-270(mi)-269(z)-270(ni)1(c)27(h)-269(p)-27(o)-28(c)-1(i)1(e)-1(c)28(h)28(y)83(,)-269(co)-270(z)-269(w)27(cz)-1(or)1(a)-56(jsze)-1(go)-269(dn)1(ia!{)-269(krzykn)1(\\246)-1(\\252a)-269(i)-269(roz)-1(p)1(\\252ak)56(a\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334({)-333(a)-334(z)-333(pasie)-1(r)1(bami)-333(z)-1(go)-28(d)1(\\246)-334(p)-27(o)27(win)1(na\\261)-333(trzym)-1(a\\242!)-333({)-333(do)-28(d)1(a\\252)-1(a)-333(ob)-27(c)-1(i)1(e)-1(ra)-55(j\\241c)-333(o)-28(c)-1(zy)83(.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a)-333(dob)1(ra)-333(dzie)-1(w)28(cz)-1(yn)1(a,)-333(Grze)-1(l)1(a)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(nieryc)28(h\\252o)-333(w)-1(r)1(\\363)-28(ci)-334(z)-333(w)27(o)-55(jsk)55(a.)1(..)-333(a...)]TJ 0 -13.549 Td[({)-333(Ko)28(w)27(ali)-333(tr)1(z)-1(a)-333(si\\246)-334(strze)-1(c.)]TJ 0 -13.549 Td[({)-333(Przec)-1(ie\\273)-334(on)1(i)-334(si\\246)-334(z)-333(Mac)-1(i)1(e)-1(j)1(e)-1(m)-333(s)-1(ieln)1(ie)-334(obserwuj)1(\\241..)]TJ 0 -13.549 Td[({)-372(Ma)-372(w)-372(t)28(ym)-373(k)28(o)28(w)28(al)-372(jaki)1(e)-1(\\261)-372(w)-1(y)1(rac)27(h)1(o)27(w)28(ani)1(e)-1(,)-372(ma!)-372(Ale)-372(piln)1(o)28(w)27(a\\252a)-372(go)-372(b)-27(\\246)-1(d\\246...)-371(Z)]TJ -27.879 -13.55 Td[(An)28(tk)56(ami)-279(na)-55(jgorzej,)-279(b)-27(o)-280(si\\246)-279(p)-28(ogo)-28(d)1(z)-1(i)1(\\242)-280(ni)1(e)-280(c)27(h)1(c)-1(\\241.)1(..)-279(i)-279(dob)1(ro)-28(d)1(z)-1(iej)-279(w)28(c)-1(zora)-55(j)-279(z)-1(go)-27(d\\246)-280(c)28(hcia\\252)]TJ 0 -13.549 Td[(zrobi)1(\\242)-1(..)1(.)-334(n)1(ie)-334(p)1(rzys)-1(tal)1(i...)]TJ 27.879 -13.549 Td[({)-425(A)-425(b)-27(o)-426(M)1(ac)-1(iej)-425(j)1(e)-1(st)-425(jak)-425(t)1(e)-1(n)-425(z\\252y)-425(pi)1(e)-1(s,)-425(\\273)-1(eb)28(y)-425(ic)28(h)-425(z)-426(c)28(ha\\252u)1(p)28(y)-425(wygna\\242!)-425({)-425(wy-)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)1(n\\246\\252)-1(a)-333(n)1(am)-1(i\\246tni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-282(Co)-282(t)28(y)83(,)-282(Jagu)1(\\261)-1(,)-282(co)-282(t)28(y?)-282(A)-282(dy\\242)-282(An)28(tek)-282(na)-55(jb)1(arz)-1(ej)-282(wygad)1(yw)28(a\\252)-283(n)1(a)-282(c)-1(i)1(e)-1(b)1(ie)-283(i)-282(gr)1(un)28(t)]TJ -27.879 -13.55 Td[(c)27(h)1(c)-1(i)1(a\\252)-334(o)-28(d)1(e)-1(b)1(ra\\242,)-333(i)-334(p)-27(oms)-1(to)28(w)28(a\\252)-334(a)-333(z)-1(ar)1(z)-1(ek)56(a\\252)-334(p)1(rze)-1(ciw)-334(tob)1(ie,)-334(\\273e)-334(p)-27(o)28(w)-1(t)1(\\363rz)-1(y)1(\\242)-334(tru)1(dn)1(o.)]TJ 27.879 -13.549 Td[({)-298(An)28(tek)-298(przec)-1(iw)-298(m)-1(n)1(ie?)-299(Ocygan)1(ili)-298(w)28(as)-1(,)-298(a\\273e)-1(b)28(y)-298(i)1(m)-299(ozory)-298(pasku)1(dne)-298(p)-28(osc)27(h)1(n\\246-)]TJ -27.879 -13.549 Td[(\\252y!.)1(..)]TJ 27.879 -13.549 Td[({)-333(A)-334(cz)-1(em)27(u)1(\\273)-334(to)-333(jego)-333(s)-1(tron)1(\\246)-334(tr)1(z)-1(ymasz)-1(,)-333(co?)-1(.)1(..)-333({)-334(zap)28(yta\\252a)-333(gro\\271nie.)]TJ 0 -13.549 Td[({)-380(A)-381(b)-27(o)-380(ws)-1(zys)-1(t)1(kie)-381(n)1(a)-381(n)1(iego!)-380(Ja)-381(n)1(ie)-381(j)1(e)-1(stem)-381(jak)-380(ten)-380(pi)1(e)-1(s)-380(dziado)28(ws)-1(ki)1(,)-380(c)-1(o)-380(z)-1(a)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(ym)-355(i)1(dzie)-1(,)-354(b)28(y)1(le)-355(m)28(u)-354(ino)-354(c)27(h)1(leba)-354(p)-28(o)-27(drzuci\\252!)-354(Dobr)1(z)-1(e)-354(w)-1(i)1(dz\\246)-1(,)-354(\\273e)-355(m)27(u)-354(si\\246)-355(k)1(rz)-1(y)1(w)-1(d)1(a)]TJ 0 -13.55 Td[(dzieje...)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(mo\\273e)-334(b)28(y\\261)-333(m)27(u)-333(i)-333(zapis)-334(o)-27(dda\\252a.)1(..)-333(c)-1(o?...)]TJ 0 -13.549 Td[(Ale)-328(J)1(agna)-327(ju)1(\\273)-328(nie)-327(z)-1(d)1(\\241\\273)-1(y\\252a)-327(rze)-1(c,)-327(b)-27(o)-328(\\252zy)-327(c)-1(iu)1(rki)1(e)-1(m)-327(p)-28(ola\\252y)-327(si\\246)-328(z)-328(j)1(e)-1(j)-326(o)-28(c)-1(z\\363)28(w)-1(,)-327(to)]TJ -27.879 -13.549 Td[(in)1(o)-334(b)1(uc)28(hn\\246\\252a)-333(do)-333(k)28(om)-1(or)1(y)83(,)-333(pr)1(z)-1(y)1(w)27(ar\\252a)-333(dr)1(z)-1(wi)-333(za)-334(sob\\241)-333(i)-333(d\\252ugo)-333(b)1(ucz)-1(a\\252a...)]TJ 27.879 -13.549 Td[(Nie)-381(przes)-1(zk)55(ad)1(z)-1(a\\252a)-381(w)-381(t)28(ym)-381(Dom)-1(i)1(nik)28(o)28(w)28(a,)-381(ino)-381(n)1(o)28(w)27(e)-381(s)-1(tr)1(apienie)-381(w\\261)-1(l)1(iz)-1(n)1(\\246)-1(\\252o)-381(si\\246)]TJ -27.879 -13.55 Td[(do)-304(j)1(e)-1(j)-304(serc)-1(a.)1(..)-304(ale)-305(n)1(ie)-305(czas)-305(b)28(y\\252o)-304(me)-1(d)1(yto)28(w)27(a\\242,)-304(Ewk)56(a)-304(przysz)-1(\\252a,)-304(c)28(h\\252opak)1(i)-304(prze)-1(ci\\241)-28(gal)1(i)]TJ 0 -13.549 Td[(si\\246)-331(pr)1(z)-1(ed)-330(s)-1(ieni)1(\\241,)-331(t)1(rz)-1(eba)-330(b)28(y\\252o)-330(wz)-1(i\\241\\242)-331(si\\246)-331(d)1(o)-331(p)-27(orz\\241dk)28(\\363)28(w)-331(i)-330(p)1(rz)-1(y)1(goto)27(w)28(a\\253)-330(ostatnic)28(h..)1(.)]TJ\nET\nendstream\nendobj\n448 0 obj <<\n/Type /Page\n/Contents 449 0 R\n/Resources 447 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n447 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n452 0 obj <<\n/Length 9612      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(137)]TJ -330.353 -35.866 Td[(S\\252o\\253)1(c)-1(e)-333(w)-1(sta\\252o)-334(i)-333(d)1(z)-1(i)1(e)-1(\\253)-333(r)1(a\\271)-1(n)1(o)-334(p)-27(oto)-28(cz)-1(y)1(\\252)-334(si\\246)-334(n)1(a)-1(p)1(rz\\363)-28(d.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(r)1(oz)-1(ek)-380(w)-381(n)1(o)-28(c)-1(y)-380(b)29(y\\252)-380(niez)-1(gor)1(s)-1(zy)83(,)-380(\\273e)-381(k)56(a\\252u\\273e)-381(p)-27(o)-380(drogac)28(h)-380(i)-380(br)1(z)-1(egi)-380(s)-1(ta)28(wu)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\246\\252y)-333(s)-1(i\\246)-333(lo)-28(dem,)-333(a)-334(n)1(a)-334(gr)1(ud)1(z)-1(i)-333(i)-333(c)-1(o)-333(l\\273e)-1(j)1(s)-1(ze)-334(b)28(y)1(dl\\246)-334(u)1(trzyma\\242)-334(si\\246)-334(ni)1(e)-334(mog\\252)-1(o.)]TJ 27.879 -13.549 Td[(Ciep\\252o)-298(s)-1(i\\246)-298(c)-1(zyni)1(\\252)-1(o,)-298(p)-27(o)-28(d)-298(p)1(\\252otam)-1(i)-298(i)-298(w)-298(c)-1(i)1(e)-1(n)1(iac)27(h)-298(siwia\\252o)-298(jes)-1(zc)-1(ze)-1(,)-298(ale)-298(z)-1(e)-298(s)-1(tr)1(z)-1(ec)27(h)]TJ -27.879 -13.549 Td[(sk)55(ap)29(yw)27(a\\252)-376(z)-1(amr\\363z)-377(l)1(\\261)-1(n)1(i\\241c)-1(y)1(m)-1(i)-376(pacior)1(k)55(ami,)-376(a)-376(na)-376(m)-1(okr)1(ad\\252ac)27(h)-376(k)1(urzy\\252y)-376(opar)1(y)-377(k)1(ie)-1(b)29(y)]TJ 0 -13.55 Td[(dy)1(m)27(y)84(.)-333(P)29(o)27(wietrze)-333(b)28(y\\252o)-332(tak)-333(p)1(rze)-1(j)1(rzys)-1(te,)-332(\\273)-1(e)-333(ok)28(\\363ln)1(e)-333(p)-28(ol)1(a)-333(wid)1(z)-1(ia\\252y)-332(s)-1(i)1(\\246)-333(jak)-332(na)-332(d\\252oni)1(,)]TJ 0 -13.549 Td[(a)-333(las)-1(y)-333(si\\246)-334(p)1(rzys)-1(u)1(n\\246\\252y)83(,)-333(\\273e)-334(i)-333(p)-28(on)1(iekt\\363re)-333(drze)-1(w)28(a)-333(m)-1(\\363g\\252)-333(roze)-1(zna\\242...)]TJ 27.879 -13.549 Td[(Na)-333(niebi)1(e)-334(m)-1(o)-27(dry)1(m)-334(i)-333(niskim)-333(ani)-333(j)1(e)-1(d)1(nej)-333(c)27(hm)28(ur)1(ki)-333(nie)-333(b)28(y\\252o.)]TJ 0 -13.549 Td[(Ale)-334(n)1(a)-333(p)-28(ogo)-28(d)1(\\246)-334(ni)1(e)-334(s)-1(z\\252o,)-333(b)-28(o)-333(wron)28(y)-333(t\\252u)1(k\\252y)-333(s)-1(i)1(\\246)-334(k)28(o\\252o)-334(d)1(om)-1(\\363)28(w)-333(i)-334(p)1(ia\\252y)-333(k)28(ogut)28(y)84(.)]TJ 0 -13.549 Td[(Niedzieln)28(y)-452(to)-451(b)28(y\\252)-452(d)1(z)-1(ie\\253)-452(i)-451(c)27(h)1(o)-28(c)-1(i)1(a\\273)-453(d)1(z)-1(w)28(on)28(y)-452(j)1(e)-1(sz)-1(cze)-453(n)1(ie)-452(przedzw)27(an)1(ia\\252y)-452(do)]TJ -27.879 -13.549 Td[(k)28(o\\261c)-1(io\\252a,.)-382(a)-382(ju)1(\\273)-383(w)28(e)-383(ws)-1(i)-382(wrza\\252o)-383(ki)1(e)-1(b)28(y)-382(w)-382(ulu)1(.)-382(Z)-383(p)-27(\\363\\252)-383(wsi)-382(s)-1(zyk)28(o)28(w)27(a\\252o)-382(s)-1(i)1(\\246)-383(na)-382(w)27(ese)-1(le)]TJ 0 -13.55 Td[(Boryn)1(o)27(w)28(e)-334(z)-334(Jagn)1(\\241.)]TJ 27.879 -13.549 Td[(Mi)1(\\246)-1(d)1(z)-1(y)-452(c)27(h)1(a\\252up)1(am)-1(i,)-452(p)1(rze)-1(z)-453(oszroni)1(a\\252)-1(e)-452(s)-1(ad)1(y)-452(biega\\252y)-452(dzie)-1(w)28(c)-1(zyn)28(y)-452(z)-452(p)-28(\\246k)56(am)-1(i)]TJ -27.879 -13.549 Td[(ws)-1(t\\241\\273ek,)-333(a)-334(w)28(e)-1(\\252n)1(iak)56(am)-1(i)-333(i)-333(stroik)56(ami)-333(r\\363\\273n)28(ymi...)]TJ 27.879 -13.549 Td[(W)-392(c)28(ha\\252up)1(ac)27(h)-391(b)28(y\\252)-392(n)1(ie)-1(ma\\252y)-392(r)1(w)27(ete)-1(s)-392(pr)1(z)-1(y)1(goto)27(w)28(a\\253,)-391(pr)1(z)-1(ymierza\\253)-392(a)-392(p)1(rzys)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(ja\\253)1(,)-363(\\273)-1(e)-364(z)-363(g\\246)-1(sto)-364(p)-27(o)28(wywie)-1(r)1(an)28(yc)27(h)-362(okie)-1(n)-362(i)-364(d)1(rzw)-1(i)-363(b)1(uc)28(ha\\252y)-363(radosne)-363(g\\252)-1(osy)-363(ab)-27(o)-364(j)1(u\\273)-364(te)]TJ 0 -13.55 Td[(pi)1(os)-1(enki)-333(w)28(e)-1(se)-1(l)1(ne.)]TJ 27.879 -13.549 Td[(A)-347(i)-347(w)-347(c)27(ha\\252u)1(pie)-347(Dominik)28(o)28(w)28(e)-1(j)-346(ucz)-1(yn)1(i\\252)-347(s)-1(i\\246)-347(gw)27(a\\252t)-347(i)-347(zamie)-1(sz)-1(an)1(ie,)-347(jak)-347(to)-347(zwy-)]TJ -27.879 -13.549 Td[(cz)-1(a)-55(jni)1(e)-334(w)-334(d)1(z)-1(ie\\253)-333(taki)1(!)]TJ 27.879 -13.549 Td[(Dom)-299(b)28(y\\252)-299(\\261w)-1(i)1(e)-1(\\273o)-299(obielon)28(y)84(,)-299(c)28(ho)-28(\\242)-299(niec)-1(o)-299(ob)1(laz\\252)-299(z)-300(w)28(apn)1(a)-299(na)-299(wilgo)-28(ci,)-299(a)-299(wid)1(ni)1(a\\252)]TJ -27.879 -13.549 Td[(ju)1(\\273)-299(z)-299(d)1(ale)-1(k)56(a,)-298(b)-27(o)-299(i)-298(uma)-56(j)1(on)28(y)-298(b)28(y\\252)-298(jak)-298(na)-298(\\221wi\\241t)1(ki.)-298(Ch\\252opak)1(i)-299(j)1(e)-1(sz)-1(cze)-299(w)27(cz)-1(or)1(a)-56(j)-298(n)1(a)27(wt)28(y-)]TJ 0 -13.55 Td[(k)56(ali)-328(\\261)-1(wiercz)-1(yn)29(y)-329(w)-328(s)-1(tr)1(z)-1(ec)27(h)1(\\246)-1(,)-328(to)-329(w)-328(s)-1(zpar)1(y)-329(\\261c)-1(i)1(an,)-328(gdzie)-329(si\\246)-329(ino)-328(da\\252o,)-328(a)-329(ca\\252e)-329(op\\252otk)1(i)]TJ 0 -13.549 Td[(o)-28(d)-333(d)1(rogi)-333(do)-333(sie)-1(n)1(i)-333(w)-1(y)1(s)-1(yp)1(ali)-333(jedl)1(in\\241)-333({)-333(pac)27(h)1(nia\\252o)-333(jak)-333(w)-333(b)-28(or)1(z)-1(e)-333(na)-333(z)-1(wies)-1(n)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(A)-333(i)-333(w)27(ew)-1(n)1(\\241trz)-333(w)-1(yp)-27(orz\\241dzone)-333(b)28(y\\252o)-333(galan)28(to.)]TJ 0 -13.549 Td[(P)28(o)-290(dr)1(ugiej)-290(s)-1(tr)1(onie,)-290(gdzie)-291(b)28(y)1(\\252)-291(sk\\252ad)-290(rup)1(iec)-1(i,)-290(b)1(uzo)27(w)28(a\\252)-291(si\\246)-291(t\\246gi)-290(ogie\\253)-290(i)-291(k)1(uc)27(h)1(a-)]TJ -27.879 -13.549 Td[(ro)28(w)28(a\\252a)-334(E)1(w)-1(k)56(a)-333(o)-28(d)-333(m\\252ynar)1(z)-1(a)-333(pr)1(z)-1(y)-333(p)-27(om)-1(o)-27(c)-1(y)-333(s\\241s)-1(iad)1(e)-1(k)-333(i)-333(Jagu)1(s)-1(t)28(yn)1(ki.)]TJ 27.879 -13.55 Td[(Z)-375(pierwsz)-1(ej)-375(za\\261)-376(izb)28(y)-375(wyni)1(e)-1(\\261li)-375(ws)-1(ze)-1(l)1(ki)-375(s)-1(p)1(rz\\246)-1(t)-375(zb)28(ytn)1(i)-375(do)-375(k)28(omory)84(,)-375(\\273)-1(e)-375(os)-1(ta\\252y)]TJ -27.879 -13.549 Td[(in)1(o)-325(ob)1(razy)83(,)-324(a)-324(c)27(h)1(\\252opaki)-324(u)1(s)-1(ta)28(wiali)-324(p)-27(o)-28(d)-323(\\261)-1(cianami)-324(\\252a)28(w)-1(y)-324(mo)-28(cne,)-324(a)-324(d\\252ugi)1(e)-325(s)-1(t)1(o\\252)-1(y)84(.)-324(Iz)-1(b)1(a)]TJ 0 -13.549 Td[(te\\273)-320(b)28(y)1(\\252)-1(a)-319(wyb)1(ielona)-319(z)-319(no)28(w)27(a,)-319(wym)28(yta,)-319(a)-319(k)28(omin)-319(p)1(rzys)-1(\\252on)1(i\\246t)27(y)-318(m)-1(o)-28(d)1(r\\241)-319(p)1(\\252)-1(ac)28(h)28(t\\241,)-319(ca\\252y)]TJ 0 -13.549 Td[(za\\261)-270(p)1(u\\252ap)-268(i)-269(b)-27(e)-1(l)1(ki,)-269(p)-27(o)-28(cz)-1(ern)1(ia\\252e)-269(z)-1(e)-269(s)-1(t)1(aro\\261)-1(ci,)-268(Jagusia)-269(suto)-269(p)1(rzystroi\\252a)-269(wycin)1(ank)56(am)-1(i)1(.)]TJ 0 -13.549 Td[(Maciej)-311(b)29(y\\252)-311(pr)1(z)-1(ywi\\363z\\252)-311(z)-311(m)-1(i)1(as)-1(ta)-310(k)28(oloro)28(wyc)27(h)-310(pap)1(ier\\363)28(w)-1(,)-310(a)-311(on)1(a)-311(wys)-1(tr)1(z)-1(y)1(gn\\246)-1(\\252a)-310(z)-312(n)1(ic)27(h)]TJ 0 -13.55 Td[(k)28(\\363\\252e)-1(k)-291(s)-1(tr)1(z)-1(\\246pi)1(as)-1(t)28(yc)28(h,)-292(to)-291(kwiatusz)-1(k)28(\\363)28(w,)-292(to)-291(c)-1(u)1(dak)28(\\363)28(w)-292(r\\363\\273n)28(yc)27(h)1(,)-292(j)1(ak)28(o:)-292(kiedy)-291(psy)-292(gon)1(i\\241)]TJ 0 -13.549 Td[(o)28(w)27(ce)-1(,)-472(a)-472(pasterz)-473(z)-473(k)1(ijem)-473(za)-473(n)1(imi)-473(l)1(e)-1(ci,)-472(ab)-27(o)-473(za\\261)-473(i)-472(pr)1(o)-28(c)-1(es)-1(j)1(\\246)-473(ca\\252\\241,)-473(z)-472(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-1(,)-472(z)]TJ 0 -13.549 Td[(c)27(h)1(or\\241)-28(gwiami,)-361(z)-361(obr)1(az)-1(ami)-361(i)-361(in)1(ne)-361(r\\363\\273no\\261c)-1(i)1(,)-361(\\273)-1(e)-361(s)-1(p)1(am)-1(i)1(\\246)-1(ta\\242)-361(tru)1(dn)1(o,)-361(a)-361(tak)-361(ws)-1(zystk)28(o)]TJ 0 -13.549 Td[(ut)1(ra\\014on)1(e)-287(i)-287(for)1(e)-1(mne)-287(ki)1(e)-1(b)28(y)-286(\\273)-1(y)1(w)27(e,)-287(a\\273)-287(s)-1(i)1(\\246)-288(l)1(ud)1(z)-1(ie)-287(w)28(c)-1(zora)-56(j)-286(n)1(a)-287(rozplec)-1(i)1(nac)27(h)-286(d)1(z)-1(iw)28(o)28(w)27(ali)1(.)]TJ 0 -13.549 Td[(Umia\\252a)-379(ona)-379(i)-378(nie)-379(taki)1(e)-1(,)-379(a)-378(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-378(c)-1(o)-379(in)1(o)-379(zam)27(y\\261li\\252a)-379(ab)-27(o)-379(na)-379(co)-379(sp)-28(o)-55(jr)1(z)-1(a\\252a...)-378(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-334(b)28(y\\252o)-333(w)-334(Lip)-27(cac)27(h)-333(c)27(h)1(a\\252up)28(y)-333(b)-27(ez)-334(t)28(yc)27(h)-333(j)1(e)-1(j)-333(strzy\\273e)-1(k.)1(..)]TJ 27.879 -13.55 Td[(Ogar)1(n\\246\\252)-1(a)-332(s)-1(i\\246)-333(n)1(ie)-1(co)-333(w)-333(k)28(omorze)-333(i)-333(wysz)-1(\\252a)-333(n)1(alepia\\242)-333(res)-1(zt\\246)-333(wz)-1(d)1(\\252u\\273)-333(\\261)-1(cian)1(,)-333(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(obr)1(az)-1(ami,)-333(b)-27(o)-334(j)1(u\\273)-334(gd)1(z)-1(i)1(e)-334(in)1(dzie)-1(j)-333(miejsc)-1(a)-333(n)1(ie)-334(b)28(y\\252o.)]TJ 27.879 -13.549 Td[({)-332(Jagu\\261!)-332(A)-332(da\\252ab)28(y\\261)-332(s)-1(p)-27(ok)28(\\363)-56(j)-331(t)27(y)1(m)-333(cudak)28(om,)-332(d)1(ruh)1(e)-1(n)-331(ino)-332(patr)1(z)-1(e\\242)-1(.)1(..)-332(lu)1(dzie)-333(si\\246)]TJ -27.879 -13.549 Td[(wnet)-333(s)-1(c)27(h)1(o)-28(d)1(z)-1(i\\242)-334(p)-27(o)-28(cz)-1(n)1(\\241,)-333(m)27(u)1(z)-1(yk)56(a)-333(ju)1(\\273)-334(p)-27(o)-334(wsi)-333(c)27(ho)-28(d)1(z)-1(i)1(...)-333(a)-333(ona)-333(s)-1(i)1(\\246)-334(z)-1(ab)1(a)28(w)-1(i)1(a...)]TJ 27.879 -13.549 Td[({)-385(Zd\\241\\273\\246)-386(j)1(e)-1(sz)-1(cze)-1(,)-385(zd\\241\\273\\246)-1(.)1(..)-385({)-385(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(a)-385(k)1(r\\363tk)28(o)-385(i)-385(d)1(a\\252a)-385(w)-1(n)1(e)-1(t)-385(sp)-27(ok)28(\\363)-56(j)-384(nale-)]TJ -27.879 -13.55 Td[(pi)1(aniom)-306({)-307(b)1(rak\\252o)-306(jej)-306(cie)-1(r)1(pli)1(w)27(o\\261c)-1(i.)1(..)-306(Wysyp)1(a)-1(\\252a)-306(p)-27(o)-28(d\\252og\\246)-306(k)28(olk)56(am)-1(i)-306(j)1(e)-1(d)1(lino)28(wymi)-306(,)-306(to)]TJ 0 -13.549 Td[(sto\\252y)-354(p)-27(okry)1(\\252a)-354(cie)-1(n)1(kim)-353(p\\252\\363tnem)-354(,)-353(to)-353(p)-28(or)1(z)-1(\\241d)1(k)28(o)27(w)28(a\\252a)-354(w)-353(k)28(om)-1(or)1(z)-1(e)-354(al)1(b)-28(o)-353(s)-1(i)1(\\246)-354(przem)-1(a-)]TJ\nET\nendstream\nendobj\n451 0 obj <<\n/Type /Page\n/Contents 452 0 R\n/Resources 450 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n450 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n455 0 obj <<\n/Length 9881      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(138)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(wia\\252a)-324(z)-324(bra\\242mi)-324(,)-324(lu)1(b)-324(wyc)28(ho)-28(d)1(z)-1(i\\252a)-324(p)1(rze)-1(d)-323(dom)-324(i)-324(p)1(atrzy\\252a)-324(d\\252u)1(go)-324(w)-325(\\261wiat.)-324(A)-324(\\273adn)1(e)-1(j)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(ci)-339(w)-339(sobie)-339(n)1(ie)-339(c)-1(zu\\252a)-339(,)-338(\\273)-1(ad)1(nej)-339(.)-338(\\233)-1(eb)28(y)-338(jej)-339(wsz)-1(ystk)28(o)-339(n)1(ie)-339(przyp)-27(om)-1(i)1(na\\252o)-339(,)-339(\\273e)-339(to)]TJ 0 -13.549 Td[(w)28(e)-1(se)-1(le)-408(dzis)-1(i)1(a)-56(j)-408(,)-408(n)1(ie)-409(b)1(ac)-1(zy\\252ab)28(y)-408(o)-408(t)28(ym)-409(.)-408(Boryn)1(a)-408(w)27(cz)-1(or)1(a)-56(j)-408(n)1(a)-409(r)1(oz)-1(p)1(le)-1(cin)28(y)-408(,)-408(d)1(a\\252)-409(j)1(e)-1(j)]TJ 0 -13.549 Td[(osie)-1(m)-271(s)-1(zn)28(u)1(rk)28(\\363)28(w)-272(k)28(or)1(ali)-271(,)-271(ws)-1(zystkie)-271(jaki)1(e)-272(m)27(u)-270(z)-1(osta\\252y)-271(p)-27(o)-271(nieb)-28(osz)-1(czk)55(ac)28(h..)1(.)-271(Nie)-272(sta\\252a)]TJ 0 -13.549 Td[(o)-370(ni)1(e)-1(,)-369(nie)-370(s)-1(ta\\252a)-370(d)1(z)-1(i)1(s)-1(ia)-55(j)-370(o)-370(n)1(ic)-1(.)1(..)-370(Lec)-1(ia\\252ab)29(y)-370(t)28(ylk)28(o)-370(gd)1(z)-1(ie\\261)-371(p)1(rze)-1(d)-369(s)-1(i)1(\\246)-1(,)-370(c)28(ho)-28(\\242b)28(y)-370(w)-370(ca\\252y)]TJ 0 -13.55 Td[(\\261w)-1(i)1(at...)-363(ale)-364(gd)1(z)-1(i)1(e)-1(?)-363(Ab)-28(o)-363(to)-363(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a!)-363(Mi)1(e)-1(r)1(z)-1(i\\252o)-363(s)-1(i)1(\\246)-364(jej)-363(ws)-1(zystk)28(o,)-363(do)-363(g\\252o)27(wy)-363(w)28(c)-1(i\\241\\273)]TJ 0 -13.549 Td[(wraca\\252o)-292(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(enie)-291(m)-1(atcz)-1(y)1(ne)-292(o)-291(An)28(tk)1(u...)-291({)-291(Jak\\273e)-1(,)-291(on)-291(b)29(y)-291(w)-1(y)1(gadyw)28(a\\252,)-291(on?...)-291(Nie)]TJ 0 -13.549 Td[(mog\\252a)-298(wie)-1(r)1(z)-1(y\\242,)-298(n)1(ie)-298(c)27(h)1(c)-1(ia\\252a..)1(.)-298(b)-27(o)-298(a\\273)-298(s)-1(i\\246)-298(j)1(e)-1(j)-297(na)-297(p\\252ac)-1(z)-298(zbiera\\252o!.)1(..)-298(A)-298(mo\\273e)-1(?...)-297(Wcz)-1(o-)]TJ 0 -13.549 Td[(ra)-55(j,)-413(kiedy)-413(pr)1(a\\252)-1(a)-413(w)-414(s)-1(t)1(a)27(wie,)-414(p)1(rze)-1(sz)-1(ed\\252)-413(i)-414(an)1(i)-414(si\\246)-414(ni)1(e)-414(s)-1(p)-27(o)-56(j)1(rza\\252)-1(!)-413(A)-414(j)1(ak)-414(szli)-414(r)1(ano)-414(d)1(o)]TJ 0 -13.549 Td[(sp)-28(o)28(wiedzi)-312(z)-311(B)-1(or)1(yn\\241,)-311(sp)-27(otk)55(al)1(i)-311(go)-312(p)1(rze)-1(d)-311(k)28(o\\261c)-1(i)1(o\\252e)-1(m...)-311(z)-312(miejsc)-1(a)-311(za)27(wr)1(\\363)-28(c)-1(i)1(\\252)-312(j)1(ak)-311(prze)-1(d)]TJ 0 -13.549 Td[(z\\252)-1(y)1(m)-334(psem)-1(..)1(.)-333(A)-334(mo\\273)-1(e?...)-333(Niec)27(h)-333(sz)-1(cz)-1(ek)56(a,)-333(kiej)-333(taki,)-333(n)1(ie)-1(c)28(h)-333(s)-1(zc)-1(zek)55(a!)1(...)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246\\252)-1(a)-373(s)-1(i)1(\\246)-374(bu)1(n)28(to)28(w)27(a\\242)-374(p)1(rze)-1(ciw)-374(n)1(ie)-1(m)28(u,)-373(ale)-374(z)-374(n)1(ag\\252a)-374(ws)-1(p)-27(omnieni)1(a)-374(tego)-374(wie-)]TJ -27.879 -13.549 Td[(cz)-1(ora,)-407(k)1(ie)-1(d)1(y)-407(w)-1(r)1(ac)-1(al)1(i)-408(z)-407(obieran)1(ia)-408(k)56(ap)1(ust)28(y)-408(o)-27(d)-407(B)-1(or)1(yn)28(y)84(,)-407(bu)1(c)27(hn)1(\\246)-1(\\252y)-407(j)1(e)-1(j)-407(d)1(o)-408(m\\363zgu)-407(i)]TJ 0 -13.549 Td[(zatopi\\252y)-350(j\\241)-350(c)-1(a\\252\\241)-351(w)-351(ogn)1(iu,)-350(i)-350(ob)28(win\\246\\252y)-351(j)1(e)-1(j)-350(du)1(s)-1(z\\246)-351(z)-351(tak)56(\\241)-351(mo)-28(c)-1(\\241,)-350(a)-351(tak)-350(wyrazi\\261)-1(cie)-351(w)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-403(o)-28(d\\273y\\252y)84(,)-404(\\273)-1(e)-404(rad)1(y)-404(s)-1(ob)1(ie)-404(da\\242)-404(nie)-404(m)-1(og\\252a..)1(.)-404(a\\273)-405(n)1(i)-404(st\\241d)-404(n)1(i)-404(z)-1(o)28(w)28(\\241d)-404(ozw)27(a\\252a)-404(si\\246)-405(d)1(o)]TJ 0 -13.549 Td[(matki:)]TJ 27.879 -13.55 Td[({)-333(Wiec)-1(ie,)-333(a)-333(to)-334(p)-27(o)-333(\\261)-1(lu)1(bi)1(e)-334(w)-1(\\252os\\363)28(w)-334(mi)-333(nie)-333(ob)-28(cina)-55(jcie!)]TJ 0 -13.549 Td[({)-268(Hale,)-268(c)-1(o)-268(m\\241dr)1(e)-1(go)-268(u)1(m)27(y\\261li\\252a?)-268(S\\252ysz)-1(an)1(o)-268(to,)-268(\\273e)-1(b)28(y)-268(d)1(z)-1(i)1(e)-1(w)28(c)-1(e)-268(w\\252)-1(os\\363)28(w)-269(n)1(ie)-268(uci\\246)-1(to)]TJ -27.879 -13.549 Td[(p)-27(o)-334(\\261lu)1(bie!)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(o)-333(dw)28(orac)27(h)-333(i)-333(miastac)27(h)-333(n)1(ie)-334(ob)-27(c)-1(i)1(na)-56(j)1(\\241!)]TJ 0 -13.549 Td[({)-275(P)28(e)-1(wn)1(ie)-1(,)-275(j)1(u\\261c)-1(i,)-275(b)-27(o)-275(im)-276(tak)-275(trzeba)-275(do)-275(rozpust)28(y)83(,)-275(\\273e)-1(b)29(y)-276(l)1(udzi)-275(mog\\252)-1(y)-275(o)-28(cygan)1(ia\\242)]TJ -27.879 -13.55 Td[(i)-323(z)-1(a)-323(co)-324(i)1(nsz)-1(ego)-324(si\\246)-324(wyd)1(a)28(w)27(a\\242.)-323(Ale)-1(,)-323(b)-27(\\246dzie)-324(tu)-323(n)1(o)28(w)27(e)-324(p)-27(orz\\241dk)1(i)-324(zak\\252ad)1(a\\252)-1(a!)-323(Dw)28(orskie)]TJ 0 -13.549 Td[(pan)1(ni)1(c)-1(e)-337(n)1(ie)-1(c)28(h)28(ta)-336(z)-337(s)-1(iebi)1(e)-337(c)-1(u)1(daki)-336(rob)1(i\\241)-337(i)-336(p)-27(o\\261)-1(miewis)-1(k)28(o,)-336(n)1(ie)-1(c)28(h)28(ta)-336(z)-337(kud)1(\\252am)-1(i)-336(jak)-336(\\233y-)]TJ 0 -13.549 Td[(do)28(wice)-367(j)1(akie)-366(c)27(h)1(o)-28(dz\\241)-366({)-366(w)27(ol)1(no)-366(im,)-366(k)1(ie)-1(j)-365(g\\252up)1(ie)-1(,)-365(a)-366(t)28(y\\261)-367(gosp)-27(o)-28(dar)1(s)-1(k)56(a)-366(c)-1(\\363r)1(k)56(a)-366(z)-367(d)1(z)-1(iad)1(a)]TJ 0 -13.549 Td[(pr)1(adziada,)-289(nie)-290(\\273adn)1(e)-291(miejskie)-290(p)-27(om)-1(i)1(e)-1(t\\252o,)-290(t)1(o\\261)-291(r)1(obi\\242,)-290(win)1(na)-290(j)1(ak)-290(p)1(an)-290(B\\363g)-290(p)1(rz)-1(y)1(k)55(aza\\252)]TJ 0 -13.549 Td[(,)-406(jak)-406(z)-1(a)28(w\\273)-1(d)1(y)-407(w)-407(n)1(as)-1(zym)-407(gosp)-28(o)-27(darskim)-407(stan)1(ie)-407(s)-1(i\\246)-407(r)1(obi\\252o..)1(.)-407(Zn)1(am)-407(ja)-407(t)1(e)-408(miejskie)]TJ 0 -13.55 Td[(wym)27(y)1(s)-1(\\252y)84(,)-394(z)-1(n)1(a)-1(m..)1(.)-395(j)1(e)-1(szc)-1(ze)-395(ni)1(k)28(om)27(u)-394(one)-394(na)-394(z)-1(d)1(ro)28(wie)-395(ni)1(e)-395(wys)-1(z\\252y!)-394(P)28(osz)-1(\\252a)-394(w)-395(s\\252u\\273b)-28(\\246)]TJ 0 -13.549 Td[(do)-406(miasta)-406(P)28(aku)1(lan)1(k)55(a)-406(i)-405(c)-1(o?...)1(M\\363)28(w)-1(i)1(\\252)-406(w)27(\\363)-55(jt,)-406(j)1(aki)-406(p)1(apier)-406(p)1(rzys)-1(ze)-1(d)1(\\252)-406(do)-406(k)56(an)1(c)-1(elarii)-405(,)]TJ 0 -13.549 Td[(\\273e)-378(d)1(z)-1(iec)-1(i)1(ak)55(a)-377(u)1(du)1(s)-1(i)1(\\252)-1(a)-377(i)-376(w)-378(k)1(ryminal)1(e)-378(siedzi...)-377(al)1(b)-28(o)-377(i)-376(te)-1(n)-376(W)83(o)-55(jtek,)-377(Boryn)1(\\363)28(w)-378(k)1(re)-1(w-)]TJ 0 -13.549 Td[(ni)1(ak)-306(p)-27(o)-306(s)-1(iostrze,)-306(dor)1(obi\\252)-306(si\\246)-306(w)-306(m)-1(ie\\261c)-1(ie)-306(sie)-1(l)1(nie,)-306(\\273e)-307(teraz)-306(p)-27(o)-306(w)-1(siac)28(h)-306(p)-27(o)-306(pr)1(os)-1(zon)28(yrn)]TJ 0 -13.549 Td[(c)27(h)1(lebie)-327(c)27(ho)-27(dzi...)-327(a)-327(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-327(n)1(a)-327(W)83(\\363lce)-328(gosp)-28(o)-27(darst)28(w)27(o)-327(mia\\252,)-327(k)28(oni)1(e)-328(mia\\252)-328(i)-327(c)28(hleba)-327(p)-27(o)]TJ 0 -13.55 Td[(grd)1(yk)28(\\246...)-333(z)-1(ac)28(hcia\\252o)-334(m)28(u)-333(si\\246)-334(bu)1(\\252e)-1(k)1(,)-334(a)-333(ma)-334(k)1(ij)-333(i)-333(torb)-27(\\246)-334(n)1(a)-334(staro\\261\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(Ale)-391(Jagn)1(a)-391(m)-1(\\241d)1(ryc)28(h)-391(p)1(rzyk\\252ad\\363)28(w)-391(n)1(ie)-392(s\\252uc)28(ha\\252a,)-391(a)-390(o)-391(ob)-28(ci\\246c)-1(i)1(u)-391(i)-390(gada\\242)-391(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(ni)1(e)-390(d)1(a\\252a.)-389(Nama)28(w)-1(i)1(a\\252)-1(a)-388(j\\241)-389(E)1(w)-1(k)56(a,)-388(a)-389(ta)-389(zna)-56(j)1(\\241c)-1(a)-388(b)28(y\\252a,)-389(n)1(iejedn\\241)-388(w)-1(i)1(e)-1(\\261)-389(z)-1(n)1(a\\252a)-389(i)-389(r)1(ok)-389(w)]TJ 0 -13.549 Td[(rok)-317(do)-317(Cz)-1(\\246s)-1(to)-27(c)27(ho)28(wy)-317(z)-319(k)28(omp)1(aniami)-317(c)27(ho)-27(dzi\\252a,)-318(p)1(rze)-1(k\\252ad)1(a\\252a)-318(i)-317(Jagust)28(ynk)56(a)-318(,)-317(ale)-318(j)1(ak)]TJ 0 -13.549 Td[(to)-333(ona,)-333(za)27(w\\273dy)-333(z)-334(p)1(rze)-1(kp)1(inami)-333(i)-333(na\\261mie)-1(sz)-1(l)1(iwie)-1(,)-333(b)-27(o)-333(w)-334(k)28(o\\253cu)-333(rzek\\252a:)]TJ 27.879 -13.549 Td[({)-285(Osta)28(w)-285(w)27(ar)1(k)28(o)-28(c)-1(z,)-285(osta)28(w)-1(,)-284(z)-1(d)1(a)-285(s)-1(i)1(\\246)-286(Bory)1(nie,)-285(okr)1(\\246)-1(ci)-285(se)-286(n)1(im)-285(r\\246k)28(\\246)-1(,)-284(os)-1(tr)1(z)-1(ej)-285(p)1(rzy-)]TJ -27.879 -13.55 Td[(trzyma)-330(i)-329(m)-1(o)-27(c)-1(n)1(ie)-1(j)-329(ci\\246)-330(kij)1(e)-1(m)-330(zle)-1(j)1(e)-1(.)1(..sam)-1(a)-329(go)-330(ob)-28(etn)1(ie)-1(sz)-330(p)-28(otem...)-329(Zna\\252am)-330(tak)56(\\241)-330(ni)1(e)-1(-)]TJ 0 -13.549 Td[(jedn)1(\\241)-352(...)-352({)-352(nie)-352(m)-1(\\363)28(wi\\252a)-352(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-352(b)-28(o)-352(Wi)1(te)-1(k)-352(j)1(\\241)-353(w)28(o\\252a\\252,)-352(gdy\\273)-353(o)-27(d)-352(wyp)-27(\\246)-1(d)1(z)-1(enia)-352(An)28(tk)28(\\363)28(w)]TJ 0 -13.549 Td[(pr)1(z)-1(eni)1(e)-1(s\\252a)-355(s)-1(i\\246)-355(do)-355(Bory)1(n)28(y)83(,)-354(b)-28(o)-355(J\\363zia)-355(p)-27(orad)1(z)-1(i\\242)-355(sobie)-355(nie)-355(mog\\252a)-355(z)-356(gosp)-28(o)-27(darst)28(w)27(em.)]TJ 0 -13.549 Td[(P)28(omaga\\252a)-311(w)28(arz)-1(y)1(\\242)-312(E)1(w)27(ce)-1(,)-310(a)-311(co)-311(tro)-28(c)28(h\\246)-311(zagl\\241da\\252a)-311(d)1(o)-311(dom,)-311(stary)-310(dzisia)-56(j)-310(do)-310(nicz)-1(ego)]TJ 0 -13.549 Td[(g\\252o)28(w)-1(y)-254(nie)-255(m)-1(i)1(a\\252)-1(,)-254(J\\363z)-1(ia)-255(j)1(u\\273)-255(o)-28(d)-255(r)1(ana)-255(pr)1(z)-1(ystra)-55(ja\\252a)-255(si\\246)-256(u)-254(k)28(o)28(w)27(al\\363)28(w,)-255(a)-255(Ku)1(ba)-255(le\\273)-1(a\\252)-255(w)28(c)-1(i\\241\\273)]TJ 0 -13.55 Td[(c)27(h)1(ory)84(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(p)1(r\\246)-1(d)1(z)-1(ej,)-333(b)-27(o)-333(Kub)1(a)-334(w)28(as)-334(p)1(ilno)-333(p)-27(otrze)-1(b)1(uj)1(e)-1({)-333(pr)1(z)-1(yn)1(agla\\252)-333(c)27(h\\252op)1(ak.)]TJ\nET\nendstream\nendobj\n454 0 obj <<\n/Type /Page\n/Contents 455 0 R\n/Resources 453 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 440 0 R\n>> endobj\n453 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n458 0 obj <<\n/Length 9042      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(139)]TJ -330.353 -35.866 Td[({)-333(Gorze)-1(j)-333(m)28(u)-333(to?)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(t)1(ak)-334(st\\246k)55(a)-333(i)-333(j\\246c)-1(zy)84(,)-334(a\\273e)-334(n)1(a)-334(d)1(ro)-28(d)1(z)-1(e)-333(s)-1(\\252yc)27(h)1(a\\242)-1(!)]TJ 0 -13.549 Td[({)-268(Id)1(\\246)-269(w)-267(te)-269(p)-27(\\246dy)84(.)-268(Moi)1(\\261)-1(ciew)-1(y)84(,)-268(ob)1(ac)-1(z\\246)-268(ino,)-267(co)-268(s)-1(i)1(\\246)-269(z)-268(n)1(im)-268(dzieje,)-268(i)-267(z)-1(araz)-268(wr\\363)-27(c)-1(\\246...)]TJ 0 -13.549 Td[({)-333(Jagu\\261,)-333(i)-333(tobie)-334(t)1(rz)-1(a)-333(si\\246)-334(spies)-1(zy\\242,)-333(dru)1(hen)-333(in)1(o)-334(p)1(atrzy\\242)-1({)-333(n)1(agania\\252a)-333(m)-1(at)1(k)55(a.)]TJ 0 -13.549 Td[(Ale)-298(Jagu)1(\\261)-299(n)1(ie)-298(p)-27(o\\261)-1(p)1(ie)-1(sza\\252)-1(a,)-297(c)27(h)1(o)-28(dzi\\252a)-298(j)1(ak)-298(se)-1(n)1(na,)-297(pr)1(z)-1(ysiad)1(a\\252)-1(a)-297(p)-28(o)-297(\\252a)27(wk)56(ac)27(h)1(,)-298(to)]TJ -27.879 -13.55 Td[(w)28(e)-1(t)-402(s)-1(i)1(\\246)-403(z)-1(r)1(yw)28(a\\252)-1(a)-402(i)-402(zac)-1(zyna\\252a)-402(s)-1(p)1(rz\\241ta\\242)-1(,)-402(al)1(e)-403(rob)-27(ota)-402(le)-1(cia\\252a)-402(jej)-402(z)-403(r\\241k)1(,)-403(a)-402(on)1(a)-403(sta\\252a)]TJ 0 -13.549 Td[(d\\252u)1(go,)-308(b)-27(e)-1(zm)27(y\\261ln)1(ie)-309(zapatr)1(z)-1(on)1(a)-308(w)-309(ok)1(no.)-308(Kol)1(e)-1(b)1(a\\252)-1(a)-308(si\\246)-308(w)-309(n)1(iej)-308(d)1(usz)-1(a)-308(jak)-307(w)27(o)-28(d)1(a)-308(i)-308(raz)]TJ 0 -13.549 Td[(w)-334(r)1(az)-334(bi)1(\\252a,)-334(j)1(akb)28(y)-333(o)-333(k)56(am)-1(ie\\253)-333(j)1(aki,)-333(o)-333(przyp)-27(om)-1(n)1(ienia..)1(.)]TJ 27.879 -13.549 Td[(A)-343(w)-344(d)1(om)27(u)-343(gw)28(ar)-343(si\\246)-344(cz)-1(y)1(ni\\252)-343(c)-1(or)1(az)-344(wi\\246ks)-1(zy)84(,)-343(b)-28(o)-343(w)28(c)-1(i\\241\\273)-343(w)-1(p)1(ada\\252y)-343(ku)1(m)27(y)-343(r)1(\\363\\273)-1(n)1(e)-1(,)]TJ -27.879 -13.549 Td[(to)-432(kr)1(e)-1(wn)1(iac)-1(zki,)-431(to)-432(gos)-1(p)-27(o)-28(d)1(yni)1(e)-1(,)-431(i)-432(da)28(wn)28(ym)-432(ob)28(y)1(c)-1(za)-56(j)1(e)-1(m)-432(znosi\\252y)-432(ku)1(ry)84(,)-432(to)-432(b)-27(o)-28(c)27(h)1(e)-1(n)]TJ 0 -13.549 Td[(bi)1(a\\252e)-1(go)-434(c)27(h)1(le)-1(b)1(a,)-434(placek,)-434(s)-1(oli)1(,)-434(m)-1(\\241k)1(i,)-434(s)-1(\\252on)1(in)28(y)-434(alb)-27(o)-434(i)-434(s)-1(rebr)1(nego)-435(r)1(ub)1(la)-434(w)-435(p)1(apierku)]TJ 0 -13.55 Td[({)-416(w)-1(szys)-1(tk)28(o)-416(to)-416(w)-417(p)-27(o)-28(d)1(z)-1(i\\246c)-1(e)-416(z)-1(a)-416(pr)1(os)-1(in)29(y)-417(w)28(e)-1(selne,)-416(\\273)-1(eb)28(y)-416(gos)-1(p)-27(o)-28(d)1(yni)-416(zb)28(ytn)1(io)-416(s)-1(i\\246)-416(nie)]TJ 0 -13.549 Td[(sz)-1(k)28(o)-28(d)1(o)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(ja\\252y)-428(z)-1(e)-429(star\\241)-428(p)-27(o)-429(k)1(ie)-1(l)1(is)-1(zec)-1(zku)-428(s)-1(\\252o)-27(dkiej,)-428(p)-27(ogw)28(arz)-1(y)1(\\252)-1(y)84(,)-428(nad)1(z)-1(i)1(w)27(o)28(w)27(a\\252y)-428(i)]TJ -27.879 -13.549 Td[(rozbi)1(e)-1(ga\\252y)-333(s)-1(i)1(\\246)-334(s)-1(p)1(ies)-1(znie.)]TJ 27.879 -13.549 Td[(A)-401(Domin)1(ik)28(o)28(w)27(a)-401(t\\246go)-401(s)-1(i)1(\\246)-402(zwija\\252a)-401({)-401(p)1(iln)1(o)27(w)28(a\\252a)-401(w)27(ar)1(z)-1(y)84(,)-401(u)1(prz\\241ta\\252a,)-401(r)1(ai\\252a)-401(i)-401(na)]TJ -27.879 -13.55 Td[(ws)-1(zystk)28(o)-379(ok)28(o)-379(mia\\252a)-379(i)-379(sp)-28(os\\363b,)-378(a)-379(cz)-1(\\246s)-1(to)-379(n)1(agani)1(a\\252)-1(a)-378(c)27(h\\252op)1(ak)28(\\363)27(w,)-378(b)-28(o)-379(si\\246)-379(o)-28(ci\\241)-28(gali,)-378(a)]TJ 0 -13.549 Td[(co)-286(k)1(t\\363ren)-285(ino)-285(m\\363g\\252,)-285(to)-285(s)-1(i)1(\\246)-286(z)-286(c)28(ha\\252up)29(y)-285(w)-1(y)1(ryw)28(a\\252)-286(n)1(a)-285(w)-1(i)1(e)-1(\\261,)-285(do)-285(w)28(\\363)-56(j)1(ta,)-285(b)-28(o)-285(j)1(u\\273)-286(tam)-285(b)28(yl)1(i)]TJ 0 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(an)1(c)-1(i)-333(i)-333(zbierali)-333(si\\246)-334(d)1(ru)1(\\273)-1(b)-27(o)28(w)-1(i)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Na)-372(sum\\246)-372(m)-1(a\\252o)-371(kto)-372(p)-27(os)-1(ze)-1(d)1(\\252,)-372(gn)1(iew)27(a\\252)-372(si\\246)-372(o)-372(to)-371(dobr)1(o)-28(dziej,)-371(\\273)-1(e)-372(la)-371(w)27(es)-1(ela)-372(za-)]TJ -27.879 -13.549 Td[(p)-27(om)-1(i)1(na)-56(j)1(\\241)-342(o)-342(s)-1(\\252u)1(\\273)-1(b)1(ie)-342(B)-1(o\\273e)-1(j)-341({)-342(c)-1(o)-342(b)29(y\\252o)-342(i)-342(pr)1(a)28(w)-1(d)1(\\241,)-342(ale)-342(nar)1(\\363)-28(d)-342(to)-342(sobi)1(e)-343(rozumia\\252,)-342(\\273e)-342(i)]TJ 0 -13.55 Td[(w)28(e)-1(se)-1(la)-333(taki)1(e)-334(nie)-333(c)-1(o)-333(ni)1(e)-1(d)1(z)-1(iela)-333(s)-1(i)1(\\246)-334(o)-28(dp)1(ra)28(wia)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(A)-322(zaraz)-322(p)-28(o)-322(ob)1(iedzie)-323(j)1(\\246)-1(l)1(i)-322(s)-1(i)1(\\246)-323(zje\\273)-1(d)1(\\273)-1(a\\242)-322(ze)-323(wsi)-322(p)-27(obliskic)28(h,)-321(kto)-322(b)28(y\\252)-322(zapr)1(os)-1(zon.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-322(si\\246)-322(ju)1(\\273)-322(pr)1(z)-1(eto)-28(cz)-1(y\\252o)-321(z)-322(p)-28(o\\252u)1(dn)1(ia)-322(i)-321(pr)1(\\363s)-1(zy\\252o)-322(b)1(lady)1(m)-1(,)-321(jes)-1(i)1(e)-1(n)1(n)28(ym)-322(\\261wia-)]TJ -27.879 -13.549 Td[(t\\252em)-1(,)-475(\\273e)-476(zie)-1(mia)-475(b)1(\\252)-1(y)1(s)-1(zc)-1(za\\252a)-475(jakb)28(y)-475(or)1(os)-1(zona,)-475(ok)1(na)-475(bu)1(c)27(ha\\252y)-475(p)1(\\252om)-1(i)1(e)-1(n)1(iam)-1(i)1(,)-475(s)-1(ta)28(w)]TJ 0 -13.549 Td[(li\\261ni)1(\\252)-310(si\\246)-310(i)-309(migota\\252,)-309(p)1(rz)-1(y)1(dro\\273ne)-309(ro)28(wy)-309(p)-28(ob)1(\\252ys)-1(k)1(iw)27(a\\252y)-309(w)28(o)-28(d\\241)-309(j)1(akb)28(y)-309(s)-1(zyb)1(am)-1(i)-309({)-309(ws)-1(zy-)]TJ 0 -13.55 Td[(ste)-1(k)-333(\\261w)-1(i)1(at)-334(b)29(y\\252)-334(p)1(rze)-1(sycon)28(y)-333(\\261)-1(wiat\\252em)-334(d)1(og)-1(asa)-56(j)1(\\241c)-1(ej)-333(j)1(e)-1(sie)-1(n)1(i)-333(i)-333(c)-1(iep\\252em)-334(ostatni)1(m)-1(.)]TJ 27.879 -13.549 Td[(Og\\252u)1(c)27(h\\252a,)-333(n)1(ie)-1(ma)-333(c)-1(isz)-1(a)-333(ob)1(tula\\252a)-333(rozz)-1(\\252o)-28(con\\241)-333(zie)-1(mi\\246.)]TJ 0 -13.549 Td[(Dzie)-1(\\253)-332(s)-1(i\\246)-333(dopal)1(a\\252)-334(j)1(as)-1(kr)1(a)27(w)28(o)-333(i)-333(z)-334(w)27(ol)1(na)-333(przygasa\\252.)]TJ 0 -13.549 Td[(Ale)-334(w)-333(Lip)-27(c)-1(ac)28(h)-333(h)28(ucz)-1(a\\252o)-333(jak)1(b)28(y)-333(na)-333(jar)1(m)-1(ar)1(ku.)]TJ 0 -13.549 Td[(Jak)-444(t)28(ylk)28(o)-444(pr)1(z)-1(edzw)27(on)1(ili)-444(n)1(a)-445(n)1(ie)-1(szp)-28(ory)84(,)-444(m)27(u)1(z)-1(y)1(k)55(a)-444(wyw)28(ali\\252a)-444(s)-1(i\\246)-445(o)-27(d)-444(w)27(\\363)-55(jta)-444(na)]TJ -27.879 -13.55 Td[(dr)1(og\\246)-1(.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rwsz)-1(e)-331(s)-1(z\\252y)-331(skrzypk)1(i)-331(w)-331(par)1(z)-1(e)-331(z)-332(\\015)1(e)-1(tem,)-331(a)-331(za)-331(nimi)-331(w)28(arcz)-1(a\\252)-331(b)-27(\\246)-1(b)-27(enek)-331(z)]TJ -27.879 -13.549 Td[(br)1(z)-1(\\246k)56(ad\\252ami)-334(i)-333(b)1(as)-1(y)84(,)-333(pr)1(z)-1(ystro)-55(jn)1(e)-334(w)27(e)-333(w)-1(st\\246gi,)-333(w)27(es)-1(o\\252o)-333(p)-27(o)-28(dr)1(ygiw)28(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Za)-333(m)27(uzyk)56(\\241)-333(s)-1(z\\252y)-334(ob)1(a)-333(dzie)-1(w)28(os)-1(\\252\\246b)28(y)-333(i)-333(dr)1(u\\273b)-28(o)28(wie)-334({)-333(s)-1(ze\\261)-1(ciu)-333(ic)28(h)-333(b)28(y\\252o.)]TJ 0 -13.549 Td[(A)-360(ws)-1(zystk)28(o)-360(c)27(h)1(\\252opaki)-359(m)-1(\\252o)-28(d)1(e)-1(,)-359(doro)-27(dn)1(e)-1(,)-360(k)1(ie)-1(j)-359(s)-1(osn)28(y)-359(\\261)-1(mig\\252e)-1(,)-359(w)-360(pasie)-361(cienki)1(e)-1(,)]TJ -27.879 -13.549 Td[(w)-411(bar)1(ac)27(h)-411(r)1(oz)-1(ros\\252e)-1(,)-410(tanec)-1(zni)1(ki)-411(za)-1(p)1(ami\\246)-1(ta\\252e)-411(,)-411(p)28(y)1(s)-1(k)56(ac)-1(ze)-411(hard)1(e)-1(,)-411(zabi)1(jaki)-410(s)-1(ieln)1(e)-1(,)-411(z)]TJ 0 -13.55 Td[(dr)1(ogi)-333(nieust\\246)-1(p)1(liw)28(e)-334({)-333(s)-1(ame)-334(r)1(o)-28(do)28(w)28(e)-1(,)-333(gosp)-28(o)-28(d)1(arskie)-334(syn)28(y)84(.)]TJ 27.879 -13.549 Td[(W)84(alili)-303(\\261)-1(r)1(o)-28(dk)1(ie)-1(m)-303(drogi)1(,)-304(ku)1(p\\241)-303(c)-1(a\\252\\241,)-303(rami\\246)-304(p)1(rzy)-304(r)1(am)-1(ieni)1(u,)-303(a\\273)-304(z)-1(i)1(e)-1(mia)-303(dud)1(ni)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-300(nogami,)-301(a)-301(t)1(ak)-301(rad)1(o\\261)-1(n)1(i,)-301(w)28(es)-1(elni)-300(i)-301(p)1(rzys)-1(tr)1(o)-56(j)1(e)-1(n)1(i)-301(pi)1(\\246)-1(kn)1(ie,)-301(\\273e)-302(i)1(no)-301(w)-301(s\\252o\\253cu)-301(gr)1(a\\252y)]TJ 0 -13.549 Td[(pasiaste)-297(p)-27(ortk)1(i,)-296(cz)-1(erw)28(one)-296(s)-1(p)-27(e)-1(n)1(c)-1(erki)1(,)-296(p)-27(\\246)-1(ki)-295(w)-1(st\\246g)-296(u)-296(k)56(ap)-28(elu)1(s)-1(z\\363)27(w)-296(i)-296(r)1(oz)-1(p)1(usz)-1(cz)-1(on)1(e)-297(n)1(a)]TJ 0 -13.549 Td[(wiatr,)-333(k)1(ie)-1(j)-333(skrzyd)1(\\252a,)-334(k)56(ap)-27(ot)28(y)-333(bia\\252e...)]TJ 27.879 -13.55 Td[(Kr)1(z)-1(yk)56(ali)-359(ostro,)-359(p)-27(o)-28(d)1(\\261)-1(p)1(ie)-1(wyw)28(ali)-359(w)28(e)-1(so\\252o,)-359(przytu)1(p)28(yw)28(ali)-359(s)-1(i)1(arc)-1(zy\\261c)-1(i)1(e)-360(i)-359(s)-1(zli)-359(tak)]TJ -27.879 -13.549 Td[(sz)-1(u)1(m)-1(n)1(o,)-333(jakb)28(y)-333(si\\246)-334(m\\252o)-28(dy)-333(b)-27(\\363r)-333(ze)-1(rw)28(a\\252)-333(i)-334(z)-333(w)-1(i)1(c)27(h)28(u)1(r\\241)-333(le)-1(cia\\252...)]TJ\nET\nendstream\nendobj\n457 0 obj <<\n/Type /Page\n/Contents 458 0 R\n/Resources 456 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n456 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n462 0 obj <<\n/Length 9155      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(140)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Mu)1(z)-1(y)1(k)55(a)-498(gr)1(a\\252a)-498(p)-28(olskiego,)-498(b)-27(o)-498(za\\261)-499(ci\\241)-28(gn)1(\\246)-1(li)-497(o)-28(d)-498(d)1(om)27(u)-497(do)-498(d)1(om)27(u)-498(zapr)1(as)-1(za\\242)]TJ -27.879 -13.549 Td[(w)28(e)-1(se)-1(ln)1(ik)28(\\363)28(w)-326({)-326(gd)1(z)-1(i)1(e)-327(i)1(m)-326(w)-1(y)1(nosili)-325(gorz)-1(a\\252k)1(i,)-326(gd)1(z)-1(i)1(e)-327(zapr)1(as)-1(zali)-325(do)-326(wn)1(\\246)-1(tr)1(z)-1(a,)-325(gdzie)-326(z)-1(a\\261)]TJ 0 -13.549 Td[(\\261piew)27(an)1(iem)-230(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(li)-229({)-229(a)-230(wsz)-1(\\246dy)-229(wyc)27(h)1(o)-28(d)1(z)-1(il)1(i)-230(p)1(rzystro)-56(j)1(e)-1(n)1(i)-229(lud)1(z)-1(i)1(e)-1(,)-229(pr)1(z)-1(ysta)28(w)27(al)1(i)]TJ 0 -13.549 Td[(do)-447(nic)27(h)-447(i)-448(sz)-1(l)1(i)-448(dal)1(e)-1(j)-447(s)-1(p)-27(o\\252e)-1(m,)-448(i)-448(j)1(u\\273)-448(ws)-1(zysc)-1(y)-448(w)-448(j)1(e)-1(d)1(e)-1(n)-447(g\\252os)-449(\\261piew)27(al)1(i)-448(p)-27(o)-28(d)-448(ok)1(nami)]TJ 0 -13.549 Td[(dr)1(uh)1(e)-1(n)1(:)]TJ 27.879 -13.55 Td[(Wyc)28(ho)-28(d)1(\\271)-1(,)-267(dr)1(uh)1(e)-1(n)1(k)28(o,)-268(wyc)27(h)1(o)-28(d\\271,)-268(K)1(as)-1(ie\\253k)28(o,)-267(Na)-268(w)27(ese)-1(le)-268(cz)-1(as-)-268(B)-1(\\246d\\241)-267(tam)-269(gr)1(a\\252y)83(,)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(\\241)-363(\\261piew)28(a\\252)-1(y)-362(S)1(krzypi)1(c)-1(e)-363(i)-362(b)1(as)-1(-)-363(A)-362(kto)-362(s)-1(i)1(\\246)-363(nie)-363(n)1(a)-56(j)1(e)-1(,)-362(kto)-362(si\\246)-363(ni)1(e)-363(nap)1(ije...)-362(P)28(\\363)-55(jd)1(z)-1(ie)]TJ 0 -13.549 Td[(do)-333(d)1(om)-334(w)27(czas)-1(!)-333(Oj)-333(ta)-333(dan)1(a,)-333(dan)1(a,)-333(o)-56(j)-333(ta)-333(dan)1(a,)-333(da!..)1(.)]TJ 27.879 -13.549 Td[(Huk)56(ali)-458(sp)-27(o\\252)-1(em)-459(i)-458(z)-458(m)-1(o)-27(c)-1(\\241)-458(tak)56(\\241,)-458(a\\273)-459(si\\246)-459(p)-27(o)-459(wsi)-458(rozle)-1(ga\\252o,)-458(a\\273)-459(n)1(a)-458(p)-28(ol)1(a)-459(sz)-1(\\252y)]TJ -27.879 -13.549 Td[(w)28(e)-1(se)-1(ln)1(e)-334(g\\252osy)83(,)-333(p)-27(o)-28(d)-333(b)-27(orami)-334(\\261pi)1(e)-1(w)28(a\\252y)83(,)-333(w)28(e)-334(\\261)-1(wiat)-333(lecia\\252y)-334(sze)-1(rok)1(i.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-376(w)-1(y)1(c)27(ho)-27(dzili)-375(przed)-376(d)1(om)27(y)84(,)-376(d)1(o)-376(sad\\363)28(w,)-376(n)1(a)-376(p)1(\\252)-1(ot)28(y)84(,)-375(a)-376(jak)1(i)-376(taki)1(,)-376(c)28(ho)-28(\\242)-376(n)1(ie)]TJ -27.879 -13.55 Td[(w)28(e)-1(se)-1(ln)29(y)83(,)-411(pr)1(z)-1(ysta)28(w)27(a\\252)-411(do)-411(nic)28(h,)-411(b)28(y)-411(s)-1(i)1(\\246)-412(ab)28(y)-411(nap)1(atrze)-1(\\242)-412(i)-411(nas\\252uc)28(ha\\242)-1(,)-411(\\273e)-412(nim)-411(dosz)-1(li)1(,)]TJ 0 -13.549 Td[(ju)1(\\273)-352(si\\246)-351(pra)28(wie)-351(c)-1(a\\252a)-351(wie\\261)-352(st\\252o)-28(c)-1(zy\\252a)-351(i)-351(okr)1(\\241\\273)-1(a\\252a)-351(w)27(ese)-1(ln)1(ik)28(\\363)28(w)-352(ci\\273b\\241,)-351(i)1(\\273)-352(coraz)-352(w)28(oln)1(ie)-1(j)]TJ 0 -13.549 Td[(sz)-1(li)1(,)-275(a)-276(d)1(z)-1(i)1(e)-1(ci)-275(c)27(h)1(m)-1(ar)1(\\241)-276(n)1(ieprze)-1(l)1(ic)-1(zon\\241)-275(i)-275(z)-275(w)-1(r)1(z)-1(askiem)-276(a)-275(p)1(rz)-1(y)1(\\261)-1(p)1(ie)-1(wyw)28(ani)1(e)-1(m)-275(przo)-28(d)1(e)-1(m)]TJ 0 -13.549 Td[(bi)1(e)-1(g\\252y)84(.)]TJ 27.879 -13.549 Td[(Dop)1(ro)28(w)27(ad)1(z)-1(il)1(i)-413(go\\261)-1(ci)-413(do)-413(w)27(ese)-1(ln)1(e)-1(go)-413(d)1(om)27(u,)-413(p)1(rze)-1(gr)1(ali)-413(im)-414(n)1(a)-413(go)-28(dn)1(e)-414(w)28(e)-1(j)1(\\261)-1(cie)-414(i)]TJ -27.879 -13.55 Td[(za)27(wr\\363)-27(c)-1(il)1(i)-333(do)-333(pan)1(a)-334(m\\252o)-28(dego.)]TJ 27.879 -13.549 Td[(A)-369(Wi)1(te)-1(k)1(,)-369(kt\\363r)1(e)-1(n)-368(z)-1(e)-369(ws)-1(t\\246gami)-369(u)-368(s)-1(p)-27(e)-1(n)1(c)-1(erk)56(a)-369(h)1(a)-1(r)1(do)-369(b)29(y\\252)-369(s)-1(p)-27(\\363ln)1(ie)-369(z)-370(d)1(ru)1(\\273)-1(b)1(am)-1(i)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi\\252,)-333(sk)28(o)-28(c)-1(zy\\252)-333(te)-1(r)1(az)-334(nap)1(rz\\363)-28(d.)]TJ 27.879 -13.549 Td[({)-287(G)1(os)-1(p)-27(o)-28(dar)1(z)-1(u)1(,)-287(a)-287(to)-286(m)27(u)1(z)-1(yk)56(a)-287(z)-287(d)1(ru\\273bami)-287(w)28(ali!)-286({)-287(kr)1(z)-1(yk)1(n\\241\\252)-287(w)-287(okn)1(a)-287(i)-287(p)-27(olec)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(do)-333(Ku)1(b)28(y)84(.)]TJ 27.879 -13.55 Td[(Rz)-1(\\246sis)-1(to)-319(z)-1(agr)1(ali)-319(na)-320(gan)1(ku,)-319(a)-319(B)-1(ory)1(na)-319(w)-320(te)-1(n)-319(mig)-319(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-1(,)-319(d)1(rz)-1(wi)-319(na)-319(rozc)-1(ie\\273)]TJ -27.879 -13.549 Td[(wyw)28(ar\\252,)-292(wita\\252)-291(s)-1(i)1(\\246)-293(a)-291(do)-291(\\261)-1(r)1(o)-28(dk)56(a)-292(zapr)1(as)-1(za\\252,)-292(al)1(e)-292(w)27(\\363)-55(jt)-292(z)-292(S)1(z)-1(y)1(m)-1(on)1(e)-1(m)-292(u)1(j\\246li)-291(go)-292(p)-27(o)-28(d)-291(b)-28(ok)1(i)]TJ 0 -13.549 Td[(i)-333(ju)1(\\273)-334(pr)1(os)-1(to)-333(d)1(o)-334(Jagn)28(y)-333(p)-27(o)28(wie)-1(d)1(li,)-333(b)-27(o)-334(czas)-334(b)28(y\\252o)-333(do)-333(k)28(o\\261)-1(cio\\252a.)]TJ 27.879 -13.549 Td[(Szed\\252)-316(ostro)-316(i)-315(a\\273)-317(d)1(z)-1(i)1(w)-1(,)-315(tak)-316(m\\252o)-28(do)-315(w)-1(y)1(gl\\241da\\252;)-315(w)-1(y)1(s)-1(tr)1(z)-1(y\\273on)28(y)84(,)-316(do)-315(c)-1(zysta)-316(wygo-)]TJ -27.879 -13.549 Td[(lon)28(y)84(,)-329(pr)1(z)-1(y)1(s)-1(tr)1(o)-56(jon)29(y)-329(w)27(es)-1(eln)1(ie)-330({)-329(ur)1(o)-28(dn)29(y)-329(b)28(y\\252,)-329(jak)-329(ma\\252o)-329(kt\\363ry)84(,)-329(a)-329(przez)-330(to,)-329(\\273e)-330(mo)-28(c)-1(n)1(o)]TJ 0 -13.55 Td[(w)-437(s)-1(ob)1(ie)-437(p)-28(o)-28(d)1(uf)1(a\\252y)-437(i)-437(rozros\\252y)83(,)-436(to)-437(i)-437(p)-27(os)-1(tu)1(r\\246)-437(ju)1(\\273)-438(mia\\252)-437(z)-438(d)1(ala)-437(wid)1(n\\241,)-437(i)-436(p)-28(o)28(w)28(a)-1(g\\246)-437(w)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(y)-329(niema\\252)-1(\\241;)-329(p)-28(o\\261mie)-1(w)28(a\\252)-330(s)-1(i)1(\\246)-331(w)28(e)-1(so\\252o)-330(z)-330(parob)1(k)56(am)-1(i,)-329(p)-28(ogad)1(yw)28(a\\252)-1(,)-329(a)-330(na)-55(jcz)-1(\\246\\261)-1(ciej)-330(z)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)1(e)-1(m,)-333(b)-28(o)-333(m)27(u)-332(s)-1(i\\246)-334(w)28(ci\\241\\273)-334(na)-333(o)-28(cz)-1(y)-333(n)1(a)28(w)-1(i)1(ja\\252.)]TJ 27.879 -13.549 Td[(Go)-27(dni)1(e)-494(go)-494(wp)1(ro)28(w)27(ad)1(z)-1(il)1(i)-493(do)-493(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)1(;)-494(n)1(ar\\363)-28(d)-493(si\\246)-494(r)1(oz)-1(st\\241)-28(p)1(i\\252,)-493(a)-494(on)1(i)-494(go)]TJ -27.879 -13.549 Td[(wiedli)-333(d)1(o)-334(izb)28(y)-333(sz)-1(u)1(m)-1(n)1(o,)-333(z)-334(gran)1(ie)-1(m)-333(i)-333(przy\\261piewk)55(ami.)]TJ 27.879 -13.55 Td[(Ale)-471(Jagusi)-471(n)1(ie)-472(b)28(y)1(\\252o,)-471(pr)1(z)-1(ystra)-55(ja\\252y)-471(j)1(\\241)-471(jes)-1(zc)-1(ze)-472(k)28(ob)1(iet)28(y)-471(w)-471(k)28(om)-1(orze)-471(m)-1(o)-28(cno)]TJ -27.879 -13.549 Td[(za)27(w)28(artej)-417(i)-416(pi)1(lnie)-417(strze)-1(\\273onej,)-416(b)-28(o)-417(p)1(arob)-27(c)-1(y)-416(dr)1(z)-1(wi)-417(p)-27(c)27(h)1(ali,)-416(to)-417(w)-417(des)-1(k)56(ac)27(h)-416(sz)-1(p)1(arutk)1(i)]TJ 0 -13.549 Td[(cz)-1(yn)1(ili)-465(i)-465(p)1(rze)-1(k)28(omarzali)-465(s)-1(i)1(\\246)-466(z)-466(d)1(ru)1(hnami,)-465(\\273e)-466(in)1(o)-465(pisk,)-465(\\261m)-1(i)1(e)-1(c)27(h)29(y)-465(i)-465(bab)1(ie)-466(wrzas)-1(k)1(i)]TJ 0 -13.549 Td[(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(A)-358(matk)56(a)-358(z)-358(synami)-358(p)1(rzyjmo)28(w)27(a\\252a)-357(go\\261)-1(ci,)-358(cz\\246)-1(sto)28(w)27(a\\252a)-358(gor)1(z)-1(a\\252k)56(\\241)-358(,)-357(usadza\\252a)-358(c)-1(o)]TJ -27.879 -13.549 Td[(starsz)-1(e)-373(n)1(a)-372(\\252a)27(w)28(ac)27(h)-371(i)-372(na)-372(ws)-1(zystk)28(o)-372(ok)28(o)-373(mia\\252a,)-372(b)-27(o)-372(naro)-27(du)-372(si\\246)-372(z)-1(w)28(ali\\252o,)-372(\\273e)-373(i)-372(tr)1(udn)1(o)]TJ 0 -13.55 Td[(pr)1(z)-1(ej\\261\\242)-281(p)1(rze)-1(z)-280(izb)-28(\\246,)-280(p)-27(o)-281(sieniac)28(h)-280(stali,)-280(w)-280(op)1(\\252)-1(ot)1(k)55(ac)28(h)-280(n)1(a)27(w)28(e)-1(t)1(.)-280(Nie)-281(b)-27(ele)-281(j)1(akie)-280(to)-280(go\\261)-1(cie,)]TJ 0 -13.549 Td[(ni)1(e)-1(!)-321(G)1(os)-1(p)-27(o)-28(dar)1(z)-1(e)-321(s)-1(ami,)-321(r)1(o)-28(do)28(wi)-321(i)-321(c)-1(o)-321(b)-27(ogatsz)-1(e,)-321(a)-321(w)-1(sz)-1(y)1(s)-1(tk)28(o)-321(kr)1(e)-1(wni)1(ac)-1(y)84(,)-321(p)-27(o)27(win)1(o)28(w)27(aci)]TJ 0 -13.549 Td[(i)-383(k)1(um)27(y)-382(Boryn)1(\\363)27(w)-383(i)-382(P)28(ac)-1(ze)-1(si,)-382(a)-383(dr)1(udzy)-383(zasie)-384(zna)-55(jomk)28(o)28(wie)-384(t)1(o)-383(i)-383(z)-383(dalszyc)27(h)-382(ws)-1(i\\363)28(w)]TJ 0 -13.549 Td[(zjec)27(hal)1(i.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-317(\\273)-1(e)-317(ni)-317(K\\252\\246ba,)-317(ni)-317(W)1(inciork)28(\\363)28(w,)-317(ni)-317(t)28(yc)28(h)-317(morgo)28(w)-1(y)1(c)27(h)-317(b)1(ie)-1(d)1(ot)-317(nie)-317(b)28(y\\252o,)-317(ni)]TJ -27.879 -13.55 Td[(tego)-284(d)1(robi)1(az)-1(gu)1(,)-284(co)-284(p)-27(o)-283(w)-1(yr)1(obk)56(ac)27(h)-283(c)28(ho)-28(d)1(z)-1(i\\252)-283(i)-283(z)-1(a)28(w\\273)-1(d)1(y)-284(ze)-284(starym)-284(K)1(\\252\\246)-1(b)-27(e)-1(m)-284(t)1(rz)-1(y)1(m)-1(a\\252..)1(.)]TJ 0 -13.549 Td[(Nie)-334(d)1(la)-333(psa)-334(k)1(ie)-1(\\252b)1(as)-1(a,)-333(n)1(ie)-334(dl)1(a)-334(p)1(rosi\\241t)-333(m)-1(i)1(\\363)-28(d!)]TJ\nET\nendstream\nendobj\n461 0 obj <<\n/Type /Page\n/Contents 462 0 R\n/Resources 460 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n460 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n465 0 obj <<\n/Length 9301      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(141)]TJ -330.353 -35.866 Td[(Dop)1(ie)-1(r)1(o)-366(w)-366(j)1(akie)-366(d)1(w)27(a)-365(pacie)-1(r)1(z)-1(e)-366(ot)28(w)28(arli)-365(dr)1(z)-1(wi)-365(k)28(om)-1(or)1(y)-366(i)-365(organ)1(i\\261)-1(cin)1(a)-366(z)-366(m\\252y-)]TJ -27.879 -13.549 Td[(nar)1(z)-1(o)28(w)28(\\241)-303(wywie)-1(d)1(\\252y)-303(Jagu)1(\\261)-303(na)-303(i)1(z)-1(b)-27(\\246)-1(,)-302(a)-303(d)1(ruh)1(n)28(y)-302(oto)-28(cz)-1(y\\252y)-302(j\\241)-303(wian)1(kiem,)-303(a)-303(tak)-302(stro)-56(j)1(ne)]TJ 0 -13.549 Td[(i)-274(ur)1(o)-28(dn)1(e)-275(ws)-1(zystkie,)-274(\\273)-1(e)-274(kwiat)28(y)-274(to)-275(b)29(y\\252y)83(,)-274(n)1(ie)-275(kwiat)28(y)84(,)-274(a)-275(on)1(a)-274(m)-1(i\\246dzy)-274(ni)1(m)-1(i)-274(n)1(a)-56(j)1(\\261)-1(miglej-)]TJ 0 -13.549 Td[(sz)-1(a)-364(i)-364(kieb)28(y)-364(ta)-364(r\\363\\273a)-364(na)-56(j)1(\\261)-1(l)1(ic)-1(zni)1(e)-1(j)1(s)-1(za)-365(sto)-55(ja\\252a)-364(w)-365(p)-27(o\\261)-1(r)1(o)-28(dk)1(u,)-364(a)-364(c)-1(a\\252a)-364(w)-365(b)1(ia\\252o\\261c)-1(iac)28(h,)-364(w)]TJ 0 -13.549 Td[(aksam)-1(i)1(tac)-1(ln)1(,)-350(w)-350(pi\\363r)1(ac)27(h,)-350(w)28(e)-351(wst\\246)-1(gac)28(h,)-350(w)-350(s)-1(r)1(e)-1(b)1(rze)-351(a)-350(z)-1(\\252o)-27(c)-1(ie)-350({)-350(\\273)-1(e)-350(s)-1(i\\246)-350(widzia\\252a)-350(nib)29(y)]TJ 0 -13.55 Td[(ten)-394(ob)1(raz,)-394(co)-394(go)-394(n)1(as)-1(za)-56(j)1(\\241)-394(na)-393(pro)-27(c)-1(es)-1(j)1(ac)27(h,)-393(a\\273)-394(pr)1(z)-1(ycic)27(h)1(\\252o)-394(z)-394(nag\\252a,)-393(tak)-394(on)1(ie)-1(mieli)-393(i)]TJ 0 -13.549 Td[(dziw)28(o)28(w)27(ali)-333(si\\246)-334(lu)1(dzie.)]TJ 27.879 -13.549 Td[(Hej!)-333(Jak)-333(Mazury)-333(M)1(az)-1(u)1(rami,)-333(nie)-333(b)28(y\\252o)-333(\\261)-1(li)1(c)-1(zniejsz)-1(ej!)]TJ 0 -13.549 Td[(Wn)1(e)-1(t)-333(dr)1(u\\273b)-28(o)28(wie)-334(zrob)1(ili)-333(ru)1(m)-1(or)-333(i)-333(gr)1(uc)27(h)1(n\\246li)-333(z)-334(ca\\252yc)27(h)-333(p)1(ie)-1(r)1(s)-1(i)1(:)]TJ 0 -13.549 Td[(Roz)-1(g\\252asz)-1(a)-55(j,)-365(s)-1(kr)1(z)-1(yp)1(ku)1(,)-366(rozg\\252as)-1(za)-56(j)1(!)-366(A)-366(t)28(y)83(,)-365(Jagu\\261,)-366(o)-56(j)1(c)-1(a,)-365(m)-1(atk)28(\\246)-366(p)1(rz)-1(epr)1(as)-1(za)-56(j)-365(-)]TJ -27.879 -13.549 Td[(Roz)-1(g\\252asz)-1(a)-55(j,)-333(\\015)1(e)-1(cie)-1(,)-333(r)1(oz)-1(g\\252asz)-1(a)-55(j!)-333(A)-333(t)28(y)83(,)-333(Jagu\\261,)-333(s)-1(i)1(os)-1(tr)1(y)83(,)-333(b)1(rac)-1(i)-333(p)1(rze)-1(p)1(rasz)-1(a)-55(j!..)1(.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-495(wyst\\241)-28(pi)1(\\252)-1(,)-494(uj)1(\\241\\252)-495(j)1(\\241)-495(za)-495(r\\246k)28(\\246)-495(i)-495(p)1(rzykl\\246kn)1(\\246)-1(li)1(,)-495(a)-494(m)-1(atk)56(a)-494(obraze)-1(m)-495(i)1(c)27(h)]TJ -27.879 -13.549 Td[(pr)1(z)-1(e\\273)-1(egna\\252a)-234(i)-234(j\\246\\252a)-235(b)1(\\252)-1(ogos\\252a)28(w)-1(i)1(\\242)-1(,)-234(i)-234(w)27(o)-27(d\\241)-234(\\261)-1(wi\\246c)-1(on)1(\\241)-235(k)1(ropi)1(\\242)-1(,)-234(a\\273)-235(Jagu)1(\\261)-235(z)-235(p\\252acz)-1(em)-235(p)1(ad\\252a)]TJ 0 -13.549 Td[(do)-319(n\\363g)-319(m)-1(acierzy)83(,)-319(a)-320(p)-27(ote)-1(m)-320(i)-319(d)1(rugi)1(c)27(h)-319(p)-28(o)-27(dejmo)27(w)28(a\\252a,)-319(prze)-1(p)1(rasz)-1(a\\252a)-319(i)-320(\\273e)-1(gn)1(a\\252a)-320(si\\246)-320(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkimi.)-372(Bra\\252y)-372(j)1(\\241)-373(k)28(ob)1(iet)27(y)-371(w)-373(r)1(am)-1(ion)1(a,)-372(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252)-1(y)-371(i)-372(p)-28(o)-27(da)28(w)27(a\\252y)-372(sobie,)-372(a\\273)-372(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(op\\252ak)56(ali)-260(sp)-28(o\\252em)-1(,)-260(a)-260(J\\363zia)-260(na)-55(jr)1(z)-1(ew)-1(l)1(iwie)-1(j)-259(z)-1(a)28(w)28(o)-28(dzi\\252a,)-260(b)-27(o)-261(si\\246)-261(j)1(e)-1(j)-259(m)-1(at)1(ula)-260(ni)1(e)-1(b)-27(os)-1(zcz)-1(k)56(a)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(p)-28(omnia\\252a.)]TJ 27.879 -13.549 Td[(Wysyp)1(ali)-336(si\\246)-336(pr)1(z)-1(ed)-335(dom,)-336(u)1(s)-1(ta)28(wili)-335(w)-336(p)-28(or)1(z)-1(\\241d)1(ku)-335(nale\\273)-1(y)1(t)27(y)1(m)-336(i)-336(ru)1(s)-1(zyli)-335(pi)1(e)-1(sz)-1(o,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(d)1(o)-334(k)28(o\\261cio\\252a)-334(b)28(y)1(\\252o)-334(ze)-334(sta)-56(j)1(e)-1(.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-333(sz)-1(\\252a)-333(przo)-28(d)1(e)-1(m)-334(i)-333(r)1(z)-1(n)1(\\246)-1(\\252a)-333(z)-1(e)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-333(si\\252.)]TJ 0 -13.549 Td[(A)-315(p)-28(otem)-316(Jagn)1(\\246)-316(wiedli)-315(d)1(ru\\273b)-27(o)27(wie)-315({)-316(sz)-1(\\252a)-315(bu)1(jn)1(o,)-315(u\\261m)-1(i)1(e)-1(c)27(h)1(ni)1(\\246)-1(ta)-315(pr)1(z)-1(ez)-316(\\252z)-1(y)84(,)-315(c)-1(o)]TJ -27.879 -13.55 Td[(jej)-350(j)1(e)-1(szc)-1(ze)-351(u)-349(rz\\246)-1(s)-350(wis)-1(i)1(a\\252y)83(,)-350(w)28(e)-1(selna)-350(n)1(ib)28(y)-349(te)-1(n)-349(kierz)-350(kwie)-1(tn)29(y)-350(i)-350(k)1(ie)-1(j)-349(s)-1(\\252o\\253)1(c)-1(e)-350(c)-1(i)1(\\241)-28(gn\\241ca)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h)-439(o)-28(cz)-1(y)1(;)-439(w\\252os)-1(y)-438(m)-1(i)1(a\\252a)-439(z)-1(ap)1(le)-1(cion)1(e)-440(n)1(ad)-438(c)-1(zo\\252e)-1(m,)-439(w)-439(n)1(ic)27(h)-438(k)28(oron)1(\\246)-440(wysok)56(\\241,)]TJ 0 -13.549 Td[(ze)-440(z)-1(\\252ot)28(yc)28(h)-439(s)-1(zyc)28(h\\363)28(w,)-439(z)-440(pa)28(wic)27(h)-438(o)-28(c)-1(ze)-1(k)-439(i)-439(ga\\252\\241ze)-1(k)-439(r)1(oz)-1(maryn)29(u,)-439(a)-439(o)-28(d)-439(n)1(ie)-1(j)-438(na)-439(pl)1(e)-1(cy)]TJ 0 -13.549 Td[(sp\\252yw)28(a\\252y)-472(d)1(\\252ugie)-471(w)-1(st\\241\\273)-1(k)1(i)-471(w)27(e)-472(wsz)-1(ystkic)28(h)-471(k)28(olorac)28(h)-471(i)-471(le)-1(cia\\252y)-471(z)-1(a)-471(n)1(i\\241,)-471(i)-472(f)1(ur)1(k)28(ota\\252y)]TJ 0 -13.549 Td[(kieb)28(y)-325(ta)-326(t\\246c)-1(za;)-325(s)-1(p)-27(\\363)-28(d)1(nica)-326(b)1(ia\\252a)-326(rz\\246)-1(sisto)-326(ze)-1(b)1(ran)1(a)-326(w)-326(p)1(as)-1(ie,)-325(gors)-1(et)-326(z)-326(b)1(\\252\\246)-1(ki)1(tnego)-326(j)1(ak)]TJ 0 -13.55 Td[(ni)1(e)-1(b)-27(o)-410(aks)-1(amitu)-409(w)-1(y)1(s)-1(zyt)28(y)-410(s)-1(r)1(e)-1(b)1(rem)-1(,)-410(k)28(osz)-1(u)1(la)-410(o)-410(bu)1(\\014ast)28(yc)27(h)-410(r)1(\\246)-1(k)56(a)28(w)27(ac)28(h,)-410(a)-410(p)-27(o)-28(d)-410(sz)-1(yj)1(\\241)]TJ 0 -13.549 Td[(bu)1(jn)1(e)-315(krez)-1(y)-314(ob)-27(dziergane)-315(mo)-28(d)1(r\\241)-314(nici\\241,)-314(a)-315(n)1(a)-315(sz)-1(yi)-314(ca\\252e)-315(s)-1(zn)28(ur)1(y)-315(k)28(or)1(ali)-314(i)-315(b)1(ur)1(s)-1(zt)28(yn\\363)28(w)]TJ 0 -13.549 Td[(a\\273)-334(d)1(o)-334(p)-27(\\363\\252)-333(piersi)-334(op)1(ada\\252y)84(.)]TJ 27.879 -13.549 Td[(Za)-333(ni\\241)-333(dr)1(uh)1(n)28(y)-333(pro)28(w)28(adzi\\252y)-333(Macie)-1(j)1(a.)]TJ 0 -13.549 Td[(Jak)28(o)-424(ten)-423(d\\241b)-423(rozros\\252)-1(y)-423(w)-424(b)-27(oru)-423(p)-28(o)-424(\\261mig\\252e)-1(j)-423(so\\261)-1(n)1(ie)-1(,)-423(tak)-424(on)-423(nast\\246p)-28(o)28(w)28(a\\252)-424(p)-28(o)]TJ -27.879 -13.55 Td[(Jagu)1(s)-1(i,)-492(w)-492(b)1(ie)-1(d)1(rac)28(h)-492(si\\246)-493(i)1(no)-492(k)28(o\\252ysa\\252)-1(,)-491(a)-492(p)-28(o)-492(b)-27(ok)56(ac)27(h)-492(d)1(rogi)-492(r)1(oz)-1(gl\\241d)1(a\\252,)-492(b)-27(o)-492(m)27(u)-491(s)-1(i\\246)]TJ 0 -13.549 Td[(zda\\252o,)-333(\\273)-1(e)-333(An)28(tk)56(a)-334(w)-333(c)-1(i\\273bi)1(e)-334(u)28(wid)1(z)-1(ia\\252.)]TJ 27.879 -13.549 Td[(A)-393(za)-393(nimi)-393(d)1(opiero)-393(sz)-1(\\252a)-393(Domin)1(ik)28(o)28(w)27(a)-393(ze)-394(sw)28(atam)-1(i)1(,)-393(k)28(o)28(w)27(alo)28(wie,)-393(J\\363zia,)-393(m\\252y-)]TJ -27.879 -13.549 Td[(nar)1(z)-1(o)28(wie,)-333(o)-1(r)1(gani\\261cina)-333(i)-333(c)-1(o)-333(pr)1(z)-1(edn)1(iejsi.)]TJ 27.879 -13.549 Td[(Na)-333(os)-1(tatek)-333(z)-1(a\\261)-333(c)-1(a\\252\\241)-333(drog\\241)-333(w)28(ali\\252a)-333(w)-1(i)1(e)-1(\\261)-334(ca\\252a.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-390(j)1(u\\273)-389(z)-1(ac)27(h)1(o)-28(dzi\\252o,)-389(wisia\\252o)-390(n)1(ad)-389(las)-1(ami)-389(c)-1(zerw)27(on)1(e)-1(,)-389(ogr)1(om)-1(n)1(e)-390(i)-389(z)-1(alew)28(a\\252)-1(o)]TJ -27.879 -13.55 Td[(ca\\252)-1(\\241)-376(d)1(rog\\246,)-376(s)-1(ta)28(w)-376(i)-376(dom)27(y)-376(k)1(rw)28(a)27(wym)-376(br)1(z)-1(askiem)-1(,)-376(a)-376(oni)-375(s)-1(zli)-376(w)-377(t)28(y)1(c)27(h)-376(\\252un)1(ac)27(h)-376(w)28(oln)1(o,)]TJ 0 -13.549 Td[(\\273e)-340(a\\273)-339(s)-1(i\\246)-339(w)-339(o)-28(c)-1(zac)27(h)-338(m)-1(i)1(e)-1(n)1(i\\252o)-339(o)-28(d)-339(t)28(yc)28(h)-339(ws)-1(t\\241\\273ek,)-339(pi)1(\\363r)-339(pa)28(wic)27(h)1(,)-339(kwiat\\363)28(w,)-339(cz)-1(erw)28(on)28(yc)27(h)]TJ 0 -13.549 Td[(p)-27(ortek,)-425(p)-27(omara\\253)1(c)-1(zo)27(wyc)28(h)-424(w)27(e\\252niak)28(\\363)28(w,)-425(c)28(h)28(ustek,)-425(k)56(ap)-27(ot)-425(b)1(ia\\252yc)28(h)-425({)-424(jak)28(ob)28(y)-424(ten)-424(z)-1(a-)]TJ 0 -13.549 Td[(gon,)-455(rozkwit\\252ymi)-456(k)1(w)-1(i)1(atam)-1(i)-455(p)-27(okryt)28(y;)-455(s)-1(zed\\252)-456(i)-455(p)-28(o)-27(d)-456(wiatr)-455(z)-456(w)27(ol)1(na)-456(si\\246)-456(k)28(o\\252ysa\\252)-456(a)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(p)1(ie)-1(wyw)28(a\\252,)-333(b)-28(o)-333(dr)1(uh)1(n)28(y)-333(raz)-334(w)-333(raz)-334(za)28(w)27(o)-28(d)1(z)-1(i)1(\\252)-1(y)-333(cieniu)1(\\261)-1(k)1(im)-1(i)-333(g\\252osam)-1(i)1(:)]TJ 27.879 -13.55 Td[(A)-350(j)1(ad\\241,)-349(jad)1(\\241,)-350(w)28(oz)-1(y)-349(k)28(o\\252)-1(acz\\241)-350(-)-350(A)-350(mo)-56(j)1(a)-350(Jagu\\261,)-350(p)-27(o)-350(tob)1(ie)-350(p\\252acz)-1(\\241.)1(..)-350(Hej!)-349(A)-350(da)]TJ -27.879 -13.549 Td[(\\261piew)27(a)-55(j\\241,)-333(\\261piew)27(a)-55(j\\241)-333(s)-1(ob)1(ie)-334(-)-333(A)-334(d)1(a)-334(n)1(a)-333(s)-1(m)28(utek,)-333(Jagusiuu)1(,)-333(tobi)1(e)-1(..)1(.)-334(Hej!)]TJ\nET\nendstream\nendobj\n464 0 obj <<\n/Type /Page\n/Contents 465 0 R\n/Resources 463 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n463 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n468 0 obj <<\n/Length 9124      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(142)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Domini)1(k)28(o)27(w)28(a)-244(c)-1(a\\252\\241)-244(d)1(rog\\246)-245(p)-27(op)1(\\252)-1(ak)1(iw)27(a\\252a)-244(i)-244(j)1(ak)-244(w)-244(obraz)-244(wpatry)1(w)27(a\\252a)-244(s)-1(i)1(\\246)-245(w)-244(c)-1(\\363r)1(k)28(\\246)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(nic)-333(nie)-333(s)-1(\\252ysz)-1(a\\252a,)-333(co)-334(d)1(o)-334(n)1(iej)-333(z)-1(agad)1(yw)27(al)1(i.)]TJ 27.879 -13.549 Td[(W)-333(k)28(o\\261)-1(ciele)-334(j)1(u\\273)-334(Jam)28(br)1(o\\273)-1(y)-333(zapala\\252)-333(\\261)-1(wiec)-1(e)-333(na)-333(o\\252tarzu.)]TJ 0 -13.549 Td[(Ogar)1(n\\246li)-333(s)-1(i)1(\\246)-334(ino)-333(w)-333(kru)1(c)27(h)1(c)-1(ie,)-333(up)-27(orz\\241dk)28(o)28(w)28(ali)-333(w)-334(p)1(ary)-333(i)-333(ru)1(s)-1(zyli)-333(p)1(rze)-1(d)-333(o\\252tar)1(z)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(i)-333(ksi\\241d)1(z)-334(ju)1(\\273)-334(z)-334(zakrystii)-333(wyc)28(ho)-28(d)1(z)-1(i\\252.)]TJ 27.879 -13.55 Td[(Pr)1(\\246)-1(d)1(k)28(o)-269(si\\246)-269(o)-28(db)29(y\\252)-269(\\261lub)1(,)-269(b)-27(o)-269(ksi\\241d)1(z)-269(s)-1(i\\246)-269(d)1(o)-269(c)27(h)1(orego)-269(spies)-1(zy\\252.)-269(A)-268(gdy)-268(wyc)27(h)1(o)-28(dzili)]TJ -27.879 -13.549 Td[(z)-422(k)28(o\\261)-1(cio\\252a,)-421(organi)1(s)-1(ta)-421(j\\241\\252)-422(n)1(a)-422(or)1(ganac)27(h)-421(wycina\\242)-422(maz)-1(u)1(ry)-421(a)-422(ob)-27(e)-1(r)1(tas)-1(y)-421(i)-421(kuj)1(a)27(wiak)1(i)]TJ 0 -13.549 Td[(taki)1(e)-1(,)-359(a\\273)-360(sam)-1(e)-360(n)1(ogi)-359(dry)1(ga\\252y)83(,)-359(a)-360(n)1(iekt\\363ren)-359(t)28(ylk)28(o)-359(c)-1(o)-359(ni)1(e)-360(h)28(uk)1(n\\241\\252)-359(piose)-1(n)1(k)56(\\241,)-360(d)1(obr)1(z)-1(e,)]TJ 0 -13.549 Td[(i\\273)-334(si\\246)-334(w)-333(c)-1(zas)-334(p)-27(omiark)28(o)28(w)27(a\\252!)]TJ 27.879 -13.549 Td[(W)84(rac)-1(al)1(i)-295(j)1(u\\273)-295(b)-27(e)-1(z)-295(n)1(ijak)1(ie)-1(go)-294(p)-28(or)1(z)-1(\\241d)1(ku,)-294(ca\\252)-1(\\241)-294(dr)1(og\\241,)-295(j)1(ak)-295(k)28(om)28(u)-295(b)29(y\\252o)-295(d)1(o)-295(up)-27(o)-28(d)1(o-)]TJ -27.879 -13.549 Td[(b)28(y)84(,)-322(a)-323(r)1(oz)-1(g\\252o\\261nie,)-322(b)-28(o)-322(dr)1(u\\273b)-28(o)28(wie)-323(z)-323(d)1(ru)1(henk)56(ami)-323(za)28(w)27(o)-28(d)1(z)-1(i)1(li,)-322(jak)28(ob)29(y)-323(i)1(c)27(h)-322(kto)-322(ze)-323(s)-1(k)28(\\363r)1(y)]TJ 0 -13.55 Td[(ob\\252u)1(pia\\252.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-359(r)1(yc)27(h)1(le)-1(j)-358(p)-27(obieg\\252a,)-359(a)-359(gd)1(y)-359(n)1(adci\\241)-28(gn\\246li)-358({)-359(ju)1(\\273)-359(ona)-359(p)1(a\\253st)27(w)28(a)-359(m\\252o-)]TJ -27.879 -13.549 Td[(dy)1(c)27(h)-363(na)-363(progu)-363(wita\\252a)-363(obraze)-1(m)-364(i)-363(t)28(ym)-364(\\261wi\\246)-1(t)28(ym)-364(c)28(hleb)-27(e)-1(m)-364(i)-363(s)-1(ol)1(\\241,)-364(a)-363(p)-28(otem)-364(n)28(u)1(\\273)-364(s)-1(i\\246)]TJ 0 -13.549 Td[(ze)-334(ws)-1(zys)-1(t)1(kimi)-333(z)-334(no)28(w)27(a)-333(wita\\242,)-333(a)-334(ob)1(\\252apia\\242)-333(i)-334(d)1(o)-333(iz)-1(b)29(y)-334(zapr)1(as)-1(za\\242)-1(!)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-400(r)1(z)-1(n)1(\\246)-1(\\252a)-400(w)-400(sie)-1(n)1(iac)27(h)1(,)-400(wi\\246c)-401(co)-400(kt\\363r)1(y)-400(pr)1(\\363g)-400(pr)1(z)-1(es)-1(t\\241)-27(pi\\252,)-399(c)27(h)28(wyta\\252)-400(wp)-27(\\363\\252)]TJ -27.879 -13.55 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(\\241)-320(z)-320(br)1(z)-1(ega)-320(k)28(o)-1(b)1(iet\\246)-321(i)-320(p)1(usz)-1(cz)-1(a\\252)-320(si\\246)-321(p)-27(osu)28(wis)-1(t)28(y)1(m)-321(kr)1(okiem)-321(\\377c)27(h)1(o)-28(d)1(z)-1(on)1(e)-1(go\")-320({)-320(a)]TJ 0 -13.549 Td[(ju)1(\\273)-279(tam,)-278(nib)29(y)-279(t)1(e)-1(n)-278(w)28(\\241\\273)-279(far)1(bami)-278(m)-1(i)1(gotliwy)83(,)-278(to)-27(c)-1(zy\\252y)-278(s)-1(i)1(\\246)-279(dok)28(o\\252a)-278(iz)-1(b)29(y)-278(pary)84(,)-278(gi\\246\\252)-1(y)-278(si\\246,)]TJ 0 -13.549 Td[(okr)1(\\241\\273)-1(a\\252y)84(,)-348(za)27(wraca\\252y)-348(z)-348(p)-27(o)28(w)27(ag\\241,)-347(przytu)1(p)28(yw)28(a\\252y)-348(go)-28(d)1(nie,)-348(k)28(o\\252y)1(s)-1(a\\252y)-348(si\\246)-348(p)1(rz)-1(y)1(s)-1(to)-55(jn)1(ie)-348(i)]TJ 0 -13.549 Td[(sz)-1(\\252y)84(,)-285(p)1(\\252)-1(y)1(n\\246\\252y)83(,)-284(w)-1(i)1(\\252y)-285(si\\246)-1(,)-284(a)-285(p)1(ara)-285(za)-285(p)1(ar\\241,)-284(g\\252o)27(w)28(a)-285(p)1(rzy)-285(g\\252o)28(wie)-285({)-285(ni)1(b)28(y)-285(t)1(e)-1(n)-284(rozk)28(o\\252ys)-1(an)29(y)]TJ 0 -13.549 Td[(zagon)-269(d)1(os)-1(ta\\252ego)-269(\\273yta,)-268(g\\246)-1(sto)-269(p)1(rze)-1(k)1(w)-1(i)1(e)-1(con)28(y)-269(b)1(\\252a)28(w)27(atem)-269(a)-269(mak)56(am)-1(i)1(...)-268({)-269(a)-269(n)1(a)-269(p)1(rze)-1(d)1(z)-1(ie)]TJ 0 -13.55 Td[(w)-334(p)1(ierws)-1(z\\241)-333(par\\246)-333(Jagusia)-334(z)-333(B)-1(or)1(yn\\241!)]TJ 27.879 -13.549 Td[(A\\273)-422(\\261)-1(wiat)1(\\252)-1(a)-421(usta)28(w)-1(i)1(one)-422(n)1(a)-422(ok)56(apie)-422(d)1(ygota\\252y)83(,)-421(dom)-422(si\\246)-422(c)28(h)28(w)-1(i)1(a\\252,)-422(zda\\252o)-422(si\\246,)-422(\\273e)]TJ -27.879 -13.549 Td[(\\261c)-1(ian)29(y)-334(si\\246)-334(r)1(oz)-1(p)-27(\\246kn\\241)-333(o)-28(d)-333(tej)-333(c)-1(i)1(\\273)-1(b)28(y)-333(i)-333(mo)-28(cy)83(,)-333(j)1(ak)55(a)-333(bi)1(\\252)-1(a)-333(o)-28(d)-333(t)1(anec)-1(znik)28(\\363)28(w!..)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(c)28(ho)-28(d)1(z)-1(i)1(li)-333(z)-334(dob)1(ry)-333(p)1(a)-1(cierz,)-333(nim)-333(s)-1(k)28(o\\253)1(c)-1(zyli.)]TJ 0 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-356(te)-1(r)1(az)-357(z)-1(acz)-1(\\246\\252a)-357(p)1(rze)-1(gry)1(w)27(a\\242)-357(p)1(ie)-1(r)1(ws)-1(zy)-357(tan)1(iec)-1(,)-356(dla)-356(m\\252)-1(o)-27(dej,)-356(jak)-356(to)-357(w)28(e)]TJ -27.879 -13.55 Td[(zw)-1(y)1(c)-1(za)-56(j)1(u)-333(z)-334(da)28(wien)-333(da)28(wna)-333(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-456(z)-1(b)1(i\\252)-457(si\\246)-457(g\\246s)-1(t)28(w)28(\\241)-457(p)-27(o)-28(d)-456(\\261)-1(cian)1(am)-1(i)-456(i)-456(z)-1(al)1(e)-1(g\\252)-456(w)-1(sz)-1(y)1(s)-1(tki)1(e)-457(k)56(\\241t)27(y)84(,)-456(a)-457(p)1(arob)-27(c)-1(y)]TJ -27.879 -13.549 Td[(uczynil)1(i)-371(w)-1(i)1(e)-1(lk)1(ie)-372(k)28(o\\252o,)-371(w)-371(kt\\363rym)-371(z)-1(acz\\246)-1(\\252a)-371(ta\\253co)28(w)27(a\\242!)-371(Krew)-372(w)-371(ni)1(e)-1(j)-371(zagra\\252a,)-371(a\\273)-371(s)-1(i\\246)]TJ 0 -13.549 Td[(jej)-358(m)-1(o)-27(dre)-359(o)-28(cz)-1(y)-358(l\\261ni\\252y)-358(i)-359(b)1(ia\\252e)-359(z)-1(\\246b)28(y)-359(p)-27(o\\252yskiw)28(a\\252y)-359(w)-359(zarumienion)1(e)-1(j)-358(t)28(w)28(arz)-1(y)1(;)-359(ta\\253)1(c)-1(o-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(a)-274(n)1(ie)-1(zm\\246)-1(cz)-1(enie,)-274(c)-1(or)1(az)-275(z)-1(mieni)1(a)-56(j\\241c)-274(tanec)-1(znik)28(\\363)28(w,)-274(b)-27(o)-275(c)28(ho)-28(\\242)-275(r)1(az)-275(w)27(ok)28(o\\252o)-274(z)-275(k)56(a\\273dym)]TJ 0 -13.55 Td[(pr)1(z)-1(eta\\253co)28(w)27(a\\242)-333(m)27(usia\\252a.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(an)1(c)-1(i)-347(grali)-347(os)-1(tro,)-347(a\\273)-349(i)1(m)-349(r)1(\\246)-1(ce)-348(m)-1(d)1(la\\252y)83(,)-347(ale)-348(Jagu\\261)-348(jakb)29(y)-348(z)-1(acz\\246)-1(\\252a)-348(d)1(opie-)]TJ -27.879 -13.549 Td[(ro,)-415(mo)-28(c)-1(n)1(iej)-416(t)28(y)1(lk)28(o)-416(p)-27(o)-28(cz)-1(erwienia\\252a)-415(i)-416(wywij)1(a\\252a)-416(tak)-415(z)-1(ap)1(am)-1(i)1(\\246)-1(tale,)-415(a\\273)-416(te)-416(jej)-415(w)-1(st\\246gi)]TJ 0 -13.549 Td[(z)-428(fur)1(k)28(ote)-1(m)-428(za)-428(ni\\241)-427(lata\\252y)-428(c)27(h)1(lasta)-56(j)1(\\241c)-429(p)-27(o)-428(t)28(w)27(ar)1(z)-1(ac)27(h)1(,)-428(a)-428(r)1(oz)-1(d)1(\\246)-1(te)-428(tanec)-1(zn\\241)-427(w)-1(i)1(c)27(h)28(u)1(r\\241)]TJ 0 -13.549 Td[(sp)-28(\\363)-28(d)1(ni)1(c)-1(e)-334(zap)-27(e)-1(\\252ni)1(a\\252)-1(y)-333(i)1(z)-1(b)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[(A)-333(parob)-27(cy)-333(z)-334(uciec)27(h)28(y)-333(pi)1(\\246)-1(\\261c)-1(iami)-333(w)28(alili)-333(w)-333(s)-1(to\\252y)-333(i)-333(p)-27(okrzykiw)28(ali)-333(s)-1(i)1(arcz)-1(y\\261c)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[(Dop)1(ie)-1(r)1(o)-268(na)-268(ostate)-1(k)-267(w)-1(y)1(bra\\252a)-268(m\\252o)-28(d)1(e)-1(go)-268({)-268(sz)-1(yk)28(o)28(w)28(a\\252)-268(s)-1(i\\246)-268(na)-267(to)-268(B)-1(or)1(yna,)-267(b)-28(o)-268(sk)28(o-)]TJ -27.879 -13.549 Td[(cz)-1(y\\252)-272(ki)1(e)-1(b)28(y)-271(ry\\261)-272(do)-272(n)1(iej,)-272(u)1(j\\241\\252)-272(j)1(\\241)-272(w)-1(p)-27(\\363\\252)-272(i)-272(wic)28(hrem)-272(z)-1(akr)1(\\246)-1(ci\\252)-272(w)-272(m)-1(i)1(e)-1(j)1(s)-1(cu,)-272(a)-272(m)28(uzyk)56(an)28(tom)]TJ 0 -13.549 Td[(rzuci\\252:)]TJ 27.879 -13.549 Td[({)-333(Z)-334(maz)-1(u)1(rsk)56(a,)-334(c)28(h\\252op)-27(c)-1(y)84(,)-333(a)-334(k)1(rz)-1(epk)28(o!)]TJ 0 -13.549 Td[(Kr)1(z)-1(yk)1(n\\246li)-333(w)-334(in)1(s)-1(tr)1(ume)-1(n)29(t)27(y)-333(z)-333(c)-1(a\\252ej)-333(m)-1(o)-27(c)-1(y)84(,)-333(a\\273)-334(w)-334(izbi)1(e)-334(s)-1(i)1(\\246)-334(z)-1(ak)28(ot\\252o)28(w)28(a\\252o.)]TJ 0 -13.55 Td[(Boryn)1(a)-311(z)-1(a\\261)-311(ino)-311(mo)-28(cniej)-311(J)1(agn\\246)-312(u)1(j\\241\\252,)-311(p)-27(o\\252y)-311(n)1(a)-311(r\\246)-1(k)28(\\246)-311(zarz)-1(u)1(c)-1(i)1(\\252,)-311(p)-28(op)1(ra)28(wi\\252)-311(k)56(ap)-28(e-)]TJ -27.879 -13.549 Td[(lu)1(s)-1(za,)-333(trzas)-1(n)1(\\241\\252)-334(ob)-27(c)-1(asami)-334(i)-333(z)-333(m)-1(iejsca)-334(j)1(ak)-333(w)-1(i)1(c)27(her)-333(s)-1(i)1(\\246)-334(p)-28(ot)1(o)-28(c)-1(zy\\252!)]TJ\nET\nendstream\nendobj\n467 0 obj <<\n/Type /Page\n/Contents 468 0 R\n/Resources 466 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n466 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n471 0 obj <<\n/Length 9209      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(143)]TJ -330.353 -35.866 Td[(Hej!)-316(T)83(a\\253co)28(w)27(a\\252)-316(te\\273)-1(,)-316(ta\\253)1(c)-1(o)28(w)27(a\\252!)-316(A)-316(okr\\246c)-1(a\\252)-316(w)-317(miejsc)-1(u)1(,)-316(a)-317(za)28(wrac)-1(a\\252,)-316(a)-316(ho\\252u)1(b)-28(ce)]TJ -27.879 -13.549 Td[(bi)1(\\252,)-317(a\\273)-317(wi\\363r)1(y)-316(le)-1(cia\\252y)-316(z)-317(p)-27(o)-28(d\\252ogi,)-316(a)-316(p)-27(okrzykiw)28(a\\252,)-316(a)-317(Jagu)1(s)-1(i\\241)-316(miota\\252)-316(i)-317(za)28(w)-1(i)1(ja\\252,)-316(\\273)-1(e)-316(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-332(jeden)-332(k\\252\\241b)-332(zw)27(arl)1(i)-332(i)-332(jak)-332(to)-332(p)-27(e)-1(\\252ne)-332(wrz)-1(eciono)-332(p)-27(o)-333(i)1(z)-1(b)1(ie)-333(wili)-332({)-332(\\273e)-333(in)1(o)-333(wic)28(her)-332(s)-1(ze)-1(d)1(\\252)]TJ 0 -13.549 Td[(o)-28(d)-333(n)1(ic)27(h)-333(i)-333(mo)-28(c.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-333(rzn\\246\\252a)-334(siarczy\\261)-1(cie,)-333(z)-1(ap)1(am)-1(i\\246tale,)-333(z)-334(maz)-1(o)28(wie)-1(c)28(k)56(a...)]TJ 0 -13.55 Td[(Zbi)1(li)-390(si\\246)-390(w)-1(szys)-1(cy)-390(w)28(e)-390(drzwiac)27(h)1(,)-390(to)-390(p)-27(o)-390(k)56(\\241tac)27(h)1(,)-390(p)1(rzyc)-1(i)1(c)27(hl)1(i)-390(i)-390(ze)-390(z)-1(d)1(umieniem)]TJ -27.879 -13.549 Td[(p)-27(ogl\\241dal)1(i,)-242(a)-242(on)-242(n)1(ie)-1(zmordo)28(w)28(anie)-242(h)28(ul)1(a\\252)-243(i)-241(c)-1(oraz)-242(s)-1(i)1(arcz)-1(y\\261c)-1(i)1(e)-1(j)1(;)-242(ju)1(\\273)-243(si\\246)-243(n)1(iejedni)-241(w)-1(strzy-)]TJ 0 -13.549 Td[(ma\\242)-228(n)1(ie)-227(mogli,)-226(b)-28(o)-226(s)-1(ame)-227(nogi)-227(n)1(ies)-1(\\252y)84(,)-227(wi\\246c)-227(ino)-226(do)-227(tak)1(tu)-227(p)1(rzytup)29(yw)27(al)1(i,)-227(a)-226(c)-1(o)-226(gor\\246)-1(tszy)]TJ 0 -13.549 Td[(dziew)27(cz)-1(y)1(n\\246)-334(b)1(ra\\252)-333(i)-334(p)1(usz)-1(cza\\252)-334(si\\246)-334(w)-333(tan)28(y)83(,)-333(n)1(a)-334(n)1(ic)-334(j)1(u\\273)-334(n)1(ie)-334(b)1(ac)-1(z\\241c)-1(!)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia,)-344(c)27(h)1(o)-28(\\242)-345(mo)-28(cna)-344(b)28(y\\252a,)-344(ale)-345(r)1(yc)27(h)1(\\252o)-345(zm)-1(i)1(\\246)-1(k\\252a)-344(i)-344(j\\246\\252a)-345(m)28(u)-344(pr)1(z)-1(ez)-345(r\\246c)-1(e)-344(le)-1(cie\\242)-1(,)]TJ -27.879 -13.549 Td[(wte)-1(d)1(y)-333(dop)1(ie)-1(r)1(o)-334(p)1(rze)-1(sta\\252)-334(i)-333(o)-27(dpr)1(o)28(w)27(ad)1(z)-1(i\\252)-333(j\\241)-333(do)-333(k)28(omory)84(.)]TJ 27.879 -13.55 Td[({)-454(Kiedy\\261)-455(tak)1(i)-455(c)28(h)28(w)27(at)1(,)-455(b)1(ratem)-455(mi)-455(j)1(e)-1(ste\\261)-455(i)-455(p)1(rzy)-454(pierws)-1(zyc)27(h)-454(c)28(hr)1(z)-1(cinac)28(h)-454(w)]TJ -27.879 -13.549 Td[(ku)1(m)-1(otr)1(y)-333(m)-1(n)1(ie)-334(p)1(ro\\261)-1(!)-333({)-333(w)28(o\\252)-1(a\\252)-333(m\\252ynar)1(z)-334(bior)1(\\241c)-334(go)-333(w)-334(ramion)1(a.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(t)-404(s)-1(i\\246)-405(p)-27(obr)1(atali)-405(gor)1(\\241c)-1(o,)-404(b)-27(o)-405(m)27(u)1(z)-1(yk)56(a)-404(z)-1(araz)-405(zm)-1(i)1(lk\\252a)-405(i)-404(z)-1(acz)-1(\\241\\252)-404(s)-1(i\\246)-405(p)-27(o)-28(cz)-1(\\246-)]TJ -27.879 -13.549 Td[(stun)1(e)-1(k.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a,)-337(s)-1(yn)1(o)28(w)-1(i)1(e)-1(,)-337(k)28(o)28(w)27(al,)-337(Jagu)1(s)-1(t)28(yn)1(k)55(a)-337(u)28(wij)1(ali)-338(si\\246)-338(r)1(a\\271)-1(n)1(o)-338(z)-338(p)-27(e)-1(\\252n)28(y)1(m)-1(i)-337(bu)1(-)]TJ -27.879 -13.55 Td[(telk)56(am)-1(i)-268(i)-269(kielisz)-1(k)56(ami)-269(w)-269(gar\\261c)-1(i)1(ac)27(h,)-268(a)-269(do)-269(k)56(a\\273)-1(d)1(e)-1(go)-268(z)-270(osobn)1(a)-269(prze)-1(p)1(ij)1(ali.)-269(J\\363zia)-269(i)-268(kum)28(y)]TJ 0 -13.549 Td[(roznosi\\252y)-333(na)-333(pr)1(z)-1(etak)56(ac)27(h)-333(c)27(h)1(leb)-333(p)-28(ok)1(ra)-56(j)1(an)28(y)-333(i)-333(plac)28(ki.)]TJ 27.879 -13.549 Td[(W)84(rz)-1(a)28(w)28(a)-316(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a)-315(s)-1(i\\246)-316(coraz)-316(wi\\246ks)-1(za,)-316(b)-27(o)-316(k)56(a\\273den)-316(sw)27(o)-55(je)-316(g\\252o\\261no)-316(p)-27(o)28(w)-1(i)1(ada\\252,)-316(a)]TJ -27.879 -13.549 Td[(ws)-1(zysc)-1(y)-333(c)27(h)1(\\246)-1(tn)1(ie)-334(si\\246)-334(d)1(o)-334(k)1(ie)-1(l)1(is)-1(zk)28(\\363)28(w)-334(b)1(rali,)-333(b)29(yc)27(h)-333(w)28(e)-1(se)-1(l)1(a)-334(r)1(z)-1(ete)-1(l)1(nie)-334(za\\273y\\242)-1(.)]TJ 27.879 -13.549 Td[(Na)-373(\\252a)28(w)28(ac)27(h)-372(p)-28(o)-27(d)-373(ok)1(nem)-373(przysiad\\252)-372(m)-1(\\252yn)1(arz)-373(z)-373(Boryn)1(\\241,)-373(w)28(\\363)-56(j)1(t,)-373(or)1(ganista)-373(i)-372(c)-1(o)]TJ -27.879 -13.55 Td[(pi)1(e)-1(r)1(w)-1(si)-371(gosp)-28(o)-27(darze)-1(.)-370(Ju\\273)-371(tam)-371(niez)-1(gor)1(s)-1(za)-371(bu)1(te)-1(lk)56(a)-371(ar)1(aku)-371(kr)1(\\241\\273)-1(y)1(\\252)-1(a)-371(z)-371(r\\241k)-370(do)-371(r\\241k)1(,)-371(a)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(n\\241)-408(k)28(ole)-1(j)1(k)56(\\241;)-409(j)1(e)-1(sz)-1(cze)-409(im)-409(i)-408(piw)28(a)-409(d)1(onosili)-408({)-408(g\\246)-1(sto)-409(p)1(rze)-1(p)1(ijal)1(i,)-408(b)-28(o)-408(s)-1(i\\246)-408(ju\\273)-409(b)1(ra\\242)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zyn)1(ali)-333(w)-334(ramion)1(a)-334(i)-333(sielni)1(e)-334(kuma\\242!)]TJ 27.879 -13.549 Td[(I)-308(na)-307(iz)-1(b)1(ie)-308(dosy\\242)-309(sta\\252o)-308(n)1(aro)-28(d)1(u,)-308(p)-27(ozbij)1(ali)-308(si\\246)-308(w)-309(k)1(up)28(y)84(,)-308(j)1(ak)-308(k)28(om)27(u)-307(i)-308(z)-308(kim)-308(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(do)-333(u)1(p)-28(o)-28(d)1(ob)28(y)84(,)-334(p)-27(oredzali)-333(g\\252o\\261no)-333(i)-333(z)-1(ab)1(a)27(wiali)-333(si\\246)-334(n)1(iez)-1(gorzej)-333(kielisz)-1(k)56(ami.)]TJ 27.879 -13.55 Td[(A)-451(w)-451(k)28(om)-1(or)1(z)-1(e,)-451(o\\261)-1(wietlon)1(e)-1(j)-451(l)1(am)-1(p)1(\\241)-451(p)-28(o\\273ycz)-1(on)1(\\241)-452(o)-27(d)-451(organ)1(ist\\363)27(w,)-451(ze)-1(b)1(ra\\252y)-451(si\\246)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(yn)1(ie)-286(z)-286(or)1(gani\\261c)-1(i)1(n\\241)-285(i)-285(m)-1(\\252yn)1(arzo)28(w)27(\\241)-285(na)-285(cz)-1(ele)-1(,)-285(p)-27(o)-285(s)-1(k)1(rz)-1(y)1(niac)28(h,)-285(to)-285(\\252a)28(w)27(ac)27(h)-284(przy-)]TJ 0 -13.549 Td[(rzucon)28(yc)28(h)-463(w)27(e\\252niak)56(ami)-464(go)-27(dni)1(e)-464(s)-1(i\\246)-464(r)1(oz)-1(siad)1(\\252)-1(y)84(,)-463(m)-1(i)1(\\363)-28(d)-463(pr)1(z)-1(ez)-464(z)-1(\\246b)28(y)-463(c)-1(edzi\\252y)-463(i)-464(s\\252o)-28(dk)1(i)]TJ 0 -13.549 Td[(pl)1(ac)-1(ek)-371(delik)56(atn)1(ie)-372(p)1(alc)-1(ami)-371(p)-27(os)-1(k)1(ub)28(yw)28(a\\252y)83(,)-370(a)-372(z)-371(rzadk)56(a)-371(je\\261)-1(l)1(i)-371(kt\\363ra)-371(r)1(z)-1(u)1(c)-1(i\\252a)-371(to)-371(s\\252)-1(o)28(w)28(o)]TJ 0 -13.549 Td[(jak)1(ie)-1(:)-333(s\\252uc)27(h)1(a\\252y)-333(u)28(w)27(a\\273ni)1(e)-1(,)-333(co)-334(m\\252yn)1(arz)-1(o)28(w)28(a)-334(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\252a)-333(o)-334(d)1(z)-1(i)1(e)-1(ciac)27(h)-333(sw)27(oi)1(c)27(h.)]TJ 27.879 -13.55 Td[(Na)28(w)27(et)-353(w)-354(sie)-1(n)1(iac)27(h)-353(b)29(y\\252a)-354(ci\\273ba)-353(i)-353(jes)-1(zc)-1(ze)-354(n)1(a)-354(d)1(rug\\241)-353(stron)1(\\246)-354(s)-1(i\\246)-353(c)-1(isn\\246li,)-353(a\\273)-353(Ew-)]TJ -27.879 -13.549 Td[(k)56(a)-386(wygan)1(ia\\252a,)-386(b)-27(o)-386(szyk)28(o)28(w)27(ali)-385(pi)1(lnie)-386(d)1(o)-386(wiec)-1(zerz)-1(y)84(,)-385(o)-28(d)-385(kt\\363rej)-385(ju)1(\\273)-386(p)-28(o)-385(c)-1(a\\252ym)-385(dom)27(u)]TJ 0 -13.549 Td[(zapac)27(h)29(y)-334(sz\\252)-1(y)-333(sm)-1(ak)28(o)28(wite,)-333(\\273)-1(e)-333(niejedn)1(e)-1(m)28(u)-333(w)-334(n)1(oz)-1(d)1(rz)-1(ac)28(h)-333(wie)-1(r)1(c)-1(i)1(\\252)-1(o.)]TJ 27.879 -13.549 Td[(M\\252o)-28(d)1(z)-1(i)1(e)-1(\\273)-269(wys)-1(y)1(pa\\252a)-269(si\\246)-270(p)1(rze)-1(d)-268(dom)-269(w)-269(op\\252otk)1(i)-269(i)-269(n)1(a)-269(pr)1(z)-1(yzb)28(y;)-268(no)-28(c)-269(b)28(y\\252a)-269(zimna,)]TJ -27.879 -13.549 Td[(cic)27(h)1(a)-386(a)-386(orosz)-1(on)1(a)-386(gwiazdami,)-386(to)-385(s)-1(i\\246)-386(p)1(rz)-1(ec)27(h)1(adzali)-386(i)-385(ba)28(wili)-385(w)27(es)-1(o\\252o,)-385(a\\273)-387(si\\246)-386(trz\\246)-1(s\\252o)]TJ 0 -13.549 Td[(o)-28(d)-346(\\261mie)-1(c)28(h\\363)28(w,)-346(w)-1(r)1(z)-1(ask)28(\\363)28(w)-347(i)-346(bi)1(e)-1(ga\\253)1(,)-346(b)-28(o)-346(ni)1(e)-1(j)1(e)-1(d)1(ni)-346(p)-27(o)-347(sadzie)-347(si\\246)-347(u)1(ganial)1(i)-346(z)-1(a)-346(s)-1(ob)1(\\241,)-346(\\273)-1(e)]TJ 0 -13.55 Td[(starsi)-334(k)1(rzyk)55(al)1(i)-333(im)-334(z)-334(ok)1(ie)-1(n)1(:)]TJ 27.879 -13.549 Td[({)-385(Kwiatuszk)28(\\363)27(w)-385(s)-1(zuk)56(acie)-1(?)-385(By\\261)-1(cie,)-385(dzie)-1(w)28(c)-1(zyn)28(y)84(,)-385(c)-1(zego)-386(i)1(nnego)-385(nie)-385(p)-28(ogu)1(bi\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)-334(n)1(o)-28(cy!)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(a\\252)-334(to)-333(ic)27(h)-332(kto?)]TJ 0 -13.549 Td[(Za\\261)-286(p)-28(o)-286(p)1(ierws)-1(ze)-1(j)-285(izbie)-286(Jagu)1(s)-1(ia)-286(i)-285(Nas)-1(tk)56(a)-286(G)1(o\\252)-1(\\246bi)1(ank)56(a)-286(c)27(h)1(o)-28(dzi\\252y)84(,)-286(trzyma\\252y)-286(si\\246)]TJ -27.879 -13.55 Td[(wp)-28(\\363\\252)-268(i)-268(ci\\246)-1(gi)1(e)-1(m)-268(bu)1(c)27(ha\\252y)-268(\\261m)-1(i)1(e)-1(c)28(hem)-269(,)-268(i)-268(co\\261)-269(sobie)-268(na)-268(uc)28(ho)-268(op)-27(o)27(wiad)1(a\\252y)-268({)-268(nagl\\241d)1(a\\252)-269(za)]TJ 0 -13.549 Td[(ni)1(m)-1(i)-308(Szyme)-1(k,)-308(stars)-1(zy)-308(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j,)-308(z)-309(Nas)-1(tk)1(i)-309(o)-28(cz\\363)27(w)-309(n)1(ie)-309(s)-1(p)1(usz)-1(cza)-1(\\252,)-308(a)-309(co)-309(tro)-27(c)27(h\\246)-309(z)]TJ\nET\nendstream\nendobj\n470 0 obj <<\n/Type /Page\n/Contents 471 0 R\n/Resources 469 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n469 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n474 0 obj <<\n/Length 8851      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(144)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)28(\\363)-28(dk)56(\\241)-333(do)-333(niej)-333(p)-27(o)-28(dc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(,)-333(z\\246)-1(b)29(y)-333(s)-1(zc)-1(ze)-1(r)1(z)-1(y\\252)-333(i)-333(z)-1(agad)1(yw)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-299(wystro)-55(jon)28(y)-298(o)-28(d)1(\\261)-1(wi\\246tni)1(e)-1(,)-298(w)-299(cz)-1(ar)1(nej)-299(k)56(ap)-27(o)-28(cie)-299(i)-298(w)-299(p)-27(ortk)56(ac)27(h)-298(na)-298(c)27(h)1(ole)-1(wy)]TJ -27.879 -13.549 Td[(wy\\252o\\273)-1(on)29(yc)27(h)1(,)-415(u)28(wija\\252)-415(si\\246)-415(na)-55(jra\\271ni)1(e)-1(j)1(,)-415(ws)-1(z\\246)-1(d)1(z)-1(ie)-415(b)28(y\\252,)-415(ze)-415(w)-1(sz)-1(y)1(s)-1(tki)1(m)-1(i)-414(pi\\252,)-415(zapr)1(as)-1(za\\252,)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)28(w)28(a\\252,)-393(ra)-55(jco)28(w)27(a\\252)-393(i)-392(zw)-1(i)1(ja\\252)-393(si\\246)-1(,)-392(\\273e)-393(c)-1(oraz)-393(to)-392(w)-393(inn)1(e)-1(j)-392(stron)1(ie)-393(widn)1(ia\\252)-393(j)1(e)-1(go)-393(r)1(ud)1(y)]TJ 0 -13.549 Td[(\\252e)-1(b)-332(i)-334(p)1(iego)27(w)28(ata)-333(t)28(w)27(arz.)]TJ 27.879 -13.55 Td[(M\\252o)-28(d)1(z)-1(i)-294(prze)-1(t)1(a\\253co)27(w)28(ali)-295(p)1(ar\\246)-295(raz)-1(y)84(,)-295(ale)-295(kr\\363tk)28(o)-295(i)-294(b)-28(ez)-296(wielki)1(e)-1(j)-295(o)-27(c)27(hot)28(y)84(,)-295(b)-27(o)-295(s)-1(i\\246)-295(z)-1(a)]TJ -27.879 -13.549 Td[(wiec)-1(ze)-1(r)1(z)-1(\\241)-333(ogl\\241dal)1(i.)]TJ 27.879 -13.549 Td[(St)1(ars)-1(i)-330(za\\261)-332(p)-27(orad)1(z)-1(al)1(i,)-331(w)28(\\363)-56(j)1(t,)-331(\\273e)-331(b)28(y\\252)-331(j)1(u\\273)-331(nap)1(it)28(y)84(,)-331(coraz)-331(g\\252o\\261)-1(n)1(ie)-1(j)-330(m\\363)28(w)-1(i)1(\\252)-1(,)-330(wypu)1(-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252)-333(s)-1(i\\246,)-333(pi)1(\\246)-1(\\261c)-1(i\\241)-333(w)-333(s)-1(t\\363\\252)-333(w)27(ali)1(\\252)-334(i)-333(n)1(ak)55(azyw)28(a\\252:)]TJ 27.879 -13.549 Td[({)-274(W)83(\\363)-55(jt)-274(w)27(ama)-275(t)1(o)-275(m\\363)27(wi,)-274(to)-274(wie)-1(r)1(z)-1(cie.)-275(Ur)1(z)-1(\\246dn)1(ik)-274(jes)-1(tem,)-275(p)1(apier)-274(do)-274(m)-1(n)1(ie)-275(p)1(rzy-)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252)-333(z)-334(nak)56(aze)-1(m,)-333(b)28(y)-333(gromad\\246)-334(zw)28(o\\252)-1(a\\242)-333(i)-333(z)-334(m)-1(or)1(gi)-333(gros)-1(z)-333(jaki)-333(n)1(a)-334(sz)-1(k)28(o\\252\\246)-333(uc)27(h)29(w)27(ali)1(\\242)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-297(Wy)-297(sobie,)-297(Pi)1(e)-1(tr)1(z)-1(e,)-297(uc)28(h)28(w)27(al)1(c)-1(ie)-297(i)-297(p)-28(o)-297(d)1(z)-1(i)1(e)-1(si\\241tku)-297(z)-297(m)-1(or)1(gi,)-297(a)-297(m)27(y)-297(i)-296(te)-1(go)-297(grosz)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-334(dam)28(y!)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(am)27(y!)-333({)-333(h)28(uk)1(n\\241\\252)-333(kt\\363ry\\261.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(c)27(ho,)-333(tr)1(z)-1(eba,)-333(ki)1(e)-1(j)-333(u)1(rz\\246)-1(d)1(o)27(w)28(a)-333(os)-1(ob)1(a)-334(p)-27(o)28(w)-1(i)1(ada..)1(.)]TJ 0 -13.549 Td[({)-333(Szk)28(o\\252y)-334(n)1(am)-334(tak)1(ie)-1(j)-333(n)1(ie)-334(p)-27(otrze)-1(b)1(a!)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(Boryn)1(a)]TJ 0 -13.55 Td[({)-333(A)-334(n)1(ie)-334(p)-27(otrze)-1(b)1(a!)-333({)-334(p)-27(o)28(wt\\363rzyli)-333(in)1(ni)-333(c)27(h)1(\\363rem)-1(.)]TJ 0 -13.549 Td[({)-330(Cie)-1(..)1(.)-330(w)-331(W)84(oli)-330(s)-1(zk)28(o\\252a)-330(jes)-1(t,)-330(b)-27(e)-1(z)-330(trzy)-330(z)-1(im)28(y)-330(m)-1(o)-55(je)-331(d)1(z)-1(i)1(e)-1(ci)-330(c)27(ho)-27(dzi\\252y)-330(i)-330(c)-1(o?...)-330(T)83(o)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-333(n)1(a)-334(ksi\\241\\273c)-1(e)-333(te)-1(go)-333(pacierz)-1(a)-333(rozebra\\242)-333(nie)-334(p)-27(otra\\014)1(\\241...)-333(n)1(a)-334(p)1(s)-1(a)-333(tak)56(a)-333(nauk)56(a!)]TJ 27.879 -13.549 Td[({)-314(Matki)-314(n)1(iec)27(ha)-55(j)-314(pacierza)-315(u)1(c)-1(z\\241,)-314(s)-1(zk)28(o\\252a)-315(n)1(ie)-315(o)-27(d)-314(te)-1(go,)-314(j)1(a,)-314(w)27(\\363)-55(jt,)-314(w)28(ama)-315(m\\363)28(w)-1(i)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ib)28(y)-333(o)-28(d)-333(cze)-1(go?)-333({)-334(wrzas)-1(n)1(\\241\\252)-334(ten)-333(z)-334(W)84(oli)-333(p)-27(o)-28(dr)1(yw)27(a)-55(j\\241c)-334(si\\246)-334(z)-333(\\252a)27(wy)84(.)]TJ 0 -13.55 Td[({)-424(Ja,)-423(w)27(\\363)-55(jt,)-424(w)28(ama)-424(rze)-1(kn)1(\\246)-1(,)-423(ino)-424(p)1(iln)1(ie)-424(s)-1(\\252uc)28(ha)-55(jcie)-1(.)1(..)-424(zaraz,)-424(p)-27(o)-424(pierwsz)-1(e...)-424({)]TJ -27.879 -13.549 Td[(ale)-346(ni)1(e)-347(wywi\\363)-27(d\\252)-346(d)1(o)-346(k)28(o\\253ca,)-346(b)-27(o)-346(S)1(z)-1(ymon)-345(na)-346(ca\\252y)-346(st\\363\\252)-346(wykr)1(z)-1(yk)1(iw)27(a\\252,)-345(\\273)-1(e)-346(j)1(u\\273)-346(te)-1(n)-345(las)]TJ 0 -13.549 Td[(sprze)-1(d)1(an)28(y)-333(\\233yd)1(y)-334(o)-27(c)-1(ec)27(ho)28(w)28(a\\252y)-333(i)-334(r)1(\\241ba\\242)-334(wn)1(e)-1(t)-333(b)-27(\\246)-1(d)1(\\241,)-334(cze)-1(k)56(a)-56(j)1(\\241)-334(j)1(e)-1(n)1(o)-333(m)-1(r)1(oz)-1(\\363)28(w)-334(i)-333(sann)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(c)-1(ec)27(h)29(uj\\241,)-333(n)1(a)-334(wyci\\246c)-1(ie)-333(p)-28(o)-27(c)-1(ze)-1(k)56(a)-56(j)1(\\241...)-333({)-333(wtr\\241ci\\252)-334(Bory)1(na.)]TJ 0 -13.549 Td[({)-333(Do)-334(k)28(omisarza)-334(ze)-334(sk)56(a)-1(r)1(g\\241)-334(p)-27(\\363)-55(jdziem)27(y)84(.)]TJ 0 -13.55 Td[({)-336(Nie)-337(to,)-336(k)28(omisarz)-337(za)28(w)-1(sze)-337(z)-337(d)1(z)-1(iedzice)-1(m)-336(trzym)-1(a,)-336(a)-336(gromad\\241)-336(i\\261\\242,)-337(r)1(\\246)-1(b)1(ac)-1(z\\363)28(w)]TJ -27.879 -13.549 Td[(rozp)-27(\\246)-1(d)1(z)-1(i\\242.)]TJ 27.879 -13.549 Td[({)-333(Ani)-333(jedn)1(e)-1(go)-333(c)27(h)1(o)-56(j)1(ak)55(a)-333(\\261c)-1(i\\241\\242)-333(nie)-333(p)-28(ozw)27(ol)1(i\\242)-1(!)]TJ 0 -13.549 Td[({)-333(Sk)56(arg\\246)-334(d)1(o)-333(s)-1(\\241d)1(u)-333(p)-28(o)-27(da\\242)-1(!)]TJ 0 -13.549 Td[({)-464(Pi)1(jcie)-465(d)1(o)-464(m)-1(n)1(ie,)-464(Macie)-1(j)1(u,)-464(n)1(ie)-464(p)-28(or)1(a)-464(te)-1(r)1(az)-465(ur)1(adza\\242)-1(!)-464(P)29(o)-464(pij)1(anem)27(u)-463(\\252)-1(acno)]TJ -27.879 -13.55 Td[(wygra\\273a\\242)-377(c)28(ho)-28(\\242b)28(y)-376(i)-376(P)29(an)28(u)-376(Bogu!)-376({)-376(za)28(w)27(o\\252a\\252)-376(m\\252)-1(y)1(narz)-376(nal)1(e)-1(w)28(a)-56(j)1(\\241c)-1(.)-376(Nie)-376(w)-376(s)-1(mak)-376(m)27(u)]TJ 0 -13.549 Td[(sz)-1(\\252y)-309(te)-310(rozmo)27(wy)-309(i)-309(o)-28(d)1(gra\\273)-1(an)1(ia,)-309(b)-27(o)-310(si\\246)-310(z)-310(\\233yd)1(am)-1(i)-309(b)29(y\\252)-310(u)1(go)-28(dzi\\252)-309(i)-310(mia\\252)-309(im)-310(d)1(rze)-1(w)28(o)-310(n)1(a)]TJ 0 -13.549 Td[(sw)27(oim)-333(tartaku)-333(p)1(rzy)-333(m)-1(\\252yn)1(ie)-334(r)1(z)-1(n)1(\\241\\242)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-421(i)-420(z)-421(miejsc)-421(s)-1(i\\246)-421(p)-27(o)-28(d)1(nie\\261li,)-420(b)-28(o)-420(ju)1(\\273)-421(z)-1(acz)-1(\\246li)-420(s)-1(zyk)28(o)28(w)27(a\\242)-420(do)-421(wiecz)-1(erzy)-421(i)]TJ -27.879 -13.549 Td[(ws)-1(ze)-1(l)1(ki)-333(s)-1(p)1(rz\\246)-1(t)-333(p)-27(otrze)-1(b)1(n)28(y)-333(z)-1(n)1(os)-1(i\\242)-333(na)-333(s)-1(to\\252y)-333(i)-333(u)1(s)-1(ta)28(wia\\242)-1(.)]TJ 27.879 -13.549 Td[(Ale)-223(gos)-1(p)-27(o)-28(d)1(a)-1(r)1(z)-1(e)-223(nie)-223(z)-1(an)1(iec)27(hal)1(i)-223(las)-1(u)1(,)-223(jak)1(\\273)-1(e,)-223(b)-28(ol)1(\\241c)-1(zk)56(a)-224(t)1(o)-224(b)29(y\\252a)-223(piek)56(\\241c)-1(a,)-223(wi\\246c)-224(si\\246)]TJ -27.879 -13.55 Td[(st\\252o)-28(c)-1(zyli)-334(w)-335(k)1(up)-27(\\246)-335(i)-335(p)1(rzyc)-1(i)1(s)-1(zyws)-1(zy)-334(g\\252)-1(osy)-334(przed)-334(m)-1(\\252yn)1(arze)-1(m)-335(r)1(adzili)-334(i)-334(uma)27(wial)1(i)-335(si\\246,)]TJ 0 -13.549 Td[(b)28(y)-283(do)-283(Boryn)28(y)-283(si\\246)-284(z)-1(ej\\261\\242)-284(i)-283(c)-1(o\\261)-283(p)-28(ostano)28(wi\\242...)-283(ale)-284(ni)1(e)-284(s)-1(k)28(o\\253)1(c)-1(zyli)1(,)-284(b)-27(o)-284(wsz)-1(ed\\252)-283(Jam)27(b)1(ro\\273y)]TJ 0 -13.549 Td[(i)-350(p)1(ros)-1(t)1(o)-351(d)1(o)-350(nic)28(h)-350(pr)1(z)-1(ysta\\252.)-350(S)1(p)-28(\\363\\271ni\\252)-350(si\\246)-1(,)-349(z)-351(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(m)-350(do)-350(c)27(h)1(orego)-351(j)1(e)-1(\\271dzi\\252)-350(a\\273)-351(n)1(a)]TJ 0 -13.549 Td[(trzec)-1(i\\241)-393(wie\\261)-1(,)-393(d)1(o)-394(K)1(rosno)28(wy)83(,)-393(to)-393(teraz)-394(ostro)-393(wz)-1(i)1(\\241\\252)-394(si\\246)-394(d)1(o)-393(picia,)-393(ab)28(y)-393(d)1(ogoni\\242...)1(nie)]TJ 0 -13.549 Td[(zd\\241\\273y\\252)-334(j)1(e)-1(d)1(nak,)-333(b)-27(o)-333(ju\\273)-333(s)-1(tar)1(s)-1(ze)-334(k)28(obi)1(e)-1(t)28(y)-333(za\\261)-1(p)1(ie)-1(w)28(a\\252y)-333(c)27(h\\363r)1(e)-1(m:)]TJ 27.879 -13.55 Td[(A)-333(dok)28(o\\252a,)-333(dr)1(u\\273b)-28(ec)-1(zk)28(o)28(w)-1(i)1(e)-1(,)-333(d)1(ok)28(o\\252)-1(a;)-333(Zap)1(rasz)-1(a)-55(jcie)-334(dob)1(ryc)28(h)-333(lud)1(z)-1(i)-333(d)1(o)-334(sto\\252a!)]TJ 0 -13.549 Td[(A)-333(na)-333(to,)-333(ru)1(m)-1(or)-333(cz)-1(yn)1(i\\241c)-334(\\252a)28(w)28(am)-1(i,)-333(o)-27(dkr)1(z)-1(yk)1(li)-333(dru)1(\\273)-1(b)-27(o)28(wie)-1(:)]TJ\nET\nendstream\nendobj\n473 0 obj <<\n/Type /Page\n/Contents 474 0 R\n/Resources 472 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 459 0 R\n>> endobj\n472 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n477 0 obj <<\n/Length 8741      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(145)]TJ -330.353 -35.866 Td[(A)-333(dy\\242)-333(m)27(y)-333(ju)1(\\273)-334(p)-27(oprosili)-333({)-333(ju)1(\\273)-334(sie)-1(d)1(z)-1(\\241.)-333(Da)-55(jcie)-334(in)1(o)-334(co)-333(dob)1(re)-1(go)-333({)-333(to)-333(z)-1(j)1(e)-1(d)1(z)-1(\\241!)]TJ 0 -13.549 Td[(I)-333(z)-334(w)27(ol)1(na)-333(z)-1(acz)-1(\\246li)-333(z)-1(a)-333(sto\\252y)-333(i\\261)-1(\\242,)-333(a)-334(u)1(s)-1(ad)1(z)-1(a\\242)-333(s)-1(i\\246)-333(na)-333(\\252a)27(w)28(ac)27(h)1(.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-348(\\273e)-349(na)-348(p)1(ierws)-1(zym)-348(m)-1(i)1(e)-1(j)1(s)-1(cu)-348(pa\\253)1(s)-1(t)28(w)28(o)-348(m)-1(\\252o)-27(dzi,)-348(a)-348(w)-348(p)-28(o)-28(d)1(le)-348(nic)28(h)-348(ze)-349(stron)]TJ -27.879 -13.549 Td[(obu)-370(co)-371(n)1(a)-56(j)1(pierwsi,)-371(p)-27(o)-370(u)28(w)27(a\\273ani)1(u,)-370(p)-28(o)-370(ma)-56(j\\241tk)1(u,)-370(p)-27(o)-371(starsz)-1(e\\253st)28(w)-1(i)1(e)-371(a\\273)-371(do)-371(d)1(ru)1(hen)-370(i)]TJ 0 -13.549 Td[(dziec)-1(i)-333({)-333(a)-333(le)-1(d)1(w)-1(i)1(e)-334(s)-1(i)1(\\246)-334(p)-27(om)-1(ie\\261c)-1(il)1(i,)-333(c)27(ho)-27(\\242)-334(s)-1(t)1(o\\252)-1(y)-333(u)1(s)-1(ta)28(wili)-333(wzd\\252u\\273)-333(trze)-1(c)27(h)-332(\\261)-1(cian.)]TJ 27.879 -13.55 Td[(T)28(ylk)28(o)-333(dru)1(\\273)-1(b)-27(o)28(wie)-334(ni)1(e)-334(s)-1(i)1(e)-1(d)1(li,)-333(b)28(y)-333(p)-27(os)-1(\\252u)1(gi)-333(c)-1(zyni\\242,)-333(i)-333(m)27(u)1(z)-1(yk)56(an)1(c)-1(i.)]TJ 0 -13.549 Td[(Gw)28(ar)-266(p)1(rzyc)-1(i)1(c)27(h\\252,)-265(organi)1(s)-1(ta)-266(sto)-56(j)1(\\241c)-1(y)-265(o)-28(dma)28(wia\\252)-266(w)-266(g\\252os)-267(mo)-28(d)1(lit)28(w)28(\\246)-267({)-266(j)1(e)-1(n)1(o)-266(k)28(o)28(w)27(al)]TJ -27.879 -13.549 Td[(p)-27(o)27(wtar)1(z)-1(a\\252)-360(za)-360(n)1(im)-1(,)-359(b)-27(o)-360(p)-28(on)1(o)-360(n)1(a)-360(\\252ac)-1(in)1(ie)-360(s)-1(i)1(\\246)-360(roz)-1(u)1(m)-1(i)1(a\\252,)-360(a)-360(p)-27(otem)-360(prze)-1(p)1(ijal)1(i)-360(p)-27(o)-360(t)28(ym)]TJ 0 -13.549 Td[(kielisze)-1(cz)-1(ku)-333(n)1(a)-333(z)-1(d)1(ro)28(w)-1(i)1(e)-334(i)-333(dob)1(ry)-333(s)-1(mak.)]TJ 27.879 -13.549 Td[(Ku)1(c)27(har)1(ki)-492(wraz)-493(z)-492(dr)1(u\\273bami)-492(wnosi\\242)-493(p)-27(o)-28(cz)-1(\\246\\252y)-492(dymi\\241ce)-493(ogromne)-492(don)1(ic)-1(e)-492(z)]TJ -27.879 -13.549 Td[(jad)1(\\252e)-1(m)-333(i)-333(przy\\261piewyw)27(a\\252y:)]TJ 27.879 -13.55 Td[(Nies)-1(i)1(e)-1(m)-334(r)1(os)-1(\\363\\252)-333(z)-334(ry)1(\\273)-1(em)-1(-)-333(A)-334(w)-333(nim)-333(kur)1(\\246)-334(z)-334(p)1(ie)-1(r)1(z)-1(em!)]TJ 0 -13.549 Td[(A)-333(przy)-333(dr)1(ugiej)-333(p)-27(otra)28(wie)-1(:)]TJ 0 -13.549 Td[(Op)1(ie)-1(p)1(rzone)-334(s\\252one)-334(\\015)1(aki,)-333(Jedz\\273)-1(e,)-333(s)-1(i)1(aki)-333(taki!)]TJ 0 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-258(z)-1(a\\261)-259(zas)-1(i)1(ad\\252a)-258(p)-28(o)-28(d)-258(k)28(omin)1(e)-1(m)-259(i)-258(pr)1(z)-1(y)1(gryw)28(a\\252a)-259(z)-259(cic)27(h)1(a)-259(p)1(ios)-1(n)1(e)-1(cz)-1(k)1(i)-259(r)1(\\363\\273)-1(n)1(e)-1(,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-333(s)-1(i)1(\\246)-334(s)-1(macz)-1(n)1(ie)-1(j)-333(j)1(ad\\252o.)]TJ 27.879 -13.55 Td[(P)28(o)-55(jad)1(ali)-386(te\\273)-387(p)1(rz)-1(y)1(s)-1(to)-55(jn)1(ie)-1(,)-385(w)27(oln)1(o,)-386(w)-386(m)-1(i)1(lc)-1(zeniu)-385(pra)28(wie,)-386(b)-27(o)-386(m)-1(a\\252o)-386(kto)-386(r)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(jak)1(ie)-346(s)-1(\\252o)28(w)27(o,)-345(\\273)-1(e)-346(in)1(o)-346(m)-1(l)1(as)-1(k)56(ani)1(e)-347(a)-346(skrzyb)-27(ot)-346(\\252y\\273e)-1(k)-345(z)-1(ap)-27(e)-1(\\252n)1(ia\\252y)-346(izb)-27(\\246)-1(,)-345(a)-346(gdy)-346(sobi)1(e)-347(j)1(u\\273)]TJ 0 -13.549 Td[(ni)1(e)-1(co)-422(p)-27(o)-28(dj)1(e)-1(d)1(li)-422(i)-421(g\\252)-1(\\363)-27(d)-422(p)1(ie)-1(r)1(w)-1(szy)-422(z)-1(asycili,)-421(k)28(o)28(w)27(al)-422(zno)28(wu)-421(\\015asz)-1(k)28(\\246)-422(pu)1(\\261)-1(ci\\252)-422(w)-422(k)28(olejk)28(\\246,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(cz)-1(y)1(m)-334(ju)1(\\273)-334(i)-333(p)-28(o)-27(c)-1(zynal)1(i)-333(pra)28(wi\\242)-334(z)-333(c)-1(ic)28(ha,)-333(i)-333(pr)1(z)-1(em)-1(a)28(wia\\242)-334(d)1(o)-334(si\\246)-334(p)1(rze)-1(z)-333(s)-1(to\\252y)84(.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-331(jedn)1(a)-332(jak)1(b)28(y)-332(n)1(ic)-332(ni)1(e)-332(jad\\252a,)-331(pr)1(\\363\\273)-1(n)1(o)-332(j\\241)-331(B)-1(or)1(yna)-331(niew)28(oli\\252,)-331(w)-1(p)-27(\\363\\252)-332(b)1(ra\\252)-332(i)]TJ -27.879 -13.55 Td[(jak)-288(to)-288(d)1(z)-1(iec)-1(i)1(\\241tk)28(o)-289(p)1(rosi\\252,)-288(c)-1(\\363\\273,)-288(kiedy)-288(n)1(a)27(w)28(et)-289(mi\\246s)-1(a)-288(pr)1(z)-1(e\\252kn\\241\\242)-288(nie)-288(m)-1(og\\252a,)-288(u)1(trud)1(z)-1(on)1(a)]TJ 0 -13.549 Td[(b)28(y\\252a)-362(wie)-1(l)1(c)-1(e)-363(i)-362(rozgrzana)-362({)-363(t)28(y)1(le)-363(\\273)-1(e)-362(to)-363(p)1(iw)27(o)-362(zim)-1(n)1(e)-363(p)-27(opij)1(a\\252a,)-363(a)-362(o)-28(cz)-1(ami)-362(w)27(o)-27(dzi\\252a)-363(p)-27(o)]TJ 0 -13.549 Td[(izbie)-333(i)-333(c)-1(o\\261)-334(n)1(ie)-1(co\\261)-334(n)1(as)-1(\\252u)1(c)27(hi)1(w)27(a\\252a)-333(B)-1(or)1(yno)28(wyc)27(h)-333(sze)-1(p)1(t\\363)27(w.)]TJ 27.879 -13.549 Td[({)-236(Jagu)1(\\261)-1(,)-235(kun)29(te)-1(n)28(t)1(na)-236(j)1(e)-1(ste)-1(\\261,)-236(co?)-236(\\221l)1(ic)-1(zno\\261c)-1(i)-235(t)28(y)-236(mo)-56(j)1(e)-1(!)-235(Jagu\\261,)-236(n)1(ie)-236(b)-28(\\363)-55(j)-236(si\\246,)-236(d)1(obrze)]TJ -27.879 -13.549 Td[(ci)-231(u)-230(mni)1(e)-231(b)-28(\\246dzie,)-231(j)1(ak)-231(i)-230(u)-230(matul)1(i)-231(n)1(ie)-231(b)28(y\\252o)-230(lepiej..)1(.)-231(P)29(ani\\241)-230(s)-1(e)-231(b)-27(\\246dzie)-1(sz,)-231(Jagu)1(\\261)-1(,)-230(pan)1(i\\241..)1(.)]TJ 0 -13.55 Td[(dziewk)28(\\246)-334(c)-1(i)-333(p)1(rz)-1(y)1(na)-55(jm\\246)-1(,)-333(b)28(y)1(\\261)-334(s)-1(i)1(\\246)-334(z)-1(b)29(ytni)1(o)-334(n)1(ie)-334(ut)1(rud)1(z)-1(a\\252a..)1(.)-333(obacz)-1(ysz)-1(!)1(...)]TJ 27.879 -13.549 Td[(p)-27(ogadyw)28(a\\252)-316(z)-315(c)-1(ic)28(ha,)-315(a)-315(w)-316(o)-28(czy)-315(m)-1(i\\252o\\261nie)-315(patr)1(z)-1(y\\252,)-315(n)1(a)-316(l)1(udzi)-315(ju)1(\\273)-316(ni)1(e)-316(bacz)-1(\\241c,)-315(a\\273)]TJ -27.879 -13.549 Td[(si\\246)-334(w)-334(g\\252os)-333(prze)-1(k)1(piw)28(ali)-333(z)-334(n)1(ie)-1(go.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(te)-1(n)-333(k)28(ot)-333(d)1(o)-334(sp)-28(erk)1(i)-334(si\\246)-334(d)1(obi)1(e)-1(ra.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(te)-1(\\273)-333(s)-1(p)1(a\\261)-1(na,)-333(k)1(ie)-1(j)-333(t)1(a)-334(lepa!)]TJ 0 -13.55 Td[(St)1(ary)-333(kr\\246c)-1(i)-333(si\\246)-334(i)-333(n)1(ogam)-1(i)-333(p)1(rz)-1(ebi)1(e)-1(r)1(a,)-334(n)1(icz)-1(ym)-333(te)-1(n)-333(k)28(ogu)1(t!)]TJ 0 -13.549 Td[({)-333(U\\273)-1(yj)1(e)-334(se)-334(ju)1(c)27(h)1(a)-334(stary)84(,)-333(u\\273yje!)-333({)-334(w)28(o\\252a\\252)-334(w)28(\\363)-56(j)1(t.)]TJ 0 -13.549 Td[({)-333(Jak)-333(te)-1(n)-333(p)1(ies)-334(na)-333(mroz)-1(i)1(e)-334({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(zgry\\271liwie)-334(stary)-333(S)1(z)-1(y)1(m)-1(on)1(.)]TJ 0 -13.549 Td[(Gr)1(uc)27(h)1(n\\246li)-279(\\261mie)-1(c)28(hem)-1(,)-278(a)-279(m\\252ynarz)-279(a\\273)-279(s)-1(i)1(\\246)-280(p)-27(ok\\252ad)1(a\\252)-279(na)-279(stole)-279(i)-279(p)1(i\\246\\261)-1(ci\\241)-279(grzmo)-28(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(z)-334(u)1(c)-1(iec)27(h)29(y)83(.)]TJ 27.879 -13.549 Td[(Ku)1(c)27(har)1(ki)-333(z)-1(n)1(o)28(w)-1(u)-333(za\\261piew)27(a\\252y:)]TJ 0 -13.55 Td[(Nies)-1(i)1(e)-1(m)-334(miski)-333(t\\252ustej)-333(jag\\252y)84(,)-334(By)-333(se)-334(c)27(h)28(u)1(dzielc)-1(e)-334(p)-27(o)-28(d)1(jad)1(\\252y!)]TJ 0 -13.549 Td[({)-332(Jagno,)-332(pr)1(z)-1(yc)28(h)28(yl)-332(no)-332(s)-1(i)1(\\246)-1(,)-332(to)-332(c)-1(i)-332(c)-1(o\\261)-333(r)1(z)-1(ekn)1(\\246)-1(!)-332({)-333(m\\363)28(wi\\252)-333(w)28(\\363)-56(j)1(t,)-332(prze)-1(c)28(h)28(yli)1(\\252)-333(si\\246)-333(z)-1(a)]TJ -27.879 -13.549 Td[(Boryn)1(\\241,)-395(b)-28(o)-395(tu)1(\\273)-396(p)1(rzy)-395(nim)-395(sie)-1(d)1(z)-1(i)1(a\\252)-1(,)-394(i)-395(uskub)1(n\\241\\252)-395(j)1(\\241)-396(w)-395(b)-27(ok)-395({)-395(a)-395(to)-395(m)-1(\\246)-395(na)-395(c)28(hrze)-1(st-)]TJ 0 -13.549 Td[(nego)-340(p)1(ro\\261)-1(!)1({)-340(z)-1(a)28(w)28(o\\252)-1(a\\252)-340(ze)-340(\\261)-1(miec)27(hem)-340(i)-340(\\252ak)28(om)27(y)1(m)-1(i)-339(o)-28(c)-1(zami)-340(p)-27(o)-340(niej)-339(w)27(o)-28(d)1(z)-1(i)1(\\252)-1(,)-339(b)-28(o)-339(m)27(u)-339(s)-1(i\\246)]TJ 0 -13.549 Td[(strasz)-1(n)1(ie)-334(ud)1(a\\252a.)]TJ 27.879 -13.55 Td[(P)28(o)-28(cze)-1(rwieni)1(a\\252a)-295(mo)-28(c)-1(n)1(o,)-295(a)-294(k)28(obiet)28(y)-295(n)1(a)-295(to)-294(bu)1(c)27(hn)1(\\246)-1(\\252y)-294(\\261)-1(miec)27(h)1(e)-1(m)-295(i)-294(dalej\\273e)-295(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(kp)1(iw)27(a\\242,)-333(do)28(w)28(c)-1(ip)29(y)-334(t)1(re)-1(f)1(ne)-333(s)-1(ad)1(z)-1(i\\242)-333(i)-334(p)-27(oredza\\242,)-334(j)1(ak)-333(s)-1(i\\246)-333(m)-1(a)-333(z)-334(c)28(h\\252op)-27(e)-1(m)-334(ob)-27(c)27(h)1(o)-28(d)1(z)-1(i\\242!)-333(-)]TJ\nET\nendstream\nendobj\n476 0 obj <<\n/Type /Page\n/Contents 477 0 R\n/Resources 475 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n475 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n481 0 obj <<\n/Length 7822      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(146)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(A)-334(p)1(ierz)-1(y)1(n\\246)-334(co)-333(w)-1(i)1(e)-1(cz)-1(\\363r)-333(p)1(rz)-1(ed)-333(k)28(ominem)-334(n)1(agrze)-1(w)28(a)-56(j)1(.)]TJ 0 -13.549 Td[({)-333(G\\252\\363)28(w)-1(n)1(ie)-334(t\\252u)1(s)-1(to)-333(je\\261\\242)-334(da)28(w)28(a\\242)-1(,)-333(a)-333(krze)-1(p)-27(\\246)-334(mia\\252)-333(b)-28(\\246dzie...)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(rzyp)-28(o)-27(dc)27(h)1(lib)1(ia)-56(j)1(,)-333(z)-1(a)-333(s)-1(zyj)1(\\246)-334(c)-1(z\\246s)-1(to)-333(u\\252ap)1(ia)-56(j)1(.)]TJ 0 -13.549 Td[({)-289(A)-289(m)-1(i)1(\\246)-1(tk)28(o)-289(dzier\\273,)-289(to)-290(i)-289(n)1(ie)-290(p)-27(ozna;)-289(gd)1(z)-1(ie)-289(go)-290(za)28(wie)-1(d)1(z)-1(i)1(e)-1(sz)-1(!)-289({)-289(jedn)1(a)-289(p)-28(o)-289(dr)1(ugiej)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\252)-1(y)84(,)-281(jak)-281(to)-281(z)-1(wycz)-1(a)-55(jn)1(ie)-282(k)28(obiet)28(y)83(,)-281(ki)1(e)-1(d)1(y)-282(sobi)1(e)-282(p)-28(o)-27(dpi)1(j\\241)-281(i)-282(ozorom)-282(w)28(oln)1(o\\261)-1(\\242)-282(d)1(adz\\241.)]TJ 27.879 -13.55 Td[(Iz)-1(b)1(a)-233(a\\273)-234(si\\246)-234(trz\\246s)-1(\\252a)-233(o)-28(d)-233(\\261m)-1(i)1(e)-1(c)27(h)29(u,)-233(a)-233(one)-233(tak)-233(rozpuszc)-1(za\\252y)-234(g\\246b)28(y)84(,)-233(a\\273)-234(m\\252ynar)1(z)-1(o)28(w)27(a)]TJ -27.879 -13.549 Td[(zac)-1(z\\246)-1(\\252a)-376(im)-376(pr)1(z)-1(ek\\252ada\\242,)-376(b)28(y)-376(wzgl\\241d)-376(mia\\252y)-376(n)1(a)-377(d)1(z)-1(i)1(e)-1(wuc)28(h)28(y)-376(i)-376(n)1(a)-376(dzie)-1(ci,)-376(a)-376(or)1(ganista)]TJ 0 -13.549 Td[(te\\273)-334(do)28(w)28(o)-28(dzi\\252,)-333(\\273)-1(e)-333(to)-334(wielki)-333(gr)1(z)-1(ec)27(h)-333(sia\\242)-334(zgorsz)-1(enie)-333(i)-334(z\\252y)-333(przyk\\252ad)-333(d)1(a)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-318(Bo)-318({)-318(p)1(ra)28(wi\\252)-318({)-318(P)28(an)-317(Jez)-1(u)1(s)-319(n)1(am)-318(rze)-1(k\\252)-318(i)-317(\\261)-1(wi\\246ci)-318(ap)-27(os)-1(to\\252o)28(wie,)-318(co)-318(w)-1(szys)-1(tk)28(o)-317(w)]TJ -27.879 -13.549 Td[(ni)1(e)-1(win)1(i\\241tk)56(a)-358(zgors)-1(zysz)-1(,)-357(to)-358(jak)1(b)28(y)-358(mni)1(e)-359(same)-1(go;)-357(tak)-358(stoi)-358(w)-358(P)1(i\\261)-1(mie)-358(\\221wi\\246t)28(ym)-358({)-358(b)-27(o)]TJ 0 -13.549 Td[(ni)1(e)-1(p)-27(omiark)28(o)28(w)27(an)1(ie)-321(w)-322(p)1(iciu,)-320(w)-322(j)1(adle)-321(jak)-320(i)-321(w)-321(ucz)-1(yn)1(k)56(ac)27(h)-321(srogo)-321(k)56(aran)29(ym)-321(b)-28(\\246dzie,)-321(to)]TJ 0 -13.55 Td[(w)28(am)-1(,)-342(l)1(udzie)-342(k)28(o)-28(c)27(h)1(ane,)-342(m\\363)27(wi\\246)-342({)-342(b)-28(e\\252k)28(ota\\252)-342(niewyra\\271ni)1(e)-1(,)-342(b)-27(o)-342(ni)1(e)-343(p)-27(o)-342(jedn)28(y)1(m)-343(j)1(u\\273)-342(b)28(y\\252)]TJ 0 -13.549 Td[(ni)-333(p)-27(o)-333(dw)28(\\363)-28(c)27(h)1(...)]TJ 27.879 -13.549 Td[({)-333(Kalik)56(an)28(t)-333(j)1(uc)27(h)1(a,)-333(z)-1(ab)1(a)27(wy)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(lud)1(z)-1(i)1(om)-334(br)1(oni\\252.)]TJ 0 -13.549 Td[({)-333(O)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-333(s)-1(i)1(\\246)-334(ob)-28(ciera,)-333(to)-333(m)27(y\\261li,)-333(\\273e)-334(\\261w)-1(i)1(\\246)-1(t)28(y!)]TJ 0 -13.549 Td[({)-371(Niec)27(h)1(a)-56(j)-371(se)-371(usz)-1(y)-371(k)56(ap)-27(ot\\241)-371(z)-1(at)1(k)55(a!)-370({)-371(le)-1(cia\\252y)-371(n)1(ie)-1(p)1(rzyc)27(h)29(ylne)-371(g\\252os)-1(y)84(,)-371(b)-27(o)-371(ni)1(e)-372(lu)1(-)]TJ -27.879 -13.55 Td[(bi)1(ano)-333(go)-334(w)28(e)-334(wsi.)]TJ 27.879 -13.549 Td[({)-426(W)84(e)-1(se)-1(l)1(e)-427(d)1(z)-1(i)1(s)-1(ia)-55(j,)-425(to)-426(nie)-426(grzec)27(h)-425(s)-1(i\\246)-426(zaba)28(wi\\242)-1(,)-425(p)-28(o\\261mia\\242)-427(z)-426(cz)-1(ego)-426(w)28(e)-1(so\\252e)-1(go)-426(i)]TJ -27.879 -13.549 Td[(ucies)-1(zy\\242,)-333(to)-334(j)1(u\\273)-334(j)1(a,)-333(w)27(\\363)-55(jt,)-333(to)-333(w)27(ama)-333(m)-1(\\363)28(wi\\246,)-333(m)-1(oi)-333(lu)1(dzie.)]TJ 27.879 -13.549 Td[({)-362(A)-363(n)1(a)-363(ten)-362(pr)1(z)-1(yk)1(\\252)-1(ad)-362(i)-362(Jez)-1(u)1(s)-363(p)-27(o)-363(w)28(e)-1(se)-1(l)1(ac)27(h)-362(b)28(yw)28(a\\252)-363(i)-362(win)1(o)-363(p)1(ija\\252..)1(.)-363({)-362(dor)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(p)-27(o)27(w)28(a\\273nie)-388(J)1(am)27(br)1(o\\273)-1(y)84(,)-387(ale)-388(cic)27(h)1(o,)-387(b)-28(o)-387(ju)1(\\273)-388(p)1(ijan)28(y)-387(b)29(y\\252,)-387(a)-388(\\273e)-388(w)-388(k)28(o\\253)1(c)-1(u)-386(przy)-387(dr)1(z)-1(wiac)27(h)]TJ 0 -13.55 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(,)-436(ni)1(kt)-437(go)-436(nie)-437(s\\252ys)-1(za\\252)-437({)-437(i)-436(m\\363)27(wi\\242)-437(wsz)-1(ysc)-1(y)-436(zac)-1(z\\246)-1(li)1(,)-437(\\261m)-1(i)1(a\\242)-438(si\\246,)-437(tr)1(\\241c)-1(a\\242)-437(ki)1(e)-1(-)]TJ 0 -13.549 Td[(liszk)55(ami,)-414(a)-415(coraz)-415(w)27(ol)1(niej)-414(p)-28(o)-55(jad)1(a\\242)-1(,)-414(ab)28(y)-415(si\\246)-415(d)1(o)-415(s)-1(y)1(ta)-415(na)-55(je\\261)-1(\\242;)-414(niejeden)-414(ju\\273)-415(i)-414(pasa)]TJ 0 -13.549 Td[(p)-27(opu)1(s)-1(zc)-1(za\\252,)-333(prze)-1(ci\\241)-28(ga\\252)-333(s)-1(i)1(\\246)-1(,)-333(b)28(y)-333(wi\\246c)-1(ej)-333(zm)-1(ie\\261c)-1(i\\242...)]TJ 27.879 -13.549 Td[(Ku)1(c)27(har)1(ki)-333(z)-1(n)1(o)28(w)-1(u)-332(z)-334(m)-1(i)1(s)-1(k)56(ami)-334(n)1(o)28(w)-1(y)1(m)-1(i)-333(sz)-1(\\252y)-333(i)-333(\\261piew)27(a\\252y:)]TJ 0 -13.549 Td[(Chr)1(z)-1(\\241k)56(a\\252a,)-461(k)1(w)-1(i)1(c)-1(za\\252a,)-461(w)-461(ogr)1(\\363)-28(dec)-1(zku)-460(ry\\252a,)-460(B\\246)-1(d)1(z)-1(ie)-461(teraz)-461(gosp)-28(o)-27(darzom)-461(z)-1(a)]TJ -27.879 -13.55 Td[(sz)-1(k)28(o)-28(d)1(\\246)-334(p\\252aci\\252a!)]TJ 27.879 -13.549 Td[({)-333(Wysadzili)-333(si\\246)-1(,)-333(n)1(o,)-333(no!)-333({)-334(d)1(z)-1(i)1(w)-1(i)1(li)-333(s)-1(i)1(\\246)-334(lud)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(z)-334(t)28(ysi\\241c)-334(z\\252ot)28(yc)27(h)-333(k)28(osz)-1(tu)1(je)-333(w)27(es)-1(ele..:)]TJ 0 -13.549 Td[({)-333(Op\\252aci\\252o)-333(s)-1(i\\246)-333(niez)-1(gor)1(z)-1(ej,)-333(b)-27(o)-334(to)-333(n)1(ie)-334(zapisa\\252)-334(sz)-1(e\\261c)-1(iu)-333(morg\\363)28(w!)]TJ 0 -13.549 Td[({)-333(Za)-334(t\\246)-333(dzie)-1(ci\\253)1(s)-1(k)56(\\241)-333(krzywd\\246)-334(se)-334(bal)1(uj)1(\\241.)]TJ 0 -13.55 Td[({)-333(A)-334(Jagn)1(a)-333(s)-1(iedzi)-333(jak)-333(ten)-333(m)-1(r)1(uk.)]TJ 0 -13.549 Td[({)-333(Macie)-1(j)-333(za)-333(to)-334(\\261lepiami)-333(\\261)-1(wieci)-334(k)1(ie)-1(j)-332(\\273)-1(b)1(ik!)]TJ 0 -13.549 Td[({)-333(Kiej)-333(to)-333(pr\\363)-27(c)27(hn)1(o,)-333(m)-1(oi\\261cie)-1(wy)84(,)-333(kiej)-333(pr\\363)-27(c)27(hn)1(o!)]TJ 0 -13.549 Td[({)-333(B)-1(\\246dzie)-334(on)-333(j)1(e)-1(szc)-1(ze)-334(p\\252ak)56(a\\252.)]TJ 0 -13.549 Td[({)-333(Nie)-334(j)1(e)-1(st)-334(on)-332(z)-334(t)28(yc)27(h)1(,)-333(c)-1(o)-333(p\\252acz)-1(\\241,)-333(do)-333(ki)1(ja)-333(pr\\246dzej)-333(s)-1(i\\246)-333(w)27(e\\271)-1(mie...)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(samom)-334(m\\363)27(wi\\252a)-333(w)28(\\363)-56(jto)28(wy)84(,)-334(j)1(ak)-333(o)-334(zm\\363)27(win)1(ac)27(h)-333(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a)-1(\\252a.)]TJ 0 -13.55 Td[({)-333(C)-1(zem)27(u)-333(to)-333(ona)-333(dzisia)-56(j)-333(n)1(ie)-334(p)1(rzys)-1(z\\252a?)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(leda)-333(dzie\\253)-333(z)-1(l)1(e)-1(gni)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-457(R\\246k)28(\\246)-457(b)28(ym)-457(sobie)-457(d)1(a\\252a)-457(uci\\241\\242,)-457(\\273e)-457(nied\\252u)1(go,)-457(n)1(iec)27(h)-456(ino)-456(m)27(u)1(z)-1(yk)1(i)-457(zac)-1(zn\\241)-456(w)]TJ -27.879 -13.549 Td[(k)56(arcz)-1(mie,)-333(to)-334(Jagn)1(a)-334(gan)1(ia\\242)-334(b)-27(\\246dzie)-334(za)-334(p)1(arobk)56(ami.)]TJ 27.879 -13.549 Td[({)-333(Mateusz)-334(in)1(o)-334(cz)-1(ek)56(a)-334(tego!)]TJ 0 -13.55 Td[({)-333(Hale)-1(,)-333(h)1(ale?)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)1(!)-333(W)83(a)28(wrzono)28(w)27(a)-333(s)-1(\\252y)1(s)-1(za\\252a,)-334(co)-333(w)-1(y)1(gadyw)28(a\\252)-334(w)-333(k)56(arc)-1(zmie)-1(.)]TJ\nET\nendstream\nendobj\n480 0 obj <<\n/Type /Page\n/Contents 481 0 R\n/Resources 479 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n479 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n484 0 obj <<\n/Length 8446      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(147)]TJ -330.353 -35.866 Td[({)-333(\\233e)-334(go)-334(t)1(o)-334(n)1(ie)-334(p)1(ros)-1(i)1(li)-333(do)-333(m)27(u)1(z)-1(yk)1(i?)]TJ 0 -13.549 Td[({)-382(Star)1(y)-382(c)27(h)1(c)-1(ia\\252,)-382(i)1(no)-382(Domini)1(k)28(o)27(w)28(a)-382(s)-1(i\\246)-382(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\252)-1(a,)-381(w)-1(sz)-1(y)1(s)-1(cy)-382(wie)-1(d)1(z)-1(\\241,)-382(co)-382(b)28(y\\252o,)]TJ -27.879 -13.549 Td[(to)-333(jak\\273e?)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Przyk\\252ad)1(a)-334(k)56(a\\273dy)84(,)-333(a)-334(wid)1(z)-1(ia\\252)-333(kto?)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(n)1(ib)28(y)-333(p)-27(o)-333(pr\\363\\273nicy)-333(p)-27(ogaduj)1(\\241!)]TJ 0 -13.55 Td[({)-333(A)-334(Bartek)-333(Kozie)-1(\\252)-333(wypatr)1(z)-1(y)1(\\252)-334(ic)28(h)-333(na)-333(z)-1(wiesn\\246)-334(w)-333(b)-28(or)1(u...)]TJ 0 -13.549 Td[({)-420(Kozie\\252)-420(jes)-1(t)-419(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)-419(i)-420(cygan,)-419(m)-1(i)1(a\\252)-420(z)-421(P)29(ac)-1(ze)-1(sio)28(w)27(\\241)-419(s)-1(p)1(ra)28(w)27(\\246)-420(o)-420(\\261wini\\246)-420(i)-419(b)-28(ez)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261\\242)-334(wygad)1(uje...)]TJ 27.879 -13.549 Td[({)-333(I)-334(in)1(ni)-333(ma)-56(j)1(\\241)-334(o)-27(c)-1(zy)-333(w)-1(i)1(dz\\241c)-1(e,)-333(m)-1(a)-55(j\\241..)1(.)]TJ 0 -13.549 Td[({)-277(I)-276(\\271)-1(l)1(e)-278(si\\246)-277(to)-276(s)-1(k)28(o\\253)1(c)-1(zy)83(,)-276(obacz)-1(y)1(c)-1(ie...)-276(ju)1(\\261)-1(ci,)-276(mnie)-277(to)-276(nic)-277(d)1(o)-277(tego,)-277(al)1(e)-278(t)1(ak)-277(m)28(y\\261)-1(l)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(s)-1(i)1(\\246)-334(An)28(tk)28(om)-334(k)1(rz)-1(y)1(w)-1(d)1(a)-333(s)-1(ta\\252a)-333(i)-333(dzie)-1(ciom,)-333(to)-334(i)-333(k)56(ara)-333(p)1(rz)-1(y)1(j\\261\\242)-334(pr)1(z)-1(yj)1(dzie)-334(za)-334(t)1(o.)]TJ 27.879 -13.55 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(P)29(an)-333(Je)-1(zus)-334(n)1(ie)-334(r)1(yc)27(h)1(liwy)83(,)-333(al)1(e)-334(s)-1(p)1(ra)28(wie)-1(d)1(liwy)84(...)]TJ 0 -13.549 Td[({)-322(O)-322(An)29(tku)-322(t)28(y\\273)-322(co\\261)-323(n)1(ie)-1(co\\261)-322(nap)-27(om)27(yk)56(ali)1(,)-322(\\273)-1(e)-322(tu)-321(i)-322(\\363)28(wdzie)-323(wid)1(yw)28(ali)-322(ic)28(h)-322(razem)-1(,)]TJ -27.879 -13.549 Td[(jak)-407(s)-1(i\\246)-408(zm)-1(a)28(wiali.)1(..)-408({)-408(p)1(rz)-1(y)1(c)-1(isz)-1(y)1(\\252y)-408(g\\252os)-1(y)-408(i)-407(ra)-56(j)1(c)-1(o)28(w)28(a\\252y)-408(c)-1(or)1(az)-409(z\\252o\\261)-1(l)1(iwie)-1(j)1(,)-408(i)-408(n)1(ic)-1(o)28(w)28(a\\252y)]TJ 0 -13.549 Td[(ni)1(e)-1(u)1(b\\252agani)1(e)-360(ca\\252\\241)-359(ro)-28(d)1(z)-1(in)1(\\246)-1(,)-358(nie)-359(dar)1(o)27(wu)1(j\\241c)-359(i)-359(s)-1(tar)1(e)-1(j)1(,)-359(a)-359(litu)1(j\\241c)-359(s)-1(i)1(\\246)-360(n)1(ad)-359(c)27(h)1(\\252opak)56(ami)]TJ 0 -13.549 Td[(na)-55(jb)1(ard)1(z)-1(iej.)]TJ 27.879 -13.55 Td[({)-470(A)-471(b)-27(o)-471(t)1(o)-471(n)1(ie)-471(grze)-1(c)28(h!)-470(P)28(arob)1(ki)-470(p)-28(o)-27(d)-470(w)27(\\241se)-1(m,)-470(Szyme)-1(k)-470(ma)-471(j)1(u\\273)-471(d)1(obrze)-471(na)]TJ -27.879 -13.549 Td[(trzyd)1(z)-1(ie\\261c)-1(i)-333(i)-333(\\273)-1(eni)1(\\242)-334(m)27(u)-333(si\\246)-334(n)1(ie)-334(d)1(a,)-333(z)-334(dom)28(u)-333(nie)-333(p)-28(op)1(u\\261c)-1(i)-333(i)-333(o)-333(b)-28(ele)-334(co)-333(piek\\252uj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(ie)-333(to)-334(i)-333(ws)-1(t)28(y)1(d,)-333(c)27(h)1(\\252op)28(y)-333(t)28(yle,)-334(a)-333(ws)-1(zystkie)-334(k)28(ob)1(iec)-1(e)-334(r)1(ob)-28(ot)28(y)-333(r)1(obi\\241.)-333(.)-333(.)]TJ 0 -13.549 Td[({)-333(B)-1(y)-333(sobie)-333(ino)-333(Jagusia)-333(r\\241cz)-1(k)28(\\363)28(w)-333(nie)-334(p)-27(o)28(w)27(al)1(a\\252a!)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(o)-333(pi\\246\\242)-334(morg\\363)28(w)-334(ma)-56(j)1(\\241)-334(i)-333(\\273e)-1(n)1(i\\242)-334(b)29(y)-334(si\\246)-334(j)1(u\\273)-333(m)-1(ogli)1(!)]TJ 0 -13.55 Td[({)-333(T)27(yl)1(e)-334(dziew)27(cz)-1(y)1(n)-333(jes)-1(t)-333(w)27(e)-333(w)-1(si..)1(.)]TJ 0 -13.549 Td[({)-294(A)-294(w)27(asza)-295(M)1(arcyc)27(h)1(a)-294(na)-56(j)1(da)28(wni)1(e)-1(j)-294(cze)-1(k)56(a)-294(i)-294(gru)1(n)28(t)-294(pr)1(z)-1(y)1(le)-1(g\\252y)-294(d)1(o)-294(P)28(ac)-1(zes)-1(io)28(w)28(e)-1(go!)]TJ 0 -13.549 Td[({)-333(B)-1(acz)-1(cie)-334(n)1(a)-333(s)-1(w)28(o)-56(j\\241)-333(F)84(rank)28(\\246)-333(le)-1(p)1(iej,)-333(b)28(y)-333(si\\246)-334(cz)-1(ego)-334(z)-333(Adame)-1(m)-333(nie)-334(d)1(o)-28(cz)-1(ek)56(a\\252)-1(a!)]TJ 0 -13.549 Td[({)-285(S)1(tara)-284(jes)-1(t)-284(pi)1(e)-1(ki)1(e)-1(ln)1(ica,)-285(to)-284(wiadomo,)-284(ale)-285(c)27(h)1(\\252opaki)-284(te\\273)-285(niez)-1(gu)1(\\252y)-284(i)-285(ciama)-56(j)1(dy!)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(e)-334(par)1(ob)28(y)83(,)-333(a)-333(matc)-1(zynej)-333(ki)1(e)-1(c)27(k)1(i)-333(b)-28(o)-55(j\\241)-333(s)-1(i)1(\\246)-334(pu)1(\\261)-1(ci\\242)-1(!)]TJ 0 -13.55 Td[({)-326(Puszc)-1(z\\241)-327(si\\246...)-326(ju)1(\\273)-327(dzisia)-56(j)-326(S)1(z)-1(ymek)-327(ci\\246giem)-327(c)27(h)1(o)-28(dzi)-326(z)-1(a)-326(Nas)-1(tk)56(\\241)-326(Go\\252\\246)-1(b)1(iank)56(\\241.)]TJ 0 -13.549 Td[({)-399(Ocie)-1(c)-399(ic)27(h)-398(b)28(y\\252)-399(taki)-399(sam)-1(,)-398(dobr)1(z)-1(e)-399(bacz)-1(\\246,)-399(a)-399(s)-1(tar)1(a)-399(z)-1(a)-399(m\\252o)-28(du)-398(nie)-399(le)-1(p)1(s)-1(za)-399(o)-28(d)]TJ -27.879 -13.549 Td[(Jagu)1(s)-1(i!)1(...)]TJ 27.879 -13.549 Td[({)-333(Jaki)-333(k)28(orze)-1(\\253)1(,)-333(tak)55(a)-333(n)1(a\\242)-1(!)-333({)-333(tak)56(a)-334(c\\363rk)56(a,)-333(jak)56(a)-333(m)-1(a\\242!)]TJ 0 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-410(pr)1(z)-1(ycic)28(h\\252a,)-410(gra)-56(j)1(k)28(o)28(w)-1(i)1(e)-411(je\\261)-1(\\242)-410(p)-28(osz)-1(l)1(i)-411(n)1(a)-411(d)1(ru)1(g\\241)-411(stron)1(\\246)-1(,)-410(b)-27(o)-411(wiec)-1(zerz)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334(sk)28(o\\253cz)-1(y\\252a.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-328(si\\246)-328(nagle)-328(u)1(c)-1(zyni)1(\\252o)-328(nib)29(y)-328(w)-328(k)28(o\\261c)-1(i)1(e)-1(le)-328(p)-27(o)-28(d)1(c)-1(zas)-328(P)28(o)-28(dn)1(ies)-1(ieni)1(a)-328({)-328(p)-27(o)-328(c)28(h)28(wi-)]TJ -27.879 -13.549 Td[(li)-410(j)1(e)-1(d)1(nak)-410(gw)28(ar)-410(bu)1(c)27(hn)1(\\241\\252)-410(jes)-1(zc)-1(ze)-411(mo)-28(cniejsz)-1(y)84(,)-410(a\\273)-411(si\\246)-410(z)-1(ak)28(ot\\252o)28(w)27(a\\252o,)-410(wsz)-1(ysc)-1(y)-409(naraz)]TJ 0 -13.549 Td[(m\\363)27(wil)1(i,)-277(krzycz)-1(eli)-277(a)-277(do)28(w)28(o)-28(dzili)-277(sobie)-277(przez)-278(s)-1(t)1(o\\252)-1(y)84(,)-277(\\273e)-278(ju)1(\\273)-278(j)1(e)-1(den)-277(d)1(rugi)1(e)-1(go)-277(ni)1(e)-278(s\\252)-1(y)1(s)-1(za\\252.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ali)-355(n)1(a)-356(ostatku)1(,)-355(dl)1(a)-356(wyb)1(ran)28(y)1(c)27(h,)-354(kru)1(pni)1(k,)-355(mio)-28(dem)-355(i)-355(k)28(orz)-1(eni)1(am)-1(i)-355(zapr)1(a-)]TJ -27.879 -13.549 Td[(wion)28(y)84(,)-333(a)-334(r)1(e)-1(sz)-1(cie)-334(sz)-1(cz)-1(o)-27(drze)-334(sta)28(w)-1(i)1(ali)-333(t\\246)-1(g\\241)-333(ok)28(o)28(wit\\246)-334(i)-333(pi)1(w)27(o.)]TJ 27.879 -13.55 Td[(Ma\\252o)-317(kt)1(o)-318(zw)28(a\\273)-1(a\\252,)-317(co)-317(pij)1(e)-1(,)-316(b)-28(o)-317(j)1(u\\273)-317(s)-1(i\\246)-317(ze)-318(\\252b)-27(\\363)27(w)-317(ku)1(rzy\\252o)-317(niezgo)-1(r)1(z)-1(ej)-317(i)-316(k)28(on)28(te)-1(n)29(t-)]TJ -27.879 -13.549 Td[(no\\261\\242)-237(rozbiera\\252a.)-236(Si)1(adali,)-236(j)1(ak)-237(b)28(y)1(\\252)-1(o)-236(p)-27(or\\246)-1(czniej,)-236(k)56(ap)-28(ot)28(y)-236(rozpin)1(ali)-236(z)-237(gor\\241ca,)-237(p)-27(ok\\252adal)1(i)]TJ 0 -13.549 Td[(si\\246)-301(n)1(a)-301(sto\\252ac)27(h)1(.)-300(W)83(al)1(ili)-300(p)1(i\\246)-1(\\261c)-1(i)1(am)-1(i)1(,)-300(a\\273)-301(mis)-1(k)1(i)-300(p)-28(o)-27(dsk)55(ak)1(iw)27(a\\252y)84(,)-300(c)27(h)28(wytal)1(i)-300(s)-1(i)1(\\246)-301(wp)-28(\\363\\252,)-300(to)-300(za)]TJ 0 -13.549 Td[(orzyd)1(la,)-328(to)-327(u\\252api)1(ali)-328(za)-328(sz)-1(y)1(j\\246)-328(a)-328(rai)1(li,)-327(w)-1(y)1(\\273)-1(alal)1(i)-328(si\\246)-328(jak)-327(brat)-327(pr)1(z)-1(ed)-328(b)1(ratem)-1(,)-327(kiej)-327(te)-1(n)]TJ 0 -13.549 Td[(kr)1(z)-1(e\\261)-1(cijan)-333(p)1(ra)28(wy)-333(przed)-333(krze)-1(\\261c)-1(i)1(jan)1(e)-1(m)-334(i)-333(som)-1(siad)1(e)-1(m.)]TJ 27.879 -13.55 Td[({)-325(\\231)-1(l)1(e)-326(jes)-1(t)-325(na)-325(\\261w)-1(i)1(e)-1(cie)-1(!)-325(Ju)1(\\261)-1(ci!)-325(Mar)1(nacja)-325(c)-1(z\\252o)27(wiek)28(o)28(w)-1(i)-325(a)-325(to)-325(biedo)28(w)28(anie)-326(j)1(e)-1(n)1(o...)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(z\\252y)83(,)-333(p)1(s)-1(i)1(e)-1(kr)1(w)-1(i)1(e)-1(..)1(.)-334({)-333(P)28(o)-27(d)-333(s)-1(to\\252ami)-333(psy)-333(gryz\\252y)-334(si\\246)-334(o)-333(k)28(o\\261c)-1(i.)]TJ\nET\nendstream\nendobj\n483 0 obj <<\n/Type /Page\n/Contents 484 0 R\n/Resources 482 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n482 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n487 0 obj <<\n/Length 9493      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(148)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(...)1(A)-327(p)-28(o)-27(c)-1(iec)27(h)1(a)-327(ino)-327(w)-327(t)28(ym,)-327(kiej)-327(som)-1(siad)-327(z)-327(som)-1(siadem)-327(s)-1(i\\246)-327(z)-1(ejd)1(z)-1(i)1(e)-328(i)-327(p)1(rzy)-327(t)28(ym)]TJ -27.879 -13.549 Td[(kieliszku)-227(p)-28(or)1(e)-1(dz\\241,)-227(w)-1(y)1(\\273)-1(al\\241)-227(s)-1(i\\246)-228(i)-227(o)-28(dp)1(usz)-1(cz\\241)-228(s)-1(ob)1(ie,)-228(co)-228(tam)-228(j)1(e)-1(d)1(e)-1(n)-227(dr)1(ugiem)27(u)-227(wino)28(w)28(at)28(y)]TJ 0 -13.549 Td[({)-379(ju\\261ci,)-380(n)1(ie)-380(to)-379(wypasione)-380(zb)-27(o\\273)-1(e)-380(n)1(i)-380(p)1(rze)-1(or)1(anie)-380(gr)1(anicy)83(,)-379(b)-27(o)-380(to)-379(ju)1(\\273)-380(s)-1(\\241d)1(y)-379(w)-1(i)1(e)-1(d)1(z)-1(\\241)-379(i)]TJ 0 -13.549 Td[(\\261w)-1(i)1(adk)28(o)28(wie)-318(p)1(rzyt)28(w)-1(i)1(e)-1(rd)1(z)-1(\\241,)-316(k)28(om)27(u)-317(k)1(rz)-1(y)1(w)-1(d)1(a)-317(i)-317(k)28(om)27(u)-316(s)-1(p)1(ra)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242,)-317(ale)-318(t)1(o,)-317(c)-1(o)-317(tam)]TJ 0 -13.549 Td[(p)-27(o)-386(s\\241s)-1(iedzku)-385(pr)1(z)-1(y)1(tra\\014\\242)-386(si\\246)-386(p)1(rzytra\\014)-385({)-386(czy)-386(ki)1(e)-1(j)-385(gad)1(z)-1(in)1(a)-386(sp)28(ysz)-1(cz)-1(e)-386(w)-385(s)-1(ad)1(z)-1(ie,)-385(c)-1(zy)]TJ 0 -13.55 Td[(bab)29(y)-281(si\\246)-281(p)-28(osw)28(arz)-1(\\241)-280(ab)-28(o)-280(dzie)-1(ciaki)-280(si\\246)-281(p)-28(ob)1(ij\\241,)-280(jak)-280(to)-281(r)1(\\363\\273)-1(n)1(ie)-281(s)-1(i\\246)-281(zdar)1(z)-1(y)84(...)-280(Dy\\242)-281(w)27(ese)-1(le)]TJ 0 -13.549 Td[(o)-28(d)-333(tego,)-333(b)28(yc)28(h)-333(z)-1(a)28(wz)-1(i)1(\\246)-1(to\\261\\242)-334(sta)-56(j)1(a\\252)-1(a)-333(i)-333(br)1(ate)-1(r)1(s)-1(t)28(w)28(o)-334(a)-333(zgo)-28(da)-333(ros\\252y)-333(m)-1(i\\246dzy)-333(lu)1(d\\271m)-1(i!)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(\\242b)28(y)-333(jeno)-333(na)-333(ten)-333(c)-1(zas)-334(w)28(e)-1(se)-1(ln)29(y)83(,)-333(n)1(a)-334(d)1(z)-1(ie\\253)-333(j)1(e)-1(d)1(e)-1(n)1(!)]TJ 0 -13.549 Td[({)-399(A)-399(ju)1(tro)-399(s)-1(amo)-399(przyj)1(dzie)-1(!)-399(Hej!)-399(Ni)1(e)-400(uciekni)1(e)-1(sz)-400(pr)1(z)-1(ed)-399(d)1(ol\\241,)-399(c)27(h)28(yb)1(a)-399(p)-28(o)-27(d)-399(t\\246)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(t\\241)-261(z)-1(i)1(e)-1(mi\\246;)-262(p)1(rzyjd)1(z)-1(ie,)-261(z)-1(a)-261(\\252e)-1(b)-261(u)1(\\252api,)-261(jar)1(z)-1(mo)-261(na)-262(k)56(ar)1(k)-262(w\\252o\\273y)83(,)-261(bi)1(e)-1(d)1(\\241)-262(p)-27(op)-28(\\246dzi)-261(i)-262(ci\\241-)]TJ 0 -13.549 Td[(gni)1(j,)-308(n)1(aro)-28(d)1(z)-1(i)1(e)-1(,)-307(a)-308(p)-28(ot)1(e)-1(m)-308(i)-308(k)1(rwi\\241)-308(si\\246)-308(oblew)27(a)-55(j,)-307(s)-1(w)28(e)-1(go)-308(b)1(ac)-1(z,)-308(z)-308(gar\\261c)-1(i)-307(ni)1(e)-309(p)-27(opu)1(s)-1(zc)-1(za)-56(j)]TJ 0 -13.55 Td[(ni)-333(n)1(a)-334(t)1(o)-334(o)-28(czym)-1(gn)1(ienie,)-333(b)28(y\\261)-334(si\\246)-334(p)-27(o)-28(d)-333(k)28(o\\252a)-333(ni)1(e)-334(z)-1(ap)1(l\\241ta\\252!)]TJ 27.879 -13.549 Td[(-Na)-334(b)1(raci)-333(P)28(an)-333(Jez)-1(u)1(s)-334(s)-1(t)28(w)28(orzy\\252)-334(l)1(udzi,)-333(a)-333(wilk)56(am)-1(i)-333(s\\241)-333(la)-334(siebie!)]TJ 0 -13.549 Td[({)-391(Nie)-391(w)-1(i)1(lk)56(am)-1(i,)-390(nie,)-391(to)-391(jeno)-391(b)1(ie)-1(d)1(a)-391(p)-28(o)-27(dju)1(dza,)-391(k\\252y\\271ni)-391(i)-391(j)1(e)-1(d)1(n)28(yc)28(h)-391(na)-391(d)1(rugi)1(c)27(h)]TJ -27.879 -13.549 Td[(rzuca,)-333(\\273)-1(e)-333(gryz\\241)-334(si\\246)-334(j)1(ak)-333(te)-334(psy)-333(o)-334(gn)1(at)-333(ob)-55(jedzon)28(y!)]TJ 27.879 -13.549 Td[({)-412(Nie)-412(sam)-1(a)-412(b)1(ieda,)-411(nie,)-412(z\\252y)-412(to)-412(\\242m)-1(\\246)-412(n)1(a)-412(nar\\363)-27(d)-412(r)1(z)-1(u)1(c)-1(a,)-411(\\273)-1(e)-412(nie)-412(r)1(oz)-1(ez)-1(n)1(a)-56(j)1(\\241,)-412(c)-1(o)]TJ -27.879 -13.55 Td[(dob)1(re,)-333(a)-334(z\\252e)-1(!)]TJ 27.879 -13.549 Td[({)-439(Pr)1(a)27(wd)1(a,)-440(p)1(ra)28(wda,)-439(i)-439(d)1(m)27(uc)28(ha)-439(w)-440(d)1(usz)-1(\\246)-439(kiej)-439(w)-440(to)-439(zarze)-1(wie)-440(p)1(rzygas\\252)-1(e,)-439(a\\273)]TJ -27.879 -13.549 Td[(c)27(h)1(c)-1(i)1(w)27(o\\261\\242)-334(i)-333(z)-1(\\252o\\261\\242)-1(,)-333(i)-333(ws)-1(zystkie)-334(gr)1(z)-1(ec)27(h)28(y)-333(r)1(oz)-1(d)1(m)27(u)1(c)27(ha!)]TJ 27.879 -13.549 Td[({)-288(Ju)1(\\261)-1(ci,)-288(kt)1(\\363re)-1(n)-287(g\\252uc)28(h)28(y)-288(jest)-288(na)-288(p)1(rzyk)56(a)-1(zani)1(a,)-288(ten)-288(o)-28(c)28(hotn)1(ie)-1(j)-287(s)-1(\\252u)1(c)27(h)1(a)-288(piekielnej)]TJ -27.879 -13.549 Td[(m)27(u)1(z)-1(y)1(ki!)]TJ 27.879 -13.55 Td[({)-333(Drzew)-1(i)1(e)-1(j)-332(nie)-333(tak)-333(b)28(y)1(w)27(a\\252o!)-333(P)29(os)-1(\\252uc)28(h)-333(b)29(y\\252,)-333(p)-27(os)-1(zano)28(w)27(an)1(ie)-333(s)-1(tar)1(s)-1(zyc)27(h)-332(i)-333(zgo)-28(da!)]TJ 0 -13.549 Td[({)-333(I)-334(gr)1(on)28(tu)-333(k)56(a\\273)-1(d)1(e)-1(n)-333(mia\\252,)-333(co)-334(in)1(o)-333(m)-1(\\363g\\252)-333(obr)1(obi\\242,)-333(a)-334(p)1(as)-1(t)28(wisk,)-333(a)-334(\\252\\241k)1(,)-334(a)-333(b)-27(oru)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(o)-333(p)-27(o)-28(datk)56(ac)28(h)-333(kto)-333(kiedy)-333(s)-1(\\252y)1(s)-1(za\\252?)]TJ 0 -13.549 Td[({)-269(Ab)-27(o)-269(dr)1(z)-1(ew)27(o)-269(ku)1(p)-27(o)27(w)28(a\\252)-269(kto?...)-268(Je)-1(c)28(ha\\252)-269(do)-268(b)-28(or)1(u)-269(i)-269(b)1(ra\\252,)-269(il)1(e)-270(k)28(om)28(u)-269(b)28(y)1(\\252o)-269(p)-28(otr)1(z)-1(a,)]TJ -27.879 -13.549 Td[(a)-301(c)27(ho)-27(\\242)-1(b)28(y)-301(i)-301(t\\246)-302(n)1(a)-56(j)1(le)-1(p)1(s)-1(z\\241)-302(sos)-1(n)1(\\246)-302(cz)-1(y)-301(d\\246ba!)1(...)-301(Co)-302(b)28(y)1(\\252o)-302(d)1(z)-1(iedzico)27(w)28(e,)-302(b)29(y\\252o)-302(i)-301(c)27(h)1(\\252opskie.)]TJ 27.879 -13.55 Td[({)-295(A)-295(teraz)-295(ni)-295(d)1(z)-1(iedzico)28(w)27(e,)-295(ni)-295(c)28(h\\252op)1(s)-1(ki)1(e)-296({)-295(\\273ydoskie)-295(jes)-1(t)-295(ab)-27(o)-295(i)-295(k)28(ogo)-295(gor)1(s)-1(ze)-1(go.)]TJ 0 -13.549 Td[({)-332(\\221cie)-1(r)1(w)-1(y)1(!)-332(Pi\\252em)-333(do)-332(w)27(as,)-332(pij)1(c)-1(i)1(e)-333(do)-332(mnie!)-332(Us)-1(ad)1(z)-1(i\\252y)-332(si\\246)-333(jak)1(b)28(y)-332(na)-332(s)-1(w)28(o)-56(j)1(e)-1(m)-333({)]TJ -27.879 -13.549 Td[(pi)1(jcie)-334(n)1(o,)-333(dobr)1(e)-334(t)28(w)28(o)-56(je,)-333(dob)1(re)-334(i)-333(mo)-55(je,)-333(b)28(yc)27(h)-333(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-334(w)28(e)-334(wsz)-1(ystkim)-333(b)28(y\\252a..)1(.)]TJ 27.879 -13.549 Td[({)-337(Dziedzic)-1(e)-337(par)1(s)-1(zyw)28(e)-1(!)-337(W)-336(w)27(asz)-1(e)-337(r\\246ce)-1(!)-337(G)1(orza\\252)-1(k)56(a)-337(n)1(ie)-337(grz)-1(ec)27(h)1(,)-337(b)28(y)1(le)-338(j)1(e)-1(n)1(o)-337(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(go)-28(d)1(n)28(ym)-357(sp)-28(osobie)-357(i)-356(z)-358(b)1(ratami,)-356(to)-357(na)-356(z)-1(d)1(ro)28(wie)-357(idzie,)-357(kr)1(e)-1(w)-357(cz)-1(y\\261ci)-357(i)-357(c)28(hor)1(\\363bsk)55(a)-356(o)-28(d-)]TJ 0 -13.55 Td[(ci\\241)-28(ga!)]TJ 27.879 -13.549 Td[({)-270(Jak)-270(p)1(i\\242,)-270(to)-270(j)1(u\\273)-270(c)-1(a\\252\\241)-270(kw)28(art\\241,)-269(jak)-270(si\\246)-270(w)27(es)-1(eli\\242,)-270(to)-270(j)1(u\\273)-270(c)-1(a\\252\\241)-270(n)1(iedzie)-1(l\\246.)-270(A)-270(masz)-1(,)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)1(u,)-393(rob)-27(ot\\246?)-394({)-393(pi)1(lno)-393(r\\363b)1(,)-393(ku)1(las)-1(\\363)28(w)-393(nie)-393(\\273)-1(a\\252u)1(j)-393(i)-393(s)-1(zc)-1(zerz)-1(e)-393(s)-1(i)1(\\246)-394(pr)1(z)-1(yk)1(\\252ada)-56(j)1(!)-393(A)]TJ 0 -13.549 Td[(zdarzy)-365(s)-1(i)1(\\246)-366(na)-365(ten)-365(p)1(rz)-1(y)1(k\\252ad)-365(ok)56(az)-1(j)1(a)-365({)-366(w)28(e)-1(sele)-1(,)-365(c)28(hrzcin)28(y)-365(alb)-27(o)-365(i)-365(z)-1(amrze)-366(si\\246)-366(k)28(om)28(u)-365({)]TJ 0 -13.549 Td[(p)-27(ofolgu)1(j)-272(s)-1(ob)1(ie,)-273(o)-27(dp)-27(o)-28(cz)-1(yw)28(a)-56(j)1(,)-272(obse)-1(rwu)1(j)-272(i)-272(ucie)-1(c)28(h\\246)-273(miej!)-272({)-272(A)-273(\\271le)-273(wyp)1(adn)1(ie)-273({)-272(k)28(obieta)]TJ 0 -13.549 Td[(si\\246)-416(zm)-1(ar)1(n)28(uj)1(e)-1(,)-414(b)28(ydl)1(e)-416(ci)-415(z)-1(d)1(e)-1(c)28(hn)1(ie)-1(,)-414(p)-28(ogor)1(z)-1(el)-415(pr)1(z)-1(yj)1(dzie)-415({)-416(w)28(ola)-415(b)-27(os)-1(k)56(a,)-415(n)1(ie)-416(p)1(rze)-1(ciw)]TJ 0 -13.55 Td[(si\\246)-1(,)-295(b)-28(o)-296(i)-296(c\\363\\273,)-296(c)27(h)28(u)1(dziaku)1(,)-296(p)-27(ore)-1(d)1(z)-1(i)1(s)-1(z)-296(krzyk)56(ani)1(e)-1(m)-296(a)-296(p\\252acz)-1(em)-1(?)-296({)-296(n)1(ic)-1(;)-295(s)-1(p)-27(ok)28(o)-56(j)1(no\\261c)-1(i)-295(s)-1(i\\246)]TJ 0 -13.549 Td[(in)1(o)-358(z)-1(b)-27(\\246dzie)-1(sz)-1(,)-357(\\273)-1(e)-358(na)28(w)28(e)-1(t)-357(to)-358(jad)1(\\252o)-358(p)-28(ok)1(rz)-1(y)1(w)27(\\241)-358(ci)-358(si\\246)-358(w)-358(g\\246)-1(b)1(ie)-358(w)-1(yd)1(a!)-358({)-358(Cierp)-357(pr)1(z)-1(eto)]TJ 0 -13.549 Td[(i)-386(d)1(uf)1(a)-56(j)-385(w)-386(P)28(an)1(a)-56(j)1(e)-1(zuso)27(w)28(e)-386(m)-1(i)1(\\252os)-1(ierd)1(z)-1(ie...)-385(Pr)1(z)-1(yj)1(dzie)-386(gorsz)-1(e,)-386(k)28(ostuc)28(ha)-386(u)1(\\252api)-385(c)-1(i\\246)-386(za)]TJ 0 -13.549 Td[(grd)1(yk)28(\\246)-311(i)-311(w)-311(\\261)-1(l)1(e)-1(p)1(ie)-311(z)-1(a)-55(jrzy)-311({)-311(n)1(ie)-311(pr)1(obuj)-310(si\\246)-312(wyp)1(s)-1(n)1(\\241\\242)-1(,)-310(nie)-311(t)28(w)28(o)-56(ja)-310(m)-1(o)-28(c)-311({)-311(b)-27(o)-311(ws)-1(zystk)28(o)]TJ 0 -13.549 Td[(jest)-334(w)-333(b)-28(oskim)-333(r\\246ku..)1(.)]TJ 27.879 -13.55 Td[({)-312(Ju\\261ci,)-312(kto)-312(tam)-312(wym)-1(i)1(arku)1(je,)-312(kiej)-312(Jez)-1(u)1(s)-313(rzeknie:)-312(\\377)-55(Do)-312(te)-1(la)-312(t)28(w)28(o)-56(j)1(e)-313({)-312(o)-28(d)-311(te)-1(la)]TJ -27.879 -13.549 Td[(mo)-56(j)1(e)-1(,)-333(cz)-1(\\252o)28(wie)-1(k)1(u.\")]TJ\nET\nendstream\nendobj\n486 0 obj <<\n/Type /Page\n/Contents 487 0 R\n/Resources 485 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n485 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n490 0 obj <<\n/Length 9517      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(149)]TJ -330.353 -35.866 Td[({)-353(T)83(ak)-353(to,)-352(tak!)-353(G\\363r)1(\\241,)-353(kiej)-353(to)-353(b)1(\\252ys)-1(k)56(an)1(ie)-1(,)-352(le)-1(c\\241)-353(b)-27(os)-1(ki)1(e)-354(p)1(rz)-1(y)1(k)55(azy)84(,)-353(a)-353(nik)1(t,)-353(\\273)-1(eb)28(y)]TJ -27.879 -13.549 Td[(ksi\\241dz,)-255(\\273)-1(eb)28(y)-255(na)-55(jm\\241dr)1(z)-1(ejsz)-1(y)84(,)-256(i)1(c)27(h)-255(ni)1(e)-256(pr)1(z)-1(ejrzy)-255(prz\\363)-28(d)1(z)-1(i,)-255(a\\273)-256(p)1(adn)1(\\241)-256(n)1(a)-256(n)1(ar\\363)-28(d)-255(ziarn)1(e)-1(m)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(a\\252ym!)]TJ 27.879 -13.549 Td[({)-359(A)-360(t)28(y)84(,)-360(cz)-1(\\252o)28(wieku,)-359(mas)-1(z)-360(t)28(yl)1(k)28(o)-360(j)1(e)-1(d)1(no)-359(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-360({)-359(b)28(y\\261)-360(sw)27(o)-55(je)-360(rob)1(i\\252)-359(i)-360(\\273y\\252,)-359(jak)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(k)55(azania)-377(\\261w)-1(i)1(\\246)-1(te)-378(n)1(ak)56(az)-1(u)1(j\\241,)-377(a)-378(p)1(rze)-1(d)-377(si\\246)-378(n)1(ie)-378(wygl\\241d)1(a\\252...)-377(P)28(an)-377(Jez)-1(u)1(s)-378(ws)-1(zystkim)]TJ 0 -13.55 Td[(zas)-1(\\252ugi)-333(sz)-1(y)1(kuj)1(e)-334(i)-333(wyp\\252aci)-333(rz)-1(etelni)1(e)-1(,)-333(co)-334(in)1(o)-334(k)28(om)28(u)-333(pr)1(z)-1(y)1(padn)1(ie...)]TJ 27.879 -13.549 Td[({)-296(T)27(y)1(m)-297(ci)-296(p)-27(o)-1(l)1(s)-1(ki)-295(nar\\363)-27(d)-296(s)-1(t)1(o)-56(ja\\252)-296({)-296(to)-296(i)-296(tak)-296(ma)-296(b)28(y\\242)-296(a\\273)-297(p)-27(o)-296(w)-1(i)1(e)-1(k)-296(wiek)28(\\363)28(w)-1(.)-295(Am)-1(en!)]TJ 0 -13.549 Td[({)-333(A)-334(cierpl)1(iw)27(o\\261ci\\241)-334(i)-333(b)1(ram)27(y)-333(p)1(iekielne)-334(p)1(rze)-1(mo\\273e)-1(.)]TJ 0 -13.549 Td[(T)83(ak)-328(s)-1(ob)1(ie)-329(p)-28(ogw)28(arzali,)-329(g\\246sto)-329(pr)1(z)-1(epij)1(a)-56(j)1(\\241c)-1(,)-328(a)-329(k)56(a\\273)-1(d)1(y)-329(wyp)-27(o)28(w)-1(i)1(ada\\252,)-329(co)-329(mia\\252)-329(na)]TJ -27.879 -13.549 Td[(se)-1(rcu)-302(i)-302(co)-303(m)28(u)-302(da)28(wno)-302(o\\261)-1(ci\\241)-302(s)-1(t)1(a\\252)-1(o)-302(w)-302(grdy)1(c)-1(e!)-302(A)-303(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ce)-1(j)-302(i)-302(n)1(a)-56(j)1(g\\252o\\261)-1(n)1(ie)-1(j)-302(gad)1(a\\252)-303(J)1(am)-1(-)]TJ 0 -13.549 Td[(br)1(o\\273)-1(y)84(,)-324(j)1(u\\261c)-1(i,)-323(\\273)-1(e)-324(go)-324(niewie)-1(l)1(a)-324(s)-1(\\252uc)28(hali)1(,)-324(b)-27(o)-324(ku\\273den)-324(m\\363)28(w)-1(i)1(\\252)-324(i)-324(s)-1(w)28(o)-56(j)1(e)-1(go)-324(c)28(hcia\\252)-324(do)28(wie\\261)-1(\\242,)]TJ 0 -13.55 Td[(ma\\252o)-438(bacz)-1(\\241c)-438(na)-438(d)1(ru)1(gic)27(h)1(...)-438(W)-437(izbie)-438(wrza\\252)-1(o)-437(ju\\273)-438(i)-438(k)28(ot\\252o)28(w)28(a\\252o)-438(s)-1(i\\246)-438(coraz)-438(bard)1(z)-1(i)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(gdy)-304(Ewk)56(a)-305(z)-305(Jagu)1(s)-1(t)28(yn)1(k)55(\\241)-304(w)27(es)-1(z\\252y)83(,)-304(ni)1(os)-1(\\241c)-305(pr)1(z)-1(ed)-304(s)-1(ob)1(\\241)-305(z)-305(w)-1(i)1(e)-1(lk)56(\\241)-305(p)1(arad)1(\\241)-305(pr)1(z)-1(y)1(s)-1(tr)1(o)-56(jon)1(\\241)]TJ 0 -13.549 Td[(w)28(arz)-1(\\241c)28(hew.)-412(M)1(uzyk)56(an)28(t,)-411(kt\\363r)1(y)-411(s)-1(ze)-1(d)1(\\252)-412(za)-411(nimi,)-411(pr)1(z)-1(y)1(gryw)28(a\\252)-412(n)1(a)-412(skrzyp)1(k)55(ac)28(h,)-411(a)-411(one)]TJ 0 -13.549 Td[(\\261piew)27(a\\252y:)]TJ 27.879 -13.549 Td[(Da)-298(p)-28(o)28(w)28(oli)-298(,)-299(p)-27(o)28(w)27(ol)1(i)-299(-)-298(Da)-299(o)-27(d)-298(s)-1(to\\252\\363)28(w)-299(wsta)27(w)28(a)-56(j)1(c)-1(i)1(e)-1(!)-298(P)28(o)-298(trzy)-298(gros)-1(ze)-299(za)-299(p)-27(otra)28(w)28(\\246)-1(,)]TJ -27.879 -13.55 Td[(P)28(o)-333(dzies)-1(i\\241tk)1(u)-333(z)-1(a)-333(pr)1(z)-1(y)1(pra)28(w)28(\\246)-1(-)-333(Da)-334(k)1(uc)27(h)1(arec)-1(zk)28(om)-334(da)-55(jcie!)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-365(b)28(y\\252)-365(s)-1(y)1(t)28(y)83(,)-365(p)-27(o)-28(d)1(o)-28(c)27(ho)-27(c)-1(on)28(y)-364(i)-365(z)-1(mi\\246k\\252y)-365(dob)1(rym)-365(jad\\252em)-366(i)-365(n)1(api)1(tkiem)-366(cz)-1(\\246-)]TJ -27.879 -13.549 Td[(st)27(y)1(m)-1(,)-333(to)-333(ni)1(e)-1(kt\\363r)1(z)-1(y)-333(i)-333(srebrn)1(e)-334(pi)1(e)-1(n)1(i\\241dze)-334(rzucali)-333(na)-333(w)28(arz\\241c)27(hew.)]TJ 27.879 -13.549 Td[(W)84(raz)-321(te\\273)-321(d)1(\\271)-1(wiga\\242)-320(s)-1(i\\246)-320(j\\246li)-320(zz)-1(a)-320(sto\\252\\363)27(w)-320(i)-320(z)-321(w)28(oln)1(a)-321(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(il)1(i)-320({)-320(kt\\363rzy)-320(na)-320(p)-27(o-)]TJ -27.879 -13.549 Td[(wietrze)-299(w)-1(y)1(tc)27(hn)1(\\241\\242)-1(,)-298(kt\\363r)1(z)-1(y)-298(w)-299(sieniac)28(h)-299(al)1(b)-28(o)-298(i)-299(n)1(a)-299(i)1(z)-1(b)1(ie)-299(pr)1(z)-1(ysta)28(w)27(al)1(i)-299(i)-298(dal)1(e)-1(j)-298(d)1(ys)-1(k)1(ursa)]TJ 0 -13.55 Td[(ci\\241)-28(gn\\246li,)-354(in)1(s)-1(i)-354(za\\261)-355(ob\\252ap)1(iali)-354(s)-1(i)1(\\246)-355(z)-355(pr)1(z)-1(y)1(jac)-1(i)1(e)-1(lst)28(w)27(a,)-354(a)-354(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-354(j)1(u\\273)-355(si\\246)-355(p)-27(otac)-1(za\\252)-355(i)-354(p)-27(o)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(ac)27(h)-401(\\252b)-27(e)-1(m)-401(ora\\252)-401(alb)-28(o)-401(d)1(rugic)28(h)-401(jak)28(o)-401(ten)-401(bar)1(an)-401(tryk)56(a\\252)-401({)-402(co)-401(i)-401(nie)-402(d)1(z)-1(i)1(w)27(ota,)-401(b)-27(o)]TJ 0 -13.549 Td[(wiec)-1(ze)-1(r)1(z)-1(a)-333(b)28(y\\252a)-333(rz\\246)-1(sis)-1(t)1(o)-334(gor)1(z)-1(a\\252k)56(\\241)-334(p)1(rze)-1(p)1(latana.)]TJ 27.879 -13.549 Td[(Za)-300(s)-1(to\\252em)-301(p)-27(oz)-1(osta\\252)-301(in)1(o)-300(w)27(\\363)-55(jt)-300(z)-301(m\\252)-1(y)1(narze)-1(m,)-300(k\\252\\363)-28(cili)-300(si\\246)-301(i)-300(z)-301(gor\\241co\\261c)-1(i\\241)-300(ni)1(e)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(mie)-1(r)1(n\\241)-333(s)-1(k)56(ak)56(ali)-333(do)-333(sie)-1(b)1(ie)-334(j)1(ak)-333(jastrz\\246)-1(b)1(ie)-1(,)-333(a\\273)-334(J)1(am)27(br)1(o\\273)-1(y)-333(c)28(hcia\\252)-334(i)1(c)27(h)-333(w)28(\\363)-28(dk)56(\\241)-333(go)-28(dzi\\242.)]TJ 27.879 -13.55 Td[({)-333(Kru)1(c)27(h)28(t)28(y)-333(pi)1(ln)28(uj)1(,)-333(dziadu)1(,)-333(a)-334(d)1(o)-333(gos)-1(p)-27(o)-28(dar)1(z)-1(y)-333(ci)-333(z)-1(asie)-334({)-333(w)27(ar)1(kn\\241\\252)-333(w)27(\\363)-55(jt.)]TJ 0 -13.549 Td[(Od)1(s)-1(ze)-1(d)1(\\252)-396(mark)28(ot)1(n)28(y)83(,)-395(b)1(utelk)28(\\246)-396(d)1(o)-395(piersi)-395(c)-1(i)1(s)-1(n)1(\\241\\252,)-395(kusz)-1(t)28(yk)56(a\\252)-395(g\\252o\\261)-1(n)1(o)-395(i)-395(s)-1(zuk)56(a\\252,)-395(z)]TJ -27.879 -13.549 Td[(kim)-333(b)28(y)-333(s)-1(i)1(\\246)-334(m)-1(\\363g\\252)-333(p)-27(o)-334(p)1(rzyjaciels)-1(k)1(u)-333(nap)1(i\\242)-334(i)-333(nagad)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(M\\252\\363)-28(d)1(\\271)-241(za\\261)-241(wysypa\\252a)-240(si\\246)-241(w)-240(op\\252otki)1(,)-240(to)-240(trzym)-1(a)-55(j\\241c)-240(s)-1(i\\246)-240(wp)-28(\\363\\252)-240(na)-240(d)1(rog\\246)-241(wylegali)]TJ -27.879 -13.549 Td[(gw)28(arz)-1(y)1(\\242)-456(i)-454(gz)-1(i\\242)-455(si\\246)-456({)-454(a\\273)-1(e)-455(du)1(dn)1(ia\\252o)-455(o)-28(d)-454(prze)-1(gon)1(\\363)28(w)-456(i)-454(wrz)-1(a)28(wy)-455({)-455(n)1(o)-28(c)-455(b)28(y\\252a)-455(j)1(as)-1(n)1(a,)]TJ 0 -13.55 Td[(ksi\\246\\273)-1(yc)-316(wisia\\252)-316(n)1(ad)-316(sta)28(w)27(em)-316(tak)-315(m)-1(o)-28(cno)-315(b\\252ysz)-1(cz\\241c)-1(ym,)-315(\\273)-1(e)-316(i)-315(na)-56(j)1(s)-1(\\252ab)1(s)-1(ze)-316(kr\\246gi,)-315(c)-1(o)-315(s)-1(i\\246)]TJ 0 -13.549 Td[(roztacz)-1(a\\252y)-405(jakb)29(y)-406(o)-27(d)-405(uderze)-1(\\253)-405(\\261wiat\\252a,)-405(w)-1(i)1(dn)1(e)-406(b)28(y\\252y)-405(nib)29(y)-406(w)28(\\246)-1(\\273e)-406(p)-27(\\363\\252k)28(olisto)-406(sun)1(\\241c)-1(e)]TJ 0 -13.549 Td[(w)-408(cic)27(h)1(o\\261)-1(ci;)-408(p)1(rzymroz)-1(ek)-408(b)1(ra\\252)-408(n)1(iez)-1(gorszy)83(,)-407(grud)1(a)-408(si\\246)-408(\\252am)-1(a\\252a)-408(p)-27(o)-28(d)-407(nogami)-408(i)-407(sz)-1(ron)]TJ 0 -13.549 Td[(p)-27(obieli\\252)-333(dac)28(h)28(y)83(,)-333(i)-333(j)1(u\\273)-334(p)1(rzytrz\\241s)-1(a\\252)-333(s)-1(\\246dzielizn\\241)-333(z)-1(i)1(e)-1(mi\\246.)]TJ 27.879 -13.549 Td[(P)28(\\363\\271no)-333(ju)1(\\273)-334(b)28(y\\252o,)-333(b)-27(o)-334(p)1(ierws)-1(ze)-334(ku)1(ry)-333(o)-28(d)1(z)-1(yw)28(a\\252y)-333(s)-1(i\\246)-333(p)-28(o)-333(ws)-1(i)1(.)]TJ 0 -13.549 Td[(A)-333(w)-334(izbi)1(e)-334(t)28(ymc)-1(zas)-1(em)-334(cz)-1(yn)1(iono)-333(p)-27(orz\\241dek)-333(i)-334(szyk)28(o)27(w)28(ano)-333(d)1(o)-334(ta\\253)1(c)-1(\\363)28(w.)]TJ 0 -13.55 Td[(I)-348(sk)28(oro)-348(m)28(uzyk)56(anci)-348(p)-27(o)-28(d)1(jedli)-347(i)-347(niec)-1(o)-347(wyp)-28(o)-27(c)-1(z\\246)-1(li)1(,)-348(j)1(\\246)-1(li)-347(z)-348(cic)27(h)1(a)-348(pr)1(z)-1(egryw)28(a\\242)-1(,)-347(b)28(y)]TJ -27.879 -13.549 Td[(si\\246)-334(w)28(e)-1(se)-1(ln)1(icy)-334(p)-27(o\\261c)-1(i\\241)-27(gali)-333(do)-333(ku)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[(Ale)-455(n)1(ie)-455(p)-27(otrza)-455(ic)28(h)-455(b)29(y\\252o)-455(d)1(\\252ugo)-455(n)1(agania\\242,)-454(h)28(ur)1(m)-1(\\241)-454(s)-1(i)1(\\246)-455(s)-1(yp)1(n\\246li)-454(do)-454(iz)-1(b)29(y)83(,)-454(b)-28(o)]TJ -27.879 -13.549 Td[(skrzypk)1(i)-417(tak)-417(ni)1(e)-1(w)28(oli\\252y)-417(d)1(o)-417(ta\\253ca,)-417(\\273e)-418(j)1(u\\273)-417(s)-1(ame)-418(n)1(ogi)-417(ni)1(e)-1(s\\252y)-417({)-417(na)-417(d)1(armo)-417(jednak)1(,)]TJ 0 -13.549 Td[(par)1(ob)-28(cy)-356(cz)-1(ul)1(i)-356(s)-1(i\\246)-356(jes)-1(zc)-1(ze)-357(p)1(rzyc)-1(i)1(\\246)-1(\\273k)28(o)-356(p)-28(o)-356(wiec)-1(ze)-1(rzy)84(,)-356(p)-28(okr)1(\\246)-1(ci\\252)-356(s)-1(i)1(\\246)-357(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-357(j)1(e)-1(d)1(e)-1(n)-355(i)]TJ 0 -13.55 Td[(dr)1(ugi)-308(i)-308(wnet)-308(ucie)-1(k)56(ali)-308(d)1(o)-308(s)-1(ieni)-308(zaku)1(rz)-1(y)1(\\242)-309(pap)1(ieros)-1(a)-308(ab)-27(o)-308(i)-308(te)-309(\\261c)-1(ian)29(y)-309(mo)-28(cne)-308(p)-28(o)-27(dpi)1(e)-1(-)]TJ 0 -13.549 Td[(ra\\242.)]TJ\nET\nendstream\nendobj\n489 0 obj <<\n/Type /Page\n/Contents 490 0 R\n/Resources 488 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n488 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n493 0 obj <<\n/Length 8637      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(150)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Jagn)1(\\246)-270(wpr)1(o)27(w)28(adzi\\252y)-269(k)28(ob)1(ie)-1(t)28(y)-268(do)-269(k)28(omory)83(,)-268(B)-1(or)1(yna)-269(n)1(a)-269(przyzbie)-269(z)-270(D)1(om)-1(in)1(ik)28(o)28(w)27(\\241)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(,)-387(a)-387(co)-388(starsi)-387(zale)-1(gl)1(i)-387(\\252)-1(a)28(wy)-387(i)-387(k)56(\\241t)28(y)-387(i)-387(p)-28(or)1(e)-1(d)1(z)-1(ali)1(,)-387(\\273)-1(e)-388(i)1(no)-387(na)-387(izbie)-387(dziew)27(cz)-1(yn)29(y)]TJ 0 -13.549 Td[(osta\\252y)-334(i)-334(pr)1(z)-1(e\\261)-1(miew)27(a\\252y)-334(si\\246)-335(mi\\246dzy)-334(s)-1(ob)1(\\241,)-334(ale)-334(\\273)-1(e)-334(im)-335(si\\246)-334(to)-334(z)-1(mierz)-1(i)1(\\252o)-335(r)1(yc)27(h)1(\\252o,)-334(z)-1(ar)1(z)-1(\\241-)]TJ 0 -13.549 Td[(dzi\\252y)-333(zaba)28(w)27(\\246)-333(w)-334(gry)-333(r\\363\\273ne,)-333(b)28(yc)28(h)-333(pr)1(\\246)-1(d)1(z)-1(ej)-333(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-334(rozru)1(c)27(ha\\242.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-333(z)-1(ab)1(a)28(w)-1(i)1(ali)-333(s)-1(i)1(\\246)-334(w)-334(\\377)-55(C)-1(h)1(o)-28(dzi)-333(lis)-333(k)28(o\\252)-1(o)-333(d)1(rogi;)-333(ni)1(e)-334(ma)-334(r\\246ki)-333(an)1(i)-334(n)1(ogi\".)]TJ 0 -13.55 Td[(Na)-298(l)1(is)-1(a)-297(pr)1(z)-1(ebral)1(i)-298(w)-298(k)28(o\\273uc)28(h)-298(d)1(o)-298(g\\363r)1(y)-298(w)28(e)-1(\\252n)1(\\241)-298(Ja\\261k)55(a,)-297(z)-298(pr)1(z)-1(ez)-1(wisk)56(a)-298(Pr)1(z)-1(ewrotn)28(y)]TJ -27.879 -13.549 Td[({)-288(gap)-288(to)-288(b)29(y\\252,)-288(ni)1(e)-1(d)1(o)-56(j)1(da)-288(i)-288(p)1(rz)-1(e\\261m)-1(iewisk)28(o)-289(ca\\252e)-1(j)-287(ws)-1(i.)-287(P)28(arob)-287(ju\\273)-288(wyros\\252y)83(,)-288(a)-288(z)-288(ot)28(w)27(ar)1(t\\241)]TJ 0 -13.549 Td[(g\\246b\\241)-462(c)27(ho)-27(dzi\\252,)-462(z)-463(dzie\\242)-1(mi)-462(s)-1(i)1(\\246)-463(zaba)28(w)-1(i)1(a\\252,)-462(do)-462(w)-1(szys)-1(tk)1(ic)27(h)-462(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)-462(si\\246)-463(zalec)-1(a\\252,)-462(a)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(o)-366(g\\252)-1(u)1(pa)28(wy)83(,)-366(ale)-366(\\273)-1(e)-367(t)1(o)-367(j)1(e)-1(d)1(ynak)-366(n)1(a)-367(d)1(z)-1(iesi\\246)-1(ciu)-366(morgac)27(h)1(,)-366(to)-366(go)-367(ws)-1(z\\246dy)-366(pr)1(os)-1(il)1(i)]TJ 0 -13.549 Td[({)-333(z)-1(a)-55(j\\241cz)-1(ki)1(e)-1(m)-333(z)-1(a\\261)-334(b)29(y\\252a)-334(J\\363zia)-333(B)-1(or)1(yni)1(ank)56(a.)]TJ 27.879 -13.549 Td[(\\221mieli)-333(si\\246)-334(te\\273)-1(,)-333(\\261m)-1(i)1(e)-1(li)1(,)-334(m\\363)-56(j)-332(Je)-1(zus!)]TJ 0 -13.55 Td[(Co)-257(kr)1(ok,)-256(to)-257(Jasiek)-257(si\\246)-257(rozcz)-1(ap)1(ie)-1(r)1(z)-1(a\\252)-256(i)-257(b)-27(\\246)-1(c)-257(j)1(ak)-256(ta)-257(k\\252o)-28(d)1(a)-257(n)1(a)-257(ziem)-1(i\\246,)-256(\\273)-1(e)-257(m)28(u)-256(to)-257(i)]TJ -27.879 -13.549 Td[(nogi)-291(p)-27(o)-28(d)1(s)-1(ta)28(wiali)1(,)-292(a)-291(J\\363zia)-291(tak)-291(utr)1(a)-1(f)1(ni)1(e)-292(kica\\252a,)-291(s)-1(ta)28(w)28(a\\252)-1(a)-291(s\\252upk)56(a)-291(i)-291(w)27(ar)1(gam)-1(i)-291(r)1(uc)27(h)1(a\\252a,)]TJ 0 -13.549 Td[(ni)1(c)-1(zym)-334(\\273ywy)-333(z)-1(a)-55(j\\241c.)]TJ 27.879 -13.549 Td[(A)-333(p)-28(otem)-334(w)-333(\\377)-56(P)1(rze)-1(p)1(i\\363rk)28(\\246\".)]TJ 0 -13.549 Td[(Nastk)55(a)-421(Go\\252\\246bian)1(k)56(a)-422(p)1(ro)28(w)27(ad)1(z)-1(i\\252a,)-421(a)-421(tak)-421(s)-1(i\\246)-422(zwija\\252a,)-421(tak)-421(ra\\271no)-421(\\261)-1(miga\\252a)-421(p)-28(o)]TJ -27.879 -13.55 Td[(izbie,)-336(\\273)-1(e)-337(n)1(ij)1(ak)-337(j)1(e)-1(j)-336(c)28(h)28(yci\\242)-337(n)1(ie)-337(mogli,)-336(a\\273)-337(s)-1(ama)-336(im)-337(w\\252az)-1(i)1(\\252)-1(a)-336(w)-337(r)1(\\246)-1(ce)-1(,)-336(b)28(y)1(c)27(h)-336(in)1(o)-337(ob)1(ta\\253-)]TJ 0 -13.549 Td[(co)27(wyw)28(a\\242)-334(k)28(o\\252o.)]TJ 27.879 -13.549 Td[(I)-333(w)-334(\\377)-56(\\221)1(wink)28(\\246\")-333(s)-1(i\\246)-333(z)-1(ab)1(a)27(wiali)1(.)]TJ 0 -13.549 Td[(A)-407(na)-407(os)-1(tatek)-407(kt\\363ry\\261)-407(z)-408(dru)1(\\273)-1(b)-27(\\363)28(w,)-408(wid)1(z)-1(i)-407(mi)-408(si\\246,)-408(T)84(om)-1(ek)-408(W)84(ac)27(h)1(nik)1(,)-408(b)-27(o)-28(ciana)]TJ -27.879 -13.549 Td[(p)-27(ok)55(azyw)28(a\\252;)-445(w)-445(p)1(\\252ac)27(h)28(t\\246)-445(n)1(a)-445(g\\252o)28(w)27(\\246)-445(si\\246)-445(p)1(rzy)28(o)-1(k)1(ry\\252,)-444(a)-445(sp)-28(o)-27(d)-445(n)1(iej)-444(z)-1(a)-444(dzi\\363b)-444(d\\252ugi)-444(kij)]TJ 0 -13.55 Td[(wypu)1(\\261)-1(ci\\252)-398(i)-398(kl)1(e)-1(k)28(ota\\252)-398(tak)-398(zm)27(y)1(\\261)-1(ln)1(ie,)-398(kiej)-398(b)-27(o)-28(c)-1(i)1(e)-1(k)-398(p)1(ra)28(wdziwy)83(,)-398(a\\273)-398(J\\363zia,)-398(Witek)-398(i)-398(co)]TJ 0 -13.549 Td[(m\\252o)-28(dsz)-1(e)-333(z)-1(acz)-1(\\246\\252y)-333(z)-1(a)-333(nim)-333(goni\\242)-333(i)-334(k)1(rzyc)-1(ze)-1(\\242:)]TJ 27.879 -13.549 Td[(Kle,)-392(kl)1(e)-1(,)-392(k)1(le)-1(,)-392(Tw)28(o)-56(j)1(a)-392(m)-1(atk)56(a)-392(w)-392(pi)1(e)-1(kl)1(e)-1(!)-392(Co)-392(ona)-392(tam)-392(rob)1(i?)-392(Dz)-1(i)1(e)-1(ciom)-392(kluski)]TJ -27.879 -13.549 Td[(dr)1(obi.)-333(Co)-333(z)-1(\\252ego)-334(zrob)1(i\\252a?)-334(Dziec)-1(i)-333(p)-27(om)-1(or)1(z)-1(y)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[(I)-391(roz)-1(b)1(iega\\252y)-392(si\\246)-392(z)-391(w)-1(r)1(z)-1(askiem)-1(,)-391(i)-391(kr)1(y\\252y)-391(p)-28(o)-391(k)56(\\241tac)27(h)-391(j)1(ak)-391(kur)1(opatki)1(,)-392(b)-27(o)-391(goni\\252,)]TJ -27.879 -13.55 Td[(dziob)1(a\\252)-334(i)-333(b)1(i\\252)-334(skrzyd)1(\\252)-1(ami.)]TJ 27.879 -13.549 Td[(Iz)-1(b)1(a)-333(a\\273)-334(s)-1(i)1(\\246)-334(trz\\246)-1(s\\252a)-334(o)-27(d)-333(t)28(yc)27(h)-333(\\261m)-1(i)1(e)-1(c)28(h\\363)28(w,)-334(k)1(rzyk)56(a\\253)-333(i)-333(prze)-1(gon)1(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(Z)-341(dob)1(r\\241)-341(go)-28(d)1(z)-1(in)1(\\246)-342(tr)1(w)27(a\\252a)-341(zaba)28(w)27(a,)-340(gdy)-341(starsz)-1(y)-341(d)1(ru)1(\\273)-1(b)1(a)-341(da\\252)-341(z)-1(n)1(ak,)-341(b)28(y)-341(p)1(rzyci-)]TJ -27.879 -13.549 Td[(c)27(h)1(li.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-285(wypr)1(o)27(w)28(adza\\252y)-286(z)-286(k)28(omory)-285(Jagusi\\246)-286(nak)1(ryt\\241)-286(b)1(ia\\252\\241)-286(p)1(\\252ac)27(h)28(t\\241)-285(i)-286(u)1(s)-1(ad)1(z)-1(i\\252y)]TJ -27.879 -13.55 Td[(j\\241)-446(w)-448(p)-27(o\\261ro)-28(d)1(ku)-447(n)1(a)-447(dzie\\273)-1(y)-447(p)-27(okr)1(yte)-1(j)-446(pi)1(e)-1(rzyn)1(\\241)-447({)-447(dr)1(uhn)29(y)-447(p)-27(orw)28(a\\252)-1(y)-446(s)-1(i\\246)-447(n)1(ib)28(y)-447(to)-447(j)1(\\241)]TJ 0 -13.549 Td[(o)-28(d)1(bi\\242,)-416(ale)-417(starsz)-1(e)-417(i)-416(c)28(h\\252opi)-416(b)1(roni)1(li,)-416(wi\\246)-1(c)-416(s)-1(i\\246)-416(z)-1(b)1(i\\252y)-417(n)1(apr)1(z)-1(ec)-1(i)1(w)-417(i)-416(s)-1(m)28(utn)1(o,)-416(jakb)28(y)-416(z)]TJ 0 -13.549 Td[(p\\252ak)56(an)1(ie)-1(m)-333(w)-334(g\\252os)-1(ac)28(h)-333(z)-1(a\\261pi)1(e)-1(w)28(a\\252y:)]TJ 27.879 -13.549 Td[(A)-260(j)1(u\\273)-260(c)-1(i)-260(t)1(o,)-260(ju)1(\\273)-1(!)-259(P)28(o)-260(wianec)-1(zku)-259(tu\\273)-260(-)-260(Korn)1(e)-1(t)-260(wit)28(y)84(.)-260(c)-1(zepiec)-261(szyt)28(y)83(,)-260(T)84(o)-260(la)-260(c)-1(i)1(e)-1(b)1(ie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(z)-1(w)28(oit)28(y)83(,)-333(T)83(o)-333(na)-333(g\\252\\363)28(w)-1(k)28(\\246)-333(w)-1(\\252\\363\\273!..)1(.)]TJ 27.879 -13.549 Td[(Od)1(s)-1(\\252on)1(ili)-333(j\\241)-333(wte)-1(d)1(y)83(.)]TJ 0 -13.55 Td[(Cz)-1(epi)1(e)-1(c)-243(ju)1(\\273)-243(m)-1(i)1(a\\252)-1(a)-242(na)-242(z)-1(win)1(i\\246)-1(t)28(yc)28(h,)-242(gru)1(b)28(yc)27(h)-242(w)28(ark)28(o)-28(cz)-1(ac)28(h,)-242(ale)-243(jes)-1(zc)-1(ze)-243(s)-1(i\\246)-243(u)1(ro)-28(d)1(-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)1(s)-1(za)-459(w)-1(yd)1(a\\252a)-459(w)-460(t)28(ym)-459(przyb)1(rani)1(u,)-459(b)-27(o)-460(i)-459(r)1(oz)-1(e\\261)-1(mian)1(a)-460(b)29(y\\252a,)-459(w)27(es)-1(o\\252a)-459(i)-459(jar)1(z)-1(\\241cymi)]TJ 0 -13.549 Td[(o)-28(cz)-1(ami)-333(w)27(o)-27(dzi\\252a)-334(p)-27(o)-333(w)-1(szys)-1(tk)1(ic)27(h)1(.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-273(z)-1(agr)1(a\\252a)-274(w)28(olno)-273(i)-273(c)-1(a\\252y)-273(n)1(ar\\363)-28(d)-273(ze)-1(b)1(ran)28(y)84(,)-273(s)-1(tar)1(z)-1(y)-273(i)-273(m\\252)-1(o)-27(dzi,)-273(dzie)-1(ci)-273(na)28(w)28(e)-1(t,)]TJ -27.879 -13.549 Td[(za\\261)-1(p)1(ie)-1(w)28(ali)-402(\\377)-56(Chmiela\")-403(j)1(e)-1(d)1(n)28(ym)-403(ogromn)28(y)1(m)-403(g\\252)-1(osem)-403(rado\\261c)-1(i)1(.)-403(A)-402(p)-28(o)-402(prze)-1(\\261pi)1(e)-1(w)28(aniu)]TJ 0 -13.55 Td[(sam)-1(e)-334(i)1(no)-333(gos)-1(p)-27(o)-28(d)1(ynie)-333(bra\\252y)-333(j)1(\\241)-334(d)1(o)-334(t)1(a\\253ca.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-394(\\273)-1(e)-395(sobie)-395(j)1(u\\273)-395(p)-28(o)-27(dp)1(i\\252a,)-395(uj)1(\\246)-1(\\252a)-394(s)-1(i\\246)-395(p)-27(o)-28(d)-394(b)-28(oki)-394(i)-395(n)29(u\\273)-395(do)-395(n)1(iej)-395(p)1(rzy-)]TJ\nET\nendstream\nendobj\n492 0 obj <<\n/Type /Page\n/Contents 493 0 R\n/Resources 491 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 478 0 R\n>> endobj\n491 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n496 0 obj <<\n/Length 9704      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(151)]TJ -358.232 -35.866 Td[(\\261piewk)55(ami)-333(rzuca\\242)-1(:)]TJ 27.879 -13.549 Td[(Da)-465(\\273)-1(eb)28(ym)-465(ja)-465(wie)-1(d)1(z)-1(i)1(a\\252)-1(a,)-465(Da)-465(\\273e)-466(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-1(sz)-466(za)-466(wdo)28(w)28(c)-1(a,)-465(Da)-465(uzwi\\252ab)28(ym)-465(c)-1(i)]TJ -27.879 -13.549 Td[(wieniec)-1(,)-333(Da)-333(z)-334(sam)-1(ego)-333(ja\\252o)28(w)27(ca!)]TJ 27.879 -13.549 Td[(A)-333(insz)-1(e)-333(jes)-1(zc)-1(ze)-334(bar)1(z)-1(ej)-333(pr)1(z)-1(y)1(t)27(y)1(kliw)28(e)-334(i)-333(k)28(ol\\241ce)-1(.)]TJ 0 -13.549 Td[(Ale)-382(n)1(ikt)-381(na)-381(to)-382(n)1(ie)-382(bacz)-1(y)1(\\252)-1(,)-381(b)-27(o)-382(j)1(u\\273)-382(m)28(uz)-1(y)1(k)55(an)1(c)-1(i)-381(rzn\\246li)-381(z)-1(e)-382(wsz)-1(y)1(s)-1(tki)1(e)-1(j)-381(mo)-28(cy)-382(i)]TJ -27.879 -13.55 Td[(nar)1(\\363)-28(d)-271(w)-272(tan)28(y)-272(sze)-1(d)1(\\252)-1(;)-271(z)-1(ad)1(ud)1(nia\\252o)-271(z)-273(n)1(ag\\252a,)-272(j)1(akb)28(y)-272(sto)-272(ce)-1(p)-27(\\363)28(w)-272(bi)1(\\252)-1(o)-271(w)-272(b)-28(oi)1(s)-1(k)28(o,)-271(i)-272(n)1(ie)-1(r)1(oz)-1(-)]TJ 0 -13.549 Td[(pl)1(\\241tana)-303(g\\246)-1(st)28(w)27(a)-303(z)-1(ar)1(oi\\252a)-304(si\\246)-304(w)-304(izbi)1(e)-1(,)-303(b)-27(o)-304(j)1(e)-1(d)1(ni)-303(z)-1(a)-303(dr)1(ugimi)-303(s)-1(zli,)-303(par)1(a)-304(za)-304(p)1(ar\\241,)-303(g\\252o)27(w)28(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-399(g\\252o)28(wie)-1(,)-399(a)-399(p)-27(\\246)-1(d)1(u)-399(nab)1(ierali)-399({)-399(w)-1(i)1(\\246)-1(c)-399(k)55(ap)-27(ot)28(y)-399(pu)1(\\261)-1(cili)-399(n)1(a)-400(wiatr)1(,)-399(k)28(o\\252ys)-1(al)1(i)-400(si\\246)-400(sze)-1(-)]TJ 0 -13.549 Td[(rok)28(o,)-315(p)1(rzybi)1(jali)-315(ob)-27(c)-1(asami,)-315(k)56(ap)-28(elu)1(s)-1(zam)-1(i)-315(p)-27(otr)1(z)-1(\\241c)27(h)1(ali,)-315(a)-315(cz)-1(ase)-1(m)-315(kt\\363r)1(y\\261)-316(p)1(ie)-1(snec)-1(zk)56(\\241)]TJ 0 -13.549 Td[(h)28(u)1(kn\\241\\252,)-417(to)-418(dzieuc)27(h)29(y)-418(z)-1(a)28(wied\\252y)-418(\\377d)1(a)-418(dan)1(a\")-418(i)-418(wili)-417(s)-1(i)1(\\246)-419(coraz)-418(pr)1(\\246)-1(d)1(z)-1(ej)-418(,)-417(k)28(ole)-1(b)1(ali)-418(d)1(o)]TJ 0 -13.549 Td[(taktu)-314(i)-316(szli)-315(w)-316(taki)-315(t)1(an)-315(s)-1(zybk)1(i)-315(,)-316(zadzier\\273ys)-1(t)28(y)-315(,)-315(k)28(o\\252uj)1(\\241c)-1(y)84(,)-315(z)-1(ap)1(ami\\246)-1(ta\\252y)84(,)-315(\\273)-1(e)-315(ju\\273)-315(i)-315(nie)]TJ 0 -13.55 Td[(roze)-1(zna\\252)-296(nik)28(ogo)-296(w)-297(c)-1(i\\273bi)1(e)-1(;)-296(a)-297(co)-297(s)-1(k)1(rzypki)-296(h)28(u)1(kn\\246\\252y)-297(n)29(ut\\241)-297(d)1(rygl)1(iw)27(\\241,)-296(to)-297(sto)-297(h)1(o\\252ub)-27(c)-1(\\363)28(w)]TJ 0 -13.549 Td[(bi)1(\\252o)-335(w)-335(p)-27(o)-28(d)1(\\252)-1(og\\246,)-334(s)-1(to)-334(g\\252os)-1(\\363)28(w)-335(kr)1(z)-1(y)1(k)55(a\\252o)-334(z)-335(m)-1(o)-27(c)-1(\\241)-334(i)-335(sto)-335(n)1(aro)-28(d)1(u)-334(z)-1(a)28(wraca\\252o)-335(w)-335(miejsc)-1(u)1(,)]TJ 0 -13.549 Td[(jak)-405(ki)1(e)-1(b)28(y)-405(wic)27(h)1(e)-1(r)-405(zakr\\246c)-1(i)1(\\252)-406({)-405(\\273)-1(e)-406(in)1(o)-406(f)1(ur)1(k)28(ot)-406(sz)-1(ed\\252)-405(o)-28(d)-405(k)56(ap)-28(ot)1(,)-406(w)28(e)-1(\\252n)1(iak)28(\\363)28(w)-1(,)-405(c)28(h)28(uste)-1(k)1(,)]TJ 0 -13.549 Td[(wiew)27(a)-55(j\\241cyc)27(h)-333(p)-27(o)-334(i)1(z)-1(b)1(ie)-1(,)-333(n)1(ib)28(y)-333(te)-334(p)1(taki)-333(b)1(arwis)-1(te.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(zed\\252)-248(p)1(ac)-1(ierz,)-248(d)1(w)27(a)-247(i)-248(tr)1(z)-1(y)84(,)-248(a)-247(oni)-247(c)-1(i)1(\\246)-1(giem)-248(ta\\253)1(c)-1(o)28(w)27(al)1(i)-248(b)-27(e)-1(z)-248(wytc)28(hn)1(ie)-1(n)1(ia,)-247(b)-28(ez)]TJ -27.879 -13.55 Td[(pr)1(z)-1(es)-1(t)1(anku)1(,)-335(p)-28(o)-27(d\\252oga)-335(du)1(dn)1(i\\252a,)-335(\\261c)-1(ian)29(y)-335(s)-1(i)1(\\246)-336(tr)1(z)-1(\\246s)-1(\\252y)-335(i)-334(iz)-1(b)1(a)-335(w)-1(r)1(z)-1(a\\252a)-335(h)28(u)1(kiem,)-335(a)-335(o)-28(c)27(h)1(ota)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-293(r)1(os)-1(\\252a,)-292(jak)-292(te)-293(w)27(o)-27(dy)-292(p)-28(o)-292(ul)1(e)-1(wie)-293({)-292(to)-293(in)1(o)-293(k)28(ot\\252o)28(w)28(a\\252o)-293(si\\246)-293(i)-293(p)1(rze)-1(w)28(ala\\252o)-293(p)-27(o)-292(iz)-1(b)1(ie.)]TJ 27.879 -13.549 Td[(A)-304(gdy)-303(s)-1(k)28(o\\253)1(c)-1(zyli,)-304(o)-27(dp)1(ra)28(w)27(o)28(w)28(a\\242)-305(p)-27(o)-28(c)-1(z\\246li)-304(obr)1(z)-1(\\241d)1(ki)-304(r\\363\\273ne,)-304(jak)-303(to)-304(jes)-1(t)-304(zwyc)-1(za)-56(j)1(-)]TJ -27.879 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(y)-333(o)-28(cz)-1(epi)1(nac)27(h)1(.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-333(Jagusia)-333(m)27(u)1(s)-1(ia\\252a)-333(wkup)29(yw)27(a\\242)-333(s)-1(i\\246)-333(do)-333(gos)-1(p)-27(o)-28(d)1(y\\253!)]TJ 0 -13.55 Td[(A)-231(p)-27(otem)-231(jedn)28(ym)-231(ci\\241)-28(gi)1(e)-1(m)-231(o)-28(d)1(pra)28(wiali)-230(dr)1(ugie)-231(ce)-1(remonie;)-231(a\\273)-231(p)1(arob)-27(c)-1(y)-230(ucz)-1(yn)1(ili)]TJ -27.879 -13.549 Td[(d\\252u)1(gie)-395(p)-27(o)28(w)-1(r)1(\\363s)-1(\\252o)-394(z)-395(ni)1(e)-1(om\\252\\363)-28(conej)-394(psz)-1(enicy)-394(i)-394(opasali)-394(nim)-394(w)-1(i)1(e)-1(lgac)28(hn)1(e)-395(k)28(o\\252o,)-394(kt\\363re)]TJ 0 -13.549 Td[(dr)1(uh)1(n)28(y)-410(p)1(iln)1(ie)-411(t)1(rz)-1(y)1(m)-1(a\\252y)-409(i)-410(s)-1(t)1(rz)-1(eg\\252y)83(,)-409(a)-410(Jagusia)-410(sto)-56(j)1(a\\252a)-410(w)-410(p)-28(o\\261ro)-28(d)1(ku)1(:)-410(c)27(h)1(c)-1(ia\\252)-410(z)-410(n)1(i\\241)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-430(ta\\253co)28(w)27(a\\242,)-431(p)-27(o)-28(d)1(c)27(ho)-27(dzi\\242)-431(m)27(u)1(s)-1(ia\\252,)-430(wyryw)28(a\\242)-431(przez)-432(mo)-28(c)-431(i)-430(h)28(ula\\242)-431(w)-431(k)28(ol)1(e)-1(,)-430(nie)]TJ 0 -13.549 Td[(bacz\\241c)-1(,)-333(\\273e)-334(go)-334(ta)-333(i)-333(pr)1(a\\273)-1(y)1(\\252)-1(y)-333(d)1(ru)1(gim)-1(i)-333(p)-27(o)28(wr\\363s)-1(\\252ami)-333(p)-28(o)-333(s\\252abi\\271nie.)]TJ 27.879 -13.55 Td[(Za\\261)-274(n)1(a)-274(d)1(ok)28(o\\253cz)-1(enie)-273(m)-1(\\252yn)1(arzo)27(w)28(a)-273(i)-274(W)84(ac)27(h)1(nik)28(o)28(w)28(a)-274(zacz)-1(\\246\\252y)-274(zbi)1(e)-1(ra\\242)-273(na)-273(c)-1(ze)-1(p)1(iec)-1(.)]TJ -27.879 -13.549 Td[(Pi)1(e)-1(r)1(w)-1(sz)-1(y)-296(w)28(\\363)-56(j)1(t)-297(rzuci\\252)-296(z)-1(\\252ot)28(y)-296(pieni)1(\\241dz)-297(na)-296(talerz,)-297(a)-296(z)-1(a)-296(ni)1(m)-1(,)-296(kiej)-296(ten)-297(gr)1(ad)-296(br)1(z)-1(\\246kliwy)84(,)]TJ 0 -13.549 Td[(p)-27(os)-1(yp)1(a\\252y)-333(s)-1(i\\246)-333(s)-1(rebr)1(ne)-334(r)1(ub)1(le)-334(i)-333(jak)28(o)-333(te)-334(l)1(is)-1(tecz)-1(ki)-333(n)1(a)-334(j)1(e)-1(sieni,)-333(p)1(apierki)-333(l)1(e)-1(cia\\252y)83(.)]TJ 27.879 -13.549 Td[(Wi\\246ce)-1(j)-333(n)1(i\\271)-1(l)1(i)-333(trz)-1(y)1(s)-1(ta)-333(z\\252)-1(ot)28(y)1(c)27(h)-333(ze)-1(b)1(rali!)]TJ 0 -13.549 Td[(Si)1(e)-1(ln)29(y)-479(k)55(ar)1(w)27(as)-479(grosz)-1(a,)-479(ale)-479(m)27(u)1(c)27(ha)-479(to)-479(la)-479(Domini)1(k)28(o)27(w)28(ej,)-479(ni)1(e)-480(sto)-56(j)1(a\\252)-1(a)-479(on)1(a)-480(o)]TJ -27.879 -13.55 Td[(dar)1(m)-1(o)-27(c)27(h)28(y)84(,)-242(b)-27(o)-242(sw)27(o)-55(jego)-242(m)-1(i)1(a\\252)-1(a)-241(dosy\\242)-1(,)-241(jeno)-242(\\273e)-242(la)-242(Jagu)1(s)-1(i)-241(tak)-242(si\\246)-242(o)-28(c)27(h)1(otnie)-242(sz)-1(k)28(o)-28(d)1(o)28(w)27(ali)1(,)]TJ 0 -13.549 Td[(to)-253(j)1(\\241)-253(ca\\252kiem)-253(roz)-1(ebr)1(a\\252o,)-253(\\273e)-253(rze)-1(wliw)28(e)-1(go)-252(p\\252ak)56(ania)-252(ws)-1(tr)1(z)-1(yma\\242)-253(nie)-253(mog\\252a;)-253(k)1(rzykn\\246\\252a)]TJ 0 -13.549 Td[(na)-308(c)28(h\\252opak)28(\\363)28(w,)-308(b)28(y)-308(p)-27(o)-28(da)28(w)28(ali)-308(gorza\\252k)28(\\246)-1(,)-308(i)-308(sam)-1(a)-308(j\\246\\252a)-308(c)-1(z\\246)-1(sto)28(w)27(a\\242,)-308(pr)1(z)-1(epij)1(a\\242)-309(i)-308(pr)1(z)-1(ez)-309(te)]TJ 0 -13.549 Td[(\\252z)-1(y)84(,)-333(c)-1(o)-333(j)1(e)-1(j)-333(cie)-1(k)1(\\252y)83(,)-333(ku)1(m)27(y)-333(i)-333(ku)1(m)-1(\\363)28(w)-334(ca\\252o)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[({)-283(P)1(ijcie,)-283(s\\241sie)-1(d)1(z)-1(i)1(!...)-282(pij)1(ta,)-282(lud)1(z)-1(ie)-283(k)28(o)-27(c)27(han)1(e)-1(,)-282(br)1(at)28(y)-283(r)1(o)-28(dzone!...)-282(Jak)28(ob)28(y)1(m)-283(z)-1(wie-)]TJ -27.879 -13.549 Td[(sn\\246)-264(w)-263(se)-1(rcu)-263(mia\\252a...)-263(za)-263(Jagusin)1(e)-264(zdro)28(wie...)-263(j)1(e)-1(sz)-1(cz)-1(e)-263(te)-1(n)-262(kielisz)-1(ek...)-263(j)1(e)-1(sz)-1(cze)-1(..)1(.)-263({)-264(a)-263(za)]TJ 0 -13.55 Td[(ni)1(\\241)-284(k)28(o)27(w)28(al)-284(p)1(rz)-1(epi)1(ja\\252)-284(z)-285(d)1(ru)1(gim)-1(i)-283(i)-284(c)27(h)1(\\252)-1(op)1(aki)-284(z)-284(os)-1(ob)1(na)-284({)-284(b)-27(o)-28(\\242)-285(n)1(aro)-28(d)1(u)-284(b)28(y)1(\\252a)-285(g\\246st)27(w)28(a)-284(ni)1(e)-1(-)]TJ 0 -13.549 Td[(ma\\252a;)-291(Jagu\\261)-291(zno)28(wu)-291(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)27(a\\252a)-291(o)-27(d)-291(siebie)-291(za)-291(dob)1(ro\\261\\242)-292(i)-290(c)-1(o)-291(starsz)-1(y)1(c)27(h)-290(p)-28(o)-27(dejmo)27(w)28(a\\252a)]TJ 0 -13.549 Td[(za)-334(k)28(olan)1(a!...)]TJ 27.879 -13.549 Td[(Za)28(w)-1(r)1(z)-1(a\\252o)-291(w)-291(izbie,)-291(b)-27(o)-291(i)-291(kieliszki)-291(g\\246s)-1(to)-291(sz)-1(\\252y)-291(z)-291(r\\241k)-290(do)-291(r\\241k,)-290(i)-291(gor\\241co\\261)-1(\\242)-291(bu)1(c)27(h)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(ze)-242(ws)-1(zystkic)27(h)1(,)-241(i)-241(u)1(c)-1(iec)27(h)1(a!)-241(Tw)27(arze)-242(si\\246)-241(rumieni\\252y)84(,)-241(o)-28(cz)-1(y)-241(p)-27(o\\252yskiw)28(a\\252y)-241(i)-241(s)-1(erca)-241(s)-1(i\\246)-241(rw)28(a\\252y)]TJ 0 -13.55 Td[(do)-321(se)-1(r)1(c)-1(,)-321(p)-27(o)-321(br)1(ate)-1(r)1(s)-1(ku)1(,)-321(p)-27(o)-321(s)-1(\\241sie)-1(d)1(z)-1(k)1(u.)-321(Hej!)-321(Raz)-321(k)28(oz)-1(ie)-321(\\261)-1(mier\\242,)-321(t)28(yle)-322(cz\\252)-1(o)28(wiek)28(o)28(w)27(ego,)]TJ 0 -13.549 Td[(co)-458(u\\273yj)1(e)-458(z)-459(b)1(ratami,)-457(c)-1(o)-457(s)-1(i\\246)-458(p)-27(o)28(w)27(ese)-1(li)-457(i)-458(zabaczy)-458(o)-457(\\261)-1(wiec)-1(ie)-458(ca\\252ym!)-458(In)1(o)-458(k)28(ostuc)27(h)1(a)]TJ\nET\nendstream\nendobj\n495 0 obj <<\n/Type /Page\n/Contents 496 0 R\n/Resources 494 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n494 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n500 0 obj <<\n/Length 10259     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(152)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(bi)1(e)-1(r)1(z)-1(e)-313(k)56(a\\273)-1(d)1(e)-1(go)-312(z)-313(os)-1(ob)1(na,)-312(a)-313(n)1(a)-313(w)28(es)-1(ela)-313(tr)1(z)-1(a)-312(c)27(h)1(o)-28(dzi\\242)-313(ku)1(p\\241)-312(i)-313(r)1(ado)28(w)27(a\\242)-313(si\\246)-313(k)28(ompan)1(i\\241)]TJ 0 -13.549 Td[(ca\\252)-1(\\241.)-368(K)1(up)1(am)-1(i)-368(te\\273)-369(zalegali)-368(izb)-28(\\246,)-368(pr)1(z)-1(epij)1(ali)-368(i)-368(rai)1(li)-368(w)27(es)-1(o\\252o,)-368(a)-368(k)56(a\\273)-1(d)1(e)-1(n)-367(s)-1(w)28(o)-56(j)1(e)-369(g\\252o\\261)-1(n)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(ek\\252ada\\252,)-319(\\273)-1(e)-320(j)1(u\\273)-320(i)-320(j)1(e)-1(d)1(e)-1(n)-319(dr)1(ugiego)-320(n)1(ie)-320(s)-1(\\252ysza\\252)-1(,)-319(ale)-320(ni)1(c)-321(t)1(o,)-320(b)-27(o)-320(i)-320(t)1(ak)-320(jedn)1(o)-320(cz)-1(u)1(li,)-319(i)]TJ 0 -13.549 Td[(jedn)1(a)-333(rado\\261\\242)-334(ic)28(h)-333(s)-1(p)1(rz\\246)-1(ga\\252a)-333(do)-333(kup)29(y)-333(i)-334(wskro\\261)-333(prze)-1(n)1(ik)56(a\\252a!)]TJ 27.879 -13.549 Td[(A)-325(kt\\363ren)-325(ma)-1(sz)-326(sm)27(u)1(tki,)-325(na)-325(ju)1(tro)-325(je)-326(osta)28(w,)-326(d)1(z)-1(i)1(s)-1(ia)-55(j)-325(s)-1(i)1(\\246)-326(z)-1(ab)1(a)28(w)-1(i)1(a)-56(j,)-325(p)1(rzyjaciel-)]TJ -27.879 -13.55 Td[(st)27(w)28(a)-358(u)1(\\273)-1(yw)28(a)-56(j)1(,)-358(d)1(usz)-1(\\246)-358(cie)-1(sz!)-358(Jak)28(o)-358(t)1(e)-1(j)-357(\\261)-1(wi\\246tej)-358(ziem)-1(i)-357(P)28(an)-357(Je)-1(zus)-358(d)1(a)-56(je)-358(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(anie)]TJ 0 -13.549 Td[(p)-27(o)-363(letn)1(im)-363(ro)-27(dze)-1(n)1(iu,)-362(tak)-362(i)-362(c)-1(z\\252o)27(wiek)28(o)28(wi)-363(go)-27(dzi)-363(si\\246)-363(wyp)-27(o)-28(cz)-1(\\241\\242)-363(j)1(e)-1(sieni\\241,)-362(ki)1(e)-1(j)-362(w)-362(p)-28(olu)]TJ 0 -13.549 Td[(obr)1(obi\\252.)-407(A)-408(k)1(ie)-1(j)-407(masz)-1(,)-407(c)-1(z\\252o)28(w)-1(i)1(e)-1(ku)1(,)-408(b)1(rogi)-407(p)-28(e\\252ne)-408(i)-407(sto)-28(do\\252y)-407(p)-28(e\\252ne)-408(w)28(a\\273)-1(n)1(e)-1(go)-407(jak)28(o)-407(to)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(o)-371(zb)-28(o\\273a,)-370(c)-1(o)-370(in)1(o)-371(n)1(a)-371(ce)-1(p)29(y)-370(c)-1(ze)-1(k)56(a,)-370(to)-370(s)-1(e)-371(u)1(\\273)-1(yw)28(a)-56(j)-369(z)-1(a)-370(le)-1(t)1(nie)-371(t)1(rud)1(y)83(,)-370(za)-371(h)1(aro)28(w)27(an)1(ie,)]TJ 0 -13.549 Td[(za)-334(mitr)1(\\246)-1(gi!)]TJ 27.879 -13.549 Td[(T)83(ak)-343(sobie)-343(p)-28(or)1(e)-1(d)1(z)-1(ali)-343(j)1(e)-1(d)1(ni)1(,)-343(a)-344(i)1(nni)-343(zno)28(wu)-343(r)1(\\363\\273)-1(n)1(e)-344(s)-1(w)28(o)-56(j)1(e)-344(\\273ale)-344(i)-343(spr)1(a)27(wy)-343(wyw)28(o-)]TJ -27.879 -13.55 Td[(dzili)-340(p)1(rze)-1(d)-339(s)-1(ob)1(\\241;)-340(dru)1(dzy)-340(z)-1(asie,)-340(c)-1(o)-340(to)-340(ni)1(e)-341(t)28(ylk)28(o)-340(kr)1(o)27(wi)-340(ogon)-340(wid)1(z)-1(i)1(e)-1(li)-340(ab)-27(o)-340(te)-341(b)1(abie)]TJ 0 -13.549 Td[(ws)-1(zy)83(,)-401(k)28(o\\252o)-401(s)-1(tar)1(e)-1(go)-401(Szymona)-401(s)-1(i\\246)-401(kup)1(ili)-401(i)-401(p)-28(ogad)1(yw)28(ali)-401(o)-402(cz)-1(asac)27(h)-401(d)1(a)27(wn)28(y)1(c)27(h,)-401(\\261w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(\\273yc)27(h)-319(kr)1(z)-1(ywdac)28(h,)-319(p)-27(o)-28(datk)56(ac)27(h)-319(i)-319(s)-1(p)1(ra)28(w)28(ac)27(h)-319(gromady)-319(c)-1(a\\252ej,)-319(a)-320(z)-320(cic)27(h)1(a)-320(m\\363)28(w)-1(i)1(li,)-319(ile)-320(\\273e)-320(i)]TJ 0 -13.549 Td[(o)-333(w)27(\\363)-55(jto)28(wyc)27(h)-333(spr)1(a)28(w)-1(k)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-263(in)1(o)-263(d)1(o)-263(\\273adn)1(e)-1(j)-262(ku)1(p)28(y)-262(nie)-263(p)1(rzys)-1(ta)28(w)28(a\\252,)-263(c)28(ho)-28(d)1(z)-1(i)1(\\252)-263(o)-28(d)-262(jedn)29(yc)27(h)-262(d)1(o)-263(dr)1(ugic)28(h,)]TJ -27.879 -13.55 Td[(a)-267(ci\\246gie)-1(m)-267(o)-28(czym)-1(a)-266(z)-1(a)-267(Jagn)1(\\241)-267(w)28(o)-28(dzi\\252)-267(i)-266(s)-1(ieln)1(ie)-267(s)-1(i\\246)-267(p)1(usz)-1(y\\252,)-266(\\273)-1(e)-267(to)-267(u)1(ro)-28(d)1(na)-267(t)1(ak)55(a,)-266(a)-267(raz)-267(w)]TJ 0 -13.549 Td[(raz)-317(m)28(uzyk)56(an)28(tom)-317(z\\252ot\\363)27(wki)-316(rzuca\\252,)-317(b)29(yc)27(h)-316(sm)27(ycz)-1(k)28(\\363)28(w)-317(n)1(ie)-317(\\273a\\252)-1(o)28(w)28(ali,)-316(b)-27(o)-317(grali)-316(z)-317(cic)27(h)1(a,)]TJ 0 -13.549 Td[(o)-28(d)1(p)-28(o)-27(c)-1(zyw)27(a)-55(j\\241cy)83(.)]TJ 27.879 -13.549 Td[(T)83(o)-370(i)-369(z)-371(n)1(ag\\252a)-370(h)28(u)1(kn\\246li)-370(w)-370(i)1(nstrumen)28(t)28(y)-370(ob)-27(e)-1(r)1(tas)-1(a,)-369(\\273)-1(e)-370(mr\\363z)-370(przes)-1(ze)-1(d)1(\\252)-370(k)28(o\\261)-1(ci,)-370(a)]TJ -27.879 -13.549 Td[(Boryn)1(a)-262(d)1(o)-262(Jagn)28(y)-261(sk)28(o)-28(c)-1(zy\\252,)-261(pr)1(z)-1(ygar)1(n\\241\\252)-261(j\\241)-262(k)1(rze)-1(p)1(k)28(o)-262(i)-261(z)-262(mie)-1(j)1(s)-1(ca)-262(r)1(ymn\\241\\252)-262(tak)1(ie)-1(go)-261(ob)-27(e)-1(-)]TJ 0 -13.55 Td[(rk)56(a,)-287(a\\273)-287(dyle)-287(z)-1(ask)28(o)28(w)-1(y)1(c)-1(za\\252y)83(,)-287(a)-287(on)-287(wia\\252)-287(p)-27(o)-288(i)1(z)-1(b)1(ie)-1(,)-287(za)28(wrac)-1(a\\252,)-287(p)-27(o)-28(d)1(k)28(\\363)27(wk)56(ami)-287(trzas)-1(k)56(a\\252,)-287(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kl\\246k)55(an)1(iem)-271(z)-271(n)1(ag\\252)-1(a)-270(za)28(w)-1(ij)1(a\\252,)-270(to)-270(trz\\241c)27(ha)-55(j\\241cy)-270(p)-28(o)-270(izbie)-270(s)-1(i)1(\\246)-271(nosi\\252)-270(s)-1(ze)-1(r)1(ok)28(o,)-271(o)-27(d)-270(\\261)-1(cia-)]TJ 0 -13.549 Td[(n)28(y)-243(do)-243(\\261)-1(cian)28(y)84(,)-244(to)-243(prze)-1(d)-243(m)28(uzyk)56(\\241)-244(pi)1(os)-1(n)1(e)-1(cz)-1(k)1(i)-244(\\261piew)27(a\\252,)-243(\\273)-1(e)-244(m)28(u)-244(p)-27(o)-244(m)28(uzyc)27(k)1(u)-244(o)-27(dkr)1(z)-1(yk)56(ali)1(,)]TJ 0 -13.549 Td[(i)-272(d)1(ale)-1(j)-271(h)28(ula\\252)-272(siarcz)-1(y)1(\\261)-1(cie)-273(i)-272(tan)-271(wi\\363)-28(d\\252)-272(zapami\\246tale)-1(,)-272(b)-27(o)-272(za)-273(n)1(im)-272(dru)1(gie)-273(p)1(ary)-272(j)1(\\246)-1(\\252y)-272(si\\246)-273(z)]TJ 0 -13.549 Td[(ku)1(p)-265(wyry)1(w)27(a\\242)-265(i)-265(p)1(rz)-1(y)1(tup)28(y)1(w)27(a\\242,)-265(\\261)-1(p)1(iew)27(a\\242,)-265(ta\\253)1(c)-1(o)28(w)27(a\\242)-265(i)-265(co)-265(ten)-265(na)-55(jwi\\246ksz)-1(y)-265(p)-27(\\246d)-265(b)1(ra\\242)-1(,)-264(\\273)-1(e)]TJ 0 -13.55 Td[(jak)1(b)28(y)-322(sto)-322(wrze)-1(cion,)-321(p)-28(e\\252n)28(yc)28(h)-322(r\\363\\273nob)1(arwnej)-322(w)28(e\\252)-1(n)29(y)83(,)-321(w)-1(i\\252o)-322(si\\246)-322(p)-27(o)-322(iz)-1(b)1(ie)-322(z)-323(tu)1(rk)28(otem)-322(i)]TJ 0 -13.549 Td[(okr)1(\\246)-1(ca\\252o)-307(tak)-306(s)-1(zybk)28(o,)-306(\\273)-1(e)-307(j)1(u\\273)-307(\\273adn)1(e)-307(ok)28(o)-307(ni)1(e)-307(roz)-1(ez)-1(n)1(a\\252o,)-307(gd)1(z)-1(i)1(e)-307(c)27(h\\252op)1(,)-307(gd)1(z)-1(ie)-307(k)28(ob)1(ieta;)]TJ 0 -13.549 Td[(ni)1(c)-1(,)-303(ino)-304(j)1(akb)28(y)-304(k)1(to)-304(t\\246c)-1(z\\246)-305(r)1(oz)-1(sypa\\252)-304(i)-303(bi\\252)-304(w)-304(n)1(i\\241)-304(wic)27(h)29(ur\\241,)-303(\\273)-1(e)-304(gra\\252a)-304(k)28(olor)1(am)-1(i)1(,)-304(mie)-1(n)1(i\\252a)]TJ 0 -13.549 Td[(si\\246)-392(i)-391(wi\\252a)-391(coraz)-391(pr\\246dze)-1(j)1(,)-391(w\\261)-1(cieklej,)-391(zapami\\246talej,)-391(a\\273)-391(\\261)-1(wiat\\252a)-391(c)27(h)29(w)-1(i)1(lam)-1(i)-390(gas)-1(\\252y)-391(o)-28(d)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(u,)-367(no)-27(c)-368(ogarni)1(a\\252a)-368(tan)1(e)-1(cz)-1(n)1(ik)28(\\363)28(w,)-368(a)-367(t)28(ylk)28(o)-367(okn)1(am)-1(i)-367(la\\252a)-367(s)-1(i)1(\\246)-368(m)-1(i)1(e)-1(si\\246)-1(czna)-367(p)-28(o\\261wiata)]TJ 0 -13.55 Td[(rozpi)1(e)-1(rzc)27(h)1(\\252\\241,)-346(\\261wietlist\\241)-346(sm)27(u)1(g\\241,)-345(is)-1(k)1(rzy\\252a)-346(si\\246)-346(wrz\\241c)-1(y)1(m)-346(sre)-1(b)1(rem)-346(ws)-1(k)1(r\\363\\261)-346(cie)-1(mn)1(o\\261)-1(ci)]TJ 0 -13.549 Td[(i)-375(w)-1(skr)1(\\363\\261)-376(w)-1(i)1(ruj)1(\\241c)-1(ej)-375(g\\246)-1(st)28(wy)-376(l)1(udzkiej,)-375(co)-376(n)1(adp\\252y)1(w)27(a\\252a)-375(s)-1(p)1(ie)-1(n)1(ion\\241)-375(roz\\261)-1(p)1(iew)27(an\\241)-375(fal)1(\\241,)]TJ 0 -13.549 Td[(migota\\252a)-299(i)-299(k\\252\\246bi\\252a)-299(si\\246)-300(w)-299(t)28(yc)27(h)-298(br)1(z)-1(ask)55(ac)28(h)-299(j)1(ak)28(o)-299(w)-300(se)-1(n)1(n)28(ym)-299(widze)-1(n)1(iu)-299(i)-298(prze)-1(p)1(ada\\252a)-299(w)]TJ 0 -13.549 Td[(\\242m)-1(ie)-327(n)1(ie)-1(p)1(rze)-1(n)1(ikn)1(ionej,)-326(b)28(y)-327(si\\246)-327(z)-1(n)1(o)27(wu)-326(wyn)28(ur)1(z)-1(y)1(\\242)-328(i)-326(z)-1(ama)-56(j)1(ac)-1(zy\\242)-327(na)-327(mgni)1(e)-1(n)1(ie)-327(prze)-1(d)]TJ 0 -13.549 Td[(dr)1(ug\\241)-294(\\261)-1(cian)1(\\241,)-295(n)1(a)-294(kt\\363rej)-294(tkn)1(i\\246)-1(te)-294(\\261)-1(wiat\\252em)-295(sz)-1(k\\252a)-294(obr)1(az)-1(\\363)28(w)-295(p)1(rysk)56(a\\252y)-295(i)-294(m\\273y\\252y)-294(ognia-)]TJ 0 -13.549 Td[(mi,)-418(i)-417(prze)-1(w)28(ali\\242)-418(si\\246)-1(,)-417(i)-418(sto)-28(cz)-1(y\\242)-418(w)-418(no)-27(c)-1(,)-418(\\273e)-418(t)28(ylk)28(o)-418(ci\\246)-1(\\273kie)-418(d)1(yc)27(h)1(anie,)-418(tu)1(p)-28(ot)28(y)84(,)-418(kr)1(z)-1(yk)1(i)]TJ 0 -13.55 Td[(rw)28(a\\252y)-333(s)-1(i\\246,)-333(pl)1(\\241ta\\252y)-334(i)-333(h)28(u)1(c)-1(za\\252y)-333(g\\252uc)27(h)1(o)-333(w)-334(o\\261le)-1(p)1(\\252e)-1(j)-333(izbi)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-248(ci\\241)-28(gn\\246\\252y)-248(s)-1(i)1(\\246)-249(j)1(u\\273)-249(te)-248(tan)28(y)-248(\\252a\\253)1(c)-1(u)1(c)27(hem)-249(j)1(e)-1(d)1(n)28(ym,)-248(b)-27(e)-1(z)-248(prze)-1(r)1(wy)-248(ni)-248(p)1(rz)-1(estanku)1(...)]TJ -27.879 -13.549 Td[(b)-27(o)-243(c)-1(o)-242(m)27(u)1(z)-1(yk)56(a)-243(zacz)-1(yn)1(a\\252a)-243(rzn\\241\\242)-243(no)28(w)28(e)-1(go,)-242(nar)1(\\363)-28(d)-243(si\\246)-243(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-243(z)-243(nag\\252a,)-243(p)1(rosto)28(w)27(a\\252)-243(j)1(ak)]TJ 0 -13.549 Td[(b)-27(\\363r)-315(i)-314(sz)-1(ed\\252)-314(z)-315(m)-1(i)1(e)-1(j)1(s)-1(ca)-315(p)-27(\\246)-1(d)1(e)-1(m)-314(takiej)-314(m)-1(o)-28(cy)-314(jak)-314(h)28(u)1(ragan;)-314(trzask)-315(h)1(o\\252ub)-27(c)-1(\\363)28(w)-315(r)1(oz)-1(lega\\252)]TJ 0 -13.549 Td[(si\\246)-326(jak)-325(b)1(icie)-326(pi)1(orun)1(\\363)28(w)-1(,)-325(k)1(rz)-1(y)1(k)-326(o)-27(c)27(hot)1(n)28(y)-325(trz\\241s)-1(\\252)-325(c)-1(a\\252ym)-325(dome)-1(m)-325(i)-325(rzucali)-325(s)-1(i\\246)-325(w)-326(tan)-325(z)]TJ 0 -13.55 Td[(zapami\\246)-1(t)1(aniem)-1(,)-333(z)-334(szale)-1(\\253)1(s)-1(t)28(w)28(e)-1(m,)-333(jak)28(ob)29(y)-334(w)-333(bu)1(rz\\246)-334(i)-333(b)-28(\\363)-55(j,)-333(n)1(a)-334(\\261m)-1(i)1(e)-1(r)1(\\242)-334(i)-333(\\273)-1(ycie.)]TJ 27.879 -13.549 Td[(I)-333(ta\\253co)27(w)28(ali!)]TJ\nET\nendstream\nendobj\n499 0 obj <<\n/Type /Page\n/Contents 500 0 R\n/Resources 498 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n498 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n503 0 obj <<\n/Length 9929      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(153)]TJ -330.353 -35.866 Td[(...)1(Ow)27(e)-314(kr)1(ak)28(o)28(w)-1(i)1(aki,)-314(d)1(rygl)1(iw)27(e,)-314(b)1(arasz)-1(ku)1(j\\241ce)-1(,)-313(ucin)1(an\\241,)-314(b)1(rz\\246)-1(k)1(liw)28(\\241)-314(n)28(ut)1(\\241)-314(i)-314(sk)28(o-)]TJ -27.879 -13.549 Td[(kli)1(w)-1(y)1(m)-1(i)-277(pr)1(z)-1(y\\261pi)1(e)-1(wk)56(am)-1(i)-277(s)-1(ad)1(z)-1(on)1(e)-1(,)-277(jak)28(o)-277(te)-278(pasy)-278(n)1(abij)1(ane,)-278(a)-277(p)-28(e\\252ne)-278(\\261)-1(miec)27(h)1(\\363)27(w)-277(i)-278(sw)27(a-)]TJ 0 -13.549 Td[(w)28(oli;)-306(p)-28(e\\252ne)-307(w)28(e)-1(selnej)-306(g\\246)-1(d)1(\\271)-1(b)28(y)-306(i)-306(bu)1(jn)1(e)-1(j)1(,)-307(mo)-28(cnej,)-306(zuc)27(h)1(o)28(w)27(atej)-306(m)-1(\\252o)-27(do\\261c)-1(i)-306(i)-306(w)-1(r)1(az)-307(p)-28(e\\252ne)]TJ 0 -13.549 Td[(\\014gl)1(\\363)27(w)-333(ucies)-1(zn)28(yc)27(h)1(,)-333(pr)1(z)-1(egon\\363)28(w)-334(i)-333(w)28(aru)-333(kr)1(wi)-334(m\\252o)-28(d)1(e)-1(j)-333(k)28(o)-28(c)28(han)1(ia)-333(pragn)1(\\241c)-1(ej.)-333(Hej!)]TJ 27.879 -13.549 Td[(...)1(Ow)27(e)-455(mazury)84(,)-454(d\\252ugi)1(e)-455(kiej)-454(m)-1(iedze,)-455(r)1(oz)-1(\\252o\\273ys)-1(te)-455(j)1(ak)28(o)-455(t)1(e)-455(grusz)-1(e)-455(M)1(a\\242)-1(k)28(o)28(w)28(e)-1(,)]TJ -27.879 -13.55 Td[(h)28(u)1(c)-1(zne)-387(a)-386(sz)-1(eroki)1(e)-387(ni)1(b)28(y)-386(te)-387(r\\363)28(wni)1(e)-387(ni)1(e)-1(ob)-55(j\\246te,)-386(przyci\\246)-1(\\273kie)-386(a)-387(strzeliste)-1(,)-386(t\\246s)-1(k)1(liw)28(e)-387(a)]TJ 0 -13.549 Td[(zuc)27(h)29(w)27(a\\252e,)-309(p)-27(os)-1(u)28(wiste)-309(a)-309(gro\\271ne,)-309(go)-27(dn)1(e)-310(a)-308(z)-1(ab)1(ijac)28(kie)-309(i)-309(n)1(ie)-1(u)1(s)-1(t)1(\\246)-1(p)1(liw)28(e)-1(,)-308(jak)28(o)-309(te)-309(c)28(h\\252op)28(y)84(,)]TJ 0 -13.549 Td[(co)-370(zw)27(ar)1(c)-1(i)-369(w)-370(k)1(up)-27(\\246)-370(ni)1(b)28(y)-369(w)-370(ten)-369(b)-28(\\363r)-369(wyn)1(ios)-1(\\252y)84(,)-369(ru)1(n\\246li)-369(w)-370(tan)-369(z)-370(p)-27(okr)1(z)-1(yk)56(ami)-369(i)-370(mo)-28(c\\241)]TJ 0 -13.549 Td[(tak)56(\\241,)-287(\\273e)-287(c)27(ho)-27(\\242)-1(b)28(y)-286(w)-287(s)-1(tu)-286(na)-287(t)28(y)1(s)-1(i\\241ce)-287(i\\261)-1(\\242,)-287(\\273e)-287(c)27(ho)-27(\\242)-1(b)28(y)-286(\\261)-1(wiat)-286(c)-1(a\\252y)-287(p)-27(orw)28(a\\242)-1(,)-286(s)-1(p)1(ra\\242,)-287(strato-)]TJ 0 -13.549 Td[(w)28(a\\242)-1(,)-303(w)-303(dr)1(z)-1(azgi)-303(rozbi\\242)-303(i)-303(na)-303(ob)-27(c)-1(asac)27(h)-302(roznie\\261)-1(\\242,)-303(i)-303(sam)27(ym)-303(pr)1(z)-1(epa\\261\\242)-1(,)-303(a)-303(j)1(e)-1(sz)-1(cze)-304(tam)-303(i)]TJ 0 -13.549 Td[(p)-27(o)-278(\\261)-1(mierci)-278(ta\\253co)28(w)27(a\\242,)-278(h)1(o\\252)-1(u)1(b)-27(c)-1(e)-278(bi\\242)-278(i)-278(ostro,)-278(p)-27(o)-278(maz)-1(u)1(rsku)-278(p)-27(okr)1(z)-1(yk)1(iw)27(a\\242:)-278(\\377d)1(a)-278(dan)1(a!\")]TJ 27.879 -13.55 Td[(...)1(Ow)27(e)-294(ob)-27(ertasy)83(,)-293(kr\\363t)1(kie,)-294(r)1(w)27(an)1(e)-1(,)-293(z)-1(a)28(wrotn)1(e)-1(,)-293(w\\261)-1(ciek\\252e)-1(,)-293(osz)-1(ala\\252e,)-293(z)-1(a)28(w)27(ad)1(iac)27(k)1(ie)]TJ -27.879 -13.549 Td[(a)-294(r)1(z)-1(ewliw)28(e)-1(,)-293(s)-1(i)1(arc)-1(zyste)-294(a)-294(zadu)1(m)-1(an)1(e)-294(i)-294(\\273aln\\241)-293(n)28(u)1(t\\241)-294(pr)1(z)-1(epl)1(e)-1(cione,)-293(w)27(arem)-294(kr)1(w)-1(i)1(e)-294(o)-1(gn)1(i-)]TJ 0 -13.549 Td[(ste)-1(j)-347(t\\246tni)1(\\241c)-1(e)-348(a)-347(dob)1(ro\\261c)-1(i)-347(p)-27(e)-1(\\252n)1(e)-348(i)-347(k)28(o)-28(c)27(h)1(ania,)-347(j)1(ak)28(o)-348(c)28(hm)28(ura)-347(grad)1(o)27(w)28(a)-347(z)-348(nag\\252a)-347(s)-1(p)1(ada-)]TJ 0 -13.549 Td[(j\\241ce,)-293(a)-293(p)-28(e\\252ne)-293(g\\252)-1(os\\363)28(w)-294(serdec)-1(zn)28(yc)28(h,)-293(p)-27(e)-1(\\252n)1(e)-294(mo)-28(d)1(ryc)27(h)-292(patr)1(z)-1(a\\253)1(,)-293(wio\\261)-1(n)1(ian)28(yc)28(h)-293(tc)28(hni)1(e)-1(\\253)1(,)]TJ 0 -13.549 Td[(w)28(oniej\\241cyc)27(h)-318(p)-27(os)-1(zum\\363)28(w)-1(,)-318(okwietn)28(yc)28(h)-319(sad\\363)28(w;)-319(j)1(ak)28(o)-319(te)-319(p)-27(ola)-319(o)-319(wio\\261ni)1(e)-320(r)1(oz)-1(\\261pi)1(e)-1(w)28(ane,)]TJ 0 -13.55 Td[(\\273e)-335(i)-333(\\252z)-1(a)-333(pr)1(z)-1(ez)-334(\\261)-1(miec)27(h)28(y)-333(p\\252yn)1(ie)-1(,)-333(i)-334(serc)-1(e)-334(\\261pi)1(e)-1(w)28(a)-334(rad)1(o\\261)-1(ci\\241,)-333(i)-334(d)1(usz)-1(a)-333(t\\246)-1(skliwie)-334(r)1(w)-1(i)1(e)-335(si\\246)]TJ 0 -13.549 Td[(za)-329(te)-330(r)1(oz)-1(\\252ogi)-329(sze)-1(rok)1(ie)-1(,)-328(z)-1(a)-329(t)1(e)-330(lasy)-329(d)1(ale)-1(k)1(ie)-1(,)-328(w)27(e)-329(\\261w)-1(i)1(at)-329(ws)-1(zys)-1(tek)-329(i)1(dzie)-330(marz\\241ca)-329(i)-329(\\377o)-56(j)]TJ 0 -13.549 Td[(da)-333(d)1(ana!\")-333(pr)1(z)-1(y\\261pi)1(e)-1(wuj)1(e)-1(.)]TJ 27.879 -13.549 Td[(T)83(aki)1(e)-334(to)-333(tan)28(y)-333(nieop)-27(o)27(wiedzian)1(e)-334(s)-1(z\\252y)-333(z)-1(a)-333(tanami.)]TJ 0 -13.549 Td[(Bo)-334(tak)-333(an)1(o)-334(c)28(h\\252opski)-333(n)1(ar\\363)-28(d)-333(si\\246)-334(w)28(e)-1(se)-1(l)1(i)-333(w)-334(pr)1(z)-1(y)1(g)-1(o)-27(dn)28(y)-333(cz)-1(as.)]TJ 0 -13.55 Td[(T)83(ak)28(o\\273)-334(si\\246)-334(zaba)28(wiali)-333(n)1(a)-334(w)28(e)-1(se)-1(l)1(u)-333(Jagusin)28(y)1(m)-334(z)-334(Boryn)1(\\241!)]TJ 0 -13.549 Td[(Go)-28(d)1(z)-1(i)1(n)28(y)-344(bi)1(e)-1(g\\252y)-344(za)-345(go)-27(dzinami)-344(i)-344(pr)1(z)-1(epad)1(a\\252y)-344(niepami\\246tliwie)-344(w)27(e)-344(w)-1(r)1(z)-1(a)28(wie,)-344(w)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)56(ac)27(h)1(,)-291(w)-292(r)1(ado\\261c)-1(i)-291(sz)-1(u)1(m)-1(n)1(e)-1(j)1(,)-291(w)-292(tan)1(e)-1(cz)-1(n)29(ym)-292(zapami\\246taniu)1(,)-291(\\273)-1(e)-292(an)1(i)-291(s)-1(i)1(\\246)-292(s)-1(p)-27(ostrze)-1(gli)1(,)]TJ 0 -13.549 Td[(jak)28(o)-348(s)-1(i)1(\\246)-349(ju)1(\\273)-349(prze)-1(ciera\\252o)-349(n)1(a)-349(wsc)27(ho)-27(dzie)-349(i)-348(prze)-1(d)1(\\261)-1(wit)1(o)27(w)28(e)-349(br)1(z)-1(aski)-348(\\261)-1(ciek)55(a\\252y)-348(z)-349(w)27(ol)1(na)-348(i)]TJ 0 -13.549 Td[(rozbi)1(e)-1(la\\252y)-405(no)-27(c)-1(.)-405(Gwiazdy)-405(p)-27(obl)1(ad\\252y)83(,)-405(k)1(s)-1(i\\246\\273)-1(y)1(c)-406(z)-1(asze)-1(d\\252)-405(i)-405(wiatr)-405(ws)-1(ta)28(w)28(a\\252)-406(o)-27(d)-405(las)-1(\\363)28(w)-405(i)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\252,)-283(jakb)29(y)-283(rozdm)27(u)1(c)27(h)28(u)1(j\\241c)-283(rze)-1(d)1(n\\241ce)-284(c)-1(i)1(e)-1(mno\\261c)-1(i)1(;)-283(oknami)-283(nagl)1(\\241da\\252y)-283(ku)1(d\\252ate,)]TJ 27.879 -13.549 Td[(p)-27(os)-1(kr)1(\\246)-1(cane)-261(drze)-1(w)28(a)-261(i)-261(c)-1(or)1(az)-262(ni)1(\\273)-1(ej)-261(c)27(h)28(y)1(li\\252y)-261(os)-1(zron)1(ia\\252e)-262(i)-261(se)-1(n)1(ne)-262(\\252b)28(y)84(,)-261(a)-261(dom)-261(w)27(ci\\241\\273)]TJ -27.879 -13.549 Td[(\\261piew)27(a\\252)-333(i)-333(ta\\253co)28(w)27(a\\252!)]TJ 27.879 -13.549 Td[(Jak)28(ob)28(y)-349(\\252\\241ki)-349(i)-349(\\273)-1(n)1(iwne)-350(p)-27(ola,)-349(i)-350(sady)-349(rozkwit\\252e)-350(ze)-1(sz)-1(\\252y)-349(si\\246)-350(na)-349(go)-28(dy)-349(i)-349(p)-27(orw)27(an)1(e)]TJ -27.879 -13.549 Td[(wic)27(h)29(ur\\241)-333(p)-27(os)-1(z\\252y)-334(sp)-27(o\\252e)-1(m)-334(w)-333(d\\252u)1(gi,)-333(z)-1(a)28(wrotn)29(y)83(,)-333(ogni)1(s)-1(t)28(y)-333(k)28(oro)28(w)28(\\363)-28(d!)]TJ 27.879 -13.55 Td[(Wyw)28(arl)1(i)-340(d)1(rz)-1(wi)-339(na)-339(rozc)-1(ie\\273)-1(,)-339(wyw)28(arli)-339(okna,)-339(a)-340(d)1(om)-340(bu)1(c)27(ha\\252)-339(w)-1(r)1(z)-1(a)28(w)28(\\241,)-340(\\261wiat\\252a-)]TJ -27.879 -13.549 Td[(mi,)-420(dygot)1(a\\252)-1(,)-420(tr)1(z)-1(\\241s\\252)-421(si\\246,)-420(trze)-1(sz)-1(cz)-1(a\\252,)-420(p)-27(o)-56(j)1(\\246)-1(k)1(iw)27(a\\252)-420(i)-420(c)-1(or)1(az)-421(mo)-28(c)-1(n)1(iej)-420(h)28(u)1(la\\252,)-420(\\273)-1(e)-421(si\\246)-421(j)1(u\\273)]TJ 0 -13.549 Td[(zda)28(w)27(a\\252o,)-323(jak)28(o)-324(te)-324(dr)1(z)-1(ew)27(a)-324(i)-323(lud)1(z)-1(i)1(e)-1(,)-324(ziem)-1(i)1(a)-324(i)-324(gwiazdy)84(,)-324(i)-324(te)-324(p\\252ot)28(y)84(,)-324(i)-324(ten)-323(dom)-324(s)-1(tar)1(y)83(,)-323(i)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-281(uj)1(\\246)-1(\\252o)-281(si\\246)-281(w)-281(bary)84(,)-281(zwi\\252o)-281(w)-281(k\\252\\241b,)-280(s)-1(p)1(l\\241ta\\252o,)-281(i)-281(p)1(ij)1(ane,)-281(o\\261)-1(l)1(e)-1(p)1(\\252e)-1(,)-281(n)1(a)-281(ni)1(c)-282(n)1(iep)-28(o-)]TJ 0 -13.549 Td[(mne,)-353(os)-1(zala\\252e,)-353(tac)-1(za\\252o)-353(s)-1(i\\246)-353(o)-28(d)-353(\\261cian)28(y)-353(d)1(o)-354(\\261cian)28(y)84(,)-353(z)-354(izb)28(y)-353(d)1(o)-353(s)-1(ieni)1(,)-353(z)-354(sieni)-353(n)1(a)-353(drog\\246)]TJ 0 -13.549 Td[(p\\252y)1(n\\246\\252)-1(o,)-264(z)-266(d)1(rogi)-264(na)-265(p)-27(ola)-265(ogromne,)-265(n)1(a)-265(b)-27(ory)83(,)-264(w)27(e)-265(\\261w)-1(i)1(at)-265(c)-1(a\\252y)-264(w)-1(i)1(re)-1(m)-265(tan)1(e)-1(cz)-1(n)29(ym)-265(s)-1(z\\252o,)]TJ 0 -13.55 Td[(to)-28(cz)-1(y)1(\\252o)-253(s)-1(i\\246,)-253(k)28(o\\252o)28(w)27(a\\252o)-253(i)-253(n)1(ieprzerw)27(an)29(ym,)-253(m)-1(i)1(gotliwym)-253(\\252a\\253cuc)27(h)1(e)-1(m)-253(w)-253(br)1(z)-1(ask)56(ac)27(h)-253(z\\363rz)]TJ 0 -13.549 Td[(ws)-1(c)28(ho)-28(d)1(z)-1(\\241cyc)27(h)-333(p)1(rze)-1(p)1(ada\\252o.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-333(to)-333(ic)27(h)-333(wied\\252a,)-333(to)-333(gran)1(ie)-1(,)-333(te)-333(piosnec)-1(zki.)1(..)]TJ 0 -13.549 Td[(...)1(B)-1(asy)-371(p)-28(oh)29(ukiw)28(a\\252y)-371(do)-371(taktu)-371(i)-371(b)1(ucz)-1(a\\252y)-371(dr)1(yga)-56(j)1(\\241c)-1(y)-371(n)1(ib)28(y)-371(b\\241ki)1(,)-371(a)-372(\\015)1(e)-1(t)-371(wi\\363)-28(d)1(\\252)]TJ -27.879 -13.549 Td[(wt\\363r)-311(i)-310(p)-27(ogw)-1(i)1(z)-1(d)1(yw)27(a\\252)-311(w)28(es)-1(o\\252o,)-310(\\261)-1(wiergota\\252,)-311(\\014)1(gle)-311(c)-1(zyn)1(i\\252)-311(jak)1(b)28(y)-311(n)1(a)-311(sprze)-1(ciw)-311(b)-27(\\246b)-28(enk)28(o-)]TJ 0 -13.55 Td[(wi,)-374(kt\\363ren)-374(ucies)-1(zn)28(y)-374(wys)-1(k)56(aki)1(w)27(a\\252,)-374(brz\\246k)55(ad)1(\\252am)-1(i)-374(wrzas)-1(kl)1(iw)27(o\\261\\242)-375(n)1(ie)-1(ci\\252,)-374(bar)1(as)-1(zk)28(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(i)-302(trz\\241s)-1(\\252)-302(si\\246)-303(jak)28(o)-302(ta)-302(\\273)-1(y)1(do)28(ws)-1(k)56(a)-302(bro)-27(da)-302(na)-302(wie)-1(t)1(rz)-1(e,)-302(a)-302(s)-1(kr)1(z)-1(yp)1(ice)-303(wie)-1(d)1(\\252y)83(,)-302(sz)-1(\\252y)-302(n)1(a)-303(p)1(rze)-1(-)]TJ\nET\nendstream\nendobj\n502 0 obj <<\n/Type /Page\n/Contents 503 0 R\n/Resources 501 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n501 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n506 0 obj <<\n/Length 4871      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(154)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(11.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dzie,)-331(nib)29(y)-331(ta)-331(na)-56(j)1(lepsz)-1(a)-331(tanecz)-1(n)1(ic)-1(a,)-331(\\261pi)1(e)-1(w)28(a\\252y)-331(z)-1(razu)-331(mo)-28(cno)-331(a)-331(g\\363rni)1(e)-1(,)-331(j)1(akb)28(y)-331(g\\252os)-1(u)]TJ 0 -13.549 Td[(pr)1(ob)-28(o)28(w)28(a\\252y)83(,)-330(a)-330(p)-27(ote)-1(m)-330(j\\246\\252y)-330(z)-1(a)28(w)28(o)-28(dzi\\242)-330(s)-1(ze)-1(r)1(ok)28(o,)-330(przenikl)1(iwie)-1(,)-329(s)-1(m)28(utn)1(ie)-1(,)-330(k)1(ie)-1(b)29(y)-330(rozs)-1(ta-)]TJ 0 -13.549 Td[(jami)-271(p)1(\\252ac)-1(ze)-271(s)-1(iero)-28(ce)-271(kwili\\252y)84(,)-271(a\\273)-271(z)-1(ak)1(r\\246)-1(ci\\252y)-271(w)-271(miejsc)-1(u)-270(i)-271(spad)1(\\252y)-271(z)-271(nag\\252a,)-271(n)29(ut\\241)-271(kr)1(\\363tk)56(\\241,)]TJ 0 -13.549 Td[(migotliw)28(\\241,)-380(ostr\\241,)-380(jak)1(b)28(y)-380(s)-1(t)1(o)-381(p)1(ar)-380(trzas)-1(n)1(\\246)-1(\\252o)-380(ho\\252u)1(b)-28(cami)-380(i)-380(s)-1(to)-380(c)27(h)1(\\252opa)-380(zakrzyk)56(a\\252o)-381(z)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)1(e)-1(j)-372(piersi,)-372(a)-1(\\273)-373(d)1(e)-1(c)28(h)-373(zapiera\\252o)-373(i)-372(dr)1(e)-1(sz)-1(cz)-373(s)-1(ze)-1(d)1(\\252)-373(p)-28(o)-372(s)-1(k)28(\\363r)1(z)-1(e,)-373(i)-372(w)-1(n)1(e)-1(t)-372(j\\246\\252)-1(y)-372(k)28(o\\252o)28(w)27(a\\242,)]TJ 0 -13.55 Td[(p)-27(o\\261)-1(p)1(ie)-1(wyw)28(a\\242,)-315(z)-1(a)28(wraca\\242)-1(,)-315(d)1(rob)1(i\\242)-1(,)-315(p)1(rze)-1(sk)56(akiw)28(a\\242)-316(a)-315(\\261m)-1(i)1(a\\242)-316(si\\246)-316(i)-315(w)28(es)-1(eli\\242,)-315(\\273)-1(e)-315(c)-1(i)1(e)-1(p)1(\\252)-1(o)-315(d)1(o)]TJ 0 -13.549 Td[(se)-1(rca)-333(s)-1(z\\252o)-333(i)-333(o)-28(c)28(hota)-333(do)-333(\\252b)-27(\\363)28(w)-334(b)1(i\\252a)-333(kiej)-333(gor)1(z)-1(a\\252k)56(a...)-333(to)-333(zno)28(wu)-333(\\261pi)1(e)-1(w)28(a\\252y)-333(t\\241)-333(n)28(ut\\241)-333(ci\\241-)]TJ 0 -13.549 Td[(gliw)28(\\241,)-320(\\273a\\252os)-1(n)1(\\241)-321(i)-319(p\\252ak)56(aniem)-321(k)1(ie)-1(j)-319(ros\\241)-321(osn)28(u)1(t\\241;)-320(t\\241)-320(n)28(u)1(t\\241)-321(n)1(as)-1(z\\241,)-320(k)28(o)-28(c)28(han)1(\\241,)-320(s)-1(erd)1(e)-1(cz)-1(n)1(\\241,)]TJ 0 -13.549 Td[(pi)1(jan)1(\\241)-280(mo)-28(c\\241)-280(wielk)56(\\241)-280(i)-279(k)28(o)-28(c)27(h)1(ani)1(e)-1(m,)-279(i)-280(wied\\252y)-279(w)-280(tan)-279(ostry)84(,)-279(z)-1(ap)1(am)-1(i\\246ta\\252y)84(,)-280(mazo)27(wiec)27(ki)1(.)]TJ 27.879 -13.549 Td[(\\221wit)-225(ju)1(\\273)-227(si\\246)-226(s)-1(ta)28(w)28(a\\252)-226(c)-1(or)1(az)-227(j)1(a\\261)-1(n)1(iejsz)-1(y)84(,)-226(\\273e)-227(\\261wiat\\252a)-226(bl)1(ad\\252y)-226(i)-225(izb)-28(\\246)-226(z)-1(al)1(e)-1(w)28(a\\252)-226(br)1(udn)29(y)83(,)]TJ -27.879 -13.549 Td[(zm)-1(\\241con)28(y)-340(mrok)1(,)-340(a)-340(j)1(e)-1(szc)-1(ze)-341(si\\246)-340(zaba)28(wiali)-340(ze)-340(ws)-1(zystkiego)-340(s)-1(erca,)-340(a)-339(k)28(om)27(u)-339(m)-1(a\\252o)-339(b)28(y\\252o)]TJ 0 -13.55 Td[(p)-27(o)-28(c)-1(z\\246s)-1(tu)1(nku)1(,)-333(do)-333(k)56(a)-1(r)1(c)-1(zm)27(y)-333(p)-27(o)-333(gorz)-1(a\\252k)28(\\246)-333(s)-1(\\252a\\252,)-333(k)28(ornp)1(ani)1(\\252)-334(si\\246)-334(i)-333(na)-333(u)1(m)-1(or)-333(p)1(i\\252.)]TJ 27.879 -13.549 Td[(Kto)-370(o)-28(dsz)-1(ed\\252,)-370(to)-371(o)-27(dsz)-1(ed\\252,)-370(kto)-371(si\\246)-371(zm)-1(\\246c)-1(zy\\252,)-370(o)-28(dp)-27(o)-28(cz)-1(y)1(w)27(a\\252,)-370(a)-371(kt\\363r)1(e)-1(n)-370(si\\246)-371(opi\\252,)]TJ -27.879 -13.549 Td[(na)-411(p)1(rzy\\271)-1(b)1(ie)-411(s)-1(p)1(a\\252)-412(ab)-27(o)-411(i)-411(w)-411(sie)-1(n)1(iac)27(h)1(;)-411(dr)1(ud)1(z)-1(y)-411(zas)-1(i)1(e)-1(,)-411(b)1(arze)-1(j)-410(z)-412(n)1(\\363g)-412(\\261ci\\246)-1(ci,)-411(to)-411(i)-410(p)-28(o)-28(d)]TJ 0 -13.549 Td[(p\\252otami)-333(legali,)-333(i)-333(gdzie)-334(tam)-333(pad)1(\\252o,)-334(a)-333(resz)-1(ta)-333(ta\\253co)28(w)27(a\\252a)-333(do)-333(up)1(ad\\252ego...)]TJ 27.879 -13.549 Td[(A\\273)-495(ju)1(\\273)-495(c)-1(o)-494(trze)-1(\\271wie)-1(j)1(s)-1(i)-494(zbil)1(i)-495(si\\246)-495(w)-495(ku)1(p)-28(\\246)-495(p)1(rzy)-495(d)1(rzw)-1(i)1(ac)27(h,)-494(do)-494(taktu)-494(b)1(ili)-494(w)]TJ -27.879 -13.55 Td[(p)-27(o)-28(d\\252og\\246)-334(i)-333(j)1(\\246)-1(l)1(i)-334(\\261pi)1(e)-1(w)28(a\\242)-1(:)]TJ 27.879 -13.549 Td[(Zbi)1(e)-1(ra)-55(jcie)-524(si\\246,)-523(w)27(es)-1(eln)1(ic)-1(y)84(,)-523(ju)1(\\273)-524(n)1(am)-524(cz)-1(as!)-523(Dalek)55(a)-523(d)1(roga,)-523(G\\252\\246b)-28(ok)56(a)-523(w)28(o)-28(da,)]TJ -27.879 -13.549 Td[(Ciem)-1(n)28(y)-333(1as!)]TJ 27.879 -13.549 Td[(Zbi)1(e)-1(ra)-55(jcie)-324(s)-1(i)1(\\246)-1(,)-323(w)27(es)-1(elni)1(c)-1(y)84(,)-324(j)1(u\\273)-324(nam)-324(cz)-1(as!)-324(Zn)1(\\363)27(w)-324(si\\246)-324(z)-1(ab)1(a)28(w)-1(i)1(m)27(y)84(,)-324(Ju)1(tro)-324(p)-27(o)28(w)-1(r)1(\\363-)]TJ -27.879 -13.549 Td[(cim)27(y)-333(Na)-333(p)-28(op)1(as)-1(!)]TJ 27.879 -13.55 Td[(Ale)-334(n)1(ikt)-333(ic)28(h)-333(nie)-333(s)-1(\\252u)1(c)27(ha\\252!)]TJ\nET\nendstream\nendobj\n505 0 obj <<\n/Type /Page\n/Contents 506 0 R\n/Resources 504 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n504 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n509 0 obj <<\n/Length 6689      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(12)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ju)1(\\273)-233(n)1(a)-232(s)-1(am)28(ym)-232(\\261)-1(witan)1(iu)-231(Witek,)-232(u)1(m\\246)-1(cz)-1(on)28(y)-231(z)-1(ab)1(a)28(w)27(\\241)-232(i)-231(w)-1(y)1(ganian)28(y)-231(pr)1(z)-1(ez)-233(J)1(agust)27(y)1(nk)28(\\246,)]TJ 0 -13.549 Td[(p)-27(obieg\\252)-334(d)1(o)-334(c)28(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[(Wie\\261)-289(spa\\252a)-288(j)1(e)-1(sz)-1(cz)-1(e)-288(na)-288(d)1(nie)-288(m)-1(r)1(ok)28(\\363)27(w,)-288(co)-288(s)-1(\\252a\\252y)-288(si\\246)-289(n)1(isk)28(o)-289(n)1(ad)-288(ziem)-1(i\\241)-288(gr)1(ub)28(y)1(m)-1(,)]TJ -27.879 -13.55 Td[(rze)-1(d)1(n\\241cym)-435(zw)28(a\\252)-1(em,)-434(s)-1(ta)28(w)-434(le)-1(\\273a\\252)-434(m)-1(ar)1(t)27(wy)84(,)-434(przygn)1(ie)-1(cion)28(y)-434(mro)-27(c)-1(zn\\241)-434(g\\246)-1(st)28(w)27(\\241)-434(d)1(rze)-1(w)]TJ 0 -13.549 Td[(obr)1(z)-1(e\\271)-1(n)29(yc)27(h)-438(i)-438(tak)-439(u)1(topi)1(on)28(y)-439(w)-438(c)-1(iemnicy)83(,)-438(\\273e)-439(le)-1(d)1(wie)-439(ku)-438(\\261)-1(r)1(o)-28(dk)28(o)28(wi)-438(w)-1(y)1(le)-1(n)1(ia\\252)-439(si\\246)-439(w)]TJ 0 -13.549 Td[(no)-27(c)-1(y)-333(i)-333(ma)-56(jaczy\\252)-334(b)1(rzas)-1(k)56(ami)-333(nib)28(y)-333(to)-333(ok)28(o)-333(z)-1(asn)28(ut)1(e)-334(bielme)-1(m.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(r)1(oz)-1(ek)-446(br)1(a\\252)-447(mo)-28(cn)28(y)84(,)-446(pr)1(z)-1(ec)-1(i\\241)-27(ga\\252)-447(zimn)28(y)-446(wiatr)1(,)-446(\\273)-1(e)-446(s)-1(k)1(rze)-1(p)1(\\252)-1(e)-446(p)-27(o)27(wietrze)]TJ -27.879 -13.549 Td[(razi\\252o)-374(nozdrza)-375(i)-374(d)1(e)-1(c)28(h)-374(z)-1(ap)1(ie)-1(r)1(a\\252o,)-375(ziem)-1(i)1(a)-375(d)1(z)-1(w)28(oni\\252a)-374(p)-27(o)-28(d)-374(nogami)-374(i)-374(z)-1(marz\\252)-1(e)-374(k)55(a\\252u)1(\\273)-1(e)]TJ 0 -13.549 Td[(sinia\\252y)-316(na)-317(d)1(ro)-28(d)1(z)-1(e)-317(n)1(ib)28(y)-317(sz)-1(k)1(\\252a)-317(p)-28(ot)1(rz)-1(ask)56(ane)-317(i)-317(o\\261lep\\252e,)-317(a)-317(\\261w)-1(i)1(at)-317(si\\246)-318(z)-317(w)28(olna)-316(rozbiela\\252)]TJ 0 -13.55 Td[(\\261w)-1(i)1(taniem)-1(,)-346(w)-1(y)1(c)27(h)28(yl)1(a\\252)-348(z)-347(m)-1(r)1(ok)28(\\363)28(w)-348(osz)-1(r)1(onia\\252y)-347(i)-347(og\\252u)1(c)27(h\\252y)-347(p)1(rze)-1(marz\\252\\241)-347(c)-1(ic)28(ho\\261c)-1(i)1(\\241,)-347(psy)]TJ 0 -13.549 Td[(in)1(o)-268(k)56(a)-55(j\\261)-268(n)1(ie)-1(k)56(a)-55(j)-267(nasz)-1(cz)-1(ekiw)28(a\\252y)-267(s)-1(enn)1(ie)-1(,)-267(m\\252yn)-267(h)28(u)1(rk)28(ota\\252)-267(w)-268(o)-28(d)1(dal)1(i,)-267(a)-268(w)28(e)-1(selna)-267(wrza)27(w)28(a)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252a)-334(z)-334(c)28(ha\\252up)29(y)-333(i)-334(r)1(oz)-1(k)1(r\\241\\273)-1(a\\252a)-333(si\\246)-334(sz)-1(erok)28(o,)-333(na)-333(dob)1(re)-334(\\261migni\\246cie)-334(k)56(am)-1(i)1(e)-1(n)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(W)-341(Bory)1(no)28(w)27(ej)-340(iz)-1(b)1(ie)-341(tli)1(\\252)-1(o)-340(s)-1(i\\246)-341(j)1(e)-1(sz)-1(cz)-1(e)-341(\\261wiate)-1(\\252k)28(o)-340(m)-1(ale\\253k)1(ie)-341(jak)28(o)-341(t)1(e)-1(n)-340(rob)1(ac)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(to)-55(ja\\253)1(s)-1(ki,)-430(a\\273)-431(Witek)-431(za)-56(j)1(rza\\252)-431(pr)1(z)-1(ez)-431(okno;)-430(s)-1(tar)1(y)-431(Ro)-28(c)28(h)-431(siedzia\\252)-431(p)1(rzy)-431(stole)-431(i)-431(z)]TJ 0 -13.55 Td[(ksi\\241\\273ki)-333(p)-28(o\\261piewyw)28(a\\252)-334(p)-27(ob)-28(o\\273ne)-333(pie\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Ch\\252op)1(ak)-456(c)-1(i)1(c)27(ho)-456(p)1(rze)-1(sun)1(\\241\\252)-456(s)-1(i\\246)-456(do)-455(ob)-28(or)1(y)-456(i)-456(j)1(\\241\\252)-457(maca\\242)-457(sk)28(obla,)-455(gdy)-456(n)1(araz)-456(z)]TJ -27.879 -13.549 Td[(wrzas)-1(ki)1(e)-1(m)-334(o)-27(dsk)28(o)-28(c)-1(zy\\252,)-333(b)-27(o)-334(p)1(ies)-334(jaki)1(\\261)-334(rzuci\\252)-334(m)28(u)-333(si\\246)-334(na)-333(p)1(ie)-1(r)1(s)-1(i)-333(ze)-334(s)-1(k)28(o)28(wytem)-1(.)]TJ 27.879 -13.549 Td[({)-333(\\212ap)1(a!)-333(\\212apa!)-332(W)83(r\\363)-27(c)-1(i\\252e\\261)-334(t)1(o,)-333(pi)1(e)-1(sku,)-332(w)-1(r)1(\\363)-28(ci\\252e)-1(\\261,)-333(bi)1(e)-1(d)1(oto!{)-333(wykr)1(z)-1(yk)1(iw)27(a\\252)-333(r)1(oz)-1(e-)]TJ -27.879 -13.549 Td[(zna)28(ws)-1(zy)-333(psa)-334(i)-333(a\\273)-334(p)1(rzys)-1(i)1(ad\\252)-333(na)-333(progu)-332(z)-334(rado\\261ci.)-333({)-334(G)1(\\252o)-28(dn)28(y)1(\\261)-1(,)-333(c)27(h)29(udziaku)1(,)-333(c)-1(o?)]TJ 27.879 -13.55 Td[(Znal)1(az)-1(\\252)-495(z)-1(a)-495(p)1(az)-1(u)1(c)27(h\\241)-495(zaos)-1(zc)-1(z\\246)-1(d)1(z)-1(on)1(\\241)-495(na)-495(w)28(e)-1(se)-1(lu)-494(kie\\252bas\\246)-496(i)-495(wt)28(yk)56(a\\252)-496(m)28(u)-495(do)]TJ -27.879 -13.549 Td[(p)28(ysk)56(a,)-400(ale)-400(\\212apa)-400(n)1(ie)-400(rw)28(a\\252)-401(si\\246)-400(do)-400(j)1(ad\\252a,)-400(j)1(e)-1(n)1(o)-400(s)-1(zcz)-1(ek)55(a\\252,)-399(rz)-1(u)1(c)-1(a\\252)-400(m)28(u)-400(si\\246)-400(na)-400(p)1(ie)-1(r)1(s)-1(i)-399(i)]TJ 0 -13.549 Td[(sk)55(amla\\252)-333(z)-334(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-404(G\\252o)-27(dzi\\252y)-404(ci\\246)-1(,)-403(biedot)1(o)-1(,)-403(i)-404(wygn)1(a\\252y)-404(w)28(e)-405(\\261wiat!)-404({)-404(sze)-1(p)1(ta\\252)-404(ot)28(w)-1(i)1(e)-1(r)1(a)-56(j\\241c)-404(d)1(rz)-1(wi)]TJ -27.879 -13.549 Td[(do)-358(ob)-27(ory)-358(i)-358(z)-1(araz,)-358(jak)-358(s)-1(t)1(a\\252)-1(,)-358(r)1(z)-1(u)1(c)-1(i\\252)-358(s)-1(i)1(\\246)-359(na)-358(w)-1(y)1(rk)28(o.)-358({)-359(Ju)1(\\273)-359(ja)-358(ci\\246)-359(teraz)-359(br)1(oni\\252)-358(b)-27(\\246)-1(d)1(\\246)-359(i)]TJ 0 -13.55 Td[(starun)1(e)-1(k)-362(o)-363(tob)1(ie)-363(mia\\252...)-362({)-363(mru)1(c)-1(za\\252)-363(zak)28(opuj)1(\\241c)-363(s)-1(i)1(\\246)-364(w)-362(s)-1(\\252om\\246)-1(,)-362(a)-363(p)1(ie)-1(s)-363(l)1(e)-1(g\\252)-363(w)-362(p)-28(o)-28(d)1(le,)]TJ 0 -13.549 Td[(w)28(ark)56(a\\252)-334(i)-333(p)-27(olizyw)27(a\\252)-333(go)-333(p)-28(o)-333(t)28(w)27(ar)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ryc)27(h)1(\\252o)-334(ob)1(a)-56(j)-333(zas)-1(n)1(\\246)-1(l)1(i.)]TJ 0 -13.549 Td[(A)-268(ze)-269(sta)-56(j)1(ni)-268(ob)-27(ok)-268(p)-27(o\\252o\\273)-1(on)1(e)-1(j)-267(w)28(o)-1(\\252a\\252)-268(K)1(uba)-268(s\\252ab)28(ym,)-268(sc)27(h)1(orz)-1(a\\252y)1(m)-269(g\\252ose)-1(m,)-268(w)28(o\\252a\\252)]TJ -27.879 -13.549 Td[(d\\252u)1(go,)-426(al)1(e)-427(W)1(ite)-1(k)-425(spa\\252)-426(j)1(ak)-426(k)56(amie)-1(\\253)1(,)-426(d)1(opi)1(e)-1(ro)-425(\\212apa,)-425(p)-28(ozna)28(ws)-1(zy)-425(g\\252)-1(os,)-425(j\\241\\252)-426(za)-56(j)1(adle)]TJ 0 -13.55 Td[(sz)-1(cz)-1(ek)56(a\\242)-334(i)-333(targa\\242)-334(k)56(ap)-27(ot\\246)-1(,)-333(a\\273)-334(p)1(rze)-1(c)28(kn\\241\\252.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego?)-334({)-333(m)-1(amrota\\252)-333(pr)1(z)-1(ez)-334(se)-1(n)1(.)]TJ 0 -13.549 Td[({)-333(W)83(o)-28(d)1(y!)-333(T)83(ak)-333(me)-334(rozbiera)-333(gor\\241co\\261)-1(\\242...)-333(w)28(o)-28(dy)1(!)]TJ 330.353 -29.888 Td[(155)]TJ\nET\nendstream\nendobj\n508 0 obj <<\n/Type /Page\n/Contents 509 0 R\n/Resources 507 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n507 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n512 0 obj <<\n/Length 7997      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(156)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Cho)-28(\\242)-284(ma)-1(r)1(k)28(otn)28(y)-284(b)28(y)1(\\252)-285(i)-284(\\261pi)1(k)-284(go)-285(morzy\\252,)-284(zani\\363s\\252)-284(m)27(u)-284(p)-27(e\\252)-1(n)1(e)-285(wiad)1(ro)-284(i)-284(p)-28(o)-27(dsta)28(w)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(do)-333(p)1(ic)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-333(T)83(akim)-333(c)27(hor)1(y)83(,)-333(\\273e)-334(ledwie)-334(zipi)1(\\246)-1(..)1(.)-333(c)-1(o)-333(to)-333(w)27(arczy?)]TJ 0 -13.549 Td[({)-333(A)-334(\\212ap)1(a!)-333(W)83(r)1(\\363)-28(c)-1(i)1(\\252)-1(o)-333(p)1(s)-1(isk)28(o)-334(o)-27(d)-333(An)28(tk)28(\\363)28(w!)]TJ 0 -13.549 Td[({)-269(\\212ap)1(a!)-269({)-268(s)-1(ze)-1(p)1(n\\241\\252)-269(maca)-56(j)1(\\241c)-270(w)-268(c)-1(iem)-1(n)1(o\\261)-1(ci)-268(z)-1(a)-269(p)1(s)-1(i)1(m)-269(\\252b)-28(em)-1(,)-268(a)-269(\\212ap)1(a)-269(wysk)55(ak)1(iw)27(a\\252,)]TJ -27.879 -13.55 Td[(sz)-1(cz)-1(ek)56(a\\252)-334(i)-333(dar)1(\\252)-334(si\\246)-334(n)1(a)-334(wyr)1(k)28(o.)]TJ 27.879 -13.549 Td[({)-411(Wit)1(e)-1(k,)-411(za\\252\\363\\273)-412(k)28(on)1(iom)-411(s)-1(ian)1(a,)-411(b)-27(o)-411(dzw)27(on)1(i\\241)-411(z)-1(\\246bami)-411(o)-411(p)1(ust)28(y)-411(\\273)-1(\\252\\363b)1(,)-411(a)-411(ja)-411(si\\246)]TJ -27.879 -13.549 Td[(p)-27(oruszy\\242)-382(nie)-382(mog\\246)-1(.)-381(T)83(a\\253cuj)1(\\241)-382(jesz)-1(cz)-1(e?{)-382(p)28(yta\\252)-382(p)-27(o)-382(c)28(h)28(wili,)-381(gdy)-381(c)27(h)1(\\252)-1(op)1(ak)-382(sto)-28(cz)-1(y)1(\\252)-382(z)-1(e)]TJ 0 -13.549 Td[(stropu)-332(s)-1(ian)1(o)-334(i)-333(zak\\252ada\\252)-333(je)-333(z)-1(a)-333(dr)1(abin)28(y)84(.)]TJ 27.879 -13.549 Td[({)-291(C)-1(h)1(e)-1(b)1(a)-292(n)1(a)-291(p)-28(o\\252edn)1(ie)-292(s)-1(k)28(o\\253)1(c)-1(z\\241,)-291(a)-292(t)1(ak)-292(si\\246)-292(n)1(iekt\\363re)-292(p)-27(opi)1(\\252y)83(,)-291(\\273e)-292(na)-291(dr)1(o)-28(dze)-292(le\\273)-1(\\241.)]TJ 0 -13.549 Td[({)-333(U\\273)-1(yw)28(a)-56(j)1(\\241)-333(s)-1(e)-334(gosp)-27(o)-28(dar)1(z)-1(e,)-334(u)1(\\273)-1(y)1(w)27(a)-55(j\\241)-333({)-334(w)28(es)-1(tc)28(hn\\241\\252)-333(ci\\246)-1(\\273k)28(o.)-333({)-334(M)1(\\252ynar)1(z)-1(e)-334(b)29(yli?)]TJ 0 -13.55 Td[({)-333(B)-1(y)1(li,)-333(in)1(o)-334(r)1(yc)27(h)1(le)-1(j)-333(p)-27(osz)-1(li)1(.)]TJ 0 -13.549 Td[({)-333(Naro)-28(d)1(u)-333(du)1(\\273)-1(o?)]TJ 0 -13.549 Td[({)-333(Kto)-333(b)28(y)-333(ta)-333(p)-28(or)1(ac)27(ho)28(w)28(a\\252)-1(?..)1(.)-333(A\\273)-334(s)-1(i)1(\\246)-334(pr)1(z)-1(ele)-1(w)28(a\\252o)-333(w)-334(c)27(h)1(a\\252up)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Przyj)1(m)-1(o)28(w)28(ali)-333(s)-1(u)1(to?)]TJ 0 -13.549 Td[({)-420(Ki)1(e)-1(j)-419(w)27(e)-420(dw)28(orze)-420(jakim.)-420(M)1(i\\246s)-1(o)-420(ca\\252ymi)-420(mic)27(h)1(am)-1(i)-419(roz)-1(n)1(os)-1(i)1(li,)-420(a)-419(c)-1(o)-420(gor)1(z)-1(a\\252ki)]TJ -27.879 -13.55 Td[(wyc)27(h)1(lali,)-333(a)-333(co)-334(p)1(iw)27(a,)-333(co)-334(mio)-27(du!)-333(S)1(am)27(yc)28(h)-333(kie\\252bas)-334(b)29(y\\252y)-333(trzy)-334(n)1(iec)27(ki)-333(cz)-1(u)1(bate.)]TJ 27.879 -13.549 Td[({)-333(Przenosin)28(y)-333(kiedy)1(?)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(na)-333(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzy)83(.)]TJ 0 -13.549 Td[({)-357(U\\273yj\\241)-357(se)-358(j)1(e)-1(sz)-1(cze)-1(,)-357(n)1(ac)-1(i)1(e)-1(sz)-1(\\241)-357(si\\246...)-357(M)1(\\363)-56(j)-357(J)1(e)-1(zu,)-357(m)28(y\\261la\\252e)-1(c)28(h,)-357(\\273e)-358(j)1(ak)56(\\241)-357(k)28(os)-1(tec)-1(zk)28(\\246)]TJ -27.879 -13.549 Td[(ogry)1(z)-1(\\246)-285(i)-284(p)-28(o)-28(d)1(jem)-285(s)-1(e)-285(c)28(ho)-28(\\242)-285(r)1(az)-286(d)1(o)-285(sytu,)-284(a)-285(tu)-284(le\\273,)-285(zdyc)28(ha)-55(j)-285(i)-284(nas\\252uc)28(h)28(uj)1(,)-285(j)1(ak)-285(si\\246)-285(dr)1(ugie)]TJ 0 -13.55 Td[(zaba)28(wia)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(spa\\242.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(c)28(ho)-28(\\242)-334(t)1(e)-334(o)-28(cz)-1(y)-333(nap)1(a\\261)-1(\\242..)-333(\\273e)-1(b)28(y)84(...)]TJ 0 -13.549 Td[(Zamilk\\252)-345(zn)28(u\\273on)28(y)84(,)-345(\\273)-1(u)1(\\252)-346(w)-345(sobie)-345(\\273)-1(a\\252o\\261\\242)-1(,)-345(a)-345(j)1(akie\\261)-346(cic)27(h)1(e)-1(,)-345(n)1(ie\\261)-1(mia\\252e)-346(sk)56(argi)-345(jak)28(o)]TJ -27.879 -13.549 Td[(te)-334(p)1(tas)-1(zki)-333(u)1(s)-1(ta\\252e,)-334(t)1(\\252)-1(u)1(k\\252y)-333(m)27(u)-333(si\\246)-334(p)-27(o)-333(piersiac)27(h)-333(i)-333(b)-27(ole\\261)-1(n)1(ie)-334(p)1(iuk)56(a\\252y)84(.)]TJ 27.879 -13.55 Td[({)-369(Niec)27(h)-368(im)-369(ta)-369(p)-28(\\363)-55(jd)1(z)-1(i)1(e)-370(n)1(a)-369(z)-1(d)1(ro)28(wie)-1(,)-368(niec)27(h)-368(c)27(ho)-27(\\242)-370(on)1(i)-369(\\273)-1(y)1(j\\241..)1(.)-369({)-369(m)27(y)1(\\261)-1(la\\252)-369(p)-27(og\\252a-)]TJ -27.879 -13.549 Td[(dza)-56(j)1(\\241c)-334(p)1(s)-1(i)-333(\\252e)-1(b)1(.)]TJ 27.879 -13.549 Td[(Gor)1(\\241c)-1(zk)55(a)-482(mro)-28(cz)-1(y)1(\\252)-1(a)-482(go)-482(c)-1(oraz)-482(bard)1(z)-1(iej,)-482(wi\\246c)-483(jak)1(b)28(y)-482(na)-482(o)-28(degnan)1(ie)-483(z)-1(acz\\241\\252)]TJ -27.879 -13.549 Td[(sz)-1(epta\\242)-249(p)1(ac)-1(i)1(e)-1(rz)-248(i)-249(P)29(an)28(uj)1(e)-1(zuso)28(w)27(em)27(u)-248(mi\\252osie)-1(r)1(dziu)-248(o)-28(d)1(da)28(w)27(a\\252)-248(s)-1(i)1(\\246)-249(gor\\241co)-249(n)1(a)-249(w)28(ol\\246)-249(i)-248(ni)1(e)-1(-)]TJ 0 -13.549 Td[(w)28(ol\\246)-1(,)-305(al)1(e)-306(zap)-28(omin)1(a\\252)-305(s)-1(\\252\\363)28(w,)-305(s)-1(en)-305(n)1(a\\253)-305(spada\\252)-305(r)1(az)-306(p)-27(o)-305(raz,)-305(a)-305(c)-1(i\\241)-27(g)-305(s)-1(ze)-1(p)1(t\\363)28(w)-1(,)-304(nabr)1(z)-1(mia-)]TJ 0 -13.55 Td[(\\252yc)27(h)-366(p)1(ro\\261b\\241)-367(i)-366(\\252zam)-1(i,)-366(rw)28(a\\252)-367(si\\246)-367(i)-366(roz)-1(syp)28(y)1(w)27(a\\252)-367(n)1(ib)28(y)-366(cz)-1(erw)28(one)-367(paciork)1(i,)-366(\\273)-1(e)-367(c)27(h)1(c)-1(i)1(a\\252)-367(je)]TJ 0 -13.549 Td[(zgarni)1(a\\242)-1(,)-453(tak)-453(w)-1(i)1(dno)-453(to)-28(cz)-1(y)1(\\252)-1(y)-453(si\\246)-454(p)-27(o)-454(k)28(o\\273uc)27(h)29(u;)-453(z)-1(ap)-27(omina\\252)-453(jedn)1(ak)-454(o)-453(ws)-1(zys)-1(t)1(kim,)]TJ 0 -13.549 Td[(zas)-1(yp)1(ia\\252...)]TJ 27.879 -13.549 Td[(Bud)1(z)-1(i\\252)-234(s)-1(i)1(\\246)-235(c)-1(zasam)-1(i,)-234(w)28(o)-28(dzi\\252)-234(pu)1(s)-1(t)28(ym)-234(w)-1(zroki)1(e)-1(m)-234(i)-235(n)1(ic)-235(n)1(ie)-235(r)1(oz)-1(ez)-1(n)1(a)27(wsz)-1(y)-234(zapad)1(a\\252)]TJ -27.879 -13.549 Td[(zno)28(wu,)-333(lec)-1(ia\\252)-333(w)-334(mart)28(w)28(\\241,)-333(tru)1(pi\\241)-333(\\242)-1(m\\246.)]TJ 27.879 -13.549 Td[(T)83(o)-299(z)-1(n)1(o)28(w)-1(u)-298(j\\246c)-1(za\\252)-300(i)-299(tak)-299(kr)1(z)-1(y)1(c)-1(za\\252)-300(p)1(rze)-1(z)-300(se)-1(n)1(,)-299(a\\273)-300(k)28(on)1(ie)-300(z)-300(c)28(hrap)1(aniem)-300(r)1(w)27(a\\252y)-299(si\\246)]TJ -27.879 -13.55 Td[(na)-333(\\252a\\253cuc)28(hac)28(h,)-333(trze)-1(\\271wia\\252)-334(n)1(iec)-1(o)-333(i)-333(un)1(os)-1(i\\252)-333(g\\252o)28(w)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-425(Jezus,)-425(\\273e)-1(b)28(y)-424(c)27(h)1(o)-28(\\242)-425(dn)1(ia)-425(d)1(o)-28(cz)-1(ek)55(a\\242!)-424({)-425(j\\246c)-1(za\\252)-425(tr)1(w)27(o\\273nie)-425(i)-424(wybiega\\252)-425(o)-28(czym)-1(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-349(okienk)28(o,)-348(w)27(e)-349(\\261)-1(wiat)1(,)-349(za)-349(dn)1(ie)-1(m;)-348(s)-1(\\252o\\253ca)-349(sz)-1(u)1(k)56(a\\252)-349(p)-28(o)-348(niebie)-349(sz)-1(ar)1(ym,)-349(ost)27(y)1(g\\252ym)-349(i)]TJ 0 -13.549 Td[(p)-27(oprzebij)1(an)28(ym)-334(b)1(ledn\\241cymi)-333(gwiaz)-1(d)1(am)-1(i)1(...)]TJ 27.879 -13.549 Td[(Ale)-334(d)1(z)-1(i)1(e)-1(\\253)-333(b)29(y\\252)-334(j)1(e)-1(sz)-1(cze)-334(dalek)28(o.)]TJ 0 -13.55 Td[(St)1(a)-56(jn)1(ia)-362(ton)1(\\246)-1(\\252a)-361(w)-362(m)-1(\\246tnej)-362(k)1(urza)28(wie)-362(brzas)-1(k)28(\\363)28(w,)-362(\\273e)-362(ju)1(\\273)-363(k)28(on)29(tury)-361(k)28(oni)-361(j\\246\\252y)-362(si\\246)]TJ -27.879 -13.549 Td[(wycina\\242,)-333(a)-334(d)1(rabi)1(n)28(y)-333(p)-28(o)-27(d)-333(okienk)56(ami,)-333(nib)29(y)-333(\\273)-1(ebra,)-333(p)1(rze)-1(\\261w)-1(i)1(t)28(yw)27(a\\252y)-333(p)-27(o)-28(d)-333(\\261w)-1(i)1(at\\252o...)]TJ\nET\nendstream\nendobj\n511 0 obj <<\n/Type /Page\n/Contents 512 0 R\n/Resources 510 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 497 0 R\n>> endobj\n510 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n515 0 obj <<\n/Length 8313      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(157)]TJ -330.353 -35.866 Td[(Ju)1(\\273)-328(nie)-328(zas)-1(y)1(pia\\252,)-327(b)-27(o)-328(b)-27(\\363le)-328(n)1(a\\253)-327(przysz)-1(\\252y)-327(no)28(w)28(e)-1(,)-327(w\\261)-1(li)1(z)-1(giw)28(a\\252y)-327(s)-1(i\\246)-328(w)-327(nog\\246)-328(n)1(ib)28(y)]TJ -27.879 -13.549 Td[(s\\246)-1(k)56(ate)-383(kij)1(e)-384(i)-382(tak)-383(r)1(oz)-1(p)1(ie)-1(r)1(a\\252y)83(,)-382(tak)-383(wierci\\252y)83(,)-382(tak)-383(p)1(ie)-1(k)1(\\252y)83(,)-383(j)1(akb)28(y)-382(kto)-383(\\273ywym)-383(ogni)1(e)-1(m)]TJ 0 -13.549 Td[(ran)29(y)-434(pr)1(z)-1(y)1(s)-1(yp)29(yw)27(a\\252,)-433(\\273)-1(e)-434(ze)-1(r)1(w)27(a\\252)-434(si\\246)-434(nagl)1(e)-435(i)-433(z)-1(acz\\241\\252)-434(z)-1(e)-434(ws)-1(zystkic)28(h)-434(si\\252)-434(kr)1(z)-1(y)1(c)-1(ze)-1(\\242,)-434(a\\273)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-333(si\\246)-334(obu)1(dzi\\252)-333(i)-334(p)1(rzybi)1(e)-1(g\\252.)]TJ 27.879 -13.549 Td[({)-355(Z)-1(amr\\246)-356(j)1(u\\273!)-355(Zam)-1(r\\246!)-355(T)83(ak)-355(m)-1(n)1(ie)-356(b)-27(oli,)-355(tak)-355(w)27(e)-356(mni)1(e)-356(c)27(hor)1(oba)-355(ro\\261nie)-356(i)-355(d)1(usi...)]TJ -27.879 -13.55 Td[(Wit)1(e)-1(k,)-389(b)1(ie\\273)-1(yj)-388(p)-28(o)-389(J)1(am)27(br)1(o\\273)-1(a.)1(..)-389(o)-389(Je)-1(zus,)-389(alb)-27(o)-389(Jagu)1(s)-1(t)28(yn)1(ki)-389(za)27(w)28(o\\252a)-56(j)1(...)-389(mo\\273)-1(e)-389(co)-390(p)-27(o-)]TJ 0 -13.549 Td[(redz\\241,)-364(b)-28(o)-364(ju)1(\\273)-365(nie)-364(w)-1(y)1(dzie)-1(r)1(\\273)-1(\\246...)-364(ju)1(\\273)-365(ta)-364(os)-1(tatn)1(ia)-364(go)-28(dzina)-364(na)-364(mnie)-365(i)1(dzie)-1(.)1(..)-364(te)-1(n)-364(cz)-1(as)]TJ 0 -13.549 Td[(ostatni.)1(..)-387({)-387(b)1(uc)27(h)1(n\\241\\252)-387(strasz)-1(n)28(y)1(m)-388(p)1(\\252ac)-1(ze)-1(m,)-387(zary\\252)-387(t)28(w)28(arz)-387(w)-388(s\\252om\\246)-388(i)-387(\\252k)56(a\\252)-387(\\273a\\252)-1(o\\261ci\\241)-387(a)]TJ 0 -13.549 Td[(strac)27(h)1(e)-1(m.)]TJ 27.879 -13.549 Td[(A)-333(Witek)-333(m)-1(i)1(m)-1(o)-333(roze)-1(span)1(ia)-333(p)-28(ob)1(ie)-1(g\\252)-333(na)-333(w)28(e)-1(se)-1(l)1(e)-1(.)]TJ 0 -13.549 Td[(T)83(a\\253)1(c)-1(o)28(w)27(al)1(i)-452(jesz)-1(cz)-1(e)-452(w)-452(na)-55(jlepsz)-1(e,)-452(al)1(e)-453(Jam)28(br)1(o\\273)-1(y)-451(b)28(y\\252)-452(spit)28(y)-452(j)1(u\\273)-452(sw)27(oim)-452(zwy-)]TJ -27.879 -13.55 Td[(cz)-1(a)-55(jem)-1(,)-461(sta\\252)-462(n)1(a)-461(dro)-27(dze)-462(na)-461(wpr)1(os)-1(t)-461(dom)28(u,)-461(p)-27(otacz)-1(a\\252)-461(s)-1(i)1(\\246)-462(o)-28(d)-461(sta)28(wu)-461(do)-461(p\\252ot\\363)28(w)-461(i)]TJ 0 -13.549 Td[(wy\\261piewyw)27(a\\252.)]TJ 27.879 -13.549 Td[(Darmo)-430(go)-430(Witek)-430(prosi\\252)-430(i)-430(z)-1(a)-430(r\\246k)56(a)27(w)-430(c)-1(i)1(\\241)-28(ga\\252,)-430(dziad)-430(j)1(akb)28(y)-430(ni)1(e)-431(s)-1(\\252y)1(s)-1(za\\252)-431(i)-430(n)1(ie)]TJ -27.879 -13.549 Td[(wiedzia\\252,)-405(co)-404(s)-1(i\\246)-405(z)-404(nim)-404(dzie)-1(j)1(e)-1(,)-404(p)-27(otac)-1(za\\252)-405(si\\246)-405(i)1(no)-404(a)-405(\\261piew)27(a\\252)-404(za)-1(p)1(ami\\246)-1(tal)1(e)-405(c)-1(i)1(\\241)-28(gle)-405(t\\246)]TJ 0 -13.549 Td[(sam)-1(\\241)-333(\\261)-1(p)1(iew)-1(k)28(\\246.)]TJ 27.879 -13.55 Td[(P)28(ob)1(ie)-1(g\\252)-315(d)1(o)-315(Jagu)1(s)-1(t)28(yn)1(ki,)-315(\\273e)-315(to)-315(i)-315(on)1(a)-315(z)-1(n)1(a)-56(j)1(\\241c)-1(a)-315(b)28(y)1(\\252a)-315(na)-315(c)28(horob)1(ac)27(h)1(,)-315(ale)-315(s)-1(tar)1(a)-315(z)]TJ -27.879 -13.549 Td[(ku)1(m)-1(ami)-361(sie)-1(d)1(z)-1(i)1(a\\252a)-361(w)-362(k)28(omorze)-362(i)-360(tak)-361(s)-1(e)-361(pr)1(z)-1(epij)1(a\\252y)-361(kr)1(upn)1(iki)1(e)-1(m,)-361(tak)-361(se)-362(d)1(ogadza\\252y)]TJ 0 -13.549 Td[(pi)1(w)27(em)-1(,)-496(a)-497(tak)-497(wraz)-497(gada\\252y)-497(i)-496(jazgota\\252y)-497(\\261piew)27(an)1(iem)-1(,)-497(\\273e)-497(ani)-497(j)1(e)-1(j)-496(b)28(y\\252o)-497(co)-497(c)-1(zym)]TJ 0 -13.549 Td[(m\\363)27(wi\\242.)-442(Raz)-443(i)-442(d)1(rugi)-442(sk)56(am)-1(l)1(a\\252,)-442(b)28(y)-442(s)-1(z\\252a)-442(do)-442(Ku)1(b)28(y)83(,)-442(to)-442(go)-442(w)-442(k)28(o\\253cu)-442(wyc)-1(i)1(e)-1(p)1(n\\246\\252)-1(a)-442(za)]TJ 0 -13.549 Td[(dr)1(z)-1(wi)-287(i)-288(co\\261)-289(n)1(iec)-1(o\\261)-288(pi)1(\\246)-1(\\261c)-1(i\\241)-287(pr)1(z)-1(y\\252o\\273y\\252a)-288(n)1(a)-288(dr)1(og\\246)-1(;)-287(z)-289(p)1(\\252ac)-1(ze)-1(m)-288(p)-27(olec)-1(ia\\252)-287(do)-288(sta)-56(j)1(ni,)-287(t)28(yle)]TJ 0 -13.55 Td[(ano)-333(ws)-1(k)28(\\363r)1(a)27(wsz)-1(y)84(.)]TJ 27.879 -13.549 Td[(A)-477(\\273e)-477(Kub)1(a)-477(b)28(y\\252)-477(zas)-1(n)1(\\241\\252)-477(z)-1(n)1(o)28(w)-1(u)-476(na)-477(t)1(\\246)-478(c)28(h)28(wil\\246,)-477(wi\\246)-1(c)-477(zak)28(opa\\252)-477(si\\246)-477(w)-477(s)-1(\\252om\\246)-1(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)28(ok)1(ry\\252)-333(\\252)-1(ac)28(hami)-333(na)-333(g\\252o)28(w)27(\\246)-334(i)-333(spa\\252.)]TJ 27.879 -13.549 Td[(Dob)1(rz)-1(e)-422(p)-27(o)-423(\\261ni)1(adani)1(u)-422(obu)1(dzi\\252o)-422(go)-422(p)-28(or)1(ykiw)28(ani)1(e)-423(kr)1(\\363)27(w)-422(g\\252o)-28(d)1(n)28(yc)27(h)-421(i)-422(nie)-422(wy-)]TJ -27.879 -13.549 Td[(do)-55(jon)29(yc)27(h)-495(i)-496(pi)1(e)-1(k\\252o)28(w)28(anie)-496(Jagust)28(yn)1(ki,)-496(k)1(t\\363ra)-496(zas)-1(p)1(a)27(wsz)-1(y)-495(jak)-496(i)-495(dr)1(udzy)84(,)-496(krzyki)1(e)-1(m)]TJ 0 -13.55 Td[(nad)1(rab)1(ia\\252a)-334(p)1(rzy)-333(obrz\\241dzani)1(u)-333(gos)-1(p)-27(o)-28(d)1(ars)-1(t)28(w)28(a.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(k)1(ie)-1(j)-333(co\\261)-334(n)1(ie)-1(co\\261)-334(ze)-1(p)-27(c)27(h)1(n\\246\\252a)-334(r)1(ob)-28(ot)28(y)84(,)-333(z)-1(a)-55(jrza\\252a)-334(d)1(o)-334(K)1(ub)28(y)84(.)]TJ 0 -13.549 Td[({)-333(Dop)-28(om\\363\\273c)-1(ie,)-333(p)-28(or)1(e)-1(d)1(\\271)-1(cie)-334({)-333(pr)1(os)-1(i)1(\\252)-334(cic)27(h)1(o.)]TJ 0 -13.549 Td[({)-265(A)-266(to)-265(s)-1(i)1(\\246)-266(o\\273)-1(e\\253)-265(z)-266(m\\252\\363)-28(dk)56(\\241,)-265(a)-266(wn)1(e)-1(t)-265(si\\246)-266(wylekuj)1(e)-1(sz)-1(!)1({)-266(zac)-1(z\\246)-1(\\252a)-265(w)27(eso\\252)-1(o,)-265(ale)-265(s)-1(k)28(oro)]TJ -27.879 -13.549 Td[(si\\246)-416(pr)1(z)-1(yj)1(rza\\252)-1(a)-415(jego)-416(t)28(w)28(arzy)-416(sin)1(e)-1(j)-415(i)-415(obrz\\246)-1(k)1(\\252e)-1(j)1(,)-416(sp)-28(o)28(w)28(a\\273)-1(n)1(ia\\252a)-416(p)1(r\\246dk)28(o.)-415({)-416(Ksi\\246dza)-416(ci)]TJ 0 -13.55 Td[(wi\\246c)-1(ej)-296(p)-28(ot)1(rz)-1(eba)-296(n)1(i\\271)-1(l)1(i)-297(d)1(o)-28(c)27(h)29(tora!)-296(C\\363\\273)-297(j)1(a)-297(ci)-296(p)-28(or)1(e)-1(d)1(z)-1(\\246?)-297(Co?)-296(Z)-1(am\\363)28(wi\\252ab)28(ym,)-296(ok)56(adzi\\252a,)]TJ 0 -13.549 Td[(a)-320(b)-27(o)-321(t)1(o)-321(p)-27(omo\\273)-1(e?...)-320(Wi)1(dzi)-320(m)-1(i)-320(si\\246,)-320(\\273)-1(e\\261)-321(t)28(y)-320(j)1(u\\273)-320(c)27(hor)1(y)-320(na)-320(\\261m)-1(i)1(e)-1(r\\242,)-320(n)1(a)-321(czys)-1(t\\241)-320(\\261mie)-1(r)1(\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Zam)-1(r)1(\\246)-1(?)]TJ 0 -13.549 Td[({)-370(W)-371(b)-27(os)-1(k)1(ie)-1(j)-370(t)1(o)-371(mo)-28(c)-1(y)84(,)-370(ale)-371(widzi)-370(m)-1(i)-370(si\\246)-1(,)-370(\\273e)-371(Kostusi)-371(z)-371(p)1(az)-1(u)1(r\\363)28(w)-371(si\\246)-371(ni)1(e)-371(wy-)]TJ -27.879 -13.549 Td[(psni)1(e)-1(sz)-1(.)]TJ 27.879 -13.549 Td[({)-333(Zam)-1(r)1(\\246)-1(,)-333(p)-27(o)27(wiad)1(ac)-1(i)1(e)-1(?...)]TJ 0 -13.55 Td[({)-333(P)28(o)-333(dobr)1(o)-28(dzieja)-333(b)28(y)-333(ano)-333(p)-27(os)-1(\\252a\\242,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-415(Dob)1(ro)-28(d)1(z)-1(ieja!)-414({)-415(wykr)1(z)-1(yk)1(n\\241\\252)-415(zdu)1(m)-1(ion)29(y)83(.)-414({)-415(Dobr)1(o)-28(dzieja)-415(p)1(rzywie)-1(\\261\\242)-415(tuta)-55(j,)]TJ -27.879 -13.549 Td[(do)-333(sta)-56(j)1(ni,)-333(d)1(o)-334(mni)1(e)-1(?...)-333(Co)-333(w)27(ama)-333(p)-28(o)-333(g\\252o)28(w)-1(i)1(e)-334(c)27(ho)-27(dzi?)]TJ 27.879 -13.549 Td[({)-316(A)-316(c)-1(\\363\\273)-316(to?)-316(Z)-316(c)-1(u)1(kru)-315(jes)-1(t)-316(i)-316(r)1(oz)-1(p)1(u\\261c)-1(i)-316(si\\246)-316(w)-317(t)28(ym)-316(\\252a)-56(j)1(ni)1(e)-317(k)28(o\\253skim?)-316(Ksi\\241dz)-316(jes)-1(t)]TJ -27.879 -13.549 Td[(o)-28(d)-333(tego,)-333(b)28(y)-333(gdzie)-334(go)-333(do)-333(c)27(h)1(orego)-334(p)1(rosz)-1(\\241,)-333(sz)-1(ed\\252.)]TJ 27.879 -13.55 Td[({)-333(Je)-1(zus!)-333(A)-334(mia\\252b)28(y)1(m)-334(to)-333(\\261)-1(mia\\252o\\261\\242)-1(,)-333(w)-334(t)1(e)-1(n)-333(gn)1(\\363)-56(j)1(,)-334(d)1(o)-334(mn)1(ie)-1(?..)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-334(j)1(ak)-334(t)1(e)-1(n)-333(b)1(aran!)-333({)-333(cis)-1(n)1(\\246)-1(\\252a)-333(ramionami)-333(i)-333(p)-27(os)-1(z\\252a.)]TJ\nET\nendstream\nendobj\n514 0 obj <<\n/Type /Page\n/Contents 515 0 R\n/Resources 513 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n513 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n519 0 obj <<\n/Length 9336      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(158)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-342(S)1(am)-1(a)-342(g\\252u)1(pia,)-341(ani)-341(w)-1(i)1(e)-1(,)-341(c)-1(o)-342(p)-27(o)28(wiada..)1(.)-342({)-342(mru)1(kn\\241\\252)-342(ob)1(ur)1(z)-1(on)28(y)-341(s)-1(r)1(o)-28(dze)-1(,)-341(opad)1(\\252)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273k)28(o)-336(n)1(a)-336(b)1(ar\\252\\363g)-336(i)-335(d\\252u)1(go)-336(j)1(e)-1(sz)-1(cz)-1(e)-336(r)1(oz)-1(m)28(y\\261)-1(l)1(a\\252)-1(.)-335({)-335(Z)-1(ac)28(hcialo)-335(s)-1(i\\246)-336(b)1(abie...)-335(h)1(ale)-1(,)-335(dob)1(ro-)]TJ 0 -13.549 Td[(dziej)-399(k)28(o)-28(c)27(h)1(an)28(y)-399(p)-27(o)-400(p)-27(ok)28(o)-56(j)1(ac)27(h)-399(se)-400(c)27(h)1(o)-28(dzi..)1(.z)-400(ksi\\241\\273e)-1(k)-399(p)-27(o)-28(c)-1(zytu)1(je...)-399(z)-400(P)28(an)1(e)-1(m)-399(B)-1(ogi)1(e)-1(m)]TJ 0 -13.549 Td[(rozma)27(wia.)1(..)-470(i)-469(do)-470(mni)1(e)-471(b)29(y)-470(go)-470(w)28(o\\252a\\242)-1(?...)-469(T)83(e)-470(k)28(obiet)28(y)-470(to)-470(i)1(no)-470(ab)29(y)-470(oz)-1(or)1(e)-1(m)-470(mle\\242)-1(..)1(.)]TJ 0 -13.549 Td[(g\\252up)1(ia...)]TJ 27.879 -13.55 Td[(I)-333(tak)-333(ju\\273)-333(p)-28(ozos)-1(t)1(a\\252)-334(sam)-1(,)-333(b)-27(o)-334(j)1(akb)28(y)-333(o)-333(ni)1(m)-334(z)-1(ap)-27(omnieli.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-293(cz)-1(asami)-293(nagl)1(\\241da\\252,)-293(ab)28(y)-292(k)28(oniom)-293(pr)1(z)-1(y)1(s)-1(yp)1(a\\242)-294(ob)1(roku)1(,)-293(nap)-27(oi\\242,)-293(to)-293(i)-292(jem)27(u)]TJ -27.879 -13.549 Td[(p)-27(o)-28(da)28(w)28(a\\252)-360(w)28(o)-28(d)1(y)83(,)-359(i)-359(wnet)-359(z)-1(n)1(ik)56(a\\252,)-359(lec)-1(ia\\252)-359(na)-359(w)28(e)-1(sele)-1(,)-359(k)1(t\\363re)-360(zno)28(wu)-359(zac)-1(z\\246)-1(\\252o)-359(si\\246)-360(zbiera\\242)]TJ 0 -13.549 Td[(u)-417(Dominik)28(o)28(w)28(e)-1(j)-417(na)-417(pr)1(z)-1(enosin)28(y)84(,)-418(a)-417(c)-1(zas)-1(ami)-418(J\\363zk)56(a)-418(wpad)1(a\\252a)-418(z)-418(krzyki)1(e)-1(m,)-418(wt)28(yk)56(a\\252a)]TJ 0 -13.549 Td[(m)27(u)-373(k)56(a)28(w)27(a\\252ek)-374(p)1(lac)27(k)56(a,)-373(nagad)1(a\\252)-1(a,)-373(nat)1(rz)-1(epa\\252a,)-373(na)28(wia\\252a)-374(sta)-56(j)1(ni\\246)-374(wrzaskiem)-1(,)-373(a\\273)-374(kur)1(y)]TJ 0 -13.549 Td[(gdak)56(a\\252y)-333(z)-334(p)1(rze)-1(strac)27(h)29(u)-333(na)-333(p\\252otac)28(h,)-333(i)-333(uciek)55(a\\252a)-333(\\261)-1(p)1(ies)-1(zno.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-374(mia\\252a)-373(p)-28(o)-373(c)-1(o,)-373(b)-28(o)-373(tam)-374(s)-1(i)1(\\246)-374(ju\\273)-374(zaba)28(wiali)-373(ni)1(e)-1(zgorz)-1(ej,)-373(m)27(u)1(z)-1(y)1(k)55(a)-373(h)28(ucza\\252)-1(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(\\261c)-1(ian)29(y)-333(i)-334(k)1(rzyki)-333(s)-1(z\\252y)-333(w)27(es)-1(o\\252e)-334(a)-333(\\261piew)27(an)1(ia.)]TJ 27.879 -13.549 Td[(A)-499(Ku)1(ba)-499(le\\273)-1(a\\252)-499(c)-1(i)1(c)27(ho,)-499(b)-27(o)-499(jak)28(o\\261)-500(z)-499(rzadk)56(a)-499(c)27(h)28(wyta\\252y)-499(go)-499(b)-27(ole)-1(n)1(ia,)-499(wi\\246)-1(c)-499(ino)]TJ -27.879 -13.549 Td[(nas\\252uc)28(hiw)28(a\\252)-381(i)-380(roze)-1(zna)28(w)28(a\\252,)-381(j)1(ak)-380(s)-1(i\\246)-381(t)1(am)-381(z)-1(ab)1(a)28(w)-1(i)1(a)-56(j\\241,)-380(a)-380(p)-28(ogad)1(yw)28(a\\252)-381(z)-381(\\212ap\\241,)-380(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(ni)1(e)-331(opu\\261ci\\252)-331(go)-331(an)1(i)-331(n)1(a)-331(c)27(h)28(wil)1(\\246)-1(,)-330(i)-331(p)-27(o)-56(j)1(adali)-330(se)-332(sp)-27(o\\252e)-1(cz)-1(n)1(ie)-331(J\\363z)-1(i)1(n)-331(p)1(lace)-1(k;)-330(alb)-27(o)-331(cm)-1(ok)56(a\\252)]TJ 0 -13.55 Td[(na)-418(k)28(on)1(ie)-419(i)-417(prze)-1(ma)28(wia\\252)-418(do)-418(ni)1(c)27(h.)-417(R)-1(\\273a\\252y)-418(rad)1(o\\261)-1(n)1(ie)-419(i)-417(o)-28(dwraca\\252y)-418(o)-28(d)-417(\\273)-1(\\252ob)-27(\\363)27(w)-418(\\252b)28(y)84(,)-418(a)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-426(\\271)-1(r\\363b)1(k)56(a)-427(urw)28(a\\252a)-427(s)-1(i)1(\\246)-428(z)-427(u\\271dzienicy)-427(i)-427(p)1(rzyc)27(h)1(o)-28(dzi\\252a)-427(d)1(o)-427(w)-1(y)1(rk)56(a)-427(bar)1(as)-1(zk)28(o)27(w)28(a\\242)-427(i)]TJ 0 -13.549 Td[(tu)1(li\\242)-334(wilgot)1(ne)-334(a)-333(c)-1(i)1(e)-1(p)1(\\252)-1(e)-333(c)27(hr)1(ap)28(y)-333(do)-333(jego)-333(t)28(w)27(arzy)84(.)]TJ 27.879 -13.549 Td[({)-370(S)1(c)27(h)28(u)1(d\\252a\\261,)-370(b)1(ie)-1(d)1(oto,)-370(sc)27(h)28(u)1(d\\252a\\261!)-370({)-370(G)1(\\252as)-1(k)56(a\\252)-370(j)1(\\241)-370(c)-1(zul)1(e)-371(i)-369(c)-1(a\\252o)28(w)28(a\\252)-370(p)-28(o)-369(rozd\\246t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(nozdr)1(z)-1(ac)28(h.)-244({)-244(Nie)-244(b)-28(\\363)-55(j)-244(si\\246)-1(,)-243(w)-1(yzdr)1(o)28(w)-1(i)1(e)-1(j)1(\\246)-245(ry)1(c)27(h\\252o,)-244(to)-244(wnet)-244(ci)-244(b)-28(ok)1(i)-244(p)-28(o)-28(d)1(krzepi\\246,)-244(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.55 Td[(i)-333(c)-1(zyst)28(ym)-334(o)28(ws)-1(em...)]TJ 27.879 -13.549 Td[(Mi)1(lkn\\241\\252)-358(wn)1(e)-1(t)-358(i)-357(patrzy\\252)-358(b)-27(e)-1(zm)27(y)1(\\261)-1(ln)1(ie)-358(w)-359(p)-27(o)-28(cz)-1(ern)1(ia\\252e)-359(s\\246)-1(k)1(i,)-358(z)-358(kt\\363ry)1(c)27(h)-358(s\\241cz)-1(y\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(na)-333(\\261c)-1(ian)29(y)-333(\\273)-1(ywicz)-1(n)1(e)-334(strugi)1(,)-333(nib)28(y)-333(\\252zy)-333(krw)28(a)28(w)27(e)-334(i)-333(zas)-1(t)28(yg\\252e...)]TJ 27.879 -13.549 Td[(S\\252on)1(e)-1(cz)-1(n)29(y)-222(a)-223(p)1(rzybl)1(ad\\252y)-222(dzie\\253)-222(z)-1(agl)1(\\241da\\252)-222(pr)1(z)-1(ez)-223(sz)-1(p)1(ary)-222(c)-1(i)1(c)27(h)28(ymi)-222(o)-28(cz)-1(y)1(m)-1(a,)-222(d)1(rzw)-1(i)1(a-)]TJ -27.879 -13.549 Td[(mi)-285(z)-1(a\\261)-285(w)-1(y)1(w)27(ar)1(t)27(y)1(m)-1(i)-285(b)1(uc)28(ha\\252)-285(s)-1(ze)-1(r)1(oki)-285(p)-27(otok)-285(jasno\\261c)-1(i)-285(skrz\\241c)-1(ej,)-284(m)-1(igotl)1(iw)27(ej,)-284(jak)28(o)-285(z)-1(\\252ote)]TJ 0 -13.55 Td[(pa)-55(j\\246c)-1(zyn)28(y)-357(p)-28(o)-358(\\261c)-1(i)1(e)-1(r)1(nisk)56(ac)27(h,)-357(w)-359(k)1(t\\363ryc)28(h)-358(tr)1(z)-1(epa\\252y)-358(si\\246)-358(m)27(uc)28(h)28(y)-358(z)-358(s)-1(enn)29(ym,)-358(om)-1(d)1(la\\252ym)]TJ 0 -13.549 Td[(br)1(z)-1(\\246kiem.)]TJ 27.879 -13.549 Td[(Go)-27(dzin)28(y)-276(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(i\\252y)-275(z)-1(a)-276(go)-27(dzinami)-276(i)-275(wle)-1(k)1(\\252y)-276(s)-1(i)1(\\246)-277(w)28(oln)1(o,)-276(j)1(ak)-276(te)-276(dziady)-275(\\261)-1(l)1(e)-1(p)-27(e)]TJ -27.879 -13.549 Td[(i)-387(kul)1(a)27(w)28(e)-1(,)-387(p)-27(o)-388(srogic)28(h)-387(piask)56(ac)27(h)-387(id\\241ce)-388(z)-388(ut)1(rud)1(z)-1(eni)1(e)-1(m)-388(a)-387(w)-388(cic)27(h)1(o)-1(\\261ci,)-387(alb)-28(o)-387(jak)28(o)-387(te)-1(n)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(e)-1(\\253)1(,)-318(co)-317(pad)1(a)-318(w)-318(t)1(opiel)-317(i)-318(l)1(e)-1(ci,)-317(pr)1(z)-1(epad)1(a,)-318(gi)1(nie,)-317(a)-318(n)1(a)27(w)28(et)-318(go)-317(o)-28(cz)-1(y)-317(cz)-1(\\252o)28(wie)-1(cz)-1(e)-317(nie)]TJ 0 -13.55 Td[(c)27(h)29(yc)-1(\\241.)]TJ 27.879 -13.549 Td[(Ino)-339(cz)-1(ase)-1(m)-339(wr\\363b)1(le)-340(r)1(oz)-1(\\261w)-1(i)1(e)-1(r)1(gotane)-339(w)-1(r)1(z)-1(askliw)28(\\241)-339(ban)1(d\\241)-339(wpad)1(a\\252y)-339(do)-339(sta)-56(j)1(ni)-339(i)]TJ -27.879 -13.549 Td[(zuc)27(h)29(w)27(ale)-333(rz)-1(u)1(c)-1(a\\252y)-333(si\\246)-334(n)1(a)-334(\\273\\252ob)28(y)83(.)1(..)]TJ 27.879 -13.549 Td[({)-407(Jaki)1(e)-408(to)-406(z)-1(m)28(y\\261)-1(l)1(ne)-407(ju)1(c)27(h)28(y!)-406({)-407(s)-1(zepta\\252.)-407({)-407(T)84(akiem)27(u)-406(ptasz)-1(k)28(o)28(wi,)-407(a)-407(P)29(an)-407(Jez)-1(u)1(s)]TJ -27.879 -13.549 Td[(rozum)-370(d)1(a)-56(j)1(e)-1(,.)-369(\\273e)-370(w)-1(i)1(e)-1(,)-369(gdzie)-370(p)-27(o\\273)-1(ywieni)1(e)-371(znal)1(e)-1(\\271\\242)-1(.)-369(Cic)27(h)1(o,)-370(\\212ap)1(a,)-370(n)1(iec)27(h)-369(s)-1(i\\246)-370(p)-27(o\\273ywi\\241)]TJ 0 -13.549 Td[(i)-343(wsp)-28(omog\\241)-343(b)1(ie)-1(d)1(ot)28(y)83(,)-342(b)-28(o)-343(i)-342(na)-343(n)1(ic)27(h)-342(z)-1(i)1(m)-1(a)-343(p)1(rzyjd)1(z)-1(i)1(e)-1(.)-343({)-342(Przycis)-1(za\\252,)-343(b)-27(o)-343(pi)1(e)-1(s)-343(s)-1(k)28(o)-27(c)-1(zy\\252)]TJ 0 -13.55 Td[(wyp)-27(\\246)-1(d)1(z)-1(a\\242)-334(r)1(abu)1(s)-1(i\\363)28(w.)]TJ 27.879 -13.549 Td[(\\221win)1(ie)-256(zacz)-1(\\246\\252y)-256(k)1(w)-1(i)1(c)-1(ze)-1(\\242)-255(w)-256(p)-27(o)-28(d)1(w)27(\\363rzu)-255(i)-255(co)-28(c)27(h)1(a\\242)-256(si\\246)-256(o)-255(w)27(\\246g\\252y)83(,)-255(a\\273)-255(s)-1(ta)-55(jn)1(ia)-255(drga\\252a,)]TJ -27.879 -13.549 Td[(a)-333(p)-28(otem)-334(j)1(\\246)-1(\\252y)-333(wt)28(yk)56(a\\242)-334(w)-334(d)1(rzw)-1(i)-333(d)1(\\252ugie,)-333(ob\\252o)-28(cone)-334(r)1(yje)-333(i)-333(p)-28(okwik)1(iw)27(a\\242.)]TJ 27.879 -13.549 Td[({)-333(Wyp)-27(\\246)-1(d)1(\\271)-1(,)-333(\\212ap)1(a!)-333(Dz)-1(iad)1(aki)-333(jedn)1(e)-1(,)-333(wsz)-1(ystkiego)-333(im)-334(za)27(w\\273dy)-333(ma\\252o!)]TJ 0 -13.549 Td[(P)28(o)-222(ni)1(c)27(h)-222(ku)1(ry)-222(zakrze)-1(k)28(or)1(z)-1(y\\252y)-222(p)1(rze)-1(d)-222(p)1(rogiem,)-222(a)-223(wielki)1(,)-222(c)-1(ze)-1(r)1(w)27(on)28(y)-222(k)28(ogu)1(t)-222(os)-1(tr)1(o\\273)-1(-)]TJ -27.879 -13.55 Td[(ni)1(e)-343(zagl\\241d)1(a\\252)-1(,)-341(c)-1(of)1(a\\252)-342(s)-1(i)1(\\246)-1(,)-341(bi\\252)-342(skrzyd)1(\\252am)-1(i)-341(i)-342(kr)1(z)-1(yk)56(a\\252,)-342(a\\273)-342(zuc)27(h)29(w)27(ale)-342(wsk)28(o)-28(c)-1(zy\\252)-342(za)-342(pr)1(\\363g,)]TJ 0 -13.549 Td[(do)-281(k)28(obi)1(a\\252)-1(k)1(i)-282(p)-27(e\\252nej)-281(o)-1(b)1(roku)1(,)-281(a)-282(za)-282(n)1(im)-282(resz)-1(ta,)-281(ale)-282(n)1(ie)-282(zd\\241\\273)-1(y)1(\\252y)-282(si\\246)-282(j)1(e)-1(sz)-1(cz)-1(e)-282(n)1(a)-56(j)1(e)-1(\\261\\242)-1(,)-281(b)-27(o)]TJ\nET\nendstream\nendobj\n518 0 obj <<\n/Type /Page\n/Contents 519 0 R\n/Resources 517 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n517 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n522 0 obj <<\n/Length 8559      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(159)]TJ -358.232 -35.866 Td[(wnet)-253(nadci\\241)-28(gn)1(\\246)-1(\\252y)-253(r)1(oz)-1(g\\246gan\\241)-253(gromad\\241)-253(g\\246s)-1(i,)-253(z)-253(s)-1(y)1(kiem)-254(migota\\252y)-253(w)-254(p)1(rogu)-253(cz)-1(erw)28(one)]TJ 0 -13.549 Td[(dziob)28(y)-333(i)-333(c)27(h)29(w)-1(i)1(a\\252y)-334(si\\246)-334(b)1(ia\\252e,)-334(p)-27(o)28(wyc)-1(i)1(\\241)-28(gane)-334(szyje.)]TJ 27.879 -13.549 Td[({)-333(Wygo\\253)1(,)-334(p)1(ies)-1(ku)1(,)-333(w)-1(y)1(go\\253!)-333(Sw)28(arz\\241)-333(s)-1(i\\246)-333(juc)28(h)28(y)-333(kiej)-333(te)-334(b)1(ab)28(y!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-242(\\273e)-243(wnet)-242(s)-1(i)1(\\246)-243(rozleg\\252)-242(w)-1(r)1(z)-1(ask,)-242(p)1(is)-1(k)1(,)-242(\\252om)-1(otan)1(ie)-243(skr)1(z)-1(yd)1(e)-1(\\252)-242(i)-242(p)1(i\\363ra)-242(p)-27(olec)-1(ia\\252y)]TJ -27.879 -13.549 Td[(kieb)28(y)-246(z)-248(r)1(oz)-1(p)1(rutej)-246(pierzyn)28(y)84(,)-247(b)-27(o)-247(\\212apa)-247(n)1(ie)-247(\\273)-1(a\\252o)28(w)27(a\\252)-247(sobi)1(e)-248(u)1(c)-1(iec)27(h)29(y;)-247(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-247(z)-1(zia)-56(j)1(an)28(y)84(,)]TJ 0 -13.55 Td[(z)-334(wywies)-1(zon)28(ym)-333(oz)-1(orem)-334(i)-333(sk)28(om)-1(l)1(a\\252)-334(r)1(ado\\261nie.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-333(n)1(o!)]TJ 0 -13.549 Td[(Od)-414(dom)28(u)-415(rozlat)28(yw)28(a\\252y)-415(s)-1(i)1(\\246)-416(gn)1(ie)-1(wn)1(e)-416(g\\252os)-1(y)-414(Jagust)28(ynk)1(i,)-415(bi)1(e)-1(gan)1(ina)-415(i)-415(t)1(rz)-1(aski)]TJ -27.879 -13.549 Td[(sprz\\246)-1(t)1(\\363)27(w,)-333(pr)1(z)-1(ewle)-1(k)56(an)28(y)1(c)27(h)-333(z)-334(izb)28(y)-333(d)1(o)-334(izb)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Gotuj)1(\\241)-333(s)-1(i\\246)-333(do)-333(przenosin!)]TJ 0 -13.549 Td[(Drog\\241)-405(kto\\261)-406(n)1(iekto\\261)-406(pr)1(z)-1(eje\\273)-1(d)1(\\273)-1(a\\252,)-405(ale)-406(z)-406(r)1(z)-1(ad)1(k)55(a,)-405(a)-405(te)-1(r)1(az)-406(z)-1(asie)-406(cz)-1(\\252ap)1(a\\252)-406(si\\246)-406(z)]TJ -27.879 -13.55 Td[(pi)1(s)-1(ki)1(e)-1(m)-333(w)27(\\363z)-334(j)1(aki\\261;)-333(Kub)1(a)-334(r)1(oz)-1(ez)-1(n)1(a)28(w)27(a\\252)-333(pil)1(nie.)]TJ 27.879 -13.549 Td[({)-383(K\\252\\246b)-28(\\363)28(w)-383(w)27(\\363z,)-383(w)-383(jedn)1(e)-1(go)-383(k)28(on)1(ia)-383(i)-383(d)1(rabi)1(nami,)-383(p)-27(e)-1(wni)1(e)-384(p)-27(o)-383(\\261)-1(ci\\363\\252k)28(\\246)-383(do)-383(lasu.)]TJ -27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(o\\261)-334(w)-334(p)1(rzo)-28(dk)1(u)-333(w)-1(y)1(tarta)-333(i)-333(b)-28(ez)-334(to)-333(si\\246)-334(pi)1(as)-1(t)-333(pr)1(z)-1(ec)-1(i)1(e)-1(ra)-333(i)-333(skrzypi)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-268(d)1(rogac)27(h)-267(w)28(c)-1(i\\241\\273)-268(sn)28(u\\252y)-267(s)-1(i\\246)-268(o)-28(d)1(g\\252os)-1(y)-267(krok)28(\\363)28(w,)-268(rozmo)27(wy)84(,)-268(g\\252os)-1(y)-267(lec)-1(ia\\252y)-267(i)-268(dr)1(ga-)]TJ -27.879 -13.549 Td[(\\252y)-406(l)1(e)-1(d)1(w)-1(i)1(e)-407(d)1(os)-1(\\252y)1(s)-1(zane,)-406(ledwie)-406(o)-28(d)1(c)-1(zute)-406(b)1(rzm)-1(i)1(e)-1(n)1(ia,)-406(ale)-406(j)1(e)-406(c)27(h)28(wyta\\252)-406(w)-406(l)1(ot)-406(i)-405(rozp)-28(o-)]TJ 0 -13.55 Td[(zna)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[({)-358(St)1(ary)-358(P)1(ie)-1(tr)1(as)-1(.)-357(do)-358(k)56(arcz)-1(m)28(y)-358(id)1(z)-1(ie)-358({)-358(mru)1(c)-1(za\\252)-1(.)-357({)-358(W)83(al)1(e)-1(n)28(to)28(w)28(a)-358(wykrzyku)1(je...)]TJ -27.879 -13.549 Td[(p)-27(e)-1(wni)1(e)-311(g\\241ski)-309(c)-1(zyje)-310(p)1(rze)-1(sz)-1(\\252y)-309(na)-310(j)1(e)-1(j)-309(s)-1(t)1(ron\\246...)-309(Piekieln)1(ic)-1(a)-309(nie)-310(b)1(aba!)-310(K)1(oz)-1(\\252o)28(w)27(a)-309(w)-1(i)1(dzi)]TJ 0 -13.549 Td[(mi)-369(s)-1(i)1(\\246)-1(..)1(.)-369(ju)1(\\261)-1(ci...)-369(b)1(ie\\273)-1(y)-369(i)-369(k)1(rz)-1(y)1(c)-1(zy)83(.)1(..)-369(ju)1(\\261)-1(ci)-369(ona!)1(...)-369(P)1(ie)-1(t)1(re)-1(k)-368(R)-1(af)1(a\\252\\363)28(w)-1(.)1(..)-369(ra)-55(jcuje)-369(ju)1(c)27(h)1(a,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-383(mia\\252)-383(kl)1(uski)-383(w)-383(g\\246bi)1(e)-1(..)1(.)-383(ksi\\246)-1(\\273a)-383(k)28(ob)28(y)1(\\252a)-383(p)-28(o)-382(w)27(o)-28(d)1(\\246)-383(jedzie)-1(,)-382(tak..)1(.)-383(p)-27(os)-1(ta)-55(je...)-382(z)-1(a-)]TJ 0 -13.55 Td[(w)28(adza)-334(k)28(o\\252ami...)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(e)-334(k)1(ie)-1(d)1(y)-333(kul)1(as)-1(y)-333(p)-27(o\\252am)-1(ie...)]TJ 27.879 -13.549 Td[(I)-299(tak)-299(se)-300(z)-299(w)27(ol)1(na)-299(rozp)-27(oz)-1(n)1(a)27(w)28(a\\252)-299(ws)-1(zystk)28(o)-299(i)-299(m)27(y)1(\\261)-1(lami,)-299(i)-298(t)27(y)1(m)-300(wid)1(z)-1(eni)1(e)-1(m)-299(c)-1(zuj)1(\\241-)]TJ -27.879 -13.549 Td[(cym)-361(p)-28(o)-360(ws)-1(i)-360(c)27(h)1(o)-28(dzi\\252,)-361(k)1(\\252op)-28(ota\\252)-360(s)-1(i\\246,)-360(z)-1(ab)1(ie)-1(ga\\252,)-360(tur)1(b)-28(o)28(w)28(a\\252)-361(i)-360(\\273)-1(y\\252)-360(\\273)-1(yciem)-361(ws)-1(i)-360(c)-1(a\\252ej,)-360(\\273)-1(e)]TJ 0 -13.549 Td[(ledwie)-252(sp)-28(ostrze)-1(g\\252,)-251(jak)-251(d)1(z)-1(ie\\253)-251(pr)1(z)-1(ec)27(ho)-27(dzi\\252)-252(z)-252(w)28(olna;)-251(\\261c)-1(ian)29(y)-252(p)1(rz)-1(y)1(gas)-1(\\252y)84(,)-252(d)1(rzw)-1(i)-251(zblad)1(\\252y)]TJ 0 -13.549 Td[(i)-333(s)-1(t)1(a)-56(jn)1(ia)-333(m)-1(r)1(o)-28(c)-1(ze\\242)-334(p)-28(o)-27(c)-1(z\\246)-1(\\252a.)]TJ 27.879 -13.55 Td[(Ju)1(\\273)-281(p)-28(o)-27(d)-281(sam)-281(wiec)-1(z\\363r)-280(pr)1(z)-1(ysz)-1(ed\\252)-280(Jam)27(b)1(ro\\273y)-281(n)1(ie)-281(wytr)1(z)-1(e\\271)-1(wion)28(y)-280(d)1(o)-281(cna,)-280(b)-27(o)-281(si\\246)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(p)-27(otacz)-1(a\\252)-333(i)-333(m)-1(\\363)28(wi\\252)-333(tak)-333(pr\\246dk)28(o,)-333(\\273e)-334(tru)1(dn)1(o)-334(b)29(y\\252o)-334(r)1(oz)-1(ebr)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Noge)-1(\\261)-334(p)-27(on)1(o)-334(wykr)1(\\246)-1(ci\\252?)]TJ 0 -13.549 Td[({)-333(A)-334(ob)1(ac)-1(zc)-1(i)1(e)-334(i)-333(p)-28(or)1(e)-1(d)1(\\271)-1(cie.)]TJ 0 -13.549 Td[(W)-259(mil)1(c)-1(ze)-1(n)1(iu)-258(o)-28(dwij)1(a\\252)-259(s)-1(zm)-1(at)28(y)-258(pr)1(z)-1(ekrwion)1(e)-1(,)-258(z)-1(es)-1(c)28(h\\252e)-259(i)-259(tak)-258(przyw)28(arte)-259(do)-258(nogi,)]TJ -27.879 -13.55 Td[(\\273e)-334(Kub)1(a)-333(z)-1(acz)-1(\\241\\252)-333(krzycz)-1(e\\242)-334(wnieb)-27(og\\252)-1(osy)84(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(p)1(ann)1(a)-334(p)1(rzy)-334(r)1(o)-28(dac)28(h)-333(tak)-333(nie)-333(kwic)-1(zy!)-333({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(u)1(r\\241)-28(gl)1(iwie)-1(.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(b)-28(ol)1(i!..)1(.)-334(A)-333(dy)1(\\242)-334(ni)1(e)-334(s)-1(zarp)-27(c)-1(i)1(e)-1(!)-333(Jez)-1(u)1(s)-1(!)-333({)-333(wy\\252)-334(p)1(ra)28(wie)-1(.)]TJ 0 -13.549 Td[({)-407(A)-407(to)-406(c)-1(i\\246)-407(uszlac)27(h)28(to)28(w)28(ali!)-406(Pies)-408(ci)-407(\\252yd)1(k)28(\\246)-407(w)-1(y)1(\\273)-1(ar\\252)-407(czy)-407(c)-1(o?)-407(wyk)1(rz)-1(y)1(kn\\241\\252)-407(zdu)1(-)]TJ -27.879 -13.549 Td[(mion)28(y)84(,)-333(b)-28(o)-333(\\252ydk)56(a)-333(b)28(y\\252a)-333(p)-28(oszarpan)1(a,)-333(z)-1(ar)1(opia\\252a,)-333(noga)-333(spuc)28(h\\252a)-333(jak)-333(k)28(on)1(e)-1(w.)]TJ 27.879 -13.549 Td[({)-333(T)83(o...)-333(in)1(o)-334(n)1(ie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j)1(c)-1(ie)-333(nik)28(om)28(u..)1(.)-334(b)-27(oro)28(wy)-333(m)-1(e)-333(p)-28(ostrze)-1(l)1(i\\252...)-333(in)1(o...)]TJ 0 -13.55 Td[({)-272(Pr)1(a)27(wd)1(a...)-272(\\261rucin)28(y)-271(s)-1(iedz\\241)-272(p)-28(o)-27(d)-272(s)-1(k)28(\\363r)1(\\241)-272(kiej)-272(mak...)-272(z)-272(dalek)56(a)-272(do)-272(c)-1(i)1(\\246)-273(wygarn)1(\\241\\252?)]TJ -27.879 -13.549 Td[(Ho,)-389(ho!)-389(Ku)1(las)-390(widzi)-389(m)-1(i)-389(si\\246)-390(na)-389(ni)1(c)-390(ju)1(\\273)-1(..)1(.)-390(k)28(ostec)-1(zki)-389(c)27(hr)1(ob)-28(o)-27(c)-1(z\\241)-390(an)1(o...)-389(Cz)-1(em)27(u)1(\\261)-390(to)]TJ 0 -13.549 Td[(zaraz)-334(mnie)-333(nie)-334(w)28(o\\252a\\252?)]TJ 27.879 -13.549 Td[({)-341(Bo)-56(j)1(a\\252)-1(em)-341(s)-1(i)1(\\246)-1(..)1(.)-341(jakb)29(y)-341(si\\246)-342(d)1(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252y)84(,)-341(na)-340(z)-1(a)-55(j\\241cz)-1(k)56(a)-341(wys)-1(zed\\252e)-1(m..)1(.)-341(ustrze)-1(l)1(i-)]TJ -27.879 -13.549 Td[(\\252e)-1(m..)1(.)-334(i)-333(j)1(u\\273)-334(n)1(a)-334(p)-27(olu)-333(b)29(y\\252e)-1(m...)-333(a)-333(ten)-333(kiej)-333(nie)-333(ryp)1(nie)-333(do)-333(m)-1(n)1(ie...)]TJ 27.879 -13.55 Td[({)-333(P)28(o)28(w)-1(i)1(ada\\252)-333(kiedy\\261)-334(w)-333(k)56(arcz)-1(mie)-334(b)-27(oro)28(wy)83(,)-333(\\273e)-334(kto\\261)-333(im)-334(sz)-1(k)28(o)-28(d)1(y)-333(c)-1(zyni)1(...)]TJ 0 -13.549 Td[({)-377(Hal)1(e)-1(..)1(.)-377(sz)-1(k)28(o)-28(d)1(y)83(.)1(..)-377(n)1(ib)28(y)-376(to)-377(za)-56(j)1(\\241c)-1(e)-377(nal)1(e)-1(\\273\\241)-377(d)1(o)-377(k)28(ogo...)-376(\\261)-1(cierw)28(a...)-376(z)-1(asadzi\\252)-377(si\\246)]TJ\nET\nendstream\nendobj\n521 0 obj <<\n/Type /Page\n/Contents 522 0 R\n/Resources 520 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n520 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n525 0 obj <<\n/Length 8279      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(160)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(na)-264(mni)1(e)-1(..)1(.)-264(ju\\273)-264(na)-264(p)-27(olu)-264(b)28(y)1(\\252e)-1(m,)-264(a)-264(te)-1(n)-264(z)-264(obu)-263(luf)-264(strzeli\\252...)-264(\\273e)-1(b)29(y)-264(c)-1(i\\246,)-264(pi)1(e)-1(ki)1(e)-1(ln)1(iku)1(...)-264(in)1(o)]TJ 0 -13.549 Td[(ni)1(c)-346(n)1(ie)-346(m\\363)28(w)27(cie...d)1(o)-345(s)-1(\\241d)1(u)-345(b)28(y)-344(p)-28(ozw)27(a\\252y)84(...)-345(stra\\273ni)1(ki..)1(.)-345(i)-345(zarno)-345(b)29(y)-345(i)-345(fu)1(z)-1(j)1(\\246)-346(wzie)-1(n)29(y)83(..)1(.)-345(a)]TJ 0 -13.549 Td[(to)-323(n)1(ie)-323(m)-1(o)-55(ja..)1(.)-323(My)1(\\261)-1(la\\252ec)27(h)1(,)-323(\\273)-1(e)-323(sam)-1(o)-322(prze)-1(j)1(dzie...)-323(p)-27(om\\363\\273)-1(cie,)-323(b)-27(o)-323(tak)-323(r)1(w)-1(i)1(e)-1(,)-322(tak)-323(b)-27(oli..)1(.)]TJ 27.879 -13.549 Td[({)-496(T)84(aki\\261)-496(to)-496(ma)-56(j)1(s)-1(t)1(e)-1(r!)-495(T)83(aki)-495(se)-497(\\261cic)27(h)1(ap)-28(\\246k,)-495(le)-1(l)1(um)-496(p)-27(ole)-1(l)1(um,)-496(a)-495(z)-496(dzie)-1(d)1(z)-1(i)1(c)-1(em)]TJ -27.879 -13.549 Td[(za)-56(j\\241czk)55(ami)-333(s)-1(i)1(\\246)-334(dzieli...)-333(Cie!..)1(.)-334(Al)1(e)-334(ku)1(las)-1(em)-334(za)-334(t)1(\\246)-334(s)-1(p)-27(\\363\\252k)28(\\246)-334(zap\\252ac)-1(i)1(s)-1(z...)]TJ 27.879 -13.55 Td[(Ob)-27(e)-1(j)1(rza\\252)-334(r)1(az)-334(jes)-1(zcz)-1(e)-334(i)-333(sro)-28(d)1(z)-1(e)-334(si\\246)-334(strap)1(i\\252.)]TJ 0 -13.549 Td[({)-333(Za)-334(p)-27(\\363\\271)-1(n)1(o,)-333(o)-334(wiela)-333(z)-1(a)-333(p)-27(\\363\\271)-1(n)1(o!)]TJ 0 -13.549 Td[({)-333(P)28(ored\\271c)-1(i)1(e)-1(,)-333(p)-27(ored\\271c)-1(ie)-333({)-334(j)1(\\246)-1(cz)-1(a\\252)-333(wys)-1(tr)1(as)-1(zon)28(y)84(.)]TJ 0 -13.549 Td[(Ju)1(\\273)-391(nic)-390(nie)-390(o)-28(dr)1(z)-1(ek\\252,)-390(ino)-390(r\\246k)56(a)27(wy)-390(zak)55(asa\\252,)-390(wydob)28(y)1(\\252)-391(ostry)-390(k)28(ozik,)-390(nog\\246)-390(uj)1(\\241\\252)]TJ -27.879 -13.549 Td[(kr)1(z)-1(epk)28(o)-333(i)-333(j\\241\\252)-333(w)-1(y)1(d\\252ub)29(yw)27(a\\242)-333(\\261)-1(ru)1(c)-1(i)1(n)28(y)-333(i)-333(rop)-27(\\246)-334(wyc)-1(i)1(s)-1(k)56(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-418(z)-1(r)1(az)-1(u)-417(rycz)-1(a\\252)-418(jak)-418(zwie)-1(r)1(z)-419(dor)1(z)-1(y)1(nan)28(y)84(,)-418(a\\273)-419(m)27(u)-417(z)-1(atk)56(a\\252)-418(g\\246)-1(b)-27(\\246)-419(k)28(o\\273uc)28(hem)-1(,)]TJ -27.879 -13.55 Td[(\\261c)-1(ic)28(h\\252,)-368(b)-27(o)-369(ze)-1(mdl)1(a\\252)-369(z)-369(b)-27(\\363lu)1(.)-368(Op)-28(or)1(z)-1(\\241d)1(z)-1(i\\252)-368(m)27(u)-367(nog\\246,)-369(ob)1(\\252o\\273)-1(y)1(\\252)-369(jak)56(\\241\\261)-369(ma\\261c)-1(i\\241,)-368(ob)29(w)-1(i)1(n\\241\\252)]TJ 0 -13.549 Td[(w)-334(n)1(o)28(w)27(e)-334(szm)-1(at)28(y)84(,)-333(dopi)1(e)-1(ro)-333(go)-333(otrze)-1(\\271wi\\252.)]TJ 27.879 -13.549 Td[({)-333(Do)-334(szpital)1(a)-334(m)28(usis)-1(z)-333(i\\261)-1(\\242...)-333({)-333(mruk)1(n\\241\\252)-333(c)-1(ic)28(ho.)]TJ 0 -13.549 Td[({)-333(Do)-334(szpital)1(a?)-1(.)1(..)-333({)-334(Ni)1(e)-1(pr)1(z)-1(y)1(tom)-1(n)29(y)-334(b)29(y\\252)-334(j)1(e)-1(szc)-1(ze)-1(.)]TJ 0 -13.549 Td[({)-333(Urzn\\246lib)28(y)-333(ci)-333(nog\\246,)-334(t)1(o)-334(b)28(y)1(\\261)-334(m)-1(o\\273e)-334(i)-333(wyzdro)28(wia\\252.)]TJ 0 -13.55 Td[({)-333(Nog\\246)-1(?..)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(j)1(u\\273)-333(na)-333(nic,)-333(z)-1(epsuta,)-333(cz)-1(ern)1(ie)-1(j)1(e)-334(ca\\252a.)]TJ 0 -13.549 Td[({)-333(Urzn\\246lib)28(y?)-333({)-333(p)28(yta\\252)-333(nie)-334(mog\\241c)-334(p)-27(o)-56(j)1(\\241\\242)-1(.)]TJ 0 -13.549 Td[({)-333(W)-333(k)28(olanie.)-333(Nie)-334(b)-27(\\363)-56(j)-332(s)-1(i\\246,)-333(m)-1(n)1(ie)-334(ku)1(la)-333(ur)1(w)27(a\\252a)-333(przy)-333(s)-1(am)28(ym)-334(zadzie,)-333(a)-334(\\273yj\\246.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)1(no)-333(ur)1(z)-1(n)1(\\241\\242)-334(b)-28(ol)1(e)-1(j)1(\\241c)-1(e)-334(miejsc)-1(e)-333(i)-334(b)29(y\\252b)28(ym)-333(z)-1(d)1(ro)28(w)-1(y)1(m)-1(?...)]TJ 0 -13.55 Td[({)-333(Jakb)28(y)-333(kto)-333(r\\246k)56(\\241)-334(o)-27(dj\\241\\252.)1(..)-333(ale)-334(d)1(o)-334(sz)-1(p)1(itala)-333(trza)-333(c)-1(i)-333(zaraz)-334(i\\261\\242)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(b)-27(o)-56(j)1(am)-334(si\\246,)-334(n)1(ie...)-333(do)-333(sz)-1(p)1(itala..)1(.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(!)1(...)]TJ 0 -13.549 Td[({)-333(T)83(am)-333(\\273)-1(y)1(w)27(ce)-1(m)-333(kr)1(a)-56(j\\241.)1(..)-333(tam...)-332(Ob)-28(erzni)1(jcie)-334(wy)84(...)-333(co)-333(in)1(o)-333(z)-1(ec)27(h)1(c)-1(ec)-1(ie,)-333(zap\\252ac\\246)-1(,)]TJ -27.879 -13.549 Td[(ob)-27(e)-1(r)1(z)-1(n)1(ijcie...)-333(do)-333(s)-1(zpi)1(tala)-333(nie)-333(c)27(hc\\246)-1(,)-333(w)28(ol\\246)-334(j)1(u\\273)-334(t)1(uta)-55(j)-333(z)-1(d)1(yc)27(h)1(a\\242)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-387(T)83(o)-387(i)-387(zdec)27(h)1(niesz)-1(..)1(.)-387(dokt)1(\\363r)-387(in)1(o)-387(m)-1(o\\273e)-388(ci)-387(ob)-27(e)-1(r)1(z)-1(n)1(\\241\\242)-1(.)-386(P)28(\\363)-56(j)1(d\\246)-387(z)-1(ar)1(az)-388(d)1(o)-387(w)27(\\363)-55(jta,)]TJ -27.879 -13.549 Td[(\\273e)-1(b)28(y)-333(ci)-333(na)-333(ju)1(tro)-333(dali)-333(p)-27(o)-28(d)1(w)27(o)-28(d)1(\\246)-334(i)-333(o)-28(d)1(w)-1(i)1(e)-1(\\271li)-333(do)-333(mias)-1(ta.)]TJ 27.879 -13.549 Td[({)-333(Pr\\363\\273no)-333(p)-27(\\363)-56(j)1(dzie)-1(cie,)-333(b)-28(o)-333(do)-333(sz)-1(p)1(itala)-333(nie)-333(p)-28(\\363)-55(jd)1(\\246)-1(..)1(.)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(t)28(w)27(ar)1(do.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(b)-27(\\246d\\241)-333(c)-1(i)-333(si\\246)-334(p)28(y)1(tali,)-333(g\\252up)1(i!)]TJ 0 -13.549 Td[({)-333(Urzn\\241\\242)-334(i)-333(zaraz)-334(wyzdro)28(wieje...)-333({)-333(p)-28(o)28(wtarza\\252)-333(Kub)1(a)-334(p)-27(o)-333(jego)-334(wyj)1(\\261)-1(ciu.)]TJ 0 -13.55 Td[(Noga)-374(p)1(rze)-1(sta\\252a)-374(go)-373(b)-27(ole)-1(\\242)-374(p)-27(o)-374(op)1(atru)1(nku)-373(zdr)1(\\246)-1(t)28(wia\\252a)-374(t)28(y)1(lk)28(o)-374(a\\273)-374(p)-27(o)-374(p)1(ac)27(h)28(win)29(y)83(,)]TJ -27.879 -13.549 Td[(a)-405(p)-28(o)-405(ca\\252ym)-406(b)-27(oku)-405(cz)-1(u)1(\\252,)-406(j)1(akb)28(y)-405(mr\\363)28(wki)-405(\\252az)-1(i)1(\\252y)83(,)-405(ni)1(e)-406(z)-1(w)28(a\\273a\\252)-406(n)1(a)-406(to,)-405(b)-27(o)-405(s)-1(i\\246)-405(g\\252\\246)-1(b)-27(ok)28(o)]TJ 0 -13.549 Td[(zam)-1(edyt)1(o)27(w)28(a\\252)]TJ 27.879 -13.549 Td[({)-348(W)1(yz)-1(d)1(ro)28(wia\\252b)28(ym!)-348(M)1(usi)-348(b)29(y\\242)-1(,)-347(\\273)-1(e)-348(i)-347(tak)-347(jes)-1(t,)-347(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-348(Jam)28(bro\\273y)-348(k)1(ulasa)-348(ca-)]TJ -27.879 -13.549 Td[(\\252e)-1(go)-388(ni)1(e)-389(ma...)-388(na)-388(ku)1(li)-388(c)27(ho)-27(dzi...)-388(P)28(o)28(wieda,)-388(\\273)-1(e)-388(jakb)28(y)-388(r)1(\\246)-1(k)56(\\241)-388(o)-28(dj)1(\\241\\252...)-388(Ale)-389(Boryn)1(a)-389(b)29(y)]TJ 0 -13.549 Td[(mnie)-461(wygn)1(a\\252...j)1(u\\261c)-1(i)1(,)-461(p)1(arob)-27(e)-1(k)-460(b)-27(e)-1(z)-461(ku)1(lasa...)-460(ni)-460(do)-460(p\\252u)1(ga,)-461(n)1(i)-461(d)1(o)-461(\\273adn)1(e)-1(j)-460(r)1(ob)-28(ot)28(y)84(.)]TJ 0 -13.55 Td[(C\\363\\273)-352(ja)-351(b)28(ym)-351(p)-28(o)-28(cz\\241\\252)-1(?)-351(B)-1(y)1(d\\252o)-351(m)-1(i)-351(in)1(o)-352(p)1(as)-1(a\\242)-352(al)1(b)-28(o)-351(na)-351(\\273)-1(ebr)1(y)-351(i\\261)-1(\\242...)-351(w)28(e)-352(\\261)-1(wiat,)-351(p)-27(o)-28(d)-351(k)28(o-)]TJ 0 -13.549 Td[(\\261c)-1(i\\363\\252)-399(gdzie...)-399(ab)-27(o)-399(jak)-399(ten)-399(s)-1(t)1(ary)-399(trep)-399(n)1(a)-400(\\261mie)-1(cie...)-399(zdyc)28(ha\\242)-400(p)-27(o)-28(d)1(e)-400(p\\252otem.)-399(Je)-1(zus)]TJ 0 -13.549 Td[(mi\\252os)-1(i)1(e)-1(rn)29(y!)-333(Je)-1(zus!)]TJ 27.879 -13.549 Td[(Zrozumia\\252)-333(nagle)-333(jasno)-333(i)-334(a\\273)-333(s)-1(i\\246)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252)-333(z)-334(o\\261le)-1(p)1(ia)-56(j)1(\\241c)-1(ej)-333(trw)28(ogi.)]TJ 0 -13.549 Td[({)-333(Je)-1(zus!)-333(Je)-1(zus!)-333({)-333(p)-28(o)28(wtarza\\252)-334(gor)1(\\241c)-1(zk)28(o)27(w)28(o,)-333(b)-27(e)-1(zprzytomni)1(e)-334(dygo)-27(c)-1(z\\241c)-334(ca\\252)-1(y)84(.)]TJ 0 -13.55 Td[(Zani)1(\\363s)-1(\\252)-330(si\\246)-330(g\\252\\246)-1(b)-27(okim,)-329(\\273)-1(aln)29(ym)-330(p\\252acz)-1(em)-1(,)-329(krzyki)1(e)-1(m)-330(ni)1(e)-1(mo)-28(cy)83(,)-329(s)-1(tacz)-1(a)-55(j\\241ce)-1(j)-329(si\\246)]TJ -27.879 -13.549 Td[(w)-334(p)1(rze)-1(p)1(a\\261)-1(\\242)-333(b)-28(ez)-334(ratu)1(nku)1(.)]TJ\nET\nendstream\nendobj\n524 0 obj <<\n/Type /Page\n/Contents 525 0 R\n/Resources 523 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n523 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n528 0 obj <<\n/Length 9385      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(161)]TJ -330.353 -35.866 Td[(D\\252ugo)-356(wy\\252)-356(i)-356(s)-1(zamota\\252)-357(si\\246)-357(w)-356(m\\246)-1(ce)-1(,)-356(ale)-356(pr)1(z)-1(ez)-357(te)-357(\\252zy)-356(i)-356(rozpacz)-1(e)-356(j\\246\\252)-1(y)-356(m)28(u)-356(si\\246)]TJ -27.879 -13.549 Td[(wi\\242)-456(p)-28(ostan)1(o)27(wieni)1(a)-456(jaki)1(e)-1(\\261,)-456(me)-1(d)1(ytacje,)-456(p)1(rzyc)-1(i)1(c)27(ha\\252)-456(z)-456(w)28(olna,)-455(usp)-27(ok)55(a)-55(ja\\252)-456(si\\246)-456(i)-456(t)1(ak)]TJ 0 -13.549 Td[(zag\\252)-1(\\246bi)1(a\\252)-304(w)-305(siebie,)-304(n)1(ic)-305(n)1(ie)-304(s)-1(\\252ysz)-1(a\\252;)-304(j)1(ak)-304(p)1(rz)-1(ez)-304(s)-1(en)-304(ma)-56(j)1(ac)-1(zy\\252o)-304(m)27(u)-303(s)-1(i)1(\\246)-305(gran)1(ie)-304(jakie\\261,)]TJ 0 -13.549 Td[(\\261piewy)83(,)-333(wrzas)-1(ki)-333(b)1(liskie.)]TJ 27.879 -13.549 Td[(W)-333(ten)-333(s)-1(am)-333(c)-1(zas)-334(w)27(es)-1(ele)-334(si\\246)-334(an)1(o)-333(prze)-1(n)1(os)-1(i)1(\\252o)-334(d)1(o)-334(Boryn)29(y)83(.)]TJ 0 -13.55 Td[(Robi)1(li)-333(przenos)-1(i)1(n)28(y)-333(Jagusi)-333(do)-333(m\\246)-1(\\273a.)]TJ 0 -13.549 Td[(Niec)-1(o)-325(p)1(rz\\363)-28(dzi)-325(p)1(rze)-1(p)1(ro)28(w)27(ad)1(z)-1(il)1(i)-325(t\\246g\\241)-325(kro)28(w)28(\\246)-326(i)-324(przew)-1(i)1(e)-1(\\271li)-325(skrzynk)28(\\246,)-325(p)1(ierz)-1(y)1(n)28(y)-325(i)]TJ -27.879 -13.549 Td[(statki)-333(r\\363\\273ne,)-333(jakie)-333(w)-334(wian)1(ie)-334(dosta)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(T)83(eraz)-253(za\\261)-1(,)-252(mo\\273)-1(e)-253(w)-252(pacie)-1(r)1(z)-253(p)-28(o)-252(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(e)-1(,)-252(kiej)-252(z)-1(mro)-27(c)-1(za\\252o)-253(i)-252(\\261w)-1(i)1(at)-253(si\\246)-253(zac)-1(i\\241)-27(ga\\252)]TJ -27.879 -13.549 Td[(mg\\252am)-1(i,)-333(b)-27(o)-333(na)-333(o)-28(dmian)1(\\246)-334(s)-1(z\\252o,)-333(wyw)27(al)1(ili)-333(s)-1(i)1(\\246)-334(o)-28(d)-333(Domin)1(ik)28(o)28(w)27(ej.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-251(sz)-1(\\252a)-251(n)1(a)-251(pr)1(z)-1(edzie)-251(i)-251(ra\\271no)-251(p)1(rze)-1(gr)1(yw)27(a\\252a,)-250(a)-251(z)-1(a)-251(n)1(i\\241)-251(Jagu)1(s)-1(i\\246,)-251(wystro)-55(jon\\241)]TJ -27.879 -13.55 Td[(jesz)-1(cz)-1(e)-254(p)-27(o)-253(w)27(es)-1(elnem)27(u)1(,)-253(m)-1(at)1(k)55(a)-253(wie)-1(d)1(\\252a)-254(z)-253(bra\\242mi)-254(i)-253(ku)1(m)-1(ami,)-253(a)-253(dop)1(ie)-1(r)1(o)-254(wp)-27(o)-28(dl)1(e)-1(,)-253(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(kto)-333(wz)-1(i)1(\\241\\252)-334(mie)-1(j)1(s)-1(ce,)-334(w)28(alil)1(i)-333(h)28(ur)1(m)-1(\\241)-333(w)27(ese)-1(ln)1(icy)83(.)]TJ 27.879 -13.549 Td[(Szli)-413(z)-414(w)28(olna)-413(w)-1(zd\\252u)1(\\273)-414(s)-1(ta)28(wu,)-413(kt\\363r)1(e)-1(n)-413(p)-27(o)-28(cz)-1(ern)1(ia\\252)-414(i)-413(gas)-1(\\252)-413(pr)1(z)-1(yzdu)1(s)-1(zon)28(y)-413(m)-1(r)1(o-)]TJ -27.879 -13.549 Td[(kiem,)-322(wskro\\261)-321(m)-1(gie\\252)-322(coraz)-321(g\\246)-1(sts)-1(zyc)27(h)1(,)-321(w)-322(cis)-1(zy)-321(c)-1(i)1(e)-1(mnicy)-321(og\\252uc)27(h)1(\\252e)-1(j)-321(i)-321(\\261lep)-28(ej)-321(jes)-1(zcz)-1(e,)]TJ 0 -13.549 Td[(\\273e)-334(tup)-27(ot)28(y)-333(i)-333(grani)1(a)-334(r)1(oz)-1(lega\\252y)-333(s)-1(i\\246)-333(kr\\363tk)28(o)-333(i)-333(du)1(dn)1(ia\\252y)-333(jakb)28(y)-333(sp)-27(o)-28(d)-333(w)27(o)-27(dy)84(.)]TJ 27.879 -13.55 Td[(M\\252\\363)-28(d)1(\\271)-226(p)-28(o)-28(d)1(\\261)-1(p)1(iew)-1(y)1(w)27(a\\252a)-226(cz)-1(asami,)-226(to)-225(kuma)-226(jak)56(a)-226(za)28(wie)-1(d)1(\\252a,)-226(c)27(h)1(\\252op)-226(kt)1(\\363re)-1(n)-225(wrza-)]TJ -27.879 -13.549 Td[(sn\\241\\252:)-364(\\377da)-364(dan)1(a\",)-364(ale)-365(wn)1(e)-1(t)-364(cic)27(h)1(li,)-364(o)-28(c)28(hot)28(y)-364(jes)-1(zc)-1(ze)-365(n)1(ie)-365(b)29(y\\252o)-365(i)-364(zi\\241b)-364(wil)1(gotn)28(y)-364(pr)1(z)-1(ej-)]TJ 0 -13.549 Td[(mo)27(w)28(a\\252)-333(do)-333(\\273)-1(yw)28(e)-1(go.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(k)1(ie)-1(j)-333(n)1(a)28(w)-1(r)1(\\363)-28(c)-1(i)1(li)-333(w)-334(Boryn)1(o)28(w)27(e)-334(op)1(\\252otki,)-333(d)1(ruh)1(n)28(y)-333(z)-1(a\\261pi)1(e)-1(w)28(a\\252y:)]TJ 0 -13.549 Td[(A)-358(p\\252ak)56(a\\252a)-359(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)1(a,)-358(Jak)-358(jej)-358(\\261)-1(l)1(ub)-358(d)1(a)27(w)28(ali;)-358(Czte)-1(r)1(y)-358(\\261)-1(wiec)-1(e)-358(z)-1(ap)1(alili,)-358(W)-358(or)1(-)]TJ -27.879 -13.55 Td[(gan)28(y)-322(zagrali.)-322(My)1(\\261)-1(la\\252a\\261,)-322(dzie)-1(w)28(cz)-1(yn)1(o,)-322(\\233)-1(e)-322(c)-1(i)-322(za)27(wsz)-1(e)-323(b)-27(\\246d\\241)-322(gra\\242)-1(?..)1(.)-323(W)1(c)-1(zora)-55(j)-322(tro)-28(c)28(h\\246,)]TJ 0 -13.549 Td[(dzisia)-56(j)-332(tro)-28(c)27(h)1(\\246)-1(.)1(..)-333(A)-334(n)1(a)-333(c)-1(a\\252e)-334(\\273ycie)-334(p\\252acz)-1(.)1(..)-333(Da)-334(d)1(ana!)-333(A)-333(na)-333(ca\\252)-1(e)-333(\\273)-1(ycie)-334(p)1(\\252ac)-1(z!)]TJ 27.879 -13.549 Td[(Na)-333(ganku)-333(p)1(rze)-1(d)-333(p)1(rogiem)-334(cz)-1(ek)56(a\\252)-334(j)1(u\\273)-334(Bory)1(na,)-333(k)28(o)28(w)27(alo)28(wie)-334(i)-333(J\\363zk)56(a.)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-292(wni)1(os)-1(\\252a)-292(p)1(rz)-1(o)-27(dem)-293(w)-292(w)28(\\246)-1(ze\\252)-1(k)1(u)-292(skib)1(k)28(\\246)-293(c)28(hleba,)-291(s)-1(oli)-291(s)-1(zc)-1(zyp)1(t\\246)-1(,)-291(w)27(\\246-)]TJ -27.879 -13.549 Td[(giel,)-322(w)27(osk)-323(z)-323(gr)1(om)-1(n)1(icy)-323(i)-322(p)-27(\\246)-1(k)-322(k\\252os)-1(\\363)28(w)-323(p)-27(o\\261w)-1(i)1(\\246)-1(con)28(yc)28(h)-323(n)1(a)-323(Zieln)1(\\241,)-323(a)-322(gdy)-322(i)-322(Jagu\\261)-323(p)1(r\\363g)]TJ 0 -13.55 Td[(pr)1(z)-1(es)-1(t)1(\\241)-28(pi\\252a,)-444(ku)1(m)27(y)-444(c)-1(isk)56(a\\252y)-445(za)-445(n)1(i\\241)-445(n)1(itki)-444(wypr)1(ute)-445(i)-444(pa\\271dzie)-1(r)1(z)-1(e,)-444(b)28(y)-445(z\\252y)-445(n)1(ie)-445(mia\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(t\\246pu)-333(i)-333(wio)-28(d)1(\\252o)-334(si\\246)-334(j)1(e)-1(j)-333(wsz)-1(y)1(s)-1(tk)28(o.)]TJ 27.879 -13.549 Td[(W)84(raz)-288(te\\273)-288(witali)-287(s)-1(i)1(\\246)-1(,)-287(ca\\252)-1(o)28(w)28(ali)-287(a)-288(\\273ycz)-1(yl)1(i)-287(m)-1(\\252o)-28(d)1(ym)-288(sz)-1(cz)-1(\\246\\261)-1(cia,)-287(zdro)28(wia)-287(i)-287(c)-1(o)-287(tam)]TJ -27.879 -13.549 Td[(P)28(an)-333(B\\363g)-333(da,)-333(a)-333(do)-333(iz)-1(b)29(y)-333(s)-1(zli,)-333(\\273e)-334(wnet)-334(za)28(w)27(ali)1(li)-333(\\252a)27(wy)-333(ws)-1(zystkie)-334(i)-333(k)56(\\241t)28(y)84(.)]TJ 27.879 -13.549 Td[(Gr)1(a)-56(jk)28(o)28(wie,)-334(narz\\241dza)-56(j)1(\\241c)-335(in)1(s)-1(tr)1(ume)-1(n)28(t)28(y)84(,)-334(p)-28(ob)1(rz\\246)-1(ki)1(w)27(ali)-334(z)-335(cic)27(h)1(a,)-334(ab)28(y)-334(nie)-335(m\\241ci\\242)]TJ -27.879 -13.55 Td[(p)-27(o)-28(c)-1(z\\246s)-1(tu)1(nku)1(,)-333(z)-334(jaki)1(m)-334(wyst\\241)-28(pi)1(\\252)-334(Boryn)1(a.)]TJ 27.879 -13.549 Td[(Cho)-28(d)1(z)-1(i)1(\\252)-467(an)1(o)-466(z)-467(p)-27(e\\252)-1(n)1(\\241)-466(blac)28(h\\241)-466(o)-28(d)-465(kuma)-466(do)-466(k)1(uma,)-466(c)-1(z\\246)-1(sto)28(w)27(a\\252,)-466(n)1(iew)27(oli)1(\\252,)-466(w)]TJ -27.879 -13.549 Td[(ramion)1(a)-427(b)1(ra\\252)-426(i)-426(prze)-1(p)1(ij)1(a\\252)-427(d)1(o)-427(k)56(a\\273dego;)-427(k)28(o)28(w)28(al)-426(m)27(u)-426(p)-27(omaga\\252)-427(w)-426(dru)1(giej)-426(s)-1(tr)1(onie,)-426(a)]TJ 0 -13.549 Td[(Magd)1(a)-303(z)-303(J\\363zk)55(\\241)-302(roznosi\\252y)-303(n)1(a)-303(talerzac)27(h)-302(place)-1(k)1(,)-303(mio)-28(d)1(e)-1(m)-303(i)-302(s)-1(erem)-303(nad)1(z)-1(iew)28(an)28(y)83(,)-302(kt\\363-)]TJ 0 -13.549 Td[(ren)-333(um)28(y\\261lnie)-333(up)1(ie)-1(k)1(\\252)-1(a)-333(n)1(a)-334(p)1(rze)-1(n)1(os)-1(in)29(y)83(,)-333(b)28(yc)28(h)-333(s)-1(i)1(\\246)-334(o)-56(j)1(c)-1(u)-333(p)1(rzyp)-27(o)-28(c)27(h)1(le)-1(b)1(i\\242.)]TJ 27.879 -13.549 Td[(Ale)-283(zaba)28(w)28(a)-283(sz)-1(\\252a)-282(ni)1(e)-1(t\\246go,)-282(ju\\261ci,)-282(\\273)-1(e)-283(n)1(ikt)-282(z)-1(a)-282(k)28(o\\252ni)1(e)-1(rz)-282(nie)-283(wyl)1(e)-1(w)28(a\\252)-283(i)-282(o)-28(d)-282(ki)1(e)-1(li)1(s)-1(z-)]TJ -27.879 -13.55 Td[(k)28(\\363)28(w)-246(n)1(ie)-246(stron)1(i\\252,)-245(prze)-1(p)1(ij)1(ali)-245(na)28(w)28(e)-1(t)-245(z)-1(e)-245(s)-1(makiem,)-246(i)1(no)-245(\\273)-1(e)-245(jak)28(o\\261)-246(n)1(ie)-246(n)1(abierali)-245(w)28(es)-1(elnego)]TJ 0 -13.549 Td[(du)1(c)27(h)1(a)-253(i)-253(ni)1(e)-254(wiedl)1(i)-253(s)-1(i)1(\\246)-254(d)1(o)-253(wrz)-1(\\241t)1(k)55(a,)-252(le)-1(d)1(wie)-253(park)28(otal)1(i,)-253(j)1(ak)-253(ta)-253(w)28(o)-28(da)-253(n)1(a)-253(s)-1(\\252ab)29(ym)-253(ogniu)1(;)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(e)-1(li)-308(oso)28(w)-1(i)1(ale)-1(,)-308(r)1(uc)27(h)1(ali)-308(si\\246)-309(ci\\246)-1(\\273k)28(o,)-308(ni)1(e)-1(sw)27(o)-55(jo,)-308(ma\\252o)-309(p)-27(ogady)1(w)27(ali)-308(i)-308(z)-308(c)-1(ic)28(ha,)-308(a)-308(jak)1(i)]TJ 0 -13.549 Td[(taki)-320(ze)-321(starsz)-1(yc)28(h)-320(z)-1(i)1(e)-1(w)28(a\\252)-321(u)1(krad)1(kiem)-1(,)-320(p)1(rze)-1(ci\\241)-28(ga\\252)-320(s)-1(i)1(\\246)-1(,)-320(a)-320(t\\246)-1(skli)1(w)-1(i)1(e)-321(m)27(y)1(\\261)-1(la\\252,)-320(b)28(y)-320(si\\246)-321(co)]TJ 0 -13.549 Td[(ry)1(c)27(hl)1(e)-1(j)-333(gd)1(z)-1(ie)-333(na)-333(s)-1(\\252om\\246)-334(dosta\\242.)]TJ 27.879 -13.55 Td[(Kob)1(ie)-1(t)28(y)-331(za\\261)-1(,)-331(c)28(ho)-28(\\242)-331(to)-332(n)1(as)-1(i)1(e)-1(n)1(ie)-332(na)-55(jb)1(ard)1(z)-1(iej)-331(wrzas)-1(ki)-331(i)-331(zaba)28(w)28(\\246)-332(c)-1(zyn)1(i\\241c)-1(e,)-331(roz-)]TJ -27.879 -13.549 Td[(w)28(ala\\252y)-331(s)-1(i)1(\\246)-332(in)1(o)-331(p)-28(o)-331(\\252a)28(w)27(ac)28(h,)-331(w)-331(k)56(\\241t)28(y)-331(s)-1(i)1(\\246)-332(kr)1(y\\252y)-331(i)-331(ma\\252)-1(o)-331(wiele)-331(m)-1(i)1(\\246)-1(d)1(z)-1(y)-331(sob\\241)-331(ra)-55(jco)28(w)27(a\\252y)84(.)]TJ\nET\nendstream\nendobj\n527 0 obj <<\n/Type /Page\n/Contents 528 0 R\n/Resources 526 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n526 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n531 0 obj <<\n/Length 8173      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(162)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Jagu)1(s)-1(ia)-254(w)-254(m\\246)-1(\\273o)28(w)27(ej)-254(k)28(omorze)-255(wnet)-254(s)-1(i)1(\\246)-255(p)1(rz)-1(es)-1(t)1(roi\\252a)-254(w)-254(s)-1(zm)-1(at)28(y)-254(zwycz)-1(a)-55(jne,)-254(t)28(yla)]TJ -27.879 -13.549 Td[(\\273e)-406(\\261)-1(wi\\241tec)-1(zne,)-405(i)-406(wysz\\252)-1(a)-405(ugasz)-1(cza\\242)-406(a)-406(p)1(rz)-1(y)1(jmo)28(w)27(a\\242,)-406(al)1(e)-406(m)-1(atk)56(a)-405(do)-405(nicze)-1(go)-405(s)-1(i\\246)-406(j)1(e)-1(j)]TJ 0 -13.549 Td[(tkn)1(\\241\\242)-334(ni)1(e)-334(da\\252a.)]TJ 27.879 -13.549 Td[({)-376(W)84(e)-1(se)-1(la)-376(se)-376(z)-1(a\\273yj,)-376(c\\363ru)1(c)27(h)1(no!)-376(Nar)1(obisz)-377(si\\246)-376(jes)-1(zc)-1(ze)-1(,)-375(natru)1(dzisz)-1(!)-376({)-376(sz)-1(ept)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-468(raz)-469(w)-469(raz)-469(j)1(\\241)-469(pr)1(z)-1(y)1(garni)1(a\\252)-1(a)-468(do)-468(piersi,)-469(i)-468(z)-469(p\\252acz)-1(em)-469(tul)1(i\\252a,)-469(a\\273)-469(to)-468(dziwno)-468(b)28(y\\252o)]TJ 0 -13.55 Td[(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)1(,)-334(b)-27(o)-28(\\242)-333(nie)-334(w)28(e)-334(\\261w)-1(i)1(at)-334(sz\\252)-1(a)-333(za)-334(c)28(h\\252opa,)-333(n)1(ie)-334(n)1(a)-334(d)1(rug\\241)-333(wie\\261)-334(i)-333(na)-333(bi)1(e)-1(d)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(P)28(o\\261m)-1(i)1(e)-1(w)28(ali)-412(s)-1(i\\246)-413(z)-413(t)1(akiej)-413(t)1(kliw)28(o\\261)-1(ci)-412(m)-1(atcz)-1(y)1(nej,)-412(a)-413(z\\246)-1(b)28(y)-412(ostrzyli)-412(pr)1(z)-1(ekpi)1(nk)56(a-)]TJ -27.879 -13.549 Td[(mi,)-413(i)1(le)-413(\\273)-1(e)-413(teraz)-413(w\\252a\\261)-1(n)1(ie)-413(na)-412(przenosinac)28(h,)-412(kiej)-413(Jagu)1(\\261)-413(ju)1(\\273)-413(gos)-1(p)-27(o)-28(dy)1(ni\\241)-412(w)27(es)-1(z\\252a)-413(w)]TJ 0 -13.549 Td[(m\\246)-1(\\273o)28(w)-1(ski)-363(dom,)-364(w)-363(t)27(y)1(le)-364(gron)28(t)1(u)-364(i)-363(dob)1(ra)-363(w)-1(sz)-1(elki)1(e)-1(go,)-363(ot)28(w)-1(i)1(e)-1(r)1(a\\252)-1(y)-363(si\\246)-364(im)-364(o)-28(cz)-1(y)84(,)-363(a)-364(ni)1(e)-1(-)]TJ 0 -13.549 Td[(jedn)1(e)-1(j)-291(m)-1(at)1(c)-1(e)-292(dosta\\252yc)27(h)-292(c\\363rek)-292(zaz)-1(d)1(ro\\261)-1(\\242)-292(s)-1(z\\252a)-292(do)-292(gar)1(d\\252a,)-292(dzieuc)28(hom)-292(te)-1(\\273)-292(b)28(y\\252o)-292(jak)28(o\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(sw)27(o)-55(jo)-333(i)-333(m)-1(ar)1(k)28(otno.)]TJ 27.879 -13.55 Td[(Na)-450(dru)1(g\\241)-451(stron)1(\\246)-451(s)-1(z\\252y)83(,)-450(p)-27(o)-451(An)29(tk)55(ac)28(h,)-450(gdzie)-451(E)1(w)-1(k)56(a)-450(z)-451(Jagust)28(ynk)56(\\241)-450(wie)-1(cz)-1(erz\\246)]TJ -27.879 -13.549 Td[(nar)1(z)-1(\\241d)1(z)-1(a\\252y)84(,)-313(a\\273)-314(h)28(ucza\\252)-1(o)-313(w)-313(k)28(om)-1(in)1(ie,)-313(\\273)-1(e)-314(Wi)1(te)-1(k)-313(ledwie)-313(nad)1(\\241\\273)-1(y\\252)-313(dr)1(w)27(a)-313(z)-1(n)1(os)-1(i)1(\\242)-314(i)-313(przy-)]TJ 0 -13.549 Td[(k\\252ad)1(a\\242)-334(p)-28(o)-27(d)-333(ogromne)-334(gar)1(y)83(.)]TJ 27.879 -13.549 Td[(I)-333(p)-27(o)-333(ca\\252)-1(y)1(m)-333(dom)27(u)-332(si\\246)-333(roz)-1(\\252azi\\252y)84(,)-333(a)-333(w)-333(k)56(a\\273d\\241)-333(sz)-1(p)1(ar\\246)-333(wra\\273)-1(a\\252y)-332(z)-1(azdr)1(os)-1(n)1(e)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[(Nie)-334(zazdro\\261c)-1(i)1(\\242)-334(to)-333(los)-1(u)-332(takiego?)-1(.)1(.)]TJ 0 -13.55 Td[(Ju)1(\\273)-248(sam)-247(dom)-247(na)-55(jlepsz)-1(y)-246(w)27(e)-247(ws)-1(i,)-246(du)1(\\273)-1(y)84(,)-247(widn)29(y)83(,)-246(w)-1(y)1(s)-1(oki,)-246(s)-1(tan)1(c)-1(j)1(e)-247(kieb)28(y)-247(w)-247(jak)1(im)]TJ -27.879 -13.549 Td[(dw)28(orze)-1(,)-444(wybielon)1(e)-1(,)-445(z)-445(p)-27(o)-28(d\\252ogami,)-445(czys)-1(te!)-445(A)-445(co)-445(sprz\\246t\\363)27(w,)-444(c)-1(o)-445(statk)28(\\363)28(w)-445(r\\363\\273)-1(n)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(obr)1(az)-1(\\363)28(w)-489(s)-1(am)28(yc)27(h)-488(z)-1(e)-489(dw)28(adzie\\261)-1(cia)-489(i)-489(ws)-1(zystkie)-489(z)-1(e)-489(s)-1(zk\\252am)-1(i)1(!)-489(A)-489(tu)-489(j)1(e)-1(szc)-1(ze)-490(ob)-27(ory)84(,)]TJ 0 -13.549 Td[(sta)-56(j)1(nie,)-248(s)-1(to)-27(do\\252a,)-248(s)-1(zopa!)-248(A)-248(ma\\252o)-248(to)-249(l)1(e)-1(w)28(e)-1(n)29(tarz)-1(a?)-248(Pi)1(\\246)-1(cioro)-248(sam)27(yc)28(h)-248(kro)28(wic)27(h)-247(ogon\\363)28(w,)]TJ 0 -13.549 Td[(ni)1(e)-256(licz\\241c)-256(b)28(yk)56(a,)-255(kt\\363r)1(e)-1(n)-255(p)1(ro\\014)1(t)-256(d)1(a)-56(j)1(e)-256(n)1(ie)-1(zgorsz)-1(y?)-255(T)83(rzy)-255(k)28(oni)1(e)-1(!)-255(A)-255(gdzie)-256(j)1(e)-1(szc)-1(ze)-256(gru)1(n)28(t?)]TJ 0 -13.55 Td[(Gd)1(z)-1(ie)-333(g\\246)-1(si,)-333(\\261)-1(win)1(ie?)-1(.)1(..)]TJ 27.879 -13.549 Td[(Wzdyc)28(ha\\252y)-333(\\273a\\252)-1(o\\261ni)1(e)-334(i)-333(raz)-334(p)-27(o)-333(raz)-334(kt\\363r)1(a\\261)-334(z)-334(cic)27(h)1(a)-334(r)1(z)-1(ek\\252a:)]TJ 0 -13.549 Td[({)-333(M\\363)-56(j)-332(B)-1(o\\273e)-1(,)-333(\\273e)-334(to)-333(P)28(an)-333(Jez)-1(u)1(s)-334(da)-55(je)-334(t)1(akim,)-333(c)-1(o)-333(i)-333(nie)-333(z)-1(as\\252u\\273)-1(y)1(\\252y!)]TJ 0 -13.549 Td[({)-333(Um)-1(i)1(a\\252)-1(y)-333(sobi)1(e)-334(p)-28(omaga\\242,)-334(u)1(mia\\252y!)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(za)28(w\\273)-1(d)1(y)-334(t)1(e)-1(n)-333(d)1(os)-1(tan)1(ie)-1(,)-333(k)1(t\\363ren)-333(nap)1(rz)-1(eciw)-334(wyj)1(dzie)-1(.)]TJ 0 -13.55 Td[({)-333(C)-1(zem)27(u\\273)-333(to)-334(w)28(asz)-1(a)-333(Ulisia)-333(nie)-334(wysz\\252)-1(a?)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(si\\246)-334(Boga)-334(b)-27(o)-56(j)1(a)-333(i)-334(w)-333(p)-28(o)-27(c)-1(zc)-1(i)1(w)27(o\\261c)-1(i)-333(\\273yje.)]TJ 0 -13.549 Td[({)-333(I)-334(d)1(rugi)1(e)-334(te\\273)-334(b)-28(ez)-334(to)-333(sam)-1(o.)]TJ 0 -13.549 Td[({)-264(A)-265(in)1(s)-1(zej)-264(to)-265(n)1(ar\\363)-28(d)-264(n)1(ie)-265(p)1(rz)-1(epu)1(\\261)-1(ci,)-264(ni)1(e)-1(c)27(h)-263(c)27(ho)-28(\\242)-264(te)-1(n)-264(r)1(az)-1(ik)-264(sp)-28(ot)1(k)55(a)-55(j\\241)-264(j\\241)-264(p)-28(o)-264(no)-27(c)-1(y)]TJ -27.879 -13.549 Td[(z)-334(j)1(akim)-334(c)28(h\\252op)1(akie)-1(m,)-333(a)-333(ju)1(\\273)-334(w)27(e)-333(\\261)-1(wiat)-333(na)-333(ozorac)27(h)-333(p)-27(oni)1(e)-1(s\\241.)]TJ 27.879 -13.55 Td[({)-333(T)83(ak)56(a)-334(to)-333(ma)-334(sz)-1(cz\\246)-1(\\261c)-1(ie...)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(ws)-1(t)28(yd)1(u)-333(ni)1(e)-334(ma.)]TJ 0 -13.549 Td[({)-399(A)-400(d)1(y\\242)-400(c)28(ho)-28(d)1(\\271)-1(cie)-400({)-399(w)27(o\\252a\\252)-399(J\\246drzyc)27(h)1(.)-399({)-400(M)1(uzyk)56(a)-400(gr)1(a,)-399(a)-400(w)-399(iz)-1(b)1(ie)-400(an)1(i)-399(jednej)]TJ -27.879 -13.549 Td[(kiec)27(k)1(i,)-333(\\273)-1(e)-334(n)1(ie)-334(ma)-333(z)-334(kim)-333(ta\\253co)27(w)28(a\\242!)]TJ 27.879 -13.549 Td[({)-333(Jaki)-333(o)-28(c)27(h)1(otn)28(y)84(,)-333(a)-334(p)-27(ozw)27(oli)-333(ci)-333(to)-334(matk)56(a?)]TJ 0 -13.549 Td[({)-333(Ino)-333(p)-28(or)1(te)-1(cz)-1(ek)-333(ni)1(e)-334(z)-1(gu)1(b)-333(i)-333(lustra)-333(ni)1(e)-334(p)-27(ok)55(a\\273,)-333(kiej)-333(s)-1(i)1(\\246)-334(tak)-333(b)28(ystro)-333(rwies)-1(z.)]TJ 0 -13.55 Td[({)-333(A)-334(k)1(ulasam)-1(i)-333(p)-27(o)-333(lud)1(z)-1(iac)28(h)-333(ni)1(e)-334(rzuca)-56(j)1(!)-334(,)]TJ 0 -13.549 Td[({)-333(Z)-334(W)84(alen)28(to)28(w)27(\\241)-333(id)1(\\271)-334(w)-334(p)1(ar\\246)-1(,)-333(b)-27(\\246d\\241)-333(dwie)-334(p)-27(okr)1(aki!)]TJ 0 -13.549 Td[(J\\246drzyc)28(h)-327(z)-1(ak)1(l\\241\\252)-328(i)1(no,)-327(c)28(h)28(yc)-1(i)1(\\252)-328(p)1(ierws)-1(z\\241)-327(z)-328(br)1(z)-1(ega)-327(i)-327(p)-28(o)28(wi\\363)-28(d)1(\\252,)-327(nie)-327(s)-1(\\252u)1(c)27(ha)-55(j\\241c,)-327(c)-1(o)]TJ -27.879 -13.549 Td[(za)-334(n)1(im)-334(b)1(rz\\246)-1(cz)-1(a\\252o.)]TJ 27.879 -13.549 Td[(W)-328(izbi)1(e)-329(ju)1(\\273)-329(ta\\253)1(c)-1(o)28(w)28(ali,)-328(z)-329(w)28(oln)1(a)-328(jes)-1(zc)-1(ze)-329(i)-328(j)1(akb)28(y)-328(o)-28(d)-327(niec)27(h)1(c)-1(enia;)-328(j)1(e)-1(d)1(na)-328(Nast-)]TJ -27.879 -13.55 Td[(k)56(a)-387(Go\\252\\246)-1(b)1(iank)56(a)-387(h)28(ul)1(a\\252a)-388(ostro)-387(z)-388(S)1(z)-1(y)1(m)-1(ki)1(e)-1(m)-387(P)28(ac)-1(ze)-1(siem)-1(.)-387(Um\\363)28(wili)-387(si\\246)-388(pr)1(z)-1(\\363)-27(dzi,)-387(wi\\246)-1(c)]TJ 0 -13.549 Td[(sk)28(oro)-459(m)28(uzyk)56(a)-459(z)-1(agr)1(a\\252a,)-459(zw)27(ar)1(li)-459(si\\246)-459(mo)-28(c)-1(n)1(o)-459(i)-458(ta\\253co)27(w)28(ali)-458(rze)-1(telni)1(e)-460(a)-458(d\\252u)1(go;)-459(to)-459(n)1(a)]TJ\nET\nendstream\nendobj\n530 0 obj <<\n/Type /Page\n/Contents 531 0 R\n/Resources 529 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 516 0 R\n>> endobj\n529 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n534 0 obj <<\n/Length 8092      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(163)]TJ -358.232 -35.866 Td[(o)-28(d)1(p)-28(o)-27(c)-1(znienie)-322(b)1(rali)-321(s)-1(i)1(\\246)-323(wp)-27(\\363\\252)-322(i)-322(n)1(os)-1(i)1(li)-322(p)-27(o)-322(izbi)1(e)-1(,)-321(a\\273)-1(e)-322(ic)27(h)-321(ci\\241)-28(gotki)-321(br)1(a\\252y)-322(do)-321(s)-1(iebi)1(e)-1(,)-321(to)]TJ 0 -13.549 Td[(p)-27(ogadyw)28(ali)-313(w)27(es)-1(o\\252o,)-313(\\261)-1(mial)1(i)-314(si\\246)-314(w)-314(g\\252os)-314(i)-313(biedr)1(o)-314(w)-314(b)1(ie)-1(d)1(ro)-313(c)27(ho)-27(dzili,)-313(a\\273)-314(Domini)1(k)28(o)27(w)28(a)]TJ 0 -13.549 Td[(z)-334(n)1(ie)-1(p)-27(ok)28(o)-56(j)1(e)-1(m)-333(nagl\\241d)1(a\\252a)-334(d)1(o)-333(s)-1(yn)1(a.)]TJ 27.879 -13.549 Td[(Ale)-287(dop)1(iero)-287(gd)1(y)-287(nad)1(s)-1(zed\\252)-287(w)28(\\363)-56(j)1(t)-287({)-287(sp)-28(\\363\\271ni)1(\\252)-287(s)-1(i\\246,)-287(b)-27(o)-287(m)28(usia\\252)-287(rekru)1(t\\363)28(w)-287(o)-28(dsta)28(wi\\242)]TJ -27.879 -13.549 Td[(do)-351(p)-27(o)27(wiat)1(u)-351({)-352(rozru)1(c)27(h)1(alic)-352(si\\246)-352(lu)1(dzie)-1(,)-351(b)-27(o)-352(sk)28(oro)-351(ws)-1(ze)-1(d)1(\\252,)-352(sk)28(oro)-351(pr)1(z)-1(epi\\252)-351(raz)-352(i)-351(d)1(rugi)1(,)]TJ 0 -13.55 Td[(wz)-1(i)1(\\241\\252)-334(rozpr)1(a)27(wia\\242)-333(z)-334(gos)-1(p)-27(o)-28(d)1(arzam)-1(i)-333(i)-333(p)1(rz)-1(ekp)1(iw)27(a\\242)-333(s)-1(i\\246)-333(z)-334(\\377m)-1(\\252o)-27(dyc)28(h\".)]TJ 27.879 -13.549 Td[({)-333(P)28(an)-333(m\\252o)-28(dy)-333(kiej)-333(\\261c)-1(ian)1(a,)-333(a)-334(m\\252o)-28(d)1(uc)27(h)1(a)-333(nib)28(y)-333(to)-333(sukn)1(o)-334(cz)-1(erw)28(one.)]TJ 0 -13.549 Td[({)-333(Jutr)1(o)-334(p)-27(o)28(wie)-1(cie...)]TJ 0 -13.549 Td[({)-333(Prob)1(an)28(t)-333(z)-334(w)28(as)-1(,)-333(Macieju)1(,)-334(t)1(o\\261)-1(cie)-334(d)1(nia)-333(ni)1(e)-334(z)-1(marn)1(o)27(w)28(ali.)]TJ 0 -13.549 Td[({)-333(Nie)-334(ges)-1(ior)-333(p)1(rze)-1(ciec)27(h,)-333(to)-333(ni)1(jak)-333(m)27(u)-332(na)-333(o)-28(c)-1(zac)27(h)-333(wsz)-1(ystki)1(c)27(h!)]TJ 0 -13.549 Td[({)-301(I)-301(p)-27(\\363\\252kw)28(ate)-1(r)1(k)55(a)-301(b)29(ym)-301(nie)-301(trzyma\\252)-301(za)-301(t)28(ym)-1(!)-300(Rz)-1(u)1(\\242)-302(i)1(no)-301(k)56(am)27(u)1(s)-1(zkiem)-301(w)-301(krzaki,)]TJ -27.879 -13.55 Td[(a)-333(z)-1(a)28(w\\273)-1(d)1(y)-333(ptasz)-1(ek)-333(jaki)-333(wyf)1(run)1(ie,)-333(w)27(\\363)-55(jt)-333(to)-334(w)28(ama)-334(m\\363)28(wi!)]TJ 27.879 -13.549 Td[(Gr)1(uc)27(h)1(n\\246li)-333(\\261)-1(miec)27(h)1(e)-1(m,)-333(b)-28(o)-333(Jagn)1(a)-334(u)1(c)-1(iek\\252a)-333(na)-333(dr)1(ug\\241)-333(s)-1(tr)1(on\\246.)]TJ 0 -13.549 Td[(Kob)1(ie)-1(t)28(y)-333(te\\273)-334(dogad)1(yw)28(a\\252y)83(,)-333(co)-334(im)-333(\\261)-1(l)1(ina)-333(pr)1(z)-1(yn)1(ies)-1(\\252a)-333(na)-333(j\\246z)-1(y)1(k.)]TJ 0 -13.549 Td[(Wn)1(e)-1(t)-365(s)-1(i\\246)-366(wrza)28(w)27(a)-366(wzm)-1(og\\252a)-365(i)-366(w)28(e)-1(so\\252o\\261)-1(\\242)-366(ogarn)1(ia\\252a)-366(du)1(s)-1(z\\246,)-366(w)28(\\363)-56(jt)-365(p)-27(om)-1(\\363g\\252)-366(r)1(z)-1(e-)]TJ -27.879 -13.549 Td[(telni)1(e)-1(,)-338(ale)-339(i)-338(gorz)-1(a\\252k)56(a)-338(z)-1(rob)1(i\\252a)-339(sw)27(o)-55(je.)-338(B)-1(or)1(yna)-338(nie)-339(\\273a\\252o)27(w)28(a\\252)-339(i)-338(\\015ac)28(h\\246)-339(p)1(usz)-1(cz)-1(a\\252)-338(c)-1(z\\246)-1(st\\241)]TJ 0 -13.55 Td[(k)28(olejk)56(\\241;)-338(ta\\253ce)-339(te)-1(\\273)-338(s)-1(z\\252)-1(y)-338(r)1(a\\271)-1(n)1(ie)-1(j)1(s)-1(ze)-339(i)-338(g\\246)-1(sts)-1(ze)-1(,)-338(\\261piew)27(a\\242)-338(ju\\273)-339(p)-27(o)-28(cz)-1(y)1(nali,)-338(p)1(rzytup)29(yw)27(a\\242)]TJ 0 -13.549 Td[(i)-333(c)-1(or)1(az)-334(wi\\246ks)-1(zym)-334(k)28(o\\252em)-334(tacz)-1(a\\242)-333(p)-28(o)-333(izbie.)]TJ 27.879 -13.549 Td[(A)-328(n)1(a)-328(to)-328(j)1(u\\273)-328(zja)28(wi\\252)-328(si\\246)-328(Jam)27(b)1(ro\\273y)83(,)-327(przysiad\\252)-327(z)-1(ar)1(az)-1(,)-327(nieledwie)-328(pr)1(z)-1(y)-327(progu)1(,)-328(a)]TJ -27.879 -13.549 Td[(\\252ak)28(om)27(y)1(m)-1(i)-333(o)-28(cz)-1(y)1(m)-1(a)-333(w)27(o)-27(dzi\\252)-334(za)-333(\\015ac)27(h)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(W)83(am)-333(ino)-333(tam)-334(g\\252o)28(w)27(\\246)-333(w)-1(y)1(kr\\246c)-1(a,)-333(gd)1(z)-1(ie)-333(kielisz)-1(ki)-333(d)1(z)-1(w)28(oni\\241!)-333({)-333(rzuci\\252)-333(w)27(\\363)-55(jt.)]TJ 0 -13.55 Td[({)-276(B)-1(r)1(z)-1(\\246kliw)28(e)-277(s\\241;)-277(a)-276(kt\\363r)1(e)-1(n)-276(spragn)1(ion)1(e)-1(go)-276(nap)-27(oi,)-276(z)-1(as\\252ug\\246)-277(ma!)-276({)-277(o)-27(dpar)1(\\252)-277(p)-27(o)28(w)27(a\\273-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Na\\261)-1(ci)-333(w)27(o)-28(d)1(y)83(,)-333(w)28(orku)-333(sk)28(\\363rzan)28(y)84(.)]TJ 0 -13.549 Td[({)-263(Co)-263(sm)-1(aku)1(je)-263(b)28(yd)1(l\\246c)-1(iu)1(,)-263(sz)-1(k)28(o)-27(dzi)-263(cz)-1(\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wi!)-263(P)29(o)27(wieda)-55(j\\241:)-262(\\377)-56(Kogo)-263(w)28(o)-28(d)1(a)-263(z)-1(b)1(a-)]TJ -27.879 -13.549 Td[(wi,)-333(to)-333(z)-1(b)1(a)27(wi,)-333(a)-333(gorza\\252k)55(a)-333(k)56(a\\273)-1(d)1(e)-1(go)-333(n)1(a)-334(n)1(ogi)-334(p)-27(osta)28(w)-1(i)1(.\")]TJ 27.879 -13.55 Td[({)-333(T)83(o)-334(p)1(ij)1(\\273)-1(e)-334(ok)28(o)28(witk)28(\\246,)-333(kiej\\261)-334(tak)1(i)-334(k)56(alk)1(ulan)29(t.)]TJ 0 -13.549 Td[({)-232(P)1(rz)-1(epi)1(jcie)-1(,)-231(w)27(\\363)-55(jcie!)-232(P)28(o)28(wie)-1(d)1(a)-56(j)1(\\241)-232(i)-232(to:)-231(\\377)-56(Chr)1(z)-1(es)-1(t)-231(przyj)1(m)27(u)1(j)-232(w)28(o)-28(d\\241,)-231(\\261)-1(l)1(ub)-231(p)-28(olew)28(a)-56(j)]TJ -27.879 -13.549 Td[(w)28(\\363)-28(dk)56(\\241,)-333(a)-333(\\261)-1(mie)-1(r)1(\\242)-334(p\\252ak)56(an)1(ie)-1(m.\")]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(p)-28(o)28(wiada)-55(j\\241,)-333(p)1(ijcie)-334(d)1(rugi)1(...)]TJ 0 -13.549 Td[({)-275(Nie)-275(uciekn\\246)-275(i)-275(p)1(rze)-1(d)-274(trze)-1(cim!)-275(Za)28(w)-1(d)1(y)-275(p)1(ijam)-275(jeden)-275(za)-275(pi)1(e)-1(r)1(w)-1(sz)-1(\\241)-274(\\273)-1(on)1(\\246)-1(,)-275(a)-275(d)1(w)27(a)]TJ -27.879 -13.55 Td[(za)-334(d)1(rug\\241,)-333({)-333(Cz)-1(em)27(u)1(\\273)-334(to?)]TJ 27.879 -13.549 Td[({)-333(\\233e)-334(w)27(cz)-1(as)-333(p)-28(omar\\252a,)-333(b)28(ym)-333(s)-1(e)-333(p)-28(osz)-1(u)1(k)56(a\\252)-334(tr)1(z)-1(ec)-1(iej.)]TJ 0 -13.549 Td[({)-333(O)-333(k)28(obiec)-1(i)1(e)-334(m)27(u)-333(si\\246)-334(\\261ni,)-333(a)-333(ju)1(\\273)-334(n)1(a)-334(o)-28(d)1(wie)-1(cze)-1(rzu)-333(p)-27(om)-1(r)1(ok)55(a)-333(m)28(u)-333(\\261)-1(li)1(pie)-333(gas)-1(i.)1(..)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(b)28(ym)-333(i)-334(p)-27(o)-333(c)-1(iemku)-333(zm)-1(aca\\252)-334(k)1(ijasz)-1(k)1(ie)-1(m,)-333(gdzie)-334(b)1(abia)-333(s\\252)-1(ab)1(izna!)]TJ 0 -13.549 Td[(Iz)-1(b)1(a)-333(gruc)28(hn)1(\\246)-1(\\252a)-333(\\261)-1(miec)27(hem.)]TJ 0 -13.549 Td[({)-333(Z)-334(Jagu)1(s)-1(t)28(yn)1(k)56(\\241)-334(w)28(as)-334(zm)-1(\\363)28(wim)27(y)1(!)-333({)-334(w)28(o\\252a\\252y)-334(k)28(ob)1(iet)27(y)84(.)-333(.)]TJ 0 -13.55 Td[({)-333(Gorza\\252k)28(\\246)-334(lu)1(bi)-333(i)-333(p)28(ysk)56(ata)-334(tak)-333(sam)-1(o)-333({)-333(do)-28(d)1(a)28(w)27(a\\252y)-333(dr)1(ugie.)]TJ 0 -13.549 Td[({)-500(P)28(o)28(w)-1(i)1(e)-1(d)1(a)-56(j\\241:)-500(\\377)-55(C)-1(h)1(\\252op)-500(rob)-27(otn)28(y)-500(i)-500(\\273)-1(on)1(a)-501(p)28(y)1(s)-1(k)56(ata,)-500(to)-500(w)27(ez)-1(m\\241)-500(c)27(ho)-27(\\242)-1(b)28(y)-500(i)-500(p)-27(\\363\\252)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(ata.\")]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-431(pr)1(z)-1(ysiad)1(\\252)-432(ob)-27(ok)-432(n)1(ie)-1(go,)-431(a)-432(d)1(ru)1(gie)-432(w)-432(p)-28(o)-27(dle,)-432(gd)1(z)-1(i)1(e)-432(kto)-432(m\\363g\\252)-432(\\252a)28(wy)-432(za-)]TJ -27.879 -13.549 Td[(c)27(h)29(w)-1(y)1(c)-1(i\\242,)-316(a)-316(z)-1(b)1(rak\\252o)-316(mie)-1(j)1(s)-1(ca,)-316(pr)1(z)-1(y)1(s)-1(ta)28(w)28(ali)-316(i)-316(c)-1(i)1(s)-1(n)1(\\246)-1(li)-316(si\\246)-316(do)-316(ku)1(p)28(y)83(,)-316(p)-27(\\363\\252)-316(izb)28(y)-316(z)-1(a)-55(j\\246li)-316(b)-27(e)-1(z)]TJ 0 -13.55 Td[(ma\\252a,)-334(n)1(ie)-334(b)1(ac)-1(z\\241c)-334(na)-333(ta\\253)1(c)-1(u)1(j\\241cyc)27(h)1(.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(t)-367(zasi\\246)-368(p)-27(o)-28(cz)-1(\\246\\252y)-367(i\\261\\242)-367(przekpin)1(ki,)-366(w)-1(y)1(m)27(ys\\252y)-367(r\\363\\273ne,)-367(gad)1(ki,)-366(w)27(es)-1(o\\252e)-367(p)-28(o)28(wie-)]TJ\nET\nendstream\nendobj\n533 0 obj <<\n/Type /Page\n/Contents 534 0 R\n/Resources 532 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n532 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n538 0 obj <<\n/Length 8301      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(164)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dan)1(ia,)-431(pr)1(z)-1(yp)-27(o)28(wias)-1(tk)1(i,)-432(a\\273)-432(si\\246)-432(izba)-431(trz\\246)-1(s\\252a)-432(o)-28(d)-431(\\261mie)-1(c)28(h\\363)28(w,)-432(a)-431(na)-55(jbar)1(z)-1(ej)-431(Jam)27(b)1(ro\\273y)]TJ 0 -13.549 Td[(do)28(w)28(o)-28(dzi\\252,)-333(z)-1(m)28(y\\261)-1(l)1(a\\252)-334(ju)1(c)27(ha)-333(i)-334(cygan)1(i\\252)-334(w)-334(\\273yw)27(e)-334(o)-28(czy)83(,)-333(ino)-333(tak)-334(spr)1(a)27(wn)1(ie)-334(i)-334(u)1(c)-1(ies)-1(zni)1(e)-1(,)-333(\\273)-1(e)]TJ 0 -13.549 Td[(si\\246)-390(p)-27(o)-1(k)1(\\252adali)-389(o)-28(d)-389(\\261m)-1(i)1(e)-1(c)27(h)29(u;)-389(a)-390(z)-390(k)28(ob)1(iet)-390(W)84(ac)27(hn)1(ik)28(o)28(w)27(a)-389(ni)1(e)-390(da\\252a)-390(si\\246)-390(n)1(ik)28(om)27(u)-389(p)1(rze)-1(ga-)]TJ 0 -13.549 Td[(da\\242)-415(i)-415(w)-416(p)1(ierws)-1(z\\241)-415(g\\246)-1(b)-27(\\246)-416(gra\\252a,)-415(w)28(\\363)-56(j)1(t)-415(te)-1(\\273)-415(baso)27(w)28(a\\252,)-415(ile)-415(m)27(u)-415(i)1(no)-415(bacz)-1(eni)1(e)-416(na)-415(u)1(rz)-1(\\241d)]TJ 0 -13.549 Td[(p)-27(oz)-1(w)28(ala\\252o.)]TJ 27.879 -13.55 Td[(Mu)1(z)-1(y)1(k)55(a)-308(r\\273n\\246\\252a)-308(o)-28(d)-308(uc)28(ha,)-308(siarcz)-1(y)1(\\261)-1(cie,)-308(m)-1(\\252\\363)-28(d)1(\\271)-309(h)28(u)1(la\\252a)-308(ra\\271)-1(n)1(o,)-308(krzyk)56(a\\252a)-308(i)-308(ob)-28(ca-)]TJ -27.879 -13.549 Td[(sam)-1(i)-305(os)-1(tr)1(o)-306(bi)1(\\252a,)-306(a)-306(on)1(i)-306(si\\246)-306(tak)-305(z)-1(ab)1(a)27(wial)1(i,)-306(sp)-27(o\\252e)-1(cz)-1(n)1(ie)-306(i)-306(w)28(e)-1(so\\252o,)-306(\\273e)-306(o)-306(Bo\\273)-1(ym)-306(\\261wiec)-1(ie)]TJ 0 -13.549 Td[(zap)-28(omin)1(ali,)-333(a\\273)-334(kt\\363r)1(y\\261)-334(d)1(o)-56(jr)1(z)-1(a\\252)-333(w)-334(sieni)-333(Jan)1(kla.)-333(Wci\\241)-28(gn\\246li)-333(go)-333(wnet)-334(d)1(o)-334(i)1(z)-1(b)28(y)84(.)]TJ 27.879 -13.549 Td[(\\233yd)-355(c)-1(zapk)28(\\246)-356(zdj)1(\\241\\252,)-356(k\\252an)1(ia\\252)-356(s)-1(i)1(\\246)-357(ze)-356(ws)-1(zystkimi)-356(p)1(rzyja\\271nie,)-356(wit)1(a\\252)-356(nie)-356(b)1(ac)-1(z\\241c)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(m)27(u)-333(p)1(rze)-1(zwis)-1(k)56(a)-333(jak)-333(k)56(am)-1(i)1(e)-1(n)1(ie)-334(lata)-55(j\\241)-333(k)28(o\\252o)-333(usz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(\\233\\363\\252)-1(t)1(e)-1(k!)-333(Niec)27(h)1(rzc)-1(zon)28(y!)-333(Kob)28(y)1(li)-333(s)-1(y)1(n!)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta!)-333(P)1(rzyj\\241\\242)-333(go)-334(cz)-1(ym,)-333(gorza\\252ki)-333(m)27(u)-333(d)1(a\\242)-1(!)-333({)-333(w)28(o\\252)-1(a\\252)-333(w)27(\\363)-55(jt.)]TJ 0 -13.549 Td[({)-416(P)1(rz)-1(ec)27(h)1(o)-28(dzi\\252em)-417(d)1(rog\\241,)-416(to)-415(c)27(hcia\\252e)-1(m)-416(zobacz)-1(y)1(\\242)-1(,)-416(j)1(ak)-416(si\\246)-417(gosp)-27(o)-28(dar)1(z)-1(e)-416(z)-1(ab)1(a-)]TJ -27.879 -13.549 Td[(wia)-56(j)1(\\241.)-322(B\\363g)-323(zap\\252a\\242,)-322(pan)1(ie)-323(w)28(\\363)-56(j)1(c)-1(i)1(e)-1(,)-322(n)1(apij)1(\\246)-323(si\\246)-323(w)28(\\363)-28(d)1(ki..)1(.)-322(dlacz)-1(ego)-322(nie)-322(mam)-323(si\\246)-323(n)1(api\\242)]TJ 0 -13.549 Td[(za)-334(zdr)1(o)27(wie)-333(pa\\253st)28(w)27(a)-333(m\\252o)-28(dyc)28(h!)]TJ 27.879 -13.549 Td[(Boryn)1(a)-280(w)-1(y)1(ni\\363s\\252)-281(\\015)1(as)-1(zk)28(\\246)-281(i)-279(c)-1(z\\246)-1(sto)28(w)27(a\\252.)-280(Jan)1(kiel)-280(kielisz)-1(ek)-280(wytar\\252)-280(k)56(ap)-27(ot\\241,)-280(g\\252o)27(w)28(\\246)]TJ -27.879 -13.55 Td[(nak)1(ry\\252)-333(i)-333(w)-1(y)1(pi\\252,)-333(a)-333(dru)1(gim)-334(p)-27(op)1(ra)28(w)-1(i)1(\\252.)]TJ 27.879 -13.549 Td[({)-364(Zosta\\253cie,)-364(Jan)1(kiel,)-364(n)1(ie)-364(s)-1(tr)1(e)-1(\\014)1(c)-1(ie)-364(si\\246)-1(!)-363(He)-1(j)1(!)-364(M)1(uzyk)56(an)28(t)28(y)83(,)-363(z)-1(agr)1(a)-56(jcie)-364(\\377\\273ydo)28(w-)]TJ -27.879 -13.549 Td[(skiego\"!)-334(Ni)1(e)-1(c)28(h)-333(Janki)1(e)-1(l)-333(p)-27(ota\\253cuj)1(e)-1(!{)-333(w)28(o\\252ali)-333(z)-1(e)-334(\\261mie)-1(c)28(hem)-1(.)]TJ 27.879 -13.549 Td[({)-333(Mog\\246)-334(p)-27(ota\\253co)28(w)27(a\\242,)-333(to)-334(n)1(ie)-334(gr)1(z)-1(ec)27(h)1(!)]TJ 0 -13.549 Td[(Ale)-338(nim)-338(gr)1(a)-56(jk)28(o)28(wie)-338(z)-1(r)1(oz)-1(u)1(m)-1(i)1(e)-1(li)-337(w)27(o\\252ani)1(a,)-338(Jank)1(ie)-1(l)-337(w)-1(y)1(s)-1(u)1(n\\241\\252)-338(si\\246)-339(cic)28(ho)-338(do)-338(sieni)]TJ -27.879 -13.55 Td[(i)-333(z)-1(n)1(ikn)1(\\241\\252)-334(w)-333(p)-28(o)-27(dw)28(\\363rz)-1(u)1(,)-333(p)-28(osze)-1(d)1(\\252)-334(d)1(o)-334(Ku)1(b)28(y)-333(o)-28(d)1(biera\\242)-334(strze)-1(l)1(b)-28(\\246.)]TJ 27.879 -13.549 Td[(Nie)-246(sp)-28(ostrzegli)-246(n)1(a)28(w)27(et)-246(j)1(e)-1(go)-245(w)-1(y)1(j\\261c)-1(ia,)-245(b)-27(o)-246(Jam)28(bro\\273y)-245(nie)-246(p)1(rze)-1(r)1(yw)27(a\\252)-245(c)-1(ygan)1(ienia,)]TJ -27.879 -13.549 Td[(a)-292(W)84(ac)27(hn)1(ik)28(o)28(w)27(a)-292(wt\\363ro)28(w)28(a\\252a)-292(nib)28(y)-291(na)-292(basetli,)-292(tak)-291(im)-293(ze)-1(sz\\252)-1(o)-292(d)1(o)-292(s)-1(amej)-292(wie)-1(cze)-1(rzy;)-292(j)1(u\\273)]TJ 0 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(a)-455(pr)1(z)-1(y)1(c)-1(ic)28(h\\252a,)-455(s)-1(to\\252y)-455(p)-27(ousta)28(w)-1(i)1(ali)-456(i)-455(gr)1(z)-1(ec)27(hot)1(ano)-455(m)-1(isk)56(am)-1(i)1(,)-456(a)-455(oni)-455(w)28(c)-1(i\\241\\273)-455(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(miew)27(ali)1(.)]TJ 27.879 -13.55 Td[(Darmo)-393(B)-1(or)1(yna)-393(z)-1(ap)1(rasz)-1(a\\252)-393(do)-394(j)1(ad\\252a,)-393(ni)1(kt)-394(n)1(a)28(w)27(et)-394(n)1(ie)-394(s\\252)-1(y)1(s)-1(za\\252.)-394(P)29(ote)-1(m)-394(Jagu)1(\\261)]TJ -27.879 -13.549 Td[(raz)-275(p)-28(o)-275(raz)-276(p)1(rzywtarza\\252a,)-275(b)28(y)-275(s)-1(zli,)-275(to)-275(j\\241)-275(w)27(\\363)-55(jt)-275(w)28(c)-1(i\\241)-27(gn\\241\\252)-275(do)-275(kup)29(y)83(,)-275(u)1(s)-1(ad)1(z)-1(i\\252)-275(pr)1(z)-1(y)-275(sobie)]TJ 0 -13.549 Td[(i)-333(z)-1(a)-333(r\\246k)28(\\246)-334(tr)1(z)-1(yma\\252.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(Jasiek,)-333(z)-334(p)1(rz)-1(ez)-1(wisk)56(a)-334(P)1(rze)-1(wrot)1(n)28(y)83(,)-333(kr)1(z)-1(y)1(kn\\241\\252)-333(w)-334(g\\252os:)]TJ 0 -13.549 Td[({)-333(Do)-334(mise)-1(k)-333(c)28(ho)-28(d)1(\\271)-1(ta,)-333(lu)1(dzie,)-333(b)-28(o)-333(s)-1(t)28(y)1(gnie!)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-55(j,)-333(g\\252u)1(pi,)-333(zna)-55(jdzie)-334(si\\246)-334(i)-333(la)-333(cie)-1(b)1(ie)-334(misk)56(a)-334(d)1(o)-334(wyli)1(z)-1(an)1(ia!)]TJ 0 -13.549 Td[({)-333(Jam)27(b)1(ro\\273y)-334(i)1(no)-333(c)-1(y)1(ga)-1(n)1(i\\241,)-333(a\\273)-334(si\\246)-334(ku)1(rzy)83(,)-333(i)-333(m)28(y\\261)-1(l)1(\\241,)-334(\\273e)-334(m)28(u)-333(kto)-333(w)-1(i)1(e)-1(r)1(z)-1(y)84(...)]TJ 0 -13.549 Td[({)-487(Jas)-1(i)1(e)-1(k,)-487(co)-28(\\242)-488(d)1(adz\\241)-488(w)-487(p)28(ysk,)-487(bi)1(e)-1(rz,)-487(b)-27(o)-488(t)28(w)28(o)-56(j)1(e)-1(,)-487(ale)-488(mn)1(ie)-488(ni)1(e)-488(ru)1(c)27(ha)-55(j,)-487(n)1(ie)]TJ -27.879 -13.549 Td[(ur)1(e)-1(d)1(z)-1(i)1(s)-1(z.)]TJ 27.879 -13.549 Td[({)-429(A)-429(s)-1(p)1(r\\363bu)1(jm)28(y)-429(s)-1(i)1(\\246)-1(!)-429({)-429(o)-28(d)1(krzykn)1(\\241\\252)-430(p)1(arob,)-429(\\273e)-430(to)-429(g\\252u)1(pa)28(wy)-429(b)28(y\\252)-429(i)-429(s)-1(\\252o)28(w)27(a)-429(n)1(ie)]TJ -27.879 -13.549 Td[(wyrozumia\\252.)]TJ 27.879 -13.55 Td[({)-333(W)83(\\363\\252)-333(tak)-333(s)-1(amo)-333(p)-28(or)1(e)-1(d)1(z)-1(i)-333(alb)-27(o)-333(i)-334(l)1(e)-1(p)1(ie)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Jam)27(b)1(ro\\273y)-334(p)-27(o)-333(ksi\\246)-1(d)1(z)-1(u)-333(wyn)1(os)-1(z\\241,)-333(to)-333(m)27(y\\261l\\241,)-333(\\273)-1(e)-333(ino)-333(s)-1(ami)-333(m\\241drzy!)]TJ 0 -13.549 Td[({)-421(Wp)1(u\\261\\242)-422(cie)-1(l)1(\\246)-422(do)-421(k)28(o\\261c)-1(i)1(o\\252a,)-421(a)-421(te)-1(\\273)-421(ino)-421(ogon)-420(w)-1(y)1(nies)-1(i)1(e)-1(!)-421(G\\252u)1(pia!)-420({)-422(mru)1(kn)1(\\241\\252)]TJ -27.879 -13.549 Td[(ze)-1(\\271lon)28(y)84(.)]TJ 27.879 -13.549 Td[(Bo)-294(to)-293(matk)56(a)-294(Ja\\261k)28(o)28(w)27(a)-293(c)27(h)1(c)-1(ia\\252a)-293(br)1(oni\\242)-293(s)-1(yn)1(a.)-293(Rusz)-1(y\\252)-293(te\\273)-294(pierwsz)-1(y)-293(do)-293(sto\\252\\363)27(w,)]TJ -27.879 -13.55 Td[(a)-237(z)-1(a)-237(n)1(im)-237(insi)-237(j\\246li)-237(za)-56(j)1(m)-1(o)28(w)28(a\\242)-238(miejsc)-1(a,)-237(a)-237(\\261pies)-1(zni)1(e)-1(,)-237(b)-27(o)-237(ju)1(\\273)-238(ku)1(c)27(h)1(arki)-237(wnosi\\252y)-237(d)1(ymi\\241c)-1(e)]TJ 0 -13.549 Td[(mis)-1(k)1(i)-333(i)-334(smaki)-333(w)-1(i)1(a\\252y)-334(p)-27(o)-333(izbie.)]TJ\nET\nendstream\nendobj\n537 0 obj <<\n/Type /Page\n/Contents 538 0 R\n/Resources 536 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n536 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n541 0 obj <<\n/Length 9371      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(165)]TJ -330.353 -35.866 Td[(Usadzili)-283(si\\246)-283(p)-28(o)-283(starsz)-1(e\\253st)28(wie)-284(i)-282(jak)-283(p)1(rzys)-1(t)1(a\\252)-1(o)-283(n)1(a)-283(pr)1(z)-1(enosinac)28(h,)-282(z)-284(Domin)1(ik)28(o-)]TJ -27.879 -13.549 Td[(w)28(\\241)-297(i)-296(j)1(e)-1(j)-295(c)27(h\\252op)1(ak)55(ami)-296(w)-296(p)-28(o\\261ro)-28(d)1(ku;)-296(d)1(ru)1(hn)28(y)-296(i)-296(d)1(ru)1(\\273)-1(b)-27(o)28(w)-1(i)1(e)-297(z)-1(asiedli)-296(r)1(az)-1(em,)-296(przy)-296(s)-1(ob)1(ie,)]TJ 0 -13.549 Td[(a)-331(Boryna)-331(z)-331(Jagusi\\241)-331(ostali)-331(na)-331(izbi)1(e)-1(,)-331(b)29(y)-331(p)-28(os\\252ugiw)28(a\\242)-332(i)-330(m)-1(ie\\242)-332(b)1(ac)-1(ze)-1(n)1(ie)-331(na)-331(ws)-1(zystk)28(o.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-488(si\\246)-488(zrobi)1(\\252)-1(o,)-487(t)28(yla)-487(\\273)-1(e)-488(za)-488(ok)1(nami)-488(d)1(z)-1(i)1(e)-1(ci)-488(wr)1(z)-1(es)-1(zc)-1(za\\252y)-488(i)-487(tu)1(z)-1(o)28(w)28(a\\252)-1(y)-487(si\\246)]TJ -27.879 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-354(sob\\241,)-354(a)-355(\\212ap)1(a)-355(z)-355(uj)1(adan)1(ie)-1(m)-354(obiega\\252)-355(d)1(om)-355(i)-355(d)1(ar\\252)-355(si\\246)-355(d)1(o)-355(sie)-1(n)1(i,)-354(nar\\363)-27(d)-354(z)-1(a\\261)-355(w)]TJ 0 -13.55 Td[(cic)27(h)1(o\\261)-1(ci)-334(a)-333(z)-334(p)-27(o)27(w)28(ag\\241)-333(p)-28(or)1(a\\252)-334(s)-1(i)1(\\246)-334(z)-334(jad)1(\\252e)-1(m)-334(i)-333(o)-28(c)28(hotn)1(ie)-334(b)-27(\\363)-28(d\\252)-333(m)-1(i)1(s)-1(ki)-333(cz)-1(u)1(bate,)-333(ino)-333(\\252y\\273)-1(k)1(i)]TJ 0 -13.549 Td[(skrzyb)-27(ota\\252)-1(y)-333(o)-333(wr\\246b)28(y)-333(i)-333(s)-1(zk\\252o)-333(brz\\241k)56(a\\252o)-334(w)-333(k)28(ole)-1(j)1(k)56(ac)27(h.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-326(za\\261)-327(c)-1(i)1(\\246)-1(giem)-327(zapr)1(as)-1(za\\252a)-327(i)-326(p)1(ra)28(wie)-327(k)56(a\\273)-1(d)1(e)-1(m)28(u)-326(z)-327(osobn)1(a)-327(p)-27(o)-28(d)1(t)28(yk)56(a\\252)-1(a)-326(cz)-1(y)]TJ -27.879 -13.549 Td[(mi\\246)-1(so,)-334(czy)-334(cz)-1(ego)-334(in)1(nego)-334(z)-1(ar)1(\\363)27(wn)1(o,)-334(a)-334(n)1(iew)27(oli)1(\\252)-1(a,)-333(b)28(yc)28(h)-334(sobi)1(e)-335(n)1(ie)-334(\\273)-1(a\\252o)28(w)28(ali;)-333(s)-1(k\\252ad)1(nie)]TJ 0 -13.549 Td[(jej)-426(to)-427(sz\\252)-1(o,)-426(i)-426(tak)-426(utraf)1(ni)1(e)-427(k)55(a\\273dem)27(u)-426(to)-426(s)-1(\\252o)28(w)28(o)-427(pr)1(z)-1(y)1(p)-28(o)-28(c)28(hlebn)1(e)-427(p)-27(o)27(wiad)1(a\\252a,)-427(i)-426(tak)56(\\241)]TJ 0 -13.549 Td[(ur)1(o)-28(dn)1(o\\261)-1(ci\\241)-370(s)-1(i\\246)-371(wsz)-1(ystkim)-371(mil)1(i\\252a,)-371(\\273e)-371(niejeden)-370(z)-371(parob)1(k)28(\\363)28(w)-371(c)27(h)1(o)-28(dzi\\252)-371(za)-371(n)1(i\\241)-371(t\\246skli-)]TJ 0 -13.55 Td[(wymi)-447(o)-28(cz)-1(yma,)-447(a)-446(m)-1(atk)56(a)-447(a\\273e)-448(r)1(os)-1(\\252a)-447(z)-447(ku)1(n)28(te)-1(n)29(tno\\261c)-1(i,)-446(o)-28(dk)1(\\252ada\\252a)-447(\\252y\\273k)28(\\246)-1(,)-447(b)29(y)-447(si\\246)-448(n)1(o)]TJ 0 -13.549 Td[(pat)1(rz)-1(e\\242)-334(n)1(a)-334(n)1(i\\241)-333(i)-334(cies)-1(zy\\242.)]TJ 27.879 -13.549 Td[(I)-376(Boryn)1(a)-376(to)-376(wid)1(z)-1(i)1(a\\252)-1(,)-375(b)-27(o)-376(gdy)-375(s)-1(z\\252a)-376(do)-376(k)1(uc)27(h)1(arek,)-376(l)1(e)-1(cia\\252)-376(za)-376(ni\\241,)-375(dop)-27(\\246dza\\252)-376(w)]TJ -27.879 -13.549 Td[(sie)-1(n)1(iac)27(h)1(,)-333(ogarni)1(a\\252)-334(mo)-28(cno)-333(i)-333(s)-1(ieln)1(ie)-334(ca\\252)-1(o)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-396(Gos)-1(p)-27(o)-28(d)1(yni)-396(mo)-56(j)1(a)-396(k)28(o)-28(c)27(h)1(ana!)-396(A)-396(dy\\242,)-396(kiej)-396(ta)-396(dw)28(ors)-1(k)56(a)-396(pan)1(i,)-396(tak)-396(s)-1(e)-396(go)-28(dn)1(ie)]TJ -27.879 -13.55 Td[(p)-27(o)-28(c)-1(zyn)1(as)-1(z)-334(i)-333(r)1(adzis)-1(z!)]TJ 27.879 -13.549 Td[({)-323(A)-324(b)-27(om)-324(to)-323(n)1(ie)-324(gosp)-28(o)-28(d)1(yn)1(i!)-323(Id\\271c)-1(ie)-323(no)-323(do)-323(izb)28(y)83(,)-323(Gu)1(lb)1(as)-324(z)-324(Szymonem)-324(cz)-1(ego\\261)]TJ -27.879 -13.549 Td[(o)-28(d)1(\\246)-1(ci)-333(s)-1(iedz\\241)-333(i)-334(ma\\252o)-333(c)-1(o)-333(p)-27(o)-56(jad)1(a)-56(j)1(\\241.)-333(Przepij)1(c)-1(ie)-333(do)-333(nic)28(h!.)1(..)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-371(\\273e)-372(jej)-371(s\\252uc)28(ha\\252)-371(i)-371(rob)1(i\\252,)-371(co)-372(c)28(hcia\\252a!)-371(A)-371(Jagusi)-371(b)28(y)1(\\252o)-372(d)1(z)-1(i)1(w)-1(n)1(ie)-371(w)27(es)-1(o\\252o)-371(na)]TJ -27.879 -13.549 Td[(du)1(s)-1(zy)-244(i)-244(o)-28(c)28(hotn)1(ie.)-244(Gosp)-28(o)-28(d)1(yni)1(\\241)-244(s)-1(i\\246)-244(p)-27(o)-28(c)-1(zu\\252a)-244(i)-244(n)1(ie)-245(b)29(yle)-244(jak)56(\\241,)-244(pan)1(i\\241)-244(pr)1(a)27(wie,)-244(to)-244(i)-244(r)1(z)-1(\\241d)1(y)]TJ 0 -13.55 Td[(sam)-1(e)-299(j)1(e)-1(j)-297(jak)28(o\\261)-299(w)-298(r\\246c)-1(e)-299(sz)-1(\\252y)84(,)-298(a)-298(z)-299(nimi)-298(i)-298(p)-27(o)27(w)28(aga)-298(w)-299(ni)1(e)-1(j)-298(r)1(os)-1(\\252a,)-298(i)-298(har)1(no\\261\\242)-299(p)-27(e)-1(\\252na)-298(mo)-28(cy)]TJ 0 -13.549 Td[(a)-367(s)-1(p)-27(ok)28(o)-56(j)1(no\\261c)-1(i!)-367(Nosi\\252a)-368(si\\246)-368(p)-27(o)-367(iz)-1(b)1(ac)27(h)-367(sw)27(ob)-27(o)-28(d)1(nie,)-367(dogl\\241d)1(a\\252a)-368(wsz)-1(ystkiego)-367(b)28(ystro)-367(i)]TJ 0 -13.549 Td[(tak)-333(m\\241drze)-334(ki)1(e)-1(ro)28(w)28(a\\252a,)-333(jakb)28(y)-333(j)1(u\\273)-334(n)1(ie)-334(wiad)1(a)-334(o)-27(d)-333(kiela)-333(na)-333(s)-1(w)28(oim)-334(gosp)-27(o)-28(darzy\\252a.)]TJ 27.879 -13.549 Td[({)-500(J)1(ak)55(a)-499(jes)-1(t,)-499(wnet)-500(stary)-499(rozp)-27(oz)-1(n)1(a)-500(i)-499(jego)-500(to)-499(rze)-1(cz)-1(,)-499(ale)-500(wid)1(z)-1(i)-499(mi)-500(si\\246,)-500(\\273e)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(yn)1(i)-334(b)-27(\\246dzie)-334(z)-334(n)1(ie)-1(j)-332(s)-1(ieln)1(a)-334({)-333(s)-1(zepn\\246\\252a)-334(E)1(wk)55(a)-333(d)1(o)-334(Jagu)1(s)-1(t)28(yn)1(ki.)]TJ 27.879 -13.55 Td[({)-383(M\\241d)1(ra)-383(i)-383(Ka\\261)-1(k)56(a,)-383(jak)-383(p)-27(e\\252na)-383(fask)56(a)-1(!)-383({)-383(o)-28(d)1(par)1(\\252a)-384(p)1(rze)-1(k)56(\\241\\261)-1(l)1(iwie)-1(.)-383({)-383(B\\246)-1(d)1(z)-1(i)1(e)-384(tak,)]TJ -27.879 -13.549 Td[(p)-27(\\363ki)-333(jej)-333(s)-1(tar)1(y)-333(nie)-333(obmie)-1(r)1(z)-1(n)1(ie,)-334(o)-27(d)-333(kiela)-333(nie)-334(zacz)-1(n)1(ie)-334(gani)1(a\\242)-334(z)-1(a)-333(p)1(arobk)56(ami...)]TJ 27.879 -13.549 Td[({)-243(T)83(ego)-243(n)1(ie)-243(z)-1(r)1(obi,)-242(in)1(o)-243(\\273e)-244(M)1(ate)-1(u)1(s)-1(z)-243(j)1(e)-1(st)-243(w)-243(o)-27(dw)28(o)-28(dzie,)-243(n)1(ie)-243(p)-28(on)1(iec)27(ha)-242(jej)-243(p)1(rze)-1(cie\\273)-1(.)]TJ 0 -13.549 Td[({)-333(I...)-333(p)-27(oniec)27(h)1(a!)-334(Zm)28(usi)-333(go)-334(d)1(o)-334(tego)-333(kto\\261)-334(d)1(rugi)1(,)-333(z)-1(m)27(u)1(s)-1(i)1(...)]TJ 0 -13.549 Td[({)-333(B)-1(or)1(yna?)]TJ 0 -13.55 Td[({)-445(Hal)1(e)-1(,)-444(B)-1(or)1(yna!)-444(Jes)-1(t)-444(kto\\261)-445(mo)-28(c)-1(n)1(iejsz)-1(y)-444(o)-28(d)-444(obu)1(...)-444(jes)-1(t.)1(..n)1(ie)-1(c)28(h)-445(n)1(o)-445(ten)-444(c)-1(zas)]TJ -27.879 -13.549 Td[(nad)1(e)-1(j)1(dzie,)-337(a)-336(z)-1(ob)1(ac)-1(zycie)-337(s)-1(ami)-336(u\\261m)-1(iec)27(h)1(n\\246\\252a)-337(si\\246)-337(c)27(h)28(y)1(trze)-1(.)-336({)-337(Wi)1(te)-1(k)1(,)-337(o)-28(d)1(e)-1(gn)1(a)-56(j)1(no)-336(psa,)]TJ 0 -13.549 Td[(b)-27(o)-326(s)-1(zc)-1(zek)55(a)-326(i)-325(s)-1(zcz)-1(ek)55(a,)-325(a\\273)-327(u)1(s)-1(zy)-326(b)-27(ol\\241,)-325(i)-326(rozp)-27(\\246)-1(d)1(\\271)-327(t)28(yc)28(h)-326(c)28(h\\252opacz)-1(y)1(s)-1(k)28(\\363)28(w,)-326(sz)-1(yb)29(y)-326(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(p)-27(o)27(wygn)1(iata)-55(j\\241)-333(i)-333(ogac)-1(enie)-333(roz)-1(n)1(ies)-1(\\241.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-419(sk)28(o)-28(cz)-1(y\\252)-419(z)-419(b)1(ate)-1(m,)-419(p)1(ie)-1(s)-419(u)1(m)-1(il)1(k\\252,)-419(ale)-419(rozleg\\252)-1(y)-418(s)-1(i)1(\\246)-420(p)1(is)-1(k)1(i)-419(i)-419(t\\246ten)28(t)-419(ucie-)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(\\241c)-1(ej)-336(w)-1(r)1(z)-1(askli)1(w)-1(i)1(e)-337(gromady;)-336(o)-28(d)1(e)-1(gn)1(a)-1(\\252)-336(ic)27(h)-336(a\\273)-337(n)1(a)-337(d)1(rog\\246)-337(i)-336(p)-28(o)28(wraca\\252)-337(c)28(h)28(y\\252kiem)-1(,)-336(b)-27(o)]TJ 0 -13.55 Td[(p)-27(os)-1(yp)1(a\\252)-334(si\\246)-334(za)-333(nim)-333(grad)-333(b\\252ota)-333(i)-333(k)56(am)-1(i)1(e)-1(n)1(i.)]TJ 27.879 -13.549 Td[({)-342(W)1(itek!)-342(P)29(o)-28(c)-1(ze)-1(k)56(a)-55(j)-341(no!)-341({)-342(w)28(o\\252)-1(a\\252)-341(Ro)-28(c)27(h)1(,)-342(sto)-56(j)1(\\241c)-1(y)-341(pr)1(z)-1(y)-341(w)27(\\246gle)-342(o)-28(d)-341(p)-27(o)-28(d)1(w)27(\\363rza,)-341(w)]TJ -27.879 -13.549 Td[(cie)-1(n)1(iu.)-252({)-253({)-253(Wyw)28(o\\252a)-56(j)-252(Jam)27(b)1(ro\\273)-1(ego,)-253(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(,)-252(\\273)-1(e)-253(pil)1(na)-253(spra)28(w)28(a,)-253(p)-27(o)-28(c)-1(zek)55(am)-253(na)-252(ganku)1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-386(w)-386(j)1(aki\\261)-386(p)1(ac)-1(i)1(e)-1(r)1(z)-386(nad)1(s)-1(ze)-1(d)1(\\252)-386(Jam)28(bro\\273y)83(,)-385(sro)-28(d)1(z)-1(e)-386(z\\252y)83(,)-385(\\273e)-386(m)27(u)-385(p)1(rze)-1(rw)28(ali)]TJ -27.879 -13.549 Td[(jad)1(\\252o)-334(w)-333(na)-55(jlepsz)-1(y)1(m)-334(mie)-1(j)1(s)-1(cu,)-333(b)-27(o)-333(przy)-333(pr)1(os)-1(i\\246c)-1(i)1(nie)-333(z)-334(gro)-28(c)28(hem)-1(.)]TJ 27.879 -13.55 Td[({)-333(Ko\\261)-1(ci\\363\\252)-333(s)-1(i)1(\\246)-334(pali)-333(cz)-1(y)-333(co?)]TJ 0 -13.549 Td[({)-333(Nie)-334(kr)1(z)-1(yczc)-1(ie!)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(d)1(o)-334(Ku)1(b)28(y)84(,)-333(b)-28(o)-333(z)-1(d)1(a)-56(j)1(e)-334(mi)-334(si\\246,)-333(\\273)-1(e)-334(u)1(mie)-1(r)1(a.)]TJ\nET\nendstream\nendobj\n540 0 obj <<\n/Type /Page\n/Contents 541 0 R\n/Resources 539 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n539 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n544 0 obj <<\n/Length 8994      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(166)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-331(Ni)1(e)-1(c)27(h)-330(zdyc)28(ha,)-330(a)-331(ni)1(e)-332(p)1(rze)-1(sz)-1(k)56(ad)1(z)-1(a)-331(l)1(udziom)-331(j)1(e)-1(\\261\\242)-1(!)-330(B)-1(y)1(\\252e)-1(m)-331(na)-330(o)-28(dwiecz)-1(erzy)-331(u)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go)-319(i)-320(m\\363)28(wi\\252e)-1(m)-320(j)1(usz)-1(e,)-320(ab)29(y)-320(si\\246)-320(do)-319(s)-1(zpi)1(tala)-320(szyk)28(o)28(w)27(a\\252,)-319(nog\\246)-320(b)28(y)-319(m)27(u)-319(u)1(rz)-1(n)1(\\246)-1(l)1(i)-320(i)-319(wnet)]TJ 0 -13.549 Td[(b)28(y)-333(wyzdro)28(wia\\252!.)1(..)]TJ 27.879 -13.549 Td[({)-370(P)29(o)27(wiedzieli\\261c)-1(ie)-370(m)28(u)-369(o)-370(t)28(ym!)-369(T)83(e)-1(r)1(az)-371(r)1(oz)-1(u)1(m)-1(i)1(e)-1(m,)-369(z)-1(da)-55(je)-370(mi)-369(s)-1(i\\246,)-369(\\273)-1(e)-370(sam)-370(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(ob)-27(c)-1(i\\241\\252)-333(nog\\246...)]TJ 27.879 -13.55 Td[({)-333(Je)-1(zus,)-333(Mari)1(a!)-333(Jak)-333(to,)-334(sam)-334(sobi)1(e)-334(ob)-28(ci\\241\\252?)]TJ 0 -13.549 Td[({)-385(Cho)-27(d\\271c)-1(ie)-385(pr)1(\\246)-1(d)1(z)-1(ej,)-384(z)-1(ob)1(ac)-1(zyc)-1(i)1(e)-1(.)-384(Sze)-1(d)1(\\252)-1(em)-385(s)-1(p)1(a\\242)-386(d)1(o)-385(ob)-27(ory)-385(i)-384(le)-1(d)1(wie)-1(m)-385(wlaz\\252)]TJ -27.879 -13.549 Td[(na)-337(p)-27(o)-28(dw)28(\\363rze)-1(,)-337(\\212apa)-337(s)-1(k)28(o)-27(c)-1(zy\\252)-338(d)1(o)-338(mnie,)-337(s)-1(zc)-1(ze)-1(k)56(a\\252,)-337(s)-1(k)56(amla\\252,)-337(z)-1(a)-337(k)55(ap)-27(ot\\246)-338(mnie)-338(z\\246bami)]TJ 0 -13.549 Td[(dar)1(\\252)-411(i)-410(ci\\241)-28(ga\\252,)-410(ni)1(e)-411(mo)-1(g\\252em)-411(p)-27(o)-56(j)1(\\241\\242)-1(,)-410(cz)-1(ego)-410(c)27(hce)-1(.)1(..)-410(a.)-410(on)-410(wybiega\\252)-411(n)1(apr)1(z)-1(\\363)-28(d)1(,)-410(s)-1(i)1(ada\\252)]TJ 0 -13.549 Td[(w)-323(pr)1(ogu)-323(sta)-56(j)1(ni)-323(i)-322(s)-1(k)28(o)28(wyc)-1(za\\252.)-323(P)28(o)-27(dsz)-1(ed\\252em)-1(,)-323(p)1(atrz\\246)-1(,)-322(Kub)1(a)-323(le\\273)-1(y)-323(p)1(rze)-1(wies)-1(zon)28(y)-323(p)1(rze)-1(z)]TJ 0 -13.549 Td[(pr)1(\\363g,)-327(z)-327(g\\252o)28(w)27(\\241)-326(w)-327(sta)-56(j)1(ni!)-326(My\\261la\\252em)-327(z)-1(razu,)-326(\\273e)-328(c)28(hcia\\252)-327(wyj)1(\\261)-1(\\242)-327(n)1(a)-327(p)-27(o)27(wietrze)-327(i)-327(omd)1(la\\252!)]TJ 0 -13.55 Td[(Pr)1(z)-1(eni)1(os)-1(\\252em)-284(go)-284(n)1(a)-284(wyr)1(k)28(o)-284(i)-283(z)-1(ap)1(ali\\252em)-284(latark)28(\\246,)-283(\\273)-1(eb)28(y)-283(w)27(o)-27(dy)-283(p)-28(oszuk)56(a\\242)-1(,)-283(a)-283(on)-283(c)-1(a\\252y)-283(w)27(e)]TJ 0 -13.549 Td[(kr)1(w)-1(i)1(,)-395(b)1(lady)-394(jak)-394(\\261c)-1(ian)1(a)-395(i)-394(z)-395(nogi)-394(krew)-395(b)1(uc)27(h)1(a.)-395(P)1(r\\246dze)-1(j)1(,)-395(\\273e)-1(b)29(y)-395(n)1(ie)-395(pu)1(\\261)-1(ci\\252)-395(ostatn)1(ie)-1(j)]TJ 0 -13.549 Td[(par)1(y)83(.)1(..)]TJ 27.879 -13.549 Td[(W)84(e)-1(sz)-1(li)-431(d)1(o)-431(s)-1(ta)-55(jn)1(i,)-431(Jam)27(b)1(ro\\273y)-432(zabr)1(a\\252)-432(si\\246)-432(ostro)-431(d)1(o)-432(tr)1(z)-1(e\\271)-1(wieni)1(a;)-432(K)1(ub)1(a)-432(le\\273a\\252)]TJ -27.879 -13.549 Td[(b)-27(e)-1(zw\\252)-1(ad)1(n)28(y)84(,)-286(dyc)28(ha\\252)-286(c)-1(o\\261)-286(niec)-1(o\\261)-286(i)-286(rz)-1(\\246zi\\252)-287(p)1(rze)-1(z)-286(z)-1(w)28(arte)-287(z\\246b)28(y)83(,)-286(\\273e)-287(tr)1(z)-1(eba)-286(b)28(y\\252o)-286(je)-286(no\\273e)-1(m)]TJ 0 -13.55 Td[(p)-27(o)-28(dw)28(a\\273)-1(a\\242)-333(b)28(y)-333(m)27(u)-333(n)1(ie)-1(co)-333(w)27(o)-28(d)1(y)-333(wla\\242)-334(do)-333(gard)1(\\252a.)]TJ 27.879 -13.549 Td[(Nog\\246)-382(m)-1(i)1(a\\252)-382(pr)1(z)-1(er\\241b)1(an\\241)-382(w)-382(k)28(olan)1(ie,)-382(ledwie)-382(si\\246)-382(trzyma\\252a)-382(na)-381(s)-1(k)28(\\363rze)-382(i)-382(ob)1(\\014cie)]TJ -27.879 -13.549 Td[(kr)1(w)27(a)28(wi\\252a.)]TJ 27.879 -13.549 Td[(Na)-389(pr)1(ogu)-389(cz)-1(erwieni\\252y)-389(si\\246)-389(plam)28(y)-389(krwi)-389(i)-388(le)-1(\\273a\\252a)-389(okrw)28(a)28(w)-1(i)1(ona)-389(s)-1(i)1(e)-1(ki)1(e)-1(r)1(a,)-389(a)-389(ta-)]TJ -27.879 -13.549 Td[(cz)-1(aln)1(ik)-388(d)1(o)-388(naostrzania,)-388(k)1(t\\363ren)-388(za)27(wsz)-1(e)-388(s)-1(ta\\252)-388(p)-27(o)-28(d)-388(ok)56(ap)-27(e)-1(m)-388(sta)-56(j)1(ni,)-388(w)28(ala\\252)-388(si\\246)-389(teraz)]TJ 0 -13.55 Td[(p)-27(o)-28(d)-333(pr)1(ogiem)-1(.)]TJ 27.879 -13.549 Td[({)-311(Ju)1(\\261)-1(ci,)-311(sam)-312(sobie)-311(ob)-27(c)-1(i\\241\\252.)-311(Ba\\252)-311(si\\246)-312(sz)-1(p)1(itala,)-310(m)27(y\\261la\\252)-311(g\\252up)1(i,)-311(\\273e)-312(sobie)-311(p)-28(omo\\273e)-1(,)]TJ -27.879 -13.549 Td[(ale)-252(t)27(w)28(ard)1(y)-252(c)27(h)1(\\252)-1(op)1(,)-252(ale)-252(z)-1(a)28(wz)-1(i\\246t)28(y!)-252(Jez)-1(u)1(s)-1(,)-252(\\273e)-1(b)29(y)-252(s)-1(ob)1(ie)-253(sam)-1(em)27(u)-251(ob)-28(cin)1(a\\242)-253(ku)1(las)-1(a!)-252(P)1(rosto)]TJ 0 -13.549 Td[(ni)1(e)-334(do)-333(wiary)1(!)-334(K)1(re)-1(w)-333(go)-333(m)-1(o)-28(cno)-333(o)-28(d)1(e)-1(sz)-1(\\252a.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-333(ot)28(w)27(or)1(z)-1(y\\252)-333(nar)1(az)-334(o)-28(cz)-1(y)-333(i)-333(w)27(o)-27(dzi\\252)-334(n)1(imi)-333(dosy\\242)-334(p)1(rz)-1(y)1(tom)-1(n)1(ie.)]TJ 0 -13.55 Td[({)-333(Odl)1(e)-1(cia\\252a?)-334(Dziob)1(n\\241\\252e)-1(m)-333(dw)28(a)-334(r)1(az)-1(y)84(,)-333(ale)-334(mnie)-333(z)-1(amro)-28(cz)-1(y)1(\\252o...)-333({)-333(s)-1(ze)-1(p)1(ta\\252.)]TJ 0 -13.549 Td[({)-333(B)-1(ol)1(i)-334(ci\\246)-334(t)1(o?)]TJ 0 -13.549 Td[({)-333(Nic)-334(a)-333(nic.)-333(Si)1(\\252)-334(si\\246)-334(in)1(o)-334(wyzb)28(y\\252enn)-333(d)1(o)-334(cna,)-333(al)1(e)-334(z)-1(d)1(ro)28(ws)-1(zym!)]TJ 0 -13.549 Td[(Le\\273)-1(a\\252)-442(s)-1(p)-27(ok)28(o)-55(jni)1(e)-443(i)-442(an)1(i)-442(krzykn)1(\\241\\252,)-442(gdy)-442(m)28(u)-442(Jam)28(br)1(o\\273)-1(y)84(,)-442(nog\\246)-442(s)-1(k\\252ad)1(a\\252,)-442(m)27(y\\252)-442(i)]TJ -27.879 -13.549 Td[(kr)1(\\246)-1(p)-27(o)28(w)27(a\\252)-333(w)-334(zm)-1(o)-27(c)-1(zone)-334(sz)-1(mat)28(y)83(.)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)-302(n)1(a)-303(k)1(l\\246)-1(cz)-1(k)56(ac)28(h)-302(przy\\261w)-1(i)1(e)-1(ca\\252)-303(latar)1(ni\\241)-302(i)-302(m)-1(o)-27(dli)1(\\252)-303(si\\246)-303(tak)-302(gor\\241co,)-303(a\\273)-303(m)28(u)-302(\\252z)-1(y)]TJ -27.879 -13.549 Td[(cie)-1(k)1(\\252)-1(y)-443(p)-28(o)-444(t)28(w)27(ar)1(z)-1(y)84(,)-444(a)-444(Ku)1(ba)-444(ino)-444(si\\246)-444(u\\261m)-1(iec)27(h)1(a\\252)-445(r)1(ado\\261nie,)-444(tkl)1(iw)27(o)-444(j)1(ak)28(o\\261)-445(i)-444(r)1(z)-1(ew)-1(n)1(ie,)]TJ 0 -13.549 Td[(jak)-355(to)-356(dzie)-1(ci\\241tk)28(o)-356(w)-356(p)-28(ol)1(u)-356(p)-27(orz)-1(u)1(c)-1(on)1(e)-1(,)-356(k)1(t\\363re)-356(nim)-356(p)-28(ozna,)-355(\\273)-1(e)-356(b)-28(ez)-357(matki,)-356(r)1(adu)1(je)-356(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-429(tra)28(w,)-430(co)-430(n)1(ad)-430(n)1(im)-430(s)-1(zumi\\241,)-429(z)-1(a)-429(s)-1(\\252o\\253cem)-430(patrzy)84(,)-430(do)-429(pr)1(z)-1(elatuj)1(\\241c)-1(y)1(c)27(h)-429(ptasz)-1(k)28(\\363)28(w)]TJ 0 -13.549 Td[(r\\241cz)-1(k)1(i)-302(wyci\\241)-28(ga)-302(i)-301(p)-27(o)-302(sw)27(o)-55(jem)27(u)-301(gada)-301(z)-1(e)-302(ws)-1(zystkim,)-302(i)-301(c)-1(i)1(e)-1(sz)-1(y)-301(s)-1(i)1(\\246)-1(,)-301(tak)-302(ci)-302(i)-301(on)-301(c)-1(zu\\252)-301(s)-1(i\\246)]TJ 0 -13.549 Td[(teraz;)-378(dob)1(rz)-1(e)-378(m)27(u)-377(b)28(y\\252o,)-378(sp)-28(ok)28(o)-55(jni)1(e)-379(i)-378(n)1(ie)-1(b)-27(ole\\261)-1(n)1(ie,)-378(a)-378(tak)-378(na)-378(d)1(usz)-1(y)-378(lekk)28(o)-378(i)-378(w)28(e)-1(so\\252o,)]TJ 0 -13.55 Td[(\\273e)-349(z)-1(a)-348(n)1(ic)-349(sobie)-348(m)-1(i)1(a\\252)-349(c)28(horob)-27(\\246,)-348(ino)-348(si\\246)-349(z)-348(c)-1(ic)28(ha)-348(pr)1(z)-1(ec)27(h)28(w)28(ala\\252...)-348(j)1(ak)28(o)-348(s)-1(iekier\\246)-348(dobr)1(z)-1(e)]TJ 0 -13.549 Td[(wy)28(os)-1(tr)1(z)-1(y)1(\\252)-1(.)1(..)-417(n)1(og\\246)-417(u\\252o\\273y\\252)-417(n)1(a)-417(p)1(rogu.)1(..)-417(i)-416(d)1(z)-1(iab)1(n\\241\\252)-417(w)-416(s)-1(amo)-417(j)1(ab\\252k)28(o...)-416(zab)-28(ol)1(a\\252)-1(o,)-416(ale)]TJ 0 -13.549 Td[(noga)-266(o)-28(d)-266(j)1(e)-1(d)1(nego)-267(r)1(az)-1(u)-266(n)1(ie)-267(p)1(u\\261c)-1(i\\252a.)1(..)-266(w)-1(i)1(\\246)-1(c)-267(d)1(ru)1(gi)-267(r)1(az)-267(dziab)1(n\\241\\252)-266(z)-1(e)-267(wsz)-1(ystki)1(e)-1(j)-266(mo)-28(cy)83(..)1(.)]TJ 0 -13.549 Td[(i)-321(oto)-321(ni)1(c)-322(go)-321(teraz)-322(n)1(ie)-322(b)-27(oli,)-321(p)-27(omog\\252o)-322(wid)1(a\\242)-1(.)1(..)-321(\\273e)-322(ni)1(e)-1(c)27(h)29(b)28(y)-321(t)28(ylk)28(o)-321(mia\\252)-321(w)-1(i)1(\\246)-1(ce)-1(j)-320(m)-1(o)-27(c)-1(y)84(,)]TJ 0 -13.549 Td[(to)-258(n)1(ie)-258(gni)1(\\252b)28(y)-258(d)1(\\252u\\273e)-1(j)-257(na)-257(w)-1(y)1(rku)1(,)-258(a)-257(na)-258(w)28(e)-1(sele)-258(s)-1(ze)-1(d)1(\\252...d)1(o)-258(ta\\253)1(c)-1(a)-258(si\\246)-258(b)1(ra\\252...)-257(i)-258(p)-27(o)-28(d)1(jad)1(\\252)-1(b)29(y)]TJ 0 -13.55 Td[(ni)1(e)-1(co,)-333(b)-28(o)-333(je\\261\\242)-334(m)27(u)-333(si\\246)-334(c)28(hce)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-303(Le)-1(\\273)-303(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-304(i)-303(ni)1(c)-304(si\\246)-304(n)1(ie)-304(r)1(uc)27(h)1(a)-56(j)1(,)-303(jad)1(\\252a)-304(d)1(os)-1(tan)1(ies)-1(z)-303(ryc)27(h)1(\\252o,)-303(p)-27(o)27(wiem)-304(J\\363zi.)]TJ\nET\nendstream\nendobj\n543 0 obj <<\n/Type /Page\n/Contents 544 0 R\n/Resources 542 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n542 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n547 0 obj <<\n/Length 8361      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(167)]TJ -330.353 -35.866 Td[(Ro)-28(c)27(h)-332(go)-334(p)-27(og\\252as)-1(k)56(a\\252)-333(p)-28(o)-333(t)28(w)27(ar)1(z)-1(y)-333(i)-333(wysz)-1(li)-333(z)-334(J)1(am)27(br)1(o\\273)-1(ym)-333(na)-333(p)-27(o)-28(dw)28(\\363rze)-1(.)]TJ 0 -13.549 Td[({)-333(Do)-334(r)1(ana)-333(wykip)1(i,)-333(u\\261nie)-333(c)-1(ic)28(ho)-333(jak)-333(p)1(tas)-1(ze)-1(k)1(,)-333(b)-28(o)-333(krew)-334(go)-333(ca\\252)-1(k)1(ie)-1(m)-333(o)-28(desz)-1(\\252a.)]TJ 0 -13.549 Td[({)-333(Ks)-1(i)1(\\246)-1(d)1(z)-1(a)-333(m)27(u)-333(tr)1(z)-1(eba)-333(pr)1(z)-1(y)1(w)-1(i)1(e)-1(\\271\\242)-1(,)-333(p)-27(\\363ki)-333(pr)1(z)-1(ytomn)28(y)1(!)]TJ 0 -13.549 Td[({)-333(Kiej)-333(ksi\\241dz)-334(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-333(na)-333(wie)-1(cz\\363r)-333(do)-333(W)83(oli)1(,)-333(do)-333(dzie)-1(d)1(z)-1(i)1(c)-1(\\363)28(w.)]TJ 0 -13.549 Td[({)-333(P)28(\\363)-56(j)1(d\\246)-334(p)-27(o)-333(niego,)-333(z)-1(wlek)56(a\\242)-334(ni)1(e)-334(m)-1(o\\273na!)]TJ 0 -13.55 Td[({)-291(Do)-291(W)84(oli)-291(j)1(e)-1(st)-291(mila,)-290(p)-28(o)-290(no)-28(cy)-291(i)-291(p)1(rze)-1(z)-291(las)-291(ni)1(e)-292(tr)1(a\\014cie)-1(.)-290(Sto)-55(j\\241)-291(t)1(u)-291(goto)28(w)28(e)-292(k)28(on)1(ie)]TJ -27.879 -13.549 Td[(lu)1(dzi,)-333(c)-1(o)-333(ma)-56(j\\241)-333(p)-27(o)-334(wiecz)-1(erzy)-334(o)-27(dj)1(e)-1(\\273d\\273a\\242)-1(,)-333(bi)1(e)-1(r)1(z)-1(cie)-334(j)1(e)-334(i)-333(jed\\271c)-1(ie.)]TJ 27.879 -13.549 Td[(Wyp)1(ro)28(w)28(adzili)-333(k)28(onie)-333(na)-333(dr)1(og\\246)-334(i)-333(Ro)-28(c)27(h)-333(siad\\252.)]TJ 0 -13.549 Td[({)-254(A)-253(nie)-254(zap)-28(omin)1(a)-56(j)1(c)-1(ie)-254(o)-254(K)1(ub)1(ie)-1(,)-253(trze)-1(b)1(a)-254(go)-254(p)1(rzypi)1(lno)28(w)28(a\\242)-1(!)-253({)-254(za)27(w)28(o\\252a\\252)-254(ru)1(s)-1(za)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(osta)28(w)-1(i)1(\\246)-334(go)-334(same)-1(go,)-333(ni)1(e)-334(z)-1(ap)-27(omn\\246..)]TJ 0 -13.549 Td[(Wn)1(e)-1(t)-422(j)1(e)-1(d)1(nak)-422(zap)-28(omni)1(a\\252;)-422(t)28(yle)-423(b)1(ac)-1(zy\\252,)-422(\\273e)-423(J\\363zi)-422(p)-28(o)28(wiedzia\\252)-422(o)-422(jadl)1(e)-1(,)-422(a)-422(sam)]TJ -27.879 -13.55 Td[(wr\\363)-28(ci\\252)-260(z)-1(a)-260(s)-1(t\\363\\252,)-260(do)-260(bu)1(te)-1(l)1(ki)-260(m)-1(o)-27(c)-1(n)1(o)-261(si\\246)-261(pr)1(z)-1(y)1(pi\\241\\252)-260(i)-261(tak)-260(se)-1(r)1(dec)-1(znie,)-260(\\273)-1(e)-261(r)1(yc)27(h)1(\\252o)-261(o)-260(B)-1(o\\273ym)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-334(n)1(ie)-334(wie)-1(d)1(z)-1(i)1(a\\252)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-283(za\\261,)-283(\\273)-1(e)-283(to)-283(p)-27(o)-28(c)-1(zciw)27(e)-283(b)28(y\\252o)-283(d)1(z)-1(iew)28(c)-1(z\\241tk)28(o,)-283(c)-1(o)-283(t)28(y)1(lk)28(o)-283(m)-1(og\\252a,)-282(nazbiera\\252a)-283(na)]TJ -27.879 -13.549 Td[(mis)-1(ecz)-1(k)28(\\246,)-333(w)27(\\363)-28(d)1(ki)-333(w)-334(p)-27(\\363\\252kw)28(arc)-1(i)1(e)-334(nal)1(a\\252)-1(a)-333(sp)-28(or)1(o)-334(i)-333(zanies)-1(\\252a)-333(o)-28(c)28(hotn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kub)1(a,)-333(przeje)-1(d)1(z)-1(cie)-334(\\271dziebk)28(o,)-333(u)1(\\273)-1(yj)1(c)-1(i)1(e)-334(i)-333(w)-1(y)-333(w)28(e)-1(se)-1(l)1(a!)]TJ 0 -13.55 Td[({)-333(B)-1(\\363g)-333(ci)-334(zap\\252a\\242!)-333(Kie\\252basa)-334(wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246)-333(c)-1(zuj)1(na,)-333(wie)-1(j)1(e)-334(o)-28(d)-333(n)1(iej.)]TJ 0 -13.549 Td[({)-288(Dy\\242)-288(um)27(y)1(\\261)-1(ln)1(ie)-289(p)1(rzypr)1(\\363\\273)-1(a\\252am,)-288(b)28(y\\261c)-1(i)1(e)-289(p)-27(os)-1(mak)28(o)28(w)27(ali)1(.{)-288(W)83(r)1(az)-1(i\\252a)-288(m)28(u)-288(m)-1(i)1(s)-1(k)28(\\246)-288(w)]TJ -27.879 -13.549 Td[(r\\246c)-1(e,)-333(b)-27(o)-334(ciem)-1(n)1(o)-334(b)28(y)1(\\252o)-334(w)-333(s)-1(ta)-55(jn)1(i.{)-333(Wyp)1(ijcie)-334(p)1(rz\\363)-28(dzi)-333(w)27(\\363)-28(d)1(k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(tk)28(o)-333(wypi\\252)-333(do)-333(d)1(na.)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(i)1(e)-1(d)1(\\271)-334(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-334(t)1(ak)-334(mi)-333(si\\246)-334(sam)-1(em)27(u)-333(c)28(kni)1(...)]TJ 0 -13.55 Td[(P)28(o)-28(cz\\241\\252)-334(glama\\242,)-334(p)-27(ogry)1(z)-1(a\\242,)-333(\\273)-1(u)1(\\242)-1(,)-333(ale)-334(n)1(ie)-334(m\\363g\\252)-333(nic)-334(p)1(rze)-1(\\252kn)1(\\241\\242)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(es)-1(el\\241)-333(s)-1(i)1(\\246)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(T)83(akie)-334(w)28(es)-1(ele)-1(,)-333(t)28(yl)1(a)-334(n)1(aro)-28(d)1(u,)-333(\\273e)-1(m)-334(w)-333(\\273)-1(y)1(c)-1(iu)-332(nie)-334(wid)1(z)-1(i)1(a\\252)-1(a)-333(wi\\246ks)-1(zego.)]TJ 0 -13.549 Td[({)-292(B)-1(or)1(yno)28(w)28(e)-293(p)1(rz)-1(ecie)-1(c)28(h,)-292(to)-292(ni)1(e)-293(dziw)28(ota!)-292({)-292(s)-1(ze)-1(p)1(n\\241\\252)-292(z)-293(d)1(um)-292({)-293(J)1(u\\261c)-1(i,)-292(a)-292(o)-28(ciec)-293(si\\246)]TJ -27.879 -13.549 Td[(tak)-333(w)28(e)-1(se)-1(l\\241)-333(i)-333(c)-1(i)1(\\246)-1(giem)-334(za)-333(Jaguu)1(s)-1(ia)-333(c)27(h)1(o)-28(dz\\241,)-333(c)-1(i)1(\\246)-1(giem.)]TJ 27.879 -13.55 Td[({)-333(Jak\\273e)-1(..)1(.)-334(u)1(ro)-28(d)1(na,)-333(p)1(i\\246)-1(k)1(na)-333(na)-333(g\\246)-1(b)1(ie,)-334(k)1(ie)-1(b)29(y)-333(jak)56(a)-334(p)1(ani)-333(d)1(w)27(orsk)56(a!)]TJ 0 -13.549 Td[({)-333(Wiec)-1(ie,)-333(a)-333(Szym)-1(ek)-333(Dominik)28(o)28(w)28(e)-1(j)-333(t)1(o)-334(si\\246)-334(ma)-333(do)-333(Nas)-1(tki)-333(G)1(o\\252\\246)-1(bi)1(anki)1(.)]TJ 0 -13.549 Td[({)-333(Star)1(a)-334(n)1(ie)-334(p)-27(oz)-1(w)28(oli,)-333(u)-333(Nastki)-333(z)-334(d)1(z)-1(iesi\\246)-1(\\242)-333(g\\246)-1(b)-333(sie)-1(d)1(z)-1(i)-333(n)1(a)-334(t)1(rz)-1(ec)27(h)-333(morgac)28(h.)]TJ 0 -13.549 Td[({)-333(T)83(ote)-1(\\273)-333(ic)27(h)-333(r)1(oz)-1(gan)1(ia,)-333(gdzie)-334(d)1(opadn)1(ie,)-333(i)-334(sro)-27(dze)-334(pil)1(n)28(uj)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(\\363)-55(jt)-333(jes)-1(t)1(?)]TJ 0 -13.55 Td[({)-333(Zaba)28(wia)-334(d)1(ru)1(gic)27(h)-333(i)-333(n)1(a)-56(jb)1(ard)1(z)-1(iej)-333(p)28(y)1(s)-1(ku)1(je,)-333(a)-334(Jam)28(br)1(o\\273)-1(y)-333(tak\\273e)-1(.)]TJ 0 -13.549 Td[({)-270(Je)-1(sz)-1(cz)-1(e)-270(b)28(y)-270(nie,)-270(kiej)-270(na)-270(takim)-271(w)28(e)-1(selu)-270(s)-1(\\241,)-270(u)-270(taki)1(e)-1(go)-270(gos)-1(p)-27(o)-28(d)1(arz)-1(a!)-270(Nie)-270(w)-1(i)1(e)-1(sz)-1(,)]TJ -27.879 -13.549 Td[(co)-334(u)-333(An)29(tk)28(\\363)27(w?)-333({)-334(zap)28(yta\\252)-333(c)-1(i)1(c)27(ho.)]TJ 27.879 -13.549 Td[({)-358(Jak)1(\\273)-1(e,)-358(sk)28(o)-28(cz)-1(y\\252am)-358(d)1(o)-358(ni)1(c)27(h)-357(na)-357(z)-1(mroku)1(,)-358(d)1(z)-1(ieciom)-358(p)-28(on)1(ies)-1(\\252am)-358(mi\\246)-1(sa,)-357(plac-)]TJ -27.879 -13.549 Td[(k)28(\\363)28(w,)-430(t)1(o)-430(c)28(hleba..)1(.)-429(Z)-430(c)28(ha\\252up)28(y)-429(me)-430(wyp)-27(\\246)-1(d)1(z)-1(i)1(\\252)-430(i)-429(cie)-1(p)1(n\\241\\252)-429(z)-1(a)-429(mn\\241,)-429(com)-430(pr)1(z)-1(y)1(nies)-1(\\252a..)1(.)]TJ 0 -13.549 Td[(Za)28(w)-1(zi\\241\\252)-379(si\\246)-379(s)-1(il)1(nie)-379(i)-379(taki)-378(z)-1(\\252y)84(,)-379(taki)-378(z)-1(\\252y)84(...)-379(a)-379(b)1(ieda)-379(u)-378(nic)28(h)-379(w)-379(c)27(h)1(a\\252upi)1(e)-380(i)-378(te)-1(n)-378(p\\252acz)-1(..)1(.)]TJ 0 -13.55 Td[(Hank)56(a)-333(in)1(o)-334(si\\246)-334(k\\252\\363)-28(ci)-333(z)-334(sios)-1(t)1(r\\241,)-333(\\273)-1(e)-333(s)-1(i\\246)-333(ju\\273)-333(p)-28(on)1(o)-334(i)-333(d)1(o)-334(k)1(ud\\252\\363)28(w)-333(bra\\252y)84(.)]TJ 27.879 -13.549 Td[(Nie)-334(o)-27(drzek\\252)-334(n)1(a)-334(to,)-333(n)1(os)-334(ostro)-333(w)-1(y)1(c)-1(iera\\252,)-333(a)-333(pr)1(\\246)-1(dzej)-333(dyc)28(ha\\252)-333(jak)28(o\\261.)]TJ 0 -13.549 Td[({)-464(J\\363zia)-464({)-464(r)1(z)-1(ek\\252)-464(p)-27(o)-464(c)27(h)29(w)-1(il)1(i)-464({)-464(k)1(lac)-1(z)-464(p)-27(os)-1(t\\246ku)1(je)-464(jak)28(o\\261)-464(i)-464(p)-27(ok\\252ada)-463(s)-1(i\\246)-464(j)1(u\\273)-464(o)-28(d)]TJ -27.879 -13.549 Td[(wiec)-1(zora,)-234(p)-28(ewnie)-235(j)1(e)-1(st)-234(na)-234(o\\271)-1(r)1(e)-1(b)1(ie)-1(n)1(iu.)1(..trza)-234(b)28(y)-234(przyp)1(ilno)28(w)28(a\\242)-1(.)-234(Pi)1(c)-1(ie)-234(jakie)-234(narz\\241dzi\\242.)]TJ 0 -13.549 Td[(Jak)-243(to)-244(se)-244(s)-1(t\\246k)55(a!)-243(Bie)-1(d)1(ota)-244(k)28(o)-27(c)27(han)1(a,)-244(a)-243(ja)-244(n)1(ic)-244(ni)1(e)-244(p)-28(otr)1(a\\014\\246)-244(p)-27(om)-1(\\363)-28(c...)1(okru)1(tniem)-244(s\\252)-1(ab)29(y)83(..)1(.)]TJ 0 -13.55 Td[(b)-27(e)-1(z)-334(mo)-28(cy)-333(c)-1(a\\252ki)1(e)-1(m...)]TJ 27.879 -13.549 Td[(Zm\\246)-1(cz)-1(y\\252)-333(si\\246)-334(i)-333(z)-1(amilk)1(\\252,)-334(i)-333(j)1(akb)28(y)-333(zas)-1(yp)1(ia\\252.)]TJ\nET\nendstream\nendobj\n546 0 obj <<\n/Type /Page\n/Contents 547 0 R\n/Resources 545 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n545 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n550 0 obj <<\n/Length 8841      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(168)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(J\\363zk)55(a)-333(o)-28(d)1(e)-1(sz)-1(\\252a)-333(spies)-1(zni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(esiu!)-333(Ce)-1(\\261,)-333(Ce)-1(\\261...)-333({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(pr)1(z)-1(y)1(tom)-1(n)1(iej\\241c.)]TJ 0 -13.549 Td[(Klacz)-334(zar\\273a\\252a)-334(p)1(rze)-1(ci\\241)-28(gle)-334(i)-333(r)1(z)-1(u)1(c)-1(i\\252a)-333(si\\246)-334(na)-333(u)28(wi\\246z)-1(i)1(,)-333(a\\273)-334(\\252a\\253cuc)27(h)-333(zabr)1(z)-1(\\246c)-1(za\\252.)]TJ 0 -13.549 Td[({)-367(P)28(o)-28(d)1(jem)-368(s)-1(e)-367(c)27(ho)-27(\\242)-368(raz)-368(d)1(o)-367(s)-1(yta!)-367(Dostani)1(e)-1(sz)-1(,)-367(p)1(ie)-1(sku)1(,)-367(s)-1(w)28(o)-56(j)1(e)-1(,)-367(dostani)1(e)-1(sz)-1(,)-367(n)1(ie)]TJ -27.879 -13.549 Td[(sk)28(om)-1(li)1(j)-333(ino.)1(..)]TJ 27.879 -13.55 Td[(Wzi\\241\\252)-255(s)-1(i)1(\\246)-256(ostro)-255(do)-255(k)1(ie)-1(\\252b)1(as)-1(y)84(,)-255(ale)-255(nie)-255(m\\363g\\252)-1(,)-254(nie)-255(c)27(h)1(c)-1(ia\\252o)-255(m)28(u)-255(si\\246)-256(zup)-27(e)-1(\\252n)1(ie,)-255(ros\\252)-1(o)]TJ -27.879 -13.549 Td[(m)27(u)-332(w)-334(ustac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(M\\363)-56(j)-332(Je)-1(zus,)-333(t)28(yle)-334(ki)1(e)-1(\\252basy)84(,)-334(t)28(y)1(le)-334(mi\\246)-1(sa...)-333(a)-333(ni)1(e)-334(mog\\246)-1(...)1(c)-1(a\\252ki)1(e)-1(m)-334(n)1(ie)-334(mog\\246.)]TJ 0 -13.549 Td[(Darmo)-332(pr)1(ob)-28(o)28(w)28(a\\252)-1(,)-332(ob)1(lizyw)28(a\\252)-1(,)-332(w)28(\\241c)27(h)1(a\\252.)-333(n)1(ie)-333(m\\363g\\252,)-332(r\\246k)56(a)-333(m)28(u)-332(opad)1(\\252a)-333(b)-27(e)-1(zsilni)1(e)-1(,)]TJ -27.879 -13.549 Td[(c)27(h)1(o)28(w)27(a\\252)-333(w)-1(i)1(\\246)-1(c)-334(p)-27(o)-28(d)-333(s\\252om)-1(\\246,)-333(ni)1(e)-334(pu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-334(z)-334(gar)1(\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(M\\363)-56(j)-332(B)-1(o\\273e)-1(,)-333(t)28(yl)1(a)-334(tego,)-333(\\273)-1(e)-334(n)1(igd)1(y)-334(w)-333(\\273)-1(y)1(c)-1(iu)-332(nie)-334(mia\\252em)-1(,)-333(a)-333(ni)1(e)-334(m)-1(og\\246.)]TJ 0 -13.55 Td[(\\233a\\252o\\261)-1(\\242)-476(\\261)-1(cisn\\246\\252)-1(a)-476(m)28(u)-476(du)1(s)-1(z\\246)-477(i)-476(\\252zy)-476(p)-27(o)-28(c)-1(i)1(e)-1(k\\252y)-476(p)-27(o)-476(t)28(w)27(arzy)84(,)-476(p\\252ak)56(a\\252)-477(r)1(z)-1(ewnie,)-476(a\\273)]TJ -27.879 -13.549 Td[(si\\246)-1(zanosi\\252,)-333(jak)-333(to)-333(dziec)-1(i\\241t)1(k)28(o)-334(u)1(krzywdzone.)]TJ 27.879 -13.549 Td[({)-333(P)28(otem)-334(s)-1(e)-333(z)-1(j)1(e)-1(m,)-333(o)-28(dp)-27(o)-28(cz)-1(n)1(\\246)-334(ni)1(e)-1(co)-334(i)-333(b)1(al)-333(s)-1(e)-334(spr)1(a)28(w)-1(i)1(\\246)-334({)-334(p)-27(om)28(y\\261)-1(la\\252.)]TJ 0 -13.549 Td[(Ale)-331(i)-331(p)-27(ote)-1(m)-331(n)1(ie)-332(m\\363g\\252,)-331(zapad)1(a\\252)-331(w)-332(sen,)-331(n)1(ie)-331(p)-28(op)1(usz)-1(cz)-1(a)-55(j\\241c)-331(kie\\252basy)-331(z)-331(gar\\261)-1(ci,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(c)-1(zuj)1(\\241c)-334(j)1(e)-1(d)1(nak,)-333(\\273e)-334(\\212apa)-333(m)27(u)-333(j)1(\\241)-333(p)-28(o)-333(c)-1(i)1(c)27(h)28(u)-333(ob)1(gryza\\252...)]TJ 27.879 -13.55 Td[(Otr)1(z)-1(e\\271)-1(wia\\252)-396(n)1(agle)-1(,)-395(b)-28(o)-396(p)-27(o)-396(wie)-1(cze)-1(rzy)-396(m)28(uzyk)56(a)-396(gruc)28(hn)1(\\246)-1(\\252a)-396(w)-396(c)27(h)1(a\\252)-1(u)1(pie)-396(z)-396(tak)55(\\241)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(\\241,)-333(a\\273)-333(\\261)-1(cian)28(y)-333(sta)-56(jn)1(i)-333(dr)1(yga\\252y)-333(i)-334(p)1(rze)-1(strasz)-1(on)1(e)-334(ku)1(ry)-333(gdak)56(a\\252y)-333(z)-334(c)27(h)1(lew)27(\\363)28(w.)]TJ 27.879 -13.549 Td[(W)84(rz)-1(aski)-317(b)1(uc)27(h)1(n\\246\\252y)-317(w)27(e)-318(\\261wiat)-317(i)-317(pr)1(ys)-1(k)56(a\\252y)-317(o)-28(d)-317(d)1(om)27(u)-317(n)1(ib)28(y)-317(te)-318(ogn)1(ie)-318(cze)-1(rw)28(one)-317(w)]TJ -27.879 -13.549 Td[(no)-27(c)-334(c)-1(i)1(e)-1(mn\\241,)-333(n)1(ib)28(y)-333(grzm)-1(ot)28(y)-333(b)1(uc)27(h)1(a\\252y)-333(p)-28(o)-333(sta)-56(j)1(ni.)]TJ 27.879 -13.549 Td[(Hul)1(ank)56(a)-362(tam)-363(j)1(u\\273)-363(sz)-1(\\252a)-362(s)-1(i)1(arcz)-1(ysta,)-362(\\261)-1(miec)27(h)28(y)84(,)-362(w)28(e)-1(so\\252)-1(o\\261\\242,)-362(z)-1(ab)1(a)27(w)28(a,)-362(a)-363(r)1(az)-363(w)-362(raz)]TJ -27.879 -13.55 Td[(zie)-1(mia)-333(du)1(dn)1(ia\\252a)-334(o)-27(d)-333(przegon\\363)28(w)-334(i)-333(p)1(is)-1(k)-333(d)1(z)-1(ieuszyn)-333(rozdzie)-1(r)1(a\\252)-334(p)-27(o)28(wie)-1(tr)1(z)-1(e.)]TJ 27.879 -13.549 Td[(Ku)1(ba)-371(n)1(as)-1(\\252uc)28(hiw)28(a\\252)-371(z)-1(r)1(az)-1(u)1(,)-371(ale)-371(ryc)28(h\\252o)-371(z)-1(ap)-27(omnia\\252)-371(o)-371(wsz)-1(ystkim,)-371(se)-1(n)-370(go)-371(br)1(a\\252)]TJ -27.879 -13.549 Td[(i)-366(ni)1(\\363s)-1(\\252)-366(w)-367(\\242m)-1(\\246)-367(j)1(ak)56(\\241\\261)-367(wrza)27(wliw)28(\\241,)-366(jak)1(b)28(y)-366(p)-28(o)-27(d)-366(w)27(o)-28(d)1(y)-366(s)-1(zumi\\241ce)-1(..)1(.)-366(na)-366(dno)-366(rozwyt)28(yc)27(h)]TJ 0 -13.549 Td[(wic)27(h)29(ur\\241)-333(b)-27(or\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-286(gdy)-286(w)28(e)-1(se)-1(l)1(e)-287(os)-1(tr)1(z)-1(ej)-286(lu)1(n\\246\\252o)-287(wrza)28(w)27(\\241)-286(i)-286(trzas)-1(k)1(i)-286(ho\\252ub)-27(c\\363)27(w,)-286(bi)1(t)28(yc)27(h)-286(zapami\\246ta-)]TJ -27.879 -13.55 Td[(le,)-330(dom)-330(z)-1(d)1(a)-331(si\\246)-331(r)1(oz)-1(n)1(os)-1(i)1(\\252)-1(y)84(,)-330(bu)1(dzi\\252)-330(s)-1(i\\246)-330(nieco,)-331(wyc)28(h)28(yla\\252)-330(d)1(usz)-1(\\246)-331(z)-330(c)-1(iemnicy)83(,)-330(p)-27(o)-28(d)1(nosi\\252)]TJ 0 -13.549 Td[(z)-334(n)1(ie)-1(p)1(ami\\246)-1(ci,)-333(wraca\\252)-334(z)-334(d)1(alek)28(o\\261)-1(ci)-333(prze)-1(r)1(a\\273)-1(a)-55(j\\241cyc)27(h)-333(i)-333(s\\252uc)27(h)1(a\\252.)]TJ 27.879 -13.549 Td[(A)-333(c)-1(zas)-1(em)-334(j)1(e)-1(\\261\\242)-334(pr)1(ob)-28(o)28(w)28(a\\252)-334(alb)-27(o)-333(s)-1(ze)-1(p)1(ta\\252)-333(c)-1(ic)28(ho,)-333(se)-1(rd)1(e)-1(cznie:)]TJ 0 -13.549 Td[({)-333(C)-1(e\\261k)55(a,)-333(Ce\\261)-1(,)-333(Ce)-1(\\261!)]TJ 0 -13.549 Td[(Ale)-381(j)1(u\\273)-381(du)1(s)-1(za)-381(wyc)27(h)1(o)-28(d)1(z)-1(i\\252a)-381(z)-381(n)1(iego)-381(p)-27(o)27(w)28(oli)-380(i)-381(n)1(ie)-1(s\\252a)-381(si\\246)-381(w)27(e)-381(\\261w)-1(i)1(at)28(y)83(,)-380(jak)28(o)-381(ten)]TJ -27.879 -13.55 Td[(pt)1(as)-1(ze)-1(k)-389(Jez)-1(u)1(s)-1(o)28(wy)83(,)-389(k)28(o\\252o)28(w)27(a\\252a)-389(jesz)-1(cz)-1(e)-390(b)1(\\252\\246)-1(d)1(nie,)-389(o)-28(derw)28(a\\242)-390(si\\246)-390(n)1(ie)-390(mog\\252)-1(a)-389(j)1(e)-1(sz)-1(cz)-1(e,)-389(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra\\252a)-389(c)-1(zasam)-1(i)-389(d)1(o)-390(ziem)-1(ie)-389(\\261)-1(wi\\246te)-1(j)1(,)-389(b)28(y)-389(o)-28(dp)-27(o)-28(cz)-1(\\241\\242)-389(z)-390(utr)1(ud)1(z)-1(enia,)-389(u)1(tuli)1(\\242)-390(s)-1(w)28(\\363)-56(j)]TJ 0 -13.549 Td[(p\\252acz)-270(sie)-1(r)1(o)-28(cy)-270(w)28(e)-270(wrza)28(w)-1(i)1(e)-270(lud)1(z)-1(k)1(ie)-1(j)1(;)-269(m)-1(i)1(\\246)-1(d)1(z)-1(y)-269(k)28(o)-28(c)28(hane)-269(z)-1(ac)28(ho)-28(d)1(z)-1(i\\252a,)-269(w\\261)-1(r)1(\\363)-28(d)-269(\\273yw)27(e)-269(s)-1(z\\252a,)]TJ 0 -13.549 Td[(do)-249(br)1(at\\363)27(w)-250(w)28(o\\252a\\252a)-250(\\273a\\252o\\261)-1(n)1(ie)-250(i)-250(u)-249(s)-1(erc)-250(p)1(rosi\\252a)-250(p)-27(om)-1(o)-28(cy)84(,)-250(a\\273)-250(mo)-28(c)-1(\\241)-249(Je)-1(zuso)28(w)27(\\241)-249(s)-1(kr)1(z)-1(epion)1(a)]TJ 0 -13.549 Td[(i)-317(m)-1(i)1(\\252)-1(osierd)1(z)-1(iem,)-318(n)1(ie)-1(s\\252a)-318(si\\246)-318(n)1(a)-318(j)1(akie\\261)-318(p)-28(ola)-317(wio\\261nian)1(e)-1(,)-317(na)-317(te)-318(Bo\\273)-1(e)-318(u)1(gory)-317(ogromne,)]TJ 0 -13.549 Td[(ni)1(e)-1(ob)-55(j)1(\\246)-1(te,)-333(w)-1(i)1(e)-1(cz)-1(n)1(\\241)-334(\\261wiat\\252o\\261)-1(ci\\241)-333(opr)1(z)-1(\\246dzone)-334(i)-333(w)28(e)-1(se)-1(l)1(e)-1(m)-333(w)-1(i)1(e)-1(cz)-1(n)28(y)1(m)-1(.)]TJ 27.879 -13.55 Td[(I)-333(w)-1(y)1(\\273)-1(ej)-333(lec)-1(ia\\252a,)-333(d)1(ale)-1(j)1(,)-333(dalej,)-333(a\\273)-334(tam..)1(.)]TJ 0 -13.549 Td[(...)1(A\\273)-376(tam)-375(za\\261)-1(,)-374(gdzie)-376(j)1(u\\273)-375(ni)1(e)-376(d)1(os)-1(\\252ysz)-1(y)-374(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(ego)-375(p\\252ak)56(ani)1(a)-375(ni)-375(\\273a\\252os)-1(n)1(e)-1(go)]TJ -27.879 -13.549 Td[(skrzyb)-27(otu)-333(du)1(s)-1(zy)-333(w)-1(sz)-1(elki)1(e)-1(j)1(...)]TJ 27.879 -13.549 Td[(...)1(T)83(am)-475(z)-1(a\\261,)-475(gdzie)-475(ino)-474(pac)27(h)1(n\\241ce)-476(l)1(ilie)-475(wion\\241,)-474(gdzie)-475(kwie)-1(tn)1(e)-476(p)-27(ola)-475(mio)-27(dn\\241)]TJ -27.879 -13.549 Td[(s\\252)-1(o)-27(dk)28(o\\261c)-1(i\\241)-354(sz)-1(u)1(m)-1(i)1(\\241,)-354(gdzie)-355(cie)-1(k)1(n\\241)-354(rze)-1(k)1(i)-354(gw)-1(i)1(e)-1(zdn)1(e)-355(p)-27(o)-355(d)1(nac)28(h)-354(bar)1(w)-1(i)1(on)28(yc)27(h)-353(rz)-1(\\246si\\261)-1(cie,)]TJ 0 -13.55 Td[(gdzie)-334(wiecz)-1(n)28(y)-333(d)1(z)-1(ie\\253.)]TJ 27.879 -13.549 Td[(...)1(T)83(am)-442(za\\261)-1(,)-440(gdzie)-442(i)1(no)-441(c)-1(i)1(c)27(he)-441(mo)-28(dleni)1(e)-442(p)1(\\252)-1(y)1(nie)-441(i)-441(dy)1(m)27(y)-441(p)1(ac)27(hn)1(\\241c)-1(e)-441(wle)-1(k)56(\\241)-441(si\\246)]TJ\nET\nendstream\nendobj\n549 0 obj <<\n/Type /Page\n/Contents 550 0 R\n/Resources 548 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 535 0 R\n>> endobj\n548 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n553 0 obj <<\n/Length 7381      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(169)]TJ -358.232 -35.866 Td[(ci\\246)-1(gi)1(e)-1(m,)-469(j)1(ak)28(o)-469(te)-469(mg\\252y)83(,)-468(dzw)27(on)1(ki)-469(b)1(rz\\246)-1(cz)-1(\\241)-468(i)-469(or)1(gan)28(y)-469(cic)27(h)1(o)-469(gr)1(a)-56(j\\241,)-468(i)-468(\\261)-1(wi\\246ta)-469(o\\014ar)1(a)]TJ 0 -13.549 Td[(o)-28(d)1(pra)28(wuj)1(e)-379(s)-1(i\\246)-379(ci\\241)-28(gl)1(e)-1(,)-378(i)-379(n)1(ar\\363)-28(d)-378(ju)1(\\273)-379(b)-28(ez)-1(gr)1(z)-1(es)-1(zn)28(y)84(,)-379(i)-378(anio\\252o)28(wie,)-379(i)-378(\\261)-1(wi\\246c)-1(i)-378(p)-28(o\\261pi)1(e)-1(wuj)1(\\241)]TJ 0 -13.549 Td[(sp)-28(\\363ln)1(ie)-477(c)27(h)28(w)28(a\\252\\246)-477(P)28(a\\253sk)56(\\241,)-477(w)-477(ten)-476(k)28(o\\261)-1(ci\\363\\252)-477(\\261w)-1(i)1(\\246)-1(t)28(y)84(,)-477(n)1(ie)-1(\\261mie)-1(r)1(te)-1(l)1(n)28(y)83(,)-476(Bo\\273)-1(y!)-476(Gd)1(z)-1(ie)-477(in)1(o)]TJ 0 -13.549 Td[(du)1(s)-1(zy)-438(cz\\252)-1(o)28(wiek)28(o)28(w)27(ej)-438(mo)-28(d)1(li\\242)-438(s)-1(i)1(\\246)-439(a)-437(w)-1(zdy)1(c)27(ha\\242,)-438(a)-437(p\\252ak)56(a\\242)-438(z)-439(r)1(ado\\261c)-1(i)-437(i)-438(w)28(e)-1(se)-1(l)1(i\\242)-438(s)-1(i\\246)-438(z)]TJ 0 -13.549 Td[(P)28(an)1(e)-1(m)-333(w)-334(wie)-1(k)-333(wiek)28(\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(T)83(am)-321(si\\246)-321(an)1(o)-321(rw)28(a\\252a)-321(d)1(usz)-1(a)-320(um\\246c)-1(zona)-320(i)-321(o)-27(dp)-27(o)-28(cz)-1(n)1(ie)-1(n)1(ia)-320(t\\246)-1(skliw)28(a,)-320(Kub)-27(o)28(w)27(a)-320(du)1(-)]TJ -27.879 -13.549 Td[(sz)-1(a.)]TJ 27.879 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(.)]TJ 0 -13.549 Td[(Dom)-327(z)-1(a\\261)-327(ta\\253)1(c)-1(o)28(w)27(a\\252)-327(w)28(c)-1(i)1(\\241\\273)-328(i)-326(w)27(es)-1(eli\\252)-327(si\\246)-327(c)-1(a\\252ym)-327(se)-1(rcem)-1(,)-327(o)-27(c)27(hot)1(niej)-327(n)1(a)27(w)28(et)-327(ni\\271li)]TJ -27.879 -13.549 Td[(w)28(c)-1(zora)-56(j)1(,)-419(b)-27(o)-419(p)-27(o)-28(cz)-1(\\246s)-1(tu)1(nek)-419(b)28(y)1(\\252)-419(s)-1(u)1(ts)-1(zy)-419(i)-418(bar)1(z)-1(ej)-419(n)1(iew)27(oli)1(li)-419(gosp)-28(o)-27(darze)-1(.)-418(W)83(o)-27(dzili)-419(si\\246)]TJ 0 -13.549 Td[(te\\273)-334(w)-334(tan)1(ac)27(h)-333(d)1(o)-334(u)1(pad)1(\\252e)-1(go.)]TJ 27.879 -13.55 Td[(W)84(rz)-1(eli)-433(j)1(u\\273)-434(n)1(ib)28(y)-433(ten)-433(u)1(krop)-433(n)1(a)-434(mo)-28(cn)28(ym)-433(ogniu)1(,)-433(a)-433(c)-1(o)-433(pr)1(z)-1(ys\\252abli)-433(zdziebk)28(o,)]TJ -27.879 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(a)-315(gr)1(z)-1(mia\\252a)-315(z)-315(no)28(w)27(\\241)-315(si\\252\\241,)-315(\\273e)-315(jak)28(o)-315(\\252an,)-314(uderzon)28(y)-315(wic)28(h)28(ur)1(\\241,)-315(in)1(o)-315(s)-1(i\\246)-315(pr)1(z)-1(y)1(ginali)1(,)]TJ 0 -13.549 Td[(br)1(ali)-318(rozmac)27(h,)-318(n)1(iec)-1(il)1(i)-318(rum)-318(nogami)-318(i)-318(z)-319(k)1(rz)-1(y)1(kiem)-319(sz)-1(li)-317(w)-319(n)1(o)27(wy)-318(tan)1(,)-318(z)-1(e)-318(\\261)-1(p)1(ie)-1(w)28(ami,)-318(a)]TJ 0 -13.549 Td[(h)28(u)1(c)-1(zno,)-333(t\\252umn)1(o)-334(i)-333(ogn)1(i\\261)-1(cie.)]TJ 27.879 -13.549 Td[(\\233e)-301(j)1(u\\273)-300(im)-301(d)1(usz)-1(e)-300(c)-1(a\\252ki)1(e)-1(m)-300(s)-1(ta)-55(ja\\252y)-300(o)-28(d)-299(gor\\241c)-1(o\\261ci,)-300(krew)-301(k)1(ipi)1(a\\252)-1(a)-300(w)28(arem)-1(,)-300(r)1(oz)-1(u)1(m)]TJ -27.879 -13.55 Td[(o)-28(d)1(c)27(ho)-27(dzi\\252,)-440(s)-1(erca)-440(s)-1(i)1(\\246)-441(zapami\\246)-1(t)1(a\\252)-1(y)-439(w)-441(h)29(ulan)1(c)-1(e,)-440(a)-440(k)56(a\\273)-1(d)1(y)-440(nerw)-440(dygot)1(a\\252)-441(d)1(o)-440(taktu)1(,)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(y)-308(ru)1(c)27(h)-308(b)29(y\\252)-308(ta\\253ce)-1(m,)-308(k)56(a\\273dy)-308(kr)1(z)-1(y)1(k)-308(\\261)-1(p)1(iew)27(em)-1(,)-308(a)-308(k)56(a\\273de)-308(o)-28(cz)-1(y)-308(w)28(e)-1(se)-1(l)1(e)-1(m)-308(s)-1(i)1(\\246)-309(j)1(arzy\\252y)]TJ 0 -13.549 Td[(i)-333(rad)1(o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[(I)-333(tak)-333(s)-1(z\\252o)-334(p)1(rze)-1(z)-334(ca\\252\\241)-334(n)1(o)-28(c,)-334(d)1(o)-333(s)-1(ame)-1(go)-333(\\261w)-1(i)1(tania!)]TJ 0 -13.549 Td[(A)-494(dzie\\253)-494(p)-28(o)-27(dnosi\\252)-494(s)-1(i\\246)-494(c)-1(i\\246\\273)-1(k)28(o)-494(i)-494(cic)27(h)1(o,)-495(p)-27(oran)1(k)28(o)28(w)27(e)-495(b)1(rzas)-1(ki)-494(sia\\252y)-494(na)-494(\\261)-1(wiat)]TJ -27.879 -13.55 Td[(p)-27(os)-1(\\246pn)1(e)-1(,)-425(ni)1(e)-1(p)1(rz)-1(eni)1(kni)1(one)-426(zw)27(a\\252y)-425(c)27(hm)28(ur)1(,)-426(a)-425(ju)1(\\273)-426(pr)1(z)-1(ed)-425(s)-1(am)28(ym)-426(ws)-1(c)28(ho)-28(d)1(e)-1(m)-426(s\\252o\\253ca)]TJ 0 -13.549 Td[(zam)-1(r)1(o)-28(c)-1(zy\\252o)-436(si\\246)-436(z)-436(nag\\252a)-436(i)-435(p)-28(o)-28(ciem)-1(n)1(ia\\252o,)-436(zac)-1(z\\241\\252)-436(p)1(ada\\242)-436(\\261)-1(n)1(ieg.)-436(P)28(olat)28(y)1(w)27(a\\252)-436(zrazu)-436(z)]TJ 0 -13.549 Td[(rzadk)56(a)-336(i)-335(k)28(o\\252)-1(u)1(j\\241cy)83(,)-335(jak)-335(to)-336(igli)1(w)27(o)-336(w)-336(d)1(z)-1(ie\\253)-335(w)-1(i)1(e)-1(tr)1(z)-1(n)28(y)84(,)-336(a\\273)-336(s)-1(i)1(\\246)-337(i)-335(p)-28(ot)1(e)-1(m)-336(roz\\261)-1(n)1(ie\\273)-1(y\\252o)-336(n)1(a)]TJ 0 -13.549 Td[(dob)1(re.)]TJ 27.879 -13.549 Td[(\\221n)1(ieg)-305(sypa\\252)-305(j)1(akb)28(y)-304(pr)1(z)-1(ez)-305(g\\246)-1(ste)-305(s)-1(i)1(to,)-305(p)1(ada\\252)-304(prosto,)-304(r\\363)28(w)-1(n)1(o,)-305(j)1(e)-1(d)1(nosta)-56(j)1(ni)1(e)-1(,)-304(b)-28(ez)]TJ -27.879 -13.55 Td[(sz)-1(ele)-1(stu)-328(i)-328(p)-27(o)-1(k)1(ryw)28(a\\252)-329(d)1(ac)27(h)28(y)84(,)-328(drze)-1(w)28(a,)-328(p\\252ot)28(y)-328(i)-328(z)-1(iem)-1(i)1(\\246)-329(c)-1(a\\252\\241)-328(jakb)29(y)-329(p)-27(o)-28(d)1(bielon)28(y)1(m)-1(,)-328(sz)-1(a-)]TJ 0 -13.549 Td[(ra)28(wym)-334(p)1(rz\\246)-1(d)1(z)-1(iw)28(em)-334(alb)-27(o)-334(t)28(y)1(m)-334(pi)1(e)-1(rzem)-334(ni)1(e)-1(dar)1(t)28(ym.)]TJ 27.879 -13.549 Td[(Ryc)27(h)29(t)28(yk)-258(i)-258(w)27(es)-1(ele)-259(si\\246)-258(s)-1(k)28(o\\253)1(c)-1(zy\\252o,)-258(m)-1(i)1(e)-1(li)-258(si\\246)-259(j)1(e)-1(sz)-1(cze)-259(wie)-1(czore)-1(m)-258(z)-1(ebr)1(a\\242)-259(w)-258(k)55(ar)1(c)-1(z-)]TJ -27.879 -13.549 Td[(mie)-334(n)1(a)-334(p)-27(opr)1(a)27(win)29(y)83(,)-333(ale)-334(t)1(e)-1(raz)-333(ju)1(\\273)-334(p)-28(o)-27(c)-1(z\\246)-1(l)1(i)-334(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i\\242)-333(s)-1(i\\246)-333(do)-333(dom\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-448(dru)1(\\273)-1(b)-27(o)28(wie)-449(z)-449(d)1(ruh)1(nami)-448(i)-449(m)28(uzyk)56(\\241)-448(na)-448(c)-1(ze)-1(le)-448(z)-1(ebral)1(i)-449(si\\246)-449(k)1(up)1(\\241)-449(p)1(rz)-1(ed)]TJ -27.879 -13.55 Td[(gank)1(ie)-1(m)-333(i)-333(z)-1(a\\261piew)27(al)1(i)-333(w)-1(r)1(az)-334(jedn)29(ym)-334(g\\252ose)-1(m)-334(ostatn)1(i\\241)-334(p)1(iosnec)-1(zk)28(\\246)-1(:)]TJ 27.879 -13.549 Td[(Dob)1(rano)-27(c)-529(pa\\253)1(s)-1(t)28(wu)-527(m)-1(\\252o)-28(d)1(ym,)-528(Dobr)1(ano)-28(c!)-528(Dob)1(r\\241)-528(no)-27(c)27(k)28(\\246)-529(o)-27(dda)-55(jem)27(y)84(,)-528(S)1(am)-1(i)]TJ -27.879 -13.549 Td[(s\\252)-1(u)1(\\273)-1(k)56(\\241)-333(os)-1(ta)-55(jem)27(y)84(,)-333(Dobr)1(ano)-28(c!)]TJ 27.879 -13.549 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(...)]TJ 0 -13.549 Td[(A)-424(Kub)1(a)-425(w)-424(te)-1(n)-424(sam)-425(cz)-1(as)-425(sk\\252ad)1(a\\252)-425(du)1(s)-1(z\\246)-425(sw)27(o)-55(j\\241)-424(p)-28(o)-27(d)-424(\\261)-1(wi\\246te)-425(P)28(an)1(a)-56(jezuso)27(w)28(e)]TJ -27.879 -13.549 Td[(n\\363\\273ki.)]TJ 27.879 -13.55 Td[(...)1(....)1(.....)1(....)1(.....)1(.....)1(....)1(.....)1(....)1(.....)1(....)1(.....)1(.....)1(...)]TJ\nET\nendstream\nendobj\n552 0 obj <<\n/Type /Page\n/Contents 553 0 R\n/Resources 551 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n551 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n557 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(170)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(12.)]TJ\nET\nendstream\nendobj\n556 0 obj <<\n/Type /Page\n/Contents 557 0 R\n/Resources 555 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n555 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n560 0 obj <<\n/Length 119       \n>>\nstream\n1 0 0 1 239.945 510.595 cm\nBT\n/F31 14.346 Tf 0 0 Td[(CZ)1(\\206\\221\\202)-375(I)-31(I)]TJ 13.607 -37.858 Td[(ZIMA)]TJ\nET\nendstream\nendobj\n559 0 obj <<\n/Type /Page\n/Contents 560 0 R\n/Resources 558 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n558 0 obj <<\n/Font << /F31 22 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n563 0 obj <<\n/Length 0         \n>>\nstream\nendstream\nendobj\n562 0 obj <<\n/Type /Page\n/Contents 563 0 R\n/Resources 561 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n561 0 obj <<\n/ProcSet [ /PDF ]\n>> endobj\n566 0 obj <<\n/Length 6871      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(13)]TJ/F17 10.909 Tf 0 -73.325 Td[(Nadc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-333(zima...)]TJ 27.879 -13.549 Td[({)-289(jesz)-1(cz)-1(e)-289(s)-1(i\\246)-289(bar)1(o)28(w)27(a\\252a)-289(z)-290(j)1(e)-1(sieni\\241)-289(i)-288(p)-28(or)1(ykuj)1(\\241c)-1(y)-288(t\\252uk\\252a)-289(p)-27(o)-289(s)-1(in)29(yc)27(h)-288(dalac)28(h)-289(jak)28(o)]TJ -27.879 -13.549 Td[(ten)-439(zwie)-1(r)1(z)-440(srogi)-438(i)-439(g\\252o)-28(d)1(n)28(y)83(,)-438(\\273)-1(e)-439(n)1(ie)-440(wiad)1(a)-439(b)28(y)1(\\252)-1(o,)-438(kiej)-439(p)1(rze)-1(p)1(rze)-440(a)-438(s)-1(k)28(o)-28(cz)-1(y)-438(i)-439(lu)1(t)28(ymi)]TJ 0 -13.549 Td[(k\\252ami)-333(w)27(e\\273)-1(r)1(e)-334(s)-1(i)1(\\246)-334(w)27(e)-333(\\261)-1(wiat..)1(.)]TJ 27.879 -13.55 Td[({)-333(jes)-1(zc)-1(ze)-334(cz)-1(asam)-1(i)-333(p)1(r\\363sz)-1(y\\252)-333(\\261)-1(n)1(ieg)-334(n)1(ik\\252y)84(,)-333(p\\252o)28(w)-1(y)-333({)-333(jes)-1(i)1(e)-1(n)1(n)28(y)-333(\\261)-1(n)1(ieg...)]TJ 0 -13.549 Td[({)-354(j)1(e)-1(szc)-1(ze)-354(przyc)27(h)1(o)-28(d)1(z)-1(i\\252y)-353(dn)1(ie)-354(os)-1(\\252u)1(pia\\252e,)-354(c)28(hor)1(o\\261)-1(ci\\241)-354(sine,)-353(c)27(kn)1(e)-1(,)-353(s)-1(t\\246kli)1(w)27(e,)-354(or)1(o-)]TJ -27.879 -13.549 Td[(pi)1(a\\252e)-386(i)-385(z)-1(go\\252a)-385(lame)-1(n)28(tem)-386(p)1(rze)-1(j)1(\\246)-1(te,)-385(a)-386(l)1(o)-28(do)28(wym)-386(\\261wiat\\252e)-1(m)-385(m)-1(\\273\\241ce)-386({)-386(d)1(ni)1(e)-386(tru)1(pie,)-385(\\273)-1(e)]TJ 0 -13.549 Td[(pt)1(ac)-1(t)28(w)28(o)-357(z)-357(krzykiem)-357(uciek)55(a\\252o)-356(do)-357(b)-27(or\\363)28(w,)-357(tr)1(w)27(o\\273niej)-356(b)-28(e\\252k)28(ota\\252y)-357(w)28(o)-28(d)1(y)-357(i)-357(t)1(o)-28(c)-1(zy\\252y)-356(s)-1(i\\246)]TJ 0 -13.549 Td[(leniw)28(o,)-296(jak)1(b)28(y)-296(s)-1(tr)1(ac)27(hem)-297(st\\246\\273)-1(a\\252e,)-297(ziem)-1(i)1(a)-297(d)1(ygota\\252a,)-296(a)-296(w)-1(sze)-1(lak)1(i)-297(st)28(w)27(\\363r)-296(p)-27(o)-28(d)1(nosi\\252)-296(c)-1(zu-)]TJ 0 -13.549 Td[(j\\241ce,)-334(l)1(\\246)-1(kl)1(iw)27(e)-333(o)-28(c)-1(zy)-333(na)-333(p)-27(\\363\\252)-1(n)1(o)-28(c)-334({)-333(w)-334(n)1(iez)-1(g\\252\\246bion)1(\\241)-334(top)1(iel)-333(c)27(hm)28(ur)1(...)]TJ 27.879 -13.55 Td[({)-386(j)1(e)-1(sz)-1(cz)-1(e)-386(n)1(o)-28(c)-1(e)-386(b)29(y\\252y)-386(j)1(e)-1(sie)-1(n)1(ne;)-386(o\\261lep\\252e,)-386(g\\252uc)28(he,)-386(zam)-1(\\246tne,)-385(a)-386(p)-28(e\\252ne)-386(strz\\246)-1(p)-27(\\363)28(w)]TJ -27.879 -13.549 Td[(mgie)-1(\\252)-328(i)-327(brzas)-1(k)28(\\363)28(w)-328(gwiazd)-328(p)-27(om)-1(ar)1(\\252yc)27(h)-327(roz)-1(gn)1(i\\252e)-328(no)-28(ce)-329(d)1(ygotli)1(w)27(ego)-328(m)-1(i)1(lc)-1(ze)-1(n)1(ia,)-328(p)1(rze)-1(-)]TJ 0 -13.549 Td[(ni)1(kni)1(\\246)-1(tego)-343(zdu)1(s)-1(zon)28(ym)-342(krzykiem)-343(tr)1(w)27(ogi)1(;)-343(p)-27(e\\252ne)-343(wzdyc)28(h\\363)28(w)-343(b)-27(oles)-1(n)28(y)1(c)27(h,)-342(sz)-1(amota\\253)1(,)]TJ 0 -13.549 Td[(nag\\252y)1(c)27(h)-457(c)-1(i)1(c)27(ho\\261c)-1(i)1(,)-458(wycia)-457(ps\\363)27(w,)-457(targa\\253)-457(marzn\\241cyc)27(h)-457(d)1(rz)-1(ewin,)-457(\\273a\\252os)-1(n)28(y)1(c)27(h)-457(g\\252os)-1(\\363)28(w)]TJ 0 -13.549 Td[(pt)1(ac)-1(t)28(w)28(a)-273(szuk)56(a)-56(j)1(\\241c)-1(ego)-272(s)-1(c)27(h)1(ron)1(is)-1(k)1(,)-272(s)-1(tr)1(as)-1(zn)28(yc)28(h)-272(w)28(o\\252)-1(a\\253)-271(pu)1(s)-1(tek)-272(i)-272(rozsta)-56(j)1(\\363)27(w)-272(zgubi)1(on)28(yc)27(h)]TJ 0 -13.55 Td[(w)-289(cie)-1(mni)1(c)-1(y)84(,)-289(\\252op)-27(ot\\363)28(w)-289(jakic)28(h\\261)-289(lot\\363)28(w,)-289(cieni\\363)28(w)-289(zac)-1(za)-56(j)1(on)28(yc)27(h)-288(p)-27(o)-28(d)-288(\\261)-1(cianami)-289(zdr)1(\\246)-1(t)28(wia-)]TJ 0 -13.549 Td[(\\252yc)27(h)-279(c)27(h)1(at,)-280(p)-27(e)-1(\\252za)-56(j\\241cyc)28(h)-280(h)28(u)1(k)55(a\\253)1(;)-280(zja)28(w)-280(prze)-1(r)1(a\\273)-1(a)-55(j\\241cyc)27(h)1(,)-280(na)28(w)28(o\\252yw)27(a\\253)-279(nieroze)-1(znan)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(mlas)-1(k)56(a\\253)-333(okr)1(opn)28(y)1(c)27(h,)-333(p)1(rze)-1(sz)-1(y)1(w)27(a)-55(j\\241cyc)27(h)-333(j)1(\\246)-1(k)28(\\363)28(w...)]TJ 27.879 -13.549 Td[({)-382(j)1(e)-1(szc)-1(ze)-382(c)-1(zas)-1(ami,)-381(o)-382(zac)27(h)1(o)-28(dzie,)-382(z)-382(p)-27(os)-1(\\246pn)29(yc)27(h)-381(p)-27(\\363l)-382(o\\252o)28(wianego)-382(n)1(ieba)-382(wy\\252u)1(-)]TJ -27.879 -13.549 Td[(p)28(yw)28(a\\252o)-361(s)-1(i)1(\\246)-362(cz)-1(erw)28(one,)-361(ogromne)-361(s)-1(\\252o\\253)1(c)-1(e)-361(i)-361(spada\\252o)-361(ci\\246\\273)-1(k)28(o,)-361(n)1(ib)28(y)-361(k)56(ad)1(\\271)-362(r)1(oz)-1(top)1(ionego)]TJ 0 -13.55 Td[(\\273e)-1(laza,)-316(z)-316(kt\\363r)1(e)-1(j)-315(bu)1(c)27(ha\\252y)-315(krw)28(a)28(w)27(e)-316(wrz\\241tki)-316(i)-315(bi\\252y)-315(dym)28(y)-316(sm)-1(ol)1(is)-1(te,)-316(cz)-1(ar)1(ne,)-316(p)-27(opr)1(\\246)-1(go-)]TJ 0 -13.549 Td[(w)28(ane)-334(gor)1(e)-1(j)1(\\241)-1(cymi)-333(\\273)-1(agwiami,)-333(\\273e)-334(\\261)-1(wiat)-333(ca\\252y)-334(sta)28(w)27(a\\252)-333(w)-334(\\252u)1(nac)28(h)-333(i)-333(w)-334(p)-27(o\\273)-1(o)-28(d)1(z)-1(e.)]TJ 27.879 -13.549 Td[(I)-456(d\\252ugo,)-456(d)1(\\252)-1(u)1(go)-456(w)-457(no)-27(c)-457(dogasa\\252y)-457(i)-456(st)28(yg\\252y)-457(n)1(a)-456(niebie)-456(krw)28(a)27(w)28(e)-457(zarze)-1(wia,)-456(a\\273)]TJ -27.879 -13.549 Td[(lu)1(dzie)-334(m\\363)28(w)-1(il)1(i:)]TJ 27.879 -13.549 Td[({)-333(Zim)-1(a)-333(ro\\261ni)1(e)-334(i)-333(na)-333(z)-1(\\252yc)28(h)-333(wic)27(h)1(rac)27(h)-333(p)1(rzyjedzie.)]TJ 0 -13.55 Td[(I)-333(ros)-1(\\252a)-333(zim)-1(a,)-333(r)1(os)-1(\\252a)-333(c)-1(o)-333(dzie\\253,)-333(co)-334(go)-28(d)1(z)-1(i)1(na,)-333(co)-334(to)-333(o)-28(cz)-1(ymgn)1(ie)-1(n)1(ie.)]TJ 0 -13.549 Td[(A\\273)-334(p)1(rzys)-1(z\\252a.)]TJ 0 -13.549 Td[(A)-333(na)-55(jry)1(c)27(hl)1(e)-1(j)-333(p)1(rz)-1(y)1(le)-1(cia\\252y)-333(zap)-28(o)28(wiedni)1(e)-334(wic)-1(i)1(.)]TJ 0 -13.549 Td[(Jak)28(o\\261)-231(wnet)-231(p)-27(o)-231(\\261w)-1(i)1(\\246)-1(tej)-231(Barb)1(arze)-1(,)-230(patr)1(once)-232(d)1(obr)1(e)-1(j)-230(\\261)-1(mierci,)-231(o)-230(c)-1(i)1(c)27(h)28(ym,)-231(omd)1(la-)]TJ -27.879 -13.549 Td[(\\252ym)-429(z)-1(ar)1(aniu)1(,)-429(spad)1(\\252)-1(y)-428(pierwsz)-1(e)-429(kr\\363tk)1(ie)-1(,)-428(trze)-1(p)-27(otli)1(w)27(e)-429(wiatry;)-428(oblec)-1(i)1(a\\252y)-429(z)-1(i)1(e)-1(mi\\246)-429(z)-1(e)]TJ 0 -13.55 Td[(sk)28(o)27(wytem)-445(j)1(ak)28(o)-445(te)-444(psy)-445(w)28(\\246s)-1(z\\241c)-1(e)-445(t)1(ropu)1(,)-444(gryz\\252y)-445(zagon)28(y)84(,)-444(w)27(ar)1(c)-1(za\\252)-1(y)-444(w)-444(krzac)27(h)1(,)-444(p)-28(o-)]TJ 0 -13.549 Td[(sz)-1(arp)1(a\\252y)-319(\\261)-1(n)1(iegi,)-319(p)-27(otarmos)-1(i)1(\\252y)-319(s)-1(ad)1(y)83(,)-319(p)-27(o)-28(omiata\\252y)-319(ogon)1(am)-1(i)-318(drogi)1(,)-319(wytarza\\252y)-319(s)-1(i)1(\\246)-320(p)-27(o)]TJ 0 -13.549 Td[(w)28(o)-28(dac)28(h)-386(i)-385(milcz)-1(ki)1(e)-1(m)-386(u)1(rw)28(a\\252y)-386(k)56(a)-56(j)1(\\261)-386(niek)56(a)-56(j)1(\\261)-386(c)-1(o)-385(s)-1(tar)1(s)-1(zyc)27(h)-385(strze)-1(c)28(h)-386(i)-385(ogro)-27(dze)-1(\\253)-385(i)-385(j\\246\\252y)]TJ 358.232 -29.888 Td[(173)]TJ\nET\nendstream\nendobj\n565 0 obj <<\n/Type /Page\n/Contents 566 0 R\n/Resources 564 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n564 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n569 0 obj <<\n/Length 9975      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(174)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-442(z)-1(wij)1(a\\242)-442(a)-442(ze)-442(s)-1(k)28(omleniem)-442(uciek)55(a\\242)-442(n)1(a)-442(b)-27(ory)-441({)-442(a)-441(p)-28(o)-441(nic)28(h,)-441(z)-1(ar)1(az)-442(na)-442(o)-27(dwiec)-1(ze)-1(-)]TJ 0 -13.549 Td[(rzu,)-329(z)-1(acz)-1(\\246\\252y)-330(s)-1(i)1(\\246)-331(wysu)28(w)28(a\\242)-331(z)-330(m)-1(r)1(ok)28(\\363)28(w)-331(d)1(\\252ugie,)-330(\\261w)-1(i)1(s)-1(zc)-1(z\\241c)-1(e)-330(i)-330(j)1(ak)28(ob)28(y)-330(k)28(olczas)-1(te)-330(j\\246z)-1(or)1(y)]TJ 0 -13.549 Td[(wic)27(h)1(r\\363)28(w.)]TJ 27.879 -13.549 Td[(Wia\\252y)-233(no)-28(c)-234(c)-1(a\\252\\241,)-233(a)-234(tak)-234(zas)-1(i\\246)-234(sk)27(o)28(wycz)-1(a\\252y)-233(w)-235(p)-27(olac)28(h)-234(kiej)-233(to)-234(s)-1(tad)1(o)-234(z)-1(g\\252o)-28(d)1(ni)1(a\\252)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(wilk)28(\\363)28(w;)-356(a)-357(h)28(u)1(la\\252y)-356(rz)-1(etelni)1(e)-1(,)-356(b)-28(o)-356(ano)-356(ran)1(kiem)-357(z)-1(i)1(e)-1(mia)-356(ju\\273)-356(drop)1(ia\\252a)-357(sp)-27(o)-28(d)-356(s)-1(tr)1(ato)28(w)27(a-)]TJ 0 -13.55 Td[(n)28(yc)28(h)-400(i)-399(w)-1(y)1(\\273)-1(art)28(y)1(c)27(h)-400(\\261ni)1(e)-1(g\\363)28(w,)-400(gdzieniegdzie)-400(in)1(o)-400(p)-28(o)-400(d)1(o\\252k)55(ac)28(h)-400(i)-399(bru)1(z)-1(d)1(ac)27(h)-399(bieli\\252y)-399(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(os)-1(zarp)1(ane)-298(p\\252at)28(y)83(,)-297(a)-298(z)-1(agon)28(y)-297(\\261)-1(wiec)-1(i)1(\\252)-1(y)-297(\\252ys)-1(i)1(c)-1(ami,)-298(d)1(rogi)-298(le\\273a\\252)-1(y)-297(s)-1(k)28(ostni)1(a\\252)-1(e)-298(i)-298(p)1(rze)-1(mar-)]TJ 0 -13.549 Td[(z\\252)-1(e,)-388(m)-1(r)1(\\363z)-389(z)-1(a\\261)-389(w\\273)-1(era\\252)-389(si\\246)-389(ostrymi)-388(k\\252am)-1(i)-388(w)-389(zie)-1(mi\\246,)-389(\\273e)-389(dzw)28(oni\\252a)-389(j)1(ak)-389(\\273elaz)-1(o)-388({)-389(ale)]TJ 0 -13.549 Td[(sk)28(oro)-315(d)1(z)-1(i)1(e)-1(\\253)-314(nasta\\252,)-314(ucie)-1(k)1(\\252)-1(y)-314(p)-27(os)-1(zc)-1(zekuj)1(\\241c)-1(,)-314(p)-27(okry\\252y)-314(s)-1(i)1(\\246)-315(w)-315(lasac)27(h)-314(i)-315(w)-314(przycz)-1(a)-55(jeniu)]TJ 0 -13.549 Td[(dy)1(gota\\252y)-333(s)-1(k)28(oki)1(e)-1(m)-334(n)1(api\\246t)28(ym,)-333(z)-1(\\252ym.)]TJ 27.879 -13.549 Td[(A)-222(ni)1(e)-1(b)-27(o)-222(p)-28(o)-28(cz\\246)-1(\\252o)-222(s)-1(i)1(\\246)-223(z)-1(aci\\241)-28(ga\\242)-222(c)-1(or)1(az)-223(mro)-28(cz)-1(n)1(ie)-1(j)1(;)-222(c)27(h)1(m)27(u)1(ry)-222(wyp)-28(e\\252z)-1(a\\252y)-222(ze)-223(wsz)-1(yst-)]TJ -27.879 -13.55 Td[(kic)28(h)-274(jam,)-275(p)-27(o)-28(d)1(nosi\\252y)-274(p)-28(ot)28(w)28(orne)-275(\\252b)29(y)83(,)-274(pr)1(z)-1(ec)-1(i\\241)-27(ga\\252y)-275(zgniecione)-275(k)56(ad\\252u)1(b)28(y)84(,)-275(r)1(oz)-1(wic)27(h)1(rza\\252y)]TJ 0 -13.549 Td[(sine)-312(grzywy)83(,)-312(zielona)28(wymi)-312(k\\252ami)-312(b\\252ysk)56(a\\252y)-312(i)-312(sz)-1(\\252y)-312(ca\\252ym)-313(stad)1(e)-1(m)-312({)-312(gro\\271n\\241,)-312(p)-27(on)28(u)1(r\\241)]TJ 0 -13.549 Td[(i)-276(milcz)-1(\\241c\\241)-276(ci\\273)-1(b)1(\\241)-276(w)27(al)1(i\\252y)-276(s)-1(i)1(\\246)-277(n)1(a)-276(nieb)-27(o;)-276(s)-1(z\\252y)-276(o)-28(d)-275(p)-28(\\363\\252n)1(o)-28(c)-1(y)-275(c)-1(zarne,)-276(olb)1(rzymie)-277(g\\363r)1(y)83(,)-275(p)-28(o-)]TJ 0 -13.549 Td[(strz\\246)-1(p)1(ione,)-417(p)-27(o)-28(d)1(arte,)-417(spi)1(\\246)-1(tr)1(z)-1(on)1(o,)-417(r)1(os)-1(o)-28(c)28(hate,)-416(nib)28(y)-416(ku)1(p)28(y)-416(b)-28(or)1(\\363)27(w)-416(p)-28(o)-27(dru)1(z)-1(gotan)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(erw)28(an)28(yc)28(h)-350(g\\252\\246)-1(b)-27(okimi)-350(pr)1(z)-1(epa\\261c)-1(iami,)-350(zas)-1(y)1(pan)28(y)1(c)27(h)-350(zie)-1(l)1(on)28(ymi)-350(\\252a)27(wicami)-351(l)1(o)-28(d\\363)28(w,)-350(a)]TJ 0 -13.55 Td[(par)1(\\252y)-343(s)-1(i\\246)-343(nap)1(rz\\363)-28(d)-343(z)-344(d)1(z)-1(i)1(k)55(\\241)-343(mo)-28(c\\241,)-343(z)-344(g\\252uc)28(h)28(ym)-344(p)-27(osz)-1(u)1(m)-1(em;)-343(o)-28(d)-343(zac)27(ho)-27(du,)-343(zza)-344(b)-27(or\\363)28(w)]TJ 0 -13.549 Td[(cz)-1(arn)29(yc)27(h)1(,)-348(n)1(ie)-1(r)1(uc)27(h)1(om)27(y)1(c)27(h)-347(w)-1(y)1(s)-1(u)28(w)28(a\\252y)-348(si\\246)-348(z)-348(w)27(oln)1(a)-348(sine,)-348(ob)1(rz\\246)-1(k\\252e)-348(zw)27(a\\252y)84(,)-348(p)1(rze)-1(\\261w)-1(i)1(tu-)]TJ 0 -13.549 Td[(j\\241ce)-296(gdzieniegdzie)-296(jakb)29(y)-296(ogn)1(ie)-1(m,)-295(a)-296(s)-1(z\\252y)-296(j)1(e)-1(d)1(na)-296(za)-296(d)1(rug\\241,)-295(rz\\246)-1(d)1(e)-1(m)-296(n)1(ie)-1(sk)28(o\\253czon)28(ym,)]TJ 0 -13.549 Td[(ci\\241)-28(giem)-344(coraz)-343(wi\\246)-1(k)1(s)-1(zym,)-343(jak)28(ob)29(y)-343(te)-343(klucze)-344(p)1(tak)28(\\363)27(w)-343(wielgac)27(h)1(n)28(yc)28(h;)-343(za\\261)-344(o)-27(d)-343(ws)-1(c)28(ho-)]TJ 0 -13.549 Td[(du)-481(wywlek)56(a\\252y)-482(si\\246)-482(c)28(hm)27(u)1(ry)-481(p\\252askie,)-481(z)-1(ru)1(dzia\\252e)-1(,)-481(p)1(rze)-1(kr)1(w)-1(i)1(one,)-482(p)1(rze)-1(r)1(opia\\252e,)-482(zgo\\252a)]TJ 0 -13.55 Td[(pasku)1(dn)1(e)-1(,)-426(kieb)28(y)-426(te)-427(\\261c)-1(ierw)28(a)-427(p)1(rze)-1(gn)1(i\\252e)-427(i)-426(o)-28(cie)-1(k)56(a)-55(j\\241ce)-427(p)-28(osok)56(\\241;)-427(i)-426(o)-28(d)-426(p)-27(o\\252ud)1(ni)1(a)-427(sz)-1(\\252y)84(,)]TJ 0 -13.549 Td[(in)1(o)-401(\\273e)-401(z)-1(wietrza\\252e)-1(,)-400(cz)-1(erw)28(ona)28(w)27(e,)-400(p)-28(o)-27(dob)1(ne)-401(do)-400(ba)-55(jor)1(\\363)27(w)-400(i)-400(trz\\246)-1(sa)27(wisk)-400(torf)1(o)27(wyc)28(h,)-400(a)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)1(e)-256(pr\\246g)-256(i)-255(gr)1(uz\\252)-1(\\363)28(w)-256(sin)28(y)1(c)27(h,)-255(p)-27(e)-1(\\252n)1(e)-256(plam)-255(i)-256(r)1(o)-56(j)1(o)27(wisk)-255(s)-1(tr)1(as)-1(zn)28(yc)28(h)-256({)-255(jak)1(b)28(y)-255(p)-28(e\\252ne)-256(tego)]TJ 0 -13.549 Td[(gme)-1(r)1(z)-1(\\241ce)-1(go)-293(rob)1(ac)-1(t)28(w)28(a;)-293(a)-293(jes)-1(zc)-1(ze)-294(i)-293(z)-294(g\\363r)1(y)83(,)-293(j)1(akb)28(y)-293(z)-293(w)-1(y)1(gas)-1(\\252ego)-294(s\\252o\\253ca,)-293(s)-1(p)1(ada\\252y)-293(k\\252a-)]TJ 0 -13.549 Td[(k)56(am)-1(i)-319(ru)1(dn)29(ym)-1(i)1(,)-320(to)-319(s)-1(y)1(pa\\252y)-320(si\\246)-320(b)1(arwione)-320(j)1(ak)28(o)-320(te)-320(\\273u\\273le)-320(st)27(y)1(gn\\241ce)-320({)-320(a)-320(wsz)-1(y)1(s)-1(tki)1(e)-320(s)-1(z\\252y)]TJ 0 -13.55 Td[(na)-417(s)-1(iebi)1(e)-1(,)-417(s)-1(to\\273y\\252y)-418(si\\246)-418(w)-418(g\\363ry)-418(p)1(rze)-1(ogr)1(om)-1(n)1(e)-419(i)-417(z)-1(ala\\252y)-417(nieb)-27(o)-418(c)-1(zarn)28(y)1(m)-1(,)-417(s)-1(tr)1(as)-1(zn)28(ym)]TJ 0 -13.549 Td[(kip)1(i\\241tki)1(e)-1(m)-333(b\\252ota)-333(i)-334(r)1(umo)28(w)-1(i)1(s)-1(k.)1(..)]TJ 27.879 -13.549 Td[(\\221wiat)-340(z)-341(nag\\252a)-340(p)-28(o)-28(cze)-1(rn)1(ia\\252,)-340(c)-1(isz)-1(a)-340(s)-1(i)1(\\246)-342(u)1(c)-1(zyn)1(i\\252a)-341(g\\252uc)28(ha,)-340(pr)1(z)-1(ygas\\252y)-341(\\261wiat\\252o\\261)-1(ci,)]TJ -27.879 -13.549 Td[(sine)-434(o)-28(c)-1(zy)-434(w)27(\\363)-27(d)-434(p)-28(omd)1(la\\252y)83(,)-434(ws)-1(zystk)28(o)-434(jakb)29(y)-435(zdr)1(\\246)-1(t)28(wia\\252o)-434(i)-434(s)-1(tan)1(\\246)-1(\\252o)-434(w)-434(z)-1(d)1(umie)-1(n)1(iu)-434(z)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ta)-56(j)1(on)28(ym)-311(tc)27(h)1(e)-1(m,)-311(l)1(\\246)-1(k)-310(w)-1(i)1(on\\241\\252)-311(p)-27(o)-311(zie)-1(mi,)-310(m)-1(r)1(\\363z)-312(p)1(rze)-1(n)1(ik)56(a\\252)-311(k)28(o\\261)-1(ci,)-310(s)-1(tr)1(ac)27(h)-310(c)27(h)28(yci\\252)-311(za)]TJ 0 -13.55 Td[(gard)1(z)-1(i)1(e)-1(le,)-294(du)1(s)-1(ze)-295(p)1(ad\\252y)-294(w)-294(p)1(ro)-28(c)27(h)-293(,lu)1(te)-295(p)1(rze)-1(ra\\273enie)-294(z)-1(a\\252op)-27(ota\\252o)-294(nad)-293(w)-1(sz)-1(elki)1(m)-295(st)28(w)27(o-)]TJ 0 -13.549 Td[(rze)-1(n)1(iem)-364({)-363(wid)1(a\\242)-364(b)29(y\\252o,)-363(jak)-362(z)-1(a)-55(j\\241c)-363(gna\\252)-363(p)1(rz)-1(ez)-363(w)-1(i)1(e)-1(\\261)-363(z)-364(r)1(oz)-1(wian)1(\\241)-363(s)-1(ze)-1(r)1(\\261)-1(ci\\241,)-363(to)-363(wron)29(y)]TJ 0 -13.549 Td[(z)-422(k)1(rz)-1(y)1(kiem)-422(p)1(rz)-1(ejm)28(uj)1(\\241c)-1(ym)-421(wpad)1(a\\252)-1(y)-421(d)1(o)-421(s)-1(to)-27(d\\363\\252)-421(alb)-27(o)-422(i)-421(zgo\\252a)-421(do)-421(s)-1(i)1(e)-1(n)1(i,)-421(psy)-421(wy\\252y)]TJ 0 -13.549 Td[(p)-27(o)-415(przyzbac)27(h)-414(jak)-415(oszala\\252e)-1(,)-415(l)1(udzie)-415(c)27(h)28(y\\252k)1(ie)-1(m)-415(uciek)55(al)1(i)-415(do)-415(c)28(ha\\252up)1(,)-415(a)-415(nad)-414(s)-1(ta)28(w)28(e)-1(m)]TJ 0 -13.549 Td[(bi)1(e)-1(ga\\252a)-450(\\261le)-1(p)1(a)-450(k)28(ob)28(y\\252a)-450(z)-451(r)1(e)-1(sz)-1(tk)56(\\241)-450(w)27(ozu,)-449(t\\252uk\\252a)-450(si\\246)-451(o)-450(p\\252ot)28(y)84(,)-450(o)-450(dr)1(z)-1(ew)27(a)-450(i)-450(z)-450(dzikim)]TJ 0 -13.549 Td[(kwiki)1(e)-1(m)-333(s)-1(zuk)56(a\\252a)-334(sta)-56(j)1(ni)1(.)]TJ 27.879 -13.55 Td[(Ciem)-1(n)1(ic)-1(a)-284(s)-1(i\\246)-285(r)1(oz)-1(lew)27(a\\252a)-284(m)-1(\\246tna,)-284(du)1(s)-1(z\\241c)-1(a:)-284(c)27(h)1(m)27(ur)1(y)-285(op)1(ada\\252y)-285(coraz)-285(ni)1(\\273)-1(ej,)-284(z)-1(w)28(a-)]TJ -27.879 -13.549 Td[(la\\252y)-423(s)-1(i)1(\\246)-424(z)-424(las)-1(\\363)28(w)-424(r)1(oz)-1(k)28(ot\\252o)28(w)28(an\\241)-424(g\\246st)27(w)28(\\241)-424(t)1(uman\\363)28(w)-424(i)-423(to)-28(cz)-1(y\\252y)-423(si\\246)-424(p)-27(o)-424(zagonac)27(h)-423(j)1(ak)]TJ 0 -13.549 Td[(te)-383(w)27(o)-27(dy)-382(w)-1(zbu)1(rzone,)-383(r)1(oz)-1(h)28(u)1(k)55(an)1(e)-1(,)-382(stras)-1(zne)-383({)-382(uderzy\\252y)-383(n)1(a)-383(wie\\261)-383(i)-383(zala\\252y)-383(ws)-1(zystk)28(o)]TJ 0 -13.549 Td[(lo)-28(d)1(o)28(w)27(at\\241,)-388(b)1(rud)1(n\\241)-388(mg\\252\\241;)-389(n)1(araz)-388(nieb)-28(o)-388(si\\246)-389(p)1(rz)-1(edar)1(\\252o)-389(n)1(a)-389(\\261ro)-27(dku)-388(i)-388(za)-56(j)1(a\\261)-1(n)1(ia\\252o)-388(m)-1(o-)]TJ 0 -13.549 Td[(dr)1(a)28(w)27(o)-335(n)1(ib)28(y)-335(l)1(ustro)-335(stud)1(z)-1(ienn)1(e)-1(,)-334(\\261)-1(wist)-335(ostry)-335(p)1(rze)-1(sz)-1(y)1(\\252)-335(c)-1(iemno\\261c)-1(i,)-334(m)-1(g\\252y)-335(si\\246)-335(s)-1(k)1(\\252\\246)-1(b)1(i\\252y)]TJ 0 -13.55 Td[(z)-336(nag\\252a,)-335(a)-336(z)-336(p)-27(\\246)-1(kn)1(i\\246te)-1(j)-335(cz)-1(elu\\261ci)-336(lu)1(n\\241\\252)-336(p)1(ierws)-1(zy)-336(wic)28(her,)-335(a)-336(za)-336(ni)1(m)-336(ju)1(\\273)-337(l)1(e)-1(cia\\252)-336(d)1(rugi)1(,)]TJ 0 -13.549 Td[(dzies)-1(i)1(\\241t)27(y)84(,)-333(s)-1(etn)28(y)1(!)]TJ\nET\nendstream\nendobj\n568 0 obj <<\n/Type /Page\n/Contents 569 0 R\n/Resources 567 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 554 0 R\n>> endobj\n567 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n572 0 obj <<\n/Length 10255     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(175)]TJ -330.353 -35.866 Td[(Wy\\252y)-310(j)1(u\\273)-311(stadami,)-310(la\\252y)-310(si\\246)-311(z)-311(tej)-310(gard)1(z)-1(i)1(e)-1(li)-310(n)1(ib)28(y)-310(rze)-1(k)1(i)-310(nicz)-1(y)1(m)-311(ni)1(e)-311(p)-28(o)28(wstrzy-)]TJ -27.879 -13.549 Td[(mane,)-459(rw)27(a\\252y)-459(si\\246)-460(j)1(akb)28(y)-459(z)-459(\\252)-1(a\\253)1(c)-1(u)1(c)27(h)1(\\363)27(w)-459(i)-459(rozs)-1(k)28(o)28(wycz)-1(on)1(\\241,)-459(w)-1(\\261c)-1(i)1(e)-1(k\\252\\241)-459(zgra)-56(j)1(\\241)-459(bi\\252y)-459(w)]TJ 0 -13.549 Td[(c)27(h)1(m)27(u)1(ry)84(,)-378(r)1(z)-1(u)1(c)-1(a\\252y)-377(s)-1(i\\246)-377(na)-377(c)-1(iem)-1(n)1(ice)-378(i)-377(roz)-1(w)28(ala\\252y)-377(je)-378(d)1(o)-378(d)1(na,)-377(pr)1(z)-1(e\\273)-1(era\\252y)-377(na)-377(w)-1(skr)1(\\363\\261)-378(i)]TJ 0 -13.549 Td[(rozmiata\\252y)-333(nib)28(y)-333(t\\246)-333(s)-1(\\252om\\246)-334(strup)1(ies)-1(za\\252\\241.)]TJ 27.879 -13.549 Td[(W)84(rz)-1(ask)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(p)-27(o)-334(\\261wiec)-1(ie,)-333(z)-1(am\\246t,)-333(s)-1(zum)28(y)83(,)-333(\\261w)-1(i)1(s)-1(t)28(y)83(,)-333(k)1(urza)28(w)27(a.)]TJ 0 -13.55 Td[(Chm)28(ury)84(,)-322(strato)28(w)28(ane)-323(ostry)1(m)-1(i)-322(k)28(op)29(ytami)-322(wic)27(h)1(r\\363)28(w)-1(,)-321(ucie)-1(k)56(a\\252y)-322(j)1(akb)28(y)-322(c)27(h)29(y\\252kiem)]TJ -27.879 -13.549 Td[(na)-315(b)-27(ory)-316(i)-315(lasy)83(,)-315(n)1(ie)-1(b)-27(o)-316(si\\246)-316(p)1(rz)-1(ecie)-1(r)1(a\\252o,)-316(d)1(z)-1(ie\\253)-315(z)-1(n)1(o)28(w)-1(u)-315(za\\261)-1(wiec)-1(i)1(\\252)-316(o\\252o)28(w)-1(i)1(an)28(ymi)-316(o)-27(c)-1(zam)-1(i)1(,)]TJ 0 -13.549 Td[(st)27(w)28(\\363r)-333(ws)-1(ze)-1(l)1(ki)-333(o)-28(detc)27(h)1(n\\241\\252)-333(z)-334(ul)1(g\\241.)]TJ 27.879 -13.549 Td[(Ale)-460(w)-1(i)1(c)27(hr)1(y)-460(wia\\252y)-460(w)27(ci\\241\\273,)-460(b)-27(e)-1(z)-460(m)-1(a\\252a)-460(c)-1(a\\252\\241)-460(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246,)-460(a)-460(b)-27(e)-1(z)-460(folgi)-460(\\273adn)1(e)-1(j)-459(ni)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(t)1(anku)1(.)-350(D)1(nie)-350(to)-349(tam)-350(j)1(e)-1(sz)-1(cze)-350(jak)28(o)-349(tak)28(o)-350(cz\\252)-1(o)28(wiek)-349(s)-1(tr)1(z)-1(yma\\242)-350(ws)-1(t)1(rz)-1(y)1(m)-1(a\\252,)-349(\\273e)-350(to)]TJ 0 -13.549 Td[(in)1(o)-276(ci)-276(si\\246)-276(wiedli)-275(na)-275(\\261)-1(wiat,)-275(k)28(ogo)-276(p)-27(otr)1(z)-1(eba)-275(gna\\252a,)-275(dru)1(gie)-276(z)-1(a\\261)-276(p)-27(o)-275(c)27(ha\\252u)1(pac)27(h)-275(siedzie)-1(l)1(i)]TJ 0 -13.55 Td[(i)-250(k)28(o\\253ca)-251(wygl\\241d)1(ali,)-250(ale)-251(no)-28(ce)-251(b)28(y\\252y)-250(ni)1(e)-252(d)1(o)-251(wytr)1(z)-1(y)1(m)-1(an)1(ia,)-251(a)-250(pr)1(z)-1(ysz)-1(\\252y)-250(aku)1(ratni)1(e)-251(jasne,)]TJ 0 -13.549 Td[(rozgwia\\273)-1(d)1(\\273)-1(on)1(e)-262(i)-261(w)-261(g\\363rz)-1(e)-261(c)-1(ic)28(he,)-261(ino)-261(n)1(a)-262(ziem)-1(i)-261(wic)28(h)28(ur)1(a)-262(o)-28(d)1(pr)1(a)27(wia\\252a)-261(di)1(ab)-28(elskie)-262(go)-27(dy)84(,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-343(s)-1(i)1(\\246)-344(nar)1(az)-344(ze)-344(sto)-343(c)27(h\\252op)1(a)-344(ob)29(w)-1(i)1(e)-1(si\\252o,)-343(\\273)-1(e)-343(i)-343(z)-1(asn\\241\\242)-343(nie)-343(b)28(y\\252o)-343(mo\\273)-1(n)1(a,)-343(jak\\273e)-1(,)-343(k)1(ie)-1(j)]TJ 0 -13.549 Td[(sz)-1(\\252y)-351(takie)-352(r)1(yki,)-351(trzas)-1(k)1(i,)-351(\\252)-1(omot)28(y)-351(i)-352(h)29(urk)28(otan)1(ia,)-351(jakb)29(y)-352(t)28(ysi\\241ce)-352(pu)1(s)-1(t)28(yc)28(h)-352(w)28(oz\\363)27(w)-351(a)-352(w)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(ie)-432(na)-55(jwi\\246ks)-1(zym)-432(pr)1(z)-1(eje\\273)-1(d)1(\\273)-1(a\\252o)-432(p)-27(o)-433(gr)1(ud)1(z)-1(ie,)-432(a)-432(te)-432(t\\246)-1(ten)28(t)28(y)83(,)-431(o)-28(d)-432(kt\\363r)1(yc)27(h)-431(z)-1(iemia)]TJ 0 -13.55 Td[(dr)1(\\273)-1(a\\252a,)-333(a)-333(te)-334(h)28(u)1(k)55(an)1(ia)-333(B)-1(\\363g)-333(wie)-334(cz)-1(y)1(je,)-333(te)-334(wrz)-1(aski,)-333(te)-333(w)-1(y)1(c)-1(ia!)]TJ 27.879 -13.549 Td[(Cha\\252u)1(p)28(y)-297(tr)1(z)-1(es)-1(zcz)-1(a\\252y)84(,)-297(b)-27(o)-297(raz)-297(w)-296(raz)-297(wic)27(h)28(u)1(ra)-297(p)1(ar\\252a)-296(barami)-296(\\261)-1(cian)28(y)84(,)-297(t\\252u)1(k\\252a)-297(si\\246)]TJ -27.879 -13.549 Td[(o)-361(w)28(\\246)-1(g\\252y)84(,)-361(p)-27(o)-28(dw)28(a\\273a\\252)-1(a)-360(ok)55(ap)29(y)83(,)-360(z)-1(a)-361(p)1(rzyc)-1(i)1(e)-1(sie)-361(s)-1(i)1(\\246)-362(b)1(ra\\252a,)-361(w)-361(d)1(rzw)-1(i)-360(t\\252uk\\252a)-360(jakb)28(y)-360(\\252b)-28(em,)]TJ 0 -13.549 Td[(\\273e)-297(n)1(iejedne)-296(p)1(u\\261c)-1(i\\252y)84(,)-296(sz)-1(y)1(b)28(y)-296(gn)1(iet\\252a,)-296(a\\273)-296(trza)-296(b)28(y\\252o)-295(w)-1(\\261r\\363)-28(d)-295(n)1(o)-28(c)-1(y)-295(ws)-1(ta)28(w)28(a\\242)-297(i)-295(pr)1(z)-1(yt)28(yk)56(a\\242)]TJ 0 -13.549 Td[(p)-27(o)-28(du)1(s)-1(zk)56(am)-1(i,)-377(b)-27(o)-378(d)1(ar\\252a)-377(s)-1(i\\246)-378(d)1(o)-378(wn)1(\\246)-1(tr)1(z)-1(a)-377(z)-378(kwikiem)-378(ki)1(e)-1(j)-377(ta)-377(\\261)-1(win)1(ia)-377(upr)1(z)-1(y)1(krzona,)-377(a)]TJ 0 -13.55 Td[(tak)-333(pr)1(a\\273)-1(y)1(\\252)-1(a)-333(zi\\241b)-28(em,)-333(i\\273)-334(lu)1(dzie)-334(p)-27(o)-28(d)-333(p)1(ie)-1(r)1(z)-1(yn)1(am)-1(i)1(,)-333(a)-334(k)28(ostni)1(e)-1(li)1(!)]TJ 27.879 -13.549 Td[(Co)-334(si\\246)-334(n)1(ar\\363)-28(d)-332(nac)-1(i)1(e)-1(r)1(pia\\252)-333(pr)1(z)-1(ez)-334(te)-334(d)1(nie)-333(i)-334(n)1(o)-28(ce)-1(,)-333(to)-333(i)-333(nie)-333(w)-1(y)1(p)-28(o)28(wiedzie)-1(\\242!)]TJ 0 -13.549 Td[(A)-387(c)-1(o)-387(sz)-1(k)28(\\363)-28(d)-387(n)1(arob)1(i\\252a,)-387(to)-387(i)-388(n)1(ie)-388(zlicz)-1(y)1(\\242)-1(:)-387(p)-27(o)-28(obal)1(a\\252a)-388(p)1(\\252ot)28(y)83(,)-387(p)-27(o)27(wyd)1(z)-1(i)1(e)-1(r)1(a\\252)-1(a)-387(p)-27(o-)]TJ -27.879 -13.549 Td[(sz)-1(ycia,)-346(u)-345(w)27(\\363)-55(jta)-346(p)1(ra)28(wie)-347(n)1(o)28(w)27(\\241)-346(sz)-1(op)-27(\\246)-347(p)1(rze)-1(wr\\363)-27(c)-1(i\\252a,)-346(Bart)1(k)28(o)27(wi)-346(Koz\\252o)28(w)-1(i)-345(w)-1(zi\\246\\252a)-346(dac)27(h)]TJ 0 -13.549 Td[(ze)-360(sto)-28(d)1(o\\252y)-359(i)-358(p)-28(on)1(ios)-1(\\252a)-358(w)-359(p)-28(ol)1(a)-359(o)-359(d)1(obre)-359(p)-27(\\363\\252)-359(sta)-56(j)1(ania,)-358(Win)1(c)-1(ior)1(k)28(om)-359(k)28(om)-1(in)-358(zw)27(al)1(i\\252a,)]TJ 0 -13.55 Td[(w)28(e)-304(m\\252)-1(y)1(nie)-303(ud)1(ar\\252a)-303(k)55(a)28(w)28(a\\252)-304(d)1(ran)1(ic)-1(o)28(w)28(e)-1(go)-303(dac)28(h)28(u,)-303(a)-303(co)-303(s)-1(tr)1(at)-303(p)-28(omniejszyc)27(h)1(!)-303(C)-1(o)-303(d)1(rze)-1(w)]TJ 0 -13.549 Td[(wy\\252ama\\252)-1(a)-335(w)-336(s)-1(ad)1(ac)27(h)-335(i)-336(b)-27(orac)27(h)1(!)-336(Na)-336(wielki)1(e)-1(j)-335(dr)1(o)-28(dze)-336(w)-1(y)1(rw)28(a\\252)-1(a)-335(c)-1(osik)-336(ze)-336(dw)28(adzie\\261)-1(cia)]TJ 0 -13.549 Td[(top)-27(oli,)-333(\\273e)-334(pad)1(\\252y)-334(w)-333(p)-27(oprze)-1(k)-333(k)1(ie)-1(j)-333(t)1(e)-334(tru)1(p)28(y)-333(s)-1(r)1(o)-28(dze)-334(p)-27(om)-1(or)1(do)28(w)27(an)1(e)-334(i)-333(ob)-27(darte.)]TJ 27.879 -13.549 Td[(W)-366(t)1(e)-367(wiejn)1(e)-367(i)-365(wrz)-1(askli)1(w)27(e)-366(dn)1(i)-366(Lip)-27(ce)-367(b)29(y\\252y)-366(j)1(akb)28(y)-366(wymar\\252e;)-366(wic)28(h)28(ura)-365(h)28(ul)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-313(d)1(rogac)27(h)-312(z)-313(t)1(ak)55(\\241)-312(mo)-28(c)-1(\\241,)-312(\\273e)-313(kto)-312(s)-1(i\\246)-312(ino)-312(wyc)27(h)28(y)1(li\\252)-313(z)-312(c)27(ha\\252u)1(p)28(y)83(,)-312(wnet)-312(go)-313(p)1(rzyc)-1(ap)1(ia\\252a)]TJ 0 -13.55 Td[(za)-407(\\252eb)-406(i)-407(w)28(ali\\252a,)-406(gdzie)-407(p)-27(opad)1(\\252o)-407({)-406(w)-407(r)1(o)27(wy)84(,)-406(o)-407(d)1(rz)-1(ew)28(a,)-407(n)1(a)-407(p)1(\\252ot)28(y)-407(ciepa\\252a,)-406(a)-407(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(Ja\\261k)55(a)-269(Pr)1(z)-1(ew)-1(r)1(otnego)-270(zwia\\252a)-270(z)-270(mos)-1(tu)-269(d)1(o)-270(sta)27(wu)1(,)-270(\\273e)-270(ledwie)-270(s)-1(i)1(\\246)-270(c)27(h\\252op)1(ak)-270(wygr)1(am)-1(ol)1(i\\252,)]TJ 0 -13.549 Td[(a)-353(d\\246\\252)-1(a)-353(w)28(c)-1(i\\241\\273,)-353(s)-1(y)1(pa\\252a)-354(p)1(iaskiem)-354(i)-353(nios\\252a)-354(ga\\252\\246z)-1(i)1(e)-1(,)-353(wi\\363ry)84(,)-353(s)-1(n)1(opki)-353(z)-354(d)1(ac)27(h)1(\\363)27(w,)-353(cz)-1(ase)-1(m)]TJ 0 -13.549 Td[(i)-437(wierzc)27(h\\363\\252)-437(p)-27(omniejsz)-1(y)84(,)-437(\\273e)-438(lec)-1(i)1(a\\252y)-437(w)-438(k)1(urza)28(wie)-438(n)1(ib)28(y)-437(te)-437(pt)1(as)-1(zys)-1(k)56(a)-437(rozgoni)1(one)-437(i)]TJ 0 -13.549 Td[(t\\252uk)1(\\252y)-334(si\\246)-334(o)-333(\\261c)-1(ian)29(y)83(,)-333(w)28(e)-334(\\261)-1(wiat)-333(gn)1(a\\252)-1(y)1(!)]TJ 27.879 -13.549 Td[(Na)-56(j)1(s)-1(t)1(ars)-1(i)-333(l)1(udzie)-334(n)1(ie)-334(b)1(ac)-1(zyli)-333(tak)-333(sw)27(ar)1(liwyc)27(h)-333(i)-333(u)1(przykr)1(z)-1(on)29(yc)27(h)-333(wiatr)1(\\363)27(w.)]TJ 0 -13.55 Td[(Gn)1(ie)-1(t)1(li)-280(s)-1(i\\246)-280(te)-1(\\273)-280(p)-28(o)-280(z)-1(ad)1(ymion)28(yc)28(h)-280(c)27(h)1(a\\252)-1(u)1(pac)28(h)-280(i)-280(s)-1(w)28(arzyli)-280(z)-281(c)27(k)1(no\\261c)-1(i)-280(n)1(ie)-1(ma\\252o,)-280(b)-28(o)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273k)28(o)-238(b)28(y\\252o)-239(n)1(os)-1(a)-238(p)-27(ok)56(az)-1(a\\242)-239(za)-238(w)27(\\246gie)-1(\\252)-238(,)-238(t)28(yla)-238(\\273)-1(e)-238(niec)-1(i)1(e)-1(rp)1(liwsz)-1(e)-239(k)28(ob)1(iet)27(y)-238(p)1(rze)-1(b)1(ie)-1(r)1(a\\252y)-238(s)-1(i\\246)]TJ 0 -13.549 Td[(raz)-282(w)-283(r)1(az)-283(c)27(h)29(y\\252kiem)-283(p)-27(o)-28(d)-282(p)1(\\252otam)-1(i)1(,)-282(nib)29(y)-282(to)-282(z)-283(k)56(\\241dziel\\241)-282(s)-1(z\\252y)-282(do)-282(ku)1(m)-283(a)-282(g\\252\\363)28(w)-1(n)1(ie,)-282(b)28(yc)27(h)]TJ 0 -13.549 Td[(p)-27(om)-1(l)1(e)-1(\\242)-281(oz)-1(orami)-281(a)-281(n)1(a)27(wyr)1(z)-1(ek)56(a\\242)-1(;)-281(c)28(h\\252op)28(y)-281(za\\261)-282(m\\252\\363)-28(ci\\252y)-281(z)-1(a)28(wzi\\246)-1(cie,)-281(s)-1(p)-27(oza)-281(przyw)28(art)28(yc)27(h)]TJ 0 -13.549 Td[(wr\\363tn)1(i)-369(sto)-28(d)1(\\363\\252)-369(b)1(i\\252y)-369(cep)28(y)-368(o)-28(d)-368(ran)1(a)-369(d)1(o)-369(p)-27(\\363\\271)-1(n)1(e)-1(go)-368(wie)-1(czora,)-368(m)-1(r)1(\\363z)-369(o)28(w)27(arzy\\252)-368(z)-1(b)-27(o\\273)-1(e.)-368(to)]TJ 0 -13.55 Td[(\\252ac)-1(n)1(iej)-233(si\\246)-233(\\252usz)-1(cz)-1(y)1(\\252o,)-233(a)-233(i)1(no)-233(n)1(a)-233(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzu,)-232(kiej)-233(wic)28(h)28(ur)1(a)-233(nieco)-233(fol)1(go)27(w)28(a\\252a,)-233(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(z)-334(p)1(arobk)28(\\363)28(w)-333(prze)-1(m)28(yk)56(a\\252)-334(si\\246)-334(z)-333(\\242)-1(wiar)1(tk)55(\\241)-333(j)1(ak)55(\\241)-333(do)-333(k)56(arcz)-1(m)28(y)83(.)]TJ\nET\nendstream\nendobj\n571 0 obj <<\n/Type /Page\n/Contents 572 0 R\n/Resources 570 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n570 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n576 0 obj <<\n/Length 9932      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(176)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(A)-453(wic)27(h)1(ry)-453(w)28(c)-1(i\\241\\273)-453(jedn)1(ak)28(o)-454(wia\\252y)-453(i)-453(gr)1(yz)-1(\\252y)-453(mroze)-1(m)-453(c)-1(or)1(az)-454(kr)1(z)-1(ep)-28(ciej,)-453(\\273e)-454(ju)1(\\273)]TJ -27.879 -13.549 Td[(o)-28(d)-406(t)1(e)-1(j)-406(wiejb)29(y)-406(p)-28(ozam)-1(ar)1(z)-1(a\\252y)-406(rzec)-1(zki)-406(i)-406(s)-1(t)1(rugi)1(,)-406(bagna)-406(st\\246)-1(\\273a\\252y)83(,)-406(sta)28(w)-407(n)1(a)28(w)27(et)-406(p)-28(okr)1(y\\252)]TJ 0 -13.549 Td[(si\\246)-352(p)1(rze)-1(j)1(rzys)-1(t)28(ym,)-351(mo)-28(d)1(rym)-351(pr)1(a)28(w)-1(i)1(e)-352(lo)-27(dem)-1(,)-350(t)27(y)1(le)-351(\\273)-1(e)-351(ino)-351(p)1(rzy)-351(mo\\261)-1(cie,)-351(gdzie)-351(g\\252\\246)-1(b)1(ie)-1(j)]TJ 0 -13.549 Td[(b)28(y\\252o,)-323(w)28(o)-28(da)-323(si\\246)-324(jesz)-1(cz)-1(e)-324(b)1(ur)1(z)-1(y\\252a)-323(i)-323(ni)1(e)-324(da)28(w)27(a\\252a,)-323(ale)-323(brzegi)-324(l)1(e)-1(\\273a\\252y)-323(ju\\273)-323(s)-1(ku)1(te)-324(n)1(a)-324(mo)-28(c,)]TJ 0 -13.549 Td[(\\273e)-334(trze)-1(b)1(a)-334(b)29(y\\252o)-334(p)1(rzyr\\246ble)-333(c)-1(i\\241\\242)-333(dla)-333(w)28(o)-28(dop)-27(o)-56(j)1(\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(Dop)1(ie)-1(r)1(o)-334(p)1(rze)-1(d)-333(sam\\241)-334(\\261wi\\246)-1(t\\241)-333(\\212ucj\\241)-333(p)1(rz)-1(y)1(s)-1(z\\252a)-334(o)-27(dmiana.)]TJ 0 -13.549 Td[(Mr)1(\\363z)-446(sfol\\273a\\252)-445(i)-445(o)-28(cie)-1(p)1(li\\252o)-445(si\\246)-446(zdzie)-1(b)1(k)28(o,)-445(wic)27(h)1(ry)-445(j)1(akb)28(y)-445(zdyc)28(ha\\252y)84(,)-445(b)-28(o)-445(in)1(o)-445(o)-28(d)]TJ -27.879 -13.549 Td[(cz)-1(asu)-236(do)-236(c)-1(zas)-1(u)-236(p)1(rze)-1(d)1(m)27(uc)28(hn)1(\\246)-1(\\252y)-236(\\261)-1(wiat,)-236(ale)-236(ju\\273)-236(m)-1(i\\246tsz)-1(e)-237(i)-236(ni)1(e)-237(tak)-236(s)-1(w)28(arliw)28(e,)-237(n)1(ieb)-28(o)-236(z)-1(a\\261)]TJ 0 -13.549 Td[(si\\246)-351(w)-1(y)1(r\\363)28(w)-1(n)1(a\\252o)-351(kieb)28(y)-350(to)-351(p)-27(ole)-351(z)-1(b)1(ron)1(o)27(w)28(ane,)-351(a)-350(p)-28(okr)1(yte)-351(wielgac)27(hn)1(\\241)-351(siw)28(\\241,)-351(zgrz)-1(ebn)1(\\241)]TJ 0 -13.549 Td[(p\\252ac)28(h)28(t\\241,)-267(a)-268(tak)-267(ni)1(s)-1(k)28(o)-267(s)-1(i\\246)-268(op)1(u\\261c)-1(i)1(\\252o,)-268(i)1(\\273)-268(jakb)28(y)-267(si\\246)-268(na)-267(pr)1(z)-1(yd)1(ro\\273n)28(yc)27(h)-267(t)1(op)-28(olac)28(h)-267(w)-1(spar)1(\\252o.)]TJ 0 -13.549 Td[(Ale)-334(p)-27(os\\246)-1(p)1(nie)-333(b)28(y\\252o,)-333(s)-1(zaro)-333(i)-333(g\\252uc)27(h)1(o.)]TJ 27.879 -13.55 Td[(A)-422(sk)28(oro)-422(jeno)-422(pr)1(z)-1(edzw)27(on)1(ili)-422(n)1(a)-422(p)-28(o\\252u)1(dn)1(ie)-1(,)-422(zmro)-28(cz)-1(a\\252o)-422(si\\246)-423(n)1(ie)-1(co)-422(i)-422(j\\241\\252)-422(pad)1(a\\242)]TJ -27.879 -13.549 Td[(\\261nieg)-365(du)1(\\273)-1(ymi)-365(p)1(\\252atam)-1(i)1(,)-365(a)-365(sypa\\252)-365(g\\246s)-1(t)28(y)84(,)-365(b)-27(o)-365(w)-1(n)1(e)-1(t)-365(op)1(ierzy\\252)-365(w)-1(szys)-1(tk)1(ie)-366(d)1(rze)-1(w)28(a)-365(i)-365(wy-)]TJ 0 -13.549 Td[(ni)1(os)-1(\\252o\\261c)-1(i.)]TJ 27.879 -13.549 Td[(No)-28(c)-294(si\\246)-294(ryc)28(hlej)-293(z)-1(r)1(obi\\252a,)-293(ale)-294(\\261nieg)-294(n)1(ie)-294(pr)1(z)-1(es)-1(ta)28(w)28(a\\252,)-294(sypa\\252)-293(c)-1(or)1(az)-294(g\\246)-1(\\261c)-1(iej,)-293(suc)27(h)1(-)]TJ -27.879 -13.549 Td[(sz)-1(y)-333(ni)1(e)-1(co)-334(a)-333(sypk)1(i,)-333(i)-334(t)1(ak)-334(j)1(u\\273)-333(prze)-1(z)-333(c)-1(a\\252\\241)-333(no)-28(c)-333(pad)1(a\\252)-1(.)]TJ 27.879 -13.55 Td[(Na)-361(\\261)-1(witan)1(iu)-361(b)28(y\\252o)-361(ju\\273)-361(\\261)-1(n)1(ie)-1(gu)-361(n)1(a)-362(d)1(obre)-362(t)1(rz)-1(y)-361(p)1(i\\246)-1(d)1(z)-1(i)1(e)-1(,)-361(do)-361(c)-1(n)1(a)-362(p)1(rzy)28(okry\\252)-361(k)28(o-)]TJ -27.879 -13.549 Td[(\\273uc)27(h)1(e)-1(m)-389(ziem)-1(i)1(\\246)-389(i)-389(p)1(rze)-1(s\\252oni\\252)-388(\\261)-1(wiat)-388(c)-1(a\\252y)-388(m)-1(o)-27(dra)28(w)28(\\241)-389(b)1(ia\\252no\\261c)-1(i)1(\\241,)-389(a)-388(le)-1(cia\\252)-388(w)27(ci\\241\\273)-1(,)-388(b)-27(e)-1(z)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(t)1(anku)1(.)]TJ 27.879 -13.549 Td[(T)83(ak)56(a)-432(c)-1(i)1(c)27(ho\\261\\242)-433(p)1(ad\\252a)-432(na)-432(ziem)-1(i)1(\\246)-1(,)-432(\\273e)-433(an)1(i)-432(jeden)-432(p)-27(o)28(w)-1(i)1(e)-1(w)-432(nie)-432(z)-1(ad)1(rga\\252,)-432(an)1(i)-432(je-)]TJ -27.879 -13.549 Td[(den)-321(d\\271wi\\246)-1(k)-321(si\\246)-322(nie)-322(p)1(rze)-1(d)1(z)-1(i)1(e)-1(ra\\252)-321(ws)-1(kr)1(o\\261)-322(t)27(y)1(c)27(h)-321(s)-1(p)1(\\252yw)28(a)-56(j\\241cyc)28(h)-322(p)1(uc)28(h\\363)28(w,)-322(n)1(ic)-1(,)-321(zam)-1(i)1(lk\\252o)]TJ 0 -13.55 Td[(ws)-1(zystk)28(o,)-419(og\\252uc)28(h\\252o,)-419(j)1(akb)28(y)-419(p)1(rz)-1(ed)-419(cud)1(e)-1(m)-419(stan\\246\\252o)-419(i)-419(pr)1(z)-1(yc)28(h)28(ylon)1(e)-420(n)1(ie)-1(co)-419(zas)-1(\\252uc)28(ha-)]TJ 0 -13.549 Td[(\\252o)-379(si\\246)-379(u)1(ro)-28(cz)-1(y\\261cie)-379(w)-379(t)28(ym)-379(ledwie)-379(wycz)-1(u)1(t)28(ym)-379(sz)-1(ele\\261)-1(cie)-1(,)-378(w)-379(t)28(ym)-379(l)1(o)-28(c)-1(i)1(e)-379(c)-1(ic)28(h)28(ym,)-378(w)-379(te)-1(j)]TJ 0 -13.549 Td[(bi)1(a\\252o\\261)-1(ci)-333(m)-1(ar)1(t)27(w)28(ej,)-333(rozdrgan)1(e)-1(j)-332(i)-334(op)1(ada)-55(j\\241ce)-1(j)-333(n)1(ieustann)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Bia\\252a)28(w)27(a)-502(\\242ma)-502(si\\246)-502(c)-1(zyn)1(i\\252a,)-502(r)1(os)-1(\\252a,)-501(s)-1(ta)28(w)28(a\\252a;)-502(b)1(ia\\252y)83(,)-501(m)-1(i)1(gotliwy)84(,)-502(n)1(ie)-1(p)-27(ok)56(alan)28(y)]TJ -27.879 -13.549 Td[(br)1(z)-1(ask)-453(syp)1(a\\252)-453(s)-1(i)1(\\246)-454(b)29(y)-453(ta)-452(w)27(e\\252na)-453(n)1(a)-56(j)1(bielsz)-1(a,)-452(na)-55(jmi\\246ks)-1(za,)-453(n)1(a)-56(j)1(\\261)-1(li)1(c)-1(zniejsza;)-453(su\\252y)-452(s)-1(i\\246)]TJ 0 -13.55 Td[(g\\246s)-1(t)28(w)28(\\241)-238(n)1(ieprze)-1(l)1(ic)-1(zon\\241)-237(b)28(y)-237(ta)-237(zam)-1(ar)1(z)-1(\\252a)-237(p)-27(o\\261)-1(wiata,)-237(j)1(ak)28(ob)28(y)-237(ws)-1(zys)-1(t)1(kie)-238(gwiez)-1(d)1(ne)-237(\\261)-1(wia-)]TJ 0 -13.549 Td[(t\\252o\\261c)-1(i,)-243(z)-1(ak)1(rze)-1(p)1(\\252)-1(y)-243(w)-244(sz)-1(r)1(on)-243(i)-244(starte)-244(lot)1(e)-1(m)-244(p)-27(o)-28(dn)1(iebn)28(y)1(m)-244(na)-244(p)1(ro)-28(c)28(h,)-243(\\261)-1(wiat)-243(z)-1(asyp)28(y)1(w)27(a\\252y)84(,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252y)-229(s)-1(i)1(\\246)-230(ry)1(c)27(h\\252o)-229(b)-27(ory)84(,)-229(p)1(rze)-1(p)1(ad\\252y)-229(p)-27(ola,)-229(\\273e)-230(an)1(i)-229(oki)1(e)-1(m)-229(uc)28(h)28(wyc)-1(i)1(\\252)-1(,)-228(z)-1(gi)1(n\\246)-1(\\252y)-228(drogi)1(,)]TJ 0 -13.549 Td[(roztopi)1(\\252a)-286(s)-1(i)1(\\246)-286(w)-1(i)1(e)-1(\\261)-286(ca\\252a)-286(i)-285(w)-1(si\\241kn)1(\\246)-1(\\252a)-285(w)-286(t\\246)-286(bia\\252o\\261\\242)-286(c)-1(u)1(dn)1(\\241,)-286(w)-286(t)1(e)-1(n)-285(o\\261le)-1(p)1(ia)-56(j)1(\\241c)-1(y)-285(tu)1(m)-1(an)1(,)]TJ 0 -13.549 Td[(a)-320(w)-320(k)28(o\\253)1(c)-1(u)-319(ni)1(e)-321(b)29(y\\252o)-320(ju)1(\\273)-320(dla)-320(o)-27(c)-1(z\\363)28(w)-320(nic)-320(widn)1(e)-1(,)-319(pr)1(\\363)-28(c)-1(z)-320(t)28(yc)28(h)-320(stru)1(g)-320(\\261)-1(n)1(ie\\273)-1(ystego)-320(p)28(y\\252u)1(,)]TJ 0 -13.55 Td[(sp\\252yw)28(a)-56(j)1(\\241c)-1(ego)-330(tak)-329(cic)27(h)1(o,)-329(tak)-329(r\\363)28(wno,)-329(tak)-329(s\\252)-1(o)-27(dk)28(o,)-329(kiej)-329(te)-330(wi\\261ni)1(o)27(w)28(e)-330(okwiat)28(y)-329(w)-329(no)-28(c)]TJ 0 -13.549 Td[(mie)-1(si\\246c)-1(zn\\241.)]TJ 27.879 -13.549 Td[(Na)-292(tr)1(z)-1(y)-291(kroki)-291(nie)-292(d)1(os)-1(tr)1(z)-1(eg\\252)-292(c)27(h)1(a\\252)-1(u)1(p)28(y)-292(n)1(i)-292(d)1(rze)-1(w)28(a,)-292(n)1(i)-292(p\\252otu)-291(ni)-291(c)-1(zyj)1(e)-1(j)-291(p)-28(osta)28(wy)83(,)]TJ -27.879 -13.549 Td[(in)1(o)-362(g\\252os)-1(y)-362(lu)1(dzkie)-362(lata\\252y)-362(w)-362(tej)-362(bi)1(e)-1(li)-361(kiej)-362(os\\252)-1(ab)1(le)-362(m)-1(ot)28(yl)1(e)-1(,)-362(a)-362(m)28(yln)1(ie)-1(,)-361(b)-28(o)-362(n)1(ie)-363(wiad)1(a)]TJ 0 -13.549 Td[(sk)55(\\241d)-333(p)1(\\252yn\\241ce,)-334(d)1(ok)56(\\241d)-333({)-334(a)-333(coraz)-334(s\\252abiej)-333(s)-1(i)1(\\246)-334(trze)-1(p)-27(ota\\252y)84(,)-334(coraz)-333(c)-1(isz)-1(ej.)1(..)]TJ 27.879 -13.549 Td[(I)-439(tak)-439(sypa\\252o)-439(d)1(w)27(a)-439(d)1(ni)-439(i)-438(dwie)-439(no)-28(ce)-1(,)-439(\\273e)-439(w)-440(k)28(o\\253)1(c)-1(u)-438(z)-1(asypa\\252o)-439(c)28(ha\\252up)29(y)83(,)-439(i)1(\\273)-440(si\\246)]TJ -27.879 -13.55 Td[(wz)-1(n)1(os)-1(i)1(\\252)-1(y)-281(jak)28(o)-282(te)-282(\\261)-1(n)1(iego)27(w)28(e)-283(k)28(op)1(ice)-1(,)-282(b)1(uc)28(ha)-56(j)1(\\241c)-1(e)-282(br)1(ud)1(n)28(ymi)-282(k)28(o\\252tun)1(ami)-282(dym\\363)28(w,)-282(dr)1(ogi)]TJ 0 -13.549 Td[(si\\246)-301(wyr\\363)28(wna\\252y)-300(z)-301(p)-27(olami,)-300(s)-1(ad)1(y)-300(b)28(y\\252y)-300(p)-28(e\\252ne)-301(p)-27(o)-300(w)-1(r)1(\\246)-1(b)29(y)-301(p)1(\\252ot\\363)28(w)-1(,)-300(sta)28(w)-301(ca\\252kie)-1(m)-300(z)-1(gi)1(n\\241\\252)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-238(na)28(w)28(a\\252\\241)-1(,)-238(b)1(ia\\252a)-239(r)1(\\363)27(wn)1(ia,)-238(nieob)-55(j\\246ta,)-238(c)27(h\\252o)-28(d)1(na,)-238(ni)1(e)-1(p)1(rze)-1(n)1(ikni)1(ona,)-238(pu)1(s)-1(zysta)-239(i)-238(cudn)1(a)]TJ 0 -13.549 Td[(p)-27(okry\\252a)-309(zie)-1(mi\\246,)-309(a)-309(\\261)-1(n)1(ie)-1(g)-309(w)28(c)-1(i\\241\\273)-309(pad)1(a\\252)-1(,)-309(t)28(yl)1(k)28(o)-310(\\273e)-310(j)1(u\\273)-310(coraz)-309(s)-1(u)1(c)27(hsz)-1(y)-309(i)-309(r)1(z)-1(edsz)-1(y)84(,)-309(to)-309(no-)]TJ 0 -13.549 Td[(cam)-1(i)-304(p)1(rze)-1(d)1(z)-1(iera\\252y)-304(si\\246)-304(gw)-1(i)1(e)-1(zdn)1(e)-305(migot)28(y)83(,)-303(a)-305(w)-304(d)1(z)-1(ie\\253)-304(mo)-28(d)1(rza\\252)-1(o)-304(n)1(ieb)-28(o)-304(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)]TJ 0 -13.55 Td[(ws)-1(k)1(r\\363\\261)-255(t)28(yc)28(h)-254(p)-27(olatuj)1(\\241c)-1(y)1(c)27(h)-254(p)1(a)-1(\\271dzierzy)-254(bia\\252yc)28(h)-254(i)-254(p)-27(o)27(wietrze)-255(sta)28(w)27(a\\252o)-254(si\\246)-255(s\\252uc)27(h)1(liwsz)-1(e,)]TJ 0 -13.549 Td[(g\\252os)-1(y)-320(dar\\252y)-321(si\\246)-322(ostro)-321(p)1(rze)-1(z)-321(g\\246)-1(st)28(w)27(\\246,)-321(ra\\271no,)-321(h)28(u)1(kli)1(w)-1(i)1(e)-1(.)-321(Wi)1(e)-1(\\261)-321(jakb)28(y)-320(s)-1(i\\246)-321(pr)1(z)-1(ebu)1(dzi\\252a,)]TJ\nET\nendstream\nendobj\n575 0 obj <<\n/Type /Page\n/Contents 576 0 R\n/Resources 574 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n574 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n579 0 obj <<\n/Length 9638      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(177)]TJ -358.232 -35.866 Td[(ru)1(c)27(h)-315(p)-27(o)28(w)-1(sta\\252,)-315(kto)-315(ni)1(e)-1(kto)-315(wyj)1(e)-1(\\273d\\273a\\252)-316(saniami,)-315(ale)-315(z)-1(a)28(wraca\\252)-316(r)1(yc)27(h\\252o,)-315(b)-27(o)-315(drogi)-315(b)29(y\\252y)]TJ 0 -13.549 Td[(ni)1(e)-243(d)1(o)-242(pr)1(z)-1(eb)28(ycia;)-242(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-242(p)1(rz)-1(ek)28(op)28(yw)28(ali)-241(\\261)-1(cie)-1(\\273ki)-242(mi\\246dzy)-242(c)28(ha\\252up)1(am)-1(i)1(,)-242(o)-28(d)1(w)27(alal)1(i)]TJ 0 -13.549 Td[(\\261niegi)-276(spr)1(z)-1(ed)-275(dr)1(z)-1(wi,)-275(wywie)-1(r)1(ali)-275(na)-275(\\261)-1(cie)-1(\\273a)-56(j)-275(ob)-27(ory)84(,)-275(rado\\261\\242)-276(pr)1(z)-1(ejmo)28(w)27(a\\252a)-275(w)-1(szys)-1(tk)1(ic)27(h)1(,)]TJ 0 -13.549 Td[(a)-284(ju\\273)-284(dzie)-1(ci)-284(to)-285(szala\\252y)-285(z)-284(ucie)-1(c)28(h)28(y)83(,)-284(p)1(s)-1(y)-284(naszc)-1(ze)-1(ki)1(w)27(a\\252y)-284(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-1(,)-284(p)-27(olizyw)27(a\\252y)-284(\\261niegi)-284(i)]TJ 0 -13.549 Td[(gani)1(a\\252y)-312(ws)-1(p)-27(\\363ln)1(ie)-312(z)-313(c)28(h\\252opak)56(ami.)-311(Z)-1(ar)1(oi\\252o)-312(si\\246)-312(na)-312(d)1(rogac)27(h)1(,)-312(wrzas)-1(k)1(i)-312(si\\246)-312(p)-28(o)-27(dni)1(e)-1(s\\252y)-312(w)]TJ 0 -13.55 Td[(op\\252otk)56(ac)28(h,)-274(krzyc)-1(ze)-1(l)1(i)-275(a)-274(bili)-274(si\\246)-275(\\261)-1(n)1(ie)-1(gu)1(\\252k)56(am)-1(i,)-274(a)-275(tar)1(z)-1(al)1(i)-275(w)-275(mi\\246kkim,)-274(puszys)-1(t)28(ym)-275(\\261ni)1(e)-1(-)]TJ 0 -13.549 Td[(gu,)-329(a)-329(ba\\252w)28(an)28(y)-329(okru)1(tne)-330(cz)-1(y)1(nil)1(i,)-329(a)-330(sanec)-1(zk)56(am)-1(i)-329(si\\246)-330(ci\\241)-28(gali,)-329(\\273e)-330(te)-330(ic)28(h)-329(piski)-329(ucies)-1(zne)]TJ 0 -13.549 Td[(i)-342(p)1(rze)-1(gon)28(y)-341(z)-1(ap)-27(e\\252ni\\252y)-342(wie\\261)-342(c)-1(a\\252\\241,)-341(a\\273)-343(Ro)-28(c)28(ho)-342(zapr)1(z)-1(es)-1(ta\\252)-342(n)1(aucz)-1(an)1(ia)-342(w)-342(ten)-341(dzie)-1(\\253)1(,)-342(b)-27(o)]TJ 0 -13.549 Td[(ni)1(e)-334(m\\363g\\252)-334(ni)1(k)28(og\\363)-56(j)-333(u)1(trzyma\\242)-334(pr)1(z)-1(y)-333(lem)-1(en)28(tar)1(z)-1(u)1(.)]TJ 27.879 -13.549 Td[(Co\\261)-431(trze)-1(cie)-1(go)-430(dn)1(ia,)-431(o)-431(sam)27(y)1(m)-431(z)-1(mierz)-1(c)28(h)28(u,)-430(\\261)-1(n)1(ieg)-431(pr)1(z)-1(es)-1(ta\\252)-430(pada\\242,)-431(p)1(r\\363sz)-1(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-349(n)1(iekiedy)84(,)-348(ale)-349(tak)-348(jak)1(b)28(y)-348(kto)-348(w)27(or)1(e)-1(k)-348(z)-349(m\\241ki)-348(wytr)1(z)-1(ep)28(yw)28(a\\252)-349(n)1(ad)-348(\\261)-1(wiat)1(e)-1(m,)-348(\\273)-1(e)]TJ 0 -13.55 Td[(i)-346(zna\\242)-346(nie)-346(b)28(y\\252o,)-346(ale)-346(ni)1(e)-1(b)-27(o)-346(s)-1(p)-27(o)-28(c)27(h)1(m)27(u)1(rn)1(ia\\252o,)-346(wron)28(y)-346(t\\252u)1(k\\252y)-346(s)-1(i)1(\\246)-347(k)28(o\\252o)-346(dom\\363)28(w)-347(i)-345(przy-)]TJ 0 -13.549 Td[(siada\\252y)-314(na)-314(dr)1(ogac)27(h)1(,)-315(a)-314(n)1(o)-28(c)-315(si\\246)-315(z)-1(aci\\241)-28(gn)1(\\246)-1(\\252a)-314(b)-27(e)-1(zgwie)-1(zdn)1(a,)-314(o\\252)-1(o)28(wian)1(a,)-314(t)27(y)1(m)-1(i)-314(\\261niegami)]TJ 0 -13.549 Td[(omro)-28(cz)-1(on)29(ym)-1(i)-316(roz)-1(b)1(ielona,)-317(a)-317(tak)56(a)-317(cic)27(h)1(a,)-317(z)-1(ak)1(rz)-1(ep\\252a)-317(i)-317(mart)28(w)28(a,)-317(jak)1(b)28(y)-317(ju)1(\\273)-318(ca\\252kiem)-318(z)]TJ 0 -13.549 Td[(ws)-1(ze)-1(l)1(kiej)-333(m)-1(o)-27(c)-1(y)-333(wyzuta.)]TJ 27.879 -13.549 Td[({)-319(Cho)-28(\\242b)28(y)-319(i)-319(ten)-319(n)1(a)-56(j)1(le)-1(k)28(ciejsz)-1(y)-319(wiaterek,)-319(a)-319(zakur)1(ki)-319(b)-27(\\246)-1(d)1(\\241)-319({)-320(sze)-1(p)1(n\\241\\252)-319(ran)1(kiem)-1(,)]TJ -27.879 -13.55 Td[(na)-333(d)1(rugi)-333(d)1(z)-1(ie\\253,)-333(stary)-333(Bylica)-333(w)-1(y)1(z)-1(iera)-55(j\\241c)-334(p)1(rze)-1(z)-334(ok)1(ie)-1(n)1(k)28(o.)]TJ 27.879 -13.549 Td[({)-485(Nie)-1(c)28(h)-485(ta)-485(b)-28(\\246d\\241,)-485(zar\\363)28(wno)-485(m)-1(i)-485(j)1(e)-1(d)1(no!)-485({)-485(bu)1(rkn)1(\\241\\252)-486(An)28(tek)-485(d\\271wiga)-56(j)1(\\241c)-486(s)-1(i)1(\\246)-486(z)]TJ -27.879 -13.549 Td[(p)-27(o\\261)-1(cieli.)]TJ 27.879 -13.549 Td[(Hank)56(a)-439(z)-1(a\\273e)-1(ga\\252a)-440(ogi)1(e)-1(\\253)-439(w)-440(k)28(omin)1(ie)-440(i)-440(wyj)1(rza\\252)-1(a)-439(pr)1(z)-1(ed)-439(s)-1(ie\\253.)-439(Wcz)-1(e\\261)-1(n)1(ie)-440(b)28(y\\252o,)]TJ -27.879 -13.549 Td[(k)28(ogut)28(y)-245(pi)1(a\\252)-1(y)-245(p)-27(o)-246(ws)-1(i)1(,)-246(mrok)-245(le)-1(\\273a\\252)-246(gr)1(ub)28(y)-245(jes)-1(zc)-1(ze,)-246(j)1(akb)28(y)-245(kto)-246(w)28(apn)1(o)-246(zm)-1(iesz)-1(a\\252)-246(n)1(a)-246(p)-27(o\\252y)]TJ 0 -13.55 Td[(z)-365(s)-1(ad)1(z)-1(\\241)-364(i)-365(p)1(rzytrz\\241s)-1(n)1(\\241\\252)-365(\\261w)-1(i)1(at,)-365(\\273e)-365(nie)-365(r)1(oz)-1(ez)-1(n)1(a\\252)-365(ni)-364(dr)1(z)-1(ew)-1(,)-364(ni)-364(c)27(h)1(a\\252up)1(,)-365(n)1(i)-365(d)1(ale)-1(k)28(o\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(in)1(o)-325(n)1(a)-325(ws)-1(c)28(ho)-28(d)1(z)-1(i)1(e)-325(tli\\252y)-324(s)-1(i)1(\\246)-325(brzaski)-325(n)1(ib)28(y)-324(te)-325(sp)-28(op)1(iela\\252e)-325(z)-1(ar)1(z)-1(ewia,)-325(a)-324(na)-324(z)-1(i)1(e)-1(mi)-324(le)-1(\\273a\\252a)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)-27(ok)56(a)-333(c)-1(ic)28(ho\\261\\242)-334(i)-333(c)27(h\\252\\363)-27(d)-333(s)-1(u)1(ro)28(wy)-334(wion)1(\\241\\252.)]TJ 27.879 -13.549 Td[(W)-414(izbi)1(e)-415(te\\273)-415(b)29(y\\252)-414(z)-1(i\\241b)-413(przenik)56(a)-56(j)1(\\241c)-1(y)84(,)-414(wilgotn)29(y)83(,)-414(a)-414(tak)-413(c)27(h)28(wytli)1(w)-1(y)84(,)-414(\\273e)-415(Han)1(k)55(a)]TJ -27.879 -13.549 Td[(wz)-1(u)1(\\252a)-383(tr)1(e)-1(p)29(y)-383(n)1(a)-382(b)-28(ose)-383(nogi)1(,)-382(w)-383(k)28(ominie)-382(le)-1(d)1(wie)-383(si\\246)-383(tli)1(\\252o,)-383(b)-27(o)-382(ja\\252o)28(w)27(co)28(w)27(a)-382(\\261w)-1(i)1(e)-1(\\273yz)-1(n)1(a)]TJ 0 -13.55 Td[(in)1(o)-374(trze)-1(sz)-1(cz)-1(a\\252a)-374(i)-373(dymi\\252a,)-374(a\\273)-374(Hank)56(a)-374(u\\261c)-1(i)1(bn)1(\\246)-1(\\252a)-374(dr)1(z)-1(aze)-1(g)-374(z)-374(jak)1(ie)-1(j)1(\\261)-375(d)1(e)-1(ski,)-373(to)-374(s)-1(\\252om)28(y)]TJ 0 -13.549 Td[(p)-27(o)-28(dt)28(yk)56(a\\252a,)-333(\\273)-1(e)-333(w)-1(r)1(e)-1(sz)-1(cie)-334(ga\\252\\246z)-1(i)1(e)-334(s)-1(i)1(\\246)-334(z)-1(a)-55(j\\246\\252y)-333(p\\252omie)-1(n)1(iem)-334(i)-333(roz\\261)-1(wietli\\252y)-333(n)1(ie)-1(co.)]TJ 27.879 -13.549 Td[({)-278(Nale)-1(cia\\252o)-278(go)-279(t)28(y)1(la,)-278(\\273)-1(e)-278(i)-279(n)1(a)-278(c)-1(a\\252\\241)-278(z)-1(im\\246)-279(starcz)-1(y)-278({)-278(zagada\\252)-278(z)-1(n)1(\\363)27(w)-278(s)-1(t)1(ary)-278(wyc)27(h)28(u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(uj\\241c)-309(s)-1(zybk)28(\\246,)-309(obro\\261ni)1(\\246)-1(t\\241)-309(z)-1(i)1(e)-1(lon)1(a)27(wym,)-309(gru)1(b)28(ym)-310(l)1(o)-28(dem)-1(,)-309(b)28(y)1(c)27(h)-309(w)-310(\\261wiat)-310(p)-27(op)1(atrz)-1(e\\242.)]TJ 27.879 -13.549 Td[(St)1(ars)-1(zy)-359(c)28(h\\252opak,)-358(kt\\363rem)27(u)-358(ju)1(\\273)-360(b)28(y)1(\\252o)-359(na)-359(cz)-1(w)28(art)28(y)-359(rok)1(,)-359(z)-1(acz)-1(\\241\\252)-359(c)28(hli)1(pa\\242)-359(w)-360(\\252\\363\\273-)]TJ -27.879 -13.55 Td[(ku)1(,)-348(a)-347(z)-348(dru)1(gie)-1(j)-347(stron)28(y)-347(d)1(o)-1(m)28(u,)-347(z)-348(mie)-1(sz)-1(k)56(an)1(ia)-348(S)1(tac)27(h)1(\\363)27(w,)-347(rozbrzmie)-1(w)28(a\\252y)-348(ostre)-348(g\\252osy)]TJ 0 -13.549 Td[(k\\252\\363tn)1(i,)-333(wyrze)-1(k)56(a\\253)-333(i)-333(pi)1(s)-1(ki)-333(d)1(z)-1(ieci\\253skie,)-333(i)-334(t)1(rz)-1(ask)56(anie)-333(drzwiami.)]TJ 27.879 -13.549 Td[({)-458(W)84(e)-1(r)1(onk)56(a)-458(s)-1(w)28(oim)-458(pacierze)-1(m)-458(dzie\\253)-458(zac)-1(zyna!)-457({)-458(s)-1(ze)-1(p)1(n\\241\\252)-458(u)1(r\\241)-28(gli)1(w)-1(i)1(e)-459(An)29(te)-1(k)]TJ -27.879 -13.549 Td[(okr)1(\\246)-1(ca)-56(j)1(\\241c)-334(nogi)-333(nagr)1(z)-1(an)29(ym)-1(i)-333(p)1(rze)-1(d)-333(k)28(omin)1(e)-1(m)-334(on)29(ucz)-1(k)56(ami.)]TJ 27.879 -13.549 Td[({)-282(Pr)1(z)-1(y)1(ucz)-1(y\\252a)-282(si\\246)-282(tra)-56(j)1(k)28(ota\\242,)-282(to)-282(i)-282(tr)1(a)-56(jk)28(o)-27(c)-1(ze)-1(,)-281(c)27(ho)-27(c)-1(ia)-282(n)1(ie)-282(p)-28(otr)1(z)-1(a,)-282(al)1(e)-283(to)-282(n)1(ie)-282(b)-28(ez)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261\\242,)-334(n)1(ie...)-333({)-333(j\\241k)56(a\\252)-334(cic)27(h)1(o)-333(s)-1(tar)1(y)83(.)]TJ 27.879 -13.55 Td[({)-471(A)-471(j)1(u\\261c)-1(i)-470({)-471(dziec)-1(isk)56(a)-471(te)-1(\\273)-471(t\\252u)1(c)-1(ze)-472(n)1(ie)-471(b)-28(ez)-471(z)-1(\\252o\\261\\242)-1(?...)-470(Ab)-28(o)-471(S)1(tac)27(h)1(o)28(w)-1(i)-470(nie)-471(da)]TJ -27.879 -13.549 Td[(dob)1(rego)-408(s\\252o)27(w)28(a,)-407(ino)-407(c)-1(i\\246giem)-408(h)28(u)1(rub)1(ur)1(u,)-407(jak)-407(na)-407(te)-1(go)-407(psa,)-408(to)-407(p)-27(e)-1(wni)1(e)-408(z)-408(dobr)1(o\\261)-1(ci?)]TJ 0 -13.549 Td[({)-356(m\\363)27(wi\\252a)-356(Han)1(k)56(a)-356(przykl)1(\\246)-1(k)56(a)-56(j)1(\\241c)-357(d)1(o)-356(k)28(o\\252ys)-1(k)1(i,)-356(b)28(y)-355(da\\242)-356(piersi)-356(m\\252o)-28(dsz)-1(em)27(u)1(,)-356(kt\\363r)1(e)-1(n)-355(te)-1(\\273)]TJ 0 -13.549 Td[(p)-27(op\\252akiw)28(a\\252)-334(a)-333(ku)1(lasam)-1(i)-333(grzeba\\252.)]TJ 27.879 -13.549 Td[({)-324(Ile?)-324({)-323(trz)-1(y)-323(n)1(ie)-1(d)1(z)-1(iele,)-324(j)1(ak)-324(u)-323(w)28(a)-56(j)1(u)-324(siedzim)27(y)-323(w)-324(c)27(h)1(a\\252up)1(ie)-1(,)-323(a)-324(to)-323(i)-324(d)1(z)-1(i)1(e)-1(\\253)-323(jeden)]TJ -27.879 -13.55 Td[(ob)28(y\\242)-256(si\\246)-256(n)1(ie)-256(ob)28(y\\252)-255(b)-27(e)-1(z)-256(wrzas)-1(k)28(\\363)28(w)-256(a)-255(bi)1(jat)28(yki)1(,)-256(a)-255(te)-1(go)-255(k\\252y\\271ni)1(e)-1(n)1(ia!)-256(P)1(ies)-256(to,)-255(nie)-256(k)28(ob)1(ieta!)]TJ 0 -13.549 Td[(A)-372(S)1(tac)27(h)1(o)-372(ciama)-56(j)1(da)-372(i)-371(p)-27(oz)-1(w)28(ala)-372(sobi)1(e)-372(k)28(o\\252ki)-372(cies)-1(a\\242)-372(n)1(a)-372(\\252bi)1(e)-1(,)-371(rob)1(i)-372(j)1(ak)-372(w)28(\\363\\252,)-371(a)-372(gorze)-1(j)]TJ\nET\nendstream\nendobj\n578 0 obj <<\n/Type /Page\n/Contents 579 0 R\n/Resources 577 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n577 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n582 0 obj <<\n/Length 9803      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(178)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ma)-334(o)-27(d)-333(psa.)]TJ 27.879 -13.549 Td[(St)1(ary)-254(s)-1(p)-27(o)-56(j)1(rza\\252)-255(l\\246kliwie,)-254(c)27(h)1(c)-1(ia\\252)-254(na)28(w)28(e)-1(t)-254(c)-1(o\\261)-255(r)1(z)-1(ec)-255(w)-255(ob)1(roni)1(e)-1(,)-254(gdy)-254(w\\252a\\261)-1(n)1(ie)-255(d)1(rz)-1(wi)]TJ -27.879 -13.549 Td[(si\\246)-254(ot)28(w)28(a)-1(r)1(\\252y)-253(o)-28(d)-253(sie)-1(n)1(i)-253(i)-253(Stac)28(ho)-253(wraz)-1(i)1(\\252)-254(g\\252o)28(w)27(\\246)-253(wraz)-254(z)-254(cepami,)-253(c)-1(o)-253(j)1(e)-254(ni\\363s\\252)-253(na)-253(ramieniu)1(.)]TJ 27.879 -13.549 Td[({)-402(An)28(te)-1(k)1(,)-402(c)27(hce)-1(sz)-403(i\\261\\242)-403(do)-402(m\\252o)-28(c)27(ki)1(?)-403(Or)1(ganista)-403(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-402(b)29(ym)-403(sobie)-403(d)1(obr)1(a\\252)]TJ -27.879 -13.549 Td[(k)28(ogo)-408(do)-408(j)1(\\246)-1(cz)-1(mieni)1(a,)-408(a)-408(s)-1(u)1(c)27(h)28(y)-408(i)-407(dobr)1(z)-1(e,)-408(letk)28(o)-408(s)-1(i)1(\\246)-409(otr)1(z)-1(askuj)1(e)-1(.)1(..)-408({)-408(nap)1(iera\\252)-408(m)-1(i)-407(s)-1(i\\246)]TJ 0 -13.55 Td[(Fil)1(ip,)-333(ale)-333(je\\273)-1(eli)-333(c)27(h)1(c)-1(es)-1(z...)-333(to)-333(ju)1(\\261)-1(ci,)-333(zar\\363b)-333(sobie...)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(w)28(e)-1(\\271cie)-334(Fil)1(ipa,)-333(j)1(a)-334(ta)-333(u)-333(organ)1(ist)28(y)-334(wyr)1(abia\\252)-333(ni)1(e)-334(b)-28(\\246d\\246.)]TJ 0 -13.549 Td[({)-333(T)-1(w)28(o)-56(j)1(a)-333(w)27(ola!)-333(P)28(an)29(u)-333(B)-1(ogu)-333(o)-27(dd)1(a)-56(j\\246.)]TJ 0 -13.549 Td[(Hank)56(a)-298(a\\273)-299(si\\246)-299(zerw)27(a\\252a)-298(na)-298(o)-28(d)1(p)-27(o)27(wied\\271)-298(An)28(tk)28(o)28(w)27(\\241,)-298(wnet)-298(jedn)1(ak)-298(pr)1(z)-1(yc)28(h)28(yli\\252a)-298(si\\246)]TJ -27.879 -13.549 Td[(i)-333(wtuli)1(\\252a)-334(g\\252o)28(w)27(\\246)-333(w)-334(k)28(olebk)28(\\246,)-333(b)28(y)-333(\\252e)-1(z)-334(n)1(ie)-334(p)-27(ok)56(az)-1(a\\242)-333(i)-334(t)1(e)-1(go)-333(s)-1(tr)1(apieni)1(a!)]TJ 27.879 -13.549 Td[({)-367(Jak\\273e)-1(,)-366(tak)55(a)-367(zima,)-367(tak)56(a)-367(s)-1(kr)1(z)-1(y)1(t)27(w)28(a,)-367(tak)56(a)-367(bi)1(e)-1(d)1(a,)-367(\\273)-1(e)-367(\\273)-1(yj)1(\\241)-367(jeno)-367(zie)-1(mn)1(iak)56(am)-1(i)]TJ -27.879 -13.55 Td[(ze)-430(sol\\241,)-429(gr)1(os)-1(za)-429(jedn)1(e)-1(go)-429(n)1(ie)-429(m)-1(a,)-428(a)-429(on)-429(r)1(obi\\242)-429(ni)1(e)-430(c)28(hce)-1(!)-429(Ca\\252e)-429(dn)1(ie)-430(p)1(rze)-1(siad)1(uje)-429(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-1(,)-403(pap)1(ieros)-1(y)-403(ku)1(rzy)-404(i)-403(du)1(m)-1(a!)-403(alb)-27(o)-404(zn\\363)28(w)-404(gani)1(a)-404(p)-27(o)-404(\\261w)-1(i)1(e)-1(cie,)-404(j)1(ak)-404(ten)-403(g\\252upi)1(,)]TJ 0 -13.549 Td[(za)-333(wiatrem)-333(c)27(h)28(yb)1(a!)-333(M\\363)-55(j)-332(B)-1(o\\273e)-1(,)-332(m)-1(\\363)-55(j)-333(Bo\\273e)-1(!)-332({)-333(j\\246k)55(a\\252a)-333(b)-27(ole\\261)-1(n)1(ie.)-333({)-333(Ju)1(\\273)-333(na)28(w)27(et)-333(Jan)1(kiel)]TJ 0 -13.549 Td[(ni)1(e)-308(c)27(h)1(c)-1(e)-308(b)-27(orgo)28(w)28(a\\242)-1(,)-307(kr)1(o)27(w)28(\\246)-308(pr)1(z)-1(y)1(jdzie)-308(spr)1(z)-1(eda\\242,)-307(c)-1(\\363\\273?)-1(.)1(.)-308(Up)1(ar\\252)-307(s)-1(i\\246)-307(to)-308(i)-307(sprzeda,)-307(a)-308(d)1(o)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)-350(s)-1(i\\246)-351(n)1(ie)-351(w)28(e)-1(\\271m)-1(i)1(e)-1(..)1(.)-351(Ju)1(\\261)-1(ci,)-350(pr)1(a)27(wd)1(a,)-351(\\273e)-351(m)27(u)-350(to)-350(i)-351(n)1(ij)1(ak)28(o)-351(na)-350(wyrob)-27(e)-1(k)-350(i\\261\\242,)-351(mar-)]TJ 0 -13.55 Td[(k)28(otn)1(o,)-326(al)1(e)-326(c)-1(o)-325(p)-27(o)-28(c)-1(z\\241\\242,)-326(co?)-326(\\233eb)28(y)-325(to)-325(ona)-325(c)27(h)1(\\252)-1(op)-27(em)-326(b)28(y\\252a,)-325(m\\363)-56(j)-325(Bo\\273e)-1(,)-325(ni)1(e)-326(\\273)-1(a\\252o)28(w)28(a\\252)-1(ab)29(y)]TJ 0 -13.549 Td[(pazur)1(\\363)28(w)-1(,)-447(a)-447(to)-447(c)27(ho)-27(\\242)-1(b)28(y)-447(ku)1(lasy)-448(p)-27(o)-447(\\252ok)28(c)-1(ie)-447(urob)1(i\\242)-1(,)-447(b)29(yc)27(h)-447(in)1(o)-448(k)1(ro)28(wy)-448(n)1(ie)-448(spr)1(z)-1(eda\\242,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-299(ino)-299(z)-1(wies)-1(n)28(y)-299(do)-27(c)-1(ze)-1(k)56(a\\242,)-300(zim\\246)-300(prze)-1(tr)1(z)-1(y)1(m)-1(a\\242...)-299(A1e)-300(c)-1(o)-299(ja)-300(u)1(rad)1(z)-1(\\246,)-300(b)1(ie)-1(d)1(na,)-299(c)-1(o?..)1(.)]TJ 0 -13.549 Td[({)-333(Roz)-1(skrzypi)1(a\\252a)-334(si\\246)-334(j)1(e)-1(j)-333(tak)-333(d)1(usz)-1(a,)-333(\\273e)-334(rad)1(y)-333(da\\242)-334(sobie)-333(nie)-334(mog\\252a.)]TJ 27.879 -13.549 Td[(Wzi\\246\\252)-1(a)-417(s)-1(i)1(\\246)-418(do)-418(zwyk\\252yc)28(h,)-417(c)-1(o)-28(d)1(z)-1(i)1(e)-1(n)1(n)28(yc)27(h)-417(ob)1(rz\\241dk)28(\\363)28(w)-418(a)-418(u)1(krad)1(kiem)-418(s)-1(p)-27(ozie)-1(r)1(a-)]TJ -27.879 -13.55 Td[(\\252a)-396(na)-395(m)-1(\\246\\273)-1(a,)-395(kt\\363ren)-396(siedzia\\252)-396(pr)1(z)-1(ed)-396(k)28(omin)1(e)-1(m,)-396(ok)1(r\\246)-1(ci\\252)-396(w)-396(p)-27(o\\252\\246)-397(k)28(o\\273uc)28(ha)-396(starsz)-1(ego)]TJ 0 -13.549 Td[(c)27(h)1(\\252opak)56(a)-463(i)-464(o)-27(c)-1(iepl)1(a\\252)-464(m)28(u)-463(no\\273\\246)-1(t)1(a)-464(d)1(\\252oni\\241)-463(nagr)1(z)-1(ew)27(an)1(\\241,)-463(patr)1(z)-1(y\\252)-463(p)-27(on)28(ur)1(o)-464(w)-463(ogie)-1(\\253)-462(i)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a\\252;)-333(s)-1(tar)1(y)-334(p)-27(o)-28(d)-333(ok)1(nem)-334(obi)1(e)-1(ra\\252)-333(zie)-1(mni)1(aki.)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(n)1(ie)-498(przykr)1(e)-1(,)-497(niep)-28(ok)28(o)-55(j\\241ce)-1(,)-497(przes)-1(ycone)-498(ta)-56(j)1(on)28(ymi)-498(\\273alami,)-498(w)28(e)-1(zbran)1(e)]TJ -27.879 -13.549 Td[(d\\252a)28(wi\\241cym)-474(u)1(c)-1(zuciem)-474(n\\246dzy)84(,)-473(m)-1(ota\\252o)-473(s)-1(i)1(\\246)-474(mi\\246)-1(d)1(z)-1(y)-473(n)1(imi.)-473(Nie)-474(sp)-27(ogl\\241dal)1(i)-473(s)-1(ob)1(ie)-474(w)]TJ 0 -13.55 Td[(o)-28(cz)-1(y)84(,)-355(ni)1(e)-356(pr)1(z)-1(em)-1(a)28(wiali)1(,)-355(s)-1(\\252o)28(w)27(a)-355(wi\\246z)-1(\\252y)-355(w)-355(s)-1(t)1(rapi)1(e)-1(n)1(iac)27(h)1(,)-355(u\\261m)-1(iec)27(h)29(y)-355(z)-1(gas\\252y)83(,)-355(w)-355(o)-28(cz)-1(ac)27(h)]TJ 0 -13.549 Td[(b\\252y)1(s)-1(k)56(a\\252y)-316(t\\252u)1(m)-1(i)1(one)-316(wyrzut)28(y)84(,)-316(a)-315(w)-316(bl)1(adyc)28(h,)-315(w)-1(y)1(n\\246dznia\\252yc)28(h)-316(t)28(w)28(arzac)27(h)-315(widn)1(ia\\252a)-316(go-)]TJ 0 -13.549 Td[(ry)1(c)-1(z,)-313(\\273ale)-313(si\\246)-313(sn)28(u\\252y)84(,)-312(a)-313(zaraze)-1(m)-312(hard)1(a)-313(,)-312(\\273e)-1(lazna)-312(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iw)27(o\\261\\242)-1(.)-312(P)1(rze)-1(sz)-1(\\252o)-312(ju)1(\\273)-313(trzy)]TJ 0 -13.549 Td[(t)28(ygo)-28(d)1(nie)-349(o)-28(d)-349(wyp)-27(\\246dze)-1(n)1(ia)-349(z)-350(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-348(c)27(ha\\252u)1(p)28(y)-349(i)-349(t)28(yle)-349(dn)1(i)-349(d\\252u)1(gic)27(h)1(,)-349(t)28(yle)-350(n)1(o)-28(cy)-349(,)-349(a)-349(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(om)-1(n)1(ie)-1(l)1(i)-432(ob)-27(o)-56(j)1(e)-433(j)1(e)-1(sz)-1(cz)-1(e)-432(n)1(ic)-1(ze)-1(go,)-431(nie)-432(p)1(rze)-1(b)-27(oli)-432(k)1(rz)-1(y)1(w)-1(d)1(y)-432(n)1(i)-432(opami\\246tali)-431(s)-1(i\\246)-432(w)]TJ 0 -13.55 Td[(za)27(wzi\\246)-1(t)1(o\\261)-1(ci)-333({)-334(tak)-333(mo)-28(cno)-333(c)-1(zuli)1(,)-333(jakb)28(y)-333(si\\246)-334(to)-333(sta\\252o)-334(w)-333(t)28(ym)-334(o)-28(cz)-1(y)1(m)-1(gn)1(ieniu)1(.)]TJ 27.879 -13.549 Td[(Ogie\\253)-249(trzask)55(a\\252)-249(w)27(es)-1(o\\252o,)-249(cie)-1(p)1(\\252o)-250(si\\246)-250(rozlew)27(a\\252o)-249(p)-28(o)-249(izbie,)-249(a\\273)-250(l\\363)-28(d)-249(n)1(a)-250(sz)-1(yb)1(ac)27(h)-249(top)1(-)]TJ -27.879 -13.549 Td[(ni)1(a\\252)-313(i)-313(te)-314(sm)27(u)1(gi)-313(\\261)-1(n)1(iegu,)-313(n)1(a)28(w)-1(ian)1(e)-1(go)-313(szparami,)-313(ta)-55(ja\\252y)-313(p)-27(o)-28(d)-312(przycies)-1(iami,)-313(a)-313(gl)1(inian)29(y)]TJ 0 -13.549 Td[(tok)-333(p)-27(o)-28(c)-1(i)1(\\252)-334(si\\246)-334(i)-333(op\\252y)1(w)27(a\\252)-333(ros\\241.)]TJ 27.879 -13.549 Td[({)-333(Przyj)1(d\\241)-333(te)-334(\\233yd)1(y?)-334({)-333(s)-1(p)29(yta\\252a)-333(w)-1(r)1(e)-1(sz)-1(cie.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252y)84(,)-333(\\273)-1(e)-333(przyjd)1(\\241.)]TJ 0 -13.55 Td[(I)-320(z)-1(n)1(o)28(w)-1(u)-319(ani)-319(s)-1(\\252o)28(w)27(a)-320(wi\\246c)-1(ej.)-319(,Jak\\273e)-1(,)-320(k)1(t\\363re\\273)-321(mia\\252o)-320(rze)-1(c)-320(pi)1(e)-1(rwsz)-1(e)-320(i)-320(co?)-321({)-320(Han)1(-)]TJ -27.879 -13.549 Td[(k)56(a?...)-353(Kie)-1(j)-353(si\\246)-354(b)-27(o)-56(ja\\252a)-353(g\\246)-1(b)28(y)-353(oz)-1(ewrze)-1(\\242,)-354(b)28(y)1(c)27(h)-353(te)-354(\\273)-1(ale)-354(n)1(abr)1(ane)-354(w)-354(s)-1(erce)-354(nie)-354(lu)1(n\\246\\252y)-354(z)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-407(c)27(h)1(o)-28(\\242b)28(y)-407(i)-408(p)-27(oniew)28(oli!)-407({)-408(Nie,)-407(tai\\252a)-408(wsz)-1(ystk)28(o)-408(w)-407(s)-1(ob)1(ie)-408(i)-408(p)-27(o)28(ws)-1(tr)1(z)-1(ym)28(yw)28(a\\252a,)-408(j)1(ak)]TJ 0 -13.549 Td[(mog\\252a.)-333(An)28(tek?)-334(C\\363\\273)-333(m)-1(i)1(a\\252)-334(p)-27(o)28(wie)-1(d)1(a\\242)-1(?)-333(\\273e)-334(m)28(u)-333(\\271le)-1(?)-333(I)-333(b)-28(ez)-333(te)-1(go)-333(wiad)1(om)-1(o,)-333(a)-333(d)1(o)-333(przy-)]TJ 0 -13.549 Td[(jacielst)27(w)28(a)-421(ni)1(e)-422(b)28(y\\252)-421(n)1(igdy)-421(sk)28(ory)-420(i)-421(do)-421(ugw)28(arzani)1(a)-422(si\\246,)-421(c)27(h)1(o)-28(\\242)-1(b)29(y)-421(i)-421(z)-422(k)28(ob)1(iet\\241)-421(s)-1(w)28(o)-56(j)1(\\241,)]TJ 0 -13.55 Td[(o)-28(c)28(hot)28(y)-299(nie)-299(m)-1(i)1(a\\252)-1(!)-299(Jak)1(\\273)-1(e)-300(tu)-298(i)-300(m\\363)28(wi\\242)-300(,)-299(kiej)-299(d)1(usz)-1(\\246)-300(p)1(rze)-1(\\273e)-1(r)1(a\\252)-1(a)-299(n)1(ie)-1(n)1(a)28(w)-1(i)1(\\261)-1(\\242,)-299(kiej)-299(z)-1(a)-299(k)56(a\\273)-1(-)]TJ 0 -13.549 Td[(dy)1(m)-318(ws)-1(p)-27(omink)1(ie)-1(m)-317(s)-1(erce)-318(m)27(u)-317(si\\246)-318(k)1(urcz)-1(y)1(\\252o)-318(z)-318(b)-27(oleni)1(a,)-318(a)-317(pazur)1(y)-317(s)-1(i\\246)-317(rozc)-1(zapierza\\252y)]TJ\nET\nendstream\nendobj\n581 0 obj <<\n/Type /Page\n/Contents 582 0 R\n/Resources 580 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n580 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n585 0 obj <<\n/Length 9902      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(179)]TJ -358.232 -35.866 Td[(tak)56(\\241)-333(z)-1(\\252o\\261c)-1(i\\241,)-333(\\273e)-334(c)27(h)1(o)-28(\\242)-1(b)29(y)-333(na)-333(c)-1(a\\252\\241)-333(wie)-1(\\261,)-333(a)-334(got\\363)28(w)-333(s)-1(i\\246)-333(b)28(y\\252)-333(rzuci\\242)-1(!)1(...)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-304(nie)-304(n)1(os)-1(i)1(\\252)-304(s\\252o)-28(dki)1(c)27(h)-303(ws)-1(p)-27(omink)28(\\363)28(w)-304(o)-303(Jagni)1(e)-1(,)-303(jak)1(b)28(y)-303(jej)-303(nigd)1(y)-304(n)1(ie)-304(mi\\252o)28(w)27(a\\252,)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-345(nie)-346(b)1(ra\\252)-346(w)-346(t)1(e)-346(s)-1(ame)-346(r\\246c)-1(e,)-346(k)1(t\\363rymi)-345(te)-1(r)1(az)-346(got\\363)27(w)-345(b)28(y\\252)-346(j)1(\\241)-346(r)1(oz)-1(d)1(z)-1(iera\\242.)-346(Al)1(e)-346(\\273)-1(alu)]TJ 0 -13.549 Td[(do)-333(n)1(ie)-1(j)-333(n)1(ie)-334(mia\\252.)]TJ 27.879 -13.549 Td[({)-238(K)1(obieta)-238(n)1(ie)-1(k)1(t\\363ra)-238(j)1(e)-1(st)-238(j)1(ak)28(o)-238(ten)-237(pies)-238(z)-1(wlec)-1(zon)28(y)84(,)-238(p)-27(\\363)-56(j)1(dzie)-238(za)-238(k)56(a\\273)-1(d)1(ym,)-238(kto)-237(ino)]TJ -27.879 -13.55 Td[(wi\\246ks)-1(z\\241)-268(skib)1(k)55(\\241)-267(przyn)1(\\246)-1(ci)-268(ab)-27(o)-268(i)-267(kijem)-268(p)-27(os)-1(tr)1(as)-1(zy)83(.)-267({)-268(My\\261la\\252)-268(o)-267(niej,)-267(niecz)-1(\\246s)-1(to)-267(jednak)1(,)]TJ 0 -13.549 Td[(b)-27(o)-337(m)27(u)-336(gin\\246\\252a)-337(w)-337(pami\\246)-1(ci)-337(p)-27(o)-28(d)-336(na)28(w)27(a\\252\\241)-337(k)1(rw)27(a)28(wi\\241cyc)27(h)1(,)-337(\\273ywyc)27(h)-336(i)-337(b)-28(ol)1(e)-1(sn)28(yc)28(h)-337(ur)1(az)-338(d)1(o)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(a.)-266(S)1(tary)-266(b)28(y)1(\\252)-267(win)1(o)27(w)28(at)28(y)83(,)-266(o)-28(ciec)-267(to)-266(b)28(y\\252)-266(t)28(ym)-267(kr)1(z)-1(ywd)1(z)-1(icielem)-1(,)-266(t)28(ym)-266(os)-1(\\246kiem)-1(,)-266(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(si\\246)-281(wbi\\252)-280(w)-280(s)-1(amo)-281(serc)-1(e)-280(i)-280(b)-28(ol)1(a\\252)-281(coraz)-281(ostrze)-1(j)1(,)-280(przez)-281(ni)1(e)-1(go)-280(to)-280(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-280(p)1(rze)-1(z)-281(n)1(iego!)]TJ 27.879 -13.549 Td[(I)-237(z)-1(b)1(ie)-1(r)1(a\\252,)-238(zgarn)1(ia\\252)-238(w)-237(s)-1(i)1(e)-1(bi)1(e)-238(ws)-1(zystk)28(o)-238(z\\252o,)-238(wsz)-1(y)1(s)-1(tki)1(e)-238(krzywdy)84(,)-237(jaki)1(c)27(h)-237(dozna\\252,)]TJ -27.879 -13.549 Td[(i)-324(pr)1(z)-1(ep)-27(o)27(wiad)1(a\\252)-325(\\273e)-325(j)1(ak)28(o)-325(t)1(e)-1(n)-324(p)1(ac)-1(i)1(e)-1(rz)-324(niezap)-28(omnian)29(y!)-324(R\\363\\273)-1(an)1(iec)-325(c)-1(i)-324(t)1(o)-325(b)29(y\\252)-325(b)-27(oles)-1(n)29(y)-324(i)]TJ 0 -13.55 Td[(j\\241t)1(rz)-1(\\241cy)84(,)-334(al)1(e)-334(go)-334(sobi)1(e)-334(pr)1(z)-1(ew\\252)-1(\\363)-27(c)-1(zy\\252)-333(prze)-1(z)-333(s)-1(erce)-1(,)-333(b)28(yc)28(h)-333(jes)-1(zcz)-1(e)-334(l)1(e)-1(p)1(ie)-1(j)-333(zapami\\246ta\\242)-1(!)]TJ 27.879 -13.549 Td[(O)-289(sw)27(o)-55(j\\241)-289(b)1(ie)-1(d)1(\\246)-290(n)1(ie)-289(s)-1(ta\\252,)-289(c)28(h\\252op)-289(zdr)1(o)27(wy)84(,)-289(to)-289(b)28(yl)1(e)-290(mia\\252)-289(dac)28(h)-289(n)1(ad)-289(g\\252o)28(w)27(\\241,)-289(wi\\246c)-1(ej)]TJ -27.879 -13.549 Td[(m)27(u)-299(n)1(ie)-300(p)-27(otrza,)-299(o)-300(d)1(z)-1(iec)-1(i)1(s)-1(k)56(ac)27(h)-299(n)1(ie)-1(c)28(h)-299(k)28(obieta)-299(z)-1(ab)1(ie)-1(ga,)-299(ale)-300(sama)-300(cz)-1(y)1(s)-1(ta)-299(krzywda)-299(go)]TJ 0 -13.549 Td[(pi)1(e)-1(k\\252a)-339(kiej)-339(ogie\\253)-339(i)-339(r)1(os)-1(\\252a)-339(w)27(ci\\241\\273,)-339(roz)-1(r)1(as)-1(ta\\252a)-339(si\\246)-340(w)-339(nim)-339(nib)29(y)-339(ta)-340(p)1(arz\\241c)-1(a)-339(p)-27(okrzyw)28(a!)]TJ 0 -13.549 Td[(Bo)-323(i)-323(jak)1(\\273)-1(e,)-323(trzy)-323(n)1(ie)-1(d)1(z)-1(i)1(e)-1(le)-323(d)1(opiero,)-323(a)-323(j)1(u\\273)-323(s)-1(i)1(\\246)-324(ca\\252a)-323(w)-1(i)1(e)-1(\\261)-323(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-323(o)-28(d)-323(n)1(ie)-1(go,)-322(jakb)29(y)]TJ 0 -13.55 Td[(go)-428(nie)-428(z)-1(n)1(ali,)-428(j)1(akb)28(y)-428(p)1(rz)-1(y)1(b\\252\\246da)-428(b)28(y\\252)-428(z)-1(e)-428(\\261)-1(wiata,)-427(om)-1(ij)1(ali)-428(go)-428(kiej)-428(zap)-28(o)28(wietrzonego,)]TJ 0 -13.549 Td[(ni)1(kt)-354(nie)-354(z)-1(agad)1(a\\252)-1(,)-354(d)1(o)-355(c)28(ha\\252u)1(p)28(y)-354(nie)-354(z)-1(a)-55(jrza\\252,)-354(nie)-354(p)-28(o\\273a\\252o)27(w)28(a\\252,)-354(dob)1(re)-1(go)-354(s\\252o)27(w)28(a)-354(nie)-354(da\\252)]TJ 0 -13.549 Td[({)-333(a)-334(j)1(ak)-333(na)-333(te)-1(go)-333(zb)-28(\\363)-55(ja)-333(s)-1(p)-27(ogl\\241d)1(ali.)]TJ 27.879 -13.549 Td[(Nie)-443(to)-443(nie,)-443(nap)1(rasz)-1(a\\252)-443(s)-1(i)1(\\246)-444(ni)1(e)-444(b)-27(\\246)-1(d)1(z)-1(ie,)-443(ale)-443(i)-443(p)-28(o)-443(k)56(\\241tac)27(h)-443(k)1(ry\\252)-443(ni)1(e)-444(b)-27(\\246)-1(d)1(z)-1(ie)-443(ni)]TJ -27.879 -13.549 Td[(ust\\246p)28(yw)28(a\\252)-317(ni)1(k)28(om)27(u)-316(z)-317(dr)1(ogi!)-317(K)1(ie)-1(j)-316(n)1(a)-317(u)1(dry)84(,)-317(t)1(o)-317(na)-316(ud)1(ry!)-316(Ale)-317(d)1(lac)-1(ze)-1(go)-316(to)-317(wsz)-1(ystk)28(o?)]TJ 0 -13.55 Td[(\\233e)-368(si\\246)-368(z)-367(o)-56(j)1(c)-1(em)-368(p)-27(obi)1(\\252?)-1(.)1(..)-367(Pierwsz)-1(y)-367(r)1(az)-368(to)-367(w)27(e)-367(ws)-1(i)-367(cz)-1(y)-367(co!)-367(Cz)-1(y)-367(t)1(o)-368(J\\363zek)-367(W)83(ac)28(hni)1(k)]TJ 0 -13.549 Td[(ni)1(e)-314(b)1(ij)1(e)-314(si\\246)-313(c)-1(o)-312(dn)1(i)-313(p)1(ar\\246)-1(?..)1(.)-313(Cz)-1(y)-312(to)-313(S)1(tac)27(h)-312(P\\252osz)-1(k)56(a)-313(n)1(ie)-313(pr)1(z)-1(etr\\241ci\\252)-313(ku)1(las)-1(a)-312(s)-1(w)28(o)-56(j)1(e)-1(m)28(u?)]TJ 0 -13.549 Td[(A)-338(n)1(ikt)-337(im)-338(marn)1(e)-1(go)-337(s)-1(\\252o)28(w)27(a)-337(ni)1(e)-338(p)-28(o)28(wiedzia\\252,)-338(i)1(no)-338(j)1(e)-1(go)-337(p)-27(os)-1(tp)-27(on)28(u)1(j\\241,)-337(b)-28(o)-337(na)-337(k)28(ogo)-338(P)28(an)]TJ 0 -13.549 Td[(B\\363g,)]TJ 27.879 -13.549 Td[(to)-335(i)-336(wsz)-1(ysc)-1(y)-335(\\261wi\\246)-1(ci.)-335(Star)1(e)-1(go)-335(to)-336(r)1(ob)-28(ota,)-335(starego)-336(ale)-336(zap\\252acone)-336(mia\\252)-336(b)-27(\\246dzie)]TJ -27.879 -13.55 Td[(za)-334(wsz)-1(ystk)28(o,)-333(z)-1(ap)1(\\252ac)-1(on)1(e)-1(.)]TJ 27.879 -13.549 Td[(Jeno)-373(dy)1(c)27(ha\\252)-373(o)-28(d)1(e)-1(ms)-1(t)1(\\241)-374(i)-373(m)28(y\\261le)-1(n)1(ie)-1(m)-373(o)-373(niej,)-373(a)-373(ca\\252y)-373(te)-1(n)-373(czas)-374(\\273)-1(y)1(\\252)-374(w)-373(gor\\241cz)-1(ce)]TJ -27.879 -13.549 Td[(i)-381(n)1(ie)-1(p)1(am)-1(i)1(\\246)-1(ci;)-381(d)1(o)-382(r)1(ob)-28(ot)28(y)-381(si\\246)-381(nie)-381(br)1(a\\252)-1(,)-380(o)-381(biedzie)-382(n)1(ie)-381(m)27(y\\261la\\252,)-381(w)-381(ju)1(tro)-381(ni)1(e)-382(p)1(atrz)-1(y)1(\\252,)]TJ 0 -13.549 Td[(in)1(o)-310(si\\246)-309(p)-28(o)-309(t)28(yc)27(h)-308(m)-1(\\246k)56(ac)27(h)-309(ci\\246\\273)-1(ki)1(c)27(h)-309(tu)1(la\\252)-309(i)-309(dar\\252)-309(w)-309(s)-1(ob)1(ie)-1(.)-309(Ni)1(e)-1(r)1(az)-310(no)-27(c)-1(ami)-309(z)-1(r)1(yw)27(a\\252)-309(si\\246)-310(z)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(cieli)-366(i)-366(lec)-1(ia\\252)-366(na)-366(wie\\261)-1(,)-366(b)1(\\252\\241k)55(a\\252)-366(si\\246)-367(p)-27(o)-366(drogac)28(h,)-366(w)-366(c)-1(i)1(e)-1(mnicac)27(h)-365(s)-1(i\\246)-366(kry\\252)-366(i)-366(marzy\\252)]TJ 0 -13.55 Td[(ze)-1(ms)-1(t\\246)-333(s)-1(r)1(og)-1(\\241,)-333(p)-27(opr)1(z)-1(y)1(s)-1(i\\246ga\\252,)-333(i\\273)-334(n)1(ie)-334(dar)1(uj)1(e)-334(s)-1(w)28(o)-56(j)1(e)-1(go.)]TJ 27.879 -13.549 Td[(\\221n)1(iad)1(anie)-420(zjedli)-419(w)-420(cic)27(h)1(o\\261)-1(ci,)-419(a)-420(on)-419(w)27(ci\\241\\273)-420(sie)-1(d)1(z)-1(i)1(a\\252)-420(os)-1(o)28(wia\\252y)-419(i)-420(p)1(rze)-1(\\273u)28(w)27(a\\252)-419(te)]TJ -27.879 -13.549 Td[(ws)-1(p)-27(omink)1(i)-334(k)1(ie)-1(j)-333(oset)-334(k)28(ol)1(\\241c)-1(y)-333(a)-333(gorzki.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-301(si\\246)-302(ju)1(\\273)-302(du\\273y)-301(z)-1(rob)1(i\\252,)-301(ogie)-1(\\253)-301(pr)1(z)-1(y)1(gas)-1(\\252,)-301(a)-302(pr)1(z)-1(ez)-302(o)-28(dmro\\273one)-302(n)1(ie)-1(co)-302(sz)-1(y)1(bki)]TJ -27.879 -13.549 Td[(bi)1(\\252o)-385(b)1(ia\\252a)28(w)27(e,)-384(zim)-1(n)1(e)-385(\\261wiat\\252o)-384(\\261)-1(n)1(ieg\\363)27(w;)-384(l)1(o)-28(do)28(w)28(e)-1(,)-384(sm)27(u)1(tne)-384(brzaski)-384(roztrz\\246)-1(s\\252y)-384(s)-1(i)1(\\246)-385(p)-27(o)]TJ 0 -13.549 Td[(k)56(\\241tac)27(h)-333(i)-333(ob)1(na\\273y\\252y)-333(iz)-1(b)-27(\\246,)-334(\\273e)-334(stan\\246\\252a)-334(w)-333(c)-1(a\\252ej)-333(n\\246dzy)83(.)]TJ 27.879 -13.55 Td[(M\\363)-55(j)-420(Bo\\273)-1(e,)-420(B)-1(or)1(yno)28(w)28(a)-420(c)27(ha\\252u)1(pa)-420(dw)28(orem)-421(si\\246)-421(wid)1(z)-1(i)1(a\\252a)-421(p)1(rzy)-420(te)-1(j)-419(rud)1(e)-1(r)1(z)-1(e;)-420(c)-1(o)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)1(a,)-389(na)28(w)27(et)-389(ob)-27(ora)-389(o)-56(j)1(c)-1(o)28(w)28(a)-389(s)-1(p)-27(os)-1(ob)1(niejsz\\241)-389(b)28(y\\252a)-389(la)-389(lu)1(dzi.)-389(Chlew)-389(to)-389(przegni\\252y)84(,)]TJ 0 -13.549 Td[(ni)1(e)-342(d)1(om)-1(;)-340(kup)1(a)-341(z)-1(m)28(ur)1(s)-1(za\\252yc)27(h)-340(bali)1(,)-341(na)28(w)28(oz)-1(u)-340(i)-341(\\261m)-1(i)1(e)-1(cia)-341(zgni\\252ego.)-341(Ni)-341(j)1(e)-1(d)1(nej)-341(d)1(e)-1(ski)-341(n)1(a)]TJ 0 -13.549 Td[(zie)-1(mi,)-293(gl)1(ini)1(an)28(y)-293(tok)-293(p)-27(e\\252)-1(en)-292(w)-1(y)1(b)-28(o)-55(j\\363)28(w,)-293(b\\252ota)-293(p)1(rzymarz)-1(\\252ego)-293(i)-293(\\261m)-1(i)1(e)-1(ci)-293(wdeptan)28(y)1(c)27(h,)-292(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(h)-407(ino)-407(o)-28(d)1(grza\\252)-1(o)-407(o)-28(d)-406(k)28(om)-1(in)1(a,)-407(to)-407(s)-1(mr\\363)-28(d)-406(bi\\252)-407(gorsz)-1(y)-407(n)1(i\\271)-1(l)1(i)-407(z)-408(gno)-55(j\\363)28(wki,)-407(a)-407(z)-408(tego)]TJ 0 -13.55 Td[(trz\\246s)-1(a)28(wis)-1(k)56(a)-253(d)1(\\271)-1(wiga\\252y)-253(si\\246)-253(\\261)-1(cian)28(y)-252(s)-1(paczone,)-253(s)-1(t)1(ruc)28(hla\\252e,)-253(pr)1(z)-1(egni\\252e,)-253(\\273e)-254(wil)1(go)-28(\\242)-254(l)1(a\\252)-1(a)-252(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-308(ni)1(c)27(h,)-307(a)-308(w)-308(k)56(\\241tac)27(h)-307(m)-1(r)1(\\363z)-308(trz\\241s)-1(\\252)-308(siw)27(\\241)-307(bro)-27(d\\241;)-307(\\261)-1(cian)28(y)-307(p)-28(e\\252ne)-308(dziur)1(,)-308(p)-27(oz)-1(ap)29(yc)27(h)1(an)28(yc)27(h)]TJ\nET\nendstream\nendobj\n584 0 obj <<\n/Type /Page\n/Contents 585 0 R\n/Resources 583 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n583 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n588 0 obj <<\n/Length 10668     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(180)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(glin)1(\\241,)-439(a)-439(m)-1(iejscam)-1(i)-439(s\\252om)-1(\\241)-439(z.)-439(na)28(w)27(oze)-1(m!)-439(A)-439(ni)1(s)-1(ki)-439(p)1(u\\252ap)-439(wisia\\252)-439(kiej)-439(to)-439(s)-1(tar)1(e)-440(sito)]TJ 0 -13.549 Td[(p)-27(o)-28(dar)1(te)-1(,)-466(\\273e)-467(s\\252)-1(om)28(y)-466(opa)-55(j\\246c)-1(zonej)-466(wi\\246)-1(ce)-1(j)-465(w)-467(ni)1(m)-467(b)28(y\\252o)-466(ni)1(\\271)-1(li)-466(d)1(e)-1(se)-1(k)1(.)-466(Je)-1(d)1(ne)-467(spr)1(z)-1(\\246t)28(y)]TJ 0 -13.549 Td[(i)-450(s)-1(tatk)1(i,)-450(c)-1(o)-450(c)-1(o\\261)-451(ni)1(e)-1(co\\261)-451(pr)1(z)-1(yk)1(ryw)28(a\\252y)-451(t\\246)-451(n)1(\\246)-1(d)1(z)-1(\\246,)-451(a)-450(te)-451(par)1(\\246)-451(\\261)-1(wi\\246t)28(yc)27(h)-450(ob)1(raz)-1(\\363)28(w)-451(n)1(a)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(ac)27(h)1(,)-405(z)-1(a\\261)-405(dr\\241)-27(g)-406(z)-405(ub)1(iere)-1(m)-405(rozwie)-1(sz)-1(on)29(ym)-406(i)-405(skr)1(z)-1(yn)1(ia)-405(pr)1(z)-1(ys\\252ania\\252y)-405(p)1(rze)-1(gr)1(o)-28(d\\246)]TJ 0 -13.549 Td[(c)27(h)1(ru)1(\\261)-1(cian\\241,)-333(za)-334(k)1(t\\363r\\241)-333(m)-1(i)1(e)-1(\\261c)-1(i\\252y)-333(si\\246)-334(kr)1(o)28(w)-1(y)84(.)]TJ 27.879 -13.55 Td[(Hank)56(a,)-406(c)27(h)1(o)-28(cia)-407(p)-27(o)28(w)27(oli)1(,)-407(a)-406(ryc)28(h\\252o)-406(obrz\\241dzi\\252a)-406(gos)-1(p)-27(o)-28(dar)1(s)-1(t)28(w)28(o;)-406(ju\\261ci,)-407(n)1(iew)-1(i)1(e)-1(la)]TJ -27.879 -13.549 Td[(tego)-440(b)28(y\\252o;)-439(kro)28(w)28(a,)-440(j)1(a\\252)-1(o)28(wica,)-440(p)1(rosiak,)-440(g\\241sk)28(\\363)28(w)-440(par)1(\\246)-441(i)-439(ku)1(rk)28(\\363)28(w)-1(,)-439(to)-440(i)-439(c)-1(a\\252a)-440(p)1(arad)1(a,)]TJ 0 -13.549 Td[(i)-394(b)-28(ogact)28(w)27(o)-394(c)-1(a\\252e.)-395(Ub)1(ra\\252a)-395(c)28(h\\252opak)28(\\363)28(w,)-394(\\273)-1(e)-395(wnet)-395(si\\246)-395(pr)1(z)-1(eto)-28(cz)-1(y)1(li)-395(d)1(o)-395(sieni)-394(z)-1(ab)1(a)27(wia\\242)]TJ 0 -13.549 Td[(z)-379(W)83(eron)1(c)-1(zyn)28(ymi)-378(dzie)-1(\\242mi,)-379(wry)1(c)27(hl)1(e)-379(te)-1(\\273)-379(j)1(az)-1(got)28(y)-379(a)-378(wrz)-1(aski)-378(s)-1(z\\252y)-379(stam)27(t\\241d)1(,)-379(a)-378(s)-1(ama)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(garni)1(a\\252)-1(a)-333(si\\246)-334(ni)1(e)-1(co,)-333(jak)28(o)-333(\\273)-1(e)-333(kup)-27(c)-1(y)-333(p)1(rzyj\\261\\242)-334(mie)-1(l)1(i)-333(i)-334(n)1(a)-333(w)-1(i)1(e)-1(\\261)-334(tr)1(z)-1(a)-333(b)28(y\\252o)-333(i\\261\\242)-1(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-366(c)28(hcia\\252a)-366(si\\246)-366(z)-366(m)-1(\\246\\273)-1(em)-366(nar)1(e)-1(d)1(z)-1(i\\242)-366(i)-365(c)-1(o\\261)-366(n)1(iec)-1(o\\261)-366(p)-27(ogada\\242)-366(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-365(o)-366(tej)]TJ -27.879 -13.55 Td[(sprze)-1(d)1(a\\273)-1(y)84(,)-373(ale)-374(n)1(ie)-374(\\261m)-1(ia\\252a)-373(z)-1(acz\\241\\242)-1(,)-373(b)-27(o)-374(An)28(t)1(e)-1(k)-373(w)27(ci\\241\\273)-374(siedzia\\252)-374(p)1(rze)-1(d)-373(wygas\\252ym)-374(k)28(o-)]TJ 0 -13.549 Td[(minem,)-334(zapat)1(rz)-1(on)29(y)-334(gd)1(z)-1(i)1(e)-1(sik,)-333(p)-27(on)28(ur)1(y)83(,)-333(a\\273)-334(strac)28(h)-333(j\\241)-333(obl)1(e)-1(cia\\252.)]TJ 27.879 -13.549 Td[({)-346(Co)-346(m)28(u)-346(j)1(e)-1(st?)-346({)-346(Zez)-1(u)1(\\252a)-346(trep)28(y)84(,)-346(b)28(yc)28(h)-346(go)-345(ino)-345(nie)-346(j\\241t)1(rz)-1(y)1(\\242)-347(h)1(a\\252as)-1(em,)-346(ale)-346(coraz)]TJ -27.879 -13.549 Td[(cz)-1(\\246\\261)-1(ciej)-333(s)-1(p)-27(oz)-1(i)1(e)-1(r)1(a\\252)-1(a)-333(na)-333(n)1(ie)-1(go)-333(z)-334(tr)1(w)27(o\\273liw)28(\\241)-334(czu\\252o\\261)-1(ci\\241)-333(i)-333(niep)-27(ok)28(o)-56(jem.)]TJ 27.879 -13.549 Td[({)-416(Ci\\246\\273)-1(ej)-416(m)28(u,)-416(b)-27(o)-416(ni)1(e)-417(taki)-415(kiej)-416(dr)1(ugie,)-416(ci\\246\\273)-1(ej)-416({)-416(m)28(y\\261)-1(l)1(a\\252)-1(a)-416(i)-415(okru)1(tna)-416(c)27(h)1(\\246)-1(\\242)-416(j\\241)]TJ -27.879 -13.55 Td[(wz)-1(i)1(\\246)-1(\\252a)-332(zagada\\242,)-332(p)-27(op)28(yta\\242,)-332(u)1(\\273)-1(ali)1(\\242)-333(si\\246)-332(nad)-331(nim,)-332(j)1(u\\273)-332(pr)1(z)-1(ystan)1(\\246)-1(\\252a)-332(z)-332(b)-27(oku,)-331(ju\\273)-332(mia\\252a)]TJ 0 -13.549 Td[(to)-287(dob)1(re)-288(s\\252o)27(w)28(o)-287(w)-288(se)-1(rcu)-287(wz)-1(r)1(usz)-1(on)29(ym)-288({)-287(nie)-287(\\261)-1(mia\\252a)-287(jednak)1(.)-287(Jak)-288(t)1(u)-287(i)-287(rz)-1(ec)-288(b)28(y)1(\\252o,)-288(k)1(ie)-1(j)]TJ 0 -13.549 Td[(na)-262(n)1(i\\241)-262(n)1(ie)-263(zw)28(a\\273)-1(a,)-262(j)1(akb)28(y)-262(ca\\252kiem)-262(nie)-262(widzia\\252)-262(ni)1(c)-263(k)28(o\\252o)-262(siebie!)-262(W)84(e)-1(stc)27(h)1(n\\246\\252)-1(a)-262(b)-27(ole\\261)-1(n)1(ie;)]TJ 0 -13.549 Td[(ni)1(e)-1(letk)28(o)-317(j)1(e)-1(j)-316(b)28(y\\252o)-317(na)-317(d)1(usz)-1(y)84(,)-317(n)1(ie)-318({)-317(n)1(ie)-317(dru)1(jk)28(o\\261\\242)-318(czu\\252a)-317(ano)-317(w)-317(se)-1(r)1(c)-1(u)-316(m)-1(io)-27(do)28(w)27(\\241,)-316(a)-317(te)-1(n)]TJ 0 -13.549 Td[(gorzki)-310(pi)1(o\\252)-1(u)1(n!)-310(M\\363)-55(j)-310(Jez)-1(u)1(,)-311(i)1(nacz)-1(ej)-310(m)-1(a)-55(j\\241)-310(dr)1(ugie,)-310(c)27(h)1(o)-28(\\242)-1(b)29(y)-311(i)-310(te)-311(k)28(omorn)1(ice)-1(,)-310(a)-310(le)-1(p)1(iej.)-310({)]TJ 0 -13.55 Td[(A)-239(t)1(u)-239(n)1(a)-239(j)1(e)-1(j)-238(g\\252o)28(wie)-239(w)-1(szys)-1(tk)28(o)-238(le\\273)-1(y)84(,)-239(tu)1(rb)1(uj)-238(s)-1(i)1(\\246)-1(,)-238(z)-1(ab)1(iega)-56(j,)-238(staru)1(nek)-239(o)-238(w)-1(sz)-1(y)1(s)-1(tki)1(m)-239(m)-1(i)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(k\\252op)-27(o)-28(cz)-266(s)-1(i)1(\\246)-1(,)-265(ani)-265(zagada\\242)-265(do)-265(k)28(ogo,)-265(ni)-265(si\\246)-266(pr)1(z)-1(ed)-265(kim)-265(wy\\273)-1(al)1(i\\242)-1(!)-265(Niec)27(h)29(b)28(y)-265(j\\241)-265(s)-1(k)1(rz)-1(y)1(c)-1(za\\252,)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(h)28(b)28(y)-346(n)1(a)27(w)28(et)-346(i)-346(z)-1(b)1(i\\252,)-346(wiedzia\\252ab)28(y)84(,)-346(\\273)-1(e)-346(w)-346(c)27(h)1(a\\252)-1(u)1(pi)1(e)-347(j)1(e)-1(st)-346(c)27(h)1(\\252)-1(op)-345(c)-1(zuj)1(n)28(y)84(,)-346(ni)1(e)-347(d)1(re)-1(wn)1(o.)]TJ 0 -13.549 Td[(A)-278(ten)-278(n)1(ic,)-278(c)-1(zase)-1(m)-278(bu)1(rkn)1(ie)-278(kiej)-278(p)1(ie)-1(s)-278(z\\252)-1(y)-277(ab)-28(o)-278(i)-277(s)-1(p)-27(o)-56(j)1(rzy)83(,)-277(\\273)-1(e)-278(jak)1(b)28(y)-278(kto)-278(mrozem)-279(ob)1(la\\252)]TJ 0 -13.549 Td[(du)1(s)-1(z\\246)-387({)-387(an)1(i)-387(p)1(rz)-1(em\\363)27(wi\\242)-387(d)1(o)-387(n)1(ie)-1(go,)-386(ni)-386(pr)1(z)-1(yst\\241)-28(p)1(i\\242)-387(z)-387(t)28(ym)-387(s)-1(zc)-1(zerym)-387(se)-1(rcem)-1(,)-386(jak)-386(to)]TJ 0 -13.55 Td[(zw)-1(y)1(c)-1(za)-56(j)1(nie)-412(b)28(y)1(w)27(a)-411(w)-412(m)-1(a\\252\\273e)-1(\\253)1(s)-1(k)1(im)-412(stanie)-412(ab)-27(o)-412(i)-411(w)-412(p)1(rzyjaciels)-1(t)28(wie.)-412(Hal)1(e)-1(,)-411(p)-28(o)28(wies)-1(z)]TJ 0 -13.549 Td[(co,)-375(u)1(\\273)-1(alisz)-375(s)-1(i)1(\\246)-1(,)-374(ju)1(\\261)-1(ci!)-375(Co)-375(m)28(u)-374(ta)-375(k)28(obi)1(e)-1(ta,)-374(c)-1(o)-374(\\273)-1(on)1(a)-375(t)28(yla,)-374(b)28(yc)28(h)-375(c)28(ha\\252up)29(y)-375(p)1(ilno)28(w)28(a\\252a,)]TJ 0 -13.549 Td[(je\\261\\242)-357(u)29(w)27(ar)1(z)-1(y\\252a)-356(i)-355(dziec)-1(i)1(s)-1(k)28(\\363)28(w)-356(s)-1(t)1(rz)-1(eg\\252a.)-356(Ab)-27(o)-356(to)-355(db)1(a)-356(o)-356(co?...)-355(B)-1(o)-355(to)-356(kiej)-355(przyh)1(o\\252ubi)1(,)]TJ 0 -13.549 Td[(p)-27(opie\\261)-1(ci,)-409(d)1(obr)1(o\\261)-1(ci\\241)-409(z)-1(n)1(iew)27(oli)1(,)-409(pr)1(z)-1(ygar)1(nie)-409(mo)-28(c)-1(n)1(o,)-409(ugw)28(arzy)-409(si\\246)-1(!)-408(Nie)-410(stoi)-409(on)-408(o)-409(to)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o,)-384(nie!)-384(I)-1(n)1(o)-385(si\\246)-385(ci\\246giem)-385(m)27(y\\261leniem)-385(g\\363r)1(no)-384(nosi,)-384(jak)-384(ob)-28(cy)-384(z)-1(ac)28(ho)28(wuj)1(e)-1(,)-384(\\273)-1(e)-384(i)]TJ 0 -13.55 Td[(ni)1(e)-271(wie,)-270(co)-270(si\\246)-270(w)27(edl)1(e)-271(n)1(iego)-270(dzie)-1(j)1(e)-1(!)-269(A)-270(t)28(y)84(,)-270(cz)-1(\\252o)28(wie)-1(k)1(u,)-270(sama)-270(bi)1(e)-1(rz)-270(wsz)-1(ystk)28(o)-270(n)1(a)-270(s)-1(w)28(o)-56(j)1(\\241)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246,)-337(s)-1(ama)-337(cie)-1(r)1(p,)-337(wyd)1(z)-1(iera)-55(j)-337(si\\246)-1(,)-337(t)1(urb)1(uj)1(,)-337(a)-337(jes)-1(zc)-1(ze)-338(ci)-337(i)-337(t)28(ym)-337(dob)1(rym)-337(s)-1(\\252o)28(w)28(e)-1(m)-337(nie)]TJ 0 -13.549 Td[(o)-28(d)1(p\\252aca!...)]TJ 27.879 -13.549 Td[(Nie)-411(m)-1(og\\252a)-411(ju)1(\\273)-412(p)-27(o)27(wstrzyma\\242)-412(b)-28(ol)1(e)-1(snego)-412(zalewu)-411(\\273)-1(a\\252o\\261c)-1(i)-411(n)1(i)-411(\\252)-1(ez,)-412(u)1(c)-1(i)1(e)-1(k\\252a)-411(do)]TJ -27.879 -13.549 Td[(kr)1(\\363)27(w,)-281(za)-282(p)1(rze)-1(gro)-27(d\\246,)-282(wspar)1(\\252)-1(a)-281(si\\246)-282(n)1(a)-282(\\273\\252obie)-281(i)-282(cic)28(ho)-281(c)27(hl)1(ipa\\252a,)-281(a)-281(gdy)-281(kr)1(as)-1(u)1(la)-282(p)-27(o)-28(cz)-1(\\246\\252a)]TJ 0 -13.549 Td[(sapa\\242)-334(i)-333(li)1(z)-1(a\\242)-334(j)1(\\241)-334(p)-27(o)-333(g\\252o)27(wie)-333(i)-334(p)1(lec)-1(ac)28(h,)-333(bu)1(c)27(h)1(n\\246\\252)-1(a)-333(g\\252o\\261)-1(n)1(\\241)-333(s)-1(k)56(arg\\241..)1(.)]TJ 27.879 -13.55 Td[({)-358(I)-358(ciebie)-358(zbr)1(aknie,)-358(b)29(ydl)1(\\241tk)28(o,)-358(i)-357(c)-1(iebi)1(e)-1(..)1(.)-358(p)1(rz)-1(y)1(jd\\241)-357(tu)-357(w)-1(n)1(e)-1(t.)1(..)-358(stargu)1(j\\241..)1(.)-358(p)-27(o-)]TJ -27.879 -13.549 Td[(stronek)-362(ci)-362(z)-1(a)-362(r)1(ogi)-362(z)-1(a\\252o\\273\\241...)-361(p)-28(op)1(ro)28(w)27(ad)1(z)-1(\\241..)1(.)-362(w)27(e)-362(\\261w)-1(i)1(at)-362(c)-1(i\\246)-362(p)-27(o)27(wied\\241,)-362(\\273ywicielk)28(o)-362(na-)]TJ 0 -13.549 Td[(sz)-1(a..)1(.)-282(w)-281(ca\\252)-1(y)-281(\\261wiat!..)1(.)-281({)-282(sz)-1(ept)1(a\\252)-1(a)-281(ob)-27(e)-1(j)1(m)27(u)1(j\\241c)-282(j)1(\\241)-281(z)-1(a)-281(s)-1(zyj)1(\\246)-282(i)-281(tul)1(\\241c)-282(rozb)-28(ol)1(a\\252)-1(\\241)-281(d)1(usz)-1(\\246)-282(d)1(o)]TJ 0 -13.549 Td[(tego)-306(s)-1(t)28(w)28(orze)-1(n)1(ia)-306(cz)-1(u)1(j\\241ce)-1(go.)-305(Nie)-306(p)-27(o)27(wstrzym)27(yw)28(a\\252a)-306(j)1(\\246)-1(k)28(\\363)28(w)-306(ni)-305(p\\252acz)-1(u)1(,)-306(b)-27(o)-306(wsta)27(w)28(a\\252)-306(w)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-263(nag\\252y)84(,)-263(m)-1(o)-28(cn)28(y)-263(bu)1(n)28(t.)-263(Nie)-1(,)-263(tak)-263(b)28(y\\242)-264(n)1(ie)-264(m)-1(o\\273e)-264(d\\252u)1(\\273)-1(ej,)-263(kro)28(w)28(\\246)-264(s)-1(p)1(rze)-1(d)1(adz\\241,)-264(j)1(e)-1(\\261\\242)-264(nie)]TJ 0 -13.55 Td[(ma)-297(c)-1(o,)-296(a)-297(on)-296(s)-1(iedzi,)-296(rob)-27(ot)28(y)-297(ni)1(e)-298(szuk)56(a,)-297(d)1(o)-297(m)-1(\\252\\363)-27(c)27(ki,)-296(c)27(h)1(o)-28(\\242)-297(prosz)-1(\\241,)-296(nie)-297(id)1(z)-1(i)1(e)-1(,)-296(a)-297(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(i)-352(te)-1(n)-352(z)-1(\\252ot)28(y)-352(grosz)-1(y)-352(dw)28(adzie)-1(\\261cia)-353(zarobi)1(\\252)-353(na)-353(d)1(z)-1(i)1(e)-1(\\253)1(,)-353(n)1(a)-353(s)-1(\\363l)-352(b)28(y)-352(b)28(y\\252o,)-352(na)-353(okr)1(as)-1(\\246,)-353(k)1(ie)-1(j)]TJ\nET\nendstream\nendobj\n587 0 obj <<\n/Type /Page\n/Contents 588 0 R\n/Resources 586 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 573 0 R\n>> endobj\n586 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n591 0 obj <<\n/Length 9652      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(181)]TJ -358.232 -35.866 Td[(ju)1(\\273)-334(i)-333(tej)-333(k)55(ap)1(ki)-333(mle)-1(k)56(a)-333(z)-1(b)1(rakn)1(ie!)]TJ 27.879 -13.549 Td[(W)84(r\\363)-28(ci\\252a)-334(d)1(o)-333(iz)-1(b)29(y)83(.)]TJ 0 -13.549 Td[({)-333(An)28(tek!)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252a)-333(ostro,)-333(\\261)-1(miele,)-333(goto)27(w)28(a)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(wyp)-27(o)27(wiedzie\\242)-1(.)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(\\363s)-1(\\252)-322(na)-322(n)1(i\\241)-322(c)-1(ic)28(he,)-322(z)-1(acz)-1(erwieni)1(one)-323(o)-27(c)-1(zy)-322(i)-322(tak)-322(sp)-28(o)-55(jr)1(z)-1(a\\252)-322(s)-1(m)28(utn)1(ie)-323(a)-322(\\273a\\252o-)]TJ -27.879 -13.549 Td[(\\261nie,)-333(\\273)-1(e)-334(j)1(e)-1(j)-333(d)1(usz)-1(a)-333(stru)1(c)27(hl)1(a\\252)-1(a,)-333(op)1(ad\\252)-333(j\\241)-333(gniew,)-333(a)-334(se)-1(r)1(c)-1(e)-333(z)-1(at\\252u)1(k\\252o)-334(si\\246)-334(l)1(ito\\261)-1(ci\\241..)1(.)]TJ 27.879 -13.55 Td[({)-333(M\\363)28(wi\\252e)-1(\\261,)-333(b)28(y)-333(przysz)-1(l)1(i)-334(p)-27(o)-333(kro)28(w)28(\\246)-1(?)-333({)-334(r)1(z)-1(ek\\252a)-333(c)-1(ic)28(ho)-333(i)-333(dziwnie)-334(mi\\246kk)28(o.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334(j)1(u\\273)-334(id)1(\\241,)-333(b)-28(o)-333(tam)-334(n)1(a)-333(dro)-27(dze)-334(c)-1(o\\261)-333(pies)-1(k)1(i)-334(j)1(az)-1(go)-27(c)-1(z\\241...)]TJ 0 -13.549 Td[({)-333(Ni,)-333(w)-334(S)1(ik)28(oro)28(wym)-334(ob)-27(e)-1(j)1(\\261)-1(ciu)-333(n)1(as)-1(zc)-1(zekuj)1(\\241)-334({)-333(p)-27(o)27(wiedzia\\252a)-333(w)-1(y)1(jrza)28(ws)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(Przed)-333(p)-28(o\\252edn)1(ie)-1(m)-333(s)-1(i\\246)-333(obiec)-1(al)1(i,)-333(to)-333(ino)-333(ic)27(h)-332(patrze)-1(\\242.)]TJ 0 -13.549 Td[({)-333(Musim)28(y)-333(to)-334(p)1(rze)-1(d)1(a\\242)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-258(Jak\\273)-1(e,)-258(grosz)-1(a)-258(p)-28(otr)1(z)-1(eba,)-258(pasz)-1(y)-258(te\\273)-259(la)-258(dw)28(\\363)-28(c)27(h)-258(n)1(ie)-259(s)-1(tar)1(c)-1(zy)83(.)1(..)-258(m)27(u)1(s)-1(im)28(y)83(,)-258(Han)28(u)1(\\261)-1(,)]TJ -27.879 -13.55 Td[(c\\363\\273)-268(p)-27(ore)-1(d)1(z)-1(i)1(\\242)-1(..)1(.)-267(s)-1(zk)28(o)-28(da)-267(kr)1(o)27(wy)84(...)-267(j)1(u\\261c)-1(i.)1(..)-267(ale)-268(k)1(to)-268(n)1(ie)-268(ma)-267(grosz)-1(a,)-267(n)1(ie)-268(u)1(m)-1(acz)-1(a)-267(i)-267(n)1(os)-1(a..)1(.)]TJ 0 -13.549 Td[({)-446(m)-1(\\363)28(wi\\252)-446(cic)27(h)1(o)-447(i)-446(z)-446(tak)56(\\241)-446(dobr)1(o)-28(c)-1(i)1(\\241,)-446(\\273)-1(e)-446(Hance)-447(sta)-56(j)1(a\\252)-1(a)-446(d)1(usz)-1(a,)-446(a)-446(se)-1(r)1(c)-1(e)-446(z)-1(acz)-1(\\246\\252o)-447(si\\246)]TJ 0 -13.549 Td[(trzep)-28(ota\\242)-235(rad)1(o\\261)-1(ci\\241)-235(i)-235(n)1(adzie)-1(j)1(\\241;)-235(p)1(atrzy\\252a)-235(m)27(u)-234(w)-236(o)-27(c)-1(zy)-235(jak)-234(te)-1(n)-234(pies)-235(w)-1(i)1(e)-1(rn)29(y)-235(i)-235(s\\252uc)27(h)1(liwy)84(,)]TJ 0 -13.549 Td[(\\273e)-248(ju)1(\\273)-248(w)-247(t)28(ym)-247(o)-28(c)-1(zymgnieni)1(u)-247(ni)1(e)-248(\\273a)-1(\\252o)28(w)28(a\\252a)-248(k)1(ro)28(wy)-247(ni)-247(n)1(ic)-1(ze)-1(go.)-246(Sp)-27(ogl\\241da\\252a)-247(in)1(o)-247(piln)1(ie,)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-262(u)1(dr)1(\\246)-1(ki)-261(w)-262(t)1(\\246)-262(t)28(w)27(arz)-261(umi\\252o)27(w)28(an\\241,)-261(a)-261(s)-1(\\252u)1(c)27(ha\\252a)-261(tego)-262(g\\252osu,)-261(c)-1(o)-261(jak)-261(ogie\\253)-261(s)-1(zed\\252)-262(p)1(rze)-1(z)]TJ 0 -13.55 Td[(se)-1(rce)-334(i)-333(rozgrze)-1(w)28(a\\252)-334(j)1(\\241)-333(dobr)1(o)-28(ci\\241)-334(i)-333(r)1(oz)-1(cz)-1(u)1(leniem)-1(.)]TJ 27.879 -13.549 Td[({)-386(Ju)1(\\261)-1(ci,)-386(\\273e)-386(trze)-1(b)1(a...)-385(Ja\\252o)27(wica)-386(ostanie,)-386(o)-27(c)-1(ieli)-385(s)-1(i\\246)-386(j)1(ak)28(o\\261)-387(w)-386(p)-27(\\363\\252p)-28(o\\261cie)-1(,)-385(to)-386(si\\246)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(t)1(e)-1(j)-333(k)56(apk)1(i)-334(mlek)56(a)-334(d)1(o)-28(cz)-1(ek)55(am)28(y)-333(pr)1(z)-1(ywt\\363rzy\\252a,)-333(b)28(yl)1(e)-334(in)1(o)-334(on)-333(m\\363)28(wi\\252)-334(d)1(ale)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(akb)28(y)-333(zbrak)1(\\252)-1(o)-333(p)1(as)-1(zy)83(,)-333(to)-333(s)-1(i)1(\\246)-334(dok)1(upi)1(.)]TJ 0 -13.549 Td[({)-260(O)1(w)-1(sian)1(ki)-260(c)28(heba,)-259(b)-28(o)-259(\\273)-1(y)1(tniej)-259(s)-1(tar)1(c)-1(zy)-260(d)1(o)-260(zw)-1(i)1(e)-1(sn)28(y)84(.)-260(Ociec)-1(,)-259(o)-28(d)1(w)27(alcie)-260(k)28(op)-27(c)-1(zyk,)]TJ -27.879 -13.55 Td[(trza)-333(z)-1(a)-55(jrze\\242)-1(,)-333(c)-1(zy)-333(z)-1(i)1(e)-1(mni)1(aki)-333(nie)-333(prze)-1(wian)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sied\\271c)-1(i)1(e)-1(,)-333(za)-334(ci\\246\\273)-1(k)56(a)-333(la)-334(w)28(as)-334(r)1(ob)-28(ota,)-333(j)1(a)-334(o)-27(dk)28(opi)1(\\246)-1(.)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(\\363s)-1(\\252)-333(s)-1(i\\246,)-333(z)-1(d)1(j\\241\\252)-333(k)28(o\\273)-1(u)1(c)27(h)1(,)-334(zabr)1(a\\252)-334(\\252op)1(at\\246)-334(i)-333(wys)-1(ze)-1(d)1(\\252)-334(p)1(rze)-1(d)-333(d)1(om.)-334(')]TJ 0 -13.549 Td[(\\221n)1(iegu)-336(b)28(y\\252o)-337(p)1(ra)28(wie)-337(r\\363)28(wno)-336(z)-337(dac)28(hem)-1(,)-336(b)-27(o)-337(d)1(om)-337(s)-1(ta\\252)-336(na)-336(wydm)28(uc)27(h)29(u,)-336(z)-1(a)-336(ws)-1(i\\241)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-1(,)-250(o)-250(dob)1(re)-250(s)-1(ta)-55(je)-250(o)-28(d)-250(d)1(rogi,)-250(a)-250(n)1(ie)-251(os\\252oni\\246t)28(y)-250(ni)-250(p)1(\\252ote)-1(m,)-250(n)1(i)-250(s)-1(ad)1(e)-1(m,)-250(kil)1(k)55(a)-250(d)1(z)-1(ik)1(ic)27(h)1(,)]TJ 0 -13.55 Td[(p)-27(okr\\246c)-1(on)29(yc)27(h)-373(tr)1(z)-1(e\\261)-1(n)1(i)-374(r)1(os)-1(\\252o)-373(pr)1(z)-1(ed)-373(oknami,)-373(ale)-374(t)1(ak)-374(b)29(y\\252y)-373(z)-1(asypan)1(e)-1(,)-373(\\273e)-374(ino)-373(ga\\252\\246z)-1(ie)]TJ 0 -13.549 Td[(wysu)28(w)27(a\\252y)-298(si\\246)-298(z)-1(e)-298(\\261)-1(n)1(ie)-1(gu)1(,)-298(kiej)-298(te)-298(pal)1(c)-1(e)-298(c)27(hor)1(o\\261)-1(ci\\241)-298(p)-27(os)-1(kr)1(\\246)-1(cane.)-298(Sp)1(rze)-1(d)-297(okien)-298(to)-298(tam)]TJ 0 -13.549 Td[(stary)-356(j)1(e)-1(sz)-1(cz)-1(e)-356(do)-356(d)1(ni)1(a)-356(\\261)-1(n)1(ie)-1(g)-356(p)1(rze)-1(k)28(op)1(a\\252,)-356(z)-1(a\\261)-356(k)28(op)-27(c)-1(zyk)-356(z)-356(z)-1(i)1(e)-1(mniak)56(ami)-356(tak)-356(za)28(wia\\252o,)]TJ 0 -13.549 Td[(\\273e)-334(ani)-333(go)-333(b)28(y\\252o)-333(roze)-1(zna\\242)-334(sp)-27(o)-28(d)-333(\\261)-1(n)1(ieg\\363)27(w.)]TJ 27.879 -13.549 Td[(An)28(tek)-498(wzi\\241\\252)-498(s)-1(i)1(\\246)-499(ostro)-498(za)-498(r)1(ob)-28(ot\\246,)-498(b)-27(o)-498(\\261niegu)-498(b)29(y\\252o)-498(na)-498(c)28(h\\252op)1(a,)-498(a)-498(c)27(h)1(o)-28(cia\\273)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(e)-1(\\273y)83(,)-356(ule\\273)-1(a\\252)-357(si\\246)-357(ju)1(\\273)-357(i)-357(st\\246)-1(\\273a\\252)-357(ni)1(e)-1(co,)-357(\\273e)-358(t)1(rz)-1(a)-356(go)-357(b)28(y\\252o)-357(k)1(ra)-56(j)1(a\\242)-357(w)-357(c)-1(eg\\252y;)-357(zap)-28(o)-27(c)-1(i\\252)-356(s)-1(i\\246)]TJ 0 -13.549 Td[(te\\273)-356(ni)1(e)-1(zgorze)-1(j)1(,)-355(nim)-355(o)-28(dw)28(ali\\252,)-355(o)-28(c)28(hotn)1(ie)-356(j)1(e)-1(d)1(nak)-355(rob)1(i\\252)-355(i)-356(b)29(y\\252)-355(dobr)1(e)-1(j)-355(m)28(y\\261li,)-355(b)-27(o)-356(r)1(az)-356(w)]TJ 0 -13.549 Td[(raz)-307(r)1(z)-1(u)1(c)-1(a\\252)-306(p)-28(ec)-1(y)1(n\\241)-306(na)-306(dzie)-1(ci,)-306(bar)1(as)-1(zkuj)1(\\241c)-1(e)-307(p)1(rze)-1(d)-306(p)1(rogiem)-1(,)-306(in)1(o)-307(c)28(h)28(wilami,)-306(gdy)-306(m)27(u)]TJ 0 -13.549 Td[(si\\246)-308(pr)1(z)-1(y)1(p)-28(omin)1(a\\252)-1(y)-307(u)1(dr)1(\\246)-1(ki)-307(d)1(a)27(wn)1(e)-1(,)-307(mdla\\252y)-307(m)28(u)-307(r\\246c)-1(e,)-307(z)-1(ap)1(rze)-1(sta)28(w)27(a\\252)-307(rob)-27(ot)28(y)83(,)-307(ws)-1(p)1(iera\\252)]TJ 0 -13.549 Td[(si\\246)-376(grzbietem)-376(o)-375(\\261)-1(cian\\246)-375(i)-376(n)1(i\\363s\\252)-376(o)-28(czam)-1(i)-375(p)-27(o)-376(\\261wie)-1(cie.)-375(Wz)-1(d)1(yc)27(h)1(a\\252)-376(i)-375(zno)28(wu)-375(s)-1(i)1(\\246)-376(b\\252\\241k)56(a\\252)]TJ 0 -13.549 Td[(du)1(s)-1(z\\241)-333(jak)-333(ta)-333(o)27(w)28(ca)-334(zgub)1(iona)-333(w)-334(n)1(o)-28(c)-334(ciem)-1(n)1(\\241.)]TJ 27.879 -13.55 Td[(A)-280(dzie\\253)-280(b)28(y\\252)-280(c)27(h)1(m)27(u)1(rna)28(wy)84(,)-280(s)-1(zara)28(wy)83(,)-280(a)-280(pr)1(z)-1(ebielon)1(e)-281(ni)1(e)-1(b)-27(o)-280(wis)-1(i)1(a\\252)-1(o)-280(n)1(is)-1(k)28(o,)-280(\\261ni)1(e)-1(gi)]TJ -27.879 -13.549 Td[(roz\\261)-1(ciela\\252y)-277(si\\246)-277(grub)29(ym,)-277(pu)1(s)-1(zyst)28(ym)-277(k)28(o\\273)-1(u)1(c)27(hem)-277(i)-277(le\\273)-1(a\\252y)84(,)-277(j)1(ak)-277(okiem)-277(s)-1(i)1(\\246)-1(gn)1(\\241\\242)-1(,)-276(m)-1(o)-28(d)1(ra-)]TJ 0 -13.549 Td[(w)28(\\241)-339(i)-338(og\\252u)1(c)27(h\\252\\241,)-338(mart)28(w)28(\\241)-339(r)1(\\363)28(w)-1(n)1(i\\241;)-338(mgliste)-339(i)-338(pr)1(z)-1(ej\\246te)-339(st\\246)-1(\\273a\\252ymi)-338(s)-1(zron)1(am)-1(i)-338(p)-27(o)28(wie)-1(tr)1(z)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(\\252an)1(ia\\252o)-409(\\261)-1(wiat)-409(wsz)-1(ystek)-409(nib)29(y)-409(pr)1(z)-1(\\246dz\\241;)-409(\\273)-1(e)-409(to)-409(c)27(h)1(a\\252upa)-409(Byli)1(c)-1(o)28(w)28(a)-409(b)28(y\\252a)-409(jakb)29(y)]TJ 0 -13.549 Td[(na)-348(w)-1(zg\\363rku)1(,)-349(to)-349(wie\\261)-349(w)-1(i)1(dn)1(ia\\252a)-349(kieb)28(y)-349(n)1(a)-349(d\\252on)1(i;)-349(r)1(z)-1(\\246dy)-348(k)28(opic)-349(ab)-27(o)-349(i)-349(t)28(yc)28(h)-349(kr)1(e)-1(to)28(wisk)]TJ 0 -13.55 Td[(\\261nie\\273)-1(n)29(yc)27(h)-392(s)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-392(w)-393(p)-28(o)-27(dle)-393(sie)-1(b)1(ie)-393(i)-393(wied\\252y)-392(s)-1(i\\246)-393(d)1(ok)28(o\\252a)-393(z)-1(asyp)1(anego)-393(s)-1(ta)28(wu)-392(,)-393(an)1(i)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(a\\252)-377(gd)1(z)-1(ie)-377(c)27(h)1(a\\252up)28(y)-376(c)-1(a\\252ej,)-376(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-377(z)-1(n)1(ikn\\246\\252y)-377(p)-27(o)-28(d)-376(\\261)-1(n)1(ie)-1(gi)1(e)-1(m,)-377(k)56(a)-56(j)1(\\261)-377(niek)56(a)-56(j\\261)-377(in)1(o)]TJ\nET\nendstream\nendobj\n590 0 obj <<\n/Type /Page\n/Contents 591 0 R\n/Resources 589 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n589 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n595 0 obj <<\n/Length 9233      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(182)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cz)-1(erni)1(a\\252y)-264(\\261c)-1(i)1(an)28(y)-264(sto)-28(d)1(\\363\\252,)-264(k)1(\\252)-1(\\246bi)1(\\252)-1(y)-263(si\\246)-264(ru)1(de)-264(tor)1(fo)28(w)27(e)-264(d)1(ym)27(y)84(,)-263(to)-264(sz)-1(ar)1(z)-1(a\\252y)-263(dr)1(z)-1(ew)-1(i)1(n)28(y)-263(p)-28(o)-28(d)]TJ 0 -13.549 Td[(\\261niego)28(w)-1(y)1(m)-1(i)-404(c)-1(zapami,)-405(in)1(o)-405(g\\252os)-1(y)-404(ra\\271no)-405(si\\246)-405(roz)-1(l)1(e)-1(ga\\252y)-405(w)-405(t)28(yc)28(h)-405(b)1(ia\\252o\\261)-1(ciac)27(h)1(,)-405(lecia\\252y)]TJ 0 -13.549 Td[(z)-361(k)28(o\\253ca)-361(w)-360(k)28(oniec)-361(ws)-1(i,)-360(a)-361(mon)1(otonn)1(e)-361(c)-1(apan)1(ie)-361(ce)-1(p)-27(\\363)28(w)-361(du)1(dn)1(ia\\252o)-361(g\\252uc)28(ho)-360(jak)-360(gdyb)29(y)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)-382(z)-1(iemi.)-383(Drogi)-383(le\\273a\\252)-1(y)-383(p)1(uste)-384(i)-383(zas)-1(yp)1(ane,)-383(a)-383(na)-383(z)-1(a\\261ni)1(e)-1(\\273on)28(yc\\252n)-383(p)-28(ol)1(ac)27(h)-383(n)1(i)-383(\\273)-1(yw)28(a)]TJ 0 -13.549 Td[(du)1(s)-1(za)-301(n)1(ie)-301(m)-1(a)-55(jacz)-1(y\\252a,)-300(nic)-301(in)1(o)-301(ta)-301(p)1(rz)-1(eogromna)-300(pustk)56(a)-301(bi)1(a\\252a)-301(i)-301(mart)28(w)27(a,)-300(z)-1(ast)28(yg\\252a)-301(w)]TJ 0 -13.55 Td[(\\261niegac)27(h)1(.)-296(P)1(rze)-1(mglone)-296(d)1(ale)-296(tak)-295(s)-1(i)1(\\246)-296(s)-1(tap)1(ia\\252y)83(,)-295(\\273e)-296(ani)-295(roze)-1(zna\\242)-296(b)29(y\\252o)-296(n)1(ie)-1(b)1(a)-296(o)-27(d)-296(ziem)-1(i)1(;)]TJ 0 -13.549 Td[(jedn)1(e)-334(lasy)-333(m)-1(o)-27(drza\\252y)-333(niec)-1(o\\261)-333(z)-334(bi)1(e)-1(lm,)-333(jak)1(b)28(y)-333(tam)-334(c)27(h)1(m)27(u)1(ra)-333(w)-1(i)1(s)-1(ia\\252a.)]TJ 27.879 -13.549 Td[(Ale)-429(An)28(te)-1(k)-429(n)1(ied\\252ugo)-429(si\\246)-430(b)1(\\252\\241k)55(a\\252)-429(p)-27(o)-429(\\261)-1(n)1(ie)-1(\\273n)28(ym)-429(pu)1(s)-1(tk)28(o)28(wiu,)-429(n)1(a)28(w)-1(r)1(\\363)-28(ci\\252)-430(zno)28(wu)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)-290(n)1(a)-290(w)-1(i)1(e)-1(\\261,)-290(z)-1(a)-290(o)-56(j)1(c)-1(o)28(w)28(\\241)-290(c)27(ha\\252u)1(p\\241)-290(goni)1(\\252)-1(,)-290(n)1(ie)-291(zd\\241\\273y\\252)-290(z)-1(a\\261)-290(i)-290(p)-28(om)28(y\\261le)-1(\\242,)-290(b)-27(o)-291(Han)1(k)56(a)-291(an)1(o)]TJ 0 -13.549 Td[(wlaz\\252)-1(a)-333(d)1(o)-334(d)1(o\\252u)-333(i)-333(s)-1(tam)28(t\\241d)-333(s)-1(k)1(rz)-1(ecz)-1(a\\252a.)]TJ 27.879 -13.549 Td[({)-248(Nie)-248(pr)1(z)-1(emarz)-1(\\252y)1(!)-248(W)83(ac)28(hn)1(ik)28(om)-248(tak)-248(wiatry)-247(pr)1(z)-1(ez)-1(i\\246bi)1(\\252y)83(,)-248(\\273e)-248(z)-249(p)-27(\\363\\252)-248(do\\252u)-247(m)27(u)1(s)-1(ieli)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(niami)-333(s)-1(p)1(a\\261)-1(\\242,)-333(a)-334(n)1(as)-1(ze)-334(zdro)28(w)28(e)-1(.)]TJ 27.879 -13.549 Td[({)-433(A)-432(dob)1(rze)-1(.)-432(Wyj)1(d\\271)-433(no,)-432(widzi)-432(m)-1(i)-432(s)-1(i)1(\\246)-1(,)-432(\\273)-1(e)-433(id)1(\\241)-433(\\233yd)1(y!)-432(T)83(rza)-433(kr)1(o)27(w)28(\\246)-433(wywie)-1(\\261\\242)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(dom!)]TJ 27.879 -13.549 Td[({)-297(Ju\\261c)-1(i)1(,)-298(\\273e)-298(\\233yd)1(y)83(,)-297(a)-297(nie)-297(kto)-297(dru)1(gi,)-297(ju)1(\\261)-1(ci,)-297(\\273e)-298(te)-298(zap)-28(o)28(wietrzone!)-298({)-297(za)27(w)28(o\\252a\\252a)-298(ze)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261ci\\241.)]TJ 27.879 -13.55 Td[(Jak)28(o\\273)-324(o)-28(d)-323(k)56(arcz)-1(m)28(y)83(,)-323(pr)1(z)-1(ez)-324(dr\\363\\273k)28(\\246)-1(,)-323(do)-323(c)-1(n)1(a)-324(zas)-1(yp)1(an\\241)-323(i)-324(ledwie)-324(co)-324(p)-27(oz)-1(n)1(ac)-1(zon\\241)]TJ -27.879 -13.549 Td[(St)1(ac)27(ho)28(wymi)-364(t)1(re)-1(p)1(isk)55(ami,)-363(k)28(opa\\252o)-363(s)-1(i\\246)-364(d)1(w)27(\\363)-27(c)27(h)-363(\\233yd\\363)28(w,)-363(ju)1(\\261)-1(ci,)-363(\\273)-1(e)-364(p)1(ie)-1(ski)-363(pr)1(a)27(wie)-364(z)-364(p)-27(\\363\\252)]TJ 0 -13.549 Td[(ws)-1(i)-382(goni\\252y)-383(za)-383(nimi)-383(z)-383(w)-1(i)1(e)-1(lg\\241)-383(u)1(c)-1(i)1(e)-1(c)28(h\\241)-383(i)-383(sz)-1(cz)-1(ek)56(aniem,)-383(a)-383(tak)-383(z)-1(a)-55(jad)1(le)-383(dobi)1(e)-1(ra\\252y)-382(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-333(n)1(ic)27(h)1(,)-334(a\\273)-333(An)28(tek)-334(wysz)-1(ed\\252)-333(nap)1(rze)-1(ciw)-333(i)-334(ob)1(ron)1(i\\252)]TJ 27.879 -13.549 Td[({)-228(Jak)-227(s)-1(i)1(\\246)-228(m)-1(acie,)-228(no?)-227(Sp)-27(\\363\\271)-1(n)1(ilim)-228(si\\246,)-228(b)-27(o)-228(taki)1(e)-229(\\261ni)1(e)-1(gi,)-227(takie)-228(\\261ni)1(e)-1(gi!)-227(Ani)-227(pr)1(z)-1(ej\\261\\242)-1(,)]TJ -27.879 -13.55 Td[(ani)-333(p)1(rze)-1(j)1(e)-1(c)28(ha\\242,)-334(wiec)-1(i)1(e)-1(?)-333(A)-334(w)-333(b)-28(or)1(u)-333(to)-333(ju)1(\\273)-334(s)-1(zarw)28(arkiem)-334(p)1(rze)-1(k)28(op)1(uj)1(\\241)-334(d)1(rog\\246!)]TJ 27.879 -13.549 Td[(Nic)-414(si\\246)-414(n)1(ie)-414(ozw)27(a\\252)-413(na)-413(ic)27(h)-413(gad)1(ani)1(e)-1(,)-413(in)1(o)-414(d)1(o)-414(izb)28(y)-413(p)-27(opro)28(w)28(adzi\\252,)-413(b)28(y)-413(s)-1(i)1(\\246)-414(niec)-1(o)]TJ -27.879 -13.549 Td[(rozgrzali.)]TJ 27.879 -13.549 Td[(Hank)56(a)-405(za\\261)-406(wytar)1(\\252a)-405(kro)28(wie)-405(ogno)-55(jone)-405(b)-27(oki,)-405(o)-27(ddoi)1(\\252a)-405(m)-1(lek)28(o,)-405(co)-405(s)-1(i)1(\\246)-406(j)1(e)-1(j)-404(tam)]TJ -27.879 -13.549 Td[(o)-28(d)-429(ran)1(a)-430(uzbi)1(e)-1(ra\\252o,)-429(i)-430(p)1(rz)-1(ewied\\252a)-430(p)1(rz)-1(ez)-430(izb)-28(\\246)-430(na)-429(dw)28(\\363r.)-430(K)1(ro)28(w)27(a)-430(si\\246)-430(opi)1(e)-1(r)1(a\\252)-1(a,)-429(s)-1(z\\252a)]TJ 0 -13.55 Td[(ni)1(e)-1(c)28(h\\246tnie,)-306(a)-305(prze)-1(st\\241)-28(p)1(iws)-1(zy)-306(p)1(r\\363g)-306(wyci\\241)-28(ga\\252a)-305(g\\246)-1(b)1(ul\\246,)-306(w)28(\\241c)27(h)1(a\\252)-1(a,)-305(to)-306(\\261nieg)-306(j)1(\\246)-1(\\252a)-306(zlizy-)]TJ 0 -13.549 Td[(w)28(a\\242)-1(,)-335(a\\273)-336(n)1(i)-335(s)-1(t\\241d)1(,)-335(ni)-335(zo)28(w)27(\\241d)-335(zarycza\\252)-1(a)-335(p)1(rz)-1(eci\\241)-28(gle,)-335(c)-1(i)1(c)27(ho)-335(a)-335(\\273)-1(a\\252o\\261nie,)-335(i)-335(tak)-335(si\\246)-336(rw)28(a\\252a)]TJ 0 -13.549 Td[(z)-334(p)-27(os)-1(t)1(ronk)56(a,)-333(\\273e)-334(le)-1(d)1(wie)-334(j)1(\\241)-334(stary)-333(u)1(dzie)-1(r)1(\\273)-1(a\\252.)]TJ 27.879 -13.549 Td[(Hank)56(a)-370(ju)1(\\273)-371(n)1(ie)-371(mog\\252a)-371(tego)-370(prze)-1(n)1(ie\\261)-1(\\242,)-370(\\273)-1(al)-370(j)1(\\241)-371(p)1(rze)-1(j)1(\\241\\252)-371(sz)-1(r)1(ogi)-370(i)-370(tak)-370(\\261)-1(wid)1(ruj)1(\\241-)]TJ -27.879 -13.549 Td[(cy)83(,)-413(a\\273)-414(bu)1(c)27(hn)1(\\246)-1(\\252a)-413(p\\252acz)-1(em)-1(,)-413(a)-414(za)-414(n)1(i\\241)-414(i)-413(d)1(z)-1(iec)-1(i)-413(cz)-1(epia)-55(j\\241c)-414(si\\246)-414(matc)-1(zynego)-414(w)28(e\\252)-1(n)1(iak)56(a)]TJ 0 -13.55 Td[(ud)1(e)-1(r)1(z)-1(y)1(\\252)-1(y)-354(w)-356(k)1(rz)-1(y)1(k)-355(i)-355(lame)-1(n)29(t!)-355(An)28(tk)28(o)28(wi)-355(te\\273)-356(n)1(ie)-356(b)28(y)1(\\252o)-356(w)28(es)-1(o\\252o,)-355(n)1(ie)-1(,)-354(ino)-355(z\\246)-1(b)28(y)-354(z)-1(asiek\\252,)]TJ 0 -13.549 Td[(ws)-1(p)1(ar\\252)-420(si\\246)-420(o)-419(\\261)-1(cian\\246)-420(i)-419(pat)1(rz)-1(y)1(\\252)-420(na)-419(wron)28(y)84(,)-420(co)-420(si\\246)-420(zle)-1(cia\\252y)-419(na)-420(r)1(oz)-1(gr)1(z)-1(eban)28(y)-419(z)-420(d)1(o\\252)-1(u)]TJ 0 -13.549 Td[(\\261nieg,)-347(a)-348(h)1(and)1(larze)-348(z)-1(a\\261)-347(s)-1(zw)27(ar)1(gotali)-347(m)-1(i)1(\\246)-1(d)1(z)-1(y)-347(sob\\241)-347(i)-348(wzi\\246li)-347(kro)28(w)27(\\246)-347(m)-1(aca\\242)-348(a)-347(ogl\\241da\\242)]TJ 0 -13.549 Td[(ze)-334(ws)-1(zys)-1(t)1(kic)27(h)-333(stron)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-267(\\273e)-268(An)28(tk)28(om)-267(zrobi)1(\\252)-1(o)-267(si\\246)-267(w)-268(serc)-1(ac)28(h)-267(ki)1(e)-1(j)-267(n)1(a)-267(p)-27(ogrz)-1(ebi)1(e)-1(,)-267(a\\273e)-268(si\\246)-267(o)-28(dwracali)]TJ -27.879 -13.549 Td[(o)-28(d)-356(b)29(ydl)1(\\241tk)55(a,)-356(co)-356(pr\\363\\273no)-356(si\\246)-357(tar)1(ga\\252o)-357(n)1(a)-356(u)28(wi\\246)-1(zi,)-356(d)1(armo)-357(wyk)1(r\\246)-1(ca\\252o)-356(do)-356(gos)-1(p)-27(o)-28(d)1(arzy)]TJ 0 -13.55 Td[(wyba\\252u)1(s)-1(zone)-333(i)-334(ze)-1(strac)28(han)1(e)-334(o)-28(cz)-1(y)84(,)-333(darmo)-333(p)-28(or)1(ykiw)28(a\\252o)-334(g\\252u)1(c)27(h)1(o.)]TJ 27.879 -13.549 Td[({)-349(Je)-1(zu!)1(...)-349(Na)-349(tom)-350(ci\\246,)-349(kr\\363)28(wk)28(o,)-349(pas\\252a,)-349(na)-349(tom)-350(zabi)1(e)-1(ga\\252a,)-349(na)-349(tom)-349(s)-1(tar)1(un)1(e)-1(k)]TJ -27.879 -13.549 Td[(o)-355(tobie)-356(mia\\252a..)1(.)-356(b)29(y)-356(ci\\246)-356(n)1(a)-356(rze\\271)-356(p)-28(o)28(wiedli)1(...n)1(a)-356(zatrace)-1(n)1(ie)-1(.)1(..)-355({)-356(lamen)28(to)28(w)27(a\\252a)-355(Hank)56(a)]TJ 0 -13.549 Td[(t\\252uk)56(\\241c)-259(g\\252o)28(w)27(\\241)-258(o)-259(\\261c)-1(ian)1(\\246)-1(,)-258(a)-259(d)1(z)-1(iec)-1(i)-258(te\\273)-259(w)-259(p\\252acz)-1(li)1(w)-1(y)-258(wt\\363r)-259(b)1(i\\252y)84(.)-259(Ale)-259(p)-27(o)-259(p)1(r\\363\\273nicy)-259(l)1(am)-1(en-)]TJ 0 -13.549 Td[(t)28(y)-296(a)-296(p\\252acz)-1(e,)-296(na)-296(dar)1(m)-1(o,)-296(b)-27(o)-296(m)27(u)1(s)-1(u)1(,)-296(c)-1(z\\252o)27(wiec)-1(ze,)-296(nie)-296(prze)-1(p)1(rze)-1(sz)-1(,)-296(d)1(oli)-296(n)1(ie)-297(p)1(rz)-1(emo\\273)-1(es)-1(z)]TJ 0 -13.55 Td[(ni)-333(tego,)-333(c)-1(o)-333(b)28(y)1(\\242)-334(m)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(c)27(h)1(c)-1(ecie)-1(?)-333({)-334(sp)28(yta\\252)-333(wres)-1(zc)-1(i)1(e)-334(s)-1(tar)1(s)-1(zy)83(,)-333(siwy)-333(\\233yd.)]TJ\nET\nendstream\nendobj\n594 0 obj <<\n/Type /Page\n/Contents 595 0 R\n/Resources 593 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n593 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n598 0 obj <<\n/Length 9082      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(183)]TJ -330.353 -35.866 Td[({)-333(T)83(rzys)-1(t)1(a)-334(z\\252ot)28(yc)27(h.)]TJ 0 -13.549 Td[({)-333(T)83(rzys)-1(t)1(a)-334(z\\252ot)28(yc)27(h)-333(za)-334(t\\246)-333(c)27(hab)1(ani)1(n\\246!)-334(W)1(y)83(,)-333(An)28(ton)1(i,)-333(c)27(h)1(ory)-333(jes)-1(t)1(e)-1(\\261c)-1(ie)-333(c)-1(zy)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-381(T)27(y)-380(m)-1(i)-381(o)-28(d)-380(c)27(h)1(abani)1(n)-381(na)-381(n)1(i\\241)-381(ni)1(e)-382(p)28(ysku)1(j,)-381(b)28(y)1(\\261)-382(cz)-1(ego)-381(nie)-381(ob)-28(erw)28(a\\252!)-381(Wid)1(z)-1(isz)]TJ -27.879 -13.549 Td[(go,)-333(kro)28(w)28(a)-334(m\\252o)-28(d)1(a,)-334(n)1(a)-333(pi\\241t)28(y)-333(rok)-333(ledw)28(o)-333(idzie,)-334(spa\\261na)-333({)-333(wrz)-1(esz)-1(cz)-1(a\\252a)-333(Hank)56(a.)]TJ 27.879 -13.549 Td[({)-371(Sza...)-370(s)-1(za...)-371(w)-371(h)1(and)1(lu)-371(gn)1(ie)-1(wu)-370(nie)-371(ma)-371(o)-371(to)-371(s)-1(\\252o)28(w)27(o.)1(..)-371(b)1(ie)-1(r)1(z)-1(ec)-1(i)1(e)-372(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(\\261c)-1(i)]TJ -27.879 -13.55 Td[(ru)1(bli)1(?)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252em)-334(sw)27(o)-55(je!)]TJ 0 -13.549 Td[({)-406(I)-405(ja)-406(m\\363)28(w)-1(i)1(\\246)-406(s)-1(w)28(o)-56(j)1(e)-1(,)-405(trzydzie\\261)-1(ci)-406(j)1(e)-1(d)1(e)-1(n)1(...)-405(no,)-406(t)1(rz)-1(y)1(dzie)-1(\\261ci)-406(jeden)-405(i)-406(p)-27(\\363\\252...)-405(no,)]TJ -27.879 -13.549 Td[(trzyd)1(z)-1(ie\\261c)-1(i)-333(dw)28(a)-333({)-334(d)1(a)-56(j)1(c)-1(ie)-333(r\\246)-1(k)28(\\246...)-333(n)1(o,)-333(trzydzie\\261)-1(ci)-333(dw)28(a)-334(i)-333(p)-27(\\363\\252...)-333(zgo)-28(da?)]TJ 27.879 -13.549 Td[({)-333(Rz)-1(ek\\252e)-1(m.)]TJ 0 -13.549 Td[({)-278(Ostatnie)-278(s)-1(\\252o)28(w)27(o,)-278(t)1(rz)-1(y)1(dzie)-1(\\261ci)-278(i)-278(trz)-1(y)1(!)-278(Nie)-1(,)-278(t)1(o)-279(n)1(ie!{)-278(p)-28(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-279(\\015)1(e)-1(gmat)28(ycz)-1(n)1(ie)]TJ -27.879 -13.55 Td[(i)-333(ogl\\241d)1(a\\252)-334(si\\246)-334(za)-334(sw)27(oi)1(m)-1(,)-333(ki)1(jem)-1(,)-333(a)-333(s)-1(tar)1(s)-1(zy)-333(z)-1(ap)1(ina\\252)-333(c)27(h)1(a\\252at.)]TJ 27.879 -13.549 Td[({)-374(Za)-374(te)-1(lac)28(hn)1(\\241)-375(k)1(ro)28(w)27(\\246!..)1(.)-374(A)-374(dy\\242)-374(b)-28(\\363)-55(jcie)-375(si\\246)-375(Boga,)-374(lu)1(dzie...kr)1(o)28(w)27(a)-374(kiej)-374(ob)-27(ora,)]TJ -27.879 -13.549 Td[(sam)-1(a)-299(sk)28(\\363ra)-299(w)27(ar)1(ta)-299(z)-300(d)1(z)-1(i)1(e)-1(si\\246)-1(\\242)-299(ru)1(bli)1(...)-299(za)-299(te)-1(lac)28(hn)1(\\241)-299(kro)28(w)28(\\246)-1(...)-298(os)-1(zuk)56(a\\253ce)-1(.)1(..)-299(Chr)1(ys)-1(t)1(o)-1(b)1(i-)]TJ 0 -13.549 Td[(je...)-333({)-333(j\\241k)56(a\\252)-333(s)-1(tar)1(y)-333(oklepuj)1(\\241c)-334(kr)1(o)27(w)28(\\246,)-334(j)1(e)-1(n)1(o)-334(\\273e)-334(n)1(ikto)-333(ni)1(e)-334(z)-1(w)28(a\\273)-1(a\\252)-333(na)-333(n)1(ie)-1(go.)]TJ 27.879 -13.549 Td[(\\233yd)1(z)-1(i)-305(rozp)-27(o)-28(c)-1(z\\246li)-305(z)-1(a)-55(jad)1(\\252e)-306(targi)1(,)-305(An)28(tek)-305(te)-1(\\273)-305(s)-1(ta\\252)-305(t)28(w)27(ar)1(do)-305(pr)1(z)-1(y)-305(sw)27(oi)1(m)-1(,)-305(op)1(u\\261c)-1(i)1(\\252)]TJ -27.879 -13.55 Td[(co\\261)-365(n)1(ie)-1(co\\261,)-364(ale)-364(ni)1(e)-1(wiela,)-364(b)-27(o)-364(p)-27(o)-364(pr)1(a)28(w)-1(d)1(z)-1(i)1(e)-365(kr)1(o)28(w)27(a)-364(b)29(y\\252a)-364(du)1(\\273)-1(o)-364(w)28(arta,)-363(i)-364(\\273e)-1(b)28(y)-363(tak)-364(n)1(a)]TJ 0 -13.549 Td[(zw)-1(i)1(e)-1(sn\\246)-352(i)-352(gos)-1(p)-27(o)-28(dar)1(z)-1(o)28(wi)-352(sprze)-1(d)1(a\\242)-1(,)-352(d)1(os)-1(t)1(a\\252)-1(b)29(y)-352(pi\\246\\242dzie)-1(si\\241t)-352(ru)1(bli)-351(jak)-352(n)1(ic)-1(.)-352(Al)1(e)-353(gdzie)]TJ 0 -13.549 Td[(m)27(u)1(s)-427(p)-28(ogan)1(ia,)-426(tam)-427(bieda)-426(z)-1(a)-426(orcz)-1(yk)1(i)-427(ci\\241)-28(gn)1(ie)-427({)-427(\\233yd)1(y)-427(d)1(obrze)-427(o)-427(t)28(ym)-427(wiedzia\\252y)-426(i)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(cia)-395(wrze)-1(sz)-1(cze)-1(li)-394(c)-1(or)1(az)-395(g\\252o\\261)-1(n)1(ie)-1(j)-394(i)-394(c)-1(or)1(az)-395(z)-1(ap)1(alc)-1(zywiej)-394(bili)-394(w)-395(An)28(t)1(k)28(o)27(w)28(\\241)-395(d)1(\\252o\\253)-395(n)1(a)]TJ 0 -13.549 Td[(zgo)-28(d\\246,)-333(przyrzucali)-333(ma\\252o)-334(wiele,)-333(na)-56(j)1(wy\\273)-1(ej)-333(p)-27(o)-334(p)-27(\\363\\252)-333(rub)1(la...)]TJ 27.879 -13.55 Td[(Ju)1(\\273)-292(b)28(y\\252o)-291(tak)1(,)-291(\\273)-1(e)-291(o)-28(dc)28(ho)-28(d)1(z)-1(i)1(li)-291(zagniew)27(an)1(i,)-291(j)1(u\\273)-292(Han)1(k)56(a)-291(kro)28(w)27(\\246)-291(ci\\241)-28(ga\\252a)-291(z)-292(p)-27(o)28(w)-1(r)1(o-)]TJ -27.879 -13.549 Td[(tem)-322(do)-322(zagro)-28(d)1(y)83(,)-321(i)-321(na)28(w)27(et)-322(An)29(te)-1(k)-321(s)-1(i\\246)-322(r)1(oz)-1(sierdzi\\252)-322(i)-321(got\\363)28(w)-322(b)28(y\\252)-322(spr)1(z)-1(eda\\273y)-322(p)-27(on)1(ie)-1(c)28(ha\\242,)]TJ 0 -13.549 Td[(ale)-328(ku)1(p)-28(cy)-328(wr)1(\\363)-28(c)-1(i)1(li)-328(i)-327(jak)-327(z)-1(acz)-1(\\246li)-327(krzycz)-1(e\\242)-1(,)-327(han)1(dry)1(c)-1(zy\\242)-328(a)-328(p)1(rz)-1(y)1(s)-1(i\\246ga\\242,)-328(\\273e)-329(wi\\246ce)-1(j)-327(da\\242)]TJ 0 -13.549 Td[(ni)1(e)-317(m)-1(og\\241,)-316(a)-316(w)-317(r)1(\\246)-1(ce)-317(pr)1(z)-1(ebij)1(a\\242)-317(i)-316(kro)28(w)28(\\246)-317(z)-1(n)1(o)28(w)-1(u)-316(p)-27(enetro)28(w)27(a\\242,)-316(tak)-316(i)-317(stan)1(\\246)-1(\\252a)-316(z)-1(go)-28(d)1(a)-317(n)1(a)]TJ 0 -13.549 Td[(cz)-1(terd)1(z)-1(ies)-1(tu)-332(rub)1(lac)27(h)-333(i)-333(d)1(w)27(\\363)-27(c)27(h)-333(z\\252)-1(ot)28(y)1(c)27(h)-333(p)-27(os)-1(tr)1(onk)28(o)28(w)27(ego)-333(la)-334(Byl)1(ic)-1(y)84(.)]TJ 27.879 -13.55 Td[(Wyp)1(\\252ac)-1(i)1(li)-238(z)-1(araz)-238(na)-238(r\\246k)28(\\246)-1(;)-238(stary)-238(p)-27(o)27(wi\\363)-27(d\\252)-238(z)-1(a)-238(nimi)-238(kr)1(o)27(w)28(\\246)-239(d)1(o)-239(sa\\253,)-238(kt\\363r)1(e)-239(c)-1(zek)55(a\\252y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-431(k)56(arczm)-1(\\241,)-431(Han)1(k)56(a)-431(z)-1(a\\261)-431(z)-431(dzie)-1(\\242mi)-431(o)-28(dp)1(ro)28(w)28(adza\\252)-1(a)-431(k)1(rasul\\246)-431(a\\273)-432(d)1(o)-431(dr)1(ogi,)-431(a)-431(co)]TJ 0 -13.549 Td[(tro)-27(c)27(h\\246)-484(to)-485(j)1(\\241)-485(g\\252adzi\\252a)-484(p)-28(o)-484(g\\246)-1(b)1(ul)1(i,)-485(t)1(o)-485(p)-27(ok\\252ada\\252a)-484(s)-1(i)1(\\246)-485(na)-484(niej,)-484(a)-484(o)-28(derw)28(a\\242)-485(s)-1(i)1(\\246)-485(nie)]TJ 0 -13.549 Td[(mog\\252a)-334(o)-28(d)-332(b)28(ydl)1(\\241tk)55(a)-333(n)1(i)-334(p)1(rzycis)-1(zy\\242)-334(f)1(rasunk)1(u)-333(i)-333(\\273)-1(a\\252o\\261c)-1(i.)1(..)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-367(na)-367(d)1(ro)-28(d)1(z)-1(e)-367(pr)1(z)-1(ystan)1(\\246)-1(\\252a)-367(za)-367(ni)1(\\241)-367(i)-367(p)-27(om)-1(sto)28(w)27(a\\242)-367(z)-367(c)-1(a\\252ej)-366(duszy)-367(na)-366(t)27(y)1(c)27(h)]TJ -27.879 -13.55 Td[(\\273\\363\\252)-1(t)1(k)28(\\363)27(w)-333(niec)27(h)1(rzc)-1(zon)28(yc)27(h)1(!)]TJ 27.879 -13.549 Td[(T)28(yl\\241)-321(kro)28(w)27(\\246)-321(s)-1(tr)1(ac)-1(i\\242,)-321(to)-321(i)-322(n)1(ie)-322(d)1(z)-1(iw)28(ota,)-321(\\273)-1(e)-321(k)28(obiec)-1(i)1(e)-322(z)-1(agr)1(a\\252a)-322(w)28(\\241trob)1(a)-322(p)-27(oms)-1(t\\241.)]TJ 0 -13.549 Td[({)-320(Jakb)28(y)-320(k)28(ogo)-321(z)-320(c)27(ha\\252u)1(p)28(y)-320(na)-320(m)-1(ogi)1(\\252)-1(k)1(i)-321(wywie\\271)-1(l)1(i,)-320(tak)-320(pusto)-320({)-321(r)1(z)-1(ek\\252a)-321(z)-321(n)1(a)28(w)-1(r)1(o-)]TJ -27.879 -13.549 Td[(tem)-311(i)-310(co)-310(tro)-28(c)28(h\\246)-311(zagl\\241d)1(a\\252)-1(a)-310(d)1(o)-311(p)1(ustej)-310(z)-1(agr)1(\\363)-28(dk)1(i,)-310(to)-310(pr)1(z)-1(ez)-311(okn)1(o)-311(p)1(atrza\\252a)-310(na)-310(\\261)-1(cie\\273)-1(k)28(\\246)]TJ 0 -13.549 Td[(zdeptan)1(\\241,)-327(p)-28(oznaczon\\241)-327(\\252a)-56(j)1(nem)-327(i)-327(\\261)-1(l)1(adami)-327(k)28(op)28(yt)1(,)-327(a)-327(raz)-327(w)-327(raz)-327(w)-1(y)1(buc)28(ha\\252a)-327(p)1(\\252ac)-1(ze)-1(m)]TJ 0 -13.549 Td[(i)-333(wyrze)-1(k)56(ani)1(e)-1(m:)]TJ 27.879 -13.55 Td[({)-363(P)1(rze)-1(sta\\252ab)28(y\\261,)-363(a)-362(to)-363(j)1(ak)-363(to)-362(c)-1(iele)-363(bu)1(c)-1(zy)-362(i)-363(b)1(ucz)-1(y!)1({)-363(krzykn)1(\\241\\252)-363(An)28(tek)-362(s)-1(iedz\\241c)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(roz\\252o\\273)-1(on)28(y)1(m)-1(i)-333(n)1(a)-334(stole)-334(p)1(ieni\\246dzmi.)]TJ 27.879 -13.549 Td[({)-353(K)1(ogo)-353(nie)-353(b)-27(oli,)-352(tem)27(u)-352(ws)-1(zys)-1(t)1(k)28(o)-353(p)-28(o)28(w)28(oli.)-352(Nie)-353(b)-27(ola\\252a)-353(c)-1(i)1(\\246)-353(bieda,)-352(kiej\\261)-353(kr)1(o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(zm)-1(ar)1(no)28(w)27(a\\252)-333(i)-333(\\233ydom)-333(na)-333(rze)-1(\\271)-334(wyd)1(a\\252!)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(oze)-1(d)1(r\\246)-334(si\\246)-334(p)-27(ew)-1(n)1(ie)-334(i)-333(z)-334(l)1(e)-1(li)1(t)-334(ci)-333(pieni)1(\\241dze)-334(wypu)1(s)-1(zc)-1(z\\246)-1(,)-333(co?)]TJ 0 -13.55 Td[({)-329(Jak)-329(te)-329(os)-1(tatn)1(ie)-329(k)28(om)-1(or)1(niki)-328(os)-1(tali)1(m)-1(,)-329(j)1(ak)-329(te)-329(dziadaki)1(,)-329(ani)-329(t)1(e)-1(j)-329(k)56(ap)1(ki)-329(mle)-1(k)56(a,)]TJ -27.879 -13.549 Td[(ani)-348(p)-27(o)-28(cie)-1(c)28(h)28(y)-348(\\273)-1(ad)1(nej!)-348(T)27(yl)1(e)-1(m)-349(si\\246)-349(d)1(orobi)1(\\252)-1(a)-348(na)-348(s)-1(w)28(o)-56(j)1(e)-1(m,)-348(t)28(yle!)-349(M)1(\\363)-56(j)-348(Jez)-1(u)1(!)-349(M)1(\\363)-56(j)-348(Jez)-1(u)1(!)]TJ\nET\nendstream\nendobj\n597 0 obj <<\n/Type /Page\n/Contents 598 0 R\n/Resources 596 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n596 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n601 0 obj <<\n/Length 8773      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(184)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(Dru)1(gie)-453(zabiega)-56(j)1(\\241,)-453(j)1(ak)-453(te)-453(w)28(o\\252)-1(y)-452(orz\\241)-453(i)-452(jes)-1(zc)-1(ze)-453(c)-1(o\\261)-453(d)1(o)-453(dom)28(u)-453(p)1(rzyku)1(pu)1(j\\241,)-453(a)-452(te)-1(n)]TJ 0 -13.549 Td[(ostatni\\241)-300(kro)28(w)27(\\246,)-301(com)-301(o)-28(d)-300(o)-56(j)1(c)-1(\\363)28(w)-301(dosta\\252a,)-301(spr)1(z)-1(eda)-55(je...Ju)1(\\273)-302(c)28(h)28(yb)1(a)-301(os)-1(t)1(atnia)-301(marn)1(ac)-1(j)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(jdzie,)-333(os)-1(tatn)1(ia!)-333({)-333(z)-1(a)28(w)27(o)-27(dzi\\252a)-334(n)1(ieprzytomni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-493(R)-1(y)1(c)-1(z,)-493(to)-494(ci)-493(ano)-493(o)-28(de)-494(\\252b)1(a)-494(o)-28(d)1(c)-1(i)1(\\241)-28(gni)1(e)-1(,)-493(jak)28(e\\261)-494(g\\252up)1(ia)-493(i)-494(wyr)1(oz)-1(u)1(m)-1(ieni)1(a)-494(n)1(ie)]TJ -27.879 -13.549 Td[(mas)-1(z!)-308(Na\\261c)-1(i)-307(pieni)1(\\241dze)-1(,)-307(p)-28(op)1(\\252a\\242)-1(,)-307(gdzie)-1(\\261)-308(win)1(na,)-307(kup)1(,)-308(co)-28(\\242)-308(p)-28(ot)1(rz)-1(a,)-307(a)-308(r)1(e)-1(sz)-1(t\\246)-308(sc)27(ho)28(w)28(a)-56(j)1(!)]TJ 0 -13.55 Td[({)-333(p)-28(o)-27(dsun\\241\\252)-333(ku)1(pk)28(\\246)-334(p)1(ie)-1(n)1(i\\246dzy)83(,)-333(a)-333(pi\\246\\242)-334(r)1(ubl)1(i)-333(papi)1(e)-1(ro)28(w)28(e)-334(sc)27(ho)28(w)28(a\\252)-334(d)1(o)-334(p)1(ular)1(e)-1(su.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(co)-333(c)-1(i)-333(t)28(yla)-333(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)1(?)]TJ 0 -13.549 Td[({)-333(Na)-334(co?)-334(z)-333(kijem)-334(t)28(yl)1(k)28(o)-334(n)1(ie)-334(p)-27(\\363)-56(j)1(d\\246.)]TJ 0 -13.549 Td[({)-333(Gdzie)-334(si\\246)-334(to)-333(wyb)1(ie)-1(r)1(as)-1(z?)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(\\261wiat,)-333(rob)-27(ot)28(y)-333(p)-28(osz)-1(u)1(k)56(am)-1(,)-333(gn)1(i\\252)-334(t)1(uta)-55(j)-333(nie)-333(b)-28(\\246d\\246!)]TJ 0 -13.549 Td[({)-280(W)83(e)-280(\\261)-1(wiat!)-280(W)1(s)-1(z\\246)-1(d)1(z)-1(ie)-280(psi)-280(b)-28(oso)-280(c)27(h)1(o)-28(dz\\241,)-280(ws)-1(z\\246)-1(d)1(z)-1(ie)-280(biedn)1(e)-1(m)28(u)-280(wiater)-280(w)-281(k)1(\\252)-1(\\246b)28(y)]TJ -27.879 -13.55 Td[(wieje!)-293(Sama)-294(t)1(o)-294(ostan\\246,)-293(co?)-294({)-293(p)-27(o)-28(dn)1(os)-1(i\\252a)-293(g\\252os)-294(b)-27(ez)-1(wiedn)1(ie)-294(i)-293(gro\\271ni)1(e)-294(si\\246)-294(p)1(rz)-1(y)1(s)-1(u)28(w)28(a\\252a)]TJ 0 -13.549 Td[(do)-359(ni)1(e)-1(go,)-359(ni)1(e)-360(z)-1(w)28(a\\273)-1(a\\252)-359(na)-359(to,)-359(przy)28(o)-28(d)1(z)-1(ia\\252)-359(s)-1(i)1(\\246)-360(w)-360(k)28(o\\273uc)27(h)1(,)-359(pase)-1(m)-360(op)1(as)-1(a\\252)-359(i)-360(za)-359(c)-1(zapk)56(\\241)]TJ 0 -13.549 Td[(ogl\\241d)1(a\\252.)]TJ 27.879 -13.549 Td[({)-333(U)-334(c)28(h\\252op)-27(\\363)27(w)-333(rob)1(i\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(,)-333(\\273e)-1(b)29(ym)-334(mia\\252)-333(s)-1(k)56(api)1(e)-1(\\242,)-333(nie)-333(b)-28(\\246d\\246!)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252.)]TJ 0 -13.549 Td[({)-333(Organ)1(is)-1(t)1(a)-334(p)-27(otrze)-1(b)1(uj)1(e)-334(do)-333(m\\252o)-28(c)27(ki)1(!...)]TJ 0 -13.55 Td[({)-307(Hale,)-307(ciarac)28(h)-307(j)1(e)-1(d)1(e)-1(n)1(,)-307(cio\\252e)-1(k)-306(taki,)-306(c)-1(o)-307(in)1(o)-307(na)-306(c)27(h\\363r)1(z)-1(e)-307(b)-27(e)-1(ku)1(je)-307(a)-307(gosp)-28(o)-28(d)1(arzom)]TJ -27.879 -13.549 Td[(w)-301(gar)1(\\261)-1(cie)-301(p)1(atrzy)-300(i)-300(\\273)-1(yj)1(e)-301(t)28(ym,)-300(c)-1(o)-300(up)1(rosi)-300(le)-1(b)-27(o)-300(c)-1(o)-300(wyc)-1(y)1(gani,)-300(d)1(o)-301(tak)1(ie)-1(go)-300(na)-300(wyrob)-27(ek)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(\\363)-56(jd)1(\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(nie)-333(m)-1(a)-333(c)27(h)1(\\246)-1(ci,)-333(te\\253)-333(w)-1(i)1(e)-1(,)-333(jak)-333(wyk)1(r\\246)-1(ci!)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(ogaduj)1(!)-333({)-334(wr)1(z)-1(asn\\241\\252)-333(z)-1(e)-334(z\\252o\\261)-1(ci\\241.)]TJ 0 -13.55 Td[({)-333(M\\363)28(wi\\246)-334(ci)-334(co)-333(kiedy)84(,)-333(napr)1(z)-1(yk)1(rzam)-334(s)-1(i)1(\\246)-1(,)-333(a)-333(dy\\242)-333(robi)1(s)-1(z,)-333(c)-1(o)-333(c)27(h)1(c)-1(es)-1(z!)]TJ 0 -13.549 Td[({)-224(Do)-223(dw)28(or\\363)28(w)-224(p)-27(\\363)-56(j)1(d\\246)-224({)-224(m\\363)28(wi\\252)-224(zn\\363)28(w)-224(s)-1(p)-27(ok)28(o)-55(jni)1(e)-224({)-224(o)-224(s\\252u\\273bie)-224(si\\246)-224(jak)1(ie)-1(j)-223(p)1(rz)-1(ewiem)-1(,)]TJ -27.879 -13.549 Td[(mo\\273)-1(e)-334(o)-27(d)-333(Go)-28(d)1(\\363)27(w)-333(dostan\\246,)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 27.879 -13.549 Td[(na)-279(r)1(ata)-56(j)1(a,)-279(a)-280(p)-27(\\363)-56(j)1(d\\246,)-279(b)28(yl)1(e)-280(tu)1(ta)-56(j)-279(n)1(ie)-280(\\261mie)-1(r)1(dzie)-1(\\242)-279(i)-279(krzywdy)-279(n)1(a)-279(o)-28(c)-1(zac)27(h)-279(n)1(ie)-280(mie\\242)]TJ -27.879 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m,)-278(b)-27(o)-279(n)1(ie)-279(zdzier\\273\\246)-1(..)1(.)-278(Do\\261)-1(\\242)-278(m)-1(i)-277(te)-1(go,)-278(d)1(o\\261)-1(\\242)-278(m)-1(i)-278(t)1(e)-1(go)-278(lu)1(dzkiego)-278(p)-28(oli)1(tun)1(ku)-278(i)-278(tego)]TJ 0 -13.55 Td[(pat)1(rz)-1(eni)1(a)-357(ki)1(e)-1(j)-356(n)1(a)-357(p)1(arsz)-1(yw)28(e)-1(go)-356(p)1(s)-1(a!.)1(..)-356(W)83(e)-357(\\261wiat)-357(i)1(\\261)-1(\\242,)-356(gdzie)-357(o)-28(cz)-1(y)-356(p)-27(onies\\241,)-357(b)29(yle)-357(in)1(o)]TJ 0 -13.549 Td[(z)-334(d)1(ala...)-333(b)28(y)1(le)-334(in)1(o)-334(p)1(r\\246dk)28(o!.)1(..)-333({)-334(zac)-1(z\\241\\252)-333(krzyc)-1(ze\\242)-334(i)-333(unosi\\242)-334(si\\246.)]TJ 27.879 -13.549 Td[(Hank)56(a)-236(zam)-1(ar\\252a)-236(w)-236(przera\\273)-1(eni)1(u)-236(i)-236(s)-1(ta\\252a)-236(b)-27(e)-1(z)-236(ruc)28(h)28(u;)-236(j)1(e)-1(sz)-1(cz)-1(e)-236(go)-237(t)1(akim)-237(n)1(ie)-237(zna\\252a.)]TJ 0 -13.549 Td[({)-333(Os)-1(t)1(a)-56(j)-333(z)-334(Bogiem)-1(,)-333(za)-334(p)1(ar\\246)-334(d)1(ni)-333(wr\\363)-27(c)-1(\\246.)]TJ 0 -13.549 Td[({)-333(An)28(tek!)-333({)-334(k)1(rz)-1(y)1(kn\\246\\252a)-334(r)1(oz)-1(p)1(ac)-1(zliwie.)]TJ 0 -13.55 Td[({)-333(C)-1(zego?)-334({)-333(Ju\\273)-334(z)-333(s)-1(ieni)-333(n)1(a)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(n)1(a)27(w)28(e)-1(t)-333(tego)-333(s)-1(\\252o)28(w)27(a)-333(dob)1(rego)-334(\\273a\\252uj)1(e)-1(sz)-1(.)1(..)-333(na)28(w)27(et)-333(te)-1(go.)1(..)]TJ 0 -13.549 Td[({)-314(C\\363\\273)-315(to,)-313(c)-1(ec)27(k)56(a\\252)-314(s)-1(i\\246)-314(z)-314(tob\\241)-314(b)-27(\\246)-1(d)1(\\246)-1(,)-313(m)-1(o\\273e)-315(j)1(am)-1(or)1(o)27(w)28(a\\252...)-313(Nie)-315(to)-314(mi)-314(w)-314(g\\252o)28(w)-1(i)1(e)-1(!)-314({)]TJ -27.879 -13.549 Td[(zatrzas)-1(n)1(\\241\\252)-334(d)1(rz)-1(wi)-333(i)-333(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(P)28(o\\261wis)-1(t)28(yw)28(a\\252)-244(p)1(rze)-1(z)-244(z\\246)-1(b)28(y)84(,)-243(w)-1(spi)1(e)-1(ra\\252)-243(s)-1(i)1(\\246)-245(k)1(ijem)-244(i)-243(s)-1(ze)-1(d)1(\\252)-244(ra\\271no,)-243(a\\273)-244(\\261)-1(n)1(ieg)-244(skrzypi)1(a\\252)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-358(n)1(og)-1(ami,)-358(ob)-27(ejrza\\252)-359(si\\246)-358(na)-358(c)27(h)1(a\\252)-1(u)1(p)-28(\\246.)-358(Hank)56(a)-358(s)-1(t)1(a\\252)-1(a)-358(p)-27(o)-28(d)-358(\\261c)-1(i)1(an\\241)-358(i)-358(z)-1(an)1(os)-1(i\\252a)-358(si\\246)-359(o)-28(d)]TJ 0 -13.55 Td[(p\\252acz)-1(u)1(,)-333(a)-334(p)1(rze)-1(z)-333(dru)1(gie)-334(okn)1(o)-334(wygl)1(\\241da\\252a)-333(W)83(eron)1(k)55(a.)]TJ 27.879 -13.549 Td[({)-387(\\221)1(c)-1(ierw)28(a,)-387(b)1(ucz)-1(y)-387(i)-386(bu)1(c)-1(zy!)-387(Do)-387(t)1(e)-1(go)-387(to)-387(r)1(oz)-1(u)1(m)-387(m)-1(a!.)1(..)-387(W)84(e)-388(\\261wiat!)-387(W)84(e)-387(\\261)-1(wiat!)]TJ -27.879 -13.549 Td[({)-387(sz)-1(epta\\252)-387(i)-386(rozgl\\241da\\252)-387(si\\246)-387(do)-28(ok)28(o\\252a,)-386(le)-1(cia\\252)-387(o)-27(c)-1(zam)-1(i)-386(w)-1(skr)1(\\363\\261)-388(p)1(rze)-1(sz)-1(r)1(onia\\252yc)28(h)-387(b)1(ie)-1(l)1(iz)-1(n)]TJ 0 -13.549 Td[(\\261nie\\273)-1(n)29(yc)27(h)1(.)-229(Rw)28(a\\252a)-229(go)-228(t\\246s)-1(kn)1(ota)-229(j)1(ak)56(a\\261)-1(,)-228(par)1(\\252a,)-228(rz)-1(u)1(c)-1(a\\252a)-228(pr)1(z)-1(ed)-228(s)-1(i)1(\\246)-1(,)-228(\\273e)-229(z)-229(rad)1(o\\261)-1(ci\\241)-228(m)27(y\\261la\\252)]TJ 0 -13.549 Td[(o)-235(i)1(nn)28(yc)28(h)-234(w)-1(siac)27(h)1(,)-235(o)-234(lud)1(z)-1(i)1(ac)27(h)-234(no)28(wyc)27(h)-234(i)-234(\\273)-1(y)1(c)-1(iu)-234(in)1(n)28(ym.)-235(Ni)1(e)-1(sp)-28(o)-27(dzianie)-235(m)28(u)-234(to)-235(p)1(rz)-1(y)1(s)-1(z\\252o,)]TJ 0 -13.55 Td[(sam)-1(o)-313(z)-314(s)-1(i)1(e)-1(b)1(ie)-314(na\\253)-313(spad)1(\\252o)-314(i)-313(tak)-313(p)-27(orw)28(a\\252)-1(o)-313(z)-314(n)1(ag\\252a,)-314(j)1(ak)-313(kiedy)-313(w)27(ez)-1(b)1(ran)1(a)-314(w)28(o)-28(da)-313(kierz)]TJ 0 -13.549 Td[(s\\252)-1(ab)29(y)-333(bierze)-1(,)-333(\\273e)-334(ani)-333(op)1(rz)-1(e\\242)-334(si\\246)-334(tem)27(u)1(,)-333(ni)-333(na)28(wr\\363)-27(c)-1(i\\242.)-333(Dola)-333(go)-334(r)1(z)-1(u)1(c)-1(i\\252a)-333(w)28(e)-334(\\261)-1(wiat.)]TJ\nET\nendstream\nendobj\n600 0 obj <<\n/Type /Page\n/Contents 601 0 R\n/Resources 599 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n599 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n604 0 obj <<\n/Length 9763      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(185)]TJ -330.353 -35.866 Td[(Jes)-1(zc)-1(ze)-294(go)-28(d)1(z)-1(in)1(\\246)-294(te)-1(m)28(u)-293(ani)-293(m)27(y)1(\\261)-1(la\\252,)-293(\\273e)-294(p)-28(\\363)-55(jd)1(z)-1(ie,)-293(ani)-293(wie)-1(d)1(z)-1(i)1(a\\252)-1(!)-293(S)1(am)-1(o)-293(przysz)-1(\\252o,)]TJ -27.879 -13.549 Td[(ze)-290(\\261w)-1(i)1(ata,)-289(z)-290(wiatr)1(e)-1(m)-289(p)-27(e)-1(wni)1(e)-290(n)1(a)27(wia\\252a)-289(ta)-289(c)28(h\\246\\242)-290(i)-289(r)1(oz)-1(\\273arzy\\252a)-289(m)27(u)-289(serc)-1(e)-289(ni)1(e)-1(p)-27(o)28(w)-1(strzy-)]TJ 0 -13.549 Td[(man)28(ym)-388(p)1(ragn)1(ie)-1(n)1(iem)-388(uciec)-1(zki.)-387(Wyr)1(ob)-28(ek,)-387(ni)1(e)-388(w)-1(y)1(rob)-27(e)-1(k,)-387(b)28(y)1(le)-388(in)1(o)-388(st\\241d)-387(i\\261\\242)-1(.)1(..)-387(He)-1(j)1(!)]TJ 0 -13.549 Td[(Ulec)-1(i)1(a\\252)-1(b)29(y)-301(jak)28(o)-301(ten)-301(p)1(tak,)-301(w)28(e)-302(wsz)-1(y)1(s)-1(tek)-301(\\261w)-1(i)1(at)-301(ni\\363s\\252b)28(y)-301(si\\246,)-301(na)-301(b)-27(ory)84(,)-301(na)-301(t)1(e)-302(n)1(ie)-1(ob)-55(j)1(\\246)-1(te)]TJ 0 -13.549 Td[(zie)-1(mice)-1(.)1(..)-316(Ju\\261c)-1(i,)-316(co)-316(m)27(u)-316(tu)-316(k)56(api)1(e)-1(\\242,)-316(c)-1(ze)-1(go)-316(do)-27(c)-1(ze)-1(ki)1(w)27(a\\242?)-317(Ju)1(\\273)-317(go)-316(te)-317(ws)-1(p)-27(ominki)-316(p)1(rze)-1(-)]TJ 0 -13.55 Td[(\\273ar\\252y)83(,)-378(\\273e)-379(dusza)-379(n)1(a)-379(wi\\363r)-378(wys)-1(c)28(h\\252a,)-378(a)-379(co)-379(m)28(u)-378(z)-379(te)-1(go?..)1(.)-379(K)1(s)-1(i\\241d)1(z)-379(jes)-1(t)-378(pr)1(a)27(wy)84(,)-378(dobr)1(z)-1(e)]TJ 0 -13.549 Td[(m)27(u)-394(wy\\252o\\273y\\252,)-394(\\273)-1(e)-394(w)-395(s\\241dzie)-395(z)-395(o)-55(jce)-1(m)-395(n)1(ie)-395(wygr)1(a;)-395(a)-394(jesz)-1(cz)-1(e)-395(sp)-27(oro)-394(gros)-1(za)-394(do\\252o\\273)-1(y)84(.)-394(A)]TJ 0 -13.549 Td[(z)-440(p)-28(omst\\241)-440(p)-28(o)-27(c)-1(ze)-1(k)56(a)-440(w)-440(sp)-28(osobn)1(ie)-1(j)1(s)-1(zy)-440(cz)-1(as,)-440(w)-440(sp)-28(osobn)1(ie)-1(j)1(s)-1(zy;)-439(jes)-1(zc)-1(ze)-441(t)1(akiego)-440(nie)]TJ 0 -13.549 Td[(ma,)-359(kt\\363rem)27(u)-359(b)28(y)-359(d)1(aro)28(w)27(a\\252)-359(kr)1(z)-1(ywd)1(y)83(..)1(.)-360(A)-359(teraz)-360(i)1(no)-359(i\\261)-1(\\242)-359(przed)-359(s)-1(i\\246,)-359(gdzie)-360(b)1(\\241d\\271,)-359(b)28(yle)]TJ 0 -13.549 Td[(z)-334(d)1(ale)-1(k)56(a)-333(o)-28(d)-333(Lip)1(iec)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Gdzie)-334(b)29(y)-334(n)1(a)-56(j)1(pierw)28(e)-1(j)1(?..)]TJ 0 -13.55 Td[(St)1(an\\241\\252)-471(n)1(a)-470(s)-1(kr)1(\\246)-1(cie)-471(w)-470(top)-28(ol)1(o)27(w)28(\\241)-470(drog\\246)-471(i)-470(n)1(iec)-1(o)-470(w)27(ah)1(a)-56(j)1(\\241c)-1(o)-470(rozgl\\241da\\252)-470(s)-1(i)1(\\246)-471(p)-28(o)]TJ -27.879 -13.549 Td[(zgubi)1(on)28(yc)27(h)-287(w)-288(omgleniu)-287(p)-27(olac)27(h)1(,)-288(zimno)-287(go)-288(pr)1(z)-1(ej\\246\\252o,)-288(\\273e)-288(z)-1(\\246b)28(y)-287(m)27(u)-287(s)-1(zcz)-1(\\246k)55(a\\252y)-287(i)-288(t)1(rz)-1(\\241s\\252)]TJ 0 -13.549 Td[(si\\246)-334(w)28(e)-334(\\261)-1(r)1(o)-28(dk)1(u.)]TJ 27.879 -13.549 Td[({)-307(P)1(rze)-1(z)-307(wie)-1(\\261)-307(i)-306(drog\\241)-306(z)-1(a)-307(m\\252yn)1(e)-1(m)-307(p)-27(\\363)-56(j)1(d\\246...)-306({)-307(z)-1(d)1(e)-1(cyd)1(o)27(w)28(a\\252)-307(pr)1(\\246)-1(d)1(k)28(o)-307(i)-307(skr)1(\\246)-1(ci\\252)-307(do)]TJ -27.879 -13.549 Td[(ws)-1(i)1(;)-390(ni)1(e)-391(u)1(s)-1(zed\\252)-390(j)1(e)-1(sz)-1(cz)-1(e)-390(i)-389(p)-28(\\363\\252)-390(sta)-55(ja,)-390(gd)1(y)-390(u)1(s)-1(u)1(n\\241\\242)-390(si\\246)-390(m)27(usia\\252)-390(w)-390(b)-27(ok)-390(p)-27(o)-28(d)-389(top)-27(ole)-390({)]TJ 0 -13.55 Td[(\\261ro)-28(d)1(kiem)-317(d)1(rogi,)-315(w)-1(p)1(rost)-316(na)-316(n)1(iego)-316(w)27(al)1(i\\252y)-316(jak)1(ie)-1(\\261)-316(sanie)-316(w)-316(k\\252\\246)-1(b)1(ac)27(h)-315(kur)1(z)-1(a)28(wy)83(,)-315(a)-316(os)-1(t)1(ro)]TJ 0 -13.549 Td[(i)-333(z)-334(d)1(z)-1(w)28(onieniem.)]TJ 27.879 -13.549 Td[(Jec)27(ha\\252)-335(Boryn)1(a)-335(z)-336(Jagu)1(s)-1(i\\241,)-335(sam)-336(p)-27(o)28(w)27(ozi\\252,)-335(k)28(oni)1(e)-336(rw)28(a\\252y)-335(z)-336(k)28(op)28(y)1(ta)-335(p)-28(o)-28(d)1(ryw)28(a)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(sank)28(o)28(w)27(e)-280(p)1(ude\\252k)28(o)-280(ki)1(e)-1(j)-279(pi)1(\\363rkiem,)-280(a)-280(stary)-279(jes)-1(zc)-1(ze)-280(p)-27(o)-28(dcina\\252)-279(batem)-1(,)-279(pr)1(z)-1(yn)1(agla\\252)-280(i)-279(c)-1(o\\261)]TJ 0 -13.549 Td[(ze)-431(\\261mie)-1(c)28(hem)-430(p)-28(o)28(wiad)1(a\\252.)-430(Jagu)1(\\261)-430(te)-1(\\273)-430(w)-430(g\\252os)-430(m\\363)28(w)-1(i)1(\\252)-1(a,)-429(u)1(rw)27(a\\252a)-429(naraz)-430(sp)-27(os)-1(tr)1(z)-1(eg\\252s)-1(zy)]TJ 0 -13.55 Td[(An)28(tk)56(a,)-453(wpil)1(i)-454(si\\246)-454(o)-27(c)-1(zam)-1(i)-453(w)-453(s)-1(i)1(e)-1(b)1(ie)-454(na)-453(mgnieni)1(e)-1(,)-453(na)-453(ten)-453(jeden)-453(b\\252ysk)-453(i)-453(roznie\\261)-1(l)1(i)]TJ 0 -13.549 Td[(w)-449(d)1(wie)-449(s)-1(t)1(ron)28(y)84(,)-449(sank)1(i)-449(p)1(rze)-1(sun)1(\\246)-1(\\252y)-448(si\\246)-449(wnet)-449(i)-448(u)1(ton\\246\\252y)-449(w)-448(kur)1(z)-1(a)28(wie)-1(,)-448(ale)-448(An)28(te)-1(k)-448(z)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(ca)-438(s)-1(i\\246)-438(nie)-438(rusz)-1(y)1(\\252,)-438(s)-1(k)56(am)-1(i)1(e)-1(n)1(ia\\252)-438(z)-1(go\\252a,)-438(jeno)-438(pat)1(rz)-1(y)1(\\252)-439(za)-439(n)1(imi...)-438(wyc)28(h)28(ylal)1(i)-439(si\\246)]TJ 0 -13.549 Td[(cz)-1(ase)-1(m)-329(z)-1(e)-330(\\261nie\\273yc)-1(y)84(,)-329(to)-329(z)-1(acz)-1(erwieni\\252y)-329(si\\246)-330(Jagu)1(s)-1(in)1(e)-330(w)28(e)-1(\\252ni)1(aki,)-329(to)-329(dzw)27(on)1(ki)-329(m)-1(o)-27(c)-1(n)1(ie)-1(j)]TJ 0 -13.549 Td[(za)-56(j\\246cz)-1(a\\252y)84(,)-446(i)-446(gin)1(\\246)-1(l)1(i,)-446(p)1(rze)-1(pad)1(ali,)-445(jakb)29(y)-446(ws)-1(kr)1(\\363\\261)-447(t)1(e)-1(j)-445(bielizn)28(y)-446(p)-27(\\246dzili.)1(..p)-27(o)-28(d)-446(d)1(ac)27(h)1(e)-1(m)]TJ 0 -13.55 Td[(osz)-1(ron)1(ia\\252yc)27(h)-314(ga\\252\\246)-1(zi,)-315(co)-315(s)-1(p)1(l\\241tan)1(e)-316(j)1(akb)28(y)-315(sklepieni)1(e)-316(cz)-1(y)1(ni\\252y)84(,)-315(jak)28(ob)28(y)-314(du)1(c)27(h)28(t)-315(p)1(rze)-1(bi)1(t)28(y)]TJ 0 -13.549 Td[(w)-420(\\261)-1(n)1(ie)-1(gac)28(h,)-420(a)-420(p)-27(o)-28(dste)-1(mp)1(lo)28(w)27(an)28(y)-420(cz)-1(ar)1(nia)28(wymi)-420(pn)1(iami)-420(top)-27(o)-1(l)1(i,)-420(kt\\363r)1(e)-421(sta\\252y)-420(z)-421(obu)]TJ 0 -13.549 Td[(stron)-353(dr)1(ogi)-354(i)1(,)-354(p)-27(o)-28(c)28(h)28(ylon)1(e)-1(,)-353(pr)1(z)-1(ygi)1(na\\252y)-353(s)-1(i\\246)-354(n)1(ib)28(y)-353(w)-354(ci\\246\\273)-1(ki)1(m)-1(,)-353(ut)1(rud)1(z)-1(a)-55(j\\241cym)-354(c)27(h)1(o)-28(dzie)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-289(wzg\\363rze)-1(..)1(.)-289(P)28(atr)1(z)-1(y)1(\\252)-289(w)27(ci\\241\\273)-289(w)-289(jej)-289(o)-28(czy)83(,)-288(s)-1(ta\\252y)-289(p)1(rze)-1(d)-288(ni)1(m)-1(,)-288(s)-1(kr)1(z)-1(y)1(\\252)-1(y)-288(s)-1(i)1(\\246)-290(w)-289(\\261ni)1(e)-1(gac)27(h)]TJ 0 -13.549 Td[(kiej)-386(te)-386(lno)28(w)28(e)-387(kwiatki)1(,)-387(n)1(a)-386(dro)-27(dze)-387(wyrasta\\252y)-386(w)-1(sz\\246)-1(d)1(z)-1(ie,)-386(a)-386(patrzy\\252y)-386(ze)-1(strac)27(h)1(ane)-386(i)]TJ 0 -13.55 Td[(\\273a\\252)-1(osne,)-333(z)-1(d)1(umion)1(e)-334(a)-334(r)1(adosne)-334(zaraze)-1(m,)-333(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(e)-334(i)-333(\\273ywym)-334(ogn)1(iem)-334(rozb\\252ys\\252e)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(gas)-1(\\252a)-354(m)28(u)-354(d)1(usz)-1(a,)-353(omgli\\252a)-354(si\\246,)-354(j)1(akb)28(y)-354(t)1(e)-355(szron)28(y)-353(przysypa\\252y)-353(go)-354(do)-27(\\242)-354(dna)]TJ -27.879 -13.549 Td[(i)-368(na)-368(wskro\\261)-368(prze)-1(j)1(\\246)-1(\\252y)84(,)-368(\\273)-1(e)-368(ino)-368(te)-368(m)-1(o)-27(dre)-368(o)-28(c)-1(zy)-368(sam)-1(e)-368(jedn)1(e)-369(w)-369(n)1(im)-368(ja\\261nia\\252y)84(.)-368(Zw)-1(i)1(e)-1(si\\252)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-369(i)-368(p)-28(o)28(wl\\363k\\252)-368(s)-1(i\\246)-369(w)28(olno,)-368(o)-28(d)1(w)-1(r)1(ac)-1(a\\252)-368(s)-1(i\\246)-369(r)1(az)-369(i)-369(d)1(rugi)1(,)-369(ale)-369(j)1(u\\273)-369(ni)1(c)-369(nie)-369(b)28(y)1(\\252)-1(o)-368(wida\\242)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-332(top)-27(olami,)-332(c)-1(zas)-1(em)-333(jeno)-332(d)1(z)-1(w)28(onek)-333(za)-56(j)1(\\246)-1(k)1(n\\241\\252)-332(w)-333(o)-28(d)1(dali)-332(i)-332(ku)1(rz)-1(a)28(w)28(a)-333(zama)-56(jaczy\\252a.)]TJ 27.879 -13.549 Td[(Zap)-27(om)-1(n)1(ia\\252)-370(o)-369(ws)-1(zystkim,)-369(jakb)29(y)-369(z)-370(nag\\252a)-369(du)1(s)-1(z\\246)-370(z)-1(gu)1(bi)1(\\252)-1(,)-369(p)1(am)-1(i)1(\\246)-1(\\242)-370(go)-369(o)-28(d)1(e)-1(sz)-1(\\252a,)]TJ -27.879 -13.55 Td[(ogl\\241d)1(a\\252)-289(s)-1(i)1(\\246)-289(b)-28(ez)-1(r)1(adn)1(ie)-1(,)-288(ni)1(e)-289(w)-1(i)1(e)-1(d)1(z)-1(\\241cy)83(,)-288(c)-1(o)-288(p)-28(o)-27(c)-1(z\\241\\242)-1(.)1(..)-289(gd)1(z)-1(i)1(e)-289(i\\261)-1(\\242...)-288(co)-289(s)-1(i)1(\\246)-289(s)-1(ta\\252o?)-289({)-288(jakb)29(y)]TJ 0 -13.549 Td[(w)-334(sen)-333(na)-333(ja)28(wie)-334(si\\246)-334(p)-27(ogr\\241\\273y\\252)-334(i)-333(o)-27(c)27(kn)1(\\241\\242)-334(nie)-333(m)-1(\\363g\\252.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-383(nie)-382(w)-1(i)1(e)-1(d)1(z)-1(\\241cy)-382(na)28(wr\\363)-28(ci\\252)-382(do)-382(k)56(arc)-1(zm)27(y)-382(wymij)1(a)-56(j\\241c)-382(par)1(\\246)-383(s)-1(a\\253)-382(zap)-27(e)-1(\\252n)1(io-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h)-333(lu)1(d\\271m)-1(i,)-333(ale)-333(c)27(ho)-27(\\242)-334(pi)1(lnie)-333(patr)1(z)-1(y\\252,)-333(n)1(ie)-334(roze)-1(zna\\252)-333(ni)1(k)28(ogo.)]TJ 27.879 -13.549 Td[({)-333(Gdzie)-334(tak)56(\\241)-333(h)28(u)1(rm\\241)-334(w)28(al\\241?)-334({)-333(sp)28(yta\\252)-333(Jankl)1(a)-334(sto)-56(j)1(\\241c)-1(ego)-333(na)-333(pr)1(o)-1(gu)1(.)]TJ 0 -13.55 Td[({)-417(D)1(o)-417(s)-1(\\241d)1(u.)-416(Sp)1(ra)28(w)28(a)-417(z)-417(dw)28(orem)-417(o)-417(kr)1(o)28(w)-1(y)84(,)-416(o)-417(p)-27(obicie)-417(pastu)1(c)27(h\\363)28(w,)-417(wiecie)-1(!)-416(Ze)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(adk)56(am)-1(i)-333(j)1(ad\\241,)-333(a)-333(B)-1(or)1(yna)-333(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-334(p)1(rzo)-28(dem.)]TJ\nET\nendstream\nendobj\n603 0 obj <<\n/Type /Page\n/Contents 604 0 R\n/Resources 602 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n602 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n607 0 obj <<\n/Length 6120      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(186)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(13.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Wygra)-55(j\\241)-333(to?)]TJ 0 -13.549 Td[({)-276(P)29(o)-276(co)-276(ma)-56(j)1(\\241)-276(p)1(rz)-1(egra\\242!)-276(D)1(z)-1(iedzica)-276(z)-276(W)84(oli)-276(sk)56(ar\\273\\241,)-276(s\\241dzi)-275(dzie)-1(d)1(z)-1(i)1(c)-276(z)-277(Ru)1(dki)1(,)-276(to)]TJ -27.879 -13.549 Td[(i)-362(d)1(lac)-1(zego)-363(ma)-362(d)1(z)-1(iedzic)-362(prze)-1(gr)1(a\\242)-1(?)-362(A)-362(lu)1(dzie)-363(si\\246)-362(pr)1(z)-1(ejad\\241,)-361(drogi)-361(prze)-1(t)1(r\\241,)-362(zaba)28(wi\\241)]TJ 0 -13.549 Td[(si\\246)-460({)-459(w)-459(mie\\261)-1(cie)-460(t)1(e)-1(\\273)-459(p)-28(otr)1(z)-1(ebu)1(j\\241)-459(n)1(as)-1(i)-459(u)1(targo)28(w)28(a\\242)-1(.)-459(Wszys)-1(cy)-459(p)-27(o)-459(tro)-28(c)28(h)28(u)-459(wygr)1(a)-56(j)1(\\241,)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)84(.)]TJ 27.879 -13.55 Td[(An)28(tek)-455(n)1(ie)-455(s)-1(\\252uc)28(ha\\252)-455(p)1(rz)-1(ekp)1(iw)27(a\\253)1(,)-455(k)56(aza\\252)-455(da\\242)-455(ok)28(o)27(witk)1(i,)-455(wspar\\252)-455(si\\246)-455(o)-455(s)-1(zyn)1(k-)]TJ -27.879 -13.549 Td[(w)28(as)-330(i)-328(sta\\252)-329(tak)-328(z)-1(ap)1(atrzon)28(y)-329(p)1(rze)-1(d)-328(si\\246,)-329(n)1(ie)-1(p)1(rzytomn)28(y)-329(p)1(ra)28(wie,)-329(z)-329(dob)1(r\\241)-328(go)-28(dzin\\246,)-328(nie)]TJ 0 -13.549 Td[(tkn)1(\\241)28(w)-1(sz)-1(y)-333(n)1(a)28(w)27(et)-334(k)1(ie)-1(l)1(is)-1(zk)56(a.)]TJ 27.879 -13.549 Td[({)-333(W)83(am)-333(c)-1(o\\261)-334(j)1(e)-1(st?)]TJ 0 -13.549 Td[({)-333(I...)-333(c)-1(o)-333(b)28(y)-333(za\\261)-334(mia\\252o)-334(b)29(y\\242)-1(.)1(..)-333({)-334(p)1(u\\261\\242)-1(cie)-334(d)1(o)-334(al)1(kierza.)]TJ 0 -13.549 Td[({)-406(Nie)-406(mo\\273)-1(n)1(a)-1(,)-405(tam)-406(s)-1(iedz\\241)-406(ku)1(p)-28(cy)83(,)-405(w)-1(i)1(e)-1(lk)1(ie)-407(k)1(up)-27(c)-1(y)84(,)-406(oni)-405(dru)1(g\\241)-406(p)-27(or\\246)-1(b)-27(\\246)-406(kup)1(ili)]TJ -27.879 -13.55 Td[(o)-28(d)-356(d)1(z)-1(i)1(e)-1(d)1(z)-1(ica,)-356(t\\246)-357(n)1(a)-356(Wilcz)-1(y)1(c)27(h)-356(Do\\252ac)27(h)1(,)-356(to)-356(p)-28(ot)1(rz)-1(ebu)1(j\\241)-356(sp)-28(ok)28(o)-55(jn)1(o\\261)-1(ci,)-356(mo\\273)-1(e)-357(n)1(a)28(w)27(et)-356(i)]TJ 0 -13.549 Td[(\\261pi\\241.)]TJ 27.879 -13.549 Td[({)-423(A)-422(to)-423(p)1(arc)27(h)1(\\363)28(w)-423(z)-1(a)-422(br)1(o)-28(dy)-422(p)-28(o)28(wyci\\241)-28(gam)-423(i)-422(na)-422(\\261)-1(n)1(ie)-1(g)-422(wyc)-1(i)1(e)-1(p)1(n\\246!)-423({)-422(krzykn)1(\\241\\252)]TJ -27.879 -13.549 Td[(i)-405(rzuci\\252)-406(si\\246)-406(zapami\\246tale)-406(ku)-405(alk)1(ie)-1(r)1(z)-1(o)28(wi,)-405(ale)-406(o)-28(d)-405(d)1(rzw)-1(i)-405(za)27(wr\\363)-27(c)-1(i\\252,)-405(zabra\\252)-405(bu)1(te)-1(l)1(k)28(\\246)-406(i)]TJ 0 -13.549 Td[(w)28(c)-1(isn\\241\\252)-333(s)-1(i)1(\\246)-334(z)-1(a)-333(st\\363\\252,)-334(w)-333(na)-55(jciem)-1(n)1(ie)-1(j)1(s)-1(zy)-333(k)56(\\241t.)]TJ 27.879 -13.55 Td[(Pu)1(s)-1(t)1(o)-316(b)28(y\\252o)-315(w)-316(k)56(arcz)-1(mie)-316(i)-315(c)-1(i)1(c)27(ho,)-315(t)28(yla)-315(c)-1(o)-315(tam)-316(\\233yd)1(y)-316(co\\261)-316(zakrzyc)-1(za\\252y)-315(p)-28(o)-315(s)-1(w)28(o-)]TJ -27.879 -13.549 Td[(jem)27(u)1(,)-398(\\273)-1(e)-399(Jan)1(kiel)-398(bieg\\252)-399(d)1(o)-399(n)1(ic)27(h)1(,)-398(alb)-28(o)-398(kto\\261)-399(wsz)-1(ed\\252)-398(na)-398(kielisz)-1(ek,)-398(wypi)1(\\252)-399(i)-398(wynosi\\252)]TJ 0 -13.549 Td[(si\\246)-1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-324(si\\246)-326(j)1(u\\273)-325(pr)1(z)-1(etac)-1(za\\252)-325(na)-325(d)1(ru)1(g\\241)-325(s)-1(tr)1(on\\246,)-325(a)-325(i)-325(mr\\363z)-325(br)1(a\\242)-326(m)28(usia\\252,)-325(b)-27(o)-325(s)-1(k)1(rzy-)]TJ -27.879 -13.549 Td[(pi)1(a\\252y)-333(p)1(\\252)-1(ozy)-332(s)-1(a\\253)-332(na)-332(\\261)-1(n)1(iegu)-333(i)-332(c)27(h)1(\\252\\363)-28(d)-332(w)-1(i)1(a\\252)-333(p)-27(o)-333(k)56(arcz)-1(mie,)-333(An)28(t)1(e)-1(k)-332(z)-1(a\\261)-333(siedzia\\252,)-333(p)-27(opi)1(ja\\252)]TJ 0 -13.55 Td[(z)-290(w)27(ol)1(na,)-290(n)1(ib)28(y)-289(to)-290(me)-1(d)1(yto)28(w)27(a\\252,)-289(a)-290(zgo\\252a)-290(nie)-290(wiedzia\\252,)-290(co)-290(si\\246)-290(dzia\\252o)-290(w)-290(n)1(im)-290(i)-290(d)1(o)-28(ok)28(o\\252a.)]TJ 27.879 -13.549 Td[(Pi)1(\\252)-371(kw)28(ate)-1(r)1(k)28(\\246)-371(p)-28(o)-370(kw)28(ate)-1(r)1(c)-1(e,)-370(a)-371(te)-371(o)-28(cz)-1(y)-370(w)28(c)-1(i\\241\\273)-370(m)-1(o)-28(d)1(rza\\252y)-371(p)1(rze)-1(d)-370(n)1(im)-1(,)-370(tak)-370(bl)1(i-)]TJ -27.879 -13.549 Td[(sk)28(o)-407(b)28(y)1(\\252)-1(y)84(,)-406(tak)-406(blisk)28(o,)-406(\\273)-1(e)-407(j)1(e)-407(p)-27(o)27(wiek)56(am)-1(i)-406(pr)1(a)28(w)-1(i)1(e)-407(dot)28(yk)56(a\\252;)-406(w)-1(y)1(pi\\252)-406(trze)-1(ci\\241...)-406(j)1(a\\261)-1(n)1(ia\\252y)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273,)-280(j)1(e)-1(n)1(o)-280(s)-1(i)1(\\246)-281(j)1(\\246)-1(\\252y)-280(k)28(o\\252o)28(w)28(a\\242)-1(,)-280(c)28(h)28(wia\\242)-280(i)-280(p)-27(o)-280(k)56(arc)-1(zmie)-280(nos)-1(i)1(\\242)-281(j)1(ak)28(o)-280(te)-280(\\261)-1(wiat\\252a.)-279(Mr\\363z)-280(go)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(zed\\252)-377(ze)-377(s)-1(tr)1(ac)27(h)28(u)1(,)-377(ze)-1(r)1(w)27(a\\252)-377(si\\246)-377(n)1(a)-377(nogi)1(,)-377(tr)1(z)-1(asn\\241\\252)-377(b)1(utelk)56(\\241)-377(o)-376(s)-1(t\\363\\252,)-376(\\273)-1(e)-377(w)-377(k)56(a)28(w)28(a\\252)-1(k)1(i)]TJ 0 -13.55 Td[(si\\246)-334(rozpr)1(ys)-1(n)1(\\246)-1(\\252a,)-333(i)-333(sz)-1(ed\\252)-333(ku)-333(dr)1(z)-1(wiom.)]TJ 27.879 -13.549 Td[({)-349(Zap\\252a\\242c)-1(i)1(e)-1(!)-348({)-349(krzyc)-1(za\\252)-349(Jan)1(kiel)-349(z)-1(ab)1(iega)-56(j)1(\\241)-1(c)-349(m)28(u)-349(d)1(rog\\246)-349({)-349(z)-1(ap)1(\\252a\\242)-1(cie)-1(,)-348(ja)-349(w)28(am)]TJ -27.879 -13.549 Td[(b)-27(orgo)28(w)27(a\\242)-333(nie)-334(b)-27(\\246d\\246...)]TJ 27.879 -13.549 Td[({)-387(Z)-387(drogi)1(,)-387(psiakrew,)-387(\\233ydzie,)-387(b)-28(o)-387(ci\\246)-388(zak)56(a)-1(t)1(rup)1(i\\246!)-387({)-388(wr)1(z)-1(asn\\241\\252)-387(z)-388(tak)56(\\241)-387(m)-1(o)-27(c)-1(\\241,)]TJ -27.879 -13.549 Td[(\\273e)-334(\\233yd)-333(zblad)1(\\252)-334(i)-333(spies)-1(zni)1(e)-334(s)-1(i)1(\\246)-334(usun)1(\\241\\252.)]TJ 27.879 -13.55 Td[(An)28(tek)-333(ino)-333(gru)1(c)27(h)1(n\\241\\252)-333(w)-334(dr)1(z)-1(wi)-333(i)-333(wybi)1(e)-1(g\\252.)]TJ\nET\nendstream\nendobj\n606 0 obj <<\n/Type /Page\n/Contents 607 0 R\n/Resources 605 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 592 0 R\n>> endobj\n605 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n610 0 obj <<\n/Length 7360      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(14)]TJ/F17 10.909 Tf 0 -73.325 Td[(Jak)28(o\\261)-330(o)-330(s)-1(am)28(ym)-331(p)-27(o\\252ud)1(niu)-329(dzie\\253)-330(si\\246)-331(n)1(ie)-1(co)-330(rozja\\261ni\\252,)-329(ale)-331(in)1(o)-330(t)28(yla,)-330(cob)28(y)-330(kt)1(o)-330(\\252)-1(u)1(c)-1(zy-)]TJ 0 -13.549 Td[(w)28(e)-1(m)-310(p)1(rze)-1(ci\\241)-28(gn)1(\\241\\252)-310(p)-27(o)-310(\\261wie)-1(cie,)-309(b)-28(o)-309(wnet)-310(zgas)-1(\\252o)-309(i)-309(om)-1(r)1(o)-28(c)-1(za\\252o,)-309(jakb)29(y)-310(\\261ni)1(e)-1(g)-309(narasta\\252)-309(i)]TJ 0 -13.549 Td[(sp)-28(osobi\\252)-333(s)-1(i)1(\\246)-334(z)-1(n)1(o)28(w)-1(u)1(.)]TJ 27.879 -13.549 Td[(W)-337(iz)-1(b)1(ie)-338(An)28(tk)28(\\363)28(w)-338(t)1(e)-1(\\273)-338(b)28(y)1(\\252)-1(o)-337(dziwni)1(e)-338(m)-1(r)1(o)-28(c)-1(zno,)-337(c)27(h)1(\\252o)-28(dn)1(o)-338(i)-337(s)-1(m)28(utn)1(ie;)-338(d)1(z)-1(i)1(e)-1(ci)-338(b)1(a-)]TJ -27.879 -13.55 Td[(wi\\252y)-380(s)-1(i)1(\\246)-381(na)-380(\\252\\363\\273)-1(k)1(u)-380(i)-380(z)-381(cic)27(h)1(a)-381(d)1(o)-381(si\\246)-381(k)1(rze)-1(k)28(orzy\\252y)84(,)-380(kiej)-380(te)-381(ku)1(rcz)-1(\\241tk)56(a)-380(z)-1(es)-1(tr)1(as)-1(zone,)-380(a)]TJ 0 -13.549 Td[(Hank)28(\\246)-356(tak)-356(p)-28(o)-27(drzuca\\252a)-356(nies)-1(p)-27(ok)28(o)-55(jno\\261\\242,)-356(\\273)-1(e)-357(r)1(ady)-356(sobie)-356(da\\242)-357(n)1(ie)-357(mog\\252a.)-356(Cho)-28(d)1(z)-1(i)1(\\252)-1(a)-356(z)]TJ 0 -13.549 Td[(k)56(\\241ta)-321(w)-320(k)55(\\241t,)-320(wygl\\241d)1(a\\252a)-321(p)1(rz)-1(ez)-321(okn)1(o,)-321(t)1(o)-321(pr)1(z)-1(ed)-320(dome)-1(m)-320(s)-1(ta\\252a)-320(i)-321(r)1(oz)-1(p)1(alon)28(ymi)-320(o)-28(c)-1(zami)]TJ 0 -13.549 Td[(w)28(o)-28(dzi\\252a)-347(p)-27(o)-347(\\261)-1(n)1(ie)-1(gac)28(h.)-347(Hal)1(e)-1(,)-346(a)-1(n)1(i)-347(\\273yw)28(e)-1(j)-346(duszy)-347(ni)1(e)-348(u)1(jrza\\252)-347(na)-347(d)1(rogac)27(h)-346(ni)-346(na)-347(p)-27(olac)27(h)]TJ 0 -13.549 Td[({)-308(p)1(ar\\246)-308(sa\\253)-308(p)1(rze)-1(wlek\\252o)-308(si\\246)-308(o)-28(d)-307(k)56(arcz)-1(m)28(y)-308(i)-307(z)-1(gi)1(n\\246\\252o)-308(p)-27(o)-28(d)-307(top)-28(ol)1(am)-1(i)1(,)-308(j)1(akb)28(y)-307(s)-1(i\\246)-308(zapad)1(\\252y)]TJ 0 -13.549 Td[(w)-412(tej)-412(\\261niego)28(w)27(ej)-411(topieli,)-411(\\273)-1(e)-412(n)1(i)-412(z)-1(n)1(aku)1(,)-412(ni)-411(g\\252os)-1(u)-411(ni)1(e)-413(osta\\252o)-412(p)-27(o)-412(ni)1(c)27(h.)-411(Nic,)-412(j)1(e)-1(no)-411(ta)]TJ 0 -13.55 Td[(cic)27(h)1(o\\261)-1(\\242)-334(zma)-1(r)1(t)28(w)-1(i)1(a\\252a)-334(i)-333(p)1(ustk)55(a)-333(n)1(ie)-1(p)1(rze)-1(j)1(rza)-1(n)1(a!)]TJ 27.879 -13.549 Td[({)-264(\\233e)-1(b)28(y)-264(c)28(ho)-28(\\242)-264(te)-1(n)-263(dziad)-264(jak)1(i)-264(z)-1(a)-55(jrza\\252,)-264(\\273)-1(eb)28(y)-264(c)27(h)1(o)-28(\\242)-265(z)-264(kim)-264(z)-1(agad)1(a\\242)-1(!)-264({)-264(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[({)-406(Ku)1(c)-1(u)1(s)-1(ie!)-406(K)1(ucu,)-406(ku)1(c)-1(u)1(,)-406(ku)1(-)-1(cu!)-405({)-406(z)-1(acz)-1(\\246\\252a)-406(goni)1(\\242)-407(p)-27(o)-406(\\261niegac)27(h)-405(kur)1(y)83(,)-406(b)-27(o)-406(si\\246)]TJ -27.879 -13.549 Td[(roz\\252az)-1(i)1(\\252)-1(y)-321(i)-322(sz)-1(u)1(k)55(a\\252y)-321(m)-1(iejsc)-322(na)-322(tr)1(z)-1(e\\261)-1(n)1(iac)27(h)1(.)-322(P)28(ozanosi\\252a)-322(je)-322(na)-321(grz)-1(\\246dy)84(,)-322(a)-322(z)-322(p)-27(o)27(wr)1(ote)-1(m)]TJ 0 -13.549 Td[(wyw)28(ar\\252a)-378(g\\246)-1(b)-27(\\246)-378(na)-378(W)84(e)-1(r)1(onk)28(\\246,)-378(b)-27(o)-378(jak\\273e)-1(,)-377(tam)27(ta)-378(wysta)28(wi\\252a)-378(do)-378(sieni)-378(ce)-1(b)1(ratk)28(\\246)-378(z)-378(p)-28(o-)]TJ 0 -13.55 Td[(m)27(y)1(jami)-332(dla)-332(gad)1(z)-1(in)29(y)83(,)-332(a)-332(te)-333(zap)-27(o)27(wietrzone)-332(\\261)-1(win)28(tu)1(c)27(h)28(y)-332(r)1(oz)-1(l)1(a)-1(\\252y)-332(n)1(a)-332(z)-1(iemi\\246)-1(,)-332(\\273e)-333(k)56(a\\252u\\273a)]TJ 0 -13.549 Td[(stan\\246\\252a)-334(p)-27(o)-28(d)-333(d)1(rz)-1(wiami.)]TJ 27.879 -13.549 Td[(-...T)83(o)-326(\\261w)-1(i)1(\\253)-326(piln)29(uj)1(,)-327(k)1(ie)-1(j)-326(si\\246)-327(za)-327(gosp)-27(o)-28(dyn)1(i\\246)-327(mas)-1(z,)-326(dziec)-1(iom)-326(przyk)56(a\\273)-1(.)1(..)-326(ja)-326(b)-28(ez)]TJ -27.879 -13.549 Td[(cie)-1(b)1(ie)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-334(s)-1(i)1(\\246)-334(tapl)1(a\\252a)-334(w)-333(b\\252o)-28(cie!)-334({)-333(wykr)1(z)-1(yk)1(iw)27(a\\252a)-333(pr)1(z)-1(ez)-334(dr)1(z)-1(wi.)]TJ 27.879 -13.549 Td[(-...S)1(pr)1(z)-1(eda\\252a)-296(k)1(ro)28(w)27(\\246,)-296(to)-295(g\\252os)-296(tu)-295(b)-28(\\246dzie)-296(zabiera\\242,)-296(ale,)-295(b\\252oto)-296(j)1(u\\273)-296(j)1(e)-1(j)-295(pr)1(z)-1(es)-1(zk)56(a-)]TJ -27.879 -13.55 Td[(dza,)-333(wie)-1(l)1(k)55(a)-333(pan)1(i,)-333(a)-333(s)-1(ama)-333(kiej)-333(w)-334(c)27(h)1(lew)-1(i)1(e)-334(s)-1(i)1(e)-1(d)1(z)-1(i.)-333(..)]TJ 27.879 -13.549 Td[({)-333(T)83(obie)-333(w)27(ar)1(a,)-334(gd)1(z)-1(i)1(e)-334(s)-1(i)1(e)-1(d)1(z)-1(\\246,)-333(i)-334(w)28(ara)-333(ci)-334(d)1(o)-333(m)-1(o)-55(jej)-333(kro)28(wy!)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(d)1(o)-334(moic)28(h)-333(prosiak)28(\\363)28(w)-334(ci)-333(w)27(ar)1(a,)-333(s)-1(\\252ysz)-1(y)1(s)-1(z!)]TJ 0 -13.549 Td[(Hank)56(a)-255(i)1(no)-255(tr)1(z)-1(asn\\246\\252a)-255(dr)1(z)-1(wiami,)-255(b)-27(o)-255(co)-255(mia\\252a)-255(o)-28(d)1(p)-28(o)28(wiada\\242)-255(taki)1(e)-1(j)-254(piekieln)1(ic)-1(y)1(?)]TJ -27.879 -13.549 Td[({)-363(rze)-1(c)-363(jej)-363(to)-363(jak)1(ie)-364(s\\252o)27(w)28(o,)-363(to)-363(on)1(a)-364(i)-363(n)1(a)-363(p)-28(\\363\\252k)28(op)1(ku)-363(n)1(ie)-364(p)-27(opr)1(z)-1(es)-1(t)1(anie,)-363(a)-363(jes)-1(zc)-1(ze)-364(i)-363(d)1(o)]TJ 0 -13.55 Td[(bi)1(c)-1(ia)-488(goto)28(w)27(a.)1({)-489(Pr)1(z)-1(y)1(w)27(ar\\252a)-488(dr)1(z)-1(wi)-488(na)-488(hacz)-1(yk)1(,)-489(wyd)1(ob)28(y\\252a)-489(p)1(ieni\\241d)1(z)-1(e)-489(i)-488(wz)-1(i)1(\\246)-1(\\252a)-488(s)-1(i\\246)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(z)-1(i\\242)-415(nad)-415(rozlicz)-1(an)1(iem)-1(.)-415(Niem)-1(a\\252o)-415(s)-1(i)1(\\246)-416(utr)1(udzi\\252a)-415(nad)-415(t)28(ylac)28(hn)1(e)-1(m)-416(p)1(ieni\\246dzy)83(,)-415(a)-415(i)]TJ 0 -13.549 Td[(m)27(y)1(li\\252o)-318(si\\246)-318(jej)-318(w)28(ci\\241\\273)-1(;)-317(z)-1(gn)1(iew)27(an)1(a)-318(jes)-1(zc)-1(ze)-318(b)28(y\\252a)-318(n)1(a)-318(W)84(e)-1(r)1(onk)28(\\246)-318(i)-318(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(na)-318(o)-317(An)28(tk)56(a,)]TJ 0 -13.549 Td[(to)-324(zno)28(wu)-323(w)-1(i)1(dzia\\252o)-324(s)-1(i)1(\\246)-325(j)1(e)-1(j)-323(cz)-1(\\246s)-1(to,)-323(\\273)-1(e)-324(kr)1(as)-1(u)1(la)-324(cz)-1(ego\\261)-324(p)-28(ost\\246kuj)1(e)-1(..)1(.)-324(alb)-27(o)-324(j)1(\\241)-324(z)-1(al)1(e)-1(w)28(a\\252y)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(p)-28(omink)1(i)-333(o)-56(jco)28(w)27(ego)-333(dom)27(u)1(.)]TJ 27.879 -13.55 Td[(-...Ju)1(\\261)-1(ci,)-327(\\273e)-327(jakb)29(y)-327(w)-327(c)27(hl)1(e)-1(wie)-327(s)-1(i)1(e)-1(d)1(z)-1(im)28(y)83(,)-326(ju)1(\\261)-1(ci!)-327({)-327(sz)-1(epta\\252a)-327(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-328(si\\246)-327(p)-28(o)]TJ -27.879 -13.549 Td[(izbie)-376({)-377(a)-376(tam)-377(i)-376(p)-27(o)-28(d\\252oga,)-376(okn)1(a)-377(j)1(ak)-377(si\\246)-377(p)1(atrzy)83(,)-376(\\261c)-1(ian)29(y)-377(b)1(ielone;)-376(i)-377(ciep\\252o,)-376(i)-376(c)-1(zys)-1(t)1(o,)]TJ 0 -13.549 Td[(i)-337(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(go)-337(p)-28(o)-337(grdy)1(k)28(\\246)-1(..)1(.)-338(Co)-338(on)1(i)-338(tam)-338(r)1(obi\\241?..)1(.)-338(J\\363zk)56(a)-338(zm)27(yw)28(a)-338(statki)-337(p)-28(o)-337(biedzie,)]TJ 358.232 -29.888 Td[(187)]TJ\nET\nendstream\nendobj\n609 0 obj <<\n/Type /Page\n/Contents 610 0 R\n/Resources 608 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n608 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n614 0 obj <<\n/Length 9295      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(188)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(a)-425(Jagna)-425(p)1(rz\\246)-1(d)1(z)-1(ie)-425(i)-425(pr)1(z)-1(ez)-426(cz)-1(yste,)-425(niez)-1(amarz\\252e)-426(sz)-1(yb)29(y)-425(na)-425(\\261w)-1(i)1(at)-425(s)-1(p)-27(ogl\\241da.)1(..)-425(br)1(ak)]TJ 0 -13.549 Td[(jej)-353(to)-354(cz)-1(ego!...)-353(Wsz)-1(y)1(s)-1(tki)1(e)-355(k)28(or)1(ale)-354(dosta\\252a)-354(p)-27(o)-354(n)1(ie)-1(b)-27(osz)-1(cz)-1(ce)-1(,)-353(a)-354(t)28(yle)-354(w)28(e)-1(\\252n)1(iak)28(\\363)28(w)-1(,)-353(t)28(yle)]TJ 0 -13.549 Td[(sz)-1(mat,)-460(t)28(yl)1(e)-461(c)28(h)28(ust!.)1(..)-460(Nie)-460(n)1(arobi)-459(s)-1(i)1(\\246)-1(,)-459(nie)-460(u)1(m)-1(ar)1(t)27(wi)-459(nicz)-1(y)1(m)-1(,)-459(t\\252usto)-460(zje...)-459(Stac)27(h)1(o)]TJ 0 -13.549 Td[(p)-27(o)27(wieda\\252)-316(p)1(rze)-1(cie,)-316(\\273)-1(e)-316(Jagu)1(s)-1(t)28(yn)1(k)55(a)-316(za)-316(ni)1(\\241)-316(rob)1(i,)-316(a)-316(ona)-315(do)-316(bi)1(a\\252e)-1(go)-316(d)1(nia)-316(si\\246)-316(w)-1(y)1(le)-1(gu)1(je)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-258(pierzyn\\241)-258(i)-259(h)1(e)-1(r)1(bat\\246)-259(p)-27(opij)1(a...)-258(z)-1(iemniak)1(i)-259(j)1(e)-1(j)-258(ni)1(e)-260(s\\252u\\273\\241...)-258(a)-259(stary)-258(s)-1(i\\246)-259(in)1(o)-259(p)1(rzym)-1(i)1(la)]TJ 0 -13.55 Td[(i)-333(kiej)-333(k)28(o\\252o)-333(dzie)-1(ci\\241tk)56(a)-333(z)-1(ab)1(ie)-1(ga.)1(...)]TJ 27.879 -13.549 Td[(Gn)1(iew)-334(j\\241)-333(pr)1(z)-1(ej\\241\\252)-333(nag\\252y)84(,)-333(a\\273)-334(s)-1(i)1(\\246)-334(p)-27(orw)27(a\\252a)-333(o)-28(d)-333(skrzyn)1(ki)-333(i)-333(p)-28(ogr)1(oz)-1(i\\252a)-333(pi)1(\\246)-1(\\261c)-1(i\\241.)]TJ 0 -13.549 Td[({)-410(Z\\252)-1(o)-27(dzie)-1(j)1(,)-410(\\261)-1(cierw)27(a,)-410(z\\252o)-28(dziej,)-410(laku)1(dr)1(a)-411(j)1(e)-1(d)1(na,)-410(t\\252uk)1(!{)-411(wyk)1(rz)-1(y)1(kn\\246\\252a)-411(w)-410(g\\252os)-1(,)]TJ -27.879 -13.549 Td[(a\\273)-334(stary)84(,)-333(c)-1(o)-333(b)28(y\\252)-333(na)-333(pr)1(z)-1(yp)1(iec)27(ku)-333(d)1(rze)-1(ma\\252,)-333(z)-1(erw)28(a\\252)-334(si\\246)-334(p)1(rz)-1(estrasz)-1(on)28(y)84(.)]TJ 27.879 -13.549 Td[({)-295(O)1(c)-1(iec,)-295(p)1(rz)-1(y)1(tk)56(a)-56(jcie)-295(zie)-1(mn)1(iaki)-294(o)-28(c)-1(i)1(pk)56(\\241)-295(i)-294(d\\363\\252)-294(ob)28(w)27(al)1(c)-1(ie)-295(\\261niegiem)-1(,)-294(b)-27(o)-295(n)1(a)-295(mr\\363z)]TJ -27.879 -13.549 Td[(si\\246)-334(ma)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(s)-1(p)-27(ok)28(o)-56(j)1(niej)-333(zbiera)-55(j\\241c)-334(si\\246)-334(zno)28(wu)-333(do)-333(licz)-1(eni)1(a.)]TJ 27.879 -13.55 Td[(St)1(are)-1(m)28(u)-343(c)-1(o\\261)-344(n)1(ie)-1(sp)-27(oro)-344(sz)-1(\\252a)-344(r)1(ob)-28(ot)1(a,)-344(\\261niegu)-343(b)28(y\\252a)-344(k)1(upa,)-343(a)-344(si\\252)-344(wiele)-344(ni)1(e)-345(mia\\252,)]TJ -27.879 -13.549 Td[(a)-329(i)-329(t)1(e)-330(d)1(w)27(a)-329(z\\252ote)-330(p)-27(ostron)1(k)28(o)27(w)28(e)-1(go)-328(nie)-329(da\\252y)-329(m)28(u)-329(sp)-27(ok)28(o)-56(j)1(u,)-329(n)1(a)-329(s)-1(t)1(ole)-330(\\261wie)-1(ci\\252y)-329(si\\246)-329(dwie)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(\\363)27(wki)1(,)-334(p)1(ra)28(wie)-334(n)1(o)27(w)28(e)-1(,)-333(d)1(obr)1(z)-1(e)-334(p)1(am)-1(i)1(\\246)-1(ta\\252..)1(.)]TJ 27.879 -13.549 Td[({)-264(M)1(o\\273)-1(e)-264(i)-264(d)1(adz\\241...)-264({)-263(m)27(y\\261la\\252)-264({)-264(k)28(om)28(u\\273)-264(to)-264(si\\246)-264(przyn)1(ale)-1(\\273\\241?...)-263(a\\273)-265(m)28(u)-264(k)1(ulas)-264(ste)-1(r)1(g\\252)]TJ -27.879 -13.549 Td[(o)-28(d)-329(p)-27(os)-1(tr)1(onk)56(a,)-330(t)1(ak)-330(si\\246)-330(krasul)1(a)-330(wydziera\\252a...)-329(ws)-1(tr)1(z)-1(y)1(m)-1(a\\252)-330(p)1(rze)-1(ciec)27(h.)1(..)-330(a)-329(kup)-27(com)-330(to)]TJ 0 -13.55 Td[(ni)1(e)-477(zac)27(h)29(w)27(ala\\252?)-476(s\\252ys)-1(ze)-1(l)1(i...)-475(c)27(heba)-475(dad)1(z)-1(\\241...)-475(Zaraz)-476(b)28(y)-476(starsze)-1(m)28(u,)-476(P)1(ietrusio)28(wi,)-476(n)1(a)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(y)1(m)-466(o)-28(d)1(pu)1(\\261)-1(cie)-466(k)1(up)1(i\\252)-466(or)1(ganki)1(...)-465(m\\252o)-28(dsz)-1(em)27(u)-464(b)28(y)-465(te\\273)-466(tr)1(z)-1(a..)1(.)-465(W)83(eronczyn)28(ym)]TJ 0 -13.549 Td[(dziec)-1(i)1(om)-314(te\\273)-1(..)1(.)-314(zb)-27(\\363)-56(je)-313(s)-1(\\241)-313(i)-313(up)1(rzykrzone,)-313(ale)-314(tr)1(z)-1(a..)1(.)-314(a)-313(sobie)-314(t)1(abaki.)1(..)-313(krze)-1(p)1(kiej)-313(in)1(o,)]TJ 27.879 -13.549 Td[(ja\\273b)28(y)-371(w)28(e)-371(w)27(\\241tp)1(iac)27(h)-370(z)-1(a)28(wie)-1(r)1(c)-1(i)1(\\252)-1(o,)-370(b)-28(o)-371(S)1(tac)27(h)1(o)27(w)28(a)-371(s)-1(\\252ab)1(a...)-371(an)1(i)-371(cz)-1(\\252ek)-371(nie)-371(kic)28(hn)1(ie)]TJ -27.879 -13.549 Td[(o)-28(d)-283(niej..)1(.)-284({)-284(Roz)-1(li)1(c)-1(za\\252,)-284(a)-284(tak)-284(\\273w)27(a)28(w)27(o)-284(r)1(obi\\252,)-284(\\273e)-285(gd)1(y)-284(w)-284(go)-28(dzin)1(\\246)-285(j)1(ak)55(\\241)-284(Han)1(k)56(a)-285(wyj)1(rza\\252a,)]TJ 0 -13.55 Td[(to)-333(ledwie)-334(s\\252om)-1(a)-333(b)28(y\\252a)-333(p)-27(okryta)-333(\\261niegiem)-1(.)]TJ 27.879 -13.549 Td[({)-333(Za)-334(c)28(h\\252opa)-333(to)-333(z)-1(j)1(e)-1(cie,)-333(a)-1(l)1(e)-334(i)-333(z)-1(a)-333(dziec)27(k)28(o)-333(nie)-333(z)-1(r)1(obicie...)]TJ 0 -13.549 Td[({)-229(A)-229(dy)1(\\242)-230(si\\246)-230(spiesz)-1(\\246,)-229(Han)28(u\\261,)-229(in)1(om)-230(si\\246)-229(z)-1(ad)1(yc)27(h)1(a\\252)-230(zdziebk)28(o,)-229(tom)-229(tego)-230(p)-27(o)28(wie)-1(t)1(rz)-1(a)]TJ -27.879 -13.549 Td[(\\252apa\\252..)1(.)-333(pieru)1(ne)-1(m)-333(b)-28(\\246dzie...)-333(p)1(ie)-1(r)1(un)1(e)-1(m...)-333({)-333(j\\241k)56(a\\252)-334(p)1(rze)-1(strasz)-1(on)29(y)83(.)]TJ 27.879 -13.549 Td[({)-450(Wi)1(e)-1(cz)-1(\\363r)-449(ju\\273)-450(p)-27(o)-28(d)-449(las)-1(em)-1(,)-449(m)-1(r)1(\\363z)-451(b)1(ierze)-1(,)-450(a)-450(ca\\252y)-450(d)1(\\363\\252)-450(roz)-1(w)28(alon)28(y)84(,)-450(j)1(akb)28(y)-450(go)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(nie)-334(sp)28(ysk)56(a\\252y)-334(.)1(Id\\271c)-1(ie)-333(do)-333(c)27(ha\\252u)1(p)28(y)-333(dziec)-1(i)-333(p)1(ilno)28(w)28(a\\242)-334(.)]TJ 27.879 -13.549 Td[(ci)-334(p)1(iln)1(o)28(w)27(a\\242:)]TJ 0 -13.549 Td[(Sama)-387(si\\246)-387(z)-1(ab)1(ra\\252a)-387(d)1(o)-387(\\261)-1(n)1(ie)-1(gu)-386(i)-387(t)1(ak)-387(ostro,)-387(\\273e)-387(w)-387(jakie)-387(d)1(w)27(a)-387(p)1(ac)-1(ierze)-387(d\\363\\252)-387(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(w)27(alon)29(y)-334(i)-333(galan)29(to)-334(ok)1(le)-1(p)1(an)28(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-475(m)-1(r)1(o)-28(c)-1(ze)-1(\\242)-475(ju)1(\\273)-476(p)-27(o)-28(cz)-1(yn)1(a\\252o,)-475(gdy)-475(sk)28(o\\253cz)-1(y\\252a,)-475(w)-475(izbie)-475(c)27(h)1(\\252)-1(\\363)-27(d)-475(s)-1(i)1(\\246)-476(p)-27(o)-28(dn)1(os)-1(i)1(\\252)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(y)84(,)-296(glini)1(an)28(y)83(,)-296(mokry)-296(tok)-296(t\\246\\273)-1(a\\252)-296(i)-296(du)1(dn)1(i\\252)-297(p)-27(o)-28(d)-296(tr)1(e)-1(p)1(am)-1(i)-296(ki)1(e)-1(j)-296(kl)1(e)-1(p)1(is)-1(k)28(o,)-296(mr\\363z)]TJ 0 -13.549 Td[(br)1(a\\252)-303(z)-303(miejsc)-1(a)-302(i)-302(z)-1(n)1(o)27(wu)-302(a)-302(w)-1(zorzysto)-303(p)-27(okry)1(w)27(a\\252)-302(s)-1(zybk)1(i,)-302(dzie)-1(ci)-302(s)-1(kwiercz)-1(a\\252y)-302(z)-303(cic)27(h)1(a,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-472(przyg\\252o)-28(d)1(ne)-473(n)1(iec)-1(o,)-472(ni)1(e)-473(pr)1(z)-1(ycisz)-1(a\\252a)-472(ic)27(h)1(,)-472(b)-28(o)-472(c)-1(zas)-1(u)-471(nie)-473(b)29(y\\252o.)-472(A)-473(to)-472(sie)-1(cz)-1(k)1(i)]TJ 0 -13.549 Td[(m)27(u)1(s)-1(i)1(a\\252a)-376(u)1(rz)-1(n)1(\\241\\242)-376(dl)1(a)-376(j)1(a\\252o)27(wicy)83(,)-375(p)1(rosiak)56(a)-376(n)1(ak)55(ar)1(m)-1(i)1(\\242)-1(,)-375(b)-27(o)-376(p)-27(okwikiw)28(a\\252)-376(i)-375(cisn\\241\\252)-376(si\\246)-376(d)1(o)]TJ 0 -13.549 Td[(dr)1(z)-1(wi,)-432(g\\241s)-1(ki)-433(n)1(ap)-27(oi\\242)-1(,)-432(a)-433(to)-433(jes)-1(zc)-1(ze)-434(r)1(az)-434(p)1(rze)-1(p)-27(o)27(wiedzia\\252a)-433(sobie,)-433(il)1(e)-434(i)-433(k)28(om)28(u)-433(mia\\252a)]TJ 0 -13.549 Td[(zap\\252ac)-1(i)1(\\242)-1(,)-333(a\\273)-334(ob)1(rz\\241dziws)-1(zy)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(zabra\\252a)-333(s)-1(i)1(\\246)-334(do)-333(wyj\\261c)-1(i)1(a.)]TJ 27.879 -13.55 Td[({)-490(Ociec)-1(,)-489(nap)1(alc)-1(i)1(e)-491(ogi)1(e)-1(\\253)-489(a)-490(mie)-1(j)1(c)-1(i)1(e)-491(b)1(ac)-1(ze)-1(n)1(ie)-490(na)-490(d)1(z)-1(i)1(e)-1(ci,)-490(za)-490(p)1(ar\\246)-490(pacie)-1(r)1(z)-1(y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(jd\\246,)-333(a)-333(jakb)28(y)-333(An)28(t)1(e)-1(k)-333(wr\\363)-28(ci\\252,)-333(to)-333(k)55(ap)1(usta)-333(jes)-1(t)-333(w)-334(r)1(ynce)-334(n)1(a)-334(b)1(las)-1(ze...)]TJ 27.879 -13.549 Td[({)-330(Dobr)1(z)-1(e,)-330(Han)28(u\\261,)-330(nap)1(al\\246,)-330(przyp)1(iln)28(u)1(j\\246,)-330(a)-331(k)56(ap)1(usta)-330(jes)-1(t)-330(w)-330(ryn)1(c)-1(e,)-330(bacz)-1(\\246,)-330(Ha-)]TJ -27.879 -13.549 Td[(n)28(u)1(\\261)-1(,)-333(b)1(ac)-1(z\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-288(A)-289(t)1(e)-289(p)-28(ostron)1(k)28(o)28(w)27(e)-289(wzi\\246\\252)-1(am,)-288(ni)1(e)-289(p)-27(otrza)-289(w)28(am)-289(p)1(rze)-1(cie)-1(\\273,)-288(je\\261)-1(\\242)-288(m)-1(acie,)-288(s)-1(zm)-1(at)28(y)]TJ -27.879 -13.55 Td[(mac)-1(ie,)-333(c)-1(zeg\\363\\273)-334(w)27(am)-333(w)-1(i)1(\\246)-1(ce)-1(j)1(?)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(ws)-1(zystk)28(o)-333(m)-1(am,)-333(Han)28(u)1(\\261)-1(,)-333(ws)-1(zystk)28(o...)-333({)-333(sz)-1(epta\\252)-333(c)-1(i)1(c)27(h)28(u)1(tk)28(o,)-333(o)-28(dwr)1(\\363)-28(c)-1(i)1(\\252)]TJ\nET\nendstream\nendobj\n613 0 obj <<\n/Type /Page\n/Contents 614 0 R\n/Resources 612 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n612 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n617 0 obj <<\n/Length 9418      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(189)]TJ -358.232 -35.866 Td[(si\\246)-334(sz)-1(yb)1(k)28(o)-334(d)1(o)-334(d)1(z)-1(i)1(e)-1(ci,)-333(b)-27(o)-334(\\252zy)-333(p)-28(osypa\\252y)-333(m)28(u)-333(s)-1(i\\246)-333(z)-334(o)-28(cz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(Mr)1(\\363z)-327(j\\241)-326(ob)28(wion)1(\\241\\252)-327(n)1(a)-327(p)-27(o)28(wie)-1(t)1(rz)-1(u)1(,)-326(\\273)-1(e)-326(m)-1(o)-28(cni)1(e)-1(j)-326(zac)-1(i)1(\\241)-28(gn\\246\\252a)-326(z)-1(apask)28(\\246)-327(n)1(a)-327(g\\252o)28(w)28(\\246)-1(,)]TJ -27.879 -13.549 Td[(\\261nieg)-365(s)-1(k)1(rz)-1(y)1(pia\\252)-365(p)-27(o)-28(d)-364(nogami,)-365(n)1(a)-365(z)-1(iemi\\246)-366(syp)1(a\\252)-365(s)-1(i\\246)-365(mrok)-365(mo)-28(dr)1(a)28(w)-1(y)84(,)-365(suc)27(h)29(y)-365(i)-365(d)1(z)-1(iw-)]TJ 0 -13.549 Td[(ni)1(e)-364(p)1(rze)-1(j)1(rzys)-1(t)28(y)84(,)-363(ni)1(e)-1(b)-27(o)-363(b)28(y\\252o)-363(j)1(as)-1(n)1(e)-1(,)-362(kieb)28(y)-363(sz)-1(k)1(lane,)-363(o)-28(d)1(s)-1(\\252on)1(i\\246te)-364(w)-363(d)1(alac)27(h)-362(i)-363(ju)1(\\273)-363(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(k)56(a)-56(j)1(\\261)-334(w)-333(w)-1(ysok)28(o\\261c)-1(iac)28(h)-333(trz\\246)-1(s\\252a)-334(si\\246)-334(gwiazda)-333(jedn)1(a)-333(i)-334(d)1(ru)1(ga.)]TJ 27.879 -13.55 Td[(Hank)56(a)-360(r)1(az)-361(w)-360(r)1(az)-361(mac)-1(a\\252a)-360(za)-360(p)1(az)-1(u)1(c)27(h\\241,)-359(c)-1(zy)-360(ma)-360(pi)1(e)-1(n)1(i\\241dze)-1(,)-359(a)-360(rozm)27(y\\261la\\252a,)-360(\\273e)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ep)28(yta)-300(s)-1(i)1(\\246)-301(tu)-300(i)-301(\\363)28(wdzie,)-301(a)-300(mo\\273)-1(e)-301(zna)-55(jdzie,)-301(mo\\273e)-301(up)1(ros)-1(i)-300(rob)-27(ot\\246)-301(j)1(ak)55(\\241)-300(dl)1(a)-301(An)28(tk)56(a,)-300(a)]TJ 0 -13.549 Td[(w)28(e)-304(\\261)-1(wiat)-303(m)28(u)-303(i\\261)-1(\\242)-303(nie)-303(da!)-303(T)83(eraz)-304(d)1(opiero)-303(pr)1(z)-1(ysz\\252)-1(o)-303(j)1(e)-1(j)-303(d)1(o)-304(g\\252o)28(wy)83(,)-303(co)-303(b)28(y\\252)-303(w)-1(y)1(gadyw)28(a\\252,)]TJ 0 -13.549 Td[(i)-454(a\\273)-454(j)1(\\241)-454(z)-1(amro)-27(c)-1(zy\\252o)-454(to)-454(p)1(rzyp)-27(om)-1(n)1(ie)-1(n)1(ie.)-454(Nie,)-454(p)-27(\\363ki)-453(\\273)-1(ycia,)-453(na)-454(d)1(ru)1(g)-1(\\241)-453(w)-1(i)1(e)-1(\\261)-454(si\\246)-454(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(eni)1(e)-1(sie)-1(,)-333(p)-27(omi\\246)-1(d)1(z)-1(y)-333(ob)-27(c)-1(y)1(c)27(h)-333(n)1(ie)-334(p)-27(\\363)-56(j)1(dzie)-1(,)-333(ad)1(y)-334(b)29(y)-333(usc)27(hn)1(\\246)-1(\\252a)-333(z)-334(t\\246s)-1(k)1(nicy!)]TJ 27.879 -13.549 Td[(Ogar)1(n\\246\\252)-1(a)-321(o)-28(czam)-1(i)-321(d)1(rog\\246,)-321(z)-1(asypan)1(e)-322(d)1(om)27(y)84(,)-321(s)-1(ad)1(y)-321(le)-1(d)1(wie)-322(wid)1(ne)-322(sp)-27(o)-28(d)-321(\\261nieg\\363)28(w)]TJ -27.879 -13.55 Td[(i)-298(te)-299(sz)-1(ar)1(z)-1(ej\\241ce)-299(niesk)28(o\\253cz)-1(one)-298(p)-28(ol)1(a.)-299(W)1(ie)-1(cz)-1(\\363r)-298(cic)27(h)29(y)-298(i)-299(mro\\271n)28(y)-298(opad)1(a\\252)-299(coraz)-299(p)1(r\\246dze)-1(j)1(,)]TJ 0 -13.549 Td[(gwiazd)-325(pr)1(z)-1(yb)29(yw)27(a\\252o,)-325(j)1(akb)28(y)-325(j)1(e)-326(kto)-325(rozsie)-1(w)28(a\\252)-325(p)-28(e\\252n\\241)-325(gar\\261c)-1(i)1(\\241,)-325(a)-325(na)-325(z)-1(i)1(e)-1(mi)-325(pr)1(z)-1(ygas\\252e)-1(j)]TJ 0 -13.549 Td[(ws)-1(k)1(r\\363\\261)-484(\\261nie\\273)-1(n)29(yc)27(h)-483(b)1(ielizn)-483(wyb\\252yskiw)28(a\\252y)-483(\\261)-1(wiate\\252k)56(a)-484(c)28(ha\\252u)1(p,)-483(dy)1(m)27(y)-483(cz)-1(u)1(\\242)-484(b)28(y\\252o)-483(w)]TJ 0 -13.549 Td[(p)-27(o)27(wietrzu,)-333(lu)1(dzie)-334(sn)28(u)1(li)-333(s)-1(i\\246)-333(p)-28(o)-333(dr)1(o)-28(dze,)-334(g\\252osy)-333(jaki)1(e)-1(\\261)-334(l)1(e)-1(cia\\252y)-333(nisk)28(o)-333(nad)-333(\\261niegam)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-389(Z)-389(tegom)-390(wyr)1(os)-1(\\252a)-389(i)-389(j)1(ak)28(o)-389(te)-1(n)-388(w)-1(i)1(ate)-1(r)-388(nie)-389(b)-28(\\246d\\246)-389(s)-1(i)1(\\246)-390(t\\252u)1(k\\252a)-389(p)-28(o)-389(\\261wie)-1(cie,)-389(ni)1(e)-1(!)]TJ -27.879 -13.55 Td[({)-341(sz)-1(ept)1(a\\252)-1(a)-340(z)-341(m)-1(o)-27(c)-1(\\241,)-340(z)-1(w)28(olni)1(\\252)-1(a)-340(nieco)-341(b)-27(o)-341(z)-1(ap)1(ada\\252a)-340(m)-1(iejscam)-1(i)-340(w)-341(c)27(h)1(rup)1(i\\241cy)-341(\\261nieg)-341(a\\273)]TJ 0 -13.549 Td[(p)-27(o)-334(k)28(ol)1(ana,)-333(\\273)-1(e)-333(trep)28(y)-333(trze)-1(b)1(a)-334(b)29(y\\252o)-334(wyci\\241)-28(ga\\242!)]TJ 27.879 -13.549 Td[({)-395(T)83(u)-395(mni)1(e)-396(P)28(an)-395(J)1(e)-1(zus)-396(d)1(a\\252)-395(na)-395(\\261)-1(wiat,)-394(to)-396(j)1(u\\273)-395(tuta)-55(j)-395(d)1(o)-396(\\261mie)-1(r)1(c)-1(i)-395(ostan\\246.)-395(Ab)28(y)]TJ -27.879 -13.549 Td[(in)1(o)-375(d)1(o)-374(z)-1(wies)-1(n)28(y)-374(p)1(rze)-1(tr)1(z)-1(y)1(m)-1(a\\242,)-374(to)-374(ju)1(\\273)-375(\\252ac)-1(n)1(ie)-1(j)-373(b)-28(\\246dzie,)-374(le)-1(k)28(ciej.)-374(A)-374(ni)1(e)-375(ze)-1(c)27(h)1(c)-1(e)-374(An)28(tek)]TJ 0 -13.549 Td[(rob)1(i\\242,)-325(t)1(o)-325(i)-324(tak)-324(p)-27(o)-325(p)1(rosz)-1(on)28(y)1(m)-325(ni)1(e)-325(p)-27(\\363)-56(jd)1(\\246)-1(,)-324(d)1(o)-325(p)1(rz\\246)-1(d)1(z)-1(enia)-324(si\\246)-325(w)28(e)-1(zm)-1(\\246,)-324(do)-324(tk)56(ani)1(a,)-325(d)1(o)]TJ 0 -13.55 Td[(cz)-1(ego)-408(b\\241d)1(\\271)-1(,)-407(b)28(yl)1(e)-408(ino)-407(pazury)-407(zac)-1(ze)-1(p)1(i\\242)-408(i)-408(b)1(iedzie)-408(s)-1(i)1(\\246)-409(n)1(ie)-408(d)1(a\\242)-1(..)1(.)-408(p)1(ra)28(w)-1(d)1(a,)-408(d)1(y\\242)-408(W)84(e)-1(-)]TJ 0 -13.549 Td[(ron)1(k)56(a)-300(a)-299(tk)56(aniem)-300(zarab)1(ia)-299(t)28(yle,)-300(\\273e)-300(j)1(e)-1(sz)-1(cz)-1(e)-299(i)-299(te)-1(n)-298(gros)-1(z)-299(z)-1(ap)1(a\\261)-1(n)28(y)-299(ma)-56(j)1(\\241...)-299({)-299(rozw)27(a\\273a\\252a)]TJ 0 -13.549 Td[(skr\\246c)-1(a)-55(j\\241c)-425(do)-424(k)56(arc)-1(zm)27(y)84(.)-424(P)28(o)-28(c)27(h)29(w)27(ali)1(\\252)-1(a)-424(B)-1(oga,)-424(Jan)1(kiel)-425(o)-28(d)1(rze)-1(k)1(\\252)-1(:)-424(\\377)-56(Na)-424(wie)-1(k)1(i!\")-425(i)-424(kiw)28(a\\252)]TJ 0 -13.549 Td[(si\\246)-363(zwyc)-1(za)-56(j)1(ni)1(e)-363(n)1(ad)-362(ksi\\241\\273k)55(\\241)-362(n)1(ie)-362(bacz)-1(\\241c)-362(na)-362(n)1(i\\241,)-362(d)1(opiero)-362(gd)1(y)-362(p)-27(o\\252)-1(o\\273y\\252a)-362(p)1(rz)-1(ed)-361(nim)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-1(,)-393(u\\261m)-1(iec)27(h)1(n\\241\\252)-394(si\\246)-395(p)1(rzyja\\271ni)1(e)-1(,)-394(r)1(oz)-1(j)1(a\\261)-1(n)1(i\\252)-394(w)-1(i)1(\\246)-1(ce)-1(j)-393(\\261)-1(wiat\\252o)-394(w)-394(lampi)1(e)-395(wisz)-1(\\241-)]TJ 0 -13.55 Td[(ce)-1(j)1(,)-337(p)-27(om\\363g\\252)-337(jej)-336(liczy\\242)-337(i)-336(na)28(w)27(et)-336(w)27(\\363)-28(d)1(k)56(\\241)-337(p)-27(o)-28(cz)-1(\\246s)-1(to)28(w)28(a\\252)-1(.)-336(O)-336(An)28(tk)28(o)28(wym)-337(za\\261)-337(d\\252u)1(gu)-336(ni)-336(o)]TJ 0 -13.549 Td[(ni)1(m)-362(s)-1(am)28(ym)-362(n)1(ie)-362(rze)-1(k)1(\\252)-362(n)1(i)-362(s\\252o)27(w)28(a;)-361(z)-1(m)28(y\\261lna)-361(ju)1(c)27(ha)-361(b)28(y\\252a,)-361(b)-27(o)-362(co)-362(ta)-361(k)28(obi)1(e)-1(cie)-362(wiedzie)-1(\\242)]TJ 0 -13.549 Td[(o)-405(c)28(h\\252opskic)28(h)-405(j)1(e)-1(n)29(te)-1(r)1(e)-1(sac)27(h,)-404(w)-405(g\\252o)28(w)27(\\246)-405(d)1(obrze)-405(nie)-405(w)28(e)-1(\\271mie)-1(,)-404(nie)-405(wyr)1(oz)-1(u)1(m)-1(i)1(e)-1(,)-404(jak)-404(p)-28(o-)]TJ 0 -13.549 Td[(trza,)-416(a)-416(i)1(no)-416(z)-416(p)28(yskiem)-416(w)-1(y)1(jec)27(ha\\242)-416(goto)28(w)27(a.)-415(Dopiero)-416(k)1(ie)-1(j)-415(si\\246)-417(zabi)1(e)-1(r)1(a\\252)-1(a)-415(do)-416(wyj)1(\\261)-1(cia)]TJ 0 -13.549 Td[(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.55 Td[({)-333(A)-334(w)28(as)-1(z)-333(c)-1(o)-333(rob)1(i?)]TJ 0 -13.549 Td[({)-333(An)28(tek?...)-333(A)-333(p)-28(osz)-1(ed\\252)-333(s)-1(zuk)56(a\\242)-334(r)1(ob)-28(ot)28(y!)]TJ 0 -13.549 Td[({)-457(B)-1(o)-457(to)-457(w)28(e)-458(ws)-1(i)-457(b)1(rak?)-457(W)84(e)-458(m\\252)-1(y)1(nie)-457(tartak)-457(r)1(obi\\241,)-457(j)1(a)-457(te)-1(\\273)-457(p)-28(otr)1(z)-1(ebu)1(j\\246)-458(k)28(ogo)]TJ -27.879 -13.549 Td[(spra)28(wnego)-333(do)-333(z)-1(w)28(\\363z)-1(ki)-333(d)1(rze)-1(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(w)-333(k)56(arc)-1(zmie)-334(m\\363)-56(j)-333(r)1(obi\\252)-333(nie)-333(b)-28(\\246dzie!)-333({)-334(wykr)1(z)-1(yk)1(n\\246\\252a.)]TJ 0 -13.549 Td[({)-316(Niec)27(h)-316(sobi)1(e)-317(\\261)-1(p)1(i,)-316(n)1(ie)-1(c)28(h)-316(wyp)-27(o)-28(cz)-1(yw)28(a,)-316(kiedy)-316(t)1(aki)-316(pan)1(!)-316(Wy)-316(mac)-1(i)1(e)-317(g\\246s)-1(i,)-316(p)-27(o)-28(d)1(-)]TJ -27.879 -13.55 Td[(pa\\261cie)-334(tro)-27(c)27(h\\246,)-333(kup)1(i\\246)-334(n)1(a)-334(\\261wi\\246ta.)]TJ 27.879 -13.549 Td[({)-333(Za\\261)-1(b)28(y)1(m)-334(tam)-334(spr)1(z)-1(eda)28(w)27(a\\252a,)-333(osta)28(w)-1(i)1(\\252am)-334(in)1(o)-334(t)28(yla,)-333(co)-333(na)-333(c)27(ho)28(w)28(anie!)]TJ 0 -13.549 Td[({)-489(Kup)1(ic)-1(i)1(e)-490(na)-489(wios)-1(n)1(\\246)-490(m\\252o)-28(de,)-489(m)-1(n)1(ie)-490(p)-27(otrze)-1(b)1(a)-490(p)-27(o)-28(d)1(pasion)28(yc)28(h.)-489(Chce)-1(cie)-1(,)-489(to)]TJ -27.879 -13.549 Td[(mo\\273)-1(ec)-1(i)1(e)-334(br)1(a)-1(\\242)-333(na)-333(b)-28(\\363r)1(g)-334(wsz)-1(y)1(s)-1(tk)28(o,)-333(a)-333(z)-1(ap)1(\\252ac)-1(icie)-334(g\\246s)-1(i)1(am)-1(i)1(,)-334(p)-27(oli)1(c)-1(zym)27(y)-333(si\\246...)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(,)-333(g\\241sk)28(\\363)28(w)-334(n)1(ie)-334(pr)1(z)-1(edam.)]TJ 0 -13.55 Td[({)-333(Sp)1(rz)-1(edacie,)-333(jak)-333(krasul)1(\\246)-334(z)-1(j)1(e)-1(cie,)-333(to)-334(n)1(a)28(w)27(et)-333(tanio)-333(s)-1(p)1(rze)-1(d)1(ac)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(d)1(o)-28(cz)-1(ek)56(anie)-334(t)28(w)28(o)-56(j)1(e)-1(,)-333(p)1(arc)27(h)28(u)-332(jeden!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252)-1(a)-333(wyc)27(h)1(o)-28(d)1(z)-1(\\241c.)]TJ\nET\nendstream\nendobj\n616 0 obj <<\n/Type /Page\n/Contents 617 0 R\n/Resources 615 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n615 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n620 0 obj <<\n/Length 9603      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(190)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Mr)1(\\363z)-382(br)1(a\\252,)-381(a\\273)-382(w)-381(nozdrzac)27(h)-381(wierci\\252o,)-381(ni)1(e)-1(b)-27(o)-381(is)-1(k)1(rz)-1(y)1(\\252o)-382(si\\246)-382(j)1(u\\273)-381(gw)-1(i)1(az)-1(d)1(am)-1(i,)-381(a)]TJ -27.879 -13.549 Td[(o)-28(d)-336(b)-27(or\\363)28(w)-336(p)-28(o)-27(c)-1(i\\241)-28(ga\\252)-336(mro\\271n)28(y)83(,)-336(sz)-1(czypi\\241cy)-336(wiatr.)-336(S)1(z)-1(\\252a)-336(jedn)1(ak)-336(w)27(oln)1(o)-336(\\261)-1(ro)-27(dki)1(e)-1(m)-337(d)1(ro-)]TJ 0 -13.549 Td[(gi)-368(i)-369(ciek)55(a)28(wie)-369(si\\246)-369(rozpatr)1(yw)27(a\\252a)-368(p)-28(o)-368(c)27(ha\\252u)1(pac)28(h:)-368(\\261)-1(wiec)-1(i\\252o)-368(s)-1(i\\246)-369(u)-368(W)84(ac)27(h)1(nik)28(\\363)28(w,)-369(k)1(t\\363rzy)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(e)-1(li)-391(ostatni)-391(pr)1(z)-1(ed)-391(k)28(o\\261)-1(cio\\252e)-1(m;)-391(z)-392(ob)-28(ej\\261c)-1(i)1(a)-392(P)1(\\252)-1(oszk)28(\\363)27(w)-392(b)1(uc)28(ha\\252a)-392(wr)1(z)-1(a)28(w)27(a)-391(g\\252os)-1(\\363)28(w)]TJ 0 -13.549 Td[(i)-342(kwiki)-342(\\261)-1(wi\\253)1(;)-342(w)-343(pleban)1(i)-342(gorz)-1(a\\252y)-342(ws)-1(zystkie)-343(ok)1(na)-343(i)-342(j)1(akie\\261)-343(k)28(onie)-343(b)1(i\\252y)-342(niec)-1(i)1(e)-1(rp)1(liwie)]TJ 0 -13.55 Td[(k)28(op)28(yt)1(am)-1(i)-287(pr)1(z)-1(ed)-287(gank)1(ie)-1(m;)-287(u)-287(K\\252\\246)-1(b)-27(\\363)28(w)-288(za\\261)-1(,)-287(co)-288(w)-287(p)-28(o)-27(dle)-288(k)1(s)-1(i\\246dza)-288(siedzieli,)-287(te)-1(\\273)-287(ja\\261nia-)]TJ 0 -13.549 Td[(\\252o)-408(\\261)-1(wiat\\252o)-408(i)-408(ktosik)-408(c)27(h)1(o)-28(dzi\\252)-408(k)28(o\\252o)-409(ob)-27(\\363r,)-408(b)-27(o)-408(s)-1(\\252yc)28(ha\\242)-409(b)29(y\\252o)-408(s)-1(kr)1(z)-1(yp)1(ienie)-408(\\261)-1(n)1(ie)-1(gu)-407(p)-28(o)-28(d)]TJ 0 -13.549 Td[(trepami,)-298(a)-298(d)1(ale)-1(j)1(,)-298(s)-1(p)1(rze)-1(d)-298(k)28(o\\261c)-1(i)1(o\\252a,)-298(s)-1(k)56(\\241d)-298(wie\\261)-299(si\\246)-299(rozc)27(h)1(o)-28(dzi\\252a)-298(kieb)28(y)-298(w)-298(te)-299(d)1(w)-1(i)1(e)-299(r\\246c)-1(e)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(m)27(u)1(j\\241ce)-279(s)-1(t)1(a)27(w,)-278(ma\\252o)-279(co)-278(b)28(y\\252o)-278(wida\\242)-278(ws)-1(kr)1(\\363\\261)-279(no)-27(c)-1(y)84(,)-278(ino)-278(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-278(z)-279(mro)-28(cz)-1(n)1(e)-1(j)]TJ 0 -13.549 Td[(bi)1(e)-1(li)1(z)-1(n)28(y)-333(m\\273y\\252a)-334(\\261wiate)-1(\\252k)28(o)-333(jak)1(ie)-1(\\261)-333(ab)-28(o)-333(pi)1(e)-1(s)-334(n)1(as)-1(zcz)-1(ekiw)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-312(p)-27(opatr)1(z)-1(y)1(\\252)-1(a)-311(ku)-312(o)-55(jco)27(w)28(ej)-312(c)27(h)1(a\\252up)1(ie)-1(,)-311(w)27(es)-1(tc)28(hn)1(\\246)-1(\\252a)-312(i)-312(za)28(wr\\363)-28(ci\\252a)-312(s)-1(p)1(rze)-1(d)-311(k)28(o-)]TJ -27.879 -13.55 Td[(\\261c)-1(io\\252a)-344(w)-345(d\\252u)1(gie)-345(op\\252otki)1(,)-345(wio)-28(d)1(\\241c)-1(e)-345(mi\\246dzy)-345(K\\252\\246b)-27(o)27(wym)-345(sadem)-345(a)-345(k)1(s)-1(i\\246\\273)-1(y)1(m)-345(ogro)-28(d)1(e)-1(m)]TJ 0 -13.549 Td[(do)-263(or)1(ganist\\363)28(w.)-263(Dr\\363\\273k)56(a)-264(b)29(y\\252a)-263(z)-1(asyp)1(ana,)-263(ledwie)-263(c)-1(o)-263(p)1(rze)-1(tar)1(ta,)-263(w)27(\\241sk)56(a,)-263(a)-263(tak)-263(p)1(rzys)-1(\\252o-)]TJ 0 -13.549 Td[(ni)1(\\246)-1(ta)-312(k)1(rzam)-1(i)-311(ob)28(wis)-1(\\252ymi)-312(p)-27(o)-28(d)-311(\\261)-1(n)1(iegie)-1(m,)-312(\\273e)-312(c)-1(o)-312(c)28(h)28(wila)-312(sypa\\252)-312(si\\246)-312(na)-312(n)1(i\\241)-312(z)-312(tr\\241con)28(yc)27(h)]TJ 0 -13.549 Td[(ga\\252\\246)-1(zi.)]TJ 27.879 -13.549 Td[(Dom)-293(s)-1(ta\\252)-293(w)-293(g\\252\\246bi,)-292(w)-294(k)1(s)-1(i\\246\\273)-1(y)1(m)-294(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)1(,)-293(a)-293(ino)-293(wyj)1(az)-1(d)-292(mia\\252)-293(os)-1(ob)1(n)28(y)83(,)-292(krzyki)]TJ -27.879 -13.55 Td[(jak)1(ie)-1(\\261)-330(o)-28(d)1(e)-1(\\253)-329(s)-1(z\\252y)-330(i)-330(p\\252acz)-1(e,)-330(a)-330(pr)1(z)-1(ed)-330(sieni\\241)-330(cz)-1(ern)1(ia\\252a)-330(s)-1(kr)1(z)-1(yn)1(k)56(a,)-330(to)-330(le\\273)-1(a\\252y)-330(n)1(a)-330(\\261)-1(n)1(ie)-1(gu)]TJ 0 -13.549 Td[(p)-27(orozrz)-1(u)1(c)-1(an)1(e)-433(s)-1(zm)-1(at)28(y)84(,)-433(p)1(ie)-1(r)1(z)-1(y)1(na,)-433(r)1(up)1(ie)-1(cie)-433(jak)1(ie)-1(\\261...)-432(Magd)1(a,)-433(dziew)-1(k)56(a)-433(or)1(ganist\\363)28(w,)]TJ 0 -13.549 Td[(zanosi\\252a)-334(si\\246)-334(p)1(\\252ac)-1(ze)-1(m)-333(i)-334(k)1(rzyc)-1(za\\252a)-334(wn)1(ie)-1(b)-27(og\\252osy)-334(p)-27(o)-28(d)-333(\\261c)-1(i)1(an\\241.)]TJ 27.879 -13.549 Td[({)-264(Wygn)1(ali)-264(me)-1(!)-263(Wyp)-27(\\246)-1(d)1(z)-1(i)1(li)-264(me)-1(!)-264(Jak)-263(te)-1(go)-264(p)1(s)-1(a)-264(n)1(a)-264(m)-1(r)1(\\363z)-1(,)-264(w)-264(ca\\252y)-264(\\261)-1(wiat!)-263(A)-264(gdzie)]TJ -27.879 -13.549 Td[(ja)-333(si\\246)-334(sie)-1(r)1(ota)-333(p)-28(o)-28(d)1(z)-1(i)1(e)-1(j)1(\\246)-334(te)-1(r)1(az)-1(?..)1(.Gdzie?)]TJ 27.879 -13.55 Td[({)-470(Nie)-470(kr)1(z)-1(y)1(c)-1(z)-470(m)-1(i)-469(tu,)-469(\\261)-1(win)1(io)-470(j)1(e)-1(d)1(na!)-469({)-470(wrz)-1(asn\\241\\252)-470(g\\252os)-470(z)-470(s)-1(i)1(e)-1(n)1(i)-470(wyw)28(artej.)-470({)]TJ -27.879 -13.549 Td[(W)84(e)-1(zm)-1(\\246)-460(kija,)-460(t)1(o)-461(wn)1(e)-1(t)-460(z)-1(mil)1(kniesz)-1(!)-460(A)-460(wyno\\261)-460(m)-1(i)-460(si\\246)-461(w)-460(te)-461(p)-27(\\246)-1(d)1(y)83(,)-460(d)1(o)-460(F)83(ran)1(k)56(a)-461(i)1(d\\271,)]TJ 0 -13.549 Td[(\\252a)-56(j)1(du)1(s)-1(ie)-333(jeden!)]TJ 27.879 -13.549 Td[(Jak)-285(s)-1(i)1(\\246)-286(m)-1(acie,)-286(Boryn)1(o)28(w)27(a!)-285(Moi\\261c)-1(i)1(e)-1(wy)84(,)-286(a)-285(to)-286(j)1(u\\273)-286(o)-28(d)-285(j)1(e)-1(sie)-1(n)1(i)-285(w)-1(i)1(adomo)-286(b)28(y\\252o.)1(..)-286(a)]TJ -27.879 -13.549 Td[(m\\363)27(wi\\252am,)-303(pr)1(os)-1(i\\252am,)-303(zaklin)1(a\\252am)-1(,)-303(strze)-1(g\\252am)-303({)-304(a)-303(b)-27(o)-303(to)-304(\\252a)-55(jd)1(usa)-304(u)1(s)-1(tr)1(z)-1(e\\273)-1(e!)-303(Wsz)-1(y)1(s)-1(cy)]TJ 0 -13.55 Td[(spa\\242,)-318(a)-318(ona)-317(w)-319(\\261wiat,)-318(wyspacero)28(w)27(a\\252a)-318(teraz)-318(s)-1(ob)1(ie)-318(b)-28(\\246k)56(arta.)-317(A)-318(b)-28(o)-318(t)1(o)-318(raz)-318(m)-1(\\363)28(wi\\252am:)]TJ 0 -13.549 Td[(Magd)1(a,)-278(z)-1(astan\\363)28(w)-278(s)-1(i\\246,)-278(p)-27(om)-1(iar)1(kuj)1(,)-278(on)-278(si\\246)-279(z)-279(tob)1(\\241)-278(nie)-278(o\\273)-1(eni:)1(..)-278(to)-278(m)-1(i)-278(si\\246)-279(w)-278(\\273)-1(yw)28(e)-279(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(zapiera\\252a)-415(ws)-1(zystkiego!)-415(Ju)1(\\261)-1(ci,)-415(zobacz)-1(y)1(\\252)-1(am,)-415(\\273e)-415(dzie)-1(wk)56(a)-415(gru)1(bieje)-415(i)-415(r)1(o\\261)-1(n)1(ie)-415(jak)-415(n)1(a)]TJ 0 -13.549 Td[(dr)1(o\\273)-1(d)1(\\273)-1(ac)28(h,)-403(to)-404(j)1(e)-1(j)-403(jak)-403(k)28(om)27(u)-403(d)1(obrem)27(u)-403(p)-27(o)28(w)-1(i)1(adam:)-404(Id)1(\\271)-1(,)-403(s)-1(k)1(ryj)-403(si\\246)-404(gdzie)-404(na)-403(dru)1(g\\241)]TJ 0 -13.549 Td[(wie\\261)-1(,)-451(p)-27(\\363ki)-451(cz)-1(as,)-451(p)-28(\\363k)1(i)-451(lud)1(z)-1(ie)-451(nie)-451(w)-1(i)1(e)-1(d)1(z)-1(\\241)-451(jesz)-1(cz)-1(e...)-451(A)-451(b)-27(o)-451(to)-452(u)1(s)-1(\\252u)1(c)27(h)1(a\\252)-1(a!)1(...)-451(A\\273)-452(j)1(\\241)]TJ 0 -13.55 Td[(dzisia)-56(j)-477(wz)-1(i\\246\\252y)-478(b)-27(ole\\261)-1(ci)-478(w)-478(ob)-28(or)1(z)-1(e)-478(pr)1(z)-1(y)-478(d)1(o)-56(j)1(e)-1(n)1(iu.)1(..)-478(ca\\252y)-478(s)-1(k)28(op)-27(ek)-478(mle)-1(k)56(a)-478(wyla\\252a..)1(.a)]TJ 0 -13.549 Td[(mo)-56(j)1(a)-481(F)83(ran)1(ia)-481(p)1(rz)-1(y)1(lata)-481(ze)-1(strasz)-1(on)1(a)-481(i)-481(krzycz)-1(y)84(,)-481(\\273e)-482(M)1(agdzie)-482(si\\246)-481(c)-1(o\\261)-481(s)-1(t)1(a\\252)-1(o!)-480(Je)-1(zus)]TJ 0 -13.549 Td[(Mar)1(ia,)-260(w)-260(moim)-260(d)1(om)27(u)-259(taki)-259(w)-1(st)28(yd,)-259(a)-260(co)-260(b)28(y)-259(to)-260(i)-260(k)1(s)-1(i\\241d)1(z)-260(prob)-27(osz)-1(cz)-260(na)-260(to)-259(p)-28(o)28(wiedzia\\252!)]TJ 0 -13.549 Td[(A)-386(w)-1(y)1(no\\261)-387(mi)-386(s)-1(i\\246)-387(spr)1(z)-1(ed)-386(dom)28(u,)-386(b)-27(o)-387(ci\\246)-387(n)1(a)-387(d)1(rog\\246)-387(wyrzuci\\242)-387(k)56(a\\273)-1(\\246!)-386({)-387(wrzasn\\246\\252)-1(a)-386(raz)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(wysk)56(akuj)1(\\241c)-334(pr)1(z)-1(ed)-333(dom.)]TJ 27.879 -13.549 Td[(Magd)1(a)-263(p)-27(orw)28(a\\252a)-263(si\\246)-263(s)-1(p)-27(o)-28(d)-262(\\261c)-1(i)1(an)28(y)-263(i)-262(z)-263(p)1(\\252)-1(acze)-1(m)-263(a)-262(wyrze)-1(k)56(ani)1(e)-1(m)-263(zac)-1(z\\246)-1(\\252a)-262(z)-1(b)1(iera\\242)]TJ -27.879 -13.55 Td[(sz)-1(mat)28(y)-333(i)-334(wi\\241za\\242)-334(w)-333(tob)-28(o\\252y)84(.)]TJ 27.879 -13.549 Td[({)-442(Cho)-28(d)1(\\271)-1(cie)-443(d)1(o)-442(m)-1(ies)-1(zk)56(ania,)-442(b)-27(o)-442(z)-1(i)1(m)-1(n)1(o.)-442(\\233e)-1(b)28(y)-442(mi)-442(tu)-442(i)-442(znak)1(u)-442(p)-28(o)-442(tob)1(ie)-443(n)1(ie)]TJ -27.879 -13.549 Td[(zos)-1(ta\\252o!)-333({)-333(krzykn)1(\\246)-1(\\252a)-333(na)-333(o)-28(dc)28(ho)-28(d)1(n)28(ym.)]TJ 27.879 -13.549 Td[(P)28(o)28(wied\\252a)-333(Hank)28(\\246)-334(p)1(rze)-1(z)-334(d)1(\\252ug\\241)-333(s)-1(ie\\253.)]TJ 0 -13.549 Td[(Ogr)1(om)-1(n)1(\\241,)-427(n)1(isk)55(\\241)-426(izb)-28(\\246)-426(roz)-1(\\261wietla\\252)-427(ogie\\253,)-426(p)1(\\252on\\241cy)-427(n)1(a)-427(tr)1(z)-1(on)1(ie)-427(k)28(omina.)-426(Or)1(-)]TJ -27.879 -13.55 Td[(gani)1(s)-1(ta)-377(rozdzian)28(y)84(,)-377(w)-377(k)28(os)-1(zuli)-377(t)28(yl)1(k)28(o)-377(i)-377(z)-378(p)-27(o)-28(dwin)1(i\\246)-1(t)28(y)1(m)-1(i)-377(r)1(\\246)-1(k)56(ami,)-377(c)-1(ze)-1(r)1(w)27(on)29(y)-377(jak)-377(rak)1(,)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-274(p)1(rz)-1(ed)-273(ogn)1(ie)-1(m)-273(i)-273(piek\\252)-273(op\\252atki)1(...)-273(c)-1(o)-273(c)27(h)29(w)-1(i)1(la)-273(c)-1(ze)-1(r)1(pa\\252)-273(\\252)-1(y)1(\\273)-1(k)56(\\241)-273(z)-274(mic)27(h)28(y)-273(r)1(oz)-1(r)1(obio-)]TJ\nET\nendstream\nendobj\n619 0 obj <<\n/Type /Page\n/Contents 620 0 R\n/Resources 618 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n618 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n623 0 obj <<\n/Length 8773      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(191)]TJ -358.232 -35.866 Td[(ne,)-336(p\\252ynn)1(e)-337(c)-1(i)1(as)-1(to,)-336(rozle)-1(w)28(a\\252)-337(j)1(e)-337(na)-337(\\273e)-1(l)1(az)-1(n)1(\\241)-337(for)1(m)-1(\\246,)-337(\\261cis)-1(k)56(a\\252,)-337(a\\273)-337(sycz)-1(a\\252o,)-336(i)-337(k\\252ad)1(\\252)-337(nad)]TJ 0 -13.549 Td[(ogni)1(e)-1(m)-357(w)-1(spi)1(e)-1(r)1(a)-56(j\\241c)-357(na)-357(ce)-1(gle)-357(s)-1(ztorce)-1(m)-357(usta)28(wionej,)-357(p)1(rze)-1(wraca\\252)-357(form\\246)-1(,)-356(w)-1(y)1(jmo)27(w)28(a\\252)]TJ 0 -13.549 Td[(op\\252atek)-360(i)-360(r)1(z)-1(u)1(c)-1(a\\252)-360(na)-360(n)1(is)-1(k)1(i)-360(s)-1(to\\252ek,)-360(p)1(rz)-1(ed)-360(k)1(t\\363rym)-360(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-360(ma\\252y)-360(c)27(h)1(\\252)-1(op)1(ak)-360(i)-360(ob)-27(c)-1(i)1(na\\252)]TJ 0 -13.549 Td[(no\\273ycz)-1(k)56(ami)-333(do)-333(r\\363)28(wna.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(p)-27(oz)-1(d)1(ro)28(w)-1(i)1(\\252)-1(a)-333(ws)-1(zystkic)28(h,)-333(a)-333(organi)1(\\261)-1(cin\\246)-333(p)-28(o)-28(ca\\252o)28(w)27(a\\252a)-333(w)-334(r)1(\\246)-1(k)28(\\246.)]TJ 0 -13.55 Td[({)-333(Siad)1(a)-56(j)1(c)-1(ie,)-333(rozgrze)-1(j)1(c)-1(ie)-333(s)-1(i\\246,)-333(c)-1(\\363\\273)-333(tam)-334(u)-333(w)28(as)-334(s)-1(\\252y)1(c)27(ha\\242?..)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-387(tak)-387(z)-1(ar)1(az)-388(ni)1(e)-388(m)-1(og\\252a)-387(si\\246)-388(ze)-1(b)1(ra\\242)-388(n)1(a)-388(to)-387(jak)1(ie)-388(s\\252o)27(w)28(o,)-387(nie)-387(\\261)-1(mia\\252a,)-387(roz-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a)-56(j)1(\\241c)-292(si\\246)-291(p)-28(o)-290(s)-1(tan)1(c)-1(j)1(i)-291(i)-291(zazie)-1(r)1(a)-56(j)1(\\241c)-292(u)1(krad)1(kiem)-291(do)-291(d)1(rugi)1(e)-1(go)-291(p)-27(ok)28(o)-56(j)1(u,)-290(gdzie)-291(w)-1(p)1(rost)]TJ 0 -13.549 Td[(dr)1(z)-1(wi,)-260(na)-261(d)1(\\252ugim)-261(stole)-261(p)-27(o)-28(d)-260(\\261)-1(cian\\241,)-260(bieli\\252y)-260(s)-1(i\\246)-261(stos)-1(y)-260(op\\252atk)28(\\363)28(w,)-261(p)1(rzyc)-1(i)1(\\261)-1(n)1(i\\246)-1(t)1(e)-262(d)1(e)-1(sk)56(\\241,)]TJ 0 -13.549 Td[(a)-319(d)1(wie)-319(dziew)27(cz)-1(yn)29(y)-319(sk\\252ada\\252y)-318(je)-319(w)-319(p)1(ac)-1(zki)-318(okr\\246c)-1(a)-55(j\\241c)-319(p)1(apiero)28(wymi)-319(p)1(as)-1(k)56(ami,)-318(z)-1(a\\261)-319(w)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)1(i)-316(ju)1(\\273)-317(ni)1(e)-1(d)1(o)-56(jr)1(z)-1(an)1(e)-1(j)-316(b)1(rz\\246)-1(cz)-1(a\\252)-316(monoton)1(nie)-316(g\\252)-1(os)-316(kla)28(wik)28(ord)1(u)-316({)-316(m)27(uzyk)56(a)-316(s)-1(n)28(u)1(\\252a)-316(s)-1(i\\246)]TJ 0 -13.55 Td[(jak)-306(p)1(a)-56(j\\246cz)-1(yn)1(a,)-307(r)1(az)-307(w)-1(y)1(\\273)-1(ej)-306(bra\\252a,)-306(g\\363rn)1(iej)-307(k)1(ie)-1(b)29(y)-307(w)-306(\\261)-1(p)1(ie)-1(wie,)-306(to)-307(zno)28(wu)-306(c)-1(ic)28(h\\252a,)-306(\\273)-1(e)-307(in)1(o)]TJ 0 -13.549 Td[(to)-320(br)1(z)-1(\\246kliw)28(e)-321(p)1(rz)-1(ebi)1(e)-1(r)1(anie)-321(b)29(y\\252o)-320(s)-1(\\252yc)27(h)1(a\\242)-1(,)-320(ab)-27(o)-320(z)-1(asi\\246)-321(cos)-1(i)1(k)-320(s)-1(i\\246)-320(rw)28(a\\252)-1(o)-320(n)1(agle)-321(i)-320(pi)1(s)-1(k)56(a\\252o)]TJ 0 -13.549 Td[(pr)1(z)-1(eni)1(kliwie,)-333(a\\273)-334(dr)1(e)-1(sz)-1(cz)-334(Hank)28(\\246)-333(przenik)56(a\\252,)-333(a)-334(or)1(ganista)-333(w)-1(y)1(krzykiw)28(a\\252:)]TJ 27.879 -13.549 Td[({)-333(T)83(e)-1(,)-333(tr)1(\\241ba,)-333(zjad\\252e\\261)-334(\\014s)-333(jak)-333(skw)27(ar)1(e)-1(k!)-333({)-333(p)-27(o)27(wt\\363r)1(z)-334(o)-28(d)-333(Lau)1(dam)27(u)1(s)-334(p)1(ueri.:)1(.)]TJ 0 -13.549 Td[({)-385(Na)-386(G)1(o)-28(dy)-385(to)-385(j)1(u\\273?)-386({)-385(s)-1(p)28(y)1(ta\\252a,)-385(\\273)-1(e)-386(t)1(o)-386(n)1(ie)-1(ob)29(yc)-1(za)-56(j)1(ni)1(e)-386(b)28(y\\252o)-385(s)-1(i)1(e)-1(d)1(z)-1(ie\\242)-386(j)1(ak)28(o)-386(ten)]TJ -27.879 -13.55 Td[(mruk)1(.)]TJ 27.879 -13.549 Td[({)-334(T)83(ak,)-333(par)1(a\\014a)-334(wielk)56(a,)-334(p)-27(orozrzucana;)-334(a)-333(w)-1(sz)-1(y)1(s)-1(tki)1(m)-334(prze)-1(cie\\273)-335(t)1(rz)-1(eba)-333(op\\252atki)]TJ -27.879 -13.549 Td[(rozni)1(e)-1(\\261\\242)-334(pr)1(z)-1(ed)-333(\\261)-1(wi\\246tami,)-333(to)-333(i)-334(w)28(cz)-1(as)-334(zac)-1(zyn)1(a\\242)-334(m)27(u)1(s)-1(z\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Z)-334(p)1(s)-1(ze)-1(n)1(icy)-334(t)1(o?)]TJ 0 -13.549 Td[({)-333(Sp)1(r\\363bu)1(jcie.)]TJ 0 -13.55 Td[(P)28(o)-28(d)1(a\\252)-334(j)1(e)-1(j)-332(jes)-1(zc)-1(ze)-334(gor\\241cy)-333(op\\252atek.)]TJ 0 -13.549 Td[({)-333(Za\\261)-1(b)28(y)1(m)-334(tam)-334(\\261m)-1(i)1(a\\252a)-334(j)1(e)-1(\\261\\242)-1(!)]TJ 0 -13.549 Td[(Wzi\\246\\252)-1(a)-280(go)-280(p)1(rze)-1(z)-280(z)-1(ap)1(as)-1(k)28(\\246)-280(i)-280(p)1(rz)-1(egl\\241d)1(a\\252)-1(a)-280(p)-27(o)-28(d)-279(\\261)-1(wiat\\252o)-280(ze)-281(czc)-1(i\\241)-280(i)-280(t)1(rw)27(og\\241)-280(j)1(ak)56(\\241\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(to)-334(n)1(a)-333(nim)-334(wyci\\261ni\\246te)-334(h)1(istorie)-334(r)1(\\363\\273)-1(n)1(e)-1(,)-333(Jez)-1(u)1(s)-1(!)]TJ 0 -13.549 Td[({)-246(Na)-246(p)1(ra)28(w)27(o,)-245(w)-246(pierws)-1(zym)-246(k)28(\\363\\252ku)1(,)-246(to)-246(M)1(atk)55(a)-245(B)-1(osk)55(a,)-245(\\261)-1(wi\\246t)28(y)-246(Jan)1(,)-246(P)28(an)-245(Jez)-1(u)1(s)-1(,)-246(a)]TJ -27.879 -13.55 Td[(w)-227(d)1(ru)1(gim)-227(k)28(\\363\\252ku)1(...)-226(widzic)-1(i)1(e)-1(..)1(.\\273)-1(\\252\\363b)1(,)-226(drab)1(in\\246,)-226(b)28(yd)1(l\\241tk)56(a...)-226(Dzie)-1(ci\\241tk)28(o)-226(Je)-1(zus)-226(na)-226(s)-1(ian)1(ie,)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(t)28(y)-283(J\\363ze)-1(f)1(,)-283(Matk)56(a)-283(B)-1(osk)56(a,)-283(a)-284(tu)-282(kl\\246c)-1(z\\241)-284(t)1(rz)-1(ej)-283(kr)1(\\363lo)28(wie)-1(..)1(.{)-283(ob)-55(ja\\261nia\\252a)-283(organ)1(i\\261)-1(cin)1(a.)]TJ 27.879 -13.549 Td[({)-333(Ryc)27(h)28(t)28(yk)-333(p)1(ra)28(wda,)-333(jak)-333(to)-333(zm)27(y\\261lni)1(e)-334(ws)-1(zystk)28(o)-334(u)1(dan)1(e)-1(,)-333(pr)1(a)28(w)-1(d)1(a!...)]TJ 0 -13.549 Td[(Ob)28(win)1(\\246)-1(\\252a)-295(w)-295(c)27(h)28(u)1(s)-1(tk)28(\\246)-295(op\\252atek)-295(i)-295(sc)27(ho)28(w)28(a\\252a)-295(z)-1(a)-295(pazuc)28(h\\246,)-295(b)-28(o)-295(c)28(h\\252op)-295(j)1(aki\\261)-295(w)-1(sze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(i)-333(c)-1(o\\261)-333(p)-28(o)28(wiedzia\\252,)-333(\\273)-1(e)-334(or)1(ganista)-333(krzykn)1(\\241\\252.)]TJ 27.879 -13.55 Td[({)-256(M)1(ic)27(h)1(a\\252)-1(!)-255(Do)-256(c)28(hr)1(z)-1(tu)-255(pr)1(z)-1(yj)1(e)-1(c)28(hali)1(,)-256(w)28(e)-1(\\271)-256(kl)1(ucz)-1(e)-256(i)-256(i)1(d\\271)-256(do)-255(k)28(o\\261)-1(cio\\252a,)-256(b)-27(o)-256(Jam)28(br)1(o\\273)-1(y)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\252u)1(guje)-333(na)-333(pleban)1(i)-333(,)-333(ks)-1(i)1(\\241dz)-334(j)1(u\\273)-334(wie...)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-333(umil)1(k\\252a)-334(i)-333(p)1(rz)-1(ez)-334(izb)-27(\\246)-334(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-334(wysoki,)-333(b)1(lady)-333(c)28(h\\252opak)1(.)]TJ 0 -13.549 Td[({)-353(P)28(o)-353(br)1(ac)-1(ie)-353(m)-1(o)-55(jego)-353(s)-1(i)1(e)-1(rot)1(a,)-353(na)-353(organ)1(is)-1(t\\246)-353(pr)1(akt)28(yku)1(je,)-353(z)-354(\\252as)-1(k)1(i)-353(jeno)-353(m\\363)-56(j)-353(go)]TJ -27.879 -13.549 Td[(uczy)83(,)-333(c\\363\\273)-334(robi)1(\\242)-1(?...)-333(T)83(r)1(z)-1(a)-333(si\\246)-334(i)-333(nad)1(s)-1(zarp)1(n\\241\\242,)-334(a)-333(kr)1(e)-1(wni)1(ak)28(o)27(wi)-333(p)-27(om)-1(\\363)-27(c)-1(..)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-381(s)-1(i\\246)-381(roz)-1(gad)1(a\\252a,)-381(p)-28(oma\\252u,)-381(j\\246kli)1(w)-1(i)1(e)-1(,)-381(a)-382(d)1(a\\252a)-382(u)1(pust)-381(\\273)-1(alom)-381(s)-1(w)28(oim)-382(i)-381(tur)1(-)]TJ -27.879 -13.55 Td[(bacjom.)-333(Od)-333(tr)1(z)-1(ec)27(h)-333(t)28(ygo)-27(dni)-333(p)1(ierws)-1(zy)-333(raz)-334(mog\\252a)-334(si\\246)-334(wygad)1(a\\242)-334(do)-333(syta.)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(ali)-295(j)1(e)-1(j)1(.)-295(P)29(o)27(wiad)1(ali)-294(s)-1(w)28(o)-56(j)1(e)-1(,)-294(a)-295(c)28(ho)-28(\\242)-295(si\\246)-295(s)-1(t)1(rz)-1(egli,)-294(ab)28(y)-294(o)-295(Bory)1(nie)-295(n)1(ie)-295(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzie\\242)-367(s\\252o)28(w)27(a,)-365(u\\273)-1(al)1(ali)-366(si\\246)-366(nad)-365(ni\\241)-366(t)1(ak)-366(p)-27(o)-28(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(,)-366(a\\273)-366(si\\246)-366(p)-28(ob)-27(e)-1(cza\\252)-1(a,)-365(a)-366(organ)1(i\\261)-1(cin)1(a,)]TJ 0 -13.549 Td[(\\273e)-334(to)-333(m)-1(\\241d)1(ra)-333(k)28(obieta,)-333(wnet)-334(zmiark)28(o)28(w)27(a\\252a)-333(i)-333(pierwsz)-1(a)-333(rze)-1(k)1(\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-465(Czas)-1(u)-464(m)-1(o\\273e)-465(w)27(am)-465(co)-465(z)-1(b)-27(\\246dzie)-1(,)-464(to)-465(b)28(y\\261cie)-465(oprz\\246)-1(d)1(li)-465(mi)-464(w)27(e\\252)-1(n)1(\\246)-1(.)-464(P)28(aku)1(lin)1(ie)]TJ -27.879 -13.55 Td[(mia\\252am)-224(da\\242,)-223(ale)-224(w)28(e)-1(\\271c)-1(i)1(e)-224(w)-1(y)1(;)-224(t)28(y)1(lk)28(o)-224(n)1(a)-224(k)28(\\363\\252ku)-223(op)1(rz\\246)-1(d)1(\\271)-1(cie,)-224(b)-27(o)-223(na)-223(prz\\246\\261)-1(li)1(c)-1(y)-223(ni)1(\\242)-224(w)-1(y)1(jdzie)]TJ 0 -13.549 Td[(ni)1(e)-1(r)1(\\363)27(wn)1(a.)]TJ\nET\nendstream\nendobj\n622 0 obj <<\n/Type /Page\n/Contents 623 0 R\n/Resources 621 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n621 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n626 0 obj <<\n/Length 8901      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(192)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(a)-333(dy)1(\\242)-334(mi)-334(tr)1(z)-1(a)-333(rob)-27(ot)28(y)83(,)-333(i)1(nom)-334(p)1(rosi\\242)-334(n)1(ie)-334(\\261m)-1(ia\\252a..)1(.)]TJ 0 -13.549 Td[({)-272(No,)-271(no,)-272(n)1(ie)-272(dzi\\246)-1(k)1(uj)1(c)-1(ie;)-272(cz)-1(\\252o)28(wiek)-272(p)-27(o)27(win)1(ien)-272(p)-27(omaga\\242)-273(d)1(rugi)1(e)-1(m)28(u.)-272(W)84(e\\252)-1(n)1(a)-272(ju)1(\\273)]TJ -27.879 -13.549 Td[(gr\\246pl)1(o)27(w)28(ana,)-333(a)-333(b)-27(\\246)-1(d)1(z)-1(ie)-334(j)1(e)-1(j)-332(z)-1(e)-334(sto)-333(fu)1(n)28(t\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-243(Up)1(rz\\246)-1(d)1(\\246)-1(,)-242(umiem)-243(dob)1(rze)-1(,)-242(pr)1(z)-1(ec)-1(ie\\273)-243(u)-242(o)-56(j)1(c)-1(a)-242(s)-1(amam)-243(dl)1(a)-243(ws)-1(zystkic)28(h)-243(i)-242(pr)1(z)-1(\\246d\\252a,)]TJ -27.879 -13.549 Td[(i)-333(tk)56(a\\252a,)-333(i)-334(f)1(arb)-27(o)28(w)27(a\\252a,)-333(ni)1(e)-334(kup)-27(o)28(w)27(al)1(i)-333(na)-333(przy)28(o)-28(d)1(z)-1(iew)28(e)-1(k,)-333(n)1(ie)-1(.)]TJ 27.879 -13.55 Td[({)-333(Obacz)-1(cie,)-333(s)-1(u)1(c)27(ha)-333(i)-333(mi\\246)-1(tk)56(a.)]TJ 0 -13.549 Td[({)-333(Musi)-333(b)28(y\\242)-333(z)-334(dw)28(orskic)27(h)-332(o)27(wiec)-1(,)-333(\\261licz)-1(n)1(a)-334(w)28(e\\252)-1(n)1(a,..)]TJ 0 -13.549 Td[({)-413(A)-414(j)1(akb)28(y)-413(w)28(am)-414(b)28(y)1(\\252o)-414(p)-27(otrze)-1(b)1(a)-413(m)-1(\\241ki)1(,)-413(k)55(asz)-1(y)84(,)-413(gro)-28(c)28(h)28(u,)-413(to)-413(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(cie)-1(,)-413(d)1(am)]TJ -27.879 -13.549 Td[(w)28(am)-1(,)-333(p)-27(olicz)-1(y)1(m)27(y)-333(s)-1(i)1(\\246)-334(w)-334(r)1(ob)-28(o)-28(cie.)]TJ 27.879 -13.549 Td[(Wp)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-1(a)-347(j\\241)-347(d)1(o)-348(k)28(omory)84(,)-347(gdz)-1(i)1(e)-348(p)-27(e)-1(\\252no)-347(b)28(y\\252o)-347(w)28(or\\363)28(w)-348(i)-347(b)-27(e)-1(cz)-1(ek)-347(z)-1(e)-348(zb)-28(o\\273em)-1(;)]TJ -27.879 -13.549 Td[(p)-27(o\\252c)-1(ie)-289(s)-1(\\252oni)1(n)28(y)-289(wis)-1(i)1(a\\252)-1(y)-289(n)1(a)-290(\\261cianie;)-289(pr)1(z)-1(\\246dza)-290(ca\\252ymi)-289(p)-28(\\246k)56(am)-1(i)-289(zwie)-1(sz)-1(a\\252a)-289(si\\246)-290(o)-28(d)-289(b)-27(ele)-1(k)1(,)]TJ 0 -13.55 Td[(a)-331(p)1(\\252\\363tno)-331(gr)1(ub)1(ac)27(hn)29(ymi)-331(w)28(a\\252)-1(ami)-330(le)-1(\\273a\\252o)-331(n)1(a)-331(kup)1(ie,)-331(a)-331(co)-331(gr)1(z)-1(yb)-27(\\363)28(w)-331(s)-1(u)1(s)-1(zon)28(yc)28(h,)-330(s)-1(er\\363)28(w,)]TJ 0 -13.549 Td[(s\\252)-1(o)-55(j\\363)28(w)-287(r)1(\\363\\273)-1(n)29(yc)27(h,)-286(a)-286(na)-286(p)-28(\\363\\252k)56(ac)27(h)-286(ca\\252y)-286(rz)-1(\\241d)-286(b)-27(o)-28(c)28(hn)1(\\363)27(w)-286(kiej)-286(k)28(o\\252)-1(a,)-286(a)-286(insz)-1(ego)-286(dobr)1(a)-287(tob)29(y)]TJ 0 -13.549 Td[(i)-333(ni)1(e)-334(z)-1(l)1(ic)-1(zy\\252.)]TJ 27.879 -13.549 Td[({)-468(R\\363)28(w)-1(n)1(iu)1(\\261)-1(k)28(o)-468(op)1(rz)-1(\\246d\\246,)-468(n)1(a)-468(k)28(\\363\\252ku,)-467(B)-1(\\363g)-468(zap\\252a\\242)-468(pan)1(i)-468(z)-1(a)-468(wsp)-28(omo\\273e)-1(n)1(ie)-1(,)-467(ale)]TJ -27.879 -13.549 Td[(widzi)-333(mi)-334(si\\246,)-333(c)-1(o)-333(ni)1(e)-334(ud)1(\\271)-1(wign)1(\\246)-334(s)-1(ama)-333(w)27(e\\252n)28(y)83(.)]TJ 27.879 -13.55 Td[({)-333(Ode\\261)-1(l)1(\\246)-334(w)27(am)-333(pr)1(z)-1(ez)-334(par)1(obk)56(a.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(b)-28(o)-333(to)-333(i)-333(na)-333(w)-1(i)1(e)-1(\\261)-334(j)1(e)-1(sz)-1(cze)-334(m)-1(i)-333(p)-27(otrza.)]TJ 0 -13.549 Td[(Jes)-1(zc)-1(ze)-271(raz)-271(p)-28(o)-28(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)28(a\\252)-1(a,)-270(ale)-271(c)-1(isze)-1(j)-270(jak)28(o\\261)-271(i)-271(c)27(h)1(\\252o)-28(dn)1(iej)-271({)-271(zaz)-1(d)1(ro\\261\\242)-272(j)1(\\241)-271(ugr)1(yz\\252)-1(a)]TJ -27.879 -13.549 Td[(w)-334(serc)-1(e.)]TJ 27.879 -13.549 Td[({)-444(Nar)1(\\363)-28(d)-443(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(go)-443(da,)-443(nani)1(e)-1(sie)-1(,)-443(pr)1(z)-1(y)1(s)-1(p)-27(os)-1(ob)1(i,)-444(t)1(o)-444(ma)-56(j\\241)-443(p)-28(e\\252ne)-444(k)28(omory;)]TJ -27.879 -13.55 Td[(alb)-27(o)-399(to)-398(i)-399(pr)1(e)-1(ce)-1(n)29(tam)-1(i)-398(ni)1(e)-400(zdziera!)-399(K)1(to)-399(ma)-399(o)28(w)27(ce)-1(,)-398(ten)-399(ma,)-399(co)-399(c)27(h)1(c)-1(e!)-398(Nie)-1(c)28(h)28(b)28(y)-398(tak)]TJ 0 -13.549 Td[(sam)-1(i)-333(wyrab)1(iali)1(!)-334(Hal)1(e)-1(!.)1(..)-333({)-334(r)1(oz)-1(m)28(y\\261)-1(l)1(a\\252a)-334(wyc)28(ho)-28(d)1(z)-1(\\241c)-334(w)-333(op\\252otki)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-364(Magdzie)-365(n)1(ie)-365(b)28(y\\252o)-364(ju)1(\\273)-365(\\261)-1(l)1(adu,)-364(t)28(yla)-364(in)1(o,)-365(\\273e)-365(jak)1(ie)-1(\\261)-365(stare)-365(t)1(re)-1(p)1(isk)28(o)-365(cz)-1(ern)1(ia-)]TJ -27.879 -13.549 Td[(\\252o)-430(n)1(a)-430(\\261niegu,)-429(p)1(rz)-1(y)1(s)-1(p)1(ie)-1(szy\\252a)-430(kr)1(oku,)-429(b)-27(o)-430(p)-27(\\363\\271)-1(n)1(o)-430(j)1(u\\273)-430(b)28(y\\252o,)-429(zas)-1(iedzia\\252a)-430(si\\246)-430(n)1(ie)-1(co)-430(u)]TJ 0 -13.549 Td[(organ)1(ist\\363)27(w.)]TJ 27.879 -13.55 Td[({)-333(Gdzie)-334(b)29(y)-334(t)1(o,)-334(u)-332(k)28(ogo)-334(p)1(rze)-1(p)28(y)1(ta\\242)-334(s)-1(i)1(\\246)-334(o)-334(r)1(ob)-28(ot)1(\\246)-334(la)-333(An)28(tk)56(a?)]TJ 0 -13.549 Td[(Jak)-357(gosp)-28(o)-27(dyn)1(i\\241)-357(b)28(y\\252a,)-357(to)-357(i)-357(p)1(rzyjaciels)-1(t)28(w)28(o)-357(z)-358(n)1(i\\241)-357(trzymali)-357(ws)-1(zys)-1(cy)84(,)-357(c)-1(i\\246giem)]TJ -27.879 -13.549 Td[(kto\\261)-363(do)-363(c)28(ha\\252up)29(y)-363(z)-1(agl\\241d)1(a\\252,)-363(cz)-1(ego\\261)-364(p)-27(otrze)-1(b)-27(o)28(w)27(a\\252)-363(i)-363(w)-363(o)-28(cz)-1(y)-362(dobr)1(o\\261)-1(\\242)-363(\\261)-1(wiad)1(c)-1(zy\\252...)1(.)-363(a)]TJ 0 -13.549 Td[(teraz)-258(stoi)-257(oto)-257(w)-258(p)-27(o\\261)-1(r)1(o)-28(dk)1(u)-257(dr)1(ogi)-258(i)-257(b)1(iedzi)-257(s)-1(i\\246,)-257(gdzie)-258(i)1(\\261)-1(\\242,)-257(do)-257(k)28(ogo?...)-257(Nie,)-257(nap)1(ras)-1(za\\252a)]TJ 0 -13.549 Td[(si\\246)-334(ni)1(e)-334(b)-27(\\246)-1(d)1(z)-1(ie)-333(nik)28(om)28(u,)-333(rad)1(a)-334(b)29(y)-334(i)1(no)-333(z)-334(k)28(obi)1(e)-1(tami)-333(p)-28(ogw)28(arzy\\242)-334(p)-27(o)-333(da)28(wnem)27(u)1(.)]TJ 27.879 -13.55 Td[(P)28(osta\\252a)-329(p)1(rz)-1(ed)-328(K\\252\\246bami,)-329(p)-27(osta\\252a)-329(p)1(rz)-1(ed)-328(Szymono)28(w)27(\\241)-328(c)27(h)1(a\\252)-1(u)1(p\\241,)-328(ale)-329(w)28(e)-1(j)1(\\261)-1(\\242)-329(n)1(ie)]TJ -27.879 -13.549 Td[(w)28(e)-1(sz)-1(\\252a,)-288(nie)-289(\\261)-1(mia\\252a)-289(i)-288(pr)1(z)-1(yp)-27(omnia\\252o)-289(si\\246)-289(jej,)-288(\\273)-1(e)-289(An)28(tek)-289(p)1(rzyk)56(az)-1(yw)28(a\\252)-289(n)1(ie)-290(zada)28(w)28(a\\242)-289(s)-1(i\\246)]TJ 0 -13.549 Td[(z)-334(lu)1(d\\271mi.)]TJ 27.879 -13.549 Td[({)-226(Ni)1(e)-226(p)-28(or)1(adz\\241,)-226(n)1(ie)-226(ws)-1(p)-27(omog\\241,)-226(a)-225(u\\273ala\\242)-226(s)-1(i)1(\\246)-226(b)-28(\\246d\\241)-225(nad)-225(tob)1(\\241)-226(jak)-225(n)1(a)-1(d)-225(zdec)27(h)1(\\252ym)]TJ -27.879 -13.549 Td[(psem)-1(!)-333({)-333(m)-1(\\363)28(wi\\252.)]TJ 27.879 -13.549 Td[({)-333(Oj)-333(pr)1(a)28(w)-1(d)1(a,)-333(\\261)-1(wi\\246ta)-334(p)1(ra)28(wda!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(p)1(rzyp)-27(om)-1(in)1(a)-56(j)1(\\241c)-334(organ)1(ist\\363)27(w.)]TJ 0 -13.55 Td[(Hej,)-264(\\273)-1(eb)28(y)-265(t)1(o)-265(ona)-264(c)27(h\\252op)-27(e)-1(m)-265(b)29(y\\252a,)-265(zaraz)-265(b)28(y)-264(s)-1(i)1(\\246)-265(j\\246\\252)-1(a)-264(rob)-27(ot)28(y)-265(i)-264(z)-1(ar)1(adzi\\252a)-265(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(kiem)27(u)1(.)-333(Nie)-334(sk)56(am)-1(la\\252ab)28(y)-333(i)-333(lu)1(dziom)-334(p)1(rze)-1(d)-333(o)-27(c)-1(zy)-333(nie)-334(\\261wiec)-1(i\\252ab)28(y)-333(sw)27(o)-55(j\\241)-333(bi)1(e)-1(d)1(\\241.)]TJ 27.879 -13.549 Td[(P)28(o)-28(czu\\252a)-339(w)-339(sobie)-339(taki)-338(w)-1(i)1(lc)-1(zy)-339(g\\252\\363)-27(d)-339(p)1(racy)83(,)-339(t)1(akie)-339(rozpieran)1(ie)-339(s)-1(i\\252,)-338(a\\273)-340(si\\246)-339(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ci\\241)-28(gn\\246\\252a)-379(i)-379(m)-1(o)-27(c)-1(n)1(ie)-1(j)-378(s)-1(t\\241)-28(p)1(a\\252a,)-379(ra\\271niej.)-379(Ci\\241)-27(gn\\246\\252)-1(o)-379(j)1(\\241)-380(t)1(e)-1(\\273,)-379(c)-1(i\\241)-27(gn\\246\\252o,)-379(b)28(y)-379(pr)1(z)-1(ej\\261\\242)-380(ob)-27(ok)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-376(c)28(ha\\252up)29(y)83(,)-376(b)28(y)-376(z)-1(a)-55(jrze\\242)-377(c)27(ho)-27(\\242)-1(b)28(y)-376(in)1(o)-377(w)-377(op)1(\\252otki,)-376(b)28(y)-376(c)27(h)1(o)-28(\\242)-377(o)-28(cz)-1(y)-376(nacies)-1(zy\\242)-1(,)-376(ale)]TJ 0 -13.55 Td[(za)27(wr\\363)-27(c)-1(i\\252a)-297(s)-1(p)1(rze)-1(d)-297(k)28(o\\261c)-1(i)1(o\\252a)-298(n)1(a)-298(\\261c)-1(ie\\273ynk)28(\\246)-298(u)1(toro)28(w)28(an\\241)-297(\\261)-1(ro)-27(dki)1(e)-1(m)-298(zamarz)-1(\\252ego)-298(sta)28(wu)-297(i)]TJ 0 -13.549 Td[(bi)1(e)-1(gn)1(\\241c)-1(\\241)-330(k)1(u)-330(m\\252yno)28(wi)-330(i)-329(s)-1(z\\252a)-330(pr)1(\\246)-1(d)1(k)28(o)-330(nie)-330(rozgl\\241d)1(a)-56(j)1(\\241c)-331(si\\246)-330(na)-330(b)-27(oki,)-329(t)28(ym)-330(ino)-329(z)-1(a)-55(j\\246ta,)]TJ\nET\nendstream\nendobj\n625 0 obj <<\n/Type /Page\n/Contents 626 0 R\n/Resources 624 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 611 0 R\n>> endobj\n624 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n629 0 obj <<\n/Length 8539      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(193)]TJ -358.232 -35.866 Td[(b)28(y)-333(si\\246)-334(n)1(a)]TJ 27.879 -13.549 Td[(\\261liskim)-368(lo)-28(d)1(z)-1(ie)-368(ni)1(e)-369(p)-27(o\\261)-1(l)1(iz)-1(n)1(\\241\\242)-369(i)-367(b)28(y)-368(pr)1(\\246)-1(d)1(z)-1(ej)-368(p)1(rze)-1(j)1(\\261)-1(\\242,)-368(i)-368(n)1(ie)-368(w)-1(i)1(dzie)-1(\\242,)-368(n)1(ie)-369(r)1(oz)-1(kr)1(-)]TJ -27.879 -13.549 Td[(w)28(a)27(wia\\242)-293(sobie)-293(du)1(s)-1(zy)-293(p)1(rzyp)-28(omn)1(ie)-1(n)1(iem)-1(,)-292(ale)-293(nie)-293(z)-1(d)1(z)-1(i)1(e)-1(r)1(\\273)-1(y\\252a,)-292(b)-28(o)-293(t)1(ak)-293(jak)28(o\\261)-293(na)-292(w)-1(p)1(rost)]TJ 0 -13.549 Td[(Boryn)1(\\363)27(w)-252(p)1(rzystan\\246\\252a)-252(nagl)1(e)-253(i)-251(ni)1(e)-253(mia\\252a)-251(m)-1(o)-28(cy)-251(o)-28(derw)28(a\\242)-252(o)-28(c)-1(z\\363)28(w)-252(o)-28(d)-251(\\261)-1(wiate\\252)-252(m\\273)-1(\\241cyc)27(h)]TJ 0 -13.549 Td[(w)-334(ok)1(nac)27(h)1(:)]TJ 27.879 -13.55 Td[({)-366(A)-366(p)1(rz)-1(ecie)-1(\\273)-366(to)-366(n)1(a)-1(sze)-1(,)-366(n)1(as)-1(ze...)-366(j)1(ak\\273)-1(e)-366(to)-366(i\\261\\242)-366(w)27(e)-366(\\261)-1(wiat.)1(..Ko)28(w)28(al)-366(b)28(y)-366(wnet)-366(za-)]TJ -27.879 -13.549 Td[(br)1(a\\252...)-267(nie,)-267(nie)-268(ru)1(s)-1(z\\246)-268(si\\246)-268(s)-1(t\\241d)1(...)-267(jak)-267(pi)1(e)-1(s)-268(w)28(aro)28(w)27(a\\252a)-267(b)-28(\\246d\\246,)-268(czy)-268(An)28(t)1(e)-1(k)-267(c)27(hce,)-268(cz)-1(y)-267(ni)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Ociec)-328(n)1(ie)-327(wie)-1(czn)28(y)83(,)-326(a)-327(mo\\273)-1(e)-327(si\\246)-327(c)-1(o)-326(jes)-1(zc)-1(ze)-327(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i...)-326(dziec)-1(isk)28(\\363)28(w)-327(na)-326(p)-28(on)1(ie)-1(wierk)28(\\246)]TJ 0 -13.549 Td[(ni)1(e)-301(d)1(am)-300(ni)-299(s)-1(ama)-300(n)1(ie)-300(p)-28(\\363)-55(jd)1(\\246)-1(.)1(..)-300(to)-27(\\242)-301(t)1(o)-300(ic)27(h)1(...)-299(nasz)-1(e)-300(marzy\\252a)-300(wpatr)1(z)-1(on)1(a)-300(w)-300(o\\261nie\\273)-1(on)29(y)]TJ 0 -13.549 Td[(sad,)-384(z)-385(kt\\363rego)-384(w)-1(y)1(s)-1(t\\246p)-28(o)28(w)28(a\\252y)-385(zarysy)-384(bu)1(dyn)1(k)28(\\363)28(w)-1(,)-384(b)1(ia\\252e)-385(rozs)-1(rebr)1(z)-1(on)1(e)-385(dac)28(h)28(y)83(,)-384(cz)-1(er-)]TJ 0 -13.549 Td[(ni)1(a\\252y)-324(\\261c)-1(i)1(an)28(y)83(,)-323(wyst\\246)-1(p)-27(o)28(w)27(a\\252)-323(w)-324(g\\252\\246)-1(b)1(i)-324(za)-324(sz)-1(op)1(\\241)-324(ostry)-323(sz)-1(cz)-1(yt)-323(br)1(ogu.)-323(Jakb)28(y)-323(j)1(e)-1(j)-323(wros\\252y)]TJ 0 -13.55 Td[(nogi)-333(w)-333(l\\363)-28(d)1(,)-334(\\273e)-334(r)1(usz)-1(y\\242)-333(s)-1(i\\246)-333(nie)-334(mog\\252a)-333(ni)-333(o)-28(d)1(e)-1(rw)28(a\\242)-334(o)-28(cz\\363)27(w,)-333(ni)-333(se)-1(r)1(c)-1(a)-333(rozk)28(o\\252atanego.)]TJ 27.879 -13.549 Td[(No)-28(c)-311(c)-1(i)1(c)27(ha,)-310(m)-1(r)1(o\\271)-1(n)1(a,)-311(gran)1(ato)27(w)28(a,)-311(osypan)1(a)-311(gwiaz)-1(d)1(am)-1(i)1(,)-311(jak)28(ob)29(y)-311(t)28(ym)-311(piaskiem)]TJ -27.879 -13.549 Td[(sre)-1(b)1(rn)28(y)1(m)-1(,)-373(ob)1(tula\\252a)-373(z)-1(a\\261ni)1(e)-1(\\273on\\241)-373(z)-1(i)1(e)-1(mi\\246,)-374(d)1(rze)-1(w)28(a)-373(s)-1(ta\\252y)-373(b)-27(e)-1(z)-374(r)1(uc)27(h)29(u,)-373(p)-27(o)-28(c)27(h)28(y)1(lone)-373(p)-28(o)-28(d)]TJ 0 -13.549 Td[(ci\\246)-1(\\273arem)-281(\\261ni)1(e)-1(g\\363)28(w,)-280(u\\261pi)1(one,)-280(ni)1(e)-1(p)-27(o)-56(j)1(\\246)-1(te)-280(w)-280(te)-1(j)-279(c)-1(i)1(c)27(ho\\261ci,)-280(jak)56(a)-280(si\\246)-280(roz)-1(l)1(e)-1(w)28(a\\252a)-280(nad)-279(\\261)-1(wia-)]TJ 0 -13.549 Td[(tem)-1(,)-238(n)1(ib)28(y)-238(b)1(ia\\252e)-239(cienie)-238(widm,)-238(ni)1(b)28(y)-238(st\\246)-1(\\273a\\252e)-239(op)1(ary)83(,)-238(\\261ni)1(e)-1(gi)-238(skrzy\\252y)-238(si\\246)-239(l)1(e)-1(d)1(w)-1(i)1(e)-239(u)1(c)27(h)28(wyt-)]TJ 0 -13.55 Td[(ni)1(e)-1(,)-355(g\\252os)-356(ws)-1(ze)-1(l)1(aki)-355(z)-1(amar\\252,)-355(\\273)-1(e)-356(t)28(yl)1(k)28(o)-356(co\\261)-1(,)-355(jak)1(b)28(y)-355(s)-1(ze)-1(l)1(e)-1(st)-356(d)1(rga)-56(j)1(\\241c)-1(y)1(c)27(h)-355(gwiazd,)-355(jakb)29(y)]TJ 0 -13.549 Td[(t\\246tna)-342(zie)-1(mi)-342(p)1(rz)-1(emarz\\252)-1(ej,)-341(jakb)28(y)-342(senne)-342(dy)1(c)27(han)1(ie)-343(d)1(rze)-1(w)-342(z)-1(mart)28(wia\\252yc)28(h)-342({)-342(dr)1(\\273)-1(a\\252o)-342(w)]TJ 0 -13.549 Td[(mro\\271n)28(ym)-334(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(.)]TJ 27.879 -13.549 Td[(A)-349(Han)1(k)55(a)-349(sta\\252a)-349(w)28(c)-1(i\\241\\273,)-349(n)1(ie)-1(p)-27(omna)-349(n)1(a)-349(c)-1(zas)-349(biegn\\241cy)-349(n)1(i)-349(na)-349(sz)-1(czypi\\241ce,)-349(os)-1(t)1(re)]TJ -27.879 -13.549 Td[(zim)-1(n)1(o.)-288(Pr)1(z)-1(yw)28(ar\\252a)-288(o)-28(cz)-1(ami)-288(d)1(o)-288(dom)27(u)1(,)-288(pi)1(\\252a)-289(go,)-287(o)-1(b)-27(ejmo)28(w)27(a\\252a)-288(s)-1(erce)-1(m)-288(i)-288(b)1(ra\\252a)-288(w)-289(siebie)]TJ 0 -13.55 Td[(z)-334(ca\\252\\241)-334(mo)-28(c\\241)-334(g\\252o)-28(d)1(u)-333(i)-333(marz)-1(eni)1(a.)]TJ 27.879 -13.549 Td[(Zbu)1(dzi\\252)-339(j\\241)-339(d)1(opiero)-339(skrzyp)-339(\\261ni)1(e)-1(gu)1(,)-339(kto\\261)-339(z)-1(es)-1(ze)-1(d)1(\\252)-339(z)-340(d)1(rogi)-339(n)1(a)-339(s)-1(ta)28(w)-339(i)-339(kiero)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(ku)-333(n)1(iej,)-333(a)-334(p)-27(o)-333(c)27(h)28(wil)1(i)-334(sp)-27(otk)56(a\\252)-1(a)-333(si\\246)-334(ok)28(o)-333(w)-334(ok)28(o)-333(z)-334(Nastk)55(\\241)-333(Go\\252\\246bian)1(k)56(\\241.)]TJ 27.879 -13.549 Td[({)-333(Hank)56(a!)-333({)-334(wyk)1(rz)-1(y)1(kn\\246\\252a)-334(zdu)1(miona.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(w)-1(u)1(jes)-1(z)-333(s)-1(i\\246,)-333(jakb)29(ym)-334(j)1(u\\273)-334(ste)-1(r)1(g\\252a)-334(i)-333(p)-27(o)-333(\\261)-1(mie)-1(r)1(c)-1(i)-333(strasz)-1(y)1(\\252)-1(a!)]TJ 0 -13.55 Td[({)-367(C)-1(o)-367(w)28(am)-368(te\\273)-368(d)1(o)-368(g\\252o)28(wy)-367(przyc)27(h)1(o)-28(d)1(z)-1(i,)-367(d)1(a)27(wn)1(om)-368(w)28(a)-56(j)1(u)-367(nie)-367(w)-1(i)1(dzia\\252a,)-367(tom)-368(si\\246)]TJ -27.879 -13.549 Td[(zdziwi\\252a.)-333(W)-334(k)1(t\\363r\\241)-333(s)-1(tr)1(on\\246)-334(i)1(dzie)-1(cie?)]TJ 27.879 -13.549 Td[({)-333(A)-334(d)1(o)-334(m\\252yn)1(a.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(mni)1(e)-334(dr)1(oga,)-334(b)-27(o)-333(Mateusz)-1(o)28(wi)-333(nios\\246)-334(k)28(olacj\\246.)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(m\\252yn)1(ie)-334(teraz)-334(r)1(obi,)-333(n)1(a)-334(m\\252ynar)1(c)-1(zyk)56(a)-333(prakt)28(y)1(kuj)1(e)-1(?...)]TJ 0 -13.55 Td[({)-460(Gd)1(z)-1(ieb)28(y)-460(t)1(am)-461(za\\261)-461(n)1(a)-460(m)-1(\\252y)1(narcz)-1(y)1(k)55(a)-460(si\\246)-460(s)-1(p)-27(osobi\\252!)-460(Na)-460(tar)1(taku)1(,)-460(c)-1(o)-460(go)-460(to)]TJ -27.879 -13.549 Td[(p)-27(os)-1(ta)28(wili)-333(p)1(rz)-1(y)-333(m\\252yn)1(ie)-1(,)-333(a)-333(pi)1(lno)-333(ma)-56(j\\241,)-333(\\273e)-334(ju)1(\\273)-334(i)-333(wiec)-1(zorami)-333(robi)1(\\241.)]TJ 27.879 -13.549 Td[(Sz\\252y)-383(ob)-27(ok)-384(siebie,)-383(Hank)56(a)-383(ma\\252)-1(o)-383(kt)1(\\363re)-384(s\\252o)27(w)28(o)-383(rze)-1(k\\252a,)-383(a)-383(in)1(o)-384(Nastk)56(a)-383(trze)-1(p)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(w)28(c)-1(i\\241\\273,)-309(ale)-309(si\\246)-309(s)-1(tr)1(z)-1(eg\\252a,)-309(b)28(y)-308(o)-309(Boryni)1(e)-310(n)1(ic)-309(nie)-309(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242,)-309(ju)1(\\261)-1(ci,)-308(\\273)-1(e)-309(o)-309(to)-309(Han)1(k)55(a)-308(nie)]TJ 0 -13.549 Td[(sp)28(yta\\252a,)-333(nij)1(ak)28(o)-333(b)28(y\\252o,)-333(c)27(h)1(o)-28(\\242)-334(rad)1(a)-334(b)29(y)-333(p)-28(os\\252uc)27(h)1(a\\252a.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e)-334(m\\252ynar)1(z)-334(p\\252aci?)]TJ 0 -13.55 Td[({)-333(P)28(o)-333(pi\\246\\242)-334(z\\252)-1(ot)28(y)1(c)27(h)-333(i)-333(grosz)-1(y)-333(p)1(i\\246)-1(tn)1(a\\261)-1(cie)-334(b)1(ierze)-334(Mateusz)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(A\\273)-334(t)28(yla!)-333(P)1(i\\246)-1(\\242)-333(z)-1(\\252ot)28(yc)27(h)1(...)]TJ 0 -13.549 Td[({)-333(Przec)-1(ie\\273)-334(j)1(e)-1(go)-333(to)-334(g\\252o)28(w)28(\\241)-334(wsz)-1(ystk)28(o)-333(idzie,)-333(to)-334(i)-333(n)1(ie)-334(d)1(z)-1(iw)28(ota.)]TJ 0 -13.549 Td[(Hank)56(a)-239(m)-1(il)1(c)-1(za\\252a,)-240(ale)-240(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(\\241c)-240(wpr)1(os)-1(t)-239(ku\\271ni)1(,)-240(z)-240(kt\\363r)1(e)-1(j)-239(p)1(rz)-1(ez)-240(wybi)1(te)-240(s)-1(zyb)28(y)]TJ -27.879 -13.549 Td[(bu)1(c)27(h)1(a\\252y)-334(cze)-1(rw)28(one)-333(\\261)-1(wiat\\252a)-333(i)-333(krw)28(a)28(w)-1(i)1(\\252)-1(y)-333(\\261ni)1(e)-1(gi,)-333(sz)-1(epn)1(\\246)-1(\\252a:)]TJ 27.879 -13.55 Td[({)-333(T)83(e)-1(n)-333(j)1(ud)1(as)-1(z)-333(z)-1(a)28(ws)-1(ze)-334(ma)-334(co)-334(r)1(obi\\242.)]TJ 0 -13.549 Td[({)-442(C)-1(zeladn)1(ik)56(a)-443(se)-443(pr)1(z)-1(y)1(bra\\252,)-442(a)-442(s)-1(am)-442(c)-1(i\\246giem)-443(j)1(e)-1(\\271dzi,)-442(p)-28(on)1(o)-443(z)-442(\\233ydami)-442(s)-1(p)-27(\\363\\252k)28(\\246)]TJ\nET\nendstream\nendobj\n628 0 obj <<\n/Type /Page\n/Contents 629 0 R\n/Resources 627 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n627 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n633 0 obj <<\n/Length 7501      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(194)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(trzyma)-333(w)-334(les)-1(i)1(e)-334(i)-333(raze)-1(m)-334(l)1(udzi)-333(os)-1(zuk)1(uj)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(T)-1(n)1(\\241)-333(to)-334(j)1(u\\273)-334(p)-27(or\\246b)28(y?)]TJ 0 -13.549 Td[({)-333(W)-333(le)-1(sie)-334(to)-333(sie)-1(d)1(z)-1(i)1(c)-1(ie)-333(c)-1(zy)-333(c)-1(o,)-333(\\273e)-334(w)27(am)-333(nie)-333(w)-1(i)1(adomo?)]TJ 0 -13.549 Td[({)-333(Nie)-334(w)-333(le)-1(sie,)-333(ale)-334(za)-334(n)1(o)27(win)1(am)-1(i)-333(n)1(ie)-334(b)1(ie)-1(gam)-333(p)-28(o)-333(ws)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(\\273e)-1(b)28(y)1(\\261)-1(cie)-334(wiedzieli,)-333(r\\241b)1(i\\241,)-333(ale)-334(n)1(a)-334(p)1(rzykup)1(n)28(ym.)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(n)1(as)-1(zego)-334(p)1(rze)-1(cie)-1(\\273)-333(nie)-334(p)-27(ozw)27(ol\\241)-333(tkn)1(\\241\\242)-1(.)1(..)]TJ 0 -13.549 Td[({)-269(Ino)-269(ni)1(e)-270(wiad)1(a,)-269(kto)-269(z)-1(ab)1(ron)1(i,)-269(w)27(\\363)-55(jt)-269(tr)1(z)-1(yma)-269(z)-1(e)-269(dw)28(orem)-1(,)-269(so\\252t)28(ys)-270(te\\273)-270(i)-269(wsz)-1(y)1(s)-1(cy)83(,)]TJ -27.879 -13.549 Td[(co)-334(b)-27(ogatsi.)]TJ 27.879 -13.549 Td[({)-383(P)1(ra)28(w)-1(d)1(a,)-383(kto)-383(t)1(a)-383(b)-28(ogacz)-1(\\363)28(w)-383(z)-1(mo\\273e)-1(,)-383(k)1(to)-383(ic)27(h)-382(pr)1(z)-1(epr)1(z)-1(e...A)-383(za)-56(j)1(rzyj,)-382(Nas)-1(tu)1(\\261)-1(,)]TJ -27.879 -13.549 Td[(do)-333(n)1(as)-1(.)]TJ 27.879 -13.549 Td[({)-333(Id\\271c)-1(ie)-333(z)-334(B)-1(ogi)1(e)-1(m,)-333(pr)1(z)-1(ylec\\246)-334(kt\\363rego)-333(dn)1(ia)-334(z)-333(k)55(\\241d)1(z)-1(i)1(e)-1(l\\241.)]TJ 0 -13.55 Td[(Roz)-1(sta\\252y)-439(si\\246)-440(p)1(rze)-1(d)-438(m)-1(\\252yn)1(arzo)27(wym)-439(domem)-1(.)-439(Nastk)56(a)-439(p)-28(osz\\252)-1(a)-439(d)1(o)-439(m)-1(\\252yn)1(a,)-439(na)]TJ -27.879 -13.549 Td[(d\\363\\252)-303(niec)-1(o,)-303(a)-304(Hank)56(a)-304(p)1(rze)-1(z)-304(p)-27(o)-28(dw)28(\\363rze)-304(do)-304(ku)1(c)27(h)1(ni;)-303(ledwie)-304(s)-1(i)1(\\246)-305(tam)-304(d)1(os)-1(ta\\252a,)-303(b)-28(o)-303(pies)-1(k)1(i)]TJ 0 -13.549 Td[(si\\246)-344(z)-1(lecia\\252y)-344(i)-343(z)-1(acz)-1(\\246\\252y)-344(d)1(os)-1(zc)-1(zekiw)28(a\\242)-345(i)-343(pr)1(z)-1(y)1(piera\\242)-344(j\\241)-343(do)-344(\\261cian)28(y)84(,)-344(a\\273)-344(Jew)-1(k)56(a)-343(obron)1(i\\252a)]TJ 0 -13.549 Td[(i)-404(p)-27(o)28(wie)-1(d)1(\\252a,)-404(ale)-404(ni)1(m)-405(si\\246)-404(rozgada\\252y)84(,)-404(w)28(e)-1(sz)-1(\\252a)-404(m\\252ynar)1(z)-1(o)28(w)28(a)-404(i)-404(zaraz)-404(pr)1(o)-1(sto)-404(z)-404(rn)1(os)-1(tu)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252a:)]TJ 27.879 -13.55 Td[({)-333(Do)-334(m\\246\\273)-1(a)-333(mac)-1(ie)-333(in)28(teres)-1(?)-334(J)1(e)-1(st)-334(w)28(e)-334(m\\252yni)1(e)-1(.)]TJ 0 -13.549 Td[(Nie)-370(c)-1(ze)-1(k)56(a\\252a,)-370(in)1(o)-370(p)-28(osz\\252)-1(a,)-369(ale)-371(sp)-27(otk)55(a\\252a)-370(si\\246)-371(z)-370(ni)1(m)-371(w)-370(p)-27(\\363\\252)-371(d)1(rogi;)-369(p)-28(op)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(j\\241)-333(d)1(o)-334(p)-27(ok)28(o)-56(j)1(u,)-333(zaraz)-334(te\\273)-334(zap\\252ac)-1(i)1(\\252a)-334(m)28(u,)-333(co)-334(b)28(y)1(\\252a)-334(win)1(na)-333(z)-1(a)-333(k)56(as)-1(z\\246)-334(i)-333(m\\241k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kro)28(w)28(\\246)-334(z)-1(j)1(adacie!)-334({)-333(p)-27(o)28(w)-1(iedzia\\252)-333(z)-1(gar)1(nia)-55(j\\241c)-334(p)1(ieni\\241d)1(z)-1(e)-333(do)-333(s)-1(zu\\015)1(ady)84(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(p)-28(or)1(adzi\\242)-1(,)-333(k)56(amie)-1(n)1(i)-333(pr)1(z)-1(ec)-1(iec)27(h)-333(n)1(ie)-334(u)1(gryzie.)]TJ 0 -13.55 Td[(Z\\252a)-334(b)29(y\\252a.)]TJ 0 -13.549 Td[({)-333(W)83(a\\252k)28(o\\253)-333(j)1(e)-1(st)-333(w)27(asz)-334(c)27(h)1(\\252o)-1(p)1(,)-333(to)-333(w)27(am)-334(p)-27(o)28(wie)-1(m.)]TJ 0 -13.549 Td[({)-333(Je)-1(st)-333(w)27(a\\252k)28(o\\253)-333(ab)-27(o)-333(i)-334(n)1(ie)-334(j)1(e)-1(st!)-333(C\\363\\273)-334(to)-333(b)-28(\\246dzie)-334(r)1(obi\\252?)-333(Gdzie?)-334(U)-333(k)28(ogo?)]TJ 0 -13.549 Td[({)-333(Nie)-334(ma)-334(t)1(o)-334(m\\252o)-28(c)27(k)1(i)-334(w)28(e)-334(ws)-1(i)1(?)]TJ 0 -13.549 Td[({)-353(P)28(arobk)1(ie)-1(m)-353(ni)-353(wyrob)1(niki)1(e)-1(m)-354(n)1(ie)-354(b)28(y)1(\\252)-1(,)-353(to)-353(i)-354(n)1(ie)-354(d)1(z)-1(iw)28(ota,)-353(\\273)-1(e)-354(si\\246)-354(d)1(o)-354(tego)-354(n)1(ie)]TJ -27.879 -13.55 Td[(rwie.)]TJ 27.879 -13.549 Td[({)-373(Przyzwyc)-1(zai)-373(s)-1(i\\246)-373(jes)-1(zc)-1(ze)-1(,)-373(p)1(rzyz)-1(wyczai!)-373(Szk)28(o)-28(da)-373(mi)-374(c)28(h\\252op)1(a,)-374(c)28(ho)-28(\\242)-373(w)-1(i)1(lkiem)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(y)-333(i)-333(n)1(ie)-1(u)1(s)-1(t)1(\\246)-1(pl)1(iwy)83(,)-333(ro)-27(dzonego)-334(n)1(ie)-334(u)1(s)-1(zano)28(w)28(a)-1(\\252,)-333(ale)-333(s)-1(zk)28(o)-28(da)-333(cz)-1(\\252o)28(wie)-1(k)56(a..)1(.)]TJ 27.879 -13.549 Td[({)-301(A)-301(d)1(y\\242)-302(m\\363)28(wili.)1(..)-301(\\273e)-302(j)1(e)-1(st)-301(rob)-27(ota)-301(u)-300(pan)1(a)-301(nn)1(\\252)-1(y)1(narza...)1(dopr)1(as)-1(zam)-301(s)-1(i\\246...)-300(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(b)28(y)-310(pan)-310(An)28(tk)56(a)-311(wz)-1(i)1(\\241\\252)-311(do)-311(r)1(ob)-28(ot)28(y)84(...)1(dopr)1(as)-1(zam)-311(s)-1(i\\246.)-311(.)-310({)-311(b)1(uc)27(h)1(n\\246\\252a)-311(p\\252acz)-1(em,)-311(ob\\252ap)1(ia\\252a)]TJ 0 -13.55 Td[(go)-333(z)-1(a)-333(nogi)1(,)-334(ca\\252o)28(w)27(a\\252a)-333(p)-28(o)-333(r\\246k)56(ac)27(h,)-333(a)-333(pr)1(os)-1(i)1(\\252)-1(a)-333(gor\\241co.)]TJ 27.879 -13.549 Td[({)-290(Niec)27(h)-289(p)1(rz)-1(y)1(jd)1(z)-1(ie,)-290(p)1(rosi\\252)-290(go)-290(n)1(ie)-290(b)-28(\\246d\\246,)-290(r)1(ob)-28(ot)1(a)-290(jes)-1(t,)-289(ale)-290(ci\\246)-1(\\273k)56(a,)-290(p)1(rz)-1(y)-289(obr)1(\\363b)-28(ce)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(a)-333(p)-27(o)-28(d)-333(p)1(i\\252y)83(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(p)-27(orad)1(z)-1(i,)-333(sp)-27(os)-1(obn)29(y)-333(do)-333(w)-1(szys)-1(tk)1(ie)-1(go,)-333(j)1(ak)-333(m)-1(a\\252o)-333(kt\\363ren)-333(w)28(e)-334(ws)-1(i.)1(..)]TJ 0 -13.549 Td[({)-295(Wi)1(e)-1(m,)-295(d)1(latego)-295(m)-1(\\363)28(wi\\246,)-295(\\273e)-1(b)28(y)-294(pr)1(z)-1(ysz)-1(ed\\252)-295(d)1(o)-295(rob)-27(ot)28(y)84(,)-295(ale)-295(s)-1(w)28(o)-56(j)1(\\241)-295(dr)1(og\\241)-295(\\271le)-296(wy)]TJ -27.879 -13.549 Td[(sw)27(o)-55(jego)-334(p)1(iln)28(u)1(jec)-1(ie)-333({)-334(\\271le.)]TJ 27.879 -13.55 Td[(St)1(an\\246\\252)-1(a)-333(wystrasz)-1(on)1(a)-334(n)1(ic)-334(n)1(ie)-334(rozumiej\\241c.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(\\252op)-333(ma)-334(d)1(z)-1(ieci)-334(i)-333(\\273on\\246,)-333(a)-334(za)-333(dru)1(gimi)-333(s)-1(i\\246)-333(ugani)1(a.)]TJ 0 -13.549 Td[(Zbl)1(ad\\252a)-333(i)-334(p)-27(o)-28(cz)-1(\\246\\252a)-333(s)-1(i\\246)-334(t)1(rz)-1(\\241\\261\\242)-334(w)-333(s)-1(ob)1(ie)-1(.)]TJ 0 -13.549 Td[({)-472(P)1(ra)28(wd\\246)-472(m\\363)27(wi\\246,)-472(w)28(a\\252\\246)-1(sa)-472(si\\246)-472(p)-27(o)-472(ws)-1(i)-471(no)-28(cami,)-472(wid)1(z)-1(i)1(e)-1(li)-471(go)-472(lu)1(dzie)-472(ni)1(e)-472(raz)]TJ -27.879 -13.549 Td[(jeden.)1(..)]TJ 27.879 -13.55 Td[(Od)1(e)-1(tc)28(hn)1(\\246)-1(\\252a)-296(z)-296(ul)1(g\\241)-296(ogromn\\241,)-295(wie)-1(d)1(z)-1(i)1(a\\252a)-296(pr)1(z)-1(ec)-1(ie\\273)-296(o)-296(t)28(ym)-296(i)-295(dobr)1(z)-1(e)-296(rozumia\\252a,)]TJ -27.879 -13.549 Td[(\\273e)-367(go)-366(tak)-366(p)1(am)-1(i)1(\\246)-1(\\242)-366(krzywdy)-366(r)1(z)-1(u)1(c)-1(a)-366(p)-27(o)-366(no)-28(cac)27(h)-365(i)-366(s)-1(p)1(a\\242)-367(n)1(ie)-366(da)-56(j)1(e)-1(.)1(..)-366(a)-366(lu)1(dzie)-367(zaraz)-366(to)]TJ\nET\nendstream\nendobj\n632 0 obj <<\n/Type /Page\n/Contents 633 0 R\n/Resources 631 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n631 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n636 0 obj <<\n/Length 8354      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(195)]TJ -358.232 -35.866 Td[(sobie)-334(f)1(arb)1(uj\\241)-333(n)1(a)-334(sw)27(o)-55(je.)]TJ 27.879 -13.549 Td[({)-232(M)1(\\363g\\252)-232(si\\246)-232(ju)1(\\273)-232(wz)-1(i\\241\\242)-232(d)1(o)-232(r)1(ob)-28(ot)28(y)84(,)-232(zaraz)-232(b)28(y)-231(m)27(u)-231(wywietrza\\252y)-232(z)-232(g\\252o)28(wy)-231(k)28(o)-28(c)27(h)1(ania.)]TJ 0 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arski)-333(s)-1(y)1(n)-333(to...)]TJ 0 -13.549 Td[({)-403(Dziedzic)-403(ju)1(c)27(ha,)-402(w)-403(rob)-27(o)-28(cie)-403(b)-27(\\246)-1(d)1(z)-1(ie)-403(p)1(rz)-1(ebi)1(e)-1(r)1(a\\252)-403(,)-403(j)1(ak)-403(ta)-402(\\261)-1(win)1(ia)-403(w)-403(p)-27(e)-1(\\252n)29(ym)]TJ -27.879 -13.549 Td[(k)28(ory)1(c)-1(ie.)-489(K)1(ie)-1(d)1(y)-488(taki)-489(p)1(rze)-1(b)1(iern)28(y)84(,)-489(to)-488(trze)-1(b)1(a)-489(b)28(y)1(\\252)-1(o)-488(\\273)-1(y)1(\\242)-489(w)-489(z)-1(go)-28(d)1(z)-1(i)1(e)-489(z)-489(o)-56(jcem)-1(,)-488(a)-489(za)]TJ 0 -13.55 Td[(Jagu)1(s)-1(i\\241)-333(ni)1(e)-334(lata\\242...b)-27(o)-28(\\242)-334(t)1(o)-334(i)-333(grzec)27(h)-333(ni)1(e)-1(ma\\252y)83(,)-333(i)-333(ws)-1(t)28(yd)1(...)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(te\\273)-334(pan)29(u)-333(w)-334(g\\252o)28(wie)-334(p)-27(o)27(wsta\\252o?)-334(co?)-334({)-333(z)-1(a)28(w)28(o\\252a\\252)-1(a)-333(p)1(r\\246)-1(d)1(k)28(o.)]TJ 0 -13.549 Td[({)-257(M\\363)28(w)-1(i)1(\\246)-258(w)27(am,)-257(jak)-257(jes)-1(t,)-257(ca\\252a)-258(wie\\261)-258(o)-258(t)28(ym)-257(w)-1(i)1(e)-1(,)-257(s)-1(p)29(yta)-56(j)1(c)-1(i)1(e)-258(s)-1(i)1(\\246)-1(!)-257({)-258(za)28(w)27(o\\252a\\252)-257(g\\252)-1(o\\261no)]TJ -27.879 -13.549 Td[(i)-317(pr)1(\\246)-1(d)1(k)28(o,)-317(\\273)-1(e)-317(to)-317(p)-28(op)-27(\\246)-1(d)1(liwy)-317(b)28(y)1(\\252)-318(wielce)-318(i)-317(za)27(wsz)-1(e)-317(rad)-317(p)1(ra)28(w)-1(d)1(\\246)-318(r)1(z)-1(n)1(\\241\\252)-318(p)1(rosto)-318(z)-317(mos)-1(tu)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zy)-333(to)-333(m)-1(a)-333(pr)1(z)-1(yj)1(\\261)-1(\\242?)-334({)-333(zap)28(yta\\252a)-333(c)-1(i)1(c)27(ho.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(pr)1(z)-1(yj)1(dzie,)-334(c)28(ho)-28(\\242b)28(y)-333(j)1(utro.)-333(Co)-333(to)-333(w)27(am.)-333(c)-1(ze)-1(go)-333(b)-27(e)-1(cz)-1(ycie?...)]TJ 0 -13.55 Td[({)-333(Nie)-1(,)-333(n)1(ie,)-334(t)1(o)-334(in)1(o)-334(z)-333(m)-1(r)1(oz)-1(u)1(...)]TJ 0 -13.549 Td[(W)84(olno)-391(p)-27(o)28(w)-1(r)1(ac)-1(a\\252a,)-391(ci\\246\\273)-1(k)28(o,)-391(j)1(akb)28(y)-390(j\\241)-391(pr)1(z)-1(ygn)1(iata\\252o)-391(d)1(o)-391(z)-1(iemi,)-391(\\273)-1(e)-391(ledw)28(o)-391(nogi)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a.)-458(\\221)1(c)-1(iemnia\\252)-458(\\261)-1(wiat)-458(i)-459(\\261ni)1(e)-1(gi)-458(tak)-458(p)-28(oszarz)-1(a\\252y)84(,)-458(\\273)-1(e)-459(j)1(ak)28(o\\261)-459(tra\\014)1(\\242)-459(nie)-459(mog\\252a)]TJ 0 -13.549 Td[(na)-368(\\261cie)-1(\\273k)28(\\246)-1(,)-367(pr\\363\\273no)-368(p)1(rze)-1(ciera\\252a)-368(o)-28(cz)-1(y)-368(z)-368(\\252e)-1(z)-368(marzn\\241cyc)27(h)-367(u)-368(rz\\246)-1(s,)-368(p)1(r\\363\\273no...)-367(Nie)-368(o)-28(d-)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a\\252a,)-380(n)1(ie)-381(widzia\\252a)-380(nic)-380(i)-380(s)-1(z\\252a)-381(j)1(u\\273)-380(w)-381(tej)-380(c)-1(i)1(e)-1(mnicy)-380(nag\\252ej)-380(a)-380(b)-28(ol)1(\\241c)-1(ej;)-380(Jez)-1(u)1(s)-1(!)-380(j)1(ak)]TJ 0 -13.55 Td[(b)-27(ol\\241c)-1(ej.)]TJ 27.879 -13.549 Td[({)-333(Za)-334(Jagu)1(s)-1(i)1(\\241)-334(lata,)-333(za)-333(Jagusi\\241...)]TJ 0 -13.549 Td[(Tc)27(h)28(u)-386(ni)1(e)-387(m)-1(og\\252a)-387(z\\252apa\\242,)-387(a)-386(s)-1(erce)-388(si\\246)-387(jej)-386(t\\252uk\\252o)-387(j)1(ak)28(o)-387(ten)-386(ptak)-386(prze)-1(t)1(r\\241c)-1(on)29(y)83(,)]TJ -27.879 -13.549 Td[(a)-429(w)-428(g\\252o)27(wie)-429(k)28(o\\252o)28(w)27(a\\252o,)-428(k)28(o\\252o)28(w)27(a\\252o,)-428(a\\273)-429(ws)-1(p)1(ar\\252a)-429(si\\246)-429(o)-429(j)1(akie\\261)-429(dr)1(z)-1(ew)27(o)-428(nad)-428(sta)27(w)28(em)-429(i)]TJ 0 -13.549 Td[(cis)-1(n)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(do\\253)-333(mo)-28(cno,)-333(d)1(o)-334(b)-27(\\363lu)1(.)]TJ 27.879 -13.55 Td[({)-333(Mo\\273e)-334(i)-333(niepr)1(a)27(wd)1(a,)-334(mo\\273e)-334(in)1(o)-334(cygani)1(\\252...)]TJ 0 -13.549 Td[(Ucz)-1(epi\\252a)-333(s)-1(i)1(\\246)-334(teg)-1(o)-333(ze)-334(s)-1(t)1(rac)27(h)1(e)-1(m)-333(i)-334(ob)1(ur)1(\\241c)-1(z)-334(t)1(rz)-1(y)1(m)-1(a\\252a.)]TJ 0 -13.549 Td[({)-418(M)1(\\363)-56(j)-417(Je)-1(zus!)-418(Nie)-418(d)1(o\\261)-1(\\242)-418(bi)1(e)-1(d)1(y)83(,)-417(nie)-418(do\\261\\242)-418(p)-28(on)1(iew)-1(i)1(e)-1(r)1(ki,)-418(a)-417(tu)-418(j)1(e)-1(sz)-1(cze)-419(i)-417(to)-418(si\\246)]TJ -27.879 -13.549 Td[(zw)27(ala)-310(na)-310(mo)-56(j\\241)-310(bi)1(e)-1(d)1(n\\241)-310(g\\252)-1(o)28(w)28(\\246)-1(,)-310(i)-310(to...)-310({)-310(j\\246kn\\246\\252a)-311(r)1(z)-1(ewnie)-311(i)-310(ab)28(y)-310(st\\252umi\\242)-311(b)-27(\\363l,)-310(z)-1(acz)-1(\\246\\252a)]TJ 0 -13.549 Td[(bi)1(e)-1(c)-309(p)1(r\\246)-1(d)1(k)28(o,)-309(a\\273)-309(d)1(o)-309(ut)1(rat)28(y)-309(tc)28(h)28(u)-308(i)-309(p)1(rzytomno\\261)-1(ci;)-308(jakb)29(y)-309(j)1(\\241)-309(wilki)-308(goni)1(\\252)-1(y)84(,)-308(w)-1(p)1(ad\\252a)-309(d)1(o)]TJ 0 -13.55 Td[(izb)28(y)-333(z)-1(ad)1(ysz)-1(an)1(a,)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(\\273)-1(y)1(w)27(a.)]TJ 27.879 -13.549 Td[(An)28(tk)56(a)-333(jes)-1(zc)-1(ze)-334(n)1(ie)-334(b)28(y\\252o.)]TJ 0 -13.549 Td[(Dzie)-1(ci)-338(sie)-1(d)1(z)-1(i)1(a\\252)-1(y)-337(prze)-1(d)-337(k)28(om)-1(i)1(nem)-339(na)-338(d)1(z)-1(i)1(adk)28(o)28(w)-1(y)1(m)-339(k)28(o\\273uc)28(h)28(u,)-338(a)-338(stary)-338(stru)1(ga\\252)]TJ -27.879 -13.549 Td[(im)-333(w)-1(i)1(atrak)-333(i)-333(z)-1(ab)1(a)27(wia\\252.)]TJ 27.879 -13.549 Td[({)-333(Przywie\\271)-1(l)1(i)-334(w)28(e\\252)-1(n)1(\\246)-1(,)-333(Han)28(u)1(\\261)-1(,)-333(w)28(e)-334(tr)1(z)-1(ec)27(h)-333(w)28(ork)56(ac)27(h)-333(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\271li..)1(.)]TJ 0 -13.55 Td[(Roz)-1(wi\\241za\\252a)-342(w)28(ory)-341(i)-342(w)-341(jedn)28(ym)-341(z)-342(nic)28(h)-342(n)1(a)-342(wierzc)27(h)28(u)-341(znalaz\\252a)-342(b)-27(o)-28(c)27(h)1(e)-1(n)-341(c)28(hleba,)]TJ -27.879 -13.549 Td[(k)56(a)28(w)27(a\\252)-333(s)-1(\\252on)1(in)28(y)-333(i)-333(z)-334(dob)1(re)-334(p)-27(\\363\\252)-333(garnca)-333(k)55(asz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-343(Ni)1(e)-1(c)28(h)-342(c)-1(i)-342(P)28(an)-342(Jez)-1(u)1(s)-343(o)-28(dp)1(\\252ac)-1(i)-342(z)-1(a)-342(dob)1(ro\\261\\242)-343({)-343(sz)-1(epn)1(\\246)-1(\\252a)-342(rozrz)-1(ewnion)1(a)-343(i)-342(zaraz)]TJ -27.879 -13.549 Td[(te\\273)-334(nar)1(z)-1(\\241d)1(z)-1(i\\252a)-333(s)-1(u)1(t\\241)-333(k)28(olac)-1(j)1(\\246)-1(,)-333(i)-333(r)1(yc)27(h)1(\\252)-1(o)-333(d)1(z)-1(iec)-1(i)-333(spa\\242)-334(p)-27(o\\252o\\273y\\252a.)]TJ 27.879 -13.549 Td[(Ucis)-1(zy\\252o)-438(si\\246)-439(wn)1(e)-1(t)-438(w)-438(ca\\252ym)-439(d)1(om)27(u)1(,)-438(b)-27(o)-438(u)-438(W)84(e)-1(r)1(oniki)-437(ju)1(\\273)-439(spali)1(,)-438(a)-438(stary)-438(te\\273)]TJ -27.879 -13.549 Td[(wkr\\363tce)-333(p)1(rz)-1(y)1(le)-1(g\\252)-332(na)-332(pr)1(z)-1(yp)1(iec)27(ku)-332(i)-332(zas)-1(n)1(\\241\\252,)-333(Han)1(k)56(a)-333(za\\261)-333(wyp)-28(or)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a)-332(k)28(\\363\\252k)28(o,)-332(s)-1(i)1(ad\\252a)]TJ 0 -13.55 Td[(pr)1(z)-1(ed)-333(k)28(ominem)-334(i)-333(pr)1(z)-1(\\246d\\252a.)]TJ 27.879 -13.549 Td[(D\\252ugo)-333(w)-333(no)-28(c)-334(siedzia\\252a,)-333(do)-333(pierwsz)-1(yc)28(h)-333(ku)1(r\\363)28(w)-1(,)-333(a)-333(w)27(ci\\241\\273,)-333(jak)]TJ 0 -13.549 Td[(ta)-450(n)1(i\\242,)-450(wi\\252o)-450(si\\246)-450(p)1(rz)-1(ez)-450(ni)1(\\241)-450(m\\252)-1(y)1(narzo)28(w)27(e)-450(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(enie:)-450(\\377)-55(Za)-450(Jagn)1(\\241)-450(lata,)-449(z)-1(a)]TJ -27.879 -13.549 Td[(Jagn)1(\\241.\")]TJ 27.879 -13.549 Td[(K\\363\\252k)28(o)-269(w)27(ar)1(c)-1(za\\252o)-270(z)-270(cic)28(ha,)-269(jedn)1(os)-1(ta)-55(jn)1(ie,)-270(n)1(ies)-1(tr)1(ud)1(z)-1(enie,)-269(no)-28(c)-269(z)-1(agl\\241d)1(a\\252a)-270(w)-269(okno)]TJ -27.879 -13.55 Td[(mie)-1(si\\246c)-1(zn\\241,)-300(m)-1(r)1(o\\271)-1(n)1(\\241)-301(t)28(w)27(ar)1(z)-1(\\241)-300(i)-301(j)1(akb)28(y)-301(p)-27(ob)1(rz)-1(\\246kiw)28(a\\252a)-301(w)-301(sz)-1(yb)1(ki,)-300(i)-301(wzdyc)28(ha)-56(j)1(\\241c)-1(y)-300(tu)1(li\\252a)]TJ 0 -13.549 Td[(si\\246)-319(do)-318(\\261c)-1(ian)1(,)-318(a)-319(c)28(h\\252\\363)-28(d)-318(wyp)-27(e)-1(\\252za\\252)-319(z)-319(k)56(\\241t\\363)28(w,)-318(z)-1(a)-318(nogi)-318(c)27(h)29(w)-1(y)1(ta\\252)-319(i)-318(siw)27(\\241)-318(pl)1(e)-1(\\261ni\\241)-318(rozrasta\\252)]TJ\nET\nendstream\nendobj\n635 0 obj <<\n/Type /Page\n/Contents 636 0 R\n/Resources 634 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n634 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n639 0 obj <<\n/Length 9890      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(196)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-461(p)-27(o)-460(gli)1(nian)29(ym)-461(t)1(oku;)-459(\\261)-1(wiersz)-1(cz)-461(strzyk)56(a\\252)-460(z)-1(a)-460(k)28(omin)1(e)-1(m,)-460(i)1(no)-460(cz)-1(ase)-1(m)-460(pr)1(z)-1(erw)28(a\\252,)]TJ 0 -13.549 Td[(gdy)-315(k)1(t\\363re)-316(d)1(z)-1(i)1(e)-1(c)28(k)28(o)-316(zakrzycz)-1(a\\252o)-315(pr)1(z)-1(ez)-316(se)-1(n)-314(lub)-27(o)-315(rzuci\\252o)-316(si\\246)-315(na)-315(\\252\\363\\273)-1(ku)-314({)-316(i)-315(zno)28(wu)-315(sta)]TJ 0 -13.549 Td[(w)28(a\\252)-1(a)-378(g\\252\\246b)-27(ok)55(a,)-377(prze)-1(marzni)1(\\246)-1(ta)-378(cic)27(h)1(o\\261)-1(\\242!)-378(M)1(r\\363z)-378(b)28(y\\252)-378(c)-1(or)1(az)-379(t\\246\\273s)-1(zy)-378(i)-378(ki)1(e)-1(b)28(y)-377(\\273)-1(elazn)28(ymi)]TJ 0 -13.549 Td[(pazur)1(am)-1(i)-254(\\261c)-1(i)1(s)-1(k)56(a\\252,)-254(b)-28(o)-254(raz)-255(w)-254(raz)-255(tr)1(z)-1(ask)55(a\\252y)-254(d)1(e)-1(ski)-254(w)-255(sz)-1(cz)-1(ycie,)-254(to)-255(p)-27(ogi\\246te)-255(stare)-255(\\261c)-1(ian)29(y)]TJ 0 -13.549 Td[(\\252up)1(n\\246\\252y)83(,)-287(jakb)29(y)-288(kto)-288(strzeli\\252,)-288(to)-287(b)-28(elk)56(a)-288(ni)1(e)-1(kt)1(\\363ra)-288(p)-27(\\246)-1(cz)-1(n)1(ia\\252a)-288(o)-28(d)-287(mrozu)-288(p)-27(otrzas)-1(k)1(uj)1(\\241c)-289(z)]TJ 0 -13.55 Td[(cic)27(h)1(a,)-254(to)-253(s)-1(n)1(ad\\271)-254(zi\\241b)-253(prze)-1(j)1(\\241\\252)-254(n)1(a)-254(ws)-1(k)1(r\\363\\261)-254(pr)1(z)-1(ycies)-1(ie,)-253(\\273)-1(e)-254(zadygota\\252y)-253(z)-254(nag\\252a)-254(b)-27(ole\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(i)-333(c)-1(a\\252y)-333(d)1(om)-334(ku)1(rcz)-1(y\\252)-333(s)-1(i)1(\\246)-1(,)-333(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra\\252)-333(do)-333(zie)-1(mi)-333(a)-333(drga\\252)-333(z)-334(zimnicy)83(.)]TJ 27.879 -13.549 Td[({)-268(\\233e)-269(mni)1(e)-269(te\\273)-269(d)1(o)-268(g\\252)-1(o)28(wy)-268(n)1(ie)-269(p)1(rzys)-1(z\\252o!)-268(Ju\\261ci,)-268(tak)56(a)-268(uro)-27(dn)1(a,)-268(tak)56(a)-269(spa\\261na,)-267(tak)55(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(p)-28(o)-28(c)28(hlebn)1(a,)-360(a)-361(j)1(a)-361(co?...)-360(Ch)28(uc)28(hro)-360(taki)1(e)-1(,)-360(sk)28(\\363)-1(r)1(a)-361(i)-360(gn)1(at)28(y)83(,)-360(c\\363\\273)-361(ja?)-361(Czy)-360(to)-361(u)1(m)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(go)-372(zniew)27(ol)1(i\\242)-373(d)1(o)-372(s)-1(i)1(\\246)-1(?)-372(cz)-1(y)-372(to)-371(\\261)-1(miem)-1(?)-372(A)-372(c)27(h)1(o)-28(\\242b)28(ym)-372(i)-372(\\273y\\252\\246)-373(k)56(a\\273d\\241)-372(wypr)1(u\\252a)-372(la)-372(n)1(iego,)]TJ 0 -13.549 Td[(ni)1(c)-334(to,)-333(kiej)-333(se)-1(rca)-333(la)-334(mn)1(ie)-334(ni)1(e)-334(ma.)-334(C\\363\\273)-334(j)1(a!)-333(C\\363\\273)-1(?...)]TJ 27.879 -13.55 Td[(Niem)-1(o)-27(c)-393(j)1(\\241)-393(ogar)1(n\\246\\252a,)-392(niemo)-28(c)-393(ogr)1(om)-1(n)1(a,)-392(c)-1(i)1(c)27(ha)-392(i)-392(b)-27(oles)-1(n)1(a,)-392(tak)-392(stras)-1(zni)1(e)-393(b)-27(o-)]TJ -27.879 -13.549 Td[(les)-1(n)1(a,)-395(\\273)-1(e)-396(n)1(a)27(w)28(e)-1(t)-395(p\\252ak)56(a\\242)-396(n)1(ie)-396(mog\\252)-1(a,)-395(n)1(ie)-396(mia\\252a)-396(si\\252,)-395(trz\\246)-1(s\\252a)-396(si\\246)-396(in)1(o)-396(w)-396(sobi)1(e)-396(jak)-395(ta)]TJ 0 -13.549 Td[(dr)1(z)-1(ewina)-351(d)1(r\\246t)28(w)-1(i)1(e)-1(j)1(\\241c)-1(a)-351(z)-351(zim)-1(n)1(a,)-351(co)-351(ani)-350(uciec)-1(ze)-352(o)-27(d)-351(m\\246)-1(k)1(i,)-351(n)1(i)-351(p)-27(oratu)1(nku)-350(up)1(rosi,)-351(n)1(i)]TJ 0 -13.549 Td[(br)1(oni\\242)-446(s)-1(i\\246)-446(p)-28(or)1(adzi)-446({)-447(j)1(ak)28(o)-447(t)1(a)-447(d)1(rze)-1(win)1(a)-447(skrzyt)28(wia\\252a)-446(Hancz)-1(yn)1(a)-446(dusza.)-447(W)1(s)-1(p)1(ar\\252a)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-335(n)1(a)-334(k)28(\\363\\252)-1(k)1(u,)-334(opu)1(\\261)-1(ci\\252a)-334(r\\246c)-1(e)-335(i)-334(zapatr)1(z)-1(y\\252a)-334(si\\246)-335(pr)1(z)-1(ed)-334(si\\246)-1(,)-334(w)-334(s)-1(w)28(o)-56(j)1(\\241)-335(d)1(ol\\246)-335(n)1(ie)-1(szc)-1(z\\246)-1(-)]TJ 0 -13.55 Td[(sn\\241,)-291(w)-290(gorz)-1(k)56(\\241)-291(b)-27(ez)-1(mo)-28(c)-291(s)-1(w)28(o)-56(j)1(\\241,)-291(i)-290(d\\252u)1(go,)-291(d)1(\\252)-1(u)1(go)-291(tak)-290(trw)28(a\\252a,)-291(in)1(o)-291(kiedy)-290(ni)1(e)-1(ki)1(e)-1(dy)-290(sp)-28(o)-28(d)]TJ 0 -13.549 Td[(sin)28(yc)28(h)-426(p)-27(o)28(wie)-1(k)-425(wysu\\252a)-426(\\252za)-426(j)1(ak)55(a)-425(pal)1(\\241c)-1(a)-426(i)-425(p)1(ada\\252a)-426(n)1(a)-426(w)28(e)-1(\\252n)1(\\246)-1(,)-425(i)-426(zamarza\\252)-1(a)-425(tam)-426(w)]TJ 0 -13.549 Td[(kr)1(w)27(a)28(wy)-333(r\\363\\273)-1(an)1(iec)-334(b)-27(o)-1(l)1(e)-1(\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ale)-457(naza)-56(ju)1(trz)-457(w)-1(sta\\252a)-457(s)-1(p)-27(ok)28(o)-56(j)1(niejsza)-458(n)1(iec)-1(o,)-457(b)-27(o)-458(i)-457(j)1(ak\\273e)-1(,)-457(mia\\252a)-457(to)-457(c)-1(zas)-458(na)]TJ -27.879 -13.549 Td[(tu)1(rb)-27(o)27(w)28(ani)1(e)-348(jak)-347(jak)56(a)-347(dziedzic)-1(zk)56(a!)-348(M)1(o\\273)-1(e)-347(tak)-348(j)1(e)-1(st,)-347(jak)-347(m\\252ynar)1(z)-348(p)-27(o)27(wiad)1(a\\252,)-348(a)-347(mo\\273)-1(e)]TJ 0 -13.55 Td[(i)-317(ni)1(e)-318(jes)-1(t!)-317(Op)1(u\\261c)-1(i)-317(to)-317(r\\246c)-1(e,)-317(p\\252ak)56(a\\242)-318(b)-27(\\246)-1(d)1(z)-1(ie)-317(i)-318(wyr)1(z)-1(ek)56(a\\242)-1(,)-317(kiej)-317(ws)-1(zystk)28(o)-318(n)1(a)-318(j)1(e)-1(j)-317(g\\252o)28(wie,)]TJ 0 -13.549 Td[(i)-469(d)1(z)-1(ieci,)-469(i)-469(gosp)-27(o)-28(dar)1(s)-1(t)28(w)28(o,)-469(i)-469(b)1(ie)-1(d)1(a)-469(c)-1(a\\252a!)-468(Kto)-469(tem)27(u)-469(zarad)1(z)-1(i)-468(jak)-469(n)1(ie)-469(ona?)-469(T)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(p)-27(om)-1(o)-27(dli\\252a)-422(s)-1(i)1(\\246)-423(gor\\241co)-423(p)1(rze)-1(d)-422(M)1(atk)56(\\241)-423(Boles)-1(n)1(\\241)-423(i)-422(\\273e)-1(b)28(y)-422(P)28(an)-422(J)1(e)-1(zus)-423(o)-27(dmie)-1(n)1(i\\252,)-422(to)-422(s)-1(i\\246)]TJ 0 -13.549 Td[(o)-28(c)28(h\\014ar)1(o)28(w)27(a\\252a)-460(i\\261)-1(\\242)-460(na)-460(z)-1(wies)-1(n)1(\\246)-461(do)-460(Cz)-1(\\246sto)-28(c)27(h)1(o)27(wy)84(,)-460(na)-460(trzy)-460(m)-1(sz)-1(e)-460(da\\242)-461(i)-460(ki)1(e)-1(d)1(y\\261)-1(,)-460(j)1(ak)]TJ 0 -13.549 Td[(si\\246)-381(z)-1(ap)-27(om)-1(o\\273e,)-381(zanie\\261)-1(\\242)-381(ca\\252y)-381(k)56(amie)-1(\\253)-380(w)28(os)-1(ku)-380(d)1(o)-381(k)28(o\\261)-1(cio\\252a,)-380(na)-381(\\261wiat\\252o)-381(pr)1(z)-1(ed)-380(w)-1(i)1(e)-1(lk)1(i)]TJ 0 -13.55 Td[(o\\252tarz.)]TJ 27.879 -13.549 Td[(Ul\\273y\\252o)-300(jej)-300(bar)1(dzo,)-300(jakb)29(y)-300(s)-1(i\\246)-300(wys)-1(p)-27(o)28(wiada\\252a)-300(i)-300(ten)-300(Sak)1(rame)-1(n)28(t)-300(\\261wi\\246)-1(t)28(y)-300(wzi\\246)-1(\\252a,)]TJ -27.879 -13.549 Td[(\\273e)-401(ostro)-400(zabr)1(a\\252)-1(a)-399(s)-1(i\\246)-400(do)-400(p)1(rz\\246)-1(d)1(z)-1(eni)1(a,)-400(t)28(ylk)28(o)-400(d)1(z)-1(ie\\253,)-399(c)27(h)1(o)-28(c)-1(ia\\273)-400(b)28(y)1(\\252)-400(s)-1(\\252onec)-1(zn)28(y)-399(i)-400(jasn)28(y)84(,)]TJ 0 -13.549 Td[(d\\252u)1(\\273)-1(y)1(\\252)-334(si\\246)-334(j)1(e)-1(j)-333(n)1(ie)-1(p)-27(omie)-1(r)1(nie)-333(i)-333(roz)-1(b)1(iera\\252a)-333(j\\241)-333(trosk)55(a)-333(o)-333(An)28(tk)56(a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-472(dop)1(iero)-471(w)-1(i)1(e)-1(cz)-1(orem,)-472(n)1(a)-472(sam\\241)-472(k)28(olacj\\246,)-471(ale)-472(b)28(y\\252)-471(taki)-471(z)-1(b)1(ie)-1(d)1(z)-1(on)29(y)83(,)]TJ -27.879 -13.55 Td[(zm)-1(ar)1(no)28(w)27(an)29(y)-471(i)-470(cic)27(h)29(y)83(,)-470(a)-470(tak)-470(s)-1(i\\246)-470(w)-1(it)1(a\\252)-471(p)-27(o)-28(cz)-1(ciwie)-1(,)-470(d)1(z)-1(ieciom)-471(b)1(u\\252e)-1(k)-470(p)1(rzyni\\363s\\252,)-470(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-362(z)-1(ap)-27(om)-1(n)1(ia\\252a)-362(o)-361(p)-27(o)-28(dejr)1(z)-1(eniac)28(h,)-361(a)-362(gd)1(y)-362(j)1(e)-1(sz)-1(cze)-362(urzn\\241\\252)-361(s)-1(i)1(e)-1(cz)-1(ki)-361(i)-361(p)-28(omaga\\252)-362(j)1(e)-1(j)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(ob)1(rz\\241dku)1(,)-333(jak)-333(m)-1(\\363g\\252,)-333(r)1(oz)-1(cz)-1(u)1(li\\252a)-333(s)-1(i\\246)-333(tak)-333(g\\252)-1(\\246b)-27(ok)28(o,)-333(\\273)-1(e)-334(i)-333(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-334(tr)1(udn)1(o.)]TJ 27.879 -13.549 Td[(Nie)-334(m\\363)28(wi\\252)-334(t)28(y)1(lk)28(o,)-333(gdzie)-334(b)28(y\\252)-333(i)-333(c)-1(o)-333(rob)1(i\\252,)-333(ju)1(\\261)-1(ci\\242)-334(n)1(ie)-334(\\261m)-1(i)1(a\\252)-1(a)-333(o)-333(to)-333(p)28(yta\\242.)]TJ 0 -13.549 Td[(P)28(o)-469(k)28(ol)1(ac)-1(j)1(i)-469(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-469(Stac)28(h,)-468(jak)-469(b)29(y\\252)-469(c)-1(z\\246s)-1(to)-469(zagl\\241d)1(a\\252,)-469(c)27(h)1(o)-28(\\242)-469(m)27(u)-468(W)83(eron)1(k)55(a)]TJ -27.879 -13.549 Td[(br)1(oni\\252a,)-333(a)-333(w)-334(j)1(aki\\261)-334(cz)-1(as)-333(p)-28(o)-333(ni)1(m)-334(na)-55(jn)1(ies)-1(p)-27(o)-28(dziew)27(an)1(ie)-1(j)-332(z)-1(j)1(a)27(wi\\252)-333(s)-1(i)1(\\246)-334(s)-1(t)1(ary)-333(K\\252\\241b.)]TJ 27.879 -13.55 Td[(Niem)-1(a\\252o)-476(s)-1(i\\246)-477(zdziwili,)-476(b)-28(o)-476(pierws)-1(zy)-477(t)1(o)-477(b)28(y\\252)-477(cz)-1(\\252o)28(wiek)-477(ze)-478(wsi)-477(o)-28(d)-476(cz)-1(asu)-477(i)1(c)27(h)]TJ -27.879 -13.549 Td[(wygnan)1(ia,)-333(i)-333(tak)-333(rozumieli,)-333(\\273)-1(e)-333(z)-334(jak)1(im)-1(\\261)-333(in)28(teres)-1(em)-334(pr)1(z)-1(y)1(c)27(ho)-27(dzi.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-334(to)-333(nikt)-333(an)1(i)-333(s)-1(i\\246)-333(p)-28(ok)56(a\\273)-1(e,)-333(tom)-334(u)1(m)27(y\\261li\\252)-333(w)28(a)-56(ju)-332(o)-28(dwiedzi\\242)-334({)-333(rze)-1(k\\252)-333(pr)1(os)-1(to.)]TJ 0 -13.549 Td[(Dzi\\246)-1(k)28(o)28(w)28(ali)-333(m)27(u)-333(t)1(e)-1(\\273)-334(ze)-334(sz)-1(cz)-1(er\\241)-333(i)-333(g\\252\\246)-1(b)-27(ok)56(\\241)-334(wdzi\\246c)-1(zno\\261c)-1(i)1(\\241.)]TJ 0 -13.549 Td[(Si)1(e)-1(d)1(li)-365(s)-1(e)-366(r)1(z)-1(\\246dem)-366(na)-365(\\252a)28(w)-1(i)1(e)-1(,)-365(bl)1(is)-1(k)28(o)-365(k)28(om)-1(i)1(na,)-365(i)-365(p)-28(ogad)1(yw)28(ali)-365(w)27(oln)1(o,)-366(p)-27(o)28(w)27(a\\273ni)1(e)-1(,)]TJ -27.879 -13.55 Td[(a)-333(s)-1(tar)1(y)-333(dorzuca\\252)-334(ga\\252\\241ze)-1(k)-333(n)1(a)-334(ogi)1(e)-1(\\253)1(.)]TJ 27.879 -13.549 Td[({)-333(Mr\\363z)-333(niez)-1(gor)1(s)-1(zy)83(,)-333(co?)]TJ\nET\nendstream\nendobj\n638 0 obj <<\n/Type /Page\n/Contents 639 0 R\n/Resources 637 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n637 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n642 0 obj <<\n/Length 8337      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(197)]TJ -330.353 -35.866 Td[({)-333(\\233e)-334(i)-333(m)-1(\\252\\363)-28(ci\\242)-334(b)-27(ez)-334(k)28(o\\273)-1(u)1(c)27(h)1(a)-334(i)-333(r\\246k)56(a)28(w)-1(i)1(c)-334(tru)1(dn)1(o)-334({)-333(p)-27(o)27(wiedzia\\252)-333(Stac)27(h)1(o.)]TJ 0 -13.549 Td[({)-333(A)-334(co)-333(gors)-1(za,)-333(\\273)-1(e)-333(i)-334(wil)1(ki)-333(s)-1(i)1(\\246)-334(p)-28(ok)56(azuj)1(\\241.)]TJ 0 -13.549 Td[(Ze)-334(zdu)1(m)-1(ieni)1(e)-1(m)-334(sp)-27(o)-56(j)1(rz)-1(eli)-333(n)1(a)-334(K\\252\\246ba.)]TJ 0 -13.549 Td[({)-277(Pra)28(wd\\246)-277(m)-1(\\363)28(wi\\246,)-278(d)1(z)-1(i)1(s)-1(iejsze)-1(j)-277(n)1(o)-28(c)-1(y)-277(p)-27(o)-28(d)1(k)28(op)28(yw)28(a)-1(\\252y)-277(p)-27(o)-28(d)-277(w)28(\\363)-56(j)1(t\\363)28(w)-278(c)27(h)1(le)-1(w,)-277(m)28(usia-)]TJ -27.879 -13.549 Td[(\\252o)-358(je)-358(co\\261)-359(sp\\252osz)-1(y)1(\\242)-1(,)-357(\\273)-1(e)-358(pr)1(os)-1(iak)56(a)-358(n)1(ie)-358(wz)-1(i\\246\\252y)83(,)-357(a)-358(wygrze)-1(b)1(a\\252y)-358(jam\\246,)-358(a\\273)-358(p)-28(o)-27(d)-358(p)1(rzyc)-1(i)1(e)-1(\\261,)]TJ 0 -13.55 Td[(sam)-334(c)27(h)1(o)-28(dzi\\252e)-1(m)-333(w)-334(p)-27(o\\252e)-1(d)1(nie)-333(ogl\\241da\\242,)-333(pi\\241ciu)-333(ic)28(h)-333(m)27(u)1(s)-1(i)1(a\\252)-1(o)-333(b)28(y)1(\\242)-334(na)-55(jmniej!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(an)1(i)-333(c)27(h)28(y)1(bi,)-333(na)-333(ci\\246)-1(\\273k)56(\\241)-334(zim\\246)-334(znak.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(mrozy)-333(dop)1(ie)-1(r)1(o)-334(co)-333(w)-1(zi\\246\\252y)-334(i)-333(tu)-332(ju\\273)-333(w)-1(i)1(lki)-333(wyc)27(h)1(o)-28(dz\\241...)]TJ 0 -13.549 Td[({)-253(Widzia\\252em)-254(p)-27(o)-28(d)-253(W)83(ol)1(\\241,)-254(n)1(a)-253(te)-1(j)-253(d)1(ro)-28(d)1(z)-1(e)-254(za)-253(m)-1(\\252yn)1(e)-1(m,)-253(wie)-1(cie,)-254(g\\246st)27(y)-253(\\261lad,)-253(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(ca\\252)-1(e)-333(s)-1(tad)1(o)-334(sz)-1(\\252o)-333(na)-333(u)1(k)28(os)-334(dr)1(ogi,)-333(przy-)]TJ 27.879 -13.549 Td[(gl\\241d)1(a\\252e)-1(m)-387(si\\246,)-386(alem)-387(m)27(y)1(\\261)-1(la\\252,)-386(\\273e)-387(to)-386(pa\\253)1(s)-1(k)1(ie)-387(psy)-386(p)-27(olo)28(w)27(e,)-386(a)-387(t)1(o)-387(wil)1(ki)-386(m)27(u)1(s)-1(ia\\252y)]TJ -27.879 -13.55 Td[(b)28(y\\242...)-333({)-333(p)-27(o)27(wiedzia\\252)-333(\\273)-1(yw)28(o)-333(An)28(tek.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(li\\261c)-1(ie)-333(to)-334(i)-333(w)-333(p)-28(or)1(\\246)-1(b)1(ie)-1(?)-333({)-334(zagadn)1(\\241\\252)-334(K)1(\\252\\241b.)]TJ 0 -13.549 Td[({)-327(Nie,)-327(p)-27(o)27(wiad)1(ali)-327(in)1(o)-327(lu)1(dzie)-1(,)-326(\\273)-1(e)-327(tn\\241)-327(ten)-327(p)1(rzyku)1(pn)28(y)-327(l)1(as)-1(,)-327(p)1(rzy)-327(Wil)1(c)-1(zyc)27(h)-326(Do-)]TJ -27.879 -13.549 Td[(\\252ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-340(P)28(o)28(wiedzia\\252)-340(i)-340(mnie)-340(b)-27(oro)28(w)-1(y)84(,)-340(\\273e)-341(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-340(ni)1(k)28(ogo)-340(z)-341(Lip)1(iec)-341(w)28(o\\252a\\242)-341(n)1(ie)-341(b)-27(\\246dzie)]TJ -27.879 -13.55 Td[(do)-333(rob)-27(ot)28(y)84(,)-334(p)-27(ono)-333(p)1(rz)-1(ez)-334(z\\252o\\261)-1(\\242,)-333(\\273)-1(e)-334(si\\246)-334(o)-333(sw)27(o)-55(je)-334(u)1(p)-28(omin)1(a)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363\\273)-334(m)28(u)-333(to)-333(las)-334(wytni)1(e)-1(,)-333(j)1(ak)-334(n)1(ie)-334(Li)1(p)-28(cz)-1(ak)1(i?)-334({)-333(wtr\\241ci\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-225(Moi\\261c)-1(i)1(e)-1(wy)84(,)-225(t)28(yla)-225(ws)-1(z\\246)-1(d)1(y)-225(naro)-27(du)-225(p)1(r\\363\\273no)-225(sie)-1(d)1(z)-1(i)-225(p)-27(o)-225(c)27(h)1(a\\252upac)28(h)-225(i)-225(cz)-1(ek)56(a)-226(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.549 Td[(kiej)-359(zmi\\252o)27(w)28(ani)1(a.)-359(Ma\\252o)-359(tu)-359(w)-359(s)-1(amej)-359(W)84(oli,)-359(ma\\252o)-360(t)1(o)-360(t)28(y)1(c)27(h)-359(k)28(o\\252tu)1(n\\363)28(w)-359(w)-360(Ru)1(dce)-360(alb)-27(o)]TJ 0 -13.549 Td[(i)-364(tam)27(t)28(y)1(c)27(h)-364(sm)-1(ol)1(uc)27(h)1(\\363)27(w)-364(w)-365(D)1(\\246)-1(b)1(ic)-1(y)1(!)-364(Nie)-1(c)28(h)-364(ino)-364(d)1(z)-1(iedzic)-365(k)1(rzykni)1(e)-1(,)-364(to)-364(w)-365(j)1(e)-1(d)1(e)-1(n)-363(dzie)-1(\\253)]TJ 0 -13.55 Td[(stanie)-290(par\\246)-290(s)-1(to)-290(n)1(a)-56(j)1(z)-1(d)1(atniejsz)-1(ego)-290(c)27(h)1(\\252)-1(op)1(a.)-290(P)28(\\363ki)-290(n)1(a)-290(przyku)1(pn)29(ym)-291(r)1(\\241bi\\241,)-290(n)1(ie)-1(c)28(h)-290(sobie)]TJ 0 -13.549 Td[(r\\241b)1(i\\241,)-333(ni)1(e)-1(c)27(h)-333(si\\246)-334(wsp)-28(omog\\241,)-333(ni)1(e)-1(wiele)-334(tam)-333(te)-1(go,)-333(a)-333(i)-333(dla)-333(naszyc)27(h)-333(za)-334(d)1(alek)28(o.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(ak)-333(nasz)-334(b)-27(\\363r)-334(zacz)-1(n)1(\\241?)-1(.)1(..)-333({)-334(zap)28(yta\\252)-333(St)1(ac)27(ho.)]TJ 0 -13.549 Td[({)-229(Ni)1(e)-229(dam)28(y!)-229({)-228(rzuci\\252)-229(kr)1(\\363tk)28(o)-229(i)-228(mo)-28(c)-1(n)1(o)-229(K)1(\\252)-1(\\241b)1(.)-228({)-229(P)28(ob)1(aruj)1(e)-1(m)28(y)-229(si\\246!)-229(n)1(iec)27(h)-228(dziedzic)]TJ -27.879 -13.549 Td[(zobacz)-1(y)84(,)-333(kto)-334(mo)-28(cni)1(e)-1(j)1(s)-1(zy)83(,)-333(on)-333(cz)-1(y)-333(ca\\252y)-333(nar\\363)-28(d)1(?)-334(n)1(iec)27(h)-333(zobacz)-1(y!)]TJ 27.879 -13.55 Td[(Nie)-347(m)-1(\\363)28(wili)-347(j)1(u\\273)-347(o)-348(t)28(y)1(m)-1(,)-347(zb)28(yt)-347(to)-347(le\\273a\\252)-1(o)-347(wsz)-1(ystkim)-347(na)-347(w)28(\\241trob)1(ie)-348(i)-347(p)1(iek\\252o,)-347(ino)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(Byli)1(c)-1(a)-333(p)-27(o)27(wiedzia\\252)-333(j\\241k)56(a)-56(j)1(\\241c)-1(o)-333(i)-333(ni)1(e)-1(\\261m)-1(ia\\252o:)]TJ 27.879 -13.549 Td[({)-333(Znam)-334(j)1(a)-334(t)1(o)-334(p)1(le)-1(mi\\246)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ico)28(w)27(e)-333(z)-334(W)83(ol)1(i,)-333(z)-1(n)1(am)-1(,)-333(\\014)1(gla)-334(on)-332(w)27(am)-334(wystroi)1(...)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(ha)-55(j)-333(s)-1(tr)1(oi,)-333(nie)-333(dzie)-1(cim,)-333(to)-333(nas)-334(n)1(ie)-334(zw)-1(i)1(e)-1(d)1(z)-1(ie{)-333(z)-1(ak)28(o\\253)1(c)-1(zy\\252)-334(K)1(\\252\\241b.)]TJ 0 -13.549 Td[(P)28(ogad)1(ali)-478(jes)-1(zc)-1(ze)-479(o)-478(wyp)-27(\\246)-1(d)1(z)-1(eniu)-477(Magdy)-478(p)1(rze)-1(z)-479(or)1(ganist\\363)28(w,)-479(o)-478(cz)-1(y)1(m)-479(K\\252\\241b)]TJ -27.879 -13.55 Td[(rze)-1(k)1(\\252)-334(sw)27(o)-55(je:)]TJ 27.879 -13.549 Td[({)-406(Ju\\261c)-1(i)1(,)-406(p)-28(o)-406(lu)1(dzku)-406(to)-406(nie)-406(jes)-1(t,)-406(ale)-406(i)-406(s)-1(zpit)1(ala)-406(trud)1(no)-406(im)-406(b)28(y\\252o)-406(w)-407(c)27(h)1(a\\252up)1(ie)]TJ -27.879 -13.549 Td[(zak\\252ada\\242,)-333(\\273)-1(e)-334(to)-333(im)-333(prze)-1(cie\\273)-334(Magd)1(a)-334(n)1(i)-333(s)-1(w)28(at,)-333(ni)-333(b)1(rat:)]TJ 27.879 -13.549 Td[(P)28(ogad)1(ali)-338(o)-337(t)27(y)1(m)-338(i)-338(o)28(wym)-338(i)-338(r)1(oz)-1(es)-1(zli)-338(d)1(os)-1(y)1(\\242)-339(p)-27(\\363\\271no,)-337(a)-338(na)-337(o)-28(dc)28(ho)-28(d)1(n)28(ym)-338(K\\252\\241b)-337(p)-28(o)]TJ -27.879 -13.549 Td[(sw)27(o)-55(jem)27(u)-397(p)1(rosto)-397(i)-397(k)1(r\\363tk)28(o)-397(p)-27(o)27(wiedzia\\252,)-397(\\273eb)28(y)-397(do)-396(niego)-397(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(li,)-397(a)-397(j)1(ak)-397(im)-397(cz)-1(ego)]TJ 0 -13.549 Td[(p)-27(otrza,)-337(n)1(iec)27(h)-336(in)1(o)-337(r)1(z)-1(ekn\\241)-336({)-337(t)1(o)-337(cz)-1(y)-336(z)-337(legumin)29(y)83(,)-336(c)-1(zy)-336(pasz)-1(y)-336(d)1(la)-337(j)1(a\\252\\363)27(wki)1(,)-337(a)-336(c)27(h)1(o)-28(\\242b)28(y)-336(i)]TJ 0 -13.55 Td[(te)-334(p)1(ar\\246)-334(z\\252ot)28(yc)27(h)-333({)-333(z)-1(n)1(a)-56(j)1(dzie)-334(si\\246)-334(p)-27(o)-333(s)-1(oms)-1(i)1(e)-1(d)1(z)-1(ku)1(...)]TJ 27.879 -13.549 Td[(An)28(tk)28(o)28(wie)-334(ostali)-333(sam)-1(i.)]TJ 0 -13.549 Td[(Hank)56(a)-222(p)-27(o)-223(d)1(\\252ugim)-222(w)27(ah)1(aniu)1(,)-222(p)-27(o)-223(wielu)-222(n)1(ie\\261)-1(mia\\252yc)27(h)-221(w)-1(zdy)1(c)27(hac)28(h)-222(s)-1(p)29(yta\\252a)-222(w)-1(r)1(e)-1(sz)-1(-)]TJ -27.879 -13.549 Td[(cie)-1(:)]TJ 27.879 -13.549 Td[({)-333(Znalaz\\252e)-1(\\261)-334(j)1(ak)56(\\241)-334(r)1(ob)-28(ot\\246?)]TJ 0 -13.55 Td[({)-355(Nie,)-356(b)29(y\\252e)-1(m)-355(w)27(e)-355(dw)28(orze)-356(jedn)28(y)1(m)-356(i)-355(d)1(rugi)1(m)-1(,)-355(p)1(rz)-1(ewiady)1(w)27(a\\252em)-356(si\\246)-356(i)-355(u)-355(l)1(udzi,)]TJ -27.879 -13.549 Td[(a)-388(ni)1(e)-389(n)1(alaz)-1(\\252em)-1(.)1(..)-388({)-388(o)-28(d)1(p)-28(o)28(wiedzia\\252)-388(c)-1(ic)28(ho)-388(n)1(ie)-389(p)-27(o)-28(d)1(nosz)-1(\\241c)-388(o)-28(c)-1(z\\363)28(w,)-388(b)-28(o)-388(c)28(ho)-28(\\242)-388(pr)1(a)27(wd)1(a,)]TJ\nET\nendstream\nendobj\n641 0 obj <<\n/Type /Page\n/Contents 642 0 R\n/Resources 640 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n640 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n645 0 obj <<\n/Length 7988      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(198)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(14.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(\\273e)-334(b)28(y\\252)-333(tu)-333(i)-333(o)28(w)-1(d)1(z)-1(i)1(e)-1(,)-333(ale)-334(o)-333(rob)-27(ot\\246)-334(si\\246)-334(n)1(ie)-334(stara\\252,)-333(a)-333(ino)-333(ca\\252)-1(y)-333(ten)-333(cz)-1(as)-334(p)1(rze)-1(w)28(a\\252\\246)-1(sa\\252.)]TJ 27.879 -13.549 Td[(P)28(o\\252o\\273yli)-291(s)-1(i\\246,)-292(d)1(z)-1(ieci)-292(ju)1(\\273)-292(s)-1(p)1(a\\252)-1(y)84(,)-292(u)1(\\252o\\273)-1(on)1(e)-293(w)-292(n)1(ogac)27(h)-291(\\252\\363\\273)-1(k)56(a)-292(d)1(la)-292(c)-1(i)1(e)-1(p)1(\\252a;)-292(c)-1(i)1(e)-1(mno\\261\\242)]TJ -27.879 -13.549 Td[(ogarn)1(\\246)-1(\\252a)-360(i)1(z)-1(b)-27(\\246)-1(,)-359(t)28(ylk)28(o)-360(k)1(s)-1(i\\246\\273yc)-1(o)28(w)28(e)-361(\\261wiat\\252o)-360(la\\252o)-360(si\\246)-360(pr)1(z)-1(ez)-360(z)-1(amarzni\\246te,)-360(roziskrzone)]TJ 0 -13.549 Td[(sz)-1(yb)1(ki)-412(i)-412(przenik)56(a\\252o)-413(wskro\\261)-413(i)1(z)-1(b)28(y)-412(\\261wie)-1(tl)1(is)-1(t)28(y)1(m)-413(pase)-1(m,)-412(nie)-412(z)-1(asn\\246li)-412(jedn)1(ak;)-412(Hank)56(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ewraca\\252)-1(a)-408(si\\246)-409(z)-408(b)-28(oku)-407(na)-408(b)-28(ok)-408(i)-408(medyto)28(w)28(a\\252a:)-408(te)-1(r)1(az)-409(p)-28(o)28(wiedzie\\242)-409(o)-408(tartaku)-407(c)-1(zy)]TJ 0 -13.55 Td[(te\\273)-334(dop)1(iero)-333(jut)1(ro)-333(rano?)]TJ 27.879 -13.549 Td[({)-332(S)1(z)-1(u)1(k)56(a\\252)-1(em,)-332(ale)-332(c)28(ho)-28(\\242b)28(ym)-332(i)-331(dosta\\252;)-332(n)1(ie)-332(p)-27(\\363)-56(jd)1(\\246)-332(z)-1(e)-332(ws)-1(i)1(,)-332(n)1(ie)-332(b)-28(\\246d\\246)-332(si\\246)-332(t\\252uk)1(\\252)-332(p)-28(o)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(,)-333(j)1(ak)-333(te)-1(n)-333(p)1(ies)-334(b)-28(ezpa\\253ski)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(p)-27(o)-334(d)1(\\252ugim)-334(mil)1(c)-1(ze)-1(n)1(iu.)]TJ 27.879 -13.549 Td[({)-247(T)83(o)-248(samo)-248(u)1(m)27(y\\261li\\252am,)-247(tak)-247(s)-1(amo!)-247({)-248(za)28(w)27(o\\252a\\252a)-247(rado\\261ni)1(e)-248({)-248(p)-27(o)-247(c)-1(o)-247(sz)-1(u)1(k)55(a\\242)-248(c)28(hleba)]TJ -27.879 -13.549 Td[(p)-27(o)-273(\\261)-1(wiec)-1(i)1(e)-1(?...)-272(i)-273(w)27(e)-273(ws)-1(i)-273(tr)1(a\\014a)-273(si\\246)-273(niez)-1(gor)1(s)-1(zy)-273(zarob)-27(e)-1(k,)-272(a)-273(to)-273(m)-1(\\252yn)1(arz)-273(m)-1(i)-272(p)-28(o)28(wiedzia\\252,)]TJ 0 -13.549 Td[(\\273e)-290(ma)-289(r)1(ob)-28(ot)1(\\246)-290(l)1(a)-289(cie)-1(b)1(ie)-289(pr)1(z)-1(y)-288(tartak)1(u)-289(c)28(ho)-28(\\242b)28(y)-288(i)-289(o)-28(d)-288(j)1(utr)1(a,)-289(a)-289(p)1(\\252ac)-1(i)-288(dw)28(a)-289(z\\252ote)-289(i)-289(gr)1(os)-1(zy)]TJ 0 -13.55 Td[(pi)1(\\246)-1(tn)1(a\\261)-1(cie.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(z)-1(i\\252a\\261)-334(p)29(yta\\242?)-334({)-333(krzykn)1(\\241\\252)-1(.)]TJ 0 -13.549 Td[({)-227(Ni)1(e)-1(,)-226(p\\252aci\\252am)-1(,)-226(com)-227(m)27(u)-226(b)28(y\\252a)-227(win)1(na,)-226(a)-227(on)-226(sam)-227(p)-28(o)28(wiedzia\\252,)-227(\\273e)-227(m)-1(i)1(a\\252)-227(pr)1(z)-1(ys\\252a\\242)]TJ -27.879 -13.549 Td[(p)-27(o)-334(ciebie;)-333(na)28(w)28(e)-1(t)-333(i)-333(nie)-333(w)-1(sp)-27(om)-1(n)1(ia\\252am)-334({)-333(t\\252umac)-1(zy\\252a)-333(s)-1(i\\246)-333(z)-1(es)-1(tr)1(as)-1(zona.)]TJ 27.879 -13.549 Td[(Nic)-383(ju)1(\\273)-384(n)1(ie)-384(o)-27(drze)-1(k)1(\\252,)-383(a)-383(i)-383(ona)-383(milcza\\252)-1(a;)-382(le)-1(\\273eli)-383(k)28(o\\252o)-383(s)-1(i)1(e)-1(b)1(ie)-384(n)1(ieruc)28(homie)-1(,)-382(b)-28(ez)]TJ -27.879 -13.55 Td[(s\\252)-1(o)28(w)28(a,)-399(se)-1(n)-398(ic)28(h)-398(o)-28(dlecia\\252)-399(zup)-27(e)-1(\\252n)1(ie)-1(,)-398(roil)1(i)-399(co\\261)-399(w)-399(uta)-55(jeniu)-398(g\\252\\246b)-28(ok)1(im)-1(,)-398(cz)-1(ase)-1(m)-399(wzdy-)]TJ 0 -13.549 Td[(c)27(h)1(ali,)-270(to)-270(roztapi)1(ali)-270(du)1(s)-1(z\\246)-271(w)-271(t)1(e)-1(j)-270(g\\252u)1(c)27(hej,)-270(mart)28(w)28(e)-1(j)-270(cisz)-1(y)-270({)-270(psy)-270(jak)1(ie)-1(\\261)-270(nasz)-1(cz)-1(ekiw)28(a\\252y)]TJ 0 -13.549 Td[(w)28(e)-322(ws)-1(i,)-321(d)1(ale)-1(k)28(o,)-321(d)1(ale)-1(k)28(o)-321(i)-321(s)-1(\\252ab)-27(o,)-321(k)28(ogut)28(y)-321(bi)1(\\252y)-322(skr)1(z)-1(yd)1(\\252am)-1(i)-321(i)-321(pi)1(a\\252y)-322(j)1(u\\273)-322(z)-321(p)-28(\\363\\252n)1(o)-28(c)27(k)56(a,)-321(a)]TJ 0 -13.549 Td[(sz)-1(u)1(m)-334(c)-1(i)1(c)27(h)28(y)-333(j)1(akb)28(y)-333(wiatru)-333(zah)28(u)1(c)-1(za\\252)-334(n)1(ad)-333(c)27(h)1(a\\252)-1(u)1(p\\241.)]TJ 27.879 -13.549 Td[({)-333(\\221p)1(is)-1(z)-333(to?)-334({)-333(pr)1(z)-1(ysun)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(nieco)-334(b)1(li\\273e)-1(j)1(.)]TJ 0 -13.55 Td[({)-333(Kiej)-333(\\261)-1(p)1(ik)-333(mi\\246)-334(o)-28(d)1(s)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[(Le\\273)-1(a\\252)-356(w)-1(znak)1(,)-356(z)-357(r\\246k)55(ami)-356(p)-27(o)-28(d)-356(g\\252o)28(w)27(\\241,)-356(tak)-356(bl)1(is)-1(k)28(o)-356(p)1(rz)-1(y)-356(n)1(iej,)-356(a)-357(t)1(ak)-357(d)1(alek)28(o)-357(se)-1(r)1(-)]TJ -27.879 -13.549 Td[(ce)-1(m,)-350(dalek)28(o)-350(m)27(y)1(\\261)-1(lami)-350({)-350(le\\273)-1(a\\252)-350(ni)1(e)-1(ru)1(c)27(h)1(om)27(y)84(,)-350(b)-28(ez)-351(o)-28(d)1(dec)27(h)28(u)-349(pr)1(a)27(wie,)-350(b)-27(e)-1(z)-350(pami\\246)-1(ci,)-350(b)-27(o)]TJ 0 -13.549 Td[(Jagu)1(s)-1(in)1(e)-272(o)-27(c)-1(zy)-271(zno)28(wu)-271(wyj)1(rza\\252)-1(y)-270(z)-272(ciem)-1(n)1(o\\261)-1(ci)-271(i)-270(m)-1(o)-27(drzy\\252y)-271(si\\246)-271(w)-271(ks)-1(i)1(\\246)-1(\\273yco)27(w)28(e)-1(j)-270(p)-27(o\\261)-1(wia-)]TJ 0 -13.549 Td[(cie)-1(.)1(..)]TJ 27.879 -13.55 Td[(A)-405(Hank)56(a)-405(pr)1(z)-1(ysun)1(\\246)-1(\\252a)-405(si\\246)-406(b)1(li\\273e)-1(j)-404(jes)-1(zc)-1(ze)-1(,)-405(p)1(rzyw)27(ar)1(\\252a)-406(gor)1(\\241c)-1(\\241)-405(t)28(w)28(arz)-1(\\241)-405(d)1(o)-406(j)1(e)-1(go)]TJ -27.879 -13.549 Td[(ramienia,)-294(p)1(rzyw)27(ar)1(\\252a)-295(se)-1(r)1(c)-1(em)-295(ca\\252)-1(y)1(m)-295({)-294(Nie)-1(,)-294(j)1(u\\273)-295(w)-294(niej)-294(ni)1(e)-295(b)28(y\\252o)-294(p)-28(o)-27(dejrze\\253)-294(\\273)-1(ad)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(ni)-424(\\273)-1(al)1(\\363)27(w,)-425(n)1(i)-425(gory)1(c)-1(zy)83(,)-424(a)-425(ino)-425(t)28(y)1(m)-426(mi\\252o)28(w)27(an)1(iem)-426(se)-1(r)1(dec)-1(zn)28(ym,)-425(t\\241)-425(l)1(ub)-27(o\\261)-1(ci\\241)-425(d)1(usz)-1(n)1(\\241,)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)1(\\241)-334(d)1(uf)1(no\\261c)-1(i)-333(i)-333(o)-28(dd)1(ani)1(a)-334(si\\246,)-334(cisn\\246\\252a)-334(si\\246)-334(d)1(o)-334(j)1(e)-1(go)-333(se)-1(rca.)]TJ 27.879 -13.549 Td[({)-326(Jan)28(to\\261,)-326(p)-27(\\363)-28(d)1(z)-1(ies)-1(z)-326(to)-326(j)1(utro)-326(d)1(o)-326(rob)-27(ot)28(y?)-326({)-326(\\261)-1(p)28(y)1(ta\\252a)-326(dr\\273\\241co,)-326(b)28(yle)-326(in)1(o)-326(c)-1(o)-326(r)1(z)-1(ec)-1(,)]TJ -27.879 -13.55 Td[(b)28(y\\252e)-333(ino)-333(us\\252ysz)-1(e\\242)-334(g\\252os)-334(jego)-333(i)-334(zgw)28(arz)-1(y)1(\\242)-334(s)-1(i)1(\\246)-334(z)-334(j)1(e)-1(go)-333(du)1(s)-1(z\\241.)]TJ 27.879 -13.549 Td[({)-281(Mo\\273e)-281(i)-281(p)-27(\\363)-56(jd)1(\\246)-1(,)-280(ju)1(\\261)-1(ci,)-281(tr)1(z)-1(eba)-281(i)1(c)27(h,)-280(trze)-1(b)1(a...)-281({)-281(o)-27(dp)-27(o)28(w)-1(i)1(ada\\252)-281(ni)1(e)-282(m)28(y\\261l\\241c)-282(o)-281(t)28(y)1(m)-1(.)]TJ 0 -13.549 Td[({)-290(Id\\271,)-290(Jan)28(to\\261,)-290(id\\271...)-290({)-290(p)1(ros)-1(i)1(\\252a)-291(mi\\246tk)28(o)-290(i)-290(z)-1(ar)1(z)-1(u)1(c)-1(i\\252a)-290(m)27(u)-289(r\\246k)28(\\246)-291(na)-290(sz)-1(yj)1(\\246)-291(i)-290(sz)-1(u)1(k)56(a\\252)-1(a)]TJ -27.879 -13.549 Td[(gor\\241cymi)-333(ustam)-1(i)-333(j)1(e)-1(go)-333(ust)-333(le)-1(d)1(wie)-334(d)1(ys)-1(z\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Ale)-466(on)-465(n)1(ie)-466(drgn)1(\\241\\252)-466(n)1(a)27(w)28(et,)-466(n)1(ie)-466(o)-28(d)1(p)-28(o)28(wiedzia\\252,)-466(n)1(ie)-466(p)-27(o)-28(c)-1(zu\\252)-465(jej)-465(u\\261c)-1(isku)1(,)-466(n)1(ie)]TJ -27.879 -13.549 Td[(wiedzia\\252)-406(o)-406(niej,)-405(s)-1(ze)-1(r)1(ok)28(o)-406(ot)27(w)28(art)28(ymi)-406(o)-27(c)-1(zam)-1(i)-405(patrzy\\252)-406(w)-406(tam)27(t)1(e)-1(j)-405(o)-28(c)-1(zy)83(,)-405(w)-406(Jagusine)]TJ 0 -13.55 Td[(mo)-28(dr)1(e)-334(o)-28(cz)-1(y)84(.)]TJ\nET\nendstream\nendobj\n644 0 obj <<\n/Type /Page\n/Contents 645 0 R\n/Resources 643 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 630 0 R\n>> endobj\n643 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n648 0 obj <<\n/Length 6796      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(15)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-260(dob)1(rym)-260(ju\\273)-260(dn)1(iu,)-260(p)-27(o)-260(\\261)-1(n)1(iadan)1(iu,)-260(m\\252ynar)1(z)-261(p)1(rz)-1(y)1(w)-1(i)1(\\363)-28(d\\252)-260(An)28(tk)56(a)-260(na)-260(rob)-27(ot\\246;)-260(os)-1(ta)28(wi\\252)]TJ 0 -13.549 Td[(go)-455(n)1(a)-455(za)-56(j)1(e)-1(\\271dzie)-455(w\\261)-1(r)1(\\363)-28(d)-454(klo)-28(c\\363)28(w)-455(zw)27(alon)29(yc)27(h)-454(na)-454(wie)-1(l)1(kie)-455(ku)1(p)28(y)84(,)-455(a)-454(s)-1(am)-455(p)-27(osz)-1(ed\\252)-455(d)1(o)]TJ 0 -13.549 Td[(Mateusza)-1(,)-261(kt\\363ren)-261(akurat)1(nie)-262(pr)1(z)-1(yr)1(yc)27(h)29(to)27(wyw)28(a\\252)-262(dr)1(z)-1(ew)27(o)-262(n)1(a)-262(tartak)1(u)-262(i)-262(p)1(usz)-1(cza\\252)-262(pi\\252y)84(,)]TJ 0 -13.549 Td[(p)-27(ogada\\252)-333(z)-334(nim)-333(c)-1(osik)-333(i)-333(z)-1(a)28(w)28(o\\252a\\252:)]TJ 27.879 -13.55 Td[({)-416(R\\363b)-27(c)-1(i)1(e)-416(tu)-416(sobi)1(e)-1(,)-415(a)-416(w)28(e)-416(w)-1(sz)-1(y)1(s)-1(tk)1(im)-416(s)-1(\\252u)1(c)27(ha)-55(jcie)-416(Mateusz)-1(a,)-415(on)-415(tu)-415(z)-1(a)-415(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(rz\\241dzi)-333({)-334(i)-333(p)-27(os)-1(zed\\252)-333(z)-1(araz,)-333(b)-27(o)-334(p)1(rzykry)84(,)-333(pr)1(z)-1(ejm)27(u)1(j\\241cy)-333(z)-1(i)1(\\241b)-333(c)-1(i\\241)-27(gn\\241\\252)-333(o)-28(d)-333(rze)-1(k)1(i.)]TJ 27.879 -13.549 Td[({)-273(P)28(ew)-1(n)1(ie)-273(top)-28(or)1(a)-273(nie)-273(m)-1(acie?)-274({)-273(zagadn)1(\\241\\252)-273(Mateusz)-274(sc)27(ho)-27(dz\\241c)-274(n)1(a)-274(d)1(\\363\\252)-273(i)-273(wita)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(n)1(im)-334(p)1(rz)-1(y)1(ja\\271nie.)]TJ 27.879 -13.549 Td[({)-333(Z)-334(siekier\\241)-333(przysz)-1(ed\\252em)-1(,)-333(b)-27(om)-334(n)1(ie)-334(wiedzia\\252.)]TJ 0 -13.549 Td[({)-365(T)83(o)-365(jakb)29(y\\261)-1(cie)-366(si\\246)-365(z)-366(z\\246)-1(b)1(am)-1(i)-365(wyb)1(rali,)-365(d)1(rze)-1(w)28(o)-365(przem)-1(arz\\252o)-365(i)-365(kru)1(s)-1(zy)-365(s)-1(i)1(\\246)-366(kiej)]TJ -27.879 -13.55 Td[(sz)-1(k\\252o,)-305(n)1(ic)-305(b)28(y\\261c)-1(ie)-305(s)-1(i)1(e)-1(ki)1(e)-1(r\\241)-305(n)1(ie)-305(z)-1(rob)1(ili,)-304(nie)-305(c)27(h)28(y)1(c)-1(i)-305(al)1(b)-28(o)-305(t)28(yla)-305(co)-305(z)-1(\\246b)-27(e)-1(m.)-305(P)28(o\\273ycz)-1(\\246)-305(w)27(am)]TJ 0 -13.549 Td[(na)-262(dzisia)-56(j)-262(top)-27(ora,)-262(trza)-263(go)-263(i)1(no)-263(p)1(rzy)28(os)-1(tr)1(z)-1(y\\242,)-262(a)-263(na)-262(p\\252ask)-263(wi\\246c)-1(ej..)1(.)-263(wid)1(z)-1(icie...)-262(B)-1(ar)1(te)-1(k)1(,)]TJ 0 -13.549 Td[(w)28(e)-1(\\271c)-1(ie)-341(n)1(o)-341(si\\246)-341(d)1(o)-341(p)1(ary)-340(z)-341(B)-1(or)1(yn\\241)-340(i)-340(te)-1(go)-340(d\\241b)1(k)55(a)-340(ryc)28(h\\252o)-340(w)-1(y)1(ryc)28(h)28(tuj)1(c)-1(ie,)-340(b)-28(o)-340(tam)-341(z)-341(p)1(i\\252)]TJ 0 -13.549 Td[(ze)-1(j)1(dzie)-334(ni)1(e)-1(d)1(\\252)-1(u)1(go.)]TJ 27.879 -13.549 Td[(Zz)-1(a)-329(olbr)1(z)-1(ymiego)-330(klo)-27(c)-1(a,)-329(le)-1(\\273\\241c)-1(ego)-330(w)-330(\\261niegu,)-329(w)-1(y)1(prosto)28(w)27(a\\252)-330(si\\246)-330(suc)27(h)29(y)83(,)-330(wysoki)]TJ -27.879 -13.55 Td[(a)-375(p)1(rzygarb)1(ion)28(y)-374(c)27(h\\252op)-374(z)-375(fa)-55(jk)56(\\241)-375(w)-375(z\\246)-1(b)1(ac)27(h,)-374(w)-375(bar)1(anicy)-374(s)-1(iw)28(e)-1(j)-374(n)1(a)-375(g\\252o)28(w)-1(i)1(e)-1(,)-374(w)-375(\\273)-1(\\363\\252t)28(ym)]TJ 0 -13.549 Td[(k)28(o\\273usz)-1(ku)1(,)-224(w)-224(tr)1(e)-1(p)1(ac)27(h)-223(i)-224(cz)-1(erw)28(on)28(yc)27(h)-223(pasiat)28(yc)28(h)-224(p)-27(ortk)56(ac)27(h)1(,)-224(wspar\\252)-224(si\\246)-224(na)-223(b\\252ysz)-1(cz)-1(\\241cym)]TJ 0 -13.549 Td[(top)-27(orze)-1(,)-333(strzykn\\241\\252)-333(pr)1(z)-1(ez)-334(z\\246)-1(b)28(y)-333(i)-333(r)1(z)-1(ek\\252)-334(w)28(e)-1(so\\252o:)]TJ 27.879 -13.549 Td[({)-389(Do)-389(mn)1(ie)-389(to)-389(s)-1(i)1(\\246)-390(p)1(rzy\\273)-1(eni)1(c)-1(ie,)-389(n)1(ie)-389(b)-28(\\363)-55(jcie)-389(s)-1(i)1(\\246)-1(,)-389(zrob)1(im)27(y)-388(tak)56(\\241)-389(par)1(\\246)-1(,)-388(c)-1(o)-389(to)-388(w)]TJ -27.879 -13.549 Td[(zgo)-28(dzie)-334(\\273yje,)-333(b)-28(ez)-334(wrzas)-1(k)28(\\363)28(w)-333(i)-333(bij)1(at)28(yk.)]TJ 27.879 -13.55 Td[({)-333(Sieln)28(y)-333(las!)-333(Drze)-1(w)28(a)-333(kiej)-333(\\261)-1(wiec)-1(e!)]TJ 0 -13.549 Td[({)-288(Ale)-289(s\\246)-1(k)56(ate)-289(j)1(uc)28(h)28(y)83(,)-288(\\273e)-289(n)1(ie)-1(c)28(h)-288(B)-1(\\363g)-288(b)1(roni)1(,)-288(jakb)28(y)-288(k)1(rz)-1(emie)-1(n)1(iem)-289(nab)1(ij)1(ane,)-289(r)1(z)-1(ad)1(-)]TJ -27.879 -13.549 Td[(ki)-429(ten)-429(dzie)-1(\\253)1(,)-429(w)-430(kt\\363r)1(ym)-430(top)-27(\\363r)-429(s)-1(i)1(\\246)-430(nie)-429(w)-1(y)1(s)-1(zc)-1(ze)-1(r)1(bi.)-429(Ino)-429(sw)27(o)-55(jego)-430(n)1(ie)-430(os)-1(t)1(rz)-1(cie)-430(d)1(o)]TJ 0 -13.549 Td[(suc)27(h)1(a)-314(i)-314(g\\252ad)1(k)55(a,)-313(trze)-1(b)1(a)-314(z)-314(w\\252)-1(ose)-1(m)-314(ci\\241)-28(gn)1(\\241\\242)-315(p)-27(o)-314(k)56(amieniu)1(,)-314(w)-314(jedn)1(\\241)-314(stron\\246,)-314(t)1(o)-314(os)-1(tr)1(z)-1(e)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(iejsz)-1(e,)-354(z)-355(\\273e)-1(l)1(az)-1(em)-355(to)-354(j)1(ak)-354(i)-354(z)-355(d)1(ru)1(gim)-355(cz\\252)-1(o)28(wiekiem)-1(,)-354(u)1(tra\\014)1(s)-1(z,)-354(w)-354(c)-1(o)-354(lu)1(bi,)-353(a)-354(p)-28(o-)]TJ 0 -13.55 Td[(wiedzie)-1(sz)-274(ki)1(e)-1(j)-273(tego)-273(pies)-1(k)56(a)-273(na)-273(p)-27(os)-1(tr)1(onec)-1(zku,)-273(gd)1(z)-1(ie)-273(ino)-273(ci)-273(s)-1(i\\246)-273(u)28(widzi;)-273(tacz)-1(aln)1(ik)-273(s)-1(t)1(oi)]TJ 0 -13.549 Td[(w)-334(m\\252yn)1(ic)-1(y)-333(p)-27(o)-28(d)-333(j)1(aglakiem...)]TJ 27.879 -13.549 Td[(Mo\\273e)-370(w)-370(jak)1(i\\261)-370(pacierz)-370(An)28(tek)-370(j)1(u\\273)-370(stan\\241\\252)-369(do)-370(r)1(ob)-28(ot)28(y)-369(nap)1(rze)-1(ciw)-370(Bartk)56(a)-370(i)-369(j)1(\\241\\252)]TJ -27.879 -13.549 Td[(o)-28(d)1(w)27(ala\\242)-380(sz)-1(czap)28(y)-380(a)-379(o)-28(c)-1(i)1(e)-1(syw)28(a\\242)-380(drze)-1(w)28(o)-380(wzd\\252u\\273,)-379(do)-380(ostrego)-380(k)56(an)28(tu)1(,)-380(w)28(e)-1(d)1(le)-380(Bartk)28(o-)]TJ 0 -13.549 Td[(w)28(e)-1(go)-290(nasmole)-1(n)1(ia,)-290(ni)1(e)-291(o)-28(d)1(z)-1(yw)28(a\\252)-290(s)-1(i\\246)-290(jeno,)-290(b)-27(o)-290(go)-290(m)-1(o)-28(cno)-290(d)1(otkn\\246\\252o,)-290(\\273)-1(e)-290(taki)-290(Mat)1(e)-1(u)1(s)-1(z,)]TJ 0 -13.55 Td[(a)-307(prze)-1(w)28(o)-28(d)1(z)-1(i)-307(jem)27(u)1(,)-307(B)-1(or)1(ynie)-308({)-307(ale)-308(k)1(ie)-1(j)-307(b)1(rzuc)27(h)-307(b)1(\\252\\241dzi)-308({)-307(k)28(os)-1(zul)1(a)-308(n)1(ie)-308(rz\\241dzi,)-307(to)-308(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(splu)28(w)28(a\\252)-333(w)-334(gar\\261c)-1(i)1(e)-334(i)-333(przyp)1(ina\\252)-333(s)-1(i)1(\\246)-334(z)-1(e)-333(z)-1(\\252o\\261c)-1(i\\241)-333(do)-333(top)-27(ora.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(zgorze)-1(j)-332(w)27(am)-334(i)1(dzie)-1(,)-333(n)1(ie)-1(zgorze)-1(j)1(!)-333({)-334(zau)28(w)28(a\\273)-1(y)1(\\252)-334(Bartek.)]TJ 330.353 -29.888 Td[(199)]TJ\nET\nendstream\nendobj\n647 0 obj <<\n/Type /Page\n/Contents 648 0 R\n/Resources 646 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n646 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n652 0 obj <<\n/Length 9734      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(200)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ju)1(\\261)-1(ci,)-391(\\273e)-392(p)-27(orad)1(z)-1(i\\242)-391(p)-28(or)1(adzi\\252,)-391(ni)1(e)-1(d)1(z)-1(iwn)1(a)-391(m)27(u)-391(b)29(y\\252a)-391(obr\\363b)1(k)56(a)-392(d)1(rze)-1(w)28(a,)-391(a)-391(i)-391(p)-27(o-)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(leni)1(e)-368(te\\273)-367(m)-1(i)1(a\\252)-367(niez)-1(gor)1(s)-1(ze)-1(,)-366(t)28(ylk)28(o)-367(\\273e)-367(rob)-27(ota)-367(b)28(y\\252a)-367(ci\\246\\273)-1(k)56(a)-367(d)1(la)-367(ni)1(e)-1(w\\252o\\273)-1(on)1(e)-1(go,)-366(to)]TJ 0 -13.549 Td[(si\\246)-334(ry)1(c)27(h\\252o)-333(z)-1(zia)-55(ja\\252)-333(i)-333(z)-1(ap)-27(o)-28(c)-1(i)1(\\252,)-334(a\\273)-333(k)28(o\\273)-1(u)1(c)27(h)-333(sc)-1(iepn)1(\\241\\252)-334(z)-333(s)-1(iebi)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-316(m)-1(r)1(\\363z)-317(b)28(y\\252)-316(t\\246gi,)-316(ni)1(e)-317(fol)1(go)27(w)28(a\\252,)-316(a)-317(\\273e)-317(to)-316(w)28(c)-1(i\\241\\273)-316(trza)-317(b)29(y\\252o)-316(s)-1(ta\\242)-317(i)-316(gr)1(z)-1(eba\\242)-316(s)-1(i\\246)-316(w)]TJ -27.879 -13.549 Td[(\\261niegu,)-306(to)-306(r\\246c)-1(e)-306(grabi)1(a\\252y)-307(i)-306(p)1(rzywiera\\252y)-306(do)-306(s)-1(telisk)56(a)-306(i)-307(czas)-307(s)-1(i)1(\\246)-307(tak)-306(d\\252u)1(\\273)-1(y\\252,)-306(\\273e)-307(ledwie)]TJ 0 -13.55 Td[(si\\246)-334(do)-27(c)-1(ze)-1(k)56(a\\252)-333(p)-28(o\\252u)1(dni)1(a.)]TJ 27.879 -13.549 Td[(Ale)-447(w)-448(ob)1(iad)-447(p)1(rze)-1(gry)1(z)-1(\\252)-447(in)1(o)-448(suc)28(hego)-447(c)27(hl)1(e)-1(b)1(a,)-447(p)-28(op)1(i\\252)-447(w)27(o)-27(d\\241)-447(pr)1(os)-1(to)-447(z)-447(rz)-1(eki)-447(i)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-286(p)-27(o)-28(d)-286(dac)28(h,)-286(do)-286(m\\252)-1(y)1(nicy)-286(nie)-287(p)-27(osz)-1(ed\\252)-286(z)-287(dru)1(gimi,)-286(ba\\252)-286(s)-1(i\\246)-286(tam)-287(natk)1(n\\241\\242)-287(n)1(a)-287(zna-)]TJ 0 -13.549 Td[(jomk)28(\\363)28(w,)-260(co)-259(b)28(yli)-259(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\271li)-259(do)-259(m)-1(\\252y)1(na)-259(i)-260(cz)-1(ek)56(ali)-259(s)-1(w)28(o)-56(j)1(e)-1(j)-259(k)28(ol)1(e)-1(i.)-259(Jes)-1(zcz)-1(e)-260(b)28(y)-259(wyd)1(z)-1(iwial)1(i)]TJ 0 -13.549 Td[(nad)-274(n)1(im)-1(,)-274(a)-275(cies)-1(zyli)-274(s)-1(i\\246)-275(mi\\246dzy)-275(sob\\241)-275(z)-275(j)1(e)-1(go)-274(p)-28(on)1(i\\273)-1(eni)1(a)-275(i)-275(b)1(iedy)84(,)-275(n)1(ie)-1(d)1(o)-28(cz)-1(ek)55(an)1(ie)-275(ic)28(h!..)1(.)]TJ 0 -13.549 Td[(Osta\\252)-259(na)-259(mrozie,)-259(pr)1(z)-1(ysiad)1(\\252)-259(p)-28(o)-28(d)-258(m\\252ynic\\241,)-259(gr)1(yz)-1(\\252)-259(c)28(hleb)-259(i)-258(w)27(o)-28(d)1(z)-1(i)1(\\252)-260(o)-27(c)-1(zam)-1(i)-258(p)-28(o)-259(t)1(artaku)1(,)]TJ 0 -13.55 Td[(kt\\363r)1(e)-1(n)-342(sta\\252)-342(nad)-342(sam)-1(\\241)-342(rzek)55(\\241,)-342(w)28(\\246)-1(g\\252em)-343(in)1(o)-342(przyw)28(art)28(y)-342(do)-342(sz)-1(cz)-1(yt)1(u)-342(m)-1(\\252yn)1(a,)-342(\\273)-1(e)-342(w)27(o)-28(d)1(a)]TJ 0 -13.549 Td[(z)-334(cz)-1(terec)27(h)-333(k)28(\\363\\252)-333(w)27(al)1(i\\252a)-334(p)-27(o)-28(d)-333(n)1(iego)-334(gr)1(ub)28(ym)-333(z)-1(i)1(e)-1(lon)29(ym)-334(w)28(a\\252)-1(em)-334(i)-333(p)-27(oru)1(s)-1(za\\252a)-334(p)1(i\\252y)83(.)]TJ 27.879 -13.549 Td[(Ale)-362(i)-362(n)1(ie)-362(w)-1(y)1(tc)27(hn)1(\\241\\252)-362(jes)-1(zcz)-1(e)-362(c)-1(a\\252ki)1(e)-1(m)-362(ni)-361(o)-28(dp)-27(o)-28(cz)-1(\\241\\252)-362(j)1(ak)-362(si\\246)-362(patrzy)83(,)-361(a)-362(ju)1(\\273)-363(M)1(a-)]TJ -27.879 -13.549 Td[(teusz)-1(,)-333(wraca)-56(j)1(\\241c)-334(o)-28(d)-333(m\\252ynar)1(z)-1(a)-333(z)-334(ob)1(iadu)1(,)-333(z)-334(dalek)56(a)-334(k)1(rz)-1(y)1(c)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(Wyc)27(h)1(o)-28(d)1(\\271)-1(!)-333(Wyc)28(ho)-28(d)1(\\271)-1(!)]TJ 0 -13.55 Td[(T)83(o)-397(c)27(h)1(c)-1(\\241c)-397(nie)-397(c)27(h)1(c)-1(\\241c,)-397(p)-28(ost\\246kuj)1(\\241c)-398(n)1(a)-398(k)1(r\\363tki)1(e)-398(pr)1(z)-1(y)1(p)-28(o\\252ud)1(ni)1(e)-1(,)-397(a)-397(tr)1(z)-1(a)-397(s)-1(i)1(\\246)-398(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(d\\271wiga\\242)-334(i)-333(d)1(o)-334(r)1(ob)-28(ot)28(y)-333(s)-1(t)1(a)27(w)28(a\\242)-334(z)-334(d)1(ru)1(gim)-1(i)1(.)]TJ 27.879 -13.549 Td[(A)-333(ruc)28(hali)-333(si\\246)-334(\\273w)27(a)28(w)28(o,)-333(b)-28(o)-333(mr\\363z)-334(p)1(ra\\273)-1(y)1(\\252)-334(i)-333(p)-27(ogania\\252)-333(galan)28(to.)]TJ 0 -13.549 Td[(M\\252yn)-386(tur)1(k)28(ota\\252)-388(w)28(c)-1(i)1(\\241\\273)-1(,)-387(a)-387(w)28(o)-28(da)-387(sp)-28(o)-27(d)-387(k)28(\\363\\252,)-387(obro\\261ni)1(\\246)-1(t)28(yc)28(h)-387(w)-387(lo)-28(dy)84(,)-387(kieb)28(y)-387(w)-387(te)]TJ -27.879 -13.549 Td[(k\\252aki)-273(z)-1(ielon)1(e)-275(i)-273(z)-1(wite)-274(w)-274(d\\252u)1(gie)-274(k)28(o\\252tun)28(y)84(,)-274(w)28(ali\\252a)-274(z)-274(krzyki)1(e)-1(m)-274(p)-27(o)-28(d)-273(tartak,)-273(pi\\252y)-273(trze)-1(sz)-1(-)]TJ 0 -13.55 Td[(cz)-1(a\\252y)-378(b)-27(e)-1(zustan)1(nie,)-378(jedn)1(ak)28(o,)-378(j)1(ak)28(ob)28(y)-378(kto)-378(szk\\252o)-378(gryz\\252,)-378(i)-378(p)1(lu\\252y)-378(\\273\\363\\252t)28(ymi)-378(tro)-27(c)-1(in)1(am)-1(i)1(.)]TJ 0 -13.549 Td[(Mateusz)-258(za\\261)-258(u)28(wij)1(a\\252)-258(si\\246)-258(n)1(ies)-1(tr)1(udze)-1(n)1(ie,)-257(ryc)28(h)28(to)28(w)27(a\\252)-257(klo)-28(ce)-1(,)-257(zasta)27(wia\\252)-257(w)28(o)-28(d\\246,)-257(pu)1(s)-1(zc)-1(za\\252,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(bij)1(a\\252)-322(d)1(rze)-1(w)28(o)-321(klamrami)-321(do)-321(b)1(urt)1(,)-321(roz)-1(mierza\\252,)-321(a)-321(w)27(ci\\241\\273)-322(h)29(uk)56(a\\252)-321(i)-321(p)-28(ogan)1(ia\\252)-321(lud)1(z)-1(i)1(,)]TJ 0 -13.549 Td[(i)-284(ws)-1(z\\246dzie)-285(go)-284(b)28(y)1(\\252)-1(o)-284(p)-27(e)-1(\\252n)1(o,)-284(z)-1(wij)1(a\\252)-284(s)-1(i\\246)-284(jak)28(o)-284(ten)-284(sz)-1(cz)-1(y)1(gie)-1(\\252)-284(p)1(rz)-1(y)-283(k)28(onopi)1(ac)27(h,)-283(ino)-284(miga\\252)]TJ 0 -13.549 Td[(jego)-371(cz)-1(erw)28(on)28(y)-371(w)-371(z)-1(i)1(e)-1(lon)1(e)-372(p)1(as)-1(y)-370(s)-1(p)-27(e)-1(n)1(c)-1(erek)-371(i)-371(siw)28(a)-371(baran)1(ica)-371(p)-28(o)-371(p)-27(o)-28(d)1(je\\271)-1(d)1(z)-1(ie,)-371(n)1(a)-371(p)-28(o-)]TJ 0 -13.55 Td[(dept)1(an)28(yc)27(h)1(,)-381(z)-1(a)28(wi\\363r)1(z)-1(on)28(y)1(c)27(h)-381(\\261niegac)27(h)1(,)-381(gdzie)-381(obrab)1(iali)-381(d)1(rze)-1(w)28(o,)-381(to)-381(do)-381(m\\252yn)1(a)-381(bieg\\252,)]TJ 0 -13.549 Td[(to)-414(d)1(o)-414(lu)1(dzi)-414(zagadyw)28(a\\252,)-414(rozrz\\241dza\\252,)-414(n)1(agania\\252,)-413(\\261)-1(mia\\252)-414(si\\246)-1(,)-413(pr)1(z)-1(ekpi)1(nki)-413(p)-28(o)28(wiad)1(a\\252)-414(i)]TJ 0 -13.549 Td[(p)-27(ogw)-1(i)1(z)-1(d)1(yw)27(a\\252,)-424(a)-424(s)-1(i)1(arc)-1(zy\\261c)-1(i)1(e)-425(rob)1(i\\252,)-424(ale)-425(na)-55(jcz)-1(\\246\\261)-1(ciej)-424(widn)29(y)-425(b)29(y\\252)-425(n)1(a)-425(p)-27(omo\\261)-1(cie)-425(p)1(rzy)]TJ 0 -13.549 Td[(pi)1(\\252ac)27(h,)-355(ile)-356(\\273)-1(e)-356(tartak)-355(b)-28(ok)28(o)28(wyc)28(h)-356(\\261c)-1(ian)-355(ni)1(e)-357(mia\\252)-356(i)-356(\\261wie)-1(ci\\252)-356(n)1(a)-356(pr)1(z)-1(es)-1(tr)1(z)-1(a\\252,)-356(a)-356(wznosi\\252)]TJ 0 -13.549 Td[(si\\246)-306(nad)-304(rze)-1(k)56(\\241)-305(do\\261\\242)-306(wys)-1(ok)28(o)-305(na)-305(cz)-1(terec)27(h)-305(t\\246gic)28(h)-305(s)-1(\\252u)1(pac)27(h)1(,)-305(o)-306(k)1(t\\363re)-306(tak)-305(b)1(i\\252a)-305(w)27(o)-28(d)1(a,)-305(\\273)-1(e)]TJ 0 -13.55 Td[(trzcino)28(wy)-382(dac)28(h,)-382(ws)-1(p)1(art)28(y)-382(in)1(o)-383(n)1(a)-382(s)-1(zc)-1(zytac)27(h)1(,)-382(dr)1(yga\\252)-383(n)1(iekiedy)84(,)-382(nib)28(y)-382(t)1(a)-383(wiec)27(h)1(a)-383(n)1(a)]TJ 0 -13.549 Td[(wietrze)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sp)1(ra)28(w)-1(n)29(y)-333(juc)28(ha!)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(An)28(tek)-333(z)-334(uznan)1(ie)-1(m,)-333(ale)-334(n)1(ie)-334(b)-27(e)-1(z)-333(z)-1(\\252o\\261c)-1(i.)]TJ 0 -13.549 Td[({)-333(Ma\\252o)-333(to)-334(b)1(ierz)-1(e?)-334({)-333(o)-28(d)1(m)-1(r)1(ukn)1(\\241\\252)-334(Bartek.)]TJ 0 -13.549 Td[(Zabi)1(li)-297(r)1(\\246)-1(ce)-297(o)-297(ramion)1(a,)-297(b)-27(o)-297(skrzyt)28(w)27(a)-296(b)28(y\\252a)-297(coraz)-297(t\\246\\273)-1(sz)-1(a,)-296(i)-296(robi)1(li)-297(w)-297(milcze)-1(n)1(iu.)]TJ 0 -13.549 Td[(Naro)-27(du)-284(b)28(y\\252o)-284(do\\261\\242)-285(przy)-284(rob)-27(o)-28(c)-1(i)1(e)-1(,)-284(in)1(o)-285(\\273e)-285(na)-285(p)-27(ogw)28(ar\\246)-285(cz)-1(asu)-284(nie)-285(b)28(y)1(\\252o)-285({)-285(d)1(w)27(\\363)-27(c)27(h)]TJ -27.879 -13.55 Td[(w)28(aro)28(w)27(a\\252o)-281(przy)-281(pi\\252ac)28(h,)-281(z)-1(w)28(ala\\252o)-282(p)-27(orzni)1(\\246)-1(te)-282(k)1(lo)-28(ce)-282(na)-281(z)-1(iem,)-282(a)-281(w)27(ci\\241)-28(ga\\252o)-281(no)28(w)28(e)-1(,)-281(dw)28(\\363)-28(c)27(h)]TJ 0 -13.549 Td[(za\\261)-248(dru)1(gic)27(h)-246(roz)-1(cin)1(a\\252)-1(o)-247(n)1(ie)-1(d)1(orzni\\246te)-248(k)28(o\\253ce)-248(i)-247(uk)1(\\252ada\\252o)-248(t)1(arc)-1(i)1(c)-1(e)-248(w)-247(s)-1(zyc)27(h)29(t)28(y)-248(wielgac)27(h)1(ne)]TJ 0 -13.549 Td[(alb)-27(o)-234(co)-234(cie)-1(\\253)1(s)-1(ze)-234(i)-234(mokrzejsz)-1(e)-234(c)27(h)1(roni)1(li)-234(p)1(rze)-1(d)-233(mroze)-1(m)-234(p)-27(o)-28(d)-233(s)-1(zopami,)-233(a)-234(jes)-1(zc)-1(ze)-234(dw)28(\\363)-28(c)27(h)]TJ 0 -13.549 Td[(ob\\252u)1(p)28(yw)28(a\\252o)-251(ze)-251(sk)28(\\363ry)-250(d)1(\\246)-1(b)29(y)83(,)-250(j)1(o)-28(d\\252y)-250(i)-250(\\261wierki,)-250(\\273e)-251(cz)-1(\\246sto)-251(g\\246sto)-250(B)-1(ar)1(te)-1(k)-250(kr)1(z)-1(y)1(k)55(a\\252)-250(d)1(o)-251(n)1(ic)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(ekp)1(iw)27(a)-55(j\\241c:)]TJ 27.879 -13.55 Td[({)-333(T)83(e)-1(,)-333(d)1(rzyki)-333(z)-1(ap)-27(o)28(wie)-1(tr)1(z)-1(on)1(e)-1(,)-333(ki)1(e)-1(j)-333(si\\246)-334(wyzw)27(ol)1(ita)-333(na)-333(h)28(ycl\\363)28(w)-1(!)]TJ 0 -13.549 Td[(\\231li)-372(b)28(yli)-372(n)1(a)-373(to,)-372(b)-28(o)-27(\\242)-373(nie)-373(p)1(s)-1(\\363)28(w)-373(\\252u)1(pil)1(i)-373(ze)-373(s)-1(k)28(\\363r)1(y)83(,)-372(ale)-373(sw)27(arzy\\242)-373(si\\246)-373(o)-373(p)1(rze)-1(zwis)-1(k)28(o)]TJ\nET\nendstream\nendobj\n651 0 obj <<\n/Type /Page\n/Contents 652 0 R\n/Resources 650 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n650 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n655 0 obj <<\n/Length 10116     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(201)]TJ -358.232 -35.866 Td[(ni)1(e)-375(b)28(y\\252o)-375(cz)-1(asu.)-374(Mateusz)-375(tak)-375(p)-27(op)-27(\\246)-1(d)1(z)-1(a\\252,)-374(\\273)-1(e)-375(ledwie)-375(n)1(ie)-1(k)1(ie)-1(d)1(y)-375(u)1(krad)1(k)28(e)-1(m)-375(i)1(no)-375(l)1(e)-1(cia\\252)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-301(d)1(o)-302(m\\252ynicy)84(,)-302(b)28(y)-301(rozgrza\\242)-302(z)-1(gr)1(abia\\252e)-302(r)1(\\246)-1(ce)-1(,)-301(a)-302(z)-302(n)1(a)28(w)-1(r)1(ote)-1(m)-301(niele)-1(d)1(wie)-302(w)-302(d)1(yrd)1(y)]TJ 0 -13.549 Td[(p)-27(os)-1(p)1(ie)-1(sza\\252)-1(,)-333(b)-27(o)-333(i)-334(sama)-334(r)1(ob)-28(ota)-333(p)-27(ogania\\252a.)]TJ 27.879 -13.549 Td[(O)-269(dob)1(rym)-269(ju)1(\\273)-270(z)-1(mroku)-268(An)28(te)-1(k)-269(p)-27(o)28(w)-1(l)1(\\363k\\252)-270(si\\246)-270(d)1(o)-270(d)1(om)27(u)1(,)-269(a)-270(tak)-269(b)28(y)1(\\252)-270(p)1(rz)-1(emarzni\\246-)]TJ -27.879 -13.549 Td[(t)28(y)83(,)-317(u)1(tru)1(dzon)28(y)-317(i)-318(wyzb)28(yt)28(y)-317(z)-318(si\\252,)-317(tak)-317(go)-318(b)-27(ola\\252y)-317(ws)-1(zystkie)-318(k)28(o\\261c)-1(i)1(,)-318(\\273e)-318(zaraz)-318(p)-27(o)-318(k)28(ol)1(ac)-1(j)1(i)]TJ 0 -13.55 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-334(p)-27(o)-28(d)-333(p)1(ie)-1(r)1(z)-1(y)1(n\\246)-334(i)-333(zas)-1(n)1(\\241\\252)-334(k)56(amie)-1(n)1(iem)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-307(n)1(ie)-307(m)-1(i)1(a\\252)-1(a)-306(s)-1(erca)-307(w)-1(y)1(p)28(yt)28(yw)28(a\\242)-308(go)-306(o)-307(nic,)-307(al)1(e)-308(d)1(ogadza\\252a)-307(m)27(u)1(,)-307(jak)-306(m)-1(og\\252a,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(c)-1(isz)-1(a\\252a)-413(w)28(c)-1(i)1(\\241\\273)-414(d)1(z)-1(ieci)-413(,)-413(starego)-413(nagn)1(a\\252)-1(a,)-412(b)28(y)-413(b)1(uciarami)-413(ni)1(e)-414(h)1(a\\252as)-1(o)28(w)27(a\\252,)-412(s)-1(ama)]TJ 0 -13.549 Td[(b)-27(os)-1(o)-240(c)27(h)1(o)-28(dzi\\252a)-241(p)-27(o)-240(iz)-1(b)1(ie,)-240(b)28(y)-240(go)-241(in)1(o)-241(n)1(ie)-241(p)1(rze)-1(bu)1(dzi\\242,)-240(a)-241(n)1(a)-241(\\261w)-1(i)1(taniu)1(,)-240(kiedy)-240(s)-1(i)1(\\246)-241(z)-1(ab)1(iera\\252)]TJ 0 -13.549 Td[(do)-226(rob)-27(ot)28(y)83(,)-226(u)28(w)27(ar)1(z)-1(y\\252a)-226(m)27(u)-226(garn)28(u)1(s)-1(ze)-1(k)-226(m)-1(l)1(e)-1(k)56(a)-227(d)1(o)-227(z)-1(i)1(e)-1(mniak)28(\\363)28(w,)-227(b)29(y)-227(se)-228(p)-27(o)-28(d)1(jad)1(\\252)-227(i)-227(r)1(oz)-1(grza\\252)]TJ 0 -13.549 Td[(si\\246)-334(lepiej.)]TJ 27.879 -13.55 Td[({)-333(Psiakr\\363t)1(k)55(a,)-333(tak)-333(mi\\246)-334(gn)1(at)28(y)-334(b)-27(ol\\241,)-333(\\273e)-334(ru)1(c)27(h)1(a\\242)-334(s)-1(i\\246)-333(nic)-333(m)-1(og\\246!)-333({)-334(wyr)1(z)-1(ek)56(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)1(no)-333(tak)-333(z)-1(r)1(az)-1(u)1(,)-334(b)-27(o\\261c)-1(ie)-333(niez)-1(wycza)-56(jn)1(i,)-333(ni)1(e)-1(w\\252o\\273)-1(eni)1(...t\\252u)1(m)-1(acz)-1(y)1(\\252)-334(stary)84(.)]TJ 0 -13.549 Td[({)-333(Przej\\261\\242)-334(pr)1(z)-1(ejdzie,)-333(w)-1(i)1(e)-1(m.)-333(Pr)1(z)-1(yn)1(ies)-1(ies)-1(z)-333(to,)-333(Han)28(u\\261,)-333(obiad)1(?)]TJ 0 -13.549 Td[({)-333(Przyn)1(ie)-1(s\\246,)-334(a)-333(gdzieb)28(y\\261)-334(t)1(o)-334(lat)1(a\\252)-334(taki)-333(k)56(arw)28(as)-334(d)1(rogi,)-333(pr)1(z)-1(y)1(nies)-1(\\246...)]TJ 0 -13.549 Td[(P)28(osz)-1(ed\\252)-333(z)-1(ar)1(az)-1(,)-333(b)-27(o)-334(t)1(rz)-1(eba)-333(b)28(y)1(\\252)-1(o)-333(r\\363)28(wno)-333(z)-334(d)1(niem)-334(sta)28(w)27(a\\242)-334(n)1(a)-333(rob)-27(o)-28(c)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[(I)-333(tak)-333(m)27(u)-333(si\\246)-334(zac)-1(z\\246)-1(\\252y)-333(dn)1(ie)-334(ci\\246\\273)-1(ki)1(e)-1(j)1(,)-333(z)-1(n)1(o)-56(jn)1(e)-1(j)-332(pracy)83(.)]TJ 0 -13.549 Td[(I)-248(cz)-1(y)-247(m)-1(r)1(\\363z)-249(c)28(ho)-28(\\242b)28(y)-248(i)-247(na)-55(jwi\\246ks)-1(z\\241)-248(skrzyt)28(w)27(\\241)-247(pra\\273y\\252,)-248(czy)-248(z)-1(a)28(wieru)1(c)27(ha)-248(d)1(\\246)-1(\\252a)-247(i)-248(bi)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(wic)27(h)29(ur\\241)-274(i)-273(\\261)-1(n)1(ie)-1(gi)1(e)-1(m,)-274(\\273e)-275(o)-27(c)-1(z\\363)28(w)-275(n)1(ie)-274(b)28(y\\252o)-274(mo\\273)-1(n)1(a)-274(oz)-1(ewrze)-1(\\242,)-274(cz)-1(y)-274(o)-27(dwil\\273)-274(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252a,)]TJ 0 -13.549 Td[(\\273e)-341(tr)1(z)-1(eba)-340(b)29(y\\252o)-340(s)-1(ta\\242)-340(d)1(nie)-340(c)-1(a\\252e)-340(w)-340(rozm)-1(i)1(\\246)-1(k\\252ym)-340(\\261niegu,)-339(a)-340(pr)1(z)-1(yk)1(ry)84(,)-340(wilgotn)28(y)-339(z)-1(i)1(\\241b)-340(w)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(i)-259(w\\252)-1(azi\\252,)-259(c)-1(zy)-259(\\261)-1(n)1(ie)-1(gi)-259(sypa\\252y)84(,)-260(\\273e)-260(top)-27(ora)-260(w\\252asnego)-260(ma\\252o)-260(co)-260(wid)1(z)-1(ia\\252)-259({)-260(tr)1(z)-1(eba)-259(b)28(y\\252o)]TJ 0 -13.55 Td[(zryw)28(a\\242)-335(si\\246)-334(do)-334(d)1(nia,)-333(bie\\273)-1(y)1(\\242)-335(i)-333(dni)1(e)-335(d)1(\\252ugie)-334(pr)1(ac)-1(o)28(w)28(a\\242)-1(,)-333(a\\273)-335(gn)1(at)27(y)-333(trze)-1(sz)-1(cza\\252)-1(y)-333(i)-334(k)56(a\\273)-1(d)1(a)]TJ 0 -13.549 Td[(\\273y\\252a)-342(z)-342(os)-1(ob)1(na)-342(p)1(ru\\252a)-341(s)-1(i\\246)-342(z)-342(utr)1(ud)1(z)-1(enia,)-341(a)-342(\\261pies)-1(zy\\242)-342(s)-1(i)1(\\246)-343(d)1(o)-342(tego,)-342(b)-27(o)-342(cz)-1(tery)-341(pi\\252y)-342(t)1(ak)]TJ 0 -13.549 Td[(ze)-1(\\273e)-1(r)1(a\\252)-1(y)-333(d)1(rze)-1(w)28(o,)-333(\\273)-1(e)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(m)-1(ogl)1(i)-333(nastarcz)-1(y\\242)-334(i)-333(M)1(ate)-1(u)1(s)-1(z)-333(p)-28(ogan)1(ia\\252.)]TJ 27.879 -13.549 Td[(Ale)-466(n)1(ie)-466(to)-466(m)28(u)-466(si\\246)-466(mie)-1(r)1(z)-1(i)1(\\252)-1(o,)-465(ni)1(e)-466(c)-1(i\\246\\273)-1(k)56(a)-465(praca,)-466(n)1(ie)-466(wic)27(h)1(ry)-465(z)-1(\\252e,)-466(skrzyt)28(wy)83(,)]TJ -27.879 -13.549 Td[(pl)1(uc)27(h)29(y)-287(cz)-1(y)-286(\\261)-1(n)1(ie)-1(gi)-286(s)-1(r)1(ogie)-1(,)-286(wz)-1(wycz)-1(a)-55(ja\\252)-287(si\\246)-287(b)28(y\\252)-287(d)1(o)-287(tego)-287(p)-27(o)-287(tro)-28(c)28(h)28(u)-286({)-287(b)-28(o)-286(jak)-286(s)-1(i\\246)-287(cz)-1(\\252ek)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(\\252)-1(o\\273y)84(,)-239(to)-238(m)27(u)-237(i)-239(w)-238(piekle)-238(niez)-1(gor)1(z)-1(ej)-238({)-239(p)-27(o)28(wiada)-55(j\\241)-238(m)-1(\\241d)1(re)-239(l)1(udzie,)-238(jeno)-238(c)-1(ze)-1(go)-238(znie\\261)-1(\\242)]TJ 0 -13.549 Td[(ni)1(e)-252(m\\363g\\252,)-251(to)-251(tego)-251(Mateusz)-1(o)28(w)28(e)-1(go)-251(pr)1(z)-1(o)-27(do)28(wnict)28(w)27(a)-251(i)-251(t)28(y)1(c)27(h)-251(j)1(e)-1(go)-251(ci\\241)-28(g\\252yc)28(h)-251(d)1(os)-1(kwiera\\253)1(.)]TJ 27.879 -13.549 Td[(Inn)1(i)-395(ju)1(\\273)-396(n)1(a)-396(to)-395(n)1(ie)-396(b)1(ac)-1(zyli)1(,)-395(a)-396(on)-394(z)-1(a)-395(k)56(a\\273)-1(d)1(\\241)-395(raz\\241)-396(k)1(ie)-1(j)-394(p)-28(os\\252ys)-1(za\\252,)-395(wrza\\252)-396(z\\252o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\241,)-339(a)-340(nieraz)-340(tak)-340(o)-27(dw)28(arkn)1(\\241\\252)-1(,)-339(\\273)-1(e)-340(tam)28(te)-1(n)-339(ino)-339(\\261)-1(lepi)1(am)-1(i)-339(b\\252ysk)55(a\\252,)-339(a)-340(z)-1(n)1(o)28(w)-1(u)1(;)-340(j)1(a)-1(k)1(b)28(y)-340(z)]TJ 0 -13.549 Td[(rozm)27(y)1(s)-1(\\252em)-1(,)-353(do)-353(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(go)-353(s)-1(i\\246)-354(cz)-1(epi)1(a\\252,)-354(n)1(ib)28(y)-353(nie)-354(p)1(rosto)-354(w)-354(o)-28(czy)83(,)-353(ale)-354(tak)-353(z)-1(a)28(w\\273)-1(d)1(y)]TJ 0 -13.55 Td[(ut)1(ra\\014\\252)-291(w)-292(s)-1(\\252ab)1(iz)-1(n)1(\\246)-1(,)-291(a\\273)-292(sk)28(\\363ra)-292(cierp\\252a)-291(na)-291(An)28(tku)-291(i)-291(pi\\246\\261)-1(cie)-292(m)27(u)-291(si\\246)-292(zw)-1(i)1(e)-1(ra\\252y)84(,)-291(hamo)27(w)28(a\\252)]TJ 0 -13.549 Td[(si\\246)-260(j)1(e)-1(d)1(nak)-258(je)-1(szc)-1(ze)-1(,)-258(jak)-259(m\\363g\\252,)-259(pr)1(z)-1(y)1(c)-1(isz)-1(a\\252,)-258(a)-259(t)28(ylk)28(o)-259(te)-259(pr)1(z)-1(ygr)1(yz)-1(k)1(i)-259(w)-259(pami\\246\\242)-260(zgarn)1(ia\\252,)]TJ 0 -13.549 Td[(cz)-1(u)1(\\252)-334(d)1(obrze)-1(,)-333(\\273e)-334(Mateusz)-334(n)1(a)-334(ok)56(azj\\246)-334(cz)-1(ek)56(a\\252,)-334(b)29(y)-333(go)-334(z)-334(r)1(ob)-28(ot)28(y)-333(wygon)1(i\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(An)28(tk)28(o)28(wi)-419(z)-1(a\\261)-420(tak)-419(o)-420(r)1(ob)-28(ot\\246)-420(n)1(ie)-420(c)27(h)1(o)-28(dzi\\252o)-420(wiele,)-420(a)-419(in)1(o)-420(o)-420(t)1(o)-1(,)-419(b)28(y)-419(si\\246)-420(nie)-420(d)1(a\\242)]TJ -27.879 -13.549 Td[(pr)1(z)-1(epr)1(z)-1(e\\242)-334(i)-333(z)-1(m\\363)-28(c)-334(b)-27(ele)-334(k)28(om)28(u,)-333(takiem)27(u)-332(\\252)-1(ac)28(hm)28(ytk)28(o)28(w)-1(i)-333(j)1(ak)-333(Mateusz)-1(.)]TJ 27.879 -13.549 Td[(Do\\261\\242)-1(,)-397(\\273)-1(e)-398(si\\246)-399(za)28(wz)-1(in)1(ali)-398(n)1(a)-398(si\\246)-398(c)-1(or)1(az)-399(sro\\273e)-1(j)1(,)-398(b)-27(o)-398(na)-397(s)-1(am)28(ym)-398(dn)1(ie)-398(z)-1(\\252o\\261c)-1(i,)-397(jak)]TJ -27.879 -13.55 Td[(zadra)-446(b)-27(ol\\241c)-1(a,)-446(tk)1(w)-1(i)1(\\252a)-447(Jagu)1(s)-1(i)1(a.)-447(O)1(ba)-55(j)-446(oni,)-446(a)-446(ju)1(\\273)-447(z)-447(d)1(a)28(w)-1(n)1(a,)-446(jes)-1(zc)-1(ze)-447(o)-28(d)-445(w)-1(i)1(os)-1(n)28(y)84(,)-446(a)]TJ 0 -13.549 Td[(mo\\273)-1(e)-409(i)-408(o)-28(d)-408(zapu)1(s)-1(t,)-408(c)27(h)1(o)-28(dzili)-408(za)-409(n)1(i\\241)-409(n)1(a)-409(p)1(rzypr)1(z)-1(\\241\\273k)28(\\246)-409(i)-408(prze)-1(p)1(ierali)-408(jeden)-408(dr)1(ugiego)]TJ 0 -13.549 Td[(kr)1(yjomo,)-245(d)1(obrze)-245(jedn)1(ak)-245(wiedz\\241c)-246(o)-245(sobi)1(e)-1(.)-244(Je)-1(n)1(o)-245(Mateusz)-245(robi)1(\\252)-245(to)-245(pr)1(a)27(wie)-245(n)1(a)-245(o)-28(cz)-1(ac)27(h)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h)-255(i)-255(w)-255(g\\252os)-255(p)-28(o)28(wiad)1(a\\252)-255(o)-255(s)-1(w)28(oim)-255(mi\\252o)27(w)28(ani)1(u,)-255(a)-255(An)29(te)-1(k)-254(kry\\242)-255(si\\246)-255(z)-256(t)28(ym)-255(m)28(usia\\252,)]TJ 0 -13.549 Td[(to)-333(i)-333(g\\252uc)27(h)1(a,)-333(pal\\241ca)-334(zazdro\\261\\242)-334(p)1(arz)-1(y)1(\\252a)-334(m)28(u)-333(s)-1(erce)-1(.)]TJ 27.879 -13.55 Td[(Nigd)1(y)-234(oni)-234(n)1(ie)-235(tr)1(z)-1(ymali)-234(ze)-235(sob\\241)-234(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(a,)-234(a)-235(za)28(wdy)-234(si\\246)-235(b)-27(o)-28(cz)-1(yl)1(i)-234(na)-234(s)-1(i)1(e)-1(b)1(ie)]TJ -27.879 -13.549 Td[(i)-264(o)-28(dgr)1(a\\273)-1(ali)-264(pr)1(z)-1(ed)-264(lud)1(\\271)-1(mi,)-264(\\273)-1(e)-265(to)-264(i)-265(k)56(a\\273dy)-264(z)-265(nic)28(h)-264(m)-1(ia\\252)-264(s)-1(i\\246)-265(za)-265(n)1(a)-56(j)1(m)-1(o)-27(c)-1(n)1(ie)-1(j)1(s)-1(ze)-1(go)-264(c)27(h)1(\\252)-1(op)1(a)]TJ\nET\nendstream\nendobj\n654 0 obj <<\n/Type /Page\n/Contents 655 0 R\n/Resources 653 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n653 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n658 0 obj <<\n/Length 9591      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(202)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)28(e)-403(ws)-1(i,)-402(ale)-402(te)-1(r)1(az)-403(z)-403(dn)1(ia)-402(na)-402(dzie)-1(\\253)-401(ros)-1(\\252a)-402(w)-403(n)1(ic)27(h)-402(z\\252o\\261)-1(\\242)-402(do)-402(s)-1(iebi)1(e)-403(i)-402(z)-1(a)28(wz)-1(i\\246to\\261\\242)-1(,)-402(i\\273)]TJ 0 -13.549 Td[(p)-27(o)-309(j)1(akim\\261)-309(t)28(ygo)-27(dni)1(u)-308(to)-308(s)-1(i\\246)-308(ju)1(\\273)-309(ni)1(e)-309(witali,)-308(a)-308(p)1(rze)-1(c)27(h)1(o)-28(dzili)-308(mimo,)-308(krzes)-1(z\\241c)-309(\\261le)-1(p)1(iami)]TJ 0 -13.549 Td[(jak)28(o)-333(te)-334(d)1(w)27(a)-333(wilk)1(i)-334(r)1(oz)-1(sro\\273one.)]TJ 27.879 -13.549 Td[(Mateusz)-351(ni)1(e)-352(b)29(y\\252)-351(z\\252y)-351(n)1(i)-351(n)1(ie)-1(u)1(\\273)-1(yt)28(y)84(,)-351(a)-350(naspr)1(z)-1(ec)-1(iw,)-350(s)-1(erce)-351(m)-1(i)1(a\\252)-351(w)-1(sp)-27(om)-1(ogl)1(iw)27(e)-351(i)]TJ -27.879 -13.549 Td[(sz)-1(erok)56(\\241)-393(r)1(\\246)-1(k)28(\\246,)-392(jeno)-392(z)-1(b)29(yt)-392(duf)1(a\\252)-393(w)-392(s)-1(i)1(e)-1(b)1(ie)-1(,)-392(zb)28(yt)-392(si\\246)-393(wynosi\\252)-392(nad)-392(d)1(rugi)1(e)-393(i)-392(z)-1(a)-392(ni)1(c)-393(je)]TJ 0 -13.55 Td[(sobie)-340(w)28(a\\273)-1(y)1(\\252,)-340(a)-339(i)-339(t\\246)-340(mia\\252)-340(j)1(e)-1(sz)-1(cze)-340(w)27(ad)1(\\246)-1(,)-339(\\273e)-340(z)-1(a)-339(takiego)-339(s)-1(i\\246)-340(mia\\252)-339(k)56(a)27(w)28(alera,)-339(kt\\363rem)27(u)]TJ 0 -13.549 Td[(\\273adna)-457(dziew)-1(u)1(c)27(h)1(a)-458(si\\246)-458(ni)1(e)-458(opar)1(\\252)-1(a,)-457(lu)1(bi\\252)-457(s)-1(i)1(\\246)-458(t)28(ym)-458(pu)1(s)-1(zy\\242,)-458(r)1(oz)-1(p)-27(o)28(wiada\\242,)-458(b)29(yle)-458(in)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(o)-27(do)28(w)27(a\\242)-291(w)28(e)-291(ws)-1(zystkim.)-290(Wi\\246c)-291(i)-291(teraz)-291(w)-290(s)-1(mak)-290(m)27(u)-290(to)-290(s)-1(z\\252o)-291(i)-290(rad)-290(gad)1(a\\252)-1(,)-290(\\273e)-291(An)28(tek)]TJ 0 -13.549 Td[(rob)1(i)-331(u)-330(niego)-331(i)-331(s\\252uc)28(ha)-331(si\\246)-331(w)27(e)-331(ws)-1(zystkim,)-331(a)-331(w)-331(o)-28(cz)-1(y)-330(p)-27(ok)28(ornie)-331(p)1(atrzy)-331(jak)-330(ta)-331(tru)1(s)-1(i)1(a,)]TJ 0 -13.549 Td[(b)28(yl)1(e)-334(go)-333(ino)-333(z)-334(rob)-27(ot)28(y)-333(nie)-333(w)-1(y)1(goni\\252.)]TJ 27.879 -13.549 Td[(Dziwno)-334(to)-333(b)28(y\\252o)-334(zna)-55(j\\241cym)-334(An)28(tk)56(a,)-334(al)1(e)-335(t)1(ak)-334(miark)28(o)28(w)28(ali,)-334(\\273e)-334(s)-1(i)1(\\246)-335(c)28(h\\252op)-333(up)-27(ok)28(o-)]TJ -27.879 -13.55 Td[(rzy\\252)-383(i)-383(p)1(rz)-1(y)1(gi\\241\\252,)-383(b)28(yl)1(e)-384(in)1(o)-383(rob)-27(ot)27(y)-382(nie)-383(s)-1(tr)1(ac)-1(i)1(\\242)-1(,)-383(a)-383(d)1(rugi)1(e)-384(zas)-1(i\\246)-383(do)28(w)28(o)-28(dzili)1(,)-383(\\273)-1(e)-383(z)-384(tego)]TJ 0 -13.549 Td[(wyjd)1(\\241)-385(jes)-1(zc)-1(ze)-385(historie,)-385(b)-27(o)-385(An)28(tek)-385(nie)-385(dar)1(uj)1(e)-386(i)-385(n)1(ie)-386(d)1(z)-1(i)1(\\261)-1(,)-385(to)-385(j)1(utr)1(o)-385(o)-28(db)1(ije)-385(s)-1(w)28(o)-56(j)1(e)-1(,)-384(i)]TJ 0 -13.549 Td[(goto)28(wi)-333(b)28(yli)-333(n)1(a)27(w)28(e)-1(t)-333(o)-333(z)-1(ak)1(\\252)-1(ad)-332(i\\261)-1(\\242,)-333(\\273)-1(e)-333(Mateusz)-1(a)-333(s)-1(p)1(ierz)-1(e)-333(na)-333(kw)27(a\\261ne)-333(jab)1(\\252)-1(k)28(o.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-382(\\273)-1(e)-382(An)28(te)-1(k)-382(o)-382(t)28(yc)27(h)-381(gadk)56(ac)27(h)-382(n)1(ie)-383(wiedzia\\252,)-382(b)-28(o)-382(do)-382(c)27(h)1(a\\252up)-382(n)1(ie)-383(zagl\\241da\\252,)]TJ -27.879 -13.549 Td[(zna)-56(j)1(omk)28(\\363)27(w)-361(wymija\\252)-361(b)-27(e)-1(z)-361(s)-1(\\252o)28(w)28(a,)-361(a)-361(z)-362(r)1(ob)-28(ot)28(y)-361(wp)1(ros)-1(t)-360(do)-361(dom)28(u)-361(sz)-1(ed\\252)-361(i)-361(n)1(a)-361(o)-28(dwr)1(\\363t,)]TJ 0 -13.55 Td[(ale)-334(d)1(obr)1(z)-1(e)-334(czu\\252,)-333(\\273)-1(e)-334(t)1(ak)-334(b)29(y\\242)-334(m)28(usi,)-333(b)-28(o)-333(ni)1(e)-1(zgorze)-1(j)-333(p)1(rze)-1(zie)-1(r)1(a\\252)-334(M)1(ate)-1(u)1(s)-1(za.)]TJ 27.879 -13.549 Td[({)-497(Pr)1(z)-1(yr)1(yc)27(h)29(tuj)1(\\246)-498(ja)-497(ci\\246,)-497(\\261)-1(cie)-1(r)1(w)27(o,)-497(n)1(a)-497(tak)56(\\241)-498(k)56(ap)1(ust\\246)-1(,)-497(\\273e)-498(ci\\246)-497(psi)-497(nie)-497(z)-1(j)1(e)-1(d)1(z)-1(\\241,)]TJ -27.879 -13.549 Td[(zm)-1(i\\246kn)1(ie)-412(ci)-412(r)1(ura,)-411(n)1(ie)-412(b)-27(\\246)-1(d)1(z)-1(ies)-1(z)-412(si\\246)-412(p)1(usz)-1(y)1(\\252)-412(i)-411(w)-1(y)1(nosi\\252)-412({)-411(wyrw)28(a\\252o)-412(m)28(u)-411(s)-1(i\\246)-412(j)1(e)-1(d)1(nego)]TJ 0 -13.549 Td[(razu)-333(na)-333(rob)-27(o)-28(cie,)-333(a)-1(\\273)-333(B)-1(ar)1(te)-1(k)-333(p)-27(os)-1(\\252y)1(s)-1(za\\252)-334(i)-333(rzek\\252:)]TJ 27.879 -13.549 Td[({)-333(P)28(oni)1(e)-1(c)27(h)1(a)-56(j)1(c)-1(i)1(e)-334(go,)-333(p\\252ac\\241)-334(m)28(u)-333(z)-1(a)-333(to,)-333(b)28(y)-333(p)-27(ogania\\252!)-333({)-333(Nie)-334(rozumia\\252)-333(s)-1(t)1(ary)83(.)]TJ 0 -13.55 Td[({)-333(Na)27(w)28(et)-334(p)1(ies)-334(m)-1(n)1(ie)-334(mierzi,)-333(kiej)-333(p)-28(o)-333(p)1(r\\363\\273)-1(n)1(icy)-333(s)-1(zc)-1(ze)-1(k)56(a.)]TJ 0 -13.549 Td[({)-292(Za)-292(bar)1(dzo)-292(bierze)-1(cie)-293(d)1(o)-292(s)-1(erca,)-292(jesz)-1(cz)-1(e)-292(s)-1(i\\246)-292(w)28(am)-1(a)-292(zapiec)-1(ze)-293(w)28(\\241trob)1(a,)-292(a)-292(u)28(w)28(a-)]TJ -27.879 -13.549 Td[(\\273am)-1(,)-333(\\273e)-334(i)-333(do)-333(rob)-27(ot)28(y)-333(gor\\241c)-1(u)1(jec)-1(i)1(e)-334(s)-1(i)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(mi)-333(z)-1(imno)-333({)-333(rzuci\\252)-334(b)29(yle)-334(co.)]TJ 0 -13.549 Td[({)-308(Z)-307(w)27(oln)1(a)-308(tr)1(z)-1(a)-308(wsz)-1(y)1(s)-1(tk)28(o,)-307(p)-28(o)-307(p)-28(or)1(z)-1(\\241d)1(ku,)-307(z)-308(w)27(ol)1(na,)-307(a)-308(i)-308(P)29(an)-308(J)1(e)-1(zus)-308(m\\363g\\252)-308(\\261)-1(wiat)]TJ -27.879 -13.55 Td[(sta)27(wi\\242)-258(w)-259(j)1(e)-1(d)1(e)-1(n)-258(d)1(z)-1(i)1(e)-1(\\253)1(,)-258(a)-259(w)28(ola\\252)-258(go)-259(r)1(obi\\242)-258(b)-28(ez)-259(ca\\252y)-258(t)28(ydzie\\253,)-258(o)-28(d)1(p)-28(o)-27(c)-1(zyw)27(a)-55(j\\241cy)83(.)1(..)-258(rob)-27(ota)]TJ 0 -13.549 Td[(ni)1(e)-252(p)1(tak,)-251(ni)1(e)-252(p)-27(ofru)1(ni)1(e)-1(,)-251(a)-251(n)1(aryw)28(a\\242)-252(si\\246)-252(la)-251(m\\252yn)1(arz)-1(a)-251(cz)-1(y)-250(tam)-252(in)1(nego,)-251(jak)56(a)-251(w)28(am)-252(w)28(ola)]TJ 0 -13.549 Td[(i)-393(m)27(u)1(s)-1(.)1(..)-393(a)-394(M)1(ate)-1(u)1(s)-1(z)-393(jes)-1(t)-393(o)-28(d)-393(tego,)-393(kiej)-393(ten)-393(piese)-1(k,)-393(co)-393(s)-1(tr)1(z)-1(e\\273)-1(e)-394(c)28(h)28(ud)1(ob)28(y)84(,)-393(b)-28(\\246dziec)-1(ie)]TJ 0 -13.549 Td[(si\\246)-334(to)-333(na\\253)-333(\\271lil)1(i)-334(za)-333(s)-1(zc)-1(ze)-1(k)56(an)1(ie)-1(?..)1(.)]TJ 27.879 -13.549 Td[({)-262(P)28(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(em,)-262(jak)-262(to)-262(u)28(w)28(a\\273am)-1(.)-262(G)1(dz)-1(i)1(e)-1(\\261c)-1(i)1(e)-263(to)-262(lato)28(w)28(\\241)-263(p)-27(or\\241)-262(b)28(y)1(w)27(ali)1(,)-262(\\273)-1(em)-263(w)28(as)]TJ -27.879 -13.55 Td[(w)28(e)-334(ws)-1(i)-333(ni)1(e)-334(uj)1(rza\\252?)-334({)-333(z)-1(ap)28(y)1(ta\\252,)-334(ab)29(y)-333(z)-1(mieni\\242)-334(r)1(oz)-1(mo)28(w)27(\\246.)]TJ 27.879 -13.549 Td[({)-310(Ni)1(e)-1(co\\261)-310(s)-1(i\\246)-310(r)1(obi\\252o,)-309(niec)-1(o\\261)-310(\\261wiat)-310(Bo\\273y)-310(ogl\\241d)1(a\\252o,)-310(o)-27(c)-1(zy)-310(p)1(as)-1(\\252o)-310(i)-309(du)1(s)-1(zy)-309(ros)-1(n)1(\\241\\242)]TJ -27.879 -13.549 Td[(p)-27(om)-1(aga\\252o..)1(.)-299({)-299(p)-28(o)28(wiad)1(a\\252)-300(w)28(oln)1(o)-299(ob)-28(cios)-1(u)1(j\\241c)-299(dr)1(z)-1(ew)27(o)-299(z)-299(dru)1(giej)-299(stron)28(y)84(,)-299(pr)1(os)-1(to)28(w)28(a\\252)-299(s)-1(i\\246)]TJ 0 -13.549 Td[(cz)-1(ase)-1(m,)-429(rozci\\241)-28(ga\\252,)-429(a\\273)-429(m)27(u)-428(s)-1(ta)28(wy)-429(trzask)55(a\\252y)84(,)-429(a)-429(fa)-55(jk)1(i)-429(z)-430(z\\246)-1(b)-27(\\363)28(w)-429(nie)-429(pu)1(s)-1(zc)-1(za\\252)-429(i)-429(rad)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\252)-1(.)]TJ 27.879 -13.549 Td[({)-401(Robi\\252em)-402(z)-401(Mateusz)-1(em)-402(p)1(rzy)-401(no)28(wym)-402(d)1(w)27(or)1(z)-1(e,)-401(ale)-402(\\273e)-402(p)-27(ogani)1(a\\252)-402(i)-401(zwie)-1(sna)]TJ -27.879 -13.55 Td[(b)28(y\\252a)-472(n)1(a)-472(\\261)-1(wiecie)-1(,)-471(pac)27(h)1(ni)1(a\\252)-1(o)-472(s\\252onk)28(o,)-471(tom)-472(go)-472(rz)-1(u)1(c)-1(i)1(\\252,)-472(a)-472(sz)-1(li)-471(natencz)-1(as)-472(lu)1(dzie)-473(d)1(o)]TJ 0 -13.549 Td[(Kalw)28(ari)1(i)-296({)-295(p)-27(os)-1(ze)-1(d)1(\\252e)-1(m)-295(z)-296(ni)1(m)-1(i)1(,)-296(b)29(y)-295(o)-28(dp)1(ustu)-295(dost\\241)-28(p)1(i\\242)-296(i)-295(\\261w)-1(i)1(ata)-296(co\\261)-296(n)1(iec)-1(o\\261)-296(p)1(rze)-1(j)1(rze)-1(\\242.)]TJ 27.879 -13.549 Td[({)-333(Dalek)28(o)-334(to)-333(do)-333(on)1(e)-1(j)-333(Kal)1(w)27(ari)1(i?)]TJ 0 -13.549 Td[({)-345(D)1(w)27(a)-345(t)28(y)1(go)-28(dn)1(ie)-345(s)-1(zlim,)-344(a\\273)-345(z)-1(a)-344(Krak)28(o)28(w)27(em,)-345(al)1(e)-1(m)-345(n)1(ie)-345(dosz)-1(ed\\252.)-344(W)-345(j)1(e)-1(d)1(nej)-344(w)-1(si,)]TJ -27.879 -13.549 Td[(gdzie\\261)-1(m)28(y)-335(p)-28(o\\252edni)1(o)27(w)28(ali,)-335(sta)28(w)-1(i)1(a\\252)-336(gosp)-28(o)-27(darz)-336(c)28(ha\\252up)-27(\\246,)-336(a)-335(t)28(yle)-336(si\\246)-336(n)1(a)-336(t)28(ym)-335(roz)-1(u)1(mia\\252,)]TJ 0 -13.55 Td[(co)-227(k)28(oza)-227(na)-226(pi)1(e)-1(p)1(rz)-1(u)1(,)-226(z)-1(e\\271)-1(li)1(\\252e)-1(m)-227(si\\246,)-227(skl\\241\\252em)-227(ju)1(c)27(h\\246,)-226(b)-28(o)-226(dr)1(z)-1(ew)27(a)-226(namarn)1(o)27(w)28(a\\252,)-227(i)-226(osta\\252e)-1(m)]TJ 0 -13.549 Td[(u)-362(niego,)-362(\\273)-1(e)-363(to)-362(i)-363(p)1(ros)-1(i)1(\\252.)-363(Be)-1(z)-363(d)1(w)27(a)-362(m)-1(i)1(e)-1(si\\241c)-1(e)-363(wyr)1(yc)27(h)28(t)1(o)27(w)28(a\\252e)-1(m)-363(m)28(u)-362(dom,)-363(\\273e)-363(na)-362(dw)28(\\363r)]TJ\nET\nendstream\nendobj\n657 0 obj <<\n/Type /Page\n/Contents 658 0 R\n/Resources 656 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n656 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n661 0 obj <<\n/Length 9425      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(203)]TJ -358.232 -35.866 Td[(pat)1(rz)-1(y)1(\\252,)-445(a\\273)-444(m)-1(n)1(ie)-445(za)-445(to)-444(c)27(h)1(c)-1(ia\\252)-444(sw)27(ata\\242)-445(ze)-445(sw)27(o)-55(j\\241)-444(s)-1(i)1(os)-1(tr\\241,)-444(wd)1(o)27(w)28(\\241,)-444(c)-1(o)-444(wp)-28(o)-27(dle)-445(n)1(a)]TJ 0 -13.549 Td[(pi)1(\\246)-1(ciu)-333(morgac)27(h)-333(siedzia\\252a.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(stara.)]TJ 0 -13.549 Td[({)-254(B)-1(oga\\242)-255(ta)-254(m\\252o)-28(da,)-254(ale)-255(n)1(icz)-1(ego)-255(j)1(e)-1(sz)-1(cze)-1(,)-254(a)-255(j)1(ak\\273e)-1(,)-254(t)28(yla)-254(\\273)-1(e)-254(ino)-254(\\252ysa)27(w)28(a)-255(zdziebk)28(o,)]TJ -27.879 -13.549 Td[(k)28(o\\261la)28(w)27(a)-269(i)-268(\\261w)-1(i)1(drem)-269(patr)1(z)-1(a\\252a,)-268(ale)-269(na)-268(g\\246)-1(b)1(ie)-269(g\\252adk)56(a,)-269(ki)1(e)-1(j)-268(b)-27(o)-28(c)27(h)1(e)-1(n)1(,)-269(kt)1(\\363re)-1(go)-268(m)27(yszy)-269(b)-27(e)-1(z)]TJ 0 -13.55 Td[(par)1(\\246)-385(niedziel)-385(obgr)1(yza\\252)-1(y)84(,)-385(gal)1(an)28(ta)-385(k)28(ob)1(ie)-1(ta,)-384(dob)1(ra,)-384(w)-1(y)1(\\273)-1(erk)28(\\246)-385(m)-1(i)1(a\\252e)-1(m)-385(sie)-1(l)1(n\\241)-385({)-385(a)-384(to)]TJ 0 -13.549 Td[(ja)-55(jec)-1(zni)1(c)-1(a)-331(z)-331(kie\\252bas\\241,)-331(a)-331(to)-330(gorz)-1(a\\252k)56(a)-331(z)-331(t\\252usto\\261c)-1(i\\241,)-330(a)-331(to)-331(in)1(ne)-331(s)-1(maki)-330(b)28(y\\252y)84(,)-331(a)-331(tak)-331(si\\246)]TJ 0 -13.549 Td[(znaro)28(wi\\252a)-286(do)-286(mni)1(e)-1(,)-286(\\273e)-287(d)1(z)-1(i)1(e)-1(\\253)-285(w)-287(d)1(z)-1(i)1(e)-1(\\253)-285(p)-28(o)-28(d)-285(pi)1(e)-1(rzyn)1(\\246)-287(b)28(y)1(\\252)-1(a)-286(p)1(usz)-1(cz)-1(a\\242)-286(goto)28(w)27(a.)1(..)-286(a\\273e)-1(m)]TJ 0 -13.549 Td[(w)-334(n)1(o)-28(cy)-333(s)-1(i\\246)-334(wyn)1(i\\363s\\252)-334(w)28(e)-334(\\261w)-1(i)1(at...)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)28(y)1(\\252)-1(o)-333(si\\246)-334(to)-333(pr)1(z)-1(y\\273e)-1(n)1(i\\242,)-333(z)-1(a)28(w\\273)-1(d)1(y)-333(pi\\246\\242)-334(morg\\363)28(w)-1(.)1(..)]TJ 0 -13.549 Td[({)-402(I)-403(za)28(ws)-1(zon)28(y)-402(k)28(o\\273)-1(u)1(c)27(h)-402(p)-27(o)-402(nieb)-27(os)-1(zc)-1(zyku)1(.)-402(A)-403(mn)1(ie)-403(co)-403(p)-27(o)-402(k)28(obiecie)-1(!)-402(Z)-402(da)28(wna)]TJ -27.879 -13.55 Td[(mi)-345(j)1(u\\273)-345(obmierz)-1(\\252o)-344(to)-345(bab)1(ie)-345(nasie)-1(n)1(ie,)-345(z)-345(da)28(wna!)-344(A)-345(to)-345(n)1(ic)-345(jeno)-345(kr)1(z)-1(y)1(c)-1(zy)83(,)-344(w)-1(r)1(z)-1(es)-1(zcz)-1(y)84(,)]TJ 0 -13.549 Td[(lata,)-440(j)1(ak)28(o)-440(te)-441(sroki)-440(n)1(a)-441(p)1(\\252o)-28(c)-1(i)1(e)-1(,)-440(wy)-440(s\\252)-1(o)28(w)28(o,)-440(a)-440(ona)-440(dwu)1(dzie)-1(stu)-440(ki)1(e)-1(j)-440(gr)1(o)-28(c)27(h)1(o)28(w)-1(i)1(nami)]TJ 0 -13.549 Td[(trz\\246s)-1(ie...)-292(wy)-293(macie)-293(rozum,)-292(a)-293(on)1(a)-293(in)1(o)-293(ozorem)-293(z)-1(amiata.)-292(M\\363)28(wisz)-293(kiej)-292(do)-292(c)-1(z\\252o)27(wiek)56(a,)]TJ 0 -13.549 Td[(a)-426(ta)-425(ni)-426(wyr)1(oz)-1(u)1(m)-1(i)1(e)-1(,)-425(ni)-426(r)1(oz)-1(w)28(a\\273)-1(y)84(,)-426(j)1(e)-1(n)1(o)-426(b)-27(e)-1(l)1(e)-427(co)-426(klepi)1(e)-1(.)-425(P)28(o)28(w)-1(i)1(ada)-55(j\\241,)-426(\\273e)-426(P)28(an)-425(Je)-1(zus)]TJ 0 -13.549 Td[(da\\252)-309(k)28(obiec)-1(i)1(e)-310(ino)-309(p)-28(\\363\\252)-310(d)1(usz)-1(y)-309(i)-309(m)27(usi)-309(b)28(y\\242)-310(to)-310(p)1(ra)28(wda..)1(.)-310(a)-310(d)1(ru)1(g\\241)-310(p)-27(o\\252\\363)27(wk)28(\\246)-310(di)1(ab)-28(e\\252)-310(mia\\252)]TJ 0 -13.55 Td[(nar)1(z)-1(\\241d)1(z)-1(i)1(\\242)-1(...)]TJ 27.879 -13.549 Td[({)-333(S\\241)-333(i)-333(m)-1(\\241d)1(re)-334(p)-27(ono,)-333(s\\241...)-333({)-333(rze)-1(k\\252)-333(me)-1(lan)1(c)27(h)1(olij)1(nie.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(b)1(ia\\252e)-334(wron)28(y)-333(p)-27(ono)-333(s\\241,)-334(i)1(no)-333(\\273)-1(e)-333(nikt)1(o)-334(ic)28(h)-333(nie)-333(w)-1(i)1(dzia\\252!)]TJ 0 -13.549 Td[({)-333(Nie)-334(mieli\\261c)-1(ie)-333(to)-334(sw)27(o)-55(jej)-333(k)28(obi)1(e)-1(t)28(y)84(,)-334(co?)]TJ 0 -13.549 Td[({)-383(M)1(ia\\252e)-1(m,)-383(mia\\252em)-1(!)1(...)-382({)-383(ur)1(w)27(a\\252)-382(nagle,)-383(wyp)1(rosto)27(w)28(a\\252)-383(si\\246)-383(i)-383(zapatr)1(z)-1(y)1(\\252)-383(s)-1(i)1(w)-1(y)1(m)-1(i)]TJ -27.879 -13.55 Td[(o)-28(cz)-1(ami)-421(w)-422(dale,)-421(s)-1(tar)1(y)-422(j)1(u\\273)-422(b)28(y)1(\\252,)-422(ze)-1(sc)27(h)1(\\252y)-422(n)1(a)-422(wi\\363r,)-421(\\273ylast)27(y)84(,)-421(prost)28(y)-421({)-422(in)1(o)-422(si\\246)-422(jak)28(o\\261)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(garbi)1(\\252)-309(teraz)-309(i)-308(fa)-55(jk)56(a)-309(m)28(u)-308(lata\\252a)-309(w)-308(z)-1(\\246bac)28(h,)-308(a)-309(\\252yp)1(a\\252)-309(p)-27(o)28(w)-1(i)1(e)-1(k)56(ami)-309(p)1(r\\246dk)28(o,)-308(pr)1(\\246)-1(d)1(k)28(o.)]TJ 27.879 -13.549 Td[({)-333(Sc)27(h)1(o)-28(d)1(z)-1(i,)-333(w)28(c)-1(i)1(\\241)-28(ga\\242)-1(!)-333({)-333(wrz)-1(esz)-1(cz)-1(a\\252)-333(c)27(h)1(\\252)-1(op)-332(o)-28(d)-333(pi)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Pr\\246dzej)-333(tam)-1(,)-333(Bartek,)-333(ni)1(e)-334(s)-1(t)1(\\363)-56(jcie,)-333(b)-28(o)-333(i)-333(pi)1(\\252)-1(y)-333(stan\\241)-333({)-333(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-403(Hal)1(e)-1(,)-402(g\\252)-1(u)1(pi)1(,)-403(ry)1(c)27(hl)1(e)-1(j)-402(ni)1(e)-404(mo\\273na,)-402(ni\\271li)-402(p)-28(or)1(adzi.)-403(W)1(laz)-1(\\252a)-402(gapa)-403(n)1(a)-403(k)28(o\\261c)-1(i\\363\\252,)]TJ -27.879 -13.55 Td[(kr)1(ac)-1(ze)-248(i)-247(m)27(y\\261li,)-247(\\273e)-248(jest)-248(ksi\\246dze)-1(m)-247(na)-247(am)27(b)-27(oni)1(e)-248({)-248(mru)1(kn\\241\\252)-247(ze)-248(z)-1(\\252o\\261c)-1(i\\241,)-247(al)1(e)-248(m)27(u)1(s)-1(ia\\252o)-247(m)27(u)]TJ 0 -13.549 Td[(si\\246)-359(c)-1(osik)-359(zrob)1(i\\242)-359(na)-359(wn)1(\\241trzu,)-359(b)-27(o)-359(cz)-1(\\246\\261c)-1(iej)-358(o)-28(dp)-27(o)-28(cz)-1(yw)28(a\\252,)-359(wzdyc)28(ha\\252)-359(i)-358(z)-1(a)-358(p)-28(o\\252u)1(dni)1(e)-1(m)]TJ 0 -13.549 Td[(si\\246)-334(ogl\\241d)1(a\\252.)]TJ 27.879 -13.549 Td[(Dob)1(rz)-1(e,)-244(\\273)-1(e)-244(z)-1(araz)-244(przysz)-1(\\252o,)-244(b)-27(o)-245(j)1(ak)28(o\\261)-245(i)-244(k)28(obiet)28(y)-244(s)-1(i)1(\\246)-245(ju)1(\\273)-245(p)-28(ok)56(aza\\252y)-245(z)-244(dw)28(o)-56(j)1(ak)55(ami,)]TJ -27.879 -13.549 Td[(a)-484(Hank)56(a)-484(w)-1(y)1(c)27(ho)-27(dzi\\252a)-485(za)-484(w)27(\\246gla)-484(m\\252)-1(y)1(na.)-484(T)83(art)1(ak)-484(s)-1(tan)1(\\241\\252)-1(,)-484(p)-27(osz)-1(li)-484(wsz)-1(yscy)-484(je\\261)-1(\\242)-485(d)1(o)]TJ 0 -13.55 Td[(m\\252ynicy)84(.)-463(An)28(tek)-463(za\\261)-1(,)-462(\\273)-1(e)-463(d)1(obrze)-463(z)-1(n)1(a\\252)-463(s)-1(i\\246)-463(z)-463(m\\252ynar)1(c)-1(zykiem)-1(,)-462(b)-27(o)-463(niejedn)1(\\241)-463(\\015)1(ac)27(h\\246)]TJ 0 -13.549 Td[(wypi)1(li)-324(ze)-324(s)-1(ob)1(\\241,)-324(wpak)28(o)28(w)28(a\\252)-324(s)-1(i)1(\\246)-325(d)1(o)-324(j)1(e)-1(go)-324(i)1(z)-1(d)1(e)-1(b)1(ki,)-324(n)1(ie)-324(uciek)55(a\\252)-323(ju)1(\\273)-325(o)-27(d)-324(lu)1(dzi)-324(n)1(i)-324(stron)1(i\\252)]TJ 0 -13.549 Td[(o)-28(d)-333(n)1(ic)27(h)1(,)-333(ino)-333(im)-334(t)1(akie)-334(o)-28(czy)-334(p)-27(ok)56(az)-1(y)1(w)27(a\\252,)-333(\\273e)-334(s)-1(ami)-333(go)-334(omij)1(ali.)]TJ 27.879 -13.549 Td[(W)-412(gor\\241cu)-412(takim,)-412(\\273)-1(e)-413(l)1(e)-1(d)1(w)-1(i)1(e)-413(m)-1(o\\273na)-412(b)28(y)1(\\252)-1(o)-412(dy)1(c)27(ha\\242,)-412(s)-1(i)1(e)-1(d)1(z)-1(ia\\252o)-412(par)1(u)-412(c)27(h\\252op)-27(\\363)28(w)]TJ -27.879 -13.549 Td[(w)-381(k)28(o\\273)-1(u)1(c)27(h)1(ac)27(h)-381(i)-380(p)-28(ogad)1(yw)28(a\\252o)-381(w)27(es)-1(o\\252o,)-381(b)29(yli)-381(t)1(o)-381(lud)1(z)-1(ie)-381(z)-381(dalszyc)27(h)-380(w)-1(si,)-381(co)-381(d)1(o)-381(m)-1(\\252yn)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(w)-1(i)1(e)-1(\\271li)-455(i)-455(cze)-1(k)56(ali)-455(n)1(a)-455(zm)-1(ielenie,)-455(d)1(ok\\252adali)-454(torf)1(u)-455(d)1(o)-455(c)-1(ze)-1(r)1(w)27(on)1(e)-1(go)-455(j)1(u\\273)-455(pi)1(e)-1(cyk)56(a,)]TJ 0 -13.55 Td[(ku)1(rzyli)-333(pap)1(ie)-1(r)1(os)-1(y)84(,)-333(\\273)-1(e)-333(c)-1(a\\252a)-333(iz)-1(d)1(e)-1(b)1(k)56(a)-334(ton)1(\\246)-1(\\252a)-333(w)-334(d)1(ymie)-1(,)-333(i)-333(r)1(a)-56(jco)28(w)27(al)1(i.)]TJ 27.879 -13.549 Td[(An)28(tek)-307(u)1(s)-1(iad)1(\\252)-307(na)-307(j)1(akic)27(h)1(\\261)-308(w)28(ork)56(ac)27(h)-306(p)-28(o)-27(d)-307(okienk)1(ie)-1(m,)-307(d)1(w)27(o)-55(jaki)-306(w)-1(zi\\241\\252)-307(p)-27(om)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(k)28(olan)1(a)-438(i)-438(\\252ak)28(om)-1(i)1(e)-439(p)-27(o)-56(j)1(ada\\252)-438(k)56(apust\\246)-438(z)-439(gro)-27(c)27(hem,)-438(a)-438(p)-28(ot)1(e)-1(m)-438(klu)1(s)-1(ki)-437(z)-1(iemniacz)-1(an)1(e)-439(z)]TJ 0 -13.549 Td[(mle)-1(k)1(ie)-1(m,)-448(a)-449(Han)1(k)56(a)-449(u)1(kucn\\246\\252a)-449(mimo)-448(i)-449(z)-448(roz)-1(czuleniem)-449(wpat)1(ryw)28(a\\252a)-449(si\\246)-449(w)-449(n)1(iego.)]TJ 0 -13.549 Td[(Wysec)27(h\\252)-304(b)29(y\\252)-304(o)-28(d)-303(pr)1(ac)-1(y)84(,)-304(p)-27(o)-28(cz)-1(erni)1(a\\252,)-304(a)-304(o)-28(d)-303(tego)-304(rob)1(ienia)-304(n)1(a)-304(mrozie)-304(t)28(w)27(arz)-304(m)28(u)-304(miej-)]TJ 0 -13.55 Td[(sc)-1(ami)-364(\\252usz)-1(cz)-1(y\\252a)-364(si\\246)-365(ze)-365(sk)28(\\363ry)84(,)-364(ale)-365(mimo)-365(t)1(o)-365(u)1(ro)-28(d)1(n)28(y)-364(si\\246)-365(j)1(e)-1(j)-364(wid)1(z)-1(i)1(a\\252)-365(j)1(ak)-364(nik)1(t)-365(d)1(ru)1(gi)]TJ 0 -13.549 Td[(na)-339(\\261)-1(wiec)-1(ie.)-340(Ju)1(\\261)-1(ci,)-339(\\273)-1(e)-340(tak)-340(b)28(y)1(\\252)-1(o,)-339(wys)-1(ok)1(i,)-340(p)1(ros)-1(t)28(y)84(,)-340(\\261m)-1(i)1(g\\252y;)-340(w)-340(pasie)-340(c)-1(i)1(e)-1(n)1(ki,)-340(w)-340(b)1(arac)27(h)]TJ\nET\nendstream\nendobj\n660 0 obj <<\n/Type /Page\n/Contents 661 0 R\n/Resources 659 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n659 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n664 0 obj <<\n/Length 8420      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(204)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozros\\252y)83(,)-358(gi)1(bki;)-357(a)-358(t)28(w)27(arz)-358(mia\\252)-358(d\\252uga)28(w)28(\\241,)-358(suc)27(h)1(\\241,)-358(nos)-358(kiej)-358(ten)-358(d)1(z)-1(i)1(\\363b)-358(jastrz\\246bi,)-358(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(ni)1(e)-287(tak)-286(gar)1(bat)28(y)84(,)-286(o)-28(cz)-1(y)-286(wielki)1(e)-1(,)-286(siw)28(oz)-1(ielon)1(e)-1(,)-286(a)-286(te)-286(br)1(wie)-1(,)-286(t)1(o)-286(jakb)28(y)-285(kryc)28(h\\246)-286(p)-28(o)-27(c)-1(i\\241)-27(gn\\241\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-274(ca\\252e)-273(c)-1(zo\\252o,)-273(o)-28(d)-272(s)-1(kr)1(oni)-273(p)1(ra)28(wie)-274(sz\\252)-1(y)-272(do)-273(skron)1(i,)-273(\\273e)-274(k)1(ie)-1(d)1(y)-273(j)1(e)-274(w)-273(gni)1(e)-1(wie)-273(\\261)-1(ci\\241)-28(gn)1(\\241\\252,)]TJ 0 -13.549 Td[(to)-244(a\\273)-245(s)-1(t)1(ras)-1(zno)-244(b)28(y)1(\\252)-1(o)-244(pat)1(rz)-1(e\\242,)-245(a)-244(cz)-1(o\\252o)-244(m)-1(i)1(a\\252)-245(wyni)1(os)-1(\\252e,)-244(ino)-244(na)-244(p)-27(\\363\\252)-245(p)1(rz)-1(y)1(s)-1(\\252oni)1(\\246)-1(te)-244(r\\363)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(ob)-27(c)-1(i\\246t)28(ymi,)-288(ciem)-1(n)29(ym)-1(i)1(,)-288(p)1(ra)28(w)-1(i)1(e)-289(czarn)28(ymi)-288(w\\252osam)-1(i)-287(i)-288(w)28(\\241s)-1(y)-287(goli\\252)-288(d)1(o)-288(c)-1(n)1(a)-288(jak)-287(ws)-1(zysc)-1(y)84(,)]TJ 0 -13.55 Td[(\\273e)-423(m)28(u)-422(in)1(o)-422(te)-422(bia\\252e)-422(z)-1(\\246b)28(y)-422(gr)1(a\\252y)-422(w)-422(c)-1(zerw)27(on)29(yc)27(h)-421(w)27(ar)1(gac)27(h)-422(j)1(ak)28(o)-422(sz)-1(n)28(u)1(r)-422(p)1(ac)-1(ior)1(k)28(\\363)27(w..)1(.)]TJ 0 -13.549 Td[(ro)-27(dn)28(y)-333(b)28(y)1(\\252)-334(ca\\252kiem)-1(,)-333(\\273e)-334(nigd)1(y)-333(do\\261\\242)-334(nap)1(atrze)-1(\\242)-333(s)-1(i\\246)-333(nie)-334(mog\\252a)-333(na)-333(niego.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(m\\363g\\252)-334(to)-333(o)-28(ciec)-334(pr)1(z)-1(yn)1(ie\\261)-1(\\242,)-333(b)-28(\\246dzies)-1(z)-334(to)-333(co)-334(d)1(nia)-333(t)28(yle)-333(drogi)-333(b)1(ie)-1(ga\\252a!)]TJ 0 -13.549 Td[({)-333(Gno)-55(ju)-333(mieli)-333(ur)1(z)-1(u)1(c)-1(i\\242)-333(s)-1(p)-27(o)-28(d)-333(j)1(a\\252\\363)27(wki)1(,)-334(a)-333(sam)-1(am)-333(w)27(ola\\252a)-333(c)-1(i)-333(p)1(rzyni)1(e)-1(\\261\\242)-1(!)]TJ 0 -13.549 Td[(Za)28(w)-1(sze)-410(tak)-408(kiero)28(w)28(a)-1(\\252a,)-408(b)28(y)-409(same)-1(j)-408(obi)1(ad)-409(p)1(rz)-1(y)1(nosi\\242)-409(i)-409(c)27(h)1(o)-28(cia\\273)-409(p)-28(op)1(atrze)-1(\\242)-409(na)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go.)-333(,)]TJ 27.879 -13.55 Td[({)-333(C)-1(\\363\\273)-333(tam)-1(?)-333({)-333(s)-1(p)28(y)1(ta\\252)-334(d)1(o)-56(jad)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-399(A)-398(c\\363\\273)-399(b)28(y!)-398({)-399(op)1(rz)-1(\\246d\\252am)-399(j)1(u\\273)-399(w)28(orek)-399(w)28(e\\252)-1(n)29(y)-399(i)-398(o)-28(d)1(nies)-1(\\252am)-399(or)1(gani\\261cinej)-398(pi\\246\\242)]TJ -27.879 -13.549 Td[(pr)1(onik)28(\\363)28(w.)-481(Kun)29(te)-1(n)28(t)1(na)-481(b)28(y\\252a)-482(wielce)-1(..)1(.)-482(P)1(ietru)1(\\261)-482(ino)-481(jaki)1(\\261)-482(rozpalon)28(y)84(,)-481(je\\261)-1(\\242)-482(n)1(ie)-482(j)1(e)-482(i)]TJ 0 -13.549 Td[(mat)28(yjasi)-333(c)-1(i\\246giem)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Ob\\273ar\\252)-333(s)-1(i)1(\\246)-334(i)-333(t)28(yla.)]TJ 0 -13.55 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(tak,)-333(p)-27(ew)-1(n)1(ie)-1(.)1(..)-333(A)-334(i)-333(Jan)1(kiel)-333(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(\\252)-334(p)-27(o)-334(g\\246s)-1(i)1(...)]TJ 0 -13.549 Td[({)-333(Sp)1(rz)-1(edasz)-334(to?)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(a)-333(na)-333(zw)-1(i)1(e)-1(sn\\246)-334(t)1(o)-334(ku)1(p)-28(o)28(w)28(a\\252a)-334(b)-27(\\246d\\246!)]TJ 0 -13.549 Td[({)-333(Jak)-333(u)28(w)27(a\\273asz)-1(,)-333(tak)-333(zr\\363b,)-333(t)28(w)28(o)-56(ja)-333(w)-333(t)27(y)1(m)-334(g\\252o)28(w)27(a.)]TJ 0 -13.549 Td[({)-302(I)-302(u)-301(W)84(ac)27(hn)1(ik)28(\\363)28(w)-302(z)-1(n)1(o)28(w)-1(u)-301(si\\246)-302(p)-28(ob)1(i\\252y)83(,)-301(a\\273)-302(p)-28(o)-302(k)1(s)-1(i\\246dza)-302(c)28(ho)-28(d)1(z)-1(il)1(i,)-302(\\273e)-1(b)29(y)-302(rozbr)1(oi\\252...)]TJ -27.879 -13.55 Td[(a)-333(u)-333(P)28(acz)-1(es)-1(i\\363)28(w)-333(c)-1(iel\\246)-334(p)-27(ono)-333(si\\246)-334(u)1(d\\252a)28(w)-1(i)1(\\252o)-334(marc)28(h)28(wi\\241.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(mi)-333(ta)-334(p)-27(o)-333(t)28(ym)-334({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(n)1(iec)-1(ierp)1(liwie.)]TJ 0 -13.549 Td[({)-250(Organ)1(is)-1(ta)-250(je\\271dzi\\252)-251(p)-27(o)-250(s)-1(n)1(opk)56(ac)27(h)-250({)-250(p)-28(o)28(wiedzia\\252a)-251(p)-27(o)-250(c)27(h)28(wili)1(,)-251(al)1(e)-251(ju)1(\\273)-251(nie\\261)-1(mia\\252o.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273e\\261)-334(da\\252a?)]TJ 0 -13.549 Td[({)-284(Dwie)-284(p)1(rz)-1(y)1(gar\\261c)-1(ie)-284(ln)29(u)-284(o)-27(c)-1(ze)-1(sanego)-284(i)-284(czte)-1(r)1(y)-284(ja)-55(jk)56(a..)1(.)-284(P)28(o)28(wiedzia\\252,)-284(\\273e)-285(j)1(ak)-284(n)1(am)]TJ -27.879 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-391(p)-27(otrzeba,)-390(to)-391(d)1(a)-391(w)28(\\363z)-392(o)28(wsianki)-390(i)-390(p)-28(o)-27(c)-1(ze)-1(k)56(a)-391(n)1(a)-391(p)1(ie)-1(n)1(i\\241dze)-391(do)-390(lata)-390(alb)-28(o)-390(i)-391(n)1(a)]TJ 0 -13.549 Td[(o)-28(d)1(rob)-27(e)-1(k)-399(da.)-400(Nie)-400(wz)-1(i)1(\\246)-1(\\252am,)-400(p)-27(o)-400(c)-1(\\363\\273)-400(nam)-400(b)1(ra\\242)-400(o)-28(d)-400(n)1(ie)-1(go.)1(..)-400(p)1(rze)-1(cie)-1(\\273...)-399(nale\\273)-1(y)-399(nam)]TJ 0 -13.549 Td[(si\\246)-334(jesz)-1(cz)-1(e)-334(p)1(as)-1(zy)-333(o)-28(d)-333(o)-55(jca,)-334(wzielim)-334(i)1(no)-333(dw)28(a)-334(w)28(oz)-1(y)84(,)-333(a)-333(z)-334(t)28(ylu)-333(morg\\363)28(w...)]TJ 27.879 -13.549 Td[({)-318(Nie)-319(p)-27(\\363)-56(jd)1(\\246)-319(si\\246)-319(up)-27(omina\\242)-319(i)-318(tob)1(ie)-319(zak)55(azuj)1(\\246)-1(.)-318(W)84(e)-1(\\271)-319(o)-27(d)-318(organi)1(s)-1(t)28(y)-318(na)-318(o)-28(dr)1(ob)-28(ek,)]TJ -27.879 -13.549 Td[(a)-408(n)1(ie,)-408(to)-407(si\\246)-408(os)-1(tat)1(nie)-408(b)28(y)1(dl\\246)-408(spr)1(z)-1(eda,)-407(a)-408(p)-27(\\363kim)-407(\\273)-1(yw,)-407(o)-56(j)1(c)-1(a)-407(o)-408(n)1(ic)-408(pr)1(os)-1(i\\252)-407(nie)-408(b)-27(\\246d\\246,)]TJ 0 -13.55 Td[(rozumies)-1(z...)]TJ 27.879 -13.549 Td[({)-333(Roz)-1(u)1(m)-1(iem,)-333(o)-28(d)-333(organ)1(is)-1(t)28(y)-333(wz)-1(i)1(\\241\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(i)-333(z)-1(ar)1(obi\\246)-334(t)28(y)1(la,)-333(\\273)-1(e)-334(starcz)-1(y)84(,)-333(ni)1(e)-334(bu)1(c)-1(z)-334(i)1(no)-333(pr)1(z)-1(y)-333(lu)1(dziac)27(h)1(!)]TJ 0 -13.549 Td[({)-304(Dy)1(\\242)-305(n)1(ie)-304(p\\252acz)-1(\\246,)-304(n)1(ie)-1(.)1(..)-304(al)1(e)-305(w)28(e)-1(\\271)-304(o)-28(d)-303(m\\252ynar)1(z)-1(a)-304(z)-304(p)-27(\\363\\252)-304(k)28(orcz)-1(y)1(k)55(a)-303(j\\246c)-1(zm)-1(i)1(e)-1(n)1(ia)-304(na)]TJ -27.879 -13.549 Td[(k)56(as)-1(z\\246)-1(,)-333(to)-333(tan)1(ie)-1(j)-333(wyj)1(dzie)-334(n)1(i\\271li)-333(goto)28(w)27(\\241)-333(kup)-27(o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(p)-28(o)28(wiem)-334(dzisia)-56(j)-333(i)-333(zos)-1(tan)1(\\246)-334(n)1(a)-334(kt)1(\\363re)-1(n)-332(w)-1(i)1(e)-1(cz)-1(\\363r,)-333(to)-333(si\\246)-334(zm)-1(i)1(e)-1(le.)]TJ 0 -13.55 Td[(Hank)56(a)-377(wysz)-1(\\252a,)-376(a)-377(on)-377(p)-27(ozos)-1(ta\\252)-377(j)1(e)-1(sz)-1(cze)-378(ku)1(rz\\241c)-377(papi)1(e)-1(rosa,)-377(n)1(ie)-377(wtr\\241ca)-56(j\\241c)-377(si\\246)]TJ -27.879 -13.549 Td[(do)-262(roz)-1(m\\363)28(w,)-263(jak)1(ie)-263(c)27(h\\252op)1(i)-263(wiedli,)-262(a)-263(m\\363)27(wili)-262(w\\252)-1(a\\261ni)1(e)-264(o)-263(b)1(racie)-263(dzie)-1(d)1(z)-1(i)1(c)-1(o)28(wym)-263(z)-264(W)84(\\363lki)1(.)]TJ 27.879 -13.549 Td[({)-392(Jac)-1(ek)-393(m)28(u)-392(b)28(y\\252o,)-392(z)-1(n)1(a\\252e)-1(m)-393(go)-392(dob)1(rze)-1(!)-392({)-393(za)28(w)27(o\\252a\\252)-392(B)-1(art)1(e)-1(k)-392(w)27(c)28(ho)-28(d)1(z)-1(\\241c)-393(n)1(a)-393(ten)]TJ -27.879 -13.549 Td[(cz)-1(as)-334(d)1(o)-334(i)1(z)-1(d)1(e)-1(b)1(ki.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(wiecie)-334(p)-27(e)-1(wni)1(e)-1(,)-333(\\273e)-334(p)-28(o)28(wr\\363)-27(c)-1(i\\252)-333(z)-334(d)1(ale)-1(k)1(ic)27(h)-333(kr)1(a)-56(j)1(\\363)27(w.)]TJ 0 -13.55 Td[({)-333(Nie)-1(,)-333(m)28(y\\261la\\252e)-1(m)-333(na)28(w)27(et,)-333(\\273)-1(e)-333(ju\\273)-333(da)28(wno)-333(p)-28(omar\\252!)]TJ 0 -13.549 Td[({)-333(\\233ywie)-1(,)-333(b)-27(o)-333(c)-1(o\\261)-334(ze)-334(d)1(w)-1(ie)-333(niedziele)-334(tem)27(u)1(,)-333(jak)-333(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252.)]TJ\nET\nendstream\nendobj\n663 0 obj <<\n/Type /Page\n/Contents 664 0 R\n/Resources 662 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 649 0 R\n>> endobj\n662 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n667 0 obj <<\n/Length 8620      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(205)]TJ -330.353 -35.866 Td[({)-455(W)83(r)1(\\363)-28(c)-1(i)1(\\252,)-455(ale)-456(p)-27(o)28(w)-1(i)1(adali,)-455(\\273e)-456(co\\261)-456(n)1(ie)-1(sp)-27(e)-1(\\252na)-455(r)1(oz)-1(u)1(m)27(u.)-455(W)84(e)-456(d)1(w)27(or)1(z)-1(e)-455(nie)-455(c)27(hce)]TJ -27.879 -13.549 Td[(mie)-1(szk)55(a\\242)-417(i)-417(pr)1(z)-1(eni\\363s\\252)-417(s)-1(i)1(\\246)-418(d)1(o)-417(las)-1(u)-416(do)-417(b)-27(oro)28(w)27(ego,)-417(sam)-418(se)-418(wsz)-1(ystk)28(o)-417(nar)1(z)-1(\\241d)1(z)-1(a,)-416(c)-1(zy)]TJ 0 -13.549 Td[(jad)1(\\252o,)-348(cz)-1(y)-347(te\\273)-348(ub)1(i\\363r,)-347(a\\273)-348(to)-348(d)1(z)-1(iwn)1(o)-348(ws)-1(zystkim,)-348(a)-347(wie)-1(cz)-1(or)1(am)-1(i)-347(n)1(a)-348(s)-1(k)1(rzypk)56(ac)27(h)-347(wy-)]TJ 0 -13.549 Td[(gry)1(w)27(a,)-373(cz)-1(\\246s)-1(t)1(o)-374(g\\246sto)-373(to)-373(i)-373(p)-28(o)-373(d)1(rogac)27(h)-372(go)-373(s)-1(p)-27(ot)28(yk)56(a)-56(j)1(\\241,)-373(p)-27(o)-374(t)28(y)1(c)27(h)-373(mogi\\252k)56(ac)27(h)-372(r\\363\\273)-1(n)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(na)-333(kt\\363r)1(yc)27(h)-333(p)1(rzygryw)28(a...)]TJ 27.879 -13.55 Td[({)-445(M\\363)28(wili)-444(mi,)-445(\\273e)-446(p)-27(o)-445(wsiac)27(h)-444(c)27(h)1(o)-28(dzi)-445(i)-444(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-444(s)-1(i\\246)-445(wyp)28(y)1(tuj)1(e)-446(o)-445(j)1(akiego\\261)]TJ -27.879 -13.549 Td[(Ku)1(b)-28(\\246.)]TJ 27.879 -13.549 Td[({)-333(O)-333(Kub)-27(\\246)-1(!)-333(Ni)1(e)-334(jedn)1(e)-1(m)28(u)-333(psu)-333(\\212yse)-1(k.)]TJ 0 -13.549 Td[({)-414(P)1(rze)-1(zwis)-1(k)56(a)-413(nie)-414(p)-27(o)28(wiada,)-413(Kub)-27(\\246)-414(j)1(akiego\\261)-414(s)-1(zuk)56(a,)-413(kt\\363ren)-413(go)-414(mia\\252)-414(p)-27(ono)-413(z)]TJ -27.879 -13.549 Td[(w)28(o)-56(jn)29(y)-333(w)-1(y)1(nie\\261)-1(\\242)-334(i)-333(o)-27(d)-333(\\261)-1(mierci)-334(u)1(c)27(h)1(roni)1(\\242)-1(!)]TJ 27.879 -13.549 Td[({)-327(By\\252)-328(ci)-327(i)-327(u)-327(n)1(as)-328(Ku)1(ba,)-327(k)1(t\\363ren)-327(do)-327(b)-27(oru)-327(z)-327(pan)1(am)-1(i)-327(p)-27(osz)-1(ed\\252,)-327(ale)-327(te)-1(n)-326(p)-28(omar\\252!)]TJ -27.879 -13.55 Td[({)-333(rzuci\\252)-334(An)29(te)-1(k)-333(i)-333(p)-27(o)-28(dn)1(i\\363s)-1(\\252)-333(si\\246)-1(,)-333(b)-27(o)-333(ju\\273)-333(Mateusz)-334(wrz)-1(esz)-1(cz)-1(a\\252)-333(z)-1(a)-333(\\261c)-1(ian)1(\\241:)]TJ 27.879 -13.549 Td[({)-333(Wyc)27(h)1(o)-28(d)1(\\271)-1(ta,)-333(co)-334(to,)-333(d)1(o)-334(p)-27(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(or)1(ku)-333(b)-27(\\246)-1(d)1(z)-1(ieta)-333(p)-28(o\\252edn)1(io)28(w)27(ali)1(!)]TJ 0 -13.549 Td[(An)28(tk)56(a)-333(p)-28(or)1(w)27(a\\252a)-333(z)-1(\\252o\\261\\242)-1(,)-333(-\\273)-1(e)-333(w)-1(y)1(bieg\\252)-334(i)-333(za)28(w)27(o\\252a\\252:)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(rz)-1(y)1(j)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(pr)1(\\363\\273)-1(n)1(icy)83(,)-333(s\\252)-1(y)1(s)-1(zym)27(y)-333(wsz)-1(ysc)-1(y)84(.)]TJ 0 -13.549 Td[({)-314(Ob)1(\\273)-1(ar)1(\\252)-314(s)-1(i)1(\\246)-315(mi\\246s)-1(em,)-314(to)-314(k)1(rz)-1(y)1(k)55(an)1(iem)-315(u)1(lg\\246)-314(s)-1(p)1(ra)28(wia)-314(k)56(a\\252du)1(no)28(wi)-314({)-314(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(Bartek.)]TJ 27.879 -13.549 Td[({)-333(I...)-333(krzycz)-1(y)84(,)-333(b)28(y)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ed)-333(m)-1(\\252y)1(narze)-1(m)-333(z)-1(as\\252u\\273y\\242)-334({)-333(dor)1(z)-1(u)1(c)-1(i\\252)-333(kt\\363r)1(y\\261)-1(.)]TJ 0 -13.549 Td[({)-402(Przy)-402(jad)1(le)-403(si\\246)-403(wylega)-56(j)1(\\241,)-403(p)-27(orad)1(z)-1(a)-55(j\\241,)-402(gosp)-28(o)-28(d)1(arzy)-402(juc)28(h)28(y)-402(ud)1(a)-56(j)1(\\241,)-403(a)-402(ca\\252)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(p)-27(ortek)-333(nie)-334(p)-27(ok)56(a\\273)-1(\\241)-333(mam)-1(r)1(ota\\252)-334(w)28(c)-1(i)1(\\241\\273)-334(Mateusz)-1(.)-333(')]TJ 27.879 -13.549 Td[({)-333(Do)-334(w)28(as)-334(p)1(ije,)-333(An)28(toni)1(,)-333(do)-333(w)27(as!)]TJ 0 -13.55 Td[({)-260(Za)28(wrzyj)-260(p)29(ys)-1(k)-259(i)-260(w)28(e)-1(\\271)-260(oz\\363r)-260(za)-260(z\\246)-1(b)29(y)83(,)-259(b)28(ym)-260(c)-1(i)-259(go)-260(n)1(ie)-260(przyci\\241\\252,)-260(a)-259(o)-28(d)-260(gosp)-27(o)-28(dar)1(z)-1(y)]TJ -27.879 -13.549 Td[(ci)-334(w)28(ara!)-333({)-333(wrz)-1(asn\\241\\252)-333(An)28(tek,)-333(goto)28(wy)-333(ju\\273)-333(na)-333(w)-1(szys)-1(tk)28(o.)]TJ 27.879 -13.549 Td[(Ale)-378(Mateusz)-378(z)-1(amil)1(k\\252,)-378(in)1(o)-378(j)1(ak)-378(ten)-378(zb)-27(\\363)-56(j)-377(s)-1(p)-27(ogl\\241d)1(a\\252,)-378(a)-378(j)1(u\\273)-378(ca\\252y)-378(d)1(z)-1(ie\\253)-377(s)-1(\\252o)28(w)27(a)]TJ -27.879 -13.549 Td[(ni)1(e)-414(p)1(rze)-1(m\\363)28(w)-1(i)1(\\252)-413(do)-413(n)1(ik)28(ogo,)-413(ale)-413(za)-413(rob)-27(ot\\241)-413(An)28(tk)28(o)28(w)28(\\241)-413(pil)1(nie)-413(bacz)-1(y)1(\\252)-413(i)-413(str\\363\\273o)27(w)28(a\\252)-413(go)]TJ 0 -13.549 Td[(na)-306(k)56(a\\273)-1(d)1(ym)-307(k)1(roku)1(,)-307(i)1(no)-306(pr)1(z)-1(ycz)-1(epi)1(\\242)-307(s)-1(i)1(\\246)-307(ni)1(e)-307(m)-1(\\363g\\252,)-306(b)-27(o)-307(t)1(am)27(ten)-306(tak)-306(rob)1(i\\252)-307(r)1(z)-1(ete)-1(l)1(nie,)-306(\\273)-1(e)]TJ 0 -13.55 Td[(sam)-356(m\\252ynar)1(z)-1(,)-354(kt\\363ren)-355(p)1(ar\\246)-355(raz)-1(y)-354(dzienni)1(e)-356(p)1(rzyc)27(h)1(o)-28(dzi\\252)-355(na)-355(r)1(ob)-28(ot\\246,)-355(to)-355(sp)-27(os)-1(tr)1(z)-1(eg\\252)-355(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(p)1(ie)-1(r)1(w)-1(sze)-1(j)-333(wyp)1(\\252ac)-1(ie)-333(t)27(y)1(go)-28(dn)1(io)28(w)27(ej)-333(p)-27(os)-1(t\\241)-28(p)1(i\\252)-333(m)27(u)-333(n)1(a)-334(ca\\252e)-334(trzy)-333(z)-1(\\252ote.)]TJ 27.879 -13.549 Td[(Mateusz)-334(si\\246)-334(w\\261c)-1(iek)56(a\\252)-334(p)-27(ote)-1(m,)-333(m\\252ynar)1(z)-1(o)28(wi)-333(do)-333(o)-28(c)-1(z\\363)28(w)-334(sk)55(ak)56(a\\252,)-333(ale)-334(t)1(e)-1(n)-333(r)1(z)-1(ek\\252:)]TJ 0 -13.549 Td[({)-333(Dobr)1(y\\261)-334(mi)-333(t)27(y)84(,)-333(dob)1(ry)-333(mi)-334(i)-333(on)1(,)-333(dob)1(ry)-333(m)-1(i)-333(k)56(a\\273dy)84(,)-334(k)1(t\\363ren)-333(rze)-1(teln)1(ie)-334(pr)1(ac)-1(u)1(je.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)1(no)-333(m)-1(n)1(ie)-334(p)1(rze)-1(z)-334(z\\252o\\261)-1(\\242)-333(pan)-333(j)1(e)-1(m)28(u)-333(p)-28(ost\\241)-28(p)1(i\\252.)]TJ 0 -13.55 Td[({)-372(W)83(ar)1(t)-373(j)1(e)-1(st)-372(t)27(y)1(le)-373(co)-373(Bartek,)-372(a)-372(m)-1(o\\273e)-373(i)-372(wi\\246)-1(ce)-1(j)1(,)-372(tom)-373(p)-27(os)-1(t\\241)-27(pi\\252.)-372(Sp)1(ra)28(wiedliwy)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)-333(j)1(e)-1(ste)-1(m,)-333(ni)1(e)-1(c)27(h)-332(k)55(a\\273dy)-333(o)-333(t)28(ym)-334(wie.)]TJ 27.879 -13.549 Td[({)-329(A)-329(b)-27(o)-329(cisn\\246)-329(w)-1(szys)-1(tk)28(o)-328(do)-329(stu)-329(d)1(iab)1(\\252)-1(\\363)28(w)-329(i)-328(niec)27(h)-328(s)-1(e)-329(pan)-328(sam)-330(sta)-55(je)-329(do)-329(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.549 Td[({)-333(grozi\\252.)]TJ 27.879 -13.549 Td[({)-427(A)-426(c)-1(i\\261ni)1(j,)-427(p)-27(osz)-1(u)1(k)55(a)-55(j)-427(b)1(u\\252ek,.)-426(kiedy)-426(c)-1(i)-426(c)27(hl)1(e)-1(b)-426(nie)-427(sm)-1(ak)1(uje,)-427(i)1(d\\271,)-427(tar)1(tak)-427(p)-27(o-)]TJ -27.879 -13.549 Td[(pr)1(o)28(w)27(ad)1(z)-1(i)-451(Boryn)1(a,)-451(i)-452(d)1(o)-451(te)-1(go)-451(z)-1(a)-451(cz)-1(tery)-451(z\\252ote)-452(na)-451(d)1(z)-1(ie\\253!)-451(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-451(m\\252)-1(y)1(narz)-451(z)-1(e)]TJ 0 -13.55 Td[(\\261m)-1(iec)27(h)1(e)-1(m,)-368(b)-28(o)-368(an)1(o)-369(tak)-368(z)-369(r)1(oz)-1(m)28(ys)-1(\\252em)-369(wsz)-1(ystk)28(o)-368(ryc)28(h)28(to)28(w)27(a\\252,)-368(b)28(y)-368(mie)-1(\\242)-368(taniej)-368(rob)-27(ot-)]TJ 0 -13.549 Td[(ni)1(k)55(a.)]TJ 27.879 -13.549 Td[(P)28(omiark)28(o)28(w)28(a\\252)-311(si\\246)-311(wnet)-311(Mat)1(e)-1(u)1(s)-1(z,)-311(\\273e)-311(m)-1(\\252y)1(narz)-311(n)1(ie)-311(ust\\241)-28(p)1(i)-311(i)-310(ni)1(e)-311(da)-310(s)-1(i\\246)-311(n)1(as)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(sz)-1(y\\242,)-344(to)-344(n)1(ie)-344(nasta)27(w)28(a\\252)-344(wi\\246)-1(cej,)-344(sc)27(h)1(o)27(w)28(a\\252)-344(z)-1(\\252o\\261\\242)-345(d)1(o)-344(An)28(tk)56(a)-344(g\\252\\246b)-28(ok)28(o)-344(za)-344(pazuc)28(h\\246)-344(\\273)-1(e)-344(go)]TJ 0 -13.549 Td[(tam)-402(\\273ywym)-401(ogniem)-402(p)1(ie)-1(k)1(\\252)-1(a,)-401(al)1(e)-402(dla)-401(lu)1(dzi)-401(z)-1(r)1(obi\\252)-401(s)-1(i)1(\\246)-402(jakb)29(y)-401(m)-1(i)1(\\246)-1(ksz)-1(y)1(m)-402(i)-401(wyrozu-)]TJ 0 -13.55 Td[(mialsz)-1(ym,)-333(s)-1(p)-27(ostrze)-1(gli)-333(to)-333(w)-333(lot,)-333(a)-334(Bart)1(e)-1(k)-333(s)-1(p)1(lu)1(n\\241\\252)-333(na)-333(to)-334(i)-333(r)1(z)-1(ek\\252)-333(do)-333(dru)1(gic)27(h)1(:)]TJ 27.879 -13.549 Td[({)-426(G\\252up)1(i)-427(j)1(ak)28(o)-427(t)1(e)-1(n)-426(p)1(s)-1(iak)1(,)-427(co)-427(n)1(ie)-427(m\\363g\\252)-427(u)1(gry\\271\\242)-427(bu)1(ta,)-426(dosta\\252)-427(w)-426(z)-1(\\246b)28(y)84(,)-427(t)1(o)-427(si\\246)]TJ\nET\nendstream\nendobj\n666 0 obj <<\n/Type /Page\n/Contents 667 0 R\n/Resources 665 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n665 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n671 0 obj <<\n/Length 10252     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(206)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(teraz)-313(d)1(o)-312(niego)-312(\\252)-1(asi.)-312(My)1(\\261)-1(la\\252,)-312(\\273e)-313(\\252ask)28(\\246)-313(p)-27(os)-1(iad)1(\\252,)-312(a)-313(t)1(ak)-312(s)-1(amo)-312(go)-313(p)1(rze)-1(gon)1(i\\241,)-312(niec)27(h)-311(s)-1(i\\246)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-333(lepsz)-1(y)-333(tr)1(a\\014...)-333(za)28(w)-1(\\273dy)-333(tak)-333(z)-333(b)-28(ogacz)-1(ami)-333(b)28(yw)28(a...)]TJ 27.879 -13.549 Td[(An)28(tk)28(o)28(wi)-310(z)-1(a\\261)-310(z)-1(ar)1(\\363)27(wn)1(o)-311(wsz)-1(ystk)28(o)-310(b)28(y\\252o,)-310(ani)-310(r)1(ad)-310(b)28(y\\252)-310(z)-311(p)-27(o)-28(d)1(w)-1(y)1(\\273)-1(ki)1(,)-310(ani)-310(c)-1(i)1(e)-1(sz)-1(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(go)-357(z)-1(b)28(y)1(tnio,)-357(\\273e)-358(Mateusz)-1(o)28(wi)-357(z)-1(mi\\246k\\252a)-358(r)1(ur)1(a)-358(i)-357(\\273)-1(e)-357(w)-1(i)1(e)-1(\\261)-358(z)-358(n)1(iego)-358(p)1(rze)-1(kp)1(iw)28(a\\252)-1(a,)-357(o)-357(c)-1(zym)]TJ 0 -13.549 Td[(p)-27(o)27(wiad)1(ali)-243(n)1(a)-243(rob)-27(o)-28(cie)-1(,)-242(t)27(y)1(le)-244(go)-243(t)1(o)-243(ob)-28(c)28(ho)-28(d)1(z)-1(i\\252o)-243(r)1(az)-1(em)-1(,)-242(c)-1(o)-243(ten)-243(\\252o\\253)1(s)-1(ki)-242(rok)-243(alb)-27(o)-243(i)-243(mni)1(e)-1(j)1(.)]TJ 0 -13.55 Td[(Nie)-433(d)1(la)-433(p)1(\\252)-1(acy)-432(robi)1(\\252)-1(,)-432(to)-433(i)1(no)-433(Han)1(k)28(\\246)-433(c)-1(iesz)-1(y\\252o,)-432(rob)1(i\\252,)-433(b)-27(o)-433(m)28(u)-433(si\\246)-433(tak)-432(p)-28(o)-27(doba\\252o,)-432(a)]TJ 0 -13.549 Td[(gdy)1(b)28(y)-332(ze)-1(c)28(hcia\\252)-332(b)1(rz)-1(u)1(c)27(h)1(e)-1(m)-332(d)1(o)-332(g\\363ry)-331(w)-1(y)1(le)-1(gi)1(w)27(a\\242)-332({)-332(wyl)1(e)-1(giw)28(a\\252b)28(y)-332(si\\246,)-332(c)28(ho)-28(\\242b)28(y)-332(si\\246)-332(tam)]TJ 0 -13.549 Td[(ni)1(e)-236(wiem)-235(c)-1(o)-235(sta\\252o.)-235(A)-235(\\273e)-236(u)1(p)-28(o)-27(doba\\252)-235(sobi)1(e)-236(w)-235(rob)-27(o)-28(cie,)-235(to)-235(si\\246)-236(w)-235(n)1(ie)-1(j)-234(pr)1(os)-1(to)-235(zapami\\246ta\\252)]TJ 0 -13.549 Td[(i)-375(c)28(ho)-28(d)1(z)-1(i)1(\\252)-375(jak)-374(te)-1(n)-374(k)28(o\\253)-374(w)-375(kieracie)-1(,)-374(c)-1(o)-374(i)-375(ni)1(e)-376(p)-27(op)-27(\\246)-1(d)1(z)-1(an)29(y)83(,)-374(a)-375(w)-375(k)28(\\363\\252k)28(o)-375(bi)1(e)-1(ga,)-374(p)-28(\\363ki)-374(go)]TJ 0 -13.549 Td[(ni)1(e)-334(z)-1(at)1(rz)-1(y)1(m)-1(a)-55(j\\241.)]TJ 27.879 -13.549 Td[(I)-306(tak)-307(sz)-1(ed\\252)-306(dzie\\253)-306(z)-1(a)-306(dn)1(ie)-1(m,)-306(t)28(ydzie\\253)-306(z)-1(a)-306(t)28(ygo)-28(d)1(niem)-307(a\\273)-307(d)1(o)-307(sam)27(yc)28(h)-306(Go)-28(d)1(\\363)27(w)-306(w)]TJ -27.879 -13.55 Td[(ci\\246)-1(\\273kiej)-389(i)-389(b)-27(ez)-1(u)1(s)-1(tan)1(nej)-389(p)1(rac)-1(y)84(,)-389(a\\273)-389(m)27(u)-388(z)-390(w)28(olna)-389(p)1(rzyc)-1(i)1(c)27(h\\252a)-389(d)1(usz)-1(a)-389(i)-389(j)1(akb)28(y)-389(skrzep\\252a)]TJ 0 -13.549 Td[(na)-291(l)1(\\363)-28(d,)-290(\\273)-1(e)-291(z)-1(go\\252a)-291(n)1(ie)-1(p)-27(o)-28(d)1(obn)28(y)-290(b)28(y\\252)-291(d)1(o)-291(da)28(wnego.)-291(Dz)-1(i)1(w)27(o)28(w)28(ali)-291(si\\246)-292(t)1(e)-1(m)28(u)-291(lu)1(dzie)-292(i)-290(r\\363\\273nie)]TJ 0 -13.549 Td[(o)-349(t)28(ym)-349(m\\363)27(wil)1(i.)-349(Ale)-349(to)-349(b)28(y\\252o)-349(j)1(e)-1(n)1(o)-349(z)-349(w)-1(i)1(e)-1(rzc)27(h)28(u)1(,)-349(d)1(la)-349(lu)1(dzkic)27(h)-348(o)-28(cz)-1(\\363)28(w,)-349(b)-27(o)-349(na)-349(wn\\241t)1(rz)-1(u)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-344(b)29(y\\252o)-344(r\\363\\273nie)-344({)-344(j)1(ak)28(o)-344(w)-344(tej)-344(w)28(o)-28(d)1(z)-1(ie)-344(b)28(y)1(s)-1(tr)1(e)-1(j)-343(i)-344(g\\252\\246b)-28(oki)1(e)-1(j)1(,)-344(kt\\363r)1(\\241)-344(mr\\363z)-344(w)-344(lo)-28(d)1(y)]TJ 0 -13.549 Td[(oku)1(je)-316(i)-315(\\261ni)1(e)-1(gi)-315(p)1(rzys)-1(y)1(pi\\241)-315({)-315(a)-315(b)-28(e\\252k)28(o)-28(c)-1(ze)-316(ci\\246gie)-1(m,)-315(sz)-1(u)1(m)-1(i)1(,)-315(h)28(uk)56(a,)-315(\\273e)-316(ani)-315(cz)-1(\\252ek)-315(s)-1(i)1(\\246)-316(sp)-28(o-)]TJ 0 -13.55 Td[(dzieje,)-358(kiej)-358(p)-27(\\246)-1(kn)1(ie)-359(p)-27(o)28(w)-1(\\252ok)56(a)-358(i)-358(w)27(o)-27(dy)-358(lu)1(n\\241..)1(.)-359(T)84(ak)-358(c)-1(i)-358(b)28(y\\252o)-358(i)-358(w)-358(nim;)-358(rob)1(i\\252,)-358(haro)28(w)28(a\\252,)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-332(c)-1(o)-331(do)-331(grosz)-1(a)-331(o)-28(d)1(da)28(w)27(a\\252)-331(\\273)-1(on)1(ie,)-332(w)-331(dom)27(u)-331(p)1(rze)-1(siady)1(w)27(a\\252)-331(w)-1(i)1(e)-1(cz)-1(or)1(am)-1(i,)-331(a)-331(do-)]TJ 0 -13.549 Td[(br)1(y)-361(b)28(y\\252)-361(jak)-361(n)1(igdy)84(,)-361(c)-1(ic)28(h)28(y)84(,)-362(sp)-27(ok)28(o)-56(j)1(n)28(y)83(,)-361(d)1(z)-1(ieci)-361(z)-1(ab)1(a)27(wia\\252,)-361(p)-27(om)-1(aga\\252)-361(w)-362(gosp)-27(o)-28(dar)1(s)-1(t)28(wie,)]TJ 0 -13.549 Td[(marnego)-341(s\\252o)28(w)27(a)-340(nie)-341(r)1(z)-1(ek\\252)-341(n)1(ik)28(om)27(u)1(,)-341(n)1(ie)-341(wyrze)-1(k)56(a\\252)-340(i)-341(j)1(akb)28(y)-340(o)-341(ws)-1(zystkic)28(h)-340(krzywdac)27(h)]TJ 0 -13.549 Td[(zap)-28(omni)1(a\\252)-420(al)1(e)-420(ni)1(e)-420(zw)-1(i)1(\\363)-28(d\\252)-419(t)28(ym)-419(ws)-1(zys)-1(tk)1(im)-420(Han)1(c)-1(zyn)1(e)-1(go)-419(se)-1(r)1(c)-1(a,)-419(n)1(ie)-1(;)-418(ju\\261ci,)-419(\\273)-1(e)-419(ra-)]TJ 0 -13.55 Td[(do)28(w)28(a\\252a)-438(si\\246)-437(te)-1(j)-436(prze)-1(mian)1(ie)-438(i)-437(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)27(a\\252a)-437(za)-438(n)1(i\\241)-437(Bogu)-437(gor\\241co,)-437(a)-437(z)-1(ab)1(ie)-1(ga\\252a)-437(k)28(o\\252o)]TJ 0 -13.549 Td[(ni)1(e)-1(go,)-393(j)1(ak)-394(mog\\252a,)-393(w)-394(o)-28(czy)-394(m)28(u)-393(ci\\246)-1(gi)1(e)-1(m)-394(p)1(atrzy\\252a,)-393(b)28(y)-393(o)-28(d)1(gadn\\241\\242,)-393(c)-1(ze)-1(go)-393(p)-27(otrze)-1(b)1(u-)]TJ 0 -13.549 Td[(je,)-338(s\\252u\\273k)55(\\241)-338(m)28(u)-338(b)28(y)1(\\252)-1(a)-338(n)1(a)-56(j)1(wie)-1(r)1(niejsz)-1(\\241)-338(i)-337(na)-56(j)1(pami\\246tliwsz)-1(\\241,)-338(al)1(e)-339(i)-338(cz)-1(\\246s)-1(t)1(o)-339(\\252ap)1(a\\252a)-338(o)-28(c)-1(zami)]TJ 0 -13.549 Td[(jego)-312(sm)27(u)1(tne)-312(sp)-28(o)-55(jr)1(z)-1(enia,)-311(c)-1(z\\246s)-1(to)-311(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252a)-311(s)-1(tr)1(w)27(o\\273ona)-312(j)1(e)-1(go)-311(w)-1(zdy)1(c)27(h\\363)28(w)-312(cic)27(h)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)-411(opad)1(a\\252y)-412(j)1(e)-1(j)-411(r)1(\\246)-1(ce)-412(i)-412(z)-411(z)-1(amar\\252ym)-412(se)-1(r)1(c)-1(em)-412(ogl\\241d)1(a\\252a)-412(si\\246)-412(dok)28(o\\252a,)-411(c)27(h)1(c)-1(\\241c)-412(p)1(rze)-1(-)]TJ 0 -13.55 Td[(widzie\\242)-1(,)-374(s)-1(k)56(\\241d)-374(pr)1(z)-1(yj)1(dzie)-375(ni)1(e)-1(sz)-1(cz)-1(\\246\\261c)-1(ie,)-375(b)-27(o)-375(d)1(obr)1(z)-1(e)-375(cz)-1(u\\252a,)-374(\\273)-1(e)-375(w)-375(n)1(im)-375(w)28(a\\273)-1(y)-374(s)-1(i\\246)-375(cos)-1(i)1(k)]TJ 0 -13.549 Td[(strasz)-1(n)1(e)-1(go,)-355(c)-1(osik,)-355(co)-356(in)1(o)-356(p)1(rze)-1(z)-356(mo)-28(c)-356(zdzier\\273)-1(a,)-355(co)-356(i)1(no)-356(p)1(rzyw)28(ar\\252o,)-355(przytai\\252o)-355(s)-1(i)1(\\246)-1(,)-355(a)]TJ 0 -13.549 Td[(ss)-1(ie)-333(m)27(u)-333(d)1(usz)-1(\\246,)-333(s)-1(sie)-1(.)1(..)]TJ 27.879 -13.549 Td[(On)-292(z)-1(a\\261)-293(an)1(i)-293(s\\252o)27(w)28(a)-293(ni)1(e)-294(r)1(z)-1(ek\\252,)-293(\\271le)-293(m)27(u)-292(j)1(e)-1(st)-293(c)-1(zy)-293(d)1(obr)1(z)-1(e,)-293(z)-293(rob)-27(ot)28(y)-293(wraca\\252)-293(pr)1(os)-1(to)]TJ -27.879 -13.549 Td[(do)-312(d)1(om)27(u,)-312(o)-312(\\261w)-1(i)1(taniu)-312(si\\246)-313(zry)1(w)27(a\\252,)-312(kiedy)-312(p)1(rze)-1(d)1(z)-1(w)28(aniali)-312(n)1(a)-312(rorat)28(y)84(,)-312(\\273)-1(e)-313(co)-312(dni)1(a)-313(p)1(rze)-1(-)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(dzi\\252)-296(k)28(o\\252o)-297(o\\261wie)-1(t)1(lonego)-296(k)27(o\\261cio\\252a,)-296(c)-1(o)-296(dn)1(ia)-296(z)-1(atr)1(z)-1(ym)28(yw)28(a\\252)-297(si\\246)-297(wpr)1(os)-1(t)-296(kr)1(uc)28(h)28(t)28(y)-296(p)-28(o-)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a\\242)-297(gr)1(ania)-295(organ)1(\\363)27(w,)-295(t)27(y)1(c)27(h)-295(m)27(u)1(z)-1(yc)28(kic)27(h)-295(g\\252os\\363)27(w,)-295(t)28(yc)27(h)-295(br)1(z)-1(mie\\253)-296(r)1(oz)-1(d)1(z)-1(w)28(onion)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(cic)27(h)28(y)1(c)27(h;)-334(przejm)27(u)1(j\\241cyc)27(h)1(,)-335(co)-335(jakb)29(y)-335(z)-335(m)-1(r)1(oz)-1(\\363)28(w)-335(d\\271wi\\246)-1(cz)-1(a\\252y)84(,)-335(j)1(akb)28(y)-335(z)-335(tej)-335(p)1(rze)-1(d)1(\\261)-1(wito-)]TJ 0 -13.549 Td[(w)28(e)-1(j)-277(s)-1(zaro\\261c)-1(i)-277(s)-1(i)1(\\246)-278(ro)-28(d)1(z)-1(i\\252y)84(,)-278(j)1(akb)28(y)-277(z)-278(t)27(y)1(c)27(h)-277(z)-1(\\363r)1(z)-279(miedzian)28(y)1(c)27(h)-277(p)-28(ob)1(rz\\246)-1(ki)1(w)27(a\\252y)-277(z)-279(l)1(o)-28(do)28(wyc)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252on)-415(i)-415(z)-415(z)-1(iemi)-415(przem)-1(ar)1(z)-1(\\252ej)-415(nios\\252y)-415(s)-1(i)1(\\246)-416(t\\246s)-1(k)1(n)28(ym,)-415(\\252am)-1(i\\241cym)-415(m)-1(ar)1(z)-1(eniem)-416(d)1(\\252u-)]TJ 0 -13.549 Td[(giego)-430(sn)28(u)1(,)-430(ci\\246\\273)-1(ki)1(e)-1(go)-429(s)-1(n)29(u)-429(z)-1(im)28(y)83(,)-429(i)-429(co)-430(d)1(nia)-429(pr)1(z)-1(yspi)1(e)-1(sz)-1(a\\252)-429(kroku)1(,)-429(b)28(y)-429(go)-430(n)1(ie)-430(u)1(jrze)-1(l)1(i)]TJ 0 -13.55 Td[(zas)-1(\\252uc)28(han)1(e)-1(go,)-284(i)-284(bieg\\252)-285(d)1(rug\\241)-284(s)-1(t)1(ron\\241)-284(s)-1(ta)28(wu,)-284(d)1(\\252)-1(u)1(\\273)-1(sz\\241,)-285(b)29(yle)-285(in)1(o)-285(n)1(ie)-285(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\242)-285(k)28(o\\252o)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(o)28(w)28(e)-1(go)-333(dom)28(u)-333(ni)1(e)-334(s)-1(p)-27(otk)56(a\\242)-334(n)1(ik)28(ogo.)]TJ 27.879 -13.549 Td[(Nik)28(ogo!)]TJ 0 -13.549 Td[(Dlatego)-389(te\\273)-389(i)-389(w)-389(ni)1(e)-1(d)1(z)-1(iele)-389(pr)1(z)-1(es)-1(i)1(adyw)28(a\\252)-389(k)56(am)-1(i)1(e)-1(n)1(ie)-1(m)-389(w)-389(d)1(om)27(u)1(,)-389(mim)-1(o)-388(pr\\363\\261b)]TJ -27.879 -13.549 Td[(Hank)1(i,)-355(b)28(y)-355(s)-1(ze)-1(d)1(\\252)-356(z)-356(n)1(i\\241)-356(d)1(o)-356(k)28(o\\261c)-1(i)1(o\\252)-1(a.)-355(Nie)-356(i)-355(n)1(ie)-1(.)-355(Ba\\252)-356(si\\246)-356(sp)-28(otk)56(ani)1(a)-356(z)-356(Jagn)1(\\241,)-355(dobr)1(z)-1(e)]TJ 0 -13.55 Td[(wiedzia\\252,)-333(\\273)-1(e)-334(n)1(ie)-334(zdzie)-1(r)1(\\273)-1(y)84(,)-333(nie)-333(w)-1(y)1(trzyma!)]TJ 27.879 -13.549 Td[(A)-400(p)1(rz)-1(y)-399(t)28(ym)-400(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-400(o)-27(d)-400(Bartk)56(a,)-400(z)-400(kt\\363r)1(ym)-400(s)-1(i\\246)-400(ni)1(e)-1(zgorze)-1(j)-399(s)-1(to)28(w)28(arzys)-1(zy\\252,)-400(i)]TJ\nET\nendstream\nendobj\n670 0 obj <<\n/Type /Page\n/Contents 671 0 R\n/Resources 669 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n669 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n674 0 obj <<\n/Length 9941      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(207)]TJ -358.232 -35.866 Td[(sam)-334(c)-1(zu\\252,)-333(\\273e)-334(wie)-1(\\261)-333(w)27(ci\\241\\273)-334(si\\246)-334(n)1(im)-334(za)-56(j)1(m)27(u)1(je)]TJ 27.879 -13.549 Td[(\\273e)-405(go)-404(pi)1(ln)28(uj)1(\\241)-404(i)-404(\\261le)-1(d)1(z)-1(\\241)-404(n)1(a)-404(k)55(a\\273dy)1(m)-405(kr)1(oku)-404(j)1(ak)-404(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(a,)-404(jakb)29(y)-404(s)-1(i)1(\\246)-405(zm)-1(\\363)28(wili)]TJ -27.879 -13.549 Td[(na)-288(n)1(iego)-288({)-289(n)1(ieraz)-288(b)-28(o)28(wiem)-289(sp)-28(ostrze)-1(ga\\252)-288(p)1(rzyc)-1(za)-56(j)1(one)-288(z)-1(a)-288(w)28(\\246)-1(g\\252ami)-288(o)-28(cz)-1(y)84(,)-288(n)1(ie)-1(r)1(az)-289(cz)-1(u)1(\\252,)]TJ 0 -13.549 Td[(jak)-424(si\\246)-425(ogl)1(\\241da)-56(j)1(\\241)-424(z)-1(a)-424(ni)1(m)-1(,)-424(j)1(ak)-424(le)-1(c\\241)-424(c)-1(iek)56(a)27(w)28(e,)-425(c)28(h)28(wytn)1(e)-425(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia,)-424(c)-1(o)-424(r)1(ade)-425(b)28(y)-424(d)1(o)]TJ 0 -13.549 Td[(dn)1(a)-379(d)1(usz)-1(y)-378(si\\246gn\\241\\242)-379(i)-378(wypat)1(ros)-1(zy\\242)-379(j)1(\\241)-379(z)-378(k)55(a\\273dego)-379(zam)27(y)1(s)-1(\\252u)1(,)-379(i)-378(p)1(rze)-1(j)1(rz)-1(e\\242)-379(n)1(a)-379(wskr\\363\\261.)]TJ 0 -13.55 Td[(Bola\\252y)-333(go)-334(te)-333(o)-28(c)-1(zy)83(,)-333(b)-27(o)-333(jakb)29(y)-334(\\261widr)1(e)-1(m)-333(s)-1(z\\252y)-334(p)1(rze)-1(z)-333(dusz\\246)-1(,)-333(sro)-28(d)1(z)-1(e)-334(b)-27(ola\\252y)84(.)]TJ 27.879 -13.549 Td[({)-355(Nie)-355(p)1(rz)-1(egry)1(z)-1(iec)-1(i)1(e)-1(,)-354(\\261)-1(cie)-1(r)1(wy)83(,)-355(n)1(ie)-355(pr)1(z)-1(egryziec)-1(ie)-355({)-355(sz)-1(epta\\252)-354(niena)28(wis)-1(t)1(nie,)-355(za-)]TJ -27.879 -13.549 Td[(cina)-55(j\\241c)-365(s)-1(i\\246)-365(w)-365(c)-1(oraz)-365(s)-1(r)1(o\\273)-1(sz)-1(y)1(m)-366(gn)1(ie)-1(wie)-365(na)-365(wsz)-1(ystki)1(c)27(h,)-365(\\273e)-366(j)1(e)-1(szc)-1(ze)-366(b)1(ardziej)-365(u)1(nik)56(a\\252)]TJ 0 -13.549 Td[(lu)1(dzi.)]TJ 27.879 -13.549 Td[({)-438(Nie)-439(p)-27(otrze)-1(b)1(a)-438(m)-1(i)-438(n)1(ik)28(ogo.)-438(T)27(yl)1(e)-439(mam)-439(z)-1(e)-438(s)-1(ob)1(\\241)-439(p)1(rzyjaciels)-1(t)28(w)28(a,)-438(\\273)-1(e)-438(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(tem)27(u)-286(p)-27(orad)1(z)-1(\\246)-286({)-286(p)-27(o)27(wiedzia\\252)-286(K\\252\\246b)-28(o)28(wi,)-286(kt)1(\\363re)-1(n)-285(m)27(u)-285(wyrzuca\\252)-1(,)-285(\\273)-1(e)-286(nigd)1(y)-286(do)-286(n)1(iego)-286(nie)]TJ 0 -13.55 Td[(za)-56(jr)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[(I)-373(p)1(ra)28(wd\\246)-373(rze)-1(k)1(\\252,)-373(\\273e)-373(le)-1(d)1(wie)-373(z)-1(e)-373(sob\\241)-372(p)-28(or)1(adzi\\252,)-373(p)1(ra)28(wd\\246;)-373(wzi\\241\\252)-373(si\\246)-373(b)28(y\\252)-372(m)-1(o)-28(cno)]TJ -27.879 -13.549 Td[(w)-378(gar\\261\\242)-1(,)-377(s)-1(ki)1(e)-1(\\252zna\\252)-378(du)1(s)-1(z\\246)-378(nib)28(y)-377(w)-378(te)-1(n)-377(k)56(an)28(tar)-378(\\273e)-1(l)1(az)-1(n)28(y)-377(i)-378(trzyma\\252)-378(krze)-1(p)1(k)28(o,)-378(n)1(ie)-378(p)-28(o-)]TJ 0 -13.549 Td[(pu)1(s)-1(zcz)-1(a\\252)-324(z)-324(u)29(w)-1(i)1(\\246)-1(zi)-324({)-323(ale)-324(j)1(u\\273)-324(m)27(u)-323(coraz)-324(cz)-1(\\246\\261)-1(ciej)-323(m)-1(d)1(la\\252a)-324(d)1(usz)-1(a)-323(z)-324(utr)1(ud)1(z)-1(enia)-323(i)-324(coraz)]TJ 0 -13.549 Td[(cz)-1(\\246\\261)-1(ciej)-268(c)28(hcia\\252o)-268(m)28(u)-268(si\\246)-268(ciepn\\241\\242)-268(wsz)-1(ystk)28(o)-267(z)-1(d)1(a\\242)-268(s)-1(i\\246)-268(n)1(a)-268(d)1(ol\\246)-268(.Z\\252a)-268(b)-27(\\246)-1(d)1(z)-1(i)1(e)-269(czy)-268(d)1(obra)-267({)]TJ 0 -13.55 Td[(zar\\363)28(w)-1(n)1(o)-308(m)28(u)-308(b)29(y\\252o,)-308(b)-27(o)-308(\\273ycie)-308(m)27(u)-307(mierz\\252)-1(o)-307(i)-308(p)1(rze)-1(\\273e)-1(r)1(a\\252)-308(go)-308(sm)27(u)1(te)-1(k)-307({)-308(g\\252\\246b)-28(ok)1(i)-308(sm)27(u)1(te)-1(k)1(,)]TJ 0 -13.549 Td[(co)-334(j)1(ak)-333(te)-1(n)-333(j)1(as)-1(tr)1(z)-1(\\241b)-333(wrzepi\\252)-333(s)-1(i)1(\\246)-334(w)-334(se)-1(r)1(c)-1(e)-334(p)1(az)-1(u)1(rami)-333(i)-333(dar\\252,)-333(i)-333(ozdzie)-1(r)1(a\\252.)]TJ 27.879 -13.549 Td[(Ci\\246\\273)-1(k)28(o)-251(m)28(u)-251(b)28(y)1(\\252o)-251(w)-251(t)28(ym)-251(jarzmie)-1(,)-250(c)27(kn)1(o,)-251(cias)-1(n)1(o)-251(i)-251(d)1(usz)-1(n)1(o,)-251(j)1(ak)-251(tem)27(u)-250(s)-1(p)-27(\\246)-1(t)1(anem)27(u)]TJ -27.879 -13.549 Td[(k)28(oni)1(o)27(wi)-333(w)-333(z)-1(agro)-27(dzie)-1(,)-333(j)1(ak)-333(te)-1(m)28(u)-333(psu)-333(na)-333(\\252a\\253cuc)28(h)28(u,)-333(j)1(ak...)-333(\\273e)-334(i)-333(nie)-333(w)-1(y)1(p)-28(o)28(wiedzie)-1(\\242!)]TJ 27.879 -13.549 Td[(Cz)-1(u)1(\\252)-241(s)-1(i)1(\\246)-242(j)1(ak)28(o)-241(to)-241(dr)1(z)-1(ew)27(o)-241(r)1(o)-28(dn)1(e)-1(,)-240(ob\\252amane)-241(pr)1(z)-1(ez)-242(wic)28(her)-241(i)-241(n)1(a)-241(zag\\252)-1(ad)1(\\246)-241(s)-1(k)56(az)-1(an)1(e)]TJ -27.879 -13.55 Td[(,)-333(a)-333(s)-1(c)27(h)1(n\\241ce)-334(p)-27(o)27(w)28(oli)-333(w)-333(s)-1(am)28(ym)-334(\\261ro)-28(d)1(ku)-333(kwitn)1(\\241c)-1(ego,)-333(z)-1(d)1(ro)28(w)27(ego)-333(s)-1(ad)1(u.)]TJ 27.879 -13.549 Td[(Bo)-28(\\242)-405(w)27(ok)28(o\\252o)-405(\\273yli)-405(l)1(udzie,)-405(b)28(y)1(\\252)-1(a)-404(w)-1(i)1(e)-1(\\261,)-405(\\273)-1(y)1(c)-1(ie)-405(wrza\\252o)-405(z)-1(wyk)1(\\252)-1(y)1(m)-406(g\\252\\246b)-28(ok)1(im)-405(b)-28(e\\252-)]TJ -27.879 -13.549 Td[(k)28(otem)-1(,)-395(plu)1(s)-1(k)56(a\\252o)-396(j)1(ak)28(o)-396(ta)-396(w)28(o)-28(d)1(a)-396(bi)1(e)-1(\\273\\241c)-1(a,)-395(rozle)-1(w)28(a\\252o)-396(si\\246)-396(w)27(ci\\241\\273)-396(jedn)1(akim,)-396(b)1(uj)1(n)28(ym,)]TJ 0 -13.549 Td[(rze)-1(\\271wym)-343(stru)1(m)-1(ieni)1(e)-1(m.)-342(Lip)-28(ce)-343(\\273y\\252y)-343(zwyk\\252ym,)-342(c)-1(o)-27(dzie)-1(n)1(n)28(ym)-343(\\273ycie)-1(m:)-342(a)-343(to)-342(c)27(h)1(rzc)-1(in)29(y)]TJ 0 -13.549 Td[(wypr)1(a)28(w)-1(i)1(ali)-267(u)-266(W)84(ac)27(h)1(nik)28(\\363)28(w;)-267(zr\\246k)28(o)28(w)-1(i)1(n)28(y)-267(o)-27(db)28(y)1(w)27(a\\252y)-266(s)-1(i\\246)-267(u)-266(K\\252\\246b)-27(\\363)27(w,)-266(c)27(ho)-27(\\242)-267(i)-267(b)-27(ez)-267(m)27(uzyki)1(,)]TJ 0 -13.55 Td[(ale)-282(z)-1(ab)1(a)28(w)-1(i)1(ali)-282(si\\246)-1(,)-281(jak)-282(n)1(a)-282(adw)28(e)-1(n)28(t)-281(przysta\\252o;)-282(to)-282(zno)28(wu)-282(zm)-1(ar)1(\\252)-1(o)-282(si\\246)-282(k)28(om)27(u)1(\\261)-1(,)-282(b)-27(o)-28(d)1(a)-56(j)-281(\\273)-1(e)]TJ 0 -13.549 Td[(tem)27(u)-252(Bartk)28(o)28(wi,)-252(kt)1(\\363re)-1(go)-252(to)-252(p)-27(o)-252(k)28(opan)1(iac)27(h)-252(zi\\246c)-1(iasze)-1(k)-252(tak)-252(p)-27(obi)1(\\252)-1(,)-252(\\273e)-253(c)28(h)28(yrl)1(a\\252,)-252(kw)27(\\246k)56(a\\252,)]TJ 0 -13.549 Td[(a\\273)-384(si\\246)-384(i)-383(przeni\\363s\\252)-384(d)1(o)-384(Abr)1(am)-1(k)56(a)-383(na)-383(piw)28(o;)-383(to)-384(Jagu)1(s)-1(t)28(yn)1(k)56(a)-384(zap)-28(ozw)28(a\\252)-1(a)-383(z)-1(n)1(o)28(w)-1(u)-383(d)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ci)-385(d)1(o)-385(s)-1(\\241d)1(\\363)28(w)-385(o)-385(wycugi;)-384(to)-385(i)1(nsz)-1(e)-385(jesz)-1(cz)-1(e)-385(spra)28(wy)-384(s)-1(z\\252y)83(,)-384(dru)1(gie,)-385(a)-384(w)-385(k)55(a\\273dej)-384(niemal)]TJ 0 -13.549 Td[(c)27(h)1(a-)-1(\\252u)1(pie)-269(co\\261)-269(no)28(w)28(e)-1(go;)-268(\\273)-1(e)-269(n)1(ar\\363)-28(d)-268(mia\\252)-269(o)-269(czym)-269(rad)1(z)-1(i\\242,)-269(z)-269(cz)-1(ego)-269(si\\246)-269(\\261m)-1(ia\\242)-269(al)1(b)-28(o)-268(i)-269(mar-)]TJ 0 -13.55 Td[(k)28(o)-28(ci\\242;)-260(a)-260(za\\261)-260(p)-27(o)-260(r\\363\\273n)28(yc)28(h)-260(c)28(ha\\252up)1(ac)27(h)-259(w)-260(d)1(\\252ugie)-260(wiec)-1(zory)-259(z)-1(imo)28(w)27(e)-260(zbi)1(e)-1(ra\\252y)-259(s)-1(i)1(\\246)-260(k)28(obiet)28(y)]TJ 0 -13.549 Td[(z)-376(k)56(\\241d)1(z)-1(iel\\241)-375(na)-375(op)1(rz\\246)-1(d)-374({)-376(co)-375(tam)-376(\\261mie)-1(c)28(h)28(u)-375(b)28(y)1(\\252o,)-375(m)-1(\\363)-55(j)-375(Jez)-1(u)1(s)-1(,)-375(co)-375(z)-1(ab)1(a)28(w)-1(y)84(,)-375(co)-376(gad)1(e)-1(k)1(,)]TJ 0 -13.549 Td[(co)-413(k)1(rz)-1(y)1(k)55(a\\253)1(,)-412(\\273)-1(e)-412(a\\273)-413(p)-27(o)-413(d)1(rogac)27(h)-411(s)-1(z\\252y)-412(te)-413(gzy)-412(w)27(es)-1(o\\252e!)-412(A)-412(w)-1(sz)-1(\\246dy)-412(co)-412(s)-1(w)28(ar\\363)28(w,)-412(przy-)]TJ 0 -13.549 Td[(jacielst)27(w,)-426(zm)-1(a)28(wia\\253,)-426(zale)-1(canek)-426(wys)-1(ta)28(w)28(a\\253)-426(pr)1(z)-1(ed)-426(c)27(ha\\252u)1(pami,)-426(kr\\246tani)1(n)28(y)83(,)-426(b)1(ijat)28(yk)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(ema)27(wia)-320(u)1(c)-1(ies)-1(zn)28(yc)28(h)-320({)-320(jak)28(ob)28(y)-320(w)-320(t)28(ym)-320(m)-1(r)1(\\363)27(w)28(cz)-1(ym)-320(alb)-27(o)-321(p)1(s)-1(zcz)-1(eln)28(ym)-320(ro)-55(jo)28(wis)-1(k)1(u)-320({)]TJ 0 -13.549 Td[(\\273e)-334(ino)-333(h)28(u)1(c)-1(za\\252o)-334(w)-333(c)27(h)1(a\\252)-1(u)1(pac)28(h.)]TJ 27.879 -13.55 Td[(A)-312(k)56(a\\273)-1(d)1(e)-1(n)-311(\\273)-1(y\\252)-312(p)-27(o)-312(s)-1(w)28(o)-56(j)1(e)-1(m)28(u,)-312(j)1(ak)-312(m)27(u)-311(s)-1(i\\246)-312(widzia\\252o,)-312(jak)-312(m)28(u)-312(sp)-28(osobn)1(iej)-312(b)28(y\\252o,)-312(a)]TJ -27.879 -13.549 Td[(sp)-28(o\\252ec)-1(znie)-333(z)-334(dr)1(ugimi,)-333(jak)-333(P)29(an)-333(B)-1(\\363g)-333(pr)1(z)-1(y)1(k)55(aza\\252.)]TJ 27.879 -13.549 Td[(Kto)-442(b)1(iedo)28(w)27(a\\252,)-441(z)-1(ab)1(ie)-1(ga\\252,)-441(k\\252op)-27(ota\\252)-442(s)-1(i\\246,)-442(k)1(to)-442(s)-1(i)1(\\246)-443(zaba)28(wia\\252)-442(i)-441(rad)-441(w)-443(k)1(ie)-1(l)1(is)-1(zki)]TJ -27.879 -13.549 Td[(pr)1(z)-1(edzw)27(an)1(ia\\252)-389(z)-389(p)1(rzyjacio\\252y)84(,)-389(kto)-388(s)-1(i)1(\\246)-389(pu)1(s)-1(zy\\252)-389(i)-388(wynosi\\252)-389(n)1(ad)-388(dru)1(gie,)-389(kt)1(o)-389(za)-389(dzieu-)]TJ 0 -13.549 Td[(c)27(h)1(am)-1(i)-346(si\\246)-347(u)1(gania\\252)-346(kto)-346(c)27(h)29(yrla\\252)-346(i)-346(na)-346(ksi\\246\\273)-1(\\241)-346(ob)-27(or\\246)-347(p)-27(ogl\\241da\\252,)-346(kt)1(o)-347(n)1(a)-347(ciep\\252ym)-346(przy-)]TJ 0 -13.55 Td[(pi)1(e)-1(c)28(ku)-314(le)-1(gi)1(w)27(a\\252,)-315(k)28(om)28(u)-314(rado\\261\\242)-315(b)28(y\\252a,)-314(k)28(om)27(u)-314(sm)27(utek,)-314(k)28(om)27(u)-314(za\\261)-316(n)1(i)-315(j)1(e)-1(d)1(no,)-314(ni)-314(tam)27(t)1(o)-315({)]TJ 0 -13.549 Td[(a)-333(w)-1(szys)-1(cy)-333(\\273)-1(yl)1(i)-333(gw)27(arn)1(o,)-333(z)-334(ca\\252)-1(ej)-333(mo)-28(cy)83(,)-333(du)1(s)-1(z\\241)-333(c)-1(a\\252\\241.)]TJ\nET\nendstream\nendobj\n673 0 obj <<\n/Type /Page\n/Contents 674 0 R\n/Resources 672 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n672 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n677 0 obj <<\n/Length 8962      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(208)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ino)-408(on)-407(jeden)-407(b)28(y\\252)-408(j)1(akb)28(y)-408(p)-27(oz)-1(a)-407(w)-1(si\\241,)-407(p)-28(oza)-408(lu)1(d\\271m)-1(i)-407(i)-408(c)-1(zu\\252)-408(si\\246)-408(jak)28(o)-408(t)1(e)-1(n)-407(ptak)]TJ -27.879 -13.549 Td[(ob)-27(c)-1(y)84(,)-225(strac)27(h)1(liwy)-225(a)-225(g\\252o)-27(dn)28(y)-225({)-224(\\273)-1(e)-225(c)27(ho)-27(\\242)-226(si\\246)-225(t\\252ucz)-1(e)-225(k)28(o\\252o)-225(jar)1(z)-1(\\241cyc)27(h)-224(okien,)-224(c)27(ho)-28(\\242)-225(wz)-1(d)1(yc)27(h)1(a)]TJ 0 -13.549 Td[(do)-376(p)-28(e\\252n)28(yc)28(h)-377(b)1(rog\\363)28(w)-1(,)-376(c)27(h)1(o)-28(\\242)-377(rad)-376(b)28(y)-377(d)1(usz)-1(\\241)-377(ca\\252\\241)-377(d)1(o)-377(lud)1(z)-1(i)-376({)-377(a)-377(n)1(ie)-377(w)-1(l)1(e)-1(ci;)-377(k)28(o\\252u)1(je)-377(in)1(o,)]TJ 0 -13.549 Td[(zagl\\241da,)-333(n)1(as)-1(\\252uc)28(h)28(uj)1(e)-1(,)-333(m\\246)-1(k)56(\\241)-333(s)-1(i)1(\\246)-334(\\273)-1(y)1(w)-1(i)1(,)-333(t\\246)-1(skni)1(c)-1(\\246)-334(p)1(ij)1(e)-334(,)-333(a)-334(n)1(ie)-334(wlec)-1(i.)]TJ 27.879 -13.549 Td[(Ch)28(yb)1(a,)-333(\\273)-1(eb)28(y)-333(P)28(an)-333(Jez)-1(u)1(s)-334(co)-334(p)1(rz)-1(emie)-1(n)1(i\\252...)-333(a)-333(na)-333(d)1(obre.)]TJ 0 -13.55 Td[(Ale)-334(b)1(a\\252)-334(si\\246)-334(j)1(e)-1(szc)-1(ze)-334(m)27(y)1(\\261)-1(le\\242)-334(o)-333(takiej)-333(pr)1(z)-1(em)-1(i)1(anie.)]TJ 0 -13.549 Td[(Jak)28(o\\261)-413(na)-412(dni)-412(par)1(\\246)-414(p)1(rze)-1(d)-412(Go)-28(d)1(ami)-413(sp)-28(otk)56(a\\252)-413(si\\246)-413(ran)1(o)-413(z)-413(k)28(o)27(w)28(alem)-1(,)-412(c)27(h)1(c)-1(ia\\252)-413(go)]TJ -27.879 -13.549 Td[(wymin\\241\\242,)-285(ale)-286(tam)27(ten)-285(za)-1(st\\241)-28(p)1(i\\252)-286(m)28(u)-285(dr)1(og\\246)-286(pierws)-1(zy)-285(w)-1(y)1(c)-1(i\\241)-27(gn\\241\\252)-286(r)1(\\246)-1(k)28(\\246)-286(i)-285(rzek\\252)-286(mi\\246tk)28(o,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-333(z)-334(\\273ale)-1(m:)]TJ 27.879 -13.549 Td[({)-267(Cze)-1(k)56(a\\252em)-1(,)-266(\\273)-1(e)-267(p)1(rzyjd)1(z)-1(i)1(e)-1(sz)-267(jak)-266(do)-266(ro)-28(d)1(z)-1(on)1(e)-1(go..)1(.)-267(p)-27(orad)1(z)-1(i)1(\\252)-1(b)29(ym)-1(,)-266(p)-27(om)-1(\\363g\\252,)-266(c)27(h)1(o-)]TJ -27.879 -13.549 Td[(cia\\273)-334(i)-333(u)-333(mnie)-333(s)-1(i\\246)-333(nie)-334(p)1(rze)-1(lew)28(a...)]TJ 27.879 -13.55 Td[({)-333(Mog\\252e)-1(\\261)-333(przyj)1(\\261)-1(\\242)-334(i)-333(p)-27(om\\363)-28(c)-1(!)]TJ 0 -13.549 Td[({)-316(J)1(ak\\273)-1(e...)-315(pi)1(e)-1(r)1(w)-1(sz)-1(y)-315(to)-315(m)-1(ia\\252em)-316(si\\246)-316(nap)1(ras)-1(za\\242,)-316(\\273e)-1(b)29(y\\261)-316(m)-1(n)1(ie)-316(wygon)1(i\\252)-316(jak)-315(J\\363z-)]TJ -27.879 -13.549 Td[(k)28(\\246...)]TJ 27.879 -13.549 Td[({)-277(Ju)1(\\261)-1(ci,)-276(k)28(ogo)-277(n)1(ie)-277(b)-28(ol)1(i,)-277(t)1(e)-1(m)28(u)-277(za)28(w)-1(sze)-278(p)-27(o)28(w)27(ol)1(i.)-277({)-276(Nie)-277(b)-27(oli!)-276(Je)-1(d)1(nak)56(a)-277(n)1(as)-277(krzyw-)]TJ -27.879 -13.549 Td[(da)-333(sp)-28(otk)56(a\\252a,)-333(to)-333(i)-333(b)-28(oleni)1(e)-334(jedn)1(akie.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(cyga\\253)-333(w)-334(\\273yw)28(e)-334(o)-28(cz)-1(y)84(,)-333(hale,)-333(m)27(y\\261li,)-333(\\273e)-334(z)-334(g\\252u)1(pim)-333(m)-1(a)-333(spra)28(w)28(\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(te)-1(go)-333(P)28(an)1(a)-334(Boga)-333(k)28(o)-28(c)27(h)1(am)-1(,)-333(tak)-333(cz)-1(yst\\241)-333(pr)1(a)27(wd)1(\\246)-334(rze)-1(k\\252em)-1(.)]TJ 0 -13.549 Td[({)-308(Li)1(s)-308(ju)1(c)27(ha;)-307(lec)-1(i)1(,)-308(wyw)28(\\241c)27(h)28(u)1(je,)-308(k)1(r\\246)-1(t)1(a)-308(si\\246)-1(,)-307(a)-308(ogon)1(e)-1(m)-307(\\261)-1(lad)-307(zac)-1(iera,)-307(\\273e)-1(b)28(y)-307(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(wiatru)-332(z)-1(a)-333(nim)-333(nie)-333(z)-1(\\252apa\\242)-333(i)-333(s)-1(zk)28(o)-28(dy)-333(n)1(ie)-334(p)-27(om)-1(\\261ci\\242)-1(.)]TJ 27.879 -13.549 Td[({)-365(\\233e)-366(n)1(a)-365(w)27(es)-1(elu)-365(b)29(y\\252e)-1(m,)-365(o)-365(to\\261,)-365(w)-1(i)1(dz\\246)-1(,)-365(k)1(rz)-1(y)1(w)-366(n)1(a)-365(m)-1(n)1(ie!)-365(Pra)28(wda,)-364(b)28(y\\252e)-1(m,)-365(n)1(ie)]TJ -27.879 -13.55 Td[(wypi)1(e)-1(r)1(am)-275(s)-1(i)1(\\246)-1(,)-274(m)27(u)1(s)-1(i)1(a\\252)-1(em)-275(an)1(o)-275(p)-27(\\363)-56(j)1(\\261)-1(\\242,)-274(s)-1(am)-274(ks)-1(i)1(\\241dz)-275(n)1(am)-1(a)28(wia\\252)-275(i)-274(n)1(iew)27(oli\\252,)-274(\\273e)-1(b)29(y)-275(ob)1(razy)]TJ 0 -13.549 Td[(b)-27(os)-1(ki)1(e)-1(j)-333(z)-333(te)-1(go)-333(nie)-333(w)-1(y)1(s)-1(z\\252o,)-333(\\273)-1(e)-334(d)1(z)-1(i)1(e)-1(ci)-333(os)-1(ob)1(no,)-333(a)-333(o)-28(c)-1(iec)-334(osobn)1(o.)]TJ 27.879 -13.549 Td[({)-334(Z)-334(namo)28(wy)-334(ksi\\246)-1(d)1(z)-1(a)-334(p)-27(osz)-1(ed\\252e)-1(\\261,)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-335(to)-334(d)1(ru)1(gie)-1(m)28(u,)-334(u)29(w)-1(i)1(e)-1(rzy)84(,)-334(ale)-334(nie)-334(ja.)]TJ -27.879 -13.549 Td[(Drzes)-1(z)-416(t)28(y)-415(starego)-416(za)-415(to)-416(p)1(rzyjaciels)-1(t)28(w)28(o,)-415(jak)-415(si\\246)-416(in)1(o)-416(d)1(a,)-415(z)-416(p)1(r\\363\\273)-1(n)29(ymi)-416(r)1(\\246)-1(k)56(ami)-415(nie)]TJ 0 -13.549 Td[(o)-28(d)1(c)27(ho)-27(dzis)-1(z...)]TJ 27.879 -13.55 Td[({)-261(Ino)-261(g\\252up)1(ie)-262(n)1(ie)-262(b)1(ie)-1(r)1(\\241,)-261(jak)-261(im)-261(da)-55(j\\241,)-261(ale)-261(prze)-1(ciw)-261(tobie)-261(nie)-261(nasta)-56(j)1(\\246)-1(,)-261(n)1(ie)-1(,)-261(n)1(iec)27(h)]TJ -27.879 -13.549 Td[(ca\\252)-1(a)-384(wie\\261)-385(p)-27(o)27(wie,)-384(sp)28(yta)-55(j)-384(s)-1(i\\246)-384(Jagust)28(ynk)1(i,)-384(ona)-384(ci\\246)-1(gi)1(e)-1(m)-385(p)1(rze)-1(siad)1(uje)-384(u)-384(s)-1(t)1(are)-1(go,)-384(j)1(u\\273)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-392(m\\363)27(wi\\252em)-393(o)-56(j)1(c)-1(u)-392(o)-392(z)-1(go)-27(dzie)-393(z)-393(tob\\241.)1(..)-392(z)-1(rob)1(i)-392(s)-1(i\\246)-393(to.)1(..)-392(u\\252adzi..)1(.)-393(wyr)1(yc)27(h)28(tu)1(je)-393(n)1(a)]TJ 0 -13.549 Td[(glan)1(c)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-431(P)1(s)-1(\\363)28(w)-431(s)-1(e)-431(g\\363)-28(d)1(\\271)-1(,)-430(nie)-431(mnie,)-431(s\\252ys)-1(zysz)-1(!)-430(Nie)-432(p)1(rosi\\252e)-1(m)-431(ci\\246)-431(o)-431(w)27(o)-55(jn)1(\\246)-1(,)-431(t)1(o)-431(m)-1(i)1(e)-432(i)]TJ -27.879 -13.55 Td[(ze)-350(zgo)-28(d)1(\\241)-349(ni)1(e)-349(\\273)-1(e\\253,)-348(w)-1(i)1(dzis)-1(z)-349(go,)-348(jak)1(i)-349(mi)-349(p)1(rzyjaciel!)-348(Z)-1(r)1(obi\\252b)28(y)1(\\261)-349(z)-1(go)-28(d)1(\\246)-1(,)-348(b)28(y\\261)-349(i)1(no)-349(m\\363g\\252)]TJ 0 -13.549 Td[(mi)-353(zw)-1(lec)-353(z)-354(gr)1(z)-1(b)1(ie)-1(tu)-352(c)27(h)1(o)-28(\\242b)28(y)-353(ten)-353(k)28(o\\273uc)28(h)-353(ostatni.)1(..)-353(M)1(\\363)27(wi\\246)-353(c)-1(i)-352(raz)-353(jes)-1(zc)-1(ze)-1(,)-352(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(mnie)-279(p)-27(on)1(ie)-1(c)28(ha)-56(j)-278(i)-278(z)-279(d)1(rogi)-278(mi)-279(sc)27(h)1(o)-28(d\\271,)-278(b)-28(o)-278(jak)-278(mnie)-279(k)1(ie)-1(d)1(y)-278(z)-1(\\252o\\261\\242)-279(rozbierze)-1(,)-278(to)-278(c)-1(i)-278(t)28(yc)27(h)]TJ 0 -13.549 Td[(wiew)-1(i)1(\\363rc)-1(zyc)28(h)-333(kud)1(\\252\\363)27(w)-333(nad)1(r\\246)-334(i)-333(\\273e)-1(b)-27(e)-1(r)-333(p)-27(omac)-1(am,)-333(nie)-333(obron)1(i\\241)-333(c)-1(i)1(\\246)-334(i)-333(s)-1(tr)1(a\\273)-1(n)1(iki,)]TJ 27.879 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(z)-334(n)1(imi)-333(trzymas)-1(z.)-334(Zap)1(am)-1(i)1(\\246)-1(ta)-55(j)-333(to)-333(s)-1(ob)1(ie)-1(!)]TJ 0 -13.549 Td[(Od)1(w)-1(r)1(\\363)-28(ci\\252)-437(si\\246)-437(i)-436(p)-28(osz)-1(ed\\252)-436(nie)-437(ob)-27(ejrza)28(w)-1(szy)-437(si\\246)-437(n)1(a)27(w)28(e)-1(t)-436(na)-436(tam)27(t)1(e)-1(go,)-436(kt\\363ren)-436(z)]TJ -27.879 -13.55 Td[(rozdzia)28(wion\\241)-333(g\\246b\\241)-333(na)-333(\\261)-1(r)1(o)-28(dku)-332(drogi)-333(osta\\252.)]TJ 27.879 -13.549 Td[({)-240(Cygan)-239(\\261)-1(cierw)28(a,)-240(ze)-241(starym)-240(tr)1(z)-1(y)1(m)-1(a)-240(i)-239(do)-240(mn)1(ie)-241(z)-240(p)1(rzyjaciels)-1(t)28(w)28(e)-1(m)-240(wyst\\246)-1(p)1(uj)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-333(obu)-333(b)28(y)-333(n)1(as)-334(z)-334(tor)1(bami)-333(pu\\261ci\\252,)-333(b)28(y)-333(ino)-333(m\\363g\\252.)]TJ 27.879 -13.549 Td[(Nie)-374(usp)-27(ok)28(oi\\252)-374(s)-1(i)1(\\246)-375(r)1(yc)27(h)1(\\252)-1(o)-373(p)-28(o)-374(t)28(y)1(m)-375(sp)-27(otk)55(an)1(iu)1(,)-374(b)-27(o)-374(do)-374(tego)-374(n)1(ie)-375(wio)-27(d\\252o)-374(m)28(u)-374(si\\246)]TJ -27.879 -13.549 Td[(jak)28(o\\261)-496(dzisia)-56(j)-495(o)-28(d)-496(sam)-1(ego)-496(ran)1(a;)-496(le)-1(d)1(wie)-497(b)28(y)1(\\252)-497(wzi\\241\\252)-496(s)-1(i)1(\\246)-497(do)-496(cz)-1(es)-1(an)1(ia,)-496(wysz)-1(cz)-1(erb)1(i\\252)]TJ 0 -13.55 Td[(si\\246)-387(top)-27(\\363r)-386(na)-386(s\\246)-1(ku)1(,)-386(a)-386(p)-28(otem)-387(za\\261)-1(,)-386(zaraz)-387(z)-386(pr)1(z)-1(yp)-27(o\\252ud)1(nia,)-386(d)1(rze)-1(w)28(o)-387(p)1(rzygni)1(e)-1(t\\252o)-386(m)27(u)]TJ 0 -13.549 Td[(nog\\246,)-313(cud)-313(p)1(ra)28(wdziwy)83(,)-313(\\273e)-314(n)1(ie)-314(p)-27(\\246)-1(k)1(\\252)-1(a,)-312(ale)-314(m)28(usia\\252)-314(b)1(ut)-313(ze)-1(zu)28(w)28(a\\242)-314(i)-313(ok\\252ad)1(a\\242)-314(lo)-28(d)1(e)-1(m,)-313(b)-27(o)]TJ\nET\nendstream\nendobj\n676 0 obj <<\n/Type /Page\n/Contents 677 0 R\n/Resources 675 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n675 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n680 0 obj <<\n/Length 9176      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(209)]TJ -358.232 -35.866 Td[(nap)1(uc)28(h\\252a)-271(i)-272(sro)-27(dze)-272(b)-28(ol)1(a\\252)-1(a.)1(..)-271(A)-272(d)1(o)-271(te)-1(go)-271(i)-271(Mateusz)-272(dzisia)-56(j)-271(b)29(y\\252)-272(r)1(oz)-1(\\273art)28(y)-271(jak)-271(ten)-271(pi)1(e)-1(s,)]TJ 0 -13.549 Td[(k\\252\\363)-28(ci\\252)-314(si\\246)-314(z)-1(e)-314(ws)-1(zystkimi,)-314(w)28(ci\\241\\273)-315(m)28(u)-313(b)28(y\\252o)-314(\\271le)-1(,)-313(w)27(ci\\241\\273)-314(ma\\252)-1(o,)-313(krzycz)-1(a\\252,)-314(p)-27(ogan)1(ia\\252,)-314(a)-314(z)]TJ 0 -13.549 Td[(ni)1(m)-291(to)-291(jak)1(b)28(y)-291(wyr)1(a\\271)-1(n)1(ie)-291(z)-1(w)28(ady)-290(s)-1(zuk)56(a\\252,)-291(\\273e)-291(ino,)-290(in)1(o)-291(do)-291(cze)-1(go)-291(gor)1(s)-1(ze)-1(go)-290(nie)-291(p)1(rz)-1(y)1(s)-1(z\\252o.)]TJ 27.879 -13.549 Td[(T)83(ak)-276(s)-1(i)1(\\246)-277(ju\\273)-277(d)1(z)-1(i)1(w)-1(n)1(ie)-277(sk\\252ada\\252o,)-276(b)-28(o)-276(na)28(w)28(e)-1(t)-276(te)-1(j)-276(k)56(asz)-1(y)84(,)-277(k)1(t\\363r\\241)-276(m)-1(ia\\252)-276(F)83(r)1(anek)-277(zrob)1(i\\242)]TJ -27.879 -13.549 Td[(na)-321(dzisia)-56(j)1(,)-321(a)-322(o)-321(kt\\363r\\241)-321(Hank)56(a)-321(m)27(u)-321(co)-322(d)1(ni)1(a)-322(g\\252o)28(w)27(\\246)-322(suszy\\252a,)-322(n)1(ie)-322(zrob)1(i\\252)-322(i)-321(zas)-1(ta)28(wia\\252)-322(si\\246)]TJ 0 -13.55 Td[(br)1(akiem)-334(cz)-1(asu.)]TJ 27.879 -13.549 Td[(W)-254(c)27(h)1(a\\252)-1(u)1(pi)1(e)-255(te)-1(\\273)-255(b)28(y)1(\\252o)-255(ni)1(e)-1(zwyc)-1(za)-56(j)1(nie,)-254(Hank)56(a)-255(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-254(s)-1(t)1(rapi)1(ona)-255(i)-254(zap\\252ak)56(ana,)]TJ -27.879 -13.549 Td[(b)-27(o)-350(Pi)1(e)-1(tr)1(u\\261)-350(le\\273)-1(a\\252)-350(w)-349(gor\\241c)-1(zc)-1(e)-350(j)1(ak)28(ob)28(y)-349(w)-350(ogniu)1(,)-350(\\273e)-350(m)27(u)1(s)-1(ia\\252a)-349(w)27(o\\252a\\242)-350(Jagust)28(ynk)1(i,)-350(ab)29(y)]TJ 0 -13.549 Td[(c)27(h)1(\\252op)-28(ca)-333(ok)55(ad)1(z)-1(i\\252a)-333(i)-333(pr)1(z)-1(em)-1(i)1(e)-1(r)1(z)-1(y\\252a,)-333(b)-27(o)-334(ob)1(s)-1(u)1(n\\241\\242)-334(si\\246)-334(m)28(usia\\252.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-360(p)1(rzysz)-1(\\252a)-359(p)-28(o)-27(dc)-1(zas)-360(k)28(olacji)1(,)-360(p)1(rzysiad\\252a)-359(przed)-359(k)28(om)-1(i)1(nem)-1(,)-359(rozgl\\241d)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-259(k)1(ryj)1(om)-1(o)-257(p)-28(o)-258(i)1(z)-1(b)1(ie)-259(i)-257(dziwn\\241)-258(o)-27(c)27(hot)1(\\246)-259(mia\\252a)-258(gad)1(a\\242)-1(,)-257(ino)-258(\\273e)-258(m)-1(a\\252o)-258(wiele)-258(o)-28(d)1(p)-28(o)28(wiadal)1(i)]TJ 0 -13.55 Td[(ob)-27(o)-56(j)1(e)-1(,)-333(to)-333(z)-1(ar)1(az)-334(wz)-1(i\\246\\252a)-334(si\\246)-334(ogl)1(\\241da\\242)-334(c)28(h\\252op)-27(c)-1(a)-333(i)-333(le)-1(k)28(o)28(w)28(a\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-348(P)29(\\363)-56(jd)1(\\246)-348(do)-348(m\\252yn)1(a,)-348(p)1(rzypil)1(n)28(uj)1(\\246)-1(,)-347(b)-28(o)-347(inacze)-1(j)-347(ni)1(e)-349(zrob)1(i\\241!{)-348(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-348(bi)1(or\\241c)]TJ -27.879 -13.549 Td[(za)-334(cz)-1(ap)1(k)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c)-334(n)1(ie)-334(moglib)29(y)-334(t)1(o)-334(i\\261\\242)-334(zas)-1(y)1(p)28(yw)28(a\\242)-1(?...)]TJ 0 -13.549 Td[({)-496(S)1(am)-496(p)-27(\\363)-56(j)1(d\\246,)-496(to)-495(p)-28(ewniej)-495(k)56(as)-1(za)-496(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(!)-495({)-496(I)-495(p)-27(os)-1(ze)-1(d)1(\\252)-496(spies)-1(zni)1(e)-1(,)-495(z)-1(\\252y)-495(b)28(y\\252,)]TJ -27.879 -13.55 Td[(wz)-1(b)1(ur)1(z)-1(on)28(y)-415(i)-415(tak)-415(n)1(a)-416(wn\\241t)1(rz)-1(u)-414(roz)-1(ciepan)28(y)-415(j)1(ak)28(o)-416(t)1(o)-416(d)1(rze)-1(w)28(o)-416(samotne)-416(n)1(a)-416(wic)28(h)28(ur)1(z)-1(e)]TJ 0 -13.549 Td[(,)-449(a)-449(pr)1(z)-1(y)-449(t)28(ym)-449(dra\\273ni)1(\\252)-1(o)-449(go)-449(ws)-1(zystk)28(o)-449(w)-450(c)27(h)1(a\\252up)1(ie)-1(,)-449(n)1(iec)-1(ierp)1(liwi\\252o,)-449(a)-449(na)-55(jb)1(arz)-1(ej)-449(te)]TJ 0 -13.549 Td[(obmacuj)1(\\241c)-1(e,)-334(z\\252o)-28(d)1(z)-1(iejskie)-333(o)-28(c)-1(zy)-333(Jagust)28(ynk)1(i.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-406(b)28(y)1(\\252)-407(cic)27(h)28(y)84(,)-406(ni)1(e)-1(mro\\271n)28(y)83(,)-406(b)-27(o)-406(jak)28(o\\261)-407(o)-27(d)-406(ran)1(a)-407(sfol)1(\\273)-1(a\\252o)-406(m)-1(o)-27(c)-1(n)1(o,)-407(gwiazd)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-253(n)1(ie)-1(wiele,)-253(ino)-253(gdzieniegdzie,)-253(jak)-253(p)1(rz)-1(es\\252)-1(on)29(y)83(,)-253(d)1(rga\\252a)-253(jak)56(a)-253(w)-254(d)1(ale)-1(k)28(o\\261c)-1(i)1(ac)27(h,)-253(wiatr)]TJ 0 -13.55 Td[(p)-27(o)-28(c)-1(i)1(\\241)-28(ga\\252)-373(o)-28(d)-373(las\\363)28(w,)-373(a)-373(z)-374(n)1(im)-374(sze)-1(d)1(\\252)-374(d)1(aleki)-373(s)-1(zum,)-373(g\\252u)1(c)27(h)28(y)84(,)-373(j\\246kliwy)-373(p)1(rze)-1(d)-372(o)-28(dmian)1(\\241,)]TJ 0 -13.549 Td[(psy)-293(g\\246s)-1(t)1(o)-293(nasz)-1(cz)-1(ekiw)28(a\\252y)-293(p)-27(o)-293(ws)-1(i,)-292(a)-293(c)-1(o)-292(tro)-28(c)28(h\\246)-293(s)-1(u)1(\\252y)-293(s)-1(i)1(\\246)-294(k)1(urza)28(w)27(\\241)-293(\\261ni)1(e)-1(gi,)-292(otrz\\241s)-1(an)1(e)-294(z)]TJ 0 -13.549 Td[(dr)1(z)-1(ew...)-281(d)1(ym)27(y)-280(t\\252uk\\252y)-281(si\\246)-281(p)-28(o)-281(d)1(ro)-28(d)1(z)-1(e)-281({)-281(a)-281(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-281(b)28(y\\252o)-281(wilgotn)1(a)28(w)27(e,)-281(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(e.)]TJ 27.879 -13.549 Td[(W)84(e)-335(m\\252yni)1(e)-1(,)-334(\\273e)-334(to)-334(pr)1(z)-1(ed)-334(\\261wi\\246)-1(t)1(am)-1(i,)-333(s)-1(p)-27(oro)-334(b)29(y\\252o)-334(lud)1(z)-1(i)-333(;)-334(t)28(yc)28(h)-334(,)-334(k)1(t\\363ryc)28(h)-334(zb)-28(o\\273e)]TJ -27.879 -13.549 Td[(si\\246)-447(m)-1(e\\252\\252o,)-447(w)28(aro)28(w)28(ali)-447(p)1(rzy)-447(gan)1(k)56(ac)27(h,)-446(res)-1(zta)-446(s)-1(iedzia\\252a)-447(w)-446(iz)-1(d)1(e)-1(b)-27(ce)-447(m)-1(\\252yn)1(arcz)-1(yk)56(a,)-446(a)]TJ 0 -13.55 Td[(w)-453(p)-28(o\\261ro)-28(d)1(ku)-453(Mat)1(e)-1(u)1(s)-1(z)-454(snad)1(\\271)-454(co\\261)-454(cie)-1(k)56(a)28(w)27(ego)-453(p)-28(o)28(wiad)1(a\\252,)-453(b)-28(o)-453(c)-1(o)-453(c)28(h)28(wila)-453(wybu)1(c)27(hal)1(i)]TJ 0 -13.549 Td[(\\261m)-1(iec)27(h)1(e)-1(m.)]TJ 27.879 -13.549 Td[(An)28(tek)-297(c)-1(of)1(n\\241\\252)-297(s)-1(i\\246)-297(pra)28(wie)-298(z)-297(progu)-297(i)1(z)-1(d)1(e)-1(b)1(ki)-297(i)-298(p)-27(osz)-1(ed\\252)-297(na)-297(m)-1(\\252y)1(n)-297(s)-1(zuk)56(a\\242)-298(F)84(rank)56(a.)]TJ 0 -13.549 Td[({)-331(Rozpra)28(wia)-330(s)-1(i\\246)-331(n)1(a)-331(grob)1(li)-331(z)-331(Magd)1(\\241,)-331(wiecie)-1(,)-330(t\\241)-331(wyp)-27(\\246)-1(d)1(z)-1(on)1(\\241)-331(o)-28(d)-330(organ)1(ist\\363)27(w!)]TJ -27.879 -13.549 Td[(M\\252yn)1(arz)-375(c)27(h)1(c)-1(ia\\252)-375(go)-375(wygon)1(i\\242,)-375(je\\261)-1(l)1(i)-375(dziew)-1(k)28(\\246)-375(raz)-375(j)1(e)-1(sz)-1(cz)-1(e)-375(s)-1(p)-27(otk)56(a)-375(w)-375(m\\252)-1(y)1(nie,)-375(a)-375(p)1(rze)-1(-)]TJ 0 -13.55 Td[(siadyw)28(a\\252a)-428(tu)-427(ca\\252)-1(e)-428(n)1(o)-28(c)-1(e,)-427(b)-28(o)-428(i)-427(gdzie\\273)-428(s)-1(i\\246)-428(p)-27(o)-28(d)1(z)-1(ieje)-428(b)1(ie)-1(d)1(ota!)-428({)-427(ob)-55(ja\\261ni\\252)-428(go)-427(c)27(h\\252op)]TJ 0 -13.549 Td[(jeden.)]TJ 27.879 -13.549 Td[({)-489(K)1(to)-489(n)1(a)-489(zw)-1(iesn\\246)-489(za)-489(c)-1(zym)-489(b)1(ryk)56(a,)-488(o)-28(d)-488(te)-1(go)-488(z)-1(i)1(m)-1(\\241)-488(um)28(yk)55(a!)-488({)-488(dorzuci\\252)-489(ze)]TJ -27.879 -13.549 Td[(\\261m)-1(iec)27(h)1(e)-1(m)-333(inn)28(y)84(.)]TJ 27.879 -13.549 Td[(An)28(tek)-392(p)1(rzys)-1(i)1(ad\\252)-392(p)-27(o)-28(d)-392(cyli)1(nd)1(re)-1(m,)-392(gd)1(z)-1(i)1(e)-393(si\\246)-392(na)-55(jp)1(rz)-1(edn)1(ies)-1(z\\241)-392(m\\241k)28(\\246)-393(r)1(obi\\252o,)-392(a)]TJ -27.879 -13.549 Td[(tak)-351(j)1(ak)28(o\\261)-352(wprost)-351(wyw)28(art)28(yc)27(h)-350(drzwi)-351(iz)-1(d)1(e)-1(b)1(ki,)-351(\\273e)-352(wid)1(z)-1(ia\\252)-351(M)1(ate)-1(u)1(s)-1(zo)27(w)28(e)-352(p)1(lec)-1(y)-351(i)-351(g\\252o-)]TJ 0 -13.55 Td[(wy)-384(inn)29(yc)27(h)1(,)-384(p)-28(o)-28(c)28(h)28(ylon)29(yc)27(h)-384(k)1(u)-384(niem)27(u)-383(i)-384(z)-1(as\\252uc)27(h)1(an)28(yc)28(h,)-384(m\\363g\\252)-385(b)28(y)1(\\252)-385(s\\252ys)-1(ze\\242)-385(na)28(w)28(e)-1(t,)-384(co)]TJ 0 -13.549 Td[(m\\363)27(wil)1(i,)-362(b)-27(o)-362(n)1(iedalek)28(o)-362(b)28(y)1(\\252)-1(o,)-361(in)1(o)-362(tur)1(k)28(ot)-362(m\\252yna)-361(nie)-362(p)-27(ozw)27(ala\\252,)-361(a)-362(i)-361(s)-1(am)-362(s\\252uc)27(h)1(a\\242)-362(nie)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[(Uw)28(ali\\252)-333(s)-1(i\\246)-333(pra)28(wie)-334(n)1(a)-334(w)28(ork)56(ac)27(h)-333(i)-333(j)1(akb)28(y)-333(d)1(rz)-1(ema\\252)-334(n)1(ie)-1(co)-333(z)-1(e)-334(zn)28(u)1(\\273)-1(enia.)]TJ 0 -13.549 Td[(M\\252yn)-289(tu)1(rk)28(ota\\252)-290(b)-27(ez)-290(prze)-1(r)1(wy)83(,)-289(trz\\241s)-1(\\252)-289(s)-1(i\\246)-290(ca\\252y)83(,)-289(dygot)1(a\\252)-290(i)-290(p)1(raco)28(w)27(a\\252)-290(wsz)-1(ystki)1(m)-1(i)]TJ -27.879 -13.55 Td[(gank)56(ami,)-396(k)28(o\\252a)-397(tr)1(z)-1(epa\\252y)-396(s)-1(i)1(\\246)-397(tak)-396(m)-1(o)-27(c)-1(n)1(o)-397(j)1(akb)28(y)-396(s)-1(to)-396(k)28(obi)1(e)-1(t)-396(pr)1(a\\252)-1(o)-396(kij)1(ank)56(ami)-396(a)-397(b)-27(e)-1(z)]TJ 0 -13.549 Td[(pr)1(z)-1(erwy)84(,)-248(w)27(o)-27(da)-248(z)-248(b)-28(e\\252k)28(otliwym)-248(kr)1(z)-1(y)1(kiem)-249(w)28(ali\\252a)-248(si\\246)-248(przez)-249(n)1(ie)-1(,)-247(rozbij)1(a\\252a)-248(wnet)-248(pian)29(y)]TJ\nET\nendstream\nendobj\n679 0 obj <<\n/Type /Page\n/Contents 680 0 R\n/Resources 678 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n678 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n683 0 obj <<\n/Length 9882      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(210)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(wrz\\241c)-1(e,)-333(w)-334(\\261nie\\273)-1(y)1(s)-1(te)-334(d)1(rzaz)-1(gi)-333(i)-333(w)28(ali\\252a)-333(z)-334(ryk)1(ie)-1(m)-333(do)-333(rze)-1(ki)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-344(cze)-1(k)56(a\\252)-344(mo\\273)-1(e)-344(z)-344(go)-28(d)1(z)-1(in)1(\\246)-344(na)-343(F)83(ran)1(k)56(a,)-344(ale)-344(p)-27(o)-28(d)1(ni\\363s\\252)-344(si\\246)-344(wre)-1(sz)-1(cie,)-344(b)29(y)-344(i\\261\\242)]TJ -27.879 -13.549 Td[(go)-425(p)-28(osz)-1(u)1(k)56(a\\242)-426(na)-425(dw)28(orze)-1(,)-425(a)-425(z)-1(ar)1(az)-1(em)-426(b)28(y)-425(si\\246)-426(or)1(z)-1(e\\271)-1(wi\\242)-426(n)1(iec)-1(o,)-425(b)-27(o)-426(\\261pik)-425(go)-425(morzy\\252.)]TJ 0 -13.549 Td[(Drzwi)-328(wyc)28(ho)-28(d)1(ne)-328(pr)1(o)28(w)27(ad)1(z)-1(i\\252y)-327(tu\\273)-328(p)1(rz)-1(y)-327(izdeb)-28(ce,)-328(p)1(rz)-1(es)-1(zed\\252)-328(i)-327(bior)1(\\241c)-328(ju\\273)-328(za)-328(kl)1(am)-1(k)28(\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(tan)1(\\241\\252)-334(n)1(agle)-1(,)-333(p)-27(os)-1(\\252y)1(s)-1(za\\252)-334(p)1(ra)28(wie)-1(n)1(ie)-334(M)1(ate)-1(u)1(s)-1(za.)]TJ 27.879 -13.55 Td[(-...a)-355(stary)-355(sam)-355(w)27(arzy)-355(mlek)28(o,)-355(to)-355(herb)1(at\\246)-356(i)-355(d)1(o)-355(pierzyn)28(y)-355(j)1(e)-1(j)-354(nosi..)-355({)-355(m\\363)28(wili,)]TJ -27.879 -13.549 Td[(\\273e)-318(na)28(w)27(et)-317(s)-1(am)-318(k)28(o\\252o)-317(kr\\363)28(w)-318(c)28(ho)-28(d)1(z)-1(i)-317(i)-317(z)-318(Jagu)1(s)-1(t)28(yn)1(k)56(\\241)-318(ws)-1(zystk)28(o)-318(ob)1(rz\\241dza,)-318(b)29(yle)-318(in)1(o)-318(on)1(a)]TJ 0 -13.549 Td[(se)-279(r)1(\\241c)-1(zk)28(\\363)28(w)-278(nie)-278(p)-27(o)28(w)27(ala\\252a.)1(..)-278(p)-27(ono)-277(kup)1(i\\252)-278(w)-278(mie\\261)-1(cie)-278(p)-27(orc)-1(enel\\246,)-278(b)28(y)-277(si\\246)-278(nie)-278(p)1(rz)-1(ezi\\246)-1(b)1(i\\252a)]TJ 0 -13.549 Td[(za)-334(sto)-28(d)1(o\\252)-1(\\246)-333(w)-1(y)1(c)27(ho)-27(dzi\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(Gr)1(uc)27(h)1(n\\246li)-388(\\261)-1(miec)27(hem)-389(ogromn)28(ym)-389(i)-388(do)28(w)28(c)-1(i)1(p)28(y)-389(j)1(ak)-389(gr)1(ad)-388(s)-1(i\\246)-389(p)-27(os)-1(y)1(pa\\252y)84(.)-389(An)28(tek,)]TJ -27.879 -13.549 Td[(sam)-427(n)1(ie)-426(wie)-1(d)1(z)-1(\\241c)-426(d)1(lac)-1(ze)-1(go,)-425(c)-1(of)1(n\\241\\252)-426(si\\246)-426(na)-425(da)28(wne)-426(mie)-1(j)1(s)-1(ce)-1(,)-425(pad)1(\\252)-426(na)-426(w)28(ork)1(i)-426(i)-426(b)-27(ez)-1(-)]TJ 0 -13.55 Td[(m)27(y)1(\\261)-1(ln)1(ie)-347(p)1(atrzy\\252)-347(w)-347(d)1(\\252ug\\241,)-346(c)-1(ze)-1(r)1(w)27(on)1(a)-347(sm)27(ug\\246)-347(\\261wiat\\252a,)-346(bij)1(\\241c)-1(\\241)-346(przez)-347(w)-1(y)1(w)27(art)1(e)-347(drzwi)]TJ 0 -13.549 Td[(izdebki)1(.)-384(Nie)-385(s\\252ysz)-1(a\\252)-384(nic,)-384(tu)1(rk)28(ot)-384(pr)1(z)-1(yg\\252u)1(s)-1(za\\252)-384(rozm)-1(o)28(wy)83(,)-384(m\\252yn)-384(d)1(ygota\\252)-384(b)-27(e)-1(zustan-)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-313(sz)-1(ar)1(y)-313(tuman)-313(p)28(y\\252\\363)28(w)-313(m)-1(\\241cz)-1(n)29(yc)27(h)-313(p)1(rzys)-1(\\252an)1(ia\\252)-313(m)-1(\\252yn)1(ice)-1(,)-313(lamp)1(ki)-313(w)-1(i)1(s)-1(z\\241c)-1(e)-313(u)-313(s)-1(u)1(\\014tu)]TJ 0 -13.549 Td[(gdzieniegdzie)-317(migota\\252y)-317(z)-317(ku)1(rz)-1(a)28(wy)-317(b)1(ia\\252e)-1(j)1(,)-317(\\273\\363\\252c)-1(i\\252y)-316(s)-1(i)1(\\246)-318(j)1(ak)-317(te)-317(k)28(o)-28(cie)-317(o)-28(c)-1(zy)-317(zac)-1(za)-56(j)1(one)]TJ 0 -13.549 Td[(i)-347(dry)1(ga\\252y)-348(raz)-348(p)-27(o)-347(raz)-348(na)-347(s)-1(zn)28(ur)1(ac)27(h)1(.)-348(Ale)-348(n)1(ie)-348(m\\363g\\252)-348(wysie)-1(d)1(z)-1(i)1(e)-1(\\242,)-348(p)-27(o)-28(d)1(ni\\363s\\252)-348(si\\246)-348(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.55 Td[(i)-333(c)-1(i)1(c)27(ho,)-333(n)1(a)-334(p)1(alcac)27(h)-333(p)-27(o)-28(dsun)1(\\241\\252)-334(si\\246)-334(p)-27(o)-28(d)-333(same)-334(dr)1(z)-1(wi)-333(i)-333(s)-1(\\252uc)28(ha\\252.)]TJ 27.879 -13.549 Td[(-...wsz)-1(ystk)28(o)-346(m)27(u)-346(wyt\\252umac)-1(zy\\252a)-346({)-347(m\\363)27(wi\\252)-346(Mateusz)-1({)-346(b)-28(ez)-347(p\\252ot)-346(p)-28(on)1(o)-347(si\\246)-347(spie-)]TJ -27.879 -13.549 Td[(sz)-1(y\\252a)-318(i)-318(b)-27(e)-1(z)-318(to)-319({)-318(Domin)1(ik)28(o)28(w)27(a)-318(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(i)1(\\252)-1(a,)-318(j)1(ak)28(o)-318(s)-1(i\\246)-318(to)-318(c)-1(z\\246)-1(sto)-318(pr)1(z)-1(ytr)1(a\\014a)-318(dzieu-)]TJ 0 -13.549 Td[(c)27(h)1(om)-1(,)-376(\\273)-1(e)-377(i)-377(j)1(\\241)-377(to)-377(sam)-1(o)-376(s)-1(p)-27(otk)56(a\\252o)-377(w)-377(pan)1(ie)-1(\\253)1(s)-1(t)28(wie...)-376(Ka\\273)-1(d)1(a)-377(teraz)-377(m)-1(o\\273e)-377(z)-1(gan)1(ia\\242)-378(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\252az)-334(ostry)84(...)-333(a)-333(s)-1(tary)-333(b)1(aran)-333(u)28(wierzy\\252.)-333(T)83(aki)-333(m\\241dral)1(a,)-333(a)-334(u)28(wierzy\\252...)]TJ 27.879 -13.55 Td[(\\221mial)1(i)-334(si\\246)-334(t)1(ak,)-333(a\\273)-334(ten)-333(re)-1(c)28(hot)-333(p)-27(o)-334(m\\252yn)1(ic)-1(y)-333(si\\246)-334(r)1(oz)-1(lega\\252,)-333(a\\273)-334(s)-1(i)1(\\246)-334(p)-28(ok)1(\\252adali.)]TJ 0 -13.549 Td[(An)28(tek)-463(p)1(rzys)-1(u)1(n\\241\\252)-463(si\\246)-463(bli)1(\\273)-1(ej,)-463(p)1(ra)28(wie)-463(w)-463(progu)-462(s)-1(tan)1(\\241\\252,)-463(a)-463(b)1(lady)-462(jak)-463(t)1(rup)-462(z)]TJ -27.879 -13.549 Td[(zac)-1(i\\261ni)1(\\246)-1(t)28(ymi)-333(pi\\246\\261)-1(ciami,)-333(skur)1(c)-1(zon)28(y)-333(w)-334(sobie,)-333(goto)28(w)-1(y)-333(d)1(o)-334(sk)28(oku)1(.)]TJ 27.879 -13.549 Td[({)-287(A)-286(to,)-287(co)-287(o)-286(An)28(tku)-286(p)-27(o)28(w)-1(i)1(a)-1(d)1(ali)-286({)-287(p)-27(o)-28(dj)1(\\241\\252)-287(zno)28(wu)-287(M)1(ate)-1(u)1(s)-1(z,)-286(gdy)-286(s)-1(i\\246)-287(wy\\261m)-1(i)1(ali)-287({)]TJ -27.879 -13.549 Td[(\\273e)-247(s)-1(i\\246)-246(tam)-247(z)-247(Jagu)1(s)-1(i\\241)-246(dob)1(rze)-247(z)-1(n)1(ali,)-246(ni)1(e)-1(p)1(ra)28(w)-1(d)1(a,)-246(w)-1(i)1(e)-1(m)-247(n)1(a)-56(j)1(lepiej.)-246(Sam)-246(s)-1(\\252ysz)-1(a\\252em)-1(,)-246(j)1(ak)]TJ 0 -13.55 Td[(sk)55(amla\\252)-235(u)-234(d)1(rzw)-1(i)-234(k)28(omory)-235(n)1(ib)28(y)-234(ten)-235(p)1(ies)-1(,)-234(a\\273)-235(go)-235(mie)-1(t)1(\\252)-1(\\241)-234(m)27(u)1(s)-1(ia\\252a)-234(o)-28(dgan)1(ia\\242.)-235(P)1(rz)-1(y)1(c)-1(ze)-1(p)1(i\\252)]TJ 0 -13.549 Td[(si\\246)-334(do)-333(n)1(ie)-1(j)-333(j)1(ak)-333(rze)-1(p)-333(d)1(o)-334(p)1(s)-1(i)1(e)-1(go)-333(ogona,)-333(ale)-333(go)-334(p)1(rze)-1(gani)1(a\\252a...)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(ieli\\261c)-1(i)1(e)-334(to?...)-333(in)1(ac)-1(ze)-1(j)-333(n)1(a)-333(w)-1(si)-333(m)-1(\\363)28(wili)1(...)-333({)-333(z)-1(ap)28(y)1(ta\\252)-334(kt)1(\\363ry\\261.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(raz)-333(to)-334(b)29(y\\252e)-1(m)-334(u)-332(niej)-333(w)-334(k)28(omorze)-1(?)-333(raz)-334(mi)-333(si\\246)-334(to)-333(\\273)-1(ali)1(\\252a)-334(n)1(a)-334(n)1(iego?)]TJ 0 -13.549 Td[({)-333(\\212\\273)-1(es)-1(z)-333(jak)-333(ten)-333(pies)-1(!)-333({)-333(krzykn)1(\\241\\252)-334(An)29(te)-1(k)-333(p)1(rze)-1(st\\246)-1(p)1(uj)1(\\241c)-334(pr)1(\\363g.)]TJ 0 -13.55 Td[(Mateusz)-469(si\\246)-469(p)-27(orw)28(a\\252)-469(w)-469(ten)-468(mig)-469(d)1(o)-469(n)1(iego,)-469(al)1(e)-469(nim)-468(m)-1(\\363g\\252)-468(z)-1(miark)28(o)28(w)28(a\\242)-469(c)-1(o)]TJ -27.879 -13.549 Td[(b\\241d)1(\\271)-1(,)-340(j)1(u\\273)-341(An)29(te)-1(k)-340(sk)28(o)-28(cz)-1(y\\252)-340(jak)-340(ten)-340(wilk)-340(w\\261)-1(ciek\\252y)83(,)-340(c)28(h)28(yci\\252)-341(go)-340(j)1(e)-1(d)1(n\\241)-340(r\\246k)55(\\241)-340(za)-341(or)1(z)-1(yd)1(le,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(dusi\\252,)-408(a\\273)-410(t)1(am)27(ten)-409(d)1(e)-1(c)28(h)-408(i)-409(g\\252os)-409(s)-1(tr)1(ac)-1(i)1(\\252)-1(,)-408(dr)1(ug\\241)-409(u)1(j\\241\\252)-408(z)-1(a)-409(p)1(as)-1(,)-408(wyrw)28(a\\252)-409(z)-409(mie)-1(j)1(s)-1(ca)]TJ 0 -13.549 Td[(jak)-373(k)1(ie)-1(r)1(z)-1(,)-373(n)1(o)-1(g\\241)-373(d)1(rz)-1(wi)-373(wyw)28(ali\\252)-373(na)-373(dw)28(\\363r)-373(i)-373(p)-28(on)1(i\\363s)-1(\\252)-373(go)-373(pr\\246dk)28(o)-373(za)-374(tar)1(tak,)-373(do)-373(rze)-1(k)1(i)]TJ 0 -13.549 Td[(ogro)-27(dzonej)-313(p\\252otem)-1(,)-313(i)-313(c)-1(i)1(s)-1(n)1(\\241\\252)-314(z)-314(ca\\252e)-1(j)-313(mo)-28(cy)83(,)-313(a\\273)-314(cz)-1(t)1(e)-1(ry)-313(\\273e)-1(r)1(dki)-313(tr)1(z)-1(as\\252y)-314(k)1(ie)-1(j)-313(s\\252omki,)-313(a)]TJ 0 -13.549 Td[(Mateusz)-334(n)1(ib)28(y)-333(klo)-27(c)-334(c)-1(i)1(\\246)-1(\\273ki)-333(pad)1(\\252)-334(w)28(e)-334(w)28(o)-28(d\\246.)]TJ 27.879 -13.55 Td[(Re)-1(j)1(w)27(ac)28(h)-341(si\\246)-341(ucz)-1(yn)1(i\\252)-341(i)-341(kr)1(z)-1(y)1(k)-341(wie)-1(l)1(ki,)-341(b)-27(o)-341(rze)-1(k)56(a)-341(w)-341(t)28(ym)-341(mie)-1(j)1(s)-1(cu)-341(b)29(ys)-1(tr)1(a)-341(b)28(y\\252a)-341(i)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)-27(ok)56(a,)-271(rzucili)-271(s)-1(i\\246)-271(lud)1(z)-1(ie)-271(na)-271(ratun)1(e)-1(k)-271(i)-271(wyci\\241)-28(gn\\246li)-271(go)-271(ryc)27(h)1(\\252o,)-272(al)1(e)-272(b)28(y\\252)-271(niepr)1(z)-1(yt)1(om)-1(-)]TJ 0 -13.549 Td[(n)28(y)84(,)-330(ledwie)-331(si\\246)-331(go)-330(d)1(o)-28(c)-1(u)1(c)-1(i)1(li.)-330(P)1(rz)-1(y)1(le)-1(cia\\252)-330(wnet)-331(m\\252yn)1(arz,)-330(przywiedli)-330(w)-330(par)1(\\246)-331(pacierzy)]TJ 0 -13.549 Td[(Jam)28(bro\\273a,)-357(nasz)-1(\\252o)-357(s)-1(i)1(\\246)-358(lu)1(dz)-1(i)-357(ze)-358(ws)-1(i)1(,)-357(a\\273)-358(go)-357(prze)-1(n)1(ie\\261)-1(li)-357(d)1(o)-358(m\\252yn)1(arz)-1(o)28(w)28(e)-1(go)-357(dom)28(u,)-357(b)-27(o)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-231(m)-1(d)1(la\\252)-231(i)-231(rzyga\\252)-231(krwi\\241.)-230(P)28(o)-231(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-231(n)1(a)27(w)28(e)-1(t)-231(p)-27(os\\252ali,)-231(tak)-231(si\\246)-231(\\271)-1(le)-231(z)-232(n)1(im)-231(w)-1(i)1(dzia\\252o,)]TJ 0 -13.55 Td[(m)27(y)1(\\261)-1(leli,)-333(\\273e)-334(i)-333(ran)1(k)55(a)-333(n)1(ie)-334(do)-27(c)-1(ze)-1(k)56(a.)]TJ 27.879 -13.549 Td[(An)28(tek)-266(za\\261)-1(,)-266(k)1(ie)-1(d)1(y)-266(Mateusza)-266(w)-1(y)1(nie\\261)-1(l)1(i,)-266(siad\\252)-266(sp)-28(ok)28(o)-55(jn)1(ie)-267(n)1(a)-266(jego)-266(m)-1(i)1(e)-1(j)1(s)-1(cu)-266(p)1(rz)-1(ed)]TJ\nET\nendstream\nendobj\n682 0 obj <<\n/Type /Page\n/Contents 683 0 R\n/Resources 681 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 668 0 R\n>> endobj\n681 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n686 0 obj <<\n/Length 5792      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(211)]TJ -358.232 -35.866 Td[(k)28(ominem)-299(i)-298(gr)1(z)-1(a\\252)-298(sobie)-298(r\\246c)-1(e,)-298(i)-298(p)-28(ogad)1(yw)28(a\\252)-299(z)-298(F)83(r)1(anki)1(e)-1(m,)-298(kt\\363ry)-297(s)-1(i\\246)-298(z)-1(n)1(alaz\\252)-299({)-298(a)-298(sk)28(o)-1(r)1(o)]TJ 0 -13.549 Td[(lu)1(dzie)-362(p)-27(op)-28(o)28(wracali)-361(i)-362(u)1(s)-1(p)-27(ok)28(oi\\252o)-362(si\\246)-362(n)1(ie)-1(co,)-361(rze)-1(k\\252)-361(tak)-362(g\\252o\\261no,)-361(b)28(y)-361(ws)-1(zysc)-1(y)-361(s)-1(\\252y)1(s)-1(ze)-1(li)1(,)]TJ 0 -13.549 Td[(a)-333(m)-1(o)-27(c)-1(n)1(o,)-334(b)29(y)-334(sobi)1(e)-334(k)56(a\\273)-1(d)1(y)-333(z)-1(ap)1(am)-1(i\\246ta\\252:)]TJ 27.879 -13.549 Td[({)-411(K)1(to)-411(in)1(o)-411(b)-27(\\246)-1(d)1(z)-1(i)1(e)-411(m)-1(n)1(ie)-411(sz)-1(arp)1(a\\252)-411(i)-410(nasta)28(w)27(a\\252)-410(na)-411(mn)1(ie)-1(,)-410(k)56(a\\273)-1(d)1(e)-1(m)28(u)-410(tak)-411(zrob)1(i\\246)]TJ -27.879 -13.549 Td[(alb)-27(o)-333(jes)-1(zc)-1(ze)-334(lepiej!)]TJ 27.879 -13.55 Td[(Nikt)-390(si\\246)-390(nie)-390(o)-28(d)1(e)-1(zw)27(a\\252,)-390(p)1(atrze)-1(li)-389(na)-390(ni)1(e)-1(go)-390(z)-390(g\\252)-1(\\246b)-27(okim)-390(p)-28(o)-27(dziw)27(em,)-390(z)-391(sz)-1(acun)1(-)]TJ -27.879 -13.549 Td[(kiem,)-252(b)-27(o)-251(jak\\273e)-1(,)-251(\\273e)-1(b)29(y)-252(tak)1(ie)-1(go)-251(c)27(h)1(\\252opa)-251(jak)-251(Mateusz)-252(wz)-1(i)1(\\241\\242)-252(tak)-251(le)-1(tk)28(o)-251(ni)1(b)28(y)-251(te)-1(n)-251(snop)-27(ek)]TJ 0 -13.549 Td[(s\\252)-1(om)28(y)83(,)-372(p)-28(on)1(ie)-1(\\261\\242)-374(i)-372(rzuc)-1(i)1(\\242)-374(d)1(o)-373(w)27(o)-28(d)1(y!)-373(Jes)-1(zc)-1(ze)-373(nikto)-373(o)-373(tak)1(im)-374(mo)-28(carzu)-373(n)1(ie)-374(s\\252ysz)-1(a\\252!..)1(.)]TJ 0 -13.549 Td[(No,)-318(b)-27(o)-318(\\273)-1(eb)28(y)-318(si\\246)-318(p)-28(ob)1(ili)1(,)-318(z)-1(magali)-318(i)-317(jeden)-318(d)1(rugi)1(e)-1(go)-318(p)1(rze)-1(m\\363g\\252,)-318(p)-27(o)-1(p)1(rze)-1(tr)1(\\241c)-1(a\\252)-318(m)28(u)-318(k)28(o-)]TJ 0 -13.549 Td[(\\261c)-1(i,)-405(zabi)1(\\252)-405(na)28(w)27(et)-405({)-405(rze)-1(cz)-406(zwyc)-1(za)-56(j)1(na!)-405(Al)1(e)-406(n)1(ie)-1(,)-404(ino)-405(wz)-1(i)1(\\241\\242)-406(ki)1(e)-1(j)-404(te)-1(go)-405(sz)-1(cz)-1(eni)1(ak)55(a)-405(za)]TJ 0 -13.549 Td[(uszy)-259(i)-258(ciepn)1(\\241\\242)-259(do)-258(w)28(o)-28(dy)1(!)-259(\\233e)-258(m)27(u)-258(ta)-258(\\273e)-1(b)1(ra)-258(p)-28(op)-27(\\246k)55(a\\252y)-258(o)-28(d)-257(\\273)-1(erdek,)-258(n)1(ic)-259(to,)-258(wyleku)1(je)-259(si\\246,)]TJ 0 -13.55 Td[(ale)-324(tak)1(i)-324(wst)28(yd,)-323(tak)1(i)-324(wst)28(yd,)-323(tego)-324(c)28(h)28(yba)-323(Mat)1(e)-1(u)1(s)-1(z)-324(n)1(ie)-324(pr)1(z)-1(eni)1(e)-1(sie)-1(!)1(...)-323(T)83(ak)-323(o)28(w)-1(st)28(ydzi\\242)]TJ 0 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)56(a)-333(na)-333(c)-1(a\\252e)-334(\\273ycie!...)]TJ 27.879 -13.549 Td[({)-333(No,)-333(no)-333(w)-1(i)1(e)-1(cie,)-334(moi\\261c)-1(i)1(e)-1(wy)83(,)-333(tego)-333(jes)-1(zc)-1(ze)-334(n)1(ie)-334(b)28(y\\252o)-333(s)-1(zeptali)-333(mi\\246dzy)-333(s)-1(ob)1(\\241.)]TJ 0 -13.549 Td[(Ale)-447(An)28(te)-1(k)-446(na)-447(ni)1(c)27(h)-447(n)1(ie)-448(zw)27(a\\273a\\252,)-447(z)-1(me\\252)-1(\\252)-447(k)56(asz)-1(\\246)-447(i)-447(k)28(o\\252)-1(o)-447(p)-27(\\363\\252no)-27(c)27(k)56(a)-447(p)-28(osz)-1(ed\\252)-447(do)]TJ -27.879 -13.549 Td[(dom)28(u;)-333(\\261wie)-1(ci\\252o)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(u)-333(m\\252ynar)1(z)-1(a)-333(w)-334(tej)-333(izbie,)-333(gdzie)-334(z\\252o\\273)-1(y)1(li)-333(Mateusz)-1(a.)]TJ 27.879 -13.55 Td[({)-423(Nie)-423(b)-27(\\246)-1(d)1(z)-1(iesz)-424(si\\246)-1(,)-422(\\261)-1(cierw)28(o,)-423(pr)1(z)-1(ec)27(h)28(w)28(ala\\252)-423(wi\\246c)-1(ej,)-422(\\273)-1(e\\261)-424(u)-422(Jagn)28(y)-423(w)-423(k)28(omorze)]TJ -27.879 -13.549 Td[(b)28(yw)28(a\\252!)-333({)-334(sze)-1(pn)1(\\241\\252)-334(n)1(iena)28(wis)-1(t)1(nie)-334(i)-333(spl)1(un\\241\\252.)]TJ 27.879 -13.549 Td[(W)-312(d)1(om)27(u)-311(ni)1(c)-313(n)1(ie)-312(p)-27(o)27(wiedzia\\252,)-312(c)28(ho)-28(\\242)-312(Han)1(k)55(a)-311(jes)-1(zc)-1(ze)-312(nie)-312(spa\\252a)-312(za)-56(j\\246ta)-312(p)1(rz\\246)-1(d)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(m,)-338(ale)-339(ran)1(o)-339(n)1(ie)-339(p)-27(os)-1(zed\\252)-338(do)-338(rob)-27(ot)27(y)84(,)-338(b)28(y\\252)-338(p)-28(ewn)28(y)84(,)-339(\\273e)-339(go)-338(o)-28(dp)1(ra)28(wi\\241,)-338(z)-1(ar)1(az)-339(jedn)1(ak)]TJ 0 -13.549 Td[(p)-27(o)-334(\\261ni)1(adani)1(u)-333(przylecia\\252)-334(sam)-334(m\\252ynar)1(z)-1(.)]TJ 27.879 -13.55 Td[({)-270(Cho)-28(d)1(\\271)-1(cie\\273)-271(d)1(o)-270(rob)-27(ot)28(y)83(,)-270(co)-270(mac)-1(ie)-270(z)-271(M)1(ate)-1(u)1(s)-1(ze)-1(m,)-270(to)-270(w)28(asz)-1(a)-270(spra)28(w)28(a,)-270(ni)1(c)-271(mi)-270(do)]TJ -27.879 -13.549 Td[(tego,)-360(a)-360(tar)1(tak)-360(sta\\242)-360(nie)-360(mo\\273)-1(e,)-360(d)1(op)-27(\\363ki)-360(n)1(ie)-360(oz)-1(d)1(ro)28(wie)-1(j)1(e)-1(;)-359(pr)1(o)27(w)28(ad\\271c)-1(i)1(e)-361(r)1(ob)-28(ot)1(\\246)-1(,)-359(c)-1(zte)-1(r)1(y)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(e)-334(i)-333(obiad)-333(b)-27(\\246d\\246)-334(w)28(am)-334(p)1(\\252)-1(aci\\252.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(\\363)-56(j)1(d\\246,)-333(da)-333(pan)-333(t)28(yle,)-333(c)-1(o)-333(Mat)1(e)-1(u)1(s)-1(zo)27(wi,)-333(stan\\246)-333(i)-334(n)1(ie)-334(gor)1(z)-1(ej)-333(p)-27(opro)28(w)28(adz\\246)-1(.)]TJ 0 -13.549 Td[(M\\252yn)1(arz)-463(si\\246)-463(w\\261c)-1(iek)56(a\\252,)-463(tar)1(go)28(w)27(a\\252,)-462(ale)-463(p)1(rzys)-1(ta\\242)-462(m)27(usia\\252,)-462(b)-27(o)-463(n)1(ie)-463(b)28(y\\252o)-462(rad)1(y)83(,)]TJ -27.879 -13.55 Td[(zaraz)-334(go)-333(te)-1(\\273)-333(z)-1(ab)1(ra\\252)-334(i)-333(p)-27(osz)-1(li)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(ni)1(c)-334(z)-334(tego)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-333(p)-28(o)-55(j\\246\\252a,)-334(b)-27(o)-333(o)-334(n)1(icz)-1(ym)-333(nie)-333(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a.)]TJ\nET\nendstream\nendobj\n685 0 obj <<\n/Type /Page\n/Contents 686 0 R\n/Resources 684 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n684 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n690 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(212)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(15.)]TJ\nET\nendstream\nendobj\n689 0 obj <<\n/Type /Page\n/Contents 690 0 R\n/Resources 688 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n688 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n693 0 obj <<\n/Length 7668      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(16)]TJ/F17 10.909 Tf 0 -73.325 Td[(W)-249(Wigi)1(li\\246)-250(p)1(rze)-1(d)-249(go)-28(d)1(n)28(ymi)-249(\\261)-1(wi\\246tami)-249(ju\\273)-249(o)-28(d)-249(s)-1(amego)-250(\\261witani)1(a)-250(wrza\\252)-250(p)1(rzyspies)-1(zon)28(y)84(,)]TJ 0 -13.549 Td[(gor\\241cz)-1(k)28(o)28(wy)-333(ru)1(c)27(h)-333(w)-334(ca\\252yc)27(h)-332(Lip)-28(cac)27(h)1(.)]TJ 27.879 -13.549 Td[(W)-337(n)1(o)-28(cy)-337(c)-1(zy)-337(te\\273)-337(dopi)1(e)-1(r)1(o)-337(na)-337(o)-28(d)1(e)-1(d)1(ni)1(u)-337(mr\\363z)-337(b)28(y\\252)-337(zno)28(wu)-337(kr)1(z)-1(epk)28(o)-337(c)28(h)28(yci\\252,)-337(a)-337(\\273e)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-375(p)-27(o)-374(par)1(u)-374(dn)1(iac)27(h)-373(m)-1(i\\246tki)1(c)27(h)-374(i)-374(wilgn)29(yc)27(h)-373(m)-1(gie\\252,)-374(to)-374(ob)28(w)28(ali\\252)-374(dr)1(z)-1(ew)27(a)-374(sadzi\\241)]TJ 0 -13.55 Td[(jak)1(b)28(y)-330(t)28(ymi)-330(sz)-1(k)1(lan)28(ymi)-330(stru)1(\\273)-1(yn)1(am)-1(i)-329(alb)-27(o)-330(z)-1(asie)-330(pu)1(c)27(hem)-330(c)-1(o)-330(n)1(a)-56(j)1(bielsz)-1(ym;)-330(s\\252o\\253ce)-331(si\\246)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-239(ca\\252)-1(k)1(ie)-1(m)-239(wy\\252up)1(a\\252)-1(o)-239(i)-239(\\261w)-1(i)1(e)-1(ci\\252o)-240(n)1(a)-240(mo)-28(d)1(rym,)-239(jak)1(b)28(y)-239(oprz\\246)-1(d)1(z)-1(on)29(ym)-240(w)-239(c)-1(ieni)1(u\\261kie,)]TJ 0 -13.549 Td[(pr)1(z)-1(ejr)1(z)-1(yste)-324(mg\\252y)-324(n)1(iebie,)-324(j)1(e)-1(n)1(o)-324(\\273e)-324(bl)1(ade)-324(b)28(y\\252o,)-323(ost)27(y)1(g\\252e)-324(kiej)-324(t)1(a)-324(Hostia)-324(w)-323(m)-1(on)1(s)-1(tr)1(an-)]TJ 0 -13.549 Td[(cji)-366(u)1(ta)-56(j)1(ona,)-365(nic)-366(n)1(ie)-366(grze)-1(j)1(\\241c)-1(e,)-366(a)-366(n)1(apr)1(z)-1(ec)-1(i)1(w)-1(,)-365(b)-28(o)-365(m)-1(r)1(\\363z)-366(bra\\252)-366(n)1(a)-366(d)1(z)-1(ie\\253,)-365(p)-28(o)-27(dn)1(os)-1(i\\252)-366(si\\246)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-295(i)-295(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252)-295(tak)55(\\241)-294(s)-1(kr)1(z)-1(yt)28(w)28(\\241,)-295(\\273e)-296(d)1(e)-1(c)28(h)-295(zapi)1(e)-1(ra\\252o)-295(i)-294(s)-1(t)28(w)28(orze)-1(n)1(ie)-295(w)-1(sz)-1(elki)1(e)-296(c)28(ho-)]TJ 0 -13.549 Td[(dzi\\252o)-282(w)-282(p)1(arac)27(h)-281(o)-28(dd)1(e)-1(c)28(h\\363)28(w,)-282(n)1(ib)28(y)-282(w)-282(k\\252\\246bac)28(h)-282(mgie\\252,)-282(ale)-282(\\261)-1(wiat)-281(s)-1(i\\246)-282(ca\\252y)-282(rozs)-1(\\252on)1(e)-1(cz)-1(n)1(i\\252)]TJ 0 -13.55 Td[(i)-305(s)-1(tan)1(\\241\\252)-306(w)-305(takic)27(h)-305(migotl)1(iwyc)27(h)1(,)-306(j)1(arz\\241c)-1(yc)28(h)-305(blask)56(ac)27(h)1(,)-306(w)-305(takic)27(h)-305(ostry)1(c)27(h)-305(skrze)-1(n)1(iac)27(h)1(,)]TJ 0 -13.549 Td[(jak)-333(\\273e)-1(b)29(y)-333(kto)-334(d)1(iame)-1(n)29(to)27(w)28(\\241)-333(ros\\241)-334(p)1(rzy)28(okry\\252)-333(\\261)-1(n)1(iegi,)-333(a\\273)-334(o)-28(cz)-1(y)-333(b)-27(ola\\252y)-333(patr)1(z)-1(e\\242)-1(.)]TJ 27.879 -13.549 Td[(Ok)28(\\363ln)1(e)-449(p)-27(ola,)-448(p)1(rzyw)28(alone)-448(\\261)-1(n)1(ie)-1(gi)1(e)-1(m,)-448(le\\273)-1(a\\252y)-448(b)1(ia\\252e,)-448(rozis)-1(k)1(rz)-1(on)1(e)-1(,)-447(a)-448(g\\252)-1(u)1(c)27(h)1(e)-449(i)]TJ -27.879 -13.549 Td[(mart)28(w)27(e,)-379(i)1(no)-379(czas)-1(ami)-379(p)1(tak)-379(j)1(aki\\261)-379(\\252op)-27(ota\\252)-379(ws)-1(kr)1(o\\261)-379(bielizn)-378(m)-1(ieni)1(\\241c)-1(yc)28(h,)-378(\\273)-1(e)-379(in)1(o)-379(cie)-1(\\253)]TJ 0 -13.549 Td[(jego)-341(c)-1(zarn)29(y)-341(m)-1(i)1(gota\\252)-342(p)-27(o)-341(zagonac)27(h)-340(alb)-27(o)-341(to)-341(s)-1(tad)1(k)28(o)-341(kur)1(opat)28(w)-341(s)-1(kr)1(z)-1(yk)1(iw)27(a\\252o)-341(si\\246)-341(p)-28(o)-28(d)]TJ 0 -13.55 Td[(zas)-1(yp)1(an)28(ymi)-393(krzami)-393(i)-393(p\\252o)-28(c)28(hli)1(w)-1(i)1(e)-1(,)-393(cz)-1(u)1(jn)1(ie)-394(ci\\241)-28(gn)1(\\246)-1(\\252o)-393(c)28(h)28(y\\252kiem)-394(k)1(u)-393(lu)1(dzkim)-393(s)-1(iedzi-)]TJ 0 -13.549 Td[(b)-27(om)-1(,)-321(p)-28(o)-27(d)-322(b)1(rogi)-322(p)-27(e)-1(\\252n)1(e)-1(;)-321(gdzie)-323(zn\\363)28(w,)-322(al)1(e)-323(n)1(ie)-1(cz\\246)-1(sto,)-322(za)-56(j)1(\\241c)-1(ze)-1(k)-321(jaki)-321(z)-1(acz)-1(ern)1(ia\\252,)-322(kica\\252)]TJ 0 -13.549 Td[(p)-27(o)-329(\\261)-1(n)1(iegac)27(h,)-328(sta)27(w)28(a\\252)-329(s\\252upk)56(a)-328(i)-329(d)1(rapa\\252)-329(st)28(w)27(ar)1(dn)1(ia\\252\\241)-329(sk)28(orup)-27(\\246)-329(dob)1(iera)-56(j)1(\\241c)-329(s)-1(i\\246)-329(d)1(o)-329(zb)-28(o-)]TJ 0 -13.549 Td[(\\273a,)-285(ale)-285(s)-1(p)1(\\252os)-1(zon)28(y)-285(sz)-1(cz)-1(ek)56(aniem)-285(ps\\363)27(w,)-284(ucie)-1(k)56(a\\252)-285(z)-285(na)28(wrotem)-286(d)1(o)-285(b)-27(or\\363)28(w)-285(os)-1(zron)1(ia\\252yc)27(h)1(,)]TJ 0 -13.549 Td[(za)27(w)28(alon)28(y)1(c)27(h)-436(\\261niegiem)-1(,)-435(z)-1(mart)28(wia\\252yc)27(h)-435(z)-437(zimna!)-436({)-436(P)1(usto)-436(i)-436(g\\252u)1(c)27(ho)-436(si\\246)-436(c)-1(zyni)1(\\252)-1(o)-436(n)1(a)]TJ 0 -13.55 Td[(t)28(yc)27(h)-296(n)1(ie)-297(ob)-55(j\\246t)28(yc)27(h)-296(okiem)-297(r\\363)28(wniac)28(h)-296(\\261)-1(n)1(ie)-1(\\273n)28(yc)28(h,)-296(a)-297(t)28(ylk)28(o)-296(gdzie\\261)-1(,)-296(w)-297(dalek)28(o\\261c)-1(iac)28(h)-297(mo-)]TJ 0 -13.549 Td[(dr)1(a)28(w)-1(y)1(c)27(h,)-257(m)-1(a)-55(jacz)-1(y)1(\\252)-1(y)-257(ws)-1(ie,)-258(siwia\\252y)-258(sady)84(,)-258(mro)-28(cz)-1(a\\252y)-257(g\\241s)-1(zc)-1(ze)-1(,)-257(p)-28(o\\252y)1(s)-1(ki)1(w)27(a\\252y)-258(zamarz)-1(\\252e)]TJ 0 -13.549 Td[(strumienie.)]TJ 27.879 -13.549 Td[(Ch\\252\\363)-28(d)-357(p)1(rz)-1(ejm)28(uj)1(\\241c)-1(y)-357(i)-357(o)-28(d)-357(t)27(y)1(c)27(h)-357(mro\\271)-1(n)29(yc)27(h)-357(br)1(z)-1(ask)28(\\363)28(w)-358(\\261)-1(wietlist)28(y)-357(w)-1(i)1(on\\241\\252)-358(\\261wia-)]TJ -27.879 -13.549 Td[(tem)-334(ca\\252)-1(y)1(m)-334(i)-333(pr)1(z)-1(enik)56(a\\252)-333(na)-333(ws)-1(kr)1(\\363\\261)-334(z)-1(l)1(o)-28(do)28(w)28(ac)-1(ia\\252\\241)-333(c)-1(i)1(s)-1(z\\241.)]TJ 27.879 -13.55 Td[(\\233aden)-378(krzyk)-378(nie)-378(roz)-1(d)1(ar\\252)-378(z)-1(akr)1(z)-1(ep\\252ego)-379(milcz)-1(eni)1(a)-379(p)-27(\\363l,)-378(\\273)-1(ad)1(e)-1(n)-378(g\\252os)-379(\\273ywy)-379(n)1(ie)]TJ -27.879 -13.549 Td[(zadrga\\252)-364(ni)-364(n)1(a)27(w)28(e)-1(t)-364(p)-27(o\\261)-1(wist)-364(wiatru)-364(n)1(ie)-365(zas)-1(ze)-1(l)1(e)-1(\\261c)-1(i\\252)-364(w)-365(suc)28(h)28(yc)27(h)1(,)-364(rozis)-1(k)1(rzon)28(yc)27(h)-364(\\261ni)1(e)-1(-)]TJ 0 -13.549 Td[(gac)27(h)-287({)-288(le)-1(d)1(wie)-289(n)1(ie)-1(k)1(ie)-1(d)1(y)83(,)-288(czas)-1(ami,)-288(o)-28(d)-287(dr\\363g)-288(zgub)1(ion)28(yc)28(h)-288(w)-288(z)-1(ap)1(ac)27(h,)-287(t\\252uk\\252)-288(si\\246)-289(j)1(\\246)-1(kl)1(iwy)]TJ 0 -13.549 Td[(g\\252os)-279(dzw)27(onk)56(a)-279(i)-278(s)-1(kr)1(z)-1(y)1(p)-279(sani,)-278(ale)-280(t)1(ak)-279(s)-1(\\252ab)-27(o)-279(i)-279(o)-27(dleg\\252e)-1(,)-278(\\273)-1(e)-279(jes)-1(zc)-1(ze)-279(nie)-279(c)27(h)29(yc)-1(i)1(\\252)-279(c)-1(a\\252kiem,)]TJ 0 -13.549 Td[(ni)1(e)-334(roze)-1(zna\\252)-333(s)-1(k)56(\\241d)-333(i)-333(gd)1(z)-1(ie,)-333(a)-334(j)1(u\\273)-333(prze)-1(b)1(rzm)-1(i)1(a\\252)-334(i)-333(zgo\\252)-1(a)-333(p)1(rz)-1(epad)1(\\252o)-334(w)-333(c)-1(i)1(c)27(ho\\261c)-1(i)1(ac)27(h.)]TJ 27.879 -13.55 Td[(Ale)-353(p)-28(o)-353(li)1(p)-28(ec)27(ki)1(c)27(h)-353(d)1(rogac)27(h)1(,)-353(z)-354(ob)1(u)-353(stron)-353(sta)28(wu,)-353(ro)-55(jn)1(o)-353(b)28(y\\252o)-353(o)-28(d)-353(lu)1(dzi)-353(i)-353(wrza-)]TJ -27.879 -13.549 Td[(skliwie;)-471(radosn)28(y)-471(n)1(as)-1(tr)1(\\363)-56(j)-471(\\261w)-1(i)1(\\246)-1(ta)-471(dr)1(ga\\252)-472(w)-471(p)-27(o)27(wietrzu,)-471(p)1(rze)-1(n)1(ik)56(a\\252)-472(lu)1(dzi,)-471(na)28(w)28(e)-1(t)-471(w)]TJ 0 -13.549 Td[(b)28(yd)1(l\\241tk)56(ac)27(h)-375(si\\246)-376(o)-28(d)1(z)-1(yw)28(a\\252;)-376(k)1(rzyki)-375(d\\271w)-1(i)1(\\246)-1(cz)-1(a\\252y)-375(w)-376(s\\252)-1(u)1(c)27(h)1(liwym,)-376(mro\\271n)28(ym)-376(p)-27(o)28(wie)-1(t)1(rz)-1(u)]TJ 358.232 -29.888 Td[(213)]TJ\nET\nendstream\nendobj\n692 0 obj <<\n/Type /Page\n/Contents 693 0 R\n/Resources 691 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n691 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n696 0 obj <<\n/Length 10095     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(214)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(kieb)28(y)-383(m)28(uzyk)56(a,)-383(\\261m)-1(i)1(e)-1(c)27(h)29(y)-383(rozg\\252o\\261)-1(n)1(e)-1(,)-383(w)28(e)-1(so\\252e)-384(l)1(e)-1(cia\\252y)-383(z)-383(k)28(o\\253ca)-383(w)-384(k)28(on)1(iec)-384(wsi,)-383(rad)1(o\\261)-1(\\242)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252a)-399(z)-398(s)-1(erc;)-398(psy)-398(jak)-398(osz)-1(ala\\252e)-398(tarza\\252)-1(y)-398(si\\246)-398(p)-28(o)-398(\\261niegac)27(h)1(,)-398(s)-1(zc)-1(ze)-1(k)56(a\\252y)-398(z)-399(u)1(c)-1(i)1(e)-1(c)27(h)29(y)-398(i)]TJ 0 -13.549 Td[(gani)1(a\\252y)-432(z)-1(a)-432(wronami,)-432(t\\252u)1(k)55(\\241cymi)-432(s)-1(i)1(\\246)-433(ok)28(o\\252o)-432(dom\\363)27(w,)-432(p)-27(o)-432(s)-1(ta)-55(jn)1(iac)27(h)-432(r)1(\\273)-1(a\\252y)-432(k)28(on)1(ie)-1(,)-432(z)]TJ 0 -13.549 Td[(ob)-27(\\363r)-431(wyryw)28(aly)-431(si\\246)-432(p)1(rz)-1(eci\\241)-28(g\\252e)-1(,)-431(t)1(\\246)-1(skne)-431(ryki)1(,)-431(a)-432(n)1(a)28(w)27(et)-431(te)-1(n)-431(\\261ni)1(e)-1(g)-431(jak)1(b)28(y)-431(rad)1(o\\261)-1(n)1(ie)-1(j)]TJ 0 -13.549 Td[(skrzypi)1(a\\252)-349(p)-27(o)-28(d)-347(nogami,)-348(p)1(\\252)-1(ozy)-348(sa\\253)-348(p)1(is)-1(k)56(a\\252y)-348(n)1(a)-348(t)27(w)28(ard)1(yc)27(h)-347(wys)-1(zlic)28(h)28(tan)28(yc)28(h)-348(d)1(rogac)27(h)1(,)]TJ 0 -13.55 Td[(dy)1(m)27(y)-457(bi)1(\\252)-1(y)-457(mo)-28(d)1(rymi)-457(s)-1(\\252u)1(pami)-458(a)-457(pr)1(o\\261)-1(ciu)1(te)-1(\\253)1(k)28(o,)-458(j)1(akb)28(y)-457(strze)-1(li)1(\\252,)-458(ok)1(na)-457(z)-1(a\\261)-458(c)28(ha\\252up)]TJ 0 -13.549 Td[(gra\\252y)-373(tak)-373(w)-373(s)-1(\\252o\\253)1(c)-1(u)1(,)-373(a\\273)-374(razi\\252o)-373({)-373(a)-374(wsz)-1(\\246dzie)-374(p)-27(e\\252)-1(n)1(o)-373(b)28(y\\252o)-373(wrz)-1(a)28(wy)-373(dziec)-1(i)1(,)-373(rw)27(etes)-1(u)1(,)]TJ 0 -13.549 Td[(g\\246gliwyc)27(h)-282(g\\252os\\363)27(w)-283(g\\246s)-1(i)1(c)27(h,)-282(co)-283(s)-1(i)1(\\246)-283(trze)-1(p)1(a\\252)-1(y)-282(p)-27(o)-283(pr)1(z)-1(yr)1(\\246)-1(b)1(lac)27(h)1(,)-283(n)1(a)28(w)27(o\\252yw)28(a\\253;)-282(p)-28(e\\252no)-282(b)28(y\\252o)]TJ 0 -13.549 Td[(p)-27(o)-318(dr)1(ogac)27(h)-317(lud)1(z)-1(i,)-317(pr)1(z)-1(ed)-318(d)1(om)-1(ami,)-317(w)-318(op\\252otk)56(ac)27(h,)-317(a)-318(ws)-1(k)1(ro\\261)-318(o\\261)-1(n)1(ie)-1(\\273on)28(yc)28(h)-318(sad\\363)28(w)-318(raz)]TJ 0 -13.549 Td[(p)-27(o)-393(r)1(az)-393(c)-1(ze)-1(r)1(wie)-1(n)1(i\\252y)-392(s)-1(i\\246)-392(w)27(e\\252niaki)-392(k)28(ob)1(ie)-1(t)1(,)-393(p)1(rze)-1(b)1(ie)-1(ga)-55(j\\241cyc)27(h)-392(z)-392(c)27(ha\\252u)1(p)28(y)-392(do)-392(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)]TJ 0 -13.549 Td[(\\273e)-397(raz)-397(p)-27(o)-397(raz)-397(tr)1(\\241c)-1(an)1(e)-397(w)-397(bi)1(e)-1(gu)-396(dr)1(z)-1(ewin)28(y)-396(i)-397(k)1(rze)-397(s)-1(yp)1(a\\252y)-397(stru)1(gam)-1(i)-396(oki\\261ci)-397(n)1(ib)28(y)-396(t\\241)]TJ 0 -13.55 Td[(sre)-1(b)1(rn)1(\\241)-334(k)1(urza)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(M\\252yn)-479(na)28(w)28(e)-1(t)-480(d)1(z)-1(i)1(s)-1(ia)-55(j)-480(n)1(ie)-480(turk)28(ot)1(a\\252)-1(,)-479(s)-1(tan)1(\\241\\252)-480(na)-480(\\261w)-1(i)1(\\246)-1(ta)-480(ca\\252e)-1(,)-479(a)-480(t)28(ylk)28(o)-480(zim)-1(n)1(e)]TJ -27.879 -13.549 Td[(sz)-1(kl)1(iw)27(o)-351(w)28(o)-28(dy)-350(prze)-1(j)1(rzys)-1(t)1(e)-1(j)1(,)-351(pu)1(s)-1(zc)-1(zonej)-351(na)-351(u)1(pu)1(s)-1(t,)-351(d)1(z)-1(w)28(oni)1(\\252o)-352(b)-27(e\\252)-1(k)28(ot)1(liwie,)-351(a)-351(gdzie)-1(\\261)]TJ 0 -13.549 Td[(za)-283(ni)1(m)-1(,)-282(w)-283(b)1(\\252otac)27(h)-282(i)-282(w)-283(oparzelisk)55(ac)28(h,)-282(z)-283(opar)1(\\363)27(w)-282(kur)1(z)-1(\\241cyc)27(h)-282(si\\246)-283(m)-1(g\\252ami)-282(w)-1(y)1(dzie)-1(r)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-334(kr)1(z)-1(yk)1(i)-334(d)1(z)-1(i)1(kic)27(h)-333(k)56(acz)-1(ek)-333(i)-333(c)-1(a\\252e)-334(i)1(c)27(h)-333(stada)-333(k)28(o\\252o)27(w)28(a\\252y)83(.)]TJ 27.879 -13.55 Td[(A)-451(w)-452(k)56(a\\273dej)-451(c)27(ha\\252u)1(pie,)-451(u)-451(Szymon\\363)28(w,)-451(u)-451(Ma\\242k)28(\\363)28(w)-1(,)-451(u)-451(w)28(\\363)-56(j)1(t\\363)28(w)-1(,)-451(u)-451(K)1(\\252\\246)-1(b)-27(\\363)28(w)-1(,)-451(i)]TJ -27.879 -13.549 Td[(kto)-309(ic)28(h)-309(tam)-309(z)-1(l)1(ic)-1(zy)-309(a)-309(wyp)-27(o)27(wie)-309(ws)-1(zystkic)27(h)1(,)-309(p)1(rz)-1(ewie)-1(t)1(rz)-1(an)1(o)-309(izb)28(y)83(,)-308(m)27(yto,)-309(szoro)28(w)27(an)1(o,)]TJ 0 -13.549 Td[(p)-27(os)-1(yp)29(yw)27(an)1(o)-445(izb)28(y)84(,)-445(s)-1(i)1(e)-1(n)1(ie)-1(,)-444(a)-445(na)28(w)28(e)-1(t)-445(i)-444(\\261)-1(n)1(ieg)-445(pr)1(z)-1(ed)-445(p)1(rogami)-445(\\261w)-1(i)1(e)-1(\\273ym)-445(igliwiem)-1(,)-444(a)]TJ 0 -13.549 Td[(gdzieniegdzie)-452(to)-452(i)-451(bielono)-451(p)-28(o)-28(cze)-1(rn)1(ia\\252e)-452(k)28(om)-1(i)1(n)28(y;)-452(a)-452(wsz)-1(\\246dzie)-452(na)-452(gw)28(a\\252t)-452(p)1(ie)-1(cz)-1(on)1(o)]TJ 0 -13.549 Td[(c)27(h)1(leb)28(y)-396(i)-396(on)1(e)-396(s)-1(tr)1(ucle)-397(\\261wi\\241tec)-1(zne,)-396(op)1(ra)28(w)-1(i)1(ano)-396(\\261le)-1(d)1(z)-1(i)1(e)-1(,)-395(w)-1(i)1(e)-1(rcono)-395(w)-397(n)1(iep)-28(ol)1(e)-1(w)28(an)28(yc)27(h)]TJ 0 -13.55 Td[(don)1(icac)27(h)-333(mak)-333(do)-333(klu)1(s)-1(ek.)]TJ 27.879 -13.549 Td[(Bo)-28(\\242)-499(to)-498(Go)-28(d)1(y)-498(s)-1(z\\252y)83(,)-498(P)28(a\\253)1(s)-1(ki)1(e)-1(go)-498(Dz)-1(i)1(e)-1(ci\\241tk)56(a)-499(\\261wi\\246to,)-498(radosn)28(y)-498(dzie\\253)-498(c)-1(u)1(du)-498(i)]TJ -27.879 -13.549 Td[(zm)-1(i\\252o)28(w)28(ania)-435(Jez)-1(u)1(s)-1(o)28(w)28(e)-1(go)-435(nad)-435(\\261wiatem)-1(,)-435(b)1(\\252)-1(ogos\\252a)28(w)-1(i)1(ona)-435(pr)1(z)-1(erw)28(a)-436(w)-435(d\\252u)1(gic)27(h)1(,)-436(p)1(ra-)]TJ 0 -13.549 Td[(co)27(wit)28(yc)28(h)-395(d)1(niac)28(h,)-394(to)-395(i)-395(w)-395(lu)1(dzis)-1(k)56(ac)28(h)-395(b)1(udzi\\252a)-395(si\\246)-395(du)1(s)-1(za)-395(z)-395(z)-1(imo)28(w)27(ego)-395(o)-28(d)1(r\\246t)27(wieni)1(a,)]TJ 0 -13.549 Td[(otrz\\241sa\\252)-1(a)-377(si\\246)-378(z)-377(s)-1(zarzyz)-1(n)29(y)83(,)-377(p)-27(o)-28(dn)1(os)-1(i)1(\\252a)-378(si\\246)-378(i)-377(sz)-1(\\252a)-377(rad)1(os)-1(n)1(a,)-377(c)-1(zuj)1(\\241c)-1(a)-377(mo)-28(cno)-377(na)-377(sp)-28(o-)]TJ 0 -13.55 Td[(tk)56(ani)1(e)-334(nar)1(o)-28(dzin)-333(P)28(a\\253)1(s)-1(ki)1(c)27(h!)]TJ 27.879 -13.549 Td[(I)-333(u)-333(B)-1(or)1(yn\\363)28(w)-333(b)28(y\\252)-333(taki)-333(s)-1(am)-333(rw)27(etes)-1(,)-333(kr)1(\\246)-1(tan)1(ina)-333(i)-333(pr)1(z)-1(y)1(g)-1(ot)1(o)27(w)28(ani)1(a.)]TJ 0 -13.549 Td[(St)1(ary)-487(j)1(e)-1(sz)-1(cz)-1(e)-487(b)28(y\\252)-487(d)1(o)-488(d)1(ni)1(a)-487(p)-28(o)-55(jec)27(ha\\252)-487(d)1(o)-487(m)-1(i)1(as)-1(ta)-487(p)-27(o)-487(z)-1(ak)1(up)28(y)-487(z)-487(Pi)1(e)-1(tr)1(kiem)-1(,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(go)-333(pr)1(z)-1(yj)1(\\241\\252)-334(d)1(o)-334(k)28(on)1(i)-333(na)-333(Ku)1(b)-28(o)28(w)28(e)-334(m)-1(i)1(e)-1(j)1(s)-1(ce)-1(.)]TJ 27.879 -13.549 Td[(A)-340(w)-341(c)28(ha\\252u)1(pie)-340(u)28(wijan)1(o)-341(si\\246)-340(\\273)-1(w)28(a)27(w)28(o,)-340(J\\363zk)56(a)-341(p)1(rzy\\261)-1(p)1(iew)-1(y)1(w)27(a\\252a)-340(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-340(i)-340(strzy-)]TJ -27.879 -13.55 Td[(g\\252a)-411(z)-411(pap)1(ie)-1(r)1(\\363)28(w)-411(k)28(oloro)28(wyc)27(h)-410(one)-411(cudac)28(kie)-411(strzy\\273)-1(k)1(i,)-411(kt\\363r)1(e)-411(c)-1(zy)-411(n)1(a)-411(b)-28(elk)28(\\246,)-411(cz)-1(y)-410(te)-1(\\273)]TJ 0 -13.549 Td[(na)-429(ram)27(y)-429(obr)1(az)-1(\\363)28(w)-430(nal)1(e)-1(p)1(i\\242)-1(,)-429(to)-430(wid)1(z)-1(\\241)-430(si\\246)-430(kieb)28(y)-429(p)-28(omalo)28(w)27(an)1(e)-430(w)-430(\\273)-1(yw)28(e)-430(k)28(olory)84(,)-430(o)-28(d)]TJ 0 -13.549 Td[(kt\\363r)1(yc)27(h)-407(a\\273)-408(gra)-407(w)-408(o)-28(cz)-1(ac)28(h!)-407(A)-408(Jagn)1(a,)-408(z)-408(zak)56(as)-1(an)29(ym)-1(i)-407(p)-27(o)-408(ramion)1(a)-408(r)1(\\246)-1(k)56(a)28(w)27(ami,)-407(m)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(si\\252a)-359(w)-359(dzie)-1(\\273y)-359(cias)-1(t)1(o)-359(i)-359(pr)1(z)-1(y)-359(matcz)-1(y)1(nej)-359(p)-27(om)-1(o)-27(c)-1(y)-359(p)1(iek\\252a)-359(s)-1(tr)1(ucle)-359(tak)-359(d\\252u)1(gac)27(hn)1(e)-1(,)-358(\\273)-1(e)]TJ 0 -13.549 Td[(widzia\\252y)-361(si\\246)-362(j)1(ak)28(o)-362(te)-361(le)-1(c)28(h)28(y)-361(w)-362(sadzie,)-361(na)-361(kt\\363r)1(yc)27(h)-361(p)1(ietrusz)-1(k)28(\\246)-361(z)-1(asiew)27(a)-55(j\\241,)-361(to)-361(c)27(h)1(le)-1(b)29(y)]TJ 0 -13.549 Td[(bi)1(e)-1(lsze)-370(n)1(ie)-1(co)-369(z)-370(p)29(ytlo)28(w)27(ej)-369(m\\241ki)-368({)-369(a)-369(z)-1(wij)1(a)-1(\\252a)-369(si\\246)-369(\\273)-1(yw)28(o,)-369(b)-27(o)-369(c)-1(i)1(as)-1(to)-369(j)1(u\\273)-369(kip)1(ia\\252o)-369(i)-369(trza)]TJ 0 -13.55 Td[(b)28(y\\252o)-323(w)-1(y)1(rabi)1(a\\242)-324(b)-28(o)-28(c)28(henki)1(,)-324(to)-323(p)-28(ogl)1(\\241da\\252a)-324(za)-324(J\\363zin\\241)-323(rob)-27(ot\\241,)-324(t)1(o)-324(z)-1(agl)1(\\241da\\252a)-324(d)1(o)-324(p)1(lac)27(k)56(a)]TJ 0 -13.549 Td[(z)-382(se)-1(r)1(e)-1(m)-381(i)-381(m)-1(io)-27(dem)-1(,)-381(kt)1(\\363re)-1(n)-380(w)-1(y)1(grze)-1(w)28(a\\252)-382(si\\246)-382(j)1(u\\273)-382(p)-27(o)-28(d)-381(p)1(ierzyn\\241)-381(i)-381(c)-1(zek)55(a\\252)-381(na)-381(pi)1(e)-1(c,)-381(to)]TJ 0 -13.549 Td[(lata\\252a)-333(na)-333(dr)1(ug\\241)-333(s)-1(tr)1(on\\246)-334(d)1(o)-333(s)-1(zaba\\261nik)56(a,)-333(w)-334(k)1(t\\363rym)-333(buzo)28(w)27(a\\252)-333(s)-1(i)1(\\246)-334(t\\246gi)-334(ogi)1(e)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-352(m)-1(i)1(a\\252)-353(przyk)56(azane,)-353(ab)28(y)-352(pil)1(no)28(w)27(a\\252)-352(ognia)-352(i)-353(d)1(ok\\252ada\\252)-353(p)-27(olan)1(,)-353(ale)-353(t)28(yl)1(e)-354(go)]TJ -27.879 -13.549 Td[(in)1(o)-390(wid)1(z)-1(i)1(e)-1(li)-389(co)-390(p)1(rzy)-389(\\261)-1(n)1(iadan)1(iu,)-389(b)-27(o)-389(z)-1(ar)1(az)-390(s)-1(i)1(\\246)-390(gdzies)-1(ik)-389(zap)-27(o)-28(dzia\\252.)-389(Pr)1(\\363\\273)-1(n)1(o)-390(J\\363zk)56(a,)]TJ 0 -13.55 Td[(to)-333(Dominik)28(o)28(w)28(a)-334(sz)-1(u)1(k)56(a\\252y)-334(go)-333(p)-27(o)-334(ob)-27(ej\\261c)-1(iu)-332(i)-334(n)1(a)28(w)27(o\\252yw)28(a\\252y)83(,)-333(an)1(i)-334(si\\246)-334(o)-27(dez)-1(w)28(a\\252)-334(j)1(uc)28(ha;)]TJ 27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-354(ano)-354(za)-354(br)1(ogie)-1(m)-354(w)-354(sz)-1(cz)-1(erym)-354(p)-27(olu)-353(p)-28(o)-27(d)-354(kr)1(z)-1(ami)-354(i)-353(z)-1(ak\\252ad)1(a\\252)-354(s)-1(i)1(d\\252a)-354(na)]TJ\nET\nendstream\nendobj\n695 0 obj <<\n/Type /Page\n/Contents 696 0 R\n/Resources 694 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n694 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n699 0 obj <<\n/Length 9034      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(215)]TJ -358.232 -35.866 Td[(ku)1(ropat)1(ki,)-404(a)-403(g\\246)-1(sto)-404(j)1(e)-404(przysyp)28(yw)28(a\\252)-404(pl)1(e)-1(w)28(am)-1(i)-403(dl)1(a)-404(ni)1(e)-1(p)-27(oz)-1(n)1(aki)-403(i)-404(pr)1(z)-1(y)1(n\\246t)27(y)84(.)-403(\\212apa)-404(z)]TJ 0 -13.549 Td[(ni)1(m)-357(b)28(y\\252)-357(i)-356(ten)-357(b)-27(o)-28(ciek,)-357(k)1(t\\363rego)-357(to)-357(b)29(y\\252)-357(w)-357(j)1(e)-1(sieni)-356(c)27(hor)1(e)-1(go)-356(przygar)1(n\\241\\252,)-357(wyk)1(uro)28(w)28(a\\252,)]TJ 0 -13.549 Td[(o)-28(c)28(hran)1(ia\\252,)-359(\\273)-1(ywi\\252,)-359(sz)-1(tu)1(k)-359(r\\363\\273n)28(yc)27(h)-358(w)-1(y)1(ucz)-1(y\\252)-359(i)-359(tak)-359(s)-1(i)1(\\246)-360(z)-360(ni)1(m)-360(p)-27(okuma\\252,)-359(\\273)-1(e)-359(niec)27(h)-359(in)1(o)]TJ 0 -13.549 Td[(zagw)-1(i)1(z)-1(d)1(a\\252)-259(na\\253)-258(p)-27(o)-259(s)-1(w)28(o)-56(j)1(e)-1(m)28(u,)-258(to)-259(p)1(tak)-259(c)28(ho)-28(d)1(z)-1(i)1(\\252)-259(z)-1(a)-258(nim)-259(n)1(ie)-1(zgorze)-1(j)-258(o)-28(d)-258(\\212ap)28(y)84(,)-259(z)-259(k)1(t\\363rym)]TJ 0 -13.549 Td[(b)28(y\\252)-333(w)-334(wielki)1(e)-1(j)-333(zgo)-28(dzie,)-333(b)-28(o)-333(raze)-1(m)-333(wypr)1(a)27(wiali)-333(si\\246)-334(n)1(a)-334(szc)-1(zury)-333(w)-333(s)-1(ta)-55(jn)1(i.)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)1(o)-285(z)-1(a\\261,)-285(kt\\363r)1(e)-1(go)-285(n)1(a)-285(c)-1(a\\252e)-285(\\261)-1(wi\\246ta)-285(Boryn)1(a)-285(do)-285(c)27(h)1(a\\252up)28(y)-284(przyj\\241\\252,)-284(s)-1(iedzia\\252)-285(ju)1(\\273)]TJ -27.879 -13.549 Td[(o)-28(d)-395(ran)1(a)-396(w)-396(k)28(o\\261c)-1(i)1(e)-1(le)-396(i)-395(tam)-396(do)-395(s)-1(p)-27(\\363\\252ki)-395(z)-397(J)1(am)27(br)1(o\\273)-1(y)1(m)-396(przystra)-55(jali)-395(o\\252tarze)-397(i)-395(\\261c)-1(ian)29(y)]TJ 0 -13.549 Td[(jedl)1(in\\241,)-333(j)1(akiej)-333(na)28(wi\\363z)-1(\\252)-333(ksi\\246\\273)-1(y)-333(par)1(ob)-28(ek.)]TJ 27.879 -13.549 Td[(P)28(o\\252u)1(dni)1(e)-265(j)1(u\\273)-264(d)1(o)-28(c)27(ho)-27(dzi\\252o,)-264(gd)1(y)-264(Jagn)1(a)-264(s)-1(k)28(o\\253)1(c)-1(zy\\252a)-264(z)-264(c)27(h)1(leb)-28(em)-1(,)-263(u\\252o\\273y\\252a)-264(b)-27(o)-28(c)27(h)1(e)-1(n)1(-)]TJ -27.879 -13.549 Td[(ki)-391(na)-391(d)1(e)-1(sc)-1(e)-392(i)-391(j)1(e)-1(sz)-1(cz)-1(e)-391(oklep)28(yw)28(a\\252)-1(a)-391(i)-391(s)-1(maro)28(w)28(a\\252a)-392(j)1(e)-392(bi)1(a\\252)-1(k)1(ie)-1(m,)-391(b)28(y)-391(zb)28(ytn)1(io)-392(w)-391(ogniu)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(op)-28(\\246k)56(a)-1(\\252y)84(,)-333(gdy)-333(Wi)1(te)-1(k)-333(wrazi\\252)-333(g\\252)-1(o)28(w)28(\\246)-334(w)-334(d)1(rzw)-1(i)-333(i)-333(kr)1(z)-1(y)1(kn\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(Kol\\246d\\246)-334(n)1(ies)-1(\\241!)]TJ 0 -13.549 Td[(Jak)28(o\\273)-335(ju)1(\\273)-335(o)-28(d)-334(ran)1(a)-335(s)-1(t)1(ars)-1(zy)-334(organi)1(\\261)-1(ciak,)-334(Jas)-1(i)1(o,)-335(ten,)-334(c)-1(o)-334(b)28(y\\252)-335(w)-334(s)-1(zk)28(o\\252ac)27(h,)-334(roz-)]TJ -27.879 -13.549 Td[(nosi\\252)-333(op\\252atki)-333(d)1(o)-334(sp)-27(\\363\\252)-1(k)1(i)-333(z)-334(m)-1(\\252o)-27(dsz)-1(ym)-333(bratem.)]TJ 27.879 -13.549 Td[(Do)-55(jrza\\252a)-258(ic)28(h)-257(Jagna)-257(ju\\273)-258(p)1(rze)-1(d)-257(gan)1(kiem)-1(,)-257(\\273e)-258(c)-1(zas)-1(u)-257(n)1(ie)-258(b)28(y\\252o)-258(n)1(a)28(w)27(et)-258(co\\261)-258(up)1(rz\\241t-)]TJ -27.879 -13.549 Td[(n\\241\\242,)-333(gdy)-333(d)1(o)-334(izb)28(y)-333(w)28(e)-1(sz)-1(l)1(i)-334(z)-333(P)28(o)-28(c)27(h)29(w)27(alon)29(ym.)]TJ 27.879 -13.55 Td[(Zafr)1(as)-1(o)28(w)28(a\\252)-1(a)-309(s)-1(i)1(\\246)-311(wielce)-1(,)-309(\\273)-1(e)-310(to)-309(w)-310(izbie)-310(r)1(oz)-1(gar)1(diasz)-310(b)28(y\\252)-310(tak)1(i,)-310(t)1(o)-310(in)1(o)-310(s)-1(c)28(ho)28(w)28(a\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-365(z)-1(ap)1(as)-1(k)28(\\246)-366(go\\252e)-366(r\\246c)-1(e)-366(i)-365(z)-1(ap)1(rasz)-1(a\\252a,)-365(b)28(y)-366(siedli)-365(o)-28(d)1(p)-28(o)-28(cz\\241\\242)-1(,)-365(b)-28(o)-365(k)28(os)-1(ze)-366(m)-1(i)1(e)-1(li)-365(wie)-1(l)1(kie,)]TJ 0 -13.549 Td[(a)-333(m)-1(\\252o)-28(d)1(s)-1(zy)-333(d\\271wiga\\252)-334(n)1(iez)-1(gorsze)-334(torb)-27(e)-1(czki)-333(i)-334(n)1(iepr\\363\\273ne.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(m)-1(am)28(y)-333(p)-28(\\363\\252)-333(ws)-1(i)-333(ob)-27(e)-1(j)1(\\261)-1(\\242,)-333(a)-334(czas)-1(u)-333(n)1(ie)-1(wiele!...)-333({)-333(wz)-1(b)1(rani)1(a\\252)-334(si\\246.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(pan)-333(J)1(as)-1(io)-333(c)27(h)1(o)-28(\\242)-334(si\\246)-334(ogrzeje,)-334(zamr\\363z)-334(tak)1(i!)]TJ 0 -13.55 Td[({)-448(A)-448(mo\\273)-1(e)-448(zdzie)-1(b)1(k)28(o)-448(gor\\241ce)-1(go)-448(mlek)55(a,)-447(to)-448(u)28(w)28(arz)-1(\\246)-448({)-448(pr)1(op)-28(on)1(o)28(w)27(a\\252a)-448(Domin)1(i-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(a.)-431(W)1(ym)-1(a)28(wiali)-431(si\\246,)-431(ale)-432(p)1(rzysie)-1(d)1(li)-431(p)-27(o)-28(d)-431(okn)1(e)-1(m)-431(na)-431(skrzyni)1(,)-431(Jas)-1(i)1(o)-432(za\\261)-432(tak)-431(si\\246)]TJ 0 -13.549 Td[(wpatr)1(z)-1(y\\252)-327(w)-327(Jagn\\246,)-327(a\\273)-328(p)-27(o)-28(c)-1(zerwie)-1(n)1(ia\\252a)-327(i)-327(j\\246\\252a)-328(spi)1(e)-1(sz)-1(n)1(ie)-328(\\261c)-1(i\\241)-27(ga\\242)-328(na)-327(r)1(\\246)-1(ce)-328(r\\246k)56(a)27(wy)84(,)-327(\\273)-1(e)]TJ 0 -13.549 Td[(i)-432(on)-432(p)-27(okr)1(a\\261)-1(n)1(ia\\252)-432(jak)-432(b)1(urak)-431(i)-432(wz)-1(i\\241\\252)-432(w)-432(k)28(os)-1(zu)-432(sz)-1(u)1(k)56(a\\242)-433(op)1(\\252)-1(at)1(k)28(\\363)27(w,)-432(a)-432(wyj)1(\\241\\252)-433(l)1(e)-1(p)1(s)-1(z\\241)-432(i)]TJ 0 -13.549 Td[(gru)1(bsz)-1(\\241)-328(p)1(ac)-1(zk)28(\\246)-1(,)-327(b)-28(o)-328(w)-328(z\\252ot)28(y)-328(pase)-1(k)-327(okr\\246c)-1(on)1(\\241)-328(i)-328(p)-27(oprzek\\252adan\\241)-327(k)28(oloro)28(wym)-1(i)-327(op\\252at-)]TJ 0 -13.55 Td[(k)56(am)-1(i)1(.)-289(Jagu)1(\\261)-289(wz)-1(i\\246\\252a)-289(j)1(\\241)-289(pr)1(z)-1(ez)-289(z)-1(ap)1(as)-1(k)28(\\246)-289(i)-288(p)-27(o\\252)-1(o\\273y\\252a)-289(n)1(a)-289(tal)1(e)-1(r)1(z)-1(u)-288(p)-27(o)-28(d)-288(P)28(as)-1(y)1(jk)56(\\241,)-289(a)-288(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(wyni)1(e)-1(s\\252a)-334(z)-334(d)1(obr)1(y)-333(garni)1(e)-1(c)-334(siem)-1(i)1(e)-1(n)1(ia)-334(l)1(nian)1(e)-1(go)-333(i)-333(s)-1(ze)-1(\\261\\242)-334(j)1(a)-56(j)1(e)-1(k.)]TJ 27.879 -13.549 Td[({)-333(P)28(an)-333(Ja\\261)-334(d)1(a)28(w)-1(n)1(o)-334(p)1(rzyjec)27(h)1(a\\252?)]TJ 0 -13.549 Td[({)-333(Dopiero)-333(w)-334(n)1(iedzie)-1(l)1(\\246)-1(,)-333(trzy)-333(dn)1(i)-333(te)-1(m)28(u.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(c)28(kni)-333(si\\246)-334(im)-333(w)-334(t)28(yc)27(h)-332(s)-1(zk)28(o\\252ac)27(h?)-333({)-334(zap)28(yta\\252a)-333(matk)56(a.)]TJ 0 -13.55 Td[({)-333(Nie)-334(b)1(ardzo,)-333(ale)-334(to)-333(ju)1(\\273)-334(ni)1(e)-1(d)1(\\252ugo,)-333(b)-27(o)-334(t)28(yl)1(k)28(o)-334(d)1(o)-334(wiosn)28(y!)]TJ 0 -13.549 Td[({)-227(A)-228(m\\363)28(w)-1(i)1(\\252)-1(a)-227(pan)1(i)-227(organi\\261cina)-227(jes)-1(zc)-1(ze)-228(w)-228(mo)-56(j)1(e)-228(w)27(ese)-1(le,)-227(\\273)-1(e)-228(p)1(an)-227(Jas)-1(io)-227(na)-227(ksi\\246)-1(d)1(z)-1(a)]TJ -27.879 -13.549 Td[(id)1(z)-1(ie...)]TJ 27.879 -13.549 Td[({)-333(T)83(ak,)-333(o)-28(d)-333(Wi)1(e)-1(lk)1(ie)-1(j)-333(No)-27(c)-1(y)84(,)-333(tak!)-333({)-333(rz)-1(ek\\252)-333(c)-1(i)1(s)-1(ze)-1(j)-333(i)-333(spu)1(\\261)-1(ci\\252)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-386(M\\363)-55(j)-386(Bo\\273)-1(e,)-386(to)-386(d)1(opiero)-386(p)-27(o)-28(cie)-1(c)28(ha)-386(si\\246)-387(o)-55(jcom)-387(\\261cie)-1(le!)-386(T)83(o)-386(d)1(opiero)-386(r)1(ado\\261\\242)-1(,)-386(\\273e)]TJ -27.879 -13.549 Td[(oni)-333(k)1(s)-1(i\\246dze)-1(m)-333(os)-1(tan)1(\\241,)-333(a)-334(mo\\273e)-334(da)-333(B\\363g,)-334(t)1(o)-334(i)-333(w)-334(n)1(as)-1(zej)-333(para\\014)1(i!)]TJ 27.879 -13.55 Td[({)-333(C)-1(\\363\\273)-333(tu)-333(u)-333(w)28(as)-334(s)-1(\\252yc)28(ha\\242?)-334({)-333(z)-1(ap)29(yta\\252,)-333(ab)28(y)-333(pr)1(z)-1(erw)28(a\\242)-334(p)28(ytan)1(ia)-333(niem)-1(i)1(\\252e)-1(.)]TJ 0 -13.549 Td[({)-449(A)-450(c\\363\\273)-450(b)28(y)84(,)-450(d)1(a\\252)-450(B\\363g,)-449(\\273)-1(e)-450(n)1(ic)-450(z\\252)-1(ego.)-449(P)28(omalu\\261ku)-449(ws)-1(zystk)28(o,)-450(p)-27(omalu\\261ku)1(,)-450(a)]TJ -27.879 -13.549 Td[(do)-27(ok)28(o\\252a,)-334(k)1(ie)-1(b)29(y)-334(w)-333(t)28(ym)-334(k)1(ie)-1(r)1(ac)-1(ie,)-333(jak)-333(zwyc)-1(za)-56(j)1(nie)-333(w)-334(c)27(h)1(\\252opskim)-334(stan)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(c)-1(i)1(a\\252e)-1(m)-334(p)1(rzyjec)27(h)1(a\\242)-334(na)-333(w)28(as)-1(ze)-1(,)-333(Jagu)1(\\261)-1(,)-333(w)28(e)-1(se)-1(l)1(e)-1(,)-333(ale)-334(mni)1(e)-334(ni)1(e)-334(pu)1(\\261)-1(cili.)]TJ 0 -13.549 Td[({)-250(A)-251(tak)56(a)-250(z)-1(ab)1(a)28(w)27(a)-250(b)28(y\\252a,)-250(\\273)-1(e)-250(b)-28(ez)-251(ca\\252)-1(e)-250(trzy)-251(d)1(ni)-250(ta\\253)1(c)-1(o)28(w)28(ali!{)-250(wykrzykn)1(\\246)-1(\\252a)-250(J\\363z)-1(k)56(a.)]TJ 0 -13.55 Td[({)-333(Kub)1(a)-334(p)-27(o)-28(d)1(obn)1(o)-334(w)-333(t)28(ym)-334(cz)-1(asie)-334(u)1(m)-1(ar)1(\\252!)]TJ 0 -13.549 Td[({)-477(A)-477(z)-1(mar\\252o)-477(m)27(u)-477(si\\246,)-477(z)-1(mar\\252o)-477(c)27(h)28(u)1(dziacz)-1(k)28(o)28(wi,)-477(krew)-477(go)-478(u)1(s)-1(z\\252a)-477(i)-478(n)1(a)28(w)27(et)-477(b)-28(ez)]TJ\nET\nendstream\nendobj\n698 0 obj <<\n/Type /Page\n/Contents 699 0 R\n/Resources 697 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n697 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n702 0 obj <<\n/Length 9020      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(216)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(\\261w)-1(i)1(\\246)-1(tej)-407(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-407(s)-1(k)28(o\\253)1(c)-1(z\\252.)-408(M)1(\\363)28(w)-1(i)1(\\241)-408(p)-27(o)-408(ws)-1(i)1(,)-408(\\273e)-408(p)-27(okutu)1(je,)-408(\\273e)-408(widzieli,)-407(jak)-407(s)-1(i)1(\\246)-408(c)-1(o-)]TJ 0 -13.549 Td[(sik)-385(n)1(o)-28(cam)-1(i)-384(p)-28(o)-384(dr)1(ogac)27(h)-384(t\\252ucz)-1(e,)-385(n)1(a)-385(r)1(oz)-1(sta)-56(j)1(ac)27(h)-384(j\\246c)-1(zy)83(,)-384(to)-385(p)-27(o)-28(d)-384(kr)1(z)-1(y\\273ami)-385(wysta)-56(j)1(e)-385(i)]TJ 0 -13.549 Td[(zm)-1(i\\252o)28(w)28(ania)-333(b)-27(os)-1(ki)1(e)-1(go)-333(c)-1(ze)-1(k)56(a!.)1(..)-333(Kub)-27(o)28(w)27(a)-333(d)1(usz)-1(a)-333(to)-333(b)28(y\\242)-334(m)28(usi,)-333(nie)-333(dru)1(ga!)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(wy)-333(te)-1(\\273)-333(m)-1(\\363)28(wicie)-1(!)]TJ 0 -13.549 Td[({)-435(Ju)1(\\261)-1(ci,)-434(pr)1(a)27(wd)1(\\246)-435(m)-1(\\363)28(wi\\246)-1(,)-434(ni)1(e)-435(w)-1(i)1(dzia\\252am)-435(s)-1(ama,)-434(to)-435(i)-434(nie)-435(p)1(rz)-1(y)1(s)-1(i\\246gn\\246)-435(n)1(a)-435(to,)]TJ -27.879 -13.55 Td[(ale)-350(m)-1(o\\273e)-351(b)28(y)1(\\242)-1(,)-350(mo\\273e)-351(s)-1(\\241)-350(tak)1(ie)-351(spr)1(a)27(wy)-350(n)1(a)-351(\\261wiec)-1(ie,)-350(\\273e)-351(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wy)-350(rozum,)-350(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(i)-389(na)-55(jwi\\246ksz)-1(y)84(,)-389(a)-390(n)1(ie)-390(wyr)1(oz)-1(u)1(m)-1(i)1(e)-1(,)-389(n)1(ie)-390(p)1(rz)-1(ejr)1(z)-1(y)-389({)-389(b)-27(os)-1(ki)1(e)-390(to)-389(ano)-389(s\\241)-390(u)1(rz\\241dze)-1(n)1(ia)-389(nie)]TJ 0 -13.549 Td[(lu)1(dzkie,)-333(nie,)-333(b)-28(o)-333(co)-334(m)28(y)83(,)-333(c)27(h)29(udziaki)1(,)-333(m)-1(o\\273e)-1(m)28(y)83(,)-333(to)-333(mo\\273)-1(em)27(y)84(,)-333(a)-334(r)1(e)-1(sz)-1(t\\246)-333(B)-1(\\363g)-333(mo\\273)-1(e!)]TJ 27.879 -13.549 Td[({)-299(Szk)28(o)-28(da)-299(Kub)29(y)83(,)-299(s)-1(am)-299(ks)-1(i)1(\\241dz,)-300(j)1(ak)-300(mi)-299(op)-28(o)28(wiad)1(a\\252)-300(o)-299(jego)-300(\\261m)-1(ierci,)-299(to)-300(a\\273)-300(p)1(\\252ak)56(a\\252)]TJ -27.879 -13.549 Td[(z)-334(\\273alu.)]TJ 27.879 -13.549 Td[({)-304(Bo)-304(p)-27(o)-28(cz)-1(ciw)27(o\\261ci)-304(to)-304(b)29(y\\252)-304(par)1(ob,)-303(\\273)-1(e)-304(i)-304(d)1(ru)1(gie)-1(go)-303(nie)-304(znale\\271)-1(\\242)-304(a)-304(cic)27(h)29(y)83(,)-303(p)-28(ob)-27(o\\273)-1(n)29(y)83(,)]TJ -27.879 -13.55 Td[(pr)1(ac)-1(o)28(wit)28(y)84(,)-429(cud)1(z)-1(ego)-429(ni)1(e)-429(ruszy\\252,)-429(a)-428(z)-429(biedn)28(y)1(m)-429(to)-429(got\\363)28(w)-429(si\\246)-429(b)28(y\\252)-428(k)55(ap)-27(ot\\241)-429(ostatn)1(i\\241)]TJ 0 -13.549 Td[(p)-27(o)-28(dzieli\\242.)]TJ 27.879 -13.549 Td[({)-344(T)83(ak)-344(s)-1(i\\246)-344(z)-1(mienia)-344(c)-1(i)1(\\241)-28(gle)-345(w)-344(Lip)-27(c)-1(ac)27(h)1(,)-344(\\273)-1(e)-345(co)-344(przyj)1(ad\\246,)-345(p)-27(ozna\\242)-345(si\\246)-345(n)1(ie)-345(mog\\246)-1(.)]TJ -27.879 -13.549 Td[(By\\252e)-1(m)-381(d)1(z)-1(i)1(s)-1(ia)-55(j)-380(u)-380(An)28(tk)28(\\363)28(w,)-381(d)1(z)-1(i)1(e)-1(c)28(k)28(o)-381(im)-381(c)28(hor)1(e)-1(,)-380(bieda)-380(u)-380(ni)1(c)27(h)-380(a\\273)-381(s)-1(k)1(rzypi,)-380(a)-380(on)-380(s)-1(am)]TJ 0 -13.549 Td[(tak)-333(si\\246)-334(zm)-1(ieni)1(\\252,)-334(tak)-333(wyc)28(h)28(ud)1(\\252,)-333(\\273)-1(e)-334(l)1(e)-1(d)1(w)-1(i)1(e)-1(m)-334(go)-333(p)-27(oz)-1(n)1(a\\252!)]TJ 27.879 -13.55 Td[(Nie)-349(o)-28(d)1(e)-1(zw)28(a\\252)-1(y)-348(si\\246)-349(na)-348(to)-349(an)1(i)-348(s)-1(\\252o)28(w)27(em,)-349(j)1(e)-1(n)1(o)-349(Jagn)1(a)-349(o)-28(d)1(wr\\363)-28(ci\\252a)-349(sz)-1(y)1(bk)28(o)-349(t)28(w)28(arz)-349(i)]TJ -27.879 -13.549 Td[(zac)-1(z\\246)-1(\\252a)-248(n)1(ak\\252ada\\242)-248(c)28(hleb)-247(na)-248(\\252op)1(at\\246)-1(,)-247(a)-248(stara)-247(\\252ypn)1(\\246)-1(\\252a)-247(o)-28(c)-1(zami,)-248(\\273e)-248(z)-1(ar)1(az)-248(p)-28(omiark)28(o)28(w)28(a\\252,)]TJ 0 -13.549 Td[(jak)28(o)-270(w)-270(t)28(ym)-270(j)1(e)-1(st)-270(dla)-270(n)1(ic)27(h)-269(c)-1(o\\261)-270(pr)1(z)-1(y)1(krego,)-270(c)27(h)1(c)-1(ia\\252)-270(n)1(apr)1(a)27(wi\\242,)-270(m)28(y\\261)-1(l)1(a\\252)-1(,)-269(o)-270(c)-1(zym)-270(b)28(y)-270(d)1(ale)-1(j)]TJ 0 -13.549 Td[(m\\363)27(wi\\242,)-296(gdy)-296(J\\363z)-1(k)56(a)-297(p)1(rzys)-1(t)1(\\241)-28(pi\\252a)-296(z)-1(ap)1(\\252onion)1(a)-297(i)-296(j\\246\\252a)-297(pr)1(os)-1(i\\242,)-296(ab)28(y)-297(d)1(a\\252)-297(p)1(ar\\246)-297(k)28(oloro)28(wyc)27(h)]TJ 0 -13.549 Td[(op\\252atk)28(\\363)28(w.)]TJ 27.879 -13.55 Td[({)-298(Na)-297(\\261)-1(wiat)28(y)-297(mi)-298(p)-27(otrzebne,)-297(b)28(y\\252y)-297(z)-298(\\252o\\253skie)-1(go)-297(roku)1(,)-297(ale)-298(s)-1(i)1(\\246)-298(w)27(e)-298(w)28(e)-1(se)-1(l)1(e)-298(do)-298(cna)]TJ -27.879 -13.549 Td[(p)-27(om)-1(ar)1(no)28(w)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(da\\252)-333(jej)-333(kilk)56(ana\\261cie)-334(i)-333(c)-1(o\\261)-333(a\\273)-334(w)-334(p)1(i\\241ciu)-333(k)28(olorac)28(h.)]TJ 0 -13.549 Td[({)-439(A\\273)-439(t)28(yle!)-439(M\\363)-55(j)-438(Je)-1(zus,)-439(a)-439(d)1(y\\242)-439(to)-439(starcz)-1(y)-439(i)-438(na)-439(\\261wiat)28(y)83(,)-438(i)-439(n)1(a)-439(ksi\\246)-1(\\273yce)-1(,)-438(i)-439(na)]TJ -27.879 -13.549 Td[(gwiazdy!)-463({)-464(w)27(o\\252a\\252a)-464(u)1(c)-1(i)1(e)-1(sz)-1(on)1(a,)-464(p)-27(os)-1(ze)-1(p)1(ta\\252y)-464(z)-464(Jagn)1(\\241)-464(i)-464(ze)-1(sromana,)-463(pr)1(z)-1(ys\\252ania)-55(j\\241c)]TJ 0 -13.55 Td[(t)28(w)27(ar)1(z)-334(zapask)55(\\241,)-333(wyn)1(ie)-1(s\\252a)-334(m)28(u)-333(za)-334(n)1(ie)-334(co\\261)-334(s)-1(ze\\261)-1(\\242)-334(j)1(a)-56(j)1(e)-1(k.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-281(na)-281(ten)-280(c)-1(zas)-282(p)-27(o)28(wr\\363)-28(ci\\252)-281(z)-281(m)-1(iasta)-281(i)-280(w)27(c)27(h)1(o)-28(dzi\\252)-281(d)1(o)-281(izb)28(y)83(,)-280(a)-281(z)-1(a)-281(n)1(im)-281(w)27(cisk)56(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(\\212apa)-333(z)-334(b)-27(o)-28(\\242kiem)-1(,)-333(b)-27(o)-333(Witek)-333(te)-1(\\273)-334(si\\246)-334(zja)28(wi\\252)-333(r\\363)28(wno)-333(z)-334(gos)-1(p)-27(o)-28(d)1(arze)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wiera)-55(jcie)-334(p)1(r\\246)-1(d)1(k)28(o)-333(drzwi,)-333(b)-28(o)-333(si\\246)-334(cias)-1(to)-333(ozi\\246)-1(b)1(i)-333({)-334(k)1(rz)-1(y)1(c)-1(za\\252a)-334(stara.)]TJ 0 -13.549 Td[({)-442(J)1(ak)-442(k)28(ob)1(ie)-1(t)28(y)-441(z)-1(ab)1(iera)-56(j)1(\\241)-442(si\\246)-442(d)1(o)-442(p)-27(orz)-1(\\241d)1(k)28(\\363)28(w)-1(,)-441(to)-441(c)27(h\\252op)-27(om)-442(trza)-442(k)28(omorn)1(e)-1(go)]TJ -27.879 -13.55 Td[(sz)-1(u)1(k)55(a\\242)-304(c)27(h)1(o)-28(\\242)-1(b)29(y)-304(w)-304(k)55(ar)1(c)-1(zmie)-1(,)-303(b)28(y)-304(pr)1(z)-1(y)-303(piec)-1(ze)-1(n)1(iu)-303(nie)-304(z)-1(w)28(alil)1(i)-304(na)-304(n)1(as)-305(zak)56(alc)-1(a!)-303({)-304(\\261)-1(mia\\252)]TJ 0 -13.549 Td[(si\\246)-247(B)-1(or)1(yna)-247(r)1(oz)-1(gr)1(z)-1(ew)27(a)-55(j\\241c)-247(sk)28(os)-1(tn)1(ia\\252e)-247(r\\246)-1(ce.)-247({)-247(Dr)1(oga)-247(jak)-246(p)-28(o)-246(s)-1(zkle)-247(i)-247(sann)1(a)-247(sie)-1(l)1(na,)-246(ale)-247(i)]TJ 0 -13.549 Td[(taki)-254(mr\\363z,)-255(\\273e)-255(tru)1(dn)1(o)-255(w)-254(s)-1(an)1(iac)27(h)-254(wysie)-1(d)1(z)-1(i)1(e)-1(\\242!)-254(Da)-56(j)1(,)-255(Jagu)1(\\261)-1(,)-254(P)1(ie)-1(tr)1(k)28(o)28(w)-1(i)-254(c)27(h)1(o)-28(\\242b)28(y)-254(c)27(hl)1(e)-1(b)1(a,)]TJ 0 -13.549 Td[(b)-27(o)-334(p)1(rze)-1(marz\\252)-334(n)1(a)-334(k)28(o\\261\\242)-334(w)-333(t)27(y)1(m)-334(so\\252)-1(d)1(ac)27(ki)1(m)-334(sz)-1(yn)1(e)-1(l)1(u.)-333(Jas)-1(i)1(o)-334(n)1(a)-334(d)1(\\252ugo)-333(do)-333(dom)28(u?)]TJ 27.879 -13.549 Td[({)-333(A\\273)-334(do)-333(T)83(rzec)27(h)-333(Kr)1(\\363li.)]TJ 0 -13.549 Td[({)-339(Oj)1(c)-1(iec)-339(m)-1(a)-339(z)-339(Jas)-1(i)1(a)-339(niez)-1(gor)1(s)-1(z\\241)-339(w)-1(y)1(r\\246k)28(\\246)-1(,)-339(b)-27(o)-339(to)-339(i)-339(p)1(rzy)-339(organ)1(ac)27(h,)-338(i)-339(w)-340(k)56(an)1(c)-1(e-)]TJ -27.879 -13.55 Td[(lar)1(ii!)-333(Ju\\261ci,)-333(s)-1(tar)1(e)-1(m)28(u)-333(\\273)-1(al)-333(p)1(u\\261c)-1(i\\242)-333(pierzyn)28(y)-333(na)-333(taki)-333(mr\\363z.)]TJ 27.879 -13.549 Td[({)-433(Nie)-433(dlatego,)-433(a)-433(t)28(ylk)28(o)-433(\\273e)-434(k)1(ro)28(w)27(a)-433(si\\246)-434(d)1(z)-1(i)1(s)-1(ia)-55(j)-433(o)-28(cieli\\252a,)-433(to)-433(zos)-1(ta\\252)-433(w)-433(dom)28(u)-433(i)]TJ -27.879 -13.549 Td[(pi)1(ln)28(u)1(je.)]TJ 27.879 -13.549 Td[({)-333(W)-333(dobr)1(y)-333(c)-1(zas)-1(,)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(m)-1(l)1(e)-1(k)28(o)-333(na)-333(ca\\252)-1(\\241)-333(zim\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(W)1(ite)-1(k)1(,)-333(da\\252e)-1(\\261)-333(pi\\242)-334(\\271rebi)1(\\246)-1(ciu?)]TJ 0 -13.55 Td[({)-328(Samam)-329(n)1(os)-1(i\\252a,)-328(ale)-328(na)28(w)27(et)-328(i)-328(p)-28(o)-328(pal)1(c)-1(u)-328(p)1(i\\242)-329(n)1(ie)-329(c)28(hcia\\252,)-328(barasz)-1(k)1(uje)-328(ino,)-328(a)-328(do)]TJ -27.879 -13.549 Td[(klaczy)-334(si\\246)-334(t)1(ak)-334(wyd)1(z)-1(i)1(e)-1(ra,)-333(\\273e)-334(p)1(rz)-1(epr)1(o)28(w)27(ad)1(z)-1(i\\252am)-334(d)1(o)-333(w)-1(i)1(\\246)-1(ksz)-1(ej)-333(gr\\363)-27(dki)1(.)]TJ\nET\nendstream\nendobj\n701 0 obj <<\n/Type /Page\n/Contents 702 0 R\n/Resources 700 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 687 0 R\n>> endobj\n700 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n705 0 obj <<\n/Length 10208     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(217)]TJ -330.353 -35.866 Td[(Ch\\252op)-27(c)-1(y)-406(wysz)-1(li)1(,)-407(al)1(e)-407(Jas)-1(io)-406(jesz)-1(cz)-1(e)-407(z)-407(op)1(\\252otk)28(\\363)28(w)-407(s)-1(i)1(\\246)-407(o)-28(dwraca\\252)-407(za)-407(J)1(agn\\241,)-406(b)-28(o)]TJ -27.879 -13.549 Td[(te\\273)-334(jak)1(b)28(y)-333(jes)-1(zc)-1(ze)-334(ur)1(o)-28(dn)1(iejsz)-1(\\241)-333(b)28(y\\252a)-333(ni)1(\\271)-1(li)-333(n)1(a)-334(j)1(e)-1(sieni)-333(pr)1(z)-1(ed)-333(w)27(ese)-1(lem.)]TJ 27.879 -13.549 Td[(Nie)-379(d)1(z)-1(i)1(w)27(ota)-378(te\\273)-1(,)-378(i\\273)-379(starego)-379(ca\\252kiem)-379(za)27(w)28(o)-56(j)1(o)28(w)27(a\\252a,)-378(i\\273)-379(\\261wiata)-378(z)-1(a)-378(ni\\241)-378(ni)1(e)-379(wi-)]TJ -27.879 -13.549 Td[(dzia\\252.)-398(Dob)1(rze)-399(n)1(a)-398(w)-1(si)-398(p)-27(o)27(wiad)1(ali,)-398(\\273e)-399(ca\\252kiem)-399(zg\\252up)1(ia\\252)-398(z)-399(tego)-398(k)28(o)-28(c)27(h)1(ani)1(a,)-398(b)-28(o)-398(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(kw)28(ard)1(y)-326(b)29(y\\252)-326(i)-325(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iwy)-326(l)1(a)-326(wsz)-1(ystki)1(c)27(h)-325(p)-27(o)-326(d)1(a)27(wn)1(e)-1(m)28(u,)-325(ale)-326(Jagu)1(s)-1(i)1(a)-326(mog\\252a)-326(z)-325(nim)]TJ 0 -13.55 Td[(rob)1(i\\242,)-371(c)-1(o)-370(ino)-371(ze)-1(c)28(hcia\\252a,)-371(s\\252uc)27(h)1(a\\252)-371(s)-1(i)1(\\246)-372(j)1(e)-1(j)-370(z)-1(e)-371(ws)-1(zystkim,)-371(j)1(e)-1(j)-370(o)-28(cz)-1(ami)-371(p)1(atrza\\252,)-371(jej)-371(si\\246)]TJ 0 -13.549 Td[(rad)1(z)-1(i)1(\\252)-1(,)-388(a)-388(i)-388(Domin)1(ik)28(o)28(w)27(ej)-388(te\\273)-1(,)-388(\\273e)-389(do)-388(cna)-388(go)-388(opan)1(o)27(w)28(a\\252y!)-388(Dob)1(rz)-1(e)-388(m)27(u)-388(z)-388(t)28(ym)-389(b)29(y\\252o,)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arst)28(w)27(o)-326(s)-1(z\\252o,)-326(w)-1(sz)-1(y)1(s)-1(tk)28(o)-326(b)28(y\\252o)-326(w)-327(p)-27(orz\\241dku)1(,)-327(wygo)-27(d\\246)-327(sw)27(o)-55(j\\241)-326(m)-1(i)1(a\\252,)-327(a)-326(u\\273ali\\242)-326(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-383(k)1(im)-384(i)-382(p)-28(or)1(adzi\\242,)-383(\\273)-1(e)-383(ju)1(\\273)-384(o)-383(n)1(icz)-1(ym)-383(n)1(ie)-384(m)28(y\\261la\\252)-383(i)-383(o)-383(n)1(ic)-384(n)1(ie)-383(s)-1(to)-55(ja\\252,)-383(co)-383(in)1(o)-383(nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(Jagusi\\241,)-333(w)-333(kt\\363r\\241)-333(jak)-333(w)-333(te)-1(n)-333(ob)1(raze)-1(k)-333(\\261w)-1(i)1(\\246)-1(t)28(y)-333(pat)1(rz)-1(a\\252!)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-370(teraz)-370(oto)-370(wygrze)-1(w)28(a\\252)-370(si\\246)-371(p)1(rze)-1(d)-369(k)28(ominem)-1(,)-369(a)-370(ci\\246)-1(gi)1(e)-1(m)-370(c)27(h)1(o)-28(dzi\\252)-370(za)-370(ni\\241)]TJ -27.879 -13.55 Td[(rozmi\\252o)27(w)28(an)28(ymi)-405(o)-28(cz)-1(ami)-405(i)-405(ki)1(e)-1(b)28(y)-405(p)1(rze)-1(d)-404(w)27(es)-1(ele)-1(m,)-405(s\\252o)-28(dk)1(ie)-406(s\\252\\363)27(wk)56(a)-405(w)27(ci\\241\\273)-406(p)1(ra)28(wi\\252,)-405(a)]TJ 0 -13.549 Td[(jeno)-333(o)-333(t)28(ym)-334(m)28(y\\261)-1(l)1(a\\252)-1(,)-333(cz)-1(y)1(m)-334(b)28(y)-333(si\\246)-334(j)1(e)-1(j)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333(p)1(rzyp)-27(o)-28(dc)28(hlebi\\242.)]TJ 27.879 -13.549 Td[(Ale)-434(Jagn)1(a)-434(t)28(yle)-434(d)1(ba\\252a)-434(o)-434(j)1(e)-1(go)-433(k)28(o)-28(c)27(h)1(anie,)-433(c)-1(o)-434(o)-433(te)-1(n)-433(\\261nieg)-434(z)-434(\\252o\\253skiego)-434(r)1(oku,)]TJ -27.879 -13.549 Td[(jak)56(a\\261)-379(m)-1(r)1(o)-28(c)-1(zna)-379(b)28(y)1(\\252)-1(a,)-379(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(ona)-379(jego)-379(am)-1(or)1(am)-1(i)1(,)-379(z)-1(\\252a,)-379(ws)-1(zystk)28(o)-379(j\\241)-379(dr)1(a\\273)-1(n)1(i\\252o,)]TJ 0 -13.549 Td[(\\273e)-429(jak)-427(te)-1(n)-427(lut)28(y)-428(wic)28(her)-428(nosi\\252a)-428(s)-1(i)1(\\246)-429(p)-27(o)-428(iz)-1(b)1(ie)-428({)-429(r)1(ob)-28(ot)1(\\246)-429(sp)28(yc)27(h)1(a\\252a)-428(na)-428(matk)28(\\246)-1(,)-428(to)-428(n)1(a)]TJ 0 -13.55 Td[(J\\363zk)28(\\246)-1(,)-323(a)-324(c)-1(z\\246s)-1(to)-324(i)-323(starego)-324(do)-324(n)1(iej)-324(zagani)1(a\\252)-1(a)-323(c)-1(ierp)1(kimi)-324(s\\252o)28(w)-1(y)84(,)-324(a)-323(s)-1(ama)-324(sz)-1(\\252a)-324(n)1(ib)28(y)-323(to)]TJ 0 -13.549 Td[(za)-56(jr)1(z)-1(e\\242)-333(n)1(a)-332(dr)1(ug\\241)-332(stron)1(\\246)-333(d)1(o)-332(piec)-1(a)-332(al)1(b)-28(o)-332(d)1(o)-332(\\271)-1(r)1(e)-1(b)1(ak)55(a)-332(w)-332(sta)-56(j)1(ni,)-331(a)-332(g\\252\\363)27(wn)1(ie)-333(p)-27(o)-332(to,)-332(b)29(y)]TJ 0 -13.549 Td[(osta\\242)-334(s)-1(amej)-333(i)-333(z)-1(am)28(y\\261)-1(l)1(a\\242)-334(s)-1(i)1(\\246)-334(o)-334(An)29(tku.)]TJ 27.879 -13.549 Td[(Jasio)-333(go)-334(j)1(e)-1(j)-333(p)1(rzyp)-28(omn)1(ia\\252,)-333(\\273)-1(e)-334(j)1(ak)-333(\\273)-1(ywy)-333(stan\\241\\252)-333(przed)-333(ni\\241,)-333(j)1(ak)-333(\\273)-1(ywy)84(...)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-363(trzy)-363(mies)-1(i\\241ce)-363(go)-363(n)1(ie)-363(wid)1(z)-1(ia\\252a,)-362(b)-27(o)-363(jesz)-1(cz)-1(e)-363(n)1(a)-363(d)1(\\252)-1(u)1(go)-363(p)1(rze)-1(d)-362(\\261lub)-27(em)-1(,)]TJ -27.879 -13.55 Td[(t)28(yla)-336(ino,)-336(co)-337(wtedy)-336(pr)1(z)-1(ejazdem)-337(na)-336(dr)1(o)-28(dze)-337(p)-27(o)-28(d)-336(top)-28(ol)1(am)-1(i)1(...)-336(ju)1(\\261)-1(ci,)-336(c)-1(zas)-337(p\\252yn)1(\\241\\252)-337(j)1(ak)]TJ 0 -13.549 Td[(ta)-342(w)28(o)-28(d)1(a;)-342(a)-341(to)-342(\\261lub)1(,)-341(prze)-1(n)1(os)-1(i)1(n)28(y)83(,)-341(k\\252op)-27(ot)28(y)-342(r)1(\\363\\273)-1(n)1(e)-1(,)-341(gos)-1(p)-27(o)-28(d)1(arst)27(w)28(o,)-341(\\273)-1(e)-342(i)-341(kiej)-341(to)-342(mia\\252a)]TJ 0 -13.549 Td[(o)-422(n)1(im)-422(p)-27(om)27(y\\261le\\242)-1(!)-421(Nie)-422(wid)1(yw)27(a\\252a)-421(go,)-422(t)1(o)-422(i)-421(na)-421(m)27(y\\261l)-422(n)1(ie)-422(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252,)-422(a)-421(lud)1(z)-1(i)1(e)-422(te)-1(\\273)]TJ 0 -13.549 Td[(w)28(ago)27(w)28(ali)-328(s)-1(i\\246)-329(m\\363)28(w)-1(i)1(\\242)-330(o)-328(nim)-329(p)1(rze)-1(d)-328(ni)1(\\241...)-328(A)-329(teraz)-1(,)-328(ni)1(e)-329(w)-1(iad)1(a)-329(d)1(lac)-1(zego,)-329(tak)-328(z)-329(nag\\252a)]TJ 0 -13.549 Td[(stan\\241\\252)-265(prze)-1(d)-265(o)-27(c)-1(zam)-1(i)-265(i)-265(p)1(atrz)-1(y)1(\\252)-266(z)-266(tak)56(\\241)-265(\\273)-1(a\\252o\\261c)-1(i)1(\\241,)-266(z)-265(takim)-266(wyr)1(z)-1(u)1(te)-1(m,)-265(a\\273)-266(s)-1(i)1(\\246)-266(jej)-265(du)1(s)-1(za)]TJ 0 -13.55 Td[(zatrz\\246)-1(s\\252a)-334(ze)-334(z)-1(gr)1(yzot)27(y)84(...)]TJ 27.879 -13.549 Td[({)-360(Nice)-1(m)-360(ci)-360(ni)1(e)-361(win)1(o)27(w)28(ata,)-360(n)1(ie)-1(,)-359(to)-360(c)-1(ze)-1(m)28(u)-360(sta)-56(j)1(e)-1(sz)-360(prze)-1(d)1(e)-361(mn)1(\\241)-360(jak)-360(ta)-360(d)1(usz)-1(a)]TJ -27.879 -13.549 Td[(p)-27(okutu)1(j\\241ca,)-436(cz)-1(em)27(u)-435(s)-1(tr)1(as)-1(zys)-1(z?)-436({)-436(m)27(y\\261la\\252a)-436(\\273a\\252)-1(o\\261ni)1(e)-437(b)1(roni)1(\\241c)-437(si\\246)-436(prze)-1(d)-435(ws)-1(p)-27(omin-)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(...)-390(ale)-391(d)1(z)-1(iwn)1(o)-391(j)1(e)-1(j)-390(b)28(y)1(\\252o,)-391(cz)-1(em)27(u)-390(si\\246)-391(tak)-390(mo)-28(cno)-390(przyp)-27(omnia\\252,)-390(c)-1(ze)-1(m)28(u\\273)-391(t)1(o)-391(an)1(i)]TJ 0 -13.549 Td[(Mateusz,)-357(an)1(i)-357(S)1(tac)27(ho)-356(P\\252osz)-1(k)56(a,)-356(ni)-356(inn)1(i?...)-356(Nikto)-356(dru)1(gi,)-356(t)28(ylk)28(o)-357(on)-356(j)1(e)-1(d)1(e)-1(n)1(!)-357(Zada\\242)-357(j)1(e)-1(j)]TJ 0 -13.55 Td[(cos)-1(ik)-324(m)28(usia\\252,)-324(\\273)-1(e)-324(s)-1(i\\246)-324(biedzi)-324(teraz)-325(i)-324(wyd)1(z)-1(iera)-324(z)-325(siebie,)-324(i)-324(w)-325(m\\246c)-1(e)-325(si\\246)-325(p)1(\\252a)28(w)-1(i)1(,)-324(b)-28(o)-324(tak)56(a)]TJ 0 -13.549 Td[(t\\246s)-1(kn)1(o\\261)-1(\\242)-312(j\\241)-312(rozpiera\\252a,)-312(a\\273)-312(j\\241)-312(w)-313(d)1(o\\252ku)-312(gni)1(e)-1(t\\252o,)-312(a)-312(tak)-312(cos)-1(ik)-312(w)28(e)-313(\\261wiat)-312(du)1(s)-1(z\\246)-313(ni)1(e)-1(s\\252o,)]TJ 0 -13.549 Td[(\\273e)-334(p)-28(osz\\252)-1(ab)29(y)83(,)-333(gdzie)-334(i)1(no)-333(o)-28(cz)-1(y)-333(p)-27(onies)-1(\\241,)-333(n)1(a)-334(b)-27(ory)-333(i)-333(lasy)83(.)]TJ 27.879 -13.549 Td[({)-441(Co)-441(on)-441(tam,)-441(c)27(h)29(ud)1(z)-1(iak)1(,)-441(p)-28(or)1(abia,)-440(c)-1(o)-441(se)-442(m)28(y\\261)-1(l)1(i?)-441(I)-441(ani)-441(sp)-27(o)-1(sobu)1(,)-441(b)28(y)-440(z)-442(n)1(im)]TJ -27.879 -13.549 Td[(p)-27(om)-1(\\363)28(wi\\242,)-367(ani)-366(s)-1(p)-27(osobu)-366(i...)-366(nie)-367(w)28(olno!)-366(Pr)1(a)27(wda,)-366(ni)1(e)-368(w)28(olno,)-366(Jez)-1(u)1(s)-368(k)28(o)-28(c)28(han)28(y)84(,)-367(a)-366(dy\\242)]TJ 0 -13.549 Td[(b)28(y)-247(to)-247(b)28(y)1(\\252)-248(\\261mie)-1(r)1(te)-1(l)1(n)28(y)-247(grze)-1(c)28(h,)-247(\\261m)-1(i)1(e)-1(r)1(te)-1(ln)29(y!)-247({)-247(m)-1(\\363)28(wi\\252)-247(to)-247(ksi\\241dz)-247(na)-247(sp)-28(o)28(wiedzi,)-247(m\\363)27(wi\\252..)1(.)]TJ 0 -13.55 Td[({)-368(ino)-368(b)28(y)-368(z)-369(n)1(im)-369(p)-27(om)-1(\\363)28(wi\\252a)-368(raz)-369(j)1(e)-1(d)1(e)-1(n)1(,)-369(c)28(ho)-28(\\242b)28(y)-368(pr)1(z)-1(y)-368(\\261w)-1(i)1(adk)56(ac)27(h)1(,)-369(c)28(ho)-28(\\242b)28(y)84(...)-368(a)-368(to)-369(j)1(u\\273)]TJ 0 -13.549 Td[(ani)-333(d)1(z)-1(i)1(\\261)-1(,)-333(ani)-333(j)1(utr)1(o,)-334(an)1(i)-333(nigd)1(y!)-333(Boryn)1(o)27(w)28(a)-333(jes)-1(t)-333(na)-333(wiek)-334(wiek)28(\\363)28(w)-334(ame)-1(n)1(...)]TJ 27.879 -13.549 Td[({)-333(Jagusia,)-333(a)-333(c)27(ho)-27(d\\271)-1(\\273e,)-334(c)28(hleb)-333(tr)1(z)-1(eba)-333(pr)1(z)-1(es)-1(ad)1(z)-1(i\\242!)-333({)-334(w)28(o\\252a\\252a)-334(stara.)]TJ 0 -13.549 Td[(P)28(ob)1(ie)-1(g\\252a)-374(do)-374(dom)28(u,)-374(z)-1(wij)1(a\\252a)-375(si\\246,)-375(j)1(ak)-374(m)-1(og\\252a,)-374(ale)-375(m)28(y\\261)-1(l)1(i)-375(o)-374(ni)1(m)-375(nie)-374(z)-1(atr)1(ac)-1(i\\252a,)]TJ -27.879 -13.549 Td[(w)28(c)-1(i\\241\\273)-340(j)1(e)-1(j)-339(wraca\\252)-340(na)-339(o)-28(c)-1(zy)-340(i)-339(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-340(przyp)-27(om)-1(i)1(na\\252y)-340(si\\246)-340(j)1(e)-1(go)-340(n)1(iebies)-1(k)1(ie)-340(\\261)-1(l)1(e)-1(p)1(ie)-340(i)-340(te)]TJ 0 -13.55 Td[(br)1(wie)-353(czarne,)-352(i)-351(te)-353(w)28(argi)-351(c)-1(ze)-1(r)1(w)27(on)1(e)-1(,)-351(s)-1(\\252o)-28(d)1(kie,)-352(\\252ak)28(ome)-1(!)-351(Pr\\363\\273no)-352(zapami\\246tale)-352(wz)-1(i\\246\\252a)]TJ 0 -13.549 Td[(si\\246)-445(d)1(o)-445(r)1(ob)-28(ot)28(y)84(,)-444(pal)1(i\\252o)-444(s)-1(i\\246)-444(jej)-444(w)-444(r\\246)-1(k)56(ac)28(h,)-444(u)1(prz\\241ta\\252a)-444(iz)-1(b)-27(\\246,)-444(w)-1(zi\\246\\252a)-444(s)-1(i\\246)-444(p)-28(o)-27(d)-444(wie)-1(cz)-1(\\363r)]TJ\nET\nendstream\nendobj\n704 0 obj <<\n/Type /Page\n/Contents 705 0 R\n/Resources 703 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n703 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n709 0 obj <<\n/Length 8527      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(218)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(do)-397(ob)1(rz\\241dku)-396(kr\\363)28(w,)-397(c)-1(ze)-1(go)-397(p)1(ra)28(wie)-398(n)1(igdy)-397(n)1(ie)-398(r)1(obi\\252a,)-397(n)1(ic)-398(t)1(o)-398(j)1(e)-1(d)1(nak)-397(n)1(ie)-398(p)-27(omog\\252o,)]TJ 0 -13.549 Td[(b)-27(o)-402(ci\\241)-28(gl)1(e)-402(sta\\252)-402(p)1(rze)-1(d)-401(n)1(i\\241)-401(i)-401(t\\246)-1(skn)1(ic)-1(a)-401(r)1(os)-1(\\252a)-401(w)-402(n)1(ie)-1(j)1(,)-401(i)-401(rozdziera\\252a)-402(d)1(usz)-1(\\246,)-401(co)-402(j)1(\\241)-401(tak)]TJ 0 -13.549 Td[(strasz)-1(n)1(ie)-274(rozdra\\273ni)1(\\252)-1(o,)-273(\\273e)-275(p)1(rzysiad\\252a)-274(n)1(a)-274(skrzyni)-273(pr)1(z)-1(y)-273(J\\363zc)-1(e,)-274(cz)-1(y)1(ni\\241ce)-1(j)-273(p)-27(os)-1(p)1(ies)-1(znie)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)27(y)84(,)-333(i)-333(bu)1(c)27(hn)1(\\246)-1(\\252a)-333(p\\252acz)-1(em.)]TJ 27.879 -13.549 Td[(Usp)-28(ok)56(a)-56(j)1(a\\252a)-392(j\\241)-392(matk)56(a,)-392(u)1(s)-1(p)-27(ok)56(a)-56(j)1(a\\252)-392(m)-1(\\241\\273)-392(wystrasz)-1(on)28(y)84(,)-392(c)28(ho)-28(d)1(z)-1(il)1(i)-392(k)28(o\\252o)-392(ni)1(e)-1(j)-391(jak)]TJ -27.879 -13.55 Td[(k)28(o\\252o)-231(tego)-231(dzie)-1(ci\\241tk)56(a)-231(rozgrymasz)-1(on)1(e)-1(go,)-231(g\\252ask)55(al)1(i,)-231(p)1(atrzyli)-231(w)-231(o)-28(cz)-1(y)84(,)-231(ni)1(c)-232(n)1(ie)-232(p)-27(omog\\252o,)]TJ 0 -13.549 Td[(wyp\\252ak)56(a\\252a)-227(si\\246)-228(d)1(o)-227(w)27(ol)1(i)-227(i)-227(wnet)-227(si\\246)-228(w)-227(n)1(ie)-1(j)-226(c)-1(osik)-227(p)1(rze)-1(mieni\\252o)-227(z)-227(nag\\252a,)-227(b)-27(o)-227(si\\246)-228(p)-27(o)-28(d)1(nios\\252a)]TJ 0 -13.549 Td[(ze)-267(s)-1(k)1(rz)-1(y)1(ni)-266(p)1(ra)28(w)-1(i)1(e)-267(w)27(eso\\252)-1(a,)-266(p)-27(ogady)1(w)27(a\\252a)-266(z)-1(e)-266(\\261)-1(miec)27(hem,)-267(\\261pi)1(e)-1(w)28(a\\242)-267(n)1(a)27(w)28(e)-1(t)-266(b)28(y)1(\\252a)-267(goto)28(w)28(a,)]TJ 0 -13.549 Td[(gdy)1(b)28(y)-333(to)-333(b)28(y\\252)-333(nie)-334(ad)1(w)27(en)28(t!)]TJ 27.879 -13.549 Td[(P)28(op)1(atrzy\\252)-325(z)-1(d)1(z)-1(iwion)29(y)-325(B)-1(or)1(yna,)-325(p)-27(opatr)1(z)-1(a\\252a)-325(matk)56(a,)-325(a)-326(p)-27(otem)-326(n)1(a)-326(siebie)-325(d\\252ugo)]TJ -27.879 -13.549 Td[(i)-337(w)27(a\\273nie)-338(sp)-28(ogl)1(\\241dali)1(,)-338(wywiedli)-337(s)-1(i)1(\\246)-338(do)-338(sieni,)-337(c)-1(o\\261)-338(tam)-338(p)-27(osz)-1(eptal)1(i)-338(i)-337(w)-1(r)1(\\363)-28(cili)-337(roz)-1(r)1(ado-)]TJ 0 -13.55 Td[(w)28(ani,)-363(w)27(es)-1(eli,)-363(roze)-1(\\261m)-1(i)1(ani)-364(i)-363(n)28(u\\273)-364(j)1(\\241)-364(br)1(a\\242)-365(w)-364(r)1(am)-1(ion)1(a,)-364(ca\\252o)28(w)27(a\\242,)-364(a)-364(tacy)-364(b)28(y)1(li)-364(d)1(obr)1(z)-1(y)84(,)]TJ 0 -13.549 Td[(\\273e)-334(s)-1(tar)1(a)-334(zakr)1(z)-1(yk)1(n\\246)-1(\\252a)-333(gor\\241co:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(\\271)-1(wiga)-55(j)-333(dzie)-1(\\273y)84(,)-334(M)1(ac)-1(iej)-333(wyn)1(ios)-1(\\241!)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(to)-333(m)-1(i)-333(n)1(o)28(w)-1(i)1(na)-333(bra\\242)-333(i)-334(ci\\246\\273)-1(sz)-1(\\241!)]TJ 0 -13.549 Td[(Nic)-334(n)1(ie)-334(r)1(oz)-1(u)1(m)-1(i)1(a\\252)-1(a.)]TJ 0 -13.55 Td[(Ale)-258(s)-1(tar)1(y)-258(nie)-259(p)-27(ozw)27(oli)1(\\252,)-258(s)-1(am)-258(w)-1(yn)1(i\\363s\\252,)-258(a)-259(p)-27(otem)-259(pr)1(z)-1(y)-258(sp)-27(os)-1(ob)1(no\\261c)-1(i)-258(p)1(rz)-1(y)1(par\\252)-258(j\\241)]TJ -27.879 -13.549 Td[(gdzie\\261)-247(w)-247(k)28(omorze)-1(,)-246(sro)-28(d)1(z)-1(e)-247(ca\\252o)27(w)28(a\\252,)-246(a)-247(r)1(ado\\261nie)-247(co\\261)-247(sz)-1(epta\\252)-246(,b)28(y)-246(J\\363z)-1(k)56(a)-246(nie)-246(us\\252)-1(y)1(s)-1(za\\252a.)]TJ 27.879 -13.549 Td[({)-390(W)83(am)-390(z)-391(matk)56(\\241)-390(w)27(e)-390(\\252)-1(b)1(ac)27(h)-390(si\\246)-390(p)-28(op)1(rze)-1(wraca\\252o,)-390(niepr)1(a)27(wd)1(a,)-390(c)-1(o)-390(p)-27(o)27(wiad)1(ac)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(!.)1(..)]TJ 27.879 -13.549 Td[({)-301(Ob)-28(o)-55(je)-302(z)-302(matk)56(\\241)-302(znam)28(y)-301(s)-1(i\\246)-302(n)1(a)-302(t)28(ym,)-301(ju)1(\\273)-302(ja)-301(c)-1(i)-301(m\\363)27(wi\\246,)-301(\\273)-1(e)-302(tak)-301(jest.)-302(Zar)1(az)-1(,)-301(c)-1(o)]TJ -27.879 -13.55 Td[(to)-385(m)-1(am)28(y?)-385(Go)-28(d)1(y)83(..)1(.)-386(t)1(o)-386(b)29(y)-386(d)1(opi)1(e)-1(ro)-385(n)1(a)-386(li)1(p)-28(ca)-385(w)-1(y)1(pad\\252o,)-385(w)-385(s)-1(ame)-386(\\273niw)28(a...)-385(Czas)-386(ni)1(e)-1(-)]TJ 0 -13.549 Td[(ry)1(c)27(h)28(to)28(wn)28(y)84(,)-268(gor\\241c,)-268(r)1(ob)-28(ot)28(y)84(,)-268(ale)-268(c\\363\\273)-268(p)-28(or)1(adzi,)-268(tr)1(z)-1(a)-267(i)-268(za)-268(to)-268(P)28(an)29(u)-268(Bogu)-267(p)-28(o)-27(dzi\\246)-1(k)28(o)28(w)28(a\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-385(I)-386(zno)28(w)-1(u)-385(c)28(hcia\\252)-386(j)1(\\241)-386(ca\\252o)28(w)27(a\\242,)-386(wyr)1(w)27(a\\252a)-385(m)27(u)-385(si\\246)-386(z)-1(e)-386(z\\252o\\261)-1(ci\\241)-385(i)-386(p)-27(ob)1(ie)-1(g\\252a)-385(do)-385(m)-1(atk)1(i)-386(z)]TJ 0 -13.549 Td[(wym\\363)27(wk)56(ami,)-333(ale)-334(stara)-333(p)-28(ot)28(wierd)1(z)-1(i\\252a)-333(stano)28(w)27(czo.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(p)1(ra)28(wda,)-333(zda)-55(je)-334(si\\246)-334(w)28(am)-334(in)1(o!)-333({)-334(zapr)1(z)-1(ec)-1(za\\252a)-334(gor)1(\\241c)-1(zk)28(o)27(w)28(o.)]TJ 0 -13.55 Td[({)-333(Nie)-334(cie)-1(szy)-334(ci\\246)-334(t)1(o,)-334(wid)1(z)-1(\\246?)]TJ 0 -13.549 Td[({)-267(Cob)28(y)-266(za\\261)-267(m)-1(ia\\252o)-266(c)-1(i)1(e)-1(sz)-1(y\\242,)-266(m)-1(a\\252o)-266(to)-267(k\\252op)-27(ot\\363)28(w)-1(?)-266(a)-267(tu)-266(jesz)-1(cz)-1(e)-267(n)1(o)27(w)28(e)-267(utr)1(apieni)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Nie)-334(wyrzek)55(a)-55(j,)-333(b)28(y)-333(ci\\246)-334(P)28(an)-333(J)1(e)-1(zus)-334(n)1(ie)-334(p)-27(ok)56(ara\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(iec)27(h)28(ta,)-333(a)-333(niec)27(h)29(ta!)]TJ 0 -13.549 Td[({)-333(C)-1(zem)27(u\\273)-333(to)-334(si\\246)-334(t)1(ak)-334(wyr)1(z)-1(ek)56(as)-1(z)-334(tego,)-333(c)-1(o?)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(ni)1(e)-334(c)27(h)1(c)-1(\\246)-334(i)-333(t)28(yl)1(e)-1(!)]TJ 0 -13.549 Td[({)-473(P)1(rz)-1(ecie)-1(\\273)-473(gdy)1(b)28(y)-473(b)28(y)1(\\252o)-473(dzie)-1(c)28(k)28(o,)-473(to)-473(w)-473(razie)-473(\\261)-1(mierci)-473(starego,)-473(c)-1(zego)-473(B)-1(o\\273e)]TJ -27.879 -13.549 Td[(br)1(o\\253,)-288(d)1(o)-288(z)-1(ap)1(is)-1(u)-287(i)-288(jego)-288(c)-1(z\\246)-1(\\261\\242)-289(b)28(y)-287(przysz)-1(\\252a,)-288(a)-288(p)-27(o)-288(r\\363)28(w)-1(n)1(o)-288(z)-289(d)1(rugi)1(m)-1(i,)-287(m)-1(o\\273e)-289(i)-288(n)1(a)-288(c)-1(a\\252ym)]TJ 0 -13.549 Td[(gru)1(ncie)-334(b)28(y)1(\\261)-334(os)-1(t)1(a\\252)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-333(W)83(am)-333(ino)-333(jedn)1(o)-334(w)-333(g\\252o)27(wie:)-333(gru)1(n)28(t)-333(i)-333(grun)29(t,)-333(a)-334(la)-333(mnie)-333(t)28(yla)-333(s)-1(toi,)-333(co)-333(nic...)]TJ 0 -13.549 Td[({)-362(B)-1(o\\261)-363(m\\252\\363)-28(d)1(k)55(a)-362(jes)-1(zcz)-1(e)-363(i)-362(g\\252up)1(ia,)-362(a)-363(p)1(lec)-1(iesz)-363(b)-28(ele)-363(co!)-362(C)-1(z\\252o)28(w)-1(i)1(e)-1(k)-362(pr)1(z)-1(ez)-363(gru)1(n)28(tu)]TJ -27.879 -13.55 Td[(to)-324(jak)-324(b)-28(ez)-325(n\\363g,)-324(tul)1(a)-325(si\\246)-325(ino,)-324(tu)1(la,)-325(a)-324(do)-324(nik)56(\\241d)-324(ni)1(e)-325(z)-1(a)-55(jdzie.)-325(Ni)1(e)-325(p)-28(o)28(wiada)-55(j)-324(t)28(ylk)28(o)-325(n)1(a)]TJ 0 -13.549 Td[(sprze)-1(ciw)-333(Macie)-1(j)1(o)28(w)-1(i,)-333(b)-27(o)-333(m)27(u)-333(mark)28(otn)1(o)-334(b)-27(\\246dzie)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)-27(\\246)-1(d)1(\\246)-334(ws)-1(tr)1(z)-1(y)1(m)27(yw)28(a\\252a)-334(w)-333(s)-1(ob)1(ie)-1(,)-333(co)-333(m)-1(i)-333(tam)-333(Mac)-1(i)1(e)-1(j)-333(;)]TJ 0 -13.549 Td[({)-349(T)83(o)-348(p)28(yskuj)1(\\273)-1(e)-349(sobi)1(e)-350(c)28(ho)-28(\\242b)28(y)-348(pr)1(z)-1(ed)-349(ca\\252ym)-349(\\261w)-1(i)1(ate)-1(m,)-348(kiej)-349(n)1(ie)-349(mas)-1(z)-349(rozum)28(u,)]TJ -27.879 -13.549 Td[(a)-344(m)-1(n)1(ie)-345(d)1(a)-56(j)-344(sp)-28(ok)28(o)-55(jn)1(ie)-345(c)27(h)1(leb)-344(w)-1(y)1(s)-1(ad)1(z)-1(i\\242,)-344(b)-28(o)-344(si\\246)-345(na)-344(w)28(\\246)-1(giel)-344(s)-1(p)1(iec)-1(ze)-1(;)-344(za)-56(j)1(m)-1(ij)-344(si\\246)-345(l)1(e)-1(p)1(ie)-1(j)]TJ 0 -13.55 Td[(rob)-27(ot\\241,)-347(\\261)-1(l)1(e)-1(dzie)-348(an)1(o)-348(p)1(rz)-1(e\\252\\363\\273)-348(z)-348(w)27(o)-27(dy)-347(do)-347(m)-1(lek)56(a,)-348(to)-347(wi\\246)-1(cej)-348(soli)-347(s)-1(t)1(rac)-1(\\241,)-347(J\\363zk)55(a)-347(ni)1(e)-1(c)27(h)]TJ 0 -13.549 Td[(maku)-333(ut)1(rz)-1(e,)-333(jes)-1(zc)-1(ze)-334(t)28(yl)1(a)-334(d)1(o)-334(zrob)1(ie)-1(n)1(ia,)-333(a)-333(w)-1(i)1(e)-1(cz)-1(\\363r)-333(in)1(o,)-333(ino)]TJ\nET\nendstream\nendobj\n708 0 obj <<\n/Type /Page\n/Contents 709 0 R\n/Resources 707 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n707 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n712 0 obj <<\n/Length 9588      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(219)]TJ -330.353 -35.866 Td[(Jak)28(o\\273)-457(i)-457(pra)28(wda)-457(b)29(y\\252a,)-457(wie)-1(cz)-1(\\363r)-456(ju)1(\\273)-458(sta\\252)-458(u)-456(pr)1(oga,)-457(s)-1(\\252o\\253)1(c)-1(e)-457(pada\\252o)-457(za)-457(b)-28(or)1(y)83(,)]TJ -27.879 -13.549 Td[(a)-374(c)-1(ze)-1(r)1(w)27(on)1(e)-375(zorze)-375(rozlew)27(a\\252y)-374(si\\246)-375(p)-27(o)-374(ni)1(e)-1(bi)1(e)-375(kr)1(w)27(a)28(wymi)-374(z)-1(atok)56(ami,)-374(\\273e)-375(\\261niegi)-374(gorze)-1(\\242)]TJ 0 -13.549 Td[(si\\246)-333(z)-1(d)1(a)27(w)28(a\\252y)83(,)-332(jakb)29(y)-333(zarz)-1(ewiem)-334(p)-27(osypan)1(e)-334({)-332(ale)-333(w)-1(i)1(e)-1(\\261)-333(g\\252uc)28(h\\252a)-333(i)-332(przycic)27(h)1(a\\252a)-333(;)-333(n)1(os)-1(il)1(i)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-471(w)27(o)-27(d\\246)-471(z)-1(e)-471(s)-1(ta)28(wu,)-470(r\\241bal)1(i)-471(dr)1(w)27(a,)-471(to)-471(k)1(to\\261)-472(si\\246)-471(s)-1(p)1(ie)-1(szy\\252)-471(s)-1(an)1(iami,)-471(a\\273)-471(k)28(oniom)]TJ 0 -13.549 Td[(\\261le)-1(d)1(z)-1(i)1(on)28(y)-485(gra\\252y)83(,)-485(b)1(iegali)-485(jes)-1(zc)-1(ze)-486(p)1(rz)-1(ez)-486(sta)28(w)-1(,)-485(skr)1(z)-1(yp)1(ia\\252y)-485(wr\\363tni)1(e)-486(gdzieniegdzie,)]TJ 0 -13.55 Td[(zryw)28(a\\252y)-360(si\\246)-360(t)1(u)-359(i)-359(\\363)27(wd)1(z)-1(ie)-359(g\\252)-1(osy)-359(r\\363\\273ne,)-359(ale)-360(z)-360(w)28(oln)1(a,)-360(wr)1(az)-360(z)-360(ga\\261ni\\246c)-1(i)1(e)-1(m)-360(z\\363rz)-359(i)-359(z)-360(t\\241)]TJ 0 -13.549 Td[(p)-27(opieln)1(\\241)-363(sin)1(o\\261)-1(ci\\241,)-362(jak)56(a)-362(si\\246)-363(sypa\\252a)-362(n)1(a)-362(\\261)-1(wiat)-362(ru)1(c)27(h)-361(z)-1(amie)-1(r)1(a\\252,)-362(pr)1(z)-1(ycic)27(h)1(a\\252y)-362(ob)-27(e)-1(j)1(\\261)-1(cia)]TJ 0 -13.549 Td[(i)-382(pu)1(s)-1(tosz)-1(a\\252y)-382(d)1(rogi.)-382(Dalekie)-383(p)-27(ola)-382(z)-1(ap)1(ada\\252y)-382(w)-383(mrok)56(ac)27(h)1(,)-382(z)-1(imo)28(wy)-383(wiecz)-1(\\363r)-382(p)1(r\\246)-1(d)1(k)28(o)]TJ 0 -13.549 Td[(nasta)28(w)27(a\\252)-263(i)-263(b)1(ra\\252)-263(z)-1(i)1(e)-1(mi\\246)-263(w)-264(mo)-28(c)-263(s)-1(w)28(o)-56(j)1(\\241,)-263(a)-263(m)-1(r)1(\\363z)-264(si\\246)-264(p)-27(o)-28(d)1(nosi\\252)-263(i)-263(tak)-263(\\261c)-1(isk)56(a\\252,)-263(\\273)-1(e)-263(g\\252o\\261)-1(n)1(ie)-1(j)]TJ 0 -13.549 Td[(gra\\252y)-333(\\261niegi)-333(p)-28(o)-27(d)-333(trepami)-333(i)-333(s)-1(zyb)28(y)-333(malo)28(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(w)-334(r)1(\\363z)-1(gi)-333(i)-333(kwiat)28(y)-333(dziwne...)]TJ 27.879 -13.549 Td[(Wie\\261)-455(z)-1(gi)1(n\\246\\252a)-455(w)-455(sz)-1(ar)1(yc)27(h,)-454(\\261nie\\273)-1(y)1(s)-1(t)28(yc)28(h)-455(mrok)56(ac)28(h,)-454(jakb)28(y)-454(si\\246)-455(rozla\\252a,)-455(\\273e)-455(ani)]TJ -27.879 -13.55 Td[(uj)1(rza\\252)-401(dom\\363)28(w)-1(,)-400(p\\252ot\\363)28(w)-401(i)-401(sad\\363)28(w,)-401(jedn)1(e)-402(t)28(yl)1(k)28(o)-401(\\261)-1(wiate\\252k)56(a)-401(m)-1(i)1(gota\\252y)-401(os)-1(tr)1(o)-401(a)-401(g\\246\\261)-1(cie)-1(j)]TJ 0 -13.549 Td[(ni)1(\\271)-1(li)-333(zwykle,)-333(b)-28(o)-333(ws)-1(z\\246)-1(d)1(y)-333(s)-1(i)1(\\246)-334(s)-1(zyk)28(o)28(w)27(an)1(o)-333(do)-333(w)-1(i)1(gilij)1(nej)-333(wie)-1(cz)-1(erzy)83(.)]TJ 27.879 -13.549 Td[(W)-309(k)56(a\\273)-1(d)1(e)-1(j)-309(c)28(ha\\252u)1(pie,)-309(z)-1(ar)1(\\363)27(wn)1(o)-310(u)-308(b)-28(ogacz)-1(a,)-309(j)1(ak)-309(i)-309(u)-309(k)28(om)-1(or)1(nik)56(a,)-309(j)1(ak)-309(i)-309(u)-309(te)-1(j)-308(bie-)]TJ -27.879 -13.549 Td[(dot)28(y)-329(os)-1(tatn)1(iej,)-330(p)1(rzys)-1(t)1(ra)-56(j)1(ano)-330(si\\246)-330(i)-330(cz)-1(ek)55(an)1(o)-330(z)-330(namas)-1(zc)-1(ze)-1(n)1(iem)-1(,)-329(a)-330(ws)-1(z\\246)-1(d)1(y)-330(sta)27(wian)1(o)]TJ 0 -13.549 Td[(w)-387(k)56(\\241c)-1(i)1(e)-388(o)-27(d)-387(ws)-1(c)28(ho)-28(d)1(u)-386(s)-1(n)1(op)-387(zb)-28(o\\273a,)-387(ok)1(ryw)28(ano)-387(\\252a)28(wy)-387(cz)-1(y)-386(s)-1(to\\252y)-386(p\\252\\363tn)1(e)-1(m)-387(b)1(ie)-1(l)1(on)28(ym,)]TJ 0 -13.55 Td[(p)-27(o)-28(d\\261c)-1(i)1(e)-1(lan)1(o)-334(sian)1(e)-1(m)-333(i)-334(wygl)1(\\241dan)1(o)-334(okn)1(ami)-334(p)1(ierws)-1(ze)-1(j)-333(gwiazdy)84(.)]TJ 27.879 -13.549 Td[(Jak)28(o\\261)-275(n)1(ie)-1(wid)1(ne)-275(b)29(y\\252y)-274(z)-1(araz)-274(z)-275(pierwsz)-1(ego)-275(wiec)-1(zoru)1(;)-274(jak)-274(to)-274(z)-1(wykle)-274(przy)-274(m)-1(r)1(o-)]TJ -27.879 -13.549 Td[(zie)-1(,)-362(b)-28(o)-363(sk)28(oro)-363(ostatn)1(ie)-364(zorze)-363(s)-1(i\\246)-363(dop)1(ala\\252y)84(,)-363(ni)1(e)-1(b)-27(o)-363(z)-1(acz\\246)-1(\\252o)-363(si\\246)-363(z)-1(asn)28(u)28(w)28(a\\242)-364(j)1(akb)28(y)-363(d)1(y-)]TJ 0 -13.549 Td[(mam)-1(i)-333(sin)28(ymi)-333(i)-333(c)-1(a\\252ki)1(e)-1(m)-333(z)-1(atap)1(ia\\252o)-334(si\\246)-334(w)-333(bu)1(ro\\261c)-1(iac)28(h.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-323(z)-324(Wi)1(tkiem)-324(dob)1(rze)-324(b)28(yl)1(i)-324(p)1(rze)-1(marzli,)-323(b)-27(o)-324(stali)-323(na)-323(zw)-1(i)1(adac)27(h)-323(p)1(rze)-1(d)-323(gan)1(-)]TJ -27.879 -13.55 Td[(kiem,)-333(nim)-334(p)1(ierws)-1(z\\241)-333(gw)-1(i)1(az)-1(d)1(\\246)-334(u)28(widzieli.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(st!)-333(Jes)-1(t!)-333({)-333(w)-1(r)1(z)-1(asn\\241\\252)-333(nar)1(az)-334(Witek.)]TJ 0 -13.549 Td[(Wyj)1(rza\\252)-334(n)1(a)-334(t)1(o)-334(Boryn)1(a,)-333(w)-1(y)1(jrzeli)-333(i)-333(dru)1(dzy)83(,)-333(a)-333(na)-333(os)-1(t)1(atku)-333(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-471(\\273)-1(e)-471(b)28(y\\252a,)-471(tu)1(\\273)-472(nad)-470(w)-1(sc)27(h)1(o)-28(dem,)-471(jakb)28(y)-471(si\\246)-471(roz)-1(d)1(ar\\252y)-471(b)1(ure)-471(op)-28(on)29(y)83(,)-471(a)-471(z)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)-27(oki)1(c)27(h)-494(granat)1(o)27(wyc)28(h)-495(g\\252\\246bi)1(n)-495(r)1(o)-28(dzi\\252a)-495(si\\246)-495(gwiazda)-495(i)-494(zda)-495(si\\246)-495(r)1(os)-1(\\252a)-495(w)-494(o)-28(c)-1(zac)27(h)1(,)]TJ 0 -13.55 Td[(lec)-1(i)1(a\\252)-1(a,)-465(pr)1(ysk)55(a\\252a)-465(\\261)-1(wiat\\252em)-1(,)-465(j)1(arz)-1(y)1(\\252)-1(a)-465(s)-1(i)1(\\246)-466(c)-1(or)1(az)-466(b)28(ystrze)-1(j)1(,)-466(a)-465(c)-1(oraz)-466(b)1(li\\273e)-1(j)-465(b)29(y\\252a,)-466(a\\273)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(ukl\\246kn)1(\\241\\252)-334(n)1(a)-334(\\261niegu,)-333(a)-333(za)-334(n)1(im)-334(d)1(rugi)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-286(Ot)1(o)-286(gwiaz)-1(d)1(a)-286(T)83(r)1(z)-1(ec)27(h)-285(Kr\\363li)1(,)-286(b)-27(e)-1(tl)1(e)-1(j)1(e)-1(ms)-1(k)56(a)-286(gwiazda,)-285(pr)1(z)-1(y)-285(kt\\363rej)-285(blasku)-285(P)28(an)]TJ -27.879 -13.549 Td[(nasz)-334(si\\246)-334(n)1(aro)-28(d)1(z)-1(i\\252,)-333(n)1(ie)-1(c)28(h)-333(b)-28(\\246dzie)-334(\\261wi\\246te)-334(imi\\246)-334(Jego)-334(p)-27(o)-28(c)28(h)28(w)27(al)1(one!)]TJ 27.879 -13.549 Td[(P)28(o)28(wt\\363rzyli)-402(z)-1(a)-402(ni)1(m)-403(p)-27(ob)-28(o\\273nie)-403(i)-402(wpi)1(li)-402(s)-1(i\\246)-402(o)-28(c)-1(zam)-1(i)-402(w)-402(t\\246)-403(\\261)-1(wiat\\252o\\261\\242)-403(dal)1(e)-1(k)56(\\241,)-402(w)]TJ -27.879 -13.55 Td[(ten)-333(\\261)-1(wiad)1(e)-1(k)-333(cud)1(u,)-333(w)-334(ten)-333(wid)1(om)27(y)-333(z)-1(n)1(ak)-333(z)-1(mi\\252o)28(w)27(an)1(ia)-333(P)28(a\\253skiego)-333(nad)-333(\\261w)-1(i)1(ate)-1(m.)]TJ 27.879 -13.549 Td[(Serca)-386(im)-386(z)-1(ab)1(i\\252y)-386(rze)-1(wli)1(w)27(\\241)-386(wdzi\\246c)-1(zno\\261c)-1(i)1(\\241,)-386(wiar\\241)-386(gor)1(\\241c)-1(\\241,)-386(d)1(uf)1(no\\261c)-1(i\\241)-386(i)-385(bra\\252y)]TJ -27.879 -13.549 Td[(w)-334(siebie)-333(to)-334(\\261wiat\\252o)-333(c)-1(zys)-1(t)1(e)-334(jak)28(o)-333(ten)-333(ogie)-1(\\253)-333(\\261wi\\246t)27(y)84(,)-333(pl)1(e)-1(n)1(i\\241c)-1(y)-333(z\\252e)-1(,)-333(j)1(ak)28(o)-334(sakrame)-1(n)29(t.)]TJ 27.879 -13.549 Td[(A)-392(gwiazda)-391(olb)1(rz)-1(y)1(m)-1(i)1(a\\252)-1(a,)-391(ni)1(os)-1(\\252a)-391(s)-1(i\\246)-392(j)1(u\\273)-392(n)1(ib)28(y)-391(kul)1(a)-392(ogni)1(s)-1(ta,)-391(b\\252\\246kitn)1(e)-392(s)-1(m)28(ugi)]TJ -27.879 -13.549 Td[(sz)-1(\\252y)-269(o)-28(d)-269(n)1(ie)-1(j)-269(n)1(ib)28(y)-269(sz)-1(p)1(ryc)28(h)28(y)-269(\\261)-1(wi\\246te)-1(go)-269(k)28(o\\252a,)-269(i)-269(s)-1(kr)1(z)-1(y\\252y)-269(si\\246)-270(p)-27(o)-270(\\261ni)1(e)-1(gac)28(h,)-269(i)-269(\\261)-1(wietlist)28(ymi)]TJ 0 -13.549 Td[(dr)1(z)-1(azgami)-346(rozdziera\\252y)-345(c)-1(iemno\\261c)-1(i,)-345(a)-346(za)-346(n)1(i\\241,)-346(j)1(ak)28(o)-346(te)-346(s\\252u\\273ki)-345(w)-1(i)1(e)-1(rn)1(e)-1(,)-345(wyc)27(h)29(yla\\252y)-345(s)-1(i\\246)]TJ 0 -13.55 Td[(z)-385(nieba)-385(in)1(ne,)-385(a)-385(liczne,)-385(niepr)1(z)-1(elicz)-1(on)1(\\241)-385(i)-385(ni)1(e)-1(p)1(rze)-1(j)1(rz)-1(an)1(\\241)-385(g\\246)-1(st)28(w)27(\\241,)-384(\\273)-1(e)-385(nieb)-27(o)-385(p)-28(okr)1(y\\252o)]TJ 0 -13.549 Td[(si\\246)-491(r)1(os)-1(\\241)-490(\\261wie)-1(t)1(list\\241)-490(i)-490(rozwija\\252o)-490(si\\246)-490(nad)-489(\\261)-1(wiatem)-490(m)-1(o)-27(dr\\241)-490(p)1(\\252ac)27(h)28(t\\241,)-489(p)-28(op)1(rze)-1(b)1(ijan)1(\\241)]TJ 0 -13.549 Td[(sre)-1(b)1(rn)28(y)1(m)-1(i)-333(gw)28(o\\271)-1(d)1(z)-1(iami.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zas)-334(wiec)-1(ze)-1(r)1(z)-1(a\\242,)-333(kiedy)-333(s\\252)-1(o)28(w)28(o)-334(cia\\252em)-334(si\\246)-334(sta\\252o)-1(!)1({)-334(r)1(z)-1(ek\\252)-333(R)-1(o)-27(c)27(h.)]TJ 0 -13.549 Td[(W)84(e)-1(sz)-1(li)-333(d)1(o)-334(d)1(om)27(u)-333(i)-333(zaraz)-334(te\\273)-334(ob)1(s)-1(iedl)1(i)-333(w)-1(y)1(s)-1(ok)56(\\241)-333(i)-334(d)1(\\252ug\\241)-333(\\252a)27(w)28(\\246.)]TJ 0 -13.55 Td[(Si)1(ad\\252)-342(Boryn)1(a)-342(na)-55(jp)1(ie)-1(r)1(ws)-1(zy)83(,)-341(s)-1(iad)1(\\252a)-342(Dominik)28(o)28(w)28(a)-342(z)-342(s)-1(yn)1(am)-1(i)1(,)-342(b)-27(o)-342(s)-1(i)1(\\246)-343(d)1(o\\252o\\273)-1(y\\252a,)]TJ -27.879 -13.549 Td[(ab)28(y)-297(r)1(az)-1(em)-298(wiec)-1(ze)-1(r)1(z)-1(a\\242,)-297(siad\\252)-297(Ro)-28(c)27(h)1(o,)-297(w)-297(p)-28(o\\261ro)-28(d)1(ku,)-297(siad)1(\\252)-298(P)1(ietrek,)-297(s)-1(i)1(ad\\252)-297(Witek)-297(k)28(ole)]TJ\nET\nendstream\nendobj\n711 0 obj <<\n/Type /Page\n/Contents 712 0 R\n/Resources 710 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n710 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n715 0 obj <<\n/Length 8871      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(220)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(J\\363zki,)-248(t)28(y)1(lk)28(o)-248(Jagu)1(s)-1(ia)-248(p)1(rzysiada\\252a)-248(n)1(a)-248(kr\\363tk)28(o,)-247(b)-27(o)-248(trze)-1(b)1(a)-248(b)28(y\\252o)-248(o)-248(j)1(adl)1(e)-249(i)-247(przyk\\252ad)1(aniu)]TJ 0 -13.549 Td[(pami\\246ta\\242.)]TJ 27.879 -13.549 Td[(Uro)-27(c)-1(zys)-1(t)1(a)-334(cic)27(h)1(o\\261)-1(\\242)-333(z)-1(aleg\\252a)-334(i)1(z)-1(b)-27(\\246)-1(.)]TJ 0 -13.549 Td[(Boryn)1(a)-280(si\\246)-280(pr)1(z)-1(e\\273)-1(egna\\252)-279(i)-280(p)-27(o)-28(d)1(z)-1(i)1(e)-1(li)1(\\252)-280(op\\252atek)-279(p)-28(omi\\246dzy)-280(wsz)-1(ystki)1(c)27(h,)-279(p)-27(o)-56(j)1(e)-1(d)1(li)-280(go)]TJ -27.879 -13.549 Td[(ze)-334(c)-1(zc)-1(i)1(\\241,)-333(kieb)28(y)-333(te)-1(n)-333(c)28(hleb)-333(P)28(a\\253)1(s)-1(ki)1(.)]TJ 27.879 -13.55 Td[({)-323(Chr)1(ys)-1(t)1(us)-323(s)-1(i\\246)-323(w)-323(onej)-322(go)-28(dzini)1(e)-324(n)1(aro)-28(d)1(z)-1(i\\252,)-322(to)-323(ni)1(e)-1(c)27(h)-322(k)56(a\\273)-1(d)1(e)-324(st)28(w)27(or)1(z)-1(enie)-323(kr)1(z)-1(epi)]TJ -27.879 -13.549 Td[(si\\246)-334(t)28(ym)-334(c)28(hleb)-27(e)-1(m)-333(\\261)-1(wi\\246t)27(y)1(m)-1(!)-333({)-333(p)-27(o)27(wiedzia\\252)-333(Ro)-28(c)27(h)1(o.)]TJ 27.879 -13.549 Td[(A)-469(c)27(h)1(o)-28(c)-1(i)1(a\\273)-470(g\\252o)-28(dn)1(i)-469(b)28(yli,)-469(b)-27(o)-28(\\242)-470(to)-469(dzie\\253)-469(c)-1(a\\252y)-469(o)-469(s)-1(u)1(c)27(h)28(y)1(m)-470(c)27(h)1(le)-1(b)1(ie,)-470(a)-469(p)-27(o)-56(j)1(adali)]TJ -27.879 -13.549 Td[(w)28(olno)-333(i)-333(go)-28(dn)1(ie.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-372(b)28(y)1(\\252)-373(b)1(ur)1(ac)-1(zan)28(y)-372(kw)28(as)-1(,)-372(goto)28(w)28(an)28(y)-372(n)1(a)-373(gr)1(z)-1(y)1(bac)27(h)-371(z)-373(zie)-1(mni)1(ak)55(ami)-372(ca-)]TJ -27.879 -13.549 Td[(\\252ymi,)-297(a)-297(p)-27(otem)-298(p)1(rzysz)-1(\\252y)-297(\\261ledzie)-298(w)-297(m\\241ce)-298(ob)1(tac)-1(zane)-297(i)-297(sm)-1(a\\273one)-297(w)-297(oleju)-296(k)28(onop)1(n)28(ym,)]TJ 0 -13.55 Td[(p)-27(\\363\\271)-1(n)1(ie)-1(j)-432(za\\261)-434(p)1(s)-1(ze)-1(n)1(ne)-433(kl)1(uski)-433(z)-433(makiem)-1(,)-432(a)-433(p)-27(ote)-1(m)-433(sz)-1(\\252a)-433(k)56(ap)1(usta)-433(z)-433(grz)-1(y)1(bami,)-433(ol)1(e)-1(-)]TJ 0 -13.549 Td[(jem)-299(r\\363)28(wni)1(e)-1(\\273)-299(omas)-1(zcz)-1(on)1(a,)-299(a)-298(na)-298(os)-1(tatek)-298(p)-28(o)-27(da\\252a)-299(Jagu)1(s)-1(i)1(a)-299(p)1(rzys)-1(mak)-298(pra)28(wdziwy)83(,)-298(b)-27(o)]TJ 0 -13.549 Td[(racusz)-1(k)1(i)-407(z)-406(grycz)-1(an)1(e)-1(j)-406(m\\241ki)-406(z)-407(mio)-28(d)1(e)-1(m)-407(zatart)1(e)-407(i)-406(w)-407(mak)28(o)27(wym)-406(ole)-1(j)1(u)-406(up)1(ru)1(\\273)-1(one,)-406(a)]TJ 0 -13.549 Td[(pr)1(z)-1(egryzali)-377(to)-377(ws)-1(zystk)28(o)-377(prost)28(ym)-378(c)28(hleb)-27(e)-1(m,)-377(b)-28(o)-377(p)1(lac)27(k)56(a)-377(ni)-377(stru)1(c)-1(li)1(,)-377(\\273)-1(e)-378(z)-377(m)-1(l)1(e)-1(ki)1(e)-1(m)-377(i)]TJ 0 -13.549 Td[(mas)-1(\\252em)-334(b)28(y\\252y)84(,)-333(nie)-333(go)-28(dzi\\252o)-333(s)-1(i\\246)-333(je\\261)-1(\\242)-334(d)1(nia)-333(tego.)]TJ 27.879 -13.55 Td[(Jedli)-276(d)1(\\252)-1(u)1(go)-277(i)-276(ma\\252o)-277(k)1(ie)-1(d)1(y)-276(je\\261)-1(li)-276(tam)-276(kt\\363re)-277(r)1(z)-1(ek\\252o)-277(j)1(akie)-277(s\\252o)28(w)27(o,)-276(wi\\246c)-277(ino)-276(s)-1(k)1(rzy-)]TJ -27.879 -13.549 Td[(b)-27(ot)-386(\\252y\\273e)-1(k)-385(o)-385(w)-1(r)1(\\246)-1(b)29(y)-386(si\\246)-386(rozlega\\252)-386(i)-385(mlas)-1(k)56(an)1(ie)-386({)-386(t)28(yl)1(k)28(o)-386(Boryn)1(a)-386(r)1(az)-386(p)-28(o)-385(raz)-386(r)1(w)27(a\\252)-385(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(om)-1(aga\\242)-333(Jagusi)-333(a)-334(wyr\\246cz)-1(a\\242,)-333(a\\273)-334(go)-334(stara)-333(sk)55(ar)1(c)-1(i)1(\\252)-1(a)]TJ 27.879 -13.549 Td[({)-286(Si)1(e)-1(d)1(\\271)-1(cie,)-286(nic)-286(s)-1(i)1(\\246)-287(j)1(e)-1(j)-285(nie)-286(s)-1(tan)1(ie,)-286(dalek)28(o)-286(jesz)-1(cz)-1(e)-286(do)-286(cz)-1(asu,)-286(a)-286(p)1(ierws)-1(ze)-287(\\261wi\\246)-1(ta)]TJ -27.879 -13.549 Td[(na)-333(sw)27(o)-55(jem)-1(,)-333(to)-333(ni)1(e)-1(c)27(h)1(a)-56(j)-333(si\\246)-334(wk\\252ad)1(a!...)]TJ 27.879 -13.55 Td[(Ale)-350(\\212apa)-350(s)-1(k)28(omla\\252)-350(z)-351(cic)28(ha,)-350(tr)1(yk)56(a\\252)-351(\\252b)-27(e)-1(m)-350(o)-350(z)-1(ad)1(y)83(,)-350(\\252asi\\252)-350(s)-1(i\\246)-350(a)-350(pr)1(z)-1(yp)-27(o)-28(c)27(h)1(lebia\\252,)]TJ -27.879 -13.549 Td[(b)28(y)-309(m)28(u)-309(pr)1(\\246)-1(d)1(z)-1(ej)-309(dal)1(i,)-309(a)-310(b)-27(o)-28(ciek,)-309(kt\\363ren)-309(mia\\252)-309(s)-1(w)28(o)-56(j)1(e)-310(mie)-1(j)1(s)-1(ce)-310(w)-309(s)-1(i)1(e)-1(n)1(i,)-309(to)-309(c)-1(z\\246)-1(sto)-309(g\\246)-1(sto)]TJ 0 -13.549 Td[(ku)1(\\252)-334(d)1(z)-1(iob)-27(em)-334(w)-334(\\261c)-1(i)1(an\\246,)-333(to)-334(k)1(le)-1(k)28(ota\\252,)-333(a\\273)-334(si\\246)-334(k)1(ury)-333(o)-28(d)1(z)-1(y)1(w)27(a\\252y)-333(na)-333(grz\\246dac)27(h)1(.)]TJ 27.879 -13.549 Td[(Nie)-334(sk)28(o\\253czyli)-333(jes)-1(zcz)-1(e,)-334(gd)1(y)-333(ktosik)-333(z)-1(ap)1(uk)56(a\\252)-333(do)-333(okna.)]TJ 0 -13.549 Td[({)-335(Nie)-335(p)1(usz)-1(cz)-1(a\\242)-335(i)-334(nie)-335(ob)1(z)-1(iera\\242)-335(si\\246)-1(,)-334(to)-335(z\\252e)-1(,)-334(w)27(ci\\261)-1(n)1(ie)-335(s)-1(i)1(\\246)-335(i)-335(na)-334(c)-1(a\\252y)-334(rok)-335(ostani)1(e)-1(!)]TJ -27.879 -13.55 Td[({)-333(w)-1(y)1(krzykn)1(\\246)-1(\\252a)-333(Dom)-1(i)1(nik)28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[(Op)1(u\\261c)-1(il)1(i)-333(\\252)-1(y)1(\\273)-1(ki)-333(i)-333(s\\252uc)27(h)1(ali)-333(s)-1(t)1(rw)27(o\\273eni,)-333(p)1(uk)56(anie)-333(z)-1(n)1(o)27(wu)-333(si\\246)-334(p)-27(ono)28(wi\\252o.)]TJ 0 -13.549 Td[({)-333(Kub)-27(o)28(w)27(a)-333(du)1(s)-1(za!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252)-1(a)-333(J\\363zk)56(a.)]TJ 0 -13.549 Td[({)-249(Nie)-250(pl)1(e)-1(\\242,)-250(k)1(tos)-1(ik)-249(p)-27(otrze)-1(b)1(uj)1(\\241c)-1(y)1(;)-250(w)-249(te)-1(n)-249(d)1(z)-1(ie\\253)-249(ni)1(kto)-249(nie)-250(p)-27(o)28(winien)-249(b)28(y\\242)-250(g\\252o)-27(dn)28(y)]TJ -27.879 -13.549 Td[(ni)-333(osta)28(w)27(a\\242)-333(b)-28(ez)-334(dac)28(h)28(u)-333({)-333(o)-28(dez)-1(w)28(a\\252)-333(s)-1(i\\246)-333(R)-1(o)-27(c)27(h)-333(p)-27(o)-28(dn)1(os)-1(z\\241c)-334(si\\246)-334(d)1(rz)-1(wi)-333(ot)28(wiera\\242)-1(.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-419(to)-420(b)28(y\\252a,)-419(s)-1(tan)1(\\246)-1(\\252a)-420(p)-27(ok)28(orn)1(ie)-420(u)-420(p)1(roga)-420(i)-419(pr)1(z)-1(ez)-421(\\252zy)83(,)-419(c)-1(o)-419(s)-1(i\\246)-420(j)1(e)-1(j)-419(jak)]TJ -27.879 -13.549 Td[(gro)-27(c)27(h)-333(sypa\\252y)84(,)-333(prosi\\252a)-333(c)-1(ic)28(ho:)]TJ 27.879 -13.549 Td[({)-427(Da)-56(j)1(c)-1(i)1(e)-428(k)56(\\241t)-427(jak)1(i)-427(i)-427(c)27(h)1(o)-28(\\242b)28(y)-427(to,)-427(co)-427(psu)-427(wyrzucicie)-1(!)-426(Z)-1(mi\\252u)1(jcie)-428(si\\246)-427(nad)-427(sie-)]TJ -27.879 -13.549 Td[(rot\\241.)1(..)-395(C)-1(zek)55(a\\252am,)-395(\\273)-1(e)-396(mni)1(e)-396(dzie)-1(ci)-395(z)-1(ap)1(rosz)-1(\\241..)1(.)-396(cz)-1(ek)56(a\\252am)-1(.)1(..)-395(w)-396(c)27(h)1(a\\252)-1(u)1(pi)1(e)-396(m)-1(r)1(\\363z)-1(..)1(.)-396(n)1(a)]TJ 0 -13.549 Td[(dar)1(m)-1(o)-343(wyz)-1(i)1(\\246)-1(b)1(\\252)-1(am..)1(.)-344(n)1(a)-344(dar)1(m)-1(o.)1(..)-344(M)1(\\363)-56(j)-343(Jez)-1(u)1(s)-1(.)1(..)-344(a)-343(te)-1(r)1(az)-1(,)-343(jak)-343(ta)-344(d)1(z)-1(i)1(ad\\363)28(wk)55(a.)1(..)-343(jak..)1(.)]TJ 0 -13.549 Td[(ro)-27(dzone)-450(dzie)-1(ci..)1(.)-450(s)-1(am\\241)-450(mi\\246)-450(os)-1(ta)28(wi\\252y)-450(i)-449(b)-28(ez)-451(t)1(e)-1(j)-449(okru)1(s)-1(zyn)28(y)-449(c)27(hl)1(e)-1(ba.)1(..)-450(gor)1(z)-1(ej)-450(n)1(i\\271)-1(l)1(i)]TJ 0 -13.55 Td[(tego)-290(p)1(s)-1(a..)1(.)-290(a)-289(tam)-290(u)-289(n)1(ic)27(h)-289(gw)28(arn)1(o,)-290(p)-27(e)-1(\\252n)1(o)-290(l)1(udzi..)1(.)-290(c)28(ho)-28(d)1(z)-1(i)1(\\252am)-290(k)28(o\\252o)-290(w)28(\\246)-1(g\\252\\363)28(w...)-289(w)-290(okn)1(a)]TJ 0 -13.549 Td[(zagl\\241da\\252am...n)1(a)-334(d)1(armo...)]TJ 27.879 -13.549 Td[({)-321(Siad)1(a)-56(jcie)-322(z)-322(n)1(am)-1(i)1(.)-322(T)83(r)1(z)-1(eba)-321(b)28(y\\252o)-321(przyj)1(\\261)-1(\\242)-322(w)28(am)-322(z)-1(ar)1(az)-322(z)-322(wie)-1(czora,)-321(a)-322(n)1(a)-322(dzie-)]TJ -27.879 -13.549 Td[(ci\\253sk)56(\\241)-370(\\252as)-1(k)28(\\246)-370(n)1(ie)-370(c)-1(zek)55(a\\242...)-369(jeno)-369(do)-369(trumn)28(y)-369(to)-370(o)-27(c)27(hot)1(nie)-370(wbi)1(j\\241)-370(gw)28(o\\271dz)-1(i)1(e)-370(os)-1(tatn)1(ie,)]TJ 0 -13.549 Td[(b)28(y)-333(si\\246)-334(u)1(p)-28(ewni\\242,)-333(\\273)-1(e)-334(n)1(ie)-334(wr\\363)-27(c)-1(icie)-334(j)1(u\\273)-334(p)-27(o)-333(nic...)]TJ 27.879 -13.55 Td[(I)-333(z)-334(wie)-1(l)1(k)55(\\241)-333(dob)1(ro\\261c)-1(i)1(\\241)-334(zrobi)1(\\252)-334(j)1(e)-1(j)-333(miejsc)-1(e)-333(w)27(edle)-333(s)-1(iebi)1(e)-1(.)]TJ 0 -13.549 Td[(Ale)-280(n)1(ie)-280(mog\\252)-1(a)-279(ni)1(c)-280(prze)-1(\\252k)1(n\\241\\242,)-280(c)28(ho)-28(\\242)-280(j)1(e)-1(j)-279(Jagu)1(s)-1(ia)-279(nicze)-1(go)-279(nie)-280(\\273a\\252o)27(w)28(a\\252a)-280(i)-279(sz)-1(cz)-1(e-)]TJ\nET\nendstream\nendobj\n714 0 obj <<\n/Type /Page\n/Contents 715 0 R\n/Resources 713 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n713 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n718 0 obj <<\n/Length 9649      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(221)]TJ -358.232 -35.866 Td[(ry)1(m)-362(se)-1(r)1(c)-1(em)-362(zni)1(e)-1(w)28(ala\\252a)-361(do)-361(j)1(ad\\252a,)-361(c\\363\\273)-1(,)-361(k)1(ie)-1(j)-360(nie)-361(mog\\252)-1(a,)-360(s)-1(iedzia\\252a)-361(cic)27(h)1(o,)-361(s)-1(k)1(ulon)1(a)-361(i)]TJ 0 -13.549 Td[(zaparta)-234(w)-234(sobi)1(e)-1(,)-234(\\273e)-234(jeno)-234(p)-27(o)-234(dr)1(ygani)1(u)-234(p)1(le)-1(c\\363)28(w)-234(b)28(y\\252o)-234(widn)1(o,)-234(j)1(ak)55(a)-234(j)1(\\241)-234(m\\246)-1(k)56(a)-234(ozdzie)-1(r)1(a\\252a.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o)-263(si\\246)-263(w)-263(izbi)1(e)-263(s)-1(ta\\252o,)-262(c)-1(i)1(e)-1(p)1(\\252o,)-263(se)-1(r)1(dec)-1(znie,)-262(nab)-27(o\\273)-1(n)1(ie)-263(i)-262(tak)-263(u)1(ro)-28(czy\\261)-1(cie,)-263(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(n)1(imi)-334(l)1(e)-1(\\273a\\252o)-334(to)-333(\\261w)-1(i)1(\\246)-1(te)-333(Dz)-1(ieci\\241tk)28(o)-334(J)1(e)-1(zus.)]TJ 27.879 -13.549 Td[(Ogr)1(om)-1(n)28(y)-335(a)-336(ci\\241)-28(gle)-336(p)-27(o)-28(dsycan)28(y)-335(ogie)-1(\\253)-335(w)28(e)-1(so\\252o)-336(trzas)-1(k)56(a\\252)-336(n)1(a)-336(k)28(ominie)-336(i)-335(roz\\261)-1(wie-)]TJ -27.879 -13.55 Td[(tla\\252)-402(ca\\252\\241)-402(izb)-27(\\246)-1(,)-401(a\\273)-403(l)1(\\261)-1(n)1(i\\252y)-402(si\\246)-402(s)-1(zk\\252a)-402(obr)1(az)-1(\\363)28(w)-402(i)-401(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252y)-402(zam)-1(ar)1(z)-1(n)1(i\\246)-1(te)-402(sz)-1(y)1(b)28(y)83(,)-401(a)]TJ 0 -13.549 Td[(oni)-333(siedzie)-1(l)1(i)-334(t)1(e)-1(raz)-333(w)-1(zd\\252u)1(\\273)-334(\\252a)28(w)-1(y)84(,)-333(pr)1(z)-1(ed)-333(ogniem,)-333(i)-334(p)-27(orad)1(z)-1(al)1(i)-333(z)-334(c)-1(i)1(c)27(ha)-333(a)-333(p)-28(o)28(w)28(a\\273)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(P)28(otem)-334(Jagu)1(\\261)-334(nagoto)28(w)28(a\\252a)-334(k)56(a)28(wy)83(,)-333(to)-333(s)-1(\\252o)-27(dzili)-333(j\\241)-333(s)-1(u)1(to)-333(i)-333(p)-28(op)1(ijal)1(i)-334(z)-333(w)27(oln)1(a...)]TJ 0 -13.549 Td[(A\\273)-410(Ro)-28(c)27(h)1(o)-410(wyj)1(\\241\\252)-410(z)-410(z)-1(an)1(adrza)-410(k)1(s)-1(i\\241\\273k)28(\\246)-410(okr\\246c)-1(on)1(\\241)-410(w)-410(r)1(\\363\\273)-1(an)1(ie)-1(c)-410(i)-409(zac)-1(z\\241\\252)-410(z)-410(niej)]TJ -27.879 -13.549 Td[(cz)-1(yta\\242)-333(c)-1(ic)28(h)28(ym)-334(a)-333(g\\252\\246b)-28(ok)28(o)-333(wz)-1(r)1(usz)-1(on)28(y)1(m)-334(g\\252os)-1(em)-1(:)]TJ 27.879 -13.549 Td[({)-355(\\377)-55(Jak)28(o)-355(to)-355(sta\\252a)-355(si\\246)-355(nam)-355(no)28(win)1(a,)-355(P)28(an)1(na)-355(p)-27(oro)-27(dzi\\252a)-355(Syn)1(a;)-355(a\\273)-355(w)-355(j)1(udejskiej)]TJ -27.879 -13.55 Td[(zie)-1(mie,)-387(w)-387(Be)-1(tl)1(e)-1(j)1(e)-1(m,)-387(n)1(ie)-387(bar)1(dzo)-387(p)-28(o)-27(d\\252ym)-387(mie)-1(\\261cie)-1(,)-386(nar)1(o)-28(dzi\\252)-387(si\\246)-387(P)28(an)-386(w)-387(ub)-27(\\363s)-1(t)28(wie;)]TJ 0 -13.549 Td[(na)-285(sian)1(ie)-1(,)-284(w)-286(sta)-55(jni)-284(lic)27(h)1(e)-1(j)1(,)-285(mi\\246dzy)-285(b)28(yd)1(l\\241tk)56(am)-1(i)1(,)-285(co)-285(w)-286(tej)-285(r)1(adosnej)-285(n)1(o)-28(c)-1(y)-284(c)-1(ic)28(hej)-285(b)28(y)1(\\252y)]TJ 0 -13.549 Td[(Mu)-312(bratami.)-313({)-313(A)-313(ta)-313(s)-1(ama)-313(gw)-1(i)1(az)-1(d)1(a,)-313(c)-1(o)-313(i)-313(dzisia)-56(j)-312(\\261)-1(wiec)-1(i,)-313(sp\\252on)1(\\246)-1(\\252a)-313(w)28(\\363)27(w)28(c)-1(zas)-314(d)1(la)-313(te)-1(j)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(tej)-272(Dz)-1(iecin)28(y)-272({)-273(i)-272(drog\\246)-273(wsk)55(azyw)28(a\\252a)-273(trzem)-273(kr\\363lom,)-272(c)-1(o)-272(c)27(ho)-27(c)-1(ia\\273)-273(p)-27(ogan)28(y)-272(i)-273(czarne)]TJ 0 -13.549 Td[(jak)28(o)-342(te)-343(sagan)28(y)83(,)-342(a)-342(s)-1(erca)-343(mieli)-342(c)-1(zuj)1(\\241c)-1(e)-343(i)-342(z)-343(kr)1(a)-56(j)1(\\363)27(w)-342(dalekic)28(h,)-342(zz)-1(a)-342(m)-1(\\363r)1(z)-343(niepr)1(z)-1(ejr)1(z)-1(a-)]TJ 0 -13.55 Td[(n)28(yc)28(h,)-333(zz)-1(a)-333(g\\363r)-333(s)-1(r)1(ogic)27(h)-333(p)1(rzybi)1(e)-1(gli)-333(z)-334(d)1(arami,)-333(b)28(y)-333(pr)1(a)28(w)-1(d)1(z)-1(i)1(e)-334(da\\242)-334(\\261wiadect)27(w)28(o.\")]TJ 27.879 -13.549 Td[(D\\252ugo)-306(cz)-1(y)1(ta\\252)-307(op)-27(o)28(wie)-1(\\261\\242)-307(on)1(\\241,)-306(a)-306(g\\252os)-307(m)28(u)-306(s)-1(i)1(\\246)-307(wz)-1(maga\\252)-306(i)-306(rozmadla\\252,)-306(i)-306(w)-306(\\261)-1(p)1(iew)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-481(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(,)-479(\\273e)-481(j)1(akb)28(y)-479(t\\246)-480(\\261w)-1(i)1(\\246)-1(t\\241)-479(litan)1(i\\246)-480(w)-1(y)1(g\\252as)-1(za\\252,)-480(a)-479(w)-1(sz)-1(y)1(s)-1(cy)-480(siedzie)-1(l)1(i)]TJ 0 -13.549 Td[(w)-380(m)-1(il)1(c)-1(ze)-1(n)1(iu)-380(p)-27(ob)-27(o\\273)-1(n)28(y)1(m)-1(,)-380(w)-380(c)-1(i)1(s)-1(zy)-380(s)-1(erc)-380(z)-1(as\\252uc)27(h)1(an)28(yc)28(h,)-380(w)-380(dr\\273e)-1(n)1(iu)-380(d)1(usz)-381(ol\\261ni)1(on)28(yc)27(h)]TJ 0 -13.549 Td[(cudem)-334(i)-333(w)-333(na)-56(j)1(s)-1(zcz)-1(ersz)-1(ym)-333(o)-28(dcz)-1(u)1(c)-1(i)1(u)-333(\\252as)-1(ki)-333(P)28(a\\253)1(s)-1(k)1(ie)-1(j)-332(naro)-27(do)28(wi)-334(d)1(anej!)]TJ 27.879 -13.55 Td[(Hej,)-499(m\\363)-56(j)-498(Jez)-1(u)1(s)-500(k)28(o)-28(c)28(han)28(y)1(!)-499(W)-499(sta)-56(j)1(e)-1(n)1(c)-1(e)-499(ci)-499(to)-499(li)1(c)27(hej)-499(u)1(ro)-28(d)1(z)-1(i)1(\\242)-500(si\\246)-499(przysz)-1(\\252o,)]TJ -27.879 -13.549 Td[(tam)-367(w)-366(t)28(yc)27(h)-365(kra)-55(jac)27(h)-366(d)1(alekic)27(h)1(,)-366(m)-1(i)1(\\246)-1(d)1(z)-1(y)-366(ob)-27(c)-1(y)1(m)-1(i,)-366(mi\\246dzy)-366(\\233ydy)-366(p)1(as)-1(ku)1(dn)1(e)-1(,)-366(mi\\246dzy)]TJ 0 -13.549 Td[(heret)28(yki)-307(s)-1(rogi)1(e)-1(!)-307(a)-308(w)-308(ub)-27(\\363st)27(wie)-308(taki)1(m)-1(,)-307(w)-308(taki)-307(m)-1(r)1(\\363z)-1(!)-308(O)-307(bi)1(e)-1(d)1(oto)-308(pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(a,)-307(o)]TJ 0 -13.549 Td[(Dzie)-1(cin)1(e)-1(cz)-1(k)28(o)-333(s\\252o)-28(dk)56(a!.)1(..)-333(My)1(\\261)-1(leli)-333(i)-332(s)-1(erca)-333(bi\\252y)-333(wsp)-28(\\363\\252cz)-1(u)1(c)-1(i)1(e)-1(m,)-333(a)-333(du)1(s)-1(ze)-333(s)-1(i\\246)-333(z)-1(r)1(yw)28(a\\252)-1(y)-332(i)]TJ 0 -13.549 Td[(ni)1(e)-1(s\\252y)-243(w)27(e)-243(\\261)-1(wiat)-243(j)1(ak)28(o)-243(c)-1(i)-243(p)1(tak)28(o)28(w)-1(i)1(e)-1(,)-243(a\\273)-243(do)-243(tej)-243(ziem)-1(i)-243(n)1(aro)-28(d)1(z)-1(i)1(n,)-243(d)1(o)-244(t)1(e)-1(j)-243(szop)28(y)83(,)-243(p)1(rze)-1(d)-242(te)-1(n)]TJ 0 -13.55 Td[(\\273\\252)-1(\\363b)1(,)-370(n)1(ad)-370(kt\\363r)1(ym)-370(\\261)-1(p)1(ie)-1(w)28(ali)-370(an)1(io\\252o)28(wie)-1(,)-369(do)-370(\\261w)-1(i)1(\\246)-1(t)28(yc)28(h)-370(n\\363\\273ek)-370(Dzie)-1(ci\\241tk)56(a)-370(pr)1(z)-1(y)1(padal)1(i)]TJ 0 -13.549 Td[(se)-1(rcami)-500(i)-499(ca\\252\\241)-500(mo)-28(c)-1(\\241)-499(wiary)-499(ogni)1(s)-1(tej)-499(i)-500(d)1(uf)1(no\\261c)-1(i)-499(o)-28(d)1(da)28(w)27(al)1(i)-500(M)1(u)-499(s)-1(i\\246)-499(w)-500(te)-500(s\\252)-1(u)1(\\273)-1(k)1(i)]TJ 0 -13.549 Td[(na)-55(jwiern)1(ie)-1(j)1(s)-1(ze)-334(a\\273)-334(p)-27(o)-333(w)-1(i)1(e)-1(k)-333(wiek)28(\\363)27(w)-333(ame)-1(n)1(!)]TJ 27.879 -13.549 Td[(A)-427(Ro)-28(c)27(h)1(o)-428(w)28(ci\\241\\273)-428(cz)-1(yt)1(a\\252)-1(,)-427(a\\273)-427(J\\363z)-1(k)56(a,)-427(\\273e)-428(to)-427(m)-1(i)1(\\246)-1(tk)1(ie)-428(d)1(z)-1(ieusz)-1(y)1(s)-1(k)28(o)-427(b)28(y\\252o)-427(i)-427(wiel-)]TJ -27.879 -13.549 Td[(ce)-420(cz)-1(u)1(j\\241ce)-1(,)-418(z)-1(ap)1(\\252ak)55(a\\252a)-418(rz)-1(ewliwie)-419(nad)-418(P)28(a\\253)1(s)-1(k)56(\\241)-419(n)1(ie)-1(d)1(ol\\241,)-419(a)-418(Jagu\\261)-419(ws)-1(p)1(ar\\252sz)-1(y)-418(t)27(w)28(arz)]TJ 0 -13.55 Td[(na)-494(d\\252on)1(iac)27(h)-494(t)1(e)-1(\\273)-495(p)1(\\252ak)55(a\\252a,)-494(a\\273)-495(j)1(e)-1(j)-494(\\252zy)-494(c)-1(iek\\252y)-494(pr)1(z)-1(ez)-495(pal)1(c)-1(e,)-494(\\273)-1(e)-495(c)28(ho)28(w)27(a\\252a)-494(g\\252o)28(w)27(\\246)-495(za)]TJ 0 -13.549 Td[(J\\246drzyc)28(ha,)-456(kt\\363r)1(e)-1(n)-456(z)-456(ot)28(w)27(art)1(\\241)-457(g\\246b\\241)-456(wp)-27(o)-28(dle)-456(s)-1(\\252u)1(c)27(ha\\252,)-456(a)-456(tak)-456(si\\246)-457(wielce)-457(dziw)28(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(s\\252)-1(y)1(s)-1(zanem)27(u)1(,)-334(a\\273)-333(raz)-334(p)-27(o)-333(raz)-334(sz)-1(ar)1(pa\\252)-333(Szym)-1(k)56(a)-333(z)-1(a)-333(k)56(ap)-28(ot)1(\\246)-334(i)-333(w)-1(y)1(krzykiw)28(a\\252:)]TJ 27.879 -13.549 Td[({)-352(Cie!...)-352({)-352(s\\252uc)28(hasz)-353(to,)-352(S)1(z)-1(y)1(m)-1(ek!)-352({)-352(al)1(e)-353(wnet)-352(milkn)1(\\241\\252,)-352(k)56(aran)28(y)-352(srogim)-352(wz)-1(r)1(o-)]TJ -27.879 -13.549 Td[(kiem)-334(matki.)]TJ 27.879 -13.549 Td[({)-333(Na)27(w)28(et)-334(tej)-333(k)28(oleb)-28(ecz)-1(ki)-333(n)1(ie)-334(mia\\252a)-333(biedota!)]TJ 0 -13.55 Td[({)-333(Dz)-1(i)1(w)-1(,)-333(\\273e)-334(to)-333(nie)-333(z)-1(amarz\\252o!)]TJ 0 -13.549 Td[({)-402(I)-402(\\273)-1(e)-402(to)-402(c)27(h)1(c)-1(i)1(a\\252)-402(P)28(an)-402(Jez)-1(u)1(s)-403(t)28(yl)1(e)-403(wycierpi)1(e)-1(\\242!)-402({)-402(p)-27(o)27(wiad)1(ali)-402(rozw)28(a\\273)-1(a)-55(j\\241c,)-402(gdy)]TJ -27.879 -13.549 Td[(sk)28(o\\253cz)-1(y\\252,)-333(a)-333(Ro)-28(c)27(h)1(o)-334(im)-333(na)-333(to:)]TJ 27.879 -13.549 Td[({)-304(Bo)-304(in)1(o)-304(o\\014)1(ar\\241)-304(sw)27(o)-55(j\\241)-303(i)-304(cie)-1(r)1(pieni)1(e)-1(m)-304(m\\363g\\252)-304(z)-1(b)1(a)28(w)-1(i)1(\\242)-304(nar\\363)-27(d,)-304(a)-303(gdyb)29(y)-304(n)1(ie)-304(to,)-304(to)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(b)28(y)-333(z\\252y)-334(ca\\252kiem)-334(zapan)1(o)27(w)28(a\\252)-333(nad)-333(\\261w)-1(i)1(ate)-1(m)-333(i)-334(wyb)1(iera\\252)-333(dusze)-334(la)-333(s)-1(iebi)1(e)-1(.)]TJ 27.879 -13.55 Td[({)-333(Rz)-1(\\241d)1(z)-1(i)-333(on)-333(tu)-333(i)-333(tak)-333(n)1(ie)-1(ma\\252o)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-333(Grze)-1(c)28(h)-333(pan)28(u)1(je,)-333(to)-333(z)-1(\\252o\\261\\242)-334(rz\\241dzi,)-333(a)-334(to)-333(s\\241)-334(k)1(um)27(y)-333(z\\252e)-1(go!)]TJ\nET\nendstream\nendobj\n717 0 obj <<\n/Type /Page\n/Contents 718 0 R\n/Resources 716 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n716 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n721 0 obj <<\n/Length 8945      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(222)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-383(I..)1(.)-383(co)-383(tam)-383(r)1(z)-1(\\241d)1(z)-1(i,)-382(c)-1(o)-382(pan)28(u)1(je,)-383(k)28(om)28(u)-382(tam)-383(w)-1(i)1(ada,)-382(jeno)-383(to)-382(jes)-1(t)-382(p)-28(ewne,)-383(\\273e)]TJ -27.879 -13.549 Td[(nad)-332(c)-1(z\\252o)27(wiekiem)-334(z\\252a)-334(d)1(ola)-333(m)-1(a)-333(mo)-28(c)-334(sw)27(o)-55(j\\241)-333(i)-333(to)-334(cierpi)1(e)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(ada)-56(j)1(c)-1(i)1(e)-1(,)-333(z\\252o\\261)-1(\\242)-334(n)1(a)-334(d)1(z)-1(i)1(e)-1(ci)-333(w)27(as)-334(\\261lepi,)-333(b)28(y)1(\\261)-1(cie)-334(n)1(ie)-334(zgrz)-1(esz)-1(yl)1(i!...)-333(.)]TJ 0 -13.549 Td[(P)28(ostrof)1(o)27(w)28(a\\252)-400(j)1(a)-399(s)-1(ur)1(o)28(w)27(o,)-399(ale)-400(si\\246)-400(j)1(u\\273)-400(n)1(ie)-400(p)1(rz)-1(eciw)-1(i)1(\\252a,)-400(p)-27(omilkl)1(i)-400(t)1(e)-1(\\273)-400(wsz)-1(ysc)-1(y)-399(i)]TJ -27.879 -13.549 Td[(rozw)27(a\\273ali,)-333(a)-333(Szyme)-1(k)-333(p)-27(o)28(w)-1(sta\\252)-333(z)-334(mie)-1(j)1(s)-1(ca)-333(i)-334(c)28(h)28(y\\252ki)1(e)-1(m)-334(c)28(hcia\\252)-334(si\\246)-334(wyn)1(ie\\261)-1(\\242.)]TJ 27.879 -13.55 Td[({)-333(Gdzie)-334(ci)-333(tak)-333(pil)1(no?)-333({)-334(sykn)1(\\246)-1(\\252a)-333(s)-1(tar)1(a,)-333(bacz)-1(\\241ca)-334(n)1(a)-334(wsz)-1(y)1(s)-1(tk)28(o.)]TJ 0 -13.549 Td[({)-333(Na)-334(wie\\261)-334(p)-27(\\363)-56(j)1(de,)-333(gor\\241c)-334(mi\\246)-334(rozbi)1(e)-1(r)1(a...)-333({)-333(b)-28(e\\252k)28(ota\\252)-334(ze)-1(strasz)-1(on)29(y)83(.)]TJ 0 -13.549 Td[({)-333(Do)-334(Nastki)-333(ci\\246)-334(n)1(ie)-1(sie,)-333(na)-333(gz)-1(y)84(,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-298(Zabron)1(ic)-1(i)1(e)-299(to,)-298(pr)1(z)-1(ytr)1(z)-1(y)1(m)-1(acie...)-298({)-299(m\\363)28(wi\\252)-299(ostrze)-1(j)1(,)-298(ale)-299(ju)1(\\273)-299(cz)-1(ap)1(k)28(\\246)-299(c)-1(i)1(s)-1(n)1(\\241\\252)-299(na)]TJ -27.879 -13.549 Td[(skrzyni)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-453(Do)-453(c)27(ha\\252u)1(p)28(y)-453(id)1(\\271)-1(ta)-453(z)-454(J\\246dr)1(z)-1(y)1(c)27(hem,)-453(dom)-454(n)1(a)-453(b)-28(oskiej)-453(Op)1(atrzno\\261c)-1(i)-453(zos)-1(ta\\252,)]TJ -27.879 -13.55 Td[(za)-56(jr)1(z)-1(y)1(jcie)-388(d)1(o)-388(k)1(r\\363)28(w)-388(i)-387(cz)-1(ek)56(a)-56(j)1(c)-1(ie,)-387(pr)1(z)-1(y)1(jd\\246)-387(p)-28(o)-387(w)28(as)-388(i)-387(r)1(az)-1(em)-388(d)1(o)-388(k)28(o\\261c)-1(i)1(o\\252a)-388(p)-27(\\363)-56(j)1(dziem)27(y)84(.)]TJ 0 -13.549 Td[({)-349(Zar)1(z)-1(\\241d)1(z)-1(i\\252a,)-348(ale)-349(c)27(h)1(\\252opaki)-348(w)27(ol)1(a\\252)-1(y)-348(p)-27(oz)-1(osta\\242)-349(ni\\271li)-348(w)-349(pu)1(s)-1(tej)-348(c)27(h)1(a\\252)-1(u)1(pi)1(e)-350(siedzie\\242)-1(;)-348(nie)]TJ 0 -13.549 Td[(wygani)1(a\\252a)-334(ic)28(h)-333(te\\273)-334(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-333(ale)-334(si\\246)-334(zaraz)-334(p)-27(o)-28(d)1(nies)-1(\\252a)-333(i)-333(w)-1(zi\\246\\252a)-334(ze)-334(sto\\252u)-333(op\\252atek.)]TJ 27.879 -13.549 Td[({)-324(Wi)1(te)-1(k)1(,)-324(zapal)-324(l)1(atark)28(\\246,)-324(d)1(o)-324(kr\\363)28(w)-324(p)-27(\\363)-56(j)1(dzie)-1(m)28(y)83(.)-323(W)-324(t\\246)-324(n)1(o)-28(c)-324(Naro)-28(d)1(z)-1(enia)-323(i)-324(k)56(a\\273)-1(d)1(e)]TJ -27.879 -13.549 Td[(b)28(yd)1(l\\241tk)28(o)-287(rozumie)-287(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(\\241)-287(mo)28(w)27(\\246,)-287(i)-287(p)1(rz)-1(em\\363)27(wi\\242)-287(jest)-287(z)-1(d)1(olne,)-287(\\273e)-288(to)-287(mi\\246dzy)-287(niemi)]TJ 0 -13.55 Td[(P)28(an)-337(s)-1(i\\246)-338(n)1(aro)-28(dzi\\252.)-338(K)1(to)-338(ino)-338(b)-27(ez)-1(gr)1(z)-1(es)-1(zn)28(y)-338(zagadn)1(ie)-339({)-337(lud)1(z)-1(ki)1(m)-339(g\\252ose)-1(m)-338(o)-28(d)1(p)-28(o)28(wiedz\\241;)]TJ 0 -13.549 Td[(r\\363)28(wne)-329(s)-1(\\241)-329(d)1(z)-1(i)1(s)-1(ia)-55(j)-329(l)1(udziom)-329(i)-329(sp)-28(o\\252ec)-1(zni)1(e)-330(z)-329(niemi)-329(c)-1(zuj)1(\\241c)-1(e,)-329(wi\\246c)-330(i)-329(op)1(\\252atkiem)-329(trza)-329(s)-1(i\\246)]TJ 0 -13.549 Td[(z)-334(n)1(ie)-1(mi)-333(p)-27(o)-28(dzieli\\242...)]TJ 27.879 -13.549 Td[(Rusz)-1(y)1(li)-333(ws)-1(zys)-1(cy)-333(do)-333(ob)-27(ory)83(,)-333(a)-333(Wit)1(e)-1(k)-333(ze)-334(\\261)-1(wiat\\252em)-334(p)1(rz)-1(o)-27(dem)-1(.)]TJ 0 -13.549 Td[(Kr)1(o)27(wy)-490(le\\273)-1(a\\252y)-490(r)1(z)-1(\\246dem)-491(ob)-27(ok)-490(sie)-1(b)1(ie)-491(i)-490(p)1(rze)-1(\\273u)28(w)28(a\\252)-1(y)-490(gl)1(am)-1(i)1(\\241c)-491(p)-27(o)27(w)28(oli,)-490(al)1(e)-491(na)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(at\\252o)-368(i)-368(g\\252osy)-368(j\\246\\252y)-368(p)-27(os)-1(t\\246kiw)28(a\\242,)-368(z)-1(b)1(iera\\242)-368(s)-1(i\\246)-368(ci\\246\\273)-1(k)28(o)-368(d)1(o)-368(p)-28(o)28(wsta)27(w)28(ani)1(a)-368(a)-368(o)-28(d)1(w)-1(r)1(ac)-1(a\\242)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kie,)-333(ogromne)-334(\\252b)28(y)84(.)]TJ 27.879 -13.549 Td[({)-480(T)28(y\\261)-480(gos)-1(p)-27(o)-28(d)1(yni\\241,)-479(Jagu\\261,)-480(to)-479(pra)28(w)28(o)-480(t)28(w)27(o)-55(je)-480(rozdzieli\\242)-480(m)-1(i)1(\\246)-1(d)1(z)-1(y)-480(wsz)-1(y)1(s)-1(tki)1(e)-1(.)]TJ -27.879 -13.549 Td[(Darzy\\242)-445(ci)-445(si\\246)-445(b)-27(\\246)-1(d)1(\\241)-445(lepi)1(e)-1(j)-444(i)-444(nie)-445(c)28(horo)28(w)28(a\\242)-1(;)-444(jeno)-444(ju)1(tro)-444(rano)-444(doi\\242)-445(n)1(ie)-445(mo\\273)-1(n)1(a,)-445(a\\273)]TJ 0 -13.549 Td[(wiec)-1(zorem)-1(,)-333(straci\\252yb)28(y)-333(mle)-1(k)28(o.)]TJ 27.879 -13.55 Td[(Jagn)1(a)-257(p)-28(o\\252ama\\252a)-257(op\\252atek)-257(na)-257(p)1(i\\246\\242)-258(cz)-1(\\246\\261)-1(ci)-257(i)-257(p)1(rzyc)27(h)28(y)1(la)-56(j)1(\\241c)-258(si\\246)-257(nad)-256(k)55(a\\273d\\241)-257(k)1(ro)28(w)27(\\241,)]TJ -27.879 -13.549 Td[(cz)-1(yn)1(i\\252a)-227(krzy\\273)-228(\\261wi\\246)-1(t)28(y)-227(mi\\246dzy)-227(rogami,)-227(a)-227(w)-1(t)28(yk)56(a\\252a)-227(p)-27(o)-228(k)56(a)28(w)27(a\\252k)1(u)-227(w)-228(g\\246bu)1(le)-1(,)-227(n)1(a)-227(s)-1(ze)-1(r)1(okie,)]TJ 0 -13.549 Td[(ostre)-334(ozory)84(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)28(on)1(iom)-334(to)-333(n)1(ie)-334(dacie?)-334({)-333(z)-1(agad)1(n\\246\\252a)-334(J\\363zk)56(a.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)28(y)1(\\252)-1(o)-333(ic)28(h)-333(w)-334(on)28(y)1(m)-334(c)-1(zasie)-334(pr)1(z)-1(y)-333(Nar)1(o)-28(dze)-1(n)1(iu,)-333(to)-333(ni)1(e)-334(mo\\273)-1(n)1(a.)]TJ 0 -13.55 Td[(W)84(rac)-1(al)1(i)-333(do)-333(iz)-1(b)29(y)83(,)-333(a)-333(Ro)-28(c)27(h)-333(m\\363)28(w)-1(i)1(\\252:)]TJ 0 -13.549 Td[({)-362(Ku)1(\\273)-1(d)1(e)-363(st)28(w)27(or)1(z)-1(enie,)-362(tr)1(a)27(wk)56(a)-362(ku)1(\\273)-1(d)1(a,)-362(c)27(h)1(o)-28(\\242b)28(y)-362(i)-362(ta)-361(na)-56(j)1(marni)1(e)-1(j)1(s)-1(za,)-362(k)56(am)27(u)1(s)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(na)-55(jmni)1(e)-1(j)1(s)-1(zy)83(,)-260(na)28(w)28(e)-1(t)-261(t)1(a)-261(gwiaz)-1(d)1(a)-261(ledwie)-261(d)1(o)-56(jr)1(z)-1(an)1(a)-261({)-261(wsz)-1(ystk)28(o)-261(d)1(z)-1(isia)-55(j)-261(czuje,)-261(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(k)28(o)-333(w)-1(i)1(e)-1(,)-333(\\273e)-334(P)28(an)-333(si\\246)-334(n)1(aro)-28(d)1(z)-1(i\\252.)]TJ 27.879 -13.549 Td[({)-340(Jez)-1(u)1(s)-341(k)28(o)-27(c)27(han)28(y)1(!)-340(Wsz)-1(ystk)28(o!)-340(T)84(o)-340(i)-340(ta)-340(z)-1(i)1(e)-1(mia,)-340(i)-339(te)-341(k)56(amienie!)-340({)-340(wykr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagn)1(a.)]TJ 27.879 -13.55 Td[({)-435(Pr)1(a)27(wd)1(\\246)-436(rze)-1(k\\252em,)-435(tak)-435(c)-1(i)-435(to)-435(i)-435(jest)-436({)-435(ws)-1(zystk)28(o)-435(m)-1(a)-435(sw)27(o)-55(j\\241)-435(du)1(s)-1(z\\246)-1(.)-435(Co)-435(ino)]TJ -27.879 -13.549 Td[(jest)-386(na)-385(\\261)-1(wiec)-1(i)1(e)-1(,)-385(c)-1(zuj)1(\\241c)-1(em)-386(jes)-1(t)-385(i)-386(n)1(a)-386(sw)27(o)-55(j\\241)-385(go)-28(dzin\\246)-386(cz)-1(ek)56(a,)-386(a\\273)-386(Jez)-1(u)1(s)-386(s)-1(i)1(\\246)-386(z)-1(mi\\252uj)1(e)-386(i)]TJ 0 -13.549 Td[(rze)-1(k)1(nie:)-406(\\377)27(W)1(s)-1(ta\\253)1(,)-407(d)1(usz)-1(o,)-406(o\\273)-1(y)1(j,)-406(z)-1(as\\252ugu)1(j)-407(si\\246)-407(n)1(ie)-1(b)1(a!\")-406(B)-1(o)-406(i)-407(r)1(obacz)-1(ek)-407(n)1(a)-56(j)1(m)-1(n)1(iejsz)-1(y)84(,)]TJ 0 -13.549 Td[(i)-351(ta)-351(tr)1(a)27(wk)56(a)-351(c)27(h)28(wiejn)1(a,)-351(ws)-1(zystk)28(o)-351(s)-1(i\\246)-351(p)-27(o)-352(sw)28(o)-56(jem)27(u)-350(z)-1(as\\252ugu)1(je)-351(i)-351(p)-28(o)-351(sw)27(o)-55(jem)27(u)-350(c)27(h)28(w)28(a\\252y)]TJ 0 -13.549 Td[(P)28(a\\253)1(s)-1(ki)1(e)-1(j)-344(d)1(os)-1(t\\246pu)1(je.)-344(A)-345(w)-344(t\\246)-345(no)-27(c)-1(,)-344(jedn)1(\\241)-344(na)-344(rok)-344(c)-1(a\\252y)84(,)-344(w)-1(sz)-1(y)1(s)-1(tk)28(o)-344(si\\246)-345(p)-27(o)-28(dn)1(os)-1(i,)-344(p)1(rze)-1(-)]TJ 0 -13.55 Td[(cyk)56(a,)-409(nas\\252uc)28(h)28(uj)1(e)-1(,)-408(a)-409(cz)-1(ek)55(a)-408(te)-1(go)-408(s)-1(\\252o)28(w)27(a!)-408(Dla)-409(j)1(e)-1(d)1(n)28(yc)28(h)-409(on)1(o)-409(pr)1(z)-1(y)1(c)27(ho)-27(dzi,)-409(la)-408(dru)1(gic)27(h)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-293(nie)-293(k)28(olej,)-293(t)1(o)-293(le)-1(gn)1(\\241)-293(p)-28(ot)1(e)-1(m)-293(w)-293(m)-1(r)1(ok,)-293(cie)-1(r)1(pli)1(w)-1(i)1(e)-294(cz)-1(ek)56(a)-56(j\\241cy)-293(\\261witu,)-292(kto)-293(k)56(am)-1(i)1(e)-1(-)]TJ\nET\nendstream\nendobj\n720 0 obj <<\n/Type /Page\n/Contents 721 0 R\n/Resources 719 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 706 0 R\n>> endobj\n719 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n724 0 obj <<\n/Length 8993      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(223)]TJ -358.232 -35.866 Td[(ni)1(e)-1(m,)-389(w)27(o)-28(d)1(\\241,)-390(ziem)-1(i)1(a,)-390(d)1(rze)-1(w)28(e)-1(m,)-389(kto)-390(j)1(e)-1(sz)-1(cze)-390(c)-1(zym)-390(in)1(n)28(ym,)-390(j)1(ak)-390(t)1(am)-390(kt\\363rem)27(u)-389(P)28(an)]TJ 0 -13.549 Td[(naznaczy\\252!...)]TJ 27.879 -13.549 Td[(Zamilkli)-299(rozw)27(a\\273a)-56(j)1(\\241c)-1(,)-300(co)-300(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-299(b)-28(o)-300(m\\241dr)1(z)-1(e)-300(b)28(y\\252)-300(r)1(z)-1(ek\\252,)-300(p)1(ros)-1(t)1(o)-300(do)-300(se)-1(r)1(c)-1(a,)]TJ -27.879 -13.549 Td[(ale)-415(s)-1(i\\246)-415(to)-415(Boryn)1(ie)-416(n)1(i)-415(Dominik)28(o)28(w)28(e)-1(j)-414(nie)-415(widzia\\252o)-415(c)-1(zyst\\241)-415(pra)28(wd\\241,)-415(b)-27(o)-415(j\\241)-415(sobi)1(e)-416(w)]TJ 0 -13.549 Td[(g\\252o)28(w)-1(i)1(e)-336(p)1(rze)-1(k\\252ad)1(ali)-335(i)-334(tak,)-335(i)-334(o)28(w)27(ak,)-334(a)-335(p)-28(o)-55(j\\241\\242)-335(tego)-335(ni)1(e)-336(mogli.)-334(Ju\\261c)-1(i)1(\\242)-1(,)-335(mo)-28(c)-335(b)-27(os)-1(k)56(a)-335(j)1(e)-1(st)]TJ 0 -13.55 Td[(ni)1(e)-1(o)-28(d)1(gadn)1(iona)-326(a)-327(cuda)-326(c)-1(zyn)1(i\\241c)-1(a,)-326(ale)-327(\\273)-1(eb)28(y)-326(k)56(am)-1(ieni)1(e)-327(i)-327(ws)-1(zystk)28(o)-327(d)1(usz)-1(\\246)-327(sw)27(o)-55(j\\241)-327(mia-)]TJ 0 -13.549 Td[(\\252o...)-340(ni)1(e)-341(m)-1(ogl)1(i)-341(tego)-341(wymiar)1(k)28(o)27(w)28(a\\242)-1(.)-340(I)-340(nie)-341(m)28(y\\261)-1(l)1(e)-1(li)-340(j)1(u\\273)-341(nad)-340(t)28(ym)-340(d\\252u\\273e)-1(j)1(,)-340(b)-28(o)-340(pr)1(z)-1(ysz)-1(l)1(i)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)1(o)27(wie)-333(z)-334(dzie)-1(\\242mi.)]TJ 27.879 -13.549 Td[({)-399(U)-399(o)-56(j)1(c)-1(a)-399(raze)-1(m)-399(p)-27(os)-1(iedzim)-399(i)-399(s)-1(p)-27(o\\252e)-1(m)-399(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-1(m)28(y)-399(na)-399(pasterk)28(\\246)-400({)-399(t\\252u)1(m)-1(acz)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)1(.)]TJ 27.879 -13.549 Td[({)-418(Siad)1(a)-56(j)1(c)-1(i)1(e)-1(,)-418(siada)-55(jcie)-1(.)1(..)-418(milej)-418(b)-28(\\246dzie)-419(w)-418(ku)1(pie,)-418(a)-418(to)-28(\\242)-419(wsz)-1(ystkie)-418(b)-28(\\246dziem)27(y)]TJ -27.879 -13.55 Td[(raze)-1(m,)-333(Gr)1(z)-1(eli)-333(ino)-333(b)1(rak.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-319(s)-1(r)1(ogo)-320(sp)-28(o)-55(jr)1(z)-1(a\\252a)-320(n)1(a)-320(o)-55(jca,)-320(b)-27(o)-320(si\\246)-320(jej)-319(An)28(tk)28(o)28(wie)-320(pr)1(z)-1(yp)-27(omnieli,)-319(ale)-320(b)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-334(rze)-1(c)-333(t)28(ym)-1(.)]TJ 27.879 -13.549 Td[(Ob)1(s)-1(iedl)1(i)-461(zno)28(wu)-460(\\252a)28(w)-1(y)-460(p)1(rz)-1(ed)-460(ogni)1(e)-1(m,)-460(t)27(y)1(lk)28(o)-461(P)1(ietrek)-461(osta\\252)-461(n)1(a)-461(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-460(i)]TJ -27.879 -13.549 Td[(r\\241b)1(a\\252)-261(d)1(rze)-1(w)28(o,)-260(ab)28(y)-260(n)1(ie)-261(b)1(rak\\252o)-260(opa\\252u)-260(n)1(a)-260(\\261)-1(wi\\246ta,)-260(a)-260(Witek)-260(nosi\\252)-260(nar)1(\\246)-1(cz)-1(ami)-260(i)-260(uk)1(\\252ada\\252)]TJ 0 -13.55 Td[(dr)1(w)27(a)-333(w)-334(sieni.)]TJ 27.879 -13.549 Td[({)-445(Ale)-1(,)-445(a)-445(to)-445(b)28(ym)-445(z)-1(ap)-27(omnia\\252!)-445(Dogon)1(i\\252)-446(mn)1(ie)-446(w)28(\\363)-56(jt)-445(i)-445(p)1(ros)-1(i)1(\\252,)-445(b)28(y\\261c)-1(ie,)-445(Domi-)]TJ -27.879 -13.549 Td[(ni)1(k)28(o)27(w)28(a,)-392(zaraz)-392(sz)-1(li)-391(do)-392(n)1(iej,)-392(j)1(u\\273)-392(tam)-392(kr)1(z)-1(yczy)-392(i)-392(wyd)1(z)-1(i)1(e)-1(ra)-391(s)-1(i\\246,)-392(\\273e)-392(p)-28(ewnie)-392(tej)-392(n)1(o)-28(cy)]TJ 0 -13.549 Td[(zle)-1(gn)1(ie...)]TJ 27.879 -13.549 Td[({)-340(Do)-341(k)28(o\\261cio\\252a)-341(c)28(hcia\\252am)-341(ze)-341(ws)-1(zystkimi,)-340(ale)-341(k)1(ie)-1(d)1(y)-340(m)-1(\\363)28(wicie)-1(,)-340(\\273e)-341(j)1(u\\273)-341(kr)1(z)-1(y)1(c)-1(zy)83(,)]TJ -27.879 -13.55 Td[(to)-333(p)-28(ol)1(e)-1(c\\246)-334(za)-56(jr)1(z)-1(e\\242)-1(.)-333(By\\252am)-334(r)1(ano,)-333(m)27(y)1(\\261)-1(la\\252am,)-333(\\273)-1(e)-333(jes)-1(zc)-1(ze)-334(par)1(\\246)-334(dn)1(i)-333(pr)1(z)-1(etrzym)-1(a.)]TJ 27.879 -13.549 Td[(P)28(ogad)1(a\\252a)-302(p)-28(o)-302(cic)28(h)28(u)-302(z)-302(k)28(o)28(w)27(al)1(o)27(w)28(\\241)-302(i)-302(p)-27(ob)1(ie)-1(g\\252a)-302(d)1(o)-302(c)27(h)1(orej,)-302(\\273e)-302(to)-302(zna)-56(j)1(\\241c)-1(a)-301(b)28(y\\252a)-302(na)]TJ -27.879 -13.549 Td[(c)27(h)1(orob)1(ac)27(h)-333(i)-333(niejedn)1(e)-1(go)-333(lepi)1(e)-1(j)-333(wylek)28(o)28(w)27(a\\252a)-333(ni\\271li)-333(d)1(o)-28(c)27(h)28(tor)1(y)83(.)]TJ 27.879 -13.549 Td[(A)-416(Ro)-28(c)28(ho)-416(j)1(\\241\\252)-416(op)-27(o)27(wiad)1(a\\242)-416(histori)1(e)-417(r)1(\\363\\273)-1(n)1(e)-1(,)-415(przygo)-28(d)1(ne)-416(n)1(a)-416(dzie\\253)-416(d)1(z)-1(i)1(s)-1(iejsz)-1(y)84(,)-416(a)]TJ -27.879 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(d)1(rugi)1(m)-1(i)-333(i)-333(tak)56(\\241:)]TJ 27.879 -13.55 Td[({)-466(\\377)-55(Da)27(wn)1(o)-466(ju)1(\\273)-467(tem)27(u)-465(b)-27(\\246)-1(d)1(z)-1(ie,)-466(b)-27(o)-466(t)28(yle)-466(rok)28(\\363)28(w,)-466(co)-466(ic)27(h)-465(jes)-1(t)-465(o)-28(d)-466(Nar)1(o)-28(dzenia,)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252op)-365(jeden,)-365(gosp)-28(o)-27(darz)-365(b)-28(ogat)28(y)84(,)-365(s)-1(ze)-1(d)1(\\252)-366(b)28(y)1(\\252)-366(sobie)-365(z)-366(jar)1(m)-1(ar)1(ku,)-365(gd)1(z)-1(ie)-365(przeda\\252)-365(par\\246)]TJ 0 -13.549 Td[(t\\246gic)27(h)-300(cio\\252k)28(\\363)28(w)-1(;)-300(tal)1(ary)-300(m)-1(i)1(a\\252)-301(dob)1(rze)-301(s)-1(c)28(ho)28(w)28(ane)-301(w)-301(c)28(holewie,)-301(k)1(ij)-300(niezgors)-1(zy)-300(w)-301(gar)1(\\261)-1(ci)]TJ 0 -13.549 Td[(i)-283(krzepki)-283(te\\273)-284(b)28(y)1(\\252)-1(,)-283(\\273e)-284(mo\\273)-1(e)-283(w)27(e)-283(w)-1(si)-283(na)-55(jmo)-28(cniejsz)-1(y)84(,)-283(ale)-284(si\\246)-284(spi)1(e)-1(sz)-1(y)1(\\252)-1(,)-283(ab)29(y)-283(prze)-1(d)-282(no)-28(c\\241)]TJ 0 -13.549 Td[(do)-256(d)1(om)27(u)-256(si\\246)-257(dosta\\242,)-256(b)-28(o)-256(p)-27(o)-28(d\\363)28(w)28(c)-1(zas)-257(z)-1(b)-27(\\363)-55(je)-257(kr)1(y\\252y)-256(s)-1(i\\246)-256(w)-257(lasac)27(h)-256(i)-256(p)-27(o)-28(cz)-1(ciwym)-257(l)1(udziom)]TJ 0 -13.55 Td[(dr)1(og\\246)-334(zas)-1(t\\246p)-28(o)28(w)28(a\\252y)83(.)]TJ 27.879 -13.549 Td[(Lato)28(w)27(\\241)-342(p)-27(or\\241)-343(m)28(usia\\252o)-343(t)1(o)-343(b)28(y\\242,)-342(b)-28(o)-342(b)-28(\\363r)-342(b)29(y\\252)-343(zie)-1(l)1(on)28(y)83(,)-342(p)1(ac)27(hn)1(\\241c)-1(y)-342(i)-342(\\273)-1(y)1(w)-1(y)1(m)-1(i)-342(g\\252o-)]TJ -27.879 -13.549 Td[(sam)-1(i)-329(rozbr)1(z)-1(mia\\252y)84(,)-329(a)-330(wiater)-329(b)28(y\\252)-329(du)1(\\273)-1(y)84(,)-329(to)-329(drzew)-330(a)-329(s)-1(i)1(\\246)-330(k)28(o\\252ys)-1(a\\252y)-329(i)-329(sz)-1(u)1(m)-330(srogi)-329(s)-1(zed\\252)]TJ 0 -13.549 Td[(g\\363r\\241.)-308(P)28(ospi)1(e)-1(sz)-1(a\\252)-308(c)27(h)1(\\252opin)1(a,)-308(jak)-308(in)1(o)-308(m)-1(\\363g\\252,)-308(a)-308(rozgl\\241da\\252)-308(si\\246)-309(strac)27(h)1(liwie)-308(do)-28(ok)28(o\\252a,)-308(ale)]TJ 0 -13.549 Td[(ni)1(c)-266(nie)-266(d)1(o)-56(jr)1(z)-1(a\\252..)1(.)-266(c)28(ho)-56(j)1(ary)-265(ino)-265(s)-1(ta\\252y)-265(pr)1(z)-1(y)-265(c)27(ho)-55(jar)1(ac)27(h,)-265(d\\246b)28(y)-265(pr)1(z)-1(y)-265(d\\246bac)27(h)1(,)-266(sosna)-266(p)1(rzy)]TJ 0 -13.549 Td[(so\\261)-1(n)1(ie)-1(,)-353(a)-353(nigd)1(z)-1(ie)-353(\\273)-1(yw)28(e)-1(j)-353(d)1(usz)-1(y)1(;)-354(t)28(y)1(le)-354(c)-1(o)-353(te)-354(p)1(tas)-1(zysk)55(a)-353(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\252y)-354(mi\\246dzy)-353(pn)1(iam)-1(i)1(.)]TJ 0 -13.55 Td[(St)1(rac)27(h)-431(go.)-432(b)1(ra\\252)-432(coraz)-432(bar)1(dziej,)-432(b)-27(o)-432(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(i\\252)-431(k)28(o\\252)-1(o)-431(krzy\\273a)-432(pr)1(z)-1(ez)-432(taki)-432(g\\241sz)-1(cz,)]TJ 0 -13.549 Td[(gdzie)-338(s)-1(i\\246)-338(i)-338(o)-28(cz)-1(ami)-338(n)1(ie)-339(p)1(rze)-1(cisn\\241\\252,)-338(a)-338(k)28(\\246dy)-338(w\\252a\\261nie)-338(na)-55(jcz)-1(\\246\\261)-1(ciej)-338(z)-1(b)-27(\\363)-55(je)-338(nast\\246)-1(p)-27(o)28(w)27(ali)1(,)]TJ 0 -13.549 Td[(to)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(e\\273)-1(egna\\252,)-333(pacierz)-334(w)-333(g\\252os)-334(m)-1(\\363)28(wi\\252)-333(i)-333(w)-334(dy)1(rdy)-333(p)-27(obi)1(e)-1(g\\252..)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-260(s)-1(i\\246)-260(szc)-1(z\\246)-1(\\261liwie)-260(wyd)1(os)-1(ta\\252)-259(z)-260(w)-1(y)1(s)-1(oki)1(e)-1(go)-259(las)-1(u)1(,)-259(ju)1(\\273)-260(ino)-259(t\\241)-260(k)56(ar\\252o)28(w)28(at\\241)-260(so\\261)-1(n)1(in\\241)]TJ -27.879 -13.549 Td[(a)-500(ja\\252o)28(w)27(cami)-500(s)-1(i\\246)-500(pr)1(z)-1(ebiera\\252,)-500(j)1(u\\273)-501(n)1(a)28(w)27(et)-500(w)-1(i)1(dzia\\252)-500(p)-28(ola)-500(zielone,)-500(rozk)28(o\\252ys)-1(an)1(e)-1(,)-500(j)1(u\\273)]TJ 0 -13.55 Td[(m)27(u)-455(plu)1(s)-1(k)-456(sz)-1(ed\\252)-456(o)-28(d)-456(r)1(z)-1(eki,)-456(sk)28(o)28(w)-1(r)1(onki)-456(\\261pi)1(e)-1(w)28(a\\252y)83(,)-456(j)1(u\\273)-457(l)1(udzi)-456(zo)-28(c)-1(zy\\252)-456(pr)1(z)-1(y)-456(p)1(\\252)-1(u)1(gac)27(h)1(,)]TJ 0 -13.549 Td[(a)-451(n)1(a)28(w)27(et)-451(b)-27(o)-28(\\242ki)-451(j)1(ak)-451(k)1(lucz)-1(em)-451(ci\\241)-28(gn\\246\\252y)-450(na)-451(b)1(agnisk)56(a,)-451(a)-450(na)28(w)28(e)-1(t)-450(p)-28(o)-28(czu\\252)-451(z)-451(wiatr)1(e)-1(m)]TJ\nET\nendstream\nendobj\n723 0 obj <<\n/Type /Page\n/Contents 724 0 R\n/Resources 722 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n722 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n728 0 obj <<\n/Length 9643      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(224)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(sady)-439(wi\\261nio)28(w)28(e)-1(,)-439(co)-439(b)28(y\\252y)-439(k)1(w)-1(i)1(t\\252y)83(..)1(.gdy)-439(wtem)-440(z)-439(t)28(yc)27(h)-438(krz\\363)28(w)-440(ostatni)1(c)27(h)-439(wysk)28(o)-28(cz)-1(yl)1(i)]TJ 0 -13.549 Td[(zb)-28(\\363)-55(je!)-382(Dwun)1(as)-1(tu)-381(ic)28(h)-382(b)28(y)1(\\252)-1(o)-381(i)-382(ws)-1(zysc)-1(y)-382(z)-382(n)1(o\\273)-1(ami!)-382(Bron)1(i\\252)-382(si\\246)-1(,)-381(ale)-382(w)-1(n)1(e)-1(t)-381(przem)-1(ogli)1(,)]TJ 0 -13.549 Td[(a)-330(\\273)-1(e)-331(p)1(ie)-1(n)1(i\\246dzy)-331(o)-27(dda\\242)-331(p)-27(o)-330(dobr)1(o\\261)-1(ci)-330(nie)-331(c)28(hcia\\252)-331(a)-330(krzycz)-1(a\\252,)-330(to)-331(p)-27(o)28(w)27(al)1(ili)-330(go)-331(n)1(a)-331(p)1(lec)-1(y)84(,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gnietli)-316(nogami,)-316(o)-28(d)1(nie\\261li)-316(no\\273e)-317(i)-316(ju)1(\\273)-1(,)-316(ju)1(\\273)-317(mieli)-316(go)-317(\\273gn\\241\\242...)-316(a)-316(w)-1(t)1(e)-1(m)-317(sk)56(am)-1(i)1(e)-1(n)1(ie)-1(l)1(i)]TJ 0 -13.549 Td[(z)-318(nag\\252a)-317(i)-317(z)-1(ostali)-317(tak)-317(z)-318(p)-28(o)-28(d)1(ni)1(e)-1(sion)28(ymi)-317(no\\273am)-1(i)1(,)-318(zgarb)1(ie)-1(n)1(i,)-317(s)-1(r)1(o)-28(dzy)-318(a)-317(ni)1(e)-318(ruc)28(ha)-55(j\\241cy)]TJ 0 -13.55 Td[(si\\246)-266({)-265(i)-264(ws)-1(zys)-1(t)1(k)28(o)-265(s)-1(i\\246)-265(w)-265(te)-1(n)-264(mig)-265(z)-1(at)1(rz)-1(y)1(m)-1(a\\252o)-265(w)-265(miejsc)-1(u)1(...)-265(P)1(taki)-265(p)-27(o)-28(cic)27(h)1(\\252y)-265(i)-265(wisia\\252y)-265(w)]TJ 0 -13.549 Td[(p)-27(o)27(wietrzu.)1(..)-336(rzeki)-336(stan\\246\\252y)83(..)1(.)-336(s)-1(\\252o\\253)1(c)-1(e)-336(jakb)29(y)-336(z)-1(ak)1(rz)-1(ep\\252o.)1(..)-336(wiatr)-336(zmart)28(wia\\252...)-336(d)1(rze)-1(w)28(a)]TJ 0 -13.549 Td[(osta\\252y)83(,)-384(j)1(ak)-384(j)1(e)-385(b)28(y)1(\\252)-384(w)-1(i)1(c)27(her)-384(p)1(rzygi\\241\\252...)-383(z)-1(b)-27(o\\273)-1(a)-384(tak)1(\\273)-1(e...)-383(b)-28(o)-28(cian)28(y)-383(z)-1(a\\261)-384(kieb)28(y)-384(wros\\252y)-384(w)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o)-344(z)-345(r)1(oz)-1(\\252o\\273on)28(ymi)-344(s)-1(k)1(rzyd\\252ami...)-343(na)28(w)27(et)-344(ten)-344(c)27(h)1(\\252op)-344(orz\\241c)-1(y)-343(s)-1(ta\\252)-344(z)-345(p)-27(o)-28(d)1(niesion)28(ym)]TJ 0 -13.549 Td[(bat)1(e)-1(m)-334({)-333(\\261w)-1(i)1(at)-334(si\\246)-334(ca\\252y)-333(z)-1(al\\241k)1(\\252)-334(w)-333(to)-334(o)-27(c)-1(zymgnieni)1(e)-334(i)-333(s)-1(k)56(amie)-1(n)1(ia\\252!)]TJ 27.879 -13.549 Td[(Jak)-292(to)-292(d)1(\\252ugo)-292(b)28(y)1(\\252)-1(o,)-291(nie)-292(wiadomo)-292({)-292(a\\273)-293(r)1(oz)-1(l)1(e)-1(g\\252)-292(si\\246)-293(n)1(ad)-292(zie)-1(mi\\241)-292(an)1(iels)-1(ki)-291(\\261)-1(p)1(ie)-1(w:)]TJ 0 -13.55 Td[(B\\363g)-334(si\\246)-334(r)1(o)-28(dzi,)-333(mo)-28(c)-334(tr)1(uc)27(h)1(le)-1(j)1(e)-1(!)]TJ 0 -13.549 Td[(Rusz)-1(y)1(\\252o)-455(si\\246)-455(zaraz)-455(wsz)-1(ystk)28(o,)-454(ale)-455(zb)-27(\\363)-56(je)-454(p)-28(on)1(ie)-1(c)28(hali)-454(c)28(h\\252opa)-454(wid)1(z)-1(\\241c)-455(w)-454(t)28(ym)]TJ -27.879 -13.549 Td[(cudzie)-294(p)1(rze)-1(strog\\246)-294(i)-293(razem)-294(ju)1(\\273)-294(p)-28(oszli)-293(z)-1(a)-293(t)28(ym)-1(i)-293(g\\252osam)-1(i)-293(ani)1(e)-1(lskimi)-293(do)-293(s)-1(t)1(a)-56(jenk)1(i)-294(on)1(e)-1(j)]TJ 0 -13.549 Td[(p)-27(ok\\252oni\\242)-333(s)-1(i\\246)-333(Naro)-28(d)1(z)-1(on)1(e)-1(m)28(u!)-333(W)83(r)1(az)-334(z)-334(n)1(imi,)-333(c)-1(o)-333(in)1(o)-334(\\273y\\252o)-334(n)1(a)-333(z)-1(iemi)-334(i)-333(w)-333(p)-28(o)28(wietrzu.\")]TJ 27.879 -13.549 Td[(Dziw)27(o)28(w)28(ali)-379(s)-1(i)1(\\246)-380(w)-1(i)1(e)-1(lce)-380(tem)27(u)1(,)-380(co)-380(Ro)-27(c)27(ho)-379(op)-27(o)27(wiad)1(a\\252,)-380(al)1(e)-380(p)-28(otem)-380(Boryn)1(a,)-379(to)-380(i)]TJ -27.879 -13.55 Td[(k)28(o)28(w)27(al)-333(te\\273)-334(op)-27(o)28(w)-1(i)1(adali)-333(r\\363\\273ne)-333(r\\363\\273)-1(n)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(A)-238(w)-238(k)28(o\\253cu)-238(Jagu)1(s)-1(t)28(yn)1(k)56(a,)-238(kt\\363ra)-238(ca\\252y)-238(c)-1(zas)-238(w)-239(cic)27(h)1(o\\261)-1(ci)-238(sie)-1(d)1(z)-1(i)1(a\\252a)-1(,)-237(rze)-1(k\\252a)-238(cie)-1(r)1(pk)28(o:)]TJ 0 -13.549 Td[({)-390(M)1(\\363)27(wicie,)-390(m\\363)27(wicie,)-390(a)-390(t)28(yl)1(e)-391(j)1(e)-1(st)-390(z)-390(tego,)-390(\\273e)-391(w)28(am)-390(c)-1(zas)-390(s)-1(i\\246)-390(n)1(ie)-390(d\\252u\\273y!)-390(Hal)1(e)-1(,)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(d)1(a)-309(to)-309(b)28(y\\252a,)-309(\\273)-1(e)-309(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-309(z)-309(nieba)-309(p)1(rzyc)27(h)1(o)-28(dzi\\252y)-309(opi)1(e)-1(ku)1(n)28(y)-309(r\\363\\273ne,)-309(c)-1(o)-309(b)1(ie)-1(d)1(nem)27(u)-308(i)]TJ 0 -13.549 Td[(uci\\261nion)1(e)-1(m)28(u)-333(zm)-1(ar)1(nie\\242)-334(ni)1(e)-334(da)28(w)28(a\\252)-1(y)1(!)-333(C)-1(ze)-1(m)28(u\\273)-333(te)-1(r)1(az)-334(takic)28(h)-333(nie)-333(u)28(widzi?)]TJ 27.879 -13.55 Td[(Mn)1(iej)-341(to)-341(b)1(ie)-1(d)1(y)83(,)-340(m)-1(n)1(iej)-341(mize)-1(racji)1(,)-341(mniej)-341(tego)-341(du)1(s)-1(znego)-341(skrzyb)-27(otu?...)-340(C)-1(z\\252o-)]TJ -27.879 -13.549 Td[(wiek)-345(jest)-345(jak)28(o)-344(te)-1(n)-344(ptak)-344(b)-27(e)-1(zbron)1(n)28(y)84(,)-345(n)1(a)-345(\\261)-1(wiat)-344(pu)1(s)-1(zc)-1(zon)28(y)-344({)-345(a)-345(to)-345(go)-344(jastrz\\241b,)-344(a)-345(to)]TJ 0 -13.549 Td[(go)-276(z)-1(wierz,)-276(a)-277(t)1(o)-277(g\\252\\363)-28(d)1(,)-276(a)-276(w)-277(k)28(o\\253)1(c)-1(u)-276(i)-276(ta)-276(k)28(ostuc)27(h)1(a)-276(do)-28(d)1(usi)-276({)-277(a)-276(ci)-276(pr)1(a)27(wi\\241)-276(o)-276(m)-1(i)1(\\252os)-1(ierd)1(z)-1(iu)]TJ 0 -13.549 Td[(i)-349(g\\252up)1(ie)-350(\\273yw)-1(i)1(\\241,)-349(i)-350(mani)1(\\241)-350(ob)1(ie)-1(t)1(nicam)-1(i)1(,)-350(\\273e)-350(zba)28(wie)-1(n)1(ie)-350(p)1(rzyjd)1(z)-1(ie!)-349(Pr)1(z)-1(yj)1(dzie,)-350(al)1(e)-350(An-)]TJ 0 -13.549 Td[(t)28(yc)27(h)1(ryst,)-388(i)-388(t)1(e)-1(n)-387(s)-1(pr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-388(w)-1(y)1(m)-1(ierzy)83(,)-387(te)-1(n)-387(s)-1(i\\246)-388(zm)-1(i\\252u)1(je,)-388(jak)-387(te)-1(n)-387(jastrz\\241b)-388(nad)]TJ 0 -13.55 Td[(ku)1(rcz)-1(\\241tki)1(e)-1(m.)]TJ 27.879 -13.549 Td[(P)28(or)1(w)27(a\\252)-333(s)-1(i\\246)-333(Ro)-28(c)27(h)1(o)-334(i)-333(zac)-1(z\\241\\252)-334(wielkim)-333(g\\252os)-1(em)-334(w)28(o\\252a\\242)-1(:)]TJ 0 -13.549 Td[({)-329(Nie)-330(b)1(lu\\271ni)1(j,)-329(k)28(ob)1(ie)-1(to,)-329(n)1(ie)-330(gr)1(z)-1(es)-1(z,)-329(ni)1(e)-330(s\\252)-1(u)1(c)27(h)1(a)-56(j)-329(p)-27(o)-28(d)1(m)-1(\\363)28(w)-329(diab)-27(els)-1(k)1(ic)27(h)1(,)-329(b)-28(o)-329(na)]TJ -27.879 -13.549 Td[(p)-27(ot\\246)-1(p)1(ienie)-424(s)-1(i)1(\\246)-425(wiedzies)-1(z)-424(i)-424(wiec)-1(zn)28(y)-423(o)-1(gi)1(e)-1(\\253)1(!)-424({)-424(Ale)-424(u)1(pad\\252)-424(n)1(a)-424(\\252a)28(w)27(\\246,)-424(\\252zy)-424(m)27(u)-423(zala\\252y)]TJ 0 -13.549 Td[(g\\252os)-1(,)-280(trz\\241s)-1(\\252)-281(si\\246)-281(c)-1(a\\252y)-280(z)-1(e)-281(z)-1(gr)1(oz)-1(y)-280(\\261)-1(wi\\246te)-1(j)1(,)-281(z)-281(b)-27(\\363lu)-281(n)1(ad)-281(t\\241)-280(dusz\\241)-281(z)-1(gu)1(bion)1(\\241,)-281(a)-281(gd)1(y)-281(n)1(ie)-1(co)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-356(do)-356(sie)-1(b)1(ie,)-356(z)-356(c)-1(a\\252ej)-356(mo)-28(c)-1(y)-355(du)1(s)-1(zy)-356(wierz)-1(\\241cej)-356(wyk\\252ad)1(a\\252)-357(p)1(ra)28(wd\\246)-356(i)-356(n)1(a)-356(dob)1(r\\241)]TJ 0 -13.549 Td[(dr)1(og\\246)-334(wypr)1(o)28(w)27(ad)1(z)-1(a\\252.)]TJ 27.879 -13.549 Td[(I)-333(d\\252ugo,)-333(d)1(\\252ugo)-333(m)-1(\\363)28(wi\\252,)-333(\\273)-1(e)-333(le)-1(p)1(iej)-333(i)-333(ks)-1(i)1(\\241dz)-334(n)1(a)-334(am)28(b)-28(on)1(ie)-334(n)1(ie)-334(p)-27(otra\\014)1(\\252.)]TJ 0 -13.549 Td[(A)-465(t)28(ymc)-1(zas)-1(em)-466(za\\261)-466(Witek,)-465(g\\252\\246b)-28(ok)28(o)-465(tkn)1(i\\246)-1(t)28(y)-465(s\\252o)27(w)28(ami,)-465(\\273)-1(e)-466(w)-465(no)-27(c)-466(t\\246)-466(kr)1(o)27(wy)]TJ -27.879 -13.549 Td[(mo)27(w)28(\\246)-334(lu)1(dzk)56(\\241)-334(ma)-56(j)1(\\241,)-333(w)-1(y)1(w)27(o\\252a\\252)-333(p)-28(o)-333(cic)27(h)28(u)-333(J)1(\\363z)-1(k)28(\\246)-334(i)-333(p)-27(os)-1(zli)-333(ob)-27(o)-56(j)1(e)-334(do)-333(ob)-27(ory)83(.)]TJ 27.879 -13.549 Td[(T)83(rzyma)-56(j)1(\\241c)-415(s)-1(i\\246)-415(za)-415(r)1(\\246)-1(ce)-415(i)-415(dy)1(go)-28(c)-1(z\\241c)-415(z)-1(e)-415(strac)28(h)28(u,)-414(a)-415(\\273e)-1(gn)1(a)-56(j)1(\\241c)-416(si\\246)-415(raz)-415(p)-27(o)-415(r)1(az)-1(,)]TJ -27.879 -13.55 Td[(ws)-1(u)1(n\\246li)-333(s)-1(i)1(\\246)-334(do)-333(ob)-27(ory)-333(p)-28(omi\\246dzy)-333(kro)28(wy)83(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(kl\\246kn\\246li)-500(p)1(rzy)-500(na)-55(jwi\\246ksz)-1(ej,)-500(j)1(akb)28(y)-499(przy)-500(matce)-501(ca\\252e)-1(j)-499(ob)-28(or)1(y;)-500(tc)28(h)28(u)-499(im)]TJ -27.879 -13.549 Td[(br)1(ak)28(o)28(w)27(a\\252o,)-472(dusz)-1(e)-473(si\\246)-473(trz\\246s)-1(\\252y)84(,)-473(\\252zy)-473(nab)1(iega\\252y)-473(d)1(o)-473(o)-28(cz)-1(\\363)28(w,)-473(se)-1(r)1(c)-1(a)-472(prze)-1(n)1(ik)56(a\\252)-473(strac)27(h)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(t)28(y)84(,)-296(jak)28(ob)28(y)-296(w)-296(k)28(o\\261c)-1(iele)-296(p)-28(o)-28(d)1(c)-1(zas)-297(P)29(o)-28(dn)1(ie)-1(sienia,)-295(ale)-297(d)1(uf)1(no\\261\\242)-297(s)-1(erd)1(e)-1(cz)-1(n)1(a)-296(i)-296(wiara)-296(w)]TJ 0 -13.549 Td[(ni)1(c)27(h)-333(b)28(y)1(\\252)-1(a,)-333(b)-27(o)-333(Witek)-333(nac)27(h)29(yli\\252)-333(s)-1(i)1(\\246)-334(a\\273)-334(do)-333(sam)-1(ego)-333(uc)27(h)1(a)-334(i)-333(sz)-1(epn)1(\\241\\252)-334(d)1(r\\273\\241c)-1(o:)]TJ 27.879 -13.55 Td[({)-333(Siwu)1(la,)-333(s)-1(iwu)1(la!..)1(.)]TJ 0 -13.549 Td[(Nie)-242(o)-28(d)1(rz)-1(ek\\252a)-242(n)1(i)-242(t)28(ym)-242(s\\252)-1(o)28(w)28(e)-1(m)-242(j)1(e)-1(d)1(n)28(ym,)-242(p)-27(os)-1(t\\246kiw)28(a\\252a)-242(in)1(o,)-242(\\273u\\252a,)-242(r)1(uc)27(h)1(a\\252a)-242(g\\246)-1(b)1(ul\\241)]TJ\nET\nendstream\nendobj\n727 0 obj <<\n/Type /Page\n/Contents 728 0 R\n/Resources 726 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n726 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n731 0 obj <<\n/Length 8443      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(225)]TJ -358.232 -35.866 Td[(p)-27(om)-1(l)1(as)-1(ku)1(j\\241c)-334(ozorem)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(osik)-333(si\\246)-334(j)1(e)-1(j)-333(sta\\252o,)-333(\\273)-1(e)-334(n)1(ie)-334(o)-28(d)1(p)-27(o)27(wiad)1(a,)-333(m)-1(o\\273e)-334({)-333(z)-1(a)-333(k)56(ar\\246.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(kl\\246kn\\246li)-359(p)1(rzy)-359(d)1(rugi)1(e)-1(j)-358(i)-359(zno)28(wu)-358(Witek)-359(zap)28(yta\\252,)-358(ale)-359(ju\\273)-359(z)-359(p)1(\\252)-1(acze)-1(m)-359(pr)1(a-)]TJ -27.879 -13.549 Td[(wie...)]TJ 27.879 -13.549 Td[({)-333(\\212ac)-1(iat)1(a!)-334(\\212aciata!.)1(..)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(w)27(arl)1(i)-286(ob)-27(o)-56(j)1(e)-287(d)1(o)-286(jej)-285(p)28(ysk)55(a,)-285(s)-1(\\252u)1(c)27(hal)1(i)-286(z)-286(z)-1(amar\\252ym)-286(tc)28(hem)-1(,)-285(ale)-286(nic)-286(n)1(ie)-286(us\\252y-)]TJ -27.879 -13.549 Td[(sz)-1(eli,)-333(ani)-333(s\\252o)27(w)28(a,)-333(ni)1(c)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-367(G)1(rz)-1(e\\261ni\\261m)27(y)-366(p)-28(ewnie,)-367(to)-366(nie)-367(u)1(s)-1(\\252ysz)-1(y)1(m)27(y)84(,)-367(in)1(o)-367(b)-27(e)-1(zgrze)-1(sz)-1(n)29(ym)-367(o)-28(dp)-27(o)28(wiada)-55(j\\241,)]TJ -27.879 -13.549 Td[(a)-333(m)27(y)-333(grze)-1(szne)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-344(Pra)28(wda,)-344(J\\363zia,)-344(pr)1(a)28(w)-1(d)1(a,)-344(grze)-1(sz)-1(n)1(e)-345(m)27(y)84(,)-344(grze)-1(sz)-1(n)1(e)-1(.)1(..)-344(M\\363)-56(j)-344(J)1(e)-1(zus...)-344(pr)1(a)28(w)-1(d)1(a...)]TJ -27.879 -13.549 Td[(ju)1(\\261)-1(ci,)-279(wz)-1(i\\241\\252em)-280(gos)-1(p)-27(o)-28(d)1(arzo)27(wi)-279(p)-28(ostron)1(e)-1(cz)-1(k)1(i...)-279(a)-280(i)-279(ten)-280(r)1(z)-1(em)-1(i)1(e)-1(\\253)-279(stary)84(...)-279(a)-280(i)-279(te)-1(..)1(.)-280({)-279(nie)]TJ 0 -13.55 Td[(m\\363g\\252)-355(m\\363)28(w)-1(i)1(\\242)-355(wi\\246)-1(ce)-1(j)1(,)-354(p\\252acz)-355(go)-355(c)28(h)28(yci\\252,)-354(\\273)-1(al)-354(i)-354(to)-354(p)-28(o)-28(czucie)-355(win)28(y)84(,)-354(\\273)-1(e)-355(a\\273)-355(si\\246)-355(zanosi\\252,)-354(a)]TJ 0 -13.549 Td[(J\\363zk)55(a)-346(te\\273)-347(m)28(u)-346(s)-1(erd)1(e)-1(cz)-1(n)1(ie)-347(wt\\363r)1(o)27(w)28(a\\252a,)-346(i)-346(tak)-346(p\\252ak)56(ali)-346(sp)-28(o\\252em,)-346(nie)-346(m)-1(og\\241c)-346(s)-1(i\\246)-346(utu)1(li\\242,)]TJ 0 -13.549 Td[(a\\273)-334(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ieli)-333(pr)1(z)-1(ed)-333(sob\\241)-333(przew)-1(i)1(n)28(y)-333(s)-1(w)28(o)-56(j)1(e)-334(a)-334(gr)1(z)-1(ec)27(h)28(y)-333(wsz)-1(ystki)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Ale)-376(w)-377(izbi)1(e)-377(ni)1(kt)-376(nie)-376(s)-1(p)-27(ostrze)-1(g\\252)-376(ic)27(h)-375(brak)1(u,)-376(\\261piew)27(al)1(i)-376(te)-1(r)1(az)-377(p)1(ie)-1(\\261ni)-376(p)-27(ob)-27(o\\273)-1(n)1(e)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(to)-333(nie)-334(cza)-1(s)-333(przed)-333(p)-28(\\363\\252n)1(o)-28(c)27(ki)1(e)-1(m)-333(na)-333(k)28(ol\\246)-1(d)1(y)83(.)]TJ 27.879 -13.55 Td[(Na)-403(d)1(rugiej)-402(z)-1(a\\261)-403(s)-1(tr)1(onie)-403(m)27(y)1(\\252)-403(s)-1(i\\246)-403(i)-403(p)1(uco)28(w)27(a\\252)-403(do)-402(c)-1(zys)-1(t)1(a)-403(Pietrek)-403(a)-403(p)1(rz)-1(ebi)1(e)-1(r)1(a\\252)]TJ -27.879 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m,)-333(b)-27(o)-334(m)28(u)-333(Jagna)-333(no)28(w)28(e)-334(pr)1(z)-1(y)28(ob)1(lec)-1(ze)-1(n)1(ie)-1(,)-333(kt)1(\\363re)-334(mia\\252)-333(w)-334(k)28(omorze)-1(,)-333(wyni)1(e)-1(s\\252a.)]TJ 27.879 -13.549 Td[(A\\273)-411(k)1(rz)-1(y)1(kn\\246li)-410(z)-411(p)-27(o)-28(d)1(z)-1(iwu)1(,)-410(gdy)-410(ws)-1(ze)-1(d)1(\\252)-411(p)-27(otem)-411(d)1(o)-411(i)1(z)-1(b)28(y;)-410(p)-27(ozb)28(y\\252)-410(s)-1(i\\246)-410(b)-28(o)28(wiem)]TJ -27.879 -13.549 Td[(sz)-1(yn)1(e)-1(l)1(a)-334(i)-333(t)28(yc)27(h)-332(s)-1(o\\252dac)28(kic)28(h)-333(ub)1(ie)-1(r)1(\\363)27(w,)-333(a)-333(s)-1(tan)1(\\241\\252)-334(p)1(rzybr)1(an)28(y)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(p)-27(o)-333(c)27(h\\252op)1(s)-1(ku)1(.)]TJ 27.879 -13.549 Td[({)-373(\\221mieli)-373(s)-1(i\\246)-373(z)-1(e)-373(m)-1(n)1(ie)-1(,)-373(b)1(ur)1(kiem)-374(pr)1(z)-1(ez)-1(y)1(w)27(ali)1(,)-374(t)1(om)-374(s)-1(i)1(\\246)-374(i)-373(pr)1(z)-1(eo)-28(dzia\\252!)-373({)-373(w)-1(y)1(b)-28(e\\252-)]TJ -27.879 -13.55 Td[(k)28(ota\\252.)]TJ 27.879 -13.549 Td[({)-333(Mo)28(w)27(\\246)-333(o)-28(dmie\\253;)-333(ni)1(e)-334(s)-1(zmat)27(y)1(!)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252a)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-333(Sama)-334(m)28(u)-333(p)-27(o)27(wr\\363)-27(c)-1(i,)-333(sama,)-334(b)-27(o)-333(du)1(s)-1(zy)-333(w)-1(i)1(dn)1(o)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-334(straci\\252)-333(c)-1(a\\252ki)1(e)-1(m.)]TJ 0 -13.549 Td[({)-333(Pi\\246\\242)-334(rok)28(\\363)28(w)-333(w)27(e)-334(\\261wie)-1(cie)-334(b)29(y\\252,)-333(m)-1(o)28(wy)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(n)1(ie)-334(s\\252ys)-1(za\\252,)-333(to)-333(i)-334(n)1(ie)-334(d)1(z)-1(i)1(w)27(ota!.)1(..)]TJ 0 -13.549 Td[(Umilkl)1(i)-456(n)1(araz,)-456(b)-27(o)-455(os)-1(tr)1(y)83(,)-455(pr)1(z)-1(enik)1(liwy)-455(g\\252os)-456(s)-1(ygn)1(atur)1(ki)-455(przedzie)-1(r)1(a\\252)-456(si\\246)-456(do)]TJ -27.879 -13.55 Td[(izb)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Sygn)29(uj\\241)-333(n)1(a)-334(p)1(as)-1(terk)28(\\246,)-333(trza)-334(si\\246)-334(n)1(am)-334(zbiera\\242!)]TJ 0 -13.549 Td[(Jak)28(o\\273)-233(w)-233(p)1(ac)-1(ierz)-233(mo\\273)-1(e)-233(wysz)-1(li)-232(ws)-1(zysc)-1(y)84(,)-233(p)1(r\\363)-28(cz)-233(Jagust)28(ynk)1(i,)-233(k)1(t\\363ra)-233(osta\\252a)-233(d)1(om)27(u)]TJ -27.879 -13.549 Td[(pi)1(lno)28(w)28(a\\242)-1(,)-333(a)-333(g\\252\\363)27(wn)1(ie)-1(,)-333(b)28(y)-333(d)1(a\\242)-334(fol)1(g\\246)-334(uci\\261nion)1(e)-1(m)28(u)-333(s)-1(ercu.)]TJ 27.879 -13.549 Td[(No)-28(c)-334(b)29(y\\252a)-334(mro\\271na,)-333(r)1(oz)-1(iskrzona)-333(gwiazdami,)-333(m)-1(o)-27(dra)28(w)28(a.)]TJ 0 -13.55 Td[(Sy)1(gnatu)1(rk)56(a)-396(w)27(ci\\241\\273)-396(dzw)27(on)1(i\\252a)-396(i)-396(j)1(ak)28(o)-396(ten)-396(p)1(tas)-1(ze)-1(k)-395(\\261)-1(wiergota\\252a)-396(zw)27(o\\252u)1(j\\241cy)-396(do)]TJ -27.879 -13.549 Td[(k)28(o\\261c)-1(io\\252a.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-246(te\\273)-247(j)1(u\\273)-246(wyc)27(h)1(o)-28(dzi\\252)-246(z)-246(c)27(h)1(a\\252up,)-245(gdzieniegdzie)-246(ot)27(wieran)29(ym)-1(i)-245(dr)1(z)-1(wiami)-246(lu)1(-)]TJ -27.879 -13.549 Td[(n\\241\\252)-305(p)-27(otok)-305(\\261)-1(wiat)1(\\252)-1(a)-305(i)-305(zamigota\\252)-305(jak)-305(b\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-1(a,)-305(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-305(gas)-1(\\252y)-305(okn)1(a,)-305(cz)-1(ase)-1(m)]TJ 0 -13.549 Td[(g\\252os)-360(j)1(aki\\261)-359(si\\246)-360(p)-27(o)-28(d)1(ni\\363s\\252)-359(w)-359(m)-1(r)1(ok)55(ac)28(h,)-359(k)56(asz)-1(el,)-359(skrzyp)-358(\\261)-1(n)1(ie)-1(gu)-358(p)-27(o)-28(d)-359(n)1(ogam)-1(i)1(,)-359(to)-359(s\\252o)27(w)28(o)]TJ 0 -13.549 Td[(Bo\\273)-1(e,)-440(kt\\363rym)-440(s)-1(i\\246)-441(p)-27(ozdra)28(wiali)1(,)-441(a)-440(c)-1(or)1(az)-441(g\\246)-1(\\261cie)-1(j)-440(ma)-56(j)1(ac)-1(ze)-1(l)1(i)-441(w)-440(te)-1(j)-440(szaromo)-28(dra)28(w)28(e)-1(j)]TJ 0 -13.55 Td[(no)-27(c)-1(y)84(,)-333(t\\252umam)-1(i)-333(w)28(alili)1(,)-333(\\273)-1(e)-334(i)1(no)-333(tup)-27(ot)-333(n\\363g)-333(rozle)-1(ga\\252)-333(s)-1(i)1(\\246)-334(w)-334(suc)28(h)28(ym)-334(p)-27(o)28(wie)-1(t)1(rz)-1(u)1(.)]TJ 27.879 -13.549 Td[(Kto)-328(b)29(y\\252)-328(\\273)-1(y)1(w)-1(,)-327(do)-328(k)28(o\\261c)-1(io\\252a)-328(ci\\241)-28(gn)1(\\241\\252,)-328(os)-1(t)1(a\\252)-1(y)-327(ino)-328(p)-27(o)-328(c)27(h)1(a\\252up)1(ac)27(h)-327(c)-1(a\\252kiem)-328(s)-1(tar)1(e)-1(,)]TJ -27.879 -13.549 Td[(c)27(h)1(ore)-334(al)1(b)-28(o)-333(k)56(ale)-1(k)1(i.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-296(z)-295(dal)1(e)-1(k)56(a)-295(widn)1(ia\\252y)-295(r)1(oz)-1(gor)1(z)-1(a\\252e)-295(okna)-295(k)28(o\\261cie)-1(l)1(ne)-295(i)-295(g\\252\\363)28(wne)-295(drzwi)-295(n)1(a)-295(rozc)-1(ie\\273)]TJ -27.879 -13.549 Td[(wyw)28(arte,)-347(a)-348(\\261wiat\\252em)-348(bu)1(c)27(h)1(a)-56(j)1(\\241c)-1(e,)-347(nar)1(\\363)-28(d)-347(za\\261)-348(p\\252y)1(n\\241\\252)-347(pr)1(z)-1(ez)-348(ni)1(e)-348(i)-347(p)1(\\252yn\\241\\252)-347(jak)-347(w)28(o)-28(d)1(a,)]TJ 0 -13.55 Td[(z)-313(w)28(oln)1(a)-313(zap)-27(e)-1(\\252ni)1(a)-56(j)1(\\241c)-313(wn\\246trze)-1(,)-312(p)1(rzys)-1(tr)1(o)-56(j)1(one)-313(w)-312(jo)-27(d\\252y)-312(i)-312(\\261w)-1(i)1(e)-1(r)1(ki,)-312(\\273e)-313(jak)1(b)28(y)-312(g\\246)-1(st)28(y)-312(b)-27(\\363)-1(r)]TJ 0 -13.549 Td[(wyr\\363s\\252)-331(w)-331(k)28(o\\261c)-1(iele,)-331(tu)1(li\\252)-331(si\\246)-331(d)1(o)-331(bia\\252y)1(c)27(h)-330(\\261)-1(cian,)-330(obr)1(as)-1(ta\\252)-330(o\\252)-1(t)1(arz)-1(e,)-330(z)-332(\\252a)28(w)-331(si\\246)-331(wynosi\\252)]TJ\nET\nendstream\nendobj\n730 0 obj <<\n/Type /Page\n/Contents 731 0 R\n/Resources 729 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n729 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n734 0 obj <<\n/Length 10019     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(226)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(i)-352(p)1(ra)28(w)-1(i)1(e)-353(si\\246ga\\252)-353(cz)-1(u)1(bami)-352(sklepie\\253,)-352(a)-352(c)28(h)28(wia\\252)-352(s)-1(i)1(\\246)-353(i)-352(k)28(o\\252ysa\\252)-352(p)-28(o)-27(d)-352(nap)-27(orem)-352(te)-1(j)-351(\\273)-1(yw)28(e)-1(j)]TJ 0 -13.549 Td[(fal)1(i,)-325(i)-326(p)1(rzys\\252)-1(an)1(ia\\252)-326(mg\\252\\241,)-325(par)1(am)-1(i)-325(o)-28(d)1(dec)27(h\\363)28(w,)-325(z)-1(za)-326(k)1(t\\363ryc)28(h)-325(le)-1(d)1(wie)-326(m)-1(i)1(gota\\252y)-326(j)1(arz\\241c)-1(e)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252a)-334(o\\252tar)1(z)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-333(nar\\363)-27(d)-333(w)27(ci\\241\\273)-334(j)1(e)-1(sz)-1(cze)-334(nad)1(c)27(ho)-27(dzi\\252)-334(i)-333(p)1(\\252yn\\241\\252)-333(b)-28(ez)-334(k)28(o\\253)1(c)-1(a..)1(.)]TJ 0 -13.549 Td[(Nadesz)-1(li)-412(h)28(u)1(rm\\241)-413(ca\\252\\241)-413(a\\273)-413(z)-413(P)28(oln)29(yc)27(h)-412(Rud)1(e)-1(k)1(,)-413(a)-412(s)-1(zli)-412(rami\\246)-413(w)-413(r)1(am)-1(i)1(\\246)-1(,)-412(os)-1(tr)1(o)-413(i)]TJ -27.879 -13.55 Td[(ci\\246)-1(\\273k)28(o,)-389(b)-28(o)-389(c)27(h)1(\\252)-1(op)29(y)-390(b)29(y\\252y)-390(ogr)1(om)-1(n)1(e)-1(,)-389(rozros\\252e)-1(,)-389(w)-390(gr)1(anato)28(w)27(e)-390(k)56(ap)-27(ot)-389(c)-1(o)-389(do)-390(j)1(e)-1(d)1(nej,)-389(w)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(\\363)-56(j)1(n)28(yc)28(h)-333(z)-1(ap)1(as)-1(ac)28(h)-333(i)-334(w)-333(c)-1(zep)-28(cac)27(h)-333(p)-27(o)-28(okr)1(\\246)-1(can)28(yc)28(h)-333(w)-334(cz)-1(erw)28(one)-334(c)28(h)28(ust)28(y)83(.)]TJ 27.879 -13.549 Td[(Nadci\\241)-28(gal)1(i)-250(z)-250(rzadk)56(a,)-249(k)55(ap)1(ani)1(n\\241,)-249(p)-28(o)-250(d)1(w)27(\\363)-27(c)27(h,)-249(p)-27(o)-250(trzec)27(h)-249(i)-250(ci)-250(z)-250(Mo)-27(dli)1(c)-1(y)84(,)-250(c)27(h)1(e)-1(r)1(laki)]TJ -27.879 -13.549 Td[(i)-244(mize)-1(rot)1(a)-245(sama;)-244(w)-245(\\252atan)29(yc)27(h)-244(siwyc)27(h)-243(k)56(ap)-28(otac)28(h,)-244(z)-244(kijami,)-244(b)-27(o)-244(na)-244(p)1(ie)-1(c)28(h)28(t)28(y)-244(w)28(\\246)-1(d)1(ro)28(w)27(ali)1(;)]TJ 0 -13.549 Td[(p)-27(o)-308(k)56(arcz)-1(mac)27(h)-307(sz)-1(\\252y)-307(o)-308(ni)1(c)27(h)-307(pr)1(z)-1(ekpi)1(e)-1(wy)-307(\\273)-1(e)-308(sam)27(ymi)-308(p)1(isk)28(orzam)-1(i)-307(s)-1(i)1(\\246)-308(\\273)-1(ywi\\241,)-307(b)-27(o)-308(to)-308(n)1(a)]TJ 0 -13.549 Td[(ni)1(s)-1(ki)1(c)27(h)-333(rol)1(ac)27(h)-333(sie)-1(d)1(z)-1(i)1(e)-1(li)1(,)-334(w\\261r\\363)-28(d)-333(b)1(\\252ot,)-333(a)-334(d)1(yme)-1(m)-333(torfo)28(wym)-333(o)-28(d)-333(ni)1(c)27(h)-333(wia\\252o.)]TJ 27.879 -13.55 Td[(I)-375(z)-376(W)84(oli)-375(n)1(adc)27(h)1(o)-28(dzi\\252)-375(nar)1(\\363)-28(d,)-375(a)-375(wiedli)-374(s)-1(i\\246)-375(c)-1(a\\252ymi)-375(f)1(am)-1(il)1(iami,)-375(jak)-375(te)-375(krze)-376(j)1(a-)]TJ -27.879 -13.549 Td[(\\252o)28(w)27(co)28(w)27(e,)-413(c)-1(o)-413(za)27(w\\273dy)-413(zw)27(art)1(\\241)-414(k)1(up\\241)-413(r)1(os)-1(n)1(\\241)-1(,)-413(n)1(iew)-1(y)1(ros\\252)-1(e,)-413(\\261re)-1(d)1(ni)1(aki)-413(s)-1(ame)-1(,)-413(a)-413(p)-27(\\246)-1(k)56(ate)]TJ 0 -13.549 Td[(kiej)-389(w)28(ory)83(,)-389(p)1(r\\246)-1(d)1(kie)-390(j)1(e)-1(d)1(nak)1(,)-390(wysz)-1(cze)-1(k)56(ane,)-389(s)-1(ieln)1(e)-390(pro)-27(c)-1(es)-1(o)28(wni)1(ki,)-389(z)-1(ab)1(ijak)1(i)-390(n)1(iem)-1(a\\252e,)]TJ 0 -13.549 Td[(a)-461(s)-1(zk)28(o)-28(dn)1(iki)-461(l)1(e)-1(\\261ne,)-461(w)-462(sz)-1(ar)1(e)-462(k)56(ap)-28(ot)28(y)-461(ze)-462(s)-1(zn)28(u)1(rami)-461(c)-1(zarn)28(ymi)-461(pr)1(z)-1(y)1(bran)1(e)-462(i)-461(pasami)]TJ 0 -13.549 Td[(cz)-1(erw)28(on)28(ymi)-333(okr\\246c)-1(eni.)]TJ 27.879 -13.55 Td[(Nadci\\241)-28(gn)1(\\246)-1(\\252a)-266(i)-267(sz)-1(l)1(ac)27(h)28(ta)-266(rze)-1(p)-27(e)-1(c)28(k)56(a,)-267(co)-267(to)-266(w)27(edle)-267(gad)1(ki:)-266(\\377)28(w)27(or)1(e)-1(k)-266(ino)-266(a)-267(p)1(\\252ac)27(h)28(ta\",)]TJ -27.879 -13.549 Td[(alb)-27(o)-395(\\273e)-395(s)-1(i)1(\\246)-395(ic)27(h)-394(pi)1(\\241c)-1(iu)-394(kr)1(o)28(w)-1(i)1(e)-1(go)-394(ogona)-395(tr)1(z)-1(y)1(m)-1(a,)-394(a)-395(w)28(e)-395(trze)-1(c)28(h)-394(jedn\\241)-394(c)-1(zapk)28(\\246)-395(ma)-56(j)1(\\241)]TJ 0 -13.549 Td[({)-356(ci)-356(szli)-356(ku)1(p\\241,)-355(milcz)-1(ki)1(e)-1(m,)-356(sp)-28(o)-27(de)-356(\\252ba)-355(patr)1(z)-1(\\241cy)-356(i)-355(z)-356(g\\363ry)83(,)-355(a)-356(k)28(ob)1(ie)-1(t)28(y)-355(s)-1(w)28(o)-56(j)1(e)-1(,)-355(jak)28(ob)29(y)]TJ 0 -13.549 Td[(dw)28(\\363rk)1(i)-347(j)1(akie)-347(wys)-1(t)1(ro)-56(j)1(one)-347(i)-346(wie)-1(l)1(c)-1(e)-347(ur)1(o)-28(dn)1(e)-1(,)-346(bi)1(a\\252e)-348(n)1(a)-347(g\\246bie,)-346(\\261)-1(wiergotli)1(w)27(e,)-347(wiedli)-346(w)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(r)1(o)-28(dku)-332(i)-334(mo)-28(cno)-333(u)28(w)28(a\\273)-1(ali)1(.)]TJ 27.879 -13.55 Td[(A)-314(z)-1(ar)1(a)-1(z)-314(p)-28(o)-314(ni)1(c)27(h)-314(w)27(al)1(ili)-314(lu)1(dzie)-315(z)-315(Pr)1(z)-1(y)1(\\252)-1(\\246k)56(a,)-314(s)-1(zli)-314(z)-1(a\\261)-315(j)1(ak)-314(te)-1(n)-314(b)-27(\\363r)-314(s)-1(osno)28(wy)-314(wy-)]TJ -27.879 -13.549 Td[(ro\\261ni)1(\\246)-1(ci,)-280(\\261)-1(migli)-280(i)-280(mo)-28(cni)1(;)-280(a)-281(p)-27(os)-1(t)1(ro)-56(j)1(e)-1(n)1(i)-280(a\\273)-281(o)-28(cz)-1(y)-280(r)1(az)-1(i\\252o;)-280(k)56(ap)-27(ot)28(y)-280(m)-1(ieli)-280(b)1(ia\\252e)-1(,)-280(k)56(amize)-1(le)]TJ 0 -13.549 Td[(cz)-1(erw)28(one)-374(w)-1(st\\246gi)-374(u)-374(k)28(osz)-1(u)1(l)-374(zie)-1(l)1(one)-374(i)-374(p)-28(or)1(tki)-374(\\273o\\252topasiaste)-375(,)-374(a)-374(p)-27(c)27(h)1(ali)-374(si\\246)-374(\\261)-1(r)1(o)-28(dki)1(e)-1(m)]TJ 0 -13.549 Td[(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iwie)-1(,)-333(n)1(ie)-334(bacz\\241c)-334(na)-333(ni)1(k)28(ogo,)-334(p)1(rze)-1(d)-333(sam)-334(o\\252tar)1(z)-1(.)]TJ 27.879 -13.549 Td[(Za)-277(n)1(imi)-276(z)-1(a\\261,)-277(p)1(ra)28(wie)-277(j)1(u\\273)-277(n)1(a)-277(ostatku)1(,)-277(j)1(ak)-276(jakie)-276(dzie)-1(d)1(z)-1(i)1(c)-1(e,)-277(wyc)28(ho)-28(d)1(z)-1(i)1(\\252y)-277(c)28(h\\252op)28(y)]TJ -27.879 -13.55 Td[(d\\246bi)1(c)27(kie,)-485(n)1(ie)-1(wiela)-485(ic)28(h)-485(b)28(y)1(\\252o,)-485(a)-485(k)56(a\\273)-1(d)1(y)-485(z)-486(osobn)1(a)-485(s)-1(zed\\252,)-485(z)-485(parad)1(\\241,)-485(a)-485(p)1(usz)-1(y\\252)-485(si\\246,)]TJ 0 -13.549 Td[(wynosi\\252)-429(i)-429(p)-27(o)-429(\\252a)27(wk)56(ac)27(h)-428(przed:)-429(wielkim)-429(o\\252tarze)-1(m)-429(z)-1(asiad)1(a\\252,)-429(i)-429(pi)1(e)-1(rwsz)-1(e\\253st)28(w)27(o)-429(b)1(ra\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-460(inn)29(ym)-1(i)1(,)-461(d)1(uf)1(n)28(y)-461(w)-460(b)-28(ogact)28(w)27(o)-460(s)-1(w)28(o)-56(j)1(e)-461({)-461(a)-461(k)28(ob)1(iet)27(y)-460(ic)28(h)-461(b)29(y\\252y)-461(z)-461(k)1(s)-1(i\\241\\273k)56(am)-1(i,)-460(w)]TJ 0 -13.549 Td[(cz)-1(ep)-28(ec)-1(zk)56(ac)27(h)-413(b)1(ia\\252yc)27(h)1(,)-413(wi\\241z)-1(an)29(yc)27(h)-413(p)-27(o)-28(d)-413(b)1(ro)-28(d)1(\\246)-1(,)-413(i)-413(w)-413(k)56(atanac)28(h)-413(z)-414(cie)-1(n)1(kiego)-413(s)-1(u)1(kna..)1(.)]TJ 0 -13.549 Td[(a)-375(p)-28(otem)-376(j)1(e)-1(sz)-1(cz)-1(e)-375(s)-1(zli)-375(z)-376(ws)-1(i)-375(d)1(als)-1(zyc)28(h,)-375(z)-376(p)1(rz)-1(y)1(s)-1(i\\363\\252k)28(\\363)28(w)-376(r)1(\\363\\273)-1(n)29(yc)27(h)1(,)-376(z)-375(dom\\363)27(w)-375(w)-376(l)1(as)-1(ac)27(h)]TJ 0 -13.55 Td[(rozs)-1(y)1(pan)28(y)1(c)27(h,)-295(z)-295(trac)28(kic)27(h)-294(bu)1(d,)-295(ze)-296(d)1(w)27(or)1(\\363)27(w,)-295(\\273e)-296(k)1(to)-295(b)28(y)-295(tam)-295(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252)-295(i)-295(wyl)1(ic)-1(zy\\252!..)1(.)]TJ 27.879 -13.549 Td[(A)-404(mi\\246dzy)-404(t)28(ym)-404(g\\241sz)-1(cz)-1(em)-404(z)-1(w)28(art)28(ym,)-404(k)28(ol)1(e)-1(b)1(i\\241c)-1(y)1(m)-405(si\\246)-404(i)-404(sz)-1(u)1(mi\\241c)-1(y)1(m)-405(j)1(ak)-404(b)-27(\\363r,)]TJ -27.879 -13.549 Td[(g\\246s)-1(to)-333(s)-1(i)1(\\246)-334(bi)1(e)-1(li)1(\\252)-1(y)-333(k)56(ap)-27(ot)28(y)-334(Li)1(p)-28(cz)-1(ak)28(\\363)28(w)-333(i)-333(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252y)-334(c)28(h)28(ust)28(y)-333(k)28(obiet.)]TJ 27.879 -13.549 Td[(Ko\\261c)-1(i)1(\\363\\252)-380(b)28(y\\252)-379(z)-1(ap)-27(c)27(h)1(an)28(y)-379(do)-379(c)-1(n)1(a,)-379(a\\273)-380(do)-379(te)-1(go)-379(os)-1(tat)1(niego)-380(miejsc)-1(a)-379(w)-380(kr)1(uc)27(h)1(c)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(kt\\363rzy)-333(b)28(yl)1(i)-334(ostatn)1(i,)-333(to)-334(j)1(u\\273)-333(na)-333(m)-1(r)1(oz)-1(ie)-333(p)-28(o)-27(d)-333(drzwiami)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-334(m)-1(\\363)28(wili)1(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-353(wys)-1(ze)-1(d)1(\\252)-354(ze)-354(msz)-1(\\241)-353(pi)1(e)-1(rwsz)-1(\\241,)-353(or)1(gan)28(y)-353(z)-1(agr)1(a\\252y)83(,)-353(a)-353(nar)1(\\363)-28(d)-353(si\\246)-354(zak)28(o\\252ys)-1(a\\252,)]TJ -27.879 -13.55 Td[(p)-27(o)-28(c)27(h)28(y)1(li\\252)-333(i)-333(na)-333(k)28(olana)-333(pad)1(\\252)-334(p)1(rze)-1(d)-333(ma)-56(j)1(e)-1(statem)-334(P)28(a\\253)1(s)-1(ki)1(m)-1(.)]TJ 27.879 -13.549 Td[(I)-300(j)1(u\\273)-300(cic)27(h)1(o)-300(b)29(y\\252o,)-300(n)1(ikt)-299(ni)1(e)-300(\\261)-1(p)1(ie)-1(w)28(a\\252,)-299(a)-300(mo)-28(dl)1(i\\252)-300(si\\246)-300(k)56(a\\273)-1(d)1(y)-299(w)-1(p)1(atrzon)28(y)-299(w)-300(ksi\\246)-1(d)1(z)-1(a)]TJ -27.879 -13.549 Td[(i)-307(w)-308(t\\246)-308(\\261w)-1(i)1(e)-1(cz)-1(k)28(\\246,)-308(co)-308(p)1(\\252on\\246\\252a)-308(wysok)28(o)-308(nad)-307(o\\252tar)1(z)-1(em)-1(,)-307(organ)29(y)-308(h)28(u)1(c)-1(za\\252y)-307(przycis)-1(zon\\241)-307(a)]TJ 0 -13.549 Td[(tak)-343(tkliw)28(\\241)-344(n)29(ut\\241,)-343(\\273)-1(e)-344(mr\\363z)-344(s)-1(zed\\252)-344(p)1(rze)-1(z)-344(k)28(o\\261c)-1(i,)-343(c)-1(zase)-1(m)-344(ksi\\241dz)-344(si\\246)-344(o)-28(d)1(w)-1(r)1(\\363)-28(ci\\252,)-344(r)1(oz)-1(k\\252a-)]TJ 0 -13.549 Td[(da\\252)-395(r)1(\\246)-1(ce)-1(,)-395(p)-27(o)28(wiada\\252)-395(w)-395(g\\252)-1(os)-395(\\252ac)-1(i)1(\\253skie)-396(\\261wi\\246te)-396(s\\252o)27(w)28(o,)-395(to)-395(nar)1(\\363)-28(d)-395(wyci\\241)-28(ga\\252)-395(ramion)1(a,)]TJ 0 -13.55 Td[(wz)-1(d)1(yc)27(h)1(a\\252)-444(g\\252\\246b)-27(ok)28(o,)-443(p)-28(o)-28(c)28(h)28(yla\\252)-443(si\\246)-444(w)-443(s)-1(k)1(rusz)-1(e)-443(p)-28(ob)-27(o\\273nej,)-443(b)1(i\\252)-444(si\\246)-443(w)-444(p)1(ie)-1(r)1(s)-1(i)-443(i)-443(mo)-28(d)1(li\\252)]TJ 0 -13.549 Td[(\\273arliwie.)]TJ\nET\nendstream\nendobj\n733 0 obj <<\n/Type /Page\n/Contents 734 0 R\n/Resources 732 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n732 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n737 0 obj <<\n/Length 9344      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(227)]TJ -330.353 -35.866 Td[(P)28(otem)-235(za\\261)-1(,)-234(gd)1(y)-234(si\\246)-235(ms)-1(za)-234(s)-1(k)28(o\\253)1(c)-1(zy\\252a,)-234(ksi\\241dz)-234(wlaz)-1(\\252)-234(na)-234(am)28(b)-28(on)1(\\246)-235(i)-234(p)1(ra)28(wi\\252)-235(d)1(\\252ugo,)]TJ -27.879 -13.549 Td[(nau)1(c)-1(za\\252)-369(o)-369(t)28(ym)-369(d)1(niu)-368(\\261w)-1(i)1(\\246)-1(t)28(ym,)-369(p)1(rze)-1(strze)-1(ga\\252)-369(p)1(rze)-1(d)-368(z)-1(\\252em)-1(,)-368(gromi\\252,)-369(r)1(\\246)-1(k)56(ami)-369(wytr)1(z)-1(\\241-)]TJ 0 -13.549 Td[(c)27(h)1(a\\252)-353(i)-352(grzm)-1(i)1(a\\252)-353(t)28(ym)-353(s\\252o)28(w)27(em)-353(pal\\241cym,{)-352(\\273)-1(e)-353(j)1(aki)-352(taki)-352(w)27(es)-1(tc)28(hn)1(\\241\\252)-353(ci\\246)-1(\\273k)28(o,)-352(kto)-353(si\\246)-353(b)1(i\\252)]TJ 0 -13.549 Td[(w)-353(piersi,)-353(kto)-353(si\\246)-353(w)-354(sumieniu)-352(z)-354(win)-353(k)56(a)-55(ja\\252,)-353(kto)-353(si\\246)-354(zame)-1(d)1(yto)28(w)27(a\\252,)-353(k)1(t\\363re)-1(n)-352(z)-1(n)1(\\363)28(w)-354(co)]TJ 0 -13.549 Td[(mi\\246)-1(t)1(s)-1(zy)83(,)-303(a)-303(k)28(obiet)28(y)-303(z)-1(w\\252as)-1(zcz)-1(a,)-303(p\\252ak)56(a\\252)-303({)-304(b)-27(o)-303(ks)-1(i)1(\\241dz)-304(m\\363)28(w)-1(i)1(\\252)-304(gor\\241co)-303(a)-304(tak)-303(m\\241dr)1(z)-1(e,)-303(\\273)-1(e)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u)-338(to)-338(s)-1(z\\252o)-339(p)1(rosto)-338(do)-338(s)-1(erca)-339(i)-338(d)1(o)-338(roz)-1(u)1(m)27(u)1(,)-338(ju)1(\\261)-1(ci,)-338(\\273)-1(e)-338(t)28(ym)-339(in)1(o,)-338(c)-1(o)-338(s\\252uc)27(h)1(ali,)-338(b)-27(o)]TJ 0 -13.549 Td[(wiela)-334(b)29(y\\252o)-334(tak)1(ic)27(h)1(,)-333(kt\\363ryc)28(h)-333(\\261)-1(p)1(ik)-333(morzy\\252)-334(z)-334(gor)1(\\241c)-1(a.)]TJ 27.879 -13.549 Td[(A)-287(dop)1(ie)-1(r)1(o)-288(p)1(rze)-1(d)-287(d)1(ru)1(g\\241)-288(msz)-1(\\241,)-287(ki)1(e)-1(j)-287(j)1(u\\273)-288(n)1(ar\\363)-28(d)-287(skr)1(usz)-1(a\\252)-287(niec)-1(o)-287(mo)-28(d)1(le)-1(n)1(iem)-288(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(h)28(u)1(kn\\246\\252y)-333(z)-1(n)1(o)27(wu)-333(or)1(gan)28(y)-333(i)-333(ks)-1(i)1(\\241dz)-334(za\\261)-1(p)1(iew)27(a\\252:)]TJ 27.879 -13.549 Td[(W)-333(\\273)-1(\\252ob)1(ie)-334(le\\273y)83(,)-333(kt\\363\\273)-334(p)-27(ob)1(ie)-1(\\273y)83(.)]TJ 0 -13.549 Td[(Nar\\363)-27(d)-270(si\\246)-270(z)-1(ak)28(o\\252ysa\\252,)-270(p)-27(o)27(wsta\\252)-270(z)-270(kl\\246c)-1(ze)-1(k,)-269(wraz)-270(te)-1(\\273)-270(p)-27(o)-28(c)27(h)28(wyci\\252)-270(n)28(u)1(t\\246)-270(i)-270(p)-27(e)-1(\\252n)28(y)1(m)-1(i)]TJ -27.879 -13.55 Td[(pi)1(e)-1(r)1(s)-1(iami,)-333(a)-333(z)-334(mo)-28(c)-1(\\241)-333(ry)1(kn\\241\\252)-333(jedn)28(y)1(m)-334(g\\252os)-1(em:)]TJ 27.879 -13.549 Td[(Kol\\246do)28(w)28(a\\242)-334(ma\\252e)-1(m)27(u)1(!)]TJ 0 -13.549 Td[(Zatrz\\246)-1(s\\252y)-368(s)-1(i)1(\\246)-369(dr)1(z)-1(ew)27(a)-368(i)-368(zadygota\\252y)-368(\\261wiat\\252a)-368(o)-28(d)-368(tej)-368(s)-1(erd)1(e)-1(cz)-1(n)1(e)-1(j)-367(w)-1(i)1(c)27(h)28(u)1(ry)-368(g\\252o-)]TJ -27.879 -13.549 Td[(s\\363)27(w.)]TJ 27.879 -13.549 Td[(I)-313(ju\\273,)-313(tak)-313(s)-1(i\\246)-313(z)-1(w)28(arli)-313(d)1(usz)-1(ami,)-313(wiar\\241)-313(i)-313(g\\252)-1(osami,)-313(\\273)-1(e)-314(j)1(akb)28(y)-313(j)1(e)-1(d)1(e)-1(n)-313(g\\252os)-314(\\261piew)28(a\\252)]TJ -27.879 -13.55 Td[(i)-478(bi\\252)-478(pie\\261)-1(n)1(i\\241)-479(ogr)1(om)-1(n)1(\\241,)-479(ze)-479(ws)-1(zys)-1(t)1(kic)27(h)-478(se)-1(r)1(c)-480(r)1(wi\\241c)-1(\\241,)-478(a\\273)-479(p)-27(o)-28(d)-478(te)-479(\\261)-1(wi\\246te)-479(n\\363\\273e)-1(cz)-1(k)1(i)]TJ 0 -13.549 Td[(Dzie)-1(ci\\241tk)56(a.)]TJ 27.879 -13.549 Td[(Gd)1(y)-411(ju\\273)-411(i)-412(d)1(ru)1(g\\241)-412(ms)-1(z\\246)-412(wys\\252uc)27(h)1(ali,)-411(organ)1(ista)-412(j)1(\\241\\252)-412(wycina\\242)-412(k)28(ol)1(\\246)-1(d)1(y)-411(na)-411(tak)55(\\241)]TJ -27.879 -13.549 Td[(sk)28(o)-28(c)-1(zn\\241)-338(n)28(ut)1(\\246)-1(,)-338(\\273)-1(e)-339(u)1(s)-1(toi)1(\\242)-339(b)28(y\\252o)-339(tr)1(ud)1(no,)-338(to)-339(si\\246)-339(kr)1(\\246)-1(cili,)-338(p)1(rz)-1(edept)28(y)1(w)27(ali)1(,)-339(o)-28(d)1(wrac)-1(al)1(i)-339(d)1(o)]TJ 0 -13.549 Td[(c)27(h)1(\\363ru)-333(i)-333(w)28(e)-1(so\\252o)-334(p)-27(okrzyki)1(w)27(ali)-333(k)28(ol)1(\\246)-1(d)1(y)-334(za)-333(organami.)]TJ 27.879 -13.55 Td[(Jeden)-254(i)1(no)-254(An)28(t)1(e)-1(k)-253(nie)-254(\\261piew)27(a\\252)-254(z)-254(d)1(rugi)1(m)-1(i,)-253(pr)1(z)-1(ysze)-1(d)1(\\252)-254(b)28(y\\252)-254(z)-254(\\273on\\241)-254(i)-253(z)-1(e)-254(St)1(ac)27(hami,)]TJ -27.879 -13.549 Td[(pu)1(\\261)-1(ci\\252)-412(i)1(c)27(h)-411(napr)1(z)-1(\\363)-27(d,)-411(a)-412(s)-1(am)-412(osta\\252)-412(p)1(rz)-1(y)-411(\\252a)28(w)-1(k)56(ac)27(h)1(,)-412(n)1(ie)-412(c)27(h)1(c)-1(ia\\252)-411(ju\\273)-412(zabiera\\242)-412(d)1(a)27(wn)1(e)-1(-)]TJ 0 -13.549 Td[(go)-381(m)-1(iejsca)-382(p)-27(omi\\246)-1(d)1(z)-1(y)-381(gosp)-28(o)-27(darzami)-382(p)1(rze)-1(d)-381(o\\252tar)1(z)-1(em)-1(,)-381(w\\252a\\261)-1(n)1(ie)-382(si\\246)-382(b)28(y)1(\\252)-382(r)1(oz)-1(gl\\241d)1(a\\252,)]TJ 0 -13.549 Td[(gdzie)-338(b)29(y)-337(przysi\\241\\261)-1(\\242,)-337(kiedy)-337(sp)-27(os)-1(tr)1(z)-1(eg\\252)-338(o)-55(jca)-338(wraz)-337(z)-338(ca\\252)-1(y)1(m)-338(domem)-1(,)-337(p)1(rze)-1(p)28(y)1(c)27(hal)1(i)-337(s)-1(i\\246)]TJ 0 -13.549 Td[(\\261ro)-28(d)1(kiem)-1(,)-333(a)-333(Jagna)-333(s)-1(z\\252a)-333(na)-333(przedzie)-1(.)]TJ 27.879 -13.55 Td[(Usun\\241\\252)-379(si\\246)-380(p)-27(o)-28(d)-379(\\261wie)-1(r)1(k)-379(i)-379(ju)1(\\273)-380(z)-380(n)1(iej)-379(ok)56(a)-380(n)1(ie)-380(spu)1(\\261)-1(ci\\252,)-379(b)-27(o)-379(w)-1(i)1(dna)-379(b)29(y\\252a)-380(z)-379(dala)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-339(w)-1(zrost,)-339(siad)1(\\252)-1(a)-338(w)-339(\\252)-1(a)28(w)28(c)-1(e)-339(z)-339(br)1(z)-1(ega)-339(z)-1(ar)1(az)-1(,)-338(przy)-339(p)1(rze)-1(j)1(\\261)-1(ciu)-338({)-339(na)28(w)28(e)-1(t)-339(n)1(ie)-339(m)27(y)1(\\261)-1(l\\241c)]TJ 0 -13.549 Td[(o)-366(t)28(ym)-367(i)-366(n)1(ie)-367(wiedz\\241c)-1(,)-366(cisn\\241\\252)-366(s)-1(i)1(\\246)-367(pr)1(z)-1(ez)-367(g\\246s)-1(t)28(w)28(\\246)-367(up)1(arcie)-1(,)-366(a\\273)-366(dosta\\252)-367(si\\246)-366(ob)-28(ok)-366(n)1(ie)-1(j)1(,)-366(a)]TJ 0 -13.549 Td[(gdy)-398(p)-28(o)-27(dcz)-1(as)-399(m)-1(szy)-399(pr)1(z)-1(yk)1(l\\246)-1(k)56(ali)1(,)-399(uk)1(l\\246)-1(k)1(n\\241\\252)-399(i)-399(tak)-398(s)-1(i)1(\\246)-400(p)1(rz)-1(y)1(c)27(h)28(yl)1(i\\252,)-399(\\273e)-400(g\\252o)28(w)28(\\241)-399(dot)28(yk)56(a\\252)]TJ 0 -13.549 Td[(jej)-333(k)28(olan)1(.)]TJ 27.879 -13.55 Td[(Nie)-231(sp)-27(os)-1(trzeg\\252)-1(a)-230(go)-230(o)-28(d)-230(razu,)-230(b)-28(o)-230(sto)-28(c)-1(ze)-1(k)1(,)-231(p)1(rzy)-230(kt\\363rym)-230(m)-1(o)-28(d)1(li\\252a)-230(s)-1(i)1(\\246)-231(na)-230(ks)-1(i)1(\\241\\273)-1(ce)-1(,)]TJ -27.879 -13.549 Td[(rozkr\\241\\273a\\252)-421(tak)-420(md\\252e)-421(\\261)-1(wiat\\252o)-420(i)-421(ga\\252\\246z)-1(i)1(e)-422(\\261wierk)28(\\363)28(w)-421(tak)-420(przys\\252ania\\252y)84(,)-421(\\273e)-421(nic)-421(p)-27(ob)-27(ok)]TJ 0 -13.549 Td[(ni)1(e)-393(d)1(o)-56(jr)1(z)-1(a\\252a,)-392(d)1(opiero)-392(w)-392(cz)-1(asie)-393(P)29(o)-28(dn)1(ies)-1(ienia,)-391(gdy)-392(u)1(kl\\246kn\\246\\252a)-392(i)-392(bi)1(j\\241c)-392(s)-1(i\\246)-392(w)-392(piersi)]TJ 0 -13.549 Td[(p)-27(o)-28(c)27(h)28(y)1(li\\252a)-348(g\\252o)28(w)27(\\246)-348({)-348(sp)-28(o)-55(jrza\\252a)-348(w)-348(b)-27(ok)-348(b)-27(e)-1(zw)-1(i)1(e)-1(d)1(nie)-348(za)-1(mar\\252o)-348(j)1(e)-1(j)-347(se)-1(rce,)-348(s)-1(k)56(amienia\\252a)-348(z)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(ci,)-327(n)1(ie)-328(\\261m)-1(i)1(a\\252a)-328(si\\246)-327(ruszy\\242)-1(,)-327(n)1(ie)-327(\\261)-1(mia\\252a)-327(s)-1(p)-27(o)-56(j)1(rze)-1(\\242)-327(p)-28(o)-327(r)1(az)-328(dr)1(ugi,)-326(b)-28(o)-327(snem)-328(si\\246)-328(j)1(e)-1(j)]TJ 0 -13.549 Td[(wyda\\252o)-333(to)-334(wid)1(z)-1(eni)1(e)-1(,)-333(m)-1(a)-55(jak)1(ie)-1(m,)-333(nicz)-1(y)1(m)-334(wi\\246)-1(cej...)-333(P)1(rz)-1(y)1(w)27(ar)1(\\252)-1(a)-333(o)-28(cz)-1(y)-333(i)-333(d\\252ugo,)-333(d)1(\\252)-1(u)1(go)]TJ 0 -13.55 Td[(kl\\246cz)-1(a\\252a)-418(p)-28(o)-28(c)28(h)28(ylon)1(a,)-418(z)-1(gi\\246ta)-418(do)-418(z)-1(iemi,)-418(niepr)1(z)-1(yt)1(om)-1(n)1(a)-419(p)1(ra)28(wie)-419(z)-1(e)-418(w)-1(zru)1(s)-1(ze)-1(n)1(ia...)-418(a\\273)]TJ 0 -13.549 Td[(usiad)1(\\252a)-334(r)1(aptem)-334(i)-333(s)-1(p)-27(o)-56(j)1(rza\\252a)-334(m)28(u)-333(pr)1(os)-1(to)-333(w)-334(t)28(w)28(arz.)]TJ 27.879 -13.549 Td[(T)83(ak,)-318(on)-319(ci)-319(to)-318(b)28(y\\252,)-319(An)29(te)-1(k)1(,)-319(on,)-318(wym)-1(i)1(z)-1(ero)28(w)27(an)29(y)-319(wielc)-1(e,)-319(p)-27(o)-28(cz)-1(ern)1(ia\\252y)83(,)-318(wyn\\246dz-)]TJ -27.879 -13.549 Td[(ni)1(a\\252y)83(,)-449(\\273)-1(e)-450(\\252ac)-1(n)1(o)-450(n)1(a)27(w)28(e)-1(t)-449(w)-450(t)28(ym)-450(mroku)-449(do)-55(jr)1(z)-1(a\\252a,)-450(a)-449(te)-450(jego)-450(wielkie,)-450(n)1(apastliw)28(e)-450(i)]TJ 0 -13.549 Td[(har)1(de)-354(o)-28(czy)-354(tak)-353(si\\246)-354(s)-1(\\252o)-27(dk)28(o)-353(patrzy\\252y)84(,)-354(a)-353(tak)-353(\\273)-1(a\\252o\\261c)-1(i)-353(b)28(y\\252y)-353(p)-27(e)-1(\\252ne,)-353(\\273)-1(e)-354(\\261c)-1(i)1(s)-1(n)1(\\246)-1(\\252a)-353(s)-1(i\\246)-354(j)1(e)-1(j)]TJ 0 -13.55 Td[(du)1(s)-1(za)-333(trw)28(og\\241)-334(i)-333(ws)-1(p)-27(\\363\\252cz)-1(u)1(c)-1(iem,)-334(a)-333(\\252zy)-334(same)-334(nap)1(\\252yw)27(a\\252y)-333(d)1(o)-334(o)-28(cz\\363)27(w.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252a)-347(szt)27(y)1(w)-1(n)1(o)-347(jak)-346(i)-347(d)1(rugie)-347(k)28(ob)1(ie)-1(t)28(y)84(,)-347(w)-347(ksi\\241\\273k)28(\\246)-348(p)1(atrza\\252a,)-347(ale)-347(ani)-346(jednej)]TJ\nET\nendstream\nendobj\n736 0 obj <<\n/Type /Page\n/Contents 737 0 R\n/Resources 735 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n735 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n740 0 obj <<\n/Length 8121      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(228)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(16.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(lit)1(e)-1(ry)-380(nie)-381(roze)-1(zna\\252a,)-380(ni)-381(k)56(ar)1(t)-381(na)28(w)27(et,)-381(n)1(ic,)-381(b)-27(o)-381(te)-382(j)1(e)-1(go)-380(o)-28(c)-1(zy)-381(sm)27(u)1(tne,)-381(o)-28(cz)-1(y)-380(\\273)-1(a\\252osne,)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-283(parz\\241c)-1(e)-284(bl)1(as)-1(k)56(ami)-284(s)-1(ta\\252y)-283(prze)-1(d)-283(ni)1(\\241,)-284(ja\\261nia\\252y)-283(jak)-284(gwiazdy)84(,)-284(\\261)-1(wiat)-283(c)-1(a\\252y)-284(p)1(rzys)-1(\\252o-)]TJ 0 -13.549 Td[(ni)1(\\252y)83(,)-277(\\273e)-277(z)-1(atr)1(ac)-1(i\\252a)-276(s)-1(i\\246)-277(ca\\252)-1(k)1(ie)-1(m,)-277(p)1(rze)-1(p)1(ad\\252a)-277(zgo\\252a)-277({)-277(a)-277(on)-276(w)27(ci\\241\\273)-277(kl\\246c)-1(za\\252,)-277(s\\252ys)-1(za\\252a)-277(jego)]TJ 0 -13.549 Td[(kr)1(\\363tki)-309(i)-309(gor\\241cy)-309(o)-28(dd)1(e)-1(c)28(h)-309(i)-309(cz)-1(u)1(\\252a)-310(t\\246)-309(m)-1(o)-27(c)-310(s\\252)-1(o)-27(dk)56(\\241,)-309(t\\246)-310(mo)-28(c)-309(s)-1(tr)1(as)-1(zn\\241,)-309(j)1(ak)55(a)-309(b)1(i\\252a)-309(o)-28(d)-309(ni)1(e)-1(-)]TJ 0 -13.549 Td[(go,)-304(sz)-1(\\252a)-304(jej)-304(pr)1(os)-1(to)-304(d)1(o)-305(serc)-1(a,)-304(k)1(r\\246p)-28(o)28(w)28(a\\252)-1(a)-304(n)1(ib)28(y)-304(p)-27(o)28(w)-1(r)1(oz)-1(ami)-304(i)-304(pr)1(z)-1(ejmo)28(w)27(a\\252a)-304(s)-1(t)1(rac)27(h)1(e)-1(m)]TJ 0 -13.55 Td[(a)-342(s)-1(\\252o)-28(d)1(k)28(o\\261)-1(ci\\241,)-342(d)1(res)-1(zc)-1(ze)-1(m,)-342(o)-28(d)-341(kt\\363rego)-342(roz)-1(u)1(m)-343(o)-27(dc)27(h)1(o)-28(dzi\\252,)-342(mi\\252o)28(w)27(an)1(ia)-342(krzykiem)-342(tak)]TJ 0 -13.549 Td[(p)-27(ot\\246)-1(\\273n)28(ym,)-281(\\273e)-282(tr)1(z)-1(\\246s)-1(\\252a)-281(si\\246)-282(w)-281(ni)1(e)-1(j)-280(k)55(a\\273da)-281(k)28(oste)-1(czk)55(a,)-281(a)-281(se)-1(r)1(c)-1(e)-281(t\\252uk\\252o)-281(si\\246)-281(jak)28(o)-281(ten)-281(ptak)1(,)]TJ 0 -13.549 Td[(gdy)-333(m)28(u)-333(dl)1(a)-334(sw)27(a)28(w)28(oli)-333(s)-1(kr)1(z)-1(y)1(d\\252a)-333(przyb)1(ij\\241)-333(do)-333(\\261c)-1(ian)29(y!...)]TJ 27.879 -13.549 Td[(Msz)-1(a)-470(si\\246)-471(o)-28(d)1(pr)1(a)27(wi\\252a,)-470(k)56(azanie)-470(b)28(y\\252o,)-470(dr)1(uga)-470(m)-1(sza)-471(p)1(rze)-1(sz)-1(\\252a,)-470(n)1(ar\\363)-28(d)-470(\\261piew)28(a\\252)]TJ -27.879 -13.549 Td[(sp)-28(o\\252em)-1(,)-407(mo)-28(d)1(li\\252)-407(s)-1(i\\246,)-407(wz)-1(d)1(yc)27(ha\\252,)-407(p)1(\\252ak)55(a\\252)-407({)-407(a)-408(on)1(i)-407(b)28(yli)-407(j)1(akb)28(y)-407(p)-27(oz)-1(a)-407(\\261)-1(wiatem)-408(ca\\252ym,)]TJ 0 -13.549 Td[(ni)1(e)-334(s)-1(\\252y)1(s)-1(ze)-1(li)-333(n)1(ic,)-334(n)1(ie)-334(wid)1(z)-1(ieli)-333(n)1(ic)-334(i)-333(ni)1(e)-334(c)-1(zul)1(i)-334(n)1(ic)-334(p)1(r\\363)-28(cz)-334(sie)-1(b)1(ie.)]TJ 27.879 -13.55 Td[(St)1(rac)27(h)1(,)-280(rad)1(o\\261)-1(\\242,)-280(mi\\252o)27(w)28(ani)1(e)-1(,)-280(p)1(rzyp)-27(om)-1(n)1(ienia,)-280(ob)1(ietnice)-1(,)-279(z)-1(akl)1(\\246)-1(cia)-280(i)-280(p)-27(o\\273)-1(\\241d)1(ania)]TJ -27.879 -13.549 Td[(pal)1(i\\252y)-292(si\\246)-292(w)-292(nic)28(h)-292(n)1(a)-292(pr)1(z)-1(emian,)-291(s)-1(z\\252y)-292(z)-292(s)-1(erca)-292(do)-291(s)-1(erca,)-292(wi\\241za\\252y)-292(z)-1(e)-292(sob\\241,)-291(\\273)-1(e)-292(jedn)1(ak)28(o)]TJ 0 -13.549 Td[(ju)1(\\273)-334(cz)-1(u)1(li,)-333(jedn)1(ak)28(o)-333(im)-334(se)-1(rca)-333(bi\\252y)84(,)-333(jedn)1(akim)-334(ogn)1(iem)-334(gra\\252y)-333(im)-334(o)-27(c)-1(zy)83(.)]TJ 27.879 -13.549 Td[(An)28(tek)-360(p)1(rz)-1(y)1(s)-1(u)1(n\\241\\252)-360(s)-1(i)1(\\246)-361(j)1(e)-1(sz)-1(cz)-1(e)-360(bl)1(i\\273)-1(ej,)-359(w)-1(spar)1(\\252)-360(s)-1(i\\246)-360(ramieniem)-360(w)-361(j)1(e)-1(j)-359(biedr)1(o,)-360(a\\273)]TJ -27.879 -13.549 Td[(j\\241)-273(p)1(rzytomno\\261\\242)-274(o)-27(dc)27(h)1(o)-28(dzi\\252a)-273(i)-273(r)1(umie\\253ce)-274(ob)1(le)-1(w)28(a\\252y)83(,)-272(a)-273(p)-28(o)-27(dcz)-1(as)-273(gdy)-273(zno)28(wu)-273(p)1(rzykl\\246k-)]TJ 0 -13.55 Td[(n\\246\\252a,)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(jej)-333(gor\\241cymi)-333(jak)-333(w)27(\\246giel)-333(ustam)-1(i)-333(w)-333(s)-1(ame)-334(u)1(c)27(ho:)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261!)-333(Jagu\\261!)]TJ 0 -13.549 Td[(Wstrz\\241s)-1(n)1(\\246)-1(\\252a)-366(s)-1(i)1(\\246)-367(i)-366(om)-1(al)-366(n)1(ie)-367(p)1(ad\\252a)-367(ze)-367(wzrusz)-1(eni)1(a,)-367(t)1(ak)-367(g\\252os)-366(te)-1(n)-366(p)1(rze)-1(sz)-1(y\\252)-366(j\\241)]TJ -27.879 -13.549 Td[(lu)1(b)-28(o\\261c)-1(i)1(\\241,)-333(jak)28(o)-333(t)28(ym)-334(ostrze)-1(m)-334(p)1(rze)-1(s\\252o)-28(dk)1(im,)-334(i)-333(r)1(ado\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[({)-282(Wy)1(jd\\271)-282(kt\\363r)1(e)-1(go)-282(d)1(ni)1(a)-282(z)-1(a)-282(b)1(r\\363g..)1(.)-282(o)-282(k)56(a\\273)-1(d)1(ym)-282(wie)-1(czorz)-1(e)-282(cz)-1(ek)56(a\\252)-282(b)-28(\\246d\\246...)-281(nie)-282(b)-27(\\363)-56(j)]TJ -27.879 -13.55 Td[(si\\246)-1(.)1(..)-411(p)-27(om\\363)27(wi\\242)-411(mi)-411(z)-411(tob\\241)-410(piln)1(o...)1(w)-1(y)1(jd\\271...)-410({)-411(sz)-1(epta\\252)-411(n)1(am)-1(i)1(\\246)-1(tn)1(ie)-411(i)-411(tak)-410(bli)1(s)-1(k)28(o,)-410(tak)]TJ 0 -13.549 Td[(bl)1(is)-1(k)28(o,)-333(a\\273)-333(j\\241)-333(t)28(w)27(arz)-333(pali\\252a)-333(o)-28(d)-333(j)1(e)-1(go)-333(o)-28(d)1(dec)27(h\\363)28(w...)]TJ 27.879 -13.549 Td[(Nie)-348(o)-28(d)1(p)-28(o)28(wiedzia\\252a,)-348(si\\252)-348(j)1(e)-1(j)-347(zbr)1(ak\\252o,)-348(g\\252os)-348(u)28(wi\\241z\\252)-348(w)-348(gar)1(dle,)-348(se)-1(r)1(c)-1(e)-348(d)1(ygota\\252o)-348(i)]TJ -27.879 -13.549 Td[(tak)-384(b)1(i\\252o,)-384(\\273e)-385(c)27(h)29(yba)-384(s\\252ys)-1(ze)-1(\\242)-384(m)27(u)1(s)-1(i)1(e)-1(li)-383(dok)28(o\\252a)-384({)-384(ale)-385(u)1(ni)1(os)-1(\\252a)-384(s)-1(i)1(\\246)-385(n)1(ie)-1(co,)-384(j)1(akb)28(y)-384(j)1(u\\273)-384(i\\261)-1(\\242)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(a)-333(tam...)-333(gd)1(z)-1(ie)-333(prosi\\252...)-333(gd)1(z)-1(i)1(e)-334(m)-1(i)1(\\252o)27(w)28(ani)1(e)-1(m)-334(n)1(ak)56(az)-1(yw)28(a\\252...)-333(za)-334(b)1(r\\363g..)1(.)]TJ 27.879 -13.55 Td[(W)-253(cz)-1(as)-253(jak)28(o\\261)-254(gr)1(uc)27(h)1(n\\246li)-253(p)1(ie)-1(r)1(w)-1(sz\\241)-254(k)28(ol)1(\\246)-1(d)1(\\246)-1(,)-253(k)28(o\\261c)-1(i\\363\\252)-253(zatrz\\241s)-1(\\252)-253(s)-1(i)1(\\246)-254(o)-28(d)-253(\\261pi)1(e)-1(w)28(\\363)28(w)-1(,)-253(\\273e)]TJ -27.879 -13.549 Td[(ona)-269(op)1(a)-1(mi\\246ta\\252a)-269(s)-1(i\\246)-269(niec)-1(o)-269(i)-269(usiad\\252a)-269(rozgl\\241da)-55(j\\241c)-270(si\\246)-270(p)-27(o)-269(lud)1(z)-1(i)1(ac)27(h)-269(i)-269(p)-27(o)-270(k)28(o\\261c)-1(iele...)-269(Ale)]TJ 0 -13.549 Td[(An)28(tk)56(a)-333(ju)1(\\273)-334(ni)1(e)-334(b)28(y\\252o,)-333(o)-28(d)1(s)-1(u)1(n\\241\\252)-333(s)-1(i\\246)-333(niez)-1(n)1(ac)-1(zni)1(e)-334(i)-333(z)-334(w)27(ol)1(na)-333(w)-1(y)1(c)-1(of)1(a\\252)-334(a\\273)-334(n)1(a)-333(c)-1(me)-1(n)29(tarz.)]TJ 27.879 -13.549 Td[(D\\252ugo)-456(s)-1(ta\\252)-457(n)1(a)-457(mroz)-1(i)1(e)-458(p)-27(o)-28(d)-456(dzw)27(on)1(nic\\241,)-457(r)1(z)-1(e\\271)-1(wi\\252)-457(si\\246)-457(i)-457(n)1(abiera\\252)-457(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(a,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(tom)-1(n)1(ia\\252...)-453(ale)-454(tak)56(a)-454(rad)1(o\\261)-1(\\242)-454(r)1(oz)-1(p)1(ie)-1(r)1(a\\252a)-454(m)27(u)-453(se)-1(rce,)-454(taki)-453(krzyk)-453(m)-1(i)1(a\\252)-454(w)-454(s)-1(ob)1(ie,)]TJ 0 -13.55 Td[(taki)-356(wic)28(her)-356(m)-1(o)-27(c)-1(y)84(,)-356(\\273)-1(e)-357(n)1(ie)-357(s\\252ysz)-1(a\\252)-356(\\261)-1(p)1(ie)-1(wu)1(,)-356(jaki)-356(b)1(i\\252)-357(z)-356(drzwi)-356(k)28(o\\261)-1(cieln)28(yc)28(h)-356(i)-356(s)-1(ze)-1(d)1(\\252)-357(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at,)-377(n)1(i)-376(jaki)1(c)27(h\\261)-377(cic)28(h)28(yc)27(h)1(,)-376(s)-1(k)56(aml\\241c)-1(yc)28(h)-376(g\\252os)-1(\\363)28(w,)-376(roz)-1(l)1(e)-1(ga)-55(j\\241cyc)27(h)-376(si\\246)-377(w)-377(d)1(z)-1(w)28(onn)1(icy)83(..)1(.)]TJ 0 -13.549 Td[(Nic,)-491(o)-491(niczym)-492(n)1(ie)-492(wiedzia\\252,)-491(n)1(abra\\252)-491(gar\\261\\242)-492(\\261ni)1(e)-1(gu)-491(i)-490(p)-28(o\\252yk)56(a\\252)-491(c)27(h)1(c)-1(iwie,)-491(a)-491(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(sk)28(o)-28(c)-1(zy\\252)-333(przez)-334(m)27(u)1(r)-333(na)-333(drog\\246)-333({)-334(i)-333(p)-27(oni)1(\\363s)-1(\\252)-333(s)-1(i\\246)-333(jak)-333(wic)27(h)1(e)-1(r)-333(n)1(a)-334(p)-27(ola.)]TJ\nET\nendstream\nendobj\n739 0 obj <<\n/Type /Page\n/Contents 740 0 R\n/Resources 738 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 725 0 R\n>> endobj\n738 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n743 0 obj <<\n/Length 7986      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(17)]TJ/F17 10.909 Tf 0 -73.325 Td[(Boryn)1(o)27(wie)-370(dop)1(ie)-1(r)1(o)-370(na)-370(sam)27(ym)-370(\\261)-1(witan)1(iu)-370(p)-27(o)28(wr\\363)-28(cili)-370(z)-370(k)28(o\\261)-1(cio\\252a)-370(i)-370(ledwie)-370(w)-371(p)1(ac)-1(ierz)]TJ 0 -13.549 Td[(p)-27(ote)-1(m)-411(ju)1(\\273)-412(c)-1(a\\252y)-411(d)1(om)-412(c)27(h)1(rap)1(a\\252,)-412(a\\273)-411(s)-1(i)1(\\246)-412(rozle)-1(ga\\252o,)-411(t)28(yl)1(k)28(o)-412(j)1(e)-1(d)1(na)-411(Jagu)1(s)-1(ia,)-411(c)28(ho)-28(\\242)-411(b)28(y\\252a)]TJ 0 -13.549 Td[(wielc)-1(e)-483(utr)1(ud)1(z)-1(on)1(a,)-483(ni)1(e)-484(zas)-1(n)1(\\246)-1(\\252a;)-483(p)1(r\\363\\273no)-483(si\\246)-483(w)27(cis)-1(k)56(a\\252a)-483(w)-483(p)-27(o)-28(du)1(s)-1(zki,)-483(p)1(r\\363\\273no)-483(o)-27(c)-1(zy)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra\\252a)-263(i)-263(na)28(w)28(e)-1(t)-263(p)1(ie)-1(r)1(z)-1(y)1(n\\241)-263(z)-1(as\\252ania\\252a)-263(g\\252o)28(w)27(\\246)-263(nie)-263(p)-28(omog\\252o,)-263(s)-1(en)-263(ni)1(e)-264(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252,)]TJ 0 -13.549 Td[(a)-367(jeno)-367(j)1(akb)28(y)-367(zm)-1(or)1(a)-368(zw)28(ali\\252a)-367(s)-1(i\\246)-367(na)-367(n)1(i\\241)-367(i)-367(na)-367(pi)1(e)-1(rsi)-367(p)1(ad\\252a)-367(takim)-367(c)-1(i)1(\\246)-1(\\273arem)-1(,)-367(\\273e)-368(an)1(i)]TJ 0 -13.549 Td[(o)-28(d)1(e)-1(tc)28(hn)1(\\241\\242)-492(mog\\252a,)-491(n)1(i)-491(kr)1(z)-1(yk)1(n\\241\\242,)-491(ni)-490(s)-1(i)1(\\246)-492(p)-27(orw)28(a\\242)-491(z)-492(\\252\\363\\273k)55(a;)-490(le\\273)-1(a\\252a)-491(n)1(ie)-1(r)1(uc)28(homa,)-491(w)]TJ 0 -13.549 Td[(o)-28(d)1(r\\246t)27(wieni)1(u)-334(takiego)-335(p)-27(\\363\\252sn)28(u,)-334(p)-27(\\363\\252ja)28(wy)83(,)-334(w)-335(k)1(t\\363rym)-334(rozum)-335(n)1(ic)-1(zego)-335(n)1(ie)-335(rozez)-1(n)1(a)-56(je,)-334(a)]TJ 0 -13.549 Td[(in)1(o)-225(sam)-1(a)-224(du)1(s)-1(za)-225(si\\246)-225(wyp)1(rz)-1(\\246dza)-224(z)-1(e)-225(ws)-1(p)-27(ominek,)-224(jak)-224(gd)1(yb)28(y)-224(z)-225(k)55(\\241d)1(z)-1(i)1(e)-1(li)1(,)-225(i)-224(omotuj)1(e)-225(s)-1(ob)1(\\241)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-295(ca\\252)-1(y)84(,)-294(c)-1(u)1(dn)1(o\\261)-1(ci)-295(r)1(\\363\\273)-1(n)1(e)-295(patrzy)84(,)-295(n)1(ad)-294(z)-1(iemiam)-1(i)-294(si\\246)-295(nosi,)-294(w)-295(s)-1(\\252o\\253)1(c)-1(e)-295(si\\246)-295(ub)1(iera)-295({)-294(a)]TJ 0 -13.55 Td[(t)28(yla)-273(s)-1(ama)-274(j)1(e)-1(st,)-273(c)-1(o)-273(te)-274(o)-28(d)1(bicia)-274(n)1(a)-274(w)28(o)-28(d)1(z)-1(ie)-274(cz)-1(y)1(s)-1(tej)-273(a)-274(zwic)27(h)1(rz)-1(on)1(e)-1(.)1(..)-273(T)83(ak)-274(b)29(y\\252o)-274(z)-274(Jagn)1(\\241,)]TJ 0 -13.549 Td[(\\273e)-285(c)27(ho)-27(c)-1(ia\\273)-285(n)1(ie)-285(z)-1(asn\\246\\252a,)-284(a)-285(sc)-1(ze)-1(z\\252o)-285(z)-285(jej)-284(pami\\246c)-1(i)-284(ws)-1(zystk)28(o)-285(i)-284(jak)28(o)-284(te)-1(n)-284(p)1(tak)-285(n)1(ies)-1(\\252a)-284(s)-1(i\\246)]TJ 0 -13.549 Td[(du)1(s)-1(z\\241)-320(p)-27(o)-320(c)-1(ud)1(e)-1(\\253)1(k)56(ac)27(h)-320({)-320(p)-27(o)-320(on)28(yc)28(h)-320(d)1(niac)28(h)-320(p)-27(ogas)-1(\\252yc)28(h,)-320(p)-27(o)-320(c)-1(zas)-1(ac)28(h)-320(p)-27(om)-1(ar)1(\\252yc)27(h)1(,)-320(a)-320(w)27(e)]TJ 0 -13.549 Td[(ws)-1(p)-27(ominan)1(iac)27(h)-257(j)1(e)-1(n)1(o)-257(\\273)-1(ywi\\241cyc)27(h)1(...)-257(w)-257(k)28(o\\261)-1(ciele)-258(si\\246)-258(b)28(y\\242)-257(c)-1(zu\\252a..)1(.An)28(tek)-257(kl\\246c)-1(za\\252)-258(ob)-27(ok..)1(.)]TJ 0 -13.549 Td[(m\\363)27(wi\\252)-379(w)28(c)-1(i\\241\\273)-379(i)-380(p)1(arzy\\252)-379(j\\241)-379(o)-28(c)-1(zami,)-379(par)1(z)-1(y\\252)-379(j\\241)-379(s\\252)-1(o)28(w)28(am)-1(i)1(,)-379(prze)-1(j)1(mo)27(w)28(a\\252)-380(s\\252o)-28(dk)56(\\241)-379(m\\246)-1(k)56(\\241)-379(i)]TJ 0 -13.55 Td[(strac)27(h)1(e)-1(m)-252(zaraze)-1(m...)-251(to)-252(\\261pi)1(e)-1(w)-252(j)1(aki\\261)-252(s)-1(i)1(\\246)-252(roz)-1(l)1(e)-1(ga\\252)-252(i)-251(organ)28(y)-251(h)28(u)1(c)-1(za\\252y)-252(tak)-251(pr)1(z)-1(enik)1(liwie,)]TJ 0 -13.549 Td[(a\\273)-292(k)56(a\\273)-1(d)1(\\241)-292(n)28(u)1(t\\246)-292(z)-292(os)-1(ob)1(na)-291(c)-1(zu\\252a)-292(w)-291(s)-1(ob)1(ie)-1(.)1(:.)-292(t)1(o)-292(c)-1(zerw)27(on)1(a)-292(gr)1(o\\271)-1(n)1(a)-292(t)28(w)27(ar)1(z)-292(ksi\\246)-1(d)1(z)-1(a)-291(s)-1(i\\246)-292(j)1(e)-1(j)]TJ 0 -13.549 Td[(widzia\\252a)-365(i)-365(wyci\\241)-28(gn)1(i\\246)-1(te)-365(nad)-364(nar)1(o)-28(dem)-366(r)1(\\246)-1(ce)-1(.)1(..)-365(to)-365(\\261w)-1(i)1(a)-1(t)1(\\252)-1(a.)1(..)-365(to)-365(p)-27(ote)-1(m)-365(in)1(ne,)-365(da)28(wne)]TJ 0 -13.549 Td[(ws)-1(p)-27(ominki)-400(p)1(rzyc)27(h)1(o)-28(dzi\\252y)83(.)1(..)-400(s)-1(p)-27(ot)28(yk)56(ania)-400(s)-1(i)1(\\246)-401(z)-401(nim...)-400(ca\\252unk)1(i...)-400(u\\261cis)-1(k)1(i...)-400(a\\273)-401(gor\\241c)]TJ 0 -13.549 Td[(j\\241)-318(p)1(rz)-1(eni)1(k)55(a\\252)-318(i)-318(tak)56(a)-319(l)1(ub)-27(o\\261)-1(\\242;)-318(\\273)-1(e)-318(s)-1(i\\246)-318(pr\\246\\273y\\252a)-319(cisn\\241c)-319(mo)-28(cno)-318(do)-318(p)-27(o)-28(du)1(s)-1(ze)-1(k)1(...)-318(to)-318(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.55 Td[(wyra\\271ni)1(e)-1(,)-387(g\\252o\\261)-1(n)1(o)-387(s)-1(\\252ysz)-1(a\\252a:)-387(\\377)28(Wyj)1(d\\271!)-387(Wyj)1(d\\271!...\")-387(a\\273)-388(si\\246)-388(p)-27(o)-28(d)1(nosi\\252a)-387(i)-387(jakb)28(y)-387(sz)-1(\\252a)-387(w)]TJ 0 -13.549 Td[(sobie,)-429(s)-1(z\\252a:..)-429(c)28(h)28(y\\252kiem)-430(p)-27(o)-28(d)-429(d)1(rze)-1(w)28(am)-1(i)1(;)-429(w)27(e)-429(m)-1(r)1(ok)55(ac)28(h..)1(.)-429(a)-430(strac)28(h)-429(w)-429(niej)-429(dy)1(gota\\252,)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)-333(j)1(aki\\261)-334(lecia\\252)-334(za)-333(ni\\241,)-333(p)1(rz)-1(era\\273e)-1(n)1(ie)-334(wia\\252o)-333(z)-334(cie)-1(mno\\261ci.)]TJ 27.879 -13.549 Td[(I)-313(tak)-313(w)27(ci\\241\\273)-313(w)-314(k)28(\\363\\252k)28(o,)-313(to)-313(jedn)1(o,)-313(to)-313(dr)1(ugie,)-313(to)-313(dzies)-1(i\\241te)-313(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o)-313(n)1(a)-313(ni\\241,)]TJ -27.879 -13.549 Td[(\\273e)-348(s)-1(i\\246)-348(op)1(am)-1(i)1(\\246)-1(ta\\242)-348(n)1(i)-348(wyr)1(w)27(a\\242)-348(sp)-28(o)-27(d)-347(te)-1(go)-347(nie)-348(mog\\252a)-348({)-347(nic,)-347(t)28(ylk)28(o)-348(zmora)-348(m)28(usia\\252a)-348(j)1(\\241)]TJ 0 -13.55 Td[(du)1(s)-1(i)1(\\242)-334(alb)-27(o)-334(z\\252y)-333(nagab)28(y)1(w)27(a\\252)-333(i)-333(do)-333(grze)-1(c)27(h)29(u)-333(s)-1(p)-27(os)-1(ob)1(i\\252.)]TJ 27.879 -13.549 Td[(O)-248(d)1(u\\273ym)-249(j)1(u\\273)-248(dni)1(u)-248(p)-27(o)-28(dn)1(ies)-1(\\252a)-248(s)-1(i)1(\\246)-249(z)-249(p)-27(o\\261c)-1(ieli,)-248(al)1(e)-249(cz)-1(u)1(\\252)-1(a)-248(si\\246)-249(j)1(ak)-248(z)-249(k)1(rzy\\273)-1(a)-248(zdj)1(\\246)-1(ta,)]TJ -27.879 -13.549 Td[(ws)-1(zystkie)-334(k)28(o\\261c)-1(i)-333(j)1(\\241)-334(b)-27(ola\\252y)84(,)-333(blad)1(a)-334(b)29(y\\252a,)-333(roz)-1(t)1(rz)-1(\\246siona)-333(i)-333(s)-1(tr)1(as)-1(zni)1(e)-334(s)-1(m)28(utn)1(a.)]TJ 27.879 -13.549 Td[(Mr)1(\\363z)-443(b)29(y\\252)-442(z)-1(el\\273a\\252)-442(nieco,)-442(ale)-442(p)-28(o)-27(c)-1(ze)-1(r)1(nia\\252o)-442(j)1(ak)28(o\\261)-443(n)1(a)-442(\\261w)-1(i)1(e)-1(cie,)-442(\\261)-1(n)1(ieg)-442(c)27(h)28(wil)1(am)-1(i)]TJ -27.879 -13.549 Td[(pr)1(\\363s)-1(zy\\252,)-446(a)-447(cz)-1(ase)-1(m)-447(zn\\363)28(w)-447(mo)-28(cn)28(y)-446(w)-1(i)1(atr)-447(p)-27(o)28(wie)-1(w)28(a\\252,)-446(targa\\252)-447(d)1(rze)-1(w)28(am)-1(i)1(,)-447(\\273e)-447(s)-1(ta)28(w)28(a\\252y)]TJ 0 -13.55 Td[(w)-480(\\261ni)1(e)-1(\\273nej)-479(kur)1(z)-1(a)28(wie)-1(,)-479(i)-479(p)-27(o)-480(d)1(rogac)27(h)-479(p)1(rze)-1(\\261w)-1(i)1(s)-1(t)28(yw)28(a\\252,)-479(ale)-480(m)-1(i)1(m)-1(o)-479(to)-479(w)-1(i)1(e)-1(\\261)-480(h)28(u)1(c)-1(za\\252a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(\\241)-269(r)1(ado\\261c)-1(i\\241,)-268(p)-27(e\\252)-1(n)1(o)-268(lud)1(z)-1(i)-268(sn)28(u\\252o)-268(s)-1(i)1(\\246)-269(p)-28(o)-268(d)1(rogac)27(h)1(,)-268(c)-1(z\\246)-1(sto)-269(sani)1(am)-1(i)-268(kt)1(o\\261)-269(w)27(al)1(i\\252,)]TJ 0 -13.549 Td[(to)-231(gr)1(om)-1(ad)1(am)-1(i)-230(wys)-1(t)1(a)27(w)28(ali)-230(w)-231(op\\252otk)56(ac)27(h)-230(p)-27(ore)-1(d)1(z)-1(a)-55(j\\241c,)-231(to)-230(o)-28(dwiedzali)-230(s)-1(i\\246)-231(p)-27(o)-231(s\\241s)-1(iedzku)1(,)]TJ 358.232 -29.888 Td[(229)]TJ\nET\nendstream\nendobj\n742 0 obj <<\n/Type /Page\n/Contents 743 0 R\n/Resources 741 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n741 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n747 0 obj <<\n/Length 9570      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(230)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(17.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(a)-247(dzie)-1(ci)-247(c)-1(a\\252ym)-247(s)-1(tad)1(e)-1(m,)-247(kiej)-247(te)-248(\\271rebaki)-247(n)1(a)-248(p)1(a\\261)-1(n)1(iku,)-247(b)1(arasz)-1(k)28(o)28(w)27(a\\252y)-247(n)1(a)-248(sta)28(w)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(a\\273)-334(n)1(a)-334(wie\\261)-334(ca\\252\\241)-334(r)1(oz)-1(n)1(o)-1(si\\252y)-333(si\\246)-334(wrzas)-1(ki)1(.)]TJ 27.879 -13.549 Td[(Ale)-388(Jagu)1(s)-1(i)-387(ni)1(e)-388(b)28(y\\252o)-388(w)-387(s)-1(ercu)-387(w)27(es)-1(o\\252o)-387(ni)-387(dr)1(ujk)28(o,)-387(ni)1(e)-1(!.)1(..Zi\\241b)-387(j)1(\\241)-388(pr)1(z)-1(ejmo)28(w)27(a\\252,)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(cia\\273)-317(ogie\\253)-316(w)27(eso\\252)-1(o)-316(b)1(uzo)27(w)28(a\\252)-317(n)1(a)-316(k)28(om)-1(in)1(ie,)-317(g\\252u)1(c)27(h)1(o)-317(j)1(e)-1(j)-316(j)1(ak)28(o\\261)-317(b)28(y\\252o,)-316(mimo)-317(ci\\241)-28(g\\252ego)]TJ 0 -13.549 Td[(gw)28(aru)-307(i)-307(J\\363zin)28(yc)28(h)-307(\\261)-1(p)1(iew)27(ek,)-307(dzw)28(oni\\241cyc)27(h)-307(p)-27(o)-307(c)27(h)1(a\\252upi)1(e)-1(,)-307(ob)-27(c)-1(\\241)-307(si\\246)-308(cz)-1(u)1(\\252a)-308(w)-307(p)-27(o\\261)-1(r)1(o)-28(dku)]TJ 0 -13.55 Td[(sw)27(oic)28(h,)-450(tak)-451(ob)-27(c)-1(\\241,)-450(\\273)-1(e)-451(ze)-452(strac)28(hem)-451(patrza\\252a)-451(n)1(a)-451(nic)28(h)-451(i)-450(jakb)29(y)-451(w\\261)-1(r)1(\\363)-28(d)-450(z)-1(b)-27(\\363)-56(j)1(\\363)28(w)-451(s)-1(i\\246)]TJ 0 -13.549 Td[(cz)-1(u)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[(A)-287(c)-1(z\\246)-1(sto,)-287(ni)1(e)-288(mog\\241c)-288(s)-1(i)1(\\246)-288(opr)1(z)-1(e\\242)-1(,)-287(zas)-1(\\252u)1(c)27(hi)1(w)27(a\\252a)-287(s)-1(i)1(\\246)-288(w)-288(t)28(yc)28(h)-287(gor\\241cyc)27(h)-287(sze)-1(p)1(tac)27(h)]TJ -27.879 -13.549 Td[(An)28(tk)28(o)28(wyc)27(h)1(,)-333(c)-1(o)-333(w)28(c)-1(i\\241\\273,)-333(z)-334(jedn)1(ak)56(\\241)-334(si\\252\\241)-333(dzw)27(on)1(i\\252y)-333(w)-334(se)-1(rcu.)1(..)]TJ 27.879 -13.549 Td[({)-464(\\377G)1(niew)-464(b)-27(os)-1(ki)-463(i)-464(p)-27(ot\\246pieni)1(e)-464(w)-1(iecz)-1(n)1(e)-465(n)1(a)-464(tak)1(ie)-1(!)1(\")-464({)-464(t)28(w)28(arz)-464(i)-464(wyci\\241)-28(gn)1(i\\246te)-1(,)]TJ -27.879 -13.549 Td[(gro\\273\\241c)-1(e)-333(r\\246c)-1(e)-334(wid)1(z)-1(i)1(a)-1(\\252a)-333(pr)1(z)-1(ed)-333(sob\\241.)]TJ 27.879 -13.55 Td[(Zal\\246k\\252a)-268(s)-1(i)1(\\246)-269(sro)-27(dze)-1(,)-268(stru)1(c)27(h)1(la\\252a)-268(w)-268(g\\252\\246)-1(b)-27(okim)-268(p)-27(o)-28(cz)-1(u)1(c)-1(iu)-267(win)28(y)84(.)-268({)-268(Nie,)-268(n)1(ie)-268(wyjd)1(\\246)-1(!)]TJ -27.879 -13.549 Td[(Gr)1(z)-1(ec)27(h)-377(b)29(y)-377(b)28(y\\252)-377(\\261m)-1(i)1(e)-1(rteln)28(y)84(,)-377(\\261m)-1(i)1(e)-1(r)1(te)-1(ln)29(y!)-377({)-377(p)-27(o)27(wtar)1(z)-1(a\\252a)-377(krzepi\\241c)-377(s)-1(i)1(\\246)-378(t)28(ym)-377(s)-1(\\252o)28(w)27(em)-377(i)]TJ 0 -13.549 Td[(o)-28(d)1(\\273)-1(egn)28(uj)1(\\241c)-325(o)-28(d)-324(z)-1(\\252a,)-324(ale)-325(d)1(usz)-1(a)-324(jej)-324(krzyc)-1(za\\252a)-325(w)-325(\\273alu)-324(i)-324(m)-1(\\246ce)-325(b)-28(o)-324(rw)27(a\\252a)-324(s)-1(i)1(\\246)-325(do)-325(n)1(iego,)]TJ 0 -13.549 Td[(rw)28(a\\252a)-438(ca\\252)-1(\\241)-437(m)-1(o)-28(c\\241,)-438(ca\\252\\241)-438(p)-27(ot\\246)-1(g\\241)-437(\\273)-1(ycia,)-437(jak)-438(t)1(o)-438(dr)1(z)-1(ew)27(o)-438(p)1(rzyw)27(al)1(one)-438(z)-1(w)28(a\\252ami)-438(rwie)]TJ 0 -13.549 Td[(si\\246)-424(o)-423(wio\\261)-1(n)1(ie)-424(d)1(o)-424(s\\252o\\253ca,)-423(jak)-423(ta)-423(z)-1(i)1(e)-1(mia)-423(pr\\246\\273\\241c)-1(a)-423(s)-1(i)1(\\246)-424(p)-27(o)-28(d)-423(pi)1(e)-1(rwsz)-1(y)1(m)-424(tc)27(h)1(nieni)1(e)-1(m)]TJ 0 -13.55 Td[(cie)-1(p)1(\\252a...)]TJ 27.879 -13.549 Td[(Ale)-408(strac)27(h)-407(grze)-1(c)28(h)28(u)-407(pr)1(z)-1(ew)27(a\\273y\\252)-408(j)1(e)-1(sz)-1(cz)-1(e,)-408(\\273e)-408(z)-1(mog\\252a)-408(si\\246)-408(w)-408(s)-1(ob)1(ie)-408(i)-408(u)1(s)-1(i\\252o)28(w)28(a\\252)-1(a)]TJ -27.879 -13.549 Td[(zap)-28(omni)1(e)-1(\\242)-416(o)-415(n)1(im,)-415(z)-1(ap)-27(om)-1(n)1(ie\\242)-416(n)1(a)-416(za)28(w)-1(sze)-1(..)1(...n)1(ie)-416(wyc)28(ho)-28(d)1(z)-1(i\\252a)-415(z)-416(c)28(ha\\252u)1(p)28(y)83(,)-415(b)1(a\\252a)-415(s)-1(i\\246)]TJ 0 -13.549 Td[(wyc)27(h)29(yli\\242)-377(w)-377(op\\252otki;)-376(b)-28(o;)-377(mo\\273e)-378(tam)-377(gdzie)-377(pr)1(z)-1(ycz)-1(a)-55(jon)28(y)-376(c)-1(ze)-1(k)56(a)-377(i)-377(za)28(w)27(o\\252a)-377(n)1(a)-377(ni\\241..)1(.a)]TJ 0 -13.549 Td[(opr)1(z)-1(e)-333(m)27(u)-333(si\\246)-334(to)-333(wte)-1(d)1(y)83(,)-333(ws)-1(t)1(rz)-1(y)1(m)-1(a)-333(du)1(s)-1(z\\246,)-334(n)1(ie)-334(p)-27(olec)-1(i)-333(za)-334(t)28(ym)-333(g\\252os)-1(em)-1(?!.)1(..)]TJ 27.879 -13.55 Td[(Ostro)-436(s)-1(i\\246)-437(wzi\\246\\252)-1(a)-436(do)-436(gos)-1(p)-27(o)-28(d)1(arst)27(w)28(a,)-436(c)-1(\\363\\273,)-436(kie)-1(d)1(y)-436(nie)-437(b)29(y\\252o)-437(wiele)-437(do)-436(rob)-27(ot)28(y)83(,)]TJ -27.879 -13.549 Td[(J\\363zk)55(a)-330(ju)1(\\273)-331(obr)1(z)-1(\\241d)1(z)-1(i\\252a)-330(ws)-1(zys)-1(t)1(k)28(o,)-331(a)-330(do)-330(te)-1(go)-330(stary)-330(c)27(ho)-27(dzi\\252)-331(za)-331(n)1(i\\241)-330(c)-1(i\\246giem)-331(i)-330(nicz)-1(ego)]TJ 0 -13.549 Td[(si\\246)-334(tkn)1(\\241\\242)-334(ni)1(e)-334(p)-27(oz)-1(w)28(ala\\252.)]TJ 27.879 -13.549 Td[({)-333(Odp)-27(o)-28(cz)-1(n)1(ij,)-333(n)1(ie)-334(n)1(aryw)28(a)-56(j)-333(si\\246,)-334(b)29(y)-333(c)-1(i)-333(si\\246)-334(pr)1(z)-1(ed)-333(cz)-1(ase)-1(m)-334(n)1(ie)-334(sta\\252o)-333(c)-1(o)-333(z)-1(\\252ego.)]TJ 0 -13.549 Td[(T)83(o)-399(i)-399(nie)-399(robi)1(\\252)-1(a,)-399(a)-399(in)1(o)-400(t\\252u)1(k\\252a)-400(si\\246)-400(p)-27(o)-399(izbac)27(h)-399(b)-27(ez)-400(c)-1(elu)1(,)-399(w)-1(y)1(gl\\241da\\252a)-399(na)-399(\\261)-1(wiat)]TJ -27.879 -13.55 Td[(b)-27(e)-1(z)-398(p)-28(otr)1(z)-1(eb)28(y)84(,)-398(w)-398(ganku)-397(s)-1(ta)28(w)28(a\\252)-1(a,)-397(a)-399(coraz)-398(wi\\246)-1(k)1(s)-1(za)-398(c)27(kn)1(o\\261)-1(\\242)-398(j\\241)-398(pr)1(z)-1(ejmo)28(w)27(a\\252a)-398(i)-398(r)1(oz)-1(-)]TJ 0 -13.549 Td[(dr)1(a\\273)-1(n)1(ienie)-306(z)-1(ar)1(az)-1(em)-1(,)-305(b)-28(o)-306(gn)1(ie)-1(w)28(a\\252y)-306(j)1(\\241)-307(t)1(e)-307(str\\363\\273uj)1(\\241c)-1(e)-306(m)-1(\\246\\273)-1(o)28(w)28(e)-307(o)-28(czy)83(,)-306(gn)1(iew)27(a\\252a)-306(rad)1(o\\261)-1(\\242)]TJ 0 -13.549 Td[(i)-336(gw)28(ar)-336(c)-1(a\\252ego)-337(d)1(om)27(u)1(,)-336(gniew)27(a\\252)-336(na)28(w)28(e)-1(t)-336(ten)-336(b)-27(o)-28(c)-1(i)1(e)-1(k)-336(\\252a\\273\\241c)-1(y)-336(p)-27(o)-336(iz)-1(b)1(ie,)-336(\\273)-1(e)-337(z)-336(rozm)27(ys\\252e)-1(m)]TJ 0 -13.549 Td[(p)-27(otr\\241ca\\252a)-273(go)-272(w)27(e\\252niak)1(ie)-1(m,)-272(a\\273)-273(ni)1(e)-273(m)-1(og\\241c)-272(ju\\273)-272(w)-1(y)1(trzym)-1(a\\242,)-272(a)-273(u)1(patr)1(z)-1(y)1(w)-1(sz)-1(y)-272(sp)-28(osobn)1(\\241)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(i)1(l\\246)-286(p)-27(ob)1(ie)-1(g\\252a)-285(d)1(o)-285(matki,)-285(al)1(e)-286(sta)28(w)27(em)-285(p)-28(ol)1(e)-1(cia\\252a,)-285(n)1(a)-285(prze\\252)-1(a)-55(j)-285(i)-284(jes)-1(zc)-1(ze)-285(s)-1(i\\246)-285(tr)1(w)27(o\\273nie)]TJ 0 -13.55 Td[(rozgl\\241d)1(a\\252)-1(a,)-333(cz)-1(y)-333(gd)1(z)-1(ie)-333(nie)-333(s)-1(toi)-333(za)-334(d)1(rze)-1(w)28(e)-1(m)-333(z)-1(acz)-1(a)-55(jon)28(y)1(!...)]TJ 27.879 -13.549 Td[(Matk)1(i)-300(ni)1(e)-301(b)29(y\\252o,)-300(ran)1(kiem)-301(p)-27(on)1(o)-300(z)-1(a)-55(jrza\\252a)-300(i)-300(p)-27(o)28(w)-1(r)1(\\363)-28(ci\\252a)-300(do)-300(w)28(\\363)-56(j)1(to)28(w)27(ej,)-300(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(za\\261)-350(d)1(ym)-349(p)1(usz)-1(cz)-1(a\\252)-349(w)-348(k)28(om)-1(in)1(,)-349(a)-348(c)-1(o)-348(tro)-28(c)28(h\\246)-349(wyb)1(ie)-1(ga\\252)-348(prze)-1(d)-348(d)1(om)-349(patr)1(z)-1(e\\242)-349(na)-349(d)1(rog\\246,)]TJ 0 -13.549 Td[(b)-27(o)-334(S)1(z)-1(y)1(m)-1(ek)-333(przystra)-55(ja\\252)-333(s)-1(i\\246)-333(w)-334(k)28(omorze)-1(.)]TJ 27.879 -13.549 Td[(Od)1(m)-1(i)1(e)-1(n)1(i\\252o)-260(si\\246)-260(w)-259(ni)1(e)-1(j)1(,)-259(opad\\252y)-259(wsz)-1(ystki)1(e)-260(z)-1(gr)1(yz)-1(ot)28(y)84(,)-259(s)-1(k)28(or)1(o)-260(j)1(e)-1(n)1(o)-259(p)-28(o)-27(c)-1(zu\\252a)-259(s)-1(i\\246)-259(p)-28(o)]TJ -27.879 -13.549 Td[(da)28(wnem)27(u)-283(w)-283(s)-1(w)28(o)-56(j)1(e)-1(j)-283(izbi)1(e)-1(,)-283(na)-283(s)-1(tar)1(yc)27(h)-283(\\261m)-1(i)1(e)-1(ciac)27(h)1(,)-284(p)-27(o)28(w)27(es)-1(ela\\252a)-283(c)-1(a\\252kiem)-284(i)-283(b)-27(e)-1(zw)-1(i)1(e)-1(d)1(nie)]TJ 0 -13.55 Td[(pr)1(a)28(w)-1(i)1(e)-354(z)-1(acz)-1(\\246\\252a)-354(si\\246)-354(kr)1(z)-1(\\241ta\\242,)-353(z)-1(a)-55(jrza\\252a)-354(d)1(o)-354(k)1(r\\363)28(w,)-354(p)1(rze)-1(ce)-1(d)1(z)-1(i\\252a)-353(mle)-1(k)28(o,)-353(kt\\363r)1(e)-354(o)-28(d)-353(ran)1(a)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-405(s)-1(t)1(a\\252)-1(o)-405(w)-405(sk)28(opk)56(ac)27(h)1(,)-405(r)1(z)-1(u)1(c)-1(i\\252a)-405(ku)1(rom)-405(ziarn)1(a,)-405(z)-1(amiet\\252a)-405(izb)-28(\\246,)-405(u)1(prz\\241tn)1(\\246)-1(\\252a,)-405(co)]TJ 0 -13.549 Td[(b)28(y\\252o)-260(p)-28(ot)1(rz)-1(a,)-260(i)-260(w)27(eso\\252)-1(o)-260(p)-27(ogadyw)28(a\\252a)-261(z)-261(c)27(h)1(\\252opak)56(ami,)-260(b)-28(o)-260(Szyme)-1(k,)-260(wystro)-56(j)1(on)28(y)-260(w)-261(n)1(o)27(w)28(\\241)]TJ 0 -13.549 Td[(k)56(ap)-28(ot)1(\\246)-1(,)-333(wysz)-1(ed\\252)-333(b)28(y\\252)-333(na)-333(iz)-1(b)-27(\\246)-334(i)-333(p)1(rzyc)-1(ze)-1(syw)28(a\\252)-334(si\\246)-334(p)1(rze)-1(d)-333(lu)1(s)-1(t)1(e)-1(rk)1(ie)-1(m.)]TJ 27.879 -13.549 Td[({)-333(K\\246)-1(d)1(y)-333(s)-1(i)1(\\246)-334(to)-333(s)-1(zykuj)1(e)-1(sz?)]TJ 0 -13.55 Td[({)-333(A)-334(n)1(a)-334(wie\\261,)-334(u)-332(P\\252os)-1(zk)28(\\363)28(w)-334(zbiera)-55(j\\241)-333(s)-1(i)1(\\246)-334(c)27(h)1(\\252)-1(op)1(aki.)]TJ 0 -13.549 Td[({)-333(Da)-334(ci)-333(to)-333(m)-1(atk)56(a)-333(i\\261\\242)-1(,)-333(co?)]TJ\nET\nendstream\nendobj\n746 0 obj <<\n/Type /Page\n/Contents 747 0 R\n/Resources 745 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n745 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n750 0 obj <<\n/Length 8767      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(231)]TJ -330.353 -35.866 Td[({)-437(Py)1(ta\\252)-437(s)-1(i\\246)-437(ci\\246)-1(gi)1(e)-1(m)-437(o)-437(pr)1(z)-1(yzw)28(ole)-1(\\253)1(s)-1(t)28(w)28(o)-437(nie)-437(b)-27(\\246)-1(d)1(\\246)-1(,)-436(s)-1(w)28(\\363)-56(j)-436(roz)-1(u)1(m)-437(te)-1(\\273)-437(ma)-1(m)-437(i)]TJ -27.879 -13.549 Td[(sw)27(o)-55(j\\241)-333(w)27(ol\\246...)-333(i)-333(co)-334(mi)-333(s)-1(i)1(\\246)-334(jeno)-333(u)28(wid)1(z)-1(i)-333({)-333(z)-1(r)1(obi\\246!...)]TJ 27.879 -13.549 Td[({)-299(P)29(e)-1(wni)1(kiem)-299(to)-299(zrobi)1(,)-299(p)-27(e)-1(wn)1(ikiem)-1(!)-298({)-299(d)1(ogadyw)28(a\\252)-299(J\\246dr)1(z)-1(yc)28(h)-299(t)1(rw)27(o\\273ni)1(e)-299(w)-1(y)1(gl\\241-)]TJ -27.879 -13.549 Td[(da)-55(j\\241c)-333(na)-333(drog\\246.)]TJ 27.879 -13.549 Td[({)-244(A)-244(\\273)-1(eb)28(y\\261)-244(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-244(zrob)1(i\\246,)-244(na)-244(z)-1(\\252o\\261\\242)-245(zrob)1(i\\246)-1(,)-243(do)-244(P\\252osz)-1(k)28(\\363)28(w)-244(p)-28(\\363)-55(jd)1(\\246)-1(,)-244(d)1(o)-244(k)55(ar)1(c)-1(zm)27(y)]TJ -27.879 -13.55 Td[(p)-27(\\363)-56(j)1(d\\246,)-334(z)-333(c)27(h\\252op)1(ak)55(ami)-333(pi)1(\\252)-334(b)-27(\\246)-1(d)1(\\246)-1(!)1({)-334(wyk)1(rz)-1(y)1(kiw)28(a\\252)-334(h)1(ardo.)]TJ 27.879 -13.549 Td[({)-311(Da)-56(j)-310(g\\252)-1(u)1(piem)27(u)-310(w)27(ol\\246,)-311(to)-311(jak)-311(ten)-311(cie)-1(l)1(ak)-311(w)-312(ca\\252y)-311(\\261)-1(wiat)-311(si\\246)-312(p)-27(onies)-1(i)1(e)-1(,)-311(c)28(ho)-28(\\242)-311(m)27(u)]TJ -27.879 -13.549 Td[(in)1(o)-412(d)1(o)-412(cyc)27(k)56(a)-411(i\\261)-1(\\242)-411(p)-28(otr)1(z)-1(a!)-411({)-412(r)1(z)-1(ek\\252a)-411(c)-1(ic)28(ho)-411(nie)-412(p)1(rze)-1(ciwi\\241c)-412(m)28(u)-411(s)-1(i\\246)-411(w)-412(ni)1(c)-1(zym)-1(,)-411(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(wygady)1(w)27(a\\252)-346(na)-346(m)-1(atk)28(\\246)-347(i)-346(wygr)1(a\\273)-1(a\\252)-346(s)-1(i\\246)-347(sro)-27(dze)-1(,)-346(na)28(w)28(e)-1(t)-346(m)-1(a\\252o)-346(wie)-1(l)1(e)-347(s)-1(\\252ysza\\252)-1(a,)-346(b)-27(o)-347(an)1(o)]TJ 0 -13.549 Td[(wraca\\242)-389(b)29(y\\252o)-388(p)-27(otrze)-1(b)1(a)-388(do)-387(dom)27(u)1(,)-388(wraca\\242,)-388(a)-388(j)1(e)-1(j)-387(tak)-387(b)28(y\\252o)-388(\\273al)-388(wyc)27(h)1(o)-28(d)1(z)-1(i\\242)-388(st\\241d,)-387(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-334(z)-334(p\\252acz)-1(em)-334(si\\246)-334(p)-27(o)-28(d)1(nios\\252a)-334(i)-333(w)28(olno)-333(a)-333(c)-1(i\\246\\273k)28(o)-334(p)-27(os)-1(z\\252a.)]TJ 27.879 -13.55 Td[(A)-262(w)-263(dom)28(u)-262(gw)27(ar)1(niej)-262(jesz)-1(cz)-1(e)-263(b)29(y\\252o)-263(i)-262(w)28(e)-1(se)-1(lej)-262(n)1(i\\271)-1(li)-262(p)1(rz\\363)-28(dzi.)-262(Nas)-1(t)1(k)55(a)-262(Go\\252\\246bian)1(k)55(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(le)-1(cia\\252a)-333(i)-334(gzi\\252y)-333(si\\246)-334(z)-334(J\\363zk)56(\\241,)-333(a\\273)-334(na)-333(dr)1(o)-28(dze)-334(b)28(y\\252o)-333(s\\252)-1(y)1(c)27(ha\\242.)]TJ 27.879 -13.549 Td[({)-333(Wiec)-1(ie,)-333(a)-333(to)-334(mo)-56(j)1(a)-334(r)1(\\363z)-1(ga)-333(zakwit\\252a!)-333({)-334(k)1(rz)-1(y)1(kn\\246\\252a)-334(d)1(o)-334(c)28(ho)-28(d)1(z)-1(\\241cej)-333(Jagn)28(y)84(.)]TJ 0 -13.549 Td[({)-333(Jak)56(a)-334(r)1(\\363z)-1(ga?)]TJ 0 -13.549 Td[({)-284(A)-283(tom)-284(j\\241)-284(u)1(c)-1(i)1(\\246)-1(\\252a)-284(w)-283(J\\246)-1(d)1(rze)-1(j)1(ki,)-284(zasadzi\\252am)-284(w)-284(piase)-1(k)1(,)-284(tr)1(z)-1(yma\\252am)-284(na)-283(piec)-1(u)-283(i)]TJ -27.879 -13.55 Td[(zakwit\\252a!)-306(Zagl\\241da\\252am)-307(w)28(cz)-1(ora)-55(j,)-306(n)1(ie)-307(b)28(y)1(\\252)-1(o)-306(j)1(e)-1(sz)-1(cz)-1(e)-306(ani)-306(jedn)1(e)-1(go)-306(kwiatu)1(s)-1(zk)56(a,)-306(a)-307(p)1(rze)-1(z)]TJ 0 -13.549 Td[(no)-27(c)-334(c)-1(a\\252k)1(ie)-1(m)-333(z)-1(akwitn)1(\\246)-1(\\252a,)-333(p)1(atrzc)-1(ie!)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(nios\\252a)-241(ostro\\273ni)1(e)-241(garn)1(c)-1(ze)-1(k)-239(w)-1(y)1(p)-28(e\\252nion)29(y)-240(piaskiem)-1(,)-239(w)-241(kt\\363r)1(ym)-240(tkwi\\252a)-240(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(ra)-333(ga\\252\\246)-1(\\271)-333(w)-1(i)1(\\261)-1(n)1(io)28(w)27(a,)-333(obsyp)1(ana)-333(delik)56(atn)28(y)1(m)-334(kwiatem)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(rze)-1(\\261nia,)-333(k)1(w)-1(i)1(a)-1(t)1(usz)-1(ki)-333(r)1(\\363\\273)-1(o)28(w)27(e)-333(i)-333(pac)27(h)1(n\\241ce)-1(!)-333({)-333(s)-1(zepn\\241\\252)-333(Witek)-333(p)-27(o)27(w)28(a\\273)-1(n)1(ie.)]TJ 0 -13.55 Td[({)-333(A)-334(p)1(ra)28(wda,)-333(trze)-1(\\261ni)1(a!)]TJ 0 -13.549 Td[(Ob)1(s)-1(t\\241)-27(pili)-287(dok)28(o\\252a)-287(i)-288(z)-288(dziwn\\241)-287(rad)1(o)-1(\\261ci\\241)-288(a)-288(p)-27(o)-28(d)1(z)-1(i)1(w)27(em)-288(p)-28(ogl)1(\\241)-1(d)1(ali)-287(na)-288(ok)1(w)-1(i)1(e)-1(con\\241,)]TJ -27.879 -13.549 Td[(w)28(oniej\\241c\\241)-479(ga\\252)-1(\\246\\271,)-479(na)-479(to)-479(w)27(es)-1(z\\252a)-479(Jagust)28(ynk)56(a,)-479(ale)-479(dzis)-1(i)1(a)-56(j)-479(b)28(y)1(\\252a)-480(j)1(u\\273)-479(p)-28(o)-479(da)28(wnem)27(u)]TJ 0 -13.549 Td[(du)1(fn)1(a)-334(w)-333(s)-1(i)1(e)-1(b)1(ie)-1(,)-333(wrzas)-1(k)1(liw)28(a,)-333(hard)1(a)-334(i)-333(b)1(ac)-1(z\\241c)-1(a,)-333(ab)28(y)-333(i)1(no)-333(dogry)1(\\271)-1(\\242)-334(k)28(om)28(u,)-333(a)-333(dob)1(rze)-1(.)]TJ 27.879 -13.549 Td[({)-394(Zakwit\\252a)-394(r\\363zga,)-394(pr)1(a)27(wd)1(a,)-394(ale)-395(n)1(ie)-395(l)1(a)-394(c)-1(iebi)1(e)-1(,)-394(J\\363zia,)-394(tob)1(ie)-395(j)1(e)-1(szc)-1(ze)-395(rzem)-1(ie\\253)]TJ -27.879 -13.55 Td[(p)-27(otrze)-1(b)1(n)28(y)-333(ab)-28(o)-333(i)-333(c)-1(o)-333(t)28(w)28(ardsz)-1(e!)-333({)-333(rz)-1(ek\\252a)-333(z)-1(ar)1(az)-334(na)-333(ws)-1(t\\246pi)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(l)1(a)-334(mni)1(e)-334(z)-1(ak)1(w)-1(it)1(\\252)-1(a,)-333(samam)-334(w)-334(n)1(o)-28(c)-334(J\\246dr)1(z)-1(ejk)28(o)28(w)28(\\241)-334(u)1(c)-1(ie\\252a,)-333(s)-1(amam...)]TJ 0 -13.549 Td[({)-441(M\\252\\363)-28(d)1(k)55(a)-441(jesz)-1(cz)-1(e)-442(j)1(e)-1(ste\\261)-1(,)-441(to)-441(p)-27(e)-1(wnie)-441(la)-441(Nas)-1(tki)-441(\\261lu)1(b)-441(w)-1(r)1(\\363\\273)-1(y)1(!)-442({)-441(t\\252u)1(m)-1(acz)-1(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagu)1(\\261)-1(.)]TJ 27.879 -13.549 Td[({)-321(W)-321(garn)1(c)-1(ze)-1(k)-321(wsadza\\252y\\261)-1(m)28(y)-321(raze)-1(m,)-321(ale)-321(s)-1(ama)-321(ucin)1(a\\252)-1(am,)-321(to)-321(la)-321(mni)1(e)-322(zakwi-)]TJ -27.879 -13.55 Td[(t\\252a!..)1(.)-333({)-334(wrze)-1(sz)-1(cza\\252)-1(a)-333(i)-333(a\\273)-334(n)1(a)-334(p)1(\\252ac)-1(z)-334(si\\246)-334(j)1(e)-1(j)-332(z)-1(bi)1(e)-1(r)1(a\\252)-1(o,)-333(\\273e)-334(n)1(ie)-334(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(a)-55(j\\241.)]TJ 27.879 -13.549 Td[({)-283(Je)-1(sz)-1(cz)-1(e)-284(ci)-283(c)-1(zas)-284(gani)1(a\\242)-284(z)-1(a)-283(parob)1(k)56(am)-1(i)-283(i)-283(w)-1(y)1(s)-1(ta)28(w)28(a\\242)-284(na)-283(prze\\252)-1(azac)27(h)1(;)-284(starszym)]TJ -27.879 -13.549 Td[(pr)1(z)-1(\\363)-27(dzi)-409(p)-28(or)1(a,)-409(s)-1(tar)1(s)-1(zym!)-409({)-410(m\\363)28(wi\\252a)-409(nie)-409(patrz\\241c)-410(n)1(a)-409(nik)28(ogo,)-409(a)-409(u)1(\\261)-1(miec)27(ha\\252a)-409(si\\246)-410(ku)]TJ 0 -13.549 Td[(Nastc)-1(e)-395({)-395(c)-1(i)1(c)27(ho)-395(n)1(o,)-395(J\\363zia.)-395(Wi)1(e)-1(cie)-1(,)-394(a)-395(to)-395(w)-395(no)-28(cy)-395(Magd)1(a)-395(o)-28(d)-394(organi)1(s)-1(t\\363)28(w)-395(z)-1(l)1(e)-1(g\\252a)-395(w)]TJ 0 -13.549 Td[(kr)1(uc)27(h)1(c)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-281(C)-1(u)1(de\\253k)56(a)-281(pr)1(a)27(wicie!)-281({)-282(\\233eb)28(y)-281(to)-281(c)-1(u)1(de\\253k)56(a,)-281(ale)-282(p)1(ra)28(wdziw)27(\\241)-281(p)1(ra)28(w)-1(d)1(\\246)-1(!)-281(Jam)28(br)1(o\\273)-1(y)]TJ -27.879 -13.55 Td[(sz)-1(ed\\252)-333(dzw)27(on)1(i\\242)-334(i)-333(nast\\241)-28(p)1(i\\252)-334(n)1(a)-333(ni\\241..)1(.)]TJ 27.879 -13.549 Td[({)-333(M\\363)-56(j)-332(Je)-1(zus!)-333(I)-334(n)1(ie)-334(pr)1(z)-1(emarz)-1(\\252a!)]TJ 0 -13.549 Td[({)-313(Boga\\242)-314(t)1(a)-313(nie,)-313(d)1(z)-1(iec)27(k)28(o)-313(n)1(a)-313(\\261m)-1(ier\\242)-313(zam)-1(arz\\252o!)-313(a)-313(M)1(agda)-313(ledwie)-313(zipi)1(e)-1(.)-313(W)1(z)-1(i\\246li)]TJ -27.879 -13.549 Td[(j\\241)-300(n)1(a)-300(pl)1(e)-1(b)1(ani\\246)-300(i)-300(cuc\\241)-300(jes)-1(zc)-1(ze...)-300(a)-300(l)1(e)-1(p)1(ie)-1(j)1(,)-300(\\273e)-1(b)28(y)-299(nie)-300(do)-27(c)-1(u)1(c)-1(il)1(i...)-299(c)-1(o)-300(j)1(e)-1(j)-299(z)-1(a)-300(n)1(ie)-1(w)28(ola)-300(\\273y\\242,)]TJ 0 -13.549 Td[(co)-334(za)-334(d)1(obr)1(o)-334(j)1(\\241)-334(cz)-1(ek)56(a:)-333(c)-1(ierp)1(ienie)-334(an)1(o)-333(i)-334(h)1(aro)28(w)27(an)1(ie!)]TJ 27.879 -13.55 Td[({)-348(P)28(o)28(wiada\\252)-348(M)1(ate)-1(u)1(s)-1(z,)-348(\\273)-1(e)-348(jak)-347(j\\241)-348(organ)1(ist)27(y)-347(w)-1(y)1(p)-28(\\246dzi\\252y)-348(p)1(rz)-1(y)1(c)27(ho)-27(dzi\\252a)-348(c)-1(i\\246giem)]TJ -27.879 -13.549 Td[(do)-432(m)-1(\\252yn)1(a)-433(i)-433(tam)-433(p)1(rze)-1(siady)1(w)27(a\\252a,)-433(al)1(e)-434(p)-27(otem)-434(F)84(ran)1(e)-1(k)-432(j\\241)-433(spr)1(a\\252)-433(i)-433(wygon)1(i\\252,)-433(p)-27(ono)-433(z)]TJ\nET\nendstream\nendobj\n749 0 obj <<\n/Type /Page\n/Contents 750 0 R\n/Resources 748 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n748 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n753 0 obj <<\n/Length 8771      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(232)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(17.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(m\\252ynar)1(z)-1(o)28(w)27(ego)-333(przyk)56(az)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-336(C\\363\\273)-336(to)-336(mia\\252)-336(z)-336(ni\\241)-336(zrob)1(i\\242)-1(,)-335(w)-336(ramki)-336(op)1(ra)28(wi\\242)-336(i)-336(na)-335(\\261)-1(ciani)1(e)-337(p)-27(o)28(w)-1(i)1(e)-1(si\\242!)-336(Ch\\252op)]TJ -27.879 -13.549 Td[(on)-330(jes)-1(t)-330(jak)-330(i)-331(d)1(rugi)1(e)-1(,)-330(przysi\\246ga\\252)-1(,)-330(jak)-330(s)-1(i)1(\\246)-1(ga\\252,)-330(a)-331(dosta\\252,)-331(zapr)1(z)-1(es)-1(t)1(a\\252)-1(!)-330(Ju\\261ci,)-331(b)-27(ez)-332(win)29(y)]TJ 0 -13.549 Td[(on)-367(n)1(ie)-368(j)1(e)-1(st,)-367(ale)-368(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ce)-1(j)-366(w)-1(i)1(no)28(w)27(ate)-367(organi)1(s)-1(t)28(y!)-367(P)29(\\363ki)-367(z)-1(d)1(ro)28(w)27(a)-367(b)28(y)1(\\252)-1(a)-367(to)-367(oral)1(i)-367(w)-368(n)1(i\\241)]TJ 0 -13.549 Td[(kiej)-296(w)-296(te)-297(dw)28(a)-296(w)27(o\\252y)84(,)-296(s)-1(ama)-296(jedna)-296(rob)1(i\\252a)-296(w)-1(szys)-1(tk)28(o,)-296(a)-296(ma\\252e)-297(to)-296(gos)-1(p)-27(o)-28(d)1(ars)-1(t)28(w)28(o)-296(m)-1(a)-55(j\\241?)]TJ 0 -13.55 Td[(Sam)28(yc)27(h)-229(kr\\363)28(w)-231(p)1(i\\246\\242)-1(,)-230(a)-230(dziec)-1(isk)28(\\363)28(w)-231(t)28(yl)1(e)-1(,)-230(\\261w)-1(i)1(\\253,)-230(gad)1(z)-1(in)29(y)83(,)-230(p)-27(ola)-230(t)28(yle!)-230(A)-231(j)1(ak)-230(z)-1(ac)28(horo)28(w)28(a\\252a,)]TJ 0 -13.549 Td[(t\\241)-333(j\\241)-333(wygna\\252y)84(,)-333(\\261)-1(cie)-1(r)1(wy)-334(n)1(ie)-334(l)1(udzie!)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(o)-333(c)-1(\\363\\273)-334(si\\246)-334(zada)28(w)28(a\\252a)-334(z)-334(F)84(ran)1(kiem)-1(!)-333({)-333(wykr)1(z)-1(yk)1(n\\246\\252)-1(a)-333(Nastk)55(a.)]TJ 0 -13.549 Td[({)-255(T)83(o)-255(s)-1(amo)-255(b)28(y\\261)-256(zrob)1(i\\252a)-256(n)1(a)28(w)27(et)-255(z)-256(Ja\\261kiem)-1(,)-255(b)28(y)1(\\261)-256(ino)-255(wierzy\\252a,)-255(\\273)-1(e)-255(na)-255(z)-1(ap)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)]TJ -27.879 -13.549 Td[(p)-27(onies)-1(i)1(e)-1(!)]TJ 27.879 -13.549 Td[(Zap)-27(e)-1(rzy\\252a)-433(si\\246)-434(o)-433(t)1(o)-433(Nas)-1(tk)56(a)-433(i)-433(j)1(\\246)-1(\\252a)-433(p)1(rz)-1(egady)1(w)27(a\\242,)-433(ale)-433(ws)-1(ze)-1(d)1(\\252)-434(Bory)1(na,)-433(wi\\246c)]TJ -27.879 -13.55 Td[(obi)1(e)-334(pr)1(z)-1(ycic)28(h\\252y)83(.)]TJ 27.879 -13.549 Td[({)-484(Wiec)-1(ie)-485(o)-484(Magd)1(z)-1(ie!)-484(Ju\\273)-485(\\273ywie,)-485(d)1(om)-1(acali)-484(s)-1(i)1(\\246)-485(w)-485(ni)1(e)-1(j)-484(du)1(c)27(h)1(a,)-485(Jam)28(br)1(o\\273)-1(y)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiad)1(a,)-436(\\273e)-436(jes)-1(zc)-1(ze)-437(z)-436(p)1(ac)-1(ierz,)-436(a)-436(j)1(u\\273)-436(b)28(y)-435(pi\\246t)28(y)-436(p)-27(ok)56(az)-1(a\\252a)-436(\\261w)-1(i)1(atu;)-435(Ro)-28(c)27(h)1(o)-436(trze)-437(j)1(\\241)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(\\261ni)1(e)-1(giem)-334(i)-333(p)-27(oi,)-333(ale)-334(p)-27(ono)-333(lek)28(o)28(w)27(a\\242)-334(si\\246)-334(b)-27(\\246dzie)-334(m)27(u)1(s)-1(i)1(a\\252a)-334(d)1(\\252ugo.)]TJ 27.879 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-334(s)-1(i)1(\\246)-334(to)-333(p)-28(o)-28(d)1(z)-1(i)1(e)-1(j)1(e)-334(biedot)1(a,)-334(gd)1(z)-1(i)1(e)-1(?)]TJ 0 -13.55 Td[({)-333(C)-1(h)29(yba)-333(Koz\\252y)-333(m)27(usz\\241)-334(j)1(\\241)-334(wzi\\241\\242)-334(do)-333(sie)-1(b)1(ie,)-333(b)-28(o)-28(\\242)-333(to)-334(i)1(c)27(h)-333(kr)1(e)-1(wni)1(ac)-1(zk)55(a!)]TJ 0 -13.549 Td[({)-377(Koz\\252y!)-377(S)1(am)-1(e)-377(t)28(ym)-377(ino)-377(\\273yj\\241,)-376(c)-1(o)-377(gd)1(z)-1(ie)-377(ur)1(w)-1(i)1(\\241,)-377(wyc)-1(y)1(gani\\241)-377(alb)-27(o)-377(i)-377(u)1(krad)1(n\\241,)]TJ -27.879 -13.549 Td[(to)-469(z)-1(a)-469(c)-1(o)-470(b)-27(\\246d\\241)-469(j\\241)-470(l)1(e)-1(k)28(o)28(w)28(ali?)-470(T)28(yle)-470(gosp)-28(o)-27(darzy)-470(w)28(e)-470(ws)-1(i)1(,)-470(t)28(yl)1(e)-470(b)-28(ogacz)-1(y)84(,)-470(a)-469(ni)1(kto)-470(z)]TJ 0 -13.549 Td[(p)-27(oratu)1(nkiem)-334(n)1(ie)-334(spies)-1(zy!)]TJ 27.879 -13.549 Td[({)-368(J)1(u\\261c)-1(i,)-367(gos)-1(p)-27(o)-28(d)1(arze)-368(to)-368(ma)-56(j)1(\\241)-368(stud)1(nie)-368(n)1(ie)-1(p)1(rze)-1(b)1(ran)1(e)-1(,)-367(s)-1(amo)-368(i)1(m)-368(z)-368(nieba)-367(le)-1(ci,)]TJ -27.879 -13.55 Td[(\\273e)-397(i)1(no)-396(r)1(oz)-1(d)1(a)28(w)27(a\\242)-396(na)-395(ws)-1(ze)-396(s)-1(tr)1(on)28(y!)-395(Ka\\273)-1(d)1(y)-396(ma)-396(d)1(os)-1(y)1(\\242)-397(sw)28(o)-56(jego,)-395(c)-1(o)-396(m)28(u)-395(do)-396(ob)-27(cyc)27(h)1(!)]TJ 0 -13.549 Td[(Jes)-1(zc)-1(ze)-387(b)29(y)83(,)-386(\\273e)-1(b)29(ym)-386(k)55(a\\273dego,)-386(k)28(om)27(u)-385(p)-27(otrza,)-386(z)-387(d)1(rogi)-386(zbiera\\252,)-386(d)1(o)-386(dom)-386(z)-1(w)28(oz)-1(i)1(\\252;)-386(je\\261)-1(\\242)]TJ 0 -13.549 Td[(da)28(w)28(a\\252,)-247(le)-1(k)28(o)28(w)28(a\\252)-248(i)-247(mo\\273)-1(e)-248(j)1(e)-1(sz)-1(cze)-248(do)-28(c)28(h)28(tor\\363)28(w)-247(p\\252ac)-1(i)1(\\252!)-248(S)1(tara)-247(jes)-1(t)1(e)-1(\\261c)-1(ie,)-247(a)-248(w)-247(g\\252o)27(wie)-247(w)27(ama)]TJ 0 -13.549 Td[(pr)1(z)-1(ewie)-1(w)28(a.)]TJ 27.879 -13.549 Td[({)-452(P)1(ra)28(wda,)-452(\\273e)-452(m)27(u)1(s)-1(u)-451(ni)1(kt)-452(n)1(ie)-452(m)-1(a)-452(p)-27(omaga\\242)-452(dru)1(gim,)-452(ale)-452(cz)-1(\\252o)28(wie)-1(k)-451(te)-1(\\273)-452(n)1(ie)]TJ -27.879 -13.55 Td[(b)28(yd)1(le,)-333(\\273)-1(eb)28(y)-333(z)-1(d)1(yc)27(h)1(a\\252)-334(p)-27(o)-28(d)1(e)-334(p\\252otem)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(akie)-334(j)1(u\\273)-333(jes)-1(t)-333(i)-333(b)-28(\\246dzie)-334(u)1(rz\\241dze)-1(n)1(ie)-334(n)1(a)-334(\\261wie)-1(cie,)-333(z)-1(mienicie)-334(to?)]TJ 0 -13.549 Td[({)-344(Bac)-1(z\\246)-1(,)-344(\\273e)-345(d)1(a)27(wn)1(ie)-1(j)-343(pr)1(z)-1(ed)-344(w)28(o)-56(jn)1(\\241,)-344(jes)-1(zcz)-1(e)-344(z)-1(a)-344(pa\\253)1(s)-1(k)1(ic)27(h)-344(czas)-1(\\363)28(w,)-344(b)28(y\\252)-344(w)27(e)-344(ws)-1(i)]TJ -27.879 -13.549 Td[(sz)-1(p)1(ital)-387(dl)1(a)-387(biedn)29(yc)27(h)1(,)-387(w)-388(t)28(y)1(m)-388(d)1(om)27(u)1(,)-387(gdzie)-388(t)1(e)-1(raz)-387(organ)1(is)-1(t)1(a)-387(s)-1(iedzi,)-387(d)1(obrze)-387(bacz)-1(\\246,)]TJ 0 -13.549 Td[(i\\273)-334(z)-333(m)-1(or)1(ga)-334(p)1(\\252ac)-1(il)1(i.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-334(si\\246)-334(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(\\252)-334(i)-333(ni)1(e)-334(c)27(h)1(c)-1(ia\\252)-333(o)-333(t)28(ym)-334(m\\363)28(w)-1(i)1(\\242)-334(w)-1(i)1(\\246)-1(ce)-1(j)1(:)]TJ 0 -13.549 Td[({)-333(Gadan)1(ie)-334(n)1(as)-1(ze)-334(t)28(yle)-333(z)-1(rob)1(i,)-333(co)-334(u)1(m)-1(ar)1(\\252)-1(em)27(u)-332(k)55(ad)1(z)-1(eni)1(e)-334(z)-1(ak)28(o\\253)1(c)-1(zy\\252)-333(c)27(hm)28(ur)1(nie:)]TJ 0 -13.549 Td[({)-333(P)28(ew)-1(n)1(ie,)-334(\\273e)-334(n)1(ie)-334(p)-27(omo\\273)-1(e,)-333(p)-28(ewnie!)-333(Kto)-333(ni)1(e)-334(ma)-334(se)-1(r)1(c)-1(a)-333(mi\\252os)-1(i)1(e)-1(rn)1(e)-1(go)-333(la)-333(lu)1(dz-)]TJ -27.879 -13.549 Td[(kiego)-327(skr)1(z)-1(yb)-27(otu)1(,)-327(tem)27(u)-326(i)-326(p\\252ak)56(ani)1(a)-327(s\\241)-327(zb)-28(\\246dn)1(e)-1(!)-326(Kom)28(u)-326(jes)-1(t)-326(dob)1(rz)-1(e,)-326(te)-1(m)28(u)-326(s)-1(i\\246)-327(wid)1(z)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-334(ws)-1(zys)-1(t)1(k)28(o)-334(si\\246)-334(d)1(z)-1(ieje)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-1(,)-333(jak)-333(p)1(rzynal)1(e)-1(\\273y)83(,)-333(jak)-333(P)29(an)-333(B)-1(\\363g)-333(pr)1(z)-1(y)1(k)55(aza\\252!)]TJ 27.879 -13.549 Td[(Ale)-427(j)1(u\\273)-426(na)-426(to)-426(B)-1(or)1(yna)-426(s)-1(i)1(\\246)-427(ni)1(e)-427(o)-28(dezw)27(a\\252,)-426(wie)-1(c)-426(Jagust)28(ynk)56(a)-426(z)-1(wr\\363)-27(c)-1(i\\252a)-426(si\\246)-427(do)]TJ -27.879 -13.55 Td[(Nastki:)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-334(tam)-334(M)1(ate)-1(u)1(s)-1(zo)27(w)28(e)-334(b)-27(oki,)-333(lepi)1(e)-1(j)1(?)]TJ 0 -13.549 Td[({)-333(Mateusz)-1(?)-333(C)-1(\\363\\273)-333(m)27(u)-333(si\\246)-334(to)-333(s)-1(t)1(a\\252)-1(o?..)1(.)]TJ 0 -13.549 Td[({)-491(Nie)-492(wiec)-1(ie?..)-491({)-492(za)28(w)27(o\\252a\\252a)-491(Nas)-1(tk)56(a.)-491({)-491(A)-492(to)-491(p)1(rz)-1(ed)-491(\\261w)-1(i)1(\\246)-1(tami)-491(jes)-1(zc)-1(ze)-1(,)-491(w)28(e)]TJ -27.879 -13.549 Td[(wtorek,)-279(w)-1(id)1(z)-1(i)-279(mi)-280(si\\246,)-280(w)28(as)-1(z)-280(An)28(tek)-280(go)-279(p)-28(ob)1(i\\252;)-280(za)-280(or)1(z)-1(yd)1(le)-280(wz)-1(i\\241\\252,)-279(wyni)1(\\363s)-1(\\252)-280(z)-280(m\\252yni)1(c)-1(y)-279(i)]TJ 0 -13.55 Td[(tak)-276(c)-1(i)1(e)-1(p)1(n\\241\\252)-276(o)-277(p)1(\\252)-1(ot)1(,)-277(\\273e)-277(cz)-1(tery)-276(\\273e)-1(rd)1(ki)-276(p)-27(\\246)-1(k\\252y)84(,)-276(w)-1(p)1(ad\\252)-276(do)-276(w)27(o)-28(d)1(y)-276(i)-276(le)-1(d)1(w)-1(i)1(e)-277(s)-1(i)1(\\246)-277(nie)-276(utop)1(i\\252.)]TJ 0 -13.549 Td[(Chor)1(uje)-289(teraz,)-289(kr)1(w)-1(i)1(\\241)-289(plu)1(je,)-289(r)1(uc)27(h)1(a\\242)-289(s)-1(i\\246)-289(n)1(ie)-289(m)-1(o\\273e)-1(.)-288(Jam)27(b)1(ro\\273y)-289(p)-27(o)27(wiad)1(a)-56(j)1(\\241,)-289(\\273e)-290(m)28(u)-288(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n752 0 obj <<\n/Type /Page\n/Contents 753 0 R\n/Resources 751 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n751 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n756 0 obj <<\n/Length 8646      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(233)]TJ -358.232 -35.866 Td[(mac)-1(ica)-333(prze)-1(wr)1(\\363)-28(c)-1(i)1(\\252)-1(a)-333(i)-333(cz)-1(tery)-333(\\273e)-1(b)1(ra)-333(p)-28(\\246k\\252y!)-333(A)-333(tak)-333(j\\246c)-1(zy)-333(c)-1(i\\246giem)-1(,)-333(tak)-333(st\\246)-1(k)56(a!)]TJ 27.879 -13.549 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-1(a)-333(si\\246)-1(.)]TJ 0 -13.549 Td[(Jagn)1(a)-298(p)-27(orw)28(a\\252a)-297(s)-1(i\\246)-297(na)-297(p)1(ie)-1(r)1(w)-1(sze)-298(s\\252)-1(o)28(w)28(a,)-297(jakb)29(y)-297(j\\241)-297(kto)-297(\\273gn\\241\\252)-297(w)-297(s)-1(ame)-298(se)-1(r)1(c)-1(e,)-297(b)-28(o)]TJ -27.879 -13.549 Td[(zaraz)-362(jej)-361(pr)1(z)-1(y)1(s)-1(z\\252)-1(o)-361(do)-361(g\\252o)28(w)-1(y)84(,)-361(\\273)-1(e)-362(t)1(o)-362(p)-27(e)-1(wn)1(ie)-362(o)-362(n)1(i\\241,)-361(ale)-362(wnet)-361(przysiad\\252a)-361(z)-1(n)1(o)28(w)-1(u)-361(n)1(a)]TJ 0 -13.549 Td[(skrzyni)-333(i)-333(j\\246\\252a)-333(przycis)-1(k)56(a\\242)-334(\\252y)1(pi\\241ce)-334(p)-27(o)27(wieki)-333(do)-333(wi\\261nio)28(wyc)27(h)-332(kwiat\\363)28(w)-334(a)-333(c)27(h\\252o)-27(dzi\\242)-1(.)1(..)]TJ 27.879 -13.55 Td[(Wsz)-1(y)1(s)-1(cy)-374(u)1(,)-374(dom)28(u)-373(b)28(yli)-373(z)-1(d)1(umieni,)-373(b)-28(o)-373(o)-374(niczym)-374(nie)-374(wiedzie)-1(l)1(i,)-374(p)-27(o)-374(ca\\252e)-1(j)-373(ws)-1(i)]TJ -27.879 -13.549 Td[(m\\363)27(wion)1(o)-333(o)-334(t)28(ym)-333(o)-28(d)-333(p)-27(o)-28(c)-1(z\\241tku)1(,)-333(a)-334(d)1(o)-334(Bory)1(n\\363)28(w)-334(n)1(ie)-334(dosz\\252)-1(o.)]TJ 27.879 -13.549 Td[({)-270(T)84(ra\\014\\252)-269(s)-1(w)28(\\363)-56(j)-269(na)-269(s)-1(w)28(ego,)-270(zb)-28(\\363)-55(j)-269(na)-269(z)-1(b)-27(\\363)-56(j)1(a,)-270(n)1(ie)-270(uk)1(rz)-1(y)1(w)-1(d)1(z)-1(\\241)-269(s)-1(i)1(\\246)-270(z)-1(an)1(adto!)-269({)-270(mru)1(k-)]TJ -27.879 -13.549 Td[(n\\241\\252)-286(s)-1(tar)1(y)83(,)-286(ale)-287(z)-1(\\252y)-286(b)28(y\\242)-287(m)28(usia\\252,)-287(b)-27(o)-287(si\\246)-287(n)1(am)-1(ar)1(s)-1(zc)-1(zy\\252)-287(i)-286(j\\241\\252)-287(d)1(rewk)55(a)-286(rzuca\\242)-288(d)1(o)-287(k)28(omin)1(a.)]TJ 27.879 -13.549 Td[({)-333(O)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(p)-28(ob)1(ili?)-333({)-333(s)-1(p)28(y)1(ta\\252a)-334(p)-27(\\363\\271)-1(n)1(iej)-333(Jagna.)]TJ 0 -13.549 Td[({)-333(O)-333(c)-1(iebi)1(e)-1(!)-333({)-333(w)27(ark)1(n\\246\\252a)-334(ze)-334(z\\252)-1(o\\261ci\\241)-334(stara.)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)-333(m\\363)28(w)27(cie)-334(p)1(ra)28(w)-1(d)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-256(Rz)-1(ek\\252am!)-256(Mate)-1(u)1(s)-1(z)-256(s)-1(i)1(\\246)-257(c)27(h)28(w)28(ali\\252)-256(w)28(e)-257(m\\252ynie)-256(pr)1(z)-1(ed)-256(c)27(h)1(\\252o)-1(p)1(ami)-256(\\273)-1(e)-257(cz\\246)-1(sto)-256(b)28(yw)28(a\\252)]TJ -27.879 -13.549 Td[(u)-325(c)-1(i)1(e)-1(b)1(ie)-326(w)-326(k)28(omorz)-1(e,)-325(An)28(tek)-326(to)-325(p)-28(os\\252ysz)-1(a\\252)-326(i)-325(p)-27(obi\\252)-325(go!)-326(Jak)-325(te)-326(psy)-325(o)-326(suk)28(\\246)-326(,.t)1(a)-1(k)-325(si\\246)-326(o)]TJ 0 -13.549 Td[(cie)-1(b)1(ie)-334(zagryza)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(jcie)-334(d)1(o)-334(\\261mie)-1(c)28(h)28(u,)-333(b)-27(o)-333(m)-1(n)1(ie)-334(s\\252uc)27(h)1(a\\242)-334(ni)1(e)-1(letk)28(o.)]TJ 0 -13.55 Td[({)-292(Rozp)28(yta)-55(j)-292(si\\246)-292(na)-292(wsi,)-292(k)1(ie)-1(j)-291(mnie)-292(ni)1(e)-293(wierzysz)-1(,)-291(k)55(a\\273dy)-291(c)-1(i)-291(to)-292(sam)-1(o)-292(p)1(rzyt)28(wie)-1(r)1(-)]TJ -27.879 -13.549 Td[(dzi,)-333(p)1(rz)-1(ecie)-1(c)28(h)-333(nie)-333(pra)28(wi\\246,)-333(\\273)-1(e)-334(M)1(ate)-1(u)1(s)-1(z)-333(pra)28(wd\\246)-334(gad)1(a\\252,)-333(a)-334(i)1(no,)-333(c)-1(o)-333(m\\363)28(w)-1(i)1(\\252)-334(lu)1(dziom,..)]TJ 27.879 -13.549 Td[({)-333(C)-1(y)1(gan)-333(paskud)1(n)28(y)84(,)-334(cygan)1(!)]TJ 0 -13.549 Td[({)-333(Oc)27(h)1(roni)-333(ci\\246)-334(to)-333(c)27(h)29(to)-334(o)-27(d)-333(plec)-1(i)1(uc)27(h)1(\\363)28(w)-1(!)-333(i)-333(za)-334(gr)1(ob)-28(em)-334(cz)-1(\\246s)-1(t)1(o)-334(n)1(ie)-334(d)1(aruj)1(\\241.)]TJ 0 -13.549 Td[({)-353(Dob)1(rz)-1(e,)-353(\\273e)-353(go)-353(p)-28(ob)1(i\\252,)-353(d)1(obrze)-1(,)-352(jes)-1(zc)-1(ze)-353(b)28(ym)-353(s)-1(ama)-353(do\\252o\\273y\\252a!)-353({)-353(sykn)1(\\246)-1(\\252a)-353(za-)]TJ -27.879 -13.55 Td[(wz)-1(i)1(\\246)-1(cie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(isz)-334(j)1(\\241,)-334(j)1(ak)-333(to)-334(k)1(urcz\\246)-1(ciu)-333(pazur)1(y)-333(jastrze)-1(b)1(ie)-1(j)1(\\241.)]TJ 0 -13.549 Td[({)-333(Za)-334(n)1(ie)-1(p)1(ra)28(wd\\246)-334(to)-333(b)28(y)1(m)-334(z)-1(ab)1(i\\252a)-333(z)-1(ar)1(az)-1(!)-333(Cygan)-333(\\261c)-1(ierw)28(o!)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(samo)-334(wsz)-1(ystkim)-333(m)-1(\\363)28(wi\\246,)-333(ino)-333(\\273e)-334(nie)-333(w)-1(i)1(e)-1(r)1(z)-1(\\241)-333(i)-333(na)-333(z)-1(\\246b)28(y)-333(c)-1(i)1(\\246)-334(bi)1(or\\241.)]TJ 0 -13.549 Td[({)-333(Jak)-333(im)-334(An)28(t)1(e)-1(k)-333(pr)1(z)-1(yt)1(nie)-334(ozory)84(,)-333(to)-333(z)-1(milkn)1(\\241!)]TJ 0 -13.55 Td[({)-447(Hale)-1(,)-447(z)-448(ca\\252ym)-448(\\261wiatem)-448(z)-1(a)28(wiedzie)-448(w)28(o)-56(j)1(n\\246)-448(o)-447(c)-1(i)1(e)-1(b)1(ie)-1(,)-447(co?)-448({)-447(s)-1(k)1(rz)-1(y)1(w)-1(i)1(\\252)-1(a)-447(si\\246)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261liwie.)]TJ 27.879 -13.549 Td[({)-257(A)-257(w)-1(y)-257(j)1(ak)-257(ten)-257(ju)1(dasz)-1(,)-257(p)-27(o)-28(d)1(p)-28(o)28(wiadacie)-257(s)-1(w)28(o)-56(j)1(e)-1(,)-257(a)-257(c)-1(i)1(e)-1(sz)-1(y)1(c)-1(ie)-257(s)-1(i\\246)-257(z)-258(cud)1(z)-1(ej)-257(bi)1(e)-1(d)1(y)83(.)]TJ 0 -13.549 Td[(Jagu)1(\\261)-256(sro)-28(d)1(z)-1(e)-255(s)-1(i\\246)-255(roze)-1(\\271li\\252a,)-254(m)-1(o\\273e)-256(p)1(ierws)-1(zy)-255(raz)-255(w)-255(\\273)-1(yciu)-254(do)-255(tego)-255(s)-1(top)1(nia,)-254(tak)55(a)]TJ -27.879 -13.549 Td[(b)28(y\\252a)-355(z)-1(\\252a)-356(n)1(a)-356(Mat)1(e)-1(u)1(s)-1(za,)-356(\\273e)-356(goto)27(w)28(a)-356(b)28(y)1(\\252a)-356(lec)-1(ie\\242)-356(i)-356(d)1(rze)-1(\\242)-356(go)-356(c)28(ho)-28(\\242b)28(y)-355(t)28(ym)-1(i)-355(pazur)1(am)-1(i)1(!)]TJ 0 -13.55 Td[(Nie)-334(zni)1(e)-1(s\\252ab)28(y)-333(te)-1(j)-333(z\\252o\\261)-1(ci,)-333(gd)1(yb)28(y)-333(ni)1(e)-334(ws)-1(p)-27(om)-1(i)1(nki)-333(o)-333(An)28(tku)-333(i)-333(o)-333(jego)-333(dob)1(ro)-28(ci!)]TJ 27.879 -13.549 Td[(Zalew)27(a\\252a)-373(j)1(\\241)-373(wie)-1(l)1(k)55(a)-372(c)-1(zu\\252o\\261\\242)-1(,)-372(niewyp)-28(o)28(wiedziana)-372(w)-1(d)1(z)-1(i)1(\\246)-1(cz)-1(n)1(o\\261)-1(\\242)-373(gorza\\252a)-373(w)-373(jej)]TJ -27.879 -13.549 Td[(se)-1(rcu,)-327(\\273)-1(e)-328(j)1(\\241)-328(obr)1(oni\\252)-327(i)-328(okr)1(z)-1(ywd)1(z)-1(i\\242)-328(n)1(ie)-328(da\\252.)-327(Ale)-328(m)-1(i)1(m)-1(o)-328(t)1(o)-328(tak)-328(si\\246)-328(cis)-1(k)56(a\\252a)-328(p)-27(o)-328(d)1(om)27(u)1(,)]TJ 0 -13.549 Td[(tak)-314(o)-315(b)29(yle)-315(co)-315(k)1(rzyc)-1(za\\252a)-315(n)1(a)-315(J\\363zk)28(\\246)-315(i)-314(Witk)56(a,)-314(a\\273)-315(si\\246)-315(stary)-314(z)-1(an)1(iep)-28(ok)28(oi\\252,)-314(p)1(rz)-1(y)1(s)-1(iad)1(\\252)-315(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(,)-333(z)-1(acz)-1(\\241\\252)-333(g\\252as)-1(k)56(a\\242)-334(p)-27(o)-334(t)28(w)28(arzy)-333(i)-333(p)28(yta\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(ci)-333(to,)-333(Jagu\\261,)-334(co?)]TJ 0 -13.55 Td[({)-333(A)-334(c\\363\\273)-334(b)28(y)84(,)-333(nic.)-333(Odsu\\253)1(c)-1(i)1(e)-334(s)-1(i)1(\\246)-1(,)-333(p)1(rz)-1(y)-333(l)1(udziac)28(h)-333(b)-28(\\246d\\241)-333(s)-1(i)1(\\246)-334(umilal)1(i!)]TJ 0 -13.549 Td[(Od)1(s)-1(u)1(n\\246\\252a)-334(go)-333(s)-1(zorstk)28(o.)]TJ 0 -13.549 Td[({)-364(Hal)1(e)-1(,)-363(b)-28(\\246dzie)-364(j)1(\\241)-364(g\\252ask)55(a\\252)-363(i)-364(wp)-27(\\363\\252)-364(jesz)-1(cz)-1(e)-364(b)1(ra\\252,)-364(d)1(z)-1(i)1(adyga)-363(jaki)1(\\261)-1(,)-363(niedo)-55(jd)1(a!)-364({)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(la\\252a)-228(z)-1(e)-229(z\\252)-1(o\\261ci\\241,)-229(b)-27(o)-229(p)1(ie)-1(r)1(ws)-1(zy)-229(r)1(a)-1(z)-229(sp)-27(os)-1(tr)1(z)-1(eg\\252a)-229(jego)-229(staro\\261\\242)-1(,)-228(pierwsz)-1(y)-228(raz)-229(obu)1(dzi\\252)]TJ 0 -13.549 Td[(si\\246)-392(w)-392(ni)1(e)-1(j)-391(ws)-1(tr)1(\\246)-1(t)-391(do)-391(niego)-392(i)-391(g\\252\\246)-1(b)-27(ok)56(a)-392(n)1(ie)-1(c)28(h\\246\\242)-1(,)-391(ni)1(e)-1(n)1(a)27(wi\\261\\242)-392(pr)1(a)27(wie.)-391(Z)-392(pr)1(z)-1(ycza)-56(jon)1(\\241)]TJ 0 -13.55 Td[(a)-388(rad)1(os)-1(n)1(\\241)-388(w)-1(zgard)1(\\241)-388(przygl\\241d)1(a\\252a)-388(m)27(u)-387(s)-1(i\\246)-388(te)-1(r)1(az)-1(,)-387(b)-28(o)-388(istotn)1(ie)-1(,)-387(w)-389(ostatni)1(c)27(h)-388(czas)-1(ac)27(h)]TJ 0 -13.549 Td[(p)-27(os)-1(tar)1(z)-1(a\\252)-333(s)-1(i\\246)-333(m)-1(o)-27(c)-1(n)1(o,)-334(p)-27(o)28(w\\252\\363)-28(c)-1(zy\\252)-333(nogami,)-333(garb)1(i\\252)-334(si\\246)-334(i)-333(r)1(\\246)-1(ce)-334(m)27(u)-333(si\\246)-334(t)1(rz)-1(\\246s\\252)-1(y)84(.)]TJ\nET\nendstream\nendobj\n755 0 obj <<\n/Type /Page\n/Contents 756 0 R\n/Resources 754 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n754 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n759 0 obj <<\n/Length 10165     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(234)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(17.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Dz)-1(i)1(ad)-333(te)-1(n)1(,)-333(niez)-1(gu)1(\\252a!)]TJ 0 -13.549 Td[(Otr)1(z)-1(\\241sn\\246\\252a)-335(s)-1(i\\246)-335(z)-335(obrzyd)1(z)-1(enia)-335(i)-334(t)28(ym)-336(u)1(s)-1(i)1(lni)1(e)-1(j)-334(m)27(y\\261la\\252a)-335(o)-335(An)28(tku)1(,)-335(i)-335(j)1(u\\273)-335(s)-1(i)1(\\246)-336(n)1(ie)]TJ -27.879 -13.549 Td[(br)1(oni\\252a)-263(pr)1(z)-1(ed)-263(w)-1(sp)-27(om)-1(in)1(k)56(am)-1(i)1(,)-264(i)-263(ni)1(e)-264(ucie)-1(k)56(a\\252a)-263(o)-28(d)-263(t)28(yc)27(h)-263(ku)1(s)-1(z\\241c)-1(y)1(c)27(h,)-263(s\\252o)-28(dki)1(c)27(h)-263(s)-1(zept\\363)28(w!)]TJ 27.879 -13.549 Td[(A)-264(d)1(z)-1(i)1(e)-1(\\253)-263(s)-1(i\\246)-264(d)1(\\252u\\273y\\252)-264(ogromnie,)-264(n)1(ie)-264(do)-264(wyt)1(rz)-1(y)1(m)-1(an)1(ia,)-264(\\273e)-264(c)-1(o)-264(c)28(h)28(wila)-264(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(na)-337(ganek,)-337(to)-338(d)1(o)-338(s)-1(ad)1(u)-337(z)-1(a)-337(dom)-338(i)-337(przez)-339(d)1(rze)-1(w)28(a)-338(p)1(atrzy\\252a)-338(n)1(a)-338(p)-27(ola...)-337(alb)-27(o)-338(ws)-1(p)1(iera\\252a)]TJ 0 -13.55 Td[(si\\246)-363(o)-363(c)27(h)1(ru\\261c)-1(i)1(an)28(y)-363(p)1(\\252ot,)-363(d)1(z)-1(i)1(e)-1(l\\241cy)-363(sad)-362(o)-28(d)-363(d)1(rogi,)-362(bi)1(e)-1(gn)1(\\241c)-1(ej)-363(za)-363(ws)-1(i)1(\\241)-363(wz)-1(d)1(\\252u\\273)-363(s)-1(ad)1(\\363)28(w)-363(i)]TJ 0 -13.549 Td[(zabud)1(o)28(w)27(a\\253)1(,)-300(i)-299(t\\246s)-1(k)1(liwymi)-300(o)-27(c)-1(zam)-1(i)-299(lecia\\252a)-300(w)28(e)-300(\\261)-1(wiat,)-299(n)1(a)-300(b)1(ia\\252e)-1(,)-299(\\261nie\\273)-1(n)1(e)-300(p)-27(ola,)-299(do)-299(b)-28(o-)]TJ 0 -13.549 Td[(r\\363)28(w)-256(c)-1(iemniej\\241cyc)27(h)1(,)-256(jeno)-256(\\273e)-257(ni)1(c)-257(ni)1(e)-257(roze)-1(zna)28(w)28(a\\252a,)-256(tak)-256(j\\241)-256(c)-1(a\\252\\241)-256(pr)1(z)-1(ejmo)28(w)27(a\\252a)-256(g\\252\\246)-1(b)-27(ok)56(a)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(\\242,)-333(\\273)-1(e)-333(z)-1(a)-333(ni\\241)-333(si\\246)-334(uj)1(\\241\\252)-334(i)-333(skrzywdzi\\242)-334(n)1(ie)-334(d)1(a\\252!)]TJ 27.879 -13.549 Td[({)-224(T)83(aki)-224(da\\252b)28(y)-224(rad)1(\\246)-225(ws)-1(zystkim?)-225(M)1(o)-28(c)-1(ar)1(z)-225(c)-1(i)-224(on)1(,)-225(mo)-28(carz!{)-224(m)27(y\\261la\\252a)-225(z)-224(tkliw)28(o\\261)-1(ci\\241.)]TJ -27.879 -13.549 Td[(Gd)1(yb)28(y)-333(si\\246)-334(zja)28(wi\\252)-334(teraz,)-333(w)-334(t)28(ym)-333(o)-28(c)-1(zymgnieni)1(u!)-333(ni)1(e)-334(opar)1(\\252ab)28(y)-333(m)27(u)-333(si\\246)-1(,)-333(n)1(ie!...)]TJ 27.879 -13.55 Td[(Br\\363g)-326(sta\\252)-326(n)1(iedalec)-1(zk)28(o,)-326(zaraz)-326(za)-326(d)1(rog\\241,)-325(w)-326(p)-28(ol)1(u)-326(n)1(iec)-1(o,)-325(wr\\363bl)1(e)-327(w)-325(nim)-326(\\261wie)-1(r)1(-)]TJ -27.879 -13.549 Td[(k)56(a\\252y)-452(i)-452(ca\\252ym)-1(i)-451(ban)1(dami)-452(c)27(h)1(roni)1(\\252)-1(y)-451(s)-1(i\\246)-452(do)-452(wielki)1(e)-1(j)-451(dziur)1(y)83(,)-452(j)1(ak)56(a)-452(b)28(y\\252a)-452(wybr)1(ana)-452(w)]TJ 0 -13.549 Td[(sianie;)-406(parob)1(k)28(o)28(w)-1(i)-406(ni)1(e)-408(c)28(hcia\\252o)-407(si\\246)-407(w\\252az)-1(i\\242)-407(i)-406(z)-407(wie)-1(r)1(z)-1(c)28(h)28(u)-406(z)-1(ru)1(c)-1(a\\242,)-406(c)27(ho)-27(\\242)-407(tak)-407(Boryn)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(k)55(azyw)28(a\\252,)-391(to)-391(s)-1(ku)1(ba\\252)-391(se)-392(p)-27(o)-391(\\271)-1(d)1(z)-1(iebk)1(u,)-391(k\\252ak)56(ami,)-391(a\\273)-392(i)-391(j)1(am\\246)-392(wys)-1(k)1(ub)1(a\\252)-1(,)-390(\\273)-1(e)-391(par\\246)]TJ 0 -13.549 Td[(lu)1(dzi)-333(m)-1(og\\252o)-333(s)-1(i)1(\\246)-334(w)-334(n)1(ie)-1(j)-333(p)-27(omie\\261)-1(ci\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(Wyj)1(d\\271!)-334(za)-333(br\\363g!)-333(W)1(yjd)1(\\271)-1(!)-333({)-333(p)-28(o)28(wtarza\\252a)-334(b)-27(ez)-1(wiedn)1(ie)-334(An)28(tk)28(o)28(w)28(\\241)-334(p)1(ro\\261b)-28(\\246.)]TJ 0 -13.549 Td[(Ucie)-1(k)1(\\252)-1(a)-402(do)-402(c)27(h)1(a\\252up)28(y)84(,)-402(b)-28(o)-402(z)-1(acz\\246)-1(li)-402(d)1(z)-1(w)28(oni\\242)-403(n)1(a)-403(n)1(ies)-1(zp)-28(or)1(y)83(,)-402(a)-402(jej)-402(s)-1(i\\246)-403(zac)27(h)1(c)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.549 Td[(sam)-1(ej)-333(i\\261\\242)-334(do)-333(k)28(o\\261c)-1(io\\252a,)-333(w)-334(g\\252u)1(c)27(h)1(e)-1(j)1(,)-334(n)1(iejasnej)-333(nad)1(z)-1(iei,)-333(\\273e)-334(go)-334(t)1(am)-334(s)-1(p)-27(otk)56(a.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-344(\\273e)-344(nie)-344(b)28(y)1(\\252)-1(o)-343(go)-344(w)-344(k)28(o\\261)-1(ciele)-1(,)-343(ale)-344(z)-1(a)-343(to)-344(sp)-28(otk)56(a\\252a)-344(si\\246)-344(z)-1(ar)1(az)-345(p)1(rzy)-344(w)28(e)-1(j)1(\\261)-1(ciu)]TJ -27.879 -13.549 Td[(w)-392(k)1(ruc)28(hcie)-392(z)-391(Hank)56(\\241,)-391(p)-28(o)-27(c)27(h)28(w)28(ali\\252a)-391(B)-1(oga)-391(ws)-1(tr)1(z)-1(y)1(m)27(uj)1(\\241c)-392(r\\246k)28(\\246)-392(p)1(rze)-1(d)-391(k)1(ropi)1(e)-1(ln)1(ic)-1(\\241,)-391(b)29(y)]TJ 0 -13.55 Td[(tam)28(ta)-423(pierwsz)-1(a)-423(u)1(m)-1(acz)-1(a\\252a)-423(p)1(alc)-1(e,)-423(Han)1(k)55(a)-422(z)-1(a\\261)-423(nie)-423(o)-28(d)1(rz)-1(ek\\252a)-423(p)-27(oz)-1(d)1(ro)28(wie)-1(n)1(iem)-424(i)-422(nie)]TJ 0 -13.549 Td[(si\\246)-1(gn)1(\\246)-1(\\252a)-444(p)-28(o)-444(w)27(o)-28(d)1(\\246)-445(\\261)-1(wi\\246c)-1(on)1(\\241,)-444(a)-445(pr)1(z)-1(es)-1(z\\252a)-445(mimo)-445(i)-444(tak)-444(j\\241)-445(u)1(derzy\\252a)-445(o)-28(cz)-1(ami)-444(jakb)29(y)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(e)-1(n)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(A\\273)-443(j)1(e)-1(j)-442(\\252zy)-442(s)-1(tan)1(\\246)-1(\\252y)-442(w)-442(o)-28(cz)-1(ac)27(h)-441(z)-443(tego)-443(sp)-28(ostp)-27(ono)28(w)28(ania)-442(i)-442(ja)28(wnej)-442(z\\252)-1(o\\261ci,)-442(ale)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(a)-260(w)-260(\\252a)28(w)27(ce)-261(i)-260(n)1(ie)-261(mog\\252a)-260(o)-28(cz)-1(\\363)28(w)-260(o)-28(derw)28(a\\242)-261(o)-28(d)-259(jej)-260(zm)-1(izero)28(w)27(an)1(e)-1(j)1(,)-260(blad)1(e)-1(j)-259(t)28(w)27(ar)1(z)-1(y)84(.)]TJ 27.879 -13.55 Td[({)-434(An)28(tk)28(o)28(w)28(a)-434(k)28(obieta,)-434(a)-434(tak)1(ie)-434(c)27(h)28(u)1(c)27(hr)1(o,)-434(tak)56(a)-434(m)-1(i)1(z)-1(erota,)-434(n)1(o,)-434(n)1(o!)-434({)-434(sn)28(u\\252o)-434(si\\246)]TJ -27.879 -13.549 Td[(jej)-348(p)-27(o)-348(g\\252o)28(wie)-1(,)-347(ale)-348(ryc)27(h)1(\\252o)-348(z)-1(ap)-27(omnia\\252a)-348(o)-348(n)1(ie)-1(j)1(,)-348(b)-27(o)-348(\\261)-1(p)1(iew)27(ali)-347(na)-348(c)28(h\\363rze)-349(i)-347(organ)28(y)-347(tak)]TJ 0 -13.549 Td[(pi)1(\\246)-1(kn)1(ie)-347(p)1(rze)-1(gry)1(w)27(a\\252y)84(,)-346(tak)-347(cic)28(ho)-346(a)-347(u)1(ro)-28(cz)-1(y)1(\\261)-1(cie)-1(,)-346(\\273e)-347(si\\246)-347(zatopi\\252a)-346(c)-1(a\\252ki)1(e)-1(m)-347(w)-346(m)27(u)1(z)-1(y)1(c)-1(e.)]TJ 0 -13.549 Td[(Nigd)1(y)-291(j)1(e)-1(sz)-1(cz)-1(e)-291(n)1(ie)-291(b)28(y\\252o)-291(j)1(e)-1(j)-290(tak)-291(d)1(obr)1(z)-1(e)-291(i)-290(s)-1(\\252o)-28(d)1(k)28(o)-291(w)-291(k)28(o\\261)-1(ciele,)-291(p)1(rz)-1(eni)1(gdy;)-290(nie)-291(mo)-28(d)1(li\\252a)]TJ 0 -13.549 Td[(si\\246)-414(n)1(a)28(w)27(et,)-413(ksi\\241\\273k)56(a)-413(le)-1(\\273a\\252a)-413(ni)1(e)-414(ot)28(w)28(arta,)-413(r)1(\\363\\273)-1(an)1(iec)-414(tk)1(w)-1(i)1(\\252)-413(w)-414(p)1(alcac)27(h)-412(nie)-413(z)-1(acz\\246)-1(t)28(y)84(,)-413(a)]TJ 0 -13.55 Td[(ona)-411(wzdyc)28(ha\\252a)-411(in)1(o,)-411(c)27(h)1(o)-28(dzi\\252a)-411(o)-28(cz)-1(ami)-411(p)-27(o)-411(m)-1(r)1(ok)56(ac)27(h,)-411(z)-411(w)28(olna)-411(p)1(\\252yn\\241cyc)27(h)-410(z)-412(oki)1(e)-1(n)1(,)]TJ 0 -13.549 Td[(p)-27(o)-425(obr)1(az)-1(ac)27(h)1(,)-425(p)-27(o)-425(s)-1(k)1(rze)-1(n)1(iac)27(h)-424(\\261)-1(wiate\\252)-425(i)-425(z\\252o)-28(c)-1(e\\253,)-424(p)-28(o)-425(t)28(yc)28(h)-425(f)1(arb)1(ac)27(h)-425(l)1(e)-1(d)1(w)-1(i)1(e)-426(wid)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(i)-499(n)1(ie)-1(s\\252a)-499(s)-1(i\\246)-499(du)1(s)-1(z\\241)-499(w)-499(z)-1(a\\261w)-1(i)1(at)28(y)83(,)-499(w)-499(te)-499(c)-1(u)1(dno\\261ci)-499(i)-499(nieba)-499(ob)1(raz\\363)27(w,)-499(w)-499(p)1(rz)-1(y)1(gas)-1(\\252e,)]TJ 0 -13.549 Td[(cic)27(h)1(n\\241ce)-428(d\\271wi\\246)-1(k)1(i,)-427(w)-427(roz)-1(mo)-28(d)1(lone)-427(\\261)-1(p)1(ie)-1(wy)84(,)-427(w)-428(\\261wi\\246t)27(y)-427(sp)-27(ok)28(\\363)-56(j)-427(ekstaz)-1(y)-427(i)-427(p)1(i\\252a)-427(takie)]TJ 0 -13.549 Td[(zap)-28(omni)1(e)-1(n)1(ie)-415(ws)-1(zys)-1(tk)1(ie)-1(go,)-414(\\273e)-415(ju)1(\\273)-415(nie)-415(b)1(ac)-1(zy\\252a,)-414(gdz)-1(i)1(e)-415(jes)-1(t,)-414(jeno)-414(s)-1(i)1(\\246)-415(jej)-414(w)-1(i)1(dzia\\252o,)]TJ 0 -13.549 Td[(\\273e)-373(\\261)-1(wi\\246c)-1(i)-372(zs)-1(t\\246pu)1(j\\241)-372(z)-373(ob)1(raz)-1(\\363)28(w,)-372(\\273)-1(e)-372(id\\241)-372(ku)-372(n)1(ie)-1(j)-372(z)-372(u\\261m)-1(iec)27(h)1(e)-1(m)-372(prze)-1(n)1(a)-56(j)1(s)-1(\\252o)-28(d)1(s)-1(zym,)-372(\\273)-1(e)]TJ 0 -13.55 Td[(te)-422(b\\252ogos\\252a)27(wi\\241ce)-423(r)1(\\246)-1(ce)-422(w)-1(y)1(c)-1(i\\241)-27(ga)-56(j\\241)-422(si\\246)-422(nad)-421(ni)1(\\241)-422(i)-422(dal)1(e)-1(j)-421(id\\241,)-421(nad)-421(c)-1(a\\252ym)-422(nar)1(o)-28(dem,)]TJ 0 -13.549 Td[(a\\273)-357(s)-1(i\\246)-357(pr)1(z)-1(yc)28(h)28(yli)1(\\252)-357(jak)28(o)-357(ten)-357(\\252an,)-356(a)-357(nad)-356(nim)-357(wiej\\241)-357(sz)-1(at)28(y)-357(b)1(\\252\\246)-1(ki)1(tne,)-357(s)-1(zat)28(y)-357(cz)-1(erw)28(one,)]TJ 0 -13.549 Td[(sp)-28(o)-55(jrzenia)-358(m)-1(i)1(\\252)-1(osiern)1(e)-1(,)-358(gran)1(ia)-359(n)1(ie)-1(wyp)-27(o)28(wie)-1(d)1(z)-1(i)1(ane,)-359(p)1(ie)-1(\\261ni)1(e)-359(dzi\\246)-1(k)28(czynn)1(e)-359({)-359(\\273e)-359(ju)1(\\273)-359(i)]TJ 0 -13.549 Td[(ni)1(e)-334(wyp)-27(o)27(wiedzie\\242)-1(!)]TJ 27.879 -13.549 Td[(Oc)28(kn\\246\\252a,)-361(gd)1(y)-360(s)-1(i\\246)-361(n)1(ies)-1(zp)-28(or)1(y)-360(s)-1(k)28(o\\253)1(c)-1(zy\\252y)-361(i)-360(u)1(m)-1(i)1(lk\\252y)-360(organ)28(y)84(,)-360(c)-1(isz)-1(a)-360(j\\241)-360(z)-1(b)1(ud)1(z)-1(i)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(z)-362(tego)-361(s)-1(enn)1(e)-1(go)-361(rozm)-1(ar)1(z)-1(eni)1(a,)-361(z)-362(\\273)-1(al)1(e)-1(m)-361(s)-1(i\\246)-361(p)-28(o)-28(d)1(ni)1(os)-1(\\252a)-361(i)-361(w)-1(y)1(c)27(ho)-27(dzi\\252a)-361(z)-362(dr)1(ugimi,)-361(ale)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-241(k)28(o\\261c)-1(i)1(o\\252)-1(em)-241(z)-1(n)1(o)27(wu)-241(si\\246)-241(s)-1(p)-27(otk)56(a\\252a)-241(z)-242(Han)1(k)55(\\241,)-241(k)1(t\\363ra)-241(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-241(na)-241(wp)1(ros)-1(t)1(,)-241(jakb)29(y)]TJ\nET\nendstream\nendobj\n758 0 obj <<\n/Type /Page\n/Contents 759 0 R\n/Resources 757 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 744 0 R\n>> endobj\n757 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n762 0 obj <<\n/Length 9405      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(235)]TJ -358.232 -35.866 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(a)-333(co)-334(r)1(z)-1(ec)-1(,)-333(ale)-333(ino)-333(s)-1(p)-27(o)-55(jrza\\252a)-334(n)1(iena)28(wis)-1(tn)1(ie)-334(i)-333(p)-27(os)-1(z\\252a.)]TJ 27.879 -13.549 Td[({)-305(W)1(ytrze)-1(szc)-1(za)-305(\\261le)-1(p)1(ie)-305(i)-304(m)27(y\\261li,)-304(.)-304(\\273)-1(e)-305(mni)1(e)-305(t)28(ym)-305(nastrasz)-1(y)84(,)-304(g\\252)-1(u)1(pi)1(a)-305({)-305(p)-27(om)28(y\\261)-1(l)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagn)1(a)-334(wr\\363)-28(ciwsz)-1(y)-333(do)-333(d)1(om)27(u.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-525(te\\273)-526(ju\\273)-525(b)28(y\\252)-526(zapad)1(\\252,)-526(wiec)-1(z\\363r)-525(c)-1(i)1(c)27(h)28(y)84(,)-526(omd)1(la\\252y)-526(j)1(aki\\261,)-526(\\261wi\\241tec)-1(zn)28(y;)]TJ -27.879 -13.549 Td[(mro)-28(cz)-1(n)1(o)-253(b)28(y\\252o)-253(n)1(a)-253(\\261)-1(wiec)-1(i)1(e)-1(,)-253(\\261wiat\\252o\\261)-1(ci)-253(gwiez)-1(d)1(ne)-253(p)-27(om)-1(d)1(la\\252y)-253(w)-253(m)-1(\\246tn)28(y)1(m)-254(n)1(iebie,)-253(\\273e)-254(in)1(o)]TJ 0 -13.55 Td[(gdzieniegdzie)-310(tr)1(ys)-1(k)1(ra\\252)-310(p)1(romie)-1(\\253)-309(j)1(aki,)-309(\\261)-1(n)1(ie)-1(g)-309(pr\\363szy\\252,)-310(op)1(ada\\252)-310(z)-310(w)28(oln)1(a,)-310(b)-27(e)-1(z)-310(sz)-1(eles)-1(tu)]TJ 0 -13.549 Td[(migota\\252)-333(z)-1(a)-333(s)-1(zybami)-333(i)-333(s)-1(n)29(u\\252)-333(s)-1(i\\246)-333(nies)-1(k)28(o\\253)1(c)-1(zon)28(ym,)-333(k\\252acz)-1(ast)28(ym)-334(p)1(rz)-1(\\246dziw)28(e)-1(m.)]TJ 27.879 -13.549 Td[(W)-331(iz)-1(b)1(ie)-332(b)28(y\\252o)-331(c)-1(ic)28(ho)-331(r\\363)28(w)-1(n)1(ie\\273)-332(i)-332(n)1(ie)-1(co)-332(se)-1(n)1(nie,)-331(przysz)-1(ed\\252)-332(S)1(z)-1(y)1(m)-1(ek)-332(zaraz)-332(z)-332(wie-)]TJ -27.879 -13.549 Td[(cz)-1(ora)-256(nib)29(y)-257(w)-257(o)-28(d)1(w)-1(i)1(e)-1(d)1(z)-1(in)29(y)83(,)-256(a)-257(g\\252\\363)28(w)-1(n)1(ie,)-257(b)28(y)-256(s)-1(i\\246)-257(z)-257(Nastk)55(\\241)-256(s)-1(p)-27(otk)56(a\\242)-1(,)-256(s)-1(i)1(e)-1(d)1(z)-1(ieli)-256(te)-1(\\273)-257(wp)-28(o)-27(dle)]TJ 0 -13.549 Td[(i)-308(cic)27(h)1(e)-309(wie)-1(d)1(li)-308(rozmo)27(wy)84(.)-308(B)-1(or)1(yn)28(y)-308(jesz)-1(cz)-1(e)-308(nie)-309(b)29(y\\252o.)-308(Jagust)28(ynk)56(a)-308(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-308(p)1(rz)-1(ed)-308(k)28(o-)]TJ 0 -13.549 Td[(minem)-346(ob)1(ie)-1(r)1(a)-56(j)1(\\241c)-346(z)-1(i)1(e)-1(mniak)1(i,)-345(a)-346(p)-27(o)-345(dru)1(giej)-345(s)-1(tr)1(onie)-346(P)1(ietrek)-345(prze)-1(gr)1(yw)28(a)-1(\\252)-345(z)-346(cic)27(h)1(a)-346(n)1(a)]TJ 0 -13.55 Td[(skrzypi)1(c)-1(y)84(,)-410(al)1(e)-410(tak)-410(j)1(ak)28(o\\261)-410(\\273)-1(a\\252o\\261liwie,)-409(\\273)-1(e)-410(\\212ap)1(a)-410(cz)-1(asam)-1(i)-409(sk)28(om)-1(l)1(a\\252)-410(i)-409(w)-1(y)1(\\252)-410(pr)1(z)-1(ec)-1(i)1(\\241)-28(gle.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-313(t)1(e)-1(\\273)-313(tam)-313(s)-1(iedzia\\252)-313(z)-313(J\\363z)-1(k)56(\\241,)-312(a\\273)-314(Jagn)1(a,)-313(kt\\363r)1(\\241)-313(rozbiera\\252o)-313(to)-312(grani)1(e)-1(,)-313(k)1(rzykn\\246\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(d)1(rz)-1(wi:)]TJ 27.879 -13.549 Td[({)-333(Przes)-1(ta\\253)1(,)-333(Pietrek,)-333(a)-334(t)1(o)-334(si\\246)-334(a\\273)-334(n)1(a)-333(p\\252ac)-1(z)-333(z)-1(b)1(ie)-1(r)1(a)-334(z)-333(te)-1(j)-333(m)28(uzyki!)]TJ 0 -13.549 Td[({)-333(Ja)-334(t)1(o)-334(b)28(y)1(m)-334(spa\\252a)-334(n)1(a)-56(j)1(lepiej)-333(pr)1(z)-1(y)-333(gran)1(iu)-333({)-333(z)-1(a\\261mia\\252a)-334(si\\246)-334(Jagu)1(s)-1(t)28(y)1(nk)56(a.)]TJ 0 -13.55 Td[(Ale)-300(s)-1(k)1(rzypki)-299(ucic)27(h)1(\\252y)83(,)-300(d)1(opi)1(e)-1(ro)-299(p)-28(o)-300(cz)-1(asie)-300(jaki)1(m)-1(\\261)-300(ozw)27(a\\252y)-300(si\\246)-300(c)-1(ic)28(h)28(ut)1(k)55(\\241,)-299(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(s\\252)-1(y)1(s)-1(zan\\241)-268(n)29(ut\\241)-268(za)-268(sta)-56(j)1(ni,)-267(b)-28(o)-267(tam)-268(s)-1(i\\246)-268(p)1(rz)-1(eni)1(\\363s)-1(\\252)-268(P)1(ietrek)-268(i)-268(d)1(\\252ugo)-268(w)-268(n)1(o)-28(c)-268(gra\\252.)-268(K)1(olac)-1(j)1(a)]TJ 0 -13.549 Td[(si\\246)-334(te\\273)-334(dogoto)28(wyw)28(a\\252a,)-334(gd)1(y)-333(p)-28(o)28(wr\\363)-27(c)-1(i\\252)-333(s)-1(t)1(ary)83(.)]TJ 27.879 -13.549 Td[({)-442(A)-442(to)-441(w)27(\\363)-55(jto)28(w)27(a)-441(z)-1(leg\\252a,)-442(r)1(w)27(ete)-1(s)-442(tam)-442(ni)1(e)-1(ma\\252y)83(,)-441(a\\273)-443(Domin)1(ik)28(o)28(w)27(a)-442(p)1(rze)-1(p)-27(\\246)-1(d)1(z)-1(a)]TJ -27.879 -13.549 Td[(lu)1(dzi,)-333(t)28(yla)-333(s)-1(i\\246)-333(nasz)-1(\\252o.)-333(T)83(rzeba)-333(b)28(y)-333(c)-1(i)1(,)-334(J)1(agu\\261)-1(,)-333(za)-56(j)1(rze)-1(\\242)-334(d)1(o)-333(niej)-333(ju)1(tro.)]TJ 27.879 -13.55 Td[({)-333(A)-334(zaraz)-334(p)-27(olec)-1(\\246,)-333(z)-1(ar)1(az)-1(!)-333({)-333(z)-1(a)28(w)28(o\\252a\\252)-1(a)-333(skw)27(ap)1(liwie)-334(a)-333(w)-333(ogniac)28(h)-333(c)-1(a\\252a.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-1(sz)-334(i)-333(z)-1(ar)1(az)-1(,)-333(p)-27(\\363)-56(j)1(d\\246)-334(z)-334(t)1(ob\\241.)]TJ 0 -13.549 Td[({)-343(E)1(...)-343(to)-342(ju\\273)-343(j)1(utro)-342(m)-1(o\\273e)-1(.)1(..)-343(p)-27(o)28(w)-1(i)1(adacie)-1(,)-342(\\273)-1(e)-343(t)28(yla)-343(tam)-343(n)1(aro)-28(d)1(u,)-343(w)28(ol\\246)-343(p)-27(o)-343(dn)1(iu,)]TJ -27.879 -13.549 Td[(\\261nieg)-398(pad)1(a,)-398(\\242ma!...)-397({)-398(t\\252umacz)-1(y\\252a)-398(zni)1(e)-1(c)28(h\\246c)-1(on)1(a)-398(nagle,)-398(a)-397(on)-398(i)-397(na)-397(to)-398(s)-1(i)1(\\246)-399(zgo)-28(d)1(z)-1(i\\252)-397(i)]TJ 0 -13.549 Td[(ni)1(e)-334(nasta)28(w)27(a\\252,)-333(ile)-333(\\273)-1(e)-334(i)-333(w)28(e)-1(sz\\252)-1(a)-333(aku)1(ratn)1(ie)-334(k)28(o)28(w)27(al)1(o)27(w)28(a)-333(z)-334(dzie\\242)-1(mi.)]TJ 27.879 -13.55 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(\\273)-334(to)-333(t)28(w)28(\\363)-56(j?)]TJ 0 -13.549 Td[({)-412(Z)-1(epsu\\252a)-412(s)-1(i)1(\\246)-413(m)-1(\\252o)-27(c)27(k)56(arni)1(a)-413(w)28(e)-413(W)83(ol)1(i,)-412(to)-413(go)-412(p)-27(oz)-1(w)28(ali,)-412(b)-27(o)-413(d)1(w)27(or)1(s)-1(ki)-412(k)28(o)28(w)27(al)-412(n)1(ie)]TJ -27.879 -13.549 Td[(umie)-333(obie)-334(p)-27(orad)1(z)-1(i)1(\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o\\261)-333(c)-1(z\\246)-1(sto)-333(te)-1(r)1(az)-334(je\\271)-1(d)1(z)-1(i)-333(d)1(o)-334(d)1(w)27(or)1(u?)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252a)-333(z)-1(n)1(ac)-1(z\\241c)-1(o)-333(Jagu)1(s)-1(t)28(yn)1(k)56(a.)]TJ 0 -13.549 Td[({)-333(Przes)-1(zk)55(ad)1(z)-1(a)-333(to)-333(w)27(ama?)]TJ 0 -13.55 Td[({)-333(C)-1(o)-333(b)28(y)-333(za\\261)-1(,)-333(u)28(w)28(a\\273)-1(am)-333(ino,)-333(miar)1(kuj)1(\\246)-334(i)-333(c)-1(ze)-1(k)56(am,)-333(c)-1(o)-333(z)-334(tego)-334(wyj)1(dzie...)]TJ 0 -13.549 Td[(Ale)-234(na)-233(t)28(ym)-234(s)-1(i)1(\\246)-235(sk)28(o\\253czy\\252o,)-234(b)-27(o)-234(n)1(ik)28(om)27(u)-233(ni)1(e)-235(c)28(hcia\\252o,)-234(si\\246)-234(wie)-1(\\261\\242)-234(g\\252up)1(ie)-1(j)-233(rozmo)27(wy)]TJ -27.879 -13.549 Td[(la)-288(d)1(ru)1(gic)27(h)1(,)-288(k)56(a\\273)-1(d)1(y)-288(p)-27(ogady)1(w)27(a\\252)-288(z)-288(c)-1(i)1(c)27(ha)-287(i)-288(leni)1(w)-1(i)1(e)-1(,)-287(s)-1(enn)1(o\\261)-1(\\242)-288(ogarn)1(ia\\252a)-288(ws)-1(zystkic)27(h)-287(b)-27(e)-1(z)]TJ 0 -13.549 Td[(ma\\252a)-449(z)-448(w)27(cz)-1(or)1(a)-56(jsze)-1(go)-448(ni)1(e)-1(wyw)28(c)-1(zas)-1(o)28(w)28(ania,)-448(\\273e)-449(n)1(a)27(w)28(e)-1(t)-448(k)28(ol)1(ac)-1(j)1(\\246)-449(jedli)-448(b)-27(ez)-449(sm)-1(aku)1(,)-448(a)]TJ 0 -13.549 Td[(in)1(o)-428(ten)-427(i)-427(\\363)27(w)-427(z)-428(p)-28(o)-27(dziw)27(em)-428(sp)-28(ogl)1(\\241da\\252)-428(n)1(a)-428(Jagu)1(s)-1(i)1(\\246)-1(,)-427(kt\\363r)1(a)-428(gor\\241czk)28(o)27(w)28(o)-428(u)29(w)-1(i)1(ja\\252a)-427(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-400(izbi)1(e)-1(,)-399(z)-1(ap)1(rasz)-1(a\\252a)-399(do)-400(j)1(ad\\252a,)-399(c)27(h)1(o)-28(\\242)-400(ju)1(\\273)-400(\\252y\\273)-1(k)1(i)-400(p)-27(ok\\252ad)1(li,)-399(bu)1(c)27(ha\\252a)-399(ni)-399(z)-400(te)-1(go,)-399(n)1(i)-400(z)]TJ 0 -13.55 Td[(o)28(w)27(ego)-432(\\261)-1(miec)27(h)1(e)-1(m,)-432(to)-432(zno)28(wu)-432(p)1(rzys)-1(i)1(ada\\252a)-432(s)-1(i)1(\\246)-433(d)1(o)-432(dzie)-1(w)28(c)-1(zyn)-431(i)-432(ra)-55(jco)28(w)27(a\\252a)-432(trzy)-432(p)-27(o)]TJ 0 -13.549 Td[(trzy)84(,)-417(a)-416(nie)-417(d)1(ok)28(o\\253cz)-1(ywsz)-1(y)-416(lec)-1(ia\\252a)-416(na)-416(dru)1(g\\241)-417(stron)1(\\246)-1(,)-416(ale)-417(ju)1(\\273)-417(z)-417(s)-1(i)1(e)-1(n)1(i)-417(n)1(a)27(wraca\\252a)-417(z)]TJ 0 -13.549 Td[(p)-27(o)27(wr)1(ote)-1(m.)-412(By\\252a)-411(w)-412(gor\\241cz)-1(ce)-412(m\\246)-1(cz)-1(\\241ce)-1(j)1(,)-412(b)-27(o)-412(p)-27(e\\252nej)-412(ob)1(a)28(w)-412(i)-412(n)1(iep)-28(ok)28(o)-55(j\\363)28(w.)-412(W)1(ie)-1(cz\\363)-1(r)]TJ 0 -13.549 Td[(wl\\363k\\252)-432(s)-1(i)1(\\246)-433(w)27(ol)1(no,)-432(o)-28(ci\\246)-1(\\273ale,)-432(s)-1(enn)1(ie)-1(,)-432(a)-432(w)-433(n)1(iej)-432(ros\\252)-1(a)-432(i)-432(wz)-1(maga\\252a)-432(s)-1(i\\246)-432(nieust\\246)-1(p)1(liwie)]TJ 0 -13.549 Td[(c)27(h)1(\\246)-1(\\242)-374(wyb)1(ie)-1(\\273e)-1(n)1(ia)-374(za)-374(d)1(om)-1(..)1(.)-374(d)1(o)-374(br)1(ogu...)-373(Ale)-374(ni)1(e)-375(mog\\252a)-374(si\\246)-374(z)-1(d)1(e)-1(cydo)28(w)28(a\\242)-1(,)-373(ba\\252a)-374(si\\246,)]TJ 0 -13.55 Td[(\\273e)-438(s)-1(p)-27(os)-1(t)1(rz)-1(eg\\241...)-437(b)1(a\\252a)-438(si\\246)-438(grzec)27(h)28(u.)1(..)-437(p)-28(o)28(wstrzym)27(yw)28(a\\252a)-438(si\\246)-438(ca\\252\\241)-438(mo)-28(c\\241)-438(i)-437(d)1(ygota\\252a)]TJ 0 -13.549 Td[(z)-427(m\\246)-1(ki)1(,)-427(sk)28(o)27(wycza\\252)-1(a)-426(w)-427(ni)1(e)-1(j)-426(du)1(s)-1(za,)-426(jak)-426(te)-1(n)-426(pi)1(e)-1(s)-427(n)1(a)-427(\\252a\\253cuc)28(h)28(u,)-426(rw)28(a\\252o)-427(si\\246)-427(s)-1(erce)-1(..)1(.)]TJ\nET\nendstream\nendobj\n761 0 obj <<\n/Type /Page\n/Contents 762 0 R\n/Resources 760 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n760 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n766 0 obj <<\n/Length 8748      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(236)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(17.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(e)-1(,)-307(n)1(ie)-307(m)-1(og\\252a,)-307(n)1(ie)-307(m)-1(og\\252a..)1(.)-307(a)-307(on)-307(mo\\273e)-308(j)1(u\\273)-307(tam)-308(stoi.)1(..)-307(cz)-1(ek)55(a.)1(..)-307(wyp)1(atruj)1(e)-1(.)1(..)-307(mo\\273)-1(e)]TJ 0 -13.549 Td[(k)28(o\\252o)-284(c)28(ha\\252up)29(y)-284(b)1(\\252\\241dzi...)-283(mo\\273)-1(e)-284(gd)1(z)-1(i)1(e)-284(w)-284(sadzie)-284(pr)1(z)-1(ycz)-1(a)-55(jon)29(y)-284(w)-283(okna)-283(z)-1(agl)1(\\241da)-284(i)-283(p)1(atrzy)]TJ 0 -13.549 Td[(teraz)-388(na)-388(ni)1(\\241...)-388(i)-388(p)1(rosi...)-387(i)-388(tru)1(c)27(hl)1(e)-1(j)1(e)-389(z)-388(\\273)-1(a\\252o\\261c)-1(i,)-387(\\273)-1(e)-388(nie)-388(wys)-1(z\\252a...)-387(P)28(olec)-1(i)-388(c)28(h)28(yba,)-387(nie)]TJ 0 -13.549 Td[(wytrzyma)-376(d\\252u)1(\\273)-1(ej...)-375(ino)-376(n)1(a)-377(t)1(\\246)-377(min)28(u)1(tk)28(\\246)-1(,)-376(n)1(a)-376(to)-376(jedno)-376(s\\252o)28(w)27(o,)-376(b)28(y)-376(m)28(u)-376(r)1(z)-1(ec)-1(:)-376(i)1(d\\271,)-376(nie)]TJ 0 -13.549 Td[(wyjd)1(\\246)-1(,)-389(grze)-1(c)28(h..)1(.)-390(Ju)1(\\273)-391(si\\246)-390(za)-390(z)-1(ap)1(as)-1(k)56(\\241)-390(ogl)1(\\241da\\252a,)-390(j)1(u\\273)-390(sz)-1(\\252a)-390(k)1(u)-390(d)1(rzw)-1(i)1(om)-1(..)1(.)-390(sz)-1(\\252a..)1(.)-390(ale)]TJ 0 -13.55 Td[(cos)-1(ik)-231(j)1(akb)28(y)-231(j)1(\\241)-231(u\\252api)1(\\252o)-232(za)-231(k)56(ark)-231(i)-231(p)1(rzytrzyma\\252)-1(o)-231(n)1(a)-231(m)-1(i)1(e)-1(j)1(s)-1(cu..)1(.)-231(ba\\252a)-231(s)-1(i)1(\\246)-1(..)1(.)-231(i)-231(Jagust)28(ynk)1(i)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-252(c)28(ho)-28(d)1(z)-1(i\\252y)-252(za)-252(ni\\241)-252(w)-253(\\261lad)1(,)-252(jak)-252(te)-253(p)1(s)-1(y)-252(tr)1(opi\\241ce,)-253(Nastk)56(a)-252(te)-1(\\273)-252(dziwnie)-253(sp)-27(ogl\\241da\\252a..)1(.)]TJ 0 -13.549 Td[(stary)-333(r\\363)28(wnie\\273...)-333(Wiedz\\241)-334(co?...)-333(miark)1(uj\\241?..)1(.)-333(Nie)-1(,)-333(n)1(ie)-334(wyjd)1(\\246)-334(d)1(z)-1(isia)-55(j,)-333(ni)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Zmog\\252)-1(a)-389(si\\246)-389(w)-1(r)1(e)-1(sz)-1(cie,)-389(ale)-389(c)-1(zu\\252a)-389(si\\246)-390(tak)-388(z)-1(mord)1(o)27(w)28(an\\241,)-389(\\273e)-389(ani)-389(wiedzia\\252a,)-389(c)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-348(dzie)-1(j)1(e)-348(dok)28(o\\252a.)-347(Prze)-1(c)28(kn\\246\\252a)-348(d)1(opiero,)-347(gdy)-347(\\212apa)-348(zacz)-1(\\241\\252)-348(sz)-1(cze)-1(k)56(a\\242)-348(przed)-348(d)1(om)-1(em;)]TJ 0 -13.549 Td[(w)-396(i)1(z)-1(b)1(ie)-396(b)28(y\\252o)-395(pr)1(a)28(w)-1(i)1(e)-396(pu)1(s)-1(to,)-395(j)1(e)-1(d)1(na)-395(Jagust)28(ynk)56(a)-395(drzem)-1(a\\252a)-395(p)-28(o)-27(d)-395(k)28(om)-1(i)1(nem)-1(,)-395(a)-395(s)-1(tar)1(y)]TJ 0 -13.55 Td[(pat)1(rz)-1(a\\252)-333(w)-334(ok)1(no,)-333(b)-27(o)-334(p)1(ie)-1(s)-333(s)-1(zc)-1(ze)-1(k)56(a\\252)-333(c)-1(or)1(az)-334(z)-1(a)-55(jad)1(lej.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334(An)28(tek,)-333(n)1(ie)-334(do)-27(c)-1(ze)-1(k)56(a\\252)-333(s)-1(i\\246)-333(i...)-333({)-333(p)-28(or)1(w)27(a\\252a)-333(s)-1(i)1(\\246)-334(z)-1(estras)-1(zona.)]TJ 0 -13.549 Td[(Ale)-387(to)-387(s)-1(tar)1(y)-387(K\\252\\241b)-387(s)-1(t)1(an\\241\\252)-387(w)27(e)-387(drzwiac)27(h)1(,)-387(a)-387(z)-1(a)-387(ni)1(m)-388(w)28(c)27(ho)-27(dzili)-387(w)28(olno,)-387(otr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(pu)1(j\\241c)-357(s)-1(i)1(\\246)-358(i)-357(ob)1(ija)-55(j\\241c)-357(o)-357(pr\\363g)-357(b)1(ut)28(y)-357(ze)-358(\\261niegu)-357({)-357(Wi)1(nciorek,)-357(ku)1(la)28(w)-1(y)-356(Grze)-1(l)1(a,)-357(Mic)28(ha\\252)]TJ 0 -13.549 Td[(Caban)1(,)-387(F)83(ran)1(e)-1(k)-387(Byli)1(c)-1(a,)-387(b)1(rat)-387(Hancz)-1(y)1(nego)-388(o)-55(jca,)-387(W)83(alen)28(t)28(y)-387(z)-388(kr)1(z)-1(y)1(w)27(\\241)-387(g\\246)-1(b)1(\\241)-388(i)-387(J)1(\\363z)-1(ek)]TJ 0 -13.55 Td[(W)84(ac)27(hn)1(ik..)1(.)]TJ 27.879 -13.549 Td[(Dziw)27(o)28(w)28(a\\252)-353(si\\246)-353(t)1(e)-1(j)-352(p)1(ro)-28(ce)-1(sji)-352(Boryn)1(a,)-352(ale)-353(j)1(u\\261c)-1(i)1(,)-352(\\273)-1(e)-353(p)1(ary)-352(z)-353(g\\246b)28(y)-352(ni)1(e)-353(pu)1(\\261)-1(ci\\252,)-352(na)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(d)1(ro)28(wie)-1(n)1(ia)-402(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(,)-401(r\\246k)28(\\246)-403(p)-27(o)-28(da)28(w)28(a\\252,)-402(s)-1(i)1(e)-1(d)1(z)-1(ie\\242)-402(z)-1(ap)1(ras)-1(za\\252,)-402(\\252a)28(wki)-402(p)-27(o)-28(dsu)28(w)28(a\\252)-402(i)]TJ 0 -13.549 Td[(tab)1(ak)55(\\241)-333(cz)-1(\\246s)-1(to)28(w)28(a\\252...)]TJ 27.879 -13.549 Td[(Usadzili)-259(si\\246)-259(rz\\246)-1(d)1(e)-1(m,)-259(t)1(abak)28(\\246)-259(o)-28(c)27(h)1(otni)1(e)-260(za\\273)-1(y)1(w)27(ali)1(,)-259(ten)-259(k)1(ic)27(h)1(n\\241\\252,)-259(\\363)28(w)-259(nos)-259(u)1(c)-1(iera\\252,)]TJ -27.879 -13.55 Td[(tam)28(te)-1(n)-358(z)-1(a\\261)-359(o)-28(cz)-1(y)84(,)-359(b)-27(o)-359(tabak)56(a)-359(b)28(y)1(\\252)-1(a)-359(k)1(rze)-1(p)1(k)55(a,)-358(jensz)-1(y)-359(r)1(oz)-1(gl\\241d)1(a\\252)-359(s)-1(i)1(\\246)-360(p)-27(o)-359(izbie,)-359(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(zn\\363)28(w)-319(to)-319(jak)1(ie)-320(s\\252o)28(w)27(o)-319(r)1(z)-1(u)1(c)-1(i\\252,)-318(dru)1(gi)-319(za\\261)-320(r)1(oz)-1(w)28(a\\273)-1(n)1(ie)-319(i)-319(z)-319(nam)27(y)1(s)-1(\\252em)-320(o)-27(drze)-1(k)56(a\\252{)-319(tam)28(te)-1(n)]TJ 0 -13.549 Td[(o)-415(\\261)-1(n)1(ie)-1(gac)28(h)-415(pr)1(a)27(wi\\252,)-415(kt)1(o)-416(z)-416(t)1(urb)1(ac)-1(j)1(am)-1(i)-415(wyj)1(e)-1(\\273d\\273a\\252,)-415(kto)-415(ino)-415(wz)-1(d)1(yc)27(h)1(a\\252)-416(a)-415(kiw)28(ani)1(e)-1(m)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(a\\252)-347({)-348(a)-348(wsz)-1(ystkie)-348(r)1(az)-1(em)-348(m)-1(\\241d)1(re)-348(d)1(ys)-1(k)1(ursa)-348(wiedli)-347(i)-347(z)-348(w)27(oln)1(a)-348(p)1(ro)28(w)27(ad)1(z)-1(il)1(i)]TJ 0 -13.549 Td[(do)-333(tego,)-333(z)-334(c)-1(zym)-333(przysz)-1(li)1(...)]TJ 27.879 -13.55 Td[(Boryn)1(a)-493(s)-1(i\\246)-493(kr\\246c)-1(i)1(\\252)-494(n)1(a)-493(\\252a)27(wie,)-493(w)-493(o)-28(cz)-1(y)-493(i)1(m)-494(p)1(atrza\\252)-1(,)-492(z)-1(a)-493(j\\246zyki)-493(p)-27(o)-28(ci\\241)-28(ga\\252)-493(i)-493(z)]TJ -27.879 -13.549 Td[(r\\363\\273n)28(yc)28(h)-333(s)-1(tr)1(on)-333(z)-1(ab)1(iega\\252)-1(.)]TJ 27.879 -13.549 Td[(Nie)-386(d)1(ali)-385(s)-1(i\\246)-386(j)1(e)-1(d)1(nak)-385(wywie\\261)-1(\\242;)-386(siedzie)-1(l)1(i)-386(w)-385(rz\\241)-1(d)1(,)-385(s)-1(iwi)-385(ws)-1(zysc)-1(y)84(,)-386(wysc)27(h)1(li,)-385(wy-)]TJ -27.879 -13.549 Td[(goleni,)-310(r)1(\\363)27(wn)1(iaki)-310(latami,)-310(cz)-1(erst)28(w)-1(i)-310(j)1(e)-1(sz)-1(cze)-1(;)-310(c)27(h)1(o)-28(\\242)-311(j)1(u\\273)-310(s)-1(tar)1(o\\261)-1(ci\\241)-310(i)-310(prac\\241)-310(przygi\\246c)-1(i)-310(d)1(o)]TJ 0 -13.549 Td[(zie)-1(mi,)-381(ni)1(b)28(y)-381(te)-382(g\\252az)-1(y)-381(p)-27(olne)-382(omsz)-1(ali)1(;)-382(sur)1(o)27(wi,)-381(t)28(w)28(ardzi,)-381(niepr)1(z)-1(y)1(s)-1(t\\246pn)1(i)-382(a)-381(m\\241dral)1(e)-382(,)]TJ 0 -13.55 Td[(to)-410(si\\246)-410(strze)-1(gli)-409(wym\\363)27(wi\\242)-410(p)1(rze)-1(d)-409(cz)-1(ase)-1(m)-410(i)-409(k)28(o\\252o)27(w)28(ali)-409(p)-28(o)-409(mie)-1(d)1(z)-1(ac)28(h)-410(spr)1(a)27(wy)84(,)-410(j)1(ak)28(o)-410(te)]TJ 0 -13.549 Td[(zm)27(y\\261lne)-333(psy)-333(o)27(w)28(c)-1(zarskie,)-333(kiedy)-333(c)27(h)1(c)-1(\\241)-333(o)28(w)27(ce)-334(zagna\\242)-334(w)28(e)-334(wrota.)]TJ 27.879 -13.549 Td[(A\\273)-334(w)-333(k)28(o\\253cu)-333(K\\252\\241b)-333(o)-28(d)1(c)27(hr)1(z)-1(\\241kn)1(\\241\\252,)-333(s)-1(p)1(lun)1(\\241\\252)-334(i)-333(r)1(z)-1(ek\\252)-334(u)1(ro)-28(cz)-1(y)1(\\261)-1(cie:)]TJ 0 -13.549 Td[({)-491(Co)-491(tu)-491(maru)1(dzi\\242)-492(i)-491(zwle)-1(k)56(a\\242;)-491(pr)1(z)-1(y\\261lim)-491(si\\246)-492(d)1(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(,)-490(c)-1(zy)-491(trzymac)-1(ie)-491(z)]TJ -27.879 -13.549 Td[(nami?..)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(ez)-334(w)28(as)-334(s)-1(t)1(ano)28(wi\\242)-334(ni)1(e)-334(m)-1(o\\273em)-1(..)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-27(\\242)-334(pierwsz)-1(ym)-333(w)27(e)-333(w)-1(si)-333(jes)-1(te\\261)-1(cie.)]TJ 0 -13.549 Td[({)-333(A)-334(r)1(oz)-1(u)1(m)27(u)-333(te\\273)-334(w)28(am)-334(P)28(an)-333(Jez)-1(u)1(s)-334(n)1(ie)-334(p)-27(os)-1(k)56(\\241)-28(p)1(i\\252:)]TJ 0 -13.549 Td[({)-333(I)-334(c)28(ho)-28(\\242)-334(p)1(rze)-1(z)-333(urz\\246)-1(d)1(u,)-333(a)-333(gromadzie)-334(p)1(rze)-1(w)28(o)-28(dzicie)-1(.)1(...)]TJ 0 -13.549 Td[({)-333(Ku\\273den)-333(si\\246)-334(na)-333(w)28(as)-334(ogl\\241da.)]TJ 0 -13.549 Td[({)-333(Ile)-334(\\273e)-334(o)-334(wsz)-1(y)1(s)-1(tki)1(c)27(h)-333(kr)1(z)-1(ywd)1(\\246)-334(c)27(h)1(o)-28(dzi.)]TJ 0 -13.55 Td[(P)28(o)28(wiedzia\\252)-321(k)56(a\\273)-1(d)1(y)-321(sw)27(o)-55(je,)-321(a)-320(przyp)-27(o)-28(c)27(h)1(lebni)1(e)-1(,)-320(\\273)-1(e)-321(Boryn)1(a)-321(p)-27(o)-28(c)-1(zerwie)-1(n)1(ia\\252,)-321(r)1(\\246)-1(ce)]TJ -27.879 -13.549 Td[(roz\\252o\\273)-1(y)1(\\252)-334(i)-333(za)27(w)28(o\\252a\\252:)]TJ\nET\nendstream\nendobj\n765 0 obj <<\n/Type /Page\n/Contents 766 0 R\n/Resources 764 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n764 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n769 0 obj <<\n/Length 7618      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(237)]TJ -330.353 -35.866 Td[({)-333(Lud)1(z)-1(ie)-333(k)28(o)-28(c)27(h)1(ane)-1(,)-333(k)1(ie)-1(j)-333(n)1(ie)-334(miar)1(kuj)1(\\246)-1(,)-333(z)-334(cz)-1(y)1(m)-334(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(c)-1(ie?)]TJ 0 -13.549 Td[({)-333(A)-334(w)28(e)-1(d)1(le)-334(n)1(as)-1(ze)-1(go)-333(lasu,)-333(ma)-56(j)1(\\241)-334(go)-333(r\\241b)1(a\\242)-334(p)-27(o)-334(T)83(r)1(z)-1(ec)27(h)-333(Kr)1(\\363lac)27(h)1(!)]TJ 0 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(j)1(u\\273)-334(n)1(a)-334(t)1(artaku)-333(r)1(z)-1(n)1(\\241)-334(j)1(akie\\261)-334(dr)1(z)-1(ew)27(o.)]TJ 0 -13.549 Td[({)-333(Rz)-1(n)1(\\241)-334(\\273ydo)28(wskie)-334(z)-334(Ru)1(dki)1(,)-334(n)1(ie)-334(wiec)-1(i)1(e)-334(to?)]TJ 0 -13.549 Td[({)-288(Nie)-289(wiedzia\\252e)-1(m,)-288(cz)-1(asu)-288(ni)1(e)-289(ma)-289(c)28(ho)-28(d)1(z)-1(i)1(\\242)-289(p)-27(om)-1(i\\246dzy)-288(lu)1(d\\271m)-1(i)-288(i)-288(p)1(rze)-1(p)28(y)1(t)27(y)1(w)27(a\\242...)]TJ 0 -13.55 Td[({)-333(A)-334(sami\\261)-1(cie)-334(n)1(a)-56(j)1(pierws)-1(i)-333(p)-27(oms)-1(to)28(w)28(ali)-333(na)-333(dziedzic)-1(a.)1(..)]TJ 0 -13.549 Td[({)-348(Bom)-348(m)27(y\\261la\\252,)-348(\\273e)-348(nasz)-1(e)-348(p)-27(or\\246)-1(b)29(y)-348(sprze)-1(d)1(a\\252...)-347(A)-348(c)-1(zyj)1(e)-1(\\273)-348(to)-348(sprze)-1(d)1(a\\252,)-348(cz)-1(yj)1(e)-1(?)-348({)]TJ -27.879 -13.549 Td[(zakrzyc)-1(za\\252)-334(Cab)1(an.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(n)1(a)-334(p)1(rzykup)1(n)28(ym.)]TJ 0 -13.549 Td[({)-255(Sp)1(rze)-1(d)1(a\\252)-255(i)-255(na)-255(p)1(rz)-1(y)1(kup)1(n)28(ym,)-255(ale)-255(s)-1(p)1(rze)-1(d)1(a\\252)-256(i)-254(na)-255(Wil)1(c)-1(zyc)27(h)-254(do\\252ac)27(h)-254(i)-255(m)-1(a)-255(ci\\241\\242...)]TJ 0 -13.549 Td[({)-333(B)-1(ez)-334(n)1(as)-1(ze)-1(go)-333(pr)1(z)-1(yzw)27(ol)1(e)-1(\\253)1(s)-1(t)28(w)28(a)-334(ci\\241\\252)-333(nie)-333(b)-28(\\246dzie.)]TJ 0 -13.55 Td[({)-257(Ju)1(\\261)-1(ci,)-256(drzew)27(o)-257(j)1(u\\273)-257(wyce)-1(c)27(h)1(o)28(w)27(ali)1(,)-257(las)-257(r)1(oz)-1(mie)-1(r)1(z)-1(y)1(li)-257(i)-256(p)-28(o)-256(T)83(rze)-1(c)28(h)-257(K)1(r\\363lac)27(h)-256(r\\241b)1(a\\242)]TJ -27.879 -13.549 Td[(zac)-1(zn\\241.)]TJ 27.879 -13.549 Td[({)-356(K)1(ie)-1(d)1(y)-356(tak)1(,)-356(trzeba)-356(j)1(e)-1(c)28(ha\\242)-356(z)-1(e)-356(sk)56(arg\\241)-356(d)1(o)-356(k)28(omis)-1(ar)1(z)-1(a{)-355(rz)-1(ek\\252)-356(Bory)1(na)-356(p)-27(o)-356(n)1(a-)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(le.)]TJ 27.879 -13.549 Td[({)-333(Od)-333(zas)-1(iew)27(\\363)28(w)-333(do)-333(\\273)-1(n)1(iw)-334(n)1(ie)-334(k)56(a\\273dy)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(\\273)-1(yw!)-333({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(Caban)1(.)]TJ 0 -13.55 Td[({)-448(A)-447(jak)-447(kto)-447(na)-447(\\261)-1(mier\\242)-448(c)27(h)1(ory)84(,)-448(n)1(a)-448(n)1(ic)-448(m)27(u)-447(i)-447(do)-27(c)27(h)28(tor)1(y!{)-448(d)1(o)-28(da\\252)-447(W)83(al)1(e)-1(n)28(t)28(y)-447(z)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yw)28(\\241)-333(g\\246)-1(b\\241.)]TJ 27.879 -13.549 Td[({)-330(Sk)56(arga)-330(t)27(y)1(le)-331(s)-1(p)1(ra)28(wi,)-330(\\273)-1(e)-331(n)1(im)-331(u)1(rz\\241d)-331(zjedzie)-331(i)-330(zabron)1(i,)-330(to)-331(j)1(u\\273)-331(i)-330(pn)1(iak)28(\\363)28(w)-331(n)1(ie)]TJ -27.879 -13.549 Td[(ostanie)-333(p)-28(o)-333(nasz)-1(y)1(m)-334(les)-1(ie,)-333(a)-333(jak)-333(to)-333(b)28(y\\252o)-333(w)-334(D\\246bicy)83(,)-333(b)1(ac)-1(zycie)-1(?)]TJ 27.879 -13.549 Td[({)-395(Z)-394(dw)28(orem)-395(to)-395(j)1(ak)-395(z)-395(wilk)1(ie)-1(m,)-394(niec)27(h)-394(in)1(o)-395(j)1(e)-1(d)1(n\\241)-395(o)28(w)28(c)-1(\\246)-395(spr)1(\\363bu)1(je,)-395(wnet)-395(ca\\252e)]TJ -27.879 -13.55 Td[(stado)-333(wybierze)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(tr)1(z)-1(a)-333(da\\242,)-333(b)28(y)-333(s)-1(i\\246)-333(z)-1(n)1(aro)28(wi\\252!)]TJ 0 -13.549 Td[({)-323(Rz)-1(ekli)1(\\261)-1(cie)-323(m)-1(\\241d)1(re)-323(s)-1(\\252o)28(w)27(o,)-322(Macie)-1(j)1(u;)-323(j)1(utr)1(o)-323(p)-28(o)-323(k)28(o\\261cie)-1(l)1(e)-324(ma)-56(j)1(\\241)-323(s)-1(i)1(\\246)-324(gosp)-28(o)-27(darze)]TJ -27.879 -13.549 Td[(ze)-1(b)1(ra\\242)-333(u)-332(mnie,)-333(b)29(y)-333(cosik)-333(p)-27(ostano)28(wi\\252a)-333(gr)1(om)-1(ad)1(a,)-332(to\\261)-1(w)28(a)-333(p)1(rzys)-1(zli)-332(w)27(a)-55(ju)-332(zapr)1(os)-1(i\\242)-333(n)1(a)]TJ 0 -13.549 Td[(nar)1(ad\\246.)]TJ 27.879 -13.55 Td[({)-333(Ws)-1(zystkie)-333(przyjd)1(\\241?...)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystkie,)-333(a)-334(zaraz)-334(p)-27(o)-333(k)28(o\\261)-1(ciele)-1(.)1(..)]TJ 0 -13.549 Td[({)-291(Ju)1(tro..)1(.)-291(C\\363\\273)-1(,)-290(kiej)-291(k)28(on)1(iec)-1(znie)-291(m)27(u)1(s)-1(z\\246)-291(ju)1(tro)-291(j)1(e)-1(c)28(ha\\242)-291(do)-291(W)84(oli,)-290(pra)28(wd\\246)-291(m\\363)28(w)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(dziel\\241)-314(s)-1(i)1(\\246)-315(tam)-314(gos)-1(p)-27(o)-28(d)1(ark)56(\\241)-314(krewniak)1(i,)-314(a)-314(s)-1(w)28(arz\\241)-314(i)-314(pr)1(o)-28(ce)-1(suj\\241,)-313(obiec)-1(a\\252em)-315(si\\246)-314(rozs)-1(\\241-)]TJ 0 -13.549 Td[(dzi\\242,)-384(b)28(y)-383(s)-1(i\\246)-384(s)-1(i)1(e)-1(r)1(otom)-385(k)1(rz)-1(y)1(w)-1(d)1(a)-384(ni)1(e)-385(sta\\252a,)-384(jec)27(h)1(a\\242)-385(m)28(usz)-1(\\246,)-384(ale)-384(co)-384(p)-28(ostano)28(wicie)-1(,)-383(to)]TJ 0 -13.55 Td[(tak)-333(w)28(e)-1(zm)-1(\\246,)-333(jakb)29(ym)-334(u)1(radza\\252)-334(sp)-27(o\\252e)-1(m.)]TJ 27.879 -13.549 Td[(Wyszli)-393(mark)28(otn)1(i)-392(niec)-1(o,)-392(b)-27(o)-393(c)27(h)1(o)-28(cia\\273)-393(ws)-1(zys)-1(tk)1(ie)-1(m)28(u)-392(pr)1(z)-1(yt)28(wierd)1(z)-1(a\\252)-393(i)-392(zgadza\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(na)-333(ws)-1(zystk)28(o,)-333(c)-1(o)-333(m\\363)27(wil)1(i,)-333(dob)1(rz)-1(e)-333(p)-28(o)-27(c)-1(zuli,)-333(\\273e)-334(z)-334(n)1(imi)-333(s)-1(zc)-1(ze)-1(r)1(z)-1(e)-334(n)1(ie)-334(tr)1(z)-1(y)1(m)-1(a.)]TJ 27.879 -13.549 Td[({)-308(Hale)-1(,)-308(u)1(rad)1(z)-1(a)-55(jcie)-309(sobie,)-308(ale)-309(b)-27(ez)-1(e)-309(mn)1(ie)-1(!)-308({)-308(m)27(y)1(\\261)-1(la\\252)-308({)-308(w)27(\\363)-55(jt)-308(ni)-308(m\\252yn)1(arz,)-309(n)1(i)-308(c)-1(o)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(w)-1(si)-282(nie)-282(p)-28(\\363)-55(jd)1(\\241)-283(z)-282(w)27(ami!)-282(Niec)27(h)-282(si\\246)-283(d)1(w)27(\\363r)-282(d)1(o)28(w)-1(i)1(e)-1(,)-282(\\273e)-283(ni)1(e)-283(nasta)-56(j)1(e)-283(n)1(a)-283(n)1(iego,)-282(pr\\246dze)-1(j)]TJ 0 -13.549 Td[(zap\\252ac)-1(i)]TJ 27.879 -13.55 Td[(za)-420(kr)1(o)27(w)28(\\246)-1(.)1(..)-419(i)-420(b)-27(\\246dzie)-420(s)-1(i)1(\\246)-420(c)27(h)1(c)-1(ia\\252)-419(go)-28(dzi\\242)-420(z)-420(osobn)1(a..:)-419(G\\252up)1(ie!...)1(do)-420(ostatn)1(ie)-1(go)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-56(j)1(ak)55(a)-283(p)-27(oz)-1(w)28(oli\\242)-283(m)27(u)-283(ci\\241\\242...)-283(a)-283(p)-28(ot)1(e)-1(m)-284(d)1(opi)1(e)-1(ro)-283(w)-283(krzyk,)-283(d)1(o)-284(s\\241d\\363)28(w,)-283(ares)-1(zt)-283(p)-28(o\\252o\\273y\\242,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)-1(isn\\241\\242)-383({)-383(da\\252b)28(y)-382(w)-1(i)1(\\246)-1(ce)-1(j)-382(ni\\271li)-383(zgo)-28(d\\241.)-382(Nie)-1(c)28(h)-383(se)-384(r)1(adz\\241,)-383(p)-28(o)-27(c)-1(ze)-1(k)56(am)-383(na)-383(b)-27(oku,)-382(nie)]TJ 0 -13.549 Td[(pi)1(lno)-333(mi,)-333(nie!..)1(.)]TJ 27.879 -13.549 Td[(Dom)-396(ju)1(\\273)-397(ca\\252)-1(y)-395(le)-1(g\\252)-396(spa\\242,)-396(a)-396(Macie)-1(j)-395(s)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-396(k)1(re)-1(d)1(\\241)-396(na)-396(\\252a)28(w)27(ce)-397(p)1(isa\\252,)-396(licz)-1(y\\252)-396(i)]TJ -27.879 -13.55 Td[(d\\252u)1(go)-334(w)-333(no)-28(c)-333(delib)-27(e)-1(r)1(o)27(w)28(a\\252.)]TJ 27.879 -13.549 Td[(Naza)-56(ju)1(trz)-333(z)-1(araz)-333(p)-28(o)-333(\\261)-1(n)1(iad)1(aniu)-333(n)1(ak)56(az)-1(a\\252)-333(parob)1(k)28(o)28(w)-1(i)-333(r)1(yc)27(h)28(to)28(w)28(a\\242)-334(sanie.)]TJ\nET\nendstream\nendobj\n768 0 obj <<\n/Type /Page\n/Contents 769 0 R\n/Resources 767 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n767 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n772 0 obj <<\n/Length 4682      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(238)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(17.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-414(J)1(ak)28(om)-414(w)27(cz)-1(or)1(a)-56(j)-413(p)-27(o)27(wiedzia\\252,)-413(p)-28(o)-55(jad)1(\\246)-414(do)-413(W)83(oli)1(,)-414(p)1(iln)28(u)1(j)-413(tu)-413(dom)28(u,)-413(Jagu\\261,)-414(a)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-265(s)-1(i)1(\\246)-266(kto)-265(do)28(wiady)1(w)27(a\\252,)-265(rozg\\252as)-1(za)-56(j)1(,)-265(\\273)-1(e)-266(m)28(usia\\252em)-266(jec)27(h)1(a\\242)-1(,)-265(i)-265(do)-265(w)28(\\363)-56(j)1(to)27(w)28(ej)-265(z)-1(a)-55(jrzyj)1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363\\271)-1(n)1(o)-333(to)-334(wr\\363)-27(c)-1(icie?)-334({)-333(p)28(yta\\252a)-333(z)-334(p)1(rz)-1(y)1(c)-1(za)-56(j)1(on\\241)-333(w)-334(se)-1(r)1(c)-1(u)-333(r)1(ado\\261c)-1(i\\241.)]TJ 0 -13.549 Td[({)-333(Na)-334(o)-27(dwiec)-1(ze)-1(r)1(z)-1(u)1(,)-334(a)-333(mo\\273)-1(e)-334(i)-333(p)-27(\\363\\271niej.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(a\\252)-279(s)-1(i\\246)-279(\\261w)-1(i\\241t)1(e)-1(cz)-1(n)1(ie)-1(,)-278(a)-279(ona)-279(z)-1(n)1(os)-1(i)1(\\252a)-280(m)28(ur)-278(z)-280(k)28(omory)-279(u)1(bran)1(ia,)-279(wi\\241za-)]TJ -27.879 -13.55 Td[(\\252a)-324(wst\\241\\273)-1(k)1(i)-324(u)-323(k)28(osz)-1(u)1(li)-323(p)-28(o)-28(d)-323(szyj\\241,)-323(p)-27(om)-1(aga\\252a)-323(w)27(e)-324(ws)-1(zystkim)-324(i)-323(z)-324(gor\\241czk)28(o)27(w)28(\\241)-324(n)1(iec)-1(ier-)]TJ 0 -13.549 Td[(pl)1(iw)27(o\\261ci\\241)-390(p)1(rzynagl)1(a\\252)-1(a)-389(P)1(ie)-1(tr)1(k)56(a,)-390(b)29(y)-389(pr\\246dze)-1(j)-389(k)28(on)1(ie)-390(zak\\252ada\\252,)-389(tr)1(z)-1(\\246s)-1(\\252a)-389(s)-1(i)1(\\246)-390(c)-1(a\\252a.)-389(Nie)]TJ 0 -13.549 Td[(mog\\252a)-407(usta\\242)-408(n)1(a)-407(mie)-1(j)1(s)-1(cu,)-406(rad)1(o\\261)-1(\\242)-407(w)-407(niej)-406(krzyc)-1(za\\252a,)-407(r)1(ado\\261)-1(\\242,)-407(\\273e)-407(p)-28(o)-55(jedzie)-407(na)-407(ca\\252y)]TJ 0 -13.549 Td[(dzie\\253,)-415(p)-28(\\363\\271no)-415(wr\\363)-28(ci,)-415(m)-1(o\\273e)-416(dop)1(ie)-1(r)1(o)-416(w)-416(n)1(o)-28(c)-1(y)84(,)-415(a)-416(ona)-415(z)-1(ostani)1(e)-416(s)-1(ama)-416(i)-415(o)-416(zm)-1(r)1(oku)-415({)]TJ 0 -13.549 Td[(o)-380(z)-1(mroku)-379(w)-1(y)1(jd)1(z)-1(ie)-380(z)-1(a)-380(br)1(\\363g...)-380(Wyj)1(dzie!)-380(He)-1(j)1(!)-380(R)-1(w)28(a\\252a)-380(s)-1(i\\246)-380(ju)1(\\273)-381(jej)-380(du)1(s)-1(za)-380(do)-380(wylotu)1(,)]TJ 0 -13.549 Td[(\\261m)-1(ia\\252y)-415(s)-1(i)1(\\246)-417(o)-27(c)-1(zy)83(,)-415(wyc)-1(i)1(\\241)-28(ga\\252y)-416(r\\246ce)-1(,)-415(pr\\246\\273)-1(y)1(\\252a)-416(pier\\261)-416(i)-415(ognie)-416(b)1(\\252)-1(y)1(s)-1(k)56(a)28(wic)-1(ami)-416(u)1(pal)1(n)28(ymi)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(dzi\\252y)-367(p)-27(o)-367(niej)-367(i)-366(s)-1(\\252o)-28(d)1(k)55(\\241)-367(m\\246k)55(a)-367(ob)1(le)-1(w)28(a\\252y)83(.)1(..)-367(Ale)-367(z)-368(n)1(ag\\252)-1(a,)-366(nies)-1(p)-27(o)-28(d)1(z)-1(iew)28(anie)-367(c)27(h)28(wy-)]TJ 0 -13.549 Td[(ci\\252)-359(j\\241)-358(dziwn)28(y)-358(l\\246)-1(k)-358(i)-358(\\261)-1(cis)-1(n)1(\\241\\252)-359(za)-359(se)-1(rce,)-359(\\273e)-359(z)-1(milk\\252a,)-358(pr)1(z)-1(ycic)28(h\\252a)-359(w)-359(sobi)1(e)-359(i)-359(j)1(ak)-359(b)1(\\252)-1(\\246dn)1(a)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252a)-296(za)-296(Boryn)1(\\241,)-295(gdy)-295(s)-1(i)1(\\246)-296(okr\\246c)-1(i)1(\\252)-296(w)-296(p)1(as)-1(,)-295(n)1(adzia\\252)-296(cz)-1(ap)-27(\\246)-296(i)-295(wyda)28(w)28(a\\252)-296(j)1(akie\\261)-296(przy-)]TJ 0 -13.549 Td[(k)56(az)-1(an)1(ia)-333(Witk)28(o)28(wi.)]TJ 27.879 -13.549 Td[({)-333(W)83(e\\271)-1(cie)-334(mni)1(e)-334(z)-1(e)-333(s)-1(ob)1(\\241!)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(c)-1(i)1(c)27(ho.)]TJ 0 -13.55 Td[({)-333(Hale)-1(.)-333(K)1(t\\363\\273)-334(w)-334(c)28(ha\\252up)1(ie)-334(ostani)1(e)-1(?)-333({)-334(zdziwi\\252)-333(s)-1(i\\246)-333(m)-1(o)-28(cno.)]TJ 0 -13.549 Td[({)-279(W)83(e\\271)-1(cie)-280(mnie,)-279(\\261)-1(wi\\246t)28(y)-280(S)1(z)-1(cze)-1(p)1(an)-279(dzis)-1(i)1(a)-56(j,)-279(rob)-27(ot)28(y)-279(wie)-1(l)1(e)-280(nie)-280(ma,)-279(w)27(e\\271)-1(cie)-280(mni)1(e)-1(,)]TJ -27.879 -13.549 Td[(tak)-297(mi)-297(s)-1(i\\246)-298(mark)28(o)-27(c)-1(i,)-297(w)28(e)-1(\\271cie)-1(!)-297({)-297(pr)1(os)-1(i\\252a)-297(tak)-297(gor\\241co,)-297(\\273)-1(e)-298(c)28(ho)-28(cia\\273)-298(si\\246)-298(d)1(z)-1(iw)28(o)28(w)27(a\\252,)-297(ale)-297(s)-1(i\\246)]TJ 0 -13.549 Td[(ni)1(e)-334(opar)1(\\252)-334(p)1(rzyz)-1(w)28(oli\\252.)]TJ 27.879 -13.549 Td[(W)-280(p)1(ar\\246)-280(c)27(h)28(wil)-279(ju)1(\\273)-281(b)29(y\\252a)-280(goto)28(w)27(a)-280(i)-279(ru)1(s)-1(zyli)-279(z)-1(araz)-280(sprzed)-280(d)1(om)27(u)-279(os)-1(tr)1(o,)-280(z)-280(k)28(op)28(yta,)]TJ -27.879 -13.55 Td[(a\\273)-334(sanie)-333(z)-1(amiet\\252y)83(.)]TJ\nET\nendstream\nendobj\n771 0 obj <<\n/Type /Page\n/Contents 772 0 R\n/Resources 770 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n770 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n775 0 obj <<\n/Length 5739      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(18)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-333(My\\261la\\252e)-1(c)28(h,)-333(\\273e)-1(\\261)-334(gd)1(z)-1(i)1(e)-334(w)-334(\\261niegac)27(h)-333(u)29(w)-1(i)1(\\246)-1(z\\252a!)-334({)-333(sz)-1(epn)1(\\241\\252)-334(p)1(rze)-1(k)56(\\241\\261)-1(l)1(iwie)-1(.)]TJ 27.879 -13.549 Td[({)-359(Hale,)-360(mo\\273na)-359(to)-359(przyspiesz)-1(y\\242)-359(na)-359(tak)56(\\241)-360(wiej\\246,)-359(p)-27(o)-360(omac)27(k)1(u)-359(s)-1(z\\252am)-360(ca\\252kiem)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-299(t)1(ak)-298(c)-1(iepi)1(e)-299(\\261)-1(n)1(iegie)-1(m,)-298(\\273e)-299(o)-28(cz)-1(\\363)28(w)-298(nie)-298(m)-1(o\\273na)-298(oze)-1(wrze)-1(\\242,)-298(a)-298(takie)-298(z)-1(asp)28(y)-298(na)-298(d)1(rogac)27(h)1(,)]TJ 0 -13.55 Td[(taki)-333(m\\241t,)-333(\\273)-1(e)-333(i)-334(n)1(a)-333(dw)28(a)-334(kr)1(oki)-333(ni)1(c)-334(nie)-333(roze)-1(zna)-333(przed)-333(s)-1(i\\246.)]TJ 27.879 -13.549 Td[({)-333(Matk)56(a)-333(w)-334(c)27(h)1(a\\252upi)1(e)-1(?)]TJ 0 -13.549 Td[({)-258(A)-259(j)1(u\\261c)-1(i,)-258(gd)1(z)-1(ie)-259(b)29(y)-259(t)1(a)-259(sz)-1(li)-258(n)1(a)-259(tak)1(i)-259(p)1(s)-1(i)-258(cz)-1(as;)-258(rano)-258(b)28(yli)-258(u)-258(Koz\\252\\363)28(w)-1(,)-258(ale)-258(z)-259(Magd\\241)]TJ -27.879 -13.549 Td[(jest)-296(k)1(ruc)28(ho,)-295(n)1(a)-296(k)1(s)-1(i\\246\\273)-1(\\241)-295(ob)-27(or\\246)-295(patrzy)84(,)-295(to)-296(i)-295(n)1(ic)-296(p)-27(orad)1(z)-1(i)1(\\242)-296(ni)1(e)-296(p)-27(oradzili)-295({)-295(op)-27(o)28(w)-1(i)1(ada\\252a)]TJ 0 -13.549 Td[(Jagn)1(a)-334(otr)1(z)-1(epu)1(j\\241c)-334(si\\246)-334(ze)-334(\\261niegu.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(tam)-334(n)1(a)-334(ws)-1(i)1(?)-334({)-333(z)-1(agad)1(n\\241\\252)-333(na\\261m)-1(i)1(e)-1(sz)-1(l)1(iwie)-1(.)]TJ 0 -13.55 Td[({)-333(Id\\271c)-1(ie)-333(p)28(yta\\242,)-333(to)-334(wiedzie\\242)-334(b)-28(\\246dziec)-1(i)1(e)-1(,)-333(p)-27(o)-334(n)1(o)28(w)-1(i)1(nki)-333(ni)1(e)-334(lata\\252am!)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-333(prze)-1(j)1(e)-1(c)28(ha\\252,)-333(ni)1(e)-334(wie)-1(sz)-334(to?)]TJ 0 -13.549 Td[({)-273(Psu)-273(wytrzyma\\242)-274(tru)1(dn)1(o)-274(n)1(a)-273(takiej)-273(wie)-1(j)1(bie,)-273(a)-273(dzie)-1(d)1(z)-1(i)1(c)-1(o)28(wi)-273(b)28(y)-273(s)-1(i\\246)-273(tam)-274(c)28(hcia-)]TJ -27.879 -13.549 Td[(\\252o...)]TJ 27.879 -13.549 Td[({)-333(Kogo)-333(m)27(us)-333(p)-28(\\246dzi,)-333(ten)-333(i)-333(na)-333(z)-1(aku)1(rki)-333(p)1(atrza\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)]TJ 0 -13.55 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(j)1(ak)-333(k)28(om)27(u)-333(m)28(us...)-333({)-333(u\\261m)-1(iec)27(h)1(n\\246\\252a)-334(si\\246)-334(w)28(\\241tpi)1(\\241c)-1(o.)]TJ 0 -13.549 Td[({)-262(Sam)-262(s)-1(i\\246)-262(obi)1(e)-1(ca\\252,)-262(nikt)1(o)-263(go)-262(n)1(ie)-263(p)1(ros)-1(i)1(\\252)-263({)-262(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-262(Boryn)1(a)-262(s)-1(u)1(ro)28(w)27(o,)-262(o)-28(d)1(\\252o\\273)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(o\\261nik,)-429(wsta\\252)-430(z)-430(k)28(ob)28(y)1(licy)-430(i)-429(p)-27(o)-28(d)1(s)-1(ze)-1(d)1(\\252)-430(d)1(o)-430(okn)1(a)-430(wyj)1(rze)-1(\\242,)-429(ale)-430(na)-429(\\261w)-1(i)1(e)-1(cie)-430(b)28(y\\252a)-429(tak)56(a)]TJ 0 -13.549 Td[(ku)1(rza)27(w)28(a,)-333(tak)-333(k)28(ot\\252o)27(w)28(a\\252o,)-333(\\273)-1(e)-333(ni)-333(p\\252ot\\363)28(w,)-333(ni)-333(dr)1(z)-1(ewin)-333(wida\\242)-333(nie)-333(b)28(y\\252o.)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(\\273)-1(e)-334(\\261ni)1(e)-1(g)-333(ju)1(\\273)-334(ni)1(e)-334(s)-1(y)1(pie)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(\\252ago)-28(dn)1(iej.)]TJ 0 -13.55 Td[({)-490(A)-489(ni)1(e)-1(,)-489(kr\\246c)-1(i)-489(in)1(o,)-490(r)1(w)-1(i)1(e)-1(,)-489(z)-1(amiata)-489(i)-490(tak)-489(ku)1(rz)-1(y)84(,)-489(tak)-490(ciepie,)-490(\\273e)-490(dr)1(ogi)-490(n)1(ie)]TJ -27.879 -13.549 Td[(roze)-1(zna)-370({)-371(rze)-1(k\\252a)-371(Jagn)1(a,)-371(r)1(oz)-1(grza\\252a)-371(r\\246c)-1(e)-371(i)-371(wzi\\246\\252)-1(a)-370(s)-1(i\\246)-371(do)-370(m)-1(otan)1(ia)-371(n)1(ic)-1(i)-370(z)-372(wr)1(z)-1(ec)-1(ion)]TJ 0 -13.549 Td[(na)-366(moto)28(wid\\252o,)-366(stary)-365(z)-1(a\\261)-366(p)-28(o)28(wr\\363)-28(ci\\252)-366(d)1(o)-366(rob)-27(ot)27(y)84(,)-366(ale)-366(coraz)-367(n)1(iec)-1(ierp)1(liwiej)-366(sp)-28(ogl)1(\\241da\\252)]TJ 0 -13.549 Td[(w)-334(ok)1(no)-333(i)-333(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252.)]TJ 27.879 -13.549 Td[({)-333(Gdzie)-334(to)-333(J\\363zk)56(a?)-334({)-333(s)-1(p)28(y)1(ta\\252)-334(p)-27(o)-333(c)27(h)28(wili)1(.)]TJ 0 -13.55 Td[(P)28(ewniki)1(e)-1(m)-333(u)-333(Nas)-1(tki)1(,)-333(c)-1(i\\246giem)-334(tam)-334(p)1(rze)-1(siad)1(uje.)]TJ 0 -13.549 Td[({)-333(Lofer)-333(dzie)-1(u)1(c)27(h)1(a,)-334(\\273e)-334(tego)-333(pacie)-1(r)1(z)-1(a)-333(w)-334(c)28(ha\\252up)1(ie)-334(n)1(ie)-334(u)1(s)-1(iedzi.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(jej)-333(s)-1(i)1(\\246)-334(c)-1(n)1(i,)-333(p)-28(o)28(wiad)1(a.)]TJ 0 -13.549 Td[({)-333(Ale)-1(,)-333(zaba)28(wy)-333(s)-1(e)-334(b)-27(\\246dzie)-334(sz)-1(u)1(k)55(a\\252a.)]TJ 0 -13.549 Td[({)-333(T)83(ak)-333(p)-28(o)28(wiad)1(a,)-334(b)29(y)-334(i)1(no)-333(s)-1(i)1(\\246)-334(o)-28(d)-333(rob)-27(ot)28(y)-333(wykr\\246ci\\242)-1(.)]TJ 0 -13.55 Td[({)-333(Nie)-334(mo\\273)-1(es)-1(z)-333(to)-334(p)1(rzyk)56(az)-1(a\\242?)]TJ 0 -13.549 Td[({)-303(Ju)1(\\261)-1(ci,)-303(r)1(az)-304(to)-303(m\\363)28(wi\\252am)-303(ab)-28(o)-303(d)1(w)27(a,)-302(p)28(ysk)-303(na)-303(mni)1(e)-304(wyw)28(ar\\252a)-303(j)1(ak)-303(na)-303(t)1(e)-1(go)-303(p)1(s)-1(a,)]TJ -27.879 -13.549 Td[(jak)-333(wy)-333(jej)-333(ni)1(e)-334(pr)1(z)-1(yk)1(r\\363)-28(cicie)-1(,)-333(to)-333(ona)-333(ma)-334(gd)1(z)-1(i)1(e)-1(\\261)-334(mo)-56(j)1(e)-334(p)1(rz)-1(y)1(k)55(azy)84(.)]TJ 358.232 -29.888 Td[(239)]TJ\nET\nendstream\nendobj\n774 0 obj <<\n/Type /Page\n/Contents 775 0 R\n/Resources 773 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n773 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n778 0 obj <<\n/Length 7995      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(240)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ale)-240(s)-1(tar)1(y)-240(pu)1(\\261)-1(ci\\252)-240(m)-1(imo)-240(usz)-1(\\363)28(w)-240(te)-241(sk)56(argi,)-240(b)-27(o)-240(c)-1(or)1(az)-241(ni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(j)-240(n)1(as)-1(\\252u)1(c)27(h)1(iw)27(a\\252,)]TJ -27.879 -13.549 Td[(c\\363\\273)-289(k)1(ie)-1(j)-287(\\273aden)-287(g\\252)-1(os)-288(l)1(udzki)-287(nie)-288(d)1(o)-28(c)27(h)1(o)-28(dzi\\252)-288(ze)-288(dw)28(oru)1(,)-288(wic)28(h)28(ur)1(a)-288(in)1(o)-288(wy\\252a,)-288(p)1(rze)-1(w)28(ala\\252a)]TJ 0 -13.549 Td[(si\\246)-334(p)-27(o)-334(\\261wie)-1(cie,)-333(bi\\252a)-333(nib)29(y)-333(barami)-333(w)-334(\\261c)-1(i)1(an)28(y)83(,)-333(a\\273)-333(dom)-334(tr)1(z)-1(es)-1(zc)-1(za\\252)-333(i)-334(p)-27(o)-55(j\\246kiw)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-56(j)1(dziec)-1(ie)-333(to?)-334({)-333(s)-1(p)29(yta\\252a)-334(cic)27(h)1(o.)]TJ 0 -13.549 Td[(Nie)-450(o)-27(drze)-1(k)1(\\252,)-450(b)-27(o)-449(dos\\252ys)-1(za\\252)-450(ot)28(wieran)1(ie)-450(dr)1(z)-1(wi)-449(o)-28(d)-449(sie)-1(n)1(i,)-449(jak)28(o\\273)-450(w)-449(te)-1(j)-449(c)28(h)28(wili)]TJ -27.879 -13.55 Td[(wpad)1(\\252)-334(zz)-1(i)1(a)-56(jan)29(y)-333(Witek)-334(i)-333(k)1(rz)-1(y)1(kn\\241\\252)-333(z)-334(p)1(rogu:)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-333(ju\\273)-333(przejec)27(ha\\252!)]TJ 0 -13.549 Td[({)-333(Da)28(w)-1(n)1(o?)-334(P)1(rzywie)-1(r)1(a)-56(j)-333(d)1(rz)-1(wi)-333(p)1(r\\246)-1(d)1(k)28(o.)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(\\252yc)28(ha\\242)-334(b)1(rz\\246)-1(k)56(ad\\252a!)]TJ 0 -13.549 Td[({)-333(Sam)-334(j)1(e)-1(c)28(ha\\252?)]TJ 0 -13.549 Td[({)-333(Kiej)-333(takie)-333(z)-1(aku)1(rki)1(,)-334(\\273e)-1(m)-333(ino)-333(k)28(on)1(ie)-334(roze)-1(zna\\252.)]TJ 0 -13.55 Td[({)-333(B)-1(i)1(e)-1(\\273yj)-333(w)-334(t)1(e)-1(n)-333(mig)-333(i)-333(do)28(wie)-1(d)1(z)-334(si\\246)-1(,)-333(gd)1(z)-1(ie)-333(s)-1(tan)1(\\241\\252!)]TJ 0 -13.549 Td[({)-333(P)28(\\363)-56(j)1(dziec)-1(ie)-333(do)-333(niego?)-334({)-333(z)-1(ap)29(yta\\252a)-333(c)-1(ic)28(ho,)-333(z)-334(tc)28(hem)-334(pr)1(z)-1(y)1(ta)-56(jon)29(ym.)]TJ 0 -13.549 Td[({)-492(P)28(o)-28(cz)-1(ek)56(am)-1(,)-492(a\\273)-493(za)28(w)27(o\\252a)-55(j\\241)-492(m)-1(n)1(ie)-1(,)-492(n)1(apr)1(as)-1(za\\252)-493(si\\246)-493(n)1(ie)-493(b)-27(\\246)-1(d)1(\\246)-1(,)-492(ale)-492(b)-28(ez)-1(e)-492(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-333(nic)-333(nie)-334(u)1(rad)1(z)-1(\\241..)1(.)]TJ 27.879 -13.549 Td[(Umilkl)1(i)-493(ob)-28(o)-55(je,)-493(Jagna)-493(mota\\252a)-493(licz)-1(\\241c)-493(ni)1(c)-1(i)-493(i)-493(p)1(rze)-1(wi\\241zuj)1(\\241c)-494(j)1(e)-494(w)-493(pasm)-1(a,)-493(a)]TJ -27.879 -13.55 Td[(stary)84(,)-371(\\273e)-371(m)27(u)-370(r)1(ob)-28(ot)1(a)-371(lec)-1(i)1(a\\252a)-371(z)-371(r)1(\\241k)-371(z)-371(n)1(iec)-1(ierp)1(liw)28(o\\261)-1(ci,)-370(rzuci\\252)-371(wsz)-1(ystk)28(o)-370(i)-371(zacz)-1(\\241\\252)-370(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(biera\\242)-334(d)1(o)-334(wyj)1(\\261)-1(cia,)-333(ni)1(m)-334(jedn)1(ak)-333(s)-1(k)28(o\\253)1(c)-1(zy\\252,)-333(pr)1(z)-1(yl)1(e)-1(cia\\252)-334(W)1(itek.)]TJ 27.879 -13.549 Td[({)-265(Dziedzic)-265(s)-1(i)1(e)-1(d)1(z)-1(\\241)-264(u)-265(m\\252ynar)1(z)-1(a)-264(w)-265(izbie)-265(o)-28(d)1(e)-265(drogi)1(,)-265(a)-264(k)28(onie)-265(sto)-56(j)1(\\241)-265(w)-265(p)-27(o)-28(dw)28(\\363rzu.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273e\\261)-334(s)-1(i)1(\\246)-334(tak)-333(ut)28(yt\\252a\\252?)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(m)-1(i)1(\\246)-334(wiate)-1(r)-333(p)1(rze)-1(wr\\363)-27(c)-1(i\\252)-333(w)-334(zas)-1(p)-27(\\246...)]TJ 0 -13.55 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(d)1(obr)1(z)-1(e\\261)-334(s)-1(i)1(\\246)-334(m)27(u)1(s)-1(ia\\252)-333(z)-334(c)28(h\\252opak)56(ami)-333(z)-1(a)-333(\\252ap)28(y)-333(p)-27(o)-334(\\261niegu)-333(w)28(o)-28(dzi\\242!...)]TJ 0 -13.549 Td[({)-333(Wiater)-333(m)-1(i)1(\\246)-334(obal)1(i\\252...)]TJ 0 -13.549 Td[({)-272(Drzyj)-272(obl)1(e)-1(cz)-1(enie,)-272(dr)1(z)-1(yj)1(,)-272(jak)-272(s)-1(i)1(\\246)-1(,)-272(ju)1(c)27(h)1(o,)-273(r)1(z)-1(emie)-1(n)1(iem)-273(p)-28(ogr)1(z)-1(ej\\246,)-272(to)-273(zapami\\246-)]TJ -27.879 -13.549 Td[(tasz)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(pr)1(a)27(wd)1(\\246)-334(m)-1(\\363)28(wi\\246...)-333(tak)-333(wieje,)-334(t)1(ak)-334(ciepie,)-333(\\273)-1(e)-333(ustoi\\242)-334(tr)1(udn)1(o...)]TJ 0 -13.55 Td[({)-389(P)1(u\\261\\242)-390(k)28(omin)1(,)-389(w)-389(n)1(o)-28(c)-1(y)-388(s)-1(i)1(\\246)-390(d)1(o\\261)-1(\\242)-389(wygrze)-1(j)1(e)-1(sz,)-389(p)-27(o)27(wiedz)-389(P)1(ie)-1(tr)1(k)28(o)28(w)-1(i)1(,)-389(ni)1(e)-1(c)27(h)-388(si\\246)]TJ -27.879 -13.549 Td[(do)-357(m)-1(\\252o)-28(c)28(ki)-358(w)28(e)-1(\\271mie)-1(,)-357(p)-28(om\\363\\273)-358(m)27(u)1(,)-358(n)1(ie)-359(gan)1(ia)-55(j)-358(p)-27(o)-358(ws)-1(i)-357(jak)-357(te)-1(n)-357(psiak)-358(z)-358(wywies)-1(zon)28(ym)]TJ 0 -13.549 Td[(ozore)-1(m.)]TJ 27.879 -13.549 Td[({)-371(Id\\246,)-371(in)1(o)-372(j)1(e)-1(szc)-1(ze)-372(dr)1(e)-1(w)28(e)-1(k)-370(przyn)1(ie)-1(s\\246)-1(,)-370(b)-28(o)-371(gosp)-28(o)-28(d)1(yn)1(i)-371(k)55(aza\\252a...)-371({)-371(sz)-1(epta\\252)-371(\\273a-)]TJ -27.879 -13.549 Td[(\\252o\\261)-1(n)1(ie)-413(i)-412(mark)28(otn)1(ie,)-413(\\273e)-413(n)1(ie)-413(m\\363g\\252)-413(op)-27(o)28(wiada\\242,)-412(c)-1(o)-412(widzia\\252)-412(na)-412(ws)-1(i,)-412(zakr\\246c)-1(i)1(\\252)-413(si\\246)-413(p)-27(o)]TJ 0 -13.55 Td[(izbie,)-338(gwiz)-1(d)1(n\\241\\252)-338(na)-338(\\212ap)-28(\\246,)-338(ale)-339(pi)1(e)-1(s)-339(zwin\\241\\252)-338(s)-1(i)1(\\246)-339(w)-339(k\\252\\246b)-28(ek)-338(i)-338(ani)-338(c)27(h)1(c)-1(ia\\252)-338(s)-1(\\252u)1(c)27(ha\\242,)-338(wi\\246)-1(c)]TJ 0 -13.549 Td[(sam)-392(p)-27(o)-1(sze)-1(d)1(\\252)-1(,)-391(Bory)1(na)-391(z)-1(a\\261,)-391(ubr)1(an)28(y)-391(do)-391(wyj\\261c)-1(i)1(a,)-392(\\252azi\\252)-391(z)-392(k)56(\\241ta)-392(w)-391(k)55(\\241t)1(,)-392(p)-27(opr)1(a)28(w)-1(i)1(a\\252)-392(w)]TJ 0 -13.549 Td[(k)28(omini)1(e)-1(,)-397(z)-1(ac)28(ho)-28(d)1(z)-1(i\\252)-397(do)-398(sto)-28(d)1(o\\252y)83(,)-397(to)-398(okn)1(e)-1(m)-398(wygl)1(\\241da\\252,)-397(to)-398(pr)1(z)-1(ed)-397(dom)-398(wyc)28(ho)-28(d)1(z)-1(i\\252)-397(i)]TJ 0 -13.549 Td[(coraz)-334(n)1(ie)-1(cierpl)1(iwie)-1(j)-333(cze)-1(k)56(a\\252,)-333(ale)-334(n)1(ikt)-333(p)-28(o)-333(n)1(ie)-1(go)-333(ni)1(e)-334(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(.)]TJ 27.879 -13.549 Td[({)-333(Mo\\273e)-334(z)-1(ap)-27(omnieli.)1(..)-333({)-334(zau)28(w)28(a\\273)-1(y\\252a)-333(Jagu\\261.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(o)-333(m)-1(n)1(ie)-334(b)28(y)-333(zap)-28(omn)1(ie)-1(l)1(i...)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(wy)-333(k)28(o)27(w)28(alo)28(wi)-333(w)-1(i)1(e)-1(r)1(z)-1(ycie,)-334(a)-333(on)-333(cygan)-333(n)1(a)-56(jp)1(ierws)-1(zy)83(.)1(..)]TJ 0 -13.549 Td[({)-333(G\\252up)1(ia\\261)-1(,)-333(n)1(ie)-334(p)-27(o)28(w)-1(i)1(ada)-55(j,)-333(na)-333(cz)-1(ym)-333(s)-1(i\\246)-333(nie)-334(r)1(oz)-1(u)1(m)-1(i)1(e)-1(sz)-1(.)1(..)]TJ 0 -13.549 Td[(Zamilk\\252a)-334(ob)1(ra\\273ona,)-334(p)1(r\\363\\273no)-334(zagadyw)28(a\\252)-334(\\252ago)-28(d)1(n)28(ymi)-334(s\\252o)27(wy)84(,)-334(a\\273)-334(w)-334(k)28(o\\253cu)-334(sam)]TJ -27.879 -13.549 Td[(si\\246)-382(z)-1(e\\271)-1(li)1(\\252,)-382(n)1(adzia\\252)-382(c)-1(zap)-27(\\246)-383(i)-381(z)-382(trzas)-1(k)1(ie)-1(m)-382(p)-27(os)-1(zed\\252.)-382(Jagu)1(\\261)-382(narz\\241dzi\\252a)-382(k)56(\\241d)1(z)-1(iel,)-381(przy-)]TJ 0 -13.549 Td[(siad\\252a)-289(s)-1(i)1(\\246)-290(p)-27(o)-28(d)-289(okn)1(o)-290(i)-289(p)1(rz\\246)-1(d)1(\\252a)-290(sp)-27(ogl\\241da)-55(j\\241c)-290(o)-27(d)-289(c)-1(zas)-1(u)-288(do)-289(c)-1(zasu)-289(w)-290(\\261nie\\273yc)-1(\\246,)-289(s)-1(r)1(o\\273)-1(\\241c\\241)]TJ 0 -13.55 Td[(si\\246)-334(za)-334(okn)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Wiat)1(r)-354(h)28(ucza\\252)-355(p)1(rze)-1(r)1(a\\271)-1(li)1(w)-1(i)1(e)-1(,)-354(\\261nie\\273ne)-354(tuman)28(y)-354(k\\252\\246bami)-354(jak)-353(dom)27(y)-353(ab)-28(o)-354(j)1(ak)-354(te)]TJ\nET\nendstream\nendobj\n777 0 obj <<\n/Type /Page\n/Contents 778 0 R\n/Resources 776 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 763 0 R\n>> endobj\n776 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n781 0 obj <<\n/Length 8038      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(241)]TJ -358.232 -35.866 Td[(dr)1(z)-1(ew)27(a)-483(wie)-1(l)1(gac)27(hn)1(e)-1(,)-483(r)1(o)-1(zstrz\\246)-1(p)1(ione)-484(tacza\\252)-1(y)-483(si\\246)-484(p)-27(o)-484(\\261w)-1(i)1(e)-1(cie)-484(i)-483(raz)-484(p)-27(o)-484(r)1(az)-484(bi\\252y)-483(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)-27(\\246)-1(,)-345(a\\273)-345(ws)-1(zys)-1(t)1(k)28(o)-346(w)-345(izbi)1(e)-346(dy)1(gota\\252o,)-345(s)-1(zc)-1(z\\246)-1(k)56(a\\252y)-345(miski)-345(p)-27(ousta)28(w)-1(i)1(ane)-346(w)-345(sz)-1(af)1(c)-1(e)-345(i)]TJ 0 -13.549 Td[(k)28(oleba\\252y)-259(si\\246)-260(u)-258(pu)1(\\252apu)-259(op)1(\\252atk)28(o)28(w)27(e)-259(\\261)-1(wiat)28(y)84(.)-259(Zimno)-259(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(e,)-259(wie)-1(j)1(ne)-259(tak)-259(ci\\241)-28(gn\\246\\252o)]TJ 0 -13.549 Td[(o)-28(d)-229(ok)1(ie)-1(n)-229(i)-229(d)1(rzw)-1(i)1(,)-229(\\273)-1(e)-230(\\212ap)1(a)-230(w)28(ci\\241\\273)-230(sz)-1(u)1(k)55(a\\252)-229(c)-1(i)1(e)-1(p)1(le)-1(j)1(s)-1(zego)-230(lego)28(wis)-1(k)56(a,)-229(a)-229(Jagna)-229(pr)1(z)-1(y)28(okr)1(y\\252a)]TJ 0 -13.549 Td[(si\\246)-334(w)-334(zapask)28(\\246)-1(.)]TJ 27.879 -13.55 Td[(Wit)1(e)-1(k)-333(ws)-1(u)1(n\\241\\252)-333(s)-1(i\\246)-333(c)-1(ic)28(ho)-333(i)-333(rze)-1(k\\252)-333(ni)1(e)-1(\\261m)-1(i)1(a\\252o:)]TJ 0 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(yni)1(!)]TJ 0 -13.549 Td[({)-333(C)-1(zego?)]TJ 0 -13.549 Td[({)-363(Wiec)-1(i)1(e)-1(,)-363(a)-363(to)-363(d)1(z)-1(i)1(e)-1(d)1(z)-1(ice)-364(w)-363(ogiery)-363(p)1(rzyjec)27(h)1(a\\252.)-363(Cugan)28(t)28(y)-363(k)1(ie)-1(j)-362(haman)28(y)84(,)-363(k)56(are)]TJ -27.879 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m,)-350(w)-350(siatk)56(ac)27(h)-349(c)-1(ze)-1(r)1(w)27(on)28(y)1(c)27(h,)-349(z)-351(p)1(i\\363rami)-350(n)1(a)-350(\\252bac)28(h,)-350(a)-350(b)1(rz\\246)-1(k)56(ad\\252a)-350(n)1(a)-350(pasac)27(h)-349(to)]TJ 0 -13.549 Td[(\\252y\\261ni\\241)-333(si\\246)-334(o)-28(d)-333(z\\252ota)-334(k)1(ie)-1(j)-332(te)-334(obr)1(az)-1(y)-333(w)-333(k)28(o\\261)-1(cie)-1(l)1(e)-1(!)-333(A)-333(jak)-333(sz)-1(\\252y)84(,)-334(t)1(o)-334(n)1(ic)-1(zym)-333(te)-1(n)-333(wiater!)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(d)1(z)-1(iw)28(ota,)-333(dw)28(orskie)-334(p)1(rze)-1(cie\\273)-1(,)-333(ni)1(e)-334(c)27(h)1(\\252opskie)-1(!)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(jes)-1(zc)-1(zem)-334(takic)28(h)-333(s)-1(mok)28(\\363)28(w)-334(n)1(ie)-334(wid)1(z)-1(ia\\252!)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(b)28(y)84(,)-334(n)1(ic)-334(n)1(ie)-334(rob)1(i\\241)-333(i)-333(na)-333(c)-1(zyst)28(ym)-334(o)28(ws)-1(ie)-333(s)-1(to)-55(j\\241!)]TJ 0 -13.549 Td[({)-350(P)29(e)-1(wni)1(e)-1(,)-349(\\273)-1(e)-350(tak,)-349(ale)-350(\\273e)-1(b)28(y)-349(nasz)-1(\\241)-349(\\271)-1(r)1(e)-1(b)1(ic)-1(\\246)-350(wyp)1(a\\261)-1(\\242,)-350(ogon)-349(jej)-349(ob)-28(ci\\241\\242,)-350(gr)1(z)-1(yw)28(\\246)]TJ -27.879 -13.549 Td[(zaple\\261)-1(\\242)-333(i)-334(spr)1(z)-1(\\241c)-334(z)-333(w)27(\\363)-55(jto)28(w)28(\\241)-334(siwk)56(\\241,)-334(t)1(ob)28(y)-333(tak)-333(s)-1(amo)-334(r)1(w)27(a\\252y)84(,)-333(c)-1(o?)-333(gos)-1(p)-27(o)-28(d)1(yni.)1(..)]TJ 27.879 -13.55 Td[(Pi)1(e)-1(s)-334(si\\246)-334(zerw)27(a\\252)-333(nagl)1(e)-1(,)-333(nastroszy\\252)-334(i)-333(zac)-1(z\\241\\252)-334(szc)-1(ze)-1(k)56(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Wyj)1(rz)-1(y)1(j)-333(no,)-333(ktosik)-333(jest)-334(w)-333(ganku)1(.)]TJ 0 -13.549 Td[(Ale)-451(n)1(im)-451(zd\\241\\273y\\252,)-450(jaki\\261)-450(ob)28(w)27(al)1(on)28(y)-450(\\261)-1(ni)1(e)-1(giem)-451(cz)-1(\\252o)28(wiek)-451(stan\\241\\252)-450(w)-451(p)1(rogu,)-450(p)-27(o-)]TJ -27.879 -13.549 Td[(c)27(h)29(w)27(ali)1(\\252)-334(Boga,)-333(otrze)-1(p)28(y)1(w)27(a\\252)-333(c)-1(zapk)28(\\246)-334(o)-333(b)1(ut)28(y)-333(i)-333(roz)-1(gl)1(\\241da\\252)-333(s)-1(i\\246)-333(p)-28(o)-333(izbie.)]TJ 27.879 -13.549 Td[({)-333(P)28(oz)-1(w)28(\\363lcie)-334(si\\246)-334(ogrza\\242)-334(i)-333(wytc)28(hn\\241\\242)-333(niec)-1(o!)-333({)-333(rze)-1(k)1(\\252)-334(p)1(ros)-1(z\\241co.)]TJ 0 -13.55 Td[({)-333(Siad)1(a)-56(j)1(c)-1(ie,)-333(Witek,)-333(pr)1(z)-1(y)1(rz)-1(u)1(\\242)-334(n)1(a)-334(ogie\\253)-333({)-333(z)-1(ar)1(z)-1(\\241d)1(z)-1(i\\252a)-333(z)-1(mies)-1(zana.)]TJ 0 -13.549 Td[(Niez)-1(n)1(a)-56(j)1(om)27(y)-333(siad\\252)-333(przed)-333(k)28(om)-1(i)1(nem)-1(,)-333(ogrza\\252)-333(s)-1(i\\246)-333(niec)-1(o)-333(i)-333(z)-1(ap)1(ali\\252)-333(fa)-55(jk)28(\\246.)]TJ 0 -13.549 Td[({)-327(Boryn)1(o)27(wy)-327(to)-327(d)1(om)-1(,)-327(M)1(ac)-1(ieja)-327(Boryn)29(y?)-327({)-328(zagadn)1(\\241\\252)-327(o)-28(dcz)-1(y)1(tuj)1(\\241c)-328(z)-328(p)1(api)1(e)-1(rk)56(a.)]TJ 0 -13.549 Td[({)-366(Ju\\261ci,)-366(Boryn)1(o)27(wy)-366({)-366(p)1(rzyt)28(w)-1(i)1(e)-1(rd)1(z)-1(i)1(\\252a)-366(z)-1(e)-366(s)-1(tr)1(ac)27(hem,)-366(b)-28(o)-366(si\\246)-366(jej)-366(u)28(wid)1(z)-1(ia\\252o,)-366(\\273e)]TJ -27.879 -13.549 Td[(to)-333(jaki)1(\\261)-334(z)-334(ur)1(z)-1(\\246du)1(.)]TJ 27.879 -13.55 Td[({)-333(Ojciec)-334(w)-334(d)1(om)27(u)1(?)]TJ 0 -13.549 Td[({)-333(M\\363)-56(j)-332(p)-28(osz)-1(l)1(i)-334(n)1(a)-334(wie\\261.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ek)56(am)-1(,)-333(p)-27(oz)-1(w)28(\\363lcie)-1(,)-333(\\273e)-334(p)-27(os)-1(iedz\\246)-334(p)1(rze)-1(d)-333(ogn)1(ie)-1(m,)-333(pr)1(z)-1(em)-1(ar)1(z)-1(\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(sied\\271c)-1(ie,)-333(pr)1(z)-1(ec)-1(iec)27(h)-333(\\252a)28(wki)-333(ni)-333(ogn)1(ia)-333(nie)-333(ub)-27(\\246)-1(d)1(z)-1(ie.)]TJ 0 -13.549 Td[(Niez)-1(n)1(a)-56(j)1(om)27(y)-285(zdj)1(\\241\\252)-285(k)28(o\\273)-1(u)1(c)27(h,)-284(ale)-286(snad)1(\\271)-286(zimno)-285(m)28(u)-285(b)28(y\\252o,)-284(b)-28(o)-285(ws)-1(t)1(rz)-1(\\241sa\\252)-285(s)-1(i)1(\\246)-286(ca\\252y)83(,)]TJ -27.879 -13.55 Td[(zac)-1(iera\\252)-333(r\\246c)-1(e)-334(i)-333(coraz)-334(b)1(li\\273e)-1(j)-333(p)1(rzysu)28(w)27(a\\252)-333(s)-1(i)1(\\246)-334(do)-333(ogni)1(a.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(\\246)-1(\\273k)56(a)-334(zima)-334(l)1(a)-1(t)1(o\\261)-334({)-334(sze)-1(p)1(n\\241\\252.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(;)-333(\\273e)-334(n)1(ie)-334(letk)56(a.)-334(A)-333(mo\\273)-1(e)-333(m)-1(lek)56(a)-334(zgoto)28(w)27(a\\242)-333(na)-333(rozgrz)-1(ewk)28(\\246)-1(?)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(\\246)-1(ku)1(j\\246,)-333(gdyb)28(y)1(\\261)-1(cie)-334(mieli)-333(herb)1(at\\246)-1(!.)1(..)]TJ 0 -13.549 Td[({)-320(By\\252a)-319(c)-1(i,)-319(b)28(y\\252a,)-319(jes)-1(zcz)-1(e)-320(jesie)-1(n)1(i\\241,)-319(kiej)-320(m\\363)-55(j)-320(c)28(horza\\252)-320(n)1(a)-320(b)1(rz)-1(u)1(c)27(h)1(,)-320(p)1(rzywie)-1(z\\252am)]TJ -27.879 -13.549 Td[(z)-334(miasta,)-333(ale)-334(wysz)-1(\\252a,)-333(a)-333(nie)-334(wiem,)-333(u)-333(k)28(ogo)-334(b)29(y)-334(n)1(a)-334(wsi)-333(z)-1(n)1(alaz)-1(\\252.)1(..)]TJ 27.879 -13.55 Td[({)-333(A)-334(d)1(obr)1(o)-28(dziej)-333(p)-28(on)1(o)-334(ci\\246gie)-1(m)-333(arb)1(at\\246)-334(pi)1(j\\241)-333({)-334(wtr\\241ci\\252)-333(Witek.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(otrze)-1(b)1(a,)-333(nie,)-333(herbat)1(\\246)-334(m)-1(am)-333(z)-1(e)-333(s)-1(ob)1(\\241,)-334(zagotuj)1(c)-1(i)1(e)-334(mi)-334(t)28(y)1(lk)28(o)-334(w)28(o)-28(d)1(y)83(..)1(.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(z)-1(\\241tku)-332(nib)28(y)1(!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ta)28(wi\\252a)-371(gar)1(nec)-1(ze)-1(k)-370(z)-371(w)27(o)-27(d\\241)-371(d)1(o)-371(ogn)1(ia)-371(i)-370(s)-1(i)1(ad\\252a)-371(z)-371(p)-27(o)28(w)-1(r)1(ote)-1(m)-371(d)1(o)-371(k)56(\\241dzieli,)]TJ -27.879 -13.549 Td[(ale)-303(nie)-303(prz\\246)-1(d)1(\\252a,)-303(t)28(yla)-303(c)-1(o)-303(cz)-1(ase)-1(m)-303(fu)1(rkn)1(\\246)-1(\\252a)-303(wrze)-1(cionem)-303(dla)-303(ni)1(e)-1(p)-27(oz)-1(n)1(aki)-303(i)-303(sp)-28(oziera\\252a)]TJ 0 -13.55 Td[(na)-325(niego)-326(pi)1(lnie,)-326(p)-27(e\\252)-1(n)1(a)-326(g\\252uc)28(hego)-326(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(u)-326(i)-325(c)-1(iek)56(a)27(w)28(o\\261c)-1(i:)-325(c)-1(o)-326(za)-326(j)1(e)-1(d)1(e)-1(n)1(,)-326(c)-1(zego)-326(c)27(h)1(c)-1(e,)]TJ 0 -13.549 Td[(mo\\273)-1(e)-478(z)-479(u)1(rz\\246)-1(d)1(u,)-478(p)-27(o)-478(j)1(akim)-478(s)-1(p)1(isie)-1(,)-477(b)-28(o)-478(ci\\246gie)-1(m)-478(zagl\\241da\\252)-478(d)1(o)-478(ksi\\241\\273)-1(ec)-1(zki?..)1(.)-478(Ubi)1(\\363r)]TJ\nET\nendstream\nendobj\n780 0 obj <<\n/Type /Page\n/Contents 781 0 R\n/Resources 779 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n779 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n785 0 obj <<\n/Length 8283      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(242)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(te\\273)-383(mia\\252)-382(p)1(ra)28(wie)-382(pa\\253)1(s)-1(ki)1(,)-382(sz)-1(ar)1(y)-382(z)-382(z)-1(i)1(e)-1(lon)29(ym)-1(,)-381(jak)1(i)-382(to)-382(n)1(os)-1(z\\241)-382(strze)-1(lcy)-382(d)1(w)27(or)1(s)-1(cy!)-381(a)-382(to)]TJ 0 -13.549 Td[(zno)28(wu)-268(k)28(o\\273)-1(u)1(c)27(h)-267(c)27(h\\252op)1(s)-1(ki)-267(i)-268(c)-1(zapk)28(\\246)-268(te)-1(\\273!)-268(Cud)1(ak)-268(c)-1(i)-268(j)1(aki\\261)-268(ab)-28(o)-268(ten)-268(ob)1(ie\\273)-1(y\\261wiat')-268(A)-268(mo\\273)-1(e)]TJ 0 -13.549 Td[(i)-472(co)-472(d)1(rugi)1(e)-1(!)-472(Rozm)27(y)1(\\261)-1(la\\252a)-472(p)-27(orozumiew)27(a)-55(j\\241c)-472(s)-1(i)1(\\246)-473(o)-27(c)-1(zam)-1(i)-471(z)-473(W)1(itkiem,)-472(kt\\363r)1(e)-1(n)-471(nib)29(y)]TJ 0 -13.549 Td[(p)-27(o)-28(dk)1(\\252)-1(ad)1(a\\252)-289(na)-288(ogie)-1(\\253)1(,)-289(a)-289(g\\252\\363)28(wnie)-289(r)1(oz)-1(gl\\241d)1(a\\252)-289(ni)1(e)-1(zna)-55(jome)-1(go)-289(i)-288(m)-1(o)-27(c)-1(n)1(o)-289(s)-1(i)1(\\246)-290(d)1(z)-1(i)1(w)27(o)28(w)27(a\\252,)-288(\\273)-1(e)]TJ 0 -13.549 Td[(ten)-333(c)-1(mokn)1(\\241\\252)-334(n)1(a)-334(\\212ap)-27(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-333(Ugryzie,)-334(p)1(ies)-334(z)-1(\\252y)1(!)-334({)-333(sz)-1(epn)1(\\241\\252)-334(mimo)-334(w)28(oli.)]TJ 0 -13.549 Td[({)-290(Ni)1(e)-290(b)-28(\\363)-55(j)-289(s)-1(i\\246,)-290(mn)1(ie)-290(psy)-290(n)1(ie)-290(gryz\\241)-290({)-289(u\\261m)-1(i)1(e)-1(c)28(hn\\241\\252)-289(s)-1(i\\246)-290(d)1(z)-1(i)1(w)-1(n)1(ie)-290(i)-289(g\\252)-1(ad)1(z)-1(i)1(\\252)-290(tul)1(\\241c)-1(y)]TJ -27.879 -13.549 Td[(m)27(u)-332(s)-1(i\\246)-333(do)-333(k)28(olan)-333(psi)-333(\\252e)-1(b)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(z\\252a)-306(wkr\\363t)1(c)-1(e)-306(J\\363zk)56(a,)-306(a)-305(z)-1(a)-305(ni)1(\\241)-306(zaraz)-306(za)-56(j)1(rz)-1(a\\252a)-305(W)83(a)28(wrzono)28(w)28(a,)-306(to)-305(kt\\363r)1(y\\261)-306(z)]TJ -27.879 -13.549 Td[(s\\241s)-1(iad)1(\\363)28(w)-1(,)-240(b)-28(o)-240(s)-1(i\\246)-241(j)1(u\\273)-241(b)28(y\\252o)-240(roz)-1(n)1(ies)-1(\\252o)-241(w)-241(s\\241sie)-1(d)1(z)-1(t)28(wie,)-241(\\273e)-241(jaki\\261)-241(ob)-27(c)-1(y)-240(s)-1(i)1(e)-1(d)1(z)-1(i)-240(u)-241(Bory)1(n\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-265(on)-264(w)27(ci\\241\\273)-265(si\\246)-266(n)1(agrze)-1(w)28(a\\252)-265(ni)1(e)-266(b)1(ac)-1(z\\241c)-265(na)-265(lu)1(dzi)-265(n)1(i)-265(ic)28(h)-265(sz)-1(ept)28(y)-264(i)-265(u)28(w)28(agi,)-265(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.55 Td[(gdy)-413(si\\246)-414(w)28(o)-28(da)-413(z)-1(agoto)28(w)28(a\\252a,)-414(wyd)1(ob)28(y\\252)-414(z)-414(j)1(akiego\\261)-414(pap)1(ierk)56(a)-414(h)1(e)-1(r)1(bat\\246,)-414(zas)-1(y)1(pa\\252,)-413(s)-1(am)]TJ 0 -13.549 Td[(sobie)-442(wzi\\241\\252)-441(z)-442(p)-27(\\363\\252)-1(k)1(i)-441(bia\\252y)-441(garn)29(usz)-1(ek,)-441(nala\\252)-441(wrz\\241tku)-441(i)-441(p)1(rz)-1(egry)1(z)-1(a)-55(j\\241c)-442(k)56(a)28(w)27(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(cukr)1(u,)-305(p)-27(opi)1(ja\\252)-305(i)-305(c)27(h)1(o)-28(dzi\\252)-305(p)-27(o)-305(izbie,)-305(a)-305(pr)1(z)-1(ygl)1(\\241da\\252)-305(si\\246)-306(ob)1(razom)-1(,)-305(spr)1(z)-1(\\246tom,)-305(to)-305(sta)27(w)28(a\\252)]TJ 0 -13.549 Td[(na)-365(\\261)-1(r)1(o)-28(dk)1(u)-365(i)-366(tak)-365(p)1(rz)-1(eni)1(kliwie)-366(sp)-27(ogl\\241da\\252)-365(w)-366(o)-28(cz)-1(y)84(,)-366(\\273e)-366(lu)1(dziom)-366(mi\\246)-1(tk)28(o)-365(rob)1(i\\252o)-366(si\\246)-366(w)]TJ 0 -13.549 Td[(do\\252k)1(u.)]TJ 27.879 -13.55 Td[({)-333(Kto)-333(to)-334(l)1(e)-1(p)1(i\\252?)-334({)-333(ws)-1(k)56(az)-1(a\\252)-333(na)-333(\\261w)-1(i)1(at)28(y)-334(wisz\\241c)-1(e)-334(u)-333(su\\014)1(tu.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(j)1(a!)-333({)-334(p)1(iskn\\246\\252a)-334(r)1(oz)-1(cz)-1(erwienion)1(a)-333(J\\363z)-1(k)56(a.)]TJ 0 -13.549 Td[(Cho)-28(d)1(z)-1(i)1(\\252)-334(zno)28(wu)-333(d\\252u)1(go,)-334(a)-333(\\212ap)1(a)-334(kr)1(ok)-333(w)-334(kr)1(ok)-333(z)-1(a)-333(nim.)]TJ 0 -13.549 Td[({)-341(Kto)-341(t)1(ak)-341(wym)-1(al)1(o)27(w)28(a\\252?)-341({)-341(z)-1(a)28(w)28(o\\252a\\252)-341(z)-1(d)1(umion)28(y)-341(p)1(rzys)-1(t)1(a)-56(j\\241c)-341(pr)1(z)-1(ed)-341(wycin)1(k)55(ami,)]TJ -27.879 -13.549 Td[(jak)1(ie)-334(b)28(y)1(\\252)-1(y)-333(n)1(alepion)1(e)-334(na)-333(ramac)27(h)-333(ob)1(raz\\363)27(w,)-333(a)-333(gdzie)-1(n)1(iegdzie)-334(i)-333(wpr)1(os)-1(t)-333(na)-333(\\261c)-1(ian)1(ie.)]TJ 27.879 -13.55 Td[({)-333(Kiej)-333(to)-333(nie)-334(malo)28(w)28(ane,)-334(i)1(no)-333(wys)-1(tr)1(z)-1(y)1(\\273)-1(on)1(e)-334(z)-334(pap)1(ier\\363)28(w!)]TJ 0 -13.549 Td[({)-333(Nie)-334(mo\\273)-1(e)-333(b)28(y\\242!)-334({)-333(wykr)1(z)-1(yk)1(n\\241\\252.)]TJ 0 -13.549 Td[({)-333(Samam)-334(strzyg\\252a,)-333(to)-334(j)1(u\\261c)-1(i)1(,)-334(wiem!)]TJ 0 -13.549 Td[({)-333(I)-334(sam)-1(i)1(\\261)-1(cie)-334(to)-333(wym)27(y)1(\\261)-1(li)1(li,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Sama,)-333(a)-334(d)1(y\\242)-334(k)56(a\\273de)-334(d)1(z)-1(iec)27(k)28(o)-333(w)27(e)-333(w)-1(si)-333(to)-333(p)-28(otr)1(a\\014.)]TJ 0 -13.55 Td[(Umilk\\252)-417(zno)28(wu,)-416(nala\\252)-417(sobi)1(e)-418(d)1(ru)1(gi)-417(raz)-417(herb)1(at)28(y)83(,)-416(usiad\\252)-417(p)1(rze)-1(d)-416(k)28(om)-1(i)1(nem)-417(i)-417(z)]TJ -27.879 -13.549 Td[(dob)1(re)-334(p)1(ar\\246)-334(p)1(ac)-1(i)1(e)-1(rzy)-333(ni)1(e)-334(rze)-1(k\\252)-333(ani)-333(s\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-375(si\\246)-375(p)-27(orozc)27(h)1(o)-28(dzili)1(,)-374(b)-28(o)-374(wiec)-1(z\\363r)-374(n)1(adc)27(h)1(o)-28(d)1(z)-1(i\\252)-374(i)-374(zam)-1(i)1(e)-1(\\242)-374(s)-1(i)1(\\246)-375(ucisz)-1(a\\252a,)-374(\\273e)]TJ -27.879 -13.549 Td[(in)1(o)-318(czas)-1(ami)-317(z)-1(r)1(yw)27(a\\252)-317(si\\246)-318(j)1(e)-1(sz)-1(cz)-1(e)-317(os)-1(tr)1(y)-317(w)-1(i)1(c)27(her,)-317(zakr\\246c)-1(a\\252,)-317(m\\241ci\\252)-318(i)-317(b)1(i\\252)-317(w)-318(c)28(ha\\252up)29(y)83(,)-317(ale)]TJ 0 -13.549 Td[(coraz)-289(rzadziej)-288(i)-288(s)-1(\\252abi)1(e)-1(j)-288(si\\246)-289(tr)1(z)-1(ep)-28(ot)1(a\\252)-1(,)-288(n)1(ib)28(y)-288(ten)-288(ptak)-288(wyzb)28(yt)28(y)-288(z)-289(s)-1(i)1(\\252)-289(d)1(ale)-1(k)1(im)-289(lotem.)]TJ 27.879 -13.55 Td[(Jagn)1(a)-285(te)-1(\\273)-285(w)-285(k)28(o\\253c)-1(u)-284(o)-28(d)1(s)-1(ta)28(wi\\252a)-285(k)56(\\241dzie)-1(l)-284(i)-285(wz)-1(i\\246\\252a)-285(s)-1(i)1(\\246)-286(d)1(o)-285(w)-1(i)1(e)-1(cz)-1(or)1(o)27(wyc)28(h)-285(obr)1(z)-1(\\241d)1(-)]TJ -27.879 -13.549 Td[(k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(S\\252u\\273y\\252)-333(u)-333(w)27(as)-333(Jakub)-333(S)1(o)-28(c)27(h)1(a?)-334({)-333(zagadn\\241\\252)-333(ni)1(e)-1(zna)-55(jom)27(y)84(.)]TJ 0 -13.549 Td[({)-463(Nib)28(y)-463(Ku)1(ba!)-463(Ju)1(\\261)-1(ci,)-463(\\273)-1(e)-463(s)-1(\\252u)1(\\273)-1(y\\252,)-463(ale)-463(s)-1(i\\246)-463(p)-28(omar\\252o)-463(c)27(h)28(u)1(dziak)28(o)28(wi)-463(jes)-1(zc)-1(ze)-464(na)]TJ -27.879 -13.549 Td[(jesie)-1(n)1(i.)]TJ 27.879 -13.549 Td[({)-356(M\\363)28(wi\\252)-356(m)-1(i)-355(ks)-1(i)1(\\241)-1(d)1(z)-357(o)-356(t)28(ym.)-356(M\\363)-55(j)-356(Bo\\273)-1(e,)-356(sz)-1(u)1(k)55(a\\252em)-357(go)-356(o)-28(d)-355(lata)-356(p)-27(o)-357(wsz)-1(y)1(s)-1(tki)1(c)27(h)]TJ -27.879 -13.55 Td[(ws)-1(i)1(ac)27(h)-333(ok)28(\\363ln)28(y)1(c)27(h)-333(i)-333(z)-1(n)1(alaz\\252e)-1(m)-334(p)-27(o)-333(\\261)-1(mierci...)]TJ 27.879 -13.549 Td[({)-333(Nas)-1(ze)-1(go)-333(Ku)1(b)28(y)-333(s)-1(zuk)56(ali\\261ta?)-333({)-334(za)28(w)27(o\\252a\\252)-333(Witek)-333(w)-1(zru)1(s)-1(zon)28(y)83(.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(p)1(an)-333(m)27(u)1(s)-1(z\\241)-334(b)29(y\\242)-334(dziedzic)-1(o)28(wym)-333(bratem)-334(z)-333(W)83(oli)1(?)]TJ 0 -13.549 Td[({)-333(Sk)56(\\241d\\273e)-334(mnie)-333(z)-1(n)1(ac)-1(ie?)]TJ 0 -13.549 Td[({)-346(P)28(o)28(w)-1(i)1(e)-1(d)1(ali)-346(nieraz)-347(l)1(udzie,)-346(\\273)-1(e)-347(d)1(z)-1(i)1(e)-1(d)1(z)-1(ico)28(w)-1(y)-346(b)1(rat)-346(wr\\363)-28(ci\\252)-347(z)-346(dalekic)28(h)-346(kra)-55(j\\363)28(w)-347(i)]TJ -27.879 -13.55 Td[(sz)-1(u)1(k)55(a)-333(p)-27(o)-334(wsiac)27(h)-333(j)1(akiego\\261)-334(Ku)1(b)28(y)83(,)-333(ale)-333(nik)1(to)-334(n)1(ie)-334(miark)28(o)28(w)28(a\\252)-334(kt)1(\\363re)-1(go.)]TJ 27.879 -13.549 Td[({)-333(So)-28(c)28(h)28(y)83(,)-333(d)1(opiero)-333(dzisia)-56(j)-333(si\\246)-334(d)1(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252em,)-334(\\273e)-334(s\\252u\\273y\\252)-334(u)-333(w)28(as)-334(i)-333(\\273e)-334(umar\\252.)]TJ\nET\nendstream\nendobj\n784 0 obj <<\n/Type /Page\n/Contents 785 0 R\n/Resources 783 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n783 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n788 0 obj <<\n/Length 8590      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(243)]TJ -330.353 -35.866 Td[({)-302(P)29(os)-1(tr)1(z)-1(elili)-301(go,)-302(k)1(rew)-302(go)-302(u)1(s)-1(z\\252a)-302(i)-302(p)-27(omar\\252,)-301(p)-28(omar\\252!)-301({)-302(w)28(o\\252)-1(a\\252)-301(Witek)-302(p)1(rze)-1(z)-302(\\252zy)83(.)]TJ 0 -13.549 Td[({)-333(D\\252ugo)-333(b)28(y\\252)-333(u)-333(w)27(as?)]TJ 0 -13.549 Td[({)-333(A)-334(za)28(w)-1(\\273dy)84(,)-333(jak)-333(in)1(o)-334(p)1(ami\\246)-1(ci\\241)-333(s)-1(i)1(\\246)-1(gn)1(\\246)-1(,)-333(to)-333(z)-1(a)28(w\\273)-1(d)1(y)-333(s)-1(\\252u)1(\\273)-1(y\\252)-333(u)-333(Boryn)1(\\363)27(w.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ciwy)-333(b)28(y\\252)-333(p)-28(o)-28(d)1(obn)1(o?)-334({)-333(p)28(yta\\252)-333(ni)1(e)-1(\\261m)-1(i)1(a\\252o)-1(.)]TJ 0 -13.549 Td[({)-327(I)-328(j)1(ak)-328(j)1(e)-1(sz)-1(cze)-1(,)-327(c)-1(a\\252a)-327(wie)-1(\\261)-327(m)-1(o\\273e)-328(pr)1(z)-1(y)1(\\261)-1(wiad)1(c)-1(zy\\242)-1(,)-327(wsz)-1(ysc)-1(y)84(,)-327(na)28(w)28(e)-1(t)-327(dob)1(ro)-28(d)1(z)-1(iej)]TJ -27.879 -13.55 Td[(p\\252ak)56(ali)-333(n)1(a)-334(p)-27(o)-28(c)27(h)1(o)28(w)-1(k)1(u)-333(i)-333(nic)-333(nie)-334(wzi\\246li)-333(z)-1(a)-333(nab)-27(o\\273)-1(e\\253st)28(w)27(o.)]TJ 27.879 -13.549 Td[({)-313(A)-312(m)-1(n)1(ie)-313(pacie)-1(r)1(z)-1(a)-312(ucz)-1(y\\252)-313(i)-312(s)-1(t)1(rz)-1(y)1(la\\242)-313(ucz)-1(y\\252,)-312(i)-313(k)1(ie)-1(j)-312(ro)-27(dzon)28(y)-313(o)-28(ciec)-313(opiek)28(\\246)-313(trzy-)]TJ -27.879 -13.549 Td[(ma\\252)-294(n)1(ade)-294(mn\\241!)-293(I)-293(p)-27(o)-294(d)1(z)-1(i)1(e)-1(si\\241tku)-293(cz)-1(asem)-294(da)28(w)28(a\\252)-294(i.)1(..)-293({)-293(w)-1(yb)1(uc)28(hn)1(\\241\\252)-294(p)1(\\252)-1(acze)-1(m)-294(n)1(a)-293(przy-)]TJ 0 -13.549 Td[(p)-27(om)-1(n)1(ienie.)]TJ 27.879 -13.549 Td[({)-362(A)-363(p)-27(ob)-27(o\\273)-1(n)29(y)-363(b)29(y\\252,)-362(c)-1(ic)28(h)28(y)84(,)-362(praco)28(w)-1(i)1(t)27(y)-362(p)1(arob)-27(e)-1(k)1(,)-362(\\273)-1(e)-363(n)1(ieraz)-363(d)1(obro)-27(dzie)-1(j)-361(s)-1(am)-363(go)]TJ -27.879 -13.549 Td[(c)27(h)29(w)27(ali)1(\\252)-1(.)1(..)]TJ 27.879 -13.55 Td[({)-333(Na)-334(w)28(as)-1(zym)-333(c)-1(me)-1(n)28(t)1(arz)-1(u)-332(p)-28(o)-28(c)28(ho)28(w)28(an)28(y?)]TJ 0 -13.549 Td[({)-333(Za\\261)-1(b)28(y)-333(in)1(dziej?)]TJ 0 -13.549 Td[({)-348(Ja)-348(wie)-1(m)-348(gdzie,)-348(p)-28(ok)56(a\\273\\246)-1(.)-348(Jam)28(br)1(o\\273)-1(y)-348(m)28(u)-348(kr)1(z)-1(y\\273)-348(p)-28(osta)28(wi\\252,)-348(a)-348(R)-1(o)-27(c)27(ho)-348(wyp)1(isa\\252)]TJ -27.879 -13.549 Td[(na)-320(des)-1(ec)-1(zce)-322(wsz)-1(y)1(s)-1(tk)28(o,)-320(\\273)-1(e)-321(c)28(ho)-28(\\242)-321(za)28(w)-1(i)1(ane)-321(\\261)-1(n)1(iegie)-1(m,)-320(tra\\014)1(\\246)-321(i)-321(d)1(opro)28(w)28(adz\\246)-1(!)-320({)-321(za)28(w)27(o\\252a\\252)]TJ 0 -13.549 Td[(Wit)1(e)-1(k.)]TJ 27.879 -13.55 Td[({)-333(A)-334(to)-333(zaraz)-334(p)-27(\\363)-56(j)1(d\\271m)27(y)84(,)-333(ab)28(y)-333(przed)-333(no)-28(c\\241)-333(z)-1(d)1(\\241\\273)-1(y\\242.)]TJ 0 -13.549 Td[(Niez)-1(n)1(a)-56(j)1(om)27(y)-324(o)-28(d)1(z)-1(ia\\252)-324(si\\246)-325(w)-324(k)28(o\\273)-1(u)1(c)27(h)-324(i)-324(p)1(rze)-1(z)-324(d\\252ug\\241)-324(c)27(h)29(w)-1(i)1(l\\246)-325(sta\\252)-325(n)1(a)-324(\\261)-1(r)1(o)-28(dku)-323(iz)-1(b)29(y)83(,)]TJ -27.879 -13.549 Td[(gdzie\\261)-349(p)1(rze)-1(d)-347(s)-1(i)1(\\246)-349(zapatr)1(z)-1(on)28(y)84(.)-348(S)1(tary)-347(ju\\273)-348(b)28(y)1(\\252)-1(,)-347(przygar)1(bion)28(y)-347(nieco,)-348(s)-1(i)1(w)-1(y)84(,)-348(suc)28(h)28(y)-348(j)1(ak)]TJ 0 -13.549 Td[(wi\\363r;)-295(t)27(w)28(arz)-296(mia\\252)-296(p)-28(or)1(adlon)1(\\241)-296(i)-296(zie)-1(mist\\241,)-296(d)1(z)-1(iu)1(r\\246)-296(w)-297(p)1(ra)28(wym)-296(p)-28(ol)1(ic)-1(zku,)-295(s)-1(tar)1(y)-296(\\261)-1(l)1(ad)-296(o)-28(d)]TJ 0 -13.549 Td[(ku)1(li,)-298(a)-298(cz)-1(erw)28(on\\241,)-298(d\\252u)1(g\\241)-298(kryc)28(h\\246)-298(nad)-298(ok)1(ie)-1(m,)-298(n)1(os)-299(d\\252u)1(gi,)-298(kr)1(z)-1(acz)-1(ast\\241,)-298(rzadk)56(\\241)-298(br)1(\\363)-28(dk)28(\\246)]TJ 0 -13.55 Td[(i)-295(c)-1(iemne)-296(o)-28(cz)-1(y)84(,)-295(g\\252\\246)-1(b)-27(ok)28(o)-296(wpad)1(ni)1(\\246)-1(te)-296(i)-295(jar)1(z)-1(\\241ce)-296(mo)-28(c)-1(n)1(o;)-296(f)1(a)-56(j)1(ki)-295(z)-296(z)-1(\\246b)-28(\\363)28(w)-295(nie)-296(p)-27(opu)1(s)-1(zc)-1(za\\252)]TJ 0 -13.549 Td[(ani)-291(n)1(a)-292(c)28(h)28(wil\\246)-292(i)-291(ci\\246)-1(gi)1(e)-1(m)-292(j)1(\\241)-291(z)-1(ap)1(ala\\252.)-292(P)29(oruszy\\252)-292(si\\246)-292(wres)-1(zcie)-292(i)-291(c)27(h)1(c)-1(ia\\252)-291(jaki)1(e)-1(\\261)-292(p)1(ieni\\241d)1(z)-1(e)]TJ 0 -13.549 Td[(da\\242)-333(Jagusi,)-333(ale)-334(cofn)1(\\246)-1(\\252a)-333(r\\246c)-1(e)-334(za)-333(s)-1(iebi)1(e)-334(i)-333(p)-28(o)-27(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252a)]TJ 27.879 -13.549 Td[({)-333(W)83(e\\271)-1(cie,)-333(z)-1(a)-333(dar)1(m)-1(o)-333(nic)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-334(ni)1(e)-334(da)-55(j\\241..)1(.)]TJ 0 -13.549 Td[({)-343(Hale)-1(,)-343(w)28(e)-344(\\261wie)-1(cie)-344(mo\\273e)-344(tak)56(a)-344(mo)-28(d)1(a.)-343(\\233)-1(y)1(d)-343(to)-343(jes)-1(tem)-344(alb)-27(o)-343(te)-1(n)-342(hand)1(larz,)-343(c)-1(o)]TJ -27.879 -13.55 Td[(za)-334(w)28(o)-28(d\\246)-333(i)-333(ogie)-1(\\253)-333(k)56(a\\273e)-334(s)-1(ob)1(ie)-334(p)1(\\252ac)-1(i\\242!{)-333(s)-1(zepn\\246\\252a)-334(ob)1(ra\\273ona.)]TJ 27.879 -13.549 Td[({)-452(B\\363g)-452(w)28(am)-452(z)-1(ap)1(\\252a\\242)-452(z)-1(a)-452(go\\261cinn)1(o\\261)-1(\\242!)-452(P)28(o)28(wiedzc)-1(i)1(e)-453(w)28(asz)-1(em)27(u)1(,)-452(\\273e)-453(b)29(y\\252)-452(Jace)-1(k)-451(z)]TJ -27.879 -13.549 Td[(W)84(oli.)-328(Przyp)-27(om)-1(n)1(i)-328(m)-1(n)1(ie)-329(s)-1(ob)1(ie,)-329(za)-56(j)1(rz\\246)-329(tu)-328(jes)-1(zc)-1(ze)-329(do)-328(w)27(as)-329(ki)1(e)-1(d)1(y)83(,)-328(teraz)-329(mi)-329(p)1(iln)1(o,)-329(b)-27(o)]TJ 0 -13.549 Td[(no)-27(c)-334(nad)1(c)27(h)1(o)-28(dzi;)-333(os)-1(ta)-55(jcie)-334(z)-333(B)-1(ogiem.)]TJ 27.879 -13.549 Td[({)-333(P)28(an)28(u)-333(Bogu)-333(o)-28(d)1(da)-56(j)1(e)-1(m!)]TJ 0 -13.55 Td[(Chcia\\252a)-333(go)-334(p)-27(o)-28(ca\\252)-1(o)28(w)28(a\\242)-334(w)-334(r)1(\\246)-1(k)28(\\246,)-333(ale)-334(wyr)1(w)27(a\\252)-333(s)-1(i\\246)-333(i)-333(\\273)-1(w)28(a)27(w)28(o)-333(rusz)-1(y)1(\\252)-334(z)-334(c)28(ha\\252u)1(p)28(y)83(.)]TJ 0 -13.549 Td[(Na)-402(z)-1(i)1(e)-1(mi\\246,)-402(s)-1(yp)1(a\\252)-402(s)-1(i\\246)-402(pi)1(e)-1(rwsz)-1(y)84(,)-402(ledwie)-402(do)-56(j)1(rzan)28(y)-402(mrok,)-402(wic)28(her)-402(usta\\252,)-402(jeno)]TJ -27.879 -13.549 Td[(z)-403(zas)-1(p)1(,)-403(co)-403(gr)1(oblami)-402(le\\273)-1(a\\252y)-402(w)-403(p)-27(opr)1(z)-1(ek)-403(d)1(rogi,)-402(ku)1(rzy\\252)-403(suc)28(h)28(y)83(,)-402(mia\\252ki)-402(\\261)-1(n)1(ieg,)-403(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(kto)-392(p)29(ytle)-392(wytrzep)28(yw)28(a\\252)-392(z)-393(m\\241ki,)-391(ale)-392(ino)-391(do\\252em)-393(sz\\252)-1(a)-391(m)-1(\\241t)28(w)28(a)-392(i)-392(ku)1(rn)1(ia)28(w)27(a,)-391(b)-28(o)-391(g\\363r\\241)]TJ 0 -13.549 Td[(ju)1(\\273)-457(b)29(y\\252o)-456(przycic)27(h)1(\\252o,)-456(\\273)-1(e)-456(dom)28(y)-456(i)-456(s)-1(ad)1(y)-456(wyc)27(h)29(yli\\252y)-456(si\\246)-457(n)1(a)-456(ja\\261ni\\246)-456(i)-456(sta\\252y)-456(w)-1(i)1(dn)1(e)-457(w)]TJ 0 -13.549 Td[(omdla\\252ym,)-333(s)-1(i)1(na)28(wym)-334(tu)1(m)-1(an)1(ie)-334(mro)-27(c)-1(ze)-1(n)1(ia.)]TJ 27.879 -13.55 Td[(A)-263(wie\\261)-264(j)1(akb)28(y)-263(p)1(rze)-1(c)28(kn\\246\\252a)-263(z)-264(o)-27(dr\\246t)28(w)-1(i)1(e)-1(n)1(ia,)-263(zaroi\\252y)-263(si\\246)-263(dr)1(ogi,)-263(za)27(wrza\\252y)-263(g\\252osam)-1(i)]TJ -27.879 -13.549 Td[(op\\252otk)1(i,)-411(gdzieniegdzie)-412(b)1(rali)-411(si\\246)-412(d)1(o)-412(o)-27(dw)28(alania)-411(\\261nieg\\363)28(w)-412(sprzed)-411(c)27(ha\\252u)1(p,)-411(r\\241b)1(ali)-411(w)]TJ 0 -13.549 Td[(sta)27(wie)-288(pr)1(z)-1(er\\246ble,)-288(n)1(o)-1(sili)-287(w)27(o)-28(d)1(\\246)-1(,)-287(w)-1(y)1(w)-1(i)1(e)-1(ral)1(i)-288(wr\\363tn)1(ie)-289(d)1(o)-288(s)-1(to)-27(d\\363\\252,)-288(\\273e)-289(b)1(ic)-1(ie)-288(ce)-1(p)-27(\\363)28(w)-289(d)1(ono-)]TJ 0 -13.549 Td[(\\261niej)-291(rozlega\\252o)-292(si\\246)-291(p)-28(o)-291(d)1(rogac)27(h)1(,)-291(gdzieniegdzie)-292(j)1(u\\273)-291(i)-291(s)-1(an)1(ie)-292(z)-291(tru)1(dem)-292(tor)1(o)28(w)27(a\\252y)-291(sobie)]TJ 0 -13.549 Td[(dr)1(og\\246)-1(,)-296(n)1(a)27(w)28(e)-1(t)-296(wron)29(y)-297(p)-27(ok)56(az)-1(a\\252y)-296(si\\246)-297(w)-297(ob)-27(ej\\261c)-1(iac)28(h,)-296(co)-297(b)28(y)1(\\252)-1(o)-296(n)1(ie)-1(c)28(h)28(yb)1(n)28(ym)-297(znaki)1(e)-1(m,)-296(\\273)-1(e)]TJ 0 -13.55 Td[(sz)-1(\\252o)-333(na)-333(o)-28(dmian)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(P)28(an)-416(Jac)-1(ek)-417(rozgl\\241da\\252)-417(si\\246)-418(ciek)55(a)28(wie)-417(dok)28(o\\252a,)-417(cz)-1(ase)-1(m)-417(p)28(yta\\252)-417(o)-417(lu)1(dzi)-417(s)-1(p)-27(ot)28(yk)56(a-)]TJ\nET\nendstream\nendobj\n787 0 obj <<\n/Type /Page\n/Contents 788 0 R\n/Resources 786 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n786 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n791 0 obj <<\n/Length 9418      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(244)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(n)28(yc)28(h,)-333(to)-333(o)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-333(a)-334(sz)-1(ed\\252)-333(tak)-333(ra\\271no,)-333(\\273e)-334(Wi)1(te)-1(k)-333(ledwie)-333(nad)1(\\241\\273)-1(y\\252,)-333(in)1(o)-333(\\212apa)-333(bieg\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(o)-27(dem)-334(i)-333(wys)-1(zc)-1(zekiw)27(a\\252)-333(rad)1(o\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-236(k)28(o\\261c)-1(io\\252em)-237(p)1(i\\246)-1(tr)1(z)-1(y)1(\\252)-1(y)-236(si\\246)-237(t)1(ak)-237(srogi)1(e)-237(z)-1(asp)28(y)84(,)-236(\\273)-1(e)-237(ca\\252kiem)-237(ogr)1(o)-28(dze)-1(n)1(ie)-237(p)1(rzy-)]TJ -27.879 -13.549 Td[(w)28(ali\\252y)-289(i)-289(p)1(ra)28(wie)-290(p)-27(o)-289(ga\\252\\246)-1(zie)-289(drzew)-290(si\\246ga\\252)-1(y)-288(,)-289(m)27(u)1(s)-1(ieli)-289(ob)-27(c)27(h)1(o)-28(d)1(z)-1(i\\242)-289(dr)1(ug\\241)-289(stron\\241)-289(p)-27(ob)-27(ok)]TJ 0 -13.549 Td[(pl)1(e)-1(b)1(anii)1(,)-351(napr)1(z)-1(ec)-1(i)1(w)-352(kt)1(\\363re)-1(j)-350(c)-1(a\\252a)-351(h)28(u)1(rma)-352(c)28(h\\252op)1(ak)28(\\363)27(w)-351(gani)1(a\\252)-1(a)-351(si\\246)-352(z)-351(wrz)-1(askiem)-352(i)-350(bi-)]TJ 0 -13.55 Td[(\\252a)-377(\\261ni)1(e)-1(giem)-1(,)-376(a)-377(\\273e)-377(\\212apa)-376(s)-1(zc)-1(zek)55(a\\252)-376(na)-377(n)1(ic)27(h)1(,)-376(c)27(h)28(yci\\252)-377(go)-376(kt\\363ry)1(\\261)-377(z)-1(a)-377(gr)1(z)-1(b)1(iet)-377(i)-376(rzuci\\252)-377(w)]TJ 0 -13.549 Td[(pu)1(s)-1(zyst\\241,)-342(dymi\\241c\\241)-343(jesz)-1(cz)-1(e)-343(zas)-1(p)-27(\\246)-1(.)-342(Wi)1(te)-1(k)-342(s)-1(k)28(o)-27(c)-1(zy\\252)-343(n)1(a)-343(ratu)1(nek,)-342(ale)-343(i)-342(jem)27(u)-342(dosta\\252o)]TJ 0 -13.549 Td[(si\\246)-412(n)1(ie)-1(zgorze)-1(j)-411(p)-27(ec)-1(yn)1(am)-1(i)1(,)-411(\\273)-1(e)-412(l)1(e)-1(d)1(w)-1(i)1(e)-412(si\\246)-412(wygramoli\\252,)-411(co\\261)-412(n)1(ie)-1(co\\261)-412(o)-28(d)1(da\\252)-411(i)-411(p)-28(ol)1(e)-1(cia\\252)]TJ 0 -13.549 Td[(c)27(h)29(yb)-28(ciki)1(e)-1(m,)-333(b)-28(o)-333(p)1(an)-333(Jac)-1(ek)-333(nie)-333(c)-1(ze)-1(k)56(a\\252.)]TJ 27.879 -13.549 Td[(Ledwie)-293(si\\246)-293(p)1(rze)-1(k)28(op)1(ali)-292(na)-292(cm)-1(en)28(tar)1(z)-1(,)-292(a)-292(i)-292(tam)-293(\\261ni)1(e)-1(gu)-292(,)-292(b)29(y\\252o)-293(n)1(a)-292(dobr)1(e)-1(go)-292(c)27(h)1(\\252o-)]TJ -27.879 -13.549 Td[(pa,)-338(t)28(yl)1(a)-339(\\273e)-339(in)1(o)-339(r)1(am)-1(i)1(ona)-338(krzy\\273\\363)27(w)-338(c)-1(ze)-1(r)1(nia\\252y)-338(si\\246)-339(n)1(ad)-338(grobl)1(am)-1(i)-338(i)-338(garb)1(am)-1(i)-338(\\261ni)1(e)-1(g\\363)28(w;)]TJ 0 -13.55 Td[(mie)-1(j)1(s)-1(ce)-401(z)-1(a\\261)-401(b)28(y\\252o)-401(n)1(ie)-1(co)-401(ot)28(w)27(ar)1(te)-1(,)-400(to)-401(wiatr)-401(j)1(e)-1(szc)-1(ze)-402(p)1(rze)-1(ci\\241)-28(ga\\252)-401(cz)-1(asam)-1(i)-400(i)-401(ku)1(rza)27(w)28(a)]TJ 0 -13.549 Td[(raz)-376(p)-28(o)-376(r)1(az)-377(p)1(rzys)-1(\\252an)1(ia\\252a)-376(w)-1(szys)-1(tk)28(o)-376(mg\\252a)28(w)-1(i)1(c)-1(\\241,)-376(\\273e)-377(i)1(no)-376(dr)1(z)-1(ew)27(a)-376(n)1(agie)-377(tar)1(ga\\252y)-376(s)-1(i)1(\\246)-377(w)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-382(i)-383(ma)-55(jac)-1(zy\\252y)-382(pn)1(iam)-1(i)1(.)-383(P)28(ol)1(a)-383(z)-1(a\\261)-383(n)1(aok)28(\\363\\252)-383(z)-1(asn)28(ut)1(e)-384(b)29(y\\252y)-383(b)1(ie)-1(l)1(m)-1(em)-1(,)-382(o\\261le)-1(p)1(\\252e)-384(zgo\\252a)]TJ 0 -13.549 Td[(i)-411(sine)-411(m)-1(r)1(o)-28(c)-1(zno\\261c)-1(i)1(\\241,)-411(\\273)-1(e)-412(n)1(ic)-412(n)1(ie)-412(r)1(oz)-1(ez)-1(n)1(a\\252)-412(n)1(i)-411(dr)1(z)-1(ew)-1(,)-411(n)1(i)-411(k)56(am)-1(i)1(onek,)-411(ni)-411(b)-27(or\\363)28(w)-412({)-411(j)1(e)-1(-)]TJ 0 -13.549 Td[(no)-372(tu\\273)-373(za)-373(sm)-1(\\246tarze)-1(m,)-372(na)-373(d)1(r\\363\\273c)-1(e)-373(zas)-1(yp)1(anej)-372(c)-1(i\\241)-27(gn\\246\\252)-1(o)-372(kilk)56(an)1(a\\261)-1(cioro)-372(lud)1(z)-1(i,)-372(ci\\246)-1(\\273k)28(o)]TJ 0 -13.55 Td[(obr)1(z)-1(emie)-1(n)1(ion)28(yc)28(h)-320(i)-320(pr)1(z)-1(y)1(gi\\246)-1(t)28(yc)28(h)-320(do)-320(ziem)-1(i,)-319(kur)1(z)-1(a)28(w)27(a)-320(ic)28(h)-320(pr)1(z)-1(y)1(s)-1(\\252ani)1(a\\252a)-321(co)-320(tro)-28(c)28(h\\246,)-320(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(epad)1(ali)-398(ca\\252kiem)-1(,)-398(al)1(e)-399(gd)1(y)-398(s)-1(i)1(\\246)-399(pr)1(z)-1(y)1(c)-1(isz)-1(y)1(\\252o,)-398(c)-1(or)1(az)-399(b)1(li\\273e)-1(j)-397(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(ni)1(a\\252y)-398(w)27(e\\252niak)1(i)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)-333(i)-333(widn)1(i)-333(b)28(yli)-333(p)-27(o)-56(j)1(e)-1(d)1(yncz)-1(o.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(to)-333(z)-1(a)-333(lu)1(dzie,)-334(z)-333(jarmark)1(u)-333(w)-1(r)1(ac)-1(a)-55(j\\241?)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(k)28(omorn)1(iki,)-333(p)-27(o)-333(drze)-1(w)28(o)-333(c)27(ho)-27(dzili)-333(do)-333(lasu.)]TJ 0 -13.55 Td[({)-333(I)-334(n)1(a)-334(p)1(lec)-1(ac)27(h)-332(je)-334(n)1(os)-1(z\\241?)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(k)28(on)1(i)-333(nie)-333(m)-1(a)-55(j\\241,)-333(to)-333(m)27(u)1(s)-1(z\\241)-334(n)1(a)-333(plec)-1(ac)28(h)-333(dygo)28(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Du\\273o)-334(t)1(akic)27(h)-333(w)28(e)-334(wsi?)]TJ 0 -13.549 Td[({)-363(Pr)1(z)-1(ec)-1(iec)27(h)-362(niem)-1(a\\252o.)-363(In)1(o)-364(gosp)-27(o)-28(dar)1(z)-1(e)-364(ma)-55(j\\241)-363(gron)28(ta,)-363(a)-363(in)1(s)-1(ze)-364(n)1(a)-364(k)28(omorn)29(ym)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(\\241)-333(i)-333(na)-333(wyrob)1(ki)-333(c)27(h)1(o)-28(dz\\241)-334(ab)-27(o)-333(do)-333(s)-1(\\252u)1(\\273)-1(b)29(y)-334(si\\246)-334(go)-27(dz\\241.)]TJ 27.879 -13.55 Td[({)-333(I)-334(cz)-1(\\246s)-1(t)1(o)-334(p)-27(o)-333(drze)-1(w)28(o)-333(c)27(ho)-27(dz\\241,)-334(co?)]TJ 0 -13.549 Td[({)-371(A)-371(raz)-371(w)-372(t)28(yd)1(z)-1(i)1(e)-1(\\253)-370(dw)28(\\363r)-371(p)-28(ozw)28(ala)-371(k)56(a)-1(\\273dem)27(u)-370(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\242)-372(z)-371(kulk)56(\\241,)-371(b)-27(o)-371(c)-1(o)-371(se)]TJ -27.879 -13.549 Td[(susz)-1(u)-414(ob\\252amie)-415(a)-415(zbierze)-415(w)-415(p\\252ac)27(h)28(t)1(\\246)-416(i)-414(ud)1(\\271)-1(wign)1(ie,)-415(to)-415(j)1(e)-1(go,)-414(ino)-414(gos)-1(p)-27(o)-28(d)1(arz)-1(e)-415(ma)-56(j)1(\\241)]TJ 0 -13.549 Td[(pr)1(a)28(w)27(o)-278(z)-279(w)27(oze)-1(m)-278(je\\271)-1(d)1(z)-1(i\\242)-279(i)-278(z)-279(siekier\\241)-278(do)-278(las)-1(u)1(...)-278(My\\261w)28(a)-279(z)-279(Ku)1(b\\241)-278(je\\271)-1(d)1(z)-1(i)1(li)-278(c)-1(i\\246giem)-279(i)-278(nie)]TJ 0 -13.549 Td[(raz)-334(jeden)-334(z)-335(dob)1(r\\241)-334(du)1(s)-1(z\\241)-335(w)28(e)-335(w)28(oz)-1(i)1(e)-335(wrac)-1(al)1(im)-1(.)1(..)-334(b)-28(o)-334(Ku)1(ba)-334(umieli)-334(tak)-334(\\261)-1(ci\\241\\242)-335(j)1(akiego)]TJ 0 -13.55 Td[(grab)1(k)56(a)-334(i)-333(sc)27(ho)28(w)28(a\\242)-334(p)-27(o)-28(d)-333(ga\\252\\246)-1(zie,)-333(\\273)-1(e)-334(an)1(i)-333(b)-28(or)1(o)27(wy)-333(p)-27(oz)-1(n)1(a\\252!)-334({)-333(za)27(w)28(o\\252a\\252)-334(z)-333(du)1(m)-1(\\241.)]TJ 27.879 -13.549 Td[({)-333(D\\252ugo)-333(Kub)1(a)-333(c)27(hor)1(o)27(w)28(a\\252?)-334(Op)-27(o)28(wie)-1(d)1(z)-334(ws)-1(zystk)28(o.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-493(\\273)-1(e)-494(W)1(ite)-1(k)-493(p)1(rosi\\242)-494(s)-1(i)1(\\246)-494(nie)-493(da\\252)-494(i)-493(op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-493(co)-494(in)1(o)-494(wiedzia\\252.)-493(P)28(an)]TJ -27.879 -13.549 Td[(Jace)-1(k)-303(p)1(rze)-1(r)1(yw)27(a\\252)-303(m)28(u)-303(p)29(ytaniami,)-302(przysta)28(w)27(a\\252)-303(a\\273)-303(z)-304(gor)1(\\241c)-1(o\\261c)-1(i,)-302(rozk\\252ada\\252)-303(r\\246ce)-1(,)-303(cos)-1(i)1(k)]TJ 0 -13.549 Td[(w)-454(g\\252os)-455(w)28(o\\252)-1(a\\252,)-454(al)1(e)-455(c)27(h)1(\\252opak)-454(n)1(ie)-455(wymiar)1(k)28(o)27(w)28(a\\252,)-454(o)-454(c)-1(o)-454(m)28(u)-454(sz)-1(\\252o)-454(i)-454(d)1(lac)-1(ze)-1(go)-454(si\\246)-454(tak)]TJ 0 -13.549 Td[(dziw)28(o)28(w)27(a\\252,)-417(b)-28(o)-417(p)-27(o)-418(p)1(ra)28(wdzie)-418(ni)1(e)-418(bacz)-1(y)1(\\252)-418(dob)1(rze)-1(,)-417(strac)27(h)-416(go)-418(zdzie)-1(b)1(k)28(o)-418(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252,)]TJ 0 -13.55 Td[(\\273e)-379(t)1(o)-378(ju)1(\\273)-378(m)-1(r)1(o)-28(c)-1(za\\252o)-378(i)-377(c)-1(a\\252y)-377(s)-1(m\\246)-1(tar)1(z)-378(jak)28(ob)28(y)-377(s)-1(i\\246)-378(w)-378(\\261mie)-1(r)1(te)-1(l)1(ne)-378(gz)-1(\\252o)-377(przy)28(o)-28(d)1(z)-1(iew)27(a\\252)-377(i)]TJ 0 -13.549 Td[(r\\363\\273n)28(ymi)-268(g\\252os)-1(ami)-268(gada\\252,)-268(wi\\246)-1(c)-268(bieg\\252)-269(p)1(rzo)-28(dem)-269(i)-268(z)-1(es)-1(t)1(rac)27(h)1(an)28(ymi)-268(o)-28(c)-1(zami)-269(wyp)1(atryw)28(a\\252)]TJ 0 -13.549 Td[(Ku)1(b)-28(o)28(w)28(e)-1(go)-231(k)1(rzy\\273)-1(a;)-230(o)-28(dn)1(alaz\\252)-231(go)-231(wres)-1(zc)-1(i)1(e)-1(,)-230(s)-1(ta\\252)-231(p)-27(o)-28(d)-230(sam)27(ym)-231(p)1(ark)56(anem)-1(,)-230(wp)-28(o)-28(d)1(le)-231(t)28(yc)27(h)]TJ 0 -13.549 Td[(rozwian)28(yc)28(h)-333(m)-1(ogi)1(\\252)-1(ek)-333(p)-27(obit)28(yc)28(h)-333(na)-333(w)27(o)-55(jn)1(ie,)-334(p)1(rzy)-333(kt\\363ryc)28(h)-333(mo)-28(dli)1(\\252)-334(si\\246)-334(w)-333(Zaduszki.)]TJ 27.879 -13.549 Td[({)-452(A)-451(dy\\242)-452(tu)1(ta)-56(j)1(,)-452(n)1(a)-452(kr)1(z)-1(yzie)-452(stoi)-452(wyp)1(is)-1(an)1(e)-1(:)-451(Jaku)1(b)-452(S)1(o)-28(c)27(h)1(a!)-452({)-451(przes)-1(yl)1(abizo-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-334(w)28(o)-28(dz\\241c)-334(palcem)-334(p)-28(o)-333(bi)1(a\\252)-1(y)1(c)27(h,)-333(wielkic)28(h)-333(literac)27(h)1(.)-333({)-334(T)83(o)-333(Ro)-28(c)27(h)1(o)-334(wyp)1(is)-1(al)1(i,)-334(a)-333(kr)1(z)-1(y\\273)]TJ 0 -13.549 Td[(sp)-28(or)1(z)-1(\\241d)1(z)-1(i\\252)-333(Jam)27(b)1(ro\\273y!)]TJ\nET\nendstream\nendobj\n790 0 obj <<\n/Type /Page\n/Contents 791 0 R\n/Resources 789 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n789 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n794 0 obj <<\n/Length 8982      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(245)]TJ -330.353 -35.866 Td[(P)28(an)-308(Jace)-1(k)-308(d)1(a\\252)-309(m)27(u)-308(d)1(wie)-309(z)-1(\\252ot\\363)28(wki)-308(i)-308(k)55(aza\\252)-309(spi)1(e)-1(sz)-1(n)1(ie)-309(wraca\\242)-309(do)-308(dom)27(u)1(.)-308(C)-1(h)1(\\252o-)]TJ -27.879 -13.549 Td[(pak)-497(w)-498(dyrd)1(y)-498(u)1(c)-1(iek)56(a\\252,)-498(a)-498(in)1(o)-498(jeden)-498(raz)-498(si\\246)-499(o)-27(dwr\\363)-28(ci\\252,)-498(b)29(y)-498(gwiz)-1(d)1(n\\241\\242)-498(na)-498(\\212ap)-27(\\246)-498(i)]TJ 0 -13.549 Td[(sp)-28(o)-55(jrze\\242)-1(,)-333(c)-1(o)-333(tam)28(te)-1(n)-333(r)1(obi.)]TJ 27.879 -13.549 Td[({)-493(Jezus!)-493(Dzie)-1(d)1(z)-1(i)1(c)-1(o)28(wy)-493(b)1(rat,)-492(a)-493(kl\\246cz)-1(y)-492(przy)-492(Kub)-27(o)28(w)-1(y)1(m)-493(grobi)1(e)-1(!)-492({)-493(sz)-1(epn)1(\\241\\252)]TJ -27.879 -13.549 Td[(zdumion)29(y)83(,)-415(ale)-416(\\273e)-416(mrok)-415(zapad)1(a\\252)-416(i)-415(pr)1(z)-1(y)1(gi\\246)-1(te)-415(drzew)27(a)-415(trz\\246)-1(s\\252y)-415(s)-1(i\\246)-415(jak)28(o\\261)-416(strasz)-1(n)1(ie,)]TJ 0 -13.55 Td[(strac)27(h)-421(go)-422(pr)1(z)-1(ej\\241\\252)-422(taki)1(,)-422(\\273e)-423(galop)-27(em)-423(i)-421(na)-422(p)1(rz)-1(e\\252a)-56(j)-421(p)-28(ol)1(e)-1(cia\\252)-422(do)-422(wsi.)-422(Dop)1(iero)-422(k)28(o\\252o)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(io\\252a)-492(si\\246)-493(zatrzyma\\252,)-492(b)28(y)-492(z\\252)-1(ap)1(a\\242)-493(n)1(ie)-1(co)-492(p)-27(o)27(wietrza)-492(i)-492(p)-28(op)1(atrze)-1(\\242)-492(na)-492(p)1(ie)-1(n)1(i\\241d)1(z)-1(e,)]TJ 0 -13.549 Td[(trzymane)-348(m)-1(o)-28(cno)-348(w)-348(gar\\261c)-1(i,)-348(p)1(ies)-349(go)-348(te)-1(\\273)-348(w\\252)-1(a\\261ni)1(e)-349(dop)-27(\\246dzi\\252,)-348(\\273)-1(e)-348(w)-1(r)1(ac)-1(al)1(i)-348(ju\\273)-348(raze)-1(m)-348(i)]TJ 0 -13.549 Td[(w)28(olno)-333(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(A)-347(k)28(o\\252o)-346(s)-1(ta)28(wu)-347(n)1(atkn)1(\\241\\252)-347(s)-1(i)1(\\246)-347(na)-347(An)29(tk)55(a,)-346(wraca)-56(j\\241cego)-347(z)-347(rob)-27(ot)28(y)83(,)-346(pies)-347(s)-1(i)1(\\246)-348(r)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(do)-333(n)1(ie)-1(go)-333(pr)1(z)-1(y\\252asz)-1(a\\242,)-333(s)-1(zcz)-1(ek)55(a\\242)-333(i)-333(s)-1(k)28(omle\\242)-334(rado\\261ni)1(e)-1(,)-333(a\\273)-334(go)-333(An)28(tek)-333(j\\241\\252)-333(g\\252as)-1(k)56(a\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(Dobr)1(y)-334(p)1(ies)-1(,)-333(p)-27(o)-28(c)-1(zciwy)83(,)-333(dob)1(ry!)-333(S)1(k)56(\\241d)-333(to)-334(wr)1(ac)-1(asz)-1(,)-333(Wit)1(e)-1(k?)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-333(op)-27(o)27(wiedzia\\252)-333(w)-1(szys)-1(tk)28(o,)-333(j)1(u\\261c)-1(i)1(,)-334(\\273e)-334(o)-333(pi)1(e)-1(ni)1(\\241dzac)27(h)-333(n)1(ie)-334(rze)-1(k)1(\\252.)]TJ 0 -13.549 Td[({)-333(Za)-56(jr)1(z)-1(a\\252b)28(y)1(\\261)-334(do)-333(dziec)-1(i)-333(ki)1(e)-1(d)1(y)83(.)]TJ 0 -13.549 Td[({)-274(P)1(rzylet\\246)-1(,)-273(p)1(rz)-1(y)1(le)-1(t)1(\\246)-1(,)-273(na)28(w)28(e)-1(t)-273(la)-274(P)1(ietru)1(s)-1(ia)-273(z)-1(r)1(obi\\252em)-274(w)27(\\363zik)-273(i)-273(jedn)1(e)-1(go)-273(c)-1(u)1(dak)56(a...)]TJ 0 -13.549 Td[({)-333(Przyn)1(ie)-1(\\261)-333(go,)-333(na\\261)-1(ci)-333(dzies)-1(i\\241t)1(k)28(\\246)-1(,)-333(b)28(y\\261)-333(nie)-333(z)-1(ab)1(ac)-1(zy\\252!)]TJ 0 -13.55 Td[({)-333(A)-334(to)-333(c)27(h)29(yb)-27(c)-1(ik)1(ie)-1(m)-333(przylec)-1(\\246,)-333(obacz)-1(\\246)-333(ino,)-333(cz)-1(y)-333(gosp)-28(o)-27(darz)-333(nie)-334(p)1(rzysz)-1(li)1(...)]TJ 0 -13.549 Td[({)-333(Nie)-334(ma)-334(i)1(c)27(h)-333(to)-333(w)-334(d)1(om)27(u)1(?)-334({)-333(rze)-1(k\\252)-333(ni)1(b)28(y)-333(ob)-28(o)-55(j\\246tnie,)-333(ale)-334(a\\273)-333(z)-1(ad)1(ygota\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(u)-333(m\\252yn)1(arza)-334(rad)1(z)-1(\\241)-333(cos)-1(ik)-333(z)-333(dzie)-1(d)1(z)-1(i)1(c)-1(em)-334(i)-333(z)-334(d)1(rugimi!)]TJ 0 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(yni)-333(w)-333(dom)28(u?)-333({)-334(zap)28(yta\\252)-333(c)-1(i)1(s)-1(ze)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(W)-333(dom)27(u)1(,)-333(obr)1(z)-1(\\241dza)-56(j)1(\\241.)-333(T)83(o)-333(ino)-333(obacz)-1(\\246)-333(i)-333(z)-1(araz)-333(przylec)-1(\\246...)]TJ 0 -13.55 Td[({)-336(P)1(rzyc)27(h)1(o)-28(d\\271,)-335(przyc)28(ho)-28(d)1(\\271)-1(!)-335({)-336(sze)-1(p)1(n\\241\\252,)-335(c)27(hcia\\252)-336(go)-335(p)28(yta\\242)-336(,)-335(d)1(o)27(wiad)1(yw)28(a\\242)-336(s)-1(i\\246,)-335(ale)]TJ -27.879 -13.549 Td[(ni)1(e)-264(\\261mia\\252,)-263(lu)1(dzie)-263(s)-1(i)1(\\246)-263(kr\\246c)-1(il)1(i)-263(d)1(ok)28(o)-1(\\252a,)-262(c)27(h)1(o)-28(\\242)-263(ju)1(\\273)-264(mro)-27(c)-1(za\\252o,)-263(a)-263(p)1(rzy)-263(t)28(ym)-263(c)27(h)1(\\252opak)-262(g\\252upi)1(,)]TJ 0 -13.549 Td[(wygada\\252b)29(y)-343(jes)-1(zcz)-1(e,)-343(rozg\\252os)-1(i)1(\\252...)-343(P)29(os)-1(ze)-1(d)1(\\252)-343(pr)1(\\246)-1(d)1(k)28(o)-343(ku)-342(domo)27(wi,)-342(ale)-343(pr)1(z)-1(ed)-343(k)28(o\\261cio\\252e)-1(m)]TJ 0 -13.549 Td[(roze)-1(j)1(rza\\252)-308(si\\246)-308(u)28(w)27(a\\273ni)1(e)-1(,)-307(c)-1(zy)-308(k)1(to)-308(ni)1(e)-308(patrzy)84(,)-308(i)-307(s)-1(kr)1(\\246)-1(ci\\252)-308(w)-308(b)-27(ok,)-307(na)-307(dr\\363\\273k)28(\\246)-308(biegn\\241c\\241)-308(za)]TJ 0 -13.549 Td[(sto)-28(do\\252ami.)]TJ 27.879 -13.55 Td[(Wit)1(e)-1(k)-333(za\\261)-334(p)-28(ob)1(ieg\\252)-334(d)1(o)-334(c)28(ha\\252up)29(y)83(.)]TJ 0 -13.549 Td[(Boryn)28(y)-277(j)1(e)-1(sz)-1(cz)-1(e)-278(n)1(ie)-278(b)28(y)1(\\252o,)-278(w)-277(iz)-1(b)1(ie)-278(p)1(ano)28(w)27(a\\252)-277(m)-1(r)1(ok,)-277(b)-28(o)-277(in)1(o)-278(n)1(a)-278(k)28(omini)1(e)-278(\\273)-1(ar)1(z)-1(y\\252y)]TJ -27.879 -13.549 Td[(si\\246)-378(g\\252o)27(wni)1(e)-1(.)-377(Jagna)-377(z)-1(wij)1(a\\252a)-378(s)-1(i)1(\\246)-379(k)28(o\\252o)-377(obrz\\241dk)28(\\363)28(w)-378(wiec)-1(zorn)28(y)1(c)27(h,)-377(ale)-378(z\\252)-1(a)-377(b)28(y\\252a,)-377(gdy\\273)]TJ 0 -13.549 Td[(J\\363zk)55(a)-256(zno)28(wu)-256(gd)1(z)-1(ie\\261)-257(p)1(rze)-1(p)1(ad\\252a,)-256(a)-256(rob)-27(ot)28(y)-256(b)28(y\\252o)-256(t)28(yla,)-255(\\273)-1(e)-256(nie)-256(w)-1(i)1(ada,)-256(za)-256(kt\\363r\\241)-256(p)1(rz)-1(\\363)-27(dzi)]TJ 0 -13.549 Td[(si\\246)-238(im)-1(a\\242!)-238(Ni)1(e)-239(s\\252uc)28(ha\\252a)-238(n)1(a)27(w)28(e)-1(t)-237(op)-28(o)28(wiad)1(a\\253)-238(Wi)1(tk)56(a,)-238(dop)1(iero)-238(gd)1(y)-238(ws)-1(p)-27(omnia\\252)-238(o)-237(An)28(tku)1(,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-333(nagle)-333(i)-334(n)1(adsta)28(wi\\252a)-334(u)1(s)-1(z\\363)28(w)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(ada)-56(j)-332(nik)28(om)28(u,)-333(\\273)-1(e)-333(c)-1(i)-333(d)1(a\\252)-334(d)1(z)-1(ies)-1(i)1(\\241tk)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(pr)1(z)-1(yk)56(azujecie)-1(,)-333(to)-333(i)-333(par)1(y)-333(nie)-334(p)1(usz)-1(cz\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Na\\261)-1(ci)-333(dru)1(g\\241,)-333(a)-334(zapami\\246ta)-56(j)-333(sobi)1(e)-1(.)-333(Do)-333(dom)28(u)-333(p)-28(osze)-1(d)1(\\252)-1(?..)1(.)]TJ 0 -13.549 Td[(Nie,)-277(n)1(ie)-277(cz)-1(ek)56(a\\252)-1(a)-276(ju)1(\\273)-277(jego)-277(o)-28(d)1(p)-27(o)27(wiedzi,)-276(p)-28(or)1(w)27(a\\252a)-276(s)-1(i\\246)-277(z)-277(miejsc)-1(a)-276(nagl)1(e)-1(,)-276(jakb)29(y)-277(ze)]TJ -27.879 -13.549 Td[(strac)27(h)1(e)-1(m)-230(wyb)1(ie)-1(g\\252a)-229(na)-230(gan)1(e)-1(k)-229(i)-230(zac)-1(z\\246\\252)-1(a)-229(w)27(o\\252a\\242)-230(Pi)1(e)-1(tr)1(k)55(a,)-229(a)-230(zal\\246knion)29(ym)-230(i)-230(cz)-1(at)1(uj\\241cym)]TJ 0 -13.55 Td[(wz)-1(r)1(okiem)-496(p)1(rz)-1(ebi)1(e)-1(ga\\252a)-495(sad)-495(i)-495(op\\252otk)1(i.)-495(Na)28(w)27(et)-495(z)-1(a)-495(sz)-1(op)-27(\\246)-496(p)-27(o)-28(d)-494(br\\363g)-495(za)-56(j)1(rza\\252a,)-495(nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-335(nik)28(ogo.)1(..)-335(Us)-1(p)-27(ok)28(oi\\252a)-336(si\\246)-336(wnet,)-335(ale)-336(j\\241)-335(tak)56(a)-336(mark)28(otn)1(o\\261)-1(\\242)-336(r)1(oz)-1(ebr)1(a\\252)-1(a,)-335(\\273e)-336(z)-1(acz)-1(\\246\\252a)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(e\\242)-297(n)1(a)-297(J\\363zk)28(\\246)-297(i)-296(p)-28(\\246dza\\242)-297(j\\241,)-296(b)28(y)-296(ry)1(c)27(hl)1(e)-1(j)-296(sz)-1(yk)28(o)28(w)28(a\\252a)-297(kr)1(o)28(w)27(om)-297(p)1(icie)-1(,)-296(a)-296(w)-1(y)1(m)-1(a)28(wia\\242,)]TJ 0 -13.549 Td[(\\273e)-242(s)-1(i\\246)-241(c)-1(i\\241)-27(gle)-242(p)-27(o)-242(c)28(ha\\252up)1(ac)27(h)-241(w\\252\\363)-28(c)-1(zy)-241(i)-241(nic)-242(n)1(ie)-242(r)1(obi,)-241(ju)1(\\261)-1(ci,)-241(\\273e)-242(dzie)-1(u)1(c)27(h)1(a)-242(te\\273)-242(n)1(ie)-242(z)-1(mil)1(k\\252a,)]TJ 0 -13.549 Td[(har)1(da)-333(b)28(y\\252a,)-333(p)28(ysk)56(ata)-333(i)-334(za)28(wz)-1(i\\246ta,)-333(to)-333(s)-1(i\\246)-333(z)-1(\\241b)-333(za)-334(z\\241b)-333(k\\252\\363)-28(ci\\252a.)]TJ 27.879 -13.55 Td[({)-355(Pyskuj)1(,)-355(p)28(yskuj)1(,)-356(o)-27(c)-1(iec)-356(pr)1(z)-1(y)1(jd\\241,)-355(to)-355(c)-1(i)1(\\246)-356(w)-1(n)1(e)-1(t)-355(rzem)-1(ieni)1(e)-1(m)-356(p)1(rzyc)-1(i)1(s)-1(z\\241!)-355({)-356(p)-27(o-)]TJ -27.879 -13.549 Td[(grozi\\252a)-285(Jagna)-285(zapala)-55(j\\241c)-286(l)1(am)-1(p)-27(\\246)-286(i)-285(b)1(ie)-1(r)1(\\241c)-286(s)-1(i)1(\\246)-286(zn\\363)28(w)-286(d)1(o)-286(p)1(rz\\246)-1(d)1(z)-1(eni)1(a,)-286(n)1(ie)-286(o)-27(dp)-27(o)28(w)-1(i)1(ada\\252a)]TJ\nET\nendstream\nendobj\n793 0 obj <<\n/Type /Page\n/Contents 794 0 R\n/Resources 792 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n792 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n797 0 obj <<\n/Length 8612      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(246)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ju)1(\\273)-466(n)1(a)-465(mam)-1(r)1(ot)27(y)-464(J\\363z)-1(cz)-1(y)1(ne,)-465(b)-27(o)-465(s)-1(i\\246)-465(jej)-465(wyd)1(a\\252o,)-465(\\273e)-466(kto\\261)-465(c)27(h)1(o)-28(d)1(z)-1(i)-465(za)-465(s)-1(zcz)-1(yto)28(wym)]TJ 0 -13.549 Td[(okn)1(e)-1(m...)]TJ 27.879 -13.549 Td[({)-319(Witek,)-319(wyjr)1(z)-1(yj)-319(n)1(o,)-319(m)27(u)1(s)-1(ia\\252)-319(pr)1(os)-1(iak)-319(wyle\\271\\242)-320(z)-320(c)27(h)1(le)-1(w)28(a)-319(i)-320(c)28(ho)-28(d)1(z)-1(i)-319(tam)-319(ano)-319(p)-28(o)]TJ -27.879 -13.549 Td[(sadzie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-274(W)1(ite)-1(k)-273(u)1(p)-28(ewnia\\252,)-273(\\273)-1(e)-274(zagna\\252)-273(w)-1(szys)-1(tk)1(ie)-274(i)-273(przymkn)1(\\241\\252)-274(dr)1(z)-1(wi,)-273(J\\363zk)55(a)-273(p)-28(osz\\252)-1(a)]TJ -27.879 -13.55 Td[(na)-424(dr)1(ug\\241)-424(s)-1(tr)1(on\\246)-425(i)-424(wynosi\\252a)-425(z)-425(P)1(ietrki)1(e)-1(m)-425(ce)-1(b)1(ratki)-424(z)-425(p)1(ic)-1(i)1(e)-1(m)-425(d)1(la)-424(kr\\363)28(w,)-425(a)-424(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(le)-1(cia\\252a)-333(p)-28(o)-333(sk)28(o)-1(p)1(ki)-333(do)-333(d)1(o)-56(jeni)1(a.)]TJ 27.879 -13.549 Td[({)-333(Sama)-334(wyd)1(o)-56(j)1(\\246)-1(,)-333(o)-28(d)1(p)-27(o)-28(c)-1(znij)-332(s)-1(e,)-333(kiedy\\261)-334(si\\246)-334(t)1(ak)-334(spr)1(ac)-1(o)28(w)28(a\\252)-1(a!)]TJ 0 -13.549 Td[({)-316(A)-316(d\\363)-55(jcie)-317(sami,)-316(z)-1(n)1(o)28(w)-1(u)-315(z)-317(p)-27(o\\252o)27(w)28(\\246)-317(mlek)56(a)-316(o)-1(sta)28(wic)-1(i)1(e)-317(w)-316(wym)-1(i)1(onac)27(h)1(!)-316({)-316(dogr)1(y-)]TJ -27.879 -13.549 Td[(za\\252)-1(a)-333(J\\363zk)56(a.)]TJ 27.879 -13.549 Td[({)-349(Za)28(wrzyj)-348(g\\246)-1(b)-27(\\246)-1(!)-348({)-349(wrzasn\\246\\252)-1(a)-348(rozgniew)27(an)1(a,)-349(wd)1(z)-1(ia\\252a)-348(trep)28(y)83(,)-348(p)-27(o)-28(dk)56(asa\\252)-1(a)-348(w)27(e\\252-)]TJ -27.879 -13.55 Td[(ni)1(ak)55(a,)-333(zabr)1(a\\252a)-334(sz)-1(k)28(op)1(ki)-333(i)-333(p)-28(osz)-1(\\252a)-333(do)-333(ob)-27(ory)84(.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-236(j)1(u\\273)-237(b)29(y\\252)-237(zapad)1(\\252,)-236(w)-1(i)1(atr)-236(usta\\252,)-236(kur)1(z)-1(a)28(w)28(a)-237(si\\246)-237(u)1(c)-1(i)1(s)-1(zy\\252a,)-236(ale)-237(n)1(ie)-1(b)-27(o)-236(wis)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.549 Td[(cz)-1(arn)1(e)-1(,)-331(b)-28(ez)-1(gwiezdne,)-332(w)28(e)-1(zbr)1(ane)-332(c)27(hm)28(ur)1(z)-1(ysk)56(am)-1(i)1(,)-332(niskie;)-332(\\261niegi)-332(sz)-1(ar)1(z)-1(a\\252y)-332(p)-27(os)-1(\\246pn)1(ie,)]TJ 0 -13.549 Td[(jak)56(a\\261)-385(\\273)-1(a\\252os)-1(n)1(a,)-385(z)-1(m\\246c)-1(zona)-385(c)-1(i)1(c)27(ho\\261\\242)-386(p)1(rzygniat)1(a\\252)-1(a)-385(\\261wiat,)-385(\\273)-1(ad)1(e)-1(n)-384(g\\252)-1(os)-385(z)-1(e)-385(w)-1(si)-385(nie)-385(do-)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi\\252,)-333(a)-333(jeno)-333(gdzie)-1(\\261)-333(o)-28(d)-333(ku)1(\\271)-1(n)1(i)-333(s)-1(z\\252o)-334(d)1(ale)-1(k)1(ie)-1(,)-333(g\\252u)1(c)27(he)-333(bicie)-334(m\\252ot\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(W)-361(ob)-27(orze)-361(b)28(y\\252o)-361(ciem)-1(n)1(o)-361(i)-361(d)1(usz)-1(n)1(o,)-361(k)1(ro)28(w)-1(y)-360(c)27(h)1(lip)1(a\\252)-1(y)-360(picie)-361(i)-361(g\\252o\\261no)-360(s)-1(zoro)28(w)27(a\\252y)]TJ -27.879 -13.549 Td[(ozorami)-334(d)1(na)-333(ce)-1(b)1(rate)-1(k)1(,)-333(a)-334(r)1(az)-334(w)-334(r)1(az)-334(p)-28(ost\\246kiw)28(a\\252y)-334(ci\\246\\273)-1(k)28(o.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-376(z)-1(n)1(alaz\\252)-1(a)-375(p)-28(o)-375(om)-1(ac)28(ku)-375(s)-1(to\\252ek,)-376(p)1(rzys)-1(i)1(ad\\252a)-376(si\\246)-376(p)-28(o)-27(d)-376(p)1(ierws)-1(z\\241)-376(z)-376(br)1(z)-1(egu,)]TJ -27.879 -13.549 Td[(namaca\\252a)-229(w)-1(y)1(m)-1(ion)1(a,)-229(wytar)1(\\252)-1(a)-229(j)1(e)-229(z)-1(ap)1(as)-1(k)56(\\241)-229(i)-229(ws)-1(p)1(ar\\252sz)-1(y)-228(g\\252)-1(o)28(w)28(\\246)-230(o)-229(k)56(a\\252du)1(n)-229(k)1(ro)28(w)-1(i)-228(z)-1(acz)-1(\\246\\252a)]TJ 0 -13.549 Td[(doi)1(\\242)-1(.)]TJ 27.879 -13.55 Td[(Cic)27(h)1(o\\261)-1(\\242)-259(j)1(\\241)-259(ogarn)1(\\246)-1(\\252a,)-259(\\273e)-259(b)28(y)-259(n)1(a)-56(j)1(l\\273)-1(ejszy)-259(sz)-1(ele)-1(st)-259(s\\252ys)-1(za\\252a)-259(wyra\\271ni)1(e)-1(;)-258(m)-1(lek)28(o)-259(siur)1(-)]TJ -27.879 -13.549 Td[(k)56(a\\252o)-236(r)1(az)-236(p)-27(o)-235(razie)-236(d)1(o)-236(sz)-1(k)28(op)1(k)56(a,)-235(z)-1(e)-235(s)-1(ta)-55(jn)1(i)-235(do)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(y)-235(k)28(o\\253)1(s)-1(k)1(ie)-236(tu)1(pan)1(ia,)-235(to)-235(o)-28(d)-235(c)28(ha\\252up)29(y)]TJ 0 -13.549 Td[(sz)-1(\\252y)-333(pr)1(z)-1(yt)1(\\252)-1(u)1(mione)-334(a)-333(jazgotli)1(w)27(e)-334(r)1(oz)-1(p)1(ra)28(wy)-334(J)1(\\363z)-1(ki.)]TJ 27.879 -13.549 Td[({)-439(Ra)-56(jcuj)1(e)-1(,)-439(a)-439(zie)-1(mni)1(ak)28(\\363)27(w)-439(ni)1(e)-440(obi)1(e)-1(ra!)-439({)-439(mruk)1(n\\246\\252a)-440(i)-439(zm)-1(i)1(lk\\252a)-439(nagle)-440(n)1(as)-1(\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(uj\\241c,)-372(b)-27(o)-372(\\261)-1(n)1(ie)-1(g)-372(zas)-1(k)1(rz)-1(y)1(pia\\252)-372(na)-372(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u,)-371(jakb)28(y)-371(kto)-372(s)-1(ze)-1(d)1(\\252)-372(z)-373(pr)1(a)28(w)27(ej)-372(s)-1(t)1(ron)28(y)-372(o)-28(d)]TJ 0 -13.55 Td[(sz)-1(op)28(y)84(,)-255(s)-1(n)1(ad\\271)-256(w)28(olno.)1(..pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-256(na)28(w)28(e)-1(t.)1(..)-255(b)-28(o)-255(pr)1(z)-1(ycisz)-1(a\\252o)-255(s)-1(i\\246)-255(na)-255(m)-1(gn)1(ie)-1(n)1(ie...)-255(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.549 Td[(sz)-1(ed\\252...)-308(\\261ni)1(e)-1(g)-308(trze)-1(szc)-1(za\\252)-309(coraz)-309(b)1(li\\273e)-1(j)1(...)-308(o)-27(derw)27(a\\252a)-308(g\\252o)28(w)27(\\246)-308(i)-308(s)-1(p)-27(o)-56(j)1(rza\\252)-1(a)-308(w)-308(s)-1(zary)-308(ot)28(w)28(\\363r)]TJ 0 -13.549 Td[(dr)1(z)-1(wi.)1(..)-333(Zam)-1(a)-55(jacz)-1(y\\252a)-333(w)-334(n)1(im)-334(j)1(ak)56(a\\261)-334(niewyra\\271na)-333(p)-27(os)-1(ta\\242...)]TJ 27.879 -13.549 Td[({)-333(Pietrek!.)1(..)-333({)-334(za)28(w)27(o\\252a\\252a.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(c)27(ho,)-333(Jagu)1(\\261)-1(,)-333(cic)27(h)1(o!)]TJ 0 -13.55 Td[({)-333(An)28(tek!)]TJ 0 -13.549 Td[(St)1(ruc)28(hla\\252a)-439(c)-1(a\\252k)1(ie)-1(m)-439(i)-439(tak)-439(j\\241)-439(ws)-1(ze)-1(lk)56(a)-439(mo)-28(c)-440(o)-28(d)1(e)-1(sz)-1(\\252a,)-439(\\273e)-440(ni)1(e)-440(wykrztusi\\252a)-439(ni)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(a)-405(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-405(ruszy\\242)-406(si\\246)-406(n)1(ie)-406(mog\\252a,)-405(p)-27(om)27(y\\261le\\242)-406(ni)1(e)-406(umia\\252a,)-405(ci\\241)-28(gn)1(\\246)-1(\\252a)-405(b)-27(e)-1(zw)-1(i)1(e)-1(d)1(nie)]TJ 0 -13.549 Td[(za)-380(wymiona)-379(j)1(e)-1(no,)-379(\\273e)-380(mle)-1(k)28(o)-379(strzyk)56(a\\252)-1(o)-379(na)-379(w)28(e)-1(\\252n)1(iak)-379(i)-380(n)1(a)-380(ziem)-1(i)1(\\246)-1(.)-379(Gor)1(\\241c)-380(j\\241)-379(ob)-55(j\\241\\252)-379(i)]TJ 0 -13.549 Td[(kieb)28(y)-367(p)1(\\252)-1(omie\\253)-367(pal)1(\\241c)-1(y)-367(wic)27(h)1(rem)-368(wia\\252)-367(p)-28(o)-367(ni)1(e)-1(j)1(,)-368(b)1(\\252ys)-1(k)56(a)28(wicam)-1(i)-367(migota\\252)-367(w)-368(o)-28(cz)-1(ac)28(h)-367(a)]TJ 0 -13.549 Td[(s\\252)-1(o)-27(dk)28(o\\261c)-1(i\\241)-380(s)-1(erce)-381(roz)-1(p)1(iera\\252;)-381(a)-380(tak)-381(j)1(\\241)-381(cos)-1(ik)-380(u\\252ap)1(i\\252o)-381(za)-381(grd)1(yk)28(\\246)-381(i)-381(zatk)56(a\\252o)-381(pi)1(e)-1(rsi,)-380(\\273)-1(e)]TJ 0 -13.55 Td[(dziw)-333(nie)-333(pad\\252a)-333(umar\\252\\241..)1(.)]TJ 27.879 -13.549 Td[({)-438(Od)-438(sam)27(y)1(c)27(h)-438(Go)-27(d\\363)28(w)-439(czato)27(w)28(a\\252e)-1(m)-438(na)-438(cie)-1(b)1(ie,)-438(c)-1(o)-438(d)1(nia,)-438(w)-438(k)56(a\\273)-1(d)1(e)-1(n)-438(wiecz)-1(\\363r)]TJ -27.879 -13.549 Td[(w)28(aro)28(w)27(a\\252em)-334(jak)-333(p)1(ie)-1(s)-333(p)-28(o)-27(d)-333(brogi)1(e)-1(m,)-333(nie)-333(w)-1(y)1(s)-1(z\\252a\\261)-1(!.)1(..)-333({)-334(sz)-1(ept)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[(A)-257(te)-1(n)-256(g\\252)-1(os)-257(z)-1(d)1(usz)-1(on)28(y)84(,)-257(nami\\246tn)28(y)84(,)-257(z)-1(ap)1(ie)-1(k)1(\\252)-1(y)-257(mo)-28(c\\241)-258(k)28(o)-27(c)27(han)1(ia,)-257(nab)1(rzm)-1(i)1(a\\252y)-258(l)1(ub)-27(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\241,)-318(w)27(ar)1(e)-1(m)-319(j\\241)-318(oblew)27(a\\252,)-318(ogniami,)-318(s)-1(\\252o)-28(d)1(k)28(o\\261)-1(ci\\241,)-318(krzykiem)-319(p)-28(ot)1(\\246)-1(gi..)1(.)-319(S)1(ta\\252)-319(na)-319(wp)1(rost,)]TJ 0 -13.55 Td[(cz)-1(u)1(\\252)-1(a,)-429(\\273e)-430(si\\246)-430(ws)-1(p)1(ar\\252)-429(na)-429(kro)28(wie)-1(,)-429(p)-27(o)-28(c)28(h)28(yli\\252)-429(i)-429(patr)1(z)-1(y\\252)-429(w)-430(n)1(i\\241)-429(tak)-430(z)-429(bli)1(s)-1(k)56(a,)-429(a\\273)-430(jego)]TJ 0 -13.549 Td[(gor\\241cy)-333(o)-28(dd)1(e)-1(c)28(h)-333(pali)1(\\252)-334(j)1(\\241)-334(w)-333(g\\252o)27(w)28(\\246.)]TJ\nET\nendstream\nendobj\n796 0 obj <<\n/Type /Page\n/Contents 797 0 R\n/Resources 795 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 782 0 R\n>> endobj\n795 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n800 0 obj <<\n/Length 9321      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(247)]TJ -330.353 -35.866 Td[({)-242(Ni)1(e)-242(b)-28(\\363)-55(j)-242(si\\246,)-242(J)1(agu\\261!)-242(Nik)1(to)-242(n)1(ie)-242(w)-1(i)1(dzia\\252,)-242(n)1(ie)-242(b)-27(o)-56(j)1(a)-56(j)-241(s)-1(i)1(\\246)-1(.)-241(A)-242(j)1(u\\273e)-1(m)-242(n)1(ie)-242(z)-1(d)1(z)-1(i)1(e)-1(r)1(\\273)-1(y\\252,)]TJ -27.879 -13.549 Td[(ni)1(e)-266(p)-27(oradz\\246)-1(,)-265(a)-265(to)-265(i)-265(w)-266(d)1(z)-1(ie\\253,)-265(i)-265(w)-265(no)-28(cy)83(,)-265(i)-265(w)-265(k)56(a\\273)-1(d)1(e)-1(n)-265(cz)-1(as,)-265(c)-1(i)1(\\246)-1(giem)-266(stoisz)-266(pr)1(z)-1(ede)-266(mn)1(\\241,)]TJ 0 -13.549 Td[(na)-333(o)-28(cz)-1(ac)28(h)-333(m)-1(i)-333(wisisz)-1(.)-333(Jagu)1(\\261)-1(,)-333(n)1(ic)-334(mi)-333(to)-334(n)1(ie)-334(p)-27(o)28(w)-1(i)1(e)-1(sz)-1(?)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(c)-1(i)-333(to)-333(rze)-1(kn)1(\\246)-1(,)-333(co?)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(rozp\\252ak)56(an)28(ym)-334(g\\252ose)-1(m.)]TJ 0 -13.549 Td[(Zmilkli)-330(ob)-27(o)-55(je.)-330(Z)-1(ab)1(rak\\252o)-330(im)-330(g\\252os)-1(u)1(,)-330(w)-1(zru)1(s)-1(ze)-1(n)1(ie)-331(i)1(c)27(h)-330(d)1(\\252)-1(a)28(wi\\252o)-330(i)-330(ta)-330(bli)1(s)-1(k)28(o\\261\\242)-1(,)-330(ta)]TJ -27.879 -13.55 Td[(up)1(ragn)1(iona)-386(sam)-1(ot)1(no\\261\\242)-1(,)-386(ta)-386(n)1(o)-28(c)-386(niem)-1(o)-27(c)-1(\\241)-386(si\\246)-386(na)-386(ni)1(c)27(h)-386(zw)27(al)1(i\\252a,)-386(ci\\246)-1(\\273arem)-387(s\\252o)-28(d)1(kim,)]TJ 0 -13.549 Td[(ale)-320(i)-319(dziwn)28(ym)-320(l)1(\\246)-1(ki)1(e)-1(m!)-320(Rw)28(ali)-319(s)-1(i)1(\\246)-321(d)1(o)-320(siebie,)-319(a)-320(teraz)-320(i)-319(te)-1(go)-319(s)-1(\\252o)28(w)27(a)-319(rze)-1(c)-320(b)29(y\\252o)-320(tr)1(udn)1(o)]TJ 0 -13.549 Td[(i)-405(ci\\246)-1(\\273k)28(o,)-405(p)-27(o\\273)-1(\\241d)1(ali)-405(si\\246)-406(n)1(a)28(w)-1(za)-56(j)1(e)-1(m,)-405(a)-405(i)-405(r)1(\\246)-1(ki)-404(do)-405(si\\246)-406(wyci\\241)-28(gn)1(\\241\\242)-406(b)28(y)1(\\252o)-406(n)1(iep)-28(o)-27(dobn)1(a)-405({)]TJ 0 -13.549 Td[(milcz)-1(eli.)]TJ 27.879 -13.549 Td[(Kr)1(o)27(w)28(a)-346(g\\252o\\261no)-345(c)27(hl)1(ipa\\252a)-345(picie)-346(i)-345(tak)-345(c)27(hl)1(as)-1(ta\\252a)-345(ogonem)-346(p)-28(o)-345(b)-27(ok)55(ac)28(h,)-345(\\273)-1(e)-346(r)1(az)-346(p)-28(o)]TJ -27.879 -13.549 Td[(raz)-366(zac)-1(i)1(na\\252a)-366(go)-365(w)-366(t)28(w)27(arz,)-365(a\\273)-367(go)-365(pr)1(z)-1(ytr)1(z)-1(yma\\252)-366(mo)-28(cno,)-365(pr)1(z)-1(ec)27(h)28(yl)1(i\\252)-366(si\\246)-366(bar)1(z)-1(ej)-366(p)1(rze)-1(z)]TJ 0 -13.55 Td[(k\\252\\246b)28(y)-333(i)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(n)1(o)27(wu)1(:)]TJ 27.879 -13.549 Td[({)-333(Ani)-333(\\261pi\\246,)-333(ani)-333(jem,)-334(an)1(i)-333(rob)1(i\\242)-334(mog\\246)-334(b)-27(e)-1(z)-334(ciebie,)-333(Jagu\\261,)-333(b)-28(ez)-334(cie)-1(b)1(ie...)]TJ 0 -13.549 Td[({)-333(A)-334(mni)1(e)-334(te\\273)-334(nieletk)28(o,)-333(nie...)]TJ 0 -13.549 Td[({)-333(My\\261la\\252a\\261)-334(to)-333(kiej)-333(o)-333(m)-1(n)1(ie)-1(,)-333(Jagu)1(\\261)-1(,)-333(m)28(y\\261la\\252a\\261)-1(?...)]TJ 0 -13.549 Td[({)-322(Mog\\252am)-322(to)-322(n)1(ie)-322(m)27(y\\261le\\242)-1(,)-321(kiej)-322(mi)-322(ci\\246)-1(gi)1(e)-1(m)-322(do)-321(g\\252)-1(o)28(wy)-322(p)1(rzyc)27(h)1(o)-28(dzisz)-1(,)-322(ci\\246giem)-1(,)]TJ -27.879 -13.55 Td[(\\273e)-302(ju)1(\\273)-302(r)1(ady)-301(n)1(ijaki)1(e)-1(j)-300(da\\242)-302(sobi)1(e)-302(ni)1(e)-302(mog\\246)-1(.)-301(P)1(ra)28(wda)-301(to,)-301(\\273e)-1(\\261)-301(o)-301(m)-1(n)1(ie)-302(p)-27(ob)1(i\\252)-301(Mateusz)-1(a?)]TJ 27.879 -13.549 Td[({)-266(Pra)28(wda.)-266(Cygan)1(i\\252)-267(o)-266(tob)1(ie)-1(,)-266(tom)-266(m)27(u)-266(p)28(ysk)-266(s)-1(t)1(uli\\252,)-266(a)-266(k)56(a\\273)-1(dem)27(u)-265(z)-1(rob)1(i\\246)-267(to)-266(sam)-1(o!)]TJ 0 -13.549 Td[(Drzwi)-314(trzas)-1(n)1(\\246)-1(\\252y)-314(o)-28(d)-314(c)28(ha\\252up)29(y)-315(i)-314(k)1(tos)-1(ik)-314(p)1(r\\246dk)28(o)-314(le)-1(cia\\252)-314(pr)1(z)-1(ez)-315(p)-28(o)-27(dw)28(\\363rze)-1(,)-314(pr)1(os)-1(to)]TJ -27.879 -13.549 Td[(do)-333(ob)-27(ory)84(,)-333(\\273)-1(e)-334(An)28(t)1(e)-1(k)-333(ledwie)-334(zd\\241\\273y\\252)-333(s)-1(k)28(o)-27(c)-1(zy\\242)-334(do)-333(\\273\\252ob)-28(\\363)28(w)-334(i)-333(tam)-333(pr)1(z)-1(yw)28(aro)28(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-302(A)-302(to)-302(J\\363z)-1(ia)-302(k)56(aza\\252)-1(a)-302(p)1(rzynie\\261\\242)-303(c)-1(ebr)1(atki,)-302(b)-27(o)-302(\\261)-1(win)1(iom)-302(trza)-303(\\273arcie)-303(n)1(arz\\241dza\\242)-1(.)]TJ 0 -13.55 Td[({)-333(W)83(e\\271)-334(obi)1(e)-1(,)-333(w)28(e)-1(\\271!)-333({)-334(ledwie)-333(w)-1(y)1(krztusi\\252a.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(\\252ys)-1(u)1(la)-333(nie)-333(w)-1(y)1(pi\\252a)-333(jes)-1(zc)-1(ze,)-334(p)-27(otem)-334(p)1(rz)-1(y)1(le)-1(t\\246.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-376(p)-28(\\246dem)-377(p)-28(ol)1(e)-1(cia\\252,)-377(s\\252yc)27(h)1(a\\242)-378(b)29(y\\252o,)-377(j)1(ak)-377(zno)28(wu)-377(d)1(rzwi)-377(trzasn\\246\\252)-1(y)84(,)-377(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(An)28(tek)-333(s)-1(i)1(\\246)-334(w)-1(y)1(s)-1(u)1(n\\241\\252)-333(z)-334(uk)1(rycia.)]TJ 27.879 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)-333(\\261c)-1(i)1(e)-1(rw)28(a...)-333(p)-27(\\363)-56(j)1(d\\246)-334(p)-27(o)-28(d)-333(b)1(r\\363g,)-333(zac)-1(ze)-1(k)56(am...)-333(wyjd)1(z)-1(i)1(e)-1(sz)-1(,)-333(Jagu)1(\\261)-1(?)]TJ 0 -13.55 Td[({)-333(B)-1(o)-55(jam)-333(s)-1(i\\246...)]TJ 0 -13.549 Td[({)-327(P)1(rzyjd)1(\\271)-1(,)-326(c)27(ho)-27(\\242)-1(b)28(y)-326(go)-28(d)1(z)-1(in)1(\\246)-327(ab)-28(o)-327(i)-326(dwie,)-327(a)-326(c)-1(ze)-1(k)56(a\\252)-327(b)-27(\\246)-1(d)1(\\246)-1(,)-326(przyj)1(d\\271!...)-326({)-327(b\\252aga\\252.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(u)1(n\\241\\252)-443(si\\246)-444(z)-443(t)28(y\\252u)1(,)-443(b)-27(o)-443(w)27(ci\\241\\273)-443(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-443(p)1(rzy)-443(kr)1(o)27(wie,)-443(ob)-55(j)1(\\241\\252)-443(j\\241)-443(p)-27(ot\\246\\273)-1(n)1(ie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-321(p)1(iersi,)-320(p)1(rz)-1(ec)27(h)28(y)1(li\\252)-320(g\\252o)28(w)27(\\246)-320(w)-320(t)28(y\\252)-320(i)-320(wpi)1(\\252)-321(si\\246)-320(tak)-320(mo)-28(cno)-320(w)28(argami)-320(w)-320(jej)-320(u)1(s)-1(ta,)-319(\\273)-1(e)]TJ 0 -13.549 Td[(straci\\252a)-232(o)-28(dd)1(e)-1(c)27(h)1(,)-232(opad)1(\\252y)-232(jej)-232(r)1(\\246)-1(ce)-1(,)-232(sk)28(op)-28(ek)-232(p)-27(olec)-1(ia\\252)-232(n)1(a)-233(ziem)-1(i)1(\\246)-1(,)-232(straci\\252a)-232(pr)1(z)-1(ytomn)1(o\\261)-1(\\242,)]TJ 0 -13.55 Td[(ale)-282(p)1(r\\246\\273)-1(y)1(\\252)-1(a)-281(si\\246)-282(coraz)-282(mo)-28(cniej)-281(i)-281(tak)-281(zapami\\246tale)-282(cis)-1(n)1(\\246)-1(\\252a)-281(si\\246)-282(u)1(s)-1(tami)-281(do)-281(jego)-281(ust,)-281(\\273)-1(e)]TJ 0 -13.549 Td[(zw)27(arl)1(i)-250(si\\246)-250(na)-250(\\261mie)-1(r)1(\\242)-1(,)-249(pad)1(li)-250(w)-250(siebie)-250(i)-249(przez)-251(d)1(\\252ug\\241)-250(c)28(h)28(wil\\246)-250(trw)28(ali)-249(w)-250(takim)-250(sz)-1(al)1(on)28(ym,)]TJ 0 -13.549 Td[(dziki)1(m)-1(,)-333(b)-27(e)-1(zpr)1(z)-1(yt)1(om)-1(n)28(y)1(m)-334(p)-27(o)-28(c)-1(a\\252u)1(nku)1(.)]TJ 27.879 -13.549 Td[(Od)1(e)-1(r)1(w)27(a\\252)-333(s)-1(i\\246)-333(w)-1(r)1(e)-1(sz)-1(cie)-334(i)-333(c)28(h)28(y\\252kiem)-334(wyb)1(ie)-1(g\\252)-333(z)-334(ob)-27(ory)84(.)]TJ 0 -13.549 Td[(Ze)-1(r)1(w)27(a\\252a)-386(s)-1(i\\246)-387(wr)1(e)-1(sz)-1(cie,)-387(ab)28(y)-386(d)1(o\\253)-387(sk)28(o)-28(cz)-1(y)1(\\242)-1(,)-386(ale)-387(j)1(u\\273)-387(cie)-1(n)1(iem)-387(m)-1(i)1(gn\\241\\252)-387(n)1(a)-387(p)1(rogu)]TJ -27.879 -13.549 Td[(i)-440(p)1(rze)-1(p)1(ad\\252)-440(w)-440(n)1(o)-28(cy)83(.)-439(Nie)-440(b)28(y\\252o)-440(go,)-439(jeno)-440(ten)-439(c)-1(ic)28(h)28(y)84(,)-440(pal)1(\\241c)-1(y)-439(s)-1(ze)-1(p)1(t)-440(gra\\252)-439(w)-440(niej)-439(tak)]TJ 0 -13.55 Td[(mo)-28(c)-1(n)1(o,)-396(a)-397(tak)-396(n)1(ak)55(azuj)1(\\241c)-1(o,)-396(\\273e)-397(si\\246)-397(ze)-397(z)-1(d)1(umieniem)-397(rozgl\\241d)1(a\\252)-1(a)-396(p)-27(o)-397(ob)-27(orze)-1(.)1(..)-396(Ju\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(ni)1(e)-390(b)28(y)1(\\252)-1(o)-389(n)1(ik)28(og\\363)-56(j)1(;)-389(kr)1(o)27(wy)-389(j)1(e)-1(n)1(o)-389(prze\\273)-1(u)28(w)28(a\\252y)-389(pasz)-1(\\246)-389(i)-389(c)27(h)1(lasta\\252y)-389(ogonami.)-389(Wy)1(jrza\\252a)]TJ 0 -13.549 Td[(w)-442(p)-27(o)-28(dw)28(\\363rze)-1(,)-441(no)-28(c)-442(s)-1(t)1(a\\252)-1(a)-441(z)-1(a)-442(p)1(rogiem)-442(niepr)1(z)-1(enik)1(nion)28(y)1(m)-1(i)-441(m)-1(r)1(ok)55(ami,)-441(c)-1(isza)-442(gniet\\252a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at,)-334(t)28(yla)-334(co)-334(te)-335(k)1(ucia)-334(m)-1(\\252ot\\363)28(w)-334(p)-27(obrz\\246kiw)28(a\\252)-1(y)-333(w)-335(d)1(alek)28(o\\261)-1(ciac)27(h)1(...)-334(A)-334(b)29(y\\252)-334(przec)-1(iec)27(h)1(,)]TJ 0 -13.549 Td[(b)28(y\\252.)1(..)-356(sto)-55(ja\\252)-356(p)1(rzy)-355(niej,)-355(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252)-356(j\\241,)-355(ca\\252o)27(w)28(a\\252...)-355(jesz)-1(cz)-1(e)-356(u)1(s)-1(ta)-355(pal)1(\\241,)-356(j)1(e)-1(sz)-1(cze)-356(ognie)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(dz\\241)-269(p)-28(o)-269(ni)1(e)-1(j)-269(b)1(\\252)-1(y)1(s)-1(k)56(a)28(wic)-1(ami,)-269(a)-269(w)-270(se)-1(r)1(c)-1(u)-269(wzbiera)-269(taki)-269(krzyk)-269(rad)1(o\\261)-1(ci,)-269(\\273)-1(e)-269(nie)-269(w)-1(y)1(p)-28(o-)]TJ 0 -13.549 Td[(wiedzie)-1(\\242!)-300(Jezus,)-300(m\\363)-56(j)-299(Jez)-1(u)1(s)-1(!)-299(P)28(o)-28(derw)28(a\\252o)-300(j)1(\\241)-300(c)-1(osik)-299(i)-300(n)1(ie)-1(s\\252o,)-300(\\273e)-300(c)27(ho)-27(\\242)-1(b)28(y)-299(w)-300(ca\\252)-1(y)-299(\\261w)-1(i)1(a)-1(t)1(,)]TJ\nET\nendstream\nendobj\n799 0 obj <<\n/Type /Page\n/Contents 800 0 R\n/Resources 798 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n798 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n804 0 obj <<\n/Length 9073      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(248)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(zaraz)-1(,)-411(w)-413(ten)-412(mig,)-412(a)-412(p)-27(os)-1(z\\252ab)28(y)-412(tam,)-412(z)-413(n)1(im!...)-412(J)1(an)28(to\\261)-1(!)-411({)-413(k)1(rzykn\\246\\252a)-412(b)-28(ezw)-1(i)1(e)-1(d)1(nie)-412(i)]TJ 0 -13.549 Td[(dop)1(iero)-312(w\\252as)-1(n)28(y)-311(g\\252)-1(os)-312(opr)1(z)-1(y)1(tom)-1(n)1(i\\252)-312(j\\241)-312(n)1(ie)-1(co.)-312(Zwija\\252a)-312(si\\246)-312(z)-313(d)1(o)-56(jeni)1(e)-1(m)-312(z)-1(e)-312(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(si\\252,)-388(ale)-388(b)28(y\\252a)-388(tak)-388(roztrz\\246s)-1(ion)1(a,)-388(\\273)-1(e)-388(cz)-1(\\246s)-1(to)-388(p)-27(o)-28(d)-387(przo)-28(d)1(k)55(ami)-388(kr)1(\\363)27(w)-388(sz)-1(u)1(k)55(a\\252a)-388(wymion)1(,)]TJ 0 -13.549 Td[(i)-387(tak)-387(r)1(oz)-1(tk)1(liwion)1(a)-387(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(m,)-387(\\273e)-388(d)1(opiero)-387(id)1(\\241c)-388(d)1(o)-387(c)27(ha\\252u)1(p)28(y)83(,)-386(na)-387(mrozie)-388(p)-27(o)-28(cz)-1(u)1(\\252a,)]TJ 0 -13.549 Td[(\\273e)-418(m)-1(a)-417(t)27(w)28(arz)-418(mokr)1(\\241)-418(o)-28(d)-417(p\\252acz)-1(u)1(.)-417(Z)-1(an)1(ies)-1(\\252a)-418(mlek)28(o,)-418(al)1(e)-418(z)-1(ap)-27(omnia\\252a)-418(j)1(e)-418(pr)1(z)-1(ec)-1(edzi\\242,)]TJ 0 -13.55 Td[(p)-27(obieg\\252a)-321(na)-321(dr)1(ug\\241)-321(stron)1(\\246)-1(,)-321(b)-27(o)-321(dos\\252ysz)-1(a\\252a)-321(g\\252os)-322(Nastki,)-321(n)1(ic)-321(jej)-321(ni)1(e)-322(rze)-1(k)1(\\252a)-321(i)-321(p)-28(o)28(wr\\363-)]TJ 0 -13.549 Td[(ci\\252a,)-378(p)1(rzys)-1(tr)1(a)-56(j)1(a\\252)-1(a)-377(s)-1(i)1(\\246)-379(p)1(rze)-1(d)-377(lu)1(s)-1(terki)1(e)-1(m,)-378(t)1(o)-378(jes)-1(zcz)-1(e)-378(p)-27(olan)-377(dorzuci\\252a)-378(n)1(a)-378(ogie\\253,)-377(to)]TJ 0 -13.549 Td[(rozm)27(y)1(\\261)-1(la\\252a,)-345(\\273e)-346(ma)-345(co\\261)-346(pi)1(lnego)-345(z)-1(r)1(obi\\242...)-344(c)-1(\\363\\273,)-345(kiej)-345(n)1(ie)-346(mog\\252a)-345(s)-1(ob)1(ie)-345(nicz)-1(eg\\363)-56(j)-344(przy-)]TJ 0 -13.549 Td[(p)-27(om)-1(n)1(ie\\242)-1(,)-294(n)1(icz)-1(eg\\363)-56(j)1(...)-294(b)-27(o)-294(in)1(o)-294(to)-294(s)-1(t)1(a\\252)-1(o)-294(j)1(e)-1(j)-293(w)-294(m)27(y\\261lac)28(h,)-294(\\273e)-295(An)29(te)-1(k)-293(c)-1(ze)-1(k)56(a)-294(p)-27(o)-28(d)-294(b)1(rogiem,)]TJ 0 -13.549 Td[(cz)-1(ek)55(a.)1(..)-333(P)28(okr)1(\\246)-1(ci\\252a)-334(si\\246)-334(j)1(e)-1(sz)-1(cze)-334(b\\252\\246dn)1(ie)-334(p)-27(o)-334(i)1(z)-1(b)1(ie)-1(,)-333(okr)1(y\\252a)-334(si\\246)-334(zapask)56(\\241)-334(i)-333(p)-27(osz)-1(\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(u)1(n\\246\\252a)-467(s)-1(i)1(\\246)-468(cic)28(ho)-467(k)28(o\\252o)-467(oki)1(e)-1(n)-466(i)-467(p)-27(os)-1(z\\252a)-467(s)-1(zcz)-1(yto)28(w)28(\\241)-467(\\261)-1(cian)1(\\241)-467(do)-467(w)28(\\241s)-1(k)1(ie)-1(go)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ej\\261c)-1(i)1(a)-228(mi\\246dzy)-228(sadem)-228(a)-227(s)-1(zop\\241,)-227(n)1(akryt)1(e)-1(go)-227(nib)29(y)-228(d)1(ac)27(h)1(e)-1(m)-228(ob)29(w)-1(i)1(s)-1(\\252ymi)-227(p)-28(o)-27(d)-227(\\261)-1(n)1(ie)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(ga\\252\\246)-1(ziami,)-333(\\273e)-334(m)27(u)1(s)-1(ia\\252a)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(yc)28(h)28(yla\\242.)]TJ 27.879 -13.549 Td[(An)28(tek)-266(czai\\252)-266(si\\246)-266(przy)-265(prze)-1(\\252azie,)-266(sk)28(o)-28(cz)-1(y\\252)-265(do)-266(n)1(iej)-266(j)1(ak)-266(wilk)1(,)-266(p)1(rze)-1(n)1(i\\363s)-1(\\252)-265(j\\241)-266(p)1(ra)28(wie)]TJ -27.879 -13.549 Td[(i)-333(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252)-333(p)-28(o)-27(d)-333(br\\363g,)-333(sto)-56(j)1(\\241c)-1(y)-333(zaraz)-334(za)-333(drog\\241.)]TJ 27.879 -13.549 Td[(Ale)-364(ni)1(e)-365(wied\\252o)-364(si\\246)-364(im)-364(ca\\252)-1(k)1(ie)-1(m)-364(d)1(nia)-364(t)1(e)-1(go,)-363(b)-28(o)-364(t)28(yl)1(a)-364(c)-1(o)-363(w)-1(l)1(e)-1(\\271li)-364(w)-364(b)1(r\\363g,)-364(co)-364(si\\246)]TJ -27.879 -13.55 Td[(tam)-334(zw)28(arli)-333(w)-334(ca\\252un)1(k)55(ac)28(h,)-333(rozleg\\252)-334(si\\246)-334(ostry)84(,)-333(don)1(o\\261)-1(n)28(y)-333(g\\252os)-334(Bory)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261!)-333(Jagu\\261!...)]TJ 0 -13.549 Td[(Kieb)28(y)-439(pi)1(orun)-439(w)-439(nic)28(h)-439(trz)-1(asn\\241\\252,)-439(tak)-439(s)-1(i)1(\\246)-440(roznie\\261)-1(l)1(i,)-439(An)28(te)-1(k)-439(sk)28(o)-28(c)-1(zy\\252)-439(w)-440(b)-27(ok)-440(i)]TJ -27.879 -13.549 Td[(c)27(h)29(y\\252kiem)-478(p)-27(o)-28(d)-477(ogro)-28(d)1(am)-1(i)-477(r)1(w)27(a\\252,)-477(a)-478(Jagn)1(a)-478(p)-27(obi)1(e)-1(g\\252a)-477(w)-478(p)-27(o)-28(dw)28(\\363rze)-1(,)-477(n)1(ie)-478(bacz)-1(\\241c,)-477(\\273)-1(e)]TJ 0 -13.549 Td[(ga\\252\\246)-1(zie)-450(z)-1(d)1(ar\\252y)-450(j)1(e)-1(j)-449(z)-1(ap)1(as)-1(k)28(\\246)-450(z)-450(g\\252o)27(wy)-450(i)-449(c)-1(a\\252\\241)-450(ob)1(s)-1(yp)1(a\\252y)-450(ku)1(rza)27(w)28(\\241.)-450(P)1(rze)-1(tar)1(\\252)-1(a)-449(t)27(w)28(arz)]TJ 0 -13.55 Td[(\\261niegiem)-1(,)-477(nazbiera\\252a)-478(p)-27(o)-28(d)-477(sz)-1(op)1(\\241)-478(nar)1(\\246)-1(cz)-478(drzew)27(a)-478(i)-477(w)28(olno)-477(s)-1(p)-27(ok)28(o)-56(j)1(nie)-478(wr\\363)-28(ci\\252a)-478(d)1(o)]TJ 0 -13.549 Td[(izb)28(y)84(.)]TJ 27.879 -13.549 Td[(St)1(ary)-333(patr)1(z)-1(a\\252)-333(na)-333(ni)1(\\241)-334(sp)-28(o)-27(de)-334(\\252b)1(a,)-334(d)1(z)-1(i)1(w)-1(n)1(ie)-334(j)1(ak)28(o\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Za)-56(jr)1(z)-1(a\\252am)-333(do)-333(s)-1(iwu)1(li,)-333(b)-27(o)-334(cos)-1(i)1(k)-334(st\\246k)55(a)-333(i)-333(p)-27(ok\\252ada)-333(s)-1(i)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Szuk)56(a\\252e)-1(m)-333(c)-1(i\\246)-333(w)-334(ob)-27(orze)-1(,)-333(a)-333(nie)-333(u)28(widzia\\252e)-1(m..)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(om)-333(w)-1(t)1(e)-1(d)1(y)-334(j)1(u\\273)-333(m)27(usia\\252a)-333(b)28(y\\242)-334(p)-27(o)-28(d)-333(sz)-1(op)1(\\241,)-333(dr)1(w)27(a)-333(z)-1(b)1(iera\\252am)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(\\273e)-1(\\261)-334(si\\246)-334(t)1(o)-334(tak)-333(u)1(t)27(y)1(t\\252a\\252a)-334(w)-333(\\261)-1(n)1(ie)-1(gu)1(?...)]TJ 0 -13.549 Td[({)-484(G)1(dzie)-1(?)-483(Ze)-485(strzec)27(h)28(y)-483(\\261)-1(n)1(ie)-1(go)28(w)28(e)-484(br)1(o)-28(dy)-483(wis)-1(z\\241,)-483(to)-484(in)1(o)-484(tr)1(\\241c)-1(i\\242,)-484(a)-483(na)-483(g\\252o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(si\\246)-401(syp)1(i\\241)-400({)-400(t\\252umacz)-1(y\\252a)-400(si\\246)-400(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-1(,)-400(al)1(e)-401(t)28(w)28(arz)-400(o)-28(dwraca\\252a)-400(o)-28(d)-399(ognia,)-399(b)28(y)-400(u)1(kry\\242)]TJ 0 -13.549 Td[(wypi)1(e)-1(ki)1(.)]TJ 27.879 -13.55 Td[(Ale)-443(starego)-442(nie)-442(z)-1(wied\\252a,)-442(nib)29(y)-442(w)-1(p)1(rost,)-442(o)-28(c)-1(zy)-442(w)-443(o)-27(c)-1(zy)83(,)-442(n)1(ie)-443(patr)1(z)-1(a\\252,)-442(d)1(obrze)]TJ -27.879 -13.549 Td[(jedn)1(ak)-467(w)-1(id)1(z)-1(i)1(a\\252,)-468(\\273e)-468(c)-1(a\\252a)-467(w)-468(ogniac)28(h,)-467(c)-1(ze)-1(r)1(w)27(on)1(a,)-468(a)-467(o)-28(cz)-1(y)-467(rozjarzone)-468(b)1(\\252ys)-1(zcz)-1(\\241)-467(s)-1(i\\246)]TJ 0 -13.549 Td[(kiej)-318(w)-319(c)27(h)1(orob)1(ie)-1(.)-318(Jakie\\261)-319(g\\252uc)28(he,)-319(n)1(ie)-1(j)1(as)-1(n)1(e)-319(p)-27(o)-28(dejrzenie)-319(w\\261lizgn\\246\\252)-1(o)-318(m)27(u)-318(si\\246)-319(do)-318(s)-1(erca,)]TJ 0 -13.549 Td[(zaz)-1(d)1(ro\\261)-1(\\242)-350(k)56(\\241\\261)-1(li)1(w)27(a)-350(za)27(w)28(arcz)-1(a\\252a)-350(w)-350(nim)-350(jak)-350(p)1(ies)-351(i)-350(j)1(ak)-350(pies)-351(si\\246)-351(p)1(rzycz)-1(ai\\252a.)-350(D\\252u)1(go)-350(s)-1(i\\246)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(z)-1(i\\252)-319(i)-319(rozm)27(y\\261la\\252,)-319(a\\273)-320(w)-320(k)28(o\\253)1(c)-1(u)-319(p)1(rzysz)-1(\\252o)-319(m)27(u)-319(d)1(o)-320(g\\252o)28(wy)83(,)-319(\\273e)-320(to)-320(p)-27(ew)-1(n)1(ie)-320(M)1(ate)-1(u)1(s)-1(z)-320(j)1(\\241)]TJ 0 -13.549 Td[(sp)-28(otk)56(a\\252)-333(i)-333(przypar)1(\\252)-334(gd)1(z)-1(i)1(e)-334(do)-333(p\\252otu)1(.)]TJ 27.879 -13.55 Td[(Nastk)55(a)-333(w\\252a\\261)-1(n)1(ie)-334(w)28(e)-1(sz)-1(\\252a)-333(na,)-333(to,)-333(wi\\246c)-334(dal)1(e)-1(j)1(\\273)-1(e)-334(j)1(\\241)-333(p)-28(o)-28(ci\\241)-28(ga\\242)-333(z)-1(a)-333(j\\246z)-1(y)1(k.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to,)-333(p)-28(on)1(o)-334(M)1(ate)-1(u)1(s)-1(z)-333(ju\\273)-333(z)-1(d)1(ro)28(wy)83(,)-333(c)27(h)1(o)-28(dzi?...)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(zdr)1(o)27(wy)-333(tam!)]TJ 0 -13.549 Td[({)-353(M\\363)28(wi\\252)-353(mi)-353(ktosik,)-352(\\273)-1(e)-353(widzieli)-353(go)-353(n)1(a)-353(o)-28(dwiec)-1(zerz)-1(u)1(,)-353(p)-27(o)-353(ws)-1(i)-352(c)27(ho)-27(dzi\\252)-353(p)-28(on)1(o...)]TJ -27.879 -13.549 Td[({)-333(z)-1(agad)1(yw)27(a\\252)-333(c)27(h)29(ytrze)-1(,)-333(a)-333(pil)1(nie)-333(patrza\\252)-333(w)-334(Jagn)1(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-344(P)1(lec)-1(iu)1(c)27(h)28(y)-343(ba)-55(j\\241,)-343(c)-1(o)-344(i)1(no)-344(si\\246)-344(im)-344(u)28(wid)1(z)-1(i,)-343(Mateusz)-344(ledwie)-344(s)-1(i)1(\\246)-345(r)1(uc)27(h)1(a,)-344(z)-344(\\252\\363\\273k)55(a)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-264(si\\246)-264(nie)-264(p)-27(o)-28(dn)1(os)-1(i,)-263(t)27(y)1(la)-264(\\273)-1(e)-264(ju)1(\\273)-265(k)1(rwi\\241)-264(ni)1(e)-265(o)-28(d)1(da)-55(je.)-264(Jam)27(b)1(ro\\273y)-264(s)-1(t)1(a)27(wia\\252)-264(m)28(u)-264(dzisia)-56(j)]TJ\nET\nendstream\nendobj\n803 0 obj <<\n/Type /Page\n/Contents 804 0 R\n/Resources 802 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n802 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n807 0 obj <<\n/Length 8819      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(249)]TJ -358.232 -35.866 Td[(ba\\253)1(ki,)-318(a)-319(teraz)-319(nar)1(z)-1(\\241d)1(z)-1(i\\252)-318(ok)28(o)27(witk)1(i)-319(z)-319(t\\252usto\\261c)-1(i\\241)-318(i)-319(leku)1(j\\241)-319(si\\246)-319(tam)-319(oba)-55(j)-319(t)1(ak)-319(galan)28(t)1(o,)]TJ 0 -13.549 Td[(a\\273e)-334(na)-333(dr)1(o)-28(dze)-334(si\\246)-334(rozlega)-56(j)1(\\241)-334(\\261piew)28(ania.)]TJ 27.879 -13.549 Td[(Nie)-334(p)29(yta\\252)-333(s)-1(i\\246)-333(ju\\273)-333(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-333(ale)-334(p)-27(o)-28(dejr)1(z)-1(e\\253)-333(s)-1(i)1(\\246)-334(ni)1(e)-334(p)-28(ozb)28(y\\252.)]TJ 0 -13.549 Td[(A)-380(Jagu)1(s)-1(i)1(a,)-380(\\273e)-381(ci\\246\\273)-1(y\\252o)-379(jej)-380(milcz)-1(eni)1(e)-381(i)-379(te)-380(jego)-380(s)-1(zpi)1(e)-1(gu)1(j\\241ce)-381(o)-27(c)-1(zy)-380(n)1(ie)-380(da)28(w)27(a\\252y)]TJ -27.879 -13.549 Td[(sp)-28(ok)28(o)-55(ju)1(,)-334(j)1(\\246)-1(\\252a)-333(s)-1(zerok)28(o)-333(op)-28(o)28(wiada\\242)-333(o)-334(b)29(ytno\\261c)-1(i)-333(p)1(ana)-333(Jac)27(k)56(a.)]TJ 27.879 -13.55 Td[(Zdu)1(m)-1(i)1(a\\252)-285(si\\246)-285(t)28(ym)-284(wie)-1(l)1(c)-1(e)-285(i)-284(zacz)-1(\\241\\252)-284(w)-1(y)1(m)-1(i)1(ark)28(o)28(w)-1(y)1(w)27(a\\242,)-284(c)-1(o)-284(b)28(y)-284(to)-284(mog\\252o)-285(znacz)-1(y)1(\\242)-1(,)]TJ -27.879 -13.549 Td[(bi)1(e)-1(d)1(z)-1(i\\252)-294(s)-1(i\\246)-295(n)1(iem)-1(a\\252o,)-294(rozw)27(a\\273a\\252,)-295(d)1(e)-1(li)1(b)-28(ero)28(w)28(a\\252)-1(,)-294(k)56(a\\273)-1(d)1(e)-295(s)-1(\\252o)28(w)27(o)-294(z)-295(os)-1(ob)1(na)-294(w)-295(g\\252o)27(wie)-295(ob)1(ra-)]TJ 0 -13.549 Td[(ca\\252)-1(,)-281(a\\273)-281(w)-282(k)28(o\\253)1(c)-1(u)-281(wyr)1(a\\271)-1(n)1(ie)-282(z)-282(tego)-281(w)-1(y)1(s)-1(z\\252o,)-281(\\273)-1(e)-282(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-281(w)-1(y)1(s)-1(\\252a\\252)-281(pan)1(a)-282(Jac)28(k)56(a)-282(d)1(o)-282(n)1(iego,)]TJ 0 -13.549 Td[(b)28(y)-333(si\\246)-334(wywiedzia\\252,)-333(c)-1(o)-333(to)-333(nar\\363)-27(d)-333(p)-28(o)28(wie)-334(o)-333(p)-27(or\\246)-1(b)1(ie.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(nic)-333(a)-334(n)1(ic)-334(o)-333(las)-334(n)1(ie)-334(p)28(y)1(ta\\252.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(k)1(ie)-1(j)-333(t)1(a)-1(k)1(i)-333(c)-1(i\\246)-333(w)-1(y)1(w)-1(i)1(e)-1(d)1(z)-1(ie)-333(nib)28(y)-333(n)1(a)-334(p)-27(ostronk)1(u,)-333(\\273e)]TJ 0 -13.55 Td[(ani)-370(z)-1(miark)1(uj)1(e)-1(sz)-1(,)-371(k)1(ie)-1(d)1(y)83(,)-370(c)-1(o)-371(i)-371(j)1(ak,)-371(a)-371(wsz)-1(ystk)28(o)-371(wyp)-27(o)28(w)-1(i)1(e)-1(sz)-1(.)-371(Ho,)-370(ho,)-371(znam)-371(ja)]TJ -27.879 -13.549 Td[(ten)-333(dziedzic)-1(o)28(wy)-333(p)-28(omiot.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(adam)-334(w)28(am,)-334(\\273e)-334(in)1(o)-333(o)-334(Ku)1(b)-27(\\246)-334(p)28(yta\\252)-333(i)-333(o)-334(t)1(e)-334(s)-1(tr)1(z)-1(y\\273ki!)]TJ 0 -13.549 Td[({)-342(M)1(iedzam)-1(i)-341(k)28(o\\252uj)1(e)-1(,)-341(b)28(y)-341(drog\\246)-342(wyp)1(atrze)-1(\\242!)-341(W)-342(t)28(ym)-342(cos)-1(i)1(k)-342(j)1(e)-1(st,)-341(jak)56(a\\261)-342(dziedzi-)]TJ -27.879 -13.549 Td[(co)27(w)28(a)-434(sztucz)-1(k)56(a,)-433(b)-27(o)-434(j)1(ak\\273)-1(e,)-433(dziedzic)-1(o)28(wy)-433(brat)-433(i)-433(sto)-56(j)1(a\\252)-1(b)29(y)-433(tam)-434(o)-433(Kub)-27(\\246)-1(!)-433(G)1(\\252)-1(u)1(pi)-433(in)1(o)]TJ 0 -13.55 Td[(w)-356(tak)1(ie)-356(ba)-55(jd)1(y)-356(u)29(w)-1(i)1(e)-1(rzy)84(.)-356(P)29(o)27(wiad)1(a)-56(j)1(\\241,)-356(\\273e)-356(ten)-355(Jac)-1(ek)-355(g\\252)-1(u)1(pa)28(wy)-355(jes)-1(t)-355(nieco,)-356(p)-27(o)-355(w)-1(siac)27(h)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-389(s)-1(i\\246)-389(nosi,)-389(n)1(a)-389(s)-1(k)1(rz)-1(y)1(pk)56(ac)27(h)-388(p)-28(o)-27(d)-389(\\014gu)1(rami)-389(wygry)1(w)27(a)-389(i)-389(tr)1(z)-1(y)-389(p)-27(o)-389(trzy)-389(p)1(le)-1(cie.)-389(I)]TJ 0 -13.549 Td[(p)-27(o)27(wiedzia\\252,)-333(\\273)-1(e)-333(przyj)1(dzie)-1(?)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(i)-333(o)-333(w)27(as)-334(si\\246)-334(wyp)28(y)1(t)28(yw)27(a\\252.)]TJ 0 -13.549 Td[({)-333(No,)-333(no,)-333(w)-334(g\\252o)28(wie)-334(si\\246)-334(n)1(ie)-334(c)27(h)1(c)-1(e)-333(p)-28(omie\\261)-1(ci\\242.)]TJ 0 -13.55 Td[({)-324(A)-324(widzieli\\261c)-1(ie)-324(s)-1(i)1(\\246)-325(z)-324(dzie)-1(d)1(z)-1(i)1(c)-1(em)-1(?)-324({)-324(zagadn\\246\\252a)-324(m)-1(i)1(\\246)-1(kk)28(o,)-323(b)28(y)-324(in)1(o)-325(n)1(ie)-324(da\\242)-324(m)27(u)]TJ -27.879 -13.549 Td[(rozm)27(y)1(\\261)-1(la\\242.)]TJ 27.879 -13.549 Td[(Ciepn\\241\\252)-333(si\\246)-1(,)-333(j)1(akb)28(y)-333(go)-333(gie)-1(z)-333(uk)56(\\241s)-1(i)1(\\252)-334(w)-333(s)-1(\\252abi)1(z)-1(n)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(u)-333(S)1(z)-1(y)1(m)-1(on)1(a)-334(ca\\252y)-333(c)-1(zas)-334(sie)-1(d)1(z)-1(i)1(a\\252)-1(em)-334({)-333(p)-27(o)27(wiedzia\\252)-333(i)-333(z)-1(amilk\\252.)]TJ 0 -13.549 Td[(Ju)1(\\273)-387(n)1(ie)-386(\\261m)-1(i)1(a\\252)-1(a)-385(p)28(yta\\242,)-386(b)-27(o)-385(c)-1(iepa\\252)-385(s)-1(i\\246)-386(p)-27(o)-386(c)28(ha\\252up)1(ie)-386(kiej)-385(ten)-386(p)1(ies)-386(w)-1(\\261c)-1(i)1(e)-1(k\\252y)84(,)-386(o)]TJ -27.879 -13.55 Td[(b)-27(e)-1(le)-415(co)-415(k)1(rzyc)-1(za\\252,)-415(p)1(rzygani)1(a\\252)-1(,)-414(p)-27(om)-1(sto)28(w)27(a\\252,)-414(\\273e)-416(u)1(c)-1(zyn)1(i\\252o)-415(si\\246)-415(tak)-414(c)-1(i)1(c)27(ho,)-414(jak)1(b)28(y)-414(kto)]TJ 0 -13.549 Td[(makiem)-334(p)-27(os)-1(ia\\252,)-333(ku)1(\\273)-1(d)1(e)-1(n)-333(m)28(u)-333(z)-334(o)-28(cz\\363)27(w)-333(rad)-333(sc)27(ho)-27(dzi\\252,)-333(b)28(yc)27(h)-332(c)-1(ze)-1(go)-333(ob)-27(e)-1(rw)28(a\\242.)]TJ 27.879 -13.549 Td[(I)-443(w)-443(takiej)-443(pr)1(z)-1(y)1(krej)-443(cic)27(h)1(o\\261)-1(ci)-443(s)-1(i)1(adali)-443(d)1(o)-443(k)28(olac)-1(j)1(i,)-443(gd)1(y)-443(w)-1(sze)-1(d)1(\\252)-444(Ro)-28(c)28(ho,)-443(siad)1(\\252)]TJ -27.879 -13.549 Td[(sw)27(oim)-333(z)-1(wycz)-1(a)-55(jem)-334(pr)1(z)-1(ed)-333(ogni)1(e)-1(m,)-333(je\\261)-1(\\242)-333(nie)-334(c)28(hcia\\252,)-333(a)-334(gd)1(y)-333(s)-1(k)28(o\\253)1(c)-1(zyli,)-333(r)1(z)-1(ek\\252)-333(c)-1(ic)28(ho:)]TJ 27.879 -13.549 Td[({)-410(Ni)1(e)-411(o)-27(d)-410(siebie)-410(p)1(rzyc)27(h)1(o)-28(dz\\246)-1(.)-409(Na)-410(wsi)-410(p)-27(o)28(w)-1(i)1(ada)-55(j\\241,)-409(\\273)-1(e)-410(d)1(z)-1(iedzic)-410(si\\246)-410(na)-410(Li)1(p)-28(ce)]TJ -27.879 -13.55 Td[(za)27(wzi\\241\\252)-296(i)-296(ani)-296(jedn)1(e)-1(go)-296(c)28(h\\252opa)-296(ni)1(e)-297(za)27(w)28(o\\252a)-296(do)-296(r\\241b)1(ania,)-296(p)1(rzys)-1(ze)-1(d)1(\\252e)-1(m)-296(s)-1(i)1(\\246)-297(s)-1(p)29(yta\\242,)-296(c)-1(zy)]TJ 0 -13.549 Td[(to)-333(pr)1(a)27(wd)1(a?)]TJ 27.879 -13.549 Td[({)-333(W)-333(im)-1(i)1(\\246)-334(Oj)1(c)-1(a)-333(i)-333(Syn)1(a,)-333(a)-334(sk)56(\\241d\\273e)-334(m)-1(n)1(ie)-334(to)-333(wiedzie)-1(\\242,)-333(pierwsz)-1(y)-333(raz)-333(s)-1(\\252ysz)-1(\\246.)]TJ 0 -13.549 Td[({)-333(Narada)-333(b)28(y)1(\\252)-1(a)-333(dzisia)-56(j)-332(u)-333(m)-1(\\252yn)1(arza,)-333(s)-1(tam)28(t\\241d)-333(p)-27(os)-1(z\\252a)-334(n)1(o)27(win)1(a.)]TJ 0 -13.549 Td[({)-333(Naradza\\252)-333(s)-1(i\\246)-333(w)27(\\363)-56(j)1(t,)-333(m\\252)-1(y)1(narz)-333(i)-333(k)28(o)27(w)28(al,)-333(ale)-334(n)1(ie)-334(j)1(a!)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(p)-27(o)27(wiad)1(ali,)-333(\\273e)-334(u)-333(w)28(as)-334(b)28(y\\252)-333(s)-1(am)-333(dzie)-1(d)1(z)-1(i)1(c)-334(i)-333(\\273)-1(e\\261)-1(cie)-334(z)-333(nim)-333(p)-28(osz)-1(l)1(i.)]TJ 0 -13.55 Td[({)-333(Nie)-334(n)1(are)-1(d)1(z)-1(a\\252em)-334(si\\246)-334(z)-334(n)1(imi,)-333(c)27(h)1(c)-1(ec)-1(ie,)-333(to)-333(w)-1(i)1(e)-1(r)1(z)-1(cie)-1(,)-333(p)1(ra)28(wd\\246)-334(w)28(am)-334(rzek\\252e)-1(m...)]TJ 0 -13.549 Td[(Nie)-292(pr)1(z)-1(y)1(z)-1(na\\252)-291(s)-1(i\\246,)-292(j)1(ak)-292(wielc)-1(e)-292(go)-292(b)-27(ola\\252o)-292(to)-291(p)-28(omin)1(i\\246)-1(cie,)-292(i)-291(\\273)-1(e)-292(rad)1(z)-1(il)1(i)-292(b)-27(e)-1(z)-292(ni)1(e)-1(go!)]TJ -27.879 -13.549 Td[(Roz)-1(sro\\273y\\252)-405(s)-1(i)1(\\246)-406(z)-1(n)1(o)28(w)-1(u)-404(na)-405(pr)1(z)-1(yp)-27(omnieni)1(e)-1(,)-405(ale)-405(m)-1(i)1(lc)-1(za\\252,)-405(pr)1(z)-1(e\\273)-1(u)28(w)28(a\\252)-405(ino)-405(w)-405(s)-1(ob)1(ie)-406(t\\246)]TJ 0 -13.549 Td[(obr)1(az)-1(\\246)-229(kie)-1(j)-228(p)-28(okr)1(z)-1(y)1(w)-1(y)84(,)-229(p)-28(o)28(wstrzym)27(yw)28(a\\252)-230(si\\246,)-229(jak)-229(m\\363g\\252,)-230(b)29(yc)27(h)-229(Ro)-28(c)28(ho)-229(nie)-229(z)-1(miark)28(o)28(w)28(a\\252,)]TJ 0 -13.549 Td[(co)-334(si\\246)-334(z)-334(n)1(im)-334(d)1(z)-1(i)1(e)-1(j)1(e)-1(!)]TJ 27.879 -13.55 Td[({)-436(J)1(ak\\273)-1(e,)-435(c)-1(ze)-1(k)56(a\\252,)-436(wyp)1(atry)1(w)27(a\\252)-436(j)1(ak)-435(te)-1(n)-435(g\\252up)1(i,)-435(a)-436(on)1(i)-436(b)-27(e)-1(z)-436(n)1(iego)-436(rad)1(z)-1(i)1(li!)-435(Nie)]TJ -27.879 -13.549 Td[(dar)1(uj)1(e)-303(i)1(m)-302(te)-1(go,)-301(p)-28(op)1(ami\\246)-1(ta)-55(j\\241.)-301(Ma)-55(j\\241)-302(go)-301(w)-1(i)1(da\\242)-302(z)-1(a)-301(nic,)-302(to)-301(im)-302(p)-27(ok)55(a\\273e)-1(,)-301(co)-302(z)-1(n)1(ac)-1(zy)-302(n)1(a)]TJ\nET\nendstream\nendobj\n806 0 obj <<\n/Type /Page\n/Contents 807 0 R\n/Resources 805 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n805 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n810 0 obj <<\n/Length 8848      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(250)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ws)-1(i)1(.)-349(Nie)-349(kt)1(o)-349(dr)1(ugi,)-348(jeno)-348(m)-1(\\252yn)1(arz)-349(tak)-348(z)-1(r)1(obi\\252,)-348(par)1(ob)-349(j)1(e)-1(d)1(e)-1(n)1(,)-349(ob)1(ie\\273)-1(y\\261wiat)-349(k)1(rz)-1(y)1(w)-1(d)1(\\241)]TJ 0 -13.549 Td[(lu)1(dzk)55(\\241)-317(s)-1(i)1(\\246)-319(d)1(orob)1(i\\252,)-318(a)-317(te)-1(r)1(az)-318(nad)-317(ws)-1(zys)-1(tk)1(ic)27(h)-317(si\\246)-318(w)-1(y)1(nosi,)-318(oszuk)56(aniec,)-318(zna)-318(on)-317(o)-317(nim)]TJ 0 -13.549 Td[(taki)1(e)-384(s)-1(p)1(ra)28(wy)83(,)-383(i\\273)-384(z)-384(tego)-384(mo\\273e)-384(b)28(y\\242)-384(i)-383(kr)1(e)-1(mina\\252,)-383(zna..)1(.)-384(Ab)-27(o)-383(i)-384(ten)-383(w)27(\\363)-55(jt!)-383(Byd)1(\\252)-1(o)-383(m)27(u)]TJ 0 -13.549 Td[(pasa\\242,)-303(nie)-303(prze)-1(w)28(o)-28(d)1(z)-1(i\\242)-303(s)-1(tar)1(s)-1(zym,)-303(pij)1(ani)1(c)-1(a;)-303(zrobi)1(li)-303(go)-303(w)27(\\363)-55(jtem)-1(,)-303(al)1(e)-304(tak)-303(sam)-1(o)-303(mog\\241)]TJ 0 -13.549 Td[(ju)1(tro)-415(go)-414(z)-1(ru)1(c)-1(i)1(\\242)-416(i)-414(w)-1(y)1(bra\\242)-415(c)27(h)1(o)-28(\\242b)28(y)-415(Jam)28(bro\\273a,)-415(j)1(e)-1(d)1(na)-415(b)29(y)-415(z)-415(nic)28(h)-415(b)28(y)1(\\252)-1(a)-414(p)-28(o)-28(ciec)27(h)1(a!)-415(A)]TJ 0 -13.55 Td[(k)28(o)28(w)27(al)1(,)-383(zi\\246)-1(ciasz)-1(ek)-383(zap)-28(o)28(wietrzon)28(y!)-382(Nie)-1(c)28(h)-383(si\\246)-383(j)1(e)-1(n)1(o)-383(p)-28(o)-55(ja)28(wi)-383(w)-383(c)28(ha\\252up)1(ie!)-383(Alb)-27(o)-383(i)-382(te)-1(n)]TJ 0 -13.549 Td[(dziedzic,)-395(to)-394(j)1(ak)-395(wil)1(k,)-394(ogania)-394(in)1(o)-395(k)28(o\\252o)-394(naro)-27(du)1(,)-395(a)-394(zabiega,)-394(a)-395(w)28(\\246)-1(sz)-1(y)84(,)-394(gdzie)-395(b)28(y)-394(co)]TJ 0 -13.549 Td[(ur)1(w)27(a\\242!)-450(P)28(an)1(,)-450(\\261c)-1(ierw)28(o,)-450(n)1(a)-450(c)27(h)1(\\252)-1(op)1(s)-1(k)1(ic)27(h)-449(z)-1(iemiac)27(h)-449(s)-1(i)1(e)-1(d)1(z)-1(i,)-449(c)27(h\\252op)1(s)-1(ki)-449(las)-450(s)-1(p)1(rze)-1(d)1(a)-56(je,)-450(z)]TJ 0 -13.549 Td[(c)27(h)1(\\252opskiej)-475(\\252aski)-474(\\273)-1(yj)1(e)-1(,)-474(a)-475(b)-27(\\246)-1(d)1(z)-1(i)1(e)-476(si\\246)-475(tu)-474(na)-474(nar\\363)-27(d)-475(zma)27(wia\\252!)-474(\\221cierw)28(a)-1(,)-474(ni)1(e)-475(bacz)-1(y)84(,)]TJ 0 -13.549 Td[(\\273e)-406(i)-404(p)1(a\\253skiej)-405(sk)28(\\363ry)-404(tak)-405(samo)-405(ima)-56(j)1(\\241)-405(si\\246)-405(c)-1(ep)28(y)-404(jak)-404(i)-405(k)1(u\\273dego!)-405({)-404(Ale)-405(nie)-405(r)1(z)-1(ek\\252)-405(n)1(i)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a)-298(z)-297(t)27(y)1(c)27(h)-297(d)1(e)-1(li)1(b)-28(eracji,)-297(j)1(ak\\273)-1(e,)-297(nie)-297(bab)1(a)-298(p)1(rz)-1(ecie)-1(c)28(h,)-297(b)28(y)-297(si\\246)-298(pr)1(z)-1(ed)-297(dr)1(ugimi)-297(u\\273ala\\252)-297(i)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(a)-322(s)-1(zuk)56(a\\252!)-322(Gr)1(yz)-1(\\252o)-322(go)-322(to)-322(sro)-28(d)1(z)-1(e,)-322(b)-27(ola\\252o)-322(na)28(w)28(e)-1(t)-322(wielce)-1(,)-322(al)1(e)-323(zas)-1(ie)-322(k)28(om)27(u)]TJ 0 -13.549 Td[(do)-361(te)-1(go!)-361(Zm)-1(i)1(ark)28(o)28(w)27(a\\252)-362(si\\246)-362(ry)1(c)27(h\\252o,)-361(\\273)-1(e)-362(to)-361(nieob)28(ycz)-1(a)-55(jn)1(ie)-362(przy)-362(ob)-27(cym)-362(tak)-362(siedzie)-1(\\242)-362(z)]TJ 0 -13.549 Td[(za)27(w)28(art\\241)-333(g\\246b\\241,)-333(to)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252)-333(s)-1(i\\246)-333(z)-334(\\252a)28(w)-1(y)-333(i)-333(rzek\\252:)]TJ 27.879 -13.549 Td[({)-345(No)28(win)28(y)-344(p)-27(o)27(wiad)1(ac)-1(i)1(e)-1(,)-344(ale)-345(jak)-344(si\\246)-345(dziedzic)-345(u)28(w)28(e)-1(\\271m)-1(ie)-345(i)-344(n)1(ie)-345(z)-1(a)28(w)28(o\\252)-1(a,)-344(n)1(ikto)-345(go)]TJ -27.879 -13.549 Td[(ni)1(e)-334(z)-1(m)28(usi.)]TJ 27.879 -13.55 Td[({)-347(Pra)28(wda,)-347(ale)-347(\\273)-1(eb)28(y)-347(m)27(u)-347(k)1(to)-348(go)-28(d)1(n)28(y)-347(pr)1(z)-1(e\\252o\\273)-1(y)1(\\252)-1(,)-347(il)1(e)-348(nar)1(o)-28(du)-347(p)1(rze)-1(z)-348(t)1(o)-348(b)1(ie)-1(d)1(uj)1(e)-1(,)]TJ -27.879 -13.549 Td[(to)-333(m)-1(o\\273e)-334(b)28(y)-333(u)1(s)-1(t\\241)-27(pi\\252.)]TJ 27.879 -13.549 Td[({)-333(Prosi\\252)-333(go)-334(n)1(ie)-334(b)-27(\\246d\\246!)-334({)-333(za)27(w)28(o\\252a\\252)-334(ostro.)]TJ 0 -13.549 Td[({)-283(A)-283(ze)-284(d)1(w)-1(u)1(dzies)-1(tu)-282(k)28(om)-1(or)1(nik)28(\\363)28(w)-283(w)27(e)-283(ws)-1(i)-283(siedzi)-283(i)-283(rob)-27(ot)28(y)-283(ki)1(e)-1(j)-282(z)-1(mi\\252o)28(w)27(an)1(ia)-283(wy-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a!)-259(Wiec)-1(i)1(e)-260(sam)-1(i)-258(kt\\363re,)-259(a)-259(zim)-1(a)-259(ci\\246\\273)-1(k)56(a,)-259(\\261ni)1(e)-1(gi,)-258(m)-1(r)1(oz)-1(y)84(,)-259(niejedn)1(e)-1(m)28(u)-259(j)1(u\\273)-259(z)-1(i)1(e)-1(mniak)1(i)]TJ 0 -13.55 Td[(pr)1(z)-1(e-)]TJ 27.879 -13.549 Td[(marz\\252)-1(y)84(,)-452(a)-453(z)-1(ar)1(obku)-452(n)1(ie)-453(m)-1(a)-452(\\273)-1(ad)1(nego.)-453(Nim)-453(wiosna)-452(przyj)1(dzie)-1(,)-452(to)-453(zrob)1(i)-453(si\\246)]TJ -27.879 -13.549 Td[(taki)-361(przedno)28(w)28(e)-1(k)1(,)-362(\\273)-1(e)-362(strac)27(h)-361(p)-27(om)27(y\\261le\\242)-1(!)-362(A)-361(i)-362(teraz)-362(ju\\273)-362(b)1(ie)-1(d)1(a)-362(tak)56(a,)-362(\\273e)-363(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-361(raz)]TJ 0 -13.549 Td[(na)-416(dzie)-1(\\253)-416(gor\\241c\\241)-417(w)28(arz)-1(\\246)-417(p)-27(o)-56(j)1(ada)-417(i)-416(z)-418(g\\252o)-27(dn)28(ym)-417(b)1(rzuc)27(h)1(e)-1(m)-417(spa\\242)-417(c)27(h)1(o)-28(dzi!)-417(Rac)28(ho)28(w)27(al)1(i)]TJ 0 -13.549 Td[(ws)-1(zystkie,)-403(\\273e)-403(s)-1(k)28(or)1(o)-403(dziedzic)-403(z)-1(acz)-1(n)1(ie)-403(c)-1(i)1(\\241\\242)-403(przy)-403(W)1(ilcz)-1(yc)28(h)-403(D)1(o\\252)-1(ac)28(h,)-402(to)-403(si\\246)-403(rob)-27(ota)]TJ 0 -13.55 Td[(la)-388(wsz)-1(ystki)1(c)27(h)-388(ot)28(w)28(orzy!)-388(A)-388(t)1(u)-388(p)-27(ono)-388(si\\246)-388(z)-1(ap)1(rzys)-1(i)1(\\241)-28(g\\252,)-388(\\273e)-389(an)1(i)-388(jedn)1(e)-1(go)-387(Lip)-28(czak)55(a)-388(d)1(o)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)-382(n)1(ie)-383(w)28(e)-1(\\271mie)-1(!)-381(Roz)-1(gn)1(ie)-1(w)28(a\\252)-382(s)-1(i)1(\\246)-383(o)-382(to,)-382(\\273e)-382(p)-28(o)-28(d)1(obn)1(o)-382(s)-1(k)56(arg\\246)-382(na)-381(niego)-382(pisali)-382(d)1(o)]TJ 0 -13.549 Td[(k)28(omis)-1(ar)1(z)-1(a.)]TJ 27.879 -13.549 Td[({)-283(S)1(am)-1(em)-283(j\\241)-283(p)-27(o)-28(d)1(pisyw)28(a\\252)-283(i)-283(t)28(w)27(ar)1(do)-283(b)-27(\\246d\\246)-283(pr)1(z)-1(y)-283(t)28(y)1(m)-284(sto)-56(j)1(a\\252,)-283(\\273e)-284(n)1(i)-283(j)1(e)-1(d)1(nej)-283(c)28(ho)-55(jki)]TJ -27.879 -13.549 Td[(ni)1(e)-334(z)-1(etn)1(ie)-1(,)-333(p)-27(\\363ki)-333(s)-1(i)1(\\246)-334(z)-334(n)1(am)-1(i)-333(n)1(ie)-334(ugo)-27(dzi)-333(i)-334(n)1(ie)-334(o)-27(dda,)-333(co)-334(n)1(as)-1(ze.)]TJ 27.879 -13.55 Td[({)-333(Kiedy)-333(tak,)-333(to)-333(lasu)-333(m)-1(o\\273e)-334(ci\\241\\242)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\241!)]TJ 0 -13.549 Td[({)-333(Nas)-1(ze)-1(go)-333(ni)1(e)-334(b)-27(\\246)-1(d)1(\\241.)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(p)-27(orad)1(z)-1(\\241)-333(te)-334(b)1(ie)-1(d)1(aki,)-333(co?)-334({)-333(j\\246kn\\241\\252.)]TJ 0 -13.549 Td[({)-423(Ni)1(c)-423(im)-423(ni)1(e)-424(p)-27(orad)1(z)-1(\\246,)-422(a)-423(latego,)-423(b)29(y)-423(mia\\252y)-422(rob)-27(ot\\246)-1(,)-422(s)-1(w)28(o)-56(j)1(e)-1(go)-422(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)-422(n)1(ie)]TJ -27.879 -13.549 Td[(dam.)-291(B)-1(r)1(oni\\252)-292(b)-27(\\246)-1(d)1(\\246)-292(dru)1(gic)27(h)1(,)-292(u)1(p)-28(omin)1(a\\252)-292(s)-1(i)1(\\246)-293(za)-292(k)28(ogo,)-292(a)-291(jak)-292(si\\246)-292(mnie)-292(kr)1(z)-1(ywd)1(a)-292(s)-1(tan)1(ie,)]TJ 0 -13.549 Td[(to)-333(c)27(h)28(y)1(ba)-333(te)-1(n)-333(p)1(ies)-334(m)-1(i)-333(p)-27(omo\\273)-1(e...)]TJ 27.879 -13.55 Td[({)-333(Z)-334(tego)-333(w)-1(i)1(dz\\246)-1(,)-333(\\273e)-334(z)-334(dw)28(orem)-334(n)1(ie)-334(trzymac)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-314(T)83(r)1(z)-1(ymam)-314(z)-1(e)-314(sob\\241)-314(i)-313(z)-1(e)-314(spra)28(wiedli)1(w)27(o\\261c)-1(i)1(\\241,)-314(miarku)1(jcie)-314(ino.)-313(Mam)-314(co)-314(inn)1(e)-1(go)]TJ -27.879 -13.549 Td[(na)-330(g\\252o)28(wie)-1(.)-329(T)83(o)-330(i)-330(p\\252ak)56(a\\252)-331(n)1(ie)-331(b)-27(\\246d\\246,)-330(\\273)-1(e)-330(tam)-331(k)1(t\\363ry)-330(W)84(o)-56(jt)1(e)-1(k)-330(ab)-27(o)-330(B)-1(ar)1(te)-1(k)-330(n)1(ie)-330(m)-1(a)-330(co)-331(d)1(o)]TJ 0 -13.549 Td[(g\\246b)28(y)-419(w\\252o\\273y\\242)-1(,)-418(ksi\\246)-1(d)1(z)-1(o)28(w)28(a)-419(to)-419(spr)1(a)28(w)27(a,)-418(nie)-419(mo)-56(j)1(a!)-419(Jeden,)-418(\\273)-1(eb)28(y)-418(i)-419(c)28(hcia\\252,)-419(n)1(ie)-419(ur)1(adzi)]TJ 0 -13.549 Td[(ws)-1(zystkiem)27(u)1(.)]TJ 27.879 -13.55 Td[({)-333(Ale)-334(wiele)-334(p)-27(om)-1(\\363)-27(c)-334(mo\\273)-1(e,)-334(wiele)-334({)-333(rzuci\\252)-333(s)-1(m)28(utn)1(ie)-334(Ro)-28(c)28(ho.)]TJ 0 -13.549 Td[({)-300(P)28(op)1(r\\363bu)1(jcie)-301(w)28(o)-28(d)1(\\246)-301(nosi\\242)-300(prze)-1(tak)1(ie)-1(m,)-300(a)-300(obaczyc)-1(i)1(e)-1(,)-300(co)-300(nanosicie,)-300(tak)-300(jes)-1(t)-300(i)]TJ\nET\nendstream\nendobj\n809 0 obj <<\n/Type /Page\n/Contents 810 0 R\n/Resources 808 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n808 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n813 0 obj <<\n/Length 3007      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(251)]TJ -358.232 -35.866 Td[(z)-325(bi)1(e)-1(d)1(\\241!)-325(j)1(u\\273)-325(taki)1(e)-325(urz\\241dzenie)-325(b)-27(os)-1(k)1(ie)-325(jes)-1(t,)-324(to)-324(w)-1(i)1(dzi)-325(mi)-324(s)-1(i\\246)-325(i)-324(ostanie,)-324(\\273)-1(e)-325(j)1(e)-1(d)1(e)-1(n)-324(ma,)]TJ 0 -13.549 Td[(a)-333(dru)1(gi)-333(wiate)-1(r)-333(p)-27(o)-333(p)-28(ol)1(u)-333(\\252apie.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-279(ino)-279(p)-27(okiw)28(a\\252)-280(g\\252o)28(w)28(\\241)-280(i)-279(wysze)-1(d)1(\\252)-280(zgryzion)28(y)84(,)-279(b)-27(o)-280(n)1(ie)-280(sp)-27(o)-28(dziew)27(a\\252)-279(s)-1(i)1(\\246)-280(takiej)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(do\\261c)-1(i)-464(na)-464(bi)1(e)-1(d)1(\\246)-465(lud)1(z)-1(k)56(\\241)-464(w)-465(B)-1(or)1(yni)1(e)-1(,)-464(stary)-464(go)-465(wyp)1(ro)28(w)27(ad)1(z)-1(i\\252)-464(w)-465(op)1(\\252)-1(ot)1(ki)-465(i)-464(j)1(ak)]TJ 0 -13.549 Td[(zw)-1(y)1(c)-1(za)-56(j)1(nie)-370(to)-369(robi)1(\\252)-370(co)-370(dn)1(ia,)-369(p)-28(osz)-1(ed\\252)-369(w)-370(ob)-27(e)-1(j)1(\\261)-1(cie)-370(z)-1(a)-55(jr)1(z)-1(e\\242)-370(do)-369(kr\\363)28(w)-370(i)-369(do,)-369(k)28(oni)1(,)-370(b)-27(o)]TJ 0 -13.55 Td[(p)-27(\\363\\271)-1(n)1(o)-334(j)1(u\\273)-334(b)29(y\\252o.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-369(s\\252a\\252a)-368(\\252\\363\\273)-1(k)56(a)-368(i)-368(w\\252a\\261)-1(n)1(ie)-369(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-369(r)1(oz)-1(tr)1(z)-1(ep)28(yw)28(a\\252a,)-368(pacierz)-369(m\\363)28(wi\\241c)-369(p)-27(\\363\\252-)]TJ -27.879 -13.549 Td[(g\\252os)-1(em,)-333(gdy)-333(Macie)-1(j)-332(w)-1(sz)-1(ed\\252)-333(i)-333(jak)56(\\241\\261)-334(o\\261ni)1(e)-1(\\273on\\241)-333(s)-1(zm)-1(at)1(\\246)-334(rzuci\\252)-334(j)1(e)-1(j)-332(p)-28(o)-28(d)-332(nogi.)]TJ 27.879 -13.549 Td[({)-359(Zapaski)-359(gub)1(is)-1(z,)-359(nal)1(az)-1(\\252em)-360(j\\241)-359(p)1(rzy)-360(p)1(rze)-1(\\252azie!)-359({)-360(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-359(cic)27(h)1(o,)-359(ale)-360(tak)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(do)-301(i)-301(tak)-301(sp)-27(o)-56(j)1(rz)-1(a\\252)-301(n)1(a)-301(ni\\241)-301(p)1(rze)-1(n)1(ikliwie,)-301(\\273e)-302(zm)-1(ar)1(t)28(w)-1(i)1(a\\252)-1(a)-301(z)-301(pr)1(z)-1(era\\273e)-1(n)1(ia)-301(i)-301(dop)1(ie)-1(r)1(o)]TJ 0 -13.549 Td[(p)-27(o)-334(c)28(h)28(wili)-333(zac)-1(z\\246)-1(\\252a)-333(s)-1(i\\246)-333(j\\246kliwie)-333(t\\252umac)-1(zy\\242:)]TJ 27.879 -13.55 Td[({)-448(T)84(o)-1(.)1(..)-447(te)-1(n)-447(\\212apa.)1(..)-447(c)-1(o)-448(i)1(no)-447(m)-1(o\\273e)-1(.)1(..)-448(wyw\\252\\363)-28(cz)-1(y)-447(z)-448(c)27(h)1(a\\252up)28(y)84(...)-447(w)27(cz)-1(or)1(a)-56(j)-447(to)-447(m)-1(i)]TJ -27.879 -13.549 Td[(trep)28(y)-333(zani\\363s\\252)-334(d)1(o)-334(b)1(ud)1(y!)-333(\\221cierw)28(a,)-334(n)1(ie)-334(p)1(ies)-1(,)-333(taki)-333(sz)-1(ku)1(dn)29(y)83(..)1(.)]TJ 27.879 -13.549 Td[({)-333(\\212apa?...)-333(cie...)-333(no,)-333(n)1(o...)-333({)-333(s)-1(ze)-1(p)1(ta\\252)-334(u)1(r\\241)-28(gl)1(iwie)-1(,)-333(b)-27(o)-334(n)1(ic)-334(a)-333(ni)1(c)-334(ni)1(e)-334(u)28(wierz)-1(y)1(\\252.)]TJ\nET\nendstream\nendobj\n812 0 obj <<\n/Type /Page\n/Contents 813 0 R\n/Resources 811 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n811 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n816 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(252)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(18.)]TJ\nET\nendstream\nendobj\n815 0 obj <<\n/Type /Page\n/Contents 816 0 R\n/Resources 814 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 801 0 R\n>> endobj\n814 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n819 0 obj <<\n/Length 7316      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(19)]TJ/F17 10.909 Tf 0 -73.325 Td[(W)84(e)-367(T)83(rzy)-366(Kr\\363le,)-366(kt\\363r)1(e)-367(jak)28(o\\261)-367(tego)-366(roku)-366(wyp)1(ada\\252y)-366(w)-367(p)-27(on)1(ie)-1(d)1(z)-1(i)1(a\\252)-1(ek,)-366(j)1(e)-1(sz)-1(cz)-1(e)-366(prze)-1(d)]TJ 0 -13.549 Td[(sk)28(o\\253cz)-1(eniem)-346(n)1(ies)-1(zp)-28(or)1(\\363)27(w,)-345(b)-27(o)-345(s)-1(\\252y)1(c)27(ha\\242)-345(b)28(y\\252o)-345(gran)1(ia)-345(i)-345(pr)1(z)-1(y\\261pi)1(e)-1(wy)-345(w)-345(k)28(o\\261)-1(ciele)-1(,)-344(a)-346(j)1(u\\273)]TJ 0 -13.549 Td[(nar)1(\\363)-28(d)-412(z)-414(w)28(olna)-412(c)-1(i\\241)-27(gn\\241\\252)-413(do)-412(k)55(ar)1(c)-1(zm)27(y)84(,)-413(\\273e)-414(t)1(o)-413(pierwsz)-1(y)-413(r)1(az)-413(p)-28(o)-413(ad)1(w)27(encie)-413(i)-413(Go)-27(dac)27(h)]TJ 0 -13.549 Td[(mia\\252a)-387(b)28(y\\242)-387(m)28(uzyk)56(a,)-387(a)-387(i)-386(s)-1(zyk)28(o)28(w)27(a\\252y)-386(s)-1(i\\246)-387(zm)-1(\\363)28(win)28(y)-386(Ma\\252go\\261ki)-387(K\\252\\246bi)1(anki)-386(z)-388(W)1(ic)27(ki)1(e)-1(m)]TJ 0 -13.55 Td[(So)-27(c)27(h\\241,)-305(kt\\363r)1(e)-1(n)-305(c)27(h)1(o)-28(c)-1(i)1(a)-306(tak)-306(samo)-306(si\\246)-306(pisa\\252)-306(jak)-305(ni)1(e)-1(b)-27(os)-1(zc)-1(zyk)-305(Kub)1(a,)-306(ale)-306(k)1(re)-1(wn)1(iac)-1(t)28(w)28(a)]TJ 0 -13.549 Td[(si\\246)-418(z)-417(nim)-417(wyp)1(ie)-1(r)1(a\\252,)-417(jak)28(o)-417(\\273e)-418(p)1(arob)-417(b)29(y\\252)-417(niep)-27(o)-28(c)-1(zc)-1(i)1(w)-1(y)-416(i)-417(s)-1(i)1(e)-1(ln)1(ie)-417(duf)1(a)-56(j)1(\\241c)-1(y)-416(w)-418(sw)27(o)-55(je)]TJ 0 -13.549 Td[(morgi.)]TJ 27.879 -13.549 Td[(P)28(o)28(wiadal)1(i)-355(te)-1(\\273,)-355(jak)28(o)-355(i)-355(St)1(ac)27(ho)-355(P\\252osz)-1(k)56(a,)-355(ma)-56(j)1(\\241c)-1(y)-355(si\\246)-356(j)1(u\\273)-355(o)-28(d)-355(k)28(opan)1(ia)-355(ku)-355(Uli)1(s)-1(i)]TJ -27.879 -13.549 Td[(so\\252)-1(t)28(y)1(s)-1(\\363)28(wnie,)-401(p)-27(e)-1(wni)1(kiem)-402(d)1(z)-1(i)1(s)-1(ia)-55(j)-401(zapij)1(e)-402(spr)1(a)27(w)28(\\246)-401(i)-401(ws)-1(zys)-1(t)1(k)28(o)-402(ze)-401(s)-1(tar)1(ym)-402(u)1(\\252adzi,)-401(b)-27(o)]TJ 0 -13.549 Td[(kr)1(z)-1(yw)-271(m)28(u)-271(b)28(y\\252)-271(i)-270(c)-1(\\363rk)1(i)-271(o)-28(d)1(m)-1(a)28(wia\\252,)-271(\\273e)-272(S)1(tac)27(h)1(o)-271(b)28(y\\252)-271(s)-1(i)1(e)-1(ln)29(y)-271(z)-1(ab)1(ij)1(ak)55(a,)-270(w)-1(i)1(c)27(her)-271(n)1(ie)-1(p)-27(oskro-)]TJ 0 -13.55 Td[(mion)28(y)-380(i)-381(z)-381(ro)-27(dzic)-1(i)1(e)-1(lami)-381(ci\\246giem)-381(s)-1(i\\246)-381(w)28(adzi\\252,)-381(a)-380(z)-1(a)-381(Ul)1(is)-1(i)1(\\241)-381(c)27(h)1(c)-1(i)1(a\\252)-381(c)-1(a\\252e)-381(cz)-1(tery)-380(m)-1(or)1(gi)]TJ 0 -13.549 Td[(ab)-27(o)-334(d)1(w)27(a)-333(t)28(ysi\\241c)-1(e)-333(s)-1(p)1(\\252)-1(at)28(y)-333(n)1(a)-334(r)1(\\246)-1(k)28(\\246)-334(i)-333(d)1(w)27(a)-333(kr)1(o)27(wie)-334(ogon)29(y)-333(w)-334(do)-27(datku)1(.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-422(te)-1(\\273)-423(dzisia)-56(j)-422(wypr)1(a)27(wia\\252)-423(c)28(hr)1(z)-1(cin)28(y)84(,)-423(jeno)-422(\\273)-1(e)-423(w)-423(c)27(ha\\252u)1(pie,)-423(ale)-423(r\\363\\273ni)-422(z)-1(n)1(a-)]TJ -27.879 -13.549 Td[(jomk)28(o)28(wie)-400(tak)-400(se)-400(rac)27(h)1(o)27(w)28(ali,)-399(\\273e)-401(j)1(ak)-400(si\\246)-400(rozo)-28(c)27(h)1(o)-28(c)-1(i)1(,)-400(to)-399(w)-400(dom)27(u)-399(n)1(ie)-400(w)-1(y)1(trzyma)-400(i)-400(z)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-333(k)28(ompan)1(i\\241)]TJ 27.879 -13.55 Td[(do)-333(k)56(arcz)-1(m)28(y)-333(z)-1(w)28(ali,)-333(i)-333(fu)1(nd)1(o)27(w)28(a\\252)-333(b)-28(\\246dzie.)]TJ 0 -13.549 Td[(Za\\261)-336(pr)1(\\363)-28(cz)-336(t)28(yc)27(h)-335(p)1(rzyn\\246t)-335(b)28(y\\252y)-335(jes)-1(zc)-1(ze)-336(wi\\246ks)-1(ze)-1(,)-335(w)28(a\\273)-1(n)1(iejsz)-1(e)-336(spr)1(a)27(wy)84(,)-335(z)-1(ar\\363)28(wno)]TJ -27.879 -13.549 Td[(ob)-27(c)27(ho)-27(dz\\241c)-1(e)-334(wsz)-1(ystki)1(c)27(h.)]TJ 27.879 -13.549 Td[(Bo)-288(tak)-288(si\\246)-288(ano)-288(sta\\252o,)-288(\\273e)-289(n)1(a)-288(s)-1(u)1(m)-1(i)1(e)-289(o)-28(d)-287(lu)1(dzi)-288(z)-288(dru)1(gic)27(h)-287(ws)-1(i)-287(do)28(wie)-1(d)1(z)-1(i)1(e)-1(li)-287(s)-1(i\\246,)-288(\\273e)]TJ -27.879 -13.549 Td[(dziedzic,)-232(co)-232(i)1(no)-231(m)27(u)-231(b)28(y\\252o)-231(p)-28(ot)1(rz)-1(a)-231(lu)1(dzi)-232(d)1(o)-232(p)-27(or\\246b)28(y)84(,)-232(to)-231(ju)1(\\273)-232(z)-1(go)-27(dzi\\252)-232(i)-231(zadatki)-231(p)-27(o)-28(da)28(w)28(a\\252:)]TJ 0 -13.55 Td[(mia\\252o)-269(i\\261\\242)-269(z)-270(Ru)1(dki)-268(dzies)-1(i\\246ciu,)-268(z)-269(Mo)-28(d)1(\\252)-1(i)1(c)-1(y)-268(pi\\246tnastu)1(,)-269(z)-269(D\\246)-1(b)1(icy)-269(cos)-1(i)1(k)-269(o\\261m)-1(iu)1(,)-269(a)-268(s)-1(ame)-1(j)]TJ 0 -13.549 Td[(rze)-1(p)-27(ec)27(kiej)-244(sz)-1(lac)28(h)28(t)28(y)-244(b)-28(ez)-245(ma\\252a)-245(d)1(w)-1(u)1(dzies)-1(tu)-244(a)-244(z)-245(Lip)1(iec)-245(ani)-244(jeden.)-244(P)1(ra)28(wda)-244(to)-245(j)1(u\\273)-244(b)28(y\\252a)]TJ 0 -13.549 Td[(jasna)-333(i)-333(p)-27(e)-1(wna,)-333(b)-27(o)-333(i)-334(sam)-334(b)-27(oro)28(wy)83(,)-333(k)1(t\\363ren)-333(b)28(y\\252)-333(na)-333(s)-1(u)1(m)-1(i)1(e)-1(,)-333(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(i)1(\\252)-1(.)]TJ 27.879 -13.549 Td[(Niem)-1(a\\252a)-333(z)-334(tego)-334(t)1(urb)1(ac)-1(j)1(a)-334(p)1(ad\\252a)-333(na)-333(bi)1(e)-1(d)1(ot\\246)-1(,)-333(n)1(ie)-1(l)1(e)-1(tk)56(a.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-270(\\273e)-270(b)28(yl)1(i)-270(w)-270(Li)1(p)-28(cac)27(h)-269(b)-27(ogac)-1(ze)-270(c)-1(a\\252\\241)-269(g\\246)-1(b)1(\\241,)-270(b)28(y)1(li)-269(i)-270(p)-27(om)-1(n)1(iejsi,)-270(k)1(t\\363rzy)-270(zar\\363)28(w-)]TJ -27.879 -13.55 Td[(no)-305(o)-306(zarobk)1(i)-306(n)1(ie)-306(s)-1(tal)1(i,)-306(b)29(yli)-305(tak)28(o\\273)-306(jensi,)-306(u)-305(kt\\363r)1(yc)27(h)-305(a\\273)-306(pi)1(s)-1(zc)-1(za\\252o)-306(z)-306(bi)1(e)-1(d)1(y)83(,)-305(ale)-306(s)-1(i\\246)-306(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-343(ni)1(e)-344(przyzna)28(w)27(al)1(i,)-344(b)29(yc)27(h)-343(in)1(o)-344(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lst)28(w)27(a)-343(z)-344(b)-28(ogacz)-1(ami)-343(nie)-344(straci\\242)-344(i)-344(w)-344(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(rz\\241d)-368(z)-1(a)28(w\\273dy)-368(z)-369(ni)1(m)-1(i)-368(sta)28(w)27(a\\242)-369({)-368(ale)-369(i)-368(k)28(omorn)1(ik)28(\\363)28(w)-1(,)-368(i)-368(taki)1(c)27(h,)-368(co)-369(i)1(no)-368(c)27(ha\\252u)1(p)28(y)-368(m)-1(i)1(e)-1(li)1(,)]TJ 0 -13.549 Td[(te\\273)-432(n)1(ie)-432(b)1(rak)28(o)28(w)27(a\\252o:)-430(kt\\363rzy)-431(wyrab)1(iali)-431(u)-430(gos)-1(p)-27(o)-28(d)1(arzy)-431(m)-1(\\252o)-28(c)28(k)56(\\241,)-431(kt\\363rzy)-431(n)1(a)-431(tartaku)]TJ 0 -13.549 Td[(sie)-1(k)1(ie)-1(r)1(\\241,)-361(kt)1(\\363rz)-1(y)-360(za\\261)-1(,)-360(gdzie)-361(si\\246)-361(ino)-360(z)-1(d)1(arzy\\252a)-361(r)1(ob)-28(ota,)-360(a)-361(c)28(h)28(yla)-360(t)28(yla)-360(w)-1(y)1(s)-1(kr)1(z)-1(y)1(bali,)-360(i\\273)]TJ 0 -13.55 Td[(jak)28(o\\261)-437(s)-1(i\\246)-438(t)1(am)-438(z)-438(b)-27(os)-1(k)56(a)-438(p)-27(omo)-28(c\\241)-438(p)1(rz)-1(e\\273ywili,)-437(ale)-438(osta)28(w)27(a\\252o)-437(jes)-1(zc)-1(ze)-438(z)-438(p)1(i\\246)-1(\\242)-437(familii)1(,)]TJ 0 -13.549 Td[(la)-417(k)1(t\\363ryc)28(h)-417(zimo)27(w)28(\\241)-417(p)-27(or\\241)-417(ca\\252kiem)-417(brak)28(o)28(w)28(a\\252o)-417(w)27(e)-417(ws)-1(i)-416(rob)-27(ot)28(y)83(,)-416(c)-1(i)-416(to)-417(w\\252)-1(a\\261ni)1(e)-418(j)1(ak)28(o)]TJ 0 -13.549 Td[(zba)28(wie)-1(n)1(ia)-333(c)-1(ze)-1(k)56(ali)-333(n)1(a)-334(te)-333(p)-28(or)1(\\246)-1(b)28(y)84(.)]TJ 358.232 -29.888 Td[(253)]TJ\nET\nendstream\nendobj\n818 0 obj <<\n/Type /Page\n/Contents 819 0 R\n/Resources 817 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n817 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n823 0 obj <<\n/Length 10244     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(254)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(A)-333(te)-1(r)1(az)-334(c)-1(o)-333(p)-27(o)-28(cz)-1(\\241\\242?)]TJ 0 -13.549 Td[(Zima)-406(b)29(y\\252a)-406(sroga,)-405(m)-1(a\\252o)-405(kt\\363r)1(e)-1(n)-405(mia\\252)-406(j)1(aki)-405(taki)-405(grosz)-406(z)-1(ap)1(a\\261)-1(n)29(y)83(,)-405(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)]TJ -27.879 -13.549 Td[(ju)1(\\273)-358(i)-357(ziem)-1(n)1(iaki)-357(si\\246)-358(k)28(o\\253)1(c)-1(zy\\252y)83(,)-356(bieda)-357(b)28(y\\252a)-357(w)-357(c)27(ha\\252u)1(pie,)-357(a)-357(g\\252\\363)-28(d)-357(j)1(u\\273)-358(z\\246b)-28(ce)-358(sz)-1(cz)-1(erzy\\252)]TJ 0 -13.549 Td[(za)-284(w)28(\\246)-1(g\\252em)-1(,)-283(do)-283(zw)-1(i)1(e)-1(sn)28(y)-283(dalek)28(o,)-283(a)-284(ws)-1(p)-27(omo\\273)-1(enia)-283(znik)56(\\241d,)-283(to)-283(i)-283(nie)-284(d)1(z)-1(i)1(w)27(ota,)-283(\\273)-1(e)-283(c)-1(i\\246\\273)-1(k)1(i)]TJ 0 -13.549 Td[(fr)1(as)-1(u)1(nek)-264(pad)1(\\252)-265(n)1(a)-265(d)1(usz)-1(e.)-264(Zbierali)-264(si\\246)-264(p)-28(o)-264(c)27(h)1(a\\252upac)28(h)-264(,me)-1(d)1(yto)28(w)27(al)1(i,)-264(a\\273)-265(w)-264(k)28(o\\253cu)-264(kup)1(\\241)]TJ 0 -13.55 Td[(ca\\252)-1(\\241)-402(p)-27(os)-1(zli)-402(do)-402(K\\252\\246)-1(b)1(a,)-403(b)29(y)-403(i)1(c)27(h)-402(ten)-403(p)-27(o)28(wie)-1(d)1(\\252)-403(d)1(o)-403(d)1(obro)-27(dzie)-1(j)1(a)-403(n)1(a)-403(p)-27(orad)1(\\246)-1(,)-402(ale)-403(K)1(\\252)-1(\\241b)]TJ 0 -13.549 Td[(si\\246)-457(wym\\363)28(wi\\252)-456(rz)-1(ek)28(omo)-456(z)-1(m\\363)28(w)-1(i)1(nami)-456(c\\363rki,)-456(j)1(e)-1(n)1(s)-1(i)-455(te)-1(\\273)-456(p)-27(o)-28(dob)1(nie)-456(wykr\\246c)-1(i)1(li)-456(si\\246)-457(k)1(ie)-1(j)]TJ 0 -13.549 Td[(pi)1(s)-1(k)28(or)1(z)-1(e,)-326(b)-27(o)-326(s)-1(tali)-325(ino)-326(o)-326(siebie)-326(i)-326(sw)27(o)-55(je)-326(w)-1(y)1(rac)27(h)1(o)27(w)28(ani)1(a)-326(m)-1(i)1(e)-1(li)1(.)-326(Ze)-1(\\271li\\252)-326(si\\246)-327(t)28(y)1(m)-327(sro)-28(d)1(z)-1(e)]TJ 0 -13.549 Td[(Bartek)-252(z)-253(tart)1(aku,)-252(k)1(t\\363re)-1(n)-251(c)27(h)1(o)-28(\\242)-253(rob)-27(ot\\246)-252(m)-1(ia\\252,)-252(za)28(w)-1(\\273dy)-252(z)-252(bi)1(e)-1(d)1(n)28(ym)-253(n)1(aro)-28(d)1(e)-1(m)-252(trzyma\\252,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(bra\\252)-283(d)1(o)-283(si\\246)-283(Fili)1(pa)-283(zz)-1(a)-282(w)27(o)-28(d)1(y)83(,)-282(Stac)28(ha)-283(Byl)1(ic)-1(o)28(w)28(e)-1(go)-283(zi\\246c)-1(i)1(a,)-283(Bartk)56(a)-283(Koz\\252a,)-283(W)84(alk)56(a)]TJ 0 -13.549 Td[(z)-385(krzyw)28(\\241)-385(g\\246)-1(b)1(\\241)-385(i)-385(w)-385(p)1(i\\241c)-1(i)1(u)-385(p)-27(os)-1(zli)-384(do)-385(d)1(obro)-27(dzie)-1(j)1(a)-385(pr)1(os)-1(i\\242,)-385(b)29(y)-385(s)-1(i)1(\\246)-386(wsta)28(w)-1(i)1(\\252)-385(z)-1(a)-385(n)1(imi)]TJ 0 -13.55 Td[(do)-333(d)1(z)-1(iedzica.)]TJ 27.879 -13.549 Td[(D\\252ugo)-306(n)1(ie)-307(b)28(y)1(\\252)-1(o)-306(ic)28(h)-306(wida\\242,)-306(dop)1(ie)-1(r)1(o)-307(p)-27(o)-306(niesz)-1(p)-27(orac)27(h)-305(przylec)-1(i)1(a\\252)-307(Jam)28(br)1(o\\273)-1(y)-306(do)]TJ -27.879 -13.549 Td[(Kob)1(us\\363)27(w)-333(i)-333(p)-28(o)28(wiedzia\\252,)-333(\\273)-1(e)-334(z)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-334(rad)1(z)-1(\\241)-333(i)-333(do)-333(k)56(arcz)-1(m)28(y)-333(prosto)-333(przyj)1(d\\241.)]TJ 27.879 -13.549 Td[(A)-477(t)28(ymcz)-1(ase)-1(m)-477(wie)-1(cz\\363r)-477(s)-1(i)1(\\246)-478(j)1(u\\273)-477(b)28(y\\252)-477(u)1(c)-1(zyni)1(\\252)-1(,)-476(os)-1(tat)1(nie)-477(z)-1(or)1(z)-1(e)-477(z)-1(etli\\252y)-476(s)-1(i\\246)-477(do)]TJ -27.879 -13.549 Td[(cna,)-361(\\273)-1(e)-362(i)1(no)-361(k)55(a)-55(j\\261)-362(n)1(iek)55(a)-55(j)-361(na)-361(z)-1(ac)28(ho)-28(d)1(z)-1(ie)-361(z)-362(t)28(yc)27(h)-361(sz)-1(ary)1(c)27(h)-361(p)-27(opio\\252\\363)28(w)-362(\\273arzy\\252y)-361(s)-1(i\\246)-362(k)1(ie)-1(b)29(y)]TJ 0 -13.55 Td[(g\\252o)28(w)-1(n)1(ie)-396(dogasa)-56(j)1(\\241c)-1(e,)-395(a)-396(\\261)-1(wiat)-395(z)-396(w)27(ol)1(na)-396(otu)1(la\\252)-396(si\\246)-396(w)-396(mo)-28(dr)1(a)28(w)27(\\241)-396(a)-395(lut)1(\\241)-396(p\\252ac)28(h)28(t\\246)-396(no-)]TJ 0 -13.549 Td[(cy)83(.)-422(Ksi\\246\\273)-1(y)1(c)-1(a)-422(jes)-1(zcz)-1(e)-422(nie)-422(b)28(y\\252o,)-422(j)1(e)-1(n)1(o)-423(o)-27(d)-422(s)-1(u)1(c)27(h)28(y)1(c)27(h,)-421(prze)-1(marzni)1(\\246)-1(t)28(yc)28(h)-422(\\261)-1(n)1(ieg\\363)27(w)-422(b)1(i\\252y)]TJ 0 -13.549 Td[(ost)27(y)1(g\\252e)-1(,)-333(lo)-27(do)28(w)27(ate)-333(brzaski,)-333(w)-333(kt\\363ryc)28(h)-333(rze)-1(cz)-334(k)56(a\\273da)-333(widn)1(ia\\252a)-333(jak)28(ob)28(y)-333(w)-333(\\261)-1(miertelne)]TJ 0 -13.549 Td[(gz\\252)-1(o)-444(przy)28(o)-28(d)1(z)-1(ian)1(a)-445(i)-445(zgo\\252a)-445(umar\\252a;)-445(gwiazdy)-444(te)-1(\\273)-445(j)1(\\246)-1(\\252y)-445(si\\246)-445(wys)-1(y)1(p)28(yw)28(a\\242)-446(n)1(a)-445(c)-1(i)1(e)-1(mne)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o,)-350(a)-349(tak)-350(r)1(os)-1(\\252y)-350(i)-349(trz\\246)-1(s\\252y)-350(si\\246)-350(w)-350(on)28(yc)28(h)-349(dalek)28(o\\261)-1(ciac)27(h)1(,)-350(tak)-349(s)-1(i)1(\\246)-351(j)1(arzy\\252y)-350(b)29(ys)-1(tr)1(o,)-350(a\\273)]TJ 0 -13.55 Td[(p)-27(o)-316(\\261)-1(n)1(iegac)27(h)-315(s)-1(z\\252y)-316(skrze)-1(n)1(ia.)-315(Mr\\363z)-316(za\\261)-317(b)1(ra\\252)-316(srogi)-315(i)-316(p)-27(o)-28(dn)1(os)-1(i)1(\\252a)-316(s)-1(i)1(\\246)-317(tak)56(a)-315(s)-1(kr)1(z)-1(yt)28(w)28(a,)-316(a\\273)]TJ 0 -13.549 Td[(w)-334(u)1(s)-1(zac)27(h)-333(d)1(z)-1(w)28(oni)1(\\252o)-334(i)-333(\\273e)-1(b)28(y)-333(n)1(a)-56(j)1(c)-1(ic)28(hsz)-1(y)-333(g\\252os,)-334(a)-333(lec)-1(i)1(a\\252)-334(\\261w)-1(i)1(ate)-1(m)-333(c)-1(a\\252ym.)]TJ 27.879 -13.549 Td[(W)-414(c)27(h)1(a\\252upac)28(h)-414(z)-1(a\\261)-414(ognie)-415(zapal)1(ali)-414(i)-415(spi)1(e)-1(sz)-1(yl)1(i)-415(z)-414(w)-1(i)1(e)-1(cz)-1(or)1(o)27(wymi)-414(obr)1(z)-1(\\241d)1(k)55(ami,)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-365(w)28(o)-28(d\\246)-365(nosili)-364(z)-1(e)-365(sta)27(wu)1(,)-365(j)1(e)-1(sz)-1(cz)-1(e)-365(cz)-1(ase)-1(m)-365(skrzypn)1(\\246)-1(\\252y)-364(w)-1(i)1(e)-1(r)1(z)-1(eje)-365(alb)-27(o)-365(s)-1(i)1(\\246)-366(j)1(akie)]TJ 0 -13.549 Td[(b)28(yd)1(l\\241tk)28(o)-359(ozw)28(a\\252)-1(o,)-358(to)-359(kt)1(os)-1(ik)-358(p)-28(o)-27(d\\241\\273a\\252)-359(s)-1(p)1(ies)-1(zno)-359(sani)1(am)-1(i,)-358(a)-359(lu)1(dzie)-359(w)-359(dy)1(rdy)-358(ganial)1(i)]TJ 0 -13.55 Td[(p)-27(o)-304(ob)-28(ej\\261c)-1(i)1(ac)27(h,)-303(b)-28(o)-304(p)1(arzy\\252o)-304(w)-304(t)28(w)27(arze)-304(jakb)29(y)-304(rozpalon)29(ym)-305(\\273elaz)-1(em)-304(i)-304(dec)27(h)-303(z)-1(ap)1(ie)-1(r)1(a\\252o,)]TJ 0 -13.549 Td[(ale)-334(j)1(u\\273)-333(w)-1(i)1(e)-1(\\261)-334(cic)27(h)1(\\252a)-334(ca\\252kiem)-1(.)]TJ 27.879 -13.549 Td[(Jeno)-384(o)-28(d)-384(k)56(arc)-1(zm)27(y)-384(coraz)-385(ostrze)-1(j)-384(rozlega\\252y)-385(si\\246)-385(m)28(uzyc)27(ki)1(e)-385(g\\252)-1(osy)84(,)-385(b)-27(o)-385(j)1(u\\261c)-1(i)1(,)-385(\\273e)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-433(z)-433(k)56(a\\273)-1(d)1(e)-1(j)-432(c)28(ha\\252u)1(p)28(y)-432(ktosik)-432(s)-1(i\\246)-432(tam)-433(pr)1(z)-1(ebi)1(e)-1(ra\\252)-432(na)-432(p)1(rz)-1(ewiady)84(,)-432(a)-432(insz)-1(e)-432(z)-1(a\\261,)]TJ 0 -13.549 Td[(kt\\363r)1(ym)-326(ni)1(e)-326(b)28(y\\252o)-326(d)1(o)-326(zm)-1(\\363)28(win)-325(n)1(i)-326(d)1(o)-326(spra)28(w,)-325(te)-1(\\273)-326(ci\\241)-28(gn)1(\\246)-1(li)1(,)-326(b)-27(o)-326(i)1(m)-326(gorza\\252)-1(a)-325(pac)28(hn)1(ia\\252a.)]TJ 0 -13.55 Td[(\\233e)-358(za\\261)-358(i)-356(bab)-27(om)-358(cni\\252o)-357(si\\246)-358(osta)28(w)27(a\\242)-357(sam)27(ym,)-357(a)-357(dziew)27(cz)-1(y)1(n)28(y)-357(a\\273)-358(p)1(isz)-1(cz)-1(a\\252y)-357(d)1(o)-357(gz)-1(\\363)28(w)-357(i)]TJ 0 -13.549 Td[(na)-316(m)28(uzyk)28(\\246)-317(n)1(ogam)-1(i)-316(p)1(rze)-1(b)1(iera\\252y)83(,)-316(to)-316(r)1(az)-317(w)-316(raz)-1(,)-315(nim)-316(s)-1(i\\246)-316(jes)-1(zcz)-1(e)-317(d)1(o)-316(c)-1(n)1(a)-316(\\261)-1(cie)-1(mn)1(ia\\252o,)]TJ 0 -13.549 Td[(lec)-1(i)1(a\\252)-1(y)-413(c)28(h)28(y\\252kiem)-414(d)1(o)-413(k)55(ar)1(c)-1(zm)27(y)84(,)-413(rze)-1(k)28(omo)-414(b)29(y)-413(c)27(h\\252op)-27(\\363)28(w)-414(n)1(agna\\242)-414(d)1(o)-414(d)1(om)-1(\\363)28(w,)-413(ale)-414(j)1(u\\273)]TJ 0 -13.549 Td[(osta)27(w)28(a\\252y)83(.)-427(J)1(u\\261c)-1(i,)-427(\\273e)-428(za)-427(o)-56(j)1(c)-1(ami)-427(i)-427(dziec)-1(i)-427(ci\\241)-28(gn)1(\\246)-1(\\252y)-427(co)-428(starsze)-1(,)-427(zw)-1(\\252asz)-1(cza)-428(c)28(h\\252opak)1(i)]TJ 0 -13.549 Td[(zw)27(o\\252yw)28(ali)-364(s)-1(i)1(\\246)-365(z)-365(op)1(\\252)-1(ot)1(k)28(\\363)27(w)-364(gwiz)-1(d)1(aniem)-365(i)-364(sz)-1(l)1(i)-364(kup)1(\\241,)-364(z)-1(alega)-56(j)1(\\241c)-365(k)56(arcz)-1(mo)28(w)27(e)-365(sienie)-364(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(z)-1(b)28(y)84(,)-333(c)27(h)1(o)-28(\\242)-334(mr\\363z)-334(p)1(ra\\273)-1(y)1(\\252)-334(\\273ywym)-334(ogn)1(iem)-1(.)]TJ 27.879 -13.55 Td[(A)-333(w)-334(k)56(arcz)-1(mie)-334(k)1(\\252\\246)-1(b)1(i\\252a)-334(si\\246)-334(j)1(u\\273)-334(n)1(iez)-1(gorsza)-334(g\\246s)-1(t)28(w)28(a.)]TJ 0 -13.549 Td[(T)83(\\246gi)-381(ogi)1(e)-1(\\253)-380(b)1(uzo)27(w)28(a\\252)-381(si\\246)-381(n)1(a)-381(k)28(omini)1(e)-1(,)-380(\\273e)-381(z)-381(p)-28(\\363\\252)-380(izb)28(y)-381(zalew)27(a\\252o)-380(krw)28(a)28(w)27(e)-381(\\261wia-)]TJ -27.879 -13.549 Td[(t\\252o)-382(sz)-1(cz)-1(ap)1(,)-382(k)1(t\\363ryc)28(h)-382(\\233yd)-381(ci\\246)-1(gi)1(e)-1(m)-382(p)1(rz)-1(y)1(k\\252ada\\242)-382(k)56(az)-1(a\\252)-381(dzie)-1(w)28(c)-1(e,)-382(b)-27(o)-382(k)1(to)-382(in)1(o)-382(ws)-1(ze)-1(d)1(\\252,)]TJ 0 -13.549 Td[(otrzep)28(yw)28(a\\252)-391(bu)1(c)-1(isk)56(a)-391(o)-390(trzon,)-390(nagr)1(z)-1(ew)27(a\\252)-391(zgrab)1(ia\\252e)-391(r\\246c)-1(e)-391(i)-390(sz)-1(ed\\252)-391(w)-390(c)-1(i\\273b)-27(\\246)-391(o)-28(dsz)-1(u)1(ki-)]TJ 0 -13.549 Td[(w)28(a\\242)-349(sw)27(o)-55(jak)28(\\363)28(w,)-348(\\273)-1(e)-348(to,)-348(mimo)-349(ogn)1(ia)-348(i)-348(lamp)28(y)-348(n)1(ad)-348(sz)-1(y)1(nkw)28(as)-1(em,)-348(m)-1(r)1(ok)-348(z)-1(al)1(e)-1(ga\\252)-348(k)56(\\241t)28(y)]TJ 0 -13.55 Td[(i)-433(tr)1(ud)1(no)-433(b)29(y\\252o)-433(z)-1(r)1(az)-1(u)-432(roze)-1(zna\\242.)-433(W)-432(jedn)28(y)1(m)-434(k)56(\\241cie)-433(o)-28(de)-433(dr)1(ogi,)-433(n)1(a)-433(k\\252o)-28(d)1(ac)27(h)-432(o)-28(d)-433(k)56(a-)]TJ 0 -13.549 Td[(pu)1(s)-1(t)28(y)84(,)-362(s)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-362(m)28(uzyk)56(an)28(t)28(y)-362(p)-28(ob)1(rz\\246)-1(k)1(uj\\241cy)-362(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)-362(j)1(akb)28(y)-362(o)-28(d)-362(n)1(iec)27(hce)-1(n)1(ia,)-362(b)-27(o)-362(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n822 0 obj <<\n/Type /Page\n/Contents 823 0 R\n/Resources 821 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n821 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n826 0 obj <<\n/Length 9681      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(255)]TJ -358.232 -35.866 Td[(jesz)-1(cz)-1(e)-349(tan)28(y)-349(nie)-349(rozp)-28(o)-27(c)-1(z\\246)-1(\\252y)-349(n)1(a)-350(d)1(obr)1(e)-1(,)-349(t)28(yla)-349(co)-350(t)1(am)-350(jak)56(a\\261)-349(niec)-1(i)1(e)-1(rp)1(liwsz)-1(a)-349(par)1(a)-350(si\\246)]TJ 0 -13.549 Td[(p)-27(okr\\246c)-1(i)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[(Na)-291(izbi)1(e)-292(za\\261)-1(,)-290(p)-28(o)-27(d)-291(\\261c)-1(i)1(anami,)-291(p)1(rzy)-291(sto\\252ac)27(h)-290(kup)1(ili)-290(s)-1(i\\246)-291(k)28(ompan)1(iam)-1(i)-290(lud)1(z)-1(i)1(e)-1(,)-290(ale)]TJ -27.879 -13.549 Td[(ma\\252o)-359(k)1(to)-358(\\261)-1(cisk)55(a\\252)-358(k)1(ie)-1(l)1(is)-1(ze)-1(k)-357(i)-358(pr)1(z)-1(epij)1(a\\252,)-358(a)-358(jeno)-358(r)1(a)-56(jco)28(w)27(al)1(i)-358(rozgl\\241da)-55(j\\241c)-358(s)-1(i\\246)-358(wk)28(o\\252o,)-358(a)]TJ 0 -13.549 Td[(bacz\\241c)-334(na)-333(w)27(c)28(ho)-28(d)1(z)-1(\\241cyc)27(h)1(.)]TJ 27.879 -13.55 Td[(Jeno)-331(przy)-331(s)-1(zynk)1(w)27(asie)-332(b)28(y\\252)-331(wi\\246)-1(k)1(s)-1(zy)-331(re)-1(j)1(w)27(ac)28(h,)-331(b)-27(o)-332(stali)-331(tam)-332(ca\\252)-1(\\241)-331(ku)1(p\\241)-331(go\\261)-1(cie)]TJ -27.879 -13.549 Td[(K\\252\\246b)-28(o)28(wi)-428(i)-428(familian)1(c)-1(i)-428(S)1(o)-28(c)27(h)28(y)84(,)-428(ale)-429(te\\273)-429(j)1(e)-1(sz)-1(cz)-1(e)-428(z)-429(rzadk)56(a)-429(p)1(rze)-1(p)1(ijal)1(i)-428(do)-428(s)-1(i\\246,)-428(a)-428(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(p)-27(oredzali,)-333(\\261)-1(wiad)1(c)-1(zyli)-333(sobie)-333(go)-28(dn)1(o\\261)-1(ci,)-333(jak)-333(to)-333(pr)1(z)-1(y)1(s)-1(ta\\252o)-333(na)-333(z)-1(m\\363)28(winac)28(h.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-255(za\\261)-255(c)-1(z\\246)-1(sto)-255(a)-255(n)1(iez)-1(n)1(ac)-1(znie)-255(n)1(agl\\241dal)1(i)-255(p)-27(o)-28(d)-254(okna,)-254(gdzie)-255(z)-1(a)-254(s)-1(to\\252ami)-255(sie-)]TJ -27.879 -13.549 Td[(dzia\\252o)-241(ki)1(lku)1(nastu)-241(Rze)-1(p)-27(c)-1(zak)28(\\363)28(w,)-241(pr)1(z)-1(y)1(s)-1(zli)-241(j)1(e)-1(sz)-1(cz)-1(e)-241(za)-241(dn)1(ia)-241(i)-240(os)-1(tali)1(.)-241(Nikt)-240(im)-241(ws)-1(tr)1(\\246)-1(t\\363)28(w)]TJ 0 -13.549 Td[(ni)1(e)-341(cz)-1(yn)1(i\\252,)-340(ale)-340(i)-340(n)1(ikto)-340(si\\246)-341(d)1(o)-340(nic)28(h)-340(n)1(ie)-341(kw)28(api)1(\\252,)-340(t)28(yle)-340(c)-1(o)-340(Jam)28(bro\\273y)-340(zaraz)-341(si\\246)-340(z)-341(n)1(imi)]TJ 0 -13.55 Td[(p)-27(okuma\\252)-252(i)-252(s)-1(ielni)1(e)-253(gorza\\252\\246)-253(ci\\241)-28(gn\\241\\252)-252(a)-252(o)-28(cygania\\252,)-252(co)-253(i)1(no)-252(wlaz)-1(\\252o.)-252(A)-252(p)-27(ob)-28(ok)-252(n)1(ic)27(h)-252(sto)-55(ja\\252)]TJ 0 -13.549 Td[(Bartek)-297(z)-296(tartaku)-295(z)-1(e)-297(sw)27(oi)1(m)-1(i)-296(i)-296(w)-297(g\\252o\\261)-297(op)-27(o)28(wiada\\252,)-296(co)-297(im)-296(rze)-1(k\\252)-296(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(,)-297(a)-296(sie)-1(l)1(nie)]TJ 0 -13.549 Td[(p)-27(om)-1(sto)28(w)27(a\\252)-269(na)-270(d)1(z)-1(i)1(e)-1(d)1(z)-1(ica,)-270(w)-269(c)-1(zym)-270(m)27(u)-269(n)1(a)-56(j)1(g\\252)-1(o\\261ni)1(e)-1(j)-269(wt\\363ro)28(w)28(a\\252)-270(W)83(o)-55(jtek)-270(K)1(obu)1(s)-1(,)-269(c)27(h)1(\\252)-1(op)]TJ 0 -13.549 Td[(suc)27(h)29(y)83(,)-367(m)-1(a\\252y)-367(a)-368(tak)-368(zapal)1(c)-1(zywy)83(,)-367(\\273)-1(e)-368(ci\\246)-1(gi)1(e)-1(m)-368(si\\246)-368(p)-28(o)-27(dry)1(w)27(a\\252,)-368(w)28(ali\\252)-367(pi\\246\\261)-1(ciami)-368(w)-368(st\\363\\252)]TJ 0 -13.549 Td[(i)-343(ciepa\\252)-343(si\\246)-343(jak)28(o)-343(ten)-343(p)1(tak,)-343(k)1(t\\363rego)-343(pr)1(z)-1(ez)-1(wisk)28(o)-343(nosi\\252,)-343(z)-343(rozm)27(y)1(s)-1(\\252e)-1(m)-343(za\\261)-343(to)-343(c)-1(zyn)1(i\\252,)]TJ 0 -13.55 Td[(b)-27(o)-328(d)1(om)27(y\\261lali)-327(si\\246,)-327(\\273)-1(e)-328(Rze)-1(p)-27(cz)-1(aki)-327(ci\\241)-28(gn)1(\\241)-328(n)1(a)-328(j)1(utr)1(o)-328(d)1(o)-327(b)-28(or)1(u)-327(do)-327(r\\241b)1(ania,)-327(ale)-327(\\273)-1(ad)1(e)-1(n)-327(z)]TJ 0 -13.549 Td[(ni)1(c)27(h)-333(j)1(akb)28(y)-333(nic)-333(nie)-333(s)-1(\\252ysz)-1(a\\252,)-333(tak)-333(sie)-1(d)1(z)-1(i)1(e)-1(li)-333(sp)-28(ok)28(o)-55(jn)1(ie,)-334(za)-56(j)1(\\246)-1(ci)-333(mi\\246)-1(d)1(z)-1(y)-333(sob\\241.)]TJ 27.879 -13.549 Td[(Nikt)1(o)-357(te\\273)-357(z)-357(gosp)-28(o)-27(darzy)-356(nie)-357(s\\252uc)28(ha\\252)-356(t)27(y)1(c)27(h)-356(wyzw)-1(i)1(s)-1(k)-356(ni)-356(zb)28(ytn)1(io)-356(do)-356(s)-1(erca)-357(n)1(ie)]TJ -27.879 -13.549 Td[(br)1(a\\252,)-392(\\273e)-393(d)1(obr)1(o)-28(dziej)-392(n)1(ie)-392(c)27(hcia\\252)-392(si\\246)-392(w)-1(sta)28(wia\\242)-392(z)-1(a)-392(n)1(imi)-392(do)-391(dzie)-1(d)1(z)-1(i)1(c)-1(a,)-391(a)-392(nap)1(rze)-1(ciw,)]TJ 0 -13.549 Td[(o)-28(d)1(w)-1(r)1(ac)-1(an)1(o)-402(s)-1(i\\246)-402(o)-28(d)-402(n)1(ic)27(h)-402(i)-402(u)1(ni)1(k)55(an)1(o,)-402(c)-1(zym)-402(g\\252)-1(o\\261ni)1(e)-1(j)-402(k)1(rzyc)-1(ze)-1(l)1(i,)-402(w)-402(g\\241s)-1(zc)-1(zu)-402(b)-27(o)27(wiem,)]TJ 0 -13.55 Td[(jak)1(i)-340(roz)-1(p)1(iera\\252)-340(k)55(ar)1(c)-1(zm)-1(\\246,)-340(s)-1(t)1(o)27(w)28(arzys)-1(za\\252)-340(s)-1(i\\246)-340(k)55(a\\273den)-340(do)-340(u)1(p)-28(o)-28(d)1(ob)28(y)-340(i)-340(ku)1(pi\\252,)-340(gdzie)-340(b)28(y\\252o)]TJ 0 -13.549 Td[(dogo)-27(dn)1(ie)-1(j)1(,)-369(n)1(ie)-369(bacz\\241)-1(c)-369(n)1(a)-369(s\\241s)-1(i)1(ad\\363)28(w)-369({)-369(t)28(yl)1(k)28(o)-369(j)1(e)-1(d)1(na)-369(Jagu)1(s)-1(t)28(y)1(nk)56(a)-369(c)28(ho)-28(d)1(z)-1(i\\252a)-368(o)-28(d)-368(kup)29(y)]TJ 0 -13.549 Td[(do)-275(kup)29(y)83(,)-275(p)-28(o)-27(dju)1(dza\\252a,)-276(\\273art)28(y)-275(s)-1(tr)1(oi\\252a,)-276(n)1(o)28(w)-1(i)1(n)28(y)-276(w)-276(u)1(s)-1(zy)-276(l)1(ud)1(z)-1(iom)-276(k)1(\\252)-1(ad)1(\\252a,)-276(p)1(iln)1(ie)-276(jedn)1(ak)]TJ 0 -13.549 Td[(bacz\\241c)-1(,)-333(gdzie)-334(j)1(u\\273)-334(p)-27(ob)1(rz)-1(\\246ku)1(j\\241)-333(\\015ac)28(h)28(y)-333(a)-334(k)1(ie)-1(li)1(s)-1(ze)-1(k)-333(k)28(o\\252em)-334(c)27(h)1(o)-28(dzi.)]TJ 27.879 -13.549 Td[(I)-418(tak)-417(p)-28(o)28(w)28(oli,)-418(z)-418(w)28(olna,)-417(niep)-27(os)-1(tr)1(z)-1(e\\273)-1(enie)-418(w)28(c)-1(i\\241)-27(ga\\252)-418(s)-1(i\\246)-418(n)1(ar\\363)-28(d)-417(do)-418(zaba)28(wy)83(,)-417(b)-28(o)]TJ -27.879 -13.55 Td[(coraz)-296(wi\\246ksz)-1(y)-295(gw)28(ar)-295(nap)-27(e\\252nia\\252)-295(izb)-28(\\246)-295(i)-295(coraz)-296(cz)-1(\\246\\261c)-1(iej)-295(p)-27(o)-28(dzw)28(ania\\252y)-295(ki)1(e)-1(li)1(s)-1(zki,)-295(i)-295(coraz)]TJ 0 -13.549 Td[(g\\246\\261)-1(cie)-1(j)-419(si\\246)-420(robi)1(\\252o,)-420(\\273e)-421(j)1(u\\273)-420(dr)1(z)-1(wi)-419(s)-1(i\\246)-420(p)1(ra)28(w)-1(i)1(e)-420(nie)-420(zam)27(yk)56(a\\252y)83(,)-419(tak)-420(szli)-420(i)-419(s)-1(zli)-420(a\\273)-420(m)28(u-)]TJ 0 -13.549 Td[(zyk)56(anci,)-352(u)1(c)-1(z\\246)-1(sto)28(w)27(an)1(i)-352(pr)1(z)-1(ez)-352(K\\252\\246)-1(b)1(a,)-352(ur)1(z)-1(n)1(\\246)-1(l)1(i)-352(rz\\246)-1(siste)-1(go)-351(m)-1(azura)-351(i)-352(w)-352(pi)1(e)-1(rwsz)-1(\\241)-351(par\\246)]TJ 0 -13.549 Td[(pu)1(\\261)-1(ci\\252)-333(s)-1(i)1(\\246)-334(So)-28(c)28(ha)-333(z)-334(Ma\\252go\\261k)56(\\241,)-334(a)-333(za)-334(n)1(imi)-333(z)-1(a\\261,)-334(k)1(to)-334(i)1(no)-333(m)-1(i)1(a\\252)-334(o)-28(c)28(hot\\246.)]TJ 27.879 -13.549 Td[(Ale)-421(n)1(iew)-1(i)1(e)-1(lu)-420(sz)-1(\\252o)-420(w)-421(tan)28(y)84(,)-420(ogl\\241da)-55(j\\241c)-421(si\\246)-421(n)1(a)-421(p)1(ie)-1(r)1(ws)-1(zyc)27(h)-420(li)1(p)-28(ec)27(ki)1(c)27(h)-420(k)56(a)27(w)28(ale-)]TJ -27.879 -13.55 Td[(r\\363)28(w,)-314(n)1(a)-314(P\\252osz)-1(k)28(\\246)-314(S)1(tac)27(ha,)-313(W)83(ac)28(hn)1(ik)56(a,)-314(w)28(\\363)-56(jt)1(o)27(w)28(e)-1(go)-313(brat)1(a)-314(i)-314(d)1(rugi)1(c)27(h,)-313(kt\\363rzy)-314(zma)27(wial)1(i)]TJ 0 -13.549 Td[(si\\246)-367(p)-28(o)-366(k)56(\\241tac)27(h)-366(z)-367(dzieuc)27(h)1(am)-1(i)1(,)-367(w)28(e)-1(so\\252e)-367(rozm)-1(o)28(wy)-366(w)-1(i)1(e)-1(d)1(li,)-366(a)-367(p)-27(o)-28(dk)1(piw)28(ali)-366(p)-28(\\363\\252g\\252ose)-1(m)-367(z)]TJ 0 -13.549 Td[(rze)-1(p)-27(ec)27(kiej)-333(sz)-1(lac)28(h)28(t)28(y)83(,)-333(kt)1(\\363rym)-334(w)28(ci\\241\\273)-334(baso)28(w)27(a\\252)-333(Jam)27(b)1(ro\\273y)83(.)]TJ 27.879 -13.549 Td[(Na)-322(to)-321(w)-1(\\252a\\261ni)1(e)-323(p)-27(ok)56(az)-1(a\\252)-322(si\\246)-322(Mat)1(e)-1(u)1(s)-1(z,)-322(o)-322(k)1(iju)-321(jesz)-1(cz)-1(e)-322(sz)-1(ed\\252,)-321(b)-28(o)-322(l)1(e)-1(d)1(w)-1(i)1(e)-323(si\\246)-322(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(z)-374(\\252\\363\\273k)56(a)-374(zwl\\363k\\252,)-373(\\273e)-374(m)28(u)-373(s)-1(i)1(\\246)-374(to)-373(cni\\252o)-373(za)-374(l)1(ud\\271mi,)-373(k)56(az)-1(a\\252)-373(se)-374(wnet)-373(narz\\241dzi\\242)-373(gorza\\252)-1(k)1(i)]TJ 0 -13.549 Td[(pr)1(z)-1(egoto)28(w)27(an)1(e)-1(j)-396(z)-397(m)-1(io)-27(dem)-1(,)-396(usiad\\252)-397(z)-397(b)-27(oku)-397(k)28(omin)1(a,)-397(p)-27(opij)1(a\\252)-397(i)-397(rzuca\\252)-397(t)28(ym)-397(s)-1(\\252o)28(w)28(e)-1(m)]TJ 0 -13.55 Td[(w)28(e)-1(so\\252ym)-332(d)1(o)-332(zna)-55(jomk)28(\\363)28(w,)-331(ale)-332(z)-331(nag\\252a)-331(ucic)27(h)1(\\252,)-331(b)-28(o)-331(An)28(tek)-331(stan\\241\\252)-331(w)27(e)-331(dr)1(z)-1(wiac)27(h)1(,)-331(sp)-28(o-)]TJ 0 -13.549 Td[(strze)-1(g\\252)-416(go,)-416(p)-27(o)-28(dn)1(i\\363s\\252)-416(hard)1(o)-416(g\\252o)27(w)28(\\246)-1(,)-415(\\252ypn)1(\\241\\252)-416(\\261)-1(lepi)1(am)-1(i)-416(i)-415(prze)-1(c)28(ho)-28(d)1(z)-1(i)-415(w)-1(p)-27(o)-28(d)1(le,)-416(jakb)29(y)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(o)-56(jstrze)-1(ga)-55(j\\241c.)]TJ 27.879 -13.549 Td[(Mateusz)-334(si\\246)-334(u)1(ni\\363s\\252)-334(i)-333(za)28(w)27(o\\252a\\252:)]TJ 0 -13.549 Td[(Boryn)1(a!)-333(a)-334(c)28(ho)-28(d)1(\\271)-1(cie)-334(n)1(o)-334(d)1(o)-334(mni)1(e)-1(.)]TJ 0 -13.55 Td[({)-307(M)1(as)-1(z)-307(spra)28(w)28(\\246)-1(,)-306(to)-307(pi)1(e)-1(r)1(w)-1(sz)-1(y)-306(pr)1(z)-1(yst\\241)-28(p)-306({)-307(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-307(os)-1(tr)1(o)-307(m)27(y)1(\\261)-1(l\\241c,)-307(\\273e)-307(Mate-)]TJ -27.879 -13.549 Td[(usz)-334(zac)-1(ze)-1(p)1(ia.)-333(,)]TJ\nET\nendstream\nendobj\n825 0 obj <<\n/Type /Page\n/Contents 826 0 R\n/Resources 824 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n824 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n829 0 obj <<\n/Length 9223      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(256)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-397(Przysz)-1(ed\\252b)28(y)1(m)-1(,)-397(j)1(e)-1(n)1(o)-398(si\\246)-398(j)1(e)-1(sz)-1(cz)-1(e)-398(r)1(uc)28(ha\\242)-398(b)-27(e)-1(z)-397(kijaszk)55(a)-397(ni)1(e)-398(m)-1(og\\246)-397({)-398(o)-28(d)1(par)1(\\252)]TJ -27.879 -13.549 Td[(mi\\246)-1(t)1(k)28(o.)]TJ 27.879 -13.549 Td[(An)28(tek)-316(n)1(ie)-316(do)28(wie)-1(r)1(z)-1(a\\252,)-315(z)-1(marsz)-1(cz)-1(y)1(\\252)-316(gro\\271nie)-316(br)1(w)-1(i)-315(i)-316(p)-27(o)-28(d)1(s)-1(ze)-1(d)1(\\252,)-316(ale)-316(na)-315(to)-316(Mate-)]TJ -27.879 -13.549 Td[(usz)-334(c)28(h)28(yci\\252)-334(go)-333(za)-334(r)1(\\246)-1(k)28(\\246)-334(i)-333(zniew)27(ol)1(i\\252,)-333(b)28(y)-333(pr)1(z)-1(ysiad)1(\\252)-334(n)1(a)-334(\\252a)28(wie)-1(.)]TJ 27.879 -13.549 Td[({)-322(S)1(iada)-55(j)-322(p)1(rzy)-322(mnie.)-322(Owst)28(ydzi\\252e\\261)-323(mni)1(e)-323(p)1(rze)-1(d)-321(c)-1(a\\252ym)-322(\\261wiate)-1(m,)-322(p)-27(ob)1(i\\252e)-1(\\261)-322(tak,)]TJ -27.879 -13.55 Td[(ju)1(c)27(h)1(o,)-233(\\273)-1(e)-234(j)1(u\\273)-233(m)-1(i)-233(ksi\\246dza)-233(w)27(o\\252ali,)-233(al)1(e)-234(gniewu)-233(do)-233(cie)-1(b)1(ie)-234(n)1(ie)-234(mam)-234(n)1(ij)1(akiego)-234(i)-233(p)1(ie)-1(r)1(ws)-1(zy)]TJ 0 -13.549 Td[(z)-283(t)28(ym)-282(s)-1(\\252o)28(w)28(e)-1(m)-283(zgo)-28(d)1(y)-282(przyc)28(ho)-28(d)1(z)-1(\\246.)-282(Napij)-282(si\\246)-282(z)-1(e)-283(mn\\241.)-282(Ni)1(kt)-282(m)-1(n)1(ie)-283(j)1(e)-1(sz)-1(cz)-1(e)-282(nie)-282(p)-28(ob)1(i\\252)-282(i)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(la\\252em,)-293(\\273e)-294(tak)1(ie)-1(go)-292(na)-293(\\261wiec)-1(ie)-293(n)1(ie)-293(m)-1(a.)-292(Mo)-28(carz)-293(z)-293(c)-1(i)1(e)-1(bi)1(e)-293(pra)28(wdziwy)83(,)-292(\\273)-1(eb)28(y)-292(takim)]TJ 0 -13.549 Td[(c)27(h)1(\\252op)-28(em)-334(j)1(ak)-333(ja)-333(rzuc)-1(i)1(\\242)-334(kiej)-333(snop)-27(e)-1(m,)-333(no,)-333(n)1(o...)]TJ 27.879 -13.549 Td[({)-316(B)-1(o\\261)-316(m)-1(i)-316(na)-316(rob)-27(o)-28(cie)-317(p)1(rzypi)1(e)-1(k)56(a\\252)-317(ci\\246gie)-1(m,)-316(a)-316(p)-28(otem)-317(i)-316(sz)-1(cz)-1(ek)56(a\\252)-317(p)1(as)-1(ku)1(dn)1(ie)-1(,)-316(to)]TJ -27.879 -13.549 Td[(mi\\246)-334(rozebra\\252o,)-333(\\273e)-1(m.)-333(ju)1(\\273)-334(i)-333(nie)-333(bacz)-1(y\\252,)-333(co)-334(r)1(obi\\246.)]TJ 27.879 -13.55 Td[({)-320(Tw)27(o)-55(ja)-320(p)1(ra)28(w)-1(d)1(a,)-320(t)28(w)27(o)-55(ja,)-319(s)-1(am)-320(to)-320(przyt)28(wierdzam)-320(i)-320(nie)-320(s)-1(t)1(rac)27(h)28(u)1(,)-320(a)-320(p)-27(o)-320(dobr)1(o-)]TJ -27.879 -13.549 Td[(ci...)-364(Ale\\261)-365(m)-1(n)1(ie)-365(pr)1(z)-1(yr)1(yc)27(h)28(t)1(o)27(w)28(a\\252,)-365(n)1(o,)-365(\\273yw)28(\\241)-365(kr)1(e)-1(w)-365(o)-28(d)1(da)28(w)28(a\\252e)-1(m,)-365(ziob)1(ra)-365(mi)-364(p)-28(op)-27(\\246)-1(k)56(a\\252y)84(,)]TJ 0 -13.549 Td[(do)-429(ciebie)-429(pij)1(\\246)-1(,)-429(An)28(t)1(e)-1(k,)-429(co)-429(tam)-1(,)-429(p)-27(on)1(ie)-1(c)28(ha)-55(j)-429(z)-1(\\252o\\261c)-1(i)1(,)-429(ja)-429(c)-1(i)-429(j)1(u\\273)-429(nie)-429(pami\\246tam)-1(,)-429(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(mnie)-333(jes)-1(zc)-1(ze)-334(pl)1(e)-1(cy)-333(b)-28(ol\\241.)1(..)-333(ale\\261)-334(t)28(y)-333(c)27(h)28(yb)1(a)-334(k)1(rze)-1(p)-27(c)-1(i)1(e)-1(j)1(s)-1(zy)-334(n)1(i\\271li)-333(W)83(a)28(wrze)-1(k)-333(z)-334(W)84(oli?..)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(zbi\\252em)-334(go)-333(to)-333(na)-333(o)-28(dp)1(u\\261c)-1(ie)-333(w)27(e)-334(\\273ni)1(w)27(a,)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(i\\246)-333(p)-28(on)1(o)-334(leku)1(je...)]TJ 0 -13.55 Td[({)-356(W)84(a)27(wrzona!)-355(P)28(o)28(w)-1(i)1(adali)-356(o)-356(t)28(y)1(m)-1(,)-356(al)1(e)-1(m)-356(wie)-1(r)1(z)-1(y\\242)-356(ni)1(e)-357(wierzy\\252.)-356(\\233ydzie,)-356(har)1(aku)]TJ -27.879 -13.549 Td[(z)-334(es)-1(encj\\241,)-333(a)-333(w)-334(ten)-333(mig,)-333(b)-28(o)-333(p)1(rz)-1(etr\\241c\\246!)-334({)-333(kr)1(z)-1(yk)1(n\\241\\252.)]TJ 27.879 -13.549 Td[({)-333(Ale)-334(co\\261)-334(p)28(ysk)28(o)28(w)27(a\\252)-333(pr)1(z)-1(ed)-333(c)27(h\\252op)1(am)-1(i)1(,)-333(to)-334(n)1(iepra)28(wda?{)-333(p)28(yta\\252)-333(c)-1(i)1(c)27(ho)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-394(Nie)-1(p)1(ra)28(wda,)-394(pr)1(z)-1(ez)-395(z\\252o\\261)-1(\\242)-395(i)1(no)-394(gada\\252e)-1(m,)-394(tak)-394(so)-1(b)1(ie:..)-394(ni)1(e)-1(,)-394(gd)1(z)-1(ieb)28(y)-394(tam)-395(za\\261)]TJ -27.879 -13.549 Td[({)-468(wyp)1(ie)-1(r)1(a\\252)-468(s)-1(i)1(\\246)-468(prze)-1(gl)1(\\241da)-56(j)1(\\241c)-468(p)-28(o)-27(d)-468(\\261wiat\\252o)-468(\\015)1(as)-1(zk)28(\\246)-1(,)-467(b)28(y)-468(m)28(u)-468(p)1(ra)28(wdy)-467(z)-468(o)-28(c)-1(z\\363)28(w)-468(nie)]TJ 0 -13.55 Td[(wycz)-1(yta\\252.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-492(raz)-493(i)-492(d)1(rugi)1(,)-493(p)-27(otem)-493(An)28(tek)-492(p)-28(osta)28(wi\\252)-493(k)28(ol)1(e)-1(j)1(k)28(\\246)-493(i)-492(z)-1(n)1(o)27(wu)-492(p)1(rze)-1(p)1(ili,)-492(i)]TJ -27.879 -13.549 Td[(ju)1(\\273)-436(t)1(ak)-435(s)-1(i)1(e)-1(d)1(z)-1(ieli)-435(wp)-27(o)-28(dl)1(e)-436(sie)-1(b)1(ie,)-435(p)-27(obratan)1(i)-435(zgo\\252)-1(a)-435(i)-434(w)-436(t)1(akim)-435(przyj)1(ac)-1(ielst)28(w)-1(i)1(e)-1(,)-435(a\\273)]TJ 0 -13.549 Td[(si\\246)-369(na)-368(k)55(ar)1(c)-1(zm)-1(i)1(e)-369(dziw)27(o)28(w)28(ano)-368(te)-1(m)28(u.)-368(Mateusz)-369(z)-1(a\\261,)-369(\\273e)-369(s)-1(ob)1(ie)-369(b)28(y\\252)-368(p)-28(o)-27(dpi)1(\\252)-369(ni)1(e)-1(zgorze)-1(j)1(,)]TJ 0 -13.549 Td[(p)-27(okrzykiw)28(a\\252)-477(n)1(a)-477(m)28(uzyk)28(\\246,)-477(b)29(y)-477(r)1(a\\271)-1(n)1(iej)-476(gra\\252a,)-476(przytu)1(p)28(yw)28(a\\252)-1(,)-476(\\261m)-1(i)1(a\\252)-477(si\\246)-477(w)-477(g\\252os)-477(d)1(o)]TJ 0 -13.55 Td[(c)27(h)1(\\252opak)28(\\363)28(w,)-333(a\\273)-334(pr)1(z)-1(ycic)27(h)1(n\\241\\252)-333(i)-333(j\\241\\252)-333(An)28(tk)28(o)28(wi)-334(d)1(o)-333(uc)27(h)1(a)-334(p)-27(o)28(wiada\\242.)]TJ 27.879 -13.549 Td[({)-278(Ju)1(\\261)-1(ci)-278(i)-277(to)-278(p)1(ra)28(wda,)-277(\\273)-1(e)-278(br)1(a\\242)-278(j\\241)-278(c)28(hcia\\252e)-1(m)-278(p)1(rze)-1(z)-278(mo)-28(c)-1(,)-277(ale)-278(mnie)-278(tak)-277(pazur)1(am)-1(i)]TJ -27.879 -13.549 Td[(p)-27(obron)1(o)28(w)27(a\\252a,)-234(jakb)28(y)-234(mnie)-235(kto)-234(p)28(yskiem)-236(p)-27(o)-235(cierni)1(ac)27(h)-234(przew)-1(l)1(\\363k\\252.)-235(T)28(y\\261)-235(jej)-235(b)29(y\\252)-235(milsz)-1(y)84(,)]TJ 0 -13.549 Td[(wiem)-317(o)-316(t)28(y)1(m)-317(d)1(obr)1(z)-1(e,)-316(ni)1(e)-317(wyp)1(iera)-56(j)-315(si\\246)-1(,)-315(t)28(y)83(,)-316(i)-315(b)-28(ez)-316(to)-316(na)-315(m)-1(n)1(ie)-316(nie)-316(c)27(h)1(c)-1(ia\\252a)-316(p)1(atrze)-1(\\242!..)1(.)]TJ 0 -13.549 Td[(T)83(ru)1(dn)1(o)-362(w)28(o\\252u)-361(w)27(o)-28(d)1(z)-1(i)1(\\242)-1(,)-361(kiej)-361(ni)1(e)-362(c)27(hce)-362(sam)-362(c)27(h)1(o)-28(dzi\\242;)-362(zaz)-1(d)1(ro\\261\\242)-362(mnie)-362(k)56(\\241sa\\252a)-1(,)-361(\\273e)-362(i)-361(nie)]TJ 0 -13.55 Td[(wyp)-27(o)27(wiedzie\\242)-1(,)-386(h)1(e)-1(j)1(!)-386(Dziew)-1(k)56(a)-386(r\\363)28(wna)-386(cud)1(u,)-386(\\273e)-386(i)-386(nie)-386(nal)1(e)-1(\\271\\242)-387(\\261licz)-1(n)1(ie)-1(j)1(s)-1(zej,)-386(a)-386(p)-27(os)-1(z\\252a)]TJ 0 -13.549 Td[(za)-334(starego)-334(n)1(a)-333(t)27(w)28(o)-56(j)1(\\241)-334(k)1(rzywd\\246,)-334(t)1(e)-1(go)-333(to)-333(ju\\273)-333(w)-1(y)1(roz)-1(u)1(mie)-1(\\242)-333(nie)-334(mog\\246...)]TJ 27.879 -13.549 Td[({)-378(Na)-378(mo)-56(j)1(\\241)-378(krzywd\\246)-378(i)-378(n)1(a)-378(mo)-56(je)-378(zatrace)-1(n)1(ie)-1(!)-377({)-378(j\\246kn\\241\\252)-378(cic)27(h)1(o)-378(i)-378(a\\273)-378(si\\246)-379(ze)-1(r)1(w)27(a\\252,)]TJ -27.879 -13.549 Td[(tak)-262(ogn)1(ie)-263(w)-262(n)1(im)-263(zagra\\252y)-262(n)1(a)-262(ws)-1(p)-27(om)-1(n)1(ienie;)-262(\\273e)-263(in)1(o)-262(z)-1(ak)1(l\\241\\252)-262(i)-262(c)-1(osik)-262(mru)1(c)-1(za\\252)-262(do)-262(sie)-1(b)1(ie.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(j,)-333(lu)1(dzie)-334(an)1(o)-334(p)-27(os\\252)-1(y)1(s)-1(z\\241)-334(i)-333(r)1(oz)-1(n)1(ie)-1(\\261\\242)-334(goto)28(wi.)]TJ 0 -13.549 Td[({)-333(B)-1(om)-333(to)-334(co)-333(rze)-1(k\\252?)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(i)1(nom)-334(j)1(a)-333(nie)-334(d)1(os)-1(\\252ysza\\252)-1(,)-333(al)1(e)-334(m)-1(ogl)1(i)-333(dru)1(dzy)83(.)]TJ 0 -13.549 Td[({)-306(B)-1(o)-306(j)1(u\\273)-307(mi)-306(\\261)-1(cierp)1(ie)-1(\\242)-306(trud)1(no,)-306(tak)-306(mi\\246)-307(t)1(u)-306(w)-307(p)1(ie)-1(r)1(s)-1(i)1(ac)27(h)-306(rozpi)1(e)-1(ra,)-306(\\273e)-307(sam)-1(o)-306(si\\246)]TJ -27.879 -13.549 Td[(rwie)-333(z)-1(e)-334(mni)1(e)-1(,)-333(sam)-1(o..)1(.)]TJ 27.879 -13.549 Td[({)-330(M\\363)28(wi\\246)-331(ci,)-330(nie)-330(da)-55(j)-330(s)-1(i)1(\\246)-1(,)-330(p)-27(\\363ki)-330(c)-1(zas)-331({)-330(rad)1(z)-1(i\\252)-330(c)27(h)29(ytrze)-1(,)-330(p)-27(o)-28(ci\\241)-28(ga)-55(j\\241c)-331(go)-330(z)-331(w)28(olna)]TJ -27.879 -13.549 Td[(za)-334(j)1(\\246)-1(zyk.)]TJ 27.879 -13.55 Td[({)-228(Mog\\246)-229(to,)-228(kiej)-228(k)28(o)-28(c)27(h)1(anie)-228(gors)-1(ze)-229(c)27(h)1(orob)28(y)84(,)-228(ogniem)-229(p)-27(o)-229(k)28(o\\261c)-1(i)1(ac)27(h)-228(c)27(h)1(o)-28(dzi,)-228(wrz\\241t-)]TJ -27.879 -13.549 Td[(kiem)-297(w)-297(s)-1(ercu)-297(b)-27(e)-1(\\252k)28(o)-28(cz)-1(e,)-297(a)-297(tak)56(\\241)-297(t\\246s)-1(k)1(no\\261c)-1(i\\241)-297(d)1(usz)-1(\\246)-297(pr)1(z)-1(ejm)28(uj)1(e)-1(,)-297(\\273e)-297(ni)-297(j)1(e)-1(\\261\\242)-1(,)-296(ni)-297(spa\\242,)-297(n)1(i)]TJ\nET\nendstream\nendobj\n828 0 obj <<\n/Type /Page\n/Contents 829 0 R\n/Resources 827 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n827 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n832 0 obj <<\n/Length 9036      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(257)]TJ -358.232 -35.866 Td[(rob)1(i\\242)-334(n)1(ic)-1(,)-333(j)1(e)-1(n)1(o)-334(b)29(y)-334(cz\\252)-1(o)28(wiek)-333(\\252b)-28(em)-334(t\\252u)1(k\\252)-334(o)-333(\\261)-1(cian)1(\\246)-334(alb)-27(o)-334(i)-333(zgo\\252a)-334(\\273ycia)-333(s)-1(i\\246)-333(p)-28(ozba)28(wi\\252!)]TJ 27.879 -13.549 Td[({)-347(Ab)-28(o)-347(to)-347(n)1(ie)-348(wiem!)-347(M\\363)-56(j)-346(Je)-1(zus,)-347(ab)-27(om)-348(to)-347(sam)-348(za)-348(J)1(agn\\241)-347(nie)-347(lata\\252!)-347(Ale)-347(jes)-1(t)]TJ -27.879 -13.549 Td[(t)28(ylk)28(o)-409(j)1(e)-1(d)1(na)-409(r)1(ada)-409(n)1(a)-409(k)28(o)-28(c)27(h)1(anie:)-409(o\\273e)-1(n)1(i\\242)-409(s)-1(i\\246,)-409(a)-409(j)1(akb)28(y)-408(r\\246k)55(\\241)-409(o)-27(dj\\241\\252.)-408(Znalaz\\252ab)28(y)-409(si\\246)-409(i)]TJ 0 -13.549 Td[(dr)1(uga:)-452(kiej)-453(o\\273enkiem)-453(ni)1(e)-454(mo\\273na,)-452(dosta\\242)-453(k)28(obiet\\246)-1(,)-452(a)-453(wnet)-453(smak)-453(d)1(o)-453(ni)1(e)-1(j)-452(pr)1(z)-1(ej-)]TJ 0 -13.549 Td[(dzie)-310(i)-310(k)28(o)-27(c)27(han)1(ie)-310(s)-1(i)1(\\246)-311(sk)28(o\\253czy!)-310(P)1(ra)28(wd\\246)-310(c)-1(i)-309(m)-1(\\363)28(wi\\246,)-310(p)1(rze)-1(cie)-1(\\273em)-311(n)1(iez)-1(gor)1(s)-1(zy)-310(p)1(rakt)28(yk!)-309({)]TJ 0 -13.55 Td[(do)28(w)28(o)-28(dzi\\252)-333(c)27(he\\252pl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(ak)-333(i)-333(p)-28(otem)-334(n)1(ie)-334(pr)1(z)-1(ejd)1(z)-1(i)1(e)-1(?)-333({)-334(r)1(z)-1(ek\\252)-334(sm)27(u)1(tni)1(e)-1(.)]TJ 0 -13.549 Td[({)-469(Ju\\261c)-1(i)1(,)-470(k)1(t\\363ren)-469(z)-1(za)-470(p)1(\\252ota)-470(p)-27(ost\\246)-1(k)1(uje,)-469(z)-1(a)-469(w)28(\\246)-1(g\\252ami)-470(si\\246)-470(czai,)-469(a)-470(ki)1(e)-1(j)-469(k)1(ie)-1(c)28(k)55(a)]TJ -27.879 -13.549 Td[(zac)27(hr)1(z)-1(\\246\\261)-1(ci,)-305(dr)1(yga)-56(j)1(\\241)-306(m)28(u)-305(kulasy)-305({)-306(tak)1(ie)-1(m)28(u)-305(ryc)28(h\\252o)-305(s)-1(i\\246)-306(n)1(ie)-306(p)1(rz)-1(emie)-1(n)1(i,)-305(ale)-306(to)-305(c)-1(i)1(o\\252)-1(ak)1(,)]TJ 0 -13.549 Td[(ni)1(e)-334(c)27(h)1(\\252op,)-333(z)-1(a)-333(taki)1(e)-1(go)-333(nie)-333(da\\252b)28(ym)-333(i)-333(te)-1(go)-333(grosz)-1(a)-333({)-333(rzuci\\252)-334(p)-27(ogard)1(liwie.)]TJ 27.879 -13.549 Td[({)-458(Cz)-1(y)1(s)-1(t\\241)-458(p)1(ra)28(wd\\246)-458(rze)-1(k)1(\\252)-1(e\\261,)-458(ale)-458(widzi)-458(mi)-458(si\\246)-1(,)-457(\\273)-1(e)-458(s\\241)-458(i)-458(taki)1(e)-459(c)28(h\\252op)28(y)84(,)-458(s\\241...)-458({)]TJ -27.879 -13.55 Td[(zam)-1(edyt)1(o)27(w)28(a\\252)-334(si\\246.)]TJ 27.879 -13.549 Td[({)-355(P)1(rze)-1(p)1(ij)-355(n)1(o)-355(d)1(o)-355(m)-1(n)1(ie,)-355(do)-354(c)-1(n)1(a)-355(mi)-355(zas)-1(c)27(h)1(\\252o)-355(w)-355(gard)1(z)-1(ieli!)-354(Psiac)27(h)1(ma\\242)-356(sobacz)-1(a)]TJ -27.879 -13.549 Td[(z)-343(b)1(abami,)-342(n)1(iekt\\363ra)-342(c)27(h)29(uc)27(h)1(ro)-342(taki)1(e)-1(,)-342(co)-342(kieb)28(y)-342(d)1(m)27(uc)28(hn)1(\\241\\252,)-342(nakr)1(y\\252ab)28(y)-342(si\\246)-343(n)1(ogam)-1(i)1(,)-342(a)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)-339(i)-339(na)-55(jwi\\246ksz)-1(ego)-340(mo)-28(carza)-340(w)28(o)-28(d)1(z)-1(i)-339(kieb)28(y)-339(to)-339(c)-1(i)1(e)-1(l\\246)-339(na)-339(p)-27(os)-1(tron)1(e)-1(czku,)-339(mo)-28(cy)-340(p)-27(o-)]TJ 0 -13.549 Td[(zba)28(wi,)-327(r)1(oz)-1(u)1(m)27(u)-326(p)-27(oz)-1(b)1(a)27(wi)-326(i)-326(jes)-1(zc)-1(ze)-327(na)-326(p)-28(o\\261m)-1(i)1(e)-1(wisk)28(o)-327(\\261wiatu)-326(p)-28(o)-27(da!)-326(Diabl)1(e)-327(nasie)-1(n)1(ie,)]TJ 0 -13.55 Td[(\\261c)-1(ierw)28(o,)-333(m)-1(\\363)28(wi\\246)-334(ci,)-333(pi)1(j)-333(do)-333(m)-1(n)1(ie!.)-333(.)]TJ 27.879 -13.549 Td[({)-333(W)-333(t)27(w)28(o)-56(j)1(e)-334(r\\246ce)-1(,)-333(br)1(ac)-1(ie,)-333(w)-334(t)28(w)28(o)-56(j)1(e)-1(!)]TJ 0 -13.549 Td[({)-368(B\\363g)-368(z)-1(ap)1(\\252a\\242)-1(,)-368(m\\363)28(wi\\246)-369(ci,)-368(p)1(lu\\253)-367(na)-368(t)1(o)-368(diab)1(le)-369(n)1(as)-1(i)1(e)-1(n)1(ie)-1(,)-367(przec)-1(ie\\273)-369(r)1(oz)-1(u)1(m)-369(sw)28(\\363)-56(j)]TJ -27.879 -13.549 Td[(mas)-1(z...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-231(raz)-232(i)-231(d)1(rugi)-231(a)-231(p)-28(ogad)1(yw)28(ali,)-231(An)28(tek)-231(ju)1(\\273)-232(b)28(y\\252)-231(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-232(n)1(apit)28(y)84(,)-231(a)-232(\\273e)-232(n)1(igdy)]TJ -27.879 -13.55 Td[(ni)1(e)-294(mia\\252)-293(pr)1(z)-1(ed)-293(kim)-293(si\\246)-294(wy\\273ali\\242,)-293(to)-293(teraz)-294(b)1(ra\\252a)-293(go)-293(s)-1(zalon)1(a)-293(c)27(h\\246\\242)-294(d)1(o)-293(w)-1(y)1(w)-1(n)1(\\246)-1(t)1(rz)-1(eni)1(a,)]TJ 0 -13.549 Td[(\\273e)-480(ledwie)-479(si\\246)-479(p)-28(o)28(ws)-1(tr)1(z)-1(y)1(m)-1(a\\252,)-479(t)28(y)1(la)-479(c)-1(o)-478(tam)-479(rz)-1(u)1(c)-1(i)1(\\252)-479(c)-1(zas)-1(ami)-479(j)1(akie)-479(w)27(a\\273ne)-479(s\\252o)27(w)28(o,)-479(z)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(go)-254(Mateusz)-255(i)-255(tak)-254(ws)-1(zystk)28(o)-255(miark)28(o)28(w)28(a\\252,)-255(j)1(e)-1(n)1(o)-255(n)1(ie)-255(da)28(w)28(a\\252)-255(tego)-255(p)-27(oz)-1(n)1(a\\242)-255(p)-28(o)-254(s)-1(ob)1(ie.)]TJ 27.879 -13.549 Td[(W)-298(k)56(arc)-1(zmie)-299(za\\261)-299(z)-1(ab)1(a)27(w)28(a)-298(ju\\273)-298(s)-1(z\\252a)-299(rzete)-1(ln)1(a,)-298(m)27(u)1(z)-1(yk)56(a)-298(rzn\\246\\252)-1(a)-298(co)-299(si\\252)-299(i)-298(tan)28(y)-298(sz)-1(\\252y)]TJ -27.879 -13.549 Td[(za)-452(tan)1(am)-1(i,)-451(pi)1(to)-452(j)1(u\\273)-452(w)28(e)-452(w)-1(szys)-1(tk)1(ic)27(h)-451(k)56(\\241tac)27(h)1(,)-452(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(ie)-452(j)1(u\\273)-452(p)1(rzyc)27(h)1(o)-28(dzi\\252o)-452(d)1(o)]TJ 0 -13.55 Td[(sp)-28(or)1(\\363)27(w,)-444(a)-444(w)-1(sz)-1(\\246dy)-444(gad)1(ano)-444(tak)-444(g\\252o\\261)-1(n)1(o,)-444(\\273)-1(e)-445(wrza)28(w)27(a)-444(pr)1(z)-1(ep)-28(e\\252ni)1(a\\252)-1(a)-444(izb)-28(\\246,)-444(a)-444(tup)-27(ot)28(y)]TJ 0 -13.549 Td[(tan)1(e)-1(cz)-1(n)1(ik)28(\\363)28(w)-464(rozlega\\252)-1(y)-463(si\\246)-464(ki)1(e)-1(b)28(y)-463(b)1(ic)-1(i)1(e)-464(c)-1(ep)-27(\\363)27(w.)-463(K\\252\\246b)-28(o)28(w)28(a)-464(k)28(ompan)1(ia)-464(p)1(rze)-1(to)-27(c)-1(zy\\252a)]TJ 0 -13.549 Td[(si\\246)-422(d)1(o)-421(alki)1(e)-1(r)1(z)-1(a,)-421(sk)56(\\241d)-421(te\\273)-421(niez)-1(gor)1(s)-1(zy)-421(wrzas)-1(k)-420(do)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(,)-420(jeno)-421(S)1(o)-28(c)27(h)1(a)-421(i)-421(M)1(a\\252go\\261)-1(k)56(a)]TJ 0 -13.549 Td[(ta\\253)1(c)-1(o)28(w)27(al)1(i)-252(z)-1(ap)1(am)-1(i)1(\\246)-1(tale)-252(ab)-28(o)-252(u)1(j\\241)28(ws)-1(zy)-252(s)-1(i)1(\\246)-253(wp)-28(\\363\\252)-252(n)1(a)-253(mr\\363z)-252(biegli)-252(n)1(a)-253(p)-27(o)28(wie)-1(tr)1(z)-1(e.)-252(Bartek)]TJ 0 -13.549 Td[(z)-386(tartak)1(u)-386(ze)-386(s)-1(w)28(oimi)-386(w)28(ci\\241\\273)-386(s)-1(tal)1(i)-386(n)1(a)-386(jedn)29(ym)-386(m)-1(i)1(e)-1(j)1(s)-1(cu,)-385(pil)1(i)-386(j)1(u\\273)-386(z)-386(dr)1(ugiej)-385(\\015ac)27(h)29(y)83(,)-385(a)]TJ 0 -13.55 Td[(W)84(o)-56(jt)1(e)-1(k)-333(Kob)1(us)-334(j)1(u\\273)-334(wp)1(ros)-1(t)-333(wykr)1(z)-1(y)1(kiw)28(a\\252)-334(ku)-333(r)1(z)-1(ep)-28(ec)27(k)1(im)-334(lu)1(dziom:)]TJ 27.879 -13.549 Td[({)-333(\\221lac)28(h)28(ta,)-333(\\261)-1(cierwy)83(,)-333(w)28(orek)-333(i)-334(p)1(\\252ac)27(h)28(ta!)-333({)-333(\\273e)-334(to)-333(z)-1(a)-333(s)-1(zlac)27(h)29(t\\246)-334(s)-1(i)1(\\246)-334(u)28(w)28(a\\273)-1(ali)1(.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ice)-1(,)-333(p)-27(\\363\\252)-334(wsi)-333(jedn)1(\\241)-334(kr)1(o)28(w)27(\\246)-334(d)1(oi!)-333({)-333(dorzuci\\252)-333(z)-1(j)1(adliwie)-333(dru)1(gi.)]TJ 0 -13.549 Td[({)-333(Ko\\252tun)1(iarze)-1(,)-333(p)1(rze)-1(z)-334(k)28(on)1(i)-333(s)-1(i\\246)-333(ob)28(yw)28(a)-56(j)1(\\241,)-334(b)-27(o)-333(ic)27(h)-333(same)-334(ws)-1(zy)-333(nosz)-1(\\241.)]TJ 0 -13.549 Td[({)-333(\\233ydoskie)-334(p)1(arob)28(y)1(!)]TJ 0 -13.549 Td[({)-333(Dw)27(or)1(s)-1(ki)1(e)-334(p)-27(om)-1(iet\\252a,)-333(do)-333(ps\\363)28(w)-334(si\\246)-334(im)-333(go)-28(dzi\\242,)-333(kie)-1(j)-332(taki)-333(dob)1(ry)-333(wiatr)-333(cz)-1(u)1(j\\241!)]TJ 0 -13.55 Td[({)-333(P)28(o)-28(cz)-1(u)1(\\252y)-334(t)1(e)-1(\\273)-334(w)28(e)-334(dw)28(orze)-334(sw)27(o)-55(je)-334(i)-333(ci\\241)-28(gn)1(\\241.)]TJ 0 -13.549 Td[({)-333(B)-1(\\246d\\241)-333(tu)-333(lu)1(dziom)-334(o)-27(dbi)1(e)-1(r)1(a\\242)-334(rob)-27(ot\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Wycz)-1(es)-1(ze)-1(m)28(y)-333(w)27(ama)-333(k)28(o\\252)-1(t)1(un)28(y)84(,)-333(\\273)-1(e)-334(b)-27(ez)-334(\\252b)-28(\\363)28(w)-333(p)-28(ou)1(c)-1(iek)56(ac)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[({)-352(W)1(yc)-1(i)1(e)-1(r)1(uc)27(h)29(y)83(,)-351(obie\\273)-1(y)1(\\261)-1(wiat)28(y)84(,)-352(b)1(rak\\252o)-351(u)-352(\\233y)1(d\\363)28(w)-352(pal)1(e)-1(n)1(ia)-352(w)-351(piec)-1(ac)28(h,)-351(to)-352(p)1(rzy-)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-1(y)1(!)]TJ 27.879 -13.55 Td[(Dogad)1(yw)27(al)1(i)-295(mo)-28(cno,)-294(a)-294(jaki)-294(tak)1(i)-295(p)1(i\\246\\261)-1(ci\\241)-294(w)-1(y)1(gra\\273)-1(a\\252)-294(i)-294(dar)1(\\252)-295(si\\246)-295(do)-294(n)1(ic)27(h)1(,)-295(a)-294(coraz)]TJ -27.879 -13.549 Td[(wi\\246c)-1(ej)-372(lu)1(dzi)-372(w)-1(r)1(z)-1(a\\252o)-372(p)1(rz)-1(eciw)-1(k)28(o,)-371(c)-1(oraz)-372(z)-1(ap)1(alcz)-1(ywsz)-1(e)-372(k)28(o\\252o)-373(i)1(c)27(h)-372(otacz)-1(a\\252o,)-372(\\273e)-373(t)1(o)-373(j)1(u\\273)]TJ\nET\nendstream\nendobj\n831 0 obj <<\n/Type /Page\n/Contents 832 0 R\n/Resources 830 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n830 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n835 0 obj <<\n/Length 8569      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(258)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(gorza\\252k)56(a)-375(p)-27(onos)-1(i)1(\\252a,)-375(ale)-375(on)1(i)-375(si\\246)-375(nie)-375(o)-27(dzyw)27(al)1(i,)-375(siedzie)-1(l)1(i)-375(p)1(rz)-1(y)-374(sobie)-375(ku)1(p\\241)-375(ca\\252\\241,)-375(k)1(ije)]TJ 0 -13.549 Td[(in)1(o)-379(\\261c)-1(isk)56(ali)-378(m)-1(i)1(\\246)-1(d)1(z)-1(y)-378(k)28(olan)1(am)-1(i,)-378(p)-27(opij)1(ali)-378(piw)28(o,)-378(przegryzali)-378(kie\\252)-1(b)1(as)-1(\\246,)-378(jak)56(\\241)-379(mieli)-378(z)-1(e)]TJ 0 -13.549 Td[(sob\\241,)-333(a)-333(hard)1(o,)-333(nieustrasz)-1(l)1(iwie)-334(p)-27(ogl\\241dal)1(i)-334(n)1(a)-333(c)27(h\\252op)-27(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(By\\252ob)28(y)-348(mo\\273)-1(e)-348(i)-348(pr)1(z)-1(y)1(s)-1(z\\252o)-349(z)-348(mie)-1(j)1(s)-1(ca)-348(do)-348(b)1(itki,)-347(ale)-349(K)1(\\252)-1(\\241b)-347(pr)1(z)-1(yl)1(e)-1(cia\\252,)-348(j\\241\\252)-348(u)1(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(a\\242)-1(,)-458(p)1(rze)-1(k\\252ad)1(a\\242)-459(a)-458(prosi\\242,)-458(a)-459(za)-458(nim)-458(s)-1(tar)1(s)-1(i)-458(i)-458(Jam)28(br)1(o\\273)-1(y)84(,)-458(\\273)-1(e)-458(Kobu)1(s)-459(z)-1(ap)1(rze)-1(sta\\252)]TJ 0 -13.55 Td[(p)28(ysk)28(o)28(w)27(a\\242,)-303(dr)1(ugic)28(h)-303(te)-1(\\273)-303(o)-28(dci\\241)-28(gn)1(\\246)-1(l)1(i)-304(n)1(a)-303(p)-28(o)-28(cz\\246)-1(stun)1(e)-1(k)-303(d)1(o)-304(sz)-1(y)1(nkw)28(as)-1(u)1(,)-303(p)-28(ot)1(e)-1(m)-304(m)28(uzyk)56(a)]TJ 0 -13.549 Td[(sie)-1(l)1(nie)-371(zagra\\252a,)-371(a)-370(Jam)27(b)1(ro\\273)-371(j\\241\\252)-371(zno)28(wu)-371(cygan)1(i\\242)-371(nies)-1(t)28(w)28(orzone)-371(hi)1(s)-1(tor)1(ie)-371(o)-371(w)28(o)-56(jn)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(Nap)-27(olion)1(ie)-1(,)-329(Nacz)-1(eln)1(iku)1(,)-329(a)-330(p)-27(\\363\\271niej)-329(i)-329(in)1(s)-1(ze)-330(u)1(c)-1(ies)-1(zne)-329(rze)-1(cz)-1(y)84(,)-329(a\\273)-330(si\\246)-330(n)1(iejedni)-329(p)-27(ok\\252a-)]TJ 0 -13.549 Td[(dal)1(i)-447(ze)-447(\\261m)-1(iec)27(h)29(u;)-446(a)-447(on)-446(rad)-446(wielce)-1(,)-446(p)-27(o)-28(dp)1(it)28(y)-447(n)1(iez)-1(gor)1(z)-1(ej,)-446(rozpar\\252)-446(s)-1(i)1(\\246)-447(przy)-446(s)-1(tol)1(e)-447(i)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\252)-1(:)]TJ 27.879 -13.549 Td[({)-375(Na)-374(os)-1(tatek)-374(op)-28(o)28(wiem)-375(jes)-1(zc)-1(ze)-375(jedn)1(\\241)-375(hi)1(s)-1(tor)1(i\\246)-1(,)-374(kr\\363tk)56(\\241,)-374(b)-28(o)-374(m)-1(i)-374(pi)1(lno)-374(ta\\253co-)]TJ -27.879 -13.55 Td[(w)28(a\\242)-1(,)-383(a)-384(i)-384(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-383(krzyw)28(e)-1(,)-383(\\273)-1(e)-384(do)-383(nic)28(h)-384(n)1(ie)-384(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(\\246!)-384(W)1(ie)-1(cie,)-384(zm\\363)27(win)28(y)-383(dzisia)-56(j)]TJ 0 -13.549 Td[(K\\252\\246bian)1(ki)-329(ze)-330(S)1(o)-28(c)27(h)1(\\241)-330(W)1(ic)27(ki)1(e)-1(m.)-329(Gd)1(yb)28(ym)-329(c)27(h)1(c)-1(i)1(a\\252)-1(,)-328(m)-1(o)-55(je)-329(b)28(y)-329(b)28(y\\252y)-329(z)-329(Ma\\252go\\261k)55(\\241,)-328(m)-1(o)-55(je!)]TJ 0 -13.549 Td[(Bo)-334(an)1(o)-334(b)29(y\\252o)-334(t)1(ak:)]TJ 27.879 -13.549 Td[(\\377)28(W)83(e)-309(cz)-1(w)28(artek)-309(z)-1(w)28(alil)1(i)-309(s)-1(i)1(\\246)-310(d)1(o)-309(s)-1(tar)1(e)-1(go)-309(K)1(\\252)-1(\\246ba)-309(z)-309(w)28(\\363)-28(dk)56(\\241!)-309(P)1(rzys)-1(zli)-309(w)-309(j)1(e)-1(d)1(e)-1(n)-308(c)-1(zas)]TJ -27.879 -13.549 Td[(o)-28(d)-369(So)-28(c)28(h)28(y)-370(i)-369(pr)1(z)-1(ysz)-1(l)1(i)-370(o)-28(d)-369(Pr)1(yc)-1(zk)56(a;)-370(jedn)1(i)-370(p)1(rze)-1(p)1(ija)-55(j\\241)-370(h)1(arakiem,)-370(dr)1(ud)1(z)-1(y)-369(z)-1(a\\261)-370(s)-1(\\252o)-28(d)1(k)56(\\241,)]TJ 0 -13.55 Td[(o)-28(d)-381(j)1(e)-1(dn)29(yc)27(h)-381(K\\252\\241b)-381(pi)1(je)-382(i)-381(o)-28(d)-381(dr)1(ugic)28(h)-382(n)1(ie)-382(wylew)27(a.)-381(Jeden)-382(j)1(e)-1(st)-382(d)1(obr)1(y)83(,)-381(a)-382(i)-381(dr)1(ugi)-381(nie)]TJ 0 -13.549 Td[(gorsz)-1(y)1(!)]TJ 27.879 -13.549 Td[(Sw)28(at)28(y)-333(a\\273)-334(si\\246)-334(p)-27(o)-28(c)-1(\\241,)-333(tak)-333(p)1(ra)28(wi\\241)-334(i)-333(zalec)-1(a)-55(j\\241)-333(s)-1(w)28(oic)27(h)-332(k)55(a)28(w)28(ale)-1(r)1(\\363)27(w:)]TJ 0 -13.549 Td[(T)83(en)-335(ma)-335(morgi)-334(galan)28(te)-335(pr)1(z)-1(ez)-335(s)-1(k)28(o)28(wron)1(k)28(\\363)27(w)-335(n)1(a)28(w)27(o\\273one,)-335(a)-335(d)1(ru)1(gi)-335(te\\273)-336(t)1(akie,)-335(na)]TJ -27.879 -13.549 Td[(kt\\363r)1(yc)27(h)-333(i)1(no)-333(pies)-1(k)28(o)28(wie)-334(w)28(e)-1(sela)-334(sw)28(o)-56(je)-333(o)-28(dp)1(ra)28(wuj)1(\\241.)]TJ 27.879 -13.55 Td[(Jeden)-319(ma)-319(c)27(h)1(a\\252up)-27(\\246)-1(,)-318(do)-319(kt\\363r)1(e)-1(j)-318(\\261)-1(win)1(ie)-319(p)-28(o)-27(d)-319(p)1(rz)-1(y)1(c)-1(iesiam)-1(i)-318(w\\252)-1(a\\273\\241,)-319(a)-319(i)-318(dru)1(gi)-319(n)1(ie)]TJ -27.879 -13.549 Td[(gorsz)-1(\\241.)]TJ 27.879 -13.549 Td[(Ob)1(a)-56(j)-333(sielne)-334(b)-27(ogacz)-1(e,)-333(\\273)-1(e)-334(sz)-1(u)1(k)56(a\\242)-334(dal)1(e)-1(k)28(o!)]TJ 0 -13.549 Td[(So)-27(c)27(ha)-420(ma)-421(ca\\252y)-421(k)28(o\\252n)1(ie)-1(r)1(z)-421(o)-28(d)-420(k)28(o\\273uc)27(h)1(a,)-420(b)-28(o)-420(res)-1(zt\\246)-421(pi)1(e)-1(ski)-420(roznies)-1(\\252y)84(,)-420(Pry)1(c)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(za\\261)-334(m)-1(a)-333(ob)-27(e)-1(r)1(te)-1(l)1(e)-1(k)-333(o)-28(d)-333(\\261wi\\241te)-1(czn)28(yc)27(h)-333(p)-27(ort)1(e)-1(k)-333(i)-333(guzik)-333(\\261)-1(wiec\\241c)-1(y)-333(kiej)-333(ze)-334(z)-1(\\252ota!)]TJ 27.879 -13.55 Td[(Jeden)-447(c)27(h)1(\\252opak)-447(\\261m)-1(i)1(g\\252)-1(y)-446(kiej)-447(ta)-447(k)28(opica,)-447(a)-447(i)-447(dr)1(ugiem)27(u)-446(br)1(z)-1(u)1(c)27(ho)-447(wz)-1(d)1(e)-1(n)1(o)-447(o)-28(d)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(ak)28(\\363)27(w!)]TJ 27.879 -13.549 Td[(Gal)1(an)28(te)-334(par)1(obki)1(!)]TJ 0 -13.549 Td[(Sosze)-334(\\261)-1(l)1(ina)-333(z)-334(g\\246b)28(y)-333(c)-1(i)1(e)-1(kn)1(ie)-1(,)-333(a)-333(Pr)1(ycz)-1(ek)-333(m)-1(a)-333(\\261)-1(l)1(e)-1(p)1(ie)-334(k)56(apr)1(a)27(w)28(e)-1(!)]TJ 0 -13.549 Td[(R\\363)28(w)-1(n)1(e)-253(w)28(e)-253(wsz)-1(ystkim,)-252(a)-252(takie)-252(rob)-27(otne)-252(i)-252(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252e,)-252(\\273)-1(e)-252(c)27(ho)-27(\\242)-1(b)28(y)-252(p)-27(\\363\\252)-252(\\242)-1(wiar)1(t-)]TJ -27.879 -13.55 Td[(ki)-333(zie)-1(mn)1(iak)28(\\363)28(w)-334(na)-333(raz)-333(z)-1(j)1(e)-1(d)1(z)-1(\\241)-333(i)-333(z)-1(a)-333(dr)1(ug\\241)-333(patr)1(z)-1(\\241!)]TJ 27.879 -13.549 Td[(Ob)1(a)-449(d)1(obre)-449(n)1(a)-449(zi\\246c)-1(i\\363)28(w,)-448(oba)-448(kro)28(wy)-449(mog\\241)-448(p)-28(op)1(a\\261)-1(\\242,)-449(i)1(z)-1(b)-27(\\246)-449(pr)1(z)-1(ymie\\261)-1(\\242,)-448(gno)-55(ju)]TJ -27.879 -13.549 Td[(ur)1(z)-1(u)1(c)-1(i)1(\\242)-1(;)-411(oba)-411(kr)1(z)-1(y)1(w)-1(d)1(y)-411(dzie)-1(w)28(ce)-412(nie)-411(z)-1(r)1(obi\\241)-411(ni)1(jaki)1(e)-1(j)1(,)-412(b)-27(o)-411(z)-412(b)-27(o)-28(\\242k)55(ami)-411(k)28(ompani)1(i)-411(nie)]TJ 0 -13.549 Td[(trzyma)-56(j)1(\\241.)-337(Si)1(e)-1(ln)1(e)-337(parob)1(ki,)-337(r)1(oz)-1(mo)28(wne,)-337(m)-1(\\241d)1(rale,)-337(p)1(rze)-1(m)28(y\\261)-1(l)1(ne,)-337(z)-337(jad\\252em)-337(z)-1(a)28(ws)-1(ze)-338(d)1(o)]TJ 0 -13.549 Td[(g\\246b)28(y)-333(tra\\014)1(a)-56(j\\241,)-333(a)-333(ni)1(e)-334(gdzie)-334(in)1(dziej.)]TJ 27.879 -13.549 Td[(Co)-389(tu)-389(p)-27(o)-28(cz)-1(\\241\\242,)-389(kiej)-389(ob)1(a)-389(s)-1(i)1(\\246)-390(zar\\363)28(wno)-389(widz\\241)-389(s)-1(t)1(are)-1(m)28(u,)-389(t)1(o)-389(s)-1(i\\246)-389(kr\\246ci,)-389(w)-389(nosie)]TJ -27.879 -13.55 Td[(d\\252u)1(bie,)-333(a)-333(Ma\\252go\\261)-1(ki)-333(p)29(yta:)-333(kt\\363rego)-333(c)27(hces)-1(z?)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Oba)-333(p)-27(okraki)1(,)-333(tatulu)1(,)-333(p)-28(ozw)27(\\363l)1(c)-1(ie,)-333(to)-333(ju)1(\\273)-334(s)-1(e)-333(Jam)27(br)1(o\\273)-1(a)-333(wybi)1(e)-1(r)1(\\246)-1(!.)1(..)]TJ 0 -13.549 Td[(St)1(ary)-236(g\\252)-1(o)28(w)28(\\241)-237(kr)1(\\246)-1(ci\\252,)-236(delib)-27(e)-1(r)1(o)27(w)28(a\\252)-237(d)1(\\252ugo,)-236(w)-1(i)1(adomo,)-237(\\273e)-237(m\\241dral)1(a)-237(na)-236(c)-1(a\\252\\241)-236(c)27(ha\\252u)1(-)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(,)-265(a)-265(tu)-265(c)27(h)1(\\252opaki)-265(p)1(rzynagla)-55(j\\241,)-265(sw)27(at)28(y)-265(sw)27(o)-55(je)-266(w)28(c)-1(i)1(\\241\\273)-266(pr)1(a)27(wi\\241,)-265(to)-265(si\\246)-266(n)1(api\\252)-265(o)-28(d)-265(j)1(e)-1(d)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(har)1(aku,)-333(n)1(api\\252)-333(s)-1(i)1(\\246)-334(o)-28(d)-333(d)1(rugi)1(c)27(h)-333(s\\252o)-28(dki)1(e)-1(j)-333(i)-333(p)-27(o)28(w)-1(i)1(ada:)]TJ 27.879 -13.55 Td[({)-333(W)83(ag\\246)-334(p)1(rzyni)1(e)-1(\\261ta!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(nie\\261)-1(l)1(i)-334(on)1(\\241)-333(w)27(ag\\246,)-334(u)1(s)-1(t)1(a)27(wil)1(i,)-333(a)-334(on)-333(p)1(ra)28(wi:)]TJ\nET\nendstream\nendobj\n834 0 obj <<\n/Type /Page\n/Contents 835 0 R\n/Resources 833 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 820 0 R\n>> endobj\n833 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n838 0 obj <<\n/Length 9696      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(259)]TJ -330.353 -35.866 Td[({)-333(Zw)27(a\\273ta)-334(si\\246,)-333(c)27(h\\252op)1(aki,)-333(kt\\363r)1(e)-1(n)-333(b)-27(\\246dzie)-334(ci\\246)-1(\\273s)-1(zy)84(,)-334(tego)-333(na)-333(z)-1(i)1(\\246)-1(cia)-333(w)-1(y)1(bier\\246.)]TJ 0 -13.549 Td[(Zafr)1(as)-1(o)28(w)28(a\\252)-1(y)-239(si\\246)-240(sw)27(at)28(y)84(,)-239(p)-28(os\\252ali)-239(p)-27(o)-240(gor)1(z)-1(a\\252k)28(\\246)-240(i)-239(medytu)1(j\\241:)-239(kt\\363r)1(e)-1(n)1(?)-240(b)-27(o)-239(oba)-56(j)-238(b)28(yli)]TJ -27.879 -13.549 Td[(kieb)28(y)-443(te)-444(pl)1(uskwy)-444(ze)-1(sc)27(h)1(ni\\246te!)-444(S)1(k)28(o)-28(cz)-1(y\\252y)-443(p)-27(o)-444(rozum)-443(do)-444(g\\252o)28(wy)-443(Pry)1(c)-1(zk)28(o)27(w)28(e)-444(sw)27(at)28(y)84(,)]TJ 0 -13.549 Td[(nasu\\252y)-455(m)28(u)-455(za)-455(pazuc)28(h\\246)-455(k)55(amieni)1(,)-455(to)-455(w)-455(kies)-1(ze)-1(n)1(ie)-456(n)1(ap)-27(c)27(ha\\252y)84(.)-455(Ale)-455(i)-455(So)-27(c)27(ho)28(wie)-455(te)-1(\\273)]TJ 0 -13.549 Td[(ni)1(e)-405(b)28(y\\252y)-404(g\\252up)1(ie,)-405(n)1(ie)-405(b)28(y)1(\\252)-1(o)-404(co,)-405(t)1(o)-405(g\\246s)-1(i)1(ora)-405(wsadzili)-404(m)28(u)-404(p)-28(o)-28(d)-403(k)55(ap)-27(ot\\246)-405(i)-404(na)-404(w)28(ag\\246)-405(go)]TJ 0 -13.55 Td[(sta)27(wi\\241.)1(..)-254(li)1(c)-1(z\\241,)-254(a\\273)-254(tu)-253(c)-1(osik)-254(p)-27(o)28(wiada:)-253(S...)-253(s)-1(.)1(..)-254(s...)-253(So)-28(c)28(ha)-254(n)1(ib)28(y)84(,)-254(i)-254(g\\246sior)-254(b)-27(\\246)-1(c)-254(n)1(a)-254(z)-1(i)1(e)-1(mi\\246!)]TJ 0 -13.549 Td[(Roz)-1(e\\261m)-1(ieli)-333(si\\246)-334(ws)-1(zysc)-1(y)84(,)-333(a)-334(K)1(\\252)-1(\\241b)-332(p)-28(o)28(wiada:)]TJ 27.879 -13.549 Td[({)-333(Zm)27(y\\261lna)-333(j)1(uc)27(h)1(a)-334(j)1(e)-1(st,)-333(c)27(h)1(o)-28(\\242)-334(w)28(agi)-333(nie)-334(t)1(rz)-1(y)1(m)-1(a,)-333(t)28(y)-333(b)-27(\\246)-1(d)1(z)-1(ies)-1(z)-333(m)-1(oi)1(m)-334(z)-1(i)1(\\246)-1(ciem)-1(!\")]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-338(\\273e)-339(w)-338(t)28(ym,)-338(p)1(r\\363)-28(cz)-339(tego)-338(w)27(a\\273enia,)-337(inn)1(e)-1(j)-337(pra)28(wdy)-337(nie)-338(b)28(y\\252o,)-338(j)1(e)-1(n)1(o)-338(\\273e)-339(op)-27(o-)]TJ -27.879 -13.549 Td[(wiada\\252)-303(tak)-304(\\261mie)-1(sz)-1(n)1(ie,)-304(a\\273)-304(si\\246)-304(p)-27(op\\252akiw)28(ali)-303(z)-304(ucie)-1(c)28(h)28(y)-303(i)-304(taki)1(m)-304(\\261)-1(miec)27(hem)-304(bu)1(c)27(h)1(ali,)-303(\\273)-1(e)]TJ 0 -13.549 Td[(na)-333(ca\\252\\241)-334(k)56(arcz)-1(m\\246)-334(sz)-1(\\252o.)]TJ 27.879 -13.55 Td[(\\233e)-315(wnet)-315(K)1(\\252)-1(\\246b)-27(o)27(wi)-314(go\\261c)-1(ie)-315(wyw)28(alil)1(i)-315(si\\246)-315(z)-315(al)1(kierz)-1(a)-314(i)-314(c)-1(a\\252\\241)-314(h)28(ur)1(m)-1(\\241)-314(s)-1(zli)-314(w)-315(tan)1(iec)-1(,)]TJ -27.879 -13.549 Td[(to)-236(wrz)-1(ask)-236(si\\246)-237(p)-27(o)-28(dn)1(i\\363s\\252)-1(,)-236(t)1(up)-27(ot,)-236(krzyki,)-236(\\273e)-237(j)1(u\\273)-236(\\273)-1(adn)1(e)-1(go)-236(g\\252osu)-236(z)-237(osobn)1(a)-237(n)1(ie)-237(r)1(oz)-1(ez)-1(n)1(a\\252.)]TJ 27.879 -13.549 Td[(Ze)-300(\\252b)-27(\\363)27(w)-299(p)-27(o)-28(c)-1(zyna\\252o)-299(ku)1(rzy\\242)-1(,)-299(gor)1(\\241c)-1(o\\261\\242)-300(rozbiera\\252a,)-299(uciec)27(h)1(a)-300(r)1(os)-1(\\252a,)-299(to)-299(i)-300(m\\252o)-28(d)1(z)-1(i)]TJ -27.879 -13.549 Td[(h)28(u)1(lali)-261(z)-262(c)-1(a\\252ej)-261(mo)-28(c)-1(y)84(,)-261(a)-262(starsi)-262(zasi\\246)-262(z)-1(al)1(e)-1(gali)-261(sto\\252y)83(,)-261(sto)27(w)28(arzysz)-1(ali)-261(si\\246)-1(,)-261(gd)1(z)-1(ie)-261(ino)-261(m)-1(ogl)1(i)]TJ 0 -13.549 Td[(i)-334(gdzie)-334(kto)-334(usto)-56(j)1(a\\252,)-334(b)-28(o)-334(tan)1(e)-1(cz)-1(n)1(icy)-334(roz)-1(b)1(ij)1(ali)-334(i)-334(c)-1(or)1(az)-335(wi\\246ks)-1(zym)-334(k)28(o\\252e)-1(m)-334(z)-1(atacz)-1(al)1(i,)-334(a)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(e)-1(n)-344(w)-345(g\\252os)-345(gad)1(a\\252)-1(,)-344(pr)1(z)-1(epi)1(ja\\252,)-344(z)-346(d)1(ru)1(gimi)-345(si\\246)-345(c)-1(i)1(e)-1(sz)-1(y)1(\\252)-1(,)-344(sw)27(o)-55(jego)-345(do)28(w)28(o)-28(dzi\\252,)-344(\\261)-1(wi\\246ta)]TJ 0 -13.549 Td[(u\\273yw)28(a\\252.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-535(z)-1(a\\261)-536(r)1(z)-1(n)1(\\246)-1(\\252a)-535(s)-1(i)1(arc)-1(zy\\261c)-1(i)1(e)-536(i)-536(t)1(a)-1(n)29(y)-536(sz\\252)-1(y)-535(zapami\\246ta\\252e)-1(,)-535(c)27(h)1(o)-28(\\242)-536(b)28(y\\252)-535(taki)]TJ -27.879 -13.549 Td[(g\\241sz)-1(cz)-1(,)-324(\\273e)-324(g\\252o)27(w)28(a)-324(pr)1(z)-1(y)-324(g\\252o)28(wie,)-324(pl)1(e)-1(cy)-324(pr)1(z)-1(y)-323(plec)-1(ac)28(h,)-324(t)1(o)-324(i)-324(tak)-324(si\\246)-324(trz\\241c)27(hal)1(i,)-324(p)-27(o)-324(izbie)]TJ 0 -13.549 Td[(nosili)1(,)-335(p)-27(o)-1(k)1(rzykiw)28(ali)-335(w)28(e)-1(so\\252o,)-335(a)-335(ob)-27(c)-1(asam)-1(i)-334(bili)1(,)-335(\\273)-1(e)-335(in)1(o)-335(dyle)-335(sk)28(o)27(wycz)-1(a\\252y)-334(i)-335(s)-1(zyn)1(kw)27(as)]TJ 0 -13.55 Td[(p)-27(o)-28(dr)1(ygiw)28(a\\252)-1(!)]TJ 27.879 -13.549 Td[(Zaba)28(w)28(a)-334(b)29(y\\252a)-334(sielna,)-333(b)-27(o)-28(\\242)-334(wsz)-1(ysc)-1(y)-333(si\\246)-334(d)1(ok\\252adali)-333(z)-333(c)-1(a\\252ej)-333(m)-1(o)-27(c)-1(y)84(,)-333(dusz\\241)-334(ca\\252\\241.)]TJ 0 -13.549 Td[(Zima)-267(to)-28(\\242)-267(sz\\252)-1(a,)-266(n)1(ar\\363)-28(d)-266(o)-28(d)1(e)-1(rw)28(a\\252)-267(r)1(\\246)-1(ce)-267(s)-1(p)1(raco)27(w)28(ane)-267(o)-27(d)-267(matki)-266(zie)-1(mi,)-266(to)-267(i)-266(p)-27(o)-28(dn)1(o-)]TJ -27.879 -13.549 Td[(si\\252)-257(przygi\\246te)-258(k)56(ark)1(i,)-257(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-258(zafr)1(as)-1(o)28(w)27(an)1(e)-258(d)1(usz)-1(e,)-257(pr)1(os)-1(to)28(w)28(a\\252)-258(si\\246,)-257(rozrasta\\252)-257(i)-257(r\\363)28(wna\\252)]TJ 0 -13.549 Td[(jeden)-385(z)-386(dr)1(ugim)-386(w)-386(w)28(oln)1(o\\261)-1(ci,)-385(w)-386(o)-28(dp)-27(o)-28(cz)-1(y)1(w)27(an)1(iu)-385(i)-386(w)-386(tej)-385(m)27(y)1(\\261)-1(li)-385(s)-1(w)28(ob)-27(o)-28(dn)1(e)-1(j)1(,)-386(\\273e)-386(k)56(a\\273)-1(-)]TJ 0 -13.55 Td[(den)-308(cz)-1(\\252o)28(wie)-1(k)-308(wid)1(ni)1(a\\252)-309(z)-309(osobn)1(a)-308(i)-308(w)-1(y)1(ra\\271)-1(n)1(ie)-309(j)1(ak)28(o)-308(te)-1(n)-308(b)-27(\\363r,)-308(z)-308(kt\\363rego)-308(nie)-308(w)-1(y)1(dzie)-1(l)1(is)-1(z)]TJ 0 -13.549 Td[(dr)1(z)-1(ewin)-324(l)1(ate)-1(m,)-324(b)-27(o)-324(w)-324(jedn)1(akim,)-324(r\\363)28(wno)-323(z)-1(ielon)28(y)1(m)-325(g\\241sz)-1(czu)-324(stoi)-324(pr)1(z)-1(y)1(w)27(art)28(y)-323(do)-324(ro)-27(d-)]TJ 0 -13.549 Td[(nej)-312(ziem)-1(i)1(,)-312(a)-312(niec)27(h)-312(j)1(e)-1(n)1(o)-312(\\261)-1(n)1(ie)-1(g)-312(spad)1(nie,)-312(zie)-1(mia)-312(si\\246)-313(p)1(rze)-1(s\\252oni,)-311(a)-313(wn)1(e)-1(t)-312(k)56(a\\273de)-313(d)1(rze)-1(w)28(o)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(ysz)-390(z)-389(osobna)-389(i)-388(w)-390(ten)-389(mig)-389(r)1(o)-1(zez)-1(n)1(as)-1(z:)-389(d\\241b)-27(ek-)-1(l)1(i)-389(to,)-389(grab)-27(ek-li)-389(to,)-389(osicz)-1(yn)1(a-)-1(l)1(i)]TJ 0 -13.549 Td[(to!)]TJ 27.879 -13.55 Td[(T)83(aku)1(te)-1(\\253)1(k)28(o)-333(b)28(y\\252o)-334(i)-333(z)-333(naro)-27(dem)-1(.)]TJ 0 -13.549 Td[(Jeno)-398(An)29(te)-1(k)-397(z)-398(Mateusz)-1(em)-398(ni)1(e)-399(r)1(uc)28(hali)-397(s)-1(i)1(\\246)-398(z)-1(e)-398(sw)27(oic)28(h)-398(miejsc)-1(,)-397(sie)-1(d)1(z)-1(i)1(e)-1(li)-397(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-439(p)-27(o)-438(przyj)1(ac)-1(ielsku)-438(i)-438(z)-438(c)-1(ic)28(ha)-438(ugw)28(arzali)-438(o)-438(r\\363\\273no\\261c)-1(i)1(ac)27(h,)-438(i)1(le)-439(\\273e)-439(ci\\246)-1(gi)1(e)-1(m)-438(kto\\261)-439(d)1(o)]TJ 0 -13.549 Td[(ni)1(c)27(h)-405(p)1(rzys)-1(ta)28(w)28(a\\252)-405(i)-405(s)-1(w)28(o)-56(j)1(e)-406(dok)1(\\252ada\\252;)-405(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-406(S)1(tac)27(h)1(o)-405(P\\252os)-1(zk)56(a,)-405(pr)1(z)-1(ysz)-1(ed\\252)-405(Balce)-1(-)]TJ 0 -13.549 Td[(rek,)-344(przysz)-1(ed\\252)-344(w)27(\\363)-55(jt\\363)28(w)-345(b)1(rat)-345(i)-344(dr)1(ugie;)-344(te)-345(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-345(na)-55(jp)1(ie)-1(r)1(w)-1(sz)-1(e)-345(w)28(e)-345(ws)-1(i)-344(k)56(a)27(w)28(alery)84(,)]TJ 0 -13.549 Td[(kt\\363r)1(z)-1(y)-291(d)1(ru\\273b)-28(o)28(w)28(ali)-291(na)-291(w)28(e)-1(se)-1(lu)-290(Jagusi.)-291(Zrazu)-291(nie\\261)-1(mia\\252o)-291(pr)1(z)-1(ysta)28(w)27(al)1(i,)-291(\\273)-1(e)-291(to)-292(n)1(ie)-292(wia-)]TJ 0 -13.55 Td[(da)-301(b)28(y\\252o,)-302(czy)-302(An)28(tek)-302(j)1(akim)-302(ostrym)-302(s\\252o)27(w)28(e)-1(m)-302(n)1(ie)-302(c)-1(i)1(e)-1(p)1(nie,)-302(ale)-302(n)1(ie)-1(,)-301(p)-27(o)-28(da)28(w)28(a\\252)-302(k)55(a\\273dem)27(u)]TJ 0 -13.549 Td[(r\\246k)28(\\246)-332(a)-331(z)-332(dob)1(ro\\261c)-1(i\\241)-331(p)1(atrza\\252)-1(,)-331(to)-331(i)-331(wnet)-331(oto)-28(c)-1(zyli)-331(go)-331(z)-1(w)28(art)28(ym)-331(k)28(o\\252e)-1(m,)-331(pil)1(nie)-331(s)-1(\\252uc)28(ha-)]TJ 0 -13.549 Td[(li,)-400(pr)1(z)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(o)-401(\\261)-1(wiad)1(c)-1(zyli)-400(i)-400(tak)-401(m)28(u)-400(s)-1(i\\246)-401(u)1(m)-1(i)1(lali)-400(a)-401(zda)28(w)27(al)1(i)-401(w)28(e)-401(w)-1(szys)-1(tk)1(im,)-401(j)1(ak)]TJ 0 -13.549 Td[(pr)1(z)-1(\\363)-27(dzi,)-345(k)1(ie)-1(d)1(y)-345(t)1(o)-345(im)-345(p)1(rze)-1(w)28(o)-28(dzi\\252)-345(j)1(e)-1(sz)-1(cze)-1(,)-344(u\\261m)-1(i)1(e)-1(c)27(h)1(a\\252)-345(si\\246)-345(in)1(o)-345(gorzk)28(o)-345(j)1(ak)28(o\\261)-1(,)-344(b)-27(o)-345(m)27(u)]TJ 0 -13.549 Td[(si\\246)-334(ws)-1(p)-27(omnia\\252o)-333(jak)-333(to)-333(jes)-1(zcz)-1(e)-334(w)28(c)-1(zora)-55(j)-333(a)-333(c)-1(i)-333(s)-1(ami)-333(omijal)1(i)-334(go)-333(z)-334(d)1(ala)-333(na)-333(dr)1(o)-28(dze)-1(.)]TJ 27.879 -13.55 Td[({)-229(An)1(i)-229(c)-1(i)1(\\246)-230(n)1(ik)56(a)-56(j)-228(ni)1(e)-230(u)1(jrze\\242)-1(,)-229(d)1(o)-229(k)56(arcz)-1(m)28(y)-229(ni)1(e)-230(zac)27(h)1(o)-28(dzisz)-1(!)-228({)-229(p)-28(o)28(wiedzia\\252)-229(P\\252osz)-1(k)56(a.)]TJ 0 -13.549 Td[({)-333(Od)-333(ran)1(a)-334(d)1(o)-333(no)-28(cy)-333(robi)1(\\246)-1(,)-333(to)-333(kiej)-333(to)-333(m)-1(am)-333(c)-1(zas)-334(na)-333(k)56(arcz)-1(m\\246)-1(?)]TJ\nET\nendstream\nendobj\n837 0 obj <<\n/Type /Page\n/Contents 838 0 R\n/Resources 836 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n836 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n842 0 obj <<\n/Length 8121      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(260)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-360(P)1(ra)28(w)-1(d)1(a,)-360(p)1(ra)28(wda!)-360({)-360(p)1(rzyt)28(wie)-1(r)1(dzili)-360(p)-27(\\363\\252g\\252os)-1(em,)-360(a)-360(p)-27(ote)-1(m)-360(z)-360(w)27(ol)1(na)-360(pr)1(z)-1(es)-1(zli)]TJ -27.879 -13.549 Td[(na)-344(r)1(\\363\\273)-1(n)1(e)-345(spra)28(wy)-344(ws)-1(io)28(w)28(e)-1(,)-344(n)1(a)-344(o)-56(jc\\363)28(w,)-344(to)-344(o)-345(d)1(z)-1(i)1(e)-1(u)1(c)27(hac)28(h)-344(m\\363)27(wil)1(i,)-344(to)-344(o)-344(z)-1(imie,)-344(b)-28(o)-344(r)1(oz)-1(-)]TJ 0 -13.549 Td[(mo)27(w)28(a)-401(j)1(ak)28(o\\261)-401(s)-1(i)1(\\246)-402(n)1(ie)-401(wied\\252a,)-400(An)28(te)-1(k)-400(ma\\252o)-401(m\\363)27(wi\\252,)-400(a)-401(ci\\246gie)-1(m)-401(sp)-27(ogl\\241da\\252)-400(na)-401(d)1(rzw)-1(i)1(,)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a\\252)-379(si\\246,)-378(\\273)-1(e)-378(Jagna)-378(pr)1(z)-1(y)1(jdzie.)-378(Dopi)1(e)-1(ro)-378(gd)1(y)-378(B)-1(al)1(c)-1(erek)-378(j\\241\\252)-378(op)-28(o)28(wiad)1(a\\242)-379(o)-378(na-)]TJ 0 -13.549 Td[(rad)1(z)-1(i)1(e)-1(,)-333(jak)56(a)-333(s)-1(i)1(\\246)-334(o)-28(d)1(b)28(y\\252a)-334(w)28(e)-334(\\261wi\\246)-1(ta)-333(u)-333(K\\252\\246b)-27(\\363)27(w)-333(wz)-1(gl\\246dem)-334(lasu,)-333(s\\252uc)27(h)1(a\\252)-334(u)29(w)27(a\\273nie.)]TJ 27.879 -13.55 Td[({)-333(C)-1(\\363\\273)-333(uredzili)1(?)-334({)-333(z)-1(ap)29(yta\\252.)]TJ 0 -13.549 Td[({)-364(A)-365(c\\363\\273)-1(,)-364(s)-1(k)56(amlali,)-364(n)1(arze)-1(k)56(ali,)-364(\\273alili)-364(s)-1(i)1(\\246)-1(,)-364(a)-365(r)1(ady)-364(ni)1(jakiej)-364(ni)1(e)-365(p)-28(o)28(wz)-1(i)1(\\246)-1(li)1(,)-365(p)1(r\\363)-28(cz)]TJ -27.879 -13.549 Td[(tej,)-333(\\273e)-334(nie)-333(trza)-334(p)-27(ozw)27(oli\\242)-333(na)-333(wyr\\246b.)]TJ 27.879 -13.549 Td[({)-295(A)-294(b)-27(o)-295(to)-295(co)-295(m\\241dr)1(e)-1(go)-294(urad)1(z)-1(\\241)-294(te)-295(s)-1(\\252omian)1(e)-295(w)-1(i)1(e)-1(c)27(h)1(c)-1(i)1(e)-1(!{)-294(wykrzykn)1(\\241\\252)-295(P\\252osz)-1(k)56(a.)]TJ -27.879 -13.549 Td[({)-292(Z)-1(b)1(iera)-56(j)1(\\241)-293(si\\246,)-292(gorz)-1(a\\252y)-292(si\\246)-293(nap)1(ij\\241,)-292(wysapi\\241,)-292(n)1(a)27(wyr)1(z)-1(ek)56(a)-56(j\\241)-292(i)-292(t)28(yla)-292(z)-293(t)28(yc)27(h)-292(n)1(arad)-292(jest,)]TJ 0 -13.549 Td[(co)-389(z)-389(\\252o\\253skiego)-389(\\261niegu,)-388(a)-388(dz)-1(i)1(e)-1(d)1(z)-1(ic)-389(mo\\273e)-389(s)-1(ob)1(ie)-389(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-389(c)-1(i\\241\\242)-389(c)28(ho)-28(\\242b)28(y)-388(i)-389(wsz)-1(ystek)]TJ 0 -13.55 Td[(las.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(tr)1(z)-1(a)-333(p)-28(ozw)28(oli\\242)-334({)-333(rzuci\\252)-334(k)1(r\\363tk)28(o)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(go)-333(p)-28(o)28(ws)-1(t)1(rz)-1(y)1(m)-1(a,)-333(kt\\363\\273)-333(z)-1(ab)1(roni)1(?)-334({)-333(z)-1(acz)-1(\\246li)-333(wykr)1(z)-1(yk)1(iw)27(a\\242.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(j)1(ak)-333(nie)-334(wy?)]TJ 0 -13.549 Td[({)-338(A)-337(ju\\261ci,)-338(p)-27(oz)-1(w)28(ol\\241)-338(t)1(o)-338(na)-338(co?)-338(Ozw)27(a\\252em)-338(s)-1(i)1(\\246)-339(k)1(ie)-1(d)1(y\\261,)-338(to)-338(o)-27(c)-1(iec)-338(m)-1(i)1(\\246)-339(skrzycz)-1(a\\252,)]TJ -27.879 -13.55 Td[(\\273e)-1(b)28(y)1(m)-267(n)1(os)-1(a)-266(p)1(iln)1(o)27(w)28(a\\252,)-266(\\273e)-267(to)-266(n)1(ie)-266(m)-1(o)-55(ja)-266(spr)1(a)27(w)28(a,)-266(a)-266(ic)28(h,)-266(gosp)-27(o)-28(dar)1(z)-1(y!)-265(Ju\\261c)-1(i)1(,)-266(m)-1(a)-55(j\\241)-266(p)1(ra-)]TJ 0 -13.549 Td[(w)28(o)-253(d)1(o)-252(te)-1(go,)-252(b)-27(o)-252(ws)-1(zystk)28(o)-253(w)-252(gar\\261ci)-252(dzie)-1(r)1(\\273)-1(\\241)-252(i)-252(c)27(h)1(o)-28(\\242b)28(y)-252(na)-252(t\\246)-252(m)-1(i)1(n)28(ut\\246,)-252(a)-252(nie)-252(p)-27(opuszc)-1(z\\241,)]TJ 0 -13.549 Td[(a)-333(m)27(y)-333(c\\363\\273)-334(z)-1(n)1(ac)-1(zym)28(y)83(,)-333(t)28(yle)-334(co)-333(te)-334(par)1(obki)1(!)-333({)-334(u)1(nosi\\252)-334(si\\246)-334(P)1(\\252os)-1(zk)56(a.)]TJ 27.879 -13.549 Td[({)-333(\\231le)-334(jest)-334(ca\\252kiem)-1(,)-333(\\271le.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ie)-334(tak)-333(p)-27(o)28(w)-1(i)1(nn)1(o)-334(b)28(y)1(\\242)-1(!)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(m\\252o)-28(dy)1(c)27(h)-333(p)-27(o)28(w)-1(in)1(ni)-333(p)1(rzypu)1(\\261)-1(ci\\242)-334(d)1(o)-334(gr)1(un)28(t\\363)28(w)-333(i)-334(d)1(o)-333(rz)-1(\\241d)1(\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(sam)27(y)1(m)-334(na)-333(wycugi)-333(i\\261\\242)-1(!)]TJ 0 -13.549 Td[({)-447(J)1(a)-447(w)28(o)-56(jsk)28(o)-447(o)-27(ds\\252u\\273y\\252e)-1(m,)-447(l)1(ata)-447(mi)-446(id\\241,)-446(a)-447(tego,)-446(c)-1(o)-446(m)-1(o)-55(je,)-447(d)1(a\\242)-447(nie)-447(c)28(hc\\241!)-447({)]TJ -27.879 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252)-333(P\\252osz)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-333(Ka\\273)-1(d)1(e)-1(m)28(u)-333(cz)-1(as)-334(n)1(a)-334(sw)28(o)-56(je.)]TJ 0 -13.55 Td[({)-333(A)-334(wsz)-1(yscy\\261)-1(m)28(y)-333(tuta)-55(j)-333(p)-28(ok)1(rzywdze)-1(n)1(i.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(a)-56(j)1(barzej)-333(An)28(tek!)]TJ 0 -13.549 Td[({)-333(T)83(rza)-334(b)29(y)-334(w)28(e)-334(wsi)-334(zrob)1(i\\242)-334(p)-27(orz\\241dki)1(!)-334({)-333(sz)-1(epn)1(\\241\\252)-334(t)28(w)28(ardo)]TJ 0 -13.549 Td[(Szyme)-1(k)1(,)-400(Jagu)1(s)-1(i)1(n)-400(b)1(rat,)-399(kt\\363r)1(e)-1(n)-399(ni)1(e)-1(d)1(a)27(wn)1(o)-400(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-400(i)-399(s)-1(to)-55(ja\\252)-399(p)-28(oza)-400(d)1(rugi)1(m)-1(i)]TJ -27.879 -13.549 Td[(cic)27(h)1(o,)-361(s)-1(p)-27(o)-56(j)1(rze)-1(li)-360(na)-361(ni)1(e)-1(go)-361(zdu)1(m)-1(i)1(e)-1(n)1(i,)-361(a)-361(on)-361(wysun)1(\\241\\252)-361(s)-1(i\\246)-361(na)-361(cz)-1(o\\252o)-361(i)-361(j)1(\\241\\252)-361(gor\\241c)-1(o)-361(p)1(ra-)]TJ 0 -13.55 Td[(wi\\242)-466(o)-465(s)-1(w)28(oic)27(h)-465(kr)1(z)-1(ywd)1(ac)27(h,)-465(a)-465(w)-466(o)-28(cz)-1(y)-465(ws)-1(zys)-1(t)1(kim)-466(p)1(atrza\\252)-466(i)-465(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(i\\252)-466(si\\246)-1(,)-465(\\273e)-466(to)]TJ 0 -13.549 Td[(ni)1(e)-1(p)1(rzywyk\\252y)-333(b)28(y\\252)-333(przed)-333(dru)1(gimi)-333(m)-1(\\363)28(wi\\242)-334(i)-333(b)-27(o)-56(j)1(a\\252)-334(si\\246)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(niec)-1(o)-333(matki.)]TJ 27.879 -13.549 Td[({)-238(Nastk)55(a)-238(go)-238(tak)-237(nauczy\\252a)-238(rozum)27(u)1(!)-238({)-238(sz)-1(epn\\241\\252)-238(k)1(t\\363ry\\261,)-238(roze)-1(\\261miali)-238(si\\246)-239(wsz)-1(y)1(s)-1(cy)83(,)]TJ -27.879 -13.549 Td[(a\\273)-243(Szyme)-1(k)-242(z)-1(milk)1(n\\241\\252)-243(i)-242(c)-1(of)1(n\\241\\252)-243(si\\246)-243(w)-243(c)-1(ie\\253,)-242(wte)-1(d)1(y)-243(w)28(\\363)-56(j)1(t\\363)28(w)-243(brat,)-242(Grzela)-243(Rak)28(os)-1(k)1(i,)-243(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(ni)1(e)-334(b)28(y\\252)-333(rozm)-1(o)28(wn)28(y)-333(i)-333(ni)1(e)-1(co)-334(si\\246)-334(za)-56(j)1(\\241kiw)28(a\\252,)-333(z)-1(acz)-1(\\241\\252)-333(pra)28(wi\\242.)]TJ 27.879 -13.549 Td[({)-320(\\233e)-320(starzy)-320(t)1(rz)-1(y)1(m)-1(a)-55(j\\241)-319(grun)29(ta)-320(i)-319(dzie)-1(ciom)-320(n)1(ie)-320(p)-27(opuszc)-1(za)-56(j)1(\\241,)-320(\\271le)-320(ju)1(\\261)-1(ci)-319(je)-1(st,)-319(b)-28(o)]TJ -27.879 -13.55 Td[(kr)1(z)-1(ywd)1(a)-269({)-269(al)1(e)-269(to)-269(j)1(e)-1(st)-269(n)1(a)-56(jgor)1(s)-1(ze)-1(,)-268(\\273e)-269(s)-1(i\\246)-269(g\\252u)1(pio)-268(rz\\241dz\\241.)-269(P)1(rze)-1(cie)-269(z)-269(t)28(ym)-269(lase)-1(m)-269(d)1(a)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(b)28(y\\252b)29(y)-334(k)28(on)1(iec)-1(,)-333(\\273e)-1(b)28(y)-333(si\\246)-334(b)28(y)1(li)-333(z)-1(go)-27(dzili)-333(z)-334(d)1(z)-1(iedzice)-1(m.)]TJ 27.879 -13.549 Td[({)-370(Jak)1(\\273)-1(e,)-370(d)1(a)27(w)28(a\\252)-370(p)-27(o)-370(dwie)-370(morgi,)-369(kiedy)-370(si\\246)-370(nam)-370(n)1(ale)-1(\\273y)-370(p)-27(o)-370(cz)-1(t)1(e)-1(ry)-369(na)-370(p)-27(\\363\\252w-)]TJ -27.879 -13.549 Td[(\\252\\363)-28(cz)-1(ek.)]TJ 27.879 -13.549 Td[({)-371(Nale)-1(\\273y)-371(alb)-27(o)-371(i)-372(n)1(ie)-372(n)1(ale\\273)-1(y)84(,)-371(to)-372(j)1(e)-1(szc)-1(ze)-372(ni)1(e)-372(wiadomo,)-371(to)-371(ju)1(\\273)-372(ur)1(z)-1(\\246dn)1(iki)-371(roz-)]TJ -27.879 -13.55 Td[(s\\241dz\\241.)]TJ 27.879 -13.549 Td[({)-333(Kiedy)-333(oni)-333(z)-333(dzie)-1(d)1(z)-1(icami)-333(trzym)-1(a)-55(j\\241!)]TJ\nET\nendstream\nendobj\n841 0 obj <<\n/Type /Page\n/Contents 842 0 R\n/Resources 840 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n840 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n845 0 obj <<\n/Length 8049      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(261)]TJ -330.353 -35.866 Td[({)-271(Hal)1(e)-1(,)-270(trzyma)-56(j\\241)-270(tam,)-271(p)1(rze)-1(cie)-1(\\273)-271(sam)-271(k)28(omis)-1(ar)1(z)-271(p)-28(o)28(wiedzia\\252,)-271(b)29(y)-271(si\\246)-271(ni)1(e)-272(go)-27(dzi\\242)]TJ -27.879 -13.549 Td[(na)-333(d)1(w)-1(i)1(e)-334(m)-1(or)1(gi,)-333(to)-333(dzie)-1(d)1(z)-1(i)1(c)-334(m)27(u)1(s)-1(i)-333(d)1(a\\242)-334(wi\\246)-1(ce)-1(j)1(!)-333({)-334(t\\252u)1(m)-1(aczy\\252)-334(Balce)-1(r)1(e)-1(k.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-27(c)-1(ie)-333(no,)-333(b)-27(o)-334(k)28(o)28(w)28(al)-334(an)1(o)-333(z)-1(e)-334(starsz)-1(y)1(m)-334(id)1(z)-1(ie!{)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rze)-1(l)1(i)-413(si\\246)-413(na)-412(dr)1(z)-1(wi,)-412(jak)28(o\\273)-413(p)1(ra)28(wdziwie)-1(,)-412(k)28(o)28(w)27(al)-412(wi\\363)-28(d)1(\\252)-413(si\\246)-413(p)-27(o)-28(d)-412(pac)27(h)29(y)-413(ze)]TJ -27.879 -13.549 Td[(starsz)-1(ym,)-295(oba)-55(j)-295(ju)1(\\273)-296(b)28(yli)-295(n)1(apici)-295(niezgorz)-1(ej,)-295(to)-295(si\\246)-296(mo)-28(c)-1(n)1(o)-295(prze)-1(p)29(yc)27(h)1(ali)-295(przez)-296(g\\246)-1(st)28(w)27(\\246)]TJ 0 -13.55 Td[(i)-436(r)1(z)-1(n)1(\\246)-1(li)-435(pr)1(os)-1(to)-436(d)1(o)-436(sz)-1(yn)1(kw)28(as)-1(u)1(,)-436(ale)-436(ni)1(e)-437(p)-27(ostali)-436(tam)-436(d)1(\\252ugo,)-436(\\233yd)-435(ic)28(h)-436(p)-27(o)28(w)-1(i)1(\\363)-28(d\\252)-436(d)1(o)]TJ 0 -13.549 Td[(alki)1(e)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(c)28(hrzcinac)28(h)-333(u)-333(w)27(\\363)-55(jta)-333(s)-1(i)1(\\246)-334(ur)1(ac)-1(zyli.)]TJ 0 -13.549 Td[({)-333(Wyp)1(ra)28(w)-1(i)1(a)-334(to)-333(dzisia)-56(j)1(?)-334({)-333(zap)28(yta\\252)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-393(A)-392(dy)1(\\242)-393(o)-56(j)1(c)-1(o)28(wie)-393(nasi)-392(tam)-393(s)-1(i)1(e)-1(d)1(z)-1(\\241.)-392(So\\252t)28(ys)-393(p)-27(osz)-1(ed\\252)-393(w)-392(kum)28(y)-392(z)-393(B)-1(alcerk)28(o)28(w)27(\\241,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(p)-27(ono)-333(stary)-333(Boryn)1(a)-334(si\\246)-334(p)-27(ogni)1(e)-1(w)28(a\\252)-334(i)-333(n)1(ie)-334(c)27(h)1(c)-1(ia\\252)-333({)-333(t\\252umac)-1(zy\\252)-333(P\\252osz)-1(k)56(a.)]TJ 27.879 -13.55 Td[({)-333(A)-334(to)-333(co)-334(za)-333(jede)-1(n)-332(?)-334({)-333(w)-1(y)1(krzykn)1(\\241\\252)-334(Balce)-1(r)1(e)-1(k.)]TJ 0 -13.549 Td[({)-284(T)83(o)-284(pan)-283(Jac)-1(ek,)-284(d)1(z)-1(i)1(e)-1(d)1(z)-1(ico)28(w)-1(y)-283(brat)-284(z)-284(W)83(ol)1(i!)-284({)-284(ob)-55(ja\\261ni)1(a\\252)-285(G)1(rz)-1(ela.)-284(A\\273)-284(p)-27(o)27(wstali,)]TJ -27.879 -13.549 Td[(b)28(y)-329(s)-1(i\\246)-330(p)1(rzyjr)1(z)-1(e\\242)-1(,)-329(b)-27(o)-330(pan)-329(Jace)-1(k)-329(pr)1(z)-1(ec)-1(isk)56(a\\252)-330(s)-1(i)1(\\246)-330(z)-331(w)28(oln)1(a)-330(a)-330(o)-28(czam)-1(i)-329(k)28(ogo\\261)-330(s)-1(zuk)56(a\\252,)-330(a\\273)]TJ 0 -13.549 Td[(i)-333(natk)1(na\\252)-333(s)-1(i\\246)-333(na)-333(B)-1(ar)1(tk)56(a)-334(z)-334(t)1(artaku)-333(i)-333(z)-334(n)1(im)-334(p)-27(osz)-1(ed\\252)-333(p)-28(o)-27(d)-333(\\261)-1(cian\\246,)-333(do)-333(rze)-1(p)-27(ec)27(kic)28(h.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego)-334(on)-333(mo\\273e)-334(c)27(hcie\\242)-1(?)]TJ 0 -13.55 Td[({)-422(C)-1(zego,)-423(a)-422(ni)1(c)-1(ze)-1(go,)-422(tak)-422(se)-423(c)27(h)1(o)-28(dzi)-422(ino)-422(p)-27(o)-423(wsiac)27(h)1(,)-423(z)-422(c)27(h\\252op)1(am)-1(i)-422(gad)1(a,)-422(nie-)]TJ -27.879 -13.549 Td[(jedn)1(e)-1(m)28(u)-282(p)-28(omo\\273e)-1(,)-282(na)-282(s)-1(k)1(rz)-1(y)1(pk)56(ac)27(h)-282(p)1(rz)-1(y)1(gryw)28(a,)-283(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-282(pi)1(os)-1(n)1(e)-1(cz)-1(ek)-282(ucz)-1(y)84(,)-283(g\\252u)1(pa)28(wy)]TJ 0 -13.549 Td[(jest)-334(p)-27(ono.)]TJ 27.879 -13.549 Td[({)-333(Ko\\253cz)-334(n)1(o,)-334(G)1(rze)-1(la,)-333(co\\261)-334(zac)-1(z\\241\\252)-1(,)-333(k)28(o\\253)1(c)-1(z!)]TJ 0 -13.549 Td[({)-421(O)-422(l)1(e)-1(sie)-422(zac)-1(z\\241\\252e)-1(m)-422(m\\363)28(wi\\242)-1(;)-421(mo)-56(j)1(a)-422(rad)1(a)-422(j)1(e)-1(st)-421(tak)56(a,)-422(ab)29(y)-422(tej)-421(s)-1(p)1(ra)28(wy)-421(s)-1(am)28(ym)]TJ -27.879 -13.55 Td[(starym)-333(nie)-334(osta)28(wia\\242)-1(,)-333(b)-27(o)-333(z)-1(epsuj)1(\\241.)]TJ 27.879 -13.549 Td[({)-284(C\\363\\273)-1(,)-283(na)-284(t)1(o)-284(jes)-1(t)-284(t)28(y)1(lk)28(o)-284(jedn)1(a)-284(rad)1(a,)-284(zac)-1(zn\\241)-284(las)-284(ci\\241\\242)-1(,)-283(c)-1(a\\252\\241)-284(wsi\\241)-284(i\\261\\242)-1(,)-283(roze)-1(gn)1(a\\242)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(p)-27(oz)-1(w)28(oli\\242)-334(d)1(op)-28(\\363t)28(y)84(,)-333(a\\273)-334(s)-1(i)1(\\246)-334(dziedzic)-334(ze)-334(ws)-1(i\\241)-333(ni)1(e)-334(ugo)-27(dzi!)-333({)-334(r)1(z)-1(ek\\252)-333(m)-1(o)-28(cno)-333(An)28(tek.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(samo)-334(u)1(rad)1(z)-1(ali)-333(u)-333(K\\252\\246ba.)]TJ 0 -13.549 Td[({)-333(Uradzali!)-333(Al)1(e)-334(nie)-333(z)-1(rob)1(i\\241,)-333(b)-27(o)-334(k)1(to)-334(p)-27(\\363)-56(j)1(dzie)-334(za)-333(nimi?)]TJ 0 -13.55 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arze)-334(p)-27(\\363)-56(jd)1(\\241.)]TJ 0 -13.549 Td[({)-333(Nie)-334(ws)-1(zystkie.)]TJ 0 -13.549 Td[({)-333(Jak)-333(B)-1(or)1(yna)-333(p)-27(opro)28(w)28(adzi,)-333(to)-333(i)-334(wsz)-1(y)1(s)-1(cy)-333(p)-28(\\363)-55(jd)1(\\241)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(o)-334(n)1(ie)-334(wiad)1(a,)-333(c)-1(zy)-333(Mac)-1(i)1(e)-1(j)-333(ze)-1(c)28(hce)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(An)29(te)-1(k)-333(p)-27(opr)1(o)27(w)28(adzi)-333({)-334(wyk)1(rzykn\\241\\252)-333(zapalcz)-1(ywie)-333(B)-1(al)1(c)-1(erek.)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(t)27(wierd)1(z)-1(i)1(li)-429(m)27(u)-428(gor\\241co)-429(w)-1(sz)-1(y)1(s)-1(cy)83(,)-429(j)1(e)-1(d)1(e)-1(n)-428(t)28(ylk)28(o)-429(Gr)1(z)-1(ela)-429(s)-1(i)1(\\246)-430(spr)1(z)-1(ec)-1(iwia\\252,)-429(a)]TJ -27.879 -13.549 Td[(\\273e)-367(b)29(yw)27(a\\252)-366(w)28(e)-366(\\261)-1(wiec)-1(i)1(e)-367(i)-365(gaz)-1(et\\246)-366(\\377)-56(Zorz\\246)-1(\")-365(c)-1(zyt)28(yw)28(a\\252)-1(,)-365(to)-366(j)1(\\241\\252)-366(nau)1(c)-1(znie)-366(i)-366(k)1(ie)-1(j)-365(z)-366(ksi\\241\\273)-1(k)1(i)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\242)-1(,)-456(\\273)-1(e)-456(gw)27(a\\252tu)-456(n)1(ie)-457(mo\\273)-1(n)1(a)-457(cz)-1(yn)1(i\\242,)-457(b)-27(o)-456(w)-1(d)1(a)-456(s)-1(i\\246)-457(w)-456(to)-457(s\\241d)-456(i)-456(pr)1(\\363)-28(c)-1(z)-457(k)28(ozy)-456(nik)1(t)]TJ 0 -13.549 Td[(wi\\246c)-1(ej)-312(n)1(ie)-312(w)-1(sk)28(\\363ra,)-312(\\273e)-312(trze)-1(b)1(a,)-312(ab)28(y)-311(w)-1(i)1(e)-1(\\261)-312(s)-1(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-1(a)-311(z)-313(miasta)-312(adw)28(ok)56(ata,)-312(a)-312(ten)-312(b)29(y)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-334(p)-27(o)-333(s)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(ci)-333(wyryc)28(h)28(to)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[(Nie)-325(c)27(h)1(c)-1(i)1(e)-1(li)-324(go)-325(s\\252uc)27(h)1(a\\242)-325(d\\252ugo)-324(i)-325(j)1(aki)-325(tak)1(i)-325(p)1(rze)-1(kp)1(iw)27(a\\252,)-324(oz)-1(e\\271li\\252)-325(si\\246)-325(te)-1(\\273)-325(sro)-28(d)1(z)-1(e)-325(i)]TJ -27.879 -13.55 Td[(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-466(Na)-466(o)-55(jc\\363)27(w)-466(wyr)1(z)-1(ek)55(acie,)-466(\\273e)-467(g\\252u)1(pie,)-466(a)-466(sami)-466(ani)-465(z)-1(a)-466(gr)1(os)-1(z)-466(p)-28(om)28(y\\261le)-1(n)1(ia)-466(n)1(ie)]TJ -27.879 -13.549 Td[(mac)-1(ie,)-333(a)-333(jeno)-333(jak)-333(te)-334(d)1(z)-1(ieci,)-333(c)-1(o)-333(jes)-1(zcz)-1(e)-334(b)1(a\\252ykuj)1(\\241,)-333(c)-1(u)1(dze)-334(p)-27(o)27(wtar)1(z)-1(acie!)]TJ 27.879 -13.549 Td[({)-333(B)-1(or)1(yna)-333(z)-334(Jagu)1(s)-1(i\\241)-333(i)-333(dzieuc)28(hami!)-333({)-334(zau)28(w)28(a\\273)-1(y)1(\\252)-334(kt\\363r)1(y\\261)-1(.)]TJ 0 -13.549 Td[(An)28(tek,)-346(kt\\363r)1(e)-1(n)-346(c)28(hcia\\252)-347(co\\261)-347(o)-28(d)1(p)-28(o)28(wiedzie\\242)-347(Grze)-1(l)1(i,)-346(z)-1(milk)1(n\\241\\252)-346(i)-347(p)-27(olec)-1(i)1(a\\252)-347(o)-28(czam)-1(i)]TJ -27.879 -13.55 Td[(za)-334(Jagn)1(\\241.)]TJ 27.879 -13.549 Td[(P)28(\\363\\271no)-260(p)1(rzysz)-1(li)1(,)-260(ju)1(\\273)-260(p)-28(o)-259(k)28(olac)-1(j)1(i,)-260(b)-27(o)-260(stary)-259(d\\252u)1(go)-260(s)-1(i)1(\\246)-261(op)1(iera\\252)-260(sk)55(amleniom)-260(J\\363zki)]TJ\nET\nendstream\nendobj\n844 0 obj <<\n/Type /Page\n/Contents 845 0 R\n/Resources 843 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n843 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n848 0 obj <<\n/Length 10076     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(262)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(i)-330(namo)28(w)27(om)-331(Nastki,)-330(cz)-1(ek)56(a\\252,)-331(a\\273)-331(Jagu)1(s)-1(i)1(a)-331(p)-27(opr)1(os)-1(i,)-330(ale)-331(on)1(a)-331(zaraz)-331(p)-27(o)-331(ob)1(iedzie)-331(zap)-28(o-)]TJ 0 -13.549 Td[(wiedzia\\252a)-387(ostro,)-387(\\273e)-387(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-387(na)-387(m)28(uzyk)28(\\246,)-387(o)-28(d)1(par\\252)-386(jej)-387(ostro,)-386(i\\273)-387(si\\246)-387(nog\\241)-387(z)-387(c)28(ha\\252up)29(y)]TJ 0 -13.549 Td[(ni)1(e)-334(ru)1(s)-1(zy)83(,)-333(n)1(ie)-334(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(w)28(\\363)-56(j)1(ta,)-333(to)-333(nigd)1(z)-1(i)1(e)-334(nie)-333(p)-28(\\363)-55(jd)1(z)-1(ie.)]TJ 27.879 -13.549 Td[(Nie)-370(p)1(rosi\\252a)-370(go)-370(j)1(u\\273)-370(wi\\246c)-1(ej,)-369(za)27(wzi\\246)-1(\\252a)-369(s)-1(i)1(\\246)-371(t)1(ak,)-370(\\273e)-370(ani)-369(t)28(ym)-370(s\\252o)27(w)28(em)-370(w)-1(i)1(\\246)-1(ce)-1(j)-369(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-260(o)-28(d)1(e)-1(zw)27(a\\252a,)-259(p)-27(op\\252ak)1(iw)27(a\\252a)-259(jeno)-259(p)-27(o)-259(k)56(\\241tac)27(h,)-258(drzwiami)-259(trzas)-1(k)56(a\\252a,)-259(wys)-1(ta)28(w)28(a\\252a)-259(prze)-1(d)]TJ 0 -13.55 Td[(domem)-284(na)-283(mroz)-1(i)1(e)-284(i)-284(cisk)56(a\\252)-1(a)-283(si\\246)-284(p)-27(o)-284(c)27(h)1(a\\252up)1(ie)-284(jak)-283(ten)-283(z)-1(\\252y)-283(wiatr,)-283(a\\273e)-284(m)-1(r)1(oz)-1(i)1(\\252)-1(o)-283(o)-28(d)-283(n)1(ie)-1(j)]TJ 0 -13.549 Td[(z\\252)-1(o\\261ci\\241,)-286(a)-285(gdy)-285(do)-285(k)28(olac)-1(j)1(i)-286(siad)1(ali,)-285(nie)-286(p)-27(osz)-1(\\252a)-286(j)1(e)-1(\\261\\242)-1(,)-285(jeno)-285(z)-1(acz\\246)-1(\\252a)-286(w)28(e)-1(\\252n)1(iaki)-285(z)-1(e)-286(skrzyn)1(i)]TJ 0 -13.549 Td[(dob)29(yw)27(a\\242,)-333(pr)1(z)-1(ymierza\\242)-334(a)-333(przystra)-55(ja\\242)-334(si\\246.)]TJ 27.879 -13.549 Td[(T)83(o)-281(i)-281(c)-1(\\363\\273)-281(m)-1(i)1(a\\252)-282(stary)-281(p)-27(o)-28(cz)-1(\\241\\242,)-281(kl\\241\\252,)-281(p)1(rz)-1(y)1(gadyw)28(a\\252,)-281(z)-1(ap)-27(o)28(wiada\\252,)-281(\\273e)-282(ni)1(e)-282(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(w)-330(k)28(o\\253cu)-330(jes)-1(zc)-1(ze)-331(j)1(\\241)-331(sielni)1(e)-331(m)27(u)1(s)-1(i)1(a\\252)-331(p)1(rze)-1(p)1(ras)-1(za\\242)-331(i)-330(r)1(ad)-330(nierad)-329(p)-28(o)28(wi\\363)-28(d)1(\\252)-331(d)1(o)-331(k)56(ar)1(c)-1(zm)27(y)84(.)]TJ 27.879 -13.549 Td[(Hard)1(o)-364(an)1(o)-364(w)28(c)27(ho)-27(dzi\\252,)-364(wyn)1(io\\261)-1(l)1(e)-364(i)-364(ma\\252o)-364(z)-364(ki)1(m)-364(s)-1(i\\246)-364(wita\\252,)-363(b)-27(o)-364(i)-363(r\\363)28(wn)28(yc)27(h)-363(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.55 Td[(ni)1(e)-1(wiela,)-425(jak)28(o)-426(\\273e)-426(co)-426(na)-55(jp)1(ierws)-1(i)-425(u)-425(w)27(\\363)-55(jta)-425(b)28(yli)-425(na)-425(c)27(h)1(rzc)-1(in)1(ac)27(h,)-425(syna)-425(z)-1(a\\261)-426(n)1(ie)-426(sp)-28(o-)]TJ 0 -13.549 Td[(strze)-1(g\\252,)-333(c)27(h)1(o)-28(c)-1(i)1(a\\273)-334(s)-1(i)1(\\246)-334(pil)1(nie)-333(roz)-1(gl)1(\\241da\\252)-333(w)-334(t\\252oku)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-252(za\\261)-252(ju)1(\\273)-252(nie)-252(spu)1(s)-1(zc)-1(za\\252)-252(o)-28(cz)-1(\\363)28(w)-252(z)-252(Jagu)1(s)-1(i,)-251(s)-1(t)1(a\\252)-1(a)-251(w\\252)-1(a\\261ni)1(e)-252(przy)-252(sz)-1(y)1(nkw)28(as)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opaki)-287(s)-1(i)1(\\246)-289(d)1(o)-288(ni)1(e)-1(j)-287(s)-1(y)1(pn\\246li)-287(z)-1(ap)1(rasz)-1(a\\242)-288(do)-288(t)1(a\\253ca,)-288(o)-28(d)1(m)-1(a)28(wia\\252a)-288(p)-27(ogadu)1(j\\241c)-288(w)27(eso\\252)-1(o,)-287(a)]TJ 0 -13.549 Td[(uk)1(radk)1(ie)-1(m)-308(p)1(rze)-1(b)1(ie)-1(r)1(a)-56(j)1(\\241c)-308(o)-28(c)-1(zami)-308(ws)-1(k)1(r\\363\\261)-308(lud)1(z)-1(i)-307({)-308(tak)56(a)-307(uro)-27(dna)-307(w)-1(i)1(dzia\\252a)-308(si\\246)-308(dzisia)-56(j)1(,)]TJ 0 -13.55 Td[(\\273e)-315(c)28(ho)-28(\\242)-314(nar)1(\\363)-28(d)-313(ju)1(\\273)-315(b)28(y)1(\\252)-314(nap)1(it)28(y)83(,)-313(a)-314(s)-1(p)-27(ogl\\241d)1(ali)-314(n)1(a)-314(ni)1(\\241)-314(z)-314(p)-28(o)-28(d)1(z)-1(i)1(w)27(em)-1(.)-313(P)28(onad)-313(ws)-1(zystkie)]TJ 0 -13.549 Td[(pi)1(\\246)-1(kn)1(iejsz)-1(a.)-400(A)-400(p)1(rze)-1(cie)-1(\\273)-400(b)28(y\\252a)-400(tam)-400(i)-400(Nas)-1(tk)56(a,)-400(an)1(o)-401(d)1(o)-400(m)-1(al)1(w)-1(y)-400(z)-400(c)-1(zerwie)-1(n)1(i)-400(s)-1(zmat)-400(i)]TJ 0 -13.549 Td[(wyrostu)-311(p)-28(o)-27(dobn)1(a,)-312(b)28(y)1(\\252a)-312(i)-312(W)84(e)-1(r)1(onk)56(a)-312(P)1(\\252)-1(oszk)28(\\363)27(wn)1(a)-312(kiej)-312(georgin)1(ia)-312(r)1(umiana)-311(i)-312(w)-312(sobie)]TJ 0 -13.549 Td[(wielc)-1(e)-427(p)-27(o)-28(du)1(fa\\252a,)-427(b)29(y\\252a)-427(So)-28(c)28(h\\363)28(wna,)-427(skr)1(z)-1(at)-427(ledwie)-427(dor)1(os)-1(\\252y)84(,)-427(gib)1(ki)-427(i)-426(z)-428(g\\246bu)1(s)-1(i\\241)-427(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ten)-289(c)-1(u)1(kier)-289(s)-1(\\252o)-27(dk)56(\\241,)-289(b)28(y\\252y)-289(i)-289(dr)1(ugie)-289(uro)-27(dne,)-289(wyros\\252e)-1(,)-289(ci\\241)-28(gn)1(\\241c)-1(e)-289(o)-28(c)-1(zy)-289(par)1(obk)28(\\363)28(w,)-290(a)-289(j)1(ak)]TJ 0 -13.55 Td[(Balc)-1(erk)28(\\363)28(wna)-231(M)1(arysia,)-231(n)1(a)-231(p)-28(o)-28(d)1(z)-1(i)1(w)-232(wyr)1(os)-1(\\252a,)-231(b)1(ia\\252a,)-231(rzepiasta)-231(dziew)-1(k)56(a)-231(i)-231(p)1(ierws)-1(za)-231(w)27(e)]TJ 0 -13.549 Td[(ws)-1(i)-284(tan)1(e)-1(cznica)-284({)-285(al)1(e)-285(\\273adna)-284(an)1(i)-284(s)-1(i)1(\\246)-285(r\\363)28(wna\\252a)-284(z)-285(Jagn)1(\\241,)-284(\\273)-1(ad)1(na.)-284(P)1(rze)-1(n)1(os)-1(i\\252a)-284(ws)-1(zystkie)]TJ 0 -13.549 Td[(ur)1(o)-28(d\\241,)-263(stro)-55(jem)-1(,)-263(p)-27(osta)28(w)27(\\241)-263(i)-263(t)28(ymi)-263(m)-1(o)-27(drymi,)-263(j)1(arz\\241c)-1(ymi)-263(\\261le)-1(p)1(iami,)-263(jak)28(o)-263(r\\363\\273a)-263(pr)1(z)-1(enosi)]TJ 0 -13.549 Td[(one)-458(n)1(as)-1(tu)1(rcje)-458(a)-457(m)-1(alwy)84(,)-458(a)-457(ge)-1(or)1(ginie,)-457(a)-458(maki,)-457(\\273)-1(e)-458(zgo\\252a)-458(p)-27(o)-28(dl)1(e)-1(j)1(s)-1(ze)-458(s)-1(i\\246)-458(p)1(rzy)-458(n)1(ie)-1(j)]TJ 0 -13.549 Td[(widz\\241,)-411(t)1(ak)-411(ci)-411(on)1(a)-411(pr)1(z)-1(enosi\\252a)-411(ws)-1(zystkie)-411(i)-410(nad)-410(w)-1(szys)-1(tk)1(ie)-411(pan)1(o)27(w)28(a\\252a.)-411(P)1(rzys)-1(tr)1(oi\\252a)]TJ 0 -13.55 Td[(si\\246)-272(te)-1(\\273)-271(dzis)-1(i)1(a)-56(j)-271(kiej)-271(na)-271(jaki)1(e)-272(w)27(es)-1(ele;)-272(w)28(e)-1(\\252n)1(iak)-271(wdz)-1(i)1(a\\252a)-272(gor\\241co\\273\\363)-1(\\252t)28(y)-271(w)-272(zielone)-272(a)-271(bia\\252e)]TJ 0 -13.549 Td[(pasy)84(,)-400(s)-1(tan)1(ik)-400(za\\261)-401(z)-401(mo)-28(d)1(rego)-401(ak)1(s)-1(amitu)1(,)-400(dzie)-1(r)1(gan)28(y)-400(z\\252)-1(ot)1(\\241)-401(n)1(itk)56(\\241)-400(i)-400(g\\252\\246)-1(b)-27(ok)28(o,)-400(do)-400(p)-27(\\363\\252)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(s)-1(i)-350(wyci\\246)-1(t)28(y)84(,)-350(a)-350(na)-350(k)28(osz)-1(u)1(li)-350(c)-1(i)1(e)-1(n)1(iu\\261kiej,)-350(k)1(t\\363ra)-350(bielu)1(c)27(hn)1(\\241)-350(fr)1(yz)-1(k)56(\\241)-350(bu)1(rzy\\252a)-350(s)-1(i\\246)-350(s)-1(u)1(to)]TJ 0 -13.549 Td[(k)28(o\\252o)-367(s)-1(zyi)-367(i)-367(pr)1(z)-1(y)-367(d)1(\\252)-1(on)1(iac)27(h)1(,)-367(z)-1(a)28(wies)-1(i\\252a)-367(rz\\246)-1(d)1(y)-367(k)28(orali)1(,)-367(bur)1(s)-1(zt)28(yn\\363)28(w)-367(i)-367(on)28(yc)27(h)-367(p)-27(ere\\252)-1(,)-367(n)1(a)]TJ 0 -13.549 Td[(w\\252os)-1(ac)28(h)-396(mia\\252a)-395(c)27(h)28(u)1(s)-1(tec)-1(zk)28(\\246)-396(jedw)28(abn)1(\\241,)-396(mo)-28(d)1(ra)28(w)27(\\241,)-395(w)-396(r)1(\\363\\273)-1(o)28(wy)-396(r)1(z)-1(u)1(c)-1(ik)-395(far)1(b)-28(o)28(w)28(an\\241,)-395(a)]TJ 0 -13.55 Td[(k)28(o\\253ce)-334(o)-28(d)-332(niej)-333(pu)1(\\261)-1(ci\\252a)-333(na)-333(plec)-1(y)84(.)]TJ 27.879 -13.549 Td[(Bra\\252y)-302(j)1(\\241)-302(za)-302(to)-302(p)1(rzystro)-56(j)1(e)-1(n)1(ie)-302(k)28(obi)1(e)-1(t)28(y)-301(na)-302(ozory)-301(i)-302(p)1(rzyma)27(wia\\252y)-301(z)-1(\\252o\\261liwie,)-302(n)1(ie)]TJ -27.879 -13.549 Td[(db)1(a\\252a)-430(ta)-429(o)-430(to)-430(w)28(cale)-1(,)-429(do)-55(jr)1(z)-1(a\\252a)-430(wn)1(e)-1(t)-429(An)28(tk)56(a)-430(i)-429(p)-28(ok)1(ra\\261)-1(n)1(ia)28(ws)-1(zy)-430(z)-430(r)1(ado\\261c)-1(i,)-429(jak)28(o)-429(ta)]TJ 0 -13.549 Td[(w)28(o)-28(da)-402(p)-28(o)-28(d)-402(zac)27(h\\363)-27(d,)-402(o)-28(dwr\\363)-27(c)-1(i\\252a)-402(s)-1(i\\246)-403(o)-28(d)-402(starego,)-403(kt)1(\\363re)-1(m)28(u)-402(\\233)-1(y)1(d)-403(cosik)-403(gad)1(a\\252)-403(i)-403(zaraz)]TJ 0 -13.549 Td[(p)-27(opro)28(w)28(adzi\\252)-333(do)-333(alkierza,)-333(gdzie)-334(i)-333(p)-27(oz)-1(osta\\252.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-335(\\273e)-336(An)29(te)-1(k)-334(ino)-335(t)1(e)-1(go)-335(cz)-1(ek)56(a\\252,)-335(b)-27(o)-335(w)-1(n)1(e)-1(t)-334(b)-28(ok)1(ie)-1(m)-335(k)56(arcz)-1(m)28(y)-335(si\\246)-335(prze)-1(cisn\\241\\252)-335(i)]TJ -27.879 -13.55 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-334(wita\\252)-333(s)-1(i\\246)-333(z)-334(nimi,)-333(c)28(ho)-28(\\242)-334(J)1(\\363z)-1(k)56(a)-333(um)27(y)1(\\261)-1(ln)1(ie)-334(si\\246)-334(o)-28(d)1(wr\\363)-28(ci\\252a.)]TJ 27.879 -13.549 Td[({)-333(Przysz)-1(l)1(i\\261)-1(cie)-334(n)1(a)-334(m)28(uzyk)28(\\246)-334(cz)-1(y)-333(n)1(a)-334(zm\\363)27(win)29(y)-334(M)1(a\\252go\\261)-1(ki)1(?)]TJ 0 -13.549 Td[({)-333(Na)-334(m)28(uzyk)28(\\246...)-333({)-333(o)-28(dp)1(ar\\252a)-334(cic)28(ho,)-333(b)-27(o)-334(g\\252os)-334(j)1(e)-1(j)-333(ca\\252kiem)-334(o)-28(d)1(j\\246\\252o)-334(wzrusze)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[(St)1(ali)-391(przy)-391(s)-1(ob)1(ie)-392(cz)-1(as)-391(jaki)1(\\261)-392(b)-28(ez)-392(s\\252o)27(w)28(a,)-391(jeno)-391(dy)1(c)27(hal)1(i)-391(pr\\246dze)-1(j)1(,)-391(a)-392(u)1(krad)1(kiem)]TJ -27.879 -13.549 Td[(zagl\\241dali)-432(s)-1(ob)1(ie)-434(w)-433(o)-28(czy)83(,)-433(tan)1(e)-1(cz)-1(n)1(icy)-433(z)-1(ep)-27(c)27(hn)1(\\246)-1(l)1(i)-433(ic)27(h)-432(p)-27(o)-28(d)-433(\\261c)-1(i)1(an\\246,)-433(Nas)-1(tk)28(\\246)-433(p)-27(o)-56(j)1(\\241\\252)-434(d)1(o)]TJ 0 -13.55 Td[(ta\\253)1(c)-1(a)-333(Szyme)-1(k,)-333(J\\363zk)56(a)-334(te\\273)-334(si\\246)-334(gd)1(z)-1(ie\\261)-334(zap)-28(o)-27(dzia\\252a,)-333(\\273)-1(e)-334(sami)-334(zostali.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(d)1(nia)-333(wyc)-1(zekuj)1(\\246)-1(,)-333(co)-334(d)1(nia.)1(..)-333({)-334(sz)-1(epn)1(\\241\\252)-334(cic)28(ho.)]TJ\nET\nendstream\nendobj\n847 0 obj <<\n/Type /Page\n/Contents 848 0 R\n/Resources 846 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n846 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n851 0 obj <<\n/Length 9812      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(263)]TJ -330.353 -35.866 Td[({)-499(A)-498(mog\\246)-499(to)-499(wyj)1(\\261)-1(\\242?...)-498(pil)1(n)28(uj)1(\\241)-499(mnie)-499(o)-27(dp)1(ar\\252a)-499(ze)-499(dr)1(\\273)-1(eniem,)-499(r)1(\\246)-1(ce)-499(s)-1(i\\246)-499(i)1(c)27(h)]TJ -27.879 -13.549 Td[(sp)-28(otk)56(a\\252y)-310(sam)-1(e)-310(jak)28(o\\261,)-310(cis)-1(n)1(\\246)-1(l)1(i)-310(s)-1(i)1(\\246)-311(b)1(io)-28(dr)1(am)-1(i)1(,)-310(p)-27(obledli)-309(ob)-28(o)-55(je,)-310(tc)27(h)29(u)-310(im)-310(br)1(ak)28(o)27(w)28(a\\252o,)-310(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(ac)28(h)-333(s)-1(k)1(ry)-333(s)-1(i\\246)-333(jarzy\\252y)84(,)-333(a)-334(w)-333(s)-1(ercac)27(h)-333(b)28(y)1(\\252)-1(a)-333(tak)56(a)-333(m)27(uzyk)56(a,)-333(\\273)-1(e)-333(i)-333(nie)-334(wyp)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)]TJ 27.879 -13.549 Td[({)-392(Od)1(s)-1(t\\241)-27(p)-392(\\271dziebk)28(o,)-392(p)1(u\\261\\242)-1(!)1(...)-392({)-391(prosi\\252a)-392(cic)27(h)29(utk)28(o,)-392(b)-27(o)-28(\\242)-392(p)-27(e)-1(\\252n)1(o)-392(b)28(y\\252o)-392(lu)1(dzi)-392(d)1(o-)]TJ -27.879 -13.549 Td[(ok)28(o\\252a.)]TJ 27.879 -13.55 Td[(Nie)-341(o)-28(d)1(rze)-1(k\\252)-340(na)-341(t)1(o,)-341(j)1(e)-1(n)1(o)-341(uj)1(\\241\\252)-341(j\\241)-340(m)-1(o)-27(c)-1(n)1(o)-341(wp)-28(\\363\\252,)-340(g\\246)-1(st)28(w)27(\\246)-341(r)1(oz)-1(tr)1(\\241c)-1(i\\252,)-340(wywi\\363)-28(d\\252)-340(w)]TJ -27.879 -13.549 Td[(k)28(o\\252o)-333(i)-334(k)1(rzykn\\241\\252)-333(do)-333(m)27(u)1(z)-1(y)1(k)55(an)29(t\\363)28(w)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ob)-27(e)-1(rt)1(as)-1(a;)-333(c)27(h)1(\\252opacy)83(,)-333(a)-333(os)-1(tr)1(o!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-288(\\273e)-288(trzas)-1(n)1(\\246)-1(li)-287(z)-288(c)-1(a\\252ej)-288(mo)-28(cy)83(,)-287(a\\273)-288(basic)-1(a)-287(j\\246kn\\246\\252a,)-288(znali)-287(go)-288(p)1(rz)-1(ecie)-1(\\273,)-288(\\273e)-288(jak)]TJ -27.879 -13.549 Td[(si\\246)-334(rozo)-28(c)27(h)1(o)-28(ci,)-333(to)-334(got)1(\\363)27(w)-333(c)-1(a\\252ej)-333(k)56(arcz)-1(mie)-334(f)1(un)1(do)28(w)27(a\\242!)]TJ 27.879 -13.549 Td[(A)-430(za)-430(n)1(im)-430(pu\\261cili)-430(si\\246)-430(w)-430(tan)-429(i)-430(j)1(e)-1(go)-430(k)56(amrat)28(y)84(,)-430(ta\\253)1(c)-1(o)28(w)27(a\\252)-429(P\\252os)-1(zk)56(a,)-430(ta\\253)1(c)-1(o)28(w)28(a\\252)]TJ -27.879 -13.55 Td[(Balc)-1(erek,)-232(ta\\253co)28(w)27(a\\252)-232(Grze)-1(l)1(a,)-233(t)1(a\\253c)-1(o)28(w)28(a\\252y)-233(i)-232(d)1(rugi)1(e)-1(,)-232(a)-232(Mateusz)-1(,)-232(\\273)-1(e)-232(m)27(u)-232(to)-232(\\273)-1(ebr)1(a)-233(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(opuszc)-1(za\\252)-1(y)84(,)-333(to)-333(ino)-333(pr)1(z)-1(y)1(tup)28(y)1(w)27(a\\252)-333(a)-334(kr)1(z)-1(y)1(k)55(a\\252)-333(la)-333(z)-1(ac)28(h\\246t)28(y!)]TJ 27.879 -13.549 Td[(An)28(tek)-293(za\\261)-293(h)28(ula\\252)-292(z)-1(ap)1(am)-1(i\\246tale,)-293(wywi\\363)-28(d)1(\\252)-293(si\\246)-293(napr)1(z)-1(\\363)-27(d,)-293(p)1(rze)-1(gon)1(i\\252)-293(ws)-1(zystkic)28(h)-293(i)]TJ -27.879 -13.549 Td[(wia\\252)-313(w)-313(pierwsz)-1(\\241)-313(p)1(ar\\246)-313(tak)-313(siarcz)-1(y)1(\\261)-1(cie)-1(,)-312(\\273)-1(e)-313(ju)1(\\273)-313(nic)-313(ni)1(e)-314(p)1(am)-1(i\\246ta\\252)-313(i)-313(n)1(a)-313(ni)1(c)-314(n)1(i)-313(zw)27(a\\273a\\252,)]TJ 0 -13.549 Td[(b)-27(o)-334(Jagu)1(\\261)-334(cis)-1(n)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(do)-333(ni)1(e)-1(go)-333(s)-1(\\252o)-27(dk)28(o,)-333(a)-333(raz)-334(w)-334(r)1(az)-1(,)-333(ledwie)-333(dec)27(h)-333(\\252api)1(\\241c)-1(,)-333(p)1(ros)-1(i)1(\\252)-1(a:)]TJ 27.879 -13.55 Td[({)-333(Je)-1(sz)-1(cze)-1(,)-333(Jan)28(to\\261,)-333(jes)-1(zc)-1(ze)-334(\\271dziebk)28(o!)]TJ 0 -13.549 Td[(D\\252ugo)-394(ta\\253)1(c)-1(o)28(w)28(ali,)-394(o)-27(dp)-27(o)-28(c)-1(z\\246)-1(l)1(i)-394(t)28(yla,)-394(b)28(y)-393(z)-1(\\252apa\\242)-394(ni)1(e)-1(co\\261)-395(tc)28(h)28(u)-394(n)1(api\\242)-394(s)-1(i\\246)-394(pi)1(w)27(a,)-394(i)]TJ -27.879 -13.549 Td[(zno)28(wu)-307(p)-27(osz)-1(li)-306(w)-306(tan)-306(nie)-307(b)1(ac)-1(z\\241c)-1(,)-306(\\273e)-307(lud)1(z)-1(i)1(e)-307(z)-1(wraca)-56(j)1(\\241)-307(n)1(a)-307(n)1(ic)27(h)-306(u)28(w)28(ag\\246,)-307(co\\261)-307(s)-1(zep)-28(cz)-1(\\241)-306(a)]TJ 0 -13.549 Td[(kr)1(z)-1(ywi\\241)-333(si\\246)-334(i)-333(w)-334(g\\252os)-334(d)1(ogadu)1(j\\241.)]TJ 27.879 -13.549 Td[(Ale)-404(An)28(tk)28(o)28(wi)-404(ju)1(\\273)-405(b)29(y\\252o)-404(ws)-1(zys)-1(t)1(k)28(o)-404(jedno)-403(dzis)-1(ia)-55(j,)-403(s)-1(k)28(or)1(o)-404(jeno)-404(p)-27(o)-28(c)-1(zu\\252)-404(j)1(\\241)-404(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(sobie,)-443(sk)28(oro)-443(p)1(rz)-1(y)1(c)-1(isn\\241\\252)-443(d)1(o)-443(si\\246)-1(,)-442(\\273)-1(e)-443(a\\273)-443(s)-1(i\\246)-443(pr)1(\\246)-1(\\273y\\252a)-443(i)-443(p)1(rzywiera\\252a)-443(te)-443(lub)-27(e)-443(m)-1(o)-27(dre)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)84(,)-456(to)-456(s)-1(i\\246)-457(j)1(u\\273)-456(b)28(y\\252)-456(c)-1(a\\252kiem)-457(zapami\\246ta\\252!)-456(R)-1(ad)1(o\\261)-1(\\242)-456(w)-457(n)1(im)-457(gra\\252a)-456(i)-456(takie)-456(w)27(es)-1(ele,)]TJ 0 -13.549 Td[(jak)-316(kieb)28(y)-317(si\\246)-317(ten)-317(zwie)-1(sno)28(wy)-317(d)1(z)-1(i)1(e)-1(\\253)-316(w)-317(nim)-317(zrob)1(i\\252.)-317(Zap)-27(om)-1(n)1(ia\\252)-317(o)-317(lu)1(dziac)27(h)-316(i)-317(\\261wiec)-1(ie)]TJ 0 -13.549 Td[(ca\\252)-1(y)1(m)-1(,)-251(krew)-252(w)-252(nim)-252(za)27(wr)1(z)-1(a\\252a)-252(i)-252(mo)-28(c)-252(ws)-1(ta\\252a)-251(tak)55(a)-251(hard)1(a,)-252(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iw)27(a,)-251(a\\273)-253(m)28(u)-251(piersi)]TJ 0 -13.549 Td[(rozpi)1(e)-1(ra\\252o!)-240(A)-240(Jagu)1(\\261)-241(te\\273)-241(b)28(y)1(\\252)-1(a)-240(ca\\252kiem)-241(j)1(akb)28(y)-240(ut)1(opion)1(a)-241(w)-240(lu)1(b)-28(o\\261c)-1(i)-240(i)-240(w)-240(zapami\\246)-1(t)1(aniu)1(!)]TJ 0 -13.55 Td[(Unosi\\252)-331(j\\241)-331(jak)-331(ten)-331(sm)-1(ok)1(,)-331(nie)-332(op)1(iera\\252a)-331(s)-1(i\\246)-331(te)-1(m)28(u,)-331(b)-27(o)-332(j)1(ak\\273e)-1(,)-331(mog\\252ab)28(y)-331(to,)-331(kiej)-331(kr)1(\\246)-1(ci\\252)]TJ 0 -13.549 Td[(ni)1(\\241,)-375(p)-27(onosi\\252,)-375(p)1(rzycis)-1(k)56(a\\252,)-374(\\273)-1(e)-375(c)27(h)28(wil)1(am)-1(i)-374(mro)-28(cz)-1(a\\252o)-375(w)-375(n)1(iej)-375(i)-374(traci\\252a)-375(z)-375(p)1(am)-1(i)1(\\246)-1(ci)-375(\\261wiat)]TJ 0 -13.549 Td[(ws)-1(zyste)-1(k)1(,)-498(a)-498(gra\\252o)-498(w)-498(n)1(iej)-498(taki)1(m)-498(w)27(es)-1(elem)-1(,)-497(m)-1(\\252o)-28(d)1(o\\261)-1(ci\\241,)-498(u)1(c)-1(i)1(e)-1(c)28(h\\241,)-498(\\273e)-498(ju)1(\\273)-499(n)1(ic)-498(nie)]TJ 0 -13.549 Td[(widzia\\252a,)-408(i)1(no)-408(te)-408(j)1(e)-1(go)-408(b)1(rwie)-408(cz)-1(arn)1(e)-1(,)-407(te)-408(o)-28(c)-1(zy)-408(p)1(rze)-1(p)1(a\\261)-1(ciste)-1(,)-407(a)-408(te)-408(w)27(ar)1(gi)-408(cz)-1(erw)28(one,)]TJ 0 -13.549 Td[(ci\\241)-28(gn\\241ce!)]TJ 27.879 -13.55 Td[(A)-350(s)-1(kr)1(z)-1(yp)1(ice)-351(w)-1(y)1(c)-1(in)1(a\\252y)-351(siar)1(c)-1(zy\\261)-1(cie,)-351(za)28(w)27(o)-27(dz\\241c)-1(y)-350(i)-351(n)1(ies)-1(\\252y)-350(s)-1(i)1(\\246)-351(pies)-1(n)1(e)-1(czk)55(\\241,)-350(jak)28(o)]TJ -27.879 -13.549 Td[(ten)-308(\\273ni)1(w)-1(n)29(y)-308(wic)28(her)-308(p)1(al\\241c\\241)-1(,)-307(o)-28(d)-307(kt\\363r)1(e)-1(j)-307(kr)1(e)-1(w)-308(si\\246)-308(w)-308(ogie\\253)-307(pr)1(z)-1(em)-1(i)1(e)-1(n)1(ia\\252a)-308(i)-307(s)-1(erce)-308(gra\\252o)]TJ 0 -13.549 Td[(w)28(e)-1(se)-1(lem)-357(a)-356(mo)-28(c\\241;)-356(basy)-356(z)-1(a\\261)-356(p)-28(ob)-27(ekiw)28(a\\252)-1(y)-355(dry)1(gliwie)-357(d)1(o)-356(taktu,)-355(\\273)-1(e)-357(same)-357(nogi)-355(nios\\252y)]TJ 0 -13.549 Td[(i)-399(tr)1(z)-1(ask)55(a\\252y)-399(h)1(o\\252ub)-27(c)-1(e;)-399(\\015)1(e)-1(t)-399(za\\261)-400(p)1(rze)-1(gwizdyw)28(a\\252)-399(i)-399(w)27(ab)1(i\\252)-399(kiej)-399(ten)-399(k)28(os)-399(na)-399(zw)-1(i)1(e)-1(sn\\246,)-399(a)]TJ 0 -13.549 Td[(tak)56(\\241)-247(lu)1(b)-27(o\\261)-1(ci\\241)-247(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252)-1(,)-246(tak)-246(s)-1(erce)-247(ot)27(wiera\\252,)-246(a\\273)-247(c)-1(i)1(arki)-246(przec)27(ho)-27(dzi\\252y)83(,)-246(w)-247(g\\252o)28(w)-1(i)1(e)-247(s)-1(i\\246)]TJ 0 -13.549 Td[(m\\241c)-1(i\\252o,)-320(tc)27(h)29(u)-321(b)1(rak)28(o)28(w)27(a\\252o,)-320(a)-321(zaraze)-1(m)-321(c)28(hcia\\252o)-321(si\\246)-321(p\\252ak)56(a\\242)-321(i)-321(\\261m)-1(i)1(a\\242)-1(,)-320(i)-321(k)1(rz)-1(y)1(k)55(a\\242,)-320(i)-321(tu)1(li\\242,)]TJ 0 -13.55 Td[(i)-284(ca)-1(\\252o)28(w)28(a\\242)-1(,)-284(i)-284(lecie)-1(\\242)-284(gdzie)-1(\\261)-284(w)27(e)-285(\\261wiat)-284(ws)-1(zyste)-1(k,)-284(w)-284(z)-1(ap)1(ami\\246)-1(tan)1(ie)-285({)-284(to)-284(i)-284(ta\\253co)28(w)27(al)1(i)-284(tak)]TJ 0 -13.549 Td[(ogni)1(\\261)-1(cie,)-334(a\\273)-333(s)-1(i\\246)-333(k)55(ar)1(c)-1(zm)-1(a)-333(tr)1(z)-1(\\246s)-1(\\252a)-333(i)-333(dygota\\252y)-333(b)-27(e)-1(cz)-1(k)1(i)-333(z)-334(m)27(u)1(z)-1(yk)56(an)28(t)1(am)-1(i.)]TJ 27.879 -13.549 Td[(Z)-291(pi\\246\\242)-1(d)1(z)-1(i)1(e)-1(si\\241t)-291(par)-291(mieni\\252o)-291(s)-1(i)1(\\246)-292(w)-292(t)28(ym)-291(k)28(ole)-292(wielgac)27(h)1(n)28(ym,)-291(tac)-1(za)-56(j)1(\\241c)-1(ym)-291(s)-1(i)1(\\246)-292(o)-28(d)]TJ -27.879 -13.549 Td[(\\261c)-1(ian)29(y)-269(do)-269(\\261c)-1(i)1(an)28(y)83(,)-268(roz\\261)-1(p)1(ie)-1(w)28(an)28(ym,)-269(p)1(ijan)29(ym)-269(ucie)-1(c)28(h\\241)-269(i)-268(tak)56(\\241)-269(m)-1(o)-28(c\\241,)-269(\\273e)-269(\\015ac)27(h)29(y)-269(s)-1(i)1(\\246)-270(p)1(rze)-1(-)]TJ 0 -13.549 Td[(wraca\\252y)83(,)-329(lamp)28(y)-329(gas\\252y)83(,)-328(no)-28(c)-329(ic)27(h)-328(ob)-28(ejmo)28(w)27(a\\252a)-329(i)-329(rozdr)1(gan)28(y)-329(mrok,)-329(b)-27(o)-329(in)1(o)-329(te)-330(g\\252o)28(wnie)]TJ 0 -13.55 Td[(w)-414(k)28(ominie)-414(r)1(oz)-1(\\273arzane)-414(wic)27(h)28(u)1(r\\241)-414(p)-27(\\246du,)-413(s)-1(y)1(pa\\252y)-414(i)1(s)-1(kr)1(am)-1(i)-413(i)-414(b)1(uc)27(h)1(a\\252y)-414(kr)1(w)27(a)28(wym)-414(p\\252o-)]TJ 0 -13.549 Td[(mie)-1(n)1(iem)-1(,)-332(w)-332(kt\\363ry)1(m)-333(ledwie)-332(m)-1(a)-55(jacz)-1(y\\252)-332(zbit)28(y)-332(k\\252\\241b)-331(lud)1(z)-1(ki)1(,)-332(w)-1(i)1(j\\241cy)-332(s)-1(i\\246)-332(do)-28(ok)28(o\\252a)-332(tak)56(\\241)]TJ\nET\nendstream\nendobj\n850 0 obj <<\n/Type /Page\n/Contents 851 0 R\n/Resources 849 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n849 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n854 0 obj <<\n/Length 10224     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(264)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(g\\246s)-1(t)28(w)28(\\241,)-360(\\273)-1(e)-360(ani)-360(ok)1(ie)-1(m)-360(u)1(c)27(h)28(wyci\\252)-360(ni)-360(r)1(oz)-1(p)-27(oz)-1(n)1(a\\252,)-360(gdzie)-360(c)27(h)1(\\252)-1(op)1(,)-360(gd)1(z)-1(ie)-360(k)28(obieta!)-360(K)1(ap)-28(o-)]TJ 0 -13.549 Td[(t)28(y)-452(w)-1(i)1(e)-1(w)28(a\\252y)-452(g\\363r\\241)-453(k)1(ie)-1(j)-452(t)1(e)-453(s)-1(kr)1(z)-1(y)1(d\\252a)-452(bia\\252e,)-453(w)28(e\\252)-1(n)1(iaki,)-452(wst\\241\\273)-1(k)1(i,)-452(z)-1(ap)1(as)-1(ki)1(,)-453(r)1(oz)-1(p)1(alone)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(e,)-339(jar)1(z)-1(\\241ce)-340(o)-27(c)-1(zy)83(,)-339(tu)1(p)-27(ot)27(y)-338(z)-1(ap)1(am)-1(i\\246ta\\252e,)-339(\\261)-1(p)1(ie)-1(wki)1(,)-339(p)-28(ok)1(rzyki,)-339(wsz)-1(ystk)28(o)-339(si\\246)-340(wraz)]TJ 0 -13.549 Td[(mie)-1(sza\\252)-1(o,)-259(kr\\246ci\\252o)-260(w)-260(k)28(\\363\\252k)28(o)-260(kieb)28(y)-259(jedn)1(o)-260(wrz)-1(eciono,)-259(o)-28(d)-259(kt\\363rego)-260(bi)1(\\252)-260(ogromn)28(y)-260(wr)1(z)-1(ask)]TJ 0 -13.549 Td[(i)-333(lec)-1(ia\\252)-333(pr)1(z)-1(ez)-334(wyw)28(arte)-334(d)1(o)-334(sieni)-333(dr)1(z)-1(wi)-333(w)-334(o\\261ni)1(e)-1(\\273on\\241,)-333(mro\\271n\\241,)-333(z)-1(i)1(m)-1(o)28(w)28(\\241)-334(n)1(o)-28(c.)]TJ 27.879 -13.55 Td[(An)28(tek)-353(za\\261)-354(h)29(ula\\252)-353(w)28(c)-1(i\\241\\273)-353(na)-352(prze)-1(d)1(z)-1(i)1(e)-1(,)-353(b)1(i\\252)-353(ob)-27(c)-1(asam)-1(i)-352(na)-55(jg\\252o\\261)-1(n)1(iej,)-353(za)28(w)-1(i)1(ja\\252)-353(kiej)]TJ -27.879 -13.549 Td[(wic)27(h)29(ura,)-425(pr)1(z)-1(yp)1(ada\\252)-426(d)1(o)-426(zie)-1(mi,)-425(\\273)-1(e)-426(m)28(y\\261)-1(l)1(e)-1(li)1(:)-426(up)1(adn)1(ie!)-426(Gd)1(z)-1(i)1(e)-427(za\\261)-1(,)-425(on)-425(ju)1(\\273)-427(sta\\252,)-426(j)1(u\\273)]TJ 0 -13.549 Td[(zno)28(wu)-333(p)-28(on)1(os)-1(i)1(\\252)-1(,)-333(j)1(u\\273)-334(k)1(rz)-1(y)1(k)55(a\\252,)-333(cz)-1(ase)-1(m)-333(jak)56(\\241)-333(piosnec)-1(zk)28(\\246)-334(m)28(uzyk)56(an)28(tom)-334(r)1(z)-1(u)1(c)-1(a\\252)-333(i)-333(no-)]TJ 27.879 -13.549 Td[(si\\252)-470(si\\246)-470(wskro\\261)-470(ci\\273b)28(y)83(,)-469(r)1(oz)-1(b)1(ija\\252,)-469(trat)1(o)27(w)28(a\\252,)-469(jak)-469(bu)1(rza)-470(sz)-1(ed\\252,)-469(a\\273)-470(strac)28(h)-469(br)1(a\\252)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(n)28(yc)27(h)1(,)-333(a)-334(ma\\252o)-333(kto)-333(z)-1(a)-333(nim)-333(nad)1(\\241\\273)-1(y\\252.)]TJ 27.879 -13.549 Td[(Z)-477(d)1(obr\\241)-476(go)-28(dzin\\246)-477(tak)-476(w)-1(y)1(w)-1(i)1(ja\\252,)-477(b)-27(o)-477(c)27(h)1(o)-28(cia\\273)-478(i)1(nn)1(i)-477(pr)1(z)-1(ysta)28(w)27(al)1(i)-477(zm)-1(\\246c)-1(ze)-1(n)1(i,)-477(a)]TJ -27.879 -13.55 Td[(na)28(w)28(e)-1(t)-387(i)-387(m)28(uzyc)-1(e)-387(m)-1(d)1(la\\252y)-387(r\\246c)-1(e,)-387(pieni\\241d)1(z)-1(e)-387(im)-388(r)1(z)-1(u)1(c)-1(a\\252,)-387(pr)1(z)-1(y)1(nagla\\252)-387(gra\\242)-388(i)-387(ta\\253)1(c)-1(o)28(w)28(a\\252,)]TJ 0 -13.549 Td[(\\273e)-384(w)-384(k)28(o\\253cu)-383(pr)1(a)27(wie)-383(ino)-383(w)27(e)-384(d)1(w)27(o)-55(je)-384(p)-27(ozos)-1(tali)-383(w)-383(k)28(ole)-1(.)-383(Ju)1(\\261)-1(ci,)-383(\\273)-1(e)-384(p)1(rze)-1(z)-384(to)-383(bab)29(y)-384(j)1(u\\273)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)1(o)-384(wyd)1(z)-1(iwia\\252y)-383(z)-385(tak)1(ie)-1(j)-383(h)28(u)1(lank)1(i,)-384(ki)1(w)27(a\\252y)-383(g\\252)-1(o)28(w)28(am)-1(i)1(,)-384(me)-1(\\252\\252y)-384(ozorami)-384(i)-383(lito)28(w)28(a\\252y)]TJ 0 -13.549 Td[(si\\246)-328(nad)-327(B)-1(or)1(yn\\241,)-327(a\\273)-328(J\\363z)-1(k)56(a,)-327(z)-1(\\252a)-328(n)1(a)-328(An)28(t)1(k)55(a,)-327(a)-328(b)1(arz)-1(ej)-327(jes)-1(zc)-1(ze)-328(na)-327(m)-1(aco)-28(c)27(h)1(\\246)-1(,)-327(p)-28(ol)1(e)-1(cia\\252a)]TJ 0 -13.549 Td[(do)-333(starego.)]TJ 27.879 -13.55 Td[({)-314(Oc)-1(i)1(e)-1(c,)-315(a)-314(to)-315(An)29(te)-1(k)-314(ta\\253)1(c)-1(u)1(je)-315(z)-315(mac)-1(o)-27(c)27(h\\241,)-314(a\\273)-315(lu)1(dzie)-315(wydziwia)-55(j\\241!)-314({)-315(sz)-1(epn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[({)-398(Nie)-1(c)28(h)-398(ta\\253cuj)1(\\241,)-399(o)-27(d)-398(te)-1(go)-398(k)56(arcz)-1(ma!)-398({)-399(o)-28(d)1(par)1(\\252)-399(i)-398(wz)-1(i\\241\\252)-398(s)-1(i)1(\\246)-399(z)-1(n)1(o)27(wu)-398(tr)1(\\241c)-1(a\\242)-399(ze)]TJ -27.879 -13.549 Td[(starsz)-1(ym)-333(i)-333(k)28(o)27(w)28(alem)-1(,)-333(a)-333(pr)1(a)27(wi\\242)-333(c)-1(osik.)]TJ 27.879 -13.549 Td[(W)84(r\\363)-28(ci\\252a)-307(z)-307(niczym)-1(,)-306(ale)-307(j\\246\\252a)-307(nagl)1(\\241da\\242)-307(z)-1(a)-306(nimi)-307(p)1(iln)1(ie,)-307(b)-27(o)-307(p)-27(o)-307(ta\\253cu)-306(s)-1(tali)-306(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(sz)-1(yn)1(kw)28(as)-1(ie)-343(z)-343(c)-1(a\\252\\241)-343(gromad\\241)-343(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)-342(i)-343(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-1(.)-342(W)83(es)-1(o\\252o)-343(i)1(m)-344(b)28(y)1(\\252o,)-343(Jam)27(b)1(ro\\273y)]TJ 0 -13.55 Td[(b)-27(o)27(wiem,)-379(p)1(ijan)28(y)-378(ju)1(\\273)-380(ca\\252kiem,)-379(pr)1(a)28(w)-1(i)1(\\252)-379(im)-379(takie)-379(pr)1(z)-1(y)1(p)-28(o)28(wiastki,)-379(a\\273)-379(si\\246)-379(dziew)27(cz)-1(yn)29(y)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252ani)1(a\\252y)-487(z)-1(ap)1(as)-1(k)56(ami,)-487(a)-487(par)1(ob)-28(cy)-487(w)-488(g\\252os)-487(\\261)-1(mieli,)-487(a)-487(j)1(e)-1(sz)-1(cz)-1(e)-487(s)-1(w)28(o)-56(j)1(e)-488(d)1(ok\\252adali)1(.)]TJ 0 -13.549 Td[(An)28(tek)-373(f)1(un)1(do)28(w)27(a\\252)-372(w)-1(sz)-1(y)1(s)-1(tk)1(im)-373(piw)28(o,)-373(p)1(ierws)-1(zy)-373(p)1(rze)-1(p)1(ija\\252,)-372(niew)27(ol)1(i\\252,)-373(w)-373(r)1(am)-1(i)1(o)-1(n)1(a)-373(b)1(ra\\252)]TJ 0 -13.549 Td[(par)1(obk)28(\\363)28(w,)-278(\\261c)-1(i)1(s)-1(k)56(a\\252,)-278(a)-277(dzie)-1(u)1(c)27(h)1(om)-278(c)-1(a\\252ymi)-278(gar)1(\\261)-1(ciami)-278(p)-27(c)27(h)1(a\\252)-278(za)-278(pazuc)28(h\\246)-278(k)56(arme)-1(lk)1(i,)-278(b)29(y)]TJ 0 -13.549 Td[(m\\363)-28(c)-392(p)1(rz)-1(y)-391(t)28(ym)-391(i)-392(J)1(agusi)-392(n)1(ak\\252a\\261)-1(\\242,)-391(a)-392(mimo)-391(z)-1(m\\246)-1(cze)-1(n)1(ia)-392(\\261mia\\252)-392(si\\246)-392(n)1(a)-56(j)1(g\\252)-1(o\\261ni)1(e)-1(j)-391(i)-391(rad)]TJ 0 -13.55 Td[(si\\246)-334(rozgady)1(w)27(a\\252!)]TJ 27.879 -13.549 Td[(Na)-248(k)56(arczm)-1(ie)-248(te\\273)-248(s)-1(i)1(\\246)-249(zaba)28(wian)1(o)-248(ni)1(e)-1(zgorze)-1(j)1(,)-248(n)1(ar\\363)-28(d)-247(s)-1(i)1(\\246)-248(ju\\273)-248(ca\\252kiem)-248(rozo)-28(c)27(h)1(o)-28(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(i)-328(rozgrz)-1(a\\252,)-328(to)-328(c)-1(i\\246giem)-329(jaki)1(e)-1(\\261)-329(p)1(ary)-328(ta\\253co)27(w)28(a\\252y)83(,)-328(a)-328(dru)1(dzy)-329(g\\246s)-1(t)28(wil)1(i)-329(si\\246,)-329(gd)1(z)-1(ie)-329(si\\246)-329(in)1(o)]TJ 0 -13.549 Td[(da\\252o,)-388(i)-387(radzili)1(,)-388(prze)-1(p)1(ij)1(ali,)-388(ku)1(m)-1(al)1(i)-388(s)-1(i)1(\\246)-389(jedn)1(i)-388(z)-389(d)1(ru)1(gim)-1(i)-387(i)-388(w)27(es)-1(o\\252o\\261c)-1(i)-388(ca\\252ym)-388(s)-1(erce)-1(m)]TJ 0 -13.549 Td[(za\\273)-1(yw)28(ali.)-303(R)-1(zep)-28(ec)27(k)56(a)-304(s)-1(zlac)28(h)28(ta)-304(ru)1(s)-1(zy\\252a)-304(zz)-1(a)-304(sw)27(o)-55(jego)-304(s)-1(to\\252u)1(,)-304(b)-27(o)-304(s)-1(i\\246)-304(ju)1(\\273)-304(b)28(yli)-304(p)-27(oku)1(m)-1(al)1(i)]TJ 0 -13.55 Td[(pr)1(z)-1(y)-411(gorza\\252)-1(ce)-412(z)-413(Lip)-27(cz)-1(ak)56(ami,)-412(a)-412(n)1(iekt\\363rzy)-412(i)-412(d)1(o)-412(ta\\253ca)-412(si\\246)-412(bral)1(i,)-412(d)1(z)-1(ieuc)28(h)28(y)-412(si\\246)-412(nie)]TJ 0 -13.549 Td[(wyma)27(wia\\252y)84(,)-333(\\273)-1(e)-333(to)-334(ob)-27(e)-1(j)1(\\261)-1(cie)-334(mieli)-333(delik)56(atn)1(iejsz)-1(e)-334(i)-333(grzec)-1(znie)-333(prosili)1(.)]TJ 27.879 -13.549 Td[(An)28(tk)28(o)28(w)28(a)-462(z)-1(a\\261)-462(gromada)-462(zaba)28(wia\\252a)-462(s)-1(i\\246)-462(z)-463(osobn)1(a,)-462(\\273e)-463(to)-462(m\\252\\363)-28(d\\271)-462(sam)-1(a)-462(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-459(c)-1(o)-459(na)-55(jpi)1(e)-1(r)1(w)-1(sz)-1(a)-459(w)27(e)-460(wsi,)-459(a)-460(on)1(,)-460(mimo)-460(\\273e)-460(z)-1(e)-460(wsz)-1(ystki)1(m)-1(i)-459(p)-27(ogadyw)28(a\\252,)-460(p)1(ra)28(wie)-460(o)]TJ 0 -13.549 Td[(Bo\\273)-1(ym)-455(\\261w)-1(i)1(e)-1(cie)-456(n)1(ie)-455(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-455(i)-454(prosto)-455(jak)1(b)28(y)-455(si\\246)-456(d)1(z)-1(i)1(s)-1(ia)-55(j)-455(zapami\\246ta\\252,)-455(na)-455(n)1(ic)-456(j)1(u\\273)]TJ 0 -13.549 Td[(ni)1(e)-428(patr)1(z)-1(y\\252,)-427(z)-428(ni)1(c)-1(zym)-428(si\\246)-428(nie)-428(k)1(ry\\252,)-427(b)-28(o)-427(i)-427(nie)-428(p)-27(orad)1(z)-1(i\\252)-427(na)28(w)28(e)-1(t)-427({)-428(to)-427(i)-428(n)1(ie)-428(baczy\\252,)]TJ 0 -13.55 Td[(\\273e)-395(lud)1(z)-1(i)1(e)-395(do)-28(ok)28(o\\252a)-394(sp)-28(oziera)-56(j)1(\\241)-395(u)29(w)27(a\\273nie)-394(i)-395(p)1(iln)1(ie)-395(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241.)-394(Hale)-1(,)-394(d)1(ba\\252)-394(tam)-395(o)-394(to)]TJ 0 -13.549 Td[({)-389(w)28(c)-1(i\\241\\273)-389(jej)-389(p)1(ra)28(wi\\252)-389(do)-389(uc)28(ha,)-389(p)1(rzypi)1(e)-1(r)1(a)-1(\\252)-389(d)1(o)-389(\\261)-1(cian)28(y)84(,)-389(ob)-27(e)-1(j)1(m)-1(o)28(w)28(a\\252,)-389(z)-1(a)-389(r)1(\\246)-1(ce)-390(b)1(ra\\252,)-389(ale)]TJ 0 -13.549 Td[(ledwie)-267(s)-1(i)1(\\246)-268(j)1(u\\273)-267(ws)-1(t)1(rz)-1(y)1(m)27(yw)28(a\\252)-267(o)-28(d)-266(c)-1(a\\252o)28(w)27(an)1(ia!)-266(Oc)-1(zy)-267(m)28(u)-267(i)1(no)-267(lata\\252y)-266(niepr)1(z)-1(y)1(tom)-1(n)1(ie)-267(i)-267(w)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(s)-1(iac)28(h)-326(wzbiera\\252a)-326(tak)56(a)-326(b)1(urza,)-326(\\273e)-326(got\\363)27(w)-326(si\\246)-326(b)28(y\\252)-326(w)28(a\\273)-1(y)1(\\242)-327(n)1(a)-326(ws)-1(zystk)28(o,)-326(b)28(yl)1(e)-327(zaraz)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-335(n)1(i\\241,)-335(b)-28(o)-335(wid)1(z)-1(i)1(a\\252)-336(w)-335(m)-1(o)-27(dry)1(c)27(h,)-335(r)1(oz)-1(p)1(\\252om)-1(i)1(e)-1(n)1(ion)28(yc)28(h)-335(o)-28(cz)-1(ac)27(h)-334(p)-28(o)-27(dziw)-336(i)-335(k)28(o)-27(c)27(han)1(ie!)]TJ 0 -13.55 Td[(T)83(o)-304(i)-303(r\\363s\\252)-304(c)-1(or)1(a)-1(z)-304(b)1(ardziej,)-303(puszy\\252)-304(s)-1(i)1(\\246)-305(i)-303(h)28(uk)56(a\\252)-304(ki)1(e)-1(j)-303(ten)-304(wic)27(h)1(e)-1(r)1(,)-304(n)1(im)-304(ud)1(e)-1(rzy!)-303(Pi\\252)-304(p)1(rzy)]TJ 0 -13.549 Td[(t)28(ym)-353(t\\246)-1(go)-353(i)-353(Jagu)1(s)-1(i)1(\\246)-354(n)1(ie)-1(w)28(oli\\252,)-353(a\\273)-353(s)-1(i)1(\\246)-354(j)1(e)-1(j)-353(w)-353(g\\252o)28(wie)-354(m\\241c)-1(i)1(\\252o,)-353(\\273)-1(e)-353(ani)-353(wiedzia\\252a,)-353(co)-353(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n853 0 obj <<\n/Type /Page\n/Contents 854 0 R\n/Resources 852 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 839 0 R\n>> endobj\n852 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n857 0 obj <<\n/Length 9805      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(265)]TJ -358.232 -35.866 Td[(z)-449(ni\\241)-449(d)1(z)-1(i)1(e)-1(j)1(e)-1(,)-449(j)1(e)-1(n)1(o)-449(c)27(h)29(w)-1(i)1(lam)-1(i)1(,)-449(gdy)-448(m)27(u)1(z)-1(yk)56(a)-449(milk)1(\\252)-1(a)-448(i)-449(k)56(arc)-1(zma)-449(nieco)-449(przycic)27(h)1(a\\252a,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(tom)-1(n)1(ia\\252a)-377(zdzie)-1(b)1(k)28(o,)-377(strac)28(h)-377(j)1(\\241)-377(ogarn)1(ia\\252,)-377(ob)1(z)-1(i)1(e)-1(ra\\252a)-376(s)-1(i\\246)-377(ze)-377(z)-1(d)1(umie)-1(n)1(iem)-1(,)-376(jakb)29(y)]TJ 0 -13.549 Td[(p)-27(oratu)1(nku)-341(sz)-1(u)1(k)56(a)-56(j\\241c,)-341(uciek)55(a\\242)-341(na)28(w)27(et)-341(pr)1(agn\\246\\252)-1(a,)-341(al)1(e)-342(s)-1(ta\\252)-341(p)-27(ob)-28(ok)-341(i)-341(tak)-341(p)1(atrza\\252)-1(;)-341(tak)1(i)]TJ 0 -13.549 Td[(\\273ar)-386(bu)1(c)27(ha\\252)-386(o)-27(d)-386(ni)1(e)-1(go,)-386(tak)1(ie)-387(k)28(o)-27(c)27(han)1(ie)-386(w)-387(n)1(ie)-1(j)-385(wz)-1(b)1(ie)-1(r)1(a\\252o,)-386(\\273)-1(e)-386(w)-386(m)-1(i)1(g)-387(zap)-27(om)-1(i)1(na\\252a)-386(o)]TJ 0 -13.549 Td[(ws)-1(zystkim.)]TJ 27.879 -13.55 Td[(Ci\\241)-28(gn)1(\\246)-1(\\252o)-247(s)-1(i\\246)-247(to)-248(d)1(os)-1(y)1(\\242)-248(d\\252ugo,)-247(b)-27(o)-247(An)28(te)-1(k)-247(j)1(u\\273)-248(gor)1(z)-1(a\\252k)28(\\246)-248(sta)28(w)-1(i)1(a\\252)-248(ca\\252e)-1(j)-247(k)28(ompan)1(ii.)]TJ -27.879 -13.549 Td[(\\233yd)-333(c)28(h\\246tnie)-334(d)1(a)28(w)27(a\\252)-333(i)-333(k)55(a\\273d\\241)-333(kw)28(art\\246)-333(dw)28(a)-334(r)1(az)-1(y)-333(na)-333(dr)1(z)-1(wiac)28(h)-333(z)-1(n)1(ac)-1(zy\\252.)]TJ 27.879 -13.549 Td[(\\233e)-328(za\\261)-327(c)-1(a\\252ej)-327(k)28(ompani)1(i)-327(z)-1(acz\\246)-1(\\252o)-327(w)-327(g\\252o)27(w)28(ac)27(h)-326(s)-1(i)1(\\246)-328(m\\241c)-1(i)1(\\242)-1(,)-327(to)-327(k)1(up\\241)-327(p)-27(osz)-1(li)-326(ta\\253co-)]TJ -27.879 -13.549 Td[(w)28(a\\242)-1(,)-305(b)28(yc)28(h)-305(si\\246)-306(ni)1(e)-1(co)-305(otrze)-1(\\271w)-1(i)1(\\242)-1(,)-305(j)1(u\\261c)-1(i,)-305(\\273e)-306(i)-305(An)28(tek)-305(z)-306(Jagu)1(s)-1(i\\241)-305(ta\\253)1(c)-1(o)28(w)28(ali)-305(na)-305(pr)1(z)-1(edzie.)]TJ 27.879 -13.549 Td[(Wysze)-1(d)1(\\252)-297(n)1(a)-297(to)-296(z)-297(al)1(kierz)-1(a)-296(Boryn)1(a,)-296(przywied\\252y)-296(go)-296(k)28(obiet)28(y)-296(z)-1(gor)1(s)-1(zone,)-296(p)-28(op)1(a-)]TJ -27.879 -13.549 Td[(trzy\\252)-371(i)-371(w)-1(n)1(e)-1(t)-371(si\\246)-372(w)28(e)-372(ws)-1(zys)-1(tk)1(im)-372(p)-27(omiark)28(o)28(w)27(a\\252,)-371(z\\252o\\261)-1(\\242)-372(go)-371(p)-27(o)-28(derw)28(a\\252a)-372(sroga,)-371(z)-1(ak)56(\\241si\\252)]TJ 0 -13.55 Td[(in)1(o)-351(z\\246)-1(b)28(y)84(,)-350(z)-1(ap)1(i\\241\\252)-351(p)-27(\\246)-1(tl)1(e)-351(k)55(ap)-27(ot)28(y)84(,)-351(cz)-1(ap)-27(\\246)-351(nacisn\\241\\252)-351(i)-350(j)1(\\241\\252)-351(s)-1(i)1(\\246)-351(prze)-1(b)1(iera\\242)-351(do)-350(ni)1(c)27(h.)-350(Ust\\246)-1(-)]TJ 0 -13.549 Td[(p)-27(o)27(w)28(ali)-333(m)28(u)-333(z)-334(dr)1(ogi,)-333(b)-28(o)-333(bl)1(ady)-333(b)28(y\\252)-333(kiej)-333(\\261c)-1(ian)1(a)-334(i)-333(o)-27(c)-1(zam)-1(i)-333(d)1(z)-1(ik)28(o)-333(\\261w)-1(i)1(e)-1(ci\\252.)]TJ 27.879 -13.549 Td[({)-374(Do)-374(dom)28(u!)-374({)-374(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-375(g\\252o\\261no,)-374(gd)1(y)-374(nad)1(lec)-1(ieli,)-373(i)-374(c)27(hcia\\252)-374(j\\241)-374(c)28(h)28(yci\\242)-375(za)-374(r\\246-)]TJ -27.879 -13.549 Td[(k)28(\\246,)-396(al)1(e)-396(w)-396(ten)-395(mig)-396(An)29(te)-1(k)-395(zakr\\246c)-1(i)1(\\252)-396(w)-395(m)-1(iejsc)-1(u)-394(i)-396(p)-27(oni)1(\\363s)-1(\\252)-395(dalej,)-395(\\273e)-396(pr)1(\\363\\273)-1(n)1(o)-396(c)28(hcia\\252a)]TJ 0 -13.549 Td[(si\\246)-384(wyrw)28(a\\242)-1(.)-383(P)29(o)-28(dsk)28(o)-28(cz)-1(y\\252)-383(wtedy)-383(Boryn)1(a,)-383(roz)-1(w)28(ali\\252)-383(k)28(o\\252o,)-383(wyrw)28(a\\252)-384(j)1(\\241)-383(z)-384(An)28(tk)28(o)28(wyc)27(h)]TJ 0 -13.55 Td[(ramion)1(,)-333(nie)-334(p)-27(opu)1(\\261)-1(ci\\252)-333(i)-333(nie)-333(s)-1(p)-27(o)-56(j)1(rza)27(wsz)-1(y)-333(na)28(w)28(e)-1(t)-333(n)1(a)-334(syna)-333(wi\\363)-28(d)1(\\252)-334(z)-333(k)55(ar)1(c)-1(zm)27(y)84(.)]TJ 27.879 -13.549 Td[(Mu)1(z)-1(y)1(k)55(a)-427(r)1(aptem)-428(u)1(s)-1(ta\\252a,)-427(cic)27(h)1(o\\261)-1(\\242)-427(z)-428(n)1(ag\\252)-1(a)-427(p)1(ad\\252a)-427(na)-427(wsz)-1(ystkic)28(h,)-427(\\273e)-428(stan\\246li)]TJ -27.879 -13.549 Td[(jak)-480(wry)1(c)-1(i,)-480(n)1(ikt)-480(si\\246)-481(i)-480(s\\252o)27(w)28(e)-1(m)-480(nie)-480(oz)-1(w)28(a\\252,)-480(m)-1(i)1(ark)28(o)28(w)27(ali)-480(b)-27(o)28(wie)-1(m,)-480(\\273e)-481(s)-1(ta)-55(je)-480(s)-1(i\\246)-480(c)-1(o\\261)]TJ 0 -13.549 Td[(strasz)-1(n)1(e)-1(go,)-355(gdy\\273)-356(An)28(tek)-356(r)1(z)-1(u)1(c)-1(i)1(\\252)-356(s)-1(i)1(\\246)-357(za)-356(n)1(imi,)-356(r)1(oz)-1(tr)1(\\241c)-1(i\\252)-355(c)-1(i\\273b)-28(\\246)-356(k)1(ie)-1(j)-355(snopk)1(i)-356(i)-355(wybieg\\252)]TJ 0 -13.549 Td[(z)-325(k)55(ar)1(c)-1(zm)27(y)84(,)-325(ale)-325(s)-1(k)28(or)1(o)-325(go)-325(jeno)-325(mr\\363z)-325(o)28(wion\\241\\252,)-325(zato)-28(cz)-1(y)1(\\252)-325(s)-1(i\\246)-325(na)-324(drze)-1(w)28(o)-325(le\\273)-1(\\241ce)-325(prze)-1(d)]TJ 0 -13.55 Td[(domem)-331(i)-331(p)1(ad\\252)-331(w)-331(\\261ni)1(e)-1(g,)-330(ryc)27(h)1(\\252o)-331(si\\246)-331(jedn)1(ak)-331(p)-27(o)-28(dn)1(i\\363s\\252)-331(i)-331(d)1(ogna\\252)-330(ic)27(h)-330(na)-330(s)-1(kr)1(\\246)-1(cie)-331(dr)1(ogi)]TJ 0 -13.549 Td[(k)28(o\\252o)-333(s)-1(ta)28(wu.)]TJ 27.879 -13.549 Td[({)-377(I)-1(d)1(\\271)-378(sw)27(o)-56(j)1(\\241)-378(d)1(rog\\241)-377(i)-377(lud)1(z)-1(i)-377(ni)1(e)-378(z)-1(acz)-1(epi)1(a)-56(j!)-377({)-377(krzykn)1(\\241\\252)-378(stary)-377(o)-28(dwr)1(ac)-1(a)-55(j\\241c)-378(si\\246)]TJ -27.879 -13.549 Td[(do)-449(niego.)-450(J)1(agna)-450(z)-450(wrzas)-1(k)1(ie)-1(m)-450(u)1(c)-1(i)1(e)-1(k\\252a)-449(do)-450(c)28(ha\\252up)29(y)83(,)-449(a)-450(J\\363zk)55(a)-449(w)-1(t)28(y)1(k)55(a\\252a)-449(w)-450(gar\\261c)-1(ie)]TJ 0 -13.549 Td[(starem)27(u)-333(j)1(aki\\261)-334(k)28(\\363\\252)-333(i)-333(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252a:)]TJ 27.879 -13.55 Td[({)-333(B)-1(i)1(jcie)-334(tego)-334(zb)-28(\\363)-55(ja,)-333(b)1(ijcie,)-333(tatulu)1(!..)1(.)]TJ 0 -13.549 Td[({)-371(P)1(u\\261\\242)-1(cie)-371(j\\241,)-370(pu)1(\\261)-1(\\242c)-1(i)1(e)-1(!)-370({)-371(b)-28(e\\252k)28(ota\\252)-371(An)28(tek)-370(z)-1(go\\252a)-371(n)1(ie)-1(p)1(rzytomnie)-371(i)-370(przysu)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(p)1(i\\246)-1(\\261ciam)-1(i)1(,)-334(got)1(o)27(wymi)-333(do)-333(dar)1(c)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-245(M\\363)28(w)-1(i)1(\\246)-246(c)-1(i)1(,)-246(o)-27(dejd\\271,)-245(b)-28(o,)-245(j)1(ak)-246(B\\363g)-245(na)-245(niebi)1(e)-1(,)-245(z)-1(ak)56(atr)1(upi)1(\\246)-246(c)-1(i)1(\\246)-246(jak)-245(psa!)-245(S\\252ysz)-1(y)1(s)-1(z?)]TJ -27.879 -13.549 Td[({)-247(krzykn)1(\\241\\252)-247(z)-1(n)1(\\363)27(w)-247(stary)84(,)-247(goto)27(wy)-247(n)1(a)-247(w)-1(szys)-1(tk)28(o,)-247(An)29(te)-1(k)-247(cofn)1(\\241\\252)-247(s)-1(i\\246)-247(b)-28(ezw)-1(i)1(e)-1(d)1(nie,)-247(opad)1(\\252y)]TJ 0 -13.55 Td[(m)27(u)-383(r\\246c)-1(e,)-384(s)-1(t)1(rac)27(h)-384(go)-384(u)1(derzy\\252)-384(tak)-384(mo)-28(c)-1(n)29(y)83(,)-384(\\273e)-385(d)1(r\\273)-1(e\\242)-385(zacz)-1(\\241\\252,)-384(a)-384(stary)-384(p)-27(os)-1(ze)-1(d)1(\\252)-384(w)27(oln)1(o)]TJ 0 -13.549 Td[(ku)-333(d)1(om)-1(o)28(wi.)]TJ 27.879 -13.549 Td[(Nie)-330(s)-1(k)28(o)-27(c)-1(zy\\252)-330(ju)1(\\273)-331(za)-330(n)1(im)-1(,)-329(s)-1(ta\\252)-330(r)1(oz)-1(tr)1(z)-1(\\246s)-1(i)1(on)28(y)83(,)-329(niepr)1(z)-1(yt)1(om)-1(n)28(y)-329(i)-330(w)28(o)-28(dzi\\252)-330(pu)1(s)-1(t)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(ami)-378(do)-28(ok)28(o\\252a,)-378(n)1(ie)-379(b)28(y\\252o)-378(ju)1(\\273)-379(ni)1(k)28(ogo,)-379(k)1(s)-1(i\\246\\273yc)-379(\\261)-1(wieci\\252)-379(j)1(as)-1(n)1(o,)-378(\\261)-1(ni)1(e)-1(gi)-378(si\\246)-379(skrzy\\252y)-378(i)]TJ 0 -13.549 Td[(p)-27(os)-1(\\246pn)1(a)-333(b)1(ia\\252o\\261)-1(\\242)-333(wid)1(nia\\252a)-332(ws)-1(z\\246)-1(d)1(z)-1(ie.)-332(Nic)-333(ni)1(e)-333(m)-1(\\363g\\252)-332(wym)-1(i)1(ark)28(o)28(w)27(a\\242,)-332(c)-1(o)-332(s)-1(i\\246)-333(t)1(o)-333(sta\\252o,)]TJ 0 -13.549 Td[(opr)1(z)-1(y)1(tom)-1(n)1(ia\\252)-282(niec)-1(o)-282(w)-283(k)56(ar)1(c)-1(zm)-1(i)1(e)-283(dop)1(ie)-1(r)1(o,)-282(dok)56(\\241d)-282(go)-282(pr)1(z)-1(ywiedli)-282(p)1(rzyjaciele)-1(,)-282(k)1(t\\363rzy)]TJ 0 -13.55 Td[(m)27(u)-332(s)-1(k)28(o)-28(cz)-1(y)1(li)-333(na)-333(ratu)1(nek,)-333(b)-28(o)-333(gru)1(c)27(h)1(n\\246\\252o,)-334(\\273e)-334(si\\246)-334(z)-334(o)-55(jce)-1(m)-333(bij)1(e)-1(.)]TJ 27.879 -13.549 Td[(Zaba)28(w)28(a)-251(si\\246)-251(te)-1(\\273)-251(sk)28(o\\253czy\\252a,)-251(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(il)1(i)-251(si\\246)-251(do)-250(dom\\363)28(w,)-251(\\273e)-251(to)-251(i)-250(p)-27(\\363\\271)-1(n)1(o)-251(ju)1(\\273)-251(b)28(y\\252o,)]TJ -27.879 -13.549 Td[(k)56(arcz)-1(ma)-246(op)1(ustos)-1(za\\252a)-246(ryc)28(h\\252o,)-245(jeno)-246(p)-27(o)-246(d)1(rogac)27(h)-245(grzmia\\252y)-246(j)1(e)-1(sz)-1(cz)-1(e)-246(cz)-1(as)-246(j)1(a)-1(k)1(i\\261)-246(h)28(uk)56(an)1(ia)]TJ 0 -13.549 Td[(i)-343(pr)1(z)-1(y)1(\\261)-1(pi)1(e)-1(wki,)-343(p)-27(ozos)-1(tal)1(i)-343(t)27(y)1(lk)28(o)-343(R)-1(zep)-28(ec)-1(zaki,)-343(k)1(t\\363rzy)-343(m)-1(ieli)-343(zano)-28(co)28(w)27(a\\242,)-343(i)-343(pan)-343(Jacek)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gryw)28(a\\252)-379(i)1(m)-379(ano)-378(n)1(a)-379(skr)1(z)-1(yp)1(icy)-378(w)-1(i)1(e)-1(lce)-379(\\273a\\252o\\261)-1(li)1(w)27(e)-378(pienia,)-378(\\273e)-379(siedzie)-1(l)1(i)-378(z)-1(a)-378(sto\\252e)-1(m)]TJ 0 -13.55 Td[(p)-27(o)27(wspieran)1(i)-378(na)-378(r\\246k)56(ac)27(h)-378(i)-378(wzdyc)28(hali)1(,)-378(no)-378(i)-378(An)28(tek,)-378(sie)-1(d)1(z)-1(\\241cy)-378(w)-378(k)55(\\241cie)-378(s)-1(amotni)1(e)-1(,)-378(b)-27(o)]TJ 0 -13.549 Td[(\\273e)-378(si\\246)-377(n)1(ie)-377(m)-1(ogl)1(i)-377(z)-377(n)1(im)-377(dogad)1(a\\242)-1(,)-376(gdy\\273)-377(n)1(ic)-377(ni)1(e)-377(o)-28(dp)-27(o)28(w)-1(i)1(ada\\252,)-376(o)-1(p)1(u\\261c)-1(i)1(li)-376(go)-377(ws)-1(zysc)-1(y)84(.)]TJ\nET\nendstream\nendobj\n856 0 obj <<\n/Type /Page\n/Contents 857 0 R\n/Resources 855 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n855 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n861 0 obj <<\n/Length 7352      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(266)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(19.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-342(tak)-342(mart)28(wy)-343(i)-342(n)1(iew)-1(i)1(e)-1(d)1(z)-1(\\241cy)83(,)-342(\\273e)-343(dar)1(m)-1(o)-342(m)27(u)-341(\\233)-1(y)1(d)-342(pr)1(z)-1(yp)-27(omina\\252,)-342(i\\273)-343(k)56(ar)1(c)-1(zm)-1(\\246)]TJ 0 -13.549 Td[(zam)27(yk)56(a,)-251(ni)1(e)-252(s)-1(\\252ysza\\252)-252(i)-251(ni)1(e)-252(rozumia\\252)-251(z)-1(go\\252a,)-251(p)1(rz)-1(ec)27(k)1(n\\241\\252)-251(dopi)1(e)-1(ro)-251(n)1(a)-252(g\\252os)-252(Han)1(ki,)-251(kt)1(\\363re)-1(j)]TJ 0 -13.549 Td[(lu)1(dzie)-334(d)1(onie\\261)-1(l)1(i,)-333(\\273)-1(e)-334(si\\246)-334(p)-27(obi)1(\\252)-334(zno)28(wu)-333(z)-334(o)-55(jce)-1(m.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego)-334(ci)-333(p)-28(otr)1(z)-1(a?)-333({)-334(zap)28(yta\\252.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-334(do)-333(dom)28(u,)-333(p)-27(\\363\\271)-1(n)1(o)-334(j)1(u\\273)-334({)-333(p)1(ros)-1(i)1(\\252a)-334(p)-27(o)28(w)-1(strzym)28(uj)1(\\241c)-334(\\252z)-1(y)84(.)]TJ 0 -13.55 Td[({)-452(Id\\271)-453(sama,)-452(nie)-453(p)-27(\\363)-55(jd\\246)-452(z)-453(tob)1(\\241!)-453(M)1(\\363)28(w)-1(i)1(\\246)-453(c)-1(i)1(,)-452(o)-28(dejd)1(\\271)-1(!)-452({)-452(krzykn)1(\\241\\252)-453(gr)1(o\\271)-1(n)1(ie,)-453(a)]TJ -27.879 -13.549 Td[(p)-27(ote)-1(m)-317(nagle,)-317(ni)1(e)-318(wiada)-317(lacz)-1(ego,)-317(nac)28(h)28(yli)1(\\252)-318(si\\246)-318(d)1(o)-317(niej)-317(i)-317(w)-317(s)-1(am\\241)-318(t)28(w)28(arz)-317(p)-28(o)28(wiedzia\\252:)]TJ 0 -13.549 Td[({)-283(\\233e)-1(b)28(y)-283(mni)1(e)-284(w)-283(k)55(a)-55(jd)1(an)28(y)-283(s)-1(k)1(uli,)-283(w)-283(lo)-28(c)28(h)28(u)-283(zam)-1(kn)1(\\246)-1(l)1(i,)-283(w)27(ol)1(niejsz)-1(y)1(m)-284(b)28(ym)-283(b)28(y\\252)-283(ni)1(\\271)-1(li)-283(p)1(rzy)]TJ 0 -13.549 Td[(tob)1(ie)-1(,)-333(s\\252ys)-1(zysz)-1(,)-333(w)28(olni)1(e)-1(j)1(s)-1(zym!)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(z)-1(ap)1(\\252ak)56(a\\252)-1(a)-333(\\273a\\252o)-1(\\261ni)1(e)-334(i)-333(p)-28(osz\\252)-1(a.)]TJ 0 -13.549 Td[(I)-333(on)-333(s)-1(i\\246)-333(z)-1(ar)1(az)-334(p)-28(o)-27(dn)1(i\\363s)-1(\\252,)-333(wysz)-1(ed\\252)-333(na)-333(dw)28(\\363r)-333(i)-333(p)-28(o)28(wl\\363k\\252)-333(s)-1(i)1(\\246)-334(ku)-333(m\\252yno)28(wi.)]TJ 0 -13.55 Td[(No)-28(c)-451(b)28(y)1(\\252a)-451(jasna,)-450(rozgorza\\252a)-451(mies)-1(i\\246c)-1(zn\\241)-450(p)-28(o\\261wiat\\241,)-450(dr)1(z)-1(ew)27(a)-450(k\\252ad\\252y)-450(d\\252ugi)1(e)-1(,)]TJ -27.879 -13.549 Td[(zgo\\252)-1(a)-374(ni)1(e)-1(b)1(ie)-1(skie,)-374(pr)1(z)-1(es)-1(r)1(e)-1(b)1(rz)-1(on)1(e)-375(cie)-1(n)1(ie,)-375(mr\\363z)-374(taki)-374(\\261)-1(cisk)55(a\\252,)-374(\\273e)-375(raz)-375(p)-27(o)-375(r)1(az)-375(s)-1(\\252y)1(c)27(ha\\242)]TJ 0 -13.549 Td[(b)28(y\\252o)-314(trzask)55(an)1(ie)-315(\\273e)-1(r)1(dek)-314(i)-315(j)1(akb)28(y)-314(cic)27(h)29(y)83(,)-314(p)1(rz)-1(ejm)28(uj)1(\\241c)-1(y)-314(sk)28(o)27(wyt)-314(n)1(i\\363s)-1(\\252)-314(si\\246)-315(p)-27(o)-315(r)1(oz)-1(i)1(s)-1(kr)1(z)-1(o-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-359(\\261)-1(n)1(iegac)27(h,)-359(cic)27(h)1(o\\261)-1(\\242)-359(m)-1(ar)1(t)27(w)28(a,)-359(z)-1(eskrzyt)28(w)-1(i)1(a\\252a)-360(tu)1(li\\252a)-359(\\261)-1(wiat)-359(ca\\252y)83(,)-359(wie)-1(\\261)-359(ju)1(\\273)-360(s)-1(p)1(a\\252a,)]TJ 0 -13.549 Td[(ani)-381(jedn)1(o)-382(okno)-382(n)1(ie)-383(b)1(\\252ysk)55(a\\252o)-382(\\261wiat\\252e)-1(m,)-382(n)1(i)-382(pi)1(e)-1(s)-382(nie)-382(zas)-1(zc)-1(ze)-1(k)56(a\\252,)-382(n)1(i)-382(m\\252)-1(y)1(n)-382(n)1(ie)-383(tu)1(r-)]TJ 0 -13.55 Td[(k)28(ota\\252,)-299(n)1(ic)-299({)-299(jeno)-299(o)-28(d)-298(k)56(arcz)-1(m)28(y)-299(do)-27(c)27(ho)-27(dzi\\252)-299(s)-1(c)28(hry)1(p\\252y)-299(\\261pi)1(e)-1(w)-299(Jam)28(bro\\273a,)-299(kt\\363r)1(e)-1(n)-298(s)-1(w)28(oim)]TJ 0 -13.549 Td[(zw)-1(y)1(c)-1(za)-56(j)1(e)-1(m)-334(wy\\261pi)1(e)-1(wyw)28(a\\252)-334(n)1(a)-334(\\261ro)-28(d)1(ku)-333(d)1(rogi,)-333(ale)-333(s)-1(\\252ab)-27(o)-334(ki)1(e)-1(b)28(y)-333(p)1(rze)-1(z)-334(sen.)]TJ 27.879 -13.549 Td[(An)28(tek)-391(wl\\363k\\252)-391(si\\246)-392(ci\\246\\273)-1(k)28(o)-391(i)-390(w)27(oln)1(o)-391(do)-28(ok)28(o\\252a)-391(sta)28(w)-1(u)1(,)-391(p)1(rz)-1(y)1(s)-1(ta)28(w)28(a\\252,)-391(rozgl\\241da\\252)-391(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)1(rzytomnie,)-222(nas\\252uc)27(h)1(iw)28(a\\252)-223(tr)1(w)27(o\\273nie,)-222(b)-27(o)-223(w)28(ci\\241\\273)-223(h)28(u)1(c)-1(za\\252y)-222(m)27(u)-222(w)28(e)-223(\\252b)1(ie)-223(o)-55(jco)27(w)28(e)-223(strasz)-1(-)]TJ 0 -13.549 Td[(ne)-349(s)-1(\\252o)28(w)28(a,)-349(b)-27(o)-350(w)28(ci\\241\\273)-350(wid)1(z)-1(ia\\252)-349(j)1(e)-1(go)-349(o)-28(cz)-1(y)-348(rozs)-1(ro\\273one,)-349(b)1(ij\\241ce)-350(w)-349(ni)1(e)-1(go)-349(kiej)-349(n)1(o\\273)-1(em,)-349(\\273)-1(e)]TJ 0 -13.55 Td[(cofa\\252)-287(si\\246)-287(b)-27(e)-1(zwiedni)1(e)-1(,)-286(l\\246k)-286(\\261)-1(cis)-1(k)56(a\\252)-286(go)-287(za)-287(gar)1(d\\252o,)-286(s)-1(erce)-287(z)-1(amiera\\252o,)-286(w)-1(\\252osy)-286(s)-1(i\\246)-287(j)1(e)-1(\\273y\\252y)-286({)]TJ 0 -13.549 Td[(a)-328(z)-329(p)1(am)-1(i\\246ci)-328(gin\\246\\252a)-328(z)-1(a)28(wz)-1(i\\246to\\261\\242)-1(,)-328(gin)1(\\246)-1(\\252o)-328(k)28(o)-28(c)28(hani)1(e)-1(,)-328(gi)1(n\\246)-1(\\252o)-328(wsz)-1(ystk)28(o,)-328(a)-328(os)-1(ta)28(w)28(a\\252)-329(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(strac)27(h)-333(\\261mie)-1(r)1(te)-1(l)1(n)28(y)83(,)-333(d)1(ygo)-28(c\\241c)-1(e)-334(p)1(rze)-1(r)1(a\\273)-1(enia)-333(i)-333(rozpacz)-1(l)1(iw)27(a,)-333(\\273alna)-333(n)1(ie)-1(mo)-28(c...)]TJ 27.879 -13.549 Td[(Sam)-262(nie)-262(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-262(k)1(ie)-1(d)1(y)-262(z)-1(acz)-1(\\241\\252)-262(i\\261\\242)-263(ku)-262(d)1(om)-1(o)28(wi,)-262(gd)1(y)-262(s)-1(p)1(rz)-1(ed)-262(k)28(o\\261c)-1(io\\252a)-262(dosze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(go)-371(b)-27(oles)-1(n)29(y)-371(p)1(\\252ac)-1(z)-371(i)-370(g\\252)-1(o\\261ne)-371(wyr)1(z)-1(ek)56(ania,)-370(p)-27(o)-28(d)-370(\\014gur)1(\\241,)-371(sto)-56(j)1(\\241c)-1(\\241)-370(pr)1(z)-1(ed)-370(s)-1(am)28(ym)-1(i)-370(wr\\363t-)]TJ 0 -13.55 Td[(ni)1(am)-1(i)-354(n)1(a)-354(c)-1(me)-1(n)29(tarz,)-354(ktos)-1(i)1(k)-354(le)-1(\\273a\\252)-354(rozkrzy\\273)-1(o)28(w)28(an)28(y)-354(na)-354(\\261niegu,)-354(w)-354(cie)-1(n)1(iu,)-354(j)1(aki)-354(p)1(ada\\252)]TJ 0 -13.549 Td[(o)-28(d)-329(par)1(k)55(an)29(u,)-330(n)1(ic)-330(nie)-330(mo\\273)-1(n)1(a)-330(b)28(y\\252o)-330(r)1(oz)-1(p)-27(ozna\\242,)-330(p)-27(o)-28(c)27(h)28(y)1(li\\252)-330(si\\246)-330(m)27(y\\261l\\241c)-1(,)-329(\\273)-1(e)-330(to)-330(j)1(aki)-330(ob)-27(cy)]TJ 0 -13.549 Td[(w)28(\\246)-1(d)1(ro)28(w)-1(n)1(ik)-333(alb)-27(o)-333(i)-334(p)1(ijan)29(y)-333({)-334(a)-333(to)-333(Hank)56(a)-333(le)-1(\\273a\\252a)-334(\\273ebrz\\241c)-334(mi\\252os)-1(i)1(e)-1(rd)1(z)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-300(C)-1(h)1(o)-28(d)1(\\271)-301(do)-300(dom)28(u,)-300(zi\\241b)-300(taki,)-300(c)28(ho)-28(d)1(\\271)-1(,)-300(Han)28(u)1(\\261)-1(!)-300({)-300(pr)1(os)-1(i\\252,)-300(b)-27(o)-301(m)28(u)-300(dziwni)1(e)-301(z)-1(mi\\246-)]TJ -27.879 -13.549 Td[(k\\252a)-333(du)1(s)-1(za,)-333(a)-334(\\273e)-334(si\\246)-334(ni)1(e)-334(o)-28(d)1(e)-1(zw)27(a\\252a,)-333(un)1(i\\363s\\252)-334(j)1(\\241)-334(p)1(rze)-1(z)-334(si\\252\\246)-334(i)-333(p)-27(o)28(w)-1(i)1(\\363)-28(d\\252)-333(do)-333(dom)28(u.)]TJ 27.879 -13.55 Td[(Nie)-334(m\\363)28(wili)-333(ni)1(c)-334(z)-1(e)-333(s)-1(ob)1(\\241,)-334(b)-27(o)-333(Hank)56(a)-333(rze)-1(wni)1(e)-334(p\\252ak)56(a\\252a.)]TJ\nET\nendstream\nendobj\n860 0 obj <<\n/Type /Page\n/Contents 861 0 R\n/Resources 859 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n859 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n864 0 obj <<\n/Length 7067      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(20)]TJ/F17 10.909 Tf 0 -73.325 Td[(U)-244(Boryn)1(\\363)27(w)-244(b)28(y)1(\\252o)-244(kiej)-244(w)-244(grobi)1(e)-245(p)-27(o)-244(t)28(ym)-244(\\261)-1(wi\\246c)-1(ie)-244({)-244(ni)1(e)-245(p)1(\\252ac)-1(z,)-244(nie)-244(kr)1(z)-1(yk)1(i,)-244(ni)1(e)-245(p)-27(om)-1(sto-)]TJ 0 -13.549 Td[(w)28(ania,)-392(a)-393(ino)-392(c)-1(i\\246\\273k)55(a)-392(c)-1(ic)28(ho\\261\\242)-1(,)-392(z)-1(\\252o)28(wrogo)-393(p)1(rz)-1(y)1(c)-1(za)-56(j)1(ona)-393(i)-392(p)-28(e\\252na)-393(p)-27(o)28(ws)-1(tr)1(z)-1(ym)28(yw)28(an)28(yc)27(h)]TJ 0 -13.549 Td[(gni)1(e)-1(w)28(\\363)28(w)-334(a)-333(\\273)-1(al\\363)28(w.)]TJ 27.879 -13.549 Td[(Ca\\252y)-303(d)1(om)-303(z)-1(milkn)1(\\241\\252,)-303(osn)28(u\\252)-302(s)-1(i\\246)-303(p)-27(os\\246)-1(p)1(no\\261c)-1(i\\241,)-302(a)-303(\\273y\\252)-303(w)-303(ci\\241)-28(g\\252ej)-303(tr)1(w)27(o)-27(dze)-304(i)-302(o)-28(cz)-1(e-)]TJ -27.879 -13.55 Td[(kiw)28(ani)1(u)-359(cz)-1(ego\\261)-360(strasz)-1(n)1(e)-1(go,)-358(jak)-359(ki)1(e)-1(b)28(y)-358(p)-28(o)-27(d)-359(dac)28(hem)-1(,)-358(kt\\363ren)-359(lad)1(a)-359(c)27(h)28(wil)1(a)-359(m)-1(a)-359(p)1(a\\261)-1(\\242)]TJ 0 -13.549 Td[(na)-333(g\\252o)28(wy)83(.)]TJ 27.879 -13.549 Td[(St)1(ary)83(,)-222(p)-28(o)28(wr\\363)-28(ciwsz)-1(y)-223(d)1(o)-223(dom)28(u)-223(n)1(i)-223(p)-27(ote)-1(m,)-223(n)1(a)27(w)28(e)-1(t)-222(naza)-56(ju)1(trz)-223(ani)-222(m)-1(ar)1(nego)-223(s)-1(\\252o)28(w)27(a)]TJ -27.879 -13.549 Td[(ni)1(e)-295(rz)-1(ek\\252)-294(Jagusi,)-294(na)28(w)27(et)-295(p)1(rze)-1(d)-294(Domin)1(ik)28(o)28(w)27(\\241)-295(si\\246)-295(n)1(ie)-295(u\\273ala\\252,)-294(jakb)28(y)-294(si\\246)-295(nic)-295(n)1(ie)-295(sta\\252o.)]TJ 27.879 -13.549 Td[(Roz)-1(c)28(hor)1(z)-1(a\\252)-332(j)1(e)-1(n)1(o)-332(z)-333(t)28(yc)28(h)-332(p)1(rzyta)-56(j)1(on)28(yc)28(h)-332(w)-332(sobie)-332(z\\252)-1(o\\261ci)-332(i)-332(z)-332(\\252\\363\\273)-1(k)56(a)-332(si\\246)-332(p)-28(o)-27(dn)1(ie)-1(\\261\\242)]TJ -27.879 -13.549 Td[(ni)1(e)-334(m\\363g\\252)-1(,)-333(\\273e)-334(to)-333(go)-334(ci\\246giem)-334(mdli\\252o,)-333(k)28(olk)1(i)-333(s)-1(pi)1(e)-1(r)1(a\\252)-1(y)-333(w)-333(b)-28(ok)1(u)-333(i)-333(gor\\241co\\261)-1(\\242)-334(r)1(oz)-1(b)1(ie)-1(r)1(a\\252a.)]TJ 27.879 -13.55 Td[({)-358(Nic)-358(to)-358(inn)1(e)-1(go,)-357(t)28(ylk)28(o)-358(w)27(\\241t)1(roba)-358(si\\246)-358(w)27(ama)-358(z)-1(ap)1(iek\\252a)-358(alb)-27(o)-358(m)-1(acica)-359(op)1(ad\\252a!)-358({)]TJ -27.879 -13.549 Td[(rze)-1(k)1(\\252a)-283(Domin)1(ik)28(o)28(w)27(a)-282(sm)-1(ar)1(uj\\241c)-282(m)27(u)-282(b)-27(oki)-282(gor)1(\\241c)-1(ym)-282(olejem)-1(;)-282(n)1(ic)-283(si\\246)-283(n)1(ie)-283(o)-28(d)1(e)-1(zw)28(a\\252)-1(,)-282(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(p)-27(os)-1(t\\246kiw)28(a\\252)-334(b)-27(ole\\261)-1(n)1(ie)-334(i)-333(w)-333(pu\\252ap)-333(u)1(par)1(c)-1(ie)-333(patrzy\\252.)]TJ 27.879 -13.549 Td[({)-303(Nie)-304(Jagu)1(s)-1(in)1(a)-303(to)-304(win)1(a,)-303(nie!)-303({)-303(z)-1(acz)-1(\\246\\252a)-304(cic)27(h)1(o,)-303(b)28(y)-303(na)-303(izbi)1(e)-304(nie)-303(dos\\252ys)-1(ze)-1(l)1(i,)-303(b)-28(o)]TJ -27.879 -13.549 Td[(si\\246)-334(ju)1(\\273)-334(sro)-28(d)1(z)-1(e)-334(f)1(raso)27(w)28(a\\252a,)-333(\\273)-1(e)-333(ani)-333(s)-1(\\252o)28(w)28(a)-334(n)1(ie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(o)-333(w)27(cz)-1(or)1(a)-56(jsze)-1(j)-333(spr)1(a)27(wie.)]TJ 27.879 -13.55 Td[({)-333(A)-334(cz)-1(y)1(ja?)-333({)-334(mru)1(kn\\241\\252.)]TJ 0 -13.549 Td[({)-334(W)-334(czym)-335(t)1(o)-334(w)-1(i)1(no)28(w)27(at)1(a?)-335(W)1(y\\261)-1(cie)-334(os)-1(ta)28(wili)-333(j\\241)-334(sam\\241)-334(i)-334(p)-27(os)-1(zli)-334(p)1(i\\242)-334(do)-334(alk)1(ie)-1(r)1(z)-1(a,)]TJ -27.879 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(a)-410(gra\\252a,)-411(ta\\253)1(c)-1(o)28(w)28(a\\252y)-411(ws)-1(zystkie,)-411(b)1(a)27(wi\\252y)-410(s)-1(i)1(\\246)-1(,)-410(to)-411(c)-1(\\363\\273,)-411(j)1(ak)-411(ten)-410(s)-1(ams)-1(on)-410(mia\\252a)]TJ 0 -13.549 Td[(sta\\242)-391(w)-390(k)56(\\241cie)-1(,)-389(m)-1(\\252o)-28(d)1(a)-390(pr)1(z)-1(ec)-1(i)1(e)-1(\\273,)-390(zdro)28(w)28(a)-390(i)-390(zaba)28(wy)-390(jej)-389(p)-28(otr)1(z)-1(eba:)-389(Z)-1(n)1(iew)27(oli)1(\\252)-390(j\\241,)-390(to)-389(i)]TJ 0 -13.549 Td[(p)-27(os)-1(z\\252a)-259(ta\\253co)27(w)28(a\\242)-1(.)-258(Mog\\252a)-259(to)-259(nie)-259(i\\261\\242)-1(?)-259(Ku\\273den)-259(w)-259(k)56(arcz)-1(mie)-260(ma)-259(pr)1(a)28(w)27(o)-259(br)1(a\\242)-260(d)1(o)-259(ta\\253ca,)]TJ 0 -13.55 Td[(kt\\363r)1(a)-315(m)27(u)-314(s)-1(i)1(\\246)-316(j)1(e)-1(n)1(o)-315(u)28(widzi,)-314(a)-315(\\273)-1(e)-315(j\\241)-315(wyb)1(ra\\252)-315(i)-314(nie)-315(p)-27(opuszc)-1(za\\252)-315(z)-1(b)-27(\\363)-56(j)-314(ten)-315(j)1(e)-1(d)1(e)-1(n)1(,)-315(to)-315(in)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(z\\252o\\261)-1(\\242)-334(d)1(o)-334(w)28(as)-1(,)-333(i)1(no)-333(przez)-334(z)-1(\\252o\\261\\242)-1(!)]TJ 27.879 -13.549 Td[({)-367(S)1(m)-1(ar)1(ujcie)-367(jeno)-366(i)-367(r\\363b)-27(cie)-1(,)-366(b)28(ym)-367(wyzdro)28(wia\\252)-367(ry)1(c)27(h\\252o,)-366(a)-367(ni)1(e)-368(u)1(c)-1(zc)-1(i)1(e)-368(mni)1(e)-368(r)1(o-)]TJ -27.879 -13.549 Td[(zum)27(u)1(,)-333(dob)1(rz)-1(e)-333(s)-1(am)-333(w)-1(i)1(e)-1(m,)-333(jak)-333(b)28(y\\252o,)-333(n)1(ie)-334(trzeba)-333(m)-1(i)-333(w)28(as)-1(ze)-1(go)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(ania.)]TJ 27.879 -13.549 Td[({)-471(Kiej\\261c)-1(i)1(e)-472(taki)-471(m\\241d)1(ry)83(,)-470(to)-471(i)-471(to)-471(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-472(p)-27(o)28(winn)1(i\\261)-1(cie,)-471(\\273)-1(e)-471(k)28(obieta)-471(m\\252o)-28(da,)]TJ -27.879 -13.55 Td[(zdro)28(w)28(a)-402(te\\273)-403(sw)28(o)-56(jej)-401(uciec)27(h)28(y)-401(p)-28(otr)1(z)-1(ebu)1(je!)-402(Nie)-402(d)1(rew)-1(n)1(o)-402(j)1(e)-1(st)-402(n)1(i)-402(staru)1(c)27(ha,)-401(z)-1(a)-401(c)27(h)1(\\252)-1(op)1(a)]TJ 0 -13.549 Td[(p)-27(os)-1(z\\252a,)-333(to)-334(c)28(h\\252opa)-333(jej)-333(p)-27(otrza,)-333(nie)-333(dziadygi)1(,)-334(b)29(y)-333(z)-334(nim)-333(r\\363\\273aniec)-334(p)1(rz)-1(ebi)1(e)-1(r)1(a)-1(\\252a,)-333(n)1(ie)-1(!)]TJ 27.879 -13.549 Td[({)-333(A)-334(i)-333(to)-333(cz)-1(em)27(u)1(\\261)-1(cie)-334(mi)-333(j\\241)-333(dali)1(?)-334({)-333(rzuci\\252)-334(u)1(r\\241)-28(gl)1(iw)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-282(Cz)-1(em)27(u)1(?)-282(A)-282(kto)-282(to)-282(sk)55(amla\\252)-282(j)1(ak)-282(ten)-282(pi)1(e)-1(s?)-282(Nie)-283(j)1(a)-282(w)27(as)-282(mole)-1(sto)28(w)27(a\\252am,)-282(b)28(y)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(j\\241)-461(wzie)-1(n)1(i,)-461(n)1(ie)-462(j)1(a)-461(w)27(am)-461(j\\241)-461(p)-27(o)-28(d)1(t)28(yk)56(a\\252am)-462(n)1(i)-461(ona)-461(sam)-1(a!)-460(Mog\\252a)-461(s)-1(e)-461(i\\261\\242)-462(za)-461(k)55(a\\273dego)]TJ 0 -13.55 Td[(dr)1(ugiego)-333(i)-333(z)-334(t)28(yc)27(h)-333(n)1(a)-56(j)1(pierws)-1(zyc)28(h)-333(w)27(e)-334(wsi,)-333(t)28(ylu)-333(ic)28(h)-333(b)28(y\\252o..)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(o,)-333(j)1(e)-1(n)1(o)-334(n)1(ie)-334(d)1(o)-334(\\273e)-1(n)1(iacz)-1(ki)1(!...)]TJ 0 -13.549 Td[({)-333(A\\273)-1(eb)28(y)-333(w)27(am)-333(oz)-1(\\363r)-333(wykr)1(\\246)-1(ci\\252o)-333(z)-1(a)-333(to)-333(pies)-1(k)1(ie)-334(sz)-1(cz)-1(ek)56(anie!)]TJ 330.353 -29.888 Td[(267)]TJ\nET\nendstream\nendobj\n863 0 obj <<\n/Type /Page\n/Contents 864 0 R\n/Resources 862 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n862 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n867 0 obj <<\n/Length 10611     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(268)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Pra)28(wda)-333(w)28(as)-334(s)-1(p)1(arzy\\252a)-333(kie)-1(j)-332(p)-28(okr)1(z)-1(y)1(w)27(a,)-333(\\273e)-1(\\261c)-1(ie)-333(s)-1(i\\246)-333(tak)-333(c)-1(iepn)1(\\246)-1(l)1(i!)]TJ 0 -13.549 Td[({)-333(C)-1(y)1(ga\\253st)28(w)27(o)-333(paskud)1(ne)-333(to,)-334(n)1(ie)-334(p)1(ra)28(wda!)-333(Cyga\\253st)28(w)27(o!)]TJ 0 -13.549 Td[(Naci\\241)-28(gn\\241\\252)-353(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-354(n)1(a)-353(piersi,)-353(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-354(si\\246)-353(do)-353(\\261)-1(cian)28(y)-353(i)-352(ani)-353(ju)1(\\273)-354(s\\252o)28(w)27(em)-354(si\\246)]TJ -27.879 -13.549 Td[(ozw)27(a\\252)-240(n)1(a)-240(jej)-240(d)1(o)28(w)27(o)-28(d)1(z)-1(eni)1(a)-240(gor\\241ce)-1(,)-239(dop)1(ie)-1(r)1(o)-240(gdy)-239(w)-240(p\\252acz)-241(u)1(derzy\\252a,)-240(sz)-1(epn)1(\\241\\252)-240(z)-1(\\252o\\261liwie:)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(bab)1(a)-334(ki)1(jan)1(k)55(\\241)-333(ni)1(e)-334(p)-28(or)1(e)-1(d)1(z)-1(i)1(,)-334(t)1(o)-334(m)28(y\\261)-1(l)1(i)-333(p\\252ac)-1(zem)-334(c)-1(o)-333(ws)-1(k)28(\\363r)1(a\\242)-1(!)]TJ 0 -13.55 Td[(Dob)1(rz)-1(e)-383(w)-1(i)1(e)-1(dzia\\252,)-383(c)-1(o)-383(p)-27(o)27(wiedzia\\252,)-383(dob)1(rz)-1(e!)-383(T)83(e)-1(r)1(az)-384(ano,)-383(kiej)-383(s)-1(i)1(\\246)-384(z)-384(\\252\\363\\273)-1(k)56(a)-384(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(\\261\\242)-479(n)1(ie)-478(m)-1(\\363g\\252,)-477(przyc)27(h)1(o)-28(dzi\\252o)-478(m)28(u)-478(d)1(o)-478(g\\252o)27(wy)84(,)-478(c)-1(o)-477(to)-478(o)-478(niej)-477(p)-28(o)28(wiadan)1(o)-478(pr)1(z)-1(\\363)-28(d)1(z)-1(i)1(,)]TJ 0 -13.549 Td[(rozw)27(a\\273a\\252)-303(to)-302(s)-1(ob)1(ie)-1(,)-302(uk)1(\\252)-1(ad)1(a\\252,)-303(d)1(o)-303(ku)1(p)28(y)-303(\\261c)-1(i)1(\\241)-28(ga\\252,)-303(d)1(e)-1(li)1(b)-28(ero)28(w)28(a\\252)-303({)-303(i)-302(tak)55(a)-302(z)-1(\\252o\\261\\242)-303(go)-303(pr)1(z)-1(ej-)]TJ 0 -13.549 Td[(mo)27(w)28(a\\252a,)-407(tak)56(a)-407(z)-1(azdr)1(o\\261)-1(\\242)-407(gryz\\252a,)-407(\\273)-1(e)-407(nie)-407(m\\363g\\252)-408(wyl)1(e)-1(\\273e)-1(\\242,)-407(rzuca\\252)-407(s)-1(i\\246)-407(na)-407(\\252\\363\\273ku,.)-406(kl\\241\\252)]TJ 0 -13.549 Td[(z)-351(cic)27(h)1(a,)-351(to)-350(o)-28(dwraca\\252)-351(si\\246)-351(t)28(w)28(arz)-1(\\241)-350(do)-350(izb)28(y)-351(i)-350(t)28(ymi)-351(z\\252ymi,)-350(jastrz\\246)-1(b)1(im)-1(i)-350(\\261le)-1(p)1(iami)-351(c)28(ho-)]TJ 0 -13.549 Td[(dzi\\252)-363(za)-363(Jagn)1(\\241...)-362(On)1(a)-363(z)-1(a\\261)-363(b)29(y\\252a)-363(jak)56(a\\261)-363(b)1(lada,)-362(z)-1(mize)-1(r)1(o)27(w)28(ana,)-362(\\273e)-364(j)1(ak)-363(senna)-362(c)27(h)1(o)-28(dzi\\252a)]TJ 0 -13.55 Td[(p)-27(o)-312(d)1(om)27(u,)-311(a)-311(ino)-311(t)27(y)1(m)-1(i)-311(\\273a\\252)-1(osn)28(ymi)-311(o)-28(c)-1(zami)-312(skrzywdzonego)-312(d)1(z)-1(i)1(e)-1(ci\\241tk)56(a)-312(sp)-28(oziera\\252a)-312(n)1(a)]TJ 0 -13.549 Td[(ni)1(e)-1(go)-277(i)-278(tak)-277(w)-1(zdy)1(c)27(ha\\252a,)-277(a\\273)-278(m)27(u)-277(s)-1(i)1(\\246)-279(\\273al)-278(r)1(obi\\252o)-277(i)-278(se)-1(r)1(c)-1(e)-278(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-278(ta)-55(ja\\252o,)-278(al)1(e)-279(i)-277(z)-1(azdr)1(o\\261)-1(\\242)]TJ 0 -13.549 Td[(t)28(ym)-334(wi\\246ksz)-1(a)-333(ros\\252a.)]TJ 27.879 -13.549 Td[(Wlek\\252o)-420(si\\246)-420(tak)-420(b)1(lisk)28(o)-420(c)-1(a\\252\\241)-420(n)1(iedzie)-1(l)1(\\246)-1(,)-420(\\273e)-420(ju)1(\\273)-421(w)-420(c)27(h)1(a\\252up)1(ie)-420(w)-1(y)1(trzym)-1(a\\242)-420(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(tru)1(dn)1(o,)-288(m)-1(i)1(a\\252)-1(a\\242)-288(prze)-1(cie\\273)-289(du)1(s)-1(z\\246)-289(wielce)-289(c)-1(zuj)1(\\241c)-1(\\241)-288({)-288(jak)28(o)-288(te)-1(n)-288(k)1(w)-1(i)1(at)-289(n)1(iekt\\363ry)84(,)-288(c)-1(o)-288(ni)1(e)-1(c)27(h)]TJ 0 -13.55 Td[(jeno)-399(zi\\241b)-399(na\\253)-399(c)27(h)29(uc)27(h)1(ni)1(e)-1(,)-399(a)-400(wn)1(e)-1(t)-399(o)28(w)27(ar)1(z)-1(y)-399(s)-1(i)1(\\246)-400(i)-400(r)1(oz)-1(d)1(ygo)-28(cz)-1(e)-400(z)-400(b)-27(oleni)1(a.)-400(M)1(iz)-1(ern)1(ia\\252a)]TJ 0 -13.549 Td[(te\\273)-337(w)-336(o)-27(c)-1(zac)27(h,)-335(s)-1(y)1(pia\\242)-336(n)1(ie)-336(m)-1(og\\252a,)-336(j)1(ad\\252o)-336(n)1(ie)-336(s)-1(mak)28(o)28(w)27(a\\252o,)-335(usie)-1(d)1(z)-1(i)1(e)-1(\\242)-336(tru)1(dn)1(o)-336(b)28(y\\252o)-336(n)1(a)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(cu)-285(i)-285(rob)-27(ot\\241)-286(za)-56(j)1(\\241\\242)-1(,)-285(b)-27(o)-286(wsz)-1(ystk)28(o)-285(le)-1(cia\\252o)-285(z)-286(r\\241k)-285(i)-285(s)-1(tr)1(ac)27(h)-285(c)-1(i)1(\\246)-1(giem)-286(za)-286(n)1(i\\241)-285(c)27(ho)-27(dzi\\252,)]TJ 0 -13.549 Td[(b)-27(o)-280(i)-279(jak)1(\\273)-1(e,)-280(k)1(ie)-1(j)-279(stary)-279(w)28(c)-1(i\\241\\273)-280(l)1(e)-1(\\273a\\252,)-280(p)-27(ost\\246)-1(ki)1(w)27(a\\252,)-279(dob)1(rego)-280(s\\252)-1(o)28(w)28(a)-280(n)1(ie)-280(rze)-1(k)1(\\252,)-280(a)-279(jak)28(o)-279(te)-1(n)]TJ 0 -13.549 Td[(zb)-28(\\363)-55(j)-415(s)-1(p)-27(ogl\\241d)1(a\\252.)-416(Ci\\246giem)-416(cz)-1(u)1(\\252a)-416(j)1(e)-1(go)-415(o)-28(cz)-1(y)-415(n)1(a)-416(sobie,)-415(c)-1(i)1(\\246)-1(giem,)-415(\\273)-1(e)-416(j)1(u\\273)-416(wyt)1(rz)-1(y)1(m)-1(a\\242)]TJ 0 -13.55 Td[(ni)1(e)-421(mog\\252a.)-420(Ci\\246\\273)-1(y)1(\\252)-1(o)-419(jej)-420(\\273yc)-1(i)1(e)-1(,)-419(b)-28(o)-420(i)-419(t\\246)-1(skn)1(o\\261)-1(ci)-420(rozbi)1(e)-1(r)1(a\\252)-1(y)-419(nieop)-27(o)27(wiedzian)1(e)-1(,)-419(\\273)-1(e)-420(to)]TJ 0 -13.549 Td[(i)-446(o)-446(An)29(tku)-445(nic)-446(ni)1(e)-447(wiedzia\\252a,)-446(n)1(ie)-446(p)-28(ok)56(aza\\252)-446(s)-1(i\\246)-446(b)-27(o)28(w)-1(i)1(e)-1(m)-446(pr)1(z)-1(ez)-447(t)1(\\246)-447(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246,)-446(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(ni)1(e)-1(r)1(az)-334(o)-333(zm)-1(i)1(e)-1(rzc)27(h)29(u)-333(p)-27(o)-28(d)-333(\\261mie)-1(r)1(te)-1(l)1(n)28(ym)-333(s)-1(tr)1(ac)27(h)1(e)-1(m)-333(wygl\\241da\\252a)-333(p)-27(o)-28(d)-332(br\\363g!)-332(Nie)-333(\\261)-1(mia\\252a)]TJ 0 -13.549 Td[(si\\246)-446(z)-1(a\\261)-446(p)29(yta\\242)-446(ni)1(k)28(ogo.)-446(J)1(u\\273)-446(si\\246)-446(jej)-445(tak)-445(m)-1(i)1(e)-1(rzi\\252o)-445(w)-446(c)27(h)1(a\\252)-1(u)1(pi)1(e)-1(,)-445(\\273)-1(e)-446(p)-27(o)-445(par\\246)-446(r)1(az)-1(y)-445(w)]TJ 0 -13.549 Td[(dzie\\253)-320(biega\\252a)-321(d)1(o)-321(matki,)-320(ale)-321(Dominik)28(o)28(w)28(a)-321(ma\\252o)-321(sie)-1(d)1(z)-1(i)1(a\\252a)-321(w)-321(c)27(h)1(a\\252up)1(ie)-1(,)-320(do)-320(c)27(h)1(oryc)27(h)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(dzi\\252a,)-323(to)-323(w)-324(k)28(o\\261c)-1(i)1(e)-1(le)-323(przes)-1(iad)1(yw)27(a\\252a,)-323(a)-323(je\\261li)-323(b)28(y\\252a,)-323(to)-323(p)-28(ok)56(azyw)27(a\\252a)-323(srog\\241)-323(t)27(w)28(arz)-323(i)]TJ 0 -13.549 Td[(gorzkie)-377(wym\\363)28(w)-1(k)1(i)-377(cz)-1(yn)1(i\\252a,)-376(a)-377(c)27(h)1(\\252opaki)-376(te)-1(\\273)-377(\\252azi\\252y)-377(omro)-27(c)-1(zone,)-377(z\\252e)-378(i)-376(strapi)1(one,)-377(b)-27(o)]TJ 0 -13.549 Td[(stara)-321(S)1(z)-1(y)1(m)-1(k)56(a)-321(p)-27(obi)1(\\252a)-321(mi\\241dli)1(c)-1(\\241,)-320(\\273)-1(e)-321(to)-320(w)27(e)-321(T)83(r)1(z)-1(y)-320(Kr\\363le)-321(p)1(rze)-1(p)1(i\\252)-321(b)28(y)1(\\252)-321(w)-321(k)56(arcz)-1(mie)-321(c)-1(a\\252e)]TJ 0 -13.549 Td[(cz)-1(tery)-285(z\\252)-1(ot)1(e)-1(.)-285(Zagl\\241da\\252a)-285(p)-27(ote)-1(m)-285(do)-285(s)-1(\\241siad)1(\\363)27(w,)-285(b)28(y)-285(in)1(o)-286(j)1(ak)28(o\\261)-286(ten)-285(dzie\\253)-285(z)-1(ep)-28(c)28(hn)1(\\241\\242)-1(,)-285(ale)]TJ 0 -13.549 Td[(i)-364(t)1(am)-365(d)1(obr)1(z)-1(e)-364(jej)-364(n)1(ie)-364(b)28(y\\252o,)-363(ju\\261ci,)-364(n)1(ie)-364(w)-1(y)1(ganiali)-363(jej,)-363(ale)-364(prze)-1(z)-364(z\\246)-1(b)29(y)-364(c)-1(edzili)-363(s)-1(\\252o)28(w)28(a,)]TJ 0 -13.55 Td[(t)28(w)27(ar)1(do)-391(sp)-28(ozie)-1(r)1(ali,)-391(a)-391(ws)-1(zysc)-1(y)-391(zar\\363)28(wno)-391(biad)1(ali)-391(nad)-390(c)27(hor)1(ob\\241)-391(stare)-1(go)-391(wyr)1(z)-1(ek)55(a)-55(j\\241c)]TJ 0 -13.549 Td[(\\273a\\252)-1(o\\261liwie,)-333(jak)1(ie)-334(to)-333(te)-1(r)1(az)-334(c)-1(zasy)-334(n)1(as)-1(t)1(a)-56(j\\241)-333(p)1(as)-1(ku)1(dn)1(e)-1(!)]TJ 27.879 -13.549 Td[(A)-311(J\\363zk)56(a)-311(te\\273)-1(,)-310(jak)-311(i)1(no)-311(mog\\252a,)-311(d)1(ogryza\\252a)-311(jej)-311(n)1(a)-311(k)56(a\\273)-1(d)1(ym)-311(krok)1(u,)-310(na)28(w)27(et)-311(Wi)1(te)-1(k)]TJ -27.879 -13.549 Td[(b)-27(o)-56(j)1(a\\252)-265(si\\246)-264(ple\\261)-1(\\242)-264(p)-27(o)-264(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-264(pr)1(z)-1(y)-263(gos)-1(p)-27(o)-28(dar)1(z)-1(u)1(,)-264(\\273)-1(e)-264(s\\252)-1(o)28(w)28(a)-264(nie)-264(b)28(y\\252o)-264(z)-264(kim)-264(pr)1(z)-1(em)-1(\\363)28(wi\\242,)]TJ 0 -13.549 Td[(t)28(yla)-258(b)28(y\\252o)-259(ca\\252e)-1(j)-258(uciec)27(h)28(y)-258(i)-259(r)1(oz)-1(erw)28(ania)-258(m)27(y\\261li,)-258(c)-1(o)-258(tam)-259(Pietrek)-259(wiec)-1(zorami)-259(p)-27(o)-259(r)1(ob)-28(o)-27(c)-1(ie)]TJ 0 -13.549 Td[(pr)1(z)-1(egryw)28(a\\252)-333(z)-334(c)-1(i)1(c)27(ha)-333(na)-333(skrzypk)56(ac)27(h)-332(w)27(e)-334(sta)-56(j)1(ni)1(;)-334(b)-27(o)-333(w)-334(c)27(h)1(a\\252up)1(ie)-334(stary)-333(ni)1(e)-334(p)-27(oz)-1(w)28(ala\\252.)]TJ 27.879 -13.55 Td[(A)-242(zima)-242(w)27(ci\\241\\273)-242(b)28(y\\252a)-242(sroga,)-241(m)-1(r)1(o\\271)-1(n)1(a)-242(i)-242(wiejn)1(a,)-242(\\273e)-243(t)1(rz)-1(a)-241(b)28(y\\252o)-242(w)-242(c)27(h)1(a\\252up)1(ie)-242(s)-1(iedzie\\242)-1(!)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-410(jak)28(o\\261)-411(w)-410(sob)-28(ot\\246)-410(s)-1(t)1(ary)83(,)-409(c)27(ho)-27(\\242)-411(zdro)28(wy)-410(ni)1(e)-411(b)28(y\\252)-410(j)1(e)-1(sz)-1(cz)-1(e,)-410(zw)-1(l)1(\\363k\\252)-410(s)-1(i\\246)-410(z)]TJ -27.879 -13.549 Td[(\\252\\363\\273)-1(k)56(a,)-333(u)1(bra\\252)-333(c)-1(i)1(e)-1(p)1(\\252)-1(o,)-333(b)-27(o)-333(m)-1(r)1(\\363z)-334(b)28(y\\252)-333(trzas)-1(k)56(a)-55(j\\241cy)83(,)-333(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(wie\\261)-1(.)]TJ 27.879 -13.549 Td[(Zac)27(h)1(o)-28(dzi\\252)-429(do)-429(r\\363\\273n)28(yc)27(h)-429(c)28(ha\\252u)1(p,)-429(ni)1(b)28(y)-429(to)-430(ogr)1(z)-1(a\\242)-430(si\\246)-430(zdziebk)28(o,)-429(gdzie)-430(zno)28(wu)]TJ -27.879 -13.549 Td[(ze)-413(s)-1(p)1(ra)28(w)27(ami,)-412(a)-412(na)28(w)28(e)-1(t)-412(z)-413(t)1(akimi)-412(prze)-1(sta)28(w)27(a\\252)-412(c)27(h)1(\\246)-1(tl)1(iwie)-1(,)-412(j)1(akic)28(h)-412(prz\\363)-28(d)1(z)-1(i)-412(mija\\252)-412(b)-27(e)-1(z)]TJ 0 -13.55 Td[(s\\252)-1(o)28(w)28(a,)-327(i)-326(w)-1(sz\\246)-1(d)1(y)-327(pi)1(e)-1(r)1(w)-1(sz)-1(y)-326(z)-1(aczyna\\252)-327(o)-326(k)55(ar)1(c)-1(zm)-1(i)1(e)-328(i)-326(c)-1(a\\252\\241)-327(spr)1(a)28(w)27(\\246)-327(w)-327(\\261)-1(mies)-1(zki)-326(obraca\\252)]TJ 0 -13.549 Td[(a)-333(rad)-333(rozp)-27(o)27(wiad)1(a\\252,)-333(jak)28(o)-333(s)-1(i\\246)-333(b)28(y\\252)-333(t\\246)-1(go)-333(nap)1(i\\252)-333(i)-333(prze)-1(z)-333(to)-334(zac)27(h)1(orza\\252)-1(!)]TJ\nET\nendstream\nendobj\n866 0 obj <<\n/Type /Page\n/Contents 867 0 R\n/Resources 865 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n865 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n870 0 obj <<\n/Length 9074      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(269)]TJ -330.353 -35.866 Td[(Dziw)27(o)28(w)28(ano)-358(s)-1(i\\246)-359(t)1(e)-1(m)28(u,)-358(przytak)1(iw)27(an)1(o,)-359(g\\252o)28(w)28(am)-1(i)-358(kiw)28(ano,)-358(ale)-359(n)1(ikt)-358(s)-1(i)1(\\246)-359(w)-359(p)-27(ole)]TJ -27.879 -13.549 Td[(wypr)1(o)28(w)27(ad)1(z)-1(i\\242)-415(ni)1(e)-416(d)1(a\\252:)-415(Znal)1(i)-415(p)1(rz)-1(ecie)-1(\\273)-415(dob)1(rze)-415(jego)-415(nieust\\246pliw)28(\\241)-415(h)1(ardo\\261\\242)-1(,)-414(a)-415(i)-415(t)1(o,)]TJ 0 -13.549 Td[(\\273e)-455(s)-1(k)28(or)1(o)-455(n)1(a)-455(am)28(bi)1(t)-455(wzi\\241\\252,)-454(m)-1(o\\273na)-454(go)-454(b)28(y\\252o)-454(\\273)-1(ywym)-454(ogniem)-455(p)1(rzypi)1(e)-1(k)56(a\\242)-1(,)-454(a)-454(g\\252os)-1(u)]TJ 0 -13.549 Td[(b)28(y)-338(n)1(ie)-339(wyda\\252;)-338(wiedziano)-338(r\\363)28(wni)1(e)-1(\\273,)-339(j)1(ak)28(o)-338(s)-1(i\\246)-338(z)-1(a)28(w\\273)-1(d)1(y)-338(w)-1(y)1(nos)-1(i)1(\\252)-339(n)1(ad)-338(inn)1(e)-1(,)-338(p)1(usz)-1(y)1(\\252)-1(,)-338(za)]TJ 0 -13.549 Td[(na)-55(jl)1(e)-1(p)1(s)-1(ze)-1(go)-333(w)27(e)-333(w)-1(si)-333(m)-1(i)1(a\\252,)-334(a)-333(wielc)-1(e)-333(bacz)-1(y\\252,)-333(b)28(y)-333(go)-333(na)-333(ozorac)27(h)-333(n)1(ie)-334(ob)1(nosili.)]TJ 27.879 -13.55 Td[(Roz)-1(u)1(miano)-333(te\\273)-1(,)-333(\\273)-1(e)-333(z)-1(ap)-27(obi)1(e)-1(ga)-333(i)-333(plotk)1(i)-333(gas)-1(i,)-333(j)1(akie)-334(b)28(y)1(\\252y)-334(p)-27(o)28(ws)-1(ta\\252y)84(.)]TJ 0 -13.549 Td[(A)-454(n)1(a)28(w)27(et)-454(stary)-453(Szymon,)-453(s)-1(o\\252t)28(ys,)-454(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-454(m)27(u)-453(p)1(ros)-1(t)1(o)-454(w)-454(o)-28(cz)-1(y)84(,)-454(j)1(ak)-453(to)-454(u)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go)-333(b)28(y\\252o)-333(z)-1(wycz)-1(a)-55(jn)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-315(Ba)-56(j)-314(b)1(a)-56(j)1(u,)-314(c)27(h\\252op)-314(\\261liwy)-314(rwie)-1(,)-314(a)-315(i)1(no)-315(i)1(c)27(h)-314(dwie!)-315(Lu)1(dzkie)-315(gad)1(anie)-315(j)1(e)-1(st)-315(j)1(ak)-315(ten)]TJ -27.879 -13.549 Td[(ogie\\253,)-345(n)1(ie)-345(przygasic)-1(i)1(e)-346(p)1(az)-1(ur)1(am)-1(i)1(,)-345(s)-1(am)-345(si\\246)-346(m)28(usi)-345(wypal)1(i\\242)-1(!)-345(A)-345(to)-345(w)28(am)-345(jeno)-345(pr)1(z)-1(yp)-27(o-)]TJ 0 -13.549 Td[(mn\\246,)-398(com)-398(b)29(y\\252)-398(r)1(z)-1(ek\\252)-398(p)1(rze)-1(d)-397(\\261lu)1(b)-28(em:)-398(j)1(ak)-397(s)-1(tar)1(y)-397(bierze)-398(m)-1(\\252o)-27(d\\241,)-397(z)-1(\\252ego)-398(n)1(ie)-398(o)-27(degna)-397(i)]TJ 0 -13.55 Td[(\\261w)-1(i)1(\\246)-1(con\\241)-333(w)27(o)-28(d)1(\\241!)]TJ 27.879 -13.549 Td[(Ze)-1(\\271li\\252)-497(s)-1(i)1(\\246)-498(t)28(ym)-498(i)-497(p)1(ros)-1(t)1(o)-498(wr\\363)-28(ci\\252)-497(do)-497(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-497(Jagu\\261)-498(za\\261)-498(m)27(y)1(\\261)-1(l\\241c,)-497(\\273)-1(e)-497(s)-1(k)28(oro)]TJ -27.879 -13.549 Td[(ws)-1(ta\\252,)-400(to)-401(j)1(u\\273)-401(wsz)-1(ystk)28(o)-401(p)1(rze)-1(min)1(\\246)-1(\\252o)-401(i)-400(p)-27(o)27(wr)1(\\363)-28(c)-1(i)-400(do)-400(da)28(wnego,)-401(o)-27(de)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-400(z)-401(ulg\\241)-400(i)]TJ 0 -13.549 Td[(j\\246\\252a)-266(do)-266(ni)1(e)-1(go)-266(zagadyw)28(a\\242)-1(,)-266(to)-266(w)-266(o)-28(cz)-1(y)-266(n)1(agl\\241da\\242,)-266(pr)1(z)-1(y)1(m)-1(il)1(a\\242)-267(si\\246)-267(i)-266(p)-27(o)-266(iz)-1(b)1(ie)-266(krze)-1(k)28(or)1(z)-1(y\\242)]TJ 0 -13.549 Td[(s\\252)-1(o)-27(dk)28(o,)-241(jak)-241(pr)1(z)-1(\\363)-28(d)1(z)-1(i)1(...)-241(Ale)-242(wnet)-242(j)1(\\241)-242(opami\\246ta\\252)-242(tak)1(im)-242(os)-1(t)1(rym)-242(s\\252o)27(w)28(e)-1(m,)-241(\\273)-1(e)-242(stru)1(c)27(h)1(la\\252a;)]TJ 0 -13.55 Td[(a)-355(p)-27(otem)-355(nie)-355(zrobi)1(\\252)-355(s)-1(i)1(\\246)-356(i)1(nsz)-1(ym,)-354(nie)-355(p)1(ie)-1(\\261c)-1(i)1(\\252,)-355(n)1(ie)-355(ho\\252ub)1(i\\252,)-355(m)28(y\\261li)-355(n)1(ie)-355(z)-1(gad)1(yw)28(a\\252)-355(ni)-354(o)]TJ 0 -13.549 Td[(jej)-346(\\252as)-1(k)1(i)-346(s)-1(i\\246)-346(s)-1(tar)1(a\\252)-1(,)-346(a)-346(os)-1(t)1(ro)-346(kiej)-346(na)-346(dzie)-1(wk)28(\\246)-347(k)1(rzyc)-1(za\\252)-347(za)-346(niep)-28(or)1(z)-1(\\241d)1(ki)-346(i)-346(do)-346(rob)-27(ot)28(y)]TJ 0 -13.549 Td[(zagania\\252.)]TJ 27.879 -13.549 Td[(Od)-321(te)-1(go)-321(dni)1(a)-322(ws)-1(zystk)28(o)-322(z)-323(n)1(a)28(w)-1(r)1(ote)-1(m)-322(w)-322(sw)27(o)-55(je)-322(gar\\261c)-1(i)1(e)-323(u)1(j\\241\\252,)-322(p)1(rzypi)1(lno)28(wyw)28(a\\252)]TJ -27.879 -13.549 Td[(i)-362(z)-362(r\\241k)-361(nie)-362(p)-27(opuszc)-1(za\\252.)-362(Ca\\252e)-363(d)1(nie,)-362(sk)28(oro)-362(j)1(e)-1(n)1(o)-362(wyz)-1(d)1(ro)28(wia\\252,)-362(m\\252\\363)-28(c)-1(i)1(\\252)-362(z)-363(P)1(ie)-1(t)1(rkiem)-362(i)]TJ 0 -13.55 Td[(w)-286(s)-1(t)1(o)-28(dole)-286(r)1(obi\\252)-286(k)28(o\\252o)-286(zb)-27(o\\273)-1(a,)-286(k)1(rokiem)-286(s)-1(i)1(\\246)-287(p)1(ra)28(wie)-286(nie)-286(ru)1(s)-1(za)-56(j)1(\\241c)-287(z)-286(ob)-27(e)-1(j)1(\\261)-1(cia,)-285(b)-28(o)-286(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(wiec)-1(zorami)-390(w)-389(c)27(h)1(a\\252)-1(u)1(pi)1(e)-390(narz\\241dza\\252)-389(upr)1(z)-1(\\246\\273)-1(e)-389(alb)-28(o)-389(na)-389(k)28(ob)28(yl)1(ic)-1(y)-389(wystru)1(giw)27(a\\252)-389(r\\363\\273ne)]TJ 0 -13.549 Td[(p)-27(orz\\241dki)-227(gosp)-28(o)-27(darskie,)-227(a)-227(tak)-227(pil)1(nie)-227(s)-1(tr)1(\\363\\273)-1(o)28(w)27(a\\252)-227(Jagu)1(s)-1(i,)-227(\\273e)-228(i)-227(kr)1(oku)-227(n)1(ie)-228(mog\\252a)-227(z)-1(rob)1(i\\242,)]TJ 0 -13.549 Td[(b)28(y)-310(za)-310(ni\\241)-310(n)1(ie)-311(wygl\\241d)1(a\\252,)-310(na)28(w)27(et)-310(jej)-310(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(e)-311(sz)-1(mat)28(y)-310(zam)-1(kn)1(\\241\\252)-310(i)-310(klucz)-311(n)1(os)-1(i)1(\\252)-311(p)1(rzy)]TJ 0 -13.549 Td[(sobie.)]TJ 27.879 -13.55 Td[(Nacie)-1(r)1(z)-1(p)1(ia\\252a)-228(s)-1(i)1(\\246)-229(on)1(a,)-228(nacierzpia\\252a!)-228(M)1(a\\252o)-228(te)-1(go)-228(b)-27(o)28(wie)-1(m,)-228(\\273e)-229(o)-228(b)-27(ele)-228(c)-1(o)-228(kr)1(z)-1(ycza\\252)]TJ -27.879 -13.549 Td[(i)-437(s\\252o)27(w)28(a)-437(dob)1(rego)-437(ni)1(e)-438(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-437(al)1(e)-438(p)1(rosto)-437(tak)-437(ws)-1(zystk)28(o)-437(rob)1(i\\252,)-437(jak)1(b)28(y)-437(n)1(ie)-438(on)1(a)]TJ 0 -13.549 Td[(b)28(y\\252a)-310(gosp)-28(o)-27(dyn)1(i\\241,)-310(b)-27(o)-311(i)1(no)-310(J\\363z)-1(ce)-311(r)1(oz)-1(p)-27(orz\\241dza\\252,)-310(c)-1(o)-310(si\\246)-311(ma)-310(robi)1(\\242)-1(,)-310(z)-310(J\\363z)-1(k)56(\\241)-310(o)-310(r\\363\\273n)28(yc)27(h)]TJ 0 -13.549 Td[(rze)-1(czac)27(h)-440(pra)28(wi\\252,)-441(k)1(t\\363ryc)28(h)-441(i)-440(dziew)27(cz)-1(yn)1(a)-441(n)1(ie)-441(w)-1(y)1(rozumia\\252a,)-441(i)-440(J\\363z)-1(ce)-441(o)-441(ws)-1(zystkim)]TJ 0 -13.549 Td[(k)56(az)-1(a\\252)-333(mie)-1(\\242)-334(b)1(ac)-1(zenie!)]TJ 27.879 -13.55 Td[(A)-377(Jagn)28(y)-377(jakb)29(y)-378(n)1(ie)-378(b)28(y\\252o,)-377(p)1(rz)-1(\\246d\\252a)-377(dn)1(ie)-378(ca\\252)-1(e,)-377(c)27(ho)-27(dzi\\252a)-378(k)1(ie)-1(j)-377(b)1(\\252\\246)-1(d)1(na)-377(alb)-28(o)-377(do)]TJ -27.879 -13.549 Td[(matki)-453(uciek)56(a\\252)-1(a)-453(n)1(a)-453(w)-1(y)1(\\273)-1(aleni)1(e)-454(i)-453(sk)55(ar)1(gi,)-453(n)1(ie)-454(p)-27(orad)1(z)-1(i\\252a)-453(n)1(a)-454(t)1(o)-454(stara,)-453(b)-27(o)-453(jej)-453(r)1(z)-1(ek\\252)]TJ 0 -13.549 Td[(ostro:)]TJ 27.879 -13.549 Td[({)-346(By\\252a)-346(pani)1(\\241,)-346(rob)1(i\\252a,)-346(c)-1(o)-346(c)28(hcia\\252a,)-346(ni)1(c)-347(jej)-346(n)1(ie)-346(brak)28(o)28(w)28(a\\252)-1(o,)-345(a)-346(nie)-346(umia\\252a)-346(te)-1(go)]TJ -27.879 -13.549 Td[(p)-27(os)-1(zano)28(w)28(a\\242)-1(,)-283(to)-283(n)1(iec)27(h)-283(p)-27(op)1(r\\363bu)1(je)-283(c)-1(ze)-1(go)-283(i)1(nn)1(e)-1(go!)-283(A)-283(t)1(o)-283(w)27(am)-283(z)-1(ap)-27(o)28(wiadam,)-283(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(-)]TJ 0 -13.549 Td[(cie)-413(jej,)-412(\\273e)-413(p)-28(\\363k)1(i)-413(k)1(ulasami)-413(r)1(uc)27(h)1(am,)-413(b)1(ron)1(i\\252)-413(sw)27(o)-55(jego)-413(d)1(obr)1(a)-413(b)-27(\\246)-1(d)1(\\246)-413(i)-412(nie)-412(dopu)1(s)-1(zc)-1(z\\246,)]TJ 0 -13.55 Td[(\\273e)-1(b)28(y)-333(si\\246)-334(p)1(rz)-1(e\\261m)-1(iew)28(ano)-333(z)-1(e)-334(mn)1(ie)-334(kiej)-333(z)-334(k)1(uk\\252y)-333(jak)1(ie)-1(j)1(,)-333(z)-1(ap)1(am)-1(i)1(\\246)-1(ta)-55(jcie)-334(to)-333(s)-1(ob)1(ie.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363)-55(jcie)-334(si\\246)-334(Boga,)-333(a)-334(d)1(y\\242)-334(on)1(a)-334(n)1(ic)-334(z\\252e)-1(go)-333(ni)1(e)-334(z)-1(r)1(obi\\252a!)]TJ 0 -13.549 Td[({)-318(Niec)27(h)28(b)28(y)-318(zrob)1(i\\252a,)-318(nie)-318(tak)-318(b)28(ym)-318(gada\\252)-318(i)-318(n)1(ie)-319(tak)-318(p)-27(os)-1(t)1(\\241)-28(pi\\252!)-318(Al)1(e)-319(dosy\\242)-318(i)-318(te)-1(go,)]TJ -27.879 -13.549 Td[(\\273e)-334(s)-1(i)1(\\246)-334(z)-334(An)28(tki)1(e)-1(m)-333(z)-1(ad)1(a)27(w)28(a\\252a!)]TJ 27.879 -13.549 Td[({)-333(W)-333(k)55(ar)1(c)-1(zm)-1(i)1(e)-1(,)-333(w)-334(t)1(a\\253cu,)-333(pr)1(z)-1(y)-333(ws)-1(zystkic)28(h)-333(pr)1(z)-1(ec)-1(ie\\273)-1(!)]TJ 0 -13.55 Td[({)-254(Hale,)-254(w)-254(k)56(ar)1(c)-1(zm)-1(i)1(e)-255(t)28(yl)1(k)28(o!)-254(Hale!...)-253({)-254(b)-27(o)28(w)-1(i)1(e)-1(m,)-254(\\273e)-254(kiedy)-254(t)1(o)-254(jej)-254(zapask)28(\\246)-254(z)-1(n)1(alaz\\252)]TJ -27.879 -13.549 Td[(w)-334(op)1(\\252otk)56(ac)27(h,)-333(m)28(usia\\252a)-334(wyc)28(ho)-28(d)1(z)-1(i)1(\\242)-334(do)-333(An)28(tk)56(a.)]TJ\nET\nendstream\nendobj\n869 0 obj <<\n/Type /Page\n/Contents 870 0 R\n/Resources 868 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n868 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n873 0 obj <<\n/Length 9421      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(270)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Nie)-296(da\\252)-296(si\\246)-297(wi\\246c)-296(prze)-1(k)28(on)1(a\\242)-1(,)-295(nie)-296(wie)-1(r)1(z)-1(y)1(\\252)-297(n)1(icz)-1(em)27(u)-295(i)-296(t)28(w)27(ar)1(do)-296(sta\\252)-296(przy)-296(sw)27(oi)1(m)-1(,)]TJ -27.879 -13.549 Td[(a)-333(na)-333(z)-1(ak)28(o\\253)1(c)-1(ze)-1(n)1(ie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252:)]TJ 27.879 -13.549 Td[({)-381(Dob)1(ry)-381(cz)-1(\\252o)28(wie)-1(k)-380(jes)-1(tem,)-381(z)-1(go)-27(dliwy)84(,)-381(ws)-1(zysc)-1(y)-381(o)-380(t)27(y)1(m)-382(wiedz\\241,)-381(ale)-381(jak)-380(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(kto)-333(c)27(h)1(la\\261nie)-334(b)1(atem)-1(,)-333(goto)28(w)27(em)-334(o)-27(dda\\242)-333(k\\252onic\\241.)]TJ 27.879 -13.549 Td[({)-461(Bij)1(c)-1(ie,)-461(k)1(to)-461(w)27(ama)-461(win)1(o)28(w)27(at)28(y)84(,)-461(ale)-461(ni)1(e)-462(k)1(rzywd\\271c)-1(ie)-461(b)-27(o)-461(z)-461(krzywdy)-460(k)55(a\\273dej)]TJ -27.879 -13.55 Td[(p)-27(om)-1(sta)-333(ro\\261nie.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363ren)-333(sw)27(o)-55(jego)-334(b)1(roni)1(,)-334(n)1(ie)-334(k)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(!)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(o)-334(b)29(y\\261)-1(cie)-334(w)-333(p)-27(or\\246)-334(u)28(wid)1(z)-1(ieli,)-333(k)56(a)-55(j)-333(s)-1(i\\246)-333(w)27(asz)-1(e)-333(k)28(o\\253cz)-1(y!)]TJ 0 -13.549 Td[({)-333(Grozicie)-1(,)-333(wid)1(z)-1(\\246!)]TJ 0 -13.549 Td[({)-356(S)1(w)27(o)-55(je)-356(t)28(ylk)28(o)-355(p)-28(o)28(wiad)1(am)-1(,)-355(a)-356(wy)-356(zb)28(ytn)1(io)-356(w)-356(siebie)-356(d)1(uf)1(ac)-1(ie.)-356(Bacz)-1(cie)-356(i)-356(n)1(a)-356(to,)]TJ -27.879 -13.549 Td[(\\273e)-334(kto)-333(na)-333(in)1(n)28(yc)27(h)-333(k)1(\\252)-1(ad)1(z)-1(i)1(e)-334(z)-1(n)1(aki)-333({)-333(s)-1(am)-333(taki!)]TJ 27.879 -13.55 Td[({)-376(Dos)-1(y)1(\\242)-377(m)-1(i)-376(w)28(asz)-1(yc)28(h)-376(nau)1(k)-376(i)-377(p)1(rzyp)-27(o)27(wiastek,)-376(s)-1(w)28(\\363)-56(j)-376(r)1(oz)-1(u)1(m)-377(te\\273)-377(mam)-1(!)-376({)-376(roz-)]TJ -27.879 -13.549 Td[(gni)1(e)-1(w)28(a\\252)-334(si\\246.)]TJ 27.879 -13.549 Td[(I)-499(na)-499(t)28(ym)-500(si\\246)-500(sk)28(o\\253cz)-1(y\\252o,)-499(b)-27(o)-500(D)1(om)-1(in)1(ik)28(o)28(w)27(a,)-499(wid)1(z)-1(\\241c)-500(j)1(e)-1(go)-499(zat)28(w)27(ard)1(z)-1(i)1(a\\252)-1(o\\261\\242)-500(i)]TJ -27.879 -13.549 Td[(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iw)27(o\\261\\242)-1(,)-467(n)1(ie)-468(p)-27(ona)28(wia\\252a)-467(ju\\273)-467(te)-1(j)-467(spr)1(a)28(w)-1(y)-467(d)1(ufa)-55(j\\241c,)-467(i\\273)-468(to)-467(sam)-1(o)-467(pr)1(z)-1(ejd)1(z)-1(ie)-467(i)]TJ 0 -13.549 Td[(jak)28(o\\261)-389(s)-1(i\\246)-390(u)1(\\252adzi,)-389(ale)-390(on)-389(an)1(i)-390(n)1(a)-390(d)1(z)-1(i)1(e)-1(\\253)-389(j)1(e)-1(d)1(e)-1(n)-389(n)1(ie)-390(p)-27(ofolgo)28(w)28(a\\252,)-390(za)28(w)-1(zi\\241\\252)-389(s)-1(i\\246)-389(i)-390(n)1(a)28(w)27(et)]TJ 0 -13.55 Td[(w)-380(te)-1(j)-379(z)-1(\\252o\\261c)-1(i)-379(s)-1(mak)-380(zna)-56(j)1(do)28(w)28(a\\252,)-380(a)-380(c)27(h)1(o)-28(c)-1(i)1(a)-1(\\273)-380(ni)1(e)-1(r)1(az)-381(w)-380(no)-27(c)-1(y)-380(s\\252ysz)-1(\\241c)-380(Jagusine)-380(p\\252acz)-1(e)]TJ 0 -13.549 Td[(zryw)28(a\\252)-336(s)-1(i\\246)-336(b)-28(ezw)-1(i)1(e)-1(d)1(nie,)-336(b)28(y)-336(d)1(o)-336(niej)-336(b)1(iec)-1(,)-336(w)-336(p)-27(or\\246)-336(s)-1(i\\246)-336(jedn)1(ak)-336(miark)28(o)28(w)27(a\\252)-336(u)1(da)-55(j\\241c,)-336(\\273)-1(e)]TJ 0 -13.549 Td[(ws)-1(ta\\252)-333(okn)1(e)-1(m)-333(w)-1(y)1(jrze)-1(\\242)-333(alb)-28(o)-333(cz)-1(y)-333(d)1(rz)-1(wi)-333(p)-27(oz)-1(am)28(yk)56(ane.)]TJ 27.879 -13.549 Td[(Ci\\241)-28(gn)1(\\246)-1(\\252o)-305(si\\246)-305(tak)-305(b)-27(e)-1(z)-305(pr)1(z)-1(erwy)-305(ca\\252yc)27(h)-304(par\\246)-305(t)28(ygo)-28(d)1(ni)1(,)-305(Jagni)1(e)-306(b)29(y\\252o)-305(m)-1(ar)1(k)28(otno,)]TJ -27.879 -13.549 Td[(sm)27(ut)1(no)-309(i)-310(tak)-309(\\271le)-1(,)-309(\\273e)-310(ledwie)-310(j)1(u\\273)-310(\\261c)-1(i)1(e)-1(rp)1(ia\\252a,)-309(na)-309(lud)1(z)-1(i)-309(p)1(atrze)-1(\\242)-310(n)1(ie)-310(\\261)-1(mia\\252a,)-309(ws)-1(t)28(yd)-309(j)1(e)-1(j)]TJ 0 -13.55 Td[(b)28(y\\252o)-276(pr)1(z)-1(ed)-276(ws)-1(i)1(\\241,)-277(b)-27(o)-28(\\242)-276(w)-1(sz)-1(y)1(s)-1(cy)-276(dob)1(rz)-1(e)-276(w)-1(i)1(e)-1(d)1(z)-1(ieli,)-276(co)-276(s)-1(i\\246)-276(tam)-277(u)-276(Boryn)1(\\363)28(w)-277(wyp)1(ra)28(w)-1(i)1(a!)]TJ 27.879 -13.549 Td[(Dom)-308(ca\\252)-1(k)1(ie)-1(m)-308(omro)-28(cza\\252)-1(,)-307(\\273)-1(e)-308(sn)28(ul)1(i)-308(si\\246)-308(p)-28(o)-308(n)1(im)-308(cic)27(h)1(o,)-308(l\\246kliwie)-308(ki)1(e)-1(b)28(y)-307(te)-308(c)-1(ieni)1(e)-1(.)]TJ 0 -13.549 Td[(Co)-447(p)1(ra)28(w)-1(d)1(a,)-447(ma\\252o)-447(kt)1(o)-447(z)-1(agl)1(\\241da\\252)-447(ma)-56(j)1(\\241c)-447(i)-447(u)-446(sie)-1(b)1(ie)-447(do\\261\\242)-447(s)-1(w)28(ar\\363)28(w!)-447(W)84(\\363)-56(j)1(t)-447(si\\246)]TJ -27.879 -13.549 Td[(te\\273)-426(n)1(ie)-425(p)-28(ok)56(azyw)27(a\\252,)-424(z)-1(agn)1(ie)-1(w)28(an)28(y)84(,)-425(\\273)-1(e)-425(Boryn)1(a)-425(ni)1(e)-426(c)27(h)1(c)-1(i)1(a\\252)-425(m)27(u)-424(p)-28(o)-27(da)28(w)27(a\\242)-425(do)-425(c)28(hr)1(z)-1(tu)1(;)]TJ 0 -13.549 Td[(t)28(yle)-443(jeno,)-443(co)-444(tam)-443(c)27(h)1(\\252)-1(op)1(aki)-443(Domin)1(ik)28(o)28(w)27(ej)-443(c)-1(zas)-1(em)-444(za)-56(j)1(rza\\252y)83(,)-443(Nastk)56(a)-444(G)1(o\\252)-1(\\246bi)1(ank)56(a)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(bieg\\252a)-375(z)-376(k)56(\\241dzie)-1(l)1(\\241,)-375(ale)-376(t)1(a)-376(wi\\246c)-1(ej)-375(d)1(o)-375(J\\363z)-1(k)1(i)-375(i)-375(b)28(y)-375(si\\246)-376(z)-375(Szym)-1(k)1(ie)-1(m)-375(sp)-28(ot)28(yk)56(a\\242,)-375(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-276(b)28(y\\252o)-276(z)-276(n)1(iej)-276(p)-27(o)-28(ciec)27(h)28(y)84(,)-276(t)1(o)-276(i)-275(Ro)-28(c)27(ho)-275(c)-1(zase)-1(m)-276(zagl\\241da\\252,)-275(ale)-276(wid)1(z)-1(\\241c)-276(t)28(w)28(arz)-1(e)-276(p)-27(os\\246)-1(p)1(ne,)]TJ 0 -13.549 Td[(zagniew)27(an)1(e)-1(,)-333(ma\\252o)-334(siedzia\\252.)]TJ 27.879 -13.549 Td[(Jeden)-257(t)28(ylk)28(o)-257(k)28(o)28(w)27(al)-257(p)1(rzyc)27(h)1(o)-28(dzi\\252)-257(c)-1(o)-257(wiec)-1(z\\363r)-257(i)-257(d\\252ugo)-257(p)1(rze)-1(siady)1(w)27(a\\252,)-257(a)-257(jak)-257(t)28(ylk)28(o)]TJ -27.879 -13.549 Td[(m\\363g\\252,)-252(p)-28(o)-28(d)1(ju)1(dza\\252)-253(j)1(e)-1(sz)-1(cze)-253(s)-1(t)1(are)-1(go)-252(p)1(rze)-1(ciw)-253(Jagn)1(ie)-253(i)-252(w)-252(\\252as)-1(k)1(i)-252(s)-1(i\\246)-252(no)28(w)27(e)-252(wkrad)1(a\\252)-1(,)-252(j)1(u\\261c)-1(i)1(,)]TJ 0 -13.55 Td[(\\273e)-402(i)-402(Jagu)1(s)-1(t)28(yn)1(k)56(a)-402(cz)-1(\\246s)-1(to)-401(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a,)-401(c)27(h)1(\\246)-1(tn)1(ie)-402(sw)27(o)-55(je)-402(d)1(ok\\252ada)-55(j\\241c)-1(,)-401(gd)1(z)-1(ie)-402(si\\246)-402(k\\252\\363)-28(cili)1(.)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-309(te)-1(\\273)-310(b)29(yw)27(a\\252a)-309(c)-1(o)-309(dn)1(ia)-309(i)-310(co)-309(dni)1(a)-310(j)1(e)-1(d)1(no)-309(pr)1(z)-1(ywtarza\\252a,)-309(b)28(y)-309(Jagna)-309(p)-27(ok)28(or\\241)]TJ 0 -13.549 Td[(starego)-288(ujmo)28(w)27(a\\252a.)-287(C)-1(\\363\\273?)-288(kiej)-288(Jagn)1(a)-288(nie)-288(mog\\252a)-288(s)-1(i\\246)-288(up)-27(ok)28(orzy\\242,)-288(za)-288(nic)-288(nie)-288(mog\\252a,)-288(a)]TJ 0 -13.549 Td[(nap)1(rze)-1(ciw,)-337(bu)1(n)28(t)-338(si\\246)-338(w)-337(niej)-337(p)-27(o)-28(dn)1(os)-1(i\\252)-337(i)-337(z)-1(\\252o\\261\\242)-338(j\\241)-337(p)-27(o)-28(dr)1(yw)27(a\\252a)-337(c)-1(or)1(az)-338(c)-1(z\\246)-1(\\261cie)-1(j)1(.)-337(Wielc)-1(e)]TJ 0 -13.549 Td[(jej)-333(w)-333(t)27(y)1(m)-334(p)-27(om)-1(aga\\252a)-333(Jagust)28(ynk)56(a,)-333(b)-27(o)-334(r)1(az)-334(z)-334(cic)27(h)1(a)-334(zac)-1(z\\246\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-237(Jagu\\261,)-238(a)-237(to)-237(m)-1(i)-237(ci\\246)-238(\\273al)-238(ok)1(rutn)1(ie)-238(ki)1(e)-1(b)28(y)-237(r)1(o)-28(dzonej?)-237(T)83(e)-1(n)-237(stary)-237(pi)1(e)-1(s)-238(ci\\246)-238(u)1(krzyw-)]TJ -27.879 -13.55 Td[(dza,)-333(a)-333(t)27(y)-333(k)1(ie)-1(j)-333(ten)-333(b)1(aranek)-333(c)-1(i)1(e)-1(rp)1(isz)-1(!)-333(Nie)-333(tak)-333(inn)1(e)-334(k)28(obiet)28(y)-333(rob)1(i\\241,)-333(nie!..)1(.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-1(?)-333({)-334(sp)28(yta\\252a)-333(do\\261\\242)-334(cie)-1(k)56(a)28(wie)-1(,)-333(b)-27(o)-333(ju)1(\\273)-334(jej)-333(obmierz\\252)-334(ten)-333(s)-1(t)1(an.)]TJ 0 -13.549 Td[({)-269(Z\\252)-1(ego)-269(dobr)1(o\\261)-1(ci\\241)-269(nie)-269(przeprze)-1(sz,)-270(a)-269(in)1(o)-270(j)1(e)-1(sz)-1(cze)-270(w)-1(i)1(\\246)-1(ksz\\241)-270(z\\252o\\261)-1(ci\\241!)-269(Za)-270(d)1(z)-1(i)1(e)-1(wk)28(\\246)]TJ -27.879 -13.549 Td[(ci\\246)-271(m)-1(a,)-270(a)-271(t)28(y)-271(n)1(ic)-1(;)-270(s)-1(zmat)28(y)-271(ci)-271(p)-27(ono)-271(w)-271(skrzyn)1(i)-271(p)-27(oz)-1(am)28(yk)56(a\\252,)-271(n)1(a)-271(k)56(a\\273)-1(d)1(ym)-271(kroku)-270(p)1(iln)28(u)1(je,)]TJ 0 -13.549 Td[(dob)1(rego)-367(s)-1(\\252o)28(w)27(a)-367(n)1(ie)-367(da)-367({)-367(a)-367(t)28(y)-367(co?)-368(W)1(z)-1(d)1(yc)27(h)1(as)-1(z,)-367(tru)1(jes)-1(z)-367(s)-1(i)1(\\246)-368(i)-367(b)-27(oskiego)-367(z)-1(mi\\252o)28(w)27(an)1(ia)]TJ 0 -13.55 Td[(wycz)-1(ekuj)1(e)-1(sz)-1(!)-337(P)29(\\363ki)-337(s)-1(i\\246)-337(c)-1(z\\252o)27(wiek)-337(ni)1(e)-338(pr)1(z)-1(y\\252o\\273y)83(,)-337(to)-337(m)27(u)-336(i)-338(P)29(an)-337(B)-1(\\363g)-337(n)1(ie)-338(do\\252o\\273y!)-337(\\233e)-1(b)29(y)]TJ 0 -13.549 Td[(tak)-349(n)1(a)-349(m)-1(n)1(ie,)-349(wie)-1(d)1(z)-1(i)1(a\\252ab)28(ym,)-349(c)-1(o)-349(zrob)1(i\\242)-1(!)-348(J\\363z)-1(k)28(\\246)-349(s)-1(p)1(ra\\252ab)28(y)1(m)-1(,)-349(n)1(iec)27(h)-349(si\\246)-349(nie)-349(rz\\241dzi)-349(w)]TJ\nET\nendstream\nendobj\n872 0 obj <<\n/Type /Page\n/Contents 873 0 R\n/Resources 871 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 858 0 R\n>> endobj\n871 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n876 0 obj <<\n/Length 9399      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(271)]TJ -358.232 -35.866 Td[(c)27(h)1(a\\252up)1(ie)-1(,)-441(gos)-1(p)-27(o)-28(d)1(yni)1(\\241)-442(p)1(rz)-1(ecie)-1(\\273)-442(j)1(e)-1(ste)-1(\\261,)-441(c)27(h\\252op)1(u)-441(b)28(ym)-442(te\\273)-442(nie)-442(u)1(s)-1(t)1(\\241)-28(pi\\252a)-441(w)-442(ni)1(c)-1(zym!)]TJ 0 -13.549 Td[(Kiej)-305(c)27(h)1(c)-1(e)-306(w)28(o)-56(j)1(n)28(y)84(,)-306(to)-305(ni)1(e)-1(c)27(h)-305(ma)-305(tak)55(\\241,)-305(a\\273e)-306(m)27(u)-305(gr)1(dyk)56(\\241)-306(wyl)1(e)-1(zie!)-306(Hal)1(e)-1(,)-305(p)-28(ozw)28(\\363l)-306(c)28(h\\252opu)]TJ 0 -13.549 Td[(pan)1(o)28(w)27(a\\242)-343(n)1(ad)-342(s)-1(ob)1(\\241,)-342(to)-343(:)1(s)-1(i\\246)-343(wn)1(e)-1(t)-342(do)-342(bi)1(c)-1(ia)-342(w)28(e)-1(\\271m)-1(i)1(e)-343(i)-342(nie)-343(wiad)1(a,)-342(na)-342(c)-1(zym)-343(sk)28(o\\253cz)-1(y)1(!)]TJ 0 -13.549 Td[({)-450(A)-450(n)1(a)-56(j)1(pierws)-1(ze)-450({)-450(z)-1(n)1(i\\273)-1(y)1(\\252)-1(a)-449(g\\252)-1(os)-450(i)-450(d)1(o)-450(uc)28(ha)-450(jej)-449(s)-1(ze)-1(p)1(ta\\252a)-450({)-450(o)-28(dsta)28(w)-450(go)-450(kiej)-450(tego)]TJ 0 -13.549 Td[(cio\\252k)55(a)-318(o)-28(d)-318(kro)28(wy)83(,)-318(nie)-319(p)1(rzypu)1(s)-1(zc)-1(za)-56(j)-318(do)-318(s)-1(iebi)1(e)-319(ani)-319(n)1(a)-319(zdzie)-1(b)1(k)28(o,)-319(j)1(ak)-319(tego)-319(p)1(s)-1(a)-319(p)1(rze)-1(d)]TJ 0 -13.55 Td[(pr)1(ogiem)-334(trzyma)-56(j)1(!)-334(W)1(net)-334(zobaczys)-1(z,)-333(jak)-333(zm)-1(i\\246kn)1(ie)-334(i)-333(jak)-333(si\\246)-334(u)1(dob)1(rzy!)]TJ 27.879 -13.549 Td[(Jagn)1(a)-334(ze)-1(r)1(w)27(a\\252a)-333(s)-1(i\\246)-333(o)-28(d)-333(k)56(\\241dzieli,)-333(b)28(y)-333(uk)1(ry\\242)-334(t)28(w)28(arz)-334(r)1(oz)-1(cz)-1(erwienion)1(\\241.)]TJ 0 -13.549 Td[({)-368(Cze)-1(g\\363\\273)-368(si\\246,)-368(g\\252u)1(pia,)-367(sromas)-1(z?)-368(Z\\252e)-1(go)-367(w)-368(t)28(ym)-368(n)1(ie)-368(ma!)-368(wsz)-1(ystki)1(e)-368(tak)-368(r)1(obi\\241)]TJ -27.879 -13.549 Td[(i)-389(r)1(obi\\242)-389(b)-27(\\246)-1(d)1(\\241,)-389(n)1(ie)-389(ja)-389(p)1(ie)-1(r)1(ws)-1(za)-389(wym)27(y)1(\\261)-1(li)1(\\252)-1(am)-389(tak)1(i)-389(sp)-28(os\\363b!)-388(Wiadomo)-389(p)1(rze)-1(ciec)27(h,)-388(\\273)-1(e)]TJ 0 -13.549 Td[(kiec)27(k)56(\\241)-236(c)28(h\\252opa)-235(dalej)-236(zapr)1(o)28(w)27(adzi)-236(n)1(i\\271li)-236(p)1(s)-1(a)-235(s)-1(p)-27(e)-1(r)1(k)55(\\241,)-235(b)-28(o)-235(pies)-236(ryc)28(hlej)-236(si\\246)-236(p)-27(om)-1(iar)1(kuj)1(e)-1(!)-235(A)]TJ 0 -13.549 Td[(starego)-284(\\252acniej)-283(n)1(i\\271)-1(l)1(i)-283(m)-1(\\252o)-28(d)1(z)-1(iak)56(a,)-283(b)-27(o)-283(\\252ak)28(om)-1(sz)-1(y)-283(i)-283(tr)1(ud)1(no)-283(m)27(u)-283(p)-27(o)-283(c)-1(u)1(dzyc)27(h)-282(c)27(ha\\252u)1(pac)27(h)]TJ 0 -13.55 Td[(sz)-1(k)28(o)-28(d)1(z)-1(i)1(\\242)-1(!)-269(Zr)1(\\363b)-269(tak)1(,)-269(a)-269(wn)1(e)-1(t)-269(mi)-268(p)-28(o)-28(d)1(z)-1(i)1(\\246)-1(ku)1(jes)-1(z!)-269(A)-268(c)-1(o)-269(tam)-269(p)29(ys)-1(k)1(uj\\241)-268(na)-269(ciebie)-269(i)-268(An)28(tk)56(a,)]TJ 0 -13.549 Td[(do)-261(se)-1(r)1(c)-1(a)-261(n)1(ie)-262(b)1(ierz,)-261(\\273)-1(eb)28(y\\261)-261(jak)-261(t)1(e)-1(n)-261(m\\252o)-28(d)1(y)-261(\\261)-1(n)1(ieg)-261(b)28(y\\252a,)-261(sadzy)-261(s)-1(i)1(\\246)-262(d)1(o)27(wid)1(z)-1(\\241!)-261(Na)-261(\\261wiec)-1(ie)]TJ 0 -13.549 Td[(jest)-271(tak)1(ie)-271(ur)1(z)-1(\\241d)1(z)-1(eni)1(e)-1(,)-270(\\273)-1(e)-270(kt\\363ren)-270(s)-1(i)1(\\246)-271(da,)-270(to)-270(m)27(u)-270(i)-270(ki)1(w)-1(n)1(\\241\\242)-271(p)1(alc)-1(em)-271(n)1(ie)-271(pr)1(z)-1(epu)1(s)-1(zc)-1(z\\241,)-270(a)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-246(nie)-247(s)-1(t)1(oi,)-247(co)-247(o)-247(nim)-247(p)-27(o)27(wiad)1(a)-56(j)1(\\241,)-247(mo)-28(c)-1(n)28(y)-246(jes)-1(t)-247(a)-247(h)1(ard)1(y)83(,)-247(to)-247(mo\\273e)-248(r)1(obi\\242,)-247(co)-247(m)27(u)-247(si\\246)]TJ 0 -13.549 Td[(\\273ywnie)-313(p)-27(o)-28(dob)1(a!)-313(Ni)1(kt)-313(n)1(a)28(w)27(et)-313(s\\252\\363)27(wkiem)-313(ni)1(e)-313(pi\\261nie)-313(n)1(apr)1(z)-1(ec)-1(iw,)-312(a)-313(\\252asi\\242)-313(s)-1(i)1(\\246)-314(b)-27(\\246d\\241)-313(k)1(ie)-1(j)]TJ 0 -13.55 Td[(pi)1(e)-1(ski!)-287(Do)-288(kr)1(z)-1(epki)1(c)27(h)-287(nale\\273y)-288(\\261w)-1(i)1(at)-288(ws)-1(zyste)-1(k)1(,)-288(d)1(o)-288(ni)1(e)-1(ust\\246pli)1(w)-1(y)1(c)27(h)-287(a)-288(za)27(wzi\\246)-1(t)28(y)1(c)27(h!)-287(Na)]TJ 0 -13.549 Td[(mnie)-296(si\\246)-296(dosy\\242)-296(wygad)1(yw)27(al)1(i,)-295(dosy\\242)-1(,)-295(c)-1(a)-295(na)-295(t)28(w)27(o)-55(j\\241)-295(m)-1(atk)28(\\246)-296(te\\273,)-296(\\273e)-296(to)-296(z)-296(t)28(ym)-296(F)1(lorki)1(e)-1(m)]TJ 0 -13.549 Td[(wiadomo)-333(b)28(y\\252o...)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(t)28(yk)56(a)-56(j)1(c)-1(i)1(e)-334(m)-1(at)1(ki!)]TJ 0 -13.549 Td[({)-340(Ni)1(e)-1(c)28(h)-339(c)-1(i)-339(ta)-340(\\261wi\\246t\\241)-340(ostanie!)-339(Pra)28(wda)-339(i)-339(to,)-340(\\273e)-340(k)56(a\\273)-1(d)1(e)-1(n)-339(p)-27(otrzebuj)1(e)-340(\\261)-1(wi\\246to\\261c)-1(i)]TJ -27.879 -13.55 Td[(jak)1(ie)-1(j)1(\\261)-1(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-462(jes)-1(zc)-1(ze)-464(p)1(ra)28(wi\\252a,)-463(n)1(aucz)-1(a\\252a)-463(j)1(\\241,)-463(a)-463(z)-463(w)27(oln)1(a,)-463(c)28(ho)-28(\\242)-463(i)-463(n)1(ie)-463(p)28(ytan)1(a,)-463(roz-)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiad)1(a\\252a)-356(o)-356(An)28(t)1(ku,)-355(c)-1(o)-355(ino)-355(m)-1(og\\252a)-356(wym)28(y\\261li\\242.)-356(S\\252u)1(c)27(h)1(a\\252)-1(a)-355(te)-1(go)-355(c)27(hciwie)-356(Jagu)1(s)-1(ia)-355(nie)]TJ 0 -13.549 Td[(zdrad)1(z)-1(i)1(w)-1(sz)-1(y)-258(si\\246)-259(jedn)1(ak)-258(ani)-258(s)-1(\\252\\363)28(wkiem)-1(,)-258(ale)-259(r)1(ady)-258(o)28(w)27(e)-259(mo)-28(cno)-258(wz)-1(i\\246\\252a)-259(d)1(o)-259(g\\252o)28(wy)-259(i)-258(ca\\252y)]TJ 0 -13.549 Td[(dzie\\253)-325(delib)-27(e)-1(r)1(o)28(w)27(a\\252a)-325(nad)-325(ni)1(m)-1(i)1(.)-326(W)1(ie)-1(cz)-1(or)1(e)-1(m)-325(z)-1(a\\261,)-326(k)1(ie)-1(d)1(y)-325(b)28(y\\252)-325(R)-1(o)-27(c)27(ho,)-325(k)28(o)28(w)28(al)-326(i)-325(Nastk)56(a,)]TJ 0 -13.55 Td[(rze)-1(k)1(\\252a)-334(d)1(o)-334(starego:)]TJ 27.879 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(no)-333(klu)1(c)-1(ze)-334(o)-28(d)-333(skrzyn)1(i,)-333(m)27(u)1(s)-1(z\\246)-334(s)-1(zmat)28(y)-334(p)1(rze)-1(wietrzy\\242.)]TJ 0 -13.549 Td[(Da\\252)-431(przyws)-1(t)28(y)1(dzon)28(y)-431(niec)-1(o,)-431(b)-27(o)-431(Nas)-1(tk)56(a)-431(\\261)-1(miec)27(hem)-432(b)1(uc)27(h)1(n\\246\\252a,)-431(ale)-432(mim)-1(o)-431(to,)]TJ -27.879 -13.549 Td[(gdy)-333(sk)28(o\\253cz)-1(y)1(\\252)-1(a)-333(p)1(rz)-1(ek\\252ad)1(anie,)-333(w)-1(y)1(c)-1(i\\241)-27(gn\\241\\252)-333(r\\246)-1(k)28(\\246)-333(p)-28(o)-333(klu)1(c)-1(z.)]TJ 27.879 -13.549 Td[({)-410(Same)-411(mo)-55(je)-411(s\\241)-410(tam)-410(s)-1(zm)-1(at)28(y)84(,)-410(to)-410(ju)1(\\273)-411(sam)-1(a)-410(se)-411(p)1(rzypil)1(n)28(uj)1(\\246)-1(!)-410({)-410(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.55 Td[(har)1(do.)]TJ 27.879 -13.549 Td[(I)-301(o)-28(d)-301(t)1(e)-1(go)-301(wiec)-1(zoru)-301(zac)-1(z\\246\\252)-1(o)-301(si\\246)-301(piek\\252o)-301(w)-301(c)27(ha\\252u)1(pie.)-301(St)1(ary)-301(si\\246)-302(n)1(ie)-302(p)1(rze)-1(mieni\\252,)]TJ -27.879 -13.549 Td[(ale)-346(i)-345(on)1(a)-346(n)1(ie)-346(u)1(s)-1(t\\246p)-28(o)28(w)28(a\\252a,)-345(na)-345(s)-1(\\252o)28(w)27(o)-345(o)-28(d)1(p)-28(o)28(wiada\\252a)-345(ca\\252)-1(\\241)-345(k)28(op\\241,)-345(a)-345(tak)-345(g\\252o\\261)-1(n)1(o,)-345(\\273)-1(e)-346(n)1(a)]TJ 0 -13.549 Td[(dr)1(o)-28(dze)-273(s\\252yc)27(h)1(a\\242)-273(b)28(y\\252o)-272(krzyki.)-272(Ni)1(e)-273(p)-28(omaga\\252o)-272(to)-273(wiele,)-273(t)1(o)-273(n)1(a)-273(z\\252o\\261)-1(\\242)-273(zac)-1(z\\246\\252)-1(a)-272(ws)-1(zystk)28(o)]TJ 0 -13.549 Td[(rob)1(i\\242.)]TJ 27.879 -13.549 Td[(Do)-303(J\\363z)-1(k)1(i)-304(p)1(rzyc)-1(ze)-1(p)1(ia\\252a)-303(s)-1(i\\246)-304(n)1(a)-304(k)56(a\\273dym)-303(kroku)1(,)-303(a)-304(tak)-303(ni)1(e)-1(r)1(az)-304(b)-28(ol)1(e)-1(\\261nie)-304(k)56(ar)1(c)-1(i\\252a,)]TJ -27.879 -13.55 Td[(\\273e)-492(dziew)27(cz)-1(y)1(na)-491(z)-492(p)1(\\252ac)-1(ze)-1(m)-491(bi)1(e)-1(ga\\252a)-491(s)-1(i)1(\\246)-492(sk)55(ar)1(\\273)-1(y\\242;)-491(n)1(ic)-492(to)-491(n)1(ie)-492(p)-27(omaga\\252)-1(o,)-490(b)-28(o)-491(j)1(e)-1(sz)-1(-)]TJ 0 -13.549 Td[(cz)-1(e)-384(b)1(arze)-1(j)-383(p)1(iek\\252o)28(w)27(a\\252a,)-383(s)-1(k)28(or)1(o)-383(nie)-383(s)-1(z\\252o)-384(p)-27(o)-383(jej)-383(w)27(ol)1(i.)-383(Wiec)-1(zorami)-383(z)-1(a\\261)-383(um)28(y\\261)-1(l)1(nie)-383(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(enosi\\252a)-417(n)1(a)-417(d)1(rug\\241)-416(s)-1(t)1(ron\\246)-417(osta)28(w)-1(i)1(a)-56(j)1(\\241c)-417(s)-1(tar)1(e)-1(go)-416(w)-417(pierwsz)-1(ej)-416(iz)-1(b)1(ie,)-417(tam)-417(P)1(ietrk)56(a)]TJ 0 -13.549 Td[(ni)1(e)-1(w)28(oli\\252a)-407(do)-407(gran)1(ia)-407(pr)1(z)-1(y\\261pi)1(e)-1(wuj)1(\\241c)-408(m)27(u)-406(do)-407(wt\\363ru)-407(r)1(\\363\\273)-1(n)1(e)-408(pi)1(os)-1(n)1(e)-1(cz)-1(ki)-407(d)1(o)-407(p)-28(\\363\\271na)-407(w)]TJ 0 -13.549 Td[(no)-27(c)-1(;)-278(to)-279(zno)28(wu)-278(w)-279(ni)1(e)-1(d)1(z)-1(iel\\246)-279(p)1(rzys)-1(tr)1(oi\\252a)-279(si\\246,)-279(j)1(ak)-279(i)1(no)-279(mog\\252a)-279(n)1(a)-56(j)1(lepiej,)-278(a)-279(n)1(ie)-279(cz)-1(ek)55(a)-55(j\\241c)]TJ 0 -13.55 Td[(na)-333(m\\246)-1(\\273a)-333(s)-1(ama)-334(p)-27(osz)-1(\\252a)-333(do)-333(k)28(o\\261)-1(cio\\252a,)-333(wys)-1(t)1(a)-56(j\\241c)-333(p)-28(o)-333(dr)1(ogac)27(h)-333(z)-334(p)1(arob)1(k)55(ami.)]TJ 27.879 -13.549 Td[(St)1(ary)-441(si\\246)-441(z)-1(d)1(umiew)27(a\\252)-440(t\\241)-441(pr)1(z)-1(em)-1(i)1(an\\241,)-440(w)-1(\\261c)-1(i)1(e)-1(k)56(a\\252)-441(ze)-442(z\\252o\\261)-1(ci,)-440(pr\\363b)-27(o)28(w)27(a\\252)-440(s)-1(i\\246)-441(n)1(ie)]TJ\nET\nendstream\nendobj\n875 0 obj <<\n/Type /Page\n/Contents 876 0 R\n/Resources 874 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n874 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n880 0 obj <<\n/Length 9831      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(272)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(da)28(w)28(a\\242)-1(,)-313(z)-1(ap)-27(ob)1(ie)-1(ga\\252,)-313(b)28(y)-313(s)-1(i\\246)-314(to)-313(p)-28(o)-313(ws)-1(i)-313(nie)-314(r)1(oz)-1(n)1(ie)-1(s\\252o,)-313(nic)-314(j)1(e)-1(d)1(nak)-313(nie)-314(p)-27(orad)1(z)-1(i\\252)-313(na)-314(j)1(e)-1(j)]TJ 0 -13.549 Td[(h)28(u)1(m)-1(or)1(y)83(,)-333(a)-333(c)-1(or)1(az)-334(c)-1(z\\246\\261)-1(cie)-1(j)-333(d)1(la)-333(\\261)-1(wi\\246tego)-334(sp)-28(ok)28(o)-55(ju)-333(u)1(s)-1(t\\246p)-27(o)27(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-393(M)1(oi\\261)-1(ciewy!)-393(b)1(arank)1(ie)-1(m)-393(si\\246)-393(wid)1(z)-1(ia\\252a,)-392(t\\241)-393(o)28(wie)-1(czk)55(\\241)-392(p)-28(ok)28(or)1(n\\241,)-392(a)-393(teraz)-393(ok)28(o-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(m)-333(s)-1(ta)28(w)28(a!)-334({)-333(wykr)1(z)-1(yk)1(n\\241\\252)-333(raz)-334(d)1(o)-334(Jagu)1(s)-1(t)28(yn)1(ki.)]TJ 27.879 -13.549 Td[({)-408(Chleb)-408(j)1(\\241)-408(rozpiera)-408(i)-408(p)-27(on)1(os)-1(i!)-408({)-408(o)-27(drzek\\252a)-408(z)-409(ob)1(urze)-1(n)1(iem)-1(,)-407(b)-28(o)-408(za)28(w)-1(sz)-1(e)-408(tem)27(u)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(a\\252a,)-280(k)1(to)-280(z)-281(ni)1(\\241)-280(radzi\\252.)-280({)-280(Ale)-280(to)-280(w)27(am)-280(p)-27(o)27(wiem)-1(,)-279(\\273)-1(e)-280(p)-28(\\363k)1(i)-280(c)-1(zas)-1(,)-280(t)1(rz)-1(a)-280(cz)-1(y)1(m)-1(\\261)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(dym)-333(wygania\\242)-333(h)28(umory)84(,)-333(b)-28(o)-333(p)-27(ote)-1(m)-333(i)-333(k\\252onic\\241)-333(nie)-334(p)-27(orad)1(z)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(j)1(e)-1(st)-334(t)1(o)-334(w)28(e)-334(zw)-1(y)1(c)-1(za)-56(j)1(u)-333(B)-1(or)1(yn\\363)28(w!)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(wyn)1(io\\261)-1(le.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(\\273)-1(e)-333(i)-334(u)-332(B)-1(ory)1(n\\363)28(w)-334(d)1(o)-334(t)1(e)-1(go)-333(pr)1(z)-1(yj)1(dzie!{)-334(sze)-1(pn)1(\\246)-1(\\252a)-333(z\\252)-1(o\\261liwie.)]TJ 0 -13.549 Td[(Jak)28(o\\261)-286(w)-286(par\\246)-286(d)1(ni)-286(p)-27(otem)-1(,)-285(z)-1(araz)-286(p)-27(o)-286(Gromn)1(ic)-1(znej,)-285(da\\252)-286(zna\\242)-286(wie)-1(cz)-1(or)1(e)-1(m)-286(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(y)84(,)-333(\\273)-1(e)-333(ks)-1(i)1(\\241dz)-334(n)1(az)-1(a)-55(jut)1(rz)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(je\\271)-1(d)1(z)-1(i)1(\\252)-334(p)-27(o)-334(k)28(ol)1(\\246)-1(d)1(z)-1(ie.)]TJ 27.879 -13.55 Td[(Zakrz\\241tn)1(\\246)-1(li)-433(s)-1(i)1(\\246)-435(zaraz)-434(o)-28(d)-433(ran)1(a)-434(k)28(o\\252o)-434(p)-27(o)-1(r)1(z)-1(\\241d)1(k)28(\\363)28(w)-1(,)-433(\\273)-1(e)-434(n)1(a)27(w)28(e)-1(t)-433(s)-1(tar)1(y)-434(u)1(nik)56(a)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(pi)1(e)-1(k\\252a,)-434(b)-27(o)-435(Jagn)1(a)-435(sielnie)-435(d)1(un)1(dero)28(w)27(a\\252a)-434(na)-434(J\\363z)-1(k)28(\\246,)-434(s)-1(am)-435(si\\246)-435(zabra\\252)-434(do)-434(o)-28(dw)28(alan)1(ia)]TJ 0 -13.549 Td[(\\261niegu)-397(z)-398(op\\252otk)28(\\363)28(w;)-397(wywie)-1(tr)1(z)-1(on)1(o)-398(i)1(z)-1(b)28(y)84(,)-397(om)-1(i)1(e)-1(ciono)-397(z)-398(pa)-55(j\\246c)-1(zyn)-397(\\261c)-1(i)1(an)28(y)83(,)-397(J\\363zk)56(a)-398(wy-)]TJ 0 -13.549 Td[(sypa\\252a)-322(\\273\\363\\252t)28(ym)-322(pi)1(as)-1(ki)1(e)-1(m)-322(gan)1(e)-1(k)-321(i)-322(sienie,)-321(i)-322(spies)-1(zni)1(e)-322(prze)-1(b)1(ierali)-321(s)-1(i)1(\\246)-322(o)-28(d\\261wi\\246)-1(tn)1(ie,)-322(b)-27(o)]TJ 0 -13.549 Td[(ksi\\241dz)-333(ju)1(\\273)-334(b)28(y\\252)-333(w)-334(n)1(ie)-1(d)1(alekim)-334(s\\241s)-1(i)1(e)-1(d)1(z)-1(t)28(wie,)-333(u)-333(B)-1(al)1(c)-1(erk)28(\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(Jak)28(o\\273)-449(wkr)1(\\363tc)-1(e)-449(stan\\246\\252y)-448(ksi\\246)-1(\\273e)-449(sanie)-449(p)1(rze)-1(d)-448(gan)1(kiem)-1(,)-448(a)-448(on)-448(s)-1(am)-448(w)-449(k)28(om\\273)-1(y)]TJ -27.879 -13.549 Td[(na)-361(fu)1(trze)-1(,)-361(p)-27(oprze)-1(d)1(z)-1(an)29(y)-362(p)1(rze)-1(z)-362(dw)28(\\363)-28(c)28(h)-362(or)1(gani\\261c)-1(i)1(ak)28(\\363)27(w,)-361(pr)1(z)-1(yb)1(ran)28(y)1(c)27(h)-361(kiej)-362(d)1(o)-362(msz)-1(y)84(,)]TJ 0 -13.549 Td[(ws)-1(ze)-1(d)1(\\252)-356(d)1(o)-356(izb)28(y)84(,)-355(o)-28(dm\\363)28(w)-1(i)1(\\252)-356(\\252aci\\253skie)-356(mo)-28(d)1(lit)28(wy)83(,)-355(p)-27(okrop)1(i\\252)-356(i)-355(p)-27(os)-1(ze)-1(d)1(\\252)-356(w)-356(ob)-27(ej\\261c)-1(ie)-355(p)-28(o-)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(ci\\242)-349(bu)1(dyn)1(ki)-348(i)-349(ca\\252y)-348(dob)28(yt)1(e)-1(k.)-348(Boryn)1(a)-349(n)1(i\\363s)-1(\\252)-348(przed)-349(n)1(im)-349(n)1(a)-349(tal)1(e)-1(rzu)-348(w)27(o)-27(d\\246)-349(\\261w)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(con\\241,)-324(a)-323(on)-324(w)-324(g\\252os)-324(si\\246)-324(m)-1(o)-27(dli\\252)-323(i)-324(p)-27(o\\261)-1(wi\\246c)-1(a\\252)-323(w)-1(sz)-1(y)1(s)-1(tk)28(o)-323(p)-28(o)-324(k)28(ol)1(e)-1(i,)-323(organ)1(i\\261)-1(ciaki)-323(z)-1(a\\261)-324(sz)-1(l)1(i)]TJ 0 -13.55 Td[(wp)-28(o)-27(dle)-415(p)1(rzy\\261piewuj\\241c)-414(k)28(ol\\246)-1(d)1(y)-414(i)-415(g\\246sto)-415(p)-27(otrz\\241c)27(h)1(a)-56(j)1(\\241c)-415(dzw)27(on)1(k)55(ami,)-414(a)-414(res)-1(zta)-415(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(za)-334(p)1(ro)-28(ce)-1(sj\\241)-333(sz)-1(\\252a)-333(z)-334(t)28(y\\252u.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zywsz)-1(y)-337(za\\261)-338(wr\\363)-28(ci\\252)-337(do)-337(iz)-1(b)29(y)-337(i)-337(przysiad\\252)-337(o)-28(d)1(p)-28(o)-28(czyw)27(a\\242,)-337(a)-337(nim)-337(B)-1(or)1(yna)-337(z)]TJ -27.879 -13.549 Td[(par)1(obki)1(e)-1(m)-375(z)-1(sypal)1(i)-375(do)-375(sa\\253)-375(p)-28(\\363\\252)-375(k)28(or)1(c)-1(a)-375(o)28(w)-1(sa)-375(i)-375(gro)-28(c)28(h)28(u)-375(\\242wiartk)28(\\246,)-375(j\\241\\252)-375(pr)1(z)-1(es)-1(\\252u)1(c)27(h)1(iw)27(a\\242)]TJ 0 -13.549 Td[(pacierza)-334(J\\363zk)28(\\246)-334(i)-333(Wit)1(k)55(a.)]TJ 27.879 -13.55 Td[(T)83(ak)-333(galan)28(t)1(o)-334(u)1(m)-1(i)1(e)-1(li)1(,)-334(a\\273)-333(s)-1(i\\246)-333(dziwi\\252)-334(i)-333(p)28(y)1(ta\\252,)-333(kto)-333(ic)27(h)-333(u)1(c)-1(zy\\252.)]TJ 0 -13.549 Td[({)-345(P)29(ac)-1(ierza)-345(to)-344(m)-1(i)1(\\246)-345(nauczy\\252)-345(Ku)1(ba,)-344(a)-345(k)56(atec)27(hi)1(z)-1(m)28(u)-345(i)-344(n)1(a)-345(lem)-1(en)28(tar)1(z)-1(u)-344(Ro)-28(c)27(h)1(o!)-345({)]TJ -27.879 -13.549 Td[(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-298(\\261mia\\252o)-297(Witek,)-296(a\\273)-298(go)-297(ksi\\241d)1(z)-298(p)-27(og\\252as)-1(k)56(a\\252)-297(p)-27(o)-297(g\\252o)28(w)-1(i)1(e)-1(,)-297(al)1(e)-298(J\\363zk)56(a)-297(tak)-297(stra-)]TJ 0 -13.549 Td[(ci\\252a)-329(\\261m)-1(ia\\252o\\261\\242)-1(,)-328(\\273)-1(e)-329(si\\246)-329(in)1(o)-329(rozc)-1(ze)-1(r)1(wie)-1(n)1(i\\252a,)-329(p)-27(op\\252ak)56(a\\252a)-329(i)-328(te)-1(go)-328(s)-1(\\252o)28(w)28(a)-329(ni)1(e)-330(wyk)1(rz)-1(t)1(usi\\252a!)]TJ 0 -13.549 Td[(Dal)-364(im)-365(p)-28(o)-364(dw)28(a)-365(obr)1(az)-1(ki)1(,)-365(a)-365(n)1(aucz)-1(a\\252,)-364(b)28(y)-365(s\\252uc)28(hali)-364(s)-1(tar)1(s)-1(zyc)27(h)1(,)-365(p)1(ac)-1(i)1(e)-1(rze)-365(o)-28(dma)28(wiali)-364(i)]TJ 0 -13.55 Td[(grze)-1(c)28(h)28(u)-365(si\\246)-366(strze)-1(gl)1(i,)-365(b)-27(o)-366(z\\252y)-365(na)-365(k)56(a\\273)-1(d)1(ym)-366(k)1(roku)-365(si\\246)-365(c)-1(zai,)-365(a)-365(do)-365(pi)1(e)-1(k\\252a)-365(nama)28(wia.)-365(A)]TJ 0 -13.549 Td[(p)-27(ote)-1(m)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252sz)-1(y)-333(g\\252os)-334(sp)-28(o)-55(jr)1(z)-1(a\\252)-333(na)-333(Jagn\\246)-333(i)-334(gr)1(o\\271)-1(n)1(ie)-334(zak)28(o\\253cz)-1(y\\252:)]TJ 27.879 -13.549 Td[({)-256(P)29(o)27(wiad)1(am)-256(w)27(am,)-256(\\273e)-256(nic)-256(si\\246)-256(ni)1(e)-257(u)1(kry)1(je)-256(pr)1(z)-1(ed)-256(ok)1(ie)-1(m)-256(spr)1(a)27(wiedl)1(iw)27(o\\261ci)-256(Bo\\273)-1(ej,)]TJ -27.879 -13.549 Td[(ni)1(c)-1(!)-324(Strze)-1(\\273cie)-326(si\\246)-325(dn)1(ia)-325(s\\241du)-324(i)-325(dn)1(ia)-325(k)56(ary)84(,)-325(p)-27(okutu)1(jcie)-325(i)-325(p)-27(opra)28(wia)-55(jcie)-326(si\\246)-325(p)-28(\\363k)1(i)-325(cz)-1(as!)]TJ 27.879 -13.549 Td[(Dzie)-1(ci)-285(bu)1(c)27(h)1(n\\246\\252)-1(y)-285(p)1(\\252ac)-1(ze)-1(m,)-285(b)-27(o)-286(si\\246)-286(i)1(m)-286(u)28(wid)1(z)-1(i)1(a\\252)-1(o,)-285(j)1(ak)28(ob)28(y)-285(w)-286(k)28(o\\261cie)-1(l)1(e)-286(b)28(yli)-285(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(cz)-1(as)-428(k)55(azani)1(a,)-428(Jagu)1(s)-1(i)-428(te\\273)-428(s)-1(erce)-429(zabi\\252o)-428(tr)1(w)27(o\\273ni)1(e)-429(i)-428(r)1(umie\\253ce)-429(p)-27(o)28(w)-1(l)1(e)-1(k\\252y)-427(t)27(w)28(arz,)-428(b)-27(o)]TJ 0 -13.55 Td[(dob)1(rze)-313(zrozumia\\252a,)-312(\\273)-1(e)-312(do)-312(ni)1(e)-1(j)-312(m\\363)28(wi\\252,)-312(a)-312(s)-1(k)28(oro)-312(M)1(ac)-1(iej)-312(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252,)-312(w)-1(y)1(s)-1(z\\252a)-313(zaraz)-312(nie)]TJ 0 -13.549 Td[(\\261m)-1(iej\\241c)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(u)-333(sp)-28(o)-55(jr)1(z)-1(e\\242)-334(w)-334(o)-27(c)-1(zy)83(.)]TJ 27.879 -13.549 Td[({)-278(C)-1(h)1(c)-1(i)1(a\\252)-1(b)29(ym)-279(z)-279(w)28(am)-1(i)-278(p)-27(om)-1(\\363)28(wi\\242,)-278(Mac)-1(i)1(e)-1(j)1(u!)-278({)-279(sze)-1(p)1(n\\241\\252,)-278(gdy)-278(z)-1(ostali)-278(sam)-1(i,)-278(k)56(aza\\252)]TJ -27.879 -13.549 Td[(m)27(u)-426(pr)1(z)-1(y)-427(sobie)-427(s)-1(i)1(ada\\242,)-427(o)-28(dc)28(hrz\\241kn)1(\\241\\252,)-427(tabaki)-427(m)28(u)-427(p)-27(o)-28(d)1(a\\252)-1(,)-426(nos)-428(wytar)1(\\252)-427(c)27(h)28(u)1(s)-1(tec)-1(zk)56(\\241,)]TJ 0 -13.549 Td[(o)-28(d)-380(kt\\363r)1(e)-1(j)-380(s)-1(z\\252y)-381(zapac)28(h)28(y)-381(k)1(ie)-1(j)-380(z)-381(try)1(bu)1(larza,)-381(j)1(ak)-381(p)-27(ote)-1(m)-381(op)-27(o)28(wiada\\252)-381(W)1(ite)-1(k)1(,)-381(p)1(alc)-1(e)-381(z)]TJ 0 -13.55 Td[(trzaskiem)-334(wyc)-1(i)1(\\241)-28(ga\\252)-334(ze)-334(sta)28(w)27(\\363)28(w)-334(i)-333(z)-334(cic)28(ha)-333(z)-1(acz)-1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(M\\363)28(wili)-333(mi)-334(l)1(ud)1(z)-1(ie)-333(o)-334(t)28(ym,)-333(c)-1(o)-333(si\\246)-334(tam)-334(w)-333(k)56(arcz)-1(mie)-334(sta\\252o,)-333(m)-1(\\363)28(wili!)]TJ\nET\nendstream\nendobj\n879 0 obj <<\n/Type /Page\n/Contents 880 0 R\n/Resources 878 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n878 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n883 0 obj <<\n/Length 9155      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(273)]TJ -330.353 -35.866 Td[({)-333(Ju\\261c)-1(i)1(,)-334(n)1(a)-333(o)-28(c)-1(zac)27(h)-333(wsz)-1(ystkic)28(h)-333(b)28(y\\252o!)-333({)-333(p)-28(o)28(wt\\363rzy\\252)-333(s)-1(tar)1(y)-333(s)-1(m)28(utn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-371(Nie)-371(c)27(ho)-27(d\\271)-1(cie)-371(do)-371(k)56(arcz)-1(m)28(y)-371(i)-371(k)28(obiet)-371(tam)-371(nie)-371(pr)1(o)27(w)28(adza)-56(j)1(c)-1(ie,)-371(t)28(yle)-371(z)-1(ak)56(azuj)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(s)-1(i)-390(z)-1(r)1(yw)27(am,)-390(prosz)-1(\\246,)-391(n)1(ic)-391(ni)1(e)-391(p)-28(omaga,)-391(macie)-391(wi\\246)-1(c)-391(za)-391(sw)27(o)-55(je,)-391(ale)-391(j)1(e)-1(d)1(nak)-390(B)-1(ogu)]TJ 0 -13.549 Td[(gor\\241co)-333(dzi\\246)-1(ku)1(jcie,)-333(\\273)-1(e)-334(gr)1(z)-1(ec)27(h)28(u)-333(wi\\246ksz)-1(ego)-333(tam)-334(ni)1(e)-334(b)28(y\\252o,)-333(m\\363)27(wi\\246)-333(w)27(am,)-333(nie)-333(b)28(y\\252o!)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)28(y)1(\\252)-1(o!)-333({)-333(Tw)27(ar)1(z)-334(m)27(u)-333(si\\246)-334(r)1(oz)-1(j)1(a\\261)-1(n)1(i\\252a,)-333(b)-28(o)-333(ksi\\246)-1(d)1(z)-1(u)-332(w)-1(i)1(e)-1(rzy\\252.)]TJ 0 -13.55 Td[({)-392(P)28(o)28(w)-1(i)1(adali)-392(mi)-393(te\\273,)-393(\\273e)-393(j\\241)-392(srogo)-393(k)56(ar)1(z)-1(ec)-1(ie)-392(z)-1(a)-392(to,)-392(nies)-1(\\252u)1(s)-1(znie)-393(r)1(obicie,)-392(a)-393(kto)]TJ -27.879 -13.549 Td[(ni)1(e)-1(spr)1(a)27(wiedli)1(w)27(o\\261\\242)-334(cz)-1(yn)1(i,)-333(grze)-1(sz)-1(y)84(,)-333(m\\363)27(wi\\246)-333(w)27(am,)-333(grz)-1(esz)-1(y!)]TJ 27.879 -13.549 Td[({)-333(Gdzie)-334(za\\261)-1(,)-333(j)1(e)-1(n)1(om)-334(j)1(\\241)-334(c)28(hcia\\252)-334(n)1(ie)-1(co)-333(przykr)1(\\363)-28(ci\\242)-1(,)-333(j)1(e)-1(n)1(o...)]TJ 0 -13.549 Td[({)-293(An)29(te)-1(k)-292(j)1(e)-1(st)-293(win)1(ie)-1(n)1(,)-292(nie)-293(on)1(a!)-293({)-292(pr)1(z)-1(erw)28(a\\252)-293(m)27(u)-292(p)-27(op)-27(\\246)-1(d)1(liwie.)-293({)-292(Um)27(y)1(\\261)-1(ln)1(ie)-293(pr)1(z)-1(ez)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261\\242)-399(na)-398(w)27(as)-399(zm)27(u)1(s)-1(i)1(\\252)-399(j\\241)-398(do)-398(ta\\253co)28(w)27(an)1(ia,)-398(w)-1(i)1(do)-28(cz)-1(n)1(ie,)-399(\\273e)-399(c)27(h)1(c)-1(ia\\252)-398(z)-399(w)27(ami)-398(a)27(w)28(an)28(tu)1(ry)84(,)]TJ 0 -13.549 Td[(m\\363)27(wi\\246)-306(w)27(am,)-306(\\273)-1(e)-307(c)28(hcia\\252)-307(a)28(w)28(an)28(tu)1(ry!)-306({)-306(z)-1(ap)-27(e)-1(wn)1(ia\\252)-307(u)1(ro)-28(cz)-1(y)1(\\261)-1(cie)-1(,)-306(p)1(rzyryc)28(h)28(to)28(w)27(an)29(y)-307(p)1(rze)-1(z)]TJ 0 -13.55 Td[(Domini)1(k)28(o)27(w)28(\\241,)-441(na)-441(kt\\363r)1(e)-1(j)-441(s\\252o)27(w)28(ac)27(h)-441(zup)-27(e\\252nie)-442(p)-27(olega\\252.)-441({)-442(Al)1(e)-1(,)-441(co)-442(tom)-441(m)-1(i)1(a\\252)-442(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(p)-27(o)27(wiedzie\\242)-1(..)1(.)-352(a)-1(h)1(a...)-352(\\271r\\363bk)56(a)-352(\\252az)-1(i)-352(p)-27(o)-353(sta)-56(j)1(ni,)-352(tr)1(z)-1(eba)-352(z)-1(amkn)1(\\241\\242)-353(w)-353(gr\\363)-27(dce)-1(,)-352(b)-27(o)-353(k)28(op)1(nie)]TJ 0 -13.549 Td[(j\\241)-286(w)27(a\\252ac)28(h)-286(i)-287(goto)28(w)28(e)-287(ni)1(e)-1(sz)-1(cz)-1(\\246\\261)-1(cie,)-287(w)-286(przes)-1(z\\252ym)-287(rok)1(u)-287(p)1(rze)-1(z)-287(to)-286(sam)-1(o)-286(z)-1(marn)1(o)27(w)28(ali)-286(mi)]TJ 0 -13.549 Td[(klaczk)28(\\246)-1(!)-333(P)28(o)-333(jaki)1(m)-334(to)-333(ogierz)-1(e?)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(o)-333(m)-1(\\252yn)1(arzo)27(wym!)]TJ 0 -13.55 Td[({)-429(Zaraz)-430(p)-27(oz)-1(n)1(a\\252e)-1(m)-429(z)-430(ma\\261)-1(ci)-429(i)-430(z)-429(te)-1(go)-429(\\252ysk)56(a)-430(n)1(a)-430(cz)-1(ol)1(e)-1(,)-429(t\\246gi)-429(\\271)-1(r)1(e)-1(b)1(ak!...)-429(Al)1(e)-430(z)]TJ -27.879 -13.549 Td[(An)28(tk)1(ie)-1(m)-347(p)-28(o)28(win)1(ni\\261c)-1(i)1(e)-348(zgo)-28(d\\246)-347(z)-1(r)1(obi\\242)-347(k)28(oniec)-1(zni)1(e)-1(,)-347(p)1(rze)-1(z)-347(te)-348(gn)1(ie)-1(wy)-347(n)1(a)-348(n)1(ic)-347(s)-1(i\\246)-347(c)27(h)1(\\252)-1(op)]TJ 0 -13.549 Td[(rozpu)1(\\261)-1(ci\\252.)]TJ 27.879 -13.549 Td[({)-380(Nie)-381(gn)1(ie)-1(w)28(a\\252e)-1(m)-380(s)-1(i\\246)-380(z)-381(ni)1(m)-1(,)-380(to)-380(i)-380(o)-380(z)-1(go)-28(d)1(\\246)-381(pr)1(os)-1(i)1(\\252)-381(go)-380(ni)1(e)-381(b)-28(\\246d\\246)-380({)-381(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(za)27(wzi\\246)-1(cie.)]TJ 27.879 -13.55 Td[({)-282(R)-1(ad)1(z)-1(\\246)-282(w)27(am)-283(j)1(ak)-282(ks)-1(i)1(\\241dz,)-283(a)-282(zrobi)1(c)-1(ie,)-282(c)-1(o)-282(w)27(am)-282(s)-1(u)1(m)-1(i)1(e)-1(n)1(ie)-283(dy)1(ktuj)1(e)-1(,)-282(ale)-282(to)-283(w)28(am)]TJ -27.879 -13.549 Td[(m\\363)27(wi\\246,)-244(\\273e)-245(z)-244(w)28(as)-1(ze)-1(j)-243(w)-1(i)1(n)28(y)-244(cz)-1(\\252o)28(wiek)-244(s)-1(i)1(\\246)-245(marn)28(u)1(je,)-244(d)1(z)-1(isia)-55(j)-244(jesz)-1(cz)-1(e)-244(m)-1(i)-243(m)-1(\\363)28(wili)1(,)-244(\\273)-1(e)-244(ci\\241)-28(gle)]TJ 0 -13.549 Td[(w)-323(k)56(arcz)-1(mie)-323(pr)1(z)-1(es)-1(i)1(aduj)1(e)-323(i)-323(wsz)-1(ystkic)28(h)-323(c)28(h\\252op)1(ak)28(\\363)27(w)-323(b)1(un)28(t)1(uje,)-323(n)1(a)-323(starsz)-1(yc)28(h)-322(p)-28(o)28(ws)-1(ta)-55(je)]TJ 0 -13.549 Td[(i)-333(p)-27(o)-28(dob)1(no)-333(c)-1(o\\261)-334(p)1(rze)-1(ciw)-333(dw)28(oro)28(w)-1(i)-333(zamie)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Nic)-334(mi)-333(o)-334(t)28(ym)-333(nie)-333(p)-28(o)28(wiadal)1(i.)]TJ 0 -13.55 Td[({)-452(Jak)-452(si\\246)-452(parsz)-1(y)1(w)27(a)-452(o)28(w)28(c)-1(a)-452(d)1(o)-452(s)-1(tad)1(a)-452(w)-1(\\261li\\271ni)1(e)-1(,)-452(wsz)-1(ystki)1(e)-453(zaraz)-1(i)1(!)-452(A)-452(z)-452(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(zm)-1(a)28(wia\\253)-333(p)1(rz)-1(ec)-1(i)1(w)-1(k)28(o)-333(d)1(w)27(oro)28(wi)-333(mo\\273)-1(e)-334(wyp)1(a\\261)-1(\\242)-333(dla)-333(c)-1(a\\252ej)-333(ws)-1(i)-333(wielkie)-333(nies)-1(zc)-1(z\\246\\261)-1(cie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-233(Bory)1(na)-232(nie)-233(c)28(hcia\\252)-233(o)-232(tej)-232(s)-1(p)1(ra)28(wie)-233(m\\363)27(wi\\242,)-232(wi\\246)-1(c)-233(k)1(s)-1(i\\241d)1(z)-233(p)-27(ogada\\252)-232(o)-233(c)-233(r)1(\\363\\273)-1(n)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(rze)-1(czac)27(h,)-333(a)-333(w)-334(k)28(o\\253)1(c)-1(u)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-331(Zgo)-28(d)1(\\241)-331(t)28(ylk)28(o,)-330(moi)-331(d)1(ro)-28(d)1(z)-1(y)84(,)-331(zgo)-28(d\\241)-330({)-331(za\\273)-1(y\\252)-330(tabaki)-330(i)-331(n)1(ak\\252ada\\252)-330(c)-1(zapk)28(\\246.)-331({)-331(Na)]TJ -27.879 -13.55 Td[(zgo)-28(dzie)-411(opiera)-411(si\\246)-411(\\261)-1(wiat)-410(c)-1(a\\252y)84(,)-411(zgo)-28(dn)1(ie)-1(,)-410(p)-28(o)-410(dobr)1(o)-28(ci,)-411(to)-411(i)-410(dw)28(\\363r)-411(b)29(y)-411(s)-1(i)1(\\246)-412(u)1(go)-28(dzi\\252)-411(z)]TJ 0 -13.549 Td[(w)28(am)-1(i,)-299(m\\363)27(wi\\252,)-299(ws)-1(p)-27(om)-1(i)1(na\\252)-300(mi)-300(co\\261)-300(o)-300(t)28(ym)-300(d)1(z)-1(iedzic,)-300(d)1(obry)-299(to)-300(cz)-1(\\252o)28(wiek)-300(i)-299(c)27(hcia\\252b)28(y)-299(to)]TJ 0 -13.549 Td[(za\\252)-1(at)28(wi\\242)-333(p)-28(o)-333(s)-1(\\241siedzku.)1(..)]TJ 27.879 -13.549 Td[({)-333(Wilcz)-1(e)-333(s)-1(\\241siedz)-1(t)28(w)28(o,)-333(a)-334(n)1(a)-333(takiego)-334(n)1(a)-56(j)1(le)-1(p)1(s)-1(zy)-333(k)28(\\363\\252)-334(al)1(b)-28(o)-333(\\273)-1(elazo.)]TJ 0 -13.549 Td[(Ksi\\241dz)-482(s)-1(i\\246)-483(\\273ac)27(h)1(n\\241\\252,)-482(p)-27(opatrzy\\252)-482(m)27(u)-482(w)-482(t)27(w)28(arz,)-482(ale)-483(sp)-28(otk)56(a)28(ws)-1(zy)-482(jego)-483(sz)-1(ar)1(e)-1(,)]TJ -27.879 -13.549 Td[(zim)-1(n)1(e)-1(,)-360(nieub)1(\\252agane)-361(o)-28(cz)-1(y)-360(i)-361(zac)-1(i\\246te)-361(w)27(ar)1(gi,)-361(o)-27(dwr\\363)-28(ci\\252)-361(si\\246)-361(s)-1(p)1(ies)-1(znie)-361(i)-361(zatar\\252)-360(r\\246)-1(ce)-361(z)-1(e)]TJ 0 -13.55 Td[(zdenerw)27(o)28(w)28(ania,)-333(n)1(ie)-334(lu)1(bi\\252)-333(b)-27(o)27(wiem)-334(sp)-27(or\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-296(Musz)-1(\\246)-296(ju\\273)-296(i\\261)-1(\\242.)-296(T)83(o)-297(w)28(am)-297(jesz)-1(cz)-1(e)-297(p)-27(o)28(wie)-1(m,)-296(\\273)-1(e)-297(n)1(ie)-297(p)-27(o)28(w)-1(i)1(nni)1(\\261)-1(cie)-297(zb)28(ytn)1(i\\241)-297(sur)1(o-)]TJ -27.879 -13.549 Td[(w)28(o\\261)-1(ci\\241)-306(zra\\273a\\242)-306(do)-305(s)-1(i)1(e)-1(b)1(ie)-306(k)28(obi)1(e)-1(t)28(y)84(,)-306(m\\252o)-28(da)-305(jest,)-306(p)1(s)-1(tr)1(o)-306(ma)-306(w)-305(g\\252o)27(wie)-305(jak)-305(k)55(a\\273da)-305(k)28(obi)1(e)-1(-)]TJ 0 -13.549 Td[(ta,)-285(to)-286(tr)1(z)-1(eba)-285(z)-286(ni\\241)-285(m)-1(\\241d)1(rze)-286(i)-286(spr)1(a)27(wiedl)1(iwie)-286(p)-27(os)-1(t\\246p)-28(o)28(w)28(a\\242)-1(;)-285(trze)-1(b)1(a)-286(j)1(e)-1(d)1(no)-285(nie)-286(wid)1(z)-1(i)1(e)-1(\\242,)]TJ 0 -13.549 Td[(dr)1(ugiego)-351(nie)-351(dos\\252)-1(y)1(s)-1(ze)-1(\\242,)-351(a)-352(n)1(a)-351(trze)-1(cie)-352(n)1(ie)-352(zw)27(a\\273a\\242)-1(,)-351(b)28(y)-351(t)28(ym)-351(s)-1(p)-27(oso)-1(b)-27(em)-352(u)1(c)27(hr)1(oni\\242)-351(s)-1(i\\246)]TJ 0 -13.55 Td[(pr)1(z)-1(ed)-388(nies)-1(n)1(as)-1(k)56(ami,)-389(z)-389(tego)-389(wyc)27(h)1(o)-28(dz\\241)-389(n)1(a)-56(jgor)1(s)-1(ze)-389(rze)-1(cz)-1(y)84(.)-389(P)28(an)-388(B\\363g)-389(z)-1(a)28(wsz)-1(e)-389(b\\252ogo-)]TJ 0 -13.549 Td[(s\\252)-1(a)28(wi)-372(z)-1(go)-27(dliwym,)-372(m\\363)27(wi\\246)-373(w)28(am,)-372(b\\252ogos)-1(\\252a)28(wi!)-372(Ki\\273)-373(t)1(o)-373(d)1(iab)-28(e\\252!)-372({)-373(k)1(rz)-1(y)1(kn\\241\\252)-372(z)-1(r)1(yw)27(a)-55(j\\241c)]TJ\nET\nendstream\nendobj\n882 0 obj <<\n/Type /Page\n/Contents 883 0 R\n/Resources 881 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n881 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n886 0 obj <<\n/Length 9454      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(274)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-1(,)-264(b)-28(o)-265(b)-27(o)-28(cie)-1(k)1(,)-265(sto)-56(j)1(\\241c)-1(y)-265(p)1(rzy)-265(s)-1(k)1(rzyni)-265(n)1(ieruc)28(homo,)-265(ku)1(jn)1(\\241\\252)-265(z)-266(ca\\252e)-1(j)-264(s)-1(i\\252y)-264(w)-266(b)1(\\252ys)-1(zcz)-1(\\241cy)]TJ 0 -13.549 Td[(bu)1(t)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(a.)]TJ 27.879 -13.549 Td[({)-376(Dy\\242)-377(b)-27(o)-28(ciek,)-376(Witek)-376(go)-377(j)1(e)-1(sieni\\241)-376(p)1(rz)-1(y)1(garn\\241\\252,)-376(b)-27(o)-376(os)-1(ta\\252o)-376(ptasz)-1(y)1(s)-1(k)28(o,)-376(wyku)1(-)]TJ -27.879 -13.549 Td[(ro)28(w)28(a\\252,)-345(\\273e)-345(to)-345(mia\\252)-345(skr)1(z)-1(yd)1(\\252o)-345(z\\252)-1(aman)1(e)-1(,)-344(i)-345(t)1(e)-1(raz)-345(siedzi)-345(w)-344(c)27(ha\\252u)1(pie)-345(i)-344(m)27(y)1(s)-1(zy)-345(\\252o)28(wi)-345(k)1(ie)-1(j)]TJ 0 -13.549 Td[(k)28(ot.)]TJ 27.879 -13.55 Td[({)-333(No,)-333(w)-1(i)1(e)-1(cie)-1(,)-333(j)1(e)-1(sz)-1(cze)-334(nie)-333(w)-1(i)1(dzia\\252e)-1(m)-333(os)-1(w)28(o)-56(j)1(onego)-334(b)-27(o)-28(ciana)-333(dziwne,)-333(dziwne!)]TJ 0 -13.549 Td[(Nac)27(h)29(yli\\252)-372(si\\246)-373(d)1(o)-373(n)1(iego,)-372(c)27(h)1(c)-1(ia\\252)-372(g\\252as)-1(k)56(a\\242,)-372(ale)-373(b)-27(o)-28(ciek)-372(s)-1(i)1(\\246)-373(ni)1(e)-373(da\\252)-372(r)1(usz)-1(y\\242,)-372(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(kr)1(\\246)-1(ci\\252)-334(szyj\\246)-334(i)-333(b)-27(o)-28(cz)-1(ki)1(e)-1(m,)-333(c)-1(za)-56(j)1(\\241c)-1(o)-333(zn\\363)28(w)-334(go)-28(d)1(z)-1(i)1(\\252)-334(w)-333(ks)-1(i)1(\\246)-1(\\273e)-334(bu)1(t)28(y)83(.)]TJ 27.879 -13.549 Td[({)-304(Wiec)-1(i)1(e)-1(,)-304(tak)-304(mi)-304(si\\246)-305(p)-27(o)-28(dob)1(a,)-304(\\273)-1(e)-304(c)27(h)1(\\246)-1(tn)1(ie)-305(b)28(y)1(m)-305(go)-304(ku)1(pi\\252)-304(o)-28(d)-304(w)28(as)-1(,)-304(spr)1(z)-1(edacie?)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(b)28(ym)-334(t)1(am)-334(mia\\252)-334(spr)1(z)-1(eda)28(w)27(a\\242,)-333(c)27(h)1(\\252opak)-333(go)-333(w)-1(n)1(e)-1(t)-333(zanies)-1(i)1(e)-334(na)-333(pl)1(e)-1(b)1(ani\\246.)]TJ 0 -13.549 Td[({)-333(Przy\\261l\\246)-334(p)-27(o)-333(niego)-334(W)84(alk)56(a.)]TJ 0 -13.55 Td[({)-333(Nie)-334(d)1(a)-334(si\\246)-334(on)-333(tk)1(n\\241\\242)-334(n)1(ik)28(om)27(u)1(,)-333(t)28(ylk)28(o)-333(jedn)1(e)-1(go)-333(Witk)56(a)-333(s)-1(\\252u)1(c)27(ha.)]TJ 0 -13.549 Td[(Za)28(w)27(o\\252ali)-352(c)27(h\\252op)1(ak)55(a,)-352(ks)-1(i)1(\\241dz)-353(m)27(u)-352(da\\252)-353(z\\252)-1(ot)1(\\363)27(wk)28(\\246)-353(i)-353(p)-27(ole)-1(ci\\252)-353(p)1(rz)-1(y)1(nie\\261)-1(\\242)-353(o)-353(zm)-1(r)1(oku;)]TJ -27.879 -13.549 Td[(sk)28(oro)-238(wr\\363)-28(ci)-238(z)-238(ob)-55(jazdu)1(,)-238(ale)-238(Wi)1(te)-1(k)-237(uderzy\\252)-238(w)-238(b)-27(e)-1(k)-237(i)-238(zaraz)-238(p)-28(o)-237(w)-1(y)1(j\\261c)-1(iu)-237(ksi\\246)-1(d)1(z)-1(a)-237(z)-1(ab)1(ra\\252)]TJ 0 -13.549 Td[(b)-27(o)-28(\\242)-1(k)56(a)-330(do)-331(ob)-27(ory)-330(i)-331(tam)-331(r)1(yc)-1(za\\252)-331(p)1(ra)28(wie)-331(do)-331(wiec)-1(zora,)-330(\\273)-1(e)-331(stary)-330(m)27(u)1(s)-1(ia\\252)-330(go)-331(pr)1(z)-1(ycisz)-1(a\\242)]TJ 0 -13.549 Td[(rze)-1(mieni)1(e)-1(m)-426(przyp)-27(omina)-55(j\\241c)-426(o)-28(dn)1(ie)-1(sienie)-426(pt)1(a)-1(k)56(a)-426(Ju)1(\\261)-1(ci,)-426(c)28(h\\252opak)-425(us\\252)-1(u)1(c)27(h)1(a\\242)-427(m)28(usia\\252,)]TJ 0 -13.55 Td[(ale)-235(s)-1(erce)-236(skwiercz)-1(a\\252o)-235(m)27(u)-234(z)-235(\\273)-1(alu)-234(i)-235(b)-27(ole)-1(\\261ci,)-235(na)28(w)28(e)-1(t)-234(rz)-1(emie)-1(n)1(i)-235(zb)28(ytn)1(io)-235(ni)1(e)-236(cz)-1(u)1(\\252,)-235(c)27(h)1(o)-28(dzi\\252)]TJ 0 -13.549 Td[(kiej)-341(og\\252up)1(ia\\252y)-342(z)-342(zapu)1(c)27(h)1(\\252)-1(y)1(m)-1(i)-341(o)-28(d)-341(p\\252acz)-1(u)-341(o)-28(czam)-1(i,)-341(a)-341(jak)-341(ino)-341(m)-1(\\363g\\252,)-341(dop)1(ada\\252)-342(b)-27(o)-28(\\242k)56(a,)]TJ 0 -13.549 Td[(ogarn)1(ia\\252)-333(go)-334(r)1(am)-1(ion)1(am)-1(i)1(,)-333(c)-1(a\\252o)28(w)27(a\\252)-333(a)-333(\\273)-1(a\\252osn)28(ym)-334(p)1(\\252ac)-1(ze)-1(m)-333(s)-1(i\\246)-333(z)-1(an)1(os)-1(i\\252..)1(.)]TJ 27.879 -13.549 Td[(O)-428(zmie)-1(r)1(z)-1(c)28(h)28(u)-428(za\\261)-1(,)-427(kiej)-428(ksi\\241d)1(z)-429(j)1(u\\273)-428(z)-1(e)-428(ws)-1(i)-427(p)-28(o)28(wr\\363)-28(ci\\252,)-428(u)1(kry\\252)-428(b)-27(o)-28(\\242k)56(a)-428(w)-429(sw)28(o)-56(j\\241)]TJ -27.879 -13.549 Td[(k)56(ap)-28(ot)1(\\246)-1(,)-325(b)28(y)-325(go)-326(u)1(c)27(hr)1(oni\\242)-326(o)-27(d)-325(m)-1(r)1(oz)-1(u)1(,)-326(i)-325(do)-325(s)-1(p)-27(\\363\\252ki.)-325(z)-326(J\\363zk)55(\\241,)-325(p)1(tak)-326(b)-27(o)28(wie)-1(m)-325(b)28(y\\252)-326(ci\\246\\273)-1(ki)1(,)]TJ 0 -13.55 Td[(p)-27(op\\252aku)1(j\\241c)-449(rze)-1(wn)1(ie)-449(p)-28(on)1(ie\\261)-1(li)-448(go)-449(n)1(a)-449(p)1(le)-1(b)1(ani\\246,)-448(a)-449(\\212apa)-448(p)-28(ob)1(ieg\\252)-449(z)-449(nimi)-448(i)-449(te\\273)-449(c)-1(o\\261)]TJ 0 -13.549 Td[(mark)28(otn)1(o)-334(sz)-1(cz)-1(ek)56(a\\252.)]TJ 27.879 -13.549 Td[(St)1(ary)83(,)-466(im)-467(d)1(\\252u\\273e)-1(j)-466(rozw)28(a\\273)-1(a\\252)-467(s\\252o)28(w)27(a)-466(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-466(i)-467(te)-467(j)1(e)-1(go)-466(s)-1(zc)-1(zere)-467(z)-1(ap)-27(ew)-1(n)1(ienia,)]TJ -27.879 -13.549 Td[(t)28(ym)-402(wi\\246)-1(cej)-402(si\\246)-402(rozja\\261nia\\252,)-402(u)1(s)-1(p)1(ak)56(a)-56(j)1(a\\252)-402(i)-402(z)-402(w)27(oln)1(a,)-402(n)1(ie)-1(p)-27(ostrze)-1(\\273e)-1(n)1(ie)-402(z)-1(mienia\\252)-402(sw)27(o)-55(je)]TJ 0 -13.549 Td[(p)-27(os)-1(t\\246p)-27(o)27(w)28(ani)1(e)-334(z)-334(Jagusi\\241.)]TJ 27.879 -13.55 Td[(Wsz)-1(y)1(s)-1(tk)28(o)-317(p)-27(o)28(wrac)-1(a\\252o)-317(d)1(o)-317(d)1(a)27(wnego)-317(stan)28(u)1(,)-317(ale)-317(ju)1(\\273)-318(n)1(ie)-317(p)-28(o)28(wr\\363)-27(c)-1(i\\252a)-317(d)1(o)-317(c)27(h)1(a\\252up)28(y)]TJ -27.879 -13.549 Td[(da)28(wna)-333(rad)1(os)-1(n)1(a)-333(w)-1(r)1(z)-1(a)28(w)27(a,)-333(ten)-333(sp)-28(ok)28(\\363)-55(j)-333(w)27(ewn\\246trzn)28(y)-333(i)-333(ta)-334(cic)28(ha,)-333(g\\252\\246)-1(b)-27(ok)56(a)-334(d)1(uf)1(no\\261\\242)-1(.)]TJ 27.879 -13.549 Td[(By\\252o)-375(j)1(ak)-375(z)-375(t)28(ym)-375(garn)1(kiem)-375(rozbit)28(ym,)-374(c)-1(o)-375(c)28(ho)-28(\\242)-375(o)-28(d)1(ru)1(to)28(w)27(an)28(y)-374(i)-375(zgo\\252a)-375(ca\\252y)-375(si\\246)]TJ -27.879 -13.549 Td[(widzia\\252,)-245(a)-246(gd)1(z)-1(i)1(e)-1(sik)-245(c)-1(i)1(e)-1(kn)1(\\241\\252)-246(i)-245(pr)1(z)-1(epu)1(s)-1(zc)-1(za\\252)-246(w)28(o)-28(d)1(\\246)-246(w)-246(taki)1(m)-246(m)-1(i)1(e)-1(j)1(s)-1(cu,)-245(\\273e)-246(i)-246(p)-27(o)-28(d)-245(\\261wiat\\252o)]TJ 0 -13.549 Td[(ni)1(e)-334(rozp)-28(ozna\\252.)]TJ 27.879 -13.55 Td[(T)83(ak)-253(i)-253(w)-253(c)27(h)1(a\\252)-1(u)1(pi)1(e)-254(s)-1(i)1(\\246)-254(widzia\\252o,)-253(b)-27(o)-253(prze)-1(z)-253(on\\241)-253(zgo)-28(d\\246)-253(nieroze)-1(znan)28(y)1(m)-1(i)-253(sz)-1(p)1(aru)1(t-)]TJ -27.879 -13.549 Td[(k)56(am)-1(i)-272(ciek\\252y)-273(p)1(rzycz)-1(a)-55(jone)-272(nieuf)1(no\\261c)-1(i,)-272(\\273ale)-273(p)1(rz)-1(y)1(p\\252o)28(wia\\252e)-273(z)-1(d)1(z)-1(i)1(e)-1(bk)28(o,)-272(al)1(e)-273(\\273)-1(yw)28(e)-273(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(i)-333(z)-1(go\\252a)-333(ni)1(e)-334(z)-1(ab)1(ite)-334(j)1(e)-1(sz)-1(cze)-334(p)-28(o)-27(dejrzenia.)]TJ 27.879 -13.549 Td[(St)1(ary)-283(b)-28(o)28(wiem)-284(m)-1(i)1(m)-1(o)-283(na)-55(jsz)-1(cz)-1(ersz)-1(yc)28(h)-283(usi\\252o)28(w)27(a\\253)-283(ni)1(e)-284(z)-1(atr)1(ac)-1(i\\252)-283(w)-284(sobie)-284(n)1(ie)-1(u)1(fn)1(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i)-259(i)-258(pra)28(wie)-259(m)-1(imo)-259(w)28(oli,)-259(a)-259(d)1(a)28(w)27(a\\252)-259(ci\\241)-28(g\\252e)-260(b)1(ac)-1(ze)-1(n)1(ie)-259(na)-259(k)56(a\\273)-1(d)1(y)-259(ru)1(c)27(h)-258(Jagn)28(y)83(,)-258(ona)-259(za\\261)-260(an)1(i)]TJ 0 -13.549 Td[(na)-321(to)-322(o)-28(czym)-1(gn)1(ienie)-322(n)1(ie)-322(z)-1(ap)-27(omnia\\252a)-322(m)28(u)-321(t)27(y)1(c)27(h)-321(z)-1(\\252o\\261c)-1(i)-321(i)-322(srogi)1(c)27(h)-321(s)-1(\\252\\363)28(w,)-322(wrza\\252a)-322(w)28(c)-1(i\\241\\273)]TJ 0 -13.55 Td[(o)-28(d)1(e)-1(ms)-1(t)1(\\241)-334(n)1(ie)-334(mog\\241c)-334(uciec)-334(s)-1(p)-27(o)-28(d)-333(t)28(y)1(c)27(h)-333(jego)-333(przenikl)1(iwyc)27(h)1(,)-334(str\\363\\273uj)1(\\241c)-1(y)1(c)27(h)-333(o)-28(cz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(Mo\\273e)-489(i)-489(d)1(late)-1(go,)-488(\\273)-1(e)-489(p)1(ilno)28(w)28(a\\252)-489(i)-489(n)1(ie)-489(w)-1(i)1(e)-1(r)1(z)-1(y\\252)-489(j)1(e)-1(j)1(,)-489(zniena)28(wid)1(z)-1(i\\252a)-489(go)-488(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej,)-333(a)-333(c)-1(or)1(az)-334(p)-27(ot\\246)-1(\\273niej)-333(wyd)1(z)-1(iera\\252a)-333(s)-1(i)1(\\246)-334(do)-333(An)28(tk)56(a.)]TJ 27.879 -13.549 Td[(T)83(ak)-338(si\\246)-338(ju)1(\\273)-339(u)1(m)-1(i)1(a\\252)-1(a)-338(zm)27(y)1(\\261)-1(ln)1(ie)-338(urz\\241dza\\242,)-338(\\273)-1(e)-338(co)-338(par\\246)-338(dn)1(i)-338(widy)1(w)27(a\\252a)-338(si\\246)-338(z)-339(n)1(im)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-429(br)1(ogie)-1(m.)-429(P)28(omaga\\252)-430(im)-430(w)-430(t)28(y)1(m)-430(Witek,)-429(kt\\363ren)-429(c)-1(a\\252ki)1(e)-1(m)-430(se)-1(r)1(c)-1(e)-430(straci\\252)-430(d)1(o)-430(go-)]TJ 0 -13.55 Td[(sp)-28(o)-28(d)1(arza)-375(za)-375(tego)-375(b)-27(o)-28(\\242k)56(a,)-375(a)-374(przylgn)1(\\241\\252)-375(d)1(o)-375(Jagn)28(y)84(,)-374(\\273)-1(e)-375(to)-374(m)27(u)-374(i)-374(teraz)-375(da)28(w)28(a\\252a)-375(lepsz)-1(e)]TJ 0 -13.549 Td[(p)-27(o)-28(dwiec)-1(zork)1(i,)-460(wi\\246)-1(cej)-460(omas)-1(t)28(y)84(,)-460(a)-460(c)-1(zego)-461(g\\246sto)-460(i)-460(par)1(\\246)-461(gr)1(os)-1(zy)-460(k)56(apn\\246\\252o)-460(o)-28(d)-459(An)28(tk)56(a.)]TJ\nET\nendstream\nendobj\n885 0 obj <<\n/Type /Page\n/Contents 886 0 R\n/Resources 884 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n884 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n889 0 obj <<\n/Length 9105      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(275)]TJ -358.232 -35.866 Td[(Ale)-410(g\\252\\363)28(wnie)-409(p)-28(omaga\\252a)-410(i)1(m)-410(Jagust)28(ynk)56(a,)-409(tak)-409(s)-1(i)1(\\246)-410(umia\\252a)-409(w)-1(k)1(ra\\261\\242)-410(w)-410(\\252as)-1(k)1(i)-410(J)1(agn)28(y)-409(i)]TJ 0 -13.549 Td[(t)28(yle)-290(zauf)1(ania)-289(wz)-1(b)1(ud)1(z)-1(i\\252a)-289(w)-290(An)28(tk)1(u,)-289(\\273)-1(e)-290(p)1(rosto)-290(n)1(ie)-290(b)28(y\\252o)-289(s)-1(p)-27(osobu)-289(widy)1(w)27(an)1(ia)-290(si\\246)-290(b)-27(e)-1(z)]TJ 0 -13.549 Td[(jej)-390(p)-28(omo)-28(cy)83(.)-391(Cn)1(a)-391(to)-391(nosi\\252a)-391(wie\\261)-1(ci)-391(mi\\246dzy)-391(ni)1(m)-1(i,)-390(ona)-391(str\\363\\273o)28(w)27(a\\252a)-391(p)1(rze)-1(d)-390(s)-1(tar)1(ym)-391(i)]TJ 0 -13.549 Td[(o)-28(c)28(hran)1(ia\\252a)-368(pr)1(z)-1(ed)-368(n)1(ie)-1(sp)-27(o)-28(dzian)1(k)55(ami!)-368(A)-368(wsz)-1(y)1(s)-1(tk)28(o)-368(to)-368(r)1(obi\\252a)-368(p)1(rze)-1(z)-368(c)-1(zyst\\241)-368(z)-1(\\252o\\261\\242)-369(d)1(o)]TJ 0 -13.549 Td[(ca\\252)-1(ego)-312(\\261wiata!)-312(M)1(\\261)-1(ci\\252a)-312(si\\246)-312(na)-312(d)1(ru)1(gic)27(h)-311(za)-312(w\\252)-1(asn\\241)-311(p)-28(on)1(iew)-1(i)1(e)-1(rk)28(\\246)-312(i)-311(krzywdy)1(;)-312(ni)1(e)-313(cier-)]TJ 0 -13.55 Td[(pi)1(a\\252a)-304(b)-28(o)28(wiem)-304(Jagn)28(y)-303(ni)-303(An)28(tk)56(a,)-304(ale)-304(j)1(e)-1(sz)-1(cz)-1(e)-304(b)1(arze)-1(j)-303(s)-1(t)1(are)-1(go,)-303(jak)-303(z)-1(r)1(e)-1(sz)-1(t)1(\\241)-304(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(b)-27(ogac)-1(zy)-376(ze)-376(w)-1(si,)-375(\\273)-1(e)-376(ma)-56(j)1(\\241)-376(ws)-1(zys)-1(t)1(k)28(o,)-376(a)-376(j)1(e)-1(j)-375(n)1(ie)-376(dosta)-56(j)1(e)-377(n)1(a)28(w)27(et)-376(tego)-376(k)56(\\241ta,)-376(gd)1(z)-1(i)1(e)-377(b)29(y)]TJ 0 -13.549 Td[(mog\\252a)-312(g\\252o)27(w)28(\\246)-312(s)-1(c)27(h)1(ron)1(i\\242)-1(,)-311(i)-312(tej)-312(\\252y)1(\\273)-1(ki)-311(w)27(ar)1(z)-1(y!)-311(Zar\\363)28(w)-1(n)1(o)-312(j)1(e)-1(dn)1(ak)-312(n)1(iena)28(widzi\\252a)-312(bi)1(e)-1(d)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(i)-333(jes)-1(zcz)-1(e)-334(b)1(arze)-1(j)-333(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(os)-1(to)-333(d)1(iab)-28(elsk)55(a)-333(ku)1(m)-1(a)-333(alb)-27(o)-333(i)-333(c)-1(o)-333(gorsz)-1(ego,)-333(jak)-333(o)-333(niej)-333(p)-27(o)27(wiad)1(ali.)]TJ 0 -13.549 Td[({)-397(W)84(e)-1(zm)-1(\\241)-397(si\\246)-397(z)-1(a)-397(\\252b)29(y)-397(i)-397(p)-27(oz)-1(agr)1(yz)-1(a)-55(j\\241)-397(j)1(ak)-397(te)-397(w\\261)-1(cie)-1(k)1(\\252e)-398(p)1(s)-1(y)-397({)-396(m)27(y\\261la\\252a)-397(c)-1(z\\246s)-1(to,)]TJ -27.879 -13.55 Td[(wielc)-1(e)-380(rad)1(a)-380(z)-1(e)-380(s)-1(w)28(o)-56(j)1(e)-1(j)-379(rob)-27(ot)28(y)83(,)-379(\\273)-1(e)-380(z)-1(a\\261)-380(zim)-1(\\241)-380(n)1(ie)-380(b)28(y\\252o)-380(wiela)-380(co)-380(robi)1(\\242)-1(,)-380(t)1(o)-380(\\252)-1(azi\\252a)-380(p)-27(o)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ac)27(h)-312(z)-313(k)56(\\241d)1(z)-1(iel\\241,)-312(p)-27(o)-28(ds\\252uc)28(hiw)28(a\\252a,)-312(a)-313(j)1(ud)1(z)-1(i)1(\\252)-1(a)-312(j)1(e)-1(d)1(n)28(yc)27(h)-311(na)-312(dr)1(ugic)28(h)-312(pr)1(z)-1(e\\261)-1(miew)27(a-)]TJ 0 -13.549 Td[(j\\241c)-422(ze)-423(wsz)-1(ystki)1(c)27(h)-422(zar\\363)28(wno,)-421(nie)-422(\\261)-1(mieli)-422(d)1(rzwi)-422(z)-1(am)28(yk)56(a\\242)-422(prze)-1(d)-421(ni)1(\\241)-422(oba)28(wia)-56(j)1(\\241c)-422(s)-1(i\\246)]TJ 0 -13.549 Td[(jej)-362(ozora,)-362(a)-362(g\\252\\363)27(wn)1(ie)-363(tego,)-362(\\273)-1(e)-362(p)-28(on)1(o)-362(z)-1(\\252e)-363(o)-27(c)-1(zy)-362(m)-1(i)1(a\\252)-1(a.)1(..)-362(Zaz)-1(iera\\252a)-362(i)-362(do)-362(An)28(t)1(k)28(\\363)27(w,)-362(ale)]TJ 0 -13.549 Td[(na)-55(jcz)-1(\\246\\261c)-1(iej)-365(sp)-28(ot)28(y)1(k)55(a\\252a)-365(si\\246)-365(z)-366(n)1(im)-1(,)-364(gdy)-365(z)-365(rob)-27(ot)28(y)-365(p)-27(o)27(wraca\\252,)-365(i)-365(wtedy)-365(to)-365(m)28(u)-365(w)-365(u)1(s)-1(zy)]TJ 0 -13.55 Td[(k\\252ad)1(\\252)-1(a)-333(n)1(o)27(win)28(y)-333(o)-27(d)-333(Jagn)28(y)84(.)]TJ 27.879 -13.549 Td[(Jak)28(o\\261)-434(w)27(e)-434(dwie)-434(niedziele)-435(p)-27(o)-434(b)28(ytn)1(o\\261)-1(ci)-434(ksi\\246dza)-435(u)-433(Boryn)1(\\363)27(w)-434(pr)1(z)-1(y)1(dyb)1(a\\252a)-435(go)]TJ -27.879 -13.549 Td[(k)28(o\\252o)-333(s)-1(ta)28(wu.)]TJ 27.879 -13.549 Td[({)-333(Wies)-1(z,)-333(s)-1(tar)1(y)-334(sielni)1(e)-334(p)-27(o)27(wsta)28(w)27(a\\252)-333(na)-333(c)-1(i)1(e)-1(b)1(ie)-334(pr)1(z)-1(ed)-333(ksi\\246)-1(d)1(z)-1(em.)]TJ 0 -13.549 Td[({)-333(O)-333(c)-1(\\363\\273)-334(to)-333(zno)28(wu)-333(s)-1(zc)-1(ze)-1(k)56(a\\252?)-333({)-334(p)28(y)1(ta\\252)-334(n)1(iedbal)1(e)-1(.)]TJ 0 -13.55 Td[({)-487(\\233e)-488(lu)1(dzi)-487(p)-28(o)-27(dma)27(wiasz)-488(n)1(a)-487(dw)28(\\363r,)-487(\\273e)-488(trze)-1(b)1(a)-487(b)28(y)-487(ci\\246)-488(o)-28(d)1(da\\242)-487(s)-1(tr)1(a\\273)-1(n)1(ik)28(om)-488(i)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(d)1(ru)1(gie)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-401(Niec)27(h)-400(p)-28(op)1(r\\363b)1(uje!)-401(Nim)28(b)28(y)-401(mn)1(ie)-402(wzi\\246)-1(l)1(i,)-401(tak)1(ie)-1(go)-401(b)29(ym)-401(m)27(u)-400(na)-401(dac)28(h)-401(p)1(u\\261c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(k)28(ogut)1(a,)-334(\\273e)-334(k)56(amie)-1(\\253)-333(n)1(a)-333(k)55(amieniu)-332(b)28(y)-333(nie)-333(os)-1(ta\\252?)-334({)-333(za)27(w)28(o\\252a\\252)-334(n)1(ami\\246)-1(tn)1(ie.)]TJ 27.879 -13.549 Td[(P)28(olecia\\252a)-334(zaraz)-334(z)-333(t\\241)-334(n)1(o)28(w)-1(i)1(n\\241)-333(do)-333(s)-1(tar)1(e)-1(go,)-333(.m)28(y\\261la\\252)-334(d)1(\\252ugo)-333(i)-333(p)-28(o)28(wiedzia\\252)-334(cic)28(ho:)]TJ 0 -13.55 Td[({)-333(P)28(o)-28(d)1(obne)-333(to)-334(d)1(o)-334(n)1(iego,)-333(taki)-333(z)-1(b)-27(\\363)-56(j)1(,)-333(p)-28(o)-27(dob)1(ne.)]TJ 0 -13.549 Td[(I)-391(wi\\246)-1(ce)-1(j)-390(nie)-391(rze)-1(k\\252,)-391(n)1(ie)-392(c)28(hcia\\252)-391(s)-1(i\\246)-391(z)-392(b)1(ab\\241)-391(z)-1(ad)1(a)28(w)27(a\\242)-391(w)-392(p)-27(ouf)1(a\\252o\\261)-1(ci,)-391(ale)-391(s)-1(k)28(oro)]TJ -27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(przysz)-1(ed\\252)-333(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m,)-333(z)-1(wierzy\\252)-333(s)-1(i\\246)-333(prze)-1(d)-333(n)1(im.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(wierzc)-1(ie)-333(w)-1(sz)-1(y)1(s)-1(tki)1(e)-1(m)28(u,)-333(co)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a)-334(p)1(rzynosi,)-333(z)-1(\\252a)-333(to)-333(k)28(obieta!)]TJ 0 -13.549 Td[({)-461(Mo\\273e)-462(t)1(o)-462(i)-460(niepr)1(a)27(wd)1(a,)-461(ale)-461(b)28(yw)28(a\\252)-1(y)-460(p)-28(o)-27(dobn)1(e)-462(p)1(rzypad)1(ki.)-461(P)1(rze)-1(cie\\273)-462(stary)]TJ -27.879 -13.55 Td[(Pr)1(ycz)-1(ek)-280(spali\\252)-279(s)-1(w)28(o)-56(j)1(e)-1(go)-280(sz)-1(w)28(agra,)-279(\\273)-1(e)-280(go)-280(skrzywdzi\\252)-280(p)1(rzy)-280(dzia\\252ac)27(h)1(,)-280(siedzia\\252)-280(za)-280(to)-280(w)]TJ 0 -13.549 Td[(kr)1(e)-1(minal)1(e)-1(,)-323(al)1(e)-324(spali)1(\\252)-1(.)-322(T)83(o)-323(i)-323(An)28(tek)-323(mo\\273)-1(e)-323(to)-323(zrobi\\242,)-323(m)28(usia\\252)-323(c)-1(o\\261)-323(nap)-27(omkn\\241\\242)-323(o)-323(t)28(ym,)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-333(nie)-333(s)-1(t)28(w)28(orz)-1(y)1(\\252ab)28(y)-333(s)-1(ob)1(ie)-1(.)]TJ 27.879 -13.549 Td[(A)-313(Ro)-28(c)27(h)1(o)-1(,)-313(\\273e)-314(to)-313(dob)1(ry)-313(b)28(y\\252)-313(c)-1(z\\252o)27(wiek,)-313(wielc)-1(e)-313(s)-1(i\\246)-313(t)27(y)1(m)-314(s)-1(t)1(rapi)1(\\252)-314(i)-313(j\\241\\252)-313(nama)28(w)-1(i)1(a\\242)-1(:)]TJ 0 -13.549 Td[({)-309(P)28(og\\363)-28(d\\271cie)-310(s)-1(i)1(\\246)-1(,)-309(o)-28(d)1(pu)1(\\261)-1(cie)-310(m)28(u)-309(c)-1(o)-309(grun)29(tu,)-309(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-310(i)-309(on)-309(\\273y\\242)-310(m)28(usi,)-309(ustatkuj)1(e)]TJ -27.879 -13.549 Td[(si\\246)-334(pr)1(\\246)-1(d)1(z)-1(ej,)-333(a)-333(nie)-333(b)-28(\\246dzie)-334(j)1(u\\273)-334(p)-27(o)28(w)27(o)-27(d\\363)28(w)-334(d)1(o)-334(k)1(\\252)-1(\\363t)1(ni)-333(i)-333(o)-28(dgr)1(a\\273)-1(a\\253)1(...)]TJ 27.879 -13.55 Td[({)-367(Nie,)-367(\\273)-1(eb)28(ym)-367(mia\\252)-367(z)-1(marn)1(ie\\242)-1(,)-367(\\273e)-1(b)29(ym)-368(mia\\252)-367(z)-367(torbami,)-366(i\\261)-1(\\242,)-367(p)-27(\\363)-56(j)1(d\\246;)-367(a)-367(p)-28(\\363k)1(im)]TJ -27.879 -13.549 Td[(\\273yw,)-309(n)1(ie)-309(d)1(am)-309(i)-308(tego)-308(z)-1(agon)1(a!)-308(\\233)-1(e)-308(m)-1(n)1(ie)-309(p)-27(obi)1(\\252)-309(i)-308(sp)-28(on)1(iew)-1(i)1(e)-1(r)1(a\\252)-309(j)1(ak)-308(psa,)-308(daro)28(w)28(a\\252b)28(ym,)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(ci\\246\\273)-1(k)28(o)-333(i)-333(trud)1(no)-333({)-333(ale)-334(j)1(e)-1(\\261li)-333(on)-333(i)-333(c)-1(o)-333(in)1(nego)-334(zam)-1(i)1(e)-1(r)1(z)-1(a!.)1(..)]TJ 27.879 -13.549 Td[({)-333(Napletli)-333(w)28(am)-1(,)-333(a)-333(wy)-334(t)1(o)-334(d)1(o)-334(se)-1(r)1(c)-1(a)-333(bi)1(e)-1(r)1(z)-1(ec)-1(ie!..)1(.)]TJ 0 -13.549 Td[({)-379(Ju\\261c)-1(i)1(,)-379(niepr)1(a)27(wd)1(a)-380(t)1(o)-380(j)1(e)-1(st,)-379(ju)1(\\261)-1(ci..)1(.)-379(ale)-380(\\273e)-1(b)29(y)-379(s)-1(i\\246)-379(to)-379(m)-1(og\\252o)-379(sta\\242)-1(..)1(.)-379(a\\273)-1(e)-379(m)-1(n)1(ie)]TJ -27.879 -13.55 Td[(rozum)-364(o)-28(d)1(c)27(ho)-27(dzi)-364(i)-364(z)-1(i)1(m)-1(n)1(o)-364(w)-365(k)28(o\\261ciac)27(h)-364(p)1(rze)-1(wierca...)-364(k)1(ie)-1(j)-363(p)-28(om)28(y\\261l\\246)-1(,)-363(\\273)-1(e)-364(m)-1(og\\252ob)28(y)-363(s)-1(i\\246)]TJ 0 -13.549 Td[(to)-333(s)-1(ta\\242...)]TJ\nET\nendstream\nendobj\n888 0 obj <<\n/Type /Page\n/Contents 889 0 R\n/Resources 887 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n887 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n892 0 obj <<\n/Length 9692      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(276)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zac)-1(i)1(s)-1(n)1(\\241\\252)-399(p)1(i\\246)-1(\\261c)-1(i)1(e)-399(i)-399(sk)56(am)-1(i)1(e)-1(n)1(ia\\252)-399(ze)-399(z)-1(gr)1(oz)-1(y)-398(sam)-1(ego)-399(p)1(rzypu)1(s)-1(zc)-1(ze)-1(n)1(ia)-398(m)-1(o\\273liw)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i)-363(onej.)-364(Ni)1(c)-365(n)1(ie)-364(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-363(nie)-364(m)28(y\\261)-1(l)1(a\\252)-364(nigd)1(y)-364(o)-364(t)28(ym,)-364(b)29(y\\252)-364(na)28(w)28(e)-1(t)-363(p)-28(ewn)28(ym)-364(w)-364(g\\252\\246)-1(b)1(i)]TJ 0 -13.549 Td[(Jagu)1(s)-1(in)1(e)-1(j)-313(niewinn)1(o\\261)-1(ci,)-314(ale)-314(p)-27(o)-28(c)-1(zu\\252,)-314(\\273e)-314(w)-315(tej)-314(syno)28(wskiej)-314(ni)1(e)-1(n)1(a)27(wi\\261c)-1(i)-313(do)-314(ni)1(e)-1(go)-314(m)28(usi)]TJ 0 -13.549 Td[(b)28(y\\242)-383(c)-1(osik)-383(w)-1(i)1(\\246)-1(ce)-1(j)-383(n)1(i\\271)-1(l)1(i)-384(gn)1(iew)-1(y)-383(i)-383(\\273)-1(al)1(e)-384(o)-384(gr)1(un)28(t,)-383(\\273e)-384(ta)-384(zapami\\246ta\\252o\\261)-1(\\242,)-383(kt\\363r\\241)-383(wte)-1(d)1(y)]TJ 0 -13.549 Td[(u)28(wid)1(z)-1(ia\\252)-367(w)-368(jego)-368(o)-27(c)-1(zac)27(h,)-367(z)-368(in)1(nego)-368(\\271r\\363)-28(d)1(lisk)55(a)-367(bij)1(e)-1(,)-367(cz)-1(u)1(\\252)-368(to)-368(d)1(obr)1(z)-1(e)-368(i)-367(w)-368(tej)-368(w\\252a\\261nie)]TJ 0 -13.55 Td[(c)27(h)29(w)-1(i)1(li)-387(p)-27(o)-28(cz)-1(u)1(\\252)-387(sam)-387(w)-387(tr)1(z)-1(ew)-1(i)1(ac)27(h)-386(tak)56(\\241)-387(sam\\241)-387(ni)1(e)-1(n)1(a)27(wi\\261\\242)-387(zim)-1(n)1(\\241,)-386(m)-1(\\261c)-1(i)1(w)27(\\241)-386(i)-387(n)1(ie)-1(u)1(b\\252a-)]TJ 0 -13.549 Td[(gan\\241,)-333(zwr\\363)-28(ci\\252)-333(s)-1(i\\246)-333(do)-333(R)-1(o)-27(c)27(ha)-333(i)-333(cic)27(h)1(o)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252:)]TJ 27.879 -13.549 Td[({)-333(Za)-334(ciasno)-333(dla)-333(nas)-333(ob)28(ydw)28(\\363)-28(c)28(h)-333(w)-334(Lip)-27(cac)27(h!)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(w)28(am)-334(zno)28(wu)-333(przyc)28(ho)-28(d)1(z)-1(i)-333(do)-333(g\\252o)28(wy)83(,)-333(co?)-334({)-333(krzykn)1(\\241\\252)-334(wystrasz)-1(on)28(y)84(.)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-1(c)28(ha)-55(j)-333(B)-1(\\363g)-333(b)1(roni)1(,)-334(b)29(y)-334(mi)-333(wlaz\\252)-334(ki)1(e)-1(d)1(y)-334(w)-333(pazur)1(y)-333(przy)-333(takiej)-333(ok)56(az)-1(j)1(i...)]TJ 0 -13.549 Td[(Usp)-28(ok)56(a)-56(j)1(a\\252)-334(go)-333(Ro)-28(c)28(ho,)-333(t\\252umac)-1(zy\\252,)-333(ale)-334(n)1(ic)-334(n)1(ie)-334(wsk)28(\\363ra\\252.)]TJ 0 -13.55 Td[({)-333(Sp)1(ali)-333(m)-1(n)1(ie,)-334(zobaczyc)-1(ie!)]TJ 0 -13.549 Td[(I)-332(o)-28(d)-331(tej)-332(c)27(h)29(w)-1(i)1(li)-332(ma\\252o)-332(ju)1(\\273)-333(k)1(ie)-1(d)1(y)-332(zaz)-1(n)1(a\\252)-332(s)-1(p)-27(ok)28(o)-56(j)1(u.)-331(O)-332(k)56(a\\273)-1(d)1(ym)-332(z)-1(mierzc)27(h)28(u)-331(s)-1(tr)1(\\363-)]TJ -27.879 -13.549 Td[(\\273o)27(w)28(a\\252)-328(niep)-28(ostrze\\273)-1(enie,)-328(c)-1(zai\\252)-328(s)-1(i)1(\\246)-329(z)-1(a)-328(w)28(\\246)-1(g\\252ami,)-328(ob)-27(c)27(ho)-27(dzi\\252)-328(dom)-329(i)-328(b)1(ud)1(ynk)1(i,)-328(z)-1(agl)1(\\241da\\252)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-409(s)-1(t)1(rz)-1(ec)27(h)29(y)83(,)-409(a)-409(w)-410(no)-27(c)-1(y)-409(s)-1(i)1(\\246)-410(c)-1(z\\246)-1(sto)-409(bu)1(dzi\\252,)-409(go)-28(dzinami)-409(c)-1(a\\252ymi)-409(nas\\252uc)28(hiw)28(a\\252,)-409(i)-410(za)]TJ 0 -13.549 Td[(na)-55(jmni)1(e)-1(j)1(s)-1(zym)-297(t)1(rz)-1(askiem)-297(zryw)28(a\\252)-296(s)-1(i\\246)-296(z)-297(\\252\\363\\273k)55(a)-296(i)-296(z)-297(p)1(s)-1(em)-297(ob)1(iega\\252)-297(wsz)-1(ystki)1(e)-297(k)56(\\241t)28(y)83(.)-296(Do-)]TJ 0 -13.55 Td[(pat)1(rz)-1(y)1(\\252)-401(r)1(az)-401(p)-27(o)-28(d)-400(b)1(rogiem)-401(j)1(akie\\261)-401(wydept)1(ane,)-400(na)-400(wp)-28(\\363\\252)-400(za)27(wian)1(e)-401(\\261lady)84(,)-400(dop)1(atrzy\\252)]TJ 0 -13.549 Td[(p)-27(\\363\\271)-1(n)1(ie)-1(j)-450(i)-451(p)1(rz)-1(y)-450(prze\\252)-1(azie)-451(i)-451(jesz)-1(cz)-1(e)-451(le)-1(p)1(iej)-451(si\\246)-452(u)1(t)28(wie)-1(r)1(dzi\\252)-451(w)-451(p)-28(ewno\\261c)-1(i,)-450(\\273)-1(e)-451(to)-451(An-)]TJ 0 -13.549 Td[(tek)-371(p)-27(o)-28(dc)28(ho)-28(d)1(z)-1(i)-370(no)-27(c)-1(ami)-371(i)-370(wypatr)1(uj)1(e)-372(j)1(e)-1(n)1(o)-371(sp)-28(osobn)1(o\\261)-1(ci)-371(p)-27(o)-28(d)1(palenia;)-370(c)-1(o)-370(inn)1(e)-1(go)-370(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252o)-334(m)28(u)-333(jes)-1(zc)-1(ze)-334(n)1(a)-334(m)28(y\\261l.)]TJ 27.879 -13.549 Td[(Ku)1(pi\\252)-453(o)-28(d)-453(m)-1(\\252yn)1(arza)-454(wielc)-1(e)-454(srogiego)-454(p)1(s)-1(a)-453(i)-454(zrob)1(i\\252)-454(m)28(u)-454(b)1(ud)1(\\246)-454(p)-28(o)-28(d)-453(sz)-1(op)1(\\241,)-454(a)]TJ -27.879 -13.55 Td[(j\\241t)1(rz)-1(y)1(\\252)-303(c)-1(i)1(\\246)-1(giem,)-303(ma\\252o)-303(je\\261\\242)-304(d)1(a)28(w)27(a\\252,)-302(p)-28(o)-28(d)1(s)-1(zcz)-1(u)28(w)28(a\\252,)-303(\\273e)-303(no)-28(cami)-303(pi)1(e)-1(s)-303(lata\\252)-302(i)-303(u)1(\\273)-1(era\\252)-303(j)1(ak)]TJ 0 -13.549 Td[(w\\261)-1(ciek\\252y)83(,)-296(a)-296(rz)-1(u)1(c)-1(a\\252)-296(s)-1(i)1(\\246)-297(na)-296(k)55(a\\273dego,)-296(\\273)-1(e)-297(n)1(ie)-1(j)1(e)-1(d)1(nego)-297(d)1(obrze)-297(sk)55(al)1(e)-1(cz)-1(y\\252,)-296(a\\273)-297(sk)55(ar)1(gi)-297(z)-296(te)-1(-)]TJ 27.879 -13.549 Td[(go)-333(p)-28(o)28(ws)-1(t)1(a\\252)-1(y)84(.)]TJ 0 -13.549 Td[(Ale)-372(przy)-372(t)28(yc)28(h)-372(os)-1(tr)1(o\\273)-1(n)1(o\\261)-1(ciac)27(h)-371(i)-372(pi)1(lno)28(w)28(aniac)27(h)-371(s)-1(tar)1(y)-372(miz)-1(ern)1(ia\\252)-372(i)-372(tak)-372(c)27(h)28(u)1(d\\252,)]TJ -27.879 -13.549 Td[(\\273e)-361(pas)-361(d)1(o)-360(p)-28(\\363\\252)-360(bieder)-360(opad)1(a\\252,)-360(p)-28(o)-28(cze)-1(rn)1(ia\\252,)-360(pr)1(z)-1(ygar)1(bi\\252)-360(s)-1(i)1(\\246)-1(,)-360(n)1(ogam)-1(i)-360(za)-361(sob\\241)-360(ci\\241)-28(ga\\252)]TJ 0 -13.55 Td[(i)-387(na)-387(wi\\363r)-387(s)-1(i\\246)-387(z)-1(es)-1(yc)28(ha\\252)-387(z)-388(t)28(yc)27(h)-387(u)1(ta)-56(j)1(on)28(yc)27(h)-387(m)28(y\\261lun)1(k)28(\\363)28(w)-388(i)-387(tur)1(bacji,)-387(\\273e)-388(m)27(u)-387(in)1(o)-388(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(gorza\\252y)-449(ki)1(e)-1(j)-448(w)-449(c)27(hor)1(obie.)-449(\\233e)-449(z)-1(a\\261)-449(n)1(ik)28(ogo)-449(bl)1(i\\273)-1(ej)-449(n)1(ie)-449(dop)1(usz)-1(cz)-1(a\\252)-449(i)-448(z)-1(wierza\\242)-450(si\\246)-449(a)]TJ 0 -13.549 Td[(wy\\273ala\\242)-334(ni)1(e)-334(mia\\252)-334(p)1(rze)-1(d)-333(ki)1(m)-1(,)-333(to)-333(go)-333(i)-333(barze)-1(j)-332(piek\\252y)-333(te)-334(ogni)1(e)-334(i)-333(pr)1(z)-1(epala\\252y)84(.)]TJ 27.879 -13.549 Td[(Nikt)-333(te\\273)-334(si\\246)-334(n)1(ie)-334(dor)1(oz)-1(u)1(m)-1(i)1(e)-1(w)28(a\\252,)-334(co)-333(m)27(u)-333(ta)-333(w)28(e)-334(w)27(\\241tp)1(iac)27(h)-332(s)-1(iedzi)-333(a)-334(p)-27(o)-28(d)1(gryza.)]TJ 0 -13.549 Td[(Bac)-1(zy\\252)-434(wi\\246)-1(ce)-1(j)-433(na)-434(dob)29(yte)-1(k)1(,)-434(s)-1(p)1(ra)28(wi\\252)-434(z)-1(\\252ego)-435(p)1(s)-1(a,)-433(c)-1(zu)28(w)27(a\\252)-434(n)1(o)-28(c)-1(ami,)-434(r)1(oz)-1(u)1(m)-1(ieli)]TJ -27.879 -13.55 Td[(b)-27(e)-1(z)-430(to,)-429(\\273)-1(e)-430(wilk)1(i)-430(si\\246)-430(ano)-430(n)1(ad)-429(p)-28(o)-27(dziw)-430(rozm)-1(n)1(o\\273)-1(y)1(\\252)-1(y)-429(tej)-430(zim)28(y)-430(i)-429(m)-1(a\\252o)-430(k)1(t\\363rej)-430(n)1(o)-28(cy)]TJ 0 -13.549 Td[(ni)1(e)-477(p)-27(o)-28(db)1(iera\\252y)-476(si\\246)-477(stadami)-476(p)-27(o)-28(d)-476(wie\\261;)-476(nieraz)-476(s)-1(\\252yc)28(ha\\242)-476(b)28(y\\252o)-476(ic)27(h)-475(w)-1(y)1(c)-1(ia)-476(i)-475(c)-1(z\\246)-1(sto)]TJ 0 -13.549 Td[(te\\273)-406(s)-1(i)1(\\246)-406(p)-28(o)-28(d)1(k)28(op)28(yw)28(a\\252y)-405(do)-406(ob)-27(\\363r,)-405(i)-405(gdzieniegdzie)-406(co\\261)-406(uskub)1(n\\246\\252y)83(.)-405(A)-405(przy)-405(t)28(ym)-1(,)-405(j)1(ak)]TJ 0 -13.549 Td[(to)-500(za)28(w)-1(d)1(y)-500(p)-27(o)-28(d)-500(wiosn\\246,)-500(i)-499(o)-500(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(ac)27(h)-500(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(y)-499(s)-1(\\252u)1(c)27(h)28(y)-499(c)-1(oraz)-500(cz)-1(\\246s)-1(tsz)-1(e;)-500(wzi\\246)-1(l)1(i)]TJ 0 -13.549 Td[(p)-27(o)-28(dob)1(no)-307(c)27(h)1(\\252opu)-307(z)-308(D\\246bi)1(c)-1(y)-307(p)1(ar\\246)-308(klaczy)83(,)-307(wz)-1(i)1(\\246)-1(li)-307(w)-307(Rudce)-308(wiepr)1(z)-1(a,)-307(to)-307(z)-1(n)1(o)28(w)-1(u)-307(k)1(ro)28(w)27(\\246)]TJ 0 -13.549 Td[(gdzie)-295(in)1(dziej)-294({)-295(i)-294(jak)-294(k)55(amie\\253)-294(w)27(e)-295(w)28(o)-28(d)1(\\246)-1(,)-294(ni)-294(z)-1(n)1(aku)-294(p)-27(o)-295(ni)1(c)27(h!)-294(T)83(o)-294(i)-295(n)1(iejeden)-295(w)-294(Lip)-27(c)-1(ac)27(h)]TJ 0 -13.55 Td[(w)-356(\\252eb)-356(si\\246)-356(s)-1(k)1(roba\\252,)-355(opatr)1(yw)27(a\\252)-355(z)-1(amki)-355(i)-356(sta)-56(j)1(ni)-355(s)-1(tr)1(z)-1(eg\\252,)-356(\\273e)-356(to)-356(na)-55(jl)1(e)-1(psze)-357(mieli)-355(k)28(onie)]TJ 0 -13.549 Td[(na)-333(ok)28(oli)1(c)-1(\\246.)]TJ 27.879 -13.549 Td[(I)-290(tak)-291(sze)-1(d)1(\\252)-291(cz)-1(as)-291(w)28(olno)-290(i)-290(r\\363)28(wno,)-290(jak)28(o)-290(te)-291(go)-28(d)1(z)-1(i)1(n)28(y)-290(na)-290(z)-1(egarze)-1(,)-290(an)1(i)-291(go)-290(wypr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(dzi\\242,)-333(ani)-333(ws)-1(tr)1(z)-1(y)1(m)-1(a\\242!)]TJ 27.879 -13.549 Td[(Zima)-454(w)27(ci\\241\\273)-454(b)28(y\\252a)-454(s)-1(r)1(oga,)-454(c)27(h)1(o)-28(\\242)-455(zm)-1(i)1(e)-1(n)1(na)-454(jak)-453(rzadk)28(o;)-454(b)28(y)1(w)27(a\\252y)-454(taki)1(e)-455(mrozy)83(,)]TJ -27.879 -13.55 Td[(jak)1(ic)27(h)-342(i)-342(n)1(a)-56(j)1(s)-1(tar)1(s)-1(i)-342(n)1(ie)-343(pami\\246tali,)-342(to)-342(\\261niegi)-342(s)-1(p)1(ada\\252y)-342(ogromn)1(e)-1(,)-342(to)-342(z)-1(n)1(o)28(w)-1(u)-341(b)28(y\\252y)-342(c)-1(a\\252e)]TJ 0 -13.549 Td[(t)28(ygo)-28(d)1(nie)-352(o)-28(dwilgi)1(,)-353(\\273e)-353(w)28(o)-28(da)-352(s)-1(t)1(a\\252)-1(a)-352(p)-27(o)-353(ro)28(w)28(ac)27(h)1(,)-353(a)-352(gdzieniegdzie)-353(i)-352(zagon)28(y)-352(c)-1(ze)-1(r)1(nia\\252y)84(,)]TJ\nET\nendstream\nendobj\n891 0 obj <<\n/Type /Page\n/Contents 892 0 R\n/Resources 890 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 877 0 R\n>> endobj\n890 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n895 0 obj <<\n/Length 9857      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(277)]TJ -358.232 -35.866 Td[(to)-422(przyc)28(ho)-28(d)1(z)-1(i\\252y)-422(taki)1(e)-423(wie)-1(j)1(b)28(y)84(,)-422(takie)-423(ku)1(rza)28(w)-1(y)84(,)-422(\\273)-1(e)-423(\\261wiata)-422(nie)-422(do)-56(j)1(rza\\252,)-423(a)-422(p)-27(o)-423(n)1(ic)27(h)]TJ 0 -13.549 Td[(za\\261)-430(b)28(yw)28(a\\252)-1(y)-429(d)1(nie)-430(sp)-28(ok)28(o)-55(jn)1(e)-1(,)-429(c)-1(i)1(c)27(he)-430(i)-429(tak)-429(s)-1(\\252o\\253)1(c)-1(e)-430(p)1(rzygrze)-1(w)28(a\\252o,)-430(\\273e)-430(dr)1(ogi)-430(r)1(oi\\252y)-430(si\\246)]TJ 0 -13.549 Td[(o)-28(d)-370(dziec)-1(i)1(,)-371(wywierano)-370(dr)1(z)-1(wi,)-370(lud)1(z)-1(i)-370(ogarn)1(ia\\252a)-371(r)1(ado\\261\\242)-1(,)-370(a)-371(starzy)83(,)-370(s)-1(i)1(\\246)-372(p)-27(o)-28(d)-370(\\261c)-1(i)1(anami)]TJ 0 -13.549 Td[(wygrze)-1(w)28(ali.)]TJ 27.879 -13.549 Td[(Za\\261)-456(w)-455(Lip)-27(c)-1(ac)28(h)-455(sz)-1(\\252o)-455(s)-1(w)28(oim)-455(o)-28(dwiec)-1(zn)28(ym)-455(p)-27(orz)-1(\\241d)1(kiem,)-455(k)28(om)27(u)-455(\\261mie)-1(r)1(\\242)-456(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(naznaczona)-376({)-376(umie)-1(r)1(a\\252,)-376(k)28(om)27(u)-376(r)1(ado\\261\\242)-377(w)28(e)-1(se)-1(l)1(i\\252)-377(si\\246,)-376(k)28(om)27(u)-375(bieda)-376({)-376(wyrze)-1(k)56(a\\252,)-376(k)28(om)27(u)]TJ 0 -13.549 Td[(c)27(h)1(orob)1(a)-298(sp)-27(o)27(wiad)1(a\\252)-298(si\\246)-297(i)-297(c)-1(ze)-1(k)56(a\\252)-297(k)28(o\\253ca)-297({)-297(i)-297(p)-28(c)28(ha\\252o)-297(s)-1(i)1(\\246)-298(jak)28(o\\261)-297(z)-298(Bo\\273)-1(\\241)-297(p)-27(omo)-28(c)-1(\\241,)-297(z)-297(dn)1(ia)]TJ 0 -13.549 Td[(na)-437(dzie\\253,)-437(z)-438(t)28(ygo)-28(d)1(nia)-437(na)-437(t)27(y)1(dzie)-1(\\253)1(,)-437(b)28(yc)27(h)-437(si\\246)-438(in)1(o)-438(zw)-1(i)1(e)-1(sn)28(y)-437(do)-28(cz)-1(ek)56(a\\242)-438(ab)-28(o)-437(tego,)-438(co)]TJ 0 -13.549 Td[(k)28(om)27(u)-332(prze)-1(znacz)-1(on)1(e)-1(.)]TJ 27.879 -13.549 Td[(T)28(ym)-1(czas)-1(em)-391(za\\261)-391(c)-1(o)-390(ni)1(e)-1(d)1(z)-1(iela)-390(grzm)-1(i)1(a\\252)-1(a)-390(m)28(uzyk)56(a)-391(w)-390(k)55(ar)1(c)-1(zmie)-1(,)-390(h)28(u)1(lan)1(o,)-391(p)1(ito,)]TJ -27.879 -13.549 Td[(cz)-1(ase)-1(m)-421(s)-1(i\\246)-421(w)27(ad)1(z)-1(on)1(o,)-421(c)-1(zas)-1(em)-422(za)-421(\\252b)28(y)-421(br)1(ano,)-421(a\\273)-422(k)1(s)-1(i\\241d)1(z)-422(p)-27(ote)-1(m)-421(k)56(arci\\252)-422(z)-421(am)27(b)-27(on)28(y)84(,)]TJ 0 -13.55 Td[(no)-360(i)-360(d)1(rugi)1(e)-361(sz)-1(\\252y)-360(spra)28(wy)84(.)-360(Odb)28(y)1(\\252o)-361(si\\246)-361(w)28(es)-1(ele)-361(K)1(\\252)-1(\\246bi)1(anki,)-359(trz)-1(y)-359(dni)-360(si\\246)-360(z)-1(ab)1(a)27(wial)1(i,)-360(a)]TJ 0 -13.549 Td[(tak)-306(h)28(ucz)-1(n)1(ie,)-307(\\273e)-307(p)-27(o)27(wiad)1(ali,)-306(jak)28(o)-306(K\\252\\241b)-306(dop)-27(o\\273)-1(y)1(c)-1(zy\\252)-307(p)1(i\\246)-1(\\242dzies)-1(i\\241t)-306(ru)1(bli)-306(o)-28(d)-306(or)1(ganist)28(y)]TJ 0 -13.549 Td[(na)-406(to)-407(w)28(e)-1(sele)-1(.)-406(So\\252t)28(ys)-407(te\\273)-407(wypr)1(a)27(wi\\252)-406(niez)-1(gor)1(s)-1(ze)-407(z)-1(m\\363)28(win)28(y)-406(c)-1(\\363r)1(c)-1(e)-407(z)-407(P\\252osz)-1(k)56(\\241.)-406(Gd)1(z)-1(ie)]TJ 0 -13.549 Td[(zno)28(wu)-420(c)28(hrzcin)28(y)-419(s)-1(i\\246)-420(o)-27(db)28(y\\252y)84(,)-419(ale)-420(z)-420(rzadk)56(a,)-420(n)1(ie)-420(p)-27(ora)-420(j)1(e)-1(sz)-1(cze)-420(b)28(y\\252a,)-420(wiele)-420(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)-333(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a\\252o)-334(si\\246)-334(d)1(opiero)-333(na)-333(zw)-1(i)1(e)-1(sne.)]TJ 27.879 -13.55 Td[(St)1(are)-1(m)28(u)-496(Pr)1(ycz)-1(k)28(o)28(wi)-496(te)-1(\\273)-497(si\\246)-496(z)-1(mar\\252o)-496(jak)28(o\\261)-497(w)-496(t)28(ym)-497(cz)-1(asie,)-496(t)28(ydzie\\253)-496(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(c)27(h)1(orza\\252,)-490(a)-489(mia\\252)-489(c)27(h)28(u)1(dziac)-1(ze)-1(k)-489(d)1(opiero)-489(na)-489(sz)-1(e\\261)-1(\\242dzies)-1(i\\241t)28(y)-489(i)-489(cz)-1(w)28(art)28(y)-489({)-489(c)-1(a\\252a)-489(w)-1(i)1(e)-1(\\261)]TJ 0 -13.549 Td[(p)-27(os)-1(z\\252a)-334(n)1(a)-334(p)-27(ogrze)-1(b)1(,)-333(b)-28(o)-333(d)1(z)-1(iec)-1(i)-333(st)28(yp)-27(\\246)-334(wypr)1(a)27(wial)1(i)-334(gal)1(an)28(t\\241...)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie)-491(z)-1(a\\261)-492(zbieran)1(o)-492(si\\246)-492(wiec)-1(zorami)-491(na)-491(oprz\\246d,)-491(tam)-492(n)1(ac)27(ho)-27(dzi\\252o)-492(si\\246)-492(t)28(yla)]TJ -27.879 -13.549 Td[(dzieuc)28(h)-353(i)-352(par)1(obk)28(\\363)28(w,)-353(\\273e)-354(r)1(obi\\252a)-352(s)-1(i\\246)-353(tak)56(a)-353(zaba)28(w)28(a,)-353(\\261m)-1(i)1(e)-1(c)28(h)28(y)83(,)-352(rad)1(o\\261)-1(cie)-353({)-353(a\\273)-353(mi\\252o,)-353(b)-27(o)]TJ 0 -13.55 Td[(to)-238(i)-237(Mateusz)-1(,)-238(wyzdr)1(o)28(w)-1(i)1(a)27(wsz)-1(y)-237(c)-1(a\\252kiem,)-238(pr)1(z)-1(ew)27(o)-27(dzi\\252)-238(m\\252)-1(o)-27(dzi)-238(i)-238(n)1(a)-56(j)1(bar)1(z)-1(ej)-238(d)1(ok)55(azyw)28(a\\252.)]TJ 27.879 -13.549 Td[(A)-376(te)-377(p)-28(ogw)28(ary)-376(ci\\241)-28(g\\252e,)-377(ob)1(m)-1(o)28(wy)84(,)-377(k)1(w)27(asy)83(,)-376(k\\252\\363tn)1(ie)-1(,)-376(s\\241s)-1(iedzkie)-376(s)-1(w)28(ary)84(,)-377(n)1(o)28(w)-1(i)1(nki)]TJ -27.879 -13.549 Td[({)-366(wie)-1(\\261)-366(s)-1(i\\246)-366(o)-28(d)-366(n)1(ic)27(h)-366(t)1(rz)-1(\\246s\\252)-1(a.)-366(A)-366(cz)-1(ase)-1(m)-366(tra\\014)1(\\252)-366(s)-1(i\\246)-366(dziad)-366(j)1(aki)-366(b)28(yw)28(a\\252y)83(,)-366(to)-366(op)-27(o)28(w)-1(i)1(ada\\252)]TJ 0 -13.549 Td[(r\\363\\273no\\261c)-1(i)-333(o)-333(\\261)-1(wiecie)-334(i)-333(t)28(ygo)-28(d)1(niami)-333(w)27(e)-333(w)-1(si)-333(s)-1(i)1(e)-1(d)1(z)-1(ia\\252.)]TJ 27.879 -13.549 Td[(Cz)-1(ase)-1(m)-479(z)-1(n)1(\\363)27(w)-479(list)-480(p)1(rzys)-1(zed\\252)-480(o)-27(d)-479(kt\\363rego)-480(c)28(h\\252opak)56(a)-479(z)-480(w)27(o)-55(jsk)56(a,)-480(co)-480(t)1(o)-480(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.55 Td[(cz)-1(yta\\253)1(,)-322(n)1(arad)1(,)-322(op)-27(o)28(wiada\\253)1(,)-322(wzdyc)28(h\\363)28(w)-322(dzieusz)-1(y)1(n)-322(a)-321(matc)-1(zyn)28(yc)28(h)-321(p\\252ac)-1(z\\363)28(w,)-322(\\273e)-322(i)-322(n)1(a)]TJ 0 -13.549 Td[(ca\\252)-1(e)-333(t)28(ygo)-28(dn)1(ie)-334(starcz)-1(y)1(\\252)-1(o!)]TJ 27.879 -13.549 Td[(A)-313(in)1(s)-1(ze)-313(rze)-1(cz)-1(y)1(!)-313(a)-313(to)-312(Magda)-312(p)-28(osz)-1(\\252a)-312(w)-313(s)-1(\\252u\\273b)-27(\\246)-313(do)-313(k)56(arcz)-1(m)28(y)83(,)-312(to)-313(p)1(ie)-1(s)-313(Boryn)1(\\363)28(w)]TJ -27.879 -13.549 Td[(p)-27(ogryz\\252)-443(W)83(alk)28(o)28(w)28(e)-1(go)-443(c)27(h)1(\\252opak)56(a,)-443(\\273e)-444(pr)1(e)-1(ce)-1(sem)-444(si\\246)-444(o)-27(dgra\\273ali,)-443(t)1(o)-444(k)1(ro)28(w)27(a)-443(J\\246dr)1(z)-1(ejom)]TJ 0 -13.549 Td[(ud)1(\\252a)28(w)-1(i)1(\\252)-1(a)-331(si\\246)-332(z)-1(i)1(e)-1(mni)1(akie)-1(m,)-331(\\273)-1(e)-331(dorzyn)1(a\\242)-332(j\\241)-331(m)27(u)1(s)-1(ia\\252)-331(Jam)27(b)1(ro\\273y)83(,)-331(to)-331(Grze)-1(l)1(a)-332(p)-27(o\\273)-1(y)1(c)-1(zy\\252)]TJ 0 -13.55 Td[(sto)-276(p)1(i\\246)-1(\\242dzies)-1(i\\241t)-275(ru)1(bli)-275(o)-28(d)-275(m\\252ynar)1(z)-1(a)-275(i)-276(d)1(a\\252)-276(w)-275(z)-1(asta)28(w)-276(\\252\\241k)28(\\246)-1(,)-275(to)-276(k)28(o)28(w)28(al)-276(k)1(up)1(i\\252)-276(p)1(ar\\246)-276(k)28(oni)1(,)]TJ 0 -13.549 Td[(\\273e)-450(d)1(z)-1(iw)28(o)28(w)27(an)1(o)-449(s)-1(i)1(\\246)-450(tem)27(u)-448(wie)-1(l)1(c)-1(e)-449(i)-449(mo)-28(cno)-449(n)1(ad)-449(t)28(ym)-449(delib)-27(ero)28(w)27(an)1(o,)-449(to)-449(d)1(obro)-27(dzie)-1(j)]TJ 0 -13.549 Td[(c)27(h)1(oro)28(w)27(a\\252)-431(p)1(rze)-1(z)-431(c)-1(a\\252y)-431(t)28(yd)1(z)-1(i)1(e)-1(\\253)1(,)-431(a\\273)-432(k)1(s)-1(i\\241d)1(z)-432(z)-431(T)27(y)1(m)-1(o)28(w)28(a)-431(przyj)1(e)-1(\\273d\\273a\\252)-431(go)-431(z)-1(ast\\246)-1(p)-27(o)28(w)27(a\\242)]TJ 0 -13.549 Td[({)-399(a)-398(to)-399(o)-398(z)-1(\\252o)-28(d)1(z)-1(iejac)28(h)-399(m\\363)28(wiono,)-398(o)-399(strac)28(hac)27(h)-398(r\\363\\273n)28(yc)28(h)-398(bab)28(y)-398(plet\\252y)84(,)-399(o)-398(w)-1(il)1(k)55(ac)28(h)-398(te)-1(\\273)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to,)-295(b)-27(o)-295(p)-27(ono)-295(wydu)1(s)-1(i)1(\\252)-1(y)-294(o)27(w)28(c)-1(e)-295(w)27(e)-295(dw)28(orze)-1(,)-295(o)-295(gosp)-28(o)-27(darst)28(wie)-1(,)-294(o)-296(\\261wiec)-1(ie,)-295(lu)1(dziac)27(h)1(,)]TJ 0 -13.549 Td[(a)-399(te)-399(i)1(nsz)-1(e)-399(rze)-1(czy)83(,)-398(\\273)-1(e)-399(n)1(i)-399(spami\\246ta\\242)-1(,)-398(ni)-398(op)-28(o)28(wiedzie\\242)-400(k)1(t\\363\\273)-399(p)-28(or)1(e)-1(d)1(z)-1(i!)-398(a)-399(tak)-398(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.55 Td[(co\\261)-338(n)1(o)27(w)28(ego,)-337(\\273)-1(e)-337(wsz)-1(ystkim)-337(starcz)-1(y)1(\\252)-1(o)-336(i)-337(na)-336(dni)1(e)-1(,)-336(i)-337(na)-336(d\\252ugi)1(e)-338(wiec)-1(zory)84(,)-337(\\273e)-338(t)1(o)-337(c)-1(zas)-1(u)]TJ 0 -13.549 Td[(zim)-1(o)28(w)28(\\241)-334(p)-27(or\\241)-333(ni)1(k)28(om)27(u)-333(n)1(ie)-334(b)1(rak)28(o)28(w)27(a\\252o.)]TJ 27.879 -13.549 Td[(T)28(ym)-383(sam)27(ym)-382(z)-1(ab)1(a)28(w)-1(i)1(ali)-382(s)-1(i)1(\\246)-383(i)-382(u)-382(Bory)1(n\\363)28(w,)-382(jeno)-382(z)-383(t\\241)-382(o)-28(d)1(m)-1(i)1(an\\241,)-382(\\273e)-383(stary)-382(k)56(a-)]TJ -27.879 -13.549 Td[(mie)-1(n)1(iem)-387(siedzia\\252)-386(w)-387(d)1(om)27(u)-385(i)-386(na)-386(\\273adn)1(e)-387(zaba)28(wy)-386(ni)1(e)-387(c)27(h)1(o)-28(dzi\\252,)-386(a)-386(i)-386(k)28(ob)1(ietom)-387(te\\273)-386(i\\261)-1(\\242)]TJ 0 -13.549 Td[(ni)1(e)-357(p)-28(ozw)27(al)1(a\\252)-1(,)-356(\\273e)-358(j)1(u\\273)-357(d)1(e)-1(sp)-28(eracja)-356(br)1(a)-1(\\252a)-356(Jagusi\\246,)-357(a)-356(J\\363z)-1(k)56(a)-357(ca\\252e)-357(dn)1(ie)-357(m)-1(amrota\\252a)-356(z)-1(e)]TJ 0 -13.55 Td[(z\\252)-1(o\\261ci,)-319(b)-28(o)-319(si\\246)-319(jej)-319(dziwni)1(e)-320(mat)27(y)1(jasi\\252o)-319(w)-320(c)28(ha\\252up)1(ie)-320(siedzie\\242)-1(,)-319(t)28(yl)1(a)-320(b)29(yw)27(a\\252o)-319(ca\\252e)-1(j)-319(u)1(c)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(c)27(h)29(y)83(,)-296(\\273)-1(e)-297(n)1(ie)-297(wz)-1(b)1(rani)1(a\\252)-297(c)27(h)1(o)-28(dzi\\242)-297(z)-297(k)56(\\241dziel\\241,)-296(ale)-297(do)-296(t)28(yc)27(h)-296(jeno)-296(c)27(h)1(a\\252up,)-296(gd)1(z)-1(ie)-297(si\\246)-297(sam)-1(e)]TJ\nET\nendstream\nendobj\n894 0 obj <<\n/Type /Page\n/Contents 895 0 R\n/Resources 893 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n893 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n899 0 obj <<\n/Length 8921      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(278)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(starsz)-1(e)-334(k)28(ob)1(iet)27(y)-333(zbiera\\252y)84(.)]TJ 27.879 -13.549 Td[(Wi\\246c)-334(te\\273)-334(p)1(rz)-1(ew)28(a\\273)-1(n)1(ie)-334(sie)-1(d)1(z)-1(ieli)-333(wiec)-1(zorami)-333(w)-334(d)1(om)27(u.)]TJ 0 -13.549 Td[(Jedn)1(e)-1(go)-348(wiec)-1(zora,)-348(j)1(ak)28(o\\261)-349(j)1(u\\273)-349(p)-27(o)-28(d)-347(k)28(oniec)-349(l)1(utego,)-348(z)-1(esz)-1(\\252o)-348(s)-1(i)1(\\246)-349(p)1(ar\\246)-349(os\\363b)-348(i)-348(sie-)]TJ -27.879 -13.549 Td[(dzieli)-263(p)-27(o)-263(dru)1(giej)-263(stroni)1(e)-1(,)-263(b)-27(o)-263(tam)-264(t)1(k)55(a\\252a)-263(p)1(\\252)-1(\\363t)1(no)-263(Dominik)28(o)28(w)28(a)-263(przy)-263(lamp)-27(c)-1(e,)-263(a)-263(res)-1(zta)]TJ 0 -13.549 Td[(z)-301(p)-27(o)28(w)27(o)-27(du)-300(t\\246giego)-300(z)-1(i\\246bu)-299(kup)1(i\\252a)-300(s)-1(i\\246)-300(pr)1(z)-1(ed)-300(k)28(ominem.)-300(Jagusia)-300(z)-301(Nastk)56(\\241)-301(p)1(rz\\246)-1(d)1(\\252y)83(,)-300(a\\273)]TJ 0 -13.55 Td[(wrze)-1(ciona)-261(w)28(arcz)-1(a\\252y)84(,)-261(k)28(olacja)-261(si\\246)-262(d)1(ogoto)28(wyw)27(a\\252a,)-261(J)1(\\363z)-1(k)56(a)-261(kr\\246c)-1(i)1(\\252a)-261(s)-1(i\\246)-261(p)-27(o)-262(i)1(z)-1(b)1(ie)-1(,)-260(a)-261(s)-1(tar)1(y)]TJ 0 -13.549 Td[(p)28(yk)56(a\\252)-406(z)-407(fa)-55(jki)-406(w)-407(k)28(omin)-406(i)-406(c)-1(o\\261)-407(sobi)1(e)-407(m)27(y\\261la\\252)-406(g\\252)-1(\\246b)-27(ok)28(o,)-407(b)-27(o)-406(pra)28(wie)-407(si\\246)-407(ni)1(e)-407(o)-28(dzyw)28(a\\252.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(krzy\\252a)-343(si\\246)-343(wsz)-1(ystkim)-342(ta)-343(cic)28(ho\\261\\242)-1(,)-342(b)-27(o)-343(in)1(o)-343(ogi)1(e)-1(\\253)-342(tr)1(z)-1(ask)56(a\\252)-1(,)-342(\\261wie)-1(r)1(s)-1(zc)-1(z)-343(skr)1(z)-1(yp)1(ia\\252)]TJ 0 -13.549 Td[(z)-427(k)56(\\241ta,)-426(w)28(ars)-1(ztat)-426(h)28(u)1(k)55(a\\252)-426(o)-28(d)-426(cz)-1(asu)-426(do)-426(cz)-1(asu,)-426(a)-426(nik)1(t)-427(j)1(ak)28(o\\261)-427(si\\246)-427(n)1(ie)-427(o)-28(d)1(z)-1(yw)28(a\\252,)-426(wi\\246)-1(c)]TJ 0 -13.549 Td[(Nastk)55(a)-333(p)1(ie)-1(r)1(w)-1(sza)-334(zac)-1(z\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-56(j)1(dziec)-1(ie)-333(to)-334(j)1(utr)1(o)-334(z)-333(k)55(\\241d)1(z)-1(iel\\241)-333(do)-333(K\\252\\246b)-28(\\363)28(w?)]TJ 0 -13.55 Td[({)-333(Zaprasz)-1(a\\252a)-333(Mar)1(ys)-1(i)1(a)-334(d)1(z)-1(isia)-55(j.)]TJ 0 -13.549 Td[({)-333(Ro)-28(c)27(h)1(o)-334(ob)1(ie)-1(cali,)-333(\\273e)-334(j)1(utro)-333(tam)-334(z)-333(ks)-1(i)1(\\241\\273)-1(ki)-333(b)-27(\\246d\\241)-333(c)-1(zyta\\242)-334(h)1(is)-1(t)1(orie)-334(o)-333(kr)1(\\363lac)27(h)1(.)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(z\\252ab)28(ym,)-333(ale)-334(n)1(ie)-334(wiem)-334(jesz)-1(cz)-1(e...)-333({)-333(s)-1(p)-27(o)-56(j)1(rza\\252a)-334(p)29(yta)-56(j)1(\\241c)-1(o)-333(na)-333(starego.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(j)1(a)-334(p)-27(\\363)-55(jd\\246,)-333(tatu)1(lu..)1(.)-334({)-333(p)1(ros)-1(i)1(\\252a)-334(J\\363zk)56(a.)]TJ 0 -13.549 Td[(Nie)-298(o)-27(dp)-27(o)27(wiedzia\\252,)-297(b)-27(o)-298(p)1(ie)-1(s)-297(m)-1(o)-28(cno)-297(pr)1(z)-1(y)1(s)-1(zc)-1(ze)-1(k)1(iw)27(a\\252)-297(na)-297(ganku)-296(i)-298(zaraz)-298(wsun)1(\\241\\252)]TJ -27.879 -13.55 Td[(si\\246)-334(ni)1(e)-1(\\261m)-1(i)1(a\\252o)-334(Jasiek,)-333(Przew)-1(r)1(otn)28(ym)-333(nazyw)27(an)29(y)-334(z)-333(prze)-1(\\261mie)-1(wisk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wiera)-55(j)-333(dr)1(z)-1(wi,)-333(gap)-27(o,)-334(b)-27(o)-333(tu)-333(ni)1(e)-334(ob)-27(ora!)-333({)-334(wr)1(z)-1(asn\\246\\252a)-334(Domin)1(ik)28(o)28(w)27(a.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)1(\\273)-1(e)-334(si\\246,)-333(nie)-333(z)-1(j)1(e)-1(d)1(z)-1(\\241)-333(c)-1(i\\246,)-333(c)-1(zeg\\363\\273)-334(s)-1(i)1(\\246)-334(rozgl\\241dasz)-1(?)-333({)-333(p)28(yta\\252a)-333(Jagna.)]TJ 0 -13.549 Td[({)-307(A)-307(b)-28(o..)1(.)-307(b)-28(o)-28(ciek)-307(m)27(u)1(s)-1(ia\\252)-307(si\\246)-308(k)56(a)-56(j)1(\\261)-308(pr)1(z)-1(yt)1(ai\\242)-308(i)-307(jesz)-1(cz)-1(e)-307(m)-1(ie)-307(kuj)1(nie...)-307({)-307(j)1(\\241k)55(a\\252)-307(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(wystrasz)-1(on)28(y)1(m)-1(i)-333(o)-28(cz)-1(ami)-333(w)27(o)-27(dz\\241c)-334(p)-27(o)-334(k)56(\\241tac)27(h)1(.)]TJ 27.879 -13.55 Td[({)-242(Oh)1(o,)-242(b)-28(o)-27(\\242)-1(k)56(a)-242(gos)-1(p)-27(o)-28(d)1(arz)-242(w)-1(y)1(dali)-242(d)1(obr)1(o)-28(dziejo)28(wi,)-242(ni)1(c)-243(ci)-242(ju)1(\\273)-243(n)1(ie)-243(zrob)1(i!)-242({)-242(mru)1(k-)]TJ -27.879 -13.549 Td[(n\\241\\252)-333(Wit)1(e)-1(k.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(i)-333(nie)-334(wiem,)-333(p)-28(o)-333(c)-1(o)-333(go)-333(b)28(y\\252o)-333(trzyma\\242)-1(,)-333(jeno)-333(lu)1(dzi)-333(krzywdzi\\252!)]TJ 0 -13.549 Td[({)-284(S)1(iada)-55(j,)-283(nie)-284(marud)1(\\271)-1(!)-283({)-284(n)1(ak)55(aza\\252a)-284(Nastk)55(a)-283(w)-1(sk)56(az)-1(u)1(j\\241c)-284(mie)-1(j)1(s)-1(ce)-284(w)-1(p)-27(o)-28(d)1(le)-284(s)-1(iebi)1(e)-1(.)]TJ 0 -13.549 Td[({)-485(Hale,)-485(k)28(ogo)-486(t)1(o)-486(u)1(krzywdzi\\252,)-485(c)27(h)1(e)-1(b)1(a)-485(jedn)28(yc)28(h)-485(g\\252up)1(ic)27(h)-484(ab)-28(o)-485(p)1(s)-1(\\363)28(w)-486(ob)-27(cyc)27(h)1(?)]TJ -27.879 -13.55 Td[(Cho)-28(d)1(z)-1(i)1(\\252)-446(s)-1(e)-446(jak)-445(te)-1(n)-445(dziedzic)-446(p)-28(o)-446(stancji)1(,)-446(m)27(y)1(s)-1(zy)-446(\\252o)28(wi\\252,)-446(ws)-1(zystkim)-446(ust\\246p)-28(o)28(w)28(a\\252,)-446(a)]TJ 0 -13.549 Td[(wydal)1(i)-333(go!)-334({)-333(sz)-1(epn)1(\\241\\252)-334(z)-334(wyr)1(z)-1(u)1(te)-1(m)-333(c)27(h\\252op)1(ak.)]TJ 27.879 -13.549 Td[({)-320(Cic)28(ho,)-320(cic)27(h)1(o,)-320(ob)1(\\252as)-1(k)56(a)28(w)-1(i)1(s)-1(z)-320(se)-321(n)1(a)-320(wios)-1(n)1(\\246)-320(dru)1(giego,)-320(kiej)-319(c)-1(i)-320(\\273al)-320(za)-320(b)-27(o)-28(\\242k)55(ami!)]TJ 0 -13.549 Td[({)-266(A)-267(n)1(ie)-267(ob)1(\\252)-1(ask)56(a)28(w)-1(i\\246,)-266(b)-27(o)-267(i)-266(ten)-266(b)-28(\\246dzie)-267(j)1(e)-1(sz)-1(cz)-1(e)-266(m)-1(\\363)-55(j,)-266(ni)1(e)-1(c)27(h)-265(s)-1(i\\246)-267(j)1(e)-1(n)1(o)-267(ciep\\252o)-266(z)-1(r)1(obi,)]TJ -27.879 -13.549 Td[(to)-310(ju)1(\\273)-311(um)28(y\\261)-1(l)1(i\\252e)-1(m)-310(taki)-310(s)-1(p)-27(os)-1(\\363b)-310(n)1(a)-310(niego,)-310(\\273)-1(e)-311(n)1(ie)-311(wytr)1(z)-1(yma)-310(na)-310(pleban)1(ii,)-310(a)-310(przylec)-1(i)1(!)]TJ 27.879 -13.55 Td[(Jasie)-1(k)-333(k)28(on)1(iec)-1(znie)-333(c)27(hcia\\252)-333(s)-1(i\\246)-333(do)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-334(tego)-333(s)-1(p)-27(os)-1(ob)1(u,)-333(ale)-333(Witek)-333(bur)1(kn\\241\\252:)]TJ 0 -13.549 Td[({)-335(G\\252up)1(i!)-335(ku)1(ry)-335(s)-1(e)-335(m)-1(aca)-56(j)1(,)-335(m)27(y\\261li,)-335(\\273e)-336(co)-336(l)1(e)-1(p)1(s)-1(ze)-1(go)-335(p)-27(oradzi.)-335(Kto)-335(ma)-336(r)1(oz)-1(u)1(m)-1(,)-335(to)]TJ -27.879 -13.549 Td[(se)-334(s)-1(w)28(\\363)-56(j)-333(sp)-27(os)-1(\\363b)-333(wyn)1(a)-56(j)1(dzie)-1(,)-333(a)-333(ni)1(e)-334(b)-28(\\246dzie)-334(b)1(ra\\252)-333(o)-28(d)-333(dr)1(ugic)28(h!)]TJ 27.879 -13.549 Td[(Sk)1(rzyc)-1(za\\252a)-433(go)-434(Nastk)56(a)-434(b)1(ior\\241c)-433(w)-434(ob)1(ron\\246)-433(Ja\\261)-1(k)56(a,)-433(b)-27(o)-28(\\242)-434(wielce)-434(sta\\252a)-434(o)-433(ni)1(e)-1(go;)]TJ -27.879 -13.549 Td[(g\\252up)1(a)28(w)-1(y)-337(on)-337(ju)1(\\261)-1(ci)-338(b)28(y)1(\\252,)-338(wie\\261)-338(s)-1(i\\246)-338(z)-338(n)1(ie)-1(go)-337(prze\\261)-1(miew)27(a\\252a,)-337(niez)-1(gr)1(aba,)-337(ale)-338(jedyn)1(ak)-338(n)1(a)]TJ 0 -13.549 Td[(dzies)-1(i)1(\\246)-1(ciu)-390(morgac)28(h,)-390(t)1(o)-390(dzie)-1(w)28(cz)-1(yn)1(a)-390(tak)-390(sobie)-390(rac)28(ho)28(w)28(a\\252)-1(a,)-389(\\273)-1(e)-390(Szyme)-1(k)-389(m)-1(i)1(a\\252)-390(t)27(y)1(lk)28(o)]TJ 0 -13.55 Td[(pi)1(\\246)-1(\\242)-418(morg\\363)28(w)-418(i)-417(to)-417(nie)-417(w)-1(i)1(adomo;)-418(czy)-418(m)28(u)-417(Dominik)28(o)28(w)28(a)-418(p)-27(oz)-1(w)28(oli)-417(si\\246)-418(\\273)-1(eni)1(\\242)-1(,)-417(.)-417(wi\\246)-1(c)]TJ 0 -13.549 Td[(znaro)28(wi\\252a)-304(c)27(h)1(\\252opak)56(a)-304(do)-304(siebie,)-304(i\\273)-304(c)-1(i)1(\\246)-1(giem)-304(\\252az)-1(i\\252)-304(za)-304(ni\\241,)-303(a)-304(trzyma\\252)-1(a)-304(w)-304(o)-28(d)1(w)27(o)-27(dzie)-305(n)1(a)]TJ 0 -13.549 Td[(ten)-333(pr)1(z)-1(yp)1(adek.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-389(ano)-389(teraz)-390(pr)1(z)-1(y)-389(ni)1(e)-1(j)1(,)-390(w)-389(o)-28(cz)-1(y)-389(p)-28(ogl)1(\\241da\\252)-389(i)-390(r)1(oz)-1(m)28(y\\261)-1(l)1(a\\252,)-390(co)-390(b)29(y)-390(tu)-389(r)1(z)-1(ec)]TJ -27.879 -13.549 Td[(taki)1(e)-1(go,)-363(gd)1(y)-363(ws)-1(ze)-1(d)1(\\252)-363(w)27(\\363)-55(jt,)-363(b)-27(o)-363(si\\246)-364(j)1(u\\273)-363(b)28(y\\252)-363(ze)-364(starym)-363(p)-27(ogo)-28(dzi\\252,)-363(a)-363(zaraz)-364(o)-27(d)-363(p)1(roga)]TJ 0 -13.55 Td[(za)27(w)28(o\\252a\\252:)]TJ 27.879 -13.549 Td[({)-281(P)28(o)28(w)-1(i)1(e)-1(stk)28(\\246)-282(w)27(ama)-281(przyn)1(ios)-1(\\252em)-1(,)-281(mac)-1(i)1(e)-282(s)-1(i\\246)-282(j)1(a)28(w)-1(i)1(\\242)-282(na)-281(s)-1(\\241d)1(y)-282(j)1(utr)1(o)-282(w)-281(p)-28(o\\252u)1(dni)1(e)-1(.)]TJ\nET\nendstream\nendobj\n898 0 obj <<\n/Type /Page\n/Contents 899 0 R\n/Resources 897 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n897 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n902 0 obj <<\n/Length 8719      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(279)]TJ -330.353 -35.866 Td[({)-333(Do)-334(zjazdu)-332(o)-334(kr)1(o)27(w)28(\\246?)]TJ 0 -13.549 Td[({)-333(T)83(ak)-333(to)-334(i)-333(stoi,)-333(o)-333(kro)28(w)28(\\246)-334(z)-1(e)-333(dw)28(ore)-1(m!)]TJ 0 -13.549 Td[({)-325(Ran)1(o)-325(trze)-1(b)1(a)-325(wyj)1(e)-1(c)28(ha\\242,)-325(b)-27(o)-325(do)-324(p)-28(o)28(wiatu)-324(k)56(a)28(w)27(a\\252)-325(d)1(rogi.)-324(Witek,)-324(id\\271)-325(zaraz)-325(do)]TJ -27.879 -13.549 Td[(Pi)1(e)-1(tr)1(k)55(a)-324(i)-325(n)1(as)-1(zyku)1(jcie)-1(,)-324(co)-325(p)-28(ot)1(rz)-1(a,)-324(a)-325(t)28(y)-324(p)-28(o)-55(jedzies)-1(z)-325(na)-324(\\261)-1(wiad)1(k)55(a.)-324(A)-325(Bartek)-324(u)28(w)-1(i)1(ado-)]TJ 0 -13.549 Td[(mion)28(y?)]TJ 27.879 -13.55 Td[({)-307(By\\252e)-1(m)-307(d)1(z)-1(isia)-55(j)-307(w)-307(k)56(ancelarii)-306(i)-307(la)-307(wsz)-1(y)1(s)-1(tki)1(c)27(h)-306(przywioz\\252e)-1(m)-307(p)-27(o)27(wies)-1(t)1(ki,)-307(k)1(up\\241)]TJ -27.879 -13.549 Td[(ca\\252)-1(\\241)-333(p)-27(o)-56(j)1(e)-1(d)1(z)-1(iec)-1(i)1(e)-1(,)-333(ale)-333(dw)28(\\363r)-333(w)-1(i)1(no)28(w)27(at)28(y)84(,)-333(to)-334(n)1(iec)27(h)-333(p\\252aci.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(oga\\242)-334(tam)-333(niewinien,)-333(t)28(yl)1(ac)27(hn)1(a)-333(kro)28(w)27(a!)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(n)1(a)-334(d)1(rug\\241)-333(stron\\246,)-333(mam)-334(z)-334(w)28(am)-1(i)-333(p)-27(ogada\\242!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(w)28(\\363)-56(j)1(t.)]TJ 0 -13.549 Td[(Pr)1(z)-1(e\\261)-1(l)1(i)-333(i)-334(siedzie)-1(l)1(i)-333(tak)-333(d\\252ugo,)-333(\\273e)-334(tam)-334(i)1(m)-334(k)28(olacj\\246)-334(J\\363zk)56(a)-334(p)-27(o)-28(d)1(a\\252a.)]TJ 0 -13.549 Td[(W)84(\\363)-56(jt)-397(go)-398(nama)28(wia\\252)-398(ju)1(\\273)-398(nie)-398(p)-27(o)-398(raz)-398(pi)1(e)-1(rwsz)-1(y)84(,)-398(b)29(y)-398(si\\246)-398(do)-398(n)1(ic)27(h)-397(pr)1(z)-1(y\\252\\241cz)-1(y)1(\\252)-1(,)-397(z)]TJ -27.879 -13.55 Td[(dw)28(orem)-339(n)1(ie)-338(z)-1(r)1(yw)27(a\\252,)-338(p)1(rze)-1(w\\252\\363)-28(cz)-1(y\\252)-338(spr)1(a)27(w)28(\\246)-1(,)-337(c)-1(ze)-1(k)56(a\\252,)-338(z)-338(K\\252\\246)-1(b)-27(em)-339(i)-338(d)1(ru)1(gim)-1(i)-337(raz)-1(em)-338(nie)]TJ 0 -13.549 Td[(sz)-1(ed\\252,)-417(i)-416(t)28(ym)-417(p)-28(o)-27(dobn)1(ie.)-417(St)1(ary)-417(d)1(ot)28(yc)27(h)1(c)-1(zas)-418(si\\246)-417(w)27(ah)1(a\\252,)-417(k)56(alku)1(lo)28(w)27(a\\252,)-416(nie)-417(o)-28(d)1(m)-1(a)28(wia\\252)]TJ 0 -13.549 Td[(ale)-346(na)-346(t\\246)-347(n)1(i)-346(na)-346(dr)1(ug\\241)-346(s)-1(tr)1(on\\246)-346(s)-1(i\\246)-346(nie)-346(prze)-1(c)28(h)28(yla\\252,)-346(b)-27(o)-346(b)28(y\\252)-346(s)-1(i)1(\\246)-347(mo)-28(c)-1(n)1(o)-346(z)-1(agn)1(ie)-1(w)28(a\\252,)-346(\\273)-1(e)]TJ 0 -13.549 Td[(go)-333(to)-334(wtedy)-333(d)1(z)-1(iedzic)-334(n)1(ie)-334(w)28(e)-1(zw)27(a\\252)-333(na)-333(n)1(arad\\246)-334(d)1(o)-333(m)-1(\\252yn)1(arza.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-333(za\\261)-1(,)-333(wid)1(z)-1(\\241c,)-333(\\273)-1(e)-334(n)1(ie)-334(p)-27(orad)1(z)-1(i,)-333(n)1(a)-334(ostatku)-333(j)1(u\\273)-333(na)-333(przyn)1(\\246)-1(t\\246)-333(p)-28(o)28(wiedzia\\252:)]TJ 0 -13.55 Td[({)-320(W)1(ie)-1(cie)-320(o)-319(t)27(y)1(m)-1(,)-319(jak)28(o)-319(ja,)-319(m\\252)-1(y)1(narz)-320(i)-319(k)28(o)28(w)27(al)-319(zrobil)1(i\\261)-1(m)28(y)-319(ugo)-28(d)1(\\246)-320(z)-1(e)-320(d)1(w)27(orem,)-320(\\273e)]TJ -27.879 -13.549 Td[(sam)-1(i)-333(w)28(e)-334(trze)-1(c)28(h)-333(z)-1(w)28(oz)-1(i)1(\\242)-334(b)-27(\\246)-1(d)1(z)-1(iem)27(y)-333(d)1(rze)-1(w)28(o)-334(n)1(a)-334(t)1(a)-1(r)1(tak,)-333(a)-333(p)-28(otem)-334(d)1(e)-1(ski)-333(do)-333(mias)-1(t)1(a.)]TJ 27.879 -13.549 Td[({)-468(No,)-467(ju)1(\\261)-1(ci,)-468(\\273e)-468(wie)-1(m,)-468(d)1(os)-1(y)1(\\242)-469(si\\246)-468(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-468(nap)-27(oms)-1(to)28(w)28(ali)-468(n)1(a)-468(w)28(as)-468(inn)1(i,)-468(\\273e)]TJ -27.879 -13.549 Td[(ni)1(k)28(om)27(u)-333(zarobi)1(\\242)-334(ni)1(e)-334(p)-28(ozw)28(alac)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-414(Du\\273o)-414(ta)-414(o)-415(t)1(o)-415(sto)-56(j)1(\\246)-1(,)-414(co)-414(p)28(yskuj)1(\\241,)-414(s)-1(zk)28(o)-28(d)1(a)-415(n)1(a)-414(to)-414(c)-1(zas)-1(u)1(,)-414(to)-414(w)27(am)-414(z)-1(a\\261)-414(c)27(hc\\246)]TJ -27.879 -13.55 Td[(p)-27(o)27(wiedzie\\242)-1(,)-333(co\\261)-1(m)28(y)-333(w)27(e)-334(tr)1(z)-1(ec)27(h)-333(u)1(redzili)-333({)-333(s)-1(\\252u)1(c)27(ha)-55(jcie)-334(j)1(e)-1(n)1(o;)-334(co)-333(p)-28(o)28(wiem)-1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-333(ino)-333(\\252ysn\\241\\252)-333(\\261)-1(lepi)1(am)-1(i)-333(i)-333(rozw)28(a\\273)-1(a\\252,)-333(jak)1(i)-334(to)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(p)-28(o)-27(dst\\246)-1(p)1(.)]TJ 0 -13.549 Td[({)-435(Uradzili)1(m)-436(p)1(rz)-1(y)1(pu)1(\\261)-1(ci\\242)-436(w)28(a)-56(j)1(u)-435(do)-435(s)-1(p)-27(\\363\\252ki!)-435(W)84(o\\271)-1(cie)-435(t)27(y)1(la,)-435(c)-1(o)-435(i)-435(m)28(y!)-435(Sp)1(rz)-1(\\246\\273a)-56(j)]TJ -27.879 -13.549 Td[(mac)-1(ie)-309(dob)1(ry)84(,)-309(par)1(ob)-28(ek)-309(si\\246)-309(jeno)-309(w)28(a\\252k)28(oni,)-308(a)-309(z)-1(arob)-27(ek)-309(p)-27(e)-1(wn)28(y)84(,)-309(p\\252ac\\241)-309(o)-28(d)-308(kub)1(ik)56(a.)-309(Nim)]TJ 0 -13.549 Td[(si\\246)-334(w)-334(p)-27(olu)-333(r)1(ob)-28(ot)28(y)-333(zac)-1(zn\\241,)-333(j)1(ak)-334(n)1(ic)-334(zarob)1(ic)-1(i)1(e)-334(z)-1(e)-333(s)-1(to)-333(ru)1(bli)1(.)]TJ 27.879 -13.55 Td[({)-333(Kiedy)-333(zac)-1(zynacie)-334(zw)27(\\363zk)28(\\246)-1(?)-333({)-333(rz)-1(ek\\252)-333(p)-28(o)-333(d)1(\\252)-1(u)1(gim)-334(n)1(am)27(y\\261le.)]TJ 0 -13.549 Td[({)-367(A)-368(c)28(ho)-28(\\242b)28(y)-367(o)-28(d)-366(jut)1(ra)-367(z)-1(acz)-1(yn)1(a\\242)-1(!)-367(Tn)1(\\241)-368(j)1(u\\273)-368(n)1(a)-367(bli\\273sz)-1(yc)28(h)-367(p)-28(or)1(\\246)-1(b)1(ac)27(h)1(,)-367(drogi)-367(te\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-1(zgorsz)-1(e,)-276(to)-275(p)-28(\\363k)1(i)-276(sann)1(a,)-276(si\\252a)-276(mo\\273)-1(n)1(a)-276(n)1(a)27(wie\\271)-1(\\242,)-276(m\\363)-55(j)-276(p)1(arob)-27(e)-1(k)-275(wyje\\273)-1(d)1(\\273)-1(a)-275(w)27(e)-276(cz)-1(w)28(ar-)]TJ 0 -13.549 Td[(tek.)]TJ 27.879 -13.549 Td[({)-333(Psiakr\\363t)1(k)55(a,)-333(\\273e)-1(b)28(y)1(m)-334(to)-333(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-333(j)1(ak)-333(w)-1(y)1(padn)1(ie)-334(ta)-333(mo)-56(j)1(a)-334(spr)1(a)27(w)28(a)-333(o)-334(k)1(ro)28(w)27(\\246.)]TJ 0 -13.55 Td[({)-361(Pr)1(z)-1(ysta\\253cie)-362(j)1(e)-1(n)1(o)-361(do)-361(nas,)-361(a)-361(dobr)1(z)-1(e)-361(w)-1(y)1(padn)1(ie,)-361(ju)1(\\273)-362(ja)-361(w)28(\\363)-56(jt)-361(to)-361(w)28(am)-1(a)-361(m\\363-)]TJ -27.879 -13.549 Td[(wi\\246...)]TJ 27.879 -13.549 Td[(St)1(ary)-453(d)1(\\252ugo)-453(d)1(e)-1(l)1(ib)-27(e)-1(ro)28(w)28(a\\252)-453(sp)-28(oziera)-56(j)1(\\241c)-453(piln)1(ie)-453(na)-452(w)27(\\363)-55(jta,)-452(kred\\241)-452(s)-1(e)-453(cos)-1(ik)-452(na)]TJ -27.879 -13.549 Td[(\\252a)28(w)-1(i)1(e)-334(pi)1(s)-1(a\\252,)-333(p)-28(o)-333(\\252bi)1(e)-334(s)-1(k)1(roba\\252,)-333(a\\273)-334(i)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(w)27(ozi\\252)-334(b)-27(\\246d\\246)-334(i)-333(sprz\\246gn\\246)-334(si\\246)-334(z)-334(w)28(ami.)]TJ 0 -13.549 Td[({)-349(Kiej)-349(tak,)-348(z)-1(a)-56(j)1(rzyjcie)-349(ju)1(tro)-349(p)-28(o)-349(s\\241dac)28(h)-349(do)-349(m\\252ynar)1(z)-1(a,)-349(a)-349(p)-27(oredzim)27(y)-349(j)1(e)-1(szc)-1(ze)-1(,)]TJ -27.879 -13.55 Td[(m)27(u)1(s)-1(z\\246)-334(j)1(u\\273)-334(b)1(ie)-1(\\273y\\242,)-333(b)-28(o)-333(mi)-333(k)28(o)27(w)28(al)-333(s)-1(an)1(ie)-334(p)-27(o)-28(d)1(ku)28(w)27(a.)]TJ 27.879 -13.549 Td[(Od)1(s)-1(ze)-1(d)1(\\252)-354(wielce)-354(urad)1(o)28(w)27(an)28(y)-353(m)28(y\\261)-1(l)1(\\241c)-1(,)-353(i\\273)-354(starego)-354(k)1(upi)1(\\252)-354(t\\241)-353(z)-1(w)28(\\363z)-1(k)56(\\241)-353(i)-354(n)1(a)-354(sw)28(o)-56(j\\241)]TJ -27.879 -13.549 Td[(stron\\246)-333(przyci\\241)-28(gn)1(\\241\\252)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-393(m\\252ynar)1(z)-394(m\\363g\\252)-394(si\\246)-393(z)-394(d)1(w)27(orem)-393(go)-28(dzi\\242,)-393(grun)29(t)28(y)-393(m)-1(i)1(a\\252)-394(n)1(ietab)-28(elo)28(w)27(e)-393(i)-393(do)]TJ -27.879 -13.549 Td[(lasu)-297(m)27(u)-296(b)28(y\\252o)-297(ni)1(c)-1(;)-297(w)28(\\363)-56(j)1(t)-297(te)-1(\\273)-297(s)-1(i)1(e)-1(dzia\\252)-297(na)-297(ziem)-1(i)1(a)-1(c)28(h)-297(p)-27(o)-28(du)1(c)27(h)1(o)27(wn)28(y)1(c)27(h,)-297(k)28(o)28(w)28(al)-297(to\\273)-298(samo,)]TJ 0 -13.55 Td[(ale)-370(n)1(ie)-370(on)1(,)-369(B)-1(ory)1(na!)-369(Rac)27(h)1(o)27(w)28(a\\252)-370(sobi)1(e)-1(,)-369(\\273e)-370(z)-1(w)28(\\363z)-1(k)56(a)-369(z)-1(w)28(\\363zk)55(\\241,)-369(spra)28(w)28(a)-370(za\\261)-370(o)-369(las)-370(osob-)]TJ 0 -13.549 Td[(no;)-385(n)1(im)-386(zgo)-28(d)1(a)-386(z)-385(dzie)-1(d)1(z)-1(i)1(c)-1(em)-386(n)1(as)-1(tan)1(ie)-386(alb)-27(o-li)-385(do)-385(w)28(o)-56(jn)29(y)-385(przyj)1(dzie)-1(,)-385(u)1(p\\252yn)1(ie)-386(d)1(o\\261)-1(\\242)]TJ\nET\nendstream\nendobj\n901 0 obj <<\n/Type /Page\n/Contents 902 0 R\n/Resources 900 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n900 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n905 0 obj <<\n/Length 6105      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(280)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(20.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cz)-1(asu..)1(.)-347(a)-347(co)-347(m)27(u)-346(s)-1(zk)28(o)-28(dzi)-347(tam)28(t)28(ym)-347(pr)1(z)-1(yt)28(wierdza\\242,)-347(g\\252up)1(ie)-1(go)-346(uda)28(w)28(a\\242)-1(,)-346(z)-348(n)1(imi)-347(trzy-)]TJ 0 -13.549 Td[(ma\\242)-1(,)-372(kiej)-372(i)-373(tak)-372(sw)27(o)-55(jego)-373(ni)1(e)-373(daru)1(je)-373(p)1(rz)-1(y)-372(sp)-28(osobie,)-372(a)-373(t)28(ymc)-1(zas)-1(em)-373(d)1(o)-1(b)1(rze)-373(z)-1(ar)1(obi\\242)]TJ 0 -13.549 Td[(te)-379(k)1(ilk)56(adzies)-1(i\\241t)-378(ru)1(bli)1(,)-378(k)28(onie)-379(i)-378(tak)-378(tr)1(z)-1(a)-378(\\273)-1(y)1(w)-1(i)1(\\242)-1(,)-378(i)-378(par)1(obk)56(a)-378(p\\252ac)-1(i)1(\\242)-1(!)-378({)-378(u\\261m)-1(i)1(e)-1(c)28(ha\\252)-378(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-333(sie)-1(b)1(ie,)-333(r\\246)-1(ce)-334(zac)-1(i)1(e)-1(ra\\252)-333(a)-333(m)-1(r)1(ucz)-1(a\\252)-333(z)-1(ad)1(o)27(w)28(olon)28(y)1(:)]TJ 27.879 -13.549 Td[({)-257(G\\252u)1(pie)-257(ju)1(c)27(h)28(y)-257(j)1(ak)-257(te)-258(b)1(aran)28(y)84(,)-257(m)27(y)1(\\261)-1(l\\241,)-256(\\273)-1(e)-257(m)-1(n)1(ie)-258(wywied\\252y)-257(w)-257(p)-27(ole)-258(k)1(ie)-1(j)-256(c)-1(i)1(o\\252)-1(ak)56(a,)]TJ -27.879 -13.55 Td[(g\\252up)1(ie!)]TJ 27.879 -13.549 Td[(W)84(r\\363)-28(ci\\252)-334(d)1(o)-333(k)28(obiet)-333(w)-1(i)1(e)-1(lce)-334(rozrad)1(o)27(w)28(an)28(y)84(,)-333(Jagusi)-333(w)-334(izbi)1(e)-334(nie)-333(b)28(y\\252o.)]TJ 0 -13.549 Td[({)-333(Gdzie\\273)-334(to)-333(Jagusia?)]TJ 0 -13.549 Td[({)-333(\\221win)1(iom)-334(p)-27(onie\\261li)-333(\\273)-1(ar)1(c)-1(ie!)-333({)-334(ob)-55(j)1(a\\261)-1(n)1(i\\252a)-334(Nastk)56(a.)]TJ 0 -13.549 Td[(P)28(ogad)1(yw)27(a\\252)-307(w)28(e)-1(so\\252o,)-307(\\273)-1(ar)1(to)28(w)27(a\\252)-307(z)-308(Ja\\261kiem,)-307(to)-307(z)-308(Domin)1(ik)28(o)28(w)27(\\241,)-307(a)-307(coraz)-308(n)1(ies)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(k)28(o)-56(j)1(ni)1(e)-1(j)-436(c)-1(ze)-1(k)56(a\\252)-437(n)1(a)-437(\\273)-1(on)1(\\246)-1(,)-437(b)-27(o)-437(j)1(ak)28(o\\261)-438(d)1(\\252ugo)-437(n)1(ie)-437(przyc)27(h)1(o)-28(dzi\\252a,)-437(n)1(ic)-437(nie)-437(d)1(a\\252)-437(z)-1(n)1(a\\242)-438(p)-27(o)]TJ 0 -13.55 Td[(sobie)-300(i)-300(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-300(w)-301(p)-27(o)-28(dw)28(\\363rze)-1(.)-299(C)-1(h)1(\\252opaki)-300(w)-300(sto)-28(dole)-300(na)-300(kl)1(e)-1(p)1(is)-1(k)1(u)-300(s)-1(zyk)28(o)28(w)28(ali)-300(s)-1(an)1(ie)-301(n)1(a)]TJ 0 -13.549 Td[(ju)1(trze)-1(j)1(s)-1(z\\241)-308(jazd\\246,)-308(b)-27(o)-308(trza)-308(b)28(y\\252o)-308(n)1(a)-308(p\\252ozy)-308(w\\252)-1(o\\273y\\242)-308(p)-28(\\363\\252k)28(osz)-1(k)1(i)-308(i)-308(umo)-28(co)28(w)27(a\\242.)-308(Ob)-27(e)-1(j)1(rza\\252,)]TJ 0 -13.549 Td[(p)-27(ogada\\252,)-353(za)-56(j)1(rza\\252)-353(do)-353(k)28(on)1(i,)-353(za)-56(j)1(rz)-1(a\\252)-353(d)1(o)-353(\\261)-1(wi\\253)1(,)-353(to)-353(d)1(o)-353(ob)-27(ory)-353({)-353(Jagn)29(y)-353(ni)1(gdzie)-354(n)1(ie)-353(b)28(y-)]TJ 0 -13.549 Td[(\\252o.)-343(Pr)1(z)-1(ystan\\241\\252)-343(p)-27(o)-28(d)-343(ok)56(ap)-28(em)-344(w)-343(c)-1(i)1(e)-1(n)1(iu)-343(ni)1(e)-1(co)-344(i)-343(cz)-1(ek)56(a\\252.)-343(No)-28(c)-344(b)28(y\\252a)-343(cie)-1(mna,)-343(wiat)1(r)-343(s)-1(i\\246)]TJ 0 -13.549 Td[(zryw)28(a\\252)-354(z)-1(i)1(m)-1(n)28(y)-353(i)-353(s)-1(zumia\\252,)-354(wielki)1(e)-355(ci\\246\\273)-1(k)1(ie)-354(c)27(hm)28(ur)1(y)-354(gn)1(a\\252)-1(y)-353(p)-27(o)-354(ni)1(e)-1(b)1(ie)-354(s)-1(tad)1(am)-1(i)1(,)-354(\\261nieg)]TJ 0 -13.55 Td[(pr)1(\\363s)-1(zy\\252)-333(c)27(h)28(wilami.)]TJ 27.879 -13.549 Td[(Mo\\273e)-348(w)-348(pacie)-1(r)1(z)-349(ab)-27(o)-348(i)-347(dw)28(a)-348(c)-1(ie\\253)-347(jaki)1(\\261)-349(zam)-1(a)-55(jacz)-1(y)1(\\252)-348(w)-348(przej\\261c)-1(iu)-347(o)-28(d)-347(prze\\252)-1(azu)]TJ -27.879 -13.549 Td[({)-333(s)-1(tar)1(y)-333(s)-1(i\\246)-333(s)-1(zybk)28(o)-333(wys)-1(u)1(n\\241\\252,)-333(p)1(rz)-1(y)1(s)-1(k)28(o)-28(czy\\252)-334(i)-333(sz)-1(epn)1(\\241\\252)-334(ze)-334(w\\261)-1(ciek\\252o\\261)-1(ci\\241:)]TJ 27.879 -13.549 Td[({)-333(Gdzie\\273)-1(e\\261)-334(to)-333(b)28(y\\252a,)-333(co?)]TJ 0 -13.549 Td[(Ale)-334(J)1(agna,)-333(c)27(h)1(o)-28(\\242)-334(si\\246)-334(wystrasz)-1(y\\252a)-333(z)-1(r)1(az)-1(u)1(,)-333(o)-28(dr)1(z)-1(ek\\252a)-333(ur\\241)-27(g)-1(l)1(iwie)-1(:)]TJ 0 -13.55 Td[({)-333(Obacz)-1(cie,)-333(\\252ac)-1(n)1(o)-334(za)-334(wiatr)1(e)-1(m)-333(tra\\014)1(c)-1(ie!)-333({)-334(i)-333(p)-27(osz)-1(\\252a)-333(do)-333(c)27(ha\\252u)1(p)28(y)84(.)]TJ 0 -13.549 Td[(Nic)-293(j)1(u\\273)-293(o)-293(t)28(y)1(m)-293(w)-293(dom)28(u)-292(nie)-293(zac)-1(zyna\\252,)-292(a)-293(gd)1(y)-293(si\\246)-293(sz)-1(y)1(k)28(o)27(w)28(ali)-292(do)-292(s)-1(p)1(ania,)-292(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzia\\252)-333(dob)1(rotli)1(w)-1(i)1(e)-334(i)-333(c)-1(a\\252kiem)-334(mi\\246tk)28(o)-333(nie)-334(p)-27(o)-28(d)1(nosz)-1(\\241c)-334(o)-27(c)-1(z\\363)28(w)-334(na)-333(Jagn)1(\\246)-1(:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(c)-1(esz)-334(to)-333(jut)1(ro)-333(bie\\273)-1(y\\242)-333(do)-333(K\\252\\246)-1(b)-27(\\363)28(w?)]TJ 0 -13.549 Td[({)-333(Kiej)-333(nie)-333(bron)1(icie)-1(,)-333(to)-333(z)-334(J\\363zk)56(\\241)-334(p)-27(\\363)-56(j)1(dziem)27(y)84(.)]TJ 0 -13.55 Td[({)-408(Chce)-1(sz)-1(,)-407(to)-408(c)-1(i\\246)-408(ni)1(e)-409(wstrzym)27(u)1(j\\246...)-408(ale)-408(do)-408(s\\241du)-407(p)-28(o)-55(jad)1(\\246)-1(,)-407(dom)-408(z)-1(ostanie)-408(na)]TJ -27.879 -13.549 Td[(b)-27(os)-1(ki)1(e)-1(j)-333(O)1(patrzno\\261c)-1(i)1(,)-333(le)-1(p)1(iej)-333(b)28(y\\261)-334(w)-333(c)27(h)1(a\\252)-1(u)1(pi)1(e)-334(os)-1(ta\\252a..)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(n)1(ie)-334(wr\\363)-27(c)-1(icie)-334(d)1(o)-334(zmroku)1(?)-1(.)1(..)]TJ 0 -13.549 Td[({)-348(Wid)1(z)-1(i)-348(mi)-348(si\\246)-1(,)-347(\\273)-1(e)-349(c)28(h)28(yb)1(a)-348(dopi)1(e)-1(ro)-348(p)-27(\\363\\271no)-348(w)-349(n)1(o)-28(c...)-348(n)1(a)-349(\\261ni)1(e)-1(g)-348(si\\246)-349(ma,)-348(dal)1(e)-1(k)28(o,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(p)1(ie)-1(sz)-1(\\246...)-333(ale)-333(kiej)-333(s)-1(i)1(\\246)-334(nap)1(ie)-1(r)1(as)-1(z,)-333(id\\271,)-333(ni)1(e)-334(wz)-1(br)1(aniam..)1(.)]TJ\nET\nendstream\nendobj\n904 0 obj <<\n/Type /Page\n/Contents 905 0 R\n/Resources 903 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n903 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n908 0 obj <<\n/Length 7433      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(21)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ju)1(\\273)-335(o)-28(d)-334(w)27(cze)-1(snego)-335(r)1(ana)-334(m)-1(ia\\252o)-334(si\\246)-335(na)-334(ku)1(rz)-1(a)28(w)28(\\246)-1(;)-334(d)1(z)-1(ie\\253)-334(nasta\\252)-335(c)28(hm)28(urn)29(y)83(,)-334(wietrzn)28(y)-334(i)]TJ 0 -13.549 Td[(wielc)-1(e)-314(sw)27(arl)1(iwy)83(,)-313(\\261)-1(n)1(ie)-1(g)-313(pr\\363sz)-1(y)1(\\252)-314(dr)1(obn)28(y)84(,)-314(suc)28(h)28(y)-314(a)-314(ostry)-313(kiej)-314(k)56(asz)-1(a)-314(l)1(e)-1(d)1(w)-1(i)1(e)-315(p)1(rze)-1(tar)1(ta)]TJ 0 -13.549 Td[(w)-412(\\273arn)1(ac)27(h,)-411(p)-27(o)-412(r)1(\\363)27(wn)1(o)-412(za\\261)-412(z)-1(r)1(yw)27(a\\252)-411(s)-1(i\\246)-411(c)-1(oraz)-412(mo)-28(cni)1(e)-1(j)1(s)-1(zy)-412(wiatr)1(,)-411(h)28(ukl)1(iwy)-412(sielni)1(e)-412(i)]TJ 0 -13.549 Td[(k)28(o\\252uj)1(\\241c)-1(y)-261(n)1(ie)-1(sp)-27(o)-28(dzian)28(ymi)-261(n)1(a)27(wrot)1(am)-1(i,)-261(\\273e)-262(j)1(ak)28(o)-262(ten)-261(p)1(ijan)1(ic)-1(a)-261(tacz)-1(a\\252)-261(s)-1(i)1(\\246)-262(na)-261(ws)-1(zystkie)]TJ 0 -13.55 Td[(stron)28(y)84(,)-333(s)-1(k)28(o)28(wyc)-1(za\\252,)-333(pr)1(z)-1(egw)-1(i)1(z)-1(d)1(yw)27(a\\252)-333(a)-333(\\261)-1(n)1(ie)-1(gami)-333(mie)-1(ci\\252)-333(z)-1(ap)1(alc)-1(zywie.)]TJ 27.879 -13.549 Td[(Nie)-322(bacz)-1(\\241c)-322(j)1(e)-1(d)1(nak)-322(n)1(a)-322(p)-27(ogo)-28(d\\246,)-322(zaraz)-322(z)-323(p)1(ie)-1(r)1(ws)-1(ze)-1(go)-322(p)-27(o\\252ud)1(nia)-321(Hank)56(a)-322(z)-1(e)-322(sta-)]TJ -27.879 -13.549 Td[(ry)1(m)-334(Bylic\\241,)-333(a)-334(z)-334(n)1(imi)-333(jes)-1(zc)-1(ze)-334(p)1(ar\\246)-334(k)28(omorni)1(c)-1(,)-333(wyb)1(rali)-333(si\\246)-334(p)-27(o)-334(susz)-334(d)1(o)-334(lasu.)]TJ 27.879 -13.549 Td[(Cz)-1(as)-289(b)28(y)1(\\252)-289(nieop)-28(o)28(wiedziani)1(e)-290(p)1(rzykr)1(y;)-289(wiatr)-288(t\\252uk\\252)-288(s)-1(i\\246)-289(p)-27(o)-289(p)-27(olac)27(h)1(,)-289(cie)-1(p)1(a\\252)-289(dr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(winami,)-467(h)28(u)1(rk)28(ota\\252)-467(p)-28(o)-467(ws)-1(i)1(,)-467(a)-468(co)-468(t)1(ro)-28(c)27(h)1(\\246)-468(p)-27(o)-28(dr)1(yw)27(a\\252)-467(tu)1(m)-1(an)28(y)-467(\\261ni)1(e)-1(g\\363)28(w,)-467(z)-1(akr)1(\\246)-1(ca\\252)-468(z)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(wiste)-1(m)-342(i)-342(w)-1(y)1(trze)-1(p)28(y)1(w)27(a\\252)-342(je)-342(nad)-342(\\261w)-1(i)1(ate)-1(m)-342(kieb)28(y)-342(te)-343(c)28(h)28(ust)28(y)-342(p)-28(e\\252ne)-343(b)1(ia\\252yc)28(h,)-342(a)-342(k\\252u-)]TJ 0 -13.55 Td[(j\\241cyc)28(h)-333(pa\\271dzie)-1(r)1(z)-1(y)84(,)-333(\\273)-1(e)-334(wsz)-1(y)1(s)-1(tk)28(o)-333(topi)1(\\252o)-334(si\\246)-334(w)-333(nierozp)-28(oznan)1(e)-1(j)-333(m\\241t)28(wie)-334(i)-333(\\261w)-1(i)1(s)-1(tac)28(h.)]TJ 27.879 -13.549 Td[(Zaraz)-282(za)-281(ws)-1(i\\241)-281(p)-27(os)-1(zli)-281(g\\246)-1(siego)-282(p)1(rzywian)28(ymi)-281(mie)-1(d)1(z)-1(ami)-281(ku)-281(b)-27(orom)-281(ledwie)-282(cz)-1(u)1(-)]TJ -27.879 -13.549 Td[(bami)-333(widn)29(ym)-334(w)-333(kur)1(z)-1(a)28(wie)-1(,)-333(a)-333(jesz)-1(cz)-1(e)-334(d)1(alekim.)]TJ 27.879 -13.549 Td[(Wiat)1(r)-322(wz)-1(maga\\252)-322(si\\246)-323(j)1(e)-1(szc)-1(ze)-1(,)-321(bi\\252)-322(ze)-323(wsz)-1(ystki)1(c)27(h)-322(stron)1(,)-322(ta\\253)1(c)-1(o)28(w)28(a\\252,)-322(kr\\246ci\\252)-322(i)-322(tak)]TJ -27.879 -13.549 Td[(w)-313(n)1(ic)27(h)-311(s)-1(iepa\\252,)-312(\\273e)-313(ledwie)-313(mogli)-312(si\\246)-313(u)1(trzym)-1(a\\242)-312(na)-312(nogac)28(h,)-312(pr)1(z)-1(ygi)1(nali)-312(si\\246)-313(in)1(o)-312(barze)-1(j)]TJ 0 -13.55 Td[(ku)-452(z)-1(iemi,)-453(a)-453(on)-452(z)-1(ab)1(iega\\252)-453(z)-454(p)1(rzo)-28(du)1(,)-453(dar)1(\\252)-453(s)-1(u)1(c)27(h)28(y)-453(\\261ni)1(e)-1(g)-453(p)-27(omie)-1(szan)28(y)-453(z)-453(piaskiem)-453(i)]TJ 0 -13.549 Td[(pr)1(a\\273)-1(y)1(\\252)-334(w)-333(t)27(w)28(arze)-1(,)-333(a\\273)-334(o)-27(c)-1(zy)-333(trza)-334(b)29(y\\252o)-334(p)1(rzys)-1(\\252an)1(ia\\242)-1(.)]TJ 27.879 -13.549 Td[(Szli)-344(w)-345(milcz)-1(eniu)1(,)-344(jak)28(o)-345(\\273e)-345(wiatr)-344(z)-1(at)28(yk)56(a\\252)-345(i)-344(rw)28(a\\252)-345(s\\252o)27(w)28(a,)-344(a)-345(p)-27(os)-1(t\\246ku)1(j\\241c)-345(ni)1(e)-1(co)-345(i)]TJ -27.879 -13.549 Td[(r\\246c)-1(e)-280(rozc)-1(i)1(e)-1(r)1(a)-56(j\\241c)-280(\\261niegiem)-1(,)-280(b)-27(o)-280(zi\\241b)-280(b)29(y\\252)-280(pr)1(z)-1(enik)1(liwy)-280(i)-280(n)1(a)-280(w)-1(skr)1(o\\261)-281(li)1(c)27(h\\241)-280(p)1(rzy)28(o)-28(dziew)27(\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ejmo)28(w)27(a\\252,)-372(i)-373(z)-1(asp)28(y)-372(s)-1(i\\246)-373(cz)-1(yn)1(i\\252y)-373(o)-27(d)-373(k)56(amionek,)-373(t)1(o)-373(o)-28(d)-372(drze)-1(w)-373(i)-372(grobl)1(am)-1(i)-372(z)-1(ast\\246p)-28(o-)]TJ 0 -13.55 Td[(w)28(a\\252)-1(y)84(,)-333(\\273)-1(e)-333(k)55(a\\273d\\241)-333(trza)-333(b)28(y\\252o)-333(w)-1(y)1(m)-1(i)1(ja\\242)-334(n)1(ak\\252ada)-55(j\\241c)-334(n)1(ie)-1(ma\\252o)-333(drogi)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-338(s)-1(z\\252a)-338(na)-338(pr)1(z)-1(edzie)-1(,)-338(cz)-1(\\246sto)-339(si\\246)-339(ob)1(z)-1(i)1(e)-1(ra)-55(j\\241c)-338(z)-1(a)-338(o)-56(j)1(c)-1(em)-1(,)-338(k)1(t\\363ren)-338(s)-1(k)1(ulon)28(y)84(,)-338(z)]TJ -27.879 -13.549 Td[(okr)1(\\246)-1(con\\241)-392(w)-393(zapask)28(\\246)-393(g\\252o)28(w)28(\\241,)-392(w)-393(starym)-392(k)28(o\\273)-1(u)1(c)27(h)28(u)-391(An)28(tk)28(o)28(wym)-1(,)-391(prze)-1(p)1(as)-1(an)29(y)-392(p)-28(o)28(wr\\363-)]TJ 0 -13.549 Td[(s\\252)-1(em,)-306(wl\\363k\\252)-305(s)-1(i\\246)-306(n)1(a)-306(k)28(o\\253cu,)-305(ledwie)-306(s)-1(i)1(\\246)-307(p)-27(oru)1(c)27(h)1(a)-56(j)1(\\241c)-307(p)-27(o)-28(d)-305(wiatr;)-305(zat)27(y)1(k)55(a\\252o)-305(go)-306(c)-1(i)1(\\246)-1(giem,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\242)-261(m)27(usia\\252)-260(c)-1(o)-260(tro)-28(c)28(h\\246;)-261(b)28(y)-260(wytc)28(hn\\241\\242)-260(i)-261(ob)-27(e)-1(t)1(rz)-1(e\\242)-261(za\\252)-1(za)28(wione)-261(o)-28(d)-260(wiatr)1(u)-260(o)-28(cz)-1(y)84(,)]TJ 0 -13.55 Td[(p)-27(ote)-1(m)-333(z)-1(a\\261)-334(w)-333(dyr)1(dy)-333(\\261pies)-1(zy\\252)-333(c)-1(i)1(c)27(ho)-333(p)-27(o)-56(j)1(\\246)-1(ku)1(j\\241c:)]TJ 27.879 -13.549 Td[({)-333(Id\\246)-334(Han)28(u)1(\\261)-1(,)-333(i)1(d\\246)-1(.)1(..)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(nie)-333(os)-1(tan)1(\\246)-1(!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-311(w)28(ola\\252b)28(y)-311(p)-27(oz)-1(osta\\242)-311(na)-311(pr)1(z)-1(y)1(piec)27(ku)1(,)-311(w)27(ol)1(a\\252,)-311(ale)-311(c)-1(\\363\\273)-311(kiej)-311(ona,)-310(biedacz)-1(k)56(a,)]TJ -27.879 -13.549 Td[(sz)-1(\\252a,)-292(\\261)-1(mia\\252b)28(y)-292(to)-292(os)-1(ta\\242!)-292(a)-293(i)-292(w)-293(c)28(ha\\252up)1(ie)-293(zi\\241b)-292(ni)1(e)-293(do)-292(w)-1(y)1(trzymania,)-292(dziec)-1(i)-292(skwie)-1(r)1(c)-1(z\\241)]TJ 0 -13.549 Td[(z)-329(zimna,)-328(w)28(arzy)-328(ju)1(\\273)-329(n)1(ie)-329(b)28(y)1(\\252o)-329(p)1(rzy)-328(c)-1(zym)-328(z)-1(r)1(obi\\242,)-328(\\273)-1(e)-328(jeno)-328(suc)27(h)1(e)-1(go)-328(c)28(hleba)-328(p)-27(o)-56(j)1(e)-1(d)1(li..)1(.)]TJ 0 -13.55 Td[(a)-307(tu)-307(zimn)28(y)-307(wiater)-307(tak)-307(p)1(rze)-1(b)1(ie)-1(r)1(a)-307(p)-28(o)-307(k)28(o\\261c)-1(iac)28(h,)-307(k)1(ie)-1(b)29(y)-307(t)28(ym)-1(i)-306(lo)-28(do)28(wymi)-307(pal)1(ic)-1(ami..)1(.)-307({)]TJ 0 -13.549 Td[(pr)1(z)-1(em)27(y)1(\\261)-1(li)1(w)27(a\\252)-333(dyr)1(da)-56(j)1(\\241c)-334(za)-334(n)1(imi.)]TJ 27.879 -13.549 Td[(P)28(ewnie,)-333(\\273)-1(e)-334(k)1(ie)-1(d)1(y)-333(m)27(u)1(s)-334(u\\252ap)1(i)-334(za)-333(\\252e)-1(b)1(,)-334(n)1(ie)-334(wy\\261lizgniesz)-334(s)-1(i)1(\\246)-1(,)-333(cz)-1(\\252o)28(wie)-1(k)1(u,)-333(ni)1(e)-1(!)]TJ 330.353 -29.888 Td[(281)]TJ\nET\nendstream\nendobj\n907 0 obj <<\n/Type /Page\n/Contents 908 0 R\n/Resources 906 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n906 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n911 0 obj <<\n/Length 9180      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(282)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(T)83(o)-245(Han)28(usia)-245(jeno)-246(zasie)-1(k)56(a\\252a)-246(z\\246b)28(y)-246(i)-245(sz)-1(\\252a)-245(ano)-245(p)-28(o)-245(drzew)27(o)-245(raz)-1(em)-246(z)-246(k)28(omorn)1(ic)-1(ami.)]TJ -27.879 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-320(n)1(a)-320(to)-319(ju)1(\\273)-320(z)-1(es)-1(z\\252o,)-320(\\273e)-320(w)-320(p)1(arz)-1(e)-320(z)-320(F)1(ilip)1(k)56(\\241)-1(,)-319(z)-320(Kr)1(ak)55(al)1(in\\241,)-319(ze)-321(star\\241)-319(Kob)1(uso)27(w)28(\\241)]TJ 0 -13.549 Td[(i)-333(Magd)1(\\241)-334(K)1(oz)-1(\\252o)28(w)27(\\241,)-333(z)-334(t)28(ymi)-333(na)-55(jwi\\246ksz)-1(ymi)-333(bi)1(e)-1(d)1(otam)-1(i)-333(w)-333(jeden)-333(rz\\241d,)-333(raze)-1(m.)]TJ 27.879 -13.549 Td[(Wzdyc)28(ha\\252a)-438(jeno)-438(ci\\246\\273)-1(k)28(o,)-438(zac)-1(i)1(na\\252a)-438(z)-1(\\246b)28(y)84(,)-438(a)-438(s)-1(z\\252a,)-438(i)-438(to)-438(ni)1(e)-439(p)-27(o)-439(r)1(az)-439(p)1(ie)-1(r)1(ws)-1(zy)83(,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-319(A)-319(niec)27(h)28(t)1(a!)-319(A)-320(n)1(iec)27(h)28(ta!)-319({)-319(sz)-1(epta\\252a)-319(t)28(w)28(ardo,)-319(mo)-28(c)-319(w)-320(sobi)1(e)-320(wz)-1(b)1(ie)-1(r)1(a)-56(j)1(\\241c)-320(i)-319(cie)-1(r)1(-)]TJ -27.879 -13.549 Td[(pl)1(iw)27(o\\261\\242.)]TJ 27.879 -13.549 Td[(T)83(rzeba,)-465(to)-465(c)28(ho)-28(d)1(z)-1(i)-464(p)-28(o)-465(d)1(rze)-1(w)28(o,)-465(dy)1(guj)1(e)-466(n)1(a)-465(plec)-1(ac)28(h,)-465(w)-465(j)1(e)-1(d)1(e)-1(n)-464(rz\\241d)-465(z)-465(dzia-)]TJ -27.879 -13.549 Td[(d\\363)28(wk)56(am)-1(i)1(,)-429(jak)-428(Fili)1(pk)56(a,)-429(sta)28(w)27(a,)-429(a)-428(p\\252ak)56(a\\242)-430(n)1(ie)-429(b)-28(\\246dzie)-429(ni)-429(\\273ali\\242)-429(si\\246)-430(n)1(ie)-429(b)-28(\\246dzie,)-429(n)1(i)-429(o)]TJ 0 -13.549 Td[(p)-27(oratu)1(nek)-334(zabi)1(e)-1(ga\\242.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(i)1(e)-336(to)-335(i)-335(p)-28(\\363)-55(jd)1(z)-1(ie?)-335(Dadz\\241)-336(c)28(h)28(yb)1(a,)-335(ale)-336(to)-335(j)1(akie)-336(s\\252o)28(w)27(o)-335(lito\\261c)-1(i)1(w)27(e,)-335(o)-28(d)-335(kt)1(\\363re)-1(go)]TJ -27.879 -13.55 Td[(dziw)-318(k)1(re)-1(w)-317(nie)-318(tr)1(y\\261)-1(n)1(ie)-318(z)-318(s)-1(erca...)-317(P)28(an)-317(Je)-1(zus)-318(j)1(\\241)-318(do\\261wiadcza,)-318(kr)1(z)-1(y\\273e)-318(z)-1(sy\\252a,)-317(to)-318(mo\\273)-1(e)]TJ 0 -13.549 Td[(kiedy)1(\\261)-481(i)-481(wyn)1(agro)-28(d)1(z)-1(i)1(...)-480(A)-480(niec)27(h)28(ta,)-480(p)1(rz)-1(etrzyma)-481(wsz)-1(ystk)28(o,)-480(ni)1(e)-481(p)-28(omarn)28(u)1(je)-481(si\\246)-481(z)]TJ 0 -13.549 Td[(dzie\\242)-1(mi)-333(i)-333(r\\241k)-333(ni)1(e)-334(opu)1(\\261)-1(ci,)-333(a)-333(na)-333(p)-28(ol)1(ito)28(w)27(an)1(ie)-334(lu)1(dzkie)-334(n)1(i)-333(p)-28(o\\261mie)-1(wisk)28(o)-333(s)-1(i\\246)-333(nie)-334(d)1(a!)-333(.)]TJ 27.879 -13.549 Td[(Wycierp)1(ia\\252a)-399(s)-1(i)1(\\246)-400(on)1(a)-399(ostatnimi)-398(c)-1(zas)-1(y)-398(t)28(yla,)-399(\\273e)-399(k)55(a\\273da)-398(k)28(os)-1(tec)-1(zk)56(a)-399(trz\\246)-1(s\\252a)-399(si\\246)]TJ -27.879 -13.549 Td[(w)-331(ni)1(e)-1(j)-330(i)-331(\\252ama\\252a)-331(z)-332(osobn)1(a)-331(z)-331(te)-1(go)-330(b)-28(oleni)1(a)-331({)-331(wyc)-1(i)1(e)-1(r)1(pia\\252a!)-331(Ni)1(e)-332(t)1(o)-1(,)-330(\\273)-1(e)-331(b)1(ie)-1(d)1(a)-331(i)-331(p)-27(oni)1(e)-1(-)]TJ 0 -13.55 Td[(wierk)56(a,)-376(\\273e)-376(c)-1(z\\246)-1(sto)-376(g\\252\\363)-27(d,)-375(i\\273)-376(ledwie)-376(dziec)-1(iom)-376(starczy\\252o,)-376(n)1(ie)-1(,)-375(\\273e)-376(An)28(te)-1(k)-375(w)-376(k)56(arcz)-1(mie)]TJ 0 -13.549 Td[(pr)1(z)-1(epi)1(ja\\252)-325(z)-325(k)55(amratami,)-324(o)-325(dom)-325(ni)1(e)-326(sto)-56(j)1(a\\252,)-325(a)-325(kiej)-325(t)1(e)-1(n)-324(pies)-326(zwlec)-1(zon)28(y)-325(c)27(h)29(y\\252kiem)-325(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-398(c)27(h)1(a\\252)-1(u)1(p)28(y)-398(w)-1(su)28(w)28(a)-399(i)-398(na)-398(jakie)-399(b)1(\\241d\\271)-399(s\\252o)27(w)28(o)-399(n)1(ap)-28(omkn)1(ie)-1(n)1(ia)-399(za)-399(ki)1(j)-398(c)27(h)28(wyta)-398({)-399(b)28(yw)28(a)]TJ 0 -13.549 Td[(to)-357(b)-28(o)28(wiem)-358(nierzadk)28(o)-357(i)-358(gd)1(z)-1(ie)-358(i)1(nd)1(z)-1(iej,)-357(mo\\273)-1(n)1(a)-358(b)28(y)-357(o)-28(d)1(pu\\261ci\\242)-1(;)-357(ot,)-357(pr)1(z)-1(ysz)-1(\\252a)-357(na)-357(niego)]TJ 0 -13.549 Td[(tak)56(a)-405(z)-1(\\252a)-405(go)-27(dzina,)-404(to)-405(ab)28(y)-405(j)1(e)-1(n)1(o)-405(c)-1(ierp)1(liwie)-405(przec)-1(ze)-1(k)56(a\\242,)-405(pr)1(z)-1(ej\\261\\242)-406(j)1(e)-1(sz)-1(cz)-1(e)-405(mo\\273)-1(e.)-405(Ale)]TJ 0 -13.55 Td[(tego)-334(p)1(rze)-1(n)1(ie)-1(wierst)28(w)27(a)-333(ni)1(e)-334(m)-1(og\\252a)-333(m)27(u)-332(z)-1(ap)-27(om)-1(n)1(ie\\242)-1(,)-333(pr)1(z)-1(eb)-27(ole)-1(\\242)-333(i)-334(d)1(aro)28(w)28(a\\242)-1(!)]TJ 27.879 -13.549 Td[(Nie,)-479(nie)-479(p)-28(or)1(e)-1(d)1(z)-1(i\\252a.)-479(Jak)-479(to,)-479(ma)-480(\\273on\\246)-479(i)-479(dzie)-1(ci,)-479(a)-479(o)-480(wsz)-1(ystki)1(m)-480(z)-1(ap)-27(omina)]TJ -27.879 -13.549 Td[(la)-366(tam)28(te)-1(j)1(.)-366(T)83(o)-366(j\\241)-366(k)1(ie)-1(b)29(y)-366(rozpalon)28(y)1(m)-1(i)-366(ob)-27(c\\246)-1(gami)-366(\\261c)-1(isk)56(a\\252o)-367(za)-366(se)-1(rce)-1(,)-365(przegryza\\252)-1(o)-366(n)1(a)]TJ 0 -13.549 Td[(ws)-1(k)1(ro\\261)-334(i)-333(rozrasta\\252o)-334(si\\246)-334(w)-333(niej)-333(p)1(ie)-1(k)56(\\241c\\241,)-333(nieust\\246)-1(p)1(liw)28(\\241)-334(p)1(ami\\246)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-333(Za)-334(Jagn)1(\\241)-334(l)1(ata,)-333(j\\241)-333(m)-1(i)1(\\252)-1(u)1(je,)-333(pr)1(z)-1(ez)-334(ni)1(\\241)-334(to)-333(ws)-1(zystk)28(o!)]TJ 0 -13.55 Td[(Zda\\252o)-236(si\\246)-237(j)1(e)-1(j)1(,)-236(\\273e)-237(z\\252y)-236(idzie)-236(p)-28(ob)-27(ok,)-236(a)-236(w)28(c)-1(i)1(\\241\\273)-237(sz)-1(epta)-236(d)1(o)-236(uc)28(ha)-236(te)-236(s)-1(tr)1(as)-1(zne)-236(przyp)-27(o-)]TJ -27.879 -13.549 Td[(mink)1(i,)-284(n)1(ie)-284(ucie)-1(c)-284(o)-28(d)-283(n)1(ic)27(h)-283(ni)1(e)-285(zap)-27(om)-1(n)1(ie)-1(\\242,)-284(n)1(ie!)-284(B\\363l)-284(p)-27(oni)1(e)-1(wierki)-283(du)1(s)-1(znej,)-283(p)-28(on)1(i\\273)-1(eni)1(a,)]TJ 0 -13.549 Td[(ws)-1(t)28(yd)1(,)-442(zaz)-1(d)1(ro\\261\\242)-1(,)-441(p)-28(oms)-1(t)1(a)-442(i)-442(te)-442(ws)-1(zys)-1(t)1(kie)-442(j\\246dze)-443(n)1(ies)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(a)-442(ws)-1(ad)1(z)-1(a\\252y)-442(k)28(ol)1(c)-1(zas)-1(te)]TJ 0 -13.549 Td[(\\252b)28(y)-364(do)-364(jej)-365(se)-1(r)1(c)-1(a)-364(i)-365(tak)-364(sz)-1(arp)1(a\\252y)83(,)-364(\\273e)-366(c)28(ho)-28(\\242b)28(y)-364(krzycz)-1(e\\242)-365(w)-1(n)1(ieb)-28(og\\252osy)83(,)-364(a)-365(\\252b)-27(e)-1(m)-365(t)1(\\252)-1(u)1(c)-365(o)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(\\246)-1(!)]TJ 27.879 -13.55 Td[({)-289(Zmi\\252u)1(j)-289(si\\246,)-289(P)29(anie,)-288(p)-28(of)1(olguj)1(,)-289(J)1(e)-1(zu!)-288({)-289(j)1(\\246)-1(cz)-1(a\\252a)-288(w)-289(s)-1(ob)1(ie)-289(p)-27(o)-28(dn)1(os)-1(z\\241c)-289(rozpalon)1(e)]TJ -27.879 -13.549 Td[(ni)1(gdy)-333(ni)1(e)-334(wys)-1(y)1(c)27(ha)-55(j\\241cymi)-333(\\252)-1(zami)-333(o)-28(c)-1(zy)-333(ku)-333(n)1(ie)-1(b)1(u.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246\\252)-1(a)-389(pr)1(z)-1(y)1(s)-1(p)1(ie)-1(sz)-1(a\\242)-389(kroku)1(,)-389(b)-28(o)-389(tak)-389(wia\\252o)-390(n)1(a)-390(t)28(yc)28(h)-389(p)-28(o)-27(dle\\261)-1(n)29(yc)27(h)-389(wy\\273niac)28(h,)]TJ -27.879 -13.549 Td[(\\273e)-448(j)1(u\\273)-447(nie)-447(mog\\252)-1(a)-446(w)-1(y)1(trzym)-1(a\\242)-447(z)-447(z)-1(imn)1(a;)-447(bab)28(y)-446(z)-1(a\\261)-447(os)-1(t)1(a)27(w)28(a\\252y)-447(ni)1(e)-1(co)-447(i)-447(sz)-1(\\252y)-447(w)28(oln)1(o,)]TJ 0 -13.549 Td[(kiej)-381(te)-382(c)-1(ze)-1(r)1(w)27(on)1(e)-383(k)1(\\252)-1(\\246b)28(y)-381(le)-1(d)1(wie)-382(w)-1(i)1(dn)1(e)-383(w)-382(k)1(urza)28(w)-1(i)1(e)-1(,)-381(a)-382(b)-27(\\363r)-382(j)1(u\\273)-382(b)28(y\\252)-382(n)1(iedalek)28(o,)-382(gd)1(y)]TJ 0 -13.549 Td[(tu)1(m)-1(an)28(y)-392(opad)1(a\\252y)-393(n)1(a)-393(c)27(h)29(w)-1(i)1(l\\246)-1(,)-392(wyrasta\\252)-393(nagl)1(e)-393(z)-394(b)1(ielizn)28(y)-393(ogr)1(om)-1(n)1(\\241,)-393(ciem)-1(n)1(\\241)-393(\\261c)-1(ian)1(\\241)]TJ 0 -13.55 Td[(pn)1(i)-333(z)-1(w)28(art)28(yc)28(h,)-333(pr)1(z)-1(ez)-334(kt\\363r)1(e)-334(mro)-28(cz)-1(a\\252y)-333(cic)27(h)1(e)-1(,)-333(lo)-28(d)1(o)28(w)27(ate)-334(g\\252\\246bi)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-329(Ch)1(o)-28(d\\271c)-1(i)1(e)-329(pr\\246dze)-1(j)1(,)-328(w)-329(le)-1(sie)-329(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(ta)-328(o)-28(dp)-27(o)-28(cz)-1(y)1(w)27(a\\252y!)-328({)-329(n)1(a)27(w)28(o\\252yw)28(a\\252a)-329(ni)1(e)-1(cie)-1(r)1(-)]TJ -27.879 -13.549 Td[(pl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-241(k)28(ob)1(ietom)-241(si\\246)-241(n)1(ie)-241(spies)-1(zy\\252o,)-240(o)-28(d)1(p)-28(o)-28(czyw)27(a\\252y)-240(cz)-1(\\246s)-1(to)-240(pr)1(z)-1(y)1(kuca)-56(j)1(\\241c)-241(na)-240(\\261niegu,)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(ami)-462(o)-28(d)-461(w)-1(i)1(atru,)-461(kie)-1(j)-461(to)-462(s)-1(tad)1(o)-462(kur)1(opatew,)-462(i)-462(ra)-55(jco)27(w)28(a\\252y)-462(z)-463(cic)28(ha,)-462(za\\261)-463(n)1(a)-463(j)1(e)-1(j)]TJ 0 -13.55 Td[(w)28(o\\252)-1(an)1(ia)-333(Fili)1(pk)56(a)-334(mru)1(kn)1(\\246)-1(\\252a)-333(niec)27(h)1(\\246)-1(tn)1(ie:)]TJ 27.879 -13.549 Td[({)-333(Hank)56(a)-333(gania)-333(jak)-333(ten)-333(pi)1(e)-1(s)-334(za)-333(w)-1(r)1(on\\241)-333(i)-333(m)27(y\\261li,)-333(\\273e)-334(ryc)28(hlej)-333(co)-334(z\\252apie...)]TJ\nET\nendstream\nendobj\n910 0 obj <<\n/Type /Page\n/Contents 911 0 R\n/Resources 909 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 896 0 R\n>> endobj\n909 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n914 0 obj <<\n/Length 9491      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(283)]TJ -330.353 -35.866 Td[({)-333(Na)-334(co)-333(to)-334(j)1(e)-1(j)-333(ze)-1(sz\\252)-1(o,)-333(c)28(h)28(ud)1(z)-1(i)1(ac)-1(zc)-1(e)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(ws)-1(p)-27(\\363\\252c)-1(zuj)1(\\241c)-1(o)-333(Krak)56(ali)1(na.)]TJ 0 -13.549 Td[({)-328(Na)28(wygrze)-1(w)28(a\\252a)-328(s)-1(i\\246)-328(dosy\\242)-328(w)-328(B)-1(or)1(yno)28(w)28(e)-1(j)-327(c)27(ha\\252u)1(pie,)-328(n)1(a)-56(jad)1(\\252a)-328(t\\252usto,)-328(n)1(as)-1(ma-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(a\\252a)-359(dob)1(ro\\261c)-1(i,)-359(t)1(o)-360(mo\\273)-1(e)-359(te)-1(r)1(az)-360(i)-359(bi)1(e)-1(d)1(y)-359(p)-28(op)1(r\\363b)-27(o)27(w)28(a\\242.)-359(C)-1(z\\252o)28(w)-1(i)1(e)-1(k)-359(ca\\252)-1(e)-359(\\273)-1(y)1(c)-1(ie)-359(przy-)]TJ 0 -13.549 Td[(mie)-1(r)1(a)-334(g\\252o)-27(de)-1(m,)-333(har)1(uj)1(e)-334(jak)-333(w)28(\\363\\252,)-333(a)-334(n)1(ikto)-333(na)28(w)28(e)-1(t)-333(ni)1(e)-334(p)-28(ol)1(ituj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(rz\\363)-28(dzi)-333(to)-333(nas)-334(n)1(a)27(w)28(e)-1(t)-333(n)1(ie)-334(p)-27(oz)-1(d)1(ra)28(wia\\252a...)]TJ 0 -13.55 Td[({)-333(Moi\\261c)-1(i)1(e)-1(wy)83(,)-333(c)28(hleb)-333(da)-55(je)-334(r)1(ogi,)-333(a)-333(g\\252)-1(\\363)-27(d)-333(nogi,)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j)1(\\241.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(c)-1(i)1(a\\252am)-334(kiej\\261)-334(p)-27(o\\273yc)-1(zy\\242)-334(t)1(e)-1(rl)1(ic)-1(y)84(,)-333(p)-27(o)27(wiedzia\\252a,)-333(\\273)-1(e)-333(m)-1(a)-333(la)-333(s)-1(i)1(e)-1(b)1(ie)-1(.)]TJ 0 -13.549 Td[({)-438(P)1(ra)28(wda,)-437(\\273)-1(e)-438(on)1(a)-438(ta)-437(ot)28(w)27(ar)1(te)-1(j)-437(r)1(\\246)-1(ki)-437(la)-437(lud)1(z)-1(i)-437(n)1(ie)-438(m)-1(i)1(a\\252a,)-438(wyn)1(os)-1(i\\252a)-437(s)-1(i)1(\\246)-438(nad)]TJ -27.879 -13.549 Td[(dr)1(ugie,)-333(jak)-333(ws)-1(zystkie)-333(B)-1(or)1(yn)28(y)84(,)-334(al)1(e)-334(s)-1(zk)28(o)-28(d)1(a)-334(k)28(ob)1(ie)-1(t)28(y)84(,)-333(s)-1(zk)28(o)-28(d)1(a!)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-333(s)-1(p)1(ra)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(ci,)-333(ale)-334(ten)-333(An)28(tek)-333(\\252a)-56(j)1(dus,)-333(no!)]TJ 0 -13.549 Td[({)-358(Ju\\261c)-1(i)1(,)-358(\\273)-1(e)-359(\\252a)-55(jd)1(us,)-358(ju\\261ci.)-358(Ale)-359(i)-358(to)-358(wiadomo,)-358(\\273e)-359(kiep,)-358(sucz)-1(k)56(a)-358(ni)1(e)-359(c)27(h)1(c)-1(e,)-358(pies)]TJ -27.879 -13.55 Td[(ni)1(e)-334(w)27(e\\271m)-1(ie,)-333(k)56(a\\273)-1(d)1(y)-334(c)28(h\\252op)-333(p)-27(olec)-1(i,)-333(j)1(ak)-333(go)-334(k)1(ie)-1(c)28(k)55(\\241)-333(pr)1(z)-1(y)1(w)27(ab)1(i\\241.)]TJ 27.879 -13.549 Td[({)-343(Gd)1(yb)28(y)-343(na)-343(mni)1(e)-344(pad)1(\\252o,)-343(na)-343(\\261)-1(r)1(o)-28(dk)1(u)-343(dr)1(ogi)-343(z)-1(d)1(ar\\252ab)28(ym)-343(Jagn\\246)-343(z)-1(a)-343(\\252eb,)-343(a)-343(wy-)]TJ -27.879 -13.549 Td[(zw)27(a\\252a,)-333(a)-333(s)-1(kle\\252a,)-333(a)-334(k)1(ud)1(\\252)-1(\\363)28(w)-333(nacz)-1(es)-1(a\\252a,)-333(\\273e)-1(b)28(y)-333(ca\\252e)-334(\\273)-1(y)1(c)-1(ie)-333(pami\\246ta\\252a.)]TJ 27.879 -13.549 Td[({)-333(Przyj)1(dzie)-334(i)-333(do)-333(tego,)-333(je\\261)-1(li)-333(cz)-1(y)1(m)-1(\\261)-334(gor)1(s)-1(zym)-334(si\\246)-334(n)1(ie)-334(sk)28(o\\253cz)-1(y)1(!)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(j)1(u\\273)-333(takie)-334(P)29(a)-1(cze)-1(sio)28(w)27(e)-334(n)1(as)-1(i)1(e)-1(n)1(ie)-1(,)-333(a)-333(Domini)1(k)28(o)27(w)28(a)-333(nie)-334(i)1(nsz)-1(a)-333(b)28(y\\252a,)-333(n)1(ie)-1(.)]TJ 0 -13.55 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(ma;)-333(w)-1(i)1(ate)-1(r)-333(n)1(is)-1(k)28(o)-333(p)-27(o)-28(db)1(iera,)-333(to)-333(na)-333(no)-28(c)-333(m)-1(o\\273e)-334(usta\\242.)]TJ 0 -13.549 Td[(Do)28(wle)-1(k)1(li)-344(si\\246)-344(wnet)-344(d)1(o)-344(lasu)-343(i)-344(p)-27(orozc)27(ho)-27(dzili,)-343(a)-344(b)1(lisk)28(o,)-344(b)28(y)-343(m\\363)-28(c)-344(s)-1(i\\246)-344(skrzykn)1(\\241\\242)]TJ -27.879 -13.549 Td[(\\252ac)-1(n)1(o)-333(do)-333(p)-28(o)28(wrotu)1(.)]TJ 27.879 -13.549 Td[(Mr)1(ok)-401(ic)27(h)-400(ogarn)1(\\241\\252)-402(i)-400(p)-28(o)-27(c)27(h\\252on)1(\\241\\252)-401(c)-1(a\\252kiem,)-401(\\273)-1(e)-401(ledwie)-401(gdzie)-1(n)1(iegdzie)-402(\\261lad)-400(jaki)]TJ -27.879 -13.549 Td[(osta\\252.)]TJ 27.879 -13.55 Td[(B\\363r)-440(b)29(y\\252)-440(s)-1(t)1(ary)83(,)-439(ogromn)28(y)84(,)-440(wyn)1(ios)-1(\\252y)1(;)-440(sos)-1(n)1(a)-440(s)-1(t)1(a\\252)-1(a)-439(przy)-439(s)-1(o\\261nie)-440(n)1(ie)-1(p)1(rze)-1(li)1(c)-1(zo-)]TJ -27.879 -13.549 Td[(n\\241)-356(ci\\273b\\241,)-355(g\\246)-1(st)28(w)27(\\241)-356(n)1(ie)-1(p)1(rze)-1(b)1(ran\\241,)-355(a)-356(tak)-356(\\261m)-1(i)1(g\\252)-1(\\241,)-355(prost\\241)-356(i)-356(mo)-28(carn)1(\\241,)-356(\\273e)-357(wid)1(z)-1(ia\\252y)-356(si\\246)]TJ 0 -13.549 Td[(kiej)-425(te)-426(wielgac)27(h)1(ne)-426(s\\252up)28(y)-425(z)-426(op)1(le)-1(\\261ni)1(a\\252)-1(ej)-425(mie)-1(d)1(z)-1(i)1(,)-426(ma)-55(jac)-1(z\\241ce)-426(w)-426(mroku)-425(sz)-1(ar)1(oz)-1(ielo-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-405(s)-1(k)1(le)-1(p)1(ie)-1(\\253)-405(n)1(ieprzejrzan)28(ymi)-405(rz\\246)-1(d)1(am)-1(i)-405({)-405(p)-28(os\\246)-1(p)1(ne,)-405(lo)-28(do)28(w)28(e)-406(br)1(z)-1(aski)-405(bi\\252y)-405(z)-406(d)1(o\\252)-1(u)]TJ 0 -13.549 Td[(o)-28(d)-342(\\261nieg\\363)27(w,)-342(z)-1(a\\261)-343(w)-343(g\\363r)1(z)-1(e,)-343(p)1(rze)-1(z)-343(strz\\246)-1(p)1(ias)-1(te)-343(k)28(on)1(ary)84(,)-343(n)1(ib)28(y)-342(w)-1(skro\\261)-343(zdziu)1(ra)28(w)-1(i)1(on)28(yc)27(h)]TJ 0 -13.55 Td[(strze)-1(c)27(h)1(,)-333(\\261)-1(wita\\252o)-333(ni)1(e)-1(b)-27(o)-334(b)1(ia\\252a)28(w)27(e)-333(i)-334(m\\246tne.)]TJ 27.879 -13.549 Td[(Wic)28(h)28(ur)1(a)-381(pr)1(z)-1(ew)27(ala\\252a)-381(si\\246)-381(g\\363r\\241,)-381(\\273e)-382(cz)-1(asami)-381(c)-1(i)1(c)27(ho\\261\\242)-381(s)-1(i\\246)-381(cz)-1(yn)1(i\\252a)-381(jakb)29(y)-381(w)-381(k)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(iele,)-270(k)1(ie)-1(d)1(y)-269(to)-270(z)-269(nag\\252a)-269(organ)28(y)-269(zm)-1(il)1(kn\\241)-269(i)-269(\\261)-1(p)1(iew)-1(y)-269(u)1(s)-1(tan)1(\\241,)-269(a)-270(j)1(e)-1(n)1(o)-270(sz)-1(emrz)-1(\\241)-269(wz)-1(d)1(yc)27(h)29(y)]TJ 0 -13.549 Td[(ostatnie,)-337(tu)1(p)-28(ot)28(y)84(,)-337(p)-28(ogas\\252e)-338(b)1(rzm)-1(ieni)1(a)-337(pacie)-1(r)1(z)-1(\\363)28(w)-337(i)-337(te)-338(p)1(rzyta)-56(j)1(one,)-337(k)28(ona)-55(j\\241ce)-338(n)28(u)1(t)28(y)-337({)]TJ 0 -13.549 Td[(b)-27(\\363r)-324(s)-1(ta)28(w)28(a\\252)-325(wtedy)-324(n)1(ie)-1(r)1(uc)27(h)1(om)27(y)84(,)-324(oniemia\\252y)83(,)-324(j)1(akb)28(y)-324(ws)-1(\\252u)1(c)27(han)29(y)-324(w)-325(grzmotliw)28(\\241)-324(w)-1(r)1(z)-1(a-)]TJ 0 -13.55 Td[(w)28(\\246)-1(,)-420(w)-421(ten)-420(d)1(z)-1(ik)1(i)-421(k)1(rz)-1(y)1(k)-420(p)-28(\\363l)-420(trat)1(o)27(w)28(an)28(yc)28(h,)-420(c)-1(o)-420(rw)28(a\\252)-420(s)-1(i\\246)-421(gd)1(z)-1(i)1(e)-1(sik)-420(z)-1(e)-420(\\261)-1(wiata)-420(i)-420(ni\\363s\\252)]TJ 0 -13.549 Td[(wysok)28(o,)-334(d)1(alek)28(o,)-334(\\273e)-334(t)28(yl)1(k)28(o)-334(j)1(\\246)-1(kl)1(iwym)-334(\\261wie)-1(gotem)-334(d)1(rga\\252)-333(p)-28(o)-333(les)-1(ie.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(t)-318(jednak)-318(wic)27(h)1(e)-1(r)-318(ud)1(e)-1(rza\\252)-319(w)-319(b)-27(\\363r)-319(ca\\252\\241)-319(mo)-28(c)-1(\\241,)-318(ws)-1(zys)-1(t)1(kimi)-319(k\\252ami)-319(tr)1(z)-1(ask)56(a\\252)]TJ -27.879 -13.549 Td[(o)-357(p)1(nie,)-356(w)-1(\\273e)-1(r)1(a\\252)-357(si\\246)-357(w)-357(lu)1(te)-357(g\\252)-1(\\246bi)1(e)-1(,)-356(p)-28(or)1(ykiw)28(a\\252)-357(w)-357(mrok)56(ac)27(h)1(,)-356(targa\\252)-357(olb)1(rzymam)-1(i,)-356(ale)]TJ 0 -13.549 Td[(na)-307(dar)1(m)-1(o,)-307(n)1(ie)-308(p)1(rz)-1(em\\363g\\252)-1(,)-307(b)-27(o)-307(w)-1(y)1(z)-1(b)28(y)1(t)27(y)-307(z)-308(si\\252)-307(opad)1(a)-1(\\252,)-307(g\\252u)1(c)27(hn)1(\\241\\252)-308(i)-307(mar\\252)-308(ze)-308(sk)28(o)28(w)-1(y)1(te)-1(m)]TJ 0 -13.549 Td[(w)-331(g\\246)-1(st)28(yc)27(h)1(,)-331(p)1(rz)-1(y)1(z)-1(iemn)28(yc)27(h)-330(kr)1(z)-1(ac)27(h)-330({)-331(a)-331(las)-331(ni)-330(drgn)1(\\241\\252,)-331(n)1(i)-331(jedn)1(a)-331(ga\\252\\246)-1(\\271)-331(ni)1(e)-332(tr)1(z)-1(asn\\246\\252a,)]TJ 0 -13.55 Td[(ni)-309(j)1(e)-1(d)1(e)-1(n)-308(pie\\253)-309(si\\246)-310(zak)28(o\\252)-1(y)1(s)-1(a\\252,)-309(cic)27(h)1(o\\261)-1(\\242)-310(b)29(y\\252a)-309(jes)-1(zc)-1(ze)-310(g\\252\\246)-1(b)1(s)-1(za)-309(i)-309(bard)1(z)-1(i)1(e)-1(j)-309(p)1(rze)-1(r)1(a\\273)-1(a)-55(j\\241ca,)]TJ 0 -13.549 Td[(\\273e)-334(t)28(ylk)28(o)-333(ptak)-333(j)1(aki)-333(niekiedy)-333(za\\252op)-28(ota\\252)-333(ws)-1(kr)1(o\\261)-334(mrok)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-334(c)-1(zas)-1(ami)-334(z)-1(n)1(o)27(wu)-334(wic)27(h)29(ura)-334(spada\\252a)-334(tak)-334(nagle,)-334(nies)-1(p)-27(o)-28(d)1(z)-1(i)1(e)-1(w)28(anie)-335(i)-334(p)-27(ot\\246)-1(\\273ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(jak)-362(ten)-362(jastrz\\241b)-362(s)-1(p)1(ada)-363(zg\\252o)-28(dn)1(ia\\252y)84(,)-363(tak)-362(\\252omota\\252a)-363(skrzyd\\252ami,)-362(rw)28(a\\252a)-363(wierz)-1(c)28(ho\\252y)84(,)]TJ 0 -13.549 Td[(gni)1(e)-1(t\\252a)-363(i)-362(rozw)27(ala\\252a)-362(w)-1(sz)-1(y)1(s)-1(tk)28(o)-362(z)-1(e)-363(w\\261)-1(cie)-1(k)1(\\252ym)-363(ryki)1(e)-1(m,)-363(a\\273)-363(b)-27(\\363r)-363(d)1(rga\\252)-363(j)1(akb)28(y)-363(p)1(rze)-1(b)1(u-)]TJ 0 -13.55 Td[(dzon)28(y)84(,)-391(otrz\\241s)-1(a\\252)-391(si\\246)-392(z)-391(m)-1(ar)1(t)28(w)27(ot)28(y)84(,)-391(c)27(h)28(wia\\252)-391(z)-392(k)28(o\\253)1(c)-1(a)-391(w)-391(k)28(oni)1(e)-1(c,)-391(dr)1(z)-1(ew)27(a)-391(k)28(oleba\\252y)-391(si\\246,)]TJ 0 -13.549 Td[(o)-28(d)-357(drze)-1(w)-358(p)-27(omruk)-357(le)-1(cia\\252)-358(gro\\271n)28(y)84(,)-358(pr)1(z)-1(yd)1(usz)-1(on)29(y)-358(i)-358(z)-359(n)1(ag\\252a)-358(b)-28(\\363r)-357(s)-1(i\\246)-358(pr)1(os)-1(to)28(w)28(a\\252,)-358(p)-27(o)-28(d-)]TJ\nET\nendstream\nendobj\n913 0 obj <<\n/Type /Page\n/Contents 914 0 R\n/Resources 912 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n912 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n918 0 obj <<\n/Length 9905      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(284)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(nosi\\252,)-376(sz)-1(ed\\252)-376(j)1(akb)28(y)84(,)-376(przygin)1(a\\252)-376(c)-1(i\\246\\273k)28(o)-376(i)-376(ud)1(e)-1(rza\\252)-376(z)-1(e)-376(s)-1(tr)1(as)-1(zn)28(ym)-376(krzyki)1(e)-1(m,)-376(a)-376(bi)1(\\252)-377(j)1(u\\273)]TJ 0 -13.549 Td[(jak)-353(ten)-353(mo)-28(c)-1(ar)1(z)-354(o\\261)-1(l)1(e)-1(p)1(\\252y)-354(gn)1(iew)27(em)-354(i)-353(p)-28(omst\\241,)-353(\\273)-1(e)-354(wrzask)-354(si\\246)-354(zryw)28(a\\252,)-353(b)-28(\\363)-55(j)-353(nap)-27(e)-1(\\252n)1(ia\\252)]TJ 0 -13.549 Td[(las,)-307(strac)27(h)-306(p)1(ada\\252)-307(na)-306(w)-1(sz)-1(elki)1(e)-308(st)28(w)27(or)1(z)-1(enia,)-306(pr)1(z)-1(ycz)-1(a)-55(jon)1(e)-308(w)-307(p)-27(o)-28(d)1(s)-1(zyciac)27(h)1(,)-307(a)-307(osz)-1(ala\\252e)]TJ 0 -13.549 Td[(z)-321(trw)28(ogi)-321(ptact)28(w)27(o)-321(t\\252u)1(k\\252o)-321(s)-1(i)1(\\246)-322(w\\261)-1(r)1(\\363)-28(d)-321(\\261ni)1(e)-1(g\\363)28(w,)-321(lej\\241cyc)27(h)-320(s)-1(i\\246)-321(wz)-1(b)1(urzon)28(ymi)-321(stru)1(gam)-1(i)1(,)]TJ 0 -13.549 Td[(i)-333(w\\261)-1(r)1(\\363)-28(d)-333(p)-27(o)-28(dr)1(uzgotan)28(yc)27(h)-333(ga\\252\\246z)-1(i)-333(i)-333(wierzc)27(ho\\252\\363)28(w.)]TJ 27.879 -13.55 Td[(Ale)-336(p)-27(ote)-1(m)-336(n)1(as)-1(ta)28(w)28(a\\252y)-336(d)1(\\252)-1(u)1(gie,)-336(zgo\\252a)-336(m)-1(ar)1(t)28(w)27(e)-336(cis)-1(ze)-1(,)-335(w)-336(kt\\363r)1(yc)27(h)-335(s)-1(\\252y)1(c)27(ha\\242)-336(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(wyra\\271ni)1(e)-334(jaki)1(e)-1(\\261)-334(d)1(alekie,)-334(ci\\246\\273)-1(k)1(ie)-334(\\252omot)27(y)84(.)]TJ 27.879 -13.549 Td[({)-383(Las)-383(r\\241b)1(i\\241)-383(p)1(rzy)-383(Wil)1(c)-1(zyc)27(h)-382(Do\\252ac)27(h)1(,)-383(g\\246s)-1(to)-383(si\\246)-383(w)28(ali)-383({)-383(sze)-1(p)1(n\\241\\252)-383(stary)-383(n)1(as)-1(\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(uj\\241c)-333(nad)-333(ziem)-1(i\\241)-333(g\\252uc)28(h)28(yc)27(h)-332(drga\\253)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(maru)1(d\\271c)-1(ie,)-333(do)-333(no)-27(c)-1(y)-333(s)-1(i)1(e)-1(d)1(z)-1(ie\\242)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(m)28(y)83(.)]TJ 0 -13.549 Td[(Zas)-1(zyli)-411(si\\246)-412(w)-412(wysoki,)-411(m\\252)-1(o)-27(dy)-411(z)-1(aga)-55(jn)1(ik,)-411(w)-412(taki)-411(g\\241sz)-1(cz)-412(s)-1(p)1(l\\241tan)28(yc)28(h)-411(i)-412(zw)27(ar)1(-)]TJ -27.879 -13.55 Td[(t)28(yc)27(h)-323(z)-1(e)-325(sob\\241)-324(ga\\252\\246z)-1(i,)-324(\\273e)-325(ledwie)-324(s)-1(i\\246)-324(m)-1(ogli)-324(p)1(rze)-1(cisk)55(a\\242)-324(do)-324(\\261)-1(r)1(o)-28(dk)56(a,)-324(cis)-1(za)-324(ic)27(h)-324(oto)-27(c)-1(zy\\252a)]TJ 0 -13.549 Td[(grob)-27(o)28(w)27(a,)-383(\\273)-1(ad)1(e)-1(n)-383(g\\252os)-385(si\\246)-385(j)1(u\\273)-384(tam)-384(nie)-384(pr)1(z)-1(edziera\\252,)-384(n)1(a)27(w)28(e)-1(t)-383(\\261)-1(wiat\\252o)-384(j)1(e)-1(n)1(o)-384(z)-385(tr)1(ud)1(e)-1(m)]TJ 0 -13.549 Td[(s\\241c)-1(zy\\252o)-392(si\\246)-392(p)1(rze)-1(z)-391(grub)1(\\241)-392(p)-27(okr)1(yw)27(\\246)-391(\\261)-1(n)1(ie)-1(g\\363)28(w,)-391(wis)-1(z\\241c)-1(\\241)-391(n)1(a)-392(cz)-1(u)1(bac)28(h)-391(nib)29(y)-392(d)1(ac)27(h)1(.)-391(Z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(mis)-1(t)1(a,)-368(sp)-27(opiela\\252a)-367(s)-1(zaro\\261\\242)-368(z)-1(ap)-27(e\\252)-1(n)1(ia\\252a)-367(g\\252\\246)-1(b)1(i\\246)-1(,)-367(\\261niegu)-367(pr)1(a)28(w)-1(i)1(e)-368(nie)-367(b)28(y\\252o)-367(na)-367(z)-1(i)1(e)-1(mi,)-367(a)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-358(op)1(ad\\252y)-358(z)-358(da)28(wna,)-357(z)-1(wietrza\\252)-1(y)-357(s)-1(u)1(s)-1(z)-358(z)-1(a\\261c)-1(i)1(e)-1(la\\252)-358(miejsc)-1(ami)-358(p)-27(o)-358(k)28(olan)1(a,)-358(k)56(a)-56(j\\261)-358(ni)1(e)-1(-)]TJ 0 -13.55 Td[(k)56(a)-56(j)1(\\261)-287(ziele)-1(n)1(i\\252y)-286(si\\246)-287(p)-27(\\363lk)56(a)-286(mc)27(h\\363)28(w,)-286(to)-286(j)1(akb)28(y)-286(p)1(rzyta)-56(j)1(one)-286(pr)1(z)-1(ed)-286(zim\\241)-287(\\273\\363\\252k\\252e)-286(jago)-28(d)1(z)-1(in)29(y)]TJ 0 -13.549 Td[(alb)-27(o)-333(m)27(uc)28(har)-333(zas)-1(c)28(hni)1(\\246)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-479(ob\\252am)27(y)1(w)27(a\\252a)-479(kulk)56(\\241)-479(c)-1(o)-479(gru)1(bs)-1(ze)-480(ga\\252\\246z)-1(ie,)-479(przycina\\252a)-479(je)-480(d)1(o)-480(jedn)1(e)-1(go)]TJ -27.879 -13.549 Td[(wymiaru)-302(uk\\252ad)1(a)-56(j)1(\\241c)-304(w)-303(rozp)-28(ostart)1(\\241)-303(p\\252ac)27(h)28(t)1(\\246)-1(,)-303(a)-303(r)1(obi\\252a)-303(tak)-302(z)-1(ap)1(alc)-1(zywie,)-303(a\\273)-303(c)27(h)28(u)1(s)-1(tk)28(\\246)]TJ 0 -13.549 Td[(zruci\\252a)-340(z)-340(gor)1(\\241c)-1(a,)-339(i)-339(m)-1(o\\273e)-340(w)-340(jak)56(\\241)-339(go)-28(dzin)1(\\246)-340(nary)1(c)27(h)28(to)28(w)28(a\\252)-1(a)-339(takie)-340(b)1(rze)-1(mion)1(o)-340(dr)1(e)-1(w)28(e)-1(k)1(,)]TJ 0 -13.55 Td[(i\\273)-460(ledwie)-459(m)-1(og\\252a)-459(je)-460(sobie)-460(zada\\242,)-459(s)-1(tar)1(y)-460(te\\273)-460(nar)1(z)-1(\\241d)1(z)-1(i\\252)-459(p)-28(\\246k)-459(niezgors)-1(zy)83(,)-459(ob)28(wi\\241za\\252)]TJ 0 -13.549 Td[(sz)-1(n)28(u)1(rem)-329(i)-328(wl\\363k)1(\\252)-329(go)-328(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-329(si\\246)-329(za)-328(pn)1(ie)-1(m,)-328(b)28(y)-328(z)-328(ni)1(e)-1(go)-328(\\252ac)-1(n)1(iej)-328(wz)-1(i)1(\\241\\242)-329(na)-328(p)1(lec)-1(y)84(.)]TJ 27.879 -13.549 Td[(Huk)56(ali)-378(n)1(a)-379(k)28(ob)1(iet)27(y)84(,)-378(ale)-379(w)-378(du)1(\\273)-1(ym)-378(les)-1(ie)-379(zno)28(wu)-378(si\\246)-379(sro\\273y\\252a)-379(wic)28(h)28(ur)1(a,)-379(t)1(o)-379(si\\246)-379(i)]TJ -27.879 -13.549 Td[(ni)1(e)-334(s)-1(k)1(rzykn\\246li.)]TJ 27.879 -13.549 Td[({)-333(Han)28(u\\261,)-333(do)-333(top)-27(olo)28(w)27(ej)-333(nam)-333(s)-1(i\\246)-333(prze)-1(b)1(ra\\242,)-333(le)-1(p)1(iej)-333(b)-28(\\246dzie)-334(n)1(i\\271li)-333(przez)-334(p)-28(ol)1(a.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(c)28(ho)-28(d)1(\\271)-1(m)28(y)83(,)-333(p)1(iln)28(u)1(jcie)-334(si\\246)-334(mni)1(e)-334(i)-333(dalek)28(o)-333(nie)-334(osta)-55(jcie)-1(.)]TJ 0 -13.549 Td[(Wzi\\246li)-387(si\\246)-388(zaraz)-387(z)-388(miejsc)-1(a)-387(n)1(a)-387(lew)27(o,)-386(prze)-1(z)-387(k)56(a)28(w)27(a\\252)-387(starej)-387(d)1(\\246)-1(b)1(in)28(y)84(,)-387(ale)-387(c)-1(i\\246\\273)-1(k)28(o)]TJ -27.879 -13.549 Td[(b)28(y\\252o,)-360(\\261)-1(n)1(ieg)-361(le\\273)-1(a\\252)-360(p)-28(o)-360(k)28(olana,)-360(to)-361(gu)1(rb)1(i\\252)-361(si\\246)-361(mie)-1(j)1(s)-1(cami)-361(w)-361(zagon)28(y)84(,)-361(b)-27(o)-361(d)1(rze)-1(w)28(a)-361(sta\\252y)]TJ 0 -13.549 Td[(rzadk)28(o)-350(i)-350(b)-27(e)-1(z)-350(li\\261c)-1(i)1(,)-350(t)27(y)1(le)-351(\\273e)-351(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-350(w\\261)-1(r\\363)-27(d)-350(roz\\252o\\273)-1(yst)28(yc)27(h)-349(p)-28(ot\\246\\273n)28(yc)27(h)-349(k)28(onar\\363)28(w)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252y)-361(si\\246)-361(s)-1(i)1(w)27(e)-361(br)1(o)-28(dy)84(,)-361(t)1(u)-361(i)-360(o)27(wd)1(z)-1(ie)-361(j)1(aki)-361(m\\252o)-28(dy)-360(d\\241b)-27(e)-1(k)1(,)-361(p)-27(okry)1(t)27(y)-360(z)-1(r)1(ud)1(z)-1(ia\\252ymi)-360(ku-)]TJ 0 -13.55 Td[(d\\252ami,)-366(pr)1(z)-1(ygi)1(na\\252)-367(si\\246)-367(do)-366(z)-1(i)1(e)-1(mi)-367(ze)-367(\\261w)-1(i)1(s)-1(tem)-1(.)-366(Wiat)1(r)-367(d)1(\\241\\252)-367(z)-367(ca\\252)-1(ej)-366(m)-1(o)-27(c)-1(y)-366(i)-367(t)1(ak)-367(ku)1(rzy\\252)]TJ 0 -13.549 Td[(\\261niegam)-1(i)1(,)-352(\\273)-1(e)-352(i\\261\\242)-353(b)28(y\\252o)-352(n)1(ie)-1(p)-27(o)-28(d)1(obn)1(a,)-352(s)-1(tar)1(y)-352(s)-1(i)1(\\246)-353(wnet)-352(z)-1(m\\246)-1(czy\\252)-352(i)-352(usta\\252,)-352(a)-352(i)-352(Hance)-353(si\\252)]TJ 0 -13.549 Td[(br)1(ak)28(o)28(w)27(a\\252o,)-308(to)-308(jeno)-308(ws)-1(p)1(iera\\252a)-308(s)-1(i\\246)-308(brzem)-1(ieni)1(e)-1(m)-308(o)-309(d)1(rze)-1(w)28(a,)-308(wys)-1(tr)1(ac)27(h)1(an)28(ymi)-308(o)-28(c)-1(zami)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a)-55(j\\241c)-334(l)1(e)-1(p)1(s)-1(ze)-1(j)-333(d)1(rogi.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(rz)-1(ejd)1(z)-1(i)1(e)-1(m)28(y)-333(t\\246)-1(d)1(y)83(,)-333(a)-333(z)-1(a)-333(d\\246bi)1(n\\241)-333(m)-1(ok)1(rad\\252a,)-333(n)1(a)27(wr\\363)-27(\\242)-1(m)28(y)-334(d)1(o)-333(p)-28(\\363l.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-460(na)28(wr\\363)-27(c)-1(il)1(i)-460(w)-460(d)1(u\\273y)-460(i)-459(z)-1(w)28(art)28(y)-459(las)-460(s)-1(osno)28(wy)84(,)-460(gd)1(z)-1(ie)-460(cisz)-1(ej)-460(b)29(y\\252o)-460(n)1(ie)-1(co)-460(i)]TJ -27.879 -13.55 Td[(\\261niegi)-365(nie)-365(z)-1(al)1(e)-1(ga\\252y)-365(tak)-365(wysok)28(o,)-365(a)-366(p)-27(okr)1(\\363tc)-1(e)-365(w)-1(y)1(s)-1(zli)-365(na)-365(p)-27(ola)-365({)-365(ale)-366(tam)-365(s)-1(z\\252y)-365(takie)]TJ 0 -13.549 Td[(zakur)1(ki,)-400(\\273e)-401(\\261w)-1(i)1(ata)-401(n)1(ie)-400(roz)-1(p)-27(ozna\\252)-400(na)28(w)28(e)-1(t)-400(na)-400(to)-400(\\261m)-1(i)1(gni\\246c)-1(i)1(e)-401(k)56(am)-1(i)1(e)-1(n)1(ie)-1(m,)-400(n)1(ic)-1(,)-400(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(bi)1(a\\252a,)-489(rozk\\252\\246bion)1(a,)-489(pr)1(z)-1(ew)27(al)1(a)-56(j)1(\\241c)-1(a)-489(si\\246)-489(\\242)-1(ma.)-489(W)1(ic)27(h)1(e)-1(r)-488(z)-1(a\\261)-489(w)28(c)-1(i\\241\\273)-489(p)1(ar\\252)-489(ku)-488(b)-27(oro)28(w)-1(i)1(,)]TJ 0 -13.549 Td[(o)-28(d)1(bij)1(a\\252)-417(s)-1(i\\246)-417(kiej)-417(o)-28(d)-416(\\261)-1(cian)28(y)84(,)-417(pr)1(z)-1(ew)27(al)1(a\\252)-418(wznak)-417(n)1(a)-417(p)-28(ol)1(a,)-417(ale)-418(wsta)28(w)27(a\\252)-417(ni)1(e)-1(zm)-1(o\\273on)28(y)84(,)]TJ 0 -13.549 Td[(zgarni)1(a\\252)-362(ca\\252e)-362(g\\363r)1(y)-361(\\261)-1(n)1(ieg\\363)27(w)-361(i)-361(n)1(ib)28(y)-361(t\\241)-361(b)1(ia\\252\\241)-361(c)27(h)1(m)27(u)1(r\\241)-361(pr)1(a\\252)-362(w)-361(d)1(rz)-1(ew)28(a,)-361(a\\273)-362(j)1(\\246)-1(k)-361(l)1(e)-1(cia\\252)]TJ 0 -13.55 Td[(p)-27(o)-330(l)1(e)-1(sie)-1(,)-329(a)-329(tak)-329(m\\241c)-1(i)1(\\252)-1(,)-329(zakr\\246ca\\252)-330(i)-329(bi)1(\\252,)-329(\\273)-1(e)-330(l)1(e)-1(d)1(w)-1(i)1(e)-330(w)27(es)-1(zli)-329(n)1(a)-330(zagon)28(y)84(,)-329(s)-1(tar)1(e)-1(go)-329(c)-1(i)1(e)-1(p)1(n\\241\\252)]TJ 0 -13.549 Td[(o)-333(z)-1(iem,)-333(a\\273)-334(d\\271wiga\\242)-334(go)-333(m)27(usia\\252a,)-333(sam)-1(a)-333(ledwie)-334(mog\\241c)-334(si\\246)-334(u)1(trzym)-1(a\\242)-333(na)-333(nogac)28(h.)]TJ\nET\nendstream\nendobj\n917 0 obj <<\n/Type /Page\n/Contents 918 0 R\n/Resources 916 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n916 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n921 0 obj <<\n/Length 9052      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(285)]TJ -330.353 -35.866 Td[(W)84(r\\363)-28(cili)-402(do)-402(b)-27(oru)-402(i)-402(pr)1(z)-1(yk)1(ucn\\241)28(ws)-1(zy)-402(z)-1(a)-402(pn)1(iami)-403(medyto)28(w)28(ali,)-402(kt\\363r)1(\\246)-1(d)1(y)-402(p)-28(\\363)-55(j\\261\\242)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(ca\\252kiem)-334(ju)1(\\273)-334(n)1(ie)-334(wiada)-333(b)28(y)1(\\252)-1(o,)-333(w)-333(jak)56(\\241)-333(s)-1(tr)1(on\\246)-334(si\\246)-334(ob)1(r\\363)-28(ci\\242.)]TJ 27.879 -13.549 Td[({)-330(T)83(\\241)-330(dr\\363\\273k)56(\\241)-330(na)-330(lew)27(o,)-330(a)-330(wyjd)1(z)-1(i)1(e)-1(rn)29(y)-330(niec)27(h)28(y)1(bni)1(e)-331(do)-330(top)-27(olo)28(w)28(e)-1(j)1(,)-330(przy)-330(krzy\\273u.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(c)-1(a\\252ki)1(e)-1(m)-334(n)1(ie)-334(b)1(ac)-1(z\\246)-334(tej)-333(dr)1(\\363\\273)-1(ki)1(.)]TJ 0 -13.549 Td[(T\\252umac)-1(zy\\252)-333(d\\252ugo,)-333(b)-27(o)-333(s)-1(i\\246)-333(ba\\252a)-333(pu\\261ci\\242)-334(na)-333(n)1(ie)-1(p)-27(e)-1(wn)1(e)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(miar)1(kuj)1(e)-1(cie)-334(ab)28(y)84(,)-333(w)-334(j)1(ak)55(\\241)-333(stron)1(\\246)-334(s)-1(i)1(\\246)-334(wz)-1(i\\241\\242?)]TJ 0 -13.549 Td[({)-333(Od)-333(lew)27(ej)-333(r\\246ki,)-333(wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246.)]TJ 0 -13.549 Td[(P)28(o)28(wlekli)-412(s)-1(i)1(\\246)-413(w)-1(zd\\252u)1(\\273)-413(lasu,)-412(p)-27(obrze\\273)-1(em)-413(s)-1(k)1(ryw)28(a)-56(j)1(\\241c)-413(s)-1(i)1(\\246)-413(niec)-1(o)-412(o)-28(d)-412(n)1(ap)-28(or)1(u)-412(wi-)]TJ -27.879 -13.549 Td[(c)27(h)29(ury)84(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(p)1(r\\246)-1(d)1(z)-1(ej,)-333(n)1(o)-28(c)-1(y)-333(t)28(yl)1(k)28(o)-334(co)-333(patrze\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(o)-334(t)1(e)-1(go)-333(p)-28(o)28(wietrza)-334(z\\252api\\246)-333(i)-333(le)-1(t\\246,)-333(Han)28(u)1(\\261)-1(,)-333(let\\246)-1(.)1(..)]TJ 0 -13.55 Td[(Ju)1(\\261)-1(ci,)-314(nieletk)28(o)-314(s)-1(i\\246)-314(im)-315(b)28(y)1(\\252)-1(o)-314(p)1(rz)-1(ebi)1(e)-1(r)1(a\\242)-1(,)-314(dr)1(\\363\\273)-1(k)28(\\246)-314(c)-1(a\\252kiem)-315(zas)-1(y)1(pa\\252o,)-314(a)-314(do)-314(te)-1(go)]TJ -27.879 -13.549 Td[(z)-415(b)-28(ok)1(u)-415(o)-28(d)-414(p)-27(\\363l)-415(w)27(ci\\241\\273)-415(grzm)-1(o)-27(c)-1(i\\252)-415(wic)28(her)-415(i)-415(ciepa\\252)-415(\\261nie\\273yc)-1(\\241,)-414(pr\\363\\273no)-414(s)-1(i\\246)-415(c)27(h)1(roni)1(li)-415(za)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a,)-325(to)-326(przywierali)-325(jak)-326(te)-326(z)-1(a)-55(j\\241cz)-1(k)1(i)-326(p)-28(o)-27(d)-326(j)1(a\\252)-1(o)28(w)28(c)-1(ami,)-326(wsz)-1(\\246dzie)-326(prze)-1(wiew)28(a\\252)-1(o)-326(d)1(o)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(i,)-322(za\\261)-323(g\\252\\246)-1(b)1(i\\241)-322(s)-1(tr)1(as)-1(zno)-322(b)28(y\\252o)-322(i\\261\\242)-1(,)-322(dr)1(z)-1(ew)27(a)-322(sz)-1(u)1(m)-1(ia\\252y)-322(d)1(z)-1(ik)28(o,)-322(ca\\252y)-322(las)-323(s)-1(i)1(\\246)-323(k)28(oleba\\252)-322(i)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-229(ziem)-1(i)1(\\246)-229(zamiata\\252)-228(k)28(on)1(arami,)-228(ga\\252\\246z)-1(i)1(e)-229(siek\\252y)83(,)-227(p)-27(o)-228(t)28(w)27(ar)1(z)-1(ac)28(h,)-227(to)-228(c)-1(zasam)-1(i)-227(z)-228(takim)]TJ 0 -13.55 Td[(trzaskiem)-334(pad)1(a\\252y)-334(c)28(ho)-55(jary)84(,)-333(i\\273)-334(si\\246)-334(wyd)1(a)28(w)27(a\\252o,)-333(jak)28(o)-333(c)-1(a\\252y)-333(b)-27(\\363r)-333(ru)1(nie)-333(z)-1(d)1(ruzgotan)28(y)84(.)]TJ 27.879 -13.549 Td[(Bie)-1(gl)1(i)-403(te\\273)-1(,)-403(co)-403(in)1(o)-403(s)-1(i)1(\\252)-403(i)-403(tc)27(h)29(u)-403(starcz)-1(y\\252o,)-402(ab)28(y)-403(ry)1(c)27(hl)1(e)-1(j)-402(dop)1(a\\261)-1(\\242)-403(dr)1(ogi)-403(i)-403(zd\\241\\273y\\242)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-408(no)-27(c)-1(\\241,)-408(kt)1(\\363ra)-408(m)-1(og\\252a)-408(s)-1(p)1(a\\261)-1(\\242)-408(le)-1(d)1(a)-408(c)27(h)28(wila,)-408(b)-27(o)-408(ju)1(\\273)-409(s)-1(zarza\\252o)-408(niec)-1(o)-408(na)-408(p)-27(olac)27(h)-407(i)]TJ 0 -13.549 Td[(ws)-1(k)1(r\\363\\261)-295(s)-1(k)28(o\\252tun)1(ion)28(y)1(c)27(h)-295(\\261ni)1(e)-1(g\\363)28(w)-295(pr)1(z)-1(ew)-1(i)1(ja\\252y)-295(si\\246)-295(\\261)-1(l)1(e)-1(p)-27(e)-296(sm)27(u)1(gi,)-295(k)1(ie)-1(b)29(y)-295(te)-295(dym)28(y)-295(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ni)1(k\\252e)-1(.)]TJ 27.879 -13.55 Td[(Dorw)28(ali)-307(s)-1(i)1(\\246)-308(wre)-1(szc)-1(ie)-308(d)1(rogi)-307(i)-307(padl)1(i)-308(p)-27(o)-28(d)-307(kr)1(z)-1(y)1(\\273)-1(em)-1(,)-307(ledwie)-308(\\273ywi)-307(z)-308(utr)1(udzenia.)]TJ 0 -13.549 Td[(Kr)1(z)-1(y\\273)-455(s)-1(ta\\252)-455(na)-455(skra)-55(ju)-455(l)1(as)-1(u,)-455(t)1(u\\273)-456(p)1(rzy)-455(dro)-27(dze)-1(,)-455(b)1(roni)1(\\252)-1(y)-455(go)-455(o)-28(d)-454(bur)1(z)-456(cz)-1(tery)]TJ -27.879 -13.549 Td[(ogromne)-470(br)1(z)-1(ozy)-470(w)-471(b)1(ia\\252yc)27(h)-469(gz)-1(\\252ac)27(h)1(,)-470(z)-471(ob)28(wis\\252ymi)-470(nib)29(y)-470(w)27(ar)1(k)28(o)-28(c)-1(ze)-471(ga\\252\\246z)-1(iami;)-470(n)1(a)]TJ 0 -13.549 Td[(cz)-1(arn)29(ym)-411(drze)-1(wie)-411(b)28(y\\252)-411(r)1(oz)-1(kr)1(z)-1(y\\273o)28(w)27(an)29(y)-411(Chry)1(s)-1(tu)1(s)-412(z)-411(blac)28(h)28(y)83(,)-410(p)-28(omalo)28(w)28(anej)-411(w)-411(takie)]TJ 0 -13.549 Td[(k)28(olor)1(y)83(,)-444(\\273)-1(e)-444(jak)-444(\\273)-1(y)1(w)-1(y)-444(si\\246)-445(wid)1(z)-1(ia\\252;)-444(snad)1(\\271)-445(wiate)-1(r)-444(o)-27(derw)28(a\\252)-445(go,)-444(b)-27(o)-445(wisia\\252)-445(t)28(y)1(lk)28(o)-445(n)1(a)]TJ 0 -13.55 Td[(jedn)1(e)-1(j)-492(r\\246c)-1(e,)-493(tr)1(z)-1(ask)55(a\\252)-493(sob\\241)-493(o)-493(d)1(rze)-1(w)28(a)-493(i)-493(skrzypi)1(a\\252)-493(z)-1(ard)1(z)-1(ewia\\252ym)-493(g\\252os)-1(em)-1(,)-492(jakb)29(y)]TJ 0 -13.549 Td[(lit)1(o\\261)-1(ci)-406(prosi\\252)-406(i)-406(p)-28(or)1(atun)1(ku.)-406(Brzoz)-1(y)-406(tar)1(gane)-407(wic)28(h)28(ur)1(\\241)-407(ok)1(ryw)28(a\\252y)-407(go)-406(ci\\246)-1(gi)1(e)-1(m)-406(s)-1(ob)1(\\241,)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252y)-442(s)-1(i\\246,)-443(p)1(rzygin)1(a\\252)-1(y)84(,)-442(a)-443(\\261)-1(n)1(iego)27(w)28(e)-443(tuman)28(y)-442(z)-1(asyp)28(y)1(w)27(a\\252y)-443(k)1(urza)28(w)27(\\241,)-442(\\273)-1(e)-443(sta\\252)-443(ca\\252y)]TJ 0 -13.549 Td[(w)-391(mg\\252ac)27(h,)-390(p)1(rz)-1(ez)-391(kt\\363r)1(e)-391(m)-1(i)1(gota\\252)-1(o)-390(Jez)-1(u)1(s)-1(o)28(w)27(e)-391(sin)1(e)-391(c)-1(ia\\252o)-390(i)-391(j)1(e)-1(go)-390(blad)1(a,)-390(okrw)28(a)27(wion)1(a)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-334(wyc)27(h)29(yla\\252a)-334(si\\246)-334(r)1(az)-334(p)-27(o)-334(r)1(az)-334(z)-334(b)1(ie)-1(l)1(iz)-1(n)1(,)-333(a\\273)-334(s)-1(i)1(\\246)-334(lut)1(o)-334(r)1(obi\\252o)-333(na)-333(s)-1(ercu.)]TJ 27.879 -13.55 Td[(St)1(ary)-290(sp)-28(ogl)1(\\241da\\252)-290(n)1(a\\253)-290(z)-290(pr)1(z)-1(era\\273e)-1(n)1(iem)-1(,)-289(\\273)-1(egna\\252)-290(si\\246,)-290(ale)-290(ni)1(e)-291(\\261mia\\252)-290(s)-1(i)1(\\246)-291(o)-27(dez)-1(w)28(a\\242)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-443(Hank)56(a)-443(mia\\252a)-443(t)28(w)28(arz)-443(s)-1(r)1(og\\241,)-443(zac)-1(i)1(\\246)-1(t\\241,)-442(nierozp)-28(oznan)1(\\241,)-443(j)1(ak)-443(ta)-442(no)-28(c,)-443(co)-443(j)1(u\\273)-443(s)-1(z\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)-1(za)-56(j)1(ona)-333(w)-1(skro\\261)-333(w)-1(i)1(c)27(hr)1(\\363)28(w)-1(,)-333(\\261nieg\\363)28(w,)-334(t)1(uman\\363)28(w)-334({)-333(ws)-1(kr)1(\\363\\261)-334(\\261w)-1(i)1(ata.)]TJ 27.879 -13.549 Td[(Zda)28(w)28(a\\252a)-437(si\\246)-437(ni)1(c)-437(nie)-437(wid)1(z)-1(i)1(e)-1(\\242,)-437(i)-436(n)1(a)-437(ni)1(c)-437(nie)-437(b)1(ac)-1(zy\\242,)-437(siedzia\\252a)-437(zatopi)1(ona)-436(w)]TJ -27.879 -13.549 Td[(mro)-28(cz)-1(n)29(yc)27(h)-257(m)27(y)1(\\261)-1(leni)1(ac)27(h,)-257(a)-258(w)28(c)-1(i)1(\\241\\273)-258(o)-258(jedn)29(ym:)-258(o)-257(An)28(tk)28(o)28(w)-1(y)1(m)-258(przeniewie)-1(r)1(s)-1(t)28(wie;)-258(tu)1(m)-1(an)]TJ 0 -13.549 Td[(si\\246)-475(w)-474(niej)-474(k\\252\\246bi)1(\\252)-1(,)-473(p)-28(e\\252e)-1(n)-474(ok)1(rw)28(a)27(wion)29(yc)27(h)-474(wzdyc)28(h\\363)28(w,)-474(jak)28(o)-474(to)-474(Jez)-1(u)1(s)-1(o)28(w)28(e)-475(c)-1(i)1(a\\252o)-475(n)1(a)]TJ 0 -13.55 Td[(kr)1(z)-1(y\\273u,)-322(p)-28(e\\252e)-1(n)-322(z)-1(ak)1(rze)-1(p)1(\\252)-1(y)1(c)27(h)-322(w)-323(l\\363)-28(d,)-322(a)-323(pal)1(\\241c)-1(yc)28(h)-323(\\252ez)-1(,)-322(p)-28(e\\252e)-1(n)-322(\\273ywyc)27(h,)-322(a)-323(zapiek\\252yc)27(h)-322(w)]TJ 0 -13.549 Td[(b)-27(ole)-1(\\261ci)-334(g\\252os\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-273(Wst)28(ydu)-272(ni)1(e)-274(ma,)-273(Boga)-273(s)-1(i)1(\\246)-274(n)1(ie)-274(b)-27(oi,)-272(to)-28(\\242)-274(j)1(akb)28(y)-272(z)-274(r)1(o)-28(dzon\\241)-273(matk)56(\\241)-273(s)-1(i)1(\\246)-274(spr)1(z)-1(\\241)-28(g\\252!)]TJ -27.879 -13.549 Td[(Jez)-1(u)1(s)-1(!)-333(Jez)-1(u)1(s)-1(!)]TJ 27.879 -13.549 Td[(Zgroza)-267(j)1(\\241)-266(p)-28(o)-28(d)1(e)-1(r)1(w)27(a\\252a)-266(kieb)28(y)-266(h)28(u)1(ragan,)-266(strac)28(h)-266(ni)1(\\241)-267(zatrz\\241s)-1(\\252,)-266(a)-266(p)-27(ote)-1(m)-266(z)-1(a)28(wrza\\252)-1(a)]TJ -27.879 -13.55 Td[(gni)1(e)-1(w)28(e)-1(m)-363(tak)-363(dzikim)-363(i)-363(m\\261)-1(ciwym,)-363(jak)-363(ten)-363(b)-27(\\363r,)-363(c)-1(o)-363(si\\246)-364(b)28(y)1(\\252)-364(p)1(rzygi\\241\\252)-363(nar)1(az)-364(i)-363(rzuci\\252)]TJ 0 -13.549 Td[(rozs)-1(r)1(o\\273)-1(on)29(y)-334(n)1(a)-334(wic)28(h)28(ur)1(\\246)-1(.)]TJ\nET\nendstream\nendobj\n920 0 obj <<\n/Type /Page\n/Contents 921 0 R\n/Resources 919 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n919 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n924 0 obj <<\n/Length 10310     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(286)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-229(C)-1(h)1(o)-28(d)1(\\271)-1(m)28(y)-230(p)1(r\\246dze)-1(j)1(,)-229(c)27(ho)-27(d\\271m)27(y!)-229({)-229(w)27(o\\252a\\252a)-229(z)-1(ar)1(z)-1(u)1(c)-1(a)-55(j\\241c)-230(b)1(rze)-1(mi\\246)-230(i)-229(p)1(rz)-1(y)1(gi\\246)-1(ta)-229(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273arem)-284(w)28(es)-1(z\\252a)-283(na)-283(dr)1(og\\246)-284(n)1(ie)-283(ogl\\241da)-55(j\\241c)-283(s)-1(i\\246)-283(za)-283(s)-1(tary)1(m)-1(,)-282(p)-28(ogan)1(ia\\252a)-283(j\\241)-283(n)1(ie)-1(zmo\\273)-1(on)1(a,)]TJ 0 -13.549 Td[(za)27(wzi\\246)-1(t)1(a)-334(z\\252o\\261)-1(\\242.)]TJ 27.879 -13.549 Td[({)-253(Zap\\252ac\\246)-254(ci)-253(za)-253(ws)-1(zystk)28(o,)-253(zap\\252ac)-1(\\246!)-253({)-253(sk)28(o)28(w)-1(y)1(c)-1(za\\252a)-253(dzik)28(o,)-253(ki)1(e)-1(j)-252(te)-254(t)1(op)-28(ole)-253(nagi)1(e)-1(,)]TJ -27.879 -13.549 Td[(rozkrzycz)-1(an)1(e)-1(,)-359(zmaga)-56(j)1(\\241c)-1(e)-359(s)-1(i\\246)-359(z)-360(wic)28(h)28(ur)1(\\241.)-359({)-359(Dos)-1(y)1(\\242)-360(j)1(u\\273)-359(te)-1(go,)-359(a)-359(to)-359(i)-359(k)56(amie\\253)-359(ju)1(\\273)-360(b)29(y)]TJ 0 -13.55 Td[(si\\246)-413(rozp)-27(\\246)-1(k\\252,)-412(gd)1(yb)28(y)-412(go)-412(robak)-412(tak)1(i)-412(przew)-1(i)1(e)-1(rca\\252!)-412(An)28(tek)-412(c)27(hce)-1(,)-412(to)-412(n)1(ie)-1(c)28(h)-412(pr)1(z)-1(epad)1(a,)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(h)-422(w)-423(k)56(arcz)-1(mie)-423(p)1(rze)-1(siadu)1(je,)-422(ale)-423(sw)27(o)-55(jej)-422(krzywdy)-422(ni)1(e)-423(dar)1(uj\\246,)-422(nie,)-422(z)-1(ap)1(\\252ac)-1(\\246)-423(j)1(e)-1(j)]TJ 0 -13.549 Td[(za)-343(wsz)-1(ystk)28(o!)-342(Zgni)1(j\\246)-343(za)-342(to)-342(w)-343(kr)1(e)-1(min)1(a)-1(l)1(e)-1(,)-342(to)-342(zgnij)1(\\246)-1(,)-342(al)1(e)-343(ju)1(\\273)-343(b)28(y)-342(spr)1(a)27(wiedl)1(iw)27(o\\261c)-1(i)-342(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-230(nie)-230(b)28(y)1(\\252o,)-230(\\273e)-1(b)28(y)-229(tak)56(a)-230(sp)-28(ok)28(o)-55(jn)1(ie)-230(c)27(ho)-27(dzi\\252a)-230(p)-27(o)-230(\\261w)-1(i)1(\\246)-1(tej)-230(ziem)-1(i)1(...)-229({)-230(pr)1(z)-1(em)27(y\\261liw)28(a\\252a)]TJ 0 -13.549 Td[(srogo,)-261(ale)-261(z)-262(w)28(olna)-261(p)1(rzygasa\\252)-1(y)-260(w)-262(n)1(iej)-261(z)-1(\\252o\\261c)-1(i)1(e)-262(i)-261(b)1(lad\\252y)84(,)-261(kiej)-261(t)1(e)-262(kwiat)28(y)-261(n)1(a)-261(m)-1(r)1(oz)-1(ie,)-261(b)-27(o)]TJ 0 -13.549 Td[(si\\252)-315(zac)-1(zyna\\252o)-314(br)1(ak)28(o)27(w)28(a\\242)-1(,)-314(ci\\246\\273)-1(ar)-314(j\\241)-314(pr)1(z)-1(ygn)1(iata\\252,)-314(s)-1(\\246ki)-314(wpij)1(a\\252y)-315(si\\246)-315(w)-315(p)1(lec)-1(y)-314(i)-314(c)27(ho)-27(c)-1(ia\\273)]TJ 0 -13.55 Td[(pr)1(z)-1(ez)-484(zapask)28(\\246)-484(i)-483(k)56(aftan)1(,)-483(a)-484(wgn)1(iata\\252y)-483(s)-1(i)1(\\246)-484(w)-484(\\273yw)28(e)-484(mi\\246)-1(so,)-483(ramion)1(a)-484(j)1(\\241)-483(s)-1(tr)1(as)-1(znie)]TJ 0 -13.549 Td[(b)-27(ola\\252y)83(,)-328(a)-329(z)-1(a\\261)-329(ten)-329(w)28(\\246)-1(ze)-1(\\252)-329(p)1(\\252ac)27(h)28(t)28(y)84(,)-329(zakr\\246c)-1(on)28(y)-328(w)-329(kij,)-328(wrz)-1(y)1(na\\252)-329(si\\246)-329(w)-330(gar)1(dzie)-1(l)-328(i)-329(d)1(usi\\252,)]TJ 0 -13.549 Td[(sz)-1(\\252a)-333(c)-1(or)1(az)-334(w)27(ol)1(niej)-333(i)-333(c)-1(i\\246\\273e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Droga)-340(b)28(y\\252a)-340(k)28(opn)1(a,)-341(za)28(w)27(al)1(ona)-340(z)-1(aspami)-340(i)-341(ot)28(w)28(arta)-340(na)-340(przes)-1(tr)1(z)-1(a\\252)-341(l)1(a)-341(wiatr)1(\\363)27(w,)]TJ -27.879 -13.549 Td[(\\273e)-323(top)-27(ole)-323(z)-322(obu)-321(s)-1(tr)1(on)-322(ledwie)-323(b)29(y\\252y)-322(widn)1(e)-323(w)-322(kur)1(z)-1(a)28(wie,)-322(s)-1(ta\\252y)-322(c)28(h)28(wie)-1(j)1(n)28(ym,)-322(ni)1(e)-1(sk)28(o\\253-)]TJ 0 -13.55 Td[(cz)-1(on)28(y)1(m)-340(s)-1(zere)-1(gi)1(e)-1(m,)-339(s)-1(zumia\\252y)-339(rozpacz)-1(n)1(ie)-340(tar)1(ga)-56(j\\241c)-339(s)-1(i\\246)-339(kiej)-339(te)-340(pt)1(aki)-339(p)-28(op)1(l\\241tan)1(e)-340(w)27(e)]TJ 0 -13.549 Td[(wn)28(yk)56(ac)27(h)1(,)-342(b)1(ij\\241ce)-343(n)1(a)-342(o\\261le)-1(p)-341(skrzyd\\252ami,)-342(r)1(oz)-1(k)1(rz)-1(y)1(c)-1(zane.)-342(Wi)1(c)27(her)-342(j)1(akb)28(y)-341(ju\\273)-342(tr)1(ac)-1(i\\252)-342(n)1(a)]TJ 0 -13.549 Td[(mo)-28(c)-1(y)84(,)-301(p)1(rzyc)-1(i)1(c)27(ha\\252)-301(g\\363r)1(\\241,)-301(ale)-301(n)1(atom)-1(i)1(as)-1(t)-301(coraz)-301(w\\261)-1(cieklej)-301(tar)1(z)-1(a\\252)-301(si\\246)-301(na)-301(p)-27(olac)27(h)1(,)-301(z)-301(obu)]TJ 0 -13.549 Td[(stron)-310(drogi)1(,)-311(n)1(a)-311(r\\363)28(wniac)28(h,)-310(w)-311(p)-28(osz)-1(ar)1(z)-1(a\\252yc)28(h)-311(i)-310(m)-1(\\246tn)28(yc)28(h)-311(d)1(alac)27(h)-310(k)28(ot\\252o)28(w)27(a\\252a)-310(w)27(ci\\241\\273)-311(z)-1(a-)]TJ 0 -13.549 Td[(wieja,)-265(t)28(y)1(s)-1(i\\241ce)-265(w)-1(i)1(r\\363)28(w)-265(z)-1(a)28(w)28(o)-28(dzi\\252o)-265(di)1(ab)-28(elski)-265(tan)1(,)-265(t)28(ysi\\241ce)-266(k)1(\\252\\246)-1(b)-27(\\363)27(w)-265(zry)1(w)27(a\\252o)-265(si\\246)-265(z)-266(ziem)-1(i)1(,)]TJ 0 -13.55 Td[(to)-28(cz)-1(y)1(\\252o,)-322(n)1(arasta\\252o,)-322(k)1(ie)-1(b)28(y)-321(te)-322(wielgac)27(h)1(ne)-322(b)1(ia\\252e)-322(wrze)-1(ciona)-321(fu)1(rk)28(o)-28(cz)-1(\\241ce,)-322(t)28(ysi\\241ce)-322(kup)]TJ 0 -13.549 Td[(ogromn)28(yc)28(h,)-354(stog\\363)28(w)-355(p)-27(o)28(w)-1(i)1(c)27(hr)1(z)-1(on)28(y)1(c)27(h,)-354(gr)1(ob)-28(el)-354(sz)-1(\\252o)-354(p)-28(o)-354(p)-27(olac)27(h)1(,)-354(ru)1(c)27(ha\\252o)-354(si\\246)-1(,)-354(k)1(\\252\\246)-1(b)1(i\\252o,)]TJ 0 -13.549 Td[(w)-448(o)-27(c)-1(zac)27(h)-447(ros\\252o,)-447(p)-28(o)-27(dnosi\\252o)-447(w)-448(g\\363r\\246,)-447(s)-1(i)1(\\246)-1(ga\\252o,)-447(z)-1(d)1(a)-448(si\\246,)-447(nieba,)-447(p)1(rz)-1(y)1(s)-1(\\252ani)1(a\\252o)-448(\\261wiat)]TJ 0 -13.549 Td[(i)-451(p)-27(\\246k)55(a\\252o)-451(ze)-452(\\261wiste)-1(m)-451(i)-451(wrza)28(w)27(\\241.)-450(Jakb)28(y)-451(t)28(ym)-451(k)28(ot\\252em)-452(got)1(uj\\241cym)-451(s)-1(i)1(\\246)-1(,)-450(prze)-1(p)-27(e\\252nio-)]TJ 0 -13.549 Td[(n)28(ym)-297(b)1(ia\\252ym)-297(wrz\\241tkiem)-1(,)-296(rozkip)1(ion)28(ym,)-297(ok)1(ryt)28(ym)-297(os\\246)-1(d)1(z)-1(i)1(e)-1(li)1(z)-1(n\\241)-296(i)-297(p)1(arami)-297(lo)-27(do)28(wym)-1(i)1(,)]TJ 0 -13.55 Td[(widzia\\252a)-333(s)-1(i)1(\\246)-334(c)-1(a\\252a)-333(z)-1(i)1(e)-1(mia.)]TJ 27.879 -13.549 Td[(A)-343(z)-1(ews)-1(z\\241d)-343(wraz)-344(z)-343(no)-28(c)-343(s)-1(z\\252o)-343(t)28(ys)-1(i\\241ce)-344(g\\252os\\363)28(w)-1(,)-343(p)-27(o)-28(d)1(nosi\\252y)-343(s)-1(i)1(\\246)-344(z)-344(ziem)-1(i,)-343(sycz)-1(a\\252y)]TJ -27.879 -13.549 Td[(g\\363r\\241,)-448(grzm)-1(i)1(a\\252)-1(y)-448(ws)-1(z\\246)-1(d)1(z)-1(ie,)-449(j)1(akie\\261)-449(p)-28(o\\261wis)-1(t)28(y)-448(kieb)28(y)-449(b)1(atami)-449(sie)-1(k\\252y)-448(naok)28(\\363\\252,)-448(to)-449(gra-)]TJ 0 -13.549 Td[(ni)1(a)-314(nieroze)-1(znan)1(e)-315(d)1(rga\\252y)-314(nad)-313(z)-1(i)1(e)-1(mi\\241,)-314(to)-314(sz)-1(u)1(m)27(y)-314(b)-27(or\\363)28(w)-314(h)28(u)1(c)-1(za\\252y)-314(nib)29(y)-314(ta)-314(organ)1(o)27(w)28(a)]TJ 0 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(a)-384(w)-384(cz)-1(as)-384(P)28(o)-28(d)1(nies)-1(i)1(e)-1(n)1(ia,)-384(to)-384(jak)1(ie)-1(\\261)-384(krzyki)1(,)-384(d\\252ugi)1(e)-1(,)-384(\\273a\\252os)-1(n)1(e)-1(,)-383(roz)-1(d)1(z)-1(i)1(e)-1(ra\\252y)-383(p)-28(o-)]TJ 0 -13.55 Td[(wietrze)-1(,)-296(j)1(akb)28(y)-295(krzyki)-295(ptak)28(\\363)28(w)-296(z)-1(b)1(\\252\\241k)55(an)29(yc)27(h)1(,)-296(jak)1(ie)-1(\\261)-296(sk)28(o)27(wycz)-1(\\241ce,)-296(s)-1(t)1(ras)-1(zne)-296(\\252k)56(ania,)-295(to)]TJ 0 -13.549 Td[(c)27(h)1(ic)27(h)1(ot)28(y)83(,)-390(to)-391(t)1(e)-392(ostre,)-390(s)-1(u)1(c)27(he)-391(p)-27(o\\261w)-1(i)1(s)-1(t)28(y)-390(top)-28(ol)1(i)-391(k)28(o\\252ysz\\241c)-1(yc)28(h)-390(s)-1(i\\246)-391(w)-391(m\\246tn)28(yc)28(h,)-390(bia\\252a-)]TJ 0 -13.549 Td[(wyc)27(h)-333(k)1(urza)28(w)27(ac)28(h,)-333(ni)1(b)28(y)-333(s)-1(tr)1(as)-1(zne)-334(ma)-55(jaki)-333(z)-334(p)-27(o)28(wyc)-1(i)1(\\241)-28(gan)28(ymi)-333(ku)-333(ni)1(e)-1(b)1(u)-333(ramionami.)]TJ 27.879 -13.549 Td[(Nic)-283(nie)-283(roze)-1(zna\\252)-283(i)-283(n)1(a)-283(krok)-283(j)1(e)-1(d)1(e)-1(n)1(,)-283(\\273e)-284(Han)1(k)55(a)-283(omac)27(ki)1(e)-1(m)-283(pr)1(a)27(wie)-283(s)-1(i)1(\\246)-284(wlek\\252a)-283(o)-28(d)]TJ -27.879 -13.549 Td[(top)-27(oli)-333(do)-333(top)-27(oli,)-333(o)-28(d)1(p)-28(o)-27(c)-1(zyw)27(a\\252a)-333(cz)-1(\\246s)-1(to,)-333(z)-334(p)1(rze)-1(r)1(a\\273)-1(eniem)-334(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241c)-334(t)28(yc)28(h)-333(g\\252os)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-296(jak)56(\\241\\261)-298(t)1(op)-28(ol\\241)-297(cz)-1(ern)1(ia\\252)-297(przycz)-1(a)-55(jon)28(y)-296(z)-1(a)-56(j)1(\\241c)-1(zek,)-297(kt\\363r)1(e)-1(n)-297(n)1(a)-297(jej)-297(widok)-296(rym-)]TJ -27.879 -13.55 Td[(n\\241\\252)-350(w)-351(za)28(wie)-1(j)1(\\246)-1(,)-350(\\273e)-351(go)-350(p)-28(or)1(w)27(a\\252a)-350(jak)1(b)28(y)-350(w)-351(p)1(az)-1(u)1(ry)83(,)-350(a\\273)-350(b)-28(ek)-350(s)-1(i\\246)-350(rozle)-1(g\\252)-350(b)-27(ole)-1(sn)28(y)-350(w)-350(ku-)]TJ 0 -13.549 Td[(rza)28(w)-1(i)1(e)-1(.)-272(P)28(atrza\\252a)-273(za)-273(n)1(im)-273(z)-273(p)-27(olito)28(w)27(an)1(iem)-1(,)-272(b)-27(o)-273(ju)1(\\273)-273(ru)1(c)27(ha\\242)-273(si\\246)-273(ni)1(e)-273(m)-1(og\\252a,)-272(pr)1(z)-1(ygi)1(na\\252a)]TJ 0 -13.549 Td[(si\\246)-300(c)-1(or)1(a)-1(z)-300(n)1(i\\273e)-1(j)-299(i)-300(l)1(e)-1(d)1(w)-1(i)1(e)-301(n)1(ogi)-300(p)-27(otra\\014)1(\\252a)-300(wyci\\241)-28(ga\\242)-300(z)-1(e)-300(\\261niegu,)-299(tak)-299(j\\241)-300(p)1(rzygniat)1(a\\252)-1(o)-299(to)]TJ 0 -13.549 Td[(br)1(z)-1(emi\\246)-1(,)-336(i\\273)-336(z)-1(d)1(a)28(w)27(a\\252o)-336(s)-1(i\\246)-336(jej)-336(c)27(h)29(w)-1(il)1(am)-1(i)1(,)-336(jak)28(o)-336(d\\271w)-1(i)1(ga)-337(n)1(a)-336(s)-1(ob)1(ie)-337(zim\\246)-1(,)-336(\\261niegi,)-336(wic)27(h)1(ry)84(,)]TJ 0 -13.549 Td[(ca\\252)-1(y)-446(\\261wiat)-447(zgo\\252a)-447(i)-446(\\273e)-447(z)-1(a)28(ws)-1(ze)-447(tak)-446(sz)-1(\\252a)-446(\\261)-1(miertelnie)-446(w)-1(ycze)-1(rp)1(ana,)-446(ledwie)-447(\\273yw)28(a)-447(z)]TJ 0 -13.55 Td[(ut)1(rud)1(z)-1(eni)1(a,)-303(z)-303(okrw)28(a)28(wion\\241,)-302(pr)1(z)-1(es)-1(m)28(utn)1(\\241)-303(du)1(s)-1(z\\241)-303(w)-303(sobie,)-302(i)-303(za)27(wsz)-1(e)-303(d)1(o)-303(k)28(o\\253ca)-303(\\261wiata)]TJ 0 -13.549 Td[(tak)-455(w)-1(l)1(e)-1(c)-456(si\\246)-456(b)-28(\\246dzie,)-456(za)27(wsz)-1(e.)-456(S)1(trasz)-1(n)1(ie)-456(s)-1(i)1(\\246)-457(j)1(e)-1(j)-455(d)1(\\252u\\273y\\252o,)-456(d)1(roga)-456(j)1(akb)28(y)-455(nie)-456(mia\\252a)]TJ\nET\nendstream\nendobj\n923 0 obj <<\n/Type /Page\n/Contents 924 0 R\n/Resources 922 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n922 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n927 0 obj <<\n/Length 9616      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(287)]TJ -358.232 -35.866 Td[(k)28(o\\253ca,)-409(a)-410(ci\\246)-1(\\273ar)-409(tak)-409(przygn)1(iata\\252,)-409(i\\273)-410(c)-1(or)1(az)-410(c)-1(z\\246)-1(\\261cie)-1(j)-409(p)1(rzywie)-1(r)1(a\\252a)-410(p)-27(o)-28(d)-409(dr)1(z)-1(ew)27(ami)-409(i)]TJ 0 -13.549 Td[(coraz)-318(d\\252u)1(\\273)-1(ej)-317(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-317(om)-1(r)1(o)-28(c)-1(zona,)-317(n)1(a)-318(p)-27(\\363\\252)-318(p)1(rzytom)-1(n)1(a,)-317(c)27(h\\252o)-27(dzi\\252a)-318(\\261niegiem)-318(rozpa-)]TJ 0 -13.549 Td[(lon)1(a)-262(t)28(w)27(arz,)-262(p)1(rze)-1(cie)-1(r)1(a\\252a)-262(o)-28(c)-1(zy)84(,)-262(trze)-1(\\271wi\\252a)-262(s)-1(i)1(\\246)-1(,)-262(j)1(ak)-262(mog\\252a,)-262(a)-262(w)28(c)-1(i\\241\\273)-262(jak)1(b)28(y)-262(zapada\\252a)-262(n)1(a)]TJ 0 -13.549 Td[(sam)-1(o)-310(dn)1(o)-311(tej)-310(rozkrzycz)-1(an)1(e)-1(j)1(,)-310(lutej)-310(rozwie)-1(i)-310(\\273ywio\\252\\363)28(w)-1(.)-310(Jeno)-310(p)-27(op\\252akiw)28(a\\252a)-311(\\273a\\252o\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(\\252z)-1(y)-429(sam)-1(e)-430(si\\246)-430(la\\252y)-429(trysk)56(a)-56(j\\241c)-430(z)-430(t)28(yc)28(h)-429(na)-56(j)1(g\\252\\246)-1(b)1(s)-1(zyc)27(h)1(,)-430(u)1(ta)-56(j)1(on)28(yc)28(h)-430(sm)27(u)1(tk)28(\\363)28(w)-430(c)-1(z\\252o)28(w)-1(i)1(e)-1(-)]TJ 0 -13.55 Td[(cz)-1(yc)28(h,)-343(z)-344(s)-1(ame)-1(go)-343(dn)1(a)-344(se)-1(r)1(c)-1(a)-344(r)1(oz)-1(d)1(artego,)-344(z)-344(tego)-344(skrzyb)-27(otu)-343(gin)1(\\241c)-1(yc)28(h)-344(b)-27(ez)-344(ratu)1(nku)1(,)]TJ 0 -13.549 Td[(cz)-1(ase)-1(m)-383(za\\261)-1(,)-382(ale)-383(rzadk)28(o,)-382(b)-28(o)-383(zap)-27(om)-1(i)1(na\\252a)-383(o)-383(wsz)-1(ystki)1(m)-1(,)-382(m)-1(o)-27(dli\\252a)-382(s)-1(i\\246,)-383(sz)-1(ept)1(a\\252)-1(a)-382(pa-)]TJ 0 -13.549 Td[(cie)-1(r)1(z)-1(e)-315(j\\246kliwym)-315(g\\252os)-1(em,)-315(\\242)-1(wierk)56(a\\252a)-315(je)-315(w)-316(sobi)1(e)-316(p)-27(orw)28(an)28(ymi)-315(s)-1(\\252o)28(wy)-315(kiej)-315(ten)-315(p)1(tasz)-1(ek)]TJ 0 -13.549 Td[(marzn\\241cy)83(,)-303(kt\\363ren)-303(t)27(y)1(lk)28(o)-304(ki)1(e)-1(j)1(\\261)-305(n)1(iekiej)-304(zatrze)-1(p)1(ie)-304(skrzyd\\252em)-1(,)-303(a)-304(\\273e)-304(ju\\273)-304(mo)-28(cy)-304(n)1(ijak)1(ie)-1(j)]TJ 0 -13.549 Td[(ni)1(e)-334(ma,)-334(t)1(o)-334(p)1(rz)-1(y)1(s)-1(iad)1(a,)-333(tul)1(i)-334(si\\246,)-333(piu)1(k)56(a)-334(i)-333(wraz)-334(zapad)1(a)-334(w)-333(c)-1(or)1(az)-334(g\\252\\246)-1(b)1(s)-1(z\\241)-333(s)-1(enn)1(o\\261)-1(\\242!)]TJ 27.879 -13.549 Td[(Drga\\252a)-342(n)1(araz)-342(p)-27(oryw)28(a)-56(j)1(\\241c)-343(si\\246)-342(z)-343(miejsc)-1(a)-341(w)-1(y)1(s)-1(tr)1(as)-1(zona,)-342(zda\\252o)-342(si\\246)-342(jej)-341(b)-28(o)28(wiem)-1(,)]TJ -27.879 -13.55 Td[(i\\273)-334(s\\252ysz)-1(y)-333(jak)1(ie)-1(\\261)-333(p\\252ak)56(ania)-333(i)-333(pr)1(z)-1(y)1(z)-1(ywy)-333(dziec)-1(i\\253)1(s)-1(k)1(ie)-1(,)-333(j)1(akb)28(y)-333(to)-333(jej)-333(Pi)1(e)-1(tr)1(u\\261)-334(w)28(o\\252a\\252!)]TJ 27.879 -13.549 Td[(I)-308(b)1(ieg\\252)-1(a)-307(z)-1(n)1(o)28(w)-1(u)-307(ca\\252\\241)-308(mo)-28(c)-1(\\241,)-307(p)-27(ot)28(yk)55(a\\252a)-307(s)-1(i)1(\\246)-309(o)-307(z)-1(w)28(a\\252y)83(,)-307(pl)1(\\241ta\\252a)-308(w)-308(zas)-1(p)1(ac)27(h,)-307(a)-308(sz\\252)-1(a)]TJ -27.879 -13.549 Td[(gnan)1(a)-379(trw)28(og\\241)-380(o)-379(d)1(z)-1(ieci,)-379(kt\\363ra)-379(wsta\\252a)-380(w)-379(ni)1(e)-1(j)-379(z)-379(nag\\252a)-379(i)-379(kieb)28(y)-379(b)1(ic)-1(ze)-1(m)-379(p)-27(op)-28(\\246dza\\252a,)]TJ 0 -13.549 Td[(\\273e)-334(ju)1(\\273)-334(ni)1(e)-334(c)-1(zu\\252a)-333(z)-1(m\\246c)-1(ze)-1(n)1(ia)-333(ni)-333(z)-1(i)1(m)-1(n)1(a.)]TJ 27.879 -13.549 Td[(Z)-340(wiatr)1(e)-1(m)-340(d)1(obieg\\252o)-340(j)1(\\241)-340(jak)1(ie)-1(\\261)-340(d)1(z)-1(w)28(oni)1(e)-1(n)1(ie)-1(,)-339(br)1(z)-1(\\246k)-340(or)1(c)-1(zyk)28(\\363)28(w)-340(i)-339(g\\252)-1(osy)-339(lud)1(z)-1(ki)1(e)-1(,)]TJ -27.879 -13.55 Td[(ale)-426(tak)-425(rozpad\\252e,)-426(\\273e)-426(c)27(h)1(o)-28(\\242)-426(pr)1(z)-1(ystan\\246\\252a)-426(n)1(as)-1(\\252u)1(c)27(h)28(uj)1(\\241c)-1(,)-425(ni)1(e)-426(z)-1(ebra\\252a)-425(ni)-425(s)-1(\\252o)28(w)27(a,)-425(kto\\261)]TJ 0 -13.549 Td[(jedn)1(ak)-333(jec)27(ha\\252)-333(za)-334(n)1(i\\241)-333(i)-334(b)29(y\\252)-334(coraz)-333(bli\\273ej,)-333(a\\273)-334(si\\246)-334(wy\\252oni)1(\\252)-1(y)-333(z)-333(kur)1(z)-1(a)28(wy)-333(\\252)-1(b)29(y)-333(k)27(o\\253)1(s)-1(k)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-237(O)1(jco)27(w)28(e!)-237({)-236(s)-1(ze)-1(p)1(n\\246\\252a)-237(d)1(o)-56(jr)1(z)-1(a)28(ws)-1(zy)-236(bia\\252\\241)-236(\\252ys)-1(i)1(c)-1(\\246)-237(\\271rebicy)-236(i)-237(r)1(usz)-1(y\\252a)-236(nie)-237(cz)-1(ek)56(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[(Nie)-390(om)28(yli\\252a)-389(s)-1(i\\246,)-389(B)-1(or)1(yna)-389(to)-390(p)-27(o)28(w)-1(r)1(ac)-1(a\\252)-389(z)-1(e)-390(s\\241d\\363)28(w)-390(z)-390(Wi)1(tkiem)-390(i)-390(J)1(am)27(br)1(o\\273)-1(y)1(m)-1(;)]TJ -27.879 -13.549 Td[(jec)27(h)1(ali)-358(z)-358(w)28(olna,)-357(gdy\\273)-358(pr)1(z)-1(ez)-358(z)-1(asp)28(y)-358(l)1(e)-1(d)1(w)-1(i)1(e)-359(si\\246)-358(b)28(y\\252o)-358(mo\\273)-1(n)1(a)-358(pr)1(z)-1(ek)28(opa\\242,)-358(a)-358(n)1(a)28(w)27(et)-358(w)]TJ 0 -13.55 Td[(gorsz)-1(y)1(c)27(h)-342(mie)-1(j)1(s)-1(cac)27(h)-342(m)28(usie)-1(l)1(i)-343(k)56(an)1(ie)-343(pr)1(z)-1(epro)28(w)28(adza\\242)-343(z)-1(a)-342(uzdy)1(;)-343(snad)1(\\271)-343(b)28(yli)-342(n)1(ie)-1(zgorze)-1(j)]TJ 0 -13.549 Td[(nap)1(ici,)-353(b)-28(o)-353(ra)-55(jco)28(w)27(ali)-353(z)-353(prze\\261)-1(miec)27(hami)-353(g\\252o\\261)-1(n)29(ym)-1(i)1(,)-353(a)-354(Jam)28(br)1(o\\273)-1(y)-353(cz)-1(\\246s)-1(to)-353(p)-27(o)-28(d\\261pi)1(e)-1(wy-)]TJ 0 -13.549 Td[(w)28(a\\252)-334(p)-27(o)-334(sw)28(o)-56(jem)27(u)1(,)-333(nie)-333(bacz)-1(\\241c)-334(n)1(a)-334(zamie)-1(\\242.)]TJ 27.879 -13.549 Td[(Hank)56(a)-390(u)1(s)-1(t\\241)-28(p)1(i\\252a)-390(z)-391(d)1(rogi,)-389(naci\\241)-28(ga)-56(j)1(\\241c)-391(c)28(h)28(ustk)28(\\246)-391(b)1(arze)-1(j)-389(na)-390(o)-28(cz)-1(y)84(,)-390(ale)-390(mim)-1(o)-390(to)]TJ -27.879 -13.549 Td[(stary)-300(przy)-300(w)-1(ymij)1(aniu)-300(p)-27(ozna\\252)-301(j)1(\\241)-301(zaraz)-301(z)-301(pierwsz)-1(ego)-301(rzut)1(u)-301(i)-300(pr)1(z)-1(y)1(\\252)-1(o\\273y\\252)-301(k)28(on)1(iom)-301(p)-27(o)]TJ 0 -13.55 Td[(bacie,)-352(b)28(y)-352(p)1(r\\246dze)-1(j)-351(przejec)27(ha\\242,)-352(sz)-1(k)56(ap)28(y)-352(p)-27(o)-28(d)1(e)-1(r)1(w)27(a\\252y)-352(si\\246)-352(z)-353(miejsc)-1(a)-352(i)-352(wn)1(e)-1(t)-352(u)1(tkn\\246\\252y)-352(w)]TJ 0 -13.549 Td[(no)28(w)28(e)-1(j)-253(zas)-1(p)1(ie)-1(;)-253(wtedy)-253(ob)-28(ejr)1(z)-1(a\\252)-253(s)-1(i\\246)-254(i)-253(ws)-1(tr)1(z)-1(y)1(m)-1(a\\252)-253(k)27(on)1(ie,)-254(a)-253(gdy)-253(s)-1(i)1(\\246)-254(w)-1(y)1(\\252oni\\252a)-253(z)-254(kur)1(z)-1(a)28(wy)]TJ 0 -13.549 Td[(i)-333(z)-1(r)1(\\363)28(w)-1(n)1(a\\252a)-334(z)-334(sani)1(am)-1(i)1(,)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(Zw)27(al)-333(dr)1(z)-1(ew)27(o)-333(w)-333(p)-28(\\363\\252k)28(osz)-1(ki)1(,)-334(p)1(rzysi\\241d\\271,)-333(p)-28(o)-27(dwie)-1(z\\246)-334(ci\\246.)]TJ 0 -13.549 Td[(T)83(ak)-353(b)29(y\\252a)-353(na)28(wyk\\252a)-353(d)1(o)-353(o)-56(jco)28(wyc)27(h)-352(przyk)56(az)-1(\\363)28(w,)-353(\\273e)-354(sp)-27(e)-1(\\252ni)1(\\252a)-353(w)-1(sz)-1(y)1(s)-1(tk)28(o)-353(b)-27(ez)-354(w)28(a-)]TJ -27.879 -13.55 Td[(han)1(ia.)]TJ 27.879 -13.549 Td[({)-304(Bylic\\246)-305(zabr)1(ali)-304(Bartek,)-304(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-304(an)1(o)-304(p)-28(o)-28(d)-303(dr)1(z)-1(ew)27(em)-305(i)-303(p\\252ak)56(a\\252)-1(,)-303(jad)1(\\241)-305(za)-304(nami.)]TJ 0 -13.549 Td[(Nie)-384(o)-28(dr)1(z)-1(ek\\252a,)-384(z)-1(ap)1(atrzona)-384(p)-28(on)29(uro)-384(w)-384(m)-1(\\241t)28(w)28(\\246)-385(n)1(o)-28(c)-1(y)-384(i)-384(ku)1(rza)28(w)-1(y)84(,)-384(jak)56(a)-384(s)-1(i)1(\\246)-385(s)-1(r)1(o-)]TJ -27.879 -13.549 Td[(\\273y\\252a)-339(do)-28(ok)28(o\\252a,)-339(siedzia\\252a)-339(s)-1(ku)1(lona)-339(n)1(a)-339(pr)1(z)-1(edn)1(im)-340(siedze)-1(n)1(iu)-339(d)1(ygo)-28(cz)-1(\\241c)-339(z)-340(u)1(trud)1(z)-1(eni)1(a)-339(i)]TJ 0 -13.549 Td[(ni)1(e)-396(m)-1(og\\241c)-396(j)1(e)-1(sz)-1(cze)-396(m)27(y\\261li)-395(p)-28(ozbi)1(e)-1(ra\\242,)-395(a)-396(stary)-395(pr)1(z)-1(ygl)1(\\241da\\252)-396(si\\246)-396(j)1(e)-1(j)-395(d)1(\\252)-1(u)1(go)-396(i)-395(u)28(w)28(a\\273)-1(n)1(ie.)]TJ 0 -13.549 Td[(Zmiz)-1(ero)28(w)28(ana)-435(b)28(y)1(\\252)-1(a,)-434(\\273e)-436(a\\273)-435(li)1(to\\261)-1(\\242)-435(br)1(a\\252a)-435(patr)1(z)-1(e\\242)-435(na)-435(j)1(e)-1(j)-434(t)28(w)27(ar)1(z)-435(w)-1(y)1(c)27(h)28(u)1(dzon\\241,)-435(sin)1(\\241,)]TJ 0 -13.55 Td[(p)-27(o)-28(o)-28(d)1(m)-1(r)1(a\\273)-1(an\\241,)-316(o)-28(cz)-1(y)-316(mia\\252a)-317(zapu)1(c)27(h)1(\\252)-1(e)-317(o)-27(d)-317(p)1(\\252ac)-1(z\\363)28(w)-1(,)-316(a)-316(usta)-317(zac)-1(i\\246te)-317(b)-27(ole)-1(\\261ni)1(e)-1(,)-316(trz\\246)-1(s\\252a)]TJ 0 -13.549 Td[(si\\246)-334(ca\\252)-1(a)-333(z)-334(u)1(m)-1(\\246c)-1(zenia)-333(i)-333(z)-1(i)1(m)-1(n)1(a,)-333(pr\\363\\273no)-333(obt)1(ula)-55(j\\241c)-334(w)-333(p)-28(o)-27(dart\\241)-333(c)27(h)29(u\\261c)-1(in)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(nn)1(a\\261)-334(s)-1(i)1(\\246)-334(o)-28(c)27(h)1(rani)1(a\\242)-1(,)-333(w)-333(takim)-334(stan)1(ie)-334(ni)1(e)-1(tr)1(udn)1(o)-333(o)-334(c)28(horob)-27(\\246...)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(t\\363\\273)-334(to)-333(z)-1(a)-333(m)-1(n)1(ie)-334(zrob)1(i?)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(c)-1(ic)28(ho.)]TJ 0 -13.549 Td[({)-333(Na)-334(tak)1(i)-333(c)-1(zas)-334(wybiera\\242)-333(s)-1(i\\246)-333(do)-333(b)-28(or)1(u!)]TJ 0 -13.55 Td[({)-333(Drze)-1(w)28(a)-334(zbr)1(ak\\252o,)-333(w)27(ar)1(z)-1(y)-333(ni)1(e)-334(b)28(y\\252o)-333(pr)1(z)-1(y)-333(cz)-1(ym)-333(z)-1(goto)28(w)28(a\\242)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(\\252opaki)-333(zdr)1(o)27(w)28(e)-1(?)]TJ\nET\nendstream\nendobj\n926 0 obj <<\n/Type /Page\n/Contents 927 0 R\n/Resources 925 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n925 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n930 0 obj <<\n/Length 9047      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(288)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-461(Pietru)1(\\261)-462(c)27(hor)1(z)-1(a\\252)-461(b)-28(ez)-462(par)1(\\246)-462(niedziel,)-461(ale)-462(ju)1(\\273)-462(tak)-462(ca\\252kiem)-462(wydob)1(rza\\252,)-462(\\273e)]TJ -27.879 -13.549 Td[(teraz)-448(d)1(w)27(a)-447(r)1(az)-1(y)-447(t)28(yl)1(e)-448(b)28(y)-447(j)1(ad\\252)-447({)-447(o)-28(dp)-27(o)28(wiada\\252a)-447(\\261m)-1(ia\\252o)-447(b)1(udz\\241c)-448(si\\246)-447(z)-448(o)-28(d)1(r\\246t)27(wieni)1(a,)]TJ 0 -13.549 Td[(o)-28(d)1(s)-1(\\252on)1(i\\252a)-447(z)-447(t)28(w)28(arzy)-447(c)28(h)28(ust\\246)-447(sp)-28(oziera)-56(j)1(\\241c)-447(m)27(u)-446(p)1(rosto)-447(w)-446(o)-28(c)-1(zy)-446(b)-28(ez)-447(d)1(a)27(wn)1(e)-1(go)-446(l\\246)-1(k)1(u)-446(i)]TJ 0 -13.549 Td[(ze)-1(strac)27(h)1(anej)-451(p)-28(ok)28(or)1(no\\261c)-1(i,)-451(stary)-451(z)-1(a\\261)-452(w)28(c)-1(i)1(\\241\\273)-452(z)-1(agad)1(yw)27(a\\252)-451(i)-452(p)29(yta\\252,)-452(a)-451(z)-1(d)1(umiew)27(a\\252)-451(s)-1(i\\246)]TJ 0 -13.549 Td[(wielc)-1(e)-283(nad)-282(jej)-283(p)1(rze)-1(mian\\241,)-282(nie)-283(m\\363g\\252)-284(si\\246)-283(b)-28(o)28(wiem)-284(d)1(os)-1(zuk)56(a\\242)-283(da)28(wnej)-283(Han)1(ki.)-283(Dziwn)28(y)84(,)]TJ 0 -13.55 Td[(mro\\273\\241c)-1(y)-252(sp)-28(ok)28(\\363)-55(j)-252(bi)1(\\252)-253(o)-28(d)-251(niej,)-252(a)-252(j)1(ak)55(a\\261)-252(m)-1(o)-28(c)-252(s)-1(k)56(amienia\\252a,)-252(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iw)27(a)-252(wid)1(nia\\252a)-252(w)-253(j)1(e)-1(j)]TJ 0 -13.549 Td[(zac)-1(i\\246t)28(yc)27(h)-246(w)28(argac)27(h)1(.)-247(Nie)-247(p)1(rze)-1(r)1(a\\273)-1(a\\252)-247(j)1(\\241)-247(j)1(ak)-247(da)28(wni)1(e)-1(j)1(,)-247(m\\363)28(w)-1(i)1(\\252a)-247(ni)1(b)28(y)-247(z)-247(r\\363)28(wn)28(ym)-247(a)-246(ob)-28(cym)]TJ 0 -13.549 Td[(o)-237(r)1(\\363\\273)-1(n)28(y)1(c)27(h)-236(rz)-1(ecz)-1(ac)27(h)-236(n)1(ie)-237(s)-1(k)56(ar\\273\\241c)-238(si\\246)-237(ani)-236(s)-1(\\252\\363)28(wkiem,)-237(ni)1(e)-238(\\273al\\241c...)-236(Odp)-27(o)28(w)-1(i)1(ada\\252a)-237(p)1(rosto,)]TJ 0 -13.549 Td[(do)-259(sk\\252adu)1(,)-259(a)-260(g\\252ose)-1(m)-259(dziwnie)-259(s)-1(u)1(ro)28(wym,)-260(p)1(rze)-1(cierpi)1(an)28(ym)-259(i)-260(p)1(rze)-1(z)-259(to)-259(jakb)28(y)-259(st\\246\\273)-1(a\\252ym)]TJ 0 -13.549 Td[(w)-227(c)28(hrop)1(a)28(w)27(\\241)-226(grud)1(\\246)-227(uta)-55(jon)28(y)1(c)27(h)-226(b)-28(ol)1(e)-1(\\253)1(,)-227(j)1(e)-1(n)1(o)-227(w)-227(o)-27(c)-1(zac)27(h)-226(ni)1(e)-1(b)1(ie)-1(skic)28(h,)-226(w)-1(y)1(p\\252ak)56(an)28(yc)28(h)-227(t)1(li\\252o)]TJ 0 -13.549 Td[(si\\246)-334(ostre)-334(zarze)-1(wie)-334(czuj\\241ce)-1(j)-332(m)-1(o)-28(cno)-333(d)1(usz)-1(y)84(.)]TJ 27.879 -13.55 Td[({)-333(Odmieni\\252a\\261)-333(s)-1(i\\246,)-333(widz\\246)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(i)1(e)-1(d)1(a)-334(\\252acniej)-333(pr)1(z)-1(eku)28(w)28(a)-334(cz\\252)-1(o)28(wiek)56(a)-334(n)1(i\\271)-1(l)1(i)-333(k)28(o)27(w)28(al)-333(\\273)-1(elazo.)]TJ 0 -13.549 Td[(Zdu)1(m)-1(i)1(a\\252)-319(si\\246)-319(n)1(ad)-318(o)-28(d)1(p)-28(o)28(wiedzi\\241,)-318(\\273e)-319(ni)1(e)-319(wie)-1(d)1(z)-1(i)1(a\\252,)-318(c)-1(o)-318(na)-318(to)-318(rze)-1(c,)-318(wi\\246c)-319(z)-1(wr)1(\\363)-28(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-285(do)-285(Jam)28(br)1(o\\273)-1(a)-285(m\\363)28(wi\\242)-285(o)-285(s)-1(p)1(ra)28(wie)-285(z)-1(e)-285(dw)28(orem,)-285(kt\\363r)1(\\241)-285(wbrew)-285(zap)-28(ewnieniom)-285(w)28(\\363)-56(j)1(ta)]TJ 0 -13.549 Td[(pr)1(z)-1(egra\\252)-333(i)-333(jes)-1(zc)-1(ze)-334(k)28(osz)-1(ta)-333(m)27(u)1(s)-1(i)1(a\\252)-334(zap\\252aci\\242)-1(:)]TJ 27.879 -13.55 Td[({)-333(Odb)1(ier\\246)-334(se)-1(,)-333(com)-334(strac)-1(i)1(\\252,)-334(o)-27(db)1(ie)-1(r)1(\\246)-1(..)1(.)-333({)-334(m\\363)28(w)-1(i)1(\\252)-334(sp)-28(ok)28(o)-55(jn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(ru)1(dno)-333(to)-333(b)-27(\\246)-1(d)1(z)-1(ie,)-333(dw)28(\\363r)-333(m)-1(a)-333(d\\252u)1(gie)-334(r)1(\\246)-1(ce)-334(i)-333(ws)-1(z\\246)-1(d)1(z)-1(ie)-333(p)-28(or)1(adzi)-334(si\\246)-334(zasta)27(wi\\242.)]TJ 0 -13.549 Td[({)-419(I)-419(na)-419(zas)-1(ta)28(w)28(\\246)-420(jest)-420(sp)-27(os)-1(\\363b)1(,)-419(na)-419(ws)-1(zystk)28(o)-419(jes)-1(t)-419(sp)-28(os\\363b,)-419(b)29(y)-419(ino)-419(cierpl)1(iw)27(o\\261\\242)]TJ -27.879 -13.549 Td[(mie)-1(\\242)-333(i)-333(p)-28(o)-28(cze)-1(k)56(a\\242)-334(n)1(a)-334(p)-27(or\\246.)]TJ 27.879 -13.549 Td[({)-486(W)83(asz)-1(a)-486(p)1(ra)28(w)-1(d)1(a,)-486(Macie)-1(j)1(u,)-486(al)1(e)-487(te)-1(\\273)-486(z)-1(i\\241b)1(,)-486(no,)-486(w)28(arta\\252ob)28(y)-486(d)1(o)-487(k)56(ar)1(c)-1(zm)27(y)-486(na)]TJ -27.879 -13.55 Td[(rozgrze)-1(wk)28(\\246)-334(wst\\241)-28(pi)1(\\242)-1(.)]TJ 27.879 -13.549 Td[({)-313(W)1(s)-1(t\\241)-27(pim)28(y)83(,)-312(ma)-313(b)28(y\\242)-313(k)1(w)27(a\\261no,)-312(ni)1(e)-1(c)27(h)-312(b)-27(\\246dzie)-313(kiej)-312(o)-28(c)-1(et.)-312(Ale)-313(p)-27(o)27(wiad)1(am)-313(w)28(am)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-294(ino)-293(k)28(o)28(w)27(al)-293(m)27(u)1(s)-1(i)-293(ku)1(\\242)-294(\\273)-1(elaz)-1(o,)-293(p)-27(\\363ki)-293(gor\\241c)-294(tr)1(z)-1(yma,)-293(c)-1(z\\252o)27(wiek,)-293(je\\261)-1(l)1(i)-294(c)28(hce)-294(c)-1(o)-293(wygra\\242,)]TJ 0 -13.549 Td[(na)-333(zimno)-333(m)27(u)1(s)-1(i)-333(ku)1(\\242)-334(dol\\246)-333(a)-334(w)-333(c)-1(i)1(e)-1(rp)1(liw)28(o\\261)-1(ci)-333(har)1(to)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(Do)-55(je\\273)-1(d)1(\\273)-1(ali)-389(do)-390(wsi,)-390(mrok)-389(s)-1(i\\246)-390(j)1(u\\273)-390(b)28(y\\252)-390(zrob)1(i\\252)-390(g\\246s)-1(t)28(y)-390(i)-389(wic)27(h)28(u)1(ra)-390(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252a,)]TJ -27.879 -13.55 Td[(ku)1(rzy\\252o)-309(jes)-1(zcz)-1(e)-309(galan)28(t)1(o)-309(p)-28(o)-308(dro)-27(dze)-1(,)-308(\\273)-1(e)-309(d)1(om)-1(\\363)28(w)-309(n)1(ie)-309(roz)-1(p)-27(ozna\\252,)-309(al)1(e)-309(z)-310(w)28(oln)1(a)-309(pr)1(z)-1(yci-)]TJ 0 -13.549 Td[(c)27(h)1(a\\252o)-334(n)1(a)-334(\\261wiec)-1(ie.)]TJ 27.879 -13.549 Td[(Na)-365(w)-1(p)1(rost)-365(dr\\363\\273ki)-365(do)-365(c)27(h)1(a\\252up)28(y)-365(stary)-365(wstrzym)-1(a\\252)-365(k)28(oni)1(e)-366(i)-365(gdy)-365(wysiad\\252a,)-365(p)-27(o-)]TJ -27.879 -13.549 Td[(maga\\252)-334(j)1(e)-1(j)-333(wzi\\241\\242)-334(br)1(z)-1(emi\\246)-334(na)-333(p)1(le)-1(cy)83(,)-333(a)-333(wres)-1(zc)-1(i)1(e)-334(rze)-1(k\\252)-333(z)-334(cic)27(h)1(a)-334(d)1(o)-334(n)1(iej)-333(t)28(ylk)28(o:)]TJ 27.879 -13.549 Td[({)-345(A)-345(z)-1(a)-55(jrzyj)-345(d)1(o)-345(m)-1(n)1(ie)-346(kt)1(\\363re)-1(go)-345(d)1(nia,)-345(c)28(ho)-28(\\242b)28(y)-345(ju)1(tro.)-345(M)1(iarku)1(j\\246,)-345(\\273)-1(e)-345(m)27(u)1(s)-1(i)-345(b)28(y)1(\\242)-346(z)]TJ -27.879 -13.55 Td[(w)28(am)-1(i)-403(kru)1(c)27(ho,)-403(ten)-404(\\252a)-55(jd)1(us)-404(pr)1(z)-1(epij)1(a)-404(wsz)-1(ystk)28(o,)-404(a)-403(t)28(y)-404(p)-27(e)-1(wn)1(ikiem)-404(m)-1(r)1(z)-1(es)-1(z)-404(g\\252o)-28(d)1(e)-1(m)-404(z)]TJ 0 -13.549 Td[(dzie\\242)-1(mi.)]TJ 27.879 -13.549 Td[({)-333(Wygn)1(ali\\261c)-1(ie)-333(nas,)-334(to)-333(gd)1(z)-1(ieb)28(ym)-333(z)-1(a\\261)-334(\\261mia\\252a)-334(p)1(rzyj\\261\\242)-1(.)]TJ 0 -13.549 Td[({)-231(G\\252u)1(pia\\261,)-231(jensz)-1(a)-231(t)1(o)-232(r)1(z)-1(ec)-1(z,)-231(n)1(ie)-232(t)28(w)28(o)-56(j)1(a,)-231(m)-1(\\363)28(wi\\246)-231(c)-1(i)1(,)-231(przyj)1(d\\271,)-231(z)-1(n)1(a)-56(j)1(dzie)-232(si\\246)-231(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(i)-333(dl)1(a)-334(w)28(as)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(ca\\252o)28(w)27(a\\252a)-274(go)-274(w)-275(r)1(\\246)-1(k)28(\\246)-274(i)-274(o)-28(dc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-274(b)-27(ez)-275(s\\252)-1(o)28(w)28(a,)-274(tak)-274(j\\241)-274(u)1(\\252api\\252o)-274(rozrze)-1(wni)1(e)-1(n)1(ie)]TJ -27.879 -13.55 Td[(za)-334(gr)1(dyk)28(\\246,)-333(\\273)-1(e)-334(g\\252osu)-333(ni)1(e)-334(m)-1(og\\252a)-333(wydob)29(y\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Przyj)1(dzie)-1(sz)-334(to?)-333({)-334(zap)28(yta\\252)-333(za)-334(n)1(i\\241)-333(dziwnie)-334(mi\\246tk)28(o)-333(i)-334(ciep\\252o.)]TJ 0 -13.549 Td[({)-333(Przyj)1(d\\246.)-333(B)-1(\\363g)-333(w)27(am)-333(z)-1(ap)1(\\252a\\242)-1(,)-333(kiej)-333(p)1(rz)-1(y)1(k)55(azuj)1(e)-1(cie,)-333(to)-334(p)1(rzyjd)1(\\246)-1(.)1(..)]TJ 0 -13.549 Td[(P)28(op)-27(\\246)-1(d)1(z)-1(i)1(\\252)-404(k)28(onie)-404(i)-403(z)-1(ar)1(az)-404(s)-1(kr)1(\\246)-1(ca\\252)-404(pr)1(z)-1(ed)-403(k)55(ar)1(c)-1(zm)-1(\\246,)-403(a)-404(Hank)56(a)-404(j)1(u\\273)-404(n)1(ie)-404(c)-1(ze)-1(k)56(a)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(na)-333(o)-55(jca,)-334(k)1(t\\363ren)-333(akur)1(atnie)-333(w)-1(y)1(s)-1(iad)1(a\\252)-334(z)-333(B)-1(ar)1(tk)28(o)27(wyc)28(h)-333(s)-1(an)1(i,)-333(p)-27(ole)-1(cia\\252a)-333(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.55 Td[(W)-371(i)1(z)-1(b)1(ie)-371(b)28(y\\252o)-371(cie)-1(mno)-370(i)-371(tak)-371(zimno,)-370(\\273)-1(e)-371(gorze)-1(j)-370(s)-1(i)1(\\246)-372(wid)1(z)-1(ia\\252o)-371(n)1(i\\271li)-371(n)1(a)-371(dw)28(orze)-1(,)]TJ -27.879 -13.549 Td[(dziec)-1(i)-323(spa\\252y)-323(p)-28(ok)1(ulon)1(e)-324(w)-324(\\252\\363\\273ku)-323(p)-27(o)-28(d)-323(pi)1(e)-1(r)1(z)-1(yn)1(\\241,)-323(z)-1(akr)1(z)-1(\\241tn)1(\\246)-1(\\252a)-323(s)-1(i)1(\\246)-324(\\273)-1(w)28(a)28(w)27(o)-323(k)28(o\\252o)-324(w)28(arzy)]TJ\nET\nendstream\nendobj\n929 0 obj <<\n/Type /Page\n/Contents 930 0 R\n/Resources 928 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 915 0 R\n>> endobj\n928 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n933 0 obj <<\n/Length 8922      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(289)]TJ -358.232 -35.866 Td[(i)-333(obr)1(z)-1(\\241d)1(k)28(\\363)27(w,)-333(a)-333(w)27(ci\\241\\273)-334(p)1(rze)-1(m)28(y\\261)-1(l)1(iw)27(a\\252a)-333(o)-333(t)27(y)1(m)-334(dziwn)28(ym)-333(s)-1(p)-27(otk)56(aniu)-332(z)-334(B)-1(or)1(yn\\241.)]TJ 27.879 -13.549 Td[({)-343(Nie,)-343(\\273e)-1(b)28(y)1(\\261)-344(sk)55(ap)1(ia\\252,)-343(n)1(ie)-344(p)1(rzyjd)1(\\246)-1(,)-342(da\\252b)28(y)-343(mi)-343(An)29(te)-1(k!)-342({)-343(wykrzykn)1(\\246)-1(\\252a)-343(ze)-344(z\\252o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\241,)-386(ale)-387(r)1(\\363)27(wn)1(o)-28(c)-1(ze)-1(\\261ni)1(e)-387(i)-387(i)1(nn)1(e)-1(,)-386(bar)1(dzie)-1(j)-386(sp)-27(ok)28(o)-56(jn)1(e)-387(m)27(y)1(\\261)-1(li)-386(p)1(rz)-1(y)1(c)27(ho)-27(dzi\\252y)83(,)-386(a)-387(z)-386(nimi)-386(i)]TJ 0 -13.549 Td[(bu)1(n)28(t)-333(s)-1(r)1(ogi)-333(prze)-1(ciwk)28(o)-333(m)-1(\\246\\273)-1(o)28(wi.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-396(prze)-1(z)-397(k)28(og\\363\\273)-398(to)-397(wycierpi)1(a\\252)-1(a)-397(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-397(je\\261)-1(l)1(i)-397(nie)-397(przez)-398(ni)1(e)-1(go!)-397(S)1(tary)]TJ -27.879 -13.55 Td[(zapisa\\252)-464(gru)1(n)28(t)-463(te)-1(j)-463(\\261w)-1(i)1(ni)-463(i)-464(wygn)1(a\\252)-464(ic)27(h)1(,)-463(pra)28(wda,)-463(ale)-464(An)28(tek)-463(go)-464(pi)1(e)-1(r)1(w)-1(sz)-1(y)-463(p)-27(obi\\252)-463(i)]TJ 0 -13.549 Td[(za)27(wsz)-1(e)-284(sz)-1(cz)-1(ek)56(a\\252)-284(n)1(a)-284(n)1(ie)-1(go,)-283(to)-283(s)-1(i)1(\\246)-284(i)-284(oze\\271)-1(li)1(\\252)-1(.)1(..)-283(Mia\\252)-283(pra)28(w)28(o,)-284(k)56(a\\273dy)-283(b)28(y)-283(to)-283(z)-1(rob)1(i\\252,)-283(grun)29(t)]TJ 0 -13.549 Td[(jego)-250(i)-249(dzie)-1(ci\\253)1(s)-1(ki)1(,)-250(ale)-250(p)-27(\\363ki)-250(\\273yj)1(e)-1(,)-249(jego)-250(w)27(ol)1(a)-250(da\\242)-250(lu)1(b)-249(nie.)-250(A)-249(jak)-250(t)1(o)-250(m)-1(i)1(\\246)-1(tk)28(o)-249(p)-28(o)28(wiedzia\\252:)]TJ 0 -13.549 Td[(\\377)-56(P)1(rzyjd)1(\\271)-1(!)1(\",)-338(o)-337(dzie)-1(ci)-338(p)29(yta\\252,)-338(o)-337(ws)-1(zystk)28(o!)-338(Ju)1(\\261)-1(ci,)-337(a)-338(i)-337(p)-28(\\363\\252)-337(te)-1(j)-337(bi)1(e)-1(d)1(y)-338(i)-337(p)-28(on)1(iew)-1(i)1(e)-1(r)1(ki)-338(b)29(y)]TJ 0 -13.549 Td[(ni)1(e)-334(b)28(y\\252o,)-333(gdy)1(b)28(y)-333(s)-1(i)1(\\246)-334(An)28(tek)-333(nie)-334(spr)1(z)-1(\\241)-27(g\\252)-334(z)-334(t\\241)-333(suk)56(\\241,)-333(te)-1(m)28(u)-333(s)-1(t)1(ary)-333(nie)-333(w)-1(i)1(no)28(w)27(at)28(y)84(,)-333(nie!)]TJ 27.879 -13.549 Td[(Roz)-1(m)28(y\\261la\\252a)-380(r)1(\\363\\273)-1(n)1(ie)-380(i)-379(t\\252umacz)-1(y\\252a,)-379(i)-379(coraz)-380(b)1(ardziej)-379(ust\\246)-1(p)-27(o)28(w)27(a\\252)-379(z)-380(n)1(ie)-1(j)-379(gn)1(iew)]TJ -27.879 -13.55 Td[(do)-333(starego.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(w)-1(l)1(\\363k\\252)-488(si\\246)-488(i)-487(B)-1(yl)1(ic)-1(a,)-487(tak)-487(pr)1(z)-1(em)-1(ar)1(z)-1(\\252y)-487(i)-487(z)-1(m\\246)-1(cz)-1(on)29(y)-488(sro)-28(d)1(z)-1(e,)-487(\\273)-1(e)-488(z)-488(d)1(obr\\241)]TJ -27.879 -13.549 Td[(go)-28(d)1(z)-1(in)1(\\246)-499(rozgrze)-1(w)28(a\\252)-498(s)-1(i\\246)-498(pr)1(z)-1(ed)-498(k)28(om)-1(i)1(nem)-1(,)-498(n)1(im)-499(zacz)-1(\\241\\252)-498(op)-28(o)28(wiad)1(a\\242)-1(,)-498(j)1(ak)28(o)-499(j)1(u\\273)-498(b)28(y\\252)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-470(usta\\252,)-470(a)-470(mo\\273)-1(e)-470(b)28(y)-470(i)-469(z)-1(amrozi\\252)-470(s)-1(i)1(\\246)-471(n)1(a)-470(\\261)-1(mier\\242)-471(p)-27(o)-28(d)-469(drzew)27(em)-1(,)-469(gdyb)28(y)-469(nie)]TJ 0 -13.549 Td[(Boryn)1(a.)]TJ 27.879 -13.55 Td[({)-422(Do)-56(j)1(rza\\252)-423(mn)1(ie)-423(i)-422(c)28(hcia\\252)-422(bra\\242)-422(na)-422(sanie,)-422(ale)-423(gd)1(ym)-422(m)27(u)-422(r)1(z)-1(ek\\252)-422(\\273)-1(e\\261)-423(p)1(rzo)-28(dem)]TJ -27.879 -13.549 Td[(p)-27(os)-1(z\\252a,)-333(os)-1(ta)28(wi\\252)-334(mn)1(ie)-334(Bartk)28(o)28(wi,)-333(a)-334(sam)-334(p)-27(ogna\\252)-333(k)28(oni)1(e)-1(,)-333(b)28(y)-333(ci\\246)-334(d)1(ogoni\\242...)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(b)28(y\\252o?)-334(Ni)1(c)-334(m)-1(i)-333(o)-333(t)28(ym)-334(n)1(ie)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Kw)27(ar)1(dy)-333(on)-333(j)1(e)-1(n)1(o)-334(z)-334(wierzc)27(h)28(u)1(,)-333(la)-333(niep)-27(oz)-1(n)1(aki.)]TJ 0 -13.549 Td[(P)28(o)-309(k)28(olacji)1(,)-309(gdy)-309(d)1(z)-1(i)1(e)-1(ci)-309(nak)56(armion)1(e)-310(d)1(o)-310(syta,)-309(p)-27(o)-28(ob)1(tul)1(ane)-310(w)-309(p)1(ie)-1(r)1(z)-1(y)1(n)28(y)83(,)-309(zno)28(wu)]TJ -27.879 -13.55 Td[(zas)-1(n)1(\\246)-1(\\252y)84(,)-382(Hank)56(a)-381(s)-1(iad)1(\\252a)-382(pr)1(z)-1(ed)-381(ogniem)-382(do)-381(prz\\246)-1(d)1(z)-1(eni)1(a)-382(res)-1(ztek)-382(w)28(e)-1(\\252n)28(y)-381(organ)1(i\\261)-1(cin)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(a)-349(stary)-348(wygrzew)27(a\\252)-349(si\\246)-349(w)28(c)-1(i)1(\\241\\273)-1(,)-348(s)-1(p)-27(ogl\\241d)1(a\\252)-349(n)1(ie)-1(\\261mia\\252o,)-349(c)28(hrz\\241k)56(a\\252,)-349(zbi)1(e)-1(ra\\252)-348(o)-28(dw)28(ag\\246,)-349(a\\273)]TJ 0 -13.549 Td[(w)-334(k)28(o\\253)1(c)-1(u)-332(z)-1(acz)-1(\\241\\252)-333(j\\246kliwie:)]TJ 27.879 -13.549 Td[({)-308(Z)-1(r)1(\\363b)-308(z)-309(ni)1(m)-309(z)-1(go)-27(d\\246)-1(,)-308(n)1(a)-309(An)28(t)1(k)55(a)-308(s)-1(i)1(\\246)-309(nie)-308(ogl\\241da)-55(j,)-308(a)-309(i)1(no)-308(s)-1(iebi)1(e)-309(i)-309(d)1(z)-1(i)1(e)-1(ci)-308(m)-1(iej)-308(na)]TJ -27.879 -13.549 Td[(widok)1(u.)]TJ 27.879 -13.55 Td[({)-333(\\212ac)-1(n)1(o)-334(to)-333(p)-27(o)28(w)-1(iedzie\\242)-1(.)]TJ 0 -13.549 Td[({)-453(Kiedy)-452(on)-453(p)1(ie)-1(r)1(ws)-1(zy)-453(pr)1(z)-1(yst\\241)-28(p)1(i\\252)-453(do)-453(ciebie)-453(z)-453(dobr)1(ym)-453(s)-1(\\252o)28(w)27(em,)-453(p)-27(oniec)27(h)1(a)-56(j)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261ci.)-273(T)83(am)-274(u)-272(niego)-273(w)-274(c)28(ha\\252u)1(pie)-273(piek\\252o...)-273(n)1(ie)-274(d)1(z)-1(i)1(\\261)-1(,)-273(to)-273(j)1(utr)1(o)-274(J)1(agn\\246)-274(wygon)1(i)-273(i)-273(ostanie)]TJ 0 -13.549 Td[(sam)-1(..)1(.)-380(J\\363z)-1(k)56(a)-380(n)1(ie)-381(p)-27(oredzi)-380(w)-380(t)28(ylem)-381(gosp)-27(o)-28(dar)1(s)-1(t)28(wie,)-380(s)-1(t)1(ary)-380(jesz)-1(cz)-1(e)-380(nie)-380(jest,)-380(ale)-380(te)-1(\\273)]TJ 0 -13.549 Td[(ws)-1(zystkiego)-373(nie)-374(zrob)1(i)-373(ni)-373(d)1(o)-56(j)1(rz)-1(y)84(...)-373(d)1(obr)1(z)-1(e,)-373(b)28(y\\261)-373(jego)-374(\\252ask)28(\\246)-374(n)1(a)-374(ten)-373(cz)-1(as)-373(m)-1(i)1(a)-1(\\252a.)1(..)-373(o)]TJ 0 -13.55 Td[(to\\261)-307(zabiega\\242)-307(p)-27(o)28(w)-1(i)1(nna\\261...)-306(By\\252ab)28(y\\261)-306(m)27(u)-306(p)-27(o)-28(d)-306(r\\246k)56(\\241)-307(w)-306(s)-1(p)-27(os)-1(ob)1(n\\241)-306(p)-27(or\\246)-1(.)1(..)-306(to)-307(n)1(ie)-307(wiad)1(a,)]TJ 0 -13.549 Td[(jak)-418(b)28(y)-419(s)-1(i)1(\\246)-420(sta\\252o...)-419(mo\\273)-1(e)-419(b)28(y)-419(pr)1(z)-1(y)1(z)-1(w)28(a\\252)-420(z)-419(p)-28(o)28(wrotem...)-419(n)1(ie)-420(zdzier\\273)-1(y)1(s)-1(z)-419(te)-1(j)-418(biedzie,)]TJ 0 -13.549 Td[(ni)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Op)1(u\\261c)-1(i\\252a)-314(n)1(a)-314(te)-315(s\\252o)27(w)28(a)-314(wrze)-1(ciono,)-313(w)-1(spar)1(\\252)-1(a)-314(g\\252o)28(w)28(\\246)-315(o)-314(p)1(rz)-1(\\246\\261lic\\246)-315(i)-314(zadu)1(m)-1(a\\252a)-314(si\\246)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)-27(ok)28(o)-333(nad)-333(sw)27(o)-55(j\\241)-333(dol)1(\\241)-334(r)1(oz)-1(w)28(a\\273)-1(a)-55(j\\241c)-334(p)-27(o)28(w)27(ol)1(i)-334(r)1(ady)-333(o)-56(j)1(c)-1(o)28(w)28(e)-1(.)]TJ 27.879 -13.549 Td[(A)-333(s)-1(tar)1(y)-333(przysz)-1(yk)28(o)28(w)28(a\\252)-334(sobie)-333(s)-1(p)1(anie)-333(i)-334(cic)28(ho)-333(z)-1(ap)28(y)1(ta\\252:)]TJ 0 -13.55 Td[({)-333(M\\363)28(wi\\252)-334(w)-333(dr)1(o)-28(dze)-334(z)-334(tob)1(\\241?)]TJ 0 -13.549 Td[(Op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)-333(j)1(ak)-334(b)29(y\\252o.)]TJ 0 -13.549 Td[({)-422(T)83(o)-422(id\\271,)-422(c\\363rk)28(o,)-422(bi)1(e)-1(\\273yj)-422(c)28(ho)-28(\\242b)28(y)-422(zaraz)-423(j)1(utr)1(o,)-422(s)-1(t)1(a)27(w)-422(m)27(u)-421(s)-1(i\\246,)-422(kiej)-422(p)1(rzyz)-1(y)1(w)27(a,)]TJ -27.879 -13.549 Td[(bi)1(e)-1(\\273yj.)1(..)-387(b)1(ac)-1(z)-387(ino)-387(n)1(a)-387(s)-1(i)1(e)-1(b)1(ie)-388(i)-386(dzie)-1(ci..)1(.)-387(stare)-1(go)-386(s)-1(i\\246)-387(trzyma)-56(j)1(...)-387(o)-27(c)-1(zam)-1(i)-386(m)27(u)-386(\\261)-1(wie\\242)-1(..)1(.)]TJ 0 -13.549 Td[(dob)1(r\\241)-409(m)28(u)-408(b\\241d\\271...)-408(p)-27(ok)28(orne)-409(cie)-1(l)1(\\246)-410(d)1(wie)-409(m)-1(atk)1(i)-409(ss)-1(ie...)-408(z)-1(\\252o\\261c)-1(i)1(\\241)-409(jes)-1(zcz)-1(e)-409(ni)1(kto)-409(\\261wiata)]TJ 0 -13.55 Td[(ni)1(e)-479(zw)27(o)-55(jo)28(w)28(a\\252)-1(.)1(..)-478(An)28(t)1(e)-1(k)-478(j)1(e)-1(sz)-1(cze)-479(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)-477(do)-478(ciebie...)-477(op)-28(\\246ta\\252o)-478(go)-478(z)-1(\\252e)-478(i)-478(r)1(z)-1(u)1(c)-1(a)-478(p)-27(o)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(.)1(..)-341(al)1(e)-342(wn)1(e)-1(t)-341(p)1(rze)-1(j)1(rzy)-341(i)-340(p)-28(o)28(wr\\363)-28(ci..)1(.)-341(P)28(an)-340(Jez)-1(u)1(s)-342(p)-27(o)-28(d)1(a)-56(j)1(e)-342(ci)-340(tak)55(\\241)-340(go)-28(dzin)1(\\246)-1(,)-340(b)28(y)-341(z)]TJ\nET\nendstream\nendobj\n932 0 obj <<\n/Type /Page\n/Contents 933 0 R\n/Resources 931 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n931 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n937 0 obj <<\n/Length 8924      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(290)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(bi)1(e)-1(d)1(y)-333(w)-1(y)1(c)-1(i\\241)-27(gn\\241\\242...)-333(to)-333(nik)28(ogo)-333(ni)1(e)-334(s)-1(\\252u)1(c)27(ha)-55(j,)-333(a)-333(bi)1(e)-1(\\273yj..)1(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-308(j)1(\\241)-308(nama)28(wia\\252)-308(i)-308(pr)1(z)-1(ek)28(on)28(yw)28(a\\252,)-308(a)-308(n)1(ie)-309(d)1(o)-28(cz)-1(ek)55(a)28(wsz)-1(y)-308(si\\246)-308(\\273)-1(ad)1(nej)-308(o)-28(d)1(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzi)-383(zm)-1(i)1(lkn)1(\\241\\252)-384(p)-27(omark)28(otn)1(ia\\252y)-383(i)-383(n)1(arz\\241dziws)-1(zy)-383(sobie)-383(s)-1(p)1(anie)-383(leg\\252)-383(c)-1(ic)28(ho,)-382(Ha)-1(n)1(k)56(a)-383(z)-1(a\\261)]TJ 0 -13.549 Td[(pr)1(z)-1(\\246d\\252a)-333(dal)1(e)-1(j)-333(r)1(oz)-1(m)27(y)1(\\261)-1(la)-55(j\\241c)-333(nad)-333(j)1(e)-1(go)-333(rad)1(am)-1(i.)]TJ 27.879 -13.549 Td[(Cz)-1(ase)-1(m)-338(z)-1(a\\261)-338(w)-1(y)1(gl\\241da\\252a)-338(oknem,)-339(czy)-339(An)29(te)-1(k)-338(n)1(ie)-339(wraca,)-338(ale)-339(ni)1(e)-339(b)28(y\\252o)-338(ani)-338(s\\252y-)]TJ -27.879 -13.55 Td[(c)27(h)29(u.)]TJ 27.879 -13.549 Td[(Si)1(ada\\252a)-317(zno)28(w)-1(u)-316(do)-317(r)1(ob)-28(ot)28(y)84(,)-317(ale)-317(nie)-317(m)-1(og\\252a)-317(p)1(rz\\241\\261)-1(\\242)-317(dzis)-1(i)1(a)-56(j,)-316(nitk)56(a)-317(si\\246)-318(r)1(w)27(a\\252a,)-317(to)]TJ -27.879 -13.549 Td[(wrze)-1(ciono)-333(wyp)1(ada\\252o)-334(z)-333(palc\\363)28(w)-1(,)-333(b)-27(o)-333(c)-1(or)1(az)-334(pil)1(niej)-333(rozw)27(a\\273a\\252a)-334(s\\252o)28(w)27(a)-333(Boryn)1(o)27(w)28(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(s)-1(i)1(\\246)-334(tak)-333(s)-1(tan)1(ie,)-334(mo\\273e)-334(pr)1(z)-1(yj)1(dzie)-334(tak)56(a)-333(go)-28(d)1(z)-1(in)1(a,)-333(\\273)-1(e)-334(j)1(\\241)-334(p)1(rzyzw)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(I)-411(z)-411(w)27(ol)1(na,)-410(z)-412(w)28(oln)1(a,)-411(k)28(o\\252uj)1(\\241c)-1(a)-411(j)1(e)-1(szc)-1(ze)-1(,)-410(p)-28(e\\252na)-411(w)28(aha\\253)-410(ws)-1(ta)28(w)28(a\\252a)-411(w)-411(niej)-410(nie-)]TJ -27.879 -13.549 Td[(zm)-1(o\\273ona)-333(c)27(h)1(\\246)-1(\\242)-334(zgo)-28(d)1(y)-334(i)-333(p)-27(o)28(wrotu)-333(d)1(o)-334(starego.)]TJ 27.879 -13.55 Td[({)-299(T)84(ro)-56(j)1(e)-299(nas)-299(cierpi)-298(b)1(ie)-1(d)1(\\246)-1(,)-298(a)-299(n)1(iez)-1(ad)1(\\252ugo)-299(b)-27(\\246dzie)-299(c)-1(zw)28(oro!)-298(Dam)-299(to)-299(wtedy)-298(rad)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(co?)]TJ 27.879 -13.549 Td[(An)28(tk)56(a)-388(ju)1(\\273)-389(n)1(ie)-389(wli)1(c)-1(za\\252a,)-388(nie)-388(br)1(a\\252)-1(a)-388(w)-388(rac)28(h)28(ub)-27(\\246)-389(w)-388(tej)-388(c)27(h)29(w)-1(i)1(li,)-388(wid)1(z)-1(ia\\252a)-388(t)28(ylk)28(o)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie)-374(i)-373(dzie)-1(ci;)-373(s)-1(ama)-373(s)-1(i\\246)-374(czu\\252a)-374(goto)28(w)28(\\241)-374(d)1(o)-374(stano)28(wienia)-373(z)-1(a)-373(w)-1(szys)-1(tk)1(ic)27(h)1(.)-374(Jak)1(\\273)-1(e,)-374(n)1(a)]TJ 0 -13.549 Td[(k)28(ogo)-333(s)-1(i\\246)-333(to)-334(spu)1(\\261)-1(ci?)-333(Kto)-333(to)-334(p)-27(omo\\273)-1(e,)-333(c)27(h)28(yb)1(a)-333(B)-1(\\363g)-333(jeden)-333(alb)-27(o)-334(i)-333(Bory)1(na!)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246\\252)-1(a)-395(marzy\\242,)-395(\\273e)-396(n)1(ie)-1(c)28(h)28(b)28(y)-395(si\\246)-395(jeno)-395(d)1(orw)28(a\\252a)-395(z)-396(p)-27(o)28(w)-1(r)1(ote)-1(m)-395(gosp)-28(o)-28(d)1(arst)28(w)27(a,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(c)28(h)28(b)28(y)-316(zno)28(wu)-315(p)-28(o)-27(c)-1(zu\\252a)-316(ziem)-1(i\\246)-316(p)-27(o)-28(d)-315(nogami,)-315(to)-316(si\\246)-316(tak)-316(p)1(rzypn)1(ie)-316(do)-316(n)1(iej,)-316(t)1(ak)-316(w)28(e)-1(-)]TJ 0 -13.549 Td[(pr)1(z)-1(e)-410(ca\\252)-1(\\241)-409(dusz\\241)-410(pazurami,)-409(\\273)-1(e)-410(ni)1(c)-411(j)1(\\241)-410(ni)1(e)-411(o)-27(derwie)-410(i)-410(ni)1(e)-411(zm)-1(o\\273e.)-410(Nadzieja)-410(w)-410(n)1(ie)-1(j)]TJ 0 -13.549 Td[(ros\\252a)-362(w)-1(r)1(az)-363(z)-362(takim)-362(nab)1(ie)-1(r)1(e)-1(m)-362(s)-1(i)1(\\252)-1(,)-361(a\\273)-363(j\\241)-362(r)1(oz)-1(p)1(ie)-1(r)1(a\\252o)-362(w)27(e)-362(\\261)-1(ro)-27(dku)-361(o)-28(d)-362(mo)-28(cy)83(,)-362(n)1(ieust\\246)-1(-)]TJ 0 -13.549 Td[(pl)1(iw)27(o\\261ci)-391(a)-391(o)-28(dw)28(agi,)-391(ogni)1(e)-392(c)27(h)1(o)-28(d)1(z)-1(i\\252y)-391(p)-27(o)-391(niej,)-390(o)-28(c)-1(zy)-391(si\\246)-392(r)1(oz)-1(iskrza\\252y)83(.)1(..)-391(ju)1(\\273)-392(si\\246)-392(n)1(a)28(w)27(et)]TJ 0 -13.55 Td[(cz)-1(u)1(\\252)-1(a)-333(tam,)-333(u)-333(Bo)-1(r)1(yn\\363)28(w,)-333(rz\\241dzi\\252a)-333(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(,)-333(gosp)-28(o)-27(dyn)1(i\\241)-333(b)28(y\\252a...)]TJ 27.879 -13.549 Td[(D\\252ugo,)-334(mo\\273)-1(e)-335(do)-334(s)-1(ame)-1(go)-334(p)-28(\\363\\252n)1(o)-28(c)27(k)56(a)-335(tak)-334(s)-1(i\\246)-335(r)1(oz)-1(marza\\252)-1(a)-334(p)-28(ostana)28(wia)-55(j\\241c)-335(r\\363)28(w-)]TJ -27.879 -13.549 Td[(no)-27(c)-1(ze)-1(\\261ni)1(e)-1(,)-406(\\273e)-407(zaraz)-407(z)-406(rana,)-405(jak)-406(pr)1(z)-1(y)1(k)55(azyw)28(a\\252,)-406(z)-1(ab)1(ie)-1(r)1(z)-1(e)-406(jeno)-406(dziec)-1(i)-406(i)-406(p)-27(\\363)-56(j)1(dzie)-407(d)1(o)]TJ 0 -13.549 Td[(starego,)-368(c)28(ho)-28(\\242b)28(y)-367(An)28(tek)-367(nie)-367(w)-1(i)1(e)-1(m)-367(jak)-367(z)-1(ak)56(azyw)28(a\\252)-1(,)-367(c)28(ho)-28(\\242b)28(y)-367(j\\241)-367(na)28(w)28(e)-1(t)-367(sk)55(at)1(o)27(w)28(a\\252,)-367(nie)]TJ 0 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(ha)-359(i)-360(p)-27(\\363)-55(jdzie,)-360(a)-359(tej)-360(d)1(obr)1(e)-1(j)-359(ok)56(az)-1(j)1(i)-359(nie)-360(p)-27(opu)1(\\261)-1(ci..)1(.)-360(M)1(o)-28(c)-360(w)-360(sobie)-360(p)-27(o)-28(cz)-1(u)1(\\252a)-360(ni)1(e)-1(-)]TJ 0 -13.55 Td[(zm)-1(o\\273on\\241)-333(do)-333(w)28(alki)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)-334(z)-333(c)-1(a\\252ym)-333(\\261)-1(wiatem,)-334(n)1(ie)-334(w)28(aha\\252a)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(ni)-333(b)1(a\\252a)-334(n)1(ic)-1(zego!)]TJ 27.879 -13.549 Td[(Wyj)1(rza\\252a)-255(j)1(e)-1(sz)-1(cze)-255(na)-254(dw)28(\\363r,)-254(wiatr)-254(ca\\252kiem)-255(usta\\252,)-254(usp)-28(ok)28(oi)1(\\252)-1(o)-254(si\\246)-255(zup)-27(e)-1(\\252n)1(ie)-1(,)-254(n)1(o)-28(c)]TJ -27.879 -13.549 Td[(b)28(y\\252a)-269(ciem)-1(n)1(a,)-269(\\273e)-270(ledwie)-269(te)-269(\\261)-1(n)1(iegi)-269(s)-1(zarza\\252y)83(,)-268(na)-269(ni)1(e)-1(b)1(ie)-270(k)1(\\252\\246)-1(b)1(i\\252y)-269(si\\246)-270(ogr)1(om)-1(n)1(e)-270(c)28(hm)28(ury)-268(i)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(al)1(a\\252y)-254(si\\246)-254(k)1(ie)-1(j)-253(w)28(o)-28(d)1(y)83(,)-253(o)-28(d)-253(b)-27(or\\363)28(w)-254(d)1(alekic)27(h)-253(cz)-1(y)-253(te\\273)-254(z)-254(tej)-253(cie)-1(mni)1(c)-1(y)-253(ni)1(e)-1(p)1(rze)-1(j)1(rz)-1(an)1(e)-1(j)]TJ 0 -13.549 Td[(sz)-1(\\252y)-333(jak)1(ie)-1(\\261)-333(g\\252)-1(u)1(c)27(h)1(e)-334(s)-1(zum)28(y)83(.)]TJ 27.879 -13.55 Td[(Zgas)-1(i)1(\\252a)-334(\\261wiat\\252o)-334(i)-333(sz)-1(ep)-27(c)-1(z\\241c)-334(pacierze)-334(z)-1(acz)-1(\\246\\252a)-333(s)-1(i\\246)-333(roz)-1(b)1(iera\\242)-1(.)]TJ 0 -13.549 Td[(Naraz)-284(j)1(aki\\261)-284(wrz)-1(ask)-284(d)1(aleki,)-284(p)1(rzyt\\252umion)29(y)-284(z)-1(ad)1(rga\\252)-284(w)-284(cisz)-1(y)84(,)-284(r)1(\\363s)-1(\\252,)-284(r)1(oz)-1(lega\\252)-284(si\\246)]TJ -27.879 -13.549 Td[(coraz)-334(wyra\\271ni)1(e)-1(j)1(,)-334(a)-333(wraz)-334(z)-333(nim)-333(i)-333(blask)-333(krw)28(a)28(w)-1(y)-333(u)1(derz)-1(y)1(\\252)-334(w)-333(s)-1(zyb)28(y)84(.)]TJ 27.879 -13.549 Td[(Wyb)1(ieg\\252a)-334(p)1(rze)-1(d)-333(d)1(om)-334(wys)-1(t)1(ras)-1(zona.)]TJ 0 -13.549 Td[(P)28(ali)1(\\252o)-473(si\\246,)-472(gdzies)-1(ik)-472(ze)-473(\\261ro)-27(dk)56(a)-472(w)-1(si)-472(bu)1(c)27(h)1(a\\252y)-472(s)-1(\\252up)29(y)-472(ognia,)-471(dym\\363)28(w)-473(i)-472(skier.)]TJ -27.879 -13.549 Td[(Dzw)27(on)-333(zac)-1(z\\241\\252)-333(bi\\242)-334(n)1(a)-334(t)1(rw)27(og\\246)-333(i)-333(krzyki)-333(si\\246)-334(wz)-1(maga\\252y)83(.)]TJ 27.879 -13.55 Td[({)-403(G)1(ore!)-403(wsta)28(w)27(a)-56(j)1(ta,)-402(gore!)-403({)-402(z)-1(akr)1(z)-1(y)1(c)-1(za\\252a)-403(do)-402(Stac)28(h\\363)28(w,)-403(p)1(rzy)28(o)-28(dzia\\252a)-402(s)-1(i\\246)-403(n)1(a-)]TJ -27.879 -13.549 Td[(pr)1(\\246)-1(d)1(c)-1(e)-304(i)-304(wypad)1(\\252a)-304(na)-304(dr)1(\\363\\273)-1(k)28(\\246,)-304(ale)-304(z)-1(araz)-304(pr)1(a)28(w)-1(ie)-304(nat)1(kn\\246\\252a)-304(s)-1(i\\246)-304(na)-304(An)28(tk)56(a)-304(b)1(ie)-1(gn)1(\\241c)-1(ego)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(e)-1(m)-333(o)-28(de)-334(wsi.)]TJ 27.879 -13.549 Td[({)-333(U)-334(k)28(ogo)-333(si\\246)-334(pal)1(i?...)]TJ 0 -13.549 Td[({)-333(Nie)-334(wiem)-1(,)-333(wraca)-56(j)-333(d)1(o)-334(c)28(ha\\252u)1(p)28(y!)]TJ 0 -13.55 Td[({)-257(M)1(o\\273)-1(e)-257(to)-256(u)-256(o)-56(j)1(c)-1(a,)-256(b)-27(o)-257(jak)28(o\\261)-257(w)-256(p)-28(o\\261ro)-28(d)1(ku)1(!)-257({)-256(b)-28(e\\252k)28(ota\\252a)-257(w)-257(tr)1(w)27(o)-27(dze)-257(\\261)-1(miertelnej.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(ac)-1(a)-55(j,)-333(psiakr)1(e)-1(w!)-333({)-334(r)1(ykn)1(\\241\\252)-334(p)-27(oryw)28(a)-56(j)1(\\241c)-334(j)1(\\241)-334(p)1(rze)-1(z)-334(si\\252\\246)-334(d)1(o)-334(izb)28(y)84(.)]TJ\nET\nendstream\nendobj\n936 0 obj <<\n/Type /Page\n/Contents 937 0 R\n/Resources 935 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n935 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n940 0 obj <<\n/Length 396       \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(291)]TJ -330.353 -35.866 Td[(Okr)1(w)27(a)28(wion)28(y)-306(b)28(y\\252,)-306(b)-28(ez)-307(c)-1(zapk)1(i,)-307(k)28(o\\273uc)28(h)-307(mia\\252)-307(p)-27(orozry)1(w)27(an)28(y)84(,)-307(t)28(w)28(arz)-307(osm)-1(olon)1(\\241)-307(i)]TJ -27.879 -13.549 Td[(dziki)1(,)-333(nieprzytomn)28(y)-333(ogie\\253)-333(w)-334(o)-27(c)-1(zac)27(h)1(.)]TJ\nET\nendstream\nendobj\n939 0 obj <<\n/Type /Page\n/Contents 940 0 R\n/Resources 938 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n938 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n943 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(292)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(21.)]TJ\nET\nendstream\nendobj\n942 0 obj <<\n/Type /Page\n/Contents 943 0 R\n/Resources 941 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n941 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n946 0 obj <<\n/Length 7792      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(22)]TJ/F17 10.909 Tf 0 -73.325 Td[(T)83(ego\\273)-240(sam)-1(ego)-239(dn)1(ia,)-239(p)-27(o)-239(obr)1(z)-1(\\241d)1(k)55(ac)28(h,)-239(a)-239(j)1(u\\273)-239(o)-239(dobr)1(ym)-239(w)-1(i)1(e)-1(cz)-1(or)1(z)-1(e)-239(z)-1(acz)-1(\\246li)-239(si\\246)-239(s)-1(c)27(h)1(o)-28(d)1(z)-1(i\\242)]TJ 0 -13.549 Td[(do)-333(K\\252\\246b)-28(\\363)28(w)-333(na)-333(on\\241)-333(pr)1(z)-1(\\246\\261)-1(li)1(c)-1(o)28(w)28(\\241)-334(wiec)-1(zorn)1(ic)-1(\\246.)]TJ 27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-304(s)-1(p)1(rosi\\252a)-304(g\\252\\363)27(wn)1(ie)-304(s)-1(ame)-305(starsz)-1(e)-304(k)28(ob)1(ie)-1(t)28(y)84(,)-304(p)-27(o)28(w)-1(i)1(no)28(w)27(ate)-304(sw)27(o)-55(je)-304(alb)-27(o)-304(w)]TJ -27.879 -13.549 Td[(ku)1(m)-1(ost)28(wie)-267(b)-27(\\246d\\241ce)-1(.)-266(P)1(rzyc)27(h)1(o)-28(dzi\\252y)-266(t)1(e)-1(\\273)-266(w)-266(p)-28(or)1(\\246)-1(,)-266(j)1(e)-1(d)1(na)-266(za)-266(d)1(rug\\241,)-265(nie)-266(za)27(w)28(o)-28(d)1(z)-1(\\241c)-266(ni)-265(s)-1(i\\246)]TJ 0 -13.55 Td[(zb)28(ytn)1(io)-292(op)-27(\\363\\271)-1(n)1(ia)-56(j)1(\\241c)-1(,)-291(b)-28(o)-28(\\242)-292(k)56(a\\273da)-292(ku)1(m)-1(a)-291(rada)-291(c)-1(i\\241)-27(gn\\246\\252)-1(a)-291(do)-292(d)1(rugi)1(e)-1(j)1(,)-292(ab)28(y)-291(s)-1(i\\246)-292(zgw)27(ar)1(z)-1(y\\242)]TJ 0 -13.549 Td[(sp)-28(o\\252ec)-1(znie)-333(i)-334(co)-333(no)28(w)27(ego)-333(p)-28(os\\252uc)28(ha\\242.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rwsz)-1(a,)-352(jak)-352(to)-353(mia\\252a)-353(w)28(e)-353(z)-1(wycz)-1(a)-55(ju)1(,)-353(p)1(rzys)-1(z\\252a)-353(W)84(ac)27(hn)1(ik)28(o)28(w)27(a)-352(z)-353(k\\252akiem)]TJ -27.879 -13.549 Td[(w)28(e)-1(\\252n)28(y)-295(w)-295(zapasc)-1(e)-295(i)-295(z)-295(w)-1(r)1(z)-1(ec)-1(i)1(onami)-295(zapaso)27(wymi)-295(p)-27(o)-28(d)-294(pac)27(h)1(\\241;)-295(p)-27(ote)-1(m)-295(pr)1(z)-1(ysz\\252)-1(a)-295(G)1(o\\252\\246)-1(-)]TJ 0 -13.549 Td[(b)-27(o)27(w)28(a,)-243(Mateusz)-1(a)-243(matk)56(a,)-243(s)-1(k)1(rz)-1(y)1(w)-1(i)1(ona)-243(kiej)-243(p)-27(o)-244(o)-27(c)-1(cie,)-243(z)-244(ob)28(wi\\241zan\\241)-243(g\\246)-1(b)1(\\241,)-243(nar)1(z)-1(ek)55(a)-55(j\\241ca)]TJ 0 -13.549 Td[(wiec)-1(znie)-306(i)-306(ci\\246gie)-1(m)-306(si\\246)-306(s)-1(k)56(ar\\273\\241c)-1(a)-306(n)1(a)-306(ws)-1(zystk)28(o;)-306(a)-306(p)-27(o)-306(niej,)-305(nib)29(y)-306(ta)-306(rozgdak)56(an)1(a,)-306(o)-28(d)1(\\246)-1(-)]TJ 0 -13.55 Td[(ta)-352(k)1(w)27(ok)56(a,)-352(p)1(rzysz)-1(\\252a)-352(W)84(alen)28(to)28(w)27(a;)-351(p)-28(o)-351(te)-1(j)-351(za\\261)-352(Sik)28(or)1(z)-1(yn)1(a,)-352(c)28(h)28(ud)1(a)-352(ki)1(e)-1(j)-351(mie)-1(t\\252a,)-351(tur)1(k)28(ot)]TJ 0 -13.549 Td[(bab)1(a)-377(i)-377(w)-377(s)-1(\\241siedzkic)27(h)-376(s)-1(w)28(arac)28(h)-377(n)1(a)-56(jza)28(wz)-1(i\\246tsz)-1(a;)-377(a)-377(p)-27(o)-377(ni)1(e)-1(j)-376(w)-1(to)-27(c)-1(zy\\252a)-377(s)-1(i)1(\\246)-378(gr)1(uba)-377(k)1(ie)-1(j)]TJ 0 -13.549 Td[(b)-27(e)-1(cz)-1(k)56(a)-268(P)1(\\252os)-1(zk)28(o)28(w)27(a,)-267(c)-1(ze)-1(r)1(w)27(on)1(a)-268(na)-267(g\\246)-1(b)1(ie)-1(,)-267(spa\\261na,)-267(z)-1(es)-1(tr)1(o)-56(j)1(ona)-268(za)28(w)-1(d)1(y)83(,)-267(du)1(fn)1(a)-268(w)-268(sie)-1(b)1(ie,)]TJ 0 -13.549 Td[(dw)28(oru)1(j\\241ca)-274(n)1(ad)-273(ws)-1(zys)-1(t)1(kie)-274(i)-273(wysz)-1(cz)-1(ek)56(ana,)-273(jak)-273(ma\\252o)-274(kt\\363r)1(a,)-273(ale)-274(og\\363ln)1(ie)-274(ni)1(e)-274(lu)1(bian)1(a;)]TJ 0 -13.549 Td[(tu)1(\\273)-329(za)-328(ni\\241)-327(w)-1(sun)1(\\246)-1(\\252a)-328(si\\246)-328(c)-1(ic)28(ho,)-328(cza)-56(j\\241co)-328(kiej)-327(te)-1(n)-327(k)28(o)-28(c)-1(zur)1(,)-328(Balce)-1(rk)28(o)28(w)28(a,)-328(suc)27(h)1(a,)-328(ma\\252a,)]TJ 0 -13.55 Td[(za)27(wi\\246d\\252a,)-304(p)-28(on)28(u)1(ra)-305(a)-305(sielna)-305(p)1(ro)-28(ces)-1(o)28(wnica,)-305(kt\\363r)1(a)-305(z)-305(p)-28(\\363\\252)-305(wsi\\241)-305(z)-1(a)-304(\\252)-1(eb)-304(s)-1(i\\246)-305(w)28(o)-28(dzi\\252a)-305(i)-305(co)]TJ 0 -13.549 Td[(mie)-1(si\\241c)-273(s)-1(ta)28(w)28(a\\252a)-273(na)-273(s\\241dy;)-273(a)-273(p)-27(o)-273(n)1(ic)27(h)-272(w)-1(l)1(az)-1(\\252a)-273(har)1(do,)-273(c)28(ho)-28(\\242)-273(i)-273(n)1(ie)-274(p)1(rosz)-1(on)1(a)-273(Kobu)1(s)-1(o)28(w)28(a,)]TJ 0 -13.549 Td[(W)84(o)-56(jt)1(k)55(a)-408(\\273ona,)-408(pl)1(e)-1(ciuc)28(h)-408(na)-55(jgor)1(s)-1(zy)-408(i)-408(z)-1(azdr)1(o\\261)-1(n)1(ic)-1(a)-408(n)1(ie)-1(p)-27(omie)-1(r)1(na,)-408(\\273e)-409(strze)-1(gli)-408(si\\246)-409(j)1(e)-1(j)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(jacie)-1(lst)28(w)27(a)-264(ki)1(e)-1(j)-263(o)-1(gn)1(ia.)-264(P)1(rz)-1(y)1(s)-1(z\\252a)-265(j)1(e)-1(szc)-1(ze)-1(,)-264(zas)-1(ap)1(ana)-264(i)-264(zgonion)1(a,)-264(Grze)-1(l)1(i)-264(z)-265(kr)1(z)-1(yw)28(\\241)]TJ 0 -13.549 Td[(g\\246b\\241)-270(k)28(ob)1(ie)-1(ta,)-269(pi)1(jak)-270(b)1(aba,)-269(w)-1(y)1(kpis)-270(i)-269(forteln)1(ic)-1(a,)-269(jaki)1(c)27(h)-269(m)-1(a\\252o,)-269(a)-270(s)-1(zku)1(dni)1(k)-270(w)-270(cudzym)]TJ 0 -13.55 Td[(na)-55(jgor)1(s)-1(zy!)-346(P)1(rz)-1(y)1(s)-1(z\\252a)-346(i)-346(s)-1(t)1(ara)-346(So)-28(c)28(ho)28(w)28(a,)-346(m)-1(a\\242)-346(K\\252\\246b)-28(o)28(w)28(e)-1(go)-346(zi\\246)-1(cia,)-346(cic)28(ha)-346(k)28(obi)1(e)-1(ta,)-346(p)-27(o-)]TJ 0 -13.549 Td[(b)-27(o\\273)-1(n)1(a)-316(wie)-1(l)1(c)-1(e)-316(i)-315(w)-1(r)1(az)-317(z)-316(Domin)1(ik)28(o)28(w)27(\\241)-316(n)1(a)-56(j)1(wi\\246)-1(ce)-1(j)-315(w)-316(k)28(o\\261c)-1(i)1(e)-1(le)-316(p)1(rz)-1(esiadu)1(j\\241ca;)-316(p)1(rz)-1(y)1(s)-1(z\\252y)]TJ 0 -13.549 Td[(i)-439(dr)1(ugie)-439(jes)-1(zc)-1(ze)-440(i)1(ns)-1(ze,)-439(ale)-440(j)1(u\\273)-440(tak)-439(wyb)1(ran)1(e)-1(,)-439(o)-439(kt\\363r)1(yc)27(h)-439(n)1(ie)-440(wiad)1(a,)-439(c)-1(o)-439(r)1(z)-1(ec)-1(,)-439(b)-27(o)]TJ 0 -13.549 Td[(p)-27(o)-28(dob)1(ne)-300(sobie)-300(ki)1(e)-1(j)-299(te)-300(g\\241s)-1(k)1(i)-300(w)-300(stadzie)-1(,)-299(\\273e)-301(n)1(ie)-300(rozp)-28(ozna\\252)-299(jednej)-299(o)-28(d)-299(dru)1(giej,)-299(c)27(h)28(yb)1(a)]TJ 0 -13.549 Td[(jeno)-399(p)-27(o)-399(ob)1(le)-1(cze)-1(ni)1(u)-399({)-399(a)-399(ze)-1(sz\\252)-1(o)-399(si\\246)-399(raze)-1(m)-399(sp)-28(or)1(o)-399(babi)1(e)-1(go)-399(n)1(aro)-28(d)1(u)-399(i)-398(z)-400(cz)-1(ym)-399(kt\\363r)1(a)]TJ 0 -13.55 Td[(mia\\252a:)-351(to)-351(z)-351(w)28(e)-1(\\252n\\241)-350(do)-351(op)1(rz)-1(\\246du)1(,)-351(to)-350(z)-1(e)-351(lnem,)-351(to)-351(z)-351(pak)1(u\\252ami,)-351(a)-351(n)1(ie)-1(k)1(t\\363re)-351(z)-351(s)-1(zyc)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(alb)-27(o)-373(z)-373(t\\241)-373(przygar)1(\\261)-1(ci\\241)-373(pi)1(e)-1(rza)-373(do)-372(z)-1(d)1(arc)-1(i)1(a,)-373(b)28(y)-373(i)1(no)-373(n)1(ie)-374(d)1(a\\242)-374(p)-27(ozoru,)-372(jak)28(o)-373(si\\246)-373(z)-1(es)-1(z\\252y)]TJ 0 -13.549 Td[(p)-27(o)-334(p)1(r\\363\\273nicy;)-333(na)-333(ra)-55(jco)28(w)27(an)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Sad)1(o)28(w)-1(i)1(\\252y)-228(si\\246)-228(w)-1(i)1(e)-1(lk)1(im)-228(k)28(o\\252e)-1(m)-228(w)-228(p)-27(o\\261ro)-28(d)1(ku)-227(iz)-1(b)29(y)83(,)-227(p)-28(o)-28(d)-227(lamp)1(\\241)-228(wis)-1(z\\241c)-1(\\241)-227(u)-227(pu\\252ap)1(u,)]TJ -27.879 -13.549 Td[(kiej)-403(t)1(e)-404(kr)1(z)-1(e)-403(na)-403(sze)-1(rok)1(ie)-1(j)-402(grz\\246)-1(d)1(z)-1(i)1(e)-1(,)-403(r)1(oz)-1(r)1(os)-1(\\252e,)-403(dosta\\252e)-404(i)-402(p)-28(\\363\\271n\\241)-403(j)1(e)-1(sieni\\241)-403(o)28(w)28(arzone,)]TJ 0 -13.55 Td[(b)-27(o)-334(starsz)-1(e)-333(ju\\273)-333(b)28(y\\252y)-333(a)-333(pra)28(wie)-334(j)1(e)-1(d)1(nolat)1(ki.)]TJ 27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-415(ws)-1(zystkim)-415(zar\\363)28(wno)-414(b)28(y\\252a)-415(r)1(ada)-414(w)-1(i)1(ta)-56(j)1(\\241c)-415(s)-1(i\\246)-415(z)-415(k)56(a\\273d\\241)-414(c)-1(ic)28(ho,)-414(\\273)-1(e)-415(to)]TJ -27.879 -13.549 Td[(s\\252)-1(ab)-27(o)28(w)27(a\\252a)-395(na)-396(p)1(iersi)-396(i)-395(g\\252os)-396(m)-1(ia\\252a)-395(c)-1(edz\\241c)-1(y)84(,)-395(z)-1(ad)1(yc)27(h)1(liwy)83(,)-395(K\\252\\241b)-395(z)-1(a\\261,)-395(jak)28(o)-396(cz)-1(\\252o)28(wiek)]TJ 358.232 -29.888 Td[(293)]TJ\nET\nendstream\nendobj\n945 0 obj <<\n/Type /Page\n/Contents 946 0 R\n/Resources 944 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n944 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n949 0 obj <<\n/Length 9259      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(294)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(lu)1(dzki,)-427(m)-1(\\241d)1(ry)-427(i)-428(zgo)-28(d\\246)-428(ze)-428(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(i)-427(trzyma)-56(j)1(\\241c)-1(y)84(,)-428(to)-427(pra)28(wi\\252)-428(mi\\252e)-428(s\\252)-1(o)28(w)28(a)-428(i)-427(s)-1(am)]TJ 0 -13.549 Td[(sto\\252ki)-333(a)-334(\\252a)28(wy)-333(p)-28(o)-27(ds)-1(u)29(w)27(a\\252..)1(.)]TJ 27.879 -13.549 Td[(Nadesz)-1(\\252a)-429(p)-27(\\363\\271niej)-428(niec)-1(o)-428(Jagusia)-429(z)-429(J\\363zk)56(\\241)-429(i)-428(Nas)-1(tk)56(\\241,)-428(a)-429(z)-429(n)1(im)-1(i)-428(jesz)-1(cz)-1(e)-429(p)1(ar\\246)]TJ -27.879 -13.549 Td[(dziew)27(cz)-1(y)1(n,)-333(za)-334(kt)1(\\363rymi)-333(\\261)-1(ci\\241)-28(gali)-333(w)-333(p)-28(o)-55(jedyn)1(k)28(\\246)-334(p)1(arob)-28(cy)84(.)]TJ 27.879 -13.549 Td[(Sp)-27(oro)-232(l)1(udu)-231(s)-1(i)1(\\246)-233(nab)1(ra\\252o,)-232(b)-27(o)-28(\\242)-232(i)-232(w)-1(i)1(e)-1(cz)-1(or)1(y)-232(b)28(y\\252y)-232(d)1(\\252ugie,)-232(rob)-27(ot)28(y)-232(ni)1(e)-233(mie)-1(l)1(i)-232(\\273)-1(ad)1(nej.)]TJ -27.879 -13.55 Td[(Zima)-307(s)-1(z\\252a)-307(sroga)-307(i)-307(p)1(rzykre)-307(d)1(nie,)-307(to)-307(c)28(kni)1(\\252)-1(o)-306(s)-1(i\\246)-307(c)27(h)1(o)-28(dzi\\242)-307(s)-1(p)1(a\\242)-307(raz)-1(em)-307(z)-308(k)1(urami,)-306(gdy\\273)]TJ 0 -13.549 Td[(i)-333(tak)-333(do)-333(\\261w)-1(i)1(tania)-333(t)28(yla)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e)-334(wyspa\\252)-333(i)-333(wyle\\273)-1(a\\252,)-333(a\\273)-334(b)-27(oki)-333(b)-28(ol)1(a\\252y)83(.)]TJ 27.879 -13.549 Td[(P)28(or)1(oz)-1(sadzali)-471(s)-1(i)1(\\246)-1(,)-471(jak)-471(mogli)1(,)-472(k)1(to)-472(n)1(a)-471(\\252)-1(a)28(w)28(ac)27(h)1(,)-471(kto)-471(na)-471(s)-1(kr)1(z)-1(y)1(niac)28(h,)-471(kt\\363r)1(ym)]TJ -27.879 -13.549 Td[(za\\261)-1(,)-307(jak)-307(par)1(obk)28(om,)-307(K\\252\\246)-1(b)1(iaki)-307(pi)1(e)-1(\\253)1(ki)-308(p)1(rzynosili)-307(ze)-308(dw)28(ora,)-307(a)-308(j)1(e)-1(sz)-1(cze)-308(m)-1(iejsca)-308(d)1(os)-1(y\\242)]TJ 0 -13.549 Td[(osta)27(w)28(a\\252o)-311(w)-311(izbie,)-311(b)-27(o)-311(d)1(om)-311(b)28(y\\252)-311(wielki,)-310(c)27(h)1(o)-28(\\242)-312(n)1(iski,)-310(s)-1(tar)1(\\241)-311(m)-1(o)-27(d\\241)-311(p)-27(obu)1(do)28(w)28(an)28(y)83(,)-310(p)-28(on)1(o)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-373(p)1(rze)-1(z)-373(K)1(\\252)-1(\\246b)-27(o)27(w)28(ego)-373(p)1(radziad)1(a,)-373(\\273e)-373(rac)28(ho)28(w)28(ali)-372(m)27(u)-372(ze)-373(s)-1(to)-372(pi)1(\\246)-1(\\242dzies)-1(i\\241t)-372(rok)28(\\363)28(w)]TJ 0 -13.55 Td[(z)-412(ok\\252adem,)-412(w)-412(zie)-1(mi\\246)-412(te\\273)-412(ju)1(\\273)-413(zapad)1(a\\252,)-412(p)1(rz)-1(y)1(garbi)1(\\252)-412(s)-1(i)1(\\246)-413(k)1(ie)-1(j)-411(staru)1(c)27(h)-411(i)-412(strze)-1(c)28(hami)]TJ 0 -13.549 Td[(p\\252ot\\363)28(w)-333(dot)28(yk)56(a\\252,)-333(a\\273)-334(m)27(u)1(s)-1(i)1(e)-1(li)-333(p)-27(o)-28(d)1(p)-28(or)1(am)-1(i)-333(go)-333(ws)-1(p)1(ie)-1(r)1(a\\242)-1(,)-333(b)28(y)-333(si\\246)-334(d)1(o)-334(cna)-333(ni)1(e)-334(z)-1(w)28(ali\\252.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-323(s)-1(i)1(\\246)-324(cz)-1(yn)1(i\\252)-323(z)-324(w)27(ol)1(na,)-323(b)-27(o)-324(cic)27(h)1(o)-323(jes)-1(zc)-1(ze)-324(p)-27(ogadyw)28(a\\252y)-323(m)-1(i)1(\\246)-1(d)1(z)-1(y)-323(sob\\241)-323(t)28(ylk)28(o,)]TJ -27.879 -13.549 Td[(wrze)-1(ciona)-284(j)1(e)-1(n)1(o)-284(fu)1(rk)28(ota\\252y)-284(i)-284(d)1(ud)1(ni\\252y)-283(p)-28(o)-284(p)-27(o)-28(d)1(\\252)-1(o)-27(dze)-1(,)-284(a)-284(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-285(i)-284(k)28(\\363\\252k)28(o)-284(w)28(arcz)-1(a-)]TJ 0 -13.549 Td[(\\252o,)-315(ale)-316(ni)1(e)-1(wiela,)-315(b)-28(o)-315(ni)1(e)-316(do)28(wie)-1(r)1(z)-1(a\\252y)-315(zb)28(ytni)1(o)-316(t)28(ym)-315(no)28(w)27(omo)-28(d)1(n)28(ym)-316(wym)28(ys)-1(\\252om)-315(w)27(ol\\241c)]TJ 0 -13.55 Td[(pr)1(z)-1(\\241\\261\\242)-334(p)-27(o)-334(starem)27(u)-333(n)1(a)-333(prz\\246)-1(\\261licac)27(h)1(.)]TJ 27.879 -13.549 Td[(K\\252\\246biak)1(i,)-394(a)-394(c)-1(ztere)-1(c)28(h)-394(b)28(y)1(\\252o)-395(m\\252o)-28(d)1(z)-1(iak)28(\\363)28(w,)-394(wyros\\252yc)27(h)-393(jak)-394(sos)-1(n)29(y)-394(i)-394(ju)1(\\273)-395(p)1(ra)28(wie)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-294(w)27(\\241se)-1(m,)-294(s)-1(kr)1(\\246)-1(cali)-294(p)-28(o)28(wr\\363s\\252a)-295(pr)1(z)-1(y)-294(dr)1(z)-1(wiac)28(h,)-294(re)-1(szta)-295(za\\261)-295(parob)1(k)28(\\363)27(w)-294(rozw)27(ala\\252a)-294(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-292(k)56(\\241tac)27(h)-291(ku)1(rz\\241c)-292(pap)1(ie)-1(r)1(os)-1(y)84(,)-292(szc)-1(ze)-1(r)1(z)-1(\\241c)-292(z\\246)-1(b)28(y)-291(i)-291(prze\\261)-1(miew)27(a)-55(j\\241c)-292(s)-1(i)1(\\246)-292(z)-292(dzie)-1(w)28(cz)-1(yn)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-303(co)-302(tro)-28(c)28(h\\246)-303(ca\\252a)-302(izba)-302(si\\246)-303(tr)1(z)-1(\\246s)-1(\\252a)-302(o)-28(d)-301(c)27(h)1(ic)27(h)1(ot\\363)27(w;)-302(a)-302(starsz)-1(e)-302(jes)-1(zc)-1(ze)-302(rade)-302(dok\\252ad)1(a\\252y)]TJ 0 -13.55 Td[(sw)27(o)-55(je,)-334(b)29(yc)27(h)-333(wi\\246c)-1(ej)-333(b)28(y\\252o)-333(do)-333(\\261m)-1(i)1(e)-1(c)27(h)1(\\363)28(w)-334(i)-333(zaba)28(wy)83(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-334(w)-333(k)28(o\\253cu)-333(i)-333(w)-1(y)1(c)-1(ze)-1(ki)1(w)27(an)28(y)-333(Ro)-28(c)28(ho,)-333(a)-333(tu\\273)-333(z)-1(a)-333(nim)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Wieje)-334(to)-333(j)1(e)-1(sz)-1(cz)-1(e?)-334({)-333(s)-1(p)29(yta\\252a)-333(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-333(C)-1(a\\252k)1(ie)-1(m)-333(usta\\252o)-334(i)-333(ma)-334(si\\246)-334(n)1(a)-333(o)-28(dmian)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Od)-333(b)-27(or\\363)28(w)-334(co\\261)-334(h)28(u)1(c)-1(zy)83(,)-333(p)-27(e)-1(wn)1(ikiem)-334(p)1(rz)-1(y)1(jd)1(z)-1(ie)-333(o)-28(delga)-333({)-334(d)1(orzuci\\252)-334(K)1(\\252)-1(\\241b)1(.)]TJ 0 -13.55 Td[(Ro)-28(c)27(h)1(o)-419(siad)1(\\252)-419(na)-418(ub)-27(o)-28(cz)-1(y)-418(do)-418(z)-1(asta)27(wion)1(e)-1(j)-418(miski,)-418(b)-28(o)-418(u)-418(K\\252\\246)-1(b)-27(\\363)28(w)-419(teraz)-419(dziec)-1(i)]TJ -27.879 -13.549 Td[(nau)1(c)-1(za\\252,)-286(m)-1(iesz)-1(k)56(a\\252)-287(i)-286(jad)1(a\\252,)-286(Mate)-1(u)1(s)-1(z)-286(z)-1(a\\261)-287(wita\\252)-286(s)-1(i\\246)-287(z)-286(niekt\\363ry)1(m)-1(i,)-286(n)1(ie)-287(patr)1(z)-1(\\241c)-287(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(na)-343(Jagn)1(\\246)-1(,)-342(jakb)28(y)-342(jej)-343(ni)1(e)-344(do)-55(jr)1(z)-1(a\\252,)-343(c)28(ho)-28(\\242)-343(s)-1(iedzia\\252a)-343(w)-343(p)-28(o\\261ro)-28(d)1(ku)-343(i)-342(na)-55(jpi)1(e)-1(rwsz)-1(a)-343(m)28(u)-343(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-261(wpad)1(\\252a,)-262(u)1(\\261)-1(miec)27(hn)1(\\246)-1(\\252a)-261(s)-1(i\\246)-262(n)1(a)-262(to)-261(lec)-1(iu)1(tk)28(o,)-261(niez)-1(n)1(ac)-1(zni)1(e)-262(s)-1(tr\\363\\273uj)1(\\241c)-262(o)-28(cz)-1(ami)-261(drzwi)]TJ 0 -13.549 Td[(w)28(c)27(ho)-27(do)28(wyc)27(h)1(.)]TJ 27.879 -13.55 Td[({)-449(A)-450(wia\\252o)-450(t)1(e)-1(\\273)-450(d)1(z)-1(isia)-55(j,)-449(\\273)-1(e)-450(n)1(iec)27(h)-449(r\\246k)55(a)-449(b)-27(os)-1(k)56(a)-450(b)1(ron)1(i!)-449(Kobiet)28(y)-449(na)-449(p)-28(\\363\\252)-449(\\273)-1(yw)28(e)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(w)-1(l)1(e)-1(k\\252y)-317(si\\246)-318(z)-318(lasu,)-317(a)-318(p)-27(on)1(o)-318(Han)1(k)55(a)-317(z)-318(Bylic\\241)-318(j)1(e)-1(szc)-1(ze)-318(nie)-318(p)-27(o)28(wr\\363)-28(ci\\252a)-318({)-317(zagadn\\246\\252a)]TJ 0 -13.549 Td[(So)-27(c)27(ho)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(b)1(iedn)28(y)1(m)-334(to)-333(z)-1(a)28(wdy)-333(wieje)-334(w)-333(plec)-1(y)-333({)-333(mruk)1(n\\246\\252)-1(a)-333(Kob)1(uso)28(w)27(a.)]TJ 0 -13.549 Td[({)-317(Na)-316(c)-1(o)-316(to)-317(an)1(o)-317(i)-316(te)-1(j)-316(Han)1(c)-1(e)-317(ze)-1(sz)-1(\\252o!)-316({)-317(zac)-1(z\\246\\252)-1(a)-316(P\\252osz)-1(k)28(o)28(w)28(a,)-317(ale)-317(sp)-27(os)-1(tr)1(z)-1(eg\\252s)-1(zy)83(,)]TJ -27.879 -13.549 Td[(\\273e)-334(na)-333(Jagn\\246)-333(ud)1(e)-1(rzy\\252y)-333(ogni)1(e)-1(,)-333(ur)1(w)27(a\\252a)-333(pr)1(\\246)-1(d)1(k)28(o)-334(zagadu)1(j\\241c)-334(cz)-1(y)1(m)-334(in)1(n)28(ym.)]TJ 27.879 -13.55 Td[({)-333(Jagust)28(ynk)1(i)-334(n)1(ie)-334(b)29(y\\252o?)-334({)-333(z)-1(ap)28(y)1(ta\\252)-334(Ro)-28(c)28(ho.)]TJ 0 -13.549 Td[({)-320(Pl)1(otk)56(am)-1(i)-320(n)1(i)-320(ob)1(m)-1(o)28(w)28(\\241)-320(nie)-320(p)-27(o\\273)-1(ywi)-320(si\\246)-320(u)-320(n)1(as)-1(,)-320(to)-319(z)-1(a)-320(n)1(ic)-321(ma)-320(tak)56(\\241)-320(k)28(ompani)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-299(P)1(lec)-1(iu)1(c)27(h)-298(bab)1(a,)-299(tak)-298(dzisia)-56(j)-298(n)1(a)-56(j)1(urzy\\252a)-299(u)-298(S)1(z)-1(ymk)28(\\363)28(w,)-299(\\273e)-299(s)-1(o\\252t)28(yso)27(w)28(a)-299(skl\\246\\252a)-299(si\\246)]TJ -27.879 -13.549 Td[(z)-334(w)28(\\363)-56(j)1(to)28(w)27(\\241,)-333(i)-333(\\273)-1(eb)28(y)-333(ni)1(e)-334(lu)1(dzie)-1(,)-333(d)1(o)-334(b)1(icia)-334(b)29(y)-333(przysz)-1(\\252o.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(jej)-333(p)-28(ozw)28(ala)-56(j)1(\\241)-334(p)1(rze)-1(w)28(o)-28(dzi\\242.)]TJ 0 -13.55 Td[({)-333(I)-334(u)1(s)-1(t\\246pu)1(j\\241)-333(kiej)-333(pr)1(z)-1(ed)-333(c)-1(zym)-333(p)-28(o)-28(czc)-1(iwym.)]TJ 0 -13.549 Td[({)-333(Nikto)-333(s)-1(i)1(\\246)-334(ni)1(e)-334(z)-1(n)1(a)-56(j)1(dzie)-1(,)-333(\\273e)-1(b)29(y)-334(j)1(e)-1(j)-332(z)-1(ap)1(\\252)-1(aci\\252)-333(z)-1(a)-333(te)-334(ci\\241)-28(g\\252e)-334(sw)27(ar)1(y)-333(i)-333(k\\252y\\271)-1(n)1(ienia.)]TJ\nET\nendstream\nendobj\n948 0 obj <<\n/Type /Page\n/Contents 949 0 R\n/Resources 947 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 934 0 R\n>> endobj\n947 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n952 0 obj <<\n/Length 8790      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(295)]TJ -330.353 -35.866 Td[({)-333(Przec)-1(iec)27(h)-333(wiedz\\241)-334(wsz)-1(y)1(s)-1(cy)-333(jak)56(a,)-333(to)-334(cze)-1(m)28(u)-333(s)-1(zc)-1(ze)-1(k)56(acz)-1(o)28(wi)-333(w)-1(i)1(ar\\246)-334(d)1(a)-56(j)1(\\241.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(k)1(to)-334(wymiar)1(kuj)1(e)-1(,)-333(ki)1(e)-1(d)1(y)-334(p)1(ra)28(wd\\246)-334(p)-27(o)28(wie)-1(,)-333(a)-333(kiej)-333(sc)-1(ygan)1(i!)]TJ 0 -13.549 Td[({)-259(Wsz)-1(y)1(s)-1(tk)28(o)-259(j)1(e)-1(st)-259(b)-27(e)-1(z)-259(to,)-259(\\273e)-259(k)55(a\\273da)-259(r)1(ada)-259(s\\252uc)28(ha)-259(n)1(a)-259(dru)1(g\\241)-259({)-259(zak)28(o\\253cz)-1(y\\252a)-259(P)1(\\252os)-1(z-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-300(Niec)27(h)28(b)28(y)-300(si\\246)-300(m)-1(n)1(ie)-301(cz)-1(epi)1(\\252)-1(a,)-300(n)1(ie)-300(daro)28(w)28(a\\252)-1(ab)29(ym!)-300({)-301(wyk)1(rzykn\\246\\252a)-300(T)83(e)-1(r)1(e)-1(sk)56(a)-301(\\273o\\252-)]TJ -27.879 -13.55 Td[(ni)1(e)-1(r)1(k)55(a.)]TJ 27.879 -13.549 Td[({)-440(Hale)-1(,)-440(j)1(akb)28(y)-440(o)-441(tob)1(ie)-441(co)-441(d)1(nia)-440(ni)1(e)-441(p)28(ysk)28(o)28(w)27(a\\252a)-440(p)-28(o)-440(ws)-1(i)-440(s)-1(zepn\\246\\252a)-441(u)1(r\\241)-28(gl)1(iwie)]TJ -27.879 -13.549 Td[(Balc)-1(erk)28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-457(S)1(\\252ys)-1(zeli\\261c)-1(ie,)-456(przywt\\363rzc)-1(i)1(e)-1(!)-456({)-457(zakrzycz)-1(a\\252a)-457(r)1(oz)-1(cz)-1(erwienion)1(a,)-457(b)-27(o)-28(\\242)-457(wiad)1(o-)]TJ -27.879 -13.549 Td[(m)27(y)1(m)-334(b)28(y\\252o,)-333(\\273e)-334(z)-334(Mat)1(e)-1(u)1(s)-1(ze)-1(m)-333(dobr)1(z)-1(e)-333(s)-1(i\\246)-333(z)-1(n)1(a\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-379(P)1(rzywt\\363rz\\246)-1(,)-378(na)28(w)27(et)-379(p)1(rosto)-379(d)1(o)-379(o)-28(cz)-1(\\363)28(w)-379(p)-27(o)27(wiem,)-379(n)1(ie)-1(c)28(h)-379(j)1(e)-1(n)1(o)-379(t)28(w)28(\\363)-56(j)-378(z)-379(w)27(o)-55(jsk)55(a)]TJ -27.879 -13.55 Td[(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(!)]TJ 27.879 -13.549 Td[({)-333(W)83(ar)1(a)-334(w)28(am)-334(d)1(o)-334(mnie!)-333(ale,)-333(b)-28(\\246d\\241)-333(tu)-333(b)-27(e)-1(l)1(e)-334(c)-1(o)-333(p)-27(o)27(wiad)1(a\\242)-1(!)1(...)]TJ 0 -13.549 Td[({)-302(Nie)-303(dr)1(z)-1(yj)-302(si\\246,)-303(k)1(ie)-1(j)-302(ci\\246)-303(n)1(ikt)-302(nie)-303(zac)-1(zepia)-302({)-303(zgromi\\252a)-303(j)1(\\241)-303(sur)1(o)27(w)28(o)-303(P)1(\\252os)-1(zk)28(o)28(w)27(a,)]TJ -27.879 -13.549 Td[(ale)-334(T)84(e)-1(resk)55(a)-333(d\\252u)1(go)-334(n)1(ie)-334(mog\\252a)-334(si\\246)-334(u)1(s)-1(p)-27(ok)28(oi\\242)-333(m)-1(amro)-28(cz)-1(\\241c)-333(c)-1(osik)-333(z)-334(cic)27(h)1(a.)]TJ 27.879 -13.549 Td[({)-292(Byl)1(i)-292(j)1(u\\273)-292(z)-292(ni)1(e)-1(d)1(\\271)-1(wiedzie)-1(m?)-292({)-291(z)-1(agad)1(n\\241\\252)-292(Ro)-27(c)27(ho,)-291(ab)28(y)-291(z)-1(wr\\363)-27(c)-1(i\\242)-292(u)29(w)27(ag\\246)-292(w)-292(i)1(nn\\241)]TJ -27.879 -13.55 Td[(stron\\246.)]TJ 27.879 -13.549 Td[({)-333(Ino)-333(ic)27(h)-333(p)1(atrze)-1(\\242,)-333(b)-28(o)-333(s\\241)-334(j)1(u\\273)-334(u)-333(or)1(ganist\\363)28(w.)]TJ 0 -13.549 Td[({)-333(Kt\\363re)-333(to)-334(c)28(ho)-28(d)1(z)-1(\\241?)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(te)-333(w)-1(i)1(s)-1(ielaki)-333(Gu)1(lb)1(as)-1(o)28(w)27(e)-333(i)-334(F)1(ilip)1(ki)-333(c)27(h)1(\\252opaki!)]TJ 0 -13.549 Td[({)-402(Id)1(\\241)-402(j)1(u\\273,)-402(i)1(d\\241!)-401({)-402(zac)-1(z\\246)-1(\\252y)-401(w)27(o\\252a\\242)-402(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)84(,)-402(b)-27(o)-401(s)-1(i\\246)-402(r)1(oz)-1(leg\\252)-402(p)1(rze)-1(d)-401(d)1(om)-1(em)]TJ -27.879 -13.55 Td[(d\\252u)1(gi)-276(r)1(yk,)-275(a)-276(p)-27(o)-275(nim)-276(g\\252osy)-276(r)1(\\363\\273)-1(n)29(yc)27(h)-275(zw)-1(i)1(e)-1(rz\\241t)-275(z)-1(acz)-1(\\246\\252y)-276(si\\246)-276(rozlega\\242)-276(w)-276(sie)-1(n)1(i,)-275(to)-276(k)28(ogu)1(t)]TJ 0 -13.549 Td[(pi)1(a\\252,)-233(o)28(w)27(ce)-234(b)-27(e)-1(cz)-1(a\\252y)1(;)-233(k)28(o\\253)-233(r)1(\\273)-1(a\\252,)-233(a)-233(p)1(rz)-1(ew)28(o)-28(dzi\\252)-233(im)-233(ktosik)-233(na)-233(p)1(isz)-1(cz)-1(a\\252ce)-1(,)-233(wr)1(e)-1(sz)-1(cie)-233(drzwi)]TJ 0 -13.549 Td[(si\\246)-397(ot)28(w)28(ar\\252y)-396(i)-396(pr)1(z)-1(o)-28(d)1(e)-1(m)-396(w)-1(l)1(az)-1(\\252)-396(c)27(h)1(\\252opak,)-396(p)1(rzy)28(o)-28(dzian)28(y)-396(w)-396(k)28(o\\273)-1(u)1(c)27(h)-396(d)1(o)-396(g\\363ry)-396(w)27(e\\252n\\241,)-396(z)]TJ 0 -13.549 Td[(cz)-1(ap)1(\\241)-317(wysok)55(\\241,)-316(p)1(rzys)-1(molon)28(y)-316(n)1(a)-317(g\\246bi)1(e)-1(,)-316(\\273e)-317(jak)-316(Cygan)-316(si\\246)-317(widzia\\252,)-316(a)-316(c)-1(i\\241)-27(g)-1(n)1(\\241\\252)-317(za)-316(s)-1(o-)]TJ 0 -13.549 Td[(b\\241)-282(n)1(a)-282(d\\252u)1(gim)-282(p)-28(o)28(wr\\363\\261le)-283(on)1(e)-1(go)-282(n)1(ied\\271w)-1(i)1(e)-1(d)1(z)-1(ia,)-281(przyb)1(ranego)-282(c)-1(a\\252k)1(ie)-1(m)-282(w)-282(gro)-28(c)28(ho)28(win)28(y)84(,)]TJ 0 -13.55 Td[(z)-454(k)28(o\\273)-1(u)1(s)-1(zan)28(ym)-454(\\252b)-27(e)-1(m,)-454(z)-454(ru)1(c)27(ha)-55(j\\241cymi)-454(si\\246)-454(us)-1(zami)-454(z)-454(pap)1(ie)-1(r)1(u)-454(i)-453(z)-455(ozorem)-454(c)-1(ze)-1(r)1(w)27(o-)]TJ 0 -13.549 Td[(n)28(ym,)-382(m)-1(o\\273e)-383(n)1(a)-383(\\252okie\\242)-383(wyw)28(alon)28(ym,)-382(do)-382(r\\241k)-382(z)-1(a\\261)-383(mia\\252)-383(p)1(rzywi\\241zane)-383(kij)1(e)-1(,)-382(okr)1(\\246)-1(cone)]TJ 0 -13.549 Td[(w)-303(gr)1(o)-28(c)27(h)1(o)28(w)-1(i)1(n)28(y)-302(i)-302(w)-1(r)1(a\\273)-1(on)1(e)-303(w)-303(tr)1(e)-1(p)29(y)83(,)-302(\\273e)-303(c)27(h)1(o)-28(dzi\\252)-302(nib)28(y)-302(n)1(a)-302(c)-1(zw)27(orak)56(ac)28(h,)-302(a)-302(z)-1(a)-302(ni)1(m)-303(s)-1(zed\\252)]TJ 0 -13.549 Td[(tu)1(\\273)-391(d)1(rugi)-389(w)27(o)-27(dzic)-1(i)1(e)-1(l,)-389(z)-1(e)-390(s\\252om)-1(ian)1(\\241)-390(p)28(yt)1(\\241)-390(i)-390(ki)1(jem)-391(ostry)1(m)-1(i)-389(k)28(o\\252k)55(ami)-390(n)1(a)-56(j)1(e)-1(\\273on)28(ym,)-390(n)1(a)]TJ 0 -13.549 Td[(kt\\363r)1(yc)27(h)-355(tkwi\\252y)-356(k)56(a)28(w)27(a\\252ki)-355(s)-1(\\252oni)1(n)28(y)83(,)-355(to)-356(c)27(h)1(le)-1(b)29(y)83(,)-356(to)-356(j)1(akie\\261)-357(p)-27(\\246k)55(at)1(e)-357(tor)1(b)-28(ec)-1(zki)-356(wisia\\252y)84(,)-356(a)]TJ 0 -13.55 Td[(dop)1(iero)-323(z)-1(a)-323(n)1(imi)-323(Mic)27(h)1(a\\252)-323(o)-28(d)-323(or)1(ganist)28(y)-323(na)-323(pi)1(s)-1(zc)-1(za\\252c)-1(e)-323(przygr)1(yw)27(a)-55(j\\241cy)-323(i)-323(c)-1(a\\252a)-323(h)28(u)1(rma)]TJ 0 -13.549 Td[(c)27(h)1(\\252opak)28(\\363)28(w)-334(z)-334(k)1(ijami,)-333(b)1(ij\\241c)-334(n)1(imi)-333(w)-334(p)-27(o)-28(d\\252og\\246)-334(i)-333(p)-27(okr)1(z)-1(yk)1(uj\\241c)-333(z)-334(c)-1(a\\252ej)-333(mo)-28(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Nied\\271wie)-1(d)1(nik)-368(p)-27(o)-28(c)27(h)29(w)27(ali)1(\\252)-369(Boga,)-368(z)-1(ap)1(ia\\252)-369(p)-27(otem)-369(kiej)-368(k)28(ok)28(ot,)-368(z)-1(ab)-27(e)-1(cza\\252)-369(j)1(ak)-369(b)1(a-)]TJ -27.879 -13.549 Td[(ran)1(,)-333(z)-1(ar)1(\\273)-1(a\\252)-333(nib)28(y)-333(ogi)1(e)-1(r)-333(rozgrzan)28(y)-333(i)-333(z)-1(acz\\241\\252)-334(wykr)1(z)-1(yk)1(iw)27(a\\242:)]TJ 27.879 -13.549 Td[({)-342(Nied\\271w)-1(i)1(e)-1(d)1(nik)1(i)-342(m)27(y)-342(z)-342(kra)-55(ju)-342(d)1(alekiego,)-342(z)-1(za)-342(m)-1(or)1(z)-1(a)-342(sz)-1(eroki)1(e)-1(go,)-342(z)-342(lasu)-342(wiel-)]TJ -27.879 -13.549 Td[(gac)27(h)1(nego!)-277(gd)1(z)-1(ie)-277(l)1(udzie)-277(d)1(o)-277(g\\363ry)-276(nogami)-277(c)28(ho)-28(d)1(z)-1(\\241,)-276(gdzie)-277(p\\252ot)28(y)-276(kie\\252basam)-1(i)-276(gro)-28(d)1(z)-1(\\241,)-276(a)]TJ 0 -13.55 Td[(ogni)1(e)-1(m)-288(si\\246)-288(c)27(h)1(\\252o)-28(dz\\241;)-287(gdzie)-288(garn)1(ki)-287(do)-288(s\\252o\\253ca)-288(p)1(rzys)-1(t)1(a)27(wia)-55(j\\241,)-287(\\261)-1(win)1(ie)-288(p)-27(o)-288(w)28(o)-28(dac)28(h)-287(p\\252y-)]TJ 0 -13.549 Td[(w)28(a)-56(j\\241)-354(i)-354(d)1(e)-1(sz)-1(cz)-1(e)-354(gorza\\252k)55(\\241)-354(p)1(ada)-56(j)1(\\241;)-354(ni)1(e)-1(d)1(\\271)-1(wiedzia)-354(m)27(y)-354(srogiego)-354(w)27(o)-28(d)1(z)-1(im)-354(i)-354(p)-27(o)-355(\\261wiec)-1(ie)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzim!)-307(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ieli)-307(nam)-308(l)1(ud)1(z)-1(ie,)-307(\\273)-1(e)-308(w)-307(te)-1(j)-307(ws)-1(i)-307(s\\241)-308(gosp)-28(o)-27(darze)-308(b)-27(ogac)-1(ze)-1(,)-307(gosp)-28(o)-27(dy-)]TJ 0 -13.549 Td[(ni)1(e)-391(u\\273ycz)-1(li)1(w)27(e,)-390(a)-391(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-390(pi)1(\\246)-1(kn)1(e)-1(,)-390(to\\261m)27(y)-390(p)1(rzy\\261)-1(l)1(i)-390(z)-391(kra)-55(ju)-390(d)1(alekiego)-1(,)-390(zza)-391(d)1(un)1(a)-56(ju)]TJ 0 -13.549 Td[(sz)-1(erokiego,)-333(b)28(y)-333(nas)-333(opatrzyli)1(,)-333(grz)-1(ecz)-1(n)1(ie)-334(pr)1(z)-1(yj)1(\\246)-1(l)1(i)-333(i)-334(n)1(a)-333(drog\\246)-333(c)-1(o)-333(dali)1(.)-333(Am)-1(en.)]TJ 27.879 -13.55 Td[({)-361(P)28(ok)56(a\\273)-1(cie,)-361(co)-362(u)1(mie)-1(cie,)-361(a)-361(m)-1(o\\273e)-361(s)-1(i\\246)-361(la)-361(w)28(as)-362(zna)-56(j)1(dzie)-361(c)-1(o)-361(w)-361(k)28(omorz)-1(e)-361({)-361(rze)-1(k)1(\\252)]TJ -27.879 -13.549 Td[(K\\252\\241b)1(.)]TJ\nET\nendstream\nendobj\n951 0 obj <<\n/Type /Page\n/Contents 952 0 R\n/Resources 950 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n950 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n956 0 obj <<\n/Length 9486      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(296)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-427(P)28(ok)56(a\\273)-1(em)27(y)-427(wraz!)-428(Hej!)-427(gr)1(a)-56(j,)-427(p)1(is)-1(zcz)-1(a\\252o!)-427(ta\\253cuj)1(,)-427(m)-1(i)1(s)-1(iu)1(,)-427(ta\\253cuj)1(!)-428({)-427(z)-1(ak)1(rzy-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252)-333(krop)1(i\\241c)-334(go)-333(kij)1(e)-1(m,)-333(a)-333(na)-333(to)-333(pi)1(s)-1(zc)-1(za\\252k)55(a)-333(wrzas)-1(n)1(\\246)-1(\\252a)-333(pr)1(z)-1(ebi)1(e)-1(ran)1(\\241)-333(n)28(ut\\241,)-333(c)28(h\\252opak)1(i)]TJ 0 -13.549 Td[(ry)1(pn\\246li)-339(k)1(ijami)-339(w)-339(p)-28(o)-27(d\\252og\\246)-340(i)-338(n)28(u\\273)-339(pr)1(z)-1(yk)1(rz)-1(y)1(kiw)28(a\\242)-1(,)-339(w)28(o)-28(d)1(z)-1(iciel)-339(ud)1(a)28(w)27(a\\252)-339(r\\363\\273ne)-339(g\\252os)-1(y)84(,)-339(a)]TJ 0 -13.549 Td[(ni)1(e)-1(d)1(\\271)-1(wiad)1(e)-1(k)-308(j)1(\\241\\252)-309(sk)56(ak)55(a\\242)-308(na)-308(c)-1(zw)28(orak)56(ac)27(h,)-308(r)1(uc)28(ha\\252)-308(usz)-1(ami.)-308(k\\252ap)1(a\\252)-309(ozorem)-1(,)-308(wierzga\\252,)]TJ 0 -13.549 Td[(za)-314(d)1(z)-1(ieuc)28(hami)-313(goni\\252,)-313(a)-313(w)27(o)-27(dzic)-1(i)1(e)-1(l)-313(ni)1(b)28(y)-313(go)-314(to)-313(p)-27(o)28(w)-1(strzym)28(yw)27(a\\252,)-313(a)-313(p)28(yt\\241)-313(w)27(ok)28(\\363\\252)-313(pr)1(a\\252,)]TJ 0 -13.55 Td[(co)-334(wlaz\\252o,)-333(i)-334(k)1(rzyk)56(a)-1(\\252:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(znalaz\\252a\\261)-334(se)-334(m)-1(\\246\\273yn)28(y)83(,)-333(n)1(a\\261)-1(ci,)-333(bab)-27(o,)-333(gro)-27(c)27(ho)28(win)28(y)1(!)]TJ 0 -13.549 Td[(Kr)1(z)-1(yk)-335(si\\246)-335(p)-28(o)-28(d)1(ni)1(\\363)-1(s\\252)-335(w)-336(i)1(z)-1(b)1(ie)-1(,)-335(wrzaski,)-335(rw)28(e)-1(t)1(e)-1(s,)-335(biegani)1(na,)-335(p)1(rz)-1(egon)28(y)84(,)-335(piski,)-335(a)]TJ -27.879 -13.549 Td[(tak)56(a)-385(u)1(c)-1(i)1(e)-1(c)27(h)1(a)-385(zapan)1(o)28(w)27(a\\252a,)-384(a\\273)-385(s)-1(i)1(\\246)-385(z)-1(a)-384(b)-28(ok)1(i)-385(b)1(rali,)-384(n)1(ie)-1(d)1(\\271)-1(wied\\271)-385(za\\261)-385(w)28(c)-1(i\\241\\273)-385(b)1(arasz)-1(k)28(o-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(,)-372(\\014gl)1(e)-373(s)-1(tr)1(oi\\252,)-373(p)1(rze)-1(w)28(ala\\252)-373(si\\246)-373(na)-372(z)-1(iem,)-373(r)1(yc)-1(za\\252,)-373(u)1(c)-1(i)1(e)-1(sz)-1(n)1(ie)-373(s)-1(k)56(ak)56(a\\252,)-373(to)-372(dziew)27(cz)-1(yn)29(y)]TJ 0 -13.549 Td[(br)1(a\\252)-431(wp)-27(\\363\\252)-430(t)27(y)1(m)-1(i)-430(d)1(rew)-1(n)1(ian)28(y)1(m)-1(i)-430(ku)1(lasam)-1(i)-430(i)-430(ci\\241)-28(gn)1(\\241\\252)-431(w)-430(tan,)-430(d)1(o)-430(taktu)-430(M)1(ic)27(h)1(a\\252o)27(w)28(e)-1(j)]TJ 0 -13.55 Td[(pi)1(s)-1(zc)-1(za\\252ki,)-309(a)-310(rz)-1(ek)28(ome)-311(n)1(ied\\271w)-1(i)1(e)-1(d)1(niki)-309(wraz)-311(z)-310(c)27(h)1(\\252opak)56(ami)-310(tak)-310(d)1(ok)56(az)-1(yw)28(ali,)-309(\\273)-1(e)-310(dziw)]TJ 0 -13.549 Td[(si\\246)-334(c)27(h)1(a\\252up)1(a)-334(n)1(ie)-334(rozw)27(al)1(i\\252a)-334(o)-27(d)-333(t)28(yc)27(h)-333(wrzask)28(\\363)27(w,)-333(gon\\363)28(w)-333(i)-334(\\261mie)-1(c)28(h\\363)28(w!)]TJ 27.879 -13.549 Td[(Op)1(atrzy\\252a)-427(ic)27(h)-426(suto)-427(K)1(\\252)-1(\\246b)-27(o)27(w)28(a,)-427(\\273e)-427(w)-1(r)1(e)-1(sz)-1(cie)-427(s)-1(i)1(\\246)-428(wyn)1(ie)-1(\\261li,)-426(ale)-427(d\\252u)1(go)-427(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(s\\252)-1(y)1(c)27(ha\\242)-333(b)28(y\\252o)-333(na)-333(dr)1(o)-28(dze)-334(wrzas)-1(ki)-333(i)-333(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(an)1(ia)-333(ps\\363)27(w.)]TJ 27.879 -13.549 Td[({)-251(Kt\\363ry)1(\\273)-252(to)-251(ud)1(a)28(w)27(a\\252)-251(ni)1(e)-1(d)1(\\271)-1(wiedzia?)-252({)-251(zap)28(yta\\252a)-251(S)1(o)-28(c)27(h)1(o)27(w)28(a,)-251(gdy)-251(si\\246)-251(niec)-1(o)-251(u)1(s)-1(p)-27(o-)]TJ -27.879 -13.55 Td[(k)28(oi\\252o.)]TJ 27.879 -13.549 Td[({)-333(A)-334(Jasiek)-333(Przew)-1(r)1(otn)28(y)84(,)-334(n)1(ie)-334(p)-27(oz)-1(n)1(ali\\261c)-1(i)1(e)-334(to?)]TJ 0 -13.549 Td[({)-333(Kiej)-333(p)-28(o)-27(d)-333(t)28(ym)-334(\\252b)-27(e)-1(m)-333(k)28(o\\273)-1(u)1(s)-1(zan)28(ym)-334(n)1(ie)-334(mog\\252am)-334(r)1(oz)-1(p)-27(oz)-1(n)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-273(Moi\\261c)-1(iewy)83(,)-273(do)-273(\\014gl)1(\\363)27(w)-273(to)-274(rozum)-273(m)-1(a,)-273(p)-27(okrak)56(a)-274(j)1(e)-1(d)1(na)-273(z)-1(au)29(w)27(a\\273y\\252a)-274(Kob)1(uso)28(w)27(a.)]TJ 0 -13.549 Td[({)-465(P)29(o)27(wiad)1(ac)-1(i)1(e)-1(,)-464(jakb)29(y)-465(j)1(u\\273)-465(Jasie)-1(k)-464(ca\\252)-1(k)1(ie)-1(m)-465(b)29(y\\252)-465(g\\252u)1(pi!{)-464(br)1(oni\\252a)-465(go)-464(Nas)-1(tk)56(a,)]TJ -27.879 -13.55 Td[(Mateusz)-306(p)-28(omaga\\252)-306(j)1(e)-1(j)-305(op)-27(o)27(wiad)1(a)-56(j)1(\\241c)-306(r\\363\\273)-1(n)1(o\\261)-1(ci)-306(o)-305(nim,)-305(jak)28(o)-306(t)28(yl)1(k)28(o)-306(ni)1(e)-1(\\261m)-1(i)1(a\\252)-1(y)-305(jes)-1(t)1(,)-306(ale)]TJ 0 -13.549 Td[(zgo\\252)-1(a)-406(n)1(ieg\\252upi)1(.,)-406(a)-406(tak)-405(bron)1(i\\252)-406(Ja\\261k)28(o)27(w)28(ej)-406(spra)28(wy)83(,)-405(\\273)-1(e)-406(ni)1(kto)-406(si\\246)-407(n)1(ie)-406(prze)-1(ciwi\\252,)-406(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(dom)28(y\\261lne,)-333(pr)1(z)-1(yta)-55(jon)1(e)-334(u\\261mie)-1(c)28(h)28(y)-333(z)-1(acz)-1(\\246\\252y)-333(lata\\242)-334(p)-27(o)-333(t)27(w)28(arzac)27(h)1(.)]TJ 27.879 -13.549 Td[(Usadzili)-494(s)-1(i)1(\\246)-495(z)-1(n)1(o)28(w)-1(u)-493(na)-494(da)28(wne)-495(miejsc)-1(a)-494(i)-494(p)-28(ogw)28(arzali)-494(w)28(e)-1(so\\252)-1(o,)-494(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)]TJ -27.879 -13.549 Td[(za\\261)-345(z)-346(J)1(\\363z)-1(k)56(\\241)-345(n)1(a)-345(cz)-1(ele,)-345(j)1(ak)28(o)-345(n)1(a)-56(j\\261mie)-1(l)1(s)-1(z\\241,)-345(n)1(ac)-1(i)1(s)-1(n)1(\\246)-1(\\252y)-344(Ro)-28(c)27(h)1(a)-345(p)-27(o)-28(d)-344(k)28(om)-1(i)1(nem)-345(i)-345(n)28(u)1(\\273)-345(go)]TJ 0 -13.55 Td[(mole)-1(sto)28(w)27(a\\242)-264(i)-264(m)-1(i)1(li\\242)-265(si\\246)-265(p)1(rze)-1(d)-263(nim,)-264(b)28(y)-264(op)-27(o)27(wiedzia\\252)-264(jak)56(\\241)-264(histori)1(\\246)-1(,)-264(j)1(ak)-264(to)-265(u)-263(B)-1(or)1(yn\\363)28(w)]TJ 0 -13.549 Td[(na)-333(j)1(e)-1(sie)-1(n)1(i:)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(am)-1(i)1(\\246)-1(tasz)-334(to,)-333(J\\363zia,)-333(c)-1(om)-333(w)-1(t)1(e)-1(d)1(y)-334(p)-27(o)28(wiada\\252?)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(ak!)-333(B)-1(y)1(\\252o)-334(to)-333(o)-333(t)28(ym)-334(Burk)1(u)-333(P)28(ana)-55(jez)-1(u)1(s)-1(o)28(wym!)]TJ 0 -13.549 Td[({)-333(Rz)-1(ekn\\246)-333(w)27(am)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(o)-333(kr\\363lac)28(h,)-333(kiej\\261cie)-334(cie)-1(k)56(a)28(w)27(e!)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(s)-1(u)1(n\\246li)-227(m)27(u)-227(sto\\252ek)-227(p)-28(o)-27(d)-227(lamp)-28(\\246,)-227(rozs)-1(t\\241)-27(pil)1(i)-227(s)-1(i\\246)-227(niec)-1(o,)-226(\\273)-1(e)-228(u)1(s)-1(i)1(ad\\252)-227(w)-228(p)-27(o\\261ro)-28(d)1(ku,)]TJ -27.879 -13.549 Td[(kiej)-359(te)-1(n)-359(stary)84(,)-360(siwy)-359(d\\241b)-359(na)-359(p)-28(olan)1(ie,)-360(oto)-27(c)-1(zon)28(y)-359(p)-28(\\363\\252k)28(olem)-360(z)-1(w)28(art)28(yc)28(h,)-359(p)-28(o)-27(c)27(h)28(yl)1(on)28(yc)27(h)]TJ 0 -13.549 Td[(kr)1(z)-1(y)84(,)-333(i)-334(zacz)-1(\\241\\252)-333(pra)28(wi\\242)-334(z)-333(w)27(oln)1(a)-334(i)-333(n)1(ieg\\252)-1(o\\261no.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-331(ogarn)1(\\246)-1(\\252a)-331(izb)-28(\\246,)-331(\\273e)-332(j)1(e)-1(n)1(o)-331(wrz)-1(eciona)-331(w)28(ark)28(ota\\252y)84(,)-331(a)-331(c)-1(zas)-1(em)-331(ogie)-1(\\253)-330(trza-)]TJ -27.879 -13.549 Td[(sn\\241\\252)-403(n)1(a)-403(k)28(ominie)-403(al)1(b)-28(o)-402(c)-1(zyje\\261)-403(w)27(es)-1(tc)28(hn)1(ie)-1(n)1(ie)-403(zas)-1(ze)-1(mra\\252o)-403({)-402(a)-403(Ro)-28(c)27(h)1(o)-403(p)-27(o)28(w)-1(i)1(ada\\252)-403(cu-)]TJ 0 -13.549 Td[(de\\253k)56(a)-352(r\\363\\273ne)-352(i)-353(h)1(istorie)-352(o)-353(k)1(r\\363lac)27(h)1(,)-352(o)-352(w)27(o)-55(jnac)28(h)-352(s)-1(r)1(ogic)27(h)1(,)-352(o)-353(g\\363r)1(ac)27(h)1(,)-353(gd)1(z)-1(i)1(e)-353(\\261)-1(p)1(i)-352(w)27(o)-55(jsk)28(o)]TJ 0 -13.55 Td[(zakl\\246te)-1(,)-325(cz)-1(ek)56(a)-56(j)1(\\241c)-326(jego)-325(z)-1(atr)1(\\241bieni)1(a,)-325(b)28(y)-325(si\\246)-326(zbu)1(dzi\\242)-326(i)-325(p)1(a\\261)-1(\\242)-325(na)-325(ni)1(e)-1(p)1(rzyjacio\\252y)83(,)-325(i)-324(p)-28(o-)]TJ 0 -13.549 Td[(bi)1(\\242)-1(,)-344(i)-344(z)-1(i)1(e)-1(mi\\246)-345(ze)-345(z\\252e)-1(go)-344(o)-28(c)-1(zy\\261c)-1(i)1(\\242)-1(;)-344(o)-344(z)-1(amk)56(ac)27(h)-344(wielgac)27(h)1(n)28(yc)27(h)1(,)-344(gdzie)-345(z\\252)-1(ot)1(e)-345(iz)-1(b)29(y)83(,)-344(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(kr)1(\\363le)-1(wn)28(y)-354(z)-1(ak)1(l\\246)-1(t)1(e)-356(w)-354(bia\\252yc)28(h)-354(gz)-1(\\252ac)27(h)-354(w)-355(ksi\\246\\273)-1(y)1(c)-1(o)28(w)27(e)-355(n)1(o)-28(ce)-355(lam)-1(en)28(tu)1(j\\241)-354(i)-355(wyb)1(a)27(wiciela)]TJ 0 -13.549 Td[(cz)-1(ek)55(a)-55(j\\241,)-300(gd)1(z)-1(i)1(e)-301(w)-300(pust)28(yc)27(h)-299(p)-28(ok)28(o)-55(jac)28(h)-300(c)-1(o)-300(n)1(o)-28(c)-301(b)1(rzm)-1(i)-300(m)28(uzyk)56(a,)-300(z)-1(ab)1(a)28(w)-1(y)-299(id\\241,)-300(lu)1(dzie)-300(s)-1(i\\246)]TJ 0 -13.549 Td[(sc)27(ho)-27(dz\\241,)-331(a)-331(niec)27(h)-331(k)1(ur)-331(zapieje,)-331(ws)-1(zystk)28(o)-331(z)-1(ap)1(ada)-331(i)-331(w)-331(grob)28(y)-331(si\\246)-331(k\\252adzie)-1(;)-330(o)-332(k)1(ra)-56(j)1(ac)27(h)1(,)]TJ 0 -13.55 Td[(gdzie)-413(lu)1(dzie)-413(kiej)-413(d)1(rze)-1(w)28(a,)-413(gd)1(z)-1(ie)-413(mo)-28(c)-1(ar)1(z)-1(e,)-413(co)-413(g\\363rami)-412(rz)-1(u)1(c)-1(a)-55(j\\241,)-412(gdzie)-413(s)-1(k)56(arb)29(y)-413(ni)1(e)-1(-)]TJ 0 -13.549 Td[(pr)1(z)-1(ebr)1(ane,)-316(p)1(rze)-1(z)-316(sm)-1(oki)-315(one)-316(p)1(iekielne)-316(strze)-1(\\273one,)-316(gd)1(z)-1(i)1(e)-316(ptaki)1(-)-1(\\273ary)84(,)-316(gd)1(z)-1(ie)-316(M)1(adeje,)]TJ\nET\nendstream\nendobj\n955 0 obj <<\n/Type /Page\n/Contents 956 0 R\n/Resources 954 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n954 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n959 0 obj <<\n/Length 9730      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(297)]TJ -358.232 -35.866 Td[(gdzie)-372(kije)-372(s)-1(amob)1(ije,)-372(a)-372(one)-372(Le)-1(le-P)28(olele)-1(,)-372(a)-372(on)1(e)-373(p)-27(o\\252ud)1(nice)-1(,)-372(u)1(pior)1(y)83(,)-372(strac)28(h)28(y)84(,)-372(c)-1(zary)84(,)]TJ 0 -13.549 Td[(dziwno\\261ci!)-317({)-318(a)-317(dr)1(ugie)-318(j)1(e)-1(sz)-1(cze)-1(,)-317(in)1(s)-1(ze)-318(a)-318(cud)1(ne)-317(i)-318(wp)1(ros)-1(t)-317(n)1(ie)-318(do)-317(wiary)84(,)-317(\\273)-1(e)-318(wr)1(z)-1(ec)-1(ion)1(a)]TJ 0 -13.549 Td[(z)-356(r\\241k)-356(lecia\\252y)83(,)-355(a)-356(du)1(s)-1(ze)-357(si\\246)-356(nies)-1(\\252y)-355(w)-356(z)-1(acz)-1(aro)28(w)28(ane)-356(\\261)-1(wiat)28(y)84(,)-356(o)-28(czy)-356(gorza\\252y)83(,)-356(\\252zy)-356(ciek\\252y)]TJ 0 -13.549 Td[(z)-366(n)1(ie)-1(op)-27(o)28(wie)-1(d)1(z)-1(i)1(a)-1(n)1(e)-1(j)-364(lub)-27(o\\261)-1(ci)-365(i)-365(s)-1(erc)-1(a)-365(d)1(z)-1(iw)-365(nie)-366(wysk)28(o)-28(cz)-1(y\\252y)-365(z)-366(p)1(ie)-1(r)1(s)-1(i)-365(z)-366(u)1(t\\246)-1(skn)1(ie)-1(n)1(ia)-365(i)]TJ 0 -13.549 Td[(p)-27(o)-28(dziwu.)]TJ 27.879 -13.55 Td[(A)-354(n)1(a)-354(k)28(o\\253)1(c)-1(u)-353(op)-27(o)28(wiada\\252)-353(o)-354(kr)1(\\363lu,)-353(kt\\363r)1(e)-1(go)-353(pano)28(wie)-354(l)1(a)-354(pr)1(z)-1(e\\261)-1(miewis)-1(k)56(a)-353(c)27(h\\252op)1(-)]TJ -27.879 -13.549 Td[(skim)-400(kr)1(\\363lem)-400(pr)1(z)-1(ez)-1(yw)28(ali,)-399(\\273e)-400(to)-399(b)28(y\\252)-399(pan)-399(lu)1(dzki,)-399(s)-1(p)1(ra)28(wiedliwy)-399(i)-399(dob)1(ro)-399(naro)-27(do)28(wi)]TJ 0 -13.549 Td[(ca\\252)-1(em)27(u)-266(c)-1(zyni)1(\\241c)-1(y)84(,)-267(o)-267(jego)-267(w)27(o)-55(jn)1(ac)27(h)-267(srogic)28(h,)-267(tu)1(\\252ac)-1(t)28(wie,)-267(prze)-1(b)1(ierani)1(ac)27(h)-267(si\\246)-267(p)-28(o)-267(c)27(h)1(\\252op-)]TJ 0 -13.549 Td[(sku,)-413(w)-414(kt\\363r)1(ym)-414(c)27(h)1(o)-28(dzi\\252)-414(p)-27(o)-414(wsiac)27(h)1(,)-414(w)-413(kumos)-1(t)28(w)28(ac)27(h)-413(si\\246)-414(br)1(ata\\252,)-414(o)-413(z)-1(\\252em)-414(s)-1(i\\246)-414(p)1(rze)-1(-)]TJ 0 -13.549 Td[(wiady)1(w)27(a\\252)-397(i)-397(kr)1(z)-1(ywd)1(y)-397(napr)1(a)28(w)-1(i)1(a\\252)-1(,)-397(i)-396(z)-1(\\252o\\261c)-1(i)-397(gasi\\252,)-397(a)-397(p)-28(otem,)-397(b)28(y)-397(ju)1(\\273)-398(b)29(y\\242)-398(za)-397(jedno)-397(z)]TJ 0 -13.549 Td[(c)27(h)1(\\252opami,)-354(to)-354(s)-1(i)1(\\246)-355(o\\273e)-1(n)1(i\\252)-355(z)-354(gos)-1(p)-27(o)-28(d)1(arsk)55(\\241)-354(c\\363rk)56(\\241)-354(s)-1(p)-27(o)-28(d)-354(Kr)1(ak)28(o)28(w)27(a,)-354(a)-354(Zo\\014a)-354(b)28(y\\252o)-354(j)1(e)-1(j)-354(n)1(a)]TJ 0 -13.55 Td[(imi\\246,)-346(dzie)-1(ci)-346(z)-347(n)1(i\\241)-346(mia\\252,)-346(na)-346(zam)-1(ek)-346(p)-27(o)27(wi\\363)-27(d\\252)-346(krak)28(o)28(ws)-1(k)1(i)-346(i)-346(tam)-347(w)-346(d\\252u)1(gi)-346(w)-1(i)1(e)-1(k)-346(r)1(z)-1(\\241d)1(y)]TJ 0 -13.549 Td[(spra)28(w)28(o)27(w)28(a\\252)-333(jak)28(o)-333(te)-1(n)-333(o)-27(c)-1(iec)-334(n)1(a)-56(jl)1(e)-1(p)1(s)-1(zy)-333(naro)-27(du)-333(i)-333(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(gosp)-27(o)-28(dar)1(z)-1(!)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(ali)-434(coraz)-434(pi)1(lniej,)-433(ni)1(e)-435(t)1(rac)-1(\\241c)-434(an)1(i)-434(s\\252o)27(w)28(a)-434(i)-433(dec)27(h)-433(na)28(w)28(e)-1(t)-433(ta)-56(j)1(\\241c)-435(w)-434(sobi)1(e)-1(,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-324(ino)-324(nie)-325(p)1(rz)-1(erw)28(a\\242)-325(te)-1(go)-324(r\\363\\273a\\253ca)-325(c)-1(u)1(do)28(wno\\261c)-1(i)1(.)-325(Jagu)1(s)-1(i)1(a)-325(z)-1(a\\261)-325(ca\\252kiem)-325(nie)-325(mog\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(\\241\\261\\242)-1(,)-333(op)1(ad\\252y)-333(jej)-333(r\\246)-1(ce,)-334(p)-27(o)-28(c)27(h)29(yli\\252a)-333(g\\252o)27(w)28(\\246)-334(i)-333(w)-1(spar)1(ta)-334(p)-27(oli)1(c)-1(zkiem)-334(o)-334(k)56(\\241dziel,)-333(utop)1(i\\252a)]TJ 0 -13.55 Td[(mo)-28(dr)1(e)-1(,)-258(o\\252z)-1(a)28(wione)-259(o)-28(cz)-1(y)-258(w)-259(Ro)-28(c)27(h)1(o)28(w)27(ej)-258(t)27(w)28(arzy)83(,)-258(kt\\363r)1(e)-1(n)-258(s)-1(i)1(\\246)-260(j)1(e)-1(j)-258(wid)1(z)-1(ia\\252)-258(jak)28(o)-259(ten)-258(\\261)-1(wi\\246t)28(y)]TJ 0 -13.549 Td[(z)-317(ob)1(raz)-1(\\363)28(w)-316(z)-1(es)-1(z\\252y)83(,)-316(b)-27(o)-28(\\242)-317(i)-316(b)28(y\\252)-316(p)-28(o)-27(dobi)1(e)-1(n)-316(ze)-317(siw)27(ego)-317(w\\252osa,)-317(z)-316(d\\252ugi)1(e)-1(j)-316(b)1(ia\\252e)-1(j)-316(b)1(ro)-28(d)1(y)-317(i)-316(z)]TJ 0 -13.549 Td[(t)28(yc)27(h)-269(o)-28(cz)-1(\\363)28(w)-270(blad)1(yc)27(h)1(,)-270(z)-1(ap)1(atrzon)28(yc)27(h)-269(gdzies)-1(ik)-270(w)-270(za\\261)-1(wiat)28(y)-270({)-270(s\\252)-1(u)1(c)27(h)1(a\\252a)-271(go)-270(ca\\252\\241)-270(du)1(s)-1(z\\241,)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-347(m)-1(o)-28(c\\241)-348(cz)-1(u)1(j\\241ce)-1(go)-348(mo)-28(cno)-348(serc)-1(a)-347(i)-348(tak)-348(gor)1(\\241c)-1(o)-348(b)1(ra\\252a)-348(w)-348(siebie)-348(jego)-348(p)-27(o)28(w)-1(i)1(adani)1(a,)]TJ 0 -13.549 Td[(\\273e)-380(le)-1(d)1(wie)-380(m)-1(og\\252a)-379(dyc)28(ha\\242)-380(ze)-380(w)-1(zru)1(s)-1(ze)-1(n)1(ia,)-379(widzia\\252a)-380(wsz)-1(ystk)28(o)-379(jak)-379(\\273)-1(yw)28(e)-380(i)-379(tam)-380(s)-1(z\\252a)]TJ 0 -13.55 Td[(du)1(s)-1(z\\241,)-322(gdzie)-322(w)-1(i)1(\\363)-28(d\\252)-322(s\\252)-1(o)28(w)28(am)-1(i)1(,)-322(a)-322(ju\\273)-322(na)-55(jb)1(ardziej)-322(c)27(h)29(w)-1(y)1(c)-1(i\\252a)-322(j)1(\\241)-323(za)-322(s)-1(erce)-323(ta)-322(h)1(is)-1(tor)1(ia)-322(o)]TJ 0 -13.549 Td[(kr)1(\\363lu)-333(i)-333(te)-1(j)-333(gosp)-27(o)-28(dar)1(s)-1(ki)1(e)-1(j)-333(c\\363rce)-1(.)-333(Jez)-1(u)1(s)-1(,)-333(j)1(ak)-333(s)-1(i\\246)-333(to)-334(j)1(e)-1(j)-333(\\261liczn)28(ym)-334(wid)1(z)-1(i)1(a\\252)-1(o!)]TJ 27.879 -13.549 Td[({)-326(I)-326(to)-326(s)-1(am)-326(kr\\363l)-326(tak)-325(\\273)-1(y\\252)-326(z)-326(c)27(h\\252op)1(am)-1(i)1(?)-327({)-326(zap)28(yta\\252)-326(K\\252\\241b)-326(p)-27(o)-326(d\\252u)1(gim)-327(milcze)-1(n)1(iu.)]TJ 0 -13.549 Td[({)-333(Sam)-334(k)1(r\\363l!)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(umar\\252ab)28(ym,)-333(gdy)1(b)28(y)-333(kr\\363l)-333(d)1(o)-334(mni)1(e)-334(pr)1(z)-1(em)-1(\\363)28(wi\\252!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(Nastk)56(a.)]TJ 0 -13.55 Td[({)-333(P)28(os)-1(z\\252ab)28(ym)-333(z)-1(a)-333(nim)-333(w)-334(ca\\252y)-333(\\261)-1(wiat)-333(z)-1(a)-333(to)-333(jedn)1(o)-334(s\\252o)28(w)27(o!')]TJ 0 -13.549 Td[(W)-305(c)-1(a\\252y)-306(\\261wiat!)-305({)-306(wykrzykn)1(\\246)-1(\\252a)-306(n)1(ami\\246)-1(tn)1(ie)-306(Jagna,)-305(pr)1(z)-1(ej\\246ta)-306(taki)1(m)-306(m)-1(o)-27(c)-1(n)28(ym)-306(a)]TJ -27.879 -13.549 Td[(zapami\\246)-1(t)1(a\\252)-1(y)1(m)-368(wz)-1(r)1(usz)-1(eniem)-1(,)-367(\\273e)-368(ni)1(e)-1(c)28(h)28(b)28(y)-367(s)-1(i)1(\\246)-368(ja)28(wi\\252)-368(w)-367(te)-1(n)-367(mome)-1(n)29(t,)-367(niec)27(h)28(b)28(y)-367(r)1(z)-1(ek\\252)]TJ 0 -13.549 Td[(to)-333(s)-1(\\252o)28(w)28(o,)-334(a)-333(p)-27(os)-1(z\\252ab)28(y)83(,)-333(j)1(ak)-333(s)-1(ta\\252a,)-333(w)-333(t\\246)-334(no)-27(c)-1(,)-333(w)-334(ten)-333(mr\\363z,)-333(w)-334(ca\\252)-1(y)-333(\\261wiat!)]TJ 27.879 -13.549 Td[(Op)1(adli)-412(wnet)-413(Ro)-28(c)27(h)1(a)-413(p)28(ytan)1(iami,)-413(a)-412(gdzie)-413(to)-413(z)-1(amki)-412(takie,)-413(w)28(o)-56(j)1(s)-1(k)56(a)-413(tak)1(ie)-1(,)-412(te)]TJ -27.879 -13.55 Td[(b)-27(ogac)-1(t)28(w)28(a,)-333(te)-334(m)-1(o)-27(c)-1(e,)-333(\\261)-1(Iicz)-1(n)1(o\\261)-1(ci)-333(takie,)-333(kr\\363l)1(e)-334(takie,)-333(gdzie?)]TJ 27.879 -13.549 Td[(Wi\\246c)-362(op)-28(o)28(wiada\\252)-362(sm)27(u)1(tnie)-362(ni)1(e)-1(co)-362(a)-362(tak)-362(m\\241drze)-1(,)-361(w)-1(r)1(az)-363(p)1(ra)28(wdy)-362(r)1(\\363\\273)-1(n)1(e)-363(i)-362(p)1(rzy-)]TJ -27.879 -13.549 Td[(k)56(az)-1(an)1(ia)-444(p)-28(o)28(wiada\\252,)-444(\\273e)-445(jeno)-444(wz)-1(d)1(yc)27(h)1(ali)-444(c)-1(i)1(\\246)-1(\\273k)28(o)-445(medytu)1(j\\241c)-445(i)-444(r)1(oz)-1(w)28(a\\273)-1(a)-55(j\\241c)-445(p)1(iln)1(ie)-445(te)]TJ 0 -13.549 Td[(ur)1(z)-1(\\241d)1(z)-1(eni)1(a)-334(n)1(a)-334(\\261wie)-1(cie...)]TJ 27.879 -13.549 Td[({)-333(Je)-1(d)1(no)-333(dzisia)-56(j)-333(cz)-1(\\252o)28(wiek)28(o)27(w)28(e,)-334(a)-333(j)1(utro)-333(w)-333(b)-28(oskiej)-333(m)-1(o)-27(c)-1(y!)-333({)-333(rze)-1(k)1(\\252)-334(K\\252\\241b)1(.)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(o)-428(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(a\\252)-428(z)-1(m\\246c)-1(zon)28(y)83(,)-427(a)-428(\\273e)-428(z)-1(a\\261)-428(wsz)-1(ystkic)28(h)-428(d)1(usz)-1(e)-428(ogar)1(ni\\246te)-428(b)28(y\\252y)]TJ -27.879 -13.55 Td[(jesz)-1(cz)-1(e)-347(on)28(ymi)-347(c)-1(u)1(do)28(wno\\261c)-1(i)1(am)-1(i,)-347(t)1(o)-348(zacz)-1(\\246li)-347(mi\\246)-1(d)1(z)-1(y)-347(sob\\241)-347(cic)27(h)1(o)-347(z)-1(r)1(az)-1(u)1(,)-347(a)-347(p)-28(otem)-348(j)1(u\\273)]TJ 0 -13.549 Td[(dl)1(a)-334(wsz)-1(ystkic)28(h)-333(w)-334(g\\252os)-334(op)-27(o)28(wiada\\242,)-333(c)-1(o)-333(kto)-333(wie)-1(d)1(z)-1(i)1(a\\252.)]TJ 27.879 -13.549 Td[(Jedn)1(a)-373(co)-372(rze)-1(k\\252a,)-372(p)-27(o)-372(tej)-372(dr)1(uga,)-372(to)-372(i)-372(tr)1(z)-1(ec)-1(i)1(e)-1(j)-372(si\\246)-372(przyp)-27(om)-1(n)1(ia\\252o,)-372(i)-372(cz)-1(w)28(artej,)]TJ -27.879 -13.549 Td[(a)-464(k)56(a\\273da)-464(co)-464(n)1(o)28(w)27(ego)-464(ni)1(e)-1(s\\252a,)-464(\\273e)-464(s)-1(n)28(u)1(\\252y)-464(si\\246)-464(on)1(e)-465(gad)1(ki)-463(jak)28(o)-464(t)1(e)-465(n)1(ici)-464(z)-464(k)56(\\241dzieli,)-463(ja-)]TJ 0 -13.549 Td[(k)28(o)-337(ta)-336(mie)-1(si\\246c)-1(zna)-336(p)-28(o\\261wiata,)-337(gr)1(a)-56(j)1(\\241c)-1(a)-336(farb)1(am)-1(i)-336(na)-336(p)-28(o\\261lep\\252yc)28(h,)-336(p)-28(omar\\252yc)28(h)-336(w)27(o)-28(d)1(ac)27(h)1(,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(ta)-56(j)1(on)28(yc)27(h)-429(w)-430(b)-27(orac)28(h)-430({)-429(to)-430(o)-429(topielicy)-430(p)1(rzyc)27(h)1(o)-28(dz\\241ce)-1(j)-429(no)-27(c)-1(ami)-430(k)56(armi\\242)-430(g\\252o)-28(d)1(ne)]TJ 0 -13.549 Td[(dziec)-1(i)1(\\241tk)28(o,)-324(o)-325(u)1(pior)1(ac)27(h,)-324(k)1(t\\363rym)-324(m)27(u)1(s)-1(ian)1(o)-325(w)-324(tru)1(mnac)27(h)-324(serc)-1(a)-324(p)1(rz)-1(ebi)1(ja\\242)-325(osik)28(o)28(wymi)]TJ\nET\nendstream\nendobj\n958 0 obj <<\n/Type /Page\n/Contents 959 0 R\n/Resources 957 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n957 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n962 0 obj <<\n/Length 10531     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(298)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(k)28(o\\252k)56(am)-1(i)1(,)-319(b)29(y)-319(z)-319(l)1(ud)1(z)-1(i)-318(krwi)-318(ni)1(e)-319(wypij)1(a\\252y)83(,)-318(o)-318(p)-28(o\\252u)1(dni)1(c)-1(ac)28(h)-318(dusz\\241c)-1(yc)28(h)-318(p)-28(o)-318(mie)-1(d)1(z)-1(ac)28(h,)-318(o)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(ac)28(h)-352(gad)1(a)-56(j)1(\\241c)-1(yc)28(h,)-352(o)-352(wil)1(k)28(o\\252)-1(ak)56(ac)28(h,)-352(o)-352(zja)28(w)28(ac)27(h)-352(straszn)28(yc)27(h)-351(p)-28(\\363\\252n)1(o)-28(cn)28(yc)27(h)-351(go)-28(dzin)1(,)]TJ 0 -13.549 Td[(strac)27(h)1(ac)27(h)1(,)-351(wis)-1(i)1(e)-1(lcac)27(h)1(,)-351(o)-351(c)-1(zaro)28(wnicac)27(h)-350(i)-351(p)-27(okutu)1(j\\241cyc)27(h)-350(du)1(s)-1(zac)27(h)1(,)-351(i)-351(o)-351(takic)28(h)-351(d)1(z)-1(iw-)]TJ 0 -13.549 Td[(n)28(yc)28(h,)-325(p)1(rze)-1(ra\\273a)-56(j)1(\\241c)-1(y)1(c)27(h)-325(r)1(z)-1(ec)-1(zac)27(h)1(,)-325(o)-28(d)-325(kt\\363r)1(yc)27(h)-325(s\\252uc)28(han)1(ia)-325(w)-1(\\252osy)-325(s)-1(i)1(\\246)-326(p)-27(o)-28(dn)1(os)-1(i\\252y)84(,)-325(s)-1(erca)]TJ 0 -13.549 Td[(zam)-1(iera\\252y)-410(z)-411(trw)27(ogi)1(,)-411(zimn)28(y)-411(d)1(res)-1(zc)-1(z)-411(p)1(rz)-1(eni)1(k)55(a\\252)-410(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)1(,)-411(\\273e)-412(milk)1(li)-411(n)1(araz)-411(ogl\\241-)]TJ 0 -13.55 Td[(da)-55(j\\241c)-368(s)-1(i)1(\\246)-369(tr)1(w)27(o\\273nie,)-368(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241c,)-368(b)-28(o)-368(si\\246)-368(wyda)28(w)28(a\\252)-1(o,)-367(i\\273)-369(co\\261)-368(c)27(ho)-27(dzi)-368(p)-27(o)-368(pu\\252ap)1(ie)-1(,)-367(\\273)-1(e)]TJ 0 -13.549 Td[(cos)-1(ik)-340(c)-1(zai)-341(si\\246)-341(z)-1(a)-340(oknami,)-341(\\273e)-341(pr)1(z)-1(ez)-342(szyb)28(y)-341(k)1(rw)27(a)28(wi\\241)-341(si\\246)-341(jak)1(ie)-1(\\261)-341(\\261le)-1(p)1(ia)-341(i)-340(w)-341(c)-1(iemn)28(yc)27(h)]TJ 0 -13.549 Td[(k)56(\\241tac)27(h)-300(k\\252\\246bi\\241)-301(si\\246)-301(n)1(ie)-1(r)1(oz)-1(p)-27(oz)-1(n)1(ane)-301(cie)-1(n)1(ie...)-300(a\\273)-302(n)1(iejedna)-300(\\273)-1(egna\\252a)-301(si\\246)-301(pr)1(\\246)-1(d)1(k)28(o,)-301(p)1(ac)-1(ierz)]TJ 0 -13.549 Td[(trzepi\\241c)-374(w)-373(c)-1(ic)28(ho\\261c)-1(i)-373(dzw)27(on)1(i\\241cym)-1(i)-373(z\\246)-1(b)1(am)-1(i)1(...)-373(ale)-374(to)-373(ryc)27(h)1(\\252o)-374(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252o)-373(jak)-373(c)-1(i)1(e)-1(\\253)1(,)]TJ 0 -13.549 Td[(gdy)-342(c)27(hm)28(ur)1(k)55(a)-343(s\\252o\\253ce)-344(n)1(akryj)1(e)-1(,)-343(\\273e)-344(p)-27(otem)-344(n)1(ie)-344(wiad)1(a)-343(na)28(w)28(e)-1(t,)-343(cz)-1(y)-342(b)28(y\\252...)-342(i)-343(z)-1(n)1(o)27(wu)-342(p)-28(o-)]TJ 0 -13.549 Td[(wiadal)1(i,)-260(pr)1(z)-1(\\246dli)-260(a)-260(motali)-260(dal)1(e)-1(j)-260(on)1(e)-261(gad)1(ki)-260(nies)-1(k)28(o\\253)1(c)-1(zone,)-260(kt\\363r)1(ym)-261(sam)-261(Ro)-28(c)28(ho)-260(pil)1(nie)]TJ 0 -13.55 Td[(si\\246)-334(pr)1(z)-1(y)1(s)-1(\\252uc)28(hiw)28(a\\252)-333(i)-334(n)1(o)28(w)27(\\241)-333(histori)1(\\246)-334(rze)-1(k)1(\\252)-334(o)-333(k)28(oniu)1(...)]TJ 27.879 -13.549 Td[(-\\377)-56(Jeden)-275(b)1(iedn)28(y)-274(gos)-1(p)-27(o)-28(dar)1(z)-276(p)1(i\\241ciom)-1(or)1(go)28(w)-1(y)-274(m)-1(i)1(a\\252)-275(k)28(onia,)-274(ale)-276(t)1(a)-1(k)-274(nar)1(o)27(wn)1(e)-1(go)-275(i)]TJ -27.879 -13.549 Td[(pr)1(\\363\\273)-1(n)1(iak)56(a)-290(j)1(ak)-290(ma\\252o,)-289(pr\\363\\273no)-289(m)27(u)-289(d)1(ogadza\\252,)-290(o)28(ws)-1(em)-290(p)1(as)-1(\\252,)-289(a)-290(n)1(ie)-290(dogo)-27(dzi\\252,)-290(k)28(o\\253)-289(r)1(obi\\242)]TJ 0 -13.549 Td[(ni)1(e)-271(c)27(h)1(c)-1(ia\\252,)-270(up)1(rz\\246)-1(\\273e)-271(rw)28(a\\252)-271(i)-270(k)28(op)28(y)1(tam)-1(i)-270(bi)1(\\252,)-271(\\273e)-271(ani)-270(d)1(os)-1(t\\241)-27(pi\\242...)-270(P)28(ewnego)-271(razu)-270(ze)-1(\\271li\\252)-270(s)-1(i\\246)]TJ 0 -13.549 Td[(c)27(h)1(\\252op)-365(s)-1(r)1(o)-28(dze)-1(;)-365(b)-27(o)-365(obacz)-1(y\\252,)-365(\\273e)-366(z)-366(n)1(im)-366(d)1(obr)1(o)-1(\\261ci\\241)-365(nie)-366(p)-27(orad)1(z)-1(i)1(,)-365(z)-1(a\\252o\\273)-1(y)1(\\252)-366(go)-365(do)-365(p)1(\\252)-1(u)1(ga)]TJ 0 -13.55 Td[(i)-421(p)-27(o)-28(c)-1(z\\241\\252)-421(um)27(y)1(\\261)-1(ln)1(ie)-422(or)1(a\\242)-422(s)-1(t)1(ary)-421(ugor)1(,)-422(b)29(y)-421(go)-422(p)1(rze)-1(m\\246)-1(czy\\242)-422(i)-421(do)-421(p)-27(ok)28(ory)-421(nagi)1(\\241\\242)-1(,)-421(ale)]TJ 0 -13.549 Td[(k)28(o\\253)-303(ci\\241)-28(gn)1(\\241\\242)-304(nie)-303(c)27(hcia\\252,)-303(s)-1(p)1(ra\\252)-303(go)-304(wtedy)-303(k)28(ozic)-1(\\241,)-303(co)-303(w)-1(l)1(az)-1(\\252o,)-303(i)-303(pr)1(z)-1(ym)28(usi\\252;)-303(k)28(o\\253)-303(rob)1(i\\252,)]TJ 0 -13.549 Td[(jeno)-411(\\273e)-412(s)-1(ob)1(ie)-412(to)-411(m)-1(i)1(a\\252)-412(za)-412(kr)1(z)-1(ywd)1(\\246)-412(i)-411(z)-1(ap)1(a)-1(mi\\246ta\\252)-412(d)1(obr)1(z)-1(e,)-411(a\\273)-412(i)-412(wycze)-1(k)56(a\\252)-412(n)1(a)-412(p)-27(or\\246)]TJ 0 -13.549 Td[(sp)-28(osobn)1(\\241,)-335(kiej)-334(gos)-1(p)-27(o)-28(dar)1(z)-336(r)1(az)-1(u)-334(jedn)1(e)-1(go)-335(sc)27(h)29(yli\\252)-335(si\\246,)-335(b)28(y)-335(m)28(u)-335(p)-27(\\246ta)-335(z)-1(d)1(j\\241\\242)-335(z)-335(kul)1(as)-1(\\363)28(w,)]TJ 0 -13.549 Td[(trzasn\\241\\252)-305(go)-306(zadn)1(imi)-305(k)28(op)28(ytami)-305(i)-305(na)-305(m)-1(i)1(e)-1(j)1(s)-1(cu)-305(z)-1(ab)1(i\\252,)-305(a)-305(s)-1(am)-305(w)-306(ca\\252)-1(y)-305(\\261wiat)-305(p)-28(ogn)1(a\\252)-306(n)1(a)]TJ 0 -13.55 Td[(w)28(olno\\261\\242)-1(!)]TJ 27.879 -13.549 Td[(Latem)-329(b)28(y\\252o)-329(m)28(u)-329(n)1(iez)-1(gor)1(z)-1(ej,)-328(w)-329(c)-1(ieni)1(ac)27(h)-328(s)-1(i\\246)-329(wyl)1(e)-1(giw)28(a\\252)-329(i)-328(w)-329(c)-1(u)1(dzyc)27(h)-328(z)-1(b)-27(o\\273ac)27(h)]TJ -27.879 -13.549 Td[(wypasa\\252,)-377(al)1(e)-377(s)-1(k)28(oro)-376(nad)1(e)-1(sz)-1(\\252a)-377(zima,)-377(spad)1(\\252y)-377(\\261niegi,)-376(m)-1(r)1(\\363z)-377(c)27(h)28(wyci\\252,)-377(p)1(as)-1(zy)-377(b)1(rak\\252o)-376(i)]TJ 0 -13.549 Td[(zi\\241b)-340(pr)1(z)-1(ejmo)28(w)27(a\\252)-340(go)-341(d)1(o)-341(k)28(o\\261c)-1(i,)-340(to)-340(p)-27(op)-28(\\246dzi\\252)-341(zno)28(wu)-340(dal)1(e)-1(j)-340(sz)-1(u)1(k)56(a\\242)-341(s)-1(tr)1(a)27(wy)84(,)-340(le)-1(cia\\252)-340(tak)]TJ 0 -13.549 Td[(dn)1(ie)-369(i)-369(n)1(o)-28(c)-1(e,)-369(b)-27(o)-369(w)27(ci\\241\\273)-369(b)28(y\\252a)-369(zima,)-369(\\261niegi)-369(i)-369(mrozy)84(,)-369(a)-369(wilki)-368(tu\\273)-369(z)-1(a)-368(nim,)-369(\\273e)-370(m)28(u)-369(j)1(u\\273)]TJ 0 -13.55 Td[(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-333(d)1(obr)1(z)-1(e)-334(b)-27(ok)28(\\363)28(w)-334(p)1(az)-1(u)1(rami)-334(zmac)-1(a\\252!.)1(..)]TJ 27.879 -13.549 Td[(Bie)-1(\\273y)84(,)-372(b)1(ie)-1(\\273y)84(,)-372(b)1(ie\\273)-1(y)84(,)-372(a\\273)-372(i)-371(wysz)-1(ed\\252)-371(na)-372(k)1(ra)-56(j)-371(zim)28(y)83(,)-371(w)-372(j)1(ak)55(\\241\\261)-372(\\252\\241k)28(\\246,)-371(gdzie)-372(c)-1(i)1(e)-1(p)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(b)28(y\\252o,)-292(tra)28(wy)-293(p)-28(o)-293(k)28(ol)1(ana,)-293(\\271r\\363)-28(d)1(e)-1(\\252k)56(a)-293(b)-27(e)-1(\\252k)28(ota\\252y)-293(i)-292(s)-1(kr)1(z)-1(y)1(\\252)-1(y)-292(s)-1(i\\246)-293(w)-293(s)-1(\\252o\\253)1(c)-1(u)1(,)-293(cie)-1(n)1(ie)-293(c)27(h\\252o)-28(d)1(ne)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(i)1(a\\252)-1(y)-352(si\\246)-353(n)1(ad)-352(br)1(z)-1(egami)-353(i)-352(wiat)1(e)-1(rek)-352(mi\\252y)-352(prze)-1(ci\\241)-28(ga\\252,)-352(wp)1(ar\\252)-353(si\\246)-352(w)-1(n)1(e)-1(t)-352(w)-352(tra)28(w)27(\\246)-352(i)]TJ 0 -13.549 Td[(dal)1(e)-1(j)-348(\\273)-1(r)1(e)-1(\\242,)-349(b)-27(o)-28(\\242)-349(z)-1(g\\252o)-28(d)1(ni)1(a\\252)-1(y)-348(b)28(y\\252)-349(d)1(o)-349(cna)-349({)-349(al)1(e)-350(co)-349(c)27(h)29(yc)-1(i)-348(z)-1(\\246bami)-349(tr)1(a)27(wy)84(,)-349(to)-349(i)1(no)-349(ostre)]TJ 0 -13.55 Td[(k)56(am)-1(i)1(e)-1(n)1(ie)-378(p)1(rze)-1(gr)1(yz)-1(a)-376(tra)28(w)27(a)-377(zni)1(kn\\246\\252a!)-377(W)83(o)-27(dy)-377(c)28(hcia\\252)-377(p)-27(opi\\242)-377({)-377(ni)1(e)-378(b)28(y)1(\\252o,)-377(os)-1(ta\\252o)-377(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(b\\252o)-27(c)27(k)28(o)-465(\\261mie)-1(r)1(dz\\241c)-1(e;)-465(p)-27(o\\252o\\273)-1(y)1(\\242)-465(s)-1(i\\246)-465(c)28(hcia\\252)-465(w)-464(c)-1(ieni)1(u)-465({)-464(c)-1(i)1(e)-1(n)1(ie)-465(o)-28(dl)1(at)28(yw)27(a\\252y)84(,)-465(a)-464(s)-1(\\252o\\253)1(c)-1(e)]TJ 0 -13.549 Td[(\\273ar\\252o)-349(\\273ywym)-349(ogni)1(e)-1(m!)-349(Ca\\252y)-348(dzie)-1(\\253)-348(si\\246)-349(tak)-349(t)1(rud)1(z)-1(i)1(\\252)-349(i)-349(n)1(a)-349(d)1(armo!)-349(Chcia\\252)-349(j)1(u\\273)-349(wr\\363)-27(c)-1(i\\242)]TJ 0 -13.549 Td[(do)-391(b)-27(or\\363)28(w)-1(,)-391(b)-27(or\\363)28(w)-392(ni)1(e)-392(b)28(y\\252o!)-391(Zar\\273)-1(a\\252o)-391(k)28(onisk)28(o)-392(b)-27(ole\\261)-1(n)1(ie,)-392(o)-28(d)1(p)-27(o)27(wiedzia\\252y)-391(m)27(u)-391(jak)1(ie)-1(\\261)]TJ 0 -13.549 Td[(k)28(oni)1(e)-455(z)-455(d)1(ala,)-454(p)-28(o)28(wl\\363k\\252)-454(si\\246)-455(za)-455(g\\252ose)-1(m)-454(i)-454(w)-455(k)28(o\\253cu)-454(d)1(o)-56(jr)1(z)-1(a\\252)-454(z)-1(a)-454(\\252\\241k)56(am)-1(i)-454(j)1(aki\\261)-454(dw)28(\\363r)]TJ 0 -13.549 Td[(sie)-1(l)1(n)28(y)83(,)-409(jakb)29(y)-410(ca\\252y)-410(ze)-411(\\261reb\\252a,)-409(s)-1(zyb)28(y)-409(m)-1(ia\\252)-409(z)-411(d)1(rogic)28(h)-410(k)56(amieni,)-409(a)-410(strze)-1(c)27(h)1(\\246)-410(kieb)28(y)-410(z)]TJ 0 -13.55 Td[(ni)1(e)-1(b)1(a)-244(n)1(abitego)-243(gw)-1(i)1(az)-1(d)1(am)-1(i,)-243(lu)1(dzie)-244(tam)-244(j)1(akie\\261)-244(c)27(h)29(udzili)1(.)-244(P)29(o)27(wl\\363k)1(\\252)-244(si\\246)-244(do)-243(ni)1(c)27(h,)-243(b)-27(o)-244(j)1(u\\273)]TJ 0 -13.549 Td[(w)28(ola\\252)-282(na)28(w)28(e)-1(t)-281(praco)28(w)27(a\\242)-282(ci\\246)-1(\\273k)28(o)-282(n)1(i\\271)-1(l)1(i)-282(z)-282(g\\252o)-28(d)1(u)-282(marn)1(ie)-282(gin\\241\\242...)-281(Pr)1(z)-1(es)-1(to)-55(ja\\252)-282(n)1(a)-282(skw)27(ar)1(z)-1(e)]TJ 0 -13.549 Td[(dzie\\253)-351(ca\\252)-1(y)84(,)-351(b)-27(o)-352(n)1(ikto)-351(z)-351(uzd\\241)-351(do)-351(ni)1(e)-1(go)-351(ni)1(e)-352(wysz)-1(ed\\252,)-351(dop)1(iero)-351(o)-351(w)-1(i)1(e)-1(cz)-1(or)1(n)28(ym)-352(czas)-1(ie)]TJ 0 -13.549 Td[(wyc)27(h)1(o)-28(dzi)-294(ktosik)-294(ku)-294(n)1(iem)27(u)1(,)-295(j)1(akb)28(y)-294(sam)-295(gosp)-27(o)-28(darz!)-294(Jez)-1(u)1(s)-295(ci)-295(t)1(o)-295(b)29(y\\252,)-294(on)-294(Gosp)-28(o)-27(darz)]TJ 0 -13.549 Td[(Pr)1(z)-1(ena)-55(j\\261wi\\246)-1(tszy)83(,)-333(on)-333(P)28(an)-333(n)1(iebies)-1(k)1(i,)-333(i)-333(rz)-1(ecz)-1(e:)]TJ 27.879 -13.55 Td[({)-437(Nic)-437(tu)-436(p)-28(o)-437(t)1(obie,)-437(w)28(a\\252k)28(o)-1(n)1(iu)-436(i)-437(zabij)1(aku,)-436(jak)-437(b)1(\\252ogos)-1(\\252a)28(wi\\242)-437(b)-28(\\246d\\241)-437(ci,)-437(co)-437(si\\246)]TJ -27.879 -13.549 Td[(teraz)-334(p)1(rze)-1(kl)1(ina)-55(j\\241,)-333(k)56(a\\273)-1(\\246)-334(ci\\246)-334(wp)1(u\\261c)-1(i\\242)-333(do)-333(s)-1(ta)-55(jn)1(i.)]TJ\nET\nendstream\nendobj\n961 0 obj <<\n/Type /Page\n/Contents 962 0 R\n/Resources 960 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n960 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n965 0 obj <<\n/Length 9142      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(299)]TJ -330.353 -35.866 Td[({)-333(B)-1(i)1(\\252)-334(me)-1(,)-333(tom)-333(s)-1(i\\246)-333(bron)1(i\\252!)]TJ 0 -13.549 Td[({)-333(Za)-334(b)1(ic)-1(i)1(e)-334(pr)1(z)-1(ede)-334(mn\\241)-333(spra)28(w)28(a,)-333(ale)-334(i)-333(spra)28(wiedli)1(w)27(o\\261\\242)-334(ja)-333(w)-334(r)1(\\246)-1(ce)-334(trzymam.)]TJ 0 -13.549 Td[({)-333(T)83(akim)-333(g\\252)-1(o)-27(dn)28(y)84(,)-333(takim)-333(s)-1(p)1(ragni)1(on)28(y)83(,)-333(tak)1(im)-334(ob)-27(ola\\252y!)-333({)-333(j\\246c)-1(za\\252o)-334(k)28(on)1(is)-1(k)28(o.)]TJ 0 -13.549 Td[({)-262(Rze)-1(k)1(\\252e)-1(m)-262(sw)27(o)-55(je,)-262(r)1(usz)-1(a)-55(j)-261(precz)-1(,)-261(wilk)28(om)-262(ci\\246)-262(k)56(a\\273)-1(\\246)-262(j)1(e)-1(sz)-1(cze)-262(s)-1(zc)-1(zu\\242)-262(i)-261(p)-27(ogania\\242...)]TJ 0 -13.549 Td[(T)83(o)-252(i)-253(za)28(w)-1(r)1(\\363)-28(ci\\252o)-253(k)28(on)1(is)-1(k)28(o)-252(do)-252(z)-1(i)1(m)-1(o)28(w)28(e)-1(go)-252(kra)-55(ju,)-252(i)-252(wlek\\252o)-253(si\\246)-253(o)-253(c)28(h\\252o)-28(d)1(z)-1(i)1(e)-253(i)-253(g\\252o)-28(d)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.55 Td[(a)-364(w)-365(wielkim)-364(s)-1(tr)1(ac)27(h)28(u)1(,)-364(b)-28(o)-364(wilk)1(i,)-364(jak)28(o)-364(te)-365(p)1(s)-1(y)-364(Jez)-1(u)1(s)-1(o)28(w)28(e)-1(,)-364(p)-27(ogani)1(a\\252)-1(y)-364(p)1(iln)1(ie)-365(strasz)-1(\\241c)]TJ 0 -13.549 Td[(go)-273(wycie)-1(m,)-273(a\\273)-273(i)-273(p)-27(ew)-1(n)1(e)-1(j)-272(no)-27(c)-1(y)-273(zwies)-1(n)1(o)27(w)28(e)-1(j)-272(stan\\241\\252)-273(pr)1(z)-1(ed)-273(wr)1(\\363tniami)-273(sw)27(o)-55(jego)-273(gos)-1(p)-27(o-)]TJ 0 -13.549 Td[(dar)1(z)-1(a)-306(i)-307(zar\\273a\\252)-1(,)-306(b)28(y)-306(go)-307(p)1(rz)-1(y)1(j\\246li)-307(z)-307(p)-27(o)28(w)-1(r)1(ote)-1(m,)-306(ale)-307(na)-306(to)-307(wylec)-1(ia\\252a)-306(w)-1(d)1(o)28(w)27(a)-306(z)-308(d)1(z)-1(i)1(e)-1(\\242m)-1(i)1(,)]TJ 0 -13.549 Td[(a)-340(p)-27(ozna)28(ws)-1(zy)-340(go,)-339(c)28(ho)-28(\\242)-340(tak)-339(b)28(y\\252)-339(z)-1(b)1(iedzon)28(y)83(,)-339(n)28(u)1(\\273)-340(go)-340(p)1(ra\\242,)-340(cz)-1(y)1(m)-340(p)-28(op)1(ad\\252o,)-339(o)-28(d)1(gania\\242)]TJ 0 -13.549 Td[(a)-360(wyklin)1(a\\242)-361(za)-360(krzywdy)84(,)-360(b)-28(o)-360(b)-27(e)-1(z)-360(te)-361(\\261m)-1(i)1(e)-1(r)1(\\242)-361(c)27(h)1(\\252opa)-360(p)-27(obid)1(nia\\252a)-360(i)-360(w)-360(w)-1(i)1(e)-1(lk)1(ie)-1(j)-359(n\\246dzy)]TJ 0 -13.549 Td[(\\273y\\252a)-334(wraz)-333(z)-334(dzie\\242)-1(mi.)]TJ 27.879 -13.55 Td[(Na)28(wr\\363)-28(ci\\252)-355(do)-355(b)-27(or\\363)28(w,)-355(b)-27(o)-355(ju)1(\\273)-356(n)1(ie)-356(wiedzia\\252,)-355(co)-355(p)-27(o)-28(c)-1(z\\241\\242)-1(,)-354(opad)1(\\252)-1(y)-354(go)-355(z)-1(wierzaki,)]TJ -27.879 -13.549 Td[(ni)1(e)-366(b)1(roni\\252)-365(si\\246)-366(n)1(a)28(w)27(et,)-365(zar\\363)28(w)-1(n)1(o)-365(m)27(u)-365(j)1(u\\273)-365(b)28(y\\252a)-365(i)-365(\\261m)-1(i)1(e)-1(r\\242,)-365(ale)-365(one)-365(go)-366(i)1(no)-365(obmaca\\252y)-365(i)]TJ 0 -13.549 Td[(starsz)-1(y)-333(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-287(Nie)-287(z)-1(j)1(e)-1(m)28(y)-287(c)-1(i\\246,)-287(b)-27(o\\261)-288(za)-287(c)27(h)28(u)1(dy)84(,)-287(s)-1(k)28(\\363r)1(a)-287(i)-287(gnat)28(y)83(,)-286(s)-1(zk)28(o)-28(da)-287(p)1(az)-1(u)1(r\\363)28(w,)-287(ale)-288(u)1(litu)1(jem)]TJ -27.879 -13.549 Td[(si\\246)-334(nad)-332(tob\\241)-333(i)-333(p)-28(omo\\273)-1(em)27(y)84(...)]TJ 27.879 -13.55 Td[(Wzi\\246\\252)-1(y)-346(go)-347(mi\\246)-1(d)1(z)-1(y)-346(s)-1(iebi)1(e)-348(i)-346(p)-28(o)28(wied\\252y)-347(r)1(ankiem)-347(na)-347(gosp)-27(o)-28(dar)1(z)-1(o)28(w)27(e)-347(p)-27(ole,)-347(i)-347(za-)]TJ -27.879 -13.549 Td[(\\252o\\273)-1(y)1(\\252y)-334(d)1(o)-334(p)1(\\252uga,)-333(kt\\363r)1(e)-1(n)-333(sta\\252)-333(w)-334(rol)1(i,)-333(wdo)28(w)27(a)-333(ni)1(m)-334(ora\\252a)-333(wraz)-334(z)-334(k)1(ro)28(w)27(\\241)-333(i)-333(dzie)-1(\\242mi.)]TJ 27.879 -13.549 Td[({)-255(P)29(o)-28(orz\\241)-255(tob)1(\\241,)-255(p)-27(o)-28(d)1(pas\\241)-1(,)-254(to)-254(jes)-1(ieni)1(\\241)-255(p)-27(o)27(wr\\363)-27(c)-1(im)-255(ci\\246)-255(wyp)1(rz)-1(\\241\\261\\242!)-255({)-254(p)-28(o)28(wiedzia\\252y)83(.)]TJ 0 -13.549 Td[(O)-378(d)1(niu)-378(n)1(ades)-1(z\\252a)-378(w)-1(d)1(o)28(w)27(a)-378(i)-378(p)-27(oz)-1(n)1(a\\252a)-378(go)-379(zaraz,)-378(to)-378(c)27(h)1(o)-28(\\242)-379(kr)1(z)-1(yk)1(n\\246\\252a)-379(zrazu,)-378(\\273e)]TJ -27.879 -13.549 Td[(to)-446(c)-1(u)1(d,)-446(i)1(\\273)-447(p)-27(o)27(wr\\363)-27(c)-1(i\\252)-446(i)-446(sta\\252)-447(j)1(u\\273)-446(w)-447(p)1(\\252)-1(u)1(gu,)-446(al)1(e)-447(ryc)28(h\\252o)-446(\\273)-1(a\\252o\\261liw)28(o\\261)-1(\\242)-446(pr)1(z)-1(yp)-27(omink)28(\\363)28(w)]TJ 0 -13.55 Td[(tak)-443(j)1(\\241)-443(ob)-55(j\\246\\252a,)-443(\\273)-1(e)-443(z)-1(acz\\246)-1(\\252a)-443(zno)28(wu)-443(wykli)1(na\\242)-443(i)-443(bi)1(\\242)-1(,)-443(co)-443(in)1(o)-443(w)-1(l)1(az)-1(\\252o!)-443(Rob)1(i\\252a)-443(te)-1(\\273)-443(w,)]TJ 0 -13.549 Td[(ni)1(e)-1(go)-404(p)-27(ote)-1(m,)-404(rob)1(i\\252a,)-404(a)-404(o)-28(db)1(ija\\252a)-404(si\\246)-405(za)-404(krzywd\\246!)-404(C)-1(a\\252e)-404(lata)-404(tak)-404(sz)-1(\\252o)-404(w)-405(ci\\246\\273)-1(ki)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(cie)-1(r)1(z)-1(p)1(liw)28(e)-1(j)-267(p)1(racy)83(,)-267(b)-27(o)-268(c)28(ho)-28(\\242)-267(k)28(onisk)28(o)28(w)-1(i)-267(sk)28(\\363ra)-267(s)-1(i\\246)-267(o)-28(dp)1(arza\\252a)-268(o)-28(d)-266(c)27(hom\\241ta,)-267(ani)-267(zar\\273a\\252,)]TJ 0 -13.549 Td[(wiedzia\\252,)-246(i\\273)-247(cierzpi)-246(spra)28(wiedli)1(w)-1(i)1(e)-1(.)-246(Dop)1(iero)-246(w)-247(p)1(ar\\246)-246(rok)28(\\363)28(w,)-246(kiej)-246(wdo)28(w)27(a)-246(si\\246)-246(dorob)1(i\\252a)]TJ 0 -13.549 Td[(no)28(w)28(e)-1(go)-346(c)27(h)1(\\252)-1(op)1(a)-347(i)-346(t)28(yc)28(h)-347(morg\\363)28(w,)-346(c)-1(o)-346(p)-28(o)-346(s)-1(\\241siedzku)-346(s)-1(z\\252y)-346(w)-1(p)-27(o)-28(d)1(le)-1(,)-346(zm)-1(i)1(\\246)-1(k\\252a)-346(la)-347(k)28(on)1(ia)-346(i)]TJ 0 -13.55 Td[(p)-27(o)27(wiedzia\\252a:)]TJ 27.879 -13.549 Td[({)-276(Ukr)1(z)-1(ywd)1(z)-1(i\\252e\\261)-277(n)1(as)-1(,)-276(al)1(e)-277(za)-276(t)28(w)27(o)-55(j\\241)-276(spra)28(w)28(\\241)-276(P)28(an)-276(Jezus)-276(p)-28(ob)1(\\252o)-1(gos\\252a)28(w)-1(i)1(\\252,)-276(ro)-28(d)1(z)-1(i)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-1(,)-333(c)28(h\\252op)-333(s)-1(i)1(\\246)-334(ni)1(e)-1(zgorsz)-1(y)-333(tra\\014)1(\\252,)-333(rolim)-333(pr)1(z)-1(yku)1(pi)1(\\252)-1(a,)-333(to)-333(ci)-333(ju\\273)-333(z)-334(s)-1(erca)-333(o)-28(dp)1(usz)-1(cz)-1(am.)]TJ 27.879 -13.549 Td[(I)-314(z)-1(araz)-314(te)-1(j)-313(s)-1(ame)-1(j)-314(n)1(o)-28(cy)83(,)-314(ki)1(e)-1(j)-314(w)-314(c)27(ha\\252u)1(pie)-314(c)27(hr)1(z)-1(cin)28(y)-314(spr)1(a)27(wial)1(i,)-314(przysz)-1(\\252y)-314(P)28(an)1(a-)]TJ -27.879 -13.549 Td[(jezuso)27(w)28(e)-304(wilk)1(i,)-303(wypr)1(o)27(w)28(adzi\\252y)-303(k)28(oni)1(a)-304(ze)-304(sta)-56(j)1(ni)-303(i)-303(p)-27(o)28(w)-1(i)1(e)-1(d)1(\\252y)-304(d)1(o)-303(niebi)1(e)-1(skiej)-303(z)-1(agr)1(o)-28(dy)1(!)]TJ 27.879 -13.55 Td[(Dziw)27(o)28(w)28(ali)-260(s)-1(i\\246)-261(tem)27(u)-260(zrz\\241dze)-1(n)1(iu)-260(b)-28(oskiem)27(u)-260(n)1(iep)-28(omierni)1(e)-1(,)-260(z)-1(astana)28(wia)-55(j\\241c)-261(sz)-1(e-)]TJ -27.879 -13.549 Td[(rok)28(o,)-276(j)1(ak)-276(to)-277(P)29(an)-276(Je)-1(zus)-276(z)-1(a)28(ws)-1(ze)-277(k)56(arze)-277(z)-1(\\252o,)-276(a)-276(dob)1(re)-277(wyn)1(agrad)1(z)-1(a)-276(i)-276(o)-277(n)1(icz)-1(ym,)-276(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(na)-333(ten)-333(pr)1(z)-1(yk)1(\\252)-1(ad)-332(o)-334(k)28(on)1(iu)-333(taki)1(m)-1(,)-333(n)1(ie)-334(pr)1(z)-1(ep)-28(omn)1(i.)]TJ 27.879 -13.549 Td[({)-374(Ch)1(o)-28(\\242)-1(b)29(y)-374(i)-373(te)-1(n)-373(rob)1(ac)-1(zek)-374(wierc\\241c)-1(y)-373(w)-374(\\261)-1(cian)1(ie)-1(,)-373(a)-374(n)1(ie)-374(uk)1(ryj)1(e)-375(si\\246)-374(p)1(rz)-1(ed)-373(Je)-1(go)]TJ -27.879 -13.549 Td[(okiem...)]TJ 27.879 -13.549 Td[({)-445(Ni)-446(n)1(a)28(w)27(et)-446(n)1(a)-56(j)1(ta)-56(j)1(niejsz)-1(e)-446(p)-27(om)28(y\\261)-1(l)1(e)-1(ni)1(e)-1(,)-445(ni)-445(c)28(h\\246\\242)-446(jak)56(a)-446(p)1(as)-1(k)1(udn)1(a)-446({)-445(dor)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.55 Td[(Ro)-28(c)27(h)1(o.)]TJ 27.879 -13.549 Td[(Wzdr)1(ygn\\246\\252a)-373(si\\246)-372(na)-372(to)-372(Jagna,)-371(b)-28(o)-372(i)-372(An)28(tek)-372(ws)-1(zed\\252)-372(akur)1(atnie,)-372(ale)-372(m)-1(a\\252o)-372(kto)]TJ -27.879 -13.549 Td[(go)-380(zau)28(w)27(a\\273y\\252,)-380(c)28(ho)-28(\\242)-380(c)-1(i)1(c)27(ho\\261\\242)-380(b)28(y\\252a,)-380(b)-27(o)-380(p)-28(o)-27(d)-380(ten)-380(cz)-1(as)-380(op)-27(o)27(wiad)1(a\\252a)-380(W)83(al)1(e)-1(n)28(to)28(w)28(a)-380(takie)]TJ 0 -13.549 Td[(cudn)1(o\\261)-1(ci)-369(o)-370(kr\\363l)1(e)-1(wni)1(e)-370(z)-1(akl)1(\\246)-1(tej,)-369(\\273)-1(e)-370(wrze)-1(cion)1(a)-370(pr)1(z)-1(es)-1(t)1(a\\252)-1(y)-369(w)28(arc)-1(ze\\242)-1(,)-369(w)-1(szys)-1(tk)1(im)-370(r\\246c)-1(e)]TJ 0 -13.549 Td[(opad)1(\\252y)83(,)-477(p)-28(o)28(ws)-1(tr)1(z)-1(ym)28(yw)28(ali)-478(o)-28(d)1(dec)27(h)28(y)-477(i)-478(jak)-477(uro)-27(c)-1(ze)-1(n)1(i)-478(s)-1(i)1(e)-1(d)1(z)-1(ieli)-478(ws\\252uc)27(h)29(uj\\241c)-478(si\\246)-479(ca\\252\\241)]TJ 0 -13.55 Td[(du)1(s)-1(z\\241.)]TJ 27.879 -13.549 Td[(I)-333(tak)-333(s)-1(i\\246)-333(ano)-333(prze)-1(su)28(w)28(a\\252)-334(ten)-333(lu)1(to)28(w)-1(y)84(,)-333(z)-1(i)1(m)-1(n)29(y)-334(wiec)-1(z\\363r.)]TJ\nET\nendstream\nendobj\n964 0 obj <<\n/Type /Page\n/Contents 965 0 R\n/Resources 963 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n963 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n968 0 obj <<\n/Length 10030     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(300)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Du)1(s)-1(ze)-371(s)-1(i)1(\\246)-371(wz)-1(n)1(os)-1(i)1(\\252)-1(y)84(,)-370(p)-27(o)-28(d)-370(ni)1(e)-1(b)-27(o)-371(r)1(os)-1(\\252y)84(,)-370(a)-371(p)1(\\252on\\246\\252y)-370(jak)-370(te)-371(smolne)-371(szc)-1(zap)28(y)83(,)-370(\\273e)]TJ -27.879 -13.549 Td[(jeno)-340(s)-1(zme)-1(r)-340(wz)-1(d)1(yc)27(h)1(\\363)27(w,)-340(m)-1(ar)1(z)-1(e\\253)-340(i)-341(p)-27(o\\273)-1(\\241d)1(a\\253)-341(n)1(ib)28(y)-340(te)-341(kwietne)-341(mot)28(yle)-341(trz\\246s)-1(\\252y)-340(s)-1(i\\246)-341(p)-27(o)]TJ 0 -13.549 Td[(izbie.)]TJ 27.879 -13.549 Td[(Osn)28(u)28(w)28(ali)-312(si\\246)-313(w)-312(\\273)-1(ywy)84(,)-312(rozdrgan)29(y)83(,)-312(mieni\\241cy)-312(farb)1(ami)-312(oprz\\246)-1(d)-311(c)-1(u)1(do)28(wno\\261c)-1(i,)-312(\\273e)]TJ -27.879 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-333(pr)1(z)-1(ys\\252oni\\252y)-333(si\\246)-334(o)-28(cz)-1(y)-333(n)1(a)-334(wsz)-1(y)1(s)-1(tek)-333(\\261)-1(wiat)-333(s)-1(m)28(utn)29(y)-333(i)-334(szary)83(,)-333(i)-333(b)1(ie)-1(d)1(n)28(y!)]TJ 27.879 -13.55 Td[(P)28(o)-334(p)-27(olac)28(h)-334(b)1(\\252)-1(\\241d)1(z)-1(i)1(li)-334(cie)-1(mn)28(y)1(c)27(h,)-333(prze\\261)-1(wietlon)28(yc)28(h)-334(wid)1(z)-1(iad)1(\\252am)-1(i)1(,)-334(co)-334(jak)-334(\\273agwie)]TJ -27.879 -13.549 Td[(bu)1(c)27(h)1(a\\252y)-458(krw)28(a)28(w)27(\\241)-458(p)-27(o\\273)-1(og\\241;)-457(na)-458(on)1(e)-459(r)1(ucz)-1(a)-55(je)-458(s)-1(zli)-458(srebrn)1(e)-1(,)-457(p)-28(e\\252ne)-458(\\261)-1(p)1(iew)27(a\\253)-457(nieroze)-1(-)]TJ 0 -13.549 Td[(znan)28(yc)28(h,)-322(ta)-56(j)1(e)-1(mn)28(yc)28(h)-323(w)28(o\\252a\\253,)-322(plu)1(s)-1(k)28(\\363)28(w;)-323(w)-323(b)-27(ory)-322(z)-1(ak)1(l\\246)-1(t)1(e)-1(,)-322(gdzie)-323(ryce)-1(r)1(z)-1(e,)-323(wielk)28(olu)1(dy)84(,)]TJ 0 -13.549 Td[(zam)-1(ki)-364(one;)-365(wid)1(ma)-365(s)-1(tr)1(as)-1(zliw)28(e)-1(,)-364(sm)-1(oki)-364(pi)1(e)-1(ki)1(e)-1(ln)29(ym)-365(ogniem)-365(z)-1(i)1(on\\241ce)-1(;)-364(p)-28(o)-364(rozs)-1(ta)-55(jac)27(h)]TJ 0 -13.549 Td[(sta)27(w)28(ali)-241(s)-1(t)1(rw)27(o\\273eni,)-241(gdzie)-242(up)1(iory)-241(z)-242(c)27(h)1(ic)27(h)1(otem)-242(przelat)28(yw)27(a\\252y)84(,)-242(gd)1(z)-1(i)1(e)-242(p)-28(ot\\246pi)1(on)28(yc)27(h)-241(g\\252o-)]TJ 0 -13.549 Td[(se)-1(m)-398(j)1(\\246)-1(cz)-1(\\241)-397(wisie)-1(l)1(c)-1(e,)-398(a)-397(strzygi)-397(z)-398(nietop)-27(e)-1(r)1(z)-1(o)28(wymi)-398(skrzyd)1(\\252am)-1(i)-397(pr)1(z)-1(elatu)1(j\\241;)-397(b\\252\\241d)1(z)-1(il)1(i)]TJ 0 -13.55 Td[(p)-27(o)-429(m)-1(ogi\\252k)56(ac)27(h)-428(z)-1(a)-429(cieniami)-429(p)-27(oku)1(tuj\\241cyc)28(h)-429(sam)-1(ob)-27(\\363)-56(j)1(c)-1(\\363)28(w;)-429(w)-429(pu)1(s)-1(t)28(yc)28(h)-429(rozw)27(al)1(on)28(yc)27(h)]TJ 0 -13.549 Td[(zam)-1(k)56(ac)27(h)-347(i)-348(k)28(o\\261)-1(cio\\252ac)27(h)-347(s)-1(\\252u)1(c)27(hal)1(i)-348(g\\252os)-1(\\363)28(w)-348(dziwn)28(yc)28(h,)-348(p)1(atrze)-1(li)-347(s)-1(i\\246)-348(ni)1(e)-1(sk)28(o\\253cz)-1(on)28(y)1(m)-349(k)28(o-)]TJ 0 -13.549 Td[(ro)28(w)28(o)-28(dom)-256(m)-1(ar)-256(p)1(rze)-1(r)1(a\\273)-1(a)-55(j\\241cyc)27(h)1(,)-257(w)-256(b)-27(o)-56(j)1(ac)27(h)-256(b)28(yl)1(i,)-256(p)-28(o)-27(d)-256(w)27(o)-27(dami,)-256(gdzie)-257(\\261pi)1(\\241c)-1(e)-257(j)1(as)-1(k)28(\\363\\252ki)1(,)]TJ 0 -13.549 Td[(p)-27(opl\\241tan)1(e)-278(w)-278(girl)1(andy)84(,)-277(bud)1(z)-1(i)-277(o)-278(k)56(a\\273dej)-278(wio\\261nie)-278(M)1(atk)56(a)-278(B)-1(o\\273a)-278(i)-277(na)-277(\\261)-1(wiat)-277(w)-1(y)1(puszc)-1(za.)]TJ 27.879 -13.549 Td[(I)-385(n)1(os)-1(i)1(li)-384(s)-1(i\\246)-385(p)1(rze)-1(z)-385(n)1(ieba)-385(i)-384(p)1(ie)-1(k)1(\\252)-1(a,)-384(p)1(rz)-1(ez)-385(ws)-1(zystkie)-385(strasz)-1(n)1(o\\261)-1(ci,)-384(pr)1(z)-1(ez)-385(c)-1(i)1(e)-1(m-)]TJ -27.879 -13.55 Td[(ni)1(c)-1(e)-395(Bo\\273)-1(ego)-395(gn)1(ie)-1(wu)-394(i)-394(przez)-396(j)1(as)-1(n)1(o\\261)-1(ci)-394(\\252)-1(aski)-394(Je)-1(go)-394(\\261)-1(wi\\246tej,)-394(przez)-396(n)1(ieop)-28(o)28(wiedziane)]TJ 0 -13.549 Td[(kr)1(ain)28(y)-332(c)-1(u)1(d\\363)28(w)-333(i)-332(c)-1(zar\\363)28(w,)-333(d)1(z)-1(i)1(w)27(\\363)28(w)-333(i)-332(z)-1(ac)28(h)28(wyt\\363)28(w,)-333(p)1(rze)-1(z)-333(taki)1(e)-333(\\261)-1(wiat)28(y)84(,)-333(gd)1(z)-1(ie)-333(j)1(e)-1(n)1(o)-333(d)1(u-)]TJ 0 -13.549 Td[(sz)-1(e)-394(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(w)27(e)-394(b)1(\\252)-1(\\241d)1(z)-1(\\241)-393(jak)28(o)-394(te)-394(pt)1(aki)-394(p)-27(o\\261)-1(l)1(e)-1(p)1(\\252)-1(e)-394(o)-28(d)-393(pi)1(orun)1(\\363)28(w)-394(i)-394(b\\252ysk)56(a)28(w)-1(i)1(c)-1(,)-394(p)1(rze)-1(z)]TJ 0 -13.549 Td[(taki)1(e)-278(miejsc)-1(a,)-276(do)-277(kt)1(\\363ryc)27(h)-276(cz)-1(\\252o)28(wie)-1(k)-276(t)28(ylk)28(o)-277(w)-277(go)-28(d)1(z)-1(in)1(ie)-277(c)-1(u)1(du)-276(alb)-27(o)-277(i)-277(w)28(e)-277(\\261)-1(n)1(ie)-278(zagl\\241d)1(a,)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)-333(ol)1(\\261)-1(n)1(ion)28(y)84(,)-334(d)1(z)-1(i)1(w)-1(u)1(je)-334(si\\246)-334(i)-333(n)1(ie)-334(wie)-334(sam)-334(o)-333(sobie,)-333(c)-1(zy)-333(jes)-1(t-li)-333(w)-334(\\273ywyc)28(h)-333(jes)-1(zc)-1(ze)-1(!)]TJ 27.879 -13.55 Td[(Hej!)-222(jak)1(b)28(y)-222(morz)-1(e)-222(p)-28(o)28(ws)-1(t)1(a\\252)-1(o)-222(w)28(a\\252e)-1(m)-222(niepr)1(z)-1(enik)1(nion)29(ym)-1(,)-222(w)28(a\\252e)-1(m)-222(c)-1(zar\\363)28(w,)-222(s)-1(k)1(rz)-1(e\\253)]TJ -27.879 -13.549 Td[(i)-350(cud)1(o)28(w)-1(n)1(o\\261)-1(ci,)-350(\\273e)-350(prze)-1(p)1(ad\\252a)-350(spr)1(z)-1(ed)-350(o)-28(cz\\363)27(w)-350(zie)-1(mia)-350(ca\\252a,)-350(izba,)-349(luta)-349(no)-28(c,)-350(\\261w)-1(i)1(at)-350(te)-1(n)]TJ 0 -13.549 Td[(ca\\252)-1(y)-384(p)-27(e\\252e)-1(n)-384(u)1(trap)1(ie)-1(\\253)-383(i)-384(n\\246dz)-384(w)-1(sz)-1(elki)1(c)27(h,)-384(i)-384(k)1(rzyw)-1(d)1(,)-384(i)-384(p\\252ak)56(a\\253)1(,)-384(i)-384(\\273)-1(ale\\253,)-384(i)-384(cz)-1(ek)56(a\\253)-384({)-384(a)]TJ 0 -13.549 Td[(ot)28(w)27(ar)1(\\252y)-445(s)-1(i\\246)-445(o)-28(cz)-1(y)-445(n)1(a)-446(\\261wiat)-445(in)1(n)28(y)83(,)-445(n)1(o)28(w)-1(y)-445(i)-444(tak)-445(c)-1(u)1(do)28(wn)28(y)83(,)-445(\\273e)-446(\\273adn)1(e)-446(u)1(s)-1(ta)-445(tego)-445(nie)]TJ 0 -13.549 Td[(wyp)-27(o)27(wiedz\\241!)]TJ 27.879 -13.55 Td[(Ba\\261)-1(n)1(io)28(w)-1(y)-304(\\261w)-1(i)1(at)-305(ic)28(h)-304(oto)-28(cz)-1(y\\252,)-304(ba\\261ni)1(o)27(w)28(e)-305(\\273yc)-1(i)1(e)-305(ob)-56(j)1(\\246)-1(\\252o)-304(t\\246)-1(czam)-1(i,)-304(b)1(a\\261)-1(n)1(io)28(w)27(e)-305(ma-)]TJ -27.879 -13.549 Td[(rze)-1(n)1(ia)-440(s)-1(t)1(a)27(w)28(a\\252y)-440(s)-1(i)1(\\246)-441(rze)-1(czywis)-1(to\\261ci\\241{)-440(umie)-1(r)1(ali)-440(p)1(ra)28(w)-1(i)1(e)-441(z)-441(zac)27(h)29(w)-1(y)1(t\\363)27(w)-440(zm)-1(ar)1(t)27(wyc)28(h-)]TJ 0 -13.549 Td[(ws)-1(ta)-55(j\\241c)-266(z)-1(ar)1(az)-1(em)-267(tam,)-266(w)-266(t)28(ym)-266(\\273)-1(yciu)-265(jasn)28(ym,)-266(wie)-1(l)1(kim,)-266(m)-1(o)-27(c)-1(ar)1(n)28(ym,)-266(bu)1(jn)28(y)1(m)-267(a)-266(\\261w)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(t)28(ym,)-356(i)-356(cud)1(o)27(wn)1(o\\261)-1(ciam)-1(i)-355(p)-28(op)1(rze)-1(rastan)28(y)1(m)-357(ki)1(e)-1(b)28(y)-355(do)-56(j)1(rza\\252e)-357(zb)-28(o\\273e)-357(wycz)-1(k)56(\\241)-356(i)-356(mak)56(am)-1(i)1(,)]TJ 0 -13.549 Td[(tam)-431(gdzie)-431(k)56(a\\273)-1(d)1(e)-431(drzew)27(o)-431(m\\363)28(wi,)-431(k)56(a\\273dy)-430(rucz)-1(a)-55(j)-430(\\261)-1(p)1(ie)-1(w)28(a,)-431(k)56(a\\273dy)-430(ptak)-430(jes)-1(t)-430(z)-1(akl)1(\\246)-1(t)28(y)84(,)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(y)-311(k)56(amie)-1(\\253)-310(ma)-311(du)1(s)-1(z\\246)-1(,)-310(k)56(a\\273)-1(d)1(y)-311(b)-27(\\363r)-311(j)1(e)-1(st)-311(p)-27(e)-1(\\252en)-311(cz)-1(ar)1(\\363)28(w)-1(,)-310(k)56(a\\273)-1(d)1(a)-311(grud)1(k)56(a)-311(z)-1(i)1(e)-1(mi)-311(p)1(rze)-1(-)]TJ 0 -13.549 Td[(p)-27(o)-56(j)1(ona)-312(n)1(iez)-1(n)1(an)28(ymi)-312(p)-27(ot\\246)-1(gami)-311({)-312(gdzie)-312(ws)-1(zystk)28(o)-312(wielkie,)-312(n)1(adlu)1(dzkie,)-312(n)1(iew)-1(i)1(dziane)]TJ 0 -13.549 Td[(\\273y\\252o)-334(\\261wi\\246)-1(t)28(y)1(m)-334(\\273)-1(y)1(c)-1(iem)-334(cud)1(\\363)27(w!)]TJ 27.879 -13.549 Td[(T)83(am)-247(si\\246)-247(par)1(li)-247(ca\\252\\241)-247(p)-27(ot\\246g\\241)-247(t\\246s)-1(kn)1(ot)28(y)83(,)-246(tam)-247(sn)28(uli)-246(si\\246)-247(o)-28(c)-1(zaro)28(w)28(ani,)-246(gdzie)-247(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(k)28(o)-383(splata\\252o)-382(s)-1(i\\246)-383(w)-383(ni)1(e)-1(r)1(o)-1(zerw)27(al)1(n)28(y)-383(\\252a\\253)-382(c)-1(u)1(c)27(h)-382(m)-1(ar)1(z)-1(e\\253)-383(i)-382(\\273)-1(y)1(c)-1(ia,)-382(c)-1(u)1(d\\363)28(w)-383(i)-383(p)1(ragni)1(e)-1(\\253)1(,)-383(w)]TJ 0 -13.549 Td[(cz)-1(aro)-27(dzie)-1(j)1(s)-1(k)1(i)-309(k)28(oro)28(w)28(\\363)-28(d)-309(wy\\261ni)1(onego)-309(istnieni)1(a,)-309(do)-308(kt\\363rego)-309(w)27(ci\\241\\273,)-309(p)1(rz)-1(ez)-309(c)-1(a\\252\\241)-309(n)1(\\246)-1(d)1(z)-1(\\246)]TJ 0 -13.55 Td[(b)28(yt)1(o)27(w)28(ani)1(a)-334(ziem)-1(skiego)-334(r)1(w)27(a\\252y)-333(si\\246)-334(im)-333(s)-1(tr)1(udzone,)-333(ok)56(ale)-1(cz)-1(a\\252e)-333(dusze)-1(!)]TJ 27.879 -13.549 Td[(C\\363\\273)-477(ta)-476(t)1(o)-476(\\273)-1(ycie)-476(s)-1(zare)-476(i)-476(n\\246dzne,)-476(c\\363\\273)-477(ta)-476(ten)-476(d)1(z)-1(i)1(e)-1(\\253)-475(z)-1(wyk\\252y)84(,)-476(p)-27(o)-28(dob)1(ien)-476(do)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(eni)1(a)-231(c)28(horego,)-230(s)-1(m)28(utk)56(ami)-231(k)1(ie)-1(b)29(y)-231(mg\\252\\241)-231(p)1(rzys)-1(\\252on)1(ion)28(y)84(,)-230(m)-1(r)1(ok)-231(to)-230(jeno,)-230(n)1(o)-28(c)-231(s)-1(m)28(utn)1(a)]TJ 0 -13.549 Td[(i)-316(ci\\246)-1(\\273k)56(a,)-316(pr)1(z)-1(ez)-317(k)1(t\\363r\\241)-316(c)27(h)28(y)1(ba)-316(dop)1(iero)-316(w)-316(go)-28(dzin\\246)-316(\\261m)-1(ierci)-316(do)-55(jr)1(z)-1(e\\242)-317(w\\252as)-1(n)29(ymi)-316(o)-28(c)-1(zami)]TJ 0 -13.549 Td[(dziwy)-333(one.)]TJ 27.879 -13.55 Td[(Jak)28(o)-361(to)-361(b)28(y)1(dl\\246,)-361(j)1(arz)-1(mem)-362(p)1(rzygi\\246te)-362(d)1(o)-361(z)-1(iemi,)-361(\\273yjes)-1(z,)-361(cz)-1(\\252o)28(wie)-1(k)1(u,)-361(zabi)1(e)-1(gasz)-1(,)]TJ -27.879 -13.549 Td[(tu)1(rbu)1(jes)-1(z)-306(si\\246,)-306(b)29(y)-306(d)1(z)-1(i)1(e)-1(\\253)-305(ten)-305(pr)1(z)-1(e\\273)-1(y\\242,)-305(a)-306(n)1(ie)-306(p)-27(om)27(y\\261lisz)-306(na)28(w)28(e)-1(t,)-305(co)-306(si\\246)-306(ok)28(\\363ln)1(ie)-306(dzieje,)]TJ\nET\nendstream\nendobj\n967 0 obj <<\n/Type /Page\n/Contents 968 0 R\n/Resources 966 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 953 0 R\n>> endobj\n966 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n971 0 obj <<\n/Length 9226      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(301)]TJ -358.232 -35.866 Td[(jak)1(ie)-302(to)-301(k)56(adzielne)-301(z)-1(ap)1(ac)27(h)28(y)-301(wion)1(\\241)-301(\\261)-1(wiatem)-1(,)-301(o)-27(d)-301(jak)1(ic)27(h)-301(\\261wi\\246t)27(y)1(c)27(h)-301(o\\252tar)1(z)-1(y)-301(id)1(\\241)-301(g\\252o)-1(sy)84(,)]TJ 0 -13.549 Td[(jak)1(ie)-334(u)1(ta)-56(jon)1(e)-334(cud)1(a)-334(s\\241)-334(wsz)-1(\\246dy)1(!...)]TJ 27.879 -13.549 Td[(Jak)28(o)-333(te)-1(n)-332(\\261)-1(lep)28(y)-333(k)56(am)-1(i)1(e)-1(\\253)-333(p)-27(o)-28(d)-333(w)28(o)-28(d\\241)-333(g\\252\\246b)-28(ok)56(\\241)-333(\\273)-1(yj)1(e)-1(sz)-1(,)-333(cz)-1(\\252o)28(wieku.)1(..)]TJ 0 -13.549 Td[(W)-280(c)-1(i)1(e)-1(mnicy)84(,)-281(cz)-1(\\252o)28(wieku,)-280(orze)-1(sz)-281(\\273yw)27(ota)-280(rol)1(\\246)-281(i)-281(p)1(\\252ac)-1(z)-281(zas)-1(i)1(e)-1(w)28(as)-1(z,)-280(te)-1(n)-280(tr)1(ud)1(,)-281(ten)]TJ -27.879 -13.549 Td[(b)-27(\\363l...)]TJ 27.879 -13.55 Td[(I)-479(w)-479(b)1(\\252o)-28(c)-1(i)1(e)-480(tar)1(z)-1(asz)-479(gw)-1(i)1(e)-1(zdn)1(\\241)-479(du)1(s)-1(z\\246)-1(,)-478(c)-1(z\\252o)27(wieku)1(,)-479(w)-479(b\\252o)-27(c)-1(ie..)-478(.)-479(Op)-27(o)28(w)-1(i)1(adali)]TJ -27.879 -13.549 Td[(dal)1(e)-1(j)1(,)-405(w)28(c)-1(i\\241\\273,)-405(a)-405(Ro)-28(c)28(ho)-405(d)1(op)-28(omaga\\252)-405(c)27(h)1(\\246)-1(tl)1(iwie)-1(,)-404(s)-1(am)-405(si\\246)-406(d)1(z)-1(i)1(w)27(o)28(w)27(a\\252,)-404(s)-1(am)-405(wz)-1(d)1(yc)27(h)1(a\\252,)]TJ 0 -13.549 Td[(sam)-334(p\\252ak)56(a\\252,)-333(kiej)-333(i)-333(dru)1(dzy)-333(p\\252ak)56(ali.)1(..)]TJ 27.879 -13.549 Td[(A)-296(c)-1(zas)-1(em)-296(nast\\246)-1(p)-27(o)28(w)27(a\\252y)-296(d)1(\\252)-1(u)1(gie,)-296(g\\252\\246)-1(b)-27(okie)-296(m)-1(il)1(c)-1(ze)-1(n)1(ia,)-296(\\273e)-297(s)-1(\\252y)1(c)27(ha\\242)-296(b)28(y\\252o)-296(k)28(o\\252ata-)]TJ -27.879 -13.549 Td[(ni)1(e)-252(se)-1(r)1(c)-252(wz)-1(r)1(usz)-1(on)29(yc)27(h)1(,)-251(wilgotn)1(e)-252(b)1(las)-1(ki)-250(o)-28(c)-1(z\\363)28(w)-251(\\261)-1(wiec)-1(i\\252y)-250(kiej)-251(rosa,)-251(dr)1(\\273)-1(a\\252y)-251(w)28(es)-1(tc)28(hni)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(a)-269(p)-27(o)-28(d)1(z)-1(iwu)-268(i)-268(t\\246s)-1(kn)1(ot,)-268(du)1(s)-1(ze)-269(si\\246)-269(k\\252ad\\252y)-268(d)1(o)-269(st\\363p)-268(P)28(a\\253)1(s)-1(ki)1(c)27(h)-268(w)-269(t)28(ym)-268(c)-1(u)1(d\\363)28(w)-269(k)28(o\\261c)-1(i)1(e)-1(le)-268(i)]TJ 0 -13.55 Td[(\\261piew)27(a\\252y)-284(p)1(rze)-1(p)-27(ot\\246\\273)-1(n)28(y)-283(h)28(ymn)-284(d)1(z)-1(i\\246k)28(c)-1(zyn)1(ie)-1(n)1(ia.)-284(Cic)28(ho\\261c)-1(i\\241)-284(\\261pi)1(e)-1(w)28(a\\252y)-284(ws)-1(zystkie)-284(s)-1(erca,)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(e)-1(\\252ni)1(one)-257(c)-1(zarem)-1(,)-256(dr)1(\\273)-1(\\241ce)-1(,)-256(up)-27(o)-56(j)1(one)-257(\\261)-1(wi\\246t\\241)-257(k)28(om)27(u)1(ni)1(\\241)-257(m)-1(ar)1(z)-1(enia)-256({)-257(jak)28(o)-257(ta)-256(z)-1(iemia)]TJ 0 -13.549 Td[(dr)1(\\273)-1(y)-400(p\\252a)28(wi\\241c)-402(si\\246)-401(w)-401(s)-1(\\252o\\253)1(c)-1(u)-400(wio\\261)-1(n)1(ian)28(y)1(m)-1(,)-400(jak)28(o)-401(te)-401(w)28(o)-28(dy)-400(p)-28(o)-28(d)-400(wiec)-1(z\\363r)-401(w)-401(p)-27(ogo)-28(dn)29(y)]TJ 0 -13.549 Td[(cz)-1(as)-329(i)-329(cic)27(h)29(y)83(,)-328(\\273)-1(e)-329(jeno)-328(drgn)1(ienia)-328(p)-28(o)-329(n)1(iej)-329(si\\246)-329(s)-1(n)29(uj)1(\\241,)-329(a)-329(t\\246c)-1(ze,)-329(a)-329(k)28(ol)1(o)-1(r)1(y;)-328(jak)28(o)-329(te)-329(zb)-28(o\\273a)]TJ 0 -13.549 Td[(m\\252o)-28(de)-444(o)-444(pierws)-1(zym)-444(wie)-1(cz)-1(or)1(z)-1(e)-444(m)-1(a)-55(jo)28(wym,)-444(co)-445(j)1(e)-1(n)1(o)-444(k)28(olebi\\241)-444(si\\246)-445(s\\252o)-28(dk)28(o,)-443(s)-1(ze)-1(mrz\\241)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(\\241)-28(gle)-334(a)-333(trz\\246)-1(s\\241)-333(pi\\363r)1(k)55(ami)-333(kieb)28(y)-333(t)28(ym)-333(pac)-1(i)1(e)-1(r)1(z)-1(em)-334(dzi\\246k)28(c)-1(zyn)1(n)28(ym.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-240(za\\261)-241(b)28(y\\252a)-240(j)1(akb)28(y)-240(wni)1(e)-1(b)-27(o)28(w)-1(zi\\246ta,)-240(tak)-240(c)-1(zu\\252a)-240(ws)-1(zystk)28(o)-240(g\\252\\246)-1(b)-27(ok)28(o,)-240(tak)-240(br)1(a-)]TJ -27.879 -13.549 Td[(\\252a)-276(w)-276(s)-1(i)1(e)-1(b)1(ie)-277(i)-275(z)-1(a)-276(tak)56(\\241)-276(p)1(ra)28(wd\\246)-276(m)-1(i)1(a\\252)-1(a,)-275(\\273)-1(e)-276(ros\\252o)-276(to)-276(w)-276(niej)-275(i)-276(s)-1(ta)28(w)28(a\\252o)-276(pr)1(z)-1(ed)-276(o)-28(cz)-1(ami)-276(k)1(ie)-1(j)]TJ 0 -13.549 Td[(\\273yw)27(e,)-310(\\273e)-310(m)-1(og\\252a)-310(wsz)-1(y)1(s)-1(tk)28(o)-310(p)-27(o)28(wyc)-1(i)1(na\\242)-310(z)-310(pap)1(ie)-1(r)1(u.)-309(Dali)-310(te\\273)-310(jej)-310(j)1(akie\\261)-310(p)-28(ozapi)1(s)-1(yw)28(ane)]TJ 0 -13.549 Td[(k)56(art)28(y)-291(d)1(z)-1(i)1(e)-1(ci,)-291(k)1(t\\363re)-291(Ro)-28(c)27(h)1(o)-291(n)1(aucz)-1(a\\252)-291(a)-291(on)1(a)-291(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)-291(op)-28(o)28(wiad)1(a\\253)-291(wystrzyga\\252a)-291(p)-27(o)]TJ 0 -13.55 Td[(k)28(olei)-375(c)-1(zy)-375(to)-376(strac)28(h)28(y)83(,)-375(cz)-1(y)-375(k)1(r\\363le,)-375(c)-1(zy)-375(upi)1(ory)84(,)-376(czy)-376(smoki,)-375(cz)-1(y)-375(in)1(ne)-376(r)1(\\363\\273)-1(n)1(o\\261)-1(ci,)-375(a)-375(tak)]TJ 0 -13.549 Td[(ut)1(ra\\014a\\252a,)-333(\\273e)-334(k)56(a\\273)-1(d)1(e)-1(n)-333(m\\363g\\252)-334(p)-27(ozna\\242)-334(o)-27(d)-333(w)27(ejrzenia.)]TJ 27.879 -13.549 Td[(T)28(yla)-468(wys)-1(t)1(rz)-1(y)1(gn\\246\\252a,)-468(\\273)-1(e)-468(m)-1(o\\273na)-468(b)28(y)1(\\252o)-469(n)1(imi)-468(obl)1(e)-1(p)1(i\\242)-469(ca\\252\\241)-468(b)-28(elk)28(\\246,)-468(a)-468(jes)-1(zc)-1(ze)-469(i)]TJ -27.879 -13.549 Td[(p)-27(ofarb)-27(o)28(w)27(a\\252a)-417(lu)1(br)1(yk)56(\\241)-418(cze)-1(rw)28(on\\241)-417(i)-417(n)1(iebies)-1(k)56(\\241,)-417(j)1(ak)55(\\241)-417(j)1(e)-1(j)-416(An)28(te)-1(k)-416(p)-28(o)-28(d)1(s)-1(u)1(n\\241\\252,)-417(tak)-416(b)28(y\\252a)]TJ 0 -13.549 Td[(za)-56(j\\246ta)-357(s\\252uc)28(hani)1(e)-1(m)-357(i)-356(rob)-27(ot\\241,)-357(\\273e)-357(o)-357(c)-1(a\\252y)1(m)-358(\\261wiec)-1(ie)-357(zap)-28(omni)1(a\\252a,)-357(ni)1(e)-357(bac)-1(zy\\252a)-357(n)1(a)28(w)27(et)]TJ 0 -13.55 Td[(na)-308(niego,)-309(n)1(ie)-309(widz\\241c)-1(,)-308(\\273e)-310(si\\246)-309(cz)-1(ego\\261)-310(n)1(iec)-1(ierp)1(liwi,)-308(a)-309(uk)1(radk)1(ie)-1(m)-309(d)1(a)-56(j)1(e)-310(j)1(akie\\261)-309(z)-1(n)1(aki..)1(.)]TJ 0 -13.549 Td[(a)-295(nikt)1(o)-296(d)1(rugi)-295(te\\273)-296(n)1(ie)-296(sp)-28(ostrze)-1(g\\252)-295(te)-1(go)-295(w)-296(zas\\252)-1(u)1(c)27(h)1(aniu)-295(i)-295(w)-295(te)-1(j)-295(cisz)-1(y)84(,)-295(jak)56(a)-295(pano)28(w)28(a\\252a.)]TJ 27.879 -13.549 Td[(Naraz)-225(psy)-225(zac)-1(z\\246)-1(\\252y)-224(dosz)-1(cz)-1(ekiw)28(a\\242)-225(z)-1(a)-55(jadl)1(e)-226(i)-224(s)-1(k)28(o)28(wyc)-1(ze\\242)-226(w)-225(op)1(\\252)-1(ot)1(k)55(ac)28(h,)-225(a\\273)-225(kt\\363r)1(y\\261)]TJ -27.879 -13.549 Td[(K\\252\\246biak)-287(n)1(a)-287(dw)28(\\363r)-287(w)-1(y)1(le)-1(cia\\252)-287(i)-287(p)-27(o)27(wiad)1(a\\252)-287(p)-28(otem,)-287(i\\273)-288(c)27(h)1(\\252op)-287(jak)1(i\\261)-288(u)1(c)-1(iek)56(a\\252)-287(s)-1(p)1(rz)-1(ed)-287(oki)1(e)-1(n)1(.)]TJ 27.879 -13.549 Td[(Nie)-368(zwrac)-1(al)1(i)-368(n)1(a)-368(to)-367(u)28(w)28(agi,)-367(nie)-368(wid)1(z)-1(\\241c)-368(w)28(c)-1(al)1(e)-1(,)-367(\\273)-1(e)-368(p)-27(\\363\\271niej,)-367(gdy)-367(p)1(s)-1(y)-367(z)-1(mil)1(k\\252y)83(,)]TJ -27.879 -13.55 Td[(jak)56(a\\261)-431(t)28(w)27(arz)-431(pr)1(z)-1(es)-1(u)1(n\\246\\252a)-432(si\\246)-431(z)-1(a)-431(sz)-1(yb)1(\\241)-431(i)-431(pr)1(z)-1(epad)1(\\252)-1(a)-431(tak)-430(pr\\246dk)28(o,)-431(\\273e)-432(t)28(yl)1(k)28(o)-431(jedna)-431(z)]TJ 0 -13.549 Td[(dziew)27(cz)-1(y)1(n)-333(krzykn)1(\\246)-1(\\252a)-333(z)-1(al)1(\\246)-1(k\\252a,)-333(o)-28(cz)-1(y)-333(p)1(rze)-1(cie)-1(r)1(a)-56(j)1(\\241c)-334(z)-1(d)1(umion)1(a.)]TJ 27.879 -13.549 Td[({)-333(T)83(am)-334(ktosik)-333(c)27(h)1(o)-28(dzi)-333(p)-27(o)-28(d)-333(okn)1(am)-1(i!)-333({)-333(za)27(w)28(o\\252a\\252a.)]TJ 0 -13.549 Td[({)-333(S\\252yc)28(ha\\242,)-334(j)1(ak)-333(\\261)-1(n)1(ie)-1(g)-333(skrzypi)-333(p)-27(o)-28(d)-333(n)1(ogam)-1(i)1(!)]TJ 0 -13.549 Td[({)-333(Jakb)28(y)-333(n)1(a)-334(\\261c)-1(i)1(a)-1(n)1(\\246)-334(si\\246)-334(skrab)1(a\\252!)]TJ 0 -13.549 Td[(Zmart)28(wie)-1(l)1(i)-252(ws)-1(zysc)-1(y)-251(nas\\252uc)28(h)28(uj)1(\\241c)-1(,)-251(a)-252(b)-27(o)-56(j)1(\\241c)-252(ru)1(s)-1(zy\\242)-252(si\\246)-252(z)-252(m)-1(i)1(e)-1(j)1(s)-1(ca,)-252(op)1(adli)-251(n)1(ag\\252)-1(\\241)]TJ -27.879 -13.55 Td[(trw)28(og\\241.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(o)-334(cz)-1(y)1(m)-334(ba)-55(je,)-333(te)-1(m)28(u)-333(s)-1(i)1(\\246)-334(s)-1(t)1(a)-56(je!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(ze)-334(s)-1(t)1(rac)27(h)1(e)-1(m)-333(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-266(O)-267(z\\252ym)-267(si\\246)-267(p)-27(o)28(wiada\\252o,)-266(to)-266(m)-1(o\\273e)-267(s)-1(i)1(\\246)-267(i)-266(w)-1(y)1(w)27(o\\252a\\252)-266(i)-267(wyp)1(atru)1(je,)-267(k)28(ogo)-266(b)28(y)-266(wz)-1(i)1(\\241\\242)-1(!)]TJ 0 -13.549 Td[({)-333(Je)-1(zus)-333(Maria!)]TJ 0 -13.549 Td[({)-327(Wyj)1(rzyjcie)-327(no,)-326(c)27(h\\252op)1(aki,)-327(t)1(am)-328(n)1(ie)-327(m)-1(a)-327(n)1(ik)28(ogo,)-327(p)1(s)-1(y)-327(p)-27(ew)-1(n)1(ie)-327(baraszkuj)1(\\241)-327(p)-28(o)]TJ -27.879 -13.55 Td[(\\261niegu.)]TJ 27.879 -13.549 Td[({)-267(Hale)-1(,)-267(k)1(ie)-1(d)1(ym)-268(d)1(obr)1(z)-1(e)-268(wid)1(z)-1(i)1(a\\252a)-268(za)-267(oknem)-1(,)-267(\\252eb)-267(kiej)-267(ce)-1(b)-27(e)-1(r)-267(i)-267(\\261lepie)-267(c)-1(ze)-1(r)1(w)27(on)1(e)-1(!)]TJ\nET\nendstream\nendobj\n970 0 obj <<\n/Type /Page\n/Contents 971 0 R\n/Resources 969 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n969 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n975 0 obj <<\n/Length 9201      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(302)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-383(P)1(rzywidzia\\252o)-383(ci)-383(s)-1(i)1(\\246)-1(!)-382({)-383(z)-1(a)28(w)28(o\\252a\\252)-383(Ro)-28(c)27(ho)-382(i)-383(\\273e)-384(n)1(ikt)-383(n)1(ie)-383(c)27(h)1(c)-1(ia\\252)-383(wyj)1(rze)-1(\\242,)-383(sam)]TJ -27.879 -13.549 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(d)1(w)27(\\363r)1(,)-333(b)28(y)-333(usp)-28(ok)28(oi)1(\\242)-334(ws)-1(zys)-1(t)1(kic)27(h)1(.)-333(j)]TJ 27.879 -13.549 Td[({)-300(O)1(p)-28(o)28(wiem)-300(w)27(am)-300(h)1(is)-1(t)1(ori\\246)-300(o)-300(M)1(atc)-1(e)-300(Boskie)-1(j)1(,)-299(to)-300(wnet)-300(sz)-1(cz)-1(ezn\\241)-300(p)1(rze)-1(wid)1(z)-1(enia)]TJ -27.879 -13.549 Td[({)-344(zagada\\252)-344(siad)1(a)-56(j)1(\\241)-1(c)-344(n)1(a)-344(da)28(wn)28(ym)-344(miejsc)-1(u)1(,)-344(u)1(s)-1(p)-27(ok)28(oili)-343(s)-1(i)1(\\246)-345(n)1(iec)-1(o,)-343(ale)-344(raz)-344(p)-27(o)-344(raz)-344(kto\\261)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-334(o)-28(cz)-1(y)-333(n)1(a)-334(ok)1(no)-333(i)-333(s)-1(tr)1(ac)27(hem)-334(u)1(ta)-56(j)1(on)28(ym)-334(d)1(ygota\\252.)]TJ 27.879 -13.55 Td[({)-244(\\377)-56(D)1(a)27(wn)1(o)-244(to)-244(ju)1(\\273)-245(si\\246)-244(dzia\\252o,)-244(da)28(wno,)-243(prze)-1(d)-243(wie)-1(k)56(ami,)-244(\\273e)-245(j)1(e)-1(n)1(o)-244(o)-244(t)28(ym)-244(w)-245(stary)1(c)27(h)]TJ -27.879 -13.549 Td[(ksi\\246gac)27(h)-320(stoi.)1(..)-320(W)84(e)-321(wsi)-320(j)1(e)-1(d)1(nej)-320(p)-27(o)-28(d)-319(Krak)28(o)28(w)28(e)-1(m)-320(\\273y\\252)-320(kmie)-1(\\242,)-320(K)1(az)-1(imierz)-320(m)27(u)-319(b)28(y\\252o)-320(n)1(a)]TJ 0 -13.549 Td[(imi\\246,)-464(a)-464(na)-464(p)1(rze)-1(zw)-1(i)1(s)-1(k)28(o)-464(Jastrz\\241b,)-464(osiad)1(\\252)-1(y)-463(b)28(y\\252)-464(z)-465(d)1(a)28(w)-1(n)1(a,)-464(ro)-27(do)28(wy)-464(i)-464(b)-27(ogac)-1(z,)-464(c)-1(a\\252e)]TJ 0 -13.549 Td[(w\\252\\363ki)-454(obsiew)27(a\\252,)-454(l)1(as)-455(sw)27(\\363)-55(j)-454(mia\\252,)-454(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-455(kiej)-454(d)1(w)27(\\363r)-453(i)-454(m)-1(\\252y)1(nek)-454(nad)-454(stru)1(g\\241..)-454(P)28(an)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-467(m)27(u)-466(b\\252ogos\\252a)27(wi\\252,)-466(wied\\252o)-467(si\\246)-467(ws)-1(zystk)28(o,)-467(b)1(rogi)-466(z)-1(a)28(wdy)-466(mia\\252)-467(p)-27(e)-1(\\252n)1(e)-1(,)-466(goto)28(wy)]TJ 0 -13.549 Td[(grosz)-251(w)-250(s)-1(k)1(rzyni,)-249(dzie)-1(ci)-250(z)-1(d)1(ro)28(w)28(e)-251(i)-250(k)28(obi)1(e)-1(t\\246)-250(p)-28(o)-27(c)-1(zc)-1(iw)28(\\241;)-250(b)-27(o)-250(dobr)1(y)-250(b)28(y\\252)-250(cz)-1(\\252o)28(wie)-1(k)1(,)-250(m)-1(\\241d)1(ry)84(,)]TJ 0 -13.55 Td[(wyrozumia\\252y)84(,)-333(p)-28(ok)28(orn)1(e)-1(go)-333(se)-1(r)1(c)-1(a)-333(i)-333(s)-1(p)1(ra)28(wie)-1(d)1(liwy)-333(dla)-333(ws)-1(zelkiego)-334(st)28(w)27(or)1(z)-1(eni)1(a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ew)27(o)-27(dzi\\252)-268(gromadzie)-269(k)1(ie)-1(j)-267(o)-56(jciec)-1(,)-268(op)1(iek)28(o)27(w)28(a\\252)-268(s)-1(i)1(\\246)-269(bi)1(e)-1(d)1(n)28(ymi,)-268(spra)28(wiedli)1(w)27(o\\261c)-1(i)]TJ -27.879 -13.549 Td[(br)1(oni\\252,)-318(p)-27(o)-28(d)1(atk)55(ami)-318(n)1(ie)-319(u)1(c)-1(isk)56(a\\252,)-318(a)-319(p)-27(o)-28(cz)-1(ciw)28(o\\261)-1(ci)-318(w)27(e)-318(w)-1(sz)-1(y)1(s)-1(tk)1(im)-319(p)1(rz)-1(estrze)-1(ga\\252)-318(pil)1(nie)-318(i)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(b)29(y\\252)-334(za)28(w)-1(d)1(y)-333(do)-333(p)-28(omo)-28(cy)-333(bli)1(\\271)-1(n)1(ie)-1(m)28(u)-333(i)-333(p)-27(oratun)1(ku.)]TJ 27.879 -13.549 Td[(\\233y\\252)-333(te)-1(\\273)-333(s)-1(ob)1(ie)-334(cic)27(h)1(o,)-334(sp)-27(ok)28(o)-56(jn)1(ie)-334(i)-333(sz)-1(cz)-1(\\246\\261liwie)-334(j)1(ak)-333(u)-333(P)28(ana)-333(Boga)-334(za)-334(p)1(iec)-1(em)-1(.)]TJ 0 -13.55 Td[(A\\273)-334(r)1(az)-1(u)-333(p)-27(e)-1(wn)1(e)-1(go)-333(kr\\363l)-333(j)1(\\241\\252)-334(skrzyki)1(w)27(a\\242)-334(n)1(ar\\363)-28(d)-333(n)1(a)-333(w)27(o)-55(jn\\246)-333(prze)-1(ciw)-333(p)-28(ogan)1(om)-1(.)]TJ 0 -13.549 Td[(Zafr)1(as)-1(w)28(a\\252)-339(s)-1(i)1(\\246)-340(wielce)-340(J)1(as)-1(tr)1(z)-1(\\241b)1(,)-339(b)-27(o)-339(\\273)-1(al)-338(m)27(u)-338(b)28(y\\252o)-339(d)1(om)-1(a)-338(o)-28(db)1(ie)-1(\\273y\\242)-339(i)-339(r)1(usz)-1(a\\242)-339(na)]TJ -27.879 -13.549 Td[(one)-333(b)-28(o)-55(je)-334(srogi)1(e)-1(.)]TJ 27.879 -13.549 Td[(Ale)-334(k)1(r\\363lews)-1(ki)-333(p)1(arob)-27(e)-1(k)-333(u)-333(d)1(rz)-1(wi)-333(sto)-56(j)1(a\\252)-334(i)-333(p)1(rz)-1(y)1(nagla\\252!)]TJ 0 -13.549 Td[(Na)-256(wielk)56(\\241)-256(w)28(o)-56(j)1(n\\246)-256(s)-1(i)1(\\246)-257(mia\\252o,)-255(T)83(ur)1(e)-1(k)-255(ano)-256(spr)1(o\\261)-1(n)29(y)-256(w)-256(kr)1(a)-56(j)1(e)-257(p)-27(olskie)-256(ws)-1(zed\\252,)-256(wsie)]TJ -27.879 -13.55 Td[(pal)1(i\\252,)-332(k)28(o\\261)-1(cio\\252y)-332(rab)-27(o)28(w)27(a\\252,)-332(k)1(s)-1(i\\246\\273y)-332(z)-1(ar)1(z)-1(yn)1(a\\252,)-332(nar\\363)-27(d)-332(t\\246pi\\252)-332(leb)-27(o)-333(w)-332(p)-27(os)-1(tr)1(onk)56(ac)27(h)-331(p)-28(\\246dzi\\252)]TJ 0 -13.549 Td[(do)-333(sw)27(oic)28(h)-333(p)-27(oga\\253skic)27(h)-333(k)1(ra)-56(j)1(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(T)83(rza)-333(s)-1(i\\246)-333(b)28(y\\252o)-333(goto)28(w)27(a\\242)-334(i)-333(n)1(a)-334(ob)1(ron\\246)-333(s)-1(ta)28(w)28(a\\242)-1(!)]TJ 0 -13.549 Td[(Zba)28(wienie)-360(w)-1(i)1(e)-1(cz)-1(n)1(e)-361(cz)-1(ek)56(a)-361(t)1(e)-1(go,)-360(kt\\363r)1(e)-1(n)-359(o)-28(c)27(h)1(otnie)-360(k\\252adzie)-361(g\\252o)28(w)28(\\246)-361(z)-1(a)-360(sw)27(oi)1(c)27(h)-360(i)]TJ -27.879 -13.549 Td[(wiar\\246)-333(\\261)-1(wi\\246t\\241.)]TJ 27.879 -13.55 Td[(Zw)27(o\\252a\\252)-267(tedy)-267(Jastrz\\241b)-267(gromad)1(\\246)-1(,)-267(wyb)1(ra\\252)-267(c)-1(o)-267(t\\246\\273)-1(sz)-1(yc)28(h)-267(p)1(arobk)28(\\363)28(w,)-267(k)28(oni)1(e)-1(,)-267(w)28(oz)-1(y)]TJ -27.879 -13.549 Td[(i)-333(wnet)-334(r)1(usz)-1(y)1(li)-333(rank)1(ie)-1(m)-333(jak)28(o\\261)-334(p)-27(o)-333(m)-1(sz)-1(y)-333(\\261wi\\246)-1(t)1(e)-1(j)1(!)]TJ 27.879 -13.549 Td[(A)-383(ca\\252)-1(a)-383(wie\\261)-383(o)-28(dp)1(ro)28(w)27(ad)1(z)-1(a\\252a)-383(ic)28(h)-383(z)-383(p\\252ac)-1(zem)-384(i)-383(l)1(am)-1(en)28(tem)-384(a\\273)-383(p)-27(o)-28(d)-383(\\014)1(gur\\246)-383(Cz)-1(\\246-)]TJ -27.879 -13.549 Td[(sto)-28(c)27(h)1(o)27(wskiej,)-333(kt\\363r)1(a)-334(sto)-56(j)1(a\\252a)-334(p)1(rzy)-333(dro)-27(dze)-334(na)-333(rozs)-1(ta)-55(jac)28(h.)]TJ 27.879 -13.549 Td[(W)84(o)-56(jo)28(w)28(a\\252)-334(r)1(ok,)-333(w)27(o)-55(jo)28(w)28(a\\252)-334(dw)28(a,)-333(\\273)-1(e)-333(w)-334(k)28(o\\253)1(c)-1(u)-333(i)-333(s\\252uc)27(h)-333(wsz)-1(elki)-333(o)-333(nim)-333(z)-1(agi)1(n\\241\\252.)]TJ 0 -13.55 Td[(Insz)-1(e)-319(da)28(wno)-319(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(li)-319(do)-319(d)1(om)-1(\\363)28(w,)-319(a)-319(Jastrz\\246)-1(b)1(ia)-319(jak)-319(n)1(ie)-320(b)28(y)1(\\252o,)-319(tak)-319(nie)-319(b)28(y\\252o,)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(leli,)-352(\\273)-1(e)-353(ju\\273)-353(b)28(y\\252)-353(zabit)-353(al)1(b)-28(o)-353(go)-353(T)83(u)1(rek)-353(w)-1(zi\\241\\252)-353(do)-353(n)1(iew)27(oli)1(,)-353(o)-353(c)-1(zym)-354(n)1(a)28(w)27(et)-353(z)-354(cic)27(h)1(a)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(d)1(z)-1(i)1(ady)-333(i)-333(w)27(\\246dr)1(o)27(w)28(ce)-334(r\\363\\273ne)-334(p)-27(o)28(wiadali)1(...)]TJ 27.879 -13.549 Td[(A\\273)-427(w)-428(k)28(o\\253)1(c)-1(u)-426(trzec)-1(iego)-427(roku)-426(na)-427(p)1(ierws)-1(z\\241)-427(z)-1(wiesn\\246)-427(p)-28(o)28(wr\\363)-28(ci\\252,)-427(al)1(e)-428(sam)-1(,)-426(b)-28(ez)]TJ -27.879 -13.549 Td[(cz)-1(eladzi,)-430(b)-27(ez)-431(w)28(oz)-1(\\363)28(w)-430(i)-430(k)28(on)1(i,)-430(p)1(ie)-1(c)28(h)28(t)28(y)83(,)-429(z)-1(b)1(iedzon)28(y)83(,)-429(z)-1(marn)1(o)27(w)28(an)28(y)84(,)-430(z)-430(k)28(os)-1(tu)1(rem)-431(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(kiej)-333(d)1(z)-1(iad)1(...)]TJ 27.879 -13.55 Td[(P)28(omo)-28(d)1(li\\252)-456(s)-1(i\\246)-456(gor\\241c)-1(o)-456(p)1(rze)-1(d)-456(M)1(atk)55(\\241)-456(Bo\\273)-1(\\241,)-456(\\273e)-457(m)27(u)-455(p)-28(ozw)27(ol)1(ili)-456(jesz)-1(cz)-1(e)-457(sw)28(o)-56(jej)]TJ -27.879 -13.549 Td[(zie)-1(mie,)-333(i)-333(s)-1(p)1(ie)-1(sz)-1(n)1(ie)-334(r)1(usz)-1(y\\252)-333(do)-333(ws)-1(i)1(...)]TJ 27.879 -13.549 Td[(Nikt)-333(go)-333(ni)1(e)-334(wita\\252,)-333(nikt)-333(n)1(ie)-334(p)-27(oz)-1(n)1(a)28(w)27(a\\252,)-333(\\273)-1(e)-333(psom)-334(si\\246)-334(ano)-333(m)27(u)1(s)-1(i)1(a\\252)-334(ogan)1(ia\\242)-1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)27(ho)-27(dzi)-247(prze)-1(d)-246(s)-1(w)28(\\363)-56(j)-246(dom,)-247(pr)1(z)-1(ec)-1(iera)-247(o)-28(czy)83(,)-247(\\273e)-1(gn)1(a)-247(s)-1(i\\246,)-247(a)-247(p)-27(oz)-1(n)1(a\\242)-248(ni)1(e)-248(mo\\273)-1(e...)]TJ -27.879 -13.549 Td[(Jez)-1(u)1(s)-236(Mar)1(ia!)-235(Gumien)-235(nie)-235(m)-1(a,)-235(sta)-56(j)1(e)-1(n)-235(n)1(ie)-236(ma,)-235(s)-1(ad)1(\\363)28(w)-236(ni)1(e)-236(ma,)-236(p)1(\\252ot\\363)28(w)-236(na)28(w)28(e)-1(t)-235(n)1(ie)-236(ma,)]TJ 0 -13.55 Td[(z)-317(lew)27(en)28(tarza)-317(ni)-316(\\261)-1(l)1(adu)1(...)-317(a)-316(z)-318(c)28(ha\\252up)29(y)-317(in)1(o)-317(z)-1(r)1(\\246)-1(b)29(y)-317(spalon)1(e)-1(..)1(.)-317(dziec)-1(i)-316(nie)-317(ma...)-316(pu)1(s)-1(to..)1(.)]TJ 0 -13.549 Td[(strasz)-1(n)1(o...)-454(j)1(e)-1(n)1(o)-454(\\273ona)-454(sc)27(h)1(oro)28(w)27(an)1(a)-454(wywlek\\252a)-454(si\\246)-454(z)-454(bar\\252ogu)-453(na)-453(jego)-454(sp)-28(otk)56(an)1(ie)-454(i)]TJ\nET\nendstream\nendobj\n974 0 obj <<\n/Type /Page\n/Contents 975 0 R\n/Resources 973 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n973 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n978 0 obj <<\n/Length 8848      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(303)]TJ -358.232 -35.866 Td[(gorzkimi)-333(\\252z)-1(ami)-333(z)-1(ap)1(\\252ak)55(a\\252a!)]TJ 27.879 -13.549 Td[(Kieb)28(y)-333(p)1(ioru)1(n)-333(w)-334(ni)1(e)-1(go)-333(trzas)-1(n)1(\\241\\252!)]TJ 0 -13.549 Td[(Oto)-337(kiedy)-337(on)-338(w)28(o)-56(j)1(o)28(w)27(a\\252)-338(i)-337(ni)1(e)-1(p)1(rz)-1(y)1(jacio\\252y)-338(P)28(a\\253)1(s)-1(k)1(ie)-338(gromi\\252,)-338(p)1(rzys)-1(zed\\252)-338(d)1(o)-338(c)27(h)1(a-)]TJ -27.879 -13.549 Td[(\\252up)29(y)-388(m\\363r)-388(i)-387(p)-28(ob)1(i\\252)-388(m)27(u)-387(ws)-1(zystkie)-388(dziec)-1(i)1(...)-388(p)1(ierun)-387(spali)1(\\252)-1(.)1(..)-388(wilk)1(i)-388(wyd)1(usi\\252y)-388(stada..)1(.)]TJ 0 -13.549 Td[(\\271li)-459(lud)1(z)-1(i)1(e)-460(rozgrab)1(ili.)1(..)-459(s)-1(\\241siad)1(y)-459(z)-1(ab)1(ra\\252y)-459(zie)-1(mi\\246...)-459(susz)-1(e)-459(wypali)1(\\252y)-459(z)-1(b)-27(o\\273)-1(a.)1(..)-459(grad)1(y)]TJ 0 -13.55 Td[(wyt\\252uk)1(\\252y)-334(r)1(e)-1(sz)-1(t\\246...)-333(\\273e)-334(n)1(ie)-334(osta\\252o)-334(n)1(ic)-1(,)-333(ziem)-1(ia)-333(j)1(e)-1(n)1(o)-334(a)-333(ni)1(e)-1(b)-27(o.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-316(na)-316(progu)-316(ki)1(e)-1(j)-316(zm)-1(ar)1(t)28(w)-1(i)1(a\\252)-1(y)84(,)-316(a)-317(n)1(a)-317(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzu,)-316(kiedy)-316(pr)1(z)-1(edzw)27(an)1(iali)]TJ -27.879 -13.549 Td[(na)-286(Anio\\252)-286(P)28(a\\253ski,)-286(z)-1(erw)28(a\\252)-287(s)-1(i)1(\\246)-288(n)1(agle)-287(i)-287(j)1(\\241\\252)-287(strasz)-1(n)28(y)1(m)-288(g\\252ose)-1(m)-287(wyk)1(lina\\242)-287(i)-286(p)-28(omsto)28(w)27(a\\242!)]TJ 27.879 -13.549 Td[(Pr)1(\\363\\273)-1(n)1(o)-444(go)-443(\\273)-1(on)1(a)-444(wstrzym)27(yw)28(a\\252a,)-443(pr\\363\\273no)-443(u)-443(n\\363g)-443(m)27(u)-443(si\\246)-444(wle)-1(k)1(\\252)-1(a)-443(b\\252aga)-55(j\\241cy)83(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ekli)1(na\\252)-285(i)-284(pr)1(z)-1(ekli)1(na\\252,)-284(\\273)-1(e)-285(n)1(a)-285(dar)1(m)-1(o)-284(krew)-285(sw)27(o)-55(j\\241)-284(la\\252)-285(za)-285(P)28(a\\253)1(s)-1(k)56(\\241)-284(s)-1(p)1(ra)28(w)27(\\246,)-284(na)-285(d)1(armo)]TJ 0 -13.549 Td[(br)1(oni\\252)-402(k)28(o\\261c)-1(io\\252\\363)28(w,)-402(na)-402(d)1(armo)-402(ran)28(y)-402(p)-27(onosi\\252,)-402(g\\252\\363)-28(d)-401(c)-1(ierp)1(ia\\252,)-402(na)-402(d)1(armo)-403(p)-27(o)-28(cz)-1(ciwym)]TJ 0 -13.55 Td[(b)28(y\\252)-333(i)-333(p)-27(ob)-28(o\\273n)28(ym;)-333(na)-333(dar)1(m)-1(o.)-333({)-333(P)28(an)-333(B\\363g)-334(i)-333(.t)1(ak)-334(go)-333(op)1(u\\261c)-1(i\\252)-333(i)-333(na)-333(z)-1(at)1(rac)-1(eni)1(e)-334(s)-1(k)56(aza\\252!)]TJ 27.879 -13.549 Td[(St)1(ras)-1(zni)1(e)-468(b)1(lu\\271ni)1(\\252)-467(przec)-1(iw)-467(b)-27(os)-1(k)1(ie)-1(m)28(u)-467(i)1(m)-1(i)1(e)-1(n)1(io)27(wi)-466(a)-467(krzycz)-1(a\\252,)-467(\\273e)-467(ju)1(\\273)-468(c)28(h)28(yba)]TJ -27.879 -13.549 Td[(z\\252)-1(em)27(u)-332(s)-1(i\\246)-333(c)-1(a\\252y)-333(o)-28(dd)1(a,)-333(b)-28(o)-333(on)-333(j)1(e)-1(d)1(e)-1(n)-333(l)1(udzi)-333(w)-334(b)1(ie)-1(d)1(z)-1(i)1(e)-334(ni)1(e)-334(opu)1(s)-1(zc)-1(za.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(na)-333(takie)-334(p)1(rzyz)-1(wy)-333(wnet)-333(s)-1(i\\246)-333(z)-1(\\252y)-333(ja)28(wi\\252)-333(przed)-333(nim.)]TJ 0 -13.549 Td[(Jastrz\\241b)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(nie)-333(p)-28(omiar)1(k)28(o)27(w)28(a\\252)-334(w)-333(tej)-333(z)-1(\\252o\\261c)-1(i,)-333(a)-333(in)1(o)-334(za)28(w)27(o\\252a\\252:)]TJ 0 -13.55 Td[({)-333(P)28(omaga)-56(j,)-333(d)1(iabl)1(e)-1(,)-333(je\\261li)-333(m)-1(o\\273e)-1(sz,)-334(b)-27(o)-333(m)-1(i)-333(si\\246)-334(wielk)56(a)-334(k)1(rzywda)-333(s)-1(ta\\252a.)]TJ 0 -13.549 Td[(G\\252u)1(pi,)-361(n)1(ie)-362(p)-27(omiark)28(o)28(w)28(a\\252)-1(,)-360(\\273)-1(e)-362(P)29(an)-361(Jez)-1(u)1(s)-362(c)27(h)1(c)-1(i)1(a\\252)-362(go)-361(d)1(o\\261)-1(wiad)1(c)-1(zy\\242)-362(i)-361(wyp)1(r\\363b)-27(o-)]TJ -27.879 -13.549 Td[(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(omog\\246)-1(,)-333(a)-333(o)-28(dd)1(as)-1(z)-334(d)1(usz)-1(\\246?)-334({)-333(zas)-1(kr)1(z)-1(ec)-1(za\\252)-333(z)-1(\\252y)84(.)]TJ 0 -13.549 Td[({)-333(Dam)-1(,)-333(c)28(ho)-28(\\242b)28(y)-333(i)-333(z)-1(ar)1(az)-1(!)]TJ 0 -13.55 Td[(Napi)1(s)-1(ali)-333(cyrogr)1(af,)-333(kt\\363r)1(e)-1(n)-333(c)28(h\\252op)-333(kr)1(w)-1(i)1(\\241)-334(ze)-334(se)-1(rd)1(e)-1(cznego)-334(p)1(alc)-1(a)-333(p)-27(o)-28(dp)1(isa\\252.)]TJ 0 -13.549 Td[(I)-470(j)1(u\\273)-470(o)-28(d)-469(tego)-470(d)1(nia)-469(z)-1(acz\\246)-1(\\252o)-470(m)28(u)-469(s)-1(i\\246)-470(wsz)-1(ystk)28(o)-469(w)-1(i)1(e)-1(\\261\\242)-1(,)-469(s)-1(am)-470(ma\\252o)-470(co)-470(r)1(obi\\252,)]TJ -27.879 -13.549 Td[(a)-470(ino)-470(d)1(ogl\\241da\\252)-470(i)-470(rz\\241dzi\\252,)-470(Mic)28(ha\\252ek,)-470(b)-27(o)-471(tak)-470(si\\246)-471(k)56(aza\\252)-471(z\\252y)-470(pr)1(z)-1(ez)-1(y)1(w)27(a\\242,)-470(robi)1(\\252)-471(za)]TJ 0 -13.549 Td[(ni)1(e)-1(go,)-359(a)-360(dru)1(gie)-360(diab)1(\\252y)-360(p)-27(oprzebierane)-360(za)-360(par)1(obk)28(\\363)28(w,)-360(to)-360(za)-360(Miem)-1(c\\363)28(w,)-360(p)-27(om)-1(aga\\252y)84(,)]TJ 0 -13.549 Td[(\\273e)-373(w)-373(kr)1(\\363tkim)-373(czas)-1(ie)-373(gosp)-27(o)-28(dar)1(s)-1(t)28(w)28(o)-373(b)29(y\\252o)-373(j)1(e)-1(sz)-1(cz)-1(e)-372(le)-1(p)1(s)-1(ze)-1(,)-372(wi\\246ksz)-1(e)-373(i)-372(b)-27(ogats)-1(ze)-373(n)1(i\\271)-1(l)1(i)]TJ 0 -13.55 Td[(pr)1(z)-1(\\363)-27(dzi.)]TJ 27.879 -13.549 Td[(Ino)-247(dzie)-1(ci)-247(nie)-248(b)28(y\\252o)-247(no)28(wyc)27(h)1(,)-248(b)-27(o)-248(j)1(ak\\273)-1(e)-248(b)-27(e)-1(z)-248(b)1(\\252ogos)-1(\\252a)28(wie)-1(\\253)1(s)-1(t)28(w)28(a)-248(b)-27(os)-1(k)1(ie)-1(go)-247(m)-1(og\\252y)]TJ -27.879 -13.549 Td[(b)28(y\\242!)]TJ 27.879 -13.549 Td[(Gr)1(yz)-1(\\252)-461(s)-1(i\\246)-462(t)28(ym)-462(Jastrz\\241b)-461(s)-1(r)1(o)-28(dze)-1(,)-461(a)-462(p)-27(o)-462(n)1(o)-28(cac)27(h)-461(c)-1(zas)-1(ami)-461(roz)-1(m)28(y\\261la\\252,)-462(j)1(ak)-462(to)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(jdzie)-316(gor)1(z)-1(e\\242)-316(w)-316(t)28(ym)-316(p)1(ie)-1(k)1(le)-316(wie)-1(cz)-1(n)29(ym,)-316(i)-315(ni)1(e)-316(c)-1(iesz)-1(y\\252y)-315(go)-316(n)1(i)-315(b)-28(ogact)28(w)27(a,)-315(ni)-315(ni)1(c)-1(..)1(.)]TJ 0 -13.55 Td[(A\\273)-239(m)28(usia\\252)-238(m)27(u)-237(Mic)28(ha\\252ek)-238(ja)28(wi\\242)-239(p)1(rze)-1(d)-237(o)-28(cz)-1(y)84(,)-238(jak)28(o)-238(wsz)-1(ystkie)-238(b)-27(ogac)-1(ze)-1(,)-238(p)1(ano)28(wie,)-238(kup)29(y)]TJ 0 -13.549 Td[(di)1(ab\\252om)-304(s)-1(i\\246)-304(za)-304(\\273)-1(y)1(w)27(ota)-304(zapr)1(z)-1(edali)1(,)-304(a)-304(\\273aden)-304(z)-304(nic)28(h)-304(si\\246)-304(nie)-304(tu)1(rbu)1(je)-304(ni)-303(rozm)27(y\\261la,)-304(co)]TJ 0 -13.549 Td[(tam)-334(b)-27(\\246dzie)-334(p)-27(o)-334(\\261mie)-1(r)1(c)-1(i,)-333(a)-333(jeno)-333(si\\246)-334(w)28(e)-1(se)-1(l)1(\\241)-334(i)-333(ws)-1(zystkiego)-334(u)1(\\273)-1(y)1(w)27(a)-55(j\\241)-333(do)-333(s)-1(y)1(ta!)]TJ 27.879 -13.549 Td[(Usp)-28(ok)56(a)-56(j)1(a\\252)-368(s)-1(i\\246)-368(p)-28(otem)-369(Jastrz\\241b)-368(i)-368(j)1(e)-1(sz)-1(cz)-1(e)-368(barzej)-368(pr)1(z)-1(ec)-1(iwk)28(o)-368(Bogu)-368(s)-1(r)1(o\\273)-1(y\\252,)-368(\\273e)]TJ -27.879 -13.549 Td[(a\\273)-336(sam)-336(k)1(rz)-1(y)1(\\273)-336(p)-27(o)-28(d)-335(lasem)-336(zr\\241ba\\252,)-335(ob)1(razy)-335(z)-336(dom)28(u)-335(p)-27(o)28(w)-1(y)1(rz)-1(u)1(c)-1(a\\252)-335(i)-335(d)1(o)-336(\\014)1(gur)1(y)-335(C)-1(z\\246s)-1(to-)]TJ 0 -13.549 Td[(c)27(h)1(o)28(w)-1(skiej)-333(si\\246)-333(br)1(a\\252,)-333(b)28(y)-333(j)1(\\241)-333(rozni)1(e)-1(\\261\\242)-1(,)-332(i\\273)-334(m)28(u)-333(t)1(o)-333(do)-333(or)1(ki)-333(p)1(rze)-1(sz)-1(k)56(adza\\252a,)-333(ledwie)-333(go)-333(o)-28(d)]TJ 0 -13.55 Td[(tego)-334(k)28(ob)1(ieta)-334(o)-28(d)1(wie)-1(d)1(\\252a)-334(sk)56(am)-1(l)1(e)-1(n)1(ie)-1(m)-333(i)-333(pro\\261bami.)]TJ 27.879 -13.549 Td[(I)-350(tak)-349(roki)-349(p\\252yn)1(\\246)-1(\\252y)-349(z)-1(a)-349(rok)56(am)-1(i)-349(jak)28(o)-349(ta)-350(w)28(o)-28(da)-349(b)28(ystra,)-349(b)-28(ogact)28(w)27(a)-349(ros)-1(\\252y)-349(ni)1(e)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(mie)-1(r)1(nie,)-265(a)-265(z)-265(nimi)-265(tak)1(\\273)-1(e)-265(z)-1(n)1(ac)-1(ze)-1(n)1(ie)-1(,)-264(i\\273)-266(n)1(a)28(w)27(et)-265(s)-1(am)-265(kr)1(\\363l)-265(z)-1(a)-55(je\\273)-1(d)1(\\273)-1(a\\252)-265(d)1(o)-265(niego,)-265(n)1(a)-265(dw)28(\\363r)]TJ 0 -13.549 Td[(zaprasz)-1(a\\252)-333(i)-333(m)-1(i)1(\\246)-1(d)1(z)-1(y)-333(sw)27(oic)28(h)-333(k)28(omorni)1(k)28(\\363)27(w)-333(s)-1(ad)1(z)-1(a\\252.)]TJ 27.879 -13.549 Td[(Pu)1(s)-1(zy\\252)-317(si\\246)-317(t)28(ym)-317(Jas)-1(tr)1(z)-1(\\241b)1(,)-317(wynosi\\252)-317(n)1(ad)-317(d)1(rugi)1(e)-1(,)-316(biedot\\241)-317(p)-27(omiata\\252,)-317(wsz)-1(elkiej)]TJ -27.879 -13.55 Td[(p)-27(o)-28(c)-1(zciw)27(o\\261c)-1(i)-333(si\\246)-334(wyzb)28(y\\252,)-333(\\273e)-1(,)-333(ju)1(\\273)-334(za)-334(n)1(ic)-334(mia\\252)-333(\\261)-1(wiat)-333(c)-1(a\\252y)84(.)]TJ 27.879 -13.549 Td[(G\\252u)1(pi!)-333(n)1(ie)-334(baczy\\252,)-333(c)-1(zym)-334(p)1(rzyjd)1(z)-1(ie)-333(z)-1(ap)1(\\252)-1(aci\\242)-334(za)-333(to...)]TJ\nET\nendstream\nendobj\n977 0 obj <<\n/Type /Page\n/Contents 978 0 R\n/Resources 976 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n976 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n981 0 obj <<\n/Length 8338      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(304)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(A\\273)-407(w)-406(k)28(o\\253cu)-406(i)-406(pr)1(z)-1(ysz)-1(\\252a)-406(go)-28(d)1(z)-1(in)1(a)-406(p)-28(or)1(ac)27(h)28(u)1(nku)1(.)-406(P)28(an)28(u)-406(Jez)-1(u)1(s)-1(o)28(wi)-406(ju)1(\\273)-407(zbrak)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(cie)-1(r)1(pli)1(w)27(o\\261c)-1(i)-333(i)-333(p)-27(ob\\252a\\273)-1(an)1(ia)-333(la)-333(z)-1(at)28(w)28(ardzia\\252ego)-334(gr)1(z)-1(es)-1(znik)56(a..)1(.)]TJ 27.879 -13.549 Td[(Nadsze)-1(d)1(\\252)-334(cz)-1(as)-334(s\\241du)-332(i)-334(k)56(ary)84(.)]TJ 0 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-364(zw)27(ali\\252y)-364(si\\246)-365(n)1(a)-364(niego)-365(ci\\246\\273)-1(k)1(ie)-365(c)27(h)1(orob)28(y)-364(i)-364(n)1(ie)-365(p)-27(opu)1(s)-1(zc)-1(za\\252y)-364(ni)-364(n)1(a)-365(to)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie.)]TJ 27.879 -13.55 Td[(P)28(otem)-334(lew)28(e)-1(n)28(tar)1(z)-1(e)-333(pad\\252y)-333(n)1(a)-334(m\\363r.)]TJ 0 -13.549 Td[(P)28(otem)-334(p)1(ioru)1(n)-333(s)-1(p)1(ali\\252)-333(ws)-1(ze)-1(lk)1(ie)-334(zabud)1(o)28(w)27(an)1(ia.)]TJ 0 -13.549 Td[(P)28(otem)-334(gr)1(ady)-333(wybi)1(\\252)-1(y)-333(zb)-28(o\\273a.)]TJ 0 -13.549 Td[(P)28(otem)-334(cz)-1(elad)1(\\271)-334(go)-334(o)-27(db)1(ie)-1(g\\252a.)]TJ 0 -13.549 Td[(P)28(otem)-320(za\\261)-321(p)1(rzysz)-1(\\252y)-319(takie)-320(susz)-1(e,)-320(\\273e)-320(ws)-1(zys)-1(t)1(k)28(o)-320(spali\\252o)-319(s)-1(i\\246)-320(n)1(a)-320(p)-27(opi)1(\\363\\252)-1(,)-319(dr)1(z)-1(ew)27(a)]TJ -27.879 -13.549 Td[(p)-27(os)-1(c)28(h\\252y)83(,)-333(w)28(o)-28(d)1(y)-334(wysc)27(h)1(\\252y)83(,)-333(zie)-1(mia)-333(p)-27(op)-28(\\246k)56(a\\252)-1(a.)]TJ 27.879 -13.55 Td[(P)28(otem)-334(op)1(u\\261c)-1(il)1(i)-333(go)-334(ca\\252kiem)-334(lu)1(dzie)-334(i)-333(bi)1(e)-1(d)1(a)-334(siad\\252a)-333(na)-333(p)1(rogu.)]TJ 0 -13.549 Td[(A)-333(on)-333(c)27(h)1(orz)-1(a\\252)-333(ci\\246)-1(\\273k)28(o,)-333(c)-1(i)1(a\\252)-1(o)-333(m)27(u)-332(k)55(a)28(w)28(a\\252am)-1(i)-333(o)-28(d)1(pad)1(a\\252o,)-334(k)28(o\\261c)-1(i)-333(p)1(r\\363)-28(c)28(hn)1(ia\\252y)83(.)]TJ 0 -13.549 Td[(Na)-296(d)1(armo)-296(sk)55(amla\\252)-296(o)-295(p)-28(or)1(atun)1(e)-1(k)-295(Mic)27(h)1(a\\252k)56(a)-296(i)-296(j)1(e)-1(go)-295(diab)1(lic)27(h)-295(k)56(amrat\\363)28(w:)-296(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(z\\252)-1(y)-333(n)1(ie)-334(p)-27(orad)1(z)-1(i,)-333(ki)1(e)-1(j)-333(n)1(ad)-333(kim)-333(z)-1(a)28(wi\\261nie)-334(r)1(\\246)-1(k)56(a)-333(B)-1(o\\273e)-1(go)-333(gn)1(ie)-1(wu)1(!)]TJ 27.879 -13.549 Td[(A)-380(i)-379(diab)1(li)-380(n)1(ie)-381(stali)-379(ju)1(\\273)-381(o)-380(n)1(iego:)-380(ic)27(h)-379(b)28(y\\252,)-379(to)-380(ab)28(y)-380(p)1(r\\246dze)-1(j)-379(s)-1(k)28(on)1(a\\252,)-380(dm)28(uc)28(hali)]TJ -27.879 -13.55 Td[(m)27(u)-332(w)-334(one)-333(ran)28(y)-333(strasz)-1(n)1(e)-1(,)-333(b)28(yc)28(h)-333(s)-1(i)1(\\246)-334(bar)1(z)-1(ej)-333(j\\241tr)1(z)-1(y)1(\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Jedn)1(o)-334(zm)-1(i)1(\\252o)27(w)28(ani)1(e)-334(P)28(a\\253skie)-333(m)-1(og\\252o)-333(go)-334(t)28(y)1(lk)28(o)-334(wyb)1(a)28(w)-1(i)1(\\242)-1(!)]TJ 0 -13.549 Td[(Jak)28(o\\261)-280(p)-27(\\363\\271n\\241)-279(jes)-1(i)1(e)-1(n)1(i\\241)-279(przysz)-1(\\252a)-279(jedn)1(a)-279(no)-28(c)-279(tak)-279(wie)-1(j)1(na,)-279(\\273e)-280(wic)27(h)1(e)-1(r)-278(z)-1(erw)28(a\\252)-280(d)1(ac)27(h)]TJ -27.879 -13.549 Td[(z)-305(c)27(h)1(a\\252up)28(y)-304(i)-305(p)-27(o)28(wyryw)28(a\\252)-305(wsz)-1(ystkie)-305(d)1(rzw)-1(i)-304(i)-304(okna,)-304(wraz)-305(z)-1(a\\261)-305(zlec)-1(ia\\252a)-304(s)-1(i\\246)-305(ca\\252a)-305(h)28(u)1(rma)]TJ 0 -13.549 Td[(di)1(ab\\252\\363)28(w)-492(i)-491(n)28(u\\273)-492(ta\\253)1(c)-1(o)28(w)28(a\\242)-492(k)28(o\\252)-1(o)-491(w)27(\\246g\\252\\363)28(w)-1(,)-491(a)-492(cisn\\241\\242)-492(si\\246)-492(z)-492(wid\\252ami)-492(d)1(o)-492(\\261ro)-28(d)1(k)56(a,)-492(b)-27(o)]TJ 0 -13.55 Td[(Jastrz\\241b)-333(ju)1(\\273)-334(b)28(y\\252)-333(na)-333(s)-1(k)28(on)1(ani)1(u...)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)1(a)-498(b)1(roni)1(\\252)-1(a)-497(go,)-497(jak)-497(mog\\252a,)-498(ob)1(raze)-1(m)-498(\\261wi\\246t)27(y)1(m)-498(os)-1(\\252an)1(ia)-56(j)1(\\241c)-1(,)-497(to)-497(kred\\241)]TJ -27.879 -13.549 Td[(p)-27(o\\261)-1(wi\\246c)-1(on)1(\\241)-406(z)-1(n)1(ac)-1(z\\241c)-407(pr)1(ogi)-406(a)-406(okna,)-406(al)1(e)-407(ju)1(\\273)-407(u)1(s)-1(ta)28(w)28(a\\252a)-407(z)-406(wie)-1(l)1(kiej)-406(tur)1(bacji,)-406(b)29(y)-406(nie)]TJ 0 -13.549 Td[(p)-27(om)-1(ar)1(\\252)-460(b)-27(ez)-460(S)1(akrame)-1(n)29(t\\363)27(w)-459(i)-459(p)-27(o)-56(j)1(e)-1(d)1(nan)1(ia)-459(z)-460(Bogiem)-1(;)-458(to)-459(c)27(ho)-27(c)-1(ia\\273)-459(z)-1(ak)56(azyw)27(a\\252,)-458(tak)]TJ 0 -13.549 Td[(b)28(y\\252)-493(jes)-1(zc)-1(ze)-494(w)-494(te)-1(j)-493(ostatniej)-493(go)-28(dzin)1(ie)-494(z)-1(at)28(w)28(ardzia\\252y)84(,)-494(c)27(h)1(o)-28(cia\\273)-494(z)-1(\\252e)-494(pr)1(z)-1(es)-1(zk)56(adza\\252o,)]TJ 0 -13.55 Td[(up)1(atrzy\\252a)-333(p)-28(or)1(\\246)-334(i)-333(p)-28(ol)1(e)-1(cia\\252a)-334(n)1(a)-333(pleban)1(i\\246)-1(.)]TJ 27.879 -13.549 Td[(Ale)-334(k)1(s)-1(i\\241d)1(z)-334(sz)-1(yk)28(o)28(w)28(a\\252)-334(si\\246)-334(gd)1(z)-1(iesik)-333(do)-333(dr)1(ogi,)-333(a)-334(d)1(o)-334(b)-27(ez)-1(b)-27(o\\273)-1(n)1(ik)56(a)-334(i)1(\\261)-1(\\242)-334(n)1(ie)-334(c)28(hcia\\252.)]TJ 0 -13.549 Td[({)-424(Co)-424(P)29(an)-424(B\\363g)-424(op)1(u\\261c)-1(i\\252,)-423(diab)1(li)-424(zabr)1(a\\242)-424(m)27(usz\\241,)-424(n)1(ic)-424(tam)-424(ju\\273)-424(p)-27(o)-424(mni)1(e)-1(...)-423({)-424(i)]TJ -27.879 -13.549 Td[(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-334(n)1(a)-333(k)55(ar)1(t)28(y)-334(d)1(o)-334(d)1(w)27(or)1(u.)]TJ 27.879 -13.549 Td[(Zap\\252ak)56(a\\252a)-263(gorzk)28(o)-263(z)-264(f)1(ras)-1(u)1(nk)1(u,)-263(p)1(rz)-1(y)1(kl\\246k\\252a)-263(przed)-263(on\\241)-263(\\014)1(gur\\241)-263(Cz\\246)-1(sto)-28(c)27(h)1(o)28(w)-1(skiej)]TJ -27.879 -13.55 Td[(i)-333(t)28(ym)-334(sz)-1(l)1(o)-28(c)27(h)1(e)-1(m)-333(krw)28(a)27(wym,)-333(t)28(ym)-334(srzyb)-27(ote)-1(m)-333(s)-1(erd)1(e)-1(cz)-1(n)28(y)1(m)-334(s)-1(k)56(amla\\252a)-333(o)-334(zmi\\252o)27(w)28(ani)1(e)-1(.)]TJ 27.879 -13.549 Td[(Ulit)1(o)27(w)28(a\\252a)-334(si\\246)-334(n)1(ad)-333(ni)1(\\241)-334(P)28(an)1(ienk)56(a)-333(\\261)-1(wi\\246ta)-334(i)-333(p)1(rze)-1(m\\363)28(w)-1(i)1(\\252a)-1(:)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(\\252)-1(acz,)-334(k)28(ob)1(ieto,)-333(w)-1(y)1(s)-1(\\252uc)28(han)1(e)-334(s)-1(\\241)-333(t)28(w)28(o)-56(je)-333(pro\\261b)28(y)84(...)]TJ 0 -13.549 Td[(I)-363(s)-1(c)28(ho)-28(d)1(z)-1(i)-363(d)1(o)-363(niej)-363(z)-364(o\\252tar)1(z)-1(a,)-363(j)1(ak)-363(s)-1(t)1(a)-1(\\252a,)-363(w)-363(k)28(oron)1(ie)-364(z\\252ote)-1(j)1(,)-363(w)-363(on)28(ym)-364(p)1(\\252as)-1(zc)-1(zu)]TJ -27.879 -13.549 Td[(mo)-28(dr)1(ym,)-285(z)-1(asian)28(y)1(m)-286(gwiazdami,)-285(z)-285(r\\363\\273a\\253ce)-1(m)-285(u)-284(pasa...)-285(j)1(a\\261)-1(n)1(iej\\241ca)-285(dobr)1(otliw)28(o\\261)-1(ci\\241..)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(ena)-55(j\\261wi\\246)-1(tsza)-426(i)-425(gw)-1(i)1(e)-1(\\271dzie)-426(zarann)1(e)-1(j)-425(p)-27(o)-28(d)1(obna.)1(..)-425(Kobieta)-425(pad)1(\\252)-1(a)-425(pr)1(z)-1(ed)-425(Ni\\241)-426(n)1(a)]TJ 0 -13.55 Td[(t)28(w)27(ar)1(z)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(os)-1(\\252a)-230(j\\241)-230(\\261)-1(wi\\246t)27(y)1(m)-1(i)-230(r\\241czk)55(ami,)-230(otar\\252a)-230(te)-231(\\252z)-1(y)-230(\\273a\\252o\\261)-1(li)1(w)27(e,)-230(przytu)1(li\\252a)-231(d)1(o)-231(serc)-1(a)]TJ -27.879 -13.549 Td[(i)-333(p)-27(o)27(wiad)1(a)-334(t)1(kliwie:)]TJ 27.879 -13.549 Td[({)-333(Pro)28(w)28(ad\\271)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)83(,)-333(mo\\273)-1(e)-333(c)-1(i)-333(co)-334(p)-27(oredz\\246)-1(,)-333(s\\252u\\273e)-1(b)1(nico)-333(w)-1(i)1(e)-1(rn)1(a.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252a)-334(c)28(horego)-333(i)-334(zafr)1(as)-1(o)28(w)28(a\\252o)-334(si\\246)-334(wielce)-334(s)-1(erce)-334(mi\\252o\\261)-1(ciw)28(e)-1(.)]TJ 0 -13.55 Td[({)-289(Bez)-289(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-288(s)-1(i\\246)-289(n)1(ie)-289(ob)-27(e)-1(jd)1(z)-1(i)1(e)-1(,)-288(k)28(obi)1(e)-1(t\\241)-288(jeno)-289(j)1(e)-1(stem)-289(i)-289(tak)1(ie)-1(j)-288(mo)-28(cy)-289(n)1(ie)-289(mam)-1(,)]TJ -27.879 -13.549 Td[(jak)56(\\241)-467(Jez)-1(u)1(s)-468(da\\252)-467(ksi\\246\\273)-1(om!)-467(\\212a)-56(j)1(du)1(s)-468(on)-467(jest,)-467(o)-468(n)1(ar\\363)-28(d)-466(nie)-467(dba,)-467(zgo\\252a)-467(z)-1(\\252y)-467(p)1(as)-1(terz,)]TJ\nET\nendstream\nendobj\n980 0 obj <<\n/Type /Page\n/Contents 981 0 R\n/Resources 979 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n979 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n984 0 obj <<\n/Length 9065      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(305)]TJ -358.232 -35.866 Td[(o)-28(d)1(p)-28(o)28(wie)-328(z)-1(a)-328(to)-327(s)-1(rogo,)-327(ale)-328(on)-328(j)1(e)-1(d)1(e)-1(n)-327(m)-1(a)-328(mo)-28(c)-328(rozgrze)-1(sz)-1(an)1(ia...)-327(Sama)-328(p)-28(\\363)-55(jd)1(\\246)-329(p)-27(o)-328(tego)]TJ 0 -13.549 Td[(k)28(ost)27(y)1(r\\246)-334(d)1(o)-334(d)1(w)27(or)1(u...)-333(Na\\261c)-1(i)-333(r)1(\\363\\273)-1(an)1(ie)-1(c,)-333(br)1(o\\253)-333(nim)-333(grze)-1(sz)-1(n)1(ik)56(a,)-333(p)-28(\\363ki)-333(n)1(ie)-334(p)1(rz)-1(y)1(jd)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Ale)-355(jak)-354(tu)-354(b)28(y\\252o)-355(i\\261\\242)-1(?..)1(.)-355(n)1(o)-28(c)-355(c)-1(iemna,)-355(wiat)1(e)-1(r,)-354(des)-1(zcz)-1(,)-355(b)1(\\252o)-28(c)27(k)28(o,)-354(k)56(a)27(w)28(a\\252)-355(dr)1(ogi,)-355(a)]TJ -27.879 -13.549 Td[(do)-333(tego)-334(d)1(iabl)1(i)-333(w)-1(sz)-1(\\246dzie)-334(p)1(s)-1(o)-27(c)-1(il)1(i.)]TJ 27.879 -13.549 Td[(Nie)-312(u)1(l\\246k\\252a)-311(s)-1(i\\246)-311(nicz)-1(ego)-311(P)28(ani)-311(Niebi)1(e)-1(sk)56(a,)-312(n)1(ie!)-311(Przy)28(o)-28(d)1(z)-1(ia\\252a)-311(si\\246)-312(jeno)-311(o)-28(d)-310(plu)1(c)27(h)28(y)]TJ -27.879 -13.55 Td[(w)-334(p)1(\\252ac)27(h)28(t\\246)-333(i)-334(p)-27(osz)-1(\\252a)-333(w)-334(t\\246)-333(c)-1(iemnic\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[(Dosz)-1(\\252a)-279(d)1(o)-279(dw)28(oru)-278(um\\246c)-1(zona)-279(sro)-28(d)1(z)-1(e)-279(i)-278(prze)-1(mok\\252a)-279(d)1(o)-279(n)1(itki;)-278(z)-1(ap)1(uk)56(a\\252a)-279(pr)1(os)-1(z\\241c)]TJ -27.879 -13.549 Td[(p)-27(ok)28(orni)1(e)-1(,)-437(b)28(yc)28(h)-437(ksi\\241dz)-438(sz)-1(ed\\252)-437(pi)1(lno)-437(do)-437(c)27(h)1(ore)-1(go,)-437(ale)-437(on,)-437(do)-55(jrza)28(ws)-1(zy)83(,)-437(i\\273)-438(to)-437(j)1(ak)55(a\\261)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(ota)-408(i)-408(taki)-408(p)1(s)-1(i)-407(c)-1(zas)-409(n)1(a)-408(dw)28(orze)-1(,)-408(k)56(aza\\252)-409(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242,)-408(\\273e)-409(ran)1(o)-408(pr)1(z)-1(yj)1(e)-1(d)1(z)-1(i)1(e)-1(,)-408(teraz)]TJ 0 -13.549 Td[(ni)1(e)-334(ma)-334(cz)-1(asu)-333(i)-333(gra\\252)-333(dalej,)-333(p)1(i\\252)-334(i)-333(b)1(arasz)-1(k)28(o)28(w)28(a)-1(\\252)-333(z)-334(p)1(anami.)]TJ 27.879 -13.549 Td[(Matk)56(a)-369(Bo\\273)-1(a)-369(jeno)-369(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-369(b)-27(ole)-1(\\261ni)1(e)-370(nad)-369(j)1(e)-1(go)-369(ni)1(e)-1(p)-27(o)-28(cz)-1(ciw)27(o\\261ci\\241,)-369(to)-370(spr)1(a-)]TJ -27.879 -13.55 Td[(wia)-56(j)1(\\241c)-1(,)-361(\\273e)-362(z)-1(ar)1(az)-362(z)-1(j)1(a)27(wi\\252a)-361(s)-1(i)1(\\246)-362(z)-1(\\252ota)-361(k)55(ar)1(e)-1(ta,)-361(cugi,)-361(lok)56(a)-55(je,)-362(p)1(rze)-1(o)-28(d)1(z)-1(i)1(a\\252)-1(a)-361(si\\246)-362(na)-361(pan)1(i\\241)]TJ 0 -13.549 Td[(staro\\261c)-1(in)1(\\246)-334(i)-333(w)27(es)-1(z\\252a)-333(na)-333(p)-28(ok)28(o)-55(je.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(ks)-1(i)1(\\241dz)-334(zaraz)-334(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-333(c)27(h\\246tli)1(w)-1(i)1(e)-334(i)-333(w)-334(te)-334(p)-27(\\246dy)84(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(jec)27(hal)1(i)-464(j)1(e)-1(szc)-1(ze)-464(na)-463(cz)-1(as,)-463(ale)-464(j)1(u\\273)-464(\\261m)-1(i)1(e)-1(r)1(\\242)-464(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-463(na)-463(p)1(rogu,)-463(a)-463(di)1(abli)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-432(m)-1(o)-27(c)-432(dob)28(yw)28(ali)-431(s)-1(i)1(\\246)-433(d)1(o)-432(c)28(h\\252opa,)-431(b)28(y)-431(go)-432(p)-27(orw)28(a\\242)-432(\\273)-1(yw)28(c)-1(em,)-432(n)1(im)-432(ksi\\241dz)-432(n)1(adj)1(e)-1(-)]TJ 0 -13.55 Td[(dzie)-346(z)-347(P)29(anem)-347(Jez)-1(u)1(s)-1(em;)-346(t)28(yle)-346(\\273)-1(e)-346(br)1(oni\\252a)-346(go)-346(k)28(ob)1(ie)-1(t)1(a)-346(r\\363\\273)-1(a\\253)1(c)-1(em,)-346(to)-346(obr)1(az)-1(em)-346(drzwi)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(t)27(y)1(k)55(a)-55(j\\241c,)-333(to)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-1(em)-1(,)-333(to)-333(t)28(ym)-334(Imieniem)-334(P)28(a\\253)1(s)-1(k)1(im.)]TJ 27.879 -13.549 Td[(Wysp)-27(o)27(wiad)1(a\\252)-491(s)-1(i\\246)-491(Jas)-1(tr)1(z)-1(\\241b)1(,)-491(z)-1(a)-491(grzec)27(h)28(y)-491(\\273a\\252o)27(w)28(a\\252,)-491(B)-1(oga)-491(p)1(rze)-1(p)1(ras)-1(za\\252,)-491(roz-)]TJ -27.879 -13.549 Td[(grze)-1(sze)-1(n)1(ie)-360(dosta\\252)-360(i)-360(zaraz)-360(w)-360(ten)-360(mome)-1(n)28(t)-359(B)-1(ogu)-359(du)1(c)27(h)1(a)-360(o)-28(d)1(da\\252.)-360(S)1(am)-1(a)-359(Na)-56(j)1(\\261)-1(wi\\246ts)-1(za)]TJ 0 -13.549 Td[(zam)-1(kn)1(\\246)-1(\\252a)-333(m)27(u)-333(o)-27(c)-1(zy)83(,)-333(p)-27(ob\\252ogos\\252a)27(wi\\252a)-333(k)28(obi)1(e)-1(t\\246)-334(i)-333(p)-27(o)28(wiada)-333(do)-333(struc)28(hla\\252ego)-333(ks)-1(i\\246dza:)]TJ 27.879 -13.55 Td[({)-333(P)28(\\363)-28(d)1(z)-1(i)-333(za)-334(mn\\241!)1(...)]TJ 0 -13.549 Td[(Nie)-250(m\\363g\\252)-249(s)-1(i\\246)-249(jes)-1(zc)-1(ze)-250(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\242,)-249(ale)-250(p)-27(os)-1(ze)-1(d)1(\\252,)-249(roz)-1(gl)1(\\241da)-249(s)-1(i)1(\\246)-250(przed)-249(c)27(ha\\252u)1(p\\241,)]TJ -27.879 -13.549 Td[(a)-348(tu)-348(an)1(i)-348(k)56(are)-1(t)28(y)84(,)-348(ni)-348(l)1(ok)55(a)-55(j\\363)28(w,)-348(jeno)-348(d)1(e)-1(sz)-1(cz)-1(,)-348(b)1(\\252oto,)-348(cie)-1(mni)1(c)-1(a)-348(i)-348(\\261m)-1(i)1(e)-1(r\\242,)-348(id)1(\\241c)-1(a)-348(za)-349(n)1(im)]TJ 0 -13.549 Td[(trop)-332(w)-334(trop)1(...)-333(Ul\\241k)1(\\252)-334(si\\246)-334(wielc)-1(e)-333(i)-333(dalej\\273e)-334(gna\\242)-333(z)-1(a)-333(P)28(ani)1(e)-1(n)1(k)55(\\241)-333(ku)-333(k)56(ap)1(licz)-1(ce)-1(!)]TJ 27.879 -13.549 Td[(P)28(atr)1(z)-1(y)84(,)-363(a)-364(tu)-362(Ona)-363(ju)1(\\273)-364(w)-363(p\\252as)-1(zcz)-1(u)-363(i)-363(k)28(or)1(onie,)-363(oto)-28(cz)-1(on)1(a)-364(c)28(h\\363rami)-363(ani)1(e)-1(lskimi,)]TJ -27.879 -13.55 Td[(ws)-1(t\\246pu)1(je)-333(na)-333(o\\252)-1(t)1(arz)-1(,)-333(n)1(a)-334(d)1(a)28(w)-1(n)1(e)-334(miejsc)-1(e.)]TJ 27.879 -13.549 Td[(P)28(ozna\\252)-302(c)-1(i)-302(wtedy)-302(K)1(r\\363lo)28(w)27(\\241)-302(Ni)1(e)-1(b)1(ie)-1(sk)56(\\241,)-302(s)-1(tr)1(ac)27(h)-302(go)-302(wz)-1(i)1(\\241\\252)-1(,)-302(p)1(ad\\252)-302(na)-302(k)28(ol)1(ana,)-302(ry)1(k-)]TJ -27.879 -13.549 Td[(n\\241\\252)-333(p\\252acz)-1(em)-334(i)-333(wyci\\241)-28(gn)1(\\241\\252)-334(r\\246ce)-334(o)-334(zmi\\252o)28(w)27(an)1(ie)-1(.)]TJ 27.879 -13.549 Td[(A)-333(P)28(ani)1(e)-1(n)1(k)55(a)-333(\\261w)-1(i)1(\\246)-1(ta)-333(s)-1(p)-27(o)-56(j)1(rza\\252a)-334(n)1(a\\253)-333(gni)1(e)-1(wni)1(e)-334(i)-333(rz)-1(ek\\252a:)]TJ 0 -13.549 Td[(Wieki)-333(tak)-333(ca\\252)-1(e)-333(p)-28(ok)1(l\\246)-1(cz)-1(y)1(s)-1(z)-334(za)-333(grze)-1(c)27(h)29(y)83(,)-333(p)-27(op\\252acz)-1(es)-1(z,)-333(nim)-333(o)-28(dp)-27(oku)1(tuj)1(e)-1(sz)-1(.)1(..)]TJ 0 -13.55 Td[(W)-366(k)56(amie)-1(\\253)-365(si\\246)-367(wn)1(e)-1(t)-366(ob)1(r\\363)-28(ci\\252)-366(i)-366(tak)-365(ju\\273)-366(osta\\252,)-366(no)-27(c)-1(ami)-366(jeno)-366(p)1(\\252ac)-1(ze)-1(,)-365(r\\246c)-1(e)-366(wy-)]TJ -27.879 -13.549 Td[(ci\\241)-28(gni)1(\\246)-1(te)-333(trz)-1(y)1(m)-1(a,)-333(zm)-1(i)1(\\252o)27(w)28(ani)1(a)-334(cz)-1(ek)56(a)-334(i)-333(j)1(u\\273)-334(o)-28(d)-332(w)-1(i)1(e)-1(k)-333(wiek)28(\\363)27(w)-333(tak)-333(kl\\246c)-1(zy)83(.)]TJ 27.879 -13.549 Td[(Ame)-1(n)1(!)]TJ 0 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Do)-342(d)1(z)-1(isia)-55(j)-342(ogl\\241d)1(a\\242)-342(m)-1(o\\273na)-342(on)1(\\241)-342(\\014gu)1(r\\246)-342(w)-342(D\\241br)1(o)27(wie)-342(p)-27(o)-28(d)-341(Przedb)-27(orze)-1(m:)-342(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(k)28(o\\261c)-1(io\\252em)-361(stoi)-360(ku)-360(wie)-1(cz)-1(n)1(e)-1(j)-360(p)1(ami\\246)-1(tl)1(iw)27(o\\261ci)-361(i)-360(ostrze)-1(\\273e)-1(n)1(iu)-360(grzes)-1(znik)28(\\363)28(w,)-360(jak)28(o)-360(\\377k)56(ara)]TJ 0 -13.55 Td[(za)-334(z\\252e)-334(ni)1(k)28(og)-1(o)-333(n)1(ie)-334(mini)1(e)-1(.\")]TJ 27.879 -13.549 Td[(D\\252ugi)1(e)-295(a)-294(g\\252\\246b)-28(oki)1(e)-295(milcz)-1(eni)1(e)-295(p)1(ad\\252o)-294(na)-294(wsz)-1(ystkic)28(h,)-294(k)56(a\\273den)-294(r)1(oz)-1(w)28(a\\273)-1(a\\252)-294(s\\252)-1(y)1(s)-1(za-)]TJ -27.879 -13.549 Td[(ne)-333(i)-333(k)55(a\\273den)-333(p)-27(e)-1(\\252en)-333(b)28(y\\252)-333(\\261)-1(wi\\246te)-1(j)-332(c)-1(ic)28(ho\\261c)-1(i,)-333(p)-27(o)-28(d)1(z)-1(iwu)1(,)-334(d)1(obr)1(otliw)28(o\\261)-1(ci)-333(i)-333(l\\246)-1(k)1(u.)]TJ 27.879 -13.549 Td[(Co)-283(tu)-282(rzec)-284(w)-282(tak)55(\\241)-282(p)-27(or\\246)-1(,)-282(kiej)-282(s)-1(i)1(\\246)-283(dusza)-283(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(w)28(a)-283(rozpr)1(\\246)-1(\\273y)-283(j)1(ak)28(o)-283(to)-282(\\273)-1(elaz)-1(o)]TJ -27.879 -13.549 Td[(w)-312(ogni)1(u,)-311(nabr)1(z)-1(mieje)-312(cz)-1(u)1(c)-1(iem)-312(i)-312(j)1(as)-1(n)1(o\\261)-1(ci\\241,)-311(\\273)-1(e)-312(jeno)-311(j\\241)-312(t)1(kn\\241\\242,)-312(a)-311(g)-1(ot)1(o)27(w)28(a)-312(gwiez)-1(d)1(n)28(ym)]TJ 0 -13.55 Td[(desz)-1(cz)-1(em)-334(rozpr)1(ys)-1(n)1(\\241\\242)-334(i)-333(t\\246c)-1(z\\241)-334(si\\246)-334(r)1(oz)-1(sn)28(u)1(\\242)-334(m)-1(i)1(\\246)-1(d)1(z)-1(y)-333(zie)-1(mi\\241)-333(a)-333(nieb)-28(em.)]TJ 27.879 -13.549 Td[(T)83(o)-296(tr)1(w)27(ali)-295(w)-296(c)-1(ic)28(ho\\261c)-1(i)1(,)-296(p)-27(\\363ki)-296(ostatni)1(e)-297(zarze)-1(wia)-296(n)1(ie)-296(z)-1(acz)-1(\\246\\252y)-296(w)-296(ni)1(c)27(h)-295(przygasa\\242)-1(.)]TJ\nET\nendstream\nendobj\n983 0 obj <<\n/Type /Page\n/Contents 984 0 R\n/Resources 982 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n982 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n987 0 obj <<\n/Length 5578      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(306)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(22.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Mateusz)-299(wyci\\241)-28(gn)1(\\241\\252)-299(\\015)1(e)-1(cik)-298(i)-298(j)1(\\241\\252)-299(n)1(a)-298(nim)-298(prze)-1(b)1(iera\\242)-299(i)-298(ci\\241)-28(gn)1(\\241\\242)-299(z)-299(cic)28(ha)-298(t\\241)-298(n)28(ut\\241)]TJ -27.879 -13.549 Td[(rze)-1(wli)1(w)27(\\241)-456(a)-455(m)-1(i)1(e)-1(n)1(i\\241c)-1(\\241,)-455(jak)28(ob)29(y)-456(kto)-455(rosy)-456(su\\252)-456(p)-27(o)-456(o)28(wyc)27(h)-455(pa)-55(j\\246c)-1(zyn)1(ac)27(h,)-455(a)-456(S)1(o)-28(c)27(h)1(o)27(w)28(a)]TJ 0 -13.549 Td[(za\\261)-1(p)1(ie)-1(w)28(a\\252a)-334(\\377)-55(P)28(o)-28(d)-333(Tw)28(o)-56(j)1(\\241)-334(ob)1(ron\\246\".)-333(Pr)1(z)-1(ywtar)1(z)-1(ali)-333(j)1(e)-1(j)-333(z)-333(c)-1(ic)28(ha.)]TJ 27.879 -13.549 Td[(A)-333(p)-28(otem)-334(za\\261)-334(z)-334(w)28(oln)1(a)-334(zac)-1(z\\246)-1(l)1(i)-334(p)-27(ogad)1(yw)27(a\\242)-333(o)-334(t)28(ym)-333(i)-333(o)27(wym,)-333(jak)-333(zw)-1(y)1(c)-1(za)-56(j)1(nie.)]TJ 0 -13.549 Td[(M\\252\\363)-28(d)1(\\271)-250(zac)-1(z\\246)-1(\\252a)-249(mi\\246)-1(d)1(z)-1(y)-249(sob\\241)-249(si\\246)-250(p)1(rz)-1(e\\261m)-1(iew)28(a\\242)-1(,)-249(b)-27(o)-250(T)84(e)-1(resk)55(a)-249(\\273o\\252)-1(n)1(ierk)56(a)-250(zada)28(w)28(a-)]TJ -27.879 -13.55 Td[(\\252a)-354(par)1(obk)28(om)-354(z)-1(agad)1(ki)-354(ucies)-1(zne,)-354(\\273e)-355(za\\261)-355(ktosik)-354(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252,)-353(jak)28(o)-354(Boryn)1(a)-355(p)-27(o)28(wr\\363)-28(ci\\252)]TJ 0 -13.549 Td[(ju)1(\\273)-384(z)-1(e)-384(s\\241d\\363)28(w)-384(i)-383(pij)1(e)-384(te)-1(r)1(az)-385(w)-384(k)56(ar)1(c)-1(zm)-1(i)1(e)-385(ze)-384(s)-1(w)28(o)-56(j)1(\\241)-384(k)28(ompan)1(i\\241,)-384(J)1(ag)-1(u)1(s)-1(i)1(a)-384(za)27(win)1(\\246)-1(\\252a)-383(s)-1(i\\246)]TJ 0 -13.549 Td[(cic)27(h)1(o)-355(i)-354(wys)-1(z\\252a)-355(n)1(ie)-355(w)28(o\\252)-1(a)-55(j\\241c)-355(n)1(a)28(w)27(et)-355(J\\363zki,)-354(a)-354(z)-1(a)-354(ni\\241)-354(An)28(tek)-355(wysun)1(\\241\\252)-355(si\\246)-355(te\\273)-355(ukr)1(ad-)]TJ 0 -13.549 Td[(kiem,)-368(d)1(opad)1(\\252)-368(jes)-1(zcz)-1(e)-368(w)-368(sieni)-367(u)-368(p)1(roga,)-367(uj)1(\\241\\252)-368(mo)-28(c)-1(n)1(o)-368(za)-368(r)1(\\246)-1(k)28(\\246)-368(i)-367(p)-28(o)28(wi\\363)-28(d)1(\\252)-368(d)1(o)-368(in)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(dr)1(z)-1(wi)-333(na)-333(p)-27(o)-28(dw)28(\\363rze)-1(,)-333(a)-333(s)-1(t)1(am)27(t\\241d)-333(p)1(rze)-1(z)-334(sad)-333(do)-333(sto)-28(do\\252y)84(.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-334(nie)-333(z)-1(au)28(w)28(a\\273ono)-333(ic)27(h)-333(wyj)1(\\261)-1(cia,)-333(b)-27(o)-334(T)83(eres)-1(k)56(a)-333(w)-334(g\\252os)-334(w)28(o\\252a\\252a:)]TJ 0 -13.55 Td[({)-333(\\377)-56(P)1(rz)-1(ez)-334(cia\\252a,)-333(pr)1(z)-1(ez)-334(du)1(s)-1(zy)83(,)-333(a)-333(p)-27(o)-28(d)-333(pi)1(e)-1(rzyn)1(\\241)-334(si\\246)-334(r)1(usz)-1(y)84(.\")-333(c)-1(o)-333(to)-333(jes)-1(t?)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(leb,)-333(c)27(h)1(leb,)-333(k)56(a\\273)-1(d)1(y)-333(w)-1(ie!)-333({)-333(w)27(o\\252ali)-333(skup)1(ia)-56(j)1(\\241c)-334(si\\246)-334(k)28(o\\252o)-333(niej.)]TJ 0 -13.549 Td[({)-333(Alb)-27(o)-334(to:)-333(\\377Gon)1(i\\241)-333(s)-1(i)1(\\246)-334(go\\261)-1(cie)-334(p)-27(o)-333(lip)-27(o)28(w)-1(ym)-333(m)-1(o\\261cie)-1(.)1(..\")]TJ 0 -13.549 Td[({)-333(Przetak)-333(i)-334(gr)1(o)-28(c)27(h)1(!)]TJ 0 -13.549 Td[({)-333(Ka\\273)-1(d)1(e)-334(d)1(z)-1(iec)27(k)28(o)-333(o)-333(takic)27(h)-333(zagadk)56(ac)28(h)-333(w)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(m\\363)28(w)27(cie)-334(d)1(ru)1(gie)-1(,)-333(m\\241dr)1(z)-1(ejsz)-1(e!)]TJ 0 -13.549 Td[({)-333(\\377)27(W)-333(k)28(osz)-1(u)1(li)-333(si\\246)-334(na)-333(\\261w)-1(i)1(at)-334(r)1(o)-28(dzi,)]TJ 0 -13.549 Td[(A)-333(p)-28(o)-333(\\261w)-1(i)1(e)-1(cie)-334(n)1(ago)-334(c)28(ho)-28(d)1(z)-1(i.)1(\")]TJ 0 -13.549 Td[(D\\252ugo)-385(zgadyw)28(ali,)-385(a\\273)-385(dopi)1(e)-1(r)1(o)-386(M)1(ate)-1(u)1(s)-1(z)-385(p)-28(o)28(wiedzia\\252,)-385(\\273)-1(e)-386(t)1(o)-386(se)-1(r)1(,)-385(i)-385(s)-1(am)-385(z)-1(ad)1(a\\252)]TJ -27.879 -13.549 Td[(tak)56(\\241)-333(z)-1(agad)1(k)28(\\246)-1(:)]TJ 27.879 -13.55 Td[({)-333(\\377)-56(Lip)-27(o)28(w)27(e)-333(drze)-1(w)28(o)-333(w)27(es)-1(o\\252o)-333(\\261)-1(p)1(iw)28(a,)]TJ 0 -13.549 Td[(A)-333(k)28(o\\253)-333(na)-333(bar)1(anie)-333(ogone)-1(m)-333(kiw)28(a.\")]TJ 0 -13.549 Td[(Z)-333(trud)1(e)-1(m)-333(s)-1(i)1(\\246)-334(dom)28(y\\261)-1(l)1(ili,)-333(i\\273)-333(to)-334(ma)-333(z)-1(n)1(ac)-1(zy\\242)-334(skrzyp)-27(c)-1(e.)]TJ 0 -13.549 Td[(T)83(eres)-1(k)56(a)-333(z)-1(a\\261)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(jesz)-1(cz)-1(e)-334(t)1(rud)1(niejsz\\241:)]TJ 0 -13.549 Td[({)-333(\\377B)-1(ez)-334(n)1(\\363g,)-334(b)-27(ez)-334(r\\241k,)-333(b)-27(e)-1(z)-333(g\\252o)27(wy)-333(i)-333(br)1(z)-1(u)1(c)27(ha,)]TJ 0 -13.55 Td[(A)-333(k)55(a)-55(j)-333(si\\246)-334(obr)1(\\363)-28(ci,)-333(w)-1(sz\\246)-1(d)1(y)-334(se)-334(d)1(m)27(uc)28(ha!\")]TJ 0 -13.549 Td[(Wiat)1(e)-1(r)-434(to)-434(m)-1(ia\\252o)-434(z)-1(n)1(ac)-1(zy\\242;)-435(zac)-1(z\\246li)-435(si\\246)-435(o)-434(to)-435(sw)27(ar)1(z)-1(y)1(\\242)-1(,)-434(pr)1(z)-1(e\\261)-1(miew)27(a\\242)-435(i)-434(coraz)]TJ -27.879 -13.549 Td[(ucies)-1(zni)1(e)-1(j)1(s)-1(ze)-334(z)-1(agad)1(ki)-333(p)-27(o)27(wiad)1(a\\242)-1(,)-333(a\\273)-334(si\\246)-334(i)1(z)-1(b)1(a)-334(r)1(oz)-1(tr)1(z)-1(\\246s)-1(\\252a)-333(gw)27(ar)1(e)-1(m)-333(i)-334(w)28(es)-1(o\\252o\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[(I)-333(jes)-1(zc)-1(ze)-334(d\\252u)1(go)-334(w)-333(no)-27(c)-334(tak)-333(s)-1(i\\246)-333(s)-1(p)-27(o\\252e)-1(cz)-1(n)1(ie)-334(zaba)28(wiali)1(.)]TJ\nET\nendstream\nendobj\n986 0 obj <<\n/Type /Page\n/Contents 987 0 R\n/Resources 985 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 972 0 R\n>> endobj\n985 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n990 0 obj <<\n/Length 7026      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(23)]TJ/F17 10.909 Tf 0 -73.325 Td[(...)1(Wpad)1(li)-394(d)1(o)-395(sadu)1(,)-394(c)27(h)29(y\\252kiem)-395(p)1(rze)-1(sun)1(\\246)-1(li)-393(s)-1(i\\246)-394(p)-28(o)-27(d)-394(ob)28(wis\\252ymi)-394(ga\\252\\246)-1(ziami)-394(i)-394(pr)1(\\246)-1(d)1(k)28(o,)]TJ 0 -13.549 Td[(trw)28(o\\273nie,)-283(n)1(ib)28(y)-282(sp\\252os)-1(zone)-282(jelonki)1(,)-283(wyb)1(iegli)-282(z)-1(a)-282(s)-1(to)-28(d)1(o\\252y)83(,)-282(w)-283(omro)-27(c)-1(za\\252e)-283(\\261)-1(n)1(ie)-1(gi)1(,)-283(w)-282(no)-28(c)]TJ 0 -13.549 Td[(b)-27(e)-1(zgwie)-1(zdn)1(\\241)-334(i)-333(w)-333(niez)-1(g\\252\\246bi)1(on\\241)-333(c)-1(ic)28(ho\\261\\242)-334(p)-27(\\363l)-334(p)1(rze)-1(marz\\252yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epad)1(li)-288(w)-288(no)-27(c)-1(y;)-287(z)-1(gi)1(n\\246)-1(\\252a)-288(wie\\261,)-288(umilk)1(\\252)-1(a)-288(n)1(agle)-288(w)-1(r)1(z)-1(a)28(w)28(a)-288(lud)1(z)-1(k)56(a,)-288(p)-27(orw)28(a\\252y)-288(si\\246)]TJ -27.879 -13.55 Td[(na)28(w)28(e)-1(t)-360(n)1(a)-56(j)1(s)-1(\\252ab)1(s)-1(ze)-361(o)-28(d)1(g\\252os)-1(y)-359(\\273)-1(ycia,)-360(\\273e)-361(zap)-27(om)-1(n)1(ie)-1(l)1(i)-360(wnet)-360(o)-360(w)-1(szys)-1(tk)1(im)-360(i)-360(uj)1(\\241)27(wsz)-1(y)-359(s)-1(i\\246)]TJ 0 -13.549 Td[(wp)-28(\\363\\252,)-361(p)1(rzyw)27(ar)1(li)-361(m)-1(o)-27(c)-1(n)1(o)-362(d)1(o)-361(s)-1(iebi)1(e)-362(biedr)1(o)-361(w)-362(bi)1(e)-1(d)1(ro,)-361(pr)1(z)-1(y)1(c)27(h)28(yleni)-361(n)1(iec)-1(o,)-361(rad)1(o\\261)-1(n)1(i)-361(a)]TJ 0 -13.549 Td[(strw)28(o\\273)-1(eni,)-436(mil)1(c)-1(z\\241c)-1(y)-436(a)-436(p)-27(e\\252)-1(n)1(i)-436(roz\\261piew)27(an)1(ia,)-436(lec)-1(i)1(e)-1(li)-435(z)-1(e)-436(ws)-1(zys)-1(t)1(kic)27(h)-435(s)-1(i\\252)-436(w)-436(ca\\252y)-436(te)-1(n)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at,)-333(m)-1(o)-28(d)1(ro\\261c)-1(i\\241)-333(sin\\241)-333(zas)-1(n)28(u)1(t)28(y)-333(i)-334(mil)1(c)-1(ze)-1(n)1(ie)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261)-334(!)]TJ 0 -13.549 Td[({)-333(C)-1(o?)]TJ 0 -13.55 Td[({)-333(Je)-1(ste\\261)-334(to?)]TJ 0 -13.549 Td[({)-333(Za\\261)-1(b)28(y)-333(n)1(ie)-1(!)1(...)]TJ 0 -13.549 Td[(T)28(yle)-334(j)1(e)-1(n)1(o)-334(r)1(z)-1(ekli,)-333(cz)-1(asami)-334(p)1(rzysta)-56(j)1(\\241c)-1(,)-333(ab)28(y)-333(o)-28(d)1(e)-1(tc)28(hn)1(\\241\\242)-1(.)]TJ 0 -13.549 Td[(Zapi)1(e)-1(ra\\252o)-402(im)-402(g\\252os)-1(y)-402(t)1(rw)27(o\\273ne)-402(bi)1(c)-1(ie)-402(s)-1(erc)-402(i)-402(p)-28(ot\\246\\273n)28(y)-402(krzyk)-402(r)1(ado\\261c)-1(i)-402(p)1(rzyta)-56(j)1(o-)]TJ -27.879 -13.549 Td[(nej;)-331(z)-1(agl)1(\\241dali)-331(w)-332(s)-1(i)1(e)-1(b)1(ie)-332(c)-1(o)-332(c)28(h)28(wila,)-331(o)-28(cz)-1(y)-331(prze)-1(\\261wiec)-1(a\\252y)-332(si\\246)-332(na)28(wza)-56(jem,)-332(n)1(ib)28(y)-331(upal)1(ne,)]TJ 0 -13.55 Td[(ni)1(e)-1(me)-338(b\\252ysk)56(a)28(w)-1(i)1(c)-1(e,)-338(a)-337(usta)-338(spad)1(a\\252y)-338(n)1(a)-338(si\\246)-338(z)-338(pi)1(orun)1(o)28(w)27(\\241)-337(m)-1(o)-27(c)-1(\\241)-337(i)-338(z)-338(tak)1(im)-338(g\\252o)-28(d)1(n)28(ym,)]TJ 0 -13.549 Td[(p)-27(o\\273)-1(era)-55(j\\241cym)-435(ogni)1(e)-1(m,)-434(\\273)-1(e)-434(z)-1(atacz)-1(al)1(i)-435(si\\246)-435(z)-434(up)-27(o)-56(j)1(e)-1(n)1(ia,)-434(tc)27(h)28(u)-434(b)1(rak)28(o)28(w)27(a\\252o,)-434(d)1(z)-1(iw)-434(s)-1(erca)]TJ 0 -13.549 Td[(ni)1(e)-382(rozp)-28(\\246k\\252y;)-381(zie)-1(mia)-381(usu)28(w)28(a\\252)-1(a)-381(si\\246)-382(sp)-28(o)-28(d)-381(n)1(\\363g,)-381(le)-1(cieli)-381(jak)28(ob)28(y)-381(w)-381(ognist\\241)-381(prze)-1(p)1(a\\261)-1(\\242)-381(i)]TJ 0 -13.549 Td[(rozgl\\241d)1(a)-56(j\\241c)-398(s)-1(i\\246)-398(\\261)-1(lep)28(ymi)-398(o)-28(d)-398(\\273ar\\363)28(w)-399(o)-27(c)-1(zyma,)-398(z)-1(ry)1(w)27(ali)-398(si\\246)-399(wn)1(e)-1(t)-398(z)-399(miejsc)-1(a)-398(i)-398(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.549 Td[(bi)1(e)-1(gli)1(,)-346(an)1(i)-345(w)-1(i)1(e)-1(d)1(z)-1(\\241c)-346(d)1(ok)55(\\241d)-345(i)-345(k)28(\\246dy)84(,)-345(b)28(yle)-346(d)1(alej,)-345(c)27(h)1(o)-28(\\242)-1(b)29(y)-346(w)-345(s)-1(am\\241)-346(n)1(a)-56(j)1(g\\252\\246)-1(b)1(s)-1(z\\241)-346(n)1(o)-28(c)-1(,)-345(a\\273)]TJ 0 -13.55 Td[(tam,)-333(w)-334(te)-334(zwite)-334(k)28(o\\252tu)1(n)28(y)-333(c)-1(i)1(e)-1(n)1(i\\363)28(w)-1(.)1(..)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-305(sta)-56(j)1(e)-1(.)1(..)-304(jesz)-1(cz)-1(e)-304(dw)28(a...)-304(d)1(alej...)-303(g\\252)-1(\\246bi)1(e)-1(j)1(...)-304(a\\273)-304(w)-1(szys)-1(tk)28(o)-304(zgin)1(\\246)-1(\\252o)-304(z)-305(o)-27(c)-1(zu,)]TJ -27.879 -13.549 Td[(i)-289(\\261)-1(wiat)-289(c)-1(a\\252y)84(,)-289(i)-290(sama)-290(p)1(am)-1(i)1(\\246)-1(\\242)-290(o)-289(nim,)-289(a\\273)-290(pr)1(z)-1(epad)1(li)-289(c)-1(a\\252ki)1(e)-1(m)-290(w)-289(z)-1(ap)1(am)-1(i\\246tan)1(iu,)-289(jak)28(ob)29(y)]TJ 0 -13.549 Td[(w)28(e)-325(\\261)-1(n)1(ie)-324(niepr)1(z)-1(yp)-27(omnian)28(y)1(m)-1(,)-324(a)-324(j)1(e)-1(n)1(o)-324(prze)-1(z)-324(du)1(s)-1(ze)-325(wiedzian)28(ym,)-324(j)1(ak)28(ob)28(y)-324(w)-325(t)28(y)1(m)-325(\\261nie)]TJ 0 -13.549 Td[(cudo)28(wn)28(ym,)-320(\\261nion)29(ym)-321(n)1(a)-320(ja)28(wie)-321(tam,)-320(w)-320(K\\252\\246b)-28(o)28(w)27(ej)-320(i)1(z)-1(b)1(ie)-1(,)-320(p)1(rze)-1(d)-319(c)27(h)28(wil\\241)-320(zaledwie,)-320(\\273)-1(e)]TJ 0 -13.55 Td[(ton)1(\\246)-1(li)-413(jesz)-1(cz)-1(e)-414(w)-413(\\261)-1(wietliste)-1(j)-413(sm)27(u)1(dze)-414(cic)27(h)28(yc)28(h,)-413(mis)-1(t)28(y)1(c)-1(zn)28(yc)27(h)-413(p)-27(o)28(wiada\\253)1(,)-414(\\273e)-414(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)1(i)-250(b)28(yli)-249(dziw)28(\\363)27(w)-250(i)-250(zja)28(w)-250(on)28(y)1(c)27(h,)-249(\\273)-1(e)-250(jes)-1(zc)-1(ze)-250(te)-251(p)1(rze)-1(\\261nion)1(e)-250(ba\\261nio)28(w)27(e)-250(mo)-28(ce)-251(otr)1(z)-1(\\241sa\\252y)]TJ 0 -13.549 Td[(na)-235(ic)28(h)-235(du)1(s)-1(ze)-236(c)-1(u)1(do)28(wn)28(y)-235(okwiat)-235(o)-28(cz)-1(aro)28(w)28(a\\253,)-235(trw)28(\\363g)-235(\\261)-1(wi\\246t)28(yc)27(h)1(,)-236(zdu)1(mie)-1(\\253)-235(n)1(a)-56(j)1(g\\252\\246)-1(b)1(s)-1(zyc)27(h)1(,)]TJ 0 -13.549 Td[(un)1(ies)-1(ie\\253)-333(i)-333(ni)1(e)-1(u)1(tulon)29(yc)27(h)-333(t\\246s)-1(k)1(nic!)]TJ 27.879 -13.549 Td[(Byli)-234(sp)-28(o)28(wici)-234(jes)-1(zc)-1(ze)-235(w)-234(c)-1(zaro)-28(d)1(z)-1(iejsk)56(\\241)-234(t\\246)-1(cz)-1(\\246)-234(c)-1(u)1(d\\363)28(w)-235(i)-234(marze)-1(\\253)1(,)-234(\\273)-1(e)-234(p\\252yn)1(\\246)-1(li)-234(j)1(akb)28(y)]TJ -27.879 -13.55 Td[(z)-290(k)28(oro)28(w)28(o)-28(dem)-290(t)28(yc)27(h)-289(d)1(z)-1(iw)28(\\363)28(w)-1(,)-289(wyw)28(o\\252)-1(an)29(yc)27(h)-289(pr)1(z)-1(ed)-289(c)27(h)28(wil\\241,)-289(pr)1(z)-1(ez)-290(ba\\261nio)28(w)28(e)-290(kra)-55(je)-290(sz)-1(li)1(,)]TJ 0 -13.549 Td[(na)-362(wskr\\363\\261)-363(t)28(yc)28(h)-362(sc)-1(en)-362(nad)1(lud)1(z)-1(k)1(ic)27(h)1(,)-362(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-362(sta)28(w)27(a\\253)1(,)-362(w)-1(szys)-1(tk)1(ic)27(h)-362(cud)1(\\363)28(w)-1(,)-362(p)1(rze)-1(z)]TJ 0 -13.549 Td[(na)-55(jg\\252\\246bsz)-1(e)-348(k)1(r\\246gi)-348(zdu)1(m)-1(i)1(e)-1(\\253)-347(i)-347(o)-28(cz)-1(ar)1(o)28(w)27(a\\253)1(.)-348(Ja)28(wy)-347(k)28(o\\252ysa\\252)-1(y)-347(si\\246)-348(w)-347(c)-1(ieni)1(ac)27(h,)-347(p)-27(o)-348(n)1(iebie)]TJ 358.232 -29.888 Td[(307)]TJ\nET\nendstream\nendobj\n989 0 obj <<\n/Type /Page\n/Contents 990 0 R\n/Resources 988 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n988 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n994 0 obj <<\n/Length 8871      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(308)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(23.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b\\252\\241d)1(z)-1(i)1(\\252)-1(y)84(,)-235(wyrasta\\252y)-235(z)-236(k)56(a\\273dym)-235(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ie)-1(m)-235(o)-28(cz)-1(u)1(,)-235(pr)1(z)-1(ez)-236(se)-1(rca)-235(p\\252yn)1(\\246)-1(\\252y)84(,)-235(a\\273)-236(c)28(h)28(wilami)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ta)-56(j)1(ali)-379(o)-28(d)1(dec)27(h)28(y)84(,)-379(z)-1(amierali)-379(z)-379(trw)28(ogi)-379(i)-379(p)1(rzyw)27(ar)1(c)-1(i)-379(d)1(o)-379(s)-1(i)1(e)-1(bi)1(e)-1(,)-379(on)1(iem)-1(i)1(e)-1(li,)-378(z)-1(al\\246kli)1(,)]TJ 0 -13.549 Td[(wpatr)1(yw)27(al)1(i)-403(si\\246)-403(w)-403(b)-27(e)-1(zdenn)1(\\241,)-403(sk\\252\\246)-1(b)1(ion\\241)-402(g\\252\\241b)-403(marze)-1(n)1(ia,)-402(a\\273)-403(roz)-1(k)1(w)-1(i)1(ta\\252y)-403(im)-403(d)1(usz)-1(e)]TJ 0 -13.549 Td[(w)-315(kwiat)-314(zdumie\\253,)-314(w)-315(p)1(rz)-1(e\\261w)-1(i)1(\\246)-1(t)28(y)-314(kwiat)-315(wiar)1(y)-315(i)-314(mo)-28(dl)1(ite)-1(wn)28(y)1(c)27(h)-314(un)1(ies)-1(ie\\253,)-314(\\273e)-315(padal)1(i)]TJ 0 -13.549 Td[(na)-333(sam)-1(o)-333(dn)1(o)-333(p)-28(o)-28(d)1(z)-1(i)1(w)-1(u)-333(i)-333(n)1(iepami\\246)-1(ci.)]TJ 27.879 -13.55 Td[(A)-436(p)-27(ote)-1(m,)-436(p)-27(o)28(wrac)-1(a)-55(j\\241c)-436(do)-436(p)1(rzytomno\\261c)-1(i,)-435(d\\252ugo)-436(b)1(\\252\\241dzili)-436(o)-27(c)-1(zym)-1(a)-436(zdu)1(mio-)]TJ -27.879 -13.549 Td[(n)28(ymi)-362(p)-27(o)-362(no)-27(c)-1(y)84(,)-362(ni)1(e)-363(wiedz\\241c)-363(d)1(obrze)-1(,)-361(z)-1(ali)-361(s)-1(\\241)-362(jesz)-1(cz)-1(e)-362(m)-1(i)1(\\246)-1(d)1(z)-1(y)-362(\\273yw)28(e)-1(,)-362(zali)-362(w)-362(n)1(ic)27(h)-361(s)-1(i\\246)]TJ 0 -13.549 Td[(sta)27(w)28(a\\252y)-333(te)-334(cud)1(a,)-334(zali)-333(ni)1(e)-334(s)-1(en)-333(to)-333(ws)-1(zystk)28(o,)-333(nie)-334(omani)1(e)-1(n)1(ie)-1(!)1(...)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)-27(o)-56(j)1(as)-1(z)-334(si\\246,)-333(Jagu\\261,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-420(D)1(y\\242)-420(b)28(ym)-420(za)-420(tob)1(\\241)-420(p)-27(os)-1(z\\252a)-420(w)-420(ca\\252y)-419(\\261)-1(wiat)-419(na)-420(\\261mie)-1(r)1(\\242)-1(!)-419({)-420(sze)-1(p)1(n\\246\\252)-1(a)-419(z)-420(m)-1(o)-27(c)-1(\\241,)]TJ -27.879 -13.549 Td[(tu)1(l\\241c)-334(si\\246)-334(do)-333(n)1(ie)-1(go)-333(za)-1(p)1(ami\\246)-1(tal)1(e)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(zek)55(a\\252a\\261)-334(t)1(o)-334(n)1(a)-334(mni)1(e)-1(?)-333({)-334(zap)28(yta\\252)-333(p)-27(o)-334(c)28(h)28(wili.)]TJ 0 -13.549 Td[({)-303(Jak\\273e)-1(!)-303(K)1(to)-303(ino)-303(w)-303(s)-1(i)1(e)-1(n)1(ie)-304(wsz)-1(ed\\252,)-303(to)-303(a\\273)-304(me)-304(p)-27(o)-28(d)1(ryw)28(a\\252o...)-303(p)-27(o)-303(tom)-304(p)1(rze)-1(ciec)27(h)]TJ -27.879 -13.549 Td[(jeno)-333(p)-27(os)-1(z\\252a)-334(d)1(o)-333(K\\252\\246)-1(b)-27(\\363)28(w)-1(.)1(..)-333(p)-28(o)-333(to..)1(.)-334(m)28(y\\261la\\252ac)27(h)1(,)-334(\\273e)-334(si\\246)-334(n)1(ie)-334(do)-27(c)-1(ze)-1(k)56(am...)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(ie)-1(j)-333(wsz)-1(ed\\252em)-1(,)-333(to)-333(ud)1(a\\252a\\261)-1(,)-333(\\273e)-334(mnie)-333(nie)-334(wid)1(z)-1(i)1(s)-1(z...)]TJ 0 -13.549 Td[({)-443(G\\252u)1(pi.)1(..)-443(mia\\252am)-444(p)1(atrze)-1(\\242,)-443(\\273e)-1(b)29(y)-443(c)-1(o)-443(p)-27(omiark)28(o)28(w)28(ali!)-443(Ale)-443(m\\246)-444(tak)-442(w)-444(d)1(o\\252ku)]TJ -27.879 -13.55 Td[(\\261c)-1(isn\\246\\252o,)-333(\\273)-1(e)-334(d)1(z)-1(i)1(w)-334(ni)1(e)-334(s)-1(p)1(ad\\252am)-333(z)-1(e)-334(sto\\252k)56(a...)-333(a\\273e)-1(m)-334(w)28(o)-28(d)1(e)-334(pi\\252a)-333(na)-333(strze)-1(\\271wie)-1(n)1(ie...)]TJ 27.879 -13.549 Td[({)-333(Na)-56(j)1(m)-1(il)1(e)-1(j)1(s)-1(za)-334(mo)-55(ja!..)1(.)]TJ 0 -13.549 Td[({)-324(S)1(iedzia\\252e)-1(\\261)-324(z)-324(t)28(y\\252u,)-323(cz)-1(u)1(\\252)-1(am,)-323(ale)-324(b)-28(o)-55(ja\\252am)-324(si\\246)-324(p)-27(opatrze\\242)-325(n)1(a)-324(ciebie,)-324(b)-27(o)-56(j)1(a\\252am)]TJ -27.879 -13.549 Td[(si\\246)-237(z)-1(agada\\242...)-236(a)-237(se)-1(rce)-237(to)-237(mi)-237(si\\246)-237(tak)-237(t\\252uk)1(\\252o,)-237(tak)-237(k)28(o\\252ata\\252o,)-236(\\273)-1(e)-237(lu)1(dzie)-237(m)27(usieli)-237(s\\252ysz)-1(e\\242)-1(..)1(.)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-1(!)-333(o)-333(m)-1(a\\252om)-333(nie)-334(k)1(rzyk)56(a\\252)-1(a)-333(z)-334(k)1(un)28(ten)28(tn)1(o\\261)-1(ci!..)1(.)]TJ 27.879 -13.55 Td[({)-333(Miar)1(k)28(o)27(w)28(a\\252e)-1(m,)-333(\\273)-1(e)-333(c)-1(i\\246)-333(u)-333(K\\252\\246)-1(b)-27(\\363)28(w)-334(zas)-1(tan)1(\\246)-334(i)-333(raze)-1(m)-333(wyjd)1(z)-1(iem)27(y)84(...)]TJ 0 -13.549 Td[({)-333(Do)-334(d)1(om)-334(c)28(hcia\\252am)-334(bi)1(e)-1(\\273y\\242)-1(,)-333(a)-333(zniew)27(ol)1(i\\252e)-1(\\261...)]TJ 0 -13.549 Td[({)-333(Nie)-334(c)27(h)1(c)-1(i)1(a\\252a\\261)-334(to,)-333(Jagu\\261,)-333(c)-1(o?...)]TJ 0 -13.549 Td[({)-333(Hale)-1(.)1(..)-333(nieraz)-333(m)27(y\\261la\\252am)-1(,)-333(b)29(y)-334(si\\246)-334(t)1(ak)-334(sta\\252o...)-333(n)1(ieraz)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(My\\261la\\252a\\261)-334(tak!)-333(M)1(y\\261)-1(l)1(a\\252)-1(a\\261)-333({)-334(sz)-1(ept)1(a\\252)-334(n)1(am)-1(i\\246tn)1(ie)-1(.)]TJ 0 -13.55 Td[({)-333(Za\\261)-1(b)28(y)-333(n)1(ie)-1(,)-333(Jan)29(to\\261)-1(!)-333(a)-333(c)-1(i)1(\\246)-1(giem,)-334(ci\\246giem)-1(..)1(.)-333(T)83(am)-334(za)-334(p)1(rze)-1(\\252az)-1(em)-334(n)1(iedobr)1(z)-1(e...)]TJ 0 -13.549 Td[({)-333(Pra)28(wda.)1(..)-333(tuta)-55(j)-333(ni)1(kto)-333(nas)-334(n)1(ie)-334(sp\\252osz)-1(y)84(...)-333(Sami)-333(jeste)-1(\\261m)27(y)84(...)]TJ 0 -13.549 Td[({)-310(Sami!.)1(..)-310(i)-310(tak)56(a)-311(ciem)-1(n)1(ica...)-310(i..)1(.)-310({)-311(sz)-1(epta\\252a)-310(rzuca)-56(j)1(\\241c)-311(m)28(u)-310(s)-1(i)1(\\246)-311(na)-310(sz)-1(yj)1(\\246)-311(i)-310(ob)-27(e)-1(j)1(-)]TJ -27.879 -13.549 Td[(m)27(u)1(j\\241c)-333(go)-334(ze)-334(ws)-1(zystkiej)-333(m)-1(o)-27(c)-1(y)-333(sz)-1(a\\252u)-333(i)-333(mi\\252o\\261)-1(ci..)1(.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.55 Td[(Nie)-454(w)-1(i)1(a\\252o)-454(ju\\273)-454(na)-454(p)-27(olac)27(h)1(,)-454(jeno)-454(czas)-1(ami)-454(wiater)-454(pr)1(z)-1(egarni)1(a\\252)-455(mi\\246kki)1(m)-455(p)-27(o-)]TJ -27.879 -13.549 Td[(wiew)27(em)-298(i)-297(k)1(ie)-1(b)29(y)-297(t)28(ym)-1(i)-297(p)1(ies)-1(zc)-1(z\\241c)-1(y)1(m)-1(i)-297(sze)-1(p)1(tam)-1(i)-297(p)1(rze)-1(c)28(h\\252adza\\252)-297(rozpalon)1(e)-298(t)28(w)28(arz)-1(e.)-297(Nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-427(gwiaz)-1(d)-427(j)1(arz\\241c)-1(y)1(c)27(h)-427(ni)-427(ksi\\246\\273)-1(y)1(c)-1(a,)-427(ni)1(e)-1(b)-27(o)-428(wisia\\252o)-427(nisk)28(o,)-427(s)-1(k\\252\\246bion)1(e)-428(b)1(rud)1(n)28(ymi)-427(i)]TJ 0 -13.549 Td[(p)-27(os)-1(zarp)1(an)28(ymi)-356(ru)1(nami)-356(c)27(h)1(m)27(u)1(r,)-356(ki)1(e)-1(b)28(y)-355(to)-356(s)-1(tad)1(o)-356(w)27(o\\252\\363)28(w)-356(bu)1(ryc)28(h)-356(zale)-1(g\\252o)-356(p)1(uste)-357(i)-355(na-)]TJ 0 -13.549 Td[(gie)-278(ugory)84(,)-278(a)-278(dale)-278(ma)-56(jaczy\\252y)-278(jak)28(ob)28(y)-278(p)1(rze)-1(z)-278(s)-1(zare,)-278(rozw)-1(l)1(e)-1(cz)-1(on)1(e)-279(dy)1(m)27(y)84(,)-278(\\273)-1(e)-278(\\261)-1(wiat)-278(ca\\252y)]TJ 0 -13.549 Td[(zda\\252)-333(s)-1(i\\246)-333(utk)56(an)28(y)-333(z)-334(mgie\\252)-1(,)-333(d)1(rga)-55(j\\241ce)-1(j)-333(wsz)-1(\\246dy)-333(cie)-1(mno\\261c)-1(i)-333(i)-333(wzbur)1(z)-1(on)1(e)-1(go)-333(m\\246)-1(tu)1(.)]TJ 27.879 -13.55 Td[(G\\252\\246b)-28(ok)1(i,)-349(n)1(ie)-1(p)-27(ok)28(o)-55(j\\241cy)83(,)-349(a)-348(le)-1(d)1(wie)-349(o)-28(dcz)-1(u)1(t)28(y)-349(sz)-1(me)-1(r)-348(dr)1(ga\\252)-349(w)-349(p)-28(o)28(wietrzu,)-348(p\\252yn)1(\\241\\252)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-318(o)-28(d)-317(b)-28(or)1(\\363)27(w)-318(zatopion)29(yc)27(h)-318(w)-318(n)1(o)-28(c)-1(y)-318(al)1(b)-28(o)-318(o)-28(d)-317(c)27(h)1(m)27(ur)1(,)-318(z)-319(t)28(y)1(c)27(h)-318(d)1(z)-1(ik)1(ic)27(h)-317(roz)-1(p)1(adli)1(n,)-318(z)]TJ 0 -13.549 Td[(kt\\363r)1(yc)27(h)-286(raz)-287(p)-28(o)-286(raz)-287(w)-1(y)1(fru)29(w)27(a\\252y)-287(stad)1(a)-287(bia\\252yc)28(h)-287(ob)1(\\252ok)28(\\363)27(w,)-286(ucie)-1(k)56(a)-55(j\\241cyc)27(h)-286(c)27(h)28(y)1(\\273)-1(o,)-287(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(klu)1(c)-1(ze)-334(wiose)-1(n)1(nego)-334(p)1(tac)-1(t)28(w)28(a)-333(gonion)1(e)-334(pr)1(z)-1(ez)-334(jastrz\\246)-1(b)1(ie.)]TJ 27.879 -13.549 Td[(No)-28(c)-363(b)29(y\\252a)-363(ciem)-1(n)1(a)-363(i)-362(b)-27(ole\\261)-1(n)1(ie)-363(wz)-1(b)1(urzona,)-362(g\\252u)1(c)27(ha,)-362(a)-362(p)-28(e\\252na)-362(dziwnego)-363(r)1(uc)28(h)28(u,)]TJ -27.879 -13.55 Td[(p)-27(e)-1(\\252n)1(a)-401(l\\246)-1(k)1(u,)-401(n)1(iep)-28(o)-28(c)28(h)28(wytn)28(y)1(c)27(h)-401(d)1(rga\\253)1(,)-401(trw)28(o\\273)-1(n)29(yc)27(h)-400(s)-1(zm)-1(er\\363)28(w,)-401(p)1(rzyc)-1(za)-56(j)1(on)28(yc)27(h)-400(zja)28(w)-401(i)]TJ 0 -13.549 Td[(nag\\252y)1(c)27(h)-400(sta)28(w)27(a\\253)-399(rze)-1(czy)-400(ni)1(e)-1(wyt\\252umacz)-1(on)28(y)1(c)27(h)-399(a)-400(przera\\273)-1(a)-55(j\\241cyc)27(h)1(;)-400(cz)-1(asami)-400(z)-400(nag\\252a)]TJ\nET\nendstream\nendobj\n993 0 obj <<\n/Type /Page\n/Contents 994 0 R\n/Resources 992 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n992 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n997 0 obj <<\n/Length 8543      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(309)]TJ -358.232 -35.866 Td[(sp)-28(o)-28(d)-298(z)-1(w)28(a\\252\\363)28(w)-300(ciem)-1(n)1(icy)-299(wyb\\252yskiw)28(a\\252y)-299(wid)1(m)-1(o)28(w)28(e)-300(b)1(lado\\261c)-1(i)-298(\\261)-1(n)1(ie)-1(g\\363)28(w,)-299(to)-299(j)1(akie\\261)-300(l)1(o)-28(do-)]TJ 0 -13.549 Td[(w)28(e)-1(,)-379(wil)1(gotna)28(w)27(e,)-379(r)1(opi\\241ce)-379(brzas)-1(k)1(i)-379(p)-27(e)-1(\\252za\\252)-1(y)-378(w)-379(w)27(\\246\\273)-1(o)28(wyc)27(h)-378(s)-1(k)1(r\\246tac)27(h)-378(w)-1(skro\\261)-379(cie)-1(n)1(i\\363)28(w,)]TJ 0 -13.549 Td[(to)-359(z)-1(n)1(o)28(w)-1(u)-358(no)-28(c)-359(jakb)29(y)-359(z)-1(a)28(wiera\\252a)-359(p)-28(o)28(wieki,)-359(mroki)-359(spad)1(a\\252y)-359(c)-1(zarn)1(\\241,)-359(niepr)1(z)-1(eni)1(knion)1(\\241)]TJ 0 -13.549 Td[(ul)1(e)-1(w)28(\\241)-374(i)-373(\\261wiat)-373(c)-1(a\\252y)-373(p)1(rz)-1(epad)1(a\\252,)-373(\\273)-1(e)-374(o)-27(c)-1(zy)83(,)-373(n)1(ie)-374(mog\\241c)-374(si\\246)-374(u)1(c)27(h)28(wyci\\242)-374(n)1(ic)-1(ze)-1(go,)-373(zs)-1(u)29(w)27(a-)]TJ 0 -13.549 Td[(\\252y)-360(si\\246)-361(b)-27(ez)-1(siln)1(ie)-361(w)-360(sam)-1(\\241)-360(g\\252\\241b)-359(prze)-1(r)1(a\\273)-1(eni)1(a)-360(i)-360(du)1(s)-1(za)-360(dr)1(\\246)-1(t)28(wia\\252a,)-360(pr)1(z)-1(y)1(w)27(alon)1(a)-360(g\\252uc)27(h)1(\\241)]TJ 0 -13.55 Td[(mart)28(w)27(ot)1(\\241)-247(grobu)1(,)-247(a)-247(c)28(h)28(wilami)-247(r)1(oz)-1(dziera\\252y)-247(si\\246)-247(pr)1(z)-1(ys\\252on)28(y)-247(cieni\\363)28(w,)-247(p)-27(\\246k)55(a\\252y)-246(jakb)28(y)-246(gro-)]TJ 0 -13.549 Td[(me)-1(m)-344(rozpr)1(ute)-344(i)-344(p)1(rze)-1(z)-344(strasz)-1(li)1(w)27(e)-344(rozpad)1(lin)28(y)-343(c)27(h)1(m)27(ur)-343(wida\\242)-344(b)28(y)1(\\252)-1(o)-343(w)-344(g\\252\\246)-1(b)-27(ok)28(o\\261)-1(ciac)27(h)]TJ 0 -13.549 Td[(gran)1(ato)28(w)27(e,)-333(p)-28(ola)-333(u)1(gw)-1(i)1(e)-1(\\273d\\273onego,)-333(c)-1(ic)28(hego)-334(n)1(ie)-1(b)1(a.)]TJ 27.879 -13.549 Td[(T)83(o)-345(z)-1(n)1(o)28(w)-1(u)-345(z)-345(p)-28(\\363l)-345(cz)-1(y)-345(o)-28(d)-345(c)28(ha\\252up)1(,)-345(z)-346(ni)1(e)-1(b)1(a)-346(cz)-1(y)-345(z)-346(zatopi)1(on)28(yc)27(h)-345(d)1(ali,)-345(n)1(ie)-346(wiada)]TJ -27.879 -13.549 Td[(zgo\\252)-1(a)-437(s)-1(k)56(\\241d,)-437(dr)1(ga\\252y)-438(r)1(oz)-1(p)1(rys\\252e)-1(,)-437(p)-28(e\\252z)-1(a)-55(j\\241ce)-438(jakb)28(y)-437(g\\252os)-1(y)84(,)-438(j)1(akb)28(y)-437(bl)1(as)-1(ki)1(,)-438(j)1(akb)28(y)-438(ec)27(h)1(a)]TJ 0 -13.549 Td[(jak)1(ie)-1(\\261)-390(z)-1(gub)1(ion)1(e)-1(,)-390(widma)-390(d\\271w)-1(i)1(\\246)-1(k)28(\\363)28(w)-391(i)-390(rze)-1(cz)-1(y)-390(d)1(a)27(wn)1(o)-391(p)-27(oma)-1(r)1(\\252yc)27(h)-390(a)-390(b\\252\\241d)1(z)-1(\\241cyc)27(h)-390(p)-27(o)]TJ 0 -13.55 Td[(\\261w)-1(i)1(e)-1(cie)-248(p\\252yn)1(\\246)-1(\\252y)-247(\\273)-1(a\\252osn)28(ym)-248(k)28(or)1(o)27(w)28(o)-28(d)1(e)-1(m)-248(i)-247(gin\\246\\252y)-248(n)1(ie)-248(wiadomo)-248(gd)1(z)-1(i)1(e)-1(,)-247(jak)-247(te)-248(p)-28(omar\\252e)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252o\\261)-1(ci)-334(gwiezdne.)]TJ 27.879 -13.549 Td[(Ale)-256(on)1(i)-255(o\\261)-1(l)1(e)-1(p)1(li)-255(na)-255(ws)-1(zystk)28(o,)-255(bu)1(rz)-1(a)-255(si\\246)-256(w)-255(nic)28(h)-255(z)-1(erw)28(a\\252a)-255(i)-256(r)1(os)-1(\\252a)-255(wz)-1(maga)-56(j)1(\\241c)-256(si\\246)]TJ -27.879 -13.549 Td[(co)-357(mgnieni)1(e)-1(,)-356(pr)1(z)-1(ew)27(al)1(a\\252)-1(a)-356(s)-1(i)1(\\246)-357(z)-357(s)-1(erca)-357(d)1(o)-357(se)-1(r)1(c)-1(a)-356(p)-28(ot)1(okiem)-357(pal\\241cyc)28(h)-357(a)-356(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(dzian)28(y)1(c)27(h)-282(\\273\\241dz,)-283(b)1(\\252ys)-1(k)56(a)28(wico)27(wyc)28(h)-282(s)-1(p)-27(o)-56(j)1(rze)-1(\\253)1(,)-283(b)-27(oles)-1(n)29(yc)27(h)-282(d)1(r\\273e)-1(\\253)1(,)-283(n)1(iep)-28(ok)28(o)-55(j\\363)28(w)-283(n)1(ag\\252yc)27(h)1(,)]TJ 0 -13.55 Td[(ca\\252)-1(u)1(nk)28(\\363)28(w)-431(parz\\241cyc)27(h)1(,)-431(s)-1(\\252\\363)28(w)-431(s)-1(p)1(l\\241tan)28(yc)28(h,)-431(b)-27(e)-1(z\\252adn)28(y)1(c)27(h)-431(a)-431(ol\\261ni)1(e)-1(w)28(a)-56(j)1(\\241c)-1(yc)28(h)-431(ni)1(b)28(y)-431(dzi-)]TJ 0 -13.549 Td[(kie)-307(miot)28(y)-306(pior)1(un\\363)28(w,)-306(oniem)-1(i)1(e)-1(\\253)-306(\\261)-1(mierteln)28(y)1(c)27(h,)-306(tkli)1(w)27(o\\261c)-1(i)1(,)-307(a)-307(tak)1(ie)-1(go)-306(c)-1(zaru)-306(zaraz)-1(em,)]TJ 0 -13.549 Td[(\\273e)-361(du)1(s)-1(i)1(li)-360(si\\246)-361(w)-360(u\\261c)-1(i)1(s)-1(k)56(ac)27(h)1(,)-360(rozgniatal)1(i)-360(do)-360(b)-27(\\363lu,)-359(darl)1(i)-360(s)-1(i\\246)-360(wprost)-360(pazur)1(am)-1(i)1(,)-360(jakb)29(y)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(\\241c)-235(wyrw)28(a\\242)-235(z)-236(siebie)-235(wn\\246trzno\\261c)-1(i)-234(i)-235(s)-1(k)56(\\241)-28(p)1(a\\242)-235(s)-1(i\\246)-235(w)-235(rozk)28(os)-1(zac)27(h)-234(m)-1(\\246ki,)-234(a)-235(pr)1(z)-1(es)-1(\\252on)1(ione)]TJ 0 -13.549 Td[(bi)1(e)-1(lmami)-333(o)-28(c)-1(zy)-333(nie)-333(w)-1(i)1(dzia\\252y)-333(ju)1(\\273)-334(nic,)-333(na)28(w)28(e)-1(t)-333(s)-1(am)28(yc)27(h)-332(s)-1(iebi)1(e)-1(.)]TJ 27.879 -13.55 Td[(I)-227(p)-28(or)1(w)27(an)1(i)-228(mi\\252osn\\241)-227(w)-1(i)1(c)27(h)28(u)1(r\\241,)-227(o\\261)-1(l)1(e)-1(p)1(li)-227(na)-227(w)-1(szys)-1(tk)28(o,)-227(osz)-1(aleli,)-227(wyzb)28(yci)-227(z)-228(pami\\246c)-1(i)]TJ -27.879 -13.549 Td[(stopieni)-476(z)-478(sob\\241)-477(jak)28(o)-477(d)1(wie)-478(\\273agwie)-477(p\\252on\\241ce)-1(,)-476(nie\\261)-1(l)1(i)-477(s)-1(i)1(\\246)-478(w)-477(t\\246)-477(no)-28(c)-477(niepr)1(z)-1(ejr)1(z)-1(an)1(\\241,)]TJ 0 -13.549 Td[(w)-442(p)1(ustk)28(\\246)-442(i)-441(g\\252uc)28(h\\241)-441(s)-1(amotno\\261\\242)-1(,)-441(b)29(y)-442(o)-27(dda)28(w)28(a\\242)-442(si\\246)-442(s)-1(ob)1(ie)-442(n)1(a)-442(\\261mie)-1(r)1(\\242)-1(,)-441(d)1(o)-442(d)1(na)-441(dusz,)]TJ 0 -13.549 Td[(p)-27(o\\273)-1(eran)28(y)1(c)27(h)-333(wie)-1(czys)-1(t)28(ym)-333(g\\252o)-28(dem)-334(tr)1(w)27(an)1(ia...)]TJ 27.879 -13.549 Td[(Nie)-342(mogli)-342(j)1(u\\273)-342(m)-1(\\363)28(wi\\242,)-342(t)28(ylk)28(o)-341(niepr)1(z)-1(yt)1(om)-1(n)1(e)-343(k)1(rz)-1(y)1(ki)-342(r)1(w)27(a\\252y)-342(si\\246)-342(im)-342(gdzies)-1(ik)-341(a\\273)]TJ -27.879 -13.55 Td[(z)-438(s)-1(am)28(yc)27(h)-437(tr)1(z)-1(ew)-1(i)1(\\363)27(w,)-437(t)28(ylk)28(o)-438(sze)-1(p)1(t)27(y)-437(z)-1(d)1(usz)-1(on)1(e)-1(,)-437(p)-27(orw)28(ane)-438(a)-438(strze)-1(li)1(s)-1(te)-438(j)1(ak)-438(wytr)1(ys)-1(k)1(i)]TJ 0 -13.549 Td[(ogni)1(a,)-316(s)-1(\\252o)28(w)27(a)-316(b\\252\\246dn)1(e)-317(i)-316(opi)1(te)-317(s)-1(za\\252e)-1(m,)-316(s)-1(p)-27(o)-55(jrze)-1(n)1(ia)-316(\\273)-1(r)1(\\241c)-1(e)-317(d)1(o)-316(s)-1(zpik)1(u,)-316(s)-1(p)-27(o)-55(jrze)-1(n)1(ia)-316(s)-1(tr)1(u-)]TJ 0 -13.549 Td[(c)27(h)1(la\\252e)-287(ob\\252\\241k)56(ani)1(e)-1(m,)-287(sp)-27(o)-56(j)1(rz)-1(eni)1(a)-287(h)28(u)1(ragan\\363)28(w)-287(w)28(al\\241cyc)27(h)-286(n)1(a)-287(sie)-1(b)1(ie,)-287(a\\273)-287(p)1(rze)-1(j)1(\\241\\252)-287(ic)27(h)-286(tak)1(i)]TJ 0 -13.549 Td[(strasz)-1(n)28(y)-414(d)1(ygot)-414(\\273)-1(\\241d)1(z)-1(y)-414(\\273e)-415(z)-1(w)28(arl)1(i)-415(si\\246)-415(z)-414(dzikim)-414(s)-1(k)28(o)28(wytem)-415(i)-414(pad)1(li.)1(..)-414(niepr)1(z)-1(yt)1(o)-1(mn)1(i)]TJ 0 -13.549 Td[(zgo\\252)-1(a.)-333(.)-333(.)]TJ 27.879 -13.55 Td[(\\221wiat)-333(si\\246)-334(wsz)-1(yste)-1(k)-333(zak)28(o\\252o)28(w)27(a\\252)-333(i)-333(run)1(\\241\\252)-334(wraz)-333(z)-334(nimi)-333(w)-334(ogn)1(iste)-334(pr)1(z)-1(epa\\261c)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(me)-334(r)1(oz)-1(u)1(m)-334(o)-28(d)1(c)27(ho)-27(dzi!...)]TJ 0 -13.549 Td[({)-333(Nie)-334(kr)1(z)-1(ycz...)-333(c)-1(i)1(c)27(ho,)-333(Jagu)1(\\261)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Kiej)-333(m)27(u)1(s)-1(z\\246)-1(.)1(..)-333(w)-1(\\261c)-1(i)1(e)-1(kn)1(\\246)-334(si\\246)-334(ab)-27(o)-334(co!)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(w)-334(mi)-333(s)-1(erce)-334(nie)-333(roz)-1(p)-27(\\246kni)1(e)-1(!)]TJ 0 -13.55 Td[({)-333(Sp)1(al\\246)-334(si\\246)-1(.)1(..)-333(lob)-28(oga,)-333(p)1(u\\261\\242)-1(.)1(..)-333(da)-55(j)-333(o)-28(dzip)1(n\\241\\242...)]TJ 0 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[({)-333(O)-333(Je)-1(zu..)1(.)-333(b)-28(o)-333(z)-1(amr\\246...)-333(o)-333(Jez)-1(u)1(!...)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(\\261wiec)-1(ie)-333(jedyn)1(a...)]TJ 0 -13.549 Td[({)-333(Jan)28(to\\261!)-333(Jan)28(to\\261)-1(!)1(...)]TJ 0 -13.55 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(...)1(Jak)28(o)-447(te)-446(s)-1(oki)1(,)-447(\\273ywi\\241ce)-447(skryto)-446(p)-27(o)-28(d)-446(zie)-1(mi\\241,)-446(bu)1(dz\\241)-447(si\\246)-447(o)-446(wio\\261nie)-447(k)56(a\\273dej,)]TJ\nET\nendstream\nendobj\n996 0 obj <<\n/Type /Page\n/Contents 997 0 R\n/Resources 995 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n995 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1000 0 obj <<\n/Length 8991      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(310)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(23.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozpr)1(\\246)-1(\\273a)-56(j)1(\\241)-318(nie\\261m)-1(ierteln)1(\\241)-318(\\273)-1(\\241d)1(z)-1(\\241,)-317(pr\\241)-317(do)-318(si\\246)-318(przez)-319(zw)27(a\\252y)-317(\\261)-1(wiata,)-317(z)-319(k)1(ra\\253c\\363)28(w)-318(z)-1(iemi)]TJ 0 -13.549 Td[(p\\252y)1(n\\241,)-297(n)1(iebami)-297(k)28(o\\252uj)1(\\241,)-297(a\\273)-297(s)-1(i\\246)-297(o)-28(d)1(na)-55(jd\\241,)-296(pr)1(z)-1(epad)1(n\\241)-297(w)-297(s)-1(ob)1(ie)-297(i)-297(w)-297(\\261w)-1(i\\246tej)-297(ta)-55(jem)-1(n)1(icy)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zn\\241,)-320(b)28(yc)28(h)-321(si\\246)-321(p)-27(ote)-1(m)-321(sta\\242)-321(z)-1(d)1(umion)28(ym)-321(o)-27(c)-1(zom)-1(:)-320(wio\\261)-1(n)1(ian\\241)-320(p)-28(or)1(\\241)-321(alb)-27(o)-321(kwiatem,)]TJ 0 -13.549 Td[(du)1(s)-1(z\\241)-333(c)-1(z\\252o)27(wiecz)-1(\\241)-333(leb)-28(o)-333(p)-28(oszume)-1(m)-333(drze)-1(win)-332(z)-1(ielon)28(y)1(c)27(h..)1(.)]TJ 27.879 -13.549 Td[(T)83(ak)-323(ci)-323(i)-323(on)1(i)-323(par)1(li)-323(d)1(o)-323(s)-1(iebi)1(e)-324(p)1(rz)-1(ez)-323(d\\252ugi)1(e)-324(t\\246s)-1(k)1(nice)-1(,)-322(prze)-1(z)-323(dn)1(ie)-323(udr)1(\\246)-1(k)1(i,)-323(pr)1(z)-1(ez)]TJ -27.879 -13.55 Td[(sz)-1(are,)-336(d\\252ugi)1(e)-1(,)-336(pu)1(s)-1(te)-337(d)1(ni)1(e)-1(,)-336(a\\273)-337(s)-1(i)1(\\246)-337(o)-28(dn)1(ale\\271)-1(li)-336(i)-336(z)-337(jedn)1(akim,)-337(n)1(iez)-1(mo\\273)-1(on)29(ym)-337(krzyki)1(e)-1(m)]TJ 0 -13.549 Td[(p)-27(o\\273)-1(\\241d)1(a\\253)-380(p)1(adali)-380(sobi)1(e)-381(w)-380(ramion)1(a)-380(z)-1(wiera)-56(j)1(\\241c)-381(si\\246)-380(tak)-380(p)-27(ot\\246)-1(\\273ni)1(e)-381(j)1(a)-1(k)28(o)-380(t)1(e)-381(sos)-1(n)28(y)84(,)-380(gd)1(y)]TJ 0 -13.549 Td[(je)-292(bu)1(rz)-1(a)-292(wyr)1(w)-1(i)1(e)-293(i)-292(z)-1(d)1(ruzgotan)1(e)-293(rzuci)-292(na)-292(s)-1(i)1(e)-1(b)1(ie)-1(,)-292(\\273e)-293(ob)-27(e)-1(j)1(m)27(u)1(j\\241)-292(s)-1(i)1(\\246)-293(rozpacz)-1(n)1(ie)-1(,)-292(mo)-28(c\\241)]TJ 0 -13.549 Td[(ws)-1(zystk)56(\\241)-339(i)-338(w)-338(\\261)-1(mierteln)28(ym)-338(z)-1(magan)1(iu)-338(k)28(olebi\\241)-338(si\\246)-1(,)-338(szam)-1(o)-28(c\\241,)-338(c)27(h)28(wiej\\241,)-338(n)1(im)-338(s)-1(p)-27(o\\252e)-1(m)]TJ 0 -13.549 Td[(w)-334(l)1(ut\\241)-333(\\261)-1(mier\\242)-334(u)1(pad)1(n\\241..)1(.)]TJ 27.879 -13.549 Td[(A)-333(os)-1(\\252an)1(ia\\252a)-334(i)1(c)27(h)-333(no)-27(c)-334(i)-333(oprz\\246d\\252a,)-333(b)28(yc)28(h)-333(s)-1(i\\246)-333(s)-1(ta\\252o,)-333(co)-334(p)1(rze)-1(znacz)-1(on)1(e)-1(..)1(.)]TJ 0 -13.55 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Ku)1(ropat)28(wy)-438(zacz)-1(\\246\\252y)-438(s)-1(i)1(\\246)-439(skrzyki)1(w)27(a\\242)-438(gdzie\\261)-439(w)-438(ciem)-1(n)1(o\\261)-1(ciac)27(h)1(,)-438(a)-438(tak)-437(bli)1(s)-1(k)28(o,)]TJ -27.879 -13.549 Td[(\\273e)-501(s\\252)-1(y)1(c)27(ha\\242)-500(b)28(y\\252o)-500(id)1(\\241c)-1(e)-500(c)-1(a\\252e)-501(stado;)-500(r)1(oz)-1(l)1(e)-1(ga\\252)-500(s)-1(i)1(\\246)-501(sz)-1(yb)1(ki)-500(sz)-1(ele)-1(st,)-500(j)1(akb)28(y)-500(skrzyde\\252)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(zon)28(yc)28(h)-245(do)-245(l)1(otu)-245(i)-245(bi)1(j\\241cyc)27(h)-244(o)-246(\\261ni)1(e)-1(gi,)-244(to)-245(o)-28(dd)1(z)-1(ieln)1(e)-1(,)-245(cierpk)1(ie)-246(g\\252osy)-245(rozdzie)-1(r)1(a\\252y)]TJ 0 -13.549 Td[(cis)-1(z\\246)-1(,)-333(a)-333(o)-28(d)-333(wsi,)-333(s)-1(n)1(ad\\271)-334(n)1(iedalekiej,)-333(zryw)28(a\\252y)-333(s)-1(i\\246)]TJ 27.879 -13.55 Td[(pr)1(z)-1(y)1(duszone,)-334(a)-333(mo)-28(cne)-334(p)1(iania)-333(k)28(ogu)1(t\\363)27(w.)]TJ 0 -13.549 Td[({)-333(P)28(\\363\\271)-1(n)1(o)-333(ju\\273...)-333({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(trw)28(o\\273)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(dalek)28(o)-333(do)-333(p)-28(\\363\\252n)1(o)-28(c)27(k)56(a,)-333(pi)1(e)-1(j)1(\\241)-334(an)1(o)-334(n)1(a)-334(o)-27(dmian\\246.)]TJ 0 -13.549 Td[({)-333(Odwil)1(ga)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\261ni)1(e)-1(g)-333(z)-1(ami\\246k\\252.)]TJ 0 -13.55 Td[(Za)-56(j)1(\\241c)-1(e)-498(gdzies)-1(ik)-497(blisk)28(o)-498(jak)1(b)28(y)-498(za)-498(k)55(amion)1(k)55(\\241,)-497(p)-28(o)-28(d)-497(kt\\363r\\241)-498(siedzieli,)-498(zac)-1(z\\246)-1(\\252y)]TJ -27.879 -13.549 Td[(b)-27(e)-1(cz)-1(e\\242)-1(,)-434(p)1(rz)-1(egani)1(a\\242)-435(s)-1(i\\246)-434(i)-435(gzi\\242)-435(kieb)28(y)-434(na)-434(w)27(ese)-1(li)1(s)-1(ku)1(,)-435(a\\273)-434(c)-1(a\\252\\241)-435(gr)1(om)-1(ad)1(\\241)-435(p)1(rze)-1(lecia\\252y)]TJ 0 -13.549 Td[(ob)-27(ok)-333(nic)28(h,)-333(\\273)-1(e)-333(o)-28(dsk)28(o)-28(cz)-1(yl)1(i)-334(z)-333(przera\\273)-1(eni)1(e)-1(m.)]TJ 27.879 -13.549 Td[(P)28(ar)1(z)-1(\\241)-329(si\\246)-329(ju)1(c)27(h)28(y)-328(i)-329(tak)-328(\\261)-1(l)1(e)-1(p)1(n\\241,)-329(\\273e)-329(na)-329(cz\\252)-1(o)28(wiek)56(a)-329(nie)-329(b)1(ac)-1(z\\241.)-329(Na)-329(zwie)-1(sn\\246)-329(id)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(My\\261la\\252am,)-334(\\273e)-334(j)1(aki\\261)-334(zwie)-1(r)1(z)-334(dziki)1(...)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-333(n)1(o,)-334(p)1(rzyku)1(c)-1(n)1(ij!)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(al)1(\\246)-1(k\\252y)1(m)-334(g\\252os)-1(em.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(w)27(arl)1(i)-350(do)-350(k)56(am)-1(i)1(onki)-350(w)-350(m)-1(i)1(lc)-1(ze)-1(n)1(iu)1(.)-350(Z)-351(r)1(oz)-1(b)1(ie)-1(l)1(onej)-350(\\261)-1(n)1(iego)27(wymi)-350(br)1(z)-1(ask)56(am)-1(i)]TJ -27.879 -13.549 Td[(cie)-1(mno\\261ci)-328(j)1(\\246)-1(\\252y)-327(si\\246)-328(wyn)28(u)1(rz)-1(a\\242)-327(jakie\\261)-328(cie)-1(n)1(ie)-328(d)1(\\252)-1(u)1(gie)-328(i)-327(p)-27(e)-1(\\252za)-56(j)1(\\241c)-1(e...)-327(p)-27(os)-1(u)28(w)28(a\\252y)-327(s)-1(i\\246)-328(w)28(ol-)]TJ 0 -13.549 Td[(no.)1(..)-413(c)27(h)28(y)1(\\252)-1(k)1(ie)-1(m,)-413(to)-413(z)-1(n)1(ik)56(a\\252y)-414(ca\\252kiem,)-414(j)1(akb)28(y)-413(si\\246)-414(p)-27(o)-28(d)-413(zie)-1(mi\\246)-413(z)-1(apad)1(\\252y)83(,)-413(\\273e)-414(in)1(o)-414(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(ci\\252y)-469(kieb)28(y)-469(te)-469(\\261)-1(wi\\246to)-56(j)1(a\\253skie)-469(robaczki)-469(w)-469(g\\246)-1(st)28(w)-1(i)1(nie;)-469(b)28(y\\252y)-469(mo\\273e)-470(o)-469(p)-27(\\363\\252)-470(sta)-56(j)1(a)]TJ 0 -13.55 Td[(zale)-1(d)1(wie)-412(o)-27(d)-411(ni)1(c)27(h,)-410(prze)-1(wlek\\252y)-411(si\\246)-411(w)-1(n)1(e)-1(t)-411(i)-410(c)-1(a\\252kiem)-411(z)-1(gin)1(\\246)-1(\\252y)-411(w)-411(ciem)-1(n)1(ic)-1(y)84(,)-411(a\\273)-411(nagle)]TJ 0 -13.549 Td[(rozleg\\252)-369(s)-1(i)1(\\246)-370(k)1(r\\363tki,)-368(b)-28(ol)1(e)-1(sn)28(y)84(,)-369(\\261m)-1(ierteln)28(y)-368(b)-28(ek)-369(za)-56(j)1(\\246)-1(czy)83(,)-368(p)-28(otem)-369(os)-1(tr)1(y)-369(tu)1(p)-28(ot,)-368(wrza)27(w)28(a)]TJ 0 -13.549 Td[(c)27(h)1(arcz)-1(e\\253,)-405(k)28(ot\\252o)28(w)27(an)1(ina)-405(jak)56(a\\261)-406(p)1(rze)-1(r)1(a\\273)-1(a)-55(j\\241ca,)-406(c)28(hru)1(p)-27(ot)-406(mia\\273d\\273on)28(yc)27(h)-405(k)28(o\\261ci,)-405(gro\\271)-1(n)29(y)]TJ 0 -13.549 Td[(w)28(ark)28(ot)-333(i)-333(z)-1(n)1(o)27(wu)-333(milcz)-1(eni)1(e)-334(g\\252\\246)-1(b)-27(okie)-333(a)-334(n)1(ie)-1(p)-27(ok)28(o)-55(j\\241ce)-334(z)-1(aleg\\252o)-333(do)-28(ok)28(o\\252a.)]TJ 27.879 -13.549 Td[({)-333(Wilk)1(i)-334(ozdar)1(\\252y)-333(z)-1(a)-55(j\\241c)-1(zk)56(a.)]TJ 0 -13.549 Td[({)-333(Od)-333(wiatru)-332(s)-1(iedzim,)-333(to)-334(i)-333(n)1(ie)-334(zw)27(\\241c)28(ha\\252y)83(.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-55(jam)-333(s)-1(i\\246...)-333(c)28(ho)-28(d)1(\\271)-1(m)28(y)-334(j)1(u\\273...)-333(zi\\241b)-333(mnie)-333(przejm)27(u)1(je...)-333({)-333(ws)-1(tr)1(z)-1(\\241sn\\246\\252a)-334(si\\246.)]TJ 0 -13.549 Td[(Ogar)1(n\\241\\252)-279(j)1(\\241)-279(s)-1(ob)1(\\241)-279(i)-278(rozgrz)-1(ew)28(a\\252)-279(takimi)-279(ca\\252un)1(k)56(am)-1(i,)-278(a\\273)-279(ob)-28(o)-55(je)-279(wnet)-279(zabacz)-1(y)1(li)-279(o)]TJ -27.879 -13.549 Td[(ca\\252)-1(y)1(m)-323(\\261w)-1(i)1(e)-1(cie,)-322(ob)-55(j\\246li)-322(s)-1(i)1(\\246)-323(kr)1(z)-1(epk)28(o)-322(w)-322(pas)-323(i)-322(p)-27(osz)-1(li)-322(j)1(ak)56(\\241\\261)-323(d)1(r\\363\\273)-1(k)56(\\241,)-322(kt)1(\\363ra)-322(s)-1(i)1(\\246)-323(im)-322(s)-1(ama)]TJ 0 -13.549 Td[(na)28(win)1(\\246)-1(\\252a)-261(p)-27(o)-28(d)-261(n)1(ogi;)-261(sz)-1(l)1(i)-261(k)28(o\\252ys)-1(z\\241c)-261(s)-1(i\\246)-261(c)-1(i)1(\\246)-1(\\273k)28(o)-261(ruc)28(hem)-262(d)1(rze)-1(w,)-261(p)-27(okry)1(t)28(yc)27(h)-260(nadmiar)1(e)-1(m)]TJ 0 -13.549 Td[(kwiat\\363)28(w)-333(i)-334(k)28(ol)1(e)-1(b)1(i\\241c)-1(y)1(c)27(h)-333(si\\246)-334(cic)27(h)1(o)-334(w)-333(psz)-1(cz)-1(eln)28(y)1(m)-334(br)1(z)-1(\\246ku.)1(..)]TJ 27.879 -13.55 Td[(Mi)1(lc)-1(ze)-1(l)1(i,)-422(a)-422(jeno)-422(sz)-1(mer)-422(p)-28(o)-27(c)-1(a\\252u)1(nk)28(\\363)28(w,)-422(w)-1(zdy)1(c)27(h\\363)28(w,)-422(n)1(am)-1(i\\246tne)-422(p)-27(okrzyki,)-422(g\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(y)-354(w)28(ark)28(ot)-354(u)1(p)-28(o)-55(je\\253,)-353(rad)1(os)-1(n)1(e)-355(b)1(icie)-354(s)-1(erc)-354(okr)1(y\\252y)83(,)-353(ic)27(h)-353(jak)28(ob)29(y)-354(d)1(rga)-56(j)1(\\241c)-1(y)1(m)-354(\\273)-1(arem)-354(p)-27(\\363l)]TJ\nET\nendstream\nendobj\n999 0 obj <<\n/Type /Page\n/Contents 1000 0 R\n/Resources 998 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n998 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1003 0 obj <<\n/Length 8628      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(311)]TJ -358.232 -35.866 Td[(wio\\261nian)28(y)1(c)27(h:)-463(b)28(y)1(li)-463(jak)28(o)-464(t)1(e)-464(okwie)-1(cone)-463(w)-1(iosn\\241)-463(roz\\252ogi,)-463(z)-1(atop)1(ione)-463(w)-464(\\261)-1(wietli)1(s)-1(t)28(ym)]TJ 0 -13.549 Td[(p)-27(obrz\\246ku)-325(rado\\261c)-1(i)1(;)-326(b)-27(o)-28(\\242)-326(tak)-325(s)-1(amo)-326(rozkwita\\252y)-325(im)-326(o)-28(cz)-1(y)84(,)-326(tak)-325(sam)-1(o)-325(dysz)-1(eli)-325(up)1(aln)28(ym)]TJ 0 -13.549 Td[(tc)27(h)1(ni)1(e)-1(n)1(ie)-1(m)-383(p)-27(\\363l)-382(rozpra\\273on)28(yc)28(h)-382(w)-383(s)-1(\\252on)1(e)-1(cz)-1(n)1(e)-1(j)-382(p)-27(o\\273o)-28(dze)-1(,)-382(dr)1(\\273)-1(eni)1(e)-1(m)-383(tr)1(a)27(w)-382(rosn\\241cyc)27(h)1(,)]TJ 0 -13.549 Td[(dr)1(ganiem)-308(i)-308(p)-27(ob\\252yskiem)-308(s)-1(tr)1(umieni,)-307(s)-1(t\\252u)1(m)-1(ion)29(ym)-308(krzykiem)-308(ptak)28(\\363)28(w;)-308(se)-1(r)1(c)-1(a)-308(t\\246tn)1(ia\\252y)]TJ 0 -13.549 Td[(w)-337(j)1(e)-1(d)1(no)-336(z)-337(t\\241)-337(ziem)-1(i)1(\\241)-337(\\261w)-1(i)1(\\246)-1(t\\241,)-336(a)-336(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)-337(p)1(ada\\252y)-336(kieb)28(y)-336(ten)-337(ci\\246\\273)-1(k)1(i,)-336(ro)-28(d)1(n)28(y)-336(okwiat)]TJ 0 -13.55 Td[(jab)1(\\252onk)28(o)28(wy)83(,)-252(a)-252(s\\252o)27(w)28(a)-252(c)-1(i)1(c)27(he,)-252(rzadk)1(ie)-1(,)-252(w)28(a\\273ne)-253(wyt)1(ryskiw)28(a\\252y)-252(z)-253(sam)-1(ego)-252(rdzenia)-252(d)1(usz)-1(y)84(,)]TJ 0 -13.549 Td[(ni)1(b)28(y)-381(ol\\261ni)1(e)-1(w)28(a)-56(j)1(\\241c)-1(e)-381(p)-28(\\246dy)-380(drzew)-382(w)-381(ma)-56(j)1(o)28(w)27(e)-381(\\261)-1(wit)28(y)84(,)-381(a)-381(o)-28(d)1(dec)27(h)28(y)-381(b)29(y\\252y)-381(j)1(ak)28(o)-381(te)-382(wiewy)]TJ 0 -13.549 Td[(pi)1(e)-1(sz)-1(cz)-1(\\241ce)-373(m\\252o)-28(d)1(\\241)-373(r)1(u\\253)1(,)-372(a)-372(du)1(s)-1(ze)-373(jak)28(o)-372(ten)-372(d)1(z)-1(i)1(e)-1(\\253)-372(wio\\261ni)1(an)28(y)83(,)-372(r)1(oz)-1(s\\252onec)-1(zni)1(on)28(y)83(,)-372(j)1(ak)28(o)]TJ 0 -13.549 Td[(te)-367(zb)-28(o\\273a)-367(w)-366(s)-1(\\252up)-366(id)1(\\241c)-1(e,)-366(p)-28(e\\252ne)-367(sk)28(o)28(w)-1(r)1(onk)28(o)28(wyc)27(h)-366(\\261w)-1(i)1(e)-1(rgot)1(\\363)27(w,)-366(blask)28(\\363)28(w,)-367(p)-27(os)-1(zum\\363)28(w,)]TJ 0 -13.549 Td[(l\\261ni\\241cej)-333(z)-1(ieleni)-333(i)-333(ni)1(e)-1(zm)-1(o\\273onej)-333(rad)1(o\\261)-1(ci)-333(istnienia.)1(..)]TJ 27.879 -13.549 Td[(T)83(o)-378(m)-1(il)1(kli)-378(z)-379(nag\\252a)-378(i)-379(p)1(rzys)-1(t)1(a)27(w)28(ali)-378(z)-1(ap)1(ada)-55(j\\241c)-379(w)-379(ciem)-1(n)1(o\\261)-1(ciac)27(h)-378(j)1(akiego\\261)-379(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(pad)1(ani)1(a,)-423(jak)-422(kiedy)-422(c)27(hm)28(ur)1(a)-423(przys\\252oni)-423(s\\252o\\253ce)-423(i)-423(\\261w)-1(i)1(at)-423(\\261)-1(cic)27(h)1(ni)1(e)-1(,)-423(omro)-27(c)-1(zy)-423(si\\246)-423(i)-423(w)]TJ 0 -13.549 Td[(\\273a\\252)-1(o\\261ci)-334(a)-333(l\\246ku)-333(p)1(rz)-1(epad)1(a)-333(na)-333(m)-1(gn)1(ienie...)]TJ 27.879 -13.549 Td[(Ale)-228(wn)1(e)-1(t)-227(p)-28(o)-27(dn)1(os)-1(il)1(i)-228(si\\246)-228(z)-228(on)1(iem)-1(ie\\253,)-227(rad)1(o\\261)-1(\\242)-227(buc)28(ha\\252a)-227(w)-228(ni)1(c)27(h)-227(p)-27(o\\273)-1(ar)1(e)-1(m,)-227(w)27(es)-1(eln)28(y)]TJ -27.879 -13.549 Td[(ton)-360(r)1(oz)-1(b)1(rz)-1(miew)27(a\\252)-360(w)-360(duszac)27(h,)-360(u)1(s)-1(kr)1(z)-1(y)1(dla\\252)-360(mo)-28(c)-1(\\241)-360(taki)1(e)-1(go)-360(s)-1(zcz)-1(\\246\\261)-1(cia)-360(i)-360(tak.)-360(rw)28(a\\252)-361(d)1(o)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(iebnego)-343(lotu,)-343(\\273e)-344(n)1(i)-343(w)-1(i)1(e)-1(d)1(z)-1(\\241c)-344(wyb)1(uc)28(hali)-343(n)1(am)-1(i\\246tn)28(y)1(m)-1(,)-343(n)1(ie)-1(p)1(rzytomn)28(ym)-343(z)-1(g\\252o\\252a)]TJ 0 -13.55 Td[(\\261piew)27(em...)]TJ 27.879 -13.549 Td[(Ko\\252ysali)-228(s)-1(i)1(\\246)-229(w)-229(tak)1(t)-229(g\\252os\\363)27(w,)-228(co)-229(zda\\252y)-228(s)-1(i)1(\\246)-229(bi)1(\\242)-229(t\\246)-1(cz)-1(o)28(wymi)-228(s)-1(kr)1(z)-1(y)1(d\\252ami)-229(i)-228(gwiez)-1(d)1(-)]TJ -27.879 -13.549 Td[(n)28(ym,)-450(rozpalon)29(ym)-451(wytry)1(s)-1(ki)1(e)-1(m)-451(d)1(\\271)-1(wi\\246k)28(\\363)28(w)-451(rozs)-1(yp)29(yw)27(a\\252y)-450(si\\246)-451(w)-451(n)1(o)-28(c)-451(z)-1(mart)28(wia\\252\\241)-450(i)]TJ 0 -13.549 Td[(pu)1(s)-1(t)1(\\241.)]TJ 27.879 -13.549 Td[(Nie)-336(w)-1(i)1(e)-1(d)1(z)-1(ieli)-336(ju)1(\\273)-337(n)1(ic)-1(,)-336(sz)-1(l)1(i)-336(przyw)28(arci)-336(do)-336(s)-1(i)1(\\246)-337(a)-336(b)-28(ez)-1(w)28(oln)1(i,)-336(z)-1(gu)1(bieni)-336(w)-336(s)-1(ob)1(ie)-337(a)]TJ -27.879 -13.55 Td[(ni)1(e)-1(p)1(am)-1(i)1(\\246)-1(tli)1(w)-1(i)1(,)-325(pi)1(jani)-324(jeno)-325(t\\241)-325(n)1(adl)1(udzk)56(\\241)-325(mo)-28(c)-1(\\241)-325(cz)-1(u)1(c)-1(i)1(a,)-325(co)-325(ic)27(h)-324(nies)-1(\\252a)-325(w)-325(n)1(ad\\261wiat)28(y)]TJ 0 -13.549 Td[(i)-333(rw)28(a\\252a)-334(si\\246)-334(p)1(ie)-1(\\261ni)1(\\241)-334(b)-27(ez)-1(\\252adn)1(\\241,)-333(s)-1(p)1(l\\241tan)1(\\241,)-334(b)-27(ez)-334(s)-1(\\252\\363)28(w)-334(p)1(ra)28(wie.)]TJ 27.879 -13.549 Td[(...)1(Pie\\261)-1(\\253)-356(dzik)56(a)-357(i)-357(wz)-1(b)1(ur)1(z)-1(on)1(a)-357(p\\252yn)1(\\246)-1(\\252a)-357(rwi\\241cym)-357(p)-28(ot)1(okiem)-358(z)-357(s)-1(erc)-357(w)27(ez)-1(b)1(ran)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(i)-333(bi)1(\\252)-1(a)-333(w)28(e)-334(\\261)-1(wiat)-333(ws)-1(zyste)-1(k)-333(zwyc)-1(i)1(\\246)-1(skim)-333(krzykiem)-334(mi\\252o\\261)-1(ci..)1(.)]TJ 27.879 -13.549 Td[(...)1(I)-334(j)1(ak)28(o)-334(k)1(rz)-1(ew)-334(ogr)1(nist)28(y)-333(p\\252on\\246\\252a)-333(w)-334(c)27(h)1(aos)-1(i)1(e)-334(m)-1(r)1(ok)28(\\363)27(w)-333(i)-333(no)-28(cnego)-333(m)-1(\\246tu.)1(..)]TJ 0 -13.55 Td[(...)1(T)83(o)-391(b)28(y\\252a)-391(c)27(h)28(wilami)-391(j)1(akb)28(y)-391(ci\\246)-1(\\273kim,)-391(dr)1(uzgo)-28(c\\241c)-1(ym)-391(w)27(ar)1(k)28(ote)-1(r)1(n)-391(w)27(\\363)-27(d,)-391(zryw)28(a-)]TJ -27.879 -13.549 Td[(j\\241cyc)28(h)-333(lo)-28(d)1(o)27(w)28(e)-334(ok)28(o)28(wy)83(..)1(.)]TJ 27.879 -13.549 Td[(...)1(Le)-1(d)1(w)-1(i)1(e)-316(dos\\252ys)-1(zaln)28(y)1(m)-1(,)-315(b)1(rz\\246)-1(kl)1(iwym)-316(a)-315(s)-1(\\252o)-28(d)1(kim)-315(p)-28(osz)-1(u)1(m)-1(em)-316(d)1(z)-1(w)28(oni)1(\\252)-1(a,)-315(n)1(ib)28(y)]TJ -27.879 -13.549 Td[(fal)1(a)-334(zb)-27(\\363\\273)-334(k)28(o\\252ys)-1(z\\241c)-1(y)1(c)27(h)-333(si\\246)-334(w)-333(s)-1(\\252o\\253cu.)1(..)]TJ 27.879 -13.549 Td[(...)1(P)28(\\246)-1(k)56(a\\252y)-340(z)-1(\\252ote)-341(\\252a\\253cuc)28(h)28(y)-340(brze)-1(mie\\253,)-340(rozs)-1(y)1(p)28(yw)28(a\\252)-1(y)-340(si\\246)-341(na)-340(w)-1(i)1(atr)-341(i)-340(ord)1(z)-1(a)28(wia\\252e)]TJ -27.879 -13.55 Td[(wlek\\252y)-423(si\\246)-423(ci\\246\\273)-1(k)28(o)-422(p)-27(o)-423(zagonac)27(h)1(,)-422(\\273)-1(e)-423(b)29(y\\252y)-422(jeno)-422(krzyk)56(am)-1(i)-422(n)1(o)-28(c)-1(y)84(,)-422(c)-1(zas)-1(em)-423(sz)-1(l)1(o)-28(c)27(h)1(e)-1(m)]TJ 0 -13.549 Td[(b)-27(e)-1(zs)-1(i)1(ln)28(ym,)-333(w)27(o\\252an)1(ie)-1(m)-333(s)-1(iero)-27(c)-1(ym,)-333(g\\252os)-1(em)-334(zagub)28(y)-333(i)-333(l\\246ku)1(...)]TJ 27.879 -13.549 Td[(...)1(I)-334(w)-333(grob)-27(o)27(w)28(ej)-333(c)-1(ic)28(ho\\261c)-1(i)-333(u)1(m)-1(iera\\252y)84(.)]TJ 0 -13.549 Td[(Ale)-360(p)-28(o)-360(c)27(h)28(wil)1(i)-360(jak)-360(pt)1(aki)-360(w)-1(y)1(s)-1(tr)1(as)-1(zone)-360(z)-1(ry)1(w)27(a\\252y)-360(si\\246)-361(ku)1(r)-360(s)-1(\\252o\\253)1(c)-1(u)-360(sza)-1(l)1(on)28(ym)-360(lo-)]TJ -27.879 -13.549 Td[(tem)-1(,)-455(s)-1(erca)-456(nab)1(rzm)-1(i)1(e)-1(w)28(a\\252y)-456(tak)56(\\241)-456(p)-27(ot\\246g\\241)-456(wz)-1(lotu)-455(i)-455(z)-1(agu)1(bieni)1(a)-456(s)-1(i)1(\\246)-457(w)28(e)-456(ws)-1(zys)-1(t)1(kim,)]TJ 0 -13.549 Td[(\\273e)-312(wyb)1(uc)28(hali)-310(o\\261)-1(l)1(e)-1(p)1(ia)-56(j)1(\\241c)-1(y)1(m)-311(h)28(ymnem)-311(un)1(ie)-1(sienia,)-310(mo)-28(dli)1(te)-1(wn\\241)-310(pi)1(e)-1(\\261ni\\241)-310(z)-1(iemi)-311(ca\\252e)-1(j)1(,)]TJ 0 -13.55 Td[(ni)1(e)-1(\\261m)-1(i)1(e)-1(r)1(te)-1(ln)29(ym)-334(kr)1(z)-1(yk)1(ie)-1(m)-333(istnieni)1(a.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[({)-278(Jagu)1(\\261)-1(!)-278({)-278(sze)-1(p)1(n\\241\\252)-278(zdumion)28(y)-277(m)-279(g\\252ose)-1(m,)-278(j)1(akb)28(y)-277(s)-1(p)-27(os)-1(tr)1(z)-1(ega)-56(j)1(\\241c)-279(j)1(\\241)-278(pr)1(z)-1(y)-278(sobi)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(to)-333(ja!)-333({)-333(o)-28(d)1(par\\252a)-333(jak)28(o\\261)-333(\\252)-1(za)28(w)27(o)-333(i)-333(c)-1(i)1(c)27(ho.)]TJ 0 -13.549 Td[(Znal)1(e)-1(\\271li)-333(si\\246)-333(na)-333(d)1(r\\363\\273c)-1(e,)-333(b)1(iegn\\241ce)-1(j)-332(wz)-1(d\\252u)1(\\273)-333(w)-1(si)-333(za)-333(sto)-28(do\\252ami,)-332(ale)-333(ju\\273)-333(p)-27(o)-333(Bo-)]TJ -27.879 -13.55 Td[(ry)1(no)28(w)27(ej)-333(stroni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Naraz)-333(Jagna)-333(z)-1(acz)-1(\\246\\252a)-334(p)1(\\252ak)56(a\\242)-1(.)]TJ\nET\nendstream\nendobj\n1002 0 obj <<\n/Type /Page\n/Contents 1003 0 R\n/Resources 1001 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n1001 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1006 0 obj <<\n/Length 9232      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(312)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(23.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Co)-334(ci)-333(to?)]TJ 0 -13.549 Td[(Ab)-27(o)-334(to)-333(wiem)-1(?..)1(.)-334(a)-333(tak)-333(mi\\246)-334(cos)-1(ik)-333(spar)1(\\252o,)-334(\\273e)-334(si\\246)-334(sam)-1(e)-333(\\252)-1(zy)-333(lej\\241.)]TJ 0 -13.549 Td[(Zafr)1(as)-1(o)28(w)28(a\\252)-447(si\\246)-447(wielce)-1(,)-446(p)1(rzys)-1(i)1(e)-1(d)1(li)-446(p)-27(o)-28(d)-446(jak)56(\\241\\261)-446(s)-1(to)-28(d)1(o\\252\\241)-446(na)-446(wys)-1(ta)-55(j\\241cyc)27(h)-445(w)27(\\246-)]TJ -27.879 -13.549 Td[(g\\252ac)27(h)1(,)-312(pr)1(z)-1(y)1(garn\\241\\252)-312(j)1(\\241)-312(mo)-28(c)-1(n)1(o)-312(i)-312(oto)-27(c)-1(zy\\252)-312(ramion)1(am)-1(i)1(,)-312(\\273)-1(e)-312(ki)1(e)-1(b)28(y)-311(dziec)-1(i\\241tk)28(o)-311(przyw)28(ar\\252a)]TJ 0 -13.549 Td[(m)27(u)-319(d)1(o)-320(piersi,)-319(z)-1(ap)1(atrzy\\252a)-320(s)-1(i)1(\\246)-320(gdz)-1(i)1(e)-1(sik)-319(w)-320(s)-1(iebi)1(e)-1(,)-319(a)-320(\\252z)-1(y)-319(s)-1(k)56(ap)28(yw)28(a\\252y)-320(j)1(e)-1(j)-319(z)-320(o)-28(cz)-1(u)-319(jak)-319(ta)]TJ 0 -13.55 Td[(rosa)-333(z)-334(kwiat\\363)28(w;)-333(ob)-28(cie)-1(r)1(a\\252)-334(j)1(e)-334(d\\252on)1(i\\241,)-333(to)-333(r\\246k)55(a)28(w)28(e)-1(m,)-333(ale)-334(w)28(c)-1(i\\241\\273)-333(p\\252yn)1(\\246)-1(\\252y)]TJ 27.879 -13.549 Td[(Bois)-1(z)-333(s)-1(i\\246?...)]TJ 0 -13.549 Td[(Za\\261)-1(b)29(y)-427(cz)-1(ego!)-427(jeno)-427(t)1(ak)55(a)-427(cic)27(h)1(o\\261)-1(\\242)-427(w)28(e)-428(mni)1(e)-428(r)1(o)-1(\\261ni)1(e)-1(,)-426(kieb)28(y)-427(\\261m)-1(ier\\242)-427(pr)1(z)-1(y)-426(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(sto)-56(j)1(a\\252)-1(a,)-322(a)-324(tak)-322(m)-1(n)1(ie)-324(cos)-1(i)1(k)-323(p)-28(o)-27(dry)1(w)27(a,)-323(tak)-323(p)-27(onosi,)-323(\\273e)-324(tego)-323(nieba)-323(b)28(y)1(m)-324(si\\246)-324(u)29(w)-1(i)1(e)-1(si\\252a)-323(i)]TJ 0 -13.549 Td[(z)-334(t)28(ymi)-333(c)27(h)1(m)27(u)1(rami)-334(p)-27(oni)1(e)-1(s\\252a)-334(w)28(e)-334(\\261w)-1(i)1(at.)]TJ 27.879 -13.549 Td[(Nie)-274(o)-28(d)1(rze)-1(k\\252,)-273(z)-1(amil)1(kli)-273(ob)-28(o)-55(je;)-274(p)1(rzym)-1(r)1(o)-28(cz)-1(a\\252o)-274(w)-274(n)1(ic)27(h)-273(n)1(agle)-1(,)-273(jak)1(i\\261)-274(c)-1(i)1(e)-1(\\253)-273(pad)1(\\252)-274(na)]TJ -27.879 -13.55 Td[(du)1(s)-1(ze)-356(i)-355(z)-1(m\\241ci\\252)-356(j)1(as)-1(n)1(e)-356(toni)1(e)-1(,)-355(i)-355(prze)-1(n)1(ikn)1(\\241)-356(d)1(z)-1(i)1(w)-1(n)1(ie)-356(b)-27(ole)-1(sn\\241)-355(t\\246s)-1(kl)1(iw)27(o\\261c)-1(i)1(\\241,)-356(\\273e)-356(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(bar)1(z)-1(ej)-329(rw)28(ali)-329(s)-1(i\\246)-330(d)1(o)-330(siebie,)-330(b)1(arze)-1(j)-329(sz)-1(u)1(k)55(al)1(i)-330(w)-329(s)-1(ob)1(ie)-330(os)-1(toi)-329(j)1(akiej\\261,)-330(b)1(arze)-1(j)-329(pr)1(z)-1(epi)1(e)-1(ral)1(i)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(si\\246)-334(w)-333(jaki\\261)-333(upr)1(agnion)29(y)-333(\\261)-1(wiat..)1(.)]TJ 27.879 -13.549 Td[(Wiat)1(r)-265(za)28(wia\\252,)-264(drze)-1(w)28(a)-264(z)-1(ak)28(o\\252ysa\\252y)-265(si\\246)-265(tr)1(w)27(o\\273ni)1(e)-1(,)-264(os)-1(y)1(pu)1(j\\241ce)-265(ic)27(h)-264(mokr)1(ym)-265(\\261nie-)]TJ -27.879 -13.549 Td[(giem)-1(;)-424(c)27(h)1(m)27(ur)1(y)-425(sk\\252\\246)-1(b)1(ione,)-425(ci\\246\\273)-1(ki)1(e)-426(zac)-1(z\\246)-1(\\252y)-424(s)-1(i\\246)-425(nagl)1(e)-426(r)1(oz)-1(p)1(ada\\242)-425(i)-425(uciek)55(a\\242)-425(w)-425(r\\363\\273ne)]TJ 0 -13.55 Td[(stron)28(y)84(,)-333(a)-334(cic)27(h)29(y)83(,)-333(roze)-1(d)1(rgan)28(y)-333(j)1(\\246)-1(k)-333(p)-27(o)28(w)-1(i)1(a\\252)-334(p)-27(o)-333(\\261)-1(n)1(ie)-1(gac)28(h.)]TJ 27.879 -13.549 Td[({)-333(T)83(rza)-334(b)1(ie\\273)-1(y\\242)-333(do)-333(dom,)-333(p)-28(\\363\\271no)-333(ju)1(\\273)-334({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(u)1(nosz)-1(\\241c)-333(s)-1(i\\246)-334(n)1(iec)-1(o.)]TJ 0 -13.549 Td[({)-377(Ni)1(e)-377(b)-28(\\363)-55(j)-376(s)-1(i\\246,)-376(jes)-1(zc)-1(ze)-377(s)-1(p)1(a\\242)-377(ni)1(e)-377(\\261)-1(p)1(i\\241,)-376(s)-1(\\252yc)27(h)1(a\\242)-377(g\\252os)-1(y)-376(na)-376(dr)1(o)-28(dze)-1(,)-376(p)-27(e)-1(wn)1(ikiem)]TJ -27.879 -13.549 Td[(rozc)27(h)1(o)-28(dz\\241)-333(s)-1(i\\246)-333(o)-28(d)-333(K\\252\\246)-1(b)-27(\\363)28(w.)]TJ 27.879 -13.549 Td[(Ce)-1(b)1(ratki)-333(zos)-1(t)1(a)27(wi\\252am)-334(p)1(rzy)-333(do)-55(jeniu)1(,)-333(jes)-1(zc)-1(ze)-334(se)-334(kul)1(as)-1(y)-333(kr)1(o)27(wy)-333(p)-27(o\\252am)-1(i\\241.)]TJ 0 -13.55 Td[(Ucic)27(h)1(li,)-420(b)-28(o)-420(jaki)1(e)-1(\\261)-421(g\\252osy)-421(r)1(oz)-1(l)1(e)-1(g\\252y)-420(s)-1(i\\246)-421(b)1(li\\273e)-1(j)-420(i)-420(pr)1(z)-1(es)-1(z\\252y;)-420(ale)-421(gd)1(z)-1(ie\\261)-421(z)-421(b)-27(oku,)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-323(na)-324(t)1(e)-1(j)-323(sam)-1(ej)-323(dr\\363\\273ce)-1(,)-323(z)-1(askrzyp)1(ia\\252)-324(\\261nieg)-324(i)-323(j)1(aki\\261)-324(cie)-1(\\253)-323(wysoki)-323(z)-1(ama)-56(j)1(ac)-1(zy\\252)-323(tak)]TJ 0 -13.549 Td[(wyra\\271ni)1(e)-1(,)-333(\\273e)-334(z)-1(erw)28(ali)-333(s)-1(i)1(\\246)-334(na)-333(r\\363)28(wne)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[(Ktosik)-333(tam)-334(j)1(e)-1(st..)1(.)-334(p)1(rzyc)-1(zai\\252)-333(s)-1(i)1(\\246)-334(jeno)-333(p)-27(o)-28(d)-333(p\\252otem.)]TJ 0 -13.549 Td[(Uwidzia\\252o)-333(c)-1(i)-333(si\\246...)-333(c)-1(zas)-1(em)-334(za)-333(c)27(hm)28(ur)1(\\241)-334(tak)1(ie)-334(cie)-1(n)1(ie)-334(id)1(\\241.)]TJ 0 -13.55 Td[(D\\252ugo)-333(n)1(as)-1(\\252uc)28(hiw)28(ali)-333(rozpatr)1(uj)1(\\241c)-334(c)-1(i)1(e)-1(mno\\261c)-1(i)1(.)]TJ 0 -13.549 Td[(Cho)-28(d)1(\\271)-1(m)28(y)-333(do)-333(br)1(oga,)-333(tam)-334(b)-27(\\246)-1(d)1(z)-1(ie)-333(c)-1(isz)-1(ej!)-333({)-333(sz)-1(epn)1(\\241\\252)-334(gor\\241co.)]TJ 0 -13.549 Td[(Ogl\\241d)1(ali)-320(si\\246)-320(trw)28(o\\273)-1(n)1(ie)-320(c)-1(o)-320(c)28(h)28(wila,)-320(p)1(rzysta)-56(j\\241c)-320(z)-320(z)-1(ap)1(art)28(ym)-320(tc)27(h)1(e)-1(m)-320(i)-320(n)1(as)-1(\\252u)1(c)27(h)28(u)1(-)]TJ -27.879 -13.549 Td[(j\\241c,)-317(ale)-318(cic)27(h)1(o)-318(b)28(y\\252o)-317(naok)28(\\363\\252)-317(i)-318(mart)28(w)28(o;)-318(p)-27(o)-28(d)1(e)-1(sz)-1(l)1(i)-318(wi\\246c)-318(c)27(h)28(y)1(\\252kiem)-1(,)-317(os)-1(t)1(ro\\273)-1(n)1(ie)-318(d)1(o)-318(b)1(roga)]TJ 0 -13.549 Td[(i)-333(ws)-1(u)1(n\\246li)-333(s)-1(i)1(\\246)-334(w)-334(g\\252\\246b)-28(oki)-333(ot)28(w)28(\\363r,)-333(cz)-1(erni)1(e)-1(j)1(\\241c)-1(y)-333(tu)1(\\273)-334(nad)-333(ziem)-1(i)1(\\241.)]TJ 27.879 -13.55 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(P)28(o)-28(ciem)-1(n)1(ia\\252o)-372(z)-1(n)1(o)28(w)-1(u)-371(na)-372(\\261w)-1(i)1(e)-1(cie)-1(,)-371(c)27(hm)28(ur)1(y)-372(s)-1(i\\246)-372(z)-1(a)28(w)28(ar\\252y)-372(w)-372(g\\241s)-1(zc)-1(z)-372(niepr)1(z)-1(eni)1(k-)]TJ -27.879 -13.549 Td[(ni)1(on\\241,)-483(blad)1(e)-484(\\261)-1(wiat)1(\\252)-1(o\\261ci)-484(p)-27(ogas)-1(\\252y)84(,)-483(no)-28(c)-484(j)1(akb)28(y)-483(pr)1(z)-1(ymkn)1(\\246)-1(\\252a)-483(p)-28(o)28(wieki)-483(i)-484(zapad)1(\\252a)-484(w)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)-27(oki)-304(se)-1(n)1(,)-304(wiatr)-304(p)1(rz)-1(emkn\\241\\252)-304(b)-27(e)-1(z)-304(\\261)-1(lad)1(u,)-304(cisz)-1(a)-304(wion\\246\\252a)-304(jes)-1(zc)-1(ze)-305(g\\252\\246bsz)-1(a)-304(i)-304(bar)1(dzie)-1(j)]TJ 0 -13.549 Td[(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(\\241c)-1(a,)-333(\\273)-1(e)-334(s\\252)-1(y)1(c)27(ha\\242)-334(b)28(y)1(\\252o)-334(dygot)1(anie)-334(dr)1(z)-1(ew)-334(ob)28(wis\\252)-1(y)1(c)27(h)-333(p)-28(o)-27(d)-334(\\261niegiem)-334(i)-334(dal)1(e)-1(ki)1(,)]TJ 0 -13.549 Td[(dal)1(e)-1(ki)-333(b)-27(e)-1(\\252k)28(ot)-334(w)28(o)-28(d)1(y)-334(spad)1(a)-56(j\\241cej)-334(n)1(a)-334(k)28(o\\252a)-334(m\\252y\\253skie,)-334(a)-333(p)-28(o)-333(d\\252ugi)1(e)-1(j)-333(c)27(h)28(wil)1(i)-334(\\261nieg)-334(zno-)]TJ 0 -13.55 Td[(wu)-315(z)-1(askr)1(z)-1(yp)1(ia\\252)-315(na)-315(dr\\363\\273ce)-1(:)-315(dob)1(rze)-316(ju)1(\\273)-316(s\\252yc)27(h)1(a\\242)-316(b)28(y\\252o)-315(c)-1(i)1(c)27(he,)-315(os)-1(tr)1(o\\273)-1(n)1(e)-1(,)-315(j)1(akb)28(y)-315(wilcz)-1(e)]TJ 0 -13.549 Td[(kr)1(oki...)-317(C)-1(i)1(e)-1(\\253)-317(jaki)1(\\261)-319(o)-28(d)1(e)-1(r)1(w)27(a\\252)-318(si\\246)-319(o)-27(d)-318(\\261c)-1(ian)-317(i)-318(p)1(rzygarbi)1(on)28(y)-318(p)-27(os)-1(u)29(w)27(a\\252)-318(si\\246)-319(p)-27(o)-318(\\261niegac)27(h)1(,)]TJ 0 -13.549 Td[(b)28(y\\252)-334(c)-1(or)1(az)-335(bli)1(\\273)-1(ej,)-334(wyrasta\\252,)-335(zatrzym)28(yw)27(a\\252)-334(s)-1(i)1(\\246)-335(c)-1(o)-334(m)-1(gn)1(ienie)-335(i)-334(z)-1(n)1(o)28(w)-1(u)-334(sze)-1(d)1(\\252)-1(.)1(..)-334(s)-1(kr)1(\\246)-1(ci\\252)]TJ 0 -13.549 Td[(za)-334(b)1(r\\363g)-333(o)-28(d)-333(p)-27(ola,)-333(przycz)-1(o\\252ga\\252)-333(s)-1(i)1(\\246)-334(pr)1(a)27(wie)-333(p)-28(o)-28(d)-332(ot)27(w)28(\\363r)-333(i)-333(nas\\252uc)27(h)1(iw)28(a\\252)-334(d)1(\\252ugo...)]TJ 27.879 -13.549 Td[(P)28(otem)-334(p)1(rze)-1(sun)1(\\241\\252)-334(si\\246)-334(do)-333(p)1(rz)-1(e\\252az)-1(u)-332(i)-334(zni)1(kn\\241\\252)-333(p)-27(o)-28(d)-333(dr)1(z)-1(ew)27(ami..)1(.)]TJ 0 -13.55 Td[(Nie)-359(wysz)-1(\\252o)-359(i)-358(Zdro)28(w)28(a\\261)-1(,)-358(kiej)-359(si\\246)-359(zno)28(wu)-359(p)-27(ok)56(az)-1(a\\252)-359(wlek)56(\\241c)-360(za)-359(sob\\241)-359(wielgac)28(hn\\241)]TJ -27.879 -13.549 Td[(wi\\241zk)28(\\246)-380(s\\252)-1(om)28(y)83(,)-378(przystan\\241\\252)-379(na)-379(mgn)1(ie)-1(n)1(ie)-1(,)-378(p)-28(os\\252uc)28(ha\\252)-379(i)-379(s)-1(k)28(o)-27(c)-1(zy\\252)-379(do)-379(b)1(rogu,)-378(przytk)56(a\\252)]TJ\nET\nendstream\nendobj\n1005 0 obj <<\n/Type /Page\n/Contents 1006 0 R\n/Resources 1004 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 991 0 R\n>> endobj\n1004 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1009 0 obj <<\n/Length 4367      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(313)]TJ -358.232 -35.866 Td[(wi\\241zk)55(\\241)-279(d)1(z)-1(iu)1(r\\246...)-279(tr)1(z)-1(asn\\246\\252)-1(a)-279(zapa\\252k)56(a)-279(i)-279(ogie\\253)-279(w)-280(mig)-279(rozb\\252ysn\\241\\252)-279(p)-27(o)-279(s)-1(\\252omie)-1(,)-279(zatrzepa\\252)]TJ 0 -13.549 Td[(si\\246)-1(,)-402(t)28(ysi\\241ce)-1(m)-403(j)1(\\246)-1(zor\\363)28(w)-403(b)1(\\252ys)-1(n)1(\\241\\252)-403(i)-402(p)-27(o)-403(c)28(h)28(wili)-402(bu)1(c)27(h)1(n\\241\\252)-402(krw)28(a)27(w)28(\\241)-402(p\\252ac)27(h)28(t)1(\\241,)-403(ogar)1(nia)-55(j\\241c)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-333(\\261c)-1(ian)1(\\246)-334(br)1(ogu..)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-334(za\\261)-334(p)1(rz)-1(y)1(gi\\246)-1(t)28(y)84(,)-333(s)-1(tr)1(as)-1(zn)28(y)-333(kiej)-333(tru)1(p,)-333(cz)-1(ato)28(w)28(a\\252)-334(z)-334(wid)1(\\252am)-1(i)-333(w)-333(r\\246ku.)]TJ 0 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.55 Td[(On)1(i)-262(za\\261)-263(wn)1(e)-1(t)-261(p)-28(omiark)28(o)28(w)28(ali,)-261(c)-1(o)-262(si\\246)-262(dzieje:)-262(kr)1(w)27(a)28(w)28(e)-263(b)1(\\252ys)-1(k)1(i)-262(j\\246\\252y)-262(si\\246)-262(pr)1(z)-1(ec)-1(i)1(s)-1(k)56(a\\242)]TJ -27.879 -13.549 Td[(do)-448(\\261)-1(r)1(o)-28(dk)56(a)-449(i)-448(dy)1(m)-449(gryz\\241c)-1(y)-448(z)-1(ap)-27(e\\252nia\\252)-449(j)1(am\\246)-1(,)-448(p)-28(or)1(w)27(ali)-448(si\\246)-449(z)-449(krzykiem,)-449(b)1(ij\\241c)-449(si\\246)-449(o)]TJ 0 -13.549 Td[(\\261c)-1(ian)29(y)83(,)-338(nie)-339(wiedz\\241c)-339(wyj\\261c)-1(i)1(a,)-339(osz)-1(al)1(e)-1(li)-338(ze)-339(s)-1(tr)1(ac)27(h)28(u)-338(i)-338(le)-1(d)1(wie)-339(c)-1(o)-338(dyc)28(ha)-55(j\\241cy)83(,)-338(a\\273)-339(An)28(tek)]TJ 0 -13.549 Td[(cudem)-327(jak)1(im)-1(\\261)-327(n)1(atra\\014)1(\\252)-327(na)-327(p)1(rzys\\252)-1(on)1(\\246)-1(,)-326(wpar\\252)-326(s)-1(i\\246)-327(ca\\252\\241)-327(mo)-28(c)-1(\\241)-326(i)-327(r)1(az)-1(em)-327(z)-328(n)1(i\\241)-327(p)1(ad\\252)-327(n)1(a)]TJ 0 -13.549 Td[(zie)-1(mi\\246,)-380(ale)-381(n)1(im)-381(si\\246)-381(p)-27(orw)28(a\\252,)-380(s)-1(tar)1(y)-380(run)1(\\241\\252)-381(n)1(a)-380(niego)-380(i)-380(prze)-1(b)-27(\\363)-28(d)1(\\252)-381(wid)1(\\252am)-1(i)-380(d)1(o)-381(ziem)-1(i)1(,)]TJ 0 -13.549 Td[(ni)1(e)-284(tr)1(a\\014\\252)-283(dob)1(rze)-1(,)-283(b)-27(o)-283(An)28(tek)-283(si\\246)-284(ze)-1(r)1(w)27(a\\252)-283(i)-283(n)1(im)-283(s)-1(tar)1(y)-283(p)-28(on)1(o)28(w)-1(i)1(\\252)-1(,)-282(trzas)-1(n)1(\\241\\252)-284(go)-283(p)1(i\\246\\261)-1(ciami)]TJ 0 -13.55 Td[(w)-334(p)1(iersi)-334(i)-333(p)-27(ogna\\252)-333(w)-334(ca\\252y)-333(\\261)-1(wiat.)]TJ 27.879 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252)-269(si\\246)-269(wtedy)-268(s)-1(tar)1(y)-268(do)-268(brogu)1(,)-268(ale)-269(j)1(u\\273)-269(i)-268(Jagn)28(y)-268(n)1(ie)-269(b)28(y\\252o,)-268(j)1(e)-1(n)1(o)-269(m)28(u)-268(m)-1(i)1(gn\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-333(pr)1(z)-1(epad)1(\\252)-1(a)-333(w)-333(no)-28(cy)83(,)-333(wi\\246c)-334(j\\241\\252)-333(ry)1(c)-1(ze)-1(\\242)-334(oszala\\252ym)-1(,)-333(n)1(ieprzytomn)28(ym)-333(z)-1(go\\252a)-333(g\\252os)-1(em)-1(:)]TJ 27.879 -13.549 Td[({)-395(G)1(ore)-1(!)-394(gore!)-395({)-394(i)-395(b)1(iega\\252)-395(z)-395(w)-1(i)1(d\\252ami)-395(d)1(o)-28(ok)28(o\\252a)-395(br)1(ogu)-394(\\273)-1(e)-395(kiej)-394(z)-1(\\252y)-394(w)-1(i)1(dzia\\252)-395(si\\246)]TJ -27.879 -13.549 Td[(w)-438(krw)28(a)27(wym)-438(br)1(z)-1(asku,)-437(b)-28(o)-438(ogie\\253)-438(ob)-55(j\\241\\252)-438(ju)1(\\273)-439(ca\\252y)-438(br)1(\\363g)-439(i)-438(z)-438(s)-1(zumem)-439(miota)-56(j)1(\\241c)-439(si\\246,)]TJ 0 -13.55 Td[(syc)-1(z\\241c)-1(,)-333(b)1(i\\252)-334(w)-333(g\\363r\\246)-334(ok)1(ropn)29(ym)-334(s\\252up)-27(e)-1(m)-333(p\\252omie)-1(n)1(i)-333(i)-333(dym\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-358(z)-1(acz)-1(\\246li)-357(nad)1(bi)1(e)-1(ga\\242,)-358(k)1(rzyki)-357(p)-27(os)-1(z\\252)-1(y)-357(p)-27(o)-357(w)-1(si,)-357(ktosik)-357(ud)1(e)-1(r)1(z)-1(y\\252)-357(w)-358(d)1(z)-1(w)28(on,)]TJ -27.879 -13.549 Td[(trw)28(oga)-304(zas)-1(zarp)1(a\\252a)-304(se)-1(rca,)-303(a)-304(\\252un)1(a)-304(ros\\252a)-304(i)-303(p)-27(o\\273)-1(ar)-303(ognist\\241)-304(p)1(\\252ac)27(h)28(t\\241)-303(p)-28(o)28(wiew)27(a\\252)-303(na)-304(wsz)-1(e)]TJ 0 -13.549 Td[(stron)28(y)84(,)-333(i)-333(prysk)56(a\\252)-334(d)1(e)-1(sz)-1(cze)-1(m)-334(i)1(s)-1(ki)1(e)-1(r)-333(n)1(a)-334(zabu)1(do)28(w)27(an)1(ia,)-333(na)-333(wie\\261)-334(c)-1(a\\252\\241.)]TJ\nET\nendstream\nendobj\n1008 0 obj <<\n/Type /Page\n/Contents 1009 0 R\n/Resources 1007 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1007 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1013 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(314)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(23.)]TJ\nET\nendstream\nendobj\n1012 0 obj <<\n/Type /Page\n/Contents 1013 0 R\n/Resources 1011 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1011 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1016 0 obj <<\n/Length 7116      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(24)]TJ/F17 10.909 Tf 0 -73.325 Td[(Co)-479(s)-1(i\\246)-479(dzia\\252o)-479(w)-479(Lip)-28(cac)27(h)-478(p)-28(o)-479(on)1(e)-1(j)-478(no)-28(cy)-479(pami\\246tliw)28(e)-1(j)1(,)-479(to)-479(i)-479(n)1(a)-56(j)1(pierws)-1(ze)-1(m)28(u)-479(g\\252o-)]TJ 0 -13.549 Td[(w)28(ac)-1(zo)27(wi)-405(ni)1(e)-1(\\252acno)-405(b)28(y\\252ob)28(y)-405(z)-1(ap)1(ami\\246)-1(ta\\242)-405(w)-1(sz)-1(y)1(s)-1(tk)28(o)-405(a)-406(op)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242;)-406(t)1(ak)-406(si\\246)-406(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(zak)28(ot\\252o)27(w)28(a\\252o)-260(w)27(e)-260(ws)-1(i)-259(jak)28(ob)28(y)-259(w)-260(t)28(ym)-260(m)-1(r)1(o)27(wisku)1(,)-260(kiej)-260(w)-260(n)1(im)-260(jaki)-259(niecnota)-260(ki)1(jasz)-1(ki)1(e)-1(m)]TJ 0 -13.549 Td[(zagrz)-1(ebi)1(e)-1(.)]TJ 27.879 -13.55 Td[(Ledwie)-380(r)1(oz)-1(edn)1(ia\\252o)-379(c)27(h)28(yl)1(a)-380(t)28(yl)1(a)-380(i)-379(l)1(ud)1(z)-1(ie)-379(o)-28(c)-1(zy)-379(z)-380(p)-27(omroki)-379(n)1(o)-28(c)-1(n)1(e)-1(j)-378(przetarli,)-379(a)]TJ -27.879 -13.549 Td[(ju)1(\\273)-365(k)56(a\\273)-1(d)1(e)-1(m)28(u)-365(b)29(y\\252o)-365(p)1(iln)1(o)-365(na)-364(p)-27(ogorz)-1(elisk)28(o,)-364(\\273)-1(e)-365(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-364(p)1(ac)-1(ierze)-365(jes)-1(zcz)-1(e)-365(w)-365(d)1(ro)-28(d)1(z)-1(e)]TJ 0 -13.549 Td[(o)-28(d)1(m)-1(a)28(wia\\252,)-333(a)-334(p)-27(\\246dem)-334(bi)1(e)-1(\\273a\\252)-334(k)1(ie)-1(b)29(y)-334(n)1(a)-333(te)-1(n)-333(j)1(armarek.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-360(si\\246)-361(b)28(y\\252)-360(p)-28(o)-27(dni)1(\\363s)-1(\\252)-361(ci\\246\\273)-1(k)1(i)-361(i)-360(tak)-360(prze)-1(mglon)28(y)84(,)-360(\\273)-1(e)-361(c)27(h)1(o)-28(\\242)-361(j)1(u\\273)-361(p)-27(ora)-361(b)28(y)1(\\252a)-361(na)]TJ -27.879 -13.549 Td[(du)1(\\273)-1(\\241)-307(jasno\\261\\242)-1(,)-307(a)-308(mro)-27(c)-1(za\\252o)-308(j)1(e)-1(sz)-1(cz)-1(e)-308(k)1(ie)-1(b)29(y)-308(n)1(a)-308(\\261w)-1(i)1(taniu)1(,)-308(\\261ni)1(e)-1(g)-307(b)-28(o)28(wiem)-308(j\\241\\252)-307(w)27(ali)1(\\242)-308(m)-1(o-)]TJ 0 -13.549 Td[(kr)1(ym)-1(i)-303(p)1(\\252atam)-1(i)-303(i)-303(p)1(rzys\\252)-1(on)1(i\\252)-303(\\261)-1(wiat)-303(roztrz\\246s)-1(ion)1(\\241,)-303(s)-1(zkli)1(s)-1(t\\241)-303(i)-303(pr)1(z)-1(em)-1(i)1(\\246)-1(k\\252\\241)-303(p)1(\\252)-1(ac)28(h)28(t\\241,)-303(ale)]TJ 0 -13.55 Td[(ni)1(kto)-354(n)1(a)-354(plu)1(c)27(h)1(\\246)-355(n)1(ie)-354(z)-1(w)28(a\\273)-1(a\\252,)-353(s)-1(c)27(h)1(o)-28(d)1(z)-1(ili)-353(s)-1(i)1(\\246)-355(ze)-354(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-353(s)-1(tr)1(on)-354(i)-353(c)-1(a\\252ymi)-354(go)-27(dzina-)]TJ 0 -13.549 Td[(mi)-400(wysta)28(w)27(ali)-399(na)-399(p)-28(ogor)1(z)-1(elisku)-399(pr)1(z)-1(eredza)-56(j)1(\\241c)-401(z)-400(cic)28(ha)-400(o)-399(w)27(cz)-1(or)1(a)-56(j)1(s)-1(zym,)-400(a)-399(s)-1(tr)1(z)-1(yg\\241c)]TJ 0 -13.549 Td[(uszam)-1(i,)-333(b)29(yc)27(h)-333(cz)-1(ego)-334(n)1(o)28(w)27(ego)-334(d)1(os)-1(\\252y)1(s)-1(ze)-1(\\242.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-333(s)-1(i\\246)-334(te\\273)-334(c)-1(zyn)1(i\\252)-334(n)1(ie)-1(ma\\252y)83(,)-333(b)-27(o)-334(coraz)-334(wi\\246)-1(ce)-1(j)-333(n)1(adci\\241)-28(ga\\252o)-334(n)1(aro)-28(d)1(u,)-333(\\273)-1(e)-334(k)1(up)28(y)]TJ -27.879 -13.549 Td[(ju)1(\\273)-417(s)-1(ta\\252y)-416(w)-417(op)1(\\252)-1(ot)1(k)55(ac)28(h,)-416(p)-28(e\\252no)-416(b)28(y\\252o)-417(w)-416(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(u)1(,)-417(a)-416(ju)1(\\273)-417(z)-1(go\\252a)-416(c)-1(i\\273b\\241)-416(s)-1(i\\246)-417(g\\246st)27(wil)1(i)]TJ 0 -13.55 Td[(wp)-28(o)-27(dle)-333(brogu)1(,)-333(\\273)-1(e)-334(i)1(no)-333(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252o)-334(n)1(a)-333(\\261)-1(n)1(ie)-1(gac)28(h)-333(o)-28(d)-333(k)28(obi)1(e)-1(ce)-1(go)-333(pr)1(z)-1(y)28(o)-27(dzie)-1(wku)1(.)]TJ 27.879 -13.549 Td[(Br\\363g)-452(b)28(y\\252)-453(spal)1(on)28(y)-452(do)-452(c)-1(n)1(a)-453(i)-452(p)-28(or)1(oz)-1(w)28(alan)28(y)84(,)-452(\\273)-1(e)-453(j)1(e)-1(n)1(o)-453(d)1(w)27(a)-452(s)-1(\\252u)1(p)28(y)-452(s)-1(tercz)-1(a\\252y)-452(z)]TJ -27.879 -13.549 Td[(p)-27(ogorze)-1(li)1(,)-385(opalon)1(e)-386(k)1(ie)-1(j)-384(g\\252o)27(wn)1(ie)-1(,)-384(na)-385(c)27(h)1(lew)27(ac)27(h)-384(z)-1(a\\261)-385(i)-385(sz)-1(op)1(ie)-386(d)1(ac)27(h)28(y)-384(p)-28(ozryw)28(ano)-385(d)1(o)]TJ 0 -13.549 Td[(sam)27(yc)28(h)-276(zr\\246b)-28(\\363)28(w)-276(i)-276(r)1(oz)-1(r)1(z)-1(u)1(c)-1(on)1(o,)-276(\\273e)-277(ca\\252a)-276(d)1(r\\363\\273)-1(k)56(a)-276(i)-275(p)-28(ol)1(e)-277(w)28(ok)28(o\\252o,)-276(n)1(a)-276(jak)1(ie)-276(p)-28(\\363\\252)-276(sta)-55(jani)1(a,)]TJ 0 -13.549 Td[(zanies)-1(i)1(one)-333(b)28(y\\252y)-333(op)1(alon)28(y)1(m)-334(p)-27(osz)-1(yciem)-1(,)-332(p)-28(ot)1(rz)-1(ask)56(an)28(ymi)-333(\\252atami,)-332(prze)-1(p)1(alon)1(\\241)-333(s)-1(\\252om\\241)]TJ 0 -13.55 Td[(i)-333(na)-333(p)-27(\\363\\252)-334(zw)27(\\246glon)28(ym)-333(dr)1(z)-1(ew)27(em)-334(i)-333(ws)-1(ze)-1(l)1(k)55(\\241)-333(spalenizn\\241.)]TJ 27.879 -13.549 Td[(\\221n)1(ieg)-380(pad)1(a\\252)-380(b)-28(ez)-381(p)1(rze)-1(r)1(w)-1(y)-379(i)-380(z)-380(w)27(ol)1(na)-380(p)-27(okryw)28(a\\252)-380(ws)-1(zystk)28(o)-380(s)-1(zkli)1(s)-1(t\\241)-380(p)-27(o)28(w\\252)-1(ok)56(\\241,)]TJ -27.879 -13.549 Td[(ale)-349(mie)-1(j)1(s)-1(cami)-349(top)1(nia\\252)-349(o)-27(d)-349(p)1(rzyta)-56(j)1(on)28(yc)27(h)-348(\\273ar\\363)28(w.)-349(a)-349(n)1(ie)-1(k)1(ie)-1(d)1(y)-349(z)-349(p)-27(orozw)27(alan)29(yc)27(h)-348(kup)]TJ 0 -13.549 Td[(siana)-344(w)-1(y)1(tryskiw)28(a\\252y)-345(stru)1(gi)-345(cz)-1(ar)1(nego)-345(dy)1(m)27(u)-344(i)-345(b)1(uc)28(ha\\252)-345(b)1(lady)84(,)-344(trze)-1(sz)-1(cz)-1(\\241cy)-345(p)1(\\252om)-1(i)1(e)-1(\\253)1(,)]TJ 0 -13.549 Td[(ale)-289(wnet)-289(rzucali)-289(si\\246)-289(na\\253)-288(c)27(h)1(\\252opi)-288(z)-290(os\\246)-1(k)56(ami,)-289(d)1(usili)-288(trepami,)-289(b)1(ili)-288(kij)1(am)-1(i)-288(i)-289(p)1(rz)-1(y)1(w)27(alal)1(i)]TJ 0 -13.55 Td[(\\261niegiem)-1(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-278(b)28(yl)1(i)-278(rozw)-1(l)1(e)-1(kl)1(i)-278(tak)56(\\241)-278(roztla\\252\\241)-278(ku)1(p)-28(\\246,)-278(gd)1(y)-278(kt\\363ry)1(\\261)-1(,)-277(b)-28(o)-28(d)1(a)-56(j)-277(c)27(h)1(\\252)-1(op)1(ak)-278(K\\252\\246-)]TJ -27.879 -13.549 Td[(b)-27(\\363)27(w,)-333(wygarn)1(\\241\\252)-334(os\\246)-1(k)1(ie)-1(m)-333(jak)56(\\241\\261)-334(op)1(alon\\241)-333(sz)-1(mat\\246)-334(i)-333(p)-27(o)-28(dn)1(i\\363s)-1(\\252)-333(wysok)28(o.)]TJ 27.879 -13.549 Td[({)-354(Jagusina)-354(zapask)55(a!)-354({)-354(wrzas)-1(n)1(\\246)-1(\\252a)-354(ur\\241)-27(gliwie)-355(Koz\\252o)28(w)27(a,)-354(b)-27(o)-28(\\242)-355(j)1(u\\273)-355(d)1(obrze)-355(wie-)]TJ -27.879 -13.549 Td[(dzian)1(o,)-333(c)-1(o)-333(s)-1(i\\246)-333(s)-1(ta\\252o.)]TJ 27.879 -13.55 Td[({)-333(P)28(ogrze)-1(b)1(ta)-333(no,)-333(c)27(h)1(\\252)-1(op)1(aki,)-333(mo\\273)-1(e)-333(na)-55(jdzieta)-333(tam)-334(jes)-1(zcz)-1(e)-334(j)1(akie)-334(p)-27(ort)1(ki!..)1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(!)-333(wyn)1(i\\363s\\252)-334(je)-333(c)-1(a\\252e,)-333(t)27(y)1(le)-334(\\273e)-334(m\\363g\\252)-334(zgub)1(i\\242)-334(na)-333(dr)1(o)-28(dze.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(u)1(c)27(h)28(y)-333(ju)1(\\273)-334(sz)-1(u)1(k)55(a\\252y)84(,)-333(ktosik)-333(je)-334(u)1(pr)1(z)-1(edzi\\252.)]TJ 330.353 -29.888 Td[(315)]TJ\nET\nendstream\nendobj\n1015 0 obj <<\n/Type /Page\n/Contents 1016 0 R\n/Resources 1014 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1014 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1019 0 obj <<\n/Length 8179      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(316)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(y)1(c)27(h)-333(Hance)-334(o)-28(d)1(ni)1(e)-1(\\261\\242)-334({)-333(ga)-1(d)1(a\\252y)-333(w)-1(y)1(bu)1(c)27(ha)-55(j\\241c)-334(\\261mie)-1(c)28(hem)-1(.)]TJ 0 -13.549 Td[({)-392(Cic)28(hota,)-392(p)29(ys)-1(k)56(acz)-1(e,)-392(al)1(e)-1(!)-392(Na)-391(z)-1(ab)1(a)27(w)28(\\246)-392(s)-1(i\\246)-392(ze)-1(b)1(ra\\252y)-392(i)-391(z)-1(\\246b)28(y)-392(b)-27(\\246d\\241)-392(sz)-1(cze)-1(rzy\\242)-392(z)]TJ -27.879 -13.549 Td[(cudzego)-363(n)1(ie)-1(sz)-1(cz\\246)-1(\\261c)-1(ia!)-362({)-362(krzykn)1(\\241\\252)-363(r)1(oz)-1(gn)1(ie)-1(w)28(an)28(y)-362(so\\252)-1(t)28(ys.)-362({)-363(D)1(o)-363(d)1(om)27(u,)-362(b)1(ab)28(y!)-362(Cz)-1(ego)]TJ 0 -13.549 Td[(tu)-333(stoita?)-333(Ju\\273e)-1(\\261ta)-333(dosy\\242)-334(name\\252\\252)-1(y)-333(ozorami)-333({)-334(i)-333(r)1(z)-1(u)1(c)-1(i\\252)-333(s)-1(i)1(\\246)-1(,)-333(b)28(y)-333(r)1(oz)-1(gan)1(ia\\242)-1(.)]TJ 27.879 -13.549 Td[({)-264(Zas)-1(i)1(e)-265(w)28(am)-265(d)1(o)-264(nas!)-264(pi)1(ln)28(uj)1(c)-1(i)1(e)-265(sw)27(o)-55(jego,)-264(kiej\\261c)-1(i)1(e)-265(n)1(a)-264(to)-264(ustano)28(wie)-1(n)1(i!)-264({)-264(kr)1(z)-1(y)1(k-)]TJ -27.879 -13.55 Td[(n\\246\\252a)-333(Koz\\252o)28(w)27(a)-332(tak)-333(mo)-28(cno,)-332(\\273)-1(e)-333(so\\252t)28(ys)-333(t)28(ylk)28(o)-333(p)-27(op)1(atrzy\\252)-333(na)-332(ni\\241,)-332(splu)1(n\\241\\252)-333(i)-332(p)-27(os)-1(ze)-1(d)1(\\252)-333(w)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(\\363rze)-1(,)-424(a)-424(nikt)-424(si\\246)-425(na)28(w)28(e)-1(t)-424(nie)-425(r)1(usz)-1(y)1(\\252)-425(z)-425(mie)-1(j)1(s)-1(ca,)-424(bab)28(y)-424(za\\261)-425(j\\246\\252y)-425(sobie)-424(trepami)]TJ 0 -13.549 Td[(p)-27(o)-28(dsu)28(w)28(a\\242)-334(z)-1(ap)1(as)-1(k)28(\\246,)-333(ogl\\241da\\242,)-333(a)-333(c)-1(o\\261)-334(cic)27(h)1(o)-333(i)-334(ze)-334(zgroz\\241)-334(op)-27(o)28(w)-1(i)1(ada\\242.)]TJ 27.879 -13.549 Td[({)-357(T)84(a)-1(k)56(\\241)-356(trze)-1(b)1(a)-357(ze)-358(wsi)-357(wy\\261wie)-1(ci\\242)-357(o\\273ogie)-1(m)-357(k)1(ie)-1(j)-356(cz)-1(ar)1(o)27(wn)1(ic)-1(\\246!)-356({)-357(rze)-1(k)1(\\252a)-357(w)-357(g\\252os)]TJ -27.879 -13.549 Td[(Kob)1(uso)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(rze)-1(ciec)27(h!)-333(b)-27(e)-1(z)-333(ni\\241)-333(to)-333(w)-1(szys)-1(tk)28(o!)-333(b)-27(ez)-334(ni\\241!)-333({)-333(pr)1(z)-1(y)1(gadyw)28(a\\252a)-334(S)1(ik)28(orzyna.)]TJ 0 -13.55 Td[({)-234(Ju)1(\\261)-1(ci\\242)-1(,)-233(ale)-235(P)28(an)-233(Jez)-1(u)1(s)-235(strze)-1(g\\252,)-234(\\273e)-235(ca\\252a)-234(w)-1(i)1(e)-1(\\261)-234(nie)-234(p)-28(osz\\252)-1(a)-234(z)-234(dy)1(m)-1(em)-1(!)-233({)-235(sze)-1(p)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(So)-27(c)27(ho)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(i)-333(pr)1(a)27(wd)1(a,)-333(\\273)-1(e)-334(cud)1(,)-333(pra)28(wdziwy)-333(c)-1(u)1(d!)]TJ 0 -13.549 Td[({)-333(Wiatr)1(u)-333(te)-1(\\273)-333(nie)-334(b)29(y\\252o)-334(i)-333(w)-333(c)-1(zas)-334(sp)-28(ostrze)-1(gl)1(i.)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(tos)-1(ik)-333(w)-333(dzw)27(on)-333(u)1(derzy\\252,)-333(b)-28(o)-333(wie\\261)-334(b)28(y\\252a)-333(w)-334(p)1(ie)-1(r)1(ws)-1(zym)-334(\\261pik)1(u.)]TJ 0 -13.55 Td[(P)28(on)1(o)-334(to)-333(n)1(ie)-1(d)1(\\271)-1(wiedn)1(iki)-333(sz)-1(\\252y)-333(z)-334(k)56(arzm)27(y)-333(i)-333(pi)1(e)-1(r)1(w)-1(sz)-1(e)-333(z)-1(ob)1(ac)-1(zy\\252y)83(.)]TJ 0 -13.549 Td[({)-457(M)1(oi\\261c)-1(iewy!)-456(ale)-457(ic)27(h)-456(sam)-457(Boryn)1(a)-457(z\\252)-1(ap)1(a\\252)-457(w)-457(b)1(rogu)-456(i)-456(t)28(yle)-457(co)-457(roze)-1(gn)1(a\\252,)-457(a)]TJ -27.879 -13.549 Td[(tu)-328(ogie\\253)-328(z)-1(ar)1(az)-329(bu)1(c)27(h)1(n\\241\\252...)-328(Mi)1(ark)28(o)28(w)27(a\\252em)-329(w)27(czora)-56(j)-328(u)-328(K)1(\\252)-1(\\246b)-27(\\363)27(w,)-328(\\273)-1(e)-328(c)-1(o\\261)-329(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-328(sk)28(oro)]TJ 0 -13.549 Td[(raze)-1(m)-333(s)-1(i)1(\\246)-334(wynie\\261li.)]TJ 27.879 -13.549 Td[({)-333(P)28(ono)-333(ju)1(\\273)-334(d)1(a)27(wn)1(o)-334(str\\363\\273o)27(w)28(a\\252)-333(z)-1(a)-333(nimi.)]TJ 0 -13.55 Td[({)-394(J)1(ak\\273)-1(e!)-394(p)-27(o)28(wiada\\252)-393(m)-1(\\363)-55(j)-393(c)27(h\\252op)1(ak,)-394(\\273e)-394(w)28(c)-1(zora)-56(j)-393(ca\\252y)-394(cz)-1(as)-394(c)28(ho)-28(d)1(z)-1(i)1(\\252)-394(p)-27(o)-394(dr)1(o)-28(dze)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(K\\252\\246b)-28(o)28(w)28(\\241)-334(c)28(ha\\252up)1(\\241)-334(i)-333(mia\\252)-333(ic)27(h)-333(n)1(a)-333(oku)-333({)-333(pra)28(wi\\252a)-333(p)-28(o)-28(d)-332(nose)-1(m)-334(K)1(obu)1(s)-1(o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-333(T)83(ote)-1(\\273)-333(w)-1(i)1(dn)1(o,)-334(co)-333(b)-28(ez)-334(z\\252)-1(o\\261\\242)-334(An)28(t)1(e)-1(k)-333(p)-27(o)-28(dp)1(ali\\252.)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(si\\246)-334(to)-333(nie)-333(o)-28(dgr)1(a\\273)-1(a\\252?)]TJ 0 -13.549 Td[({)-333(C)-1(a\\252a)-333(wie\\261)-334(o)-334(t)28(y)1(m)-334(wie)-1(d)1(z)-1(i)1(a\\252)-1(a.)]TJ 0 -13.55 Td[({)-333(Musia\\252o)-333(s)-1(i)1(\\246)-334(na)-333(t)28(ym)-334(sk)28(o\\253cz)-1(y)1(\\242)-1(,)-333(m)27(u)1(s)-1(i)1(a\\252o!)-334({)-333(d)1(ogadyw)28(a\\252a)-334(Koz\\252o)28(w)27(a.)]TJ 0 -13.549 Td[(A)-412(w)-413(dr)1(ugiej)-412(grup)1(ie)-413(starsz)-1(yc)28(h)-412(gos)-1(p)-27(o)-28(dy)1(\\253)-412(s)-1(ze)-1(p)1(tano)-412(r\\363)28(wnie\\273)-413(r\\363\\273no\\261c)-1(i,)-412(jeno)]TJ -27.879 -13.549 Td[(t)28(yle)-333(\\273)-1(e)-334(cisz)-1(ej)-333(i)-333(w)27(a\\273niej.)]TJ 27.879 -13.549 Td[({)-333(Star)1(y)-334(p)-27(on)1(o)-334(tak)-333(zbi\\252)-333(Jagn\\246,)-333(\\273)-1(e)-333(le)-1(\\273y)-333(c)27(h)1(ora)-333(u)-333(m)-1(at)1(ki...)1(w)-1(i)1(e)-1(cie)-334(to?)]TJ 0 -13.549 Td[({)-363(Jak\\273e)-1(!)-363(zaraz)-364(do)-363(d)1(nia,)-363(p)-27(o)28(w)-1(i)1(adali,)-363(wygn)1(a\\252)-364(j)1(\\241,)-363(s)-1(kr)1(z)-1(yn)1(k)28(\\246)-364(za)-364(n)1(i\\241)-363(w)-1(y)1(rz)-1(u)1(c)-1(i)1(\\252)-364(i)]TJ -27.879 -13.55 Td[(ws)-1(zystkie)-334(szm)-1(at)28(y)-333({)-333(dorzuci\\252a)-333(m)-1(i)1(lc)-1(z\\241c)-1(a)-333(d)1(ot\\241d)-333(B)-1(al)1(c)-1(erk)28(o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-276(Nie)-277(p)-27(o)28(wiada)-55(jcie)-277(b)29(yle)-277(cz)-1(ego,)-276(b)28(y)1(\\252)-1(am)-276(dop)1(iero)-276(c)-1(o)-276(w)-276(c)27(ha-\\252up)1(ie,)-276(s)-1(kr)1(z)-1(y)1(nk)56(a)-276(s)-1(toi)]TJ -27.879 -13.549 Td[(na)-333(sw)27(oim)-333(m)-1(i)1(e)-1(j)1(s)-1(cu)-333({)-334(ob)-55(j)1(a\\261)-1(n)1(ia\\252a)-333(P\\252os)-1(zk)28(o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-259(Ale)-260(j)1(u\\273)-259(na)-259(w)28(e)-1(se)-1(lu)-258(przep)-28(o)28(wiada\\252am,)-259(\\273e)-260(s)-1(i)1(\\246)-260(tak)-259(sk)28(o\\253cz)-1(y)-259({)-259(p)-27(o)-28(dj)1(\\246)-1(\\252a)-259(g\\252o\\261niej.)]TJ 0 -13.549 Td[({)-324(Co)-325(si\\246)-325(d)1(z)-1(ieje,)-324(m\\363)-56(j)-324(Jez)-1(u)1(s)-1(!)-324(co)-324(s)-1(i\\246)-324(dzie)-1(j)1(e)-1(!)-324({)-324(j\\246kn)1(\\246)-1(\\252a)-324(So)-27(c)27(ho)28(w)28(a)-325(c)28(h)28(wyta)-56(j)1(\\241c)-325(si\\246)]TJ -27.879 -13.549 Td[(za)-334(g\\252o)28(w)27(\\246.)]TJ 27.879 -13.55 Td[({)-333(Ano)-333(c)-1(o,)-333(d)1(o)-334(k)1(re)-1(min)1(a\\252u)-333(go)-334(w)28(e)-1(zm\\241)-334(i)-333(t)28(yl)1(a!)]TJ 0 -13.549 Td[({)-333(Sp)1(ra)28(w)-1(i)1(e)-1(d)1(liwie)-334(m)28(u)-333(s)-1(i)1(\\246)-334(to)-333(nale\\273)-1(y)1(:)-334(ca\\252a)-333(w)-1(i)1(e)-1(\\261)-334(mog\\252a)-333(p)-28(ogorze\\242)-1(!)]TJ 0 -13.549 Td[({)-423(A)-423(tom)-424(j)1(u\\273)-424(spa\\252a)-423(w)-423(na)-56(j)1(lepsz)-1(e,)-423(a)-423(tu)-423(\\212uk)56(a,)-423(co)-424(l)1(ata\\252)-424(z)-423(nied\\271wie)-1(d)1(ni)1(k)55(ami,)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(b)1(ni)-333(w)-334(ok)1(no)-333(i)-333(krzyc)-1(zy:)-333(\\377Gor)1(e)-1(!\")]TJ 27.879 -13.549 Td[(Jez)-1(u)1(s)-306(Mar)1(ia!)-305(w)-305(oknac)28(h)-305(c)-1(ze)-1(r)1(w)27(on)1(o,)-305(jak)28(ob)28(y)-305(k)1(to)-305(z)-1(ar)1(z)-1(ew)-1(i)1(e)-1(m)-305(s)-1(zyb)28(y)-305(ob)28(w)28(ali\\252,)-305(to)]TJ -27.879 -13.55 Td[(mi)-416(j)1(u\\273)-416(z)-1(e)-416(strac)28(h)28(u)-416(ca\\252kiem)-416(m)-1(o)-27(c)-417(o)-27(dj)1(\\246)-1(\\252o...)-415(a)-416(tu)-415(dzw)28(on)-416(b)1(ije...)-415(lud)1(z)-1(i)1(e)-416(krzyc)-1(z\\241...)-415({)]TJ 0 -13.549 Td[(op)-27(o)27(wiad)1(a\\252a)-334(P)1(\\252os)-1(zk)28(o)28(w)27(a.)]TJ\nET\nendstream\nendobj\n1018 0 obj <<\n/Type /Page\n/Contents 1019 0 R\n/Resources 1017 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1017 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1022 0 obj <<\n/Length 9222      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(317)]TJ -330.353 -35.866 Td[({)-475(S)1(k)28(oro)-475(j)1(e)-1(n)1(o)-475(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ieli,)-474(\\273)-1(e)-475(Boryn)1(a)-475(si\\246)-475(pali)1(,)-475(zaraz)-475(mnie)-475(tkn)1(\\246)-1(\\252o,)-474(\\273)-1(e)-475(to)]TJ -27.879 -13.549 Td[(An)28(tk)28(o)28(w)28(a)-334(spr)1(a)27(w)28(a)-333({)-334(p)1(rze)-1(rw)28(a\\252a)-333(jej)-333(kt\\363ra\\261.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-27(c)-1(ie,)-333(p)-27(o)27(wiad)1(ac)-1(ie,)-333(jak)1(b)28(y\\261c)-1(ie)-333(na)-333(o)-28(c)-1(zy)-333(widzieli.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(ie\\242)-334(n)1(ie)-334(widzia\\252am,)-333(ale)-334(sk)28(oro)-333(tak)-333(w)-1(sz)-1(y)1(s)-1(tki)1(e)-334(p)-27(o)27(wieda)-55(j\\241..)1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(w)-334(zapu)1(s)-1(t)28(y)-333(b\\241k)56(a\\252a)-333(o)-334(t)28(ym)-333(tu)-333(i)-333(o)28(w)-1(d)1(z)-1(i)1(e)-334(Jagn)28(u)1(s)-1(t)28(yn)1(k)55(a.)1(..)]TJ 0 -13.55 Td[({)-333(Ani)-333(c)27(h)29(ybi,)-333(w)28(e)-1(zm\\241)-334(go)-333(w)-334(d)1(ybk)1(i)-333(i)-334(p)-27(osadz\\241)-334(w)-333(krem)-1(i)1(nale.)]TJ 0 -13.549 Td[({)-416(Co)-415(m)27(u)-415(ta)-416(zrob)1(i\\241?)-416(widzia\\252)-415(to)-416(kto?)-416(s\\241)-416(n)1(a)-416(to)-415(\\261)-1(wiad)1(ki?)-416(co?)-416({)-416(zau)28(w)28(a\\273)-1(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(Balc)-1(erk)28(o)28(w)28(a,)-334(\\273e)-334(to)-333(pr)1(o)-28(ce)-1(so)27(wn)1(ic)-1(a)-333(b)28(y)1(\\252)-1(a)-333(sie)-1(l)1(na)-333(i)-333(na)-333(pra)28(wie)-334(si\\246)-334(zna\\252a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(ie)-334(z\\252apa\\252)-333(go)-334(to)-333(stary?...)]TJ 0 -13.549 Td[({)-398(Z\\252apa\\252,)-398(ale)-398(na)-398(c)-1(zym)-398(inn)29(ym,)-398(a)-399(c)28(ho)-28(\\242b)28(y)-398(i)-398(wid)1(z)-1(i)1(a\\252)-399(p)-27(o)-28(d)1(palan)1(ie)-1(,)-397(\\261)-1(wiad)1(c)-1(zy\\242)]TJ -27.879 -13.549 Td[(ni)1(e)-334(mo\\273)-1(e,)-333(b)-28(o)-333(o)-28(cie)-1(c)-333(i)-334(w)-333(z)-1(\\252o\\261c)-1(i)-333(z)-333(s)-1(ob)1(\\241)-334(\\273yli.)]TJ 27.879 -13.55 Td[({)-371(S)1(\\241d\\363)28(w)-371(to)-370(spra)28(w)28(a,)-371(n)1(ie)-371(nasza,)-371(ale)-371(k)1(to)-371(win)1(o)27(w)28(at)28(y)-370(prze)-1(d)-370(Bogiem)-371(i)-370(lud)1(\\271)-1(mi,)]TJ -27.879 -13.549 Td[(je\\261li)-333(nie)-333(ta)-334(suk)56(a)-333(Jagna?)-333(C)-1(o)-333({)-333(p)-28(o)-27(dn)1(ie)-1(s\\252a)-334(zno)28(wu)-333(suro)28(wy)-333(g\\252os)-334(Balc)-1(erk)28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-355(Pr)1(a)27(wd)1(a!)-355(Ju\\261c)-1(i!)-354(takie)-356(zb)-27(e)-1(r)1(e)-1(\\273e)-1(\\253)1(s)-1(t)28(w)28(o,)-355(taki)-355(grze)-1(c)28(h!)-355({)-355(sz)-1(epta\\252y)-355(cisz)-1(ej,)-355(zbi\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(w)-334(k)1(up)-27(\\246)-334(i)-333(z)-1(acz)-1(\\246\\252y)-333(jedn)1(a)-334(p)1(rze)-1(z)-334(d)1(ru)1(g\\241)-334(wyp)-27(omina\\242)-334(j)1(e)-1(j)-332(grz)-1(ec)27(h)29(y)83(.)]TJ 27.879 -13.549 Td[(Gad)1(a\\252y)-365(c)-1(or)1(az)-366(g\\252o\\261)-1(n)1(iej)-365(i)-365(c)-1(or)1(az)-366(za)27(wzi\\246c)-1(iej)-365(p)-27(ot\\246)-1(p)1(ia\\252y)-365(Jagn)1(\\246)-1(,)-365(wyg\\252asz)-1(a\\252y)-365(te-)]TJ -27.879 -13.55 Td[(raz)-383(ws)-1(zystk)28(o,)-383(co)-383(ino)-383(b)29(y\\252o)-383(i)-383(n)1(ie)-384(b)29(y\\252o,)-383(co)-383(ino)-382(kt\\363ra)-383(k)1(ie)-1(d)1(y)-383(b\\241d)1(\\271)-383(z)-1(as\\252ys)-1(za\\252a)-383(ab)-27(o)-383(i)]TJ 0 -13.549 Td[(sam)-1(a)-377(st)27(w)28(orzy\\252a)-377(na)-377(ni)1(\\241:)-377(ws)-1(zys)-1(tk)1(ie)-378(d)1(a)28(w)-1(n)1(e)-378(u)1(raz)-1(y)-377(i)-377(za)28(wi\\261)-1(ci)-377(z)-1(asycz)-1(a\\252y)-377(w)-377(du)1(s)-1(zac)27(h)1(,)]TJ 0 -13.549 Td[(\\273e)-399(jak)28(o)-399(t)1(e)-1(n)-398(k)56(am)-1(i)1(e)-1(n)1(n)28(y)-398(grad)-398(lec)-1(ia\\252y)-398(na)-398(ni\\241)-398(pr)1(z)-1(ez)-1(wisk)56(a,)-399(wym)28(ys\\252)-1(y)84(,)-398(o)-28(dgr)1(\\363\\273)-1(ki)-398(z\\252e)-399(i)]TJ 0 -13.549 Td[(ni)1(e)-1(n)1(a)27(wistne)-305(s)-1(\\252o)28(w)27(a,)-305(wz)-1(b)1(ur)1(z)-1(on)1(a)-306(z\\252o\\261)-1(\\242,)-306(\\273e)-306(gdy)1(b)28(y)-305(s)-1(i\\246)-306(t)1(ak)-306(j)1(a)28(w)-1(i)1(\\252)-1(a)-305(w)-306(tej)-305(c)27(h)28(wil)1(i,)-305(to)-306(an)1(i)]TJ 0 -13.549 Td[(c)27(h)29(ybi)-333(z)-334(p)1(i\\246\\261)-1(ciam)-1(i)-333(r)1(z)-1(u)1(c)-1(i\\252y)1(b)28(y)-333(s)-1(i\\246)-333(do)-333(niej.)]TJ 27.879 -13.55 Td[(Ch\\252op)1(i)-382(z)-1(a\\261)-382(w)-382(d)1(rugi)1(e)-1(j)-381(kup)1(ie)-382(p)-28(or)1(e)-1(d)1(z)-1(ali)-381(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-1(j)1(,)-382(ale)-382(nie)-382(mni)1(e)-1(j)-381(z)-1(a)28(wz)-1(i)1(\\246)-1(cie)]TJ -27.879 -13.549 Td[(p)-27(o)27(wsta)28(w)27(ali)-352(n)1(a)-353(An)28(t)1(k)55(a;)-352(gn)1(ie)-1(w)-352(z)-353(w)27(ol)1(na)-352(ogarni)1(a\\252)-353(ws)-1(zystkie)-353(serc)-1(a,)-352(wzbur)1(z)-1(eni)1(e)-353(g\\252\\246)-1(-)]TJ 0 -13.549 Td[(b)-27(okie,)-335(s)-1(r)1(ogie)-336(k)28(o\\252ysa\\252o)-336(t)1(\\252)-1(u)1(me)-1(m,)-335(b\\252ysk)56(a\\252o)-336(w)-335(o)-28(cz)-1(ac)28(h)-335(pi)1(orun)1(am)-1(i)1(,)-335(\\273)-1(e)-335(niejedn)1(a)-335(pi\\246\\261)-1(\\242)]TJ 0 -13.549 Td[(si\\246)-321(wyci\\241)-28(ga\\252a)-320(gr)1(o\\271)-1(n)1(ie)-1(,)-319(goto)28(w)27(a)-320(d)1(o)-320(s)-1(p)1(adn)1(i\\246)-1(cia,)-319(niejedn)1(o)-320(t)28(w)27(ard)1(e)-320(s)-1(\\252o)28(w)27(o)-320(j)1(ak)-320(k)56(amie)-1(\\253)]TJ 0 -13.549 Td[(za)27(w)28(arcz)-1(a\\252o,)-366(\\273e)-366(na)28(w)27(et)-366(M)1(ate)-1(u)1(s)-1(z.)-366(kt\\363r)1(e)-1(n)-365(go)-366(obr)1(ania\\252)-366(zrazu,)-365(da\\252)-366(sp)-28(ok)28(\\363)-55(j,)-366(a)-365(jeno)-366(w)]TJ 0 -13.55 Td[(k)28(o\\253cu)-333(rzek\\252:)]TJ 27.879 -13.549 Td[({)-333(Roz)-1(u)1(m)-334(m)27(u)-333(o)-27(dj\\241\\242)-333(m)27(u)1(s)-1(ia\\252o,)-333(j)1(e)-1(\\261li)-333(s)-1(i)1(\\246)-334(na)-333(tak)56(\\241)-334(r)1(z)-1(ec)-1(z)-333(w)27(a\\273y\\252!)]TJ 0 -13.549 Td[(Ale)-255(na)-255(to)-255(sk)28(o)-28(cz)-1(y)1(\\252)-256(r)1(oz)-1(sro\\273on)28(y)-255(k)28(o)28(w)28(al)-255(i)-255(j\\241)-254(prze)-1(k)1(\\252ada\\242)-255(gos)-1(p)-27(o)-28(dar)1(z)-1(om,)-255(\\273e)-256(An)29(te)-1(k)]TJ -27.879 -13.549 Td[(da)28(wno)-323(si\\246)-324(o)-27(dgra\\273a\\252)-323(p)-28(o)-28(d)1(paleni)1(e)-1(m,)-323(\\273)-1(e)-323(s)-1(tar)1(y)-323(ju)1(\\273)-324(z)-324(d)1(a)28(w)-1(n)1(a)-323(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-323(o)-323(t)28(ym)-324(i)-323(ca\\252ymi)]TJ 0 -13.549 Td[(no)-27(c)-1(ami)-333(pil)1(no)28(w)27(a\\252.)]TJ 27.879 -13.55 Td[({)-460(A)-460(\\273e)-461(on)-460(t)1(o)-461(zrob)1(i\\252,)-460(to)-460(b)28(y)1(m)-461(p)1(rz)-1(y)1(s)-1(i\\241)-27(g\\252,)-460(a)-460(z)-1(r)1(e)-1(sz)-1(t\\241)-460(s\\241)-460(\\261)-1(wiad)1(ki,)-460(ze)-1(zna)-55(j\\241)-460(i)]TJ -27.879 -13.549 Td[(m)27(u)1(s)-1(i)-446(b)28(y\\242)-447(k)55(ar)1(a)-447(na)-447(tak)1(ic)27(h)1(,)-447(m)27(u)1(s)-1(i)1(!)-447(A)-447(b)-27(o)-447(to)-447(nie)-447(zm)-1(a)28(wia\\252)-447(s)-1(i)1(\\246)-448(w)28(c)-1(i)1(\\241\\273)-448(z)-447(par)1(obk)56(am)-1(i)1(,)]TJ 0 -13.549 Td[(ni)1(e)-328(bu)1(n)28(to)28(w)27(a\\252)-327(to)-328(p)1(rze)-1(ciw)-328(starsz)-1(ym,)-327(ni)1(e)-328(p)-28(o)-28(d)1(ma)27(wia\\252)-327(do)-327(z)-1(\\252ego,)-328(wiem)-328(ci)-328(j)1(a)-328(n)1(a)28(w)27(et)-328(z)]TJ 0 -13.549 Td[(kt\\363r)1(ymi,)-317(w)-1(i)1(e)-1(m,)-317(patr)1(z)-1(\\246)-317(na)28(w)27(et)-317(na)-317(nic)28(h,)-317(s\\252uc)27(h)1(a)-56(j)1(\\241)-318(mn)1(ie)-318(teraz)-318(i)-317(j)1(e)-1(sz)-1(cz)-1(e)-317(\\261)-1(mi\\241)-317(br)1(oni\\242)]TJ 0 -13.549 Td[(taki)1(e)-1(go)-316({)-317(wrzes)-1(zc)-1(za\\252)-317(gr)1(o\\271)-1(n)1(ie)-1(.)-316({)-316(Zaraza)-317(z)-317(tak)1(ie)-1(go)-316(na)-316(ca\\252\\241)-317(wie\\261)-317(p\\252yn)1(ie,)-317(zaraza,)-316(\\273)-1(e)]TJ 0 -13.549 Td[(do)-269(kr)1(e)-1(min)1(a\\252u,)-269(n)1(a)-270(S)1(ybi)1(r)-269(go,)-269(kij)1(am)-1(i)-268(z)-1(at\\252uc)-269(kiej)-269(p)1(s)-1(a)-269(w\\261)-1(ciek\\252e)-1(go,)-269(b)-27(o)-269(ni)1(e)-270(do\\261\\242)-270(ob)1(razy)]TJ 0 -13.55 Td[(b)-27(os)-1(ki)1(e)-1(j)1(,)-306(\\273)-1(eb)28(y)-306(z)-307(ro)-28(d)1(z)-1(on)1(\\241)-306(m)-1(aco)-28(c)27(h)1(\\241...)-306(a)-306(tu)-306(p)-27(o)-28(dp)1(ala)-306(jes)-1(zc)-1(ze)-1(!)-306(Cud)-305(jeno,)-306(\\273)-1(e)-306(c)-1(a\\252a)-306(wie)-1(\\261)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(z\\252a!)-334({)-333(wykr)1(z)-1(yk)1(iw)27(a\\252)-333(nami\\246tni)1(e)-1(,)-333(snad\\271)-333(m)-1(ia\\252)-333(w)-334(t)28(y)1(m)-334(jak)1(ie)-1(\\261)-333(w)-1(y)1(rac)27(h)1(o)27(w)28(ani)1(e)-1(.)]TJ 27.879 -13.549 Td[(Zmiark)28(o)28(w)27(a\\252)-333(to)-333(Ro)-28(c)27(h)1(o)-334(sto)-56(j)1(\\241c)-1(y)-333(z)-334(K)1(\\252\\246)-1(b)-27(e)-1(m)-333(na)-333(ub)-27(o)-28(cz)-1(y)-333(i)-333(rze)-1(k)1(\\252)-1(:)]TJ 0 -13.549 Td[({)-466(M)1(o)-28(cno)-466(sta)-56(j)1(e)-1(cie)-466(m)28(u)-465(napr)1(z)-1(ec)-1(i)1(w)-1(,)-465(c)27(h)1(o)-28(\\242)-466(w)28(c)-1(zora)-56(j)-465(j)1(e)-1(sz)-1(cze)-466(pili)1(\\261)-1(cie)-466(z)-466(ni)1(m)-466(w)]TJ -27.879 -13.549 Td[(k)56(arcz)-1(mie.)]TJ 27.879 -13.55 Td[({)-333(W)83(r)1(\\363g)-334(mi)-333(k)56(a\\273)-1(d)1(e)-1(n,)-333(k)1(t\\363ren)-333(w)-1(i)1(e)-1(\\261)-334(ca\\252\\241)-333(m)-1(\\363g\\252)-333(p)-28(o)28(wie\\261)-1(\\242)-334(n)1(a)-333(dziady!)]TJ 0 -13.549 Td[({)-333(Ale)-334(d)1(z)-1(iedzic)-334(to)-333(w)28(am)-1(a)-333(ni)1(e)-334(wrogiem)-1(!)-333({)-333(dor)1(z)-1(u)1(c)-1(i\\252)-333(p)-27(o)27(w)28(a\\273)-1(n)1(ie)-334(K)1(\\252)-1(\\241b)1(.)]TJ\nET\nendstream\nendobj\n1021 0 obj <<\n/Type /Page\n/Contents 1022 0 R\n/Resources 1020 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1020 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1025 0 obj <<\n/Length 9872      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(318)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Za)28(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252)-328(ic)27(h)1(,)-329(zakrzycz)-1(eli)-328(i)-328(insi,)-328(a)-329(k)28(o)28(w)28(al)-329(r)1(z)-1(u)1(c)-1(a\\252)-328(s)-1(i)1(\\246)-329(m)-1(i)1(\\246)-1(d)1(z)-1(y)-328(lud)1(z)-1(i)1(,)-329(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(ju)1(dza\\252,)-353(do)-353(p)-28(oms)-1(t)28(y)-353(wz)-1(y)1(w)27(a\\252,)-353(niest)27(w)28(orzone)-354(r)1(z)-1(ec)-1(zy)-353(wym)27(y\\261la\\252)-353(na)-353(niego;)-353(a\\273)-354(i)-354(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(do\\261\\242)-323(j)1(u\\273)-323(wzbur)1(z)-1(on)29(y)-323(zm\\241c)-1(i\\252)-322(s)-1(i)1(\\246)-323(do)-322(dn)1(a)-323(i)-322(zak\\252\\246bi\\252,)-322(zac)-1(z\\246)-1(li)-322(g\\252o\\261no)-322(w)27(o\\252a\\242,)-322(b)28(y)-322(przy-)]TJ 0 -13.549 Td[(wie\\261)-1(\\242)-365(p)-28(o)-27(dp)1(alac)-1(za,)-365(sku\\242)-365(w,)-365(k)56(a)-56(j)1(dan)28(y)-364(i)-365(d)1(o)-365(urz\\246du)-364(p)-28(o)28(wie\\261)-1(\\242,)-365(a)-365(in)1(s)-1(i)1(,)-365(gor\\246ts)-1(i)1(,)-365(ju)1(\\273)-365(s)-1(i\\246)]TJ 0 -13.549 Td[(ogl\\241d)1(ali)-268(za)-268(kij)1(am)-1(i)-267(i)-268(c)27(h)1(c)-1(i)1(e)-1(li)-267(bie\\273)-1(y)1(\\242)-1(,)-267(w)-1(y)1(w)-1(lec)-268(go)-268(z)-269(c)28(ha\\252u)1(p)28(y)-268(i)-268(t)1(ak)-268(s)-1(p)1(ra\\242,)-268(b)28(yc)28(h)-268(ca\\252e)-269(\\273y-)]TJ 0 -13.55 Td[(cie)-329(p)-27(opami\\246ta\\252!..)1(.)-328(na)-55(jb)1(arz)-1(ej)-328(n)1(as)-1(t)1(a)27(w)28(ali)-328(ci,)-328(k)1(t\\363rym)-328(ni)1(e)-1(raz)-328(An)28(tek)-328(\\273e)-1(b)1(ra)-328(zrac)27(h)1(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(kij)1(as)-1(zkiem...)]TJ 27.879 -13.549 Td[(Re)-1(j)1(w)27(ac)28(h)-481(si\\246)-481(p)-27(o)-28(dn)1(i\\363s\\252)-1(,)-480(krzyki)1(,)-481(kl)1(\\241t)27(wy)84(,)-481(wygr)1(\\363\\273)-1(ki)-480(i)-481(tak)1(ie)-481(z)-1(amies)-1(zanie,)-481(\\273e)]TJ -27.879 -13.549 Td[(nar)1(\\363)-28(d)-286(s)-1(i\\246)-287(sk\\252\\246)-1(b)1(i\\252)-287(i)-287(miota\\252)-287(j)1(ak)28(o)-287(ten)-287(g\\241sz)-1(cz)-287(s)-1(magan)28(y)-287(wic)28(h)28(ur)1(\\241,)-287(i)-286(j\\241\\252)-287(si\\246)-287(k)28(ole)-1(b)1(a\\242)-1(,)-286(bi\\242)]TJ 0 -13.549 Td[(kiej)-284(f)1(ala)-284(o)-285(p)1(\\252ot)28(y)83(,)-284(pr)1(z)-1(e\\242)-285(ku)-283(w)-1(r)1(\\363tniom)-284(i)-284(na)-284(dr)1(og\\246)-285(p)1(rz)-1(ecie)-1(k)56(a\\242)-285({)-284(p)1(r\\363\\273)-1(n)1(o)-284(w)27(\\363)-55(jt)-284(s)-1(k)28(o)-27(c)-1(zy\\252)]TJ 0 -13.549 Td[(usp)-27(ok)55(a)-55(ja\\242,)-420(p)1(r\\363\\273no)-419(s)-1(o\\252t)28(ys)-420(i)-419(c)-1(o)-419(s)-1(tar)1(s)-1(i)-419(pr)1(z)-1(ek\\252adali)-419(i)-419(t\\252umac)-1(zyli)1(,)-420(g\\252osy)-420(ic)28(h)-419(gin\\246\\252y)]TJ 0 -13.55 Td[(w)-390(p)1(ie)-1(k)1(ie)-1(l)1(nej)-390(wrza)28(wie)-1(,)-389(a)-390(on)1(i)-390(sam)-1(i)-389(p)-27(orw)27(an)1(i)-390(p)1(rze)-1(z)-390(p)-27(\\246)-1(d)-389(sz)-1(li)-389(raze)-1(m)-390(z)-390(i)1(nn)28(ymi,)-389(ni)1(kt)]TJ 0 -13.549 Td[(ani)-334(s\\252uc)27(h)1(a\\252,)-334(ni)-334(z)-1(w)28(a\\273)-1(a\\252)-334(na)-334(ic)27(h)-334(mo)28(wy)83(,)-334(ku)1(\\273)-1(d)1(e)-1(n)-334(si\\246)-335(rw)28(a\\252,)-335(r)1(z)-1(u)1(c)-1(a\\252,)-334(kr)1(z)-1(yk)56(a\\252,)-334(c)-1(o)-334(m)27(u)-334(si\\252)]TJ 0 -13.549 Td[(starcz)-1(y\\252o,)-333(\\273e)-334(kieb)28(y)-333(op)-27(\\246)-1(tan)1(ie)-334(j)1(akie\\261)-334(p)-28(on)1(ies)-1(\\252o)-333(ws)-1(zys)-1(tk)1(ic)27(h)-333(wic)28(h)28(ur)1(\\241)-334(p)-27(oms)-1(t)28(y)84(...)]TJ 27.879 -13.549 Td[(Naraz)-333(Koz)-1(\\252o)28(w)28(a)-334(j)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(przedzie)-1(r)1(a\\242)-334(nap)1(rz\\363)-28(d)-333(i)-333(krzycz)-1(e\\242)-334(wnieb)-27(og\\252os)-1(y:)]TJ 0 -13.549 Td[({)-333(Ob)-27(o)-56(je)-333(w)-1(i)1(no)28(w)27(aci,)-333(ob)-27(o)-56(j)1(e)-334(pr)1(z)-1(ywlec)-334(i)-333(sk)55(ar)1(a\\242)-334(na)-333(p)-27(ogorze)-1(lisku)1(!...)]TJ 0 -13.55 Td[(Bab)28(y)83(,)-397(a)-397(z)-1(w\\252asz)-1(cz)-1(a)-397(k)28(omorni)1(c)-1(e)-398(i)-397(b)1(ie)-1(d)1(ota)-397(w)-1(sz)-1(y)1(s)-1(tk)56(a,)-397(wz)-1(i\\246\\252y)-397(wt\\363r)-397(z)-1(a)-397(ni\\241)-397(i)-397(z)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)1(ie)-1(m)-317(n)1(ie)-1(l)1(udzkim,)-317(r)1(oz)-1(cz)-1(ap)1(ierz)-1(on)1(e)-1(,)-316(niepr)1(z)-1(y)1(tom)-1(n)1(e)-318(zgo\\252a,)-317(d)1(ar\\252y)-317(si\\246)-317(p)-28(ob)-27(ok)-317(n)1(ie)-1(j)]TJ 0 -13.549 Td[(na)-267(cz)-1(o\\252o)-268(p)1(rze)-1(z)-268(g\\246st)27(w)28(\\246)-268(rozw\\261)-1(cieklon)28(ym,)-267(h)28(ucz\\241c)-1(ym)-267(p)-28(otoki)1(e)-1(m;)-267(p)-28(o)-27(dni)1(\\363s)-1(\\252)-267(s)-1(i\\246)-268(wr)1(z)-1(ask)]TJ 0 -13.549 Td[(i)-430(p)1(is)-1(k)-429(w)-430(w)27(\\241skic)27(h)-429(op\\252otk)56(ac)27(h)1(,)-430(b)-27(o)-28(\\242)-430(w)-1(sz)-1(y)1(s)-1(cy)-430(si\\246)-431(n)1(araz)-430(c)-1(i)1(s)-1(n)1(\\246)-1(li)1(,)-430(ws)-1(zys)-1(cy)-430(kr)1(z)-1(y)1(c)-1(ze)-1(li)1(,)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)-463(tr)1(z)-1(\\241c)28(hali)-463(p)1(i\\246)-1(\\261c)-1(i)1(am)-1(i)1(,)-463(prze)-1(p)29(yc)27(h)1(ali)-463(s)-1(i)1(\\246)-464(z)-464(mo)-28(c\\241,)-463(\\273)-1(e)-463(jeno)-463(o)-28(c)-1(zy)-463(b\\252y)1(s)-1(zc)-1(za\\252y)]TJ 0 -13.55 Td[(gro\\271ni)1(e)-284(i)-284(spl)1(\\241tana,)-283(dzik)56(a)-284(wrza)28(w)27(a)-283(bi\\252a)-283(o)-28(d)-283(n)1(ic)27(h)-283(kiej)-283(b)-27(e)-1(\\252k)28(ot)-283(w)27(\\363)-28(d)-283(wzbu)1(rz)-1(on)29(yc)27(h)1(,)-284(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ten)-357(g\\252os)-358(gniewu)-357(p)-28(o)28(wsz)-1(ec)27(hn)1(e)-1(go,)-357(co)-358(ob)-55(j)1(\\241\\252)-358(ws)-1(zystkie)-358(serc)-1(a)-357(p)1(\\252)-1(omieniem)-358({)-357(t\\252o)-28(cz)-1(yl)1(i)]TJ 0 -13.549 Td[(si\\246)-334(coraz)-334(mo)-28(cniej)-333(i)-333(pr\\246dzej,)-333(gdy)-333(ci)-333(na)-333(pr)1(z)-1(edzie)-334(id)1(\\241c)-1(y)-333(j)1(\\246)-1(li)-333(w)28(o\\252a\\242)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ks)-1(i)1(\\241dz)-334(z)-333(P)28(anem)-334(Jez)-1(u)1(s)-1(em)-334(id)1(z)-1(i)1(e)-1(!)-333(ksi\\241dz!)]TJ 0 -13.549 Td[(T\\252um)-262(si\\246)-262(zatarga\\252)-262(j)1(akb)28(y)-261(na)-261(u)28(wi\\246z)-1(i,)-261(zak)28(o\\252ys)-1(a\\252)-261(i)-262(r)1(un)1(\\241\\252)-262(na)-261(dr)1(og\\246)-1(,)-261(pr)1(z)-1(ysta)28(w)27(a\\252,)]TJ -27.879 -13.55 Td[(rozpad)1(a\\252)-335(s)-1(i\\246)-335(na)-334(bryzgi,)-334(\\261)-1(cis)-1(za\\252,)-335(a\\273)-335(nagle)-335(pr)1(z)-1(ymil)1(k\\252)-335(c)-1(a\\252ki)1(e)-1(m)-335(i)-335(up)1(ad\\252)-335(n)1(a)-335(k)28(olana,)-334(i)]TJ 0 -13.549 Td[(p)-27(o)-28(c)27(h)28(y)1(li\\252)-333(obn)1(a\\273)-1(on)1(e)-334(g\\252o)27(wy)84(...)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-276(b)-27(o)27(wiem)-277(n)1(adc)28(ho)-28(d)1(z)-1(i\\252)-276(o)-28(d)-275(k)28(o\\261)-1(cio\\252a)-276(z)-277(P)28(an)1(e)-1(m)-276(Jez)-1(u)1(s)-1(em)-1(;)-275(Jam)27(br)1(o\\273)-1(y)-276(sze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(z)-334(zapalon)1(\\241)-333(latarn)1(i\\241)-334(n)1(a)-333(prze)-1(d)1(z)-1(i)1(e)-334(i)-333(pr)1(z)-1(yd)1(z)-1(w)28(ani)1(a\\252)-1(.)1(..)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(zed\\252)-378(r)1(yc)27(h)1(\\252o,)-378(\\273e)-378(wid)1(z)-1(ia\\252)-377(s)-1(i)1(\\246)-378(ju)1(\\273)-378(jak)28(ob)28(y)-377(za)-378(ob)1(m)-1(ar)1(z)-1(n)1(i\\246)-1(t\\241)-377(sz)-1(yb)1(\\241)-378(w)-377(t)28(ym)]TJ -27.879 -13.55 Td[(g\\246s)-1(t)28(ym,)-333(\\261)-1(n)1(iego)27(wym)-333(tumanie,)-333(gdy)-333(zac)-1(z\\246)-1(l)1(i)-333(p)-28(o)28(ws)-1(ta)28(w)28(a\\242)-334(z)-334(kl)1(\\246)-1(cz)-1(ek.)]TJ 27.879 -13.549 Td[({)-249(Do)-249(F)1(ilip)1(ki)-249(i)1(dzie)-1(,)-248(tak)-249(p)-27(ono)-249(p)1(rze)-1(marz\\252a)-249(w)27(cz)-1(or)1(a)-56(j)-248(w)-249(b)-28(or)1(u,)-248(\\273)-1(e)-249(ju)1(\\273)-250(o)-27(d)-249(\\261w)-1(i)1(tania)]TJ -27.879 -13.549 Td[(ledwie)-334(zip)1(ie)-1(,)-333(m\\363)28(w)-1(i)1(\\241,)-333(c)-1(o)-333(wie)-1(cz)-1(or)1(a)-334(n)1(ie)-334(d)1(o)-28(cz)-1(ek)55(a.)]TJ 27.879 -13.549 Td[({)-333(Wz)-1(y)1(w)27(ali)-333(go)-333(te\\273)-334(i)-333(do)-333(B)-1(ar)1(tk)56(a)-334(z)-333(tartak)56(a...)]TJ 0 -13.549 Td[({)-333(Zac)27(hor)1(z)-1(a\\252)-333(to?)]TJ 0 -13.549 Td[({)-289(Jak\\273e)-1(,)-288(nie)-289(wie)-1(cie?)-290(d)1(rze)-1(w)28(o)-289(go)-289(tak)-289(p)1(rz)-1(y)1(gniet\\252o,)-289(\\273e)-290(p)-27(e)-1(wni)1(e)-290(j)1(u\\273)-289(nic)-289(z)-290(c)28(h\\252opa)]TJ -27.879 -13.55 Td[(ni)1(e)-248(b)-28(\\246dzie...)-247({)-247(s)-1(ze)-1(p)1(tano)-247(sp)-28(ogl\\241d)1(a)-56(j)1(\\241c)-248(z)-1(a)-247(ksi\\246dze)-1(m.)-247(Kilk)56(a)-247(gos)-1(p)-27(o)-28(d)1(y\\253)-247(ru)1(s)-1(zy\\252o)-248(za)-247(nim)]TJ 0 -13.549 Td[(w)-326(as)-1(y)1(\\261)-1(cie)-326(i)-326(ca\\252a)-326(h)28(ur)1(m)-1(a)-325(c)27(h\\252op)1(ak)28(\\363)27(w)-326(p)-27(olec)-1(ia\\252a)-325(na)-326(p)1(rz)-1(e\\252a)-56(j)-325(pr)1(z)-1(ez)-327(sta)28(w)-326(ku)-325(m)-1(\\252yn)1(o)28(w)-1(i)1(,)]TJ 0 -13.549 Td[(res)-1(zta)-474(za\\261)-475(sta\\252a)-474(b)-27(e)-1(zrad)1(nie)-474(jak)-473(to)-474(stado)-474(o)28(wiec)-1(,)-473(kiedy)-474(j)1(e)-475(z)-474(n)1(ag\\252a)-474(pies)-474(obgoni)1(,)]TJ 0 -13.549 Td[(gni)1(e)-1(w)-424(s)-1(i)1(\\246)-425(gdzies)-1(i)1(k)-424(p)-28(o)-28(d)1(z)-1(i)1(a\\252,)-424(te)-1(n)-423(p)-28(\\246d)-424(mo)-28(cy)-424(pry)1(s)-1(n)1(\\241\\252)-1(,)-423(gw)27(ar)-424(u)1(m)-1(i)1(lk\\252,)-424(\\273)-1(e)-424(rozgl\\241dal)1(i)]TJ 0 -13.549 Td[(si\\246)-353(p)-27(o)-352(sobie,)-352(jak)1(b)28(y)-352(pr)1(z)-1(ec)27(kn)1(i\\246c)-1(i)-352(z)-352(g\\252\\246)-1(b)-27(oki)1(e)-1(go)-352(sn)28(u,)-351(prze)-1(st\\246p)-28(o)28(w)28(ali)-352(z)-352(nogi)-352(n)1(a)-352(nog\\246,)]TJ 0 -13.55 Td[(dr)1(apali)-392(si\\246)-393(p)-27(o)-393(\\252bac)28(h,)-392(c)-1(o\\261)-393(n)1(iec)-1(o\\261)-393(p)1(rze)-1(rzek)55(al)1(i,)-392(a)-393(\\273e)-393(niejedn)1(e)-1(m)28(u)-392(w)-1(st)28(yd)-392(s)-1(i)1(\\246)-393(rob)1(i\\252o,)]TJ 0 -13.549 Td[(to)-354(j)1(e)-1(n)1(o)-354(spl)1(u)28(w)27(a\\252,)-353(c)-1(zap)-27(\\246)-355(n)1(ac)-1(i)1(s)-1(k)56(a\\252)-354(i)-353(c)27(h)28(y)1(\\252)-1(k)1(ie)-1(m)-353(prze)-1(b)1(iera\\252)-354(si\\246)-354(z)-354(gromady)84(,)-354(k)1(t\\363ra)-354(k)1(ie)-1(j)]TJ\nET\nendstream\nendobj\n1024 0 obj <<\n/Type /Page\n/Contents 1025 0 R\n/Resources 1023 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1010 0 R\n>> endobj\n1023 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1028 0 obj <<\n/Length 9757      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(319)]TJ -358.232 -35.866 Td[(ta)-376(w)27(o)-28(d)1(a)-377(r)1(oz)-1(l)1(e)-1(w)28(a\\252a)-377(si\\246)-377(p)-27(o)-377(d)1(ro)-28(d)1(z)-1(e)-377(i)-376(gin)1(\\246)-1(\\252a)-376(z)-377(w)28(olna)-376(rozc)-1(iek)56(a)-56(j)1(\\241c)-377(s)-1(i\\246)-376(p)-28(o)-376(op\\252otk)56(ac)27(h)]TJ 0 -13.549 Td[(i)-341(c)27(h)1(a\\252upac)28(h.)-341(Koz\\252o)28(w)27(a)-341(jedn)1(a)-342(mimo)-341(w)-1(szys)-1(tk)28(o)-341(j)1(az)-1(gota\\252a)-341(g\\252o\\261)-1(n)1(o)-342(i)-341(wygr)1(a\\273)-1(a)-55(j\\241cy)-341(s)-1(i\\246)]TJ 0 -13.549 Td[(Jagn)1(ie)-401(i)-399(An)28(tk)28(o)28(wi,)-400(ale)-400(widz\\241c)-1(,)-399(\\273)-1(e)-400(j\\241)-400(wsz)-1(y)1(s)-1(cy)-400(o)-28(d)1(s)-1(t\\241)-28(p)1(ili)1(,)-400(nak)1(l\\246)-1(\\252a,)-400(b)29(y)-400(sobie)-400(ul)1(\\273)-1(y\\242)]TJ 0 -13.549 Td[(z\\252)-1(o\\261ci,)-375(sk\\252\\363)-28(ci\\252a)-375(si\\246)-375(z)-375(R)-1(o)-27(c)27(hem,)-375(kt)1(\\363re)-1(n)-374(j)1(e)-1(j)-374(s)-1(\\252o)28(w)28(a)-375(pr)1(a)28(w)-1(d)1(y)-375(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252,)-374(i)-375(p)-27(osz)-1(\\252a)-375(n)1(a)]TJ 0 -13.549 Td[(wie\\261)-1(,)-409(\\273)-1(e)-410(w)-409(k)28(o\\253cu)-409(os)-1(ta\\252o)-409(lu)1(dzi)-410(ma\\252o)-410(wiele)-410(i)-409(ci,)-409(kt\\363rzy)-410(czu)28(w)27(al)1(i)-410(n)1(ad)-409(p)-28(ogor)1(z)-1(el\\241)-409(i)]TJ 0 -13.55 Td[(strze)-1(gli)1(,)-334(b)29(y)-334(w)-333(razie)-334(o)-28(d)1(no)28(wy)-333(ognia)-333(d)1(a\\242)-334(p)-28(omo)-28(c.)]TJ 27.879 -13.549 Td[(Osta\\252)-268(si\\246)-268(w)-269(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-267(i)-268(k)28(o)28(w)28(al,)-268(al)1(e)-269(tak)-267(z)-1(e\\271)-1(l)1(on)28(y)-268(t)28(ym,)-267(c)-1(o)-268(si\\246)-268(s)-1(ta\\252o,)-267(\\273)-1(e)-268(milcz)-1(a\\252,)]TJ -27.879 -13.549 Td[(kr)1(\\246)-1(ci\\252)-318(s)-1(i\\246)-318(nies)-1(p)-27(ok)28(o)-55(jni)1(e)-1(,)-318(zagl\\241da\\252)-318(p)-27(o)-318(k)55(\\241tac)28(h)-318(i)-318(raz)-318(p)-28(o)-318(raz)-318(pr)1(z)-1(egania\\252)-318(\\212ap)-27(\\246)-1(,)-318(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273)-333(z)-1(a)-333(nim)-333(nasz)-1(cz)-1(ekiw)28(a\\252)-334(i)-333(d)1(o)-28(cie)-1(r)1(a\\252...)]TJ 27.879 -13.549 Td[(Boryn)1(a)-320(za\\261)-320(nie)-320(p)-27(ok)56(az)-1(a\\252)-320(si\\246)-320(an)1(i)-320(r)1(az)-1(u)-319(pr)1(z)-1(ez)-320(c)-1(a\\252y)-319(ten)-320(czas)-1(,)-319(p)-28(o)28(wiad)1(ali,)-319(\\273)-1(e)-320(za-)]TJ -27.879 -13.549 Td[(k)28(opa\\252)-314(si\\246)-314(w)-314(pi)1(e)-1(rzyn)28(y)-313(i)-314(\\261pi)1(,)-314(jedn)1(a)-314(t)28(ylk)28(o)-314(J)1(\\363z)-1(k)56(a,)-314(z)-314(zapuc)28(h\\252ymi)-314(o)-27(d)-314(p)1(\\252ac)-1(z\\363)27(w)-314(o)-27(c)-1(zam)-1(i)1(,)]TJ 0 -13.55 Td[(wyzie)-1(r)1(a\\252a)-344(p)1(rze)-1(d)-343(c)28(ha\\252up)-27(\\246)-343(na)-343(nar)1(\\363)-28(d)-343(i)-343(kr)1(y\\252a)-344(si\\246)-343(z)-344(na)28(wrotem,)-343(\\273)-1(e)-344(sama)-344(J)1(agust)27(y)1(nk)56(a)]TJ 0 -13.549 Td[(obr)1(z)-1(\\241d)1(z)-1(a\\252a)-283(gos)-1(p)-27(o)-28(d)1(arst)28(w)27(o,)-283(ale)-283(i)-283(s)-1(tar)1(a)-284(b)29(y\\252a)-284(d)1(z)-1(i)1(s)-1(ia)-55(j)-283(kiej)-283(osa,)-283(k)55(\\241\\261liw)28(a)-283(i)-283(niepr)1(z)-1(y)1(s)-1(t\\246p-)]TJ 0 -13.549 Td[(na)-390(jak)-390(n)1(igdy)84(,)-390(\\273)-1(e)-391(b)1(ali)-390(s)-1(i)1(\\246)-391(jej)-390(p)28(yta\\242,)-390(b)-28(o)-390(tak)-390(o)-28(d)1(p)-28(o)28(wiada\\252a,)-390(i\\273)-391(j)1(akb)28(y)-390(kto)-390(p)-27(okrzyw)]TJ 0 -13.549 Td[(p)-27(oliza\\252.)]TJ 27.879 -13.549 Td[(Za\\261)-436(o)-435(sam)27(ym)-435(p)-28(o\\252u)1(dn)1(iu)-435(p)1(rz)-1(y)1(jec)27(ha\\252)-435(p)1(is)-1(ar)1(z)-436(ze)-436(s)-1(t)1(ra\\273)-1(n)1(ik)56(ami)-435(i)-435(j\\246li)-435(opi)1(s)-1(yw)28(a\\242)]TJ -27.879 -13.55 Td[(p)-27(ogorze)-1(l)-323(i)-324(b)1(ada\\242)-324(p)1(rzyc)-1(zyn)28(y)-323(p)-27(o\\273)-1(ar)1(u,)-323(to)-324(j)1(u\\261c)-1(i)1(,)-324(\\273e)-324(i)-323(re)-1(sz)-1(t)1(a)-324(n)1(aro)-28(du)-323(r)1(oz)-1(p)1(ie)-1(r)1(z)-1(c)28(h\\252a)-324(si\\246)]TJ 0 -13.549 Td[(na)-333(ws)-1(ze)-334(stron)28(y)84(,)-333(b)28(yc)28(h)-333(c)-1(zas)-1(em)-334(n)1(ie)-334(p)-27(o)-28(ci\\241)-28(gn\\246li)-333(do)-333(\\261w)-1(i)1(adcz)-1(enia.)]TJ 27.879 -13.549 Td[(Drogi)-382(z)-382(nag\\252a)-382(opu)1(s)-1(tosz)-1(a\\252y)-382(p)1(ra)28(wie)-383(ca\\252kiem)-1(,)-382(p)1(ra)28(wda,)-382(\\273e)-383(i)-382(\\261)-1(n)1(ieg)-383(w)28(ali\\252)-382(b)-27(e)-1(z-)]TJ -27.879 -13.549 Td[(ustan)1(nie,)-472(a)-472(na)28(w)27(et)-472(jesz)-1(cz)-1(e)-472(m)-1(okr)1(z)-1(ejsz)-1(y)84(,)-472(b)-27(o)-472(nim)-472(tkn)1(\\241\\252)-473(ziem)-1(i)1(,)-472(topn)1(ia\\252)-472(i)-472(grz\\241s)-1(k)56(\\241)]TJ 0 -13.549 Td[(m\\252ak)55(\\241)-338(p)-27(okryw)28(a\\252)-338(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-338(w)-338(c)27(ha\\252u)1(pac)28(h)-338(natomiast)-339(wr)1(z)-1(a\\252o)-338(kieb)28(y)-338(w)-339(u)1(lac)27(h)1(,)-338(b)-28(o)-338(w)]TJ 0 -13.55 Td[(Lip)-27(c)-1(ac)28(h)-399(te)-1(go)-399(dn)1(ia)-399(z)-1(rob)1(i\\252o)-399(s)-1(i\\246)-400(j)1(ak)28(ob)28(y)-399(\\261)-1(wi\\246to)-399(nies)-1(p)-27(o)-28(d)1(z)-1(ian)1(e)-1(,)-399(ma\\252o)-400(kt)1(o)-400(co)-400(r)1(obi\\252)-399(i)]TJ 0 -13.549 Td[(pami\\246ta\\252)-367(o)-368(cz)-1(ym,)-367(\\273e)-368(gdzieniegdzie)-368(kr)1(o)28(w)-1(y)-367(j)1(\\246)-1(cz)-1(a\\252y)-367(pr)1(z)-1(y)-367(p)1(ust)28(yc)27(h)-367(\\273\\252obac)27(h)1(,)-367(a)-368(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(rad)1(z)-1(on)1(o)-336(wsz)-1(\\246dzie,)-335(c)-1(z\\246)-1(sto)-335(kto\\261)-336(si\\246)-336(p)1(rze)-1(m)28(yk)56(a\\252)-336(z)-335(c)27(ha\\252u)1(p)28(y)-335(do)-335(c)27(h)1(a\\252up)28(y)84(,)-335(bab)28(y)-335(l)1(ata\\252y)]TJ 0 -13.549 Td[(z)-325(oz)-1(or)1(am)-1(i)1(,)-325(no)28(win)28(y)-324(kr\\241\\273y\\252y)-324(kiej)-325(wron)29(y)-325(z)-325(k)28(omina)-324(do)-325(k)28(omin)1(a,)-325(a)-325(w)-325(ok)1(nac)27(h)-324(i)-324(prze)-1(d)]TJ 0 -13.549 Td[(dr)1(z)-1(wiami,)-440(to)-440(w)-440(op)1(\\252otk)55(ac)28(h)-440(wyzie)-1(r)1(a\\252y)-440(rozc)-1(i)1(e)-1(k)56(a)28(w)-1(i)1(one)-440(t)28(w)27(arze)-1(,)-439(c)-1(ze)-1(k)56(a)-55(j\\241ce)-1(,)-440(cz)-1(y)-439(te)-1(\\273)]TJ 0 -13.55 Td[(An)28(tk)56(a)-333(p)-28(o)28(wiez)-1(\\241)-333(s)-1(t)1(ra\\273)-1(n)1(iki)1(!)]TJ 27.879 -13.549 Td[(Ciek)55(a)28(w)28(o\\261)-1(\\242)-289(i)-289(zni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(n)1(ie)-289(ros)-1(\\252o)-288(z)-290(go)-27(dzin)28(y)-289(n)1(a)-289(go)-28(d)1(z)-1(in)1(\\246)-1(,)-288(a)-289(n)1(ie)-290(wiad)1(a)-289(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(ni)1(c)-351(p)-27(ew)-1(n)1(e)-1(go,)-349(b)-27(o)-350(c)-1(o)-349(tro)-28(c)28(h\\246)-350(ktosik)-349(w)-1(p)1(ada\\252)-350(zzia)-56(j)1(an)28(y)-350(i)-349(p)-27(o)27(wieda\\252,)-349(\\273)-1(e)-350(j)1(u\\273)-350(p)-28(o)-349(An)28(tk)56(a)]TJ 0 -13.549 Td[(p)-27(os)-1(zli,)-281(d)1(ru)1(dzy)-281(za\\261)-282(p)1(rzys)-1(i)1(\\246)-1(gali,)-280(\\273)-1(e)-281(stra\\273nik)28(\\363)28(w)-281(p)-28(ob)1(i\\252,)-281(wyr)1(w)27(a\\252)-281(si\\246)-281(z)-282(wi\\246z)-1(\\363)28(w)-281(i)-281(w)-281(ca\\252y)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-334(p)-27(osz)-1(ed\\252,)-333(a)-334(i)1(nsi)-333(z)-1(a\\261)-334(zas)-1(i)1(\\246)-334(z)-1(n)1(o)28(w)-1(u)-332(c)-1(o)-333(inn)1(e)-1(go)-333(pl)1(e)-1(tl)1(i.)]TJ 27.879 -13.55 Td[(T)83(o)-435(z)-1(a\\261)-435(ino)-435(b)28(y)1(\\252)-1(o)-435(p)1(ra)28(wd\\241,)-435(\\273)-1(e)-435(Witek)-435(lata\\252)-435(do)-435(k)56(arcz)-1(m)28(y)-435(p)-28(o)-435(gorza\\252k)28(\\246)-436(i)-435(\\273e)-436(z)]TJ -27.879 -13.549 Td[(k)28(omina)-443(Boryn)1(o)27(w)28(e)-1(go)-443(sie)-1(l)1(nie)-443(s)-1(i\\246)-443(kurzy\\252o,)-443(miark)28(o)28(w)28(ali)-443(z)-444(te)-1(go,)-443(co)-443(jak)56(\\241\\261)-444(w)28(arz)-1(\\246)-443(la)]TJ 0 -13.549 Td[(stra\\273nik)28(\\363)28(w)-334(n)1(arz\\241dza)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(A)-303(j)1(u\\273)-303(p)-28(o)-28(d)-302(sa)-1(m)-303(wiec)-1(z\\363r)-303(p)1(rze)-1(j)1(e)-1(c)27(h)1(a\\252a)-303(w)27(\\363)-55(jto)28(w)28(a)-303(br)1(yk)56(a)-303(z)-304(p)1(is)-1(ar)1(z)-1(em)-303(i)-303(s)-1(tr)1(a\\273)-1(n)1(ik)56(a-)]TJ -27.879 -13.549 Td[(mi,)-333(ale)-334(b)-27(e)-1(z)-333(An)28(tk)56(a!)]TJ 27.879 -13.549 Td[(Zdu)1(m)-1(i)1(e)-1(n)1(ie)-257(i)-257(r)1(oz)-1(cz)-1(ar)1(o)27(w)28(ani)1(e)-258(za)28(w)27(o)-27(du)-256(ogarn\\246\\252o)-257(wie\\261)-1(,)-256(b)-27(o)-28(\\242)-257(w)-1(szys)-1(cy)-257(b)29(yli)-256(p)-28(ewni,)]TJ -27.879 -13.55 Td[(\\273e)-333(go)-332(z)-1(ak)1(utego)-332(w)-333(k)56(a)-55(jdan)29(y)-332(p)-28(o)28(wiez)-1(\\241)-332(d)1(o)-332(krem)-1(i)1(na\\252u,)-332(p)1(r\\363\\273no)-332(si\\246)-333(g\\252o)28(wili)-332(a)-332(d)1(e)-1(li)1(b)-28(ero-)]TJ 0 -13.549 Td[(w)28(ali,)-337(co)-337(s)-1(tar)1(y)-337(ze)-1(zna\\252)-337(do)-337(p)1(rotok)28(\\363\\252u)1(,)-337(wie)-1(d)1(z)-1(i)1(a\\252)-337(jeno)-337(o)-337(t)28(ym)-337(w)27(\\363)-55(jt)-337(i)-336(s)-1(o\\252t)28(ys,)-337(ale)-337(c)-1(i)-336(nie)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(e)-1(li)-318(ni)1(c)-319(p)-28(o)28(wiad)1(a\\242)-1(,)-318(wi\\246)-1(c)-319(ciek)56(a)27(w)28(o\\261)-1(\\242)-319(wzros\\252a)-319(ni)1(e)-1(p)-27(omie)-1(r)1(nie)-319(i)-318(sn)28(u\\252y)-318(s)-1(i)1(\\246)-319(przyp)1(usz)-1(-)]TJ 0 -13.549 Td[(cz)-1(enia)-333(coraz)-334(in)1(s)-1(ze)-334(i)-333(z)-1(go\\252a)-333(ni)1(e)-1(p)-27(o)-28(d)1(obne)-333(do)-333(w)-1(i)1(ary)84(...)]TJ 27.879 -13.549 Td[(No)-28(c)-417(si\\246)-417(z)-416(w)27(oln)1(a)-417(zrob)1(i\\252a)-417(ciem)-1(n)1(a)-417(i)-416(d)1(o\\261)-1(\\242)-417(cic)28(ha,)-416(\\261)-1(n)1(ieg)-417(b)28(y)1(\\252)-417(p)1(rz)-1(esta\\252)-417(p)1(ada\\242)-417(i)]TJ -27.879 -13.55 Td[(br)1(a\\252o)-279(j)1(akb)28(y)-278(n)1(a)-278(przymroze)-1(k,)-278(b)-27(o)-278(c)27(h)1(o)-28(\\242)-279(c)28(hm)27(u)1(rzysk)55(a)-278(b)1(ure)-278(przegania\\252y)-278(p)-27(o)-278(niebie,)-278(ale)]TJ 0 -13.549 Td[(gdzieniegdzie,)-348(w)-348(przerw)27(ac)28(h)-348(wysokic)27(h)1(,)-348(b\\252y)1(s)-1(n)1(\\246)-1(\\252a)-348(gwiazda)-348(wyiskrzona)-348(i)-348(ostry)-347(p)-28(o-)]TJ\nET\nendstream\nendobj\n1027 0 obj <<\n/Type /Page\n/Contents 1028 0 R\n/Resources 1026 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1026 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1032 0 obj <<\n/Length 9618      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(320)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(wiew)-339(\\261)-1(cis)-1(k)56(a\\252)-339(zdziebk)28(o)-339(r)1(oz)-1(mi\\246k\\252e)-340(\\261ni)1(e)-1(gi,)-338(\\273)-1(e)-339(c)27(h)1(ru)1(pa\\252y)-339(p)-27(o)-28(d)-338(nogami,)-338(p)-28(o)-338(c)27(ha\\252u)1(pac)27(h)]TJ 0 -13.549 Td[(b\\252y)1(s)-1(k)56(a\\252y)-307(\\261w)-1(i)1(at\\252a,)-307(i)-307(lu)1(dzie)-1(,)-306(kup)1(i\\241c)-307(s)-1(i\\246)-307(p)-27(o)-307(c)-1(iasn)28(yc)28(h)-307(izbac)28(h)-307(p)1(rz)-1(ed)-307(ogn)1(isk)55(ami,)-306(usp)-28(o-)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(ali)-314(si\\246)-315(p)-27(o)-314(c)-1(a\\252o)-28(d)1(z)-1(i)1(e)-1(n)1(n)28(yc)27(h)-313(wz)-1(ru)1(s)-1(zeniac)28(h,)-314(n)1(ie)-315(p)1(rze)-1(sta)-56(j)1(\\241c)-315(j)1(e)-1(d)1(nak)-314(sn)28(u\\242)-314(dom)28(ys)-1(\\252\\363)28(w)]TJ 0 -13.549 Td[(i)-333(pr)1(z)-1(yp)1(usz)-1(cze)-1(\\253)1(!)]TJ 27.879 -13.549 Td[(Bo)-340(ju)1(\\261)-1(ci)-340(mate)-1(r)1(ii)-340(n)1(ie)-341(b)1(rak)28(o)28(w)27(a\\252o,)-339(je\\261)-1(li)-339(b)-28(o)28(wiem)-341(An)28(t)1(k)55(a)-340(n)1(ie)-340(z)-1(ab)1(rali,)-339(to)-340(nie)-340(on)]TJ -27.879 -13.55 Td[(spali\\252,)-396(wi\\246c)-397(kto?)-396({)-397(Ni)1(e)-397(Jagna)-396(pr)1(z)-1(ec)-1(i)1(e)-1(\\273,)-397(n)1(ikt)-396(b)28(y)-396(tem)27(u)-396(wiar)1(y)-396(nie)-397(d)1(a\\252,)-396(nie)-397(stary)1(;)]TJ 0 -13.549 Td[(tak)56(a)-333(m)27(y\\261l)-333(ani)-333(p)-27(os)-1(ta\\252a)-333(k)28(om)27(u)-333(w)-333(g\\252o)27(wie!)]TJ 27.879 -13.549 Td[(B\\252\\241dzili)-341(p)1(rz)-1(eto)-341(kieb)28(y)-341(p)-27(o)-341(omac)27(ku)-340(nie)-341(m)-1(og\\241c)-341(w)-341(\\273)-1(ad)1(e)-1(n)-341(sp)-27(os)-1(\\363b)-340(z)-1(n)1(ale)-1(\\271\\242)-342(wyj)1(-)]TJ -27.879 -13.549 Td[(\\261c)-1(ia)-230(z)-230(m\\246)-1(cz)-1(\\241ce)-1(j)-229(z)-1(agad)1(ki..)1(.)-230(W)83(e)-230(ws)-1(zystkic)27(h)-229(c)27(h)1(a\\252)-1(u)1(pac)28(h)-230(gad)1(ali)-230(o)-230(t)28(ym,)-230(a)-230(ni)1(kto)-230(pr)1(a)27(wd)1(y)]TJ 0 -13.549 Td[(si\\246)-339(ni)1(e)-339(do)28(wiedzia\\252,)-339(t)28(y)1(le)-339(jeno)-338(z)-339(t)28(yc)28(h)-338(delib)-27(e)-1(r)1(ac)-1(j)1(i)-339(wysz\\252)-1(o,)-338(\\273e)-339(gni)1(e)-1(w)-338(do)-338(An)28(tk)56(a)-339(p)1(rze)-1(-)]TJ 0 -13.549 Td[(sz)-1(ed\\252,)-306(z)-1(mil)1(kli)-306(na)28(w)28(e)-1(t)-306(j)1(e)-1(go)-306(wrogo)28(w)-1(i)1(e)-1(,)-306(a)-306(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(le,)-306(jak)-306(M)1(a)-1(t)1(e)-1(u)1(s)-1(z,)-306(p)-28(o)-27(dni)1(e)-1(\\261li)-306(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.55 Td[(obr)1(onn)1(e)-335(g\\252osy;)-333(ale)-334(natomiast)-334(wz)-1(n)1(ie)-1(s\\252a)-334(si\\246)-334(s)-1(r)1(oga)-334(ni)1(e)-1(c)27(h)1(\\246)-1(\\242)-334(ku)-333(Jagn)1(ie)-334(i)-334(d)1(o)-28(c)27(h)1(o)-28(dzi\\252a)]TJ 0 -13.549 Td[(a\\273)-290(d)1(o)-290(zgrozy)-289(s)-1(tr)1(as)-1(znego,)-289(\\261)-1(miertelnego)-289(grze)-1(c)28(h)28(u.)-289(Kob)1(iet)27(y)-289(j)1(\\241)-289(ano)-289(w)-1(zi\\246\\252y)-289(na)-289(oz)-1(or)1(y)-289(i)]TJ 0 -13.549 Td[(tak)-283(p)1(rz)-1(ewlek)55(a\\252y)-283(mi\\246dzy)-283(s)-1(ob)1(\\241,)-284(\\273e)-284(j)1(akb)28(y)-283(p)-27(o)-283(t)27(y)1(c)27(h)-283(ostryc)28(h)-283(cie)-1(r)1(niac)28(h,)-283(ni)1(e)-284(osta)27(wia)-55(j\\241c)]TJ 0 -13.549 Td[(ca\\252)-1(ego)-401(na)28(w)27(et)-401(ni)-401(k)56(a)27(w)28(a\\252k)56(a)-402(sk)28(\\363ry!)-401(Dosta\\252o)-402(si\\246)-402(p)1(rz)-1(y)-401(t)28(ym)-401(i)-402(Domin)1(ik)28(o)28(w)27(ej)-401(ni)1(e)-1(ma\\252o,)]TJ 0 -13.549 Td[(dosta\\252o...)-419(a)-420(jes)-1(zc)-1(ze)-421(i)-419(bar)1(z)-1(ej)-420(cis)-1(k)56(a\\252y)-420(si\\246)-420(na)-420(n)1(i\\241)-420(w)-420(z)-1(\\252o\\261c)-1(i,)-419(\\273)-1(e)-420(nik)1(to)-420(nie)-420(wiedzia\\252,)]TJ 0 -13.55 Td[(co)-357(si\\246)-357(z)-357(J)1(agn\\241)-356(dzie)-1(j)1(e)-1(,)-356(b)-27(o)-356(s)-1(tar)1(a)-357(o)-28(d)1(p)-27(\\246)-1(d)1(z)-1(a\\252a)-356(c)-1(iek)56(a)28(w)-1(y)1(c)27(h)-356(o)-28(d)-356(p)1(roga)-356(kieb)28(y)-356(t)28(yc)27(h)-356(p)1(s)-1(\\363)28(w)]TJ 0 -13.549 Td[(nap)1(rzykr)1(z)-1(on)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Ale)-279(j)1(e)-1(d)1(no,)-279(co)-279(zgo)-28(d)1(nie)-279(i)-278(jednak)28(o)-278(ws)-1(zys)-1(cy)-279(czuli,)-278(to)-279(g\\252\\246b)-28(ok)1(ie)-279(ws)-1(p)-27(\\363\\252c)-1(zucie)-279(dla)]TJ -27.879 -13.549 Td[(Hank)1(i,)-266(nad)-266(kt)1(\\363r\\241)-266(s)-1(i\\246)-266(s)-1(zc)-1(ze)-1(r)1(z)-1(e)-267(l)1(ito)28(w)27(an)1(o)-267(i)-266(\\273a\\252o)27(w)28(ano)-266(se)-1(rd)1(e)-1(cznie,)-266(a)-267(n)1(a)27(w)28(et)-267(K)1(\\252)-1(\\246b)-27(o)27(w)28(a)-266(i)]TJ 0 -13.549 Td[(Si)1(k)28(oro)28(w)27(a)-302(zaraz)-303(z)-302(w)-1(i)1(e)-1(cz)-1(or)1(a)-303(p)-27(osz)-1(\\252y)-302(do)-302(n)1(ie)-1(j)-301(z)-303(dob)1(rym)-302(s)-1(\\252o)28(w)28(e)-1(m)-303(wzi\\241)28(ws)-1(zy)-302(c)-1(o\\261)-302(niec)-1(o\\261)]TJ 0 -13.55 Td[(w)-334(w)28(\\246z)-1(e\\252ki.)]TJ 27.879 -13.549 Td[(T)83(ak)-402(ano)-403(p)1(rze)-1(sz)-1(ed\\252)-402(on)-403(d)1(z)-1(i)1(e)-1(\\253)-402(na)-402(d\\252ugo)-402(pami\\246tliwy)83(,)-402(naza)-56(j)1(utr)1(z)-403(z)-1(a\\261)-403(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(k)28(o)-345(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(o)-344(do)-345(da)28(wnego,)-345(ciek)55(a)28(w)28(o\\261)-1(\\242)-345(pr)1(z)-1(ygas\\252a,)-345(gni)1(e)-1(wy)-345(ost)28(yg\\252y)83(,)-344(w)-1(zbu)1(rze)-1(n)1(ie)-345(s)-1(i\\246)]TJ 0 -13.549 Td[(ucisz)-1(y)1(\\252)-1(o)-384(i)-384(op)1(ad\\252o,)-384(ku)1(\\273)-1(den)-384(zno)28(wu)-384(wr\\363)-28(ci\\252)-384(do)-384(s)-1(w)28(o)-56(j)1(e)-1(j)-383(k)28(ole)-1(i)1(n)28(y)83(,)-384(p)-27(o)-28(c)28(h)28(yli\\252)-384(g\\252o)28(w)27(\\246)-384(p)-28(o)-28(d)]TJ 0 -13.549 Td[(jar)1(z)-1(mem)-334(i)-333(ni\\363s\\252)-333(dol\\246,)-333(jak)-333(P)28(an)-333(B\\363g)-333(przyk)56(az)-1(a\\252,)-333(b)-27(e)-1(z)-333(s)-1(ze)-1(mran)1(ia)-333(i)-334(z)-333(c)-1(ierp)1(liw)28(o\\261)-1(ci\\241.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci\\242)-1(,)-488(\\273)-1(e)-489(gad)1(ano)-489(tu)-488(i)-489(o)28(wdzie)-489(o)-489(t)28(yc)27(h)-488(zdarzeniac)28(h,)-489(al)1(e)-490(coraz)-489(rzadziej)-489(i)]TJ -27.879 -13.549 Td[(p\\252on)1(iej,)-334(b)-28(o)-27(\\242)-335(k)56(a\\273)-1(d)1(e)-1(m)28(u)-334(bli\\273sz)-1(e)-335(s\\241)-335(i)-334(p)1(ie)-1(r)1(ws)-1(ze)-335(w\\252)-1(asne)-334(troski)-334(a)-335(f)1(rasunk)1(i,)-334(jaki)1(e)-335(dzie)-1(\\253)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(y)-333(z)-334(os)-1(ob)1(na)-333(pr)1(z)-1(yn)1(os)-1(i)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-440(m)-1(ar)1(z)-1(ec)-441(i)-439(nasta\\252y)-440(cz)-1(asy)-440(zgo\\252)-1(a)-440(n)1(ie)-440(do)-440(wytr)1(z)-1(y)1(m)-1(an)1(ia,)-440(d)1(nie)-440(b)28(y\\252y)]TJ -27.879 -13.549 Td[(cie)-1(mne,)-245(s)-1(m)28(utn)1(e)-247(i)-245(tak)-245(pr)1(z)-1(ej\\246te)-246(plu)1(c)27(h)1(\\241,)-246(d)1(e)-1(sz)-1(cz)-1(ami,)-245(to)-246(\\261ni)1(e)-1(giem)-246(mokrym,)-245(\\273)-1(e)-246(tr)1(udn)1(o)]TJ 0 -13.55 Td[(si\\246)-312(b)28(y\\252o)-312(wyc)28(h)28(yli\\242)-312(za)-312(c)27(h)1(a\\252up)-27(\\246)-1(,)-311(s)-1(\\252o\\253)1(c)-1(e)-312(j)1(akb)28(y)-312(si\\246)-312(gd)1(z)-1(ies)-1(i)1(k)-312(zatraci\\252o)-312(w)-312(t)28(yc)27(h)-311(n)1(is)-1(k)1(ic)27(h)1(,)]TJ 0 -13.549 Td[(zie)-1(l)1(ona)28(wyc)27(h)-347(top)1(ie)-1(l)1(ac)27(h)-347(c)27(h)1(m)27(u)1(r,)-347(\\273)-1(e)-347(na)28(w)27(et)-347(i)-348(n)1(a)-347(to)-348(o)-28(cz\\363)27(w)-347(m)-1(gn)1(ienie)-348(n)1(ie)-348(r)1(oz)-1(b)1(\\252)-1(y)1(s)-1(k)56(a\\252o)]TJ 0 -13.549 Td[({)-376(\\261ni)1(e)-1(gi)-375(z)-376(w)27(oln)1(a)-376(top)1(nia\\252y)-375(alb)-27(o)-376(p)-27(o)-28(d)1(m)-1(i\\246k\\252e,)-376(s\\015a\\273one)-376(zie)-1(l)1(e)-1(n)1(i\\252y)-376(si\\246)-376(o)-28(d)-375(p)1(luc)28(h)28(y)-376(k)1(ie)-1(j)]TJ 0 -13.549 Td[(pl)1(e)-1(\\261ni\\241)-436(obr)1(os)-1(\\252e,)-437(w)28(o)-28(d)1(a)-437(sta\\252a)-437(w)-437(b)1(ruzdac)28(h)-436(i)-437(zatapi)1(a\\252a)-437(n)1(iz)-1(in)29(y)-437(i)-436(ob)-27(e)-1(j)1(\\261)-1(cia,)-436(no)-28(cami)]TJ 0 -13.549 Td[(za\\261)-353(bra\\252y)-352(p)1(rz)-1(y)1(m)-1(r)1(oz)-1(ki)1(,)-352(\\273)-1(e)-353(tr)1(ud)1(no)-352(s)-1(i\\246)-353(b)29(y\\252o)-353(u)1(trzyma\\242)-353(na)-352(olo)-28(d)1(o)28(w)27(acia\\252yc)27(h)-352(d)1(rogac)27(h)]TJ 0 -13.549 Td[(i)-333(pr)1(z)-1(ej\\261c)-1(i)1(ac)27(h.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(ez)-478(taki)-477(psi)-478(cz)-1(as)-478(p)1(r\\246)-1(d)1(z)-1(ej)-477(i)-478(zap)-28(omn)1(iano)-478(o)-477(p)-28(o\\273arze)-1(,)-477(ile)-478(\\273e)-478(ni)-477(B)-1(or)1(yna,)]TJ -27.879 -13.549 Td[(ni)-445(An)29(te)-1(k,)-445(n)1(i)-445(Jagna)-445(ni)1(e)-446(dr)1(a\\273)-1(n)1(ili)-445(sob\\241)-445(lud)1(z)-1(k)1(ic)27(h)-445(o)-27(c)-1(z\\363)27(w,)-445(to)-445(wpad)1(li)-445(w)-446(n)1(ie)-1(p)1(ami\\246)-1(\\242)]TJ 0 -13.549 Td[(jak)28(o)-364(t)1(e)-1(n)-364(k)56(amie\\253)-364(n)1(a)-365(d)1(no,)-363(\\273)-1(e)-364(jeno)-364(w)28(o)-28(da)-364(cz)-1(asami)-364(z)-1(gu)1(rbi)-363(s)-1(i\\246)-364(nad)-363(nim,)-364(zmars)-1(zcz)-1(y)84(,)]TJ 0 -13.549 Td[(p)-27(o\\252am)-1(ie,)-333(rozk)28(ole)-1(si,)-333(zas)-1(ze)-1(mrze)-334(i)-333(zno)28(wu)-333(p\\252yn)1(ie)-334(sp)-28(ok)28(o)-55(jn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(T)83(ak)-333(pr)1(z)-1(es)-1(z\\252o)-333(dni)-333(p)1(ar\\246)-334(a\\273)-334(d)1(o)-333(os)-1(tatn)1(iego,)-334(zapu)1(s)-1(t)1(nego)-334(wtork)1(u.)]TJ 0 -13.55 Td[(\\233e)-331(za\\261)-331(os)-1(tatk)1(i)-331(b)29(y\\252y)-331(p)-27(\\363\\252\\261w)-1(i)1(\\241tkiem)-1(,)-330(wi\\246c)-331(ju)1(\\273)-331(o)-28(d)-330(s)-1(amego)-331(ran)1(a)-331(n)1(iem)-1(a\\252y)-330(ru)1(c)27(h)]TJ -27.879 -13.549 Td[(uczyni\\252)-269(s)-1(i\\246)-270(p)-27(o)-269(c)27(ha\\252u)1(pac)27(h)1(,)-270(b)-27(o)-270(p)1(rzy)28(ogarn)1(iano)-269(niec)-1(o)-269(izb)28(y)83(,)-269(a)-270(z)-270(k)56(a\\273dego)-270(pr)1(a)28(w)-1(i)1(e)-270(dom)27(u)]TJ\nET\nendstream\nendobj\n1031 0 obj <<\n/Type /Page\n/Contents 1032 0 R\n/Resources 1030 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1030 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1035 0 obj <<\n/Length 9411      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(321)]TJ -358.232 -35.866 Td[(ktosik)-262(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-263(d)1(o)-262(m)-1(iastec)-1(zk)56(a)-263(za)-262(r\\363\\273)-1(n)1(o\\261)-1(ciami,)-262(g\\252\\363)28(w)-1(n)1(ie)-263(za\\261)-263(p)-27(o)-262(m)-1(i\\246so)-263(alb)-27(o)-262(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(p)-27(o)-237(ten)-237(k)56(a)28(w)27(a\\252)-237(k)1(ie)-1(\\252b)1(as)-1(y)-236(lub)-236(sp)-28(erki)1(,)-237(jeno)-236(biedota)-236(m)27(usia\\252a)-237(si\\246)-237(ku)1(n)28(te)-1(n)29(to)28(w)27(a\\242)-237(\\261)-1(l)1(e)-1(d)1(z)-1(iem,)]TJ 0 -13.549 Td[(wz)-1(i)1(\\246)-1(t)28(ym)-333(na)-333(b)-28(\\363r)1(g)-334(o)-28(d)-332(\\233)-1(y)1(da,)-333(i)-333(z)-1(i)1(e)-1(mni)1(ak)55(ami)-333(z)-1(e)-333(s)-1(ol\\241.)]TJ 27.879 -13.549 Td[(U)-388(b)-27(ogac)-1(zy)-388(to)-388(ju)1(\\273)-389(o)-27(d)-388(sam)-1(ego)-388(p)-28(o\\252u)1(dn)1(ia)-388(s)-1(ma\\273)-1(on)1(o)-388(p\\241cz)-1(k)1(i,)-388(\\273e)-389(mimo)-388(plu)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(p)-27(o)-364(ca\\252e)-1(j)-363(ws)-1(i)-363(r)1(oz)-1(w\\252\\363)-28(cz)-1(y\\252y)-363(s)-1(i)1(\\246)-364(z)-1(ap)1(ac)27(h)28(y)-363(pr)1(z)-1(epal)1(onego)-364(sz)-1(malcu,)-363(pr)1(a\\273)-1(on)28(y)1(c)27(h)-363(mi\\246)-1(siw)]TJ 0 -13.55 Td[(i)-333(jensz)-1(e,)-333(bar)1(z)-1(ej)-333(jes)-1(zc)-1(ze)-334(j)1(\\241trz\\241c)-1(e)-334(\\261lin)1(\\246)-334(sm)-1(aki)1(.)]TJ 27.879 -13.549 Td[(Nied\\271wie)-1(d)1(nik)1(i)-376(w\\252)-1(\\363)-27(c)-1(zy\\252y)-376(si\\246)-377(zno)28(wu)-376(o)-27(d)-376(c)27(h)1(a\\252up)28(y)-375(do)-376(c)27(h)1(a\\252up)28(y)-376(ze)-376(s)-1(w)28(oimi)-376(c)-1(u)1(-)]TJ -27.879 -13.549 Td[(dak)56(ami,)-321(\\273e)-322(w)28(c)-1(i\\241\\273)-321(a)-321(c)-1(or)1(az)-322(w)-321(inn)1(e)-1(j)-320(s)-1(tr)1(onie)-321(bu)1(c)27(ha\\252y)-321(wr)1(z)-1(a)28(wliw)28(e)-322(g\\252os)-1(y)-320(c)27(h\\252op)1(ak)28(\\363)27(w..)1(.)]TJ 27.879 -13.549 Td[(Wiecz)-1(orem)-381(za\\261)-381(p)-27(o)-380(k)28(olacji)-380(zrobil)1(i)-380(m)27(u)1(z)-1(yk)28(\\246)-380(w)-381(k)56(arcz)-1(mie,)-380(na)-380(kt\\363r)1(\\241,)-380(kto)-380(\\273)-1(y)1(w)]TJ -27.879 -13.549 Td[(i)-442(ru)1(c)27(h)1(a\\252)-442(nogami,)-442(p)-27(os)-1(p)1(ie)-1(szy\\252,)-442(nie)-442(bacz\\241c)-443(na)-442(d)1(e)-1(sz)-1(cz)-442(z)-1(e)-442(\\261)-1(n)1(ie)-1(gi)1(e)-1(m,)-442(jak)1(i)-442(z)-1(ar)1(az)-443(o)-28(d)]TJ 0 -13.549 Td[(zm)-1(ierzc)27(h)28(u)-290(pad)1(a\\252.)-291(Zaba)28(wian)1(o)-291(s)-1(i\\246)-291(ze)-292(wsz)-1(ystkiego)-291(se)-1(r)1(c)-1(a,)-291(i)1(le)-291(\\273)-1(e)-291(to)-291(ostatni)-290(raz)-291(prze)-1(d)]TJ 0 -13.55 Td[(Wielki)1(m)-297(P)28(oste)-1(m.)-296(Mateusz)-297(gra\\252)-296(na)-296(s)-1(k)1(rzypicy)84(,)-297(o)-27(d)-296(w)-1(t)1(\\363ru)-296(m)27(u)-296(p)1(rze)-1(b)1(iera\\252)-297(n)1(a)-297(\\015)1(e)-1(ciku)]TJ 0 -13.549 Td[(Pi)1(e)-1(tr)1(e)-1(k,)-333(Boryn)1(\\363)28(w)-334(p)1(arob)-27(e)-1(k,)-333(a)-333(pr)1(z)-1(yb)-27(\\246bni)1(a\\252)-334(Jasiek)-333(Prze)-1(wr)1(otn)28(y)83(.)]TJ 27.879 -13.549 Td[(Hul)1(ano)-233(o)-27(c)27(hot)1(nie)-233(j)1(ak)-233(ma\\252o)-233(ki)1(e)-1(d)1(y)-233(i)-232(do)-232(p)-28(\\363\\271na,)-232(do)-232(te)-1(l)1(a,)-233(p)-27(\\363ki)-232(dzw)27(on)-232(na)-232(k)28(o\\261)-1(ciele)]TJ -27.879 -13.549 Td[(ni)1(e)-280(u)1(derzy\\252)-279(na)-279(znak,)-278(\\273)-1(e)-279(to)-279(ju)1(\\273)-280(p)-27(\\363\\252no)-28(c)-279(i)-279(zapu)1(s)-1(tom)-279(k)28(oni)1(e)-1(c;)-279(wnet)-279(z)-1(mil)1(k\\252y)-279(m)27(u)1(z)-1(y)1(c)27(kie)]TJ 0 -13.549 Td[(g\\252os)-1(y)84(,)-345(zaprze)-1(stan)1(o)-346(t)1(a\\253c\\363)27(w,)-345(d)1(opito)-345(spi)1(e)-1(sz)-1(n)1(ie)-346(\\015)1(ac)27(h)-345(i)-345(k)1(ie)-1(l)1(is)-1(zk)28(\\363)28(w,)-345(i)-345(nar)1(\\363)-28(d)-345(si\\246)-346(cic)27(h)1(o)]TJ 0 -13.55 Td[(rozc)27(h)1(o)-28(dzi\\252.)-343(\\273)-1(e)-344(osta\\252)-344(j)1(e)-1(n)1(o)-344(Jam)28(br)1(o)-1(\\273y)84(,)-344(n)1(iez)-1(gorze)-1(j)-343(n)1(api)1(t)27(y)84(,)-343(b)-28(o)-343(s)-1(w)28(oim)-344(zwyc)-1(za)-56(j)1(e)-1(m)-343(j\\241\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(k)56(arcz)-1(m\\241)-334(wy\\261pi)1(e)-1(wyw)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-271(w)-272(c)28(ha\\252up)1(ie)-271(Dom)-1(in)1(ik)28(o)28(w)27(ej)-271(b)1(\\252ys)-1(zc)-1(za\\252o)-271(\\261)-1(wiat\\252o)-271(do)-271(p)-27(\\363\\271na,)-271(p)-27(o)27(wiad)1(ali,)-271(\\273e)]TJ -27.879 -13.549 Td[(do)-325(d)1(rugi)1(c)27(h)-325(k)1(ur\\363)28(w,)-325(b)-27(o)-326(siedzia\\252)-325(tam)-326(an)1(o)-325(w)27(\\363)-55(jt)-325(ze)-326(so\\252)-1(t)28(y)1(s)-1(em)-326(i)-325(zgo)-28(d\\246)-325(c)-1(zyn)1(ili)-325(mi\\246dzy)]TJ 0 -13.549 Td[(Jagn)1(\\241)-334(a)-333(Bo)-1(r)1(yn\\241.)]TJ 27.879 -13.55 Td[(Wie\\261)-394(j)1(u\\273)-393(da)28(wno)-393(spa\\252a,)-393(cic)27(h)1(o\\261)-1(\\242)-393(ob)-55(j\\246\\252)-1(a)-393(\\261wiat,)-393(b)-27(o)-393(des)-1(zc)-1(z)-393(jak)28(o\\261)-393(z)-394(p)-27(\\363\\252no)-28(c)28(k)55(a)]TJ -27.879 -13.549 Td[(usta\\252,)-333(a)-333(oni)-333(jes)-1(zc)-1(ze)-334(r)1(adzili..)1(.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Jeno)-224(w)-224(An)28(tk)28(o)28(wym)-224(dom)28(u)-224(n)1(ie)-224(b)28(y\\252o)-224(cic)27(h)1(o\\261)-1(ci)-224(ni)-223(s)-1(p)-27(ok)28(o)-56(j)1(nego)-224(\\261piku)1(,)-224(n)1(i)-224(w)27(eso\\252)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(ostatk)28(\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(Co)-268(si\\246)-268(tam)-268(d)1(z)-1(ia\\252o)-267(w)-268(Han)1(c)-1(zynej)-267(du)1(s)-1(zy)-268(p)1(rze)-1(z)-268(te)-268(d)1(\\252ugie)-268(d)1(ni)-267(i)-267(no)-28(ce)-1(,)-267(o)-28(d)-267(tej)-267(mi-)]TJ -27.879 -13.549 Td[(n)28(u)1(t)28(y)-269(gdy)-268(j\\241)-268(w)-269(c)-1(zas)-269(p)-28(o\\273aru)-268(s)-1(p)-27(otk)56(a\\252)-269(p)1(rz)-1(ed)-268(c)27(ha\\252u)1(p\\241)-268(i)-269(si\\252\\241)-269(pr)1(z)-1(yn)1(iew)27(oli)1(\\252)-269(do)-268(p)-28(o)28(wrotu)1(,)]TJ 0 -13.549 Td[(to)-333(c)27(h)28(y)1(ba)-333(jeden)-333(P)28(an)-333(B\\363g)-334(wie,)-333(ale)-334(tego)-333(\\273)-1(ad)1(ne)-334(lu)1(dzkie)-334(s\\252o)28(w)27(o)-333(ni)1(e)-334(wyp)-28(omn)1(i.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(jes)-1(zc)-1(ze)-334(tej)-333(s)-1(ame)-1(j)-332(no)-28(cy)-333(do)28(wie)-1(d)1(z)-1(i)1(a\\252a)-334(si\\246)-334(ws)-1(zystkiego)-333(o)-28(d)-333(W)83(eron)1(ki.)]TJ 0 -13.549 Td[(T)83(o)-230(z)-1(amar\\252a)-230(w)-231(n)1(iej)-230(du)1(s)-1(za)-231(o)-27(d)-230(m\\246)-1(ki)-230(i)-230(le\\273)-1(a\\252a)-230(j)1(ak)28(o)-231(ten)-230(tru)1(p)-230(nagi)1(,)-230(\\261)-1(mierci\\241)-231(sw)28(o)-56(j\\241)]TJ -27.879 -13.55 Td[(okr)1(opn)28(y)84(.)-477(Pr)1(z)-1(ez)-477(pierws)-1(ze)-477(dw)28(a)-477(dni)-476(pr)1(a)27(wie)-477(s)-1(i)1(\\246)-478(n)1(ie)-477(rusz)-1(a\\252a)-477(o)-27(d)-477(p)1(rz)-1(\\246\\261licy)83(,)-477(p)1(rz\\241\\261)-1(\\242)]TJ 0 -13.549 Td[(ni)1(e)-461(prz\\246d\\252a,)-460(a)-461(jeno)-460(ru)1(c)27(h)1(a\\252)-1(a)-460(b)-27(e)-1(zw)27(oln)1(ie)-461(r\\246k)56(am)-1(i)1(,)-461(j)1(ak)28(o)-461(ten)-460(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-460(w)27(e)-461(\\261pi)1(\\241c)-1(zc)-1(e)]TJ 0 -13.549 Td[(\\261m)-1(ierteln)1(e)-1(j)1(,)-376(zapatr)1(z)-1(on)1(a)-376(p)1(ust)28(ym,)-376(wy\\273art)28(ym)-376(wzroki)1(e)-1(m)-376(w)-375(s)-1(iebi)1(e)-1(,)-375(w)-376(te)-376(l)1(ute)-376(wieje)]TJ 0 -13.549 Td[(sm)27(ut)1(k)28(\\363)27(w,)-323(w)-323(te)-324(\\273a\\252os)-1(n)1(e)-324(o)-28(d)1(m)-1(\\246t)28(y)-323(\\252e)-1(z)-323(pal\\241cyc)28(h,)-323(kr)1(z)-1(ywd)-323(i)-322(nies)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(ci,)-323(\\273e)-324(n)1(i)]TJ 0 -13.549 Td[(spa\\252a)-350(prze)-1(z)-350(te)-1(n)-350(cz)-1(as,)-350(ni)-350(j)1(ad\\252a,)-350(ni)-350(wiedzia\\252a)-351(d)1(obr)1(z)-1(e,)-350(c)-1(o)-350(s)-1(i\\246)-350(w)27(ok)28(o\\252o)-350(dzieje,)-351(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(p\\252acz)-1(\\363)28(w)-440(dziec)-1(i\\253)1(s)-1(k)1(ic)27(h)-439(niep)-28(omn)1(a)-441(n)1(i)-440(sie)-1(b)1(ie,)-440(a\\273)-441(u)1(lito)28(w)28(a\\252)-1(a)-440(si\\246)-440(nad)-440(n)1(i\\241)-440(W)84(e)-1(ron)1(k)56(a)-440(i)]TJ 0 -13.55 Td[(za)-56(j\\246\\252a)-366(s)-1(i\\246)-367(d)1(z)-1(i)1(e)-1(\\242m)-1(i)-366(i)-366(starym,)-366(kt\\363r)1(e)-1(n)-366(n)1(a)-367(d)1(obitk)28(\\246)-366(z)-1(ac)28(horza\\252)-367(p)-27(o)-366(t)28(ym)-367(c)27(h)1(o)-28(d)1(z)-1(eniu)-366(d)1(o)]TJ 0 -13.549 Td[(lasu)-333(i)-333(le\\273)-1(a\\252)-333(na)-333(przyp)1(ie)-1(c)28(ku)-333(p)-27(os)-1(t\\246ku)1(j\\241c)-334(z)-333(c)-1(ic)28(ha.)]TJ 27.879 -13.549 Td[(An)28(tk)56(a)-438(te\\273)-439(j)1(akb)28(y)-438(n)1(ie)-439(b)29(y\\252o,)-438(wyc)27(h)1(o)-28(dzi\\252)-438(r\\363)28(wno)-438(ze)-439(\\261wite)-1(m,)-438(a)-438(wraca\\252)-438(p)-28(\\363\\271n\\241)]TJ -27.879 -13.549 Td[(no)-27(c)-1(\\241,)-403(nie)-404(b)1(ac)-1(z\\241c)-404(na)-404(n)1(i\\241)-404(n)1(i)-404(n)1(a)-404(dziec)-1(i)1(,)-404(a)-404(zres)-1(zt\\241)-404(n)1(ie)-404(m)-1(og\\252a)-403(s)-1(i\\246)-404(p)1(rze)-1(m\\363)-28(c)-404(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(na)-355(to)-355(j)1(e)-1(d)1(no)-355(s\\252o)27(w)28(o)-355(do)-355(n)1(ie)-1(go,)-355(n)1(ie)-355(p)-28(or)1(e)-1(d)1(z)-1(i\\252a,)-355(tak)-354(z)-1(ap)1(ie)-1(k)1(\\252)-1(\\241)-355(mia\\252a)-355(du)1(s)-1(z\\246)-356(z)-355(\\273)-1(a\\252o\\261c)-1(i)-354(i)]TJ 0 -13.55 Td[(jak)1(b)28(y)-333(na)-333(k)56(am)-1(ie\\253)-333(st\\246)-1(\\273a\\252\\241.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-511(trze)-1(ciego)-511(d)1(nia)-510(jak)28(o\\261)-511(pr)1(z)-1(ebu)1(dzi\\252a)-511(s)-1(i)1(\\246)-1(;)-510(pr)1(z)-1(ec)27(kn)1(\\246)-1(\\252a)-511(j)1(akb)28(y)-510(z)-1(e)-511(sn)28(u)]TJ\nET\nendstream\nendobj\n1034 0 obj <<\n/Type /Page\n/Contents 1035 0 R\n/Resources 1033 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1033 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1038 0 obj <<\n/Length 9729      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(322)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(strasz)-1(n)1(e)-1(go,)-312(ale)-313(tak)-312(zm)-1(i)1(e)-1(n)1(iona,)-312(\\273e)-313(kieb)28(y)-312(z)-1(go\\252a)-312(inn)1(a)-313(p)-27(o)-28(d)1(nies)-1(\\252a)-312(s)-1(i)1(\\246)-313(z)-313(tej)-312(m)-1(ar)1(t)28(w)-1(i)1(c)-1(y)84(,)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-411(mia\\252a)-411(sz)-1(ar)1(\\241,)-411(p)-27(opi)1(e)-1(ln)1(\\241)-411(zgo\\252a,)-410(p)-28(or)1(yt\\241)-411(zmarsz)-1(cz)-1(k)56(ami,)-410(p)-28(ostarza\\252\\241)-411(o)-410(lata,)-410(a)]TJ 0 -13.549 Td[(tak)-407(pr)1(z)-1(y)1(s)-1(t)28(yg\\252\\241,)-407(\\273e)-408(jak)28(ob)28(y)-407(j)1(\\241)-408(k)1(to)-408(z)-407(drze)-1(w)28(a)-407(w)-1(y)1(rze)-1(za\\252,)-408(j)1(e)-1(n)1(o)-407(o)-28(c)-1(zy)-407(gorza\\252y)-408(b)29(ys)-1(t)1(ro)]TJ 0 -13.549 Td[(a)-372(s)-1(u)1(c)27(h)1(o)-373(i)-371(usta)-373(zacina\\252y)-372(si\\246)-373(mo)-28(cno,)-372(op)1(ad\\252a)-372(pr)1(z)-1(y)-372(t)28(ym)-372(do)-372(cna)-372(z)-373(cia\\252a,)-372(\\273e)-373(sz)-1(mat)28(y)]TJ 0 -13.549 Td[(wisia\\252y)-333(na)-333(niej)-333(kiej)-333(na)-333(k)28(o\\252ku)1(.)]TJ 27.879 -13.55 Td[(P)28(o)28(ws)-1(ta\\252a)-321(zno)28(wu)-321(d)1(o)-322(\\273ycia,)-321(ale)-321(i)-321(na)-321(wn\\241tr)1(z)-1(u)-320(prze)-1(mieni)1(ona,)-321(b)-27(o)-321(c)27(ho)-27(\\242)-322(da)28(wn\\241)]TJ -27.879 -13.549 Td[(du)1(s)-1(z\\246)-257(m)-1(i)1(a\\252a)-257(jakb)29(y)-257(ze)-1(tl)1(on\\241)-257(n)1(a)-257(pr)1(o)-28(c)27(h)1(,)-257(to)-257(w)-257(serc)-1(u)-256(p)-27(o)-28(cz)-1(u)1(\\252)-1(a)-256(jak)56(\\241\\261)-257(dziwn\\241,)-256(nie)-257(o)-28(d)1(c)-1(zu-)]TJ 0 -13.549 Td[(w)28(an\\241)-314(d)1(a)27(wn)1(ie)-1(j)-313(mo)-28(c)-1(,)-313(ni)1(e)-1(u)1(s)-1(t\\246pli)1(w)27(\\241)-314(si\\252\\246)-314(\\273)-1(y)1(c)-1(ia)-313(i)-314(w)27(al)1(ki,)-313(hard)1(\\241)-314(p)-27(e)-1(wno\\261\\242)-1(,)-313(\\273)-1(e)-314(p)1(rze)-1(mo\\273)-1(e)]TJ 0 -13.549 Td[(i)-333(w)27(e\\271m)-1(ie)-333(g\\363r\\246)-334(n)1(ad)-333(ws)-1(zys)-1(tk)1(im.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(pad\\252a)-276(z)-1(ar)1(az)-277(do)-277(d)1(z)-1(i)1(e)-1(ci)-277(p)-27(op)1(\\252)-1(ak)1(uj)1(\\241c)-1(yc)28(h)-277(\\273a\\252o\\261)-1(n)1(ie,)-277(ogar)1(n\\246\\252a)-277(je)-277(sob\\241)-276(i)-277(d)1(z)-1(i)1(w)]TJ -27.879 -13.549 Td[(ni)1(e)-357(z)-1(ad)1(usi\\252a)-357(w)-357(ca\\252unk)56(ac)28(h)-357(i)-356(wraz)-357(z)-357(ni)1(m)-1(i)-356(bu)1(c)27(h)1(n\\246)-1(\\252a)-356(d\\252u)1(gim)-1(,)-356(s\\252)-1(o)-27(dki)1(m)-357(p\\252ac)-1(zem)-1(,)-356(to)]TJ 0 -13.55 Td[(jej)-333(d)1(opiero)-333(ul\\273y\\252o)-333(i)-333(p)-28(o)28(wr\\363)-28(ci\\252o)-333(c)-1(a\\252ki)1(e)-1(m)-334(d)1(o)-333(pami\\246)-1(ci.)]TJ 27.879 -13.549 Td[(Up)-27(orz\\241dk)28(o)28(w)27(a\\252a)-227(pr)1(\\246)-1(d)1(k)28(o)-228(izb)-27(\\246)-228(i)-228(p)-27(osz)-1(\\252a)-227(do)-227(W)83(eronk)1(i)-228(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)28(a\\242)-228(z)-1(a)-227(dob)1(re)-228(se)-1(r)1(c)-1(e)-228(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(epr)1(as)-1(za\\242)-316(za)-315(d)1(a)27(wn)1(e)-316(win)29(y;)-315(zgo)-28(da)-314(w)-1(n)1(e)-1(t)-314(nast\\241)-28(pi)1(\\252a,)-315(ni)1(e)-316(d)1(z)-1(i)1(w)-1(i)1(\\252)-1(a)-314(s)-1(i\\246)-315(tem)27(u)-314(s)-1(i)1(os)-1(tr)1(a,)]TJ 0 -13.549 Td[(a)-464(jeno)-464(te)-1(go)-464(nie)-465(mog\\252a)-464(z)-1(miark)28(o)28(w)28(a\\242)-1(,)-464(\\273)-1(e)-464(Hank)56(a)-465(si\\246)-465(n)1(ie)-465(sk)55(ar)1(\\273)-1(y\\252a)-464(na)-464(An)28(tk)56(a,)-464(nie)]TJ 0 -13.549 Td[(p)-27(om)-1(sto)28(w)27(a\\252a,)-329(n)1(ie)-330(wyrze)-1(k)56(a\\252a)-329(na)-329(dol)1(\\246)-1(,)-329(ni)1(e)-1(,)-329(j)1(akb)28(y)-329(te)-330(r)1(z)-1(ec)-1(zy)-329(umar\\252y)-329(da)28(wno)-329(i)-329(pad)1(\\252y)]TJ 0 -13.55 Td[(w)-334(n)1(iepami\\246\\242)-1(,)-333(t)28(yle)-333(c)-1(o)-333(w)-334(k)28(o\\253)1(c)-1(u)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(t)28(w)27(ar)1(do:)]TJ 27.879 -13.549 Td[(T)83(ak)-262(s)-1(i\\246)-263(teraz)-263(cz)-1(u)1(j\\246)-263(kiej)-263(wd)1(o)27(w)28(a,)-263(t)1(o)-263(ju)1(\\261)-1(ci,)-263(\\273e)-263(ju)1(\\273)-263(s)-1(ama)-263(m)27(u)1(s)-1(z\\246)-263(s)-1(i)1(\\246)-264(p)-27(otu)1(rb)-27(o)27(w)28(a\\242)]TJ -27.879 -13.549 Td[(o)-333(dzie)-1(ciac)28(h)-333(i)-333(o)-334(wsz)-1(ystkim.)]TJ 27.879 -13.549 Td[(I)-404(w)-1(k)1(r\\363tc)-1(e,)-404(jes)-1(zc)-1(ze)-405(tego)-405(d)1(nia)-404(na)-404(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzu,)-404(p)-28(osz\\252)-1(a)-404(na)-404(wie\\261)-405(do)-404(K\\252\\246)-1(b)-27(\\363)28(w)]TJ -27.879 -13.549 Td[(i)-381(insz)-1(y)1(c)27(h)-381(z)-1(n)1(a)-56(j)1(om)-1(k)28(\\363)28(w,)-382(b)29(yc)27(h)-381(si\\246)-382(przew)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(,)-381(co)-382(s)-1(i)1(\\246)-382(tam)-382(z)-382(B)-1(or)1(yn\\241)-381(dzie)-1(j)1(e)-1(.)1(..)-382(b)-27(o)-28(\\242)]TJ 0 -13.55 Td[(dob)1(rze)-334(zapami\\246)-1(t)1(a)-1(\\252a)-333(jego)-333(s)-1(\\252o)28(w)27(a)-333(wyrzec)-1(zone)-334(wtedy)-333(pr)1(z)-1(y)-333(r)1(oz)-1(staniu)1(.)]TJ 27.879 -13.549 Td[(Ale)-328(nie)-328(p)-28(osz)-1(\\252a)-328(zaraz)-329(d)1(o)-328(niego,)-328(pr)1(z)-1(ec)-1(ze)-1(k)56(a\\252a)-328(jes)-1(zc)-1(ze)-329(d)1(ni)-328(p)1(ar\\246,)-328(w)27(ago)28(w)27(a\\252a)-328(si\\246)]TJ -27.879 -13.549 Td[(b)-27(o)27(wiem)-334(n)1(a)28(w)-1(i)1(ja\\242)-334(m)28(u)-333(s)-1(i\\246)-333(przed)-333(o)-28(c)-1(zy)-333(tak)-333(pr)1(\\246)-1(d)1(k)28(o)-334(p)-27(o)-333(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-231(w)27(e)-231(wst\\246)-1(p)1(n\\241)-231(\\261ro)-27(d\\246,)-231(w)-231(P)28(op)1(ie)-1(l)1(e)-1(c,)-231(n)1(ie)-231(s)-1(zyku)1(j\\241c)-231(na)28(w)28(e)-1(t)-230(\\261)-1(n)1(iadan)1(ia,)-231(ogar)1(-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-311(si\\246,)-311(j)1(ak)-311(mog\\252a)-311(n)1(a)-56(j)1(le)-1(p)1(iej,)-310(dziec)-1(i)-310(da\\252a)-311(p)-27(o)-28(d)-310(W)84(e)-1(r)1(oncz)-1(yn)1(\\241)-311(op)1(ie)-1(k)28(\\246)-311(i)-310(zabiera\\252a)-310(s)-1(i\\246)]TJ 0 -13.55 Td[(do)-333(wyj)1(\\261)-1(cia.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)-333(si\\246)-334(t)1(o)-334(zbierasz)-334(tak)-333(ran)1(o?)-334({)-333(z)-1(ap)29(yta\\252)-333(An)28(te)-1(k)1(.)]TJ 0 -13.549 Td[({)-333(Do)-334(k)28(o\\261cio\\252a,)-333(P)28(opielec)-334(dzisia)-56(j)-333({)-333(o)-28(d)1(rze)-1(k\\252a)-333(ni)1(e)-1(c)28(h\\246tnie)-334(i)-333(wymij)1(a)-56(j)1(\\241c)-1(o.)]TJ 0 -13.549 Td[({)-333(Nie)-334(sp)-28(or)1(z)-1(\\241d)1(z)-1(isz)-334(to)-333(\\261)-1(n)1(iad)1(ania?)]TJ 0 -13.549 Td[({)-295(Id\\271)-296(se)-296(d)1(o)-295(k)55(ar)1(c)-1(zm)27(y)84(,)-295(\\233yd)-295(ci)-295(jes)-1(zc)-1(ze)-296(p)-27(ob)-28(or)1(guj)1(e)-296({)-295(wyrw)28(a\\252o)-296(si\\246)-296(j)1(e)-1(j)-294(niec)27(h)1(c)-1(\\241cy)83(.)]TJ 0 -13.55 Td[(Sk)28(o)-27(c)-1(zy\\252)-400(na)-400(r\\363)28(wne)-400(nogi,)-400(k)1(ie)-1(b)29(y)-400(go)-400(kto)-400(kij)1(e)-1(m)-400(z)-1(d)1(z)-1(ieli\\252,)-400(al)1(e)-401(ni)1(e)-401(zw)27(a\\273a)-56(j)1(\\241c)-401(na)]TJ -27.879 -13.549 Td[(to)-363(wys)-1(z\\252a.)-363(Nie)-364(b)-27(o)-56(j)1(a\\252a)-363(s)-1(i\\246)-363(ju)1(\\273)-364(teraz)-364(kr)1(z)-1(y)1(k)28(\\363)27(w)-363(jego)-363(ni)-363(z\\252)-1(o\\261ci,)-363(jakb)29(y)-363(ob)-28(cym,)-363(a)-363(tak)]TJ 0 -13.549 Td[(dal)1(e)-1(ki)1(m)-229(si\\246)-229(j)1(e)-1(j)-227(widzia\\252,)-228(a\\273)-229(si\\246)-228(s)-1(ama)-228(te)-1(m)28(u)-228(d)1(z)-1(iw)28(o)28(w)27(a\\252a,)-228(a)-228(c)27(h)1(o)-28(\\242)-228(c)-1(zas)-1(ami)-228(dr)1(ga\\252o)-228(w)-229(n)1(ie)-1(j)]TJ 0 -13.549 Td[(cos)-1(ik)1(,)-353(jakb)29(y)-353(os)-1(t)1(atni)-353(p)1(\\252om)27(yk)-352(da)28(wnego)-353(m)-1(i\\252o)28(w)28(ania,)-352(nib)28(y)-352(to)-353(z)-1(ar)1(z)-1(ewie)-1(,)-352(przyw)28(alone)]TJ 0 -13.549 Td[(sm)27(ut)1(k)55(ami)-317(i)-317(r)1(oz)-1(d)1(e)-1(p)1(tane,)-317(gas)-1(i)1(\\252)-1(a)-317(j)1(e)-318(w)-317(sobie)-317(z)-318(rozm)27(y)1(s)-1(\\252em)-1(,)-317(si\\252\\241)-317(pr)1(z)-1(y)1(p)-28(omin)1(k)28(\\363)27(w)-317(t)28(yc)27(h)]TJ 0 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(eb)-28(ol)1(an)28(yc)27(h)-333(n)1(igd)1(y)-334(k)1(rzywd.)]TJ 27.879 -13.55 Td[(Aku)1(ratn)1(ie)-265(i)-265(l)1(udzie)-265(wyc)27(h)1(o)-28(d)1(z)-1(ili)-264(d)1(o)-265(k)28(o\\261)-1(cio\\252a,)-264(gdy)-264(s)-1(k)1(r\\246)-1(ci\\252a)-265(n)1(a)-265(top)-27(olo)28(w)28(\\241)-265(dr)1(og\\246)-1(.)]TJ 0 -13.549 Td[(Dzie)-1(\\253)-244(s)-1(i)1(\\246)-246(zrobi)1(\\252)-246(d)1(z)-1(i)1(w)-1(n)1(ie)-246(j)1(as)-1(n)29(y)-245(i)-245(p)-28(ogo)-27(dn)28(y)84(,)-245(s\\252)-1(o\\253)1(c)-1(e)-245(\\261)-1(wieci\\252o)-246(o)-27(d)-245(sam)-1(ego)-245(w)-1(sc)27(h)1(o-)]TJ -27.879 -13.549 Td[(du)1(,)-389(n)1(o)-28(cn)28(y)83(,)-388(t\\246)-1(gi)-388(pr)1(z)-1(ymroze)-1(k)-388(jes)-1(zc)-1(ze)-389(s)-1(i)1(\\246)-390(b)28(y)1(\\252)-389(nie)-389(r)1(o)-1(ztop)1(i\\252)-389(w)-389(o)-28(d)1(w)-1(i)1(ldze)-1(,)-388(z)-1(e)-389(strze)-1(c)27(h)]TJ 0 -13.549 Td[(k)56(apa\\252o)-286(s)-1(zn)28(ur)1(am)-1(i)-286(l\\261ni\\241cyc)27(h)-286(p)1(ac)-1(i)1(ork)28(\\363)28(w)-1(,)-286(a)-287(zlo)-28(d)1(o)28(w)27(acia\\252e)-287(w)27(o)-27(dy)-286(p)-28(o)-286(dr)1(ogac)27(h)-286(i)-287(r)1(o)28(w)27(ac)27(h)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(ci\\252y)-398(si\\246)-398(kiej)-398(lu)1(s)-1(tr)1(a,)-398(osz)-1(ron)1(ia\\252e)-398(z)-1(a\\261)-398(dr)1(z)-1(ew)27(a)-398(r)1(oz)-1(i)1(s)-1(kr)1(z)-1(a\\252y)-398(si\\246)-398(w)-398(s)-1(\\252o\\253)1(c)-1(u)1(,)-398(p\\252on)1(\\246)-1(-)]TJ 0 -13.55 Td[(\\252y)-370(i)-370(kieb)28(y)-370(t\\241)-370(s)-1(r)1(e)-1(b)1(rn\\241)-370(pr)1(z)-1(\\246dz\\241)-370(le)-1(cia\\252y)-370(na)-370(zie)-1(mi\\246;)-370(c)-1(zyste)-1(,)-370(n)1(ie)-1(b)1(ies)-1(ki)1(e)-371(ni)1(e)-1(b)-27(o,)-370(p)-28(e\\252ne)]TJ 0 -13.549 Td[(mle)-1(czn)28(yc)27(h)1(,)-362(ma\\252yc)28(h)-362(c)28(hm)28(ur,)-361(gra\\252o)-361(w)-362(s\\252)-1(o\\253)1(c)-1(u)-361(j)1(ak)28(o)-362(r)1(oz)-1(kwit\\252y)-361(ln)1(o)27(wy)-361(\\252an,)-361(gdy)-361(;w)28(e)-1(\\253)]TJ\nET\nendstream\nendobj\n1037 0 obj <<\n/Type /Page\n/Contents 1038 0 R\n/Resources 1036 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1036 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1041 0 obj <<\n/Length 10097     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(323)]TJ -358.232 -35.866 Td[(stado)-309(o)28(wiec)-309(w)-1(p)1(adn)1(ie)-309(i)-309(tak)-308(s)-1(i)1(\\246)-309(w)27(eprze,)-309(\\273e)-310(l)1(e)-1(d)1(w)-1(i)1(e)-309(im)-309(bia\\252e)-309(grzbi)1(e)-1(t)28(y)-308(w)-1(i)1(da\\242,)-309(p)-27(o)28(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(trze)-406(p)1(rze)-1(ci\\241)-28(ga\\252o)-405(c)-1(zyste)-1(,)-405(mro\\271ne)-405(a)-406(tak)-405(r)1(z)-1(e\\271)-1(w)28(e)-1(,)-405(i)1(\\273)-406(cz)-1(\\252ek)-405(z)-406(lub)-27(o\\261c)-1(i\\241)-405(n)1(im)-406(d)1(yc)27(h)1(a\\252.)]TJ 0 -13.549 Td[(P)28(o)28(w)28(e)-1(se)-1(la\\252)-256(c)-1(a\\252y)-256(\\261w)-1(i)1(at,)-257(l)1(\\261)-1(n)1(i\\252y)-257(si\\246)-257(k)56(a\\252u\\273e)-257(i)-256(m)-1(i)1(e)-1(n)1(i\\252y)-257(si\\246)-257(z\\252ot)28(ymi)-257(b)1(rzas)-1(k)56(ami)-257(wysz)-1(k)1(lone)]TJ 0 -13.549 Td[(\\261niegi,)-247(p)-27(o)-247(d)1(rogac)27(h)-246(dziec)-1(i)-246(\\261)-1(li)1(z)-1(ga\\252y)-247(si\\246)-247(z)-1(a)28(wz)-1(i)1(\\246)-1(cie)-247(i)-247(p)-27(okrzykiw)28(a\\252y)-247(r)1(ado\\261nie,)-247(gd)1(z)-1(ieni)1(e)-1(-)]TJ 0 -13.549 Td[(gdzie)-304(z)-1(a\\261)-304(s)-1(t)1(aruc)28(h)-304(j)1(aki)-304(wysta)28(w)27(a\\252)-304(p)-27(o)-28(d)-304(\\261c)-1(i)1(an\\241)-304(n)1(a)-304(s)-1(\\252o\\253)1(c)-1(u)1(,)-304(psy)-304(n)1(a)27(w)28(e)-1(t)-303(nasz)-1(cz)-1(ekiw)28(a\\252y)]TJ 0 -13.55 Td[(rad)1(o\\261)-1(n)1(ie)-356(p)1(rze)-1(gan)1(ia)-56(j)1(\\241c)-356(stada)-355(wron)-355(w\\252\\363)-28(cz)-1(\\241cyc)27(h)-354(s)-1(i\\246)-355(z)-1(a)-355(\\273e)-1(rem)-356({)-355(a)-355(cudn)1(a,)-355(pr)1(z)-1(es)-1(\\252o-)]TJ 0 -13.549 Td[(necz)-1(n)1(iona)-364(rozto)-28(cz)-365(zalew)27(a\\252a)-364(ca\\252)-1(y)-363(\\261)-1(wiat)-364(p)-27(ogo)-28(dn)1(\\241)-364(jasno\\261c)-1(i\\241)-364(i)-363(pra)28(wie)-364(w)-1(i)1(o\\261)-1(n)1(ian)28(ym)]TJ 0 -13.549 Td[(cie)-1(p)1(\\252e)-1(m.)]TJ 27.879 -13.549 Td[(W)-263(k)28(o\\261)-1(ciele)-264(nat)1(om)-1(iast)-263(o)27(wion)1(\\241\\252)-264(Han)1(k)28(\\246)-264(przejm)27(u)1(j\\241cy)-263(c)27(h\\252\\363)-28(d)-263(i)-263(g\\252\\246b)-28(oki)1(e)-1(,)-263(mo)-28(dl)1(i-)]TJ -27.879 -13.549 Td[(tew)-1(n)1(e)-348(m)-1(i)1(lc)-1(ze)-1(n)1(ie,)-348(ms)-1(za)-348(cic)27(h)1(a)-348(j)1(u\\273)-348(s)-1(i)1(\\246)-348(o)-28(dp)1(ra)28(wia\\252a)-348(pr)1(z)-1(ed)-347(w)-1(i)1(e)-1(lk)1(im)-348(o\\252tarze)-1(m,)-348(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(w)-316(p)-27(ob)-28(o\\273n)28(ym)-316(sku)1(pieni)1(u,)-315(roz)-1(mo)-28(d)1(lon)28(y)84(,)-316(zalega\\252)-316(g\\246)-1(st)28(w)27(\\241)-315(\\261)-1(r)1(o)-28(dk)28(o)28(w)28(\\241)-316(na)28(w)28(\\246)-1(,)-315(z)-1(al)1(ana)-315(p)-28(o-)]TJ 0 -13.55 Td[(tok)56(ami)-334(\\261wiat\\252a,)-333(a)-334(w)28(ci\\241\\273)-334(jesz)-1(cz)-1(e)-334(n)1(adc)28(ho)-28(d)1(z)-1(il)1(i)-333(op)-28(\\363\\271nieni)1(.)]TJ 27.879 -13.549 Td[(Ale)-334(Han)1(k)55(a)-333(ni)1(e)-334(c)-1(i)1(s)-1(n\\246\\252a)-334(si\\246)-334(d)1(o)-334(lu)1(dzi,)-333(p)-27(os)-1(z\\252)-1(a)-333(w)-334(b)-27(o)-28(cz)-1(n)1(a)-334(n)1(a)27(w)28(\\246,)-334(p)1(ust\\241)-334(ca\\252kiem)]TJ -27.879 -13.549 Td[(i)-407(tak)-407(m)-1(r)1(o)-28(c)-1(zn\\241,)-407(\\273e)-408(jeno)-407(gdzie)-1(n)1(iegdzie)-408(\\273)-1(\\363\\252ci\\252y)-407(s)-1(i\\246)-408(z\\252o)-28(ce)-1(n)1(ia)-408(o)-407(lo)-28(d)1(o)28(w)-1(y)1(c)27(h,)-407(sk)55(\\241)-27(p)28(yc)27(h)]TJ 0 -13.549 Td[(sm)27(ugac)28(h)-265(\\261)-1(wiat\\252a,)-265(c)27(hcia\\252a)-266(osta\\242)-266(s)-1(am)-266(n)1(a)-266(sam)-266(z)-266(du)1(s)-1(z\\241)-266(w\\252as)-1(n)1(\\241)-266(i)-265(B)-1(ogiem,)-266(p)1(rzykl\\246k\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-365(o\\252tarzem)-366(Wn)1(ie)-1(b)-27(o)28(wz)-1(i\\246cia,)-365(p)-27(o)-28(c)-1(a\\252o)28(w)28(a)-1(\\252a)-365(ziem)-1(i\\246,)-365(roz\\252o\\273)-1(y)1(\\252)-1(a)-365(r)1(\\246)-1(ce)-366(i)-365(wpat)1(rz)-1(on)1(a)]TJ 0 -13.55 Td[(w)-334(s\\252o)-28(d)1(k)55(\\241)-333(t)28(w)27(ar)1(z)-334(Matk)1(i)-334(l)1(ito\\261c)-1(iw)28(e)-1(j)1(,)-333(z)-1(atop)1(i\\252a)-333(s)-1(i\\246)-333(w)-334(mo)-28(dl)1(it)28(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(T)83(u)1(ta)-56(j)-409(dopi)1(e)-1(r)1(o)-410(w)-1(y)1(buc)28(hn)1(\\246)-1(\\252a)-410(\\273alami,)-410(u)-409(t)27(y)1(c)27(h)-409(\\261)-1(wi\\246t)28(yc)27(h)-409(n\\363\\273e)-1(k)-410(P)29(o)-28(c)-1(i)1(e)-1(sz)-1(ycielki)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\273y\\252a)-283(pr)1(z)-1(ekrwion)1(\\241)-284(r)1(anami)-283(du)1(s)-1(z\\246)-284(w)-283(p)-28(ok)28(or)1(z)-1(e)-283(na)-56(j)1(g\\252\\246)-1(b)1(s)-1(ze)-1(j)-282(a)-284(d)1(uf)1(no\\261c)-1(i)-283(b)-27(ez)-1(gran)1(icz)-1(-)]TJ 0 -13.549 Td[(nej)-305(i)-305(c)-1(zyni)1(\\252a)-306(sp)-28(o)28(wied\\271)-306(se)-1(r)1(dec)-1(zn\\241.)-305(Pr)1(z)-1(ed)-305(Matk)56(\\241)-306(i)-305(P)28(an)1(i\\241)-305(c)-1(a\\252ego)-306(nar)1(o)-28(du)-305(k)56(a)-55(ja\\252a)-306(si\\246)]TJ 0 -13.549 Td[(z)-288(win)-286(ws)-1(ze)-1(lk)1(ic)27(h)1(,)-287(b)-28(o)-287(j)1(u\\261c)-1(i,)-286(grz)-1(esz)-1(n)1(a)-288(b)29(y\\252a,)-287(s)-1(k)28(or)1(o)-287(j\\241)-287(tak)-287(P)28(an)-286(Je)-1(zus)-287(p)-27(ok)55(ar)1(a\\252,)-287(grz)-1(esz)-1(-)]TJ 0 -13.55 Td[(na!)-360(A)-360(to)-360(ni)1(e)-1(u\\273ycz)-1(l)1(iw)27(a)-360(la)-360(dr)1(ugic)28(h,)-360(a)-360(to)-360(w)-1(y)1(nosz)-1(\\241ca)-361(si\\246)-361(n)1(ad)-360(in)1(ne,)-361(a)-360(to)-360(k\\252\\363tli)1(w)27(a)-360(a)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(hlu)1(j,)-285(a)-286(to)-285(lub)1(i\\252a)-286(i)-285(zje\\261)-1(\\242)-286(d)1(obrze,)-286(i)-285(p)-27(ole)-1(n)1(i\\242)-286(si\\246)-1(,)-285(a)-285(to)-286(w)-286(s\\252u\\273bie)-286(Bo\\273e)-1(j)-285(op)1(ie)-1(sz)-1(a\\252a)-285({)]TJ 0 -13.549 Td[(grze)-1(szn\\241)-280(b)28(y\\252a.)-280(Kr)1(z)-1(y)1(c)-1(za\\252a)-281(w)-280(sobie)-280(rozpalon)28(y)1(m)-1(,)-280(op)1(\\252yni)1(\\246)-1(t)28(ym)-280(krwi\\241)-280(\\273ale)-1(m)-280(skruc)28(h)28(y)84(,)]TJ 0 -13.549 Td[(\\273e)-337(dziw)-336(jej)-336(s)-1(erce)-337(ni)1(e)-337(p)-27(\\246)-1(k\\252o,)-336(i)-336(b)1(\\252aga\\252)-1(a)-336(o)-336(zm)-1(i\\252o)28(w)28(anie,)-336(z)-1(a)-336(An)28(tk)28(o)28(w)28(e)-337(ci\\246)-1(\\273kie)-336(grze)-1(c)27(h)29(y)]TJ 0 -13.549 Td[(i)-350(prze)-1(win)29(y)-351(\\273e)-1(b)1(ra\\252a)-351(mi\\252osierdzia,)-350(i)-351(t\\252u)1(k\\252a)-351(si\\246)-351(w)-351(se)-1(rd)1(e)-1(cznej)-351(p)1(ro\\261bie)-351(j)1(ak)28(o)-351(ten)-350(pta-)]TJ 0 -13.55 Td[(sz)-1(ek,)-323(c)-1(o)-323(pr)1(z)-1(ed)-323(\\261m)-1(ierci\\241)-323(uciek)55(a)-323(i)-323(bi)1(je)-324(skrzyd)1(e)-1(\\252k)56(ami)-324(w)-323(s)-1(zyb)28(y)84(,)-323(trze)-1(p)-27(o)-28(cz)-1(e)-323(s)-1(i\\246,)-323(pi)1(uk)56(a)]TJ 0 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-1(,)-333(b)28(yc)28(h)-333(go)-333(z)-1(rat)1(o)27(w)28(ali.)]TJ 27.879 -13.549 Td[(P\\252acz)-433(ni\\241)-432(w)-1(strz\\241s)-1(a\\252)-433(i)-432(pr)1(z)-1(epala\\252)-432(\\273)-1(ar)-432(pr\\363\\261b)-432(i)-433(b\\252aga\\253)1(,)-433(z)-433(du)1(s)-1(zy)-433(j)1(akb)28(y)-432(ran\\241)]TJ -27.879 -13.549 Td[(ot)28(w)27(ar)1(t\\241)-263(p)1(\\252yn\\241\\252)-263(stru)1(m)-1(i)1(e)-1(\\253)-262(mo)-28(d\\252\\363)28(w)-263(i)-262(p\\252ak)56(a\\253,)-262(c)-1(o)-262(s)-1(i)1(\\246)-264(k)1(ie)-1(j)-262(te)-263(kr)1(w)27(a)28(w)28(e)-263(p)-28(er\\252y)-262(roz)-1(su)28(w)28(a\\252y)]TJ 0 -13.549 Td[(p)-27(o)-334(zimnej)-333(p)-28(o)-27(d\\252o)-28(d)1(z)-1(e.)]TJ 27.879 -13.55 Td[(Msz)-1(a)-376(s)-1(i)1(\\246)-378(sk)28(o\\253czy\\252a)-377(i)-376(c)-1(a\\252y)-376(nar\\363)-27(d)-377(w)-376(s)-1(kr)1(usz)-1(e,)-377(a)-376(c)-1(z\\246)-1(sto)-377(g\\246s)-1(t)1(o)-377(i)-376(z)-378(p)1(\\252ak)56(aniem)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(t\\246p)-28(o)28(w)28(a\\252)-448(d)1(o)-447(o\\252tarza)-447(c)27(h)28(yl)1(\\241c)-448(p)-27(ok)28(orni)1(e)-448(g\\252o)28(w)-1(y)-446(p)-28(o)-28(d)-446(p)-28(op)1(i\\363\\252,)-447(kt\\363r)1(ym)-448(k)1(s)-1(i\\241d)1(z)-448(z)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)1(\\241)-333(m)-1(o)-28(d)1(lit)28(w)28(\\241)-334(p)-27(oku)1(tn\\241)-333(p)-27(os)-1(yp)29(yw)27(a\\252)-333(pr)1(z)-1(yk)1(l\\246)-1(k)56(a)-55(j\\241cyc)27(h)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-405(n)1(ie)-405(c)-1(ze)-1(k)56(a)-55(j\\241c)-405(k)28(o\\253ca)-405(tej)-405(p)-27(opi)1(e)-1(lco)28(w)27(ej)-405(u)1(ro)-28(cz)-1(y)1(s)-1(to\\261c)-1(i)-404(wys)-1(z\\252a)-405(na)-404(\\261)-1(wiat,)]TJ -27.879 -13.549 Td[(wielc)-1(e)-333(c)-1(zuj)1(\\241)-1(c)-333(s)-1(i\\246)-333(w)-1(zmo\\273)-1(on)1(\\241)-334(n)1(a)-334(si\\252ac)27(h)-332(i)-334(d)1(uf)1(na)-333(ju)1(\\273)-334(c)-1(a\\252k)1(ie)-1(m)-333(w)-334(p)-27(om)-1(o)-27(c)-334(Bo\\273)-1(\\241.)]TJ 27.879 -13.549 Td[(Z)-395(p)-28(o)-27(dni)1(e)-1(sion\\241)-395(g\\252o)28(w)27(\\241)-395(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(a)-395(n)1(a)-396(l)1(udzkie)-395(p)-28(ozdr)1(o)28(w)-1(ieni)1(a)-396(i)-395(sz)-1(\\252a)-395(w\\261)-1(r)1(\\363)-28(d)]TJ -27.879 -13.55 Td[(sp)-28(o)-55(jrze\\253)-228(c)-1(iek)56(a)28(w)-1(y)1(c)27(h)-228(n)1(ie)-1(u)1(l\\246k\\252a,)-228(\\261)-1(mia\\252o)-228(z)-1(a\\261,)-228(c)27(h)1(o)-28(\\242)-229(ze)-229(dr)1(\\273)-1(eni)1(e)-1(m,)-228(s)-1(kr)1(\\246)-1(ci\\252a)-228(w)-229(Bory)1(no)28(w)27(e)]TJ 0 -13.549 Td[(op\\252otk)1(i.)]TJ 27.879 -13.549 Td[(M\\363)-55(j)-470(Bo\\273e)-1(,)-469(t)27(y)1(lac)27(h)1(na)-470(cz)-1(asu)-470(n)1(og\\241)-470(tu)1(ta)-56(j)-469(nie)-470(st\\241)-28(p)1(i\\252a,)-470(a)-470(j)1(e)-1(n)1(o)-470(jak)28(o)-470(ten)-469(pies)]TJ -27.879 -13.549 Td[(za)27(wsz)-1(e)-291(kr)1(\\241\\273)-1(y\\252a)-290(z)-291(dala)-290(i)-290(\\273)-1(a\\252o\\261nie,)-291(ogar)1(nia\\252a)-290(te)-1(\\273)-291(teraz)-291(k)28(o)-28(c)28(ha)-55(j\\241cym)-291(wz)-1(r)1(okiem)-291(dom)]TJ 0 -13.549 Td[(i)-265(bu)1(dy)1(nki,)-265(p)1(\\252ot)28(y)-265(i)-265(k)55(a\\273de)-265(dr)1(z)-1(ew)-1(k)28(o)-265(l\\261ni)1(\\241c)-1(e)-265(w)-266(os\\246)-1(d)1(z)-1(ielizni)1(e)-1(,)-265(a)-265(tak)-265(p)1(am)-1(i)1(\\246)-1(tli)1(w)27(e,)-265(jakb)29(y)]TJ 0 -13.55 Td[(z)-417(j)1(e)-1(j)-416(se)-1(r)1(c)-1(a)-416(wyros\\252o,)-416(z)-417(jej)-416(krwi)-416(b)28(y\\252o.)-416(Roze)-1(\\261m)-1(i)1(a\\252)-1(a)-416(si\\246)-417(j)1(e)-1(j)-416(d)1(usz)-1(a)-416(rozrado)28(w)28(aniem,)]TJ 0 -13.549 Td[(\\273e)-376(got)1(o)27(w)28(a)-375(b)28(y)1(\\252)-1(a)-374(c)-1(a\\252o)28(w)28(a\\242)-376(t\\246)-375(ziem)-1(i)1(\\246)-376(\\261wi\\246t\\241,)-375(a)-375(l)1(e)-1(d)1(w)27(o)-374(w)-1(st\\241)-28(p)1(i\\252a)-375(pr)1(z)-1(ed)-374(ganek,)-375(\\212ap)1(a)]TJ\nET\nendstream\nendobj\n1040 0 obj <<\n/Type /Page\n/Contents 1041 0 R\n/Resources 1039 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1039 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1044 0 obj <<\n/Length 9148      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(324)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-307(d)1(o\\253)-306(r)1(z)-1(u)1(c)-1(i\\252)-306(z)-306(taki)1(m)-307(sk)28(o)28(wyte)-1(m)-306(rad)1(os)-1(n)29(ym,)-306(a\\273)-307(J)1(\\363z)-1(k)56(a)-306(wyjr)1(z)-1(a\\252a)-306(d)1(o)-306(s)-1(i)1(e)-1(n)1(i)-306(s)-1(t)1(a)-56(j\\241c)-306(w)]TJ 0 -13.549 Td[(zdumieni)1(u,)-333(ni)1(e)-334(wie)-1(r)1(z)-1(\\241c)-334(w\\252asn)28(ym)-334(o)-27(c)-1(zom)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a!)-333(Lob)-27(oga!)-333(Hank)56(a!)]TJ 0 -13.549 Td[({)-333(Jam)-334(ci,)-333(jam,)-333(nie)-333(p)-28(ozna)-55(jes)-1(z)-334(czy)-334(co?)-334(O)1(c)-1(iec)-334(d)1(om)-1(a?)]TJ 0 -13.549 Td[({)-344(Dy\\242)-345(s\\241)-345(w)-344(c)27(h)1(a\\252)-1(u)1(pie,)-344(s)-1(\\241.)1(..)-344(\\273)-1(e\\261)-1(cie)-345(to)-344(p)1(rz)-1(y)1(s)-1(zli..)1(.)-345(Han)1(k)56(a!...)-344({)-344(i)-344(rozp\\252ak)56(a\\252)-1(o)-344(si\\246)]TJ -27.879 -13.55 Td[(dzieusz)-1(y)1(s)-1(k)28(o)-333(c)-1(a\\252u)1(j\\241c)-334(j)1(\\241)-334(p)-27(o)-333(r\\246k)55(ac)28(h)-333(kiej)-333(t\\246)-334(matk)28(\\246)-334(r)1(o)-28(dzon\\241.)]TJ 27.879 -13.549 Td[(St)1(ary)-286(z)-1(a\\261)-286(p)-28(os\\252ysz)-1(a)28(ws)-1(zy)-286(g\\252os)-287(s)-1(am)-286(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-287(n)1(apr)1(z)-1(ec)-1(iw)-286(i)-286(wpro)28(w)28(adzi\\252)-286(do)-286(iz)-1(b)29(y)83(,)]TJ -27.879 -13.549 Td[(do)-385(n)1(\\363g)-386(m)28(u)-385(pad)1(\\252a)-386(z)-385(p\\252acz)-1(em)-1(,)-385(wzruszona)-385(jego)-386(wid)1(okiem)-386(i)-385(p)1(rzyp)-28(omni)1(e)-1(n)1(iami)-385(bi-)]TJ 0 -13.549 Td[(j\\241cymi)-322(z)-322(k)56(a\\273dego)-322(k)56(\\241ta)-322(tej)-322(c)28(ha\\252up)29(y)-322(k)28(o)-28(c)28(han)1(e)-1(j)1(.)-322(Ryc)27(h)1(\\252o)-322(si\\246)-322(utu)1(li\\252a,)-322(b)-27(o)-322(stary)-321(j\\241\\252)-321(s)-1(i\\246)]TJ 0 -13.549 Td[(wyp)28(yt)28(y)1(w)27(a\\242)-376(o)-377(d)1(z)-1(i)1(e)-1(ci)-376(i)-376(ze)-377(ws)-1(p)-27(\\363\\252cz)-1(u)1(c)-1(iem)-377(u)1(\\273)-1(al)1(a\\252)-377(si\\246)-376(nad)-376(n)1(i\\241)-376(i)-376(j)1(e)-1(j)-375(z)-1(mize)-1(ro)28(w)28(aniem;)]TJ 0 -13.549 Td[(op)-27(o)27(wiad)1(a\\252a)-328(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-328(n)1(ie)-329(ta)-55(j\\241c)-328(nicz)-1(ego,)-328(wys)-1(tr)1(as)-1(zona)-328(t)28(ylk)28(o)-328(zm)-1(i)1(an\\241,)-328(jak)56(a)-328(w)-328(nim)]TJ 0 -13.55 Td[(zas)-1(z\\252a,)-351(p)-27(ostarza\\252)-351(si\\246)-351(b)-27(o)27(wiem)-351(b)1(ardzo,)-350(w)-1(y)1(c)27(h)28(u)1(d\\252)-350(na)-350(w)-1(i)1(\\363r)-350(i)-351(p)-27(o)-28(c)28(h)28(yli\\252)-350(mo)-28(c)-1(n)1(o,)-350(t)27(w)28(arz)]TJ 0 -13.549 Td[(m)27(u)-332(jeno)-333(os)-1(ta\\252a)-333(da)28(wna,)-333(b)1(arz)-1(ej)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(z)-1(aci\\246)-1(t)1(a)-334(i)-333(gro\\271na.)]TJ 27.879 -13.549 Td[(Roz)-1(ma)28(wiali)-483(d\\252u)1(go,)-484(an)1(i)-484(r)1(az)-1(u)-483(n)1(ie)-484(wyp)-28(omin)1(a)-56(j)1(\\241c)-484(An)28(tk)56(a)-484(n)1(i)-484(Jagn)29(y)83(,)-483(s)-1(t)1(rz)-1(egli)]TJ -27.879 -13.549 Td[(si\\246)-445(ob)-27(o)-55(je)-444(t)28(yk)56(a\\242)-445(t)28(yc)28(h)-444(b)-27(ol\\241cz)-1(ek)-444(n)1(abrzmia\\252yc)27(h)1(,)-444(a)-444(gd)1(y)-444(p)-27(o)-444(jak)1(ie)-1(j)-443(go)-28(d)1(z)-1(in)1(ie)-444(Hank)56(a)]TJ 0 -13.549 Td[(zabiera\\252a)-420(si\\246)-420(do)-420(wyj)1(\\261)-1(cia,)-420(stary)-419(przyk)56(az)-1(a\\252)-420(J)1(\\363z)-1(ce)-421(n)1(as)-1(zyk)28(o)28(w)27(a\\242)-420(w)-420(tob)-27(o\\252ki,)-419(c)-1(o)-420(in)1(o)]TJ 0 -13.55 Td[(b)28(y\\252o)-229(m)-1(o\\273na,)-229(a\\273)-231(W)1(ite)-1(k)-229(m)27(u)1(s)-1(i)1(a\\252)-230(to)-230(wie\\271)-1(\\242)-230(na)-229(s)-1(an)1(e)-1(cz)-1(k)56(ac)27(h)1(,)-230(b)-27(ob)28(y)-230(sama)-230(ni)1(e)-231(u)1(d\\271wign\\246\\252a,)]TJ 0 -13.549 Td[(a)-333(jes)-1(zc)-1(ze)-334(n)1(a)-334(o)-28(d)1(c)27(h)1(o)-28(dn)28(y)1(m)-334(da\\252)-333(jej)-333(p)1(ar\\246)-334(z\\252ot)27(y)1(c)27(h)-333(n)1(a)-334(s\\363l)-333(i)-334(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-378(Pr)1(z)-1(yc)28(ho)-28(d)1(\\271)-1(\\273e)-379(cz)-1(\\246\\261c)-1(iej,)-378(c)28(ho)-28(\\242b)28(y)-378(i)-378(co)-378(dzie\\253,)-378(n)1(ie)-379(wiad)1(a,)-378(c)-1(o)-378(si\\246)-379(ze)-379(mn\\241)-378(sta\\242)]TJ -27.879 -13.549 Td[(mo\\273)-1(e,)-333(to)-334(d)1(a)28(w)27(a)-55(j)-333(na)-333(dom)-333(bacz)-1(enie,)-333(J\\363z)-1(k)56(a)]TJ 27.879 -13.549 Td[(ci)-415(kr)1(z)-1(yw)28(\\241)-415(n)1(ie)-415(jes)-1(t.)-414(Z)-415(t)28(ym)-415(i)-414(p)-28(osz)-1(\\252a)-415(r)1(oz)-1(m)28(y\\261)-1(l)1(a)-56(j)1(\\241c)-416(p)-27(o)-415(d)1(ro)-28(d)1(z)-1(e)-415(n)1(ad)-415(o)-55(jco)27(w)28(cy-)]TJ -27.879 -13.55 Td[(mi)-385(s)-1(\\252o)28(w)28(am)-1(i)1(,)-385(\\273)-1(e)-385(na)28(w)28(e)-1(t)-385(ma\\252o)-385(z)-1(wraca\\252a)-385(u)28(w)28(agi)-385(na)-385(op)-27(o)28(w)-1(i)1(adan)1(ie)-386(Wi)1(tk)56(a,)-385(kt\\363ren)-385(j)1(e)-1(j)]TJ 0 -13.549 Td[(sz)-1(epta\\252,)-429(j)1(ak)28(o)-429(w)27(\\363)-55(jt)-429(ze)-430(so\\252t)28(yse)-1(m)-429(c)-1(o)-429(d)1(nia)-429(p)1(rzyc)27(h)1(o)-28(dz\\241)-429(i)-429(d)1(o)-429(z)-1(go)-28(d)1(y)-429(z)-429(Jagn\\241)-429(n)1(agl\\241)]TJ 0 -13.549 Td[(starego,)-341(\\273e)-342(n)1(a)28(w)27(et)-341(d)1(o)-341(dob)1(ro)-28(d)1(z)-1(ieja)-340(gos)-1(p)-27(o)-28(d)1(arz)-341(c)27(ho)-27(dzi\\252)-341(wraz)-341(z)-341(Dominik)28(o)28(w)28(\\241,)-341(kt)1(\\363ra)]TJ 0 -13.549 Td[(w)28(c)-1(zora)-56(j)-389(d)1(o)-390(p)-27(\\363\\271)-1(n)1(a)-390(w)-390(n)1(o)-28(c)-390(rad)1(z)-1(i\\252a)-389(z)-1(e)-390(starym,)-389(i)-390(tal)1(k)-390(p)1(l\\363t\\252,)-390(co)-390(i)1(no)-390(wiedzia\\252,)-389(b)28(yc)27(h)]TJ 0 -13.549 Td[(si\\246)-334(jej)-333(p)1(rz)-1(y)1(p)-28(o)-27(c)27(hl)1(e)-1(bi)1(\\242)-1(.)]TJ 27.879 -13.55 Td[(W)-414(c)27(h)1(a\\252upi)1(e)-415(z)-1(asta\\252a)-414(jes)-1(zc)-1(ze)-415(An)28(tk)56(a,)-414(nap)1(ra)28(wia\\252)-415(sobi)1(e)-415(bu)1(t)-414(p)-28(o)-28(d)-413(o)-1(k)1(nem)-1(,)-414(n)1(ie)]TJ -27.879 -13.549 Td[(sp)-28(o)-55(jrza\\252)-301(n)1(a)28(w)27(et)-301(n)1(a)-301(ni)1(\\241,)-301(a)-300(dop)1(ie)-1(r)1(o)-301(u)1(jrza)28(w)-1(szy)-301(Wi)1(tk)56(a)-301(i)-300(tob)-28(o\\252ki)-300(ozw)27(a\\252)-300(s)-1(i\\246)-301(ze)-301(z)-1(\\252o\\261c)-1(i)1(\\241:)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(a\\261,)-333(widz\\246)-1(,)-333(p)-27(o)-333(prosz)-1(on)29(ym...)]TJ 0 -13.549 Td[({)-333(Kiej)-333(z)-1(es)-1(z\\252am)-334(n)1(a)-334(d)1(z)-1(iad)1(\\363)28(w)-1(k)28(\\246,)-333(to)-333(i)-333(z)-334(lito\\261c)-1(i)-333(l)1(udzkiej)-333(\\273y\\242)-334(m)27(u)1(s)-1(z\\246.)]TJ 0 -13.549 Td[(Gd)1(y)-333(z)-1(a\\261)-334(W)1(ite)-1(k)-333(wysz)-1(ed\\252,)-333(wyb)1(uc)27(h)1(n\\241\\252)-333(gniewiem)-1(.)]TJ 0 -13.55 Td[({)-333(Przyk)56(azyw)27(a\\252em)-334(ci,)-333(psiakrew,)-333(b)28(y\\261)-334(d)1(o)-334(o)-55(jca)-333(nie)-334(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a!)]TJ 0 -13.549 Td[({)-245(Sam)-246(mnie)-246(p)1(rzyzw)27(a\\252,)-245(tom)-246(p)-27(os)-1(z\\252a,)-246(sam)-246(mnie)-246(op)1(atrzy\\252,)-245(tom)-246(wz)-1(i\\246\\252a,)-246(z)-246(g\\252o)-27(du)]TJ -27.879 -13.549 Td[(mrze)-1(\\242)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-334(n)1(i)-334(d)1(z)-1(i)1(e)-1(ciom)-334(n)1(ie)-334(d)1(am)-1(,)-333(ki)1(e)-1(j)-333(t)28(y)-333(o)-333(to)-334(n)1(ie)-334(stoisz)-1(!)]TJ 27.879 -13.549 Td[({)-333(Odn)1(ie\\261)-334(to)-333(z)-1(araz,)-333(nie)-333(p)-28(otr)1(z)-1(a)-333(mi)-333(nic)-334(o)-27(d)-333(niego!)-333({)-333(z)-1(akr)1(z)-1(ycz)-1(a\\252.)]TJ 0 -13.549 Td[({)-333(Ale)-334(mnie)-333(p)-28(otr)1(z)-1(a)-333(i)-333(dziec)-1(iom.)]TJ 0 -13.549 Td[({)-282(M)1(\\363)27(wi\\246)-282(ci,)-281(o)-28(dn)1(ie)-1(\\261)-282(ab)-27(o)-282(sam)-282(m)27(u)-281(o)-28(d)1(nies\\246)-283(i)-281(w)-282(gard)1(z)-1(i)1(e)-1(l)-281(w)-1(r)1(a\\273)-1(\\246,)-282(n)1(iec)27(h)-281(s)-1(i\\246)-282(u)1(du)1(s)-1(i)]TJ -27.879 -13.55 Td[(sw)27(o)-55(j\\241)-333(dob)1(ro\\261)-1(ci\\241,)-333(s\\252)-1(y)1(s)-1(zysz)-1(,)-333(b)-27(o)-334(za)-333(drzwi)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(wyc)-1(i)1(e)-1(p)1(n\\246!)]TJ 27.879 -13.549 Td[({)-431(Sp)1(r\\363b)1(uj)-430(ano,)-431(tk)1(nij)-430(c)27(h)1(o)-28(\\242)-1(b)28(y)84(,)-431(a)-431(ob)1(ac)-1(zysz)-1(!)-431({)-431(w)28(ark)1(n\\246\\252)-1(a)-431(c)28(h)28(wyta)-55(j\\241c)-431(z)-1(a)-431(ma-)]TJ -27.879 -13.549 Td[(glo)28(wnic\\246,)-473(goto)28(w)27(a)-473(b)1(ron)1(i\\242)-474(d)1(o)-473(up)1(ad\\252ego,)-473(tak)-472(gro\\271)-1(n)1(a)-473(i)-473(r)1(oz)-1(j)1(usz)-1(on)1(a,)-473(\\273)-1(e)-473(cofn)1(\\241\\252)-473(s)-1(i\\246)]TJ 0 -13.549 Td[(zm)-1(iesz)-1(an)28(y)-333(t)28(ym)-333(op)-28(or)1(e)-1(m)-334(n)1(ies)-1(p)-27(o)-28(d)1(z)-1(iew)27(an)29(ym.)]TJ 27.879 -13.549 Td[({)-333(T)83(anio)-333(ci\\246)-334(ku)1(pi\\252,)-333(glon)1(kiem)-334(c)27(h)1(leba)-333(jak)-333(tego)-334(p)1(s)-1(a)-333({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(p)-27(on)28(u)1(ro.)]TJ 0 -13.55 Td[({)-403(Jes)-1(zc)-1(ze\\261)-404(tan)1(ie)-1(j)-402(nas)-403(i)-403(siebie)-403(pr)1(z)-1(eda\\252,)-403(b)-27(o)-403(za)-403(Jagni)1(n\\241)-403(kiec)27(k)28(\\246!)-403({)-403(wykr)1(z)-1(y)1(k-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-471(b)-27(ez)-471(nam)27(y)1(s)-1(\\252u)1(,)-471(\\273e)-471(z)-1(win)1(\\241\\252)-471(si\\246)-471(jak)1(b)28(y)-470(no\\273e)-1(m)-471(p)-27(c)27(h)1(ni\\246t)28(y)83(,)-470(ale)-471(Han)1(k)55(a)-470(jak)1(b)28(y)-470(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n1043 0 obj <<\n/Type /Page\n/Contents 1044 0 R\n/Resources 1042 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1029 0 R\n>> endobj\n1042 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1047 0 obj <<\n/Length 10031     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(325)]TJ -358.232 -35.866 Td[(nar)1(az)-427(w\\261)-1(ciek\\252a,)-426(zala\\252y)-426(j\\241)-426(ws)-1(p)-27(omnieni)1(a)-427(k)1(rzywd,)-426(\\273e)-427(bu)1(c)27(h)1(n\\246\\252a)-427(n)1(ag\\252ym,)-426(w)27(ez)-1(b)1(ra-)]TJ 0 -13.549 Td[(n)28(ym)-444(p)-28(otok)1(ie)-1(m)-444(wyp)-28(omin)1(k)28(\\363)28(w)-445(i)-444(\\273)-1(al)1(\\363)27(w)-444(wie)-1(cz)-1(n)1(ie)-445(ta)-55(jon)29(yc)27(h)1(,)-445(n)1(ie)-445(d)1(aro)28(w)27(a\\252a)-444(m)27(u)-444(j)1(u\\273)]TJ 0 -13.549 Td[(ni)1(c)-1(,)-336(nie)-337(pr)1(z)-1(ep)-28(omni)1(a\\252a)-337(ani)-337(j)1(e)-1(d)1(nej)-337(p)1(rze)-1(win)29(y)83(,)-337(an)1(i)-337(j)1(e)-1(d)1(nego)-337(z)-1(\\252a,)-337(a)-336(jeno)-337(b)1(i\\252a)-337(w)-337(niego)]TJ 0 -13.549 Td[(zapami\\246)-1(t)1(a)-1(\\252o\\261c)-1(i)1(\\241)-395(kieb)28(y)-395(t)28(y)1(m)-1(i)-394(c)-1(epami,)-395(\\273e)-1(b)29(yc)27(h)-394(m)-1(og\\252a)-395({)-394(z)-1(ab)1(i\\252ab)28(y)-395(n)1(a)-395(\\261)-1(mier\\242)-395(w)-395(te)-1(j)]TJ 0 -13.549 Td[(min)28(u)1(c)-1(ie!...)]TJ 27.879 -13.55 Td[(Ul\\241k\\252)-295(s)-1(i\\246)-296(j)1(e)-1(j)-295(rozw\\261)-1(cie)-1(k)1(le)-1(n)1(ia,)-295(z)-1(atar)1(ga)-1(\\252o)-295(m)27(u)-295(s)-1(i)1(\\246)-297(cos)-1(i)1(k)-296(w)-296(p)1(ie)-1(r)1(s)-1(i)1(ac)27(h,)-295(pr)1(z)-1(yc)28(h)28(yli)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-287(i)-287(ni)1(e)-288(wiedzia\\252,)-287(co)-287(r)1(z)-1(ec)-1(,)-286(z)-1(\\252o\\261\\242)-288(go)-286(o)-28(dp)1(ad\\252a)-287(i)-286(gorzki,)-287(gr)1(yz)-1(\\241cy)-287(wst)28(yd)-286(tak)-287(m)28(u)-287(zala\\252)]TJ 0 -13.549 Td[(du)1(s)-1(z\\246,)-334(\\273e)-334(c)28(h)28(w)-1(y)1(c)-1(i\\252)-333(cz)-1(ap)1(k)28(\\246)-334(i)-333(ucie)-1(k)1(\\252)-334(z)-334(c)28(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-338(nie)-339(m\\363g\\252)-339(p)-27(omiark)28(o)28(w)28(a\\242)-1(,)-338(c)-1(o)-338(s)-1(i\\246)-339(j)1(e)-1(j)-338(sta\\252o,)-339(a)-338(jeno)-338(jak)-338(te)-1(n)-338(p)1(ie)-1(s)-339(sp)-27(onie-)]TJ -27.879 -13.549 Td[(wieran)28(y)-333(gna\\252)-333(gdzie\\261)-334(pr)1(z)-1(ed)-333(s)-1(i)1(\\246)-1(,)-333(b)-27(e)-1(z)-333(pami\\246)-1(ci)-333(z)-1(go\\252a)-333({)-333(jak)-333(z)-1(r)1(e)-1(sz)-1(t)1(\\241)-334(co)-334(d)1(ni)1(a...)]TJ 27.879 -13.549 Td[(Od)-448(o)28(w)27(ej)-448(stras)-1(znej)-448(c)27(h)29(w)-1(i)1(li)-449(p)-27(o\\273aru)-448(wyrab)1(ia\\252o)-449(si\\246)-449(w)-449(n)1(im)-449(cos)-1(ik)-448(strasz)-1(n)1(e)-1(go,)]TJ -27.879 -13.55 Td[(\\273e)-461(jak)28(ob)28(y)-460(s)-1(i)1(\\246)-461(c)-1(a\\252kiem)-461(w\\261)-1(ciek\\252)-461(w)-461(sobi)1(e)-1(.)-460(Na)-461(r)1(ob)-28(ot\\246)-461(n)1(ie)-461(c)27(h)1(o)-28(dzi\\252,)-460(c)27(h)1(o)-28(\\242)-461(m)-1(\\252y)1(narz)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(y\\252a\\252)-304(p)-27(o)-304(n)1(ie)-1(go)-303(par\\246)-304(razy)84(,)-304(a)-304(in)1(o)-304(w)28(a\\252\\246)-1(sa\\252)-304(s)-1(i)1(\\246)-305(p)-27(o)-304(wsi,)-304(w)-304(k)56(arcz)-1(mie)-304(p)1(rz)-1(esiadyw)28(a\\252)]TJ 0 -13.549 Td[(i)-353(p)1(i\\252,)-353(s)-1(n)29(uj\\241c)-353(c)-1(or)1(az)-354(kr)1(w)27(a)28(ws)-1(ze)-354(zam)27(y)1(s)-1(\\252y)-353(p)-27(om)-1(st)28(y)-353(i)-353(n)1(ie)-354(wid)1(z)-1(\\241c)-353(ju)1(\\273)-354(ni)1(c)-354(p)-27(oz)-1(a)-353(t)28(ym,)-353(i\\273)]TJ 0 -13.549 Td[(go)-333(na)28(w)27(et)-333(nie)-333(ob)-28(c)28(ho)-28(d)1(z)-1(i\\252y)-333(p)-27(os)-1(\\241d)1(z)-1(eni)1(a)-334(o)-333(p)-27(o)-28(dp)1(ale)-1(n)1(ie)-334(o)-55(jca.)]TJ 27.879 -13.549 Td[({)-340(Niec)27(h)-339(mi)-340(to)-339(do)-340(o)-28(cz\\363)27(w)-340(k)1(t\\363ren)-340(p)-27(o)28(wie)-1(,)-339(niec)27(h)-339(si\\246)-340(w)27(a\\273y!{)-340(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-340(Mate-)]TJ -27.879 -13.55 Td[(uszo)27(wi)-333(w)-334(k)56(arczm)-1(ie)-333(i)-333(na)-333(g\\252os)-1(,)-333(b)28(y)-333(lu)1(dzie)-334(s\\252ys)-1(ze)-1(l)1(i.)]TJ 27.879 -13.549 Td[(Sp)1(rze)-1(d)1(a\\252)-351(\\233ydo)28(wi)-351(ostatn)1(i\\241)-351(j)1(a\\252)-1(\\363)28(wk)28(\\246)-351(i)-351(p)1(rze)-1(p)1(ija\\252)-351(j)1(\\241)-351(z)-351(k)28(ompanami)-350(,b)-27(o)-351(s)-1(to)28(w)28(a-)]TJ -27.879 -13.549 Td[(rzysz)-1(y\\252)-398(si\\246)-399(z)-399(n)1(a)-56(j)1(gors)-1(zymi)-398(w)27(e)-398(w)-1(si,)-398(p)1(rz)-1(y)1(s)-1(tal)1(i)-399(d)1(o)-398(niego)-399(t)1(ac)-1(y)84(,)-398(jak)-398(Bartek,)-398(Kozio\\252,)]TJ 0 -13.549 Td[(Fil)1(ip)-343(zz)-1(a)-343(w)28(o)-28(dy)84(,)-343(F)83(r)1(anek)-343(m)-1(\\252yn)1(arcz)-1(yk)-343(i)-343(t)1(e)-344(c)-1(o)-343(n)1(a)-56(j)1(gors)-1(ze)-344(G)1(ulb)1(as)-1(o)28(w)28(e)-344(wis)-1(i)1(e)-1(lak)1(i,)-343(kt\\363-)]TJ 0 -13.549 Td[(re)-425(za)28(w\\273)-1(d)1(y)-425(b)28(y)1(\\252y)-425(p)1(ierws)-1(ze)-425(do)-424(ws)-1(ze)-1(lk)1(ie)-1(j)-424(r)1(oz)-1(p)1(ust)28(y)-425(i)-424(ci\\246gie)-1(m)-425(si\\246)-425(p)-27(o)-424(w)-1(si)-424(w)27(a\\252\\246s)-1(a\\252y)84(,)]TJ 0 -13.55 Td[(kiej)-318(wilk)1(i,)-318(up)1(atru)1(j\\241c,)-318(c)-1(o)-318(b)28(y)-318(si\\246)-319(c)28(h)28(yci\\242)-319(d)1(a\\252o)-319(i)-317(nie\\261)-1(\\242)-318(\\233ydo)28(wi)-318(na)-318(gorza\\252k)28(\\246)-1(,)-318(al)1(e)-319(jem)27(u)]TJ 0 -13.549 Td[(zar\\363)28(w)-1(n)1(o)-321(b)28(y\\252o,)-321(j)1(akie)-321(s)-1(\\241,)-321(b)28(y)1(le)-322(si\\246)-321(jeno)-321(pr)1(z)-1(y)-321(n)1(im)-321(k)28(om)-1(p)1(anion)1(o,)-321(b)-27(o)-321(bak)28(\\246)-321(m)27(u)-321(\\261wie)-1(ci-)]TJ 0 -13.549 Td[(li,)-363(jak)-363(pies)-1(k)1(i)-364(w)-364(o)-28(cz)-1(y)-363(nagl\\241d)1(a)-56(j)1(\\241c)-1(,)-363(\\273)-1(e)-364(c)27(h)1(o)-28(\\242)-364(c)-1(zas)-1(em)-364(i)-364(p)-27(obi\\252,)-363(ale)-364(p)-28(\\363\\252kw)28(aterki)-363(g\\246)-1(sto)]TJ 0 -13.549 Td[(sta)27(wia\\252)-333(i)-333(o)-28(c)27(h)1(ran)1(ia\\252)-334(p)1(rze)-1(d)-333(l)1(ud\\271mi.)]TJ 27.879 -13.549 Td[(Wyp)1(ra)28(wiali)-317(te\\273)-318(sp)-27(o\\252)-1(em)-317(takie)-317(brew)27(erie)-317(p)-27(o)-318(wsi,)-317(n)1(apasto)27(w)28(ani)1(a)-318(i)-316(bij)1(at)28(yki,)-317(\\273e)]TJ -27.879 -13.55 Td[(co)-334(d)1(nia)-333(c)27(h)1(o)-28(dzi\\252y)-333(na)-333(ni)1(c)27(h)-333(sk)55(ar)1(gi)-333(do)-333(w)27(\\363)-55(jta,)-333(a)-333(na)28(w)28(e)-1(t)-333(i)-333(pr)1(z)-1(ed)-333(dob)1(ro)-28(d)1(z)-1(ieja.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(t)1(rz)-1(ega\\252)-329(go)-330(M)1(ate)-1(u)1(s)-1(z,)-329(ale)-329(na)-329(dar)1(m)-1(o,)-329(p)1(r\\363\\273no)-329(i)-329(K\\252\\241b)-329(z)-330(czys)-1(tego)-329(pr)1(z)-1(yj)1(a-)]TJ -27.879 -13.549 Td[(cie)-1(l)1(s)-1(t)28(w)28(a)-319(z)-1(ak)1(lina\\252,)-318(b)28(y)-318(s)-1(i\\246)-319(u)1(s)-1(tat)1(k)28(o)27(w)28(a\\252)-319(i)-318(do)-319(zgub)29(y)-319(n)1(ie)-319(s)-1(ze)-1(d)1(\\252,)-319(p)1(r\\363\\273no)-319(m)28(u)-318(prze)-1(k)1(\\252ada\\252)]TJ 0 -13.549 Td[({)-440(An)28(t)1(e)-1(k)-439(ani)-439(us\\252)-1(u)1(c)27(h)1(a\\252)-1(,)-439(ni)-439(da\\252)-440(sobi)1(e)-440(c)-1(o)-440(m\\363)28(wi\\242)-1(,)-439(z)-1(ap)1(am)-1(i)1(\\246)-1(t)28(yw)28(a\\252)-440(si\\246)-440(c)-1(oraz)-440(b)1(arze)-1(j)1(,)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(wi\\246ce)-1(j)-333(p)1(i\\252)-334(i)-333(j)1(u\\273)-334(si\\246)-334(ca\\252e)-1(j)-333(wsi)-333(o)-28(dgr)1(a\\273)-1(a\\252.)]TJ 27.879 -13.55 Td[(I)-349(tak)-349(s)-1(i)1(\\246)-350(s)-1(t)1(ula\\252)-349(w,)-349(to)-349(jakie\\261)-350(zatrace)-1(n)1(ie,)-349(kieb)28(y)-349(z)-350(tego)-349(pag\\363rk)56(a)-349(s)-1(p)1(adziste)-1(go,)]TJ -27.879 -13.549 Td[(ni)1(e)-274(bacz)-1(\\241c)-273(na)-273(ni)1(c)-274(ni)-273(n)1(a)-274(n)1(ik)28(ogo,)-273(a)-273(wie)-1(\\261)-273(nie)-273(prze)-1(sta\\252a)-273(m)-1(i)1(e)-1(\\242)-274(n)1(a)-273(niego)-274(p)1(iln)1(e)-1(go)-273(b)1(ac)-1(ze)-1(-)]TJ 0 -13.549 Td[(ni)1(a,)-298(b)-28(o)-298(c)27(h)1(o)-28(\\242)-299(o)-298(t)28(ym)-299(p)-27(o)-28(d)1(paleni)1(u)-298(r\\363\\273nie)-299(r)1(\\363\\273)-1(n)1(i)-298(p)-28(o)28(wiad)1(ali,)-298(ale)-299(wid)1(z)-1(\\241c,)-298(c)-1(o)-298(wyp)1(ra)28(w)-1(i)1(a,)]TJ 0 -13.549 Td[(obu)1(rzali)-325(si\\246)-326(coraz)-325(m)-1(o)-28(cni)1(e)-1(j)1(,)-325(a)-325(\\273)-1(e)-325(przy)-325(t)28(ym)-325(i)-325(k)28(o)28(w)27(al)-325(z)-325(c)-1(ic)28(ha)-325(p)-27(o)-28(dj)1(ud)1(z)-1(a\\252,)-325(to)-325(z)-325(w)27(oln)1(a)]TJ 0 -13.549 Td[(o)-28(d)1(s)-1(tr)1(\\246)-1(cz)-1(al)1(i)-432(si\\246)-432(na)28(w)27(et)-432(d)1(a)28(w)-1(n)1(i)-432(p)1(rzyjaciele)-1(,)-431(om)-1(i)1(jali)-431(go)-432(z)-432(dal)1(a,)-432(pi)1(e)-1(r)1(w)-1(si)-432(g\\252o\\261no)-431(p)-28(o-)]TJ 0 -13.549 Td[(ws)-1(ta)-55(j\\241c)-280(na)-279(niego,)-280(j)1(u\\261c)-1(i,)-279(nie)-280(sto)-56(j)1(a\\252)-280(o)-280(to,)-280(p)-27(oms)-1(t\\241)-279(z)-1(a\\261le)-1(p)1(ion)28(y)84(,)-280(b)-27(o)-28(\\242)-280(t)28(ym)-280(jeno)-280(d)1(yc)27(h)1(a\\252,)]TJ 0 -13.55 Td[(rozdm)28(uc)28(h)28(uj)1(\\241c)-334(j\\241)-333(w)-334(sobi)1(e)-334(nib)29(y)-333(z)-1(arzew)-1(i)1(e)-1(,)-333(b)28(yc)28(h)-333(p\\252omieniem)-334(b)1(uc)27(h)1(n\\246\\252o.)]TJ 27.879 -13.549 Td[(A)-314(d)1(o)-314(te)-1(go,)-313(jak)1(b)28(y)-314(n)1(a)-314(z)-1(\\252o\\261\\242)-314(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(,)-313(z)-314(Jagn\\241)-314(n)1(ie)-314(z)-1(ap)1(rze)-1(sta\\252,)-314(k)28(o)-28(c)28(hani)1(e)-315(go)]TJ -27.879 -13.549 Td[(tam)-416(do)-416(n)1(ie)-1(j)-415(c)-1(i)1(\\241)-28(gn\\246\\252o)-416(c)-1(zy)-416(co)-416(inn)1(e)-1(go,)-416(B\\363g)-416(ta)-416(wie)-416({)-416(w)-417(D)1(om)-1(in)1(ik)28(o)28(w)27(ej)-416(sto)-28(d)1(ole)-416(s)-1(i\\246)]TJ 0 -13.549 Td[(sc)27(ho)-27(dzili,)-404(ju)1(\\261)-1(ci,)-405(\\273e)-405(s)-1(k)1(ryto)-404(prze)-1(d)-404(matk)56(\\241,)-405(t)28(yle)-405(\\273e)-405(im)-405(Szyme)-1(k)-404(p)-28(omaga\\252)-405(o)-27(c)27(hotn)1(ie,)]TJ 0 -13.549 Td[(p)-27(e)-1(wn)28(y)-333(za)-334(to)-333(An)28(tk)28(o)28(w)28(e)-1(j)-333(p)-27(omo)-28(c)-1(y)-333(p)1(rzy)-333(o\\273)-1(enku)-333(z)-333(Nas)-1(tk)56(\\241.)]TJ 27.879 -13.55 Td[(Jagu)1(\\261)-379(wyc)27(h)1(o)-28(d)1(z)-1(i\\252a)-378(d)1(o)-378(niego)-378(ni)1(e)-1(c)28(h\\246tnie,)-378(p)-27(o)-28(d)-378(strac)28(hem)-379(za)28(wdy)84(,)-378(b)-28(o)-377(jakb)28(y)-377(w)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)-242(d)1(o)-243(cna)-242(struc)28(hla\\252o)-242(k)28(o)-28(c)28(hani)1(e)-243(p)-27(o)-243(m\\246)-1(\\273o)28(wyc)27(h)-242(b)1(as)-1(a\\252yk)56(ac)27(h)1(,)-242(o)-28(d)-242(cz)-1(ego)-243(n)1(os)-1(i)1(\\252)-1(a)-242(j)1(e)-1(sz)-1(cz)-1(e)]TJ\nET\nendstream\nendobj\n1046 0 obj <<\n/Type /Page\n/Contents 1047 0 R\n/Resources 1045 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1045 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1051 0 obj <<\n/Length 9665      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(326)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(ol\\241c)-1(e)-359(\\261lady)84(,)-359(ale)-359(z)-1(ar)1(\\363)27(wn)1(o)-359(b)-28(o)-55(ja\\252a)-359(si\\246)-360(An)29(tk)55(a,)-358(gdy\\273)-359(z)-1(ap)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-360(gr)1(o\\271)-1(n)1(ie,)-359(\\273)-1(e)-359(je\\261)-1(l)1(i)]TJ 0 -13.549 Td[(ni)1(e)-324(w)-1(y)1(jdzie)-324(d)1(o)-324(ni)1(e)-1(go)-324(n)1(a)-324(k)56(a\\273de)-324(za)27(w)28(o\\252anie,)-323(to)-324(on)-323(w)-324(bi)1(a\\252)-1(y)-323(dzie\\253,)-323(pr)1(z)-1(y)-323(w)-1(szys)-1(tk)1(ic)27(h)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(jdzie)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)-333(i)-333(s)-1(p)1(ie)-1(r)1(z)-1(e)-334(j)1(\\241)-333(jes)-1(zc)-1(ze)-334(lepiej)-333(o)-28(d)-333(Bory)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-283(k)1(to)-283(pr)1(z)-1(ez)-284(k)28(ogo)-282(z)-1(grzes)-1(zy)83(,)-282(te)-1(m)28(u)-283(si\\246)-283(do)-283(n)1(iego)-283(nie)-283(spies)-1(zy)84(,)-283(ale)-283(\\273)-1(e)-283(gro\\271b\\241)]TJ -27.879 -13.549 Td[(ni)1(e)-1(w)28(oli\\252,)-333(to)-333(wyc)27(h)1(o)-28(dzi\\252a)-334(r)1(ada)-333(ni)1(e)-1(rad)1(a.)]TJ 27.879 -13.55 Td[(Nied\\252u)1(go)-340(to)-340(jedn)1(ak)-340(trw)28(a\\252o,)-340(b)-27(o)-340(jak)28(o\\261)-340(zaraz)-340(w)27(e)-340(c)-1(zw)27(ar)1(te)-1(k)-339(p)-28(op)1(ielc)-1(o)28(wy)-340(p)1(rzy-)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-289(do)-289(k)56(arcz)-1(m)28(y)-289(S)1(z)-1(y)1(m)-1(ek,)-289(o)-27(dci\\241)-28(gn\\241\\252)-289(go)-288(w)-289(k)55(\\241t)-288(i)-289(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-288(\\273)-1(e)-289(dop)1(iero)-289(co)-289(Jagn\\246)]TJ 0 -13.549 Td[(p)-27(ogo)-28(dzili)-333(ze)-334(starym)-334(i)-333(j)1(u\\273)-334(si\\246)-334(d)1(o)-333(niego)-334(p)1(rze)-1(n)1(ies)-1(\\252a.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-381(go)-381(k\\252oni)1(c)-1(\\241)-381(\\271dzie)-1(l)1(i\\252)-381(przez)-382(cie)-1(mieni)1(e)-1(,)-381(tak)-380(go)-381(z)-1(amro)-28(cz)-1(y)1(\\252a)-382(t)1(a)-381(no)28(wina,)]TJ -27.879 -13.549 Td[(b)-27(o)-28(\\242)-255(w)28(cz)-1(ora)-55(j)-254(j)1(e)-1(sz)-1(cze)-255(o)-254(zm)-1(i)1(e)-1(rzc)27(h)29(u)-254(widzia\\252)-254(si\\246)-255(z)-254(ni)1(\\241)-254(i)-254(ani)-253(s)-1(\\252\\363)28(wkiem)-255(n)1(ie)-255(wsp)-28(omn)1(ia\\252a!)]TJ 27.879 -13.549 Td[({)-385(T)83(ai\\252a)-385(pr)1(z)-1(ede)-385(m)-1(n)1(\\241!)-385({)-385(p)-27(om)27(y\\261la\\252,)-385(jak)1(b)28(y)-385(m)27(u)-384(kto)-385(\\273yw)27(ego)-385(ognia)-385(n)1(as)-1(yp)1(a\\252)-385(w)]TJ -27.879 -13.55 Td[(se)-1(rce,)-334(\\273e)-334(ledwie)-333(s)-1(i\\246)-333(do)-28(cz)-1(ek)56(a\\252)-334(wiec)-1(zora)-333(i)-333(p)-28(ob)1(ieg\\252.)]TJ 27.879 -13.549 Td[(D\\252ugo)-307(kr\\241\\273y\\252)-308(k)28(o\\252o)-307(o)-56(j)1(c)-1(o)28(w)27(ej)-307(c)27(h)1(a\\252up)28(y)84(,)-308(n)1(agl\\241da\\252)-307(i)-308(wycz)-1(ekiw)28(a\\252)-308(p)1(rzy)-308(p)1(rz)-1(e\\252az)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-230(si\\246)-1(,)-230(n)1(ie)-231(p)-27(ok)56(az)-1(a\\252a,)-230(tak)-230(si\\246)-231(t)28(ym)-230(rozj\\241tr)1(z)-1(y\\252)-230(i)-230(uzuc)28(h)28(w)27(al)1(i\\252,)-230(\\273)-1(e)-230(w)-1(y)1(rw)27(a\\252)-230(jak)1(i\\261)-231(k)28(o\\252ek)]TJ 0 -13.549 Td[(i)-328(w)-1(sz)-1(ed\\252)-328(w)-329(ob)-27(e)-1(j)1(\\261)-1(cie)-329(goto)28(w)-1(y)-328(na)-328(ws)-1(zys)-1(t)1(k)28(o,)-329(zdec)-1(y)1(do)28(w)27(an)28(y)-328(i\\261\\242)-329(c)27(h)1(o)-28(\\242)-1(b)29(y)-329(d)1(o)-329(c)27(h)1(a\\252up)28(y)-328({)]TJ 0 -13.549 Td[(ju)1(\\273)-244(b)29(y\\252)-243(na)-243(gank)1(u)-243(i)-243(n)1(a)27(w)28(e)-1(t)-243(za)-243(klamk)28(\\246)-244(b)1(ra\\252,)-243(ale)-243(w)-243(os)-1(tatn)1(iej)-243(c)27(h)29(w)-1(i)1(li)-243(o)-28(d)1(rz)-1(u)1(c)-1(i)1(\\252o)-244(go)-243(cos)-1(i)1(k)]TJ 0 -13.55 Td[(o)-28(d)-348(d)1(rz)-1(wi,)-348(p)1(rz)-1(y)1(p)-28(omni)1(e)-1(n)1(ie)-349(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-348(t)28(w)28(arz)-1(y)-348(stan\\246\\252o)-349(m)28(u)-349(w)-348(o)-28(c)-1(zac)27(h)-348(z)-349(tak)56(\\241)-348(m)-1(o)-27(c)-1(\\241,)-348(\\273)-1(e)]TJ 0 -13.549 Td[(cofn\\241\\252)-330(s)-1(i)1(\\246)-331(s)-1(tr)1(w)27(o\\273on)28(y)84(,)-331(zady)1(g)-1(ot)1(a\\252)-331(ca\\252)-1(y)-330(z)-331(p)1(rze)-1(ra\\273enia,)-330(ni)1(e)-331(m)-1(\\363g\\252)-330(s)-1(i)1(\\246)-331(przem)-1(\\363)-28(c,)-330(a)-331(in)1(o)]TJ 0 -13.549 Td[(cic)27(h)1(o,)-334(strac)28(hli)1(w)-1(i)1(e)-1(,)-333(c)27(h)29(y\\252kiem)-334(p)-27(oni\\363s\\252)-334(si\\246)-334(z)-333(na)28(wrotem)-1(.)]TJ 27.879 -13.549 Td[(Nie)-304(m\\363g\\252)-303(p)-28(otem)-304(zrozumie)-1(\\242,)-303(c)-1(ze)-1(go)-303(si\\246)-304(ul)1(\\246)-1(kn)1(\\241\\252,)-303(c)-1(o)-303(s)-1(i)1(\\246)-304(z)-304(ni)1(m)-304(s)-1(ta\\252o,)-303(zup)-27(e)-1(\\252n)1(ie)]TJ -27.879 -13.549 Td[(jak)-333(wtedy)-333(n)1(ad)-333(s)-1(ta)28(w)28(e)-1(m.)]TJ 27.879 -13.55 Td[(Ale)-490(i)-489(dn)1(i)-489(nast\\246)-1(p)1(n)28(yc)27(h)-489(n)1(ie)-490(m\\363g\\252)-490(si\\246)-490(z)-490(ni)1(\\241)-490(zobacz)-1(y\\242,)-489(c)27(h)1(o)-28(\\242)-490(c)-1(a\\252e)-490(wiec)-1(zory)]TJ -27.879 -13.549 Td[(wysta)27(w)28(a\\252)-333(przy)-333(prze\\252)-1(azie)-334(i)-333(cz)-1(ai)1(\\252)-334(si\\246)-334(j)1(ak)-333(w)-1(i)1(lk.)]TJ 27.879 -13.549 Td[(Nie)-334(sp)-27(otk)56(a\\252)-334(j)1(e)-1(j)-333(n)1(a)27(w)28(et)-334(w)-333(niedziel\\246)-1(,)-333(c)28(ho)-28(\\242)-333(d\\252ugo)-333(cz)-1(ato)28(w)27(a\\252)-333(pr)1(z)-1(ed)-333(k)28(o\\261c)-1(io\\252em)-1(.)]TJ 0 -13.549 Td[(Um)27(y)1(\\261)-1(li)1(\\252)-340(prze)-1(t)1(o)-340(i\\261)-1(\\242)-340(na)-340(n)1(ies)-1(zp)-28(or)1(y)83(,)-339(p)-28(ewn)28(y)83(,)-339(\\273)-1(e)-340(j\\241)-340(tam)-340(sp)-28(otk)56(a)-340(i)-340(zna)-55(jd)1(z)-1(ie)-340(jak)1(i\\261)]TJ -27.879 -13.549 Td[(sp)-28(os\\363b)-333(p)-27(om)-1(\\363)28(wienia.)]TJ 27.879 -13.55 Td[(Sp)-27(\\363\\271ni\\252)-439(s)-1(i)1(\\246)-440(ni)1(e)-1(co,)-439(b)-28(o)-439(n)1(ie)-1(sz)-1(p)-27(ory)-439(j)1(u\\273)-439(s)-1(i\\246)-439(z)-1(acz)-1(\\246\\252y)83(,)-439(k)28(o\\261c)-1(i\\363\\252)-439(b)28(y)1(\\252)-440(p)-27(e)-1(\\252n)28(y)-439(a)-439(tak)]TJ -27.879 -13.549 Td[(mro)-28(cz)-1(n)29(y)83(,)-340(\\273)-1(e)-341(j)1(e)-1(n)1(o)-341(p)-27(o)-28(d)-340(s)-1(k)1(le)-1(p)1(ieniami)-340(s)-1(zarza\\252)-1(y)-340(resz)-1(tki)-340(d)1(nia,)-340(do\\252em)-341(z)-1(a\\261,)-340(w)-341(c)-1(i)1(e)-1(mno-)]TJ 0 -13.549 Td[(\\261c)-1(iac)28(h)-398(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-399(r)1(oz)-1(tl)1(a\\252)-1(y)1(c)27(h)-397(p\\252omie)-1(n)1(iem)-398(s)-1(to)-28(czk)28(\\363)27(w,)-397(m)-1(r)1(o)27(wi\\252)-397(s)-1(i\\246)-398(n)1(ar\\363)-28(d)-397(i)-398(w)28(ar-)]TJ 0 -13.549 Td[(k)28(ota\\252)-493(k)1(ie)-1(j)-492(r)1(z)-1(ek)56(a)-493(k)28(o\\252ysz)-1(\\241c)-493(si\\246)-493(ku)-492(wielki)1(e)-1(m)28(u)-492(o\\252)-1(t)1(arz)-1(o)28(wi)-492(rz\\246)-1(si\\261c)-1(ie)-493(o\\261wie)-1(t)1(lonem)27(u)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(c)27(ha\\252)-309(s)-1(i)1(\\246)-310(a\\273)-310(d)1(o)-310(kr)1(at)28(y)-309(i)-310(r)1(oz)-1(gl)1(\\241)-1(d)1(a\\252)-310(n)1(iez)-1(n)1(ac)-1(znie,)-309(ale)-310(n)1(ie)-310(d)1(o)-56(j)1(rz)-1(a\\252)-309(Jagn)28(y)-309(n)1(i)-309(nik)28(o-)]TJ 0 -13.55 Td[(go)-338(o)-28(d)-337(o)-56(j)1(c)-1(a,)-337(natomiast)-338(c)-1(z\\246s)-1(to)-338(\\252ap)1(a\\252)-338(c)-1(iek)56(a)27(w)28(e)-338(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)-338(wlepion)1(e)-339(w)-338(siebie)-338(i)-338(cz)-1(u)1(\\252,)]TJ 0 -13.549 Td[(\\273e)-420(zwraca)-56(j\\241)-418(bacz)-1(enie,)-419(b)-27(o)-419(kt)1(o\\261)-420(n)1(ie)-1(k)1(to\\261)-419(p)-28(osz)-1(ept)28(yw)28(a\\252)-419(d)1(o)-419(s)-1(\\241siada)-418(w)-1(sk)56(az)-1(u)1(j\\241c)-419(na\\253)]TJ 0 -13.549 Td[(uk)1(radk)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(\\221p)1(iew)27(ali)-363(ju)1(\\273)-365(G)1(o)-1(r)1(z)-1(k)1(ie)-365(\\233al)1(e)-1(,)-364(b)-27(o)-28(\\242)-364(to)-364(b)28(y\\252a)-364(p)1(ierws)-1(za)-364(ni)1(e)-1(d)1(z)-1(iela)-364(p)-27(os)-1(t)1(u.)-364(Ksi\\241d)1(z)-1(,)]TJ -27.879 -13.549 Td[(ub)1(ran)28(y)-308(w)-309(k)28(om)-1(\\273\\246,)-309(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-308(z)-310(b)-27(oku)-308(o\\252tarza)-309(z)-309(ks)-1(i\\241\\273k)56(\\241)-309(w)-309(r\\246ku)-308(i)-309(raz)-309(w)-309(raz)-309(sp)-28(ogl)1(\\241da\\252)]TJ 0 -13.549 Td[(na)-333(n)1(ie)-1(go)-333(suro)28(w)28(o.)]TJ 27.879 -13.55 Td[(Or)1(gan)28(y)-278(h)28(u)1(c)-1(za\\252y)-278(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(o,)-278(a)-278(ca\\252y)-278(n)1(ar\\363)-28(d)-277(\\261)-1(p)1(ie)-1(w)28(a\\252)-278(w)-278(jeden)-278(g\\252os,)-278(c)27(h)28(wil)1(am)-1(i)]TJ -27.879 -13.549 Td[(za\\261)-428(u)1(ryw)28(a\\252y)-427(si\\246)-427(g\\252os)-1(y)84(,)-427(\\261c)-1(i)1(c)27(ha\\252y)-426(organ)28(y)-426(i)-427(z)-427(c)27(h)1(\\363ru,)-426(jak)28(ob)28(y)-426(gdzies)-1(ik)-426(s)-1(p)-27(o)-28(d)-426(ni)1(e)-1(b)1(a,)]TJ 0 -13.549 Td[(rozlega\\252)-493(s)-1(i)1(\\246)-493(p\\252acz)-1(li)1(w)-1(y)84(,)-492(uryw)28(an)28(y)-492(g\\252os)-493(organi)1(s)-1(t)28(y)84(,)-493(cz)-1(y)1(ta)-56(j)1(\\241c)-1(ego)-493(rozw)28(a\\273)-1(an)1(ia)-493(m\\246)-1(k)1(i)]TJ 0 -13.549 Td[(P)28(an)1(a)-56(j)1(e)-1(zuso)27(w)28(ej.)]TJ 27.879 -13.549 Td[(An)28(tek)-350(za\\261)-351(ni)1(c)-351(ni)1(e)-351(s\\252ys)-1(za\\252,)-350(b)-28(o)-350(z)-350(w)27(oln)1(a)-350(z)-1(ap)-27(omnia\\252,)-350(p)-27(o)-350(c)-1(o)-350(p)1(rzys)-1(ze)-1(d)1(\\252)-350(i)-350(gdzie)]TJ -27.879 -13.55 Td[(jest,)-424(przej\\246\\252)-1(y)-424(go)-424(te)-424(\\261)-1(p)1(ie)-1(wy)-424(n)1(a)-425(wskro\\261)-424(i)-424(os)-1(n)28(u)1(\\252y)-424(pies)-1(zc)-1(zon\\241,)-424(k)28(o\\252y)1(s)-1(z\\241c)-1(\\241)-424(n)28(u)1(t\\241,)-424(\\273)-1(e)]TJ 0 -13.549 Td[(dziwni)1(e)-310(os\\252ab\\252)-309(w)-309(sobie,)-309(se)-1(n)1(no\\261\\242)-310(go)-309(ogar)1(nia\\252a)-309(i)-308(g\\252\\246)-1(b)-27(ok)56(a)-309(c)-1(isz)-1(a,)-308(\\273)-1(e)-309(zapada\\252)-309(i)-308(jakb)29(y)]TJ\nET\nendstream\nendobj\n1050 0 obj <<\n/Type /Page\n/Contents 1051 0 R\n/Resources 1049 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1049 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1054 0 obj <<\n/Length 10395     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(327)]TJ -358.232 -35.866 Td[(lec)-1(i)1(a\\252)-401(gd)1(z)-1(iesik)-400(w)-401(j)1(ak)56(\\241\\261)-401(\\261w)-1(i)1(at\\252o\\261)-1(\\242,)-400(a)-400(c)-1(o)-400(opr)1(z)-1(yt)1(om)-1(n)1(ia\\252)-400(i)-400(ot)28(w)27(orzy\\252)-400(o)-28(cz)-1(y)84(,)-400(s)-1(p)-27(ot)28(yk)56(a\\252)]TJ 0 -13.549 Td[(si\\246)-351(z)-351(o)-28(cz)-1(ami)-350(ksi\\246dza;)-351(k)1(t\\363ren)-350(na\\253)-350(w)28(c)-1(i)1(\\241\\273)-351(s)-1(p)-27(ogl\\241d)1(a\\252)-1(,)-350(\\273e)-351(to)-350(wy\\273)-1(sz)-1(y)-350(b)29(y\\252)-351(n)1(ad)-350(dr)1(ugie)]TJ 0 -13.549 Td[(i)-346(j)1(u\\273)-346(z)-347(d)1(ala)-346(widn)29(y)83(,)-346(a)-346(t)1(ak)-346(\\261)-1(wid)1(ro)28(w)27(a\\252,)-345(i\\273)-347(An)29(te)-1(k)-345(o)-28(dwraca\\252)-346(o)-28(ci\\246)-1(\\273a\\252\\241)-346(g\\252o)27(w)28(\\246)-346(i)-346(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.549 Td[(zap)-28(omin)1(a)-1(\\252)-333(o)-333(w)-1(szys)-1(tk)1(im;)-334(p)1(rze)-1(c)28(kn\\241\\252)-333(z)-334(n)1(a)-1(g\\252a:)]TJ 27.879 -13.549 Td[(Wisi)-333(na)-333(kr)1(z)-1(y\\273u)-333(P)28(an)1(,)-334(S)1(t)28(w)27(\\363r)1(c)-1(a)-333(ni)1(e)-1(b)1(a,)]TJ 0 -13.55 Td[(P\\252ak)56(a\\242)-334(za)-333(grz)-1(ec)27(h)28(y)84(,)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(e,)-333(trze)-1(b)1(a)]TJ 0 -13.549 Td[({)-379(zah)28(u)1(c)-1(za\\252)-379(k)28(o\\261c)-1(i\\363\\252,)-378(\\273e)-379(jakb)29(y)-379(z)-379(j)1(e)-1(d)1(nej,)-378(ni)1(e)-1(p)-27(o)-56(j)1(\\246)-1(tej)-378(jaki)1(e)-1(j)1(\\261)-379(gardzieli)-378(w)-1(y)1(rw)28(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-421(t)1(e)-1(n)-419(krzyk)-420(i)-419(bu)1(c)27(hn)1(\\241\\252)-420(tak)56(\\241)-420(\\273)-1(a\\252o\\261liw)28(\\241)-420(mo)-28(c)-1(\\241,)-419(takim)-420(p)1(rz)-1(ep\\252ak)56(an)28(ym)-420(j)1(\\246)-1(ki)1(e)-1(m,)-420(a\\273)]TJ 0 -13.549 Td[(m)27(u)1(ry)-298(si\\246)-299(zatrz\\246s)-1(\\252y)84(,)-298(nar\\363)-27(d)-298(p)-27(orw)27(a\\252)-298(si\\246)-299(z)-298(kl\\246c)-1(ze)-1(k)1(,)-298(z)-1(ak\\252\\246bi)1(\\252)-299(i)-298(r)1(oz)-1(gr)1(z)-1(mia\\252)-298(ws)-1(zys)-1(t)1(kimi)]TJ 0 -13.549 Td[(nar)1(az)-334(g\\252os)-1(ami,)-333(d)1(usz)-1(\\241)-333(ws)-1(zys)-1(t)1(k)55(\\241)-333(\\261piew)27(a\\252)-333(i)-333(w)-1(szys)-1(tk)1(im)-334(p)1(\\252ac)-1(ze)-1(m)-333(p)-28(oku)1(tn)28(ym.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(e\\261)-1(p)1(iew)27(ali)1(,)-314(a)-314(d)1(\\252ugo)-314(j)1(e)-1(sz)-1(cz)-1(e)-314(p)-27(o)-314(k)28(o\\261c)-1(iele)-314(t\\252uk\\252y)-313(s)-1(i)1(\\246)-315(j)1(\\246)-1(k)1(liw)28(e)-1(,)-313(b)-28(oles)-1(n)1(e)-314(e)-1(c)28(ha)-314(i)]TJ -27.879 -13.55 Td[(sz)-1(me)-1(r)-333(\\252k)56(a\\253,)-333(w)28(e)-1(stc)27(h)1(nie\\253)-333(i)-333(mo)-28(d\\252\\363)28(w)-334(gor)1(\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Nab)-27(o\\273)-1(e\\253st)28(w)27(o)-305(jes)-1(zc)-1(ze)-306(si\\246)-306(c)-1(i)1(\\241)-28(gn\\246\\252o)-306(d)1(o\\261)-1(\\242)-306(d)1(\\252ugo,)-305(ale)-306(j)1(u\\273)-306(b)28(y)1(\\252)-306(do)-305(c)-1(n)1(a)-306(p)1(rzytom-)]TJ -27.879 -13.549 Td[(n)28(y)84(.)-339(Odsz)-1(ed\\252)-339(go)-339(\\261)-1(p)1(ik,)-339(a)-339(jeno)-339(j)1(aki\\261)-340(ci\\246\\273)-1(k)1(i,)-339(niez)-1(w)28(alcz)-1(on)29(y)-339(s)-1(m)28(utek)-339(c)-1(ze)-1(p)1(i\\252)-339(s)-1(i\\246)-339(du)1(s)-1(zy)-339(i)]TJ 0 -13.549 Td[(tak)-335(j)1(\\241)-335(rozpiera\\252,)-335(\\273e)-336(gd)1(yb)28(y)-335(n)1(ie)-336(wst)28(yd,)-335(n)1(ie)-335(z)-1(d)1(z)-1(ier\\273y\\252b)28(y)-335(t)28(yc)28(h)-335(\\252ez)-1(,)-335(co)-335(s)-1(i)1(\\246)-336(cis)-1(n)1(\\246)-1(\\252y)-335(d)1(o)]TJ 0 -13.549 Td[(o)-28(cz)-1(\\363)28(w,)-292(\\273)-1(e)-293(j)1(u\\273)-293(c)27(h)1(c)-1(i)1(a\\252)-293(wyj\\261\\242)-293(ni)1(e)-293(c)-1(ze)-1(k)56(a)-55(j\\241c)-293(k)28(o\\253)1(c)-1(a,)-292(gdy)-292(nar)1(az)-293(organ)28(y)-292(umilk)1(\\252y)83(,)-292(ksi\\241dz)]TJ 0 -13.55 Td[(stan\\241\\252)-333(prze)-1(d)-332(o\\252)-1(t)1(arz)-1(em)-334(i)-333(zac)-1(z\\241\\252)-334(wyg\\252asz)-1(a\\242)-333(nauk)28(\\246.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-442(zac)-1(z\\246li)-441(si\\246)-441(p)-28(c)28(ha\\242)-441(nap)1(rz\\363)-28(d,)-440(\\273)-1(e)-441(ani)-440(m)27(y\\261le\\242)-441(b)28(y\\252o)-441(o)-441(wyj)1(\\261)-1(ciu,)-440(ru)1(s)-1(zy\\242)]TJ -27.879 -13.549 Td[(si\\246)-384(na)28(w)28(e)-1(t)-383(n)1(ie)-384(m\\363g\\252)-384(p)1(rzypar)1(t)28(y)-383(do)-383(krat)28(y;)-383(cisz)-1(a)-383(ogarn)1(\\246)-1(\\252a)-383(k)28(o\\261c)-1(i\\363\\252,)-383(\\273e)-384(k)56(a\\273)-1(d)1(e)-384(s\\252)-1(o)28(w)28(o)]TJ 0 -13.549 Td[(ksi\\246dza)-390(s)-1(\\252yc)28(ha\\242)-390(b)28(y\\252o)-390(wyra\\271ni)1(e)-1(.)-390(O)1(p)-28(o)28(wiad)1(a\\252)-390(o)-390(M\\246c)-1(e)-390(Je)-1(zuso)28(w)27(ej,)-389(a)-390(gdy)-390(sk)28(o\\253czy\\252,)]TJ 0 -13.549 Td[(j\\241\\252)-300(nap)-27(om)-1(i)1(na\\242)-301(grze)-1(sz)-1(n)29(yc)27(h)1(,)-301(gro\\271ni)1(e)-302(wytr)1(z)-1(\\241c)28(ha)-55(j\\241c)-301(r\\246k)55(ami,)-300(a)-301(p)1(atrz\\241c)-302(co)-301(tr)1(o)-28(c)27(h)1(\\246)-302(n)1(a)]TJ 0 -13.55 Td[(An)28(tk)56(a,)-343(kt\\363r)1(e)-1(n)-342(w)-1(p)1(rost)-343(niego)-343(s)-1(to)-55(ja\\252,)-343(jeno)-343(n)1(i\\273)-1(ej)-343(n)1(ie)-1(co,)-343(i)-343(ni)1(e)-344(m\\363g\\252)-344(o)-27(derw)27(a\\242)-343(o)-28(cz)-1(\\363)28(w,)]TJ 0 -13.549 Td[(kieb)28(y)-333(p)1(rz)-1(y)1(kut)28(y)-333(i)-333(ur)1(z)-1(ec)-1(zon)28(y)-333(pa\\252a)-55(j\\241cymi)-334(sp)-27(o)-56(j)1(rz)-1(eni)1(am)-1(i)-333(ksi\\246dza...)]TJ 27.879 -13.549 Td[(W)-233(skup)1(ionej)-233(i)-233(zas)-1(\\252u)1(c)27(han)1(e)-1(j)-233(g\\246st)27(wie)-233(ju)1(\\273)-234(si\\246)-234(zryw)28(a\\252y)-233(p\\252ac)-1(ze,)-233(ju\\273)-233(gdzie)-1(n)1(iegdzie)]TJ -27.879 -13.549 Td[(\\273alne)-412(w)28(e)-1(stc)27(h)1(nieni)1(e)-412(s)-1(i\\246)-412(r)1(oz)-1(leg\\252o,)-412(t)1(o)-412(\\261w)-1(i)1(\\246)-1(te)-412(s\\252o)27(w)28(o)-412(\\377)-55(Jez)-1(u)1(s)-1(\")-412(zabr)1(z)-1(mia\\252o)-411(j\\246kiem)-1(,)-411(a)]TJ 0 -13.549 Td[(ksi\\241dz)-409(m\\363)27(wi\\252)-409(coraz)-409(mo)-28(c)-1(n)1(iej)-409(i)-409(gr)1(o\\271)-1(n)1(ie)-1(j)1(,)-409(r\\363s\\252,)-409(zda)-409(si\\246)-1(,)-408(w)-409(o)-28(c)-1(zac)27(h)-408(w)-1(szys)-1(tk)1(ic)27(h)1(,)-409(ol-)]TJ 0 -13.55 Td[(br)1(z)-1(y)1(m)-1(ia\\252,)-301(b\\252ysk)55(a)28(wice)-303(r)1(z)-1(u)1(c)-1(a\\252)-302(o)-28(czam)-1(i,)-301(w)-1(znosi\\252)-302(r)1(\\246)-1(ce)-1(,)-302(i)-301(s)-1(\\252o)28(w)28(a)-302(jego)-302(pad)1(a\\252)-1(y)-301(na)-302(g\\252o)28(wy)]TJ 0 -13.549 Td[(kiej)-295(k)56(am)-1(i)1(e)-1(n)1(ie)-296(i)-295(jak)28(o)-295(rozpalon)1(e)-296(\\273)-1(elazo)-296(p)1(rzypiek)56(a\\252y)-296(serc)-1(a)-295({)-295(b)-28(o)-295(j\\241\\252)-295(s)-1(maga\\242)-296(a)-295(w)-1(y)1(p)-28(o-)]TJ 0 -13.549 Td[(mina\\242)-301(przew)-1(i)1(n)28(y)-301(ws)-1(zystkie)-301(i)-301(z)-1(d)1(ro\\273)-1(n)1(o\\261)-1(ci,)-301(j)1(akic)28(h)-301(s)-1(i)1(\\246)-302(d)1(o)-1(p)1(usz)-1(czali:)-301(a)-301(zakw)27(ar)1(dzia\\252o\\261)-1(\\242)]TJ 0 -13.549 Td[(w)-268(grzec)27(hac)28(h,)-267(niepami\\246\\242)-268(przyk)56(az)-1(a\\253)-267(Bo\\273)-1(y)1(c)27(h)-267(i)-268(on)1(e)-268(k\\252\\363tnie)-268(wiec)-1(zne,)-268(b)1(ij)1(at)27(y)1(ki,)-267(pij)1(a\\253-)]TJ 0 -13.549 Td[(st)27(w)28(a)-291({)-290(m\\363)27(wi\\252)-290(z)-1(a\\261)-291(tak)-290(gor\\241co,)-290(\\273)-1(e)-291(zatrz\\246)-1(s\\252y)-291(si\\246)-291(d)1(usz)-1(e)-291(w)-290(udr)1(\\246)-1(ce)-291(grze)-1(sz)-1(n)1(o\\261)-1(ci)-290(s)-1(w)28(o)-56(j)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(rozp\\252ak)56(a\\252y)-323(si\\246)-323(\\273alami)-323(ws)-1(zystkie)-323(se)-1(r)1(c)-1(a)-322(i)-323(ki)1(e)-1(b)28(y)-322(des)-1(zcz)-323(ros)-1(i)1(s)-1(t)28(y)-322(z)-1(asz)-1(em)-1(r)1(a\\252y)-323(p)1(\\252ac)-1(ze)-323(i)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)29(y)-313(p)-27(okutn)1(e)-314({)-312(a)-313(ks)-1(i)1(\\241dz)-313(naraz)-313(p)-27(o)-28(c)27(h)29(yli\\252)-313(si\\246)-313(ku)-313(An)29(tk)28(o)28(w)-1(i)-312(i)-313(ogromn)28(ym)-313(g\\252ose)-1(m)]TJ 0 -13.549 Td[(w)28(o\\252)-1(a\\252)-318(o)-318(s)-1(y)1(nac)27(h)-317(w)-1(y)1(ro)-28(d)1(n)28(yc)27(h)1(,)-318(o)-319(p)-27(o)-28(d)1(palaczac)27(h)-318(o)-55(jc\\363)27(w)-318(ro)-28(d)1(z)-1(on)29(yc)27(h)1(,)-318(o)-319(u)29(w)27(o)-28(d)1(z)-1(i)1(c)-1(ielac)27(h)-317(i)]TJ 0 -13.549 Td[(grze)-1(sznik)56(ac)27(h)-333(tak)1(ic)27(h)1(,)-333(kt\\363ryc)28(h)-333(ni)1(e)-334(m)-1(i)1(nie)-333(og)-1(i)1(e)-1(\\253)-333(wiec)-1(zn)28(y)-333(n)1(i)-334(k)56(ar)1(a)-334(lu)1(dzk)56(a!)]TJ 27.879 -13.549 Td[(St)1(ruc)28(hla\\252)-294(ci)-294(ca\\252y)-294(n)1(ar\\363)-28(d)1(,)-294(p)1(rz)-1(y)1(c)-1(ic)28(h\\252)-294(r)1(aptem)-1(,)-293(ta)-56(j)1(\\241c)-294(dec)27(h)-293(w)-295(p)1(iersiac)27(h)1(,)-294(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(kie)-393(o)-27(c)-1(zy)-393(k)1(ie)-1(j)-392(t)1(e)-1(n)-392(grad)-392(p)1(ioru)1(no)28(wy)-393(p)1(ad\\252y)-392(na)-392(An)28(tk)56(a,)-392(b)-28(o)-28(\\242)-393(r)1(oz)-1(u)1(m)-1(i)1(e)-1(li)1(,)-393(k)28(ogo)-392(ksi\\241dz)]TJ 0 -13.55 Td[(wyp)-27(om)-1(i)1(na,)-468(a)-467(on)-467(s)-1(ta\\252)-468(wyp)1(rosto)28(w)27(an)28(y)84(,)-468(p)-27(ob)1(lad\\252y)-467(na)-468(p)1(\\252\\363tno)-467(i)-468(ledwie)-468(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(y)84(,)]TJ 0 -13.549 Td[(gdy)1(\\273)-379(te)-378(s\\252)-1(o)28(w)28(a)-378(lec)-1(ia\\252y)-377(na)-378(n)1(ie)-1(go)-378(z)-378(h)28(u)1(kiem)-1(,)-377(jakb)29(y)-378(c)-1(a\\252y)-377(k)28(o\\261)-1(ci\\363\\252)-378(s)-1(i)1(\\246)-379(w)28(ali\\252,)-378(ob)-27(ejrza\\252)]TJ 0 -13.549 Td[(si\\246)-368(jeno)-367(jak)1(b)28(y)-368(za)-367(ratun)1(kiem,)-368(al)1(e)-368(luz)-368(si\\246)-368(r)1(obi\\252)-367(do)-28(ok)28(o\\252a,)-367(do)-55(jr)1(z)-1(a\\252)-367(z)-1(al\\246k\\252e)-368(i)-367(gro\\271ne)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(e,)-406(o)-28(d)1(s)-1(u)28(w)28(a)-56(j)1(\\241c)-1(e)-406(si\\246)-407(mimo)-406(w)27(ol)1(i)-406(kiej)-406(o)-28(d)-405(z)-1(ap)-27(o)28(wie)-1(t)1(rz)-1(on)1(e)-1(go,)-405(a)-406(ks)-1(i)1(\\241dz)-406(krzyc)-1(za\\252)]TJ 0 -13.549 Td[(ju)1(\\273)-388(ca\\252ym)-388(g\\252ose)-1(m)-387(i)-387(w)-1(y)1(klin)1(a\\252)-388(go,)-387(a)-387(d)1(o)-388(p)-27(oku)1(t)28(y)-387(w)-1(zyw)28(a\\252,)-388(a)-387(p)-27(otem)-388(zw)-1(r)1(\\363)-28(c)-1(i)1(\\252)-388(si\\246)-388(d)1(o)]TJ 0 -13.55 Td[(ca\\252)-1(ego)-333(nar)1(o)-28(du)1(,)-333(wyci\\241)-28(gn\\241\\252)-333(r)1(\\246)-1(ce)-334(i)-333(w)28(o\\252a\\252,)-333(b)28(yc)28(h)-333(si\\246)-334(strzegli)-333(takiego)-333(zb)-28(\\363)-55(ja,)-333(b)29(yc)27(h)-333(si\\246)]TJ 0 -13.549 Td[(c)27(h)1(ron)1(ili)-342(p)1(rz)-1(ed)-342(t)1(a)-1(k)1(im,)-342(b)28(yc)28(h)-342(da)28(w)28(ali)-342(taki)1(e)-1(m)28(u)-342(o)-28(d)1(pra)28(w)28(\\246)-343(o)-28(d)-341(ogni)1(a,)-342(w)27(o)-28(d)1(y)-342(i)-342(j)1(ad\\252a,)-342(o)-28(d)]TJ\nET\nendstream\nendobj\n1053 0 obj <<\n/Type /Page\n/Contents 1054 0 R\n/Resources 1052 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1052 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1057 0 obj <<\n/Length 9278      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(328)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(strze)-1(c)27(h)29(y)-433(na)28(w)27(et,)-433(b)28(y)-433(o)-28(d)1(gani)1(ali)-433(jak)-433(p)1(ars)-1(zyw)28(e)-1(go)-433(grzec)27(hem,)-433(b)-28(o)-433(z)-1(ar)1(a\\273)-1(a)-433(ws)-1(zystk)28(o)-433(i)]TJ 0 -13.549 Td[(k)56(ala,)-412(a)-411(gdy)-412(si\\246)-412(ni)1(e)-413(p)-27(opr)1(a)27(wi,)-411(z)-1(\\252ego)-412(ni)1(e)-413(n)1(apr)1(a)27(wi,)-411(p)-28(ok)1(uto)28(w)27(a\\252)-412(n)1(ie)-412(b)-27(\\246)-1(d)1(z)-1(ie)-412({)-412(to)-412(b)29(y)]TJ 0 -13.549 Td[(wyrw)28(ali)-333(go)-333(jak)-333(p)-27(okrzyw)27(\\246)-333(i)-333(prec)-1(z)-333(w)-1(y)1(rzucili)-333(na)-333(zatrac)-1(eni)1(e)-1(!)]TJ 27.879 -13.549 Td[(An)28(tek)-290(o)-28(dwr)1(\\363)-28(c)-1(i)1(\\252)-291(si\\246)-291(n)1(agle)-291(i)-290(w)28(olno)-290(s)-1(zed\\252)-290(do)-290(w)-1(y)1(j\\261c)-1(ia,)-290(l)1(udzie)-291(m)28(u)-290(si\\246)-291(usu)28(w)28(ali)-290(z)]TJ -27.879 -13.549 Td[(dr)1(ogi,)-312(\\273)-1(e)-312(kieb)28(y)-312(uli)1(c)-1(\\241)-312(z)-313(n)1(ag\\252)-1(a)-312(u)1(c)-1(zyni)1(on\\241)-312(przec)27(ho)-27(dzi\\252,)-312(a)-313(g\\252os)-313(k)1(s)-1(i\\246dza)-312(bieg\\252)-313(za)-312(nim)]TJ 0 -13.55 Td[(i)-333(s)-1(maga\\252)-333(go)-334(d)1(o)-334(\\273yw)28(e)-1(j)-333(k)1(rwie)-1(.)]TJ 27.879 -13.549 Td[(Jaki)1(\\261)-349(kr)1(z)-1(y)1(k)-348(rozpacz)-1(l)1(iwy)-348(z)-1(erw)28(a\\252)-348(s)-1(i)1(\\246)-349(n)1(a)-348(k)28(o\\261)-1(ciele)-1(,)-347(ale)-348(nie)-348(s\\252)-1(y)1(s)-1(za\\252,)-348(jeno)-348(sze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(pr)1(os)-1(to)-353(pr)1(z)-1(ed)-353(s)-1(i)1(e)-1(b)1(ie)-1(,)-353(pr)1(\\246)-1(d)1(k)28(o,)-354(b)29(y)-354(n)1(ie)-354(p)1(a\\261)-1(\\242)-354(tr)1(up)-27(e)-1(m)-354(z)-354(m\\246ki,)-353(b)28(y)-353(uciec)-354(z)-354(t)27(y)1(c)27(h)-353(o)-28(cz)-1(\\363)28(w)]TJ 0 -13.549 Td[(sz)-1(arp)1(i\\241cyc)27(h)1(,)-333(o)-28(d)-333(teg)-1(o)-333(g\\252osu)-333(s)-1(tr)1(as)-1(znego.)]TJ 27.879 -13.549 Td[(Wyp)1(ad\\252)-256(n)1(a)-256(dr)1(og\\246)-257(i)-256(an)1(i)-256(wiedz\\241c)-257(gd)1(z)-1(i)1(e)-1(,)-256(p)-27(olec)-1(i)1(a\\252)-256(w)-257(top)-27(olo)28(w)28(\\241)-256(drog\\246)-256(ku)-255(lasom)-1(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-348(c)28(h)28(wilami)-347(z)-1(al)1(\\246)-1(k\\252y)-347(i)-347(s\\252uc)28(ha\\252)-347(g\\252os)-1(u)1(,)-347(kt\\363ry)-347(m)28(u)-347(w)28(c)-1(i)1(\\241\\273)-348(br)1(z)-1(mia\\252)-347(w)-347(usz)-1(ac)27(h)]TJ 0 -13.55 Td[(kiej)-333(d)1(z)-1(w)28(on)-333(tak)-333(bi\\252)-333(c)-1(i)1(\\246)-1(\\273k)28(o,)-333(\\273)-1(e)-334(d)1(z)-1(i)1(w)-334(g\\252o)28(w)27(a)-333(ni)1(e)-334(rozp)-28(\\246k\\252a.)]TJ 27.879 -13.549 Td[(No)-28(c)-334(b)28(y\\252a)-334(c)-1(iemna)-334(i)-334(wie)-1(tr)1(z)-1(n)1(a,)-334(top)-28(ol)1(e)-335(pr)1(z)-1(ygi)1(na\\252y)-334(si\\246)-335(z)-335(sz)-1(u)1(me)-1(m,)-334(\\273)-1(e)-334(niekiedy)]TJ -27.879 -13.549 Td[(ga\\252\\246)-1(\\271)-351(j)1(ak)55(a\\261)-351(c)27(h)1(lasta\\252a)-351(go)-351(p)-27(o)-351(t)28(w)27(arzy)84(,)-351(to)-351(zno)28(wu)-351(p)1(rzyc)-1(i)1(s)-1(za\\252o)-351(s)-1(i)1(\\246)-352(i)-350(drob)1(n)28(y)84(,)-351(pr)1(z)-1(y)1(kry)84(,)]TJ 0 -13.549 Td[(marco)27(wy)-308(des)-1(zc)-1(z)-308(z)-1(acina\\252)-308(w)-309(t)28(w)27(ar)1(z)-1(,)-308(ale)-309(An)29(te)-1(k)-308(ni)1(e)-309(z)-1(w)28(a\\273)-1(a\\252)-308(na)-308(nic,)-308(bieg\\252)-309(j)1(ak)-308(b\\252\\246)-1(d)1(n)28(y)84(,)]TJ 0 -13.549 Td[(a)-333(przera\\273)-1(on)29(y)-333(i)-334(p)-27(e\\252)-1(en)-333(zgrozy)-334(n)1(iew)-1(y)1(p)-28(o)28(wiedzianej)]TJ 27.879 -13.55 Td[({)-451(\\233e)-452(j)1(u\\273)-451(i)-451(gorzej)-451(b)28(y\\242)-451(ni)1(e)-452(mo\\273)-1(e!)-451({)-451(sz)-1(epn)1(\\241\\252)-451(w)-1(r)1(e)-1(sz)-1(cie)-451(przysta)-56(j)1(\\241c)-1(.)-450({)-451(Spr)1(a-)]TJ -27.879 -13.549 Td[(wied1iwie)-337(m\\363)27(wi\\252!)-336(Spr)1(a)28(w)-1(i)1(e)-1(d)1(liwie!)-337({)-337(Jez)-1(u)1(s)-338(m\\363)-55(j,)-337(Jezus!)-337({)-337(ry)1(kn\\241\\252)-337(n)1(araz)-337(c)27(h)28(wyta)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-478(za)-477(g\\252o)28(w)27(\\246,)-477(b)-27(o)-477(w)-477(t)28(ym)-477(mom)-1(encie)-477(jakb)29(y)-477(pr)1(z)-1(ejr)1(z)-1(a\\252)-477(i)-476(z)-1(rozumia\\252)-477(win)29(y)-477(sw)27(o)-56(j)1(e)-477(i)]TJ 0 -13.549 Td[(grze)-1(c)28(h)28(y)84(,)-330(\\273)-1(e)-331(wst)28(yd)-330(wpr)1(os)-1(t)-330(ni)1(e)-1(lu)1(dzki)-330(zas)-1(zarpa\\252)-330(m)28(u)-330(du)1(s)-1(z\\241)-331(i)-330(ozry)1(w)27(a\\252)-330(j\\241)-330(na)-330(k)56(a)28(w)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-465(j)1(akim\\261)-466(d)1(rz)-1(ew)27(em)-466(siedzia\\252)-466(d)1(\\252ugo,)-465(z)-1(ap)1(atrzon)28(y)-465(w)-466(no)-27(c)-466(i)-465(z)-1(as\\252)-1(u)1(c)27(h)1(an)28(y)-465(w)]TJ -27.879 -13.55 Td[(cic)27(h)1(\\241,)-334(t)1(rw)27(o\\273liw)28(\\241)-333(i)-333(s)-1(traszn\\241)-333(jak)56(\\241\\261)-334(g\\246d\\271b)-28(\\246)-333(drze)-1(w.)]TJ 27.879 -13.549 Td[({)-268(P)1(rze)-1(z)-268(ni)1(e)-1(go)-268(wsz)-1(y)1(s)-1(tk)28(o,)-267(przez)-269(n)1(iego!)-268({)-268(p)-27(o)-28(cz)-1(\\241\\252)-268(k)1(rz)-1(y)1(c)-1(ze)-1(\\242)-268(i)-267(ogarn\\246\\252o)-268(go)-268(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(sz)-1(ale\\253st)28(w)27(o)-340(gn)1(ie)-1(wu)-340(i)-340(n)1(iena)28(wi\\261)-1(ci,)-340(wsta\\252)-1(y)-339(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-341(\\273ale)-341(d)1(a)27(wn)1(e)-341(i)-340(ws)-1(zystkie)-340(dzikie)]TJ 0 -13.549 Td[(zam)27(ys\\252y)-469(p)-28(oms)-1(t)28(y)-469(sk\\252\\246)-1(b)1(i\\252y)-469(s)-1(i\\246)-469(w)-470(n)1(im)-470(i)-469(pr)1(z)-1(ew)27(al)1(a\\252)-1(y)84(,)-469(jak)-469(te)-470(c)28(hm)28(ury)-469(p)-27(\\246)-1(d)1(z)-1(\\241ce)-470(p)-27(o)]TJ 0 -13.549 Td[(ni)1(e)-1(b)1(ie)-1(.)]TJ 27.879 -13.55 Td[({)-343(Nie)-344(d)1(aru)1(j\\246!)-343(Nie)-344(d)1(aruj)1(\\246)-1(!)-343({)-343(za)27(wy\\252a)-343(w)-343(nim)-343(da)28(wna)-343(zapami\\246)-1(t)1(a\\252)-1(o\\261\\242,)-343(\\273)-1(e)-344(ostro)]TJ -27.879 -13.549 Td[(ru)1(s)-1(zy\\252)-333(z)-334(p)-27(o)27(wrot)1(e)-1(m)-334(d)1(o)-334(wsi.)]TJ 27.879 -13.549 Td[(Ko\\261c)-1(i)1(\\363\\252)-486(b)29(y\\252)-485(ju)1(\\273)-486(zam)-1(k)1(ni\\246t)28(y)83(,)-485(w)-485(c)28(ha\\252up)1(ac)27(h)-485(si\\246)-485(\\261)-1(wiec)-1(i)1(\\252o,)-485(a)-485(p)-28(o)-485(d)1(rogac)27(h)-484(tu)]TJ -27.879 -13.549 Td[(i)-435(o)28(wdzie)-435(sp)-28(ot)28(yk)56(a\\252)-435(lu)1(dzi)-435(sto)-56(j)1(\\241c)-1(y)1(c)27(h)-434(kup)1(k)56(am)-1(i)-434(i)-435(rad)1(z)-1(\\241cyc)28(h)-435(cos)-1(i)1(k)-435(mimo)-435(des)-1(zc)-1(zu)-434(i)]TJ 0 -13.549 Td[(zim)-1(n)1(a.)]TJ 27.879 -13.55 Td[(P)28(osz)-1(ed\\252)-387(do)-387(k)56(arcz)-1(m)28(y)83(,)-387(d)1(o)-56(j)1(rza\\252)-388(p)1(rze)-1(z)-387(okno,)-387(\\273e)-388(j)1(e)-1(st)-387(tam)-388(sp)-28(or)1(o)-387(lud)1(z)-1(i,)-386(ale)-388(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-342(z)-1(a)28(w)28(a)-1(h)1(a\\252)-342(i)-341(ws)-1(ze)-1(d)1(\\252)-342(ostro,)-341(i)-342(j)1(akb)28(y)-341(nigd)1(y)-342(n)1(ic,)-342(p)1(rzys)-1(t)1(\\241)-28(pi\\252)-341(do)-341(na)-56(j)1(wi\\246)-1(k)1(s)-1(ze)-1(j)-341(ku)1(p)28(y)-341(i)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-324(s)-1(i)1(\\246)-324(w)-1(i)1(ta\\242)-324(z)-1(e)-324(zna)-55(jomk)56(am)-1(i)1(,)-324(kt)1(\\363ry\\261)-324(m)28(u)-324(t)1(am)-324(r\\246k)28(\\246)-324(p)-28(o)-27(da\\252,)-323(ale)-324(res)-1(zta)-324(o)-27(dsun\\246\\252a)]TJ 0 -13.549 Td[(si\\246)-334(\\273yw)27(o)-333(na)-333(ws)-1(ze)-334(stron)28(y)-333(i)-333(spies)-1(zni)1(e)-334(z)-1(acz\\246)-1(li)-333(wyc)28(ho)-28(d)1(z)-1(i\\242.)]TJ 27.879 -13.549 Td[(Nim)-462(si\\246)-462(sp)-28(ostrze)-1(g\\252,)-461(z)-1(osta\\252)-462(p)1(ra)28(wie)-462(sam)-462(w)-462(k)56(arc)-1(zmie)-1(;)-461(d)1(z)-1(iad)-461(j)1(aki\\261)-462(sie)-1(d)1(z)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(k)28(ominem)-334(i)-333(\\233yd)-333(za)-334(szynkw)28(ase)-1(m.)]TJ 27.879 -13.55 Td[(Zrozumia\\252,)-479(\\273)-1(e)-479(to)-480(on)-478(roz)-1(gon)1(i\\252)-479(w)-1(szys)-1(tk)1(ic)27(h)1(,)-479(ale)-480(p)-27(o\\252kn\\241\\252)-479(i)-479(to,)-479(i)-479(k)55(aza\\252)-480(d)1(a\\242)]TJ -27.879 -13.549 Td[(w)28(\\363)-28(dki)1(,)-333(jeno)-333(\\273)-1(e,)-333(p)-28(osta)28(w)-1(i)1(\\252)-334(n)1(ie)-334(d)1(opit)28(y)-333(kielisze)-1(k)-333(i)-333(s)-1(p)1(ies)-1(znie)-333(w)-1(y)1(s)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(\\212azi\\252)-489(b)1(\\252)-1(\\246dn)1(ie)-489(d)1(o)-28(ok)28(o\\252a)-489(sta)28(w)-1(u)-488(i)-488(s)-1(p)-27(ogl\\241d)1(a\\252)-489(z)-489(u)28(w)28(ag\\241)-489(n)1(a)-489(p)1(r\\246)-1(gi)-488(\\261w)-1(i)1(ate)-1(\\252,)-488(c)-1(o)]TJ -27.879 -13.549 Td[(c)27(h)1(lusta\\252y)-363(gdzieniegdzie)-364(z)-364(ok)1(ie)-1(n)-362(na)-363(\\261)-1(n)1(ie)-1(g)-363(pr)1(z)-1(emi\\246)-1(k)1(\\252)-1(y)-363(i)-363(l\\261ni)1(\\252)-1(y)-363(si\\246)-364(w)28(e)-364(w)28(o)-28(dzie,)-363(p)-28(o-)]TJ 0 -13.549 Td[(kr)1(yw)27(a)-55(j\\241ce)-1(j)-333(l)1(\\363)-28(d.)]TJ 27.879 -13.55 Td[(Zmi\\246)-1(k)1(\\252)-309(zno)28(wu)-308(w)-309(sobi)1(e)-309(i)-308(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(a)-308(c)-1(i\\246\\273)-1(k)28(o\\261\\242)-309(zw)27(al)1(i\\252a)-309(m)28(u)-308(si\\246)-309(n)1(a)-309(se)-1(r)1(-)]TJ -27.879 -13.549 Td[(ce)-1(,)-339(p)-27(o)-28(cz)-1(u)1(\\252)-340(si\\246)-339(tak)-339(sam)-1(otn)29(ym)-1(,)-338(z)-1(b)1(ie)-1(d)1(z)-1(on)29(ym)-340(i)-338(nies)-1(zc)-1(z\\246)-1(\\261liwym,)-339(tak)56(\\241)-339(p)-27(otrze)-1(b)-27(\\246)-340(czu\\252)]TJ\nET\nendstream\nendobj\n1056 0 obj <<\n/Type /Page\n/Contents 1057 0 R\n/Resources 1055 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1055 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1060 0 obj <<\n/Length 7520      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(329)]TJ -358.232 -35.866 Td[(wy\\273ale)-1(n)1(ia)-396(si\\246)-396(i)-396(w)28(e)-1(j)1(\\261)-1(cia)-396(mi\\246dzy)-396(l)1(udzi,)-395(p)-28(osiedze)-1(n)1(ia)-396(c)27(h)1(o)-28(\\242b)28(y)-396(p)1(rze)-1(d)-395(jak)1(im)-396(ogniem,)]TJ 0 -13.549 Td[(\\273e)-334(do)-333(pi)1(e)-1(rwsz)-1(ej)-333(z)-334(b)1(rz)-1(ega)-333(c)27(ha\\252u)1(p)28(y)-333(p)-27(os)-1(ze)-1(d)1(\\252,)-334(d)1(o)-334(P)1(\\252os)-1(zk)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Byli)-296(wsz)-1(ysc)-1(y)84(,)-296(ale)-296(na)-296(jego)-296(w)27(ej\\261cie)-297(p)-27(orw)28(ali)-296(si\\246)-297(ze)-1(strasz)-1(eni)1(,)-296(na)28(w)27(et)-296(St)1(ac)27(ho)-296(n)1(ie)]TJ -27.879 -13.549 Td[(wiedzia\\252,)-333(c)-1(o)-333(rze)-1(c.)]TJ 27.879 -13.549 Td[({)-314(Jakb)28(ym)-314(z)-1(ar)1(z)-1(n)1(\\241\\252)-315(k)28(ogo,)-314(tak)-314(p)1(atrzycie)-1(!)-314({)-314(rze)-1(k)1(\\252)-315(cic)27(h)1(o)-314(i)-315(p)-27(osz)-1(ed\\252)-314(do)-314(dr)1(ugic)28(h,)]TJ -27.879 -13.55 Td[(do)-483(Balce)-1(r)1(k)28(\\363)27(w,)-483(al)1(e)-484(i)-483(ci)-483(pr)1(z)-1(y)1(j\\246li)-483(go)-483(lo)-28(d)1(o)28(w)27(ato,)-483(b)1(\\241k)56(ali)-483(co\\261)-484(ni)1(e)-1(co\\261)-1(,)-483(a)-483(n)1(ikt)-483(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(i\\241\\261\\242)-334(ni)1(e)-334(z)-1(ap)1(rasz)-1(a\\252.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(tu)-333(i)-333(o)27(wd)1(z)-1(ie,)-333(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-334(b)28(y\\252o)-333(to)-333(s)-1(amo.)]TJ 0 -13.549 Td[(Wi\\246c)-471(j)1(akb)28(y)-470(d)1(la)-470(pr)1(\\363b)28(y)-470(os)-1(tat)1(niej,)-470(b)28(y)-470(sobi)1(e)-471(ni)1(e)-471(osz)-1(cz)-1(\\246dzi\\242)-471(\\273adn)1(e)-1(j)-469(b)-28(ol)1(e)-1(\\261c)-1(i)]TJ -27.879 -13.549 Td[(i)-424(u)1(p)-27(ok)28(orz)-1(eni)1(a,)-424(p)-27(os)-1(ze)-1(d)1(\\252)-424(do)-423(Mateusz)-1(a,)-423(nie)-424(b)28(y\\252o)-423(go)-424(doma,)-424(j)1(e)-1(n)1(o)-424(s)-1(t)1(ara)-424(Go\\252\\246b)-27(o)27(w)28(a)]TJ 0 -13.549 Td[(pr)1(os)-1(to)-490(z)-491(mie)-1(j)1(s)-1(ca)-491(wyw)28(ar\\252a)-490(na)-491(n)1(iego)-491(p)28(y)1(s)-1(k,)-490(skl\\246\\252)-1(a)-490(i)-490(jak)-490(te)-1(go)-490(psa)-491(p)1(rze)-1(gon)1(i\\252a)-491(z)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(Ani)-241(s)-1(\\252\\363)28(wkiem)-243(n)1(ie)-243(o)-28(d)1(rze)-1(k)1(\\252)-243(n)1(i)-242(s)-1(i)1(\\246)-243(gn)1(ie)-1(w)28(em)-243(zapali)1(\\252)-1(,)-241(o)-28(des)-1(z\\252a)-242(go)-242(b)-28(o)28(wiem)-243(ws)-1(zel-)]TJ -27.879 -13.549 Td[(k)56(a)-242(z\\252o\\261)-1(\\242)-242(i)-241(p)-27(omiark)28(o)28(w)27(an)1(ie,)-241(c)-1(o)-241(s)-1(i\\246)-241(z)-242(nim)-241(dzie)-1(j)1(e)-1(.)-241(P)28(o)28(wl\\363k\\252)-241(s)-1(i)1(\\246)-242(w)27(ol)1(no)-241(w)-242(no)-27(c)-1(,)-241(ob)-27(c)27(h)1(o)-28(dzi\\252)]TJ 0 -13.549 Td[(sta)27(w,)-313(to)-313(pr)1(z)-1(ysta)28(w)27(a\\252)-313(gdzieniegdzie)-314(i)-313(p)1(atrzy\\252)-313(na)-313(wie)-1(\\261,)-313(z)-1(atop)1(ion)1(\\241)-314(w)-313(m)-1(r)1(ok)55(ac)28(h,)-313(zna-)]TJ 0 -13.549 Td[(cz)-1(\\241c\\241)-402(si\\246)-402(jeno)-402(\\261wiate\\252)-1(k)56(ami)-402(ok)1(ie)-1(n)1(,)-402(p)1(atrzy\\252)-402(zdu)1(m)-1(i)1(on)28(y)83(,)-401(jakb)29(y)-402(j)1(\\241)-402(p)-27(o)-402(raz)-402(p)1(ie)-1(r)1(w)-1(szy)]TJ 0 -13.55 Td[(widzia\\252,)-399(otacz)-1(a\\252a)-399(go)-399(do)-28(ok)28(o\\252a)-399(pr)1(z)-1(yw)28(art)28(ymi)-399(do)-399(zie)-1(mi)-399(c)27(h)1(a\\252up)1(am)-1(i,)-399(zagrad)1(z)-1(a\\252a)-399(go)]TJ 0 -13.549 Td[(ze)-1(ws)-1(z\\241d,)-286(\\273e)-287(jak)1(b)28(y)-286(rusz)-1(y)1(\\242)-287(s)-1(i)1(\\246)-287(nie)-286(m)-1(\\363g\\252)-286(i)-287(wyr)1(w)27(a\\242)-287(z)-286(t)27(y)1(c)27(h)-286(p\\252ot\\363)28(w)-286(i)-287(sad\\363)28(w,)-286(i)-286(\\261)-1(wiate\\252!)]TJ 0 -13.549 Td[(Nie)-410(m)-1(\\363g\\252)-410(si\\246)-411(p)-27(omiark)28(o)28(w)27(a\\242,)-410(cz)-1(u)1(\\252)-411(j)1(e)-1(n)1(o,)-410(\\273e)-411(jak)56(a\\261)-410(m)-1(o)-27(c)-411(ni)1(e)-1(p)1(rze)-1(p)1(arta)-410(bi)1(e)-1(rze)-411(go)-410(za)]TJ 0 -13.549 Td[(gard)1(z)-1(i)1(e)-1(l)-257(i)-257(d)1(o)-257(z)-1(iemi)-257(przygin)1(a,)-257(do)-257(j)1(arzm)-1(a)-257(n)1(ak\\252ania)-257(i)-257(p)1(rze)-1(j)1(m)27(uj)1(e)-258(n)1(iew)-1(y)1(t\\252umac)-1(zon)28(ym)]TJ 0 -13.549 Td[(strac)27(h)1(e)-1(m.)]TJ 27.879 -13.55 Td[(Z)-398(g\\252\\246b)-28(ok)56(\\241)-397(trw)28(og\\241)-398(sp)-28(ozie)-1(r)1(a\\252)-398(n)1(a)-398(rozb\\252ys\\252e)-398(okna,)-397(b)-27(o)-398(m)27(u)-397(si\\246)-398(wyda\\252o,)-397(\\273)-1(e)-398(go)]TJ -27.879 -13.549 Td[(str\\363\\273uj\\241,)-409(\\273e)-410(p)1(atrz\\241)-410(za)-409(nim)-409(i)-409(niepr)1(z)-1(erw)28(an)28(ym)-409(\\252)-1(a\\253)1(c)-1(u)1(c)27(h)1(e)-1(m)-409(id\\241)-409(na)-409(n)1(ie)-1(go,)-409(\\261c)-1(i)1(s)-1(k)56(a)-56(j)1(\\241)]TJ 0 -13.549 Td[(i)-393(w)-1(i)1(\\241\\273)-1(\\241)-394(w)-393(p)-28(\\246ta,)-394(\\273e)-394(ju)1(\\273)-394(ru)1(c)27(ha\\242)-394(si\\246)-394(ni)1(e)-395(m\\363g\\252)-394(n)1(i)-394(k)1(rz)-1(y)1(c)-1(ze)-1(\\242,)-394(n)1(i)-393(uc)-1(i)1(e)-1(k)56(a\\242,)-394(wi\\246c)-394(przy-)]TJ 0 -13.549 Td[(w)28(ar\\252)-388(p)-27(o)-28(d)-387(j)1(akim\\261)-388(d)1(rze)-1(w)28(e)-1(m)-387(i)-388(zm\\241c)-1(on)28(y)-387(d)1(o)-388(d)1(na)-387(s\\252)-1(u)1(c)27(h)1(a\\252)-1(,)-387(\\273e)-388(o)-28(d)-386(dom\\363)27(w,)-387(z)-388(cieni\\363)28(w)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h,)-436(z)-436(p)-27(\\363l,)-436(sp)-27(o)-28(d)-435(s)-1(ame)-1(go)-435(nieba,)-435(s)-1(p)1(ada)-55(j\\241)-436(n)1(a\\253)-436(srogie)-436(p)-27(ot\\246pienia)-435(s)-1(\\252o)28(w)27(a)-435(i)]TJ 0 -13.55 Td[(ca\\252)-1(y)-333(n)1(ar\\363)-28(d)-333(i)1(dzie)-334(na)-333(n)1(ie)-1(go.)]TJ 27.879 -13.549 Td[({)-228(Sp)1(ra)28(wiedliwie!)-228(S)1(pra)28(wiedli)1(w)-1(i)1(e)-1(!)-228({)-228(sze)-1(p)1(ta\\252)-228(z)-229(n)1(a)-56(jg\\252\\246bsz)-1(\\241)-228(p)-27(ok)28(or\\241,)-227(p)-28(e\\252ni\\241)-228(serc)-1(a)]TJ -27.879 -13.549 Td[(skru)1(s)-1(zonego,)-334(strac)28(hem)-334(\\261m)-1(i)1(e)-1(rt)1(e)-1(ln)29(ym)-334(p)1(rz)-1(ej\\246t)28(y)-333(i)-333(t\\241)-334(mo)-28(c\\241)-334(wsi)-333(p)-28(ot\\246\\273n\\241.)]TJ 27.879 -13.549 Td[(\\221wiat)1(\\252)-1(a)-309(z)-311(w)28(olna)-309(gas)-1(\\252y)-310(j)1(e)-1(d)1(no)-310(p)-27(o)-310(d)1(rugi)1(m)-1(,)-309(w)-1(i)1(e)-1(\\261)-310(usypi)1(a\\252a,)-310(des)-1(zcz)-311(j)1(e)-1(n)1(o)-310(m)-1(\\273y\\252)-310(i)]TJ -27.879 -13.549 Td[(trzepa\\252)-312(w)-312(p)-28(o)-28(c)28(h)28(ylon)1(e)-313(d)1(rze)-1(w)28(a,)-312(a)-312(cz)-1(ase)-1(m)-312(pies)-312(gdzie)-1(sik)-312(zas)-1(zc)-1(zek)55(a\\252)-312(i)-312(cic)27(h)1(o\\261)-1(\\242)-312(pr)1(z)-1(era-)]TJ 0 -13.55 Td[(\\273a)-56(j\\241ca)-333(ogarni)1(a\\252)-1(a)-333(\\261w)-1(i)1(at,)-333(gdy)-333(An)28(tek)-333(opr)1(z)-1(ytomni)1(a\\252)-334(zup)-27(e)-1(\\252n)1(ie)-334(i)-333(p)-27(orw)28(a\\252)-334(si\\246)-334(n)1(a)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[({)-363(S)1(pr)1(a)27(wiedl)1(iw)-1(i)1(e)-363(m)-1(\\363)28(wi\\252...)-362(s)-1(w)28(o)-56(j)1(\\241)-363(p)1(ra)28(w)-1(d)1(\\246)-363(p)-28(o)28(wiad)1(a\\252...)-362(ale)-363(ja)-363(mo)-56(j)1(e)-1(go)-362(nie)-363(d)1(a-)]TJ -27.879 -13.549 Td[(ru)1(j\\246...)-333(\\273e)-1(b)28(y)1(m)-334(s)-1(k)56(ap)1(ia\\252,)-333(nie)-333(daru)1(j\\246,)-333(psiakrew!...)]TJ 27.879 -13.549 Td[(Kr)1(z)-1(yk)1(n\\241\\252)-281(zapami\\246tale)-281(wygr)1(a\\273)-1(a)-55(j\\241c)-281(p)1(i\\246)-1(\\261c)-1(i)1(am)-1(i)-280(ws)-1(i)-280(ca\\252e)-1(j)-280(i)-280(ws)-1(zystkiem)27(u)-280(\\261wia-)]TJ -27.879 -13.549 Td[(tu)1(!...)]TJ 27.879 -13.549 Td[(Nacis)-1(n)1(\\241\\252)-334(cz)-1(ap)1(k)28(\\246)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(k)56(arczm)27(y)84(.)]TJ\nET\nendstream\nendobj\n1059 0 obj <<\n/Type /Page\n/Contents 1060 0 R\n/Resources 1058 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1058 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1063 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(330)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(24.)]TJ\nET\nendstream\nendobj\n1062 0 obj <<\n/Type /Page\n/Contents 1063 0 R\n/Resources 1061 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1048 0 R\n>> endobj\n1061 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1066 0 obj <<\n/Length 7604      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(25)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-274(z)-1(wies)-1(n)1(\\246)-275(s)-1(i)1(\\246)-275(m)-1(i)1(a\\252)-1(o;)-274(ci\\241)-28(giem)-275(n)1(ieprze)-1(r)1(w)27(an)28(y)1(m)-275(sz)-1(\\252y)-274(ju)1(\\273)-275(te)-275(rozkis\\252e)-275(dn)1(ie)-275(marco)27(w)28(e,)]TJ 0 -13.549 Td[(\\273e)-279(cz)-1(as)-278(si\\246)-278(ano)-277(ucz)-1(yn)1(i\\252)-278(zgo\\252a)-278(psi,)-277(rozm)-1(i)1(\\246)-1(k\\252y)84(,)-278(zimn)28(y)-278(i)-277(pr)1(z)-1(em)-1(gl)1(on)28(y;)-277(c)-1(o)-278(d)1(ni)1(a)-278(pad)1(a\\252y)]TJ 0 -13.549 Td[(desz)-1(cz)-1(e)-486(ze)-486(\\261niegiem)-1(,)-485(co)-486(d)1(nia)-485(s)-1(z\\252y)-485(takie)-486(wycin)1(ki)-485(a)-486(\\015)1(agi,)-485(i\\273)-486(n)1(a)-486(\\261w)-1(i)1(at)-486(wyj)1(rze)-1(\\242)]TJ 0 -13.55 Td[(b)28(y\\252o)-423(ni)1(e)-424(s)-1(p)-27(os\\363b;)-423(co)-424(d)1(nia)-423(b)1(rud)1(ne,)-423(s)-1(k)28(o\\252tu)1(nion)1(e)-424(cie)-1(mni)1(c)-1(e)-424(t)1(\\252)-1(u)1(k\\252y)-423(s)-1(i)1(\\246)-424(p)-27(o)-424(p)-27(olac)27(h)-422(i)]TJ 0 -13.549 Td[(tak)-415(p)1(rzydu)1(s)-1(za\\252y)-415(ws)-1(ze)-1(l)1(k)55(\\241)-415(\\261wiat\\252o\\261)-1(\\242,)-415(\\273e)-416(p)-27(os)-1(\\246pn)1(e)-1(,)-414(c)-1(i\\246\\273kie)-416(zmie)-1(r)1(z)-1(c)28(h)28(y)-415(wisia\\252y)-415(nad)]TJ 0 -13.549 Td[(zie)-1(mi\\241)-428(o)-28(d)-427(\\261)-1(witu)-428(d)1(o)-428(no)-28(cy)83(,)-427(z)-1(a\\261)-429(n)1(iekiedy)84(,)-428(je\\261)-1(l)1(i)-428(z)-429(bu)1(ryc)28(h)-428(top)1(ie)-1(l)1(i)-428(w)-1(y)1(jrza\\252o)-428(s)-1(\\252o\\253ce,)]TJ 0 -13.549 Td[(to)-353(le)-1(d)1(wie)-354(na)-353(to)-354(Zdr)1(o)28(w)27(a\\261,)-354(\\273e)-354(ni)1(m)-354(du)1(s)-1(za)-354(p)-27(o)-28(cie)-1(sz)-1(y)1(\\252)-1(a)-353(s)-1(i)1(\\246)-354(jasno\\261c)-1(i\\241)-353(i)-353(k)28(o\\261)-1(ci)-354(p)-27(o)-28(cz)-1(u)1(\\252y)]TJ 0 -13.549 Td[(cie)-1(p)1(\\252o)-402({)-401(j)1(u\\273)-401(no)28(w)27(e)-401(m)-1(r)1(oki)-401(s)-1(i)1(\\246)-402(roztrz\\246)-1(sa\\252y)-401(nad)-400(\\261)-1(wiatem,)-401(no)28(w)27(e)-401(wic)27(hr)1(y)-401(z)-1(a)28(w)28(o)-28(dzi\\252y)84(,)]TJ 0 -13.549 Td[(no)28(w)28(e)-377(plu)1(c)27(h)28(y)-376(i)-377(\\015)1(agi)-377(sz\\252)-1(y)84(,)-376(a\\273)-377(dzie)-1(\\253)-376(si\\246)-377(niejeden)-376(widzia\\252)-377(j)1(ak)28(o)-377(ten)-376(psiak)-377(u)1(t)28(yt\\252an)28(y)84(,)]TJ 0 -13.55 Td[(b\\252otem)-334(o)-27(c)-1(iek\\252y)-333(i)-333(z)-334(z)-1(i)1(m)-1(n)1(a)-334(sk)56(am)-1(l)1(\\241c)-1(y:)]TJ 27.879 -13.549 Td[(Mat)28(yj)1(as)-1(i)1(\\252o)-395(s)-1(i\\246)-395(to)-395(n)1(aro)-28(d)1(o)28(w)-1(i)1(,)-395(\\273)-1(e)-395(i)-394(nie)-395(wyp)-27(o)27(wiedzie\\242)-1(,)-394(t)27(y)1(m)-396(si\\246,)-395(j)1(e)-1(n)1(o)-395(k)55(a\\273den)]TJ -27.879 -13.549 Td[(kr)1(z)-1(epi\\252)-315(a)-314(p)-28(o)-27(c)-1(ies)-1(za\\252,)-315(b)29(yc)27(h)-314(jes)-1(zcz)-1(e)-315(jak)56(\\241)-315(n)1(iedzie)-1(l)1(\\246)-316(wstrzyma\\242)-316(ab)-27(o)-315(i)-314(dwie,)-315(i)-314(z)-1(wies)-1(n)1(a)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-311(pr)1(z)-1(emo\\273)-1(e)-311(i)-311(z)-1(a)-311(wsz)-1(ystk)28(o)-311(zap\\252aci,)-311(ale)-311(t)28(ym)-1(czas)-1(o)28(wie)-312(\\015)1(a\\273)-1(y)1(\\252)-1(o)-311(ci\\246giem)-312(n)1(ie)-312(d)1(o)]TJ 0 -13.549 Td[(wytrzymania,)-308(pr)1(z)-1(ec)-1(i)1(e)-1(k)56(a\\252o)-309(pr)1(z)-1(ez)-309(dac)27(h)29(y)83(,)-308(k)55(a)-55(j\\261)-309(ni)1(e)-1(k)56(a)-56(j)-308(zac)-1(in)1(a\\252o)-309(pr)1(z)-1(ez)-309(\\261)-1(cian)28(y)-308(i)-309(okn)1(a,)]TJ 0 -13.55 Td[(la\\252o)-375(ze)-375(w)-1(szys)-1(tk)1(ic)27(h)-374(stron,)-374(\\273)-1(e)-375(j)1(u\\273)-375(ni)1(e)-376(mo\\273na)-375(b)29(y\\252o)-375(s)-1(ob)1(ie)-375(da\\242)-375(r)1(ady)-375(z)-375(w)28(o)-28(d\\241,)-374(w)28(ali\\252a)]TJ 0 -13.549 Td[(b)-27(o)27(wiem)-323(z)-322(p)-27(\\363l,)-322(p)-28(e\\252no)-322(j)1(e)-1(j)-322(b)29(y\\252o)-322(p)-28(o)-322(ro)28(w)28(ac)27(h)1(,)-322(a)-323(d)1(rogi)-322(l\\261ni)1(\\252y)-322(s)-1(i\\246)-322(kiej)-322(te)-322(p)-28(otok)1(i)-322(b)28(ystre,)]TJ 0 -13.549 Td[(zatapia\\252a)-355(op\\252otki)-355(i)-355(s)-1(ta\\252a)-355(grz\\241s)-1(k)1(im)-1(i)-355(sadza)27(wk)56(ami)-356(w)-355(ob)-28(ej\\261c)-1(i)1(ac)27(h,)-355(a)-355(\\273)-1(e)-356(za\\261)-356(\\261nieg)-356(co)]TJ 0 -13.549 Td[(dn)1(ia)-358(b)1(arz)-1(ej)-358(t)1(opni)1(a\\252)-359(i)-357(s)-1(z\\252y)-358(c)-1(i)1(\\241)-28(g\\252e)-359(d)1(e)-1(sz)-1(cze)-1(,)-358(ziem)-1(i)1(a)-358(pr\\246dk)28(o)-358(o)-27(dmarza\\252)-1(a)-358(i)-357(pu)1(s)-1(zc)-1(za\\252y)]TJ 0 -13.549 Td[(lo)-28(d)1(y)83(,)-343(to)-343(ju\\273)-344(miejsc)-1(ami,)-343(p)-27(o)-344(s)-1(t)1(roni)1(e)-344(przyp)-27(o\\252udn)1(io)28(w)27(ej,)-343(cz)-1(yn)1(i\\252o)-344(si\\246)-344(taki)1(e)-344(b\\252o)-28(c)27(k)28(o,)-343(i\\273)]TJ 0 -13.55 Td[(m)27(u)1(s)-1(i)1(e)-1(li)-333(k)1(\\252)-1(a\\261\\242)-334(p)1(rz)-1(ed)-333(c)27(h)1(a\\252up)1(am)-1(i)-333(d)1(e)-1(ski)-333(alb)-27(o)-334(mo\\261c)-1(i\\242)-333(prze)-1(j)1(\\261)-1(cia)-333(s)-1(\\252om\\241.)]TJ 27.879 -13.549 Td[(No)-28(ce)-452(za\\261)-452(tak)-451(samo)-452(b)29(y\\252y)-451(c)-1(i)1(\\246)-1(\\273kie)-451(do)-451(z)-1(n)1(ies)-1(ieni)1(a,)-451(h)28(ur)1(k)28(otliw)28(e)-1(,)-451(zadesz)-1(cz)-1(on)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-376(tak)-375(c)-1(iemnicam)-1(i)-375(pr)1(z)-1(ej\\246te)-1(,)-375(\\273)-1(e)-376(si\\246)-377(j)1(u\\273)-376(n)1(ie)-1(r)1(az)-377(wid)1(z)-1(i)1(a\\252)-1(o,)-375(jak)28(ob)28(y)-375(na)-376(wieki)-375(p)-28(ogas\\252y)]TJ 0 -13.549 Td[(ws)-1(ze)-1(l)1(kie)-459(\\261w)-1(i)1(at\\252o\\261)-1(ci;)-458(na)28(w)27(et)-458(z)-459(w)-1(i)1(e)-1(cz)-1(or)1(a)-459(ma\\252o)-459(w)-459(k)1(t\\363rej)-459(c)28(ha\\252u)1(pie)-459(zapalal)1(i)-459(ogn)1(ie;)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzili)-224(spa\\242)-224(o)-225(zmie)-1(r)1(z)-1(c)28(h)28(u,)-224(tak)-224(si\\246)-225(cz)-1(as)-224(przykr)1(z)-1(y\\252,)-224(t)28(yl)1(e)-225(jeno,)-224(co)-225(t)1(am)-1(,)-224(gd)1(z)-1(ie)-224(z)-1(b)1(ie)-1(r)1(a\\252y)]TJ 0 -13.55 Td[(si\\246)-376(p)1(rz\\241dki,)-374(ja\\261nia\\252y)-375(sz)-1(y)1(bki)-374(i)-375(brz\\246c)-1(za\\252y)-375(z)-376(cic)27(h)1(a)-375(pr)1(z)-1(e\\261)-1(p)1(ie)-1(wyw)28(ane)-375(Gorzkie)-375(\\233ale)-375(i)]TJ 0 -13.549 Td[(dr)1(ugie)-412(pie\\261)-1(n)1(ie)-413(\\273a\\252os)-1(n)1(e)-413(o)-413(M)1(\\246)-1(ce)-413(P)28(a\\253skiej,)-412(a)-412(wt\\363ro)28(w)27(a\\252)-412(im)-413(wiatr)1(,)-413(d)1(e)-1(szc)-1(ze)-413(i)-412(s)-1(zum)]TJ 0 -13.549 Td[(dr)1(z)-1(ewin,)-333(t\\252u)1(k)55(\\241cyc)27(h)-332(s)-1(i\\246)-333(o)-334(p)1(\\252ot)27(y)84(.)]TJ 27.879 -13.549 Td[(T)83(o)-341(i)-341(n)1(ie)-342(d)1(z)-1(iw)28(ota,)-341(\\273e)-342(Lip)-27(ce)-342(jak)1(b)28(y)-341(pr)1(z)-1(epad)1(\\252y)-341(w)-342(t)28(yc)28(h)-341(roztopac)28(h,)-341(b)-27(o)-28(\\242)-341(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(ano)-303(m\\363g\\252)-304(roze)-1(zna\\242)-304(c)28(ha\\252up)29(y)-304(o)-27(d)-303(p)-28(\\363l)-303(pr)1(z)-1(em)-1(i)1(\\246)-1(k\\252y)1(c)27(h)-303(i)-303(z)-1(ad)1(e)-1(sz)-1(cz)-1(on)1(e)-1(go)-303(\\261)-1(wiata,)-303(ledwie)]TJ 0 -13.55 Td[(je)-353(do)-55(jrza\\252)-353(w)-354(t)28(yc)28(h)-353(m)-1(gl)1(is)-1(k)56(ac)28(h)-353(bu)1(ryc)27(h)1(,)-353(pr)1(z)-1(yw)28(arte)-353(do)-353(z)-1(i)1(e)-1(mi,)-353(ob)1(m)-1(ok\\252e,)-353(p)-27(o)-28(c)-1(ze)-1(r)1(nia\\252e)]TJ 0 -13.549 Td[(i)-360(do)-360(cna)-360(zbiedzone,)-360(a)-360(c)-1(o)-360(ju)1(\\273)-361(p)-27(ola,)-360(sady)84(,)-360(dr)1(ogi)-360(i)-360(nieb)-28(o,)-359(to)-361(j)1(e)-1(d)1(n\\241)-360(top)1(ie)-1(l)1(\\241)-361(sin)1(\\241)-360(s)-1(i\\246)]TJ 0 -13.549 Td[(widzia\\252y)84(,)-333(\\273)-1(e)-334(n)1(ie)-334(wiad)1(a)-334(b)28(y)1(\\252o)-334(zgo\\252a,)-333(k)55(a)-55(j)-333(jej)-333(p)-27(o)-28(c)-1(z\\241tek,)-333(a)-334(k)28(\\246dy)-333(k)28(on)1(ie)-1(c.)]TJ 358.232 -29.888 Td[(331)]TJ\nET\nendstream\nendobj\n1065 0 obj <<\n/Type /Page\n/Contents 1066 0 R\n/Resources 1064 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1064 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1070 0 obj <<\n/Length 10452     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(332)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zi\\241b)-487(p)1(rz)-1(y)-487(t)28(ym)-487(b)28(y\\252)-487(przykr)1(y)-488(i)-487(d)1(o)-488(\\273yw)28(e)-1(go)-487(przejm)27(u)1(j\\241cy)83(,)-487(to)-487(i)-487(m)-1(a\\252o)-487(kiedy)]TJ -27.879 -13.549 Td[(do)-55(jr)1(z)-1(a\\252)-341(k)28(ogo)-341(na)-341(drogac)28(h,)-341(d)1(e)-1(sz)-1(cz)-342(jeno)-341(tr)1(z)-1(epa\\252,)-341(wiatry)-341(p)1(rze)-1(miata\\252y)84(,)-341(drze)-1(win)29(y)-341(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252y)-353(i)-353(sm)27(u)1(te)-1(k)-353(wia\\252)-353(\\261w)-1(i)1(ate)-1(m)-353(c)-1(a\\252ym,)-353(p)1(ustk)56(a)-354(b)29(y\\252a)-353(naok)28(\\363\\252)-353(i)-353(c)-1(i)1(c)27(ho\\261\\242)-354(w)-353(ca\\252)-1(ej)-353(wsi)]TJ 0 -13.549 Td[(jak)1(b)28(y)-240(wym)-1(ar)1(\\252e)-1(j)1(,)-240(t)27(y)1(le)-241(j)1(e)-1(n)1(o)-241(b)28(y)1(\\252o)-241(\\273ywyc)27(h)1(,)-240(g\\252os)-1(\\363)28(w,)-240(c)-1(o)-240(tam)-241(j)1(akie\\261)-241(b)28(yd)1(l\\241tk)28(o)-240(z)-1(ar)1(yc)-1(za\\252o)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-327(pu)1(s)-1(t)28(ym)-328(\\273)-1(\\252ob)1(ie,)-328(to)-328(ku)1(ry)-328(zapia\\252y)-327(o)-28(d)-328(cz)-1(asu)-327(do)-328(cz)-1(asu)-328(alb)-27(o)-328(g\\246s)-1(ior)1(y)83(,)-327(o)-28(dsadzone)]TJ 0 -13.55 Td[(o)-28(d)-333(g\\246s)-1(i)-333(siedz\\241c)-1(yc)28(h)-333(na)-333(ja)-55(jac)28(h,)-333(rozkrzyki)1(w)27(a\\252y)-333(p)-27(o)-334(p)-27(o)-28(dw)28(\\363rcac)27(h)1(.)]TJ 27.879 -13.549 Td[(A)-404(\\273)-1(e)-404(dn)1(ie)-405(b)28(y)1(\\252y)-404(c)-1(oraz)-404(d\\252u)1(\\273)-1(sz)-1(e,)-404(to)-404(i)-404(barzej)-404(s)-1(i)1(\\246)-405(mie)-1(r)1(z)-1(i\\252o)-404(lu)1(dziom,)-404(b)-28(o)-27(\\242)-405(ni)1(k-)]TJ -27.879 -13.549 Td[(to)-363(rob)-27(ot)28(y)-364(\\273adn)1(e)-1(j)-363(n)1(ie)-364(mia\\252,)-363(par)1(u)-363(robi)1(\\252o)-364(n)1(a)-364(tar)1(taku,)-363(p)1(aru)-363(zw)27(ozi\\252o)-364(z)-363(las)-1(u)-363(d)1(rze)-1(w)28(o)]TJ 0 -13.549 Td[(dl)1(a)-293(m\\252ynar)1(z)-1(a,)-292(a)-292(res)-1(zta)-293(w)28(a\\252\\246)-1(sa\\252a)-293(si\\246)-293(p)-27(o)-292(c)27(ha\\252u)1(pac)28(h,)-292(wys)-1(i)1(adyw)28(a\\252a)-293(w)-292(s)-1(\\241sie)-1(d)1(z)-1(t)28(w)28(ac)27(h)1(,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-378(jak)28(o\\261)-378(te)-1(n)-378(d)1(z)-1(i)1(e)-1(\\253)-378(si\\246)-379(p)1(rze)-1(wl\\363k\\252)-378({)-378(a)-379(j)1(aki)-378(taki,)-378(co)-378(s)-1(tar)1(o)27(wn)1(ie)-1(j)1(s)-1(zy)83(,)-378(b)1(ra\\252)-378(s)-1(i)1(\\246)-379(na-)]TJ 0 -13.549 Td[(rz\\241dza\\242)-418(p)1(\\252ugi,)-417(t)1(o)-418(b)1(ron)28(y)-416(lub)-416(insz)-1(y)-416(s)-1(p)1(rz)-1(\\246t)-417(gosp)-28(o)-28(d)1(arski)-417(sp)-28(osobi\\252)-417(n)1(a)-417(z)-1(wies)-1(n)1(\\246)-1(,)-417(d)1(o)]TJ 0 -13.55 Td[(rol)1(i)-320(przyd)1(atn)28(y)84(,)-320(jeno)-320(ni)1(e)-1(sp)-28(or)1(o)-320(to)-320(s)-1(z\\252o)-321(i)-319(c)-1(i\\246\\273)-1(k)28(o,)-319(b)-28(o)-320(ws)-1(zystkim)-320(z)-1(ar)1(\\363)27(wn)1(o)-320(doku)1(c)-1(za\\252y)]TJ 0 -13.549 Td[(pl)1(uc)27(h)29(y)-355(i)-355(fr)1(as)-1(u)1(nki)-355(p)1(rze)-1(j)1(m)-1(o)28(w)27(a\\252y)-355(serc)-1(a;)-355(ozimin)28(y)-355(b)-27(o)28(wie)-1(m)-355(s)-1(r)1(o)-28(dze)-356(cierpi)1(a\\252)-1(y)-355(o)-27(d)-355(t)28(yc)27(h)]TJ 0 -13.549 Td[(wycink)28(\\363)28(w,)-367(\\273e)-368(j)1(u\\273)-367(mie)-1(j)1(s)-1(cami)-367(na)-366(ni\\273s)-1(zyc)28(h)-367(p)-27(olac)27(h)-366(widzia\\252y)-367(si\\246)-367(do)-366(c)-1(n)1(a)-367(w)-1(y)1(m)-1(ar)1(z)-1(\\252e,)]TJ 0 -13.549 Td[(to)-332(n)1(ie)-1(j)1(e)-1(d)1(nem)27(u)-331(k)28(o\\253cz)-1(y)1(\\252a)-332(s)-1(i\\246)-332(p)1(as)-1(za)-332(i)-332(g\\252\\363)-28(d)-331(z)-1(agl)1(\\241da\\252)-332(d)1(o)-332(ob)-28(\\363r)1(,)-332(gdzie)-332(z)-1(n)1(\\363)28(w)-332(z)-1(iemnia-)]TJ 0 -13.549 Td[(ki)-346(p)-27(ok)56(az)-1(a\\252y)-346(s)-1(i)1(\\246)-347(przem)-1(r)1(o\\273)-1(on)1(e)-1(,)-346(o)28(wdzie)-347(c)27(h)1(orob)28(y)-346(zagnie\\271)-1(d)1(z)-1(i)1(\\252)-1(y)-346(si\\246)-347(w)-346(c)27(ha\\252u)1(pie,)-346(a)-347(d)1(o)]TJ 0 -13.55 Td[(wielu)-333(pr)1(z)-1(edn)1(o)27(w)28(ek)-334(si\\246)-334(d)1(obiera\\252.)]TJ 27.879 -13.549 Td[(Nie)-248(w)-247(jedn)1(e)-1(j)-247(b)-27(o)-247(ju)1(\\273)-248(c)27(h)1(a\\252)-1(u)1(pi)1(e)-248(jeno)-247(raz)-248(w)-247(dzie\\253)-247(w)27(ar)1(z)-1(yl)1(i)-248(j)1(ad\\252o,)-247(a)-247(s)-1(\\363l)-247(za)-248(j)1(e)-1(d)1(yn\\241)]TJ -27.879 -13.549 Td[(okr)1(as)-1(\\246)-328(mie)-1(l)1(i)-328({)-328(t)1(o)-328(i)-328(coraz)-328(cz)-1(\\246\\261)-1(ciej)-328(ci\\241)-28(gn)1(\\246)-1(li)-327(do)-327(m)-1(\\252yn)1(arza)-328(b)1(ra\\242)-328(te)-1(n)-327(j)1(aki)-328(k)28(or)1(c)-1(zyk)-328(n)1(a)]TJ 0 -13.549 Td[(kr)1(w)27(a)28(wy)-337(o)-28(dr)1(ob)-28(ek,)-337(b)-27(o)-338(zdzierus)-337(b)28(y\\252)-337(s)-1(rogi)1(,)-337(a)-338(n)1(ikto)-337(goto)28(w)27(ego)-337(gros)-1(za)-337(nie)-337(m)-1(ia\\252)-337(ni)-337(co)]TJ 0 -13.549 Td[(wywie\\271)-1(\\242)-266(d)1(o)-266(miastec)-1(zk)55(a,)-265(d)1(ru)1(dzy)-266(zasie)-266(to)-265(i)-265(do)-265(\\233yda)-265(d)1(o)-266(k)56(arcz)-1(m)28(y)-265(s)-1(zli)-265(sk)55(aml\\241c,)-265(b)28(yc)27(h)]TJ 0 -13.55 Td[(in)1(o)-334(n)1(a)-334(b)-27(\\363rg)-333(d)1(a\\252)-334(t\\246)-334(sz)-1(czypt\\246)-333(s)-1(oli)1(,)-334(j)1(ak)56(\\241)-334(k)1(w)27(art)1(\\246)-334(k)56(as)-1(zy)-334(al)1(b)-28(o)-333(i)-333(ten)-333(c)27(hl)1(e)-1(b)1(a)-334(b)-27(o)-28(c)28(henek!)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(k)28(os)-1(zul)1(a)-334(n)1(ie)-334(rz\\241dzi,)-333(kiej)-333(b)1(rz)-1(u)1(c)27(h)-333(b)1(\\252\\241dzi.)]TJ 0 -13.549 Td[(A)-465(naro)-27(du)-465(p)-27(otrze)-1(b)1(uj)1(\\241c)-1(ego)-466(b)28(y)1(\\252o)-466(t)28(yla,)-465(zarobk)28(\\363)28(w)-465(z)-1(a\\261)-466(\\273adn)28(y)1(c)27(h)-465(i)-465(u)-465(nik)28(ogo,)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(arze)-434(sam)-1(i)-433(n)1(ie)-434(mieli)-433(c)-1(o)-433(rob)1(i\\242,)-433(dzie)-1(d)1(z)-1(i)1(c)-434(jak)-433(si\\246)-434(b)29(y\\252)-434(za)28(wz)-1(i\\241\\252,)-433(\\273e)-434(\\273adnem)27(u)]TJ 0 -13.549 Td[(Lip)-27(c)-1(zak)28(o)28(wi)-259(grosza)-259(z)-1(ar)1(obi\\242)-259(w)-259(l)1(e)-1(sie)-259(nie)-259(d)1(a,)-259(tak)-258(i)-258(nie)-259(u)1(s)-1(t\\241)-28(p)1(i\\252)-259(mimo)-259(p)1(r\\363\\261b,)-258(c)27(ho)-27(\\242)-260(ca\\252\\241)]TJ 0 -13.55 Td[(gromad\\241)-321(do)-322(n)1(iego)-322(c)27(h)1(o)-28(dzili)1(,)-322(to)-322(j)1(u\\261c)-1(i)1(,)-322(\\273e)-322(i)-322(bi)1(e)-1(d)1(a)-322(u)-321(k)28(om)-1(or)1(nik)28(\\363)28(w)-322(i)-321(c)-1(o)-322(b)1(iedn)1(ie)-1(j)1(s)-1(zyc)27(h)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arzy)-255(rob)1(i\\252a)-255(s)-1(i)1(\\246)-256(tak)56(a,)-255(\\273e)-256(d)1(obr)1(z)-1(e)-255(s)-1(to)-55(ja\\252)-255(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-254(i)-255(Bogu)-255(dzi\\246k)28(o)27(w)28(a\\252,)-255(j)1(e)-1(\\261li)-255(mia\\252)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(ziem)-1(n)1(iaki)-333(ze)-334(s)-1(ol\\241)-333(i)-333(te)-334(gor)1(z)-1(ki)1(e)-334(\\252z)-1(y)-333(za)-334(p)1(rzypr)1(a)27(w)28(\\246.)]TJ 27.879 -13.549 Td[(T)83(o)-423(ju)1(\\261)-1(ci,)-423(\\273e)-424(z)-424(t)28(yc)27(h)-422(r\\363\\273)-1(n)29(yc)27(h)-423(r)1(\\363\\273)-1(n)1(o\\261)-1(ci)-423(ro)-28(d)1(z)-1(i\\252y)-423(si\\246)-424(w)28(e)-424(ws)-1(i)-423(ci\\241)-28(g\\252e)-424(b)1(iad)1(ania,)]TJ -27.879 -13.549 Td[(sw)27(ary)-486(a)-486(k\\252\\363tn)1(ie)-1(,)-486(a)-486(b)1(ijat)28(yk)1(i,)-486(b)-28(o)-27(\\242)-487(nar)1(\\363)-28(d)-486(cie)-1(r)1(pia\\252,)-486(c)27(h)1(o)-28(d)1(z)-1(i\\252)-486(s)-1(t)1(rapi)1(on)28(y)83(,)-486(n)1(ie)-1(p)-27(ew)-1(n)29(y)]TJ 0 -13.55 Td[(ju)1(tra,)-488(stru)1(t)28(y)-488(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(e)-1(m,)-488(\\273e)-489(j)1(e)-1(n)1(o)-488(s)-1(zuk)56(a\\252)-488(ok)55(azji)1(,)-488(b)28(yc)28(h)-488(na)-488(d)1(ru)1(gic)27(h)-487(w)-1(y)1(w)-1(r)1(z)-1(e\\242)-489(z)]TJ 0 -13.549 Td[(na)28(wi\\241zk)56(\\241)-405(to,)-405(c)-1(o)-405(go)-404(na)-405(wn\\241tr)1(z)-1(u)-404(jad)1(\\252)-1(o)-405({)-405(t)1(o)-28(\\242)-406(i)-404(b)-28(ez)-406(to)-404(a\\273)-406(si\\246)-406(c)28(ha\\252u)1(p)28(y)-405(trz\\246s)-1(\\252y)-405(o)-28(d)]TJ 0 -13.549 Td[(pl)1(ote)-1(k)1(,)-334(k)1(\\252y\\271)-1(n)1(ie\\253)-333(a)-334(p)1(rze)-1(m\\363)28(w)-1(i)1(e)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(A)-450(k)1(ie)-1(b)29(y)-450(n)1(a)-450(t\\246)-450(pr)1(z)-1(y)1(k\\252adk)28(\\246)-450(di)1(ab)-28(elsk)55(\\241)-449(z)-1(w)28(ali\\252y)-449(s)-1(i\\246)-450(c)28(horob)29(y)-450(r\\363\\273ne)-450(n)1(a)-450(wie\\261)-1(,)]TJ -27.879 -13.549 Td[(jak)-381(to)-382(zres)-1(zt\\241)-382(zwyc)-1(za)-56(j)1(nie)-382(b)28(y)1(w)27(a)-382(p)1(rze)-1(d)-381(zw)-1(i)1(e)-1(sn\\241,)-381(w)-382(niez)-1(d)1(ro)28(wy)-382(cz)-1(as,)-382(k)1(ie)-1(j)-381(w)28(ap)-28(or)1(y)]TJ 0 -13.549 Td[(sm)-1(r)1(o)-28(dli)1(w)27(e)-357(b)1(ij\\241)-356(z)-357(ta)-55(j\\241ce)-1(j)-356(ziem)-1(i)1(e)-1(,)-356(to)-356(i)-357(n)1(a)-56(j)1(pierw)28(e)-1(j)-356(spad)1(\\252a)-357(ospi)1(c)-1(a)-356(kiej)-356(te)-1(n)-356(j)1(as)-1(t)1(rz)-1(\\241b)]TJ 0 -13.55 Td[(na)-337(g\\241si\\246)-1(t)1(a)-338(i)-337(d)1(usi\\252a)-338(d)1(z)-1(i)1(e)-1(ci\\241tk)56(a,)-337(bior)1(\\241c)-338(k)56(a)-56(j)1(\\261)-338(niek)56(a)-56(j)-337(i)-337(starsz)-1(e,)-337(\\273)-1(e)-337(na)28(w)27(et)-337(dw)28(o)-56(j)1(e)-338(w)27(\\363)-55(j-)]TJ 0 -13.549 Td[(to)28(wyc)27(h)1(,)-399(na)-55(jm\\252o)-28(dszyc)27(h)1(,)-399(nie)-399(o)-28(d)1(rato)28(w)27(a\\252y)-398(s)-1(p)1(ro)28(w)27(ad)1(z)-1(on)1(e)-400(d)1(o)-28(c)27(h)28(t)1(ory)-399(i)-399(p)-27(o)28(wie)-1(\\271li)-399(j)1(e)-400(n)1(a)]TJ 0 -13.549 Td[(cm)-1(en)28(tarz,)-234(p)-28(otem)-235(z)-1(a\\261)-235(f)1(e)-1(b)1(ry)-234(i)-235(gor)1(\\241c)-1(zki,)-234(to)-235(in)1(s)-1(ze)-235(c)27(h)1(or\\363bsk)56(a)-235(zw)27(ali)1(\\252)-1(y)-234(si\\246)-235(na)-234(s)-1(tar)1(s)-1(zyc)27(h)1(,)]TJ 0 -13.549 Td[(i\\273)-325(c)-1(o)-325(dr)1(ugi)-325(d)1(om)-326(kt)1(os)-1(ik)-325(k)1(w)27(\\246k)56(a\\252)-1(,)-325(n)1(a)-325(ksi\\246)-1(\\273\\241)-325(ob)-28(or)1(\\246)-326(p)1(atrz)-1(y)1(\\252)-326(i)-324(z)-1(mi\\252o)28(w)27(an)1(ia)-325(P)28(a\\253skiego)]TJ 0 -13.549 Td[(wygl\\241d)1(a\\252)-270({)-269(a\\273)-269(Dom)-1(i)1(nik)28(o)28(w)28(a)-270(n)1(ie)-270(mog\\252a)-269(nastarcz)-1(y)1(\\242)-270(lek)28(o)28(w)27(a\\242,)-269(a)-269(\\273)-1(e)-270(p)1(rzy)-269(t)28(ym)-270(i)-268(kro)28(wy)]TJ 0 -13.55 Td[(zac)-1(zyna\\252y)-409(s)-1(i)1(\\246)-410(c)-1(ieli\\242,)-409(i)-410(n)1(iekt\\363ra)-409(k)28(obieta)-410(t)1(e)-1(\\273)-410(zle)-1(g\\252a,)-409(to)-409(rw)27(etes)-410(w)27(e)-410(wsi)-410(sta)28(w)27(a\\252)-409(s)-1(i\\246)]TJ 0 -13.549 Td[(coraz)-334(wi\\246ks)-1(zy)-333(i)-333(z)-1(amies)-1(zanie)-333(jes)-1(zc)-1(ze)-334(n)1(aras)-1(t)1(a\\252)-1(o.)]TJ\nET\nendstream\nendobj\n1069 0 obj <<\n/Type /Page\n/Contents 1070 0 R\n/Resources 1068 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1068 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1073 0 obj <<\n/Length 10070     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(333)]TJ -330.353 -35.866 Td[(Be)-1(z)-353(takie)-353(ano)-352(s)-1(pr)1(a)28(w)-1(y)-352(nar\\363)-27(d)-353(b)1(urzy\\252)-353(si\\246)-354(w)-353(sobi)1(e)-354(i)-353(coraz)-353(ni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(j)-352(wy-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a\\252)-341(zwies)-1(n)28(y)84(,)-340(b)-27(o)-28(\\242)-341(wsz)-1(ystki)1(m)-341(si\\246)-341(wid)1(z)-1(i)1(a\\252o,)-340(\\273)-1(e)-340(niec)27(h)-339(jeno)-340(\\261niegi)-340(s)-1(p)1(\\252yn\\241,)-339(z)-1(iemia)]TJ 0 -13.549 Td[(o)-28(d)1(ta)-56(j)1(e)-318(i)-317(p)1(rze)-1(sc)27(h)1(nie,)-317(s)-1(\\252o\\253)1(c)-1(e)-317(pr)1(z)-1(ygr)1(z)-1(eje,)-317(b)28(yc)28(h)-317(mo\\273)-1(n)1(a)-317(w)-1(y)1(j\\261\\242)-318(z)-317(p\\252ugi)1(e)-1(m;)-317(na)-317(r)1(ole,)-317(to)]TJ 0 -13.549 Td[(i)-333(bi)1(e)-1(d)1(y)-334(a)-333(fr)1(as)-1(u)1(nki)-333(si\\246)-334(sk)28(o\\253cz)-1(\\241.)]TJ 27.879 -13.549 Td[(Ale)-453(ws)-1(zys)-1(t)1(kim)-453(s)-1(i\\246)-453(widzia\\252o,)-453(\\273e)-453(w)-1(i)1(os)-1(n)1(a)-453(w)27(oln)1(iej)-453(nad)1(c)27(h)1(o)-28(dzi)-453(lato\\261)-453(n)1(i\\271)-1(li)-452(p)-28(o)]TJ -27.879 -13.55 Td[(dr)1(ugie)-338(roki,)-338(b)-27(o)-338(w)27(ci\\241\\273)-339(la\\252o)-338(i)-338(z)-1(iemia)-338(w)27(oln)1(iej)-338(pu)1(s)-1(zc)-1(za\\252a,)-338(i)-339(w)28(o)-28(d)1(y)-339(l)1(e)-1(n)1(iwie)-1(j)-337(s)-1(p)1(\\252)-1(y)1(w)27(a\\252y)84(,)]TJ 0 -13.549 Td[(a)-233(co)-233(gor)1(s)-1(za,)-232(\\273)-1(e)-233(an)1(o)-233(kr)1(o)27(wy)-232(jes)-1(zcz)-1(e)-233(si\\246)-233(ni)1(e)-233(le)-1(n)1(i\\252y)-232(i)-233(w\\252os)-233(mo)-28(c)-1(n)1(o)-233(siedzia\\252,)-233(co)-233(znaczy\\252o,)]TJ 0 -13.549 Td[(\\273e)-334(z)-1(i)1(m)-1(a)-333(p)-27(otrz)-1(y)1(m)-1(a)-333(d\\252u)1(\\273)-1(ej.)]TJ 27.879 -13.549 Td[(Wi\\246c)-438(niec)27(h)-437(jeno)-438(n)1(as)-1(ta\\252a)-438(j)1(ak)55(a)-438(go)-27(dzina)-438(suc)28(hsz)-1(a)-438(i)-438(s\\252o\\253ce)-439(za\\261w)-1(i)1(e)-1(ci\\252o,)-438(roi)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-337(z)-1(ar)1(az)-337(prze)-1(d)-336(c)28(ha\\252up)1(am)-1(i)1(,)-337(lu)1(dzie)-337(z)-337(z)-1(ad)1(art)28(ymi)-336(g\\252)-1(o)28(w)28(am)-1(i)-336(t\\246s)-1(k)1(liwie)-337(pr)1(z)-1(epatr)1(yw)27(al)1(i)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o)-238(wymiark)28(o)28(wuj)1(\\241c)-1(,)-237(z)-1(ali)-237(to)-238(n)1(ie)-238(na)-238(d)1(\\252u\\273s)-1(z\\241)-238(o)-28(d)1(m)-1(ian)1(\\246)-238(idzie,)-238(staruc)28(h)28(y)-238(za\\261)-238(wy\\252az)-1(il)1(i)]TJ 0 -13.55 Td[(p)-27(o)-28(d)-463(\\261)-1(cian)28(y)-464(n)1(agrze)-1(w)28(a\\242)-464(s)-1(tr)1(uc)27(h)1(la\\252e)-464(k)28(o\\261)-1(ci,)-464(a)-463(c)-1(o)-464(b)29(y\\252o)-464(dziec)-1(i,)-463(ws)-1(zys)-1(t)1(kie)-464(biega\\252y)-464(z)]TJ 0 -13.549 Td[(wrzas)-1(ki)1(e)-1(m)-334(p)-27(o)-333(dr)1(ogac)27(h,)-333(ki)1(e)-1(j)-333(te)-333(\\271)-1(r)1(e)-1(b)1(aki)-333(w)-1(y)1(puszc)-1(zone)-334(n)1(a)-334(p)1(ierws)-1(z\\241)-333(tra)28(w)27(\\246.)]TJ 27.879 -13.549 Td[(I)-333(c)-1(o)-333(w)-334(tak)1(i)-334(czas)-334(b)28(y\\252o)-333(rado\\261ci,)-333(w)27(es)-1(ela,)-333(\\261m)-1(iec)27(h)1(\\363)28(w)-1(!)]TJ 0 -13.549 Td[(\\221wiat)-282(c)-1(a\\252y)-283(za)-56(j)1(m)-1(o)28(w)28(a\\252)-283(s)-1(i)1(\\246)-284(p)1(\\252)-1(omieni)1(am)-1(i)-282(o)-28(d)-283(s\\252o\\253ca,)-283(gorza\\252y)-283(\\261w)-1(i)1(at\\252o\\261)-1(ci\\241)-283(w)28(o)-28(dy)]TJ -27.879 -13.549 Td[(ws)-1(ze)-1(l)1(kie,)-253(r)1(o)28(w)-1(y)-252(b)28(y)1(\\252)-1(y)84(,)-252(kiejb)28(y)-252(j)1(e)-253(kto)-252(roz)-1(t)1(opion)28(y)1(m)-253(s)-1(\\252o\\253)1(c)-1(em)-253(n)1(ap)-28(e\\252ni\\252)-252(p)-28(o)-252(br)1(z)-1(egi,)-252(dr)1(ogi)]TJ 0 -13.55 Td[(za\\261)-436(wid)1(z)-1(ia\\252y)-435(si\\246)-435(jakb)29(y)-435(z)-436(top)1(ionego)-435(z\\252)-1(ot)1(a)-435(ucz)-1(yn)1(ione,)-435(lo)-27(dy)-435(n)1(a)-435(s)-1(ta)28(wie)-435(przem)27(yte)]TJ 0 -13.549 Td[(desz)-1(cz)-1(ami)-339(p)-27(ob\\252yskiw)28(a\\252y)-339(j)1(ak)28(o)-339(ta)-339(misa)-339(cyno)28(w)28(a)-339(c)-1(zarn)1(ia)28(w)27(o,)-338(drze)-1(w)28(a)-339(n)1(a)27(w)28(et)-339(s)-1(k)1(rzy\\252y)]TJ 0 -13.549 Td[(si\\246)-261(o)-27(d)-260(rosy)-260(n)1(ieob)-28(es)-1(c)28(h\\252ej,)-260(a)-260(p)-27(ola,)-259(p)-28(ob)1(ru\\273d\\273one)-260(stru)1(gam)-1(i,)-259(le)-1(\\273a\\252y)-260(j)1(e)-1(sz)-1(cz)-1(e)-260(on)1(ie)-1(mia\\252e,)]TJ 0 -13.549 Td[(cz)-1(arn)1(e)-1(,)-250(mart)28(w)28(e)-1(,)-250(a)-250(ju)1(\\273)-251(jakb)29(y)-251(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(e)-251(ciep\\252em)-251(i)-250(w)27(ez)-1(b)1(ran)1(e)-251(wios)-1(n)1(\\241,)-250(i)-251(p)-27(e\\252ne)-251(skrze)-1(\\253)]TJ 0 -13.549 Td[(i)-403(b)-27(e)-1(\\252k)28(otli)1(w)-1(y)1(c)27(h)-403(g\\252os\\363)28(w)-404(w)28(\\363)-28(d,)-403(a)-403(tu)-402(i)-403(\\363)28(w)-1(d)1(z)-1(i)1(e)-404(ni)1(e)-404(stopion)1(e)-404(\\261ni)1(e)-1(gi)-403(j)1(arz)-1(y)1(\\252y)-403(s)-1(i\\246)-403(os)-1(tr)1(\\241)]TJ 0 -13.55 Td[(bi)1(a\\252o\\261)-1(ci\\241,)-361(k)1(ie)-1(j)-360(te)-361(p\\252\\363tn)1(a)-361(rozci\\241)-28(gni)1(\\246)-1(te)-361(d)1(o)-361(bli)1(c)27(h)28(u)1(;)-361(n)1(ie)-1(b)-27(o)-361(zm)-1(o)-27(drza\\252o,)-361(o)-27(ds\\252)-1(on)1(i\\252y)-361(si\\246)]TJ 0 -13.549 Td[(dal)1(e)-390(p)1(rz)-1(y)1(m)-1(gl)1(one,)-389(z)-1(d)1(z)-1(iebk)28(o)-389(j)1(akb)28(y)-389(osn)28(u)1(te)-390(p)1(a)-56(j)1(\\246)-1(cz)-1(yn)1(ami,)-389(\\273)-1(e)-389(ok)28(o)-389(s)-1(z\\252o)-389(na)-389(wskr\\363\\261)-389(i)]TJ 0 -13.549 Td[(lec)-1(i)1(a\\252)-1(o)-430(hen,)-430(n)1(a)-431(p)-27(ola)-431(n)1(ieob)-55(j\\246te)-1(,)-430(na)-430(c)-1(zarn)1(e)-431(lin)1(ie)-431(ws)-1(i)1(,)-431(n)1(a)-431(otok)1(i)-431(b)-27(or\\363)28(w,)-430(w)27(e)-431(\\261wiat)]TJ 0 -13.549 Td[(ten)-394(c)-1(a\\252y)-394(dy)1(s)-1(z\\241c)-1(y)-394(r)1(ado\\261c)-1(i\\241,)-394(a)-394(p)-28(o)28(wietrze)-1(m)-394(s)-1(z\\252y)-394(takie)-395(lu)1(b)-27(e)-1(,)-394(wio\\261nian)1(e)-395(tc)27(h)1(nieni)1(a,)]TJ 0 -13.549 Td[(\\273e)-443(w)-443(s)-1(ercac)27(h)-442(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(yc)28(h)-442(w)-1(sta)28(w)27(a\\252)-442(radosn)28(y)-442(krzyk,)-442(du)1(s)-1(ze)-443(si\\246)-443(rw)28(a\\252)-1(y)84(,)-442(w)27(e)-443(\\261wiat)]TJ 0 -13.55 Td[(p)-27(onosi\\252o,)-351(\\273e)-352(k)1(u\\273den)-351(b)29(y)-351(lec)-1(i)1(a\\252)-351(w)-351(to)-351(s\\252)-1(o\\253)1(c)-1(e)-351(j)1(ak)28(o)-351(te)-351(ptaki)1(,)-351(co)-351(nad)1(c)-1(i)1(\\241)-28(ga\\252y)-351(gd)1(z)-1(ies)-1(i)1(k)]TJ 0 -13.549 Td[(o)-28(d)-476(ws)-1(c)28(ho)-28(d)1(u)-477(i)-476(p\\252a)28(wi\\252y)-476(s)-1(i\\246)-477(w)-477(cz)-1(y)1(s)-1(t)28(ym)-477(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(;)-477(k)56(a\\273)-1(d)1(e)-1(n)-476(r)1(ad)-477(wysta)28(w)27(a\\252)-476(prze)-1(d)]TJ 0 -13.549 Td[(domem)-334(i)-333(rad)-333(r)1(oz)-1(p)1(ra)28(w)-1(i)1(a\\252)-334(n)1(a)27(w)28(et)-334(z)-333(niepr)1(z)-1(yj)1(ac)-1(io\\252y)84(.)]TJ 27.879 -13.549 Td[(Mi)1(lkn\\246\\252y)-429(wtedy)-428(k\\252\\363tni)1(e)-1(,)-428(przygasa\\252y)-429(sp)-28(or)1(y)83(,)-428(dob)1(ro\\261\\242)-430(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252a)-429(s)-1(erca)-429(i)]TJ -27.879 -13.549 Td[(w)28(e)-1(so\\252e)-335(p)-28(\\363\\252kr)1(z)-1(y)1(ki)-334(le)-1(cia\\252y)-334(p)-27(o)-335(wsi,)-334(przep)-28(e\\252nia\\252y)-334(d)1(om)27(y)-334(rad)1(o\\261)-1(ci\\241)-334(i)-335(d)1(r\\273a\\252y)-334(\\261)-1(wiegotli-)]TJ 0 -13.55 Td[(wymi)-333(g\\252)-1(osami)-334(w)-333(p)-27(o)27(wietrzu)-333(cie)-1(p)1(\\252ym.)]TJ 27.879 -13.549 Td[(Wywieran)1(o)-287(na)-287(rozcie)-1(\\273)-287(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-287(o)-28(d)1(bij)1(ali)-287(okn)1(a,)-287(b)28(y)-287(wpu)1(\\261)-1(ci\\242)-287(do)-287(izb)-287(n)1(iec)-1(o)-287(p)-27(o-)]TJ -27.879 -13.549 Td[(wietrza,)-301(k)28(obiet)28(y)-301(wy\\252az)-1(i\\252y)-301(n)1(a)-301(przyzb)28(y)-301(z)-301(k)55(\\241d)1(z)-1(i)1(e)-1(lami,)-301(n)1(a)27(w)28(et)-301(dzie)-1(ci\\241tk)56(a)-301(wynosz)-1(on)1(o)]TJ 0 -13.549 Td[(w)-457(k)28(o\\252y)1(s)-1(k)56(ac)27(h)-456(n)1(a)-457(s\\252o\\253ce)-1(,)-456(a)-456(z)-457(ot)28(w)28(art)28(yc)27(h)-456(ob)-27(\\363r)-456(rozlega\\252y)-457(si\\246)-457(r)1(az)-457(p)-27(o)-457(r)1(az)-457(t\\246s)-1(kli)1(w)27(e)]TJ 0 -13.549 Td[(p)-27(oryki)-350(b)29(ydl)1(\\241te)-1(k,)-349(k)28(onie)-350(r\\273)-1(a\\252y)-350(r)1(wi\\241c)-351(si\\246)-351(z)-350(u\\271dzienic)-350(na)-350(\\261)-1(wiat)1(,)-350(g\\246)-1(si)-350(z)-1(a\\261)-350(uciek)55(a\\252y)-350(z)]TJ 0 -13.549 Td[(ja)-55(j)-354(i)-354(p)1(rz)-1(ekr)1(z)-1(yk)1(iw)27(a\\252y)-354(si\\246)-355(z)-354(g\\246)-1(siorami)-354(p)-27(o)-355(sadac)28(h,)-354(k)28(ogu)1(t)28(y)-354(pia\\252y)-354(p)-27(o)-354(p\\252otac)27(h)1(,)-354(a)-354(psy)]TJ 0 -13.55 Td[(kiej)-333(osz)-1(ala\\252e)-334(szc)-1(ze)-1(k)56(a\\252y)-333(p)-28(o)-333(d)1(rogac)27(h)-333(gan)1(ia)-56(j)1(\\241c)-334(wraz)-334(z)-333(dzie)-1(\\242mi)-334(p)-27(o)-333(b\\252o)-28(cie.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-355(z)-1(a\\261)-355(p)-28(osta)28(w)27(a\\252)-355(w)-355(op\\252otk)56(ac)27(h)-355(i)-355(mru)1(\\273)-1(\\241c)-355(o)-28(d)-355(bl)1(as)-1(k)28(\\363)28(w)-355(o)-28(c)-1(zy)-355(s)-1(p)-27(ozie)-1(r)1(a\\252)-356(r)1(a-)]TJ -27.879 -13.549 Td[(do\\261ni)1(e)-461(na)-460(wie)-1(\\261)-460(tapla)-55(j\\241c\\241)-460(s)-1(i\\246)-460(w)-461(s\\252)-1(o\\253)1(c)-1(u)1(,)-460(\\273)-1(e)-460(jeno)-460(s)-1(zyb)28(y)-460(gra\\252y)-460(ogn)1(iam)-1(i)1(,)-460(k)28(obiet)28(y)]TJ 0 -13.549 Td[(rozpr)1(a)27(wia\\252y)-370(p)-27(o)-371(s\\241s)-1(iedzku)-370(p)1(rz)-1(ez)-371(sady)84(,)-371(\\273e)-371(g\\252os)-1(y)-370(sz)-1(\\252y)-370(na)-370(c)-1(a\\252\\241)-371(wie\\261,)-371(p)-27(o)28(w)-1(i)1(e)-1(d)1(ali)-370(s)-1(o-)]TJ 0 -13.549 Td[(bi)1(e)-1(,)-236(\\273)-1(e)-237(ktosik)-236(ano)-236(ju\\273)-237(s\\252ysz)-1(a\\252)-237(sk)28(o)28(w)-1(r)1(onk)56(a,)-237(\\273e)-237(i)-237(p)1(lisz)-1(k)1(i)-237(wid)1(z)-1(ieli)-236(na)-237(t)1(op)-28(olo)28(w)28(e)-1(j)-236(d)1(ro)-28(dze;)]TJ 0 -13.55 Td[(to)-391(zno)28(wu)-391(kt\\363r)1(y\\261)-392(d)1(o)-56(j)1(rz)-1(a\\252)-391(n)1(a)-391(niebi)1(e)-1(,)-391(wysok)28(o)-391(p)-28(o)-27(d)-391(c)27(h)1(m)27(u)1(rami,)-391(s)-1(zn)28(u)1(r)-391(dziki)1(c)27(h)-391(g\\246s)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-360(wnet)-360(p)-27(\\363\\252)-359(w)-1(si)-359(wybieg\\252o)-359(na)-359(drog\\246)-359(patrze\\242)-1(,)-359(a)-359(insz)-1(y)-359(p)-27(otem)-360(rozp)-27(o)27(wiad)1(a\\252,)-359(jak)28(o)-359(i)]TJ\nET\nendstream\nendobj\n1072 0 obj <<\n/Type /Page\n/Contents 1073 0 R\n/Resources 1071 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1071 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1076 0 obj <<\n/Length 9899      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(334)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(o)-28(\\242)-1(k)1(i)-409(j)1(u\\273)-409(spad)1(\\252y)-409(n)1(a)-409(\\252\\246gac)27(h)-408(za)-409(m\\252ynem.)-409(Nie)-408(da)28(w)27(an)1(o)-409(tem)27(u)-408(wiar)1(y)83(,)-408(b)-27(o)-28(\\242)-409(dop)1(iero)]TJ 0 -13.549 Td[(marze)-1(c)-261(dob)1(iega\\252)-261(do)-261(p)-27(o\\252o)28(w)-1(y)1(!)-261(A)-260(kt\\363ry\\261,)-261(b)-27(o)-28(d)1(a)-56(j)-260(K\\252\\246b)-28(o)28(wy)-261(c)28(h\\252opak)1(,)-261(pr)1(z)-1(y)1(ni\\363s\\252)-261(pi)1(e)-1(rw-)]TJ 0 -13.549 Td[(sz)-1(\\241)-362(p)1(rzylasz)-1(cz)-1(k)28(\\246)-362(i)-361(lata\\252)-362(z)-362(n)1(i\\241)-362(p)-27(o)-362(c)28(ha\\252up)1(ac)27(h,)-361(\\273e)-363(ogl)1(\\241dali)-361(\\363)28(w)-362(blad)1(y)-362(k)1(w)-1(i)1(atusz)-1(ek)-362(z)]TJ 0 -13.549 Td[(p)-27(o)-28(dziw)28(e)-1(m)-333(g\\252)-1(\\246b)-27(okim,)-333(b)28(yc)27(h)-333(t)1(\\246)-334(\\261)-1(wi\\246to\\261\\242)-334(na)-55(jwi\\246ks)-1(z\\241,)-333(i)-333(dziw)27(o)28(w)28(ali)-333(s)-1(i)1(\\246)-334(wie)-1(l)1(c)-1(e.)]TJ 27.879 -13.549 Td[(T)83(ak)-228(an)1(o)-228(to)-228(cie)-1(p)1(\\252o)-228(z)-1(w)28(o)-28(d)1(ne)-228(c)-1(zyni)1(\\252o,)-228(\\273)-1(e)-228(si\\246)-229(j)1(u\\273)-228(lu)1(dziom)-229(wid)1(z)-1(i)1(a\\252o,)-228(jak)28(o)-228(zwie)-1(sna)]TJ -27.879 -13.55 Td[(si\\246)-446(zac)-1(zyn)1(a,)-445(jak)28(o)-445(wnet)-445(z)-445(p\\252ugami)-445(r)1(usz)-1(\\241)-445(n)1(a)-445(p)-28(ola,)-444(w)-1(i)1(\\246)-1(c)-445(z)-446(tr)1(w)27(og\\241)-445(t)28(ym)-445(wi\\246ks)-1(z\\241)]TJ 0 -13.549 Td[(sp)-28(ogl\\241d)1(ano)-259(n)1(a)-260(c)28(hm)28(urz\\241c)-1(e)-259(s)-1(i)1(\\246)-260(z)-260(n)1(ag\\252a)-259(nieb)-28(o,)-259(a)-259(ze)-260(sm)27(u)1(tkiem)-260(g\\252\\246b)-28(oki)1(m)-1(,)-259(gd)1(y)-259(s)-1(\\252o\\253)1(c)-1(e)]TJ 0 -13.549 Td[(si\\246)-264(s)-1(kr)1(y\\252o)-264(i)-264(zimn)28(y)-264(wiatr)-263(p)-27(o)27(wia\\252,)-263(br)1(z)-1(aski)-264(p)-27(ogas)-1(\\252y)84(,)-264(\\261wiat)-264(\\261c)-1(iemnia\\252)-264(i)-263(dr)1(obn)28(y)-263(des)-1(zc)-1(z)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(z\\241\\252)-400(m\\273)-1(y\\242!..)1(.)-400(A)-400(z)-400(w)-1(i)1(e)-1(cz)-1(or)1(a)-400(m)-1(ok)1(ry)-400(\\261nieg)-400(tak)-400(j)1(\\241\\252)-400(w)27(ali)1(\\242)-1(,)-399(\\273)-1(e)-400(m)-1(o\\273e)-400(w)-401(j)1(akie)-400(dw)28(a)]TJ 0 -13.549 Td[(pacierze)-334(pr)1(z)-1(yb)1(ieli\\252)-333(z)-1(n)1(o)27(wu)-333(wie\\261)-334(ca\\252)-1(\\241)-333(i)-333(p)-27(ola..:)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(tk)28(o)-401(p)-27(o)28(wr\\363)-28(ci\\252o)-401(d)1(o)-401(da)28(wnego)-401(tak)-400(pr\\246dk)28(o,)-400(\\273)-1(e)-401(w)-401(n)1(o)28(w)-1(y)1(c)27(h)-400(dni)1(ac)27(h)-400(des)-1(z-)]TJ -27.879 -13.55 Td[(cz)-1(\\363)28(w,)-443(wyc)-1(i)1(nk)28(\\363)28(w)-443(i)-443(b\\252otn)1(e)-1(j)-442(tapl)1(anin)29(y)-443(niejedn)1(e)-1(m)28(u)-443(si\\246)-443(w)-1(i)1(dzia\\252o,)-443(jak)28(o)-442(tam)27(te)-443(s)-1(\\252o-)]TJ 0 -13.549 Td[(necz)-1(n)1(e)-324(go)-28(dzin)28(y)-323(b)28(y)1(\\252)-1(y)-323(j)1(e)-1(n)1(o)-324(snem)-324(ry)1(c)27(h\\252o)-323(pr)1(z)-1(es)-1(p)1(an)28(ym.)-323(W)-323(takic)27(h)-323(t)1(o)-324(an)1(o)-324(spr)1(a)27(w)28(ac)27(h)1(,)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(ciac)27(h)1(,)-338(s)-1(m)28(utk)56(ac)27(h)-337(a)-339(t)1(\\246)-1(skni)1(c)-1(ac)27(h)-337(prze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-339(cz)-1(as)-338(nar)1(o)-28(do)28(wi,)-338(to)-338(ju)1(\\261)-1(ci,)-338(ni)1(e)-339(dzi-)]TJ 0 -13.549 Td[(w)28(ota,)-368(\\273)-1(e)-368(An)28(tk)28(o)28(w)27(e)-368(s)-1(p)1(ra)28(wki,)-368(Bory)1(no)28(w)27(e)-368(p)-28(o\\273ycie)-369(czy)-368(tam)-369(j)1(akie)-368(insz)-1(e)-368(hi)1(s)-1(tor)1(ie)-369(ab)-27(o)]TJ 0 -13.549 Td[(\\261m)-1(iercie)-269(cz)-1(yj)1(e)-269(i)-268(c)-1(o)-268(dru)1(giego)-269(j)1(ak)28(o)-269(te)-269(k)56(amie)-1(n)1(ie)-269(p)1(ada\\252y)-268(na)-269(d)1(no)-268(pami\\246c)-1(i,)-268(b)-27(o)-28(\\242)-269(k)56(a\\273)-1(d)1(e)-1(n)]TJ 0 -13.55 Td[(mia\\252)-334(d)1(os)-1(y)1(\\242)-334(s)-1(w)28(o)-56(j)1(e)-1(go,)-333(\\273e)-334(ledwie)-334(u)1(rad)1(z)-1(i\\252.)]TJ 27.879 -13.549 Td[(A)-337(d)1(nie)-337(pr)1(z)-1(ec)27(ho)-27(dzi\\252y)-337(n)1(ie)-1(p)-27(o)28(w)-1(strzymani)1(e)-1(,)-337(n)1(arasta\\252y)-337(kiej)-336(te)-338(w)28(o)-28(dy)-336(p\\252yn)1(\\241c)-1(e)-337(z)]TJ -27.879 -13.549 Td[(morza)-337(wielgac)27(h)1(nego,)-337(\\273e)-337(ani)-336(im)-337(p)-27(o)-28(cz)-1(\\241t)1(ku,)-336(ni)-336(k)28(o\\253)1(c)-1(a)-336(w)-1(y)1(m)-1(iar)1(k)28(o)28(w)27(a\\242,)-337(sz)-1(\\252y)-336(i)-336(s)-1(z\\252y)83(,)-336(i\\273)]TJ 0 -13.549 Td[(ledwie)-361(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-361(ozw)27(ar)-360(o)-28(c)-1(zy)84(,)-361(ledwie)-361(s)-1(i\\246)-361(ob)-28(ejr)1(z)-1(a\\252,)-361(l)1(e)-1(d)1(w)-1(i)1(e)-362(co\\261)-362(n)1(ie)-1(co\\261)-361(w)-1(y)1(roz)-1(u)1(mia\\252,)]TJ 0 -13.549 Td[(a)-368(ju)1(\\273)-369(n)1(o)27(wy)-368(zmrok,)-368(j)1(u\\273)-368(no)-28(c,)-368(ju)1(\\273)-369(n)1(o)28(w)27(e)-368(\\261)-1(witan)1(ie)-369(i)-368(d)1(z)-1(i)1(e)-1(\\253)-367(no)28(wy)83(,)-368(i)-368(t)1(urb)1(ac)-1(j)1(e)-369(n)1(o)27(w)28(e)-1(,)-367(i)]TJ 0 -13.55 Td[(tak)-333(ano)-333(w)-333(k)28(\\363\\252)-1(k)28(o,)-333(b)28(y)1(c)27(h)-333(si\\246)-334(j)1(e)-1(n)1(o)-334(w)28(oli)-333(b)-27(os)-1(ki)1(e)-1(j)-333(sta\\252o)-334(zado\\261\\242)-1(!)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-271(dn)1(ia,)-271(b)-27(o)-28(d)1(a)-56(j)-270(w)-271(s)-1(amo)-271(p)-27(\\363\\252)-1(p)-27(o\\261c)-1(ie,)-271(cz)-1(as)-271(si\\246)-271(z)-1(rob)1(i\\252)-271(j)1(e)-1(sz)-1(cz)-1(e)-271(gorsz)-1(y)-270(ni\\271li)]TJ -27.879 -13.549 Td[(kiej)-306(ind)1(z)-1(i)1(e)-1(j)1(,)-307(b)-27(o)-307(c)27(h)1(o)-28(cia\\273)-307(jeno)-306(m)-1(\\273y\\252)-307(d)1(robn)29(y)-307(d)1(e)-1(sz)-1(cz)-1(,)-306(ale)-307(lu)1(dzie)-307(c)-1(zuli)-306(si\\246)-307(tak)-307(\\271le,)-307(j)1(ak)]TJ 0 -13.549 Td[(ni)1(gdy)-401(d)1(o)-401(tela,)-401(\\252azili)-400(p)-28(o)-401(wsi)-401(ki)1(e)-1(j)-400(s)-1(p)-27(\\246)-1(t)1(ani)-401(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-402(\\273a\\252o\\261)-1(n)1(ie)-401(na)-401(\\261wiat)-401(zatk)55(an)29(y)]TJ 0 -13.549 Td[(c)27(h)1(m)27(u)1(rzys)-1(k)56(ami)-249(tak)-248(g\\246)-1(sto,)-249(\\273e)-249(dar\\252y)-248(s)-1(i\\246)-249(an)1(o)-249(nap)-27(\\246c)-1(znia\\252ymi)-248(brzusz)-1(y)1(s)-1(k)56(ami)-249(o)-249(d)1(rze)-1(w)28(a.)]TJ 0 -13.55 Td[(Sm)28(utn)1(o)-257(b)29(y\\252o,)-257(mokr)1(o,)-257(zimno)-256(i)-256(tak)-257(mro)-27(c)-1(zno)-256(na)-256(\\261)-1(wiec)-1(ie,)-256(\\273)-1(e)-257(p)1(\\252ak)55(a\\242)-256(s)-1(i\\246)-257(an)1(o)-257(c)28(hcia\\252o)-257(z)]TJ 0 -13.549 Td[(t\\246s)-1(kn)1(o\\261)-1(ci)-275(ni)1(e)-1(zm)-1(o\\273onej,)-275(n)1(ikto)-275(si\\246)-276(j)1(u\\273)-275(dzisia)-56(j)-275(n)1(ie)-276(k)1(\\252\\363)-28(c)-1(i)1(\\252)-276(i)-275(n)1(ie)-276(p)1(rze)-1(ma)28(w)-1(i)1(a\\252,)-275(k)55(a\\273dem)27(u)]TJ 0 -13.549 Td[(zar\\363)28(w)-1(n)1(o)-336(w)-1(szys)-1(tk)28(o)-336(b)28(y)1(\\252)-1(o,)-336(b)-27(o)-336(k)56(a\\273)-1(d)1(e)-1(n)-336(j)1(e)-1(n)1(o)-337(cic)28(hego)-337(k)56(\\241ta)-336(patr)1(z)-1(a\\252,)-336(b)28(y)-336(l)1(e)-1(c)-337(i)-336(o)-336(n)1(ic)-1(zym)]TJ 0 -13.549 Td[(ni)1(e)-334(bacz)-1(y)1(\\242)-1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-327(b)28(y\\252)-329(p)-27(os\\246)-1(p)1(n)28(y)-328(jak)-328(to)-328(patr)1(z)-1(enie)-329(c)28(hor)1(e)-1(go,)-328(c)-1(o)-328(ledwie)-329(o)-27(c)-1(zy)-328(oz)-1(ew)-1(r)1(z)-1(e)-328(i)-329(co\\261)]TJ -27.879 -13.55 Td[(ni)1(e)-1(co\\261)-377(rozp)-28(ozna,)-376(i)-376(z)-1(n)1(o)27(wu)-376(pad)1(a)-377(w)-377(mrok)-376(c)27(h)1(orob)1(n)28(y)83(,)-376(b)-27(o)28(w)-1(i)1(e)-1(m)-377(ledwie)-377(p)1(rze)-1(d)1(z)-1(w)28(onil)1(i)]TJ 0 -13.549 Td[(p)-27(o\\252udn)1(ie,)-384(zm)-1(r)1(o)-28(c)-1(za\\252o)-384(n)1(agle)-1(,)-383(p)-27(o)-28(dn)1(i\\363s)-1(\\252)-383(s)-1(i\\246)-384(g\\252u)1(c)27(h)28(y)-383(w)-1(i)1(atr)-384(i)-383(bi\\252)-383(w)-1(r)1(az)-384(z)-385(d)1(e)-1(sz)-1(cze)-1(m)-384(w)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zerni)1(a\\252)-1(e)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[(Na)-355(dr)1(ogac)27(h)-354(b)28(y\\252o)-355(pu)1(s)-1(to)-355(i)-354(c)-1(ic)28(ho)-355(o)-28(d)-354(lud)1(z)-1(i)1(,)-355(t)28(ylk)28(o)-355(wiater)-355(z)-355(s)-1(zume)-1(m)-355(pr)1(z)-1(emia-)]TJ -27.879 -13.549 Td[(ta\\252)-370(p)-28(o)-370(b)1(\\252o)-28(c)-1(i)1(e)-1(,)-370(to)-370(des)-1(zcz)-371(pl)1(usk)55(a\\252,)-370(j)1(ak)-370(kieb)28(y)-370(kto)-370(t)28(ym)-370(z)-1(iar)1(nem)-371(w)28(a\\273)-1(n)28(y)1(m)-371(cie)-1(p)1(a\\252)-371(n)1(a)]TJ 0 -13.549 Td[(dr)1(z)-1(ewin)28(y)-302(roztrz\\246)-1(sione)-302(i)-303(p)-27(o)-28(cz)-1(ern)1(ia\\252e)-303(\\261)-1(cian)28(y)84(,)-302(to)-303(zno)28(wu)-302(s)-1(ta)28(w)-302(baro)28(w)28(a\\252)-303(si\\246)-303(ano)-302(z)-303(p)-27(\\246)-1(-)]TJ 0 -13.55 Td[(k)56(a)-56(j)1(\\241c)-1(ymi)-309(lo)-28(d)1(am)-1(i,)-309(b)-27(o)-310(raz)-310(p)-27(o)-310(r)1(az)-311(t)1(rz)-1(ask)-309(s)-1(i\\246)-310(r)1(oz)-1(lega\\252)-310(i)-309(gro)-28(c)28(hot,)-309(i)-310(w)28(o)-28(dy)-309(z)-310(krzyki)1(e)-1(m)]TJ 0 -13.549 Td[(wyc)27(h)1(lust)28(yw)28(a\\252y)-334(n)1(a)-334(wyb)1(rze)-1(\\273a.)]TJ 27.879 -13.549 Td[(W)-334(tak)1(i)-334(to)-334(dzie\\253,)-334(j)1(ak)28(o\\261)-335(n)1(a)-334(s)-1(am)28(ym)-334(o)-28(dwiec)-1(ze)-1(r)1(z)-1(u)1(,)-334(gru)1(c)27(h)1(n\\246\\252)-1(a)-334(p)-27(o)-334(ws)-1(i)-333(no)28(wina,)]TJ -27.879 -13.549 Td[(\\273e)-334(dziedzic)-334(r\\241b)1(ie)-334(c)28(h\\252opski)-333(las.)]TJ 27.879 -13.549 Td[(Nikt)-238(tem)27(u)-238(z)-1(r)1(az)-1(u)-238(wiary)-238(ni)1(e)-239(da)28(w)27(a\\252,)-238(b)-27(o)-239(s)-1(k)28(or)1(o)-239(d)1(o)-239(tela)-239(n)1(ie)-239(r\\241b)1(a\\252)-1(,)-238(to)-238(jak\\273e)-1(,)-238(teraz)]TJ -27.879 -13.55 Td[(b)28(y)84(,)-302(w)-302(p)-28(o\\252o)28(wie)-302(m)-1(ar)1(c)-1(a,)-302(k)1(ie)-1(j)-301(z)-1(i)1(e)-1(mia)-302(o)-28(d)1(m)-1(ar)1(z)-1(a)-302(i)-302(d)1(rze)-1(w)28(a)-302(s)-1(ok)1(i)-302(c)-1(i)1(\\241)-28(gn\\241\\242)-302(z)-1(acz)-1(y)1(na)-55(j\\241,)-302(ci\\241\\252)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie?)]TJ\nET\nendstream\nendobj\n1075 0 obj <<\n/Type /Page\n/Contents 1076 0 R\n/Resources 1074 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1074 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1079 0 obj <<\n/Length 9420      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(335)]TJ -330.353 -35.866 Td[(Sz\\252a)-333(ju\\261ci)-334(w)-333(b)-27(o)-1(r)1(u)-333(rob)-27(ota,)-333(ale)-334(k)56(a\\273den)-333(wie)-1(d)1(z)-1(i)1(a)-1(\\252,)-333(i\\273)-333(przy)-333(obr)1(\\363b)-28(ce)-334(d)1(rz)-1(ew)28(a.)]TJ 0 -13.549 Td[(Jaki)-333(ta)-333(dziedzic)-334(b)28(y)1(\\252)-1(,)-333(to)-333(b)28(y)1(\\252)-1(,)-333(al)1(e)-334(z)-1(a)-333(g\\252up)1(ieg)-1(o)-333(n)1(ikto)-333(go)-334(n)1(ie)-334(mia\\252.)]TJ 0 -13.549 Td[(A)-333(jeno)-333(g\\252up)1(i)-334(w)-333(m)-1(ar)1(c)-1(u)-333(spu)1(s)-1(zcz)-1(a\\252b)28(y)-333(b)1(udu)1(lec)-1(.)]TJ 0 -13.549 Td[(I)-302(na)28(w)28(e)-1(t)-302(n)1(ie)-302(w)-1(i)1(ada,)-302(kt)1(o)-303(t)1(ak)55(\\241)-302(n)1(o)28(w)-1(i)1(n\\246)-302(roz)-1(g\\252osi\\252,)-302(ale)-302(mim)-1(o)-302(t)1(o)-302(z)-1(ak)28(ot\\252o)28(w)27(a\\252o)-302(w)28(e)]TJ -27.879 -13.549 Td[(ws)-1(i)1(,)-391(\\273e)-391(ino)-390(drzwi)-391(t)1(rz)-1(ask)56(a\\252y)-391(i)-390(b\\252oto)-390(s)-1(i\\246)-391(ot)28(wiera\\252o)-391(p)-27(o)-28(d)-390(tr)1(e)-1(p)1(am)-1(i,)-390(tak)-390(biegali)-390(z)-391(t\\241)]TJ 0 -13.55 Td[(wie\\261)-1(ci\\241)-414(p)-28(o)-414(c)28(ha\\252up)1(ac)27(h)1(,)-414(pr)1(z)-1(ysta)28(w)27(al)1(i)-414(z)-415(n)1(i\\241)-414(p)-27(o)-415(d)1(rogac)28(h,)-414(sc)27(h)1(o)-28(dzili)-414(si\\246)-414(do)-414(k)56(arcz)-1(m)28(y)]TJ 0 -13.549 Td[(me)-1(d)1(yto)28(w)27(a\\242)-387(i)-387(\\233yd)1(a)-387(przep)28(yta\\242,)-387(ale)-387(\\273)-1(\\363\\252tek)-387(j)1(uc)27(h)1(a)-387(z)-1(ap)1(iera\\252)-387(s)-1(i)1(\\246)-388(i)-387(p)1(rzysi\\246)-1(ga\\252,)-387(\\273e)-387(nic)]TJ 0 -13.549 Td[(ni)1(e)-293(wie,)-292(to)-293(j)1(u\\273)-292(i)-292(gdzieniegdzie)-293(k)1(rz)-1(y)1(ki)-292(p)-27(o)27(wsta)27(w)28(a\\252y)-292(i)-292(to)-292(z)-1(\\252e)-292(s)-1(\\252o)28(w)27(o)-292(p)1(ada\\252o,)-292(i)-292(lame)-1(n)29(t)]TJ 0 -13.549 Td[(bab)1(i)-330(si\\246)-330(rozlega\\252,)-330(wz)-1(b)1(ur)1(z)-1(enie)-330(za\\261)-330(ros)-1(\\252o)-329(niep)-28(omiern)1(ie)-1(,)-329(ni)1(e)-1(p)-27(ok)28(\\363)-56(j)1(,)-330(a)-329(z)-1(\\252o\\261)-1(\\242)-330(i)-329(trw)28(oga)]TJ 0 -13.549 Td[(zaraz)-1(em)-334(op)1(ano)28(wyw)27(a\\252a)-333(nar)1(\\363)-28(d)-333(ca\\252y)83(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-353(stary)-353(K)1(\\252\\241b)-353(zarz\\241dzi\\252,)-353(b)29(yc)27(h)-352(s)-1(p)1(ra)28(wdzi\\242)-353(t\\246)-353(no)28(win\\246,)-352(i)-353(ni)1(e)-353(bacz)-1(\\241c)-353(na)]TJ -27.879 -13.55 Td[(pl)1(uc)27(h)1(\\246)-334(p)-27(c)27(h)1(n\\241\\252)-334(k)28(on)1(no)-333(sw)27(oic)28(h)-333(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-334(.d)1(o)-334(l)1(as)-1(u)-333(n)1(a)-334(zwiady)84(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-290(ic)27(h)-290(wid)1(a\\242)-291(nie)-290(b)28(y\\252o)-291(z)-291(p)-27(o)28(wrotem)-1(,)-290(ni)1(e)-291(b)28(y\\252o)-291(c)28(ha\\252up)29(y)83(,)-290(\\273)-1(eb)28(y)-290(z)-291(ni)1(e)-1(j)-290(ktosik)]TJ -27.879 -13.549 Td[(ni)1(e)-495(wyp)1(atryw)28(a\\252)-494(p)-27(o)-28(d)-494(l)1(as)-495(n)1(a)-494(dr\\363\\273ki,)-493(kt\\363r\\246dy)-493(p)-28(o)-55(jec)27(h)1(ali,)-494(al)1(e)-495(j)1(u\\273)-494(i)-494(mrok)-494(d)1(obr)1(y)]TJ 0 -13.549 Td[(zapad\\252,)-422(a)-423(oni)-422(nie)-423(wr\\363)-27(c)-1(il)1(i)-423(jesz)-1(cz)-1(e,)-423(n)1(a)-423(wie)-1(\\261)-423(za\\261)-424(ca\\252\\241)-423(p)1(a)-1(d)1(\\252a)-423(cic)27(h)1(o\\261)-1(\\242)-423(wz)-1(b)1(urzona)-422(i)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-317(m)-1(o)-27(c)-317(przyt\\252u)1(m)-1(i)1(ana)-317(i)-316(gro\\271na)-316(wie)-1(l)1(c)-1(e,)-317(z\\252o\\261)-1(ci\\241)-317(b)-27(o)28(wie)-1(m,)-316(kiej)-316(te)-317(dym)28(y)-317(gr)1(yz\\241c)-1(e,)]TJ 0 -13.55 Td[(osn)28(u)28(w)28(a\\252)-1(y)-228(du)1(s)-1(z\\246,)-229(b)-27(o)-229(c)28(ho)-28(cia\\273)-229(jes)-1(zcz)-1(e)-229(ni)1(kto)-229(wiar)1(y)-229(p)-27(e)-1(\\252n)1(e)-1(j)-228(n)1(ie)-229(da)28(w)28(a\\252)-1(,)-228(ale)-229(ws)-1(zysc)-1(y)-228(b)28(yl)1(i)]TJ 0 -13.549 Td[(p)-27(e)-1(wni)-362(p)-27(ot)28(wie)-1(r)1(dze)-1(n)1(ia)-363(t)1(e)-1(j)-362(wie\\261)-1(ci)-362(z)-1(\\252o)28(wr\\363\\273)-1(b)1(nej,)-362(wi\\246c)-363(jak)1(i)-363(tak)1(i)-363(j)1(e)-1(n)1(o)-363(k)1(l\\241\\252,)-362(drzwiami)]TJ 0 -13.549 Td[(trzask)55(a\\252)-333(i)-333(s)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(d)1(rog\\246)-334(wygl)1(\\241da\\242,)-333(c)-1(zy)-333(nie)-334(wraca)-56(j)1(\\241...)]TJ 27.879 -13.549 Td[(Koz\\252o)27(w)28(a)-349(z)-1(a\\261)-349(p)-28(o)-27(dj)1(udza\\252a)-349(nar\\363)-27(d,)-349(co)-349(ino)-349(mog\\252a,)-349(biega\\252a)-349(ano)-349(z)-350(p)29(ys)-1(k)1(ie)-1(m)-349(k)56(a)-56(j)]TJ -27.879 -13.549 Td[(jeno)-296(c)27(hcieli)-297(d)1(a\\242)-298(u)1(c)27(h)1(a,)-297(pr)1(z)-1(y)1(t)27(wierd)1(z)-1(a\\252a)-297(zakli)1(na)-56(j)1(\\241c)-297(s)-1(i\\246)-297(na)-296(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-297(\\261)-1(wi\\246to\\261)-1(ci,)-297(j)1(ak)28(o)]TJ 0 -13.55 Td[(na)-358(w\\252as)-1(n)1(e)-359(o)-28(cz)-1(y)-358(spr)1(a)27(wd)1(z)-1(i\\252a,)-358(\\273e)-359(j)1(u\\273)-359(z)-358(dob)1(re)-359(p)-27(\\363\\252)-359(w\\252\\363ki)-358(c)28(h\\252opskiego)-358(b)-28(or)1(u)-358(wyc)-1(i)1(\\246)-1(li)1(,)]TJ 0 -13.549 Td[(p)-27(o)27(w)28(o\\252uj)1(\\241c)-318(s)-1(i\\246)-318(n)1(a)-318(Jagu)1(s)-1(t)28(yn)1(k)28(\\246)-1(,)-317(z)-318(kt\\363r)1(\\241)-318(si\\246)-318(b)28(y\\252a)-317(s)-1(ieln)1(ie)-318(s)-1(to)28(w)28(arzys)-1(zy\\252a)-318(w)-317(os)-1(tatn)1(ic)27(h)]TJ 0 -13.549 Td[(cz)-1(asac)27(h.)-374(Ju)1(\\261)-1(ci,)-374(\\273e)-375(stara)-374(przytak)1(iw)27(a\\252a)-374(ws)-1(zystkiem)27(u)1(,)-374(rada)-374(b)-27(\\246)-1(d)1(\\241c)-375(wie)-1(l)1(c)-1(e)-374(m)-1(\\246to)28(w)-1(i)1(,)]TJ 0 -13.549 Td[(a)-468(n)1(az)-1(b)1(ie)-1(r)1(a)27(wsz)-1(y)-467(przy)-468(t)28(ym)-468(n)1(o)28(w)-1(i)1(nk)28(\\363)28(w)-468(r\\363\\273n)28(yc)27(h)-467(p)-27(o)-468(c)27(h)1(a)-1(\\252u)1(pac)28(h)-468(p)-27(os)-1(z\\252a)-468(z)-468(nimi)-468(d)1(o)]TJ 0 -13.549 Td[(Boryn)1(\\363)27(w.)]TJ 27.879 -13.55 Td[(W\\252a\\261nie)-299(b)28(yl)1(i)-299(tam)-299(c)-1(o)-299(in)1(o)-299(z)-1(a\\261wie)-1(cili)-298(lam)-1(p)1(k)28(\\246)-300(w)-299(izbi)1(e)-300(cz)-1(elad)1(nej,)-299(J\\363zk)56(a)-299(z)-300(Wi)1(t-)]TJ -27.879 -13.549 Td[(kiem)-460(ob)1(ierali)-459(ziem)-1(n)1(iaki,)-459(a)-459(Jagu)1(\\261)-460(kr)1(z)-1(\\241ta\\252a)-459(si\\246)-460(k)1(ie)-1(l)1(e)-460(wie)-1(czoro)28(w)-1(y)1(c)27(h)-459(ob)1(rz\\241dk)28(\\363)28(w,)]TJ 0 -13.549 Td[(stary)-339(za\\261)-340(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-339(niec)-1(o)-339(p)-27(\\363\\271niej,)-339(Jagu)1(s)-1(t)28(y)1(nk)56(a)-339(j\\246\\252a)-340(m)28(u)-339(wsz)-1(ystk)28(o)-339(op)-27(o)27(wiad)1(a\\242)-340(p)1(il-)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-333(a)-333(z)-334(dob)1(r\\241)-333(pr)1(z)-1(yk)1(\\252)-1(ad)1(k)56(\\241.)]TJ 27.879 -13.549 Td[(Nie)-334(ozw)28(a\\252)-334(si\\246)-334(n)1(a)-334(to,)-333(a)-333(jeno)-333(do)-333(Jagn)28(y)-333(r)1(z)-1(ek\\252:)]TJ 0 -13.55 Td[({)-442(W)84(e\\271)-443(\\252op)1(at\\246)-442(i)-441(bie\\273)-1(yj)-441(p)-27(om\\363)-28(c)-442(Pi)1(e)-1(trk)28(o)28(wi,)-441(trza)-442(w)28(o)-28(d\\246)-442(spu)1(\\261)-1(ci\\242)-442(ze)-442(s)-1(ad)1(u,)-441(b)-28(o)]TJ -27.879 -13.549 Td[(mo\\273)-1(e)-334(wle\\271\\242)-334(do)-333(k)28(op)-28(c\\363)28(w.)-334(Ru)1(s)-1(za)-56(j)1(\\273)-1(e)-333(s)-1(i\\246)-333(pr\\246dze)-1(j)1(,)-333(kiej)-333(m)-1(\\363)28(wi\\246!)-333({)-334(k)1(rz)-1(y)1(kn\\241\\252.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-327(c)-1(osik)-327(zam)-1(amrot)1(a\\252)-1(a)-327(n)1(a)-327(sprze)-1(ciw,)-327(ale)-327(tak)-327(n)1(a)-327(ni)1(\\241)-327(s)-1(r)1(ogo)-327(g\\246)-1(b)-27(\\246)-328(wyw)28(ar\\252,)]TJ -27.879 -13.549 Td[(\\273e)-332(w)-331(dyr)1(dy)-331(p)-27(obieg\\252a,)-331(on)-331(za\\261)-332(sam)-332(r)1(\\363)27(wn)1(ie)-1(\\273)-331(p)-27(os)-1(ze)-1(d)1(\\252)-332(w)-331(p)-27(o)-28(dw)28(\\363rze)-332(n)1(agl\\241da\\242,)-331(\\273e)-332(raz)]TJ 0 -13.549 Td[(p)-27(o)-311(raz)-312(r)1(oz)-1(l)1(e)-1(ga\\252)-311(s)-1(i)1(\\246)-312(j)1(e)-1(go)-311(gn)1(ie)-1(wn)28(y)-311(g\\252os)-311(w)-311(s)-1(ta)-55(jn)1(i,)-311(to)-311(w)-311(ob)-28(or)1(z)-1(e,)-311(to)-311(p)1(rz)-1(y)-310(k)28(op)-28(cac)27(h)1(,)-311(\\273)-1(e)]TJ 0 -13.549 Td[(a\\273)-334(w)-333(c)27(ha\\252u)1(pie)-333(b)28(y\\252o)-333(s)-1(\\252yc)28(ha\\242.)]TJ 27.879 -13.55 Td[({)-422(Ci\\246giem)-422(to)-422(tak)1(i)-422(sprzec)-1(iwy?)-422({)-421(s)-1(p)29(yta\\252a)-422(stara)-422(zbi)1(e)-1(r)1(a)-56(j\\241c)-422(si\\246)-422(d)1(o)-422(z)-1(n)1(iec)-1(enia)]TJ -27.879 -13.549 Td[(ogni)1(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(ci\\246gie)-1(m)-333({)-334(o)-27(dpar)1(\\252a)-334(J\\363zk)56(a,)-333(trw)28(o\\273)-1(n)1(ie)-334(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)-1(.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-332(i)-332(tak)-331(b)28(y\\252o,)-331(b)-28(o)-332(an)1(o)-332(o)-28(d)-331(dn)1(ia)-332(p)-27(ogo)-28(d)1(z)-1(enia)-331(s)-1(i\\246)-332(z)-332(\\273)-1(on)1(\\241,)-332(n)1(a)-332(c)-1(o)-331(tak)-332(r)1(yc)27(h)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-337(zgo)-28(dzi\\252,)-336(a\\273)-337(si\\246)-337(tem)27(u)-336(d)1(z)-1(i)1(w)27(o)28(w)28(ano,)-336(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\252)-337(si\\246)-336(do)-336(niep)-27(oz)-1(n)1(ania.)-336(Za)28(w\\273)-1(d)1(y)-336(b)28(y\\252)]TJ 0 -13.55 Td[(kw)28(ard)1(y)-413(i)-412(n)1(ie)-1(\\252acno)-412(ust\\246)-1(p)1(liwy)84(,)-413(al)1(e)-413(te)-1(r)1(az)-413(to)-412(ju\\273)-412(s)-1(i\\246)-412(z)-1(go\\252a)-412(na)-412(k)55(amie\\253)-412(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\252.)]TJ 0 -13.549 Td[(Jagn)1(\\246)-422(do)-421(d)1(om)27(u)-420(przyj)1(\\241\\252)-1(,)-420(nicz)-1(ego)-421(jej)-421(n)1(ie)-422(wyma)28(wia\\252,)-421(ale)-422(mia\\252)-421(j)1(\\241)-422(t)1(e)-1(raz)-421(z)-1(go\\252a)-421(za)]TJ\nET\nendstream\nendobj\n1078 0 obj <<\n/Type /Page\n/Contents 1079 0 R\n/Resources 1077 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1077 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1082 0 obj <<\n/Length 10775     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(336)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dziewk)28(\\246)-1(,)-417(i)-418(tak)-417(j\\241)-417(te)-1(\\273)-418(u)28(w)28(a\\273a\\252)-418(i)-418(h)1(onor)1(o)27(w)28(a\\252.)-418(Nie)-418(p)-27(omog\\252y)-418(j)1(e)-1(j)-417(pr)1(z)-1(ymil)1(ania)-417(s)-1(i\\246)-418(n)1(i)]TJ 0 -13.549 Td[(ur)1(o)-28(da,)-303(ni)-304(n)1(a)28(w)27(et)-304(z)-1(\\252o\\261\\242)-1(,)-303(ni)-304(te)-304(rze)-1(k)28(ome)-304(d\\241sy)-304(i)-304(gni)1(e)-1(wy)84(,)-304(kt\\363ry)1(m)-1(i)-303(to)-304(k)28(obiet)28(y)-304(c)27(h)1(\\252op)-28(\\363)28(w)]TJ 0 -13.549 Td[(w)28(o)-56(ju)1(j\\241.)-382(Ca\\252kiem)-383(n)1(a)-383(t)1(o)-383(n)1(ie)-383(zw)27(a\\273a\\252,)-382(jakb)29(y)-382(m)27(u)-382(ob)-27(c)-1(\\241)-382(b)28(y)1(\\252)-1(a,)-382(a)-382(n)1(ie)-383(\\273on\\241)-382(\\261)-1(lu)1(bn)1(\\241,)-382(\\273)-1(e)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-437(j)1(u\\273)-437(ni)1(e)-438(b)1(ac)-1(zy\\252,)-437(co)-437(ona)-437(wyr)1(abia,)-437(c)28(ho)-28(\\242)-437(dob)1(rze)-438(p)-27(ew)-1(n)1(ikiem)-437(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-437(o)-437(j)1(e)-1(j)]TJ 0 -13.549 Td[(sc)27(ho)-27(dze)-1(n)1(iac)27(h)-378(s)-1(i)1(\\246)-380(z)-379(An)28(tk)1(ie)-1(m.)-378(Nie)-379(piln)1(o)28(w)27(a\\252)-379(j)1(e)-1(j)-378(na)28(w)28(e)-1(t)-378(i)-379(jak)1(b)28(y)-379(ca\\252kiem)-379(nie)-379(sta\\252)-379(o)]TJ 0 -13.55 Td[(ni)1(\\241.)-252(Jak)28(o\\261)-251(w)-252(par)1(\\246)-252(dni)-251(p)-27(o)-252(zgo)-28(dzie)-252(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-251(do)-252(miasta)-252(i)-251(a\\273)-252(d)1(rugi)1(e)-1(go)-251(dn)1(ia)-252(p)-27(o)28(w)-1(r)1(\\363)-28(ci\\252;)]TJ 0 -13.549 Td[(p)-27(o)27(wiad)1(ali)-340(s)-1(ob)1(ie)-341(w)27(e)-341(wsi)-341(n)1(a)-341(u)1(c)27(ho,)-340(\\273e)-342(u)-340(r)1(e)-1(j)1(e)-1(n)28(ta)-340(jak)1(ie)-1(\\261)-341(zapisy)-340(robi)1(\\252)-1(,)-340(a)-340(je)-1(n)1(s)-1(i)-340(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(eb\\241k)1(iw)27(al)1(i)-430(z)-430(c)-1(i)1(c)27(ha,)-429(\\273)-1(e)-430(p)-27(ew)-1(n)1(ie)-430(z)-1(ap)1(is)-430(Jagusi)-430(o)-27(debra\\252.)-429(Ju\\261c)-1(i)1(,)-430(\\273e)-430(nik)1(to)-430(pr)1(a)27(wd)1(y)]TJ 0 -13.549 Td[(ni)1(e)-463(wie)-1(d)1(z)-1(i)1(a\\252,)-463(k)1(romie)-463(Han)1(ki,)-462(kt\\363r)1(a)-463(w)-462(takic)28(h)-462(\\252as)-1(k)56(ac)27(h)-462(u)-462(o)-55(jca)-462(te)-1(r)1(az)-463(b)28(y\\252a,)-462(\\273e)-463(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkim)-361(si\\246)-361(p)1(rze)-1(d)-360(ni)1(\\241)-361(zwie)-1(r)1(z)-1(a\\252)-360(i)-361(r)1(adzi\\252,)-361(al)1(e)-361(ona)-360(i)-361(tej)-360(par)1(y)-361(z)-360(g\\246)-1(b)28(y)-360(ni)1(e)-361(pu)1(\\261)-1(ci\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-278(niki)1(m)-1(,)-278(c)-1(o)-278(dni)1(a)-279(z)-1(agl)1(\\241da\\252a)-279(d)1(o)-279(s)-1(t)1(a)-1(r)1(e)-1(go,)-278(a)-279(dziec)-1(i)-278(to)-279(j)1(u\\273)-279(pr)1(a)27(wie)-279(n)1(ie)-279(w)-1(y)1(c)27(ho)-27(dzi\\252y)]TJ 0 -13.55 Td[(z)-334(c)28(ha\\252up)29(y)83(,)-333(\\273e)-334(nieraz)-333(i)-334(syp)1(ia\\252y)-333(raz)-1(em)-334(z)-333(dziadki)1(e)-1(m,)-333(tak)-333(je)-334(b)-27(o)28(wie)-1(m)-333(m)-1(i)1(\\252)-1(o)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-396(za\\261)-396(jakb)28(y)-395(p)-27(oz)-1(d)1(ro)28(wia\\252)-396(o)-28(d)-395(tej)-395(p)-28(or)1(y)83(,)-395(c)27(ho)-27(dzi\\252)-396(p)-27(o)-396(d)1(a)27(wn)1(e)-1(m)28(u)-396(p)1(rosto)-396(i)]TJ -27.879 -13.549 Td[(har)1(do)-457(n)1(a)-457(\\261)-1(wiat)-456(p)-28(ogl)1(\\241da\\252,)-457(j)1(e)-1(n)1(o)-457(s)-1(i)1(\\246)-458(tak)-456(oz)-1(e\\271)-1(l)1(i\\252)-457(w)-457(s)-1(ob)1(ie)-1(,)-456(\\273)-1(e)-457(o)-457(b)-27(e)-1(l)1(e)-458(co)-457(gni)1(e)-1(w)28(e)-1(m)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252)-291(i)-290(c)-1(i\\246\\273ki)-290(b)28(y\\252)-291(l)1(a)-291(ws)-1(zystkic)28(h,)-290(prosto)-290(nie)-291(d)1(o)-291(wytr)1(z)-1(ymani)1(a,)-291(b)-27(o)-291(n)1(a)-291(czym)-291(s)-1(w)28(o)-56(j)1(\\241)]TJ 0 -13.549 Td[(r\\246k)28(\\246)-332(p)-27(o\\252o\\273)-1(y\\252,)-331(to)-331(ju)1(\\261)-1(ci,)-331(\\273)-1(e)-332(d)1(o)-332(ziem)-1(i)-331(p)1(rzygi\\241\\242)-332(si\\246)-332(m)27(u)1(s)-1(i)1(a\\252o)-332(i)-331(tak)-331(b)28(y\\242,)-331(jak)28(o)-331(c)27(hcia\\252,)-331(a)]TJ 0 -13.55 Td[(ni)1(e)-1(,)-333(to)-333(for)1(a)-334(ze)-334(d)1(w)27(ora.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-332(kr)1(z)-1(ywd)1(y)-332(ni)1(e)-333(cz)-1(yn)1(i\\252)-332(ni)1(k)28(om)27(u)1(,)-332(ale)-332(te)-1(\\273)-332(i)-332(dob)1(ro\\261c)-1(i)-331(s)-1(p)-27(o\\252e)-1(cz)-1(n)1(ie)-332(nie)-332(p)-28(osie-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(,)-321(nie,)-322(d)1(obrze)-322(to)-322(c)-1(zu\\252y)-322(s\\241s)-1(i)1(ady)84(.)-322(Rz)-1(\\241d)1(y)-322(wz)-1(i)1(\\241\\252)-322(w)-323(sw)27(o)-55(je)-322(r\\246c)-1(e)-322(i)-322(n)1(ie)-322(p)-28(op)1(usz)-1(cz)-1(a\\252)-322(n)1(i)]TJ 0 -13.549 Td[(na)-387(pacierz,)-388(k)28(omory)-387(pi)1(lnie)-388(strzeg\\252)-1(,)-387(a)-387(kies)-1(ze)-1(n)1(i)-388(j)1(e)-1(sz)-1(cze)-388(barze)-1(j)1(,)-387(s)-1(am)-388(an)1(o)-388(ws)-1(zystk)28(o)]TJ 0 -13.549 Td[(wyda)28(w)28(a\\252)-401(i)-401(srogo)-401(str\\363\\273o)27(w)28(a\\252,)-401(b)28(yc)28(h)-401(d)1(obr)1(a)-401(nie)-401(marno)28(w)28(ali,)-401(l)1(a)-401(w)-1(szys)-1(tk)1(ic)27(h)-400(w)-401(dom)27(u)]TJ 0 -13.55 Td[(b)28(y\\252)-286(t)28(w)27(ar)1(dy)84(,)-287(al)1(e)-287(ju\\273)-286(s)-1(zc)-1(ze)-1(g\\363l)1(niej)-286(dla)-286(Jagusi,)-286(b)-27(o)-28(\\242)-287(nigd)1(y)-286(te)-1(go)-286(u\\273ycz)-1(li)1(w)27(ego)-287(s\\252o)27(w)28(a)-287(j)1(e)-1(j)]TJ 0 -13.549 Td[(ni)1(e)-304(d)1(a\\252)-1(,)-302(a)-304(t)1(ak)-303(nap)-27(\\246)-1(d)1(z)-1(a\\252)-303(d)1(o)-304(r)1(ob)-28(ot)28(y)-303(k)1(ie)-1(j)-302(te)-1(go)-303(zw)27(a\\252k)28(on)1(ionego)-303(k)28(onia)-303(i)-303(w)-303(n)1(ic)-1(zym)-303(nie)]TJ 0 -13.549 Td[(fol)1(go)27(w)28(a\\252,)-255(\\273)-1(e)-256(i)-255(ni)1(e)-256(b)28(y\\252o)-256(d)1(ni)1(a)-256(b)-27(e)-1(z)-256(sw)27(ar)1(\\363)28(w)-1(,)-255(a)-255(c)-1(z\\246)-1(sto)-256(g\\246sto)-256(i)-255(rze)-1(mie\\253)-255(b)28(yw)28(a\\252)-256(w)-256(r)1(ob)-28(o)-27(c)-1(ie)]TJ 0 -13.549 Td[(alb)-27(o)-333(i)-334(co)-333(t)28(w)27(ard)1(z)-1(i)1(e)-1(j)1(s)-1(ze)-1(,)-333(b)-27(o)-334(i)-333(w)-333(Jagn\\246)-333(w)-1(l)1(az)-1(\\252)-333(jaki)1(\\261)-334(z)-1(\\252y)-333(i)-333(c)-1(i)1(s)-1(k)56(a\\252)-333(j\\241)-333(na)-333(s)-1(p)1(rze)-1(ciw.)]TJ 27.879 -13.549 Td[(Ulega\\242)-369(b)-27(o)27(wiem)-369(u)1(leg)-1(a\\252a,)-368(n)1(ie)-1(w)28(oli\\252)-368(j\\241,)-368(to)-368(i)-368(c)-1(\\363\\273)-368(b)28(y\\252o)-368(p)-28(o)-27(c)-1(z\\241\\242)-1(,)-368(m\\246)-1(\\273o)28(w)-1(y)-368(c)28(hleb,)]TJ -27.879 -13.55 Td[(m\\246)-1(\\273o)28(w)27(a)-342(w)27(ol)1(a,)-342(ale)-343(na)-342(s\\252o)27(w)28(o)-342(przykr)1(e)-343(mia\\252a)-343(sw)28(oic)27(h)-342(d)1(z)-1(iesi\\246)-1(\\242,)-342(na)-342(kr)1(z)-1(yk)-342(za\\261)-343(k)56(a\\273)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a)-455(taki)-455(w)-1(r)1(z)-1(ask,)-456(t)1(akie)-456(piek\\252o)-456(wyp)1(ra)28(wia\\252a,)-456(\\273e)-456(na)-456(ca\\252\\241)-456(wie\\261)-457(si\\246)-456(roznosi-)]TJ 0 -13.549 Td[(\\252o.)-372(Piek\\252o)-373(te\\273)-373(wrz)-1(a\\252o)-372(w)-373(c)27(h)1(a\\252upi)1(e)-373(c)-1(i\\246giem)-1(,)-372(jak)1(b)28(y)-373(sobi)1(e)-373(ob)-28(o)-55(je)-373(w)-373(n)1(im)-373(up)-27(o)-28(d)1(obali)1(,)]TJ 0 -13.549 Td[(zm)-1(aga)-55(j\\241c)-390(si\\246)-390(w)28(e)-390(z\\252o\\261)-1(ci)-389(c)-1(a\\252\\241)-389(mo)-28(c)-1(\\241)-389(d)1(o)-390(t)1(e)-1(la,)-389(k)1(to)-390(k)28(ogo)-389(p)1(rz)-1(epr)1(z)-1(e,)-389(a)-389(\\273)-1(ad)1(ne)-390(u)1(s)-1(t\\241)-27(pi\\242)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(e)-333(nie)-333(c)27(hcia\\252o.)]TJ 27.879 -13.55 Td[(Pr)1(\\363\\273)-1(n)1(o)-324(Domini)1(k)28(o)27(w)28(a)-324(c)27(h)1(c)-1(i)1(a\\252a)-324(\\252ago)-28(dzi\\242)-324(i)-324(zgo)-28(d\\246)-324(spr)1(z)-1(\\241c)-324(mi\\246)-1(d)1(z)-1(y)-323(nimi,)-323(nie)-324(p)-27(o-)]TJ -27.879 -13.549 Td[(redzi\\252a)-346(p)1(rze)-1(m\\363)-28(c)-346(za)27(wzi\\246)-1(t)1(o\\261)-1(ci)-346(n)1(i)-346(\\273al\\363)28(w,)-346(n)1(i)-346(k)1(rz)-1(y)1(w)-1(d)1(,)-346(j)1(akie)-346(im)-346(w)-345(s)-1(ercac)27(h)-345(nar)1(as)-1(ta\\252y)84(.)]TJ 0 -13.549 Td[(Boryn)1(o)27(w)28(e)-322(m)-1(i)1(\\252)-1(o)28(w)28(anie)-322(p)1(rz)-1(es)-1(z\\252o)-322(jak)28(o)-321(ta)-322(\\252o\\253sk)55(a)-321(z)-1(wies)-1(n)1(a,)-322(o)-322(kt\\363r)1(e)-1(j)-321(ni)1(kto)-322(ni)1(e)-323(p)1(am)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(ta,)-307(a)-308(osta\\252a)-308(si\\246)-308(jeno)-307(\\273)-1(yw)28(a)-308(p)1(am)-1(i)1(\\246)-1(\\242)-308(pr)1(z)-1(eni)1(e)-1(wierst)27(w)28(a)-308(j)1(e)-1(j)-307(i)-307(krw)28(a)28(w)-1(i)1(\\241c)-1(y)-307(ws)-1(t)28(yd)1(,)-308(i)-307(lu)1(ta,)]TJ 0 -13.549 Td[(ni)1(e)-1(p)1(rze)-1(b)1(\\252)-1(agan)1(a)-284(z\\252o\\261)-1(\\242)-284({)-283(w)-284(Jagn)1(ie)-284(si\\246)-284(te\\273)-284(du)1(s)-1(za)-284(znacz)-1(n)1(ie)-284(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\252a,)-283(\\271)-1(le)-284(j)1(e)-1(j)-283(b)29(y\\252o,)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o)-325(i)-325(tak)-324(przykr)1(o,)-325(\\273e)-326(i)-324(nie)-325(wyp)-28(o)28(wiedzie\\242)-1(:)-325(win)-324(s)-1(w)28(oic)28(h)-325(j)1(e)-1(sz)-1(cz)-1(e)-325(ni)1(e)-326(miark)28(o)28(w)28(a\\252a,)]TJ 0 -13.55 Td[(a)-357(k)55(ar)1(y)-358(cz)-1(u)1(\\252a)-358(b)-27(ole\\261)-1(n)1(iej)-358(n)1(i\\271li)-357(dru)1(gie)-358(k)28(ob)1(ie)-1(t)28(y)84(,)-357(\\273)-1(e)-358(to)-357(i)-357(s)-1(erce)-358(m)-1(i)1(a\\252)-1(a)-357(bar)1(z)-1(ej)-357(c)-1(zuj)1(\\241c)-1(e,)-357(i)]TJ 0 -13.549 Td[(c)27(h)1(o)28(w)27(an)1(a)-334(b)28(y)1(\\252a)-334(p)1(ie)-1(\\261c)-1(i)1(w)-1(i)1(e)-1(j)1(,)-333(i)-334(j)1(u\\273)-333(w)-334(sobie)-334(b)29(y\\252a)-334(zgo\\252a)-333(de)-1(l)1(ik)56(atniejsza)-334(o)-28(d)-332(insz)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(M\\246c)-1(zy\\252a)-333(s)-1(i)1(\\246)-334(te)-1(\\273,)-333(m\\363)-56(j)-333(Jez)-1(u)1(s)-1(,)-333(m\\246)-1(cz)-1(y)1(\\252a!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-485(\\273)-1(e)-486(r)1(obi\\252a)-485(s)-1(tar)1(e)-1(m)28(u)-485(w)-1(szys)-1(tk)28(o)-485(na)-485(z)-1(\\252o\\261\\242)-1(,)-485(n)1(ie)-486(ust\\246p)-28(o)28(w)28(a\\252a)-486(b)-27(e)-1(z)-486(m)28(usu,)]TJ -27.879 -13.549 Td[(br)1(oni\\252a)-399(s)-1(i\\246,)-400(j)1(ak)-400(mog\\252a,)-400(al)1(e)-401(t)1(o)-400(jar)1(z)-1(mo)-400(i)-399(tak)-400(coraz)-400(ci\\246)-1(\\273e)-1(j)-399(i)-399(b)-28(ol)1(e)-1(\\261niej.)-399(pr)1(z)-1(ygi)1(na\\252o)]TJ 0 -13.55 Td[(jej)-475(k)56(ark,)-475(a)-476(p)-27(oratu)1(nku)-475(n)1(ie)-476(b)28(y\\252o)-475(z)-1(n)1(ik)56(\\241d:)-475(ile\\273)-476(to)-476(r)1(az)-1(y)-475(c)27(h)1(c)-1(ia\\252a)-475(w)-1(r)1(\\363)-28(ci\\242)-476(do)-475(m)-1(atk)1(i)]TJ 0 -13.549 Td[({)-404(stara)-404(si\\246)-404(ni)1(e)-405(go)-27(dzi\\252a,)-404(p)-27(ogra\\273a)-56(j)1(\\241c)-405(j)1(e)-1(sz)-1(cze)-1(,)-403(\\273)-1(e)-404(pr)1(z)-1(ez)-404(m)-1(o)-28(c)-404(o)-28(d)1(e)-1(\\261le)-404(j\\241)-403(m)-1(\\246\\273)-1(o)28(wi)-404(n)1(a)]TJ\nET\nendstream\nendobj\n1081 0 obj <<\n/Type /Page\n/Contents 1082 0 R\n/Resources 1080 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1067 0 R\n>> endobj\n1080 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1085 0 obj <<\n/Length 10375     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(337)]TJ -358.232 -35.866 Td[(p)-27(os)-1(tr)1(onku)1(...)-256(T)83(o)-256(i)-257(c\\363\\273)-257(mia\\252a)-257(p)-27(o)-28(cz)-1(\\241\\242)-257(ze)-257(s)-1(ob)1(\\241?)-257(co?)-257(Kiej)-256(ni)1(e)-257(p)-28(or)1(e)-1(d)1(z)-1(i\\252a)-256(\\273)-1(y)1(\\242)-257(jak)-256(dr)1(ugie)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)84(,)-326(c)-1(o)-326(to)-326(i)-327(p)1(arob)1(k)28(\\363)27(w)-326(s)-1(e)-326(nie)-326(\\273)-1(a\\252uj)1(\\241,)-326(i)-326(ucie)-1(c)28(h)28(y)-326(\\273)-1(ad)1(nej,)-326(i)-326(rad)1(e)-327(znosz)-1(\\241)-326(domo)28(w)27(e)]TJ 0 -13.549 Td[(pi)1(e)-1(k\\252o,)-404(c)-1(o)-405(d)1(nia)-404(s)-1(i\\246)-405(b)1(ija)-55(j\\241)-405(z)-405(c)27(h)1(\\252opami)-405(i)-405(co)-405(d)1(nia)-405(r)1(az)-1(em)-405(s)-1(p)1(a\\242)-406(c)28(ho)-28(d)1(z)-1(\\241)-404(p)-28(ogo)-28(d)1(z)-1(eni)1(.)]TJ 0 -13.549 Td[(Nie,)-239(n)1(ie)-239(p)-28(or)1(e)-1(d)1(z)-1(i\\252a)-239(tego,)-239(mierzi\\252o)-239(si\\246)-239(jej)-239(\\273ycie)-239(c)-1(oraz)-239(b)1(arz)-1(ej)-238(i)-239(jak)56(a\\261)-239(ni)1(e)-1(op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(a)]TJ 0 -13.549 Td[(t\\246s)-1(kn)1(o\\261)-1(\\242)-333(roz)-1(r)1(as)-1(ta\\252a)-333(si\\246)-334(w)-334(d)1(usz)-1(y)84(,)-333(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(to)-333(z)-1(a)-333(cz)-1(ym?)]TJ 27.879 -13.55 Td[(Za)-419(z)-1(\\252o)-419(p\\252ac)-1(i)1(\\252a)-420(z\\252e)-1(m,)-419(pr)1(a)27(wda,)-419(al)1(e)-420(w)-420(sobie)-419(b)28(y\\252a)-419(z)-1(es)-1(tr)1(ac)27(han)1(a)-420(ci\\246giem)-1(,)-419(p)-27(o-)]TJ -27.879 -13.549 Td[(kr)1(z)-1(ywd)1(z)-1(ona)-394(w)-1(i)1(e)-1(lce)-395(i)-395(tak)-395(r)1(oz)-1(\\273alon)1(a,)-395(\\273)-1(e)-395(n)1(ie)-1(r)1(az)-396(p)1(rze)-1(p)1(\\252ak)55(a\\252a)-395(ca\\252e)-396(d)1(\\252ugie)-395(n)1(o)-28(c)-1(e,)-395(a\\273)]TJ 0 -13.549 Td[(p)-27(o)-28(du)1(s)-1(zk)56(a)-337(b)28(y\\252a)-337(m)-1(ok)1(ra,)-337(a)-337(ni)1(e)-1(raz)-337(te)-338(d)1(ni)1(e)-338(sw)27(ar\\363)28(w,)-337(k\\252\\363tn)1(i)-337(tak)-337(si\\246)-338(j)1(e)-1(j)-336(przykr)1(z)-1(y\\252y)84(,)-337(i\\273)]TJ 0 -13.549 Td[(b)28(y\\252a)-333(goto)28(w)27(\\241)-333(uciek)56(a\\242)-334(c)27(h)1(o)-28(\\242)-1(b)29(y)-334(w)-333(c)-1(a\\252y)-333(\\261wiat!)]TJ 27.879 -13.549 Td[(Ale)-334(gd)1(z)-1(i)1(e)-334(to)-333(p)-28(\\363)-55(jd)1(z)-1(ie,)-333(dok)56(\\241d?)]TJ 0 -13.549 Td[(Do)-28(ok)28(o\\252a)-237(sta\\252)-238(\\261wiat)-237(ot)28(w)27(ar)1(t)28(y)83(,)-237(al)1(e)-238(tak)-237(strasz)-1(n)28(y)84(,)-237(tak)-237(n)1(ieprze)-1(n)1(ikn)1(ion)28(y)84(,)-237(tak)-237(ob)-27(c)-1(y)]TJ -27.879 -13.55 Td[(i)-350(g\\252)-1(u)1(c)27(h)28(y)84(,)-350(\\273)-1(e)-351(zam)-1(i)1(e)-1(ra\\252a)-350(z)-351(b)-28(o)-55(ja\\271ni)-350(jak)28(o)-350(te)-1(n)-350(p)1(tas)-1(ze)-1(k,)-350(ki)1(e)-1(j)-350(go)-351(c)28(h\\252opak)1(i)-351(p)1(rzyc)27(h)28(wyc\\241)]TJ 0 -13.549 Td[(i)-333(p)-27(o)-28(d)-333(garn)1(c)-1(ze)-1(k)-333(ws)-1(ad)1(z)-1(\\241.)]TJ 27.879 -13.549 Td[(T)83(o)-454(i)-453(nie)-454(d)1(z)-1(iw)28(ota,)-453(\\273)-1(e)-454(z)-454(te)-1(go)-453(w)-1(sz)-1(y)1(s)-1(tki)1(e)-1(go)-454(gar)1(n\\246\\252a)-454(s)-1(i)1(\\246)-455(d)1(o)-454(An)28(tk)56(a,)-453(c)27(ho)-27(\\242)-455(go)]TJ -27.879 -13.549 Td[(mi\\252o)28(w)27(a\\252a)-408(j)1(akb)28(y)-407(jeno)-407(z)-1(e)-408(strac)28(h)28(u)-407(i)-408(r)1(oz)-1(p)1(ac)-1(zy)83(,)-407(b)-27(o)-408(wtedy)84(,)-408(p)-27(o)-408(on)1(e)-1(j)-407(n)1(o)-28(c)-1(y)-407(strasz)-1(n)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(p)-27(o)-353(u)1(c)-1(i)1(e)-1(cz)-1(ce)-353(do)-352(matki)-352(c)-1(osik)-352(p)-27(\\246)-1(k)1(\\252)-1(o)-352(w)-353(n)1(iej)-352(i)-352(p)-28(omar\\252o,)-352(\\273e)-353(s)-1(i)1(\\246)-353(ju)1(\\273)-353(ni)1(e)-353(wyryw)28(a\\252a)-353(d)1(o)]TJ 0 -13.55 Td[(ni)1(e)-1(go)-341(ca\\252\\241)-341(du)1(s)-1(z\\241)-341(jak)-340(prz\\363)-28(d)1(z)-1(i,)-340(nie)-341(b)1(ie)-1(ga\\252a)-341(n)1(a)-341(k)56(a\\273)-1(d)1(e)-342(za)28(w)27(o\\252ani)1(e)-342(z)-341(bi)1(j\\241cym)-341(s)-1(erce)-1(m)]TJ 0 -13.549 Td[(a)-389(rado\\261c)-1(i)1(\\241,)-389(a)-390(j)1(e)-1(n)1(o)-390(sz)-1(\\252a)-389(jak)1(b)28(y)-389(z)-390(m)27(u)1(s)-1(u)-389(n)1(iew)27(oleni)1(a,)-390(a)-389(i)-389(b)-27(e)-1(z)-390(t)1(o)-1(,)-389(\\273e)-390(w)-389(c)27(ha\\252u)1(pie)-389(\\271)-1(le)]TJ 0 -13.549 Td[(b)28(y\\252o)-431(i)-430(n)28(u)1(dno,)-430(a)-431(i)-431(b)-27(ez)-432(to,)-430(\\273)-1(e)-431(n)1(a)-431(z)-1(\\252o\\261\\242)-431(s)-1(tar)1(e)-1(m)28(u,)-431(a)-430(i)-431(b)-27(e)-1(z)-431(to,)-431(i)1(\\273)-432(si\\246)-431(jej)-430(w)-1(i)1(dzia\\252o,)]TJ 0 -13.549 Td[(\\273e)-490(wr\\363)-28(ci)-489(to)-490(d)1(a)28(w)-1(n)1(e)-1(,)-489(wielki)1(e)-490(mi\\252o)27(w)28(ani)1(e)-490({)-489(ale)-490(n)1(a)-490(d)1(nie)-489(g\\252\\246)-1(b)-27(okim)-489(s)-1(erca)-490(k)1(rz)-1(ewi\\252)]TJ 0 -13.549 Td[(si\\246)-382(zjad)1(liwy)-381(kiej)-381(tr)1(utk)56(a)-381(\\273al)-381(do)-381(ni)1(e)-1(go,)-381(i)1(\\273)-382(to)-381(ws)-1(zystk)28(o,)-381(co)-382(j)1(\\241)-381(s)-1(p)-27(ot)28(yk)56(a,)-381(te)-381(s)-1(m)28(utki)1(,)]TJ 0 -13.55 Td[(za)27(w)28(o)-28(d)1(y)83(,)-359(to)-359(ca\\252)-1(e)-359(c)-1(i)1(\\246)-1(\\273kie)-359(\\273)-1(ycie,)-359(to)-359(prze)-1(z)-359(ni)1(e)-1(go;)-359(i)-359(ten)-359(jesz)-1(cz)-1(e)-359(b)-28(ol)1(e)-1(\\261niejsz)-1(y)84(,)-359(cic)27(h)1(s)-1(zy)]TJ 0 -13.549 Td[(i)-441(nigd)1(y)-441(nie)-441(w)-1(y)1(p)-28(o)28(wiadan)29(y)-442(\\273al,)-441(\\273e)-442(on)-441(ni)1(e)-442(jes)-1(t)-441(t)28(ym,)-441(jakiego)-441(w)-442(sobie)-442(u)1(mi\\252o)27(w)28(a\\252a)]TJ 0 -13.549 Td[({)-403(dziki,)-403(szarpi)1(\\241c)-1(y)-403(\\273al)-403(z)-1(a)28(w)28(o)-28(du)-403(i)-403(r)1(oz)-1(cz)-1(ar)1(o)28(w)27(an)1(ia.)-403(Pr)1(z)-1(ec)-1(iec)27(h)-402(s)-1(i\\246)-403(jej)-403(widzia\\252)-403(ran)1(ie)-1(j)]TJ 0 -13.549 Td[(jak)1(im\\261)-325(i)1(nsz)-1(ym,)-323(takim,)-324(k)1(t\\363ren)-324(d)1(o)-324(n)1(ie)-1(b)1(a)-324(u)1(nosi\\252)-324(mi\\252o)28(w)27(an)1(ie)-1(m,)-323(z)-1(n)1(ie)-1(w)28(ala\\252)-324(d)1(obr)1(o\\261)-1(ci\\241)]TJ 0 -13.549 Td[(i)-372(b)29(y\\252)-372(p)-27(onad)-371(ws)-1(zystk)28(o)-372(na)-371(\\261)-1(wiec)-1(i)1(e)-373(n)1(a)-56(j)1(m)-1(i)1(le)-1(j)1(s)-1(zy)83(,)-371(a)-372(tak)-371(r\\363\\273n)28(y)-372(o)-27(d)-372(d)1(ru)1(gic)27(h)1(,)-372(\\273e)-373(zgo\\252a)]TJ 0 -13.55 Td[(do)-456(ni)1(k)28(ogo)-457(n)1(ie)-1(p)-27(o)-28(d)1(obien)-456(w)28(e)-457(ws)-1(zys)-1(tk)1(im)-457({)-456(a)-457(teraz)-456(w)-1(i)1(dzia\\252)-457(si\\246)-457(j)1(e)-1(j)-456(taki)1(m)-457(sam)27(ym)]TJ 0 -13.549 Td[(jak)-430(i)-431(dr)1(ugie)-431(c)27(h)1(\\252op)28(y)84(,)-431(gorsz)-1(ym)-431(n)1(a)27(w)28(et,)-431(b)-27(o)-431(s)-1(i\\246)-431(go)-431(b)1(arze)-1(j)-430(b)-28(o)-55(ja\\252a)-431(n)1(i\\271)-1(l)1(i)-431(Boryn)28(y)84(,)-431(b)-27(o)]TJ 0 -13.549 Td[(j\\241)-340(s)-1(tr)1(as)-1(zy\\252)-341(p)-27(on)28(ur)1(o\\261)-1(ci\\241)-341(sw)27(o)-55(j\\241)-340(i)-341(cie)-1(r)1(pieni)1(e)-1(m,)-341(a)-340(prze)-1(r)1(a\\273)-1(a\\252)-341(za)28(wz)-1(i\\246to\\261c)-1(i\\241.)-340(B)-1(o)-55(ja\\252a)-341(si\\246)]TJ 0 -13.549 Td[(go,)-331(wyd)1(a)28(w)27(a\\252)-331(si\\246)-331(jej)-331(d)1(z)-1(iki)1(m)-332(i)-330(s)-1(tr)1(as)-1(zn)28(ym)-331(ki)1(e)-1(j)-330(te)-1(n)-330(z)-1(b)-27(\\363)-55(j)-331(z)-331(las\\363)27(w;)-331(j)1(ak\\273e)-1(,)-330(s)-1(am)-331(ksi\\241dz)]TJ 0 -13.549 Td[(wyp)-27(om)-1(n)1(ia\\252)-484(go)-484(w)-485(k)28(o\\261c)-1(i)1(e)-1(le,)-484(wie\\261)-485(ca\\252a)-484(o)-28(dst\\241)-28(p)1(i\\252a,)-484(lud)1(z)-1(i)1(e)-485(p)1(alc)-1(ami)-484(wyt)28(yk)56(ali)-484(j)1(ak)28(o)]TJ 0 -13.55 Td[(tego)-464(na)-55(jgorsze)-1(go;)-463(bi\\252a)-464(o)-27(d)-464(n)1(ie)-1(go)-463(jak)56(a\\261)-464(z)-1(groza)-464(\\261m)-1(i)1(e)-1(r)1(te)-1(ln)1(e)-1(go)-463(grz)-1(ec)27(h)29(u,)-464(\\273e)-464(nieraz)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a)-56(j)1(\\241c)-344(jego)-343(g\\252os)-1(u)1(,)-343(z)-1(amiera\\252a)-343(z)-344(p)1(rze)-1(r)1(a\\273)-1(enia,)-342(b)-28(o)-343(wid)1(z)-1(ia\\252o)-343(si\\246)-344(j)1(e)-1(j)1(,)-343(\\273)-1(e)-343(z)-1(\\252y)-343(j)1(e)-1(st)-343(w)]TJ 0 -13.549 Td[(ni)1(m)-316(i)-314(c)-1(a\\252e)-316(p)1(iek\\252o)-315(do)-28(ok)28(o\\252a;)-314(robi)1(\\252)-1(o)-315(si\\246)-315(jej)-315(wtedy)-315(tak)-314(s)-1(tr)1(a)-1(szno)-315(w)-315(du)1(s)-1(zy)83(,)-314(jak)-315(wtedy)84(,)]TJ 0 -13.549 Td[(gdy)-333(d)1(obr)1(o)-28(dzie)-1(j)-332(nar\\363)-27(d)-333(nap)-27(om)-1(i)1(na)-333(i)-333(m)-1(\\246k)56(am)-1(i)-333(strasz)-1(y!)]TJ 27.879 -13.549 Td[(Ani)-415(j)1(e)-1(j)-415(n)1(a)27(w)28(et)-416(n)1(a)-416(m)28(y\\261)-1(l)-415(p)1(rzys)-1(z\\252o,)-415(\\273)-1(e)-416(i)-415(ona)-415(wino)28(w)28(ata)-416(t)28(y)1(c)27(h)-415(grze)-1(c)28(h\\363)28(w)-416(j)1(e)-1(go,)]TJ -27.879 -13.549 Td[(gdzie)-289(z)-1(a\\261,)-289(j)1(e)-1(\\261li)-288(c)-1(zas)-1(em)-289(rozm)27(y\\261la\\252a,)-289(to)-288(jeno)-289(o)-289(j)1(e)-1(go)-288(o)-28(dmienn)1(o\\261)-1(ci,)-289(n)1(ie)-289(p)-28(or)1(e)-1(d)1(z)-1(i\\252a)-288(tak)]TJ 0 -13.55 Td[(jasno)-417(k)55(al)1(kulo)28(w)28(a\\242)-1(,)-417(ale)-418(c)-1(zu\\252a)-418(j)1(\\241)-418(t)28(ylk)28(o)-418(mo)-28(cno,)-417(\\273)-1(e)-418(b)-28(ezw)27(oln)1(ie)-418(traci\\252a)-418(c)-1(or)1(az)-418(barze)-1(j)]TJ 0 -13.549 Td[(se)-1(rce)-429(do)-428(niego)-429(i)-428(s)-1(zt)28(ywni)1(a\\252)-1(a)-428(m)27(u)-428(ni)1(e)-1(r)1(az)-429(w)-429(ramionac)28(h,)-428(jakb)29(y)-429(p)1(ioru)1(nem)-429(z)-429(nag\\252a)]TJ 0 -13.549 Td[(ra\\273ona,)-462(p)-27(oz)-1(w)28(ala\\252a)-462(s)-1(i)1(\\246)-463(br)1(a\\242)-1(,)-462(b)-27(o)-463(j)1(ak\\273e)-463(opi)1(e)-1(ra\\242)-462(s)-1(i)1(\\246)-463(takiem)27(u)-462(smok)28(o)27(wi?..)1(.)-462(a)-463(p)1(rzy)]TJ 0 -13.549 Td[(t)28(ym)-428(m)-1(\\252o)-28(d)1(a)-428(przec)-1(iec)27(h)-427(b)28(y\\252a,)-428(o)-428(krwie)-428(gor\\241ce)-1(j)1(,)-428(m)-1(o)-27(c)-1(n)1(a,)-428(a)-428(on)-428(dziw)-428(nie)-428(z)-1(d)1(usz)-1(a\\252)-428(w)]TJ 0 -13.549 Td[(u\\261cis)-1(k)56(ac)27(h)1(,)-443(to)-444(mimo)-444(ws)-1(zystk)28(o,)-443(c)-1(o)-443(m)27(y\\261la\\252a,)-443(o)-28(dd)1(a)28(w)27(a\\252a)-444(m)28(u)-443(s)-1(i)1(\\246)-444(r\\363)28(wnie\\273)-444(p)-28(ot)1(\\246)-1(\\273nie)]TJ 0 -13.55 Td[(t)28(ym)-318(rzutem)-319(ziem)-1(i)-317(s)-1(p)1(ragni)1(onej)-318(wiec)-1(znie)-318(cie)-1(p)1(\\252yc)27(h)-317(d\\273d\\273\\363)27(w)-318(i)-318(s\\252o\\253ca,)-318(j)1(e)-1(n)1(o)-318(\\273)-1(e)-318(ju)1(\\273)-319(n)1(i)]TJ 0 -13.549 Td[(razu)-392(d)1(usz)-1(a)-392(j)1(e)-1(j)-391(nie)-392(pad)1(a\\252a)-392(m)27(u)-392(d)1(o)-392(n\\363g)-392(z)-392(onej)-392(u)1(c)-1(iec)27(h)29(y)-392(niep)-27(o)27(w\\261c)-1(i\\241)-27(gliw)28(e)-1(j)1(,)-392(ni)-391(raz)-1(u)]TJ\nET\nendstream\nendobj\n1084 0 obj <<\n/Type /Page\n/Contents 1085 0 R\n/Resources 1083 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1083 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1089 0 obj <<\n/Length 8935      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(338)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(e)-340(om)-1(r)1(ac)-1(za\\252o)-340(jej)-339(c)-1(zucie)-340(takiego)-340(sz)-1(cz)-1(\\246\\261c)-1(ia,)-339(c)-1(o)-339(to)-340(a\\273)-340(d)1(o)-340(pr)1(oga)-340(\\261)-1(mierci)-340(z)-340(lu)1(b)-27(o\\261)-1(ci\\241)]TJ 0 -13.549 Td[(wiedzie)-1(,)-365(ni)-366(r)1(az)-1(u)-365(nie)-366(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252a)-366(si\\246)-367(j)1(u\\273)-366(do)-366(cna,)-365(nie;)-366(m)27(y)1(\\261)-1(la\\252a)-366(wtedy)-366(o)-366(d)1(om)27(u)1(,)-366(o)]TJ 0 -13.549 Td[(rob)-27(otac)27(h)-378(i)-380(o)-379(t)28(ym,)-379(b)28(yc)28(h)-379(s)-1(tar)1(e)-1(m)28(u)-379(c)-1(o)-379(n)1(o)27(w)28(e)-1(go)-379(n)1(a)-380(z\\252o\\261)-1(\\242)-379(z)-1(rob)1(i\\242,)-379(a)-380(cz)-1(ase)-1(m,)-379(ab)28(y)-379(j)1(ak)]TJ 0 -13.549 Td[(na)-55(jp)1(r\\246dze)-1(j)-333(j)1(\\241)-334(p)1(u\\261c)-1(i)1(\\252)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(sobi)1(e)-1(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-433(t)1(e)-1(raz)-433(sn)28(u)1(\\252o)-433(si\\246)-433(jej)-432(to)-433(wsz)-1(y)1(s)-1(tk)28(o)-432(p)-28(o)-432(g\\252o)28(w)-1(i)1(e)-1(,)-432(s)-1(p)1(usz)-1(cz)-1(a\\252a)-432(w)27(o)-27(dy)-432(o)-28(d)]TJ -27.879 -13.55 Td[(k)28(op)-27(c)-1(\\363)28(w)-332(na)-332(p)-27(o)-28(dw)28(\\363rze)-1(,)-332(r)1(obi\\252a)-332(o)-28(d)-331(niec)27(h)1(c)-1(enia,)-332(z)-332(pr)1(z)-1(yk)56(azu)-332(j)1(e)-1(n)1(o,)-332(s)-1(p)-27(ogl\\241da)-55(j\\241c)-332(pil)1(nie)]TJ 0 -13.549 Td[(za)-374(g\\252ose)-1(m)-373(s)-1(tar)1(e)-1(go)-373(i)-373(dosz)-1(u)1(kuj)1(\\241c)-374(si\\246)-374(go)-373(w)-374(p)-27(o)-28(d)1(w)27(\\363rzu,)-373(P)1(ietrek)-373(robi\\252)-373(za)27(wzi\\246c)-1(ie,)-373(\\273)-1(e)]TJ 0 -13.549 Td[(in)1(o)-413(w)27(ar)1(c)-1(za\\252a)-413(gru)1(da)-413(i)-412(b\\252oto)-412(w)-1(y)1(rzucane)-1(,)-412(a)-413(on)1(a)-413(z)-1(a\\261)-413(c)28(h)28(yba)-412(t)28(yla,)-412(b)28(y)-413(j)1(e)-1(n)1(o)-413(s)-1(\\252y)1(c)27(ha\\242)]TJ 0 -13.549 Td[(b)28(y\\252o,)-424(\\273e)-425(robi)1(,)-425(a)-424(s)-1(k)28(or)1(o)-425(stary)-424(p)-27(os)-1(ze)-1(d)1(\\252)-425(d)1(o)-425(dom)28(u,)-424(naci\\241)-28(gn)1(\\246)-1(\\252a)-424(z)-1(ap)1(as)-1(k)28(\\246)-425(n)1(a)-425(g\\252o)28(w)28(\\246)-425(i)]TJ 0 -13.549 Td[(ostro\\273nie)-334(p)1(rze)-1(b)1(ra\\252a)-333(s)-1(i\\246)-333(z)-1(a)-333(pr)1(z)-1(e\\252az)-1(,)-333(p)-27(o)-28(d)-333(P\\252osz)-1(k)28(o)28(w)28(\\241)-334(sto)-28(d)1(o\\252\\246)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-334(tam)-334(An)28(t)1(e)-1(k)-333(b)28(y\\252.)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(cz)-1(ek)56(am)-334(na)-333(ci\\246)-334(z)-334(go)-28(d)1(z)-1(i)1(n\\246)-334({)-333(sz)-1(epn)1(\\241\\252)-334(z)-334(wym\\363)28(wk)55(\\241.)]TJ 0 -13.549 Td[({)-327(Mog\\252e\\261)-328(n)1(ie)-327(c)-1(ze)-1(k)56(a\\242,)-327(kiej)-326(c)-1(i)-327(b)29(y\\252o)-327(gdzie)-327(ind)1(z)-1(iej)-326(p)-28(otr)1(z)-1(a)-327(b)1(urk)1(n\\246\\252a)-327(niec)27(h)1(\\246)-1(tn)1(ie)]TJ -27.879 -13.549 Td[(rozgl\\241d)1(a)-56(j\\241c)-384(si\\246)-384(dok)28(o\\252a,)-383(no)-28(c)-384(b)-27(o)27(wiem)-384(b)28(y\\252a)-384(d)1(o\\261)-1(\\242)-384(wid)1(na,)-383(des)-1(zc)-1(z)-384(u)1(s)-1(ta\\252,)-383(ino)-384(zimn)28(y)84(,)]TJ 0 -13.549 Td[(suc)27(h)29(y)-334(wiat)1(r)-333(p)-28(o)-28(ci\\241)-28(ga\\252)-333(o)-28(d)-333(las\\363)28(w)-334(i)-333(z)-334(sz)-1(u)1(me)-1(m)-334(b)1(i\\252)-333(w)-334(sady)84(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(garn\\241\\252)-333(j\\241)-333(do)-333(sie)-1(b)1(ie)-334(mo)-28(cno)-333(i)-333(z)-1(acz)-1(\\241\\252)-333(c)-1(a\\252o)28(w)28(a\\242)-334(p)-27(o)-334(t)28(w)28(arz)-1(y)84(.)]TJ 0 -13.55 Td[({)-310(Gor)1(z)-1(a\\252k)56(a)-310(jedzie)-311(o)-27(d)-310(c)-1(i)1(e)-1(b)1(ie)-311(k)1(ie)-1(j)-309(z)-311(ku)1(fy)1(!)-310({)-310(s)-1(ze)-1(p)1(n\\246\\252a)-310(o)-28(dc)28(h)28(yla)-55(j\\241c)-310(s)-1(i\\246)-310(z)-311(ob)1(rzy-)]TJ -27.879 -13.549 Td[(dzeniem)-1(:)]TJ 27.879 -13.549 Td[({)-333(B)-1(om)-333(pi\\252,)-333(\\261m)-1(i)1(e)-1(rd)1(z)-1(i)-333(ci)-333(ju)1(\\273)-334(m)-1(o)-55(ja)-333(g\\246ba.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(o)-333(gorza\\252c)-1(em)-334(m)28(y\\261)-1(l)1(a\\252)-1(a)-333(j)1(e)-1(n)1(o!)-334({)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(mi\\246)-1(k)28(ciej)-333(i)-333(c)-1(isz)-1(ej.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(ec)27(h)-333(i)-333(w)28(c)-1(zora)-55(j,)-333(cz)-1(em)27(u)1(\\261)-334(to)-333(nie)-334(wysz\\252)-1(a?)]TJ 0 -13.55 Td[({)-333(Zi\\241b)-333(b)28(y\\252)-333(taki,)-333(a)-333(i)-333(rob)-27(ot)28(y)-333(prze)-1(ciec)27(h)-333(mam)-334(n)1(ie)-1(ma\\252o.)]TJ 0 -13.549 Td[({)-287(Pr)1(a)27(wd)1(a,)-287(a)-288(i)-287(starego)-287(te)-1(\\273)-287(m)27(u)1(s)-1(isz)-288(p)1(ie\\261)-1(ci\\242)-288(i)-287(p)1(ierz)-1(y)1(n\\241)-287(pr)1(z)-1(y)28(okr)1(yw)28(a\\242)-1(!)-287({)-287(s)-1(y)1(kn\\241\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rze)-1(ciec)27(h,)-333(b)-27(o)-333(to)-334(n)1(ie)-334(m\\363)-56(j)-333(c)28(h\\252op!)-333({)-333(rzuci\\252a)-333(t)28(w)27(ard)1(o)-333(i)-334(n)1(iec)-1(ierp)1(liwie.)]TJ 0 -13.549 Td[({)-333(Jagna,)-333(n)1(ie)-334(dr)1(a\\273)-1(n)1(ij!)]TJ 0 -13.549 Td[({)-333(Kiej)-333(c)-1(i)-333(si\\246)-334(n)1(ie)-334(p)-27(o)-28(dob)1(a)-334({)-333(n)1(ie)-334(pr)1(z)-1(y)1(c)27(ho)-27(d\\271,)-334(p)1(\\252ak)56(a\\252)-1(a)-333(p)-27(o)-334(tob)1(ie)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(.)]TJ 0 -13.55 Td[({)-333(Przykr)1(z)-1(y)-333(ci)-333(s)-1(i\\246)-333(ju)1(\\273)-334(w)-1(y)1(c)27(ho)-27(dzi\\242)-334(d)1(o)-334(mni)1(e)-1(,)-333(pr)1(z)-1(y)1(krzy)83(..)1(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(b)-27(o)-334(i)1(no)-333(na)-333(m)-1(n)1(ie)-334(ci\\246gie)-1(m)-333(h)28(ur)1(u-bu)1(ru)-333(ki)1(e)-1(j)-333(n)1(a)-334(tego)-333(\\212ys)-1(k)56(a..)1(.)]TJ 0 -13.549 Td[({)-332(B)-1(acz)-1(y)1(s)-1(z)-333(mi)-332(to,)-332(Jagu\\261,)-332(dy\\242)-333(mam)-333(sw)27(o)-55(jego)-333(t)28(y)1(lac)27(h)1(na,)-332(\\273)-1(e)-333(i)-332(n)1(ie)-333(d)1(z)-1(iw)28(ota,)-332(jak)]TJ -27.879 -13.549 Td[(si\\246)-442(cz)-1(\\252o)28(wie)-1(k)28(o)28(wi)-441(wyp\\261nie)-441(to)-442(j)1(akie)-442(s\\252o)28(w)27(o)-441(t)28(w)27(ar)1(de,)-441(nie)-442(p)1(rze)-1(z)-441(z)-1(\\252o\\261\\242)-442(pr)1(z)-1(ec)-1(iec)27(h)1(,)-441(nie)]TJ 0 -13.549 Td[({)-425(s)-1(zepta\\252)-425(p)-28(ok)28(or)1(nie)-425(i)-425(ob)-55(j\\241)28(ws)-1(zy)-425(j\\241)-425(tu)1(li\\252)-425(do)-425(siebie)-425(s)-1(erdecz)-1(n)1(ie)-1(,)-425(al)1(e)-426(sz)-1(t)28(ywna)-425(b)29(y\\252a,)]TJ 0 -13.55 Td[(zad\\241sana)-309(i)-309(j)1(e)-1(\\261li)-308(o)-28(dd)1(a\\252a)-309(c)-1(a\\252u)1(nki,)-308(to)-309(j)1(akb)28(y)-309(z)-309(m)27(u)1(s)-1(u)1(,)-309(i)-308(je\\261)-1(li)-308(o)-28(dr)1(z)-1(ek\\252a)-309(to)-309(j)1(akie)-309(s)-1(\\252o)28(w)28(o,)]TJ 0 -13.549 Td[(to)-333(ino)-333(tak,)-333(b)29(y)-334(co\\261)-334(m\\363)28(w)-1(i)1(\\242)-1(,)-333(a)-333(c)-1(i\\246giem)-334(si\\246)-334(rozgl\\241d)1(a\\252)-1(a)-333(c)27(h)1(c)-1(\\241c)-333(ju)1(\\273)-334(wrac)-1(a\\242.)]TJ 27.879 -13.549 Td[(Cz)-1(u)1(\\252)-301(ci)-301(to)-300(dob)1(rze)-1(,)-300(c)-1(zu\\252,)-300(to)-301(j)1(akb)28(y)-300(m)27(u)-300(p)-27(okrzyw)-301(n)1(ak\\252adl)1(i)-301(za)-301(p)1(az)-1(u)1(c)27(h\\246,)-300(tak)-301(go)]TJ -27.879 -13.549 Td[(zapiek\\252o,)-333(a\\273)-334(sz)-1(epn\\241\\252)-333(z)-334(wyr)1(z)-1(u)1(te)-1(m)-333(b)-28(o)-55(ja\\271liwym:)]TJ 27.879 -13.549 Td[({)-333(Prz\\363)-28(d)1(z)-1(i)-333(n)1(ie)-334(b)28(yw)28(a\\252o)-333(c)-1(i)-333(tak)-333(pi)1(lno..)1(.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-55(jam)-333(s)-1(i\\246,)-333(ws)-1(zys)-1(cy)-333(w)-334(c)28(ha\\252up)1(ie)-334(mog\\241)-333(m)-1(n)1(ie)-334(sz)-1(u)1(k)55(a\\242...)]TJ 0 -13.55 Td[({)-299(Ju\\261c)-1(i,)-299(p)1(rz)-1(\\363)-27(dzi)-300(to)-299(c)27(h)1(o)-28(\\242b)28(y)-300(n)1(a)-300(ca\\252\\241)-300(n)1(o)-28(c)-300(si\\246)-300(ni)1(e)-300(b)-28(o)-55(ja\\252a\\261,)-300(p)1(rze)-1(mieni\\252a\\261)-300(si\\246)-300(do)]TJ -27.879 -13.549 Td[(cna...)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(\\242,)-333(c)-1(o)-333(si\\246)-334(ta)-333(m)-1(i)1(a\\252)-1(am)-333(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\242)-1(?..)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(il)1(kli)-361(ob)-28(ejm)28(uj)1(\\241c)-362(s)-1(i\\246)-362(mo)-28(cno,)-361(cz)-1(ase)-1(m)-362(cisn\\246li)-362(si\\246)-362(d)1(o)-362(si\\246)-362(gor\\246c)-1(ej,)-361(s)-1(p)1(rz\\241-)]TJ -27.879 -13.549 Td[(gani)-401(nag\\252ym)-402(p)-27(o\\273\\241dani)1(e)-1(m,)-402(sz)-1(u)1(k)56(a)-56(j)1(\\241c)-403(u)1(s)-1(t.)-401(s)-1(w)28(oic)28(h)-402(c)28(hciwie)-1(,)-401(p)-27(orw)27(an)1(i)-402(wsp)-28(\\363ln)1(\\241)-402(f)1(al\\241)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(p)-28(omin)1(k)28(\\363)27(w,)-298(p)-27(o)-28(c)-1(zuciem)-299(win)-298(cz)-1(yn)1(ion)28(yc)28(h)-298(wz)-1(gl\\246dem)-299(siebie,)-298(\\273)-1(alem)-299(n)1(ad)-298(s)-1(ob)1(\\241,)-298(li-)]TJ 0 -13.549 Td[(to\\261c)-1(i\\241,)-303(g\\252\\246b)-28(ok)1(im)-304(pr)1(agnieni)1(e)-1(m)-303(utopi)1(e)-1(n)1(ia)-303(s)-1(i\\246)-304(w)-303(s)-1(ob)1(ie)-304({)-303(ale)-304(n)1(ie)-304(p)-27(oredzili,)-303(b)-27(o)-304(d)1(usz)-1(e)]TJ\nET\nendstream\nendobj\n1088 0 obj <<\n/Type /Page\n/Contents 1089 0 R\n/Resources 1087 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1087 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1092 0 obj <<\n/Length 9881      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(339)]TJ -358.232 -35.866 Td[(o)-28(d)1(biega\\252y)-367(o)-28(d)-367(siebie)-367(dal)1(e)-1(k)28(o,)-367(n)1(ie)-368(zna)-55(jd)1(o)27(w)28(ali)-367(s\\252\\363)28(w)-368(p)1(ie)-1(szc)-1(zon)28(yc)27(h)-366(i)-367(k)28(o)-56(j)1(\\241c)-1(y)1(c)27(h,)-367(b)-27(o)-367(w)]TJ 0 -13.549 Td[(se)-1(rcac)27(h)-302(wrz)-1(a\\252y)-302(gorz)-1(k)1(ie)-303(urazy)83(,)-302(tak)-303(\\273yw)27(e,)-303(i\\273)-303(b)-27(e)-1(zw)27(ol)1(nie)-303(rozpl\\241ta\\252y)-302(s)-1(i\\246)-303(im)-303(ramion)1(a,)]TJ 0 -13.549 Td[(c)27(h)1(\\252o)-28(dl)1(i)-288(do)-288(siebie)-288(i)-288(stali)-288(ki)1(e)-1(j)-287(te)-289(zimne)-288(s)-1(\\252u)1(p)28(y)83(,)-287(\\273)-1(e)-288(jeno)-288(se)-1(r)1(c)-1(a)-288(b)1(i\\252y)-288(im)-288(k)28(o\\252atli)1(w)-1(i)1(e)-1(,)-288(a)-288(n)1(a)]TJ 0 -13.549 Td[(w)28(argac)27(h)-314(pl\\241ta\\252y)-315(si\\246)-315(s)-1(\\252o)28(w)27(a)-315(cz)-1(u)1(\\252o\\261)-1(ci)-315(i)-315(p)-27(o)-28(cie)-1(sz)-1(eni)1(a.)-315(jaki)1(e)-316(c)28(hcie)-1(l)1(i)-315(s)-1(ob)1(ie)-316(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-315(i)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(ore)-1(d)1(z)-1(i)1(li.)]TJ 27.879 -13.55 Td[({)-333(Mi\\252u)1(jes)-1(z)-334(to)-333(mnie,)-333(Jagu\\261?)-334({)-333(sz)-1(epn)1(\\241\\252)-334(cic)27(h)1(o.)]TJ 0 -13.549 Td[({)-287(A)-286(b)-28(o)-286(raz)-287(ci)-287(to)-286(p)-28(o)28(wiad)1(a\\252am)-1(?)-287(a)-286(b)-28(o)-286(nie)-287(wyc)28(ho)-28(d)1(z)-1(\\246)-287(d)1(o)-287(ci\\246,)-287(ki)1(e)-1(j)-286(jeno)-286(c)27(h)1(c)-1(es)-1(z...)]TJ -27.879 -13.549 Td[({)-344(o)-27(dpar)1(\\252a)-344(un)1(ikli)1(w)-1(i)1(e)-344(przysu)28(w)27(a)-55(j\\241c)-344(si\\246)-344(do\\253)-343(b)1(ie)-1(d)1(rem)-1(,)-343(b)-28(o)-343(\\273)-1(al)-343(jak)1(i\\261)-344(\\261)-1(cisk)55(a\\252)-343(jej)-344(d)1(usz)-1(\\246)]TJ 0 -13.549 Td[(i)-401(nap)-27(e)-1(\\252n)1(i\\252)-402(o)-28(cz)-1(y)-401(\\252z)-1(ami,)-401(\\273)-1(e)-402(zac)27(h)1(c)-1(ia\\252o)-401(s)-1(i\\246)-402(j)1(e)-1(j)-401(p)1(\\252)-1(ak)56(a\\242)-402(p)1(rz)-1(ed)-401(nim)-402(a)-401(pr)1(z)-1(eprasza\\242)-1(,)-401(\\273)-1(e)]TJ 0 -13.549 Td[(go)-358(j)1(u\\273)-358(m)-1(i)1(\\252)-1(o)28(w)28(a\\242)-359(n)1(ie)-358(p)-28(or)1(adzi,)-358(al)1(e)-359(on)-357(to)-358(wnet)-358(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252,)-358(b)-27(o)-358(ten)-358(g\\252os)-358(pad)1(\\252)-358(m)27(u)]TJ 0 -13.549 Td[(lo)-28(d)1(e)-1(m)-452(n)1(a)-452(se)-1(r)1(c)-1(e,)-452(a\\273)-452(si\\246)-452(z)-1(atr)1(z)-1(\\241s\\252)-452(c)-1(a\\252y)-451(z)-452(b)-28(\\363lu)1(,)-452(i)-451(z)-1(\\252o\\261\\242)-1(,)-451(p)-27(e)-1(\\252na)-451(wyrzut\\363)28(w)-452(i)-451(\\273)-1(al\\363)28(w)]TJ 0 -13.55 Td[(ni)1(e)-1(wstrzym)-1(an)29(yc)27(h)1(,)-334(zala\\252a)-333(m)27(u)-333(se)-1(r)1(c)-1(e.)]TJ 27.879 -13.549 Td[({)-308(Cygan)1(is)-1(z)-308(j)1(ak)-308(ten)-308(p)1(ie)-1(s;)-308(wsz)-1(yscy)-308(mnie)-308(o)-28(d)1(s)-1(t\\241)-28(p)1(ili)1(,)-308(to)-308(i)-307(tobie)-308(p)1(ilno)-307(z)-1(a)-308(d)1(ru)1(gi-)]TJ -27.879 -13.549 Td[(mi.)-290(Mi\\252uj)1(e)-1(sz)-291(mnie,)-290(ju\\261ci,)-291(j)1(ak)-290(te)-1(go)-290(psa)-291(z\\252e)-1(go,)-290(kt\\363r)1(e)-1(n)-290(ugr)1(y\\271\\242)-291(m)-1(o\\273e)-291(i)-290(prze)-1(d)-290(k)1(t\\363rym)]TJ 0 -13.549 Td[(ogna\\242)-391(si\\246)-391(tr)1(ud)1(no,)-390(ju)1(\\261)-1(ci!)-390(Prze)-1(j)1(rza\\252e)-1(m)-391(ci\\246)-391(n)1(a)-391(wylot,)-390(znam)-391(j)1(a)-391(ci\\246)-391(dob)1(rze)-391(i)-391(wiem,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-308(m)-1(n)1(ie)-309(p)-27(o)28(w)-1(iesi\\242)-309(c)27(h)1(c)-1(ieli,)-308(p)1(ie)-1(r)1(w)-1(sza)-309(b)28(y\\261)-308(trok)28(\\363)28(w)-309(ni)1(e)-309(\\273)-1(a\\252o)28(w)27(a\\252a,)-308(b)28(y)1(c)27(h)-308(ub)1(i\\242)-309(k)56(am)-1(i)1(e)-1(-)]TJ 0 -13.55 Td[(ni)1(am)-1(i)1(,)-334(p)1(ierws)-1(za)-334(b)29(y\\261)-334(rzuci\\252a)-333(z)-1(a)-333(mn\\241!)-333({)-333(gada\\252)-333(pr\\246dk)28(o.)]TJ 27.879 -13.549 Td[({)-333(Jan)28(to\\261!)-333({)-334(j)1(\\246)-1(kn)1(\\246)-1(\\252a)-333(pr)1(z)-1(era\\273ona.)]TJ 0 -13.549 Td[({)-442(Cic)27(h)1(o)-56(j,)-441(p)-28(\\363ki)-442(sw)28(o)-56(je)-442(p)-28(o)28(wiedam?)-443({)-442(k)1(rz)-1(y)1(kn\\241\\252)-442(gro\\271ni)1(e)-443(p)-27(o)-28(dn)1(os)-1(z\\241c)-443(p)1(i\\246)-1(\\261c)-1(i)1(e)-1(.)]TJ -27.879 -13.549 Td[({)-483(Pr)1(a)27(wd)1(\\246)-484(p)-27(o)28(w)-1(i)1(e)-1(d)1(am)-1(!)-483(A)-482(kiej)-483(do)-483(t)1(e)-1(go)-483(pr)1(z)-1(y)1(s)-1(z\\252o,)-483(to)-483(m)-1(i)-482(ju)1(\\273)-484(ws)-1(zystk)28(o)-483(z)-1(ar)1(\\363)27(wn)1(o,)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o!)]TJ 27.879 -13.55 Td[({)-445(T)83(rza)-446(mi)-445(lec)-1(ie\\242)-1(,)-445(w)28(o\\252a)-56(j)1(\\241)-446(mni)1(e)-446(ano!)-445({)-445(j\\241k)56(a\\252a)-446(c)28(hc\\241c)-446(uciek)55(a\\242,)-445(z)-1(es)-1(t)1(ras)-1(zona)]TJ -27.879 -13.549 Td[(wielc)-1(e,)-330(ale)-330(j\\241)-330(p)1(rz)-1(y)1(c)27(h)28(wyci\\252)-330(z)-1(a)-330(r)1(\\246)-1(k)28(\\246,)-330(\\273)-1(e)-330(ni)-329(drgn)1(\\241\\242)-331(n)1(ie)-331(mog\\252a,)-330(i)-330(c)28(hry)1(pliwym,)-330(z\\252ym,)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)28(y)1(m)-334(ni)1(e)-1(na)28(wi\\261c)-1(i)-333(g\\252ose)-1(m)-333(gada\\252:)]TJ 27.879 -13.549 Td[({)-306(A)-305(to)-306(ci)-306(j)1(e)-1(sz)-1(cz)-1(e)-306(p)-27(o)28(w)-1(i)1(e)-1(m,)-306(b)-27(o)-306(sw)27(o)-55(j\\241)-305(g\\252)-1(u)1(pi)1(\\241)-306(g\\252o)28(w)27(\\241)-306(n)1(ie)-306(miarku)1(jes)-1(z,)-306(\\273e)-306(je\\261)-1(l)1(im)]TJ -27.879 -13.549 Td[(na)-300(taki)1(e)-301(psy)-300(z)-1(es)-1(zed\\252,)-300(to)-300(i)-300(b)-28(ez)-301(cie)-1(b)1(ie,)-301(b)-27(ez)-301(to,)-300(\\273)-1(em)-301(ci\\246)-301(mi\\252o)28(w)27(a\\252,)-300(r)1(oz)-1(u)1(m)-1(iesz)-1(,)-300(b)-27(e)-1(z)-300(to!)]TJ 0 -13.55 Td[(Za)-240(c\\363\\273)-241(t)1(o)-240(m)-1(n)1(ie)-240(ksi\\241dz)-240(wyp)-27(om)-1(n)1(ia\\252)-240(i)-239(wygna\\252)-240(z)-240(k)28(o\\261c)-1(io\\252a)-239(kiej)-240(zb)-28(\\363)-55(ja,)-239(z)-1(a)-239(c)-1(iebi)1(e)-1(!)-239(Z)-1(a)-239(c)-1(\\363\\273)]TJ 0 -13.549 Td[(to)-288(w)-1(i)1(e)-1(\\261)-289(ca\\252a)-289(mnie)-289(o)-27(dst\\241)-28(pi)1(\\252a)-289(kiej)-288(par)1(s)-1(zyw)28(e)-1(go,)-288(z)-1(a)-288(c)-1(i)1(e)-1(b)1(ie)-1(!)-288(Wy)1(c)-1(ierzpia\\252em)-289(ws)-1(zy\\242k)28(o,)]TJ 0 -13.549 Td[(pr)1(z)-1(eni)1(os)-1(\\252em)-1(,)-472(na)28(w)28(e)-1(t)-472(i)-472(na)-472(to)-472(nie)-473(p)-27(oms)-1(to)28(w)28(a\\252e)-1(m,)-472(\\273)-1(e)-473(ci)-472(s)-1(tar)1(y)-472(m)-1(o)-55(jego)-473(r)1(o)-28(dzonego)]TJ 0 -13.549 Td[(gron)29(tu)-378(z)-1(ap)1(is)-1(a\\252)-378(t)28(ylac)28(hn)1(a...)-378(A)-378(tobie)-378(s)-1(i\\246)-379(j)1(u\\273)-378(m)-1(ierzi)-378(\\273)-1(e)-378(m)-1(n)1(\\241,)-379(wywij)1(as)-1(z)-378(s)-1(i\\246)-378(kiej)-378(te)-1(n)]TJ 0 -13.549 Td[(pi)1(s)-1(k)28(or)1(z)-1(,)-239(cyganisz,)-240(u)1(c)-1(i)1(e)-1(k)56(asz)-1(,)-239(b)-27(o)-56(j)1(as)-1(z)-240(si\\246)-239(m)-1(n)1(ie)-240(i)-239(pat)1(rz)-1(y)1(s)-1(z)-239(na)-239(m)-1(n)1(ie)-240(j)1(ak)-239(w)-1(szys)-1(tk)1(ie)-1(,)-239(k)1(ie)-1(j)]TJ 0 -13.55 Td[(na)-306(tego)-307(mord)1(o)27(wn)1(ik)56(a)-307(i)-306(n)1(a)-56(jgor)1(s)-1(ze)-1(go!)-306(In)1(nego)-307(ci)-307(j)1(u\\273)-306(p)-28(otr)1(z)-1(a,)-306(in)1(nego!)-307(r)1(ada)-306(b)28(y\\261,)-306(b)28(yc)27(h)]TJ 0 -13.549 Td[(par)1(obki)-290(za)-291(tob)1(\\241)-291(gan)1(ia\\252y)-290(kiej)-290(te)-291(p)1(s)-1(y)-290(na)-290(zw)-1(iesn\\246,)-291(t)28(y)1(!...)-290({)-290(krzyc)-1(za\\252)-291(zapami\\246tale)-291(i)-290(te)]TJ 0 -13.549 Td[(ws)-1(zystkie)-320(krzywdy)84(,)-320(z)-1(\\252o\\261c)-1(i)1(e)-1(,)-320(j)1(akimi)-320(s)-1(i)1(\\246)-321(k)56(armi\\252)-320(o)-28(d)-320(d)1(a)28(w)-1(n)1(a,)-320(jak)1(im)-1(i)-319(jeno)-320(\\273)-1(y)1(\\252,)-320(z)-1(w)28(ala\\252)]TJ 0 -13.549 Td[(na)-276(j)1(e)-1(j)-275(g\\252o)27(w)28(\\246,)-276(j\\241)-276(win)1(i\\252)-276(o)-276(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-276(j)1(\\241)-276(pr)1(z)-1(eklin)1(a\\252)-276(z)-1(a)-276(to,)-276(co)-276(pr)1(z)-1(ec)-1(i)1(e)-1(rp)1(ia\\252,)-276(a\\273)-276(w)-277(k)28(o\\253)1(c)-1(u)]TJ 0 -13.549 Td[(br)1(ak\\252o)-281(m)28(u)-280(ju)1(\\273)-281(g\\252os)-1(u)-280(i)-280(tak)56(a)-281(go)-280(z)-1(\\252o\\261\\242)-281(p)-28(or)1(w)27(a\\252a,)-280(\\273)-1(e)-281(r)1(z)-1(u)1(c)-1(i)1(\\252)-281(s)-1(i)1(\\246)-281(do)-280(niej)-280(z)-281(pi)1(\\246)-1(\\261c)-1(iami,)-280(ale)]TJ 0 -13.549 Td[(opami\\246ta\\252)-334(si\\246)-334(w)-333(os)-1(t)1(atniej)-333(c)27(h)29(w)-1(i)1(li,)-333(p)-27(c)27(hn)1(\\241\\252)-334(j)1(\\241)-334(t)28(yl)1(k)28(o)-334(n)1(a)-334(\\261cian\\246)-334(i)-333(spi)1(e)-1(sz)-1(n)1(ie)-334(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.55 Td[({)-430(Je)-1(zus)-431(m\\363)-56(j)1(,)-430(Jan)28(to\\261!)-431({)-430(krzykn)1(\\246)-1(\\252a)-430(z)-431(m)-1(o)-27(c)-1(\\241)-430(z)-1(r)1(oz)-1(u)1(m)-1(i)1(a)27(wsz)-1(y)-430(z)-431(nag\\252a,)-430(co)-431(si\\246)]TJ -27.879 -13.549 Td[(sta\\252o,)-387(ale)-386(nie)-387(n)1(a)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252,)-387(r)1(z)-1(u)1(c)-1(i\\252a)-386(s)-1(i)1(\\246)-387(z)-1(a)-386(nim)-386(z)-387(rozpacz)-1(\\241,)-386(z)-1(ab)1(ieg\\252a)-387(dr)1(og\\246)-387(i)-386(c)-1(ze)-1(p)1(i\\252a)]TJ 0 -13.549 Td[(m)27(u)-327(s)-1(i)1(\\246)-329(sz)-1(yi)1(,)-328(to)-328(j\\241)-328(o)-28(d)1(e)-1(r)1(w)27(a\\252)-328(o)-28(d)-327(s)-1(iebi)1(e)-329(kiej)-328(p)1(ija)28(wk)28(\\246,)-328(rzuci\\252)-328(na)-328(z)-1(i)1(e)-1(mi\\246)-328(i)-328(b)-28(ez)-329(j)1(e)-1(d)1(nego)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a)-355(p)-27(olec)-1(ia\\252,)-354(a)-355(on)1(a)-355(pad)1(\\252a)-355(z)-355(p\\252acz)-1(em)-355(okr)1(opn)28(ym,)-354(jakb)29(y)-355(si\\246)-355(\\261)-1(wiat)-354(c)-1(a\\252y)-354(nad)-354(n)1(i\\241)]TJ 0 -13.549 Td[(za)27(w)28(ala\\252.)]TJ 27.879 -13.55 Td[(Dop)1(ie)-1(r)1(o)-254(w)-253(dob)1(re)-253(par\\246)-253(pacie)-1(r)1(z)-1(y)-253(p)1(rzys)-1(z\\252a)-253(niec)-1(o\\261)-253(do)-253(sie)-1(b)1(ie,)-253(nie)-253(m)-1(og\\241c)-253(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(wyrozumie\\242)-323(ws)-1(zystkiego,)-322(to)-322(jeno)-322(cz)-1(u)1(\\252a)-322(okrop)1(nie,)-322(\\273)-1(e)-322(s)-1(ta\\252a)-322(si\\246)-323(j)1(e)-1(j)-321(krzywda,)-322(sta\\252a)]TJ\nET\nendstream\nendobj\n1091 0 obj <<\n/Type /Page\n/Contents 1092 0 R\n/Resources 1090 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1090 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1095 0 obj <<\n/Length 9656      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(340)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-490(jej)-490(tak)56(a)-490(strasz)-1(n)1(a)-490(ni)1(e)-1(spra)28(wiedli)1(w)27(o\\261\\242)-1(;)-489(i\\273)-490(s)-1(erce)-491(r)1(oz)-1(p)-27(\\246)-1(k)56(a\\252o)-490(z)-490(b)-27(\\363lu,)-489(du)1(s)-1(i\\252a)-489(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-442(sobie)-442(i)-442(c)28(hcia\\252o)-442(si\\246)-442(jej)-442(kr)1(z)-1(y)1(c)-1(ze)-1(\\242)-442(ze)-443(wsz)-1(ystkic)28(h)-442(si\\252,)-441(na)-442(ca\\252y)-442(ten)-442(\\261wiat)-442({)-442(j)1(ak)28(o)]TJ 0 -13.549 Td[(ni)1(e)-1(win)1(o)27(w)28(ata,)-333(ni)1(e)-1(win)1(o)27(w)28(ata!)]TJ 27.879 -13.549 Td[(W)84(o\\252)-1(a\\252a)-378(z)-1(a)-378(nim,)-378(c)27(ho)-27(\\242)-380(j)1(u\\273)-379(i)-378(krok)1(i)-379(j)1(e)-1(go)-379(u)1(c)-1(i)1(c)27(h\\252y)84(,)-379(w)28(o\\252a\\252a)-379(w)-379(ca\\252\\241)-379(t\\246)-379(n)1(o)-28(c)-379({)-379(na)]TJ -27.879 -13.549 Td[(pr)1(\\363\\273)-1(n)1(o.)]TJ 27.879 -13.55 Td[(G\\252\\246b)-28(ok)56(a,)-302(c)-1(i)1(\\246)-1(\\273k)55(a)-302(s)-1(k)1(ruc)28(ha)-302(i)-303(ten)-302(\\273)-1(al)-302(se)-1(rd)1(e)-1(czn)28(y)83(,)-302(i)-302(te)-1(n)-302(strac)28(h)-303(g\\252u)1(c)27(h)28(y)84(,)-303(gn)1(\\246)-1(b)1(i\\241cy)83(,)]TJ -27.879 -13.549 Td[(okr)1(opn)28(y)84(,)-277(\\273)-1(e)-277(mo\\273)-1(e)-277(on)-277(ju)1(\\273)-278(n)1(ie)-277(p)-28(o)28(wr\\363)-28(ci,)-277(i)-277(t)1(u)-277(mi\\252o)27(w)28(ani)1(e)-278(d)1(a)27(wn)1(e)-1(,)-277(z)-277(nag\\252a)-277(zm)-1(ar)1(t)27(wyc)28(h-)]TJ 0 -13.549 Td[(ws)-1(ta\\252e,)-235(zw)27(ali)1(\\252)-1(y)-234(s)-1(i\\246)-235(na)-235(n)1(i\\241)-235(c)-1(i)1(\\246)-1(\\273kim,)-235(t)28(w)27(ar)1(dym)-235(br)1(z)-1(em)-1(i)1(e)-1(n)1(ie)-1(m)-235(ni)1(e)-1(u)1(tulon)29(yc)27(h)-234(s)-1(m)28(utk)28(\\363)28(w,)]TJ 0 -13.549 Td[(\\273e)-334(ju)1(\\273)-334(i)-333(na)-333(ni)1(c)-334(nie)-333(bacz)-1(\\241c,)-333(rycz)-1(a\\252a)-333(w)-334(g\\252os)-334(i)1(d\\241c)-334(d)1(o)-334(c)28(ha\\252up)29(y)83(..)1(.)]TJ 27.879 -13.549 Td[(Na)-336(ganku)-335(z)-1(etkn\\246\\252a)-336(s)-1(i\\246)-336(z)-337(K\\252\\246biak)1(ie)-1(m,)-336(kt\\363r)1(e)-1(n)-336(j)1(e)-1(n)1(o)-337(wsadzi\\252)-336(g\\252)-1(o)28(w)28(\\246)-337(d)1(o)-337(izb)28(y)-336(i)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)1(n\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(C)-1(h)1(\\252opski)-333(las)-334(r)1(\\241bi\\241!)-333({)-333(i)-333(dalej)-333(p)-27(ole)-1(cia\\252.)]TJ 0 -13.549 Td[(Mi)1(gie)-1(m)-264(ta)-265(wie\\261\\242)-265(rozla\\252a)-264(s)-1(i\\246)-264(p)-28(o)-264(ws)-1(i,)-264(b)1(uc)28(hn\\246\\252a)-264(kiej)-264(p)-28(o\\273ar)-264(ogarn)1(ia)-56(j)1(\\241c)-265(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(kie)-477(serc)-1(a)-476(s)-1(t)1(rapi)1(e)-1(n)1(ie)-1(m)-477(a)-476(gni)1(e)-1(w)28(e)-1(m)-477(srogim,)-476(\\273)-1(e)-477(j)1(u\\273)-477(d)1(rzw)-1(i)-476(si\\246)-477(nie)-477(zam)27(y)1(k)55(a\\252y)84(,)-476(tak)]TJ 0 -13.549 Td[(bi)1(e)-1(gali)-333(p)-27(o)-333(c)27(ha\\252u)1(pac)27(h)-332(z)-334(no)28(win\\241.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-235(r)1(z)-1(ec)-1(z)-235(b)29(y\\252a)-235(wielk)56(a)-235(dl)1(a)-235(ws)-1(zystkic)27(h)-234(i)-234(tak)-234(gro\\271)-1(n)1(a,)-235(\\273e)-235(c)-1(al)1(a)-235(wie\\261)-236(p)1(rzycic)27(h)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(z)-333(n)1(ag\\252a,)-332(jak)-332(kieb)28(y)-332(p)1(ioru)1(n)-332(ud)1(e)-1(r)1(z)-1(y\\252,)-332(c)28(ho)-28(d)1(z)-1(il)1(i)-332(l\\246)-1(k)1(liwie,)-332(na)-332(palcac)27(h)1(,)-332(gadali)-332(sze)-1(p)1(te)-1(m)]TJ 0 -13.549 Td[(w)28(a\\273)-1(\\241c)-451(k)56(a\\273de)-451(s\\252)-1(o)28(w)28(o,)-450(roz)-1(gl)1(\\241da)-55(j\\241c)-451(si\\246)-451(trw)28(o\\273)-1(n)1(ie)-451(i)-450(nas\\252uc)28(h)28(uj)1(\\241c)-451(c)-1(za)-56(j)1(\\241c)-1(o,)-450(n)1(ikto)-450(nie)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252,)-380(ni)1(kto)-380(nie)-381(l)1(am)-1(en)28(to)28(w)27(a\\252)-380(i)-380(nikt)1(o)-381(p)-27(om)-1(st\\241)-380(nie)-381(tr)1(z)-1(\\241c)28(ha\\252,)-380(b)-28(o)-380(k)56(a\\273)-1(d)1(e)-1(n)-380(cz)-1(u)1(\\252)-381(w)]TJ 0 -13.549 Td[(tej)-270(m)-1(in)29(ucie)-1(,)-270(\\273e)-271(to)-271(n)1(ie)-271(pr)1(z)-1(ele)-1(wki)1(,)-271(a)-270(s)-1(p)1(ra)28(w)27(a)-270(tak)56(a,)-271(n)1(a)-271(kt)1(\\363r\\241)-271(b)1(abie)-271(p)1(iski)-271(n)1(ie)-271(p)-27(oredz\\241,)]TJ 0 -13.549 Td[(a)-333(ino)-333(m\\241dre)-333(p)-28(om)28(y\\261)-1(l)1(e)-1(n)1(ie)-334(i)-333(to)-333(s)-1(p)-27(o\\252e)-1(czne)-334(p)-27(os)-1(t)1(ano)28(w)-1(i)1(e)-1(n)1(ie)-1(.)]TJ 27.879 -13.55 Td[(Wiecz)-1(\\363r)-351(b)28(y\\252)-352(j)1(u\\273)-352(p)-27(\\363\\271)-1(n)29(y)83(,)-351(ale)-352(\\261)-1(p)1(ik)-351(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-351(o)-28(dl)1(e)-1(cia\\252,)-352(n)1(ie)-352(jedn)1(i)-352(k)28(ol)1(ac)-1(j)1(i)-352(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(\\273e)-1(l)1(i,)-338(zap)-28(omin)1(ali)-338(o)-338(ob)1(rz)-1(\\241d)1(k)56(ac)27(h)-338(wiec)-1(zorn)29(yc)27(h)1(,)-338(z)-1(ap)-27(ominal)1(i)-338(z)-1(go\\252a)-338(o)-338(sobi)1(e)-1(,)-338(a)-338(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(si\\246)-459(sn)28(ul)1(i)-459(p)-27(o)-458(dr)1(ogac)27(h,)-458(wysta)28(w)27(al)1(i)-458(w)-459(op\\252otk)56(ac)28(h,)-458(to)-458(nad)-458(sta)28(w)27(em,)-458(i)-458(s)-1(ze)-1(p)1(t)28(y)-458(c)-1(ic)28(he,)]TJ 0 -13.549 Td[(trw)28(o\\273ne,)-334(p)1(rzyta)-55(jone)-333(drga\\252y)-333(w)-333(m)-1(r)1(oku)-333(kiej)-333(ten)-333(brz\\246k)-334(p)1(s)-1(zcz)-1(eln)28(y)84(.)]TJ 27.879 -13.549 Td[(Cz)-1(as)-263(te)-1(\\273)-263(b)28(y\\252)-263(c)-1(i)1(c)27(hsz)-1(y)84(,)-263(des)-1(zcz)-264(pr)1(z)-1(es)-1(ta\\252,)-263(p)-27(o)-56(j)1(a\\261)-1(n)1(ia\\252o)-263(na)28(w)27(et)-263(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-263(p)-28(o)-263(ni)1(e)-1(b)1(ie)]TJ -27.879 -13.55 Td[(lec)-1(i)1(a\\252)-1(y)-302(c)28(hm)27(u)1(rzysk)55(a)-302(s)-1(t)1(adami,)-302(a)-303(d)1(o\\252e)-1(m)-303(n)1(isk)28(o)-303(p)1(rze)-1(ci\\241)-28(ga\\252)-302(m)-1(r)1(o\\271)-1(n)28(y)-302(wiater,)-302(\\273e)-303(z)-1(iemia)]TJ 0 -13.549 Td[(j\\246\\252a)-480(s)-1(i\\246)-480(\\261)-1(cin)1(a\\242)-481(w)-480(grud)1(\\246)-481(i)-480(ob)1(m)-1(okn)1(i\\246te)-1(,)-480(czarne)-480(drzew)27(a)-480(pr)1(z)-1(yb)1(lad)1(\\252)-1(y)-480(szroni)1(e)-1(j)1(\\241c)-1(e,)]TJ 0 -13.549 Td[(g\\252os)-1(y)-333(za\\261)-1(,)-333(c)28(ho)-28(\\242)-333(przydu)1(s)-1(zone,)-333(s)-1(z\\252y)-333(wyra\\271niej.)]TJ 27.879 -13.549 Td[(Naraz)-277(s)-1(i\\246)-277(roznies)-1(\\252o,)-277(\\273e)-278(p)-27(oni)1(e)-1(kt)1(\\363rz)-1(y)-277(gosp)-27(o)-28(dar)1(z)-1(e)-277(s)-1(i\\246)-277(z)-1(ebr)1(ali)-277(i)-277(w)27(al)1(\\241)-278(d)1(o)-277(w)27(\\363)-55(jta.)]TJ -27.879 -13.549 Td[(Jak)28(o\\273)-330(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-330(Win)1(c)-1(i)1(orek)-330(z)-330(kul)1(a)27(wym)-330(G)1(rz)-1(el\\241;)-329(przes)-1(ze)-1(d)1(\\252)-330(Caban)-329(Mic)28(ha\\252)-330(z)-330(F)83(r)1(an-)]TJ 0 -13.55 Td[(kiem)-301(B)-1(yl)1(ic)-1(\\241,)-301(stry)1(jec)-1(zn)28(ym)-301(Hancz)-1(y)1(neg)-1(o)-301(o)-55(jca;)-301(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-301(So)-28(c)28(ha;)-301(p)1(rz)-1(esz)-1(ed\\252)-301(W)83(al)1(e)-1(k)-301(z)]TJ 0 -13.549 Td[(kr)1(z)-1(yw)28(\\241)-382(g\\246)-1(b)1(\\241,)-382(W)84(ac)27(hn)1(ik)-382(J\\363zek,)-382(Si)1(k)28(ora)-382(Kazimie)-1(r)1(z)-1(,)-381(a)-382(na)28(w)27(et)-382(stary)-382(P)1(\\252os)-1(zk)55(a)-382({)-382(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(Boryn)28(y)-333(n)1(ikto)-333(ni)1(e)-334(do)-55(jrza\\252,)-333(ale)-334(m\\363)28(w)-1(i)1(li,)-333(\\273e)-334(i)-333(on)-333(p)-28(osz)-1(ed\\252.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)1(a)-294(d)1(om)-1(a)-293(n)1(ie)-294(b)28(y)1(\\252o,)-293(b)-28(o)-293(zaraz)-294(p)-27(o)-293(p)-28(o\\252u)1(dn)1(iu)-293(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-293(do)-293(k)56(ance)-1(lar)1(ii,)-293(to)-293(ju)1(\\273)]TJ -27.879 -13.549 Td[(ws)-1(zystkie)-337(r)1(az)-1(em)-1(,)-336(ca\\252\\241)-337(ku)1(p\\241)-336(p)-28(osz)-1(l)1(i)-337(d)1(o)-337(K)1(\\252\\246)-1(b)1(a,)-337(cisn\\246\\252)-1(o)-336(si\\246)-337(z)-1(a)-336(ni)1(m)-1(i)-336(sp)-28(or)1(o)-337(lu)1(dzi,)-336(to)]TJ 0 -13.549 Td[(bab)1(,)-269(to)-269(dziec)-1(i,)-268(ale)-270(p)1(rzyw)27(ar)1(li)-269(dr)1(z)-1(wi,)-269(n)1(ik)28(ogo)-269(ju)1(\\273)-270(n)1(ie)-270(p)1(usz)-1(cz)-1(a)-55(j\\241c)-269(do)-269(\\261)-1(r)1(o)-28(dk)56(a,)-269(K)1(\\252)-1(\\246bi)1(ak)]TJ 0 -13.55 Td[(za\\261)-238(W)84(o)-56(j)1(te)-1(k)-236(mia\\252)-237(pr)1(z)-1(y)1(k)55(azane)-237(n)1(agl\\241dan)1(ie)-237(p)-28(o)-236(drogac)28(h)-237(i)-236(pr)1(z)-1(y)-236(k)56(arc)-1(zmie)-1(,)-236(c)-1(zy)-237(si\\246)-237(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(stra\\273nik)-333(n)1(ie)-334(p)-27(ok)55(a\\273e)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-489(d)1(om)-1(em)-489(z)-1(a\\261,)-489(w)-489(op\\252otk)56(ac)27(h,)-488(a)-489(na)28(w)27(et)-489(na)-489(d)1(ro)-28(d)1(z)-1(e)-489(z)-1(b)1(iera\\252o)-489(s)-1(i)1(\\246)-490(coraz)]TJ -27.879 -13.549 Td[(wi\\246c)-1(ej)-280(naro)-27(du,)-280(k)56(a\\273dy)-280(b)28(y\\252)-280(c)-1(iek)56(a)27(w,)-280(co)-281(tam)-281(starsz)-1(y)1(z)-1(n)1(a)-281(u)1(radzi,)-280(a)-281(r)1(adzili)-280(d\\252u)1(go,)-281(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(\\273e)-365(n)1(ikto)-364(n)1(ie)-364(wie)-1(d)1(z)-1(i)1(a\\252)-364(c)-1(o)-364(i)-363(jak,)-363(b)-28(o)-363(ino)-364(p)1(rze)-1(z)-364(okn)1(a)-364(wida\\242)-364(b)28(y\\252o)-364(i)1(c)27(h)-363(s)-1(iw)28(e)-364(g\\252o)27(wy)84(,)-364(w)]TJ 0 -13.55 Td[(p)-27(\\363\\252k)28(olu)-334(p)-27(o)-28(c)28(h)28(ylon)1(e)-335(d)1(o)-334(k)28(om)-1(i)1(na,)-334(n)1(a)-334(kt\\363r)1(ym)-334(s)-1(i\\246)-334(pal)1(i\\252)-334(ogie\\253,)-334(a)-334(z)-334(b)-27(oku)-333(s)-1(to)-55(ja\\252)-334(K\\252\\241b)1(,)]TJ 0 -13.549 Td[(cos)-1(ik)-333(im)-333(pr)1(a)27(wi\\252,)-333(p)-27(o)-28(c)27(h)28(y)1(la\\252)-334(si\\246)-334(n)1(isk)28(o)-334(i)-333(r)1(az)-334(w)-334(r)1(az)-334(bi\\252)-333(pi)1(\\246)-1(\\261c)-1(i\\241)-333(w)-333(s)-1(t\\363\\252.)]TJ\nET\nendstream\nendobj\n1094 0 obj <<\n/Type /Page\n/Contents 1095 0 R\n/Resources 1093 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1093 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1098 0 obj <<\n/Length 10001     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(341)]TJ -330.353 -35.866 Td[(Niec)-1(i)1(e)-1(rp)1(liw)28(o\\261)-1(\\242)-382(za\\261)-383(ros\\252a)-382(w)-382(c)-1(ze)-1(k)56(a)-55(j\\241cyc)27(h)-381(z)-383(min)28(u)1(t)28(y)-382(na)-382(min)28(u)1(t\\246)-1(,)-381(a\\273)-383(w)-382(k)28(o\\253cu)]TJ -27.879 -13.549 Td[(Kob)1(us,)-396(to)-396(Koz)-1(\\252o)28(w)28(a,)-396(to)-396(i)-396(par)1(obki)-396(n)1(iekt\\363re)-396(z)-1(acz)-1(\\246li)-396(sz)-1(em)-1(r)1(a\\242)-397(i)-396(g\\252o\\261no)-396(p)-27(o)28(w)-1(sta)28(w)27(a\\242)]TJ 0 -13.549 Td[(na)-328(r)1(adz\\241c)-1(yc)28(h,)-328(\\273e)-329(n)1(ic)-329(n)1(ie)-329(u)1(rad)1(z)-1(\\241)-328(d)1(obrego)-328(la)-328(nar)1(o)-28(du)1(,)-328(b)-27(o)-329(i)1(m)-329(j)1(e)-1(n)1(o)-328(o)-329(sam)27(y)1(c)27(h)-328(siebie)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi,)-333(j)1(ak)27(o)-333(goto)28(wi)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(z)-334(d)1(w)27(or)1(e)-1(m)-333(p)-28(ogo)-28(d)1(z)-1(i)1(\\242)-1(,)-333(a)-333(res)-1(zt\\246)-334(na)-333(zgub)-27(\\246)-334(p)-27(o)-28(da\\242!...)]TJ 27.879 -13.549 Td[(Kob)1(us)-333(s)-1(i\\246)-333(ju)1(\\273)-334(b)29(y\\252)-333(tak)-333(rozs)-1(i)1(e)-1(rd)1(z)-1(i)1(\\252)-333(w)-1(r)1(az)-334(z)-333(k)28(om)-1(or)1(nik)56(ami)-333(i)-333(d)1(rug\\241)-333(b)1(iedot\\241,)-333(\\273e)]TJ -27.879 -13.55 Td[(ju)1(\\273)-340(ot)28(w)28(arcie)-340(n)1(am)-1(a)28(wia\\252,)-339(b)29(y)-339(nie)-339(z)-1(w)28(a\\273)-1(a)-55(j\\241c)-339(na)-339(r)1(adz\\241c)-1(yc)28(h,)-339(o)-339(sobie)-339(p)-27(om)27(y\\261le\\242)-1(,)-339(sw)27(o)-55(je)]TJ 0 -13.549 Td[(ur)1(adzi\\242,)-328(c)-1(osik)-328(p)-27(os)-1(tan)1(o)27(wi\\242;)-328(a)-328(ryc)28(h\\252o,)-328(p)-27(\\363ki)-328(c)-1(zas,)-328(p)-28(\\363ki)-328(t)1(am)27(te)-329(i)1(c)27(h)-328(n)1(ie)-329(spr)1(z)-1(edad)1(z)-1(\\241..)1(.)]TJ 27.879 -13.549 Td[(Ja)28(wi\\252)-245(si\\246)-245(na)-244(to)-245(M)1(ate)-1(u)1(s)-1(z)-245(i)-244(z)-1(acz)-1(\\241\\252)-244(na)28(w)28(o\\252)-1(y)1(w)27(a\\242)-245(d)1(o)-245(k)56(arcz)-1(m)28(y)83(,)-244(b)28(y)-244(tam)-245(s)-1(w)28(ob)-27(o)-28(dn)1(ie)]TJ -27.879 -13.549 Td[(p)-27(oradzi\\242,)-333(a)-334(n)1(ie)-334(j)1(ak)-334(t)1(e)-334(pieski)-333(p)-28(o)-27(d)-333(c)-1(u)1(dzym)-334(p)1(\\252)-1(ot)1(e)-1(m)-334(n)1(as)-1(zcz)-1(ekiw)28(a\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[(T)83(ra\\014)1(\\252o)-334(t)1(o)-334(d)1(o)-334(se)-1(r)1(c)-1(a)-333(nar)1(o)-28(do)28(wi,)-333(b)-27(o)-334(ca\\252\\241)-334(h)29(urm\\241)-333(ruszyli)-333(do)-333(k)56(arcz)-1(m)28(y)83(.)]TJ 0 -13.549 Td[(\\233yd)-268(ju)1(\\273)-269(\\261w)-1(iat)1(\\252)-1(a)-268(gasi\\252,)-269(al)1(e)-269(m)27(usia\\252)-268(ot)27(w)28(orzy\\242)-269(i)-268(z)-269(trw)28(og\\241)-269(p)1(atrzy\\252)-269(n)1(a)-269(w)28(al\\241c\\241)-269(si\\246)]TJ -27.879 -13.55 Td[(ci\\273)-1(b)-27(\\246,)-356(w)27(c)28(ho)-28(d)1(z)-1(il)1(i)-356(w)-356(m)-1(i)1(lc)-1(ze)-1(n)1(iu)1(,)-356(s)-1(p)-27(ok)28(o)-56(j)1(nie,)-356(za)-56(j)1(m)27(u)1(j\\241c)-356(w)-1(sz)-1(y)1(s)-1(tki)1(e)-357(\\252a)28(wy)83(,)-356(sto\\252y)-356(i)-356(k)56(\\241t)28(y)84(,)]TJ 0 -13.549 Td[(ni)1(kto)-390(b)-27(o)27(wiem)-391(n)1(ie)-390(pi\\252,)-390(a)-390(j)1(e)-1(n)1(o)-391(k)1(up)1(ili)-390(si\\246)-391(g\\246s)-1(t)1(o)-391(p)-27(oredza)-56(j)1(\\241c)-391(z)-390(c)-1(i)1(c)27(ha)-390(i)-390(wycz)-1(eku)1(j\\241c,)]TJ 0 -13.549 Td[(kto)-333(i)-333(z)-334(cz)-1(ym)-333(pierwsz)-1(y)-333(wyst\\241)-28(pi)1(...)]TJ 27.879 -13.549 Td[(Nie)-383(b)1(rak)28(o)28(w)27(a\\252o)-383(sk)28(oryc)28(h)-382(do)-383(p)1(ierws)-1(ze)-1(\\253)1(s)-1(t)28(w)28(a,)-383(j)1(e)-1(n)1(o)-383(\\273e)-384(si\\246)-383(j)1(e)-1(sz)-1(cz)-1(e)-383(k)56(a\\273)-1(d)1(e)-1(n)-382(w)28(a-)]TJ -27.879 -13.549 Td[(go)28(w)27(a\\252)-391(wyst\\241)-28(p)1(i\\242)-392(i)-390(na)-391(d)1(ru)1(gic)27(h)-390(ogl\\241da\\252,)-390(a\\273)-392(d)1(opiero)-391(An)28(t)1(e)-1(k)-391(si\\246)-391(wyrw)28(a\\252,)-391(na)-390(\\261)-1(ro)-27(dek)]TJ 0 -13.55 Td[(sk)28(o)-28(c)-1(zy\\252)-333(i)-333(os)-1(tro,)-333(z)-333(m)-1(iejsca)-334(zac)-1(z\\241\\252)-334(p)-27(oms)-1(to)28(w)28(a\\242)-334(na)-333(dw)28(\\363r.)1(..)]TJ 27.879 -13.549 Td[(Ale)-421(c)27(h)1(o)-28(\\242)-422(wsz)-1(ystkim)-421(tr)1(a\\014\\252)-421(pr)1(os)-1(to)-421(d)1(o)-421(s)-1(erca,)-421(ma\\252)-1(o)-421(k)1(to)-421(przyt)28(wierdza\\252,)-421(b)-27(o-)]TJ -27.879 -13.549 Td[(cz)-1(on)1(o)-335(s)-1(i)1(\\246)-336(n)1(a\\253,)-334(patr)1(z)-1(on)1(o)-335(z)-1(y)1(z)-1(em)-1(,)-334(niec)27(h)1(\\246)-1(tn)1(ie,)-335(o)-28(d)1(w)-1(r)1(ac)-1(an)1(o)-335(si\\246)-335(na)28(w)27(et)-335(p)1(le)-1(cami,)-335(\\273e)-335(to)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-276(z)-1(b)29(yt)-276(\\273yw)27(o)-275(pami\\246)-1(t)1(ano)-276(ksi\\246\\273)-1(e)-276(wyp)-27(om)-1(i)1(nki,)-275(a)-276(i)-276(te)-276(j)1(e)-1(go)-276(gr)1(z)-1(es)-1(zne)-276(s)-1(p)1(ra)28(wki,)-275(nie)]TJ 0 -13.549 Td[(zw)27(a\\273a\\252)-394(na)-393(to,)-393(a)-394(\\273e)-394(go)-394(wn)1(e)-1(t)-393(p)-28(on)1(ies)-1(\\252a)-394(zapami\\246ta\\252o\\261)-1(\\242)-394(i)-393(j)1(akb)28(y)-393(dziki)-393(bit)1(k)28(o)27(wy)-393(s)-1(za\\252)]TJ 0 -13.55 Td[(ogarn)1(ia\\252,)-333(to)-334(z)-333(c)-1(a\\252ej)-333(m)-1(o)-27(c)-1(y)-333(kr)1(z)-1(ycza\\252)-334(n)1(a)-334(k)28(o\\253)1(c)-1(u)1(:)]TJ 27.879 -13.549 Td[({)-310(Nie)-310(da)-55(jta)-310(si\\246)-1(,)-309(c)27(h\\252op)29(y)83(,)-310(n)1(ie)-310(ust\\246)-1(p)1(ujt)1(a,)-310(nie)-310(dar)1(uj)1(ta)-310(krzywdy!)-309(Dz)-1(i)1(s)-1(ia)-55(j)-310(w)28(am)-1(a)]TJ -27.879 -13.549 Td[(wz)-1(i)1(\\246)-1(li)-372(las)-1(,)-372(a)-373(j)1(ak)-373(si\\246)-373(bron)1(i\\242)-373(nie)-373(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(cie)-1(,)-372(to)-373(j)1(utr)1(o)-373(goto)28(w)-1(i)-372(wyc)-1(i)1(\\241)-28(gn\\241\\242)-373(pazur)1(y)-373(p)-27(o)]TJ 0 -13.549 Td[(zie)-1(mi\\246)-286(w)28(asz)-1(\\241,)-285(p)-27(o)-286(c)28(ha\\252up)29(y)83(,)-285(p)-27(o)-286(d)1(ob)28(ytek!)-285(Kt\\363\\273)-286(i)1(m)-286(wz)-1(b)1(ron)1(i,)-285(kto)-285(s)-1(i\\246)-285(im)-286(spr)1(z)-1(ec)-1(iwi?..)1(.)]TJ 27.879 -13.549 Td[(P)28(or)1(usz)-1(y\\252)-308(s)-1(i\\246)-308(nagle)-309(n)1(ar\\363)-28(d)1(,)-309(p)-27(omruk)-308(g\\252u)1(c)27(h)28(y)-308(p)-28(osze)-1(d)1(\\252)-309(p)-27(o)-309(izbi)1(e)-1(,)-308(t\\252um)-309(si\\246)-309(zak)28(o-)]TJ -27.879 -13.55 Td[(\\252ysa\\252)-312(gw)28(a\\252to)28(wnie,)-311(rozb\\252ys\\252y)-311(dzik)28(o)-311(o)-28(czy)83(,)-311(sto)-311(pi)1(\\246)-1(\\261c)-1(i)-311(n)1(araz)-311(wyrw)28(a\\252)-1(o)-311(si\\246)-311(nad)-310(g\\252o)27(wy)84(,)]TJ 0 -13.549 Td[(i)-333(s)-1(t)1(o)-334(p)1(ie)-1(r)1(s)-1(i)-333(ry)1(kn\\246\\252o)-334(wr)1(az)-1(,)-333(kieb)28(y)-333(p)1(ioru)1(nami.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(am)27(y!)-333(Nie)-334(d)1(am)27(y)1(!)-334({)-333(h)28(u)1(c)-1(ze)-1(l)1(i,)-333(a\\273)-334(si\\246)-334(k)56(arcz)-1(ma)-334(zatrz\\246s)-1(\\252a)-333(o)-28(d)-333(mo)-28(c)-1(y)84(.)]TJ 0 -13.549 Td[(Na)-443(to)-444(i)-443(cz)-1(ek)56(ali)-443(pr)1(z)-1(o)-28(d)1(o)28(w)-1(n)1(icy)83(,)-443(b)-27(o)-444(wnet)-443(Mateusz)-1(,)-443(Kob)1(us,)-443(to)-444(K)1(oz)-1(\\252o)28(w)27(a,)-443(to)]TJ -27.879 -13.549 Td[(p)-27(ote)-1(m)-370(i)-370(d)1(rugi)1(e)-371(rzucili)-369(s)-1(i\\246)-370(w)28(e)-371(\\261ro)-28(d)1(e)-1(k)-370(i)-369(n)28(u\\273)-370(krzycz)-1(e\\242)-1(,)-370(n)29(u\\273)-370(p)-28(omsto)27(w)28(a\\242)-370(a)-370(jud)1(z)-1(i)1(\\242)-1(..)1(.)]TJ 0 -13.55 Td[(\\273e)-321(wn)1(e)-1(t)-319(k)55(ar)1(c)-1(zm\\246)-320(z)-1(ala\\252)-319(w)-1(r)1(z)-1(ask,)-319(gro\\271)-1(b)29(y)83(,)-319(pr)1(z)-1(ekle\\253st)28(w)27(a,)-319(tup)1(ania,)-319(bi)1(c)-1(ie)-320(p)1(i\\246)-1(\\261ciam)-1(i)-319(w)]TJ 0 -13.549 Td[(sto\\252y)-334(i)-333(h)29(ukli)1(w)27(a,)-333(sroga)-333(w)-1(r)1(z)-1(a)28(w)28(a)-334(zagniew)28(aneg)-1(o)-333(n)1(aro)-28(d)1(u.)]TJ 27.879 -13.549 Td[(Ka\\273dy)-272(w)28(o\\252a\\252)-273(sw)28(o)-56(je,)-272(k)56(a\\273)-1(d)1(y)-272(s)-1(i)1(\\246)-273(sro\\273y\\252,)-272(k)55(a\\273den)-272(co)-272(inn)1(e)-1(go)-272(r)1(adzi\\252,)-272(\\273)-1(e)-272(c)-1(isk)56(ali)-272(si\\246)]TJ -27.879 -13.549 Td[(zapami\\246)-1(t)1(ale)-1(,)-382(kiej)-382(te)-383(pi)1(e)-1(ski)-382(w)-383(s)-1(i)1(e)-1(n)1(iac)27(h)-382(pr)1(z)-1(y)1(w)27(arte,)-382(kt\\363ry)1(c)27(h)-382(nie)-383(ma)-382(kto)-383(n)1(a)-383(\\261wiat)]TJ 0 -13.549 Td[(wypu)1(\\261)-1(ci\\242)-373(i)-372(p)-27(os)-1(zcz)-1(u)1(\\242)-373(na)-372(niepr)1(z)-1(y)1(jac)-1(i)1(o\\252y)83(..)1(.)-373(T)84(o)-373(si\\246)-373(i)-372(tu)1(m)27(ul)1(t)-373(srogi)-372(u)1(c)-1(zyni\\252,)-372(kr)1(z)-1(y)1(ki)-372(i)]TJ 0 -13.549 Td[(sprze)-1(ciwy)84(,)-290(b)-27(o)-290(s)-1(i\\246)-290(n)1(ar\\363)-28(d)-289(oz)-1(e\\271)-1(li)1(\\252)-290(i)-290(kr)1(z)-1(ywd)1(\\241)-290(s)-1(w)28(o)-56(j)1(\\241)-290(os)-1(tar)1(ga\\252)-290(na)-290(wn)1(\\241trzu,)-290(a)-290(n)1(a)-290(jedn)1(o)]TJ 0 -13.55 Td[(zgo)-28(dzi\\242)-447(s)-1(i\\246)-447(ni)1(e)-448(m\\363g\\252,)-447(b)-27(o)-447(ni)1(e)-448(b)28(y)1(\\252o)-447(takiego,)-447(kt\\363r)1(e)-1(n)-446(b)28(y)-447(sw)27(o)-55(j\\241)-447(mo)-28(c\\241)-447(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(epar)1(\\252)-334(i)-333(do)-333(p)-27(om)-1(st)28(y)-333(p)-28(o)28(wi\\363)-28(d)1(\\252...)]TJ 27.879 -13.549 Td[(Ku)1(pami)-383(si\\246)-384(zwie)-1(r)1(ali,)-382(a)-383(w)-384(k)56(a\\273dej)-383(b)28(y)1(\\252)-383(jak)28(o)28(wy\\261)-384(p)29(ys)-1(k)56(acz)-1(,)-383(k)1(t\\363ren)-383(wrze)-1(sz)-1(cza\\252)]TJ -27.879 -13.549 Td[(na)-55(jg\\252o\\261niej)-377(i)-377(p)-27(om)-1(sto)28(w)27(a\\252,)-377(z)-1(a\\261)-377(w)-1(skr)1(o\\261)-378(g\\241s)-1(zc)-1(zu)-377(u)28(wij)1(ali)-377(s)-1(i)1(\\246)-378(przo)-28(d)1(o)27(wn)1(ic)-1(y)-377(r)1(z)-1(u)1(c)-1(a)-55(j\\241c,)]TJ 0 -13.549 Td[(gdzie)-319(trzeba)-319(b)28(y)1(\\252)-1(o,)-318(to)-319(s\\252o)27(w)28(o)-319(ostre,)-319(\\273e)-319(ju\\273)-319(w)-319(k)28(o\\253)1(c)-1(u)-318(jeden)-319(d)1(ru)1(gie)-1(go)-318(nie)-319(s\\252ys)-1(za\\252,)-319(b)-27(o)]TJ 0 -13.55 Td[(ws)-1(zysc)-1(y)-333(ano)-333(wraz)-334(k)1(rzyc)-1(ze)-1(l)1(i.)-333(,)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363\\252)-334(l)1(as)-1(u)-333(p)-27(o\\252o\\273)-1(y)1(li,)-333(a)-333(takie)-334(d)1(\\246)-1(b)29(y)83(,)-333(\\273e)-334(w)-334(p)1(i\\246)-1(ciu)-333(c)28(h\\252opa)-333(ni)1(e)-334(ob)-27(e)-1(j)1(m)-1(ie.)]TJ\nET\nendstream\nendobj\n1097 0 obj <<\n/Type /Page\n/Contents 1098 0 R\n/Resources 1096 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1096 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1101 0 obj <<\n/Length 9213      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(342)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(K\\252\\246)-1(b)1(iak)-333(widzia\\252,)-333(K\\252\\246)-1(b)1(iak!)]TJ 0 -13.549 Td[({)-292(W)1(ytn\\241)-291(i)-292(r)1(e)-1(sz)-1(t)1(\\246)-1(,)-291(wytn\\241,)-291(ni)1(e)-292(b)-28(\\246d\\241)-291(w)27(a)-55(ju)-291(pr)1(os)-1(il)1(i)-292(o)-291(przyzw)27(ol)1(e)-1(\\253)1(s)-1(t)28(w)28(o!)-292({)-291(s)-1(kr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252a)-333(Koz)-1(\\252o)28(w)28(a)-334(p)1(rze)-1(cis)-1(k)56(a)-55(j\\241c)-334(si\\246)-334(k)1(u)-333(s)-1(zynk)1(w)27(aso)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wd)1(y)-334(n)1(ar\\363)-28(d)-332(krzywdzili,)-333(j)1(ak)-334(i)1(no)-333(m)-1(ogl)1(i.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(takie)-333(g\\252)-1(u)1(pi)1(e)-334(baran)29(y)-333(jez)-1(d)1(e)-1(\\261ta,)-333(to)-334(n)1(iec)27(h)-333(w)28(a)-56(j)1(u)-333(z)-1(ap)-27(\\246)-1(d)1(z)-1(a)-55(j\\241,)-333(k)56(a)-56(j)-333(c)28(hc\\241...)]TJ 0 -13.55 Td[({)-333(Nie)-334(d)1(a\\242)-334(s)-1(i)1(\\246)-1(,)-333(ni)1(e)-334(da\\242!)-333(Gromad\\241)-333(i\\261\\242)-1(,)-333(r)1(oz)-1(gon)1(i\\242)-1(,)-333(las)-333(o)-28(debr)1(a\\242)-1(!)]TJ 0 -13.549 Td[({)-333(Zak)55(atr)1(up)1(i\\242)-334(kr)1(z)-1(ywd)1(z)-1(icieli!)]TJ 0 -13.549 Td[({)-447(Zak)56(atru)1(pi\\242!)-447({)-447(wr)1(z)-1(asn\\246li)-447(n)1(araz)-447(i)-447(zno)28(wuj)-446(pi\\246\\261)-1(cie)-447(s)-1(i)1(\\246)-448(p)-27(o)-28(d)1(nios\\252y)-447(gro\\271ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)-326(b)1(uc)27(h)1(n\\241\\252)-326(ogromn)28(y)-326(i)-326(t\\252um)-326(c)-1(a\\252y)-326(za)27(wrza\\252)-326(niena)28(wi\\261c)-1(i\\241)-326(a)-326(p)-28(omst\\241,)-326(a)-327(gd)1(y)-326(przy-)]TJ 0 -13.549 Td[(cic)27(h)1(\\252)-1(o,)-333(M)1(ate)-1(u)1(s)-1(z)-333(krzyc)-1(za\\252)-334(p)1(rzy)-333(s)-1(zynk)1(w)27(asie)-334(d)1(o)-334(sw)27(oi)1(c)27(h:)]TJ 27.879 -13.549 Td[({)-408(C)-1(i)1(as)-1(n)1(o)-409(jest)-409(wsz)-1(ystkim)-408(kiej)-408(w)-409(te)-1(j)-408(siec)-1(i)1(,)-409(b)-27(o)-409(d)1(w)27(or)1(y)-409(wsz)-1(\\246dzie,)-409(ze)-409(ws)-1(zyst-)]TJ -27.879 -13.55 Td[(kic)28(h)-375(s)-1(t)1(ron,)-375(ki)1(e)-1(j)-375(te)-375(\\261)-1(cian)28(y)-375(\\261c)-1(isk)56(a)-56(j)1(\\241)-376(wie\\261)-376(i)-375(du)1(s)-1(z\\241,)-375(c)27(h)1(c)-1(es)-1(z)-376(k)1(ro)28(w)27(\\246)-375(p)-28(op)1(a\\261)-1(\\242)-376(za)-375(w)-1(si\\241)-375({)]TJ 0 -13.549 Td[(w)-400(dw)28(orskie)-400(wnet)-400(utk)1(nies)-1(z;)-400(k)28(on)1(ia)-400(wypu)1(\\261)-1(cisz)-401({)-400(d)1(w)27(or)1(s)-1(k)1(ie)-401(za)-400(mie)-1(d)1(z)-1(\\241;)-399(k)56(am)-1(ieni)1(e)-1(m)]TJ 0 -13.549 Td[(cie)-1(p)1(n\\241\\242)-392(nie)-392(mo\\273)-1(n)1(a,)-392(b)-28(o)-392(w)-392(dw)28(orskie)-392(pad)1(nie!..)1(.)-392(a)-392(z)-1(ar)1(az)-393(za)-56(j)1(m)-1(\\241,)-392(zaraz)-392(s)-1(\\241d)1(y)83(,)-392(zaraz)]TJ 0 -13.549 Td[(sz)-1(tr)1(afy!)]TJ 27.879 -13.549 Td[({)-242(P)1(ra)28(wda!)-241(pr)1(a)27(wd)1(a!)-242(\\212\\241k)56(a)-242(d)1(obr)1(a)-242(d)1(w)27(a)-241(p)-28(ok)28(osy-da)-56(j)1(e)-242({)-242(d)1(w)27(or)1(s)-1(k)56(a)-242(j)1(u\\261c)-1(i)1(;)-242(n)1(a)-56(j)1(le)-1(p)1(s)-1(ze)]TJ -27.879 -13.55 Td[(p)-27(ole)-334({)-333(dw)28(orskie,)-333(las)-334({)-333(dw)28(ors)-1(k)1(ie)-334({)-333(ws)-1(zys)-1(t)1(k)28(o)-334({)-333(pr)1(z)-1(ytak)1(iw)27(al)1(i.)]TJ 27.879 -13.549 Td[({)-473(A)-472(t)28(y)83(,)-472(nar)1(o)-28(dzie,)-473(n)1(a)-473(pi)1(as)-1(k)56(ac)27(h)-472(sie)-1(d)1(\\271)-1(,)-472(\\252a)-56(j)1(nem)-473(s)-1(i\\246)-473(ogr)1(z)-1(ew)27(a)-55(j)-472(i)-473(zm)-1(i)1(\\252)-1(o)28(w)28(ania)]TJ -27.879 -13.549 Td[(P)28(a\\253)1(s)-1(ki)1(e)-1(go)-333(c)-1(zek)55(a)-55(j!)]TJ 27.879 -13.549 Td[({)-333(Odebr)1(a\\242)-334(lasy)83(,)-333(o)-28(d)1(e)-1(b)1(ra\\242)-334(ziem)-1(i\\246!)-333(Nie)-334(d)1(a\\242)-334(sw)27(o)-55(jego!)]TJ 0 -13.549 Td[(D\\252ugo)-437(tak)-438(k)1(rzyc)-1(ze)-1(l)1(i)-438(cie)-1(p)1(i\\241c)-438(si\\246)-438(w)-438(r\\363\\273ne)-438(s)-1(t)1(ron)28(y)84(,)-438(p)-27(oms)-1(tu)1(j\\241c)-438(i)-438(p)-27(ogra\\273a)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(srogo,)-416(a)-416(\\273e)-417(r)1(adzili)-416(g\\252o\\261no)-416(i)-415(z)-417(gor\\241co\\261c)-1(i\\241)-416(n)1(iem)-1(a\\252\\241,)-416(t)1(o)-416(niejedn)1(e)-1(m)28(u)-416(tr)1(z)-1(a)-416(si\\246)-416(b)28(y\\252o)]TJ 0 -13.549 Td[(nap)1(i\\242)-383(gor)1(z)-1(a\\252ki)-382(d)1(la)-382(p)-28(okr)1(z)-1(epieni)1(a,)-382(dru)1(gie)-383(za\\261)-383(pi)1(w)27(o)-382(la)-382(o)-28(c)27(h)1(\\252o)-28(dy)-382(p)1(ili,)-382(a)-382(trze)-1(cim)-382(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(p)-28(omin)1(a\\252)-1(y)-333(n)1(ie)-334(d)1(o)-56(jedzone)-333(k)28(olac)-1(j)1(e)-1(,)-333(\\273e)-334(kr)1(z)-1(yk)56(ali)-333(n)1(a)-334(\\233yd)1(a)-333(o)-334(c)28(hleb)-333(i)-333(\\261)-1(l)1(e)-1(d)1(z)-1(ie.)]TJ 27.879 -13.549 Td[(Ale)-345(gd)1(y)-345(sobie)-345(p)-27(o)-28(d)1(jedli)-344(a)-345(p)-27(o)-28(d)1(pil)1(i,)-345(p)1(rze)-1(st)28(ygli)-344(m)-1(o)-27(c)-1(n)1(o)-345(z)-345(z)-1(a)28(wzi\\246)-1(to\\261ci)-345(i)-344(z)-1(acz)-1(\\246li)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(w)28(olna)-333(rozc)27(h)1(o)-28(dzi\\242)-334(n)1(ic)-334(n)1(ie)-334(p)-27(os)-1(tan)1(o)28(w)-1(i)1(w)-1(szy)83(.)]TJ 27.879 -13.55 Td[(Mateusz)-299(z)-1(a\\261)-299(wraz)-299(z)-300(K)1(obu)1(s)-1(em)-300(i)-298(An)28(tki)1(e)-1(m,)-299(kt\\363r)1(e)-1(n)-298(ju)1(\\273)-300(ca\\252y)-299(cz)-1(as)-299(n)1(a)-299(b)-28(ok)1(u)-299(si\\246)]TJ -27.879 -13.549 Td[(trzyma\\252)-342(i)-342(cos)-1(i)1(k)-342(sw)27(o)-55(jego)-342(k)55(al)1(kul)1(o)27(w)28(a\\252,)-342(p)-27(os)-1(zli)-341(do)-342(K\\252\\246ba)-342(i)-341(z)-1(asta)28(ws)-1(zy)-342(jesz)-1(cz)-1(e)-342(gosp)-28(o-)]TJ 0 -13.549 Td[(dar)1(z)-1(y)84(,)-333(ws)-1(p)-27(\\363lni)1(e)-334(z)-334(ni)1(m)-1(i)-333(u)1(radzili)-333(co\\261)-334(n)1(a)-334(j)1(utr)1(o)-334(i)-333(cic)27(h)1(o)-334(r)1(oz)-1(es)-1(zli)-333(s)-1(i)1(\\246)-334(p)-27(o)-334(c)28(ha\\252up)1(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(No)-28(c)-229(te\\273)-229(ju)1(\\273)-229(b)28(y\\252o)-228(p)-28(\\363\\271na,)-228(\\261)-1(wiat\\252a)-228(p)-28(ogas\\252y)-228(w)-229(izbac)27(h)1(,)-229(cic)28(ho\\261\\242)-229(pad\\252a)-228(na)-228(w)-1(i)1(e)-1(\\261,)-229(\\273e)]TJ -27.879 -13.549 Td[(jeno)-338(k)1(ie)-1(j)1(\\261)-338(niekiej)-338(p)1(ie)-1(s)-338(zas)-1(zc)-1(ze)-1(k)56(a\\252)-338(alb)-27(o)-338(wiatr)-338(zas)-1(zumia\\252,)-337(\\273)-1(e)-338(przem)-1(ar)1(z)-1(\\252e)-338(drze)-1(win)29(y)]TJ 0 -13.55 Td[(t\\252uk)1(\\252y)-480(si\\246)-480(w)-479(mrok)56(ac)27(h)-479(o)-479(s)-1(i)1(e)-1(b)1(ie)-480(kiej)-479(n)1(ie)-1(p)1(rzyjacio\\252y)84(,)-480(a)-479(p)-27(ote)-1(m)-479(d\\252u)1(go)-480(i)-479(tr)1(w)27(o\\273nie)]TJ 0 -13.549 Td[(sz)-1(em)-1(r)1(a\\252y)83(.)-325(Pr)1(z)-1(ymroze)-1(k)-325(wzi\\241\\252)-326(galan)29(t)28(y)83(,)-325(p\\252ot)28(y)-325(p)-28(ob)1(iela\\252y)-325(o)-28(d)-325(s)-1(zron)28(u)1(,)-325(ale)-326(jak)28(o\\261)-326(zaraz)]TJ 0 -13.549 Td[(z)-426(p)-27(\\363\\252)-1(n)1(o)-28(c)27(k)56(a)-425(gw)-1(i)1(az)-1(dy)-425(si\\246)-426(s)-1(kr)1(y\\252y)83(,)-425(p)-27(o)-28(c)-1(i)1(e)-1(mni)1(a\\252)-1(o)-425(i)-426(zrob)1(i\\252o)-426(si\\246)-426(na)-426(\\261wiec)-1(ie)-426(p)-27(os)-1(\\246pn)1(ie,)]TJ 0 -13.549 Td[(strasz)-1(n)1(o)-334(j)1(ak)28(o\\261)-1(..)1(.)]TJ 27.879 -13.549 Td[(Ca\\252y)-361(nar\\363)-27(d)-361(le\\273)-1(a\\252)-361(w)27(e)-361(\\261)-1(p)1(iku)1(,)-361(ale)-362(se)-1(n)-361(b)29(y\\252)-362(ci\\246\\273)-1(k)1(i)-362(i)-361(gor)1(\\241c)-1(zk)28(o)28(w)-1(y)84(,)-361(b)-27(o)-362(r)1(az)-362(w)-361(raz)]TJ -27.879 -13.549 Td[(zryw)28(a\\252)-434(s)-1(i\\246)-434(cic)27(h)28(y)-433(p\\252acz)-435(d)1(z)-1(ieci\\241te)-1(k)1(,)-434(to)-434(ktosik)-433(bud)1(z)-1(i)1(\\252)-434(s)-1(i\\246)-434(ca\\252)-1(y)-433(w)-434(p)-28(otac)28(h)-434(i)-433(takim)]TJ 0 -13.55 Td[(strac)27(h)29(u)-383(dziwn)28(ym,)-383(\\273)-1(e)-383(pacie)-1(r)1(z)-1(em)-384(d)1(usz)-1(\\246)-383(krze)-1(p)1(i\\242)-384(m)28(usia\\252;)-383(gdzie)-384(zno)28(wu)-383(h)28(u)1(ki)-383(jak)1(ie)-1(\\261)]TJ 0 -13.549 Td[(spa\\242)-264(nie)-264(da)28(w)27(a\\252y)84(,)-264(\\273e)-265(zryw)28(ali)-264(si\\246)-265(wygl)1(\\241da\\242,)-264(c)-1(zy)-264(n)1(ie)-265(z\\252o)-28(dzieje;)-264(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-264(za\\261)-264(krzyc)-1(za\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-401(se)-1(n)1(,)-401(p)-27(o)28(wie)-1(d)1(a)-56(j)1(\\241c)-401(p)-27(ote)-1(m,)-400(\\273)-1(e)-401(zmora)-400(go)-401(d)1(usi\\252a;)-400(to)-401(gd)1(z)-1(i)1(e)-1(sik)-400(psy)-401(za)28(wy\\252y)-400(tak)]TJ 0 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-1(,)-333(a\\273)-334(se)-1(r)1(c)-1(a)-333(tru)1(c)27(h)1(la\\252y)-333(z)-334(trw)28(ogi,)-333(pr)1(z)-1(era\\273a)-56(j\\241cyc)28(h)-333(przec)-1(zu\\242)-334(i)-333(ob)1(a)27(w.)]TJ 27.879 -13.549 Td[(No)-28(c)-446(si\\246)-446(wlek\\252a)-446(d)1(\\252ugo)-445(i)-446(ci\\246\\273)-1(k)28(o,)-445(opr)1(z)-1(\\246dza)-56(j)1(\\241c)-446(du)1(s)-1(ze)-446(trw)28(og\\241,)-445(niep)-27(ok)28(o)-56(jem)-446(i)]TJ -27.879 -13.55 Td[(strasz)-1(n)28(y)1(m)-1(i)-333(snami,)-333(p)-28(e\\252n)28(ymi)-333(mar)-333(i)-334(wid)1(z)-1(e\\253)-333(gor\\241cz)-1(k)28(o)28(wyc)28(h.)]TJ 27.879 -13.549 Td[(A)-445(sk)28(oro)-445(si\\246)-445(jeno)-444(ucz)-1(yn)1(i\\252)-445(\\261w)-1(i)1(t,)-445(\\273e)-446(c)28(h)28(yla)-444(t)27(y)1(la)-445(rozedni)1(a\\252)-1(o)-444(i)-445(j)1(aki)-445(taki)-444(o)-28(cz)-1(y)]TJ\nET\nendstream\nendobj\n1100 0 obj <<\n/Type /Page\n/Contents 1101 0 R\n/Resources 1099 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1086 0 R\n>> endobj\n1099 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1104 0 obj <<\n/Length 9444      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(343)]TJ -358.232 -35.866 Td[(ozw)27(ar\\252)-442(i)-442(ci\\246\\273)-1(k)56(\\241,)-442(se)-1(n)1(n\\241)-442(jesz)-1(cz)-1(e)-442(g\\252o)27(w)28(\\246)-443(p)-27(o)-28(d)1(nosi\\252,)-442(An)28(tek)-442(p)-27(obieg\\252)-442(na)-442(dzw)27(on)1(ni)1(c)-1(\\246)-442(i)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252)-334(b)1(i\\242)-334(w)-334(d)1(z)-1(w)28(on)-333(ki)1(e)-1(b)28(y)-333(n)1(a)-334(p)-27(o\\273ar...)]TJ 27.879 -13.549 Td[(Pr)1(\\363\\273)-1(n)1(o)-416(m)27(u)-415(bron)1(i\\252)-416(Jam)27(b)1(ro\\273y)-416(w)28(e)-1(sp)-28(\\363\\252)-416(z)-416(organi)1(s)-1(t\\241,)-415(s)-1(kl)1(\\241\\252)-417(i)1(c)27(h,)-415(c)27(hcia\\252)-416(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(bi)1(\\242)-334(i)-333(s)-1(w)28(o)-56(j)1(e)-334(rob)1(i\\252)-334(z)-333(c)-1(a\\252ej)-333(m)-1(o)-27(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Dzw)27(on)-338(z)-1(a\\261)-339(b)1(i\\252)-339(w)27(ol)1(no,)-339(b)-27(ez)-1(u)1(s)-1(tan)1(nie)-339(a)-339(tak)-338(p)-27(on)28(ur)1(o,)-339(a\\273)-339(s)-1(tr)1(ac)27(h)-338(pad)1(\\252)-339(na)-339(se)-1(r)1(c)-1(a,)]TJ -27.879 -13.55 Td[(\\273e)-266(lu)1(dzie)-265(s)-1(tr)1(w)27(o\\273e)-1(n)1(i,)-265(wyl)1(\\246)-1(kl)1(i)-265(wybi)1(e)-1(gali)-264(na)-265(p)-27(\\363\\252)-265(ub)1(ran)1(i)-265(p)28(yta\\242,)-265(co)-265(si\\246)-266(sta\\252o)-265(i)-265(osta)28(w)27(al)1(i)]TJ 0 -13.549 Td[(ju)1(\\273)-322(pr)1(z)-1(ed)-322(c)28(ha\\252u)1(pami)-322(j)1(akb)28(y)-321(w)-322(s)-1(k)56(amienieniu)1(,)-321(tak)-322(zas)-1(\\252u)1(c)27(han)1(i,)-321(b)-28(o)-321(dzw)27(on)-321(w)28(c)-1(i\\241\\273)-322(b)1(i\\252)]TJ 0 -13.549 Td[(i)-317(h)29(ucz)-1(a\\252)-317(p)-27(on)28(ur)1(ym,)-317(wielkim)-317(g\\252os)-1(em)-317(w)-317(\\261)-1(wito)28(wyc)28(h)-317(b)1(rz)-1(ask)56(ac)27(h)1(,)-317(a\\273)-317(z)-1(iemia)-317(dy)1(gota\\252a,)]TJ 0 -13.549 Td[(a\\273)-361(wys)-1(tr)1(as)-1(zone)-361(pt)1(ac)-1(t)28(w)28(o)-361(uciek)55(a\\252o)-361(k)1(u)-361(b)-27(orom,)-361(a)-360(nar\\363)-27(d)-361(p)1(rze)-1(tr)1(w)27(o\\273on)28(y)-361(\\273e)-1(gn)1(a\\252)-361(si\\246)-361(i)]TJ 0 -13.549 Td[(skrze)-1(p)1(ia\\252)-410(w)-410(sobie,)-410(b)-27(o)-28(\\242)-410(ju)1(\\273)-410(i)-410(Mateusz,)-410(Kob)1(us)-410(a)-410(d)1(rugi)-409(biegali)-409(p)-28(o)-409(w)-1(si)-410(\\252omo)-28(cz)-1(\\241c)]TJ 0 -13.549 Td[(kij)1(ami)-334(w)-333(p\\252ot)28(y)-333(i)-333(krzycz)-1(\\241c:)]TJ 27.879 -13.55 Td[({)-333(Na)-334(l)1(as)-1(!)-333(Na)-333(las)-1(!)-333(Wy)1(c)27(ho)-27(d\\271,)-333(kto)-333(\\273)-1(yw!)-333(P)28(o)-28(d)-332(k)55(ar)1(c)-1(zm)-1(\\246!)-333(Na)-334(l)1(as)-1(!.)1(..)]TJ 0 -13.549 Td[(T)83(o)-472(i)-472(na)-472(\\252e)-1(b)-472(i)-472(sz)-1(yj)1(\\246)-473(pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(ali)-472(s)-1(i)1(\\246)-1(,)-472(\\273e)-473(ni)1(e)-1(jeden)-472(j)1(e)-1(sz)-1(cz)-1(e)-472(w)-473(dr)1(o)-28(dze)-473(si\\246)]TJ -27.879 -13.549 Td[(dop)1(in)1(a\\252)-1(,)-318(a)-319(p)1(ac)-1(ierz)-319(k)28(o\\253)1(c)-1(zy\\252)-319(i)-319(w)-318(dyr)1(dy)-319(b)1(ie\\273)-1(a\\252)-319(p)-27(o)-28(d)-318(k)56(arcz)-1(m\\246)-1(,)-318(gdzie)-319(ju)1(\\273)-319(s)-1(to)-55(ja\\252)-319(K\\252\\241b)]TJ 0 -13.549 Td[(z)-334(n)1(ie)-1(k)1(t\\363rymi)-333(gos)-1(p)-27(o)-28(d)1(arzam)-1(i.)]TJ 27.879 -13.549 Td[(Zaroi\\252y)-406(si\\246)-407(wnet)-406(drogi)1(,)-407(op)1(\\252otki,)-406(ob)-27(e)-1(j)1(\\261)-1(cia,)-406(za)27(wrza\\252y)-406(naraz)-406(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-407(c)27(h)1(a-)]TJ -27.879 -13.55 Td[(\\252up)29(y)83(,)-329(dziec)-1(i)-329(p)-27(o)-28(dn)1(ies)-1(\\252y)-329(ni)1(e)-1(ma\\252y)-329(w)-1(r)1(z)-1(ask,)-329(k)28(obi)1(e)-1(t)28(y)-329(krzyk)56(a\\252y)-329(przez)-330(s)-1(ad)1(y)83(,)-329(r)1(w)27(ete)-1(s)-329(p)-28(o-)]TJ 0 -13.549 Td[(ws)-1(ta\\252)-333(taki,)-333(b)1(ieganin)1(a,)-333(jak)-333(gdy)1(b)28(y)-333(p)-28(o\\273ar)-333(wybu)1(c)27(hn)1(\\241\\252)-334(w)28(e)-334(wsi.)]TJ 27.879 -13.549 Td[({)-411(Na)-412(las!)-411(Kto)-411(ino)-411(ma)-412(z)-412(cz)-1(y)1(m)-1(,)-411(k)28(os\\246)-1(,)-411(to)-411(z)-412(k)28(os)-1(\\241,)-411(ce)-1(p)28(y)84(,)-411(k\\252oni)1(c)-1(e,)-412(siekiery)84(,)-412(a)]TJ -27.879 -13.549 Td[(br)1(a\\242)-1(!)]TJ 27.879 -13.549 Td[({)-333(Na)-334(l)1(as)-1(!)-333({)-333(krzykiem)-334(t)28(ym)-333(trz\\246)-1(s\\252o)-334(si\\246)-334(p)-27(o)28(wie)-1(tr)1(z)-1(e)-334(i)-333(h)29(ucz)-1(a\\252a)-333(w)-1(i)1(e)-1(\\261)-334(ca\\252a.)]TJ 0 -13.55 Td[(Dzie)-1(\\253)-415(si\\246)-417(j)1(u\\273)-416(zrobi\\252)-416(d)1(u\\273y)83(,)-415(a)-416(c)-1(i)1(c)27(h)28(y)-415(b)28(y\\252,)-416(j)1(as)-1(n)28(y)84(,)-416(omglon)28(y)-415(jes)-1(zc)-1(ze)-416(i)-416(mro\\271)-1(n)29(y)83(,)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(a)-348(sto)-55(ja\\252y)-348(w)-348(os)-1(\\246dzieliznie)-348(kiej)-347(w)-349(p)1(a)-56(j)1(\\246)-1(cz)-1(y)1(nac)27(h)1(,)-348(dr)1(ogi)-348(c)27(h)1(ru)1(pa\\252y)-348(p)-27(o)-28(d)-347(nogami)]TJ 0 -13.549 Td[(s\\252)-1(ab)1(\\241)-328(gr)1(ud)1(z)-1(i\\241,)-327(w)28(o)-28(dy)-327(si\\246)-328(\\261)-1(ci\\246\\252y)83(,)-327(\\273e)-328(p)-28(e\\252no)-327(b)28(y\\252o)-327(z)-1(amarz\\252yc)27(h)-327(k)56(a\\252u\\273y)-328(k)1(ie)-1(j)-327(t)1(e)-1(go)-327(s)-1(zk\\252a)]TJ 0 -13.549 Td[(p)-27(otrzas)-1(k)56(anego,)-394(w)-395(n)1(oz)-1(d)1(rzac)27(h)-394(wierc)-1(i)1(\\252o)-395(ostre,)-394(rz)-1(e\\271w)27(e)-395(p)-27(o)28(wie)-1(tr)1(z)-1(e,)-394(a)-395(t)1(ak)-395(s\\252uc)28(hli)1(w)27(e,)]TJ 0 -13.549 Td[(\\273e)-334(c)-1(a\\252ym)-333(\\261)-1(wiatem)-334(sz)-1(\\252y)-333(te)-334(k)1(rzyki)-333(a)-333(w)-1(r)1(z)-1(a)28(w)28(a)-1(.)]TJ 27.879 -13.55 Td[(Ale)-383(p)1(rz)-1(y)1(c)-1(ic)28(ha\\252o)-383(z)-383(w)28(olna,)-382(b)-27(o)-383(za)27(wzi\\246)-1(to\\261\\242)-383(pr)1(z)-1(ejmo)28(w)27(a\\252a)-383(serc)-1(a)-382(i)-383(j)1(ak)55(a\\261)-383(sroga,)]TJ -27.879 -13.549 Td[(p)-27(e)-1(wna)-358(s)-1(iebi)1(e)-1(,)-358(nieust\\246pliw)28(a)-359(mo)-28(c)-359(z)-1(ak)56(amieni\\252a)-359(d)1(usz)-1(e)-359(i)-358(oblek)56(a\\252a)-359(je)-359(w)-359(tak)56(\\241)-359(sur)1(o)27(w)28(\\241)]TJ 0 -13.549 Td[(p)-27(o)27(w)28(ag\\246,)-334(i)1(\\273)-334(m)-1(i)1(lkli)-333(b)-27(e)-1(zwiedni)1(e)-334(z)-1(at)1(apia)-55(j\\241c)-334(si\\246)-334(w)-333(s)-1(ob)1(ie)-1(.)]TJ 27.879 -13.549 Td[(T\\252um)-318(w)28(c)-1(i)1(\\241\\273)-318(s)-1(i\\246)-318(zwi\\246ks)-1(za\\252,)-318(za)-56(j)1(\\246)-1(l)1(i)-318(j)1(u\\273)-318(ca\\252y)-318(p)1(lac)-318(p)1(rz)-1(ed)-317(k)56(arcz)-1(m\\241)-318(a\\273)-318(d)1(o)-318(d)1(rogi,)]TJ -27.879 -13.549 Td[(sto)-56(j)1(\\241c)-334(g\\246)-1(sto,)-333(rami\\246)-334(p)1(rzy)-334(r)1(am)-1(i)1(e)-1(n)1(iu,)-333(a)-333(jes)-1(zc)-1(ze)-334(p)1(rzyb)28(yw)28(ali)-333(s)-1(p)-27(\\363\\271nieni)1(.)]TJ 27.879 -13.55 Td[(Wit)1(ano)-278(si\\246)-279(w)-278(milcz)-1(eni)1(u,)-278(k)56(a\\273den)-278(sta)28(w)27(a\\252,)-278(gd)1(z)-1(ie)-278(p)-27(opad)1(\\252)-1(o,)-277(obzie)-1(r)1(a\\252)-278(s)-1(i)1(\\246)-279(n)1(aok)28(\\363\\252)]TJ -27.879 -13.549 Td[(i)-333(c)-1(zek)55(a\\252)-333(c)-1(i)1(e)-1(rp)1(liwie)-333(na)-333(s)-1(tar)1(s)-1(zyzn\\246,)-334(k)1(t\\363ra)-333(p)-28(osz)-1(\\252a)-333(p)-27(o)-334(Bory)1(n\\246.)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(r)1(w)-1(sz)-1(y)-433(b)29(y\\252)-434(an)1(o)-433(w)27(e)-433(w)-1(si,)-433(to)-433(jem)27(u)-432(s)-1(i\\246)-433(nale\\273)-1(a\\252o)-433(nar)1(\\363)-28(d)-433(p)-27(opr)1(o)27(w)28(adzi\\242,)-433(b)-28(ez)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go)-333(\\273)-1(ad)1(e)-1(n)-333(gosp)-27(o)-28(dar)1(z)-334(b)28(y)-333(si\\246)-334(ni)1(e)-334(ru)1(s)-1(zy\\252.)]TJ 27.879 -13.549 Td[(St)1(o)-56(jal)1(i)-360(wi\\246c)-361(cierz)-1(p)1(liwie)-360(a)-360(cic)27(h)1(o,)-360(kiej)-359(te)-1(n)-359(b)-28(\\363r)-359(z)-1(b)1(it)28(y)-360(w)-360(g\\246s)-1(t)28(w)28(\\246)-361(i)-359(z)-1(as\\252uc)28(han)28(y)]TJ -27.879 -13.549 Td[(w)-358(g\\252osy)83(,)-357(jak)1(ie)-358(z)-358(ni)1(e)-1(go)-357(id\\241,)-357(i)-357(w)-358(te)-358(b)-27(e\\252k)28(ot)27(y)-357(stru)1(g,)-358(co)-358(gd)1(z)-1(i)1(e)-1(sik)-357(m)-1(i)1(\\246)-1(d)1(z)-1(y)-357(k)28(orze)-1(n)1(iami)]TJ 0 -13.55 Td[(p\\252y)1(n\\241...)-357(cz)-1(ase)-1(m)-357(jeno)-357(to)-358(j)1(akie)-358(s\\252o)28(w)27(o)-357(pr)1(z)-1(ele)-1(cia\\252o,)-357(c)-1(zase)-1(m)-358(cz)-1(y)1(ja\\261)-358(p)1(i\\246)-1(\\261\\242)-358(wyc)28(h)28(yn\\246\\252a)]TJ 0 -13.549 Td[(w)-369(g\\363r)1(\\246)-1(,)-368(to)-368(jak)1(ie)-1(\\261)-368(o)-28(c)-1(zy)-368(rozgorza)-1(\\252y)-368(b)28(y)1(s)-1(tr)1(z)-1(ej,)-368(to)-368(bar)1(anice)-369(zak)28(ole)-1(b)1(a\\252y)-368(s)-1(i\\246)-368(m)-1(o)-28(cni)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(to)-309(cz)-1(y)1(ja\\261)-309(t)28(w)27(ar)1(z)-310(p)-27(o)-28(cz)-1(erwieni)1(a\\252)-1(a)-308(barzej)-309(i)-308(z)-1(n)1(o)27(wu)-308(ni)1(e)-1(ru)1(c)27(h)1(om)-1(i)1(e)-1(li)1(,)-309(\\273e)-310(wid)1(z)-1(i)1(e)-1(li)-308(s)-1(i)1(\\246)-310(k)1(ie)-1(j)]TJ 0 -13.549 Td[(te)-334(snop)29(y)83(,)-333(usta)28(wione)-334(wp)-27(o)-28(d)1(le)-334(sie)-1(b)1(ie)-334(g\\246s)-1(to.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-295(p)1(rzylec)-1(i)1(a)-1(\\252,)-294(p)1(rze)-1(cis)-1(k)56(a\\252)-294(ws)-1(kr)1(o\\261)-295(g\\246)-1(st)28(wy)-294(i)-295(zacz)-1(\\241\\252)-294(nar\\363)-27(d)-294(o)-28(dw)28(o)-28(d)1(z)-1(i\\242,)-294(s)-1(tr)1(a-)]TJ -27.879 -13.55 Td[(sz)-1(y\\242,)-469(\\273e)-470(za)-469(to,)-469(co)-469(z)-1(am)28(y\\261)-1(l)1(a)-56(j)1(\\241,)-469(c)-1(a\\252a)-469(wie\\261)-470(p)-27(\\363)-56(j)1(dzie)-469(w)-470(k)56(a)-55(jd)1(an)28(y)-469(i)-469(zm)-1(ar)1(nieje,)-469(a)-469(za)]TJ 0 -13.549 Td[(ni)1(m)-330(m)-1(\\252y)1(narz)-330(p)-27(o)28(wtarza\\252)-330(to)-329(s)-1(amo,)-329(ale)-330(nik)1(to)-330(n)1(ie)-330(zw)27(a\\273a\\252)-330(na)-329(ni)1(c)27(h)-329(ni)-329(s\\252uc)27(h)1(a\\252)-330({)-329(w)-1(i)1(e)-1(-)]TJ\nET\nendstream\nendobj\n1103 0 obj <<\n/Type /Page\n/Contents 1104 0 R\n/Resources 1102 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1102 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1108 0 obj <<\n/Length 9246      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(344)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dzian)1(o)-422(b)-27(o)28(wie)-1(m)-421(dob)1(rze)-1(,)-421(\\273e)-422(ob)1(a)-56(j)-421(d)1(w)27(oro)28(wi)-421(si\\246)-422(wys\\252uguj)1(\\241)-421(i)-421(s)-1(w)28(\\363)-56(j)-421(ma)-55(j\\241)-421(in)28(teres)-422(w)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(zk)56(adzaniu)1(.)]TJ 27.879 -13.549 Td[(I)-333(R)-1(o)-27(c)27(ho)-333(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252,)-333(i)-334(ze)-334(\\252zam)-1(i)-333(p)1(rz)-1(ek\\252ad)1(a\\252)-334(p)-27(o)-28(dob)1(ni)1(e)-334({)-334(n)1(ie)-334(p)-27(omog\\252)-1(o.)]TJ 0 -13.549 Td[(A\\273)-438(w)-438(k)28(o\\253cu)-437(i)-438(ksi\\241dz)-438(p)1(rzylec)-1(ia\\252)-438(i)-437(j\\241\\252)-437(s)-1(w)28(o)-56(je)-438(p)1(ra)28(wi\\242)-438({)-438(ni)1(e)-439(u)1(s)-1(\\252u)1(c)27(hal)1(i,)-438(stali)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)-27(oru)1(s)-1(ze)-1(n)1(i,)-274(n)1(ikt)-274(cz)-1(ap)1(ki)-274(na)28(w)28(e)-1(t)-274(n)1(ie)-275(zdj)1(\\241\\252,)-274(ni)1(kt)-274(go)-274(w)-275(r)1(\\246)-1(k)28(\\246)-274(nie)-274(p)-27(o)-28(c)-1(a\\252o)28(w)28(a\\252)-1(,)-273(a)-274(ktos)-1(i)1(k)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-333(g\\252o\\261no,)-333(krzykn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(P\\252ac\\241)-334(m)28(u,)-333(to)-333(pr)1(a)27(wi!)]TJ 0 -13.549 Td[({)-333(Kaz)-1(an)1(iem)-334(kr)1(z)-1(ywd)1(y)-334(n)1(ie)-334(zap\\252aci)-333({)-334(kt)1(os)-1(ik)-333(d)1(orzuci\\252)-334(u)1(r\\241)-28(gli)1(w)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(A)-358(tak)-359(p)1(atrzyli)-358(p)-27(on)28(ur)1(o)-359(i)-358(z)-1(a)28(wz)-1(i)1(\\246)-1(cie,)-359(\\273e)-359(ksi\\241dz)-359(si\\246)-359(r)1(oz)-1(p)1(\\252)-1(ak)56(a\\252,)-358(nie)-359(p)1(rze)-1(sta)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(na)-349(wsz)-1(ystkie)-349(\\261)-1(wi\\246to\\261)-1(ci)-349(zaklin)1(a\\242)-1(,)-349(b)28(y)-349(si\\246)-349(opami\\246)-1(t)1(ali)-349(a)-350(d)1(o)-349(dom\\363)28(w)-350(rozes)-1(zli,)-349(ale)-349(nie)]TJ 0 -13.549 Td[(sk)28(o\\253cz)-1(y\\252,)-333(b)-27(o)-334(p)1(rzys)-1(zed\\252)-333(B)-1(or)1(yna,)-333(i)-333(ca\\252)-1(y)-333(n)1(ar\\363)-28(d)-333(d)1(o)-334(n)1(iego)-334(si\\246)-334(o)-27(dwr\\363)-28(ci\\252.)]TJ 27.879 -13.55 Td[(Maciej)-483(bl)1(ady)-483(b)28(y\\252)-483(kiej)-483(\\261c)-1(ian)1(a)-483(i)-483(s)-1(u)1(ro)28(w)-1(y)84(,)-483(\\273e)-484(a\\273)-484(mr\\363z)-484(sze)-1(d)1(\\252)-484(o)-28(d)-482(niego,)-483(ale)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)-315(j)1(arzy\\252y)-315(m)27(u)-315(si\\246)-316(ki)1(e)-1(j)-315(wilk)28(o)28(wi,)-315(sz)-1(ed\\252)-315(wypr)1(os)-1(to)28(w)28(an)28(y)83(,)-315(c)28(hm)27(u)1(rn)28(y)-315(a)-315(p)-27(e)-1(wn)28(y)-315(sie)-1(b)1(ie,)]TJ 0 -13.549 Td[(zna)-56(j)1(omk)28(\\363)27(w)-371(p)-27(oz)-1(d)1(ra)28(wia\\252)-371(skini)1(e)-1(n)1(ie)-1(m)-371(i)-371(o)-27(c)-1(zam)-1(i)-370(p)-28(o)-370(lud)1(z)-1(iac)28(h)-371(w)28(o)-28(d)1(z)-1(i\\252,)-370(roz)-1(st\\241)-28(p)1(iali)-370(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-385(n)1(im)-386(czyni\\241c)-385(w)27(ol)1(ne)-385(prze)-1(j)1(\\261)-1(cie,)-385(a)-385(on)-385(ws)-1(t\\241)-27(pi\\252)-385(n)1(a)-386(b)-27(elki)-385(le\\273\\241c)-1(e)-385(p)-28(o)-28(d)-384(k)56(arc)-1(zm\\241,)]TJ 0 -13.549 Td[(lec)-1(z)-333(nim)-333(prze)-1(m\\363)28(wi\\252,)-333(z)-1(acz)-1(\\246li)-333(w)-334(t\\252u)1(m)-1(i)1(e)-334(krzycz)-1(e\\242)-1(:)]TJ 27.879 -13.55 Td[({)-333(Pro)28(w)28(ad\\271c)-1(i)1(e)-1(,)-333(Macieju)1(!)-334(P)1(ro)28(w)27(ad)1(\\271)-1(cie!)]TJ 0 -13.549 Td[({)-333(Na)-334(l)1(as)-1(!)-333(Na)-333(las)-1(!)-333({)-333(dar)1(\\252y)-334(si\\246)-334(d)1(ru)1(gie)-1(.)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(k)1(ie)-1(j)-333(p)1(rzycic)27(h\\252o,)-333(p)-27(o)-28(c)27(h)29(yli\\252)-333(s)-1(i)1(\\246)-1(,)-333(wyci\\241)-28(gn)1(\\241\\252)-334(r\\246c)-1(e)]TJ 0 -13.549 Td[(i)-333(j\\241\\252)-333(wie)-1(l)1(kim)-334(g\\252ose)-1(m)-333(w)27(o\\252a\\242:)]TJ 0 -13.549 Td[({)-382(Naro)-28(d)1(z)-1(ie)-382(c)27(hr)1(z)-1(e\\261)-1(cij)1(a)-1(\\253)1(s)-1(k)1(i,)-382(P)28(olaki)-382(spr)1(a)27(wiedl)1(iw)27(e,)-382(gos)-1(p)-27(o)-28(d)1(arz)-1(e)-382(a)-383(k)28(omorn)1(iki!)]TJ -27.879 -13.55 Td[(Kr)1(z)-1(ywd)1(a)-232(si\\246)-232(n)1(am)-232(wsz)-1(ystkim)-231(s)-1(t)1(a\\252)-1(a,)-231(k)1(rzywda)-231(r\\363)28(wna,)-231(jak)1(ie)-1(j)-230(ni)-231(\\261c)-1(ierp)1(ie\\242)-1(,)-231(n)1(i)-231(p)-28(o)-28(d)1(aro-)]TJ 0 -13.549 Td[(w)28(a\\242)-1(!)-272(Dw)27(\\363r)-272(las)-273(n)1(as)-1(z)-273(tn)1(ie,)-273(d)1(w)27(\\363r)-272(ni)1(k)28(om)27(u)-272(z)-273(naszyc)27(h)-272(rob)-27(ot)28(y)-273(n)1(ie)-273(d)1(a)27(w)28(a\\252,)-273(d)1(w)27(\\363r)-272(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(na)-331(n)1(as)-332(nasta)-56(j)1(e)-332(i)-331(d)1(o)-332(zagub)28(y)-331(wiedzie!...)-331(Bo)-331(i)-331(nie)-331(s)-1(p)1(am)-1(i\\246ta\\242)-332(mi)-331(t)28(yc)27(h)-330(krzywd,)-331(t)28(yc)27(h)]TJ 0 -13.549 Td[(fan)29(to)28(w)27(a\\253)1(,)-343(t)28(yc)27(h)-342(sz)-1(k)28(\\363)-28(d)1(,)-343(a)-343(u)1(trap)1(ie)-1(\\253)1(,)-343(j)1(akie)-343(c)-1(a\\252y)-342(nar\\363)-27(d)-343(p)-27(onosi!)-343(P)29(o)-28(da)28(w)28(alim)-343(do)-343(s\\241du)]TJ 0 -13.549 Td[({)-384(co)-385(m)28(u)-384(kt)1(o)-384(z)-1(rob)1(i!)-384(Je\\271)-1(d)1(z)-1(i)1(lim)-384(z)-1(e)-384(s)-1(k)56(arg\\241)-384({)-384(n)1(a)-384(darmo.)-384(Ale)-384(miark)56(a)-384(s)-1(i)1(\\246)-385(p)1(rz)-1(ebr)1(a\\252a,)]TJ 0 -13.55 Td[(tn)1(ie)-334(nasz)-334(b)-27(\\363r!)-333(P)28(ozw)27(ol)1(im)-334(to,)-333(n)1(a)-334(to,)-333(co?)]TJ 27.879 -13.549 Td[({)-405(Nie,)-405(n)1(ie)-1(!)-404(nie)-405(da\\242!)-405(Roz)-1(p)-27(\\246dzi\\242)-1(,)-404(z)-1(ak)56(atru)1(pi)1(\\242)-1(,)-405(n)1(ie)-405(da\\242!{)-405(krzycz)-1(eli,)-404(a)-405(t)27(w)28(arze)]TJ -27.879 -13.549 Td[(sz)-1(are,)-360(c)28(hm)28(urn)1(e)-1(,)-359(z)-1(as\\246pion)1(e)-361(r)1(oz)-1(b)1(\\252ys)-1(\\252y)-359(w)-1(n)1(e)-1(t)-359(kiejb)28(y)-359(pi)1(orun)1(am)-1(i)1(,)-360(sto)-360(pi)1(\\246)-1(\\261c)-1(i)-359(z)-1(amigo-)]TJ 0 -13.549 Td[(ta\\252o)-333(w)-334(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)-333(i)-333(sto)-334(gar)1(dzie)-1(l)1(i)-333(z)-1(ary)1(c)-1(za\\252o,)-333(a)-334(gn)1(ie)-1(w)-333(z)-1(atr)1(z)-1(\\241s\\252)-334(serc)-1(ami.)]TJ 27.879 -13.549 Td[({)-429(Nas)-1(ze)-430(pra)28(w)28(o,)-430(a)-429(ni)1(kto)-430(go)-429(nam)-429(nie)-430(p)1(rzyz)-1(n)1(a)-56(j)1(e)-1(.)-429(Nasz)-430(b)-28(\\363r)1(,)-430(a)-429(tni)1(e)-430(go!)-430(T)83(o)]TJ -27.879 -13.55 Td[(i)-450(c)-1(\\363\\273)-451(m)28(y)83(,)-450(sie)-1(r)1(ot)27(y)84(,)-450(p)-28(o)-27(c)-1(zniem)27(y)84(,)-450(kiej)-450(nikt)-450(na)-450(;wiec)-1(ie)-451(o)-450(nas)-451(n)1(ie)-451(stoi,)-450(a)-451(ws)-1(zystkie)]TJ 0 -13.549 Td[(uk)1(rzywdza)-56(j\\241,)-256(c)-1(\\363\\273?...)-256(Naro)-28(dzie)-257(k)28(o)-28(c)28(han)28(y)84(,)-257(lu)1(dzie)-257(c)27(h)1(rz)-1(e\\261c)-1(ij)1(a\\253skie,)-257(P)28(ol)1(aki,)-257(.)1(to)-257(m\\363)27(wi\\246)]TJ 0 -13.549 Td[(w)28(am)-1(a,)-497(\\273)-1(e)-498(rad)1(y)-498(ju)1(\\273)-498(insz)-1(ej)-497(nie)-498(ma,)-498(jeno)-497(s)-1(ami)-498(m)28(usim)27(y)-497(s)-1(w)28(o)-56(j)1(e)-1(go)-498(d)1(obra)-497(bron)1(i\\242,)]TJ 0 -13.549 Td[(gromad\\241)-336(ca\\252\\241)-336(i\\261\\242)-337(i)-336(b)-27(oru)-335(r\\241ba\\242)-336(ni)1(e)-337(p)-27(oz)-1(w)28(oli\\242!)-336(Wsz)-1(y)1(s)-1(tki)1(e)-337(c)28(ho)-28(d)1(\\271)-1(m)28(y)83(,)-336(k)1(to)-336(jeno)-336(\\273yw,)]TJ 0 -13.549 Td[(kto)-349(jeno)-349(ku)1(las)-1(ami)-349(ruc)28(ha,)-349(ca\\252)-1(\\241)-349(ws)-1(i)1(\\241,)-350(wsz)-1(ystkie)-349(jak)-349(jeden!)-349(Nie)-350(b)-27(\\363)-56(j)1(ta)-350(si\\246)-350(n)1(icz)-1(ego,)]TJ 0 -13.549 Td[(lu)1(dzie)-1(,)-382(n)1(ie)-383(b)-27(\\363)-55(jta,)-382(n)1(as)-1(ze)-383(pr)1(a)28(w)27(o,)-382(to)-382(i)-382(n)1(as)-1(za)-383(w)28(ola)-382(i)-382(spra)28(wiedli)1(w)27(o\\261\\242)-383(nasza,)-382(a)-383(ca\\252e)-1(j)]TJ 0 -13.55 Td[(ws)-1(i)-427(k)56(ar)1(a\\242)-428(ni)1(e)-428(u)1(k)55(ar)1(z)-1(\\241.)-427(Za)-427(mn\\241,)-427(lu)1(dzie,)-427(z)-1(b)1(iera\\242)-428(si\\246)-428(d)1(uc)28(hem)-1(,)-427(za)-427(mn\\241!)-427(Na)-427(las!)-427({)]TJ 0 -13.549 Td[(ry)1(kn\\241\\252)-333(m)-1(o)-27(c)-1(n)1(o.)]TJ 27.879 -13.549 Td[({)-285(Na)-285(las!)-285({)-284(o)-28(dwrzas)-1(n)1(\\246)-1(l)1(i)-285(wraz)-285(w)-1(szys)-1(cy)83(,)-284(ru)1(m)-286(si\\246)-285(ucz)-1(y)1(ni\\252,)-285(t)1(\\252)-1(u)1(m)-285(s)-1(i\\246)-285(zak)28(o\\252ys)-1(a\\252,)]TJ -27.879 -13.549 Td[(rozp)-27(\\246)-1(k\\252)-391(i)-390(z)-391(krzyki)1(e)-1(m)-391(k)56(a\\273)-1(d)1(e)-1(n)-390(w)-391(dy)1(rdy)-390(lec)-1(ia\\252)-390(do)-391(d)1(om)27(u)-390(s)-1(p)-27(osobi\\242)-391(si\\246)-1(,)-390(\\273e)-392(p)-27(o)28(ws)-1(ta-)]TJ 0 -13.549 Td[(\\252a)-357(gor\\241cz)-1(k)28(o)28(w)28(a)-357(spies)-1(zna)-357(k)1(rz\\241tanin)1(a,)-357(p)1(rz)-1(y)1(bieran)1(ia)-357(si\\246)-1(,)-356(z)-1(ap)1(rz\\246)-1(gi,)-356(wyc)-1(i)1(\\241)-28(gania)-356(s)-1(a\\253)1(,)]TJ 0 -13.55 Td[(r\\273e)-1(n)1(ie)-284(k)28(oni,)-284(wrzas)-1(k)1(i)-284(dziec)-1(i,)-284(k)1(l\\241t)28(wy)83(,)-284(to)-284(k)28(ob)1(ie)-1(ce)-285(l)1(am)-1(en)28(t)28(y)83(,)-283(\\273)-1(e)-284(ino)-284(si\\246)-285(wie\\261)-285(tr)1(z)-1(\\246s)-1(\\252a)-284(o)-28(d)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(goto)27(w)28(a\\253,)-363(a)-363(mo\\273)-1(e)-364(w)-363(jak)1(ie)-364(d)1(w)27(a)-363(pacierz)-1(e)-363(ju)1(\\273)-364(nar)1(yc)27(h)28(to)28(w)28(ani)-363(ci\\241)-28(gn)1(\\246)-1(li)-363(n)1(a)-364(t)1(op)-28(o-)]TJ\nET\nendstream\nendobj\n1107 0 obj <<\n/Type /Page\n/Contents 1108 0 R\n/Resources 1106 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1106 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1111 0 obj <<\n/Length 9103      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(345)]TJ -358.232 -35.866 Td[(lo)28(w)28(\\241,)-334(gd)1(z)-1(i)1(e)-334(c)-1(ze)-1(k)56(a\\252)-333(B)-1(or)1(yna)-333(w)-333(s)-1(an)1(iac)27(h)-333(wraz)-334(z)-333(P\\252osz)-1(k)56(\\241,)-333(K\\252\\246)-1(b)-27(em)-334(i)-333(c)-1(o)-333(p)1(ie)-1(r)1(w)-1(sz)-1(y)1(m)-1(i)1(.)]TJ 27.879 -13.549 Td[(Usta)27(wial)1(i)-337(s)-1(i)1(\\246)-338(w)-337(rz)-1(\\246dy)84(,)-337(j)1(ak)-337(k)28(om)27(u)-337(p)-27(opad)1(\\252o,)-337(c)27(h)1(\\252op)28(y)83(,)-337(p)1(arob)1(ki,)-337(k)28(ob)1(ie)-1(t)28(y)84(,)-337(dziec)-1(i)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-478(co)-479(starsz)-1(e)-479(r)1(usz)-1(y)1(\\252)-1(y)1(;)-479(k)1(to)-479(b)29(y\\252)-479(sani)1(am)-1(i,)-478(kt)1(o)-479(k)28(on)1(no,)-478(kto)-478(w)27(oze)-1(m,)-478(a)-478(re)-1(szta,)]TJ 0 -13.549 Td[(wie\\261)-288(p)1(ra)28(wie)-287(ca\\252)-1(a)-286(na)-286(piec)27(h)28(t)28(y)-286(s)-1(i)1(\\246)-287(w)-1(y)1(bra\\252a)-286(i)-287(zw)27(ar)1(\\252a)-287(si\\246)-287(w)-287(g\\246)-1(st)28(w)27(\\246)-287(k)1(ie)-1(b)29(y)-287(w)-287(ten)-286(z)-1(agon)]TJ 0 -13.549 Td[(d\\252u)1(gi,)-267(sz)-1(u)1(m)-1(i)1(\\241c)-1(y)-266(z)-1(b)-27(o\\273)-1(em,)-267(pr)1(z)-1(ero\\261ni\\246t)28(y)-267(cz)-1(erwie)-1(n)1(i\\241)-267(k)28(ob)1(ie)-1(cyc)28(h)-267(pr)1(z)-1(y)28(o)-27(dzie)-1(wk)28(\\363)28(w,)-267(nad)]TJ 0 -13.55 Td[(kt\\363r)1(ym)-451(in)1(o)-451(si\\246)-451(t)1(rz)-1(\\246s\\252)-1(y)-450(k)28(o\\252y)-450(ni)1(e)-1(zgorsz)-1(e,)-450(to)-451(wid)1(\\252y)-450(z)-1(ard)1(z)-1(ewia\\252e)-1(,)-450(to)-450(ce)-1(p)28(y)84(,)-450(a)-451(t)1(u)-450(i)]TJ 0 -13.549 Td[(o)28(wdzie)-302(kiej)-301(b\\252ysk)56(a)27(wica)-302(zam)-1(i)1(gota\\252a)-302(k)28(osa,)-302(\\273e)-302(jak)1(b)28(y)-302(n)1(a)-302(r)1(ol\\246)-302(ci\\241)-28(gn\\241\\252)-301(nar\\363)-27(d,)-301(jeno)-301(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-326(b)28(y\\252o)-326(\\261m)-1(i)1(e)-1(c)27(h)1(\\363)28(w)-1(,)-325(\\273art\\363)28(w)-326(i)-326(w)28(es)-1(ela.)-326(S)1(tali)-325(w)-326(c)-1(i)1(c)27(ho\\261c)-1(i)1(,)-326(omro)-28(cze)-1(n)1(i,)-326(sur)1(o)27(wi,)-325(goto)28(wi)]TJ 0 -13.549 Td[(na)-455(w)-1(szys)-1(tk)28(o,)-455(a)-456(gd)1(y)-456(j)1(u\\273)-456(nasta\\252)-456(cz)-1(as,)-456(Bory)1(na)-456(wsta\\252)-456(w)-456(saniac)28(h,)-456(ogar)1(n\\241\\252)-456(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(o)-28(cz)-1(ami)-333(i)-333(krzykn)1(\\241\\252)-334(\\273e)-1(gn)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-1(:)]TJ 27.879 -13.549 Td[({)-333(W)-333(im)-1(i)1(\\246)-334(Oj)1(c)-1(a)-333(i)-333(Syn)1(a,)-333(i)-334(D)1(uc)27(h)1(a)-334(\\261wi\\246te)-1(go!)-333(Ame)-1(n)1(,)-333(w)-334(dr)1(og\\246)-1(!)]TJ 0 -13.55 Td[({)-460(Ame)-1(n)1(!)-460(Am)-1(en!)-459({)-461(p)1(rzywt\\363rzyli,)-459(a)-461(\\273e)-461(za\\261w)-1(i)1(e)-1(gota\\252a)-460(w\\252a\\261)-1(n)1(ie)-461(sygn)1(aturk)56(a,)]TJ -27.879 -13.549 Td[(snad\\271)-427(ksi\\241dz)-427(ze)-428(ms)-1(z\\241)-427(wyc)27(h)1(o)-28(dzi\\252,)-427(\\273egnano)-427(si\\246,)-427(zdejmo)28(w)27(an)1(o)-427(c)-1(zapki)1(,)-427(bit)1(o)-427(s)-1(i\\246)-427(w)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(s)-1(i,)-396(a)-397(j)1(aki)-397(tak)1(i)-397({)-397(w)28(e)-1(stc)27(h)1(n\\241\\252)-397(\\273a\\252o\\261)-1(n)1(ie)-397(i)-397(r)1(usz)-1(al)1(i)-397(sforn)1(ie,)-397(mo)-28(c)-1(n)1(o)-397(i)-396(w)-397(m)-1(i)1(lc)-1(ze)-1(n)1(iu)1(,)]TJ 0 -13.549 Td[(i)-393(ca\\252\\241)-393(p)1(ra)28(w)-1(i)1(e)-394(wsi\\241,)-392(jeno)-393(k)28(o)28(w)28(al)-393(pr)1(z)-1(y)1(w)27(ar\\252)-392(gdzie)-1(sik)-392(w)-393(op\\252otk)56(ac)27(h)1(,)-393(pr)1(z)-1(ebr)1(a\\252)-393(s)-1(i)1(\\246)-394(d)1(o)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)28(y)84(,)-316(s)-1(k)28(o)-27(c)-1(zy\\252)-317(n)1(a)-316(k)27(on)1(ia)-316(i)-316(p)-28(op)-27(\\246dzi\\252)-317(b)-27(o)-28(cz)-1(n)29(ym)-1(i)-316(d)1(rogami)-316(ku)-316(dw)28(oro)28(wi,)-316(An)28(tek)-316(z)-1(a\\261)]TJ 0 -13.55 Td[(kt\\363r)1(e)-1(n)-451(b)28(y\\252)-452(o)-28(d)-451(s)-1(ame)-1(go)-452(zja)28(wienia)-452(si\\246)-452(o)-56(j)1(c)-1(a)-452(skry\\252)-452(si\\246)-452(w)-453(k)56(arczm)-1(ie,)-452(sk)28(oro)-452(ru)1(s)-1(zyli)1(,)]TJ 0 -13.549 Td[(wz)-1(i)1(\\241\\252)-307(o)-27(d)-306(\\233yda)-306(f)1(uzj\\246,)-306(s)-1(c)28(ho)28(w)28(a\\252)-307(j)1(\\241)-306(p)-28(o)-27(d)-306(k)28(o\\273uc)27(h)-305(i)-306(p)-28(ogn)1(a\\252)-306(do)-306(b)-27(or\\363)28(w)-307(n)1(a)-306(pr)1(z)-1(e\\252a)-56(j)-306(p)1(rze)-1(z)]TJ 0 -13.549 Td[(p)-27(ola...)-333(n)1(ie)-334(ogl\\241d)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(na)28(w)28(e)-1(t)-333(z)-1(a)-333(gromad)1(\\241)-1(.)1(..)]TJ 27.879 -13.549 Td[(A)-333(nar\\363)-27(d)-333(ru)1(s)-1(zy\\252)-334(\\273w)27(a)28(w)28(o)-334(za)-333(B)-1(or)1(yn\\241,)-333(j)1(ad\\241cym)-334(n)1(a)-334(p)1(rze)-1(d)1(z)-1(ie.)]TJ 0 -13.549 Td[(T)83(u)1(\\273)-332(za)-332(n)1(im)-331(c)-1(i\\241)-27(gn\\246\\252)-1(y)-330(P\\252os)-1(zki,)-330(ilu)-331(i)1(c)27(h)-331(b)28(y)1(\\252)-1(o)-331(z)-331(trze)-1(c)28(h)-331(c)27(h)1(a\\252up)1(,)-331(z)-1(e)-331(Stac)27(h)1(e)-1(m)-331(na)]TJ -27.879 -13.55 Td[(pr)1(z)-1(edzie,)-333(nar\\363)-28(d)-332(b)28(y\\252)-333(nieur)1(o)-28(dn)28(y)84(,)-333(ale)-334(p)29(ys)-1(k)56(at)28(y)-333(s)-1(zumn)28(y)-333(i)-333(wielc)-1(e)-333(w)-334(sie)-1(b)1(ie)-334(d)1(ufa)-55(j\\241cy)83(.)]TJ 27.879 -13.549 Td[(A)-333(z)-1(a)-333(ni)1(m)-1(i)-333(S)1(o)-28(c)27(h)28(y)84(,)-333(kt\\363ry)1(c)27(h)-333(wi\\363)-28(d)1(\\252)-334(so\\252t)28(ys)-1(.)]TJ 0 -13.549 Td[(A)-333(trze)-1(cie)-334(b)28(y)1(\\252y)-334(W)84(ac)27(h)1(nik)1(i,)-333(c)27(h\\252op)29(y)-334(d)1(rob)1(ne,)-333(s)-1(u)1(c)27(he,)-333(ale)-334(za)-56(j)1(ad\\252e)-334(ki)1(e)-1(j)-333(osy)83(.)]TJ 0 -13.549 Td[(A)-397(cz)-1(w)28(arte)-397(s)-1(z\\252y)-397(Go\\252\\246bie)-397(Mateusz)-398(i)1(m)-398(p)1(rze)-1(w)28(o)-28(dzi\\252,)-397(n)1(ie)-1(wiela)-397(ic)28(h,)-397(b)29(y\\252o,)-397(jeno)]TJ -27.879 -13.549 Td[(\\273e)-334(s)-1(tar)1(c)-1(zyli)-333(za)-334(p)-27(\\363\\252)-333(w)-1(si,)-333(b)-27(o)-334(same)-334(z)-1(ab)1(ijak)1(i)-334(n)1(ieust\\246)-1(p)1(liw)28(e)-334(i)-333(rozros\\252e)-334(kiej)-333(d\\246b)28(y)84(.)]TJ 27.879 -13.55 Td[(A)-333(pi\\241te)-333(Sik)28(or)1(y)83(,)-333(kr)1(\\246)-1(p)-27(e)-334(ni)1(b)28(y)-333(pn)1(ie)-1(,)-333(\\273ylaste)-334(i)-333(mruk)1(liw)28(e)-1(.)]TJ 0 -13.549 Td[(A)-485(p)-27(ote)-1(m)-485(K\\252\\246)-1(b)1(iaki)-485(i)-485(m\\252\\363)-28(d\\271)-486(d)1(ru)1(ga,)-485(w)-1(y)1(ros)-1(\\252a,)-485(b)1(uj)1(na,)-485(sw)27(arl)1(iw)27(a)-485(i)-485(na)-485(b)1(itki)]TJ -27.879 -13.549 Td[(ws)-1(ze)-1(l)1(kie)-334(\\252ak)28(oma,)-333(kt\\363r\\241)-333(pr)1(o)28(w)27(ad)1(z)-1(i\\252)-333(Grzela,)-333(w)27(\\363)-55(jt\\363)28(w)-334(b)1(rat.)]TJ 27.879 -13.549 Td[(A)-287(w)-288(k)28(o\\253cu)-287(Bylice)-288(sz)-1(\\252y)84(,)-288(K)1(obusy)84(,)-288(P)1(rycz)-1(k)1(i,)-287(Gul)1(basy)83(,)-287(P)28(acz)-1(es)-1(i)1(e)-1(,)-287(Balc)-1(erki)-287(i)-287(kto)]TJ -27.879 -13.549 Td[(b)28(y)-333(j)1(e)-334(tam)-334(ws)-1(zystkie)-333(s)-1(p)1(am)-1(i\\246ta\\252!..)1(.)]TJ 27.879 -13.55 Td[(Szli)-271(mo)-28(cno,)-270(a\\273)-272(si\\246)-272(ziem)-1(i)1(a)-271(trz\\246)-1(s\\252a,)-271(p)-27(os)-1(\\246pn)1(i,)-271(kw)28(ard)1(z)-1(i)-271(a)-271(gr)1(o\\271)-1(n)1(i)-271(kiej)-271(ta)-271(c)28(hm)28(ura)]TJ -27.879 -13.549 Td[(grad)1(o)28(w)27(a,)-351(co)-352(to)-351(j)1(e)-1(n)1(o)-352(p)-27(o\\252yskuj)1(e)-1(,)-351(n)1(abrzmie)-1(w)28(a)-351(pior)1(unami,)-351(g\\252u)1(c)27(hn)1(ie,)-352(a)-351(leda)-351(c)27(h)29(w)-1(i)1(la)]TJ 0 -13.549 Td[(spadn)1(ie)-334(i)-333(\\261w)-1(i)1(at)-334(ca\\252y)-333(roztratu)1(je.)]TJ 27.879 -13.549 Td[(A)-333(z)-1(a)-333(ni)1(m)-1(i)-333(n)1(ie)-1(s\\252y)-333(s)-1(i\\246)-333(p\\252ac)-1(ze,)-334(wr)1(z)-1(aski)-333(i)-333(lame)-1(n)28(t)28(y)-333(p)-27(oz)-1(osta\\252yc)27(h)1(.)]TJ 0 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(\\221wiat)-419(b)28(y)1(\\252)-420(j)1(e)-1(sz)-1(cz)-1(e)-419(z)-1(mart)28(wia\\252y)-419(o)-28(d)-419(no)-27(c)-1(n)1(e)-1(go)-419(c)27(h)1(\\252o)-28(du)1(,)-419(p)-28(e\\252e)-1(n)-419(se)-1(n)1(nej)-419(g\\252usz)-1(y)-419(i)]TJ -27.879 -13.55 Td[(sp)-28(o)28(wit)28(y)-333(w)-334(lu)1(te)-334(i)-333(sz)-1(kl)1(is)-1(te)-333(m)-1(g\\252y)84(.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-329(zale)-1(ga\\252a)-329(b)-27(ory)84(,)-329(zi\\241b)-328(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\252)-329(os)-1(tr)1(y)-329(i)-328(s)-1(\\252ab)28(y)-328(br)1(z)-1(ask)-329(z\\363rz)-329(o)-28(c)-1(zerni)1(a\\252)]TJ -27.879 -13.549 Td[(cz)-1(u)1(b)28(y)-333(i)-333(s)-1(yp)1(a\\252)-334(si\\246)-334(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-333(na)-333(\\261)-1(n)1(iegi)-334(b)1(lade.)]TJ 27.879 -13.549 Td[(Jeno)-395(n)1(a)-395(Wilczyc)27(h)-394(Do\\252ac)27(h)-394(grz)-1(mia\\252y)-394(h)28(uki)-394(w)27(al)1(\\241c)-1(yc)28(h)-395(si\\246)-395(raz)-395(p)-28(o)-394(raz)-395(drze)-1(w,)]TJ -27.879 -13.549 Td[(bi)1(c)-1(ie)-333(s)-1(iekier)-333(i)-333(pr)1(z)-1(es)-1(zyw)28(a)-56(j\\241cy)84(,)-334(zgrzytli)1(w)-1(y)-333(p)1(is)-1(k)-333(p)1(i\\252.)]TJ 27.879 -13.55 Td[(W)84(alili)-333(b)-27(\\363r!.)1(..)]TJ 0 -13.549 Td[(Wi\\246ce)-1(j)-383(n)1(i\\271li)-383(c)-1(zte)-1(r)1(dzie\\261)-1(ci)-383(c)27(h\\252op)1(a)-383(praco)28(w)27(a\\252o)-383(o)-28(d)-383(same)-1(go)-383(\\261)-1(witan)1(ia;)-383(ki)1(e)-1(b)28(y)-383(to)]TJ\nET\nendstream\nendobj\n1110 0 obj <<\n/Type /Page\n/Contents 1111 0 R\n/Resources 1109 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1109 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1114 0 obj <<\n/Length 9847      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(346)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(stado)-460(dzi\\246c)-1(io\\252\\363)28(w)-461(spad)1(\\252o)-461(n)1(a)-461(b)-27(\\363r,)-460(p)1(rzypi)1(\\246)-1(\\252o)-460(s)-1(i\\246)-460(do)-460(drzew)-461(i)-460(ku)1(\\252)-1(o)-460(tak)-460(za)27(wzi\\246c)-1(ie)]TJ 0 -13.549 Td[(i)-397(za)-56(j)1(adle,)-397(\\273)-1(e)-397(dr)1(z)-1(ew)27(a)-397(p)1(ada\\252y)-397(jedn)1(e)-398(p)-27(o)-397(dr)1(ugic)28(h,)-397(p)-27(or\\246ba)-397(ros\\252a,)-397(p)-28(o)-27(c)-1(i\\246te)-398(ol)1(brzym)28(y)]TJ 0 -13.549 Td[(le\\273)-1(a\\252y)-461(p)-27(ok)28(otem)-462(n)1(ib)28(y)-461(\\252an)-460(s)-1(tr)1(ato)28(w)27(an)28(y)84(,)-461(a)-461(jeno)-461(k)56(a)-55(j\\261)-461(niek)56(a)-56(j)-461(n)1(ib)28(y)-460(te)-462(ost)28(y)-461(kw)28(arde)]TJ 0 -13.549 Td[(ste)-1(r)1(c)-1(za\\252y)-354(s)-1(m)28(uk)1(\\252)-1(e)-354(nasienn)1(iki)-354(p)-27(o)-28(c)28(h)28(yla)-55(j\\241c)-354(s)-1(i)1(\\246)-355(ci\\246\\273)-1(k)28(o)-354(j)1(ak)28(o)-354(m)-1(at)1(ki)-354(\\273a\\252)-1(o\\261ni)1(e)-355(p)1(\\252ac)-1(z\\241c)-1(e)]TJ 0 -13.549 Td[(nad)-327(p)-27(obit)28(ymi,)-327(k)55(a)-55(j\\261)-328(niek)56(a)-56(j)-327(s)-1(ze)-1(l)1(e)-1(\\261c)-1(i\\252y)-327(s)-1(m)28(utn)1(o)-328(krze)-329(n)1(ie)-328(do)-28(ci\\246te)-1(,)-327(to)-328(jak)56(a\\261)-328(drze)-1(win)1(a)]TJ 0 -13.55 Td[({)-311(mize)-1(r)1(ota,)-311(kt\\363r)1(e)-1(j)-310(top)-27(\\363r)-311(n)1(ie)-311(c)27(h)28(yci\\252,)-311(d)1(ygota\\252a)-311(tr)1(w)27(o\\273nie)-311({)-311(a)-310(w)-1(sz\\246)-1(dy)84(,)-311(n)1(a)-311(p)1(\\252)-1(ac)28(h)28(tac)27(h)]TJ 0 -13.549 Td[(\\261nieg\\363)28(w)-400(p)-28(o)-27(deptan)28(y)1(c)27(h,)-399(ni)1(b)28(y)-399(na)-400(t)28(yc)28(h)-399(c)-1(a\\252u)1(nac)27(h)-399(ostatni)1(c)27(h,)-399(le\\273)-1(a\\252y)-399(p)-28(ob)1(ite)-400(d)1(rze)-1(w)28(a,)]TJ 0 -13.549 Td[(ku)1(p)28(y)-397(ga\\252\\246z)-1(i)1(,)-397(wie)-1(r)1(z)-1(c)28(ho\\252y)-397(mart)28(w)28(e)-397(i)-397(klo)-27(c)-1(e)-397(p)-27(ot\\246)-1(\\273ne,)-397(ob)-27(dar)1(t)28(ym)-397(i)-397(p)-27(o)-28(\\242)-1(wierto)28(w)28(an)28(ym)]TJ 0 -13.549 Td[(tru)1(p)-27(om)-396(p)-27(o)-28(dob)1(ne,)-396(za\\261)-396(stru)1(gi)-396(\\273\\363\\252t)28(yc)27(h)-395(t)1(ro)-28(cin)-395(rozs)-1(\\241cz)-1(a\\252y)-395(si\\246)-396(w)-395(\\261)-1(n)1(ie)-1(gac)28(h)-395(kieb)28(y)-395(ta)]TJ 0 -13.549 Td[(\\273a\\252)-1(osna)-333(kr)1(e)-1(w)-333(las)-1(u)1(.)]TJ 27.879 -13.549 Td[(A)-259(w)27(ok)28(\\363\\252)-259(n)1(ad)-259(p)-27(or\\246)-1(b)1(\\241,)-259(ni)1(b)28(y)-259(nad)-259(gr)1(ob)-28(em)-260(ot)28(w)28(art)28(ym,)-259(sta\\252)-260(l)1(as)-260(zbit\\241,)-259(wyn)1(ios\\252)-1(\\241)-259(i)]TJ -27.879 -13.55 Td[(ni)1(e)-1(p)1(rze)-1(n)1(ikni)1(on\\241)-320(ci\\273b\\241,)-319(jak)28(o)-319(te)-320(przyj)1(ac)-1(io\\252y)84(,)-320(k)1(re)-1(wn)1(iaki)-319(a)-320(zna)-56(j)1(omk)28(o)27(wie,)-320(co)-320(g\\246s)-1(t)28(w)28(\\241)]TJ 0 -13.549 Td[(stan\\246li)-486(p)-28(o)-27(c)27(h)28(yl)1(on\\241)-486(i)-486(w)-487(tr)1(w)27(o\\273n)28(ym)-487(mil)1(c)-1(ze)-1(n)1(iu,)-486(z)-487(t)1(\\252)-1(u)1(mion)28(ym)-486(krzykiem)-487(r)1(oz)-1(p)1(ac)-1(zy)]TJ 0 -13.549 Td[(nas\\252uc)28(h)28(uj)1(\\241)-334(p)1(ada)-55(j\\241cyc)27(h)-333(w)-333(\\261)-1(mier\\242)-334(i)-333(p)1(atrz\\241)-334(zdr)1(\\246)-1(t)28(wiali)-333(n)1(a)-334(n)1(ie)-1(u)1(b\\252agan)1(\\241)-334(k)28(o\\261b)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[(Bo)-237(r\\246bacz)-1(e)-237(s)-1(zli)-237(n)1(apr)1(z)-1(\\363)-28(d)-236(nieustan)1(nie,)-237(rozwie)-1(d)1(li)-237(si\\246)-237(w)-237(s)-1(ze)-1(r)1(ok)55(\\241)-237(\\252a)28(w)28(\\246)-238(i)-237(z)-237(w)28(olna,)]TJ -27.879 -13.549 Td[(w)-379(milcz)-1(eni)1(u)-379(wpi)1(e)-1(r)1(ali)-379(si\\246)-379(w)-379(b)-27(\\363r,)-378(z)-1(da)-378(s)-1(i)1(\\246)-380(n)1(iez)-1(mo\\273)-1(on)29(y)83(,)-378(kt\\363ren)-378(p)-28(os\\246)-1(p)1(n\\241,)-378(wynios\\252\\241)]TJ 0 -13.55 Td[(\\261c)-1(ian)1(\\241)-328(pn)1(i)-328(zw)27(art)28(y)1(c)27(h)-328(zas)-1(t)1(\\246)-1(p)-27(o)28(w)27(a\\252)-328(im)-328(dr)1(og\\246)-1(,)-327(a)-328(tak)-328(pr)1(z)-1(y)1(s)-1(\\252ani)1(a\\252)-328(ogrome)-1(m,)-328(\\273e)-329(gin)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(zgo\\252)-1(a)-376(w)-376(c)-1(i)1(e)-1(n)1(iu)-376(k)28(on)1(ar\\363)28(w)-1(,)-376(j)1(e)-1(n)1(o)-376(top)-28(or)1(y)-376(b\\252ysk)56(a\\252y)-376(w)-377(mrok)56(ac)27(h)-375(i)-376(bi\\252y)-376(n)1(ie)-1(stru)1(dze)-1(n)1(ie,)]TJ 0 -13.549 Td[(jeno)-327(\\261wis)-1(t)-327(p)1(i\\252)-327(nie)-327(usta)28(w)27(a\\252)-327(ani)-327(n)1(a)-327(c)27(h)28(wil\\246,)-327(a)-327(c)-1(o)-327(tr)1(o)-28(c)27(h)1(\\246)-328(d)1(rz)-1(ew)28(o)-328(si\\246)-327(jakie\\261)-328(c)28(h)28(wia\\252o)-327(i)]TJ 0 -13.549 Td[(z)-328(n)1(ag\\252a,)-327(kiej)-327(te)-1(n)-326(ptak)-327(zdr)1(adni)1(e)-328(p)-27(o)-28(c)27(h)28(wycon)28(y)-327(w)28(e)-328(wn)28(yki)1(,)-327(o)-28(dr)1(yw)27(a\\252o)-327(si\\246)-328(o)-28(d)-326(s)-1(w)28(oic)27(h)1(,)]TJ 0 -13.549 Td[(bi)1(\\252o)-486(ga\\252)-1(\\246z)-1(i)1(am)-1(i)-485(i)-486(z)-487(j)1(\\246)-1(ki)1(e)-1(m)-486(\\261)-1(mierteln)28(ym)-486(p)1(ada\\252o)-486(na)-486(ziem)-1(i\\246)-486({)-486(a)-486(z)-1(a)-486(n)1(im)-486(dru)1(gie,)]TJ 0 -13.55 Td[(trzec)-1(ie,)-333(dzies)-1(i\\241te...)]TJ 27.879 -13.549 Td[(P)28(ad)1(a\\252y)-480(sos)-1(n)29(y)-480(ogr)1(om)-1(n)1(e)-1(,)-479(ju)1(\\273)-480(o)-28(d)-479(staro\\261c)-1(i)-479(oz)-1(i)1(e)-1(leni)1(a\\252)-1(e,)-479(pad)1(a\\252)-1(y)-479(j)1(e)-1(d)1(le)-1(,)-479(kieb)28(y)]TJ -27.879 -13.549 Td[(w)-322(z)-1(gr)1(z)-1(ebn)1(e)-323(k)56(ap)-28(ot)28(y)-322(p)1(rzy)28(o)-28(dzian)1(e)-1(,)-322(p)1(ada\\252y)-322(\\261w)-1(i)1(e)-1(rk)1(i)-322(roz\\252o\\273)-1(yste,)-322(pada\\252y)-322(i)-321(d\\246b)28(y)-322(bu)1(re,)]TJ 0 -13.549 Td[(br)1(o)-28(dami)-256(siwyc)27(h)-255(m)-1(c)28(h\\363)28(w)-257(ob)1(ros\\252e)-257(kiej)-256(te)-256(s)-1(tar)1(c)-1(e,)-256(kt\\363ry)1(c)27(h)-256(p)1(ioru)1(n)28(y)-256(ni)1(e)-257(zm)-1(og\\252y)-256(i)-256(se)-1(tk)1(i)]TJ 0 -13.549 Td[(lat)-323(n)1(ie)-323(s)-1(k)1(ruszy\\252y)83(,)-322(a)-323(top)-28(or)1(y)-323(n)1(a)-323(\\261)-1(mier\\242)-323(p)-28(o)28(wied\\252y)84(,)-323(a)-323(in)1(s)-1(zyc)28(h)-323(zas)-1(ie)-323(t)28(yl)1(e)-324(p)-27(o)-28(d)1(le)-1(j)1(s)-1(zyc)27(h)]TJ 0 -13.55 Td[(dr)1(z)-1(ew,)-333(kt\\363\\273)-334(to)-333(wyp)-28(o)28(wie,)-333(ile)-334(a)-333(jak)1(ic)27(h)-333(p)1(ada\\252o!)]TJ 27.879 -13.549 Td[(Las)-284(mar\\252)-283(z)-284(j)1(\\246)-1(ki)1(e)-1(m,)-283(dr)1(z)-1(ew)27(a)-283(pad)1(a\\252y)-283(c)-1(i\\246\\273k)28(o)-284(j)1(ak)28(o)-284(t)1(e)-284(c)27(h)1(\\252op)28(y)-283(w)-284(b)-27(o)-56(j)1(u)-283(\\261c)-1(i\\261ni)1(\\246)-1(te)-284(a)]TJ -27.879 -13.549 Td[(par)1(te)-299(jedn)1(e)-300(p)1(rze)-1(z)-299(dr)1(ugie,)-299(n)1(ieust\\246)-1(p)1(liw)28(e)-1(,)-298(krze)-1(p)1(kie,)-299(j)1(e)-1(n)1(o)-299(\\273)-1(e)-299(bi)1(te)-299(m)-1(o)-28(c\\241)-299(n)1(ie)-1(zmo\\273)-1(on)1(\\241,)]TJ 0 -13.549 Td[(i\\273)-344(n)1(i)-343(\\377)-56(Jez)-1(u)1(s)-1(!\")-343(krzykn)1(\\241\\242)-344(ni)1(e)-344(krzykn)1(\\241)-344(i)-343(wraz)-344(ca\\252\\241)-344(\\252a)28(w)27(\\241)-343(si\\246)-344(c)27(h)28(y)1(l\\241,)-343(i)-344(w)-343(lut\\241)-343(\\261m)-1(ier\\242)]TJ 0 -13.549 Td[(pad)1(a)-56(j)1(\\241.)]TJ 27.879 -13.55 Td[(J\\246k)-233(jeno)-233(r)1(oz)-1(b)1(rzm)-1(iew)28(a\\252)-233(p)-28(o)-233(lesie)-1(,)-232(z)-1(iemia)-233(dr)1(ga\\252)-1(a)-232(c)-1(i\\246giem)-234(o)-27(d)-233(zw)27(alon)29(yc)27(h)-232(drze)-1(w,)]TJ -27.879 -13.549 Td[(sie)-1(k)1(ie)-1(r)1(y)-369(w)27(al)1(i\\252y)-369(b)-28(ez)-370(p)1(rze)-1(stank)1(u,)-369(zgrz)-1(y)1(t)-369(pi\\252)-369(n)1(ie)-370(u)1(s)-1(ta)28(w)28(a\\252)-1(,)-368(a)-370(\\261wist)-370(ga\\252\\246z)-1(i)1(,)-369(nib)29(y)-369(te)-1(n)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)-333(ostatn)1(i,)-333(przedzie)-1(r)1(a\\252)-334(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e.)]TJ 27.879 -13.549 Td[(I)-473(tak)-473(sz)-1(\\252y)-473(go)-28(d)1(z)-1(i)1(n)28(y)-473(z)-1(a)-473(go)-28(d)1(z)-1(i)1(nami,)-473(a)-473(c)-1(or)1(az)-474(n)1(o)27(w)28(e)-474(p)-27(ok)28(os)-1(y)-472(drze)-1(w)-473(zale)-1(ga\\252y)]TJ -27.879 -13.549 Td[(p)-27(or\\246b)-28(\\246)-334(i)-333(r)1(ob)-28(ota)-333(ni)1(e)-334(usta)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Sr)1(oki)-268(krzycz)-1(a\\252y)-268(w)-1(i)1(e)-1(sz)-1(a)-55(j\\241c)-269(si\\246)-269(p)-27(o)-269(n)1(as)-1(ienn)1(ik)56(ac)27(h)1(,)-269(to)-268(cz)-1(ase)-1(m)-269(stado)-268(wron)-268(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(ci\\241)-28(ga\\252o)-267(z)-267(krak)56(an)1(ie)-1(m)-267(n)1(ad)-267(t)28(ym)-267(p)-27(olem)-267(\\261)-1(mie)-1(r)1(c)-1(i)1(,)-267(to)-267(zwie)-1(r)1(z)-268(j)1(aki)-266(w)-1(y)1(s)-1(u)28(w)28(a\\252)-267(s)-1(i)1(\\246)-268(z)-267(g\\246s)-1(t)28(wi-)]TJ 0 -13.549 Td[(n)28(y)84(,)-282(sta)27(w)28(a\\252)-282(na)-282(skra)-55(ju)-281(i)-282(d\\252u)1(go)-282(w)27(o)-27(dzi\\252)-282(s)-1(zklist)28(ymi)-282(o)-28(cz)-1(ami)-282(p)-27(o)-282(s)-1(k)28(o\\252tu)1(ni)1(on)28(yc)27(h)-281(dymac)27(h)]TJ 0 -13.549 Td[(ogni)1(s)-1(k,)-333(p)-27(o)-333(drzew)27(ac)27(h)-333(p)1(ada)-55(j\\241cyc)27(h)1(,)-333(a)-334(d)1(o)-56(j)1(rza)27(wsz)-1(y)-333(lu)1(dzi)-333(z)-334(b)-28(ekiem)-334(u)1(c)-1(i)1(e)-1(k)56(a\\252.)]TJ 27.879 -13.549 Td[(A)-364(c)27(h)1(\\252opi)-364(r)1(\\241bali)-364(za)28(wz)-1(i\\246c)-1(i)1(e)-365(w\\273e)-1(ra)-55(j\\241c)-364(s)-1(i)1(\\246)-365(w)-364(b)-28(\\363r)-363(kiej)-364(te)-364(wilki,)-363(gdy)-364(stada)-364(d)1(o-)]TJ -27.879 -13.549 Td[(pad)1(n\\241,)-329(a)-330(ono)-329(s)-1(i\\246)-330(zbij)1(e)-330(w)-330(kup)-27(\\246)-330(i)-330(zdr\\246t)28(wia\\252e)-330(\\261)-1(miertelnie,)-330(p)-27(ob)-27(e)-1(ku)1(j\\241ce)-1(,)-329(c)-1(zek)55(a,)-329(p)-28(\\363k)1(i)]TJ 0 -13.55 Td[(ostatnia)-333(o)28(wie)-1(czk)55(a)-333(ni)1(e)-334(pad)1(nie)-333(p)-28(o)-28(d)-332(k\\252am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-248(p)-28(o)-248(\\261niad)1(aniu)1(,)-248(gdy)-248(s\\252o\\253ce)-249(p)-27(o)-28(d)1(nies)-1(\\252o)-248(si\\246)-249(d)1(o)-249(t)1(e)-1(la,)-248(\\273e)-249(os\\246dzie)-1(li)1(z)-1(n)1(a)-248(j\\246\\252)-1(a)]TJ\nET\nendstream\nendobj\n1113 0 obj <<\n/Type /Page\n/Contents 1114 0 R\n/Resources 1112 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1112 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1117 0 obj <<\n/Length 9114      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(347)]TJ -358.232 -35.866 Td[(sk)55(ap)29(yw)27(a\\242,)-378(a)-377(z)-1(\\252ote)-378(p)1(a)-56(j\\241k)1(i)-378(\\261wiat\\252a)-378(p)-27(e)-1(\\252za\\252y)-378(ws)-1(k)1(ro\\261)-378(b)-27(oru,)-377(dos\\252ys)-1(za\\252)-378(kt)1(os)-1(ik)-377(dal)1(e)-1(k)56(\\241)]TJ 0 -13.549 Td[(wrza)27(w)28(\\246.)]TJ 27.879 -13.549 Td[({)-433(Lu)1(dzie)-433(jaki)1(e)-1(\\261)-433(id)1(\\241)-433(c)-1(a\\252\\241)-432(gromad\\241)-433({)-433(r)1(z)-1(ek\\252)-433(k)1(t\\363ry\\261)-433(pr)1(z)-1(y)1(\\252)-1(o\\273yws)-1(zy)-432(uc)27(h)1(o)-433(do)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(a.)]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-451(i)-449(gw)27(ar)-450(b)29(y\\252)-451(coraz)-450(bli)1(\\273)-1(sz)-1(y)-450(i)-450(wyr)1(a\\271)-1(n)1(ie)-1(j)1(s)-1(zy)84(,)-450(\\273)-1(e)-450(w)-1(n)1(e)-1(t)-450(r)1(oz)-1(leg\\252y)-450(s)-1(i)1(\\246)-451(p)-27(o-)]TJ -27.879 -13.55 Td[(jedy)1(ncz)-1(e)-422(okr)1(z)-1(yk)1(i)-422(i)-421(g\\252)-1(u)1(c)27(h)28(y)-421(tup)-27(ot)-422(wielu)-421(n\\363g,)-421(a)-422(n)1(ie)-422(w)-1(y)1(s)-1(z\\252o)-422(i)-422(Zd)1(ro)28(w)27(a\\261,)-422(k)1(ie)-1(d)1(y)-422(n)1(a)]TJ 0 -13.549 Td[(dr)1(\\363\\273)-1(ce)-291(biegn\\241cej)-291(o)-27(d)-290(w)-1(si)-290(z)-1(ama)-56(j)1(ac)-1(zy\\252y)-291(sani)1(e)-1(,)-290(kt\\363r)1(e)-291(w)-1(n)1(e)-1(t)-290(wypad)1(\\252y)-291(n)1(a)-291(p)-27(or\\246b)-28(\\246,)-290(s)-1(to-)]TJ 0 -13.549 Td[(ja\\252)-311(w)-311(n)1(ic)27(h)-310(Boryn)1(a,)-311(a)-311(za)-311(ni)1(m)-312(k)28(on)1(no,)-310(w)27(ozam)-1(i)-310(i)-311(p)1(ie)-1(c)28(h)28(t)28(y)-311(wysyp)28(yw)28(a\\252)-311(s)-1(i)1(\\246)-312(g\\246s)-1(t)28(y)-310(t\\252um)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t,)-387(c)28(h\\252op)-27(\\363)27(w)-387(i)-387(wyrostk)28(\\363)27(w,)-387(a)-387(ws)-1(zystk)28(o)-388(to)-387(p)-27(o)-28(d)1(nies)-1(\\252sz)-1(y)-387(srogi)-387(kr)1(z)-1(yk)-387(j)1(\\246)-1(\\252o)-387(gna\\242)]TJ 0 -13.549 Td[(ku)-333(r)1(\\246)-1(b)1(ac)-1(zom)-1(.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-423(wys)-1(k)28(o)-27(c)-1(zy\\252)-423(z)-1(e)-423(sani)-422(i)-423(p)-27(ogna\\252)-423(p)1(rz)-1(o)-27(dem)-1(;)-422(z)-1(a)-423(n)1(im)-423(z)-1(a\\261,)-423(gd)1(z)-1(i)1(e)-424(k)1(to)-423(ino)]TJ -27.879 -13.55 Td[(wz)-1(i)1(\\241\\252)-365(miejsc)-1(e,)-364(le)-1(cieli)-364(dr)1(ud)1(z)-1(y)84(,)-364(kto)-364(b)28(y\\252)-364(z)-365(kij)1(e)-1(m,)-364(kto)-364(zn\\363)28(w)-365(gr)1(o\\271)-1(n)1(ie)-365(p)-27(otrz\\241c)27(h)1(a\\252)-365(wi-)]TJ 0 -13.549 Td[(d\\252ami,)-306(kt\\363ren)-307(ce)-1(p)29(y)-307(dzier\\273y\\252)-307(mo)-28(c)-1(n)1(o)-307(w)-307(gar\\261c)-1(i,)-306(inszy)-307(k)28(os)-1(\\241)-306(m)-1(igot)1(a\\252)-1(,)-306(a)-307(in)1(s)-1(zy)-307(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(z)-374(p)1(rost\\241)-373(ga\\252)-1(\\246zi\\241,)-373(a)-373(jak)-373(k)28(obi)1(e)-1(t)28(y)84(,)-373(to)-374(p)1(rosto)-373(z)-374(pazur)1(am)-1(i)-373(i)-373(wr)1(z)-1(askiem)-1(,)-373(a)-373(ws)-1(zystkie)]TJ 0 -13.549 Td[(ru)1(n\\246li)-333(na)-333(pr)1(z)-1(era\\273on)28(yc)27(h)-332(r\\246)-1(b)1(ac)-1(z\\363)28(w.)]TJ 27.879 -13.549 Td[({)-419(Nie)-419(r\\241ba\\242!)-419(W)83(ar)1(a)-419(o)-28(d)-419(b)-27(oru)1(!)-419(Nas)-1(z)-419(las)-1(,)-418(nie)-419(p)-28(ozw)27(al)1(am)27(y!)-419({)-419(wrze)-1(sz)-1(cze)-1(li)-419(r)1(a-)]TJ -27.879 -13.55 Td[(ze)-1(m,)-368(\\273)-1(e)-368(i)-368(ni)1(kto)-368(ni)1(e)-369(wyrozumia\\252,)-368(cz)-1(ego)-368(c)27(h)1(c)-1(ieli,)-368(d)1(opi)1(e)-1(ro)-368(Bory)1(na)-368(pr)1(z)-1(ystan\\241\\252)-368(p)1(rzy)]TJ 0 -13.549 Td[(struc)28(hla\\252yc)28(h)-333(i)-333(ryk)1(n\\241\\252,)-333(\\273)-1(e)-333(na)-333(c)-1(a\\252y)-333(las)-334(si\\246)-334(r)1(oz)-1(leg\\252o:)]TJ 27.879 -13.549 Td[({)-320(Lu)1(dzie)-320(z)-320(Mo)-27(dlicy!)-319(lud)1(z)-1(i)1(e)-320(z)-320(R)-1(zep)-28(ek)-320(i)-319(sk)55(\\241d)-319(to)-319(jes)-1(zc)-1(ze)-320(jes)-1(t)1(e)-1(\\261ta,)-320(s\\252uc)28(ha)-56(j)1(c)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252o)-398(z)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-398(a)-398(on)-398(zno)28(wu)-398(w)28(o\\252)-1(a\\252:)-398({)-398(Zab)1(ie)-1(r)1(z)-1(ta,)-397(c)-1(o)-398(w)28(as)-1(ze)-1(,)-398(i)-397(id\\271ta)-398(z)]TJ -27.879 -13.549 Td[(Bogie)-1(m,)-410(r\\241ba\\242)-411(wz)-1(b)1(ran)1(iam)27(y)84(,)-411(a)-411(k)1(t\\363ren)-411(b)29(y)-411(ni)1(e)-412(u)1(s)-1(\\252u)1(c)27(h)1(a\\252)-1(,)-410(z)-411(c)-1(a\\252ym)-411(n)1(aro)-28(d)1(e)-1(m)-411(mia\\252)]TJ 0 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-333(s)-1(p)1(ra)28(w)27(\\246...)]TJ 27.879 -13.549 Td[(Nie)-452(opi)1(e)-1(r)1(ali)-452(si\\246,)-452(b)-27(o)-28(\\242)-452(s)-1(r)1(ogie)-452(t)27(w)28(arze)-1(,)-451(kij)1(e)-1(,)-451(w)-1(i)1(d\\252y)84(,)-452(ce)-1(p)28(y)-451(i)-452(t)28(yl)1(a)-452(nar)1(o)-28(du)-451(roz-)]TJ -27.879 -13.549 Td[(gni)1(e)-1(w)28(anego,)-360(got)1(o)27(w)28(e)-1(go)-359(do)-359(bi)1(tki,)-359(s)-1(t)1(rac)27(h)1(e)-1(m)-360(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252o,)-360(to)-359(zac)-1(z\\246)-1(li)-359(si\\246)-360(zm)-1(a)28(wia\\242,)]TJ 0 -13.549 Td[(skrzykiw)28(a\\242)-1(,)-298(top)-27(ory)-298(z)-1(a)-298(pas)-299(z)-1(ak)1(\\252ada\\242,)-299(p)1(i\\252y)-299(zbiera\\242)-299(i)-298(kup)1(i\\242)-299(si\\246)-299(do)-299(si\\246)-299(z)-299(p)-27(om)-1(r)1(uki)1(e)-1(m)]TJ 0 -13.549 Td[(gni)1(e)-1(wn)28(ym,)-321(a)-322(z)-1(w\\252asz)-1(cz)-1(a)-321(Rz)-1(ep)-28(cz)-1(ak)1(i,)-322(\\273e)-322(to)-322(sz)-1(l)1(ac)27(h)28(ta)-321(b)28(y\\252a)-322(i)-321(o)-28(d)-321(w)-1(i)1(e)-1(k)28(\\363)28(w)-322(w)-322(k\\252\\363tn)1(iac)27(h)]TJ 0 -13.55 Td[(s\\241s)-1(iedzkic)28(h)-303(z)-304(Lip)-28(czak)55(ami,)-303(to)-303(w)-1(y)1(klin)1(ali)-303(w)-304(g\\252os)-1(,)-303(trzas)-1(k)56(ali)-303(top)-27(orami,)-303(o)-28(dgr)1(a\\273)-1(al)1(i)-304(si\\246,)]TJ 0 -13.549 Td[(ale)-308(c)28(hc\\241c)-308(ni)1(e)-308(c)27(h)1(c)-1(\\241c)-308(u)1(s)-1(t)1(\\246)-1(p)-27(o)28(w)27(ali)-307(p)1(rz)-1(ed)-307(si\\252\\241,)-307(a)-308(n)1(ar\\363)-28(d)-307(za\\261)-308(kr)1(z)-1(y)1(k)55(a\\252)-307(gro\\271nie,)-307(nast\\246p)-28(o-)]TJ 0 -13.549 Td[(w)28(a\\252)-334(n)1(a)-334(n)1(ic)27(h)-333(i)-333(wyp)1(ie)-1(r)1(a\\252)-334(w)-333(b)-28(\\363r)1(.)]TJ 27.879 -13.549 Td[(Insi)-226(z)-1(a\\261)-226(rozbiegli)-226(si\\246)-227(p)-27(o)-226(p)-27(or\\246)-1(b)1(ie)-227(gasi\\242)-226(ognisk)56(a)-227(i)-226(r)1(oz)-1(w)28(ala\\242)-227(p)-27(ou)1(k\\252adan)1(e)-227(s)-1(\\241\\273ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-321(bab)29(y)83(,)-321(z)-321(Koz)-1(\\252o)28(w)28(\\241)-321(na)-321(pr)1(z)-1(edzie,)-321(do)-55(jrza)28(ws)-1(zy)-321(bu)1(dy)-321(zbit)1(e)-322(z)-322(d)1(e)-1(sek)-321(na)-321(kr)1(a)-56(j)1(u)-321(p)-27(or\\246)-1(b)29(y)]TJ 0 -13.55 Td[(p)-27(ogna\\252y)-333(tam)-334(i)-333(n)28(u)1(\\273)-334(je)-333(rozdzie)-1(r)1(a\\242)-334(a)-333(roz)-1(w\\252\\363)-28(cz)-1(y)1(\\242)-334(p)-28(o)-333(les)-1(i)1(e)-1(,)-333(b)28(y)-333(i)-333(\\261ladu)-333(n)1(ie)-334(zos)-1(ta\\252o.)]TJ 27.879 -13.549 Td[(Boryn)1(a)-485(za\\261)-1(,)-484(sk)28(oro)-485(r)1(\\246)-1(b)1(ac)-1(ze)-485(ust\\241)-28(p)1(ili)-484(tak)-484(\\252ac)-1(n)1(o,)-485(skr)1(z)-1(yk)1(iw)27(a\\252)-484(gos)-1(p)-27(o)-28(d)1(arz)-1(y)-484(i)]TJ -27.879 -13.549 Td[(nama)28(wia\\252,)-241(b)28(yc)28(h)-241(ca\\252)-1(\\241)-241(gr)1(om)-1(ad)1(\\241)-241(do)-241(d)1(w)27(ora)-241(teraz)-241(i\\261\\242)-242(i)-241(zap)-28(o)28(wiedzie)-1(\\242)-241(dziedzic)-1(o)28(wi,)-241(ab)29(y)]TJ 0 -13.549 Td[(si\\246)-258(n)1(ie)-257(w)27(a\\273y\\252)-257(lasu)-257(r)1(usz)-1(y)1(\\242)-1(,)-257(p)-27(\\363ki)-256(s)-1(\\241d)1(y)-257(ni)1(e)-258(o)-27(ddad)1(z)-1(\\241,)-256(c)-1(o)-257(j)1(e)-1(st)-257(c)28(h\\252opskiego.)-257(Ale)-257(ni)1(m)-257(s)-1(i\\246)]TJ 0 -13.549 Td[(zm)-1(\\363)28(wili,)-390(n)1(im)-391(wymiark)28(o)28(w)28(ali,)-390(c)-1(o)-390(z)-1(r)1(obi\\242,)-390(ab)28(y)-390(b)28(y\\252o)-390(jak)-390(na)-55(jlepiej,)-390(b)1(ab)28(y)-390(p)-28(o)-27(dni)1(e)-1(s\\252y)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)-311(i)-310(z)-1(acz)-1(\\246\\252y)-311(b)-27(e)-1(z\\252adni)1(e)-312(u)1(c)-1(iek)56(a\\242)-312(o)-27(d)-311(bu)1(d,)-311(b)-27(o)-311(kil)1(k)55(an)1(a\\261)-1(cie)-311(k)28(oni)-311(wyp)1(ad\\252yc)28(h)-311(z)-311(las)-1(u)]TJ 0 -13.55 Td[(jec)27(h)1(a\\252o)-334(i)1(m)-334(na)-333(k)56(ark)56(ac)27(h)1(...)]TJ 27.879 -13.549 Td[(Dw)28(\\363r)-333(up)1(rz)-1(edzon)28(y)-333(pr)1(z)-1(y)1(b)28(yw)28(a\\252)-334(r\\246baczom)-334(na)-333(p)-27(om)-1(o)-28(c.)]TJ 0 -13.549 Td[(Na)-278(c)-1(ze)-1(l)1(e)-279(p)1(arobk)28(\\363)28(w)-278(jec)27(ha\\252)-278(r)1(z)-1(\\241dca,)-278(wpad)1(li)-278(na)-278(p)-27(or\\246b)-28(\\246)-278(os)-1(t)1(ro)-278(i)-278(z)-1(ar)1(az)-279(z)-279(miejsc)-1(a)]TJ -27.879 -13.549 Td[(dop)1(ad\\252sz)-1(y)-318(k)28(obi)1(e)-1(t)-318(z)-1(acz)-1(\\246li)-318(je)-319(p)1(ra\\242)-319(b)1(atam)-1(i)1(,)-319(a)-318(rz\\241dca,)-319(c)28(h\\252op)-318(kiej)-318(tur)1(,)-319(b)1(i\\252)-319(p)1(ierws)-1(zy)-318(i)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252:)]TJ 27.879 -13.55 Td[({)-333(Z\\252)-1(o)-27(dzie)-1(j)1(e)-1(,)-333(wsz)-1(arze!)-334(Batami)-333(ic)27(h)1(!)-333(W)-333(p)-28(ostron)1(ki,)-333(do)-333(kr)1(ym)-1(i)1(na\\252u!)]TJ 0 -13.549 Td[({)-305(Kup)1(\\241,)-305(kup)1(\\241,)-305(do)-305(mnie,)-305(nie)-305(da)28(w)28(a\\242)-306(s)-1(i)1(\\246)-1(!)-305({)-305(wrz)-1(esz)-1(cz)-1(a\\252)-305(Boryna,)-305(b)-27(o)-305(nar)1(\\363)-28(d)-305(ju)1(\\273)]TJ\nET\nendstream\nendobj\n1116 0 obj <<\n/Type /Page\n/Contents 1117 0 R\n/Resources 1115 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1115 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1120 0 obj <<\n/Length 10032     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(348)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-363(rozlat)28(yw)28(a\\252)-362(z)-1(es)-1(tr)1(ac)27(han)29(y)83(,)-362(ale)-362(na)-362(ten)-362(g\\252os)-363(p)-27(o)28(w)-1(strzym)28(yw)27(al)1(i)-362(s)-1(i\\246)-362(w)-363(miejsc)-1(u)-361(i)-362(nie)]TJ 0 -13.549 Td[(bacz\\241c)-416(na)-415(bat)28(y)84(,)-415(pra\\273\\241ce)-416(niejedn)29(yc)27(h)-415(j)1(u\\273)-416(p)-27(o)-415(\\252bac)27(h)1(,)-415(w)-416(d)1(yrd)1(y)83(,)-415(os\\252ania)-55(j\\241c)-416(r)1(\\246)-1(k)56(ami)]TJ 0 -13.549 Td[(g\\252o)28(w)-1(y)84(,)-333(bi)1(e)-1(gli)-333(d)1(o)-334(starego.)]TJ 27.879 -13.549 Td[({)-386(Kij)1(am)-1(i)-386(p)1(s)-1(u)1(brat)1(\\363)27(w!)-386(Ce)-1(p)1(am)-1(i)-386(w)-386(k)28(oni)1(e)-1(!)-386({)-386(krzycz)-1(a\\252)-386(rozs)-1(r)1(o\\273)-1(on)28(y)-386(stary)-386(i)-386(p)-27(o-)]TJ -27.879 -13.549 Td[(rw)28(a)28(w)-1(szy)-404(j)1(aki\\261)-404(k)28(\\363\\252)-403(pi)1(e)-1(rwsz)-1(y)-403(rzuci\\252)-403(s)-1(i\\246)-403(na)-403(dw)28(orskic)27(h)1(;)-403(a)-404(p)1(ra\\252,)-403(gdzie)-404(p)-27(opad)1(\\252)-1(o;)-403(za)]TJ 0 -13.55 Td[(ni)1(m)-289(za)-1(\\261,)-288(kiej)-288(ten)-288(b)-28(\\363r)-288(wic)28(h)28(ur)1(\\241)-289(gn)1(ie)-1(wu)-288(p)1(rze)-1(j)1(\\246)-1(t)28(y)83(,)-288(zw)27(ar)1(\\252y)-289(si\\246)-289(c)28(h\\252op)28(y)-288(rami\\246)-289(w)-288(rami\\246,)]TJ 0 -13.549 Td[(ce)-1(p)28(y)-352(pr)1(z)-1(y)-352(c)-1(epac)28(h,)-352(w)-1(i)1(d\\252y)-353(p)1(rzy)-353(wid)1(\\252ac)27(h)-352(i)-353(z)-353(kr)1(z)-1(yk)1(ie)-1(m)-353(ogr)1(om)-1(n)28(y)1(m)-353(run)1(\\246)-1(l)1(i)-353(n)1(a)-353(dw)28(or-)]TJ 0 -13.549 Td[(skic)27(h)-347(pra\\273\\241c,)-348(c)-1(zym)-348(kto)-348(in)1(o)-349(m\\363g\\252)-348(dosi\\246gn\\241\\242,)-348(a\\273)-349(zadu)1(dn)1(ia\\252o,)-348(jak)1(b)28(y)-348(kto)-348(gro)-27(c)27(h)-348(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)-28(d\\252o)-28(d)1(z)-1(e)-333(kij)1(e)-1(m)-334(wy\\252u)1(s)-1(ki)1(w)27(a\\252.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252y)-299(s)-1(i\\246)-299(wrzas)-1(ki)-298(nielud)1(z)-1(k)1(ie)-1(,)-298(prze)-1(k)1(le)-1(\\253)1(s)-1(t)28(w)28(a,)-299(kwiki)-298(prze)-1(t)1(r\\241c)-1(an)29(yc)27(h)-298(k)28(oni,)]TJ -27.879 -13.549 Td[(j\\246ki)-298(ran)1(n)28(yc)28(h,)-298(g\\252uc)27(h)1(e)-299(a)-298(g\\246)-1(ste)-299(razy)-298(k)28(o\\252\\363)27(w,)-298(sz)-1(amotani)1(a)-299(c)27(h)1(rap)1(liw)28(e)-299(i)-298(dzikie)-299(p)-27(okr)1(z)-1(yk)1(i)]TJ 0 -13.55 Td[(p)-27(ob)-28(o)-55(jo)28(wisk)55(a.)]TJ 27.879 -13.549 Td[(Dw)28(orsc)-1(y)-246(bron)1(ili)-246(s)-1(i)1(\\246)-247(t\\246)-1(go,)-246(wym)27(y)1(\\261)-1(lal)1(i)-247(i)-246(bil)1(i)-247(n)1(ie)-1(zgorze)-1(j)-246(o)-28(d)-246(c)28(h\\252op)-27(\\363)27(w,)-246(ale)-247(z)-1(acz)-1(\\246li)]TJ -27.879 -13.549 Td[(si\\246)-287(w)-286(k)28(o\\253cu)-286(m)-1(i)1(e)-1(sz)-1(a\\242)-286(i)-286(c)-1(of)1(a\\242)-1(,)-286(b)-27(o)-286(k)28(onie)-286(s)-1(magane)-286(c)-1(epami)-286(s)-1(ta)28(w)28(a\\252y)-286(d\\246ba)-286(i)-286(z)-287(kwiki)1(e)-1(m)]TJ 0 -13.549 Td[(na)28(wraca\\252y)-449(p)-28(on)1(os)-1(z\\241c,)-449(a\\273)-450(rz\\241dca,)-449(widz\\241c)-1(,)-448(c)-1(o)-449(si\\246)-450(d)1(z)-1(ieje,)-449(s)-1(p)1(i\\241\\252)-449(s)-1(w)28(o)-56(j)1(e)-1(go)-449(u)1(\\252ank)56(a)-449(i)]TJ 0 -13.549 Td[(sk)28(o)-28(c)-1(zy\\252)-333(w)-333(ca\\252)-1(\\241)-332(kup)-27(\\246)-333(naro)-27(du,)-332(ku)-332(B)-1(or)1(yrn)1(ie)-1(,)-332(ale)-333(ino)-333(t)28(yl)1(a)-333(go)-333(b)28(y\\252o)-333(wid)1(a\\242)-1(,)-332(b)-28(o)-332(naraz)]TJ 0 -13.55 Td[(za)27(w)28(arcz)-1(a\\252y)-497(c)-1(ep)28(y)-497(i)-498(ki)1(lk)56(adzie)-1(si\\241t)-497(bij)1(ak)28(\\363)27(w)-498(spad)1(\\252o)-498(n)1(a)-498(ni)1(e)-1(go,)-497(a)-498(kil)1(k)55(ad)1(z)-1(i)1(e)-1(si\\241t)-498(r)1(\\241k)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(y)1(c)-1(i\\252o)-470(go)-470(ze)-471(wsz)-1(ystkic)28(h)-470(stron)-469(i)-470(wyrw)28(a\\252o)-470(z)-471(k)28(on)1(ia,)-470(\\273e)-471(ki)1(e)-1(j)-470(t)1(e)-1(n)-469(kierz)-1(,)-469(ryj)1(e)-1(m)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(a\\273)-1(on)29(y)83(,)-312(wyl)1(e)-1(cia\\252)-312(w)-313(p)-27(o)28(wie)-1(tr)1(z)-1(e)-312(i)-312(pad)1(\\252)-313(w)-312(\\261nieg,)-312(p)-27(o)-28(d)-312(n)1(ogi,)-312(i\\273)-312(le)-1(d)1(wie)-313(go)-312(Boryn)1(a)]TJ 0 -13.549 Td[(o)-28(c)28(hron)1(i\\252)-333(i)-334(za)28(wl\\363k\\252)-334(n)1(ieprzytomnego)-333(w)-334(p)1(rz)-1(ezpiec)-1(zne)-334(miejsc)-1(e.)]TJ 27.879 -13.549 Td[(Sk)1(\\252\\246)-1(b)1(i\\252o)-228(si\\246)-228(wtedy)-227(ws)-1(zystk)28(o)-228(z)-228(n)1(ag\\252a,)-227(jak)-227(kiedy)-227(wic)27(h)1(e)-1(r)-227(u)1(derzy)-228(n)1(ies)-1(p)-27(o)-28(dzian)1(ie)]TJ -27.879 -13.55 Td[(w)-451(k)28(op)29(y)83(,)-450(zam)-1(\\241ci,)-450(\\273)-1(e)-450(jeno)-450(jeden)-450(k\\252\\246)-1(b)-449(nieroze)-1(znan)28(y)-450(si\\246)-451(u)1(c)-1(zyni)1(,)-450(tac)-1(za)-451(p)-27(o)-450(p)-28(ol)1(u)-450(i)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(al)1(a)-303(p)-28(o)-303(zagonac)27(h)1(;)-303(krzyk)-303(si\\246)-304(p)-27(o)-28(d)1(ni\\363s\\252)-303(s)-1(tr)1(as)-1(zn)28(y)-303(i)-303(tak)1(i)-303(z)-1(am\\246)-1(t)1(,)-303(taki)-303(wir,)-303(\\273e)-304(j)1(u\\273)]TJ 0 -13.549 Td[(ni)1(c)-329(nie)-329(b)28(y\\252o)-328(w)-1(i)1(dn)1(o,)-329(kr)1(om)-1(ie)-329(spl)1(\\241tan)28(yc)27(h)-328(ku)1(p)-328(tarza)-56(j\\241cyc)28(h)-329(si\\246)-329(p)-27(o)-329(\\261)-1(n)1(iegac)27(h,)-328(kromie)]TJ 0 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)-285(w)28(al\\241c)-1(y)1(c)27(h)-285(z)-286(w\\261c)-1(iek\\252o\\261c)-1(i\\241,)-285(a)-285(c)-1(zas)-1(em)-286(j)1(aki\\261)-286(wyd)1(z)-1(iera\\252)-285(s)-1(i)1(\\246)-286(z)-286(ku)1(p)28(y)-285(i)-286(u)1(c)-1(i)1(e)-1(k)56(a\\252)-286(k)1(ie)-1(j)]TJ 0 -13.549 Td[(osz)-1(ala\\252y)84(,)-300(ale)-301(n)1(a)28(w)-1(r)1(ac)-1(a\\252)-300(wnet)-300(i)-300(z)-301(n)1(o)27(wym)-300(kr)1(z)-1(yki)1(e)-1(m,)-300(z)-301(n)1(o)28(w)27(\\241)-300(w\\261)-1(ciek\\252o\\261)-1(ci\\241)-300(rzuca\\252)-300(s)-1(i\\246)]TJ 0 -13.55 Td[(do)-333(b)1(itki.)]TJ 27.879 -13.549 Td[(Pr)1(ali)-293(si\\246)-294(w)-293(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246)-293(i)-293(ku)1(pami,)-293(w)28(o)-28(dzili)-293(za)-293(orzydl)1(a)-1(,)-292(to)-293(z)-1(a)-293(\\252b)28(y)84(,)-293(gni)1(e)-1(tli)-292(k)28(ola-)]TJ -27.879 -13.549 Td[(nami,)-307(oz)-1(d)1(z)-1(i)1(e)-1(ral)1(i)-308(do)-307(\\273)-1(yw)28(ego)-308(m)-1(i)1(\\246)-1(sa.)-308(a)-308(p)1(rze)-1(p)1(rze)-1(\\242)-308(s)-1(i)1(\\246)-309(j)1(e)-1(szc)-1(ze)-309(n)1(ie)-308(m)-1(ogl)1(i,)-308(b)-27(o)-308(d)1(w)27(or)1(s)-1(cy)]TJ 0 -13.549 Td[(p)-27(oz)-1(es)-1(k)56(aki)1(w)27(ali)-438(z)-439(k)28(on)1(i,)-438(ni)1(e)-439(ust\\246)-1(p)1(uj)1(\\241c)-439(ani)-438(n)1(a)-439(k)1(rok,)-438(ile)-438(\\273)-1(e)-439(p)1(rzyb)28(yw)28(a\\252a)-439(i)1(m)-439(ci\\241)-28(g\\252a)]TJ 0 -13.549 Td[(p)-27(om)-1(o)-27(c)-1(,)-395(b)-27(o)-395(r)1(\\246)-1(b)1(ac)-1(ze)-396(p)1(rze)-1(sz)-1(l)1(i)-395(na)-395(i)1(c)27(h)-394(s)-1(tr)1(on\\246)-395(i)-395(t\\246go)-395(ws)-1(p)1(ie)-1(r)1(ali;)-394(pierws)-1(ze)-395(Rz)-1(ep)-28(cz)-1(ak)1(i)]TJ 0 -13.55 Td[(h)28(u)1(rm\\241)-291(a)-290(milcz)-1(ki)1(e)-1(m)-290(kiej)-290(te)-291(z\\252)-1(e)-290(psy)-290(rzucili)-290(s)-1(i)1(\\246)-291(p)-27(om)-1(aga\\242,)-290(a)-291(wi\\363)-27(d\\252)-290(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-290(b)-27(oro-)]TJ 0 -13.549 Td[(wy)83(,)-289(k)1(t\\363ren)-289(w)-290(ostatn)1(ie)-1(j)-288(c)27(h)28(wili)-289(si\\246)-290(zja)28(wi\\252,)-289(\\273e)-290(z)-1(a\\261)-289(c)27(h)1(\\252)-1(op)-288(b)28(y\\252)-289(jak)-289(b)28(y)1(k,)-289(mo)-28(c)-1(ar)1(z)-290(g\\252o\\261)-1(n)29(y)]TJ 0 -13.549 Td[(na)-300(ok)28(olic\\246)-1(,)-300(a)-301(p)1(rzy)-301(t)28(y)1(m)-301(z)-1(ad)1(z)-1(ierzyst)28(y)-301(i)-300(s)-1(w)28(o)-56(j)1(e)-301(s)-1(p)1(ra)28(wy)-301(z)-301(Li)1(p)-28(cam)-1(i)-300(ma)-56(j)1(\\241c)-1(y)84(,)-301(to)-300(pi)1(e)-1(rw-)]TJ 0 -13.549 Td[(sz)-1(y)-399(s)-1(i)1(\\246)-400(rzuca\\252)-400(w)-400(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246)-400(n)1(a)-400(ca\\252e)-400(ku)1(p)28(y)83(,)-399(rozbi)1(ja\\252)-400(\\252b)28(y)-399(k)28(olb)1(\\241)-400(f)1(uzji,)-399(rozp)-27(\\246)-1(d)1(z)-1(a\\252)-399(i)]TJ 0 -13.549 Td[(tak)-333(pr)1(a\\252,)-333(\\273)-1(e)-334(n)1(iec)27(h)-333(B\\363g)-334(b)1(roni)1(!)]TJ 27.879 -13.549 Td[(P)28(osz)-1(ed\\252)-305(na\\253)-305(S)1(tac)27(ho)-305(P\\252osz)-1(k)56(a,)-305(b)28(y)-305(go)-306(wstrzyma\\242)-1(,)-305(b)-27(o)-306(j)1(u\\273)-306(n)1(ar\\363)-28(d)-305(zac)-1(z\\241\\252)-306(p)1(rz)-1(ed)]TJ -27.879 -13.55 Td[(ni)1(m)-384(ucie)-1(k)56(a\\242,)-384(to)-383(go)-384(u)1(c)27(h)28(wyci\\252)-384(za)-384(orzydl)1(e)-1(,)-383(okr\\246c)-1(i)1(\\252)-384(nad)-383(sob\\241)-384(i)-383(rzuci\\252)-384(n)1(a)-384(zie)-1(m)-384(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ten)-470(s)-1(n)1(op)-27(e)-1(k)-470(wym\\252\\363)-28(c)-1(on)29(y)83(,)-470(a\\273)-470(Stac)28(ho)-470(pad)1(\\252)-471(n)1(ieprzytomn)28(y)84(.)-470(Sk)28(o)-28(cz)-1(y)1(\\252)-471(d)1(o\\253)-470(kt\\363r)1(y\\261)-471(z)]TJ 0 -13.549 Td[(W)84(ac)27(hn)1(ik)28(\\363)28(w)-359(i)-359(tr)1(z)-1(asn\\241\\252)-359(go)-358(c)-1(epami)-359(gd)1(z)-1(i)1(e)-1(sik)-359(w)-358(rami\\246)-1(,)-358(ale)-359(dosta\\252)-359(n)1(a)-359(o)-28(dl)1(e)-1(w)-359(p)1(i\\246\\261)-1(ci\\241)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-268(o)-28(cz)-1(y)84(,)-268(\\273)-1(e)-269(j)1(e)-1(n)1(o)-269(ozw)27(ar)1(\\252)-269(ramion)1(a)-269(i)-268(z)-269(t)28(ym)-269(s\\252o)27(w)28(e)-1(m)-268(\\377)-56(Jez)-1(u)1(s)-1(!\")-268(rymn)1(\\241\\252)-269(na)-268(z)-1(i)1(e)-1(mi\\246.)]TJ 27.879 -13.549 Td[(W)-492(k)28(o\\253)1(c)-1(u)-492(j)1(u\\273)-492(i)-493(M)1(ate)-1(u)1(s)-1(z)-492(nie)-492(wytrzyma\\252)-493(i)-492(r)1(z)-1(u)1(c)-1(i\\252)-492(s)-1(i)1(\\246)-493(do)-492(n)1(ie)-1(go,)-492(al)1(e)-493(c)27(h)1(o)-28(\\242)]TJ -27.879 -13.55 Td[(c)27(h)1(\\252op)-375(b)28(y)1(\\252)-375(w)-376(mo)-28(cy)-375(j)1(e)-1(d)1(nem)27(u)-374(An)28(tk)28(o)28(w)-1(i)-374(r\\363)28(wn)28(y)83(,)-374(nie)-375(wytrzyma\\252)-375(i)-375(p)1(ac)-1(ierza,)-375(b)-27(oro)28(wy)]TJ 0 -13.549 Td[(go)-405(zm)-1(\\363g\\252,)-404(s)-1(p)1(ra\\252;)-405(w)-405(\\261niegu)-404(ut)28(yt\\252a\\252)-405(i)-405(d)1(o)-405(uciec)-1(zki)-404(przyni)1(e)-1(w)28(oli\\252,)-404(a)-405(s)-1(am)-405(ru)1(s)-1(zy\\252)-405(ku)]TJ\nET\nendstream\nendobj\n1119 0 obj <<\n/Type /Page\n/Contents 1120 0 R\n/Resources 1118 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1105 0 R\n>> endobj\n1118 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1123 0 obj <<\n/Length 10042     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(349)]TJ -358.232 -35.866 Td[(Boryn)1(ie)-1(,)-315(kt\\363ren)-316(w)-316(ku)1(pie)-316(c)-1(a\\252ej)-316(w)28(o)-28(d)1(z)-1(i\\252)-316(si\\246)-316(z)-1(a)-316(\\252b)28(y)-316(z)-316(Rz)-1(ep)-27(c)-1(zak)55(ami,)-315(ale)-317(n)1(im)-316(s)-1(i\\246)-316(do\\253)]TJ 0 -13.549 Td[(dob)1(ra\\252,)-358(opad)1(\\252y)-359(go)-358(z)-359(wrz)-1(askiem)-359(b)1(ab)28(y)83(,)-358(p)1(rz)-1(ec)27(h)29(w)-1(y)1(c)-1(i\\252y)-358(pazur)1(am)-1(i)1(,)-359(wpi)1(\\246)-1(\\252y)-358(m)27(u)-358(si\\246)-359(w)]TJ 0 -13.549 Td[(ku)1(d\\252y)84(,)-344(spl\\241ta\\252y)-343(i)-343(przygi\\241)28(ws)-1(zy)-343(do)-343(z)-1(iemi)-344(w)28(o)-28(dzi\\252y)-343(s)-1(i\\246)-344(z)-344(n)1(im)-344({)-343(jak)28(o)-344(te)-344(k)1(un)1(dle,)-344(k)1(ie)-1(j)]TJ 0 -13.549 Td[(psa)-327(o)28(w)28(c)-1(zarskiego)-327(op)1(adn)1(\\241,)-327(k\\252ami)-326(z)-1(a)-326(s)-1(k)28(\\363r)1(\\246)-327(uj)1(m)-1(\\241)-326(i)-327(ciepi\\241)-326(si\\246)-327(\\273)-1(e)-327(n)1(im)-327(to)-326(w)-327(t\\246,)-327(t)1(o)-327(w)]TJ 0 -13.549 Td[(o)28(w)27(\\241)-333(stron\\246.)]TJ 27.879 -13.55 Td[(Ale)-278(j)1(u\\273)-278(p)-27(o)-28(d)-277(ten)-277(c)-1(zas)-278(i)-278(n)1(ar\\363)-28(d)-277(b)1(ra\\252)-278(g\\363r)1(\\246)-1(,)-277(z)-1(w)28(arl)1(i)-278(si\\246)-278(i)-277(p)-28(omies)-1(zali)-277(kiej)-277(te)-278(li\\261c)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(n)-408(sw)27(o)-55(jego)-409(u)1(\\252api\\252,)-408(du)1(s)-1(i)1(\\252)-409(i)-408(tac)-1(za\\252)-409(si\\246)-409(z)-409(n)1(im)-409(p)-27(o)-409(\\261ni)1(e)-1(gu)1(,)-409(a)-408(bab)29(y)-409(d)1(opad)1(a\\252y)-409(z)]TJ 0 -13.549 Td[(b)-27(ok)28(\\363)27(w)-333(i)-333(dar\\252y)-333(za)-334(k)1(ud)1(\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(W)84(rz)-1(ask)-253(b)28(y)1(\\252o)-253(ano)-253(j)1(u\\273)-253(taki,)-253(zam\\246)-1(t,)-252(k)28(ot\\252o)27(w)28(ani)1(na,)-253(\\273e)-254(sw)28(\\363)-56(j)-253(sw)28(o)-56(jego)-253(ledwie)-253(roz-)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(n)1(a\\252,)-289(ale)-289(w)-288(k)28(o\\253cu)-288(prze)-1(p)1(arli)-288(dw)28(orskic)28(h,)-288(par)1(u)-289(j)1(u\\273)-289(z)-289(n)1(ic)27(h)-288(le\\273a\\252)-1(o)-288(p)-27(okrw)28(a)27(wion)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(a)-320(in)1(s)-1(ze)-320(z)-1(a\\261)-320(z)-1(mord)1(o)28(w)27(an)1(e)-1(,)-320(os\\252ab\\252e,)-320(c)27(h)29(y\\252kiem)-320(ucie)-1(k)56(a\\252y)-320(w)-320(las,)-320(t)28(y)1(lk)28(o)-320(r\\246bacz)-1(e)-320(br)1(onil)1(i)]TJ 0 -13.55 Td[(si\\246)-354(ostatk)56(am)-1(i)-353(si\\252,)-353(a)-353(na)28(w)28(e)-1(t)-353(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-353(pr)1(os)-1(il)1(i)-353(o)-354(mi\\252osierdzie,)-353(ale)-354(\\273e)-354(n)1(ar\\363)-28(d)-353(b)29(y\\252)]TJ 0 -13.549 Td[(rozs)-1(r)1(o\\273)-1(on)29(y)-299(j)1(e)-1(szc)-1(ze)-299(bar)1(z)-1(ej)-298(na)-298(ni)1(c)27(h)-298(n)1(i\\271)-1(l)1(i)-298(na)-298(dw)28(orskic)27(h)1(,)-298(\\273)-1(e)-299(r)1(oz)-1(gor)1(z)-1(a\\252)-298(kiej)-298(ta)-298(\\273)-1(agiew)]TJ 0 -13.549 Td[(na)-260(wietrze)-1(,)-260(t)1(o)-261(p)1(r\\363\\261b)-260(n)1(ie)-261(s\\252uc)27(h)1(a\\252)-260(i)-260(na)-260(ni)1(c)-261(n)1(ie)-261(b)1(ac)-1(zy\\252,)-260(jeno)-260(p)1(ra\\252)-260(z)-261(ca\\252\\241)-260(w)-1(\\261c)-1(i)1(e)-1(k\\252o\\261c)-1(i)1(\\241.)]TJ 27.879 -13.549 Td[(P)28(or)1(z)-1(u)1(c)-1(ali)-388(ki)1(je,)-389(cep)28(y)83(,)-388(wid)1(\\252y)83(,)-388(a.)-388(z)-1(w)28(arli)-388(si\\246)-389(n)1(a)-389(mo)-28(c,)-388(c)27(h)1(\\252)-1(op)-388(z)-388(c)27(h\\252op)-27(em)-1(,)-388(p)1(i\\246)-1(\\261\\242)]TJ -27.879 -13.549 Td[(na)-396(pi)1(\\246)-1(\\261\\242)-1(,)-396(s)-1(i)1(\\252)-1(a)-396(na)-396(s)-1(i)1(\\252)-1(\\246,)-396(gnietli)-396(s)-1(i)1(\\246)-397(tak)-397(an)1(o,)-396(dusili)1(,)-397(ozdzierali,)-396(ku)1(lali)-396(p)-28(o)-396(z)-1(i)1(e)-1(mi,)-396(\\273)-1(e)]TJ 0 -13.55 Td[(ju)1(\\273)-298(pr)1(z)-1(y)1(m)-1(il)1(k\\252y)-297(w)-1(r)1(z)-1(aski,)-297(a)-297(t)28(ylk)28(o)-297(c)-1(i\\246\\273)-1(k)1(ie)-298(c)27(h)1(arcz)-1(enia,)-297(kl)1(\\241t)28(w)-1(y)-297(a)-297(s)-1(zam)-1(ot)1(ania)-297(s)-1(\\252y)1(c)27(ha\\242)]TJ 0 -13.549 Td[(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(T)83(aki)-333(si\\246)-334(s\\241dn)28(y)-333(d)1(z)-1(ie\\253)-333(zrobi)1(\\252,)-334(\\273e)-334(i)-333(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-334(ni)1(e)-334(s)-1(p)-27(os\\363b!)]TJ 0 -13.549 Td[(Lud)1(z)-1(i)1(e)-252(p)-27(os)-1(zaleli)-251(p)1(ra)28(w)-1(i)1(e)-1(,)-251(za)28(wz)-1(i\\246to\\261\\242)-252(n)1(im)-1(i)-250(rz)-1(u)1(c)-1(a\\252a)-251(i)-250(gniew)-251(p)-28(on)1(os)-1(i\\252,)-251(a)-251(zw\\252as)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(a)-275(Kobu)1(s)-276(z)-276(Koz)-1(\\252o)28(w)28(\\241)-276(widzieli)-275(s)-1(i\\246)-276(ca\\252kiem)-276(p)-27(o)27(w\\261c)-1(iek)56(ani,)-275(\\273e)-276(a\\273)-276(s)-1(tr)1(ac)27(h)-275(b)28(y\\252o)-275(na)-276(n)1(ic)27(h)]TJ 0 -13.55 Td[(pat)1(rz)-1(e\\242,)-334(t)1(a)-1(k)-333(b)29(yli)-333(okrw)28(a)28(wie)-1(n)1(i,)-333(p)-27(obici,)-333(a)-333(m)-1(imo)-333(to)-334(r)1(z)-1(u)1(c)-1(a)-55(j\\241cy)-333(s)-1(i\\246)-333(na)-333(c)-1(a\\252e)-334(k)1(up)28(y)84(.)]TJ 27.879 -13.549 Td[(T)83(ak)-234(si\\246)-234(ano)-234(p)1(rz)-1(epi)1(e)-1(ral)1(i)-234(jes)-1(zcz)-1(e,)-234(a)-234(z)-235(coraz)-234(wi\\246)-1(k)1(s)-1(zym)-234(krzykiem)-234(Lip)-28(czak)28(\\363)27(w,)-234(\\273e)]TJ -27.879 -13.549 Td[(ju)1(\\273)-292(s)-1(i\\246)-292(zac)-1(zyna\\252y)-291(gonit)28(wy)-292(u)1(c)-1(i)1(e)-1(k)56(a)-56(j)1(\\241c)-1(y)1(c)27(h)-292(i)-291(bi)1(c)-1(ie)-292(w)-292(dzies)-1(i)1(\\246)-1(ciu)-292(j)1(e)-1(d)1(nego,)-292(gd)1(y)-292(b)-27(oro)28(wy)]TJ 0 -13.549 Td[(op)-27(\\246)-1(d)1(z)-1(i\\252)-243(si\\246)-243(w)-1(r)1(e)-1(sz)-1(cie)-243(bab)-27(om,)-243(ale)-243(s)-1(r)1(o)-28(dze)-244(p)-27(otu)1(rb)-27(o)27(w)28(an)28(y)-243(i)-242(prze)-1(t)1(o)-243(jes)-1(zc)-1(ze)-244(w\\261c)-1(i)1(e)-1(kl)1(e)-1(j)1(s)-1(zy)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252)-473(s)-1(k)1(rz)-1(y)1(kiw)28(a\\242)-473(s)-1(w)28(oic)27(h)1(,)-473(a)-472(do)-56(j)1(rza)27(wsz)-1(y)-472(Boryn)1(\\246)-474(sk)28(o)-28(cz)-1(y)1(\\252)-473(na)-473(n)1(iego,)-473(c)28(h)28(ycili)-472(s)-1(i\\246)]TJ 0 -13.55 Td[(wp)-28(\\363\\252,)-387(opletli)-388(b)1(arami)-388(kiej)-387(nied\\271w)-1(i)1(e)-1(d)1(z)-1(ie)-388(i)-388(n)29(u\\273)-388(s)-1(i\\246)-388(pr)1(z)-1(epiera\\242)-388(a)-388(zatac)-1(za\\242)-1(,)-387(a)-388(bi\\242)-388(o)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a,)-333(b)-27(o)-333(s)-1(i\\246)-333(ju\\273)-333(b)28(yli)-333(wywiedli)-333(w)-333(b)-28(\\363r)1(.)]TJ 27.879 -13.549 Td[(Na)-497(to)-497(w\\252a\\261nie)-497(nad)1(lec)-1(ia\\252)-497(An)29(te)-1(k)1(,)-497(s)-1(p)-27(\\363\\271ni\\252)-497(si\\246)-497(wie)-1(l)1(c)-1(e,)-497(wi\\246c)-498(p)1(rzys)-1(t)1(an\\241\\252)-497(na)]TJ -27.879 -13.549 Td[(skra)-55(ju)-333(b)-27(oru,)-333(b)29(y)-334(z\\252apa\\242)-333(niec)-1(o)-333(p)-27(o)27(wietrza)-333(i)-334(wn)1(e)-1(t)-333(do)-55(jr)1(z)-1(a\\252,)-333(co)-334(si\\246)-334(z)-334(o)-55(jce)-1(m)-333(dzie)-1(j)1(e)-1(.)]TJ 27.879 -13.549 Td[(Zato)-28(cz)-1(y)1(\\252)-260(d)1(o)-28(ok)28(o\\252a)-259(jastrz\\246)-1(b)1(im)-1(i)-258(\\261)-1(lepi)1(am)-1(i,)-259(n)1(ikto)-259(n)1(a)-259(nic)28(h)-259(ni)1(e)-260(baczy\\252,)-259(w)-1(szys)-1(tk)1(ie)]TJ -27.879 -13.55 Td[(ano)-306(b)28(y\\252y)-307(w)-307(t)1(akiej)-307(b)1(itce)-1(,)-306(w)-307(takim)-307(p)-27(om)-1(i)1(e)-1(sz)-1(an)1(iu,)-306(\\273)-1(e)-307(n)1(i)-307(jedn)1(e)-1(j)-306(t)28(w)28(arz)-1(y)-306(ni)1(e)-308(r)1(oz)-1(ez)-1(n)1(a\\252,)]TJ 0 -13.549 Td[(wi\\246c)-357(c)-1(of)1(n\\241\\252)-356(s)-1(i\\246,)-356(c)27(h)28(y)1(\\252)-1(k)1(ie)-1(m)-356(przedosta\\252)-357(si\\246)-357(do)-356(Boryn)28(y)-356(i)-356(p)1(rz)-1(y)1(s)-1(tan)1(\\241\\252)-357(o)-356(par)1(\\246)-357(krok)28(\\363)28(w)]TJ 0 -13.549 Td[(za)-334(d)1(rze)-1(w)28(e)-1(m.)]TJ 27.879 -13.549 Td[(Boro)28(wy)-436(pr)1(z)-1(emaga\\252)-1(,)-435(c)-1(i)1(\\246)-1(\\273k)28(o)-436(m)27(u)-435(sz)-1(\\252o,)-436(b)-27(o)-436(j)1(u\\273)-436(b)28(y\\252)-435(s)-1(ro)-27(dze)-437(zmordo)28(w)28(an)28(y)84(,)-436(a)-436(i)]TJ -27.879 -13.549 Td[(stary)-369(t)1(rz)-1(y)1(m)-1(a\\252)-369(si\\246)-369(kr)1(z)-1(epk)28(o,)-368(pad)1(li)-369(w\\252a\\261)-1(n)1(ie)-369(na)-368(z)-1(iemi\\246)-1(,)-368(tarza)-56(j)1(\\241c)-369(s)-1(i\\246)-369(ki)1(e)-1(j)-368(dw)28(a)-369(p)1(s)-1(y)-368(i)]TJ 0 -13.549 Td[(t\\252uk)56(\\241c)-391(o)-392(ziem)-1(i)1(\\246)-1(,)-391(ale)-391(c)-1(or)1(az)-392(cz)-1(\\246\\261)-1(ciej)-391(s)-1(t)1(ary)-391(b)28(y\\252)-391(n)1(a)-392(sp)-27(o)-28(dzie,)-391(c)-1(zapa)-391(m)27(u)-390(z)-1(lecia\\252a,)-391(\\273)-1(e)]TJ 0 -13.55 Td[(jeno)-333(ten)-333(s)-1(i)1(w)-1(y)-333(\\252eb)-333(p)-28(o)-27(dsk)55(ak)1(iw)27(a\\252)-333(p)-27(o)-334(k)28(or)1(z)-1(eniac)28(h.)]TJ 27.879 -13.549 Td[(An)28(tek)-305(raz)-306(si\\246)-306(jesz)-1(cz)-1(e)-306(ob)-27(e)-1(j)1(rza\\252,)-306(wyci\\241)-28(gn)1(\\241\\252)-306(\\015)1(in)28(t\\246)-306(sp)-27(o)-28(d)-305(k)28(o\\273)-1(u)1(c)27(h)1(a,)-306(p)1(rzyku)1(c)-1(n)1(\\241\\252)]TJ -27.879 -13.549 Td[(i)-277(pr)1(z)-1(e\\273)-1(egna)28(ws)-1(zy)-277(s)-1(i\\246)-277(b)-28(ez)-1(wiedn)1(ie,)-278(zmie)-1(r)1(z)-1(y\\252)-277(do)-277(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-277(g\\252o)28(wy)83(.)1(..)-277(nim)-277(jednak)-277(spu)1(\\261)-1(ci\\252)]TJ 0 -13.549 Td[(ku)1(rek,)-321(p)-28(or)1(w)27(ali)-321(si\\246)-322(ob)1(a)-56(j)-321(n)1(a)-322(n)1(ogi,)-321(An)28(tek)-322(t)1(e)-1(\\273)-322(si\\246)-322(p)-27(o)-28(d)1(ni\\363s\\252)-322(i)-321(f)1(uzj\\246)-322(p)1(rzy\\252o\\273)-1(y\\252)-321(do)-321(ok)56(a)]TJ 0 -13.549 Td[({)-291(nie)-292(strzeli\\252)-292(j)1(e)-1(d)1(nak)1(,)-292(strac)28(h)-291(nag\\252y)84(,)-292(ok)1(ropn)29(y)-291(\\261)-1(cis)-1(n)1(\\241\\252)-292(m)28(u)-291(tak)-291(s)-1(erce)-1(,)-291(\\273e)-292(ledwie)-292(m\\363g\\252)]TJ 0 -13.55 Td[(dy)1(c)27(ha\\242,)-406(r\\246c)-1(e)-407(m)28(u)-406(lata\\252y)-406(kiej)-406(w)-407(f)1(e)-1(b)1(rze)-1(,)-406(zadygota\\252)-406(c)-1(a\\252y)84(,)-406(w)-407(o)-28(cz)-1(ac)28(h)-406(p)-28(o)-28(ciem)-1(n)1(ia\\252o)-406(i)]TJ 0 -13.549 Td[(tak)-326(si\\246)-326(z)-1(ak)1(r\\246c)-1(i\\252o)-326(w)-326(g\\252o)28(wie)-1(,)-325(\\273)-1(e)-326(sta\\252)-326(d\\252u)1(g\\241)-326(c)27(h)28(wil\\246,)-326(n)1(ie)-326(w)-1(i)1(e)-1(d)1(z)-1(\\241c)-326(z)-1(go\\252a,)-325(c)-1(o)-326(si\\246)-326(z)-326(nim)]TJ\nET\nendstream\nendobj\n1122 0 obj <<\n/Type /Page\n/Contents 1123 0 R\n/Resources 1121 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1121 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1127 0 obj <<\n/Length 9414      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(350)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dzieje,)-333(naraz)-333(rozle)-1(g\\252)-333(s)-1(i)1(\\246)-334(kr\\363tk)1(i,)-333(pr)1(z)-1(era\\273a)-56(j\\241cy)-333(krzyk:)]TJ 27.879 -13.549 Td[({)-333(Ratuj)1(ta,)-333(lud)1(z)-1(ie!..)1(.)-333(R)-1(atu)1(jta!)1(...)]TJ 0 -13.549 Td[(Boro)28(wy)-289(w)-1(\\252a\\261nie)-289(w)-290(ten)-289(mig)-289(trzas)-1(n)1(\\241\\252)-290(Boryn)1(\\246)-290(k)28(olb)1(\\241)-289(prze)-1(z)-289(\\252e)-1(b)1(,)-290(a\\273)-289(krew)-290(c)28(hlu)1(-)]TJ -27.879 -13.549 Td[(sn\\246\\252)-1(a,)-333(stary)-333(j)1(e)-1(n)1(o)-334(zakrzycz)-1(a\\252,)-333(p)-27(o)-28(dn)1(i\\363s\\252)-334(r\\246ce)-334(do)-333(g\\363ry)-333(i)-333(pad)1(\\252)-334(k)1(ie)-1(j)-333(k)1(lo)-28(c)-334(n)1(a)-334(ziem)-1(i)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-408(opr)1(z)-1(yt)1(om)-1(n)1(ia\\252,)-408(rzuci\\252)-409(f)1(uzj\\246)-408(i)-408(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-409(d)1(o)-408(o)-56(jca;)-408(stary)-408(jeno)-408(c)27(h)1(arcz)-1(a\\252,)]TJ -27.879 -13.55 Td[(kr)1(e)-1(w)-324(z)-1(al)1(e)-1(w)28(a\\252a)-324(m)27(u)-323(t)27(w)28(arz,)-324(g\\252o)28(w)27(\\246)-324(mia\\252)-324(pra)28(wie)-324(na)-324(p)-27(\\363\\252)-324(roz\\252)-1(u)1(pan)1(\\241,)-324(\\273yw)-324(b)28(y\\252)-324(jes)-1(zcz)-1(e,)]TJ 0 -13.549 Td[(ale)-334(j)1(u\\273)-333(o)-28(c)-1(zy)-333(z)-1(ac)28(ho)-28(d)1(z)-1(i\\252y)-333(m)28(u)-333(m)-1(g\\252\\241)-333(i)-333(k)28(opa\\252)-333(nogami.)]TJ 27.879 -13.549 Td[({)-404(Ocie)-1(c!)-404(M\\363)-55(j)-404(Jez)-1(u)1(s)-1(!)-404(Ociec)-1(!)-404({)-404(wrzas)-1(n)1(\\241\\252)-405(strasz)-1(n)29(ym)-405(g\\252ose)-1(m,)-404(p)-27(orw)28(a\\252)-405(go)-404(na)]TJ -27.879 -13.549 Td[(r\\246c)-1(e,)-333(pr)1(z)-1(yt)1(uli\\252)-333(do)-333(pi)1(e)-1(r)1(s)-1(i)-333(i)-333(z)-1(acz\\241\\252)-334(wni)1(e)-1(b)-27(og\\252os)-1(y)-333(kr)1(z)-1(ycz)-1(e\\242:)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c!)-333(Zabili)-333(go!)-333(Zabi)1(li!)-333({)-333(w)-1(y)1(\\252)-334(ki)1(e)-1(j)-333(ta)-333(suk)56(a,)-333(gdy)-333(jej)-333(d)1(z)-1(iec)-1(i)-333(p)-27(otop)1(i\\241.)]TJ 0 -13.549 Td[(A\\273)-361(kilk)28(or)1(o)-361(lu)1(dzi)-361(co)-361(na)-55(jb)1(li\\273s)-1(zyc)27(h)-360(p)-27(os)-1(\\252ysza\\252)-1(o)-360(i)-361(p)1(rzybieg\\252o)-361(n)1(a)-361(ratu)1(nek;)-361(z\\252o-)]TJ -27.879 -13.55 Td[(\\273yli)-373(p)-27(obitego)-373(na)-373(ga\\252\\246)-1(ziac)28(h)-373(i)-373(j\\246li)-373(\\261niegie)-1(m)-373(ob)28(w)28(ala\\242)-374(m)28(u)-373(g\\252o)28(w)27(\\246)-374(i)-373(r)1(ato)28(w)27(a\\242,)-373(jak)-373(in)1(o)]TJ 0 -13.549 Td[(p)-27(oredzili.)-346(An)29(te)-1(k)-345(z)-1(a\\261)-346(przysiad\\252)-346(n)1(a)-346(z)-1(i)1(e)-1(mi,)-346(tar)1(ga\\252)-346(s)-1(i\\246)-346(z)-1(a)-346(w\\252osy)-346(i)-346(kr)1(z)-1(ycza\\252)-347(n)1(ieprzy-)]TJ 0 -13.549 Td[(tomnie:)]TJ 27.879 -13.549 Td[({)-333(Zabili)-333(go!)-333(Zab)1(ili!)]TJ 0 -13.549 Td[(A\\273)-334(m)28(y\\261)-1(l)1(e)-1(li)1(,)-333(i\\273)-334(m)27(u)-332(s)-1(i\\246)-333(z)-334(nag\\252a)-333(w)-334(g\\252o)28(wie)-334(p)-27(opsu\\252o.)]TJ 0 -13.55 Td[(Naraz)-244(ucic)28(h\\252,)-244(p)1(rzyp)-28(omn)1(ia\\252)-244(s)-1(ob)1(ie)-244(z)-245(n)1(ag\\252a)-244(ws)-1(zystk)28(o)-244(i)-244(r)1(z)-1(uci\\252)-244(si\\246)-244(do)-244(b)-27(oro)28(w)28(e)-1(go.)]TJ -27.879 -13.549 Td[(z)-318(kr)1(z)-1(y)1(kiem)-318(pr)1(z)-1(era\\273a)-56(j)1(\\241c)-1(ym)-317(i)-317(z)-318(taki)1(m)-318(s)-1(zale\\253st)28(w)27(em)-318(w)-317(o)-28(c)-1(zac)27(h)1(,)-317(\\273)-1(e)-318(b)-27(oro)28(wy)-317(s)-1(i)1(\\246)-318(zl\\241k\\252)]TJ 0 -13.549 Td[(i)-299(z)-1(acz)-1(\\241\\252)-299(uciek)55(a\\242,)-299(ale)-300(c)-1(zuj)1(\\241c)-1(,)-299(\\273e)-300(go)-300(tam)28(te)-1(n)-299(d)1(ogania,)-299(o)-28(d)1(wr\\363)-28(ci\\252)-300(si\\246)-300(rap)1(tem)-300(i)-300(strzeli\\252)]TJ 0 -13.549 Td[(m)27(u)-269(p)1(ra)28(w)-1(i)1(e)-271(p)1(rosto)-270(w)-270(p)1(ie)-1(r)1(s)-1(i,)-269(ni)1(e)-271(tr)1(a\\014\\252)-270(go)-270(j)1(e)-1(d)1(nak)-269(jaki)1(m)-1(\\261)-270(cud)1(e)-1(m,)-270(t)28(yl)1(e)-271(j)1(e)-1(n)1(o,)-270(\\273e)-270(t)27(w)28(arz)]TJ 0 -13.549 Td[(osm)-1(ali)1(\\252,)-334(a)-333(An)28(tek)-333(z)-1(w)28(ali\\252)-333(s)-1(i)1(\\246)-334(na)-333(ni)1(e)-1(go)-333(jak)-333(p)1(ioru)1(n.)]TJ 27.879 -13.55 Td[(Pr)1(\\363\\273)-1(n)1(o)-264(si\\246)-264(b)1(roni)1(\\252)-1(,)-263(p)1(r\\363\\273no)-263(w)-1(ym)28(yk)56(a\\252,)-263(pr\\363\\273no)-263(pr)1(z)-1(ywiedzion)28(y)-263(rozpacz\\241)-264(i)-263(s)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(c)27(h)1(e)-1(m)-259(\\261mie)-1(r)1(te)-1(ln)29(ym)-259(o)-259(zm)-1(i)1(\\252o)27(w)28(ani)1(e)-260(p)1(rosi\\252)-259({)-259(An)29(te)-1(k)-258(p)-27(orw)27(a\\252)-258(go)-259(w)-259(pazur)1(y)-259(ki)1(e)-1(j)-258(ten)-259(wil)1(k)]TJ 0 -13.549 Td[(w\\261)-1(ciek\\252y)83(,)-315(z)-1(d)1(usi\\252)-316(za)-316(gar)1(dzie)-1(l;)-315(a\\273)-316(grd)1(yk)56(a)-316(zac)27(hr)1(z)-1(\\246\\261)-1(cia\\252a,)-315(uni)1(\\363s)-1(\\252)-316(d)1(o)-316(g\\363r)1(y)-316(i)-315(t\\252uk\\252)-315(nim)]TJ 0 -13.549 Td[(o)-333(drzew)27(a)-333(p)-28(ot)1(\\241d,)-333(p)-28(\\363k)1(i)-333(os)-1(tatn)1(iej)-333(pary)-333(n)1(ie)-334(p)1(u\\261c)-1(i\\252.)]TJ 27.879 -13.549 Td[(A)-372(p)-27(ote)-1(m)-372(jakb)29(y)-372(s)-1(i\\246)-372(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252,)-372(\\273e)-373(j)1(u\\273)-372(nie)-372(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-372(co)-372(robi)1(\\252;)-372(rzuci\\252)-373(si\\246)-372(w)]TJ -27.879 -13.55 Td[(bi)1(tk)28(\\246)-1(,)-426(a)-426(tam,)-426(k)28(\\246dy)-426(si\\246)-426(z)-1(j)1(a)27(wi\\252,)-426(serc)-1(a)-426(tr)1(uc)28(hla\\252y)84(,)-426(lud)1(z)-1(i)1(e)-427(u)1(c)-1(iek)56(ali)-426(ze)-427(strac)27(h)1(e)-1(m,)-426(b)-27(o)]TJ 0 -13.549 Td[(strasz)-1(n)28(y)-409(b)28(y\\252,)-409(umazan)28(y)-409(o)-56(j)1(c)-1(o)28(w)27(\\241)-409(krwi\\241)-409(i)-409(s)-1(w)28(o)-56(j)1(\\241,)-410(b)-27(ez)-410(c)-1(zapki)1(,)-410(z)-410(p)-27(ozle)-1(p)1(ian)28(ym)-409(w)-1(\\252o-)]TJ 0 -13.549 Td[(se)-1(m,)-323(sin)28(y)-322(kiej)-323(tr)1(up)1(,)-323(okr)1(opn)28(y)-322(jaki)1(\\261)-324(a)-323(t)1(ak)-323(nad)1(lu)1(dzk)28(o)-323(m)-1(o)-27(c)-1(n)28(y)84(,)-323(\\273e)-323(pra)28(wie)-323(sam)-324(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(zm)-1(or)1(do)28(w)27(a\\252)-367(i)-368(p)-27(obi\\252)-367(t\\246)-368(res)-1(zt\\246)-368(da)-56(j)1(\\241c)-1(y)1(c)27(h)-367(op)-28(\\363r)1(,)-368(a\\273)-368(m)28(usie)-1(l)1(i)-368(go)-367(w)-368(k)28(o\\253cu)-368(u)1(s)-1(p)-27(ok)56(a)-56(j)1(a\\242)-368(i)]TJ 0 -13.549 Td[(o)-28(d)1(ryw)28(a\\242)-1(,)-333(b)-27(ob)28(y)-333(z)-1(ab)1(ij)1(a\\252)-334(n)1(a)-334(\\261m)-1(i)1(e)-1(r)1(\\242)-1(..)1(.)]TJ 27.879 -13.55 Td[(Bitk)56(a)-259(si\\246)-259(sk)28(o\\253cz)-1(y\\252a)-258(i)-259(Li)1(p)-28(cz)-1(aki)1(,)-259(c)28(ho)-28(\\242)-259(zmordo)28(w)28(ani,)-258(p)-27(ok)55(al)1(e)-1(cz)-1(eni,)-258(okr)1(w)27(a)28(wieni,)]TJ -27.879 -13.549 Td[(nap)-27(e\\252niali)-333(l)1(as)-334(radosn\\241)-333(wrza)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-434(opatr)1(yw)27(a\\252y)-434(c)-1(o)-434(c)-1(i\\246\\273)-1(ej)-434(rann)29(yc)27(h)-434(i)-435(p)1(rze)-1(n)1(os)-1(i\\252y)-434(na)-435(sani)1(e)-1(,)-434(a)-435(b)28(y\\252o)-435(i)1(c)27(h)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ma\\252o,)-315(K\\252\\246bi)1(ak)-315(j)1(e)-1(d)1(e)-1(n)-314(m)-1(i)1(a\\252)-315(z)-1(\\252aman\\241)-314(r\\246k)28(\\246)-1(,)-314(J\\246)-1(d)1(rzyc)27(h)-314(P)28(acz)-1(e\\261)-315(prze)-1(t)1(r\\241c)-1(on)29(y)-315(ku)1(las,)]TJ 0 -13.549 Td[(\\273e)-345(st\\241)-28(pi)1(\\242)-345(n)1(ie)-345(m\\363g\\252)-344(i)-344(d)1(ar\\252)-344(si\\246)-345(wn)1(ie)-1(b)-27(og\\252os)-1(y)84(,)-344(ki)1(e)-1(j)-343(go)-344(przenos)-1(i)1(li,)-344(K)1(obus)-344(za\\261)-345(b)28(y)1(\\252)-344(tak)]TJ 0 -13.549 Td[(p)-27(obit)28(y)84(,)-278(\\273e)-279(si\\246)-278(ruc)28(ha\\242)-278(nie)-278(m\\363g\\252,)-278(Mateusz)-278(\\273)-1(yw)28(\\241)-278(kr)1(e)-1(w)-278(o)-28(d)1(da)28(w)27(a\\252)-278(i)-277(na)-278(kr)1(z)-1(y\\273)-278(n)1(arz)-1(ek)56(a\\252,)]TJ 0 -13.55 Td[(a)-425(insi)-425(te)-1(\\273)-425(ucie)-1(r)1(pieli)-425(n)1(ie)-426(gorze)-1(j)1(,)-425(\\273)-1(e)-426(p)1(ra)28(wie)-426(n)1(ie)-426(b)28(y)1(\\252)-1(o)-425(an)1(i)-426(j)1(e)-1(d)1(nego,)-425(kt\\363ry)-425(b)29(y)-426(ca\\252o)]TJ 0 -13.549 Td[(wysz)-1(ed\\252,)-285(ale)-286(\\273)-1(e)-286(g\\363r\\246)-286(wzi\\246)-1(l)1(i,)-286(t)1(o)-286(i)-285(na)-286(b)-27(\\363l)-285(nie)-286(b)1(ac)-1(z\\241c)-286(p)-28(okr)1(z)-1(y)1(k)55(al)1(i)-286(w)28(e)-1(so\\252o)-286(a)-286(r)1(oz)-1(g\\252o\\261nie)]TJ 0 -13.549 Td[({)-333(i)-333(z)-1(ab)1(ie)-1(r)1(ali)-333(s)-1(i)1(\\246)-334(do)-333(p)-28(o)28(wrotu)1(.)]TJ 27.879 -13.549 Td[(Boryn)1(\\246)-280(z)-1(\\252o\\273yli)-279(w)-280(sani)1(ac)27(h)-279(i)-279(wie)-1(\\271li)-279(w)27(ol)1(no)-279(b)-28(o)-55(j\\241c)-280(si\\246,)-279(b)28(y)-279(w)-280(dr)1(o)-28(dze)-280(ni)1(e)-280(z)-1(amar\\252,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)1(rzytomn)28(y)-286(b)28(y)1(\\252)-1(,)-285(a)-286(sp)-28(o)-27(d)-286(sz)-1(mat)-286(w)28(c)-1(i)1(\\241\\273)-287(wyd)1(ob)28(yw)28(a\\252a)-286(si\\246)-286(krew)-286(z)-1(alew)28(a)-56(j\\241c)-286(m)28(u)-286(o)-27(c)-1(zy)]TJ 0 -13.55 Td[(i)-333(t)28(w)27(ar)1(z)-334(c)-1(a\\252\\241,)-333(b)1(lady)-333(b)28(y)1(\\252)-334(j)1(ak)-334(p)1(\\252\\363tno)-333(i)-333(z)-1(u)1(p)-27(e)-1(\\252ni)1(e)-334(p)-28(o)-27(dob)1(n)28(y)-333(do)-333(tru)1(pa.)]TJ 27.879 -13.549 Td[(An)28(tek)-278(s)-1(ze)-1(d)1(\\252)-278(przy)-278(s)-1(an)1(iac)27(h)1(,)-278(w)-1(p)1(atrzon)28(y)-278(pr)1(z)-1(era\\273on)28(ym)-278(w)-1(zroki)1(e)-1(m)-278(w)-279(o)-55(jca,)-279(p)-27(o)-28(d)1(-)]TJ\nET\nendstream\nendobj\n1126 0 obj <<\n/Type /Page\n/Contents 1127 0 R\n/Resources 1125 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1125 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1130 0 obj <<\n/Length 3989      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(351)]TJ -358.232 -35.866 Td[(trzym)28(yw)27(a\\252)-292(m)27(u)-292(g\\252o)28(w)27(\\246)-293(n)1(a)-293(wyb)-27(o)-56(j)1(ac)27(h)-292(i)-293(r)1(az)-293(w)-1(r)1(az)-293(b)-28(e\\252k)28(ota\\252)-293(cic)27(h)1(o,)-293(p)1(rosz)-1(\\241co,)-293(\\273a\\252o\\261)-1(n)1(ie:)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c!)-333(Lob)-28(oga,)-333(o)-28(ciec)-1(!.)1(..)]TJ 0 -13.549 Td[(Lud)1(z)-1(i)1(e)-283(sz)-1(li)-282(b)-27(e)-1(z\\252adn)1(ie,)-282(kup)1(am)-1(i)1(,)-282(jak)-282(k)28(om)27(u)-281(le)-1(p)1(iej)-282(b)28(y\\252o,)-282(a)-282(lase)-1(m,)-282(b)-28(o)-282(\\261ro)-28(d)1(kiem)]TJ -27.879 -13.549 Td[(dr)1(ogi)-429(s)-1(z\\252y)-429(s)-1(an)1(ie)-430(z)-430(p)-27(oran)1(ion)28(ymi,)-429(j)1(aki)-429(taki)-429(j\\246c)-1(za\\252)-429(i)-430(p)-27(ost\\246)-1(k)1(iw)27(a\\252,)-429(a)-429(res)-1(zta)-429(\\261)-1(mia\\252a)]TJ 0 -13.549 Td[(si\\246)-391(g\\252o\\261)-1(n)1(o,)-391(p)-27(okr)1(z)-1(yk)1(uj)1(\\241c)-391(w)27(es)-1(o\\252o)-390(i)-391(szumnie.)-390(Zac)-1(z\\246)-1(li)-390(op)-27(o)28(w)-1(i)1(ada\\242)-391(sobie)-391(r)1(\\363\\273)-1(n)1(o\\261)-1(ci,)-390(a)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)27(h)28(w)28(ala\\242)-231(s)-1(i)1(\\246)-232(z)-231(przew)27(agi)-231(i)-230(prze)-1(k)1(piw)28(a\\242)-232(z)-231(p)-27(ok)28(onan)28(y)1(c)27(h,)-230(gdzie)-1(n)1(iegdzie)-232(j)1(u\\273)-231(i)-231(\\261piewy)]TJ 0 -13.549 Td[(zac)-1(z\\246)-1(\\252y)-315(si\\246)-315(rozlew)27(a\\242,)-315(kto\\261)-315(z)-1(n)1(\\363)28(w)-315(krzyk)56(a\\252)-315(na)-315(ca\\252y)-315(b)-27(\\363r,)-315(a\\273)-315(si\\246)-316(r)1(oz)-1(l)1(e)-1(ga\\252o,)-315(a)-315(wsz)-1(y)1(s)-1(cy)]TJ 0 -13.549 Td[(b)28(yl)1(i)-401(p)1(ijan)1(i)-401(tri)1(umfem)-1(,)-400(\\273)-1(e)-401(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-400(zatac)-1(za\\252)-401(s)-1(i)1(\\246)-402(n)1(a)-401(d)1(rz)-1(ew)28(a)-401(i)-401(p)-27(ot)28(yk)56(a\\252)-401(o)-401(lad)1(a)-401(jak)1(i)]TJ 0 -13.549 Td[(k)28(orze)-1(\\253)1(..,)]TJ 27.879 -13.549 Td[(Ma\\252o)-344(kto)-344(c)-1(zu\\252)-344(p)-27(obicie)-345(i)-344(zm)-1(\\246c)-1(zenie,)-344(b)-28(o)-344(ws)-1(zystkie)-345(se)-1(r)1(c)-1(a)-344(rozpiera\\252a)-344(ni)1(e)-1(op)-27(o-)]TJ -27.879 -13.549 Td[(wiedziana)-250(r)1(ado\\261\\242)-251(zwyc)-1(i)1(\\246)-1(st)28(w)27(a,)-250(wsz)-1(yscy)-250(p)-27(e)-1(\\252ni)-249(b)28(yli)-249(w)27(es)-1(ela)-250(i)-249(takiej)-250(mo)-28(cy)83(,)-250(\\273e)-250(niec)27(h)28(b)29(y)]TJ 0 -13.55 Td[(si\\246)-334(kto)-333(sprze)-1(ciwi\\252,)-333(na)-333(pr)1(o)-28(c)27(h)-333(b)29(y)-333(s)-1(tar)1(li,)-333(na)-333(c)-1(a\\252y)-333(\\261wiat)-333(b)28(y)-333(s)-1(i\\246)-333(p)-28(or)1(w)27(ali)1(.)]TJ 27.879 -13.549 Td[(Szli)-476(mo)-28(c)-1(n)1(o,)-476(g\\252o\\261)-1(n)1(o,)-477(h)1(a\\252a\\261)-1(li)1(w)-1(i)1(e)-1(,)-476(to)-28(cz)-1(\\241c)-477(j)1(arz\\241c)-1(y)1(m)-1(i)-476(o)-28(cz)-1(ami)-476(p)-28(o)-476(t)28(ym)-477(b)-27(orze)]TJ -27.879 -13.549 Td[(zdob)28(yt)28(y)1(m)-1(,)-271(kt\\363ren)-271(c)27(h)28(wia\\252)-272(si\\246)-272(n)1(ad)-272(g\\252o)28(w)27(ami,)-271(s)-1(zumia\\252)-271(s)-1(enn)1(ie)-272(i)-272(sypa\\252)-271(na)-272(n)1(ic)27(h)-271(rosist)28(y)]TJ 0 -13.549 Td[(opad)-332(os)-1(\\246dzie)-1(l)1(iz)-1(n)29(y)83(,)-333(kieb)28(y)-333(t)28(ymi)-333(\\252z)-1(ami)-333(p)-28(ok)1(rapi)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[(Naraz)-454(Boryn)1(a)-454(ot)27(w)28(orzy\\252)-454(o)-28(cz)-1(y)-453(i)-454(d\\252u)1(go)-454(patr)1(z)-1(a\\252)-454(w)-454(An)28(tk)56(a,)-454(j)1(akb)28(y)-454(sobi)1(e)-455(n)1(ie)]TJ -27.879 -13.55 Td[(wierz)-1(\\241c,)-396(a\\273)-396(g\\252\\246b)-28(ok)56(a,)-395(c)-1(ic)28(ha)-396(r)1(ado\\261\\242)-396(roz)-1(\\261wiec)-1(i\\252a)-396(m)28(u)-395(t)27(w)28(arz,)-396(p)-27(oru)1(s)-1(zy\\252)-396(u)1(s)-1(tami)-395(par\\246)]TJ 0 -13.549 Td[(razy)-333(i)-333(z)-334(na)-55(jwi\\246ks)-1(zym)-333(w)-1(y)1(s)-1(i\\252ki)1(e)-1(m)-333(s)-1(ze)-1(p)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(T)27(y\\273e\\261)-334(to,)-333(s)-1(y)1(n)28(u?...)-333(T)28(y\\273e)-1(\\261?)-1(.)1(..)]TJ 0 -13.549 Td[(I)-333(om)-1(d)1(la\\252)-334(zno)28(wu.)]TJ\nET\nendstream\nendobj\n1129 0 obj <<\n/Type /Page\n/Contents 1130 0 R\n/Resources 1128 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1128 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1133 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(352)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(25.)]TJ\nET\nendstream\nendobj\n1132 0 obj <<\n/Type /Page\n/Contents 1133 0 R\n/Resources 1131 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1131 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1136 0 obj <<\n/Length 126       \n>>\nstream\n1 0 0 1 236.716 510.595 cm\nBT\n/F31 14.346 Tf 0 0 Td[(C)1(Z\\206\\221\\202)-375(I)-31(I)-31(I)]TJ 4.234 -37.858 Td[(WIOSNA)]TJ\nET\nendstream\nendobj\n1135 0 obj <<\n/Type /Page\n/Contents 1136 0 R\n/Resources 1134 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1134 0 obj <<\n/Font << /F31 22 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1139 0 obj <<\n/Length 0         \n>>\nstream\nendstream\nendobj\n1138 0 obj <<\n/Type /Page\n/Contents 1139 0 R\n/Resources 1137 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1124 0 R\n>> endobj\n1137 0 obj <<\n/ProcSet [ /PDF ]\n>> endobj\n1142 0 obj <<\n/Length 6804      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(26)]TJ/F17 10.909 Tf 0 -73.325 Td[(Cz)-1(as)-333(b)28(y\\252)-333(w)-1(iosenn)28(y)-333(o)-333(\\261)-1(witan)1(iu)1(.)]TJ 27.879 -13.549 Td[(Kwietni)1(o)27(wy)-322(d)1(z)-1(i)1(e)-1(\\253)-321(d\\271w)-1(i)1(ga\\252)-322(s)-1(i\\246)-322(leni)1(w)-1(i)1(e)-323(z)-322(lego)27(wisk)-322(mrok)28(\\363)28(w)-322(i)-322(mgie\\252)-322(jak)28(o)-322(ten)]TJ -27.879 -13.549 Td[(par)1(ob,)-284(k)1(t\\363ren)-284(leg\\252)-284(s)-1(p)1(raco)27(w)28(an)28(y)84(,)-284(a)-284(n)1(ie)-285(wyw)28(c)-1(zaso)27(w)28(a)28(w)-1(szy)-284(s)-1(i)1(\\246)-285(d)1(o)-284(c)-1(n)1(a)-284(z)-1(r)1(yw)27(a\\242)-284(si\\246)-285(an)1(o)]TJ 0 -13.55 Td[(m)27(u)1(s)-1(i)-333(n)1(ade)-334(d)1(niem,)-333(b)28(y)-333(w)-1(n)1(e)-1(t)1(ki)-333(ima\\242)-334(s)-1(i)1(\\246)-334(p\\252uga)-333(i)-333(do)-333(ork)1(i)-333(s)-1(i\\246)-333(bra\\242.)]TJ 27.879 -13.549 Td[(P)28(o)-28(czyna\\252o)-333(dn)1(ie)-1(\\242.)]TJ 0 -13.549 Td[(Ale)-274(c)-1(ic)28(ho\\261\\242)-275(b)28(y)1(\\252)-1(a)-274(j)1(e)-1(sz)-1(cz)-1(e)-274(c)-1(a\\252k)1(ie)-1(m)-274(dr)1(\\246)-1(t)28(w)28(a,)-274(t)28(yle)-275(j)1(e)-1(n)1(o,)-274(c)-1(o)-274(r)1(os)-1(y)-274(k)56(apa\\252y)-274(r)1(z)-1(\\246s)-1(i)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(z)-334(d)1(rze)-1(w)-333(p)-28(o\\261pion)29(yc)27(h)-333(w)-333(m)-1(\\241cie)-334(n)1(ieprze)-1(j)1(rzan)28(ym.)]TJ 27.879 -13.549 Td[(Nieb)-28(o,)-355(ki)1(e)-1(j)-355(ta)-355(p\\252ac)27(h)29(ta)-356(mo)-28(d)1(ra)28(w)27(a)-355(pr)1(z)-1(ej\\246ta)-356(wil)1(gotno\\261c)-1(i\\241)-355(i)-355(orosia\\252a,)-355(prze)-1(cie-)]TJ -27.879 -13.549 Td[(ra\\252o)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-334(n)1(ad)-333(z)-1(i)1(e)-1(mi\\241)-333(c)-1(zarn)1(\\241,)-333(g\\252)-1(u)1(c)27(h)1(\\241)-334(i)-333(zgo\\252a)-334(w)-333(m)-1(r)1(ok)55(ac)28(h)-333(z)-1(agu)1(bi)1(o)-1(n)1(\\241.)]TJ 27.879 -13.55 Td[(Mg\\252y)-324(nib)28(y)-324(m)-1(l)1(e)-1(k)28(o)-325(wzbur)1(z)-1(on)1(e)-326(p)1(rzy)-325(ud)1(o)-56(j)1(u)-325(zalew)27(a\\252y)-325(\\252\\246gi)-325(i)-325(p)-27(ola)-325(n)1(izinn)1(e)-1(.)-324(Ko-)]TJ -27.879 -13.549 Td[(k)28(ot)28(y)-333(z)-1(acz)-1(\\246\\252y)-333(pia\\242)-333(na)-333(w)-1(y)1(prz\\363)-28(d)1(ki)-333(gdzies)-1(ik)-333(p)-27(o)-334(wsiac)27(h)-333(j)1(e)-1(szc)-1(ze)-334(ni)1(e)-1(wid)1(n)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Ostatni)1(e)-334(gwiaz)-1(d)1(y)-333(gas)-1(\\252y)-333(kiej)-333(o)-28(cz)-1(y)-333(\\261pi)1(\\241c)-1(zk)55(\\241)-333(morzone.)]TJ 0 -13.549 Td[(Na)-413(ws)-1(c)28(ho)-28(d)1(z)-1(ie)-413(z)-1(a\\261,)-413(j)1(ak)28(o)-413(z)-1(arzew)-1(i)1(e)-414(roztlew)27(a)-55(j\\241ce)-414(sp)-28(o)-27(d)-413(ost)27(y)1(g\\252yc)27(h)-413(p)-27(op)1(io\\252\\363)27(w,)]TJ -27.879 -13.549 Td[(j\\246\\252y)-333(s)-1(i)1(\\246)-334(roz\\273)-1(arza\\242)-334(zorze)-334(c)-1(zerw)27(on)1(e)-1(.)]TJ 27.879 -13.55 Td[(Mg\\252y)-316(s)-1(i)1(\\246)-317(z)-1(ak)28(oleba\\252y)-316(z)-317(nag\\252a,)-316(wz)-1(d)1(\\246)-1(\\252y)-316(i)-317(r)1(uc)27(h)1(a)-56(j)1(\\241c)-1(y)-316(c)-1(i)1(\\246)-1(\\273k)28(o,)-317(n)1(ib)28(y)-316(w)27(o)-27(dy)-316(rozto-)]TJ -27.879 -13.549 Td[(p)-27(\\363)27(w)-342(wiose)-1(n)1(n)28(yc)27(h)1(,)-342(bi)1(\\252y)-342(w)-343(cz)-1(ar)1(ne)-342(p)-28(ol)1(a)-343(al)1(b)-28(o)-342(zas)-1(i)1(e)-1(,)-342(k)1(ie)-1(b)29(y)-342(dym)28(y)-342(k)56(adzie)-1(l)1(ne,)-342(wion\\246\\252y)]TJ 0 -13.549 Td[(sin)28(ym)-333(prz\\246)-1(d)1(z)-1(i)1(w)27(em)-334(ku)-333(n)1(iebu.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-402(si\\246)-403(ju)1(\\273)-403(s)-1(ta)28(w)28(a\\252)-403(i)-403(p)1(rze)-1(p)1(ie)-1(r)1(a\\252)-403(z)-403(bledn)1(\\241c)-1(\\241)-402(no)-28(c\\241,)-403(k)1(t\\363ra)-403(p)1(rzywie)-1(r)1(a\\252a)-403(do)]TJ -27.879 -13.549 Td[(zie)-1(m)-333(grub)29(ym)-1(,)-333(p)1(rze)-1(mo)-28(cz)-1(on)28(y)1(m)-334(k)28(o\\273uc)27(h)1(e)-1(m.)]TJ 27.879 -13.55 Td[(Nieb)-28(o)-374(s)-1(i)1(\\246)-375(roz)-1(l)1(e)-1(w)28(a\\252o)-375(z)-375(w)27(ol)1(na)-375(\\261wiat\\252o\\261c)-1(iami,)-374(z)-1(n)1(i\\273a)-56(j\\241c)-375(si\\246)-375(coraz)-375(bar)1(z)-1(ej)-374(nad)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(ate)-1(m,)-401(\\273)-1(e)-402(j)1(u\\273)-402(k)56(a)-55(j\\261)-402(n)1(ie)-1(k)56(a)-55(j)-401(w)-1(y)1(dzie)-1(r)1(a\\252y)-402(si\\246)-402(n)1(a)-402(j)1(a\\261)-1(n)1(i\\246)-402(cz)-1(u)1(b)28(y)-401(drze)-1(w,)-401(opr)1(z)-1(\\246dzone)]TJ 0 -13.549 Td[(mg\\252am)-1(i,)-390(a)-392(gd)1(z)-1(i)1(e)-392(zn\\363)28(w,)-391(na)-391(wy\\273ac)27(h)1(,)-391(jaki)1(e)-1(\\261)-391(p)-28(ola)-391(sz)-1(ar)1(e)-1(,)-390(prze)-1(si\\241k\\252e)-391(ros\\241,)-391(wylenia-)]TJ 0 -13.549 Td[(\\252y)-454(si\\246)-454(z)-454(no)-27(c)-1(y;)-453(to)-454(sta)28(w)-1(y)-453(za)-1(migota\\252y)-453(p)-27(o\\261)-1(lep\\252ymi)-453(lustrami)-454(al)1(b)-28(o)-453(s)-1(tr)1(umie)-1(n)1(ia)-454(k)1(ie)-1(j)]TJ 0 -13.549 Td[(d\\252u)1(gac)27(h)1(ne,)-334(or)1(os)-1(ia\\252e)-333(prz\\246)-1(d)1(z)-1(e)-333(w)-1(l)1(e)-1(k\\252y)-333(si\\246)-334(ws)-1(k)1(ro\\261)-334(mgie\\252)-334(r)1(z)-1(edn)1(\\241c)-1(yc)28(h)-333(i)-333(\\261)-1(wit\\363)28(w.)]TJ 27.879 -13.55 Td[(Dzie)-1(\\253)-223(s)-1(i\\246)-224(ju)1(\\273)-225(cz)-1(yn)1(i\\252)-224(c)-1(oraz)-224(wi\\246)-1(k)1(s)-1(zy)83(,)-224(zorze)-225(rozs)-1(\\241cza\\252)-1(y)-224(si\\246)-225(w)-224(mart)28(w)27(e)-224(s)-1(i)1(no\\261c)-1(i,)-224(\\273e)]TJ -27.879 -13.549 Td[(na)-264(niebie)-265(p)-27(o)-28(c)-1(zyn)1(a\\252y)-265(gorze)-1(\\242)-265(jak)28(ob)29(y)-265(krw)28(a)28(w)27(e)-265(\\252un)29(y)-265(p)-27(o\\273)-1(ar\\363)28(w)-265(jesz)-1(cz)-1(e)-265(ni)1(e)-266(d)1(o)-56(j)1(rz)-1(an)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(i)-467(tak)-467(si\\246)-467(galan)28(to)-467(rozwidn)1(ia\\252o,)-467(i\\273)-467(ano)-467(b)-27(ory)-467(wyrasta\\252y)-467(d)1(ok)28(o\\252)-1(a)-467(cz)-1(ar)1(n\\241)-467(ob)1(r\\246)-1(cz\\241,)]TJ 0 -13.549 Td[(a)-462(wielk)56(a)-462(d)1(roga,)-461(obsiad\\252a)-461(rz)-1(\\246dami)-461(top)-28(ol)1(i)-462(p)-27(o)-28(c)27(h)29(ylon)28(y)1(c)27(h,)-461(utr)1(ud)1(z)-1(on)28(y)1(c)27(h)-461(jak)28(ob)28(y)-461(w)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kim)-305(c)27(h)1(o)-28(dzie)-305(p)-28(o)-27(d)-305(wz)-1(g\\363r)1(z)-1(e,)-305(d)1(\\271)-1(wiga\\252a)-305(si\\246)-306(coraz)-305(widn)1(iej)-305(na)-305(\\261wiat\\252o\\261\\242)-1(,)-305(za\\261)-305(w)-1(sie,)]TJ 0 -13.55 Td[(p)-27(otopion)1(e)-381(w)-381(m)-1(r)1(ok)55(ac)28(h)-381(p)1(rzyz)-1(i)1(e)-1(mn)28(yc)28(h,)-380(w)-1(y)1(z)-1(iera\\252y)-381(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-382(p)-27(o)-28(d)-380(zorz)-1(e,)-381(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(te)-451(czarne)-450(k)56(am)-1(ieni)1(e)-451(sp)-28(o)-28(d)-449(w)27(o)-28(d)1(y)-450(spienion)1(e)-1(j)1(,)-450(i)-450(p)-27(oniekt\\363re)-450(ju)1(\\273)-451(d)1(rz)-1(ew)28(a)-451(co)-450(bli)1(\\273)-1(sz)-1(e)]TJ 0 -13.549 Td[(sre)-1(b)1(rzy\\252y)-333(s)-1(i\\246)-333(c)-1(a\\252e)-334(w)-333(rosac)27(h)-333(i)-333(br)1(z)-1(ask)56(ac)27(h.)]TJ 358.232 -29.888 Td[(355)]TJ\nET\nendstream\nendobj\n1141 0 obj <<\n/Type /Page\n/Contents 1142 0 R\n/Resources 1140 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1140 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1146 0 obj <<\n/Length 9593      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(356)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(S\\252o\\253)1(c)-1(a)-344(j)1(e)-1(sz)-1(cz)-1(e)-344(nie)-344(b)28(y\\252o,)-344(cz)-1(u)1(\\252o)-345(si\\246)-344(jeno,)-344(\\273e)-345(leda)-344(p)1(ac)-1(ierz)-344(w)-1(y)1(\\252upi)1(e)-345(si\\246)-345(z)-344(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(z\\363rz)-300(roz)-1(gor)1(z)-1(a\\252yc)28(h)-300(i)-299(padn)1(ie)-300(na)-300(\\261wiat,)-300(kt)1(\\363re)-1(n)-299(dol)1(e)-1(giw)28(a\\252)-300(ostatk)28(\\363)27(w,)-299(oz)-1(wiera\\252)-300(ci\\246)-1(\\273k)28(o)]TJ 0 -13.549 Td[(mg\\252a)27(wicami)-331(zas)-1(n)28(u)1(te)-331(o)-28(c)-1(zy)84(,)-331(p)-27(oruc)28(hiw)28(a\\252)-331(si\\246)-331(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-331(pr)1(z)-1(ec)-1(y)1(k)55(a\\252)-330(z)-332(w)28(oln)1(a,)-331(ale)-331(j)1(e)-1(sz)-1(-)]TJ 0 -13.549 Td[(cz)-1(ec)27(h)-320(s)-1(i)1(\\246)-321(le)-1(n)1(i\\252)-321(w)-321(s\\252o)-28(dk)1(im,)-321(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(a)-56(j\\241cym)-321(d)1(o\\261)-1(p)1(iku)1(,)-321(b)-27(o)-321(cic)27(h)1(o\\261)-1(\\242)-321(p)1(ad\\252a)-321(b)1(arze)-1(j)-320(w)]TJ 0 -13.549 Td[(uszac)27(h)-304(dzw)27(on)1(i\\241c)-1(a,)-304(jak)28(ob)29(y)-305(zie)-1(mia)-304(dec)27(h)-304(przytai\\252a)-304({)-305(jeno)-304(w)-1(i)1(ate)-1(r)1(,)-305(j)1(ak)28(o)-305(to)-305(d)1(yc)27(h)1(anie)]TJ 0 -13.55 Td[(dziec)-1(i)1(\\241tk)55(a,)-333(cic)27(h)29(u\\261ki)-333(p)-28(o)28(wia\\252)-333(o)-28(d)-333(las\\363)28(w)-1(,)-333(a\\273)-334(r)1(os)-1(y)-333(p)-27(otrz\\246)-1(s\\252y)-333(s)-1(i\\246)-333(z)-334(dr)1(z)-1(ew.)]TJ 27.879 -13.549 Td[(A\\273)-237(z)-237(te)-1(j)-236(omdla\\252ej)-237(sz)-1(ar)1(o\\261)-1(ci)-237(\\261wit\\363)28(w)-1(,)-236(z)-237(t)28(yc)27(h)-236(s)-1(enn)29(yc)27(h)-236(jes)-1(zc)-1(ze,)-237(omro)-28(cz)-1(a\\252yc)28(h)-237(p)-27(\\363l,)]TJ -27.879 -13.549 Td[(jak)28(ob)29(y)-335(w)-335(k)28(o\\261c)-1(i)1(e)-1(le)-335(r)1(oz)-1(mo)-28(d)1(lon)28(ym)-335(i)-334(oni)1(e)-1(mia\\252ym,)-335(k)1(ie)-1(d)1(y)-335(d)1(obr)1(o)-28(dziej)-335(ma)-335(wznie\\261)-1(\\242)-335(n)1(a)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(sie)-1(n)1(ie)-334(Hosti\\246)-334(P)1(rze)-1(n)1(a)-56(j)1(\\261)-1(wi\\246ts)-1(z\\241)-333({)-334(wystrze)-1(l)1(i\\252)-334(z)-334(n)1(ag\\252a)-334(g\\252os)-333(s)-1(k)28(o)28(wronk)28(o)28(wy)84(...)]TJ 27.879 -13.549 Td[(Wyr)1(w)27(a\\252)-266(s)-1(i)1(\\246)-267(gdzies)-1(ik)-266(z)-266(roli,)-266(zatrze)-1(p)-27(ota\\252)-266(s)-1(kr)1(z)-1(yd)1(\\252am)-1(i)-266(i)-266(j)1(\\241\\252)-267(\\261wie)-1(r)1(gota\\242)-1(,)-266(j)1(ak)28(o)-267(ta)]TJ -27.879 -13.549 Td[(z)-356(c)-1(zyste)-1(go)-356(srebra)-356(sygn)1(atur)1(k)55(a,)-355(jak)28(o)-356(ten)-356(w)28(onn)28(y)-355(p)-28(\\246d)-356(wio\\261ni)1(an)28(y)-356(tli)1(\\252)-356(s)-1(i\\246)-356(w)-356(bl)1(adym)]TJ 0 -13.55 Td[(ni)1(e)-1(b)1(ie)-1(,)-299(bi\\252)-300(w)-300(g\\363r)1(\\246)-1(,)-300(g\\252o\\261nia\\252,)-299(i\\273)-300(w)-301(on)1(e)-1(j)-299(\\261)-1(wi\\246tej)-300(cic)27(h)1(o\\261)-1(ci)-300(ws)-1(c)28(ho)-28(d)1(\\363)28(w)-301(r)1(oz)-1(d)1(z)-1(w)28(ani)1(a\\252)-300(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(\\261w)-1(i)1(at)-334(ca\\252y)83(.)]TJ 27.879 -13.549 Td[(W)84(raz)-243(i)-243(dr)1(ugie)-243(j\\246\\252y)-243(si\\246)-243(z)-1(r)1(yw)27(a\\242,)-243(skrzyd)1(e)-1(\\252k)56(am)-1(i)-242(bi\\242,)-243(w)-243(n)1(ie)-1(b)-27(o)-243(si\\246)-243(drze\\242)-244(i)-242(\\261)-1(p)1(ie)-1(w)28(a\\242)]TJ -27.879 -13.549 Td[(za)27(wzi\\246)-1(cie,)-333(a)-334(p)-27(oran)1(e)-1(k)-333(g\\252osi\\242)-334(ws)-1(ze)-1(m)28(u)-333(st)27(w)28(orze)-1(n)1(iu)-333(cz)-1(u)1(j\\241ce)-1(m)28(u.)]TJ 27.879 -13.549 Td[(A)-333(p)-28(o)-333(ni)1(c)27(h)-333(wnet)-333(i)-333(c)-1(za)-56(j)1(ki)-333(z)-1(akwil)1(i\\252y)-333(j\\246kliwie)-334(n)1(a)-333(m)-1(o)-28(czarac)27(h)1(.)]TJ 0 -13.55 Td[(Bo)-28(\\242)-1(k)1(i)-382(te\\273)-383(wzi\\246\\252)-1(y)-381(klek)28(ota\\242)-382(roz)-1(g\\252o\\261ni)1(e)-383(gd)1(z)-1(iesik)-382(p)-27(o)-382(ws)-1(iac)28(h,)-381(jes)-1(zc)-1(ze)-382(nie)-382(roz-)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(n)1(an)28(yc)27(h)-332(w)-334(sz)-1(aro\\261c)-1(i)1(ac)27(h.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-333(z)-1(a\\261)-334(b)29(y\\252o)-334(j)1(u\\273)-334(i)1(no,)-333(in)1(o...)]TJ 0 -13.549 Td[(A\\273)-287(i)-286(ono)-286(p)-28(ok)56(aza\\252o)-287(si\\246)-287(zz)-1(a)-286(las)-1(\\363)28(w)-286(dalekic)28(h,)-286(wyc)27(h)28(y)1(la\\252o)-287(si\\246)-287(z)-287(p)1(rz)-1(epa\\261ci)-287(i)-286(kieb)28(y)]TJ -27.879 -13.549 Td[(t\\246)-379(ogromn\\241,)-378(z\\252o)-28(c)-1(i)1(s)-1(t\\241)-378(i)-379(r)1(oz)-1(gorza\\252\\241)-379(ogn)1(iami)-379(p)1(at)28(yn\\246)-379(wyn)1(os)-1(i\\252y)-378(Bo)-1(\\273e,)-379(n)1(ie)-1(wid)1(z)-1(i)1(alne)]TJ 0 -13.55 Td[(r\\246c)-1(e)-250(n)1(ad)-249(s)-1(enn)28(y)1(m)-1(i)-249(z)-1(i)1(e)-1(micam)-1(i)-249(i)-250(\\273e)-1(gn)1(a)-56(j)1(\\241c)-250(\\261)-1(wiat\\252o\\261c)-1(i\\241)-249(\\261)-1(wiat,)-249(\\273yw)27(e)-250(i)-249(umar\\252e,)-250(r)1(o)-28(dz\\241c)-1(e)]TJ 0 -13.549 Td[(si\\246)-245(i)-244(stru)1(c)27(hl)1(a\\252e)-1(,)-244(r)1(oz)-1(p)-27(o)-28(cz)-1(yn)1(a\\252o)-245(\\261wi\\246t\\241)-244(o\\014ar\\246)-244(dn)1(ia,)-244(\\273)-1(e)-244(ws)-1(zystk)28(o)-244(jakb)28(y)-244(z)-244(nag\\252a)-244(p)1(ad\\252o)]TJ 0 -13.549 Td[(w)-334(p)1(ro)-28(c)28(h)-333(pr)1(z)-1(ed)-333(ma)-56(jes)-1(t)1(ate)-1(m)-333(i)-334(zamilk\\252o)-333(pr)1(z)-1(ywiera)-55(j\\241c)-334(o)-27(c)-1(zy)-333(niego)-28(dn)1(e)-1(.)]TJ 27.879 -13.549 Td[(I)-333(oto)-334(d)1(z)-1(i)1(e)-1(\\253)-333(si\\246)-334(sta\\252,)-333(jak)28(o)-333(to)-334(n)1(ieob)-55(j\\246te)-334(morz)-1(e)-333(w)27(es)-1(eln)1(e)-1(j)-333(\\261w)-1(i)1(at\\252o\\261)-1(ci.)]TJ 0 -13.549 Td[(Mg\\252y)-354(kiej)-355(w)28(onn)1(e)-355(dym)28(y)-355(z)-355(tr)1(ybu)1(larz\\363)28(w)-355(bi\\252y)-354(z)-355(\\252)-1(\\241k)-354(ku)-354(rozz)-1(\\252o)-28(conem)27(u)-354(n)1(ie)-1(b)1(u,)]TJ -27.879 -13.55 Td[(a)-331(ptact)28(w)27(o)-331(i)-331(s)-1(t)28(w)28(orz)-1(eni)1(e)-332(ws)-1(ze)-1(lk)1(ie)-332(ud)1(e)-1(r)1(z)-1(y)1(\\252)-1(o)-331(w)-332(wielki)-331(kr)1(z)-1(y)1(k)-332(\\261pi)1(e)-1(w)28(a\\253,)-331(jak)28(ob)29(y)-332(w)-331(te)-1(n)]TJ 0 -13.549 Td[(pacierz)-334(se)-1(r)1(dec)-1(zn)28(yc)28(h)-333(dzi\\246)-1(k)28(czynie\\253.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-264(za\\261)-265(u)1(rasta\\252o)-264(w)27(ci\\241\\273,)-264(wyn)1(os)-1(i\\252o)-264(si\\246)-264(nad)-263(b)-27(ory)-264(czarne,)-264(n)1(ad)-264(wsie)-264(niepr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(liczone,)-402(c)-1(oraz)-402(wy\\273)-1(ej,)-402(i)-402(wielki)1(e)-1(,)-402(gor)1(e)-1(j)1(\\241c)-1(e,)-402(c)-1(iep\\252e)-402(kiej)-402(to)-402(\\261)-1(wi\\246te)-403(ok)28(o)-402(mi\\252osie)-1(r)1(dzia)]TJ 0 -13.549 Td[(P)28(a\\253)1(s)-1(ki)1(e)-1(go)-333(br)1(a\\252o)-334(w)28(e)-334(w\\252adn\\241)-333(i)-333(s\\252)-1(o)-27(dk)56(\\241)-333(m)-1(o)-28(c)-333(pan)1(o)27(w)28(anie)-333(nad)-333(\\261wiate)-1(m.)]TJ 27.879 -13.55 Td[(W)-298(te)-1(n)-298(cz)-1(as)-299(w\\252a\\261nie,)-298(na)-298(w)-1(zg\\363rzu)-298(piasz)-1(czys)-1(t)28(ym)-298(p)-28(o)-28(d)-298(l)1(as)-1(em)-1(,)-298(sp)-28(o)-28(d)-298(d)1(w)27(or)1(s)-1(ki)1(c)27(h)]TJ -27.879 -13.549 Td[(stog\\363)27(w)-366(\\252ubi)1(no)28(wyc)27(h)1(,)-367(sto)-56(j)1(\\241c)-1(y)1(c)27(h)-366(wp)-28(o)-28(d)1(le)-367(sz)-1(eroki)1(e)-1(j)-366(i)-366(w)-1(y)1(b)-28(oistej)-366(drogi)1(,)-367(p)-27(ok)56(az)-1(a\\252a)-366(s)-1(i\\246)]TJ 0 -13.549 Td[(stara)-333(Agata,)-333(p)-28(o)28(wino)28(w)28(ata)-333(c)-1(zy)-333(krew)-1(n)1(iacz)-1(k)56(a)-333(K\\252\\246)-1(b)-27(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)28(wraca\\252a)-301(on)1(a)-301(z)-301(\\273e)-1(b)1(r\\363)28(w,)-300(na)-300(kt\\363ren)-300(to)-301(c)28(hleb)-300(Jez)-1(u)1(s)-1(o)28(wy)-300(b)28(y\\252a)-301(p)-27(osz)-1(\\252a)-300(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(w)-362(k)28(opan)1(ia,)-362(a)-362(t)1(e)-1(raz)-362(ci)-362(z)-362(na)28(wrotem)-363(d)1(o)-362(Lip)1(ie)-1(c)-362(ci\\241)-28(gn\\246\\252a)-362(jak)28(o)-362(ci)-362(p)1(tak)28(o)28(w)-1(i)1(e)-1(,)-361(z)-1(a)28(w\\273)-1(d)1(y)]TJ 0 -13.549 Td[(wraca)-56(j)1(\\241c)-1(y)-333(o)-333(w)-1(i)1(o\\261)-1(n)1(ie)-334(do)-333(gn)1(iaz)-1(d)-333(sw)28(oic)27(h)1(.)]TJ 27.879 -13.55 Td[(St)1(are)-392(to)-392(b)29(y\\252o,)-392(sc)27(h)28(u)1(c)27(h)1(rane,)-391(s)-1(\\252ab)-27(e)-392(i)-392(l)1(e)-1(d)1(w)-1(i)1(e)-392(dyc)28(ha)-56(j)1(\\241c)-1(e,)-391(i\\273)-392(s)-1(i)1(\\246)-392(w)-1(i)1(dz)-1(i)1(a\\252a)-392(jak)28(o)]TJ -27.879 -13.549 Td[(ta)-357(wierzba)-357(p)1(rzydr)1(o\\273)-1(n)1(a,)-357(p)-27(okrzywiona,)-356(s)-1(p)1(r\\363)-28(c)28(hni)1(a\\252)-1(a,)-356(c)-1(o)-356(to)-357(s)-1(i)1(\\246)-358(j)1(u\\273)-357(ledwie)-357(tli)-357(i)-356(do-)]TJ 0 -13.549 Td[(mie)-1(r)1(a)-308(w)-309(p)1(iac)27(h)1(ac)27(h)1(;)-308(w)-308(\\252ac)27(hmanac)28(h)-308(j)1(u\\261c)-1(i)-308(b)29(y\\252a,)-308(z)-309(k)28(ostur)1(e)-1(m)-308(dziad)1(o)27(wskim)-308(w)-308(r\\246)-1(k)1(u,)-308(z)]TJ 0 -13.549 Td[(tob)-27(o\\252k)55(ami)-333(na)-333(pl)1(e)-1(cac)27(h)1(,)-334(ob)29(w)-1(i)1(e)-1(sz)-1(on)1(a)-334(r)1(\\363\\273)-1(a\\253)1(c)-1(ami.)]TJ 27.879 -13.549 Td[(Wyl)1(az)-1(\\252a)-378(s)-1(p)-27(o)-28(d)-378(b)1(rog\\363)28(w)-379(o)-378(sam)27(ym)-378(w)-1(sc)27(h)1(o)-28(dzie)-378(i)-379(\\261pi)1(e)-1(sz)-1(n)1(ie)-379(d)1(rep)-28(c\\241c)-379(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(do)-314(s)-1(\\252o\\253ca)-315(t)28(w)28(arz)-315(s)-1(zar\\241)-315(i)-315(wysc)27(h)1(\\252\\241)-315(jak)28(o)-315(te)-315(p\\252on)1(e)-316(u)1(gory)-314(z)-1(es)-1(z\\252oro)-28(cz)-1(n)1(e)-1(;)-314(jeno)-315(j)1(e)-1(j)-314(s)-1(i)1(w)27(e,)]TJ 0 -13.549 Td[(zac)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ione)-334(o)-27(c)-1(zy)-333(roz)-1(b)1(\\252yskiw)28(a\\252)-1(y)-333(r)1(ado\\261c)-1(i\\241.)]TJ\nET\nendstream\nendobj\n1145 0 obj <<\n/Type /Page\n/Contents 1146 0 R\n/Resources 1144 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1144 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1149 0 obj <<\n/Length 10216     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(357)]TJ -330.353 -35.866 Td[(Jak\\273e)-1(!)1(...)-284(p)-27(o)-285(d)1(\\252)-1(u)1(giej)-284(i)-284(c)-1(i\\246\\273)-1(k)1(ie)-1(j)-284(zimie)-285(d)1(o)-285(sw)27(o)-55(jej)-284(ws)-1(i)-284(ro)-28(d)1(z)-1(on)1(e)-1(j)-283(w)-1(r)1(ac)-1(a\\252a,)-284(to)-284(bie-)]TJ -27.879 -13.549 Td[(g\\252a)-284(a\\273)-284(tru)1(c)27(h)1(c)-1(ik)1(ie)-1(m,)-284(\\273e)-284(ino)-283(torb)-27(e)-1(cz)-1(k)1(i)-284(wysk)55(ak)1(iw)27(a\\252y)-283(p)-28(o)-283(b)-28(ok)56(ac)27(h)-283(i)-283(dzw)27(on)1(i\\252y)-284(r)1(\\363\\273)-1(a\\253)1(c)-1(e,)]TJ 0 -13.549 Td[(ale)-359(i\\273)-358(j\\241)-358(s)-1(p)1(ie)-1(r)1(a\\252o,)-359(a)-358(z)-1(ad)1(yc)27(h)1(liw)28(o\\261)-1(\\242)-359(r)1(az)-359(wraz)-359(c)27(h)29(w)-1(y)1(ta\\252)-1(a)-358(si\\246)-359(b)-27(ol\\241c)-1(y)1(c)27(h)-358(piersi)-358(to)-359(m)28(u-)]TJ 0 -13.549 Td[(sia\\252a)-349(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\242)-1(,)-348(w)27(oln)1(ie\\242)-349(i)-349(j)1(u\\273)-349(s)-1(z\\252a)-349(ci\\246\\273)-1(k)28(o,)-348(z)-349(utru)1(dze)-1(n)1(iem)-1(,)-348(jeno)-348(t)28(ym)-1(i)-348(g\\252o)-28(d)1(n)28(ymi)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)1(m)-1(a)-350(lata)-55(j\\241c)-350(p)-28(o)-350(\\261w)-1(i)1(e)-1(cie)-351(i)-350(p)-27(o\\261m)-1(i)1(e)-1(c)27(h)29(uj)1(\\241c)-351(s)-1(i)1(\\246)-351(d)1(o)-351(t)28(y)1(c)27(h)-350(p)-27(\\363l)-350(s)-1(zaryc)28(h,)-350(w)-350(zie)-1(l)1(o)-1(n)1(a)28(w)27(e)]TJ 0 -13.55 Td[(mg\\252y)-453(przys\\252)-1(on)1(ion)28(y)1(c)27(h,)-453(d)1(o)-453(w)-1(si)-453(wyn)28(ur)1(z)-1(a)-55(j\\241cyc)27(h)-452(s)-1(i\\246)-453(z)-454(w)28(olna)-453(z)-454(mgieln)28(yc)28(h)-453(topi)1(e)-1(li)1(,)]TJ 0 -13.549 Td[(do)-466(t)27(y)1(c)27(h)-466(nagic)28(h)-467(j)1(e)-1(sz)-1(cz)-1(e)-467(d)1(rz)-1(ew)-467(s)-1(t)1(r\\363\\273)-1(u)1(j\\241cyc)27(h)-466(nad)-466(dr)1(ogam)-1(i)-466(leb)-28(o)-467(samotne)-467(s)-1(t)1(\\363)-56(jk)1(i)]TJ 0 -13.549 Td[(o)-28(d)1(b)28(yw)28(a)-56(j)1(\\241c)-1(yc)28(h)-333(p)-28(o)-333(p)-27(olac)27(h)1(,)-333(do)-333(c)-1(a\\252ego)-334(\\261wiata!)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-387(si\\246)-387(ju)1(\\273)-388(b)29(y\\252o)-387(p)-27(o)-28(dn)1(ies)-1(\\252o)-387(n)1(a)-387(par)1(\\246)-387(c)27(h\\252op)-27(\\363)28(w)-1(,)-386(\\273e)-388(d)1(o)-56(j)1(rza\\252)-387(c)27(ho)-27(\\242)-1(b)28(y)-386(i)-387(n)1(a)-56(j)1(-)]TJ -27.879 -13.549 Td[(dal)1(s)-1(ze)-384(k)1(ra)-56(j)1(e)-384(p)-27(\\363l;)-382(w)-1(sz)-1(y)1(s)-1(tk)28(o)-383(b)1(\\252ys)-1(zc)-1(za\\252o)-383(r\\363\\273an\\241)-383(r)1(os)-1(\\241,)-383(czarne)-383(role)-383(p)-27(o\\252ys)-1(k)1(iw)27(a\\252y)-382(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-308(s\\252o\\253cu,)-307(w)27(o)-27(dy)-307(gra\\252y)-307(p)-28(o)-307(ro)28(w)28(ac)27(h,)-307(sk)28(o)27(wr)1(onk)28(o)28(w)27(e)-308(g\\252osy)-308(d)1(z)-1(w)28(oni)1(\\252y)-308(w)-307(c)27(h\\252o)-28(d)1(n)28(ym)-307(p)-28(o-)]TJ 0 -13.55 Td[(wietrzu,)-341(gd)1(z)-1(i)1(e)-342(za\\261)-341(p)-28(o)-28(d)-340(k)56(amionk)56(ami)-341(tli)1(\\252)-1(y)-340(s)-1(i)1(\\246)-342(ostatn)1(ie)-342(p)1(\\252at)28(y)-341(\\261nieg\\363)28(w)-1(,)-340(\\273)-1(\\363\\252te)-341(b)1(a)-1(zie)]TJ 0 -13.549 Td[(na)-455(p)-27(oniekt\\363ry)1(c)27(h)-455(dr)1(z)-1(ew)27(ac)28(h)-455(trz\\246)-1(s\\252y)-456(si\\246)-456(k)1(ie)-1(b)29(y)-456(te)-455(bur)1(s)-1(zt)28(yno)28(w)28(e)-456(paciork)1(i,)-455(w)-456(z)-1(aci-)]TJ 0 -13.549 Td[(sz)-1(ac)27(h)-421(za\\261)-422(alb)-27(o)-422(i)-421(p)-27(o)-28(d)-421(nagr)1(z)-1(an)28(y)1(m)-1(i)-421(k)56(a\\252u\\273am)-1(i)-421(sp)-28(o\\261r\\363)-28(d)-421(r)1(dza)27(wyc)28(h,)-421(z)-1(esz)-1(\\252oro)-27(c)-1(zn)28(yc)27(h)]TJ 0 -13.549 Td[(li\\261ci)-391(pr)1(z)-1(edzie)-1(r)1(a\\252y)-391(s)-1(i)1(\\246)-392(z\\252ota)27(w)28(e)-391(\\271)-1(d)1(\\271)-1(b\\252a)-391(tr)1(a)28(w)-392(m\\252o)-28(d)1(yc)27(h)1(,)-391(gdzie)-392(zn\\363)28(w)-391(pat)1(rz)-1(y)1(\\252y)-391(\\273)-1(\\363\\252te)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-303(k)56(acz)-1(e\\253c\\363)27(w,)-303(wiaterek)-303(te)-1(\\273)-303(w)-1(zi\\241\\252)-303(przygar)1(nia\\242)-304(l)1(e)-1(ciuc)28(hn)1(o)-304(i)-303(r)1(oz)-1(tr)1(z)-1(\\241sa\\252)-304(wil)1(gotne,)]TJ 0 -13.55 Td[(rze)-1(\\271w)28(e)-267(zapac)27(h)28(y)-265(p)-28(\\363l,)-265(p\\252a)28(w)-1(i)1(\\241c)-1(yc)28(h)-266(si\\246)-267(leni)1(w)-1(i)1(e)-267(w)-266(s)-1(\\252o\\253)1(c)-1(u)1(,)-266(a)-266(w)-1(sz)-1(\\246dy)-265(b)28(y\\252o)-266(tak)-266(wio\\261nia-)]TJ 0 -13.549 Td[(no,)-275(r)1(oz)-1(legle,)-276(j)1(as)-1(n)1(o,)-275(c)27(ho)-27(c)-1(ia\\273)-275(i)-276(j)1(e)-1(sz)-1(cze)-1(c)27(h)-275(\\271dziebk)28(o)-275(s)-1(zara)28(w)28(o,)-276(i)-275(tak)56(\\241)-275(lub)-27(o\\261)-1(ci\\241)-275(tc)27(h)1(n\\246\\252o,)]TJ 0 -13.549 Td[(\\273e)-343(j)1(u\\273)-343(si\\246)-342(du)1(s)-1(za)-342(Agat)28(y)-342(wyryw)28(a\\252a,)-342(b)28(y)-342(l)1(e)-1(cie\\242)-1(,)-342(j)1(ak)28(o)-342(te)-1(n)-341(ptak)-342(r)1(ado\\261c)-1(i)1(\\241)-342(opit)28(y)-342(n)1(ie)-1(sie)]TJ 0 -13.549 Td[(si\\246)-334(z)-334(kr)1(z)-1(y)1(kie)-1(m)-333(w)-334(ca\\252y)-333(\\261)-1(wiat.)]TJ 27.879 -13.549 Td[({)-322(Jez)-1(u)1(s)-323(m\\363)-56(j)1(!)-322(Je)-1(zusicz)-1(ku)-321(k)28(o)-28(c)27(h)1(an)28(y!)-322({)-322(p)-27(o)-56(j)1(\\246)-1(ki)1(w)27(a\\252a)-322(ledwie)-322(przysiadu)1(j\\241c)-322(niec)-1(o)]TJ -27.879 -13.55 Td[(i)-381(j)1(akb)28(y)-380(z)-1(gar)1(nia)-55(j\\241c)-381(ten)-381(\\261wiat)-381(wsz)-1(ystek)-381(w)-381(r)1(oz)-1(tr)1(z)-1(\\246s)-1(ion)1(e)-381(rado\\261ci\\241)-381(i)-380(w)-1(i)1(e)-1(lce)-381(c)-1(zuj)1(\\241c)-1(e)]TJ 0 -13.549 Td[(se)-1(rce.)]TJ 27.879 -13.549 Td[(Hej!)-269(zwies)-1(n)1(a)-269(c)-1(i)-268(to)-269(sz)-1(\\252a)-268(prze)-1(ciec)27(h)-268(nieob)-55(j\\246t)28(ymi)-269(p)-27(olami,)-269(sk)28(o)28(wronk)28(o)28(w)28(e)-270(p)1(ie\\261)-1(n)1(ie)]TJ -27.879 -13.549 Td[(g\\252os)-1(i)1(\\252y)-336(j\\241)-336(\\261w)-1(i)1(atu)-336(i)-336(to)-336(s\\252o\\253ce)-337(\\261wi\\246)-1(t)1(e)-1(,)-336(i)-336(t)1(e)-1(n)-336(wiat)1(e)-1(r)-336(p)1(ies)-1(zc)-1(z\\241c)-1(y)84(,)-336(s\\252o)-28(dki)-335(a)-336(c)-1(iep\\252y)-336(k)1(ie)-1(j)]TJ 0 -13.549 Td[(matc)-1(zyn)1(e)-225(ca\\252unk)1(i,)-224(i)-224(to)-223(przyta)-55(jone)-224(jesz)-1(cz)-1(ec)27(h)-223(dyc)28(hani)1(e)-225(ziem)-1(ic,)-224(t\\246sknie)-224(cz)-1(ek)55(a)-55(j\\241cyc)27(h)]TJ 0 -13.55 Td[(na)-305(p)1(\\252)-1(u)1(gi)-305(i)-305(z)-1(i)1(arno,)-305(i)-305(to)-305(wrze)-1(n)1(ie)-306(w)28(e)-1(se)-1(l)1(a)-306(u)1(nosz)-1(\\241ce)-306(si\\246)-306(ws)-1(z\\246)-1(d)1(y)83(,)-305(i)-305(to)-305(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-306(ciep\\252e,)]TJ 0 -13.549 Td[(orze)-1(\\271wia)-56(j)1(\\241c)-1(e)-334(i)-333(j)1(ak)28(ob)28(y)-334(n)1(abr)1(z)-1(mia\\252e)-334(t)28(ym)-334(wsz)-1(ystkim,)-333(c)-1(o)-333(wnetki)-333(s)-1(i\\246)-334(stan)1(ie)-334(z)-1(i)1(e)-1(leni)1(\\241,)]TJ 0 -13.549 Td[(kwiatem)-334(i)-333(k\\252ose)-1(m)-333(p)-28(e\\252n)28(ym.)]TJ 27.879 -13.549 Td[(Hej!)-354(z)-1(wies)-1(n)1(a)-355(ci)-355(t)1(o)-355(sz)-1(\\252a,)-354(jak)28(ob)28(y)-354(ta)-354(jas)-1(n)1(a)-355(p)1(ani)-354(w)-355(s\\252onec)-1(zn)28(ym)-355(ob)1(le)-1(cze)-1(n)1(iu,)-354(z)]TJ -27.879 -13.549 Td[(ju)1(trze)-1(n)1(k)28(o)28(w)27(\\241)-378(i)-378(m\\252o)-28(d)1(\\241)-378(g\\246)-1(b)1(usi\\241,)-378(z)-378(w)27(ar)1(k)28(o)-28(c)-1(zami)-378(mo)-28(dr)1(yc)27(h)-377(w)27(\\363)-28(d)1(,)-378(o)-28(d)-377(s)-1(\\252o\\253)1(c)-1(a)-378(p)1(\\252yn\\246\\252a,)]TJ 0 -13.55 Td[(nad)-339(z)-1(i)1(e)-1(miami)-340(si\\246)-341(n)1(ies)-1(\\252a)-340(w)-340(one)-340(kwietnio)28(w)28(e)-341(p)-27(oran)1(ki,)-340(a)-340(z)-340(rozp)-27(os)-1(tar)1(t)27(y)1(c)27(h)-340(r)1(\\241k)-340(\\261w)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(t)28(yc)27(h)-302(p)1(usz)-1(cza\\252)-1(a)-302(sk)28(o)27(wron)1(ki,)-302(b)28(y)-302(g\\252os)-1(i)1(\\252y)-303(w)28(e)-1(sele)-1(,)-302(a)-302(z)-1(a)-302(ni\\241)-302(ci\\241)-28(gn\\246\\252y)-302(\\273)-1(u)1(ra)28(wiane)-303(k)1(lucz)-1(e)]TJ 0 -13.549 Td[(z)-308(klan)1(gorem)-309(r)1(adosn)28(ym,)-308(a)-307(s)-1(zn)28(ur)1(y)-308(d)1(z)-1(ik)1(ic)27(h)-307(g\\246)-1(si)-308(p)1(rze)-1(p)1(\\252yw)27(a\\252y)-307(pr)1(z)-1(ez)-309(b)1(lad)1(e)-309(n)1(ieb)-28(o,)-307(\\273)-1(e)]TJ 0 -13.549 Td[(b)-27(o)-28(\\242)-1(k)1(i)-314(w)28(a\\273)-1(y\\252y)-313(s)-1(i\\246)-314(n)1(ad)-314(\\252\\246gam)-1(i)1(,)-314(a)-314(j)1(as)-1(k)28(\\363\\252ki)-313(\\261)-1(wiegota\\252y)-314(p)1(rz)-1(y)-313(c)27(h)1(atac)27(h)-313(i)-314(ws)-1(zyste)-1(k)-313(r\\363)-28(d)]TJ 0 -13.549 Td[(skrzydl)1(at)27(y)-308(n)1(adci\\241)-28(ga\\252)-308(z)-1(e)-308(\\261)-1(p)1(iew)27(an)1(ie)-1(m,)-308(a)-308(k)28(\\246)-1(d)1(y)-308(tkn\\246\\252a)-308(z)-1(iemi\\246)-309(s\\252onec)-1(zna)-308(s)-1(zata,)-308(tam)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(y)-419(si\\246)-420(dr\\273\\241ce)-421(t)1(ra)28(w)-1(y)84(,)-419(nabr)1(z)-1(miew)27(a\\252y)-419(lepkie)-420(p)-27(\\246ki,)-419(c)27(hl)1(usta\\252)-1(y)-419(zie)-1(l)1(one)-420(p)-27(\\246)-1(d)1(y)]TJ 0 -13.55 Td[(i)-393(s)-1(ze)-1(le\\261c)-1(i\\252y)-393(listec)-1(zki)-394(n)1(ie\\261)-1(mia\\252e,)-394(i)-393(ws)-1(ta)28(w)28(a\\252)-1(o)-393(no)28(w)28(e)-1(,)-393(bu)1(jn)1(e)-1(,)-393(p)-28(ot\\246\\273ne)-394(\\273yc)-1(ie,)-393(a)-394(zw)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(sna)-360(ju)1(\\273)-361(s)-1(z\\252a)-361(ca\\252ym)-361(\\261wiatem)-1(,)-360(o)-28(d)-360(wsc)27(h)1(o)-28(du)-360(d)1(o)-361(zac)27(h)1(o)-28(du)1(,)-360(jak)28(o)-360(ta)-360(w)-1(i)1(e)-1(lmo\\273na)-360(B)-1(o\\273a)]TJ 0 -13.549 Td[(wys\\252)-1(an)1(ni)1(c)-1(zk)55(a,)-333(\\252aski)-333(i)-333(m)-1(i)1(\\252)-1(osierd)1(z)-1(ie)-333(c)-1(zyni\\241ca...)]TJ 27.879 -13.549 Td[(Hej!)-456(z)-1(wies)-1(n)1(a)-457(ci)-456(to)-457(ogar)1(nia\\252a)-456(przyziem)-1(n)1(e)-1(,)-456(p)-27(okrzywione)-457(c)28(hat)28(y)84(,)-457(zagl\\241d)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-263(s)-1(tr)1(z)-1(ec)27(h)28(y)-263(m)-1(i\\252osiern)28(ymi)-263(o)-28(c)-1(zyma,)-264(b)1(ud)1(z)-1(\\241c)-264(s)-1(t)1(ruc)28(hla\\252e,)-264(omro)-28(cz)-1(on)1(e)-264(role)-264(se)-1(rc)-264(cz)-1(\\252o-)]TJ 0 -13.55 Td[(wiek)28(o)27(wyc)28(h,)-428(\\273e)-428(d\\271)-1(wiga\\252y)-427(s)-1(i\\246)-428(z)-428(utr)1(apie\\253)-428(i)-428(ciem)-1(n)1(ic,)-428(p)-27(o)-28(c)-1(zyn)1(a)-56(j\\241c)-428(wiar\\246)-428(na)-427(le)-1(p)1(s)-1(z\\241)]TJ 0 -13.549 Td[(dol)1(\\246)-1(,)-333(n)1(a)-334(ob)1(\\014tsz)-1(e)-334(zbi)1(ory)-333(i)-333(na)-333(t\\246)-334(wyt\\246s)-1(k)1(nion)1(e)-1(j)-333(sz)-1(cz\\246)-1(\\261liw)28(o\\261)-1(ci)-333(go)-28(dzin)1(\\246)-1(..)1(.)]TJ\nET\nendstream\nendobj\n1148 0 obj <<\n/Type /Page\n/Contents 1149 0 R\n/Resources 1147 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1147 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1152 0 obj <<\n/Length 10552     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(358)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ziem)-1(i)1(a)-416(si\\246)-416(rozdzw)27(an)1(ia\\252a)-416(\\273yciem)-416(kieb)28(y)-415(te)-1(n)-415(d)1(z)-1(w)28(on)-415(umar\\252y)84(,)-415(gdy)-415(m)27(u)-415(n)1(o)27(w)28(e)]TJ -27.879 -13.549 Td[(se)-1(rce)-290(u)28(wies)-1(z\\241,)-289(s)-1(erce)-290(z)-1(e)-290(s\\252)-1(o\\253)1(c)-1(a)-289(ucz)-1(y)1(nion)1(e)-1(,)-289(\\273e)-290(bij)1(e)-290(g\\363rni)1(e)-1(,)-289(dzw)27(on)1(i,)-289(h)28(ucz)-1(y)-289(rad)1(o\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(bu)1(dzi)-431(s)-1(tr)1(uc)28(hla\\252e)-432(i)-431(\\261piew)27(a)-431(taki)1(e)-432(rze)-1(cz)-1(y)-431(i)-431(spr)1(a)27(wy)84(,)-431(takie)-432(cud)1(a)-432(i)-431(mo)-28(ce)-1(,)-431(a\\273e)-432(s)-1(erca)]TJ 0 -13.549 Td[(bi)1(j\\241)-400(d)1(o)-400(wt\\363ru)-399(w)28(e)-1(se)-1(ln)1(e)-1(go,)-399(a\\273e)-401(same)-401(\\252zy)-400(l)1(e)-1(j)1(\\241)-400(s)-1(i)1(\\246)-401(z)-400(o)-27(c)-1(zu,)-399(a\\273)-1(e)-400(du)1(s)-1(za)-400(cz)-1(\\252o)28(wiek)28(o)27(w)28(a)]TJ 0 -13.549 Td[(zm)-1(ar)1(t)27(wyc)28(h)28(ws)-1(ta)-55(je)-256(w)-256(n)1(ie)-1(\\261mie)-1(r)1(te)-1(l)1(n)28(yc)27(h)-255(mo)-28(c)-1(ac)28(h)-256(i)-255(kl\\246c)-1(z\\241cy)-256(ze)-257(sz)-1(cz\\246)-1(\\261c)-1(ia)-255(ogarni)1(a)-256(s)-1(ob)1(\\241)]TJ 0 -13.55 Td[(on\\241)-476(z)-1(i)1(e)-1(mi\\246,)-477(\\363)28(w)-477(\\261wiat)-477(ca\\252y)83(,)-476(k)56(a\\273)-1(d)1(\\241)-477(gru)1(dk)28(\\246)-477(n)1(ap)-28(\\246cz)-1(n)1(ia\\252\\241,)-477(k)56(a\\273de)-477(dr)1(z)-1(ew)27(o,)-476(k)56(a\\273)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(e)-1(\\253)-333(i)-333(c)28(hm)27(u)1(r\\246)-334(k)56(a\\273d\\241,)-333(ws)-1(zystk)28(o)-334(an)1(o,)-333(c)-1(o)-333(u)28(wid)1(z)-1(i)-333(i)-333(c)-1(o)-333(p)-27(o)-28(cz)-1(u)1(je...)]TJ 27.879 -13.549 Td[(T)83(ak)-339(ci)-339(to)-339(i)-339(cz)-1(u)1(\\252a)-339(Agata)-339(kusz)-1(t)28(y)1(k)55(a)-55(j\\241c)-339(z)-340(w)28(olna)-339(i)-338(\\273)-1(r)1(\\241)-1(c)-339(spragn)1(ion)28(ymi)-339(o)-28(czym)-1(a)]TJ -27.879 -13.549 Td[(t\\246)-334(ziem)-1(i)1(\\246)-334(k)28(o)-28(c)27(h)1(an\\241,)-333(t\\246)-334(ziem)-1(i)1(\\246)-334(\\261)-1(wi\\246t\\241,)-333(\\273)-1(e)-333(s)-1(z\\252a)-334(j)1(ak)-333(pij)1(ana.)]TJ 27.879 -13.549 Td[(A\\273)-480(d)1(opiero)-479(gd)1(y)-479(s)-1(ygn)1(atur)1(k)55(a)-479(za\\261)-1(wiegota\\252a)-479(na)-479(lip)1(ie)-1(c)28(kim)-479(k)28(o\\261)-1(ciele)-480(ki)1(e)-1(j)-479(ten)]TJ -27.879 -13.549 Td[(pt)1(as)-1(ze)-1(k)-333(zw)27(o\\252u)1(j\\241cy)-334(n)1(a)-334(mo)-28(d)1(lit)28(w)28(\\246)-1(,)-333(o)-28(c)28(kn\\246\\252a)-334(stara)-333(z)-334(n)1(ag\\252a)-334(p)1(ada)-55(j\\241c)-334(n)1(a)-334(k)28(ol)1(ana.)]TJ 27.879 -13.55 Td[(...)1(i\\273)-1(e\\261)-334(sw)27(o)-55(j\\241)-333(\\261)-1(wi\\246t\\241)-333(pr)1(z)-1(ycz)-1(y)1(n\\241)-333(s)-1(p)1(ra)28(wi\\252,)-333(jak)28(om)-334(p)-27(o)28(wr\\363)-28(ci\\252a...)]TJ 0 -13.549 Td[(...)1(i\\273)-1(e\\261,)-334(P)29(anie,)-333(p)-28(ok)56(aza\\252)-334(mi\\252osie)-1(r)1(dzie)-334(n)1(ad)-333(s)-1(ierot\\241.)1(..)]TJ 0 -13.549 Td[(Mog\\252a)-244(to)-245(m\\363)28(w)-1(i)1(\\242)-1(!)-244(kiej)-244(\\252z)-1(y)-244(jak)28(o)-244(te)-1(n)-244(d)1(e)-1(sz)-1(cz)-245(rz\\246)-1(sis)-1(t)28(y)-244(zala\\252y)-245(j)1(e)-1(j)-244(se)-1(r)1(c)-1(e)-245(i)-244(s)-1(p)1(\\252yw)27(a\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)-352(w)-1(y)1(n\\246dznia\\252ej)-352(t)28(w)27(ar)1(z)-1(y)84(,)-352(\\273e)-353(j)1(e)-1(n)1(o)-353(mamrota\\252a)-352(cos)-1(ik)1(,)-352(a)-352(tak)-352(s)-1(i)1(\\246)-353(tr)1(z)-1(\\246s)-1(\\252a)-352(w)-352(s)-1(ob)1(ie,)-352(\\273)-1(e)]TJ 0 -13.549 Td[(ani)-294(w)28(e)-1(\\271)-294(nale\\271)-1(\\242)-294(r\\363\\273)-1(a\\253)1(c)-1(a,)-294(n)1(i)-294(t)27(y)1(c)27(h)-294(s\\252)-1(\\363)28(w)-294(pacie)-1(r)1(z)-1(a,)-294(kt\\363r)1(e)-295(si\\246)-295(rozs)-1(u)1(\\252y)-294(p)-28(o)-294(du)1(s)-1(zy)-294(pal\\241c\\241)]TJ 0 -13.55 Td[(ros\\241,)-375(to)-375(p)-27(orw)27(a\\252a)-375(si\\246)-376(z)-375(mo)-28(c)-1(\\241)-375(i)-375(p)-27(os)-1(z\\252a,)-375(pi)1(lni)1(e)-376(patr)1(z)-1(\\241c)-375(p)-28(o)-375(p)-27(olac)28(h)-375(i)-375(p)-27(o)27(wiad)1(a)-56(j)1(\\241c)-376(w)]TJ 0 -13.549 Td[(g\\252os)-334(j)1(akie)-334(s\\252o)27(w)28(o)-333(m)-1(o)-28(d)1(lit)28(wy)84(,)-334(p)1(rzyp)-27(om)-1(n)1(iane)-333(z)-334(nag\\252a..)1(.)]TJ 27.879 -13.549 Td[(\\233e)-255(z)-1(a\\261)-255(dzie\\253)-255(b)28(y)1(\\252)-255(ju\\273)-255(d)1(u\\273y)-255(i)-255(mg\\252y)-255(ca\\252)-1(k)1(ie)-1(m)-255(spad)1(\\252y)83(,)-255(Li)1(p)-28(ce)-255(ja)28(wi\\252y)-255(s)-1(i)1(\\246)-256(p)1(rze)-1(d)-254(ni\\241)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-329(na)-330(d)1(\\252oni,)-329(le\\273)-1(a\\252y)-329(ni)1(e)-1(co)-330(w)-330(d)1(ole)-330(n)1(a)-1(d)-329(ogr)1(om)-1(n)29(ym)-330(s)-1(t)1(a)27(w)28(e)-1(m)-329(m)-1(o)-28(d)1(rz\\241c)-1(y)1(m)-330(s)-1(i\\246)-330(k)1(ie)-1(j)]TJ 0 -13.549 Td[(lu)1(s)-1(tr)1(o)-282(sp)-28(o)-27(d)-282(b)1(ia\\252a)28(w)27(ej)-281(a)-282(lec)-1(i)1(uc)27(h)1(nej)-281(pr)1(z)-1(ys\\252on)28(y)83(,)-281(ob)1(s)-1(iad)1(\\252y)-282(w)28(o)-28(d)1(\\246)-282(kr\\246gie)-1(m)-282(n)1(iskic)27(h)1(,)-281(s)-1(ze)-1(-)]TJ 0 -13.55 Td[(rok)1(ic)27(h)-258(c)27(ha\\252u)1(p,)-259(co)-259(jak)-258(kum)28(y)-259(w)-259(s)-1(ob)1(ie)-259(wie)-1(l)1(c)-1(e)-259(p)-28(o)-27(duf)1(a\\252e)-1(,)-258(przysiad\\252y)-259(w)-259(sadac)28(h)-259(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(nagi)1(c)27(h,)-329(d)1(ym)27(y)-329(k)56(a)-56(j)1(\\261)-330(niek)56(a)-56(j)-329(r)1(w)27(a\\252y)-329(s)-1(i)1(\\246)-330(nad)-329(strze)-1(c)27(h)1(ami,)-329(gdzie)-330(z)-1(a\\261)-330(szyb)28(y)-329(pr)1(z)-1(eb\\252yski-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(y)-333(w)-333(s)-1(\\252o\\253)1(c)-1(u)-333(al)1(b)-28(o)-333(bieli\\252y)-333(wskro\\261)-334(cz)-1(ar)1(nia)28(wyc)28(h)-333(s)-1(ad)1(\\363)27(w)-333(\\261)-1(wie\\273)-1(o)-333(p)-27(obielon)1(e)-334(\\261)-1(cian)28(y)84(.)]TJ 27.879 -13.549 Td[(Ka\\273d\\241)-370(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-371(m)-1(og\\252a)-370(ju)1(\\273)-371(do)-55(jrze)-1(\\242)-370(z)-371(os)-1(ob)1(na.)-370(M\\252yn)-370(an)1(o,)-371(k)1(t\\363rego)-371(b)-27(e)-1(\\252k)28(otl)1(i-)]TJ -27.879 -13.549 Td[(wy)-354(tu)1(rk)28(ot)-354(do)-27(c)27(ho)-27(dzi\\252)-354(c)-1(or)1(az)-355(\\273ywiej,)-354(sta\\252)-354(na)-354(kr)1(a)-56(j)1(u)-354(ws)-1(i)-353(przy)-354(d)1(ro)-28(d)1(z)-1(e,)-354(kt\\363r)1(\\241)-354(s)-1(z\\252a,)-354(a)]TJ 0 -13.55 Td[(nap)1(rze)-1(ciw)-329(pra)28(wie,)-330(n)1(a)-329(dru)1(gim)-330(k)28(o\\253)1(c)-1(u)-329(k)28(o\\261c)-1(i)1(\\363\\252)-330(wznosi\\252)-330(wysokie,)-329(bia\\252e)-330(m)28(ur)1(y)-329(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)-288(ol)1(brzymic)27(h)-287(i)-287(gr)1(a\\252)-288(okn)1(ami)-288(i)-287(z\\252ot)28(ym)-288(kr)1(z)-1(y)1(\\273)-1(em)-288(na)-287(b)1(ani,)-287(a)-287(wp)-28(o)-28(d)1(le)-288(n)1(iego)-288(cz)-1(er-)]TJ 0 -13.549 Td[(wieni\\252y)-229(s)-1(i\\246)-230(d)1(ac)27(h\\363)28(wki)-229(pleban)1(ii.)-229(W)83(ok)28(\\363\\252)-230(za\\261,)-230(j)1(ak)-230(jeno)-229(do)-55(jrze)-1(\\242,)-229(s)-1(ta\\252y)-229(s)-1(in)29(ym)-230(wianki)1(e)-1(m)]TJ 0 -13.549 Td[(lasy)-409(i)-409(r)1(oz)-1(lew)28(a\\252)-1(y)-408(s)-1(i\\246)-409(p)-27(ola)-409(ni)1(e)-1(p)1(rze)-1(j)1(rz)-1(an)1(e)-1(,)-408(le)-1(\\273a\\252y)-409(ws)-1(i)1(e)-410(d)1(ale)-1(k)1(ie)-1(,)-408(ws)-1(ie)-409(kieb)28(y)-409(te)-409(sz)-1(a-)]TJ 0 -13.549 Td[(re)-438(l)1(is)-1(zki)-437(pr)1(z)-1(yw)28(arte)-438(d)1(o)-438(ziem)-1(i,)-437(a)-437(w)-438(s)-1(ad)1(y)-438(p)-27(o)-28(c)28(ho)28(w)27(an)1(e)-1(;)-437(d)1(rogi)-437(kr\\246to)-438(p)-27(o)28(w)-1(y)1(c)-1(i\\241)-27(gane,)]TJ 0 -13.55 Td[(k)56(am)-1(i)1(onki)1(,)-340(r)1(z)-1(\\246dy)-339(dr)1(z)-1(ew)-340(p)1(rze)-1(c)28(h)28(ylon)28(y)1(c)27(h,)-339(p)1(ias)-1(zc)-1(zyste)-340(wyd)1(m)27(y)83(,)-339(z)-340(r)1(z)-1(ad)1(k)56(a)-340(p)-27(oros\\252e)-340(ja-)]TJ 0 -13.549 Td[(\\252o)28(w)27(cam)-1(i)1(,)-265(i)-265(w)28(\\241s)-1(k)56(a)-265(pr)1(z)-1(\\246dza)-265(rz)-1(ecz)-1(ki)1(,)-265(c)-1(iek)56(\\241c)-1(ej)-265(p)-27(o\\252yskliwie)-265(i)-265(wle)-1(w)28(a)-56(j)1(\\241c)-1(ej)-265(si\\246)-265(do)-265(sta)27(wu)1(,)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(c)28(ha\\252up)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Bli\\273e)-1(j)-280(za\\261)-1(,)-280(d)1(ok)28(o\\252)-1(a)-280(ws)-1(i)1(,)-281(wielgac)27(h)1(n)28(ym)-281(k)1(r\\246gie)-1(m)-280(le)-1(\\273a\\252y)-280(lip)-27(e)-1(c)27(k)1(ie)-281(zie)-1(mie,)-280(p)-28(okr)1(a-)]TJ -27.879 -13.549 Td[(jan)1(e)-398(w)-398(p)1(as)-1(y)84(,)-397(kieb)28(y)-397(te)-398(p)-27(os)-1(ta)28(wy)-397(z)-1(gr)1(z)-1(ebn)1(e)-1(go)-397(p\\252\\363tn)1(a,)-397(roz)-1(ci\\241)-28(gn)1(i\\246te)-398(p)-27(o)-28(d)-397(wz)-1(g\\363rza)-397(i)]TJ 0 -13.549 Td[(p)-27(o)-28(\\242)-1(wiar)1(to)28(w)27(an)1(e)-295(n)1(a)-294(dzia\\252ki)1(.)-294(P)28(ola)-293(w)-1(i)1(\\252y)-294(s)-1(i)1(\\246)-295(i)-293(wyd\\252u)1(\\273)-1(a\\252y)-293(przy)-294(p)-27(olac)27(h)1(,)-294(p)-27(orozdzielane)]TJ 0 -13.55 Td[(kr)1(\\246)-1(t)28(ymi)-272(mie)-1(d)1(z)-1(ami,)-272(n)1(a)-272(kt\\363ry)1(c)27(h)-272(g\\246s)-1(to)-272(r)1(oz)-1(rasta\\252y)-272(si\\246)-273(gr)1(usz)-1(e)-272(roz)-1(\\252o\\273yste)-1(,)-272(g\\363r)1(z)-1(y)1(\\252)-1(y)-271(s)-1(i\\246)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(onki)-306(cie)-1(r)1(niem)-307(ob)1(ros)-1(\\252e,)-306(w)-307(z)-1(\\252ota)28(wym)-307(\\261wie)-1(t)1(le)-307(os)-1(t)1(ro)-307(wyr)1(z)-1(yn)1(a\\252y)-306(s)-1(i\\246)-307(sz)-1(ar)1(e)-307(i)-306(ut)28(y-)]TJ 0 -13.549 Td[(t\\252ane)-294(kiej)-294(\\261c)-1(i)1(e)-1(rk)1(i)-294(ugor)1(y;)-294(to)-294(p\\252ac)28(h)28(t)28(y)-294(z)-1(i)1(e)-1(lon)1(a)28(w)27(e)-294(oz)-1(imin)1(,)-294(to)-294(ze)-1(sz)-1(\\252oro)-27(c)-1(zne)-294(k)55(ar)1(to\\015i)1(s)-1(k)56(a)]TJ 0 -13.549 Td[(cz)-1(erni)1(a\\252y)-417(ab)-27(o)-416(i)-416(ju)1(\\273)-417(latosie)-417(p)-27(o)-28(dor)1(\\363)28(w)-1(ki)1(,)-416(m)-1(iejscam)-1(i)-416(za\\261)-417(w)-417(d)1(o\\252k)55(ac)28(h)-416(s)-1(i)1(w)-1(i)1(a\\252y)-417(w)28(o)-28(d)1(y)]TJ 0 -13.549 Td[(i)-437(wlek\\252y)-437(s)-1(i\\246)-437(kiej)-437(to)-437(sz)-1(kl)1(iw)27(o)-437(roztop)1(ione;)-437(z)-1(a)-437(m\\252ynem)-438(r)1(oz)-1(lew)28(a\\252)-1(y)-437(si\\246)-437(\\252\\241ki)-437(ru)1(da)28(w)27(e)]TJ 0 -13.55 Td[(p)-27(o)-389(kt\\363ryc)28(h)-389(b)1(ro)-28(d)1(z)-1(i\\252y)-389(b)-27(o)-28(cian)28(y)-389(r)1(az)-390(wraz)-389(p)-28(ok)1(le)-1(k)1(uj)1(\\241c)-1(e,)-389(i)-389(k)56(apu)1(\\261)-1(n)1(is)-1(k)56(a)-389(tak)-389(j)1(e)-1(sz)-1(cze)-1(c)27(h)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-270(w)28(o)-28(d\\241,)-269(\\273)-1(e)-270(jeno)-270(grzbiet)28(y)-270(z)-1(agon)1(\\363)28(w)-271(p)1(rze)-1(mi\\246k\\252yc)27(h)-269(\\252y\\261)-1(n)1(i\\252y)-270(s)-1(i)1(\\246)-271(ki)1(e)-1(j)-270(p)1(isk)28(orze)-1(,)-270(cz)-1(a)-55(j-)]TJ\nET\nendstream\nendobj\n1151 0 obj <<\n/Type /Page\n/Contents 1152 0 R\n/Resources 1150 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1150 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1155 0 obj <<\n/Length 9826      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(359)]TJ -358.232 -35.866 Td[(ki)-348(bia\\252ob)1(rz)-1(u)1(s)-1(zne)-349(k)28(o\\252o)28(w)27(a\\252y)-348(nad)-348(nimi,)-348(a)-349(p)-27(o)-349(rozs)-1(ta)-55(jac)28(h)-349(str\\363\\273o)28(w)27(a\\252y)-349(\\261wi\\246te)-350(d)1(rze)-1(w)28(a)]TJ 0 -13.549 Td[(kr)1(z)-1(y\\273o)28(w)27(e)-307(i)-306(j)1(e)-1(n)1(s)-1(ze)-307(wy)28(obr)1(a\\273)-1(enia)-306(P)28(a\\253)1(s)-1(k)1(ie)-1(,)-306(za\\261)-307(n)1(ad)-306(t)28(ym)-307(ca\\252ym)-307(\\261wiate)-1(m,)-306(zakl\\246s)-1(\\252ym)]TJ 0 -13.549 Td[(\\271dzie)-1(b)1(k)28(o)-434(w)-434(miejsc)-1(u)1(,)-433(k)28(\\246)-1(d)1(y)-434(wie\\261)-434(pr)1(z)-1(yw)28(ar\\252a,)-433(wis)-1(i)1(a\\252)-1(o)-433(rozgorza\\252e)-1(,)-433(z)-1(\\252ota)28(w)28(e)-434(s)-1(\\252o\\253)1(c)-1(e,)]TJ 0 -13.549 Td[(p)-27(obrzmie)-1(w)28(a\\252y)-371(sk)28(o)28(w)-1(r)1(onk)28(o)28(w)28(e)-372(\\261pi)1(e)-1(w)28(ania,)-370(rozle)-1(ga\\252y)-370(s)-1(i)1(\\246)-372(n)1(iekiedy)-370(o)-28(d)-370(ob)-28(\\363r)-370(t\\246s)-1(kl)1(iw)27(e)]TJ 0 -13.549 Td[(ry)1(ki)-416(b)28(yd)1(\\252a,)-416(to)-416(g\\246s)-1(i)-416(gd)1(z)-1(i)1(e)-1(sik)-416(p)-27(okrzykiw)28(a\\252y)-416(g\\246gliwie)-416(i)-416(lec)-1(ia\\252y)-416(r)1(oz)-1(g\\252o\\261ne)-416(w)27(o\\252an)1(ia)]TJ 0 -13.55 Td[(lu)1(dzkie,)-318(a)-317(wraz)-318(i)-317(wiater)-317(tc)27(h)1(n\\241\\252)-318(l)1(ub)28(y)1(m)-1(,)-317(cie)-1(p)1(\\252ym)-318(p)-27(o)28(w)-1(i)1(e)-1(w)28(e)-1(m)-317(z)-1(garn)1(ia)-56(j)1(\\241c)-318(ws)-1(zystkie)]TJ 0 -13.549 Td[(te)-287(g\\252)-1(osy)84(,)-287(\\273)-1(e)-287(z)-1(iemia)-287(s)-1(ta)28(w)28(a\\252a)-288(n)1(iekiedy)-287(w)-287(takiej)-287(cic)27(h)1(o\\261)-1(ci)-287(a)-287(zaduman)1(iu,)-287(j)1(ak)28(ob)28(y)-287(w)-287(te)-1(j)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(tej)-333(c)27(h)28(wil)1(i)-334(r)1(o)-28(d\\363)28(w)-333(i)-333(p)-28(o)-28(czyna\\253)1(.)]TJ 27.879 -13.549 Td[(Jeno)-373(n)1(a)-373(p)-27(olac)28(h)-373(ma\\252o)-373(gd)1(z)-1(i)1(e)-374(d)1(o)-56(j)1(rza\\252)-373(rob)-27(ot\\246,)-373(t)28(yl)1(e)-374(t)28(y)1(lk)28(o,)-373(co)-373(zaraz)-373(p)-27(o)-28(d)-372(ws)-1(i\\241)]TJ -27.879 -13.549 Td[(gme)-1(r)1(a\\252)-1(o)-453(si\\246)-454(ki)1(lk)56(a)-454(k)28(ob)1(iet)-453(roz)-1(r)1(z)-1(u)1(c)-1(a)-55(j\\241cyc)27(h)-453(n)1(a)28(w)27(\\363z,)-453(\\273)-1(e)-453(os)-1(tr)1(y)83(,)-453(p)1(rz)-1(eni)1(kliwie)-453(w)-454(n)1(oz)-1(-)]TJ 0 -13.549 Td[(dr)1(z)-1(ac)28(h)-333(wie)-1(r)1(c)-1(\\241cy)-333(z)-1(ap)1(ac)27(h)-333(p\\252y)1(n\\241\\252)-333(s)-1(m)28(ug\\241)-333(c)-1(a\\252\\241.)]TJ 27.879 -13.55 Td[({)-381(Zas)-1(p)1(a\\252)-1(y)-381(p)1(r\\363\\273niaki)-381(cz)-1(y)-381(co,)-381(dzie\\253)-381(taki)-381(wybr)1(an)28(y)83(,)-381(a)-381(na)-381(rol)1(\\246)-382(m)-1(a\\252o)-381(kto)-381(ci\\241-)]TJ -27.879 -13.549 Td[(gni)1(e)-1(..)1(.)-333(z)-1(iem)-1(i)1(a)-334(a\\273)-333(s)-1(i\\246)-333(prosi)-333(p\\252u)1(ga!)-334({)-333(mru)1(c)-1(za\\252)-1(a)-333(zgorsz)-1(on)1(a.)]TJ 27.879 -13.549 Td[(I)-427(ab)28(y)-426(b)28(y\\242)-427(b)1(li\\273)-1(ej)-426(jes)-1(zc)-1(ze)-427(z)-1(agon)1(\\363)27(w,)-426(z)-1(laz\\252a)-427(z)-427(dr)1(ogi)-427(na)-426(\\261)-1(cie\\273)-1(k)28(\\246)-427(c)-1(i)1(\\241)-28(gn\\241c\\241)-427(si\\246)]TJ -27.879 -13.549 Td[(za)-377(r)1(o)28(w)27(em)-1(,)-376(gd)1(z)-1(i)1(e)-377(j)1(u\\273)-376(c)-1(ze)-1(r)1(w)27(one)-376(rz\\246)-1(sy)-376(stokrotek)-376(ot)28(wiera\\252y)-376(s)-1(i)1(\\246)-377(d)1(o)-377(s\\252o\\253ca)-376(i)-376(g\\246\\261)-1(cie)-1(j)]TJ 0 -13.549 Td[(zie)-1(l)1(e)-1(n)1(i\\252a)-334(si\\246)-334(tr)1(a)27(w)28(a.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-292(\\273e)-293(tak)-292(p)1(usto)-292(b)28(y\\252o)-292(n)1(a)-292(p)-28(olac)28(h,)-292(a\\273e)-293(d)1(z)-1(i)1(w)-293(b)1(ra\\252!)-292(P)1(rz)-1(ecie)-293(d)1(obr)1(z)-1(e)-292(bacz)-1(y\\252a,)]TJ -27.879 -13.549 Td[(jak)28(o)-275(p)-27(o)-275(inn)1(e)-276(lata)-275(w)-276(t)1(\\246)-276(p)-27(or\\246)-276(to)-275(jeno)-275(si\\246)-276(cz)-1(erwieni\\252o)-275(p)-27(o)-276(zagonac)28(h)-275(o)-28(d)-275(ki)1(e)-1(ce)-1(k)-275(i)-275(a\\273)-275(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252o)-371(o)-28(d)-371(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(w)28(e)-1(k)-371(i)-371(wrzas)-1(k)28(\\363)28(w)-371(dzieusz)-1(yc)28(h;)-371(rozumia\\252a)-371(te)-1(\\273,)-371(jak)28(o)-371(pr)1(z)-1(y)-371(tak)1(ie)-1(j)]TJ 0 -13.549 Td[(p)-27(ogo)-28(dzie)-346(na)-55(jwy\\273s)-1(zy)-346(j)1(u\\273)-346(cz)-1(as)-346(do)-345(w)-1(y)1(w)27(o\\273e)-1(n)1(ia)-346(gn)1(o)-56(j)1(\\363)27(w,)-345(do)-346(p)-27(o)-28(d)1(or\\363)28(w)27(ek,)-346(d)1(o)-346(siew)27(\\363)28(w,)]TJ 0 -13.549 Td[(a)-283(dzisia)-56(j)-282(c)-1(o?)-283(Jeden)-283(j)1(e)-1(d)1(yn)28(y)-283(c)28(h\\252op,)-282(kt\\363rego)-283(do)-55(jrza\\252a)-283(gdzies)-1(ik)-282(w)-284(p)-27(o\\261)-1(r)1(o)-28(dk)1(u)-283(p)-27(\\363l,)-283(sia\\252)]TJ 0 -13.55 Td[(cos)-1(ik)1(,)-334(sze)-1(d)1(\\252)-334(p)-27(o)-28(c)27(h)28(y)1(lon)28(y)-333(i)-333(z)-1(a)28(wraca\\252,)-333(rozrz)-1(u)1(c)-1(a)-55(j\\241cy)-333(w)-334(p)-27(\\363\\252k)28(ole)-334(j)1(akie\\261)-334(z)-1(i)1(arno.)]TJ 27.879 -13.549 Td[({)-235(M)1(usi)-234(b)28(y\\242,)-235(\\273e)-235(gro)-28(c)28(h)-234(s)-1(ieje,)-234(kiej)-234(tak)-235(w)28(cz)-1(e\\261)-1(n)1(ie)-1(.)1(..)-234(Dom)-1(i)1(nik)28(o)28(w)27(ej)-234(c)27(h)1(\\252opaki,)-234(wid)1(z)-1(i)]TJ -27.879 -13.549 Td[(mi)-410(si\\246)-1(,)-409(b)-27(o)-410(akur)1(atni)1(e)-411(tam)-410(i)1(c)27(h)-409(p)-28(ola)-409(w)-1(y)1(pad)1(a)-56(j\\241.)1(..)-410(A)-409(niec)27(h)-409(w)27(ama)-410(d)1(arzy)-410(i)-409(plon)28(u)1(je)]TJ 0 -13.549 Td[(B\\363g)-334(mi\\252osie)-1(r)1(n)28(y)83(,)-333(gosp)-27(o)-28(dar)1(z)-1(e)-334(k)28(o)-27(c)27(han)1(e)-1(!)-333({)-333(s)-1(ze)-1(p)1(ta\\252a)-333(s)-1(erdecz)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(\\221cie\\273)-1(k)56(a)-426(b)28(y\\252a)-426(c)-1(i\\246\\273)-1(k)56(a,)-426(ni)1(e)-1(r\\363)28(wna,)-426(za)28(w)27(alon)1(a)-427(\\261wie)-1(\\273ymi)-426(kreto)28(w)-1(i)1(s)-1(k)56(ami,)-426(k)55(amie-)]TJ -27.879 -13.55 Td[(ni)1(e)-1(m,)-291(a)-291(miejsc)-1(ami)-291(b)1(\\252)-1(otn)1(a,)-291(ale)-291(ni)1(e)-292(zwrac)-1(a\\252a)-291(n)1(a)-291(to)-291(u)28(w)28(agi)-291(wpatr)1(uj)1(\\241c)-292(si\\246)-291(z)-292(lu)1(b)-28(o\\261ci\\241)]TJ 0 -13.549 Td[(i)-333(rozc)-1(zul)1(e)-1(n)1(ie)-1(m)-333(w)-334(k)56(a\\273)-1(d)1(e)-1(n)-333(zagon,)-333(w)-333(k)56(a\\273)-1(d)1(e)-334(p)-28(\\363l)1(k)28(o)-334(z)-334(osobn)1(a.)]TJ 27.879 -13.549 Td[({)-248(Ksi\\246\\273)-1(e)-248(\\273)-1(y)1(to,)-248(b)1(ujn)1(e)-1(,)-247(s)-1(ieln)1(ie)-248(s)-1(i\\246)-248(ru)1(s)-1(zy\\252o!..)1(.)-248(Pr)1(a)28(w)-1(d)1(a)-248(kiej)-248(w)28(\\246)-1(d)1(ro)28(w)28(a\\252)-1(a)-247(w)27(e)-248(\\261)-1(wiat)]TJ -27.879 -13.549 Td[(ora\\252)-315(p)-27(o)-28(d)-314(ni)1(e)-315(rol\\246)-315(par)1(ob)-28(ek,)-314(a)-315(dob)1(ro)-28(d)1(z)-1(iej)-314(s)-1(i)1(e)-1(dzieli)-314(s)-1(e)-315(gdzie\\261)-316(t)1(uta)-55(j,)-314(bac)-1(z\\246)-315(dob)1(rze)-1(..)1(.)]TJ 27.879 -13.549 Td[(I)-333(z)-1(n)1(o)27(wu)-333(ku)1(s)-1(zt)28(yk)56(a\\252a)-334(wzdyc)28(ha)-55(j\\241c)-334(ci\\246\\273)-1(k)28(o)-333(i)-333(\\252z)-1(a)28(w)27(o)-333(wlok)56(\\241c)-334(o)-28(cz)-1(y)1(m)-1(a.)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(e)-1(,)-333(P)1(\\252)-1(oszk)28(o)27(w)28(e)-334(\\273yto...)-333(m)28(usi)-333(b)28(y\\242)-334(p)-27(\\363\\271)-1(n)1(e)-334(alb)-27(o)-333(i)-334(wymi\\246k\\252o)-333(\\271)-1(d)1(z)-1(iebk)28(o.)]TJ 0 -13.549 Td[(Nac)27(h)29(yli\\252a)-348(s)-1(i\\246)-349(z)-349(t)1(rud)1(e)-1(m,)-348(dot)28(yk)56(a)-55(j\\241c)-349(dr)1(\\273)-1(\\241cymi,)-348(s)-1(tar)1(ymi)-349(p)1(alcam)-1(i)-348(wilgotn)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(\\271dzie)-1(b)-27(e\\252)-334(i)-333(g\\252as)-1(zc)-1(z\\241c)-334(j)1(e)-334(z)-334(mi\\252o\\261)-1(ci\\241,)-333(j)1(ak)28(ob)28(y)-333(te)-334(w\\252os)-1(y)-333(dziec)-1(i)1(\\253skie.)]TJ 27.879 -13.549 Td[({)-313(B)-1(or)1(yno)28(w)28(a)-314(p)1(s)-1(zenica,)-313(s)-1(i)1(e)-1(ln)29(y)-313(k)55(a)28(w)28(a\\252!)-314(J)1(u\\261c)-1(i!)1(...)-313(b)-27(o)-314(t)1(o)-314(n)1(ie)-314(gosp)-28(o)-27(darz)-313(pierwsz)-1(y)]TJ -27.879 -13.549 Td[(na)-353(Lip)-27(c)-1(e?...)-353(ale)-354(c)-1(osik)-353(przy\\273\\363\\252ta,)-354(m)28(usia\\252o)-354(j)1(\\241)-354(pr)1(z)-1(emroz)-1(i)1(\\242)-354(c)-1(zy)-354(co...)-353(c)-1(i)1(\\246)-1(\\273k)56(\\241)-354(z)-1(i)1(m)-1(\\246)-354(tu)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(z\\252a...)-259({)-260(medyto)28(w)28(a\\252)-1(a)-259(s)-1(p)-27(ostrze)-1(ga)-55(j\\241c)-260(p)-27(o)-260(p)1(rz)-1(y)1(p\\252as)-1(zcz)-1(on)28(y)1(c)27(h)-259(z)-1(agon)1(ac)27(h)-259(i)-259(w)-1(b)1(it)28(yc)27(h)]TJ 0 -13.55 Td[(w)-474(zie)-1(mi\\246,)-474(ob)28(w)28(alan)28(y)1(c)27(h)-473(m)27(u\\252em)-474(\\271)-1(d)1(\\271)-1(b)1(\\252ac)27(h)-473(oz)-1(imin)-473(\\261)-1(l)1(ady)-473(w)-1(ielki)1(c)27(h)-473(\\261)-1(n)1(ie)-1(g\\363)28(w)-474(i)-473(w)27(\\363)-28(d)]TJ 0 -13.549 Td[(roztop)-27(o)27(wyc)28(h.)]TJ 27.879 -13.549 Td[({)-322(Wycie)-1(r)1(pieli)-322(s)-1(i)1(\\246)-323(lud)1(z)-1(i)1(s)-1(k)56(a)-323(n)1(iem)-1(a\\252o,)-322(nab)1(iedo)28(w)27(al)1(i!)-322({)-323(w)28(e)-1(stc)27(h)1(n\\246\\252a)-323(p)1(rz)-1(y)1(s)-1(\\252an)1(ia-)]TJ -27.879 -13.549 Td[(j\\241c)-333(o)-28(c)-1(zy)-333(d\\252on)1(i\\241,)-333(b)-28(o)-333(nap)1(rze)-1(ciw)-333(o)-28(d)-333(ws)-1(i)-333(sz)-1(\\252y)-333(jak)1(ie)-1(\\261)-333(c)27(h\\252op)1(aki.)]TJ 27.879 -13.549 Td[({)-367(Ju\\261c)-1(i)1(\\242)-1(,)-367(co)-367(Mic)28(ha\\252)-367(organi)1(s)-1(t\\363)28(w)-367(z)-368(kt\\363r)1(ym\\261)-368(organ)1(i\\261c)-1(iaki)1(e)-1(m.)-367(P)28(o)-367(wielk)56(ano)-28(c-)]TJ -27.879 -13.55 Td[(n)28(ym)-333(s)-1(p)1(isie)-334(do)-333(W)84(oli)-333(id\\241,)-333(ki)1(e)-1(j)-333(z)-333(t)27(y)1(lac)27(h)1(n)28(ymi)-333(k)28(os)-1(zyk)56(am)-1(i)1(...)-333(Ju\\261ci,)-333(\\273)-1(e)-334(n)1(ie)-334(k)1(to)-334(d)1(rugi)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(c)28(h)28(w)28(ali\\252a)-312(Boga,)-311(gdy)-311(nad)1(e)-1(sz)-1(l)1(i,)-312(r)1(ada)-311(w)-1(i)1(e)-1(lce)-312(zagada\\242)-312(z)-312(ni)1(m)-1(i)-311(co\\261)-312(niec)-1(o\\261,)-311(ale)]TJ\nET\nendstream\nendobj\n1154 0 obj <<\n/Type /Page\n/Contents 1155 0 R\n/Resources 1153 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1153 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1158 0 obj <<\n/Length 9692      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(360)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(c)27(h)1(\\252op)-28(cy)-333(o)-28(db)1(ur)1(kn\\246li)-333(p)-27(oz)-1(d)1(ro)28(w)-1(i)1(e)-1(n)1(ie)-334(i)-333(pr)1(z)-1(es)-1(zli)-333(p)1(r\\246)-1(d)1(k)28(o,)-333(rozgadani)-333(ze)-334(sob\\241.)]TJ 27.879 -13.549 Td[({)-426(Dy\\242)-426(o)-28(d)-426(t)28(yl)1(ic)27(h)-425(s)-1(kr)1(z)-1(at\\363)28(w,)-426(bacz\\246)-427(ic)28(h,)-426(a)-426(n)1(ie)-427(p)-27(oz)-1(n)1(ali)-426(mni)1(e)-1(!)-426({)-426(Mar)1(k)28(otno\\261\\242)]TJ -27.879 -13.549 Td[(j\\241)-425(pr)1(z)-1(ej\\246\\252a.)-426({)-425(C)-1(i)1(e)-1(!)-425(a)-426(sk)56(\\241d)-425(b)28(y)-426(i)-425(tak)56(\\241)-426(d)1(z)-1(i)1(ad\\363)28(wk)28(\\246)-426(pami\\246)-1(t)1(a\\252)-1(y)1(!)-426(Ale)-426(M)1(ic)27(h)1(a\\252)-426(wyr\\363s\\252)]TJ 0 -13.549 Td[(galan)28(t)1(o,)-334(p)-27(ew)-1(n)1(iki)1(e)-1(m)-334(j)1(u\\273)-334(d)1(obr)1(o)-28(dziejo)28(wi)-333(przygry)1(w)27(a)-333(na)-333(organ)1(ac)27(h.)1(..)]TJ 27.879 -13.549 Td[(Roz)-1(m)28(y\\261la\\252a)-330(wp)1(atru)1(j\\241c)-330(si\\246)-330(zno)28(wu)-329(w)-330(d)1(rog\\246,)-329(\\273)-1(e)-330(to)-329(wysz)-1(ed\\252)-329(z)-1(e)-329(w)-1(si)-329(\\233yd)-329(jak)1(i\\261)]TJ -27.879 -13.55 Td[(p)-27(c)27(ha)-55(j\\241c)-333(prze)-1(d)-332(s)-1(ob)1(\\241)-334(sp)-28(or)1(e)-1(go)-333(c)-1(i)1(e)-1(lak)56(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(o)-27(d)-333(k)28(ogo)-334(to)-333(ku)1(pion)1(e)-1(?)-333({)-334(zagadn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[({)-303(Od)-303(K\\252\\246)-1(b)-27(o)28(w)27(ej!)-303({)-304(o)-27(dp)1(ar\\252)-304(mo)-28(cuj)1(\\241c)-304(s)-1(i\\246)-304(z)-304(b)1(ia\\252o-c)-1(ze)-1(r)1(w)27(on)28(y)1(m)-304(c)-1(i)1(o\\252)-1(k)1(ie)-1(m,)-303(kt\\363ren)]TJ -27.879 -13.549 Td[(si\\246)-334(opi)1(e)-1(r)1(a\\252)-1(,)-333(za)28(w)-1(r)1(ac)-1(a\\252)-333(i)-333(p)-28(ob)-27(ekiw)28(a\\252)-334(\\273a\\252o\\261)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-345(T)83(o)-345(ani)-345(c)27(h)28(y)1(bi)-345(p)-27(o)-346(gr)1(an)28(ul)1(i...)-345(j)1(u\\261c)-1(i.)1(..)-345(p)-28(ogn)1(a\\252a)-346(si\\246)-345(b)28(y\\252a)-345(jes)-1(zc)-1(ze)-346(pr)1(z)-1(ed)-345(\\273niw)28(a-)]TJ -27.879 -13.549 Td[(mi...)-333(a)-333(mo\\273)-1(e)-334(i)-333(p)-27(o)-333(s)-1(iw)28(e)-1(j)1(...)-333(S)1(ie)-1(l)1(n)28(y)-333(c)-1(io\\252ek..)1(.)]TJ 27.879 -13.55 Td[(Ob)-27(e)-1(j)1(rza\\252a)-231(si\\246)-231(za)-231(n)1(im)-231(z)-231(gosp)-28(o)-28(d)1(arsk)56(\\241)-231(lu)1(b)-28(o\\261c)-1(i)1(\\241,)-231(al)1(e)-231(ju)1(\\273)-231(ic)27(h)-230(n)1(ie)-231(b)28(y\\252o)-230(na)-230(dro)-27(dze)-1(:)]TJ -27.879 -13.549 Td[(cio\\252e)-1(k)-461(wyr)1(w)27(a\\252)-461(si\\246)-462(z)-461(r\\241k,)-460(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-461(na)-461(p)-27(ole)-462(i)-460(p)-28(o)-28(d)1(ni\\363s\\252s)-1(zy)-461(ogon)-460(rw)27(a\\252)-461(k)1(u)-461(ws)-1(i)-461(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\252a)-56(j)1(,)-333(a)-334(\\233yd)-333(z)-333(roz)-1(wian)29(ym)-334(c)28(ha\\252atem)-334(z)-1(ab)1(iega\\252)-334(m)28(u)-333(drog\\246.)]TJ 27.879 -13.549 Td[({)-328(W)-327(ogon)-327(go)-328(p)-27(o)-28(c)-1(a\\252u)1(j,)-327(a)-328(p)-27(opro\\261)-328(p)1(i\\246)-1(k)1(nie,)-328(to)-327(c)-1(i)-327(wr\\363)-28(ci...)-327(s)-1(ze)-1(p)1(n\\246\\252a)-328(z)-328(ku)1(n)28(te)-1(n)29(t-)]TJ -27.879 -13.549 Td[(no\\261ci\\241)-334(p)1(rzygl\\241d)1(a)-56(j\\241c)-333(s)-1(i\\246)-333(gonit)28(wie.)]TJ 27.879 -13.55 Td[({)-480(A)-481(i)-480(na)-480(K\\252\\246b)-28(o)28(wyc)27(h)-480(morgac)28(h)-481(n)1(i)-480(\\273)-1(yw)28(ej)-481(d)1(usz)-1(y)1(!)-481({)-480(z)-1(au)29(w)27(a\\273y\\252a)-481(p)1(rzy)-481(t)28(y)1(m)-1(,)]TJ -27.879 -13.549 Td[(ale)-496(ni)1(e)-497(b)28(y)1(\\252o)-496(ju)1(\\273)-497(cz)-1(asu)-495(na)-496(p)-27(om)27(y\\261lu)1(nki:)-495(wie)-1(\\261)-496(b)28(y\\252a)-495(ju\\273)-496(tak)-495(blisk)28(o,)-496(\\273e)-496(p)-28(o)-28(czu\\252a)]TJ 0 -13.549 Td[(zapac)27(h)-414(d)1(ym\\363)27(w)-414(i)-415(d)1(o)-56(jr)1(z)-1(a\\252a)-414(p)-28(o)-414(s)-1(ad)1(ac)27(h)-414(wietrz\\241c)-1(e)-415(si\\246)-415(pi)1(e)-1(rzyn)28(y)84(,)-414(to)-415(j)1(e)-1(n)1(o)-415(ogarn)1(ia\\252a)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)1(m)-1(a)-238(wie\\261)-239(ca\\252\\241)-239(i)-237(na)-56(j)1(g\\252\\246)-1(b)1(s)-1(za,)-238(wdzi\\246)-1(czna)-238(rad)1(o\\261)-1(\\242)-238(z)-1(atr)1(z)-1(\\246s)-1(\\252a)-238(jej)-238(se)-1(r)1(c)-1(em,)-238(\\273)-1(e)-238(to)-238(Je)-1(zus)]TJ 0 -13.549 Td[(p)-27(oz)-1(w)28(oli\\252)-297(do\\273y\\242)-297(te)-1(j)-296(z)-1(wies)-1(n)28(y)-297(i)-296(p)-28(o)28(wraca)-298(j)1(\\241)-297(oto)-297(do)-297(sw)27(oic)28(h,)-297(p)-27(o)28(w)-1(r)1(ac)-1(a)-297(d)1(o)-298(r)1(o)-28(dzon)28(yc)28(h..)1(.)]TJ 27.879 -13.55 Td[(A)-270(prze)-1(ciec)27(h)-270(mog\\252)-1(a)-270(z)-1(amrze)-1(\\242)-271(zim\\241)-271(mi\\246dzy)-271(ob)-27(cym)-1(i)1(,)-271(c)28(horza\\252a)-271(b)-27(o)28(wie)-1(m)-271(ci\\246\\273)-1(k)28(o,)]TJ -27.879 -13.549 Td[(ale)-334(J)1(e)-1(zus)-334(j)1(\\241)-334(p)-27(o)28(wr\\363)-28(ci\\252...)]TJ 27.879 -13.549 Td[(Dy\\242)-476(t)27(y)1(m)-477(ano)-476(\\273ywi\\252a)-476(dusz)-1(\\246)-476(przez)-477(d\\252u)1(g\\241)-477(zim\\246)-1(,)-476(t)28(ym)-476(s)-1(i\\246)-476(jeno)-476(krze)-1(p)1(i\\252a)-476(w)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(j)-333(go)-27(dzini)1(e)-334(i)-333(t)27(y)1(m)-334(si\\246)-334(br)1(oni\\252a)-333(o)-28(d)-333(mroz\\363)28(w)-1(,)-333(n)1(\\246)-1(d)1(z)-1(y)-333(i)-333(\\261m)-1(ierci..)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-342(p)-28(o)-27(d)-342(kr)1(z)-1(ak)56(ami,)-342(ab)29(y)-342(s)-1(i)1(\\246)-343(\\271dziebk)28(o)-342(p)1(rzygarn)1(\\241\\242)-1(,)-342(n)1(im)-342(w)27(ejd)1(z)-1(i)1(e)-343(mi\\246-)]TJ -27.879 -13.55 Td[(dzy)-350(c)27(h)1(a\\252up)28(y)84(,)-350(ale)-350(m)-1(i)1(a\\252)-1(a)-350(to)-350(si\\252y)83(,)-349(kiej)-350(j\\241)-350(tak)-350(r)1(oz)-1(ebra\\252a)-350(r)1(ado\\261\\242)-1(,)-350(\\273e)-351(k)56(a\\273)-1(d)1(a)-350(k)28(os)-1(tecz)-1(k)56(a)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252a)-333(s)-1(i\\246)-333(z)-334(os)-1(ob)1(na)-333(i)-333(s)-1(erce)-334(t\\252uk)1(\\252o)-334(si\\246)-334(b)-27(ole\\261)-1(n)1(ie)-334(ni)1(b)28(y)-333(te)-1(n)-332(ptak)-333(du)1(s)-1(zon)28(y?)]TJ 27.879 -13.549 Td[({)-299(S\\241)-299(jes)-1(zc)-1(ze)-1(c)28(h)-299(dob)1(re)-300(i)-299(mi\\252os)-1(iern)1(e)-300(lu)1(dzie)-1(,)-299(s\\241...)-299({)-299(s)-1(ze)-1(p)1(ta\\252a)-300(op)1(atru)1(j\\241c)-300(tr)1(os)-1(kl)1(i-)]TJ -27.879 -13.549 Td[(wie)-334(tor)1(b)-28(ec)27(ki)1(.)-333(Jak\\273)-1(e,)-333(uciu\\252a\\252a)-333(s)-1(ob)1(ie)-334(t)28(yl)1(a,)-333(\\273)-1(e)-334(m)28(usi)-333(s)-1(tar)1(c)-1(zy\\242)-334(n)1(a)-334(p)-27(o)-28(c)27(h)1(o)28(w)27(ek.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-368(o)-27(d)-368(d)1(a)28(w)-1(n)29(yc)27(h)-367(ju)1(\\273)-368(lat)-368(o)-367(t)28(ym)-368(jeno)-367(de)-1(l)1(ib)-27(e)-1(ro)28(w)28(a\\252a)-368(i)-367(w)-368(to)-368(ca\\252\\241)-368(du)1(s)-1(z\\246)]TJ -27.879 -13.55 Td[(k\\252ad)1(\\252)-1(a,)-406(\\273e)-408(sk)28(oro)-406(\\261)-1(mierc)-1(i)-406(p)-27(or\\246)-407(P)28(an)-406(Je)-1(zus)-407(spu)1(\\261)-1(ci,)-406(ab)28(y)-407(si\\246)-407(to)-407(mog\\252o)-407(sta\\242)-407(w)27(e)-407(wsi)]TJ 0 -13.549 Td[(sw)27(o)-55(jej,)-409(w)-409(c)28(ha\\252up)1(ie,)-409(n)1(a)-409(\\252\\363\\273)-1(ku)-408(zas)-1(\\252an)28(ym)-409(p)1(ierz)-1(y)1(nami,)-409(p)-27(o)-28(d)-408(rz\\246)-1(d)1(e)-1(m)-409(ob)1(raz\\363)27(w,)-408(tak)]TJ 0 -13.549 Td[(jak)28(o)-320(u)1(m)-1(iera\\252y)-320(gosp)-28(o)-28(d)1(yn)1(ie)-321(ws)-1(zystkie.)-320(C)-1(a\\252e)-321(\\273ycie)-321(zbiera\\252a)-320(na)-320(c)27(h)28(wil)1(\\246)-321(on\\241)-320(\\261)-1(wi\\246t\\241)-320(i)]TJ 0 -13.549 Td[(ostatni\\241.)]TJ 27.879 -13.549 Td[(Mi)1(a\\252)-1(a)-245(c)-1(i)-245(ju)1(\\273)-246(u)-246(K)1(\\252\\246)-1(b)-27(\\363)28(w)-246(na)-246(g\\363r)1(z)-1(e)-246(skrzyn)1(i\\246)-1(,)-245(a)-246(w)-246(n)1(iej)-246(p)1(ierz)-1(y)1(n\\246)-246(sp)-28(or)1(\\241,)-246(p)-27(o)-28(du)1(s)-1(zki)]TJ -27.879 -13.549 Td[(i)-432(pr)1(z)-1(e\\261)-1(cierad\\252a,)-432(i)-432(ws)-1(y)1(pki)-432(n)1(o)27(w)28(e)-1(,)-432(a)-432(ws)-1(zystk)28(o)-433(czys)-1(te,)-432(ni)1(e)-433(u\\273yw)28(ane)-433(zgo\\252a,)-432(b)28(y)-432(nie)]TJ 0 -13.55 Td[(mara\\242,)-283(za)28(ws)-1(ze)-283(mie)-1(\\242)-282(goto)28(w)27(e,)-282(no)-282(i)-282(\\273)-1(e)-282(nie)-282(b)28(y\\252o)-282(gdzie)-283(roz\\252o\\273)-1(y)1(\\242)-283(tej)-282(p)-28(o\\261c)-1(i)1(e)-1(li)1(.)-282(Mia\\252a)-282(to)]TJ 0 -13.549 Td[(kiej)-298(s)-1(w)28(o)-56(j)1(\\241)-299(izb)-28(\\246)-299(alb)-27(o)-299(i)-298(\\252\\363\\273)-1(k)28(o?)-299(K\\241t)1(e)-1(m)-299(za)27(w\\273dy)84(,)-299(n)1(a)-299(bar)1(\\252ogu)-299(j)1(akim,)-299(to)-298(w)-299(ob)-28(\\363r)1(c)-1(e,)-299(j)1(ak)]TJ 0 -13.549 Td[(si\\246)-347(zdar)1(z)-1(y\\252o)-346(i)-346(k)56(a)-56(j)-345(lu)1(dz)-1(i)1(e)-347(d)1(obre)-346(p)-27(oz)-1(w)28(olili)-346(p)1(rzytu)1(li\\242)-347(g\\252o)28(w)28(\\246)-1(.)-346(Ni)1(e)-347(cis)-1(n)1(\\246)-1(\\252a)-346(si\\246)-347(ta)-346(on)1(a)]TJ 0 -13.549 Td[(ni)1(gdy)-444(n)1(apr)1(z)-1(\\363)-28(d)1(,)-444(mi\\246dzy)-444(mo\\273)-1(n)1(e)-445(i)-443(w\\252)-1(ad)1(ne,)-444(n)1(ie)-444(w)-1(y)1(rz)-1(ek)56(a\\252a)-444(na)-444(d)1(ol\\246,)-444(b)-27(o)-444(wie)-1(d)1(z)-1(\\241ca)]TJ 0 -13.549 Td[(b)28(y\\252a)-441(dob)1(rz)-1(e,)-441(\\273)-1(e)-442(wsz)-1(ystk)28(o)-442(u)1(rz\\241dze)-1(n)1(ie)-442(na)-441(\\261)-1(wiec)-1(i)1(e)-442(z)-443(w)28(oli)-441(Bo\\273)-1(ej)-441(p)-28(o)-28(c)28(ho)-28(d)1(z)-1(i)1(,)-442(a)-441(nie)]TJ 0 -13.55 Td[(zm)-1(ieni)1(\\242)-334(go)-333(c)-1(z\\252o)27(wiek)28(o)28(w)-1(i)-333(gr)1(z)-1(es)-1(znem)27(u)1(.)]TJ 27.879 -13.549 Td[(T)83(o)-247(s)-1(e)-248(j)1(e)-1(n)1(o)-247(ta)-56(j)1(nie,)-247(p)-28(o)-247(c)-1(i)1(c)27(h)28(u)1(\\261)-1(ku)1(,)-247(przeprasz)-1(a)-55(j\\241c)-248(Boga)-247(z)-1(a)-247(p)28(yc)28(h\\246,)-247(o)-248(t)28(ym)-247(jedyn)1(ie)]TJ\nET\nendstream\nendobj\n1157 0 obj <<\n/Type /Page\n/Contents 1158 0 R\n/Resources 1156 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1143 0 R\n>> endobj\n1156 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1161 0 obj <<\n/Length 9198      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(361)]TJ -358.232 -35.866 Td[(marzy\\252a,)-334(b)29(y)-333(m)-1(ie\\242)-334(gosp)-28(o)-27(darski)-333(p)-27(o)-28(c)27(h)1(o)28(w)27(ek)-334({)-333(o)-333(to)-333(jeno)-333(prosi\\252a)-333(l\\246kliwie...)]TJ 27.879 -13.549 Td[(Nie)-319(d)1(z)-1(iw)28(ota)-319(wi\\246c)-1(,)-318(\\273)-1(e)-319(sk)28(oro)-318(s)-1(i\\246)-319(teraz)-319(p)1(rz)-1(y)1(w)-1(l)1(e)-1(k\\252a)-318(do)-319(wsi)-319(ostatk)56(am)-1(i)-318(si\\252,)-319(cz)-1(u)1(-)]TJ -27.879 -13.549 Td[(j\\241c,)-306(\\273e)-307(ju)1(\\273)-307(ten)-306(cz)-1(as)-306(os)-1(t)1(atni)-306(p)1(rz)-1(y)1(c)27(ho)-27(dzi)-306(na)-306(n)1(i\\241,)-306(to)-306(wz)-1(i\\246\\252a)-306(s)-1(ob)1(ie)-307(p)1(rzyp)-27(om)-1(in)1(a\\242)-1(,)-306(czy)]TJ 0 -13.549 Td[(ab)28(y)-333(cz)-1(ego)-334(n)1(ie)-334(p)1(rze)-1(p)-27(om)-1(n)1(ia\\252a.)]TJ 27.879 -13.549 Td[(Ale)-433(ni)1(e)-1(,)-432(w)-1(sz)-1(y)1(s)-1(tk)28(o)-432(m)-1(ia\\252a)-432(p)-28(otr)1(z)-1(ebn)1(e)-434({)-432(gromnic\\246)-433(nies)-1(\\252a)-433(z)-433(sob\\241,)-432(c)-1(o)-433(j)1(\\241)-433(ano)]TJ -27.879 -13.55 Td[(wypr)1(os)-1(i)1(\\252)-1(a)-410(s)-1(tr)1(\\363\\273)-1(u)1(j\\241c)-411(jak)1(ie)-1(go\\261)-411(u)1(m)-1(ar)1(lak)56(a,)-411(i)-411(b)1(utelec)-1(zk)28(\\246)-411(z)-411(w)27(o)-28(d)1(\\241)-411(\\261w)-1(i)1(\\246)-1(con\\241)-411(mia\\252a,)-410(i)]TJ 0 -13.549 Td[(no)28(w)28(e)-460(krop)1(id\\252o)-460(k)1(upi)1(\\252)-1(a,)-459(i)-460(ob)1(razik)-460(p)-27(o\\261w)-1(i)1(\\246)-1(can)28(y)-460(Cz\\246)-1(sto)-28(c)27(h)1(o)28(w)-1(skiej,)-459(jak)1(i)-460(m)27(u)1(s)-1(i)-459(m)-1(i)1(e)-1(\\242)]TJ 0 -13.549 Td[(w)-409(r\\246ku)-408(w)-409(s)-1(k)28(on)1(ani)1(a)-409(go)-28(dzin)1(ie)-1(,)-408(i)-409(t)1(e)-410(k)1(ilk)56(adzies)-1(i\\241t)-408(z)-1(\\252ot)28(yc)28(h)-409(n)1(a)-409(p)-27(o)-28(c)27(h)1(o)28(w)27(ek...)-408(a)-409(mo\\273)-1(e)]TJ 0 -13.549 Td[(i)-395(s)-1(tar)1(c)-1(zy)-396(n)1(a)-396(msz)-1(\\246)-396(\\261wi\\246)-1(t\\241)-395(pr)1(z)-1(y)-395(tru)1(m)-1(n)1(ie,)-396(ze)-396(\\261)-1(wiat)1(\\252)-1(em)-396(i)-395(p)-28(ok)1(ropi)1(e)-1(n)1(ie)-1(m)-395(c)27(ho)-27(\\242)-1(b)28(y)-395(w)]TJ 0 -13.549 Td[(kr)1(uc)27(h)1(c)-1(i)1(e)-1(!)-333(Ju\\261ci,)-333(\\273)-1(e)-334(i)-333(m)28(y\\261le)-1(\\242)-333(nie)-334(\\261mia\\252a,)-333(b)28(y)-333(j\\241)-333(ksi\\241dz)-334(eksp)-28(or)1(to)28(w)27(a\\252)-333(na)-333(c)-1(men)28(tarz.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ieb)28(y)-319(z)-1(a\\261)-320(to)-320(mog\\252o)-320(b)28(y)1(\\242)-1(!.)1(..)-320(Nie)-320(k)56(a\\273den)-320(gosp)-28(o)-27(darz)-320(d)1(os)-1(t\\246pu)1(je)-320(taki)1(e)-1(go)-320(h)1(o-)]TJ -27.879 -13.55 Td[(nor)1(u)-285(i)-285(s)-1(zcz)-1(\\246\\261)-1(cia,)-285(a)-285(przy)-285(t)28(ym)-285(i)-285(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-285(p)1(ie)-1(n)1(i\\246dzy)-285(na)-285(to)-285(jedn)1(o)-286(b)28(y)-285(n)1(ie)-286(starczy\\252o!)]TJ 27.879 -13.549 Td[(W)84(e)-1(stc)27(h)1(n\\246\\252)-1(a)-333(\\273a\\252)-1(o\\261ni)1(e)-334(p)-27(o)-28(dn)1(os)-1(z\\241c)-334(si\\246)-334(na)-333(n)1(ogi.)]TJ 0 -13.549 Td[(Dziwnie)-284(j)1(e)-1(d)1(nak)-283(zas)-1(\\252ab\\252a,)-283(k\\252u)1(\\252)-1(o)-283(j\\241)-283(w)-284(p)1(ie)-1(r)1(s)-1(iac)28(h,)-283(k)56(as)-1(ze)-1(l)-283(m\\246)-1(cz)-1(y)1(\\252)-1(,)-283(\\273e)-284(ledwie)-284(si\\246)]TJ -27.879 -13.549 Td[(mog\\252a)-334(r)1(uc)27(h)1(a\\242)-1(,)-333(o)-28(d)1(p)-28(o)-27(c)-1(zyw)28(a)-56(j\\241c)-333(c)-1(o)-333(c)27(h)28(wil)1(a.)]TJ 27.879 -13.549 Td[({)-232(\\233e)-1(b)29(y)-232(c)27(ho)-27(\\242)-233(d)1(o)-233(sian)1(ok)28(os)-1(\\363)28(w)-232(do)-28(ci\\241)-28(gn)1(\\241\\242)-233(alb)-27(o)-232(i)-232(d)1(o)-233(\\273ni)1(w)-233(p)1(ierws)-1(zyc)27(h)-231({)-232(m)-1(ar)1(z)-1(y\\252a,)]TJ -27.879 -13.55 Td[(s\\252)-1(o)-27(dk)28(o)-333(pr)1(z)-1(ywiera)-55(j\\241c)-334(o)-28(czym)-1(a)-333(d)1(o)-334(c)28(ha\\252up)-333(coraz)-334(b)1(li\\273s)-1(zyc)28(h.)]TJ 27.879 -13.549 Td[({)-393(A)-393(p)-27(otem)-393(ju)1(\\273)-394(si\\246)-393(p)-28(o\\252o\\273\\246)-393(i)-393(zam)-1(r)1(\\246)-394(ci,)-392(Je)-1(zu)-393(k)28(o)-27(c)27(han)29(y)83(,)-392(z)-1(amr\\246...)-392({)-393(jakb)29(y)-393(si\\246)]TJ -27.879 -13.549 Td[(t\\252umacz)-1(y\\252a)-333(l\\246kliwie)-333(z)-334(t)28(yc)27(h)-333(gr)1(z)-1(es)-1(zn)28(yc)28(h)-333(nad)1(z)-1(iei.)]TJ 27.879 -13.549 Td[(Ale)-322(wraz)-322(spad)1(\\252a)-322(na)-321(ni)1(\\241)-322(trosk)56(a:)-322(k)1(to)-322(to)-321(j\\241)-321(przyj)1(m)-1(ie)-322(d)1(o)-322(c)28(ha\\252up)29(y)-322(n)1(a)-322(ten)-321(c)-1(zas)]TJ -27.879 -13.549 Td[(sk)28(onani)1(a?)]TJ 27.879 -13.55 Td[({)-263(P)28(os)-1(zuk)56(am)-264(se)-264(d)1(obry)1(c)27(h)-263(i)-263(cz)-1(u)1(j\\241cyc)27(h)-263(lu)1(dzi,)-263(a)-263(m)-1(o\\273e)-264(i)-263(jak)1(i)-264(gr)1(os)-1(z)-264(p)1(rzy)28(obiecam)-1(,)]TJ -27.879 -13.549 Td[(to)-333(si\\246)-333(\\252ac)-1(n)1(ie)-1(j)-332(zgo)-28(dz\\241...)-332(Ju\\261c)-1(i)1(!)-333(k)28(om)27(u)-332(ta)-333(n)1(iew)27(ola)-332(k\\252op)-28(ot)1(a)-1(\\242)-333(si\\246)-333(c)-1(u)1(dzymi,)-333(a)-332(c)27(ha\\252u)1(p)-28(\\246)]TJ 0 -13.549 Td[(sobie)-334(mierzi\\242)-1(.)]TJ 27.879 -13.549 Td[(Ab)28(y)-280(si\\246)-281(to)-280(mog\\252o)-280(s)-1(ta\\242)-280(u)-280(K\\252\\246)-1(b)-27(\\363)28(w,)-280(krewniak)28(\\363)28(w,)-280(na)28(w)27(et)-280(p)-27(om)27(y\\261le\\242)-281(ni)1(e)-281(\\261)-1(mia\\252a.)]TJ 0 -13.549 Td[({)-293(T)27(yl)1(ac)27(hn)1(a)-293(dzie)-1(ci,)-293(w)-293(c)27(ha\\252u)1(pie)-293(c)-1(iasno,)-293(a)-293(to)-293(i)-293(dr)1(\\363b)-293(te)-1(r)1(az)-294(si\\246)-294(l\\246gni)1(e)-294(i)-293(trza)-293(m)27(u)]TJ -27.879 -13.55 Td[(mie)-1(j)1(s)-1(ca,)-261(i)-261(n)1(iehonor)-260(b)28(y\\252b)28(y)-261(d)1(la)-261(taki)1(c)27(h)-261(gosp)-27(o)-28(dar)1(z)-1(y)84(,)-261(b)28(y)-261(p)-27(o)-28(d)-260(ic)27(h)-260(dac)27(h)1(e)-1(m)-261(kr)1(e)-1(wni)1(ac)27(kie)]TJ 0 -13.549 Td[(dziad)1(\\363)27(wki)-333(p)-27(omie)-1(r)1(a\\252y)83(..)1(.)]TJ 27.879 -13.549 Td[(Roz)-1(m)28(y\\261la\\252a)-395(b)-28(ez)-395(\\273)-1(alu)-394(w)27(c)28(ho)-28(d)1(z)-1(\\241c)-395(na)-395(d)1(rog\\246)-395(biegn\\241c\\241)-395(p)-27(o)-395(grob)1(li)-395(wyni)1(e)-1(sionej)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co,)-333(b)28(y)-333(c)27(hr)1(oni\\242)-333(s)-1(ta)28(w)-333(o)-28(d)-333(wylew)27(\\363)28(w)-334(n)1(a)-333(niskie)-334(\\252\\241ki)-333(a)-333(k)56(apu)1(\\261)-1(n)1(is)-1(k)56(a.)]TJ 27.879 -13.549 Td[(M\\252yn)-355(s)-1(t)1(o)-56(ja\\252)-356(p)-27(ob)-27(ok)-356(grob)1(li,)-356(j)1(e)-1(n)1(o)-356(tak)-356(ni)1(s)-1(k)28(o,)-356(\\273e)-357(om\\241cz)-1(on)1(e)-357(d)1(ac)27(h)28(y)-356(wysta)28(w)27(a\\252y)]TJ -27.879 -13.55 Td[(ni)1(e)-1(co)-334(n)1(ad)-333(dr)1(og\\241,)-333(trz\\241s)-1(\\252)-333(s)-1(i\\246)-333(c)-1(a\\252y)-333(i)-333(z)-334(g\\252uc)28(h)28(ym)-334(\\252osk)28(otem)-334(pr)1(ac)-1(o)28(w)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[(A)-277(z)-277(l)1(e)-1(w)28(a)-277(sta)27(w)-276(\\261)-1(wiec)-1(i\\252)-276(s)-1(i\\246)-277(an)1(o,)-277(s\\252o\\253ce)-277(wle)-1(k)1(\\252)-1(o)-276(s)-1(i)1(\\246)-278(z\\252ot)28(ymi)-277(w\\252os)-1(ami)-276(p)-28(o)-276(c)-1(ic)28(hej,)]TJ -27.879 -13.549 Td[(rozmo)-28(dr)1(z)-1(onej)-313(o)-28(d)-313(nieba)-313(w)27(o)-28(d)1(z)-1(ie,)-314(n)1(a)-314(b)1(rz)-1(egac)27(h)1(,)-314(ob)1(ros\\252)-1(y)1(c)27(h)-313(przyc)28(h)28(ylon)28(y)1(m)-1(i)-313(olc)27(h)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(trzepa\\252y)-282(si\\246)-282(z)-283(k)1(rz)-1(y)1(kiem)-283(g\\246si,)-282(n)1(a)-282(drogac)28(h)-282(za\\261)-1(,)-281(jes)-1(zc)-1(ze)-282(niec)-1(o)-281(b\\252otn)28(yc)28(h,)-281(dzie)-1(ci)-282(p)1(rze)-1(-)]TJ 0 -13.549 Td[(gani)1(a\\252y)-334(stadami)-333(p)-27(okrzyku)1(j\\241c)-334(z)-333(ucie)-1(c)28(h)28(y)83(.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-400(ano)-399(s)-1(iedzia\\252y)-400(z)-400(obu)-399(s)-1(t)1(ron)-400(sta)28(wu)-400(j)1(ak)-400(pr)1(z)-1(\\363)-28(d)1(z)-1(i)1(,)-400(jak)-399(z)-1(a)28(wdy)-400(c)28(h)28(yb)1(a)-400(o)-28(d)]TJ -27.879 -13.55 Td[(p)-27(o)-28(c)-1(z\\241tku)-333(\\261wiata,)-333(c)-1(a\\252e)-333(w)-334(sadac)27(h)-333(r)1(oz)-1(r)1(os)-1(\\252yc)28(h)-333(a)-334(w)-333(op\\252otk)56(ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Agata)-387(wle)-1(k)1(\\252)-1(a)-387(si\\246)-388(z)-388(t)1(rud)1(e)-1(m,)-387(c)27(h)28(y)1(\\273)-1(o)-387(jeno)-387(b)1(ie)-1(ga)-55(j\\241c)-388(o)-27(c)-1(zyma,)-387(a)-388(wsz)-1(ystk)28(o)-387(wi-)]TJ -27.879 -13.549 Td[(dz\\241c.)-371(W)-370(m\\252)-1(y)1(narzo)28(wym)-371(dom)28(u,)-370(c)-1(o)-370(sta\\252)-371(o)-28(d)1(s)-1(u)1(ni\\246t)28(y)-371(o)-27(d)-370(drogi)1(,)-371(a)-370(p)-28(o)-27(dobi)1(e)-1(n)-370(si\\246)-371(zda\\252)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242b)28(y)-376(i)-376(d)1(o)-376(d)1(w)27(ora)-375(jakiego,)-376(p)1(rze)-1(z)-376(wyw)27(ar)1(te)-376(okna)-376(p)-27(o)28(wie)-1(w)28(a\\252y)-376(b)1(ia\\252e)-377(\\014)1(ran)1(ki,)-376(a)-375(s)-1(a-)]TJ 0 -13.549 Td[(ma)-453(m\\252ynar)1(z)-1(o)28(w)28(a)-453(siedzia\\252a)-453(p)1(rze)-1(d)-452(p)1(rogiem)-453(w)-452(p)-28(o\\261ro)-28(d)1(ku)-452(p)1(is)-1(k)1(liw)27(ego)-452(s)-1(tad)1(a)-453(g\\246si\\241t)]TJ 0 -13.55 Td[(\\273\\363\\252)-1(ciu)1(c)27(hn)29(yc)27(h)-333(ki)1(e)-1(j)-333(z)-333(w)27(osku,)-333(kt)1(\\363re)-334(p)1(rz)-1(y)1(garni)1(a\\252)-1(a.)]TJ 27.879 -13.549 Td[(P)28(o)-28(c)28(h)28(w)28(ali\\252a)-359(stara)-359(Boga)-359(i)-358(pr)1(z)-1(es)-1(z\\252a)-359(cic)27(h)1(o,)-359(rad)1(a,)-359(\\273e)-359(jej)-359(n)1(ie)-359(p)-27(o)-28(c)-1(zu\\252y)-358(psy)83(,)-358(wy-)]TJ\nET\nendstream\nendobj\n1160 0 obj <<\n/Type /Page\n/Contents 1161 0 R\n/Resources 1159 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1159 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1165 0 obj <<\n/Length 8845      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(362)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(lega)-56(j)1(\\241c)-1(e)-334(si\\246)-334(p)-27(o)-28(d)-333(\\261cianami.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(z\\252a)-431(m)-1(ost,)-431(p)-27(o)-28(d)-431(kt\\363r)1(ym)-432(w)28(o)-28(da)-431(z)-432(h)29(ukiem)-432(p)1(rze)-1(w)28(ala\\252a)-431(s)-1(i\\246)-431(na)-431(m)-1(\\252y\\253)1(s)-1(k)1(ie)]TJ -27.879 -13.549 Td[(k)28(o\\252a;)-333(dr)1(ogi)-334(st\\241d)-333(rozc)27(h)1(o)-28(dzi\\252y)-333(si\\246)-334(kiej)-333(r\\246ce)-334(ogarn)1(ia)-56(j)1(\\241c)-1(e)-334(ca\\252y)-333(s)-1(ta)28(w.)]TJ 27.879 -13.549 Td[(Koleba\\252a)-383(si\\246)-384(w)-383(s)-1(ob)1(ie)-384(p)1(rze)-1(z)-384(c)28(h)28(wil\\246,)-383(ale)-384(c)28(h\\246\\242)-384(ob)-27(e)-1(j)1(rz)-1(eni)1(a)-384(wsz)-1(y)1(s)-1(tki)1(e)-1(go)-383(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(mog\\252a)-334(i)-333(wz)-1(i)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(na)-333(lew)27(o,)-333(d\\252u)1(\\273)-1(sz)-1(\\241)-333(n)1(ie)-1(co)-333(drog\\241.)]TJ 27.879 -13.55 Td[(Ku)1(\\271)-1(n)1(ia,)-395(sto)-55(j\\241ca)-395(pi)1(e)-1(rwsz)-1(a)-394(z)-1(ar)1(az)-395(z)-396(b)1(rze)-1(ga,)-394(b)28(y\\252a)-394(z)-1(amkni)1(\\246)-1(ta)-394(i)-395(g\\252u)1(c)27(ha;)-394(jak)1(i\\261)]TJ -27.879 -13.549 Td[(pr)1(z)-1(o)-27(dek)-309(o)-28(d)-309(w)28(oz)-1(u)-308(i)-309(ni)1(e)-1(co\\261)-310(zardzew)-1(i)1(a\\252)-1(y)1(c)27(h)-309(p)1(\\252ug\\363)28(w)-309(le)-1(\\273a\\252o)-309(p)-28(o)-27(d)-309(\\261c)-1(ian)1(am)-1(i)-308(ok)28(op)-28(con)28(y-)]TJ 0 -13.549 Td[(mi,)-300(ale)-300(k)28(o)27(w)28(ala)-300(ani)-300(wid)1(u,)-300(j)1(e)-1(n)1(o)-300(k)28(o)27(w)28(alo)28(w)28(a,)-300(roz)-1(d)1(z)-1(i)1(ana)-300(do)-300(k)28(osz)-1(u)1(li,)-300(k)28(op)1(a\\252a)-301(gr)1(z)-1(\\241d)1(ki)-300(w)]TJ 0 -13.549 Td[(sadzie)-334(wz)-1(d)1(\\252u\\273)-334(d)1(rogi.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-1(a)-402(teraz)-402(pr)1(z)-1(ed)-402(k)56(a\\273)-1(d)1(\\241)-402(c)27(h)1(a\\252)-1(u)1(p\\241)-402(wspiera)-55(j\\241c)-402(s)-1(i\\246)-402(o)-402(niskie,)-402(k)56(amie)-1(n)1(-)]TJ -27.879 -13.549 Td[(ne)-378(p)1(\\252)-1(ot)28(y)-377(i)-378(pr)1(z)-1(egl\\241da)-55(j\\241c)-378(c)-1(i)1(e)-1(k)56(a)28(w)-1(i)1(e)-379(ob)-27(ej\\261c)-1(ia,)-377(op\\252otki,)-377(w)-1(y)1(w)27(ar)1(te)-379(sienie)-378(i)-378(okn)1(a.)-378(P)1(s)-1(y)84(,)]TJ 0 -13.55 Td[(uj)1(ada\\252y)-431(na)-432(n)1(i\\241)-432(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)-431(ale)-433(ob)29(w)27(\\241c)28(ha)28(ws)-1(zy)-432(i)-432(j)1(akb)28(y)-431(s)-1(n)1(ad\\271)-432(p)-28(ozna)-55(j\\241c)-432(sw)27(o)-55(jacz)-1(k)28(\\246,)]TJ 0 -13.549 Td[(wraca\\252y)-334(l)1(e)-1(ga\\242)-334(n)1(a)-333(przyzb)28(y)-333(w)-334(s\\252o\\253ce)-1(.)]TJ 27.879 -13.549 Td[(A)-371(on)1(a)-371(c)-1(i)-371(teraz)-371(s)-1(z\\252a)-371(w)27(ol)1(niu)1(\\261)-1(k)28(o,)-371(k)1(rok)-371(za)-371(krok)1(ie)-1(m,)-371(ledwie)-371(dy)1(c)27(ha)-55(j\\241c)-371(z)-372(u)1(tru)1(-)]TJ -27.879 -13.549 Td[(dzenia,)-333(a)-333(bar)1(z)-1(ej)-333(i)-333(z)-334(uciec)27(h)28(y)-333(se)-1(rd)1(e)-1(cznej.)]TJ 27.879 -13.549 Td[(Su)1(n\\246\\252a)-401(s)-1(i)1(\\246)-402(t)1(ak)-401(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-401(j)1(ak)28(o)-401(ten)-401(wiater,)-400(kt\\363ren)-401(r)1(az)-402(p)-27(o)-401(r)1(az)-402(p)-27(o)28(w)-1(i)1(e)-1(w)28(a\\252)-401(p)-28(o)]TJ -27.879 -13.55 Td[(sta)27(wie)-421(i)-421(gme)-1(r)1(a\\252)-421(w)-421(rud)1(yc)27(h)-420(baziac)27(h)-420(olc)27(h)1(,)-421(a)-421(sz)-1(ara)-420(b)28(y\\252a)-421(i)-421(n)1(ie)-1(wid)1(na)-421(ki)1(e)-1(j)-420(te)-422(p)1(\\252ot)28(y)]TJ 0 -13.549 Td[(alb)-27(o)-360(ta)-360(ziem)-1(ia,)-359(m)-1(i)1(e)-1(j)1(s)-1(cam)-1(i)-359(ju)1(\\273)-361(p)1(rze)-1(syc)27(h)1(a)-56(j)1(\\241c)-1(a,)-359(ab)-28(o)-360(za\\261)-360(kieb)28(y)-360(ten)-360(c)28(h)28(ud)1(y)-360(cie)-1(\\253)1(,)-360(o)-28(d)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)-334(n)1(agic)27(h)-333(p)1(ada)-55(j\\241cy)-333(na)-333(z)-1(iemi\\246)-1(,)-333(\\273e)-334(j)1(akb)28(y)-333(jej)-333(ni)1(kto)-333(i)-334(n)1(ie)-334(sp)-27(os)-1(tr)1(z)-1(ega\\252.)]TJ 27.879 -13.549 Td[(A)-389(r)1(ado)28(w)28(a\\252)-1(a)-388(s)-1(i)1(\\246)-389(c)-1(a\\252ym)-389(se)-1(r)1(c)-1(em,)-389(\\273e)-389(w)-1(szys)-1(tk)28(o)-388(tak)-388(z)-1(n)1(a)-56(jd)1(uj)1(e)-1(,)-388(jak)28(o)-388(i)-389(b)29(y\\252a)-389(zo-)]TJ -27.879 -13.549 Td[(sta)27(wi\\252a)-333(jesie)-1(n)1(i\\241.)]TJ 27.879 -13.55 Td[(\\221n)1(iad)1(ania)-446(m)28(usieli)-446(w)28(arzy\\242,)-446(b)-27(o)-446(ku)1(rzy\\252o)-446(s)-1(i)1(\\246)-447(z)-446(k)28(omin)1(\\363)27(w,)-445(a)-446(gdzieniegdzie)-446(z)]TJ -27.879 -13.549 Td[(wyw)28(art)28(yc)27(h)-333(ok)1(ie)-1(n)-333(b)1(uc)28(ha\\252y)-333(z)-1(ap)1(ac)27(h)28(y)-333(goto)28(w)28(an)28(yc)28(h)-333(z)-1(iemniak)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(Cho)-28(\\242)-332(t)1(o)-332(i)-331(dzie)-1(ci)-331(krzyk)56(a\\252y)-332(tu)-331(i)-331(o)28(wdzie)-332(ab)-28(o)-331(i)-331(g\\246)-1(si)-332(str\\363\\273uj)1(\\241c)-1(e)-332(p)1(rzy)-332(g\\241si\\246tac)27(h)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(y)-333(cz)-1(\\246sto)-334(strw)28(o\\273)-1(on)1(e)-334(g\\246got)27(y)84(,)-333(a)-333(dziwnie)-334(cic)27(h)1(o)-333(i)-334(p)1(usto)-333(b)28(y\\252o)-333(w)27(e)-334(wsi.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-374(si\\246)-375(j)1(u\\273)-374(an)1(o)-374(p)-28(o)-27(dni)1(e)-1(s\\252o)-374(na)-374(p)-27(\\363\\252)-374(dr)1(ogi)-374(d)1(o)-374(p)-28(o\\252u)1(dn)1(ia)-374(i)-374(sia\\252o)-374(ki)1(e)-1(b)28(y)-373(t)28(ym)]TJ -27.879 -13.55 Td[(sz)-1(cz)-1(erym)-380(z\\252ote)-1(m,)-379(i)-380(j)1(\\246)-1(\\252o)-379(s)-1(i\\246)-380(p)1(rze)-1(gl\\241d)1(a\\242)-380(w)-380(s)-1(ta)28(wie,)-380(a)-379(nik)1(to)-380(si\\246)-380(jes)-1(zc)-1(ze)-380(ni)1(e)-380(kw)27(ap)1(i\\252)]TJ 0 -13.549 Td[(w)-302(p)-27(ole)-1(,)-301(\\273)-1(ad)1(e)-1(n)-301(w)28(\\363z)-303(n)1(ie)-302(tur)1(k)28(ota\\252)-302(z)-302(op\\252otk)28(\\363)28(w)-302(ni)-301(p)-27(o)-1(skr)1(z)-1(yp)1(iw)28(a\\252)-1(y)-301(p\\252u)1(gi,)-302(ci\\241)-28(gn)1(i\\246te)-303(n)1(a)]TJ 0 -13.549 Td[(rol)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-386(Na)-387(j)1(armarek)-386(m)27(u)1(s)-1(ia\\252y)-386(p)-27(o)-56(j)1(e)-1(c)28(ha\\242)-387(ab)-27(o)-386(c)-1(o?)-386({)-387(m)28(y\\261la\\252a,)-386(bacz)-1(n)1(ie)-1(j)-385(s)-1(i\\246)-386(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(rozgl\\241d)1(a)-56(j\\241c)-333(p)-28(o)-333(c)27(h)1(a\\252upac)28(h.)]TJ 27.879 -13.55 Td[(W)84(\\363)-56(jt)1(o)27(w)28(e)-342(s)-1(to)-28(d)1(o\\252y)-342(\\273\\363\\252)-1(ci\\252y)-342(si\\246)-342(no)28(wym)-342(dr)1(z)-1(ew)27(em)-342(s)-1(p)-27(o\\261)-1(r)1(\\363)-28(d)-342(sad\\363)28(w)-342(b)-27(e)-1(zlistn)28(yc)28(h,)]TJ -27.879 -13.549 Td[(a)-430(Gul)1(baso)27(w)28(a)-430(c)27(ha\\252u)1(pa,)-430(ob)-27(ok)-430(s)-1(to)-55(j\\241ca,)-430(m)-1(ia\\252a)-430(ob)-27(e)-1(r)1(w)27(an)1(e)-431(p)-28(oszyc)-1(i)1(e)-1(,)-430(\\273e)-431(\\252at)28(y)-431(d)1(ac)27(h)28(u)]TJ 0 -13.549 Td[(wida\\242)-333(b)28(y\\252o)-333(kiej)-333(te)-334(\\273e)-1(b)1(ra)-333(nagie.)]TJ 27.879 -13.549 Td[({)-333(Wiatr)1(y)-334(zerw)27(a\\252y)84(,)-333(ale)-334(w)28(a\\252k)28(onio)28(wi)-333(nie)-333(c)27(hcia\\252o)-333(s)-1(i\\246)-333(napr)1(a)28(w)-1(i)1(\\242)-1(!)-333({)-333(m)-1(r)1(ucz)-1(a\\252a.)]TJ 0 -13.549 Td[(Wp)-27(o)-28(d)1(le)-353(z)-1(a\\261)-353(P)1(rycz)-1(ki)-352(sie)-1(d)1(z)-1(i)1(a\\252)-1(y)-352(w)-353(starej)-353(p)-27(okr)1(z)-1(ywion)1(e)-1(j)-352(c)27(h)1(a\\252up)1(ini)1(e)-1(,)-352(p)-28(o)28(wyb)1(i-)]TJ -27.879 -13.549 Td[(jan)29(yc)27(h)-333(sz)-1(y)1(b)-333(wyz)-1(iera\\252y)-333(s\\252om)-1(ian)1(e)-334(wiec)27(hcie.)]TJ 27.879 -13.55 Td[(A)-333(oto)-334(i)-333(so\\252t)28(ys)-1(o)28(w)28(a)-334(c)28(ha\\252up)1(a,)-333(s)-1(zc)-1(zytem)-334(d)1(o)-334(d)1(rogi,)-333(n)1(a)-334(star\\241)-333(mo)-28(d\\246.)]TJ 0 -13.549 Td[(Za)-333(nim)-333(te)-1(\\273)-334(P)1(\\252os)-1(zk)28(\\363)28(w)-334(dom,)-333(na)-333(d)1(w)-1(i)1(e)-334(s)-1(tr)1(on)28(y)-333(z)-1(amies)-1(zk)56(an)28(y)83(.)]TJ 0 -13.549 Td[(P)28(otem)-490(Ba)-1(l)1(c)-1(erk)28(\\363)28(w)-490(p)-27(os)-1(iedzenie;)-490(p)-27(oz)-1(n)1(a\\252ab)28(y)-490(n)1(ie)-490(wiem)-490(g)-1(d)1(z)-1(i)1(e)-1(,)-489(b)-28(o)-489(dom)-490(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(znacz)-1(n)28(y)84(,)-419(\\273)-1(e)-420(t)1(o)-420(d)1(z)-1(ieuc)28(h)28(y)-419(p)-27(opstrzy\\252y)-420(w)28(apn)1(e)-1(m)-419(s)-1(zare)-420(\\261cian)28(y)-419(i)-419(p)-28(of)1(arb)-27(o)28(w)27(a\\252y)-419(ram)28(y)]TJ 0 -13.549 Td[(okien)-333(n)1(a)-334(n)1(ie)-1(b)1(ies)-1(k)28(o.)]TJ 27.879 -13.55 Td[(A)-427(tam)-428(zn\\363)28(w,)-428(w)-427(s)-1(ze)-1(r)1(okim,)-427(s)-1(tar)1(ym)-428(sadzie)-428(rozs)-1(i)1(ad\\252y)-427(s)-1(i)1(\\246)-428(B)-1(or)1(yn)28(y)84(,)-428(p)1(ierws)-1(ze)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(arze)-467(i)-467(b)-27(ogacz)-1(e)-467(li)1(p)-28(ec)27(ki)1(e)-1(.)-466(S\\252o\\253ce)-467(jeno)-466(gra\\252o)-466(w)-467(c)-1(zyst)27(y)1(c)27(h)-466(s)-1(zyb)1(ac)27(h;)-466(\\261c)-1(ian)29(y)]TJ\nET\nendstream\nendobj\n1164 0 obj <<\n/Type /Page\n/Contents 1165 0 R\n/Resources 1163 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1163 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1168 0 obj <<\n/Length 8838      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(363)]TJ -358.232 -35.866 Td[(ja\\261ni)1(a\\252y)-399(jakb)29(y)-399(z)-399(no)28(w)27(a)-398(p)-28(ob)1(ie)-1(l)1(one;)-399(ob)-27(e)-1(j)1(\\261)-1(cie)-399(b)28(y\\252o)-399(obsze)-1(rn)1(e)-1(,)-398(bu)1(dyn)1(ki)-399(w)-399(rz\\241d)-398(s)-1(ta-)]TJ 0 -13.549 Td[(wiane,)-325(a)-325(p)1(roste)-326(i)-324(tak)-325(galan)28(t)1(e)-1(,)-325(\\273e)-325(niejeden)-325(i)-324(c)27(ha\\252u)1(p)28(y)-325(taki)1(e)-1(j)-324(nie)-325(mia\\252,)-325(p\\252ot)28(y)-324(c)-1(a\\252e)-325(i)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-353(w)-354(tak)1(im)-354(p)-27(orz\\241dku)1(,)-353(kieb)28(y)-353(u)-353(j)1(akiego)-353(Olend)1(ra)-353(na)-353(k)28(olon)1(iac)27(h)-352(a)-354(l)1(e)-1(p)1(ie)-1(j)-352(nie)]TJ 0 -13.549 Td[(b)28(y\\252o.)]TJ 27.879 -13.549 Td[(A)-333(dalej)-333(dom)-333(Go\\252\\246)-1(b)1(i\\363)28(w.)]TJ 0 -13.55 Td[(I)-281(i)1(nsz)-1(yc)28(h,)-280(kt\\363r)1(e)-281(w)-1(szys)-1(tk)1(ie)-281(jak)28(o)-280(ten)-280(pacie)-1(r)1(z)-281(na)-280(pami\\246\\242)-281(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a.)-280(Ale)-281(wsz)-1(\\246-)]TJ -27.879 -13.549 Td[(dy)-323(jedn)1(ak)28(o)-324(b)28(y\\252o)-324(c)-1(i)1(c)27(ho)-324(i)-323(pusto,)-324(j)1(e)-1(n)1(o)-324(w)-324(s)-1(ad)1(ac)27(h)-324(cz)-1(erwieni)1(\\252)-1(y)-323(s)-1(i\\246)-324(p)-27(o\\261)-1(ciele)-325(wietrzone)]TJ 0 -13.549 Td[(i)-317(r\\363\\273)-1(n)29(y)-318(p)1(rz)-1(y)28(o)-27(dzie)-1(w)28(ek,)-318(a)-317(jeno)-318(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-319(u)29(w)-1(i)1(ja\\252y)-317(s)-1(i\\246)-318(p)-27(orozdzie)-1(w)28(ane)-318(d)1(o)-318(k)28(osz)-1(u)1(l)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)-333(pr)1(z)-1(y)-333(k)28(op)1(aniu)-333(gr)1(z)-1(\\241d)1(e)-1(k.)]TJ 27.879 -13.549 Td[(W)-343(z)-1(acisz)-1(n)29(yc)27(h)-343(miejsc)-1(ac)28(h)-343(s)-1(ad)1(\\363)28(w)-344(k)56(apu)1(\\261)-1(ciane)-343(w)-1(y)1(s)-1(ad)1(ki)-343(ju)1(\\273)-344(pu)1(s)-1(zcz)-1(a\\252y)-343(z)-1(i)1(e)-1(lon)1(e)]TJ -27.879 -13.549 Td[(w)28(ark)28(o)-28(cz)-1(e)-470(z)-469(ogni\\252yc)28(h)-469(\\252b)-28(\\363)28(w,)-469(to)-470(za\\261)-470(p)-27(o)-28(d)-469(\\261c)-1(ian)1(ami)-470(on)1(e)-470(lil)1(ije)-470(wyr)1(as)-1(ta\\252y)-469(z)-470(sz)-1(ar)1(e)-1(j)]TJ 0 -13.55 Td[(zie)-1(mie)-337(blad)1(ymi)-337(k\\252ami,)-337(rozs)-1(ad)1(y)-337(ws)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252y)-337(p)-28(o)-27(d)-337(pr)1(z)-1(y)1(kryw)28(\\241)-337(tarn)1(io)28(w)-1(y)1(c)27(h)-337(ga\\252\\241ze)-1(k)1(,)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a)-330(s)-1(ta\\252y)-330(w)-331(nab)1(rz)-1(mia\\252yc)28(h,)-330(le)-1(p)1(kic)28(h)-331(p)1(\\241k)56(ac)27(h,)-330(a)-331(ws)-1(z\\246dzie)-331(p)-28(o)-28(d)-330(p)1(\\252otam)-1(i)-330(bu)1(rzy\\252y)]TJ 0 -13.549 Td[(si\\246)-258(p)-27(okr)1(z)-1(ywy)-257(i)-256(c)27(h)28(w)28(as)-1(t)28(y)-257(r)1(\\363\\273)-1(n)1(e)-1(,)-257(i)-256(krze)-258(agr)1(e)-1(sto)28(w)27(e)-257(ob)28(wiane)-257(b)28(y\\252y)-256(jasn\\241,)-257(m\\252o)-28(dziu)1(c)27(hn)1(\\241)]TJ 0 -13.549 Td[(zie)-1(l)1(e)-1(n)1(i\\241.)]TJ 27.879 -13.549 Td[(A)-260(c)27(h)1(o)-28(\\242)-261(to)-260(i)-260(n)1(a)-56(j)1(pra)28(wdziws)-1(za)-260(z)-1(wies)-1(n)1(a)-260(s)-1(ia\\252a)-260(si\\246)-261(p)1(rosto)-261(z)-260(nieba)-260(i)-260(t\\246tn)1(i\\241c)-1(a)-260(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(w)-282(k)56(a\\273)-1(d)1(e)-1(j)-281(gru)1(dce)-283(ziem)-1(i)-281(nap)-27(\\246)-1(cz)-1(n)1(ia\\252e)-1(j)1(,)-282(a)-282(tak)-281(jak)28(o\\261)-282(s)-1(m)28(utn)1(ie)-282(s)-1(i)1(\\246)-283(wid)1(z)-1(ia\\252o)-281(w)-283(Li)1(p)-28(cac)27(h)1(,)]TJ 0 -13.549 Td[(cic)27(h)1(o)-334(i)-333(d)1(z)-1(iwni)1(e)-334(pu)1(s)-1(to.)]TJ 27.879 -13.549 Td[({)-374(A)-373(c)27(h)1(\\252opa)-374(t)1(o)-374(ni)-373(n)1(a)-374(lek)56(ars)-1(t)28(w)28(o)-374(n)1(igdzie.)-374(Ni)1(c)-1(,)-373(jeno)-373(na)-373(s)-1(\\241d)1(y)-374(p)-27(osz)-1(\\252y)-373(alb)-27(o)-374(na)]TJ -27.879 -13.549 Td[(ze)-1(b)1(rani)1(e)-334(je)-334(zw)27(o\\252a\\252y)84(.)]TJ 27.879 -13.549 Td[(T\\252umac)-1(zy\\252a)-333(tak)-333(s)-1(ob)1(ie)-334(w)28(c)27(ho)-27(dz\\241c)-334(do)-333(k)28(o\\261)-1(cio\\252a)-333(ot)28(w)27(art)1(e)-1(go)-333(na)-333(rozc)-1(i)1(e)-1(\\273.)]TJ 0 -13.55 Td[(P)28(o)-227(msz)-1(y)-226(ju)1(\\273)-228(b)29(y\\252o,)-227(d)1(obro)-27(dzie)-1(j)-226(sp)-28(o)28(wiad)1(a)-1(\\252)-226(w)-227(k)28(onf)1(e)-1(sjon)1(ale)-1(,)-226(kilk)56(an)1(a\\261)-1(cioro)-226(lud)1(z)-1(i)]TJ -27.879 -13.549 Td[(z)-452(d)1(als)-1(zyc)28(h)-451(w)-1(si)-451(s)-1(i)1(e)-1(d)1(z)-1(ia\\252o)-451(w)-452(\\252a)28(wk)56(ac)27(h)-451(w)-451(c)-1(ic)28(ho\\261c)-1(i)-451(a)-451(s)-1(k)1(upi)1(e)-1(n)1(iu,)-451(\\273e)-452(j)1(e)-1(n)1(o)-452(c)28(h)28(wilami)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kie)-333(w)-1(zdyc)28(h)28(y)-333(rw)28(a\\252y)-333(s)-1(i\\246)-333(na)-333(k)28(o\\261)-1(ci\\363\\252)-333(alb)-28(o)-333(to)-333(jaki)1(e)-334(s)-1(\\252o)28(w)28(o)-334(p)1(ac)-1(i)1(e)-1(rza)-333(g\\252o\\261)-1(n)1(ie)-1(j)1(s)-1(ze)-1(.)]TJ 27.879 -13.549 Td[(Od)-337(l)1(am)-1(p)1(ki)-337(p\\252on)1(\\241c)-1(ej,)-337(u)28(wiesz)-1(on)1(e)-1(j)-337(n)1(a)-338(szn)28(ur)1(z)-1(e)-338(p)1(rze)-1(d)-336(w)-1(i)1(e)-1(lk)1(im)-338(o\\252tarzem)-1(,)-337(wle-)]TJ -27.879 -13.549 Td[(k\\252y)-427(s)-1(i\\246)-428(p)1(as)-1(ma)-428(d)1(ym\\363)27(w)-428(n)1(iebies)-1(k)56(a)28(wyc)27(h)-427(ku)-427(wysokim)-428(okn)1(om)-1(,)-427(pr)1(z)-1(ez)-428(kt\\363re)-428(p)1(ada\\252o)]TJ 0 -13.55 Td[(s\\252)-1(o\\253)1(c)-1(e;)-350(z)-1(a)-350(s)-1(zyb)1(am)-1(i)-350(\\242w)-1(i)1(e)-1(rk)56(a\\252y)-350(wr\\363bl)1(e)-351(fru)29(w)27(a)-55(j\\241c)-351(n)1(ie)-1(k)1(ie)-1(d)1(y)-350(p)-28(o)-28(d)-350(n)1(a)28(w)27(ami)-350(z)-1(e)-351(\\271d\\271b\\252a-)]TJ 0 -13.549 Td[(mi)-410(w)-409(dziobac)28(h,)-409(a)-410(cz)-1(ase)-1(m)-409(jask)28(\\363\\252)-1(k)1(i)-410(wp)1(ada\\252y)-409(z)-1(e)-410(\\261wie)-1(gotem)-410(p)1(rz)-1(ez)-410(wielkie)-410(d)1(rzw)-1(i)1(,)]TJ 0 -13.549 Td[(p)-27(ok)28(o\\252o)27(w)28(a\\252y)-306(b\\252\\241d)1(z)-1(\\241co)-306(w)-306(c)-1(ic)28(ho\\261c)-1(i)1(ac)27(h)-306(i)-305(c)27(h\\252o)-28(d)1(ac)27(h)-305(m)27(u)1(r\\363)28(w)-307(i)-305(ucie)-1(k)56(a\\252y)-306(c)28(h)28(y\\273o)-306(na)-306(\\261wiat)]TJ 0 -13.549 Td[(jasn)28(y)84(.)]TJ 27.879 -13.549 Td[(Zm\\363)27(wi\\252a)-346(jeno)-346(kr)1(\\363tki)-346(p)1(a)-1(cierz,)-346(tak)-346(ju)1(\\273)-347(b)28(y\\252o)-346(j)1(e)-1(j)-346(p)1(iln)1(o)-347(d)1(o)-346(K\\252\\246)-1(b)-27(\\363)28(w,)-346(ale)-347(p)1(rz)-1(ed)]TJ -27.879 -13.55 Td[(k)28(o\\261c)-1(io\\252em)-334(zaraz)-334(sp)-28(otk)56(a\\252a)-333(s)-1(i)1(\\246)-334(ok)28(o)-334(w)-333(ok)28(o)-333(z)-334(Jagust)28(ynk)56(\\241.)]TJ 27.879 -13.549 Td[({)-333(Jagata!)-333({)-334(k)1(rz)-1(y)1(kn\\246\\252a)-334(t)1(am)27(ta)-333(z)-334(wydziw)28(e)-1(m)-333(niem)-1(a\\252y)1(m)-1(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(\\273ywie)-334(j)1(e)-1(sz)-1(cz)-1(e,)-333(gos)-1(p)-27(o)-28(d)1(yni)1(!)-334(\\273ywie!)-333({)-334(Ch)1(c)-1(ia\\252a)-333(j\\241)-333(w)-334(r)1(\\246)-1(k)28(\\246)-334(p)-27(o)-28(ca\\252o)28(w)27(a\\242.)]TJ 0 -13.549 Td[({)-421(A)-421(p)-27(o)27(wiedal)1(i,)-421(\\273e)-1(\\261c)-1(i)1(e)-422(ju)1(\\273)-422(n)1(ogi)-421(wyci\\241)-28(gn)1(\\246)-1(li)-421(gd)1(z)-1(i)1(e)-1(sik)-421(w)-421(cie)-1(p)1(\\252yc)27(h)-420(kra)-55(jac)27(h)1(...)]TJ -27.879 -13.549 Td[(Ale)-311(w)27(ama)-311(ten)-310(le)-1(tk)1(i)-311(c)27(h)1(leb)-311(Jez)-1(u)1(s)-1(o)28(wy)-311(n)1(a)-311(z)-1(d)1(ro)28(wie)-311(nie)-311(p)-27(os)-1(ze)-1(d)1(\\252,)-311(b)-27(o)-311(c)-1(o\\261)-311(mi)-311(n)1(a)-311(ksi\\246)-1(\\273\\241)]TJ 0 -13.549 Td[(ob)-27(or\\246)-334(p)1(atrzyc)-1(i)1(e)-1(..)1(.)-334({)-333(m\\363)28(w)-1(i)1(\\252)-1(a,)-333(sz)-1(y)1(dli)1(w)-1(i)1(e)-334(j\\241)-333(rozgl\\241da)-55(j\\241c.)]TJ 27.879 -13.55 Td[({)-251(W)84(as)-1(za)-251(pra)28(wda;)-250(gos)-1(p)-27(o)-28(dy)1(ni.)1(..)-251(a)-251(tom)-251(le)-1(d)1(wie)-252(j)1(u\\273)-251(do)28(wlek\\252a)-251(k)28(os)-1(tec)-1(zki.)1(..)-251(d)1(o)-56(jd)1(\\246)]TJ -27.879 -13.549 Td[(se)-334(ju)1(\\273)-334(p)-27(om)-1(alu)1(\\261)-1(k)1(u)-333(a)-334(wry)1(c)27(hl)1(e)-1(,)-333(d)1(o)-56(jd)1(\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(Do)-334(K)1(\\252\\246)-1(b)-27(\\363)28(w)-334(\\261pies)-1(zycie)-1(?)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(\\273)-334(b)29(ym)-334(to)-333(s)-1(z\\252a?)-334(Kr)1(e)-1(wn)1(iaki)-333(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)1(...)]TJ 0 -13.549 Td[({)-281(R)-1(ad)1(z)-1(i)-281(w)28(as)-282(pr)1(z)-1(yj)1(m)-1(\\241,)-281(tor)1(b)-28(ec)-1(zki)-281(dy)1(gujec)-1(i)1(e)-282(niezgors)-1(ze,)-282(a)-281(jaki)1(\\261)-282(grosz)-282(te)-1(\\273)-282(b)29(y\\242)]TJ -27.879 -13.55 Td[(m)27(u)1(s)-1(i)-333(w)-333(s)-1(u)1(p)-28(e\\252k)56(ac)27(h,)-333(to)-333(ju)1(\\261)-1(ci,)-333(\\273e)-334(c)27(h)1(\\246)-1(tl)1(iwie)-334(pr)1(z)-1(yp)1(usz)-1(cz\\241)-334(w)28(a)-56(j)1(u)-333(do)-333(krewniact)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-333(Zdro)28(wi)-333(b)28(yc)28(h)-333(s)-1(\\241?)-333(nie)-334(wiecie)-1(?)-333({)-334(mark)28(ot)1(ne)-334(j)1(e)-1(j)-333(b)28(y)1(\\252y)-334(t)1(e)-334(pr)1(z)-1(ekpi)1(nki.)]TJ\nET\nendstream\nendobj\n1167 0 obj <<\n/Type /Page\n/Contents 1168 0 R\n/Resources 1166 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1166 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1171 0 obj <<\n/Length 9418      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(364)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-378(Zdr)1(o)28(w)-1(i)1(...)-378(j)1(e)-1(n)1(o)-378(T)83(ome)-1(k,)-377(\\273)-1(e)-378(s)-1(\\252ab)-27(o)28(w)27(a\\252)-378(\\271dzie)-1(b)1(k)28(o,)-378(to)-378(si\\246)-378(te)-1(r)1(az)-379(l)1(e)-1(ku)1(je)-378(w)-378(kre-)]TJ -27.879 -13.549 Td[(minal)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(K\\252\\241b!)-333(T)83(omas)-1(z!)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j)1(c)-1(ie,)-333(b)-28(o)-333(mnie)-333(nie)-333(do)-333(\\261)-1(miec)27(h)28(u)1(!)]TJ 0 -13.549 Td[({)-414(R)-1(zek\\252am)-1(,)-414(a)-414(do\\252o\\273\\246)-1(,)-414(\\273e)-415(nie)-415(sam)-415(siedzi,)-414(a)-415(z)-415(d)1(obr)1(\\241)-415(k)28(ompan)1(i\\241,)-414(b)-28(o)-414(z)-415(ca\\252)-1(\\241)]TJ -27.879 -13.549 Td[(ws)-1(i)1(\\241...)-333(I)-334(morgi)-333(n)1(ie)-334(p)-27(om)-1(og\\241,)-333(k)1(ie)-1(j)-333(s\\241d)-333(p)1(rz)-1(y)1(s)-1(kr)1(z)-1(y)1(bni)1(e)-334(dr)1(z)-1(wiami)-333(a)-334(ok)1(ratuj)1(e)-1(.)]TJ 27.879 -13.55 Td[({)-333(Je)-1(zus)-333(Maria,)-333(J\\363ze\\014e)-334(\\261w)-1(i)1(\\246)-1(t)28(y!)-333({)-333(j\\246kn)1(\\246)-1(\\252a,)-333(jak)28(o)-333(s\\252)-1(u)1(p)-333(s)-1(t)1(a)-56(j\\241c)-333(w)-334(zdu)1(m)-1(ieni)1(u.)]TJ 0 -13.549 Td[({)-372(B)-1(i)1(e)-1(\\273c)-1(ie\\273)-373(ry)1(c)27(hl)1(e)-1(j)-372(d)1(o)-373(T)83(omk)28(o)28(w)27(ej,)-372(to)-372(s)-1(i)1(\\246)-373(tam)-373(n)1(apasie)-1(cie)-373(n)1(o)27(win)1(k)56(am)-1(i)-372(b)1(arz)-1(ej)]TJ -27.879 -13.549 Td[(dr)1(uj)1(kimi)-290(ni\\271li)-290(mi\\363)-28(d)1(.)-291(Hi)1(,)-290(hi!)-290(\\261w)-1(i)1(\\246)-1(tu)1(j\\241)-290(s)-1(e)-290(c)27(h\\252op)29(y)-290(a\\273)-291(m)-1(i)1(\\252o!)-291({)-290(za\\261)-1(mia\\252a)-290(s)-1(i\\246)-290(ur\\241)-27(gliwie,)]TJ 0 -13.549 Td[(a)-333(z)-1(\\252e)-334(j)1(e)-1(j)-333(o)-27(c)-1(zy)-333(s)-1(tr)1(z)-1(eli\\252y)-333(ni)1(e)-1(n)1(a)27(wi\\261c)-1(i)1(\\241.)]TJ 27.879 -13.549 Td[(Agata)-471(p)-28(o)28(wlek\\252a)-472(si\\246)-472(og\\252usz)-1(on)1(a,)-471(nie)-472(mog\\241c)-472(jesz)-1(cz)-1(e)-472(u)29(w)-1(ierzy\\242)-472(w)-472(s\\252ysz)-1(an)1(e)-1(,)]TJ -27.879 -13.549 Td[(sp)-28(otk)56(a\\252a)-371(ki)1(lk)56(a)-371(z)-1(n)1(a)-56(j)1(om)27(yc)28(h)-371(k)28(obi)1(e)-1(t,)-370(kt\\363re)-371(j\\241)-370(przywita\\252y)-371(d)1(obr)1(ym)-371(s)-1(\\252o)28(w)27(em)-371(z)-1(agad)1(u-)]TJ 0 -13.55 Td[(j\\241c)-258(o)-259(t)28(y)1(m)-259(i)-258(o)28(wym)-1(,)-258(al)1(e)-259(jak)1(b)28(y)-258(nie)-258(s)-1(\\252ysz)-1(a\\252a)-258(p)-27(ogw)27(ar)1(y)83(,)-258(rozdy)1(gotana)-258(w)-259(sobi)1(e)-259(s)-1(t)1(rac)27(h)1(e)-1(m)]TJ 0 -13.549 Td[(coraz)-340(zjad)1(liwsz)-1(ym,)-339(\\273e)-340(j)1(u\\273)-339(z)-340(um)28(ys\\252u)-339(pr)1(z)-1(yw)28(aln)1(ia\\252a,)-339(b)28(yc)28(h)-339(j)1(e)-1(no)-339(op)-27(\\363\\271ni\\242)-339(s)-1(p)1(ra)28(wdze)-1(-)]TJ 0 -13.549 Td[(ni)1(e)-275(t)28(yc)27(h)-273(no)28(win)-274(pi)1(e)-1(k)56(\\241c)-1(y)1(c)27(h.)-274(D)1(\\252)-1(u)1(go)-274(s)-1(iedzia\\252a)-274(p)-28(o)-27(d)-274(s)-1(ztac)27(h)1(e)-1(tami)-274(pl)1(e)-1(b)1(anii)1(,)-275(b)-27(ez)-1(m)28(y\\261)-1(l)1(nie)]TJ 0 -13.549 Td[(pat)1(rz)-1(\\241c)-352(n)1(a)-352(ksi\\246\\273)-1(y)-351(dom.)-351(Na)-352(gank)1(u)-352(sto)-56(j)1(a\\252)-352(b)-27(o)-28(cie)-1(k)-351(na)-351(jedn)1(e)-1(j)-351(no)-27(dze)-352(i)-352(j)1(akb)28(y)-351(nagl\\241-)]TJ 0 -13.549 Td[(da\\252)-382(ps\\363)27(w,)-382(baraszkuj)1(\\241c)-1(yc)28(h)-382(p)-28(o)-382(\\273)-1(\\363\\252t)28(yc)27(h)-382(u)1(licz)-1(k)56(ac)27(h)-382(ogro)-27(du,)-382(a)-383(Jam)28(br)1(o\\273)-1(y)-382(z)-383(dzie)-1(wk)56(\\241)]TJ 0 -13.55 Td[(ok\\252ad)1(ali)-284(n)1(o)28(w)27(\\241)-283(dar)1(ni\\241)-283(b)-28(ok)1(i)-284(kl)1(om)27(b)1(u,)-283(kt\\363ren)-283(s)-1(i)1(\\246)-284(ju)1(\\273)-284(rud)1(z)-1(i)1(a\\252)-284(kieb)28(y)-283(sz)-1(cz)-1(otk)56(\\241)-283(\\273)-1(elaz)-1(n)1(\\241)]TJ 0 -13.549 Td[(t)28(ymi)-333(m)-1(\\252o)-28(d)1(ymi)-333(c)27(hl)1(ustam)-1(i)-333(kwiat)1(\\363)27(w)-333(pr)1(z)-1(er\\363\\273n)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-377(wz)-1(m\\363g\\252s)-1(zy)-377(si\\246)-377(na)-376(s)-1(i\\252ac)28(h)-377(c)28(h)28(y\\252kiem)-377(ru)1(s)-1(zy\\252a)-377(w)-377(op)1(\\252)-1(ot)1(ki)-377(K\\252\\246b)-27(o)27(w)28(e)-1(go)]TJ -27.879 -13.549 Td[(dom)28(u,)-333(sto)-56(j)1(\\241c)-1(ego)-333(tu\\273)-334(w)-333(rz\\241d)-333(z)-334(pl)1(e)-1(b)1(ani\\241.)]TJ 27.879 -13.549 Td[(Z)-326(d)1(ygotem)-326(ju)1(\\261)-1(ci)-325(s)-1(z\\252a)-326(cz)-1(epi)1(a)-56(j\\241c)-325(s)-1(i\\246)-326(p)1(\\252ot\\363)28(w)-326(i)-325(lata)-56(j)1(\\241c)-326(pr)1(z)-1(etrw)28(o\\273)-1(on)29(ym)-1(i)-325(o)-28(czy-)]TJ -27.879 -13.55 Td[(ma)-324(p)-27(o)-324(sadzie)-324(i)-323(c)27(h)1(a\\252up)1(ie)-1(,)-323(siedz\\241c)-1(ej)-323(w)-324(g\\252\\246)-1(b)1(i,)-323(ale)-324(j)1(e)-1(n)1(o)-324(kr)1(o)28(w)-1(y)-323(p)-27(o)-28(d)-323(okn)1(am)-1(i)-323(c)27(h)1(lip)1(a\\252y)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)1(o)-344(z)-344(ce)-1(b)1(ratek,)-344(sie\\253)-344(wyw)28(arta)-343(b)28(y\\252a)-344(n)1(a)-344(p)1(rze)-1(strza\\252)-1(,)-343(\\273e)-345(d)1(o)-56(j)1(rza\\252a)-344(mac)-1(ior)1(\\246)-344(z)-345(p)1(ro-)]TJ 0 -13.549 Td[(si\\246)-1(tami)-333(wyleguj)1(\\241c)-1(e)-334(si\\246)-334(w)-333(b\\252o)-28(cie)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(a)-333(i)-333(kur)1(y)-334(p)1(iln)1(ie)-334(gr)1(z)-1(ebi\\241ce)-334(w)-333(gno)-56(j)1(u.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(j\\241)28(ws)-1(zy)-408(p)1(r\\363\\273n\\241)-408(j)1(u\\273)-408(ce)-1(b)1(ratk)28(\\246,)-408(b)-27(o)-408(\\261m)-1(i)1(e)-1(lej)-407(b)28(y\\252o)-408(j)1(e)-1(j)-407(z)-408(c)-1(zym\\261)-1(ci\\242)-408(w)-408(gar\\261c)-1(i)]TJ -27.879 -13.549 Td[(w)28(e)-1(j)1(\\261)-1(\\242,)-333(w)-1(sun)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(do)-333(wie)-1(l)1(kiej)-333(m)-1(r)1(o)-28(cz)-1(n)1(e)-1(j)-333(izb)28(y)84(.)]TJ 27.879 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(c)28(h)28(w)28(alon)28(y!)-333({)-333(le)-1(d)1(wie)-334(wykr)1(z)-1(tu)1(s)-1(i)1(\\252)-1(a.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(a)-334(wieki!)-333(K)1(to)-334(tam?)-334({)-333(ozw)27(a\\252)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(c)27(h)29(w)-1(i)1(li)-333(z)-1(a)-55(j\\246kliwy)-333(g\\252os)-334(z)-334(k)28(omory)84(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(to)-333(ja,)-333(Agata!)-333({)-333(Jez)-1(u)1(s)-1(,)-333(jak)-333(j)1(\\241)-334(spi)1(e)-1(r)1(a\\252)-1(o)-333(p)-27(o)-28(d)-333(pi)1(e)-1(r)1(s)-1(iami!)]TJ 0 -13.549 Td[({)-438(Agata!)-438(W)1(idzieli\\261c)-1(ie)-438(no,)-437(m)-1(oi)-437(lud)1(z)-1(ie!)-438(Agata!)-437({)-438(gada\\252a)-438(pr)1(\\246)-1(d)1(k)28(o)-438(K\\252\\246)-1(b)-27(o)28(w)27(a)]TJ -27.879 -13.549 Td[(uk)56(azuj)1(\\241c)-409(s)-1(i\\246)-408(na)-408(progu)-408(z)-409(p)-27(e\\252)-1(n)1(\\241)-409(zapask)56(\\241)-409(p)1(is)-1(zc)-1(z\\241cyc)27(h)-408(g\\241si\\241t,)-408(s)-1(tar)1(e)-409(z)-1(a\\261)-409(z)-409(syki)1(e)-1(m)]TJ 0 -13.55 Td[(i)-380(g\\246)-1(gotem)-381(dyr)1(da\\252y)-380(z)-1(a)-381(n)1(i\\241.)-380({)-381(No,)-381(to)-380(c)27(h)28(w)28(a\\252a)-381(Bogu!)-380(A)-381(p)-27(o)27(wiad)1(ali)-380(lud)1(z)-1(ie,)-380(jak)28(o\\261c)-1(ie)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-385(na)-385(Go)-28(d)1(y)-385(p)-27(om)-1(ar)1(li,)-385(ni)1(e)-386(wiad)1(a)-386(b)29(y\\252o)-385(ino)-385(k)56(a)-56(j)1(,)-385(\\273)-1(e)-385(na)28(w)28(e)-1(t)-385(m\\363)-56(j)-385(zbi)1(e)-1(r)1(a\\252)-386(si\\246)-386(d)1(o)]TJ 0 -13.549 Td[(k)56(ance)-1(l)1(arii)-252(n)1(a)-252(pr)1(z)-1(ewiady)84(.)-252(S)1(iada)-55(jcie)-1(\\273...)-251(s)-1(tr)1(ud)1(z)-1(eni)-252(p)-27(ew)-1(n)1(iki)1(e)-1(m)-252(jes)-1(t)1(e)-1(\\261c)-1(ie.)-252(G)1(\\246)-1(si)-252(si\\246)-253(an)1(o)]TJ 0 -13.549 Td[(l\\246gn\\241..)1(.)]TJ 27.879 -13.549 Td[({)-333(Piekn)1(ie)-334(si\\246)-334(wywied\\252y)83(,)-333(ki)1(e)-1(j)-333(i)1(c)27(h)-333(a\\273)-334(t)28(yl)1(a!)]TJ 0 -13.549 Td[({)-316(A)-315(b)-28(\\246dzie)-316(k)28(opa)-316(b)-27(ez)-316(m)-1(a\\252a,)-315(prze)-1(z)-316(p)1(i\\246)-1(ciu)1(.)-316(Cho)-27(d\\271c)-1(ie)-316(p)1(rz)-1(ed)-315(dom,)-316(b)-27(o)-316(tr)1(z)-1(a)-316(i)1(c)27(h)]TJ -27.879 -13.55 Td[(p)-27(o)-28(dk)56(armi\\242)-333(i)-334(p)1(rzypi)1(lno)28(w)28(a\\242)-1(,)-333(ab)28(y)-333(stare)-334(n)1(ie)-334(strato)28(w)28(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Wyb)1(ra\\252a)-312(je)-313(staran)1(nie)-313(z)-312(z)-1(ap)1(as)-1(ki)-312(n)1(a)-313(ziem)-1(i\\246,)-312(i\\273)-313(zaroi\\252y)-312(s)-1(i)1(\\246)-313(kiej)-312(te)-313(\\273\\363\\252)-1(ciu)1(c)27(hn)1(e)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(p)1(usz)-1(ki)1(,)-333(a)-334(stare)-334(j)1(\\246)-1(\\252y)-333(rad)1(o\\261)-1(n)1(ie)-334(g\\246gota\\242)-334(a)-333(w)27(o)-27(dzi\\242)-334(nad)-332(nimi)-333(dziobami)]TJ 27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-464(wyn)1(ie)-1(s\\252a)-464(n)1(a)-464(d)1(e)-1(se)-1(czc)-1(e)-464(p)-27(os)-1(i)1(e)-1(k)56(anego)-464(j)1(a)-56(j)1(k)56(a)-464(wraz)-464(z)-464(p)-27(okrzyw)28(am)-1(i)-463(i)]TJ -27.879 -13.549 Td[(k)56(as)-1(z\\241)-259(i)-259(pr)1(z)-1(yku)1(c)-1(n)1(\\246)-1(\\252a)-259(p)1(rzy)-259(nic)28(h)-259(pil)1(nie)-259(bacz)-1(\\241c,)-259(b)-27(o)-260(stare)-259(ku\\252y)-259(w)-259(dr)1(obiazg,)-259(trato)28(w)28(a\\252y)]TJ 0 -13.55 Td[(i)-333(krad)1(\\252y)-333(jedze)-1(n)1(ie)-1(,)-333(j)1(ak)-333(ino)-333(mog\\252)-1(y)84(,)-333(rejw)28(ac)27(h)-333(cz)-1(yn)1(i\\241c)-334(k)1(rz)-1(y)1(kliwy)84(.)]TJ 27.879 -13.549 Td[({)-333(Sio)-27(d\\252ate)-334(wsz)-1(ystkie)-333(b)-28(\\246d\\241)-333({)-333(z)-1(au)28(w)28(a\\273)-1(y)1(\\252a)-334(siada)-55(j\\241c)-333(na)-333(przyzbie.)]TJ\nET\nendstream\nendobj\n1170 0 obj <<\n/Type /Page\n/Contents 1171 0 R\n/Resources 1169 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1169 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1174 0 obj <<\n/Length 8892      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(365)]TJ -330.353 -35.866 Td[({)-442(Ju)1(\\261)-1(ci,)-442(a)-441(z)-443(wielki)1(e)-1(go)-442(gatu)1(nku)1(.)-442(Or)1(gani\\261cina)-442(o)-27(dmie)-1(n)1(i\\252a)-442(mi)-442(j)1(a)-56(j)1(a,)-442(\\273)-1(e)-442(tr)1(z)-1(y)]TJ -27.879 -13.549 Td[(sw)27(o)-55(je)-472(d)1(a)27(w)28(a\\252am)-472(za)-471(je)-1(d)1(no.)1(..)-471(Dobr)1(z)-1(e,)-471(i\\273)-1(e\\261c)-1(ie)-471(ju\\273)-471(\\261)-1(ci\\241)-28(gn)1(\\246)-1(li)-471(d)1(o)-471(c)27(ha\\252u)1(p)28(y)83(.)1(..)-471(rob)-27(ot)28(y)]TJ 0 -13.549 Td[(t)28(yla,)-333(\\273e)-334(ni)1(e)-334(wiada,)-333(gd)1(z)-1(ie)-333(prz\\363)-28(d)1(z)-1(i)-333(pazur)1(y)-333(z)-1(acz)-1(epi\\242.)]TJ 27.879 -13.549 Td[({)-253(Z)-1(ar)1(az)-254(s)-1(i)1(\\246)-254(w)27(ez)-1(m\\246)-254(d)1(o)-254(rob)-27(ot)28(y)84(,)-254(zaraz...)-253(jeno)-253(mo)-28(c)-1(y)-253(n)1(ie)-1(co)-254(n)1(abi)1(e)-1(r\\246...)-253(c)28(horza\\252am)]TJ -27.879 -13.549 Td[(i)-333(c)-1(a\\252k)1(ie)-1(m)-333(s)-1(i\\246)-333(w)-1(y)1(z)-1(b)28(y)1(\\252)-1(am)-333(z)-334(si\\252...)-333(ale)-334(n)1(iec)27(ha)-55(j)-333(in)1(o)-334(wyd)1(yc)27(h)1(am)-1(.)1(..)-333(to)-334(zaraz...)]TJ 27.879 -13.55 Td[(I)-370(c)27(h)1(c)-1(i)1(a\\252a)-370(s)-1(i)1(\\246)-371(p)-27(o)-28(d)1(nie\\261)-1(\\242,)-370(c)28(hcia\\252a)-370(i\\261\\242)-1(..)1(.)-370(b)28(y)-369(s)-1(i)1(\\246)-371(wzi\\241\\242)-370(z)-1(a)-370(r)1(ob)-28(ot\\246)-370(j)1(ak)55(\\241,)-369(ale)-370(c)27(h)28(u)1(-)]TJ -27.879 -13.549 Td[(dzin)1(a)-334(j)1(e)-1(n)1(o)-334(si\\246)-334(p)-27(oto)-28(cz)-1(y)1(\\252a)-334(n)1(a)-334(\\261c)-1(i)1(an\\246)-334(i)-333(z)-334(j)1(\\246)-1(k)1(ie)-1(m)-333(pad)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-312(Do)-312(cna,)-311(w)-1(i)1(dz\\246)-1(,)-312(zw)28(\\241tle)-1(l)1(i\\261)-1(cie,)-312(n)1(ie)-313(d)1(o)-312(rob)-27(ot)28(y)-312(j)1(u\\273)-312(w)27(ama,)-312(n)1(ie)-1(!)-311({)-312(rze)-1(k)1(\\252)-1(a)-311(c)-1(isz)-1(ej)]TJ -27.879 -13.549 Td[(rozpatr)1(uj)1(\\241c)-334(jej)-333(t)28(w)27(ar)1(z)-334(s)-1(i)1(n\\241,)-333(obr)1(z)-1(\\246k\\252\\241)-333(i)-333(dziw)-1(n)1(ie)-334(p)-27(oku)1(rcz)-1(on)1(\\241)-334(p)-27(os)-1(t)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Zak\\252op)-27(ota\\252a)-408(s)-1(i\\246)-408(t)28(ym)-408(ogl\\241dem)-409(i)-407(s)-1(tr)1(api\\252a,)-408(\\273e)-409(n)1(ie)-408(t)28(ylk)28(o)-408(wyr\\246ki)-408(mie\\242)-409(z)-408(niej)]TJ -27.879 -13.549 Td[(ni)1(e)-334(b)-27(\\246)-1(d)1(z)-1(ie,)-333(ale)-334(got\\363)28(w)-334(si\\246)-334(j)1(e)-1(szc)-1(ze)-334(k\\252op)-27(ot)-334(n)1(a)28(w)-1(i)1(\\241z)-1(a\\242.)]TJ 27.879 -13.55 Td[(Sn)1(ad\\271)-333(prze)-1(czu\\252a)-334(t)1(o)-334(Agata,)-333(b)-27(o)-333(s)-1(i\\246)-333(l\\246)-1(k)1(liwie,)-334(p)1(rze)-1(p)1(rasz)-1(a)-55(j\\241co)-334(ozw)27(a\\252a:)]TJ 0 -13.549 Td[({)-378(Nie)-378(b)-28(\\363)-55(jcie)-379(si\\246,)-378(nie)-378(b)-28(\\246d\\246)-378(w)27(a)-55(ju)-377(z)-1(a)28(w)27(al)1(a\\252a)-379(miejsc)-1(a)-378(n)1(i)-378(c)-1(i)1(s)-1(n)1(\\246)-1(\\252a)-378(s)-1(i)1(\\246)-379(do)-378(miski,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(,)-387(wydy)1(c)27(hn)1(e)-388(se)-388(ino)-387(i)-387(p)-28(\\363)-55(jd)1(\\246)-1(.)1(..)-387(c)27(hcia\\252am)-388(j)1(e)-1(n)1(o)-388(ob)1(ac)-1(zy\\242)-388(wsz)-1(ystkic)28(h..)1(.)-388(p)-27(op)28(y)1(ta\\242)-1(..)1(.)]TJ 0 -13.549 Td[(ale)-334(se)-334(p)-27(\\363)-56(j)1(d\\246...)-333({)-333(\\212z)-1(y)-333(cis)-1(n)1(\\246)-1(\\252y)-333(si\\246)-334(d)1(o)-334(o)-27(c)-1(zu.)]TJ 27.879 -13.549 Td[({)-426(Nie)-426(w)-1(y)1(ganiam)-426(w)27(as)-426(pr)1(z)-1(ec)-1(iec)27(h)1(,)-426(sie)-1(d)1(\\271)-1(cie,)-426(a)-426(w)27(ola)-426(w)28(as)-1(za)-426(b)-27(\\246)-1(d)1(z)-1(ie)-426(i\\261\\242)-1(,)-426(to)-426(se)]TJ -27.879 -13.55 Td[(p)-27(\\363)-56(j)1(dzie)-1(cie...)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)56(a)-55(j)-333(to)-334(c)28(h\\252opak)1(i?)-334(p)-27(ew)-1(n)1(ikiem)-334(w)-333(p)-28(ol)1(u)-333(z)-334(T)83(omkiem)-1(?{)-333(z)-1(ap)29(yta\\252a)-334(wr)1(e)-1(sz)-1(cie.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(n)1(ic)-334(n)1(ie)-334(wiec)-1(ie?)-334(A)-333(d)1(y\\242)-334(ws)-1(zystkie)-334(w)-333(kreminale!)]TJ 0 -13.549 Td[(Agata)-333(jeno)-333(r\\246c)-1(e)-334(spl)1(e)-1(t\\252a)-333(w)-334(n)1(iem)27(ym)-333(krzyku)-333(b)-27(ole\\261)-1(ci.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(mi)-334(j)1(u\\273)-333(to)-334(s\\252o)28(w)27(o)-333(Jagust)28(ynk)56(a,)-333(j)1(e)-1(no)-333(u)28(wierzy\\242)-334(n)1(ie)-334(mog\\252am)-1(.)]TJ 0 -13.55 Td[({)-333(Na)-56(j)1(c)-1(zys)-1(t)1(s)-1(z\\241)-334(p)1(ra)28(wd\\246)-334(w)28(am)-334(rzek\\252a,)-333(tak)-333(c)-1(i)-333(jest,)-334(t)1(ak!)]TJ 0 -13.549 Td[(Wyp)1(rosto)28(w)27(a\\252a)-382(s)-1(i)1(\\246)-383(na)-382(te)-383(wsp)-28(omin)1(ki,)-382(a)-382(p)-28(o)-382(wyn\\246dzni)1(a\\252e)-1(j)-382(t)28(w)28(arzy)-383(p)-27(osypa\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(ci\\246)-1(\\273kie)-333(\\252)-1(zy)83(.)]TJ 27.879 -13.549 Td[(Agata)-333(patr)1(z)-1(a\\252a)-333(w)-334(n)1(i\\241)-334(j)1(ak)-333(w)-334(ob)1(raz,)-334(n)1(ie)-334(\\261mie)-1(j)1(\\241c)-334(ju)1(\\273)-334(dop)29(yt)28(yw)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-393(M)1(\\363)-56(j)-392(Jez)-1(u)1(!)-393(S)1(\\241d)-393(ci)-393(t)1(u)-393(b)29(y\\252)-393(w)28(e)-394(wsi)-393(ostatec)-1(zn)28(y)83(,)-392(kiej)-392(ano)-392(w)-1(zi\\246li)-393(wsz)-1(y)1(s)-1(tki)1(c)27(h)]TJ -27.879 -13.55 Td[(i)-449(d)1(o)-449(m)-1(i)1(as)-1(ta)-449(p)-27(o)28(wie)-1(d)1(li,)-448(os)-1(tatn)1(ia)-449(go)-28(d)1(z)-1(i)1(na,)-449(p)-27(o)28(wiadam)-449(w)27(am,)-449(\\273e)-449(dziw,)-449(jak)28(o)-448(\\273)-1(ywi\\246)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-388(i)-388(ten)-387(dzie)-1(\\253)-387(jasn)28(y)-387(ogl\\241dam!)-388(A)-388(t)1(o)-388(ju)1(\\273)-389(j)1(utr)1(o)-388(b)-28(\\246dzie)-388(ca)-1(\\252e)-388(tr)1(z)-1(y)-388(t)28(y)1(go)-28(dn)1(ie)-1(,)-387(a)]TJ 0 -13.549 Td[(mnie)-276(si\\246)-276(widzi,)-275(jak)1(b)28(y)-276(t)1(o)-276(w)28(c)-1(zora)-56(j)-275(si\\246)-276(sta\\252o.)-276(Osta\\252)-276(j)1(e)-1(n)1(o)-276(w)-276(c)28(ha\\252u)1(pie)-276(M)1(ac)-1(iek,)-275(wie)-1(cie,)]TJ 0 -13.549 Td[(i)-333(dzieusz)-1(ysk)56(a,)-333(kt\\363re)-334(t)1(e)-1(raz)-333(gn\\363)-55(j)-333(p)-28(o)28(wiez)-1(\\252y)-333(w)-334(p)-27(ole,)-333(i)-333(ja)-333(s)-1(ierota)-333(n)1(ie)-1(sz)-1(cz\\246)-1(sna!)]TJ 27.879 -13.549 Td[({)-321(A)-321(p)-28(osz)-1(\\252y!)-321(\\261cie)-1(r)1(w)-1(y)84(...)-321(t)1(o)-322(w\\252asne)-322(d)1(z)-1(i)1(e)-1(ci)-321(tratu)1(j\\241)-321(jak)28(o)-321(te)-322(\\261wini)1(e)-1(!)-321({)-321(kr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(nar)1(az)-334(na)-333(g\\246s)-1(i:)-333({)-333(Pi)1(lusie,)-334(p)1(ilu)1(,)-333(pil)1(u,)-333(pi)1(lu!)]TJ 27.879 -13.549 Td[(Na)28(w)27(o\\252yw)28(a\\252a)-453(g\\241s)-1(i)1(\\246)-1(ta,)-452(b)-28(o)-453(ca\\252ym)-453(s)-1(tad)1(e)-1(m,)-453(z)-453(m)-1(at)1(k)55(ami)-453(n)1(a)-453(c)-1(ze)-1(l)1(e)-1(,)-453(r)1(usz)-1(y)1(\\252)-1(y)-452(w)]TJ -27.879 -13.549 Td[(op\\252otk)1(i.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(s)-1(i)1(\\246)-334(z)-1(ab)1(a)28(w)-1(i)1(\\241,)-334(gap)-332(nik)56(a)-56(j)-332(nie)-334(wid)1(a\\242)-1(,)-333(p)1(rzypil)1(n)28(uj)1(\\246)-334(bacznie.)]TJ 0 -13.549 Td[({)-333(Ruc)27(h)1(a\\242)-334(si\\246)-334(ni)1(e)-334(m)-1(o\\273ec)-1(ie,)-333(a)-334(gd)1(z)-1(i)1(e)-334(w)27(am)-333(z)-1(a)-333(g\\241si\\246)-1(tami)-333(bi)1(e)-1(ga\\242!...)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(me)-334(\\271dziebk)28(o)-333(c)27(hor)1(o\\261)-1(\\242)-333(o)-28(des)-1(z\\252a,)-333(s)-1(k)28(or)1(om)-334(jeno)-333(w)-334(te)-333(progi)-333(st\\241)-28(p)1(i\\252a.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(p)1(iln)29(ujcie...)-333(nar)1(z)-1(\\241d)1(z)-1(\\246)-333(w)27(ama)-334(co)-333(je\\261)-1(\\242...)-333(a)-333(m)-1(o\\273e)-334(mlek)55(a)-333(u)28(w)28(arzy\\242)-1(?)]TJ 0 -13.549 Td[({)-266(B\\363g)-267(w)28(am)-267(zap\\252a\\242,)-266(gosp)-28(o)-28(d)1(yn)1(i,)-266(ale)-266(s)-1(ob)-27(ota)-266(to)-266(c)-1(i)-266(wielk)28(op)-27(os)-1(tn)1(a,)-266(to)-266(z)-267(mlekiem)]TJ -27.879 -13.549 Td[(je\\261\\242)-304(m)-1(i)-303(s)-1(i)1(\\246)-304(nie)-304(go)-28(d)1(z)-1(i)1(...)-303(wrz)-1(\\241t)1(ku)-303(da)-55(jcie)-304(jaki)-303(garn)29(usz)-1(ek,)-303(c)27(hl)1(e)-1(b)-303(mam)-1(,)-303(to)-303(s)-1(e)-304(wdr)1(obi\\246)]TJ 0 -13.549 Td[(i)-333(p)-27(o)-56(jem)-334(gal)1(a)-1(n)29(to.)]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-493(K\\252\\246b)-28(o)28(w)27(a)-492(w)-1(n)1(e)-1(t)-492(jej)-493(p)1(rzyni)1(e)-1(s\\252a)-493(os)-1(ol)1(onego)-493(wrz)-1(\\241t)1(ku)-493(n)1(a)-493(mis)-1(ecz)-1(ce)-1(,)-492(w)]TJ -27.879 -13.55 Td[(kt\\363r)1(e)-1(n)-326(s)-1(tar)1(a)-327(w)-1(d)1(rob)1(i\\252a)-327(c)27(hl)1(e)-1(b)-326(i)-327(p)-27(o)-56(jad)1(a\\252a)-327(z)-328(w)28(olna)-327(d)1(m)27(u)1(c)27(h)1(a)-56(j\\241c)-327(w)-327(\\252y\\273)-1(k)28(\\246,)-327(a)-327(K\\252\\246b)-28(o)28(w)28(a)]TJ 0 -13.549 Td[(za\\261)-231(p)1(rzys)-1(i)1(ad\\252a)-230(w)-230(p)1(rogu)-229(i)-230(ogan)1(ia)-56(j)1(\\241c)-230(o)-28(cz)-1(yma)-230(g\\241si\\246ta,)-230(skub)1(i\\241ce)-231(p)-27(o)-28(d)-229(p\\252otami,)-229(z)-1(n)1(o)28(w)-1(u)]TJ\nET\nendstream\nendobj\n1173 0 obj <<\n/Type /Page\n/Contents 1174 0 R\n/Resources 1172 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1172 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1177 0 obj <<\n/Length 9686      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(366)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(p)-27(o)27(wieda\\252a:)]TJ 27.879 -13.549 Td[({)-224(O)-223(las)-223(p)-28(osz)-1(\\252o.)-223(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-224(spr)1(z)-1(eda\\252)-223(go)-224(kr)1(yjomo)-224(p)1(rze)-1(d)-223(Lip)-27(cam)-1(i)-223(\\233yd)1(om)-1(.)-223(Jeli)-224(go)]TJ -27.879 -13.549 Td[(wnet)-320(r\\241b)1(a\\242)-1(!)-320(K)1(rz)-1(y)1(w)-1(d)1(a)-320(b)28(y\\252a)-320(tak)56(a)-320(i)-320(spra)28(wiedli)1(w)27(o\\261c)-1(i)-320(zni)1(k)55(\\241d)1(,)-320(to)-320(i)-320(co)-320(m)-1(i)1(a\\252)-1(y)-319(p)-28(o)-28(cz\\241\\242)-1(?)]TJ 0 -13.549 Td[(do)-492(k)28(ogo)-493(i\\261)-1(\\242)-493(ze)-494(sk)56(arg\\241?)-493(A)-493(do)-492(te)-1(go)-493(za)28(w)-1(zi\\241\\252)-493(si\\246)-493(na)-493(ca\\252)-1(y)-492(nar)1(\\363)-28(d,)-492(\\273)-1(e)-493(ni)-493(j)1(e)-1(d)1(nego)]TJ 0 -13.549 Td[(k)28(omorni)1(k)55(a)-497(z)-1(e)-498(wsi)-498(d)1(o)-498(r)1(ob)-28(ot)28(y)-497(nie)-498(za)28(w)27(o\\252a\\252.)-497(Zm)-1(\\363)28(wili)-497(s)-1(i)1(\\246)-498(te)-1(\\273)-498(i)-497(c)-1(a\\252\\241)-497(w)-1(si\\241)-497(p)-28(osz)-1(l)1(i)]TJ 0 -13.55 Td[(sw)27(o)-55(jego)-282(br)1(oni\\242,)-282(i)1(le)-282(ino)-282(n)1(aro)-28(d)1(u)-281(b)28(y\\252o.)-282(P)29(o)27(wiedal)1(i,)-282(\\273e)-282(w)-1(szys)-1(tk)1(ic)27(h)-281(k)56(ara\\242)-282(ni)1(e)-283(p)-27(ok)56(arz\\241,)]TJ 0 -13.549 Td[(je\\261lib)28(y)-395(n)1(a)-395(to)-395(p)1(rz)-1(y)1(s)-1(z\\252o,)-395(ale)-395(nik)1(to)-395(o)-395(t)28(ym)-395(nie)-395(p)-27(om)27(y\\261la\\252,)-395(b)-27(o)-395(jak)1(\\273)-1(e?)-395(z)-1(a)-395(co)-395(to)-395(mie)-1(l)1(i)]TJ 0 -13.549 Td[(k)56(ara\\242?)-404(pr)1(z)-1(ec)-1(iec)27(h)-403(o)-404(sw)27(o)-55(je)-404(j)1(e)-1(n)1(o)-404(z)-1(ab)1(iegali.)-403(P)28(os)-1(zli)-403(do)-404(p)-27(or\\246b)28(y)84(,)-404(p)-27(obi)1(li)-404(r)1(\\246)-1(b)1(ac)-1(z\\363)27(w,)-403(\\273)-1(e)]TJ 0 -13.549 Td[(p)-27(o)-334(d)1(obrej)-333(w)27(ol)1(i)-334(n)1(ie)-334(u)1(s)-1(t\\241)-28(p)1(ili)1(,)-334(p)-27(obi)1(li)-333(dw)28(ors)-1(k)1(ic)27(h)-333(i)-333(ws)-1(zystkic)27(h)-333(an)1(o)-334(z)-334(b)-27(oru)-333(wygn)1(ali..)1(.)]TJ 0 -13.549 Td[(Na)-365(s)-1(w)28(oim)-365(p)-28(osta)28(wili,)-365(a)-365(p)-27(o)-365(s)-1(p)1(ra)28(wiedliw)28(o\\261c)-1(i,)-365(b)-27(o)-365(p)-27(\\363ki)-365(z)-366(l)1(as)-1(u)-364(nie)-365(w)-1(y)1(dzie)-1(l)1(\\241,)-365(c)-1(o)-365(j)1(e)-1(st)]TJ 0 -13.549 Td[(cz)-1(yj)1(e)-1(,)-227(r)1(uc)28(ha\\242)-227(go)-228(n)1(ikt)-227(p)1(ra)28(w)27(a)-227(n)1(ie)-227(m)-1(a.)-227(Al)1(e)-228(si\\246)-228(d)1(u\\273o)-227(przy)-227(t)28(ym)-227(p)-27(om)-1(ar)1(no)28(w)27(a\\252o)-227(n)1(as)-1(zyc)27(h)1(,)]TJ 0 -13.55 Td[(starego)-322(B)-1(or)1(yn\\246)-322(pr)1(z)-1(y)1(w)-1(i)1(e)-1(\\271li)-322(z)-322(roz\\252upan)1(\\241)-322(g\\252o)28(w)27(\\241:)-321(b)-28(or)1(o)27(wy)-322(ci)-322(go)-322(t)1(ak)-322(usz)-1(l)1(ac)27(h)28(to)28(w)28(a\\252,)-322(a)]TJ 0 -13.549 Td[(tego)-334(ci)-333(z)-1(n)1(o)28(w)-1(u)1(j)-333(An)28(tek)-333(B)-1(or)1(yniak)-333(zak)56(atru)1(pi\\252)-333(z)-1(a)-333(o)-56(j)1(c)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zus!)-333(z)-1(ak)56(atr)1(upi)1(\\252,)-334(n)1(a)-334(\\261mie)-1(r)1(\\242)-1(?!)]TJ 0 -13.549 Td[({)-303(Na)-304(\\261mie)-1(r)1(\\242)-1(,)-303(a)-303(s)-1(t)1(ary)-303(do)-303(dzisia)-56(j)-303(an)1(o)-303(c)27(hor)1(uj)1(e)-304(i)-303(b)-28(ez)-304(r)1(oz)-1(u)1(m)27(u)-303(zgo\\252a)-304(le\\273y)83(,)-303(ju)1(\\261)-1(ci,)]TJ -27.879 -13.549 Td[(on)-375(n)1(a)-56(j)1(bard)1(z)-1(i)1(e)-1(j)-375(u)1(c)-1(i)1(e)-1(rzpi)1(a\\252,)-375(ale)-376(i)-375(d)1(rugi)1(e)-376(te\\273)-376(n)1(ie)-1(ma\\252o:)-375(Szyme)-1(k)-375(Domin)1(ik)28(o)28(w)27(ej)-375(mia\\252)]TJ 0 -13.55 Td[(pr)1(z)-1(etr\\241con)28(y)-378(ku)1(las)-1(,)-378(M)1(ate)-1(u)1(s)-1(z)-378(Go\\252\\241b)-378(b)28(y\\252)-378(tak)-378(p)-28(ob)1(it)28(y)84(,)-379(\\273e)-379(go)-378(a\\273)-379(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\271\\242)-379(m)27(u)1(s)-1(i)1(e)-1(li)1(,)]TJ 0 -13.549 Td[(P\\252osz)-1(ce)-232(S)1(tac)27(h)1(o)28(w)-1(i)-231(r)1(oz)-1(w)28(alili)-230(\\252)-1(eb,)-230(a)-232(d)1(ru)1(gim)-232(d)1(os)-1(ta\\252o)-231(si\\246)-232(t)1(e)-1(\\273)-231(dosy\\242)-1(,)-231(\\273e)-232(i)-231(n)1(ie)-231(s)-1(p)1(am)-1(i\\246ta\\242,)]TJ 0 -13.549 Td[(co)-390(i)-389(k)28(om)28(u!)-389(Nik)1(to)-390(si\\246)-389(t)27(y)1(m)-390(zb)28(ytn)1(io)-389(nie)-389(fraso)28(w)27(a\\252)-389(ni)-389(n)1(arze)-1(k)56(a\\252,)-389(b)-28(o)-389(sw)27(o)-55(je)-390(d)1(ok)56(az)-1(ali)1(,)]TJ 0 -13.549 Td[(wr\\363)-28(cili)-296(t)1(e)-1(\\273)-296(buj)1(no,)-296(ze)-296(\\261)-1(p)1(ie)-1(w)28(am)-1(i)-295(kiej)-296(p)-27(o)-296(te)-1(j)-295(w)27(o)-55(jni)1(e)-297(wygran)1(e)-1(j)1(,)-296(ca\\252)-1(\\241)-296(n)1(o)-28(c)-296(w)-297(k)56(arcz)-1(mie)]TJ 0 -13.549 Td[(z)-334(u)1(c)-1(iec)27(h)29(y)-334(p)1(ili)1(,)-334(a)-333(b)1(arz)-1(ej)-333(p)-27(obit)28(ym)-333(gorza\\252k)28(\\246)-334(do)-333(c)27(h)1(a\\252)-1(u)1(p)-333(ni)1(e)-1(\\261li.)]TJ 27.879 -13.55 Td[(A)-342(na)-342(t)1(rz)-1(eci)-342(dzie)-1(\\253)-341(jak)28(o\\261,)-342(w)-342(niedziel\\246,)-342(\\261)-1(n)1(ieg)-342(pada\\252)-342(mokry)-341(i)-342(z)-1(r)1(obi\\252a)-342(si\\246)-342(tak)55(a)]TJ -27.879 -13.549 Td[(pl)1(uc)27(h)1(a)-482(o)-28(d)-481(s)-1(ame)-1(go)-482(r)1(ana,)-482(i)1(\\273)-483(tr)1(udn)1(o)-482(b)28(y\\252o)-482(n)1(os)-1(a)-482(wy\\261c)-1(i)1(bi\\242)-482(na)-482(d)1(w)27(\\363r)1(.)-482(Zbierali)1(\\261)-1(m)28(y)]TJ 0 -13.549 Td[(si\\246)-337(w\\252a\\261)-1(n)1(ie)-337(do)-336(k)28(o\\261c)-1(io\\252a)-336(i\\261\\242)-1(,)-336(kiedy)-336(Gu)1(lb)1(as)-1(o)28(w)27(e)-336(c)27(h\\252op)1(aki)-336(p)-28(o)-27(c)-1(z\\246)-1(\\252y)-336(na)-336(ws)-1(i)-336(kr)1(z)-1(ycze)-1(\\242:)]TJ 0 -13.549 Td[(\\377)-56(S)1(tra\\273ni)1(ki)-333(jad)1(\\241!\")]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-382(mo\\273e)-382(w)-381(pacie)-1(r)1(z)-382(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252o)-381(ic)27(h)-380(z)-1(e)-381(trzydzies)-1(tu)1(,)-381(a)-382(z)-381(nimi)-381(ur)1(z)-1(\\246dn)1(iki)]TJ -27.879 -13.55 Td[(i)-389(ca\\252)-1(y)-389(s\\241d,)-388(roz)-1(\\252o\\273yli)-389(si\\246)-390(n)1(a)-389(pleban)1(ii.)-389(No,)-389(\\273e)-390(j)1(u\\273)-390(i)-389(n)1(ie)-390(wyp)-27(o)28(wie)-1(m,)-389(co)-390(si\\246)-389(dzia\\252o,)]TJ 0 -13.549 Td[(kiej)-359(zacz)-1(\\246\\252y)-359(s)-1(\\241d)1(z)-1(i)1(\\242)-1(,)-359(wyp)28(y)1(t)28(yw)27(a\\242,)-359(zapisyw)28(a\\242)-1(,)-359(a)-359(n)1(ar\\363)-28(d)-358(p)-28(o)-359(k)28(ol)1(e)-1(i)-359(b)1(ra\\242)-359(p)-28(o)-27(d)-359(str\\363\\273\\246)-1(..)1(.)]TJ 0 -13.549 Td[(Nikt)1(o)-331(s)-1(i)1(\\246)-332(n)1(ie)-331(opi)1(e)-1(r)1(a\\252)-1(,)-330(k)56(a\\273)-1(d)1(e)-1(n)-330(p)-27(e)-1(wn)28(y)-330(b)28(y\\252)-331(sw)27(o)-55(jego,)-331(a)-330(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-331(kiej)-331(n)1(a)-331(sp)-28(o)28(wiedzi)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(\\261)-1(wiarcza\\252)-1(y)-303(i)-304(p)1(ra)28(wd\\246)-304(s)-1(zc)-1(zer\\241)-304(m\\363)28(w)-1(i)1(li.)-304(Dop)1(iero)-304(p)-27(o)-28(d)-303(wie)-1(cz)-1(\\363r)-303(s)-1(k)28(o\\253)1(c)-1(zyli)-303(i)-304(c)28(hcie)-1(l)1(i)]TJ 0 -13.549 Td[(zraz)-1(u)-334(ca\\252\\241)-335(wie\\261)-336(wr)1(az)-335(z)-1(e)-335(ws)-1(zystkimi)-335(k)28(ob)1(ietam)-1(i)-334(br)1(a\\242)-1(,)-334(ale)-335(p)-27(o)-28(dn)1(i\\363s)-1(\\252)-334(s)-1(i)1(\\246)-336(t)1(aki)-335(k)1(rz)-1(y)1(k)]TJ 0 -13.55 Td[(a)-314(ten)-314(p)1(\\252ac)-1(z)-314(d)1(z)-1(iec)-1(i)1(\\253ski,)-314(\\273e)-314(c)27(h)1(\\252)-1(op)29(y)-314(j)1(u\\273)-314(s)-1(i\\246)-314(za)-314(k)28(o\\252am)-1(i)-313(ogl\\241d)1(ali...)-313(Dobr)1(o)-28(dziej)-314(m)28(usia\\252)]TJ 0 -13.549 Td[(cos)-1(ik)-252(p)1(rze)-1(\\252o\\273y\\242)-252(s)-1(tar)1(s)-1(zym)-1(,)-251(\\273)-1(e)-252(nas)-252(p)-28(on)1(iec)27(hal)1(i,)-252(na)28(w)28(e)-1(t)-252(Koz\\252o)28(w)27(ej,)-252(siln)1(ie)-252(w)-1(y)1(gra\\273)-1(a)-55(j\\241ce)-1(j)]TJ 0 -13.549 Td[(ws)-1(zystkim,)-428(n)1(ie)-428(wz)-1(i\\246li,)-427(c)27(h)1(\\252op)-28(\\363)28(w)-428(j)1(e)-1(n)1(o)-428(s)-1(am)28(yc)27(h)-427(zabr)1(ali)-428(d)1(o)-428(kr)1(e)-1(mina\\252u)1(,)-428(An)29(tk)55(a)-427(z)-1(a\\261)]TJ 0 -13.549 Td[(Boryn)1(o)27(w)28(ego)-334(w)-333(p)-28(ostron)1(ki)-333(pr)1(z)-1(yk)56(azali)-333(wi\\241z)-1(a\\242!)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zus!)-333(w)-334(p)-27(os)-1(t)1(ronk)1(i)-334(p)1(rzyk)56(az)-1(ali)-333(wi\\241za\\242)-1(!)]TJ 0 -13.549 Td[({)-278(I)-278(zw)-1(i)1(\\241z)-1(ali)1(,)-278(ale)-278(p)-27(o)-1(r)1(w)27(a\\252)-278(ci)-278(j)1(e)-279(k)1(ie)-1(j)-277(te)-278(nicie)-278(nad)1(gni\\252e,)-278(a\\273)-278(s)-1(i\\246)-278(pr)1(z)-1(el\\246k\\252y)-278(ws)-1(zyst-)]TJ -27.879 -13.55 Td[(kie,)-305(b)-27(o)-305(w)-1(y)1(da\\252)-305(s)-1(i)1(\\246)-1(,)-305(j)1(akb)28(y)-305(m)28(u)-305(du)1(r)-305(do)-305(\\252ba)-305(p)1(rzys)-1(t)1(\\241)-28(pi\\252)-305(alb)-27(o)-305(i)-305(z\\252)-1(y)-305(op)-27(\\246ta\\252,)-305(a)-305(on)-305(s)-1(t)1(an\\241\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(ni)1(m)-1(i)1(,)-334(a)-333(w)-333(o)-28(c)-1(zy)-333(im)-334(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-464(S)1(kuj)1(c)-1(i)1(e)-465(mi\\246)-464(mo)-28(c)-1(n)1(o)-464(w)-464(k)56(a)-56(j)1(dan)28(y)-463(i)-464(p)1(iln)28(u)1(jta,)-463(b)-28(o)-464(wsz)-1(y)1(s)-1(tki)1(c)27(h)-463(z)-1(ak)56(atru)1(pi\\246)-464(i)]TJ -27.879 -13.549 Td[(sobie)-334(co)-333(z)-1(\\252ego)-334(zrob)1(i\\246)-1(.)1(..)]TJ 27.879 -13.549 Td[(T)83(ak)-353(s)-1(i)1(\\246)-354(ano)-354(zapami\\246ta\\252,)-354(\\273e)-354(m)27(u)-353(o)-55(jca)-354(zabil)1(i,)-353(s)-1(am)-354(an)1(o)-354(r\\246ce)-355(p)-27(o)-28(d)1(a\\252)-354(w)-354(\\273e)-1(l)1(az)-1(a,)]TJ -27.879 -13.55 Td[(sam)-334(nogi)-333(n)1(as)-1(ta)28(wi\\252)-333(i)-334(t)1(ak)-334(go)-333(p)-27(o)28(w)-1(i)1(e)-1(\\271li..)1(.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu)-333(m\\363)-56(j)-333(mi\\252o\\261c)-1(iwy!)-333(Mar)1(yja!)-333({)-333(j\\246cz)-1(a\\252a)-333(Agata.)]TJ\nET\nendstream\nendobj\n1176 0 obj <<\n/Type /Page\n/Contents 1177 0 R\n/Resources 1175 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1162 0 R\n>> endobj\n1175 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1180 0 obj <<\n/Length 8054      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(367)]TJ -330.353 -35.866 Td[({)-333(Wid)1(z)-1(\\246)-334(za)28(w)-1(d)1(y)-333(i)-333(do)-333(s)-1(ame)-1(j)-332(\\261)-1(mierc)-1(i)-333(n)1(ie)-334(zabacz)-1(\\246,)-333(jak)-333(ic)28(h)-333(bral)1(i...)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(m)-1(o)-55(jego)-334(z)-334(c)28(h\\252op)1(ak)55(ami..)1(.)-333(w)-1(zieni)-333(P\\252osz)-1(k)28(\\363)28(w...)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(Pry)1(c)-1(zk)28(\\363)27(w..)1(.)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(Go\\252\\246)-1(b)1(i\\363)28(w)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(W)83(ac)27(h)1(nik)28(\\363)28(w...)]TJ 0 -13.55 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(B)-1(alce)-1(r)1(k)28(\\363)28(w)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(e)-1(n)1(i)-333(So)-28(c)28(h\\363)28(w)-1(.)1(..)]TJ 0 -13.549 Td[(-...a)-365(t)28(yla)-365(jes)-1(zc)-1(ze)-1(c)28(h)-365(dr)1(ugic)28(h)-365(w)-1(zieni,)-365(\\273e)-366(w)-1(i)1(\\246)-1(ce)-1(j)-365(n)1(i\\271li)-365(pi\\246\\242)-1(d)1(z)-1(i)1(e)-1(si\\241t)-366(c)28(h\\252op)1(a)-366(p)-27(o-)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(il)1(i)-333(do)-333(krem)-1(i)1(na\\252u.)1(..)]TJ 27.879 -13.549 Td[(\\233e)-419(i)-418(rozum)-418(lud)1(z)-1(ki)-418(n)1(ie)-419(p)-27(orad)1(z)-1(i)-418(wyp)-27(o)27(wiedzie\\242)-1(,)-418(co)-419(si\\246)-419(t)1(uta)-56(j)-417(dzia\\252o...)-418(jak)1(ie)]TJ -27.879 -13.549 Td[(p\\252acz)-1(e)-344(s)-1(i\\246)-344(krw)28(a)27(wi\\252y)84(,)-344(t)28(yc)27(h)-344(wrzask)28(\\363)27(w)-344(lame)-1(n)28(t)1(liwyc)27(h)1(...)-344(ni)-344(t)28(yc)28(h)-344(pr)1(z)-1(ekle\\253st)28(w)-345(strasz)-1(-)]TJ 0 -13.55 Td[(n)28(yc)28(h.)]TJ 27.879 -13.549 Td[(A)-382(tu)-381(z)-1(wiesna)-382(n)1(ades)-1(z\\252a,)-382(\\261)-1(n)1(iegi)-382(ry)1(c)27(h\\252o)-382(sp\\252yn)1(\\246)-1(\\252y)84(,)-382(r)1(ole)-382(p)-28(o)-28(d)1(e)-1(sc)27(h)1(\\252y)83(,)-381(z)-1(iemia)-382(a\\273)]TJ -27.879 -13.549 Td[(si\\246)-266(p)1(rosi)-265(o)-265(obr)1(\\363bk)28(\\246,)-265(cz)-1(as)-265(na)-265(or)1(ki,)-265(cz)-1(as)-265(na)-264(s)-1(iewy)83(,)-265(czas)-266(n)1(a)-265(w)-1(szys)-1(tk)1(ie)-265(rob)-27(o)-1(t)28(y)84(,)-265(a)-265(r)1(obi\\242)]TJ 0 -13.549 Td[(ni)1(e)-334(ma)-334(kt)1(o!)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-329(j)1(e)-1(n)1(o)-330(osta\\252,)-329(k)28(o)28(w)27(al)-329(i)-329(t)28(yc)27(h)-329(k)1(ilku)-329(staru)1(c)27(h)1(\\363)27(w)-329(ledwie)-330(si\\246)-330(r)1(uc)27(h)1(a)-56(j)1(\\241c)-1(y)1(c)27(h,)-329(a)-329(z)]TJ -27.879 -13.55 Td[(par)1(obk)28(\\363)28(w)-334(j)1(e)-1(d)1(e)-1(n)-333(i)1(no)-333(g\\252up)1(a)27(wy)84(,)-333(Jas)-1(iek)-333(Pr)1(z)-1(ew)-1(r)1(otn)28(y!)]TJ 27.879 -13.549 Td[(A)-276(tu)-276(i)-276(cz)-1(as)-276(przyc)27(h)1(o)-28(d)1(z)-1(i)-276(ro)-27(d\\363)28(w,)-276(\\273)-1(e)-276(ju\\273)-276(p)-28(on)1(iekt\\363re)-276(z)-1(leg\\252y)83(,)-276(k)1(ro)28(wy)-276(s)-1(i\\246)-276(te)-1(\\273)-276(c)-1(iel\\241,)]TJ -27.879 -13.549 Td[(l\\241)-28(gi)-310(wsz)-1(\\246dzie)-1(,)-310(o)-310(c)27(h)1(\\252opac)27(h)-310(te\\273)-311(tr)1(z)-1(a)-310(m)27(y\\261le\\242)-311(i)-310(p)-28(o)-27(dw)28(oz)-1(i\\242)-311(i)1(m)-311(to)-310(p)-28(o\\273ywienie,)-310(to)-311(gr)1(os)-1(z)]TJ 0 -13.549 Td[(jak)1(i)-390(alb)-27(o)-390(i)-389(t\\246)-390(cz)-1(yst\\241)-390(k)28(osz)-1(u)1(l\\246,)-390(a)-389(rob)-27(ot)27(y)-389(in)1(nej)-390(t)28(y)1(la,)-390(\\273e)-390(ju)1(\\273)-390(i)-390(n)1(ie)-390(w)-1(i)1(ada,)-389(z)-1(a)-389(c)-1(o)-390(si\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(\\363)-27(dzi)-425(bra\\242,)-425(s)-1(am)28(ym)-425(przec)-1(iec)27(h)-425(n)1(ie)-425(urad)1(z)-1(i,)-424(a)-426(n)1(a)-56(j)1(e)-1(mni)1(k)55(a)-425(d)1(os)-1(ta\\242)-425(nie)-425(m)-1(o\\273na)-425(p)-27(o)]TJ 0 -13.55 Td[(dr)1(ugic)28(h)-333(ws)-1(iac)28(h,)-333(b)-27(o)-28(\\242)-334(ku)1(\\273)-1(d)1(e)-1(n)-333(sobi)1(e)-334(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-333(ob)1(robi)1(\\242)-334(m)27(u)1(s)-1(i)1(...)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(usz)-1(cz)-1(\\241)-333(ic)27(h)-333(t)1(o)-334(r)1(yc)27(h)1(\\252)-1(o?)]TJ 0 -13.549 Td[({)-356(B\\363g)-357(t)1(a)-357(wie)-356(kiedy!)-355(Je)-1(\\271dzi\\252)-356(do)-356(ur)1(z)-1(\\246du)-355(ks)-1(i)1(\\241dz,)-356(je\\271)-1(d)1(z)-1(i)1(\\252)-357(i)-356(w)28(\\363)-56(j)1(t)-356(i)-356(p)-27(o)27(wieda)-55(j\\241,)]TJ -27.879 -13.549 Td[(\\273e)-373(kiej)-373(\\261ledzt)28(w)27(a)-372(s)-1(k)28(o\\253)1(c)-1(z\\241,)-373(to)-372(ic)27(h)-372(p)-27(opu)1(s)-1(zc)-1(za)-56(j)1(\\241,)-373(\\273e)-373(to)-372(s)-1(\\241d)1(y)-373(ma)-56(j)1(\\241)-373(b)28(y)1(\\242)-373(p)-28(\\363\\271niej,)-372(ale)]TJ 0 -13.549 Td[(ju)1(\\273)-305(trzy)-305(ni)1(e)-1(d)1(z)-1(iele)-305(pr)1(z)-1(es)-1(z\\252o,)-305(a)-305(j)1(e)-1(sz)-1(cz)-1(e)-305(n)1(i)-305(jeden)-304(nie)-305(wr\\363)-28(ci\\252.)-305(Ro)-28(c)28(ho)-305(te\\273)-305(w)27(e)-305(cz)-1(w)28(artek)]TJ 0 -13.55 Td[(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-334(d)1(o)28(w)-1(i)1(adyw)28(a\\242)-334(si\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(or)1(yna)-333(\\273ywie)-334(to)-333(jes)-1(zc)-1(ze)-1(?)]TJ 0 -13.549 Td[({)-380(\\233y)1(w)-1(i)1(e)-1(,)-379(jeno)-379(le)-1(d)1(wie)-380(dy)1(c)27(ha)-379(i)-380(d)1(o)-380(r)1(oz)-1(u)1(m)27(u)-379(ni)1(e)-380(przyc)27(h)1(o)-28(d)1(z)-1(i,)-379(jak)28(o)-379(ten)-380(k)1(lo)-28(ce)-1(k)]TJ -27.879 -13.549 Td[(le\\273)-1(y)84(...)-333(Zw)28(oz)-1(i\\252a)-333(Hank)56(a)-333(do)-28(c)28(h)28(tor\\363)28(w,)-333(to)-333(z)-1(n)1(a)-56(j)1(\\241)-1(cyc)28(h)-333(s)-1(i\\246,)-333(ni)1(c)-334(nie)-333(p)-28(omaga...)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)-27(omog\\241)-334(tam)-333(do)-28(c)28(h)28(tory)84(,)-333(gdzie)-334(c)28(h)28(to)-333(na)-333(\\261)-1(mier\\242)-334(c)28(hory)1(!)]TJ 0 -13.55 Td[(Zmilk\\252y)-383(wycz)-1(erp)1(ane)-384(wsp)-28(omin)1(k)55(ami.)-383(K)1(\\252)-1(\\246b)-27(o)27(w)28(a)-383(z)-1(ap)1(atrzy\\252a)-383(s)-1(i\\246)-383(ws)-1(kr)1(o\\261)-384(sadu)]TJ -27.879 -13.549 Td[(na)-274(d)1(ale)-1(k)56(\\241)-274(top)-27(olo)28(w)27(\\241)-274(dr)1(og\\246)-1(,)-274(wio)-27(d\\241c\\241)-275(d)1(o)-274(m)-1(iasta,)-274(i)-274(p)-27(op\\252akiw)28(a\\252a)-274(z)-275(cic)27(h)1(a)-275(n)1(os)-275(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(uciera)-55(j\\241c...)]TJ 27.879 -13.549 Td[(P)28(otem)-273(za\\261)-273(k)1(rz)-1(\\241t)1(a)-56(j\\241c)-272(s)-1(i)1(\\246)-273(p)1(ilni)1(e)-273(ki)1(e)-1(le)-272(narz\\241dzani)1(a)-272(obiad)1(u)-272(op)-27(o)27(wiad)1(a\\252a)-272(z)-273(w)28(ol-)]TJ -27.879 -13.549 Td[(na)-321(wsz)-1(y)1(s)-1(tk)28(o,)-321(co)-321(si\\246)-322(sta\\252o)-321(w)28(e)-322(ws)-1(i)-320(przez)-322(zim\\246)-1(,)-321(a)-321(cze)-1(go)-321(Agata)-321(zgo\\252a)-321(nie)-321(wiedzia\\252a.)]TJ 27.879 -13.549 Td[(A\\273)-334(s)-1(t)1(ara)-334(rozpl)1(e)-1(t\\252a)-333(r\\246)-1(ce)-334(i)-334(p)-27(o)-28(c)28(h)28(yli\\252a)-333(s)-1(i\\246)-334(k)1(u)-334(ziem)-1(i)-333(z)-1(e)-334(zgrozy)-334(i)-333(z)-1(d)1(umienia,)-333(b)-28(o)]TJ -27.879 -13.55 Td[(te)-416(n)1(o)28(w)-1(i)1(nki)-415(k)1(ie)-1(j)-414(k)55(amienie)-415(s)-1(p)1(ada\\252y)-415(n)1(a)-416(n)1(i\\241)-415(i)-415(pr)1(z)-1(ejmo)28(w)27(a\\252y)-415(du)1(s)-1(z\\246)-416(tak)56(\\241)-415(zgryzot\\241)-415(i)]TJ 0 -13.549 Td[(b)-27(\\363le)-1(m,)-333(\\273e)-334(c)27(hl)1(ipa\\242)-333(c)-1(ic)28(ho)-333(p)-28(o)-27(c)-1(z\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[({)-365(M\\363)-55(j)-365(Bo\\273)-1(e,)-365(tam)-365(w)28(e)-366(\\261wie)-1(cie)-365(c)-1(i\\246giem)-366(m)28(y\\261la\\252am)-366(o)-364(L)-1(i)1(p)-28(cac)27(h)1(,)-365(ale)-365(\\273)-1(eb)28(y)-365(tak)1(ie)]TJ -27.879 -13.549 Td[(spra)28(wy)-276(s)-1(i)1(\\246)-277(dzia\\252y)83(,)-276(to)-276(mi)-276(na)28(w)27(et)-276(i)-276(do)-276(rozum)28(u)-276(nie)-276(przyc)27(h)1(o)-28(d)1(z)-1(i\\252o..)1(.)-276(a)-277(tom)-276(na)28(w)27(et)-276(p)-28(\\363k)1(i)]TJ 0 -13.549 Td[(\\273yc)-1(i)1(a)-382(d\\252ugi)1(e)-1(go)-382(i)-382(n)1(ie)-382(s)-1(\\252ysz)-1(a\\252a)-382(o)-382(p)-27(o)-28(d)1(obn)28(ym!)-382(Z\\252e)-382(s)-1(i\\246)-382(tu)1(ta)-56(j)-381(os)-1(ad)1(z)-1(i\\252o)-382(n)1(a)-382(dob)1(re)-382(c)-1(zy)]TJ 0 -13.55 Td[(co?)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(j)1(akb)28(y)-333(na)-333(to)-333(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o!)]TJ\nET\nendstream\nendobj\n1179 0 obj <<\n/Type /Page\n/Contents 1180 0 R\n/Resources 1178 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1178 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1184 0 obj <<\n/Length 9606      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(368)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(A)-334(mo\\273e)-334(jeno)-333(dop)1(ust)-333(B)-1(o\\273y)-333(z)-1(a)-333(z)-1(\\252o\\261\\242)-334(lu)1(dzk)55(\\241)-333(i)-333(grze)-1(c)28(h)28(y!)]TJ 0 -13.549 Td[({)-294(P)28(ewnie,)-294(\\273e)-295(n)1(ie)-294(inacz)-1(ej.)-293(P)28(an)-293(Je)-1(zus)-294(k)56(arz)-1(e)-294(c)27(h)1(o)-28(\\242b)28(y)-294(za)-294(takie)-294(\\261m)-1(ierteln)1(e)-295(gr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(c)27(h)29(y)83(,)-359(j)1(ak)28(o)-359(to)-359(An)28(tk)56(a)-359(z)-360(mac)-1(o)-28(c)28(h\\241.)-359(No)28(w)28(e)-360(za\\261)-360(pr)1(z)-1(ewin)28(y)-359(id)1(\\241,)-359(s)-1(t)1(a)-56(j\\241)-359(si\\246)-359(na)-359(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(o)-28(cz)-1(ac)28(h!.)1(..)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-425(Agata)-425(b)-27(o)-56(j)1(a\\252)-1(a)-424(s)-1(i)1(\\246)-425(rozp)28(yt)28(yw)28(a\\242)-425(o)-425(wi\\246c)-1(ej,)-424(t)28(ylk)28(o)-425(p)-27(o)-28(d)1(nies\\252)-1(a)-424(roztrz\\246)-1(sion\\241)]TJ -27.879 -13.55 Td[(r\\246k)28(\\246)-334(i)-333(j\\246\\252a)-333(s)-1(i\\246)-333(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie)-334(\\273e)-1(gn)1(a\\242)-334(pacierz)-334(maml\\241c)-334(gor\\241cy)83(.)]TJ 27.879 -13.549 Td[({)-386(Nies)-1(zc)-1(z\\246\\261)-1(cie)-387(tak)1(ie)-387(p)1(ad\\252o)-386(n)1(a)-386(c)-1(a\\252y)-386(n)1(ar\\363)-28(d)-385(i)-386(B)-1(or)1(yna)-386(te\\273)-387(l)1(e)-1(\\273y)-386(b)-27(e)-1(z)-386(du)1(s)-1(zy)83(,)-386(a)]TJ -27.879 -13.549 Td[(p)-27(o)27(wieda)-55(j\\241)-430({)-430(\\261)-1(cisz)-1(y\\252a)-430(g\\252os)-431(ob)1(z)-1(iera)-55(j\\241c)-430(s)-1(i\\246)-430(s)-1(tr)1(ac)27(hl)1(iwie)-431({)-430(jak)28(o)-430(Jagu)1(s)-1(ia)-430(j)1(u\\273)-431(si\\246)-431(n)1(a)]TJ 0 -13.549 Td[(dob)1(re)-340(z)-341(w)28(\\363)-56(j)1(te)-1(m)-340(s)-1(p)1(rz\\246)-1(g\\252a..)1(.)-340(Nie)-340(s)-1(ta\\252o)-340(An)28(tk)56(a,)-340(b)1(rak\\252o)-340(Mateusza,)-340(brak)1(\\252o)-340(i)-340(dru)1(gic)27(h)]TJ 0 -13.549 Td[(par)1(obk)28(\\363)28(w,)-240(to)-240(dob)1(ry)-240(p)1(ierws)-1(zy)-240(z)-241(b)1(rze)-1(ga,)-240(b)29(yle)-241(j)1(e)-1(n)1(o)-240(wygo)-28(dzi\\252..)1(.)-240(O)-240(\\261w)-1(i)1(e)-1(cie)-1(,)-239(\\261)-1(wiec)-1(ie!..)1(.)]TJ 0 -13.549 Td[({)-333(j\\246kn\\246\\252a)-334(za\\252am)27(u)1(j\\241c)-334(r)1(\\246)-1(ce)-334(ze)-334(z)-1(gr)1(oz)-1(y)84(.)]TJ 27.879 -13.55 Td[(St)1(ara)-272(si\\246)-272(ju)1(\\273)-272(nie)-272(ozw)27(a\\252a,)-272(p)-27(o)-28(cz)-1(u)1(\\252a)-272(si\\246)-272(z)-272(nag\\252a)-272(u)1(trud)1(z)-1(on)1(\\241)-272(i)-271(tak)-272(p)1(rze)-1(j)1(\\246)-1(t\\241)-272(t)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(no)28(win)1(k)55(ami,)-333(\\273e)-334(p)-27(o)27(wlek\\252a)-333(s)-1(i\\246)-333(do)-333(ob)-28(\\363r)1(ki)-333(wyp)-27(o)-28(c)-1(zyw)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-270(o)-270(s)-1(am)28(ym)-270(za)-1(c)28(ho)-28(d)1(z)-1(i)1(e)-271(d)1(o)-56(j)1(rze)-1(li)-269(j\\241)-270(wlek)56(\\241c)-1(\\241)-270(si\\246)-270(na)-270(wie\\261)-270(do)-270(zna)-55(jomk)28(\\363)27(w,)]TJ -27.879 -13.549 Td[(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(a)-333(za\\261)-1(,)-333(ki)1(e)-1(j)-333(j)1(u\\273)-334(u)-333(K)1(\\252)-1(\\246b)-27(\\363)27(w)-333(s)-1(i)1(e)-1(d)1(z)-1(ieli)-333(p)1(rz)-1(y)-333(wiec)-1(ze)-1(r)1(z)-1(an)29(yc)27(h)-333(misk)55(ac)28(h.)]TJ 27.879 -13.549 Td[(\\212y\\273k)56(a)-282(na)-281(ni\\241)-281(c)-1(ze)-1(k)56(a\\252a)-282(i)-281(mie)-1(j)1(s)-1(ce,)-282(j)1(u\\261c)-1(i)-281(nie)-282(p)1(ierws)-1(ze)-1(,)-281(ale)-282(za)27(w\\273dy)-281(nie)-282(ostatni)1(e)-1(,)]TJ -27.879 -13.55 Td[(b)-27(o)-391(p)1(rzy)-390(K\\252\\246)-1(b)-27(o)28(w)27(ej,)-390(j)1(e)-1(n)1(o)-391(\\273e)-391(p)-27(o)-56(j)1(ada\\252a)-390(m)-1(a\\252o)-390(wie)-1(l)1(e)-1(,)-390(kiej)-390(to)-390(dziec)-1(i\\241t)1(k)28(o)-391(p)1(rze)-1(b)1(ie)-1(r)1(ne,)]TJ 0 -13.549 Td[(p)-27(ogadu)1(j\\241c)-313(z)-314(cic)27(h)1(a)-313(o)-313(\\261w)-1(i)1(e)-1(cie,)-313(to)-313(o)-313(t)28(yc)28(h)-313(o)-28(d)1(pu)1(s)-1(to)28(wyc)27(h)-312(mie)-1(j)1(s)-1(cac)27(h)1(,)-313(kt\\363r)1(e)-314(b)29(y\\252a)-313(s)-1(c)28(ho-)]TJ 0 -13.549 Td[(dzi\\252a,)-333(a\\273)-334(si\\246)-334(n)1(ie)-1(ma\\252o)-333(te)-1(m)28(u)-333(nad)1(z)-1(iw)28(o)28(w)27(al)1(i.)]TJ 27.879 -13.549 Td[(Za\\261)-308(kiej)-308(j)1(u\\273)-308(no)-28(c)-308(zapad)1(\\252a,)-308(\\273)-1(e)-308(n)1(a)27(w)28(et)-308(i)-308(zorze)-309(gr)1(a)-56(j)1(\\241c)-1(e)-308(p)-28(o)-307(s)-1(zybac)28(h)-308(p)1(rzygas)-1(\\252y)84(,)-308(i)]TJ -27.879 -13.549 Td[(wie\\261)-326(do)-325(c)-1(n)1(a)-325(og\\252)-1(u)1(c)27(h)1(\\252a,)-326(zapal)1(ili)-325(w)-325(iz)-1(b)1(ie)-326(\\261wiat\\252o)-326(i)-325(j)1(\\246)-1(l)1(i)-326(si\\246)-326(z)-325(w)27(oln)1(a)-325(do)-325(s)-1(n)29(u)-325(s)-1(p)-27(os)-1(ob)1(i\\242,)]TJ 0 -13.55 Td[(wte)-1(d)1(y)-464(Agata)-465(wyn)1(ies)-1(\\252a)-464(s)-1(w)28(o)-56(j)1(e)-465(torb)-27(ec)-1(zki)-464(p)-28(o)-27(d)-464(\\261)-1(wiat\\252o)-464(wyjm)28(uj)1(\\241c)-465(z)-465(w)28(olna)-464(r\\363\\273ne)]TJ 0 -13.549 Td[(r\\363\\273no\\261c)-1(i)1(,)-333(jakie)-333(przyn)1(ios)-1(\\252a.)]TJ 27.879 -13.549 Td[(Oto)-27(c)-1(zyli)-492(ci)-492(j\\241)-492(zw)27(ar)1(t)28(ym)-493(k)28(o\\252em)-493(ta)-55(j\\241c)-492(pr)1(z)-1(yd)1(e)-1(c)28(h)28(y)-492(i)-492(d)1(z)-1(iw)-492(j)1(e)-1(j)-492(n)1(ie)-492(z)-1(j)1(ada)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(rozgorza\\252ymi)-334(o)-27(c)-1(zyma.)]TJ 27.879 -13.549 Td[(A)-412(on)1(a)-412(n)1(a)-56(j)1(pierw)-412(p)-27(o)-412(ob)1(raziku)-411(p)-27(o\\261)-1(wi\\246c)-1(an)28(y)1(m)-412(rozda\\252a)-412(k)56(a\\273dem)27(u,)-411(p)-27(ote)-1(m)-412(za\\261)]TJ -27.879 -13.55 Td[(sz)-1(n)28(u)1(ry)-300(paciork)28(\\363)28(w)-300(dzie)-1(wu)1(c)27(hom,)-300(a)-301(tak)-300(p)1(i\\246)-1(k)1(n)28(yc)27(h)1(,)-300(\\273)-1(e)-301(i)1(no)-300(gra\\252y)-300(farb)1(am)-1(i)1(,)-300(w)-1(r)1(z)-1(ask)-300(s)-1(i\\246)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-355(to)-354(ucz)-1(yn)1(i\\252)-355(w)-355(i)1(z)-1(b)1(ie)-1(,)-354(tak)-354(jedn)1(a)-355(pr)1(z)-1(ez)-355(dr)1(ug\\241)-355(cisn\\246\\252y)-355(si\\246)-355(do)-354(lusterk)56(a,)-355(p)1(rzym)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(rza)-56(j)1(\\241c)-1(,)-341(cies)-1(zy\\242)-342(si\\246)-342(sob\\241)-341(i)-341(sz)-1(y)1(j\\246)-342(wzdyma\\242)-342(k)1(ie)-1(j)-340(te)-342(in)1(dory)-341(n)1(apu)1(s)-1(zone;)-341(a)-341(to)-341(i)-341(k)28(oz)-1(ik)1(i)]TJ 0 -13.549 Td[(sie)-1(l)1(ne,)-363(pra)28(wdziwie)-364(misiarskie)-363(nalaz\\252y)-363(s)-1(i\\246)-363(la)-363(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-1(,)-363(i)-363(ca\\252a)-363(pacz)-1(k)56(a)-363(m)-1(ac)28(hork)1(i)]TJ 0 -13.549 Td[(dl)1(a)-250(T)83(omas)-1(za,)-250(w)-250(os)-1(tat)1(ku)-250(i)-249(la)-250(K\\252\\246b)-28(o)28(w)28(e)-1(j)-249(w)-1(y)1(j\\246\\252)-1(a)-249(fry)1(z)-1(k)28(\\246)-250(s)-1(ze)-1(r)1(ok)55(\\241,)-249(wz)-1(b)1(urzon\\241)-250(i)-249(k)28(oloro-)]TJ 0 -13.55 Td[(w)28(\\241)-329(ni)1(c)-1(i\\241)-328(ob)-27(dzie)-1(r)1(gan\\241,)-328(\\273)-1(e)-329(gosp)-27(o)-28(dy)1(ni)-328(a\\273)-329(w)-1(r)1(\\246)-1(cz)-329(pl)1(as)-1(n)1(\\246)-1(\\252a)-328(z)-329(w)-1(i)1(e)-1(lk)1(ie)-1(j)-328(k)28(on)28(t)1(e)-1(n)28(tn)1(o\\261)-1(ci..)1(.)]TJ 27.879 -13.549 Td[(I)-329(ws)-1(zysc)-1(y)-328(rad)1(o)27(w)28(ali)-328(s)-1(i\\246)-329(n)1(ie)-1(ma\\252o,)-329(n)1(ie)-329(raz)-329(i)-329(n)1(ie)-329(dw)28(a)-329(ogl\\241d)1(a)-56(j\\241c)-329(te)-329(\\261licz)-1(n)1(o\\261)-1(ci)-329(i)]TJ -27.879 -13.549 Td[(cie)-1(sz)-1(\\241c)-317(o)-27(c)-1(zy)-317(p)-27(o)-28(d)1(arun)1(k)56(am)-1(i)1(,)-317(a)-316(ona)-317(r)1(ada)-316(w)-1(i)1(e)-1(lce,)-317(z)-317(n)1(ie)-1(ma\\252\\241)-317(l)1(ub)-27(o\\261)-1(ci\\241)-317(p)-27(o)28(wie)-1(d)1(a\\252a,)-317(co)]TJ 0 -13.549 Td[(ile)-333(k)28(os)-1(ztuj)1(e)-334(i)-333(gdzie)-334(to)-333(ku)1(pion)1(e)-1(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-333(w)-333(no)-28(c)-334(p)1(rze)-1(siedzie)-1(l)1(i)-334(p)-27(oredza)-56(j)1(\\241c)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(o)-334(n)1(ie)-1(ob)-27(ec)-1(n)28(y)1(c)27(h.)]TJ 0 -13.549 Td[({)-263(A\\273)-263(strac)28(h)-263(za)-263(gr)1(dyk)28(\\246)-263(\\252ap)1(ie)-1(,)-262(tak)-262(c)-1(ic)28(ho)-262(na)-263(wsi!)-263({)-262(z)-1(au)29(w)27(a\\273y\\252a)-263(w)-263(k)28(o\\253)1(c)-1(u)-262(Agata,)]TJ -27.879 -13.55 Td[(gdy)-346(przymilkl)1(i)-347(i)-347(opad)1(\\252o)-347(ic)27(h)-346(g\\252uc)27(h)1(e)-1(,)-346(m)-1(ar)1(t)27(w)28(e)-348(mil)1(c)-1(ze)-1(n)1(ie)-1(.)-346({)-347(Gdzie)-347(to)-347(p)-28(o)-347(in)1(ne)-347(roki)1(,)]TJ 0 -13.549 Td[(w)-334(t)28(y)1(m)-334(z)-1(wiesno)28(wym)-334(cz)-1(asie)-1(,)-333(to)-333(a\\273e)-334(s)-1(i)1(\\246)-334(wie)-1(\\261)-333(trz\\246)-1(s\\252a)-334(o)-28(d)-332(w)-1(r)1(z)-1(ask)28(\\363)28(w)-334(i)-333(\\261)-1(miec)27(h)1(\\363)27(w!.)1(..)]TJ 27.879 -13.549 Td[({)-363(Bo)-363(jak)28(o)-363(ten)-363(gr)1(\\363b)-363(ot)28(w)28(art)28(y)-363(widzi)-363(si\\246)-363(c)-1(a\\252a)-363(wie\\261)-1(,)-363(\\273e)-363(jeno)-363(k)56(amie)-1(n)1(iem)-364(p)1(rzy-)]TJ -27.879 -13.549 Td[(w)28(ali\\242)-384(i)-384(kr)1(z)-1(y\\273e)-385(p)-27(osta)28(w)-1(i)1(\\242)-1(..)1(.)-384(\\273)-1(e)-384(n)1(a)27(w)28(e)-1(t)-383(pacie)-1(r)1(z)-1(a)-384(n)1(ie)-384(b)-28(\\246dzie)-384(m)-1(i)1(a\\252)-384(kto)-384(zm)-1(\\363)28(wi\\242)-384(ni)-384(n)1(a)]TJ 0 -13.549 Td[(ms)-1(z\\246)-334(da\\242...)-333({)-333(p)-27(ot)27(wierd)1(z)-1(i)1(\\252)-1(a)-333(sm)27(u)1(tnie)-333(K\\252\\246)-1(b)-27(o)28(w)27(a.)]TJ 27.879 -13.55 Td[({)-367(P)1(ra)28(w)-1(d)1(a!)-367(P)29(oz)-1(w)28(olicie)-1(,)-366(gos)-1(p)-27(o)-28(d)1(yni)1(,)-367(to)-367(b)28(y)1(m)-368(an)1(o)-367(n)1(a)-367(g\\363rk)28(\\246)-367(p)-28(osz)-1(\\252a,)-366(k)28(o\\261)-1(ci)-367(me)]TJ -27.879 -13.549 Td[(b)-27(ol\\241)-333(p)-28(o)-333(dr)1(o)-28(dze)-334(i)-333(o)-28(cz)-1(y)-333(j)1(u\\273)-334(\\261pik)-333(morzy)83(.)]TJ\nET\nendstream\nendobj\n1183 0 obj <<\n/Type /Page\n/Contents 1184 0 R\n/Resources 1182 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1182 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1187 0 obj <<\n/Length 4029      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(369)]TJ -330.353 -35.866 Td[({)-333(A)-334(\\261pi)1(jcie)-1(,)-333(gd)1(z)-1(ie)-333(w)27(ama)-334(d)1(o)-333(up)-27(o)-28(dob)29(y)-334(p)1(rzylegn\\241\\242,)-333(m)-1(iejsca)-334(n)1(ie)-334(b)1(raku)1(je.)]TJ 0 -13.549 Td[(St)1(ara)-386(wnet)-386(p)-28(ozbi)1(e)-1(ra\\252a)-386(sakwy)-386(i)-386(j)1(\\246)-1(\\252a)-386(si\\246)-387(w)-386(sionce)-387(skrob)1(a\\242)-387(p)-27(o)-386(dr)1(ab)-28(ce,)-386(gdy)]TJ -27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-334(zac)-1(z\\246)-1(\\252a)-333(m\\363)27(wi\\242)-333(z)-1(a)-333(ni)1(\\241)-334(p)1(rze)-1(z)-334(wyw)28(arte)-334(d)1(rzwi:)]TJ 27.879 -13.549 Td[({)-280(Hal)1(e)-1(!)-279(m)-1(a\\252om)-280(n)1(ie)-280(z)-1(ab)1(ac)-1(zy\\252a)-280(w)28(ama)-280(p)-27(o)27(wiedzie\\242)-1(,)-279(\\273)-1(e)-280(wzielim)-280(w)28(as)-1(z\\241)-280(pi)1(e)-1(r)1(z)-1(yn)1(-)]TJ -27.879 -13.549 Td[(k)28(\\246)-391(z)-1(e)-391(s)-1(k)1(rzyni.)1(..)-391(Mar)1(c)-1(y)1(c)27(ha)-391(c)28(hor)1(z)-1(a\\252a)-391(w)-391(zapust)28(y)-391(n)1(a)-391(krost)28(y)83(..)1(.)-391(zi\\241b)-391(b)29(y\\252)-391(taki,)-390(przy-)]TJ 0 -13.55 Td[(o)-28(d)1(z)-1(ia\\242)-317(n)1(ie)-317(b)28(y\\252o)-317(cz)-1(ym...)-316(to\\261)-1(w)28(a)-317(se)-318(p)-27(o\\273yc)-1(zyli)-316(o)-28(d)-316(w)27(a)-55(ju)1(...)-317(p)1(ierz)-1(y)1(na)-317(j)1(u\\273)-317(wywie)-1(t)1(rz)-1(on)1(a)]TJ 0 -13.549 Td[(i)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)-333(jutr)1(o)-334(a)-333(zanies)-1(i)1(e)-334(s)-1(i)1(\\246)-334(j\\241)-333(na)-333(g\\363r\\246...)]TJ 27.879 -13.549 Td[({)-333(Pierzyn\\246...)-333(w)28(as)-1(za)-333(w)27(ola.)1(..)-333(ju)1(\\261)-1(ci,)-333(kiej)-333(b)28(y\\252o)-333(p)-27(o)-1(t)1(rz)-1(a.)1(..)-333(ju)1(\\261)-1(ci...)]TJ 0 -13.549 Td[(Ch)28(yci\\252o)-408(j\\241)-408(tak)-407(c)-1(osik)-408(za)-408(gardziel,)-408(\\273e)-409(u)1(rw)28(a\\252)-1(a,)-407(do)28(wle)-1(k)1(\\252)-1(a)-408(si\\246)-408(p)-28(o)-408(omac)27(k)1(u)-408(do)]TJ -27.879 -13.549 Td[(skrzyni)1(,)-245(pr)1(z)-1(yk)1(ucn\\246\\252)-1(a)-245(i)-244(p)-28(o)-27(dni)1(\\363s)-1(\\252sz)-1(y)-244(w)-1(iek)28(o)-245(j)1(\\246)-1(\\252a)-245(\\261pies)-1(zni)1(e)-246(d)1(r\\273)-1(\\241cymi)-245(r\\246k)28(oma)-245(b\\252\\241dzi\\242)]TJ 0 -13.549 Td[(i)-333(obmacyw)27(a\\242)-334(sw)28(o)-56(je)-333(w)-1(i)1(ano)-333(\\261)-1(miertelne...)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci...)-418(pi)1(e)-1(r)1(z)-1(yn)29(y)-419(n)1(ie)-419(b)28(y\\252o..)1(.)-419(a)-418(no)28(w)28(\\241)-419(ca\\252kiem)-419(os)-1(ta)28(wi\\252a...)-418(w)-419(czys)-1(t)28(ym)-418(oble-)]TJ -27.879 -13.549 Td[(cz)-1(eniu)1(...)-362(ni)-362(r)1(az)-1(u)-362(n)1(ie)-363(u\\273yw)28(an\\241..)1(.)-363(d)1(y\\242)-363(j)1(\\241)-363(z)-363(t)28(yc)28(h)-362(nale\\271)-1(n)29(yc)27(h)-362(p)1(i\\363rek)-362(p)-28(o)-362(past)28(wis)-1(k)56(ac)27(h)]TJ 0 -13.549 Td[(u\\261ciba\\252a..)1(.)-334(b)29(yle)-334(mie\\242)-334(na)-333(t\\246)-334(ostatn)1(i\\241)-334(sk)28(onan)1(ia)-333(go)-28(dzin)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[(A)-333(w)-1(zieni)-333(j)1(\\241...)-333(wz)-1(ieni)1(...)]TJ 0 -13.549 Td[(P\\252acz)-334(j)1(\\241)-334(tak)1(i)-334(c)28(h)28(yci\\252)-334(\\273a\\252o\\261)-1(l)1(iw)27(o\\261ci)-334(p)-27(e\\252e)-1(n)1(,)-334(\\273e)-334(d)1(z)-1(iw)-333(jej)-333(s)-1(erce)-334(n)1(ie)-334(p)-27(\\246)-1(k\\252o.)]TJ 0 -13.55 Td[(I)-337(d)1(\\252)-1(u)1(go)-337(p)1(ac)-1(ierz)-337(m\\363)27(wi\\252a)-337(\\252zami)-337(go)-337(p)-27(olew)27(a)-55(j\\241c)-337(gorzkimi,)-337(d)1(\\252ugo)-337(p)1(\\252ak)56(a\\252)-1(a)-336(i)-337(b)-27(o-)]TJ -27.879 -13.549 Td[(le\\261)-1(n)1(ie)-334(a)-333(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-333(s)-1(k)56(ar\\273y\\252a)-333(s)-1(i)1(\\246)-334(Je)-1(zuso)28(wi)-334(k)28(o)-27(c)27(han)1(e)-1(m)28(u)-333(na)-333(kr)1(z)-1(ywd)1(\\246)-334(s)-1(w)28(o)-56(j)1(\\241...)]TJ 27.879 -13.549 Td[(No)-28(c)-335(m)28(usia\\252a)-335(ju)1(\\273)-335(b)28(y\\242)-335(d)1(u\\273a,)-335(b)-27(o)-335(an)1(o)-335(ku)1(ry)-334(pia\\242)-335(zac)-1(zyna\\252y)-334(na)-334(p)-28(\\363\\252n)1(o)-28(c)-1(ek)-334(alb)-28(o)]TJ -27.879 -13.549 Td[(i)-333(na)-333(o)-28(d)1(m)-1(i)1(an\\246)-1(.)]TJ\nET\nendstream\nendobj\n1186 0 obj <<\n/Type /Page\n/Contents 1187 0 R\n/Resources 1185 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1185 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1190 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(370)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(26.)]TJ\nET\nendstream\nendobj\n1189 0 obj <<\n/Type /Page\n/Contents 1190 0 R\n/Resources 1188 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1188 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1193 0 obj <<\n/Length 7145      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(27)]TJ/F17 10.909 Tf 0 -73.325 Td[(Naza)-56(ju)1(trz)-334(b)29(y\\252a)-334(P)29(almo)27(w)28(a)-333(Nie)-1(d)1(z)-1(i)1(e)-1(la.)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-241(d)1(obrze)-241(p)1(rz)-1(ed)-240(s\\252o\\253ce)-1(m,)-240(ale)-241(j)1(u\\273)-241(o)-240(du)1(\\273)-1(y)1(m)-241(dn)1(iu,)-240(wyj)1(rza\\252a)-241(z)-241(Bory)1(no)28(w)27(ej)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)28(y)-338(Han)1(k)55(a,)-338(w)-338(w)27(e\\252niak)-338(jeno)-338(pr)1(z)-1(y)28(o)-27(dziana)-338(i)-338(jak)56(\\241\\261)-339(c)27(h)29(u\\261c)-1(in)1(\\246)-1(,)-338(\\273e)-339(to)-338(z)-1(i\\241b)-338(b)29(y\\252)-339(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-334(galan)28(t)28(y)84(.)]TJ 27.879 -13.55 Td[(Za)-56(j)1(rza\\252a)-354(a\\273)-355(za)-354(op)1(\\252otki)-354(n)1(a)-354(dr)1(og\\246)-355(czarni)1(a)27(w)28(\\241,)-354(r)1(os)-1(ami)-354(op)1(it\\241,)-354(a)-353(gdzie)-1(n)1(iegdzie)]TJ -27.879 -13.549 Td[(osz)-1(ron)1(ia\\252\\241.)-472(P)1(usto)-472(b)28(y)1(\\252o)-472(jes)-1(zcz)-1(e)-472(i)-472(n)1(i)-472(znak)1(u)-472(\\273ycia,)-472(\\261wit)-472(j)1(e)-1(n)1(o)-472(s)-1(k)1(rzy\\252)-472(si\\246)-472(s)-1(u)1(c)27(h)28(y)-471(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(a\\252)-482(zm)-1(ar)1(t)27(wia\\252e)-482(cz)-1(u)1(b)28(y)-482(d)1(rze)-1(w)-482(w)-481(m)-1(o)-28(d)1(re)-482(ob)1(le)-1(cz)-1(eni)1(a,)-482(za\\261)-482(re)-1(sztki)-482(n)1(o)-28(cy)]TJ 0 -13.549 Td[(cz)-1(ai\\252y)-333(si\\246)-334(strac)27(h)1(liwie)-334(p)-27(o)-28(d)-333(p)1(\\252otami.)]TJ 27.879 -13.549 Td[(P)28(o)28(wr\\363)-28(ci\\252a)-404(n)1(a)-404(ganek)-403(i)-404(z)-404(tru)1(dem)-404(przykl)1(\\246)-1(kn)1(\\241)28(w)-1(szy)83(,)-403(\\273)-1(e)-404(to)-404(l)1(e)-1(d)1(a)-404(t)28(ydzie\\253)-403(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dziew)27(a\\252a)-333(s)-1(i)1(\\246)-334(ro)-28(d)1(\\363)28(w)-1(,)-333(j)1(\\246)-1(\\252a)-333(m)-1(\\363)28(wi\\242)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-334(b\\252\\241dz\\241c)-334(p)-27(o)-333(\\261)-1(wiec)-1(ie)-333(z)-1(aspan)28(y)1(m)-1(i)-333(o)-28(czym)-1(a.)]TJ 27.879 -13.55 Td[(Dzie)-1(\\253)-310(z)-1(a\\261)-311(roznosi\\252)-311(s)-1(i)1(\\246)-312(z)-311(w)27(oln)1(a)-311(bi)1(a\\252)-1(a)28(w)28(\\241)-311(p)-28(o\\273og\\241,)-311(zorze)-312(p)1(rz)-1(ecie)-1(r)1(a\\252y)-311(s)-1(i\\246)-311(kieb)28(y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-223(s)-1(i)1(to,)-223(b)1(rz)-1(ask)56(am)-1(i)-222(osypu)1(j\\241c)-223(ws)-1(c)28(ho)-28(d)1(ni\\241)-222(s)-1(tr)1(on\\246,)-223(kt)1(\\363ra)-223(p)-27(o)-28(dn)1(os)-1(i)1(\\252a)-223(s)-1(i)1(\\246)-223(c)-1(oraz)-223(wy\\273e)-1(j)]TJ 0 -13.549 Td[(ni)1(b)28(y)-262(te)-1(n)-262(z\\252ot)28(y)-262(bald)1(ac)27(h)-262(nad)-262(p)1(romieniej\\241c\\241)-263(j)1(u\\273,)-262(ale)-263(j)1(e)-1(sz)-1(cz)-1(e)-263(n)1(iew)-1(i)1(dn\\241)-262(monstran)1(c)-1(j)1(\\241.)]TJ 27.879 -13.549 Td[(\\233e)-293(za\\261)-293(p)1(rzymroze)-1(k)-292(b)28(y)1(\\252)-292(z)-293(no)-27(c)-1(y)84(,)-292(to)-292(p\\252ot)28(y)84(,)-292(mos)-1(tki)1(,)-292(dac)28(h)28(y)83(,)-291(i)-292(k)56(am)-1(ieni)1(e)-293(p)-27(ol\\261nie-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(y)-333(sz)-1(r)1(onem)-1(,)-333(a)-333(dr)1(z)-1(ew)27(a)-333(sta\\252y)-334(k)1(ie)-1(j)-332(c)27(hm)28(ury)-333(p)1(rze)-1(b)1(ie)-1(l)1(one.)]TJ 27.879 -13.55 Td[(Wie\\261)-297(jes)-1(zc)-1(ze)-297(s)-1(p)1(a\\252a)-297(w)-297(przyziem)-1(n)28(y)1(c)27(h)-296(m)-1(r)1(ok)55(ac)28(h)-297(u)1(topi)1(ona,)-297(\\273e)-297(jeno)-297(p)-27(oni)1(e)-1(kt)1(\\363re)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)28(y)-229(b)1(ard)1(z)-1(iej)-229(p)1(rz)-1(y)-229(d)1(ro)-28(d)1(z)-1(e)-229(wy\\252up)28(yw)28(a\\252y)-229(s)-1(i)1(\\246)-230(ni)1(e)-1(co)-229(ja\\261ni\\241)-229(b)1(ie)-1(lon)29(yc)27(h)-229(\\261cian,)-229(za\\261)-230(p)-27(o)]TJ 0 -13.549 Td[(omglonej)-364(g\\252adzi)-364(s)-1(ta)28(wu)-364(wle)-1(k)1(\\252)-1(y)-364(si\\246)-365(d)1(\\252ugac)27(h)1(ne,)-364(c)-1(zarni)1(a)27(w)28(e)-365(p)1(as)-1(ma)-365(p)1(r\\241d)1(\\363)27(w,)-364(jak)28(ob)29(y)]TJ 0 -13.549 Td[(sz)-1(kl)1(iw)27(a)-333(t\\246\\273)-1(ej\\241ce)-1(.)]TJ 27.879 -13.549 Td[(M\\252yn)-286(gd)1(z)-1(iesik)-287(h)29(urk)28(ota\\252)-286(b)-28(ez)-287(pr)1(z)-1(es)-1(tan)1(ku)1(,)-287(a)-287(j)1(ak)56(a\\261)-287(niewidn)1(a)-287(rzec)-1(zk)55(a)-286(m)-1(r)1(o)28(w)-1(i)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334(p)-27(o)-334(k)56(amie)-1(n)1(iac)27(h)-332(c)-1(ic)28(h)28(u\\261kim,)-333(pr)1(z)-1(yt)1(a)-56(jon)29(ym)-334(b)-27(e)-1(\\252k)28(otan)1(iem)-1(.)]TJ 27.879 -13.549 Td[(Kok)28(ot)28(y)-376(p)1(ia\\252y)-376(ju)1(\\273)-377(na)-376(u)1(m)-1(or)-376(i)-376(p)1(tas)-1(zyn)28(y)-376(r)1(\\363\\273)-1(n)1(e)-377(zgw)27(ar)1(z)-1(a\\252y)-376(si\\246)-377(z)-377(cic)28(ha)-376(p)-28(o)-376(sa-)]TJ -27.879 -13.549 Td[(dac)28(h)-430(jak)28(ob)29(y)-430(w)-431(t)28(ym)-430(pacierz)-1(u)-429(s)-1(p)-27(o\\252e)-1(cz)-1(n)29(ym)-1(,)-430(k)1(ie)-1(j)-429(Hank)56(a)-430(przec)27(kn)1(\\246)-1(\\252a,)-430(\\261pik)-430(j)1(\\241)-431(an)1(o)]TJ 0 -13.549 Td[(zm)-1(or)1(z)-1(y\\252)-347(i)-346(s)-1(tr)1(ud)1(z)-1(on)1(e)-1(,)-347(n)1(iew)-1(y)1(w)27(cz)-1(aso)28(w)27(an)1(e)-348(k)28(o\\261c)-1(i)-346(c)-1(i)1(\\241)-28(gn\\246\\252y)-347(p)-27(o)-28(d)-346(pierzyn\\246,)-347(ale)-347(si\\246)-347(nie)]TJ 0 -13.549 Td[(da\\252a,)-344(s)-1(zron)1(e)-1(m)-345(p)1(rze)-1(tar)1(\\252a)-345(o)-28(cz)-1(y)-344(i)-344(nalaz\\252s)-1(zy)-345(to)-344(z)-1(agu)1(bion)1(e)-345(s)-1(\\252o)28(w)28(o)-345(pacierza)-345(p)-27(os)-1(z\\252a)-345(w)]TJ 0 -13.55 Td[(p)-27(o)-28(dw)28(\\363rze)-334(nagl)1(\\241da\\242)-334(c)28(h)28(ud)1(ob)28(y)-333(a)-334(b)1(ud)1(z)-1(i)1(\\242)-334(\\261)-1(p)1(i\\241ce)-1(.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-299(wyw)28(ar\\252a)-299(dr)1(z)-1(wi)-299(d)1(o)-299(wie)-1(p)1(rzk)55(a,)-298(kt\\363ren)-299(u)1(s)-1(i)1(\\252)-1(o)28(w)28(a\\252)-299(na)-299(p)1(rze)-1(d)1(nie)-299(kul)1(as)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-328(zw)-1(l)1(e)-1(c,)-327(ale)-328(\\273e)-328(s)-1(p)1(a\\261)-1(n)29(y)-328(b)29(y\\252)-328(wielce)-1(,)-327(zw)27(al)1(i\\252)-328(si\\246)-328(n)1(a)-327(grub)28(y)-327(zad)-327(i)-327(jeno)-327(c)27(h)1(rz\\241k)56(a)-56(j\\241cym)]TJ 0 -13.549 Td[(ry)1(jem)-334(w)27(o)-27(dzi\\252)-334(za)-333(ni\\241,)-333(gd)1(y)-334(m)28(u)-333(\\273arc)-1(i)1(e)-334(pr)1(z)-1(egarni)1(a\\252a)-334(d)1(orzuca)-56(j\\241c)-333(niec)-1(o\\261)-333(\\261)-1(wie\\273)-1(ego.)]TJ 27.879 -13.549 Td[({)-350(P)28(ortk)1(i)-351(t)1(ak)-351(ci\\246\\273)-1(\\241,)-350(\\273e)-351(ci)-350(i)-351(n)1(a)-350(kulasy)-350(ni)1(e)-1(\\252acno;)-350(jak)-350(n)1(ic)-351(ma)-350(na)-350(c)-1(zte)-1(r)1(y)-350(palce)]TJ -27.879 -13.55 Td[(s\\252)-1(on)1(in)28(y)84(.)-333({)-334(O)1(bmac)-1(a\\252a)-333(m)27(u)-333(b)-27(oki)-333(z)-334(l)1(ub)-27(o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[(Ot)28(w)28(ar\\252a)-262(p)-27(ote)-1(m)-262(do)-262(k)1(ur)-261(p)-28(or)1(z)-1(u)1(c)-1(iwsz)-1(y)-262(p)1(rze)-1(d)-261(pr)1(ogie)-1(m)-262(n)1(a)-262(przyn)1(\\246)-1(t\\246)-262(\\261)-1(wi\\253)1(s)-1(k)1(ie)-1(go)]TJ -27.879 -13.549 Td[(jedzenia)-449(pr)1(z)-1(ygar)1(\\261)-1(ci\\241,)-449(\\273)-1(e)-449(s)-1(f)1(ru)28(w)28(a\\252y)-450(z)-449(grz\\246)-1(d)-449(skw)28(apliwie,)-449(k)28(ogut)28(y)-449(za\\261)-450(pia\\242)-449(w)-1(zi\\246\\252y)]TJ 358.232 -29.888 Td[(371)]TJ\nET\nendstream\nendobj\n1192 0 obj <<\n/Type /Page\n/Contents 1193 0 R\n/Resources 1191 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1191 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1196 0 obj <<\n/Length 8777      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(372)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozg\\252o\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(G\\246s)-1(i)1(,)-297(za)27(w)28(arte)-297(p)-27(ob)-27(ok,)-297(p)1(rzyj\\246\\252y)-297(j)1(\\241)-297(g\\246ganiem)-297(i)-297(syk)56(am)-1(i)1(;)-297(wygn)1(a\\252)-1(a)-296(pr)1(e)-1(cz)-298(g\\246sio-)]TJ -27.879 -13.549 Td[(ry)84(,)-334(i\\273)-334(w)-1(n)1(e)-1(tk)1(i)-334(w)27(o)-55(jn)1(\\246)-335(ucz)-1(y)1(ni\\252y)-334(z)-334(kur)1(am)-1(i,)-333(a)-335(zac)-1(z\\246\\252)-1(a)-334(wyci\\241)-28(ga\\242)-334(s)-1(p)-27(o)-28(d)-334(matek,)-334(s)-1(i)1(e)-1(d)1(z)-1(\\241-)]TJ 0 -13.549 Td[(cyc)27(h)-333(w)-333(gniazdac)28(h,)-333(ja)-55(ja)-333(i)-333(pr)1(z)-1(epatr)1(yw)27(a\\242)-333(je)-334(p)-27(o)-28(d)-333(\\261wiat\\252o.)]TJ 27.879 -13.549 Td[({)-391(Leda)-391(go)-28(d)1(z)-1(in)1(a)-391(klu)1(\\242)-392(si\\246)-392(b)-27(\\246)-1(d)1(\\241)-391({)-391(m)27(y\\261la\\252a)-391(nas\\252uc)28(h)28(uj)1(\\241c)-392(cic)27(h)1(e)-1(go,)-391(l)1(e)-1(d)1(w)-1(i)1(e)-392(o)-28(d)1(-)]TJ -27.879 -13.55 Td[(cz)-1(u)1(te)-1(go)-333(dziob)1(ania)-333(w)-334(j)1(a)-56(j)1(ac)27(h.)]TJ 27.879 -13.549 Td[(Ryc)27(h)29(t)28(yk)-263(i)-263(\\212ap)1(a)-263(wylaz\\252)-264(z)-263(bu)1(dy)84(,)-263(ki)1(e)-1(j)-262(s)-1(z\\252a)-263(ku)-263(sta)-56(j)1(ni)1(,)-263(pr)1(z)-1(ec)-1(i\\241)-27(gn\\241\\252)-263(si\\246)-264(a)-263(ziew)27(a\\252,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(bacz)-1(\\241c)-333(na)-333(s)-1(y)1(c)-1(z\\241c)-1(e)-334(n)1(a\\253)-333(g\\241s)-1(i)1(ory)84(.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(!)-333(p)1(r\\363\\273niacz)-1(y)1(s)-1(k)28(o,)-333(ni)1(b)28(y)-333(par)1(ob)-333(no)-28(c)-333(prze)-1(syp)1(ia,)-333(c)-1(ob)28(y)-333(str\\363\\273o)28(w)27(a\\252!)]TJ 0 -13.549 Td[(Pi)1(e)-1(s)-461(p)-27(om)-1(ac)28(ha\\252)-461(ogon)1(e)-1(m,)-460(s)-1(zc)-1(ze)-1(k)1(n\\241\\252)-461(rad)1(o\\261)-1(n)1(ie,)-461(b)1(uc)27(h)1(n\\241\\252)-461(p)1(rze)-1(z)-461(ku)1(ry)84(,)-461(a\\273)-461(si\\246)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(z)-1(e)-372(p)-27(os)-1(y)1(pa\\252o,)-371(i)-372(d)1(alej\\273e)-372(drze)-1(\\242)-372(si\\246)-372(d)1(o)-372(n)1(ie)-1(j)1(,)-371(s)-1(k)56(ak)56(a\\242)-372(do)-371(piersi,)-371(a)-372(p)-27(olizyw)28(a\\242)-372(r\\246c)-1(e,)]TJ 0 -13.55 Td[(\\273e)-334(rad)1(a)-334(n)1(ie)-1(r)1(ada)-333(p)-27(o)-1(g\\252ask)56(a\\252a)-334(go)-333(p)-27(o)-334(\\252b)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-389(Dru)1(gi)-389(cz)-1(\\252o)28(wie)-1(k)-389(a)-389(t)1(ak)-389(c)-1(zuj)1(\\241c)-1(y)-389(n)1(ie)-389(b)-28(\\246dzie,)-389(jak)28(o)-389(to)-389(st)28(w)27(orzenie.)-389(Miar)1(kuj)1(e)]TJ -27.879 -13.549 Td[(ju)1(c)27(h)1(a)-253(gosp)-28(o)-28(d)1(arza!)-253({)-252(Wypr)1(os)-1(to)28(w)28(a\\252a)-253(si\\246)-253(\\271)-1(d)1(z)-1(iebk)28(o)-252(w)27(o)-27(dz\\241)-1(c)-253(o)-27(c)-1(zyma)-253(p)-27(o)-253(os)-1(zron)1(ia\\252yc)27(h)]TJ 0 -13.549 Td[(dac)28(hac)28(h,)-333(b)-27(o)-334(j)1(as)-1(k)28(\\363\\252ki,)-333(siedz\\241c)-1(e)-334(r)1(z)-1(\\246dem)-334(n)1(a)-334(k)56(alenicy)84(,)-334(za\\261w)-1(i)1(e)-1(gota\\252y)-333(pi)1(e)-1(\\261c)-1(i)1(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-302(P)1(ietrek!)-301(Dz)-1(ie\\253)-301(ano)-301(kiej)-301(w)27(\\363\\252!)-301({)-302(zakrzycz)-1(a\\252a)-301(bij)1(\\241c)-302(pi\\246\\261)-1(ci\\241)-301(w)27(e)-302(d)1(rzw)-1(i)-301(sta)-56(j)1(ni,)]TJ -27.879 -13.55 Td[(a)-379(p)-28(os\\252ysz)-1(a)28(ws)-1(zy)-379(m)-1(r)1(ucz)-1(enie)-379(i)-380(o)-27(dsu)28(w)27(an)1(ie)-380(za)28(w)27(ory)-379(wyw)28(ar\\252a)-379(dr)1(ugie)-380(zaraz)-380(d)1(rzwi)-380(d)1(o)]TJ 0 -13.549 Td[(ob)-27(ory)84(.)]TJ 27.879 -13.549 Td[(Kr)1(o)27(wy)-333(le\\273)-1(a\\252y)-333(rz\\246dem)-334(pr)1(z)-1(ed)-333(\\273)-1(\\252ob)1(am)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(Witek!)-333(A)-333(to)-334(\\261pi)-333(p)-27(okrak)56(a,)-333(kiej)-333(p)-27(o)-334(w)28(es)-1(elu!)]TJ 0 -13.549 Td[(Ch\\252op)1(ak)-388(s)-1(i)1(\\246)-389(wraz)-388(pr)1(z)-1(ebu)1(dzi\\252,)-388(sk)28(o)-28(c)-1(zy\\252)-388(z)-388(pry)1(c)-1(zy)-388(i)-388(j)1(\\241\\252)-388(p)-28(o\\261piesz)-1(n)1(ie)-389(w)28(c)-1(i)1(\\241)-28(ga\\242)]TJ -27.879 -13.55 Td[(p)-27(ortcz)-1(yn)29(y)-333(i)-334(cosik)-333(m)-1(amrota\\242)-333(s)-1(tr)1(ac)27(hl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[({)-307(P)1(rzyrzu\\242)-307(kr)1(o)27(w)28(om)-307(s)-1(i)1(ana,)-307(b)29(y)-307(p)1(rze)-1(jad)1(\\252y)-307(d)1(o)-307(ud)1(o)-56(j)1(u,)-306(i)-307(zaraz)-307(pr)1(z)-1(yc)28(ho)-28(d)1(\\271)-307(s)-1(kr)1(o-)]TJ -27.879 -13.549 Td[(ba\\242)-284(z)-1(i)1(e)-1(mni)1(aki.)-284(A)-284(\\252ysuli)-283(nie)-284(da)28(w)28(a)-56(j,)-283(niec)27(h)-283(j\\241)-284(s)-1(ama)-284(pasie)-284({)-284(do)-28(d)1(a\\252a)-284(t)27(w)28(ard)1(o,)-284(b)-27(o)-284(b)28(y\\252a)]TJ 0 -13.549 Td[(to)-333(kro)28(w)28(a)-334(Jagu)1(s)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(j\\241)-333(pas\\241,)-333(a\\273)-1(e)-334(k)1(ro)28(w)27(a)-333(ryczy)-334(i)-333(z)-333(g\\252)-1(o)-27(du)-333(s\\252om)-1(\\246)-333(s)-1(p)-27(o)-28(d)-333(sie)-1(b)1(ie)-334(wyj)1(ada.)]TJ 0 -13.55 Td[({)-333(A)-334(n)1(iec)27(h)-333(zdyc)28(ha,)-333(ni)1(e)-334(m)-1(o)-55(ja)-333(s)-1(t)1(rata!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(za)28(w)-1(zi\\246c)-1(ie.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-231(j)1(e)-1(sz)-1(cze)-232(tam)-231(c)-1(osik)-230(m)-1(ru)1(kn)1(\\241\\252)-1(,)-230(ale)-231(s)-1(k)28(oro)-231(wysz\\252)-1(a,)-230(gruc)28(hn)1(\\241\\252)-231(s)-1(i\\246)-231(w)-231(p)-28(op)1(rze)-1(k)]TJ -27.879 -13.549 Td[(bar)1(\\252ogu)-333(z)-334(ob)-27(e)-1(r)1(te)-1(lk)1(ie)-1(m)-333(w)-334(gar\\261ci,)-333(b)28(yle)-333(jes)-1(zc)-1(ze)-334(z)-334(p)1(ac)-1(ierz)-334(zadr)1(z)-1(ema\\242)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-253(z)-1(a\\261)-254(p)-27(os)-1(z\\252a)-254(jes)-1(zcz)-1(e)-254(do)-253(s)-1(to)-27(do\\252y)83(,)-253(gdzie)-254(na)-253(klepisku)-253(okry)1(te)-254(s)-1(\\252om\\241)-254(le\\273)-1(a\\252y)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(aki)-391(pr)1(z)-1(ebieran)1(e)-392(do)-391(sadze)-1(n)1(ia)-391(i)-392(za)-56(j)1(rza\\252a)-392(p)-27(o)-28(d)-391(sz)-1(op)-27(\\246,)-391(k)28(\\246)-1(d)1(y)-391(s)-1(k\\252ad)1(ali)-391(ws)-1(ze)-1(lk)1(i)]TJ 0 -13.55 Td[(sprz\\246)-1(t)-253(gosp)-27(o)-28(darski.)-253(\\212ap)1(a)-253(w)-1(y)1(s)-1(k)56(akiw)28(a\\252)-253(prze)-1(d)-252(ni\\241,)-253(co)-253(c)27(h)28(wila)-253(zbacz)-1(a)-55(j\\241c)-254(d)1(o)-253(g\\246)-1(sior\\363)28(w)]TJ 0 -13.549 Td[(i)-410(w)27(o)-55(jn)1(\\246)-411(z)-411(n)1(imi)-411(czyni\\241c,)-410(a\\273)-411(ws)-1(zystk)28(o)-411(ob)-27(ejrza)28(ws)-1(zy)-411(b)1(ac)-1(zni)1(e)-1(,)-410(cz)-1(y)-410(j)1(akiej)-410(s)-1(zk)28(o)-28(dy)-410(z)]TJ 0 -13.549 Td[(no)-27(c)-1(y)-422(n)1(ie)-422(m)-1(a,)-421(jak)-422(to)-421(c)-1(zyni\\252a)-422(co)-422(dn)1(ia,)-422(p)-27(olaz\\252a)-422(do)-422(p)1(rze)-1(\\252azu,)-422(wyj)1(rze)-1(\\242)-422(w)-423(p)-27(ola)-422(n)1(a)]TJ 0 -13.549 Td[(ozim)-1(i)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246\\252)-1(a)-333(zno)28(wu)-333(m)-1(\\363)28(wi\\242)-334(p)1(rze)-1(r)1(w)27(an)28(y)-333(p)1(ac)-1(ierz.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-315(te)-1(\\273)-315(ju)1(\\273)-316(ws)-1(ta\\252o,)-315(wskro\\261)-315(s)-1(ad)1(\\363)27(w)-315(p)-27(o)27(wia\\252a)-315(wic)27(h)29(ura)-315(p)1(\\252om)-1(ieni)1(,)-315(\\273)-1(e)-315(s)-1(zron)28(y)]TJ -27.879 -13.55 Td[(si\\246)-436(z)-1(aiskrzy\\252y)-436(i)-435(rosy)-436(j)1(\\246)-1(\\252y)-436(sk)56(ap)28(yw)28(a\\242)-437(z)-436(d)1(rz)-1(ew;)-436(wiater)-436(te\\273)-436(s)-1(i\\246)-436(p)-27(oru)1(s)-1(zy\\252)-436(i)-436(gmera\\252)]TJ 0 -13.549 Td[(cic)27(h)28(u)1(\\261)-1(k)28(o)-304(w)-305(ga\\252\\246z)-1(iac)28(h,)-304(s)-1(k)28(o)28(wron)1(ki)-304(dzw)27(on)1(i\\252y)-304(c)-1(oraz)-304(rz)-1(\\246si\\261)-1(ciej,)-304(a)-305(w)28(e)-305(ws)-1(i)1(,)-305(n)1(a)-305(d)1(rogac)27(h)]TJ 0 -13.549 Td[(cz)-1(yn)1(i\\252)-290(si\\246)-290(ru)1(c)27(h)1(,)-290(s\\252yc)27(h)1(a\\242)-290(b)28(y\\252o)-290(c)28(hlu)1(s)-1(t)1(anie)-290(w)28(o)-28(dy)-289(p)1(rz)-1(y)-289(nab)1(ierani)1(u)-289(z)-1(e)-290(sta)28(w)-1(u)1(,)-290(wr)1(\\363tnie)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-296(niek)56(a)-56(j\\261)-296(d)1(ar\\252y)-295(s)-1(i\\246)-296(zard)1(z)-1(ewia\\252e)-1(,)-295(to)-296(g\\246s)-1(i)-295(gdzies)-1(i)1(k)-296(kr)1(z)-1(ycza\\252)-1(y)-295(i)-295(pies)-296(nasz)-1(cz)-1(ekiw)28(a\\252)]TJ 0 -13.549 Td[(ab)-27(o)-334(i)-333(g\\252os)-334(l)1(udzki)-333(rozbr)1(z)-1(miew)27(a\\252)-333(w)-334(p)-27(oran)1(k)28(o)27(w)28(ej)-333(c)-1(ic)28(ho\\261c)-1(i.)]TJ 27.879 -13.55 Td[(Wie\\261)-284(si\\246)-284(b)1(ud)1(z)-1(i\\252a)-283(p)-27(\\363\\271)-1(n)1(iej)-283(\\271)-1(d)1(z)-1(iebk)28(o,)-283(\\273e)-284(to)-283(n)1(ie)-1(d)1(z)-1(i)1(e)-1(la)-283(b)28(y)1(\\252)-1(a)-283(i)-283(k)56(a\\273)-1(d)1(e)-1(n)-282(rad)-283(d)1(\\252)-1(u)1(\\273)-1(ej)]TJ -27.879 -13.549 Td[(wylegiw)28(a\\252)-334(p)-27(o)-28(d)-333(pi)1(e)-1(r)1(z)-1(yn)1(\\241)-334(spr)1(ac)-1(o)28(w)28(ane)-334(k)28(o\\261c)-1(i)1(.)]TJ\nET\nendstream\nendobj\n1195 0 obj <<\n/Type /Page\n/Contents 1196 0 R\n/Resources 1194 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1181 0 R\n>> endobj\n1194 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1199 0 obj <<\n/Length 9074      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(373)]TJ -330.353 -35.866 Td[(Hank)56(a)-475(na)-475(ni)1(c)-476(nie)-475(bacz)-1(y\\252a,)-475(zs)-1(t\\246pu)1(j\\241c)-476(w)-475(s)-1(iebi)1(e)-1(,)-475(w)-476(t)1(e)-476(r\\363\\273ne)-476(m)28(y\\261)-1(l)1(e)-1(,)-475(jak)1(ie)]TJ -27.879 -13.549 Td[(j\\241)-379(op)1(rz\\246)-1(d)1(\\252y)83(,)-379(\\273e)-379(pacie)-1(r)1(z)-380(j)1(e)-1(n)1(o)-379(w)27(ar)1(gam)-1(i)-379(m\\363)28(wi\\252a,)-379(dal)1(e)-1(k)28(o)-379(o)-28(d)-378(niego)-379(du)1(s)-1(z\\241)-379(i)-379(ca\\252a)-379(w)27(e)]TJ 0 -13.549 Td[(ws)-1(p)-27(omnieniac)28(h)-333(utop)1(ion)1(a.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-271(c)-1(i)1(c)27(he,)-271(op)1(ite)-271(rad)1(o\\261)-1(ci\\241)-271(o)-27(c)-1(zy)-271(n)1(a)-271(p)-28(ol)1(a)-271(s)-1(zerokie,)-271(za)28(w)27(ar)1(te)-271(\\261)-1(cian\\241)-270(dale-)]TJ -27.879 -13.549 Td[(kiego)-329(las)-1(u)1(,)-329(p)-28(o)-329(kt\\363r)1(ym)-330(r)1(oz)-1(lew)27(a\\252y)-329(si\\246)-330(p)1(\\252)-1(omieni)1(e)-330(ws)-1(c)27(h)1(o)-28(d)1(u,)-329(i\\273)-330(sp)-28(o\\261r\\363)-27(d)-329(m)-1(o)-27(dra)28(wyc)27(h)]TJ 0 -13.55 Td[(g\\241sz)-1(cz)-1(\\363)28(w)-375(wyb\\252yskiw)28(a\\252y)-375(b)1(ursz)-1(t)28(y)1(no)28(w)27(e,)-375(gr)1(ubac)28(hn)1(e)-376(c)28(ho)-55(jary)1(;)-375(z)-1(a\\261)-375(wsz)-1(ystkie)-375(zie)-1(mie)]TJ 0 -13.549 Td[(jak)28(ob)29(y)-366(d)1(rga\\252y)-366(w)-365(z)-1(\\252ot)28(yc)27(h)1(,)-366(b)1(ud)1(z)-1(\\241cyc)27(h)-365(b)1(rzas)-1(k)56(ac)27(h)1(;)-366(ozime)-366(z)-1(b)-27(o\\273)-1(a)-365(m)-1(ok)1(r\\241,)-365(z)-1(ielon)1(a)27(w)28(\\241)]TJ 0 -13.549 Td[(w)28(e)-1(\\252n\\241)-363(otul)1(a\\252)-1(y)-363(zagon)28(y)83(,)-363(a)-364(k)56(a)-55(j\\261)-364(ni)1(e)-1(k)56(a)-56(j)-363(p)-27(o)-364(b)1(ru)1(z)-1(d)1(ac)27(h)-363(l\\261)-1(n)1(i\\252y)-363(s)-1(i\\246)-364(p)-27(oni)1(ki)-363(w)27(o)-28(d)1(y)-364(k)1(ie)-1(j)-363(te)]TJ 0 -13.549 Td[(sre)-1(b)1(rn)1(e)-326(stru\\273yn)28(y)84(,)-325(n)1(ie)-1(s\\252y)-325(s)-1(i)1(\\246)-326(z)-326(p)-27(\\363l)-325(wilgotn)1(e)-1(,)-325(c)28(h\\252o)-28(d)1(ne)-325(przyd)1(e)-1(c)27(h)29(y)-325(wraz)-326(z)-325(t\\241)-325(\\261)-1(wi\\246t\\241)]TJ 0 -13.549 Td[(cic)27(h)1(o\\261)-1(ci\\241)-333(w)-1(io\\261ni)1(an\\241,)-333(w)-334(j)1(akiej)-333(to)-333(ro\\261nie)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(i)-333(na)-333(\\261)-1(wiat)-333(si\\246)-334(j)1(a)27(wi.)1(..)]TJ 27.879 -13.549 Td[(Nie)-334(za)-333(t)28(ym)-334(j)1(e)-1(d)1(nak\\273e)-334(patr)1(z)-1(a\\252a)-333(i)-333(nie)-333(te)-1(go.)]TJ 0 -13.55 Td[(Ja)28(wi\\252y)-389(si\\246)-389(ano)-389(w)-389(n)1(iej)-389(p)1(rzyp)-28(omin)1(ki)-389(b)1(ied,)-389(g\\252o)-27(dy)84(,)-389(kr)1(z)-1(ywdy)84(,)-389(An)29(tk)28(o)28(w)27(e)-389(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(wierst)28(w)27(a,)-362(b)-27(\\363le)-363(k)1(ie)-1(j)-361(g\\363\\271)-1(d)1(\\271)-363(ran)1(i\\241c)-1(e)-362(i)-362(t)28(yc)27(h)-361(s)-1(m)28(utk)28(\\363)28(w)-363(i)-362(u)1(trap)1(ie\\253)-362(t)28(ylac)27(h)1(na,)-362(\\273e)-363(a\\273)]TJ 0 -13.549 Td[(j\\241)-297(d)1(z)-1(i)1(w)-297(bra\\252,)-297(j)1(ak)28(o)-297(to)-297(p)-27(oredzi\\252a)-297(przem)-1(\\363)-28(c)-297(i)-297(p)1(rze)-1(mog\\252a,)-297(i)-297(d)1(o)-28(c)-1(zek)55(a\\252a)-297(si\\246,)-297(\\273)-1(e)-297(oto)-297(P)28(an)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-334(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\252)-334(wsz)-1(ystk)28(o)-333(na)-333(lepsz)-1(e...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-333(na)-333(gos)-1(p)-27(o)-28(d)1(arc)-1(e)-333(jes)-1(t)-333(zno)28(wu,)-333(na)-333(zie)-1(mi.)]TJ 0 -13.55 Td[(A)-333(kto)-333(m)-1(o)-27(c)-1(en)-333(jes)-1(t)-333(wyrw)28(a\\242)-334(j)1(\\241)-334(st\\241d?)-333(Kt\\363ren)-333(p)-27(oredzi!)]TJ 0 -13.549 Td[(Zmog\\252)-1(a)-490(ju\\273)-491(t)28(yl)1(a,)-491(pr)1(z)-1(ec)-1(i)1(e)-1(rp)1(ia\\252a)-491(b)-27(e)-1(z)-491(te)-491(p)-27(\\363\\252)-491(roku)1(,)-491(\\273e)-492(d)1(ru)1(gi)-491(cz)-1(\\252o)28(w)-1(i)1(e)-1(k)-490(b)-28(ez)]TJ -27.879 -13.549 Td[(ca\\252)-1(e)-363(\\273)-1(ycie)-364(n)1(ie)-364(p)1(rz)-1(ecie)-1(r)1(pi,)-363(to)-363(ud)1(\\271)-1(wign)1(ie)-1(,)-363(co)-364(t)1(a)-364(n)1(a)-364(n)1(i\\241)-364(P)29(an)28(u)-363(Jez)-1(u)1(s)-1(o)28(wi)-363(s)-1(p)1(u\\261c)-1(i\\242)-364(si\\246)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)1(oba,)-364(w)-1(y)1(dzie)-1(r)1(\\273)-1(y)-364(i)-365(d)1(o)-28(c)-1(ze)-1(k)56(a)-365(si\\246)-365(An)28(tk)28(o)28(w)28(e)-1(go)-365(u)1(s)-1(tat)1(k)28(o)27(w)28(ania)-364(i)-365(\\273e)-366(te)-365(ziem)-1(ie)-365(b)-27(\\246)-1(d)1(\\241)]TJ 0 -13.549 Td[(ic)28(h)-333(na)-333(wie)-1(k)1(i.)]TJ 27.879 -13.55 Td[(T)83(rzy)-293(n)1(iedzie)-1(l)1(e)-294(ca\\252e)-1(,)-292(a)-293(jej)-293(si\\246)-293(w)-1(i)1(dzi,)-293(j)1(ak)28(ob)28(y)-293(to)-293(w)28(cz)-1(ora)-55(j)-293(si\\246)-293(s)-1(t)1(a\\252)-1(o,)-292(kiej)-293(c)28(h\\252op)28(y)]TJ -27.879 -13.549 Td[(sz)-1(\\252y)-333(na)-333(las...)]TJ 27.879 -13.549 Td[(Nie)-327(p)-28(osz\\252)-1(a)-327(z)-327(in)1(s)-1(zymi,)-327(b)-27(o)-327(ano)-327(w)-327(jej)-327(stani)1(e)-328(ci\\246\\273)-1(k)28(o)-327(b)28(y\\252o)-327(i)-326(niepr)1(z)-1(ez)-1(p)1(ie)-1(cznie...)]TJ 0 -13.549 Td[(T)83(u)1(rb)-27(o)27(w)28(a\\252a)-405(si\\246)-405(j)1(e)-1(n)1(o)-405(o)-404(An)28(tk)56(a,)-404(b)-28(o)-404(zaraz)-405(jej)-404(rze)-1(k)1(li,)-404(jak)28(o)-404(z)-405(n)1(aro)-28(dem)-405(si\\246)-405(n)1(ie)]TJ -27.879 -13.549 Td[(z\\252)-1(\\241czy\\252)-307(i)-307(n)1(ie)-307(p)-28(osz)-1(ed\\252;)-306(rozumia\\252a,)-307(i\\273)-307(tu)-306(na)-306(z)-1(\\252o\\261\\242)-308(starem)27(u)-306(zrobi)1(\\252)-1(,)-306(a)-307(mo\\273)-1(e)-307(i)-306(la)-307(tego,)]TJ 0 -13.55 Td[(b)28(y)-333(si\\246)-334(w)-333(te)-1(n)-333(cz)-1(as)-333(gdzie)-334(z)-334(Jagu)1(s)-1(i)1(\\241)-334(zwie)-1(\\261\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(\\233ar\\252o)-333(j\\241)-333(to,)-333(ale)-334(wyp)1(atryw)28(a\\242)-334(go)-333(pr)1(z)-1(ec)-1(iec)27(h)-333(n)1(ie)-334(p)-27(os)-1(z\\252a.)]TJ 0 -13.549 Td[(A\\273)-334(tu)-333(p)1(rze)-1(d)-333(sam)27(y)1(m)-334(p)-27(o\\252)-1(u)1(dn)1(iem)-334(pr)1(z)-1(yl)1(atuj)1(e)-334(Gu)1(lbasiak)-333(i)-333(wrz)-1(es)-1(zcz)-1(y:)]TJ 0 -13.549 Td[({)-333(P)28(obi)1(lim)-334(d)1(w)27(or)1(s)-1(ki)1(c)27(h!)-333(p)-27(obi)1(lim!)-333({)-334(i)-333(ki)1(e)-1(j)-333(w\\261c)-1(iek\\252y)-333(p)-28(ogn)1(a\\252)-334(d)1(alej.)]TJ 0 -13.549 Td[(Zm\\363)27(wi\\252a)-305(si\\246)-305(z)-305(K\\252\\246)-1(b)-27(o)28(w)27(\\241)-305(i)-304(p)-28(osz\\252)-1(y)-304(nap)1(rze)-1(ciw.)-305(Domini)1(k)28(o)27(w)28(ej)-305(c)28(h\\252opak)-304(nad)1(bie-)]TJ -27.879 -13.55 Td[(ga\\252)-333(i)-334(j)1(u\\273)-333(z)-334(dala)-333(kr)1(z)-1(ycz)-1(y)1(:)]TJ 27.879 -13.549 Td[({)-247(Boryn)1(a)-247(z)-1(ab)1(it,)-246(An)28(te)-1(k)-246(z)-1(ab)1(it,)-247(M)1(ate)-1(u)1(s)-1(z)-247(i)-247(d)1(ru)1(gie)-1(!)1(...)-247({)-247(zatrzepa\\252)-247(r\\246k)28(oma,)-247(c)-1(osik)]TJ -27.879 -13.549 Td[(zam)-1(amrota\\252)-392(i)-392(pad)1(\\252,)-392(\\273)-1(e)-392(trza)-393(m)28(u)-392(b)28(y\\252o)-392(no\\273em)-393(z\\246)-1(b)28(y)-392(ozwie)-1(r)1(a\\242)-1(,)-392(b)28(y)-392(wla\\242)-392(w)27(o)-27(dy)84(,)-392(tak)]TJ 0 -13.549 Td[(go)-333(\\261)-1(cisn\\246\\252)-1(o)-333(z)-334(u)1(tru)1(dze)-1(n)1(ia.)]TJ 27.879 -13.549 Td[(A)-333(jej)-333(wte)-1(d)1(y)-333(dusz)-1(a)-333(ze)-334(s)-1(t)1(rac)27(h)28(u)-332(z)-1(akr)1(z)-1(ep\\252a)-333(na)-333(ten)-333(lit)28(y)-333(k)56(am)-1(ie\\253.)]TJ 0 -13.549 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-293(\\273)-1(e)-294(n)1(im)-294(jesz)-1(cz)-1(e)-294(c)28(h\\252opak)56(a)-294(d)1(o)-28(cucili,)-293(wyw)27(al)1(ili)-293(s)-1(i)1(\\246)-295(z)-294(b)-27(oru)-293(n)1(a)-294(d)1(rog\\246)]TJ -27.879 -13.55 Td[(i)-338(p)-28(o)28(wiedali,)-338(j)1(ak)-339(b)28(y)1(\\252)-1(o,)-338(a)-339(mo\\273e)-339(w)-339(pacierz)-339(s)-1(ama)-339(j)1(u\\273)-339(d)1(o)-56(j)1(rz)-1(a\\252a)-338(pr)1(z)-1(y)-338(o)-56(j)1(c)-1(o)28(wym)-339(w)28(oz)-1(ie)]TJ 0 -13.549 Td[(An)28(tk)56(a)-333(\\273)-1(y)1(w)27(ego:)-334(j)1(ak)28(o)-333(trup)-332(b)28(y\\252)-333(s)-1(in)29(y)83(,)-333(okr)1(w)27(a)28(wion)28(y)84(,)-334(zgo\\252a)-333(niepr)1(z)-1(ytomn)28(y)84(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-360(\\273e)-361(j)1(\\241)-360(p\\252acz)-361(c)28(h)28(wyc)-1(i\\252)-360(i)-359(b)-28(ol)1(e)-1(\\261\\242)-361(ozdziera\\252a,)-360(ale)-360(s)-1(i)1(\\246)-361(p)1(rz)-1(emog\\252a,)-360(ile)-360(\\273)-1(e)-360(j\\241)]TJ -27.879 -13.549 Td[(o)-28(ciec)-1(,)-333(stary)-333(B)-1(y)1(lica,)-333(o)-28(dci\\241)-28(gn)1(\\241\\252)-334(n)1(a)-334(b)-27(ok)-333(i)-333(c)-1(ic)28(ho)-333(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-458(S)1(tary)-457(wnet)-458(zam)-1(r)1(z)-1(e,)-457(An)28(te)-1(k)-457(o)-457(B)-1(o\\273ym)-458(\\261w)-1(i)1(e)-1(cie)-458(ni)1(e)-458(w)-1(i)1(e)-1(,)-457(a)-458(w)-458(Bory)1(no)28(w)27(ej)]TJ -27.879 -13.55 Td[(c)27(h)1(a\\252up)1(ie)-334(ni)1(k)28(og\\363)-56(j,)-333(j)-333(j)1(e)-1(szc)-1(ze)-334(s)-1(i)1(\\246)-334(k)28(o)28(w)27(al)-333(tam)-333(w)-1(n)1(ie)-1(sie)-334(i)-333(n)1(ikto)-333(go)-333(ju)1(\\273)-334(nie)-333(w)-1(y)1(goni!.)1(..)]TJ 27.879 -13.549 Td[(Zmiark)28(o)28(w)27(a\\252a)-324(r)1(yc)27(h)1(\\252o,)-324(\\273)-1(e)-324(w)-324(dy)1(rdy)-323(p)-28(ol)1(e)-1(cia\\252a)-324(do)-324(c)28(ha\\252u)1(p)28(y)83(,)-323(z)-1(ab)1(ra\\252a)-324(dziec)-1(i)-323(i)-324(c)-1(o)]TJ\nET\nendstream\nendobj\n1198 0 obj <<\n/Type /Page\n/Contents 1199 0 R\n/Resources 1197 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1197 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1203 0 obj <<\n/Length 9234      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(374)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)28(y\\252o)-240(n)1(a)-240(p)-27(o)-28(dor\\246dziu)-239(z)-1(e)-240(s)-1(zmat,)-240(res)-1(zt\\246)-240(z)-1(a\\261)-240(z)-1(d)1(a\\252a)-240(na)-240(W)84(e)-1(r)1(oncz)-1(yn)1(\\241)-240(opi)1(e)-1(k)28(\\246)-240(i)-240(pr)1(z)-1(enios\\252a)]TJ 0 -13.549 Td[(si\\246)-334(c)27(h)29(yb)-28(ciki)1(e)-1(m)-333(na)-333(da)28(wne)-334(miejsc)-1(e,)-333(p)-28(o)-333(dr)1(ugiej)-333(stroni)1(e)-334(Boryn)1(o)27(w)28(e)-1(j)-332(c)27(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-1(c)28(h)-350(B)-1(or)1(yn\\246)-351(op)1(atryw)28(a\\252)-351(J)1(am)27(br)1(o\\273)-1(y)84(,)-350(jes)-1(zc)-1(ze)-1(c)28(h)-350(lud)1(z)-1(ie)-351(b)29(yli)-350(s)-1(i)1(\\246)-351(nie)-351(r)1(oz)-1(e-)]TJ -27.879 -13.549 Td[(sz)-1(li)1(,)-315(jes)-1(zc)-1(zec)27(h)-315(ca\\252a)-315(wie)-1(\\261)-315(wrza\\252a)-315(ucie)-1(c)28(h\\241)-315(a)-315(gd)1(z)-1(ie)-315(j\\246k)56(am)-1(i)-314(p)-28(ob)1(it)28(yc)27(h)1(,)-315(a)-315(on)1(a)-315(c)-1(ic)28(h)28(u\\261k)28(o)]TJ 0 -13.549 Td[(si\\246)-334(wnies\\252)-1(a)-333(i)-333(osiad\\252a)-333(na)-333(am)-1(en.)]TJ 27.879 -13.55 Td[(A)-452(str\\363\\273o)28(w)27(a\\252a)-452(p)1(iln)1(ie)-1(:)-451(to)-28(\\242)-452(An)28(tk)28(o)28(wy)-452(te\\273)-452(b)28(y\\252)-452(gr)1(on)28(t,)-452(a)-451(s)-1(tary)-451(ledwie)-452(z)-1(i)1(pa\\252)-452(i)]TJ -27.879 -13.549 Td[(m\\363g\\252)-334(leda)-333(p)1(ac)-1(ierz)-334(wyci\\241)-28(gn)1(\\241\\242)-334(ku)1(las)-1(y)84(.)]TJ 27.879 -13.549 Td[(Wiad)1(omo)-311(pr)1(z)-1(ec)-1(i)1(e)-1(\\273,)-311(i\\273)-311(kt)1(\\363re)-1(n)-310(p)1(ie)-1(r)1(w)-1(szy)-311(d)1(opadn)1(ie)-311(dziedzic)-1(t)28(w)28(a)-311(i)-310(w)27(cz)-1(epi)-310(w)27(e\\253)]TJ -27.879 -13.549 Td[(pazur)1(y)83(,)-333(to)-333(i)-333(ni)1(e)-1(\\252ac)-1(n)1(o)-333(go)-334(o)-28(d)1(e)-1(r)1(w)27(a\\242,)-333(i)-333(pra)28(w)28(o)-334(za)-333(s)-1(ob)1(\\241)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(mia\\252.)]TJ 27.879 -13.549 Td[(Co)-312(j)1(e)-1(j)-311(tam)-312(znaczy\\252y)-312(k)28(o)28(w)28(alo)28(w)27(e)-312(kr)1(z)-1(y)1(ki)-312(i)-311(gro\\271b)28(y)84(,)-312(k)1(t\\363rymi)-311(jej)-311(bron)1(i\\252)-312(wst\\246)-1(p)1(u,)]TJ -27.879 -13.549 Td[(sro)-28(d)1(z)-1(e)-334(zgni)1(e)-1(w)28(an)28(y)83(,)-333(i\\273)-333(go)-334(u)1(pr)1(z)-1(edzi\\252a!)]TJ 27.879 -13.55 Td[(Py)1(ta\\242)-271(s)-1(i)1(\\246)-271(to)-271(mia\\252a)-270(k)28(og\\363)-56(j)-270(o)-270(pr)1(z)-1(yzw)27(ol)1(e)-1(\\253)1(s)-1(t)28(w)28(o,)-271(c)28(h)28(yci\\252a)-271(si\\246)-271(ziem)-1(i,)-270(a)-270(jak)-270(ta)-270(s)-1(u)1(k)55(a)]TJ -27.879 -13.549 Td[(w)28(aro)28(w)27(a\\252a)-383(i)-383(br)1(oni\\252a)-383(s)-1(w)28(o)-56(j)1(e)-1(go,)-383(p)-27(ew)-1(n)1(a)-383(ryc)27(h)1(\\252e)-1(j)-382(\\261)-1(mie)-1(r)1(c)-1(i)-383(starego)-383(i)-383(\\273)-1(e)-384(An)29(tk)56(a)-384(w)28(e)-1(zm\\241,)]TJ 0 -13.549 Td[(b)-27(o)-334(j)1(\\241)-334(b)29(y\\252)-334(o)-333(t)28(ym)-333(upr)1(z)-1(edzi\\252)-333(R)-1(o)-27(c)27(ho.)]TJ 27.879 -13.549 Td[(T)83(o)-429(i)-430(k)28(om)28(u)-429(s)-1(i)1(\\246)-430(to)-430(mia\\252a)-430(o)-27(dd)1(a\\242)-430(w)-430(opi)1(e)-1(k)28(\\246?)-430(Kiej)-429(wiadomo,)-429(\\273)-1(e)-430(j)1(ak)-430(si\\246)-430(sam)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)-333(n)1(ie)-334(p)1(rz)-1(y)1(\\252)-1(o\\273y)84(,)-334(t)1(o)-334(m)28(u)-333(i)-333(P)28(an)-333(Jez)-1(u)1(s)-334(ni)1(e)-334(do\\252o\\273y)83(.)]TJ 27.879 -13.55 Td[(Nie)-471(p)1(\\252ac)-1(ze)-1(m)-470(i)-471(sk)56(am)-1(lan)1(iem)-471(do)-27(c)27(ho)-27(dzi)-471(si\\246)-471(sw)27(ego,)-470(a)-471(j)1(e)-1(n)1(o)-471(t)28(ymi)-470(kw)27(ar)1(dymi,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iwym)-1(i)-333(p)1(az)-1(u)1(rami)-333({)-334(wiedzia\\252a)-333(c)-1(i)-333(ona)-333(ju)1(\\273)-334(o)-333(t)28(ym,)-334(wiedzia\\252a!)]TJ 27.879 -13.549 Td[(Wi\\246c)-374(c)27(ho)-27(\\242)-375(i)-373(An)28(tk)56(a)-374(wz)-1(ieni)1(,)-374(usp)-27(ok)28(oi\\252a)-374(s)-1(i)1(\\246)-375(ry)1(c)27(h\\252o,)-373(b)-28(o)-374(co)-374(p)-27(oredzis)-1(z)-374(pr)1(z)-1(ec)-1(i)1(w)]TJ -27.879 -13.549 Td[(dol)1(i,)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(ku)1(?)-334(cz)-1(ym)-333(s)-1(i)1(\\246)-334(opr)1(z)-1(es)-1(z,)-333(kru)1(s)-1(zyno?)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie)-484(z)-1(a\\261)-484(to)-485(b)29(y\\252)-485(i)-484(cz)-1(as)-484(na)-484(d\\252u)1(gie)-485(lame)-1(n)29(t)28(y)-484(i)-485(wyr)1(z)-1(ek)56(ania,)-484(ki)1(e)-1(j)-484(t)28(yl)1(ac)27(hn)1(e)]TJ -27.879 -13.55 Td[(gosp)-28(o)-28(d)1(arst)28(w)27(o)-333(wz)-1(i\\246\\252a)-334(n)1(a)-333(s)-1(w)28(o)-56(j)1(\\241)-334(g\\252o)28(w)27(\\246!)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-281(s)-1(ama)-281(os)-1(ta\\252a)-281(kiej)-281(ten)-281(ki)1(e)-1(rz)-281(na)-281(rozdr)1(o\\273)-1(n)28(y)1(m)-282(wywieis)-1(k)1(u,)-281(jeno)-281(\\273e)-282(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-356(cofn)1(\\246)-1(\\252a)-355(p)1(rze)-1(d)-354(rob)-27(ot\\241)-355(n)1(i)-355(lu)1(dzi)-355(ni)1(e)-356(u)1(l\\246k\\252a.)-355(A)-355(p)1(rze)-1(ciwk)28(o)-355(niej)-354(b)28(y\\252a)-355(Jagn)1(a;)-355(b)28(yl)1(i)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)1(o)27(wie,)-355(za)28(w)-1(zi\\246c)-1(i)-354(na)-355(n)1(i\\241,)-355(\\273e)-356(n)1(iec)27(h)-354(B)-1(\\363g)-355(b)1(ron)1(i;)-355(b)28(y)1(\\252)-355(w)27(\\363)-55(jt,)-354(kt\\363ren)-355(b)29(y\\252)-355(s)-1(w)28(o)-56(j)1(e)-355(z)-1(a-)]TJ 0 -13.549 Td[(m)27(y)1(s)-1(\\252y)-287(na)-287(Jagn\\246)-288(p)-27(o)28(w)-1(zi\\241\\252)-287(i)-288(b)-27(e)-1(z)-287(to)-288(sie)-1(l)1(nie)-288(si\\246)-288(n)1(i\\241)-288(op)1(ie)-1(k)28(o)28(w)28(a\\252;)-288(b)29(y\\252)-288(n)1(a)27(w)28(e)-1(t)-287(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(ry)1(c)27(h)28(to)28(w)28(an)28(y)-333(na)-333(s)-1(p)1(rze)-1(ciw)-334(p)1(rze)-1(z)-334(D)1(om)-1(in)1(ik)28(o)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(T)28(yle)-344(\\273e)-344(jej)-343(nie)-343(prze)-1(mogli)1(,)-344(n)1(ie)-344(d)1(a\\252)-1(a)-343(si\\246)-344(ni)1(c)-1(ze)-1(m)28(u,)-343(c)-1(o)-343(dn)1(ia)-343(g\\252)-1(\\246bi)1(e)-1(j)-343(wrasta)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(w)-302(z)-1(iemi\\246)-303(i)-302(kr)1(z)-1(ep)-28(ciej)-302(dzier\\273\\241c)-303(w)-303(gar)1(\\261)-1(ciac)27(h)-301(rz)-1(\\241d)1(y)83(,)-302(i)1(\\273)-303(ledwie)-303(p)-27(o)-302(dw)28(\\363)-28(c)27(h)-301(niedzielac)27(h)1(,)]TJ 0 -13.549 Td[(a)-333(ju)1(\\273)-334(ws)-1(zys)-1(t)1(k)28(o)-334(sz)-1(\\252o)-333(jej)-333(w)27(ol)1(\\241,)-333(roz)-1(u)1(me)-1(m)-334(a)-333(mo)-28(c\\241.)]TJ 27.879 -13.549 Td[(On)1(a)-425(za\\261)-425(n)1(i)-424(do)-55(jad)1(\\252)-1(a,)-424(n)1(i)-424(dospa\\252a,)-424(n)1(i)-424(w)-1(y)1(p)-28(o)-28(cz\\246)-1(\\252a)-424(har)1(uj\\241c)-424(nik)1(ie)-1(j)-423(te)-1(n)-424(w)28(\\363\\252)-424(w)]TJ -27.879 -13.55 Td[(jar)1(z)-1(mie)-334(o)-27(d)-333(\\261)-1(witan)1(ia)-333(do)-333(no)-28(cy)-333(p)-27(\\363\\271)-1(n)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Jeno)-318(\\273e)-318(to)-318(niezw)-1(y)1(c)-1(za)-56(j)1(na)-318(b)28(y)1(\\252)-1(a)-317(ni)-318(t)1(akiej)-318(p)1(rac)-1(y)84(,)-318(n)1(i)-318(stano)28(wienia)-318(o)-317(w)-1(sz)-1(y)1(s)-1(tk)1(im)]TJ -27.879 -13.549 Td[(sw)27(o)-55(j\\241)-432(g\\252)-1(o)28(w)28(\\241,)-432(a)-433(wielce)-433(z)-433(natu)1(ry)-432(ni)1(e)-1(\\261m)-1(i)1(a\\252)-1(a)-432(i)-432(pr)1(z)-1(ez)-433(An)28(tk)56(a)-432(z)-1(ah)28(u)1(k)56(ana,)-432(to)-433(j)1(e)-1(j)-431(tak)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o)-333(nieraz)-334(p)1(rzyc)27(h)1(o)-28(dzi\\252o,)-333(a\\273)-334(r\\246c)-1(e)-333(opad)1(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-468(kr)1(z)-1(epi)1(\\252)-468(j\\241)-467(s)-1(t)1(rac)27(h)1(,)-468(b)29(y)-468(z)-468(gosp)-27(o)-28(dark)1(i)-468(n)1(ie)-468(wysadzili,)-467(a)-467(i)-468(ta)-467(z)-1(a)28(wz)-1(i)1(\\246)-1(to\\261\\242)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(w)-334(Jagn)1(ie)-1(.)]TJ 27.879 -13.55 Td[(Zres)-1(zt\\241)-318(z)-318(cze)-1(go)-317(ta)-318(j)1(e)-1(j)-317(mo)-28(c)-318(sz)-1(\\252a,)-317(to)-318(sz)-1(\\252a,)-317(do\\261\\242)-318(\\273)-1(e)-317(s)-1(i\\246)-318(n)1(ie)-318(da\\252a,)-317(ur)1(as)-1(ta)-55(j\\241c)-318(w)28(e)]TJ -27.879 -13.549 Td[(ws)-1(zystkic)28(h)-333(o)-28(c)-1(zac)27(h)-333(n)1(a)-334(n)1(iem)-1(a\\252y)-333(p)-27(o)-28(dziw)-333(i)-333(u)28(w)27(a\\273anie.)]TJ 27.879 -13.549 Td[({)-249(A)-249(to!)-249(p)1(rz\\363)-28(dzi)-249(si\\246)-250(wid)1(z)-1(i)1(a\\252)-1(a,)-248(jak)28(o)-249(tr)1(z)-1(ec)27(h)-249(n)1(ie)-249(z)-1(li)1(c)-1(zy)83(,)-249(a)-249(t)1(e)-1(raz)-249(ci)-249(ju)1(\\273)-250(za)-249(dob)1(re)-1(go)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opa)-396(stanie)-396({)-396(p)-27(o)27(wieda\\252y)-395(o)-396(niej)-396(co)-396(na)-55(jp)1(ie)-1(r)1(w)-1(sze)-397(w)28(e)-397(wsi)-396(gos)-1(p)-27(o)-28(d)1(yni)1(e)-1(,)-396(\\273e)-397(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(P\\252osz)-1(k)28(o)28(w)28(a)-440(i)-439(d)1(rugi)1(e)-440(rad)1(e)-440(przyj)1(ac)-1(ielst)28(w)27(a)-439(z)-440(ni)1(\\241)-440(sz)-1(u)1(k)56(a\\252)-1(y)84(,)-439(c)27(h)1(\\246)-1(tli)1(w)-1(i)1(e)-440(ws)-1(p)-27(om)-1(aga)-55(j\\241c)]TJ 0 -13.55 Td[(dob)1(rym)-333(s)-1(\\252o)28(w)28(e)-1(m)-334(i)-333(cz)-1(y)1(m)-334(jeno)-333(mog\\252y)83(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-369(\\273e)-370(wdzi\\246c)-1(zn)28(ym)-369(se)-1(rcem)-370(p)1(rzyjmo)28(w)27(a\\252a)-369(n)1(ie)-370(sto)28(w)27(ar)1(z)-1(ysza)-56(j\\241c)-369(si\\246)-370(j)1(e)-1(d)1(nak)]TJ\nET\nendstream\nendobj\n1202 0 obj <<\n/Type /Page\n/Contents 1203 0 R\n/Resources 1201 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1201 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1206 0 obj <<\n/Length 9260      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(375)]TJ -358.232 -35.866 Td[(zb)28(ytn)1(io)-334(i)-333(n)1(ie)-334(cie)-1(sz\\241c)-334(z)-334(ic)28(h)-333(\\252as)-1(k,)-333(b)-27(o)-333(nie\\252ac)-1(n)1(o)-334(zap)-28(omin)1(a\\252a)-334(k)1(rz)-1(y)1(w)-1(d)-332(nieda)28(wn)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Nie)-350(lu)1(bi\\252a)-350(p)1(le)-1(\\261\\242)-350(b)-28(ele)-350(c)-1(ze)-1(go,)-349(to)-350(i)-350(ni)1(e)-351(p)-27(otrza)-350(jej)-349(b)28(y\\252o)-350(s\\241s)-1(iedzkic)28(h)-350(u)1(gw)27(arza\\253)]TJ -27.879 -13.549 Td[(ni)-333(tego)-333(w)-334(op\\252otk)56(ac)28(h)-333(w)-1(y)1(s)-1(ta)28(w)28(ania)-333(la)-333(obmo)28(w)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ma\\252o)-333(to)-333(s)-1(w)28(oic)27(h)-333(mia\\252a)-333(fr)1(as)-1(u)1(nk)28(\\363)28(w,)-334(b)29(yc)27(h)-333(si\\246)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(c)-1(u)1(dzym)-334(tu)1(rb)-27(o)28(w)27(a\\242!...)]TJ 0 -13.549 Td[(W\\252a\\261nie)-388(ws)-1(p)-27(omnia\\252o)-388(si\\246)-388(jej)-387(o)-388(Jagni)1(e)-1(,)-387(z)-389(k)1(t\\363r\\241)-388(wied\\252a)-388(za\\273)-1(ar)1(t\\241,)-388(milcz)-1(\\241c\\241)-388(i)]TJ -27.879 -13.55 Td[(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iw)27(\\241)-346(w)27(o)-55(jn)1(\\246)-1(,)-346(o)-347(Jagu)1(s)-1(i)1(,)-347(kt\\363r)1(e)-1(j)-346(sam)-1(o)-346(pr)1(z)-1(yp)-27(omnieni)1(e)-347(b)28(y\\252o)-347(j)1(ak)28(o)-347(to)-346(\\273)-1(gn)1(i\\246)-1(cie)]TJ 0 -13.549 Td[(w)-267(s)-1(erce)-1(,)-267(\\273e)-268(i)-267(teraz)-267(p)-28(o)-28(d)1(e)-1(r)1(w)27(a\\252a)-267(si\\246)-268(z)-267(m)-1(i)1(e)-1(jsca)-268(\\273egna)-56(j)1(\\241c)-268(si\\246)-268(\\261pi)1(e)-1(sz)-1(n)1(ie)-1(,)-266(a)-268(b)1(ij\\241c)-267(w)-267(piersi)]TJ 0 -13.549 Td[(na)-333(d)1(ok)28(o\\253cz)-1(enie)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[(Ze)-1(\\271li\\252a)-278(si\\246)-278(jes)-1(zc)-1(ze)-278(bard)1(z)-1(i)1(e)-1(j)1(,)-278(i\\273)-278(w)-278(c)27(ha\\252u)1(pie)-278(spali,)-277(a)-278(i)-278(w)-278(p)-27(o)-28(dw)28(\\363rzu)-278(b)28(y)1(\\252o)-278(c)-1(ic)28(ho.)]TJ 0 -13.549 Td[(Sk)1(rzyc)-1(za\\252a)-235(W)1(itk)56(a,)-234(s)-1(p)-27(\\246dzi\\252a)-235(z)-234(bar\\252ogu)-234(P)1(ietrk)56(a,)-234(dosta\\252o)-234(s)-1(i\\246)-234(przy)-234(t)28(ym)-235(i)-234(J)1(\\363z)-1(ce)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(s)-1(\\252o\\253)1(c)-1(e)-334(n)1(a)-334(c)28(h\\252op)1(a,)-334(a)-333(on)1(a)-334(si\\246)-334(wyleguj)1(e)-1(.)]TJ 27.879 -13.55 Td[({)-333(Je)-1(n)1(o)-334(z)-333(ok)55(a)-333(spu\\261ci\\242)-334(na)-333(ten)-333(pacierz,)-334(a)-333(ws)-1(zystkie)-334(p)-27(o)-333(k)56(\\241tac)27(h)-333(\\261pi\\241!)]TJ 0 -13.549 Td[(Mamrota\\252a)-333(rozpala)-55(j\\241c)-333(ogie)-1(\\253)-333(n)1(a)-333(k)28(om)-1(in)1(ie.)]TJ 0 -13.549 Td[(Wywied\\252a)-326(dzie)-1(ci)-326(na)-326(ganek)-327(i)-326(w)27(etkn)1(\\241)27(wsz)-1(y)-326(im)-327(p)-27(o)-327(gl)1(onku)-326(c)27(h)1(leba)-326(przyw)28(o\\252a\\252)-1(a)]TJ -27.879 -13.549 Td[(\\212ap)28(y)84(,)-333(b)28(y)-333(s)-1(i)1(\\246)-334(z)-334(ni)1(m)-1(i)-333(zaba)28(wia\\252,)-333(a)-334(sama)-334(p)-27(os)-1(z\\252a)-334(za)-56(j)1(rze)-1(\\242)-333(do)-333(B)-1(or)1(yn)28(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-392(n)1(a)-392(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-391(stron)1(ie)-392(b)28(y\\252o)-391(jes)-1(zc)-1(ze)-392(c)-1(a\\252ki)1(e)-1(m)-392(cic)27(h)1(o,)-392(\\273e)-392(ze)-392(z)-1(\\252o\\261)-1(ci\\241)-391(h)28(uk)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(dr)1(z)-1(wiami;)-327(ni)1(e)-328(przebud)1(z)-1(i)1(\\252)-1(o)-327(to)-327(Jagn)28(y)83(,)-327(stary)-327(z)-1(a\\261)-327(tak)-328(samo)-328(le\\273)-1(a\\252,)-327(jak)-327(go)-327(b)28(y\\252a)-327(os)-1(ta-)]TJ 0 -13.549 Td[(wi\\252a)-444(wiecz)-1(orem:)-444(n)1(a)-444(p)1(as)-1(i)1(ato)-28(cz)-1(erw)28(onej)-443(p)-28(o\\261c)-1(i)1(e)-1(li)-443(le\\273)-1(a\\252a)-443(jego)-444(sin)1(a,)-443(obros\\252a)-444(t)28(w)28(arz,)]TJ 0 -13.549 Td[(wyc)27(h)29(ud\\252a)-347(i)-347(tak)-347(z)-1(mart)28(wia\\252a,)-347(\\273)-1(e)-347(p)-28(o)-28(d)1(obi)1(e)-1(n)-347(si\\246)-348(sta\\252)-348(d)1(o)-348(on)29(yc)27(h)-347(\\261wi\\241tk)28(\\363)28(w)-348(w)-348(d)1(rze)-1(wie)]TJ 0 -13.549 Td[(rze)-1(zan)28(yc)28(h;)-436(ot)28(w)28(arte)-436(s)-1(ze)-1(r)1(ok)28(o)-436(o)-28(cz)-1(y)-436(p)1(atrzy\\252y)-436(pr)1(z)-1(ed)-436(si\\246)-436(nieru)1(c)27(homo)-436(ni)1(c)-437(zgo\\252a)-436(nie)]TJ 0 -13.549 Td[(widz\\241ce)-1(,)-410(g\\252o)28(w)27(\\246)-411(mia\\252)-410(o)27(wi\\241zan\\241)-410(sz)-1(matami,)-410(a)-411(r)1(oz)-1(wiedzione)-411(sze)-1(rok)28(o)-410(r\\246c)-1(e)-410(z)-1(wisa\\252y)]TJ 0 -13.55 Td[(mart)28(w)27(o)-333(ki)1(e)-1(j)-333(te)-334(n)1(adr)1(\\241ban)1(e)-334(ga\\252\\246)-1(zie.)]TJ 27.879 -13.549 Td[(P)28(op)1(ra)28(wi\\252a)-349(m)27(u)-349(p)-27(o\\261c)-1(ieli)-349(strze)-1(p)1(uj)1(\\241c)-350(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-350(b)1(ard)1(z)-1(iej)-349(n)1(a)-349(nogi,)-349(\\273e)-349(to)-349(gor\\241c)-1(o)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-247(w)-247(izbie,)-247(a)-247(p)-28(otem)-248(n)1(alew)27(a\\252a)-247(m)27(u)-246(p)-28(o)-247(\\271dzie)-1(b)1(ku)-247(d)1(o)-247(ust)-247(\\261)-1(wie\\273)-1(ej)-247(w)28(o)-28(dy)1(:)-247(pi\\252)-247(z)-248(w)28(oln)1(a,)]TJ 0 -13.549 Td[(a\\273e)-318(m)28(u)-316(grd)1(yk)56(a)-317(c)27(h)1(o)-28(dzi\\252a,)-316(ale)-317(s)-1(i)1(\\246)-317(nie)-317(p)-27(oru)1(s)-1(zy\\252;)-317(l)1(e)-1(\\273a\\252)-317(w)28(c)-1(i\\241\\273)-317(k)1(ie)-1(j)-316(ta)-316(k\\252o)-28(da)-316(z)-1(w)28(alon)1(a,)]TJ 0 -13.549 Td[(jeno)-450(w)-451(o)-28(c)-1(zac)27(h)-450(z)-1(a\\261wiec)-1(i\\252o)-451(m)28(u)-450(c)-1(osik,)-450(jak)-451(k)1(ie)-1(d)1(y)-451(r)1(z)-1(ek)55(a)-450(s)-1(p)-27(o)-28(d)-450(no)-28(cy)-451(si\\246)-451(pr)1(z)-1(etrze)-451(i)]TJ 0 -13.55 Td[(rozb\\252y\\261ni)1(e)-334(na)-333(jedn)1(o)-334(o)-27(c)-1(zymgnieni)1(e)-1(.)]TJ 27.879 -13.549 Td[(W)84(e)-1(stc)27(h)1(n\\241)28(ws)-1(zy)-339(nad)-338(nim)-339(\\273)-1(a\\252o\\261nie;)-339(tr)1(z)-1(asn\\246\\252a)-340(zno)28(wu)-339(tr)1(e)-1(p)-27(em)-340(w)-339(wiaderk)28(o)-339(ci-)]TJ -27.879 -13.549 Td[(sk)55(a)-55(j\\241c)-334(r)1(oz)-1(sro\\273on)28(ymi)-333(o)-28(c)-1(zyma)-333(p)-28(o)-333(\\261)-1(p)1(i\\241ce)-1(j)1(.)]TJ 27.879 -13.549 Td[(Ale)-355(Jagusia)-355(i)-354(tak)-355(n)1(ie)-355(prze)-1(c)28(kn\\246\\252a;)-355(l)1(e)-1(\\273a\\252)-1(a)-354(ano)-355(n)1(a)-355(b)-27(ok,)-355(t)28(w)28(arz)-1(\\241)-354(na)-355(izb)-27(\\246)-1(,)-354(pie-)]TJ -27.879 -13.549 Td[(rzyn)1(\\246)-278(s)-1(n)1(ad\\271)-277(z)-278(gor\\241ca)-278(ze)-1(p)-27(c)27(h)1(n\\241)28(ws)-1(zy)-277(do)-277(p)-27(\\363\\252)-278(p)1(iers)-1(i)1(,)-277(\\273)-1(e)-278(r)1(am)-1(i)1(ona)-277(i)-277(s)-1(zyj)1(a)-278(le\\273a\\252)-1(y)-277(n)1(agie,)]TJ 0 -13.55 Td[(zrumienion)1(e)-333(i)-332(\\271dziebk)28(o)-332(ru)1(c)27(h)1(a)-56(j\\241ce)-333(si\\246)-332(w)-333(cic)27(h)29(ym)-333(d)1(yc)27(h)1(aniu)1(;)-332(pr)1(z)-1(ez)-333(r)1(oz)-1(c)27(h)29(ylon)1(e)-1(,)-332(wi-)]TJ 0 -13.549 Td[(\\261nio)28(w)28(e)-371(w)28(argi)-369(l\\261ni\\252y)-369(s)-1(i)1(\\246)-370(jej)-370(z\\246b)28(y)-370(k)1(ie)-1(j)-369(te)-370(p)1(ac)-1(i)1(orki)-369(na)-55(jbi)1(e)-1(lsze)-1(,)-369(a)-370(rozpl)1(e)-1(cione)-370(w\\252osy)]TJ 0 -13.549 Td[(bu)1(rzy\\252y)-333(si\\246)-333(p)-28(o)-332(bia\\252ej)-333(p)-27(o)-28(d)1(usz)-1(ce)-333(s)-1(p)1(\\252)-1(y)1(w)27(a)-55(j\\241c)-333(a\\273)-333(na)-333(ziem)-1(i)1(\\246)-334(ki)1(e)-1(j)-332(ten)-333(len)-332(na)-55(jcz)-1(ystsz)-1(y)84(,)]TJ 0 -13.549 Td[(w)-334(s\\252o\\253cu)-333(wys)-1(u)1(s)-1(zon)28(y)84(.)]TJ 27.879 -13.549 Td[({)-437(Z)-1(edr)1(z)-1(e\\242)-438(ci)-438(i)1(no)-437(pazurami)-437(t\\246)-438(g\\246busi\\246,)-437(a)-438(n)1(ie)-438(wynosi\\252ab)28(y\\261)-437(s)-1(i\\246)-437(uro)-27(d\\241)-437(nad)]TJ -27.879 -13.549 Td[(dr)1(ugie!)-307({)-307(s)-1(ze)-1(p)1(n\\246\\252a)-308(Han)1(k)56(a)-308(z)-307(tak)55(\\241)-307(n)1(ie)-1(n)1(a)28(w)-1(i)1(\\261)-1(ci\\241,)-307(a\\273)-308(j)1(\\241)-308(w)-307(s)-1(ercu)-307(z)-1(ak)1(\\252u\\252o)-307(i)-307(s)-1(ame)-308(p)1(alc)-1(e)]TJ 0 -13.55 Td[(si\\246)-374(s)-1(p)1(r\\246)-1(\\273y\\252y)-373(do)-374(d)1(arcia,)-374(ale)-374(b)-27(e)-1(zw)28(olnie)-374(p)1(rzyg\\252adzi\\252a)-374(s)-1(ob)1(ie)-374(w\\252os)-1(y)-373(i)-374(za)-56(jr)1(z)-1(a\\252a)-374(w)-374(l)1(u-)]TJ 0 -13.549 Td[(ste)-1(r)1(k)28(o,)-352(wis)-1(z\\241ce)-353(n)1(a)-352(okienn)1(e)-1(j)-351(ramie;)-352(cofn\\246\\252a)-352(si\\246)-353(j)1(e)-1(d)1(nak)-351(pr\\246dk)28(o)-351(do)-55(jrza)28(w)-1(sz)-1(y)-351(s)-1(w)28(o)-56(j)1(\\241)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-334(wyn\\246dzni)1(a\\252)-1(\\241,)-333(p)-27(okr)1(yt\\241)-333(\\273)-1(\\363\\252t)28(ymi)-333(plamami,)-333(i)-333(z)-1(acz)-1(erwienion)1(e)-334(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-465(Nic)-1(zym)-466(si\\246)-466(n)1(ie)-466(umart)28(wi,)-465(d)1(obrze)-466(si\\246)-466(na\\271re,)-465(w)-466(c)-1(i)1(e)-1(p)1(le)-466(si\\246)-466(wy\\261)-1(p)1(i,)-465(dziec)-1(i)]TJ -27.879 -13.549 Td[(ni)1(e)-449(r)1(o)-28(dzi,)-447(to)-448(ni)1(e)-449(ma)-448(b)28(y)1(\\242)-449(u)1(ro)-28(d)1(na!)-447({)-448(p)-27(om)27(y\\261la\\252a)-448(z)-448(tak)56(\\241)-448(gorycz\\241,)-448(\\273e)-449(wyc)28(ho)-28(d)1(z)-1(\\241c)]TJ 0 -13.55 Td[(dr)1(z)-1(wiami)-333(trzas)-1(n)1(\\246)-1(\\252a,)-333(a\\273)-334(sz)-1(y)1(b)28(y)-333(z)-1(ab)1(rz\\246)-1(cz)-1(a\\252y)84(.)]TJ 27.879 -13.549 Td[(Ob)1(ud)1(z)-1(i\\252a)-291(s)-1(i\\246)-292(wresz)-1(cie)-292(Jagna.)-291(Jeno)-291(s)-1(tar)1(y)-292(le\\273a\\252)-292(w)27(ci\\241\\273)-292(b)-27(e)-1(z)-292(r)1(uc)27(h)29(u,)-291(wpatrzon)28(y)]TJ\nET\nendstream\nendobj\n1205 0 obj <<\n/Type /Page\n/Contents 1206 0 R\n/Resources 1204 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1204 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1209 0 obj <<\n/Length 9768      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(376)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pr)1(z)-1(ed)-333(si\\246)-1(.)]TJ 27.879 -13.549 Td[(Le\\273)-1(a\\252)-414(ju)1(\\273)-415(tak)-413(c)-1(a\\252e)-414(trzy)-414(niedziele,)-414(o)-28(d)-414(k)1(ie)-1(l)1(a)-415(go)-414(z)-414(lasu)-414(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\271li.)-414(Czas)-1(em)]TJ -27.879 -13.549 Td[(si\\246)-396(jeno)-396(j)1(akb)28(y)-395(bud)1(z)-1(i)1(\\252,)-396(Jagn)28(y)-395(w)27(o\\252a\\252,)-395(z)-1(a)-396(r)1(\\246)-1(ce)-396(j\\241)-396(b)1(ra\\252,)-396(cos)-1(i)1(k)-396(c)27(h)1(c)-1(i)1(a\\252)-396(rze)-1(c)-396(i)-396(zno)28(wuj)]TJ 0 -13.549 Td[(dr)1(\\246)-1(t)28(wia\\252)-333(nie)-333(przem)-1(\\363)28(wiws)-1(zy)-333(ni)-333(s\\252)-1(o)28(w)28(a)-334(j)1(e)-1(d)1(nego.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-254(m)28(u)-253(i)-253(Ro)-27(c)27(ho)-253(p)1(rzyw)27(ozi\\252)-253(z)-253(m)-1(i)1(as)-1(ta)-253(d)1(oktor)1(a,)-253(kt\\363ren)-252(go)-253(ob)-28(ejr)1(z)-1(a\\252,)-253(n)1(a)-253(pap)1(ie)-1(r)1(-)]TJ -27.879 -13.55 Td[(ku)-360(cosik)-360(przepisa\\252,)-360(dzie)-1(si\\246\\242)-361(ru)1(bli)-360(wzi\\241\\252,)-360(leki)-360(te)-1(\\273)-360(k)28(os)-1(zto)28(w)27(a\\252y)-360(ni)1(e)-1(ma\\252o,)-360(a)-361(r)1(yc)27(h)29(t)27(y)1(k)]TJ 0 -13.549 Td[(p)-27(om)-1(og\\252o)-333(t)28(yle,)-333(c)-1(o)-333(i)-333(te)-334(dar)1(m)-1(o)28(w)28(e)-334(Domini)1(k)28(o)27(w)28(ej)-333(z)-1(ama)28(w)-1(i)1(ania.)]TJ 27.879 -13.549 Td[(Zrozumieli)-462(ryc)28(h\\252o,)-462(jak)28(o)-462(si\\246)-463(j)1(u\\273)-463(n)1(ie)-463(wyli)1(\\273)-1(e,)-462(i)-462(os)-1(ta)28(wili)-462(go)-462(w)-463(sp)-27(ok)28(o)-56(jn)1(o\\261)-1(ci.)]TJ -27.879 -13.549 Td[(Wiad)1(omo)-434(jes)-1(t)1(,)-434(\\273e)-434(kiej)-434(k)1(to)-434(na)-433(\\261)-1(mier\\242)-434(c)27(h)1(oruj)1(e)-1(,)-433(to)-434(\\273eb)28(y)-434(m)28(u)-433(ju\\273)-434(n)1(ie)-434(wie)-1(m)-434(j)1(akie)]TJ 0 -13.549 Td[(leki)-304(a)-304(dokt)1(ory)-304(z)-1(w)28(ozi\\252,)-304(z)-1(amrze)-1(\\242)-304(m)27(u)1(s)-1(i,)-304(a)-304(ma)-304(z)-1(a\\261)-304(oz)-1(d)1(ro)28(w)-1(i)1(e)-1(\\242,)-304(i)-304(b)-28(ez)-305(n)1(icz)-1(yj)1(e)-1(j)-303(p)-28(omo)-28(cy)]TJ 0 -13.549 Td[(ozdro)28(wieje.)]TJ 27.879 -13.55 Td[(Wi\\246c)-305(m)-1(i)1(e)-1(li)-304(k)28(ole)-305(ni)1(e)-1(go)-305(t)28(yl)1(e)-306(j)1(u\\273)-305(jeno)-304(s)-1(tar)1(un)1(k)28(\\363)27(w,)-304(c)-1(o)-305(m)28(u)-305(t)1(a)-305(c)-1(z\\246)-1(sto)-305(o)-28(d)1(mie)-1(n)1(iali)]TJ -27.879 -13.549 Td[(na)-390(g\\252o)28(w)-1(i)1(e)-391(z)-1(mo)-28(cz)-1(on)1(e)-391(s)-1(zmat)28(y)83(,)-390(w)27(o)-27(dy)-390(pi)1(\\242)-391(p)-28(o)-27(da)-56(j)1(\\241c)-391(alb)-27(o)-391(i)-390(\\271dziebk)28(o)-390(m)-1(lek)56(a,)-390(b)-28(o)-390(je\\261)-1(\\242)]TJ 0 -13.549 Td[(ni)1(e)-334(m\\363g\\252)-1(,)-333(\\273e)-334(m)28(u)-333(s)-1(i\\246)-333(to)-334(wsz)-1(ystk)28(o)-333(z)-1(wraca\\252o.)]TJ 27.879 -13.549 Td[(Mi)1(ark)28(o)28(w)27(ali)-404(te)-1(\\273)-405(lu)1(dzie,)-405(a)-405(n)1(a)-56(j)1(bard)1(z)-1(iej)-404(Jam)27(b)1(ro\\273y)83(,)-405(j)1(ak)28(o)-405(pr)1(akt)28(yk)-404(b)28(y\\252)-405(wielki,)]TJ -27.879 -13.549 Td[(i\\273)-399(j)1(e)-1(\\261li)-399(Bory)1(na)-399(d)1(o)-399(r)1(oz)-1(u)1(m)27(u)-398(nie)-399(p)1(rzyjd)1(z)-1(i)1(e)-1(,)-398(to)-399(\\261m)-1(i)1(e)-1(r\\242)-399(b)-27(\\246dzie)-399(m)-1(i)1(a\\252)-399(letk)55(\\241)-398(i)-399(r)1(yc)27(h)1(\\252\\241.)]TJ 0 -13.55 Td[(Sp)-27(o)-28(d)1(z)-1(i)1(e)-1(w)28(ali)-462(si\\246)-463(j)1(e)-1(j)-461(c)-1(o)-462(dzie\\253)-462(i)-462(n)1(ie)-463(p)1(rzyc)27(h)1(o)-28(dzi\\252a;)-462(a\\273)-463(si\\246)-462(ju)1(\\273)-463(mie)-1(r)1(z)-1(i)1(\\252)-1(o)-462(to)-462(d)1(\\252ugie)]TJ 0 -13.549 Td[(cz)-1(ek)55(an)1(ie,)-333(b)-28(o)-28(\\242)-333(trza)-334(go)-333(b)28(y\\252o)-333(pi)1(lno)28(w)28(a\\242)-334(i)-333(jak)56(\\241)-333(tak)55(\\241)-333(da)28(w)28(a\\242)-334(opi)1(e)-1(k)28(\\246.)]TJ 27.879 -13.549 Td[(Jagn)28(y)-476(to)-477(b)28(y\\252o)-477(p)1(s)-1(i)1(e)-478(p)1(ra)28(w)27(o)-476(dogl\\241d)1(a\\242)-478(i)-476(pr)1(z)-1(y)-477(n)1(im)-477(du)1(lcz)-1(y\\242)-477({)-477(c\\363\\273)-1(,)-476(kiej)-477(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(oredzi\\252a)-353(i)-352(go)-28(d)1(z)-1(in)29(y)-353(w)-352(c)27(ha\\252u)1(pie)-353(wysiedzie\\242)-1(?)-353(S)1(tary)-352(obmierz\\252)-353(j)1(e)-1(j)-352(d)1(o)-353(cna)-352(i)-353(ci\\241\\273y\\252a)]TJ 0 -13.549 Td[(ta)-363(c)-1(i\\241)-27(g\\252)-1(a)-363(w)27(o)-55(jn)1(a)-364(z)-364(Han)1(k)55(\\241,)-363(kt\\363r)1(a)-364(j\\241)-363(o)-28(d)1(s)-1(u)28(w)28(a\\252a)-364(o)-28(d)-363(wsz)-1(ystkiego)-364(i)-363(pi)1(lno)28(w)28(a\\252a)-364(gorze)-1(j)]TJ 0 -13.55 Td[(z\\252)-1(o)-27(dzie)-1(j)1(a)-346({)-347(to)-346(i)-346(ni)1(e)-347(dziw)28(ota,)-346(\\273)-1(e)-346(c)-1(i\\241)-27(gn\\246\\252)-1(o)-346(j)1(\\241)-347(n)1(a)-347(\\261wiat,)-346(\\273e)-347(c)27(h)1(c)-1(ia\\252o)-346(s)-1(i)1(\\246)-347(jej)-346(lec)-1(i)1(e)-1(\\242)-347(n)1(a)]TJ 0 -13.549 Td[(te)-422(u)1(grz)-1(an)1(e)-422(pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(a,)-422(p)-27(omi\\246)-1(d)1(z)-1(y)-421(lu)1(dzi,)-421(na)-421(w)27(oln)1(o\\261)-1(\\242,)-421(to)-422(zda)28(w)28(a\\252)-1(a)-421(pi)1(lno)28(w)28(anie)]TJ 0 -13.549 Td[(J\\363zc)-1(e)-334(i)-333(n)1(ies)-1(\\252a)-333(s)-1(i\\246)-333(nie)-334(wiad)1(a)-333(gdzie)-1(,)-333(i\\273)-333(nieraz)-334(d)1(opiero)-333(wiec)-1(zorami)-333(w)-1(r)1(ac)-1(a\\252a..)1(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-376(z)-1(a\\261)-377(t)28(y)1(le)-377(go)-377(j)1(e)-1(n)1(o)-377(d)1(ogl\\241da\\252a,)-376(c)-1(o)-376(pr)1(z)-1(y)-376(lud)1(z)-1(i)1(ac)27(h:)-376(skrzat)-377(b)29(y\\252)-377(to)-376(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(g\\252up)1(i)-441(a)-441(lata)28(w)-1(i)1(e)-1(c.)-441(Hank)56(a)-441(wi\\246)-1(c)-441(i)-441(to)-441(m)27(usia\\252a)-441(wz)-1(i\\241\\242)-441(na)-441(sw)27(o)-55(j\\241)-441(g\\252o)28(w)27(\\246)-442(i)-441(o)-441(c)28(horego)]TJ 0 -13.55 Td[(db)1(a\\242)-1(,)-351(b)-28(o)-352(c)28(ho)-28(cia\\273)-353(i)-351(k)28(o)27(w)28(alo)28(wie)-353(ma\\252o)-352(dzies)-1(i\\246\\242)-353(r)1(az)-1(y)-352(n)1(a)-352(dzie\\253)-352(zagl\\241dali)1(,)-352(to)-352(jeno)-352(p)-27(o)]TJ 0 -13.549 Td[(to,)-354(b)28(y)-355(j)1(e)-1(j)-354(p)1(ilno)28(w)28(a\\242)-1(,)-354(c)-1(zy)-355(cze)-1(go)-355(z)-355(c)28(ha\\252up)29(y)-355(n)1(ie)-355(w)-1(y)1(nosi,)-355(a)-354(g\\252\\363)27(wn)1(ie)-355(c)-1(ze)-1(k)56(ali;)-354(i\\273)-355(mo\\273)-1(e)]TJ 0 -13.549 Td[(stary)-333(pr)1(z)-1(em)-1(\\363)28(wi)-333(jes)-1(zc)-1(ze)-334(i)-333(ma)-56(j)1(\\241tkiem)-334(rozp)-27(orz\\241dz)-1(i)1(.)]TJ 27.879 -13.549 Td[(\\233arli)-403(si\\246)-404(p)1(rzy)-404(t)28(ym)-403(jak)28(o)-403(te)-404(psy)-403(kiele)-404(zdyc)28(ha)-55(j\\241ce)-1(go)-403(bar)1(ana)-403(i)-404(p)1(rze)-1(p)1(ierali)-403(z)]TJ -27.879 -13.549 Td[(w)28(ark)28(otem)-1(,)-444(kto)-445(p)1(ie)-1(r)1(w)27(ej)-445(c)28(h)28(yci)-445(k\\252ami)-445(za)-445(lelita)-445(i)-444(jak)56(\\241)-445(sz)-1(tu)1(c)-1(zk)28(\\246)-445(la)-445(sie)-1(b)1(ie)-445(wys)-1(zar-)]TJ 0 -13.55 Td[(pi)1(e)-1(;)-349(t)28(ymcz)-1(aso)28(w)-1(i)1(e)-350(za\\261)-350(k)28(o)28(w)27(al)1(,)-349(c)-1(o)-349(in)1(o)-349(up)1(atrzy\\252,)-349(c)-1(o)-349(m)28(u)-349(t)28(yl)1(k)28(o)-350(w)-349(p)1(az)-1(u)1(ry)-349(wpad)1(\\252o,)-349(to)]TJ 0 -13.549 Td[(p)-27(oryw)28(a\\252,)-362(c)27(ho)-27(\\242)-1(b)28(y)-362(i)-362(stary)-362(p)-27(os)-1(tr)1(onek)-362(alb)-28(o)-362(k)56(a)28(w)27(a\\252)-362(des)-1(k)1(i)-363(z)-362(gar\\261c)-1(i)-362(trza)-362(m)27(u)-362(b)28(y)1(\\252o)-363(wy-)]TJ 0 -13.549 Td[(ry)1(w)27(a\\242)-347(i)-346(na)-346(k)56(a\\273)-1(d)1(ym)-347(krok)1(u)-346(piln)1(o)28(w)27(a\\242,)-346(\\273)-1(e)-347(d)1(z)-1(ie\\253)-346(nie)-346(prze)-1(sze)-1(d)1(\\252)-347(b)-27(e)-1(z)-347(k\\252\\363tn)1(i)-346(a)-347(srogic)27(h)]TJ 0 -13.549 Td[(p)-27(om)-1(sto)28(w)27(a\\253)1(.)]TJ 27.879 -13.549 Td[(P)28(o)28(wiada)-55(j\\241:)-236(kto)-236(ran)1(o)-237(ws)-1(t)1(a)-56(je,)-236(te)-1(m)28(u)-236(P)28(an)-236(B\\363g)-237(d)1(a)-56(je,)-236(i)-237(p)1(ra)28(wda,)-236(ale)-237(k)28(o)28(w)28(al)-237(u)1(m)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(ws)-1(ta)28(w)28(a\\242)-398(i)-397(o)-397(p)-27(\\363\\252no)-28(c)28(ku,)-397(l)1(e)-1(cie)-1(\\242)-397(c)27(h)1(o)-28(\\242)-1(b)29(y)-397(na)-397(dzies)-1(i\\241t)1(\\241)-398(wie\\261,)-397(je\\261)-1(li)-397(j)1(e)-1(n)1(o)-397(s)-1(z\\252o)-397(o)-398(d)1(obr)1(y)]TJ 0 -13.55 Td[(zarob)-27(e)-1(k;)-333(c)28(h\\252op)-333(b)28(y\\252)-333(c)27(h)1(c)-1(iwy)-333(n)1(a)-334(gr)1(os)-1(z)-334(i)-333(tak)-333(zabiegliwy)84(,)-333(jak)-333(ma\\252)-1(o)-333(kt\\363r)1(e)-1(n)1(.)]TJ 27.879 -13.549 Td[(Oto)-421(i)-420(te)-1(r)1(az)-1(,)-420(le)-1(d)1(wie)-421(c)-1(o)-421(Jagn)1(a)-421(z)-421(\\252\\363\\273)-1(k)56(a)-421(wylaz\\252a)-421(i)-421(w)28(e)-1(\\252n)1(iaki)-421(n)1(a)-421(s)-1(i)1(\\246)-422(wd)1(z)-1(ia\\252a,)]TJ -27.879 -13.549 Td[(dr)1(z)-1(wi)-333(skrzypn)1(\\246)-1(\\252y)-333(i)-333(on)-333(si\\246)-334(cic)27(h)1(o)-334(wsun\\241\\252)-333(pr)1(os)-1(to)-333(id)1(\\241c)-334(do)-333(c)27(h)1(orego.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(gad)1(a\\252)-334(cz)-1(ego?)-334({)-333(z)-1(a)-55(jr)1(z)-1(a\\252)-333(m)27(u)-333(z)-334(b)1(lisk)56(a)-334(w)-333(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(le\\273y)83(,)-333(jak)-333(l)1(e)-1(\\273a\\252)-1(!)-333({)-333(o)-28(d)1(bu)1(rkn)1(\\246)-1(\\252a)-333(z)-1(b)1(ie)-1(r)1(a)-56(j)1(\\241c)-334(w\\252o)-1(sy)-333(p)-27(o)-28(d)-333(c)27(h)28(u)1(s)-1(t)1(k)28(\\246)-1(.)]TJ 0 -13.55 Td[(Bos)-1(a)-408(j)1(e)-1(sz)-1(cz)-1(e)-408(b)28(y\\252a,)-407(w)-409(k)28(osz)-1(u)1(li,)-407(\\271)-1(d)1(z)-1(iebk)28(o)-408(r)1(oz)-1(es)-1(p)1(ana)-408(i)-408(tak)56(a)-408(u)1(ro)-28(d)1(na,)-408(a)-408(j)1(ak)28(o-)]TJ -27.879 -13.549 Td[(wym\\261)-349(pr)1(a\\273)-1(\\241cym)-349(ciep\\252em)-349(b)1(uc)27(h)1(a)-56(j)1(\\241c)-1(a)-348(i)-348(lu)1(b)-28(o\\261c)-1(i)1(\\241,)-348(\\273)-1(e)-349(p)-27(o)28(wi\\363)-28(d)1(\\252)-349(p)-27(o)-348(niej)-348(zm)-1(r)1(u\\273on)28(ymi)]TJ\nET\nendstream\nendobj\n1208 0 obj <<\n/Type /Page\n/Contents 1209 0 R\n/Resources 1207 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1207 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1212 0 obj <<\n/Length 9053      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(377)]TJ -358.232 -35.866 Td[(\\261le)-1(p)1(iami.)]TJ 27.879 -13.549 Td[({)-322(Wiec)-1(ie)-322({)-323(p)1(rzys)-1(u)1(n\\241\\252)-322(s)-1(i\\246)-322(tu\\273)-323(d)1(o)-323(n)1(iej)-322({)-323(or)1(ganista)-322(w)-1(y)1(gada\\252)-322(s)-1(i\\246)-322(prze)-1(d)1(e)-323(mn\\241,)]TJ -27.879 -13.549 Td[(\\273e)-328(s)-1(tar)1(y)-327(m)27(usi)-327(mie)-1(\\242)-327(s)-1(p)-27(oro)-327(goto)28(w)27(ego)-328(gr)1(os)-1(za,)-327(b)-28(o)-327(jes)-1(zcz)-1(e)-328(p)1(rze)-1(d)-327(G)1(o)-28(dami)-327(c)27(h)1(c)-1(ia\\252)-327(da\\242)]TJ 0 -13.549 Td[(c)27(h)1(\\252opu)-403(z)-403(D\\246)-1(b)1(icy)-403(c)-1(a\\252e)-403(pi\\246\\242)-1(se)-1(t)-403(r)1(ub)1(li;)-403(o)-403(p)1(ro)-28(ce)-1(n)28(ta)-403(si\\246)-403(jeno)-403(nie)-403(z)-1(go)-27(dzili.)-403(M)1(usz)-1(\\241)-403(te)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-270(b)28(y\\242)-270(s)-1(c)28(ho)28(w)27(an)1(e)-271(gd)1(z)-1(i)1(e)-271(w)-270(c)28(ha\\252up)1(ie...)-270(Uw)28(a\\273)-1(a)-55(jcie)-270(pil)1(nie)-270(na)-269(Hank)28(\\246,)-270(b)-27(o)-270(jakb)29(y)]TJ 0 -13.55 Td[(c)27(h)29(yc)-1(i)1(\\252)-1(a)-381(p)1(rze)-1(d)-381(n)1(am)-1(i)1(,)-381(ju)1(\\273)-382(b)28(y)-381(ic)28(h)-381(lu)1(dzkie)-381(ok)28(o)-382(n)1(ie)-382(zobaczy\\252o...)-381(Mogl)1(ib)28(y\\261c)-1(i)1(e)-382(z)-382(w)28(ol-)]TJ 0 -13.549 Td[(na,)-347(kr)1(yjomo)-347(przepatry)1(w)27(a\\242)-348(wsz)-1(ystki)1(e)-348(k)55(\\241t)28(y)84(,)-347(jeno)-347(b)28(y)-347(nik)1(to)-348(si\\246)-348(n)1(ie)-348(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252..)1(.)]TJ 0 -13.549 Td[(S\\252u)1(c)27(h)1(ac)-1(ie)-333(to?)]TJ 27.879 -13.549 Td[({)-343(Co)-343(b)29(y)-343(za\\261)-343(nie!)-343({)-342(okry)1(\\252)-1(a)-342(ramiona)-342(z)-1(ap)1(as)-1(k)56(\\241,)-342(b)-28(o)-342(jakb)28(y)-342(j\\241)-342(obmac)-1(y)1(w)27(a\\252)-343(t)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(z\\252)-1(o)-27(dzie)-1(j)1(s)-1(k)1(im)-1(i)-333(\\261lepiami.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(zed\\252)-399(si\\246)-399(k)28(o\\252u)1(j\\241cy)-398(p)-28(o)-398(izbie)-399(i)-398(n)1(ib)28(y)-398(o)-28(d)-398(n)1(ie)-1(c)28(hce)-1(n)1(ia)-399(zagl\\241d)1(a\\252)-399(za)-399(ob)1(razy)83(,)]TJ -27.879 -13.55 Td[(wysz)-1(u)1(kuj)1(\\241c)-334(pr)1(z)-1(y)-333(t)28(ym)-334(p)1(iln)1(ie,)-334(gd)1(z)-1(i)1(e)-334(p)-27(opad\\252o.)]TJ 27.879 -13.549 Td[({)-333(Macie)-334(to)-333(klu)1(c)-1(z)-334(o)-27(d)-333(k)28(om)-1(or)1(y?)-334({)-333(\\252yp)1(n\\241\\252)-333(\\261)-1(lepi)1(a)-1(mi)-333(na)-333(ma\\252e)-1(,)-333(za)27(w)28(arte)-333(drzwi.)]TJ 0 -13.549 Td[({)-333(A)-334(wisi)-333(na)-333(P)28(asyjce)-334(p)-27(o)-28(d)-333(okn)1(e)-1(m.)]TJ 0 -13.549 Td[({)-306(D\\252u)1(tam)-306(m)27(u)-305(p)-27(o\\273)-1(yczy\\252,)-306(b)-27(\\246)-1(d)1(z)-1(i)1(e)-307(j)1(u\\273)-306(z)-306(mie)-1(si\\241c,)-306(a)-305(te)-1(r)1(az)-307(mi)-305(p)-28(otr)1(z)-1(ebn)1(e)-306(i)-306(n)1(ik)56(a)-56(j)]TJ -27.879 -13.549 Td[(go)-333(nale\\271)-1(\\242)-333(nie)-334(mog\\246.)-333(My\\261l\\246)-1(,)-333(co)-333(tam)-334(w)-334(r)1(up)1(ie)-1(ciac)27(h)-332(z)-1(arzucone...)]TJ 27.879 -13.55 Td[({)-333(Szuk)56(a)-56(j)1(c)-1(i)1(e)-334(s)-1(ami,)-333(ja)-333(go)-333(w)27(ama)-333(nie)-333(w)-1(y)1(\\261)-1(li)1(piam.)]TJ 0 -13.549 Td[(Od)1(s)-1(t\\241)-27(pi\\252)-439(o)-28(d)-438(drzwi,)-439(b)-27(o)-439(rozle)-1(g\\252)-439(si\\246)-439(w)-440(sieni)-439(g\\252os)-439(Hanki,)-438(klu)1(c)-1(z)-439(na)-439(mie)-1(j)1(s)-1(cu)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiesi\\252)-334(i)-333(za)-334(cz)-1(ap)1(k)28(\\246)-334(wz)-1(i)1(\\241\\252.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(j)1(utr)1(o)-334(p)-27(osz)-1(u)1(k)55(am...)-333(p)1(iln)1(o)-334(mi)-333(bi)1(e)-1(\\273y\\242)-334(d)1(o)-334(d)1(om)-1(..)1(.)-333(R)-1(o)-27(c)27(ho)-333(p)1(rz)-1(y)1(jec)27(ha\\252?)]TJ 0 -13.549 Td[({)-333(Ja)-334(t)1(o)-334(wiem)-1(?)-333(Sp)28(y)1(ta)-56(j)1(c)-1(ie)-333(Hanki)1(!)]TJ 0 -13.55 Td[(P)28(osta\\252)-443(jes)-1(zc)-1(ze)-444(\\271dziebk)28(o,)-443(p)-27(os)-1(k)1(roba\\252)-443(r)1(udy)1(c)27(h)-443(w)28(\\241s)-1(\\363)28(w,)-443(a)-443(o)-28(cz)-1(y)-443(t)1(o)-444(m)28(u)-443(j)1(ak)-443(te)]TJ -27.879 -13.549 Td[(z\\252)-1(o)-27(dzie)-1(j)1(e)-334(lata\\252y)-333(p)-27(o)-334(k)56(\\241tac)28(h;)-333(za\\261)-1(mia\\252)-333(s)-1(i\\246)-333(c)-1(osik)-333(do)-333(s)-1(i)1(e)-1(b)1(ie)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-304(z)-1(r)1(z)-1(u)1(c)-1(i\\252a)-303(z)-1(ap)1(as)-1(k)28(\\246)-304(i)-303(j\\246\\252)-1(a)-303(s)-1(i)1(\\246)-305(s\\252ania)-303(\\252\\363\\273)-1(k)56(a)-304(i)-303(dr)1(ugic)28(h)-304(u)1(pr)1(z)-1(\\241ta\\253)1(,)-304(rzuca)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-295(pr)1(z)-1(ycz)-1(a)-55(jon)1(e)-296(sp)-28(o)-55(jr)1(z)-1(enia)-295(n)1(a)-295(m)-1(\\246\\273a,)-295(i)-295(tak)-295(za)27(w\\273dy)-295(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-295(p)-27(o)-295(izbie,)-295(b)28(y)-295(si\\246)]TJ 0 -13.549 Td[(ni)1(e)-334(natk)1(n\\241\\242)-334(n)1(a)-334(j)1(e)-1(go)-333(o)-28(cz)-1(y)84(,)-333(w)27(ci\\241\\273)-334(r)1(oz)-1(w)28(arte.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-488(\\273e)-488(b)28(y\\252)-487(jej)-488(ob)1(m)-1(i)1(e)-1(r)1(z)-1(\\252y)84(,)-488(b)-27(o)-56(j)1(a\\252a)-488(s)-1(i)1(\\246)-488(go)-488(i)-488(n)1(iena)28(widzi\\252a)-488(ca\\252\\241)-488(mo)-28(c\\241)-488(z)-1(a)]TJ -27.879 -13.549 Td[(ws)-1(zystkie)-286(kr)1(z)-1(y)1(w)-1(d)1(y)-285(doznane,)-285(a)-286(i)1(le)-286(razy)-285(j\\241)-285(w)27(o\\252a\\252)-286(i)-285(b)1(ra\\252)-286(w)-285(s)-1(w)28(o)-56(j)1(e)-286(rozpalon)1(e)-286(i)-285(le)-1(p)1(kie)]TJ 0 -13.549 Td[(r\\246c)-1(e,)-237(zam)-1(i)1(e)-1(ra\\252a)-237(z)-237(obrzyd)1(z)-1(enia)-237(i)-237(strac)28(h)28(u,)-237(t)1(ak)-237(\\261)-1(mierci\\241)-237(w)-1(i)1(a\\252o)-238(o)-27(d)-237(ni)1(e)-1(go)-237(i)-237(tr)1(up)-27(e)-1(m,)-237(ale)]TJ 0 -13.549 Td[(p)-27(om)-1(i)1(m)-1(o)-247(ws)-1(zystkiego)-247(m)-1(o\\273e)-248(j)1(e)-1(n)1(o)-247(ona)-247(jedn)1(a)-247(na)-55(jsz)-1(cz)-1(erze)-1(j)-246(pragn)1(\\246)-1(\\252a,)-247(b)29(y)-247(w)-1(y)1(z)-1(d)1(ro)28(wia\\252.)]TJ 27.879 -13.549 Td[(T)83(eraz)-350(ci)-349(dop)1(iero)-349(m)-1(iar)1(k)28(o)28(w)27(a\\252a,)-349(co)-350(straci,)-349(sk)28(oro)-349(go)-349(nie)-350(stan)1(ie)-1(;)-349(p)1(rzy)-349(nim)-349(go-)]TJ -27.879 -13.55 Td[(sp)-28(o)-28(d)1(yn)1(i\\241)-479(s)-1(i\\246)-479(c)-1(zu\\252a,)-479(s\\252uc)27(h)1(ali)-479(jej)-479(wsz)-1(ysc)-1(y)84(,)-479(a)-479(dr)1(ugie)-479(k)28(obiet)28(y)-479(c)-1(zy)-479(dzieuc)27(h)28(y)-478(rade)]TJ 0 -13.549 Td[(ni)1(e)-1(r)1(ade)-388(u)28(w)28(a\\273)-1(a\\242)-387(j\\241)-387(i)-388(u)1(s)-1(t)1(\\246)-1(p)-27(o)28(w)27(a\\242)-388(p)1(ie)-1(r)1(ws)-1(ze)-1(go)-387(m)-1(i)1(e)-1(j)1(s)-1(ca)-388(m)28(usia\\252y)-387({)-388(j)1(ak\\273)-1(e!)-387(Boryn)1(o)27(w)28(\\241)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-434(b)28(y\\252a)-434({)-434(Maciej)-434(z)-1(a\\261,)-434(c)27(h)1(o)-28(cia\\273)-435(w)-434(dom)28(u)-434(b)28(y)1(\\252)-435(k)56(\\241\\261liwy)-434(kiej)-434(p)1(ies)-435(i)-434(d)1(obrego)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a)-340(nie)-340(da\\252,)-340(al)1(e)-341(p)1(rz)-1(ed)-340(l)1(ud\\271mi)-340(wie)-1(l)1(c)-1(e)-340(db)1(a\\252)-341(o)-340(n)1(i\\241)-340(i)-340(strze)-1(g\\252,)-340(b)28(y)-339(jej)-340(kto)-340(n)1(ie)-340(\\261)-1(mia\\252)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(zano)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(Nie)-266(rozumia\\252a)-266(ona)-266(tego)-266(prz\\363)-28(d)1(z)-1(i,)-265(dopi)1(e)-1(r)1(o)-267(k)1(ie)-1(j)-265(Hank)56(a)-266(z)-1(w)28(ali\\252a)-266(si\\246)-266(do)-266(c)27(h)1(a\\252up)28(y)]TJ -27.879 -13.55 Td[(i)-227(g\\363r\\246)-228(nad)-227(ni)1(\\241)-228(br)1(a\\242)-229(p)-27(o)-28(cz)-1(\\246\\252a,)-228(o)-27(dsu)28(w)27(a)-55(j\\241c)-228(o)-28(d)-227(p)1(ano)28(w)27(an)1(ia,)-227(p)-28(o)-28(cz)-1(u)1(\\252a)-228(sw)27(o)-55(je)-228(opu)1(s)-1(zcz)-1(enie)]TJ 0 -13.549 Td[(i)-333(krzywdy)84(.)]TJ 27.879 -13.549 Td[(Nie)-332(o)-332(gron)28(t)-332(j)1(e)-1(j)-331(sz)-1(\\252o)-332(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-332({)-332(c)-1(o)-332(j)1(e)-1(j)-331(tam)-332(b)28(y\\252y)-332(ma)-56(j)1(\\241tki?...)-331(t)28(yle)-332(s)-1(ta\\252a)-332(o)-332(n)1(ie)]TJ -27.879 -13.549 Td[(aku)1(ratn)1(ie)-1(,)-301(c)-1(o)-302(o)-302(\\252o\\253)1(s)-1(ki)1(e)-303(lat)1(o,)-302(a)-302(c)27(h)1(o)-28(c)-1(i)1(a\\273)-303(j)1(u\\273)-302(s)-1(i)1(\\246)-303(wzw)-1(y)1(c)-1(zai\\252a)-302(do)-302(r)1(z)-1(\\241d)1(\\363)27(w)-302(i)-301(rada)-301(b)28(y\\252a)]TJ 0 -13.549 Td[(wielc)-1(e)-280(wynosi\\242)-280(s)-1(i)1(\\246)-281(a)-280(p)1(usz)-1(y\\242)-280(b)-27(ogac)-1(t)28(w)28(e)-1(m,)-280(i)-280(r)1(oz)-1(p)1(iera\\242)-281(n)1(a)-280(sw)27(oim,)-280(to)-280(i)-279(z)-1(a)-280(t)28(ym)-280(b)28(y)-279(nie)]TJ 0 -13.55 Td[(p\\252ak)56(a\\252a,)-342(b)-27(o)-343(u)-341(m)-1(atk)1(i)-342(b)28(y\\252o)-342(jej)-342(te\\273)-343(n)1(ie)-1(zgorze)-1(j)-341({)-343(al)1(e)-343(jedn)1(o)-342(j\\241)-342(ano)-342(gn)1(\\246)-1(b)1(i\\252o)-343(b)-27(ole\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(\\273e)-371(p)1(rze)-1(d)-369(Han)1(k)55(\\241)-369(ust\\246)-1(p)-27(o)28(w)27(a\\242)-370(m)28(usi,)-369(prze)-1(d)-369(An)29(tk)28(o)27(w)28(\\241)-370(k)28(ob)1(iet\\241:)-370(to)-369(j\\241)-369(przyp)1(ie)-1(k)56(a\\252o)-370(d)1(o)]TJ\nET\nendstream\nendobj\n1211 0 obj <<\n/Type /Page\n/Contents 1212 0 R\n/Resources 1210 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1210 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1215 0 obj <<\n/Length 9423      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(378)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(\\273yw)27(ego)-333(bud)1(z)-1(\\241c)-333(z)-1(\\252o\\261\\242)-334(i)-333(c)27(h\\246\\242)-334(r)1(obienia)-333(n)1(a)-334(spr)1(z)-1(ec)-1(iw.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-409(\\273e)-409(j\\241)-409(i)-408(m)-1(atk)56(a)-409(p)-27(o)-28(d)1(m)-1(a)28(wia\\252a,)-408(i)-409(k)28(o)28(w)27(al)-408(ryc)28(h)28(to)28(w)27(a\\252)-409(co)-28(d)1(z)-1(ienn)29(ym)-409(p)-28(o)-28(d)1(ju)1(-)]TJ -27.879 -13.549 Td[(dzani)1(e)-1(m,)-389(b)-27(o)-389(s)-1(ama)-389(z)-390(siebie)-389(to)-389(b)28(y)-389(mo\\273e)-390(r)1(yc)27(h)1(\\252)-1(o)-389(u)1(s)-1(t\\241)-27(pi\\252a.)-389(T)84(ak)-389(j\\241)-389(j)1(u\\273)-389(m)-1(ierzi\\252y)-389(te)]TJ 0 -13.549 Td[(w)28(o)-56(jn)29(y)83(,)-333(\\273e)-334(ni)1(e)-1(raz)-333(c)27(hcia\\252a)-333(w)-1(szys)-1(tk)28(o)-333(cie)-1(p)1(n\\241\\242)-333(i)-334(p)1(rze)-1(n)1(ie\\261)-1(\\242)-334(si\\246)-334(d)1(o)-334(matki)1(.)]TJ 27.879 -13.549 Td[({)-319(Ani)-319(si\\246)-320(w)27(a\\273!)-319(s)-1(i)1(e)-1(d)1(\\271)-1(,)-319(p)-27(\\363ki)-319(nie)-319(z)-1(amrze)-1(!)-319(w)28(aruj)-318(s)-1(w)28(o)-56(j)1(e)-1(go!)-319({)-319(nak)56(az)-1(y)1(w)27(a\\252a)-319(s)-1(rogo)]TJ -27.879 -13.55 Td[(stara.)]TJ 27.879 -13.549 Td[(T)83(o)-330(i)-329(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)-329(c)27(ho)-27(\\242)-331(c)28(kni)1(\\252o)-330(s)-1(i\\246)-330(j)1(e)-1(j)-329(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(ie)-330({)-330(jak)1(\\273)-1(e?)-330(c)-1(a\\252e)-330(dn)1(i)-330(n)1(ie)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-333(do)-333(k)28(ogo)-333(g\\246)-1(b)29(y)-334(ot)28(w)28(orzy\\242)-334(n)1(i)-334(p)-27(o\\261m)-1(i)1(a\\242)-334(s)-1(i)1(\\246)-334(z)-334(kim,)-333(ni)-333(wyb)1(ie)-1(c)-333(do)-333(k)28(ogo...)]TJ 27.879 -13.549 Td[(A)-435(w)-435(dom)28(u)-435(p)-27(o)-56(j)1(\\246)-1(ki)1(w)27(a\\252)-435(stary)84(,)-435(b)28(y\\252a)-435(Han)1(k)55(a)-435(za)28(w)-1(\\273dy)-434(goto)27(w)28(a)-435(do)-435(k)1(\\252\\363tni,)-435(sz\\252)-1(a)]TJ -27.879 -13.549 Td[(ci\\241)-28(g\\252a)-333(w)27(o)-55(jna,)-333(\\273e)-334(j)1(u\\273)-334(zgo\\252a)-334(b)28(y)1(\\252o)-334(n)1(ie)-334(d)1(o)-334(wytr)1(z)-1(ymani)1(a.)]TJ 27.879 -13.549 Td[(U)-333(m)-1(atk)1(i)-333(te)-1(\\273)-334(b)29(y\\252o)-334(n)1(ie)-334(sp)-28(os\\363b)-333(wysie)-1(d)1(z)-1(i)1(e)-1(\\242.)]TJ 0 -13.55 Td[(T)83(o)-373(lata\\252a)-374(z)-373(k)55(\\241d)1(z)-1(i)1(e)-1(l\\241)-373(p)-27(o)-374(c)27(h)1(a\\252up)1(ac)27(h)-373({)-373(ale)-374(mog\\252)-1(a)-373(to)-373(i)-374(t)1(am)-374(wytrzyma\\242)-1(,)-373(kiej)]TJ -27.879 -13.549 Td[(w)28(e)-492(wsi)-491(b)28(y)1(\\252y)-491(sam)-1(e)-491(k)28(obi)1(e)-1(t)28(y)84(,)-491(rozkis\\252e)-1(,)-490(rozp\\252ak)56(ane,)-491(r)1(oz)-1(wrze)-1(szc)-1(zane,)-491(j)1(ak)28(o)-491(te)-491(dn)1(i)]TJ 0 -13.549 Td[(marco)27(w)28(e)-1(,)-412(a)-413(w)-1(sz)-1(\\246dy)84(,)-413(j)1(ak)28(o)-413(ta)-413(nie)-413(usta)-56(j)1(\\241c)-1(a)-413(li)1(tania,)-412(w)-1(y)1(rz)-1(ek)56(ania,)-412(a)-413(nik)56(a)-56(j)-412(\\273)-1(ad)1(nego)]TJ 0 -13.549 Td[(par)1(obk)56(a,)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)-333(na)-333(le)-1(k)56(arst)28(w)27(o!)]TJ 27.879 -13.549 Td[(\\233e)-334(j)1(u\\273)-334(n)1(i)-333(m)-1(iejsca,)-334(n)1(i)-333(rady)-333(d)1(a\\242)-334(sobie)-334(n)1(ie)-334(mog\\252a.)]TJ 0 -13.55 Td[(Do)-333(te)-1(go)-333(za\\261)-334(c)-1(z\\246s)-1(to,)-333(coraz)-334(cz)-1(\\246\\261)-1(ciej)-333(na)28(wiedza\\252)-1(y)-333(j)1(\\241)-334(wsp)-28(omin)1(ki)-333(o)-334(An)29(tku.)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-410(j)1(ak)28(o)-410(p)-27(o)-28(d)-409(sam)-410(k)28(oni)1(e)-1(c,)-410(n)1(im)-410(go)-409(w)-1(zi\\246li,)-409(wie)-1(l)1(c)-1(e)-410(k)1(u)-410(n)1(iem)27(u)-409(o)-28(c)28(h\\252o)-28(d)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(i)-427(te)-428(sp)-27(ot)27(y)1(k)55(an)1(ia)-427(ju)1(\\273)-428(b)28(y\\252y)-427(j)1(e)-1(n)1(o)-428(strac)28(hem)-428(i)-427(m\\246)-1(k)56(\\241;)-427(na)-427(ostatku)-427(za\\261)-428(u)1(krzywdzi\\252)-428(j)1(\\241)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-306(tak)-306(b)1(ardzo,)-306(a\\273)-306(du)1(s)-1(za)-306(p)-28(\\246cz)-1(ni)1(a\\252a)-306(\\273)-1(alem)-306(na)-306(p)1(rz)-1(y)1(p)-28(omin)1(ki...)-305(ale)-306(m)-1(ia\\252a)-306(wyj)1(\\261)-1(\\242)]TJ 0 -13.549 Td[(do)-455(k)28(ogo,)-456(wiedzia\\252a,)-456(\\273e)-456(tam,)-456(p)-27(o)-28(d)-455(brogi)1(e)-1(m,)-456(o)-455(k)55(a\\273dy)1(m)-456(z)-1(mierz)-1(c)28(h)28(u)-455(c)-1(ze)-1(k)56(a)-456(n)1(a)-456(n)1(i\\241)]TJ 0 -13.55 Td[(i)-407(wyp)1(atru)1(je...)-407(\\273e)-408(j)1(e)-1(st)-407(ktosik,)-406(kt\\363rem)27(u)-406(lub)-27(o)-407(si\\246)-408(s\\252uc)28(ha\\242...)-407(T)83(o)-407(c)28(ho)-28(\\242)-407(s)-1(i)1(\\246)-408(tr)1(z)-1(\\246s)-1(\\252a)-407(z)]TJ 0 -13.549 Td[(trw)28(ogi,)-253(b)28(y)-252(nie)-253(w)-1(y)1(patrzyli)1(,)-253(c)27(h)1(o)-28(\\242)-254(i)-253(on)-253(n)1(ieraz)-254(skrzycz)-1(a\\252)-253(za)-254(d)1(\\252ugie)-253(c)-1(zek)55(an)1(ie)-1(,)-252(o)-28(c)27(h)1(otnie)]TJ 0 -13.549 Td[(bi)1(e)-1(g\\252a)-339(zap)-27(om)-1(in)1(a)-56(j)1(\\241c)-340(o)-338(c)-1(a\\252ym)-339(\\261w)-1(i)1(e)-1(cie,)-339(gdy)-338(j\\241)-338(przygarn)1(\\241\\252)-339(do)-338(s)-1(iebi)1(e)-340(kr)1(z)-1(epk)28(o,)-338(nib)29(y)]TJ 0 -13.549 Td[(ten)-467(sm)-1(ok)-467(ogn)1(ist)28(y)83(,)-467(i)-467(b)1(ra\\252,)-467(n)1(i)-467(p)28(yta)-55(j\\241c)-467(o)-467(przyzw)27(ol)1(e)-1(\\253)1(s)-1(t)28(w)28(o...)-467(Ni)-467(w)-467(m)27(y)1(\\261)-1(li)-466(p)-28(osta\\252o)]TJ 0 -13.549 Td[(opi)1(e)-1(r)1(anie,)-333(kiej)-333(\\261)-1(cisk)55(a\\252,)-333(a\\273)-334(j)1(\\241)-334(md)1(li\\252o)-333(w)-334(do\\252k)1(u,)-333(i)-333(takim)-333(w)27(arem)-334(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252.)]TJ 27.879 -13.55 Td[(Nieraz)-233(d)1(o)-232(p)-28(\\363\\252no)-27(c)27(k)56(a)-232(z)-1(asn\\241\\242)-233(n)1(ie)-233(mog\\252a,)-232(c)27(h\\252o)-27(dz\\241c)-233(rozpalon)1(\\241)-233(ca\\252un)1(k)56(am)-1(i)-232(t)28(w)28(arz)]TJ -27.879 -13.549 Td[(o)-294(z)-1(imn)1(\\241)-295(\\261c)-1(ian)1(\\246)-295(wz)-1(b)1(ur)1(z)-1(on)1(a)-295(d)1(o)-295(d)1(na)-294(i)-294(p)-28(e\\252na)-294(w)-295(k)28(o\\261c)-1(i)1(ac)27(h)-294(on)28(yc)28(h)-294(s)-1(\\252o)-27(dkic)28(h,)-294(pr)1(a\\273)-1(\\241cyc)27(h)]TJ 0 -13.549 Td[(ogni)1(e)-1(m)-333(w)-1(sp)-27(om)-1(in)1(a\\253!)]TJ 27.879 -13.549 Td[(A)-435(teraz)-435(j)1(e)-1(st)-435(jak)-434(ten)-435(k)28(o\\252ek,)-435(sama,)-435(ni)1(kt)-435(j)1(e)-1(j)-434(ni)1(e)-436(p)-27(o)-28(d)1(patr)1(uje,)-435(n)1(ikt)-434(nad)-434(ni\\241)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)27(a)-349(ni)1(e)-350(ma,)-349(ale)-350(i)-349(d)1(o)-350(n)1(ik)28(ogo)-349(s)-1(i)1(\\246)-350(ni)1(e)-350(wydziera,)-349(n)1(ikto)-349(ju)1(\\273)-350(j)1(e)-1(j)-349(t)1(am)-350(za)-350(p)1(rze)-1(\\252aze)-1(m)]TJ 0 -13.55 Td[(ni)1(e)-334(c)-1(zek)55(a,)-333(i)-333(n)1(ikto)-333(nie)-333(przyn)1(ie)-1(w)28(ala..)1(.)]TJ 27.879 -13.549 Td[(\\233e)-294(w)28(\\363)-56(j)1(t)-293(z)-1(a)-293(n)1(i\\241)-293(c)27(h)1(o)-28(dzi,)-293(p)-27(o)-28(dsku)1(bu)1(je,)-293(s)-1(\\252o)-28(d)1(kie)-293(s)-1(\\252\\363)28(wk)55(a)-293(p)1(ra)28(wi,)-293(do)-293(p)1(\\252ot\\363)28(w)-294(p)1(rzy-)]TJ -27.879 -13.549 Td[(cis)-1(k)56(a,)-308(d)1(o)-308(k)55(ar)1(c)-1(zm)27(y)-308(n)1(a)-308(p)-28(o)-27(c)-1(z\\246)-1(stun)1(e)-1(k)-307(c)-1(i\\241)-27(gnie)-308(i)-308(rad)-307(b)28(y)-308(j\\241)-308(d)1(la)-308(s)-1(i)1(e)-1(b)1(ie)-309(zni)1(e)-1(w)28(oli\\252,)-308(to)-308(in)1(o)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-346(to)-346(m)27(u)-346(p)1(rzyz)-1(w)28(ala,)-346(\\273e)-347(c)28(kni)-346(si\\246)-346(jej)-346(wie)-1(l)1(c)-1(e)-346(i)-346(nie)-346(ma)-347(z)-346(kim)-346(dr)1(ugim)-346(s)-1(i)1(\\246)-347(p)-27(o\\261)-1(mia\\242,)]TJ 0 -13.549 Td[(ale)-334(t)1(ak)-334(m)28(u)-333(do)-333(An)28(tk)56(a)-333(kiej)-333(psu)-333(do)-333(gosp)-28(o)-27(darza!)]TJ 27.879 -13.549 Td[(I)-333(prze)-1(z)-333(z)-1(\\252o\\261\\242)-334(to)-333(jes)-1(zc)-1(ze)-334(rob)1(i)-333(la)-333(c)-1(a\\252ej)-333(w)-1(si)-333(i)-333(la)-333(tam)27(tego.)]TJ 0 -13.55 Td[(Sp)-27(osp)-28(on)1(o)28(w)27(a\\252)-377(c)-1(i)-377(on)-377(j)1(\\241)-377(i)-378(sp)-27(oniewie)-1(r)1(a\\252)-378(n)1(a)-377(os)-1(tatku)1(!)-377(Jak\\273e)-378({)-377(c)-1(a\\252\\241)-377(no)-27(c)-378(i)-377(c)-1(a\\252y)]TJ -27.879 -13.549 Td[(dzie\\253)-307(p)1(rze)-1(siedzia\\252)-307(w)-307(c)27(ha\\252u)1(pie)-307(p)1(rz)-1(y)-306(s)-1(tar)1(ym,)-307(na)28(w)28(e)-1(t)-306(s)-1(p)1(a\\252)-307(na)-307(j)1(e)-1(j)-306(\\252\\363\\273)-1(ku)1(,)-307(kr)1(okiem)-307(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-346(z)-346(izb)28(y)-345(nie)-345(rusz)-1(a\\252,)-345(a)-345(jej)-345(jak)1(b)28(y)-345(nie)-346(d)1(o)-56(j)1(rza\\252,)-346(c)28(ho)-28(\\242)-345(w)27(ci\\241\\273)-346(sta)28(w)27(a\\252a)-345(prze)-1(d)-344(nim)]TJ 0 -13.549 Td[(jak)-333(ten)-333(p)1(ie)-1(s,)-333(s)-1(k)56(aml\\241c)-334(o)-28(cz)-1(y)1(m)-1(a)-333(o)-333(z)-1(mi\\252o)28(w)27(an)1(ie:)]TJ 27.879 -13.549 Td[(Nie)-334(sp)-27(o)-56(j)1(rz)-1(a\\252)-333(na)-333(n)1(i\\241,)-333(o)-56(jca)-333(jeno)-333(widzia\\252)-333(a)-334(Han)1(k)28(\\246)-334(i)-333(dzie)-1(ci,)-333(p)1(s)-1(a)-333(na)28(w)28(e)-1(t.)]TJ 0 -13.55 Td[(T)83(o)-368(m)-1(o\\273e)-369(i)-368(b)-27(e)-1(z)-369(t)1(o)-369(j)1(u\\273)-369(d)1(o)-369(cna)-368(straci\\252a)-369(se)-1(r)1(c)-1(e)-368(do)-368(niego,)-368(i)-368(c)-1(a\\252kiem)-369(si\\246)-369(w)-368(niej)]TJ -27.879 -13.549 Td[(pr)1(z)-1(emie)-1(n)1(i\\252o)-425(n)1(aprze)-1(ciw,)-424(b)-28(o)-424(kiej)-425(go)-424(bral)1(i)-425(w)-425(k)56(a)-55(jdan)29(y)83(,)-424(wyda\\252)-425(si\\246)-425(j)1(akim\\261)-425(dru)1(gim,)]TJ\nET\nendstream\nendobj\n1214 0 obj <<\n/Type /Page\n/Contents 1215 0 R\n/Resources 1213 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1200 0 R\n>> endobj\n1213 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1218 0 obj <<\n/Length 9444      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(379)]TJ -358.232 -35.866 Td[(ob)-27(c)-1(ym)-405(zgo\\252a)-405(i)-405(tak)-404(ob)-28(o)-55(j\\246tn)28(ym,)-405(\\273e)-405(nie)-405(p)-27(otra\\014)1(\\252)-1(a)-404(go)-405(\\273)-1(a\\252o)28(w)27(a\\242,)-405(a)-404(na)28(w)27(et)-405(ze)-406(skr)1(yt\\241)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(ci\\241)-283(pr)1(z)-1(ygl)1(\\241da\\252a)-283(s)-1(i\\246)-283(Hance)-1(,)-283(j)1(ak)-283(ta)-284(w\\252osy)-283(rw)27(a\\252a)-283(\\252b)-27(e)-1(m)-283(t\\252uk)56(\\241c)-284(o)-283(\\261)-1(cian)1(\\246)-284(i)-283(wyj\\241c)]TJ 0 -13.549 Td[(ni)1(b)28(y)-333(s)-1(u)1(k)56(a)-334(za)-334(top)1(ion)28(y)1(m)-1(i)-333(sz)-1(cz)-1(eni)1(\\246)-1(tami.)]TJ 27.879 -13.549 Td[(Cies)-1(zy\\252a)-257(s)-1(i\\246)-257(m\\261)-1(ciwie)-258(z)-257(jej)-257(u)1(dr\\246ki,)-257(o)-27(dwraca)-56(j)1(\\241c)-258(z)-257(o)-28(dr)1(az)-1(\\241)-257(o)-28(cz)-1(y)-257(o)-27(d)-257(jego)-257(t)28(w)27(ar)1(z)-1(y)]TJ -27.879 -13.549 Td[(strasz)-1(n)1(e)-1(j)1(,)-334(j)1(ak)28(ob)28(y)-333(wp)-28(\\363\\252ob)1(\\252\\241k)55(an)1(e)-1(j)1(.)]TJ 27.879 -13.55 Td[(T)83(ak)-252(si\\246)-253(wtencz)-1(as)-253(ob)-27(cym)-253(sta\\252)-253(d)1(la)-252(niej,)-252(\\273e)-253(n)1(a)27(w)28(et)-253(n)1(ie)-253(u)1(m)-1(i)1(a\\252ab)28(y)-252(go)-253(sobi)1(e)-253(teraz)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(p)-28(omnie\\242,)-334(j)1(ak)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)56(a)-333(raz)-334(j)1(e)-1(d)1(e)-1(n)-333(wid)1(z)-1(ian)1(e)-1(go.)]TJ 27.879 -13.549 Td[(Ale)-280(t)28(y)1(m)-280(c)-1(i)-279(l)1(e)-1(p)1(ie)-1(j)-279(b)1(ac)-1(zy\\252a)-279(tam)27(tego)-279(An)28(tk)56(a,)-279(tam)27(tego)-279(z)-280(dn)1(i)-279(m)-1(i\\252o)28(w)28(a\\253)-279(i)-279(s)-1(za\\252\\363)27(w,)]TJ -27.879 -13.549 Td[(z)-388(d)1(ni)-387(sc)27(had)1(z)-1(ek)-387(i)-387(pr)1(z)-1(ytu)1(la\\253)1(,)-388(ca\\252un)1(k)28(\\363)28(w)-388(i)-387(un)1(ies)-1(ie\\253.)1(..)-387(tam)27(tego,)-387(ku)-387(kt)1(\\363re)-1(m)28(u)-387(teraz,)]TJ 0 -13.549 Td[(w)-499(nie)-499(spane)-499(cz)-1(\\246s)-1(to)-499(n)1(o)-28(ce)-500(wydziera\\252a)-499(si\\246)-500(j)1(e)-1(j)-498(du)1(s)-1(za)-499(i)-499(rozpr)1(\\246)-1(\\273one)-499(ud)1(r\\246k)55(\\241)-499(se)-1(r)1(c)-1(e)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252o)-333(\\273)-1(al)1(e)-1(m)-333(i)-334(t)1(\\246)-1(skni)1(c)-1(\\241)-333(nieop)-27(o)27(wiedzian)1(\\241.)]TJ 27.879 -13.55 Td[(Do)-346(tam)28(te)-1(go.)1(..)-346(z)-346(tam)27(t)28(y)1(c)27(h)-346(d)1(ni)-345(s)-1(zc)-1(z\\246)-1(\\261cia)-346(rw)28(a\\252a)-346(s)-1(i)1(\\246)-347(Jagu)1(s)-1(i)1(na)-346(d)1(usz)-1(a,)-346(an)1(i)-346(wie-)]TJ -27.879 -13.549 Td[(dz\\241c,)-334(k)28(\\246dy)-333(j)1(e)-1(st)-333(i)-334(\\273ywie-)-1(l)1(i)-333(on)-333(gdzie)-334(w)28(e)-334(\\261)-1(wiecie)-334(s)-1(zerokim...)]TJ 27.879 -13.549 Td[(Ano)-279(i)-279(te)-1(r)1(az)-281(sn)28(u)1(\\252)-280(si\\246)-280(jej)-279(przez)-280(pami\\246)-1(\\242)-280(j)1(ak)28(o)-280(ten)-279(s)-1(en)-279(lub)29(y)83(,)-279(z)-280(kt\\363ry)1(m)-280(s)-1(i)1(\\246)-280(c)-1(i\\246\\273)-1(k)28(o)]TJ -27.879 -13.549 Td[(rozs)-1(t)1(a)27(w)28(a\\242)-1(,)-333(ki)1(e)-1(j)-333(zno)28(wu)-333(rozleg\\252)-334(si\\246)-334(wrzas)-1(k)1(liwy)-333(g\\252os)-334(Hanki)1(.)]TJ 27.879 -13.549 Td[({)-364(Ki)1(e)-1(j)-363(pies)-364(o)-28(dar)1(t)28(y)-364(tak)-363(s)-1(i\\246)-364(wyd)1(z)-1(iera)-364(i)-363(du)1(nd)1(e)-1(ru)1(je!{)-364(sz)-1(epn)1(\\246)-1(\\252a)-364(r)1(oz)-1(b)1(ud)1(z)-1(on)1(a)-364(z)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(p)-28(omink)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-356(ju)1(\\273)-357(b)-27(okiem)-357(zagl\\241da\\252o)-356(r)1(oz)-1(cz)-1(erwienia)-55(j\\241c)-356(m)-1(r)1(o)-28(c)-1(zna)28(w)28(\\241)-356(iz)-1(b)-27(\\246)-1(,)-355(ptaki)-356(r)1(a-)]TJ -27.879 -13.549 Td[(do\\261ni)1(e)-394(\\242)-1(wierk)56(a\\252y)-393(w)-394(sadzie,)-394(p)-27(o)-28(d)1(nosi\\252o)-394(si\\246)-394(ciep\\252o,)-393(b)-27(o)-394(z)-394(d)1(ac)27(h)1(\\363)27(w)-393(kieb)28(y)-393(sz)-1(kl)1(an)28(ymi)]TJ 0 -13.549 Td[(pacior)1(k)55(ami)-317(sp\\252yw)28(a\\252)-317(pr)1(z)-1(y)1(m)-1(r)1(oz)-1(ek,)-317(a)-317(p)1(rze)-1(z)-317(wyw)27(ar)1(te)-317(okno)-317(wr)1(az)-318(z)-317(wie)-1(t)1(rz)-1(y)1(kiem)-317(p)-28(o-)]TJ 0 -13.549 Td[(ran)1(n)28(ym)-333(buc)28(ha\\252)-333(krzyk)-333(g\\246)-1(si)-333(trze)-1(p)1(i\\241cyc)27(h)-333(si\\246)-334(w)-333(s)-1(ta)28(wie.)]TJ 27.879 -13.55 Td[(Kr)1(z)-1(\\241ta\\252a)-334(si\\246)-334(p)-27(o)-334(izbie)-334(kiej)-333(s)-1(zc)-1(zygie\\252,)-334(z)-334(cic)27(h)1(\\241)-334(pr)1(z)-1(y\\261pi)1(e)-1(wk)56(\\241,)-334(b)-27(o)-28(\\242)-334(to)-334(n)1(ie)-1(d)1(z)-1(i)1(e)-1(la)]TJ -27.879 -13.549 Td[(b)28(y\\252a)-470(i)-470(czas)-471(nad)1(c)27(h)1(o)-28(dzi\\252)-470(s)-1(zyk)28(o)28(w)28(ania)-470(si\\246)-471(d)1(o)-470(k)28(o\\261)-1(cio\\252a)-470(z)-471(p)1(almam)-1(i)1(,)-470(ju)1(\\273)-471(o)28(w)27(e)-470(p)-27(\\246)-1(d)1(y)]TJ 0 -13.549 Td[(\\252oz)-1(y)-456(cz)-1(erw)28(onej,)-456(p)-27(okryt)1(e)-457(s)-1(r)1(e)-1(b)1(rzys)-1(t)28(ymi)-456(k)28(otk)56(am)-1(i)1(,)-456(s)-1(ta\\252y)-456(w)-457(d)1(z)-1(b)1(anku)-456(o)-27(d)-456(w)27(cz)-1(or)1(a)-56(j)1(,)]TJ 0 -13.549 Td[(p)-27(om)-1(d)1(la\\252e)-318(nieco,)-318(\\273e)-318(to)-318(im)-317(w)27(o)-28(d)1(y)-318(zap)-27(om)-1(n)1(ia\\252a)-318(n)1(ala\\242)-1(.)-317(P)28(o)-28(cz\\246)-1(\\252a)-318(j)1(e)-318(w\\252)-1(a\\261ni)1(e)-318(troskliwie)]TJ 0 -13.549 Td[(cuci\\242)-1(,)-333(gd)1(y)-334(W)1(itek)-334(wr)1(z)-1(asn\\241\\252)-333(przez)-334(dr)1(z)-1(wi:)]TJ 27.879 -13.55 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(yni)-333(k)56(azali,)-333(b)28(y\\261cie)-334(s)-1(w)28(o)-56(j)1(\\241)-333(kro)28(w)27(\\246)-333(nap)1(a\\261)-1(li)1(,)-334(a\\273)-333(z)-334(g\\252o)-28(du)-332(rycz)-1(y!)]TJ 0 -13.549 Td[({)-324(P)28(o)28(wiedz,)-324(\\273e)-325(w)28(ara)-324(j)1(e)-1(j)-323(do)-324(k)1(ro)28(wy)-324(mo)-56(jej!)-323({)-324(o)-28(d)1(krzykn)1(\\246)-1(\\252a)-324(w)-324(ca\\252y)-324(g\\252os)-325(n)1(as)-1(\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)29(uj\\241c,)-333(c)-1(o)-333(tam)28(ta)-334(wysz)-1(cze)-1(ku)1(je)-334(n)1(a)-333(o)-28(dze)-1(w.)]TJ 27.879 -13.549 Td[({)-308(A)-308(p)29(ys)-1(k)1(uj,)-307(p)-28(\\363k)1(i)-308(ci)-308(g\\246ba)-308(n)1(ie)-308(ustanie:)-308(n)1(ie)-308(do)28(wie)-1(d)1(z)-1(i)1(e)-1(sz)-309(me)-308(dzisia)-56(j)-307(do)-308(z\\252o\\261)-1(ci!)]TJ 0 -13.549 Td[(I)-378(j\\246\\252a)-378(na)-55(jsp)-28(ok)28(o)-55(jn)1(iej)-378(wybi)1(e)-1(r)1(a\\242)-379(ze)-379(skrzyn)1(i)-378(ub)1(iory)-378(r)1(oz)-1(k)1(\\252)-1(ad)1(a)-56(j)1(\\241c)-379(j)1(e)-379(p)-27(o)-378(\\252\\363\\273ku,)]TJ -27.879 -13.55 Td[(rozpatr)1(uj)1(\\241c)-1(,)-289(w)-290(jaki)1(e)-291(b)29(y)-290(si\\246)-290(przy)28(o)-28(d)1(z)-1(ia\\242)-290(d)1(o)-290(k)28(o\\261)-1(cio\\252a;)-289(naraz,)-290(k)1(ie)-1(j)-289(ta)-290(c)28(hm)28(ura)-289(pad)1(nie)]TJ 0 -13.549 Td[(na)-307(s\\252o\\253ce)-1(,)-307(i\\273)-307(s)-1(i)1(\\246)-308(ws)-1(zyste)-1(k)-307(\\261wiat)-307(pr)1(z)-1(yciem)-1(n)1(i,)-307(tak)-307(ci)-307(i)-307(w)-308(n)1(iej)-307(dziwnie)-307(p)-28(omro)-27(c)-1(za\\252o.)]TJ 0 -13.549 Td[(P)28(o)-333(c)-1(\\363\\273)-333(s)-1(i\\246)-333(to)-334(p)1(rzybi)1(e)-1(ra\\242)-333(b)-28(\\246dzie)-334(i)-333(stroi\\242?)-334(d)1(la)-333(k)28(ogo?)]TJ 27.879 -13.549 Td[(La)-335(t)28(yc)28(h)-335(b)1(a)-1(b)1(s)-1(k)1(ic)27(h)-334(\\261)-1(l)1(e)-1(p)1(i\\363)28(w)-1(,)-334(z)-1(azdr)1(o\\261)-1(n)1(ie)-336(tak)1(s)-1(u)1(j\\241cyc)27(h)-334(k)56(a\\273)-1(d)1(\\241)-335(jej)-335(ws)-1(t)1(\\241\\273)-1(k)28(\\246)-335(i)-335(p)-27(o-)]TJ -27.879 -13.549 Td[(tem)-334(za)-334(to)-333(obn)1(os)-1(z\\241c)-1(y)1(c)27(h)-333(j)1(\\241)-334(n)1(a)-334(ozorac)28(h?)]TJ 27.879 -13.549 Td[(Od)1(bieg\\252a)-262(stro)-55(j\\363)28(w)-261(z)-262(ni)1(e)-1(c)27(h)1(\\246)-1(ci\\241)-261(i)-261(s)-1(i)1(ad\\252sz)-1(y)-261(w)-261(oknie)-261(c)-1(ze)-1(sa\\252a)-262(j)1(as)-1(n)1(e)-1(,)-261(b)1(uj)1(ne)-262(w\\252osy)83(,)]TJ -27.879 -13.55 Td[(sm)27(ut)1(nie)-240(sp)-28(oziera)-55(j\\241c)-240(na)-239(wie\\261)-1(,)-239(w)-240(s\\252)-1(o\\253)1(c)-1(u)-239(j)1(u\\273)-240(ca\\252\\241)-240(i)-239(w)-240(top)1(liwyc)28(h)-239(ros)-1(ac)28(h)-239(p)-28(o\\252ysku)1(j\\241c\\241;)]TJ 0 -13.549 Td[(dom)28(y)-298(k)56(a)-56(j)1(\\261)-299(n)1(ie)-1(k)56(a)-55(j)-298(pr)1(z)-1(ebiela\\252y)-298(si\\246)-298(z)-1(e)-298(s)-1(ad)1(\\363)27(w)-298(i)-298(s\\252up)28(y)-298(n)1(iebies)-1(k)1(ic)27(h)-297(dym\\363)28(w)-299(b)1(uc)28(ha\\252y)-298(w)]TJ 0 -13.549 Td[(g\\363r\\246,)-274(za\\261)-274(na)-274(d)1(ro)-28(d)1(z)-1(e,)-274(p)-27(o)-274(d)1(rugi)1(e)-1(j)-273(s)-1(tr)1(onie)-274(sta)28(w)-1(u)1(,)-274(ca\\252kiem)-275(p)1(rzys\\252)-1(on)1(ion)1(e)-1(j)-273(dr)1(z)-1(ew)27(cam)-1(i)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252y)-230(niekiedy)-230(k)28(ob)1(ie)-1(t)28(y)84(,)-230(b)-28(o)-230(widzia\\252a)-231(cz)-1(erwie\\253)-230(w)27(e\\252ni)1(ak)28(\\363)27(w)-230(o)-28(db)1(it\\241)-230(w)27(e)-231(w)28(o)-28(d)1(z)-1(ie)]TJ 0 -13.549 Td[(i)-299(jak)-299(s)-1(i\\246)-300(p)1(rze)-1(su)28(w)28(a\\252)-1(y)-299(ws)-1(k)1(ro\\261)-300(m)-1(d)1(lej\\241cyc)27(h)-299(ju)1(\\273)-300(c)-1(i)1(e)-1(n)1(i\\363)28(w)-300(drzew)-300(nad)1(brze)-1(\\273n)28(yc)28(h;)-299(p)-27(ote)-1(m)]TJ 0 -13.55 Td[(g\\246s)-1(i)-470(p)1(rze)-1(p)1(\\252yw)27(a\\252y)-470(b)1(ia\\252ymi)-470(sz)-1(n)28(u)1(rami,)-470(\\273e)-470(s)-1(i\\246)-470(wyda)28(w)28(a\\252o,)-470(jak)28(ob)28(y)-469(p\\252yn)1(\\246)-1(\\252y)-470(wskro\\261)]TJ 0 -13.549 Td[(mo)-28(dr)1(e)-1(j)-305(topieli)-306(n)1(ieba)-306(o)-28(d)1(bitego,)-306(osta)28(w)-1(i)1(a)-56(j\\241c)-306(za)-306(s)-1(ob)1(\\241)-306(te)-307(cz)-1(ar)1(nia)28(w)28(e)-1(,)-306(p)-27(\\363\\252k)28(oliste)-306(kr\\246gi)]TJ\nET\nendstream\nendobj\n1217 0 obj <<\n/Type /Page\n/Contents 1218 0 R\n/Resources 1216 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1216 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1222 0 obj <<\n/Length 8855      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(380)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(kiej)-300(w)28(\\246)-1(\\273e)-301(cic)27(h)1(o)-300(p)-28(e\\252z)-1(n)1(\\241c)-1(e;)-300(to)-300(c)27(h)28(y)1(b)-28(otl)1(iw)27(e)-300(jask)28(\\363\\252ki)-300(pr)1(z)-1(ew)-1(i)1(ja\\252y)-300(si\\246)-301(n)1(iz)-1(i)1(utk)28(o)-300(\\252ysk)55(a)-55(j\\241c)]TJ 0 -13.549 Td[(bi)1(a\\252ym)-1(i)-350(br)1(z)-1(u)1(c)27(hami,)-350(a)-351(gd)1(z)-1(ies)-1(i)1(k)-351(zno)28(wu)-351(u)-350(w)28(o)-28(dop)-27(o)-56(j)1(\\363)28(w)-351(kro)28(wy)-351(p)-27(oryk)1(iw)27(a\\252y)-350(lub)-350(p)1(ie)-1(s)]TJ 0 -13.549 Td[(naszc)-1(ze)-1(ki)1(w)27(a\\252.)]TJ 27.879 -13.549 Td[(Zagub)1(i\\252a)-330(wnet)-330(pami\\246\\242)-331(t)28(yc)28(h)-330(r)1(z)-1(ec)-1(zy)-330(top)1(i\\241c)-331(o)-27(c)-1(zy)-330(w)-330(g\\363rze)-1(,)-330(wysok)28(o,)-330(gd)1(z)-1(ie)-330(na)]TJ -27.879 -13.549 Td[(mo)-28(dr)1(ym)-364(n)1(ie)-1(b)1(ie)-364(pas\\252y)-363(s)-1(i\\246)-363(s)-1(tad)1(a)-364(c)27(h)1(m)27(u)1(r,)-363(bi)1(a\\252)-1(y)1(m)-1(,)-363(w)28(e)-1(\\252ni)1(s)-1(t)28(ym)-363(baran)1(k)28(om)-364(p)-27(o)-28(dob)1(ne,)]TJ 0 -13.55 Td[(b)-27(o)-356(gd)1(z)-1(iesik)-355(s)-1(p)-27(o)-28(d)-355(ni)1(c)27(h,)-355(w)-356(wysok)28(o\\261c)-1(iac)28(h)-355(c)-1(i\\241)-27(gn\\246\\252)-1(o)-355(jak)1(ie)-1(\\261)-355(niedo)-55(jrzane)-356(p)1(tact)27(w)28(o,)-355(\\273)-1(e)]TJ 0 -13.549 Td[(jeno)-383(k)1(rz)-1(y)1(k)-383(d\\252u)1(gi)-383(a)-383(j\\246kliwy)-383(r)1(oz)-1(syp)28(yw)28(a\\252)-383(s)-1(i)1(\\246)-384(n)1(ad)-383(zie)-1(mi\\241)-383(rzew)-1(l)1(iwie)-1(,)-383(a\\273)-383(j\\241)-383(o)-27(d)-383(t)28(yc)27(h)]TJ 0 -13.549 Td[(g\\252os)-1(\\363)28(w)-427(spar\\252o)-427(cos)-1(i)1(k)-427(p)-28(o)-27(d)-427(pi)1(e)-1(r)1(s)-1(iami,)-427(a)-427(n)1(ag\\252a,)-427(z)-427(da)28(wna)-427(ju)1(\\273)-428(cz)-1(a)-55(j\\241ca)-427(s)-1(i)1(\\246)-428(t\\246s)-1(k)1(nica)]TJ 0 -13.549 Td[(\\261c)-1(isn\\246\\252a)-428(se)-1(r)1(c)-1(e,)-428(\\273e)-428(w)27(o)-28(d)1(z)-1(i)1(\\252)-1(a)-427(pr)1(z)-1(ygas\\252ymi)-428(o)-28(czym)-1(a)-427(p)-28(o)-427(rozruc)28(han)28(y)1(c)27(h)-427(drzew)27(ac)27(h)-427(p)-27(o)]TJ 0 -13.549 Td[(w)28(o)-28(dzie,)-478(k)56(a)-56(j)-477(i)-477(o)27(w)28(e)-478(c)27(h)1(m)27(ur)1(y)-478(zda\\252y)-477(s)-1(i\\246)-478(p)1(\\252yn\\241\\242)-478(zan)28(ur)1(z)-1(on)1(e)-478(w)-478(niebiesk)28(o\\261)-1(ciac)27(h)1(,)-478(p)-27(o)]TJ 0 -13.549 Td[(ws)-1(zystkim)-380(\\261wie)-1(cie,)-380(n)1(ic)-380(jeno)-379(nie)-380(r)1(oz)-1(p)-27(oz)-1(n)1(a)-56(j)1(\\241c)-380(s)-1(p)-27(oz)-1(a)-379(w)27(ez)-1(b)1(ran)1(e)-1(j)-379(t\\246s)-1(kn)1(o\\261)-1(ci,)-379(\\273)-1(e)-380(\\252zy)]TJ 0 -13.55 Td[(w)28(a\\273)-1(n)1(e)-382(p)-27(o)-28(c)-1(i)1(e)-1(k\\252y)-380(p)-28(o)-381(zblad)1(\\252yc)27(h)-380(p)-28(oli)1(c)-1(zk)56(ac)27(h)-381(ki)1(e)-1(b)28(y)-380(te)-382(p)1(ac)-1(ior)1(ki)-381(l\\261ni)1(\\241c)-1(e)-381(roz)-1(erw)28(anego)]TJ 0 -13.549 Td[(r\\363\\273a\\253ca)-289(i)-288(s)-1(u)1(\\252y)-289(si\\246)-289(w)28(olno)-288(jedna)-288(z)-1(a)-288(dr)1(ug\\241,)-288(i)-289(gd)1(z)-1(iesik)-289(n)1(a)-289(sam)-1(o)-288(dn)1(o)-289(du)1(s)-1(zy)-288(s)-1(p)1(\\252)-1(y)1(w)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[(Mog\\252a)-333(to)-333(z)-1(miark)28(o)28(w)28(a\\242)-1(,)-333(co)-334(si\\246)-334(j)1(e)-1(j)-333(sta\\252o?)]TJ 0 -13.549 Td[(Jeno)-455(cz)-1(u)1(\\252a,)-455(i\\273)-455(j\\241)-455(c)-1(osik)-455(r)1(oz)-1(p)1(iera,)-455(p)-27(o)-28(dr)1(yw)27(a)-455(i)-454(p)-28(on)1(os)-1(i)1(,)-455(\\273)-1(e)-455(oto)-455(p)-27(os)-1(z\\252ab)28(y)-455(na)]TJ -27.879 -13.549 Td[(kr)1(a)-56(j)-301(\\261wiata,)-301(gdzie)-301(o)-28(c)-1(zy)-301(p)-27(onies)-1(\\241,)-301(gd)1(z)-1(i)1(e)-302(jeno)-301(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie)-301(ta)-301(t\\246)-1(skn)1(o\\261)-1(\\242)-301(niez)-1(mo\\273)-1(on)1(a.)-301(I)]TJ 0 -13.55 Td[(p\\252ak)56(a\\252a)-318(tak)-318(b)-28(ezw)27(oln)1(ie)-319(i)-318(p)1(ra)28(wie)-319(b)-27(e)-1(zb)-27(ole)-1(\\261ni)1(e)-1(,)-318(j)1(ak)28(o)-319(to)-318(d)1(rze)-1(w)28(o,)-318(ob)-28(ci\\241\\273one)-319(k)1(w)-1(i)1(ate)-1(m)]TJ 0 -13.549 Td[(w)-461(wio\\261)-1(n)1(iane)-461(p)-27(orank)1(i,)-461(kiej)-461(s\\252o\\253ce)-462(p)1(rzygrze)-1(j)1(e)-1(,)-460(a)-461(w)-1(i)1(atry)-461(zak)28(ole)-1(b)1(i\\241,)-461(r)1(os)-1(i)-461(ob)1(\\014cie,)]TJ 0 -13.549 Td[(wpiera)-384(s)-1(i\\246)-385(w)-385(zie)-1(mi\\246,)-385(n)1(abr)1(z)-1(miew)27(a)-385(sok)56(am)-1(i)-384(ro)-28(d)1(n)28(ymi,)-384(a)-385(kwietne)-385(ga\\252\\246)-1(zie)-385(ku)-384(niebu)]TJ 0 -13.549 Td[(p)-27(o)-28(da)-55(je...)]TJ 27.879 -13.549 Td[({)-278(Witek!)-278(a)-279(p)-27(opr)1(o\\261)-279(pi\\246kn)1(ie)-279(tej)-278(dzie)-1(d)1(z)-1(i)1(c)-1(zki)-278(na)-278(\\261)-1(n)1(iadan)1(ie!)-279({)-278(wrz)-1(asn\\246\\252a)-279(zno)28(wu)]TJ -27.879 -13.55 Td[(Hank)56(a.)]TJ 27.879 -13.549 Td[(Jagn)1(a,)-334(k)1(ie)-1(b)29(y)-333(prze)-1(c)28(kn\\246\\252a,)-333(otar\\252a)-333(\\252z)-1(y)84(,)-333(do)-28(cz)-1(es)-1(a\\252a)-333(w\\252os)-1(\\363)28(w)-334(i)-333(p)-27(os)-1(z\\252a)-333(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie.)]TJ 0 -13.549 Td[(W)-319(Hancz)-1(yn)1(e)-1(j)-319(izbi)1(e)-320(ju\\273)-320(wsz)-1(yscy)-320(sie)-1(d)1(z)-1(i)1(e)-1(li)-319(pr)1(z)-1(y)-319(\\261niad)1(aniu)1(.)-320(Z)-319(m)-1(ic)28(h)28(y)-319(kur)1(z)-1(y\\252y)]TJ -27.879 -13.549 Td[(si\\246)-265(z)-1(iemniak)1(i,)-265(w\\252a\\261nie)-265(j)1(e)-265(b)28(y\\252a)-265(J\\363zk)56(a)-265(omas)-1(zc)-1(za\\252a)-265(\\261m)-1(i)1(e)-1(tan)1(\\241)-265(p)1(rz)-1(es)-1(ma\\273on\\241)-264(z)-266(cebul)1(\\241,)]TJ 0 -13.549 Td[(gdy)-333(r)1(e)-1(sz)-1(ta)-333(j)1(u\\273)-334(b)-27(o)-28(d\\252a)-333(\\252yc)27(h)1(ami)-334(wlepi)1(a)-56(j)1(\\241c)-334(\\252ak)28(om)-1(e)-334(\\261lepie)-333(w)-334(j)1(ad\\252o.)]TJ 27.879 -13.55 Td[(Hank)56(a)-427(w)-1(zi\\246\\252a)-428(pi)1(e)-1(rwsz)-1(e)-428(miejsc)-1(e)-428(w)-428(p)-27(o\\261)-1(r)1(o)-28(dku)-427(p)1(rze)-1(d)-427(\\252a)28(w)27(\\241,)-427(na)-428(k)1(t\\363rej)-428(j)1(e)-1(d)1(li,)]TJ -27.879 -13.549 Td[(Pi)1(e)-1(tr)1(e)-1(k)-382(s)-1(iedzia\\252)-383(w)-383(k)28(o\\253)1(c)-1(u)1(,)-383(a)-383(p)-27(ob)-27(ok)-383(ni)1(e)-1(go)-383(p)1(rzyku)1(c)-1(a\\252)-383(n)1(a)-383(zie)-1(mi)-383(W)1(ite)-1(k)1(,)-383(J\\363zk)56(a)-383(z)-1(a\\261)]TJ 0 -13.549 Td[(p)-27(o)-56(j)1(ada\\252a)-301(s)-1(t)1(o)-56(j\\241cy)-301(p)1(iln)28(u)1(j\\241c)-301(dok\\252ad)1(ania,)-301(a)-301(d)1(z)-1(i)1(e)-1(ci)-301(sie)-1(d)1(z)-1(i)1(a\\252)-1(y)-300(p)-28(o)-27(d)-301(k)28(ominem)-302(p)1(rzy)-301(ni)1(e)-1(-)]TJ 0 -13.549 Td[(zgors)-1(zej)-352(mise)-1(cz)-1(ce)-353(ogan)1(ia)-55(j\\241c)-352(s)-1(i\\246)-352(\\252y\\273k)56(am)-1(i)-351(przed)-352(\\212ap)1(\\241,)-352(kt\\363r)1(e)-1(n)-351(kiedy)-351(niekiedy)-351(p)-28(o-)]TJ 0 -13.549 Td[(jad)1(a\\252)-334(r)1(az)-1(em)-334(z)-334(n)1(imi.)]TJ 27.879 -13.55 Td[(Jagn)1(a)-334(mia\\252a)-333(s)-1(w)28(o)-56(j)1(e)-334(mie)-1(j)1(s)-1(ce)-334(o)-28(d)-333(d)1(rzw)-1(i)1(,)-333(napr)1(z)-1(ec)-1(i)1(w)-1(k)28(o)-333(P)1(ie)-1(tr)1(k)55(a.)]TJ 0 -13.549 Td[(Jedli)-333(z)-334(w)28(oln)1(a)-334(sp)-27(oz)-1(iera)-55(j\\241c)-334(n)1(ie)-1(k)1(ie)-1(d)1(y)-333(s)-1(p)-27(o)-28(d)-333(\\252b)-27(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(Darmo)-277(J\\363zk)56(a)-277(trze)-1(p)1(a\\252a)-277(trzy)-277(p)-27(o)-277(trzy)-277(i)-276(Pietrek)-277(r)1(z)-1(u)1(c)-1(a\\252)-277(j)1(akie)-277(s)-1(\\252o)28(w)28(o,)-277(a)-277(w)-277(k)28(o\\253cu)]TJ -27.879 -13.549 Td[(i)-241(Hank)56(a)-242(zagadyw)28(a\\252a)-242(tk)1(ni\\246ta)-242(j)1(e)-1(j)-241(zap\\252ak)56(an)28(ymi,)-241(s)-1(m)28(utn)29(ymi)-242(o)-28(cz)-1(y)1(m)-1(a,)-241(Jagu)1(s)-1(ia)-241(ni)-241(par)1(y)]TJ 0 -13.549 Td[(z)-334(g\\246b)28(y)-333(ni)1(e)-334(pu)1(\\261)-1(ci\\252a.)]TJ 27.879 -13.549 Td[({)-333(Witek,)-333(a)-333(kt\\363ren)-333(c)-1(i)-333(tak)1(ie)-1(go)-333(guza)-333(nab)1(i\\252?)-334({)-333(p)28(yta\\252a)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-293(Z)-1(w)28(ali\\252em)-294(si\\246)-294(o)-294(\\273\\252\\363b!)-293({)-294(Rozc)-1(ze)-1(r)1(wie)-1(n)1(i\\252)-294(si\\246)-294(ki)1(e)-1(j)-293(rak)-293(i)-293(p)-28(ot)1(ar\\252)-294(b)-27(ol\\241ce)-294(m)-1(i)1(e)-1(j)1(s)-1(ce)-1(,)]TJ -27.879 -13.549 Td[(p)-27(orozumie)-1(w)28(a)28(w)27(cz)-1(o)-333(sp)-28(ogl\\241d)1(a)-56(j)1(\\241c)-334(na)-333(J\\363zk)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Przyn)1(ios)-1(\\252e\\261)-334(to)-333(ju)1(\\273)-334(ga\\252\\241z)-1(ek)-333(z)-334(pal)1(m)-1(ami?)]TJ 0 -13.549 Td[({)-333(Zaraz)-334(p)-27(olec)-1(\\246,)-333(ino)-333(z)-1(j)1(e)-1(m)-333({)-334(t\\252u)1(m)-1(aczy\\252)-334(si\\246,)-333(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie)-334(d)1(o)-56(j)1(ada)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[(Jagn)1(a)-334(p)-27(o\\252o\\273)-1(y)1(\\252)-1(a)-333(\\252y\\273k)28(\\246)-334(i)-333(wys)-1(z\\252a.)]TJ 0 -13.55 Td[({)-338(Zno)28(wuj)-338(b)1(\\241k)-338(j\\241)-338(jaki)1(\\261)-339(uk)56(\\241si\\252!)-338({)-339(sz)-1(epn)1(\\246)-1(\\252a)-338(J\\363zk)55(a)-338(d)1(ole)-1(w)28(a)-56(j)1(\\241c)-339(bar)1(s)-1(zc)-1(zu)-338(P)1(ie)-1(tr)1(-)]TJ -27.879 -13.549 Td[(k)28(o)28(wi.)]TJ\nET\nendstream\nendobj\n1221 0 obj <<\n/Type /Page\n/Contents 1222 0 R\n/Resources 1220 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1220 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1225 0 obj <<\n/Length 8414      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(381)]TJ -330.353 -35.866 Td[({)-333(Nie)-334(k)56(a\\273)-1(d)1(e)-1(n)-332(umie)-334(tra)-55(jk)28(ota\\242)-333(tak)-333(c)-1(i\\246giem)-334(j)1(ak)-334(t)28(y)84(.)-333(Doi\\252a)-333(to)-334(j)1(u\\273)-334(k)1(ro)28(w)27(\\246?)]TJ 0 -13.549 Td[({)-333(Zabra\\252a)-333(s)-1(zk)28(op)-27(e)-1(k,)-333(to)-333(p)-27(e)-1(wni)1(e)-334(p)-27(os)-1(z\\252a)-334(d)1(o)-334(ob)-27(ory)84(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(J\\363zia,)-333(trza)-333(dla)-333(siwuli)-333(makuc)28(h)28(u)-333(u)1(goto)27(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(siar)1(\\246)-334(o)-28(dp)1(usz)-1(cz)-1(a,)-333(p)1(r\\363b)-27(o)28(w)27(a\\252am)-334(d)1(z)-1(i)1(s)-1(ia)-55(j.)]TJ 0 -13.549 Td[({)-333(Odp)1(usz)-1(cz)-1(a,)-333(to)-333(leda)-333(dzie\\253)-333(s)-1(i)1(\\246)-334(o)-28(cie)-1(l)1(i...)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(o\\252k)55(a)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(m)-1(ia\\252a!)-333({)-333(rze)-1(k)1(\\252)-334(Wi)1(te)-1(k)-333(p)-27(o)-28(dn)1(os)-1(z\\241c)-334(si\\246)-334(o)-28(d)-333(j)1(ad\\252a.)]TJ 0 -13.549 Td[({)-356(G\\252u)1(pi!)-355({)-356(s)-1(ze)-1(p)1(n\\241\\252)-356(p)-27(ogardl)1(iwie)-356(Pietrek)-356(p)-27(opu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-357(\\271dziebk)28(o)-356(ob)-27(e)-1(r)1(te)-1(lek,)]TJ -27.879 -13.549 Td[(\\273e)-313(to)-312(b)28(y\\252)-312(ni)1(e)-1(zgorze)-1(j)-312(p)-27(o)-28(d)1(jad)1(\\252)-1(,)-311(i)-312(z)-1(ap)1(aliws)-1(zy)-312(o)-28(d)-312(g\\252o)28(wni)-312(p)1(apierosa)-312(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-313(r)1(az)-1(em)-313(z)]TJ 0 -13.549 Td[(c)27(h)1(\\252opaki)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-469(w)-471(mil)1(c)-1(ze)-1(n)1(iu)-470(wzi\\246\\252)-1(y)-469(s)-1(i)1(\\246)-471(d)1(o)-470(rob)-27(ot)28(y)83(.)-470(J)1(\\363z)-1(k)56(a)-470(zm)27(yw)28(a\\252a)-470(nacz)-1(yn)1(ia,)-470(a)]TJ -27.879 -13.549 Td[(Hank)56(a)-333(s)-1(\\252a\\252a)-333(\\252\\363\\273)-1(k)56(a.)]TJ 27.879 -13.55 Td[({)-333(P)28(\\363)-56(j)1(dziec)-1(ie)-333(do)-333(k)28(o\\261)-1(cio\\252a)-334(z)-333(palmami?)]TJ 0 -13.549 Td[({)-362(Id)1(\\271)-363(z)-362(Wi)1(tkiem)-1(,)-361(Pi)1(e)-1(tr)1(e)-1(k)-361(te)-1(\\273)-362(mo\\273)-1(e,)-362(n)1(iec)27(h)-361(jeno)-362(k)28(on)1(ie)-362(obr)1(z)-1(\\241d)1(z)-1(i;)-361(ja)-361(os)-1(tan)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(piln)29(uj\\246)-222(o)-56(j)1(c)-1(a)-222(i)-222(m)-1(o\\273e)-223(Ro)-28(c)27(h)1(o)-223(wr)1(\\363)-28(c)-1(i)-222(aku)1(ratn)1(ie)-223(i)-222(co)-223(n)1(o)27(w)28(e)-1(go)-222(p)1(rz)-1(y)1(nies)-1(i)1(e)-223(o)-28(d)-222(An)28(tk)56(a..)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-334(to)-333(Jagust)28(ynce,)-334(\\273eb)28(y)-333(ju)1(tro)-333(przysz)-1(\\252a)-333(do)-333(z)-1(i)1(e)-1(mni)1(ak)28(\\363)27(w?)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(same)-334(nie)-333(w)-1(y)1(do\\252am)27(y)84(,)-333(a)-333(na)-333(gw)27(a\\252t)-333(trza)-333(je)-334(p)1(rz)-1(ebi)1(e)-1(r)1(a\\242)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(i)-333(gn)1(\\363)-56(j)-333(j)1(u\\273)-334(b)29(y)-334(r)1(oz)-1(r)1(z)-1(u)1(c)-1(a\\242!)]TJ 0 -13.549 Td[({)-346(Pietrek)-346(ju)1(tro)-346(na)-346(p)-28(o\\252u)1(dn)1(ie)-347(ma)-347(sk)28(o\\253cz)-1(y)1(\\242)-347(w)-1(y)1(w)27(\\363zk)28(\\246)-1(,)-346(to)-346(o)-28(d)-346(ob)1(iadu)-346(w)28(e)-1(\\271mie)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(Wi)1(tkiem)-334(do)-333(rozrzucani)1(a;)-334(co)-333(c)-1(zas)-1(u)-333(zb)-27(\\246)-1(d)1(z)-1(ie,)-333(to)-333(i)-334(t)28(y)-333(p)-27(omo\\273)-1(es)-1(z...)]TJ 27.879 -13.549 Td[(W)84(rz)-1(ask)-333(g\\246)-1(si)-333(p)-27(o)-28(dn)1(i\\363s)-1(\\252)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ed)-333(okn)1(am)-1(i,)-333(wp)1(ad\\252)-334(zady)1(s)-1(zan)28(y)-333(Witek.)]TJ 0 -13.549 Td[({)-333(\\233e)-334(to)-333(na)28(w)27(et)-333(g\\246)-1(siorom)-333(s)-1(p)-27(ok)28(o)-56(j)1(u)-333(nie)-333(da)-55(jes)-1(z!)]TJ 0 -13.55 Td[({)-333(Szc)-1(zypa\\242)-333(m)-1(e)-333(c)27(hcia\\252y)83(,)-333(tom)-333(s)-1(i)1(\\246)-334(ino)-333(ob)1(rani)1(a\\252)-1(!)]TJ 0 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252)-285(na)-284(s)-1(kr)1(z)-1(y)1(ni\\246)-285(ca\\252y)-285(p)-27(\\246)-1(k)-284(wilgotn)29(yc)27(h)-284(jes)-1(zcz)-1(e)-285(o)-28(d)-284(rosy)-284(z)-1(\\252otak)28(o)28(wyc)27(h)-284(r\\363ze)-1(g)]TJ -27.879 -13.549 Td[(osypan)28(y)1(c)27(h)-333(ba\\271k)56(am)-1(i)1(,)-333(J\\363z)-1(k)56(a)-333(j\\246\\252a)-334(j)1(e)-334(uk)1(\\252)-1(ad)1(a\\242)-334(zw)-1(i)1(\\246)-1(zuj)1(\\241c)-334(c)-1(ze)-1(r)1(w)27(on)1(\\241)-334(w)28(e\\252)-1(n)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-27(c)-1(iek)-333(to)-333(kuj)1(n\\241\\252)-333(c)-1(i\\246)-333(w)-334(cz)-1(o\\252o?)-334({)-333(sp)28(yta\\252a)-333(go)-334(p)-27(o)-333(c)-1(ic)28(h)28(u.)]TJ 0 -13.549 Td[({)-263(Ju\\261c)-1(i,)-263(\\273e)-264(ni)1(e)-264(kto)-263(dru)1(gi,)-263(nie)-263(w)-1(y)1(da)-55(j)-263(m)-1(e)-264(i)1(no...)-263({)-263(Ob)-27(e)-1(j)1(rza\\252)-264(si\\246)-264(na)-263(gos)-1(p)-27(o)-28(d)1(yni)1(\\246)-1(,)]TJ -27.879 -13.55 Td[(wybi)1(e)-1(r)1(a)-56(j\\241c\\241)-313(z)-1(e)-313(s)-1(k)1(rz)-1(y)1(ni)-313(\\261wi\\241te)-1(czne)-314(szm)-1(at)28(y)84(.)-313({)-313(A)-313(to)-314(ci)-313(p)-27(o)28(w)-1(i)1(e)-1(m,)-313(jak)-313(b)29(y\\252o...)-313(W)1(ypa-)]TJ 0 -13.549 Td[(trzy\\252em)-1(,)-303(\\273)-1(e)-304(na)-304(n)1(o)-28(c)-304(pr)1(z)-1(ed)-304(gan)1(kiem)-304(os)-1(ta)-55(je...)-304(p)-27(o)-28(d)1(krad)1(\\252e)-1(m)-304(si\\246)-305(p)-27(\\363\\271n\\241)-304(n)1(o)-28(c)-1(\\241,)-303(kiej)-304(j)1(u\\273)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)-318(n)1(a)-319(p)1(le)-1(b)1(ani)1(i)-319(spal)1(i...)-318(i)-318(j)1(u\\273e)-1(m)-318(go)-319(b)1(ra\\252...)-318(a)-318(c)27(h)1(o)-28(\\242)-319(me)-319(ku)1(jn)1(\\241\\252)-1(.)1(..)-318(b)28(y\\252b)28(y)1(m)-319(sp)-28(en-)]TJ 0 -13.549 Td[(ce)-1(rk)1(ie)-1(m)-250(go)-250(okr\\246c)-1(i)1(\\252)-251(i)-250(wyn)1(i\\363s\\252...)-250(ki)1(e)-1(j)-250(p)1(s)-1(y)-250(me)-250(z)-1(wietrzy\\252y)83(..)1(.)-250(z)-1(n)1(a)-56(j)1(\\241)-250(m)-1(e)-250(prze)-1(ciec)27(h)1(,)-250(a)-250(tak)]TJ 0 -13.549 Td[(do)-27(c)-1(iera\\252y)-250(z)-1(ap)-27(o)28(wie)-1(t)1(rz)-1(on)1(e)-1(,)-250(\\273e)-251(m)27(u)1(s)-1(ia\\252em)-251(uciek)55(a\\242,)-250(jes)-1(zc)-1(ze)-251(mi)-251(n)1(oga)28(w)-1(i)1(c)-1(e)-251(ozdar\\252y)84(...)-250(ale)]TJ 0 -13.55 Td[(ni)1(e)-334(dar)1(uj)1(\\246)-1(...)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(ak)-333(s)-1(i\\246)-333(ks)-1(i)1(\\241dz)-334(d)1(o)27(wie,)-333(\\273)-1(e\\261)-334(m)28(u)-333(wz)-1(i\\241\\252)-333(b)-27(o)-28(\\242)-1(k)56(a?)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(to)-334(m)28(u)-333(to)-333(p)-28(o)28(wie?)-1(.)1(..)-333(A)-334(o)-27(dbi)1(e)-1(r)1(\\246)-334(m)27(u)1(,)-333(b)-28(o)-333(m\\363)-56(j.)]TJ 0 -13.549 Td[({)-333(A)-334(k)56(a)-55(j)-333(go)-334(sc)27(h)1(o)27(w)28(as)-1(z,)-333(b)28(y)-333(ci)-334(n)1(ie)-334(o)-27(debral)1(i?)]TJ 0 -13.549 Td[({)-354(Ju)1(\\273)-355(j)1(a)-354(taki)-353(s)-1(c)28(ho)28(w)27(ek)-354(u)1(m)27(y\\261li\\252em)-1(,)-353(\\273)-1(e)-354(i)-354(stra\\273ni)1(ki)-354(n)1(ie)-354(z)-1(w)28(\\241c)27(ha)-55(j\\241..)1(.)-354(A)-354(p)-27(otem)-1(,)]TJ -27.879 -13.549 Td[(kiej)-443(p)1(rze)-1(p)-27(omn\\241,)-443(spr)1(o)27(w)28(adz\\246)-443(go)-443(do)-443(c)27(h)1(a\\252up)28(y)-442(i)-443(p)-28(o)28(wiem)-1(,)-442(c)-1(om)-443(s)-1(e)-443(no)28(w)28(e)-1(go)-443(zn\\246c)-1(i)1(\\252)-443(i)]TJ 0 -13.55 Td[(ob\\252askiw)28(a\\252)-378({)-379(r)1(oz)-1(p)-27(ozna)-378(to)-378(kto,)-378(J\\363zia?)-378(Ino)-378(me)-379(ni)1(e)-379(wyd)1(a)-56(j,)-377(to)-379(ci)-378(j)1(akic)27(h)-377(ptasz)-1(k)28(\\363)28(w)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nios\\246)-334(alb)-27(o)-334(i)-333(m\\252o)-28(d)1(e)-1(go)-333(z)-1(a)-55(j\\241cz)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-226(Ch\\252opak)-225(to)-226(jes)-1(tem,)-226(b)28(ym)-226(s)-1(i)1(\\246)-227(p)1(tas)-1(zk)56(a)-1(mi)-226(b)1(a)28(w)-1(i)1(\\252)-1(a?)-226(G\\252u)1(pi,)-225(prze)-1(b)1(ierz)-227(si\\246)-226(z)-1(ar)1(az)-1(,)]TJ -27.879 -13.549 Td[(to)-333(raze)-1(m)-333(p)-28(\\363)-55(jdziem)-334(d)1(o)-334(k)28(o\\261c)-1(i)1(o\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(i)1(a,)-334(d)1(as)-1(z)-333(m)-1(i)-333(p)-27(onie\\261\\242)-334(palm\\246?)-334(co?)]TJ 0 -13.55 Td[({)-333(Zac)27(hcia\\252o)-333(m)27(u)-333(si\\246)-1(!)1(...)-333(dy)1(\\242)-334(in)1(o)-334(k)28(ob)1(ie)-1(t)28(y)-333(mog\\241)-333(nie\\261)-1(\\242)-334(d)1(o)-333(p)-28(o\\261wi\\246)-1(cani)1(a!)]TJ 0 -13.549 Td[({)-333(Przed)-333(k)28(o\\261)-1(cio\\252e)-1(m)-333(c)-1(i)-333(o)-28(d)1(dam,)-333(ino)-333(p)1(rz)-1(ez)-334(wie\\261)-1(.)1(..)]TJ\nET\nendstream\nendobj\n1224 0 obj <<\n/Type /Page\n/Contents 1225 0 R\n/Resources 1223 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1223 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1228 0 obj <<\n/Length 8975      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(382)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Pr)1(os)-1(i)1(\\252)-410(tak)-409(gor)1(\\241c)-1(o,)-409(a\\273)-409(pr)1(z)-1(y)28(ob)1(ie)-1(ca\\252a,)-409(z)-1(wraca)-56(j)1(\\241c)-410(si\\246)-410(p)1(r\\246dk)28(o)-409(d)1(o)-410(w)28(c)27(h)1(o)-28(dz\\241c)-1(ej)]TJ -27.879 -13.549 Td[(w\\252a\\261)-1(n)1(ie)-334(Nastki)-333(Go\\252\\246bian)1(ki,)-333(ju)1(\\273)-334(wysz)-1(yk)28(o)28(w)28(anej)-333(do)-333(k)28(o\\261)-1(cio\\252a)-333(i)-333(z)-334(palmami)-333(w)-334(r\\246ku)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(mia\\252a\\261)-334(cz)-1(ego)-334(o)-333(Mateuszu?)-334({)-333(zagadn)1(\\246)-1(\\252a)-333(Hank)56(a)-333(p)-28(o)-333(pr)1(z)-1(ywitan)1(iu)1(.)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(e)-334(jeno,)-333(co)-334(w)28(\\363)-56(j)1(t)-333(w)27(cz)-1(or)1(a)-56(j)-333(p)1(rz)-1(y)1(w)-1(i)1(\\363z)-1(\\252:)-333(jak)28(o)-333(zdro)28(wsz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(W)83(\\363)-55(jt)-333(aku)1(ratni)1(e)-334(t)28(yle)-334(wie)-333(c)-1(o)-333(nic)-333(alb)-27(o)-334(i)-333(wym)28(y\\261)-1(l)1(i,)-333(c)-1(ze)-1(go)-333(ni)1(e)-334(b)28(y\\252o.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(samo)-334(p)-27(ono)-333(i)-333(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(o)27(wi)-333(m\\363)27(wi\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(o)-333(An)28(tk)1(u)-333(to)-334(i)-333(s\\252o)28(w)27(a)-333(rze)-1(c)-334(n)1(ie)-334(u)1(m)-1(i)1(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(ono)-333(Mateusz)-334(siedzi)-334(z)-333(dru)1(gimi,)-333(An)28(tek)-333(z)-1(a\\261)-334(osobn)1(o.)]TJ 0 -13.549 Td[({)-333(I...)-333(tak)-333(jeno)-333(sz)-1(cz)-1(ek)56(a,)-334(\\273e)-1(b)29(y)-333(s)-1(i\\246)-333(m)-1(ia\\252)-333(z)-334(cz)-1(y)1(m)-334(do)-333(c)27(h)1(a\\252up)-333(zam)-1(a)28(wia\\242...)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-334(to)-333(z)-334(t)28(ym)-333(i)-334(u)-332(w)27(as!)]TJ 0 -13.549 Td[({)-332(C)-1(o)-332(dn)1(ia)-333(zac)27(h)1(o)-28(dzi,)-332(ale)-333(d)1(o)-333(Jagu)1(s)-1(i)1(;)-333(ma)-333(z)-332(ni\\241)-332(jaki)1(e)-1(\\261)-333(spr)1(a)27(wy)84(,)-333(t)1(o)-333(si\\246)-333(s)-1(c)28(ho)-28(d)1(z)-1(\\241)]TJ -27.879 -13.55 Td[(i)-333(pr)1(z)-1(ed)-333(lu)1(d\\271m)-1(i)-333(u)1(re)-1(d)1(z)-1(a)-55(j\\241)-333(w)-334(op)1(\\252otk)56(ac)27(h.)]TJ 27.879 -13.549 Td[(P)28(o)28(wiedzia\\252a)-357(cis)-1(zej,)-356(z)-357(nacis)-1(k)1(ie)-1(m,)-356(w)-1(y)1(gl\\241da)-55(j\\241c)-357(okn)1(e)-1(m,)-356(b)-28(o)-356(w)-357(sam)-357(raz)-357(Jagna)]TJ -27.879 -13.549 Td[(sc)27(ho)-27(dzi\\252a)-462(z)-462(ganku)1(,)-462(wystro)-55(jon)1(a)-462(s)-1(i)1(e)-1(ln)1(ie,)-462(z)-462(ksi\\241\\273k)55(\\241)-461(w)-462(r\\246)-1(k)1(u)-462(i)-461(z)-462(palmami.)-462(D)1(\\252)-1(u)1(go)]TJ 0 -13.549 Td[(pat)1(rz)-1(a\\252a)-333(za)-334(n)1(i\\241.)]TJ 27.879 -13.549 Td[({)-333(Sp)-27(\\363\\271)-1(n)1(ita)-333(s)-1(i)1(\\246)-1(,)-333(dzieuc)28(h)28(y)83(,)-333(lu)1(dzie)-334(j)1(u\\273)-334(ca\\252\\241)-334(d)1(rog\\241)-333(w)27(al)1(\\241.)]TJ 0 -13.55 Td[({)-333(Nie)-334(p)1(rz)-1(edzw)28(aniali)-333(j)1(e)-1(sz)-1(cz)-1(e.)]TJ 0 -13.549 Td[(Ale)-273(wraz)-273(i)-273(d)1(z)-1(w)28(on)28(y)-273(si\\246)-273(oz)-1(w)28(a\\252y)-273(h)28(u)1(kliwie)-273(n)1(a)27(w)28(o\\252uj)1(\\241c)-274(w)-273(d)1(om)-273(P)28(a\\253ski)-273(i)-272(bim)28(ba\\252y)]TJ -27.879 -13.549 Td[(w)28(olno,)-333(d)1(\\252)-1(u)1(go)-333(i)-334(r)1(oz)-1(g\\252o\\261nie.)]TJ 27.879 -13.549 Td[(\\233e)-334(w)-333(jaki)-333(p)1(ac)-1(ierz,)-333(a)-334(wsz)-1(ysc)-1(y)-333(p)-27(osz)-1(li)-333(z)-334(c)28(ha\\252u)1(p)28(y)-333(do)-333(k)28(o\\261)-1(cio\\252a.)]TJ 0 -13.549 Td[(Hank)56(a)-375(osta\\252a)-376(sama,)-375(nasta)27(wi\\252a)-375(ob)1(iad,)-375(p)1(rzy)28(ogarn\\246\\252a)-375(s)-1(i\\246)-375(niec)-1(o)-375(i)-375(zabr)1(a)27(wsz)-1(y)]TJ -27.879 -13.55 Td[(dziec)-1(i)-341(siad\\252a)-341(z)-342(ni)1(m)-1(i)-341(na)-341(gan)1(ku,)-341(b)28(y)-341(je)-341(w)-1(y)1(c)-1(ze)-1(sa\\242)-342(i)-341(przeis)-1(k)56(a\\242,)-342(\\273e)-342(to)-341(w)-342(t)28(ygo)-27(dni)1(u)-341(nie)]TJ 0 -13.549 Td[(starcz)-1(y\\252o)-333(ni)1(gdy)-333(c)-1(zas)-1(u)1(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-223(p)-28(o)-28(d)1(ni)1(e)-1(s\\252o)-224(si\\246)-224(j)1(u\\273)-224(d)1(o\\261)-1(\\242)-223(w)-1(y)1(s)-1(ok)28(o)-223(i)-223(lud)1(z)-1(i)1(e)-224(ze)-1(ws)-1(z\\241d)-223(zbierali)-223(si\\246)-224(d)1(o)-224(k)28(o\\261cio-)]TJ -27.879 -13.549 Td[(\\252a,)-272(co)-272(tr)1(o)-28(c)27(h)1(a)-272(wys)-1(y)1(pu)1(j\\241c)-272(s)-1(i)1(\\246)-273(z)-272(op)1(\\252otk)28(\\363)27(w,)-271(\\273)-1(e)-272(p)-27(o)-272(d)1(rogac)27(h)-271(ni)1(b)28(y)-272(te)-272(maki)-271(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252y)]TJ 0 -13.549 Td[(si\\246)-379(k)28(ob)1(iec)-1(e)-378(przy)28(o)-28(d)1(z)-1(iewy)-378(i)-378(b)1(rzm)-1(ia\\252y)-377(p)-28(ogw)28(ary)-378(z)-378(krzyk)56(ami)-378(dziec)-1(i,)-377(z)-1(ab)1(a)27(wia)-55(j\\241cyc)27(h)]TJ 0 -13.55 Td[(si\\246)-441(c)-1(i)1(s)-1(k)56(ani)1(e)-1(m)-441(k)56(amie)-1(n)1(i)-441(p)-27(o)-440(w)27(o)-28(d)1(z)-1(i)1(e)-441(i)-441(za)-441(p)1(tak)55(ami;)-440(ni)1(e)-1(ki)1(e)-1(d)1(y)-441(w)28(oz)-1(y)-440(tu)1(rk)28(ota\\252y)83(,)-440(p)-27(e)-1(\\252-)]TJ 0 -13.549 Td[(ne)-372(l)1(udzi)-371(z)-372(dru)1(giej)-372(wsi,)-372(t)1(o)-372(c)27(h)1(\\252op)28(y)-372(j)1(akie\\261)-1(,)-371(snad\\271)-372(ob)-27(ce)-1(,)-371(przec)27(ho)-27(dzi\\252y)-372(p)-27(o)-28(c)27(h)29(w)27(ala)-55(j\\241c)]TJ 0 -13.549 Td[(Boga,)-333(a\\273)-334(z)-334(w)28(olna)-333(ws)-1(zys)-1(cy)-333(pr)1(z)-1(es)-1(zli)-333(i)-333(opu)1(s)-1(tosza\\252)-1(e)-333(drogi)-333(p)-27(omilk\\252y)84(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-336(wyi)1(s)-1(k)56(a)28(ws)-1(zy)-336(d)1(z)-1(iec)-1(i)-335(do)-335(c)-1(zysta)-336(z)-1(ap)1(ro)28(w)28(adzi\\252a)-336(je)-336(n)1(a)-336(s)-1(\\252om\\246)-336(pr)1(z)-1(ed)-336(d)1(o\\252y)83(,)]TJ -27.879 -13.549 Td[(b)28(y)-421(s)-1(i\\246)-422(sam)-1(e)-422(z)-1(ab)1(a)28(w)-1(i)1(a\\252y)83(,)-422(za)-56(j)1(rza\\252a)-422(do)-422(p)1(ark)28(o)-28(c\\241c)-1(y)1(c)27(h)-422(gar)1(nk)28(\\363)28(w)-422(i)-422(wr\\363)-27(c)-1(i\\252a)-422(n)1(a)-422(da)28(wne)]TJ 0 -13.55 Td[(mie)-1(j)1(s)-1(ce)-334(mo)-28(d)1(l\\241c)-334(si\\246)-334(p)-27(\\363\\252)-1(g\\252ose)-1(m)-333(na)-333(k)28(oron)1(c)-1(e,)-333(\\273)-1(e)-334(t)1(o)-334(n)1(a)-334(ksi\\241\\273c)-1(e)-333(nie)-334(u)1(mia\\252a.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-377(ju)1(\\273)-379(si\\246)-378(p)-28(o)-27(dnosi\\252)-378(ku)-377(p)-28(o\\252u)1(dn)1(io)28(w)-1(i)1(,)-378(c)-1(i)1(c)27(ho\\261\\242)-378(z)-1(go\\252a)-378(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(a)-378(ogarn)1(ia-)]TJ -27.879 -13.549 Td[(\\252a)-422(wie\\261)-1(,)-421(\\273e)-422(nik)56(a)-55(j)-421(g\\252)-1(os\\363)28(w)-422(\\273adn)28(yc)28(h)-421(nie)-422(b)29(y\\252o,)-422(t)28(y)1(le)-422(jeno,)-421(co)-422(te)-422(wr\\363b)1(le)-422(\\242w)-1(i)1(e)-1(rk)56(an)1(ia)]TJ 0 -13.549 Td[(i)-394(\\261)-1(wiegot)28(y)-394(jask)28(\\363\\252e)-1(k)-394(lepi\\241cyc)28(h)-394(gniazda)-394(p)-27(o)-28(d)-394(ok)56(apami.)-394(Cz)-1(as)-395(b)29(y\\252)-395(ciep\\252y)84(,)-395(p)1(ierws)-1(za)]TJ 0 -13.549 Td[(wiosna)-404(ledwie)-405(co)-404(tr\\241ci\\252a)-404(z)-1(iemi\\246)-405(i)-404(tkn)1(\\246)-1(\\252a)-404(d)1(rz)-1(ew;)-404(nieb)-27(o)-405(wisia\\252o)-404(m\\252)-1(o)-27(de;)-404(przem)-1(o-)]TJ 0 -13.549 Td[(dr)1(z)-1(on)1(e)-477(i)-477(d)1(z)-1(iwn)1(ie)-477(\\252ys)-1(k)1(liw)28(e)-1(;)-476(s)-1(ad)1(y)-477(sta\\252y)-477(b)-27(e)-1(z)-477(r)1(uc)27(h)29(u,)-476(ku)-476(s)-1(\\252o\\253cu)-476(p)-28(o)-27(da)-55(j\\241c)-477(ga\\252\\246)-1(zie,)]TJ 0 -13.55 Td[(nab)1(ite)-312(sp)-28(\\246cz)-1(n)1(ia\\252ym)-1(i)-311(p)1(\\241k)55(ami,)-311(z)-1(a\\261)-312(ol)1(c)27(h)28(y)84(,)-312(sta)28(w)-312(br)1(z)-1(e\\273)-1(\\241ce,)-312(n)1(ib)28(y)-311(w)-312(c)-1(i)1(c)27(h)28(u)1(\\261)-1(ki)1(m)-312(dyc)28(ha-)]TJ 0 -13.549 Td[(ni)1(u)-451(p)-28(or)1(uc)27(h)1(iw)28(a\\252y)-452(\\273\\363\\252t)28(ymi)-452(b)1(az)-1(i)1(am)-1(i,)-451(a)-451(p)-28(\\246dy)-451(top)-27(\\363l)-451(rd)1(z)-1(a)28(w)27(e,)-451(lepkie)-451(i)-452(p)1(ac)27(h)1(n\\241c)-1(e,)-451(a)]TJ 0 -13.549 Td[(jak)28(ob)29(y)-333(m)-1(io)-27(dem)-334(c)-1(i)1(e)-1(k)56(\\241ce)-1(,)-333(ot)28(wie)-1(r)1(a\\252y)-333(s)-1(i\\246)-333(na)-333(\\261)-1(wiat\\252o)-333(nib)29(y)-333(te)-334(dziob)28(y)-333(p)1(is)-1(k)1(l\\246)-1(ce...)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-453(c)27(h)1(a\\252up)1(am)-1(i)-454(d)1(ogrze)-1(w)28(a\\252o)-454(galan)28(to,)-453(\\273)-1(e)-454(ju)1(\\273)-455(m)28(uc)28(h)28(y)-454(wy\\252azi\\252y)-454(na)-453(ogrz)-1(an)1(e)]TJ -27.879 -13.549 Td[(\\261c)-1(ian)29(y)83(,)-413(a)-414(cz)-1(ase)-1(m)-413(i)-414(p)1(s)-1(zc)-1(zo\\252a)-414(si\\246)-414(p)-27(ok)55(azyw)28(a\\252a,)-414(z)-414(b)1(rz\\246)-1(ki)1(e)-1(m)-414(p)1(ada)-55(j\\241c)-414(na)-413(s)-1(t)1(okrotki)1(,)]TJ 0 -13.55 Td[(pat)1(rz)-1(\\241ce)-269(s)-1(p)-27(o)-28(d)-268(p)1(\\252)-1(ot\\363)28(w,)-268(alb)-28(o)-268(s)-1(i)1(\\246)-270(p)1(iln)1(ie)-269(nosi\\252a)-269(p)-27(o)-269(k)1(rz)-1(ac)28(h,)-268(c)-1(o)-268(nib)28(y)-268(zie)-1(l)1(one)-269(p\\252omienie)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252y)-334(m\\252o)-28(d)1(ym)-1(i)-333(l)1(is)-1(tk)56(ami.)]TJ\nET\nendstream\nendobj\n1227 0 obj <<\n/Type /Page\n/Contents 1228 0 R\n/Resources 1226 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1226 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1231 0 obj <<\n/Length 9425      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(383)]TJ -330.353 -35.866 Td[(Ale)-334(z)-333(p)-28(\\363l)-333(i)-333(o)-28(d)-333(b)-27(or\\363)28(w)-333(z)-1(a)28(wie)-1(w)28(a\\252)-333(jes)-1(zc)-1(ze)-334(ostry)84(,)-334(wil)1(gotn)28(y)-333(wiatr.)]TJ 0 -13.549 Td[(Msz)-1(a)-352(ju)1(\\273)-353(m)27(u)1(s)-1(i)1(a\\252)-1(a)-352(b)28(y\\242)-352(w)-353(p)-28(o\\252o)28(wie,)-353(b)-27(o)-352(w)-353(c)-1(i)1(c)27(h)28(ym)-352(i)-353(j)1(ak)28(ob)28(y)-352(wrz)-1(\\241cym)-353(wiosn\\241)]TJ -27.879 -13.549 Td[(p)-27(o)27(wietrzu)-413(p)1(r\\246)-1(\\273y\\252y)-413(si\\246)-414(g\\252osy)-413(\\261)-1(p)1(ie)-1(w)28(\\363)28(w)-414(d)1(ale)-1(k)1(ic)27(h)1(,)-413(organo)28(w)28(e)-414(gran)1(ia)-413(i)-413(c)-1(zas)-1(em)-414(j)1(ak)28(o)]TJ 0 -13.549 Td[(ten)-333(des)-1(zc)-1(z)-333(rz)-1(\\246sis)-1(t)28(y)-333(rozsyp)28(yw)28(a\\252y)-333(s)-1(i\\246)-333(w)-334(mdlej\\241ce)-334(d\\271wi\\246ki)-333(dzw)27(on)1(k)28(\\363)27(w.)]TJ 27.879 -13.549 Td[(Cz)-1(as)-458(s)-1(n)29(u\\252)-458(s)-1(i)1(\\246)-459(w)28(olno)-458(i)-457(c)-1(ic)28(ho,)-458(b)-27(o)-458(kiej)-458(s\\252o\\253ce)-459(stan\\246\\252o)-458(na)-55(jwy\\273e)-1(j)1(,)-458(to)-458(na)28(w)28(e)-1(t)]TJ -27.879 -13.55 Td[(pt)1(aki)-378(zam)-1(il)1(k\\252y)83(,)-377(jeno)-378(\\273e)-379(wron)29(y)83(,)-378(cz)-1(a)-55(j\\241ce)-379(si\\246)-378(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(s)-1(k)28(o)-378(za)-378(g\\241s)-1(i)1(\\246)-1(tami,)-378(p)1(rze)-1(wij)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-445(ni)1(s)-1(k)28(o)-444(nad)-444(sta)28(w)27(em)-445(kr)1(z)-1(yk)-444(n)1(iec)-1(\\241c)-445(g\\241sior\\363)28(w;)-444(b)-28(o)-27(c)-1(iek)-444(te\\273)-445(raz)-445(j)1(e)-1(d)1(e)-1(n)-444(zaklek)28(ota\\252)]TJ 0 -13.549 Td[(gdzies)-1(i)1(k)-334(i)-333(p)1(rze)-1(lec)-1(i)1(a\\252)-334(b)1(lisk)28(o,)-333(\\273)-1(e)-334(i)1(no)-333(jego)-334(cie\\253)-333(w)-1(i)1(e)-1(lgac)28(hn)28(y)-333(p)-27(oni)1(\\363s)-1(\\252)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(zie)-1(mi.)]TJ 27.879 -13.549 Td[(Hank)56(a)-433(mo)-28(d)1(li\\252a)-433(s)-1(i)1(\\246)-434(\\273arliwie,)-433(b)1(ac)-1(z\\241c)-434(n)1(a)-433(dziec)-1(i,)-432(a)-433(i)-433(do)-433(starego)-433(z)-1(agl)1(\\241da)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)83(.)]TJ 27.879 -13.549 Td[(Ale)-334(c\\363\\273,)-334(l)1(e)-1(\\273a\\252)-334(j)1(ak)-333(z)-1(a)28(w\\273)-1(d)1(y)83(,)-333(b)-27(e)-1(z)-333(ruc)28(h)28(u)-333(i)-333(pr)1(z)-1(ed)-333(s)-1(i)1(\\246)-334(z)-1(ap)1(atrzon)28(y)84(.)]TJ 0 -13.55 Td[(Domiera\\252)-462(se)-462(tak)-461(z)-462(w)27(oln)1(a,)-461(do)-28(c)27(h)1(o)-28(d)1(z)-1(i\\252)-461(s)-1(w)28(o)-56(j)1(e)-1(go)-461(c)-1(zas)-1(u)-461(p)-27(o)-462(\\271dziebku)-461(z)-462(d)1(nia)]TJ -27.879 -13.549 Td[(na)-455(dzie)-1(\\253)1(,)-456(j)1(ak)28(o)-456(to)-455(z)-1(b)-27(o\\273)-1(e)-456(k\\252osne)-456(w)-456(s\\252o\\253cu)-456(p)-27(o)-28(d)-455(os)-1(t)1(ry)-456(sierp)-455(do)-55(jrzew)27(a)-55(j\\241ce)-1(..)1(.)-456(Nie)]TJ 0 -13.549 Td[(rozp)-27(oz)-1(n)1(a)27(w)28(a\\252)-295(nik)28(ogo,)-295(b)-27(o)-295(na)28(w)28(e)-1(t)-295(wte)-1(d)1(y)83(,)-295(k)1(ie)-1(j)-294(Jagn)28(y)-295(w)28(o\\252a\\252)-296(i)-295(za)-295(r\\246c)-1(e)-296(j)1(\\241)-295(br)1(a\\252)-1(,)-295(w)-295(in)1(s)-1(z\\241)]TJ 0 -13.549 Td[(stron\\246)-377(pat)1(rz)-1(a\\252;)-377(Han)1(c)-1(e)-377(si\\246)-378(j)1(e)-1(n)1(o)-377(wyda)28(w)28(a\\252)-1(o,)-376(c)-1(o)-377(n)1(a)-377(jej)-377(g\\252os)-378(p)-27(oru)1(c)27(h)28(u)1(je)-377(w)27(ar)1(gam)-1(i)1(,)-377(a)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-333(m)28(u)-333(c)27(h)1(o)-28(dz\\241,)-333(jakb)28(y)-333(c)28(hcia\\252)-334(cosik)-333(rze)-1(c...)]TJ 27.879 -13.55 Td[(I)-333(tak)-333(b)28(y\\252o)-333(w)27(ci\\241\\273)-334(b)-27(e)-1(z)-334(p)1(rze)-1(mian)28(y)84(,)-333(a\\273)-334(p)1(\\252)-1(acz)-334(c)28(h)28(wyta\\252)-334(p)1(atrz\\241c)-1(y)1(c)27(h.)]TJ 0 -13.549 Td[(M\\363)-55(j)-342(Je)-1(zu,)-342(kto)-342(b)28(y)-343(si\\246)-343(b)28(y)1(\\252)-343(tego)-343(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a\\252!)-343(T)83(ak)1(i)-343(gosp)-28(o)-27(darz,)-342(taki)-342(m)-1(\\241d)1(rala,)]TJ -27.879 -13.549 Td[(taki)-264(b)-27(ogac)-1(z,)-264(\\273e)-265(tru)1(dn)1(o)-265(znal)1(e)-1(\\271\\242)-265(dr)1(ugiego,)-264(a)-264(te)-1(r)1(az)-265(ci)-264(le)-1(\\273y)-264(ni)1(b)28(y)-264(to)-264(drze)-1(w)28(o)-264(pior)1(un)1(e)-1(m)]TJ 0 -13.549 Td[(roz\\252up)1(ane,)-325(ga\\252\\241z)-1(k)28(\\363)28(w)-326(zielon)28(yc)28(h)-325(jesz)-1(cz)-1(e)-325(p)-28(e\\252ne,)-325(a)-325(ju\\273)-325(\\261)-1(mierci)-325(na)-325(past)28(w)27(\\246)-325(wydan)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Nie)-432(p)-28(omar\\252)-432(pr)1(z)-1(ec)-1(iec)27(h)-431(i)-432(nie)-432(\\273)-1(ywie,)-432(jeno)-432(ws)-1(zyste)-1(k)-432(j)1(u\\273)-432(w)-433(r\\246k)56(ac)27(h)-432(b)-27(os)-1(k)1(ie)-1(go)]TJ -27.879 -13.55 Td[(mi\\252os)-1(i)1(e)-1(rd)1(z)-1(i)1(a.)]TJ 27.879 -13.549 Td[(O)-333(dol)1(o)-334(cz)-1(\\252o)28(wiek)27(o)28(w)28(a,)-333(dolo)-333(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iw)27(a!)]TJ 0 -13.549 Td[(O)-293(b)-27(oskic)27(h)-292(pr)1(z)-1(ez)-1(n)1(ac)-1(ze\\253)-293(mo)-28(cy)83(,)-293(k)1(t\\363ra)-293(si\\246)-293(ja)28(wisz)-1(,)-293(k)1(ie)-1(j)-292(si\\246)-294(n)1(ikto)-292(nie)-293(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(,)]TJ -27.879 -13.549 Td[(cz)-1(y)-330(w)-331(d)1(z)-1(ie\\253)-330(bia\\252y)84(,)-330(c)-1(zy)-331(t)1(e)-1(\\273)-331(li)-330(w)-331(n)1(o)-28(c)-331(ciem)-1(n)1(\\241,)-331(a)-330(jedn)1(ak)28(o)-331(kr)1(usz)-1(y)1(n\\246)-331(lu)1(dzk)55(\\241)-330(mie)-1(cies)-1(z)]TJ 0 -13.549 Td[(w)-334(gor)1(z)-1(k)1(ie)-1(j)-333(\\261mie)-1(r)1(c)-1(i)-333(stron)28(y)1(!...)]TJ 27.879 -13.55 Td[(Du)1(m)-1(a\\252a)-419(n)1(ad)-419(n)1(im)-419(\\273)-1(a\\252o\\261ni)1(e)-420(p)-27(ogl\\241d)1(a)-56(j)1(\\241)-1(c)-419(ku)-418(n)1(ie)-1(b)1(u,)-418(w)27(es)-1(tc)28(hn)1(\\246)-1(\\252a)-419(r)1(az)-420(i)-418(dr)1(ugi,)]TJ -27.879 -13.549 Td[(sk)28(o\\253cz)-1(y\\252a)-423(k)28(or)1(onk)28(\\246)-423(i)-422(w)-1(zi\\241\\242)-423(si\\246)-423(m)27(u)1(s)-1(ia\\252a)-422(do)-423(p)-27(o\\252ud)1(nio)28(wyc)27(h)-422(u)1(do)-55(j\\363)28(w,)-423(b)-27(o)-423(wz)-1(d)1(yc)27(h)29(y)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(am)-1(i)1(,)-334(a)-333(rob)-27(ota)-333(pi)1(e)-1(rwsz)-1(a)-333(pr)1(z)-1(ed)-333(ws)-1(zystkim.)]TJ 27.879 -13.549 Td[(Kiej)-460(wr\\363)-27(c)-1(i\\252a)-460(z)-461(p)-27(e\\252n)28(ymi)-460(s)-1(zk)28(opk)56(ami,)-460(ju)1(\\273)-461(ws)-1(zysc)-1(y)-460(b)29(yli)-460(w)-460(c)27(ha\\252u)1(pie.)-460(J\\363zk)55(a)]TJ -27.879 -13.549 Td[(p)-27(o)27(wieda\\252a,)-389(o)-389(czym)-390(k)1(s)-1(i\\241d)1(z)-390(m\\363)28(wi\\252)-389(z)-390(am)28(b)-28(on)28(y)-388(i)-389(kto)-389(b)28(y)1(\\252)-390(w)-389(k)28(o\\261c)-1(iele;)-389(gw)28(arno)-389(sta\\252o)]TJ 0 -13.55 Td[(si\\246)-322(w)-321(izbi)1(e)-322(i)-320(na)-321(gank)1(u,)-321(\\273e)-321(to)-321(kilk)56(a)-321(r\\363)28(wie\\261)-1(n)1(ic)-321(z)-322(n)1(i\\241)-321(pr)1(z)-1(ysz\\252)-1(o)-320(i)-321(s)-1(p)-27(o\\252e)-1(cznie)-321(\\252yk)56(ali)-321(te)]TJ 0 -13.549 Td[(k)28(otki)-333(p)-27(o\\261)-1(wi\\246c)-1(an)1(e)-1(,)-333(c)28(hron)1(i\\241ce)-334(p)-27(ono)-333(o)-28(d)-333(b)-27(\\363l\\363)28(w)-334(gard)1(z)-1(i)1(e)-1(li)1(.)]TJ 27.879 -13.549 Td[(\\221miec)27(h)28(u)-394(b)28(y\\252o)-395(niema\\252o,)-395(\\273)-1(e)-395(to)-396(n)1(iejedn)1(a)-396(p)1(rze)-1(\\252kn)1(\\241\\242)-396(n)1(ie)-396(mog\\252a)-395(i)-395(z)-1(akr)1(z)-1(tu)1(s)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-1(,)-482(a\\273)-483(w)28(o)-28(d)1(\\241)-483(p)-27(opi)1(ja)-56(j)1(\\241c)-1(,)-482(al)1(b)-28(o)-482(j\\241)-482(m)27(u)1(s)-1(i)1(ano)-482(pi\\246\\261c)-1(i\\241)-482(grd)1(yk)56(a\\242)-483(w)-483(p)1(lec)-1(y)84(,)-482(b)28(y)-482(\\252ac)-1(n)1(ie)-1(j)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(z\\252o,)-333(c)-1(o)-333(Witek)-333(z)-334(wielk)56(\\241)-334(u)1(c)-1(i)1(e)-1(c)27(h)1(\\241)-333(robi)1(\\252)-1(.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-356(jeno)-355(nie)-356(wr\\363)-28(ci\\252a)-356(n)1(a)-356(ob)1(iad)-355(w)-1(i)1(dz)-1(i)1(e)-1(li)-355(j\\241)-355(id\\241c\\241)-356(z)-356(matk)56(\\241)-356(i)-356(k)28(o)28(w)28(alami.)-356(A)]TJ -27.879 -13.55 Td[(ledwie)-447(co)-447(ws)-1(tal)1(i)-447(o)-28(d)-446(mise)-1(k,)-446(kiej)-446(w)-1(sz)-1(ed\\252)-446(Ro)-28(c)27(h)1(o.)-447(Rzucili)-447(si\\246)-447(wita\\242)-447(rad)1(o\\261)-1(n)1(ie,)-447(b)-27(o)]TJ 0 -13.549 Td[(bl)1(is)-1(k)1(im)-331(im)-331(si\\246)-331(s)-1(ta\\252)-330(nib)28(y)-330(ten)-331(d)1(z)-1(i)1(adu\\261)-331(r)1(o)-28(dzon)28(y)84(,)-331(a)-331(on)-330(si\\246)-331(wita\\252)-331(cic)27(h)1(o,)-331(k)56(a\\273dem)27(u)-330(c)-1(o\\261)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252)-265(i)-264(w)-264(g\\252o)28(w)27(\\246)-264(c)-1(a\\252o)28(w)27(a\\252,)-264(ale)-264(gdy)-264(m)28(u)-264(p)-27(o)-28(dan)1(o)-265(j)1(e)-1(\\261\\242,)-264(nie)-264(jad\\252:)-264(stru)1(dzon)28(y)-264(b)28(y\\252)-264(sro)-28(d)1(z)-1(e)-264(i)]TJ 0 -13.549 Td[(troskli)1(w)-1(i)1(e)-309(ob)1(z)-1(iera\\252)-308(si\\246)-309(p)-27(o)-308(izbie.)-308(Han)1(k)55(a)-308(w)28(aro)28(w)28(a\\252)-1(a)-308(j)1(e)-1(go)-308(o)-27(c)-1(zu,)-308(a)-308(n)1(ie)-308(\\261)-1(miej\\241c)-308(p)28(yta\\242.)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(ia\\252em)-334(si\\246)-334(z)-334(An)28(t)1(kiem)-1(!)-333({)-333(rze)-1(k\\252)-333(cic)27(h)1(o)-334(n)1(ie)-334(pat)1(rz)-1(\\241c)-333(na)-333(nik)28(ogo.)]TJ 0 -13.55 Td[(Ze)-1(r)1(w)27(a\\252a)-414(si\\246)-415(ze)-415(s)-1(k)1(rzyni,)-414(strac)28(h)-414(j\\241)-414(p)1(rz)-1(ej\\241\\252)-414(i)-414(za)-415(se)-1(r)1(c)-1(e)-414(\\261)-1(cisn\\241\\252,)-414(\\273)-1(e)-414(s)-1(\\252o)28(w)27(a)-414(n)1(ie)]TJ -27.879 -13.549 Td[(mog\\252a)-334(wykr)1(z)-1(tu)1(s)-1(i)1(\\242)-1(.)]TJ\nET\nendstream\nendobj\n1230 0 obj <<\n/Type /Page\n/Contents 1231 0 R\n/Resources 1229 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1229 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1234 0 obj <<\n/Length 8376      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(384)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-344(Zdro)28(wy)-344(c)-1(a\\252ki)1(e)-1(m)-345(i)-344(d)1(obr)1(e)-1(j)-344(m)28(y\\261)-1(l)1(i.)-344(Cho)-28(\\242)-345(stra\\273ni)1(k)-345(n)1(as)-345(p)1(ilno)28(w)28(a\\252,)-345(r)1(oz)-1(ma)28(wia-)]TJ -27.879 -13.549 Td[(\\252e)-1(m)-333(z)-334(ni)1(m)-334(dob)1(r\\241)-333(go)-28(dzin)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(W)-333(t)27(y)1(c)27(h)-333(\\273e)-1(lazac)27(h)-333(siedzi?)-334({)-333(wykr)1(z)-1(tu)1(s)-1(i\\252a)-333(strac)27(h)1(liwie.)]TJ 0 -13.549 Td[({)-382(C\\363\\273)-383(zno)28(wu!..)1(.)-382(z)-1(wycz)-1(a)-55(jn)1(ie)-1(,)-382(j)1(ak)-382(i)-382(dr)1(ud)1(z)-1(y!)1(...)-382(ni)1(e)-383(jest)-383(m)28(u)-382(tam)-382(tak)-382(\\271)-1(l)1(e)-1(,)-382(n)1(ie)]TJ -27.879 -13.549 Td[(b)-27(\\363)-56(j)1(c)-1(ie)-333(s)-1(i\\246.)]TJ 27.879 -13.55 Td[({)-333(B)-1(o)-333(Kozio\\252)-333(roz)-1(p)-27(o)28(wiada\\252,)-333(jak)28(o)-333(tam)-333(bij)1(\\241)-334(i)-333(d)1(o)-334(\\261c)-1(i)1(an)28(y)-333(przyku)29(w)27(a)-55(j\\241.)]TJ 0 -13.549 Td[({)-369(Mo\\273e)-370(t)1(ak)-369(i)-369(b)28(y)1(w)27(a)-369(gd)1(z)-1(ie)-369(in)1(dzie)-1(j)1(...)-369(za)-369(co)-369(insz)-1(ego...)-368(ale)-370(An)29(tk)55(a)-369(n)1(ie)-369(tkn\\246li)-369({)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiad)1(a\\252.)]TJ 27.879 -13.549 Td[(Sp)1(let\\252a)-334(r)1(\\246)-1(ce)-334(z)-334(r)1(ado\\261c)-1(i,)-333(a)-333(u\\261m)-1(i)1(e)-1(c)28(h)-333(kiej)-333(s)-1(\\252o\\253)1(c)-1(e)-334(p)1(rze)-1(mkn)1(\\241\\252)-334(p)-27(o)-334(n)1(iej.)]TJ 0 -13.549 Td[({)-305(A)-305(n)1(a)-305(o)-28(dc)28(ho)-28(d)1(n)28(ym)-305(z)-1(ap)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-304(b)28(y\\261c)-1(ie)-305(na)-304(nic)-305(nie)-305(bacz\\241c)-306(wieprzk)56(a)-305(z)-1(ab)1(ili)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(p)1(rze)-1(d)-333(\\261wi\\246tam)-1(i,)-333(b)-27(o)-333(i)-333(on)-333(c)27(hce)-334(\\261wi\\246)-1(conego)-333(z)-1(a\\273y\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(G\\252o)-28(dz\\241)-333(go)-334(tam)-333(c)27(h)28(u)1(dziak)56(a,)-333(g\\252o)-28(dz\\241!)-333({)-334(j)1(\\246)-1(kn)1(\\246)-1(\\252a)-333(za)27(w)28(o)-28(d)1(liwie.)]TJ 0 -13.549 Td[({)-315(Kiej)-314(o)-28(c)-1(i)1(e)-1(c)-315(m)-1(\\363)28(wili)1(,)-315(\\273)-1(e)-315(jak)-314(s)-1(i\\246)-315(p)-27(o)-28(dp)1(as)-1(ie,)-315(to)-315(p)1(rze)-1(d)1(adz\\241)-315({)-315(z)-1(au)29(w)27(a\\273y\\252a)-315(J\\363z)-1(k)56(a.)]TJ 0 -13.549 Td[({)-321(M\\363)28(wili)1(,)-321(ale)-321(kiej)-321(An)28(tek)-321(p)1(rz)-1(y)1(k)55(azuj)1(\\241)-321(z)-1(ab)1(i\\242,)-321(to)-321(jego)-321(teraz)-321(w)27(ola)-321(p)1(ierws)-1(za)-321(p)-28(o)]TJ -27.879 -13.549 Td[(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-333({)-333(p)-27(o)-28(dn)1(ies)-1(\\252a)-333(os)-1(tr)1(y)83(,)-333(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iwy)-333(g\\252)-1(os.)]TJ 27.879 -13.549 Td[({)-364(I)-363(jes)-1(zc)-1(ze)-364(m\\363)27(wil)1(i,)-364(ab)29(y\\261)-1(cie)-364(n)1(a)-364(rol)1(i)-364(k)56(azali)-364(r)1(obi\\242)-364(wsz)-1(ystk)28(o,)-363(c)-1(o)-363(p)-28(otr)1(z)-1(eba,)-363(na)]TJ -27.879 -13.55 Td[(ni)1(c)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(ogl\\241da)-55(j\\241c.)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252em,)-334(j)1(ak)28(o)-333(tu)-333(s)-1(ob)1(ie)-334(zm)27(y\\261ln)1(ie)-334(p)-27(o)-28(c)-1(zyn)1(ac)-1(ie.)]TJ 27.879 -13.549 Td[({)-333(Rz)-1(ek\\252)-334(t)1(o)-334(co)-334(n)1(a)-333(to)-334(?)-333(p)-28(o)28(wiedzia\\252?)]TJ 0 -13.549 Td[(Rado\\261\\242)-334(j)1(\\241)-334(w)28(arem)-334(obl)1(a\\252)-1(a.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(mi)-333(p)-27(o)27(wiedzia\\252,)-333(\\273e)-334(jak)-333(ze)-1(c)27(h)1(c)-1(ecie)-1(,)-333(p)-27(oredzicie)-334(ws)-1(zystkiem)27(u)1(...)]TJ 0 -13.549 Td[({)-305(A)-306(p)-27(oredz\\246)-1(,)-305(p)-27(ore)-1(d)1(z)-1(\\246!)-305({)-306(sz)-1(epn)1(\\246)-1(\\252a)-305(z)-306(mo)-28(c)-1(\\241)-305(i)-305(o)-28(c)-1(zy)-305(jej)-305(roz)-1(b)1(\\252ys\\252)-1(y)-305(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iw)27(\\241)]TJ -27.879 -13.55 Td[(w)28(ol\\241.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(tu)-333(u)-333(w)28(as)-334(no)28(w)28(e)-1(go?)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ic,)-334(j)1(ak)-333(b)28(y\\252o..)1(.)-334(P)1(usz)-1(cz)-1(\\241)-333(go)-333(to)-333(ryc)27(h)1(\\252o?)-334({)-333(z)-1(ap)29(yta\\252a)-334(z)-333(dygotem)-334(tr)1(w)27(ogi)1(.)]TJ 0 -13.549 Td[({)-312(Mo\\273)-1(e)-312(z)-1(ar)1(az)-313(p)-28(o)-312(\\261)-1(wi\\246tac)27(h)1(.)-312(m)-1(o\\273e)-313(\\271dzie)-1(b)1(k)28(o)-313(p)-27(\\363\\271niej,)-312(j)1(ak)-313(\\261ledzt)28(w)27(o)-312(s)-1(k)28(o\\253)1(c)-1(z\\241...)]TJ -27.879 -13.549 Td[(A)-381(to)-382(si\\246)-382(p)1(rze)-1(wlec)-1(ze)-382(\\273e)-382(to)-381(wie)-1(\\261)-382(ca\\252a,)-381(t)28(yle)-382(l)1(udzi..)1(.)-381({)-382(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-382(wymij)1(a)-56(j\\241co)-381(nie)]TJ 0 -13.55 Td[(pat)1(rz)-1(\\241c)-333(jej)-333(w)-334(o)-28(czy)83(.)]TJ 27.879 -13.549 Td[({)-393(P)1(yta\\252)-393(si\\246)-393(to)-393(o)-392(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-1(,)-392(o)-393(dziec)-1(i)1(,)-393(o..)1(.)-393(mnie...)-392(o)-393(wsz)-1(ystkic)28(h?...)-392({)-393(zac)-1(z\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(trw)28(o\\273nie.)]TJ 27.879 -13.549 Td[({)-333(Pyta\\252)-333(ju)1(\\261)-1(ci,)-333(k)28(olejn)1(o)-334(p)-27(o)28(wiada\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(I...)-333(o)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-333(w)28(e)-334(ws)-1(i?..)]TJ 0 -13.55 Td[(St)1(ras)-1(zni)1(e)-491(s)-1(i\\246)-491(j)1(e)-1(j)-490(wiedzie)-1(\\242)-491(c)28(hcia\\252o,)-491(zali)-491(o)-490(Jagn\\246)-491(te\\273)-491(p)28(yta\\252,)-490(c)-1(\\363\\273,)-491(k)1(ie)-1(j)-490(n)1(ie)]TJ -27.879 -13.549 Td[(\\261m)-1(ia\\252a)-402(zagada\\242)-403(ot)28(w)28(arcie,)-402(a)-403(u)1(b)-27(o)-28(c)-1(znie)-402(z)-1(a\\261,)-402(tak,)-402(b)29(y)-402(nie)-402(m)-1(i)1(a)-1(r)1(kuj)1(\\241c)-403(n)1(ic)-1(zego)-403(sam)27(u)]TJ 0 -13.549 Td[(si\\246)-386(wygad)1(a\\252,)-385(d\\252ugo)-385(si\\246)-385(biedz\\241c)-1(,)-385(n)1(ie)-386(p)-27(otr)1(a\\014\\252a,)-385(\\273e)-386(i)-385(sp)-28(osobn)29(y)-385(c)-1(zas)-386(p)1(rze)-1(sz)-1(ed\\252,)-385(b)-27(o)]TJ 0 -13.549 Td[(si\\246)-370(ju)1(\\273)-370(rozni)1(e)-1(s\\252o)-370(p)-27(o)-370(wsi)-369(o)-370(j)1(e)-1(go)-369(p)-27(o)27(wro)-27(c)-1(ie,)-369(i)-369(wkr\\363tce)-1(,)-369(j)1(e)-1(sz)-1(cz)-1(e)-369(prze)-1(d)-369(n)1(ies)-1(zp)-28(or)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(zac)-1(z\\246)-1(\\252y)-333(si\\246)-334(sc)27(ho)-27(dz)-1(i)1(\\242)-334(k)28(obi)1(e)-1(t)28(y)84(,)-334(ciek)56(a)27(w)28(e)-334(wielc)-1(e)-333(p)-28(os\\252ys)-1(ze\\242)-334(nieco\\261)-334(o)-334(sw)28(oic)27(h)1(.)]TJ 27.879 -13.549 Td[(Wysze)-1(d)1(\\252)-345(do)-345(n)1(ic)27(h)-344(pr)1(z)-1(ed)-345(d)1(om)-345(i)-345(sie)-1(d)1(z)-1(\\241c)-345(na)-344(przy\\271bie)-345(rozp)-27(o)27(wiad)1(a\\252)-345(c)-1(o)-344(s)-1(i\\246)-345(b)28(y)1(\\252)]TJ -27.879 -13.55 Td[(o)-376(k)56(a\\273)-1(d)1(ym)-376(z)-377(osobn)1(a)-376(wywie)-1(d)1(z)-1(i)1(a\\252,)-376(i)-376(c)27(h)1(o)-28(\\242)-376(nic)-376(z\\252)-1(ego)-376(n)1(ie)-377(m\\363)28(wi\\252,)-376(a)-376(to)-376(b)1(abskie)-376(c)-1(i)1(c)27(he)]TJ 0 -13.549 Td[(c)27(h)1(lip)1(anie)-278(j)1(\\246)-1(\\252o)-277(s)-1(i\\246)-277(w)-1(zmaga\\242)-278(w)-278(gromadzie,)-278(gd)1(z)-1(ie)-277(z)-1(a\\261)-278(i)-277(p\\252acz)-278(g\\252o\\261)-1(n)28(y)84(,)-277(a)-278(gd)1(z)-1(ie)-278(i)-277(s\\252o)27(w)28(o)]TJ 0 -13.549 Td[(\\273a\\252)-1(o\\261liw)28(e)-334(si\\246)-334(wyrw)28(a\\252o...)]TJ 27.879 -13.549 Td[(A)-366(p)-27(ote)-1(m)-366(za\\261)-367(n)1(a)-366(wie\\261)-367(p)-27(os)-1(zed\\252)-366(ws)-1(t\\246pu)1(j\\241c)-366(do)-366(k)56(a\\273dej)-366(p)1(ra)28(wie)-367(c)28(ha\\252u)1(p)28(y)83(,)-365(a)-366(wi-)]TJ -27.879 -13.549 Td[(dzia\\252)-452(si\\246)-452(jak)28(o)-451(te)-1(n)-451(\\261)-1(wi\\241t)1(e)-1(k)-451(z)-453(o)28(w)28(\\241)-452(bi)1(a)-1(\\252\\241)-451(bro)-27(d\\241)-452(i)-451(w)-1(zni)1(e)-1(sion)28(ymi)-451(o)-28(c)-1(zyma,)-452(kt)1(\\363re)-1(n)]TJ 0 -13.55 Td[(ws)-1(z\\246)-1(d)1(y)-448(ni)1(\\363s)-1(\\252)-448(te)-449(s\\252o)28(w)27(a)-448(p)-27(o)-28(c)-1(i)1(e)-1(c)28(h)28(y)83(,)-448(a)-448(k)56(a)-56(j)-447(ws)-1(t\\241)-28(p)1(i\\252,)-448(to)-448(jak)1(b)28(y)-448(jasno\\261c)-1(i)1(\\241)-448(nap)-27(e)-1(\\252n)1(ia\\252y)]TJ 0 -13.549 Td[(si\\246)-407(izb)28(y)84(,)-406(a)-406(w)-407(se)-1(r)1(c)-1(ac)28(h)-406(zakwita\\252y)-406(nad)1(z)-1(ieje)-406(i)-406(du)1(fn)1(o\\261)-1(\\242)-406(krze)-1(p)1(i\\252a)-406(c)27(h)28(wiejn)1(e)-1(,)-406(al)1(e)-407(i)-406(\\252zy)]TJ\nET\nendstream\nendobj\n1233 0 obj <<\n/Type /Page\n/Contents 1234 0 R\n/Resources 1232 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1219 0 R\n>> endobj\n1232 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1237 0 obj <<\n/Length 9288      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(385)]TJ -358.232 -35.866 Td[(rz\\246)-1(si\\261c)-1(i)1(e)-1(j)-418(p\\252yn)1(\\246)-1(\\252y)84(,)-419(i)-418(o)-28(d)1(no)28(wione)-419(wsp)-28(omin)1(ania)-418(c)-1(i\\246\\273)-1(ej)-418(pr)1(z)-1(ygn)1(iata\\252y)84(,)-419(i)-418(\\273)-1(a\\252o\\261liw)28(o\\261)-1(\\242)]TJ 0 -13.549 Td[(t\\246s)-1(kl)1(iwie)-1(j)-333(wsta)28(w)27(a\\252a..)1(.)]TJ 27.879 -13.549 Td[(Bo)-251(pr)1(a)27(wd)1(\\246)-252(b)28(y)1(\\252a)-251(rze)-1(k\\252a)-251(w)28(cz)-1(ora)-55(j)-251(K)1(\\252\\246)-1(b)-27(o)28(w)27(a)-251(d)1(o)-251(Agat)28(y)83(,)-250(i\\273)-251(w)-1(i)1(e)-1(\\261)-251(s)-1(ta\\252a)-250(s)-1(i\\246)-251(p)-27(o)-28(dob)1(-)]TJ -27.879 -13.549 Td[(na)-303(d)1(o)-304(grob)1(u)-303(ot)28(w)27(ar)1(te)-1(go;)-303(p)1(ra)28(wda,)-303(b)-27(o)-304(n)1(ib)28(y)-303(p)-27(o)-304(zarazie)-304(wid)1(z)-1(ia\\252o)-303(s)-1(i)1(\\246)-304(w)-304(Li)1(p)-28(cac)27(h)1(,)-304(k)1(ie)-1(j)]TJ 0 -13.549 Td[(to)-381(wi\\246ks)-1(z\\241)-381(c)-1(z\\246)-1(\\261\\242)-382(n)1(aro)-28(d)1(u)-381(wywiez)-1(\\241)-381(p)-27(o)-28(d)-381(mogi\\252ki)-381(al)1(b)-28(o)-381(za\\261)-382(i)-381(wtedy)84(,)-381(kiej)-381(to)-381(w)28(o)-56(jn)1(a)]TJ 0 -13.55 Td[(pr)1(z)-1(etratu)1(je)-311(a)-312(c)28(h\\252op)-27(\\363)27(w)-311(wybij)1(e)-1(,)-311(\\273e)-312(j)1(e)-1(n)1(o)-312(p)-27(o)-311(c)27(ha\\252u)1(pac)28(h)-311(opu)1(s)-1(tosz)-1(a\\252yc)28(h)-311(os)-1(t)1(a)-56(j\\241)-311(b)1(abie)]TJ 0 -13.549 Td[(lame)-1(n)29(t)28(y)83(,)-358(d)1(z)-1(i)1(e)-1(ci\\253skie)-358(p)1(\\252ac)-1(ze)-1(,)-357(w)-1(y)1(rze)-1(k)56(ania)-357(i)-358(te)-358(wz)-1(d)1(yc)27(h)29(y)83(,)-357(i)-358(ta)-358(\\273yw)28(a)-358(a)-358(silni)1(e)-359(b)-27(ol\\241ca)]TJ 0 -13.549 Td[(pami\\246\\242)-334(kr)1(z)-1(ywd)1(.)]TJ 27.879 -13.549 Td[(\\233e)-334(j)1(u\\273)-334(i)-333(n)1(ie)-334(wyp)-27(o)27(wiedzie\\242)-1(,)-333(co)-334(si\\246)-334(w)-333(um\\246)-1(czon)28(yc)27(h)-333(d)1(usz)-1(ac)28(h)-333(dzia\\252o!)]TJ 0 -13.549 Td[(T)83(rzec)-1(ia)-332(n)1(iedzie)-1(l)1(a)-332(s)-1(i)1(\\246)-333(k)28(o\\253)1(c)-1(zy\\252a,)-332(a)-332(Li)1(p)-28(ce)-332(jes)-1(zc)-1(ze)-333(si\\246)-332(ni)1(e)-333(u)1(s)-1(p)-27(ok)56(a)-56(j)1(a\\252y)83(,)-332(n)1(apr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ciw)-402(za\\261)-1(,)-401(b)-27(o)-402(ci\\246gie)-1(m)-401(w)-1(zrasta\\252o)-402(p)-27(o)-28(cz)-1(u)1(c)-1(i)1(e)-402(krzywdy)-401(i)-401(niespra)28(wiedliw)28(o\\261c)-1(i,)-401(to)-401(i)-401(nie)]TJ 0 -13.55 Td[(dziw)28(ota,)-379(j)1(ak)28(o)-379(o)-378(k)55(a\\273dy)1(m)-379(\\261)-1(witan)1(iu,)-378(kiej)-378(pr)1(z)-1(ec)27(kn)1(\\246)-1(li)-378(jeno)-378(z)-1(e)-379(\\261pi)1(ku,)-378(w)-379(k)56(a\\273)-1(d)1(e)-379(przy-)]TJ 0 -13.549 Td[(p)-27(o\\252udn)1(ie)-314(i)-313(n)1(a)-313(o)-28(dwiecz)-1(erz)-1(u)-312(k)56(a\\273)-1(d)1(ym)-314({)-313(w)-313(c)27(ha\\252u)1(pac)28(h)-313(c)-1(zy)-313(na)-313(d)1(w)27(or)1(z)-1(e,)-313(gdzie)-314(si\\246)-314(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(nar)1(\\363)-28(d)-241(kup)1(i\\252,)-242(n)1(ie)-1(u)1(s)-1(tan)1(ni)1(e)-243(i)-241(lame)-1(n)28(tl)1(iwie)-1(,)-241(nib)29(y)-242(ten)-242(p)1(ac)-1(ierz)-242(dziad)1(o)27(wski,)-241(roz)-1(l)1(e)-1(ga\\252y)-242(si\\246)]TJ 0 -13.549 Td[(wyrze)-1(k)56(an)1(ia)-321(i)-321(\\273)-1(\\241d)1(z)-1(a)-321(o)-28(d)1(e)-1(ms)-1(t)28(y)-321(p)1(le)-1(n)1(i\\252a)-321(s)-1(i)1(\\246)-322(w)-322(serc)-1(ac)28(h)-321(kiej)-321(to)-321(d)1(iab)-28(elskie,)-321(z)-1(\\252e)-321(z)-1(ielsk)28(o,)]TJ 0 -13.549 Td[(\\273e)-334(s)-1(ame)-334(p)1(i\\246)-1(\\261c)-1(i)-333(si\\246)-334(zac)-1(i)1(s)-1(k)56(a\\252y)-333(i)-333(krw)28(a)28(w)27(e,)-333(z)-1(a)28(wz)-1(i\\246te)-334(s\\252o)27(w)28(a)-333(rw)28(a\\252)-1(y)-333(si\\246)-334(p)1(ioru)1(nami.)]TJ 27.879 -13.55 Td[(T)83(o)-394(j)1(u\\261c)-1(i)1(,)-394(\\273)-1(e)-394(Ro)-28(c)28(ho)28(w)27(e)-394(s\\252o)27(w)28(a,)-394(k)1(ie)-1(j)-393(ten)-394(k)1(ijasz)-1(ek,)-393(jakim)-394(n)1(ie)-1(b)1(ac)-1(zni)1(e)-395(r)1(oz)-1(gr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(bi)1(\\241)-374(p)1(rzyta)-56(j)1(on)28(y)-373(ogie\\253,)-373(i\\273)-373(p\\252omi\\246)-374(zno)28(wu)-373(s)-1(i)1(\\252)-1(\\241)-373(wyb)1(uc)27(h)1(a,)-373(to)-374(j)1(e)-1(d)1(no)-373(spra)28(wi\\252y)84(,)-374(co)-373(w)27(e)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h)-414(ws)-1(zystk)56(a)-414(pami\\246\\242)-414(krzywd)-414(wywlek\\252y)-414(p)1(rze)-1(d)-413(o)-28(cz)-1(y)84(,)-414(i\\273)-414(n)1(a)27(w)28(e)-1(t)-413(m)-1(a\\252o)-413(kto)]TJ 0 -13.549 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-355(n)1(a)-355(n)1(ies)-1(zp)-28(or)1(y)83(,)-354(zbierali)-354(si\\246)-355(j)1(e)-1(n)1(o)-355(p)-27(o)-354(op\\252otk)56(ac)27(h)1(,)-355(p)-27(o)-354(dr)1(ogac)27(h)-354(sto)27(w)28(arzysz)-1(ali)1(,)]TJ 0 -13.549 Td[(to)-333(do)-333(k)56(arcz)-1(m)27(y)-333(sz)-1(l)1(i,)-333(p)-28(or)1(e)-1(d)1(z)-1(a)-55(j\\241c,)-333(p\\252acz)-1(\\241c)-334(a)-333(p)-27(om)-1(stuj)1(\\241c)-1(.)1(..)]TJ 27.879 -13.55 Td[(Jedn)1(a)-298(Han)1(k)55(a)-297(sp)-28(ok)28(o)-55(jni)1(e)-1(j)1(s)-1(za)-298(si\\246)-298(u)1(c)-1(zu\\252a)-297(i)-297(tak)-297(rada)-297(z)-298(m\\246)-1(\\273o)28(w)27(ej)-297(p)-27(o)-28(c)27(h)28(w)28(a\\252y)83(,)-297(tak)]TJ -27.879 -13.549 Td[(ni)1(\\241)-367(skrze)-1(p)1(iona)-366(na)-366(duszy)-367(i)-366(p)-27(e)-1(\\252na)-366(nad)1(z)-1(iei,)-366(\\273)-1(\\241d)1(na)-366(rob)-27(ot)28(y)-367(i)-366(p)-27(ok)55(azania,)-366(\\273e)-367(p)-28(or)1(adzi)]TJ 0 -13.549 Td[(ws)-1(zystkiem)27(u)1(,)-334(i)1(\\273)-334(ni)1(e)-334(s)-1(p)-27(os\\363b)-333(te)-1(go)-333(wyp)-27(o)27(wiedzie\\242)-1(.)]TJ 27.879 -13.549 Td[(Sk)28(or)1(o)-450(si\\246)-450(roze)-1(sz)-1(\\252y)-449(k)28(obi)1(e)-1(t)28(y)84(,)-450(wraz)-450(te\\273)-450(pr)1(z)-1(ysz\\252)-1(a)-449(k)28(o)28(w)27(alo)28(w)28(a)-450(p)-27(os)-1(i)1(e)-1(d)1(z)-1(ie\\242)-450(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(c)27(h)1(orym,)-333(Hank)56(a)-333(z)-1(a\\261)-334(z)-333(J\\363z)-1(k)56(\\241)-333(ud)1(a\\252y)-334(si\\246)-334(d)1(o)-333(c)27(hlewu)-333(wie)-1(p)1(rzk)56(a)-334(ogl\\241d)1(a\\242)-1(.)]TJ 27.879 -13.55 Td[(Wyp)1(u\\261c)-1(i)1(\\252y)-437(go)-436(n)1(a)-437(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e,)-436(ale)-437(\\273e)-437(\\261)-1(wi\\253)1(tuc)28(h)-436(b)28(y\\252)-436(spasion)28(y)84(,)-437(t)1(o)-437(u)28(w)28(ali\\252)-436(si\\246)]TJ -27.879 -13.549 Td[(zaraz)-334(w)-333(gno)-56(j)1(\\363)28(w)27(ce)-334(i)-333(ani)-333(c)27(h)1(c)-1(i)1(a\\252)-334(si\\246)-334(r)1(usz)-1(y\\242.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(a)27(w)28(a)-56(j)-333(m)28(u)-333(ju)1(\\273)-334(dzisia)-56(j)-332(je\\261)-1(\\242,)-333(niec)27(h)-333(si\\246)-334(o)-28(czy\\261)-1(ci.)]TJ 0 -13.549 Td[({)-333(Akur)1(atnie)-333(i)-333(z)-1(ap)-27(om)-1(n)1(ia\\252am)-334(d)1(a\\242)-334(m)27(u)-333(p)-27(o)-333(p)-28(o\\252edn)1(iu.)1(..)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(d)1(obr)1(z)-1(e)-334(n)1(a)-334(ten)-333(raz,)-333(trza)-333(b)28(y)-333(go)-334(j)1(utr)1(o)-334(spr)1(a)27(wi\\242.)-333(W)83(o\\252a\\252a\\261)-334(Jagu)1(s)-1(t)28(y)1(nki?)]TJ 0 -13.55 Td[({)-333(Przyj)1(\\261)-1(\\242)-334(ob)1(iec)-1(a\\252a)-333(jes)-1(zc)-1(ze)-334(d)1(z)-1(isia)-55(j,)-333(na)-333(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzu..)1(.)]TJ 0 -13.549 Td[({)-343(Odziej)-343(si\\246)-344(i)-343(b)1(ie)-1(\\273yj)-343(d)1(o)-343(Jam)27(b)1(ro\\273a,)-343(niec)27(h)-343(j)1(utr)1(o,)-343(c)27(h)1(o)-28(\\242)-1(b)29(y)-343(i)-343(p)-28(o)-343(ms)-1(zy)83(,)-343(a)-343(p)1(rzy-)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi)-333(z)-1(e)-333(s)-1(tatk)56(ami)-333(op)-28(or)1(z)-1(\\241d)1(z)-1(i\\242)-333(w)-1(i)1(e)-1(p)1(rzk)55(a.)]TJ 27.879 -13.549 Td[({)-280(B)-1(\\246dzie)-280(to)-281(m\\363g\\252,)-280(kiej)-280(d)1(obro)-27(dzie)-1(j)-279(z)-1(ap)-27(o)28(w)-1(i)1(ada\\252,)-280(c)-1(o)-280(j)1(utr)1(o)-281(d)1(w)27(\\363)-27(c)27(h)-280(ksi\\246\\273)-1(y)-280(p)1(rzy-)]TJ -27.879 -13.549 Td[(jedzie)-334(s\\252uc)28(ha\\242)-334(sp)-28(o)28(wiedzi?)]TJ 27.879 -13.549 Td[({)-404(Cz)-1(as)-404(z)-1(n)1(a)-56(j)1(dzie)-1(!)1(...)-404(wie,)-404(\\273)-1(e)-404(gorza\\252ki)-404(\\273)-1(a\\252o)28(w)28(a\\242)-405(n)1(ie)-405(b)-27(\\246d\\246)-1(,)-403(a)-404(on)-404(jeno)-404(p)-27(orad)1(z)-1(i)]TJ -27.879 -13.55 Td[(galan)28(t)1(o)-334(sz)-1(lac)28(h)28(to)28(w)27(a\\242)-333(i)-333(m)-1(i\\246so)-334(spr)1(a)27(wi\\242.)-333(Jagust)28(ynk)56(a)-333(te)-1(\\273)-333(p)-28(omo\\273e)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(b)29(ym)-334(r)1(aniu)1(\\261)-1(k)28(o)-333(jec)27(h)1(a\\252)-1(a)-333(d)1(o)-334(miasta)-334(p)-27(o)-333(s)-1(\\363l)-333(i)-333(pr)1(z)-1(y)1(pra)28(wy)83(.)1(..)]TJ 0 -13.549 Td[({)-315(Zac)27(hcia\\252o)-315(c)-1(i)-314(s)-1(i\\246)-315(przew)-1(i)1(e)-1(tr)1(z)-1(y\\242!..)1(.)-315(nie)-315(p)-28(otr)1(z)-1(a:)-315(wsz)-1(ystkiego)-315(dostani)1(e)-316(u)-315(Jan)1(-)]TJ -27.879 -13.549 Td[(kla,)-333(sama)-334(tam)-333(z)-1(araz)-333(p)-28(\\363)-55(jd)1(\\246)-334(i)-333(pr)1(z)-1(yn)1(ies)-1(\\246.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a!)-333({)-333(krzykn)1(\\246)-1(\\252a)-333(jes)-1(zc)-1(ze)-334(za)-334(n)1(i\\241)-333({)-334(a)-333(gdzie)-334(to)-333(P)1(ie)-1(tr)1(e)-1(k)-333(z)-334(W)1(itkiem?)]TJ 0 -13.55 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(p)-27(os)-1(zli)-333(na)-333(wie\\261)-1(,)-333(b)-27(o)-334(P)1(ietrek)-333(w)-1(zi\\241\\252)-333(s)-1(kr)1(z)-1(yp)1(ice)-1(.)]TJ 0 -13.549 Td[({)-321(Sp)-27(otk)56(as)-1(z)-321(ic)27(h)1(,)-321(to)-321(pr)1(z)-1(yp)-27(\\246d\\271,)-321(niec)27(h)29(b)28(y)-321(z)-322(sz)-1(op)29(y)-321(k)28(oryto)-321(p)1(rzynie\\261)-1(l)1(i)-321(pr)1(z)-1(ed)-321(c)27(h)1(a-)]TJ\nET\nendstream\nendobj\n1236 0 obj <<\n/Type /Page\n/Contents 1237 0 R\n/Resources 1235 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1235 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1241 0 obj <<\n/Length 7783      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(386)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(\\252up)-27(\\246,)-334(t)1(rz)-1(a)-333(j)1(e)-334(b)-28(\\246dzie)-334(r)1(anki)1(e)-1(m)-334(wyp)1(arzy\\242.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-355(r)1(ada,)-355(\\273e)-356(m)-1(og\\252a)-355(si\\246)-356(wyr)1(w)27(a\\242)-356(n)1(a)-355(w)-1(i)1(e)-1(\\261,)-355(p)-28(ogn)1(a\\252a)-356(d)1(o)-355(Nas)-1(tki)1(,)-355(b)28(y)-355(s)-1(p)-27(\\363ln)1(ie)]TJ -27.879 -13.549 Td[(p)-27(os)-1(zuk)56(a\\242)-334(Jam)28(br)1(o\\273)-1(a.)]TJ 27.879 -13.549 Td[(Ale)-427(Hank)56(a)-427(nie)-427(w)-1(y)1(bra\\252a)-427(si\\246)-428(d)1(o)-427(k)55(ar)1(c)-1(zm)27(y)84(,)-427(z)-1(ar)1(az)-428(b)-27(o)27(wiem)-428(p)1(rzywl\\363k\\252)-427(s)-1(i)1(\\246)-428(jej)]TJ -27.879 -13.549 Td[(o)-28(ciec)-1(,)-378(stary)-377(B)-1(y)1(lica,)-378(wi\\246)-1(c)-378(da\\252a)-378(m)28(u)-378(p)-27(o)-28(d)1(je\\261)-1(\\242)-378(niec)-1(o,)-377(op)-28(o)28(wiad)1(a)-56(j)1(\\241c)-379(rad)1(o\\261)-1(n)1(ie,)-378(c)-1(o)-377(b)28(y\\252)]TJ 0 -13.55 Td[(Ro)-28(c)27(h)1(o)-282(p)1(rz)-1(y)1(w)-1(i)1(\\363z)-1(\\252)-282(o)-27(d)-282(An)29(tk)55(a,)-281(i)-282(n)1(ie)-282(s)-1(k)28(o\\253)1(c)-1(zy\\252a)-282(wsz)-1(ystki)1(e)-1(go,)-281(kiej)-282(wpad)1(\\252a)-282(z)-282(krzyki)1(e)-1(m)]TJ 0 -13.549 Td[(Magd)1(a:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(p)1(r\\246)-1(d)1(z)-1(ej,)-333(o)-55(jcu)-333(c)-1(osik)-333(jest!)]TJ 0 -13.549 Td[(Jak)28(o\\273)-253(B)-1(or)1(yna)-253(siedzia\\252)-253(na)-253(k)1(ra)-56(j)1(u)-253(\\252\\363\\273k)56(a)-253(roz)-1(gl)1(\\241da)-55(j\\241c)-253(s)-1(i\\246)-253(p)-27(o)-253(iz)-1(b)1(ie.)-253(Hank)56(a)-253(p)1(rzy-)]TJ -27.879 -13.549 Td[(pad)1(\\252a)-316(ku)-315(ni)1(e)-1(m)28(u)-316(tr)1(z)-1(y)1(m)-1(a\\242,)-316(ab)28(y)-315(ni)1(e)-317(zlec)-1(ia\\252,)-315(a)-316(on)-315(w)27(o)-27(dzi\\252)-316(o)-28(cz)-1(yma)-316(p)-27(o)-316(n)1(iej)-316(wlepia)-55(j\\241c)]TJ 0 -13.549 Td[(je)-333(naraz)-333(w)27(e)-334(d)1(rzwi)-334(k)1(t\\363rymi)-333(w\\252)-1(a\\261ni)1(e)-334(k)28(o)28(w)27(al)-333(w)28(c)27(ho)-27(dzi\\252)-334(n)1(ies)-1(p)-27(o)-28(dzian)1(ie)-1(.)]TJ 27.879 -13.55 Td[({)-333(Hank)56(a!)]TJ 0 -13.549 Td[(P)28(o)28(wiedzia\\252)-334(wyr)1(a\\271)-1(n)1(ie)-334(i)-333(mo)-28(c)-1(n)1(o,)-333(a\\273)-334(s)-1(t)1(ruc)28(hla\\252a)-333(w)-334(sobi)1(e)-1(.)]TJ 0 -13.549 Td[({)-413(D)1(y\\242)-413(jes)-1(tem.)-413(Ni)1(e)-413(ruc)28(ha)-55(jcie)-413(s)-1(i)1(\\246)-413(ino,)-412(dok)1(t\\363r)-413(wzbr)1(ania)-412({)-413(sz)-1(epta\\252a)-412(z)-1(es)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(c)27(h)1(ana.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(tam)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-1(?)]TJ 0 -13.55 Td[(G\\252o\\261)-334(mia\\252)-333(rozbit)28(y)84(,)-333(ob)-28(cy)-333(jaki)1(\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Zw)-1(i)1(e)-1(sna)-333(idzie,)-333(c)-1(iep\\252o..)1(.)-333({)-334(j)1(\\241k)55(a\\252a.)]TJ 0 -13.549 Td[({)-333(Ws)-1(t)1(ali)-333(to?...)-333(c)-1(zas)-334(w)-333(p)-28(ole...)]TJ 0 -13.549 Td[(Nie)-310(wiedzieli,)-309(co)-310(r)1(z)-1(ec)-1(,)-309(sp)-28(ogl)1(\\241da)-56(j)1(\\241c)-310(n)1(a)-310(sie)-1(b)1(ie;)-309(ino)-309(Magd)1(a)-310(r)1(ykn)1(\\246)-1(\\252a)-309(p\\252ac)-1(zem)-1(.)]TJ 0 -13.549 Td[({)-333(Sw)28(o)-56(j)1(e)-1(go)-333(br)1(oni\\242!)-333(nie)-333(da)-56(j)1(ta)-333(s)-1(i\\246,)-333(c)27(h)1(\\252)-1(op)29(y!)]TJ 0 -13.55 Td[(Kr)1(z)-1(ycz)-1(a\\252,)-257(ale)-258(s\\252o)27(w)28(a)-258(m)28(u)-258(si\\246)-258(r)1(w)27(a\\252y)84(,)-258(j)1(\\241\\252)-258(s)-1(i)1(\\246)-258(trz\\241\\261)-1(\\242)-258(i)-257(giba\\242)-258(w)-258(Han)1(c)-1(zyn)28(y)1(c)27(h)-257(r\\246ku,)]TJ -27.879 -13.549 Td[(\\273e)-338(k)28(o)28(w)27(alo)28(wie)-337(c)27(hcieli)-337(j\\241)-337(wyr)1(\\246)-1(cz)-1(y\\242;)-337(ni)1(e)-338(p)-27(opu)1(\\261)-1(ci\\252a)-337(jednak)1(,)-337(m)-1(i)1(m)-1(o)-337(\\273e)-338(ju)1(\\273)-338(mdl)1(a)-1(\\252y)-337(j)1(e)-1(j)]TJ 0 -13.549 Td[(ramion)1(a)-334(i)-333(gr)1(z)-1(b)1(ie)-1(t.)-333(P)28(at)1(rz)-1(al)1(i)-333(w)-334(ni)1(e)-1(go)-333(z)-334(tr)1(w)27(og\\241)-333(c)-1(ze)-1(k)56(a)-55(j\\241c,)-334(co)-333(p)-28(o)28(wie.)]TJ 27.879 -13.549 Td[({)-276(J\\246c)-1(zmiona)-275(b)28(y)-276(sia\\242)-276(pi)1(e)-1(rwsz)-1(e...)-275(Do)-276(mnie,)-275(C)-1(h)1(\\252op)28(y!.)1(..)-276(r)1(atun)1(ku!.)1(..)-276({)-275(krzykn)1(\\241\\252)]TJ -27.879 -13.549 Td[(nar)1(az)-334(strasz)-1(n)1(ie)-1(,)-333(wyp)1(r\\246)-1(\\273y\\252)-333(s)-1(i)1(\\246)-334(i)-333(pad)1(\\252)-334(w)-333(t)27(y)1(\\252,)-334(o)-27(c)-1(zy)-333(m)27(u)-333(si\\246)-334(zw)27(ar)1(\\252)-1(y)84(,)-333(z)-1(ar)1(z)-1(\\246z)-1(i)1(a\\252.)]TJ 27.879 -13.55 Td[({)-332(Um)-1(iera!)1(...)-332(Jez)-1(us!..)1(.)-332(umie)-1(r)1(a!...)-332({)-332(wrz)-1(esz)-1(cz)-1(a\\252a)-332(Hank)56(a)-333(t)1(arga)-56(j)1(\\241c)-333(ni)1(m)-333(z)-333(ca\\252)-1(ej)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(A)-333(Magda)-333(wnet)-333(z)-1(ap)1(alon\\241)-333(gromni)1(c)-1(\\246)-334(wt)28(yk)56(a\\252a)-333(m)27(u)-333(w)-333(b)-28(ez)-1(w\\252adn)1(\\241)-334(r)1(\\246)-1(k)28(\\246.)]TJ 0 -13.549 Td[(-Ks)-1(i)1(\\246)-1(d)1(z)-1(a,)-333(p)1(r\\246)-1(d)1(z)-1(ej,)-333(M)1(ic)27(h)1(a\\252)-1(!)1(...)]TJ 0 -13.549 Td[(Ale)-288(nim)-288(k)28(o)28(w)28(al)-288(wys)-1(ze)-1(d)1(\\252,)-288(Boryn)1(a)-288(ot)28(w)27(orzy\\252)-288(o)-28(cz)-1(y)-287(pu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-289(z)-288(r\\241k)-288(gr)1(om)-1(n)1(ic\\246)-1(,)]TJ -27.879 -13.55 Td[(\\273e)-334(s)-1(i)1(\\246)-334(p)-28(ot)1(rz)-1(ask)56(a\\252a)-334(w)-333(k)55(a)28(w)28(a\\252ki.)]TJ 27.879 -13.549 Td[({)-333(Ju\\273)-334(m)28(u)-333(pr)1(z)-1(es)-1(z\\252o,)-333(s)-1(zuk)56(a)-333(c)-1(ze)-1(go\\261...)]TJ 0 -13.549 Td[(Szepta\\252)-224(nac)28(h)28(yla)-55(j\\241c)-225(si\\246)-224(nad)-224(n)1(im)-1(,)-224(al)1(e)-225(stary)-224(o)-28(d)1(e)-1(p)-27(c)27(h)1(n\\241\\252)-224(go)-224(do\\261)-1(\\242)-224(s)-1(i)1(lnie)-224(i)-224(z)-1(a)28(w)28(o\\252a\\252)]TJ -27.879 -13.549 Td[(zup)-27(e)-1(\\252n)1(ie)-334(pr)1(z)-1(y)1(tom)-1(n)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(Hank)56(a,)-333(wypr)1(a)27(w)-333(t)28(yc)27(h)-333(lu)1(dzi.)]TJ 0 -13.549 Td[(Magd)1(a)-334(z)-333(p\\252acz)-1(em)-334(rzuci\\252a)-333(s)-1(i\\246)-333(do)-333(niego,)-333(ale)-334(snad)1(\\271)-334(jej)-333(ni)1(e)-334(p)-28(ozna\\252.)]TJ 0 -13.55 Td[({)-333(Nie)-334(c)27(h)1(c)-1(\\246...)-333(n)1(ie)-334(p)-27(otrza...)-333(wyp)-27(\\246)-1(d)1(\\271)-1(.)1(..)-333({)-334(p)-27(o)28(wtarza\\252)-334(up)-27(orczywie)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(\\242)-334(d)1(o)-334(sieni)-333(u)1(s)-1(t\\241)-28(p)-27(cie)-1(,)-333(n)1(ie)-334(sprzec)-1(iwia)-55(jcie)-334(si\\246...)-333({)-334(b)1(\\252aga\\252a.)]TJ 0 -13.549 Td[({)-343(Wyj)1(d\\271,)-343(Magd)1(a,)-343(j)1(a)-343(s)-1(i\\246)-343(z)-343(te)-1(go)-343(miejsc)-1(a)-343(n)1(ie)-344(r)1(usz)-1(\\246)-343({)-343(wyc)-1(edzi\\252)-343(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iwie)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-333(miark)1(uj)1(\\241)-1(c,)-333(\\273)-1(e)-333(s)-1(tar)1(y)-333(c)27(hce)-334(co\\261)-334(ta)-56(j)1(nego)-333(Hanc)-1(e)-333(p)-28(o)28(wiedzie)-1(\\242.)]TJ 27.879 -13.549 Td[(Dos\\252ys)-1(za\\252)-299(to)-298(s)-1(tar)1(y)-299(i)-298(un)1(i\\363s)-1(\\252sz)-1(y)-298(s)-1(i)1(\\246)-1(,)-298(tak)-299(gr)1(o\\271)-1(n)1(ie)-299(s)-1(p)-27(o)-55(jrza\\252)-299(ws)-1(k)56(azuj)1(\\241c)-299(m)27(u)-298(r\\246k)55(\\241)]TJ -27.879 -13.55 Td[(dr)1(z)-1(wi)-443(\\273)-1(e)-444(si\\246)-444(wyni\\363s\\252)-444(ki)1(e)-1(j)-443(ten)-444(p)1(ies)-445(k)28(op)1(ni)1(\\246)-1(t)28(y)84(,)-444(z)-444(pr)1(z)-1(ekle\\253st)28(w)27(em)-444(s)-1(k)28(o)-27(c)-1(zy\\252)-444(d)1(o)-444(p\\252a-)]TJ 0 -13.549 Td[(cz)-1(\\241ce)-1(j)-386(na)-387(gank)1(u)-387(Magd)1(y)83(,)-386(ale)-388(z)-387(nag\\252a)-387(p)1(rz)-1(y)1(c)-1(ic)28(h\\252,)-387(r)1(oz)-1(ejrza\\252)-387(s)-1(i)1(\\246)-388(i)-387(wp)1(ad\\252)-387(do)-387(sadu)-386(i)]TJ\nET\nendstream\nendobj\n1240 0 obj <<\n/Type /Page\n/Contents 1241 0 R\n/Resources 1239 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1239 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1244 0 obj <<\n/Length 8326      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(387)]TJ -358.232 -35.866 Td[(pr)1(z)-1(ebr)1(a)27(wsz)-1(y)-366(si\\246)-367(c)28(h)28(y\\252kiem)-367(p)-27(o)-28(d)-366(szc)-1(zyto)28(w)27(e)-366(okno)-366(pr)1(z)-1(y)1(w)27(ar\\252)-366(p)-27(o)-28(d)-366(n)1(im)-367(n)1(as)-1(\\252u)1(c)27(hi)1(w)27(a\\242,)]TJ 0 -13.549 Td[(b)-27(o)-329(j)1(ak)-328(raz)-329(tam)-328(dot)28(yk)56(a\\252y)-328(g\\252o)27(wy)-328(\\252\\363\\273)-1(k)56(a,)-328(\\273e)-329(pr)1(z)-1(ez)-329(s)-1(zyb)28(y)-328(mo\\273)-1(n)1(a)-328(b)28(y\\252o)-328(p)-28(os\\252ys)-1(ze\\242)-329(c)-1(o\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(co\\261)-1(.)]TJ 27.879 -13.549 Td[({)-333(Si\\241d)1(\\271)-334(pr)1(z)-1(y)-333(mnie...)]TJ 0 -13.549 Td[(Roz)-1(k)56(aza\\252)-334(stary)-333(p)-27(o)-334(j)1(e)-1(go)-333(wyj)1(\\261)-1(ciu.)]TJ 0 -13.55 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(przysiad\\252a)-333(na)-333(br)1(z)-1(e\\273)-1(k)1(u,)-333(ledwie)-334(p)1(\\252ac)-1(z)-334(p)-27(o)28(ws)-1(tr)1(z)-1(ym)28(uj)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(W)-333(k)28(om)-1(or)1(z)-1(e)-334(zna)-55(jd)1(z)-1(ies)-1(z)-333(niec)-1(o)-333(grosza...)-333(s)-1(c)28(ho)28(w)28(a)-56(j,)-333(b)28(y)-333(ci)-333(go)-334(n)1(ie)-334(wyd)1(arli)1(...)]TJ 0 -13.549 Td[({)-333(Gdzie?)]TJ 0 -13.549 Td[(T)83(rz\\246s)-1(\\252a)-333(s)-1(i\\246)-333(ju)1(\\273)-334(z)-1(e)-334(wzru)1(s)-1(ze)-1(n)1(ia.)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(zb)-27(o\\273)-1(u)1(...)]TJ 0 -13.549 Td[(M\\363)28(wi\\252)-350(wyr)1(a\\271)-1(n)1(ie)-1(,)-349(o)-28(d)1(p)-28(o)-27(c)-1(zyw)28(a)-56(j\\241c)-350(p)-27(o)-350(k)56(a\\273dym)-350(s\\252o)28(w)-1(i)1(e)-1(,)-349(a)-350(on)1(a,)-350(t\\252u)1(m)-1(i)1(\\241c)-350(s)-1(tr)1(ac)27(h)]TJ -27.879 -13.55 Td[(jak)1(i\\261)-1(,)-333(ca\\252a)-334(b)29(y\\252a)-334(w)-333(jego)-334(o)-27(c)-1(zac)27(h)1(,)-334(\\261wiec)-1(\\241cyc)27(h)-333(d)1(z)-1(iwn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-330(An)29(tk)56(a)-330(br)1(o\\253..)1(.)-330(p)-27(\\363\\252)-330(gosp)-27(o)-28(dark)1(i)-330(spr)1(z)-1(eda)-55(j,)-329(a)-330(n)1(ie)-330(da)-55(j)-329(go...)-329(nie)-330(d)1(a)-56(j)1(...)-329(t)28(w)27(o)-55(je...)]TJ 0 -13.549 Td[(Nie)-472(sk)28(o\\253cz)-1(y)1(\\252)-472(j)1(u\\273)-1(,)-471(p)-27(os)-1(i)1(nia\\252)-471(i)-471(z)-1(w)28(ali\\252)-471(s)-1(i\\246)-472(n)1(a)-472(p)-27(o\\261c)-1(iel,)-471(o)-28(cz)-1(y)-471(m)27(u)-471(p)1(rzygas\\252)-1(y)-471(i)]TJ -27.879 -13.549 Td[(zas)-1(n)28(u)1(\\252y)-333(s)-1(i\\246)-334(mg\\252\\241,)-333(b)-27(e)-1(\\252k)28(ota\\252)-333(jes)-1(zc)-1(ze)-334(cos)-1(ik)1(,)-334(i)-333(j)1(akb)28(y)-333(p)1(r\\363b)-27(o)27(w)28(a\\252)-334(si\\246)-334(p)-27(o)-28(d)1(nie\\261)-1(\\242.)]TJ 27.879 -13.549 Td[(Hank)56(a)-252(zakr)1(z)-1(ycz)-1(a\\252a)-251(z)-1(e)-252(s)-1(t)1(rac)27(h)28(u)1(,)-252(p)1(rzybi)1(e)-1(gli)-251(wnet)-252(k)28(o)28(w)27(alo)28(wie,)-252(cucili,)-251(w)28(o)-28(d\\241)-252(zle-)]TJ -27.879 -13.55 Td[(w)28(ali,)-353(ale)-353(j)1(u\\273)-353(nie)-353(opr)1(z)-1(yt)1(om)-1(n)1(ia\\252)-353(i)-353(j)1(ak)-353(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-352(le)-1(\\273a\\252)-353(dr)1(\\246)-1(t)28(wy)83(,)-352(nieru)1(c)27(hom)28(y)83(,)-352(z)-354(ot)28(w)28(ar-)]TJ 0 -13.549 Td[(t)28(ymi)-333(o)-28(c)-1(zyma,)-333(daleki)-333(o)-28(d)-333(tego,)-333(c)-1(o)-333(si\\246)-334(p)1(rz)-1(y)-333(n)1(im)-334(d)1(z)-1(ia\\252o.)]TJ 27.879 -13.549 Td[(D\\252ugi)-311(c)-1(zas)-313(p)1(rze)-1(sie)-1(d)1(z)-1(i)1(e)-1(li)-311(przy)-312(n)1(im)-1(,)-311(k)28(obiet)28(y)-312(p\\252ak)56(a\\252y)-312(cic)27(h)1(o,)-312(a)-312(nik)1(to)-312(nie)-312(rze)-1(k)1(\\252)]TJ -27.879 -13.549 Td[(i)-307(s)-1(\\252o)28(w)28(a;)-307(z)-1(mierz)-1(c)28(h)-307(ju)1(\\273)-308(zapada\\252,)-307(izba)-307(p)-27(ogr\\241\\273a\\252)-1(a)-307(si\\246)-308(w)-307(c)-1(ieni)1(ac)27(h,)-307(ki)1(e)-1(j)-307(wysz)-1(l)1(i)-307(s)-1(p)-27(o\\252e)-1(m)]TJ 0 -13.549 Td[(na)-333(d)1(z)-1(ie\\253)-333(dogasa)-56(j)1(\\241c)-1(y)84(,)-333(\\273)-1(e)-333(ju\\273)-333(jeno)-333(w)-334(sta)28(w)-1(i)1(e)-334(tli\\252y)-333(si\\246)-334(resz)-1(tki)-333(z\\363rz)-334(zac)27(h)1(o)-28(dn)1(ic)27(h)1(.)]TJ 27.879 -13.55 Td[(Co)-334(w)28(am)-334(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252?)-333({)-334(zagadn)1(\\241\\252)-334(ostro)-333(p)1(rz)-1(est\\246)-1(p)1(uj\\241c)-333(jej)-333(dr)1(og\\246)-1(.)]TJ 0 -13.549 Td[({)-333(S\\252ysz)-1(eli\\261c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Ale)-334(co)-334(p)-27(\\363\\271niej)-333(m)-1(\\363)28(wi\\252?)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(i)-333(pr)1(z)-1(\\363)-27(dzi,)-333(przy)-333(w)27(as...)]TJ 0 -13.549 Td[({)-333(Hank)56(a,)-333(nie)-333(dopr)1(o)28(w)27(ad)1(z)-1(a)-55(jcie)-334(me)-334(do)-333(z\\252)-1(o\\261ci,)-333(b)-28(o)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(\\271)-1(le...)]TJ 0 -13.55 Td[({)-333(T)27(yl)1(e)-334(s)-1(i)1(\\246)-334(w)27(aszyc)27(h)-333(gr\\363\\271b)-333(b)-27(o)-56(j)1(am)-1(,)-333(co)-334(t)1(e)-1(go)-333(psa...)]TJ 0 -13.549 Td[({)-333(I)-334(wt)28(yk)56(a\\252)-334(w)28(am)-334(cos)-1(i)1(k)-334(w)-333(gar\\261c)-1(i)1(e)-1(..)1(.)-334({)-333(d)1(orz)-1(u)1(c)-1(i)1(\\252)-334(p)-27(o)-28(dst\\246pn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(co,)-333(to)-333(jut)1(ro)-334(za)-333(s)-1(to)-27(do\\252\\241)-333(z)-1(n)1(a)-56(jd)1(z)-1(i)1(e)-1(cie...)-333({)-333(s)-1(zydzi\\252a)-333(ur\\241)-27(gliwie.)]TJ 0 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252)-246(s)-1(i\\246)-246(ku)-245(ni)1(e)-1(j)-245(i)-246(mo\\273)-1(e)-246(b)28(y)-245(dosz)-1(\\252o)-246(d)1(o)-246(c)-1(ze)-1(go)-246(gor)1(s)-1(ze)-1(go,)-245(\\273)-1(eb)28(y)-246(n)1(ie)-246(Jagust)28(ynk)56(a,)]TJ -27.879 -13.549 Td[(kt\\363r)1(a)-334(n)1(ades)-1(z\\252a)-334(n)1(a)-334(t)1(e)-1(n)-333(cz)-1(as)-333(i)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-333(z)-1(ar)1(az)-334(rze)-1(k)1(\\252)-1(a:)]TJ 27.879 -13.55 Td[({)-303(T)83(ak)-303(se)-304(zgo)-28(dli)1(w)-1(i)1(e)-1(,)-303(p)-27(o)-303(przyj)1(ac)-1(ielsku)-303(p)-27(oredzac)-1(i)1(e)-1(,)-303(\\273e)-304(si\\246)-304(p)-27(o)-303(c)-1(a\\252ej)-303(ws)-1(i)-303(r)1(oz)-1(n)1(o-)]TJ -27.879 -13.549 Td[(si...)]TJ 27.879 -13.549 Td[(Sk)1(l\\241\\252)-334(j)1(\\241,)-333(c)-1(o)-333(wlaz)-1(\\252o,)-333(i)-333(p)-27(oni\\363s\\252)-333(s)-1(i\\246)-333(na)-333(w)-1(i)1(e)-1(\\261.)]TJ 0 -13.549 Td[(No)-28(c)-371(wkr\\363tce)-371(z)-1(ap)1(ad\\252a)-371(cie)-1(mna,)-370(c)27(h)1(m)27(ur)1(z)-1(ysk)56(a)-371(pr)1(z)-1(ys\\252oni)1(\\252)-1(y)-370(nieb)-27(o,)-371(\\273e)-372(n)1(i)-371(jeden)]TJ -27.879 -13.549 Td[(gwiez)-1(d)1(n)28(y)-313(m)-1(i)1(got)-314(si\\246)-314(n)1(ie)-314(p)1(rze)-1(d)1(z)-1(iera\\252,)-313(ws)-1(ta)28(w)28(a\\252)-314(wiat)1(r)-313(i)-314(miec)-1(i)1(\\252)-314(z)-313(w)27(oln)1(a)-314(d)1(rze)-1(win)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(i\\273)-334(p)-27(osz)-1(u)1(m)-1(iw)28(a\\252y)-333(g\\252uc)27(h)1(o)-333(i)-334(sm)27(u)1(tni)1(e)-1(:)-333(sz)-1(\\252o)-333(z)-1(n)1(o)27(wu)-333(n)1(a)-334(j)1(ak)56(\\241\\261)-334(o)-28(d)1(m)-1(ian)1(\\246)-1(.)]TJ 27.879 -13.55 Td[(W)-369(Han)1(c)-1(zynej)-369(izbi)1(e)-370(b)28(y)1(\\252)-1(o)-369(j)1(as)-1(n)1(o)-369(i)-369(do\\261\\242)-370(gw)28(arno,)-368(ogie)-1(\\253)-368(trzas)-1(k)56(a\\252)-369(na)-369(k)28(omini)1(e)-1(,)]TJ -27.879 -13.549 Td[(wiec)-1(ze)-1(r)1(z)-1(a)-404(s)-1(i\\246)-404(dogoto)28(wyw)28(a\\252)-1(a,)-404(k)1(ilk)56(a)-405(starsz)-1(y)1(c)27(h)-404(k)28(ob)1(ie)-1(t)-404(z)-405(Jagu)1(s)-1(t)28(yn)1(k)56(\\241)-405(n)1(a)-405(cze)-1(le)-404(p)-28(o-)]TJ 0 -13.549 Td[(gady)1(w)27(a\\252y)-392(r)1(\\363\\273)-1(n)1(o\\261)-1(ci,)-392(J)1(\\363z)-1(k)56(a)-392(za\\261)-393(z)-392(Nastk)55(\\241)-391(i)-392(z)-392(Ja\\261)-1(k)1(ie)-1(m)-392(P)1(rze)-1(wrotn)29(ym)-392(s)-1(iedzia\\252y)-392(n)1(a)]TJ 0 -13.549 Td[(gank)1(u,)-478(b)-27(o)-479(P)1(ie)-1(tr)1(e)-1(k)-478(wyci\\241)-28(ga\\252)-478(na)-478(s)-1(kr)1(z)-1(y)1(picac)27(h)-478(tak)56(\\241)-478(n)28(ut\\246)-478(\\273)-1(a\\252osn\\241,)-478(a\\273)-479(si\\246)-479(im)-479(n)1(a)]TJ 0 -13.549 Td[(p\\252acz)-387(zbiera\\252o;)-386(jeno)-386(Han)1(k)55(a)-386(n)1(ie)-387(mog\\252a)-387(u)1(s)-1(iedzie\\242)-387(na)-386(miejsc)-1(u)1(,)-386(w)27(ci\\241\\273)-387(rozm)27(y)1(\\261)-1(la)-55(j\\241c)]TJ 0 -13.55 Td[(nad)-332(B)-1(or)1(yno)28(wymi)-334(s\\252o)28(w)27(ami,)-333(a)-333(c)-1(o)-333(tro)-27(c)27(ha)-333(zag)-1(l)1(\\241da)-55(j\\241c)-334(n)1(a)-334(d)1(ru)1(g\\241)-334(stron)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[(Ale)-446(c\\363\\273)-1(?...)-445(ni)1(e)-446(s)-1(p)-27(os)-1(\\363b)-445(teraz)-446(b)28(y)1(\\252)-1(o)-445(w)-446(k)28(omorze)-447(szuk)56(a\\242)-1(:)-445(Jagna)-445(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-445(w)]TJ\nET\nendstream\nendobj\n1243 0 obj <<\n/Type /Page\n/Contents 1244 0 R\n/Resources 1242 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1242 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1247 0 obj <<\n/Length 3798      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(388)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(27.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(izbie)-333(uk\\252ad)1(a)-56(j)1(\\241c)-334(\\261)-1(wi\\241tec)-1(zne)-333(s)-1(zm)-1(at)28(y)-333(w)28(e)-334(skrzyni)1(.)]TJ 27.879 -13.549 Td[({)-398(P)1(ietrek,)-398(a)-397(pr)1(z)-1(es)-1(ta\\253)1(,)-398(p)1(rze)-1(cie)-1(\\273)-398(t)1(o)-398(ju)1(\\273)-398(pra)28(wie)-398(Wi)1(e)-1(lk)1(i)-398(P)28(on)1(iedzia\\252e)-1(k,)-397(a)-398(ten)]TJ -27.879 -13.549 Td[(du)1(dl)1(i)-334(a)-333(d)1(udl)1(i,)-333(grze)-1(c)27(h)1(!)]TJ 27.879 -13.549 Td[(Zgromi\\252a,)-473(tak)-472(roztrz\\246)-1(siona)-473(w)-473(sobi)1(e)-1(,)-473(\\273e)-473(jej)-473(si\\246)-473(p\\252ak)56(a\\242)-474(c)28(hcia\\252o.)-473(Ju)1(\\261)-1(ci,)-473(\\273e)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(t)1(a\\252)-334(i)-333(ws)-1(zysc)-1(y)-333(pr)1(z)-1(y)1(s)-1(zli)-333(do)-333(izb)28(y)83(.)]TJ 27.879 -13.55 Td[({)-244(O)-244(t)28(ym)-244(dziedzic)-1(o)28(wym)-244(br)1(ac)-1(ie,)-244(g\\252up)1(im)-244(Jac)27(ku)1(,)-244(m)-1(\\363)28(wim)28(y)-244({)-244(ob)-55(ja\\261nia\\252a)-244(kt\\363r)1(a\\261)-1(.)]TJ 0 -13.549 Td[(Nie)-248(mog\\252)-1(a)-247(jednak)-247(wyrozumie)-1(\\242,)-248(o)-248(czym)-248(m)-1(\\363)28(wi\\241,)-248(gd)1(y\\273)-248(psy)-248(zac)-1(z\\246)-1(\\252y)-248(co\\261)-248(g\\252)-1(o\\261no)]TJ -27.879 -13.549 Td[(sz)-1(cz)-1(ek)56(a\\242)-274(w)-274(op)1(\\252otk)56(ac)27(h,)-273(a\\273)-273(z)-1(n)1(o)27(wu)-273(wyj)1(rza\\252a)-274(p)-27(o)-28(d)1(s)-1(zc)-1(zu)28(w)28(a)-56(j)1(\\241c)-274(jes)-1(zcz)-1(e.)-273(\\212apa)-273(rzuci\\252)-273(s)-1(i\\246)]TJ 0 -13.549 Td[(za)-56(jad)1(le)-334(w)-333(s)-1(ad)1(...)]TJ 27.879 -13.549 Td[({)-333(Huzia)-333(go,)-334(\\212ap)1(a!..)1(.)-334(W)84(e)-1(\\271)-333(go,)-333(B)-1(u)1(rek!...)-333(Hu)1(z)-1(i)1(a!...)]TJ 0 -13.549 Td[(Ale)-334(p)1(s)-1(y)-333(zmilk\\252y)-333(nagl)1(e)-334(i)-333(p)-28(o)28(wr\\363)-28(ciwsz)-1(y)-333(sk)55(amla\\252y)-333(rad)1(o\\261)-1(n)1(ie)-1(.)]TJ 0 -13.55 Td[(I)-352(niejeden)-352(raz)-352(te)-1(go)-352(wiec)-1(zoru)-352(b)28(y)1(\\252)-1(o)-352(tak)-352(sam)-1(o,)-352(\\273e)-353(wsta\\252)-1(o)-352(w)-352(niej)-352(j)1(akie\\261)-353(s)-1(tr)1(a-)]TJ -27.879 -13.549 Td[(c)27(h)1(liw)28(e)-334(p)-27(o)-28(dejr)1(z)-1(enie.)]TJ 27.879 -13.549 Td[({)-309(P)1(ie)-1(tr)1(e)-1(k)1(,)-309(a)-309(za)27(wrzyj)-308(w)-1(szys)-1(tk)28(o)-308(na)-309(n)1(o)-28(c)-1(,)-308(b)-28(o)-309(m)28(usi)-309(b)28(y)1(\\242)-1(,)-309(k)1(tos)-1(i)1(k)-309(to)-309(p)-27(e)-1(n)1(e)-1(tr)1(uj)1(e)-1(,)-309(a)]TJ -27.879 -13.549 Td[(sw)27(\\363)-55(j,)-333(\\273)-1(e)-333(psy)-333(nie)-334(c)28(hc\\241)-334(d)1(o)-28(cie)-1(r)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Roz)-1(esz)-1(li)-389(si\\246)-390(wnet)-390(ws)-1(zysc)-1(y)-389(i)-389(w)-1(k)1(r\\363tce)-390(\\261)-1(p)1(ik)-390(ogar)1(n\\241\\252)-389(c)-1(a\\252y)-389(dom,)-390(j)1(e)-1(n)1(o)-390(Han)1(k)55(a)]TJ -27.879 -13.55 Td[(p)-27(os)-1(z\\252a)-436(j)1(e)-1(sz)-1(cz)-1(e)-436(spr)1(a)28(w)-1(d)1(z)-1(i)1(\\242)-1(,)-435(c)-1(zy)-435(dr)1(z)-1(wi)-435(p)-28(oza)28(w)-1(i)1(e)-1(ran)1(e)-1(,)-435(a)-435(p)-28(ot)1(e)-1(m)-436(d)1(\\252ugo)-435(s)-1(to)-55(ja\\252a)-435(p)-28(o)-28(d)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(\\241)-334(t)1(rw)27(o\\273ni)1(e)-334(nas\\252uc)27(h)29(uj)1(\\241c)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(e)-334(zb)-27(o\\273)-1(u)1(...)-333(to)-333(ju)1(\\261)-1(ci)-333(w)-334(kt\\363r)1(e)-1(j)1(\\261)-334(z)-334(b)-27(e)-1(cz)-1(ek..)1(.)-333(B)-1(y)-333(in)1(o)-334(me)-334(kt)1(o)-334(n)1(ie)-334(u)1(bieg\\252!...)]TJ 0 -13.549 Td[(Zimn)28(y)-333(p)-27(ot)-334(strac)28(h)28(u)-333(j\\241)-333(obl)1(a\\252)-334(i)-333(se)-1(r)1(c)-1(e)-334(gw)28(a\\252to)28(w)-1(n)1(ie)-334(zak)28(o\\252ata\\252o.)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-334(\\273)-1(e)-333(nie)-334(spa\\252a)-333(tej)-333(no)-28(cy)83(.)]TJ\nET\nendstream\nendobj\n1246 0 obj <<\n/Type /Page\n/Contents 1247 0 R\n/Resources 1245 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1245 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1250 0 obj <<\n/Length 7523      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(28)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-365(J\\363zia,)-365(r)1(oz)-1(p)1(al)-365(n)1(a)-365(k)28(om)-1(i)1(nie)-365(i)-365(co)-365(j)1(e)-1(st)-365(garn)1(k)28(\\363)28(w)-1(,)-364(z)-1(b)1(ierz)-1(,)-364(nalej)-364(w)27(o)-28(d)1(\\241)-365(i)-365(p)1(rzysta)27(w)-365(d)1(o)]TJ 0 -13.549 Td[(ogni)1(a,)-333(ja)-333(p)-28(olec\\246)-334(do)-333(\\233yda)-333(p)-27(o)-334(p)1(rzypr)1(a)28(w)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(\\261pi)1(e)-1(sz)-1(cie,)-334(b)-27(o)-333(Jam)27(b)1(ro\\273a)-334(in)1(o)-333(patrze\\242)-1(.)]TJ 0 -13.549 Td[({)-373(Ni)1(e)-373(b)-28(\\363)-55(j)-373(si\\246,)-373(r)1(\\363)28(w)-1(n)1(o)-373(z)-373(d)1(niem)-373(nie)-373(p)1(rzyku)1(s)-1(zt)28(yk)56(a,)-373(k)28(o\\261c)-1(i)1(\\363\\252)-373(m)27(u)1(s)-1(i)-372(pierw)28(e)-1(j)-372(ob)1(-)]TJ -27.879 -13.55 Td[(rz\\241dzi\\242.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(p)1(rze)-1(d)1(z)-1(w)28(oni)-333(i)-333(wnet)-334(si\\246)-334(zja)28(wi,)-333(b)-27(o)-334(Ro)-27(c)27(ho)-333(ma)-56(j\\241)-333(go)-333(z)-1(ast\\241)-28(p)1(i\\242)-1(.)]TJ 0 -13.549 Td[({)-241(Zd)1(\\241\\273)-1(\\246)-241(j)1(e)-1(sz)-1(cz)-1(ec)27(h)1(,)-241(a)-240(krzykn)1(ij)-240(no)-240(na)-240(c)27(h\\252op)1(ak)28(\\363)28(w)-1(,)-240(b)28(y)-240(ryc)28(hlej)-240(wys)-1(k)1(robal)1(i)-241(k)28(or)1(y-)]TJ -27.879 -13.549 Td[(to)-336(i)-336(p)1(rzywle)-1(k)1(li)-336(je)-336(na)-336(gan)1(e)-1(k)1(.)-336(Jagust)28(ynk)56(a)-336(p)1(rz)-1(y)1(jd)1(z)-1(ie,)-336(to)-336(n)1(ie)-1(c)28(h)28(b)28(y)-336(p)-27(om)27(y)1(\\252a)-336(c)-1(ebrzyki)1(,)]TJ 0 -13.549 Td[(b)-27(e)-1(cz)-1(k)1(i)-427(te)-1(\\273)-428(t)1(rz)-1(a)-427(wyn)1(ie)-1(\\261\\242)-428(z)-427(k)28(om)-1(or)1(y)-427(i)-427(z)-1(ato)-28(czy\\242)-428(d)1(o)-428(sta)28(w)-1(u)1(,)-427(ni)1(e)-1(c)27(h)-426(o)-28(dmi\\246kn\\241;)-427(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(ni)1(e)-386(zabacz)-385(k)56(am)-1(ieni)-384(nak)1(\\252)-1(a\\261\\242,)-385(b)28(y)-384(ic)27(h)-384(w)27(o)-27(da)-385(n)1(ie)-385(wz)-1(i\\246\\252a.)-385(Dziec)-1(i)-384(nie)-385(b)1(ud\\271,)-385(n)1(iec)27(h)-384(s)-1(e)]TJ 0 -13.55 Td[(\\261pi\\241)-309(robak)1(i,)-310(p)1(rze)-1(stron)1(ie)-1(j)-309(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)-310({)-309(nak)56(az)-1(y)1(w)27(a\\252a)-310(ostro)-309(Hank)56(a)-310(i)-309(pr)1(z)-1(y)28(okr)1(yws)-1(zy)-310(si\\246)]TJ 0 -13.549 Td[(zapask)55(\\241)-278(na)-278(g\\252o)27(w)28(\\246,)-279(wysun)1(\\246)-1(\\252a)-278(s)-1(i)1(\\246)-279(\\261)-1(p)1(ie)-1(sznie)-279(n)1(a)-279(w)28(c)-1(ze)-1(sn)28(y)-278(i)-278(galan)28(to)-278(rozkis\\252y)-279(p)-27(oran)1(e)-1(k)1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-240(c)-1(o)-241(si\\246)-241(b)28(y\\252)-241(dop)1(ie)-1(r)1(o)-241(s)-1(ta\\252,)-241(c)28(hm)28(urn)29(y)83(,)-241(mokry)-240(i)-241(pr)1(z)-1(yk)1(rym)-241(z)-1(i\\241b)-27(em)-242(p)1(rze)-1(j)1(\\246)-1(t)28(y;)]TJ -27.879 -13.549 Td[(siw)27(e)-446(mg\\252y)-446(d)1(ym)-1(i)1(\\252y)-446(z)-446(pr)1(z)-1(em)-1(i)1(\\246)-1(k\\252ej)-445(z)-1(iemi)-446(opad)1(a)-56(j)1(\\241c)-446(drob)1(n)28(ym)-446(i)-445(z)-1(imn)28(ym)-446(d)1(\\273)-1(d)1(\\273)-1(em,)]TJ 0 -13.549 Td[(o\\261lizg\\252)-1(e)-296(dr)1(ogi)-296(siwi\\252y)-296(s)-1(i)1(\\246)-297(op)1(ite)-296(w)27(o)-28(d)1(\\241,)-296(a)-296(p)-27(o)-28(c)-1(zerni)1(a\\252)-1(e)-296(c)27(h)1(a\\252up)28(y)-295(le)-1(d)1(w)-1(i)1(e)-297(co)-296(b)28(y\\252y)-296(wid)1(ne)]TJ 0 -13.55 Td[(w)-258(sz)-1(ar)1(udze)-1(,)-257(a)-258(p)1(rze)-1(mi\\246k\\252e)-258(drzew)-1(i)1(n)28(y)83(,)-257(s)-1(k)1(urcz)-1(on)1(e)-1(,)-257(ja)28(wi\\252y)-257(s)-1(i\\246)-258(k)56(a)-56(j)1(\\261)-258(niek)56(a)-56(j)-257(dy)1(gotliwym)]TJ 0 -13.549 Td[(cie)-1(n)1(iem)-1(,)-431(ki)1(e)-1(b)28(y)-431(z)-431(t)27(y)1(c)27(h)-431(sk\\252ac)-1(zon)28(yc)28(h,)-431(sz)-1(kl)1(is)-1(t)28(yc)28(h)-431(mgie)-1(\\252)-431(ucz)-1(y)1(nion)1(e)-1(,)-431(i)-431(n)1(agl\\241da\\252y)-431(w)]TJ 0 -13.549 Td[(sta)27(w)-434(ledwie)-435(sini)1(e)-1(j)1(\\241c)-1(y)84(,)-434(\\273)-1(e)-435(j)1(e)-1(n)1(o)-435(sp)-27(o)-28(d)-434(sk)28(o\\252)-1(t)1(uni)1(on)28(yc)27(h)-433(przys\\252)-1(on)-433(gr\\241\\273)-1(y)1(\\252)-435(si\\246)-435(d)1(r\\273\\241)-1(cy)84(,)]TJ 0 -13.549 Td[(cic)27(h)28(y)-234(b)1(ulgot)-234(k)1(rop)-27(e)-1(l)-234(b)1(ij\\241cyc)27(h)-233(nieustann)1(ie)-235(w)-234(w)28(o)-28(d\\246,)-234(a)-234(w)-1(sz\\246)-1(dy)-233(s)-1(z\\252a)-235(p)1(luc)28(ha,)-234(\\273e)-235(\\261wiata)]TJ 0 -13.549 Td[(Bo\\273)-1(ego)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(do)-55(jrza\\252,)-333(i)-333(pu)1(s)-1(to)-333(b)28(y\\252o)-333(jes)-1(zcz)-1(e.)]TJ 27.879 -13.55 Td[(Dop)1(ie)-1(r)1(o)-241(kiej)-240(s)-1(ygn)1(atur)1(k)55(a)-240(j\\246\\252a)-241(pr)1(z)-1(edzw)27(an)1(ia\\242)-1(,)-240(zac)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(i\\252y)-241(si\\246)-241(gdzie)-1(n)1(iegdzie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzie)-1(wy)-333(k)28(obi)1(e)-1(t,)-333(p)1(rz)-1(ebi)1(e)-1(r)1(a)-56(j\\241cyc)28(h)-333(s)-1(i\\246)-333(s)-1(u)1(c)27(hsz)-1(y)1(m)-1(i)-333(miejsc)-1(ami)-333(do)-333(k)28(o\\261)-1(cio\\252a.)]TJ 27.879 -13.549 Td[(Hank)56(a)-409(przy\\261pies)-1(za\\252a,)-410(r)1(ac)27(h)28(u)1(j\\241c,)-410(\\273e)-410(m)-1(o\\273e)-410(si\\246)-410(z)-410(Jam)27(b)1(ro\\273)-1(y)1(m)-410(s)-1(p)-27(otk)56(a)-410(j)1(u\\273)-410(na)]TJ -27.879 -13.549 Td[(skr\\246c)-1(ie)-416(prze)-1(d)-415(k)28(o\\261)-1(cio\\252e)-1(m.)-416(ale)-417(n)1(ie)-417(wysz)-1(ed\\252)-416(jes)-1(zc)-1(ze)-1(,)-416(j)1(e)-1(n)1(o)-417(j)1(ak)-416(c)-1(o)-416(dn)1(ia)-417(o)-416(tej)-416(p)-28(or)1(z)-1(e)]TJ 0 -13.549 Td[(kr)1(\\246)-1(ci\\252)-343(s)-1(i\\246)-343(pr)1(z)-1(ed)-343(sta)28(w)27(em)-344(\\261lep)28(y)-343(k)28(o\\253)-343(ksi\\246dzo)28(w)-1(y)-343(ci\\241)-28(ga)-55(j\\241c)-343(na)-343(p)1(\\252)-1(ozac)27(h)-342(b)-28(ec)-1(zk)28(\\246)-1(,)-342(przy-)]TJ 0 -13.55 Td[(sta)27(w)28(a\\252)-245(w)28(ci\\241\\273)-245(i)-244(ut)28(yk)56(a\\252)-244(na)-244(wyb)-28(o)-55(jac)28(h,)-244(jeno)-244(w)28(\\246)-1(c)27(h)1(e)-1(m)-244(z)-1(mierza)-56(j\\241c)-244(ku)-244(w)27(o)-27(dzie)-1(,)-244(b)-27(o)-244(parob)]TJ 0 -13.549 Td[(b)28(y\\252)-333(w\\252a\\261)-1(n)1(ie)-334(pr)1(z)-1(y)1(kucn\\241\\252)-333(o)-28(d)-333(p)1(luc)28(h)28(y)-333(w)-334(op)1(\\252)-1(otk)56(ac)28(h)-333(i)-333(kur)1(z)-1(y\\252)-333(pap)1(ieros)-1(a.)]TJ 27.879 -13.549 Td[(I)-301(wraz)-301(te\\273)-301(pr)1(z)-1(ed)-301(p)1(leban)1(i\\246)-301(z)-1(a)-55(je\\273)-1(d)1(\\273)-1(a\\252a)-301(b)1(rycz)-1(k)56(a)-300(w)-301(s)-1(p)1(a\\261)-1(n)1(e)-302(k)56(asz)-1(tan)1(ki,)-300(z)-301(kt\\363rej)]TJ -27.879 -13.549 Td[(wysiada\\252)-333(t\\252ust)28(y)-334(i)-333(cz)-1(erw)28(on)28(y)-333(ksi\\241dz)-333(z)-334(\\212az)-1(n)1(o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-333(Sp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-333(s\\252)-1(u)1(c)27(h)1(a\\252)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-333(a)-333(to)-334(i)-333(d)1(obr)1(o)-28(dzieja)-333(z)-1(e)-334(S)1(\\252up)1(i)-334(j)1(e)-1(n)1(o)-333(c)-1(o)-333(patr)1(z)-1(e\\242)-1(.)]TJ 0 -13.55 Td[(P)28(om)28(y\\261)-1(l)1(a\\252a)-389(obzie)-1(r)1(a)-56(j)1(\\241c)-390(si\\246)-389(na)-388(pr\\363\\273no)-388(z)-1(a)-389(Jam)28(br)1(o\\273)-1(ym,)-388(\\273)-1(e)-389(wnet)-389(ru)1(s)-1(zy\\252a)-389(p)-27(o-)]TJ -27.879 -13.549 Td[(b)-27(ok)-346(k)28(o\\261c)-1(io\\252a,)-345(drog\\241)-346(b)1(arze)-1(j)-345(jes)-1(zc)-1(ze)-346(b\\252otn)1(\\241,)-346(b)-27(o)-346(obsadzon\\241)-346(r)1(z)-1(\\246dami)-346(wielgac)27(h)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(top)-27(oli,)-380(ale)-381(tak)-380(p)-27(otopi)1(on)28(yc)27(h)-380(w)-380(s)-1(zarud)1(z)-1(e,)-380(\\273)-1(e)-381(j)1(akb)28(y)-380(za)-381(sz)-1(yb)1(\\241)-381(zap)-27(o)-28(c)-1(on)1(\\241)-381(ma)-56(j)1(ac)-1(zy-)]TJ 358.232 -29.888 Td[(389)]TJ\nET\nendstream\nendobj\n1249 0 obj <<\n/Type /Page\n/Contents 1250 0 R\n/Resources 1248 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1248 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1253 0 obj <<\n/Length 8929      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(390)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(\\252y)-359(r)1(uc)27(h)1(a)-56(j)1(\\241c)-1(y)1(m)-1(i)-358(s)-1(i\\246)-359(cieniami;)-358(m)-1(in)1(\\246)-1(\\252a)-358(k)55(ar)1(c)-1(zm)-1(\\246)-359(i)-358(wz)-1(i\\246\\252a)-359(si\\246)-359(na)-359(p)1(ra)28(w)27(o)-358(roz)-1(t)1(aplan)1(\\241,)]TJ 0 -13.549 Td[(p)-27(oln\\241)-333(dr)1(\\363\\273)-1(k)56(\\241.)]TJ 27.879 -13.549 Td[(Mi)1(ark)28(o)28(w)27(a\\252a,)-326(i)1(\\273)-327(zd\\241\\273y)-326(j)1(e)-1(sz)-1(cz)-1(e)-326(o)-28(d)1(w)-1(i)1(e)-1(d)1(z)-1(i\\242)-326(o)-56(j)1(c)-1(a)-326(i)-325(z)-327(siostr\\241)-326(p)-27(ogw)27(ar)1(z)-1(y)84(,)-326(z)-326(kt\\363r\\241)]TJ -27.879 -13.549 Td[(si\\246)-334(ju)1(\\273)-334(b)28(y)1(\\252)-1(a)-333(ca\\252kie)-1(m)-333(p)-28(o)-55(jedn)1(a\\252a)-334(o)-27(d)-333(c)-1(zas)-1(u)-333(p)1(rze)-1(p)1(ro)28(w)27(ad)1(z)-1(k)1(i)-334(d)1(o)-333(B)-1(or)1(yn)28(y)84(.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ieli)-333(ws)-1(zysc)-1(y)-333(w)-333(c)27(ha\\252u)1(pie.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(to)-333(J\\363z)-1(k)56(a)-333(p)28(ytl)1(o)27(w)28(a\\252a)-334(w)28(cz)-1(ora)-55(j,)-333(\\273e)-334(o)-28(ciec)-334(s)-1(\\252ab)1(uj)1(\\241)-334({)-333(z)-1(acz)-1(\\246\\252a)-333(w)-1(st\\246pni)1(e)-1(.)]TJ 0 -13.549 Td[({)-318(I...)-318(b)28(y)-318(n)1(ie)-319(p)-27(omaga\\252,)-318(to)-318(s)-1(i\\246)-318(wyleguje)-318(p)-28(o)-27(d)-318(k)28(o\\273)-1(u)1(c)27(h)1(e)-1(m)-318(i)-318(s)-1(t\\246k)56(a,)-318(i)-318(c)27(h)1(orob\\241)-318(si\\246)]TJ -27.879 -13.549 Td[(wyma)27(wia)-333({)-333(o)-28(dp)1(ar\\252a)-333(c)27(hm)28(ur)1(nie)-333(W)83(eronk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Zi\\241b)-333(tu)-333(u)-333(ciebie,)-333(\\273)-1(e)-334(j)1(a\\273)-1(e)-333(p)-28(o)-333(\\252ystac)27(h)-333(li)1(\\273)-1(e.)]TJ 0 -13.549 Td[(Wzdr)1(ygn\\246\\252a)-234(si\\246)-1(,)-233(b)-27(o)-234(j)1(ak)28(o\\273)-234(c)27(h)1(a\\252)-1(u)1(pa)-233(pr)1(z)-1(ec)-1(iek)56(a\\252a)-234(ki)1(e)-1(j)-233(p)1(rz)-1(etak)-233(i)-234(mazis)-1(t)1(e)-234(b\\252o)-28(c)27(k)28(o)]TJ -27.879 -13.549 Td[(p)-27(okryw)28(a\\252o)-333(p)-28(o)-28(d)1(\\252og\\246)-1(.)]TJ 27.879 -13.55 Td[({)-353(A)-353(b)-28(o)-353(to)-353(j)1(e)-1(st)-353(c)-1(zym)-353(pali)1(\\242)-1(!)-353(K)1(t\\363\\273)-354(to)-353(p)1(rz)-1(y)1(nies)-1(i)1(e)-354(susz)-1(u)1(?)-354(M)1(am)-354(to)-353(si\\252y)-353(bi)1(e)-1(\\273y\\242)]TJ -27.879 -13.549 Td[(do)-315(lasu)-316(t)28(yl)1(i)-316(\\261w)-1(i)1(at)-316(i)-315(dygo)28(w)28(a\\242)-316(na)-316(p)1(lec)-1(ac)27(h)1(,)-316(k)1(ie)-1(j)-315(t)28(yle)-316(i)1(nsz)-1(ej)-316(r)1(ob)-28(ot)28(y)84(,)-316(\\273e)-316(nie)-316(wiad)1(a,)-316(za)]TJ 0 -13.549 Td[(co)-334(p)1(ie)-1(r)1(w)27(ej)-333(r\\246c)-1(e)-333(z)-1(acz)-1(epi\\242!)-333(Urad)1(z)-1(\\246)-334(t)1(o)-334(sam)-1(a)-333(ws)-1(zystkiem)27(u)1(!)]TJ 27.879 -13.549 Td[(W)84(e)-1(stc)27(h)1(n\\246\\252)-1(y)-333(ob)1(ie)-334(n)1(a)-334(sw)27(o)-55(je)-334(siero)-28(ct)28(w)27(o)-333(i)-333(opu)1(s)-1(zc)-1(zenie.)]TJ 0 -13.549 Td[({)-456(Ki)1(e)-1(j)-455(Stac)28(ho)-456(b)28(y)1(\\252)-1(,)-455(to)-456(si\\246)-456(z)-1(d)1(a\\252)-1(o,)-455(\\273)-1(e)-456(ni)1(c)-457(w)-456(c)28(ha\\252up)1(ie)-456(nie)-456(stoi,)-456(a)-456(sk)28(oro)-456(go)]TJ -27.879 -13.55 Td[(br)1(ak\\252o,)-333(to)-333(w)-1(i)1(dno)-333(dop)1(iero,)-333(c)-1(o)-333(c)27(h)1(\\252op)-333(z)-1(n)1(ac)-1(zy)84(.)-334(Ni)1(e)-334(jedzies)-1(z)-334(d)1(o)-334(miasta?)]TJ 27.879 -13.549 Td[({)-266(Ju\\261ci,)-266(\\273e)-267(c)27(h)1(c)-1(i)1(a\\252)-1(ab)29(ym)-267(n)1(a)-56(j)1(pr)1(\\246)-1(d)1(z)-1(ej,)-266(ale)-266(Ro)-28(c)27(h)1(o)-266(s)-1(i\\246)-266(do)28(wiedzia\\252,)-266(co)-267(d)1(opi)1(e)-1(ro)-266(w)28(e)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(ta)-380(b)-28(\\246d\\241)-381(d)1(o)-381(n)1(ic)27(h)-380(pu)1(s)-1(zc)-1(zali,)-380(to)-381(w)-381(n)1(iedzie)-1(l)1(\\246)-382(si\\246)-381(zbier\\246)-381(i)-380(p)-28(o)28(wie)-1(z\\246)-381(c)27(h)28(u)1(dziak)28(o)28(wi)]TJ 0 -13.549 Td[(ni)1(e)-1(co\\261)-334(\\261w)-1(i)1(\\246)-1(conego.)]TJ 27.879 -13.549 Td[({)-333(P)28(oni)1(e)-1(s\\252ab)28(ym)-334(i)-333(j)1(a)-334(mo)-56(j)1(e)-1(m)28(u)-333(ni)1(e)-1(j)1(e)-1(d)1(no,)-333(ale)-334(c\\363\\273)-334(mog\\246)-1(?)-333(t\\246)-334(skibk)28(\\246)-333(c)27(hl)1(e)-1(b)1(a?)]TJ 0 -13.55 Td[({)-289(Nie)-290(fr)1(as)-1(u)1(j)-290(si\\246,)-289(narz\\241dz\\246)-290(wi\\246)-1(cej,)-289(b)28(y)-289(la)-290(ob)1(u)-289(s)-1(tar)1(c)-1(zy\\252o,)-289(i)-290(r)1(az)-1(em)-290(p)-27(o)27(wiez)-1(i)1(e)-1(m)28(y)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(ci)-334(zap\\252a\\242)-333(z)-1(a)-333(dob)1(ro\\261)-1(\\242,)-333(w)-334(p)-27(or\\246)-333(to)-334(c)28(ho)-28(\\242b)28(y)-333(o)-28(d)1(robk)1(ie)-1(m)-333(o)-28(dp)1(\\252ac)-1(\\246.)]TJ 0 -13.549 Td[({)-364(Ze)-364(s)-1(zcz)-1(ereg)-1(o)-363(s)-1(erca)-364(da)28(w)28(am)-1(.)-363(Nie)-364(z)-1(a)-364(o)-27(drob)-27(ek.)-364(Ku)1(ma\\252)-1(am)-364(ci)-364(si\\246)-364(niezgorz)-1(ej)]TJ -27.879 -13.549 Td[(z)-334(b)1(ie)-1(d)1(\\241)-333(i)-334(wiem,)-333(jak)-333(ta)-333(s)-1(u)1(k)55(a)-333(gry)1(z)-1(ie,)-333(pami\\246tam)-1(.)1(..)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(\\273a\\252)-1(o\\261ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-476(Cz)-1(\\252o)28(wiek)-476(c)-1(a\\252e)-476(\\273yc)-1(i)1(e)-477(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(o)-476(z)-477(n)1(i\\241)-476(tr)1(z)-1(yma,)-476(\\273e)-477(c)28(h)28(yb)1(a)-476(do)-476(gr)1(obu)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ed)-274(ni)1(\\241)-275(u)1(c)-1(iecz)-1(e.)-274(Mia\\252am)-275(n)1(iec)-1(o\\261)-275(zapasnego)-275(gr)1(os)-1(za;)-274(m)27(y\\261la\\252am:)-274(na)-274(z)-1(wies)-1(n)1(\\246)-275(ku)1(pi\\246)]TJ 0 -13.549 Td[(jak)1(ie)-1(go)-312(p)1(rosiak)55(a,)-312(p)-27(o)-28(d)1(k)56(armi\\246)-313(i)-312(n)1(a)-313(k)28(op)1(ania)-312(p)1(rz)-1(y)1(ros\\252)-1(ob)29(y)-312(kilk)56(a)-312(z)-1(\\252ot)28(yc)28(h.)-312(S)1(tac)27(ho)28(wim)]TJ 0 -13.549 Td[(da\\242)-449(m)27(usia\\252a)-449(kilk)56(ana\\261cie)-450(z)-1(\\252ot)28(yc)28(h,)-449(tu)-449(grosz)-1(,)-449(tam)-449(dw)28(a,)-450(i)-449(kiej)-449(ta)-449(w)27(o)-28(d)1(a)-450(wyciek\\252o)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o,)-302(a)-303(no)28(w)28(e)-1(go)-302(s)-1(i)1(\\246)-303(nie)-303(z\\252o\\273)-1(y)84(.)-302(T)27(y)1(le)-1(\\261m)27(y)-302(si\\246)-303(dor)1(obil)1(i,)-302(\\273)-1(e)-303(z)-303(gr)1(om)-1(ad)1(\\241)-303(tr)1(z)-1(yma\\252!..)1(.)]TJ 27.879 -13.549 Td[({)-320(Nie)-320(p)-28(o)28(wiad)1(a)-56(j)-320(b)-27(ele)-321(cz)-1(ego,)-320(p)-27(o)-320(dob)1(re)-1(j)-319(w)27(ol)1(i)-320(p)-28(osze)-1(d)1(\\252)-321(z)-320(dr)1(ugiem)-1(i)-319(s)-1(w)28(o)-56(j)1(e)-1(go)-320(si\\246)]TJ -27.879 -13.55 Td[(dob)1(ij)1(a\\242)-1(,)-333(i)-333(wy)-333(tam)-334(jak)56(\\241)-333(m)-1(or)1(g\\246)-334(lasu)-333(mie)-1(\\242)-333(b)-28(\\246dzie)-1(cie...)]TJ 27.879 -13.549 Td[({)-255(B\\246)-1(d)1(z)-1(ie!..)1(.)-255(ni)1(m)-256(s\\252o\\253ce)-256(wzjedzie)-1(,)-254(o)-28(c)-1(zy)-255(r)1(os)-1(a)-255(wyj)1(e)-1(:)-255(k)1(t\\363ren)-255(p)1(ie)-1(n)1(i\\241dz)-255(ma,)-255(tem)27(u)]TJ -27.879 -13.549 Td[(du)1(da)-333(gra,)-333(a)-333(t)28(y)83(,)-333(b)1(ie)-1(d)1(aku,)-333(h)1(and)1(luj)-333(g\\252o)-27(dem)-334(i)-333(c)-1(iesz)-334(s)-1(i)1(\\246)-1(,)-333(\\273e)-334(je\\261)-1(\\242)-333(kiedy\\261)-334(b)-27(\\246dzie)-1(sz!...)]TJ 27.879 -13.549 Td[({)-333(B)-1(r)1(akni)1(e)-334(c)-1(i)-333(to)-333(cz)-1(ego?)-334({)-333(s)-1(p)28(y)1(ta\\252a)-334(n)1(ie\\261)-1(mia\\252o.)]TJ 0 -13.549 Td[({)-400(A)-400(c)-1(\\363\\273)-400(to)-400(m)-1(am?)-400(T)27(yl)1(e)-401(co)-400(\\273)-1(yd)-399(alb)-28(o)-400(m\\252yn)1(arz)-401(n)1(a)-400(b)-28(or)1(g)-401(d)1(adz\\241!)-400({)-400(z)-1(a)28(w)28(o\\252a\\252)-1(a)]TJ -27.879 -13.549 Td[(rozw)27(o)-27(dz\\241c)-334(r\\246c)-1(e)-333(z)-334(rozpacz)-1(\\241.)]TJ 27.879 -13.55 Td[({)-415(Nie)-415(p)-28(or)1(e)-1(d)1(z)-1(\\246)-415(c)-1(i)1(,)-415(\\273)-1(eb)28(ym)-415(i)-415(z)-415(du)1(s)-1(zy)-415(c)27(h)1(c)-1(ia\\252a:)-414(nie)-415(na)-415(sw)27(oi)1(m)-416(j)1(e)-1(ste)-1(m)-415(i)-415(sam)-1(a)]TJ -27.879 -13.549 Td[(ogani)1(a\\242)-354(s)-1(i\\246)-354(m)28(usz)-1(\\246)-354(k)1(ie)-1(j)-353(o)-28(d)-353(p)1(s)-1(\\363)28(w)-354(i)-353(pi)1(lno)28(w)28(a\\242)-1(,)-353(b)28(y)-353(m)-1(n)1(ie)-354(ni)1(e)-354(w)-1(y)1(c)-1(iepn)1(\\246)-1(l)1(i)-354(z)-354(c)28(ha\\252up)29(y)83(..)1(.)]TJ 0 -13.549 Td[(\\273e)-334(ju)1(\\273)-334(ni)1(e)-1(raz)-333(i)-333(roz)-1(u)1(m)-334(o)-28(d)1(c)27(h)1(o)-28(dzi)-333(z)-334(tur)1(bacji!)]TJ 27.879 -13.549 Td[(Wsp)-28(omn)1(ia\\252a)-334(si\\246)-334(j)1(e)-1(j)-333(n)1(o)-28(c)-334(d)1(z)-1(isiejsz)-1(a.)]TJ 0 -13.549 Td[({)-289(Za)-289(to)-289(Jagu)1(s)-1(i\\246)-289(o)-289(nic)-289(g\\252o)28(w)27(a)-289(n)1(ie)-290(zab)-27(oli:)-289(n)1(ie)-290(t)1(ak)55(a)-289(g\\252u)1(pia,)-288(u\\273yw)27(a)-289(se)-290(d)1(o)-289(w)27(ol)1(i...)]TJ 0 -13.55 Td[({)-333(Jak\\273e)-1(?)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(os)-1(\\252a)-333(s)-1(i\\246)-333(nies)-1(p)-27(ok)28(o)-56(j)1(n)28(ymi)-333(o)-28(cz)-1(yma)-333(ogarn)1(ia)-56(j)1(\\241c)-334(s)-1(i)1(os)-1(tr)1(\\246)-1(.)]TJ\nET\nendstream\nendobj\n1252 0 obj <<\n/Type /Page\n/Contents 1253 0 R\n/Resources 1251 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1238 0 R\n>> endobj\n1251 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1256 0 obj <<\n/Length 8868      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(391)]TJ -330.353 -35.866 Td[({)-434(Nic)-435(wielkiego,)-434(jeno)-434(to,)-434(\\273)-1(e)-434(s)-1(i\\246)-434(na\\273yje)-435(d)1(obr)1(e)-1(go)-434(p)-27(o)-435(gr)1(dyk)28(\\246;)-434(s)-1(tr)1(oi)-434(s)-1(i\\246,)-434(p)-28(o)]TJ -27.879 -13.549 Td[(ku)1(m)-1(ac)28(h)-417(space)-1(r)1(uj)1(e)-418(i)-416(\\261)-1(wi\\246to)-417(se)-418(r)1(obi)-416(c)-1(o)-417(d)1(nia.)-416(Wcz)-1(ora)-55(j)-417(n)1(a)-417(ten)-417(p)1(rzyk\\252ad)-416(w)-1(i)1(dzie)-1(l)1(i)]TJ 0 -13.549 Td[(j\\241)-473(z)-474(w)28(\\363)-56(j)1(te)-1(m)-473(w)-474(k)56(arczm)-1(ie,)-473(w)-474(al)1(kierz)-1(u)-472(s)-1(iedzieli,)-473(a)-473(\\233yd)-473(ledwie)-474(n)1(ad\\241\\273y\\252)-473(don)1(o)-1(si\\242)]TJ 0 -13.549 Td[(p)-27(\\363\\252kw)27(aterki)1(...)-249(Nie)-250(tak)56(a)-250(g\\252u)1(pia,)-249(b)28(yc)28(h)-249(s)-1(tarego)-250(\\273a\\252o)28(w)27(a\\252a..)1(.)-250({)-249(dorzuci\\252a)-250(p)1(rze)-1(k)56(\\241\\261liwie.)]TJ 27.879 -13.549 Td[({)-286(Wsz)-1(y)1(s)-1(tk)28(o)-286(sw)27(\\363)-55(j)-286(k)28(on)1(ie)-1(c)-286(ma!)-286({)-286(s)-1(ze)-1(p)1(n\\246\\252a)-286(p)-28(on)29(uro)-286(Han)1(k)56(a)-286(nac)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-287(zapask)28(\\246)]TJ -27.879 -13.55 Td[(na)-333(g\\252o)28(w)27(\\246.)]TJ 27.879 -13.549 Td[({)-333(Ale)-334(co)-334(si\\246)-334(n)1(au\\273yw)27(a,)-333(tego)-333(jej)-333(nik)1(to)-334(n)1(ie)-334(o)-27(dbi)1(e)-1(rze,)-334(m\\241d)1(ra)-333(juc)28(ha..)1(.)]TJ 0 -13.549 Td[({)-357(\\212ac)-1(n)1(o)-357(o)-358(r)1(oz)-1(u)1(m)-358(tem)27(u)1(,)-357(kt\\363ren)-357(si\\246)-358(n)1(a)-357(nic)-357(nie)-357(ogl\\241da!)-357(Hal)1(e)-1(,)-357(wieprzk)56(a)-357(dzi-)]TJ -27.879 -13.549 Td[(sia)-56(j)-422(s)-1(zlac)28(h)28(tuj)1(e)-1(m)28(y)83(,)-422(z)-1(a)-55(jr)1(z)-1(yj)-422(na)-422(o)-28(dwiecz)-1(erz)-1(u)1(,)-423(p)-27(omo\\273)-1(es)-1(z...)-422({)-423(p)1(rz)-1(erw)28(a\\252a)-423(te)-423(gorzkie)]TJ 0 -13.549 Td[(wyw)28(o)-28(dy)-333(Hank)56(a)-333(i)-333(wys)-1(z\\252a.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252a)-306(do)-305(o)-56(j)1(c)-1(a)-305(na)-305(dr)1(ug\\241)-305(s)-1(tr)1(on\\246,)-306(d)1(o)-306(d)1(a)28(w)-1(n)1(e)-1(j)-305(sw)27(o)-55(jej)-305(izb)28(y)83(,)-305(stary)-305(ledwie)-306(b)28(y)1(\\252)]TJ -27.879 -13.55 Td[(widn)29(y)-333(w)-334(bar)1(\\252ogu,)-333(jeno)-333(p)-27(os)-1(t\\246kiw)28(a\\252)-334(z)-333(c)-1(ic)28(ha.)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c,)-333(c)-1(o)-333(to)-333(w)27(ama)-334(j)1(e)-1(st?)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(kucn\\246\\252a)-334(p)1(rzy)-334(n)1(im.)]TJ 0 -13.549 Td[({)-316(Nic,)-316(c)-1(\\363r)1(uc)27(h)1(no,)-316(n)1(ic)-1(,)-315(t)27(y)1(le)-317(\\273e)-317(me)-317(f)1(ryb)1(ra)-316(trz\\246)-1(sie)-316(i)-316(w)-317(d)1(o\\252)-1(k)1(u)-316(okr)1(utn)1(ie)-317(\\261c)-1(isk)56(a...)]TJ 0 -13.549 Td[({)-257(A)-256(b)-27(o)-257(tu)-256(z)-1(i)1(\\241b)-257(i)-256(wilgo)-28(\\242)-257(k)1(ie)-1(j)-256(n)1(a)-257(d)1(w)27(orze.)-257(Wsta\\253cie)-257(i)-256(pr)1(z)-1(yj)1(d\\271c)-1(i)1(e)-258(d)1(o)-257(n)1(as)-1(,)-256(dziec)-1(i)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(piln)29(ujecie)-1(,)-333(b)-27(o)-333(w)-1(i)1(e)-1(p)1(rz)-1(k)56(a)-333(bi)1(jem)27(y)84(.)-334(J)1(e)-1(\\261\\242)-334(s)-1(i)1(\\246)-334(w)27(ama)-333(nie)-333(c)27(hce)-1(?)]TJ 27.879 -13.549 Td[({)-224(Je)-1(\\261\\242!...)-224(j)1(u\\261c)-1(i)-224(\\271dzie)-1(b)1(k)28(o...)-224(b)-27(o)-224(to)-224(z)-1(ap)-27(omnia\\252y)-224(mi)-224(w)27(cz)-1(or)1(a)-56(j)-224(d)1(a\\242)-1(.)1(..)-224(jak\\273e...)-224(i)-224(sam)-1(i)]TJ -27.879 -13.549 Td[(jeno)-373(z)-1(i)1(e)-1(mniak)1(i)-374(ze)-374(s)-1(ol\\241.)1(..)-374(a)-373(to)-374(S)1(tac)27(h)1(o)-374(w)-374(kr)1(ym)-1(i)1(nale...)-373(Pr)1(z)-1(yj)1(d\\246,)-374(Han)29(u\\261,)-374(p)1(rzyjd)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(p)-28(o)-55(j\\246kiw)28(a\\252)-334(r)1(ado\\261nie)-334(gr)1(am)-1(ol)1(\\241c)-334(s)-1(i)1(\\246)-334(z)-334(b)1(ar\\252ogu.)]TJ 27.879 -13.549 Td[(Hank)56(a)-358(z)-1(a\\261,)-358(p)-27(e)-1(\\252n)1(a)-359(m)28(y\\261)-1(l)1(e)-1(\\253)-358(o)-358(Jagn)1(ie)-1(,)-358(k)1(t\\363re)-359(j)1(\\241)-358(b)-28(o)-28(d)1(\\252y)-358(kiej)-358(te)-359(n)1(o\\273)-1(e)-358(os)-1(tr)1(e)-1(,)-358(p)-27(o-)]TJ -27.879 -13.55 Td[(lec)-1(i)1(a\\252)-1(a)-333(\\261pies)-1(zni)1(e)-334(do)-333(k)56(arcz)-1(m)28(y)-334(czyni\\242)-333(z)-1(aku)1(p)28(y)84(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-263(\\273e)-263(ju)1(\\273)-264(t)1(e)-1(raz)-263(\\233yd)-262(ni)1(e)-264(\\273\\241da\\252)-262(z)-264(g\\363r)1(y)-263(p)1(ie)-1(n)1(i\\246dzy)83(,)-262(a)-263(jeno)-262(s)-1(kw)28(apl)1(iwie)-263(o)-28(dw)28(a-)]TJ -27.879 -13.549 Td[(\\273a\\252)-340(i)-338(o)-28(dmierza)-1(\\252,)-338(c)-1(ze)-1(go)-339(ze)-1(c)28(hcia\\252a,)-339(jes)-1(zc)-1(zec)27(h)-339(p)-27(o)-28(d)1(s)-1(u)28(w)28(a)-56(j)1(\\241c)-340(p)-27(o)-28(d)-338(o)-28(c)-1(zy)-339(coraz)-340(t)1(o)-339(no)28(w)27(e)]TJ 0 -13.549 Td[(la)-333(z)-1(ac)28(h\\246t)28(y)83(.)]TJ 27.879 -13.549 Td[({)-355(Niec)27(h)-354(Jan)1(kiel)-355(da)-55(je,)-355(co)-355(m\\363)27(wi\\246!..)1(.)-355(n)1(ie)-355(dzie)-1(c)28(k)28(om)-1(,)-354(w)-1(i)1(e)-1(m)-355(p)-27(o)-355(co)-355(pr)1(z)-1(ysz)-1(\\252am)-355(i)]TJ -27.879 -13.55 Td[(cz)-1(ego)-334(mi)-333(p)-27(o)-1(t)1(rz)-1(a!)-333({)-333(zgromi\\252a)-334(go)-333(wyni)1(o\\261)-1(le,)-333(nie)-333(w)-1(d)1(a)-56(j)1(\\241c)-334(si\\246)-334(w)-334(r)1(oz)-1(mo)28(w)27(\\246.)]TJ 27.879 -13.549 Td[(\\233yd)-393(s)-1(i\\246)-394(j)1(e)-1(no)-393(u\\261m)-1(iec)27(h)1(a\\252,)-394(b)-27(o)-394(i)-394(tak)-394(n)1(abr)1(a\\252a)-394(z)-1(a)-394(k)1(ilk)56(ana\\261c)-1(ie)-394(z\\252ot)27(y)1(c)27(h,)-393(jak)28(o)-394(\\273e)]TJ -27.879 -13.549 Td[(gorza\\252ki)-357(wz)-1(i)1(\\246)-1(\\252a)-357(wi\\246)-1(ce)-1(j)1(,)-357(ab)28(y)-357(j)1(u\\273)-358(i)-357(n)1(a)-357(\\261)-1(wi\\246ta)-357(s)-1(tar)1(c)-1(zy\\252o,)-357(a)-357(przy)-357(t)28(ym)-357(c)27(hl)1(e)-1(b)1(a)-358(p)29(ytlo-)]TJ 0 -13.549 Td[(w)28(e)-1(go,)-333(par\\246)-334(r)1(z)-1(\\241d)1(k)28(\\363)27(w)-334(b)1(u\\252ek,)-334(\\261ledzi)-334(co\\261)-334(z)-334(m)-1(end)1(e)-1(l,)-333(a)-334(n)1(a)28(w)27(et)-334(w)-334(k)28(o\\253)1(c)-1(u)-333(dob)1(ra\\252a)-334(ma\\252\\241)]TJ 0 -13.549 Td[(bu)1(tele)-1(cz)-1(k)28(\\246)-333(araku)1(,)-334(\\273e)-334(ledwie)-333(m)-1(og\\252a)-333(ud)1(\\271)-1(wign)1(\\241\\242)-334(tob)-27(\\363\\252.)]TJ 27.879 -13.55 Td[({)-333(Jagna)-333(mo\\273)-1(e)-334(u)1(\\273)-1(yw)28(a\\242,)-334(a)-333(j)1(a)-334(to)-333(pi)1(e)-1(s?)-334(h)1(aruj)1(\\246)-334(p)1(rz)-1(ec)-1(i)1(e)-1(k)-333(ki)1(e)-1(j)-333(w)28(\\363\\252!)]TJ 0 -13.549 Td[(My)1(\\261)-1(la\\252a)-326(tak)-327(wraca)-56(j)1(\\241c)-327(do)-327(d)1(om)27(u)1(,)-327(ale)-327(\\273al)-327(si\\246)-327(jej)-326(z)-1(r)1(obi\\252o)-326(w)-1(yd)1(atku)-326(zb)-28(\\246dn)1(e)-1(go,)]TJ -27.879 -13.549 Td[(i\\273)-334(gd)1(yb)28(y)-333(n)1(ie)-334(ws)-1(t)28(yd)1(,)-333(b)28(y\\252ab)28(y)-333(ar)1(ak)-334(o)-27(dn)1(ie)-1(s\\252a)-334(\\233yd)1(o)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[(W)-262(c)28(ha\\252up)1(ie)-262(ju\\273)-262(z)-1(asta\\252a)-262(ni)1(e)-1(ma\\252y)-262(rw)28(e)-1(tes)-262(przygoto)28(w)27(a\\253)1(.)-262(Jam)28(bro\\273y)-262(n)1(agrz)-1(ew)28(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-494(pr)1(z)-1(ed)-493(k)28(om)-1(i)1(nem)-494(wio)-28(d)1(\\241c)-494(s)-1(w)28(oim)-494(zwyc)-1(za)-56(j)1(e)-1(m)-493(prze)-1(k)1(pin)1(ki)-493(z)-494(Jagu)1(s)-1(t)28(yn)1(k)55(\\241,)-493(t\\246go)]TJ 0 -13.549 Td[(za)-56(j\\246t\\241)-333(wyparzani)1(e)-1(m)-333(s)-1(tatk)28(\\363)28(w,)-333(a\\273)-334(par)1(a)-334(zap)-27(e)-1(\\252ni)1(\\252a)-334(ca\\252\\241)-334(i)1(z)-1(b)-27(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(zek)55(a\\252em)-334(n)1(a)-334(w)28(as)-1(,)-333(b)28(y)1(c)27(h)-333(pr)1(z)-1(edzw)27(on)1(i\\242)-334(p)1(a\\252\\241)-334(p)-27(o)-333(\\252)-1(b)1(ie)-334(\\261win)28(tu)1(c)27(ho)28(wi!)]TJ 0 -13.549 Td[({)-333(\\233e)-1(\\261c)-1(ie)-333(to)-334(p)-27(o\\261pies)-1(zyli)-333(tak)-333(r)1(yc)27(h)1(\\252)-1(o!)]TJ 0 -13.549 Td[({)-382(R)-1(o)-27(c)27(ho)-382(me)-383(z)-1(ast\\246pu)1(je)-383(w)-383(zakr)1(ys)-1(ti)1(i,)-382(W)83(alek)-382(ksi\\246)-1(\\273y)-382(z)-1(ak)56(ali)1(kuj)1(e)-383(organ)1(i\\261)-1(cie,)-383(a)]TJ -27.879 -13.549 Td[(Magd)1(a)-375(k)28(o\\261ci\\363\\252)-375(p)-27(o)-28(d)1(m)-1(i)1(e)-1(cie)-1(.)-374(Nar)1(yc)27(h)28(t)1(o)27(w)28(a\\252e)-1(m)-374(ws)-1(zys)-1(tk)28(o,)-374(b)29(y)-374(ino)-374(w)28(am)-1(a)-374(z)-1(a)28(w)28(o)-28(du)-373(nie)]TJ 0 -13.549 Td[(zrobi)1(\\242)-1(!)-247(Ks)-1(i)1(\\246)-1(\\273a)-248(d)1(opiero)-247(p)-28(o)-247(\\261)-1(n)1(iadan)1(iu)-247(w)27(ez)-1(m\\241)-248(si\\246)-248(d)1(o)-248(sp)-28(o)28(wiedzi.)-248(Al)1(e)-248(te)-1(\\273)-248(zi\\241b)-247(dzisia)-56(j)1(,)]TJ 0 -13.55 Td[(ja\\273e)-334(k)28(o\\261c)-1(i)-333(tr)1(uc)27(h)1(lej\\241!)-333({)-333(w)-1(y)1(krzykn)1(\\241\\252)-334(\\273a\\252o)-1(\\261ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Z\\246)-1(b)28(y)-333(w)-333(ogniu)-333(susz)-1(\\241)-333(i)-333(na)-333(zi\\241b)-333(nar)1(z)-1(ek)56(a)-56(j)1(\\241!)-334({)-333(zdziwi\\252a)-334(si\\246)-334(J\\363zk)56(a.)]TJ\nET\nendstream\nendobj\n1255 0 obj <<\n/Type /Page\n/Contents 1256 0 R\n/Resources 1254 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1254 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1260 0 obj <<\n/Length 9491      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(392)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(G\\252up)1(ia,)-333(na)-333(wn\\241tr)1(z)-1(u)-333(zimno,)-333(ja\\273e)-334(mi)-333(te)-1(n)-333(d)1(rewnian)28(y)-333(k)1(ulas)-334(stergn\\241\\252.)]TJ 0 -13.549 Td[({)-333(Zaraz)-334(n)1(as)-1(zyku)1(j\\246)-334(w)28(am)-1(a)-333(rozgrzywk)28(\\246)-1(,)-333(J\\363zia,)-333(namo)-28(cz)-334(d)1(uc)27(h)1(e)-1(m)-333(\\261)-1(ledzie.)]TJ 0 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie,)-333(jak)1(ie)-334(s\\241,)-334(j)1(e)-1(n)1(o)-333(s)-1(p)-27(oro)-333(gorza\\252)-1(k)56(\\241)-333(z)-1(al)1(a\\242)-1(,)-333(to)-333(galan)28(to)-333(s\\363l)-334(wyci\\241)-28(gn)1(ie.)]TJ 0 -13.549 Td[({)-300(A)-299(w)-1(y)-299(za)27(wd)1(y)-300(p)-27(o)-300(sw)27(o)-55(jem)27(u,)-299(b)28(yc)28(h)-300(o)-299(p)-28(\\363\\252n)1(o)-28(c)27(k)1(u)-300(w)-300(k)1(ie)-1(l)1(is)-1(zki)-299(z)-1(ad)1(z)-1(w)28(onil)1(i,)-300(wsta-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(cie)-334(r)1(adzi)-334(n)1(a)-333(pij)1(at)27(y)1(k)28(\\246)-334({)-333(z)-1(au)28(w)28(a\\273)-1(y)1(\\252a)-334(z\\252o\\261)-1(li)1(w)-1(i)1(e)-334(Jagust)28(ynk)56(a.)]TJ 27.879 -13.55 Td[({)-351(Pra)28(wda)-351(w)27(asza,)-352(b)1(ab)-28(ciu)1(,)-352(al)1(e)-352(widzi)-351(m)-1(i)-351(si\\246)-1(,)-351(\\273e)-352(w)27(ama)-351(c)-1(osik)-351(oz)-1(\\363r)-351(skie\\252c)-1(za\\252)-352(i)]TJ -27.879 -13.549 Td[(rad)1(z)-1(i)-333(b)28(y)1(\\261)-1(cie)-334(go)-333(te\\273)-334(w)-334(gorza\\252c)-1(e)-333(p)-28(omo)-28(cz)-1(y)1(\\242)-1(,)-333(co?)-334({)-333(\\261)-1(mia\\252)-333(s)-1(i\\246)-333(z)-1(acie)-1(r)1(a)-56(j)1(\\241c)-334(r\\246c)-1(e.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-1(c)27(h)-332(b)28(y\\261)-334(me)-1(,)-333(stary)-333(zbu)1(ku,)-333(n)1(ie)-334(pr)1(z)-1(epi)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-252(Lu)1(dzi)-251(c)-1(o\\261)-252(ma\\252o)-252(ci\\241)-28(gn)1(ie)-252(do)-251(k)28(o\\261)-1(cio\\252a)-252({)-251(pr)1(z)-1(erw)28(a\\252)-1(a)-251(im)-252(Han)1(k)55(a,)-251(wielc)-1(e)-252(n)1(ierada)]TJ -27.879 -13.549 Td[(t)28(ym)-334(p)1(rzym\\363)27(wk)28(om)-334(d)1(o)-333(gorz)-1(a\\252k)1(i.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(w)28(c)-1(zas)-1(,)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(i\\246)-333(z)-1(lec)-1(\\241,)-333(w)-333(dyr)1(dy)-333(bi)1(e)-1(\\273y\\242)-334(b)-27(\\246)-1(d)1(\\241)-333(w)-1(y)1(trz)-1(\\241c)28(ha\\242)-334(gr)1(z)-1(ec)27(h)28(y)84(.)]TJ 0 -13.55 Td[({)-333(I)-334(p)-27(oleni\\242)-333(s)-1(i\\246,)-333(c)-1(o)-333(no)28(w)28(e)-1(go)-333(p)-27(os)-1(\\252ysz)-1(e\\242)-334(i)-333(\\261w)-1(i)1(e)-1(\\273yc)27(h)-333(gr)1(z)-1(ec)27(h)1(\\363)27(w)-333(nab)1(ra\\242)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Od)-333(w)28(c)-1(zora)-56(j)-332(ju\\273)-333(s)-1(i\\246)-333(dzie)-1(wu)1(c)27(h)28(y)-333(sz)-1(yk)28(o)28(w)28(a\\252y)-334({)-333(p)1(is)-1(n)1(\\246)-1(\\252a)-333(s)-1(k)56(\\241d)1(c)-1(i\\261)-333(J\\363z)-1(ia.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(b)-27(o)-333(im)-334(p)1(rze)-1(d)-333(sw)27(oi)1(m)-334(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(m)-334(wst)28(yd)-333({)-333(dogady)1(w)27(a\\252a)-333(s)-1(tar)1(a.)]TJ 0 -13.549 Td[({)-414(Bab)-28(ciu)1(,)-414(w)27(am)-414(b)28(y\\252b)28(y)-413(ju)1(\\273)-415(cz)-1(as)-414(s)-1(i\\241\\261\\242)-414(na)-414(p)-27(okut\\246)-414(w)-414(kru)1(c)27(hcie)-414(i)-414(te)-415(p)1(ac)-1(i)1(orki)]TJ -27.879 -13.549 Td[(pr)1(z)-1(\\241\\261\\242)-1(,)-333(a)-333(ni)1(e)-334(ogadyw)28(a\\242)-334(d)1(rugi)1(c)27(h!)]TJ 27.879 -13.55 Td[({)-333(P)28(o)-28(cz)-1(ek)56(am)-1(,)-333(b)28(y)1(\\261)-334(s)-1(i)1(ad\\252)-333(w)-1(p)-27(o)-28(d)1(le)-1(,)-333(ku)1(ternogo!)]TJ 0 -13.549 Td[({)-333(Mam)-334(cz)-1(as,)-333(pi)1(e)-1(rw)28(ej)-333(w)27(a)-55(ju)-333(p)1(i\\246)-1(k)1(nie)-334(p)1(rze)-1(d)1(z)-1(w)28(oni)1(\\246)-334(i)-333(\\252opat\\241)-333(oklepi\\246...)]TJ 0 -13.549 Td[({)-333(Nie)-334(t)28(yk)56(a)-56(j)1(c)-1(i)1(e)-334(me)-1(,)-333(b)-27(om)-334(z)-1(\\252a!)-333({)-333(w)27(ar)1(kn\\246\\252a)-333(c)-1(ic)28(ho.)]TJ 0 -13.549 Td[({)-359(Ki)1(jas)-1(zkiem)-359(s)-1(i)1(\\246)-360(zas)-1(ta)28(wi\\246)-359(i)-359(ni)1(e)-360(u)1(gryziec)-1(ie,)-359(a)-359(z\\241bk)28(\\363)28(w)-359(s)-1(zk)28(o)-28(d)1(a,)-359(ile)-359(\\273)-1(e)-359(ostat-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(..)1(.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-444(c)-1(isn\\246\\252a)-445(s)-1(i)1(\\246)-446(ze)-445(z)-1(\\252o\\261c)-1(i\\241,)-444(ale)-445(nie)-445(o)-28(d)1(rze)-1(k\\252a,)-444(b)-28(o)-445(i)-444(w)-1(\\252a\\261ni)1(e)-446(Han)1(k)55(a)]TJ -27.879 -13.549 Td[(nal)1(e)-1(w)28(a\\252a)-271(kielisz)-1(ek)-271(p)1(rze)-1(p)1(ija)-55(j\\241c)-271(d)1(o)-271(ni)1(c)27(h,)-270(a)-271(J\\363zk)55(a)-270(p)-28(o)-27(da\\252a)-271(\\261ledzia,)-271(kt)1(\\363re)-1(go)-270(otrz\\241s)-1(k)56(a\\252)]TJ 0 -13.549 Td[(o)-333(drewno)-333(nogi)1(,)-334(ze)-334(sk)28(\\363ry)-333(ob\\252u)1(pi\\252,)-333(n)1(a)-334(w)28(\\241)-28(glik)56(ac)28(h)-333(przyp)1(ie)-1(k)1(\\252)-334(i)-333(ze)-334(s)-1(makiem)-334(zjad)1(\\252.)]TJ 27.879 -13.549 Td[({)-469(Dos)-1(y)1(\\242)-470(z)-1(ab)1(a)28(w)-1(y)1(!)-470(d)1(o)-470(r)1(ob)-28(ot)28(y)84(,)-469(lud)1(z)-1(i)1(e)-1(!)-469({)-469(z)-1(a)28(w)28(o\\252)-1(a\\252)-469(nar)1(az)-470(zrz)-1(u)1(c)-1(a)-55(j\\241c)-470(k)28(o\\273uc)28(h,)]TJ -27.879 -13.549 Td[(zak)55(asa\\252)-479(r)1(\\246)-1(k)56(a)28(wy)83(,)-478(p)-27(o)-28(os)-1(tr)1(z)-1(y)1(\\252)-479(j)1(e)-1(sz)-1(cz)-1(e)-479(n)1(a)-479(ose\\252)-1(ce)-479(n)1(o\\273)-1(a,)-478(wz)-1(i)1(\\241\\252)-479(z)-479(k)56(\\241ta)-478(t\\246)-1(g\\241)-478(pa\\252\\246)-479(d)1(o)]TJ 0 -13.55 Td[(rozc)-1(i)1(e)-1(r)1(ania)-333(z)-1(i)1(e)-1(mniak)28(\\363)28(w)-333(la)-333(\\261)-1(wi\\253)-333(i)-333(ru)1(s)-1(zy\\252)-333(\\273)-1(w)28(a)28(w)27(o)-333(na)-333(dw)28(\\363r.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-407(t)1(e)-1(\\273)-407(p)-27(os)-1(zli)-406(za)-407(n)1(im)-407(w)-406(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(e,)-406(on)-406(z)-1(a\\261)-407(z)-406(Pietrki)1(e)-1(m)-407(wyw)28(o)-28(d)1(z)-1(i\\252)-406(z)]TJ -27.879 -13.549 Td[(c)27(h)1(lew)-1(u)-333(op)1(iera)-56(j)1(\\241c)-1(ego)-333(s)-1(i\\246)-333(s)-1(il)1(nie)-334(wiepr)1(z)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(k)28(\\246)-334(na)-333(kr)1(e)-1(w,)-333(a)-333(pr\\246dk)28(o!)-333({)-333(krzykn)1(\\241\\252.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(nie\\261)-1(l)1(i)-334(wn)1(e)-1(t,)-333(wieprzek)-334(czo)-28(c)27(h)1(a\\252)-334(si\\246)-334(o)-333(w)27(\\246gie\\252)-334(i)-333(p)-27(okwikiw)28(a\\252)-334(z)-333(c)-1(ic)28(ha..)1(.)]TJ 0 -13.55 Td[(St)1(ali)-260(k)28(o\\252em)-260(w)-260(milcz)-1(eniu)-259(p)1(atrz\\241c)-261(w)-259(jego)-260(bi)1(a\\252e)-261(b)-27(oki)-259(i)-260(t)1(\\252)-1(u)1(s)-1(t)28(y)84(,)-260(ob)29(w)-1(i)1(s)-1(\\252y)-259(brzuc)28(h,)]TJ -27.879 -13.549 Td[(a)-274(m)-1(ok)1(n\\241c)-275(galan)29(to,)-274(b)-28(o)-274(des)-1(zcz)-275(m)-1(\\273y\\252)-274(c)-1(or)1(az)-275(g\\246)-1(stsz)-1(y)-274(i)-274(mg\\252)-1(y)-274(zw)27(al)1(a\\252y)-275(si\\246)-275(n)1(a)-274(s)-1(ad)1(.)-275(\\212ap)1(a)]TJ 0 -13.549 Td[(jeno)-381(n)1(a)-1(szc)-1(ze)-1(ki)1(w)27(a\\252)-381(obiega)-56(j)1(\\241c)-382(dok)28(o\\252a.)-381(Jaki)1(e)-1(\\261)-382(k)28(ob)1(iet)28(y)-382(p)1(rzys)-1(t)1(a)27(w)28(a\\252y)-381(w)-382(op\\252otk)56(ac)28(h)-381(i)]TJ 0 -13.549 Td[(kil)1(k)28(oro)-333(dzie)-1(ci)-333(wie)-1(sz)-1(a\\252o)-333(si\\246)-334(na)-333(p)1(\\252)-1(ot)1(ac)27(h,)-333(ciek)55(a)28(wie)-334(n)1(agl\\241da)-55(j\\241c.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273)-297(si\\246)-298(p)1(rze)-1(\\273e)-1(gn)1(a\\252,)-297(p)1(a\\252)-1(\\246)-297(n)1(ie)-1(co)-297(wz)-1(i\\241\\252)-297(za)-297(si\\246)-297(i)-297(j\\241\\252)-297(zac)27(h)1(o)-28(dzi\\242)-297(wie)-1(p)1(rzk)28(o)27(wi)]TJ -27.879 -13.549 Td[(z)-336(b)-28(oku)1(.)-336(Naraz)-336(pr)1(z)-1(ystan)1(\\241\\252)-1(,)-335(r\\246)-1(k)28(\\246)-336(o)-28(d)1(w)-1(i)1(\\363)-28(d\\252,)-336(p)1(rze)-1(c)28(h)28(yli\\252)-336(si\\246)-336(b)-28(ok)1(ie)-1(m)-336(tak)-336(mo)-28(cno,)-336(j)1(a\\273)-1(e)]TJ 0 -13.55 Td[(m)27(u)-273(gu)1(z)-1(ik)-273(p)-28(o)-27(d)-274(szyj\\241)-274(p)1(u\\261c)-1(i)1(\\252)-274(u)-274(k)28(oszuli,)-273(nap)1(r\\246\\273)-1(y\\252)-273(s)-1(i\\246)-274(i)-273(kiej)-274(n)1(ie)-274(h)28(uk)1(nie)-274(w)-274(wiepr)1(z)-1(k)28(o)28(wy)]TJ 0 -13.549 Td[(\\252e)-1(b)-284(mi\\246dzy)-285(u)1(s)-1(zy)83(,)-284(a\\273)-285(\\261)-1(wi\\253)1(tuc)28(h)-285(z)-285(k)1(w)-1(i)1(kiem)-285(pad\\252)-284(na)-285(p)1(rze)-1(d)1(nie)-285(n)1(ogi,)-284(a)-285(p)-27(ote)-1(m)-285(ki)1(e)-1(j)-284(m)27(u)]TJ 0 -13.549 Td[(ni)1(e)-386(p)-27(opr)1(a)27(wi)-385(j)1(u\\273)-385(obu)-385(r)1(\\246)-1(k)28(oma,)-385(\\273)-1(e)-385(zw)27(ali\\252)-385(si\\246)-386(n)1(a)-385(b)-28(ok)-384(w)-1(i)1(e)-1(rzga)-56(j)1(\\241c)-386(k)1(ulasam)-1(i)1(,)-385(wte)-1(d)1(y)]TJ 0 -13.549 Td[(m)27(u)-332(w)-334(mig)-333(przysiad\\252)-333(na)-333(br)1(z)-1(u)1(c)27(h)28(u)1(,)-333(no\\273e)-1(m)-334(b)1(\\252ysn\\241\\252)-334(i)-333(a\\273)-333(p)-28(o)-333(os)-1(ad)1(\\246)-334(wbi)1(\\252)-334(w)-333(s)-1(erce)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(s)-1(t)1(a)27(wil)1(i)-272(niec)27(ki)1(,)-272(krew)-273(c)28(hlu)1(s)-1(n)1(\\246)-1(\\252a)-272(ki)1(e)-1(j)-272(z)-272(s)-1(i)1(k)55(a)28(wki,)-272(a\\273)-272(na)-272(\\261c)-1(ian)1(\\246)-273(c)28(hlew)27(a,)-272(i)-271(j\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(z)-334(b)1(ulgotem)-334(sp\\252yw)28(a\\242)-334(p)1(aruj)1(\\241c)-334(ni)1(b)28(y)-333(wrz)-1(\\241t)1(e)-1(k.)]TJ 27.879 -13.549 Td[({)-383(P)28(\\363)-27(dzi,)-383(\\212ap)1(a!)-383(widzisz)-383(go,)-383(ju)1(c)27(h)28(y)-382(m)27(u)-382(s)-1(i)1(\\246)-384(c)28(hce)-1(,)-382(p)-28(ost)-383(pr)1(z)-1(ec)-1(i)1(e)-1(k!)-382({)-383(ozw)27(a\\252)-383(si\\246)]TJ\nET\nendstream\nendobj\n1259 0 obj <<\n/Type /Page\n/Contents 1260 0 R\n/Resources 1258 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1258 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1263 0 obj <<\n/Length 9194      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(393)]TJ -358.232 -35.866 Td[(wres)-1(zc)-1(i)1(e)-334(o)-28(dgan)1(ia)-56(j)1(\\241c)-334(p)1(s)-1(a)-333(i)-333(dysz)-1(\\241c)-333(c)-1(i\\246\\273k)28(o.)-334(Zm\\246)-1(czy\\252)-334(si\\246)-334(b)29(y\\252)-334(n)1(iec)-1(o.)]TJ 27.879 -13.549 Td[({)-333(W)-333(ganku)-333(op)1(arzyc)-1(i)1(e)-1(?)]TJ 0 -13.549 Td[({)-333(Do)-334(i)1(z)-1(b)28(y)-333(wn)1(ie)-1(s\\246)-334(k)28(ory)1(to,)-333(prze)-1(cie\\273)-334(trza)-333(go)-334(u)29(w)-1(iesi\\242)-334(do)-333(rozbi)1(e)-1(r)1(ania.)-333(.)]TJ 0 -13.549 Td[({)-333(W)-333(iz)-1(b)1(ie)-334(ciasno,)-333(m)27(y\\261la\\252am.)]TJ 0 -13.549 Td[({)-447(Mac)-1(i)1(e)-448(dr)1(ug\\241)-447(s)-1(tr)1(on\\246,)-448(o)-55(jco)28(w)27(\\241,)-447(tam)-448(d)1(u\\273o)-447(m)-1(iejsc)-1(a,)-447(starem)27(u)-447(to)-447(ni)1(e)-448(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(sz)-1(k)28(o)-28(d)1(z)-1(i)1(...)-406(i)1(no)-406(p)1(r\\246dze)-1(j)1(,)-406(b)-27(o)-406(n)1(im)-406(os)-1(t)28(ygn)1(ie,)-406(\\252acniej)-406(m)28(u)-405(s)-1(ze)-1(r)1(\\261)-1(\\242)-406(pu)1(\\261)-1(ci!)-405({)-406(rozk)56(az)-1(yw)28(a\\252)]TJ 0 -13.549 Td[(ob)-27(dzie)-1(r)1(a)-56(j)1(\\241c)-334(m)27(u)-333(t)28(ymcz)-1(ase)-1(m)-333(z)-1(e)-334(gr)1(z)-1(b)1(ietu)-333(s)-1(zc)-1(ze)-1(cin)1(\\246)-334(c)-1(o)-333(d)1(\\252)-1(u)1(\\273)-1(sz\\241.)]TJ 27.879 -13.549 Td[(A)-387(w)-388(par)1(\\246)-388(pacierzy)-388(wiepr)1(z)-1(ek)-387(ju\\273)-387(oparzon)28(y)84(,)-387(obran)28(y)-387(ze)-388(sz)-1(cz)-1(ec)-1(i)1(n)28(y)83(,)-387(wym)28(yt)28(y)83(,)]TJ -27.879 -13.549 Td[(wisia\\252)-334(w)-333(B)-1(or)1(yno)28(w)28(e)-1(j)-333(i)1(z)-1(b)1(ie)-1(,)-333(r)1(oz)-1(p)1(i\\246)-1(t)28(y)-333(n)1(a)-334(orczyku)-333(p)1(rz)-1(y)1(w)-1(i)1(\\241z)-1(an)28(y)1(m)-334(do)-333(b)-27(e)-1(lk)1(i.)]TJ 27.879 -13.549 Td[(Jagn)28(y)-345(nie)-346(b)28(y)1(\\252o,)-346(p)-27(os)-1(z\\252a)-346(z)-1(ar)1(az)-346(z)-347(r)1(ana)-346(d)1(o)-346(k)28(o\\261c)-1(io\\252a,)-345(ani)-345(s)-1(i\\246)-346(sp)-28(o)-27(dzie)-1(w)28(a)-56(j)1(\\241c)-1(,)-345(c)-1(o)]TJ -27.879 -13.549 Td[(ma)-326(nast\\241)-28(pi)1(\\242)-1(;)-325(jeno)-326(stary)-326(j)1(ak)-326(zw)-1(y)1(kle)-326(na)-326(\\252\\363\\273ku)-326(l)1(e)-1(\\273a\\252,)-326(wpatr)1(z)-1(on)28(y)-325(gdzie)-1(sik)-326(n)1(ieprzy-)]TJ 0 -13.55 Td[(tomn)28(ymi)-333(o)-28(c)-1(zyma.)]TJ 27.879 -13.549 Td[(Zrazu)-377(spr)1(a)28(w)-1(i)1(ali)-377(si\\246)-377(c)-1(i)1(c)27(ho,)-376(c)-1(z\\246)-1(sto)-377(ob)1(z)-1(iera)-55(j\\241c)-377(si\\246)-377(na)-377(c)28(horego,)-377(al)1(e)-378(\\273e)-377(s)-1(i\\246)-377(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(oruc)28(hiw)28(a\\252)-355(na)28(w)28(e)-1(t,)-354(z)-1(ab)1(ac)-1(zyli)-354(w)-1(n)1(e)-1(t)-355(o)-354(nim,)-355(mo)-28(cno)-355(za)-56(j)1(\\246)-1(ci)-355(wieprzkiem,)-355(kt\\363r)1(e)-1(n)-354(nie)]TJ 0 -13.549 Td[(za)27(wi\\363)-27(d\\252)-235(p)1(rze)-1(wid)1(yw)27(a\\253)1(,)-234(b)-28(o)-234(s)-1(\\252on)1(in\\246)-235(n)1(a)-235(gr)1(z)-1(b)1(ie)-1(cie)-235(mia\\252)-235(gr)1(ub)1(\\241)-235(d)1(obrze)-235(na)-234(s)-1(ze)-1(\\261\\242)-235(p)1(alc)-1(\\363)28(w)]TJ 0 -13.549 Td[(i)-333(s)-1(i)1(e)-1(ln)1(e)-334(sad\\252o.)]TJ 27.879 -13.55 Td[({)-492(Za\\261pi)1(e)-1(w)28(alim)-492(m)28(u,)-491(przew)-1(i)1(e)-1(\\271lim,)-492(cza)-1(s)-492(go)-491(ju)1(\\273)-492(gorza\\252k)55(\\241)-491(s)-1(kr)1(opi\\242!)-491({)-492(w)28(o\\252a\\252)]TJ -27.879 -13.549 Td[(Jam)28(bro\\273y)-333(m)27(yj)1(\\241c)-334(r\\246c)-1(e)-333(nad)-333(k)28(or)1(yte)-1(m.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(n)1(a)-334(\\261niad)1(anie,)-333(z)-1(n)1(a)-56(j)1(dzie)-334(si\\246)-334(cz)-1(y)1(m)-334(pr)1(z)-1(epi\\242.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-395(\\273e)-396(n)1(im)-395(s)-1(i)1(\\246)-396(zabr)1(a\\252)-395(do)-395(ziem)-1(n)1(iak)28(\\363)28(w)-395(z)-396(b)1(arsz)-1(cz)-1(em,)-395(wypi)1(\\252)-395(z)-396(n)1(ie)-1(zgorsz)-1(\\241)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(le)-1(wk)56(\\241,)-261(ale)-261(pr)1(z)-1(y)-261(j)1(adle)-261(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-261(k)1(r\\363tk)28(o,)-261(wnet)-261(si\\246)-262(zabiera)-55(j\\241c)-261(do)-261(rob)-27(ot)28(y)-261(i)-261(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.55 Td[(kic)28(h)-362(p)-28(ogan)1(ia)-56(j)1(\\241c)-1(,)-362(z)-1(w\\252asz)-1(cz)-1(a)-362(Jagust)28(ynk)28(\\246,)-363(z)-363(kt\\363r)1(\\241)-363(p)-27(os)-1(p)-27(\\363ln)1(ie)-363(robi)1(\\252,)-363(\\273e)-363(to)-363(zar\\363)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(si\\246)-334(zna\\252a)-333(na)-333(s)-1(oleni)1(u)-333(i)-333(przyp)1(ra)28(w)-1(i)1(e)-334(mi\\246)-1(sa.)]TJ 27.879 -13.549 Td[(Hank)56(a)-273(te\\273)-273(p)-28(omaga\\252a,)-273(co)-273(in)1(o)-273(mog\\252)-1(a,)-272(J\\363z)-1(k)56(a)-273(za\\261)-273(rada)-272(c)-1(ze)-1(p)1(ia\\252a)-273(s)-1(i)1(\\246)-274(b)-27(ele)-273(c)-1(ze)-1(go,)]TJ -27.879 -13.549 Td[(b)28(y)-333(in)1(o)-334(p)1(rzy)-333(w)-1(i)1(e)-1(p)1(rz)-1(k)1(u)-333(os)-1(ta)28(w)28(a\\242)-334(i)-333(w)-334(c)28(ha\\252up)1(ie.)]TJ 27.879 -13.549 Td[({)-241(P)28(omaga)-56(j)-240(gn\\363)-55(j)-241(n)1(ak\\252ada\\242,)-241(n)1(ie)-1(c)28(h)-241(p)1(r\\246dk)28(o)-241(wyw)28(o\\273)-1(\\241,)-240(b)-28(o)-241(wid)1(z)-1(i)-240(m)-1(i)-240(s)-1(i\\246,)-241(\\273e)-241(dzis)-1(i)1(a)-56(j)]TJ -27.879 -13.55 Td[(ni)1(e)-334(s)-1(k)28(o\\253)1(c)-1(z\\241)-333(pr\\363\\273ni)1(aki!)-333({)-333(krzyc)-1(za\\252a)-333(na)-333(ni\\241.)]TJ 27.879 -13.549 Td[(Z)-462(\\273alem)-462(ju)1(\\261)-1(ci)-462(n)1(iem)-1(a\\252ym)-461(le)-1(cia\\252a)-462(w)-461(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(e,)-462(ca\\252\\241)-462(z\\252o\\261)-1(\\242)-462(wywiera)-55(j\\241c)-462(na)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opak)28(\\363)28(w,)-225(\\273)-1(e)-226(ci\\246gie)-1(m)-225(s)-1(\\252yc)28(ha\\242)-226(b)29(y\\252o)-226(j)1(e)-1(j)-225(j)1(az)-1(got)28(y)-225({)-225(b)-27(o)-226(i)-225(j)1(ak\\273)-1(e!..)1(.)-226(wygan)1(ia\\252a)-225(j\\241,)-225(kiej)-225(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-231(c)-1(zyni)1(\\252)-1(o)-230(s)-1(i\\246)-231(coraz)-231(gw)28(arni)1(e)-1(j)1(,)-231(b)-27(o)-231(co)-231(tro)-28(c)28(ha)-230(w)-1(p)1(ada\\252a)-231(j)1(ak)56(a)-231(kuma)-231(zama)27(wia)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-366(b)-27(e)-1(le)-365(c)-1(zym,)-365(p)-28(o)-365(s)-1(\\241siedzku,)-365(a)-365(uj)1(rza)28(w)-1(sz)-1(y)-365(wisz)-1(\\241cego)-366(wiepr)1(z)-1(k)56(a)-365(roz)-1(w)28(o)-28(d)1(z)-1(i\\252a)-365(r\\246c)-1(e)-365(i)]TJ 0 -13.55 Td[(dal)1(e)-1(j)1(\\273)-1(e)-441(w)-441(g\\252os)-441(wydziwia\\242,)-441(\\273e)-441(taki)-440(w)-1(i)1(e)-1(lgac)28(hn)28(y)84(,)-441(t)1(aki)-441(spa\\261n)28(y)84(,)-441(j)1(akiego)-441(ni)1(e)-441(m)-1(ia\\252)-440(i)]TJ 0 -13.549 Td[(m\\252ynar)1(z)-334(alb)-27(o)-334(or)1(ganista.)]TJ 27.879 -13.549 Td[(Hank)56(a)-497(b)29(y\\252a)-497(t)28(ym)-497(wie)-1(l)1(c)-1(e)-497(rozrad)1(o)27(w)28(ana,)-496(pu)1(s)-1(zy\\252a)-497(si\\246)-497(s)-1(ieln)1(ie)-1(,)-496(\\273)-1(e)-497(sz)-1(lac)28(h)28(tuj)1(e)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(niak)56(a,)-363(i)-363(c)28(ho)-28(\\242)-363(b)28(y\\252o)-363(j)1(e)-1(j)-362(ni)1(e)-1(co)-363(\\273)-1(al)-362(g)-1(or)1(z)-1(a\\252ki)1(,)-363(tru)1(dn)1(o,)-363(sk)28(oro)-363(m)27(u)1(s)-1(i)1(a\\252)-1(a,)-362(jak)-363(to)-362(b)28(y\\252o)]TJ 0 -13.549 Td[(w)28(e)-297(zwycz)-1(a)-55(ju)-295(u)-295(gos)-1(p)-27(o)-28(d)1(arz)-1(y)-295(pr)1(z)-1(y)-295(takim)-296(\\261wi\\246c)-1(ie,)-295(c)-1(z\\246)-1(sto)28(w)27(a\\252a,)-295(c)27(hl)1(e)-1(b)-295(z)-296(s)-1(ol)1(\\241)-296(p)-27(o)-28(da)-55(j\\241c)]TJ 0 -13.549 Td[(na)-374(pr)1(z)-1(egryzk)28(\\246)-375(i)-375(r)1(ada)-375(s\\252uc)28(ha)-55(j\\241c)-375(t)28(yc)27(h)-374(s\\252\\363)27(w)28(e)-1(k)-374(pr)1(z)-1(y)1(p)-28(o)-28(c)28(hlebn)29(yc)27(h)1(,)-375(i)-374(ugw)28(arza)-56(j)1(\\241c)-376(si\\246)]TJ 0 -13.55 Td[(ni)1(e)-1(ma\\252o,)-286(b)-28(o)-286(to)-287(l)1(e)-1(d)1(w)-1(i)1(e)-287(jedn)1(a)-287(za)-287(p)1(r\\363g,)-286(ju)1(\\273)-287(dr)1(ugie)-287(w)-286(s)-1(ieni)1(ac)27(h)-286(trep)28(y)-286(z)-287(b)1(\\252)-1(ot)1(a)-287(ob)1(ija\\252y)84(,)]TJ 0 -13.549 Td[(ws)-1(t\\246pu)1(j\\241c)-254(n)1(ib)28(y)-253(p)-28(o)-253(dro)-27(dze)-254(do)-254(k)28(o\\261c)-1(i)1(o\\252a)-254(i)-253(na)-254(te)-254(k)1(r\\363tkie)-254(Zd)1(ro)28(w)27(a\\261)-254({)-253(\\273)-1(e)-254(kiej)-253(na)-253(o)-28(dp)1(ust)]TJ 0 -13.549 Td[(w)28(ali\\252y)83(,)-269(a)-269(d)1(z)-1(ieci)-269(s)-1(i\\246)-269(te)-1(\\273)-269(s)-1(p)-27(oro)-269(p)1(l\\241ta\\252o)-269(p)-28(o)-269(k)56(\\241tac)27(h)-269(i)-269(d)1(o)-269(okien)-269(z)-1(agl)1(\\241da)-55(j\\241c,)-269(a\\273)-270(je)-269(nieraz)]TJ 0 -13.549 Td[(J\\363zk)55(a)-333(m)28(usia\\252a)-334(r)1(oz)-1(gan)1(ia\\242)-1(.)]TJ 27.879 -13.549 Td[(Bo)-252(to)-251(i)-251(w)28(e)-252(ws)-1(i)-251(cz)-1(yn)1(i\\252)-251(s)-1(i\\246)-251(ruc)28(h)-251(nad)1(s)-1(p)-27(o)-28(d)1(z)-1(iew)28(anie,)-251(c)-1(or)1(az)-252(wi\\246)-1(ce)-1(j)-250(lud)1(z)-1(i)-251(cz)-1(\\252ap)1(a\\252)-1(o)]TJ -27.879 -13.55 Td[(p)-27(o)-382(d)1(rogac)27(h)1(,)-381(to)-381(w)27(ozy)-381(z)-382(dr)1(ugic)28(h)-381(ws)-1(i)-381(raz)-381(p)-28(o)-381(raz)-381(tur)1(k)28(ota\\252y)83(,)-381(\\273e)-382(nad)-381(sta)28(w)27(em)-382(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(w)-303(p)1(ro)-28(ce)-1(sji)-302(w)27(ci\\241\\273)-303(s)-1(i)1(\\246)-303(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(i\\252y)-303(b)1(abskie)-303(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wy)84(,)-303(n)1(ar\\363)-28(d)-302(b)-28(o)28(wiem)-303(c)-1(i)1(\\241)-28(gn\\241\\252)-303(d)1(o)]TJ\nET\nendstream\nendobj\n1262 0 obj <<\n/Type /Page\n/Contents 1263 0 R\n/Resources 1261 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1261 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1266 0 obj <<\n/Length 9138      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(394)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(sp)-28(o)28(wiedzi,)-302(n)1(ie)-303(b)1(ac)-1(z\\241c)-302(na)-302(z\\252e)-303(d)1(rogi)-301(ni)-302(n)1(a)-302(dzie\\253)-302(p)1(\\252aks)-1(i)1(w)-1(y)84(,)-302(p)1(rzykry)-301(a)-302(tak)-302(zmie)-1(n)1(n)28(y)84(,)]TJ 0 -13.549 Td[(i\\273)-276(co)-276(ki)1(lk)56(a)-276(p)1(ac)-1(ierz\\363)27(w)-275(pad)1(a\\252)-276(des)-1(zcz)-1(,)-275(to)-276(ciep\\252y)-275(w)-1(i)1(ate)-1(r)-275(pr)1(z)-1(ew)27(al)1(a\\252)-276(si\\246)-276(p)-28(o)-275(s)-1(ad)1(ac)27(h)-275(alb)-27(o)]TJ 0 -13.549 Td[(za\\261)-400(n)1(a)27(w)28(et)-399(s)-1(y)1(pa\\252y)-399(\\261nie\\273ne)-399(kru)1(p)28(y)-399(gr)1(ub)-27(e)-400(k)1(ie)-1(j)-398(p)-27(\\246)-1(cz)-1(ak)1(,)-399(a)-399(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-399(i)-399(taki)-398(c)-1(zas)-1(,)-398(\\273)-1(e)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(e)-344(pr)1(z)-1(edar)1(\\252o)-344(s)-1(i\\246)-344(z)-345(c)28(hm)28(ur)-344(i)-343(kieb)28(y)-344(z\\252ote)-1(m)-344(p)-27(os)-1(u)1(\\252)-1(o)-343(\\261)-1(wiat)-344({)-344(j)1(ak)-344(to)-344(zre)-1(szt\\241)-344(z)-1(wy-)]TJ 0 -13.549 Td[(cz)-1(a)-55(jni)1(e)-336(b)28(yw)28(a)-336(n)1(a)-336(p)1(ie)-1(r)1(w)-1(sz\\241)-336(zw)-1(i)1(e)-1(sn\\246,)-336(k)1(ie)-1(j)-335(cz)-1(as)-336(p)-27(o)-28(d)1(obien)-335(s)-1(i)1(\\246)-336(c)-1(zyni)-335(w)-336(mat)28(yj)1(a\\261)-1(n)1(o\\261)-1(ci)]TJ 0 -13.55 Td[(do)-337(dziew)-1(k)1(i)-338(p)-27(oni)1(e)-1(kt)1(\\363re)-1(j)1(,)-337(kt\\363rej)-337(to)-338(p)-27(os)-1(ob)1(ni)1(e)-338(i)-338(\\261m)-1(i)1(e)-1(c)28(h,)-337(i)-338(p)1(\\252ac)-1(z,)-338(i)-337(w)28(e)-1(se)-1(l)1(e)-1(,)-337(i)-337(\\273)-1(a\\252o\\261c)-1(ie)]TJ 0 -13.549 Td[(bi)1(j\\241)-333(do)-333(g\\252o)28(w)-1(y)84(,)-333(a)-334(sama)-334(n)1(ie)-334(miark)1(uje,)-333(c)-1(o)-333(si\\246)-334(z)-334(n)1(i\\241)-333(w)-1(y)1(pra)28(wia.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-331(\\273e)-332(ta)-331(u)-331(Han)1(ki)-331(n)1(ikto)-331(n)1(a)-332(p)-27(ogo)-28(d)1(\\246)-332(n)1(ie)-332(b)1(ac)-1(zy\\252)-331(i)-331(rob)-27(ota)-331(a)-331(p)-27(ogw)27(ar)1(y)-331(s)-1(z\\252y)83(,)]TJ -27.879 -13.549 Td[(ja\\273e)-285(s)-1(i\\246)-285(rozlega\\252o.)-285(Jam)27(b)1(ro\\273y)-285(si\\246)-285(z)-1(wij)1(a\\252)-1(,)-284(p)-28(ogan)1(ia\\252)-285(dr)1(ugic)28(h,)-284(prze)-1(k)1(pin)1(ki)-285(w)28(e)-1(d)1(le)-285(z)-1(wy-)]TJ 0 -13.549 Td[(cz)-1(a)-55(ju)-236(w)-1(i)1(\\363)-28(d\\252,)-237(al)1(e)-238(\\273e)-237(m)27(usia\\252)-237(co)-237(par)1(\\246)-238(p)1(ac)-1(ierzy)-237(d)1(o)-237(k)28(o\\261)-1(cio\\252a)-237(zagl\\241da\\242,)-237(cz)-1(y)-236(tam)-238(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(k)28(o)-333(s)-1(p)1(ra)28(wnie)-334(i)1(dzie)-1(,)-333(to)-333(na)-333(zi\\241b)-333(nar)1(z)-1(ek)56(a\\252)-334(i)-333(o)-333(rozgrz)-1(ewk)28(\\246)-334(w)28(o\\252)-1(a\\252:)]TJ 27.879 -13.55 Td[({)-333(P)29(ousadza\\252)-1(em)-333(d)1(obro)-27(dzie)-1(j)1(\\363)28(w)-1(,)-332(nar)1(o)-28(dem)-333(ic)27(h)-332(ob)29(w)27(ali)1(\\252)-1(em,)-333(\\273e)-333(do)-332(p)-28(o\\252edn)1(ia)-333(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-334(ru)1(s)-1(z\\241.)]TJ 27.879 -13.549 Td[({)-355(Hale)-1(,)-355(\\252azno)28(ws)-1(ki)-355(pr)1(ob)-28(oszc)-1(z)-356(d)1(\\252ugo)-355(nie)-356(strzyma,)-356(p)-27(o)28(wiadal)1(i,)-355(\\273)-1(e)-356(m)28(u)-355(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dy)1(ni)-333(ci\\246)-1(gi)1(e)-1(m)-334(p)-27(orce)-1(n)1(e)-1(l)1(\\246)-334(p)-27(o)-28(da)28(w)28(a\\242)-334(m)27(u)1(s)-1(i!)]TJ 27.879 -13.549 Td[({)-333(B)-1(ab)-27(ciu,)-333(p)1(iln)28(u)1(jcie)-334(nosa,)-333(p)-27(oniec)27(h)1(a)-56(jcie)-334(k)1(s)-1(i\\246\\273y!)]TJ 0 -13.55 Td[(Nie)-334(l)1(ub)1(i\\252)-334(tego.)]TJ 0 -13.549 Td[({)-349(A)-350(o)-349(t)27(y)1(m)-350(z)-1(e)-350(S)1(\\252up)1(i)-350(te\\273)-350(p)-27(o)27(wiad)1(a)-56(j)1(\\241,)-349(\\273)-1(e)-350(za)27(wd)1(y)-350(p)1(rzy)-350(sp)-27(o)27(wiedzi)-349(\\015asz)-1(u)1(c)27(hn)1(\\246)-350(z)]TJ -27.879 -13.549 Td[(pac)28(hn)1(\\241c)-1(ym)-293(w)-294(gar\\261ci)-294(tr)1(z)-1(y)1(m)-1(a)-293(i)-293(nos)-294(se)-294(pr)1(z)-1(y)1(t)27(y)1(k)55(a,)-293(b)-27(o)-293(m)27(u)-293(ano)-293(n)1(ar\\363)-28(d)-293(\\261m)-1(i)1(e)-1(rd)1(z)-1(i)1(,)-294(\\273e)-294(p)-27(o)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(ym)-334(wysp)-27(o)27(wiad)1(an)28(ym)-334(z\\252e)-334(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-334(c)28(h)28(ustk)56(\\241)-334(r)1(oz)-1(gan)1(ia)-333(i)-334(wyk)56(ad)1(z)-1(a..)1(.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wrzyj)1(c)-1(ie)-333(g\\246)-1(b)-27(\\246)-1(:)-333(w)28(ara)-333(w)27(am)-333(o)-28(d)-333(ksi\\246\\273)-1(y!)-333({)-333(wybu)1(c)27(h)1(n\\241\\252)-334(ze\\271)-1(lon)29(y)83(.)]TJ 0 -13.55 Td[({)-312(Ro)-28(c)27(h)1(o)-312(s)-1(\\241)-312(w)-312(k)28(o\\261c)-1(iele?)-313({)-312(p)-27(o)-28(d)1(j\\246\\252a)-312(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie)-312(Hank)56(a,)-312(r\\363)28(wni)1(e)-1(\\273)-312(w)-1(i)1(e)-1(lce)-313(n)1(ierada)]TJ -27.879 -13.549 Td[(p)28(ysk)28(o)28(w)27(an)1(iom)-334(Jagu)1(s)-1(t)28(yn)1(ki.)]TJ 27.879 -13.549 Td[({)-333(Siedz\\241)-333(o)-28(d)-333(s)-1(amego)-334(r)1(ana,)-333(do)-333(ms)-1(zy)-333(s)-1(\\252u)1(\\273)-1(y\\252)-333(i)-333(c)-1(o)-333(p)-27(otrza,)-334(ob)1(rz\\241dza.)]TJ 0 -13.549 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(to)-333(Mic)27(h)1(a\\252?)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(zed\\252)-333(z)-334(organ)1(i\\261)-1(ciakiem)-334(d)1(o)-334(Rze)-1(p)-27(ek,)-333(p)-28(o)-333(spisie.)]TJ 0 -13.55 Td[({)-385(G)1(\\246)-1(si\\241)-384(orz)-1(e,)-384(piaskiem)-385(sie)-1(j)1(e)-385(i)-384(niez)-1(gor)1(z)-1(ej)-384(im)-385(si\\246)-385(dzieje!)-385({)-384(w)27(es)-1(tc)28(hn)1(\\241\\252)-385(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(b)28(y)84(,)-334(j)1(u\\273)-333(na)-56(j)1(mniej)-333(jak)-333(za)-334(k)56(a\\273d\\241)-333(du)1(s)-1(z\\246)-334(zapisan\\241)-333(ja)-55(jk)28(o)-333(dosta)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-314(A)-314(za)-314(k)56(artk)1(i)-314(do)-313(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-313(os)-1(obn)1(o)-314(p)1(rz)-1(ecie)-1(k)-313(bierze)-314(p)-28(o)-314(tr)1(z)-1(y)-313(grosz)-1(e)-314(z)-314(du)1(s)-1(zy)83(.)]TJ -27.879 -13.549 Td[(Co)-296(dn)1(ia)-296(w)-1(i)1(dz\\246)-1(;)-296(j)1(akie)-296(torb)28(y)-296(d)1(yguj)1(\\241)-296(z)-297(r\\363\\273no\\261ciam)-1(i)1(.)-296(Sam)28(yc)27(h)-296(j)1(a)-56(j)1(\\363)28(w)-297(spr)1(z)-1(eda\\252a)-296(orga-)]TJ 0 -13.55 Td[(ni)1(\\261)-1(cina)-333(w)-333(z)-1(es)-1(z\\252ym)-334(t)28(ygo)-28(d)1(ni)1(u)-333(c)-1(o\\261)-334(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(i)1(a)-334(i)-333(dwie)-333(k)28(op)28(y)-333({)-334(r)1(z)-1(ek\\252a)-333(Jagust)28(ynk)56(a.)]TJ 27.879 -13.549 Td[({)-350(Kiej)-350(n)1(as)-1(ta\\252,)-350(to)-350(p)-27(ono)-350(p)1(ie)-1(c)28(h)28(t)28(y)-350(pr)1(z)-1(ysz)-1(ed\\252)-350(z)-350(jedn)28(ym)-350(w)28(\\246)-1(ze)-1(\\252kiem,)-350(a)-350(te)-1(r)1(az)-351(b)28(y)]TJ -27.879 -13.549 Td[(go)-333(i)-333(w)27(e)-334(cz)-1(t)1(e)-1(ry)-333(d)1(w)27(or)1(s)-1(ki)1(e)-334(w)27(ozy)-333(nie)-333(w)-1(y)1(w)-1(i)1(\\363z)-1(\\252.)]TJ 27.879 -13.549 Td[({)-485(Organ)1(ista)-485(z)-486(g\\363r\\241)-485(dw)28(adzie\\261)-1(cia)-485(rok)28(\\363)28(w)-485(w)-486(Lip)-27(cac)27(h)-485(siedzi;)-485(par)1(a\\014a)-485(du)1(\\273)-1(a,)]TJ -27.879 -13.549 Td[(pr)1(ac)-1(u)1(je,)-333(z)-1(ab)1(ie)-1(ga,)-333(gr)1(os)-1(za)-334(sz)-1(cz\\246)-1(d)1(z)-1(i,)-333(to)-333(si\\246)-334(i)-333(dor)1(obi\\252)-333({)-334(t)1(\\252)-1(u)1(mac)-1(zy\\252)-334(J)1(am)27(br)1(o\\273)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-338(Dorob)1(i\\252)-338(s)-1(i)1(\\246)-1(!)-338(D)1(rz)-1(e)-338(z)-339(n)1(aro)-28(d)1(u,)-337(jak)-338(in)1(o)-338(m)-1(o\\273e,)-338(a)-338(nim)-338(co)-338(k)28(om)27(u)-338(zrob)1(i)-338(dob)1(rze)-1(,)]TJ -27.879 -13.55 Td[(w)-343(gar)1(\\261)-1(cie)-343(cud)1(z)-1(e)-343(p)1(atrzy)83(,)-342(p)-27(o)-343(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(\\261c)-1(i)-342(z\\252)-1(ot)28(y)1(c)27(h)-342(o)-28(d)-342(p)-27(o)-28(c)27(h)1(o)27(wku)-342(b)1(ierze)-343(z)-1(a)-342(to,)-342(c)-1(o)-342(ta)]TJ 0 -13.549 Td[(p)-27(ob)-28(ec)-1(zy)-333(p)-27(o)-334(\\252aci\\253sku)-333(i)-333(na)-333(organ)1(ac)27(h)-333(p)-27(opr)1(z)-1(ebiera.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wd)1(y)-334(u)1(c)-1(zon)28(y)-333(j)1(e)-1(st)-334(w)28(e)-334(sw)27(oim)-333(i)-333(nieraz)-334(d)1(obr)1(z)-1(e)-334(m)28(usi)-333(s)-1(i\\246)-333(nag\\252o)28(wi\\242)-1(!)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(n)1(aucz)-1(n)28(y)84(,)-333(k)56(a)-56(j)-333(cie)-1(n)1(i)-333(b)-28(ekn)1(\\241\\242)-1(,)-333(a)-333(k)56(a)-56(j)-333(gru)1(bi)1(e)-1(j)-333(i)-333(jak)-333(wycygan)1(ia\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(s)-1(zy)-333(b)28(y)-333(pr)1(z)-1(epi\\252,)-333(a)-333(te)-1(n)-332(s)-1(yn)1(a)-334(n)1(a)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-333(kieru)1(je)-1(.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(i)-333(h)1(onor)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(m)-1(i)1(a\\252)-334(n)1(ie)-1(ma\\252y)84(,)-334(i)-333(p)1(ro\\014)1(t!)-333({)-334(d)1(ogadyw)28(a\\252a)-334(stara)-333(za)-56(jad)1(le.)]TJ 0 -13.549 Td[(Pr)1(z)-1(erw)28(ali)-266(w)-267(n)1(a)-56(j)1(le)-1(p)1(s)-1(zym)-266(m)-1(i)1(e)-1(jscu,)-266(gdy)1(\\273)-267(Jagu\\261)-266(w)-1(p)1(ad\\252a)-266(s)-1(t)1(a)-56(j\\241c)-266(naraz)-266(w)-267(p)1(rogu)]TJ\nET\nendstream\nendobj\n1265 0 obj <<\n/Type /Page\n/Contents 1266 0 R\n/Resources 1264 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1264 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1269 0 obj <<\n/Length 7803      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(395)]TJ -358.232 -35.866 Td[(kiej)-333(wryta.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(w)-1(u)1(jes)-1(z)-333(s)-1(i\\246)-334(wiepr)1(z)-1(k)28(o)28(wi?)-333({)-334(za\\261)-1(mia\\252a)-333(s)-1(i)1(\\246)-334(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-387(Nie)-387(mogli\\261c)-1(i)1(e)-388(to)-386(p)-28(o)-386(s)-1(w)28(o)-56(j)1(e)-1(j)-386(s)-1(tr)1(onie)-387(sz)-1(l)1(ac)27(h)28(to)28(w)28(a\\242)-1(!)-387(Izb)-27(\\246)-388(mi)-387(ca\\252kiem)-387(z)-1(ap)1(a-)]TJ -27.879 -13.549 Td[(skud)1(z)-1(\\241)-333({)-333(w)-1(yk)1(rztusi\\252a,)-333(w)-334(p)1(\\241s)-1(ac)27(h)-332(c)-1(a\\252a)-333(s)-1(ta)-55(j\\241c.)]TJ 27.879 -13.549 Td[({)-333(Masz)-334(c)-1(zas)-1(,)-333(to)-333(se)-334(wym)27(yj)1(e)-1(sz!)-334({)-333(o)-28(d)1(rze)-1(k\\252a)-333(zim)-1(n)1(o,)-333(z)-334(naciskiem)-334(Hank)56(a.)]TJ 0 -13.55 Td[(Jagu)1(\\261)-390(cis)-1(n)1(\\246)-1(\\252a)-389(si\\246)-390(n)1(apr)1(z)-1(\\363)-28(d)-388(kieb)28(y)-389(d)1(o)-389(k\\252\\363tni,)-388(ale)-390(d)1(a\\252a)-389(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-389(z)-1(ak)1(r\\246)-1(ci\\252a)-389(si\\246)]TJ -27.879 -13.549 Td[(jeno)-321(p)-28(o)-321(izbie,)-322(wzi\\246)-1(\\252a)-321(r\\363\\273a\\253ce)-322(z)-323(P)29(as)-1(yj)1(ki,)-321(a)-322(p)1(rzy)28(okrywsz)-1(y)-321(rozbab)1(rane)-322(\\252\\363\\273k)28(o)-322(j)1(ak)55(\\241\\261)]TJ 0 -13.549 Td[(c)27(h)29(u\\261c)-1(in)1(\\241)-334(wysz)-1(\\252a)-333(b)-27(e)-1(z)-334(s\\252o)28(w)27(a,)-333(c)27(h)1(o)-28(\\242)-334(w)28(argi)-333(tr)1(z)-1(\\246s)-1(\\252y)-333(s)-1(i)1(\\246)-334(jej)-333(ze)-334(z)-1(\\252o\\261c)-1(i)-333(u)1(ta)-56(j)1(onej.)]TJ 27.879 -13.549 Td[({)-333(P)28(omoglib)28(y\\261cie)-1(,)-333(t)28(yle)-333(rob)-27(ot)28(y!)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(jej)-333(w)-333(s)-1(ieni)1(ac)27(h)-333(J\\363zk)55(a.)]TJ 0 -13.549 Td[(Wyw)28(ar\\252a)-316(na)-317(n)1(i\\241)-316(g\\246)-1(b)-27(\\246)-317(w)-317(takiej)-316(z)-1(\\252o\\261c)-1(i)1(,)-317(\\273e)-317(na)28(w)27(et)-316(s)-1(\\252\\363)28(w)-317(ni)1(e)-317(m)-1(o\\273na)-316(b)28(y\\252o)-317(r)1(oz)-1(e-)]TJ -27.879 -13.549 Td[(zna\\242,)-306(i)-306(p)-27(olec)-1(ia\\252a)-306(j)1(ak)-306(w\\261)-1(ciek\\252a.)-306(Wi)1(te)-1(k)-305(z)-1(a)-306(n)1(i\\241)-306(wyjr)1(z)-1(a\\252)-306(i)-305(m)-1(\\363)28(wi\\252,)-306(j)1(ak)28(o)-306(pro\\261ciutk)28(o)-306(d)1(o)]TJ 0 -13.55 Td[(k)28(o)28(w)27(al)1(a)-334(si\\246)-334(p)-27(onies\\252)-1(a.)]TJ 27.879 -13.549 Td[(-A)-334(n)1(iec)27(h)-333(se)-334(idzie,)-333(p)-28(osk)56(ar\\273)-1(y)-333(si\\246)-334(\\271dziebk)28(o,)-333(to)-333(jej)-333(ul\\273y!)]TJ 0 -13.549 Td[({)-333(W)83(o)-55(jo)28(w)27(a\\242)-333(w)27(ama)-333(z)-1(no)28(wuj)-332(przyj)1(dzie)-1(!)-333({)-333(z)-1(au)29(w)27(a\\273y\\252a)-334(cisz)-1(ej)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a.)]TJ 0 -13.549 Td[({)-360(M)1(oi\\261c)-1(ie,)-359(dy\\242)-360(j)1(e)-1(n)1(o)-360(w)28(o)-56(j)1(n\\241)-359(\\273)-1(yj)1(\\246)-1(!)-359({)-359(o)-28(dp)1(ar\\252a)-360(sp)-27(ok)28(o)-56(jn)1(ie,)-360(c)28(ho)-28(\\242)-360(t)1(rw)27(o\\273na)-359(b)28(y\\252a,)]TJ -27.879 -13.549 Td[(b)-27(o)-28(\\242)-368(rozumia\\252a,)-368(\\273e)-368(m)27(u)1(s)-1(i)-367(tu)-367(lada)-367(c)27(h)28(wila)-367(pr)1(z)-1(yl)1(e)-1(cie)-1(\\242)-368(k)28(o)28(w)28(al)-368(i)-367(b)-28(ez)-368(s)-1(r)1(ogiej)-368(k)1(\\252)-1(\\363tn)1(i)-368(si\\246)]TJ 0 -13.55 Td[(ni)1(e)-334(ub)-27(\\246dzie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ino)-333(ic)27(h)-333(p)1(atrze)-1(\\242!)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(ze)-334(ws)-1(p)-27(\\363\\252c)-1(zuciem)-334(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)1(c)-1(ie)-333(s)-1(i\\246,)-333(wytrzymam)-1(,)-333(n)1(ie)-334(u)1(s)-1(tr)1(as)-1(z\\241)-334(me)-334({)-333(oz)-1(w)28(a\\252a)-334(si\\246)-334(z)-333(u\\261m)-1(i)1(e)-1(c)27(h)1(e)-1(m.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-277(a\\273)-278(g\\252)-1(o)28(w)28(\\241)-278(p)-27(okiw)28(a\\252a)-278(z)-278(p)-27(o)-28(dziwu)-277(nad)-277(ni\\241)-277(s)-1(p)-27(ogl\\241d)1(a)-56(j\\241c)-278(p)-27(orozumie-)]TJ -27.879 -13.549 Td[(w)28(a)27(w)28(c)-1(zo)-333(na)-333(Jam)27(b)1(ro\\273a,)-334(k)1(t\\363ren)-333(w\\252)-1(a\\261ni)1(e)-334(s)-1(k)1(\\252ada\\252)-334(r)1(ob)-28(ot)1(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-241(Za)-56(j)1(rz\\246)-242(do)-241(k)28(o\\261c)-1(i)1(o\\252)-1(a,)-240(p)-28(o\\252u)1(dni)1(e)-242(p)1(rz)-1(edzw)27(on)1(i\\246)-241(i)-241(z)-1(ar)1(az)-242(na)-241(ob)1(iad)-241(wr\\363)-27(c)-1(\\246!)-241({)-241(rze)-1(k\\252.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-335(wr\\363)-28(ci\\252)-334(ryc)27(h)1(\\252o)-335(op)-27(o)28(wiada)-55(j\\241c,)-335(\\273e)-335(ju)1(\\273)-335(ksi\\246)-1(\\273a)-335(p)1(rzy)-335(stole)-335(siedz\\241,)-335(\\273e)-335(m\\252y-)]TJ -27.879 -13.549 Td[(nar)1(z)-385(p)1(rzys)-1(\\252a\\252)-384(r)1(yb)-384(ca\\252y)-384(wi\\246c)-1(ierz)-384(i)-384(\\273e)-385(p)-27(o)-384(obi)1(e)-1(d)1(z)-1(ie)-384(b)-27(\\246)-1(d)1(\\241)-384(jes)-1(zc)-1(ze)-385(sp)-27(o)27(wiad)1(ali,)-383(gdy\\273)]TJ 0 -13.549 Td[(si\\252a)-334(n)1(aro)-28(d)1(u)-333(c)-1(ze)-1(k)56(a.)]TJ 27.879 -13.549 Td[(P)28(o)-366(p)1(r\\246dkim)-366(i)-366(kr)1(\\363tkim)-366(obi)1(e)-1(d)1(z)-1(ie,)-366(j)1(e)-1(n)1(o)-366(t\\246)-1(go)-366(zakrop)1(ion)28(ym,)-366(b)-27(o)-366(Jam)27(b)1(ro\\273)-366(wy-)]TJ -27.879 -13.55 Td[(rze)-1(k)56(a\\252)-334(\\273a\\252o)-1(\\261liwie,)-334(j)1(ak)28(o)-334(gorza\\252)-1(k)56(a)-334(za)-334(s)-1(\\252ab)1(a)-334(do)-334(tak)-334(p)1(rze)-1(s\\252onia\\252yc)28(h)-334(\\261ledzi,)-334(wz)-1(i)1(\\246)-1(li)-333(s)-1(i\\246)]TJ 0 -13.549 Td[(zno)28(wu)-333(do)-333(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-254(b)28(y)1(\\252)-254(Jam)28(bro\\273y)-254(\\242wierto)28(w)27(a\\252)-253(w)-1(i)1(e)-1(p)1(rz)-1(a)-253(i)-253(obrzyna\\252)-253(m)-1(i)1(\\246)-1(siw)28(o)-254(na)-253(kie\\252basy)83(,)]TJ -27.879 -13.549 Td[(a)-495(Jagust)28(ynk)56(a,)-495(roz\\252o\\273)-1(y)1(w)-1(sz)-1(y)-495(p)-27(o\\252cie)-496(na)-495(stole;)-495(ucz)-1(yn)1(ion)28(ym)-495(z)-1(e)-495(drzwi,)-495(nar)1(z)-1(y)1(na\\252a)]TJ 0 -13.549 Td[(s\\252)-1(on)1(in)1(\\246)-1(,)-333(troskli)1(w)-1(i)1(e)-334(j\\241)-333(pr)1(z)-1(es)-1(al)1(a)-56(j\\241c,)-333(gdy)-333(wlec)-1(ia\\252)-333(k)28(o)28(w)27(al)1(.)]TJ 27.879 -13.55 Td[(Wid)1(no)-333(m)27(u)-332(b)28(y\\252o)-334(z)-333(t)28(w)27(arzy)84(,)-334(\\273e)-334(ledwie)-333(s)-1(i\\246)-333(hamo)28(w)27(a\\252.)]TJ 0 -13.549 Td[({)-348(Nie)-348(w)-1(i)1(e)-1(d)1(z)-1(ia\\252em)-1(,)-347(\\273)-1(e\\261)-1(cie)-348(a\\273)-349(t)28(ylego)-348(wie)-1(p)1(rzk)55(a)-348(sobi)1(e)-349(ku)1(pil)1(i!)-348({)-348(z)-1(acz\\241\\252)-349(z)-348(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(k)56(\\241s)-1(em.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(upi)1(\\252am)-334(i)-333(s)-1(zlac)27(h)29(tuj)1(\\246)-1(,)-333(widzicie!)]TJ 0 -13.549 Td[(St)1(rac)27(h)-333(j)1(\\241)-334(\\271dziebk)28(o)-333(pr)1(z)-1(ej\\241\\252.)]TJ 0 -13.549 Td[({)-333(Sieln)28(y)-333(wiepr)1(z)-1(ak,)-333(d)1(ali\\261c)-1(ie)-333(z)-1(e)-334(tr)1(z)-1(y)1(dzie)-1(\\261c)-1(i)-333(r)1(ubl)1(i...)]TJ 0 -13.55 Td[(Ogl\\241d)1(a\\252)-334(go)-333(p)1(ilni)1(e)-1(.)]TJ 0 -13.549 Td[({)-343(A)-343(s)-1(\\252on)1(in\\246)-343(to)-343(m)-1(a)-343(gr)1(ub)1(\\241,)-343(\\273)-1(e)-343(s)-1(zuk)56(a\\242!)-343({)-343(z)-1(a\\261m)-1(i)1(a\\252a)-344(si\\246)-343(s)-1(tar)1(a)-343(p)-28(o)-28(d)1(s)-1(u)29(w)27(a)-55(j\\241c)-343(m)27(u)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-333(o)-28(cz)-1(y)-333(p)-27(o\\252e)-1(\\242.)]TJ 27.879 -13.549 Td[({)-337(I...)-336(niec)-1(a\\252e)-337(trzyd)1(z)-1(ie\\261)-1(ci)-337(d)1(a\\252am)-1(,)-336(niec)-1(a\\252e!)-337({)-337(o)-28(d)1(p)-28(o)28(wiedzia\\252a)-337(z)-337(prze)-1(\\261mie)-1(c)28(hem)]TJ -27.879 -13.549 Td[(Hank)56(a.)]TJ 27.879 -13.55 Td[({)-457(Bory)1(no)28(wy)-457(wieprze)-1(k)1(!)-457({)-456(w)-1(y)1(buc)28(hn)1(\\241\\252)-457(nar)1(az)-458(n)1(ie)-457(mog\\241c)-457(ju\\273)-457(p)-27(o)28(w)-1(strzyma\\242)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261ci.)]TJ\nET\nendstream\nendobj\n1268 0 obj <<\n/Type /Page\n/Contents 1269 0 R\n/Resources 1267 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1267 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1272 0 obj <<\n/Length 7972      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(396)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Jaki)-333(to)-333(z)-1(m)28(y\\261)-1(l)1(n)28(y)83(,)-333(n)1(a)28(w)27(et)-334(p)-27(o)-333(ogonie)-333(roz)-1(p)-27(ozna)-333(c)-1(zyj)1(!{)-334(szydzi\\252a)-334(stara.)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(jak)1(im)-334(p)1(ra)28(w)27(em)-334(\\273e)-1(\\261c)-1(i)1(e)-334(z)-1(ar)1(\\273)-1(n)1(\\246)-1(li)1(!)-333({)-334(zakrzycz)-1(a\\252)-333(wz)-1(b)1(urzon)28(y)84(.)]TJ 0 -13.549 Td[({)-347(Ni)1(e)-348(wyk)1(rzykuj)1(c)-1(i)1(e)-1(,)-346(b)-28(o)-346(tu)-346(nie)-347(k)56(arcz)-1(ma,)-347(a)-346(takim)-347(p)1(ra)28(w)27(em,)-347(\\273e)-347(An)28(te)-1(k)-346(pr)1(z)-1(ez)]TJ -27.879 -13.549 Td[(Ro)-28(c)27(h)1(a)-333(przyk)56(az)-1(a\\252)-333(go)-333(z)-1(arzn\\241\\242.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(tu)-333(An)28(tek)-333(m)-1(a)-333(do)-333(rz\\241dze)-1(n)1(ia?)-333(jego)-334(to?)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(\\273e)-334(j)1(e)-1(go!)]TJ 0 -13.549 Td[(Sk)1(rze)-1(p)1(\\252)-1(a)-333(j)1(u\\273)-334(w)-333(s)-1(ob)1(ie)-1(,)-333(n)1(abra\\252a)-333(mo)-28(c)-1(y)-333(d)1(o)-334(w)28(alki)1(.)]TJ 0 -13.549 Td[({)-333(Do)-334(wsz)-1(y)1(s)-1(tki)1(c)27(h)-333(n)1(ale)-1(\\273y!..)1(.)-333(drogo)-333(wy)-333(z)-1(a)-333(ni)1(e)-1(go)-333(z)-1(ap)1(\\252ac)-1(icie!)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(rz)-1(ed)-333(tob)1(\\241)-334(b)-27(\\246dzie)-1(m)-333(z)-1(d)1(a)27(w)28(a\\242)-334(spra)28(w)28(\\246)-1(!)]TJ 0 -13.549 Td[({)-333(Ino)-333(przed)-333(kim?)-334(Do)-333(s\\241du)-333(p)-27(\\363)-56(j)1(dzie)-334(sk)55(ar)1(ga.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-27(c)-1(ie,)-333(pr)1(z)-1(ywr)1(z)-1(yj)1(c)-1(ie)-333(p)28(ysk,)-333(b)-28(o)-333(c)27(h)1(ory)-333(tu)-333(an)1(o)-334(l)1(e)-1(\\273y)83(,)-333(a)-333(jego)-334(t)1(o)-334(wsz)-1(y\\242k)28(o...)]TJ 0 -13.55 Td[({)-333(Ale)-334(wy)-333(b)-28(\\246dziec)-1(i)1(e)-334(jedli)1(.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(w)28(am)-1(a)-333(ni)1(e)-334(dam)-333(i)-334(p)-27(o)28(w)27(\\241c)28(ha\\242.)]TJ 0 -13.549 Td[({)-333(P)28(\\363\\252)-334(\\261wini)-333(d)1(ac)-1(i)1(e)-334(i)-333(piek\\252a)-333(w)27(am)-334(r)1(obi\\242)-333(nie)-333(b)-28(\\246d\\246)-334({)-333(sz)-1(epn)1(\\241\\252)-334(\\252ago)-28(d)1(niej.)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(e)-1(d)1(nego)-334(k)1(ulasa)-334(p)1(rze)-1(z)-334(m)28(us)-333(nie)-334(d)1(os)-1(t)1(aniec)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(p)-27(o)-333(dob)1(ro)-28(ci)-333(dacie)-334(t\\246)-334(oto)-333(\\242w)-1(i)1(e)-1(r)1(\\242)-334(i)-333(p)-28(o\\252e\\242)-334(s\\252)-1(on)1(in)28(y)84(.)]TJ 0 -13.55 Td[({)-333(An)28(tek)-334(k)56(a\\273e)-334(w)28(am)-334(da\\242,)-333(to)-334(d)1(am,)-334(al)1(e)-334(b)-27(e)-1(z)-334(j)1(e)-1(go)-333(pr)1(z)-1(y)1(k)55(azu)-333(ni)-333(k)28(oste)-1(czki.)]TJ 0 -13.549 Td[({)-313(W\\261c)-1(iek\\252a)-313(si\\246)-314(b)1(aba!.)1(..)-313(An)28(tk)28(\\363)28(w)-313(to)-313(w)-1(i)1(e)-1(p)1(rz)-1(ak)-312(c)-1(zy)-313(c)-1(o?{)-313(z\\252)-1(o\\261\\242)-314(go)-313(zn\\363)28(w)-313(p)-28(on)1(o-)]TJ -27.879 -13.549 Td[(si\\252a.)]TJ 27.879 -13.549 Td[({)-349(Ojco)28(w)-1(y)84(,)-349(to)-350(j)1(akb)28(y)-349(b)28(y\\252o)-349(An)28(tk)28(o)28(w)-1(y)84(,)-349(b)-28(o)-349(s)-1(k)28(or)1(o)-350(o)-28(ciec)-350(c)27(h)1(orz)-1(y)84(,)-349(to)-350(on)-349(tu)-349(r)1(z)-1(\\241d)1(z)-1(i)]TJ -27.879 -13.549 Td[(za)-334(n)1(ie)-1(go)-333(i)-333(jego)-333(g\\252o)27(w)28(\\241)-334(wsz)-1(y)1(\\242)-1(k)28(o)-333(s)-1(toi)1(.)-333(A)-334(p)-27(otem)-334(b)-27(\\246)-1(d)1(z)-1(ie,)-333(jak)-333(P)28(an)-333(Jezus)-334(d)1(a...)]TJ 27.879 -13.55 Td[({)-246(W)-246(kr)1(e)-1(minal)1(e)-247(n)1(ie)-1(c)28(h)-246(se)-247(rz\\241dzi,)-246(j)1(ak)-246(m)27(u)-246(p)-27(ozw)27(ol\\241.)1(..)-246(Smaku)1(je)-246(m)27(u)-246(gosp)-28(o)-27(dark)56(a,)]TJ -27.879 -13.549 Td[(p)-27(o)27(wlok)56(\\241)-385(go)-385(w)-385(k)56(a)-55(jdan)1(ac)27(h)-384(na)-385(S)1(ybi)1(r)-385(i)-385(t)1(am)-386(se)-385(b)-28(\\246dzie)-385(gos)-1(p)-27(o)-28(d)1(arz)-1(y)1(\\252!)-385({)-385(wykr)1(z)-1(yk)1(n\\241\\252)]TJ 0 -13.549 Td[(spienion)29(y)83(.)]TJ 27.879 -13.549 Td[({)-392(W)83(ar)1(a)-393(ci)-393(o)-27(d)-392(niego!..)1(.)-393(mo\\273e)-393(i)-392(p)-28(o)28(wlek)55(\\241.)1(..)-392(jeno)-392(\\273)-1(e)-393(i)-392(tak)-392(n)1(ie)-393(ogry)1(z)-1(ies)-1(z)-392(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(zagon\\363)28(w,)-414(b)29(y\\261)-414(latego)-413(i)-414(gor)1(s)-1(zym)-414(j)1(e)-1(szc)-1(ze)-414(ju)1(dasz)-1(em)-414(sta\\252)-414(si\\246)-414(l)1(a)-414(n)1(aro)-28(d)1(u!)-413({)-413(m)-1(\\363)28(wi\\252a)]TJ 0 -13.55 Td[(gro\\271ni)1(e)-1(,)-333(roztrz\\246)-1(sion)1(a)-334(n)1(ag\\252ym)-334(strac)27(h)1(e)-1(m)-333(o)-334(m\\246\\273)-1(a.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(alo)28(w)-1(i)-301(a\\273)-302(ku)1(las)-1(y)-301(zadygota\\252y)-301(i)-301(r\\246c)-1(e)-302(j)1(\\246)-1(\\252y)-301(dr\\273e\\242)-302(i)-302(tr)1(z)-1(epa\\242)-302(si\\246)-302(p)-27(o)-302(o)-28(d)1(z)-1(i)1(e)-1(n)1(iu,)]TJ -27.879 -13.549 Td[(tak)56(\\241)-352(c)27(h)1(\\246)-1(\\242)-352(p)-27(o)-28(c)-1(zu\\252)-352(za)-352(gard)1(z)-1(iel)-352(j)1(\\241)-352(c)27(h)28(y)1(c)-1(i\\242,)-352(p)-27(o)28(w)-1(l)1(e)-1(c)-352(p)-27(o)-352(iz)-1(b)1(ie)-352(i)-352(sk)28(opa\\242,)-352(ale)-352(s)-1(i\\246)-352(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(zdzie)-1(r)1(\\273)-1(y\\252,)-267(lud)1(z)-1(ie)-268(b)28(yl)1(i)-268({)-268(jeno)-268(cisk)55(a\\252)-268(w)-268(n)1(i\\241)-268(rozs)-1(r)1(o\\273)-1(on)28(y)1(m)-1(i)-267(\\261)-1(lepiami,)-267(s)-1(\\252o)28(w)27(a)-268(n)1(ie)-268(m)-1(og\\241c)]TJ 0 -13.549 Td[(wykr)1(z)-1(tu)1(s)-1(i\\242.)-323(Ale)-323(ona)-322(s)-1(i\\246)-323(ni)1(e)-324(u)1(l\\246)-1(k)1(\\252a,)-323(bier\\241c)-323(n\\363\\273)-323(do)-323(k)1(ra)-56(j)1(ani)1(a)-323(m)-1(i\\246sa)-323(i)-323(b)28(ystro)-323(a)-323(u)1(r\\241-)]TJ 0 -13.55 Td[(gliwie)-312(patr)1(z)-1(\\241c)-312(w)-312(niego,)-312(a\\273)-312(przysiad\\252)-312(n)1(a)-312(s)-1(kr)1(z)-1(yn)1(i,)-312(p)1(apierosa)-312(s)-1(k)1(r\\246)-1(ca\\252)-312(i)-312(cz)-1(erw)28(on)28(ymi)]TJ 0 -13.549 Td[(\\261le)-1(p)1(iami)-348(iz)-1(b)-27(\\246)-348(oblat)28(yw)28(a\\252)-348(roz)-1(w)28(a\\273a)-56(j\\241c)-348(c)-1(osik)-348(w)-348(s)-1(ob)1(ie)-348(i)-348(k)55(al)1(kulu)1(j\\241c,)-348(b)-27(o)-349(wsta\\252)-348(ryc)28(h\\252o)]TJ 0 -13.549 Td[(i)-333(rze)-1(k)1(\\252)-334(d)1(obrotl)1(iwie)-1(:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(n)1(o)-334(n)1(a)-334(d)1(ru)1(g)-1(\\241)-333(stron)1(\\246)-1(,)-333(rze)-1(k)1(n\\246)-334(co\\261)-334(w)28(a)-56(j)1(u)-333(na)-333(z)-1(go)-28(d)1(\\246)-1(.)]TJ 0 -13.549 Td[(Otar)1(\\252s)-1(zy)-333(r\\246)-1(ce)-334(p)-27(os)-1(z\\252a,)-333(p)-28(ozos)-1(t)1(a)27(wia)-55(j\\241c)-334(wyw)28(arte)-333(na)-333(o\\261)-1(cie\\273)-334(dr)1(z)-1(wi.)]TJ 0 -13.549 Td[({)-333(Nie)-334(c)27(h)1(c)-1(\\246)-333(s)-1(i\\246)-333(z)-334(w)27(ami)-333(pr)1(a)28(w)27(o)28(w)27(a\\242)-333(tu)-333(i)-333(k\\252\\363)-28(ci\\242)-334({)-333(z)-1(acz)-1(\\241\\252)-333(z)-1(ap)1(ala)-56(j)1(\\241c)-334(p)1(apierosa.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(ni)1(c)-334(z)-1(e)-333(m)-1(n)1(\\241)-334(n)1(ie)-334(zw)27(o)-55(ju)1(jec)-1(ie!)]TJ 0 -13.549 Td[(Usp)-28(ok)28(oi\\252a)-333(si\\246)-334(zno)28(wu.)]TJ 0 -13.549 Td[({)-333(M\\363)28(wi\\252)-334(co)-333(jes)-1(zc)-1(ze)-334(o)-28(ciec)-334(w)27(cz)-1(or)1(a)-56(j)1(?)]TJ 0 -13.549 Td[(\\212ago)-28(d)1(n)28(y)-333(ju)1(\\273)-334(b)28(y\\252,)-333(u)1(\\261)-1(mie)-1(c)28(ha\\252)-333(s)-1(i)1(\\246)-334(do)-333(ni)1(e)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Ni...)-333(le\\273a\\252)-334(cic)27(h)1(o,)-333(jak)28(o)-333(i)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(le\\273)-1(y)84(...)]TJ 0 -13.55 Td[(P)28(o)-28(d)1(e)-1(j)1(rzliw)28(a)-334(czujn)1(o\\261)-1(\\242)-333(w)-334(ni)1(e)-1(j)-333(wsta\\252a.)]TJ 0 -13.549 Td[({)-428(W)1(ie)-1(p)1(rzak)-428(f)1(ras)-1(zki)-427(m)-1(a\\252e)-428(p)1(tas)-1(zki,)-427(z)-1(ar)1(z)-1(yn)1(a)-56(j)1(c)-1(i)1(e)-429(go)-427(s)-1(ob)1(ie)-428(i)-428(zjedzc)-1(i)1(e)-1(,)-427(w)27(asz)-1(a)]TJ\nET\nendstream\nendobj\n1271 0 obj <<\n/Type /Page\n/Contents 1272 0 R\n/Resources 1270 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1257 0 R\n>> endobj\n1270 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1275 0 obj <<\n/Length 8756      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(397)]TJ -358.232 -35.866 Td[(w)28(ola...)-466(n)1(ie)-467(mo)-55(ja)-466(s)-1(t)1(rata.)-466(Cz)-1(\\252o)28(wiek)-466(nieraz)-466(pl)1(e)-1(cie)-1(,)-465(c)-1(ze)-1(go)-466(p)-27(ote)-1(m)-466(\\273a\\252)-1(u)1(je.)-466(Nie)-466(pa-)]TJ 0 -13.549 Td[(mi\\246)-1(t)1(a)-56(jcie,)-429(com)-429(rzek\\252!)-429(O)-428(w)28(a\\273)-1(n)1(ie)-1(j)1(s)-1(z\\241)-429(spr)1(a)28(w)27(\\246)-429(id)1(z)-1(i)1(e)-1(..)1(.)-429(Wi)1(e)-1(cie,)-429(p)-27(o)28(w)-1(i)1(ada)-55(j\\241)-429(w)28(e)-429(ws)-1(i)1(,)]TJ 0 -13.549 Td[(jak)28(o)-344(o)-28(cie)-1(c)-345(ma)-56(j)1(\\241)-345(mie\\242)-345(s)-1(p)-27(oro)-345(got)1(o)27(w)28(e)-1(go)-344(grosz)-1(a)-344(gdzie)-1(sik)-344(w)-345(c)27(h)1(a\\252upi)1(e)-345(s)-1(c)27(h)1(o)28(w)27(an)1(e)-1(go..)1(.)]TJ 0 -13.549 Td[({)-311(P)1(rz)-1(erw)28(a\\252)-311(wwie)-1(r)1(c)-1(a)-55(j\\241c)-311(s)-1(i)1(\\246)-312(o)-27(c)-1(zyma)-311(w)-311(jej)-311(t)28(w)28(arz.)-311({)-311(O)1(p\\252ac)-1(i)1(\\252ob)28(y)-311(si\\246)-311(p)-28(osz)-1(u)1(k)56(a\\242)-1(,)-310(bro\\253)]TJ 0 -13.549 Td[(Bo\\273)-1(e)-334(\\261mie)-1(r)1(c)-1(i,)-333(to)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(s)-1(i\\246)-333(k)55(a)-55(j)-333(z)-1(ap)-27(o)-28(d)1(z)-1(i)1(e)-1(j\\241)-333(alb)-27(o)-333(kto)-333(ob)-28(cy)-333(z)-1(\\252ap)1(ie)-1(.)]TJ 27.879 -13.55 Td[({)-333(A)-334(p)-27(o)28(wie)-334(to,)-333(k)56(a)-56(j)-333(sc)27(h)1(o)27(w)28(a\\252!)]TJ 0 -13.549 Td[(G\\252\\246b)-28(ok)56(\\241)-333(niepr)1(z)-1(eni)1(kliw)28(o\\261)-1(\\242)-333(m)-1(ia\\252a)-333(w)-334(o)-27(c)-1(zac)27(h.)]TJ 0 -13.549 Td[({)-333(W)83(am)-333(b)28(y)-333(w)-1(y)1(\\261)-1(p)1(ie)-1(w)28(a\\252,)-333(b)28(y\\261c)-1(ie)-333(go)-334(i)1(no)-333(m)-1(\\241d)1(rze)-334(z)-1(a)-333(j\\246zyk)-333(p)-28(o)-27(c)-1(i\\241)-27(gn\\246li.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(in)1(o)-334(m)28(u)-333(rozum)-334(p)1(rzyjd)1(z)-1(i)1(e)-1(,)-333(p)-27(opr\\363b)1(uj)1(\\246)-334(wyp)28(yta\\242...)]TJ 0 -13.549 Td[({)-349(B)-1(y)1(\\261)-1(cie)-350(m\\241dr)1(\\241)-350(b)28(y)1(li)-349(i)-349(j\\246z)-1(yk)-349(za)-350(z\\246bami)-349(trzym)-1(al)1(i,)-349(to)-350(o)-349(t)28(ym,)-349(gdyb)29(y)-349(s)-1(i\\246)-349(pie-)]TJ -27.879 -13.549 Td[(ni)1(\\241dze)-324(znalaz\\252y)83(,)-323(mo\\273e)-1(m)-323(ino)-323(n)1(a)-324(sp)-27(\\363\\252)-1(k)28(\\246)-323(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)-323(Znalaz\\252b)28(y)-323(si\\246)-324(wi\\246ksz)-1(y)-323(gr)1(os)-1(z,)-323(to)]TJ 0 -13.55 Td[(b)28(y)-302(b)28(y\\252o)-303(\\252acniej)-302(i)-303(An)28(t)1(k)55(a)-302(w)-1(y)1(kup)1(i\\242)-303(z)-303(krem)-1(i)1(na\\252u.)1(..)-303(a)-302(p)-28(o)-302(c)-1(o)-303(d)1(ru)1(gie)-303(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-303(ma)-56(j\\241?..)1(.)]TJ 0 -13.549 Td[(Jagn)1(a)-393(ma)-393(d)1(os)-1(y)1(\\242)-393(z)-1(ap)1(isu..)1(.)-393(i)-392(mo\\273)-1(n)1(a)-392(b)28(y)-392(te)-1(\\273)-392(na)-392(pro)-27(c)-1(es)-393(mie)-1(\\242,)-392(b)28(y)-392(jej)-392(te)-393(morgi)-392(wy-)]TJ 0 -13.549 Td[(pr)1(a)28(w)27(o)28(w)27(a\\242...)-404(A)-404(G)1(rz)-1(eli)-404(ma\\252o)-404(to)-405(p)-27(osy\\252ali)-404(do)-404(w)28(o)-56(j)1(s)-1(k)56(a!)-404({)-404(s)-1(ze)-1(p)1(ta\\252)-404(nac)27(h)29(yla)-56(j)1(\\241c)-405(si\\246)-405(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-245(P)1(ra)28(wd\\246)-245(m\\363)28(w)-1(i)1(c)-1(ie...)-244(ju)1(\\261)-1(ci..)1(.)-245({)-244(j\\241k)56(a\\252a)-245(strze)-1(g\\241c)-245(si\\246,)-245(b)28(y)-244(z)-245(cz)-1(ym)-245(si\\246)-245(n)1(ie)-245(wyrw)28(a\\242)-1(.)]TJ 0 -13.55 Td[({)-333(Rac)27(h)28(u)1(j\\246,)-334(\\273e)-334(m)28(usia\\252)-334(k)56(a)-55(j)-333(w)-334(c)27(h)1(a\\252up)1(ie)-334(sc)27(ho)28(w)28(a\\242)-1(.)1(..)-333(jak)-333(u)28(w)28(a\\273)-1(acie?)]TJ 0 -13.549 Td[({)-333(Wiem)-334(to,)-333(kiej)-333(mi)-333(o)-334(t)28(ym)-333(ni)-333(s\\252)-1(\\363)28(wkiem)-334(n)1(ie)-334(zatr\\241ci\\252?..)]TJ 0 -13.549 Td[({)-333(O)-333(z)-1(b)-27(o\\273)-1(u)-333(w)28(am)-334(cos)-1(i)1(k)-334(w)28(cz)-1(ora)-55(j)-333(pr)1(a)28(w)-1(i)1(\\252)-1(.)1(..)-333(nie)-333(bacz)-1(ycie)-334(to?)-333({)-333(p)-28(o)-28(d)1(s)-1(u)29(w)27(a\\252.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(o)-333(s)-1(i)1(e)-1(w)28(ac)27(h)-333(ws)-1(p)-27(omina\\252.)]TJ 0 -13.549 Td[(I)-333(o)-334(b)-27(e)-1(czk)55(ac)28(h)-333(c)-1(osik)-333(p)-27(o)27(wiad)1(a\\252)-334({)-333(pr)1(z)-1(y)1(p)-28(omin)1(a\\252)-334(n)1(ie)-334(s)-1(p)1(usz)-1(cza)-56(j\\241c)-333(z)-334(ni)1(e)-1(j)-333(o)-28(czu.)]TJ 0 -13.55 Td[({)-367(Jak\\273)-1(e!)-367(b)-28(o)-27(\\242)-368(w)-368(b)-27(e)-1(cz)-1(k)56(ac)27(h)-367(stoi)-367(z)-1(b)-27(o\\273e)-368(do)-367(s)-1(i)1(e)-1(wu!)-367({)-367(z)-1(a)28(w)27(o\\252a\\252a,)-367(ni)1(b)28(y)-367(nie)-368(r)1(oz)-1(u)1(-)]TJ -27.879 -13.549 Td[(mie)-1(j)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[(Zakl\\241\\252)-479(z)-480(c)-1(ic)28(ha,)-479(ale)-480(si\\246)-480(teraz)-480(ut)28(wierdza\\252)-480(coraz)-480(b)1(ardziej)-479(\\273)-1(e)-480(on)1(a)-480(co\\261)-480(w)-1(i)1(e)-1(;)]TJ -27.879 -13.549 Td[(wycz)-1(yta\\252)-333(to)-333(z)-334(jej)-333(t)28(w)27(ar)1(z)-1(y)-333(zam)-1(k)1(ni\\246tej)-333(i)-333(z)-334(o)-28(c)-1(zu)-333(zb)28(yt)-333(pr)1(z)-1(ycza)-56(jon)29(yc)27(h)-333(i)-333(tr)1(w)27(o\\273n)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(com)-334(w)28(a)-56(j)1(u)-333(z)-1(a)28(wierz)-1(y)1(\\252,)-334(n)1(ie)-334(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada)-55(jcie)-1(.)1(..)]TJ 0 -13.55 Td[({)-333(Plec)-1(i)1(uc)27(h)-332(to)-334(j)1(e)-1(ste)-1(m,)-333(kt\\363r)1(e)-1(m)28(u)-333(pil)1(no)-333(z)-334(no)28(win)1(k)55(ami)-333(p)-27(o)-334(ku)1(mac)27(h?..)1(.)]TJ 0 -13.549 Td[({)-350(Dy)1(\\242)-350(prze)-1(strzegam)-350(ino..)1(.)-350(Ale)-350(p)1(iln)28(u)1(jcie)-350(dob)1(rze)-1(,)-349(b)-28(o)-349(s)-1(k)28(or)1(o)-350(ju)1(\\273)-350(raz)-350(starem)27(u)]TJ -27.879 -13.549 Td[(za\\261)-1(wita\\252o)-333(w)27(e)-334(\\252b)1(ie,)-334(t)1(o)-334(mo\\273)-1(e)-333(m)27(u)-333(si\\246)-334(leda)-333(p)1(ac)-1(ierz)-334(ca\\252kiem)-334(rozwidn)1(i\\242...)]TJ 27.879 -13.549 Td[({)-333(No...)-333(ni)1(e)-1(c)28(h)28(b)28(y)-333(pr)1(z)-1(ysz)-1(\\252o)-333(do)-333(tego)-334(co)-333(ryc)28(hlej!.)1(..)]TJ 0 -13.549 Td[(Ob)1(rzuci\\252)-376(j\\241)-375(lepkimi)-375(\\261)-1(lepi)1(am)-1(i)-375(raz)-376(i)-375(dru)1(gi,)-375(p)-28(oskub)1(a\\252)-376(w)28(\\241s)-1(\\363)28(w)-376(i)-375(w)-1(y)1(s)-1(ze)-1(d)1(\\252,)-376(o)-28(d)1(-)]TJ -27.879 -13.55 Td[(pr)1(o)28(w)27(ad)1(z)-1(an)28(y)-333(j)1(e)-1(j)-333(o)-28(czym)-1(a,)-333(p)-27(e\\252)-1(n)29(ymi)-334(p)1(rzyta)-56(j)1(onej)-333(sz)-1(yd)1(liw)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Jud)1(as)-1(z,)-333(\\261)-1(cierw)27(o,)-333(zb)-28(\\363)-55(j!)]TJ 0 -13.549 Td[(Buc)27(h)1(n\\246\\252a)-346(n)1(ie)-1(n)1(a)28(w)-1(i)1(\\261)-1(ci\\241,)-346(p)-27(ost\\246)-1(p)1(uj)1(\\241c)-346(z)-1(a)-345(nim)-346(p)1(ar\\246)-346(krok)28(\\363)28(w;)-345(b)-28(o)-28(\\242)-346(t)1(o)-346(ni)1(e)-347(p)-27(o)-345(raz)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(y)-454(cisk)55(a)-454(j)1(e)-1(j)-454(w)-454(o)-28(cz)-1(y)-454(gro\\271b)28(y)-454(i)-454(s)-1(t)1(rac)27(h)1(ania,)-454(\\273e)-455(An)28(tk)56(a)-454(na)-454(Sy)1(bir)-454(p)-27(o\\261l\\241)-455(i)-454(d)1(o)]TJ 0 -13.549 Td[(tacz)-1(ek)-333(przyku)1(j\\241.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-318(\\273e)-318(nie)-318(ca\\252kiem)-318(wie)-1(r)1(z)-1(y\\252a)-317(rozumie)-1(j)1(\\241c)-1(,)-317(i\\273)-318(g\\252\\363)28(w)-1(n)1(ie)-318(pr)1(z)-1(ez)-318(z)-1(\\252o\\261\\242)-318(p)28(yskuj)1(e)-1(,)]TJ -27.879 -13.55 Td[(ab)28(y)-333(j)1(\\241)-334(p)1(rze)-1(trw)28(o\\273y\\242)-334(i)-333(b)-27(e)-1(z)-334(to)-333(\\252acniej)-333(z)-334(c)27(h)1(a\\252up)28(y)-333(wygr)1(y\\271)-1(\\242.)]TJ 27.879 -13.549 Td[(Ale)-419(mim)-1(o)-418(te)-1(go)-419(\\273ar\\252a)-419(j)1(\\241)-419(trw)28(oga)-419(o)-419(n)1(ie)-1(go)-418(niem)-1(a\\252a.)-418(Przew)-1(i)1(adyw)28(a\\252a)-419(s)-1(i)1(\\246)-420(te\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-1(r)1(az)-313(i)-312(k)56(a)-56(j)-312(j)1(e)-1(n)1(o)-313(mog\\252a,)-312(co)-313(go)-312(mo\\273)-1(e)-312(z)-1(a)-312(k)56(ara)-312(s)-1(p)-27(otk)56(a\\242)-1(,)-312(miar)1(kuj)1(\\241c)-313(ze)-313(s)-1(m)28(utk)1(ie)-1(m,)-312(i\\273)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-333(na)-333(s)-1(u)1(c)27(h)1(o)-334(u)1(j\\261\\242)-334(m)27(u)-333(n)1(ie)-334(u)1(jd)1(z)-1(ie.)]TJ 27.879 -13.549 Td[({)-282(P)28(o)-282(pr)1(a)27(wd)1(z)-1(ie,)-282(\\273)-1(e)-282(o)-56(j)1(c)-1(a)-282(ro)-28(d)1(z)-1(on)1(e)-1(go)-282(b)1(roni)1(\\252)-1(,)-282(al)1(e)-283(b)-27(oro)28(w)27(ego)-282(z)-1(ak)56(atru)1(pi\\252,)-282(to)-282(j)1(u\\261c)-1(i)]TJ -27.879 -13.55 Td[(p)-27(ok)55(ar)1(a\\242)-334(go)-333(m)27(usz\\241,)-334(j)1(ak\\273e)-1(..)1(.)]TJ 27.879 -13.549 Td[(M\\363)28(wili)-294(co)-294(rozw)27(a\\273ni)1(e)-1(j)1(s)-1(i,)-294(\\273e)-295(si\\246)-294(nij)1(akiej)-294(pr)1(a)28(w)-1(d)1(y)-294(dob)1(i\\242)-295(n)1(ie)-294(m)-1(og\\252a,)-294(b)-27(o)-294(ku\\273den)]TJ\nET\nendstream\nendobj\n1274 0 obj <<\n/Type /Page\n/Contents 1275 0 R\n/Resources 1273 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1273 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1279 0 obj <<\n/Length 9165      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(398)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(in)1(s)-1(z\\241)-384(wyw)28(o)-28(dzi\\252.)-384(Ad)1(w)27(ok)56(at)-383(w)-384(m)-1(i)1(e)-1(\\261c)-1(ie,)-384(d)1(o)-384(kt\\363r)1(e)-1(go)-383(j\\241)-384(k)1(s)-1(i\\241d)1(z)-384(z)-385(l)1(is)-1(t)1(e)-1(m)-384(p)-27(os)-1(\\252a\\252,)-383(p)-28(o-)]TJ 0 -13.549 Td[(wiedzia\\252,)-377(j)1(ak)28(o)-377(mo\\273)-1(e)-377(b)29(y\\242)-377(r\\363\\273nie,)-376(i)-377(ca\\252kiem)-377(\\271)-1(l)1(e)-1(,)-376(i)-376(niez)-1(gor)1(z)-1(ej,)-376(trza)-377(j)1(e)-1(n)1(o)-377(p)1(ie)-1(n)1(i\\246dzy)]TJ 0 -13.549 Td[(na)-315(spra)28(w)28(\\246)-316(nie)-315(s)-1(k)56(\\241)-28(p)1(i\\242)-316(i)-315(c)-1(i)1(e)-1(rp)1(liwie)-316(cze)-1(k)56(a\\242)-1(.)-315(W)84(e)-316(ws)-1(i)-315(za\\261)-316(na)-55(jb)1(arz)-1(ej)-315(j\\241)-315(trw)28(o\\273yli,)-315(\\273e)-316(to)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)-333(p)-27(o)-28(d)1(m)-1(a)28(wia\\252)-333(s)-1(w)28(o)-56(je)-333(w)-1(y)1(m)27(ys\\252y)-333(i)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-333(p)-27(o)-28(dr)1(yc)27(h)29(to)27(wyw)28(a\\252.)]TJ 27.879 -13.549 Td[(Nie)-392(dziw)27(ota)-392(te\\273)-1(,)-392(\\273e)-393(i)-392(teraz)-393(j)1(e)-1(go)-392(s\\252)-1(o)28(w)28(a)-393(k)56(amieniami)-392(pad)1(\\252y)-392(na)-392(du)1(s)-1(z\\246)-1(.)-392(Nogi)]TJ -27.879 -13.55 Td[(p)-27(o)-28(d)-400(n)1(i\\241)-400(tru)1(c)27(hl)1(a\\252)-1(y)-399(przy)-400(rob)-27(o)-28(cie)-1(,)-399(m)-1(\\363)28(wi\\242)-401(n)1(ie)-401(mog\\252a,)-400(tak)-400(j)1(\\241)-400(s)-1(tr)1(ac)27(h)-400(zat)28(yk)56(a\\252)-1(,)-399(a)-401(d)1(o)]TJ 0 -13.549 Td[(tego)-396(z)-1(a\\261)-396(i)-396(Magd)1(a)-396(p)-28(o)-396(j)1(e)-1(go)-396(o)-27(dej\\261c)-1(iu)-395(pr)1(z)-1(yl)1(e)-1(cia\\252a)-396(i)-396(siad\\252a)-396(p)1(rzy)-396(c)27(h)1(orym)-396(ogania)-55(j\\241c)]TJ 0 -13.549 Td[(go)-333(nib)29(y)-334(o)-27(d)-333(m)27(u)1(c)27(h,)-333(k)1(t\\363ryc)27(h)-332(nie)-334(b)29(y\\252o,)-333(a)-334(\\261ledz\\241c)-334(ws)-1(zys)-1(t)1(k)28(o)-334(b)1(ac)-1(zn)28(ymi)-333(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ale)-395(snad)1(\\271)-395(jej)-395(to)-394(wryc)28(hle)-395(ob)1(m)-1(ierz\\252o,)-395(gd)1(y\\273)-395(si\\246)-395(w)-395(rob)-27(o)-28(cie)-395(p)-28(omaga\\242)-395(o\\014ar)1(o-)]TJ -27.879 -13.549 Td[(wyw)28(a\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(tr)1(ud\\271)-333(s)-1(i\\246,)-333(ur)1(adzim)-334(sam)-1(i)1(,)-334(ma\\252o)-333(s)-1(i\\246)-333(to)-334(w)-333(c)27(h)1(a\\252upi)1(e)-334(nah)1(aruj)1(e)-1(sz!)]TJ 0 -13.55 Td[(Od)1(radza\\252a)-306(H)-1(an)1(k)56(a)-307(tak)1(im)-307(g\\252ose)-1(m,)-306(\\273)-1(e)-307(M)1(agda)-306(da\\252a)-306(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-306(p)-28(ogad)1(yw)28(a\\252)-1(a)-306(jeno)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(a)-334(l\\246kli)1(w)-1(i)1(e)-1(,)-333(\\273e)-334(to)-333(ju\\273)-333(z)-334(s)-1(amego)-334(p)1(rzyro)-28(d)1(z)-1(eni)1(a)-334(n)1(ie)-1(\\261mia\\252a)-334(b)29(y\\252a)-334(i)-333(milcz\\241c)-1(a.)]TJ 27.879 -13.549 Td[(A)-470(jak)28(o\\261)-471(na)-470(s)-1(am)28(ym)-471(o)-28(d)1(w)-1(i)1(e)-1(cz)-1(erzu)-471(zja)28(wi\\252a)-471(si\\246)-471(zno)28(wu)-470(Jagu\\261,)-471(ale)-471(w)28(e)-1(sp)-27(\\363\\252)-471(z)]TJ -27.879 -13.549 Td[(matk)56(\\241.)]TJ 27.879 -13.549 Td[(Wit)1(a\\252)-1(y)-434(s)-1(i)1(\\246)-1(,)-434(kieb)28(y)-435(w)-435(n)1(a)-56(j)1(le)-1(p)1(s)-1(zej)-435(zgo)-28(dzie)-435(\\273y\\252y)83(,)-434(i)-435(tak)-434(przyj)1(ac)-1(ielsk)28(o)-435(a)-435(p)1(rzy-)]TJ -27.879 -13.55 Td[(c)27(h)1(lib)1(nie,)-404(a\\273)-405(t)1(o)-405(Han)1(k)28(\\246)-405(tk)1(n\\246\\252o,)-404(i)-404(c)27(h)1(o)-28(c)-1(i)1(a\\273)-405(o)-28(d)1(p\\252aca\\252)-1(a)-404(i)1(m)-405(t)28(ym)-404(s)-1(am)28(ym,)-404(ni)1(e)-405(\\273a\\252)-1(u)1(j\\241c)]TJ 0 -13.549 Td[(dob)1(ryc)28(h)-274(s\\252)-1(\\363)28(w)-274(ni)-274(n)1(a)28(w)27(et)-274(gorza\\252)-1(k)1(i,)-274(mia\\252a)-274(s)-1(i\\246)-274(jedn)1(ak)-274(na)-274(bacz)-1(n)1(o\\261)-1(ci.)-274(Al)1(e)-275(Domini)1(k)28(o)27(w)28(a)]TJ 0 -13.549 Td[(o)-28(d)1(s)-1(u)1(n\\246\\252a)-334(ki)1(e)-1(li)1(s)-1(ze)-1(k.)]TJ 27.879 -13.549 Td[({)-333(Wielki)-333(T)28(ydzie\\253!)-333(Gd)1(z)-1(ie\\273)-1(b)29(ym)-334(to)-333(gorza\\252k)28(\\246)-334(pi)1(\\252)-1(a!)]TJ 0 -13.549 Td[({)-333(Nie)-334(w)-333(k)55(ar)1(c)-1(zm)-1(i)1(e)-334(i)-333(pr)1(z)-1(y)-333(ok)56(az)-1(j)1(i,)-333(to)-28(\\242)-334(n)1(ie)-334(gr)1(z)-1(ec)27(h!)1({)-334(u)1(s)-1(p)1(ra)28(wie)-1(d)1(liwia\\252a)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-333(C)-1(z\\252o)28(w)-1(i)1(e)-1(k)-333(c)27(h)1(\\246)-1(t)1(liwie)-334(se)-334(fol)1(guje)-333(i)-333(rad)-333(za)27(w\\273dy)-333(sp)-28(osobn)1(o\\261)-1(ci\\241)-333(w)-1(y)1(m)-1(a)28(wia...)]TJ 0 -13.549 Td[({)-359(Przepij)1(c)-1(ie,)-359(gos)-1(p)-27(o)-28(d)1(yni)1(,)-360(d)1(o)-359(m)-1(n)1(ie)-1(,)-359(j)1(a)-360(to)-359(n)1(ie)-360(organ)1(ista!{)-359(w)-1(y)1(krzykn\\241\\252)-359(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(.)]TJ 27.879 -13.549 Td[({)-355(Niec)27(h)-354(in)1(o)-355(s)-1(zk\\252o)-355(b)1(rz\\246)-1(kn)1(ie,)-355(to)-355(w)28(as)-355(z)-1(ar)1(no)-355(gr)1(z)-1(ysi)-355(p)-27(onosz\\241)-355({)-355(mruk)1(n\\246\\252)-1(a)-354(Do-)]TJ -27.879 -13.549 Td[(mini)1(k)28(o)27(w)28(a)-333(z)-1(ab)1(ie)-1(r)1(a)-56(j\\241c)-333(s)-1(i\\246)-333(do)-333(opatr)1(z)-1(enia)-333(g\\252o)28(wy)-334(c)28(horego.)]TJ 27.879 -13.55 Td[({)-280(C)-1(i)1(e)-1(..)1(.)-281(k)28(om)28(u)-280(s)-1(ygn)1(atur)1(k)56(a)-281(spra)28(wia,)-280(\\273)-1(e)-280(bij)1(e)-281(s)-1(i)1(\\246)-281(pi\\246\\261)-1(ci\\241)-280(p)-28(ok)1(utn)1(ie)-1(,)-280(a)-280(dru)1(giem)27(u)]TJ -27.879 -13.549 Td[(za\\261)-334(\\015asz)-1(k)28(o)28(wy)-333(p)-28(ob)1(rz\\246)-1(k)-333(to)-333(c)-1(zyn)1(i,)-333(\\273)-1(e)-333(w)-1(p)-27(o)-28(d)1(le)-334(za)-334(k)1(ie)-1(li)1(s)-1(zkiem)-334(mac)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-448(Le\\273)-1(y)-447(s)-1(e)-448(ten)-448(c)28(h)28(ud)1(z)-1(i)1(ac)-1(ze)-1(k,)-447(le\\273)-1(y)-447(i)-448(o)-448(Bo\\273)-1(y)1(m)-448(\\261)-1(wiec)-1(ie)-448(n)1(ie)-448(w)-1(i)1(e)-1(!)-447({)-448(z)-1(a)28(w)28(o\\252a\\252)-1(a)]TJ -27.879 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-334(nad)-333(Bory)1(n\\241.)]TJ 27.879 -13.549 Td[({)-491(I)-490(jad)1(\\252)-491(ki)1(e)-1(\\252basy)-490(nie)-491(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-490(i)-491(gor)1(z)-1(a\\252ki)-490(n)1(ie)-491(p)-28(osmakuj)1(e)-1(?{)-491(ci\\241)-28(gn)1(\\246)-1(\\252a)-490(t)28(ym)]TJ -27.879 -13.55 Td[(sam)27(ym)-333(s)-1(p)-27(os)-1(ob)-27(em)-1(,)-333(a)-333(w)-1(i)1(e)-1(lce)-334(sz)-1(y)1(dliwie)-333(Jagust)28(ynk)56(a.)]TJ 27.879 -13.549 Td[({)-333(W)83(ama)-333(ino)-333(pr)1(z)-1(e\\261)-1(miec)27(h)28(y)-333(n)1(a)-334(p)1(am)-1(i)1(\\246)-1(ci!)-333({)-334(zes)-1(tr)1(ofo)28(w)27(a\\252a)-333(j\\241)-333(gni)1(e)-1(wni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(to?)-333(p\\252ak)56(aniem)-334(b)1(ie)-1(d)1(y)-333(s)-1(e)-333(o)-28(dejm\\246)-1(?)-333(T)27(y)1(la)-333(m)-1(o)-55(jego,)-334(co)-333(s)-1(i\\246)-333(p)-28(o\\261mie)-1(j)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Kto)-333(s)-1(ieje)-333(z)-1(\\252o,)-333(ni)1(e)-1(c)27(h)-332(s)-1(e)-334(sm)27(u)1(tki)-333(zbiera)-333(i)-333(p)-28(ok)1(ut\\246)-334(o)-28(d)1(pr)1(a)27(wu)1(je!...)]TJ 0 -13.549 Td[({)-305(Nie)-305(d)1(armo)-305(p)-27(o)27(wieda)-55(j\\241,)-304(\\273)-1(e)-305(Jam)27(b)1(ro\\273,)-305(c)28(ho)-28(\\242)-305(pr)1(z)-1(y)-304(k)28(o\\261)-1(ciele)-305(s)-1(\\252u\\273y)84(,)-305(a)-305(got\\363)28(w)-305(si\\246)]TJ -27.879 -13.549 Td[(b)28(y)-313(i)-312(z)-314(gr)1(z)-1(yc)28(hem)-314(p)-27(oku)1(m)-1(a\\242,)-313(b)28(y)1(c)27(h)-313(j)1(e)-1(n)1(o)-313(so)-1(b)1(ie)-313(p)-28(of)1(olgo)28(w)27(a\\242)-313(i)-313(u)1(\\273)-1(y\\242!)-313({)-313(r)1(z)-1(ek\\252a)-313(wyni)1(o\\261)-1(le)]TJ 0 -13.55 Td[(Domini)1(k)28(o)27(w)28(a)-333(obrzuca)-56(j)1(\\241c)-334(go)-333(s)-1(r)1(ogim)-1(i)-333(o)-27(c)-1(zyma.)]TJ 27.879 -13.549 Td[({)-359(P)1(rze)-1(ciwi\\242)-359(s)-1(i)1(\\246)-360(d)1(obr)1(e)-1(m)28(u)-359(i)-358(z)-1(e)-359(z\\252ym)-359(kuma\\242)-359(p)-27(otra\\014,)-358(kt\\363r)1(e)-1(n)-358(jeno)-358(nie)-359(b)1(ac)-1(zy)83(,)]TJ -27.879 -13.549 Td[(jak)56(\\241)-333(p)-27(ote)-1(m)-333(w)27(e\\271)-1(mie)-334(zap\\252at\\246)-334({)-333(d)1(o)-28(da\\252a)-333(c)-1(i)1(s)-1(ze)-1(j)1(,)-333(jakb)28(y)-333(gr)1(o\\273)-1(\\241c.)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(n)1(ie)-414(p)1(ad\\252o)-414(n)1(a)-414(i)1(z)-1(b)-27(\\246)-1(.)-413(Jam)28(bro\\273)-414(zakr\\246ci\\252)-414(si\\246)-414(gni)1(e)-1(wni)1(e)-1(,)-413(ale)-414(zdzie)-1(r)1(\\273)-1(a\\252)-413(w)]TJ -27.879 -13.549 Td[(sobie)-501(ostr\\241)-500(o)-28(d)1(p)-28(o)28(wied\\271,)-501(b)-27(o)-28(\\242)-501(wiedzia\\252,)-500(\\273e)-501(i)-500(tak)-501(k)56(a\\273de)-501(j)1(e)-1(go)-500(s\\252)-1(o)28(w)28(o)-501(zna\\252)-500(b)-27(\\246)-1(d)1(z)-1(ie)]TJ 0 -13.55 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-499(n)1(a)-56(j)1(p)-28(\\363\\271ni)1(e)-1(j)-499(j)1(utr)1(o)-499(p)-28(o)-499(ms)-1(zy;)-499(n)1(ie)-500(d)1(armo)-500(Domin)1(ik)28(o)28(w)27(a)-499(p)1(rz)-1(esiadyw)28(a\\252a)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-335(w)-336(k)28(o\\261c)-1(iele...)-335(A)-335(i)-335(resz)-1(ta)-335(zw)27(arzy\\252a)-335(s)-1(i)1(\\246)-336(te\\273)-336(p)-27(o)-28(d)-335(j)1(e)-1(j)-335(so)28(wim)-1(i)-334(\\261)-1(lepiami,)-335(n)1(a)28(w)27(et)]TJ\nET\nendstream\nendobj\n1278 0 obj <<\n/Type /Page\n/Contents 1279 0 R\n/Resources 1277 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1277 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1282 0 obj <<\n/Length 8618      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(399)]TJ -358.232 -35.866 Td[(ni)1(e)-1(u)1(s)-1(t\\246pli)1(w)27(a)-333(Jagust)28(yn)1(k)55(a)-333(pr)1(z)-1(y)1(m)-1(il)1(k\\252a)-334(tr)1(w)27(o\\273ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-324(ca\\252a)-324(w)-1(ie\\261)-325(si\\246)-325(j)1(e)-1(j)-323(b)-28(o)-55(ja\\252a;)-324(ju)1(\\273)-325(p)-27(ono)-324(niejeden)-324(p)-27(o)-28(cz)-1(u)1(\\252)-325(n)1(a)-325(sobi)1(e)-325(m)-1(o)-27(c)-325(jej)]TJ -27.879 -13.549 Td[(z\\252)-1(y)1(c)27(h)-333(\\261le)-1(p)1(i\\363)28(w,)-334(n)1(iejedn)1(e)-1(go)-333(ju)1(\\273)-334(p)-27(okr\\246c)-1(i\\252o)-333(alb)-27(o)-334(r)1(oz)-1(c)28(horza\\252,)-333(gdy)-333(n)1(a\\253)-333(urok)-333(r)1(z)-1(u)1(c)-1(i\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(ac)-1(o)28(w)28(ali)-364(w)-364(c)-1(ic)28(ho\\261c)-1(i)-363(z)-365(p)-27(o)-28(c)27(h)28(y)1(lon)28(ymi)-364(tr)1(w)27(o\\273nie)-364(t)28(w)27(ar)1(z)-1(ami,)-364(\\273e)-365(j)1(e)-1(n)1(o)-364(jej)-364(bi)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(g\\246ba,)-396(suc)27(h)1(a)-396(i)-396(p)-28(or)1(adlon)1(a,)-396(kieb)28(y)-396(z)-397(b)1(lic)27(h)1(o)28(w)27(an)1(e)-1(go)-396(w)27(osku)1(,)-396(nosi\\252a)-396(s)-1(i\\246)-396(p)-28(o)-396(izbi)1(e)-1(.)-396(Nie)]TJ 0 -13.55 Td[(o)-28(d)1(z)-1(yw)28(a\\252a)-328(s)-1(i)1(\\246)-329(r)1(\\363)27(wn)1(ie)-1(\\273)-328(zabiera)-55(j\\241c)-328(s)-1(i\\246)-328(z)-328(Jagn\\241)-328(d)1(o)-328(p)-28(omagan)1(ia)-328(tak)-328(ostro,)-328(\\273e)-328(Hank)56(a)]TJ 0 -13.549 Td[(wz)-1(b)1(ron)1(i\\242)-334(ni)1(e)-334(\\261)-1(mia\\252a.)]TJ 27.879 -13.549 Td[(\\233e)-392(z)-1(a\\261)-392(Jam)27(b)1(ro\\273a)-392(o)-28(d)1(w)27(o\\252a\\252)-392(ksi\\246\\273)-1(y)-392(p)1(arob)-27(e)-1(k)-391(do)-392(k)28(o\\261c)-1(i)1(o\\252a,)-392(osta\\252)-1(y)-391(jeno)-392(same)-1(,)]TJ -27.879 -13.549 Td[(pi)1(lni)1(e)-334(uk\\252ad)1(a)-56(j)1(\\241c)-334(m)-1(i)1(\\246)-1(so)-334(i)-333(p)-27(o\\252c)-1(i)1(e)-334(w)-334(ce)-1(b)1(rzyki)-333(a)-333(b)-28(ec)-1(zk)28(\\246.)]TJ 27.879 -13.549 Td[({)-401(P)28(o)-401(te)-1(j)-400(s)-1(tr)1(onie)-401(w)-402(k)28(omorze)-402(b)-27(\\246)-1(d)1(z)-1(i)1(e)-402(c)27(h)1(\\252o)-28(dn)1(ie)-1(j)-400(la)-401(m)-1(i)1(\\246)-1(sa,)-401(m)-1(n)1(iej)-401(s)-1(i)1(\\246)-402(w)-402(i)1(z)-1(b)1(ie)]TJ -27.879 -13.549 Td[(pal)1(i...)-333({)-333(z)-1(ar)1(z)-1(\\241d)1(z)-1(i\\252a)-333(stara,)-333(wraz)-334(zatac)-1(za)-56(j)1(\\241c)-334(statki)-333(z)-334(Jagu)1(s)-1(i\\241.)]TJ 27.879 -13.55 Td[(T)83(ak)-323(s)-1(i\\246)-324(to)-324(p)1(r\\246dk)28(o)-324(sta\\252o,)-324(\\273e)-324(nim)-324(si\\246)-324(Hank)56(a)-324(mog\\252a)-324(sprzec)-1(iwi\\242,)-324(n)1(im)-324(p)-27(om)-1(iar)1(-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(a\\252a,)-322(j)1(u\\273)-322(one)-323(p)-27(o)28(wtac)-1(za\\252y)-322(do)-322(k)28(omory)84(,)-322(wi\\246)-1(c)-322(s)-1(r)1(o)-28(dze)-323(r)1(oz)-1(e\\271)-1(lon)1(a)-322(z)-1(acz)-1(\\246\\252a)-322(\\261)-1(p)1(ies)-1(znie)]TJ 0 -13.549 Td[(pr)1(z)-1(enosi\\242)-457(n)1(a)-457(sw)27(o)-55(j\\241)-456(s)-1(tr)1(on\\246,)-457(co)-457(i)1(no)-456(p)-28(ozos)-1(ta\\252o,)-456(pr)1(z)-1(y)1(w)27(o\\252uj)1(\\241c)-457(J\\363zk)28(\\246)-457(i)-457(P)1(ietrk)56(a)-457(d)1(o)]TJ 0 -13.549 Td[(p)-27(om)-1(o)-27(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(O)-394(sam)27(ym)-394(zm)-1(ierzc)27(h)28(u)1(,)-394(gdy)-393(ju\\273)-394(z)-1(ap)1(alil)1(i)-394(\\261)-1(wiat\\252o,)-394(zabr)1(ali)-394(si\\246)-395(p)-27(o\\261pies)-1(znie)-394(do)]TJ -27.879 -13.55 Td[(rob)1(ienia)-359(kie\\252bas,)-359(kisz)-1(ek)-359(i)-360(on)29(yc)27(h)-359(gr)1(uba\\261n)28(yc)28(h)-359(s)-1(al)1(c)-1(es)-1(on)1(\\363)28(w)-1(.)-359(Han)1(k)55(a)-359(sie)-1(k)56(a\\252a)-359(m)-1(i)1(\\246)-1(so)-360(z)]TJ 0 -13.549 Td[(jak)56(\\241\\261)-334(p)-27(on)28(u)1(r\\241)-333(w)-1(\\261cie)-1(k)1(\\252)-1(o\\261ci\\241,)-333(tak)-333(b)28(y\\252a)-333(jes)-1(zc)-1(ze)-334(wz)-1(b)1(ur)1(z)-1(on)1(a.)]TJ 27.879 -13.549 Td[({)-318(Nie)-318(z)-1(osta)28(wi\\246)-319(w)-318(tam)28(te)-1(j)-317(k)28(omorz)-1(e,)-318(\\273e)-1(b)29(y)-318(z)-1(ec)27(h)1(la\\252a)-318(alb)-27(o)-318(wynies\\252)-1(a!)-317(Nie)-1(d)1(o)-28(cz)-1(e-)]TJ -27.879 -13.549 Td[(k)56(anie)-333(t)28(w)27(o)-55(je!)-334(T)83(o)-333(ci)-333(forteln)1(ic)-1(a!)-333({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(w)-1(r)1(e)-1(sz)-1(cie)-334(p)1(rze)-1(z)-334(z\\246b)28(y)83(.)]TJ 27.879 -13.549 Td[({)-324(Rano,)-323(p)-28(o)-324(cic)28(h)28(u\\261ku,)-323(jak)-323(p)-28(\\363)-55(jd)1(z)-1(ie)-324(do)-324(k)28(o\\261cio\\252a,)-324(pr)1(z)-1(eni)1(e)-1(\\261\\242)-325(wsz)-1(ystk)28(o)-324(d)1(o)-324(s)-1(w)28(o-)]TJ -27.879 -13.55 Td[(jej)-321(k)28(om)-1(or)1(y)-322(i)-321(b)-28(\\246dzie)-322(p)-27(o)-322(kr)1(z)-1(yk)1(u!)-321(Nie)-322(o)-28(db)1(ije)-322(w)28(am)-322(pr)1(z)-1(ec)-1(iec)27(h)1(!)-322({)-321(radzi\\252a)-322(J)1(agust)27(y)1(nk)56(a)]TJ 0 -13.549 Td[(sz)-1(p)1(rycuj)1(\\241c)-357(mi\\246)-1(so)-356(w)-357(d)1(\\252ugac)28(hne)-356(\\015aki)1(,)-356(\\273)-1(e)-356(s)-1(i)1(\\246)-357(skr\\246c)-1(a\\252y)-356(p)-27(o)-356(s)-1(tol)1(e)-1(,)-356(ki)1(e)-1(j)-355(te)-357(w)28(\\246)-1(\\273e)-357(cz)-1(er-)]TJ 0 -13.549 Td[(w)28(one)-334(a)-333(t\\252uste)-1(,)-333(i)-333(co)-334(t)1(ro)-28(c)27(h)29(u)-333(rozw)-1(i)1(e)-1(sz)-1(a\\252a)-333(je)-333(na)-333(\\273)-1(erdce)-334(n)1(ad)-333(k)28(om)-1(i)1(nem)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(s)-1(p)1(r\\363b)1(uje!)-333(Zm)-1(\\363)28(wi\\252y)-333(si\\246)-334(i)-333(z)-334(t)28(ym)-333(przylec)-1(i)1(a\\252)-1(y)1(?)]TJ 0 -13.549 Td[(Nie)-334(mog\\252a)-333(s)-1(i\\246)-333(usp)-28(ok)28(oi\\242.)]TJ 0 -13.55 Td[({)-333(Nim)-334(Jam)28(br)1(o\\273)-334(w)-1(r)1(\\363)-28(ci,)-333(kie\\252basy)-334(b)-27(\\246d\\241)-333(goto)28(w)27(e...)-333({)-333(z)-1(agad)1(yw)27(a\\252a)-333(stara.)]TJ 0 -13.549 Td[(Ale)-290(Hank)56(a)-290(z)-1(milk\\252a,)-290(za)-56(j)1(\\246)-1(ta)-290(p)1(rac\\241,)-290(a)-291(g\\252\\363)28(wni)1(e)-291(rozm)27(y\\261lan)1(ie)-1(m,)-290(j)1(ak)-290(b)28(y)-290(o)-28(d)1(e)-1(b)1(ra\\242)]TJ -27.879 -13.549 Td[(p)-27(o\\252c)-1(ie)-333(o)27(w)28(e)-334(i)-333(s)-1(zyn)1(ki.)]TJ 27.879 -13.549 Td[(Ogie\\253)-267(trzas)-1(k)56(a\\252)-268(n)1(a)-268(k)28(omini)1(e)-269(i)-267(tak)-267(s)-1(i\\246)-268(gal)1(an)28(to)-268(b)1(uzo)27(w)28(a\\252o,)-268(\\273e)-268(w)-268(ca\\252)-1(ej)-267(izbie)-268(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(cz)-1(erw)28(ono,)-347(w)-347(garac)27(h)-346(park)28(ot)1(a\\252)-1(y)-346(go)-1(t)1(uj\\241ce)-348(si\\246)-347(r\\363\\273no\\261c)-1(i,)-347(z)-347(kt\\363ry)1(c)27(h)-347(cz)-1(y)1(nion)1(o)-347(kisz)-1(ki)1(,)]TJ 0 -13.55 Td[(a)-333(dzie)-1(ci)-333(c)-1(osik)-333(trw)28(o\\273nie)-334(ga)28(w)28(orzy\\252y)-333(nad)-333(n)1(ie)-1(c)28(k)55(ami)-333(z)-334(kr)1(wi\\241.)]TJ 27.879 -13.549 Td[({)-374(Lab)-28(oga,)-373(ja\\273e)-375(me)-375(mdli)-374(o)-27(d)-374(t)28(yc)27(h)-373(s)-1(mak)28(\\363)28(w)-1(!)-374({)-374(w)28(e)-1(stc)27(h)1(n\\241\\252)-374(Wit)1(e)-1(k)-374(p)-27(o)-28(ci\\241)-28(ga)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(nosem)-1(.)]TJ 27.879 -13.549 Td[({)-330(Nie)-330(wyw)28(\\241c)27(h)28(u)1(j,)-329(b)-28(o)-330(mo\\273e)-1(sz)-330(c)-1(o)-330(ob)-27(erw)27(a\\242!)-330(K)1(ro)28(wy)-330(ano)-329(p)-28(\\363)-55(j,)-329(s)-1(ian)1(o)-330(zak\\252ada)-55(j)-330(i)]TJ -27.879 -13.549 Td[(sie)-1(cz)-1(k)28(\\246)-333(na)-333(no)-28(c)-333(z)-1(asypu)1(j..)1(.)-333(P)28(\\363\\271)-1(n)1(o)-334(j)1(u\\273!)-333(Kiedy)-333(to)-333(obr)1(z)-1(\\241d)1(z)-1(isz)-1(?..)1(.)]TJ 27.879 -13.549 Td[({)-333(Pietrek)-333(z)-1(ar)1(az)-334(pr)1(z)-1(yj)1(dzie,)-334(sam)-334(p)1(rze)-1(ciek)-334(n)1(ie)-334(u)1(redz\\246)-1(..)1(.)]TJ 0 -13.55 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(to)-333(p)-28(osz)-1(ed\\252?)]TJ 0 -13.549 Td[({)-333(Nie)-334(wiec)-1(ie?...)-333(p)-27(om)-1(aga)-333(sprz\\241ta\\242)-334(p)-27(o)-333(dru)1(giej)-333(s)-1(tr)1(onie!...)]TJ 0 -13.549 Td[({)-333(C)-1(o?)-333(Pi)1(e)-1(tr)1(e)-1(k!)-333(ru)1(s)-1(za)-56(j)-332(b)28(yd\\252o)-333(obr)1(z)-1(\\241d)1(z)-1(a\\242!)]TJ 0 -13.549 Td[(Kr)1(z)-1(yk)1(n\\246\\252)-1(a)-284(n)1(araz)-285(Han)1(k)56(a)-284(w)-285(sie\\253)-284(z)-285(tak)56(\\241)-284(mo)-28(c\\241,)-284(\\273)-1(e)-284(Pietrek)-284(w)-284(te)-1(n)-283(m)-1(ig)-284(p)-27(olec)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(w)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e.)]TJ 27.879 -13.55 Td[({)-283(A)-283(pr)1(z)-1(y)1(\\252)-1(\\363\\273)-283(ku)1(las)-1(\\363)28(w)-283(i)-283(sam)-1(a)-283(se)-283(iz)-1(b)-27(\\246)-283(w)-1(y)1(p)-28(or)1(z)-1(\\241d)1(\\271)-1(!..)1(.)-283(widzisz)-284(j)1(\\241!...)-282(dzie)-1(d)1(z)-1(i)1(c)-1(zk)55(a)]TJ -27.879 -13.549 Td[(jak)56(a\\261,)-451(r\\241cz)-1(k)28(\\363)28(w)-452(se)-452(sz)-1(cz)-1(\\246dzi,)-451(p)1(arobki)1(e)-1(m)-451(s)-1(i\\246)-451(w)-1(y)1(r\\246c)-1(za!)-451({)-452(w)28(o\\252a\\252a)-452(r)1(oz)-1(\\252osz)-1(cz)-1(on)1(a)-452(d)1(o)]TJ\nET\nendstream\nendobj\n1281 0 obj <<\n/Type /Page\n/Contents 1282 0 R\n/Resources 1280 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1280 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1285 0 obj <<\n/Length 9249      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(400)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ostatk)56(a)-374(w)-1(y)1(w)27(ala)-55(j\\241c)-374(jedn)1(o)-28(cz)-1(e\\261)-1(n)1(ie)-374(na)-374(st\\363\\252)-374(z)-375(gar)1(nk)56(a)-374(dy)1(m)-1(i)1(\\241c)-1(\\241)-374(si\\246)-374(w)27(\\241tr)1(ob)-28(\\246)-374(i)-374(d)1(utki)1(,)]TJ 0 -13.549 Td[(gdy)-333(j)1(aki\\261)-334(w)28(\\363z)-334(zatur)1(k)28(ota\\252)-334(i)-333(d)1(z)-1(w)28(onek)-333(z)-1(a)-55(j\\246c)-1(za\\252)-334(n)1(a)-334(d)1(w)27(or)1(z)-1(e.)]TJ 27.879 -13.549 Td[({)-310(A)-309(to)-310(ksi\\241d)1(z)-310(z)-311(P)29(anem)-310(Je)-1(zuse)-1(m)-310(j)1(e)-1(d)1(z)-1(i)1(e)-310(do)-310(k)28(ogo\\261!..)1(.{)-310(ob)-55(ja\\261ni)1(a\\252)-310(Bylica)-310(aku)1(-)]TJ -27.879 -13.549 Td[(ratn)1(ie)-334(w)28(c)27(h)1(o)-28(dz\\241c)-334(d)1(o)-334(izb)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363\\273)-334(b)28(y)-333(zac)27(h)1(orza\\252)-1(?)-333(nie)-333(s)-1(\\252yc)28(ha\\242)-334(b)29(y\\252o!...)]TJ 0 -13.55 Td[({)-293(Za)-294(w)28(\\363)-56(j)1(to)28(w)27(\\241)-293(c)27(h)1(a\\252up)-27(\\246)-294(p)-27(o)-56(j)1(e)-1(c)28(hali!)-293({)-293(kr)1(z)-1(yk)1(n\\241\\252)-293(pr)1(z)-1(ez)-294(okn)1(o)-294(zady)1(s)-1(zan)28(y)-293(Witek.)]TJ 0 -13.549 Td[({)-333(Ani)-333(c)27(h)29(ybi)-333(d)1(o)-334(kt)1(\\363re)-1(go\\261)-333(z)-334(k)28(om)-1(or)1(nik)28(\\363)28(w...)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(do)-333(w)27(aszyc)27(h)1(,)-334(d)1(o)-333(Pryczk)28(\\363)27(w,)-333(tam)-334(an)1(o)-333(s)-1(iedz\\241...)]TJ 0 -13.549 Td[({)-398(Hale!)-398(zdr)1(o)27(w)28(e)-398(b)28(y\\252y)84(,)-398(taki)1(m)-399(\\261c)-1(i)1(e)-1(r)1(w)27(om)-398(ni)1(c)-399(si\\246)-398(z)-1(\\252ego)-398(ni)1(e)-399(stani)1(e)-399({)-398(sze)-1(p)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-406(ale)-407(c)28(ho)-28(cia\\273)-407(w)-406(niez)-1(go)-27(dzie)-407(\\273)-1(y)1(\\252)-1(a)-406(z)-407(d)1(z)-1(ie\\242)-1(mi,)-406(a)-406(w)-407(c)-1(i)1(\\241)-28(g\\252yc)27(h)-406(p)1(ro)-28(ce)-1(sac)27(h)1(,)]TJ 0 -13.549 Td[(zadr\\273a\\252a.)]TJ 27.879 -13.55 Td[({)-333(Przew)-1(i)1(e)-1(m)-334(si\\246)-334(n)1(iec)-1(o)-333(i)-333(z)-1(ar)1(az)-334(pr)1(z)-1(yl)1(e)-1(t\\246...)]TJ 0 -13.549 Td[(Wyb)1(ieg\\252a)-334(\\261piesz)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[(Ale)-353(k)56(a)27(w)28(a\\252)-353(wie)-1(czoru)-353(si\\246)-353(pr)1(z)-1(ew)-1(l)1(e)-1(k\\252o)-353(i)-352(Jam)27(b)1(ro\\273)-1(y)-352(z)-1(d)1(\\241\\273)-1(y\\252)-353(z)-353(na)28(wrotem,)-353(a)-353(ona)]TJ -27.879 -13.549 Td[(ni)1(e)-301(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(a;)-299(w)-1(\\252a\\261nie)-300(b)28(y\\252)-300(s)-1(t)1(ary)-300(p)-27(o)27(wiad)1(a\\252,)-300(i\\273)-301(k)1(s)-1(i\\246dza)-300(wz)-1(yw)28(ali)-300(d)1(o)-301(Agat)28(y)84(,)-300(K\\252\\246b)-28(o-)]TJ 0 -13.549 Td[(w)28(e)-1(j)-333(kr)1(e)-1(wn)1(iac)-1(zki,)-333(co)-334(to)-333(w)-333(s)-1(ob)-27(ot\\246)-334(z)-334(\\273e)-1(b)1(r\\363)28(w)-334(p)1(rzyci\\241)-28(gn\\246\\252a.)]TJ 27.879 -13.55 Td[({)-333(Jak\\273e)-1(?)-333(nie)-334(u)-332(K\\252\\246)-1(b)-27(\\363)28(w)-334(to)-333(s)-1(i)1(e)-1(d)1(z)-1(i?)]TJ 0 -13.549 Td[({)-333(U)-334(K)1(oz)-1(\\252\\363)28(w)-334(cz)-1(y)-333(ta)-333(u)-333(P)1(rycz)-1(k)28(\\363)28(w)-334(p)-27(ono)-333(si\\246)-334(p)1(rz)-1(y)1(tuli)1(\\252a)-334(n)1(a)-334(sk)28(onan)1(ie)-1(.)]TJ 0 -13.549 Td[(T)28(yle)-238(jeno)-237(o)-238(t)28(ym)-238(p)1(rz)-1(erze)-1(k)1(li,)-237(z)-1(a)-55(j\\246c)-1(i)-237(wie)-1(l)1(c)-1(e)-238(rob)-27(ot\\241,)-237(jes)-1(zc)-1(ze)-238(i)-238(b)-27(ez)-239(t)1(o)-238(op)-27(\\363\\271)-1(n)1(ian\\241,)]TJ -27.879 -13.549 Td[(\\273e)-305(J\\363zk)56(a,)-304(a)-304(to)-304(i)-303(s)-1(ama)-304(Hank)56(a)-304(ci\\246gie)-1(m)-304(o)-28(d)1(biega\\252y)-304(rob)-27(ot)28(y)84(,)-304(b)28(y)-304(l)1(e)-1(cie)-1(\\242)-304(w)-304(p)-27(o)-28(dw)28(\\363rze)-305(d)1(o)]TJ 0 -13.549 Td[(wiec)-1(zorn)28(yc)28(h)-333(obr)1(z)-1(\\241d)1(k)28(\\363)27(w.)]TJ 27.879 -13.55 Td[(Wiecz)-1(\\363r)-250(si\\246)-250(c)-1(i\\241)-28(gn)1(\\241\\252)-250(z)-251(w)28(olna)-250(i)-250(p)1(rzykrzy\\252)-250(s)-1(i)1(\\246)-251(wielc)-1(e)-250(a)-250(d\\252u\\273y\\252,)-250(\\273e)-251(to)-250(i)-250(ciem)-1(n)1(ic)-1(a)]TJ -27.879 -13.549 Td[(zw)27(ali)1(\\252)-1(a)-339(s)-1(i\\246)-340(n)1(a)-340(\\261w)-1(i)1(at,)-340(i\\273)-340(p)1(i\\246)-1(\\261c)-1(i)-339(ni)1(e)-341(d)1(o)-56(j)1(rza\\252,)-340(desz)-1(cz)-341(zacina\\252)-340(zi\\246bi\\241cy)83(,)-339(wiater)-340(ciepa\\252)]TJ 0 -13.549 Td[(si\\246)-463(r)1(az)-463(p)-27(o)-462(raz)-462(o)-462(\\261)-1(cian)28(y)-461(i)-462(trato)28(w)28(a\\252)-462(s)-1(ad)1(y)83(,)-462(\\273e)-462(drze)-1(win)29(y)-462(z)-462(s)-1(zume)-1(m)-462(t\\252uk)1(\\252)-1(y)-461(s)-1(i)1(\\246)-463(w)]TJ 0 -13.549 Td[(cie)-1(mno\\261ciac)27(h)1(,)-334(a)-333(n)1(ie)-1(ki)1(e)-1(d)1(y)-333(buc)28(ha\\252)-333(w)-334(k)28(omin)1(,)-334(a\\273)-333(g\\252)-1(o)28(wni)1(e)-334(wys)-1(k)56(aki)1(w)27(a\\252y)-333(na)-333(izb)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-334(pr)1(z)-1(ed)-333(s)-1(am\\241)-333(p)-28(\\363\\252n)1(o)-28(c)-1(\\241)-333(sk)28(o\\253cz)-1(yl)1(i,)-333(a)-334(Jagu)1(s)-1(t)28(y)1(nk)56(a)-334(j)1(e)-1(sz)-1(cze)-334(nie)-333(w)-1(r)1(\\363)-28(ci\\252a.)]TJ 0 -13.55 Td[({)-472(Pl)1(uc)27(h)1(a)-472(i)-472(b\\252o)-28(c)28(k)28(o,)-472(to)-472(s)-1(i\\246)-472(jej)-472(ni)1(e)-473(c)27(h)1(c)-1(i)1(a\\252o)-473(p)-27(o)-472(omac)27(ku)-472(u)1(t)28(yk)56(a\\242)-1(!)-472({)-472(m)28(y\\261)-1(l)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(Hank)56(a)-333(wyz)-1(i)1(e)-1(r)1(a)-56(j\\241c)-333(na)-333(dw)28(\\363r)-333(przed)-333(s)-1(p)1(aniem.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-304(c)-1(zas)-305(b)28(y\\252)-304(taki,)-304(\\273)-1(e)-305(p)1(s)-1(a)-304(\\273al)-305(b)28(y)-304(n)1(a)-305(\\261w)-1(i)1(at)-305(gon)1(i\\242)-1(,)-304(wiejb)1(a,)-305(a\\273)-305(d)1(ac)27(h)28(y)-304(tr)1(z)-1(es)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252y)84(,)-242(c)28(hm)27(u)1(rzys)-1(k)56(a)-241(opite)-242(d)1(e)-1(szc)-1(ze)-1(m,)-241(bur)1(e)-242(i)-242(n)1(ap)-28(\\246cz)-1(n)1(ia\\252e)-242(przew)27(ala\\252y)-241(s)-1(i)1(\\246)-242(p)-28(o)-241(z)-1(m\\246)-1(t)1(nia-)]TJ 0 -13.549 Td[(\\252ym)-326(n)1(ie)-1(b)1(ie,)-326(a)-325(nik)56(a)-56(j)-325(w)-326(wysok)28(o\\261c)-1(iac)28(h)-326(n)1(i)-326(j)1(e)-1(d)1(nej)-325(gwiaz)-1(d)1(y)83(,)-325(ni)-325(te\\273)-326(ognio)28(w)28(e)-1(go)-326(migotu)]TJ 0 -13.55 Td[(w)-460(c)27(h)1(a\\252)-1(u)1(pac)28(h,)-460(zgo\\252a)-460(przepad\\252y)1(c)27(h)-460(w)-460(no)-27(c)-1(y)84(.)-460(Wie\\261)-460(ju\\273)-460(da)28(wno)-460(spa\\252a,)-460(wiat)1(e)-1(r)-460(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(h)28(u)1(la\\252)-282(p)-27(o)-281(p)-28(ol)1(ac)27(h)-281(i)-281(bar)1(o)27(w)28(a\\252)-281(s)-1(i\\246)-281(z)-282(dr)1(z)-1(ew)27(ami,)-281(a)-281(w)27(o)-28(d)1(y)-281(s)-1(ta)28(wu)-281(pr)1(z)-1(egarn)1(ia\\252)-282(ze)-282(\\261wis)-1(tem.)]TJ 27.879 -13.549 Td[(Zaraz)-334(p)-27(osz)-1(li)-333(spa\\242,)-333(ju)1(\\273)-334(nie)-333(c)-1(ze)-1(k)56(a)-55(j\\241c.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-393(za\\261)-394(dop)1(iero)-393(naza)-56(j)1(utr)1(z)-394(ran)1(o)-394(si\\246)-394(zja)28(wi\\252a,)-393(ale)-393(m)-1(r)1(o)-28(c)-1(zna)-393(ki)1(e)-1(j)-393(ten)]TJ -27.879 -13.549 Td[(dzie\\253)-350(p)1(rze)-1(b)1(\\252)-1(o)-27(c)-1(on)28(y)84(,)-350(wiejn)29(y)-350(i)-350(zimn)28(y;)-350(u)1(grza\\252)-1(a)-349(jeno)-350(w)-350(c)27(h)1(a\\252upi)1(e)-351(r)1(\\246)-1(ce)-351(i)-349(z)-1(ar)1(az)-351(p)-27(os)-1(z\\252a)]TJ 0 -13.549 Td[(do)-333(sto)-28(do\\252y)-333(p)1(rze)-1(bi)1(e)-1(r)1(a\\242)-334(z)-1(i)1(e)-1(mniak)1(i,)-333(ju)1(\\273)-334(tam)-334(z)-333(do\\252\\363)28(w)-334(na)-333(ku)1(p)-28(\\246)-333(z)-1(w)28(alone.)]TJ 27.879 -13.55 Td[(Robi)1(\\252)-1(a)-455(pr)1(a)28(w)-1(i)1(e)-456(w)-456(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246,)-456(b)-27(o)-455(J\\363z)-1(k)56(a)-455(o)-28(db)1(iega\\252)-1(a)-455(cz)-1(\\246s)-1(to)-455(nak\\252ad)1(a\\242)-456(gn\\363)-55(j,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(n)-308(o)-28(d)-308(\\261)-1(witan)1(ia)-309(wyw)28(oz)-1(i)1(\\252)-309(\\261)-1(p)1(ie)-1(sznie)-309(Pi)1(e)-1(tr)1(e)-1(k,)-308(niema\\252o)-309(ju)1(\\273)-310(d)1(z)-1(i)1(s)-1(ia)-308(s)-1(kr)1(z)-1(yczan)28(y)-309(o)-28(d)]TJ 0 -13.549 Td[(Hank)1(i,)-368(\\273e)-369(to)-368(w)28(c)-1(zora)-55(j)-368(si\\246)-368(le)-1(n)1(i\\252)-368(i)-368(n)1(ie)-369(zd\\241\\273y\\252;)-368(p)-27(ogani)1(a\\252)-369(t)1(e)-1(\\273)-368(t\\246)-1(go,)-367(na)-368(Wit)1(k)55(a)-368(h)29(uk)56(a\\252,)]TJ 0 -13.549 Td[(k)28(oni)1(e)-334(batem)-334(p)1(ra\\273y\\252)-334(i)-333(j)1(e)-1(\\271dzi\\252,)-333(a\\273)-334(b\\252oto)-333(si\\246)-334(ot)28(wie)-1(r)1(a\\252o.)]TJ 27.879 -13.549 Td[({)-329(W)84(a\\252k)28(o\\253)-329(j)1(uc)27(h)1(a,)-329(n)1(a)-329(b)28(yd)1(l\\241tk)56(ac)27(h)-328(te)-1(r)1(a)-329(s)-1(i)1(\\246)-330(o)-28(d)1(bi)1(ja!)-329({)-328(rz)-1(ek\\252a)-329(stara)-329(cisk)55(a)-55(j\\241c)-329(na)]TJ -27.879 -13.55 Td[(g\\246s)-1(i,)-413(b)-28(o)-414(si\\246)-415(p)1(rzywie)-1(d)1(\\252y)-414(ca\\252)-1(y)1(m)-415(stadem)-414(na)-414(klepi)1(s)-1(k)28(o)-414(i)-414(n)28(u)1(\\273)-415(szc)-1(zypa\\242)-414(z)-1(i)1(e)-1(mniak)1(i)-414(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kry)-328(g\\246got)-328(cz)-1(yn)1(i\\242.)-328(Zagadn)1(\\246)-1(\\252a)-328(p)-27(ote)-1(m)-328(d)1(o)-328(niej)-328(J\\363zk)56(a:)-328(n)1(ie)-329(o)-27(dez)-1(w)28(a\\252a)-328(s)-1(i\\246)-328(sie)-1(d)1(z)-1(\\241c)]TJ\nET\nendstream\nendobj\n1284 0 obj <<\n/Type /Page\n/Contents 1285 0 R\n/Resources 1283 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1283 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1288 0 obj <<\n/Length 8911      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(401)]TJ -358.232 -35.866 Td[(kiej)-239(ten)-239(mruk)-239(i)-239(p)1(iln)1(ie)-240(kr)1(yj\\241c)-239(p)-28(o)-28(d)-238(nasun)1(i\\246)-1(t\\241)-239(n)1(a)-240(cz)-1(o\\252o)-239(zapask)28(\\246)-240(o)-28(cz)-1(y)-239(zac)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ione)]TJ 0 -13.549 Td[(jak)28(o\\261.)]TJ 27.879 -13.549 Td[(Hank)56(a)-367(zrazu)-367(jeno)-367(r)1(az)-368(j)1(e)-1(d)1(e)-1(n)-366(z)-1(a)-55(jrza\\252a)-367(do)-367(n)1(ic)27(h)-367(czatuj)1(\\241c)-368(w)-367(izbie)-367(na)-367(wyj)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(Jagn)28(y)84(,)-337(b)28(y)-338(wtedy)-337(zabra\\242)-338(mi\\246s)-1(o)-337(do)-337(s)-1(w)28(o)-56(j)1(e)-1(j)-337(k)28(omory)-337(i)-338(sp)-27(e)-1(n)1(e)-1(tr)1(o)27(w)28(a\\242)-338(zaraz)-1(em)-338(b)-27(e)-1(cz)-1(k)1(i)]TJ 0 -13.549 Td[(ze)-298(z)-1(b)-27(o\\273e)-1(m,)-297(ale)-298(jak)1(b)28(y)-297(na)-297(z)-1(\\252o\\261\\242)-298(Jagn)1(a)-298(n)1(i)-297(kroki)1(e)-1(m)-298(n)1(ie)-298(r)1(usz)-1(a\\252a)-297(s)-1(i\\246)-297(z)-298(c)27(h)1(a\\252up)28(y)84(,)-297(\\273)-1(e)-298(j)1(u\\273)]TJ 0 -13.55 Td[(ni)1(e)-397(m)-1(og\\241c)-396(w)-1(strzyma\\242)-1(,)-396(zagl\\241da\\252a)-396(do)-396(c)27(h)1(orego,)-397(t)1(o)-397(zam)-1(\\363)28(wiws)-1(zy)-396(s)-1(i)1(\\246)-397(o)-397(co\\261,)-397(wlaz\\252a)]TJ 0 -13.549 Td[(do)-333(k)28(omory)84(.)]TJ 27.879 -13.549 Td[({)-436(C)-1(ze)-1(go)-55(j)-436(s)-1(zuk)56(acie)-1(?)-436(dy\\242)-437(wiem,)-437(gd)1(z)-1(i)1(e)-437(c)-1(o)-436(jes)-1(t,)-436(to)-436(w)27(ama)-437(p)-27(ok)56(a\\273)-1(\\246!)-436({)-437(w)28(o\\252a\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagn)1(a)-272(id)1(\\241c)-272(z)-1(a)-271(ni\\241,)-271(\\273e)-272(trze)-1(b)1(a)-272(b)28(y)1(\\252o)-272(wyc)27(h)1(o)-28(dzi\\242,)-272(l)1(e)-1(d)1(w)-1(i)1(e)-272(c)-1(o)-271(wraz)-1(i)1(w)-1(szy)-272(r)1(\\246)-1(ce)-272(w)27(e)-272(zb)-27(o\\273)-1(e,)]TJ 0 -13.549 Td[(a)-333(pieni)1(\\241dze)-334(m)-1(og\\252y)-333(b)28(y)1(\\242)-334(g\\252\\246)-1(b)1(ie)-1(j)1(,)-333(na)-333(s)-1(p)-27(o)-28(d)1(z)-1(ie...)]TJ 27.879 -13.549 Td[(Zrozumia\\252a)-382(te)-1(\\273)-382(ryc)28(h\\252o,)-382(\\273)-1(e)-382(tam)27(ta)-382(j)1(e)-1(j)-382(str\\363\\273uj)1(e)-1(,)-382(wi\\246c)-383(c)28(ho)-28(\\242)-383(p)-27(o)-382(ni)1(e)-1(w)28(oli,)-382(d)1(a\\252)-1(a)]TJ -27.879 -13.55 Td[(sp)-28(ok)28(\\363)-55(j)-333(o)-28(dk)1(\\252)-1(ad)1(a)-56(j)1(\\241c)-334(sw)27(o)-55(je)-334(zam)27(ys\\252y)-333(na)-333(s)-1(p)-27(osobni)1(e)-1(j)1(s)-1(z\\241)-334(p)-27(or\\246.)]TJ 27.879 -13.549 Td[({)-394(T)83(rza)-394(s)-1(i)1(\\246)-395(wz)-1(i)1(\\241\\242)-395(d)1(o)-395(szyk)28(o)28(w)27(an)1(ia)-394(p)-28(o)-27(daron)1(k)28(\\363)28(w)-395({)-394(p)-27(om)27(y)1(\\261)-1(la\\252a)-394(\\273a\\252o\\261)-1(n)1(ie)-395(p)1(rzy-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a)-56(j)1(\\241c)-371(si\\246)-370(kie\\252)-1(b)1(as)-1(om,)-370(r)1(oz)-1(wies)-1(zon)28(ym)-370(n)1(a)-370(dr\\241\\273ku)1(;)-370(w)28(e)-371(zw)-1(y)1(c)-1(za)-56(j)1(u)-370(b)-27(o)28(w)-1(i)1(e)-1(m)-370(b)28(y\\252o)-370(u)]TJ 0 -13.549 Td[(Boryn)1(\\363)27(w)-434(i)-434(c)-1(o)-434(pi)1(e)-1(rwsz)-1(y)1(c)27(h)-434(gosp)-28(o)-28(d)1(arzy)83(,)-434(i\\273)-434(kt\\363ren)-434(\\261)-1(win)1(i\\246)-435(zas)-1(zlac)27(h)29(to)28(w)27(a\\252,)-434(ten)-434(z)-1(a-)]TJ 0 -13.549 Td[(raz)-420(n)1(az)-1(a)-55(ju)1(trz)-420(rozs)-1(y)1(\\252)-1(a\\252)-419(w)-420(p)-28(o)-27(daru)1(nk)1(u)-420(n)1(a)-56(j)1(bli)1(\\273)-1(sz)-1(ym)-420(k)1(rew)-1(n)1(iak)28(om)-420(alb)-27(o)-420(z)-420(kt\\363r)1(ymi)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)27(o)-333(tr)1(z)-1(yma\\252,)-333(p)-28(o)-333(ki)1(e)-1(\\252basie)-334(l)1(e)-1(b)-27(o)-334(cze)-1(go)-333(insze)-1(go)-333(p)-28(o)-333(k)56(a)28(w)27(ale.)]TJ 27.879 -13.549 Td[({)-274(J)1(u\\261c)-1(i,)-273(\\252ac)-1(n)1(o)-274(n)1(ie)-274(jest,)-274(al)1(e)-274(da\\242)-274(m)28(usis)-1(z,)-273(p)-28(o)28(wiedzia\\252yb)28(y)84(,)-274(co)-274(\\273a\\252uj)1(e)-1(sz)-1(.)1(..)-274({)-273(rze)-1(k)1(\\252)]TJ -27.879 -13.549 Td[(nar)1(az)-334(Bylica)-334(u)1(tra\\014)1(a)-56(j)1(\\241c)-334(w)-334(sam)-334(r)1(az)-334(w)-334(\\273a\\252o\\261)-1(li)1(w)27(e)-334(strap)1(ienia.)]TJ 27.879 -13.549 Td[(Wi\\246c)-445(c)28(ho)-28(cia)-444(se)-1(r)1(c)-1(e)-444(\\261)-1(cisk)55(a\\252)-444(\\273al,)-444(j\\246\\252a)-444(ryc)28(h)28(to)28(w)27(a\\242)-444(na)-444(tal)1(e)-1(rzac)27(h)-443(i)-444(m)-1(i)1(s)-1(ec)-1(zk)56(ac)27(h)]TJ -27.879 -13.549 Td[(z)-404(ci\\246\\273)-1(ki)1(m)-404(w)28(e)-1(stc)27(h)1(nieni)1(e)-1(m)-403(z)-1(mienia)-55(j\\241c)-404(n)1(ie)-404(p)-27(o)-403(raz)-403(jeden)-403(z)-1(b)29(yt)-403(kr\\363tk)1(ie)-404(k)56(a)28(w)27(a\\252ki)-403(n)1(a)]TJ 0 -13.55 Td[(d\\252u)1(\\273)-1(sz)-1(e,)-405(to)-405(p)1(rzyda)-55(j\\241c)-405(niekt\\363r)1(ym)-405(p)-28(o)-405(k)56(a)28(w)27(al)1(e)-406(ki)1(s)-1(zki,)-405(t)1(o)-405(z)-1(n)1(o)27(wu)-404(o)-28(db)1(ie)-1(r)1(a)-56(j)1(\\241c)-1(,)-405(a\\273)-405(w)]TJ 0 -13.549 Td[(k)28(o\\253cu,)-333(zm\\246)-1(cz)-1(on)1(a)-334(i)-333(rozb)-27(ola\\252a,)-333(przyw)28(o\\252a\\252a)-334(J\\363zki.)]TJ 27.879 -13.549 Td[({)-333(Przy)28(o)-28(d)1(z)-1(iej)-333(si\\246)-334(pi)1(e)-1(kn)1(ie)-334(i)-333(r)1(oz)-1(n)1(ie)-1(sies)-1(z)-334(p)-27(o)-333(lud)1(z)-1(i)1(ac)27(h.)1(..)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(t)28(ylac)27(h)1(na)-333(ws)-1(zystkiego!...)]TJ 0 -13.549 Td[({)-390(C\\363\\273)-390(p)-27(oredzi\\242,)-390(ki)1(e)-1(j)-389(trzeba!)-389(Sam)-390(M)1(ac)-1(iek)-389(s)-1(t\\252o)-28(cz)-1(y)84(,)-389(ale)-390(s)-1(am)-390(n)1(ie)-390(wysk)28(o)-28(c)-1(zy!)]TJ -27.879 -13.55 Td[(T)83(e)-359(d\\252u)1(\\273)-1(sz)-1(e)-359(n)1(ie)-1(\\261)-359(stryj)1(ni)1(e)-360(n)1(a)-56(j)1(pierw,)-358(z)-1(b)-27(\\363)-56(j)1(e)-1(m)-359(n)1(a)-359(m)-1(n)1(ie)-359(pat)1(rz)-1(y)84(,)-359(p)29(ys)-1(k)1(uj)1(e)-1(,)-358(ale)-359(nie)-359(ma)]TJ 0 -13.549 Td[(rad)1(y;)-255(to)-254(c)-1(i)-254(z)-256(mise)-1(cz)-1(k)28(om)-255(w)28(\\363)-56(j)1(tom)-1(,)-254(\\252a)-56(jd)1(us)-255(on)1(,)-255(ale)-255(z)-255(Mac)-1(i)1(e)-1(j)1(e)-1(m)-255(\\273yli)-255(w)-255(p)1(rzyjaciels)-1(t)28(wie)]TJ 0 -13.549 Td[(i)-310(m)-1(o\\273e)-311(b)28(y)1(\\242)-311(w)-311(c)-1(zym)-311(p)-27(omo)-28(cn)28(y;)-310(c)-1(a\\252a)-310(kisz)-1(k)56(a,)-310(kie\\252basa)-311(i)-310(k)56(a)28(w)27(a\\252)-310(b)-28(o)-28(czku)-310(la)-310(Magdy)84(,)-310(la)]TJ 0 -13.549 Td[(k)28(o)28(w)27(al)1(i,)-348(ni)1(e)-1(c)28(h)-348(ni)1(e)-349(sz)-1(cz)-1(ek)56(a)-56(j)1(\\241,)-348(\\273e)-349(sam)-1(i)-347(z)-1(j)1(adam)27(y)-347(o)-56(j)1(c)-1(o)28(w)27(ego)-348(\\261w)-1(i)1(niak)56(a,)-348(j)1(u\\261c)-1(i,)-347(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(im)-397(t)28(y)1(m)-397(p)28(ysk)56(a)-397(n)1(ie)-397(zatk)56(a,)-397(al)1(e)-397(pr)1(z)-1(ycz)-1(epk)28(\\246)-396(b)-28(\\246d\\241)-396(mia\\252y)-397(mn)1(ie)-1(j)1(s)-1(z\\241...)-396(P)1(rycz)-1(k)28(o)28(w)28(e)-1(j)-396(t\\246)]TJ 0 -13.55 Td[(tu)-414(kie\\252)-1(b)1(as)-1(\\246,)-415(h)1(arda,)-414(w)-1(y)1(no\\261liw)28(a,)-415(p)28(ysk)55(at)1(a,)-415(ale)-415(z)-416(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(e)-1(m)-415(s)-1(z\\252a)-415(pierwsz)-1(a..)1(.)]TJ 0 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(e)-1(j)-333(ten)-333(ostatni.)1(..)]TJ 27.879 -13.549 Td[({)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-333(to)-333(ni)1(e)-334(\\261)-1(l)1(e)-1(cie?)]TJ 0 -13.549 Td[({)-466(P)28(\\363\\271)-1(n)1(iej)-466(s)-1(i\\246)-466(da,)-466(p)-28(o)-466(p)-27(o\\252e)-1(d)1(niu)1(...)-466(ju)1(\\261)-1(ci,)-466(\\273e)-467(trze)-1(b)1(a...)-466(z)-467(tak)56(\\241)-466(to)-467(j)1(ak)-467(z)-466(t)28(ym)]TJ -27.879 -13.549 Td[(\\252a)-56(j)1(nem)-1(,)-363(n)1(ie)-364(p)-27(oru)1(s)-1(z)-363(i)-363(jes)-1(zcz)-1(e)-364(z)-363(dal)1(a)-364(ob)-27(c)27(h)1(o)-28(d\\271.)-363(No\\261)-364(p)-27(osobni)1(e)-1(,)-363(i)1(no)-363(nie)-363(z)-1(agad)1(uj)-363(si\\246)]TJ 0 -13.549 Td[(tam)-334(z)-333(dzie)-1(u)1(c)27(h)1(am)-1(i,)-333(b)-27(o)-333(rob)-27(ota)-334(cze)-1(k)56(a.)]TJ 27.879 -13.55 Td[({)-440(Da)-55(jcie)-440(i)-440(Nas)-1(t)1(c)-1(e,)-440(one)-440(taki)1(e)-441(b)1(ie)-1(d)1(ne,)-440(n)1(a)27(w)28(et)-440(na)-440(s\\363l)-440(n)1(ie)-440(m)-1(a)-55(j\\241..)1(.)-440({)-440(pr)1(os)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(cic)27(h)1(o.)]TJ 27.879 -13.549 Td[({)-446(Niec)27(h)-445(przyjd)1(z)-1(i)1(e)-1(,)-446(t)1(o)-446(dam)-446(niec)-1(o\\261.)-446(Ociec)-1(,)-446(l)1(a)-446(W)83(eron)1(ki)-446(z)-1(ab)1(ierze)-1(cie)-1(,)-445(m)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(w)28(c)-1(zora)-56(j)-332(z)-1(a)-55(jrze)-1(\\242...)]TJ 27.879 -13.549 Td[({)-233(M)1(\\252ynar)1(z)-1(o)28(w)27(a)-232(j\\241)-232(przed)-233(wiec)-1(zorem)-233(w)28(e)-1(zw)27(a\\252a)-233(spr)1(z)-1(\\241ta\\242)-233(p)-27(ok)28(o)-56(j)1(e)-1(,)-232(b)-27(o)-233(p)-27(e)-1(wn)1(ikiem)]TJ -27.879 -13.55 Td[(go\\261c)-1(ie)-333(do)-333(nic)28(h)-333(z)-1(w)28(al\\241)-333(na)-333(\\261)-1(wi\\246ta.)]TJ 27.879 -13.549 Td[(I)-280(d\\252u)1(go)-281(j)1(e)-1(szc)-1(ze)-281(j\\241k)56(a\\252)-280(no)28(win)1(ki,)-280(ale)-280(Hank)56(a,)-280(wypr)1(a)28(w)-1(i)1(w)-1(sz)-1(y)-279(J\\363z)-1(k)28(\\246,)-280(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(a\\252)-1(a)]TJ\nET\nendstream\nendobj\n1287 0 obj <<\n/Type /Page\n/Contents 1288 0 R\n/Resources 1286 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1286 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1291 0 obj <<\n/Length 9332      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(402)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-334(ni)1(e)-1(co)-334(cieplej)-333(i)-333(p)-27(obieg\\252a)-334(p)-27(omaga\\242)-334(Jagust)28(yn)1(c)-1(e)-334(a)-333(p)-27(ogania\\242)-334(c)28(h\\252op)1(ak)28(\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zek)55(al)1(im)-334(n)1(a)-334(w)28(as)-334(z)-334(k)28(olacj\\241)-333({)-333(z)-1(acz)-1(\\246\\252a,)-333(z)-1(d)1(z)-1(iwion)1(a)-333(m)-1(il)1(c)-1(ze)-1(n)1(ie)-1(m)-333(s)-1(tar)1(e)-1(j)1(.)]TJ 0 -13.549 Td[({)-332(I.)1(..)-332(n)1(a)-56(j)1(ad\\252am)-332(si\\246)-332(tam)-332(patr)1(z)-1(eniem,)-332(j)1(a\\273)-1(e)-332(me)-332(jes)-1(zc)-1(ze)-332(dzisia)-56(j)-331(w)-332(d)1(o\\252ku)-331(gnie-)]TJ -27.879 -13.549 Td[(cie)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(Agat)1(a)-334(p)-27(ono)-333(zac)27(hor)1(z)-1(a\\252a?)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(u)-332(Koz)-1(\\252\\363)28(w)-334(se)-334(d)1(o)-28(c)27(h)1(o)-28(dzi)-333(s)-1(ierota.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(ni)1(e)-334(u)-333(K\\252\\246b)-28(\\363)28(w)-333(le)-1(\\273y?)]TJ 0 -13.549 Td[({)-307(Kr)1(e)-1(wni)1(akiem)-308(p)1(rzyz)-1(n)1(a)-56(j)1(\\241,)-307(kt\\363r)1(e)-1(m)28(u)-307(ni)1(c)-1(ze)-1(go)-307(n)1(ie)-307(p)-28(otr)1(z)-1(a)-307(alb)-27(o)-307(i)-307(z)-307(p)-27(e)-1(\\252n\\241)-307(gar)1(-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\241)-333(pr)1(z)-1(y)1(c)27(ho)-27(dzi,)-333(na)-333(insz)-1(y)1(c)27(h,)-333(c)28(ho)-28(\\242b)28(y)-333(ro)-27(dzon)28(yc)27(h)1(,)-333(pies)-1(k)28(\\363)28(w)-333(s)-1(i\\246)-333(ano)-333(s)-1(p)1(usz)-1(cz)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(wy)-333(te)-1(\\273!)-333(pr)1(z)-1(ec)-1(i)1(e)-1(k)-333(jej)-333(ni)1(e)-334(wygna\\252y!)]TJ 0 -13.549 Td[({)-350(Hale,)-350(p)1(rz)-1(y)1(w)-1(l)1(e)-1(k\\252a)-350(si\\246)-350(do)-350(n)1(ic)27(h)-349(w)-350(s)-1(ob)-27(ot\\246)-350(i)-350(z)-1(ar)1(az)-351(w)-350(n)1(o)-28(c)-1(y)-349(z)-1(ac)28(horza\\252a...)-349(P)28(o-)]TJ -27.879 -13.55 Td[(wieda)-56(j)1(\\241,)-333(\\273)-1(e)-333(K\\252\\246)-1(b)-27(o)28(w)27(a)-333(wz)-1(iena)-333(jej)-333(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-334(i)-333(pr)1(a)28(w)-1(i)1(e)-334(nag\\241)-333(w)27(e)-333(\\261)-1(wiat)-333(pu)1(\\261)-1(ci\\252a...)]TJ 27.879 -13.549 Td[({)-333(K\\252\\246)-1(b)-27(o)28(w)27(a!)-333(Nie)-333(m)-1(o\\273e)-334(b)28(y\\242,)-333(tak)56(a)-334(p)-27(o)-28(cz)-1(ciw)28(a)-334(k)28(ob)1(ieta,)-333(c)27(heba)-333(pl)1(otki)-333(pl)1(e)-1(t\\241.)]TJ 0 -13.549 Td[({)-333(Sw)28(o)-56(j)1(e)-1(go)-333(nie)-333(m)-1(\\363)28(wi\\246,)-333(ino)-333(c)-1(o)-333(mi)-333(w)-334(uszy)-334(wlaz\\252o...)]TJ 0 -13.549 Td[({)-333(I)-334(u)-333(K)1(oz)-1(\\252o)28(w)27(ej)-333(le\\273)-1(y)1(!)-334(A)-333(kt\\363\\273)-333(b)28(y)-333(s)-1(i\\246)-333(s)-1(p)-27(o)-28(d)1(z)-1(ia\\252,)-333(\\273e)-334(tak)56(a)-334(l)1(ito\\261)-1(ciw)28(a!)]TJ 0 -13.549 Td[({)-271(Za)-271(pieni)1(\\241dze)-272(to)-271(i)-271(ksi\\241dz)-271(lito\\261ciwy)83(.)-271(Koz\\252o)28(w)27(a)-271(wz)-1(i)1(\\246)-1(\\252a)-271(o)-28(d)-271(Agat)28(y)-271(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(ia)]TJ -27.879 -13.55 Td[(z\\252)-1(ot)28(y)1(c)27(h)-241(goto)28(w)27(ego)-242(grosza)-242(i)-241(z)-1(a)-242(t)1(o)-242(ma)-56(j)1(\\241)-242(j\\241)-241(pr)1(z)-1(etrzyma\\242)-243(u)-241(siebie)-242(d)1(o)-242(\\261m)-1(i)1(e)-1(rci,)-241(b)-28(o)-241(s)-1(t)1(ara)]TJ 0 -13.549 Td[(liczy)83(,)-307(\\273)-1(e)-308(lad)1(a)-308(d)1(z)-1(ie\\253)-307(z)-1(amrze)-1(.)-307(Ale)-308(p)-27(o)-28(c)27(h)1(o)27(w)28(e)-1(k)-307(osobno,)-307(a)-308(stara)-307(s)-1(e)-308(ni)1(e)-308(dzis)-1(i)1(a,)-308(to)-307(jut)1(ro)]TJ 0 -13.549 Td[(do)-55(jd)1(z)-1(i)1(e)-1(,)-333(ni)1(e)-1(d)1(\\252ugo)-333(jej)-333(c)-1(ze)-1(k)56(a\\242...)-333(ni)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Zmilk\\252a)-333(nar)1(az)-1(,)-333(usi\\252uj)1(\\241c)-334(n)1(a)-334(p)1(r\\363\\273no)-333(p)-28(o)28(ws)-1(t)1(rz)-1(y)1(m)-1(a\\242)-333(c)27(hli)1(pan)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to)-334(w)28(ama,)-333(c)27(hor)1(z)-1(y\\261c)-1(i)1(e)-1(?)-333({)-334(p)29(yta\\252a)-334(Han)1(k)56(a)-334(ze)-334(ws)-1(p)-27(\\363\\252cz)-1(uciem)-1(.)]TJ 0 -13.55 Td[({)-339(T)28(yle)-339(s)-1(i)1(\\246)-340(j)1(u\\273)-339(lu)1(dzkiej)-339(b)1(iedy)-339(n)1(a)-56(j)1(ad\\252am,)-339(\\273e)-340(me)-339(w)-339(k)28(o\\253cu)-339(d)1(o)-339(cna)-339(rozebra\\252o.)]TJ -27.879 -13.549 Td[(Cz)-1(\\252o)28(wiek)-353(n)1(ie)-353(k)56(amie\\253,)-352(br)1(oni)-352(si\\246)-353(p)1(rze)-1(d)-352(sob\\241)-352(c)27(h)1(o)-28(\\242)-1(b)29(y)-352(t\\241)-353(z\\252o\\261)-1(ci\\241)-352(na)-352(ca\\252y)-352(\\261)-1(wiat,)-352(ale)]TJ 0 -13.549 Td[(si\\246)-432(ni)1(e)-432(obr)1(oni,)-431(p)1(rzyjd)1(z)-1(i)1(e)-432(tak)56(a)-432(p)-27(ora,)-431(co)-431(ju\\273)-431(nie)-431(z)-1(d)1(z)-1(ier\\273y)-431(wi\\246)-1(ce)-1(j)-430(i)-431(w)-432(ten)-431(pi)1(as)-1(ek)]TJ 0 -13.549 Td[(du)1(s)-1(za)-333(m)27(u)-333(si\\246)-334(r)1(oz)-1(sypie)-333(\\273)-1(a\\252osn)28(y)83(.)]TJ 27.879 -13.549 Td[(Zani)1(e)-1(s\\252a)-357(s)-1(i)1(\\246)-358(p)1(\\252ac)-1(ze)-1(m)-357(i)-356(d\\252u)1(go)-357(s)-1(i)1(\\246)-358(t)1(rz)-1(\\246s\\252)-1(a)-356(nos)-357(g\\252o\\261)-1(n)1(o)-357(wycie)-1(r)1(a)-56(j)1(\\241c)-1(,)-356(a\\273)-358(zno)28(wu)]TJ -27.879 -13.55 Td[(j\\246\\252a)-278(m)-1(\\363)28(wi\\242)-279(b)-27(ole\\261)-1(n)1(ie)-1(,)-278(\\273e)-279(te)-278(jej)-278(s)-1(\\252o)28(w)27(a)-278(ki)1(e)-1(j)-278(\\252zy)-278(gorz)-1(k)1(ie)-279(i)-278(p)1(al\\241c)-1(e)-278(k)55(ap)1(a\\252y)-278(na)-278(Hancz)-1(yn)1(\\241)]TJ 0 -13.549 Td[(du)1(s)-1(z\\246.)]TJ 27.879 -13.549 Td[({)-228(I)-228(n)1(ie)-229(ma)-228(k)28(o\\253)1(c)-1(a)-228(tej)-228(l)1(ud)1(z)-1(kiej)-227(m)-1(ar)1(nacji.)-228(S)1(iad)1(\\252)-1(am)-228(p)1(rzy)-228(Agac)-1(i)1(e)-1(,)-228(k)1(ie)-1(j)-227(ju)1(\\273)-229(k)1(s)-1(i\\241d)1(z)]TJ -27.879 -13.549 Td[(o)-28(d)1(jec)27(ha\\252,)-372(a\\273)-373(tu)-371(przylatu)1(je)-373(F)1(ilip)1(k)56(a)-373(zz)-1(a)-372(w)27(o)-27(dy)-372(z)-373(kr)1(z)-1(yk)1(ie)-1(m,)-372(\\273)-1(e)-372(jej)-372(na)-55(jstarsz)-1(a)-372(k)28(o\\253-)]TJ 0 -13.549 Td[(cz)-1(y)84(...)-287(P)29(ole)-1(cia\\252am)-287(ju)1(\\261)-1(ci..)1(.)-287(Jez)-1(u)1(s)-1(,)-286(w)-288(c)28(ha\\252u)1(pie)-287(\\273)-1(y)1(w)-1(y)-286(m)-1(r)1(\\363z)-287(s)-1(iedzi...)-286(Okn)1(a)-287(wie)-1(c)28(hciami)]TJ 0 -13.55 Td[(p)-27(oz)-1(at)28(yk)56(an)1(e)-1(..)1(.)-311(j)1(e)-1(d)1(no)-310(\\252\\363\\273)-1(k)28(o)-310(w)-311(c)28(ha\\252u)1(pie,)-310(a)-311(r)1(e)-1(sz)-1(ta)-310(w)-310(bar\\252ogu)-310(ki)1(e)-1(j)-310(p)1(s)-1(y)-310(si\\246)-311(gn)1(ie)-1(\\271dzi..)1(.)]TJ 0 -13.549 Td[(ni)1(e)-365(p)-27(om)-1(ar)1(\\252a)-364(dzie)-1(u)1(c)27(h)1(a,)-364(ino)-364(j)1(\\241)-364(tak)-364(z)-364(g\\252o)-28(du)-363(s)-1(p)1(ar\\252o...)-364(ziem)-1(n)1(iak)28(\\363)28(w)-364(ju\\273)-364(br)1(ak\\252o,)-364(pi)1(e)-1(-)]TJ 0 -13.549 Td[(rzyn)1(\\246)-366(j)1(u\\273)-365(pr)1(z)-1(edali)1(...)-364(k)55(a\\273d\\241)-365(k)1(w)27(ar)1(t\\246)-366(k)56(asz)-1(y)-364(w)-1(y)1(m)-1(o)-27(dla)-55(j\\241)-365(u)-364(m\\252)-1(y)1(narza,)-365(n)1(ikt)-364(nie)-365(c)27(h)1(c)-1(e)]TJ 0 -13.549 Td[(zb)-28(or)1(go)27(w)28(a\\242)-359(i)-358(p)-28(o\\273ycz)-1(y\\242)-359(d)1(o)-359(n)1(o)28(w)27(ego...)-358(b)-27(o)-359(i)-358(kto?)-359(P)29(oratu)1(nku)-358(n)1(ie)-359(ma,)-359(Fi)1(lip)-358(p)1(rz)-1(ecie)-1(\\273)]TJ 0 -13.549 Td[(w)-441(kreminal)1(e)-442(z)-441(dr)1(ugimi..)1(.)-441(Ledwiem)-442(wysz)-1(\\252a)-441(o)-27(d)-441(n)1(ic)27(h)1(,)-441(p)-27(o)27(wieda)-441(G)1(rze)-1(gor)1(z)-1(o)28(w)27(a,)-440(\\273)-1(e)]TJ 0 -13.549 Td[(Flor)1(k)56(a)-289(Pr)1(yc)-1(zk)28(o)28(w)27(a)-289(zleg\\252a)-289(i)-289(p)-27(omo)-28(c)-1(y)-288(p)-28(otr)1(z)-1(ebu)1(je...)-288(\\212a)-56(j)1(dusy)-289(t)1(o)-289(i)-289(kr)1(z)-1(ywd)1(z)-1(iciele)-289(m)-1(oi)1(,)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(\\242)-261(dzie)-1(ci)-261(ro)-27(dzone...)-261(zas)-1(z\\252am)-1(,)-260(nie)-261(c)-1(zas)-262(k)1(rzywdy)-261(p)1(am)-1(i\\246ta\\242...)-261(No)-261(i)-261(t)1(am)-262(n)1(ie)-1(zgorze)-1(j)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(a)-302(k\\252y)-301(sz)-1(cz)-1(erzy)83(,)-301(d)1(robi)1(az)-1(gu)-301(p)-27(e)-1(\\252n)1(o,)-302(F)1(lork)56(a)-301(c)27(hor)1(a,)-302(gr)1(os)-1(za)-302(j)1(e)-1(d)1(nego)-302(w)-301(z)-1(ap)1(as)-1(ie)-301(nie)]TJ 0 -13.549 Td[(ma)-384(i)-383(p)-27(omo)-28(c)-1(y)-383(zni)1(k)55(\\241d)1(...)-383(gr)1(on)28(tu)-383(p)1(rz)-1(ecie)-1(k)-383(n)1(ie)-384(u)1(gryzie...)-383(je\\261)-1(\\242)-383(nie)-383(m)-1(a)-383(kto)-383(u)28(w)28(arzy\\242,)]TJ 0 -13.549 Td[(p)-27(ole)-456(o)-28(d\\252ogiem)-456(stoi,)-456(c)28(ho)-28(\\242)-456(zw)-1(i)1(e)-1(sna)-455(idzie...)-456(b)-27(o)-456(Ad)1(am)-456(jak)-455(dru)1(gie)-456(w)-456(kr)1(e)-1(minal)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Ch\\252op)1(ak)55(a)-377(u)1(ro)-28(d)1(z)-1(i\\252a)-377(zdro)28(w)28(e)-1(go)-377(ki)1(e)-1(j)-376(krze)-1(mie\\253,)-377(\\273e)-1(b)28(y)-376(s)-1(i\\246)-377(jeno)-377(o)-28(d)1(c)27(ho)28(w)28(a\\252,)-377(b)-28(o)-377(F)1(lork)56(a)]TJ 0 -13.55 Td[(wysc)27(h\\252a)-341(kiej)-341(s)-1(zc)-1(zapa)-341(i)-341(tej)-341(krop)1(li)-341(m)-1(l)1(e)-1(k)56(a)-342(w)-341(piersiac)27(h)-341(n)1(ie)-342(ma,)-341(a)-342(k)1(ro)28(w)27(a)-341(dop)1(ie)-1(r)1(o)-342(n)1(a)]TJ 0 -13.549 Td[(o)-28(ciele)-1(n)1(iu.)1(..)-413(I)-414(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-414(tak)-414(\\271le,)-414(a)-413(u)-413(k)28(om)-1(or)1(nik)28(\\363)28(w)-414(to)-413(ju)1(\\273)-414(tru)1(dno)-413(wyp)-27(o)27(wiedzie\\242)-1(..)1(.)]TJ\nET\nendstream\nendobj\n1290 0 obj <<\n/Type /Page\n/Contents 1291 0 R\n/Resources 1289 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1276 0 R\n>> endobj\n1289 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1294 0 obj <<\n/Length 9499      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(403)]TJ -358.232 -35.866 Td[(Ni)-381(k)28(om)28(u)-380(robi)1(\\242)-1(,)-380(ni)-380(gdzie)-381(z)-1(ar)1(obi\\242,)-381(n)1(i)-381(gr)1(os)-1(za,)-381(n)1(i)-381(p)-27(oratu)1(nku)-380(znik)56(\\241d.)1(..)-381(M)1(\\363g\\252b)28(y)-381(j)1(u\\273)]TJ 0 -13.549 Td[(to)-424(Jez)-1(u)1(s)-425(s)-1(p)1(ra)28(wi\\242)-1(,)-424(b)29(y)-424(c)27(ho)-27(\\242)-425(letk)56(\\241)-425(\\261mie)-1(r)1(c)-1(i)1(\\241)-425(p)-27(omar\\252y)83(,)-424(n)1(ie)-425(m\\246c)-1(zy\\252b)28(y)-424(si\\246)-425(n)1(ar\\363)-28(d)-424(co)]TJ 0 -13.549 Td[(nab)1(iedn)1(ie)-1(j)1(s)-1(zy)83(.)]TJ 27.879 -13.549 Td[({)-239(A)-239(k)28(om)27(u)1(\\273)-240(si\\246)-239(to)-239(w)27(e)-239(ws)-1(i)-239(p)1(rze)-1(lew)28(a?)-240(wsz)-1(\\246dzie)-240(b)1(ieda)-239(i)-239(ten)-239(skrzyb)-27(ot)-239(s)-1(erd)1(e)-1(cz)-1(n)29(y)83(.)]TJ 0 -13.549 Td[({)-364(Hale,)-364(i)-364(gosp)-28(o)-28(d)1(arze)-365(tu)1(rb)1(ac)-1(j)1(e)-365(n)1(ie)-1(ma\\252e)-365(ma)-56(j)1(\\241...)-364(j)1(e)-1(d)1(e)-1(n)-363(s)-1(i)1(\\246)-365(f)1(ras)-1(u)1(je,)-364(cz)-1(ym)-364(b)28(y)]TJ -27.879 -13.55 Td[(lepsz)-1(y)1(m)-355(kic)28(h)28(y)-354(nad)1(z)-1(i)1(a\\252)-1(,)-353(a)-355(i)1(nsz)-1(y)84(,)-354(k)28(om)27(u)-354(b)29(y)-354(na)-354(wi\\246)-1(k)1(s)-1(zy)-354(prece)-1(n)28(t)-354(p)1(ie)-1(n)1(i\\241d)1(z)-355(rozp)-28(o\\273y-)]TJ 0 -13.549 Td[(cz)-1(y\\252,)-251(ale)-251(\\273)-1(ad)1(e)-1(n)-251(si\\246)-252(n)1(ie)-252(p)-27(otur)1(bu)1(je)-252(o)-251(bi)1(e)-1(d)1(ot\\246)-1(,)-251(c)28(ho)-28(cia\\273)-1(b)29(y)-251(ta)-252(p)-27(o)-28(d)1(e)-252(p\\252otem)-252(zdy)1(c)27(ha\\252a..)1(.)]TJ 0 -13.549 Td[(M\\363)-55(j)-310(Bo\\273)-1(e,)-310(w)-310(jedn)1(e)-1(j)-309(w)-1(si)-310(sie)-1(d)1(z)-1(\\241,)-309(prze)-1(z)-310(mie)-1(d)1(z)-1(\\246,)-310(a)-310(ni)1(k)28(om)27(u)-309(to)-310(\\261)-1(p)1(iku)-310(n)1(ie)-310(psuje...)-309(Ju-)]TJ 0 -13.549 Td[(\\261c)-1(i,)-407(k)56(a\\273)-1(d)1(e)-1(n)-407(Je)-1(zuso)28(wi)-408(osta)27(wia)-407(s)-1(tar)1(un)1(e)-1(k)-407(o)-408(bi)1(e)-1(d)1(ot\\246)-409(i)-407(na)-407(z)-1(rz\\241dzenie)-408(b)-27(os)-1(ki)1(e)-408(z)-1(w)28(ala)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o,)-352(a)-351(s)-1(am)-351(rad)-351(pr)1(z)-1(y)-351(p)-28(e\\252nej)-351(m)-1(i)1(s)-1(ce)-352(br)1(z)-1(u)1(c)27(ho)28(wi)-351(folgu)1(je)-352(i)-351(c)27(h)1(o)-28(\\242)-1(b)29(y)-352(ciep\\252ym)-352(k)28(o-)]TJ 0 -13.549 Td[(\\273uc)27(h)1(e)-1(m)-333(usz)-1(y)-333(o)-28(d)1(gradza,)-333(b)28(y)-333(in)1(o)-334(sk)56(am)-1(l)1(ania)-333(biedu)1(j\\241cyc)27(h)-332(nie)-334(p)-27(os\\252ys)-1(ze)-1(\\242...)]TJ 27.879 -13.55 Td[({)-333(C)-1(\\363\\273)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\242?)-334(k)1(t\\363ry\\273)-334(t)1(o)-334(ma)-333(t)27(y)1(lac)27(h)1(na,)-333(b)28(y)-333(ws)-1(zystkiej)-333(bi)1(e)-1(d)1(z)-1(ie)-333(z)-1(arad)1(z)-1(i)1(\\252?)]TJ 0 -13.549 Td[({)-368(Kto)-367(nie)-368(m)-1(a)-367(c)27(h\\246c)-1(i)1(,)-368(ten)-368(wie,)-368(j)1(ak)-368(wykr\\246c)-1(i)1(!)-368(Nie)-368(do)-368(w)28(as)-368(pij)1(\\246)-1(,)-367(nie)-368(na)-368(sw)28(oim)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(c)-1(ie)-316(i)-315(d)1(obrze)-316(wie)-1(m,)-315(jak)-315(w)28(am)-316(c)-1(i\\246\\273k)28(o,)-316(al)1(e)-316(s)-1(\\241)-315(takie,)-316(co)-315(b)28(y)-316(mog\\252y)-315(p)-28(om\\363)-28(c,)-315(s)-1(\\241:)-315(a)]TJ 0 -13.549 Td[(m\\252ynar)1(z)-1(,)-333(a)-333(ks)-1(i)1(\\241dz,)-334(a)-333(organ)1(ista,)-333(a)-334(d)1(ru)1(gie)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)-333(im)-333(kto)-333(p)-28(o)-27(dsun\\241\\252)-333(o)-333(t)28(ym)-1(,)-333(to)-333(mo\\273)-1(e)-333(b)28(y)-333(s)-1(i\\246)-333(z)-1(li)1(to)27(w)28(a\\252y)83(.)1(..)-333({)-334(t)1(\\252)-1(u)1(mac)-1(zy\\252a.)]TJ 0 -13.55 Td[({)-318(Kto)-318(ma)-318(c)-1(zuj)1(n\\241)-318(du)1(s)-1(z\\246,)-318(te)-1(n)-317(s)-1(am)-318(dos\\252ys)-1(zy)-318(w)28(o\\252anie)-318(c)-1(ierp)1(i\\241cyc)27(h)1(,)-318(nie)-318(p)-28(ot)1(rz)-1(a)]TJ -27.879 -13.549 Td[(m)27(u)-278(o)-279(t)28(ym)-279(z)-279(am)28(b)-28(on)28(y)-278(krzyki)1(w)27(a\\242!)-279(Moi)1(\\261)-1(ciew)-1(y)84(,)-279(d)1(obr)1(z)-1(e)-279(one)-279(wiedz\\241,)-279(co)-279(s)-1(i)1(\\246)-280(z)-279(n)1(aro)-28(d)1(e)-1(m)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(n)28(ym)-240(dzieje,)-240(b)-27(o)-28(\\242)-240(t\\241)-240(bied\\241)-240(l)1(ud)1(z)-1(k)56(\\241)-240(si\\246)-241(an)1(o)-240(pas\\241)-240(i)-240(n)1(a)-240(ni)1(e)-1(j)-239(t\\252u\\261c)-1(i)1(e)-1(j)1(\\241...)-240(M)1(\\252ynarzo)28(wi)]TJ 0 -13.549 Td[(to)-249(\\273)-1(n)1(iw)28(o)-249(te)-1(r)1(az)-1(,)-249(c)27(h)1(o)-28(cia\\273)-250(d)1(o)-249(prze)-1(d)1(n\\363)28(wk)56(a)-249(dalek)28(o,)-249(pr)1(o)-28(c)-1(es)-1(j)1(ami)-249(lud)1(z)-1(ie)-249(c)-1(i)1(\\241)-28(gn\\241)-249(p)-27(o)-249(m)-1(\\241k)28(\\246)]TJ 0 -13.549 Td[(i)-455(k)56(as)-1(z\\246)-1(;)-455(za)-455(os)-1(tatn)1(i)-455(grosz)-1(,)-455(n)1(a)-456(b)-27(\\363rg,)-455(za)-455(o)-28(dr)1(o)-1(b)-27(ek)-455(alb)-27(o)-456(d)1(obry)-455(p)1(rec)-1(en)28(t,)-455(a)-455(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.55 Td[(pi)1(e)-1(r)1(z)-1(yn)1(\\246)-334(\\233ydo)28(wi)-333(s)-1(p)1(rze)-1(d)1(a\\242)-1(,)-333(a)-333(je\\261)-1(\\242)-333(trza)-334(k)1(upi)1(\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(d)1(armo)-334(n)1(ikto)-333(ni)1(e)-334(da.)1(..)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(p)-28(omni)1(a\\252)-1(a)-333(sobie)-334(w\\252asne,)-333(nieda)28(wne)-334(n)1(\\246)-1(d)1(z)-1(e)-333(i)-334(w)28(es)-1(tc)28(hn\\246\\252a)-333(c)-1(i\\246\\273)-1(k)28(o.)]TJ 0 -13.549 Td[({)-399(Pr)1(z)-1(es)-1(iedzia\\252am)-399(do)-399(p)-27(\\363\\271)-1(n)1(a)-400(p)1(rzy)-399(Flor)1(c)-1(e,)-399(k)28(obiet)-399(s)-1(i)1(\\246)-400(te\\273)-400(n)1(as)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252o)-399(i)-399(p)-27(o-)]TJ -27.879 -13.549 Td[(wiada\\252y)84(,)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(w)27(e)-333(w)-1(si)-333(dzieje,)-333(p)-28(o)28(wiada\\252y)84(...)]TJ 27.879 -13.55 Td[({)-396(W)-396(imi\\246)-397(Oj)1(c)-1(a)-396(i)-396(Sy)1(na!)-396({)-396(krzykn)1(\\246)-1(\\252a)-396(naraz)-396(Hank)56(a)-396(z)-1(ry)1(w)27(a)-55(j\\241c)-397(si\\246)-397(n)1(a)-396(r\\363)28(w)-1(n)1(e)]TJ -27.879 -13.549 Td[(nogi)1(,)-338(b)-27(o)-338(wiatr)-338(tak)-337(ano)-338(tr)1(z)-1(asn\\241\\252)-338(wr\\363tn)1(iami,)-338(\\273e)-338(dziw)-338(s)-1(i\\246)-338(n)1(ie)-339(r)1(oz)-1(l)1(e)-1(cia\\252y)83(.)-337(Wyw)28(ar\\252a)]TJ 0 -13.549 Td[(je)-333(z)-334(tru)1(dem)-1(,)-333(mo)-28(cno)-333(p)-28(o)-27(dp)1(ar\\252s)-1(zy)-333(k)28(o\\252k)55(ami.)]TJ 27.879 -13.549 Td[({)-333(Wieje)-334(sielni)1(e)-1(,)-333(jeno)-333(cie)-1(p)1(\\252y)-333(jaki\\261,)-333(b)28(y)-333(desz)-1(cz)-1(u)-333(n)1(ie)-334(spro)28(w)28(adzi\\252.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(i)-333(tak)-333(w)28(\\363z)-334(si\\246)-334(w)-334(p)-27(olu)-333(p)-27(o)-333(s)-1(\\246kle)-333(z)-1(arzyn)1(a.)]TJ 0 -13.55 Td[({)-333(P)28(ar\\246)-334(d)1(ni)-333(d)1(obrego)-333(s)-1(\\252o\\253ca)-333(i)-333(w)-1(n)1(e)-1(t)-333(p)1(rz)-1(esc)27(hn)1(ie,)-334(zwie)-1(sna)-333(p)1(rz)-1(ecie)-1(c)28(h.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(c)28(ho)-28(\\242)-334(zacz)-1(\\241\\242)-334(sadzi\\242)-334(p)1(rze)-1(d)-333(\\261wi\\246)-1(tami!)]TJ 0 -13.549 Td[(Pr)1(z)-1(egady)1(w)27(a\\252y)-253(niekiedy)84(,)-254(p)1(iln)1(ie)-254(z)-1(a)-55(j\\246te,)-254(a\\273)-254(i)-253(c)-1(a\\252ki)1(e)-1(m)-254(p)1(rzyc)-1(i)1(c)27(h\\252y)84(,)-254(j)1(e)-1(n)1(o)-254(p)1(ac)-1(an)1(ie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ebi)1(e)-1(ran)29(yc)27(h)-331(zie)-1(mn)1(iak)28(\\363)28(w)-332(s)-1(\\252yc)28(ha\\242)-332(b)29(y\\252o,)-332(\\273e)-332(to)-331(drob)1(ne)-332(r)1(z)-1(u)1(c)-1(a\\252y)-331(na)-331(jedn)1(\\241)-332(ku)1(p)-27(\\246)-1(,)-331(a)]TJ 0 -13.549 Td[(nad)1(bu)1(t)28(w)-1(i)1(a\\252)-1(e)-333(na)-333(dr)1(ug\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\246dzie)-334(cz)-1(y)1(m)-334(p)-27(o)-28(dp)1(a\\261)-1(\\242)-334(macior\\246)-334(i)-333(l)1(a)-334(kr)1(\\363)28(w)-334(te\\273)-334(s)-1(t)1(a)-1(r)1(c)-1(zy)-333(na)-333(pi)1(c)-1(ie...)]TJ 0 -13.55 Td[(Ale)-432(Hank)56(a)-432(jak)1(b)28(y)-432(n)1(ie)-433(s\\252ysz)-1(a\\252a)-432(pr)1(z)-1(em)27(y)1(\\261)-1(li)1(w)27(a)-55(j\\241c)-432(w)27(ci\\241\\273)-1(,)-431(jak)-432(b)29(y)-432(s)-1(i)1(\\246)-433(d)1(o)-432(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(o)-56(j)1(c)-1(o)28(wyc)28(h)-487(pieni\\246dzy)-487(dob)1(ra\\242)-488(n)1(a)-56(j)1(s)-1(p)1(ra)28(w)-1(n)1(iej,)-487(\\273)-1(e)-487(t)28(ylk)28(o)-487(niekiedy)-487(sp)-28(ogl\\241d)1(a\\252a)-488(p)1(rze)-1(z)]TJ 0 -13.549 Td[(wr\\363tn)1(ie)-390(na)-390(\\261wiat,)-390(n)1(a)-390(dr)1(z)-1(ewin)28(y)-390(r)1(oz)-1(ciapan)1(e)-390(i)-390(sz)-1(amo)-28(c\\241c)-1(e)-390(s)-1(i)1(\\246)-391(z)-390(wic)27(h)29(ur\\241.)-389(P)28(ostrz\\246)-1(-)]TJ 0 -13.549 Td[(pi)1(one,)-264(s)-1(i)1(ne)-264(c)27(hm)28(urzysk)56(a)-264(prze)-1(w)28(ala\\252y)-264(si\\246)-265(p)-27(o)-264(n)1(ie)-1(b)1(ie)-265(k)1(ie)-1(j)-263(roztrz\\246)-1(sione)-264(snop)28(y)84(,)-264(a)-264(wiate)-1(r)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-320(si\\246)-320(w)27(ci\\241\\273)-320(wzm)-1(aga\\252)-319(i)-320(tak)-319(jak)28(o\\261)-320(ci)-319(p)-28(o)-28(d)1(wie)-1(w)28(a\\252)-320(z)-320(d)1(o\\252u,)-319(i\\273)-1(e)-320(p)-27(osz)-1(ycia)-319(na)-320(c)28(ha-)]TJ 0 -13.55 Td[(\\252up)1(ie)-313(j)1(e)-1(\\273y\\252y)-312(s)-1(i\\246)-313(n)1(ib)28(y)-312(sz)-1(cz)-1(otk)56(a.)-312(Zi\\241b)-312(p)1(rz)-1(y)-312(t)28(ym)-312(c)-1(i\\241)-27(gn\\241\\252)-313(wil)1(gotn)28(y)-312(i)-312(s)-1(ro)-27(dze)-313(pr)1(z)-1(ej\\246t)28(y)]TJ 0 -13.549 Td[(na)28(w)28(oz)-1(em,)-381(kt\\363r)1(e)-1(n)-380(wybi)1(e)-1(ral)1(i)-381(z)-381(gno)-55(jo)28(wisk)55(a.)-380(W)-381(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-380(z)-1(a\\261)-381(b)28(y)1(\\252)-1(o)-380(pra)28(wie)-381(p)1(usto,)]TJ\nET\nendstream\nendobj\n1293 0 obj <<\n/Type /Page\n/Contents 1294 0 R\n/Resources 1292 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1292 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1298 0 obj <<\n/Length 8659      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(404)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(jeno)-293(ni)1(e)-1(ki)1(e)-1(d)1(y)-294(p)1(rze)-1(b)1(iega\\252)-1(y)-293(r)1(oz)-1(cz)-1(ap)1(ie)-1(r)1(z)-1(on)1(e)-294(ku)1(ry)83(,)-293(p)-27(ogani)1(ane)-294(p)1(rz)-1(ez)-294(wiater,)-293(g\\246)-1(si)-293(s)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(dzia\\252y)-276(w)-277(zacis)-1(zu)-276(p)-27(o)-28(d)-276(p\\252otem)-277(n)1(a)-276(g\\241s)-1(i\\246tac)27(h)1(,)-276(c)-1(ic)28(ho)-276(pi)1(uk)56(a)-56(j)1(\\241c)-1(yc)28(h,)-276(a)-276(c)-1(o)-276(par)1(\\246)-277(pacierzy)]TJ 0 -13.549 Td[(p)-27(o)-28(dj)1(e)-1(\\273d\\273a\\252)-304(ostro)-303(Pietrek)-303(z)-304(pu)1(s)-1(t)28(ym)-304(w)28(oz)-1(em,)-304(zakr\\246ca\\252)-304(do)-27(ok)28(o\\252)-1(a,)-303(sta)28(w)27(a\\252)-303(ryc)27(h)29(t)28(yk)-304(n)1(a)]TJ 0 -13.549 Td[(pr)1(os)-1(t)-316(kl)1(e)-1(p)1(is)-1(k)56(a,)-316(zabij)1(a\\252)-317(r)1(\\246)-1(ce)-1(,)-316(k)28(on)1(iom)-317(p)-27(o)-28(dr)1(z)-1(u)1(c)-1(a\\252)-316(k\\252ak)-316(s)-1(i)1(ana)-316(i)-316(nak\\252ad)1(\\252)-1(szy)-317(w)28(es)-1(p)-27(\\363\\252)-317(z)]TJ 0 -13.549 Td[(Wit)1(kiem)-334(gno)-55(ju)1(,)-333(p)-28(o)-28(d)1(piera\\252)-333(w)27(\\363z)-333(na)-333(wyb)-28(o)-55(jac)28(h)-333(i)-333(rusz)-1(a\\252)-333(w)-334(p)-27(ole.)]TJ 27.879 -13.55 Td[(Cz)-1(asami)-246(z)-1(n)1(\\363)27(w)-246(J\\363zk)56(a)-246(w)-1(p)1(ada\\252a)-246(z)-246(krzykiem,)-246(z)-1(acz)-1(erwienion)1(a,)-246(zdysz)-1(an)1(a,)-246(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(j\\246ta)-333(t)28(ym)-334(r)1(oz)-1(n)1(os)-1(ze)-1(n)1(ie)-1(m)-333(kie\\252bas,)-334(i)-333(tr)1(a)-56(j)1(k)28(ota\\252a.)]TJ 27.879 -13.549 Td[({)-318(Za)-1(n)1(ies)-1(\\252am)-319(w)28(\\363)-56(j)1(tom,)-319(t)1(e)-1(raz)-318(p)-28(olet\\246)-319(d)1(o)-319(stryj)1(e)-1(czn)28(yc)27(h)1(...)-318(W)-318(c)27(h)1(a\\252)-1(u)1(pi)1(e)-319(s)-1(iedzieli,)]TJ -27.879 -13.549 Td[(izb)28(y)-333(ju)1(\\273)-334(bi)1(e)-1(l\\241)-333(n)1(a)-334(\\261w)-1(i)1(\\246)-1(ta,)-333(tak)-333(d)1(z)-1(i\\246k)28(o)28(w)27(al)1(i,)-333(tak)-333(dzi\\246)-1(k)28(o)28(w)28(ali..)1(.)]TJ 27.879 -13.549 Td[(Roz)-1(p)-27(o)28(wiada\\252a)-346(sz)-1(erok)28(o,)-346(c)27(h)1(o)-28(\\242)-346(nikt)1(o)-347(j)1(e)-1(j)-345(z)-1(a)-346(j)1(\\246)-1(zyk)-346(ni)1(e)-347(ci\\241)-28(ga\\252,)-346(i)-346(zno)28(wu)-346(lec)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(na)-333(wie\\261)-1(,)-333(n)1(ios)-1(\\241c)-333(os)-1(tro\\273ni)1(e)-1(,)-333(w)-333(c)27(h)28(u)1(s)-1(tk)28(\\246)-334(b)1(ia\\252\\241)-333(o)27(wi\\241zane,)-333(m)-1(i)1(s)-1(ec)-1(zki)-333(z)-334(p)-27(o)-28(d)1(arun)1(k)56(am)-1(i.)]TJ 27.879 -13.55 Td[({)-333(T)83(ra)-55(jk)28(ot)-333(dzieuc)27(h)1(a,)-333(ale)-334(zm)27(y\\261lna)-333({)-333(z)-1(au)29(w)27(a\\273y\\252a)-334(J)1(agust)27(y)1(nk)56(a.)]TJ 0 -13.549 Td[({)-291(Ju\\261c)-1(i,)-291(co)-292(zm)27(y)1(\\261)-1(ln)1(a)-292(wielce)-1(,)-291(j)1(e)-1(n)1(o)-292(\\273e)-292(do)-291(psic)27(h)-290(\\014gl\\363)28(w)-292(i)-291(gd)1(z)-1(ie)-291(b)28(y)-291(s)-1(i\\246)-292(zaba)28(wi\\242...)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(c)27(hcec)-1(ie?...)-333(skrzat)-334(to)-333(j)1(e)-1(sz)-1(cz)-1(e,)-333(dziec)-1(iu)1(c)27(h)1(...)]TJ 0 -13.549 Td[({)-333(Witek,)-333(obacz)-334(n)1(o,)-334(k)1(to)-334(tam)-333(ws)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(c)28(ha\\252up)29(y!)-333({)-334(za)28(w)27(o\\252a\\252a)-333(naraz)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(Ko)28(w)27(al)-333(p)-27(os)-1(zli)-333(dop)1(iero)-333(c)-1(o!)]TJ 0 -13.55 Td[(Tkni)1(\\246)-1(ta)-440(jaki)1(m)-1(\\261)-441(z\\252ym)-441(p)1(rze)-1(cz)-1(u)1(c)-1(iem,)-441(p)-27(obi)1(e)-1(g\\252a)-440(prosto)-440(na)-441(o)-55(jco)28(w)-1(sk)56(\\241)-441(stron)1(\\246)-1(;)]TJ -27.879 -13.549 Td[(c)27(h)1(ory)-428(le\\273)-1(a\\252)-428(j)1(ak)-428(z)-1(wycz)-1(a)-55(jn)1(ie)-429(wznak.)-428(Jagn)1(a)-428(c)-1(osik)-428(sz)-1(y\\252a)-428(p)-27(o)-28(d)-428(okn)1(e)-1(m,)-428(w)-428(izbie)-428(nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(wi\\246c)-1(ej)-333(nik)28(ogo.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(s)-1(i)1(\\246)-334(to)-333(Mic)27(h)1(a\\252)-334(p)-27(o)-28(d)1(z)-1(ia\\252?..)1(.)]TJ 0 -13.549 Td[({)-354(Mu)1(s)-1(z\\241)-355(b)29(y\\242)-355(gd)1(z)-1(iesik,)-354(sz)-1(u)1(k)55(a)-55(j\\241)-354(klu)1(c)-1(za)-354(o)-28(d)-354(w)28(oz)-1(\\363)28(w,)-354(kt\\363r)1(e)-1(go)-354(b)28(yl)1(i)-354(kiej\\261)-355(p)-27(o\\273y-)]TJ -27.879 -13.55 Td[(cz)-1(yl)1(i)-334(M)1(ac)-1(i)1(e)-1(j)1(o)27(wi)-333({)-333(ob)-56(j)1(a\\261)-1(n)1(ia\\252a,)-333(ni)1(e)-334(p)-28(o)-27(dn)1(os)-1(z\\241c)-334(o)-28(cz)-1(u)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-276(z)-1(a)-55(jrza\\252a)-277(d)1(o)-277(sieni,)-276(ni)1(e)-277(b)28(y\\252o)-277(go;)-276(za)-56(jr)1(z)-1(a\\252a)-276(na)-276(s)-1(w)28(o)-56(j)1(\\241)-277(stron\\246,)-276(jeno)-276(B)-1(yl)1(ic)-1(a)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-284(z)-284(d)1(z)-1(i)1(e)-1(\\242m)-1(i)-283(p)1(rzy)-283(k)28(om)-1(i)1(nie)-283(i)-283(w)-1(y)1(s)-1(tr)1(ugiw)28(a\\252)-284(i)1(m)-284(wiatraczki;)-283(na)28(w)28(e)-1(t)-283(w)-283(p)-28(o)-27(dw)28(\\363rz)-1(u)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a\\252a;)-446(nik)56(a)-55(j)-447(n)1(i)-447(znaku)-446(p)-27(o)-447(n)1(im)-1(,)-446(wi\\246)-1(c)-447(j)1(u\\273)-447(pr)1(os)-1(to)-446(rzuci\\252a)-447(si\\246)-447(do)-447(k)28(omory)84(,)-447(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(dr)1(z)-1(wi)-333(b)28(y\\252y)-333(p)1(rzyw)27(ar)1(te)-1(.)]TJ 27.879 -13.55 Td[(Jak)28(o\\273)-326(k)28(o)28(w)27(al)-325(sta\\252)-326(tam)-326(p)1(rzy)-326(b)-27(ec)-1(zc)-1(e)-326(z)-326(r)1(\\246)-1(k)28(oma)-326(p)-27(o)-326(\\252ok)28(cie)-326(w)28(e)-326(z)-1(b)-27(o\\273)-1(u)-325(i)-325(p)1(ilni)1(e)-326(w)]TJ -27.879 -13.549 Td[(ni)1(m)-334(grze)-1(b)1(a\\252.)]TJ 27.879 -13.549 Td[({)-434(W)-433(j\\246c)-1(zmie)-1(n)1(iu)-433(to)-434(b)28(y)-433(klu)1(c)-1(z)-434(c)27(h)1(o)27(w)28(ali?)-434(co?)-434({)-434(wyr)1(z)-1(u)1(c)-1(i\\252a)-434(zdy)1(s)-1(zana,)-433(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(zipi\\241c)-333(z)-1(e)-334(wzbu)1(rze)-1(ni)1(a)-334(i)-333(sta)-56(j)1(\\241c)-334(gro\\271ni)1(e)-334(nap)1(rze)-1(ciw.)]TJ 27.879 -13.549 Td[({)-287(P)28(atr)1(z)-1(\\246,)-287(c)-1(zy)-287(ni)1(e)-288(sple\\261)-1(n)1(ia\\252y)84(,)-287(c)-1(zy)-287(ab)28(y)-287(zda)-287(si\\246)-288(d)1(o)-287(s)-1(iewu..)1(.)-287({)-287(j\\241k)56(a\\252)-287(z)-1(ask)28(o)-28(c)-1(zon)28(y)]TJ -27.879 -13.55 Td[(ni)1(e)-1(sp)-28(o)-27(dziani)1(e)-1(.)]TJ 27.879 -13.549 Td[(Nie)-334(w)28(asz)-1(a)-333(s)-1(p)1(ra)28(w)27(a!)1(...)-333(P)28(o)-333(c)-1(o\\261c)-1(i)1(e)-334(tu)-333(wle\\271)-1(li)1(?)-334({)-333(krzykn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[(Wyj)1(\\241\\252)-334(n)1(iec)27(h\\246tn)1(ie)-334(r\\246c)-1(e)-333(i)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(ham)28(uj)1(\\241c)-334(w\\261)-1(ciek\\252o\\261)-1(\\242,)-333(z)-1(amru)1(c)-1(za\\252:)]TJ 0 -13.549 Td[({)-333(A)-334(wy)-333(pi)1(ln)28(u)1(jec)-1(ie)-333(m)-1(e,)-333(kiej)-333(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(a...)]TJ 0 -13.549 Td[({)-410(Ni)1(b)28(y)-409(to)-410(n)1(ie)-410(wie)-1(m,)-409(p)-28(o)-409(c)-1(\\363\\273e)-1(\\261cie)-410(tu)-409(pr)1(z)-1(ysz)-1(l)1(i,)-409(c)-1(o?)-410(Hal)1(e)-1(,)-409(do)-409(c)-1(u)1(dze)-1(j)-409(k)28(omo-)]TJ -27.879 -13.549 Td[(ry)-382(w\\252az)-1(i\\252)-382(b)-27(\\246)-1(d)1(z)-1(ie)-383(i)-382(p)-27(e)-1(n)1(e)-1(tr)1(o)28(w)27(a\\252)-383(p)-27(o)-382(b)-28(ec)-1(zk)56(ac)27(h)1(,)-383(k\\252\\363)-27(dki)-382(mo\\273)-1(e)-383(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(cie)-383(uk)1(r\\246c)-1(a\\242,)-383(d)1(o)]TJ 0 -13.55 Td[(skrzy\\253)-333(ot)28(wie)-1(r)1(a\\242)-1(..)1(.)-333(c)-1(o?{)-333(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252a)-333(c)-1(oraz)-333(g\\252o\\261)-1(ni)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(ada\\252e)-1(m)-333(w)27(ama)-333(w)27(cz)-1(or)1(a)-56(j,)-333(cz)-1(ego)-333(nam)-334(szuk)56(a\\242)-334(p)-27(otrza...)]TJ 0 -13.549 Td[(Wysila\\252)-333(si\\246)-334(na)-333(sp)-28(ok)28(\\363)-55(j.)]TJ 0 -13.549 Td[({)-356(P)1(rze)-1(d)1(e)-357(mn)1(\\241)-356(c)-1(y)1(ganili)1(\\261)-1(cie,)-356(jedn)1(o)-356(b)28(y)-355(mi)-356(p)1(ias)-1(k)1(ie)-1(m)-356(o)-28(czy)-356(zas)-1(yp)1(a\\242)-1(,)-355(a)-356(rob)1(icie)]TJ -27.879 -13.549 Td[(dr)1(ugie.)-333(Pr)1(z)-1(ejr)1(z)-1(a\\252am)-334(j)1(u\\273)-334(w)28(as)-1(ze)-334(j)1(ud)1(as)-1(zo)27(w)28(e)-334(zam)27(ys\\252y)83(,)-333(p)1(rze)-1(j)1(rz)-1(a\\252am...)]TJ 27.879 -13.55 Td[({)-333(Hank)56(a,)-333(s)-1(tu)1(l)-333(p)28(ysk,)-333(b)-28(o)-333(ci)-333(go)-334(p)1(rzym)-1(k)1(n\\246!)-333({)-334(zarycz)-1(a\\252)-333(z)-1(\\252o)28(wrogo.)]TJ 0 -13.549 Td[({)-297(Sp)1(r\\363b)1(uj,)-297(zb)-27(\\363)-56(j)1(u)-297(jeden!)-297(t)1(knij)-296(m)-1(e)-297(c)27(h)1(o)-28(\\242)-298(p)1(alc)-1(em,)-297(a)-297(takiego)-297(w)-1(r)1(z)-1(asku)-297(n)1(arobi)1(\\246)-1(,)]TJ\nET\nendstream\nendobj\n1297 0 obj <<\n/Type /Page\n/Contents 1298 0 R\n/Resources 1296 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1296 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1301 0 obj <<\n/Length 9449      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(405)]TJ -358.232 -35.866 Td[(\\273e)-334(p)-28(\\363\\252)-333(ws)-1(i)-333(si\\246)-334(zbiegni)1(e)-334(i)-333(obacz)-1(y)84(,)-333(c)-1(o\\261)-334(t)28(y)-333(za)-334(p)1(tas)-1(zek!)-333({)-334(gr)1(oz)-1(i\\252a.)]TJ 27.879 -13.549 Td[(Roz)-1(ejr)1(z)-1(a\\252)-333(s)-1(i)1(\\246)-334(dob)1(rze)-334(p)-28(o)-333(\\261c)-1(ian)1(ac)27(h)-333(i)-333(u)1(s)-1(t\\241)-27(pi\\252)-333(wre)-1(sz)-1(cie)-334(k)1(ln\\241c)-333(s)-1(iar)1(c)-1(zy\\261c)-1(ie.)]TJ 0 -13.549 Td[(P)28(op)1(atrzyli)-351(sobi)1(e)-352(w)-351(o)-28(cz)-1(y)-350(z)-352(b)1(lisk)56(a)-351(i)-351(z)-351(tak)55(\\241)-351(mo)-28(c\\241,)-351(\\273e)-352(b)29(yc)27(h)-350(m)-1(ogl)1(i,)-351(na)-350(\\261)-1(mier\\242)]TJ -27.879 -13.549 Td[(b)28(y)-333(si\\246)-334(p)1(rz)-1(eb)-27(o)-28(dli)-333(t)28(ymi)-333(rozgorza\\252ymi)-334(\\261lepiami.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(a\\273)-334(w)28(o)-28(d\\246)-333(pi\\252a,)-333(d\\252u)1(go)-334(n)1(ie)-334(mog\\241c)-334(si\\246)-334(op)1(am)-1(i\\246ta\\242)-334(p)-27(o)-333(t)27(y)1(m)-334(wz)-1(b)1(ur)1(z)-1(eniu)1(.)]TJ 0 -13.55 Td[({)-312(T)83(rza)-312(je)-312(nal)1(e)-1(\\271\\242)-313(i)-312(sc)27(h)1(o)27(w)28(a\\242)-312(prze)-1(zpi)1(e)-1(cz)-1(n)1(ie)-1(,)-311(b)-28(o)-312(n)1(ie)-1(c)28(h)28(b)28(y)-312(i)1(c)27(h)-312(d)1(opad)1(\\252,)-312(ukr)1(adn)1(ie)]TJ -27.879 -13.549 Td[(rozm)27(y)1(\\261)-1(la\\252a)-333(wrac)-1(a)-55(j\\241c)-333(do)-333(s)-1(to)-27(do\\252y)83(,)-333(al)1(e)-334(nar)1(a)-1(z)-333(z)-1(a)28(wr\\363)-28(ci\\252a)-333(z)-334(p)-27(\\363\\252)-334(d)1(rogi.)]TJ 27.879 -13.549 Td[({)-287(Siedzisz)-288(w)-288(c)28(ha\\252u)1(pie,)-287(s)-1(tr)1(\\363\\273)-1(u)1(jes)-1(z,)-287(a)-288(ob)-27(cyc)27(h)-287(d)1(o)-288(k)28(omory)-287(p)1(usz)-1(cz)-1(asz!)-287({)-288(kr)1(z)-1(y)1(k-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-333(z)-334(g\\363ry)-333(na)-333(Jagn)1(\\246)-334(ot)28(w)-1(i)1(e)-1(r)1(a)-56(j\\241c)-333(drzwi.)]TJ 27.879 -13.549 Td[({)-438(Mic)28(ha\\252)-438(nie)-438(ob)-28(cy)83(,)-438(ma)-438(takie)-438(pra)28(w)28(o)-439(j)1(ak)-438(i)-438(w)-1(y)1(!)-438({)-439(w)28(c)-1(al)1(e)-439(si\\246)-439(ni)1(e)-439(ul)1(\\246)-1(k\\252a)-438(jej)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)1(u.)]TJ 27.879 -13.55 Td[({)-385(Szcz)-1(ek)55(asz)-385(kiej)-385(ten)-385(p)1(ie)-1(s,)-385(zm)-1(\\363)28(wi\\252a\\261)-385(s)-1(i\\246)-385(z)-385(nim,)-385(d)1(obrze)-1(,)-384(ale)-385(bac)-1(z,)-385(\\273e)-386(n)1(iec)27(h)]TJ -27.879 -13.549 Td[(jeno)-361(co)-362(z)-362(c)28(ha\\252up)29(y)-362(zgin)1(ie)-1(,)-361(to)-361(jak)-361(B\\363g)-362(w)-361(niebi)1(e)-1(,)-361(do)-361(s)-1(\\241d)1(u)-361(p)-27(o)-28(dam)-362(i)-361(ciebie)-362(wsk)56(a)-1(\\273\\246,)]TJ 0 -13.549 Td[(\\273e)-1(\\261)-334(p)-27(omaga\\252)-1(a.)1(..)-333(Zapami\\246ta)-56(j)-333(to)-333(sobie!...)-333(-wrze)-1(sz)-1(cz)-1(a\\252a)-333(rozs)-1(r)1(o\\273)-1(on)1(a.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-334(sk)28(o)-28(cz)-1(y\\252a)-333(z)-334(mie)-1(j)1(s)-1(ca,)-333(c)27(h)28(wyt)1(a)-56(j\\241c)-333(w)-334(gar\\261\\242,)-334(co)-333(b)28(y\\252o)-333(na)-333(p)-28(o)-27(dor\\246dziu)1(.)]TJ 0 -13.549 Td[({)-309(Bi\\242)-309(s)-1(i\\246)-309(c)28(hce)-1(sz)-1(!)-308(bij)1(!)-309(p)-27(opr\\363b)1(uj)-308(in)1(o,)-309(to)-309(ci)-309(te)-309(c)-1(acan\\241)-308(g\\246)-1(b)1(us)-1(i)1(\\246)-310(t)1(ak)-309(s)-1(p)1(ra)28(wi\\246,)-309(a\\273)]TJ -27.879 -13.55 Td[(si\\246)-334(cz)-1(erw)28(on\\241)-333(oblejes)-1(z)-333(i)-334(r)1(o)-28(dzona)-333(matk)56(a)-334(ci\\246)-334(n)1(ie)-334(p)-27(oz)-1(n)1(a!...)]TJ 27.879 -13.549 Td[(Du)1(ndero)28(w)28(a\\252a,)-404(za)-56(jad)1(le)-404(kr)1(z)-1(yk)56(a)-56(j)1(\\241c)-404(nad)-403(ni)1(\\241,)-404(co)-404(t)28(ylk)28(o)-403(\\261)-1(li)1(na)-404(i)-403(z)-1(\\252o\\261\\242)-404(na)-404(j)1(\\246)-1(zyk)]TJ -27.879 -13.549 Td[(sto)-28(c)-1(zy\\252a.)]TJ 27.879 -13.549 Td[(I)-242(ni)1(e)-243(wiad)1(a)-242(z)-1(go\\252a,)-242(n)1(a)-242(c)-1(zym)-242(b)28(y)-242(s)-1(i)1(\\246)-243(to)-242(sk)28(o\\253cz)-1(y)1(\\252o,)-242(b)-28(o)-242(j)1(u\\273)-242(pazur)1(y)-242(rozc)-1(zapierza-)]TJ -27.879 -13.549 Td[(\\252y)-343(d)1(r\\241c)-343(s)-1(i\\246)-343(coraz)-343(bli)1(\\273)-1(ej)-343(siebie,)-343(gd)1(yb)28(y)-343(n)1(ie)-343(Ro)-28(c)27(h)1(o,)-343(kt\\363r)1(e)-1(n)-342(akur)1(atnie)-343(w)-343(s)-1(am\\241)-343(p)-27(or\\246)]TJ 0 -13.55 Td[(nad)1(s)-1(zed\\252,)-346(\\273)-1(e)-346(Hank)56(a,)-346(pr)1(z)-1(y)1(w)-1(st)28(ydzona)-346(j)1(e)-1(go)-346(pat)1(rz)-1(eni)1(e)-1(m,)-346(o)-28(c)27(h)1(\\252on\\246\\252a)-347(n)1(iec)-1(o)-346(i)-346(zm)-1(i)1(lk\\252a)]TJ 0 -13.549 Td[(zatrzas)-1(ku)1(jac)-334(j)1(e)-1(n)1(o)-334(za)-333(s)-1(ob)1(\\241)-334(d)1(rzw)-1(i)-333(z)-333(c)-1(a\\252ej)-333(z)-1(\\252o\\261c)-1(i.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-400(za\\261)-400(os)-1(ta\\252a)-399(na)-399(izbie,)-399(ruc)28(ha\\242)-400(si\\246)-400(ni)1(e)-400(m)-1(og\\241c)-399(z)-400(przera\\273)-1(eni)1(a,)-400(w)28(argi)-399(jej)]TJ -27.879 -13.549 Td[(lata\\252y)-350(nib)29(y)-351(w)28(e)-352(f)1(e)-1(b)1(rze)-351(i)-351(se)-1(r)1(c)-1(e)-351(k)28(o\\252ata\\252o,)-351(\\252zy)-351(p)-27(os)-1(y)1(pa\\252y)-351(si\\246)-351(kiej)-350(gro)-28(c)28(h.)-350(A\\273)-352(w)-351(k)28(o\\253)1(c)-1(u)]TJ 0 -13.549 Td[(opr)1(z)-1(y)1(tom)-1(n)1(ia\\252a,)-386(r)1(z)-1(u)1(c)-1(a)-55(j\\241c)-386(w)-386(k)56(\\241t)-386(maglo)28(w)-1(n)1(ic\\246)-386(\\261)-1(cis)-1(k)56(an)1(\\241)-386(w)-386(gar\\261c)-1(i)1(,)-386(bu)1(c)27(h)1(n\\246\\252a)-386(s)-1(i)1(\\246)-387(n)1(a)]TJ 0 -13.55 Td[(\\252\\363\\273)-1(k)28(o,)-333(w)-333(b)-28(ol)1(e)-1(\\261c)-1(iwym,)-333(ni)1(e)-1(u)1(tulon)29(ym)-334(p)1(\\252ac)-1(zu)-333(roztrz\\246)-1(siona)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(t)28(ymc)-1(zas)-1(em)-334(op)-27(o)28(w)-1(i)1(ada\\252a)-333(R)-1(o)-27(c)27(ho)28(wi,)-333(o)-333(c)-1(o)-333(im)-334(p)-27(osz)-1(\\252o.)]TJ 0 -13.549 Td[(S\\252u)1(c)27(h)1(a\\252)-315(cie)-1(r)1(pliwie)-314(jazgotliwyc)27(h)-314(i)-314(sz)-1(lo)-27(c)27(hem)-315(p)1(rze)-1(p)1(latan)28(yc)28(h)-314(p)-28(o)28(wiada\\253)1(,)-314(a)-315(n)1(ie)]TJ -27.879 -13.549 Td[(mog\\241c)-266(z)-266(ni)1(c)27(h)-265(wie)-1(l)1(e)-266(wym)-1(i)1(ark)28(o)28(w)27(a\\242,)-265(przerw)27(a\\252)-265(os)-1(t)1(ro)-266(i)-265(j)1(\\241\\252)-266(j)1(\\241)-266(suro)28(w)28(o)-266(gr)1(om)-1(i)1(\\242)-1(,)-265(o)-28(d)1(s)-1(u)1(n\\241\\252)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-333(p)-27(o)-28(da)28(w)28(ane)-334(j)1(e)-1(d)1(z)-1(eni)1(e)-334(i)-333(w)-1(i)1(e)-1(lce)-334(r)1(oz)-1(gn)1(ie)-1(w)28(an)28(y)-333(p)-27(o)-334(cz)-1(ap)1(k)28(\\246)-334(si\\246)-1(ga\\252.)]TJ 27.879 -13.55 Td[({)-279(Ju)1(\\273)-279(m)-1(i)-278(w)27(e)-279(\\261wiat)-279(i\\261\\242)-279(pr)1(z)-1(yj)1(dzie)-279(i)-279(n)1(igd)1(y)-279(Lip)1(ie)-1(c)-279(n)1(a)-279(o)-28(cz)-1(y)-278(ni)1(e)-280(ogl)1(\\241da\\242,)-279(ki)1(e)-1(j)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(tacy)83(.)-377(Z\\252e)-1(m)28(u)-377(to)-377(ws)-1(zystk)28(o)-377(na)-377(p)-28(o)-27(c)-1(iec)27(h)1(\\246)-378(alb)-27(o)-377(\\233ydo)28(winom,)-377(co)-378(si\\246)-378(ze)-378(sw)27(ar)1(liw)28(o\\261)-1(ci)-377(a)]TJ 0 -13.549 Td[(g\\252up)-27(ot)28(y)-323(c)28(hrze)-1(\\261cija\\253)1(s)-1(ki)1(e)-1(go)-323(n)1(aro)-28(d)1(u)-323(p)1(rze)-1(\\261mie)-1(w)28(a)-56(j)1(\\241!)-323(Jez)-1(u)1(s)-323(m)-1(\\363)-55(j)-323(mi\\252osie)-1(r)1(n)28(y)84(,)-323(to)-323(ma\\252o)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(,)-409(ma\\252o)-409(c)28(hor)1(\\363b,)-408(m)-1(a\\252o)-408(g\\252o)-28(do)28(w)28(a\\253,)-408(to)-409(si\\246)-409(j)1(e)-1(sz)-1(cze)-409(w)-409(p)-27(o)-56(jedy)1(nk)28(\\246)-409(za)-409(\\252b)28(y)-408(b)1(ior\\241)-408(i)]TJ 0 -13.549 Td[(z\\252)-1(o\\261ci\\241)-334(d)1(ok\\252ada)-55(j\\241.)]TJ 27.879 -13.549 Td[(Zady)1(s)-1(za\\252)-361(si\\246)-360(t\\241)-360(przem)-1(o)28(w)28(\\241)-1(,)-359(Hank)28(\\246)-361(za\\261)-361(p)1(rze)-1(j)1(\\246)-1(\\252a)-360(tak)56(a)-360(\\273)-1(a\\252o\\261\\242)-361(i)-360(strac)28(h,)-360(b)29(y)-360(w)]TJ -27.879 -13.55 Td[(gni)1(e)-1(wie)-334(n)1(ie)-334(o)-28(d)1(s)-1(zed\\252,)-333(\\273)-1(e)-333(p)-28(o)-28(ca\\252o)28(w)27(a\\252a)-333(go)-334(w)-333(r\\246k)28(\\246)-334(pr)1(z)-1(epr)1(as)-1(za)-56(j)1(\\241c)-334(z)-334(ca\\252)-1(ego)-333(s)-1(erca...)]TJ 27.879 -13.549 Td[({)-249(By\\261)-1(cie)-249(w)-1(i)1(e)-1(d)1(z)-1(ieli,)-248(c)-1(o)-249(z)-250(n)1(i\\241)-249(j)1(u\\273)-250(wyt)1(rz)-1(y)1(m)-1(a\\242)-249(c)-1(i)1(\\246)-1(\\273k)28(o,)-249(na)-249(z\\252o\\261)-1(\\242)-249(w)-1(sz)-1(y)1(s)-1(tk)28(o)-249(r)1(obi,)-249(a)]TJ -27.879 -13.549 Td[(na)-270(mo)-56(j)1(\\241)-271(sz)-1(k)28(o)-27(d\\246.)-270(Prze)-1(cie\\273)-271(z)-271(k)1(rz)-1(y)1(w)-1(d)1(\\241)-270(nasz)-1(\\241)-270(tu)-270(sie)-1(d)1(z)-1(i)1(...)-270(jak)1(\\273)-1(e,)-270(t)28(ylac)27(h)1(na)-270(gru)1(n)28(tu)-270(ma)]TJ 0 -13.549 Td[(zapisane...)-341(A)-341(nie)-341(w)-1(i)1(e)-1(cie)-342(to,)-341(jak)56(a)-341(jes)-1(t)1(?)-1(.)1(..)-341(c)-1(o)-341(to)-341(w)-1(y)1(pra)28(wia\\252a)-341(z)-342(par)1(obk)56(am)-1(i)1(...)-341(jak)56(a..)1(.)]TJ 0 -13.549 Td[(\\050{)-448(n)1(ie,)-448(ni)1(e)-449(p)-27(otr)1(a\\014\\252a)-448(wyp)-27(om)-1(n)1(ie\\242)-449(o)-447(An)28(tku)-447(-\\051...)-447(a)-448(teraz)-448(ju)1(\\273)-449(si\\246)-448(p)-27(ono)-448(z)-448(w)28(\\363)-56(j)1(te)-1(m)]TJ 0 -13.55 Td[(zm)-1(a)28(wia...)-425({)-426(do)-28(d)1(a\\252)-1(a)-426(cisz)-1(ej.)-426({)-426(T)84(o)-427(j)1(u\\261c)-1(i)1(,)-426(\\273)-1(e)-426(s)-1(k)28(or)1(o)-426(j\\241)-426(d)1(o)-56(jr)1(z)-1(\\246,)-426(to)-426(si\\246)-427(j)1(a\\273)-1(e)-426(w)27(e)-426(mnie)]TJ 0 -13.549 Td[(gotu)1(je)-334(ze)-334(z\\252)-1(o\\261c)-1(i)1(,)-333(i\\273)-334(pr)1(os)-1(to)-333(b)28(y)1(m)-334(no\\273e)-1(m)-333(p)-28(c)28(hn)1(\\246)-1(\\252a...)]TJ\nET\nendstream\nendobj\n1300 0 obj <<\n/Type /Page\n/Contents 1301 0 R\n/Resources 1299 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1299 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1304 0 obj <<\n/Length 1909      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(406)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(28.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-427(P)28(omst\\246)-427(os)-1(ta)28(w)28(c)-1(ie)-427(Bogu!)-426(ona)-427(te\\273)-427(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-426(i)-427(kr)1(z)-1(ywdy)-426(c)-1(zuj)1(e)-1(,)-426(a)-427(za)-427(s)-1(w)28(o)-56(j)1(e)]TJ -27.879 -13.549 Td[(grze)-1(c)28(h)28(y)-333(c)-1(i)1(\\246)-1(\\273k)28(o)-334(o)-27(dp)-27(o)28(w)-1(ie.)-333(P)28(o)28(wiadam)-333(w)27(am,)-333(nie)-333(krzywd\\271c)-1(ie)-333(jej!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(j)1(a)-333(j\\241)-333(krzywdz\\246)-1(?)]TJ 0 -13.549 Td[(Zdu)1(m)-1(i)1(a\\252a)-286(s)-1(i\\246)-286(wie)-1(l)1(c)-1(e,)-286(ni)1(e)-287(mog\\241c)-287(wymiar)1(k)28(o)27(w)28(a\\242)-1(,)-285(w)-287(cz)-1(y)1(m)-287(si\\246)-286(Jagnie)-286(krzywda)]TJ -27.879 -13.549 Td[(dzieje.)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)1(o)-305(przegryza\\252)-306(c)28(hleb)-305(w)28(o)-28(dz\\241c)-306(za)-305(ni\\241)-305(o)-28(czym)-1(a,)-305(a)-305(cos)-1(i)1(k)-305(m)-1(edyt)1(uj\\241c,)-305(wres)-1(z-)]TJ -27.879 -13.549 Td[(cie)-338(p)-28(og\\252ad)1(z)-1(i\\252)-338(d)1(z)-1(i)1(e)-1(ci\\253skie)-338(g\\252o)28(win)28(y)84(,)-338(tu)1(l\\241c)-1(e)-338(m)28(u)-338(si\\246)-338(do)-337(k)28(olan,)-337(i)-338(zabiera\\252)-338(si\\246)-338(d)1(o)-338(wyj-)]TJ 0 -13.549 Td[(\\261c)-1(ia.)]TJ 27.879 -13.549 Td[({)-366(Za)-55(jrz\\246)-366(do)-365(w)27(as)-366(kt\\363r)1(e)-1(go)-365(dn)1(ia)-366(wiec)-1(zorem)-1(,)-365(a)-366(teraz)-366(w)28(am)-1(a)-365(jeno)-366(r)1(z)-1(ekn\\246:)-365(P)28(o-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(c)28(ha)-56(j)1(c)-1(i)1(e)-334(jej,)-333(r)1(\\363b)-28(cie)-334(sw)27(o)-55(je,)-333(a)-334(r)1(e)-1(sz)-1(t\\246)-333(P)28(an)-333(Jez)-1(u)1(s)-334(s)-1(p)1(ra)28(wi...)]TJ 27.879 -13.549 Td[(P)28(o)-28(c)28(h)28(w)28(ali\\252)-333(B)-1(oga)-333(i)-333(p)-28(osze)-1(d\\252)-333(na)-333(wie\\261)-1(.)]TJ\nET\nendstream\nendobj\n1303 0 obj <<\n/Type /Page\n/Contents 1304 0 R\n/Resources 1302 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1302 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1307 0 obj <<\n/Length 7651      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(29)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ro)-28(c)27(h)1(o)-465(wl\\363k\\252)-465(si\\246)-465(w)27(oln)1(o)-465(dr)1(og\\241)-465(nad)-464(s)-1(ta)28(w)28(e)-1(m,)-465(r)1(az)-1(,)-464(\\273)-1(e)-465(wiatr)-465(tak)-464(w)-465(niego)-465(sie)-1(p)1(a\\252,)]TJ 0 -13.549 Td[(i\\273)-405(l)1(e)-1(d)1(w)-1(i)1(e)-405(s)-1(i\\246)-404(na)-404(nogac)27(h)-404(u)1(trzyma\\252,)-405(a)-404(p)-27(o)-405(d)1(rugi)1(e)-1(,)-404(jak)28(o)-404(strapi)1(on)28(y)-404(b)28(y\\252)-404(w)-1(i)1(e)-1(lce)-405(t)28(ym)]TJ 0 -13.549 Td[(ws)-1(zystkim,)-372(c)-1(o)-372(s)-1(i)1(\\246)-373(w)27(e)-372(w)-1(si)-372(dzia\\252o,)-372(to)-372(jeno)-372(raz)-373(p)-27(o)-373(r)1(az)-373(wz)-1(n)1(os)-1(i)1(\\252)-373(rozpal)1(one)-373(o)-28(czy)-373(n)1(a)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)28(y)84(,)-316(p)1(rze)-1(m)28(y\\261liw)28(a\\252)-316(w)27(a\\273ni)1(e)-316(i)-316(wzdyc)28(ha\\252)-316(\\273a\\252o\\261)-1(n)1(ie.)-316(T)83(ak)-315(\\271le)-316(s)-1(i\\246)-316(b)-27(o)28(wie)-1(m)-315(dzia\\252o)-316(w)]TJ 0 -13.55 Td[(Lip)-27(c)-1(ac)28(h,)-333(\\273e)-334(ju)1(\\273)-334(z)-1(go\\252a)-333(gorze)-1(j)-332(nie)-334(mog\\252o.)]TJ 27.879 -13.549 Td[(Za\\261)-344(n)1(ie)-344(t)1(o)-344(b)29(y\\252o)-343(na)-55(jgorsz)-1(e,)-343(\\273e)-344(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-342(g\\252o)-28(dem)-344(p)1(rzymie)-1(r)1(a\\252,)-343(\\273)-1(e)-343(c)27(hor)1(ob)28(y)-343(si\\246)]TJ -27.879 -13.549 Td[(kr)1(z)-1(ew)-1(i)1(\\252y)83(,)-414(\\273e)-414(s)-1(i)1(\\246)-415(k\\252\\363)-27(c)-1(il)1(i)-414(bar)1(z)-1(ej)-414(i)-413(z)-1(a)-413(\\252b)28(y)-414(b)1(rali,)-413(\\273)-1(e)-414(na)28(w)28(e)-1(t)-413(\\261)-1(mier\\242)-414(w)-1(y)1(biera\\252a)-414(sw)27(o)-55(je)]TJ 0 -13.549 Td[(g\\246\\261)-1(cie)-1(j)-310(ni)1(\\271)-1(li)-310(p)-28(o)-310(inn)1(e)-312(r)1(oki)-311({)-311(tak)1(usie)-1(\\253)1(k)28(o)-311(b)28(y\\252o)-311(i)-310(\\252oni,)-310(i)-311(dr)1(z)-1(ewie)-1(j)1(,)-311(d)1(o)-311(te)-1(go)-311(si\\246)-311(ju)1(\\273)-312(b)29(y\\252)]TJ 0 -13.549 Td[(nar)1(\\363)-28(d)-302(w)27(ezw)-1(y)1(c)-1(zai\\252)-303(r)1(oz)-1(u)1(m)-1(i)1(e)-1(j)1(\\241c)-303(dobr)1(z)-1(e,)-302(jak)28(o)-302(inacz)-1(ej)-302(b)28(y\\242)-303(n)1(ie)-303(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)-303(Z\\252e)-303(i)-302(o)-302(w)-1(i)1(e)-1(le)]TJ 0 -13.549 Td[(gorsz)-1(e)-304(b)29(y\\252o)-304(ca\\252kiem)-304(c)-1(o)-303(in)1(s)-1(ze)-1(go)-303({)-304(oto,)-303(\\273e)-304(z)-1(iemia)-304(sto)-56(j)1(a\\252a)-304(o)-28(d)1(\\252ogiem)-1(,)-303(b)-27(o)-304(n)1(ie)-304(m)-1(i)1(a\\252)-304(w)]TJ 0 -13.55 Td[(ni)1(e)-1(j)-333(k)1(to)-334(r)1(obi\\242...)]TJ 27.879 -13.549 Td[(Zwie)-1(sna)-470(j)1(u\\273)-471(sz\\252)-1(a)-470(ca\\252ym)-471(\\261wiatem)-471(wraz)-470(z)-471(t)28(ym)-470(ptact)28(w)27(em)-1(,)-470(ci\\241)-28(gn)1(\\241c)-1(y)1(m)-471(do)]TJ -27.879 -13.549 Td[(\\252o\\253skic)28(h)-378(gniazd,)-378(n)1(a)-378(w)-1(y)1(\\273)-1(n)1(ic)27(h)-378(miejsc)-1(ac)28(h)-378(p)-27(o)-28(dsyc)27(h)1(a\\252y)-378(role,)-378(w)27(o)-28(d)1(y)-378(opad)1(\\252y)-378(i)-378(z)-1(iemia)]TJ 0 -13.549 Td[(si\\246)-334(pr)1(a)28(w)-1(i)1(e)-334(prosi\\252a)-333(o)-334(p)1(\\252ugi,)-333(o)-333(na)28(w)28(oz)-1(y)-333(i)-333(o)-333(to)-334(ziar)1(no)-333(\\261)-1(wi\\246te)-1(.)1(..)]TJ 27.879 -13.549 Td[(A)-377(kt\\363\\273)-378(mia\\252)-378(i\\261\\242)-378(w)-378(p)-27(ole,)-377(kiej)-377(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-378(rob)-27(otne)-378(r)1(\\246)-1(ce)-378(b)28(y\\252y)-377(w)-378(k)1(re)-1(min)1(ale!...)]TJ -27.879 -13.55 Td[(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-277(pr)1(a)28(w)-1(i)1(e)-278(sam)-1(e)-277(k)28(obi)1(e)-1(t)28(y)-277(osta\\252y)-277(w)28(e)-278(wsi,)-277(a)-277(n)1(ie)-277(ic)27(h)-276(to)-277(mo)-28(c)-278(n)1(i)-277(g\\252o)28(w)27(a)-276(p)-28(or)1(e)-1(d)1(z)-1(i\\242)]TJ 0 -13.549 Td[(ws)-1(zystkiem)27(u)1(.)]TJ 27.879 -13.549 Td[(A)-307(tu)-306(na)-307(ni)1(e)-1(j)1(e)-1(d)1(n\\241)-307(p)1(rz)-1(y)1(c)27(ho)-27(dzi\\252a)-307(p)-28(or)1(a)-307(ro)-28(d)1(\\363)28(w)-1(,)-306(jak)-307(to)-307(n)1(a)-307(z)-1(wies)-1(n)1(\\246)-308(zwycz)-1(a)-55(jni)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-382(tu)-381(kr)1(o)27(wy)-381(s)-1(i)1(\\246)-383(cieli\\252y)84(,)-382(d)1(r\\363b)-381(s)-1(i)1(\\246)-383(l)1(\\241)-28(g\\252,)-382(mac)-1(i)1(ory)-381(s)-1(i\\246)-382(p)1(ros)-1(i)1(\\252y)83(,)-381(w)-382(ogr\\363)-28(d)1(k)56(ac)27(h)-381(te)-1(\\273)-382(cz)-1(as)]TJ 0 -13.549 Td[(b)28(y\\252)-309(z)-1(asiew)27(a\\242)-310(i)-309(wysadki)-309(sadzi\\242,)-310(ziem)-1(n)1(iaki)-309(trza)-309(b)28(y\\252o)-309(prze)-1(b)1(iera\\242)-310(z)-310(d)1(o\\252\\363)27(w)-309(przed)-309(s)-1(a-)]TJ 0 -13.55 Td[(dzeniem)-1(,)-325(w)28(o)-28(d\\246)-326(z)-326(p)-27(\\363l)-325(s)-1(p)1(usz)-1(cz)-1(a\\242,)-326(gn)1(\\363)-56(j)-325(wyb)1(ie)-1(r)1(a\\242)-326(i)-326(wyw)28(oz)-1(i)1(\\242)-326({)-326(to)-325(c)27(ho)-27(\\242)-326(ur\\363b)-325(ku)1(lasy)]TJ 0 -13.549 Td[(p)-27(o)-390(\\252ok)28(cie)-1(,)-389(a)-389(b)-28(ez)-390(c)27(h)1(\\252)-1(op)1(a)-390(n)1(ie)-390(wyd)1(olis)-1(z...)-389(A)-389(tu)-389(jes)-1(zc)-1(ze)-390(trza)-389(obrz\\241dza\\242)-390(in)28(w)28(e)-1(n)29(tarz,)]TJ 0 -13.549 Td[(rzn\\241\\242)-296(siec)-1(zk)28(\\246)-1(,)-295(p)-27(oi\\242,)-296(d)1(rw)28(a)-296(r)1(\\241ba\\242)-296(leb)-27(o)-296(i)-295(z)-296(lasu)-295(wie)-1(\\271\\242)-1(,)-295(a)-295(t)28(ylac)27(h)1(na)-295(in)1(s)-1(ze)-1(j)1(,)-296(co)-28(d)1(z)-1(ienn)1(e)-1(j)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)83(,)-381(c)27(ho)-27(\\242)-1(b)28(y)-381(na)-382(ten)-382(p)1(rzyk\\252ad)-382(z)-382(dziec)-1(isk)56(am)-1(i)1(,)-382(kt\\363ry)1(c)27(h)-381(b)28(y\\252o)-382(ws)-1(z\\246)-1(d)1(z)-1(ie)-382(kiej)-382(ma-)]TJ 0 -13.549 Td[(ku)1(,)-380(\\273)-1(e)-381(J)1(e)-1(zus!)-380(gnat\\363)28(w)-381(j)1(u\\273)-380(nie)-380(c)-1(zu\\252y)84(,)-381(k)1(rzy\\273)-1(e)-380(im)-381(an)1(o)-381(d)1(r\\246t)28(w)-1(i)1(a\\252)-1(y)-380(n)1(a)-380(o)-28(dwiec)-1(ze)-1(r)1(z)-1(y)-380(z)]TJ 0 -13.55 Td[(ut)1(rud)1(z)-1(eni)1(a)-1(,)-394(a)-396(i)-395(p)-27(o\\252o)28(wy)-395(nie)-395(b)28(y\\252o)-395(z)-1(r)1(obion)1(e)-396({)-395(b)-27(o)-396(k)56(a)-55(j)-395(to)-395(jes)-1(zc)-1(ze)-396(t)1(e)-396(z)-1(e)-395(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(na)-55(jp)1(ierws)-1(ze)-334({)-333(p)-28(oln)1(e)-334(rob)-27(ot)28(y?...)]TJ 27.879 -13.549 Td[(A)-370(ziem)-1(i)1(a)-370(c)-1(zek)55(a\\252a;)-369(wygrze)-1(w)28(a\\252o)-370(j\\241)-369(m)-1(\\252o)-27(de)-370(s)-1(\\252o\\253)1(c)-1(e,)-370(suszy\\252y)-370(wiatr)1(y)83(,)-369(pr)1(z)-1(ejmo-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(y)-334(n)1(a)-335(ws)-1(k)1(ro\\261)-335(te)-335(cie)-1(p)1(\\252e)-335(i)-335(p)1(\\252o)-28(dn)1(e)-335(des)-1(zc)-1(ze,)-335(st\\246)-1(\\273a\\252y)-334(o)27(w)28(e)-335(mgliste)-335(i)-335(n)1(agrzane)-335(n)1(o)-28(c)-1(e)]TJ 0 -13.549 Td[(zw)-1(i)1(e)-1(sno)28(w)27(e)-376({)-376(\\273e)-377(tr)1(a)28(w)-1(y)-375(ju\\273)-376(p)1(usz)-1(cz)-1(a\\252y)-376(zielon\\241)-376(szc)-1(zotk)55(\\241,)-375(oz)-1(i)1(m)-1(in)29(y)-376(p)-27(o)-28(dn)1(os)-1(i\\252y)-375(s)-1(i\\246)-376(w)]TJ 0 -13.55 Td[(c)27(h)29(y\\273)-1(y)1(m)-399(ro\\261c)-1(ie,)-398(s)-1(k)28(o)28(wron)1(ki)-398(pr)1(z)-1(edzw)27(an)1(ia\\252y)-398(nad)-398(zagonami,)-398(b)-27(o)-28(\\242)-1(k)1(i)-399(b)1(ro)-28(d)1(z)-1(i)1(\\252y)-399(p)-27(o)-398(\\252\\246)-1(-)]TJ 0 -13.549 Td[(gac)27(h)1(,)-415(kwiat)28(y)-415(te)-1(\\273)-415(k)55(a)-55(j\\261)-416(n)1(iek)55(a)-55(j)-415(bu)1(c)27(h)1(a\\252y)-416(z)-415(m)-1(o)-27(c)-1(zar\\363)28(w)-416(ku)-414(niebu)-415(p)-27(o\\252yskliw)28(e)-1(m)28(u,)-415(ku)]TJ 0 -13.549 Td[(ni)1(e)-1(b)1(u,)-302(co)-302(s)-1(i\\246)-302(c)-1(o)-302(d)1(nia,)-302(n)1(ib)28(y)-302(t)1(a)-303(p)1(\\252ac)27(h)28(ta)-302(j)1(as)-1(n)1(a)-302(i)-302(obtu)1(lna,)-302(p)-27(o)-28(d)1(nosi\\252a)-302(c)-1(or)1(az)-303(wy\\273e)-1(j)1(,)-302(\\273)-1(e)]TJ 358.232 -29.888 Td[(407)]TJ\nET\nendstream\nendobj\n1306 0 obj <<\n/Type /Page\n/Contents 1307 0 R\n/Resources 1305 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1305 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1310 0 obj <<\n/Length 10075     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(408)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ju)1(\\273)-375(coraz)-374(dalej)-374(si\\246ga\\252y)-374(t\\246)-1(skli)1(w)27(e)-374(o)-28(c)-1(zy)83(,)-373(a\\273)-375(p)-27(o)-374(o)27(w)28(e)-375(wr)1(\\246)-1(b)28(y)-374(wsi)-374(i)-374(b)-27(or\\363)28(w,)-374(niedo)-55(jr)1(z)-1(a-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-342(w)-343(zimo)28(w)-1(y)1(c)27(h)-342(mrok)56(ac)27(h)1(;)-342(c)-1(a\\252y)-342(\\261w)-1(i)1(at)-343(p)1(rze)-1(cyk)56(a\\252)-343(z)-342(m)-1(ar)1(t)27(w)28(ego)-343(\\261pi)1(ku)-342(i)-342(pr)1(\\246)-1(\\273y\\252)-342(s)-1(i\\246)]TJ 0 -13.549 Td[(a)-333(przystra)-55(ja\\252)-333(do)-333(z)-1(wies)-1(n)1(o)28(w)-1(y)1(c)27(h)-333(go)-28(d)1(\\363)27(w)-333(w)27(ese)-1(la)-333(i)-333(rad)1(o\\261)-1(ci...)]TJ 27.879 -13.549 Td[(Za\\261)-281(ws)-1(z\\246)-1(d)1(y)-280(p)-28(o)-280(s)-1(\\241siedzt)28(w)27(ac)27(h)1(,)-280(k)55(a)-55(j)-280(jeno)-280(okiem)-281(dosi\\246gn\\241\\242,)-281(r)1(obil)1(i)-281(t)1(ak)-281(p)1(iln)1(o,)-281(\\273e)]TJ -27.879 -13.549 Td[(ca\\252)-1(e)-354(d)1(ni,)-353(d)1(e)-1(sz)-1(cz)-354(b)28(y\\252)-354(cz)-1(y)-353(p)-27(ogo)-28(da,)-353(rozlega\\252)-1(y)-353(si\\246)-354(w)27(es)-1(o\\252e)-354(p)1(rzy\\261)-1(p)1(iew)-1(y)-353(i)-353(kuk)56(ani)1(a,)-354(p)-27(o)]TJ 0 -13.55 Td[(p)-27(olac)27(h)-313(b\\252ysk)55(a\\252y)-313(p\\252ugi)1(,)-314(ruc)28(hali)-313(s)-1(i\\246)-314(lu)1(dzie)-1(,)-313(k)28(onie)-314(r\\273a\\252)-1(y)-313(i)-314(w)27(ozy)-314(tu)1(rk)28(ota\\252y)-314(w)28(e)-1(so\\252o,)-314(a)]TJ 0 -13.549 Td[(jeno)-267(lip)-27(e)-1(c)28(kie)-268(role)-268(sta\\252y)-268(p)1(uste)-1(,)-267(c)-1(i)1(c)27(he,)-268(zgo\\252a)-268(ob)1(umar\\252e)-268(i)-268(j)1(ak)28(o)-268(ten)-268(sm)-1(\\246tarz)-268(\\273a\\252os)-1(n)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(A)-333(kieb)28(y)-333(na)-333(dob)1(itk)28(\\246)-334(j)1(e)-1(sz)-1(cz)-1(ec)27(h)-333(t)1(e)-334(c)-1(i)1(\\246)-1(\\273kie)-334(strap)1(ienia)-333(o)-333(u)28(w)-1(i)1(\\246)-1(zion)28(yc)28(h..)1(.)]TJ 0 -13.549 Td[(Ma\\252o)-334(j)1(e)-1(\\261li)-334(co)-335(d)1(ni)1(a)-335(n)1(ie)-334(c)-1(i\\241)-28(gn)1(\\246)-1(\\252o)-334(d)1(o)-334(m)-1(iasta)-334(p)-27(o)-334(kilk)28(or)1(o)-335(l)1(ud)1(z)-1(i)-334(z)-334(w)27(\\246z)-1(e\\252k)55(ami,)-334(a)]TJ -27.879 -13.549 Td[(i)-333(z)-334(t)28(ym)-333(p\\252on)28(ym)-333(s)-1(k)56(am\\252)-1(an)1(iem)-1(,)-333(b)28(y)1(c)27(h)-333(wyp)1(u\\261c)-1(il)1(i)-334(n)1(iew)-1(i)1(no)28(w)27(at)28(yc)28(h.)]TJ 27.879 -13.549 Td[(Hale!)-319(b)-27(\\246dz)-1(i)1(e)-319(ta)-319(kto)-318(m)-1(ia\\252)-318(m)-1(i\\252osierdzie)-319(nad)-318(p)-27(okrzywdzon)28(ym)-319(n)1(aro)-28(d)1(e)-1(m,)-319(j)1(e)-1(\\261li)]TJ -27.879 -13.55 Td[(on)-333(sam)-334(sobie)-334(spr)1(a)28(w)-1(iedl)1(iw)27(o\\261ci)-334(n)1(ie)-334(wyd)1(rze)-1(!.)1(..)]TJ 27.879 -13.549 Td[(\\231le)-448(s)-1(i)1(\\246)-449(d)1(z)-1(i)1(a\\252o,)-448(tak)-448(\\271le,)-448(\\273e)-448(na)28(w)27(et)-448(ob)-27(c)-1(e)-448(lu)1(dzie,)-448(z)-448(dr)1(ugic)28(h)-448(wsi,)-448(zac)-1(z\\246)-1(l)1(i)-448(ju)1(\\273)]TJ -27.879 -13.549 Td[(miark)28(o)28(w)28(a\\242)-1(,)-331(j)1(ak)28(o)-332(k)1(rzywda)-331(Lip)1(ie)-1(c)-331(jes)-1(t)-331(kr)1(z)-1(y)1(w)-1(d)1(\\241)-331(w)-1(szys)-1(tk)1(ie)-1(go)-331(n)1(aro)-28(d)1(u)-331(c)27(h)1(\\252opskiego.)]TJ 0 -13.549 Td[(Jak\\273e)-1(,)-424(jeno)-425(ma\\252pa)-425(ma\\252pi)1(e)-426(za)-56(j)1(dy)-425(sz)-1(ar)1(pie,)-425(a)-425(cz\\252)-1(o)28(wiek)-425(za)-425(c)-1(z\\252o)27(wiekiem)-425(p)-28(o)28(win)1(ie)-1(n)]TJ 0 -13.549 Td[(trzyma\\242)-1(,)-333(b)29(yc)27(h)-333(i)-333(jem)27(u)-332(na)-333(taki)-333(s)-1(am)-333(k)28(oniec)-334(n)1(ie)-334(p)1(rz)-1(y)1({)-334(sz)-1(\\252o.)]TJ 27.879 -13.55 Td[(Wi\\246c)-272(i)-271(nie)-272(d)1(z)-1(i)1(w)27(ota,)-271(jak)28(o)-271(dr)1(ugie)-272(wsie,)-272(c)28(ho)-28(\\242)-272(ta)-271(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-271(k)28(ot)28(y)-271(dar\\252y)-271(z)-272(Lip)-27(cam)-1(i)]TJ -27.879 -13.549 Td[(o)-437(gr)1(anice)-437(i)-437(r)1(\\363\\273)-1(n)1(e)-438(szk)28(o)-28(dy)-436(s)-1(\\241siedzkie)-437(alb)-27(o)-437(i)-436(z)-437(c)-1(zys)-1(t)1(e)-1(j)-436(z)-1(azdr)1(o\\261)-1(ci,)-436(\\273)-1(e)-437(to)-437(Li)1(p)-28(cz)-1(ak)1(i)]TJ 0 -13.549 Td[(wynosi\\252y)-364(si\\246)-365(har)1(do)-364(nad)-364(wsz)-1(y)1(s)-1(tki)1(e)-1(,)-364(a)-364(wie)-1(\\261)-364(s)-1(w)28(o)-56(j)1(\\241)-365(u)29(w)27(a\\273a\\252y)-365(za)-364(na)-55(jpi)1(e)-1(r)1(w)-1(sz)-1(\\241,)-364(teraz)]TJ 0 -13.549 Td[(p)-27(oniec)27(h)1(ali)-238(s)-1(p)-27(or\\363)28(w)-238(otrz\\241c)27(ha)-55(j\\241c)-239(z)-238(s)-1(i)1(e)-1(bi)1(e)-239(za)27(wzi\\246)-1(t)1(o)-1(\\261\\242,)-238(b)-28(o)-238(c)-1(z\\246s)-1(to)-238(c)27(h)1(\\252op)-238(jaki)1(\\261)-239(z)-239(Rud)1(e)-1(k)1(,)]TJ 0 -13.549 Td[(to)-365(z)-365(W)84(\\363lki,)-364(to)-365(z)-365(D\\246)-1(b)1(icy)83(,)-364(a)-365(na)28(w)27(et)-365(i)-364(z)-366(r)1(z)-1(ep)-27(e)-1(c)27(k)1(ie)-1(j)-364(sz)-1(lac)28(h)28(t)28(y)-365(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-364(pr)1(z)-1(ebi)1(e)-1(ra\\252)-364(s)-1(i\\246)]TJ 0 -13.55 Td[(do)-333(Lip)1(iec)-334(na)-333(kry)1(jome)-334(pr)1(z)-1(ewiady)84(.)]TJ 27.879 -13.549 Td[(Za\\261)-474(w)-473(ni)1(e)-1(d)1(z)-1(iel\\246)-473(p)-28(o)-473(sumie)-474(al)1(b)-28(o)-473(j)1(ak)-473(w)27(cz)-1(or)1(a)-56(j)-473(p)1(rzy)-473(z)-1(j)1(e)-1(\\271dzie)-474(d)1(o)-473(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)]TJ -27.879 -13.549 Td[(rozp)28(yt)28(yw)28(ali)-352(si\\246)-353(pi)1(lnie)-352(o)-353(u)28(wi\\246zion)28(yc)28(h)-352(s)-1(ro\\273\\241c)-353(p)1(rz)-1(y)-352(t)28(ym)-352(t)28(w)27(arze)-1(,)-352(siarczy\\261)-1(cie)-353(kl)1(n\\241c,)]TJ 0 -13.549 Td[(a)-306(z)-1(ar\\363)28(wno)-306(z)-307(li)1(p)-28(ec)27(ki)1(m)-1(i)-306(p)1(i\\246)-1(\\261c)-1(i)1(e)-307(z)-1(acisk)55(a)-55(j\\241c)-307(n)1(a)-306(krzywdzic)-1(i)1(e)-1(li)-306(i)-306(wielc)-1(e)-307(si\\246)-307(l)1(ituj)1(\\241c)-307(nad)]TJ 0 -13.549 Td[(dol)1(\\241)-334(p)-27(okr)1(z)-1(ywd)1(z)-1(onego)-333(naro)-27(du)1(.)]TJ 27.879 -13.55 Td[(W\\252a\\261nie)-330(b)29(y\\252)-330(teraz)-330(n)1(ad)-329(t)27(y)1(m)-330(Ro)-28(c)27(h)1(o)-330(me)-1(d)1(yto)28(w)27(a\\252)-329(p)-28(ostan)1(a)27(wia)-55(j\\241c)-330(zaraze)-1(m)-330(j)1(a-)]TJ -27.879 -13.549 Td[(kie\\261)-401(p)1(rze)-1(d)1(s)-1(i\\246wz)-1(i)1(\\246)-1(cie)-401(w)28(a\\273)-1(n)1(e)-1(,)-400(gd)1(y\\273)-401(j)1(e)-1(sz)-1(cze)-401(bar)1(z)-1(ej)-400(zw)27(oln)1(i\\252)-400(kroku)1(,)-400(c)-1(z\\246s)-1(to)-400(pr)1(z)-1(y)1(s)-1(ta-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(,)-369(c)27(hr)1(oni\\241c)-370(s)-1(i)1(\\246)-371(o)-28(d)-369(wiatru)-369(z)-1(a)-370(gr)1(ubsze)-371(d)1(rz)-1(ew)28(a)-370(i)-370(jakb)29(y)-370(ni)1(c)-371(dok)28(o\\252a)-370(n)1(ie)-370(w)-1(i)1(dz\\241c)-1(y)84(,)]TJ 0 -13.549 Td[(w)28(e)-334(\\261)-1(wiat)-333(p)-27(ogl\\241da\\252)-333(dal)1(e)-1(ki)1(...)]TJ 27.879 -13.549 Td[(A)-283(widn)1(ie)-1(j)-282(s)-1(i\\246)-283(jak)28(o\\261)-284(zrob)1(i\\252o)-283(i)-283(c)-1(iepl)1(e)-1(j)1(,)-283(jeno)-283(te)-1(n)-282(upr)1(z)-1(y)1(krzon)28(y)-283(wiater)-283(w)-1(zmaga\\252)]TJ -27.879 -13.55 Td[(si\\246)-341(z)-341(go)-28(dzin)28(y)-340(na)-341(go)-27(dzin\\246,)-341(\\273e)-341(jeden)-340(s)-1(zum)-341(n)1(i\\363s)-1(\\252)-340(s)-1(i\\246)-341(ca\\252ym)-341(\\261)-1(wiatem,)-341(i)-340(ju)1(\\273)-341(c)-1(o)-341(cie\\253-)]TJ 0 -13.549 Td[(sz)-1(e)-376(dr)1(z)-1(ew)-1(i)1(n)28(y)-376(p)-27(ok\\252ada\\252y)-376(si\\246)-376(z)-376(j\\246kiem)-1(,)-376(t)1(rz)-1(epi)1(\\241c)-377(ga\\252\\246z)-1(i)1(a)-1(mi)-376(p)-27(o)-376(sta)28(w)-1(i)1(e)-1(,)-376(snop)1(ki)-376(an)1(o)]TJ 0 -13.549 Td[(wyry)1(w)27(a\\252)-335(z)-336(dac)28(h\\363)28(w)-336(i)-335(co)-335(kru)1(c)27(hsz)-1(e)-335(ga\\252\\246)-1(zie)-336(o)-28(d)1(z)-1(i)1(e)-1(ra\\252,)-335(a)-335(wia\\252)-336(j)1(u\\273)-335(te)-1(r)1(az)-336(g\\363r\\241)-335(i)-335(z)-336(tak)56(\\241)]TJ 0 -13.549 Td[(mo)-28(c)-1(\\241,)-299(\\273)-1(e)-300(wsz)-1(y\\242k)28(o)-300(si\\246)-300(ru)1(c)27(ha\\252o:)-299(i)-300(sady)84(,)-300(i)-299(p\\252ot)28(y)83(,)-299(i)-300(c)28(ha\\252u)1(p)28(y)83(,)-299(i)-300(p)-27(o)-56(j)1(e)-1(d)1(y\\253cze)-301(d)1(rze)-1(w)28(a,)-300(a\\273)]TJ 0 -13.549 Td[(si\\246)-330(z)-1(d)1(a\\252o,)-330(j)1(ak)28(o)-330(z)-330(ni)1(m)-330(w)-330(jedn)1(\\241)-330(stron\\246)-330(l)1(e)-1(c\\241,)-330(a)-329(na)28(w)27(et)-330(t)1(o)-330(bl)1(ade)-330(s)-1(\\252o\\253)1(c)-1(e,)-330(co)-330(si\\246)-330(sp)-28(oza)]TJ 0 -13.549 Td[(rozw)27(al)1(on)28(yc)27(h)-382(c)27(hm)28(ur)-383(wysup)1(\\252a\\252o,)-383(w)-1(y)1(da\\252o)-383(s)-1(i\\246)-383(r\\363)28(wnie\\273)-384(u)1(c)-1(iek)56(a)-56(j)1(\\241c)-1(ym)-383(p)-28(o)-383(n)1(ie)-1(b)1(ie,)-383(z)-1(a-)]TJ 0 -13.55 Td[(wlek)55(an)29(ym)-392(kieb)28(y)-392(p)1(ias)-1(k)56(ami)-392(rozwian)28(ymi,)-391(z)-1(a\\261)-392(nad)-391(k)28(o\\261)-1(cio\\252em)-393(j)1(akie\\261)-392(s)-1(tad)1(o)-392(ptak)28(\\363)28(w)]TJ 0 -13.549 Td[(z)-429(rozc)-1(zapierzon)28(ymi)-428(s)-1(kr)1(z)-1(yd)1(\\252am)-1(i)-428(ni)1(e)-430(mog\\241c)-429(s)-1(i)1(\\246)-429(up)-27(ora\\242)-429(z)-429(p)-28(\\246dem,)-429(d)1(a\\252)-1(y)-428(s)-1(i)1(\\246)-429(nie\\261)-1(\\242)]TJ 0 -13.549 Td[(wic)27(h)29(urze)-334(i)-333(ze)-334(s)-1(tr)1(ac)27(hl)1(iwym)-334(kr)1(z)-1(y)1(kiem)-334(rozbij)1(a\\252y)-333(s)-1(i\\246)-333(o)-334(wie\\273)-1(\\246)-333(i)-334(r)1(oz)-1(c)28(h)28(wiane)-333(drze)-1(w)28(a.)]TJ 27.879 -13.549 Td[(Ale)-307(w)-1(i)1(ate)-1(r)1(,)-307(c)27(ho)-27(\\242)-308(b)28(y\\252)-307(pr)1(z)-1(yk)1(ry)-307(i)-307(ni)1(e)-1(co)-308(szk)28(o)-28(dli)1(w)-1(y)84(,)-307(sie)-1(l)1(nie)-307(te)-1(\\273)-307(prze)-1(susz)-1(a\\252)-307(rol)1(e)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(j)1(u\\273)-334(o)-27(d)-333(ran)1(a)-334(galan)29(to)-334(zbi)1(e)-1(la\\252y)-333(zagon)28(y)83(,)-333(a)-333(dr)1(ogi)-333(o)-28(c)-1(i)1(e)-1(k)56(a\\252y)-333(z)-334(w)27(o)-27(dy)84(...)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)1(o)-312(d\\252u)1(go)-313(sto)-56(j)1(a\\252)-312(w)-313(medytacji)-312(on)1(e)-1(j)1(,)-312(o)-312(B)-1(o\\273ym)-312(\\261)-1(wiec)-1(i)1(e)-313(zap)-28(omni)1(a)27(wsz)-1(y)84(,)-312(a\\273)]TJ -27.879 -13.549 Td[(p)-27(oruszy\\252)-334(si\\246)-334(z)-333(nag\\252a,)-333(dosz)-1(\\252y)-333(go)-333(b)-28(o)28(wiem)-334(z)-334(wic)28(h)28(ur\\241)-333(j)1(akie\\261)-334(s)-1(w)28(arli)1(w)27(e)-334(g\\252osy)83(.)]TJ\nET\nendstream\nendobj\n1309 0 obj <<\n/Type /Page\n/Contents 1310 0 R\n/Resources 1308 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1295 0 R\n>> endobj\n1308 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1313 0 obj <<\n/Length 8742      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(409)]TJ -330.353 -35.866 Td[(Roz)-1(ejr)1(z)-1(a\\252)-378(s)-1(i\\246)-379(b)29(ys)-1(tr)1(o:)-379(p)-27(o)-379(d)1(ru)1(gie)-1(j)-378(stron)1(ie)-379(s)-1(t)1(a)27(wu)1(,)-379(p)1(rz)-1(ed)-378(s)-1(o\\252t)28(yso)28(w)27(\\241)-378(c)27(ha\\252u)1(p\\241,)]TJ -27.879 -13.549 Td[(w)-334(op)1(\\252otk)56(ac)27(h,)-333(cz)-1(erwieni\\252a)-333(si\\246)-334(ku)1(pa)-333(k)28(obiet)-333(z)-334(jak)1(im)-1(i)1(\\261)-334(lu)1(d\\271m)-1(i)-333(w)-333(p)-28(o\\261ro)-28(d)1(ku.)1(..)]TJ 27.879 -13.549 Td[(P)28(o\\261piesz)-1(y\\252)-333(tam)-334(z)-334(ciek)56(a)27(w)28(o\\261)-1(ci\\241,)-333(co)-334(b)29(y)-334(si\\246)-334(sta\\252o)-333(nie)-334(wiedz\\241c.)]TJ 0 -13.549 Td[(Ale)-347(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-347(z)-347(dal)1(a)-347(s)-1(tr)1(a\\273)-1(n)1(ik)28(\\363)28(w)-347(z)-348(w)28(\\363)-56(j)1(te)-1(m,)-347(skr\\246ci\\252)-347(w)-347(na)-55(jb)1(li\\273s)-1(ze)-348(op)1(\\252otki,)]TJ -27.879 -13.549 Td[(a)-312(stam)28(t\\241d)-311(j\\241\\252)-312(si\\246)-312(ostro\\273nie)-311(prze)-1(b)1(iera\\242)-312(sadami)-312(k)1(u)-311(gromadzie)-1(;)-311(ni)1(e)-312(lub)1(i\\252)-312(j)1(ak)28(o\\261)-312(le\\271)-1(\\242)]TJ 0 -13.55 Td[(w)-334(o)-27(c)-1(zy)-333(urz\\246)-1(d)1(om.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-327(za\\261)-328(b)28(y)1(\\252)-327(c)-1(oraz)-327(wrzas)-1(kl)1(iws)-1(zy)83(,)-326(k)28(obiet)-327(w)27(ci\\241\\273)-327(pr)1(z)-1(yb)29(yw)27(a\\252o,)-327(d)1(z)-1(i)1(e)-1(ci)-327(te\\273)-328(ca-)]TJ -27.879 -13.549 Td[(\\252\\241)-341(h)28(u)1(rm\\241)-341(z)-1(b)1(iega\\252y)-341(z)-1(e)-341(wsz)-1(ystkic)28(h)-341(stron)-340(c)-1(i)1(s)-1(n)1(\\241c)-342(si\\246)-341(do)-340(s)-1(tar)1(s)-1(zyc)27(h)1(,)-341(a)-341(p)-27(os)-1(ztu)1(rc)27(h)28(u)1(j\\241c)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-420(s)-1(ob)1(\\241,)-421(a\\273)-422(cias)-1(n)1(o)-421(s)-1(i)1(\\246)-422(u)1(c)-1(zyni\\252o)-421(w)-421(op\\252otk)56(ac)28(h,)-421(i)-421(wyw)28(alili)-420(s)-1(i\\246)-421(na)-421(d)1(rog\\246)-1(,)-420(nie)]TJ 0 -13.549 Td[(bacz\\241c)-439(na)-439(b)1(\\252oto)-439(n)1(i)-438(na)-439(r)1(oz)-1(k)28(ol)1(e)-1(b)1(ane)-439(dr)1(z)-1(ew)27(a,)-438(sie)-1(k)56(\\241ce)-439(ga\\252\\246)-1(ziami.)-438(Jaz)-1(gotal)1(i)-439(cos)-1(i)1(k)]TJ 0 -13.549 Td[(sp)-28(\\363ln)1(ie,)-286(to)-287(j)1(akie\\261)-287(osobn)1(e)-287(g\\252os)-1(y)-286(si\\246)-287(wyd)1(z)-1(i)1(e)-1(ra\\252y)84(,)-286(ale)-287(co)-286(b)28(y)83(,)-286(n)1(ie)-287(m\\363g\\252)-286(w)-1(y)1(m)-1(iar)1(k)28(o)28(w)27(a\\242,)]TJ 0 -13.55 Td[(b)-27(o)-353(wiater)-353(p)-27(oryw)28(a\\252)-353(s\\252o)27(w)28(a.)-353(D)1(o)-56(jr)1(z)-1(a\\252)-352(jeno)-353(p)1(rze)-1(z)-353(dr)1(z)-1(ew)27(a,)-352(\\273e)-354(P)1(\\252os)-1(zk)28(o)28(w)27(a)-353(r)1(e)-1(j)-352(wio)-28(d)1(\\252a:)]TJ 0 -13.549 Td[(gru)1(ba,)-468(spa\\261na,)-468(z)-469(rozc)-1(ze)-1(r)1(wie)-1(n)1(ion\\241)-468(g\\246b\\241,)-468(wykrzyki)1(w)27(a\\252a)-468(c)-1(osik)-468(na)-55(jg\\252o\\261)-1(n)1(iej)-468(i)-468(tak)]TJ 0 -13.549 Td[(za)-56(jad)1(le)-327(p)-27(o)-28(d)1(je\\273)-1(d)1(\\273)-1(a\\252a)-326(pi\\246\\261c)-1(iami)-326(p)-27(o)-28(d)-326(w)27(\\363)-55(jto)28(wy)-326(nos,)-326(\\273)-1(e)-326(s)-1(i\\246)-326(te)-1(n)-326(cofa\\252,)-326(a)-326(res)-1(zta)-326(przy-)]TJ 0 -13.549 Td[(t)28(wie)-1(r)1(dza\\252a)-286(jej)-286(wrzas)-1(ki)1(e)-1(m,)-286(ki)1(e)-1(j)-285(to)-286(s)-1(tad)1(o)-286(ind)1(or\\363)28(w)-286(rozw)-1(\\261c)-1(i)1(e)-1(cz)-1(on)29(yc)27(h)1(.)-286(Kobu)1(s)-1(o)28(w)28(a)-286(z)-1(a\\261)]TJ 0 -13.549 Td[(u)28(wij)1(a\\252a)-372(si\\246)-371(p)-28(o)-371(b)-27(ok)56(ac)27(h,)-371(p)1(r\\363\\273no)-371(c)27(h)1(c)-1(\\241c)-371(s)-1(i)1(\\246)-372(pr)1(z)-1(edr)1(z)-1(e\\242)-372(d)1(o)-372(stra\\273ni)1(k)28(\\363)27(w,)-371(n)1(ad)-371(kt\\363r)1(ymi)]TJ 0 -13.55 Td[(co)-403(c)27(h)28(wila)-403(t)1(rz)-1(\\246s\\252)-1(y)-402(s)-1(i\\246)-403(zac)-1(i\\261ni)1(\\246)-1(te)-403(pi)1(\\246)-1(\\261c)-1(ie,)-403(a)-403(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(i)1(e)-404(j)1(u\\273)-403(i)-403(kij)-402(alb)-27(o)-403(ut)28(yt\\252an)1(a)]TJ 0 -13.549 Td[(mie)-1(t)1(lica...)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-326(cos)-1(ik)-326(t\\252u)1(m)-1(acz)-1(y)1(\\252)-327(d)1(rapi\\241c)-326(s)-1(i\\246)-326(frasobli)1(w)-1(i)1(e)-327(p)-28(o)-326(g\\252o)28(w)-1(i)1(e)-1(,)-326(a)-326(p)-28(o)28(ws)-1(tr)1(z)-1(y)1(m)27(uj)1(\\241c)]TJ -27.879 -13.549 Td[(na)-478(sobi)1(e)-479(b)1(abski)-478(n)1(ap)-28(\\363r)1(,)-478(\\273e)-479(stra\\273nicy)-478(wysun)1(\\246)-1(li)-477(s)-1(i\\246)-478(ostro\\273nie)-478(z)-478(kup)28(y)-477(nad)-477(s)-1(ta)28(w)]TJ 0 -13.549 Td[(i)-435(p)-27(os)-1(zli)-435(ku)-434(m)-1(\\252y)1(no)28(w)-1(i)1(;)-435(w)27(\\363)-55(jt)-435(r)1(usz)-1(y\\252)-435(za)-435(nimi)-435(o)-28(d)1(s)-1(zc)-1(ze)-1(k)1(uj)1(\\241c)-436(si\\246)-436(n)1(ie)-1(k)1(ie)-1(d)1(y)83(,)-434(a)-436(gr)1(o\\273)-1(\\241c)]TJ 0 -13.55 Td[(c)27(h)1(\\252opak)28(om,)-333(b)-28(o)-333(z)-1(acz\\246)-1(li)-333(f)1(ryga\\242)-334(za)-333(nim)-333(b\\252otem)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego)-334(c)28(hcie)-1(l)1(i?)-334({)-333(p)28(yta\\252)-333(Ro)-28(c)27(h)1(o)-334(w)28(c)27(h)1(o)-28(dz\\241c)-334(mi\\246dzy)-334(k)28(ob)1(iet)28(y)83(.)]TJ 0 -13.549 Td[({)-300(Cze)-1(go!)-299(ab)28(y)-300(wie\\261)-300(da\\252a)-300(d)1(w)27(ad)1(z)-1(i)1(e)-1(\\261c)-1(ia)-299(w)27(oz\\363)28(w)-300(i)-300(lu)1(dzi)-300(d)1(o)-300(sz)-1(ar)1(w)27(ark)1(u,)-299(b)28(y)-300(w)-300(ten)]TJ -27.879 -13.549 Td[(mig)-333(jec)27(hal)1(i)-334(n)1(apr)1(a)27(wia\\242)-333(drog\\246)-333(w)-334(les)-1(i)1(e)-1(..)1(.)-334({)-333(ob)-55(ja\\261ni)1(a\\252)-1(a)-333(go)-333(P\\252osz)-1(k)28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-250(Jaki)1(\\261)-251(wi\\246ksz)-1(y)-250(u)1(rz\\241d)-250(ma)-250(pr)1(z)-1(eje\\273)-1(d)1(\\273)-1(a\\242)-250(tam)28(t\\246)-1(d)1(y)-250(i)-250(b)-27(ez)-251(to)-250(p)1(rzyk)56(az)-1(u)1(j\\241)-250(za)28(w)27(ozi\\242)]TJ -27.879 -13.55 Td[(wyrwy)84(...)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ielim,)-333(\\273)-1(e)-333(w)27(oz\\363)28(w)-334(ni)-333(k)28(on)1(i)-333(nie)-333(dam)27(y)84(.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(p)-27(o)-56(j)1(e)-1(dzie?)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(pi)1(e)-1(rw)28(ej)-333(puszc)-1(z\\241)-334(n)1(as)-1(zyc)27(h)-332(c)27(h\\252op)-27(\\363)28(w)-1(,)-333(to)-333(im)-333(drog\\246)-333(narz\\241dz\\241.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ica)-333(b)28(y)-333(z)-1(ap)1(rz)-1(\\246g\\252y!)]TJ 0 -13.55 Td[({)-333(Same)-334(b)28(y)-333(si\\246)-334(wz)-1(i)1(\\246)-1(\\252y)-333(do)-333(rob)-27(ot)28(y)83(,)-333(a)-333(ni)1(e)-334(p)-27(e)-1(n)1(e)-1(tr)1(o)27(w)28(a\\252y)-333(p)-28(o)-333(c)27(h)1(a\\252upac)28(h!)]TJ 0 -13.549 Td[({)-333(\\221cie)-1(r)1(wy)83(,)-333(uk)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(c)-1(iele!)-333({)-334(w)28(o\\252a\\252a)-334(j)1(e)-1(d)1(na)-333(pr)1(z)-1(ez)-334(dr)1(ug\\241,)-333(a)-333(c)-1(or)1(az)-334(g\\252o\\261)-1(n)1(ie)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(o)-334(d)1(o)-56(j)1(rza\\252a)-1(m)-333(s)-1(tr)1(a\\273)-1(n)1(ik)28(\\363)28(w,)-334(zaraz)-333(m)-1(n)1(ie)-334(cos)-1(ik)-333(n)1(ie)-1(d)1(obr)1(e)-1(go)-333(tkn)1(\\246)-1(\\252o..)1(.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iek)-333(z)-334(w)28(\\363)-56(jtem)-334(j)1(u\\273)-334(o)-27(d)-333(ran)1(a)-334(n)1(aradza\\252y)-333(s)-1(i)1(\\246)-334(w)-334(k)56(arcz)-1(mie.)]TJ 0 -13.549 Td[({)-349(Nac)28(hla\\252y)-348(si\\246)-349(gorza\\252ki)-349(i)-348(d)1(ale)-1(j)1(\\273)-1(e)-349(c)28(ho)-28(d)1(z)-1(i)1(\\242)-349(p)-28(o)-348(c)27(h)1(a\\252)-1(u)1(pac)28(h,)-348(a)-349(lu)1(dzi)-348(p)-28(\\246dzi\\242)-349(do)]TJ -27.879 -13.549 Td[(rob)-27(ot)28(y)83(.)1(..)]TJ 27.879 -13.55 Td[({)-296(W)83(\\363)-55(jt)-296(d)1(obrze)-297(wie,)-296(p)-28(o)28(win)1(ie)-1(n)-295(b)28(y\\252)-296(w)-297(u)1(rz\\246)-1(d)1(z)-1(ie)-296(prze\\252)-1(o\\273y\\242,)-296(jak)-296(j)1(e)-1(st)-296(w)-297(Lip)-27(cac)27(h)]TJ -27.879 -13.549 Td[({)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(Ro)-28(c)28(ho,)-333(pr)1(\\363\\273)-1(n)1(o)-334(c)28(hc\\241c)-334(pr)1(z)-1(ekrzycz)-1(e\\242)-334(wz)-1(b)1(ur)1(z)-1(on)1(e)-334(g\\252os)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(d)1(obr)1(z)-1(e)-334(on)-333(z)-333(nimi)-333(trzyma!)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(ie)-1(r)1(ws)-1(zy)-333(na)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(nap)1(ro)28(w)28(adza.)]TJ 0 -13.549 Td[({)-333(A)-334(o)-333(to)-333(jeno)-333(s)-1(t)1(o)-1(i)1(,)-333(z)-334(c)-1(ze)-1(go)-333(ma)-334(p)1(ro\\014)1(t)-334({)-333(zakrzycz)-1(a\\252y)-333(z)-1(n)1(o)28(w)-1(u)1(.)]TJ 0 -13.55 Td[({)-354(Nama)28(w)-1(i)1(a\\252)-1(,)-353(ab)28(y)-354(d)1(a\\242)-354(tam)27(t)28(ym)-354(p)-27(o)-354(m)-1(end)1(lu)-353(ja)-55(jek)-354(z)-354(c)27(ha\\252u)1(p)28(y)-354(al)1(b)-28(o)-354(p)-27(o)-354(ku)1(rze)-1(,)]TJ -27.879 -13.549 Td[(tu)-333(p)-27(oni)1(e)-1(c)27(h)1(a)-56(j)1(\\241)-334(i)-333(d)1(rugi)1(e)-334(ws)-1(ie)-333(do)-333(s)-1(zarw)28(arku)-333(wygon)1(i\\241.)]TJ\nET\nendstream\nendobj\n1312 0 obj <<\n/Type /Page\n/Contents 1313 0 R\n/Resources 1311 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1311 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1317 0 obj <<\n/Length 8765      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(410)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(T)27(yc)28(h)-333(k)56(am)-1(i)1(e)-1(n)1(i)-334(b)29(ym)-334(d)1(a\\252a)-1(!)]TJ 0 -13.549 Td[({)-333(Kij)1(as)-1(zkiem)-334(pr)1(z)-1(y)1(\\252)-1(o\\273y\\252a!)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-27(c)-1(ie,)-333(k)28(obi)1(e)-1(t)28(y)84(,)-334(b)29(y)-333(w)27(as)-334(n)1(ie)-334(sk)55(ar)1(ali)-333(z)-1(a)-333(u)1(bli\\273enie)-334(u)1(rz\\246)-1(d)1(o)27(wi!)]TJ 0 -13.549 Td[({)-320(Niec)27(h)-319(k)56(arz)-1(\\241,)-319(ni)1(e)-1(c)27(h)-319(w)28(e)-1(zm)-1(\\241)-320(d)1(o)-320(k)28(ozy)83(,)-320(d)1(o)-320(o)-28(cz)-1(u)-319(s)-1(t)1(an\\246)-320(c)27(ho)-27(\\242)-1(b)28(y)-319(na)-55(jwi\\246ks)-1(zem)27(u)]TJ -27.879 -13.549 Td[(ur)1(z)-1(\\246do)28(wi)-333(i)-333(w)-1(y)1(p)-28(o)28(wiem)-334(ws)-1(zystk)28(o,)-333(w)-334(jak)1(im)-334(to)-333(uk)1(rzyw)-1(d)1(z)-1(eni)1(u)-333(\\273)-1(y)1(jem)27(y!.)1(..)]TJ 27.879 -13.55 Td[({)-316(W)84(\\363)-56(jta)-316(b)29(ym)-317(si\\246)-316(b)-28(o)-55(ja\\252a!.)1(..)-316(Figu)1(ra)-316(zap)-28(o)28(wietrzona!..)1(.)-316(T)27(y)1(le)-317(mi)-316(znacz)-1(y)84(,)-316(c)-1(o)-316(ta)]TJ -27.879 -13.549 Td[(ku)1(k\\252a)-413(do)-413(s)-1(t)1(rac)27(h)1(ania)-413(wr\\363b)1(li!.)1(..)-413(Nie)-414(p)1(am)-1(i)1(\\246)-1(ta)-413(o)-413(t)28(ym,)-413(\\273)-1(e)-413(c)27(h)1(\\252)-1(op)29(y)-413(go)-414(wyb)1(ra\\252y)84(,)-413(to)-413(i)]TJ 0 -13.549 Td[(one)-333(m)-1(og\\241)-333(z)-334(tego)-333(urz\\246)-1(d)1(u)-333(z)-1(esadzi\\242)-1(.)1(..)-333({)-334(wrzes)-1(zc)-1(za\\252a)-334(P)1(\\252os)-1(zk)28(o)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-414(K)1(ara\\242)-414(b)28(y)-413(jes)-1(zc)-1(ze)-414(mie)-1(l)1(i!..)1(.)-414(A)-413(nie)-414(p)1(\\252ac)-1(im)-414(t)1(o)-414(p)-27(o)-28(datk)28(\\363)28(w,)-413(nie)-414(d)1(a)-56(j)1(e)-1(m)-414(c)27(h)1(\\252o-)]TJ -27.879 -13.549 Td[(pak)28(\\363)28(w)-416(w)-415(rekru)1(t)27(y)84(,)-415(nie)-416(r)1(obim,)-415(c)-1(o)-415(ino)-415(k)56(a\\273)-1(\\241!.)1(.)-416(M)1(a\\252o)-416(im)-416(j)1(e)-1(sz)-1(cze)-1(,)-415(\\273)-1(e)-416(n)1(am)-416(c)27(h)1(\\252op)-28(\\363)28(w)]TJ 0 -13.549 Td[(p)-27(obral)1(i!..)1(.)]TJ 27.879 -13.55 Td[({)-333(A)-334(n)1(iec)27(h)-333(si\\246)-334(zja)28(wi\\241,)-333(w)-1(n)1(e)-1(t)-333(j)1(ak)55(a\\261)-333(bieda)-333(pad)1(a)-334(n)1(a)-333(k)28(ogo\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Psa)-334(mi)-333(ano)-333(w)28(e)-334(\\273)-1(n)1(iw)28(a)-334(w)-333(p)-28(olu)-332(ustrze)-1(li)1(li!..)1(.)]TJ 0 -13.549 Td[({)-333(Mni)1(e)-334(z)-1(a\\261)-333(do)-333(s)-1(\\241d)1(u)-333(p)-27(o)-28(dali)1(,)-334(\\273e)-334(si\\246)-334(sadze)-334(zapali\\252y)1(!...)]TJ 0 -13.549 Td[({)-333(A)-334(mni)1(e)-334(to)-333(nie,)-333(\\273)-1(em)-334(to)-333(\\252oni)-333(len)-333(susz)-1(y\\252a)-333(z)-1(a)-333(sto)-28(do\\252\\241?)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(ak)-333(to)-334(spr)1(a\\252y)-333(Gulb)1(as)-1(i)1(ak)55(a,)-333(\\273e)-334(k)56(am)-1(i)1(e)-1(n)1(ie)-1(m)-333(na)-333(ni)1(c)27(h)-333(pu)1(\\261)-1(ci\\252!.)1(..)]TJ 0 -13.55 Td[(Kr)1(z)-1(ycz)-1(a\\252y)-333(sp)-28(\\363l)1(nie,)-333(c)-1(i\\273bi)1(\\241c)-334(s)-1(i)1(\\246)-334(do)-333(Ro)-28(c)27(h)1(a,)-333(a\\273)-334(uszy)-334(zat)28(yk)56(a\\252)-334(o)-27(d)-333(w)-1(r)1(z)-1(asku)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(p)1(rzyc)-1(i)1(s)-1(zc)-1(ie)-333(s)-1(i\\246!)-333(Gad)1(aniem)-334(n)1(ic)-334(ni)1(e)-334(p)-28(or)1(e)-1(d)1(z)-1(i)1(!)-334(Cic)28(ho)-28(cie!...)-333({)-333(w)28(o\\252)-1(a\\252.)]TJ 0 -13.549 Td[({)-456(T)83(o)-455(id\\271c)-1(i)1(e)-456(do)-456(w)28(\\363)-56(j)1(ta)-456(i)-455(prze)-1(d)1(s)-1(t)1(a)27(w)28(c)-1(i)1(e)-1(,)-455(alb)-27(o)-456(ws)-1(zys)-1(t)1(kie)-456(tam)-456(p)-27(o)-28(c)-1(i)1(\\241)-28(gniem)-456(z)]TJ -27.879 -13.549 Td[(mie)-1(t)1(\\252)-1(ami!)1(...)-333({)-333(dar\\252a)-333(s)-1(i)1(\\246)-334(z)-1(a)28(wz)-1(i)1(\\246)-1(cie)-334(Kob)1(uso)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-342(P)29(\\363)-56(j)1(d\\246,)-342(in)1(o)-342(j)1(u\\273)-342(si\\246)-342(roze)-1(j)1(d\\271c)-1(ie!..)1(.)-342(P)1(rze)-1(cie)-1(\\273)-342(t)28(y)1(le)-342(rob)-27(ot)28(y)-342(ma)-342(k)56(a\\273da)-342(w)-341(c)27(ha\\252u)1(-)]TJ -27.879 -13.55 Td[(pi)1(e)-1(..)1(.)-290(j)1(u\\273)-290(j)1(a)-290(p)1(rz)-1(edsta)28(wi\\246)-290(dob)1(rze)-1(!.)1(..)-290({)-289(pr)1(os)-1(i\\252)-289(gor\\241co)-290(b)-27(o)-56(j)1(\\241c)-290(s)-1(i\\246)-290(p)-27(o)28(wrotu)-289(s)-1(t)1(ra\\273)-1(n)1(ik)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(\\233e)-300(za\\261)-300(w)-300(t\\246)-300(p)-27(or\\246)-300(pr)1(z)-1(edzw)27(on)1(ili)-299(p)-27(o\\252udn)1(ie)-300(n)1(a)-300(k)28(o\\261c)-1(iele,)-299(tu)-299(s)-1(i\\246)-300(zac)-1(z\\246\\252)-1(y)-299(z)-300(w)28(olna)]TJ -27.879 -13.549 Td[(rozc)27(h)1(o)-28(dzi\\242)-334(r)1(a)-56(j)1(c)-1(u)1(j\\241c)-334(g\\252o\\261no)-333(i)-333(przysta)-56(j)1(\\241c)-334(pr)1(z)-1(ed)-333(c)27(h)1(a\\252)-1(u)1(pami.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-323(za\\261)-323(p)1(r\\246dk)28(o)-322(w)-1(sz)-1(ed\\252)-322(do)-322(s)-1(o\\252t)28(yso)28(w)27(ego)-323(d)1(om)27(u)1(,)-322(gdzie)-323(b)28(y\\252)-322(teraz)-323(mie)-1(szk)55(a\\252,)]TJ -27.879 -13.549 Td[(nau)1(c)-1(za\\252)-246(b)-28(o)28(wiem)-247(d)1(z)-1(iec)-1(i)-246(w)-246(pu)1(s)-1(t)1(e)-1(j)-246(i)1(z)-1(bi)1(e)-247(Si)1(k)28(or\\363)28(w,)-246(na)-246(dr)1(ugim)-246(k)28(o\\253cu)-246(ws)-1(i,)-246(za)-246(k)56(arc)-1(zm\\241.)]TJ 0 -13.55 Td[(So\\252t)28(ysa)-333(nie)-333(b)28(y\\252o)-334(d)1(oma,)-334(p)-27(o)-28(d)1(atki)-333(p)-27(o)27(wi\\363z\\252)-333(do)-333(p)-28(o)28(wiatu)1(.)]TJ 27.879 -13.549 Td[(Op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(m)27(u)-332(z)-1(araz)-333(So)-28(c)28(ho)28(w)27(a)-333(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-333(p)-27(o)-333(p)-28(or)1(z)-1(\\241dk)1(u,)-333(jak)-333(to)-333(b)28(y)1(\\252)-1(o.)]TJ 0 -13.549 Td[({)-292(B)-1(yc)28(h)-292(jeno)-292(z)-293(t)28(yc)27(h)-292(wrzask)27(\\363)28(w)-292(nie)-293(wysz)-1(\\252o)-292(c)-1(o)-292(z\\252)-1(ego!..)1(.)-293({)-292(zau)28(w)27(a\\273y\\252a)-293(w)-292(k)28(o\\253cu.)]TJ 0 -13.549 Td[({)-407(W)84(\\363)-56(j)1(to)28(w)27(a)-406(w)-1(i)1(na.)-406(Str)1(a\\273)-1(ni)1(ki)-406(robi)1(\\241)-1(,)-406(co)-407(im)-407(p)1(rzyk)56(az)-1(ali)1(,)-407(on)-406(z)-1(a\\261)-407(wie,)-406(jak)28(o)-407(w)28(e)]TJ -27.879 -13.549 Td[(ws)-1(i)-389(osta\\252y)-389(s)-1(ame)-390(p)1(ra)28(wie)-390(k)28(ob)1(iet)27(y)84(,)-389(\\273e)-390(w)-389(p)-28(olu)-388(nie)-389(m)-1(a)-389(kto)-389(r)1(obi\\242,)-389(a)-389(nie)-389(dopi)1(e)-1(r)1(o)-390(n)1(a)]TJ 0 -13.55 Td[(sz)-1(arw)28(ark)1(i)-264(je\\271)-1(d)1(z)-1(i\\242.)-264(P)28(\\363)-55(jd)1(\\246)-265(d)1(o)-264(niego,)-264(ni)1(e)-1(c)28(h)-264(z)-1(a\\252ago)-27(dzi)-264(s)-1(p)1(ra)28(w)27(\\246,)-264(b)28(y)-264(sztraf\\363)28(w)-264(ni)1(e)-265(k)56(az)-1(al)1(i)]TJ 0 -13.549 Td[(p\\252aci\\242!...)]TJ 27.879 -13.549 Td[({)-281(T)83(o)-281(wsz)-1(ystk)28(o)-281(pat)1(rz)-1(y)84(,)-281(j)1(akb)28(y)-281(si\\246)-281(na)-281(Li)1(p)-28(cac)27(h)-280(m)-1(\\261c)-1(i)1(\\252)-1(y)-280(z)-1(a)-281(l)1(as)-1(!.)1(..)-281({)-281(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(b)28(y)1(?)-1(.)1(..)-333({)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic?!...)-333(M)1(oi\\261)-1(ciew)-1(y)1(!)-333(a)-334(c\\363\\273)-334(on)-333(ma)-334(d)1(o)-334(u)1(rz\\246)-1(d)1(\\363)28(w)-1(?)]TJ 0 -13.549 Td[({)-330(Za)28(w\\273)-1(d)1(y)-329(pan)-329(z)-330(pan)1(e)-1(m)-330(\\252acni)1(e)-1(j)-329(si\\246)-330(z)-1(m\\363)28(wi,)-330(w)-329(przyj)1(ac)-1(ielst)28(w)-1(i)1(e)-330(\\273)-1(yj)1(\\241,)-330(a)-329(m\\261)-1(ci\\242)]TJ -27.879 -13.549 Td[(si\\246)-334(na)-333(Lip)-27(cac)27(h)-333(zap)-28(o)28(wiada\\252!.)1(..)]TJ 27.879 -13.55 Td[({)-333(B)-1(o\\273e)-1(!)-333(\\273e)-334(to)-333(i)-333(dn)1(ia)-333(s)-1(p)-27(ok)28(o)-56(j)1(nego)-334(n)1(ie)-334(ma!...)-333(Ci\\246giem)-334(c)-1(o\\261)-333(no)28(w)27(ego!..)1(.)]TJ 0 -13.549 Td[({)-359(B)-1(yc)28(h)-359(in)1(o)-360(gorsze)-360(ju)1(\\273)-360(nie)-360(p)1(rzysz)-1(\\252o!..)1(.)-360({)-359(w)28(e)-1(stc)27(h)1(n\\246\\252)-1(a)-359(sk\\252ada)-55(j\\241c)-360(r)1(\\246)-1(ce)-360(jak)-359(do)]TJ -27.879 -13.549 Td[(pacierza.)]TJ 27.879 -13.549 Td[({)-333(Zle)-1(cia\\252y)-333(s)-1(i)1(\\246)-334(kiej)-333(sroki,)-333(a)-333(p)28(ysk)28(o)28(w)27(a\\252y)84(,)-334(\\273e)-334(n)1(ie)-1(c)28(h)-333(B\\363g)-334(b)1(roni)1(!...)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(ten)-333(s)-1(i)1(\\246)-334(dr)1(apie,)-333(k)28(ogo)-334(sw)27(\\246dzi!.)1(..)]TJ 0 -13.55 Td[({)-333(W)83(r)1(z)-1(askiem)-334(ni)1(e)-334(p)-27(oradzi,)-333(jeno)-333(no)28(w)28(\\241)-334(b)1(ied\\246)-334(mo\\273na)-333(s)-1(p)1(ro)28(w)27(ad)1(z)-1(i\\242!..)1(.)]TJ 0 -13.549 Td[(Roz)-1(d)1(ra\\273nion)29(y)-333(b)28(y\\252)-333(i)-334(ze)-1(strac)28(han)28(y)84(,)-333(b)28(y)-333(zno)28(wu)-333(na)-333(wie)-1(\\261)-333(c)-1(o)-333(z)-1(\\252ego)-334(n)1(ie)-334(p)1(ad\\252o.)]TJ\nET\nendstream\nendobj\n1316 0 obj <<\n/Type /Page\n/Contents 1317 0 R\n/Resources 1315 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1315 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1320 0 obj <<\n/Length 9527      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(411)]TJ -330.353 -35.866 Td[({)-333(W)83(r)1(ac)-1(acie)-334(to)-333(do)-333(dziec)-1(i?)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(\\363s)-1(\\252)-333(s)-1(i\\246)-333(b)28(y\\252)-333(z)-334(\\252a)27(wy)84(.)]TJ 0 -13.549 Td[({)-374(R)-1(ozpu)1(\\261)-1(ci\\252em)-375(s)-1(w)28(o)-56(j)1(\\241)-375(szk)28(o\\252)-1(\\246:)-374(\\261)-1(wi\\246ta;)-374(a)-375(p)-27(o)-374(dru)1(gie,)-375(\\273e)-375(m)28(usz)-1(\\241)-374(w)-375(c)27(h)1(a\\252up)1(ac)27(h)]TJ -27.879 -13.549 Td[(p)-27(om)-1(aga\\242,)-333(t)28(yle)-334(wsz)-1(\\246dzie)-334(rob)-27(ot)28(y!.)1(..)]TJ 27.879 -13.549 Td[({)-445(By\\252am)-445(rano)-444(z)-1(a)-445(n)1(a)-56(j)1(e)-1(mnik)56(ami)-445(n)1(a)-445(W)83(ol)1(i,)-445(p)-27(o)-445(trzy)-445(z\\252ote)-445(obiec)-1(y)1(w)27(a\\252am)-445(o)-28(d)]TJ -27.879 -13.55 Td[(ork)1(i,)-297(je\\261\\242)-298(b)28(y)1(m)-298(d)1(a\\252a)-297(i)-297(n)1(i)-297(jedn)1(e)-1(go)-297(n)1(ie)-297(nam\\363)28(w)-1(i)1(\\252)-1(am.)-297(K)1(a\\273)-1(d)1(e)-1(n)-296(s)-1(w)28(o)-56(j)1(e)-298(p)1(rz\\363)-28(dzi)-297(ob)1(rabi)1(a:)]TJ 0 -13.549 Td[(gdzie)-334(m)28(u)-333(to)-333(db)1(a\\242)-334(o)-334(k)28(ogo!)-333(O)1(biec)-1(u)1(j\\241)-333(pr)1(z)-1(yj)1(\\261)-1(\\242)-333(z)-1(a)-333(niedziel\\246)-334(ab)-27(o)-333(i)-334(d)1(wie)-1(!)1(...)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu!)-333(\\273e)-334(to)-333(c)-1(z\\252o)27(wiek)-333(ma)-334(in)1(o)-333(te)-334(dwie,)-333(i)-333(s)-1(\\252ab)-27(e)-1(,)-333(r\\246ce)-1(!.)1(..)-333(w)27(es)-1(tc)28(hn)1(\\241\\252)-334(ci\\246\\273)-1(k)28(o.)]TJ 0 -13.549 Td[({)-387(P)28(omagac)-1(i)1(e)-388(wy)-387(i)-387(tal)1(k)-387(nar)1(o)-28(do)28(wi,)-387(p)-27(om)-1(agacie!...)-386(Kiejb)28(y)-387(n)1(ie)-387(w)27(asz)-388(r)1(oz)-1(u)1(m)-388(i)]TJ -27.879 -13.549 Td[(to)-333(s)-1(erce)-334(dob)1(re,)-333(to)-334(j)1(u\\273)-334(n)1(ie)-334(wiad)1(a,)-333(c)-1(o)-333(b)28(y)-333(si\\246)-334(z)-334(n)1(am)-1(i)-333(ws)-1(zystkimi)-333(s)-1(t)1(a\\252)-1(o!)1(...)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(m)-334(to)-333(m)-1(\\363g\\252,)-333(co)-334(c)28(hc\\246)-1(,)-333(ni)1(e)-334(b)28(y\\252ob)28(y)-333(b)1(iedy)-333(na)-333(\\261)-1(wiecie)-334(ni)1(e)-1(!)]TJ 0 -13.55 Td[(Roz)-1(wi\\363)-27(d\\252)-306(r\\246c)-1(e)-306(w)-307(onej)-306(n)1(ie)-1(mo)-28(cy)-306(c)-1(i)1(\\246)-1(\\273kiej)-306(i)-306(wysz)-1(ed\\252)-306(\\261)-1(p)1(ie)-1(sznie)-306(do)-306(w)27(\\363)-55(jta.)-306(Jeno)]TJ -27.879 -13.549 Td[(\\273e)-334(tam)-334(n)1(ie)-1(r)1(yc)27(h)1(\\252o)-334(d)1(os)-1(ze)-1(d)1(\\252)-334(wst\\246)-1(p)1(uj)1(\\241c)-334(p)-27(o)-334(c)28(ha\\252up)1(ac)27(h:)]TJ 27.879 -13.549 Td[(Wie\\261)-358(s)-1(i\\246)-358(ju)1(\\273)-359(u)1(s)-1(p)-27(ok)28(oi\\252a)-358(n)1(ie)-1(co;)-358(j)1(e)-1(sz)-1(cz)-1(e)-358(tam)-358(k)56(a)-56(j\\261)-358(w)-358(p)-27(oniekt\\363ry)1(c)27(h)-358(op)1(\\252otk)56(ac)27(h)]TJ -27.879 -13.549 Td[(p)28(ysk)28(o)28(w)27(a\\252y)-266(c)-1(o)-266(na)-55(jza)27(wzi\\246ts)-1(ze)-1(,)-266(ale)-267(wi\\246ksz)-1(o\\261\\242)-267(roz)-1(esz)-1(\\252a)-267(si\\246)-267(sz)-1(y)1(k)28(o)27(w)28(a\\242)-267(w)27(ar)1(z)-1(\\246)-267(ob)1(iedni)1(\\241,)]TJ 0 -13.549 Td[(a)-333(p)-28(o)-333(dr)1(ogac)27(h)-333(j)1(e)-1(n)1(o)-334(wiater)-333(h)28(u)1(la\\252)-334(j)1(ak)-333(prz\\363)-28(d)1(z)-1(i)-333(i)-333(dr)1(z)-1(ewinami)-333(m)-1(i)1(ota\\252.)]TJ 27.879 -13.55 Td[(Ale)-223(wn)1(e)-1(tki)-222(p)-27(o)-223(p)1(rzyp)-27(o\\252udn)1(iu)1(,)-223(mimo)-223(wic)28(h)28(ur)1(y)-222(upr)1(z)-1(y)1(krzonej,)-222(z)-1(ar)1(oi\\252o)-223(si\\246)-223(wsz)-1(\\246-)]TJ -27.879 -13.549 Td[(dy)-291(o)-28(d)-291(lu)1(dzi,)-291(\\273)-1(e)-292(w)-292(ob)-27(ej\\261c)-1(iac)28(h,)-291(p)-28(o)-291(ogro)-28(d)1(ac)27(h,)-291(p)1(rz)-1(ed)-291(c)27(h)1(a\\252)-1(u)1(pami,)-291(w)-292(sie)-1(n)1(iac)27(h)-291(i)-291(izbac)27(h)]TJ 0 -13.549 Td[(za)27(wrza\\252o)-307(ki)1(e)-1(j)-306(w)-307(ulac)28(h)-307(o)-27(d)-307(r)1(ob)-28(ot)28(y)-306(i)-307(n)1(ie)-1(u)1(s)-1(ta)-55(j\\241cyc)27(h)-306(j)1(a)-1(zgot\\363)28(w)-307(bab)1(ic)27(h)-306({)-307(b)-27(o)-28(\\242)-307(to)-307(p)1(rze)-1(-)]TJ 0 -13.549 Td[(cie)-1(c)28(h)-442(i)1(no)-441(s)-1(ame)-442(k)28(obiet)28(y)-442(si\\246)-442(zwija\\252y)-441(a)-442(d)1(z)-1(iew)27(czynisk)56(a,)-442(za\\261)-442(tra\\014)1(\\252)-442(si\\246)-442(c)27(h)1(\\252)-1(op)1(ak,)-441(to)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-467(tak)1(i)-466(z)-467(k)28(os)-1(zul)1(\\241)-467(w)-466(z)-1(\\246bac)27(h)1(,)-466(a)-467(n)1(a)-56(j)1(w)-1(y)1(\\273)-1(ej)-466(do)-466(pasion)1(ki)-466(przyd)1(atn)28(y)84(,)-467(gd)1(y\\273)-467(co)]TJ 0 -13.55 Td[(starsz)-1(e)-334(wraz)-333(z)-334(o)-56(j)1(c)-1(ami)-333(s)-1(i)1(e)-1(d)1(z)-1(ia\\252y)84(.)]TJ 27.879 -13.549 Td[(Zwijal)1(i)-229(si\\246)-229(\\273w)27(a)28(w)28(o,)-229(j)1(e)-1(sz)-1(cze)-1(k)-228(p)-27(op)-28(\\246dza)-56(j)1(\\241c)-229(do)-228(p)-28(o\\261pi)1(e)-1(c)28(h)28(u,)-228(\\273)-1(e)-228(to)-229(w)28(c)-1(zora)-55(j)-228(z)-229(p)-28(o)28(w)28(o-)]TJ -27.879 -13.549 Td[(du)-301(zjazdu)-301(ks)-1(i)1(\\246)-1(\\273y)-302(do)-301(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-301(dziadoskie)-302(\\261)-1(wi\\241t)1(k)28(o)-302(s)-1(e)-302(z)-1(r)1(obil)1(i)-302(p)1(rz)-1(esiadu)1(j\\241c)-302(pr)1(a)27(wie)]TJ 0 -13.549 Td[(dzie\\253)-333(c)-1(a\\252y)-333(w)-333(k)28(o\\261)-1(cie)-1(l)1(e)-1(,)-333(a)-333(dzisia)-56(j)-333(zno)28(wu)-333(zaba\\252am)27(u)1(c)-1(il)1(i)-333(prze)-1(z)-333(s)-1(tr)1(a\\273)-1(n)1(ik)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(A)-349(tu)-349(i)-349(\\261)-1(wi\\246ta)-349(nad)1(c)27(ho)-27(dzi\\252y)83(,)-349(W)1(ie)-1(lk)1(i)-349(Wtorek)-349(ju)1(\\273)-350(b)28(y\\252)-349(na)-349(k)56(arku)1(,)-349(to)-28(\\242)-350(i)-349(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(b)28(y\\252o,)-257(i)-258(r\\363\\273n)28(yc)28(h)-257(tur)1(bacji)-257(niema\\252)-1(o)-257({)-258(to)-257(kiele)-258(c)27(h)1(a\\252up)-257(trza)-258(b)29(y\\252o)-258(p)-27(orz\\241dki)-257(cz)-1(yn)1(i\\242,)]TJ 0 -13.549 Td[(to)-407(dzie)-1(ci)-407(obsz)-1(y\\242,)-407(s)-1(iebi)1(e)-408(te)-1(\\273)-408(\\271dziebk)28(o)-407(obrz\\241dzi\\242,)-407(do)-408(m\\252yn)1(a)-408(wie\\271)-1(\\242,)-407(o)-408(\\261w)-1(i)1(\\246)-1(con)28(ym)]TJ 0 -13.549 Td[(p)-27(om)27(y\\261le\\242)-419(i)-418(t)27(y)1(le)-419(jesz)-1(cz)-1(e)-419(i)1(ns)-1(zyc)28(h)-418(r\\363\\273)-1(n)1(o\\261)-1(ci,)-418(\\273e)-419(ju)1(\\273)-419(w)-419(k)56(a\\273)-1(d)1(e)-1(j)-418(c)28(ha\\252up)1(ie)-419(g\\252o)28(wi\\252y)-418(s)-1(i\\246)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o)-266(gosp)-28(o)-27(dyn)1(ie,)-266(j)1(ak)-266(tu)-265(ws)-1(zystkiem)27(u)-265(zaradzi\\242,)-266(a)-265(przepatry)1(w)27(a\\252y)-265(piln)1(ie)-266(k)28(omory)84(,)]TJ 0 -13.549 Td[(co)-408(b)29(y)-407(k)55(ar)1(c)-1(zm)-1(ar)1(z)-1(o)28(wi)-407(pr)1(z)-1(eda\\242)-408(al)1(b)-28(o)-407(do)-407(miasta)-407(w)-1(y)1(w)-1(i)1(e)-1(\\271\\242)-408(na)-407(ten)-407(grosz)-408(p)-27(otrze)-1(b)1(n)28(y)84(.)]TJ 0 -13.55 Td[(Na)28(w)27(et)-348(ju)1(\\273)-349(kilk)56(a)-348(k)28(obi)1(e)-1(t)-348(p)-27(o)-56(jec)27(h)1(a\\252o)-349(zaraz)-348(p)-28(o)-348(obi)1(e)-1(d)1(z)-1(ie)-348(w)-1(i)1(oz)-1(\\241c)-349(cos)-1(i)1(k)-348(p)-28(o)-28(d)-347(s)-1(\\252om\\241)-349(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(edan)1(ie.)]TJ 27.879 -13.549 Td[({)-298(By)-297(w)27(as)-298(t)1(am)-298(gdzie)-298(dr)1(z)-1(ew)27(o)-297(ni)1(e)-298(przyw)28(ali\\252o!)-297({)-298(ostrze)-1(ga\\252)-297(R)-1(o)-27(c)27(ho)-297(Gu)1(lbaso)28(w)27(\\241,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(eje\\273)-1(d)1(\\273)-1(a)-55(j\\241c\\241)-334(w\\252a\\261nie)-333(tak)55(\\241)-333(mize)-1(rn)1(\\241)-333(k)28(onin)1(\\241,)-334(\\273e)-334(ledwie)-333(s)-1(z\\252a)-334(p)-27(o)-28(d)-333(wiatr)1(.)]TJ 27.879 -13.549 Td[(I)-234(skr)1(\\246)-1(ci\\252)-234(zaraz)-234(d)1(o)-234(j)1(e)-1(j)-233(c)27(h)1(a\\252up)28(y)84(,)-233(do)-56(j)1(rza)28(w)-1(sz)-1(y)84(,)-233(\\273)-1(e)-234(d)1(z)-1(iew)28(c)-1(zyn)28(y)84(,)-234(wyl)1(e)-1(p)1(ia)-56(j)1(\\241c)-1(e)-234(sz)-1(p)1(a-)]TJ -27.879 -13.549 Td[(ry)84(,)-462(ni)1(e)-463(mog\\241)-462(s)-1(i)1(\\246)-1(gn)1(\\241\\242)-463(n)1(ad)-462(okn)1(a.)-462(P)28(om\\363g\\252)-462(im)-463(w)-462(t)28(ym)-462(i)-462(jesz)-1(cz)-1(e)-462(w)27(ap)1(no)-462(w)-462(s)-1(za\\015u)]TJ 0 -13.55 Td[(rozrob)1(i\\252)-334(d)1(o)-334(b)1(iele)-1(n)1(ia)-333(\\261)-1(cian)-333(i)-333(galan)29(t)27(y)-333(p)-27(\\246dz)-1(el)-333(wyryc)28(h)28(to)28(w)27(a\\252)-333(ze)-334(s)-1(\\252om)28(y)83(.)]TJ 27.879 -13.549 Td[(I)-333(p)-28(olaz\\252)-333(dalej.)]TJ 0 -13.549 Td[(U)-428(W)83(ac)28(hn)1(ik)28(\\363)28(w)-429(gn)1(\\363)-56(j)-428(wyw)28(oz)-1(i)1(\\252y)-428(na)-428(p)-28(ob)1(liskie)-428(p)-28(ol)1(e)-1(,)-428(ale)-428(tak)-428(s)-1(p)1(ra)28(wnie)-428(im)-429(to)]TJ -27.879 -13.549 Td[(sz)-1(\\252o,)-304(\\273e)-304(p)-27(o\\252)-1(o)28(w)28(a)-304(wytrz\\241c)27(h)1(a\\252a)-304(si\\246)-304(z)-305(d)1(e)-1(sek)-304(p)-27(o)-304(dr)1(o)-28(dze,)-304(a)-304(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-303(w)27(e)-304(d)1(w)-1(ie)-304(k)28(on)1(ia)-304(za)]TJ 0 -13.549 Td[(uzd\\246)-396(ci\\241)-28(gn)1(\\246)-1(\\252y)84(,)-395(b)-28(o)-395(s)-1(\\252u)1(c)27(ha\\242)-396(p)-27(ono)-395(ni)1(e)-396(c)27(hcia\\252.)-395(Wsz)-1(ed\\252)-396(t)1(am)-396(Ro)-28(c)27(h)1(o,)-396(gn)1(\\363)-56(j)-395(na)-395(w)28(oz)-1(ie)]TJ 0 -13.55 Td[(oklepa\\252,)-270(jak)-270(s)-1(i\\246)-271(n)1(ale)-1(\\273a\\252o,)-271(i)-270(k)28(onia)-270(batem)-271(z)-1(\\252oi\\252,)-270(i\\273)-271(c)-1(i)1(\\241)-28(gn\\241\\252)-271(p)-27(os\\252)-1(u)1(s)-1(zni)1(e)-272(k)1(ie)-1(j)-270(d)1(z)-1(iec)27(k)28(o..)1(.)]TJ 27.879 -13.549 Td[(U)-386(Balce)-1(r)1(k)28(\\363)27(w)-386(zno)28(wu)-385(Mary)1(s)-1(ia,)-385(ta,)-386(co)-386(p)-27(o)-386(Jagn)1(ie)-386(B)-1(or)1(yno)28(w)28(e)-1(j)-385(z)-1(a)-385(na)-55(jg\\252adsz)-1(\\241)]TJ\nET\nendstream\nendobj\n1319 0 obj <<\n/Type /Page\n/Contents 1320 0 R\n/Resources 1318 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1318 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1323 0 obj <<\n/Length 9479      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(412)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)28(y\\252a)-380(w)27(e)-381(wsi)-380(u)28(w)27(a\\273ana,)-380(sia\\252a)-381(gr)1(o)-28(c)27(h)-380(tu)1(\\273)-381(z)-1(a)-380(p\\252otem)-381(w)-381(cz)-1(ar)1(n\\241)-380(i)-381(sielnie)-380(z)-1(n)1(a)27(w)28(o\\273)-1(on)1(\\241)]TJ 0 -13.549 Td[(zie)-1(mi\\246;)-324(j)1(e)-1(n)1(o)-324(\\273)-1(e)-324(si\\246)-324(ru)1(c)27(ha\\252a)-323(kiej)-324(m)28(uc)27(h)1(a)-324(w)-324(sm)-1(ol)1(e)-1(,)-323(okr\\246c)-1(on)1(a)-324(na)-323(g\\252o)27(wie)-324(w)-324(c)28(h)28(ustk)28(\\246)-324(i)]TJ 0 -13.549 Td[(w)-334(o)-55(jco)28(w)27(ej)-333(k)56(ap)-28(o)-27(c)-1(ie)-333(do)-333(z)-1(iemi,)-333(b)28(y)-333(jej)-333(kiec)27(ki)-333(n)1(ie)-334(r)1(oz)-1(wiew)27(a\\252o.)]TJ 27.879 -13.549 Td[({)-323(Nie)-324(\\261piesz)-324(s)-1(i)1(\\246)-324(tak,)-323(jesz)-1(cz)-1(e)-324(wyd)1(olisz)-1(!)1(...)-323({)-323(z)-1(a\\261mia\\252)-324(si\\246)-324(w)28(c)27(h)1(o)-28(dz\\241c)-324(n)1(a)-324(zagon.)]TJ 0 -13.549 Td[({)-355(J)1(ak\\273)-1(e...)-354(kto)-354(gro)-28(c)27(h)-354(sieje)-355(w)-355(Wi)1(e)-1(lk)1(i)-355(Wtor)1(e)-1(k)-354({)-355(za)-355(gar)1(niec)-355(z)-1(b)1(ie)-1(r)1(z)-1(e)-355(w)28(orek!)-355({)]TJ -27.879 -13.55 Td[(o)-28(d)1(krzykn)1(\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[({)-312(Nim)-312(dosiejes)-1(z,)-312(j)1(u\\273)-312(c)-1(i)-312(p)1(ierws)-1(zy)-312(wz)-1(j)1(e)-1(d)1(z)-1(i)1(e)-1(!)-312(Al)1(e)-313(za)-312(g\\246)-1(sto,)-312(M)1(ary\\261,)-312(za)-312(g\\246)-1(sto...)]TJ -27.879 -13.549 Td[(ni)1(e)-1(c)28(h)28(b)28(y)-333(wyr\\363s\\252,)-333(to)-334(zwie)-1(j)1(e)-334(si\\246)-334(w)-334(k)28(o\\252tu)1(n)28(y)-333(i)-333(p)-27(o\\252)-1(o\\273y!)]TJ 27.879 -13.549 Td[(P)28(ok)56(azyw)27(a\\252,)-365(j)1(ak)-365(sia\\242)-366(z)-365(w)-1(i)1(atrem)-1(,)-364(b)-28(o)-365(g\\252up)1(ia)-365(ni)1(e)-366(zm)-1(i)1(ark)28(o)28(w)27(a\\252a)-365(si\\246)-1(,)-364(s)-1(iej\\241c)-365(jak)]TJ -27.879 -13.549 Td[(p)-27(opad)1(\\252)-1(o.)]TJ 27.879 -13.549 Td[({)-242(A)-242(W)84(a)28(wrz)-1(on)-241(So)-27(c)27(ha)-241(m)-1(i)-241(p)-28(o)28(wiedzia\\252,)-242(j)1(ak)28(o\\261)-243(d)1(o)-242(ws)-1(zys)-1(t)1(kiego)-242(s)-1(p)-27(os)-1(ob)1(na!)-241({)-242(rze)-1(k)1(\\252)]TJ -27.879 -13.55 Td[(o)-28(d)-333(n)1(iec)27(hce)-1(n)1(ia)-333(id\\241c)-333(w)-1(p)-27(o)-28(d)1(le)-334(b)1(ruzd\\241)-333(p)-27(e)-1(\\252n)1(\\241)-334(b)1(\\252ota.)]TJ 27.879 -13.549 Td[({)-309(M\\363)28(wili)1(\\261)-1(cie)-310(t)1(o)-309(z)-310(n)1(im)-1(?..)1(.)-309({)-309(wykrzykn)1(\\246)-1(\\252a)-309(p)1(rzys)-1(ta)-55(j\\241c)-309(nagle,)-309(b)28(y)-308(tc)27(h)28(u)-308(z)-1(\\252ap)1(a\\242)-1(.)]TJ 0 -13.549 Td[(Scze)-1(rwieni)1(\\252a)-334(si\\246)-334(strasz)-1(n)1(ie)-1(,)-333(al)1(e)-334(b)-28(o)-55(ja\\252a)-333(p)28(yta\\242.)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(s)-1(i\\246)-333(jeno)-333(u\\261m)-1(i)1(e)-1(c)27(h)1(n\\241\\252,)-333(ale)-334(o)-27(dc)27(h)1(o)-28(d)1(z)-1(\\241c)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(:)]TJ 0 -13.549 Td[({)-333(W)83(e)-334(\\261wi\\246ta)-334(m)28(u)-333(p)-27(o)27(wiem,)-334(j)1(ak)-333(s)-1(i\\246)-333(to)-334(sielni)1(e)-334(pr)1(z)-1(yp)1(in)1(as)-1(z)-334(d)1(o)-334(r)1(ob)-28(ot)28(y!)1(...)]TJ 0 -13.55 Td[(Za\\261)-377(u)-377(P\\252osz)-1(k)28(\\363)28(w,)-377(stryj)1(e)-1(czn)28(yc)27(h)-376(Stac)28(ha,)-377(d)1(w)27(\\363)-27(c)27(h)-377(c)28(h\\252opak)28(\\363)28(w)-377(p)-27(o)-28(dor)1(yw)27(a\\252o)-377(tu)1(\\273)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-328(d)1(ro)-28(d)1(z)-1(e)-329(k)56(art)1(o)-1(\\015)1(isk)28(o:)-328(jeden)-328(p)-28(ogan)1(ia\\252,)-328(dru)1(gi)-328(nib)29(y)-329(to)-328(ora\\252,)-328(a)-328(s)-1(kr)1(z)-1(at)28(y)-328(b)28(y\\252y)-328(ob)1(a,)]TJ 0 -13.549 Td[(ledwie)-362(nose)-1(m)-362(ogona)-361(k)28(o\\253skie)-1(go)-361(s)-1(i\\246ga)-56(j)1(\\241c)-1(e)-362(i)-362(p)1(rz)-1(ez)-362(\\273)-1(ad)1(nej)-362(mo)-28(cy)83(,)-362(to)-362(j)1(u\\273c)-1(i)1(,)-362(\\273e)-363(p)1(\\252)-1(u)1(g)]TJ 0 -13.549 Td[(im)-374(c)28(ho)-28(d)1(z)-1(i)1(\\252)-374(kiej)-373(c)27(h)1(\\252)-1(op)-373(n)1(apit)28(y)84(,)-373(a)-374(k)28(o\\253)-373(c)-1(o)-373(tro)-27(c)27(ha)-373(do)-373(s)-1(ta)-55(jn)1(i)-374(za)28(w)-1(r)1(ac)-1(a\\252,)-373(pr)1(a\\252y)-374(go)-373(te)-1(\\273)]TJ 0 -13.549 Td[(w)28(c)-1(i\\241\\273)-333(na)-333(s)-1(p)-27(\\363\\252k)28(\\246)-334(i)-333(kl\\246\\252y)-333(s)-1(w)28(arz\\241c)-334(s)-1(i)1(\\246)-334(m)-1(i)1(\\246)-1(d)1(z)-1(y)-333(sob\\241.)]TJ 27.879 -13.55 Td[({)-223(P)28(oredzim,)-223(Ro)-28(c)27(h)28(u)1(,)-223(p)-28(or)1(e)-1(d)1(z)-1(i)1(m)-1(,)-223(in)1(o)-223(b)-28(ez)-224(te)-223(\\261)-1(cie)-1(r)1(wy)-223(k)55(amienie)-223(p\\252u)1(g)-224(wysk)56(akuj)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-287(i)-286(k)28(ob)28(y\\252a)-286(c)-1(i\\241)-27(gnie)-287(d)1(o)-287(\\271r\\363bk)56(a..)1(.)-287({)-287(t)1(\\252)-1(u)1(mac)-1(zy\\252)-287(si\\246)-287(z)-287(p\\252acz)-1(em)-287(s)-1(tar)1(s)-1(zy)83(,)-286(kiej)-286(m)27(u)-286(Ro)-28(c)27(h)1(o)]TJ 0 -13.549 Td[(o)-28(d)1(e)-1(b)1(ra\\252)-333(p\\252ug)-333(i)-333(rzn\\241\\252)-333(s)-1(ki)1(b)-28(\\246)-333(z)-1(a\\252o\\273n\\241,)-333(pr)1(z)-1(yu)1(c)-1(za)-56(j)1(\\241c)-334(zaraz)-1(em)-334(tr)1(z)-1(y)1(m)-1(an)1(ia)-333(k)28(ob)28(y\\252y)83(.)]TJ 27.879 -13.549 Td[({)-421(T)83(eraz)-421(j)1(u\\273)-421(c)-1(a\\252e)-421(sta)-56(j)1(e)-422(p)-27(o)-28(d)1(orze)-1(m)-421(d)1(o)-421(no)-28(c)28(ki!.)1(..)-421({)-420(w)-1(y)1(krzykiw)28(a\\252)-421(zuc)27(h)1(o)28(w)27(ato,)]TJ -27.879 -13.549 Td[(rozgl\\241d)1(a)-56(j\\241c)-423(s)-1(i\\246)-424(strac)28(hli)1(w)-1(i)1(e)-1(,)-423(cz)-1(y)-423(kto)-423(ni)1(e)-424(do)-55(jrza\\252)-424(Ro)-27(c)27(ho)28(w)28(e)-1(j)-423(p)-27(omo)-28(c)-1(y)84(,)-423(a)-424(gd)1(y)-423(s)-1(ta-)]TJ 0 -13.55 Td[(ry)-392(p)-28(osz)-1(ed\\252,)-392(przysiad\\252)-393(wn)1(e)-1(t)-393(n)1(a)-393(p\\252u)1(gu)-393(o)-27(d)-393(wiatr)1(u,)-393(j)1(ak)-393(to)-393(o)-27(c)-1(iec)-393(robi)1(li,)-393(i)-392(z)-1(aku)1(rzy\\252)]TJ 0 -13.549 Td[(pap)1(ierosa.)]TJ 27.879 -13.549 Td[(A)-457(Ro)-28(c)27(h)1(o)-458(sz)-1(ed\\252)-458(d)1(alej)-457(p)-28(o)-457(c)27(h)1(a\\252)-1(u)1(pac)28(h)-457(m)-1(iar)1(kuj)1(\\241c)-1(,)-457(gd)1(z)-1(ie)-458(mo\\273e)-458(b)28(y\\242)-458(w)-458(czym)]TJ -27.879 -13.549 Td[(p)-27(om)-1(o)-27(c)-1(n)28(y)84(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(isz)-1(a\\252)-359(k)1(\\252)-1(\\363t)1(nie,)-359(sp)-28(ory)-358(\\252ago)-28(dzi\\252,)-359(d)1(ore)-1(d)1(z)-1(a\\252,)-358(a)-359(gdzie)-360(b)29(y\\252o)-359(p)-28(otr)1(z)-1(a,)-359(i)-358(w)-360(r)1(o-)]TJ -27.879 -13.55 Td[(b)-27(o)-28(c)-1(i)1(e)-1(,)-362(c)27(h)1(o)-28(\\242b)28(y)-362(na)-55(jci\\246)-1(\\273sz)-1(ej,)-362(p)-27(om)-1(aga\\252,)-362(b)-27(o)-362(jak)-362(u)-362(K\\252\\246b)-28(\\363)28(w)-362(drew)-363(n)1(ar\\241b)1(a\\252)-363(wid)1(z)-1(\\241c,)-362(\\273)-1(e)]TJ 0 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-320(ni)1(e)-320(m)-1(og\\252a)-320(p)-27(orad)1(z)-1(i)1(\\242)-320(s)-1(\\246k)55(at)1(e)-1(m)28(u)-320(p)1(niak)28(o)28(wi,)-319(a)-320(P)28(acz)-1(esio)28(w)27(ej)-320(w)28(o)-28(d)1(y)-320(p)1(rzyni\\363s\\252)]TJ 0 -13.549 Td[(ze)-334(s)-1(ta)28(wu;)-333(gd)1(z)-1(i)1(e)-334(z)-1(n)1(o)27(wu)-333(r)1(oz)-1(sw)27(a)28(w)28(olone)-333(dzie)-1(ci)-333(do)-333(p)-27(os)-1(\\252uc)28(h)28(u)-333(nap)-27(\\246dza\\252...)]TJ 27.879 -13.549 Td[(A)-279(z)-1(au)29(w)27(a\\273y\\252,)-279(\\273)-1(e)-279(s)-1(i)1(\\246)-280(k)56(a)-56(j)1(\\261)-280(z)-1(b)29(ytni)1(o)-280(sm)27(u)1(c)-1(\\241)-279(i)-279(wyr)1(z)-1(ek)55(a)-55(j\\241)-279({)-279(\\273)-1(ar)1(t)28(y)-279(s)-1(tr)1(oi\\252)-279(ucie)-1(sz)-1(n)1(e)-280(i)]TJ -27.879 -13.549 Td[(te)-238(pr)1(z)-1(e\\261)-1(miec)27(h)28(y)84(...)-237(Z)-238(dzieuc)27(h)1(am)-1(i)-237(te\\273)-239(r)1(ad)-238(o)-237(pann)1(o)28(w)-1(y)1(c)27(h)-237(s)-1(p)1(ra)28(w)27(ac)28(h)-238(r)1(a)-1(d)1(z)-1(i)1(\\252)-238(i)-238(c)28(h\\252opak)28(\\363)28(w)]TJ 0 -13.549 Td[(ws)-1(p)-27(omina\\252;)-392(z)-392(k)28(obietami)-392(p)-27(ogadyw)28(a\\252)-392(o)-393(d)1(z)-1(i)1(e)-1(ciac)27(h)1(,)-392(o)-392(k\\252op)-27(otac)27(h,)-391(o)-393(s\\241siadk)56(ac)27(h)-391(i)-392(o)]TJ 0 -13.55 Td[(t)28(ym)-370(w)-1(szy\\242)-1(k)1(im)-1(,)-369(w)-371(cz)-1(y)1(m)-371(j)1(e)-1(n)1(o)-370(bab)1(i)-370(gatun)1(e)-1(k)-370(p)-27(o)-28(ciec)27(h\\246)-370(na)-55(jd)1(uje)-370({)-370(b)28(yl)1(e)-371(jeno)-370(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(ku)-333(l)1(e)-1(p)1(s)-1(zym)-334(m)28(y\\261)-1(l)1(om)-334(p)-27(o)-28(dp)1(ro)28(w)27(ad)1(z)-1(i)1(\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[(A)-261(\\273e)-262(cz)-1(\\252o)28(wie)-1(k)-260(b)28(y\\252)-261(m\\241dry)84(,)-261(p)-27(ob)-28(o\\273n)28(y)84(,)-261(w)27(e)-261(\\261w)-1(i)1(e)-1(cie)-262(n)1(iem)-1(a\\252o)-261(b)28(y)1(w)27(a\\252y)84(,)-261(to)-261(wie)-1(d)1(z)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(zaraz)-268(z)-267(pierwsz)-1(ego)-267(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia,)-267(co)-268(r)1(z)-1(ec)-268(i)-266(k)28(om)27(u,)-266(jak)56(\\241)-267(przyp)-27(o)28(w)-1(i)1(as)-1(tk)56(\\241)-267(wyrw)28(a\\242)-268(d)1(usz)-1(\\246)]TJ 0 -13.549 Td[(sm)27(ut)1(k)28(o)27(wi,)-369(k)28(om)27(u)-369(b)28(y\\252)-370(p)-27(otrze)-1(b)1(n)28(y)-370(\\261m)-1(i)1(e)-1(c)27(h)1(,)-370(k)28(om)28(u)-370(wsp)-28(\\363ln)29(y)-370(pacierz)-370(alb)-27(o)-370(to)-370(t)28(w)27(ar)1(de,)]TJ 0 -13.55 Td[(m\\241dre)-333(s)-1(\\252o)28(w)27(o)-333(lu)1(b)-333(i)-333(p)-28(ogr)1(oz)-1(a..)1(.)]TJ 27.879 -13.549 Td[(T)83(aki)-324(za\\261)-325(dob)1(ry)-324(b)28(y\\252)-324(i)-325(sp)-27(\\363\\252)-1(ecz)-1(n)1(ie)-325(c)-1(zuj)1(\\241c)-1(y)84(,)-324(\\273)-1(e)-325(c)28(ho)-28(\\242)-325(i)-324(n)1(ie)-1(p)1(rosz)-1(on)28(y)84(,)-324(a)-325(n)1(iejedn\\241)]TJ\nET\nendstream\nendobj\n1322 0 obj <<\n/Type /Page\n/Contents 1323 0 R\n/Resources 1321 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1321 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1326 0 obj <<\n/Length 9873      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(413)]TJ -358.232 -35.866 Td[(no)-27(c)27(k)28(\\246)-297(przes)-1(iedzia\\252)-297(p)1(rz)-1(y)-296(c)27(h)1(oryc)27(h)-296(kr)1(z)-1(epi\\241c)-297(sw)27(o)-55(j\\241)-297(d)1(obro\\261c)-1(i)1(\\241)-297(ni)1(e)-1(b)-27(orak)28(\\363)28(w,)-297(\\273e)-298(go)-297(j)1(u\\273)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-333(wi\\246c)-1(ej)-333(u)28(w)28(a\\273)-1(ali)-333(n)1(i\\271)-1(l)1(i)-333(dobr)1(o)-28(dzieja..)1(.)]TJ 27.879 -13.549 Td[(A\\273)-364(w)-363(k)28(o\\253)1(c)-1(u)-363(t)1(o)-364(si\\246)-363(ju\\273)-363(nar)1(o)-28(do)28(wi)-363(p)-27(o)-28(c)-1(z\\241\\252)-363(widzie\\242)-364(jak)28(o)-363(ten)-363(\\261wi\\241te)-1(k)-362(P)28(a\\253ski,)]TJ -27.879 -13.549 Td[(p)-27(o)-334(zagro)-28(d)1(ac)27(h)-333(r)1(oz)-1(n)1(os)-1(z\\241c)-1(y)-333(Bo\\273)-1(e)-333(z)-1(mi\\252o)28(w)27(an)1(ie)-334(a)-333(p)-28(o)-27(c)-1(iec)27(h)28(y)84(.)]TJ 27.879 -13.549 Td[(Hale!)-329(m\\363g\\252)-329(to)-328(z)-1(arad)1(z)-1(i)1(\\242)-330(b)1(iedzie)-329(ws)-1(zys)-1(tk)1(ie)-1(j)1(?)-329(m\\363g\\252)-329(to)-329(p)1(rze)-1(p)1(rz)-1(e\\242)-329(dol)1(\\246)-330(i)-328(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(k)56(armi\\242)-334(g\\252o)-28(d)1(ne,)-333(uzdro)28(wi\\242)-334(c)28(hore)-333(alb)-27(o)-334(wystarcz)-1(y\\242)-333(s)-1(w)28(oimi)-333(z)-1(a)-333(br)1(akuj)1(\\241c)-1(e)-334(r)1(\\246)-1(ce)-1(?..)1(.)]TJ 27.879 -13.549 Td[(Nad)-279(mo)-28(c)-279(jedn)1(e)-1(go)-279(cz\\252)-1(o)28(wiek)56(a)-279(s)-1(i\\246)-279(tru)1(dzi\\252)-279(p)-27(om)-1(aga)-55(j\\241c)-279(i)-279(br)1(oni\\241c)-279(nar)1(o)-28(du)-278({)-279(jeno)]TJ -27.879 -13.549 Td[(\\273e)-293(la)-293(wsz)-1(y)1(s)-1(tki)1(e)-1(j)-292(ws)-1(i)-292(b)28(y)1(\\252o)-293(to)-292(jedn)1(\\241)-293(okr)1(usz)-1(y)1(n\\241,)-292(t)28(ym)-1(,)-292(j)1(ak)28(ob)28(y)-292(kto)-292(w)-293(s)-1(p)1(iek)28(o)-28(c)-1(i)1(e)-293(w)27(ar)1(gi)]TJ 0 -13.549 Td[(spragn)1(ione)-333(ros)-1(\\241)-333(o)-28(d)1(wil\\273a\\252)-1(,)-333(p)1(i\\242)-334(n)1(ie)-334(p)-27(o)-28(da)-55(j\\241c!...)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(!)-442(w)-1(i)1(e)-1(\\261)-443(prze)-1(cie\\273)-444(b)28(y)1(\\252a)-444(ogr)1(om)-1(n)1(a,)-443(s)-1(am)28(yc)27(h)-442(c)27(h)1(a\\252)-1(u)1(p)-443(sto)-56(j)1(a\\252o)-443(p)-28(on)1(ad)-443(pi)1(\\246)-1(\\242-)]TJ -27.879 -13.549 Td[(dzies)-1(i)1(\\241t)-342(i)-342(ziem)-1(i)-341(do)-342(ob)1(r\\363bk)1(i)-342(le\\273)-1(a\\252)-342(sz)-1(mat)-342(wielgac)27(h)1(n)28(y)84(,)-342(i)-342(l)1(e)-1(w)28(e)-1(n)29(tarza)-342(do)-342(ob)1(rz\\241dk)28(\\363)28(w,)]TJ 0 -13.55 Td[(a)-333(i)-333(g\\241b)-333(do)-333(prze\\273)-1(ywieni)1(a)-334(cz)-1(ek)56(a\\252o)-334(co)-334(n)1(iem)-1(i)1(ara.)]TJ 27.879 -13.549 Td[(A)-375(z)-1(a\\261)-376(to)-375(ws)-1(zystk)28(o,)-375(o)-28(d)-375(c)-1(zas)-1(u)-375(wzi\\246c)-1(ia)-375(c)27(h)1(\\252op)-28(\\363)28(w,)-375(trzym)-1(a\\252o)-375(s)-1(i)1(\\246)-376(wi\\246)-1(ce)-1(j)-375(b)-27(osk)55(\\241)]TJ -27.879 -13.549 Td[(Op)1(atrzno\\261c)-1(i\\241)-363(n)1(i\\271)-1(l)1(i)-364(l)1(ud)1(z)-1(ki)1(m)-1(i)-363(zabiegami,)-363(w)-1(i)1(\\246)-1(c)-364(i)-363(n)1(ie)-364(d)1(z)-1(i)1(w)27(ota,)-363(\\273e)-364(z)-364(d)1(niem)-364(k)56(a\\273dym)]TJ 0 -13.549 Td[(wi\\246c)-1(ej)-333(s)-1(i)1(\\246)-334(m)-1(n)1(o\\273)-1(y)1(\\252)-1(o)-333(b)1(ie)-1(d)1(,)-333(p)-28(otr)1(z)-1(eb,)-333(sk)56(am)-1(\\252a\\253)-333(i)-333(tu)1(rbacji)1(...)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-312(dobr)1(z)-1(e)-312(to)-313(wsz)-1(y)1(s)-1(tk)28(o)-312(c)-1(zu\\252)-312(i)-312(wiedzia\\252,)-312(ale)-313(dop)1(iero)-312(dzis)-1(i)1(a)-56(j)1(,)-312(c)27(ho)-27(dz\\241)-1(c)-312(o)-28(d)]TJ -27.879 -13.55 Td[(c)27(h)1(a\\252up)28(y)-333(d)1(o)-334(c)28(ha\\252up)29(y)83(,)-333(do)-55(jr)1(z)-1(a\\252,)-333(jak)1(i)-333(to)-334(u)1(pad)1(e)-1(k)-333(ws)-1(z\\246)-1(d)1(y)-333(s)-1(i)1(\\246)-334(wkrad)1(a...)]TJ 27.879 -13.549 Td[(Ma\\252o)-468(b)-28(o)28(wiem)-1(,)-468(\\273e)-469(p)-27(ola)-469(l)1(e)-1(\\273a\\252)-1(y)-468(o)-28(d)1(\\252ogiem)-1(,)-468(\\273e)-469(nik)1(to)-469(n)1(ie)-469(ora\\252,)-468(ni)1(e)-469(s)-1(i)1(a\\252)-1(,)-468(n)1(ie)]TJ -27.879 -13.549 Td[(sadzi\\252,)-302(b)-27(o)-28(\\242)-302(co)-302(tam)-301(w)-302(roli)-301(pap)1(rali)1(,)-302(za)-302(d)1(z)-1(i)1(e)-1(ci\\253sk)56(\\241)-302(zaba)28(w)27(\\246)-301(s)-1(tar)1(c)-1(zy\\252o)-302({)-301(ale)-302(ju)1(\\273)-302(ru)1(in\\246)]TJ 0 -13.549 Td[(i)-255(op)1(usz)-1(cz)-1(enie)-255(wida\\242)-255(b)28(y\\252o)-255(n)1(a)-255(k)56(a\\273)-1(dy)1(m)-256(k)1(roku)1(:)-255(p\\252ot)28(y)-255(si\\246)-255(ano)-255(w)27(al)1(i\\252y)-255(mie)-1(j)1(s)-1(cami,)-255(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(za\\261)-405(p)1(rze)-1(z)-404(o)-28(d)1(arte)-404(d)1(a)-1(c)28(h)28(y)-403(krokwie)-404(i)-403(\\252at)27(y)-403(wy\\252az)-1(i)1(\\252y)83(,)-403(to)-404(ob)-27(e)-1(r)1(w)27(an)1(e)-405(wr\\363t)1(nie)-404(zw)-1(i)1(s)-1(a\\252y)84(,)]TJ 0 -13.55 Td[(kiej)-430(p)1(rze)-1(tr)1(\\241c)-1(on)1(e)-431(s)-1(k)1(rzyd\\252a)-430(trze)-1(p)1(i\\241c)-431(o)-430(\\261c)-1(i)1(an)28(y)83(,)-430(a)-430(n)1(ie)-1(j)1(e)-1(d)1(na)-430(c)27(h)1(a\\252up)1(a)-430(s)-1(i\\246)-430(w)-1(y)1(pin)1(a\\252a,)]TJ 0 -13.549 Td[(dar)1(e)-1(mni)1(e)-334(pr)1(os)-1(z\\241c)-334(p)-27(o)-28(dp)-27(ory)84(.)]TJ 27.879 -13.549 Td[(A)-342(w)-1(sz\\246)-1(d)1(y)-343(w)28(o)-28(d)1(y)-342(gni\\252y)-342(p)-27(o)-28(d)-342(c)27(h)1(a\\252upami,)-342(b)1(\\252oto)-343(p)-27(o)-342(k)28(olana)-342(i)-342(niep)-27(orz\\241dki)-342(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(\\261c)-1(ian)1(am)-1(i)1(,)-392(\\273e)-393(p)1(rze)-1(j)1(\\261)-1(\\242)-392(b)28(y\\252o)-392(n)1(ie\\252ac)-1(no,)-391(a)-392(n)1(a)-392(k)55(a\\273dy)1(m)-392(kroku)-391(tak)56(a)-392(marnacyj)1(a,)-392(\\273e)-393(a\\273)]TJ 0 -13.549 Td[(za)-412(se)-1(r)1(c)-1(e)-411(\\261)-1(cis)-1(k)56(a\\252o;)-411(to)-28(\\242)-411(c)-1(z\\246)-1(sto)-411(kro)28(wy)-411(p)-28(or)1(ykiw)28(a\\252y)-411(z)-412(g\\252o)-28(d)1(u)-411(i)-411(k)28(oni)1(e)-412(pr)1(os)-1(to)-411(w)-411(gn\\363)-56(j)]TJ 0 -13.55 Td[(obr)1(as)-1(ta\\252y)84(,)-333(b)-28(o)-333(ni)1(e)-334(b)28(y\\252o)-333(k)28(om)27(u)-333(o)-27(c)-1(zy\\261c)-1(i\\242.)]TJ 27.879 -13.549 Td[(I)-246(tak)-245(s)-1(i\\246)-246(dzia\\252o)-246(ze)-247(wsz)-1(y)1(s)-1(tki)1(m)-1(,)-245(\\273)-1(e)-246(na)28(w)28(e)-1(t)-246(cielaki)-245(ut)28(yt\\252an)1(e)-247(w)-246(b)1(\\252)-1(o)-27(c)-1(ie)-246(ki)1(e)-1(j)-245(\\261)-1(win)1(ie)]TJ -27.879 -13.549 Td[(\\252az)-1(i)1(\\252y)-273(samopas)-273(p)-27(o)-273(d)1(rogac)27(h)1(,)-272(s)-1(tat)1(ki)-272(gos)-1(p)-27(o)-28(dar)1(s)-1(ki)1(e)-273(ni)1(s)-1(zc)-1(za\\252y)-273(n)1(a)-273(d)1(e)-1(szc)-1(zu,)-272(p\\252u)1(gi)-272(rdza)]TJ 0 -13.549 Td[(zjada\\252a,)-290(w)-290(p)-27(\\363\\252k)28(os)-1(zk)56(ac)27(h)-290(wylegiw)28(a\\252y)-290(ma)-1(cior)1(y)83(,)-290(a)-290(co)-290(s)-1(i)1(\\246)-291(za\\261)-291(p)-27(o)-28(c)27(h)28(y)1(li\\252o,)-290(co)-290(ob)-28(erw)28(a\\252o,)]TJ 0 -13.549 Td[(co)-335(n)1(ad\\252amane)-334(pad)1(\\252o)-334({)-335(j)1(u\\273)-334(tak)-334(osta\\242)-335(osta)28(w)27(a\\252o,)-334(b)-27(o)-334(kt\\363\\273)-334(to)-334(m)-1(i)1(a\\252)-335(co)-334(p)-27(o)-28(dj)1(\\241\\242)-1(?)-334(kt\\363\\273)]TJ 0 -13.55 Td[(nap)1(ra)28(wia\\242?)-334(kto)-333(z)-1(\\252em)27(u)-333(zarad)1(z)-1(i)1(\\242)-334(i)-333(gorsz)-1(em)27(u)-333(zap)-28(ob)1(iec)-1(?...)-333(Kob)1(iet)28(y?...)]TJ 27.879 -13.549 Td[(Ale\\273)-255(t)27(y)1(m)-255(c)27(h)28(u)1(dzinom)-255(ledwie)-255(ju)1(\\273)-255(s)-1(i\\252)-254(i)-255(cz)-1(asu)-255(starcz)-1(y)1(\\252)-1(o)-254(na)-255(to,)-254(c)-1(o)-254(na)-55(jpi)1(lni)1(e)-1(j)1(s)-1(ze)-1(!)]TJ -27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(niec)27(h)28(b)29(y)-333(c)27(h\\252op)28(y)-333(wr\\363)-27(c)-1(i\\252y)84(,)-333(a)-334(w)-333(mig)-334(b)29(y\\252ob)28(y)-333(inacze)-1(j)1(...)]TJ 27.879 -13.549 Td[(Cz)-1(ek)56(ali)-408(te\\273)-409(n)1(a)-408(ic)27(h)-407(p)-28(o)28(wr\\363t)-408(j)1(ak)-408(na)-408(zmi\\252o)27(w)28(ani)1(e)-409(P)28(a\\253)1(s)-1(k)1(ie)-1(,)-407(c)-1(ze)-1(k)56(ali)-408(z)-408(dn)1(ia)-408(na)]TJ -27.879 -13.549 Td[(dzie\\253,)-333(kr)1(z)-1(epi\\241c)-333(s)-1(i\\246)-333(t\\241)-334(n)1(adziej\\241...)]TJ 27.879 -13.549 Td[(Ale)-255(c)27(h)1(\\252op)28(y)-255(n)1(ie)-255(p)-28(o)28(wracali)-255(i)-254(ni)-254(s)-1(p)-27(osobu)-254(b)28(y\\252o)-255(si\\246)-255(do)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242,)-255(ki)1(e)-1(j)-254(ic)27(h)-254(p)1(usz)-1(cz)-1(\\241.)]TJ -27.879 -13.55 Td[(Wi\\246c)-369(t)28(ymc)-1(zas)-1(o)28(wie)-369(j)1(e)-1(n)1(o)-369(z\\252y)-369(mia\\252)-368(ucie)-1(c)28(h\\246)-369(i)-368(pr)1(o\\014t)-368(z)-369(te)-1(j)-368(marn)1(ac)-1(j)1(i)-369(n)1(aro)-28(d)1(u,)-368(z)-369(t)28(yc)27(h)]TJ 0 -13.549 Td[(k\\252y\\271ni)1(e)-1(\\253)1(,)-334(sw)27(ar)1(\\363)28(w)-334(a)-333(bitek,)-333(z)-334(tego)-333(um\\246)-1(cz)-1(eni)1(a)-334(se)-1(r)1(c)-334(w)-334(b)1(iedzie)-334(a)-333(\\273)-1(a\\252o\\261c)-1(iac)28(h..)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-417(s)-1(i)1(w)-1(y)-416(zm)-1(i)1(e)-1(r)1(z)-1(c)27(h)-415(z)-1(asie)-1(w)28(a\\252)-416(\\261)-1(wiat,)-416(kiej)-416(Ro)-28(c)28(ho)-416(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-417(z)-416(os)-1(tan)1(ie)-1(j)-415(z)-1(a)-416(k)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(io\\252em)-334(c)27(h)1(a\\252up)28(y)84(,)-333(o)-28(d)-333(Go\\252\\246bi\\363)28(w,)-333(i)-333(p)-28(o)28(wl\\363k\\252)-333(si\\246)-334(do)-333(w)28(\\363)-56(j)1(ta)-334(n)1(a)-334(d)1(ru)1(gi)-334(k)28(on)1(iec)-334(ws)-1(i.)1(..)]TJ 27.879 -13.549 Td[(Wiat)1(e)-1(r)-283(w)27(ci\\241\\273)-284(h)28(ur)1(k)28(ota\\252)-284(c)-1(i)1(s)-1(k)56(a)-56(j)1(\\241c)-284(s)-1(i\\246)-284(coraz)-284(bar)1(z)-1(ej,)-283(a)-284(tak)-284(miec)-1(\\241c)-284(dr)1(z)-1(ewinami,)]TJ -27.879 -13.55 Td[(\\273e)-334(nie)-333(b)28(y\\252o)-333(prze)-1(zpi)1(e)-1(cz)-1(n)1(ie)-334(i\\261\\242,)-334(b)-27(o)-333(raz)-334(p)-27(o)-333(raz)-334(lec)-1(i)1(a\\252y)-334(n)1(a)-333(drog\\246)-333(o)-28(d\\252amane)-334(ga\\252\\246z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-310(t)1(e)-1(\\273,)-310(zgarb)1(ion)28(y)84(,)-310(p)1(rz)-1(em)27(y)1(k)55(a\\252)-309(p)-28(o)-27(d)-310(sam)27(y)1(m)-1(i)-309(p\\252otami,)-309(ledwie)-310(widn)29(y)-310(w)-310(tej)]TJ\nET\nendstream\nendobj\n1325 0 obj <<\n/Type /Page\n/Contents 1326 0 R\n/Resources 1324 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1324 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1329 0 obj <<\n/Length 9433      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(414)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dziwnej)-333(sz)-1(ar)1(o\\261)-1(ci)-333(z)-1(mie)-1(r)1(z)-1(c)28(h)28(u,)-333(ki)1(e)-1(b)28(y)-333(ze)-334(startego)-334(n)1(a)-333(pro)-28(c)28(h)-333(s)-1(zk\\252a)-333(ucz)-1(y)1(nion)1(e)-1(go.)]TJ 27.879 -13.549 Td[({)-339(Je\\261)-1(l)1(i)-339(do)-338(w)27(\\363)-55(jta)-339(i)1(dzie)-1(cie,)-339(w)28(e)-340(m\\252yn)1(ie)-339(p)-28(on)1(o,)-339(w)-339(c)27(h)1(a\\252upi)1(e)-340(go)-338(nie)-339(ma!)-339({)-339(Jagu)1(-)]TJ -27.879 -13.549 Td[(st)27(y)1(nk)56(a)-333(z)-1(j)1(a)27(wi\\252a)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ed)-333(nim)-333(niesp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(anie.)]TJ 27.879 -13.549 Td[(Za)28(w)-1(r)1(\\363)-28(ci\\252)-334(k)1(u)-333(m)-1(\\252yn)1(o)28(w)-1(i)-333(b)-27(e)-1(z)-333(s)-1(\\252o)28(w)27(a,)-333(n)1(ie)-334(cierpi)1(a\\252)-334(b)-27(o)28(w)-1(i)1(e)-1(m)-334(tego)-333(plec)-1(i)1(uc)27(h)1(a.)]TJ 0 -13.549 Td[(Dop)-27(\\246)-1(d)1(z)-1(i)1(\\252)-1(a)-333(go)-333(wnet)-334(i)-333(d)1(re)-1(p)-27(c\\241c)-334(p)-27(ob)-28(ok,)-333(zas)-1(zepta\\252a)-333(pra)28(wie)-334(w)-333(s)-1(ame)-334(u)1(s)-1(zy:)]TJ 0 -13.55 Td[({)-333(Za)-56(jr)1(z)-1(y)1(jcie)-334(do)-333(moic)27(h)-333(P)1(rycz)-1(k)28(\\363)28(w)-333(ab)-28(o)-333(i)-333(do)-333(Fil)1(ipk)1(i...)-333(za)-56(jr)1(z)-1(y)1(jcie)-1(!)1(...)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(m)-334(c)-1(o)-333(p)-27(om)-1(\\363g\\252,)-333(to)-333(z)-1(a)-55(jr)1(z)-1(\\246...)]TJ 0 -13.549 Td[({)-333(T)83(ak)-333(s)-1(k)56(amla\\252y)83(,)-333(ab)28(y)1(\\261)-1(cie)-334(d)1(o)-334(n)1(ic)27(h)-333(za)-56(j)1(rze)-1(li)1(...)-333(pr)1(z)-1(y)1(jd\\271cie)-1(!.)1(..)-333({)-334(gor)1(\\241c)-1(o)-333(pr)1(os)-1(i)1(\\252)-1(a.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(jeno)-333(prz\\363)-28(d)1(z)-1(i)-333(m)27(u)1(s)-1(z\\246)-334(z)-334(w)28(\\363)-56(j)1(tem)-334(p)-27(om)-1(\\363)28(wi\\242.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(!)]TJ 0 -13.549 Td[(P)28(o)-28(ca\\252o)28(w)27(a\\252a)-333(go)-334(w)-333(r\\246k)28(\\246)-334(roztrz\\246)-1(sion)28(y)1(m)-1(i)-333(w)28(argami.)]TJ 0 -13.55 Td[({)-333(A)-334(w)28(am)-334(co?)]TJ 0 -13.549 Td[(Zdu)1(m)-1(i)1(a\\252)-334(si\\246,)-334(b)-27(o)-333(z)-1(a)28(w\\273)-1(d)1(y)-333(b)28(yli)-333(z)-334(sob\\241)-333(j)1(akb)28(y)-333(w)27(e)-333(w)27(o)-55(jn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-366(Co)-366(b)28(y)-366(za\\261)-1(,)-365(jeno)-366(na)-366(k)56(a\\273dego)-366(przyc)28(ho)-28(d)1(z)-1(i)-366(t)1(aki)-366(cz)-1(as,)-366(\\273)-1(e)-366(jak)28(o)-366(ten)-366(p)1(ies)-367(zgo-)]TJ -27.879 -13.549 Td[(ni)1(on)28(y)-414(a)-415(b)-27(ez)-1(p)1(a\\253ski,)-414(rad)1(,)-414(kiej)-414(go)-414(p)-28(o)-28(czc)-1(iw)28(a)-414(r\\246)-1(k)56(a)-414(p)-27(og\\252)-1(aszc)-1(ze)-1(..)1(.)-414({)-415(sz)-1(epn)1(\\246)-1(\\252a)-414(\\252z)-1(a)28(w)28(o,)]TJ 0 -13.549 Td[(ale)-334(n)1(im)-334(n)1(alaz\\252)-334(d)1(la)-334(n)1(iej)-333(to)-333(dobr)1(e)-334(s\\252)-1(o)28(w)28(o,)-333(o)-28(des)-1(z\\252a)-333(\\261)-1(pi)1(e)-1(sz)-1(n)1(ie.)]TJ 27.879 -13.55 Td[(A)-364(on)-364(i)-364(w)28(e)-365(m\\252)-1(y)1(nie)-364(w)27(\\363)-55(jta)-364(ni)1(e)-365(nalaz\\252;)-364(z)-1(e)-364(s)-1(tr)1(a\\273)-1(n)1(ik)56(am)-1(i)-364(p)-27(ono)-364(d)1(o)-365(miasta)-364(p)-28(o)-55(je-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252)-387({)-387(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-387(m\\252)-1(y)1(narczyk)-387(zapr)1(as)-1(za)-56(j)1(\\241c)-387(na)-387(o)-27(dp)-27(o)-28(c)-1(zni)1(e)-1(n)1(ie)-387(do)-386(s)-1(w)28(o)-56(j)1(e)-1(j)-386(izdebki)1(,)]TJ 0 -13.549 Td[(gdzie)-395(j)1(u\\273)-395(dosy\\242)-395(sie)-1(d)1(z)-1(i)1(a\\252o)-395(lip)-27(ec)27(kic)28(h)-394(bab)-394(i)-395(c)28(h\\252op)-27(\\363)27(w)-394(z)-395(dru)1(gic)27(h)-394(wsi,)-395(o)-27(c)-1(ze)-1(ku)1(j\\241cyc)27(h)]TJ 0 -13.549 Td[(na)-367(sw)27(o)-55(j\\241)-367(k)28(olej)-367(mielenia.)-367(By\\252b)28(y)-367(t)1(am)-368(Ro)-28(c)28(ho)-367(c)27(h)1(\\246)-1(tn)1(ie)-367(p)-28(osiedz)-1(i)1(a\\252)-367(d\\252u\\273e)-1(j)1(,)-367(ale)-367(T)83(e)-1(r)1(e)-1(-)]TJ 0 -13.549 Td[(sk)55(a)-397(\\273o\\252nierk)56(a,)-397(sie)-1(d)1(z)-1(\\241ca)-397(z)-398(in)1(s)-1(zymi,)-397(p)1(rz)-1(y)1(s)-1(iad)1(\\252a)-397(w)-1(n)1(e)-1(t)-397(d)1(o)-397(niego)-397(i)-397(j\\246\\252a)-398(n)1(ie\\261)-1(mia\\252o)-397(a)]TJ 0 -13.55 Td[(cic)27(h)28(u)1(\\261)-1(k)28(o)-333(wyp)28(yt)28(y)1(w)27(a\\242)-334(o)-333(Mateusz)-1(a)-333(Go\\252\\246bia.)]TJ 27.879 -13.549 Td[({)-388(B)-1(y)1(li\\261c)-1(ie)-388(u)-388(c)27(h\\252op)-27(\\363)28(w)-1(,)-388(to\\261cie)-389(i)-388(jego)-388(m)27(usieli)-388(widzie\\242)-1(..)1(.)-389(a)-388(zdro)28(wy?)-388(a)-389(d)1(obrej)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(li)1(?)-334(a)-333(kiej)-333(go)-333(pusz)-1(cz\\241?)-1(.)1(.)-334({)-333(p)1(rz)-1(y)1(c)-1(iera\\252a,)-333(w)-333(o)-28(c)-1(zy)-333(m)27(u)-333(n)1(ie)-334(sp)-28(ogl)1(\\241da)-56(j)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[({)-461(A)-461(jak)-461(si\\246)-462(ma)-462(w)28(asz)-462(w)27(e)-461(w)27(o)-55(jsku?)-461(z)-1(d)1(ro)28(wy?)-462(r)1(yc)27(h)1(\\252o)-462(wr)1(ac)-1(a?...)-461({)-461(sp)28(yta\\252)-461(w)]TJ -27.879 -13.549 Td[(k)28(o\\253cu)-333(r\\363)28(wni)1(e)-1(\\273)-334(cic)28(ho)-333(uderza)-56(j)1(\\241c)-334(j\\241)-333(srogimi)-333(o)-28(cz)-1(yma.)]TJ 27.879 -13.55 Td[(Scze)-1(rwieni)1(\\252a)-334(si\\246)-334(i)-333(u)1(c)-1(iek\\252a)-333(z)-1(a)-333(m)-1(\\252y)1(n.)]TJ 0 -13.549 Td[(P)28(oki)1(w)27(a\\252)-476(g\\252)-1(o)28(w)28(\\241)-477(n)1(ad)-477(j)1(e)-1(j)-476(za\\261)-1(l)1(e)-1(p)1(ie)-1(n)1(iem)-477(i)-477(p)-27(osz)-1(ed\\252,)-476(c)27(hc\\241c)-477(cos)-1(ik)-476(pr)1(z)-1(e\\252o\\273)-1(y\\242)-477(a)]TJ -27.879 -13.549 Td[(strze)-1(c)-382(prze)-1(d)-381(grze)-1(c)28(hem)-1(,)-382(al)1(e)-383(na)-382(m\\252yn)1(ic)-1(y)84(,)-382(c)27(h)1(o)-28(\\242)-383(si\\246)-382(pali)1(\\252)-1(y)-381(lam)-1(p)1(ki,)-382(w)-382(t)28(ym)-382(roztrz\\246)-1(-)]TJ 0 -13.549 Td[(sion)28(ym)-313(ku)1(rzu)-312(m)-1(\\241cz)-1(n)29(ym)-313(i)-313(mrok)1(u)-313(n)1(ie)-313(m\\363g\\252)-313(jej)-312(o)-28(dn)1(ale)-1(\\271\\242:)-313(sc)27(ho)28(w)28(a\\252a)-313(si\\246)-313(przed)-313(n)1(im.)]TJ 0 -13.549 Td[(M\\252yn)-358(z)-1(a\\261)-359(tak)-359(tur)1(k)28(ota\\252,)-359(w)27(o)-28(d)1(y)-359(z)-360(tak)1(im)-360(k)1(rz)-1(y)1(kiem)-360(n)1(ie)-1(u)1(s)-1(tan)1(n)28(ym)-359(w)27(al)1(i\\252y)-359(na)-359(k)28(o\\252a,)-359(a)]TJ 0 -13.55 Td[(wiater)-387(kieb)28(y)-387(t)28(y)1(m)-1(i)-386(na)-56(j)1(wi\\246)-1(k)1(s)-1(zymi)-387(w)27(or)1(am)-1(i)-386(ryp)1(a\\252)-387(raz)-388(p)-27(o)-387(r)1(az)-1(ie)-387(w)27(e)-387(\\261c)-1(ian)29(y)-387(i)-387(d)1(ac)27(h)28(y)84(,)]TJ 0 -13.549 Td[(\\273e)-307(ws)-1(zystk)28(o)-306(b)28(y\\252o)-306(w)-306(taki)1(m)-307(d)1(ygo)-28(cie)-306(i)-306(roztrz\\246)-1(sieniu)1(,)-306(jak)1(b)28(y)-306(leda)-306(mgni)1(e)-1(n)1(ie)-307(r)1(oz)-1(lecie)-1(\\242)]TJ 0 -13.549 Td[(si\\246)-334(mia\\252o,)-333(a\\273)-334(Ro)-28(c)27(h)1(o)-334(d)1(a\\252)-334(sp)-27(ok)28(\\363)-56(j)-333(sz)-1(u)1(k)55(an)1(iu)-333(i)-333(zaraz)-334(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-333(t)27(y)1(c)27(h)-333(n)1(ie)-1(b)-27(oracz)-1(ek.)]TJ 27.879 -13.549 Td[(T)28(ym)-1(czas)-1(em)-261(n)1(o)-28(c)-261(si\\246)-260(ju)1(\\273)-261(sta\\252a)-261(zup)-27(e\\252na;)-260(ws)-1(k)1(ro\\261)-261(r)1(oz)-1(k)28(ol)1(e)-1(b)1(an)28(yc)27(h)-259(drzew)-261(tr)1(z)-1(\\246s)-1(\\252y)]TJ -27.879 -13.549 Td[(si\\246)-471(gd)1(z)-1(ieni)1(e)-1(gd)1(z)-1(ie)-470(z)-1(ap)1(alone)-470(\\261)-1(wiat)1(\\252)-1(a,)-469(jak)28(o)-470(te)-471(\\261lepia)-470(wilcze)-1(,)-470(ale)-470(na)-470(\\261wie)-1(cie)-470(b)28(y\\252o)]TJ 0 -13.549 Td[(dziwni)1(e)-302(j)1(as)-1(n)1(o,)-301(\\273)-1(e)-301(do)-55(jrza\\252)-301(c)27(h)1(a\\252)-1(u)1(p)28(y)-301(p)-27(okry)1(te)-302(w)-301(s)-1(ad)1(ac)27(h)1(,)-301(a)-301(na)28(w)27(et)-301(p)-27(\\363l)-301(mog\\252)-1(y)-300(s)-1(i\\246gn\\241\\242)]TJ 0 -13.55 Td[(o)-28(cz)-1(y)84(,)-324(n)1(ieb)-28(o)-324(za\\261)-324(wis)-1(i)1(a\\252)-1(o)-323(w)-1(y)1(s)-1(oki)1(e)-325(i)-323(c)-1(i)1(e)-1(mne,)-324(gr)1(anato)28(w)28(e)-1(,)-323(pra)28(wie)-324(c)-1(zyste)-1(,)-323(b)-27(o)-324(ino)-323(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(k)56(a)-56(j)-346(jakb)29(y)-347(\\261)-1(n)1(ieg)-1(i)1(e)-1(m)-347(pr)1(z)-1(yp)1(r\\363sz)-1(on)1(e)-1(,)-347(i)-347(gwiazdy)-346(s)-1(i\\246)-347(c)-1(or)1(az)-348(rz\\246)-1(si\\261c)-1(i)1(e)-1(j)-347(wysyp)28(y)1(w)27(a\\252y)84(,)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-325(w)-1(i)1(ate)-1(r)-325(ni)1(e)-326(\\261)-1(cic)27(h)1(a\\252)-1(,)-325(a)-326(n)1(apr)1(z)-1(ec)-1(iw,)-325(m)-1(o)-27(c)-1(y)-325(jes)-1(zc)-1(zec)27(h)-325(nabi)1(e)-1(r)1(a\\252)-326(wi\\246)-1(k)1(s)-1(ze)-1(j)-325(i)-325(c)-1(a\\252ym)]TJ 0 -13.549 Td[(\\261w)-1(i)1(ate)-1(m)-333(ju\\273)-333(s)-1(i\\246)-333(prze)-1(w)28(ala\\252.)]TJ 27.879 -13.549 Td[(I)-235(wia\\252)-235(tak)-235(b)-27(e)-1(z)-235(m)-1(a\\252a)-235(ca\\252\\241)-235(no)-28(c,)-235(\\273e)-236(ma\\252o)-235(kto)-235(p)-28(or)1(e)-1(d)1(z)-1(i)1(\\252)-236(o)-27(c)-1(zy)-235(z)-1(mru)1(\\273)-1(y)1(\\242)-236(c)27(h)1(o)-28(\\242b)28(y)-235(na)]TJ -27.879 -13.55 Td[(pacierz,)-335(gdy\\273)-335(c)27(ha\\252u)1(p)28(y)-335(sro)-28(d)1(z)-1(e)-335(prze)-1(wiew)27(a\\252,)-335(d)1(rze)-1(w)28(a)-335(c)27(hl)1(as)-1(ta\\252y)-335(p)-27(o)-335(\\261)-1(cianac)28(h)-335(i)-335(sz)-1(yb)29(y)]TJ 0 -13.549 Td[(gni)1(e)-1(t\\252y)84(,)-369(a)-369(tak)-369(w)27(e)-369(\\261)-1(cian)28(y)-369(r)1(ypa\\252)-369(i)-369(t\\252uk)1(\\252,)-369(kieb)28(y)-369(t)28(ymi)-369(barami,)-369(i)1(\\273)-370(m)27(y)1(\\261)-1(leli)-369(n)1(ie)-1(r)1(az)-1(,)-369(co)]TJ\nET\nendstream\nendobj\n1328 0 obj <<\n/Type /Page\n/Contents 1329 0 R\n/Resources 1327 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1314 0 R\n>> endobj\n1327 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1332 0 obj <<\n/Length 9052      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(415)]TJ -358.232 -35.866 Td[(ca\\252)-1(\\241)-333(wie\\261)-334(wyrwie)-334(i)-333(p)-27(o)-333(\\261)-1(wiec)-1(ie)-333(roztrz\\246)-1(sie)-1(.)]TJ 27.879 -13.549 Td[(Usp)-28(ok)28(oi\\252o)-313(si\\246)-314(dop)1(iero)-313(nad)-313(r)1(anem)-1(,)-313(ale)-313(ino)-313(co)-314(k)28(ok)28(ot)28(y)-313(p)1(rz)-1(epi)1(a\\252)-1(y)-313(n)1(a)-313(\\261)-1(witan)1(ie)]TJ -27.879 -13.549 Td[(i)-300(p)-28(omord)1(o)28(w)27(an)28(y)-300(n)1(ar\\363)-28(d)-300(zas)-1(n)1(\\241\\252,)-301(gr)1(z)-1(mot)28(y)-300(j\\246\\252y)-301(h)29(ucz)-1(e\\242)-301(i)-300(prze)-1(w)28(ala\\242)-301(si\\246)-301(n)1(ad)-300(\\261)-1(wiatem,)]TJ 0 -13.549 Td[(a)-268(\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-1(e)-268(zamigota\\252y)-268(k)1(rw)28(a)27(wymi)-267(p)-28(ostron)1(k)56(am)-1(i,)-267(p)-27(ote)-1(m)-267(z)-1(a\\261)-268(d)1(e)-1(sz)-1(cz)-268(spad\\252)-267(ul)1(e)-1(wn)28(y)84(.)]TJ 0 -13.549 Td[(Na)28(w)27(et)-333(p)-28(o)28(wiadal)1(i,)-333(\\273)-1(e)-333(pior)1(un)28(y)-333(gd)1(z)-1(ies)-1(i)1(k)-333(bi\\252y)-333(nad)-333(b)-27(orami.)]TJ 27.879 -13.55 Td[(Ale)-419(d)1(obry)1(m)-419(ju)1(\\273)-419(ran)1(kie)-1(m)-418(c)-1(a\\252ki)1(e)-1(m)-419(si\\246)-419(usp)-27(ok)28(oi\\252o,)-419(d)1(e)-1(szc)-1(z)-419(p)1(rz)-1(esta\\252)-419(i)-418(c)-1(i)1(e)-1(p)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(pr)1(os)-1(to)-443(bu)1(c)27(h)1(a\\252)-1(o)-443(z)-444(p)-27(\\363l,)-443(a)-444(pt)1(aki)-444(j)1(\\246)-1(\\252y)-443(\\261w)-1(i)1(e)-1(rgot)1(a\\242)-444(rado\\261ni)1(e)-1(,)-443(a)-444(c)28(ho)-28(\\242)-444(s\\252o\\253ce)-444(s)-1(i)1(\\246)-444(nie)]TJ 0 -13.549 Td[(p)-27(ok)55(aza\\252o,)-247(jedn)1(ak)-247(mie)-1(j)1(s)-1(cami)-247(rozryw)28(a\\252)-1(y)-246(s)-1(i\\246)-247(niskie,)-247(b)1(ia\\252a)27(w)28(e)-248(c)28(hm)28(ury)-247(i)-246(nieb)-28(o)-247(gal)1(an)28(to)]TJ 0 -13.549 Td[(mo)-28(dr)1(z)-1(a\\252o.)-333(M\\363)28(wili,)-333(\\273e)-334(n)1(a)-334(p)-27(ogo)-28(d)1(\\246)-334(idzie.)]TJ 27.879 -13.549 Td[(Za\\261)-224(w)27(e)-224(ws)-1(i)-223(lam)-1(en)28(t)-224(p)-27(o)28(ws)-1(ta\\252)-224(i)-223(krzyki,)-223(b)-28(o)-223(s)-1(i\\246)-224(p)-27(ok)55(aza\\252o)-224(t)28(yle)-224(sz)-1(k)28(\\363)-28(d)-223(p)-27(o)-224(wic)27(h)28(u)1(rze)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-359(i)-357(nie)-358(zlicz)-1(y)1(\\242)-1(:)-357(na)-358(d)1(rogac)27(h)-357(le\\273)-1(a\\252y)-357(p)-28(ok)28(ot)1(e)-1(m)-358(p)-27(o\\252am)-1(an)1(e)-359(d)1(rze)-1(w)28(a,)-358(k)56(a)28(w)28(a)-1(\\252y)-357(dac)28(h\\363)28(w,)]TJ 0 -13.55 Td[(p\\252ot)28(y)84(,)-333(i\\273)-334(n)1(ie)-334(mo\\273)-1(n)1(a)-334(b)28(y)1(\\252o)-334(p)1(rze)-1(j)1(e)-1(c)27(h)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(U)-415(P\\252osz)-1(k)28(\\363)28(w)-416(zw)27(al)1(i\\252o)-416(c)28(hlewy)-415(i)-415(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-416(g\\246s)-1(i)-415(pr)1(z)-1(y)1(gniet\\252o.)-415(I)-416(tak)-415(w)-415(k)55(a\\273dej)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-363(p)-27(ok)55(aza\\252a)-363(si\\246)-363(j)1(ak)55(a\\261)-362(s)-1(zk)28(o)-28(da,)-362(\\273e)-363(ws)-1(zystkie)-363(op)1(\\252otki)-362(z)-1(ar)1(oi\\252y)-362(s)-1(i\\246)-363(k)28(ob)1(ietam)-1(i)1(,)]TJ 0 -13.549 Td[(a)-333(biad)1(ania)-333(i)-333(p\\252acz)-1(e)-333(s)-1(yp)1(a\\252y)-333(s)-1(i\\246)-333(jak)28(o)-333(te)-1(n)-333(d)1(e)-1(sz)-1(cz)-334(r)1(z)-1(\\246s)-1(ist)28(y)83(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-360(i)-359(Hank)56(a)-360(wysz)-1(\\252a)-359(na)-359(\\261)-1(wiat,)-359(b)28(y)-359(ob)-28(ejr)1(z)-1(e\\242)-360(gos)-1(p)-27(o)-28(d)1(a)-1(r)1(s)-1(t)28(w)28(o)-360(i)-359(s)-1(p)1(ra)28(wdzi\\242)]TJ -27.879 -13.55 Td[(sz)-1(k)28(o)-28(d)1(y)83(,)-333(gd)1(y)-334(n)1(a)-333(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(e)-333(w)-1(p)1(ad\\252a)-333(Sik)28(or)1(z)-1(yn)1(a.)]TJ 27.879 -13.549 Td[({)-395(A)-395(to)-395(ni)1(e)-396(wiec)-1(ie?...)-395(S)1(tac)27(h)1(om)-396(r)1(oz)-1(w)28(ali\\252o)-395(c)27(h)1(a\\252up)-27(\\246)-1(!.)1(..)-395(cud)-395(b)-27(oski,)-395(\\273e)-396(i)1(c)27(h)-395(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(ab)1(ija\\252o!)-333({)-333(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252a)-333(ju)1(\\273)-334(z)-334(dal)1(e)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zus)-333(Maria!)1(...)]TJ 0 -13.549 Td[(Zmart)28(wia\\252a)-334(z)-333(prze)-1(r)1(a\\273)-1(enia.)]TJ 0 -13.55 Td[({)-333(Przylecia\\252am)-334(p)-27(o)-334(w)28(as)-1(,)-333(b)-27(o)-333(oni)-333(tam)-334(p)1(rosto)-334(p)1(rze)-1(z)-334(r)1(oz)-1(u)1(m)27(u)1(,)-333(p\\252ac)-1(z\\241)-333(ino.)1(..)]TJ 0 -13.549 Td[(Hank)56(a,)-336(c)27(h)28(wyciws)-1(zy)-337(j)1(e)-1(n)1(o)-337(z)-1(ap)1(as)-1(k)28(\\246)-337(na)-336(g\\252)-1(o)28(w)28(\\246)-1(,)-336(w)-337(dyr)1(dy)-337(p)-27(obi)1(e)-1(g\\252a,)-336(lud)1(z)-1(ie)-337(za\\261)-1(,)]TJ -27.879 -13.549 Td[(ry)1(c)27(h\\252o)-333(z)-1(wiedzia)28(ws)-1(zy)-333(s)-1(i\\246)-333(o)-334(n)1(ies)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(u,)-333(g\\246s)-1(to)-333(c)-1(i)1(\\241)-28(gn\\246li)-333(z)-1(a)-333(n)1(i\\241.)]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-383(p)1(ra)28(wda)-382(s)-1(i\\246)-382(ok)55(aza\\252a:)-382(z)-383(c)27(ha\\252u)1(p)28(y)-382(Stac)28(ho)28(w)27(ej)-382(zos)-1(ta\\252y)-382(t)28(ylk)28(o)-382(\\261)-1(cian)28(y)84(,)-382(ino)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej)-375(j)1(e)-1(sz)-1(cze)-376(p)-27(ogi\\246te)-376(i)-374(w)-375(z)-1(iem)-1(i)1(\\246)-376(wb)1(ite)-1(;)-374(dac)27(h)29(u)-375(n)1(ie)-375(b)28(y\\252o)-375(c)-1(a\\252k)1(ie)-1(m,)-375(t)28(yl)1(e)-376(co)-375(jak)1(ie)-1(\\261)]TJ 0 -13.55 Td[(nad)1(\\252am)-1(an)1(e)-460(kr)1(okwie)-460(c)28(h)28(wia\\252y)-459(s)-1(i\\246)-459(nad)-459(sz)-1(cz)-1(y)1(te)-1(m;)-459(k)28(omin)-459(te\\273)-460(si\\246)-460(zw)27(ali)1(\\252)-1(,)-459(\\273e)-460(osta\\252)]TJ 0 -13.549 Td[(z)-413(n)1(iego)-413(n)1(iew)-1(i)1(e)-1(lk)1(i)-412(os)-1(zt)28(yc)27(h)1(,)-412(kiej)-412(ten)-412(z\\241b)-412(wypr)1(\\363)-28(c)27(h)1(nia\\252y)-412(sterc)-1(z\\241cy;)-412(z)-1(i)1(e)-1(mi\\246)-412(dok)28(o\\252a)]TJ 0 -13.549 Td[(za\\261)-1(cie)-1(l)1(a\\252y)-334(p)-27(otargan)1(e)-334(snop)1(ki)-333(a)-334(r)1(up)1(ie)-1(cie)-334(p)-27(otrzas)-1(k)56(an)1(e)-1(.)]TJ 27.879 -13.549 Td[(W)84(e)-1(ron)1(k)56(a)-320(z)-1(a\\261)-320(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-320(p)-27(o)-28(d)-319(\\261)-1(cian)1(\\241)-320(na)-320(ku)1(pi)1(e)-321(zw)27(al)1(on)28(yc)27(h)-319(rze)-1(cz)-1(y)-319(i)-320(ogarn)1(ia)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(r\\246k)28(oma)-334(r)1(oz)-1(p\\252ak)56(an)1(e)-334(dziec)-1(i,)-333(r)1(yc)-1(za\\252a)-334(w)-333(g\\252os)-1(.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(pad\\252a)-406(d)1(o)-406(niej)-406(Han)1(k)56(a,)-406(lud)1(z)-1(i)1(e)-407(te\\273)-407(k)28(o\\252em)-407(ot)1(o)-28(c)-1(zyli)-405(p)-28(o)-28(cies)-1(za)-56(j)1(\\241c)-1(,)-406(al)1(e)-407(n)1(ie)]TJ -27.879 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252a)-334(n)1(ic)-334(i)-333(ni)1(e)-334(widzia\\252a)-333(z)-1(an)1(os)-1(z\\241c)-334(si\\246)-334(coraz)-334(ci\\246)-1(\\273s)-1(zym)-333(s)-1(zlo)-28(c)27(h)1(ani)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-353(O)-353(s)-1(i)1(e)-1(rot)28(y)-353(m)28(y)-353(bi)1(e)-1(d)1(ne)-1(,)-352(s)-1(ierot)28(y)-353(n)1(ie)-1(sz)-1(cz)-1(\\246\\261liw)28(e)-1(!.)1(..)-353({)-353(j\\246c)-1(za\\252a)-354(b)-27(ole\\261)-1(n)1(ie,)-353(\\273)-1(e)-353(nie-)]TJ -27.879 -13.549 Td[(jedn)1(e)-1(j)-332(\\252)-1(zy)-333(s)-1(i)1(\\246)-334(pu)1(s)-1(zc)-1(za\\252y)-333(z)-334(\\273)-1(al)1(u.)]TJ 27.879 -13.549 Td[({)-543(I)-542(gdzie)-543(s)-1(i)1(\\246)-544(p)-27(o)-28(d)1(z)-1(iejem)-543(ni)1(e)-1(sz)-1(cz)-1(\\246\\261)-1(l)1(iw)27(e?)-543(k)56(a)-56(j)-542(g\\252o)28(w)-1(y)-542(pr)1(z)-1(y)1(tuli)1(m)-1(?)-543(k)56(a)-56(j)-542(p)-27(\\363)-56(j)1(-)]TJ -27.879 -13.549 Td[(dziem)-1(?!.)1(..)-333({)-334(k)1(rz)-1(y)1(c)-1(za\\252a)-334(b)-27(ez)-334(pami\\246c)-1(i)-333(p)1(rz)-1(y)1(tula)-55(j\\241c)-334(d)1(z)-1(i)1(e)-1(ci.)]TJ 27.879 -13.55 Td[(A)-392(s)-1(tar)1(y)-392(B)-1(yl)1(ic)-1(a,)-392(sku)1(rc)-1(zon)28(y)-392(i)-392(s)-1(i)1(n)28(y)-392(kiej)-392(tru)1(p,)-392(ob)-27(c)27(h)1(o)-28(dzi\\252)-393(w)28(ci\\241\\273)-393(ru)1(m)-1(o)28(wisk)56(a)-393(i)]TJ -27.879 -13.549 Td[(ku)1(ry)-296(z)-1(gan)1(ia\\252)-297(d)1(o)-297(k)1(up)28(y)84(,)-296(to)-297(kr)1(o)28(w)-1(i)1(e)-297(u)28(wi\\241z)-1(an)1(e)-1(j)-296(d)1(o)-297(tr)1(z)-1(e\\261)-1(n)1(i)-296(k\\252ak)-296(s)-1(ian)1(a)-297(p)-27(o)-28(d)1(rzuca\\252)-297(alb)-27(o)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kuca\\252)-334(p)-27(o)-28(d)-333(\\261c)-1(i)1(an\\241,)-333(gwiz)-1(d)1(a\\252)-334(n)1(a)-333(psa)-334(i)-333(pat)1(rz)-1(a\\252)-333(na)-333(lu)1(dzi)-333(kiej)-333(te)-1(n)-332(g\\252)-1(u)1(pi.)1(..)]TJ 27.879 -13.549 Td[(My)1(\\261)-1(leli,)-333(\\273e)-334(rozum)-333(do)-333(c)-1(n)1(a)-334(straci\\252.)]TJ 0 -13.549 Td[(Naraz)-391(p)-27(orusz)-1(y)1(li)-391(si\\246)-392(wsz)-1(yscy)83(,)-391(r)1(oz)-1(st\\246)-1(p)1(uj)1(\\241c)-392(a)-391(c)28(h)28(yl\\241c)-391(p)-28(ok)28(or)1(nie)-391(do)-391(ziem)-1(i)1(,)-391(b)-28(o)]TJ -27.879 -13.55 Td[(pr)1(ob)-28(oszc)-1(z)-334(an)1(o)-334(n)1(adsz)-1(ed\\252)-333(ni)1(e)-1(sp)-28(o)-27(dzie)-1(w)28(ani)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-228(Am)27(br)1(o\\273)-1(y)-228(d)1(opiero)-228(c)-1(o)-228(p)-27(o)27(wiedzia\\252)-228(m)-1(i)-228(o)-228(t)28(ym)-229(n)1(ie)-1(szc)-1(z\\246)-1(\\261c)-1(i)1(u.)-228(Gd)1(z)-1(ie\\273)-229(St)1(ac)27(ho)28(w)28(a?)]TJ\nET\nendstream\nendobj\n1331 0 obj <<\n/Type /Page\n/Contents 1332 0 R\n/Resources 1330 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1330 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1336 0 obj <<\n/Length 9045      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(416)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Od)1(s)-1(\\252on)1(ili)-333(j\\241,)-333(w)-333(b)-28(ok)-333(si\\246)-334(o)-28(d)1(s)-1(u)29(w)27(a)-55(j\\241c,)-334(al)1(e)-334(ona)-333(ni)1(c)-334(ni)1(e)-334(do)-55(jrza\\252a)-334(p)1(rze)-1(z)-333(p\\252ac)-1(z.)]TJ 0 -13.549 Td[({)-333(W)83(eron)1(k)55(a,)-333(d)1(y\\242)-334(sam)-334(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-333(p)1(rzys)-1(zli!)-333({)-333(s)-1(zepn\\246\\252a)-333(je)-1(j)-332(Hank)56(a.)]TJ 0 -13.549 Td[(Ze)-1(r)1(w)27(a\\252a)-278(s)-1(i)1(\\246)-279(w)-1(t)1(e)-1(d)1(y)83(,)-278(a)-279(sp)-27(os)-1(tr)1(z)-1(eg\\252s)-1(zy)-279(k)1(s)-1(i\\246dza)-278(prze)-1(d)-278(sob\\241)-278(ry)1(m)-1(n)1(\\246)-1(\\252a)-278(m)27(u)-278(do)-278(n\\363g)]TJ -27.879 -13.549 Td[(wybu)1(c)27(h)1(a)-56(j)1(\\241c)-334(p\\252acz)-1(em)-334(jesz)-1(cz)-1(e)-334(j)1(\\246)-1(k)1(liws)-1(zym)-333(i)-334(b)1(arze)-1(j)-333(za)28(w)27(o)-28(d)1(z)-1(\\241cym.)]TJ 27.879 -13.549 Td[({)-358(Us)-1(p)-27(ok)28(\\363)-56(j)1(c)-1(ie)-359(si\\246,)-359(n)1(ie)-359(p)1(\\252)-1(aczc)-1(ie!..)1(.)-359(c\\363\\273)-359(p)-28(or)1(adzi\\242?)-1(.)1(..)-358(w)27(ola)-358(B)-1(o\\273a...)-358(n)1(o,)-359(m\\363)28(w)-1(i)1(\\246)-1(:)]TJ -27.879 -13.55 Td[(w)28(ola)-334(Bo\\273a!)-333({)-334(p)-27(o)28(w)-1(t)1(\\363rz)-1(y)1(\\252)-1(,)-333(al)1(e)-334(tak)-333(wz)-1(ru)1(s)-1(zon)28(y)84(,)-333(\\273)-1(e)-334(sam)-334(u)1(krad)1(kiem)-334(\\252z)-1(y)-333(o)-27(c)-1(iera\\252.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(\\273e)-1(b)1(ry)-333(p)1(rz)-1(y)1(jd)1(z)-1(ie)-333(nam)-334(i\\261\\242,)-334(n)1(a)-333(\\273)-1(ebry)84(,)-333(w)-334(ca\\252y)-333(\\261)-1(wiat!)]TJ 0 -13.549 Td[({)-301(No,)-300(nie)-301(kr)1(z)-1(yczc)-1(ie,)-301(d)1(obrzy)-301(l)1(ud)1(z)-1(ie)-301(n)1(ie)-301(p)-28(ozw)27(ol)1(\\241)-301(w)27(am)-301(zgin\\241\\242)-301(i)-300(P)28(an)-301(B\\363g)-301(w)28(as)]TJ -27.879 -13.549 Td[(w)-334(czym)-334(in)1(n)28(ym)-333(z)-1(ap)-27(om)-1(o\\273e)-1(.)-333(Ni)1(e)-334(p)-28(ot)1(\\252)-1(u)1(k\\252o)-333(w)27(as?)-334(co?)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(jesz)-1(cz)-1(e)-334(\\252ask)56(a)27(w!)]TJ 0 -13.549 Td[({)-333(C)-1(u)1(d)-333(si\\246)-334(sta\\252)-334(p)1(ra)28(wdziw)-1(y)84(.)]TJ 0 -13.55 Td[({)-333(Mog\\252o)-333(c)-1(o)-333(do)-333(jedn)1(e)-1(go)-333(wydu)1(s)-1(i)1(\\242)-1(,)-333(jak)-333(te)-333(g\\241s)-1(ki)-333(P)1(\\252os)-1(zk)28(o)27(w)28(ej.)]TJ 0 -13.549 Td[({)-333(\\233e)-334(i)-333(\\273)-1(yw)28(a)-333(noga)-333(m)-1(og\\252a)-333(ni)1(e)-334(wyj\\261\\242)-1(!)-333({)-333(p)-27(o)27(wiad)1(a\\252y)-333(jedna)-333(pr)1(z)-1(ez)-334(d)1(rug\\241.)]TJ 0 -13.549 Td[({)-333(A)-334(w)-333(in)28(w)28(e)-1(n)29(tarzu)-333(m)-1(acie)-334(j)1(ak)55(\\241)-333(strat\\246?)-334(co?)-334(W)-333(in)29(w)27(en)28(tarzu,)-333(m\\363)28(w)-1(i)1(\\246)-1(!)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(jak)28(o\\261)-333(ustrze)-1(g\\252,)-333(w)-334(sieni)-333(b)28(y\\252o)-333(ws)-1(zystk)28(o,)-333(a)-334(on)1(a)-334(w)-333(c)-1(a\\252o\\261c)-1(i)-333(osta\\252a.)]TJ 0 -13.549 Td[(Ksi\\241dz)-404(za\\273)-1(yw)28(a\\252)-404(tabak)28(\\246)-404(rozgl\\241da)-55(j\\241c)-404(\\252z)-1(a)28(wym)-1(i)-403(o)-28(c)-1(zyma)-404(t\\246)-405(k)1(up)-27(\\246)-405(r)1(umo)27(wisk,)]TJ -27.879 -13.55 Td[(kt\\363r)1(a)-241(jeno)-241(os)-1(t)1(a\\252)-1(a)-241(z)-241(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-241(b)-28(o)-27(\\242)-242(d)1(ac)27(h)-241(si\\246)-241(z)-1(w)28(ali\\252)-241(do)-241(cna)-241(i)-241(r)1(az)-1(em)-242(z)-241(s)-1(u)1(\\014tem)-242(r)1(un)1(\\241\\252)-242(d)1(o)]TJ 0 -13.549 Td[(\\261ro)-28(d)1(k)55(a,)-339(\\273)-1(e)-340(p)1(rze)-1(z)-340(wygn)1(ie)-1(cion)1(e)-340(s)-1(zyb)28(y)-339(w)-1(i)1(da\\242)-340(b)28(y\\252o)-339(t)28(ylk)28(o)-340(k)1(up)28(y)-339(p)-27(o\\252)-1(aman)1(e)-1(go)-340(d)1(rze)-1(w)28(a)]TJ 0 -13.549 Td[(i)-333(pr)1(z)-1(egni\\252ej)-333(s\\252)-1(om)28(y)-333(z)-334(p)-27(os)-1(zyc)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-333(Macie)-334(sz)-1(cz)-1(\\246\\261)-1(cie,)-333(b)-28(o)-333(mo)-1(g\\252o)-333(ws)-1(zystkic)28(h)-333(przygn)1(ie)-1(\\261\\242...)-333(no,)-333(n)1(o!)]TJ 0 -13.549 Td[({)-267(A)-267(n)1(iec)27(h)28(b)28(y)-266(pr)1(z)-1(ygn)1(iot\\252o,)-267(n)1(iec)27(h)28(b)28(y)-266(nas)-267(ws)-1(zystkic)27(h)-266(zabi\\252o,)-266(to)-267(ju)1(\\273)-268(b)29(ym)-267(na)-267(ten)]TJ -27.879 -13.55 Td[(up)1(adek)-268(n)1(ie)-268(pat)1(rz)-1(a\\252a,)-267(to)-268(j)1(u\\273)-268(b)28(ym)-268(t)1(e)-1(go)-268(b)1(iedo)28(w)27(an)1(ia)-268(i)-267(marnacji)-267(ni)1(e)-268(do\\273)-1(y)1(\\252a...)-267(O)-268(Jez)-1(u)]TJ 0 -13.549 Td[(m\\363)-56(j)1(,)-328(Jez)-1(u)1(!)-327(B)-1(ez)-328(ni)1(c)-1(ze)-1(go)-327(os)-1(ta\\252am)-328(z)-327(t)27(y)1(m)-1(i)-327(sie)-1(r)1(otam)-1(i)1(...)-327(A)-328(k)56(a)-55(j)-328(si\\246)-328(teraz)-328(p)-27(o)-28(d)1(z)-1(iej\\246?)-328(co)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zn\\246?)-334({)-333(zarycz)-1(a\\252a)-333(z)-1(n)1(o)28(w)-1(u)-333(d)1(r\\241c)-334(si\\246)-334(za)-333(w)-1(\\252osy)-333(rozpacz)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-333(roz\\252)-1(o\\273y\\252)-333(b)-28(ezradn)1(ie)-334(r\\246ce)-334(pr)1(z)-1(es)-1(t\\246pu)1(j\\241c)-334(z)-333(nogi)-333(na)-333(nog\\246.)]TJ 0 -13.549 Td[({)-315(Susze)-1(j)-315(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(!)-315({)-316(sz)-1(epn)1(\\246)-1(\\252a)-315(kt\\363r)1(a\\261)-316(nie\\261)-1(mia\\252o)-315(p)-28(o)-27(dsu)28(w)27(a)-55(j\\241c)-316(m)28(u)-315(k)55(a)28(w)28(a\\252)-316(d)1(e)-1(ski,)]TJ -27.879 -13.55 Td[(b)-27(o)-305(w)-306(b)1(\\252o)-28(c)-1(i)1(e)-306(p)-27(o)-305(k)28(os)-1(tk)1(i)-305(s)-1(to)-55(ja\\252,)-305(p)1(rze)-1(st\\241)-28(p)1(i\\252)-305(na)-305(ni)1(\\241)-305(i)-305(z)-1(a\\273yw)28(a)-56(j)1(\\241c)-306(tab)1(aki)-305(rozm)27(y\\261la\\252,)-305(co)]TJ 0 -13.549 Td[(b)28(y)-333(tu)-333(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-334(n)1(a)-334(p)-27(o)-28(cies)-1(ze)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-346(za)-56(j)1(\\246)-1(\\252a)-346(si\\246)-347(gor)1(liwie)-346(s)-1(i)1(os)-1(tr)1(\\241)-346(i)-346(o)-56(j)1(c)-1(em)-1(,)-345(a)-346(res)-1(zta)-346(c)-1(i)1(\\273)-1(b)1(i\\252a)-346(s)-1(i\\246)-346(pr)1(z)-1(y)-345(dobr)1(o-)]TJ -27.879 -13.549 Td[(dzieju)-333(wlepi)1(a)-56(j\\241c)-333(w)-334(ni)1(e)-1(go)-333(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ze)-259(wsi)-258(nadc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o)-258(coraz)-259(wi\\246c)-1(ej)-258(k)28(ob)1(ie)-1(t)-258(i)-258(d)1(z)-1(ieci,)-258(\\273)-1(e)-258(ino)-258(b\\252o)-27(c)27(k)28(o)-258(c)27(hl)1(up)1(a\\252)-1(o)-258(p)-27(o)-28(d)]TJ -27.879 -13.55 Td[(trepami,)-230(a)-230(p)1(rzyc)-1(i)1(s)-1(zone,)-230(trw)28(o\\273)-1(li)1(w)27(e)-230(g\\252os)-1(y)-230(p)-27(os)-1(zem)-1(ry)1(w)27(a\\252y)-230(w)-230(z)-1(wi\\246ksz)-1(a)-55(j\\241ce)-1(j)-229(s)-1(i\\246)-230(kup)1(ie,)]TJ 0 -13.549 Td[(to)-333(p\\252acz)-334(d)1(z)-1(iec)-1(i)1(\\253ski)-333(alb)-27(o)-334(W)84(eroncz)-1(y)1(ne,)-333(s)-1(\\252abn)1(\\241c)-1(e)-333(ju)1(\\273)-334(sz)-1(lo)-27(c)27(han)1(ie)-1(,)-333(za\\261)-334(n)1(a)-333(t)27(w)28(arzac)27(h)1(,)]TJ 0 -13.549 Td[(ledwie)-386(widn)28(y)1(c)27(h)-386(sp)-27(o)-28(d)-386(n)1(as)-1(u)1(ni\\246t)28(yc)27(h)-385(na)-386(cz)-1(o\\252o)-386(zapase)-1(k,)-385(\\273)-1(al)-386(si\\246)-386(tai\\252)-386(i)-386(le\\273)-1(a\\252a)-386(tr)1(os)-1(k)56(a)]TJ 0 -13.549 Td[(c)27(h)1(m)27(u)1(rna)-483(j)1(ak)28(o)-483(to)-483(ni)1(e)-1(b)-27(o)-483(wis)-1(z\\241c)-1(e)-483(nad)-482(g\\252o)27(w)28(ami,)-483(a)-483(ni)1(e)-484(p)-27(o)-483(jedn)29(ym)-484(p)-27(oliczku)-483(\\252zy)]TJ 0 -13.549 Td[(sk)55(ap)29(yw)27(a\\252y)-333(gor\\241ce)-1(.)1(..)]TJ 27.879 -13.549 Td[(Ale)-399(w)-398(s)-1(ob)1(ie)-399(b)28(y)1(li)-398(w)-1(sz)-1(y)1(s)-1(cy)-398(s)-1(p)-27(ok)28(o)-56(j)1(ni,)-398(z)-399(p)-27(o)-28(d)1(dan)1(ie)-1(m)-398(s)-1(i\\246)-398(z)-1(n)1(os)-1(z\\241c)-399(te)-1(n)-398(d)1(opu)1(s)-1(t)]TJ -27.879 -13.55 Td[(Bo\\273)-1(y)84(.)-394(Jak\\273)-1(e?)-395(gd)1(yb)28(y)-394(tak)-394(ku)1(\\273)-1(d)1(e)-1(n)-394(cz\\252)-1(o)28(wiek)-394(jes)-1(zc)-1(ze)-395(cudze)-395(b)1(ie)-1(d)1(y)-394(bra\\252)-394(w)-395(se)-1(r)1(c)-1(e,)-394(to)]TJ 0 -13.549 Td[(b)28(yc)28(h)-405(m)27(u)-405(na)-406(sw)28(o)-56(je)-406(mo)-28(cy)-406(n)1(ie)-406(s)-1(t)1(arc)-1(zy\\252o,)-405(a)-406(pr)1(z)-1(y)-405(t)28(ym:)-406(o)-28(d)1(rob)1(i)-406(to,)-405(kiej)-406(si\\246)-406(j)1(u\\273)-406(z)-1(\\252e)]TJ 0 -13.549 Td[(stanie?)-334(zap)-27(obie\\273)-1(y?..)1(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-333(naraz)-333(przystan\\241\\252)-333(do)-333(W)83(eron)1(ki)-333(i)-333(rze)-1(k\\252:)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(a)-56(j)1(pierw)-333(to)-334(P)29(an)28(u)-333(Bogu)-333(p)-28(o)28(win)1(ni\\261c)-1(i)1(e)-334(p)-28(o)-27(dzi\\246)-1(k)28(o)28(w)28(a\\242)-334(z)-1(a)-333(o)-28(calenie...)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)1(ra)28(wda)-333(i)-333(c)27(h)1(o)-28(\\242)-1(b)28(y)-333(p)1(rosi\\246)-334(p)1(rz)-1(edam,)-333(a)-333(na)-333(m)-1(sz\\246)-334(z)-1(an)1(ie)-1(s\\246...)]TJ 0 -13.549 Td[({)-299(Nie)-300(p)-27(otr)1(z)-1(eba,)-299(sc)27(h)1(o)27(w)28(a)-56(j)1(c)-1(ie)-299(pi)1(e)-1(n)1(i\\241dze)-300(n)1(a)-300(p)1(iln)1(iejsz)-1(e)-300(p)-27(otr)1(z)-1(eb)28(y)83(,)-299(j)1(a)-299(i)-299(tak)-299(zaraz)]TJ\nET\nendstream\nendobj\n1335 0 obj <<\n/Type /Page\n/Contents 1336 0 R\n/Resources 1334 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1334 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1339 0 obj <<\n/Length 9152      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(417)]TJ -358.232 -35.866 Td[(p)-27(o)-334(\\261wi\\246)-1(t)1(ac)27(h)-333(ms)-1(z\\246)-334(o)-28(d)1(pra)28(wi\\246)-334(n)1(a)-334(w)28(asz)-1(\\241)-333(in)28(tencj\\246.)]TJ 27.879 -13.549 Td[(Uca\\252)-1(o)28(w)28(a\\252a)-268(m)28(u)-267(gor\\241co)-268(r)1(\\246)-1(ce)-268(i)-267(z)-1(a)-267(nogi)-267(ob\\252ap)1(i\\252a)-268(w)-267(s)-1(erd)1(e)-1(cz)-1(n)29(ym)-268(dzi\\246k)28(c)-1(zyn)1(ie)-1(n)1(iu)]TJ -27.879 -13.549 Td[(za)-299(dob)1(ro\\261\\242)-300(i)-298(m)-1(i)1(\\252os)-1(ierd)1(z)-1(ie,)-299(on)-298(za\\261)-300(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-299(j\\241)-298(b\\252ogos\\252)-1(a)28(wi\\241cy)-299(i)-298(z)-1(a)-299(g\\252o)28(w)28(\\246)-300(\\261cis)-1(n)1(\\241\\252,)]TJ 0 -13.549 Td[(a)-282(dzie)-1(ci)-282(tul\\241ce)-283(m)27(u)-282(si\\246)-283(z)-283(p)1(iskiem)-283(do)-282(k)28(olan)-282(pr)1(z)-1(yt)1(uli\\252)-282(p)-28(o)-27(c)-1(zc)-1(i)1(w)-1(i)1(e)-283(i)-283(k)1(ie)-1(j)-282(ten)-282(na)-55(jl)1(e)-1(p)1(s)-1(zy)]TJ 0 -13.549 Td[(o)-28(ciec)-334(p)-28(op)1(ies)-1(zc)-1(za\\252...)]TJ 27.879 -13.55 Td[({)-455(T)28(ylk)28(o)-455(du)1(fn)1(o\\261)-1(ci)-455(ni)1(e)-456(tr)1(a\\242)-1(cie,)-455(a)-455(w)-1(szys)-1(tk)28(o)-455(si\\246)-455(na)-455(d)1(obre)-455(obr)1(\\363)-28(c)-1(i)1(.)-455(Jak\\273e)-456(to)]TJ -27.879 -13.549 Td[(b)28(y\\252o?)]TJ 27.879 -13.549 Td[({)-297(J)1(ak?)-297(P)28(osz)-1(l)1(im)-297(s)-1(p)1(a\\242)-297(z)-1(ar)1(ute\\253k)28(o)-296(z)-297(w)-1(i)1(e)-1(cz)-1(or)1(a,)-297(b)-27(o)-297(gazu)-296(nie)-297(b)29(y\\252o)-297(w)-297(l)1(am)-1(p)-27(ce)-1(,)-296(a)-297(i)]TJ -27.879 -13.549 Td[(dr)1(e)-1(w)-332(br)1(ak)28(o)27(w)28(a\\252o)-333(n)1(a)-332(opa\\252.)-332(Wia\\252o)-332(ju)1(\\261)-1(ci)-332(s)-1(ieln)1(ie)-1(,)-332(a\\273)-333(c)28(ha\\252u)1(pa)-332(trze)-1(sz)-1(cz)-1(a\\252a,)-332(ale)-332(s)-1(i\\246)-332(nic)]TJ 0 -13.549 Td[(ni)1(e)-256(b)-27(o)-56(j)1(a\\252am)-1(,)-255(b)-27(o)-255(n)1(ie)-256(tak)1(ie)-256(wic)28(hr)1(y)-255(przetrzym)-1(a\\252a.)-254(Nie)-256(spa\\252am)-255(z)-1(r)1(az)-1(u)1(,)-255(tak)-255(cugi)-255(p)1(rze)-1(z)]TJ 0 -13.549 Td[(izb)-28(\\246)-411(wia\\252y)83(,)-410(ale)-412(m)28(usia\\252am)-412(p)-27(otem)-412(zadr)1(z)-1(em)-1(a\\242.)-411(A\\273)-411(tu)-411(n)1(araz)-411(kiej)-411(ni)1(e)-412(h)28(u)1(kni)1(e)-1(,)-411(k)1(ie)-1(j)]TJ 0 -13.55 Td[(si\\246)-324(nie)-324(zatrz\\246s)-1(ie,)-323(kiej)-324(cosik)-324(n)1(ie)-324(ry)1(pn)1(ie)-324(w)-324(\\261c)-1(ian)29(y!)-323(Je)-1(zus!...)-323(m)28(y\\261)-1(la\\252am,)-323(\\273)-1(e)-324(wsz)-1(ystek)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-298(si\\246)-298(p)1(rze)-1(w)28(ala.)-297(Sk)28(o)-28(cz)-1(y)1(\\252am)-298(z)-298(\\252\\363\\273k)55(a)-297(i)-297(ledwiem)-298(c)-1(o)-297(dziec)-1(i)-297(zgarn)1(\\246)-1(\\252a)-297(w)-298(nar)1(\\246)-1(cz)-1(e,)-297(a)]TJ 0 -13.549 Td[(tu)-285(ju)1(\\273)-287(wsz)-1(ystk)28(o)-286(tr)1(z)-1(es)-1(zc)-1(zy)84(,)-286(\\252am)-1(i)1(e)-287(si\\246,)-286(n)1(a)-286(g\\252o)27(w)28(\\246)-286(le)-1(ci..)1(.)-286(ledwiem)-286(c)-1(o)-286(d)1(o)-286(sie)-1(n)1(i)-286(zd\\241\\273y\\252a)]TJ 0 -13.549 Td[(i)-304(c)27(ha\\252u)1(pa)-305(si\\246)-305(za)-305(mn\\241)-305(zapad)1(\\252a...)-304(Je)-1(sz)-1(cz)-1(em)-305(i)-305(m)28(y\\261li)-305(n)1(ie)-305(z)-1(ebr)1(a\\252a,)-305(ki)1(e)-1(j)-304(i)-305(k)28(omin)-304(ob)1(ali\\252)]TJ 0 -13.549 Td[(si\\246)-251(z)-250(h)28(uk)1(ie)-1(m...)-250(Na)-250(d)1(w)27(or)1(z)-1(e)-250(z)-1(a\\261)-250(tak)-250(wia\\252o,)-250(\\273)-1(e)-250(na)-250(n)1(ogac)27(h)-250(tr)1(udn)1(o)-250(b)28(y\\252o)-250(ustoi\\242)-250(i)-250(wiater)]TJ 0 -13.55 Td[(roznosi\\252)-361(p)-28(osz)-1(ycie.)-361(A)-362(tu)-361(n)1(o)-28(c)-1(,)-361(d)1(o)-362(wsi)-362(k)56(a)28(w)27(a\\252)-361(dr)1(ogi,)-361(w)-1(szys)-1(cy)-361(\\261)-1(p)1(i\\241)-362(i)-361(an)1(i)-362(sp)-27(os)-1(\\363b)1(,)-362(b)29(y)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)1(i)-363(p)-27(os)-1(\\252ysz)-1(eli.)1(..)-363(Do)-362(do\\252u)-362(z)-1(iem)-1(n)1(iacz)-1(an)1(e)-1(go)-363(w)28(ci\\241)-28(gn\\246\\252am)-363(s)-1(i\\246)-363(z)-363(dzie\\242)-1(mi)-363(i)-362(tak)-363(d)1(o)]TJ 0 -13.549 Td[(\\261w)-1(i)1(tania)-333(pr)1(z)-1(es)-1(i)1(e)-1(d)1(z)-1(ielim.)]TJ 27.879 -13.549 Td[({)-333(Opatr)1(z)-1(n)1(o\\261)-1(\\242)-333(b)-28(osk)55(a)-333(cz)-1(u)28(w)28(a\\252a)-333(nad)-333(w)28(am)-1(i)1(.)-334(Czyja\\273)-333(to)-334(k)1(ro)28(w)27(a)-333(pr)1(z)-1(y)-333(tr)1(z)-1(e\\261)-1(n)1(i?)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(mo)-56(j)1(a)-334(t)1(o)-1(,)-333(mo)-56(j)1(a)-333(\\273)-1(ywicielk)56(a)-334(j)1(e)-1(d)1(yna!)]TJ 0 -13.55 Td[({)-333(Mlec)-1(zna)-333(b)-27(\\246)-1(d)1(z)-1(ie,)-333(grzbiet)-333(jak)-333(b)-27(e)-1(lk)56(a,)-333(k\\252\\246b)28(y)-333(wys)-1(ok)1(ie)-1(.)1(..)-333(C)-1(i)1(e)-1(ln)1(a?)]TJ 0 -13.549 Td[({)-333(Le)-1(d)1(a)-334(d)1(z)-1(i)1(e)-1(\\253)-333(p)-27(o)28(w)-1(i)1(nna)-333(si\\246)-334(o)-28(cieli\\242.)]TJ 0 -13.549 Td[({)-495(P)1(rzypr)1(o)27(w)28(ad\\271cie)-495(j\\241)-494(do)-495(mo)-56(j)1(e)-1(j)-494(ob)-27(ory)84(,)-495(zmie)-1(\\261ci)-495(si\\246)-1(,)-494(d)1(o)-495(tra)28(wy)-494(m)-1(o\\273e)-495(tam)]TJ -27.879 -13.549 Td[(p)-27(os)-1(ta\\242.,.)-333(Ale)-333(gdzie)-334(si\\246)-334(wy)-333(p)-28(o)-27(dzie)-1(j)1(e)-1(cie?)-1(.)1(.)-333(m)-1(\\363)28(wi\\246)-1(:)-333(gd)1(z)-1(i)1(e)-1(?...)]TJ 27.879 -13.549 Td[(Naraz)-423(pies)-424(j)1(aki\\261)-424(zacz)-1(\\241\\252)-423(s)-1(zc)-1(ze)-1(k)56(a\\242)-423(i)-423(na)-423(lud)1(z)-1(i)-423(r)1(z)-1(u)1(c)-1(a\\242)-423(s)-1(i\\246)-423(z)-1(a)-55(jad)1(le)-1(,)-423(a)-423(ki)1(e)-1(j)-423(go)]TJ -27.879 -13.55 Td[(o)-28(d)1(e)-1(gn)1(ali,)-333(w)-334(p)1(rogu)-333(u)1(s)-1(iad)1(\\252)-334(i)-333(p)1(rze)-1(r)1(a\\271)-1(li)1(w)-1(i)1(e)-334(z)-1(a)28(wy\\252.)]TJ 27.879 -13.549 Td[({)-256(W\\261c)-1(iek\\252)-256(si\\246)-257(cz)-1(y)-255(c)-1(o?)-256(c)-1(zyj)-256(t)1(o?)-257({)-256(p)28(y)1(ta\\252)-257(k)1(s)-1(i\\241d)1(z)-257(c)28(hron)1(i\\241c)-256(s)-1(i\\246)-256(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-256(z)-1(a)-256(bab)29(y)83(.)]TJ 0 -13.549 Td[({)-351(Dy\\242)-351(to)-351(Kru)1(c)-1(ze)-1(k)1(,)-351(nasz)-1(.)1(..)-351(ju)1(\\261)-1(ci,)-351(\\273al)-351(m)27(u)-350(s)-1(zk)28(o)-28(dy)84(...)-350(c)-1(zuj)1(\\241c)-1(y)-351(p)1(ies)-1(ek...)-351({)-351(j)1(\\241k)56(a\\252)]TJ -27.879 -13.549 Td[(Bylica)-333(id\\241c)-334(go)-333(pr)1(z)-1(y)1(c)-1(isz)-1(a\\242.)]TJ 27.879 -13.549 Td[(A)-368(ksi\\241d)1(z)-369(p)-27(o)-28(c)28(h)28(w)27(al)1(i\\252)-368(B)-1(oga)-367(na)-368(p)-27(o\\273)-1(egnan)1(ie,)-368(skin\\241\\252)-368(n)1(a)-368(Si)1(k)28(orzyn\\246,)-368(b)28(y)-367(s)-1(z\\252a)-368(z)-1(a)]TJ -27.879 -13.55 Td[(ni)1(m)-1(,)-350(i)-350(wyci\\241)-28(gn)1(\\241)28(w)-1(szy)-350(obie)-350(r\\246c)-1(e)-351(d)1(o)-350(k)28(obiet,)-350(cis)-1(n)1(\\241c)-1(y)1(c)27(h)-350(si\\246)-351(j)1(e)-351(ca\\252o)28(w)27(a\\242,)-350(o)-28(dc)28(ho)-28(d)1(z)-1(i)1(\\252)-351(z)]TJ 0 -13.549 Td[(w)28(olna.)]TJ 27.879 -13.549 Td[(Wid)1(z)-1(i)1(e)-1(li)1(,)-333(\\273)-1(e)-334(d)1(\\252ugo)-333(z)-334(ni)1(\\241)-334(n)1(a)-334(d)1(ro)-28(d)1(z)-1(e)-333(o)-334(cz)-1(y)1(m)-1(\\261)-334(r)1(oz)-1(p)1(ra)28(wia\\252.)]TJ 0 -13.549 Td[(Nar\\363)-27(d)-308(z)-1(a\\261)-308(bab)1(s)-1(ki,)-308(u)1(gw)27(ar)1(z)-1(y)1(w)-1(sz)-1(y)-308(si\\246)-308(\\271)-1(d)1(z)-1(iebk)28(o)-308(i)-308(n)1(au\\273)-1(al)1(a)27(wsz)-1(y)-308(n)1(ad)-308(p)-27(okrzyw-)]TJ -27.879 -13.549 Td[(dzon\\241,)-329(j\\241\\252)-329(s)-1(i\\246)-330(rozc)27(h)1(o)-28(dzi\\242)-330(d)1(o\\261)-1(\\242)-330(\\261)-1(p)1(ies)-1(znie,)-330(p)1(rzyp)-27(om)-1(i)1(na)-56(j)1(\\241c)-330(s)-1(ob)1(ie)-330(z)-330(nag\\252a)-330(o)-329(\\261)-1(n)1(iada-)]TJ 0 -13.549 Td[(ni)1(ac)27(h)-333(i)-333(pi)1(ln)28(yc)28(h)-333(rob)-27(otac)27(h)1(.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)-395(ru)1(mo)27(wisku)-395(osta\\252a)-396(j)1(e)-1(n)1(o)-396(sam)-1(a)-395(ro)-28(d)1(z)-1(i)1(na)-395(i)-396(w\\252a\\261nie)-396(medyto)28(w)28(ali,)-395(jak)-395(b)28(y)]TJ -27.879 -13.549 Td[(tu)-333(co)-334(n)1(ieb\\241d\\271)-333(w)-1(y)1(dob)28(y)1(\\242)-334(z)-334(za)27(w)28(alon)1(e)-1(j)-333(izb)28(y)84(,)-333(gdy)-333(p)-27(o)27(wr\\363)-27(c)-1(i\\252a)-333(zadysz)-1(an)1(a)-334(S)1(ik)28(orzyn)1(a.)]TJ 27.879 -13.549 Td[({)-247(A)-247(to)-247(do)-247(mnie)-247(s)-1(i\\246)-247(pr)1(z)-1(enie\\261c)-1(ie,)-247(na)-247(d)1(rug\\241)-247(stron)1(\\246)-1(,)-247(k)56(a)-55(j)-247(Ro)-28(c)27(h)1(o)-247(dzie)-1(ci)-247(nau)1(c)-1(za\\252...)]TJ -27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-224(k)28(omin)1(a)-224(b)1(rakn)1(ie)-1(,)-223(ale)-224(ws)-1(ta)28(wicie)-224(c)-1(y)1(ganek)-224(i)-223(w)27(a)-55(ju)-223(wystarc)-1(zy)84(...)-223({)-224(rze)-1(k)1(\\252)-1(a)-223(pr)1(\\246)-1(d)1(k)28(o.)]TJ 27.879 -13.549 Td[({)-333(Moi\\261c)-1(i)1(e)-1(,)-333(a)-333(c)-1(zym\\273)-1(e)-334(to)-333(w)28(am)-1(a)-333(za)-334(k)28(omorn)1(e)-334(z)-1(ap)1(\\252ac)-1(\\246!)]TJ 0 -13.55 Td[({)-351(Nie)-1(c)28(h)-351(w)27(as)-352(o)-351(to)-351(g\\252o)27(w)28(a)-352(n)1(ie)-352(b)-27(oli.)-351(Zna)-55(jd)1(z)-1(i)1(e)-1(cie)-352(jak)1(i)-352(gr)1(os)-1(z,)-351(z)-1(ap)1(\\252ac)-1(icie,)-352(a)-351(ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(to)-366(pr)1(z)-1(y)-366(r)1(ob)-28(o)-27(c)-1(ie)-366(jaki)1(e)-1(j)-365(p)-28(omo\\273)-1(ecie)-1(,)-366(al)1(b)-28(o)-366(p)1(ros)-1(t)1(o)-367(i)-365(z)-1(a)-366(B\\363g)-367(zap\\252a\\242)-366(s)-1(i)1(e)-1(d)1(\\271)-1(cie)-1(.)-365(Pustk)56(\\241)]TJ\nET\nendstream\nendobj\n1338 0 obj <<\n/Type /Page\n/Contents 1339 0 R\n/Resources 1337 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1337 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1342 0 obj <<\n/Length 8777      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(418)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-279(ta)-278(izba)-279(stoi!)-278(Z)-279(d)1(usz)-1(y)-278(s)-1(erca)-279(p)1(rosz)-1(\\246,)-279(a)-278(ksi\\241dz)-279(ten)-278(pap)1(ie)-1(r)1(e)-1(k)-278(w)28(am)-1(a)-278(przysy\\252a)]TJ 0 -13.549 Td[(na)-333(p)1(ie)-1(r)1(w)-1(sze)-334(ws)-1(p)-27(om)-1(o\\273e)-1(n)1(ie!)]TJ 27.879 -13.549 Td[(Roz)-1(win)1(\\246)-1(\\252a)-333(jej)-333(p)1(rz)-1(ed)-333(o)-28(cz)-1(y)1(m)-1(a)-333(trzy)-333(ru)1(ble.)]TJ 0 -13.549 Td[({)-260(Niec)27(h)-260(m)27(u)-259(B)-1(\\363g)-260(da)-260(zdr)1(o)27(wie!)-260({)-260(w)-1(y)1(krzykn)1(\\246)-1(\\252a)-260(W)83(eron)1(k)55(a)-260(ca\\252)-1(u)1(j\\241c)-260(te)-1(n)-260(p)1(api)1(e)-1(rek.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ciwy)83(,)-333(\\273e)-334(dr)1(ugiego)-333(nie)-334(n)1(ale\\271)-1(\\242!)-333({)-334(d)1(o)-28(da\\252a)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-407(Kr)1(o)27(wie)-407(na)-407(k)1(s)-1(i\\246\\273)-1(ej)-407(ob)-27(orze)-407(te)-1(\\273)-407(b)-28(\\246dzie)-407(niezgorz)-1(ej!)-406(ju)1(\\261)-1(ci...)-406({)-407(s)-1(tar)1(y)-407(p)-28(o)28(wie-)]TJ -27.879 -13.549 Td[(dzia\\252.)]TJ 27.879 -13.549 Td[(I)-333(z)-1(araz)-333(z)-1(acz)-1(\\246\\252y)-333(s)-1(i\\246)-333(przenos)-1(i)1(n)28(y)83(.)]TJ 0 -13.549 Td[(Cha\\252u)1(pa)-389(S)1(ik)28(or\\363)28(w)-389(s)-1(t)1(a\\252)-1(a)-388(tu\\273)-389(pr)1(z)-1(y)-388(dr\\363\\273ce)-1(,)-388(na)-389(skr\\246c)-1(i)1(e)-390(d)1(o)-389(ws)-1(i,)-388(mo\\273)-1(e)-389(o)-389(jak)1(ie)]TJ -27.879 -13.549 Td[(dw)28(a)-267(s)-1(ta)-55(jan)1(ia)-267(o)-28(d)-267(S)1(tac)27(h\\363)28(w,)-267(zaraz)-268(te\\273)-268(j)1(\\246)-1(li)-267(tam)-267(pr)1(z)-1(enosi\\242)-268(p)-27(ozos)-1(ta\\252\\241)-267(c)27(h)28(u)1(dob)-27(\\246)-268(i)-267(co)-267(s)-1(i\\246)]TJ 0 -13.549 Td[(jeno)-349(p)-27(orad)1(z)-1(i\\252o)-349(nap)1(r\\246dce)-350(wydosta\\242)-350(sp)-28(o)-28(d)-348(rumo)28(wis)-1(k)-349(ze)-350(statk)28(\\363)28(w)-350(i)-349(p)-28(o\\261cie)-1(l)1(i.)-349(Hank)56(a)]TJ 0 -13.55 Td[(a\\273)-352(p)1(arobk)56(a)-351(s)-1(w)28(o)-56(j)1(e)-1(go)-351(p)1(rz)-1(y)1(z)-1(w)28(a\\252a)-352(d)1(o)-352(p)-27(omo)-28(cy)83(,)-351(a)-351(w)-352(k)28(o\\253)1(c)-1(u)-351(i)-351(Ro)-28(c)28(ho)-351(nad)1(s)-1(ze)-1(d)1(\\252,)-351(ra\\271)-1(n)1(o)]TJ 0 -13.549 Td[(zabiera)-55(j\\241c)-366(si\\246)-366(d)1(o)-365(p)-28(omagan)1(ia,)-365(\\273)-1(e)-365(nim)-365(pr)1(z)-1(edzw)27(on)1(ili)-365(p)-27(o\\252ud)1(nie,)-365(W)83(eron)1(k)55(a)-365(j)1(u\\273)-365(b)28(y\\252a)]TJ 0 -13.549 Td[(osie)-1(d)1(lona)-333(n)1(a)-334(n)1(o)27(wym)-333(p)-28(omies)-1(zk)56(aniu)1(.)]TJ 27.879 -13.549 Td[({)-279(Komorni)1(c)-1(a)-279(teraz)-280(j)1(e)-1(stem)-1(,)-279(d)1(z)-1(iad)1(\\363)28(w)-1(k)56(a)-279(pr)1(a)28(w)-1(i)1(e)-1(!)-279(Cz)-1(t)1(e)-1(ry)-279(k)56(\\241t)28(y)-279(i)-279(p)1(ie)-1(c)-279(pi\\241t)28(y)84(,)-279(ani)]TJ -27.879 -13.549 Td[(obr)1(az)-1(u)-333(n)1(a)28(w)27(et,)-333(ni)-333(jedn)1(e)-1(j)-332(c)-1(a\\252ej)-333(m)-1(i)1(s)-1(ki)1(!)-334({)-333(wyrzek)55(a\\252a)-333(gorzk)28(o)-334(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-334(si\\246)-1(.)]TJ 27.879 -13.55 Td[({)-467(O)1(braz)-467(ci)-466(jaki)-466(pr)1(z)-1(yn)1(ies)-1(\\246,)-467(a)-466(i)-467(statk)28(\\363)28(w,)-467(co)-467(i)1(no)-467(n)1(a)-56(j)1(d\\246)-467(zb)-28(\\246dn)29(yc)27(h.)-466(S)1(tac)27(ho)]TJ -27.879 -13.549 Td[(wr\\363)-28(c\\241)-382(i)-382(c)27(h)1(a\\252up)-27(\\246)-383(p)1(rzy)-382(lu)1(dzkiej)-382(p)-27(om)-1(o)-27(c)-1(y)-382(r)1(yc)27(h)1(\\252o)-382(p)-28(o)-27(d\\271w)-1(i)1(gn\\241,)-382(\\273e)-383(n)1(ie)-382(os)-1(tan)1(ie)-1(sz)-382(tak)]TJ 0 -13.549 Td[(d\\252u)1(go...)-333({)-333(usp)-28(ok)56(a)-55(ja\\252a)-333(j\\241)-333(Hank)56(a)-333(p)-28(o)-28(czc)-1(iwie.)-333({)-334(A)-333(k)56(a)-56(j)-333(to)-333(o)-28(ciec)-1(?)]TJ 27.879 -13.549 Td[(Chcia\\252a)-333(go)-334(zabr)1(a\\242)-334(do)-333(s)-1(i)1(e)-1(b)1(ie)-1(.)]TJ 0 -13.549 Td[(St)1(ary)-413(os)-1(ta\\252)-413(przy)-413(rumo)28(wis)-1(k)56(ac)27(h)1(,)-413(w)-414(pr)1(ogu)-413(ano)-413(s)-1(iedzia\\252)-414(op)1(atru)1(j\\241c)-414(b)-27(ok)-413(pie-)]TJ -27.879 -13.55 Td[(sk)28(o)27(wi.)]TJ 27.879 -13.549 Td[({)-385(Zbiera)-55(jcie)-386(si\\246)-386(ze)-386(mn\\241,)-385(u)-384(W)83(eron)1(ki)-385(na)-385(n)1(o)27(wym)-385(c)-1(i)1(as)-1(n)1(o,)-385(a)-386(u)-384(nas)-386(p)1(rze)-1(ciec)27(h)]TJ -27.879 -13.549 Td[(zna)-56(j)1(dzie)-334(si\\246)-334(l)1(a)-334(w)28(as)-334(k)56(\\241t)-334(j)1(aki\\261.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(\\363)-56(j)1(de,)-333(Han)28(u\\261...)-333(ju)1(\\261)-1(ci..)1(.)-333(os)-1(tan)1(\\246)-1(..)1(.)-333(uro)-27(dzi\\252e)-1(c)28(h)-333(s)-1(i\\246)-333(tuta)-55(j,)-333(to)-333(i)-333(z)-1(amr\\246.)]TJ 0 -13.549 Td[(Co)-334(si\\246)-334(go)-333(n)1(aprosi\\252a,)-333(c)-1(o)-333(m)27(u)-332(s)-1(i\\246)-333(napr)1(z)-1(ek\\252ada\\252a,)-333(n)1(ie)-334(c)27(h)1(c)-1(i)1(a\\252)-334(i)-333(ni)1(e)-1(.)]TJ 0 -13.55 Td[({)-458(W)-457(s)-1(i)1(e)-1(n)1(i)-458(s)-1(e)-458(lego)28(wis)-1(k)28(o)-457(w)-1(y)1(s)-1(zykuj)1(\\246)-1(.)1(..)-458(j)1(u\\261c)-1(i)1(...)-458(a)-457(je\\261)-1(li)-457(k)56(a\\273)-1(es)-1(z...)-457(to)-458(do)-457(w)27(a)-55(ju)]TJ -27.879 -13.549 Td[(je\\261\\242)-398(przyjd)1(\\246)-1(.)1(..)-397(dzie)-1(ci)-398(ci)-397(z)-1(a)-397(to)-398(p)1(rz)-1(y)1(piln)29(uj)1(\\246)-1(..)1(.)-398(j)1(u\\261c)-1(i.)1(..)-398(P)1(ies)-1(k)56(a)-398(i)1(no)-398(zabi)1(e)-1(r)1(z)-1(,)-397(b)-28(ok)-397(m)27(u)]TJ 0 -13.549 Td[(sk)55(al)1(e)-1(cz)-1(y\\252o.)1(..)-333(ju)1(\\261)-1(ci...)-333(str\\363\\273o)27(w)28(a\\242)-334(ci)-333(b)-28(\\246dzie...)-333(cz)-1(uj)1(n)28(y)-333(wielc)-1(e.)]TJ 27.879 -13.549 Td[({)-333(Zw)27(al\\241)-333(si\\246)-334(\\261c)-1(ian)29(y)-334(i)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(w)27(as)-334(p)1(rzygni)1(e)-1(cie!)-334({)-333(p)1(ros)-1(i)1(\\252a)-334(p)1(rz)-1(ek\\252ad)1(a)-56(j\\241c.)]TJ 0 -13.549 Td[({)-333(I...)-333(d\\252u)1(\\273)-1(ej)-333(pr)1(z)-1(etrzyma)-56(j\\241)-333(n)1(i\\271)-1(l)1(i)-334(cz\\252)-1(o)28(wiek)-333(niejeden..)1(.)-333(Pies)-1(k)56(a)-333(w)27(e\\271)-1(.)1(..)]TJ 0 -13.55 Td[(Nie)-295(n)1(alega\\252a)-295(j)1(u\\273)-295(wi\\246c)-1(ej,)-294(sk)28(oro)-294(nie)-295(c)28(hcia\\252.)-294(P)28(o)-294(pra)28(wdzie)-295(i)-294(u)-294(n)1(ie)-1(j)-293(b)28(y\\252o)-295(ciasno,)]TJ -27.879 -13.549 Td[(a)-333(z)-1(e)-334(stary)1(m)-334(no)28(wy)-333(k\\252op)-27(ot)-334(b)29(y)-334(b)29(y\\252.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(k)55(aza\\252a)-239(P)1(ie)-1(t)1(rk)28(o)28(w)-1(i)-238(wzi\\241\\242)-239(Kru)1(c)-1(zk)56(a)-239(n)1(a)-239(p)-27(os)-1(t)1(ronek)-238(i)-239(d)1(o)-239(c)28(ha\\252up)29(y)-239(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\242)-1(.)]TJ 0 -13.549 Td[({)-355(S)1(tanie)-355(za)-355(B)-1(u)1(rk)56(a,)-355(kt\\363r)1(e)-1(n)-354(gdzies)-1(ik)-354(ucie)-1(k)1(\\252.)-355(Niez)-1(gu)1(\\252a)-355(dop)1(ie)-1(r)1(o!)-355({)-355(kr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(cierpl)1(iwie)-1(,)-333(gd)1(y\\273)-334(Pi)1(e)-1(tr)1(e)-1(k)-333(n)1(ie)-334(m\\363g\\252)-334(d)1(a\\242)-334(rad)1(y)-334(p)1(s)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-286(G\\252up)1(i..)1(.)-286(gryz\\252)-287(t)1(u)-286(b)-27(\\246)-1(d)1(z)-1(ie...)-286(tam)-286(\\271re)-1(\\242)-286(c)-1(o)-286(d)1(nia)-286(d)1(os)-1(tan)1(ies)-1(z...)-286(j)1(u\\261c)-1(i,)-286(a)-286(w)-286(c)-1(i)1(e)-1(p)1(le)]TJ -27.879 -13.55 Td[(si\\246)-334(wyle\\273)-1(y)1(s)-1(z...)-333(Kru)1(c)-1(zek!)-333({)-334(n)1(ap)-28(omin)1(a\\252)-334(go)-333(stary)-333(p)-28(omaga)-55(j\\241c)-334(b)1(ra\\242)-334(n)1(a)-334(sz)-1(n)29(urek.)]TJ 27.879 -13.549 Td[(P)28(ob)1(ie)-1(g\\252a)-333(pr)1(z)-1(o)-27(dem)-1(,)-333(b)28(yc)28(h)-333(jes)-1(zcz)-1(e)-334(n)1(a)-334(o)-27(dc)27(h)1(o)-28(d)1(n)28(ym)-334(za)-56(j)1(rze)-1(\\242)-334(d)1(o)-334(siostry)84(.)]TJ 0 -13.549 Td[(Zdziwi\\252a)-278(s)-1(i)1(\\246)-1(,)-278(zas)-1(ta)28(ws)-1(zy)-278(w)-279(i)1(z)-1(b)1(ie)-279(ki)1(lk)56(a)-279(k)28(ob)1(iet)-279(i)-278(W)84(eronk)28(\\246)-278(z)-1(n)1(o)27(wu)1(j)-278(rozp\\252ak)56(an\\241.)]TJ 0 -13.549 Td[({)-320(A)-321(cz)-1(ym)-320(to)-321(sobi)1(e)-321(u)-320(w)27(as)-321(zas)-1(\\252u)1(\\273)-1(y)1(\\252)-1(am)-320(na)-320(t)28(yle)-321(d)1(obro\\261c)-1(i)1(?)-321(cz)-1(ym?)-321({)-320(biad)1(oli\\252a.)]TJ 0 -13.549 Td[({)-281(Niew)-1(i)1(e)-1(la)-281(mo\\273)-1(em,)-281(w)-1(sz)-1(\\246dy)-281(b)1(ieda,)-281(ale)-281(c)-1(o)-281(pr)1(z)-1(yn)1(ie\\261)-1(li)1(m)-1(,)-281(b)1(ie)-1(r)1(z)-1(cie,)-281(b)-28(o)-281(ze)-282(sz)-1(cz)-1(e-)]TJ -27.879 -13.55 Td[(rego)-333(s)-1(erca)-334(d)1(a)-56(j)1(e)-1(m)-334({)-333(pr)1(z)-1(em\\363)27(wi\\252a)-333(K\\252\\246b)-28(o)28(w)28(a)-334(wt)28(yk)56(a)-56(j)1(\\241c)-334(jej)-333(w)-334(gar)1(\\261)-1(\\242)-333(s)-1(p)-27(ory)-333(w)28(\\246)-1(ze)-1(\\252ek.)]TJ 27.879 -13.549 Td[({)-333(T)83(akie)-334(n)1(ies)-1(zc)-1(z\\246)-1(\\261cie)-334(w)28(a)-1(s)-333(s)-1(p)-27(otk)56(a\\252o!)]TJ\nET\nendstream\nendobj\n1341 0 obj <<\n/Type /Page\n/Contents 1342 0 R\n/Resources 1340 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1340 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1345 0 obj <<\n/Length 8915      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(419)]TJ -330.353 -35.866 Td[({)-333(Nie)-334(z)-334(k)56(amienia)-333(pr)1(z)-1(ec)-1(iec)27(h)-333(n)1(ar\\363)-28(d)-332(i)-334(k)1(u\\273den)-333(z)-334(bi)1(e)-1(d)1(\\241)-334(si\\246)-334(zna.)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(rze)-1(z)-334(c)28(h\\252opa)-333(jeste)-1(\\261c)-1(i)1(e)-1(,)-333(jak)-333(d)1(ru)1(gie)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(w)-333(tak)56(\\241)-334(p)-27(or\\246)-333(w)27(a)-55(ju)-333(ci\\246)-1(\\273ej)-333(ni\\271li)-333(in)1(s)-1(zym.)]TJ 0 -13.549 Td[({)-305(I)-306(b)1(arze)-1(j)-304(w)27(as)-306(P)29(an)-305(Jez)-1(u)1(s)-306(do\\261wiadcz)-1(a.)1(..)-305({)-305(p)-28(o)28(wiada\\252y)-305(wraz)-305(s)-1(k)1(\\252)-1(ad)1(a)-56(j)1(\\241c)-306(p)1(rz)-1(ed)]TJ -27.879 -13.549 Td[(ni)1(\\241)-387(w)28(\\246)-1(ze)-1(\\252ki,)-386(b)-27(o)-387(ano)-386(s)-1(p)-27(\\363\\252e)-1(cznie)-387(si\\246)-387(z)-1(m\\363)28(w)-1(i)1(\\252y)-387(i)-386(nan)1(ie)-1(s\\252y)-387(j)1(e)-1(j)1(,)-387(co)-387(in)1(o)-387(kt\\363r)1(a)-387(mog\\252a:)]TJ 0 -13.55 Td[(to)-333(gro)-28(c)28(h)28(u,)-333(to)-333(kru)1(p)-333(j\\246cz)-1(mienn)28(yc)28(h,)-333(to)-333(m\\241)-1(k)1(i...)]TJ 27.879 -13.549 Td[({)-346(Lu)1(dzie)-346(k)28(o)-28(c)28(hane,)-345(gos)-1(p)-27(o)-28(d)1(ynie,)-345(m)-1(atk)1(i)-346(r)1(o)-28(dzone!)-346({)-345(s)-1(zlo)-28(c)28(ha\\252a)-346(r)1(z)-1(ewliwie,)-346(ob)1(-)]TJ -27.879 -13.549 Td[(\\252api)1(a)-56(j\\241c)-333(s)-1(i\\246)-333(z)-334(nimi)-333(tak)-333(gor\\241co,)-333(a\\273)-334(si\\246)-334(ws)-1(zystkie)-334(p)-27(op\\252ak)56(a\\252y)84(.)]TJ 27.879 -13.549 Td[({)-333(S\\241)-333(jes)-1(zc)-1(ze)-334(d)1(obre)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-1(,)-333(s\\241!...)-333({)-333(m)27(y\\261la\\252a)-333(Hank)56(a)-333(z)-334(rozc)-1(zuleni)1(e)-1(m.)]TJ 0 -13.549 Td[(A)-395(tu)-395(i)-395(or)1(gani\\261cina)-395(wtacz)-1(a\\252a)-395(s)-1(i)1(\\246)-396(w)28(e)-396(dr)1(z)-1(wi,)-395(b)-27(o)-28(c)28(hen)-395(c)27(h)1(le)-1(b)1(a)-395(d\\271wiga)-56(j)1(\\241c)-396(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(pac)28(h\\241)-333(i)-333(k)56(a)27(w)28(a\\252)-334(s\\252onin)29(y)-333(w)-334(pap)1(ierze)-1(.)]TJ 27.879 -13.55 Td[(Hank)56(a)-386(n)1(ie)-386(c)-1(zek)55(a)-55(j\\241c)-386(ju)1(\\273)-386(na)-386(j)1(e)-1(j)-385(pr)1(z)-1(emo)27(w)28(\\246)-1(,)-385(\\273)-1(e)-386(to)-385(p)-28(o\\252ud)1(ni)1(e)-387(ak)1(uratn)1(ie)-386(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(dzw)28(aniali)1(,)-333(\\261)-1(pi)1(e)-1(sz)-1(n)1(ie)-334(p)-27(olec)-1(ia\\252a)-333(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(Jasno)-276(b)28(y\\252o)-276(na)-276(\\261)-1(wiecie)-1(,)-276(s\\252o\\253ce)-277(s)-1(i)1(\\246)-277(ni)1(e)-277(p)-27(ok)55(azyw)28(a\\252)-1(o,)-276(al)1(e)-277(mim)-1(o)-276(to)-276(dzie\\253)-276(p)-28(osie-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-324(dziwnie)-324(p)1(rze)-1(s\\252onec)-1(znion)1(\\241)-324(wid)1(no\\261\\242)-1(;)-323(nieb)-27(o)-324(wis)-1(i)1(a\\252o)-324(wys)-1(ok)28(o,)-323(ni)1(b)28(y)-324(t)1(a)-324(mo)-28(dr)1(a)27(w)28(a)]TJ 0 -13.549 Td[(p\\252ac)28(h)28(ta,)-339(z)-340(rzadk)56(a)-339(jeno)-339(p)-28(ozarzucana)-339(bia\\252y)1(m)-1(i)-339(c)27(h)29(ustam)-1(i)-339(strz\\246)-1(p)1(ias)-1(t)28(y)1(c)27(h)-339(c)27(h)1(m)27(u)1(r,)-339(do-)]TJ 0 -13.55 Td[(\\252e)-1(m)-292(za\\261)-292(role)-292(rozle)-1(w)28(a\\252y)-292(si\\246)-292(w)-292(rozto)-28(cz)-293(n)1(ie)-1(ob)-55(j)1(\\246)-1(t\\241,)-291(widn)1(\\241)-292(kiej)-291(na)-292(d)1(\\252)-1(on)1(i,)-291(p)-28(oziele)-1(n)1(ia\\252\\241)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(cami,)-257(a)-256(gdzie)-257(p\\252o)28(w)28(\\241)-257(o)-28(d)-256(r\\273ysk)-257(i)-256(ugor)1(\\363)27(w,)-256(s)-1(tr)1(ugami)-257(w)28(\\363)-28(d)-256(\\252ysk)55(a)-55(j\\241c\\241,)-257(j)1(akb)28(y)-256(t)28(ymi)]TJ 0 -13.549 Td[(sz)-1(yb)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Sk)28(o)28(wron)1(ki)-361(wy\\261)-1(p)1(iew)-1(y)1(w)27(a\\252y)-361(rozg\\252o\\261)-1(n)1(ie)-1(,)-361(a)-361(z)-362(p)-27(\\363l,)-361(o)-28(d)-361(b)-27(or\\363)28(w,)-361(z)-362(n)1(ie)-1(b)1(ies)-1(k)56(a)28(w)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(dal)1(i,)-398(c)-1(a\\252ym)-398(\\261)-1(wiatem)-399(p)1(\\252yn\\246\\252o)-399(r)1(z)-1(e\\271)-1(w)28(e)-1(,)-398(wio\\261nian)1(e)-399(p)-27(o)28(w)-1(i)1(e)-1(trze,)-399(p)1(rze)-1(j)1(\\246)-1(te)-398(c)-1(iep\\252\\241)-398(wil-)]TJ 0 -13.55 Td[(go)-28(ci\\241)-333(i)-333(m)-1(io)-27(dn)28(ym)-333(z)-1(ap)1(ac)27(h)1(e)-1(m)-334(t)1(op)-28(olo)28(wyc)28(h)-333(p\\241k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-406(p)-27(o)-406(dr)1(ogac)27(h)-405(w)-1(si)-406(roi)1(\\252o)-406(s)-1(i\\246)-406(o)-28(d)-405(lud)1(z)-1(i)1(:)-406(\\261c)-1(i\\241)-27(gali)-406(w)-406(op\\252otk)1(i)-406(ga\\252\\246)-1(zie)-406(i)-406(dr)1(z)-1(ew)27(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(wic)27(h)29(ur\\246)-333(w)-1(y)1(\\252)-1(aman)1(e)-1(.)]TJ 27.879 -13.549 Td[(W)-299(p)-28(o)28(wietrzu)-300(za\\261)-300(b)28(y\\252o)-300(t)1(ak)-300(cic)27(h)1(o,)-300(\\273e)-300(drzew)-1(in)29(y)83(,)-299(jakb)29(y)-300(ob)28(wian)1(e)-300(jeno)-299(puc)28(hem)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(ej)-333(zie)-1(l)1(e)-1(n)1(i)-334(p)1(\\241k)28(\\363)28(w)-1(,)-333(l)1(e)-1(d)1(w)-1(i)1(e)-334(s)-1(i)1(\\246)-334(p)-28(or)1(uc)28(hiw)28(a\\252y)83(.)]TJ 27.879 -13.55 Td[(Niepr)1(z)-1(elicz)-1(on)1(a)-402(c)28(hmara)-401(w)-1(r)1(\\363bli)-401(k)28(ot\\252o)28(w)27(a\\252a)-401(s)-1(i)1(\\246)-402(przy)-401(k)28(o\\261)-1(ciele)-1(,)-401(\\273e)-402(c)-1(zarn)1(o)-402(b)29(y-)]TJ -27.879 -13.549 Td[(\\252o)-451(jakb)29(y)-451(o)-28(d)-451(sadzy)-451(n)1(a)-452(k)1(lonac)28(h)-451(i)-451(li)1(pac)27(h)-450(roz\\252)-1(o\\273yst)28(yc)27(h)1(,)-451(a\\273)-452(wrzas)-1(k)-450(i)-451(og\\252usz)-1(a)-55(j\\241cy)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(rgot)-333(r)1(o)-1(zc)27(h)1(o)-28(dzi\\252)-333(s)-1(i)1(\\246)-334(na)-333(c)-1(a\\252\\241)-333(wie\\261)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-319(n)1(ad)-318(wyg\\252adzon)28(ym,)-318(l\\261)-1(n)1(i\\241cym)-319(sta)28(w)27(em)-319(kr)1(z)-1(ycza\\252)-1(y)-318(g\\246s)-1(i)1(ory)-318(str\\363\\273uj\\241ce)-319(g\\246-)]TJ -27.879 -13.549 Td[(si\\241t)-333(i)-334(k)1(le)-1(p)1(a\\252y)-333(os)-1(tr)1(o)-334(ki)1(jan)1(ki,)-333(gdy)1(\\273)-334(pr)1(ano)-333(w)-334(wielu)-333(nar)1(az)-334(mie)-1(j)1(s)-1(cac)27(h)1(.)]TJ 27.879 -13.55 Td[(A)-330(wsz)-1(\\246dy)-329(b)28(y\\252)-330(r)1(a)-56(jw)28(ac)27(h)1(,)-330(p)-27(o\\261)-1(p)1(ies)-1(zna)-330(r)1(ob)-28(ot)1(a,)-330(pr)1(z)-1(ekrzyki)-329(mi\\246)-1(d)1(z)-1(y)-329(c)27(h)1(a\\252)-1(u)1(pami,)]TJ -27.879 -13.549 Td[(c)27(h)1(m)-1(ar)1(y)-333(dzie)-1(ciak)28(\\363)28(w)-334(i)-333(cz)-1(erwieniej\\241cyc)28(h)-333(p)-28(o)-333(s)-1(ad)1(ac)27(h)-333(k)28(ob)1(iet.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(n)1(ie)-424(i)-424(izb)28(y)-424(sta\\252y)-424(n)1(a)-424(p)1(rz)-1(estrza\\252)-424(w)-1(y)1(w)27(art)1(e)-1(,)-423(p)-28(o)-424(p)1(\\252otac)27(h)-423(s)-1(u)1(s)-1(zyli)-423(pr)1(z)-1(epran)1(e)]TJ -27.879 -13.549 Td[(dop)1(iero)-319(c)-1(o)-319(s)-1(zmat)27(y)84(,)-319(wie)-1(tr)1(z)-1(y)1(li)-319(p)-28(o)-319(sadac)27(h)-319(p)-27(o\\261c)-1(iele,)-319(\\261)-1(cian)28(y)-319(bi)1(e)-1(lon)1(o)-320(t)1(u)-319(i)-320(o)28(wdzie,)-319(psy)]TJ 0 -13.549 Td[(w)28(o)-56(jn)1(\\246)-289(cz)-1(y)1(ni\\252y)-288(ze)-289(\\261wini)1(am)-1(i)-287(b)-28(ob)1(ruj)1(\\241c)-1(y)1(m)-1(i)-288(p)-27(o)-288(ro)28(w)28(ac)27(h,)-287(a)-288(k)55(a)-55(j\\261)-288(z)-1(n)1(\\363)28(w)-289(kr)1(o)28(w)-1(y)-287(w)-1(y)1(nosi\\252y)]TJ 0 -13.549 Td[(rogate)-333(\\252b)28(y)-333(z)-1(za)-334(ogr)1(o)-28(dze)-1(\\253)1(,)-333(p)-28(or)1(yku)1(j\\241c)-334(t\\246skliwie.)]TJ 27.879 -13.55 Td[(Niejeden)-279(te\\273)-280(w)28(\\363z)-280(wyjec)27(h)1(a\\252)-280(d)1(o)-279(m)-1(iastec)-1(zk)56(a)-280(p)-27(o)-279(\\261)-1(wi\\241tec)-1(zne)-279(z)-1(ak)1(up)28(y)84(.)-279(A)-279(z)-1(ar)1(az)-280(z)]TJ -27.879 -13.549 Td[(p)-27(o\\252udn)1(ia)-338(nad)1(jec)27(h)1(a\\252)-339(d)1(\\252ugim)-338(w)27(as\\241)-28(giem)-339(stary)-338(h)1(and)1(larz)-338(Jud)1(k)55(a)-338(ze)-339(sw)27(o)-55(j\\241)-338(\\233yd)1(o)27(wic\\241)]TJ 0 -13.549 Td[(i)-333(bac)28(horem.)]TJ 27.879 -13.549 Td[(Je\\271)-1(d)1(z)-1(il)1(i)-286(o)-28(d)-286(c)27(h)1(a\\252up)28(y)-286(d)1(o)-287(c)28(ha\\252up)29(y)83(,)-286(pr)1(z)-1(epr)1(o)27(w)28(adzani)-286(p)1(rze)-1(z)-287(p)1(ies)-1(ki)-286(sielni)1(e)-287(do)-28(cie-)]TJ -27.879 -13.549 Td[(ra)-55(j\\241ce)-1(,)-372(a)-373(m)-1(a\\252o)-373(sk)55(\\241d)-372(Jud)1(k)56(a)-373(w)-1(y)1(c)27(ho)-27(dzi\\252)-373(z)-374(p)1(ust)28(ym)-1(i)-372(r\\246)-1(k)28(oma,)-373(b)-27(o)-373(ni)1(e)-374(b)28(y)1(\\252)-373(okpis,)-373(j)1(ak)]TJ 0 -13.55 Td[(k)56(arcz)-1(marz)-254(al)1(b)-28(o)-253(i)-253(dru)1(gie,)-254(p)1(\\252ac)-1(i)1(\\252)-254(ni)1(e)-1(zgorze)-1(j)1(,)-253(a)-254(n)1(a)27(w)28(e)-1(t)1(,)-254(j)1(ak)-253(k)28(om)27(u)-253(n)1(a)-254(p)1(rz)-1(edn)1(o)28(w)-1(k)1(u)-253(b)28(y-)]TJ 0 -13.549 Td[(\\252o)-278(p)-27(otrza,)-278(to)-278(na)-277(niewie)-1(l)1(ki)-278(pr)1(o)-28(ce)-1(n)28(t)-277(w)-1(y)1(go)-28(dzi\\252.)-278(M\\241d)1(ry)-277(b)28(y\\252)-278(\\233yd,)-277(z)-1(n)1(a\\252)-278(w)-1(szys)-1(tk)1(ic)27(h)-277(w)27(e)]TJ\nET\nendstream\nendobj\n1344 0 obj <<\n/Type /Page\n/Contents 1345 0 R\n/Resources 1343 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1343 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1348 0 obj <<\n/Length 8582      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(420)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ws)-1(i)-311(i)-311(wiedzia\\252,)-312(j)1(ak)-311(do)-311(k)28(ogo)-312(p)1(rze)-1(m\\363)28(w)-1(i)1(\\242)-1(,)-311(to)-311(i)-311(raz)-312(p)-27(o)-312(r)1(az)-312(c)-1(i)1(\\241)-28(ga\\252)-312(n)1(a)-312(w)28(\\363z)-312(cio\\252k)55(a)-311(alb)-27(o)]TJ 0 -13.549 Td[(zb)-28(o\\273a)-370(jak)1(ie)-1(go)-370(\\242wiartk)28(\\246)-370(wynosi\\252,)-370(a)-369(\\233)-1(y)1(do)28(wic)-1(a)-370(osobn)1(o)-370(na)-369(s)-1(w)28(o)-56(j)1(\\241)-370(r\\246)-1(k)28(\\246)-370(h)1(andl)1(o)27(w)28(a\\252a)]TJ 0 -13.549 Td[(znosz)-1(\\241c)-309(j)1(a)-56(j)1(k)56(a,)-309(k)28(ogu)1(t)28(y)83(,)-308(to)-308(j)1(ak)55(\\241\\261)-308(w)-1(y)1(pierzon\\241)-308(k)28(ok)28(osz)-1(k)28(\\246)-309(al)1(b)-28(o)-308(i)-308(tego)-309(p)1(\\252\\363tna)-308(p)-27(\\363\\252s)-1(ztu-)]TJ 0 -13.549 Td[(cz)-1(ek,)-279(\\273e)-279(to)-279(g\\252\\363)28(w)-1(n)1(ie)-279(na)-278(z)-1(amian\\246)-279(wycygani)1(a\\252)-1(a)-278(z)-1(a)-279(o)28(w)28(e)-279(fry)1(z)-1(ki)-278(a)-279(ws)-1(t\\241\\273ki,)-278(a)-279(tasiem)-1(ki)1(,)]TJ 0 -13.549 Td[(a)-403(sz)-1(p)1(ilki)1(,)-403(i)-403(ca\\252y)-403(\\363)28(w)-404(k)1(ram)-403(do)-403(p)1(rzys)-1(tr)1(a)-56(j)1(ania,)-402(na)-403(kt\\363r)1(e)-1(n)-402(bab)1(s)-1(ki)-402(gatun)1(e)-1(k)-402(z)-1(a)28(w\\273)-1(d)1(y)]TJ 0 -13.55 Td[(\\252ak)28(om)27(y)84(,)-333(a)-334(co)-333(w)-334(wielgac)27(h)1(n)28(ym)-334(p)1(ud)1(le)-334(n)1(os)-1(i\\252a)-333(z)-334(sob\\241)-333(kusz)-1(\\241c)-333(nim)-333(c)-1(o)-333(\\252ak)28(om)-1(sze)-1(..)1(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(e)-1(\\273d\\273a\\252y)-298(w\\252a\\261nie)-298(pr)1(z)-1(ed)-297(B)-1(or)1(yn\\363)28(w)-298(d)1(om)-1(,)-297(gdy)-297(J\\363z)-1(k)56(a)-297(przy)-298(p)1(ad\\252a)-297(z)-299(p)1(iskiem)-1(:)]TJ 0 -13.549 Td[({)-486(Han)28(u)1(\\261)-1(,)-486(k)1(up)-27(c)-1(ie)-486(cz)-1(erw)28(onej)-486(tasie)-1(mki!)1(...)-486(a)-486(i)-485(te)-1(j)-485(brez)-1(y)1(lii)-486(d)1(o)-486(ja)-55(jek)-486(p)-28(ot)1(rz)-1(a)]TJ -27.879 -13.549 Td[(far)1(b)-28(o)28(w)28(ania.)1(..)-333(nici)-333(te)-1(\\273)-333(z)-1(ab)1(rak\\252o!)-333({)-333(prosi\\252a)-333(s)-1(k)56(aml\\241c)-1(o)-333(Han)1(ki.)]TJ 27.879 -13.549 Td[({)-333(Jutr)1(o)-334(p)-27(o)-56(j)1(e)-1(d)1(z)-1(i)1(e)-1(sz)-334(do)-333(mias)-1(t)1(a,)-334(t)1(o)-334(n)1(akup)1(isz)-1(,)-333(co)-334(p)-27(otrze)-1(b)1(a.)]TJ 0 -13.549 Td[({)-403(A)-404(n)1(a)28(w)27(et)-404(w)-403(mie)-1(\\261c)-1(i)1(e)-404(tani)1(e)-1(j)-403(i)-403(tak)-403(n)1(ie)-404(o)-28(cygani)1(a)-56(j\\241!)-403({)-403(up)-27(ew)-1(n)1(ia\\252a,)-403(rad)1(a)-404(te\\273)]TJ -27.879 -13.55 Td[(je\\271dzi\\242)-1(,)-397(\\273)-1(e)-398(ju)1(\\273)-398(b)-28(ez)-398(nak)56(az)-1(u)-397(wylec)-1(ia\\252a)-398(d)1(o)-398(han)1(dl)1(arz)-1(y)-397(krzycz)-1(\\241c,)-398(i\\273)-398(n)1(ic)-1(ze)-1(go)-397(im)-398(nie)]TJ 0 -13.549 Td[(p)-27(otrza)-334(i)-333(n)1(ic)-334(n)1(ie)-334(pr)1(z)-1(edad)1(z)-1(\\241.)]TJ 27.879 -13.549 Td[({)-229(A)-228(s)-1(p)-27(\\246)-1(d)1(\\271)-229(kur)1(y)83(,)-228(b)28(y)-229(si\\246)-229(jak)56(a)-229(d)1(o)-229(\\273)-1(y)1(do)28(ws)-1(ki)1(e)-1(go)-229(w)28(oz)-1(a)-228(nie)-229(zaprz\\246g\\252)-1(a!)-228({)-229(kr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(za)-334(n)1(i\\241)-333(Hank)56(a)-334(wygl)1(\\241da)-56(j)1(\\241c)-334(p)1(rz)-1(ed)-333(d)1(om)-1(.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(k)56(a)-385(\\273)-1(o\\252n)1(ie)-1(r)1(k)56(a)-386(skr)1(\\246)-1(ca\\252a)-386(w\\252a\\261nie)-385(w)-385(op\\252otki,)-384(jakb)28(y)-384(ucie)-1(k)56(a)-55(j\\241c)-386(p)1(rze)-1(d)-384(\\233y-)]TJ -27.879 -13.55 Td[(do)28(wic\\241,)-333(kt\\363ra)-333(za)-334(n)1(i\\241)-334(cosik)-333(w)-1(y)1(krzykiw)28(a\\252a.)]TJ 27.879 -13.549 Td[(Wp)1(ad\\252a)-330(d)1(o)-330(i)1(z)-1(b)28(y)84(,)-329(s)-1(\\252o)28(w)27(a)-329(nie)-330(mog\\241c)-330(p)1(rz)-1(em\\363)27(wi\\242)-330(a)-329(j\\241k)56(a)-56(j)1(\\241c)-330(s)-1(i)1(\\246)-330(jeno)-329(i)-330(cz)-1(erwie-)]TJ -27.879 -13.549 Td[(ni)1(\\241c)-334(okru)1(tni)1(e)-1(,)-333(a)-333(tak)-333(jak)28(o\\261)-334(strap)1(iona,)-333(\\273e)-334(a\\273)-334(\\252zy)-333(z)-1(asiwi\\252y)-333(s)-1(i\\246)-333(u)-333(jej)-333(rz\\246)-1(s)-333(d\\252ugi)1(c)27(h.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(to)-333(w)27(am,)-333(T)83(eres)-1(k)28(o?)-334({)-333(sp)28(yta\\252a)-333(wie)-1(l)1(c)-1(e)-334(r)1(oz)-1(ciek)55(a)28(wion)1(a)-1(.)]TJ 0 -13.549 Td[({)-351(A)-350(b)-28(o)-350(te)-351(os)-1(zuk)56(a\\253)1(c)-1(e)-351(d)1(a)-56(j\\241)-350(mi)-351(t)28(ylk)28(o)-350(pi\\246tn)1(a\\261)-1(cie)-351(z)-1(\\252ot)28(yc)28(h,)-350(a)-351(w)28(e)-1(\\252n)1(iak)-351(ca\\252kiem)]TJ -27.879 -13.55 Td[(no)28(wy!)-333(T)83(ak)-333(mi)-333(p)-28(otr)1(z)-1(a)-333(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)84(,)-333(\\273)-1(e)-333(dziw)-334(si\\246)-334(n)1(ie)-334(skr\\246c)-1(\\246...)]TJ 27.879 -13.549 Td[({)-333(P)28(ok)56(a\\273)-1(cie...)-333(a)-333(drogi)1(?)-334({)-333(\\252)-1(ak)28(oma)-333(b)28(y\\252a)-333(na)-333(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(w)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-243(Cho)-27(\\242)-1(b)28(y)-242(z)-1(e)-243(trzyd)1(z)-1(ie\\261c)-1(i)-243(z\\252ot)28(yc)27(h)1(!)-243(W)84(e)-1(\\252n)1(iak)-243(n)1(o)27(wiu)1(tki)-242(m)-1(a)-243(ca\\252e)-243(s)-1(iedm)-243(\\252ok)28(ci)-243(p)-27(\\363\\252)]TJ -27.879 -13.549 Td[(pi)1(\\246)-1(d)1(z)-1(i,)-265(same)-1(j)-265(cz)-1(y)1(s)-1(tej)-265(w)27(e\\252n)28(y)-265(wysz)-1(\\252o)-265(na)-265(niego)-265(w)-1(i)1(\\246)-1(ce)-1(j)-265(n)1(i\\271li)-265(c)-1(ztery)-265(fu)1(n)28(t)28(y)83(,)-265(f)1(arbi)1(e)-1(r)1(z)-1(o)28(wi)]TJ 0 -13.549 Td[(te\\273)-334(p\\252aci\\252am.)]TJ 27.879 -13.55 Td[(Roz)-1(win)1(\\246)-1(\\252a)-349(go)-349(n)1(a)-349(izbie,)-349(\\273e)-350(zab\\252ysn\\241\\252)-349(i)-349(zamigota\\252)-349(kiej)-349(t\\246c)-1(za)-349(i)-349(gra\\252)-349(f)1(arb)1(am)-1(i)]TJ -27.879 -13.549 Td[(a\\273)-334(o)-28(czy)-334(t)1(rz)-1(a)-333(b)28(y)1(\\252)-1(o)-333(mru\\273y\\242.)]TJ 27.879 -13.549 Td[({)-225(\\221li)1(c)-1(zno\\261c)-1(i)1(,)-225(nie)-225(w)27(e\\252niak)1(!)-225(Wielk)56(a)-226(sz)-1(k)28(o)-27(da,)-225(ale)-225(c)-1(\\363\\273?...)-225(sam)-1(a)-225(p)-27(otrze)-1(b)1(uj)1(\\246)-226(grosz)-1(a)]TJ -27.879 -13.549 Td[(na)-333(\\261w)-1(i)1(\\246)-1(ta.)-333(Nie)-333(m)-1(o\\273e)-1(cie)-334(to)-333(p)-27(o)-28(cz)-1(ek)55(a\\242)-333(do)-333(Pr)1(z)-1(ew)27(o)-28(d)1(\\363)28(w)-1(?)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(k)1(ie)-1(j)-333(mi)-333(c)27(h)1(o)-28(\\242b)28(y)-333(w)-334(tej)-333(go)-28(dzin)1(ie)-334(p)-27(otrze)-1(b)1(a!)]TJ 0 -13.55 Td[(Zwija\\252a)-333(pr)1(\\246)-1(d)1(k)28(o)-334(w)28(e)-1(\\252n)1(iak)-333(o)-28(dwr)1(ac)-1(a)-55(j\\241c)-334(t)28(w)28(arz)-334(j)1(akb)28(y)-333(za)27(wst)27(y)1(dzona.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-334(w)27(\\363)-55(jto)28(w)28(a)-334(k)1(upi)1(...)-333(\\252at)28(w)-1(i)1(e)-1(j)-333(u)-333(n)1(ic)27(h)-332(o)-334(gr)1(os)-1(z.)]TJ 0 -13.549 Td[(Wzi\\246\\252)-1(a)-359(go)-360(r)1(az)-360(jes)-1(zc)-1(ze)-360(ogl\\241d)1(a\\242)-1(,)-359(a)-360(d)1(o)-360(b)-27(oku)-359(p)1(rz)-1(y)1(m)-1(i)1(e)-1(rza\\242)-360(i)-359(z)-360(w)27(es)-1(t)1(c)27(hn)1(ieniem)]TJ -27.879 -13.549 Td[(\\273alu)-333(o)-28(d)1(da\\252a.)]TJ 27.879 -13.549 Td[({)-333(Sw)28(o)-56(j)1(e)-1(m)28(u)-333(c)27(hces)-1(z)-334(p)-27(os\\252)-1(a\\242)-333(pieni\\246dzy)-333(do)-333(w)28(o)-56(jsk)56(a?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(pi)1(s)-1(a\\252...)-333(sk)56(am)-1(le,)-333(\\273)-1(e)-333(m)27(u)-333(b)1(ie)-1(d)1(a...)-333(Osta)-55(jcie)-334(z)-334(Bogiem)-1(!)]TJ 0 -13.55 Td[(I)-286(p)1(ra)28(wie)-286(p)-28(\\246dem)-286(w)-1(y)1(bieg\\252a)-286(z)-286(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-286(a)-286(J)1(agust)27(y)1(nk)56(a)-286(rozcie)-1(r)1(a)-56(j)1(\\241c)-1(a)-286(w)-286(ce)-1(b)1(ratce)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(aki)-333(la)-333(m)-1(aciory)-333(zac)-1(z\\246)-1(\\252a)-333(si\\246)-334(\\261m)-1(ia\\242)-333(na)-333(c)-1(a\\252e)-334(gar)1(d\\252o.)]TJ 27.879 -13.549 Td[({)-413(P)1(rzypar)1(li\\261c)-1(ie)-413(j\\241,)-412(\\273)-1(e)-413(d)1(z)-1(iw)-413(k)1(ie)-1(c)28(ki)-413(n)1(ie)-413(z)-1(gu)1(bi\\252a)-412(z)-414(p)-27(o\\261piec)27(h)28(u)1(!)-413(P)1(ie)-1(n)1(i\\246dzy)-413(jej)]TJ -27.879 -13.549 Td[(p)-27(otrza)-334(l)1(a)-334(M)1(ate)-1(u)1(s)-1(za,)-333(nie)-334(l)1(a)-334(c)28(h\\252opa.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(on)1(e)-334(si\\246)-334(tak)-333(zna)-55(j\\241!)-333({)-334(zdu)1(mia\\252a)-334(si\\246)-334(wielce)-1(.)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(e)-1(!)-333(j)1(akb)28(y\\261c)-1(i)1(e)-334(w)-334(les)-1(i)1(e)-334(s)-1(i)1(e)-1(d)1(z)-1(ieli.)1(..)]TJ 0 -13.549 Td[({)-333(Sk)56(\\241d\\273e)-334(to)-333(mam)-334(wie)-1(d)1(z)-1(i)1(e)-1(\\242?)]TJ\nET\nendstream\nendobj\n1347 0 obj <<\n/Type /Page\n/Contents 1348 0 R\n/Resources 1346 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1333 0 R\n>> endobj\n1346 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1351 0 obj <<\n/Length 8782      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(421)]TJ -330.353 -35.866 Td[({)-389(A)-390(d)1(y\\242)-390(T)83(eres)-1(k)56(a)-390(co)-389(t)27(y)1(dzie)-1(\\253)-389(l)1(ata)-390(d)1(o)-390(M)1(ate)-1(u)1(s)-1(za)-390(i)-389(j)1(ak)-389(pies)-390(dn)1(i)-389(c)-1(a\\252e)-390(w)28(aruj)1(e)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-333(kr)1(ym)-1(i)1(na\\252e)-1(m,)-333(a)-333(z)-1(an)1(os)-1(i)-333(m)28(u,)-333(c)-1(o)-333(in)1(o)-334(mo\\273e)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363)-55(jcie)-334(si\\246)-334(Boga!...)-333(n)1(ie)-334(ma)-333(to)-334(sw)27(o)-55(jego)-333(c)27(h\\252op)1(a?)]TJ 0 -13.549 Td[({)-384(Wiad)1(om)-1(o,)-384(ale)-384(tam)27(ten)-384(w)27(e)-384(w)27(o)-55(jsku,)-384(d)1(ale)-1(k)28(o)-384(i)-384(ni)1(e)-385(wiada,)-384(cz)-1(y)-384(wr\\363)-28(ci,)-384(a)-384(k)28(o-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(cie)-361(sam)-1(ej)-360(s)-1(i)1(\\246)-361(c)-1(n)1(i,)-360(Mateusz)-361(za\\261)-361(b)28(y\\252)-360(bli)1(s)-1(k)28(o,)-360(na)-360(p)-27(o)-28(dor)1(\\246)-1(d)1(z)-1(iu)1(,)-360(i)-361(c)28(h\\252op)-360(ki)1(e)-1(j)-360(sm)-1(ok)1(.)]TJ 0 -13.55 Td[(C\\363\\273)-334(to)-333(m)-1(a)-333(sobie)-334(\\273a\\252o)28(w)27(a\\242?!)]TJ 27.879 -13.549 Td[(Hance)-334(p)1(rzys)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(m)28(y\\261l)-333(An)28(te)-1(k)-333(z)-333(Jagn\\241.)-333(G\\252\\246b)-28(ok)28(o)-333(si\\246)-334(zam)-1(edyto)28(w)28(a\\252a.)]TJ 0 -13.549 Td[({)-365(A)-365(jak)-365(Mat)1(e)-1(u)1(s)-1(za)-366(wzieni,)-365(sk)28(om)-1(p)1(ani\\252a)-365(si\\246)-366(z)-365(jego)-366(siostr\\241,)-365(z)-365(Nas)-1(tk)56(\\241,)-365(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)-361(w)-362(ic)28(h)-362(c)28(ha\\252u)1(pie)-362(i)-361(raze)-1(m)-362(j)1(u\\273)-362(d)1(o)-362(mias)-1(ta)-361(lata)-55(j\\241.)-361(Nas)-1(tk)56(a)-361(nib)28(y)-361(to)-361(do)-362(b)1(rata,)-361(a)]TJ 0 -13.549 Td[(g\\252\\363)28(w)-1(n)1(ie,)-333(b)28(yc)27(h)-333(S)1(z)-1(y)1(m)-1(k)28(o)28(wi)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-333(si\\246)-334(p)1(rzyp)-28(omin)1(a\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(\\233e)-334(to)-333(w)-1(y)-333(wiec)-1(ie)-333(o)-334(wsz)-1(ystki)1(m)-1(!)-333(n)1(o,)-334(n)1(o!)]TJ 0 -13.55 Td[({)-451(Na)-450(o)-28(c)-1(zac)27(h)-450(g\\252up)1(ie)-451(s)-1(zy\\242k)28(o)-451(rob)1(i\\241,)-451(to)-450(przejrze)-1(\\242)-451(\\252acno.)-450(W)83(e\\252niak)-450(przeda)-56(j)1(e)]TJ -27.879 -13.549 Td[(ostatni,)-333(b)29(y)-334(M)1(ate)-1(u)1(s)-1(zo)28(w)-1(i)-333(\\261wi\\246)-1(t)1(a)-334(spr)1(a)27(wi\\242!)-333({)-334(sz)-1(y)1(dzi\\252a)-334(z\\252o\\261)-1(l)1(iwie)-1(.)]TJ 27.879 -13.549 Td[({)-288(No,)-287(no,)-288(co)-288(si\\246)-288(to)-288(n)1(ie)-288(w)-1(y)1(rabia)-287(z)-289(l)1(ud)1(\\271)-1(mi...)-287(I)-288(mnie)-288(b)28(y)-287(trza)-288(jec)27(h)1(a\\242)-289(d)1(o)-288(An)28(tk)56(a.)]TJ 0 -13.549 Td[({)-366(T)27(y)1(li)-366(\\261w)-1(i)1(at)-366(drogi)-365(w)-367(w)28(as)-1(zym)-366(s)-1(tan)1(ie,)-366(jes)-1(zc)-1(ze)-367(si\\246)-366(p)-28(o)-27(c)27(hor)1(uj)1(e)-1(cie)-1(.)1(..)-366(Nie)-366(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(to)-333(J\\363z)-1(k)56(a)-333(alb)-27(o)-334(k)1(to)-334(d)1(ru)1(gi?)-334({)-333(ledwie)-334(si\\246)-334(wstrzym)-1(a\\252a,)-333(b)28(y)-333(Jagn)29(y)-333(nie)-334(wymieni\\242...)]TJ 27.879 -13.55 Td[({)-266(S)1(am)-1(a)-266(p)-27(\\363)-56(j)1(d\\246,)-266(d)1(a)-266(B)-1(\\363g,)-265(\\273)-1(e)-266(mi)-266(si\\246)-266(nic)-266(ni)1(e)-267(stani)1(e)-1(.)-266(Ro)-27(c)27(ho)-265(m)-1(\\363)28(wili,)-265(\\273)-1(e)-266(w)28(e)-267(\\261wi\\246)-1(ta)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(\\241)-388(puszc)-1(zali)-388(do)-388(n)1(ie)-1(go,)-387(p)-28(o)-55(jad)1(\\246)-1(..)1(.)-388(Ale)-1(,)-387(trza)-389(b)29(y)-388(ju)1(\\273)-389(te)-388(b)-28(o)-28(czki)-388(p)-27(oprze)-1(k)1(\\252ada\\242)-389(n)1(a)]TJ 0 -13.549 Td[(dr)1(ug\\241)-333(s)-1(t)1(ron\\246.)]TJ 27.879 -13.549 Td[({)-333(T)83(rze)-1(ci)-333(dzie)-1(\\253)-332(s)-1(\\252oni)1(e)-1(j)1(\\241,)-334(j)1(u\\261c)-1(i)1(,)-333(\\273)-1(e)-334(n)1(ie)-334(za)28(w)27(ad)1(z)-1(i,)-333(zaraz)-334(tam)-333(p)-28(\\363)-55(jd)1(\\246)-1(.)]TJ 0 -13.549 Td[(I)-235(p)-28(osz)-1(\\252a,)-235(ale)-236(j)1(e)-1(sz)-1(cz)-1(e)-235(ryc)27(h)1(lej)-235(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-236(zm)-1(i)1(e)-1(sz)-1(an)1(a)-236(j)1(ak)28(o\\261)-1(,)-235(oz)-1(n)1(a)-56(j)1(m)-1(i)1(a)-56(j)1(\\241c)-1(,)-235(\\273)-1(e)-236(mi\\246s)-1(a)]TJ -27.879 -13.55 Td[(z)-334(p)-27(o\\252o)28(w)27(\\246)-334(b)1(raku)1(je.)]TJ 27.879 -13.549 Td[(P)28(or)1(w)27(a\\252a)-224(s)-1(i)1(\\246)-225(do)-224(k)28(omory)-224(Han)1(k)56(a,)-224(p)-28(olecia\\252a)-224(z)-1(a)-224(ni)1(\\241)-225(J)1(\\363z)-1(k)56(a)-224(i)-224(s)-1(tan)1(\\246)-1(\\252y)-224(wystrasz)-1(on)1(e)]TJ -27.879 -13.549 Td[(nad)-332(c)-1(ebrzyki)1(e)-1(m,)-333(delib)-27(e)-1(r)1(uj)1(\\241c)-1(,)-333(k)56(a)-56(j)-333(si\\246)-334(mog\\252o)-334(p)-27(o)-28(d)1(z)-1(i)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-302(T)83(o)-302(n)1(ie)-302(psia)-302(rob)-27(ota:)-302(wyra\\271ni)1(e)-303(zna\\242)-302(o)-28(d)1(kro)-55(jenie)-302(no\\273e)-1(m...)-301(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)-301(ob)-28(cy)-302(te\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-413(pr)1(z)-1(ysz)-1(ed\\252)-412(p)-27(o)-413(p)1(ar\\246)-413(f)1(un)28(t\\363)28(w...)-412(T)83(o)-412(Jagusin)1(a)-413(spra)28(wk)56(a!)-412({)-413(za)28(w)-1(y)1(rok)28(o)28(w)27(a\\252a)-412(Hank)56(a)]TJ 0 -13.55 Td[(rzuca)-56(j)1(\\241c)-377(s)-1(i\\246)-377(za)-56(j)1(adle)-377(d)1(o)-377(izb)28(y)83(,)-376(ale)-377(Jagn)28(y)-376(nie)-377(b)28(y)1(\\252o,)-377(jeno)-376(s)-1(tar)1(y)-377(le\\273a\\252)-377(jak)-376(z)-1(a)28(w\\273)-1(d)1(y)-377(z)]TJ 0 -13.549 Td[(wytrzes)-1(zc)-1(zon)28(ymi)-333(\\261)-1(lepi)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-269(J\\363zc)-1(e)-269(si\\246)-269(p)1(rzyp)-28(omni)1(a\\252o,)-269(j)1(ak)28(o)-269(Jagu)1(\\261)-269(wyc)27(h)1(o)-28(dz\\241c)-269(ran)1(o)-269(z)-269(d)1(om)27(u)-268(c)-1(osik)]TJ -27.879 -13.549 Td[(kr)1(y\\252a)-427(p)-27(o)-28(d)-427(zapask)56(\\241,)-427(ale)-427(m)28(y\\261)-1(l)1(a\\252)-1(a,)-426(i\\273)-427(to)-427(j)1(aki\\261)-427(s)-1(t)1(roik,)-426(kt\\363ren)-426(s)-1(ob)1(ie)-427(s)-1(zyk)28(o)28(w)27(a\\252a)-427(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(ta)-333(w)27(esp)-28(\\363\\252)-333(z)-334(Balc)-1(erk)28(\\363)28(wn\\241.)]TJ 27.879 -13.55 Td[({)-333(Do)-334(matki)-333(wyn)1(ie)-1(s\\252a...)-333(Kom)28(u)-333(sm)-1(aku)1(je,)-333(nie)-333(p)28(yta)-333(c)-1(zyj)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Ale)-334(n)1(a)-333(te)-334(s)-1(\\252o)28(w)28(a)-334(Jagu)1(s)-1(t)28(yn)1(ki)-333(Hank)56(a)-333(z)-1(ak)1(rzyc)-1(za\\252a)-334(w)-333(z)-1(\\252o\\261c)-1(i)1(:)]TJ 0 -13.549 Td[({)-333(J\\363z)-1(k)56(a!)-333(w)28(o\\252)-1(a)-55(j)-333(Pi)1(e)-1(tr)1(k)55(a!)1(...)-333(trza)-333(t\\246)-334(res)-1(zt\\246)-334(p)1(rze)-1(ni)1(e)-1(\\261\\242)-334(do)-333(mo)-56(j)1(e)-1(j)-333(k)28(omory)84(.)]TJ 0 -13.549 Td[(W)-314(m)-1(i)1(g)-315(te\\273)-315(przenie\\261)-1(l)1(i;)-315(c)28(hcia\\252a)-315(p)1(rzy)-315(tej)-314(ok)56(az)-1(j)1(i)-315(b)-27(e)-1(czki)-315(ze)-315(z)-1(b)-27(o\\273e)-1(m)-315(p)1(rze)-1(to)-27(c)-1(zy\\242)]TJ -27.879 -13.549 Td[(na)-359(sw)28(o)-56(j\\241)-358(s)-1(tron)1(\\246)-1(,)-358(b)28(y)-359(w)-359(n)1(ic)27(h)-358(s)-1(w)28(ob)-28(o)-27(dni)1(e)-360(p)1(rze)-1(sz)-1(u)1(k)55(a\\242,)-359(ale)-359(p)-27(oniec)27(h)1(a\\252a:)-359(z)-1(a)-359(wiele)-359(ic)27(h)]TJ 0 -13.549 Td[(b)28(y\\252o,)-333(i)-333(moglib)28(y)-333(o)-333(t)28(ym)-334(d)1(onie\\261\\242)-334(k)28(o)28(w)27(alo)28(wi.)]TJ 27.879 -13.55 Td[(I)-450(ju)1(\\273)-451(c)-1(a\\252e)-451(p)-27(op)-27(o\\252udn)1(ie)-451(j)1(ak)-450(pies)-451(w)28(aro)28(w)27(a\\252a)-450(na)-450(Jagn\\246)-451(i)-450(gd)1(y)-450(ta)-451(n)1(ades)-1(z\\252a)-451(o)]TJ -27.879 -13.549 Td[(zm)-1(ierzc)27(h)28(u)1(,)-333(w)-1(siad)1(\\252a)-334(zaraz)-334(n)1(a)-334(n)1(i\\241)-333(z)-334(g\\363ry)-333(o)-333(m)-1(i)1(\\246)-1(so.)]TJ 27.879 -13.549 Td[({)-358(A)-358(zjad)1(\\252am)-1(!)1(...)-358(tak)-357(mo)-56(je,)-358(j)1(ak)-358(i)-357(w)27(asz)-1(e,)-358(to)-358(u)1(rzn\\246\\252am)-359(k)56(a)28(w)28(a\\252)-358(z)-1(j)1(ad\\252am!)-358({)-358(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzia\\252a)-478(har)1(do)-478(i)-478(mimo)-479(\\273e)-479(j)1(u\\273)-478(pra)28(wie)-478(c)-1(a\\252y)-478(wiec)-1(z\\363r)-478(Hank)56(a)-478(ni)1(e)-479(da)28(w)28(a\\252a)-479(j)1(e)-1(j)]TJ 0 -13.549 Td[(sp)-28(ok)28(o)-55(ju)-389(d)1(un)1(deruj)1(\\241c)-390(za)27(wzi\\246)-1(cie,)-389(nie)-389(o)-28(dez)-1(w)28(a\\252a)-390(si\\246)-390(wi\\246ce)-1(j)-389(an)1(i)-389(s)-1(\\252o)28(w)27(a,)-389(j)1(akb)28(y)-389(z)-390(r)1(oz)-1(-)]TJ 0 -13.55 Td[(m)27(y)1(s)-1(\\252em)-367(d)1(ra\\273)-1(n)1(i\\241c.)-366(Na)28(w)27(et)-366(przysz)-1(\\252a)-366(na)-366(k)28(ol)1(ac)-1(j)1(\\246)-367(jak)1(b)28(y)-366(ni)1(gdy)-366(n)1(ic)-367(i)-366(z)-366(u\\261m)-1(i)1(e)-1(c)28(hem)-367(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-333(j)1(e)-1(j)-333(p)-27(ogl\\241d)1(a\\252)-1(a.)]TJ\nET\nendstream\nendobj\n1350 0 obj <<\n/Type /Page\n/Contents 1351 0 R\n/Resources 1349 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1349 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1355 0 obj <<\n/Length 9456      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(422)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Hank)56(a)-333(dziw)-333(s)-1(i\\246)-333(nie)-334(w\\261c)-1(i)1(e)-1(k\\252a)-333(z)-1(e)-333(z)-1(\\252o\\261c)-1(i,)-333(\\273e)-334(to)-333(jej)-333(pr)1(z)-1(em)-1(\\363)-27(c)-334(nie)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\252a.)]TJ 0 -13.549 Td[(Pr)1(z)-1(ez)-266(to)-265(ju)1(\\273)-266(c)-1(a\\252y)-265(wie)-1(cz\\363r)-266(d)1(opi)1(e)-1(k)56(a\\252a)-266(wsz)-1(ystki)1(m)-266(o)-266(b)29(yle)-266(co,)-266(spa\\242)-265(na)28(w)27(et)-265(w)27(cz)-1(e-)]TJ -27.879 -13.549 Td[(\\261niej)-323(wygani)1(a)-56(j)1(\\241c)-1(,)-323(\\273e)-324(to)-323(ju)1(tro)-323(Wielki)-323(Czw)27(ar)1(te)-1(k)-323(i)-323(tr)1(z)-1(a)-323(si\\246)-324(b)-27(\\246)-1(d)1(z)-1(i)1(e)-324(br)1(a\\242)-324(do)-323(p)-27(orz\\241d-)]TJ 0 -13.549 Td[(k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(I)-445(s)-1(ama)-445(te)-1(\\273)-445(leg\\252)-1(a)-445(ry)1(c)27(hl)1(e)-1(j)-445(n)1(i\\271li)-445(z)-1(azwycz)-1(a)-55(j,)-445(ale)-446(d)1(\\252ugo)-445(w)-445(no)-28(c)-445(nie)-446(zasn\\246\\252)-1(a)-445(i)]TJ -27.879 -13.55 Td[(p)-27(os)-1(\\252ysz)-1(a)28(wsz)-1(y)-333(za)-56(jad)1(\\252e)-334(nasz)-1(cze)-1(ki)1(w)27(an)1(ia)-334(p)1(ies)-1(k)28(\\363)28(w)-334(wyj)1(rza\\252a)-334(n)1(a)-334(d)1(w)27(\\363r)1(.)]TJ 27.879 -13.549 Td[(U)-333(Jagn)28(y)-333(jes)-1(zcz)-1(e)-334(si\\246)-334(\\261wie)-1(ci\\252o.)]TJ 0 -13.549 Td[({)-333(P)28(\\363\\271)-1(n)1(o,)-333(gaz)-1(u)-333(szk)28(o)-28(da,)-333(za)-334(d)1(armo)-334(go)-333(ni)1(e)-334(da)-55(j\\241!)-333({)-333(w)27(ar)1(kn\\246\\252a)-334(w)-333(s)-1(i)1(e)-1(n)1(i.)]TJ 0 -13.549 Td[({)-333(P)28(alcie)-334(i)-333(wy)-333(c)27(ho)-27(\\242)-1(b)28(y)-333(ca\\252\\241)-334(n)1(o)-28(c!)-334({)-333(o)-28(d)1(p)-28(o)28(wiedzia\\252a)-333(jej)-333(prze)-1(z)-333(drzwi.)]TJ 0 -13.549 Td[(T)83(ak)-333(si\\246)-334(zno)28(wu)-333(z)-1(e\\271)-1(l)1(i\\252a,)-333(\\273)-1(e)-334(d)1(opiero)-333(p)-27(o)-334(p)1(ie)-1(r)1(ws)-1(zyc)27(h)-333(k)1(urac)28(h)-333(z)-1(ad)1(rze)-1(ma\\252a.)]TJ 0 -13.549 Td[(A)-432(w)27(cz)-1(es)-1(n)29(ym)-433(ran)1(kiem,)-433(n)1(a)-433(sam)27(y)1(m)-433(\\261)-1(wit)1(aniu)1(,)-433(J)1(\\363z)-1(k)56(a,)-432(c)27(ho)-27(\\242)-433(\\261)-1(p)1(io)-28(c)28(h)-432(b)28(y\\252)-433(n)1(a)-56(j)1(-)]TJ -27.879 -13.55 Td[(wi\\246ks)-1(zy)83(,)-318(p)1(ierws)-1(za)-319(si\\246)-319(ze)-1(r)1(w)27(a\\252a)-318(z)-319(\\252\\363\\273k)55(a)-318(pr)1(z)-1(yp)-27(omina)-55(j\\241c)-318(jazd\\246)-319(p)-27(o)-319(zaku)1(p)28(y)-318(i)-318(biegn\\241c)]TJ 0 -13.549 Td[(bu)1(dzi\\242)-421(c)28(h\\252op)1(ak)28(\\363)27(w,)-420(\\273e)-1(b)28(y)-419(k)28(o)-1(n)1(ie)-420(s)-1(zyk)28(o)28(w)27(ali)1(,)-420(a)-421(n)1(a)28(w)27(et)-420(p)-28(otem)-420(hard)1(o)-420(s)-1(i\\246)-420(p)-28(osta)28(wi\\252a,)]TJ 0 -13.549 Td[(kiej)-333(Han)1(k)55(a)-333(pr)1(z)-1(y)1(k)55(aza\\252a)-334(P)1(ietrk)28(o)28(wi)-334(za\\252o\\273)-1(y)1(\\242)-334(do)-333(w)28(oz)-1(u)-333(gn)1(iad\\241.)]TJ 27.879 -13.549 Td[({)-463(Ja)-463(w)-463(desk)55(ac)28(h)-463(i)-463(\\261lep\\241)-463(k)28(ob)28(y)1(\\252\\241)-463(nie)-463(p)-28(o)-55(jad)1(\\246)-1(!)-462({)-463(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252a)-463(z)-463(p\\252ac)-1(zem)-1(.)-463({)]TJ -27.879 -13.549 Td[(C\\363\\273)-1(em)-303(to)-303(d)1(z)-1(iad)1(\\363)28(w)-1(k)56(a,)-302(b)28(y)-302(m)-1(n)1(ie)-303(w)-303(gno)-55(jn)1(ic)-1(ac)28(h)-303(w)28(oz)-1(i)1(li?)-303(Wi)1(e)-1(d)1(z)-1(\\241)-302(prze)-1(ciek)-303(w)-303(mie\\261)-1(cie,)]TJ 0 -13.55 Td[(cz)-1(yj)1(am)-334(c\\363rk)56(a!)-333(Oc)-1(i)1(e)-1(c)-334(b)29(y)-334(n)1(igd)1(y)-334(n)1(a)-333(to)-334(n)1(ie)-334(p)-27(oz)-1(w)28(olil)1(i...)]TJ 27.879 -13.549 Td[(Narob)1(i\\252a)-271(t)28(yle)-271(piek\\252a,)-271(\\273e)-272(p)-27(osta)28(w)-1(i)1(\\252)-1(a)-271(n)1(a)-271(s)-1(w)28(oim)-271(i)-271(wyj)1(e)-1(c)27(h)1(a\\252a)-271(br)1(yk)56(\\241)-271(i)-271(par)1(\\241)-271(k)28(oni,)]TJ -27.879 -13.549 Td[(z)-334(p)1(arobk)1(ie)-1(m)-333(na)-333(pr)1(z)-1(edn)1(im)-334(sie)-1(d)1(z)-1(eni)1(u,)-333(jak)-333(to)-333(gosp)-28(o)-28(d)1(yn)1(ie)-334(zaz)-1(wycz)-1(a)-55(j)-333(je\\271)-1(d)1(z)-1(i)1(\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-322(A)-323(cz)-1(erw)28(onego)-323(k)1(up)1(,)-323(a)-322(z\\252o)-28(c)-1(i)1(s)-1(tego)-323(i)-322(j)1(akie)-323(i)1(no)-322(b)-28(\\246d\\241)-322(pap)1(iery!)-322({)-322(w)27(o\\252a\\252)-322(z)-1(a)-322(ni\\241)]TJ -27.879 -13.549 Td[(Wit)1(e)-1(k)-302(z)-303(ogr)1(\\363)-28(dk)56(a,)-302(gd)1(z)-1(ie)-302(ju)1(\\273)-303(r\\363)28(wno)-302(ze)-303(\\261)-1(witan)1(iem)-303(rozbi)1(ja\\252)-302(na)-302(z)-1(agon)1(ik)56(ac)27(h)-302(p)-27(ec)-1(yn)29(y)-302(i)]TJ 0 -13.55 Td[(spul)1(c)27(hn)1(ia\\252)-302(z)-1(i)1(e)-1(mi\\246,)-302(gdy\\273)-302(Hank)56(a)-302(jes)-1(zcz)-1(e)-303(d)1(z)-1(i)1(s)-1(ia)-55(j)-302(zam)-1(i)1(e)-1(r)1(z)-1(a\\252a)-302(tam)-303(p)-27(osia\\242)-303(r)1(oz)-1(sad\\246.)-302(A)]TJ 0 -13.549 Td[(gdy)-333(gosp)-28(o)-28(d)1(yni)-333(d\\252u)1(\\273)-1(ej)-333(s)-1(i\\246)-334(n)1(ie)-334(p)-28(ok)56(azyw)28(a\\252)-1(a)-333(z)-334(c)27(ha\\252u)1(p)28(y)83(,)-333(lec)-1(i)1(a\\252)-334(na)-333(drog\\246)-334(i)-333(z)-334(dru)1(gimi)]TJ 0 -13.549 Td[(c)27(h)1(\\252opak)56(ami)-323(grze)-1(c)28(hota\\252)-323(p)-27(o)-28(d)-322(p\\252otami,)-323(\\273e)-323(to)-323(o)-28(d)-322(ran)1(a)-323(dzw)27(on)28(y)-322(umilk)1(\\252y)83(,)-323(j)1(ak)-323(to)-322(b)28(y\\252o)]TJ 0 -13.549 Td[(w)28(e)-334(z)-1(wycz)-1(a)-55(ju)-333(w)-333(ku)1(\\273)-1(den)-333(Wi)1(e)-1(lk)1(i)-334(Czw)27(ar)1(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(P)28(ogo)-28(d)1(a)-480(si\\246)-480(u)1(s)-1(tala\\252a)-479(p)-28(o)-27(dob)1(na)-479(w)27(cz)-1(ora)-55(jsz)-1(ej;)-479(sm)27(u)1(tniej)-479(jeno)-479(b)28(y\\252o)-479(jak)28(o\\261)-480(na)]TJ -27.879 -13.55 Td[(\\261w)-1(i)1(e)-1(cie)-430(i)-429(jak)1(b)28(y)-429(c)-1(i)1(s)-1(ze)-1(j)1(.)-429(W)-429(no)-28(cy)-429(przysz)-1(ed\\252)-429(z)-1(i)1(\\241b,)-429(to)-429(ranek)-429(p)-27(o)-28(dn)1(os)-1(i\\252)-429(si\\246)-430(osiwia\\252y)]TJ 0 -13.549 Td[(rosami,)-373(pr)1(z)-1(em)-1(gl)1(on)28(y)-373(a)-373(c)27(h)1(\\252o)-28(dn)28(y)84(,)-373(\\273e)-374(j)1(u\\273)-373(na)-373(du)1(\\273)-1(y)1(m)-374(d)1(niu)1(,)-373(a)-373(jes)-1(zc)-1(ze)-373(\\261)-1(wiegota\\252y)-373(ja-)]TJ 0 -13.549 Td[(sk)28(\\363\\252)-1(k)1(i)-397(na)-396(dac)27(h)1(ac)27(h)-396(p)-28(ok)1(ulon)1(e)-398(i)-396(rozg\\252o\\261)-1(n)1(ie)-1(j)-396(krzycz)-1(a\\252y)-396(g\\246)-1(si)-397(wyp)-27(\\246)-1(d)1(z)-1(on)1(e)-398(n)1(ad)-397(sta)28(w,)]TJ 0 -13.549 Td[(ale)-334(wie\\261,)-334(sk)28(oro)-333(jeno)-333(roze)-1(d)1(ni)1(a\\252)-1(o,)-333(wsta\\252a)-334(o)-27(d)-333(razu)-333(na)-333(r\\363)28(wne)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-1(c)28(h)-294(d)1(o)-295(\\261ni)1(ada\\253)-294(b)29(y\\252o)-294(dalek)28(o,)-294(a)-294(ju)1(\\273)-295(p)-27(o)28(w)-1(sta\\252)-294(rw)28(e)-1(tes)-295(i)-294(k)1(r\\246tanin)1(a,)-294(dziec)-1(i)]TJ -27.879 -13.55 Td[(za\\261)-263(wyp)-27(\\246)-1(d)1(z)-1(an)1(e)-263(z)-262(c)27(h)1(a\\252)-1(u)1(p,)-262(b)29(y)-262(ni)1(e)-263(pr)1(z)-1(es)-1(zk)56(adza\\252y)83(,)-262(n)1(os)-1(i)1(\\252y)-262(s)-1(i\\246)-262(p)-27(o)-262(drogac)28(h,)-262(gr)1(z)-1(ec)27(h)1(o)-28(c)-1(\\241c)]TJ 0 -13.549 Td[(a)-333(klek)28(ota)-56(j)1(\\241c)-334(w)-334(k)28(o\\252atki)1(.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-376(ma\\252o)-376(kt\\363ra)-376(p)-27(osz)-1(\\252a)-376(n)1(a)-376(m)-1(sz)-1(\\246,)-376(o)-28(d)1(pr)1(a)27(wia)-55(j\\241c\\241)-376(si\\246)-377(d)1(z)-1(i)1(s)-1(ia)-55(j)-376(b)-27(ez)-377(gran)1(ia)-376(i)]TJ -27.879 -13.549 Td[(dzw)28(onienia.)]TJ 27.879 -13.549 Td[(Sz\\252a)-317(ju)1(\\273)-318(b)-27(o)28(w)-1(i)1(e)-1(m)-317(os)-1(tatn)1(ia)-317(p)-27(ora,)-317(b)28(yc)28(h)-317(si\\246)-318(zabiera\\242)-317(do)-317(p)-27(orz\\241dk)28(\\363)28(w)-318(\\261wi\\241tec)-1(z-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h,)-400(a)-400(g\\252\\363)28(wnie)-400(do)-400(wypi)1(e)-1(ku)-399(c)27(hl)1(e)-1(b)-27(\\363)28(w)-401(i)-400(zac)-1(zyn)1(iania)-400(n)1(a)-400(plac)28(ki)-400(a)-400(o)27(w)28(e)-401(wym)28(y\\261lne)]TJ 0 -13.55 Td[(ku)1(kie\\252ki,)-409(tote)-1(\\273)-410(p)1(ra)28(wie)-410(w)-410(k)56(a\\273dej)-409(c)27(ha\\252u)1(pie)-410(ok)1(na)-409(i)-410(d)1(rzw)-1(i)-409(sta\\252y)-410(sz)-1(cze)-1(ln)1(ie)-410(p)-27(oprzy-)]TJ 0 -13.549 Td[(wierane)-431(b)29(y)-431(ciast)-431(n)1(ie)-431(zaz)-1(i\\246bi)1(\\242)-1(,)-430(bu)1(z)-1(o)28(w)28(a\\252)-1(y)-430(si\\246)-431(ogni)1(e)-1(,)-430(a)-430(z)-431(k)28(om)-1(in)1(\\363)28(w)-431(bi)1(\\252y)-431(d)1(ym)27(y)-430(w)]TJ 0 -13.549 Td[(p)-27(o)-28(c)27(h)1(m)27(u)1(rz)-1(on)1(e)-334(n)1(ie)-1(b)-27(o.)]TJ 27.879 -13.549 Td[(P)28(o)-399(ob)-27(orac)28(h)-399(za\\261)-399(rycz)-1(a\\252y)-398(in)28(w)28(e)-1(n)28(t)1(arz)-1(e,)-399(\\273\\252ob)28(y)-399(ogr)1(yza)-56(j\\241c)-399(z)-399(g\\252o)-28(du)1(,)-399(\\261wini)1(e)-400(p)29(y-)]TJ -27.879 -13.549 Td[(sk)55(a\\252y)-362(w)-363(ogr\\363)-27(dk)56(ac)27(h)1(,)-363(d)1(r\\363b)-362(si\\246)-363(w)27(a\\252\\246s)-1(a\\252)-362(p)-28(o)-362(dr)1(ogac)27(h,)-362(a)-362(dz)-1(i)1(e)-1(ci)-362(robi\\252y)84(,)-362(c)-1(o)-362(c)27(hcia\\252y)84(,)-363(za)]TJ 0 -13.55 Td[(\\252b)28(y)-330(si\\246)-330(w)27(o)-28(d)1(z)-1(\\241c)-330(i)-330(p)-27(o)-330(drze)-1(w)28(ac)27(h)-329(\\252a\\273)-1(\\241c)-330(z)-1(a)-330(wron)1(imi)-330(gniazdami,)-330(gd)1(y\\273)-330(nie)-330(b)28(y\\252o)-330(k)28(om)27(u)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(z)-1(i\\242,)-286(b)-27(o)-287(wsz)-1(ystkie)-286(k)28(obiet)28(y)-286(tak)-286(s)-1(i)1(\\246)-287(z)-1(a)-55(j\\246\\252y)-286(roz)-1(czynian)1(iem)-287(i)-286(to)-28(cz)-1(eni)1(e)-1(m)-286(b)-28(o-)]TJ\nET\nendstream\nendobj\n1354 0 obj <<\n/Type /Page\n/Contents 1355 0 R\n/Resources 1353 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1353 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1358 0 obj <<\n/Length 9259      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(423)]TJ -358.232 -35.866 Td[(c)27(h)1(e)-1(n)1(k)28(\\363)28(w)-1(,)-274(otu)1(lani)1(e)-1(m)-275(w)-274(pierzyn)28(y)-274(dzie\\273)-275(i)-274(niece)-1(k)-274(z)-275(cias)-1(tem,)-275(wsadzaniem)-275(d)1(o)-275(p)1(iec)-1(\\363)28(w,)]TJ 0 -13.549 Td[(\\273e)-386(j)1(akb)28(y)-385(o)-384(c)-1(a\\252ym)-385(\\261w)-1(i)1(e)-1(cie)-385(z)-1(ap)-27(om)-1(n)1(ia\\252y)84(,)-385(t)28(ym)-385(s)-1(i)1(\\246)-386(j)1(e)-1(d)1(yni)1(e)-386(f)1(rasuj\\241c,)-385(b)29(y)-385(z)-1(ak)56(alec)-385(nie)]TJ 0 -13.549 Td[(wlaz\\252)-334(d)1(o)-334(p)1(lac)27(k)56(a)-333(alb)-28(o)-333(si\\246)-334(n)1(ie)-334(spali\\252y)84(.)]TJ 27.879 -13.549 Td[(A)-426(wsz)-1(\\246dzie)-426(s)-1(z\\252o)-426(to)-426(sam)-1(o:)-425(u)-426(m\\252ynar)1(z)-1(a,)-425(u)-426(organ)1(ist\\363)28(w)-1(,)-425(na)-426(p)1(le)-1(b)1(ani)1(i,)-426(u)-425(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(arzy)-358(cz)-1(y)-357(k)28(omorn)1(ik)28(\\363)28(w)-1(,)-357(b)-27(o)-358(\\273e)-1(b)28(y)-357(n)1(a)-56(jb)1(iedni)1(e)-1(j)1(s)-1(zy)-358(i)-357(c)27(h)1(o)-28(\\242b)28(y)-357(na)-358(b)-27(\\363rg)-357(alb)-27(o)-358(za)-358(t\\246)]TJ 0 -13.55 Td[(ostatni\\241)-425(\\242wiartk)28(\\246,)-425(a)-425(m)27(usia\\252)-425(s)-1(ob)1(ie)-425(narz\\241dzi\\242)-426(j)1(akie)-425(takie)-425(\\261)-1(wi\\246c)-1(on)1(e)-1(,)-425(\\273e)-1(b)29(yc)27(h)-425(c)28(ho-)]TJ 0 -13.549 Td[(cia)-370(raz)-370(w)-371(r)1(ok,)-370(n)1(a)-370(Wielk)56(ano)-28(c,)-370(p)-27(o)-28(dj)1(e)-1(\\261\\242)-371(se)-371(d)1(o)-370(w)27(ol)1(i)-370(mi\\246)-1(siw)28(a)-370(i)-370(on)28(yc)28(h)-370(sm)-1(ak)28(o)28(wit)28(yc)27(h)]TJ 0 -13.549 Td[(r\\363\\273no\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[(\\233e)-481(za\\261)-481(n)1(ie)-481(ws)-1(z\\246dzie)-481(mieli)-480(s)-1(zaba\\261nik)1(i)-480(do)-480(wypi)1(e)-1(ku)1(,)-480(to)-480(w)-481(sadac)28(h)-480(m)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)1(am)-1(i)-445(g\\246s)-1(to)-445(kr)1(\\241\\273)-1(y\\252y)-445(d)1(z)-1(ieuc)28(h)28(y)-445(z)-446(n)1(ar\\246c)-1(zam)-1(i)-445(sz)-1(cz)-1(ap)1(,)-445(a)-445(niekiedy)-445(u)1(k)55(azyw)28(a\\252y)]TJ 0 -13.549 Td[(si\\246)-284(n)1(ad)-283(sta)28(w)27(em)-284(k)28(ob)1(iet)27(y)-282(um\\241c)-1(zone,)-283(rozbab)1(ran)1(e)-284(i)-283(k)1(ie)-1(b)29(y)-283(na)-283(p)1(ro)-28(ce)-1(sji)-282(o)27(w)28(e)-283(fere)-1(tr)1(on)28(y)84(,)]TJ 0 -13.55 Td[(ostro\\273nie)-255(d\\271w)-1(i)1(ga)-56(j)1(\\241c)-1(e)-255(w)-1(i)1(e)-1(lgac)28(hne)-255(stolnice)-255(i)-255(niec)27(ki)-254(p)-28(e\\252ne)-255(plac)28(k)28(\\363)27(w,)-255(p)-27(onak)1(ryw)28(an)28(yc)27(h)]TJ 0 -13.549 Td[(p)-27(o)-28(du)1(s)-1(zk)56(am)-1(i.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-365(w)-366(k)28(o\\261c)-1(iele)-366(sz\\252)-1(a)-365(rob)-27(ota:)-365(p)1(arob)-27(e)-1(k)-365(ksi\\246\\273)-1(y)-365(zw)27(ozi\\252)-366(z)-365(las)-1(u)-364(\\261)-1(wiercz)-1(aki)1(,)-366(a)]TJ -27.879 -13.549 Td[(organ)1(ista)-334(w)28(e)-1(sp)-27(\\363\\252)-334(z)-334(Ro)-28(c)28(hem)-334(i)-333(Jam)28(bro\\273ym)-334(j)1(\\241\\252)-334(p)1(rzys)-1(t)1(ra)-56(j)1(a\\242)-334(gr\\363b)-333(P)29(ana)-55(jez)-1(u)1(s)-1(o)28(wy)83(.)]TJ 27.879 -13.549 Td[(A)-372(naza)-56(j)1(utr)1(z)-1(,)-372(w)-372(pi)1(\\241te)-1(k,)-371(rob)-27(ota)-373(si\\246)-372(jes)-1(zc)-1(ze)-373(wzm)-1(og\\252a)-372(tak)-372(b)1(ardzo,)-372(\\273e)-373(na)28(w)28(e)-1(t)]TJ -27.879 -13.55 Td[(ma\\252o)-318(k)1(to)-317(do)-55(jrza\\252)-317(organ)1(is)-1(to)28(w)28(e)-1(go)-317(Jasia,)-317(k)1(t\\363re)-1(n)-316(z)-318(k)1(las)-318(n)1(a)-317(\\261)-1(wi\\246ta)-317(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252)-317(i)-317(spa-)]TJ 0 -13.549 Td[(ce)-1(ro)28(w)28(a\\252)-308(p)-28(o)-308(wsi)-308(w)-309(ok)1(na)-308(jeno)-308(zagl\\241d)1(a)-56(j\\241c,)-308(gd)1(y\\273)-309(an)1(i)-308(sp)-28(osobu)-307(z)-1(a)-55(jrze)-1(\\242)-308(b)28(y\\252o)-308(d)1(o)-308(k)28(ogo,)]TJ 0 -13.549 Td[(ni)-333(z)-333(kim)-334(p)-27(ogada\\242.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-265(an)1(i)-265(wle)-1(\\271\\242)-266(d)1(o)-265(kt\\363rej)-265(c)27(h)1(a\\252up)28(y)84(,)-265(b)-27(o)-266(wsz)-1(\\246dzie)-266(p)1(rze)-1(j)1(\\261)-1(cia)-265(i)-265(na)28(w)28(e)-1(t)-265(sady)-265(sta-)]TJ -27.879 -13.549 Td[(\\252y)-262(za)28(w)27(alon)1(e)-262(s)-1(zafami,)-261(\\252\\363\\273)-1(k)56(am)-1(i)-261(a)-262(spr)1(z)-1(\\246te)-1(m)-262(p)1(rze)-1(r\\363\\273n)28(ym,)-261(\\273)-1(e)-262(to)-262(i)1(z)-1(b)28(y)-261(bi)1(e)-1(li)1(li)-262(d)1(z)-1(isia)-55(j)-262(n)1(a)]TJ 0 -13.55 Td[(gw)28(a\\252)-1(t)1(,)-292(s)-1(zoro)28(w)28(ali)-292(p)-27(o)-28(d)1(\\252)-1(ogi)1(,)-292(a)-292(p)1(rze)-1(d)-291(domam)-1(i)-291(m)27(yl)1(i)-292(do)-291(c)-1(zys)-1(t)1(a)-292(obr)1(az)-1(y)84(,)-292(p)-27(o)27(wysta)28(wiane)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(\\261c)-1(ian)29(y)83(.)]TJ 27.879 -13.549 Td[(Wsz)-1(\\246dy)-263(za\\261)-264(taki)-263(gw)27(a\\252t)-263(pano)28(w)28(a\\252)-264(i)-263(kr\\246tani)1(na,)-263(\\273)-1(e)-264(w)-264(d)1(yrd)1(y)-263(biegali)-263(p)-28(ogan)1(ia)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-288(jes)-1(zcz)-1(e)-288(d)1(o)-288(p)-27(o\\261)-1(p)1(iec)27(h)28(u)-287(i)-287(wrza)27(w)28(\\246)-288(cz)-1(yn)1(i\\241c)-288(coraz)-288(wi\\246ksz)-1(\\241,)-287(dziec)-1(i)-287(na)28(w)28(e)-1(t)-287(p)-27(\\246)-1(d)1(z)-1(\\241c)-288(d)1(o)]TJ 0 -13.549 Td[(zgarn)28(yw)28(ania)-333(b)1(\\252)-1(ot)1(a)-334(w)-333(ob)-28(ej\\261c)-1(i)1(ac)27(h)-333(i)-333(wysyp)28(yw)28(ania)-333(\\273\\363\\252)-1(t)28(y)1(m)-334(pi)1(as)-1(ki)1(e)-1(m)-334(op)1(\\252otk)28(\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(A)-294(\\273e)-294(w)27(edle)-294(starego)-294(ob)28(ycza)-56(ju)-293(o)-28(d)-293(p)1(i\\241tku)-293(ran)1(a)-294(a\\273)-294(do)-294(n)1(iedzie)-1(l)1(i)-294(ni)1(e)-294(go)-28(dzi\\252o)-294(si\\246)]TJ -27.879 -13.549 Td[(je\\261\\242)-383(cie)-1(p)1(\\252e)-1(j)-382(w)28(arzy)83(,)-381(w)-1(i)1(\\246)-1(c)-382(g\\252)-1(o)-27(do)28(w)27(al)1(i)-382(\\271)-1(d)1(z)-1(iebk)28(o)-382(n)1(a)-382(c)27(h)28(w)28(a\\252\\246)-383(P)28(a\\253)1(s)-1(k)56(\\241)-382(p)-27(oprze)-1(sta)-55(j\\241c)-383(n)1(a)]TJ 0 -13.549 Td[(suc)27(h)29(ym)-334(c)27(h)1(lebie)-334(i)-333(ziem)-1(n)1(iak)56(ac)27(h)-333(p)1(ie)-1(czon)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-223(i)1(\\273)-224(p)1(rze)-1(z)-223(te)-223(dn)1(i)-223(tak)1(usie)-1(\\253)1(k)28(o)-223(k)56(a)-56(j)-222(in)1(dzie)-1(j)-222(d)1(z)-1(ia\\252o)-223(si\\246)-223(i)-223(u)-222(Boryn)1(\\363)28(w)-1(,)-222(t)28(yle)-223(jeno)]TJ -27.879 -13.549 Td[(r\\363\\273ni)1(e)-1(,)-303(\\273e)-304(w)-1(i)1(\\246)-1(ce)-1(j)-303(b)29(y\\252o)-304(r)1(\\241k)-303(i)-303(z)-304(grosz)-1(em)-304(skrzyb)-27(ot)-304(mni)1(e)-1(j)1(s)-1(zy)83(,)-303(to)-303(i)-303(ryc)28(hlej)-303(p)-27(ok)28(o\\253cz)-1(yl)1(i)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(goto)27(w)28(ani)1(a.)]TJ 27.879 -13.549 Td[(W)-365(pi\\241tek,)-365(ju\\273)-366(o)-366(sam)27(y)1(m)-366(z)-1(mierz)-1(c)28(h)28(u,)-365(Hank)56(a)-366(w)28(es)-1(p)-27(\\363\\252)-366(z)-366(Pietrk)1(ie)-1(m)-366(sk)28(o\\253cz)-1(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(bi)1(e)-1(leni)1(e)-299(izb)-298(i)-298(c)27(ha\\252u)1(p)28(y)84(,)-298(w)-1(i\\246c)-299(zac)-1(z\\246\\252)-1(a)-298(si\\246)-299(\\261pies)-1(zni)1(e)-299(m)27(y)1(\\242)-299(i)-298(pr)1(z)-1(y)28(ogarn)1(ia\\242)-299(d)1(o)-299(k)28(o\\261cio\\252a,)]TJ 0 -13.549 Td[(b)-27(o)-334(j)1(u\\273)-334(sz\\252)-1(y)-333(d)1(rugi)1(e)-334(k)28(obi)1(e)-1(t)28(y)-333(na)-333(z\\252)-1(o\\273enie)-334(d)1(o)-334(gr)1(obu)-333(Cia\\252a)-333(Jez)-1(u)1(s)-1(o)28(w)27(ego.)]TJ 27.879 -13.549 Td[(Na)-238(k)28(omini)1(e)-239(h)29(ucz)-1(a\\252)-238(d)1(u\\273y)-238(ogie\\253)-238(i)-237(w)-239(gr)1(apie,)-238(kt)1(\\363r\\241)-238(dw)28(o)-56(j)1(gu)-238(ci\\246\\273)-1(k)28(o)-238(b)29(y\\252o)-238(p)-27(o)-28(dj)1(\\241\\242)-1(,)]TJ -27.879 -13.549 Td[(goto)28(w)27(a\\252a)-382(si\\246)-383(ca\\252)-1(a)-382(\\261w)-1(i)1(\\253sk)55(a)-382(n)1(oga,)-382(napr)1(\\246)-1(d)1(c)-1(e)-382(w)27(cz)-1(ora)-55(j)-382(p)1(rz)-1(y)1(w)27(\\246dzona,)-382(w)-382(m)-1(n)1(ie)-1(j)1(s)-1(zym)]TJ 0 -13.55 Td[(za\\261)-306(s)-1(agan)1(ie)-306(kie\\252basy)-305(park)28(ota\\252y)84(,)-305(\\273)-1(e)-306(p)-27(o)-306(i)1(z)-1(b)1(ie)-306(c)27(h)1(o)-28(dzi\\252y)-305(takie)-306(wierc\\241c)-1(e)-306(w)-305(nozdr)1(z)-1(ac)27(h)]TJ 0 -13.549 Td[(sm)-1(aki)1(,)-386(a\\273)-386(Witek)-386(stru)1(ga)-56(j)1(\\241c)-1(y)-385(c)-1(osik)-386(wp)-27(o\\261)-1(r)1(\\363)-28(d)-386(d)1(z)-1(i)1(e)-1(ci)-386(r)1(az)-387(p)-27(o)-386(r)1(az)-387(n)1(os)-1(em)-386(p)-28(o)-27(c)-1(i\\241)-27(ga\\252)-386(i)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a\\252.)]TJ 27.879 -13.549 Td[(A)-274(p)-27(o)-28(d)-273(k)28(om)-1(in)1(e)-1(m,)-274(w)-274(sam)27(ym)-274(\\261wie)-1(tl)1(e)-275(ogn)1(ia,)-274(siedzia\\252y)-274(zgo)-28(dn)1(ie)-274(Jagna)-274(z)-274(J\\363z)-1(k)56(\\241,)]TJ -27.879 -13.549 Td[(za)-56(j\\246te)-341(pi)1(lni)1(e)-342(k)1(ras)-1(zeniem)-341(ja)-55(jek,)-341(a)-340(k)56(a\\273)-1(d)1(a)-341(s)-1(w)28(o)-56(j)1(e)-341(z)-341(os)-1(ob)1(na)-341(c)28(hr)1(oni\\252a)-341(i)-340(kr)1(yjomo,)-341(ab)29(y)]TJ 0 -13.55 Td[(si\\246)-305(b)1(arze)-1(j)-304(wysadzi\\242.)-304(Jagusia)-304(n)1(a)-56(jp)1(ierw)-304(m)27(y\\252a)-304(sw)27(o)-55(je)-304(w)-305(ciep\\252e)-1(j)-303(w)27(o)-27(dzie)-305(i)-304(wytar)1(te)-305(d)1(o)]TJ 0 -13.549 Td[(suc)27(h)1(a)-352(d)1(opiero)-351(z)-1(n)1(ac)-1(zy\\252a)-351(w)-352(r\\363\\273no\\261c)-1(i)-351(roztop)1(ion)28(ym)-352(w)28(oskiem)-1(,)-351(a)-351(p)-28(otem)-352(wpu)1(s)-1(zc)-1(za\\252a)]TJ\nET\nendstream\nendobj\n1357 0 obj <<\n/Type /Page\n/Contents 1358 0 R\n/Resources 1356 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1356 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1361 0 obj <<\n/Length 9717      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(424)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)28(e)-382(wrz)-1(\\241t)1(e)-1(k)-381(b)-27(e)-1(\\252k)28(o)-28(c\\241c)-1(y)-381(w)28(e)-382(tr)1(z)-1(ec)27(h)-381(gar)1(n)28(usz)-1(k)56(ac)27(h)1(,)-381(w)-382(kt)1(\\363ryc)27(h)-380(je)-382(k)28(ol)1(e)-1(j)1(no)-381(z)-1(an)28(u)1(rza\\252a.)]TJ 0 -13.549 Td[(\\233m)27(u)1(dn)1(a)-281(b)28(y\\252a)-280(rob)-27(ota,)-281(b)-27(o)-281(w)28(os)-1(k)-280(m)-1(i)1(e)-1(j)1(s)-1(cam)-1(i)-280(ni)1(e)-282(c)28(hcia\\252)-281(tr)1(z)-1(yma\\242)-281(alb)-27(o)-281(ja)-55(jk)56(a)-281(w)-281(r)1(\\246)-1(k)56(ac)27(h)]TJ 0 -13.549 Td[(si\\246)-371(gniet\\252y)-370(lub)-370(p)-27(\\246k)55(a\\252y)-370(pr)1(z)-1(y)-370(goto)28(w)27(an)1(iu,)-370(ale)-371(w)-370(k)28(o\\253cu)-370(nac)-1(zyn)1(i\\252y)-370(ic)27(h)-370(pr)1(z)-1(es)-1(z\\252o)-371(p)-27(\\363\\252)]TJ 0 -13.549 Td[(k)28(op)28(y)-333(i)-333(n)28(u)1(\\273)-334(dop)1(iero)-334(ok)56(azyw)28(a\\242)-334(s)-1(ob)1(ie)-334(i)-333(p)1(rz)-1(ec)27(h)29(w)27(ala\\242)-333(s)-1(i\\246)-334(p)1(i\\246kni)1(e)-1(j)-333(kr)1(as)-1(zon)28(ymi.)]TJ 27.879 -13.549 Td[(Ka)-55(j)-398(si\\246)-399(ta)-398(b)28(y)1(\\252)-1(o)-398(J\\363zce)-399(mie)-1(r)1(z)-1(y\\242)-398(z)-399(Jagu)1(s)-1(i)1(\\241!)-398(P)28(ok)56(az)-1(yw)28(a\\252a)-398(s)-1(w)28(o)-56(j)1(e)-1(,)-398(w)-398(pi)1(\\363rk)56(ac)27(h)]TJ -27.879 -13.55 Td[(\\273ytni)1(c)27(h)-402(i)-403(ce)-1(b)1(ulo)28(wyc)28(h)-403(goto)28(w)28(ane,)-403(\\273\\363\\252c)-1(iu)1(c)27(h)1(ne,)-403(b)1(ia\\252ymi)-403(\\014)1(glas)-1(ami)-402(ukr)1(as)-1(zone)-403(i)-402(tak)]TJ 0 -13.549 Td[(galan)28(t)1(e)-1(,)-430(jak)-430(m)-1(a\\252o)-431(k)1(t\\363ra)-431(b)28(y)-430(p)-27(otra\\014)1(\\252)-1(a,)-430(ale)-431(uj)1(rza)27(wsz)-1(y)-430(Jagusin)1(e)-1(,)-430(g\\246)-1(b)-27(\\246)-431(oz)-1(w)28(ar\\252a)-431(z)]TJ 0 -13.549 Td[(p)-27(o)-28(dziwu)-381(i)-382(mark)28(otn)1(o\\261)-1(\\242)-382(j)1(\\241)-382(c)27(h)29(yc)-1(i)1(\\252)-1(a.)-381(Jak\\273e)-1(,)-381(to)-381(a\\273)-383(mieni)1(\\252)-1(o)-381(s)-1(i)1(\\246)-382(w)-382(o)-28(c)-1(zac)27(h)1(,)-382(cz)-1(erw)28(one)]TJ 0 -13.549 Td[(b)28(y\\252y)84(,)-429(\\273\\363\\252)-1(t)1(e)-1(,)-429(\\014)1(o\\252k)28(o)27(w)28(e)-1(,)-428(i)-429(jak)-429(l)1(no)28(w)27(e)-429(kwiatuszki)-429(ni)1(e)-1(b)1(ie)-1(skie,)-429(a)-429(wida\\242)-429(b)28(y\\252o)-429(n)1(a)-430(n)1(ic)27(h)]TJ 0 -13.549 Td[(taki)1(e)-451(r)1(z)-1(ec)-1(zy)83(,)-449(\\273)-1(e)-450(pr)1(os)-1(to)-450(n)1(ie)-450(do)-450(u)28(wierze)-1(n)1(ia:)-450(k)28(ogu)1(t)28(y)-450(piej\\241ce)-450(na)-450(p)1(\\252o)-28(c)-1(i)1(e)-1(,)-450(g\\241ski)-450(n)1(a)]TJ 0 -13.549 Td[(dr)1(ugim)-336(s)-1(y)1(c)-1(za\\252y)-336(na)-336(m)-1(aciory)84(,)-336(u)28(w)28(alone)-336(w)-337(b)1(\\252)-1(o)-27(c)-1(ie;)-336(gdzie)-337(zn\\363)28(w)-336(s)-1(tad)1(o)-336(go\\252)-1(\\246bi)-336(b)1(ia\\252yc)27(h)]TJ 0 -13.55 Td[(nad)-380(p)-27(olam)-1(i)-380(c)-1(ze)-1(r)1(w)27(on)29(ym)-1(i)1(,)-381(a)-381(na)-381(i)1(nsz)-1(yc)28(h)-381(wzory)-381(tak)1(ie)-382(i)-380(c)-1(u)1(de\\253k)56(a,)-381(ki)1(e)-1(j)-380(na)-381(sz)-1(yb)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(gdy)-333(zamr\\363z)-334(j)1(e)-334(lo)-28(d)1(e)-1(m)-334(p)-27(otr)1(z)-1(\\246s)-1(ie.)]TJ 27.879 -13.549 Td[(Dziw)27(o)28(w)28(ali)-330(si\\246)-330(te)-1(m)28(u)-330(ogl\\241d)1(a)-56(j)1(\\241c)-331(raz)-330(p)-27(o)-330(raz,)-330(a)-330(kiej)-330(Han)1(k)55(a)-330(p)-27(o)28(wr\\363)-28(ci\\252a)-330(z)-331(Jagu)1(-)]TJ -27.879 -13.549 Td[(st)27(y)1(nk)56(\\241)-284(z)-284(k)28(o\\261c)-1(io\\252a,)-283(te)-1(\\273)-284(wzi\\246)-1(\\252a)-284(p)1(atrze)-1(\\242,)-284(al)1(e)-284(nic)-284(ni)1(e)-284(rz)-1(ek\\252a,)-283(jeno)-284(stara,)-283(pr)1(z)-1(ejrza)28(ws)-1(zy)]TJ 0 -13.549 Td[(ws)-1(zystkie,)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(w)-333(z)-1(d)1(umieniu)1(:)]TJ 27.879 -13.55 Td[({)-333(Sk)56(\\241d)-333(si\\246)-334(to)-333(bierze)-334(u)-333(cie)-1(b)1(ie?)-1(.)1(..)-333(no,)-333(n)1(o...)]TJ 0 -13.549 Td[({)-333(Sk)56(\\241d?..)1(.)-334(a)-333(sam)-1(o)-333(tak)-333(z)-334(g\\252o)28(wy)-334(p)-27(o)-28(d)-333(p)1(alce)-334(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(!)]TJ 0 -13.549 Td[(Urad)1(o)28(w)27(an)1(a)-334(b)28(y)1(\\252a!)]TJ 0 -13.549 Td[({)-333(Dobr)1(o)-28(dziejo)28(wi)-334(b)29(y)-333(par\\246)-334(zani)1(e)-1(\\261\\242)-1(!)]TJ 0 -13.549 Td[({)-333(\\221wi\\246c)-1(i\\252)-333(ju)1(tro)-333(b)-27(\\246)-1(d)1(z)-1(ie,)-333(to)-333(m)27(u)-333(p)-27(o)-28(dam,)-333(mo\\273)-1(e)-334(w)28(e\\271)-1(mie...)]TJ 0 -13.55 Td[({)-231(T)83(ak)1(ie)-231(\\261)-1(li)1(c)-1(zno\\261c)-1(i)1(,)-231(\\273e)-232(d)1(obr)1(o)-28(dziej)-231(n)1(ie)-231(widzieli!..)1(.)-231(zdziwuj)1(\\241)-231(s)-1(i)1(\\246)-232(wielce)-1(!)-230({)-231(mru)1(k-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-333(ur\\241)-27(gliwie)-334(Han)1(k)55(a,)-333(gd)1(y)-333(Jagna)-333(p)-28(osz\\252)-1(a)-333(n)1(a)-334(sw)27(o)-55(j\\241)-333(s)-1(tr)1(on\\246,)-333(b)-28(o)-333(ju)1(\\273)-334(p)-27(\\363\\271)-1(n)1(o)-334(b)29(y\\252o.)]TJ 27.879 -13.549 Td[(Na)-333(w)-1(si)-333(te\\273)-334(d\\252u)1(go)-334(w)-333(no)-28(c)-333(s)-1(iedzieli)-333(te)-1(go)-333(wiec)-1(zora.)]TJ 0 -13.549 Td[(Chm)28(urn)1(o)-418(b)29(y\\252o)-418(n)1(a)-418(\\261wiec)-1(ie)-418(i)-417(ciem)-1(n)1(o,)-417(c)27(ho)-28(\\242)-417(s)-1(p)-27(ok)28(o)-56(j)1(nie;)-417(m)-1(\\252y)1(n)-417(jeno)-417(turk)28(ot)1(a\\252)]TJ -27.879 -13.549 Td[(za)27(wzi\\246)-1(cie,)-338(a)-339(p)-27(o)-338(c)27(ha\\252u)1(pac)27(h)-337(pra)28(wie)-339(d)1(o)-339(p)-27(\\363\\252no)-27(c)27(k)56(a)-339(\\261wie)-1(ci\\252o)-338(s)-1(i)1(\\246)-339(w)-339(okn)1(ac)27(h)1(,)-339(\\273e)-339(k\\252ad)1(\\252y)]TJ 0 -13.55 Td[(si\\246)-480(\\261wiat\\252a)-479(na)-479(dr)1(ogac)27(h)1(,)-479(a)-479(k)55(a)-55(j\\261)-479(niek)56(a)-56(j)-479(a\\273)-479(na)-479(sta)28(w)-1(i)1(e)-480(si\\246)-480(tr)1(z)-1(\\246s)-1(\\252y)-479(wr)1(az)-480(z)-480(w)28(o)-28(d)1(\\241:)]TJ 0 -13.549 Td[(ma)-56(j)1(s)-1(tr)1(o)27(w)28(ali)-333(ano)-333(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(e)-334(pr)1(z)-1(y)28(o)-27(dzie)-1(wy)-333(i)-333(k)28(o\\253cz)-1(y)1(li)-333(jes)-1(zc)-1(ze)-334(rob)-27(ot)28(y)84(.)]TJ 27.879 -13.549 Td[(Sob)-27(ota)-434(za\\261)-434(pr)1(z)-1(ysz)-1(\\252a)-434(ca\\252kiem)-434(c)-1(i)1(e)-1(p)1(\\252)-1(a)-433(i)-434(mg\\252am)-1(i)-433(rzadkimi)-433(otulon)1(a,)-434(ale)-434(tak)]TJ -27.879 -13.549 Td[(jak)28(o\\261)-331(w)28(e)-1(se)-1(l)1(nie)-331(b)28(y)1(\\252o)-331(na)-330(\\261)-1(wiec)-1(ie,)-331(\\273e)-331(nar)1(\\363)-28(d,)-330(c)27(h)1(o)-28(c)-1(ia\\273)-331(p)-27(o)-331(ci\\246\\273)-1(ki)1(e)-1(j)-330(pr)1(ac)-1(y)-330(w)27(cz)-1(or)1(a)-56(j)1(s)-1(ze)-1(j)1(,)]TJ 0 -13.549 Td[(\\273w)27(a)28(w)27(o)-333(si\\246)-334(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-334(d)1(o)-334(n)1(o)27(wyc)28(h)-333(utr)1(ud)1(z)-1(e\\253)-333(i)-333(tur)1(bacji.)]TJ 27.879 -13.55 Td[(A)-444(pr)1(z)-1(ed)-444(k)28(o\\261)-1(cio\\252e)-1(m)-444(wnet)-445(si\\246)-445(zatrz\\246)-1(s\\252o)-445(o)-27(d)-444(przekrzyk)28(\\363)28(w)-445(i)-444(bi)1(e)-1(g\\363)28(w,)-444(b)-28(o)-444(jak)]TJ -27.879 -13.549 Td[(to)-489(b)28(y\\252o)-489(w)28(e)-490(zwyc)-1(za)-56(j)1(u)-489(o)-27(dwie)-1(czn)28(ym,)-489(w)-489(k)55(a\\273d\\241)-489(Wi)1(e)-1(lk)56(\\241)-489(S)1(ob)-28(ot\\246)-489(z)-1(ebr)1(ali)-489(si\\246)-490(zaraz)]TJ 0 -13.549 Td[(ran)1(kiem)-468(c)28(ho)28(w)27(a\\242)-467(\\273)-1(u)1(r)-467(i)-467(grzeba\\242)-468(\\261ledzia,)-467(jak)28(o)-467(t)28(yc)28(h)-467(n)1(a)-56(jgor)1(s)-1(zyc)27(h)-466(trap)1(ic)-1(i)1(e)-1(li)-467(p)1(rze)-1(z)]TJ 0 -13.549 Td[(Wielki)-224(P)28(ost.)-225(Ni)1(e)-226(b)29(y\\252o)-225(par)1(obk)28(\\363)28(w)-225(ni)-224(starsz)-1(yc)28(h,)-224(to)-225(zm)-1(\\363)28(wi\\252y)-225(si\\246)-225(na)-224(to)-225(sam)-1(e)-225(c)27(h)1(\\252opaki)1(,)]TJ 0 -13.549 Td[(jeno)-351(z)-352(Ja\\261)-1(k)1(ie)-1(m)-352(P)1(rze)-1(wrotn)29(ym)-352(na)-351(c)-1(ze)-1(le,)-352(p)-27(orw)28(ali)-351(gdzies)-1(ik)-351(wie)-1(l)1(ki)-352(gar)1(nek)-352(z)-352(\\273urem,)]TJ 0 -13.549 Td[(do)-333(kt\\363r)1(e)-1(go)-333(jesz)-1(cz)-1(e)-334(d)1(o\\252o\\273)-1(yl)1(i)-333(r\\363\\273)-1(n)29(yc)27(h)-333(p)1(as)-1(k)1(udn)1(o\\261)-1(ci.)]TJ 27.879 -13.55 Td[(Wit)1(e)-1(k)-437(da\\252)-437(s)-1(i)1(\\246)-438(nam\\363)28(w)-1(i)1(\\242)-438(i)-437(p)-28(on)1(i\\363s)-1(\\252)-437(garn)1(e)-1(k)-437(na)-437(pl)1(e)-1(cac)27(h)-437(w)-438(siatce)-438(o)-28(d)-437(se)-1(r)1(\\363)27(w,)]TJ -27.879 -13.549 Td[(dr)1(ugi)-391(za\\261)-391(c)27(h\\252op)1(ak)-391(wl\\363k\\252)-391(p)-27(ob)-28(ok)-391(n)1(a)-391(p)-28(ostron)1(ku)-390(\\261)-1(ledzia,)-391(wystru)1(ganego)-391(z)-392(d)1(rze)-1(w)28(a.)]TJ 0 -13.549 Td[(\\233ur)-281(ze)-282(\\261)-1(ledziem)-282(s)-1(z\\252y)-281(w)-282(par)1(z)-1(e)-282(p)1(rz)-1(o)-27(dem)-1(,)-281(a)-282(za)-282(n)1(imi)-282(ca\\252\\241)-282(h)28(u)1(rm\\241)-282(r)1(e)-1(sz)-1(ta,)-281(grzec)27(ho)-27(c)-1(\\241c,)]TJ 0 -13.549 Td[(k)28(o\\252ata)-56(j)1(\\241c)-362(a)-361(wrz)-1(esz)-1(cz)-1(\\241c,)-361(c)-1(o)-361(in)1(o)-362(gar)1(dzie)-1(l)1(i)-361(s)-1(tar)1(c)-1(zy\\252o.)-361(Jas)-1(i)1(e)-1(k)-361(wi\\363)-28(d)1(\\252)-362(wsz)-1(ystkic)28(h,)-361(b)-27(o)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(cia\\273)-417(g\\252upa)28(wy)-416(b)28(y\\252)-417(i)-416(ni)1(e)-1(mra)28(w)28(a,)-417(ale)-417(d)1(o)-417(p)1(s)-1(ic)28(h)-416(\\014gl\\363)28(w)-417(g\\252o)28(w)27(\\246)-417(mia\\252)-416(i)-417(spr)1(a)27(wn)1(o\\261)-1(\\242.)]TJ 0 -13.55 Td[(Ob)-27(e)-1(szli)-460(w)-460(p)1(ro)-28(ces)-1(j)1(i)-460(ca\\252y)-460(sta)28(w)-460(i)-460(k)28(o\\252o)-459(k)28(o\\261)-1(cio\\252a)-460(skr\\246c)-1(ali)-459(j)1(u\\273)-460(na)-459(top)-28(ol)1(o)27(w)28(\\241)-460(d)1(rog\\246,)]TJ 0 -13.549 Td[(k)56(a)-56(j)-375(s)-1(i)1(\\246)-377(t)1(o)-376(m)-1(i)1(a\\252)-376(o)-28(db)29(y\\242)-376(p)-28(o)-28(c)28(ho)28(w)28(e)-1(k,)-375(gdy)-375(w)-1(t)1(e)-1(m)-376(Jasie)-1(k)-375(w)27(al)1(n\\241\\252)-376(\\252opat)1(\\241)-376(w)-376(garn)1(e)-1(k,)-375(\\273)-1(e)]TJ\nET\nendstream\nendobj\n1360 0 obj <<\n/Type /Page\n/Contents 1361 0 R\n/Resources 1359 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1359 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1364 0 obj <<\n/Length 9791      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(425)]TJ -358.232 -35.866 Td[(rozlec)-1(ia\\252)-333(s)-1(i)1(\\246)-334(w)-334(k)56(a)28(w)27(a\\252k)1(i,)-333(a)-334(\\273ur)-333(z)-333(on)28(ymi)-333(r\\363\\273)-1(n)1(o\\261)-1(ciami)-333(p)-28(ol)1(a\\252)-334(si\\246)-334(p)-27(o)-334(W)1(itku)1(.)]TJ 27.879 -13.549 Td[(Ucie)-1(c)28(ha)-433(zapan)1(o)28(w)27(a\\252a,)-433(\\273e)-433(a\\273)-433(przysiadal)1(i)-433(n)1(a)-433(dr)1(o)-28(dze)-1(,)-432(ale)-433(Witek)-433(si\\246)-433(ze)-1(\\271li\\252)-433(i)]TJ -27.879 -13.549 Td[(pr)1(os)-1(to)-295(z)-296(go\\252ymi)-295(r\\246k)28(om)-1(a)-295(rzuci\\252)-295(s)-1(i\\246)-295(na)-295(Ja\\261)-1(k)56(a,)-295(p)-27(obi\\252)-295(s)-1(i)1(\\246)-296(i)-295(z)-296(dr)1(ugimi;)-295(a\\273)-296(wyrw)28(a)28(ws)-1(zy)]TJ 0 -13.549 Td[(si\\246)-334(p)-27(ole)-1(cia\\252)-333(z)-334(ryk)1(ie)-1(m)-333(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(Do\\252o\\273y\\252a)-294(m)27(u)-294(j)1(e)-1(sz)-1(cze)-295(Hank)56(a)-294(o)-28(d)-293(s)-1(iebi)1(e)-295(za)-294(z)-1(ni)1(s)-1(zc)-1(zon)28(y)-294(ca\\252kiem)-295(sp)-28(encere)-1(k)-293(i)-294(w)]TJ -27.879 -13.55 Td[(las)-334(p)-27(ogn)1(a\\252)-1(a)-333(p)-27(o)-334(b)-27(oro)28(win)1(o)27(w)28(e)-334(ga\\252\\241zki)-333(i)-333(w)27(\\241sy)-334(za)-56(j)1(\\246)-1(cze)-1(.)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-303(si\\246)-302(z)-303(n)1(iego)-302(z)-1(e\\261)-1(mia\\252)-302(Pi)1(e)-1(tr)1(e)-1(k,)-301(a)-302(i)-302(J\\363z)-1(k)56(a)-302(n)1(ie)-303(p)-27(o\\273a\\252)-1(o)28(w)28(a\\252a,)-302(pi)1(lnie)-302(wysy-)]TJ -27.879 -13.549 Td[(pu)1(j\\241c)-368(sz)-1(erok)1(ie)-368(op\\252otki)1(,)-368(a\\273)-367(do)-368(d)1(rogi,)-367(p)1(ias)-1(k)1(ie)-1(m,)-367(pr)1(z)-1(ywiez)-1(i)1(on)28(ym)-368(sp)-28(o)-27(d)-367(c)-1(me)-1(n)29(tarza,)]TJ 0 -13.549 Td[(b)-27(o)-285(tam)-285(b)28(y\\252)-285(n)1(a)-56(j\\273\\363\\252c)-1(i)1(e)-1(j)1(s)-1(zy;)-285(wysypa\\252a)-284(te)-1(\\273)-285(c)-1(a\\252y)-284(z)-1(a)-55(jazd)-285(p)1(rz)-1(ed)-284(gankiem)-285(i)-285(\\261c)-1(i)1(e)-1(\\273k)55(a)-284(p)-28(o)-28(d)]TJ 0 -13.549 Td[(ok)56(ap)-28(em,)-333(\\273)-1(e)-334(j)1(akb)28(y)-333(opasa\\252a)-333(c)27(ha\\252u)1(p)-28(\\246)-333(w)-334(\\273\\363\\252)-1(t\\241)-333(ws)-1(t)1(\\246)-1(g\\246.)]TJ 27.879 -13.549 Td[(A)-333(w)-334(Boryn)1(o)28(w)27(ej)-333(iz)-1(b)1(ie)-334(j)1(u\\273)-334(si\\246)-334(wzi\\246li)-333(s)-1(zyk)28(o)28(w)27(a\\242)-333(\\261)-1(wi\\246c)-1(on)1(e)-1(.)]TJ 0 -13.55 Td[(Iz)-1(b)1(a)-420(b)28(y)1(\\252a)-420(wym)27(y)1(ta)-420(i)-419(piaskiem)-420(wysypan)1(a,)-420(okn)1(a)-420(cz)-1(y)1(s)-1(te)-420(i)-419(\\261)-1(cian)28(y)84(,)-420(a)-419(obr)1(az)-1(y)]TJ -27.879 -13.549 Td[(omie)-1(cion)1(e)-334(z)-334(pa)-55(j\\246c)-1(zyn)1(,)-333(Jagusine)-333(z)-1(a\\261)-334(\\252\\363\\273k)28(o)-334(p)1(i\\246knie)-333(c)27(h)28(u)1(s)-1(tk)56(\\241)-333(pr)1(z)-1(yk)1(ryte.)]TJ 27.879 -13.549 Td[(Hank)56(a)-344(z)-344(Jagusi\\241)-344(i)-344(Domini)1(k)28(o)27(w)28(\\241,)-344(c)27(h)1(o)-28(\\242)-345(n)1(ie)-345(m\\363)28(wi\\252y)-344(pr)1(a)27(wie)-344(z)-345(sob\\241,)-344(u)1(s)-1(t)1(a)27(wi\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-274(sz)-1(cz)-1(y)1(to)28(w)-1(y)1(m)-275(okn)1(e)-1(m,)-274(w)-274(p)-27(o)-28(dle)-274(Boryn)1(o)27(w)28(e)-1(go)-274(\\252\\363\\273k)56(a,)-274(du)1(\\273)-1(y)-274(st\\363\\252,)-274(nak)1(ryt)28(y)-274(cieniu)1(\\261)-1(-)]TJ 0 -13.549 Td[(k)56(\\241,)-402(bia\\252\\241)-402(p\\252ac)27(h)29(t\\241,)-402(kt\\363rej)-402(wr\\246b)28(y)-402(oblepi)1(\\252)-1(a)-402(Jagu)1(s)-1(ia)-402(sz)-1(erokiem)-403(p)1(as)-1(em)-403(cz)-1(erw)28(on)28(yc)27(h)]TJ 0 -13.55 Td[(wystrzyganek.)-245(Na)-245(\\261ro)-28(d)1(ku)1(,)-245(z)-245(kra)-56(j)1(a)-245(o)-28(d)-244(okna,)-244(p)-28(osta)28(wili)-245(wysok)56(\\241)-245(P)28(asyjk)28(\\246,)-245(p)1(rz)-1(y)1(bran)1(\\241)]TJ 0 -13.549 Td[(pap)1(iero)28(wym)-1(i)-273(kwiatami,)-274(a)-274(p)1(rze)-1(d)-273(ni\\241)-274(n)1(a)-274(wywr\\363)-28(conej)-274(d)1(onicy)-274(b)1(aran)1(k)55(a)-274(z)-274(mas)-1(\\252a,)-273(tak)]TJ 0 -13.549 Td[(zm)27(y\\261lni)1(e)-343(pr)1(z)-1(ez)-343(Jagn)1(\\246)-343(ucz)-1(y)1(nion)1(e)-1(go,)-342(\\273e)-343(kiej)-342(\\273ywy)-342(s)-1(i\\246)-342(w)-1(i)1(dzia\\252:)-342(o)-28(c)-1(zy)-342(mia\\252)-343(ze)-343(ziarn)]TJ 0 -13.549 Td[(r\\363\\273a\\253co)28(w)-1(y)1(c)27(h)-446(wlepion)1(e)-1(,)-446(a)-446(ogon,)-446(u)1(s)-1(zy)83(,)-446(k)28(op)29(ytk)56(a)-447(i)-446(c)28(hor\\241)-27(gie)-1(wk)28(\\246)-447(z)-446(c)-1(ze)-1(r)1(w)27(on)1(e)-1(j)1(,)-446(p)-28(o-)]TJ 0 -13.549 Td[(strz\\246)-1(p)1(ionej)-331(w)27(e\\252n)28(y)83(.)-331(Dop)1(ie)-1(r)1(o)-332(za\\261)-332(pierws)-1(zym)-332(k)28(o\\252em)-332(leg\\252y)-332(c)27(h)1(leb)28(y)-331(p)28(ytlo)28(w)28(e)-332(i)-332(k)28(o\\252acz)-1(e)]TJ 0 -13.55 Td[(psze)-1(n)1(ne)-236(z)-236(mas)-1(\\252em)-236(z)-1(agn)1(iatan)1(e)-236(i)-236(n)1(a)-236(mleku,)-235(p)-27(o)-236(n)1(ic)27(h)-235(n)1(as)-1(t\\246p)-28(o)28(w)28(a\\252y)-236(p)1(lac)27(ki)-235(\\273\\363\\252c)-1(iu)1(c)27(h)1(ne,)]TJ 0 -13.549 Td[(a)-322(ro)-28(d)1(z)-1(yn)1(k)56(am)-1(i)-322(kieb)28(y)-322(t)28(ymi)-322(gw)27(o\\271dziami)-323(g\\246sto)-323(p)-27(onab)1(ijan)1(e)-1(;)-322(b)28(y)1(\\252y)-323(i)-322(mniejsze)-1(,)-322(J\\363zine)]TJ 0 -13.549 Td[(i)-319(dzie)-1(ci,)-319(b)28(y\\252y)-319(i)-320(t)1(akie)-320(s)-1(p)-27(ec)-1(j)1(a\\252y)-320(z)-320(se)-1(r)1(e)-1(m,)-320(i)-319(d)1(rugi)1(e)-320(ja)-56(j)1(e)-1(czne)-320(c)-1(u)1(krem)-320(p)-27(os)-1(y)1(pane)-320(i)-319(t)28(ym)]TJ 0 -13.549 Td[(mac)-1(zkiem)-462(s)-1(\\252o)-28(d)1(z)-1(i)1(u\\261kim,)-462(a)-461(na)-461(os)-1(tatk)1(u)-461(p)-28(osta)28(w)-1(i)1(li)-461(w)-1(i)1(e)-1(lk)56(\\241)-462(mic)28(h\\246)-462(ze)-462(z)-1(w)28(o)-56(j)1(e)-1(m)-462(k)1(ie)-1(\\252-)]TJ 0 -13.549 Td[(bas,)-331(ub)1(ran)28(y)1(c)27(h)-331(j)1(a)-56(jk)56(ami)-331(ob\\252u)1(pan)28(y)1(m)-1(i,)-331(a)-331(n)1(a)-332(b)1(rytf)1(ance)-332(ca\\252\\241)-332(\\261wi\\253sk)56(\\241)-331(nog\\246)-332(i)-331(gal)1(an)28(t)28(y)]TJ 0 -13.55 Td[(k)56(arw)28(as)-298(g\\252o)28(wiz)-1(n)29(y)83(,)-297(wsz)-1(ystk)28(o)-297(z)-1(a\\261)-297(p)-28(ou)1(bi)1(e)-1(ran)1(e)-298(j)1(a)-56(j)1(k)55(ami)-297(kr)1(as)-1(zon)28(ymi,)-297(cz)-1(ek)56(a)-56(j)1(\\241c)-298(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(na)-326(Witk)56(a,)-326(b)28(y)-327(p)-27(onat)28(y)1(k)55(a\\242)-327(zielonej)-327(b)-27(oro)28(win)28(y)-326(i)-326(t)27(y)1(m)-1(i)-326(z)-1(a)-55(j\\246c)-1(zymi)-327(w)28(\\241s)-1(ami)-326(ople\\261)-1(\\242)-327(st\\363\\252)]TJ 0 -13.549 Td[(ca\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(A)-275(t)28(yl)1(e)-275(c)-1(o)-275(sk)28(o\\253cz)-1(y)1(\\252y)83(,)-274(s)-1(\\241siadk)1(i)-275(j)1(\\246)-1(\\252y)-274(z)-276(w)28(oln)1(a)-275(znos)-1(i)1(\\242)-275(s)-1(w)28(o)-56(j)1(e)-276(n)1(a)-275(misk)55(ac)28(h,)-274(niec)-1(u)1(\\252-)]TJ -27.879 -13.549 Td[(k)56(ac)27(h)-300(a)-301(d)1(oni)1(c)-1(ac)27(h)-300(i)-300(usta)28(wia\\242)-301(je)-301(n)1(a)-301(\\252a)28(wie)-301(p)-27(ob)-28(ok)-300(sto\\252u,)-300(gdy\\273)-301(i)1(no)-301(w)-300(kilk)1(u)-300(c)27(ha\\252u)1(pac)27(h)]TJ 0 -13.55 Td[(co)-266(prze)-1(d)1(niejszyc)27(h)-265(gos)-1(p)-27(o)-28(dar)1(z)-1(y)-265(z)-1(b)1(ie)-1(r)1(a\\242)-267(si\\246)-267(ze)-266(\\261)-1(wi\\246c)-1(on)28(y)1(m)-267(ksi\\241d)1(z)-267(n)1(ak)55(azyw)28(a\\252,)-266(\\273)-1(e)-266(m)27(u)]TJ 0 -13.549 Td[(to)-333(c)-1(zas)-1(u)-332(brak)28(o)28(w)28(a\\252)-1(o)-333(c)27(h)1(o)-28(d)1(z)-1(i\\242)-333(p)-28(o)-333(ws)-1(zystkic)27(h)1(.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-272(mia\\252)-272(na)-55(jb)1(li\\273e)-1(j)1(,)-272(to)-272(\\261wi\\246)-1(ci\\252)-272(n)1(a)-272(os)-1(tatk)1(u,)-272(n)1(ieraz)-272(ju)1(\\273)-273(o)-272(sam)27(y)1(m)-273(zmie)-1(r)1(z)-1(c)28(h)28(u.)]TJ 0 -13.549 Td[(P)28(or)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252y)-323(si\\246)-324(b)-27(e)-1(z)-323(d\\252u)1(\\273)-1(sz)-1(ej)-323(p)-27(ogw)27(ary)84(,)-323(b)28(y)-323(zd\\241\\273y\\242)-324(j)1(e)-1(sz)-1(cze)-324(do)-323(k)28(o\\261c)-1(io\\252a)-323(na)]TJ -27.879 -13.549 Td[(ur)1(o)-28(cz)-1(ysto\\261)-1(\\242)-250(p)-27(o\\261)-1(wi\\246c)-1(enia)-250(ogn)1(ia)-250(i)-250(w)27(o)-28(d)1(y)83(,)-250(zalew)27(a)-55(j\\241c)-250(prze)-1(d)1(te)-1(m)-250(ogni)1(s)-1(k)56(a)-250(w)-251(c)28(ha\\252up)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(b)28(y)-333(j)1(e)-334(z)-1(n)1(o)28(w)-1(u)-333(r)1(oz)-1(n)1(ie)-1(ci\\242)-334(t)28(y)1(m)-334(m\\252)-1(o)-27(dym,)-333(p)-27(o\\261)-1(wi\\246c)-1(on)28(y)1(m)-334(ogni)1(e)-1(m.)]TJ 27.879 -13.55 Td[(P)28(olecia\\252a)-334(n)1(a)-334(t)1(o)-334(i)-333(J\\363zk)55(a)-333(zabra)28(wsz)-1(y)-333(dziec)-1(i)-333(z)-334(sob\\241.)]TJ 0 -13.549 Td[(Ale)-339(s)-1(iedzieli)-339(d)1(o\\261)-1(\\242)-339(d\\252ugo,)-338(b)-28(o)-339(d)1(opiero)-339(w)-339(s)-1(amo)-339(p)-27(o\\252)-1(u)1(dn)1(ie)-340(p)-27(o)28(wraca\\252)-1(y)-338(k)28(obiet)28(y)83(,)]TJ -27.879 -13.549 Td[(ostro\\273nie)-334(p)1(rzys)-1(\\252an)1(ia)-56(j)1(\\241c)-334(i)-333(c)27(h)1(ron)1(i\\241c)-334(\\261w)-1(i)1(e)-1(ce)-334(z)-1(ap)1(alone)-333(w)-334(k)28(o\\261c)-1(iele...)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-415(przyn)1(ios)-1(\\252a)-415(w)27(o)-28(d)1(y)-416(ca\\252\\241)-416(\\015aszk)28(\\246)-417(i)-415(ogie\\253,)-416(k)1(t\\363rym)-416(zaraz)-416(Hank)56(a)-416(r)1(oz)-1(p)1(a-)]TJ -27.879 -13.549 Td[(li\\252a)-473(d)1(rw)28(a)-473(przygoto)28(w)28(ane)-473(i)-473(pi)1(e)-1(r)1(w)-1(sz)-1(a)-473(t)1(e)-1(\\273)-473(w)27(o)-28(d)1(y)-473(\\261w)-1(i)1(\\246)-1(conej)-473(p)-27(opi)1(\\252)-1(a)-472(da)-56(j)1(\\241c)-474(k)28(ol)1(e)-1(j)1(nie)]TJ 0 -13.55 Td[(ws)-1(zystkim)-393({)-393(o)-28(d)-392(c)27(hor)1(\\363b)-393(gard)1(z)-1(i)1(e)-1(li)-392(p)-28(on)1(o)-393(s)-1(tr)1(z)-1(eg\\252a)-393({)-393(a)-393(p)-28(ot)1(e)-1(m)-393(s)-1(k)1(ropi)1(\\252)-1(a)-393(n)1(i\\241)-393(in)29(w)27(en-)]TJ 0 -13.549 Td[(tarz)-387(i)-387(d)1(rze)-1(win)28(y)-386(ro)-28(d)1(ne)-387(w)-387(s)-1(ad)1(z)-1(i)1(e)-1(,)-387(\\273e)-387(to)-387(s)-1(i)1(\\246)-388(p)1(rzyc)-1(zyn)1(ia\\252o)-387(do)-387(u)1(ro)-28(d)1(z)-1(a)-55(j\\363)28(w)-387(i)-387(d)1(a)27(w)28(a\\252o)]TJ\nET\nendstream\nendobj\n1363 0 obj <<\n/Type /Page\n/Contents 1364 0 R\n/Resources 1362 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1362 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1367 0 obj <<\n/Length 9002      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(426)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)28(yd)1(l\\241tk)28(om)-333(le)-1(tk)1(ie)-334(l\\241)-28(gi)1(.)]TJ 27.879 -13.549 Td[(A)-243(p)-27(\\363\\271)-1(n)1(iej)-243(widz\\241c,)-243(\\273)-1(e)-243(ni)-242(Jagna,)-243(n)1(i)-243(k)28(o)28(w)27(al)1(o)27(w)28(a)-243(ni)1(e)-244(p)-27(om)27(y\\261la\\252y)-243(o)-243(stary)1(m)-1(,)-243(u)1(m)27(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(go)-269(w)-270(cie)-1(p)1(\\252e)-1(j)-269(w)28(o)-28(d)1(z)-1(ie,)-269(pr)1(z)-1(ycz)-1(esa\\252)-1(a)-269(jego)-269(s)-1(k)28(o\\252tu)1(nion)1(e)-270(w\\252os)-1(y)-269(i)-269(pr)1(z)-1(ewle)-1(k)1(\\252)-1(a)-269(m)27(u)-268(k)28(os)-1(zul\\246)]TJ 0 -13.549 Td[(i)-277(p)-27(o\\261)-1(ciele)-1(.)-277(Boryn)1(a)-277(dozw)27(ala\\252)-277(z)-278(sob\\241)-277(r)1(o)-1(b)1(i\\242)-278(wsz)-1(y)1(s)-1(tk)28(o,)-277(n)1(ie)-278(p)-27(oru)1(s)-1(zyws)-1(zy)-277(s)-1(i)1(\\246)-278(ani)-277(r)1(az)-1(u)1(,)]TJ 0 -13.549 Td[(le\\273)-1(a\\252)-333(jak)-333(za)28(w)-1(\\273dy)-333(wpatr)1(z)-1(on)29(y)-334(p)1(rze)-1(d)-333(siebie)-333(i)-333(m)-1(ar)1(t)27(wy)-333(jak)-333(za)28(w)-1(\\273dy)84(...)]TJ 27.879 -13.55 Td[(Zaraz)-355(z)-355(p)-27(o\\252ud)1(nia)-354(z)-1(rob)1(i\\252o)-355(si\\246)-355(na)-354(ws)-1(i)-354(jakb)29(y)-355(\\261wi\\246)-1(to,)-354(jesz)-1(cz)-1(e)-355(tu)-354(i)-354(o)27(wd)1(z)-1(ie)-355(d)1(o-)]TJ -27.879 -13.549 Td[(gani)1(ali)-312(gru)1(bsz)-1(ej)-312(rob)-27(ot)28(y)83(,)-312(al)1(e)-313(ju)1(\\273)-313(g\\252\\363)28(w)-1(n)1(ie)-313(za)-56(j)1(\\246)-1(l)1(i)-312(s)-1(i\\246)-312(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wkiem)-313(\\261wi\\241te)-1(czn)28(ym,)]TJ 0 -13.549 Td[(cz)-1(es)-1(an)1(ie)-1(m,)-308(m)27(yciem)-309(i)-308(s)-1(zoro)28(w)27(an)1(iem)-309(dziec)-1(i,)-308(\\273e)-309(nie)-309(z)-309(j)1(e)-1(d)1(nej)-308(c)27(h)1(a\\252)-1(u)1(p)28(y)-308(wydziera\\252y)-308(s)-1(i\\246)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)1(i)-334(ob)1(ron)1(ne.)]TJ 27.879 -13.549 Td[(I)-313(w)-1(y)1(patry)1(w)27(ali)-313(n)1(ie)-1(cierpl)1(iwie)-314(ksi\\246dza,)-314(k)1(t\\363ren)-313(przyj)1(e)-1(c)27(h)1(a\\252)-314(ze)-314(dw)28(or\\363)28(w)-314(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(zm)-1(r)1(okiem)-334(i)-333(z)-1(ar)1(az)-334(z)-1(j)1(a)28(w)-1(i)1(\\252)-334(si\\246)-334(n)1(a)-334(wsi,)-333(w)-334(k)28(om\\273)-1(\\246)-333(ubr)1(an)28(y)83(.)]TJ 27.879 -13.55 Td[(Mi)1(c)27(ha\\252)-333(organ)1(is)-1(t)1(o)27(wy)-333(ni)1(\\363s)-1(\\252)-333(z)-1(a)-333(ni)1(m)-334(mie)-1(d)1(nik)-333(z)-333(w)27(o)-28(d)1(\\241)-334(\\261wi\\246)-1(con\\241)-333(i)-333(kr)1(opid)1(\\252o.)]TJ 0 -13.549 Td[(Hank)56(a)-333(wys)-1(z\\252a)-333(go)-334(p)1(rzyjmo)28(w)27(a\\242)-334(a\\273)-333(na)-333(drog\\246.)]TJ 0 -13.549 Td[(Sp)1(ies)-1(zy\\252)-327(s)-1(i)1(\\246)-1(,)-327(wp)1(ad\\252)-327(pr)1(\\246)-1(d)1(k)28(o)-327(do)-327(c)27(h)1(a\\252up)28(y)84(,)-327(o)-28(d)1(m)-1(\\363)28(wi\\252)-327(mo)-28(dli)1(t)27(w)28(\\246,)-327(p)-28(ok)1(ropi)1(\\252)-328(d)1(ary)]TJ -27.879 -13.549 Td[(Bo\\273)-1(e)-334(i)-333(za)-56(j)1(rza\\252)-334(w)-333(s)-1(in)1(\\241,)-333(obros\\252\\241)-333(t)27(w)28(arz)-333(B)-1(or)1(yno)28(w)28(\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(ez)-334(zm)-1(i)1(an)28(y?)-334(co?)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(r)1(ana)-333(s)-1(i)1(\\246)-334(pr)1(a)27(wie)-333(z)-1(agoi\\252a,)-333(a)-333(im)-334(n)1(ic)-334(n)1(ie)-334(lepi)1(e)-1(j)1(.)]TJ 0 -13.549 Td[(Za\\273)-1(y)1(\\252)-334(tab)1(aki,)-333(p)-27(o)28(w)-1(l)1(\\363k\\252)-334(o)-28(czym)-1(a)-333(p)-27(o)-334(k)1(up)1(i\\241c)-1(y)1(c)27(h)-333(si\\246)-334(pr)1(z)-1(y)-333(p)1(rogu)-333(i)-333(w)-334(sieniac)28(h.)]TJ 0 -13.549 Td[({)-333(Gdzie)-334(to)-333(ten)-333(c)27(h)1(\\252opiec)-1(,)-333(kt)1(\\363ry)-333(m)-1(i)-333(spr)1(z)-1(eda\\252)-333(b)-28(o)-27(c)-1(ian)1(a?)]TJ 0 -13.549 Td[(J\\363zk)55(a)-333(wyp)-27(c)27(h)1(n\\246\\252)-1(a)-333(sp)-28(o)-28(d)-332(k)28(om)-1(in)1(a)-333(na)-333(\\261)-1(r)1(o)-28(dek)-333(z)-1(a)28(ws)-1(t)28(yd)1(z)-1(on)1(e)-1(go)-333(Wit)1(k)55(a.)]TJ 0 -13.549 Td[({)-427(Na\\261)-1(ci)-427(d)1(z)-1(ies)-1(i)1(\\241tk)28(\\246)-1(,)-427(u)1(da\\252)-427(ci)-427(s)-1(i\\246:)-427(tak)-427(k)1(ury)-427(gon)1(i)-427(z)-428(ogr)1(o)-28(du)1(,)-427(\\273)-1(e)-427(ni)-427(j)1(e)-1(d)1(na)-427(n)1(ie)]TJ -27.879 -13.55 Td[(zos)-1(ta)-55(je!...)-333(A)-333(ju)1(tro)-333(kt\\363re)-333(do)-333(m)-1(\\246\\273\\363)27(w)-333(id\\241?)]TJ 27.879 -13.549 Td[({)-333(Z)-334(p)-27(\\363\\252)-334(wsi)-333(s)-1(i\\246)-333(w)-1(y)1(biera!)]TJ 0 -13.549 Td[({)-428(T)83(o)-427(dob)1(rz)-1(e,)-427(b)28(yle)-428(t)28(ylk)28(o)-427(z)-1(go)-28(d)1(ni)1(e)-429(i)-427(c)-1(i)1(c)27(ho,)-427(a)-428(n)1(a)-428(rez)-1(u)1(rek)28(c)-1(j)1(\\246)-428(przyc)27(h)1(o)-28(d)1(z)-1(i\\242,)-428(o)]TJ -27.879 -13.549 Td[(dzies)-1(i)1(\\241te)-1(j)-328(z)-1(acz)-1(n)1(\\246)-1(,)-328(m)-1(\\363)28(wi\\246:)-329(o)-329(dzies)-1(i\\241t)1(e)-1(j)1(!)-329(A)-329(\\261)-1(p)1(ijcie)-329(w)-329(k)28(o\\261)-1(ciele)-1(,)-328(to)-329(Am)27(b)1(ro\\273e)-1(m)27(u)-328(k)56(a\\273)-1(\\246)]TJ 0 -13.549 Td[(wypr)1(o)28(w)27(ad)1(z)-1(i\\242!)-333({)-334(d)1(o)-28(da\\252)-333(gro\\271ni)1(e)-1(,)-333(wyc)27(h)1(o)-28(dz\\241c)-334(p)-27(o)28(w)27(oli)1(.)]TJ 27.879 -13.55 Td[(Rusz)-1(y)1(li)-333(z)-334(ni)1(m)-334(ca\\252)-1(\\241)-333(gromad\\241)-333(o)-28(d)1(pr)1(o)27(w)28(adza)-56(j)1(\\241c)-334(do)-333(m\\252ynar)1(z)-1(\\363)28(w.)]TJ 0 -13.549 Td[(A)-333(Witek,)-333(p)-27(ok)55(azuj)1(\\241c)-334(J\\363zc)-1(e)-334(miedzian\\241)-333(d)1(z)-1(ies)-1(i)1(\\241tk)28(\\246)-1(,)-333(sz)-1(epn)1(\\241\\252)-334(ze)-334(z\\252)-1(o\\261ci\\241:)]TJ 0 -13.549 Td[({)-333(Nie)-1(d)1(\\252ugo)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(m)-1(\\363)-55(j)-333(b)-28(o)-27(c)-1(iek)-333(ksi\\246)-1(\\273e)-334(ku)1(ry)-333(p\\252osz)-1(y)1(\\252,)-334(n)1(ie!..)]TJ 0 -13.549 Td[(Roz)-1(b)1(iegli)-333(s)-1(i)1(\\246)-334(w)27(e)-333(dwie)-334(stron)28(y)84(,)-333(b)-28(o)-333(gosp)-28(o)-27(dyn)1(i)-333(w)-1(r)1(ac)-1(a\\252a)-333(na)-333(ganek.)]TJ 0 -13.549 Td[(\\221ciem)-1(n)1(ia\\252o)-359(si\\246)-359(z)-359(w)28(oln)1(a,)-359(zm)-1(i)1(e)-1(r)1(z)-1(c)27(h)-358(cic)27(h)29(u\\261k)28(o)-359(sypa\\252)-358(s)-1(i\\246)-358(na)-359(ziem)-1(i)1(\\246)-359(z)-1(atap)1(ia)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(sady)84(,)-317(d)1(om)27(y)-316(i)-317(p)-27(ola)-316(ok)28(\\363lne)-317(w)-317(mo)-28(d)1(ra)28(wym,)-317(ledwie)-317(p)1(rze)-1(j)1(rzan)28(ym)-317(m\\241c)-1(ie,)-316(biela\\252y)-316(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(k)56(a)-56(j)-275(\\261)-1(cian)28(y)-276(z)-277(p)1(rzypad)1(\\252yc)27(h)-276(d)1(o)-277(ziem)-1(i)-276(c)28(ha\\252up)-276(i)-276(t)1(rz)-1(\\246s)-1(\\252y)-276(si\\246)-277(wskro\\261)-277(sad\\363)28(w)-276(z)-1(ap)1(alone)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252a,)-334(g\\363r)1(\\241)-334(za\\261)-334(n)1(a)-334(n)1(ie)-1(b)1(ie)-334(j)1(as)-1(n)29(ym)-334(wyrzyn)1(a\\252)-334(si\\246)-334(b)1(lady)-333(sie)-1(r)1(p)-333(m\\252)-1(o)-27(dego)-334(mies)-1(i)1(\\241)-1(ca.)]TJ 27.879 -13.549 Td[(\\221wi\\241t)1(e)-1(cz)-1(n)1(\\241)-379(c)-1(i)1(c)27(ho\\261c)-1(i)1(\\241)-379(os)-1(n)28(u)1(\\252a)-379(s)-1(i)1(\\246)-380(wie\\261)-379(i)-379(m)-1(r)1(okiem)-1(,)-378(w)-379(k)28(o\\261)-1(ciele)-380(wyn)1(ies)-1(ion)29(ym)]TJ -27.879 -13.549 Td[(nad)-330(c)27(h)1(a\\252up)1(am)-1(i)-330(z)-1(agor)1(z)-1(a\\252y)-330(w)-1(szys)-1(tk)1(ie)-331(okna)-330(i)-331(z)-331(ot)28(w)27(ar)1(t)28(yc)27(h)-330(wie)-1(l)1(kic)27(h)-330(d)1(rz)-1(wi)-330(bi\\252a)-330(s)-1(ze)-1(-)]TJ 0 -13.549 Td[(rok)56(a)-333(s)-1(m)28(uga)-333(\\261)-1(wiat\\252o\\261c)-1(i)1(.)]TJ 27.879 -13.55 Td[(Wkr)1(\\363tc)-1(e)-373(zatur)1(k)28(ota\\252y)-373(pi)1(e)-1(r)1(w)-1(sz)-1(e)-373(w)28(oz)-1(y)-372(z)-1(a)-55(je\\273)-1(d)1(\\273)-1(a)-55(j\\241c)-373(pr)1(z)-1(ed)-373(cme)-1(n)28(t)1(a)-1(r)1(z)-373(i)-373(lu)1(dzie)]TJ -27.879 -13.549 Td[(z)-305(d)1(alsz)-1(yc)28(h)-304(ws)-1(i)-303(nadc)28(ho)-28(d)1(z)-1(i)1(\\242)-305(p)-27(o)-28(cz)-1(\\246li)-304(gromadami,)-304(z)-304(c)27(h)1(a\\252up)-304(l)1(ip)-28(ec)27(k)1(ic)27(h)-304(t)1(e)-1(\\273)-304(raz)-305(p)-27(o)-304(raz)]TJ 0 -13.549 Td[(wyc)27(h)1(o)-28(dzono)-439(do)-439(k)28(o\\261)-1(cio\\252a,)-439(b)-28(o)-439(c)-1(z\\246)-1(sto)-440(z)-440(wywieran)29(yc)27(h)-439(dr)1(z)-1(wi)-439(pad)1(a\\252)-1(a)-439(w)-440(n)1(o)-28(c)-440(s)-1(tr)1(u-)]TJ 0 -13.549 Td[(ga)-457(\\261wiat\\252a)-457(top)1(i\\241c)-457(s)-1(i\\246)-457(w)-457(omro)-28(cza\\252)-1(y)1(m)-457(s)-1(ta)28(wie,)-457(i)-456(tup)-27(ot)28(y)-457(a)-457(p)1(rzycis)-1(zone)-457(p)-27(ogw)27(ar)1(y)]TJ 0 -13.549 Td[(mro)28(wi\\252y)-360(s)-1(i\\246)-360(w)-361(cie)-1(p)1(\\252ym)-361(i)-360(omglon)28(y)1(m)-361(p)-27(o)28(w)-1(i)1(e)-1(trzu.)-360(P)29(oz)-1(d)1(ra)28(wiali)-360(s)-1(i)1(\\246)-361(na)-360(d)1(rogac)27(h)1(,)-360(nie)]TJ 0 -13.55 Td[(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-302(w)-302(no)-27(c)-1(y)84(,)-302(i)-302(ni)1(b)28(y)-302(ta)-302(r)1(z)-1(ek)55(a,)-301(w)-1(zbi)1(e)-1(r)1(a)-56(j\\241ca)-302(z)-303(w)28(oln)1(a)-302(a)-302(b)-28(ez)-1(u)1(s)-1(t)1(anni)1(e)-1(,)-302(ci\\241)-28(gn)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(na)-333(rezurek)28(c)-1(j)1(\\246)-1(.)]TJ\nET\nendstream\nendobj\n1366 0 obj <<\n/Type /Page\n/Contents 1367 0 R\n/Resources 1365 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1352 0 R\n>> endobj\n1365 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1370 0 obj <<\n/Length 2575      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(427)]TJ -330.353 -35.866 Td[(U)-246(B)-1(ory)1(n\\363)28(w)-247(n)1(a)-247(gosp)-28(o)-28(d)1(arst)28(w)-1(i)1(e)-247(do)-247(p)1(iln)1(o)28(w)27(an)1(ia)-247(osta)28(w)27(a\\252y)-246(ino)-246(psy)83(,)-246(s)-1(t)1(ary)-246(B)-1(yl)1(ic)-1(a)]TJ -27.879 -13.549 Td[(i)-316(Witek,)-316(kt\\363r)1(e)-1(n)-316(p)1(iln)1(ie)-317(ma)-56(j)1(s)-1(tr)1(o)27(w)28(a\\252)-316(w)27(es)-1(p)-27(\\363\\252)-317(z)-316(Ma\\242kiem)-317(K\\252\\246b)-28(o)28(wym)-317(k)28(ogu)1(tk)56(a,)-317(co)-316(to)]TJ 0 -13.549 Td[(z)-334(n)1(im)-334(mieli)-333(p)-28(\\363)-55(j\\261\\242)-334(p)-27(o)-334(d)1(yngu)1(s)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-275(wyp)1(ra)28(wi\\252a)-275(na)-55(jp)1(ie)-1(r)1(w)-275(J\\363z)-1(k)28(\\246)-275(z)-276(d)1(z)-1(i)1(e)-1(\\242m)-1(i)-274(i)-275(p)1(arobk)56(a;)-275(sama)-275(p)-28(\\363\\271ni)1(e)-1(j)-274(m)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(nad)1(e)-1(j)1(\\261)-1(\\242.)-354(Ubr)1(ana)-354(ju)1(\\273)-355(b)28(y\\252a,)-354(ale)-354(o)-28(c)-1(i)1(\\241)-28(ga\\252a)-355(si\\246)-355(z)-354(w)-1(y)1(j\\261c)-1(iem,)-355(j)1(akb)28(y)-354(n)1(a)-355(co\\261)-355(o)-28(cz)-1(eku)1(j\\241c,)]TJ 0 -13.55 Td[(\\273e)-421(w)28(ci\\241\\273)-420(wys)-1(ta)28(w)28(a\\252a)-420(w)-420(gan)1(ku)-419(i)-420(str\\363\\273o)28(w)27(a\\252a)-420(n)1(a)-420(d)1(ro)-28(d)1(z)-1(e.)-420(D)1(opiero)-419(gdy)-419(Jagna)-419(p)-28(o-)]TJ 0 -13.549 Td[(sz)-1(\\252a)-411(z)-412(k)28(o)28(w)28(alo)28(w)27(\\241)-411(i)-410(dos\\252)-1(y)1(s)-1(za\\252a)-411(k)28(o)27(w)28(ala)-411(id)1(\\241c)-1(ego)-411(z)-412(w)28(\\363)-56(j)1(te)-1(m)-411(ku)-410(k)28(o\\261)-1(cio\\252o)28(w)-1(i)1(,)-411(wr\\363)-28(ci\\252a)]TJ 0 -13.549 Td[(do)-391(izb)28(y)84(,)-392(p)1(rzyk)56(az)-1(u)1(j\\241c)-392(cosik)-391(p)-28(o)-391(c)-1(i)1(c)27(h)28(u)-391(starem)27(u)1(.)-391(Stan)1(\\241\\252)-392(n)1(a)-392(stra\\273y)-391(w)-392(op\\252otk)56(ac)28(h,)-391(a)]TJ 0 -13.549 Td[(ona)-339(w)-1(sun)1(\\246)-1(\\252a)-340(si\\246)-340(na)-339(palcac)27(h)-339(do)-340(o)-55(jco)28(w)27(ej)-340(k)28(omory)84(...)-339(P)28(o)-340(d)1(obrej)-340(p)-27(\\363\\252go)-28(d)1(z)-1(in)1(ie)-340(wys)-1(z\\252a)]TJ 0 -13.549 Td[(stam)27(t\\241d)1(,)-333(c)-1(o\\261)-334(p)1(iln)1(ie)-334(zapin)1(a)-56(j)1(\\241c)-334(s)-1(tan)1(ik;)-333(o)-28(cz)-1(y)-333(j)1(e)-1(j)-333(gor)1(z)-1(a\\252y)-333(i)-333(r\\246c)-1(e)-333(s)-1(i\\246)-333(trz\\246)-1(s\\252y)83(.)]TJ 27.879 -13.549 Td[(Nagada\\252a,)-333(cz)-1(ego)-334(n)1(ikto)-333(n)1(ie)-334(p)-27(o)-56(j)1(\\241\\252)-1(,)-333(i)-333(p)-27(os)-1(z\\252a)-333(na)-333(re)-1(zur)1(e)-1(k)28(cj\\246.)]TJ\nET\nendstream\nendobj\n1369 0 obj <<\n/Type /Page\n/Contents 1370 0 R\n/Resources 1368 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1368 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1374 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(428)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(29.)]TJ\nET\nendstream\nendobj\n1373 0 obj <<\n/Type /Page\n/Contents 1374 0 R\n/Resources 1372 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1372 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1377 0 obj <<\n/Length 7212      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(30)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-377(dr)1(og)-1(ac)28(h)-377(b)28(y\\252o)-377(p)1(usto)-378(i)-377(ciem)-1(n)1(o,)-377(w)-378(c)28(ha\\252up)1(ac)27(h)-377(gas\\252y)-377(\\261)-1(wiat\\252a)-377(i)-377(p)1(rz)-1(ec)27(h)1(o)-28(dzili)-377(j)1(u\\273)]TJ 0 -13.549 Td[(ostatni)-253(l)1(ud)1(z)-1(ie,)-253(j)1(e)-1(n)1(o)-253(na)-253(k)28(o\\261c)-1(ieln)28(y)1(m)-254(p)1(lacu)-253(sta\\252y)-253(g\\246)-1(st)28(w)27(\\241)-252(w)27(ozy)-253(z)-254(wy\\252o\\273on)28(ymi)-253(k)28(o\\253)1(m)-1(i)1(,)]TJ 0 -13.549 Td[(\\273e)-355(t)28(ylk)28(o)-354(tu)1(p)-28(ot)28(y)-354(a)-354(p)1(arsk)55(an)1(ia)-354(roznosi\\252y)-354(si\\246)-355(w)-354(mroku)1(,)-354(a)-354(p)-28(o)-27(d)-354(dzw)28(onni)1(c)-1(\\241)-354(cz)-1(erni)1(a\\252y)]TJ 0 -13.55 Td[(dw)28(orskie)-333(p)-28(o)28(w)27(ozy)84(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-302(j)1(e)-1(sz)-1(cz)-1(e)-302(raz)-303(w)-302(kr)1(uc)27(h)1(c)-1(i)1(e)-303(cos)-1(ik)-302(p)-27(oma)-56(j)1(dro)28(w)28(a\\252a)-302(kiele)-303(stanik)56(a)-302(i)-302(spu)1(\\261)-1(ciw-)]TJ -27.879 -13.549 Td[(sz)-1(y)-333(c)27(h)29(ust\\246)-334(na)-333(pl)1(e)-1(cy)83(,)-333(j)1(\\246)-1(\\252a)-333(s)-1(i\\246)-333(os)-1(tr)1(o)-334(p)1(rze)-1(p)28(y)1(c)27(ha\\242)-333(do)-333(przedni)1(c)27(h)-333(\\252a)28(w)27(ek.)]TJ 27.879 -13.549 Td[(Ko\\261c)-1(i)1(\\363\\252)-276(j)1(u\\273)-275(b)28(y\\252)-275(jakb)29(y)-275(nab)1(it)28(y)83(,)-275(\\261c)-1(i)1(\\273)-1(b)1(ion)28(y)-275(n)1(ar\\363)-28(d)-275(k)1(\\252)-1(\\246bi)1(\\252)-276(si\\246)-275(i)-275(w)-1(r)1(z)-1(a\\252)-275(ni)1(b)28(y)-275(w)28(o)-28(da,)]TJ -27.879 -13.549 Td[(z)-333(p)-28(oszume)-1(m)-333(p)1(ac)-1(ierzy)83(,)-332(wz)-1(d)1(yc)27(h)1(a\\253,)-333(k)56(asz)-1(l)1(\\363)27(w)-333(a)-332(p)-28(ozdr)1(a)27(wia\\253)1(,)-333(i)-332(k)28(o\\252ys)-1(a\\252)-332(s)-1(i\\246)-333(o)-28(d)-332(\\261c)-1(ian)29(y)]TJ 0 -13.549 Td[(do)-408(\\261)-1(cian)28(y)84(,)-409(a\\273)-409(s)-1(i\\246)-409(o)-28(d)-408(te)-1(go)-408(nap)-27(oru)-409(k)28(ol)1(e)-1(b)1(a\\252y)-409(c)27(h)1(or\\241)-28(gwie)-409(w)-409(\\252a)27(wki)-408(p)-28(ozat)28(yk)56(ane)-409(i)-409(te)]TJ 0 -13.55 Td[(\\261w)-1(i)1(e)-1(rczaki,)-333(kt\\363ry)1(m)-1(i)-333(u)1(m)-1(ai)1(li)-333(o\\252tarze)-334(i)-333(\\261)-1(cian)28(y)-333(ws)-1(zystkie.)]TJ 27.879 -13.549 Td[(Ledwie)-432(co)-431(s)-1(i\\246)-431(prze)-1(p)-27(c)27(h)1(a\\252a)-432(d)1(o)-431(s)-1(w)28(o)-56(j)1(e)-1(go)-431(m)-1(i)1(e)-1(j)1(s)-1(ca,)-431(kiej)-431(pr)1(ob)-28(osz)-1(cz)-432(wysz)-1(ed\\252)-431(z)]TJ -27.879 -13.549 Td[(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(e)-1(m,)-362(i)-363(wraz)-362(te)-1(\\273)-363(j)1(\\246)-1(\\252y)-362(si\\246)-363(z)-363(g\\246s)-1(t)28(wy)-362(rw)28(a)-1(\\242)-362(g\\252)-1(o\\261ne)-362(w)-1(zdy)1(c)27(h)28(y)-362(i)-362(te)-363(r\\246c)-1(e)-362(s)-1(ze)-1(-)]TJ 0 -13.549 Td[(rok)28(o)-312(rozw)27(o)-27(dzone.)-313(K)1(l\\246)-1(k)56(ali)-312(k)28(orn)1(ie)-313(cisn\\241c)-313(si\\246)-313(coraz)-313(bar)1(z)-1(ej,)-312(\\273e)-313(wnet)-313(ca\\252y)-312(nar\\363)-28(d)-311(b)28(y\\252)]TJ 0 -13.549 Td[(na)-429(k)28(olanac)28(h,)-429(rami\\246)-430(przy)-429(ramie)-1(n)1(iu,)-429(du)1(s)-1(za)-430(p)1(rz)-1(y)-429(du)1(s)-1(zy)84(,)-430(jak)28(o)-429(to)-430(p)-27(ole)-430(nasadzone)]TJ 0 -13.55 Td[(g\\252o)28(w)27(ami,)-288(\\273e)-289(ino)-288(w)-288(t)28(ym)-289(rozk)28(o\\252ysan)28(ym)-289(\\271dziebk)28(o,)-288(cz)-1(\\252o)28(wie)-1(czym)-289(\\252ani)1(e)-289(o)-28(cz)-1(y)-288(si\\246)-289(mro-)]TJ 0 -13.549 Td[(wi\\252y)83(,)-281(p)-27(o\\252yskliwie)-281(kiej)-281(mot)27(y)1(le)-282(n)1(ie)-1(s\\241c)-282(si\\246)-282(k)1(u)-281(o\\252tarzo)27(wi)-281(wielkiem)27(u)1(,)-281(na)-281(\\014)1(gur\\246)-281(Je)-1(zusa)]TJ 0 -13.549 Td[(zm)-1(ar)1(t)27(wyc)28(h)28(ws)-1(ta\\252ego,)-258(kt\\363r)1(e)-1(n)-257(s)-1(to)-55(ja\\252)-258(n)1(agi,)-258(skrw)28(a)28(w)-1(i)1(on)28(y)83(,)-257(ran)1(am)-1(i)-257(p)-28(okr)1(yt)28(y)-258(i)-258(w)-258(p)1(\\252as)-1(zc)-1(z)]TJ 0 -13.549 Td[(cz)-1(erw)28(on)28(y)-333(jeno)-333(przy)28(o)-28(d)1(z)-1(ian)29(y)-333(z)-334(c)27(h)1(or\\241)-28(giewk)55(\\241)-333(w)-334(r)1(\\246)-1(k)1(u.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-269(z)-269(nag\\252a)-268(ob)-56(j)1(\\246)-1(\\252a)-268(k)28(o\\261)-1(ci\\363\\252,)-269(j)1(akb)28(y)-268(te)-1(go)-268(z)-1(wies)-1(n)1(o)27(w)28(ego)-269(pr)1(z)-1(yp)-27(o\\252ud)1(nia,)-268(kiej)]TJ -27.879 -13.55 Td[(to)-365(s)-1(\\252o\\253ce)-366(pr)1(z)-1(yp)1(iec)-1(ze)-366(p)-28(ol)1(a,)-366(wiater)-365(ustanie)-366(i)-365(p)1(rz)-1(y)1(gi\\246)-1(t)1(e)-367(zb)-27(o\\273)-1(a)-365(s)-1(e)-366(k\\252osami)-366(gw)28(arz\\241,)]TJ 0 -13.549 Td[(a)-405(jeno)-405(gdzies)-1(i)1(k)-405(w)-1(y)1(s)-1(ok)28(o,)-405(p)-27(o)-28(d)-405(n)1(ieb)-28(em)-406(mo)-28(d)1(rym,)-405(s)-1(k)28(o)28(wron)1(k)28(o)27(w)28(e)-406(p)1(ie\\261)-1(n)1(i)-405(s)-1(\\252o)-28(d)1(k)28(o)-405(p)-28(o-)]TJ 0 -13.549 Td[(dzw)28(ania)-55(j\\241...)]TJ 27.879 -13.549 Td[(Roz)-1(mad)1(lali)-406(si\\246)-407(z)-406(w)27(oln)1(a,)-406(\\273)-1(e)-406(w)27(ar)1(gi)-406(s)-1(i\\246)-406(ws)-1(z\\246)-1(d)1(y)-406(trz\\246)-1(s\\252y)-406(i)-406(pacierz)-1(e)-406(z)-1(e)-406(wz)-1(d)1(y-)]TJ -27.879 -13.549 Td[(c)27(h)1(aniami)-371(sz)-1(emra\\252y)-371(cic)27(h)28(u)1(\\261)-1(k)28(o)-371(a)-371(r)1(z)-1(\\246s)-1(i\\261cie)-372(k)1(ie)-1(j)-370(te)-1(n)-370(des)-1(zc)-1(zyk)-371(t)1(rz)-1(epi)1(\\241c)-1(y)-371(p)-27(o)-371(li\\261ciac)27(h)1(;)]TJ 0 -13.55 Td[(g\\252o)28(w)-1(y)-398(p)-28(o)-27(c)27(h)28(yl)1(a)-1(\\252y)-398(s)-1(i\\246)-399(c)-1(or)1(az)-400(n)1(i\\273e)-1(j)1(,)-399(c)-1(zas)-1(em)-399(j\\246k)-399(wyrw)28(a\\252)-399(s)-1(i\\246)-399(sk)55(\\241d)1(c)-1(i)1(\\261)-1(,)-399(to)-399(czyje\\261)-400(r)1(oz)-1(-)]TJ 0 -13.549 Td[(mo)-28(dl)1(one)-406(r\\246c)-1(e)-406(wyc)27(h)29(yn\\246\\252y)-406(p)1(ros)-1(z\\241co)-406(ku)-405(o\\252tarzo)27(wi)-405(alb)-27(o)-406(i)-406(p)1(\\252ac)-1(z)-406(zakwili\\252)-406(p)1(iskl\\246c)-1(y)84(,)]TJ 0 -13.549 Td[(\\273a\\252)-1(osn)28(y)84(,)-370(z)-371(tej)-370(c)-1(i)1(\\273)-1(b)28(y)84(,)-370(co)-371(j)1(ak)-370(krze)-371(p)1(rzyz)-1(i)1(e)-1(mne)-371(t)1(uli\\252a)-370(si\\246)-371(tr)1(w)27(o\\273nie)-370(w)-371(cieniac)28(h)-370(na)28(w)]TJ 0 -13.549 Td[(wyni)1(os)-1(\\252yc)28(h)-373(i)-373(mro)-27(c)-1(zn)28(yc)27(h)1(,)-373(n)1(ib)28(y)-373(b)-27(\\363r)-373(o)-27(dwiec)-1(zn)28(y)83(,)-372(b)-28(o)-373(c)28(ho)-28(cia\\273)-373(na)-373(o\\252tarzac)27(h)-372(gorza\\252y)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252a,)-317(g\\246)-1(st)28(y)-317(mrok)-316(z)-1(alega\\252)-317(k)28(o\\261c)-1(i\\363\\252,)-316(\\273)-1(e)-317(to)-317(okn)1(ami)-317(a)-317(g\\252\\363)28(wnie)-317(pr)1(z)-1(ez)-317(w)-1(i)1(e)-1(lk)1(ie)-317(drzwi)]TJ 0 -13.55 Td[(wyw)28(arte)-334(n)1(o)-28(c)-334(si\\246)-334(cis)-1(n)1(\\246)-1(\\252a)-333(c)-1(zarn)1(a)-334(i)-333(zagl\\241d)1(a\\252)-334(bl)1(ady)-333(sie)-1(r)1(p)-333(ksi\\246)-1(\\273yca)-334(zz)-1(a)-333(c)27(h)1(m)27(u)1(r.)]TJ 27.879 -13.549 Td[(Jeno)-378(Han)1(k)55(a)-378(n)1(ie)-378(m)-1(og\\252a)-378(si\\246)-378(przy\\252o\\273y\\242)-378(do)-378(pacierza,)-378(trz\\246s)-1(\\252a)-378(si\\246)-379(w)-378(sobie)-378(tak)]TJ -27.879 -13.549 Td[(zal\\246)-1(k)1(nion)1(a,)-334(j)1(akb)28(y)-333(to)-333(jesz)-1(cz)-1(e)-334(t)1(am)-334(b)28(y\\252a,)-333(w)-334(k)28(omorze)-334(o)-55(jco)27(w)28(ej.)]TJ 358.232 -29.888 Td[(429)]TJ\nET\nendstream\nendobj\n1376 0 obj <<\n/Type /Page\n/Contents 1377 0 R\n/Resources 1375 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1375 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1380 0 obj <<\n/Length 9947      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(430)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Dresz)-1(cz)-370(j\\241)-369(pr)1(z)-1(ejmo)28(w)27(a\\252,)-369(cz)-1(u)1(\\252)-1(a)-369(na)-369(r\\246k)56(ac)27(h)-369(sypk)1(ie)-370(zim)-1(n)1(o)-369(z)-1(b)-27(o\\273)-1(a)-369(i)-369(raz)-370(p)-27(o)-369(raz)]TJ -27.879 -13.549 Td[(\\261c)-1(isk)56(a\\252a)-334(r)1(am)-1(ion)1(a,)-333(ab)28(y)-333(p)-28(o)-27(c)-1(zu\\242)-334(mi\\246dzy)-333(piersiami)-333(w)-1(tu)1(lon)28(y)-333(w)28(\\246)-1(ze)-1(\\252ek.)]TJ 27.879 -13.549 Td[(T)83(ak)-356(j\\241)-357(r)1(oz)-1(tr)1(z)-1(\\246s)-1(\\252a)-357(r)1(ado\\261\\242)-357(i)-357(strac)27(h)-356(j)1(aki\\261)-357(z)-1(ar)1(az)-1(em)-1(,)-356(\\273)-1(e)-357(cz)-1(\\246sto)-357(r\\363\\273aniec)-357(wys)-1(u)1(-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-410(si\\246)-410(z)-410(p)1(alc)-1(\\363)28(w,)-409(z)-1(ap)-27(omina\\252a)-409(s\\252)-1(\\363)28(w)-409(m)-1(o)-28(d)1(lit)28(wy)-409(w)27(o)-27(dz\\241c)-410(rozpalon)29(ym)-1(i)-409(o)-27(c)-1(zyma)-410(p)-27(o)]TJ 0 -13.549 Td[(lu)1(dziac)27(h)1(,)-317(a)-316(nie)-317(d)1(os)-1(tr)1(z)-1(ega)-56(j)1(\\241c)-317(nik)28(ogo,)-316(c)27(h)1(o)-28(\\242)-317(p)-27(ob)-28(ok)-316(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-316(J\\363z)-1(k)56(a,)-316(Jagu\\261)-317(z)-317(matk)56(\\241)]TJ 0 -13.55 Td[(i)-333(dr)1(ugie.)]TJ 27.879 -13.549 Td[(W)-322(\\252)-1(a)28(wk)56(ac)27(h)-322(s)-1(t)1(o)-56(j\\241cyc)28(h)-323(z)-323(b)-27(oku)-322(o\\252tarza)-323(mo)-28(dli)1(\\252y)-323(si\\246)-323(na)-322(ks)-1(i)1(\\241\\273)-1(k)56(ac)27(h)-322(dziedzic)-1(zki)]TJ -27.879 -13.549 Td[(z)-448(Ru)1(dki,)-447(z)-448(M)1(o)-28(dl)1(ic)-1(y)-447(i)-447(d)1(z)-1(iedzic\\363)27(wn)28(y)-447(z)-448(W)84(\\363lki)1(,)-448(a)-447(d)1(z)-1(iedzice)-448(s)-1(to)-55(ja\\252y)-447(w)28(e)-448(dr)1(z)-1(wiac)27(h)]TJ 0 -13.549 Td[(zakrystii,)-387(p)-28(or)1(e)-1(d)1(z)-1(a)-55(j\\241c)-388(c)-1(osik;)-387(na)-388(stopn)1(iac)27(h)-387(o\\252tarza)-388(sto)-56(j)1(a\\252)-1(a)-387(z)-389(d)1(alek)55(a)-388(m\\252yn)1(arzo)27(w)28(a)]TJ 0 -13.549 Td[(i)-436(or)1(gani\\261c)-1(i)1(na,)-436(sie)-1(l)1(nie)-436(wys)-1(t)1(ro)-56(j)1(one.)-436(Zas)-1(i)1(e)-437(p)1(rz)-1(ed)-436(k)1(rat\\241,)-436(tam,)-436(k)56(a)-56(j)-435(b)28(y\\252o)-436(miejsc)-1(e)-436(la)]TJ 0 -13.549 Td[(na)-55(jp)1(ierws)-1(zyc)27(h)-409(gos)-1(p)-27(o)-28(d)1(arz)-1(y)-409(lip)-27(e)-1(c)28(kic)27(h)1(,)-410(kt\\363r)1(e)-411(za)27(w\\273dy)-410(str\\363\\273\\246)-411(tr)1(z)-1(ymali)-410(w)-410(cz)-1(as)-410(na-)]TJ 0 -13.55 Td[(b)-27(o\\273)-1(e\\253st)28(w)27(a,)-308(bald)1(ac)27(h)-308(nosili)-308(nad)-308(dob)1(ro)-28(d)1(z)-1(iejem)-309(i)-309(p)-27(o)-28(d)-308(r\\246c)-1(e)-309(go)-309(wiedl)1(i)-309(n)1(a)-309(pr)1(o)-28(c)-1(es)-1(j)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(kl\\246cz)-1(a\\252y)-393(te)-1(r)1(az)-395(g\\246st\\241)-394(\\252a)28(w)27(\\241)-394(c)28(h\\252op)28(y)-393(z)-394(dr)1(ugic)28(h)-394(wsi,)-394(\\273e)-394(ledwie)-394(b)28(y\\252o)-393(m)-1(o\\273na)-393(do)-56(j)1(rze)-1(\\242)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(n)1(imi)-333(w)27(\\363)-55(jta,)-333(s)-1(o\\252t)28(ysa)-333(i)-333(te)-1(n)-333(cz)-1(erw)28(on)28(y)-333(\\252e)-1(b)-332(k)27(o)28(w)28(alo)28(wy)83(.)]TJ 27.879 -13.549 Td[(Niejedn)1(e)-293(k)28(ob)1(ie)-1(ce)-293(o)-28(czy)-292(s)-1(i\\246)-292(tam)-292(nies)-1(\\252y)-292(wyp)1(atru)1(j\\241c)-293(t)1(\\246)-1(skliwie)-292(s)-1(w)28(oic)27(h)1(...)-292(al)1(e)-293(na)]TJ -27.879 -13.549 Td[(dar)1(m)-1(o:)-241(b)28(y)1(\\252y)-242(tam)-241(c)27(h)1(\\252)-1(op)29(y)-242(z)-241(D\\246)-1(b)1(ic)-1(y)84(,)-241(z)-242(W)84(oli,)-241(z)-242(Rz)-1(ep)-27(e)-1(k,)-241(z)-242(ca\\252e)-1(j)-241(p)1(ara\\014)1(i,)-241(jeno)-241(lip)-27(e)-1(c)28(kic)27(h)]TJ 0 -13.55 Td[(ni)1(e)-305(do)-55(jrza\\252,)-304(jeno)-304(t)27(y)1(c)27(h)-304(na)-55(jp)1(ierws)-1(zyc)27(h)-304(d)1(z)-1(isia)-304(nie)-304(s)-1(ta\\252o.)-304(Zatrze)-1(p)-27(ota\\252y)-304(s)-1(i\\246)-304(te)-1(\\273)-305(d)1(usz)-1(e)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(ce)-362(kiej)-361(ptaki)-361(sp\\252osz)-1(on)1(e)-1(,)-361(\\273)-1(e)-362(n)1(iejedna)-361(g\\252o)28(w)27(a)-361(z)-362(p\\252acz)-1(em)-362(do)-361(z)-1(iemi)-362(p)1(rzyw)27(ar)1(\\252a,)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-304(j\\246k)-305(\\273a\\252os)-1(n)29(y)-305(rw)28(a\\252)-305(si\\246)-305(z)-305(g\\246)-1(st)28(w)-1(y)84(,)-305(a)-304(b)-28(ol)1(e)-1(sne)-305(pr)1(z)-1(y)1(p)-28(omin)1(ki)-305(siero)-28(ct)28(w)27(a)-305(\\273ywym)]TJ 0 -13.549 Td[(ogni)1(e)-1(m)-333(z)-1(ap)1(ie)-1(k)1(\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-405(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ksz)-1(e)-406(\\261wi\\246ta)-406(w)-405(c)-1(a\\252ym)-406(r)1(oku,)-405(Wi)1(e)-1(lk)56(an)1(o)-28(c)-1(,)-405(i)-405(t)28(yla)-405(ob)-28(ce)-1(go)-405(nar)1(o-)]TJ -27.879 -13.55 Td[(du)-360(si\\246)-361(z)-1(ebr)1(a\\252)-1(o,)-360(a)-361(n)1(a)-361(ws)-1(zys)-1(t)1(kic)27(h)-360(t)28(w)27(ar)1(z)-1(ac)28(h)-361(c)28(ho)-28(\\242)-361(\\271dzie)-1(b)1(k)28(o)-361(pr)1(z)-1(y)1(c)27(h)28(u)1(d\\252yc)27(h)-360(z)-361(p)-27(os)-1(tu)1(,)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(\\242)-342(si\\246)-342(roz)-1(l)1(e)-1(w)28(a,)-342(p)1(usz)-1(\\241)-342(si\\246)-342(ano,)-341(parad)1(uj)1(\\241)-342(s)-1(tr)1(o)-56(j)1(am)-1(i)1(,)-342(rozpi)1(e)-1(ra)-55(j\\241)-342(w)-342(k)28(o\\261c)-1(i)1(e)-1(le)-342(ki)1(e)-1(-)]TJ 0 -13.549 Td[(b)28(y)-357(d)1(z)-1(i)1(e)-1(d)1(z)-1(ice)-1(,)-357(t)1(o)-28(c)-1(z\\241)-357(har)1(do)-357(o)-28(cz)-1(yma,)-357(za)-56(j)1(m)27(uj)1(\\241)-357(pierwsz)-1(e)-357(m)-1(i)1(e)-1(j)1(s)-1(ca,)-357(a)-357(tam)27(te,)-357(lip)-27(ec)27(kie)]TJ 0 -13.549 Td[(miz)-1(erak)1(i,)-333(c\\363\\273)-333(teraz)-333(c)-1(zyn)1(i\\241,)-332(c)-1(o?)-333(W)-332(cie)-1(mni)1(c)-1(ac)28(h)-333(an)1(o)-333(o)-332(g\\252o)-28(dzie)-333(i)-332(c)27(h\\252o)-27(dzie)-333(krzywd\\246)]TJ 0 -13.549 Td[(gorzk)56(\\241)-334(gr)1(yz)-1(\\241)-333(i)-333(\\273ale)-1(m)-333(s)-1(i\\246)-333(pas\\241,)-334(i)-333(t\\246sknic\\241...)]TJ 27.879 -13.55 Td[(La)-332(ws)-1(zystkiego)-332(st)27(w)28(orze)-1(n)1(ia)-332(d)1(z)-1(ie\\253)-331(rado\\261ci)-332(nasta)-56(j)1(e)-1(,)-331(jeno)-332(n)1(ie)-332(dla)-331(nic)28(h...)-331(c)27(h)28(u)1(-)]TJ -27.879 -13.549 Td[(dziak)28(\\363)28(w)-347(p)-27(okrzywdzon)28(yc)28(h...)-346(Wsz)-1(ystkie)-347(sp)-28(o\\252em)-347(do)-346(c)27(ha\\252u)1(p)-347(p)-27(o)28(wr\\363)-28(c\\241)-347(rad)1(o\\261)-1(n)1(ie)-347(z)-1(a-)]TJ 0 -13.549 Td[(\\273yw)27(a\\242)-286(\\261wi\\241t,)-285(o)-28(dp)-27(o)-28(cz)-1(yn)1(ku)1(,)-286(j)1(ad\\252a,)-285(z)-1(wies)-1(n)1(o)27(w)28(ego)-286(s\\252)-1(o\\253)1(c)-1(a,)-285(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(ki)1(c)27(h)-285(ugw)28(arze)-1(\\253)1(,)]TJ 0 -13.549 Td[(jak)-333(P)29(an)-333(B)-1(\\363g)-333(pr)1(z)-1(yk)56(aza\\252,)-333(jeno)-333(nie)-333(te)-334(opu)1(s)-1(zc)-1(zone)-333(lip)-27(e)-1(c)28(kie)-334(sierot)28(y)83(.)1(..)]TJ 27.879 -13.549 Td[(Same)-347(r)1(oz)-1(b)-27(ola\\252e)-1(,)-346(c)28(h)28(y\\252kiem)-347(r)1(oz)-1(ejd)1(\\241)-347(si\\246)-347(d)1(o)-347(p)1(ust)28(yc)27(h)-346(d)1(om)-1(\\363)28(w)-347(i)-346(ze)-347(\\252z)-1(ami)-346(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(gry)1(z)-1(a\\242)-387(b)-27(\\246)-1(d)1(\\241)-387(ten)-387(p)1(lac)-1(ek)-387(\\261wi\\241tec)-1(zn)28(y)84(,)-387(a)-387(z)-387(t\\246s)-1(k)1(nic\\241)-387(i)-386(turb)1(ac)-1(j)1(ami)-387(sp)-28(o\\252em)-387(do)-387(sn\\363)28(w)]TJ 0 -13.549 Td[(legn\\241..)1(.)]TJ 27.879 -13.549 Td[(Jez)-1(u)1(s)-356(m)-1(\\363)-55(j,)-355(Jez)-1(u)1(!)-356(r)1(w)27(a\\252y)-355(si\\246)-356(\\273)-1(al)1(ne,)-356(p)1(rzydu)1(s)-1(zone)-356(sk)28(o)28(wyt)28(y)-356(d)1(ok)28(o\\252a)-356(Han)1(ki,)-355(a\\273)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)27(kn)1(\\246)-1(\\252a)-318(d)1(o)-56(j)1(rz)-1(a)28(wsz)-1(y)-318(n)1(araz)-319(zna)-55(jome)-319(t)28(w)28(arze)-319(i)-318(o)-28(czy)-318(\\252z)-1(ami)-318(pr)1(z)-1(es)-1(zklon)1(e)-1(.)1(..)-318(Na)28(w)27(et)]TJ 0 -13.549 Td[(Jagu)1(\\261)-466(zwies)-1(i\\252a)-464(g\\252)-1(o)28(w)28(\\246)-465(nad)-464(ksi\\241\\273)-1(k)56(\\241)-465(i)-464(na)-464(bia\\252e)-465(k)56(art)28(y)-464(la\\252a)-465(ci\\246)-1(\\273kimi)-464(\\252z)-1(ami,)-464(a\\273)-466(j)1(\\241)]TJ 0 -13.549 Td[(matk)56(a)-270(sz)-1(tu)1(rc)28(hani)1(e)-1(m)-270(p)1(rzyw)28(o)-28(dzi\\252a)-269(do)-269(opami\\246tania,)-269(h)1(ale)-1(!)-269(p)-27(oredzi\\252a)-269(s)-1(i\\246)-269(utu)1(li\\242,)-270(k)1(ie)-1(j)]TJ 0 -13.55 Td[(w\\252a\\261)-1(n)1(ie)-366(An)28(tek)-365(ja)28(wi\\252)-365(s)-1(i\\246)-365(w)-366(p)1(am)-1(i\\246ci)-366(t)1(ak)-366(\\273yw)28(o,)-365(\\273)-1(e)-365(jak)-365(wte)-1(d)1(y)-365(w)-366(Bo\\273)-1(e)-365(Naro)-28(d)1(z)-1(enie)]TJ 0 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252a)-416(g\\252os)-417(j)1(e)-1(go)-415(gor\\241cy)-416(i)-416(zda\\252o)-416(si\\246)-416(jej,)-415(i\\273)-416(wp)-28(o)-28(d)1(le)-416(kl\\246c)-1(zy)-416(cisn\\241c)-416(g\\252o)27(w)28(\\246)-416(do)-416(j)1(e)-1(j)]TJ 0 -13.549 Td[(k)28(olan)1(...)-333(to)-333(\\273)-1(al)-333(j)1(\\241)-334(\\261c)-1(i)1(s)-1(n)1(\\241\\252)-334(za)-334(se)-1(r)1(c)-1(e)-333(i)-334(same)-334(\\252z)-1(y)-333(si\\246)-334(p)-27(ola\\252y)-333(z)-334(nag\\252ej)-333(t\\246s)-1(kn)1(o\\261)-1(ci..)1(.)]TJ 27.879 -13.549 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-245(co)-245(dob)1(ro)-28(d)1(z)-1(iej)-245(w)-245(t\\246)-246(p)-27(or\\246)-245(rozp)-28(o)-27(c)-1(zyna\\252)-245(k)56(azanie)-245(i)-245(rumor)-245(si\\246)-245(c)-1(zyni)1(\\252)]TJ -27.879 -13.549 Td[(w)-424(k)28(o\\261c)-1(iele,)-424(gd)1(y\\273)-424(p)-28(o)28(ws)-1(ta)28(w)28(ali)-424(z)-424(kl)1(\\246)-1(cz)-1(ek,)-423(c)-1(isn\\241c)-424(si\\246)-424(jes)-1(zc)-1(ze)-424(barzej)-424(ku)-423(am)28(b)-28(on)1(ie)-424(i)]TJ 0 -13.55 Td[(zadzie)-1(r)1(a)-56(j)1(\\241c)-466(g\\252o)28(wy)-465(w)-465(g\\363r)1(\\246)-1(,)-464(ku)-464(ks)-1(i)1(\\246)-1(d)1(z)-1(u)1(,)-465(kt\\363r)1(e)-1(n)-464(o)-465(M)1(\\246)-1(ce)-466(P)29(a\\253skiej)-465(p)-27(o)28(wiada\\252)-465(i)-464(o)]TJ 0 -13.549 Td[(t)28(ym,)-349(j)1(ak)-349(go)-349(to)-349(p)1(as)-1(ku)1(dn)1(e)-350(\\233yd)1(o)28(w)-1(i)1(n)28(y)-349(u)1(krzy\\273)-1(o)28(w)28(a\\252y)83(,)-348(\\273)-1(e)-349(to)-349(\\261w)-1(i)1(a)-1(t)-348(przysz)-1(ed\\252)-349(zba)28(wi\\242,)]TJ\nET\nendstream\nendobj\n1379 0 obj <<\n/Type /Page\n/Contents 1380 0 R\n/Resources 1378 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1378 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1383 0 obj <<\n/Length 10287     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(431)]TJ -358.232 -35.866 Td[(\\273e)-434(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242)-433(c)27(h)1(c)-1(i)1(a\\252)-433(da)28(w)28(a\\242)-433(p)-28(okr)1(z)-1(y)1(w)-1(d)1(z)-1(on)29(ym)-1(,)-432(\\273e)-433(z)-1(a)-433(b)1(iedot\\241)-432(s)-1(i\\246)-433(u)1(p)-28(omin)1(a\\252.)]TJ 0 -13.549 Td[(T)83(ak)-342(rze)-1(wli)1(w)-1(i)1(e)-343(o)28(w)27(e)-343(k)1(rz)-1(y)1(w)-1(d)1(y)-342(P)28(a\\253skie)-342(na)-342(o)-28(cz)-1(y)-342(pr)1(z)-1(yw)28(o)-28(d)1(z)-1(i\\252,)-342(j)1(a\\273)-1(e)-343(si\\246)-343(gor)1(\\241c)-1(o)-342(rob)1(i\\252o)]TJ 0 -13.549 Td[(i)-315(n)1(iejedna)-314(pi\\246\\261)-1(\\242)-315(c)27(h)1(\\252opsk)55(a)-315(zwiera\\252a)-315(s)-1(i)1(\\246)-316(n)1(a)-315(o)-28(d)1(e)-1(ms)-1(t\\246,)-315(a)-315(b)1(abi)-314(nar\\363)-27(d)-315(w)-315(g\\252os)-315(s)-1(zlo)-28(c)28(ha\\252)]TJ 0 -13.549 Td[(cz)-1(yn)1(i\\241c)-334(spra)28(w)28(\\246)-334(w)28(e)-1(d)1(le)-334(nos\\363)28(w.)]TJ 27.879 -13.549 Td[(D\\252ugo)-384(nau)1(c)-1(za\\252)-385(wyk\\252ad)1(a)-56(j\\241c)-385(wsz)-1(y)1(s)-1(tk)28(o)-384(doku)1(m)-1(en)28(tn)1(ie)-1(,)-384(ja\\273e)-385(k)56(a)-56(j)1(\\261)-385(niek)56(a)-56(j)-384(o)-28(cz)-1(y)]TJ -27.879 -13.55 Td[(klei\\252y)-404(s)-1(i)1(\\246)-405(\\261)-1(p)1(ikiem,)-405(a)-404(p)-27(o)-405(k)56(\\241tac)27(h)-403(ju\\273)-404(na)-404(dobr)1(e)-405(dr)1(z)-1(em)-1(al)1(i,)-404(ale)-405(p)-27(o)-28(d)-404(k)28(oni)1(e)-1(c)-405(zwr\\363)-28(ci\\252)]TJ 0 -13.549 Td[(si\\246)-430(p)1(ros)-1(t)1(o)-430(d)1(o)-429(naro)-27(du)-429(i)-429(wyc)28(h)28(ylon)28(y)-429(z)-429(am)27(b)-27(on)28(y)84(,)-429(j\\241\\252)-429(s)-1(i)1(e)-1(ln)1(ie)-430(wytr)1(z)-1(\\241c)28(ha\\242)-430(p)1(i\\246\\261)-1(ciami)]TJ 0 -13.549 Td[(a)-391(kr)1(z)-1(ycz)-1(e\\242,)-391(jak)28(o)-391(co)-391(dn)1(ia,)-391(co)-391(go)-28(d)1(z)-1(in)1(a)-391(i)-391(na)-390(k)55(a\\273dy)1(m)-392(miejsc)-1(u)-390(Je)-1(zus)-391(um\\246c)-1(zon)-391(j)1(e)-1(st)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-230(grze)-1(c)28(h)28(y)-229(nasz)-1(e,)-230(zabi)1(t)-230(p)1(rz)-1(ez)-230(z\\252o)-1(\\261cie)-1(,)-229(b)-27(e)-1(zb)-27(o)-1(\\273no\\261ci)-230(a)-229(niep)-27(os)-1(\\252u)1(s)-1(ze)-1(\\253)1(s)-1(t)28(w)28(o)-230(p)1(ra)28(w)27(om)]TJ 0 -13.549 Td[(b)-27(os)-1(ki)1(m)-1(,)-300(jak)28(o)-300(k)55(a\\273den)-300(c)-1(z\\252o)27(wiek)-300(krzy\\273)-1(u)1(je)-301(Go)-300(w)-301(s)-1(ob)1(ie,)-301(n)1(ie)-301(p)-28(omn\\241c)-301(n)1(a)-301(Jego)-301(ran)29(y)-301(n)1(i)]TJ 0 -13.549 Td[(kr)1(e)-1(w)-333(\\261)-1(wi\\246t\\241,)-333(w)-1(y)1(lan\\241)-333(dl)1(a)-334(n)1(as)-1(ze)-1(go)-333(zba)28(wie)-1(n)1(ia!)]TJ 27.879 -13.55 Td[(Rykn)1(\\241\\252)-376(c)-1(i)-375(na)-376(to)-375(c)-1(a\\252y)-376(n)1(ar\\363)-28(d)-375(i)-376(p)1(\\252ac)-1(ze)-1(,)-375(s)-1(zlo)-28(c)28(hani)1(a)-376(kiej)-376(wic)28(her)-376(r)1(oz)-1(n)1(ie)-1(s\\252y)-376(si\\246)]TJ -27.879 -13.549 Td[(j\\246kiem)-400(wstrz\\241s)-1(a)-55(j\\241cym)-400(p)-27(o)-399(k)28(o\\261)-1(cie)-1(l)1(e)-1(,)-399(a\\273)-400(p)1(rze)-1(sta\\252)-399(m)-1(\\363)28(wi\\242.)-399(Dopiero)-399(kiej)-399(p)1(rz)-1(y)1(c)-1(ic)28(hli)1(,)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252)-391(z)-1(n)1(o)28(w)-1(u)1(,)-391(ale)-391(j)1(u\\273)-391(rad)1(o\\261)-1(n)1(ie)-391(i)-391(kr)1(z)-1(epi)1(\\241c)-1(o,)-390(o)-391(Zm)-1(ar)1(t)28(w)-1(y)1(c)27(h)28(ws)-1(t)1(aniu)-390(P)28(a\\253)1(s)-1(ki)1(m)-391(p)-28(o-)]TJ 0 -13.549 Td[(wiada\\242.)-396(O)-395(onej)-395(z)-1(wie\\261)-1(n)1(ie)-1(,)-395(jak)56(\\241)-396(P)29(an)-396(w)-396(d)1(obr)1(o)-28(c)-1(i)-395(s)-1(w)28(o)-56(j)1(e)-1(j)-395(cz)-1(yn)1(i)-396(co)-396(rok)-395(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wi)]TJ 0 -13.549 Td[(grze)-1(sznem)27(u)-270(i)-271(c)-1(zyn)1(i\\242)-271(b)-28(\\246dzie)-271(a\\273)-272(d)1(o)-271(o)28(w)27(ej)-271(p)-27(ory)84(,)-271(ki)1(e)-1(j)-270(Je)-1(zus)-271(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)-270(z)-1(n)1(o)28(w)-1(u)1(j)-271(n)1(a)-271(\\261w)-1(i)1(a)-1(t)1(,)]TJ 0 -13.55 Td[(b)28(y)-293(s)-1(\\241d)1(z)-1(i)1(\\242)-294(\\273)-1(yw)28(e)-294(i)-293(p)-28(omar\\252e,)-293(b)28(y)-294(h)1(ard)1(e)-294(p)-28(on)1(i\\273a\\242)-1(,)-293(grze)-1(sz)-1(n)1(e)-294(w)-294(ogie\\253)-293(piekieln)28(y)-293(n)1(a)-294(wiek)]TJ 0 -13.549 Td[(wiek)28(\\363)27(w)-341(s)-1(p)28(yc)28(ha\\242,)-342(a)-341(s)-1(p)1(ra)28(wiedliw)28(e)-342(p)-27(o)-342(pr)1(a)28(w)-1(i)1(c)-1(e)-342(sw)27(o)-55(jej)-341(s)-1(adza\\242)-342(w)-342(c)28(h)28(w)27(al)1(e)-342(w)-1(i)1(e)-1(ku)1(iste)-1(j)1(!)]TJ 0 -13.549 Td[(Jak)28(o)-278(pr)1(z)-1(yj)1(dzie)-279(ten)-278(cz)-1(as,)-278(i\\273)-1(e)-278(w)-1(sze)-1(lk)56(a)-278(niespra)28(wiedli)1(w)27(o\\261\\242)-279(ustani)1(e)-1(,)-278(ws)-1(zelk)56(a)-279(k)1(rz)-1(y)1(w)-1(d)1(a)]TJ 0 -13.549 Td[(w)28(e)-1(\\271m)-1(i)1(e)-334(z)-1(ap)1(\\252at\\246)-1(,)-333(a)-333(p\\252ak)56(ani)1(a)-334(cierpi)1(\\241c)-1(yc)28(h)-333(ustan\\241)-333(i)-333(z)-1(\\252o)-333(pan)1(o)28(w)27(a\\242)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(I)-415(t)1(ak)-415(gor)1(\\241c)-1(o)-414(to)-415(m\\363)28(w)-1(i)1(\\252,)-415(tak)-414(p)-27(o)-28(c)-1(zciwie)-1(,)-414(\\273e)-415(k)55(a\\273de)-415(s\\252o)28(w)27(o)-414(kiej)-414(s)-1(\\252o)-28(d)1(k)28(o\\261)-1(\\242)-415(l)1(a\\252)-1(o)]TJ -27.879 -13.55 Td[(si\\246)-333(w)-332(s)-1(erca)-332(i)-332(kieb)28(y)-332(s\\252o\\253ce)-333(rozpal)1(a\\252o)-333(w)-332(d)1(usz)-1(ac)27(h)1(,)-332(\\273e)-333(dziwna)-332(b)1(\\252ogo\\261)-1(\\242)-332(przejmo)27(w)28(a\\252a)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h,)-298(j)1(e)-1(n)1(o)-298(lip)-27(e)-1(c)28(kie)-298(lu)1(dzie)-299(zatrz\\246s)-1(\\252y)-298(si\\246)-298(z)-299(\\273alu)-297(i)-298(pr)1(z)-1(y)1(p)-28(omni)1(e)-1(n)1(ia)-298(krzywd)-297(tak)]TJ 0 -13.549 Td[(b)-27(ole)-1(\\261ni)1(e)-403(\\261c)-1(i)1(s)-1(n)1(\\246)-1(\\252y)-402(d)1(usz)-1(e,)-402(j)1(a\\273)-1(e)-402(ry)1(kn\\246li)-402(wr)1(az)-403(z)-402(p\\252acz)-1(em,)-402(krzyki)1(e)-1(m,)-402(sz)-1(l)1(o)-28(c)27(h)1(aniem)-402(i)]TJ 0 -13.549 Td[(w)28(alili)-281(si\\246)-281(krzy\\273e)-1(m)-281(na)-281(p)-27(o)-28(d)1(\\252)-1(og\\246,)-281(t)28(ym)-281(j\\246kiem)-281(\\273)-1(aln)29(ym)-1(,)-280(t)28(ym)-282(skrzyb)-27(otem)-282(se)-1(r)1(dec)-1(zn)28(ym)]TJ 0 -13.549 Td[(w)28(o\\252)-1(a)-55(j\\241c)-333(o)-334(zm)-1(i)1(\\252)-1(o)28(w)28(anie)-333(i)-333(p)-28(or)1(atun)1(e)-1(k.)1(..)]TJ 27.879 -13.55 Td[(Zak)28(ot\\252o)28(w)27(a\\252o)-435(s)-1(i)1(\\246)-436(w)-435(k)28(o\\261)-1(cie)-1(l)1(e)-1(,)-435(p)1(\\252ac)-1(z)-435(s)-1(i\\246)-435(p)-28(o)-27(dni)1(\\363s)-1(\\252)-435(p)-27(o)27(wsz)-1(ec)27(h)1(n)28(y)-435(i)-435(krzyki)1(,)-435(ale)]TJ -27.879 -13.549 Td[(wnet)-330(p)-27(omiark)28(o)28(w)28(ali)-329(dru)1(dzy)-329(i)-330(j)1(\\246)-1(li)-329(p)-27(o)-28(d)1(nosi\\242)-330(lip)-27(ec)27(kie)-330(k)28(ob)1(iet)27(y)84(,)-329(usadza\\242)-330(je)-330(a)-329(kr)1(z)-1(epi\\242)]TJ 0 -13.549 Td[(dob)1(rymi)-224(s)-1(\\252o)28(wy)83(,)-224(a)-225(d)1(obro)-28(d)1(z)-1(i)1(e)-1(j)-224(p)-27(o)-28(c)-1(zciwy)-225(o)-28(ciera)-56(j)1(\\241c)-225(\\252z)-1(y)-224(r\\246k)55(a)28(w)28(e)-1(m)-225(w)28(o\\252a\\252,)-225(\\273e)-225(P)28(an)-224(Je)-1(zus)]TJ 0 -13.549 Td[(do\\261wiadcza)-423(t)28(yc)28(h,)-422(kt\\363ry)1(c)27(h)-422(mi\\252uj)1(e)-1(,)-422(i\\273)-423(c)28(ho)-28(cia\\273)-423(za)28(w)-1(i)1(nil)1(i,)-422(k)55(ar)1(a)-423(r)1(yc)27(h)1(\\252)-1(o)-422(si\\246)-423(sk)28(o\\253cz)-1(y)84(,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-228(jeno)-228(du)1(fali)-228(w)-229(mi\\252osie)-1(r)1(dzie)-229(P)28(a\\253)1(s)-1(k)1(ie)-1(,)-228(a)-228(lada)-228(dzie\\253)-228(p)-28(o)28(wr\\363)-28(c\\241)-229(wsz)-1(y)1(s)-1(tki)1(e)-229(c)27(h)1(\\252)-1(op)29(y)83(..)1(.)]TJ 27.879 -13.55 Td[(Usp)-28(ok)28(oil)1(i)-457(si\\246)-457(p)-28(o)-456(t)28(yc)27(h)-456(s)-1(\\252o)28(w)28(ac)27(h,)-456(ul\\273y\\252o)-457(i)1(m)-457(galan)28(to)-457(i)-456(du)1(fn)28(u)1(\\261)-1(\\242)-457(wst\\241)-28(pi\\252a)-456(w)]TJ -27.879 -13.549 Td[(se)-1(rca.)]TJ 27.879 -13.549 Td[(A)-402(gd)1(y)-402(wnet)-402(p)-27(otem)-402(ks)-1(i)1(\\241dz)-402(z)-1(ai)1(n)28(tono)28(w)28(a\\252)-402(u)-402(o\\252tar)1(z)-1(a)-401(pie\\261)-1(\\253)-401(Zmart)28(wyc)27(h)28(wsta-)]TJ -27.879 -13.549 Td[(ni)1(a,)-344(k)1(ie)-1(j)-343(or)1(gan)28(y)-343(wt\\363re)-1(m)-343(h)28(uk)1(n\\246\\252)-1(y)-343(z)-344(ca\\252e)-1(j)-343(mo)-28(cy)83(,)-343(ki)1(e)-1(j)-343(d)1(z)-1(w)28(on)28(y)-343(z)-1(a\\261piew)28(a\\252)-1(y)-343(n)1(a)-344(ca\\252y)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at,)-285(a)-285(dob)1(ro)-28(d)1(z)-1(iej)-285(z)-285(Przena)-56(j)1(\\261)-1(wi\\246tsz)-1(ym)-285(Sak)1(rame)-1(n)28(t)1(e)-1(m)-285(j\\241\\252)-285(z)-1(st\\246p)-28(o)28(w)28(a\\242)-286(ku)-284(nar)1(o)-28(do-)]TJ 0 -13.549 Td[(wi)-338(w)-339(sin)28(ym)-338(ob\\252oku)-338(k)56(ad)1(z)-1(id)1(e)-1(\\252)-338(i)-338(dzw)27(on)1(nej)-338(wrza)27(wie,)-338(pi)1(e)-1(\\261\\253)-338(bu)1(c)27(hn)1(\\246)-1(\\252a)-338(ze)-339(ws)-1(zystkic)27(h)]TJ 0 -13.55 Td[(gard)1(z)-1(i)1(e)-1(li)1(,)-458(zak)28(oleba\\252a)-457(s)-1(i\\246)-458(ci\\273ba,)-457(pal)1(\\241c)-1(y)-457(wic)27(h)1(e)-1(r)-457(u)1(niesie)-1(n)1(ia)-457(os)-1(u)1(s)-1(zy\\252)-458(\\252zy)-457(i)-458(p)-27(orw)28(a\\252)]TJ 0 -13.549 Td[(du)1(s)-1(ze,)-415(i)1(\\273)-415(nar)1(az)-415(s)-1(p)-27(o\\252em)-1(,)-414(ki)1(e)-1(j)-414(ten)-414(b)-27(\\363r)-414(c)-1(z\\252o)27(wiecz)-1(y)84(,)-414(roz)-1(c)28(h)28(wian)28(y)-414(i)-414(\\261piew)27(a)-55(j\\241cy)-414(jed-)]TJ 0 -13.549 Td[(n)28(ym,)-397(ogr)1(om)-1(n)28(y)1(m)-398(g\\252ose)-1(m,)-397(ru)1(s)-1(zy\\252)-397(pr)1(o)-28(c)-1(es)-1(j)1(\\241)-397(z)-1(a)-397(p)1(rob)-27(os)-1(zc)-1(ze)-1(m,)-397(kt)1(\\363re)-1(n)-396(m)-1(on)1(s)-1(t)1(rancj\\246)]TJ 0 -13.549 Td[(dzier\\273y\\252)-353(pr)1(z)-1(ed)-353(sob\\241,)-353(\\273e)-354(j)1(ak)28(ob)28(y)-353(s\\252o\\253ce)-354(z\\252o)-28(cis)-1(te,)-353(s\\252o\\253ce)-354(p)1(romie)-1(n)1(iej\\241ce)-354(r)1(oz)-1(gorza\\252o)]TJ 0 -13.549 Td[(nad)-400(g\\252o)28(w)27(ami,)-401(p)1(\\252)-1(y)1(n\\241c)-401(z)-402(w)28(olna)-401(skro\\261)-401(g\\246s)-1(t)28(wy)-401(ni)1(e)-1(p)1(rze)-1(li)1(c)-1(zonej,)-401(wskro\\261)-401(\\261)-1(wiate\\252)-401(ja-)]TJ 0 -13.55 Td[(rz\\241c)-1(y)1(c)27(h,)-406(w)-406(k)55(ad)1(z)-1(i)1(e)-1(ln)29(yc)27(h)-406(d)1(ymac)27(h)-406(ledwie)-407(d)1(o)-56(j)1(rzane,)-407(\\261pi)1(e)-1(w)28(aniami)-406(op)-27(o)27(wite)-406(i)-407(p)1(rze)-1(z)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-333(wsz)-1(ystkiego)-333(naro)-27(du,)-333(i)-333(p)1(rze)-1(z)-334(se)-1(r)1(c)-1(a)-333(ws)-1(zystkie)-334(z)-333(m)-1(i\\252o\\261c)-1(i)1(\\241)-334(n)1(ies)-1(ion)1(e)-1(.)1(..)]TJ\nET\nendstream\nendobj\n1382 0 obj <<\n/Type /Page\n/Contents 1383 0 R\n/Resources 1381 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1381 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1386 0 obj <<\n/Length 9475      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(432)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ob)-27(c)27(h)1(o)-28(dzili)-474(k)28(o\\261)-1(ci\\363\\252)-475(w)28(e)-475(\\261)-1(r)1(o)-28(dk)1(u)-475(a)-474(w)27(ol)1(niu)1(\\261)-1(k)28(o,)-474(noga)-475(za)-475(n)1(og\\241,)-475(cisn\\241c)-475(si\\246)-475(w)]TJ -27.879 -13.549 Td[(strasz)-1(n)1(e)-1(j)-432(cias)-1(n)1(o)-28(cie)-433(i)-433(\\261pi)1(e)-1(w)28(a)-56(j)1(\\241c)-433(z)-433(c)-1(a\\252ej)-433(mo)-28(cy)83(,)-432(a)-432(organ)28(y)-432(w)27(ci\\241\\273)-433(gra\\252y)84(,)-433(a)-432(dzw)27(on)29(y)]TJ 0 -13.549 Td[(b)-27(e)-1(zustann)1(ie)-334(b)1(i\\252y)83(.)1(..)]TJ 27.879 -13.549 Td[(Allelu)1(ja!)-369(Alleluj)1(a!)-370(Al)1(le)-1(l)1(uja!)-369(Hucza\\252)-370(k)28(o\\261)-1(ci\\363\\252,)-369(a\\273)-371(m)28(ur)1(y)-370(si\\246)-370(trz\\246)-1(s\\252y)83(,)-369(\\261piew)27(a\\252y)]TJ -27.879 -13.549 Td[(se)-1(rca)-314(ws)-1(zystkie)-314(i)-314(gard)1(z)-1(iele,)-314(a)-314(te)-315(g\\252osy)-314(p)1(\\252)-1(omienn)1(e)-315(i)-314(ogn)1(iem)-315(n)1(abrzmia\\252e)-315(n)1(ib)28(y)-314(\\273ar-)]TJ 0 -13.55 Td[(pt)1(aki)-267(r)1(w)27(a\\252y)-266(s)-1(i)1(\\246)-267(z)-267(krzykiem)-267(w)28(e)-1(se)-1(la)-266(ogromn)28(ym,)-266(k)28(o\\252)-1(o)28(w)28(a\\252y)-267(p)-27(o)-28(d)-266(sklepieniami,)-266(kiejb)29(y)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(lep\\252e)-384(w)-383(up)1(ale)-1(,)-383(i)-383(w)-384(n)1(o)-28(c)-384(wio\\261)-1(n)1(ian)1(\\241)-384(p\\252y)1(n\\246\\252)-1(y)84(,)-383(na)-383(s)-1(\\252o\\253)1(c)-1(a)-383(s)-1(i\\246)-383(gdzie)-1(sik)-383(nies\\252)-1(y)84(,)-383(w)27(e)]TJ 0 -13.549 Td[(ws)-1(zyste)-1(k)-333(\\261wiat,)-333(k)56(a)-56(j)-333(jeno)-333(u)1(nies)-1(i)1(e)-1(n)1(ie)-1(m)-333(du)1(s)-1(ze)-334(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(e)-334(si\\246ga)-56(j)1(\\241...)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-246(p)1(rze)-1(d)-244(p)-27(\\363\\252no)-28(c)28(kiem)-245(s)-1(k)28(o\\253)1(c)-1(zy\\252o)-245(si\\246)-245(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-245(i)-244(lud)1(z)-1(ie)-245(j)1(\\246)-1(l)1(i)-245(si\\246)-245(\\261)-1(p)1(ies)-1(z-)]TJ -27.879 -13.549 Td[(no)-293(na)-294(\\261w)-1(i)1(at)-294(wyw)27(al)1(a\\242)-1(.)-294(T)28(ylk)28(o)-293(Hank)56(a)-294(os)-1(ta\\252a)-294(j)1(e)-1(szc)-1(ze)-1(,)-293(b)-28(o)-294(si\\246)-294(tak)-294(rozmo)-28(dl)1(i\\252a)-294(gor\\241co,)]TJ 0 -13.549 Td[(tak)-300(j\\241)-301(an)1(o)-301(s)-1(\\252o)28(w)28(a)-301(ksi\\246)-1(\\273e)-301(przej\\246\\252)-1(y)-300(otuc)28(h\\241,)-300(a)-301(te)-301(\\261)-1(p)1(iew)-1(y)-300(radosne,)-301(n)1(ab)-27(o\\273)-1(e\\253st)28(w)27(o)-301(i)-300(pa-)]TJ 0 -13.55 Td[(mi\\246)-1(\\242)-248(t)1(e)-1(go,)-247(c)-1(ze)-1(go)-247(to)-248(d)1(z)-1(i)1(s)-1(ia)-55(j)-247(dop)1(i\\246)-1(\\252a,)-247(tak)-247(j\\241)-248(u)1(krzepi\\252y)84(,)-248(i\\273e)-248(ca\\252)-1(\\241)-247(rad)1(o\\261)-1(\\242)-248(sk\\252ada\\252a)-247(p)-28(o)-28(d)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-1(o)28(w)28(e)-398(nogi)1(,)-397(z)-1(ap)-27(omnia)28(ws)-1(zy)-397(w)-397(pacie)-1(r)1(z)-1(u)-396(o)-397(c)-1(a\\252ym)-397(\\261)-1(wiec)-1(i)1(e)-1(.)-397(Dop)1(iero)-397(Jam)27(b)1(ro\\273y)]TJ 0 -13.549 Td[(br)1(z)-1(\\241k)56(an)1(ie)-1(m)-333(klu)1(c)-1(z\\363)27(w)-333(pr)1(z)-1(yn)1(iew)27(oli)1(\\252)-334(j)1(\\241)-334(d)1(o)-334(wyj)1(\\261)-1(cia)-333(z)-334(pu)1(s)-1(tego)-333(ju)1(\\273)-334(k)28(o\\261)-1(cio\\252a.)]TJ 27.879 -13.549 Td[(\\233e)-288(n)1(a)27(w)28(e)-1(t)-287(i)-287(ten)-287(s)-1(tr)1(ac)27(h)-287(o)-287(An)28(tk)56(a,)-287(kt\\363r)1(e)-1(n)-287(o)-28(d)-287(t)28(y)1(la)-288(czas)-1(u)-287(\\273y\\252)-287(w)-288(ni)1(e)-1(j)-287(i)-287(sk)28(o)27(wycza\\252)]TJ -27.879 -13.549 Td[(za)-339(leda)-339(p)-27(o)28(w)27(o)-28(d)1(e)-1(m,)-339(j)1(akb)28(y)-338(w)-339(niej)-338(p)-28(omar\\252)-339(n)1(agle)-1(,)-338(tak)-339(b)1(ard)1(z)-1(o)-339(p)-27(o)-28(cz)-1(u)1(\\252a)-339(s)-1(i)1(\\246)-340(sp)-27(ok)28(o)-56(jn)1(a)]TJ 0 -13.55 Td[(i)-333(du)1(fn)1(a)-334(w)-333(s)-1(ob)1(ie.)]TJ 27.879 -13.549 Td[(Roz)-1(gl)1(\\241da\\252a)-328(si\\246)-328(z)-1(a)-327(s)-1(w)28(oimi)-328(p)-27(osu)28(w)27(a)-55(j\\241c)-328(si\\246)-328(w)27(oln)1(o)-328(ku)-327(d)1(om)-1(o)28(wi,)-327(gdy\\273)-328(w)28(oz)-1(y)-327(to-)]TJ -27.879 -13.549 Td[(cz)-1(y\\252y)-364(si\\246)-365(n)1(ie)-1(p)1(rze)-1(rw)28(an)28(ym)-364(\\252a\\253cuc)27(h)1(e)-1(m)-364(i)-364(lud)1(z)-1(ie)-364(s)-1(zli)-364(c)-1(a\\252y)1(m)-1(i)-364(ku)1(pami)-364(b)-28(ok)1(ie)-1(m)-364(drogi)1(,)]TJ 0 -13.549 Td[(ledwie)-378(d)1(o)-56(jr)1(z)-1(an)1(e)-1(j)1(,)-378(b)-27(o)-378(ksi\\246\\273)-1(yc)-378(j)1(u\\273)-378(zas)-1(ze)-1(d)1(\\252)-378(i)-378(ciem)-1(n)1(o)-378(b)28(y)1(\\252)-1(o)-377(na)-377(\\261)-1(wiec)-1(ie,)-378(b)1(ur)1(e)-378(c)27(hm)28(u-)]TJ 0 -13.549 Td[(rzysk)55(a)-381(ci\\241)-28(gn)1(\\246)-1(\\252y)-380(g\\363r\\241,)-381(co)-381(tro)-28(c)28(ha)-381(p)1(rz)-1(es\\252)-1(an)1(ia)-55(j\\241c)-381(te)-382(gr)1(anato)28(w)27(e)-381(p)-27(ola)-381(ni)1(e)-1(b)1(a,)-381(k)56(a)-56(j)-380(s)-1(i\\246)]TJ 0 -13.55 Td[(jar)1(z)-1(y)1(\\252)-1(y)-333(gwiazdy)-333(d)1(ale)-1(k)1(ie)-1(.)]TJ 27.879 -13.549 Td[(No)-28(c)-390(sz)-1(\\252a)-390(ciep\\252a,)-390(cic)28(ha)-390(i)-389(o)-28(d)-389(ros)-390(ob\\014)1(t)28(yc)27(h)-389(wilgotn)1(a)27(w)28(a,)-390(z)-390(p)-27(\\363l)-390(p)-27(o)-28(ci\\241)-28(ga\\252)-390(mi\\246-)]TJ -27.879 -13.549 Td[(ciuc)28(hn)28(y)-297(wiaterek,)-297(p)1(rz)-1(ej\\246t)28(y)-297(suro)28(wizn\\241)-297(z)-1(i)1(e)-1(mic)-297(i)-297(m)-1(ok)1(rade\\252,)-297(a)-297(p)-28(o)-297(d)1(rogac)27(h)-296(roznosi\\252y)]TJ 0 -13.549 Td[(si\\246)-370(mio)-28(d)1(ne)-370(zapac)27(h)29(y)-369(top)-28(oli)-369(i)-369(b)1(rz\\363)-1(zek.)-369(Lud)1(z)-1(ie)-370(mro)28(wili)-369(si\\246)-370(w)-369(c)-1(ieni)1(ac)27(h)-369(ws)-1(i)1(,)-370(\\273e)-370(in)1(o)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-448(niek)56(a)-56(j)-447(zam)-1(a)-55(jacz)-1(y)1(\\252)-1(y)-447(g\\252o)28(wy)-448(n)1(a)-448(j)1(a\\261)-1(n)1(i)-447(p)-28(o)28(wietrza)-448(n)1(ie)-1(p)1(rzys)-1(\\252on)1(ionego;)-447(ws)-1(z\\246)-1(d)1(y)]TJ 0 -13.55 Td[(rozlega\\252y)-307(s)-1(i\\246)-307(kroki)-307(a)-307(g\\252osy)83(,)-307(p)1(ies)-1(ki)-307(te\\273)-308(za)-56(j)1(adlej)-307(d)1(o)-28(c)-1(i)1(e)-1(r)1(a\\252)-1(y)-307(z)-307(op\\252otk)28(\\363)28(w,)-307(a)-307(p)-28(o)-307(c)27(h)1(a\\252u-)]TJ 0 -13.549 Td[(pac)28(h)-333(tu)-333(i)-333(o)28(wdzie)-334(rozb\\252yskiw)28(a\\252y)-333(\\261)-1(wiat\\252a.)]TJ 27.879 -13.549 Td[(Hank)56(a,)-306(opat)1(rz)-1(y)1(w)-1(sz)-1(y)-306(p)-27(o)-307(d)1(ro)-28(d)1(z)-1(e)-307(sta)-55(jni)1(e)-307(i)-307(ob)-27(ory)84(,)-306(p)-28(osz\\252)-1(a)-306(do)-306(c)27(h)1(a\\252up)28(y)84(.)-307(J)1(u\\273)-307(si\\246)]TJ -27.879 -13.549 Td[(tam)-334(k)1(\\252adli)-333(spa\\242.)]TJ 27.879 -13.549 Td[({)-308(Niec)27(h)-307(jeno)-308(wr\\363)-28(ci)-308(a)-308(gosp)-28(o)-27(darzy)83(,)-307(to)-308(ni)-308(s\\252\\363)28(w)-1(k)1(ie)-1(m)-308(m)28(u)-308(pr)1(z)-1(y)1(p)-28(omn\\246)-308(pr)1(z)-1(es)-1(z\\252e)-1(.)]TJ -27.879 -13.55 Td[({)-360(P)28(ostan)1(a)27(wia\\252a)-360(r)1(oz)-1(d)1(z)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-361(si\\246)-360(do)-359(s)-1(n)28(u)1(.)-360({)-360(A)-359(je\\273)-1(eli)-359(z)-1(n)1(o)27(wuj)-359(si\\246)-360(z)-360(ni\\241)-360(spr)1(z)-1(\\246gni)1(e)-1(?)]TJ 0 -13.549 Td[({)-333(p)-28(om)28(y\\261la\\252a)-334(n)1(araz,)-334(d)1(os)-1(\\252y)1(s)-1(za)27(wsz)-1(y)-333(Jagu)1(s)-1(i)1(\\246)-334(wrac)-1(a)-55(j\\241c\\241)-334(n)1(a)-333(s)-1(w)28(o)-56(j)1(\\241)-334(stron)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Leg\\252)-1(a)-424(w)-424(p)-28(o\\261cie)-1(l)1(,)-424(nas\\252)-1(u)1(c)27(h)28(u)1(j\\241c)-424(c)-1(zas)-425(jak)1(i\\261)-1(.)-424(Na)-424(wsi)-424(b)28(y\\252o)-424(c)-1(ic)28(ho,)-424(j)1(e)-1(n)1(o)-425(z)-424(dr\\363g)]TJ -27.879 -13.549 Td[(dal)1(e)-1(ki)1(c)27(h)-367(trz\\246)-1(s\\252y)-368(s)-1(i)1(\\246)-369(ostatn)1(ie)-368(turk)28(ot)28(y)-367(w)27(oz\\363)28(w)-369(i)-367(g\\252os)-1(y)-367(z)-1(amiera)-56(j)1(\\241c)-1(e)-368(w)-368(pu)1(s)-1(t)28(y)1(c)27(h)-367(o)-28(d-)]TJ 0 -13.549 Td[(dal)1(ac)27(h.)]TJ 27.879 -13.549 Td[({)-382(B)-1(oga)-382(b)28(y)-382(nie)-383(b)29(y\\252o)-383(n)1(i)-383(spr)1(a)27(wiedl)1(iw)27(o\\261ci)-383(n)1(a)-383(\\261wie)-1(cie!{)-383(sz)-1(epn)1(\\246)-1(\\252a)-382(gro\\271nie,)-382(ale)]TJ -27.879 -13.55 Td[(zbrak)1(\\252)-1(o)-333(j)1(e)-1(j)-333(si\\252)-334(d)1(o)-333(roz)-1(m)28(y\\261la\\253,)-333(b)-27(o)-333(\\261)-1(p)1(ik)-333(j\\241)-333(z)-1(ar)1(az)-334(z)-334(mie)-1(j)1(s)-1(ca)-333(z)-1(morzy\\252.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Naza)-56(ju)1(trz)-333(bard)1(z)-1(o)-333(p)-27(\\363\\271)-1(n)1(o)-334(ob)1(ud)1(z)-1(i\\252y)-333(si\\246)-334(Lip)-27(ce)-1(.)]TJ 0 -13.549 Td[(Dzie)-1(\\253)-225(si\\246)-227(j)1(u\\273)-226(rozwie)-1(r)1(a\\252)-226(kiej)-226(to)-226(mo)-28(d)1(re)-226(ok)28(o,)-226(jes)-1(zcz)-1(ec)27(h)-226(b)1(ielme)-1(m)-226(\\261)-1(p)1(iku)-225(z)-1(asn)28(u)1(te)-1(,)]TJ -27.879 -13.549 Td[(ale)-334(j)1(u\\273)-333(w)-1(i)1(dne)-333(do)-333(c)-1(n)1(a)-334(i)-333(p)-27(o\\252yskuj)1(\\241c)-1(e,)-333(a)-334(wie\\261)-334(spa\\252a)-333(w)-334(na)-55(jl)1(e)-1(p)1(s)-1(ze)-1(.)]TJ 27.879 -13.55 Td[(Nie)-279(kw)27(ap)1(ili)-279(si\\246)-279(z)-1(r)1(yw)27(a\\242)-279(z)-280(b)1(ar\\252og\\363)28(w)-1(,)-278(c)27(ho)-27(\\242)-280(d)1(z)-1(ie\\253)-279(ci)-279(to)-279(s)-1(zed\\252)-279(P)28(a\\253skiego)-279(Zm)-1(ar)1(-)]TJ -27.879 -13.549 Td[(t)28(wyc)27(h)28(wstani)1(a.)-469(S\\252o\\253)1(c)-1(e)-469(wyni)1(e)-1(s\\252o)-469(s)-1(i\\246)-469(zarno)-468(o)-28(d)-469(wsc)27(h)1(o)-28(du)-468(i)-469(zagra\\252o)-469(w)-469(sta)27(w)28(ac)27(h)-468(a)]TJ\nET\nendstream\nendobj\n1385 0 obj <<\n/Type /Page\n/Contents 1386 0 R\n/Resources 1384 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1371 0 R\n>> endobj\n1384 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1389 0 obj <<\n/Length 9682      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(433)]TJ -358.232 -35.866 Td[(rosac)27(h)1(,)-378(i)-377(p)1(\\252yn\\246\\252o)-378(p)-27(o)-377(blad)1(ym,)-378(wysokim)-377(niebie,)-377(jakb)29(y)-378(\\261pi)1(e)-1(w)28(a)-56(j)1(\\241c)-378(ws)-1(ze)-1(m)28(u)-377(\\261)-1(wiatu)]TJ 0 -13.549 Td[(cie)-1(p)1(\\252e)-1(m)-333(a)-334(\\261w)-1(i)1(at\\252o\\261)-1(ci\\241:)-333(Allelu)1(ja!)]TJ 27.879 -13.549 Td[(Nies)-1(\\252o)-259(s)-1(i)1(\\246)-260(ogromne)-260(i)-259(p\\252omienn)1(e)-260(w)-1(skro\\261)-259(m)-1(gie\\252)-260(p)1(rzyzie)-1(mn)28(yc)28(h;)-259(ws)-1(kr)1(o\\261)-260(s)-1(ad)1(\\363)28(w)]TJ -27.879 -13.549 Td[(i)-235(c)28(ha\\252up)1(,)-235(i)-235(p)-27(\\363l,)-235(\\273e)-236(p)1(taki)-235(za\\261)-1(p)1(iew)27(a\\252y)-235(r)1(ado\\261nie,)-235(w)28(o)-28(dy)-235(d)1(z)-1(w)28(oni)1(\\252)-1(y)-234(w)27(es)-1(eln)28(y)1(m)-236(b)-27(e)-1(\\252k)28(otem,)]TJ 0 -13.549 Td[(b)-27(ory)-289(zas)-1(zumia\\252y)84(,)-289(w)-1(i)1(ate)-1(r)-288(p)-28(o)28(wia\\252,)-289(zatrz\\246)-1(s\\252y)-289(s)-1(i)1(\\246)-290(m\\252o)-28(de)-289(li\\261c)-1(i)1(e)-1(,)-289(a)-289(ziem)-1(ia)-289(zadr)1(ga\\252a,)-289(\\273)-1(e)]TJ 0 -13.55 Td[(g\\246s)-1(te)-334(r)1(un)1(ie)-334(zb)-28(\\363\\273)-334(zak)28(oleba\\252y)-333(si\\246)-334(cic)27(h)28(u)1(\\261)-1(k)28(o)-333(i)-333(rosy)-333(kiej)-333(\\252z)-1(y)-333(p)-27(os)-1(yp)1(a\\252y)-333(s)-1(i\\246)-333(na)-333(z)-1(iemi\\246)-1(.)]TJ 27.879 -13.549 Td[(Hej!)-333(w)27(eso\\252)-1(y)-333(d)1(z)-1(ie\\253)-333(n)1(as)-1(ta\\252!)-333(Chr)1(ys)-1(tu)1(s)-334(n)1(am)-334(z)-1(mart)28(wyc)28(h)28(ws)-1(ta\\252!)-333(Allelu)1(ja!)]TJ 0 -13.549 Td[(Zmart)28(wyc)27(h)28(wsta\\252)-416(On)1(,)-416(um\\246c)-1(zon)-416(i)-415(lu)1(t\\241)-416(z\\252)-1(o\\261ci\\241)-416(zabit!)-415(P)28(o)28(ws)-1(ta\\252)-416(ci)-416(zno)28(wu)-415(w)]TJ -27.879 -13.549 Td[(\\273yw)27(e,)-459(z)-459(c)-1(iemno\\261c)-1(i,)-458(z)-460(mroz\\363)27(w,)-459(z)-459(pl)1(uc)27(h)-458(s)-1(i)1(\\246)-460(wyn)1(i\\363s)-1(\\252)-459(Na)-55(jmilsz)-1(y)1(!)-459(\\221mierci)-459(s)-1(r)1(ogie)-1(j)]TJ 0 -13.549 Td[(si\\246)-473(wyd)1(ar\\252,)-472(z)-1(m\\363g\\252)-472(ni)1(e)-1(zm)-1(o\\273one)-472(ku)-472(cz)-1(\\252o)28(wiek)28(o)27(w)28(e)-1(m)28(u)-472(sz)-1(cz)-1(\\246\\261)-1(ciu)-471(i)-472(oto)-472(w)-473(ten)-472(cz)-1(as)]TJ 0 -13.549 Td[(wio\\261nian)28(y)84(,)-303(w)-302(t\\246)-303(p)-28(or)1(\\246)-304(r)1(o)-28(dn)1(\\241)-303(u)1(nosi)-303(si\\246)-303(nad)-302(z)-1(i)1(e)-1(miami,)-303(w)-302(t)27(y)1(m)-303(s)-1(\\252o\\253cu)-302(pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(t-)]TJ 0 -13.55 Td[(sz)-1(ym)-367(u)1(ta)-56(j)1(on)28(y)84(,)-367(i)-366(rozs)-1(i)1(e)-1(w)28(a)-367(w)28(ok)28(\\363\\252)-367(w)27(ese)-1(le,)-366(bud)1(z)-1(i)-366(omdla\\252e,)-367(o\\273ywia)-366(m)-1(ar)1(t)28(w)27(e,)-367(wznosi)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gi\\246)-1(te,)-333(ja\\252o)28(w)27(e)-333(z)-1(ap)1(\\252adni)1(a.)]TJ 27.879 -13.549 Td[(Allelu)1(ja!)-333(Allelu)1(ja!)-333(Allelu)1(ja!..)1(.)]TJ 0 -13.549 Td[(T)28(ym)-334(ci)-333(to)-334(\\261wiat)-333(w)-1(sz)-1(y)1(s)-1(tek)-333(s)-1(i)1(\\246)-334(rozle)-1(ga\\252)-333(onego)-333(dni)1(a)-334(P)29(a\\253skiego.)]TJ 0 -13.549 Td[(Jeno)-333(w)-334(Lip)-27(cac)27(h)-333(b)28(y\\252o)-333(cis)-1(ze)-1(j)-332(i)-334(sm)27(u)1(tni)1(e)-1(j)-333(n)1(i\\271li)-333(p)-28(o)-333(in)1(ne)-334(r)1(oki)-333(w)-334(t\\246)-334(p)-27(or\\246.)]TJ 0 -13.55 Td[(Zas)-1(p)1(ali)-354(galan)28(to,)-354(b)-27(o)-355(j)1(u\\273)-355(o)-355(d)1(u\\273ym)-355(d)1(niu)1(,)-355(k)1(ie)-1(j)-354(s\\252o\\253ce)-355(w)27(ci\\241)-28(ga\\252o)-354(s)-1(i\\246)-355(n)1(ad)-354(s)-1(ad)1(y)83(,)]TJ -27.879 -13.549 Td[(dop)1(iero)-333(r)1(uc)27(h)-332(si\\246)-333(c)-1(zyn)1(i\\252)-333(p)-27(o)-333(c)27(h)1(a\\252upac)28(h,)-332(s)-1(k)1(rz)-1(y)1(pia\\252y)-332(wie)-1(r)1(z)-1(eje)-333(i)-332(roz)-1(czo)-28(c)27(h)1(rane)-333(g\\252o)28(wy)]TJ 0 -13.549 Td[(wygl\\241d)1(a\\252y)-393(rozz)-1(i)1(e)-1(w)28(ane)-393(na)-392(\\261)-1(wiat)-393(Bo\\273y)83(,)-392(kt\\363ren)-393(sto)-55(ja\\252)-393(w)-393(s\\252)-1(o\\253)1(c)-1(u)1(,)-393(sk)28(o)28(w)-1(r)1(onk)28(o)28(wymi)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(rgot)1(am)-1(i)-333(dzw)28(oni\\241cy)-333(i)-333(m)-1(\\252o)-28(d)1(\\241)-334(zieleni\\241)-333(pr)1(z)-1(ytr)1(z)-1(\\241\\261ni)1(\\246)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(I)-367(u)-367(B)-1(or)1(yn\\363)28(w)-367(z)-1(aspali)1(.)-368(J)1(e)-1(dn)1(a)-367(Hank)56(a,)-367(c)-1(o)-367(s)-1(i)1(\\246)-368(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-368(p)-27(oran)1(i\\252a,)-367(b)28(y)-367(obu)1(dzi\\242)]TJ -27.879 -13.55 Td[(Pi)1(e)-1(tr)1(k)55(a)-323(do)-324(sz)-1(yk)28(o)28(w)28(ania)-324(k)28(on)1(ia)-324(i)-324(b)1(ryk)1(i,)-324(sam)-1(a)-323(z)-1(a\\261)-324(z)-1(a)-55(j\\246\\252a)-324(s)-1(i\\246)-324(p)1(rz)-1(y)1(goto)28(w)27(an)1(ie)-1(m)-324(\\261w)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(conego.)-416(J\\363zk)55(a.)-415(t)28(ymc)-1(zas)-1(em)-416(z)-416(niem)-1(a\\252y)1(m)-416(piskiem)-416(pu)1(c)-1(o)28(w)27(a\\252a)-415(dzie)-1(ci,)-415(s)-1(ama)-416(si\\246)-416(te)-1(\\273)]TJ 0 -13.549 Td[(w)28(e)-431(\\261wi\\241te)-1(cz)-1(n)1(e)-430(s)-1(zm)-1(at)28(y)-429(przy)28(o)-28(d)1(z)-1(iew)27(a)-55(j\\241c,)-430(a)-430(p)-27(o)-28(d)-429(s)-1(tu)1(dn)1(i\\241)-430(na)-430(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-429(Pietrek)-430(z)]TJ 0 -13.549 Td[(Wit)1(kiem)-333(d)1(om)27(yw)28(ali)-332(si\\246)-333(d)1(o)-332(c)-1(zysta;)-332(t)28(ylk)28(o)-332(stary)-332(Bylica)-332(z)-1(ab)1(a)28(w)-1(i)1(a\\252)-333(si\\246)-332(z)-333(p)1(ie)-1(skiem)-333(n)1(a)]TJ 0 -13.549 Td[(gank)1(u,)-333(cz)-1(\\246s)-1(to)-333(nose)-1(m)-333(p)-28(o)-27(c)-1(i\\241)-27(ga)-56(j)1(\\241c)-1(,)-333(cz)-1(y)-333(ju)1(\\273)-334(kr)1(a)-56(j\\241)-333(ki)1(e)-1(\\252basy)84(.)]TJ 27.879 -13.55 Td[(W)84(e)-1(d)1(le)-361(z)-1(wycz)-1(a)-55(ju)-360(ni)1(e)-362(r)1(oz)-1(p)1(alono)-360(ognia)-360(w)-361(k)28(om)-1(i)1(nie,)-361(k)28(on)29(te)-1(n)28(t)1(uj\\241c)-361(si\\246)-361(z)-1(i)1(m)-1(n)29(ym)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(con)28(ym.)-260(W\\252a\\261)-1(n)1(ie)-261(j)1(e)-261(b)28(y\\252a)-260(Hank)56(a)-260(pr)1(z)-1(y)1(nosi\\252a)-261(z)-260(o)-56(j)1(c)-1(o)28(w)27(ej)-260(izb)28(y)84(,)-260(rozdz)-1(i)1(e)-1(la)-55(j\\241c)-260(p)-28(o)-260(ta-)]TJ 0 -13.549 Td[(lerzac)27(h,)-290(\\273e)-291(k)55(a\\273dem)27(u)-290(p)-27(o)-291(r)1(\\363)27(wn)1(o)-291(wypad)1(\\252o)-291(p)-27(o)-291(k)56(a)28(w)27(al)1(e)-291(kie\\252bas)-1(y)84(,)-290(s)-1(zynk)1(i,)-290(s)-1(era,)-290(c)27(hl)1(e)-1(b)1(a,)]TJ 0 -13.549 Td[(ja)-55(jek)-333(i)-333(plac)28(k)55(a)-333(s\\252)-1(o)-27(dki)1(e)-1(go.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-309(ki)1(e)-1(j)-308(si\\246)-309(i)-308(s)-1(ama)-309(ogar)1(n\\246\\252a,)-309(zw)27(o\\252a\\252a)-308(w)-1(szys)-1(tk)1(ic)27(h)-308(d)1(o)-309(j)1(ad\\252a)-309(i)-308(n)1(a)27(w)28(e)-1(t)-308(p)-27(o-)]TJ -27.879 -13.55 Td[(sz)-1(\\252a)-289(p)-27(o)-289(J)1(agusi\\246)-1(;)-288(pr)1(z)-1(ysz\\252)-1(a)-288(c)-1(i)-288(zaraz)-289(s)-1(i)1(e)-1(ln)1(ie)-289(ze)-1(stro)-55(jona)-288(i)-289(t)1(ak)-289(p)1(i\\246)-1(k)1(na,)-288(\\273)-1(e)-289(ki)1(e)-1(j)1(b)28(y)-289(zorza)]TJ 0 -13.549 Td[(si\\246)-297(wid)1(z)-1(ia\\252a,)-296(a)-296(mo)-28(dr)1(e)-297(o)-28(cz)-1(y)-296(n)1(ib)28(y)-296(gwiazdy)-296(j)1(arz)-1(y)1(\\252y)-296(s)-1(i\\246)-296(s)-1(p)-27(o)-28(d)-296(l)1(no)28(wyc)27(h)1(,)-296(g\\252)-1(ad)1(k)28(o)-296(przy-)]TJ 0 -13.549 Td[(cz)-1(es)-1(an)28(y)1(c)27(h)-363(w\\252os)-1(\\363)28(w.)-363(Ale)-364(wsz)-1(y)1(s)-1(cy)-363(z)-1(ar\\363)28(wno)-363(b)28(y)1(li)-363(w)-364(szm)-1(atac)28(h)-363(\\261)-1(wi\\241tecz)-1(n)28(y)1(c)27(h,)-363(\\273e)-364(in)1(o)]TJ 0 -13.549 Td[(gra\\252y)-269(w)-270(o)-28(c)-1(zac)27(h)-269(w)28(e)-1(\\252ni)1(aki)-270(i)-269(gorse)-1(t)28(y)84(,)-270(a)-270(i)-269(Witek,)-270(c)28(ho)-28(\\242)-270(b)-27(os)-1(o,)-269(w)-270(no)28(wym)-270(b)28(y\\252)-269(s)-1(p)-27(e)-1(n)1(c)-1(erku)]TJ 0 -13.549 Td[(ze)-314(\\261w)-1(i)1(e)-1(c\\241c)-1(ymi)-313(gu)1(z)-1(ik)56(ami,)-313(co)-313(je)-314(b)29(y\\252)-313(up)1(ros)-1(i)1(\\252)-314(o)-27(d)-313(Pi)1(e)-1(tr)1(k)55(a,)-313(k)1(t\\363ren)-313(dzisia)-56(j)-312(wys)-1(t\\241)-27(pi\\252)-313(w)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-334(no)28(w)28(e)-1(j)-333(przy)28(o)-28(d)1(z)-1(iewie)-1(:)-334(w)-334(gran)1(ato)28(w)-1(y)1(m)-335(\\273up)1(anie)-334(i)-334(p)-28(or)1(tk)56(ac)27(h)-334(p)1(as)-1(iast)28(yc)27(h)-333(\\273)-1(\\363\\252-)]TJ 0 -13.55 Td[(tozie)-1(l)1(on)28(yc)27(h)1(,)-303(wygoli\\252)-303(si\\246)-304(d)1(o)-304(czys)-1(ta,)-302(w)-1(\\252osy)-303(ob)-28(ci\\241\\252,)-303(j)1(ak)-303(dru)1(gie,)-303(r\\363)28(wno)-303(nad)-302(c)-1(zo\\252e)-1(m)-303(i)]TJ 0 -13.549 Td[(k)28(osz)-1(u)1(l\\246)-291(na)-291(cz)-1(erw)28(on\\241)-291(wst\\241\\273)-1(k)28(\\246)-291(za)28(w)-1(i)1(\\241z)-1(a\\252,)-290(\\273)-1(e)-291(s)-1(k)28(or)1(o)-291(ws)-1(ze)-1(d)1(\\252,)-291(zdu)1(m)-1(i)1(e)-1(li)-290(s)-1(i)1(\\246)-292(p)1(rze)-1(mian)1(\\241,)]TJ 0 -13.549 Td[(a)-333(J\\363z)-1(k)56(a)-333(ja\\273e)-334(w)-334(r)1(\\246)-1(ce)-334(zaklask)55(a\\252a:)]TJ 27.879 -13.549 Td[({)-333(Pietrek)-333(c)-1(i)-333(to?)-333(a)-334(to)-333(b)28(y)-333(ci\\246)-334(r)1(o)-28(dzona)-333(ni)1(e)-334(p)-28(oznal)1(i!)]TJ 0 -13.549 Td[({)-333(B)-1(u)1(rk)28(o)28(w)27(\\241)-333(sk)28(\\363r\\246)-334(zrzuci\\252)-334(i)-333(p)1(arob)-27(e)-1(k)-333(ki)1(e)-1(j)-333(\\261wie)-1(ca...)-333({)-333(z)-1(au)29(w)27(a\\273y\\252)-334(Byl)1(ic)-1(a.)]TJ 0 -13.55 Td[(Pr)1(z)-1(e\\261)-1(miec)27(h)1(n\\241\\252)-395(si\\246)-395(in)1(o)-395(par)1(ob)-394(to)-28(cz)-1(\\241c)-395(o)-28(cz)-1(y)1(m)-1(a)-394(z)-1(a)-395(J)1(agusi\\241)-395(a)-394(robi)1(\\241c)-396(gr)1(dyk)56(\\241,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-368(Hank)56(a,)-367(p)1(rze)-1(\\273e)-1(gn)1(a)28(w)-1(sz)-1(y)-366(s)-1(i\\246,)-367(pr)1(z)-1(epij)1(a\\252a)-367(gorza\\252)-1(k)56(\\241)-367(d)1(o)-368(k)56(a\\273dego)-367(i)-367(niew)27(ol)1(i\\252a)-367(z)-1(a-)]TJ\nET\nendstream\nendobj\n1388 0 obj <<\n/Type /Page\n/Contents 1389 0 R\n/Resources 1387 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1387 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1393 0 obj <<\n/Length 9086      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(434)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(siada\\242)-482(do)-482(sto\\252u.)-482(Za)-55(j\\246li)-482(\\252a)28(wki,)-482(\\273e)-483(n)1(a)28(w)27(et)-482(Witek,)-482(c)28(ho)-28(\\242)-482(ni)1(e)-1(\\261m)-1(i)1(a\\252o,)-482(pr)1(z)-1(ysiad)1(\\252)-483(n)1(a)]TJ 0 -13.549 Td[(kr)1(a)-56(ju)1(.)]TJ 27.879 -13.549 Td[(I)-274(p)-28(o)-55(jadal)1(i)-275(z)-274(w)27(oln)1(a,)-274(w)-275(c)-1(i)1(c)27(ho\\261c)-1(i)-274(sm)-1(ak)1(uj)1(\\241c)-275(\\261)-1(wi\\246c)-1(on)1(e)-1(go,)-274(\\273e)-275(to)-275(b)-27(ez)-275(t)28(yle)-275(t)28(ygo)-28(d)1(ni)]TJ -27.879 -13.549 Td[(ni)1(e)-1(zgorze)-1(j)-315(si\\246)-315(w)-1(y)1(p)-28(o\\261c)-1(i)1(li.)-315(Ki)1(e)-1(\\252basy)-315(cz)-1(u)1(jne)-315(b)28(y\\252y)84(,)-315(c)-1(zos)-1(n)1(kiem)-316(d)1(obr)1(z)-1(e)-315(przyp)1(ra)28(w)-1(i)1(one,)]TJ 0 -13.549 Td[(gdy)1(\\273)-359(p)-27(o)-359(i)1(z)-1(b)1(ie)-359(rozni)1(e)-1(s\\252y)-358(s)-1(i\\246)-358(z)-1(ap)1(ac)27(h)28(y)84(,)-358(ja\\273e)-359(psy)-358(si\\246)-359(wierc)-1(i)1(\\252y)-358(m)-1(i\\246dzy)-358(lu)1(d\\271m)-1(i)-358(sk)56(am)-1(-)]TJ 0 -13.55 Td[(la)-55(j\\241c)-334(\\273a\\252o\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Nikt)1(o)-330(si\\246)-330(n)1(ie)-330(ozw)28(a\\252)-1(,)-329(p)-27(\\363ki)-329(p)1(ierws)-1(ze)-1(go)-329(g\\252o)-28(d)1(u)-329(ni)1(e)-330(z)-1(ap)-27(c)27(h)1(ali)-329(t\\246go)-329(pracuj)1(\\241c)-1(,)-329(\\273e)]TJ -27.879 -13.549 Td[(in)1(o)-286(w)-285(onej)-285(uro)-28(czys)-1(tej)-285(cic)27(h)1(o\\261)-1(ci)-286(sp)-27(o\\273)-1(yw)28(ani)1(a)-286(glamani)1(a)-286(si\\246)-286(rozc)27(h)1(o)-28(dzi\\252y)84(,)-286(p)1(rzys)-1(ap)1(ki)-285(a)]TJ 0 -13.549 Td[(bu)1(lgot)28(y)-365(gor)1(z)-1(a\\252ki,)-364(b)-28(o)-365(Han)1(k)55(a)-365(n)1(ie)-365(\\273)-1(a\\252o)28(w)27(a\\252a)-365(n)1(ik)28(om)27(u)1(,)-365(sam)-1(a)-365(j)1(e)-1(sz)-1(cz)-1(e)-365(pr)1(z)-1(yn)1(iew)27(ala)-55(j\\241c)]TJ 0 -13.549 Td[(do)-333(p)1(ic)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-333(Ryc)27(h)1(\\252)-1(o)-333(to)-333(p)-27(o)-56(jedziem)-1(?)-333({)-334(ozw)28(a\\252)-334(si\\246)-334(p)1(ie)-1(r)1(w)-1(szy)-334(P)1(ietrek.)]TJ 0 -13.55 Td[({)-333(Zaraz)-334(c)27(h)1(o)-28(\\242b)28(y)83(,)-333(p)-27(o)-333(\\261)-1(n)1(iadan)1(iu.)]TJ 0 -13.549 Td[({)-333(Jagust)28(ynk)56(a)-333(c)27(h)1(c)-1(ia\\252a)-333(s)-1(i)1(\\246)-334(z)-334(w)28(am)-1(i)-333(zabra\\242)-333(do)-333(m)-1(i)1(as)-1(ta)-333({)-333(w)-1(tr)1(\\241c)-1(i)1(\\252)-1(a)-333(J\\363zk)56(a.)]TJ 0 -13.549 Td[({)-333(Przyj)1(dzie)-334(n)1(a)-334(cz)-1(as,)-333(to)-334(p)-27(o)-55(jedzie)-1(,)-333(cz)-1(ek)56(a\\242)-334(ni)1(e)-334(b)-28(\\246d\\246.)]TJ 0 -13.549 Td[({)-333(Obr)1(ok)28(\\363)27(w)-333(to)-333(w)-1(zi\\241\\242?)]TJ 0 -13.549 Td[({)-333(Na)-334(j)1(e)-1(d)1(e)-1(n)-333(p)-27(op)1(as)-1(,)-333(wiec)-1(zore)-1(m)-333(wr\\363)-28(cim)27(y)84(.)]TJ 0 -13.55 Td[(I)-347(zno)28(wuj)-346(jedli,)-346(a\\273)-348(n)1(iejedn)1(e)-1(m)28(u)-347(\\261le)-1(p)1(ie)-347(wy\\252az)-1(i\\252y)-346(z)-348(on)1(e)-1(j)-346(lub)-27(o\\261c)-1(i,)-346(t)28(w)27(ar)1(z)-1(e)-347(c)-1(ze)-1(r)1(-)]TJ -27.879 -13.549 Td[(wienia\\252y)-290(i)-289(s)-1(y)1(tno\\261\\242)-291(r)1(oz)-1(p)1(ie)-1(r)1(a\\252a)-290(s)-1(erca)-290(gor\\241ce)-1(m)-290(i)-290(g\\252\\246b)-28(ok)56(\\241)-290(r)1(ado\\261c)-1(i\\241.)-289(W)83(oln)1(iu\\261k)28(o)-290(p)-27(o)-56(j)1(e)-1(-)]TJ 0 -13.549 Td[(dal)1(i)-281(n)1(adzie)-1(w)28(a)-56(j)1(\\241c)-281(s)-1(i\\246)-281(z)-281(rozm)27(y)1(s)-1(\\252em)-1(,)-280(b)28(y)-280(jak)-281(n)1(a)-56(j)1(wi\\246)-1(ce)-1(j)-280(zm)-1(i)1(e)-1(\\261c)-1(i)1(\\242)-282(i)-280(jak)-280(na)-55(jd)1(\\252)-1(u)1(\\273)-1(ej)-280(c)-1(zu\\242)]TJ 0 -13.549 Td[(w)-345(g\\246bie)-345(smak)28(o)27(wito\\261ci.)-345(Dop)1(iero)-345(k)1(ie)-1(j)-344(Han)1(k)55(a)-344(s)-1(i)1(\\246)-346(p)-27(o)-28(d)1(nies\\252)-1(a,)-344(wz)-1(i)1(\\246)-1(li)-344(si\\246)-345(te)-1(\\273)-345(d)1(\\271)-1(wiga\\242)]TJ 0 -13.549 Td[(o)-28(d)-421(mic)28(h)-421(z)-422(dob)1(r\\241)-421(ju)1(\\273)-422(w)27(ag\\241)-421(w)-422(k)56(a\\252du)1(nac)28(h,)-421(a)-421(Pietrek)-421(z)-422(Witk)1(ie)-1(m,)-421(c)-1(ze)-1(go)-421(b)28(y)1(li)-421(nie)]TJ 0 -13.55 Td[(do)-55(jedl)1(i,)-333(do)-333(s)-1(ta)-55(jn)1(i)-333(p)-28(on)1(ie)-1(\\261li)-333(z)-334(sob\\241.)]TJ 27.879 -13.549 Td[({)-379(Szyku)1(j\\273e)-380(zaraz)-379(k)28(onie!)-379({)-379(z)-1(ar)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a)-379(Han)1(k)56(a)-379(i)-379(przyr)1(yc)27(h)28(to)28(w)28(a)28(w)-1(sz)-1(y)-378(la)-379(m)-1(\\246\\273)-1(a)]TJ -27.879 -13.549 Td[(tob)-27(o\\252)-334(\\261wi\\246)-1(conego,)-333(c)-1(o)-333(go)-333(le)-1(d)1(wie)-334(u)1(nies)-1(\\252a,)-333(o)-28(d)1(z)-1(i)1(e)-1(w)28(a\\242)-334(s)-1(i)1(\\246)-334(j\\246\\252a)-334(d)1(o)-334(d)1(rogi.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-320(an)1(o)-319(k)28(onie)-319(c)-1(ze)-1(k)56(a\\252y)-319(p)1(rze)-1(d)-319(c)28(ha\\252u)1(p\\241,)-319(ki)1(e)-1(j)-318(w)-1(p)1(ad\\252a)-319(zadysz)-1(an)1(a)-319(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-333(Ma\\252o)-333(c)-1(o)-333(nie)-333(c)-1(ze)-1(k)56(a\\252am)-334(n)1(a)-334(w)28(a)-56(j)1(u!.)1(..)]TJ 0 -13.55 Td[({)-333(T)83(o\\261)-1(cie)-334(j)1(u\\273)-334(p)-27(o)-333(\\261)-1(wi\\246c)-1(on)29(ym)-1(?)-333({)-333(w)27(es)-1(tc)28(hn)1(\\246)-1(\\252a)-333(\\273)-1(a\\252o\\261nie)-333(p)-28(o)-28(ci\\241)-28(ga)-55(j\\241c)-334(n)1(os)-1(em.)]TJ 0 -13.549 Td[({)-333(Zna)-56(j)1(dzie)-334(si\\246)-334(j)1(e)-1(sz)-1(cze)-334(la)-333(w)27(as,)-333(s)-1(iad)1(a)-56(j)1(c)-1(ie,)-333(pr)1(z)-1(egry\\271c)-1(i)1(e)-334(c)-1(on)1(ieb\\241d\\271...)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-289(ni)1(e)-290(p)-27(otrza)-289(b)28(y\\252o)-289(wyg\\252o)-28(dzonej)-289(b)1(iedot)28(y)-289(pr)1(z)-1(y)1(niew)27(al)1(a\\242)-1(,)-289(p)1(rzypi\\246\\252a)-289(s)-1(i)1(\\246)-290(do)]TJ -27.879 -13.549 Td[(jad)1(\\252a)-334(k)1(ie)-1(j)-332(w)-1(i)1(lk)-333(i)-334(zmiata\\252a,)-333(c)-1(o)-333(in)1(o)-334(b)29(y\\252o)-334(n)1(a)-334(p)-27(o)-28(d)1(or\\246dziu.)]TJ 27.879 -13.549 Td[({)-434(P)28(an)-434(Jezus)-435(wiedzia\\252,)-434(n)1(a)-435(co)-434(\\261)-1(wi\\253)1(tuc)28(ha)-434(st)27(w)28(orzy\\252!{)-434(sz)-1(epn)1(\\246)-1(\\252a,)-434(p)-27(o)-28(dj)1(ad\\252sz)-1(y)]TJ -27.879 -13.55 Td[(ni)1(e)-1(co.)-379({)-379(Jeno)-378(to)-379(dziwna,)-378(\\273)-1(e)-379(c)27(h)1(o)-28(\\242)-379(m)27(u)-378(z)-1(a)-379(\\273ycia)-379(w)-379(b)1(\\252)-1(o)-27(c)-1(ie)-379(lega\\242)-379(p)-28(ozw)27(al)1(a)-56(j)1(\\241,)-379(to)-379(p)-27(o)]TJ 0 -13.549 Td[(\\261m)-1(ierci)-333(rad)1(z)-1(i)-333(go)-333(w)-334(gorza\\252c)-1(e)-333(m)-1(o)-28(cz\\241!)-334({)-333(p)1(rz)-1(e\\261m)-1(iew)28(a\\252)-1(a)-333(p)-27(o)-334(sw)27(o)-55(jem)27(u)1(.)]TJ 27.879 -13.549 Td[({)-333(Pij)1(c)-1(i)1(e)-334(na)-333(z)-1(d)1(ro)28(wie)-334(a)-333(pr)1(\\246)-1(d)1(k)28(o,)-334(b)-27(o)-333(c)-1(zas)-334(n)1(agli.)]TJ 0 -13.549 Td[(I)-350(m)-1(o\\273e)-351(w)-350(pacierz)-350(p)-28(o)-55(jec)27(ha\\252y)84(.)-350(Hank)56(a)-350(ju)1(\\273)-351(z)-350(bry)1(ki)-350(nak)56(azyw)27(a\\252a)-350(J\\363zc)-1(e,)-350(b)28(y)-350(n)1(ie)]TJ -27.879 -13.549 Td[(zap)-28(omin)1(a\\252)-1(a)-359(o)-360(o)-55(jcu,)-359(tak)-360(\\273e)-360(dzie)-1(w)28(cz)-1(yn)1(a)-360(zaraz)-360(nad)1(rob)1(i\\252a)-360(r\\363\\273no\\261c)-1(i)-359(na)-359(talerz)-360(i)-359(p)-28(o-)]TJ 0 -13.549 Td[(ni)1(e)-1(s\\252a.)-409(Nie)-409(oz)-1(w)28(a\\252)-410(si\\246)-409(na)-409(j)1(e)-1(j)-409(zagady)1(w)27(an)1(ia)-409(ni)-409(n)1(a)28(w)27(et)-409(s)-1(p)-27(o)-56(j)1(rza\\252)-409(na)-409(ni)1(\\241,)-409(ale)-410(co)-409(m)27(u)]TJ 0 -13.55 Td[(w)28(e)-1(tkn)1(\\246)-1(\\252a)-388(w)-388(z\\246)-1(b)28(y)84(,)-388(zjad)1(\\252)-388(c)27(hciwie,)-388(pat)1(rz)-1(\\241c)-388(w)28(c)-1(i\\241\\273)-388(mart)28(wym)-388(w)-1(zroki)1(e)-1(m)-388(jak)-387(z)-1(a)28(wdy)84(.)]TJ 0 -13.549 Td[(Mo\\273e)-440(b)28(y)-440(n)1(a)27(w)28(e)-1(t)-439(i)-440(wi\\246c)-1(ej)-440(p)-27(o)-56(j)1(ad\\252,)-440(al)1(e)-441(J\\363zc)-1(e)-440(si\\246)-440(przykr)1(z)-1(y\\252o)-440(i)-439(p)-28(ol)1(e)-1(cia\\252a)-440(na)-439(dw)28(\\363r)]TJ 0 -13.549 Td[(pat)1(rz)-1(e\\242,)-381(j)1(ak)-381(p)1(ra)28(wie)-381(z)-381(k)56(a\\273de)-1(j)-380(c)28(ha\\252u)1(p)28(y)-380(w)-1(y)1(je\\273)-1(d)1(\\273)-1(a\\252y)-380(lub)-380(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(y)-380(k)28(ob)1(ie)-1(t)28(y)-380(z)-381(to-)]TJ 0 -13.549 Td[(b)-27(o\\252k)55(ami,)-477(\\273)-1(e)-478(ki)1(lk)56(ana\\261c)-1(ie)-478(w)28(oz)-1(\\363)28(w)-478(to)-28(czy\\252o)-478(si\\246)-478(do)-478(miasta)-478(i)-477(nad)-477(ro)28(w)28(am)-1(i)-477(c)-1(i)1(\\241)-28(gn\\246\\252y)]TJ 0 -13.549 Td[(rz\\246)-1(d)1(e)-1(m)-333(k)28(obiet)28(y)83(,)-333(cz)-1(erw)28(ono)-333(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(ane,)-333(z)-334(w)27(\\246z)-1(e\\252k)56(am)-1(i)-333(n)1(a)-334(p)1(le)-1(cac)27(h)1(.)]TJ 27.879 -13.55 Td[(A)-267(kiej)-267(si\\246)-267(roz)-1(wia\\252y)-267(ostatn)1(ie)-268(tu)1(rk)28(ot)28(y)84(,)-267(pad)1(\\252a)-268(n)1(a)-267(wie)-1(\\261)-267(dziwnie)-267(s)-1(m)28(utn)1(a)-267(c)-1(i)1(c)27(ho\\261\\242)]TJ -27.879 -13.549 Td[(i)-442(pu)1(s)-1(tk)56(a;)-442(dzie)-1(\\253)-442(si\\246)-443(p)-27(o)27(wl\\363k)1(\\252)-443(w)27(ol)1(no,)-442(g\\252uc)27(h)1(e)-443(m)-1(i)1(lc)-1(zenie)-443(zale)-1(g\\252o)-442(dr)1(ogi,)-443(n)1(i)-443(gw)28(ar\\363)28(w)]TJ\nET\nendstream\nendobj\n1392 0 obj <<\n/Type /Page\n/Contents 1393 0 R\n/Resources 1391 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1391 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1396 0 obj <<\n/Length 9366      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(435)]TJ -358.232 -35.866 Td[(zw)-1(y)1(c)-1(za)-56(j)1(n)28(yc)27(h)-407(w)-408(tak)56(\\241)-408(p)-27(or\\246)-1(,)-407(ni)-407(\\261)-1(p)1(ie)-1(w)28(a\\253,)-407(ni)-407(lud)1(z)-1(i,)-407(t)28(yle)-408(jeno,)-407(c)-1(o)-408(t)1(am)-409(n)1(iec)-1(o)-408(d)1(z)-1(ieci)]TJ 0 -13.549 Td[(u)28(wij)1(a\\252o)-334(si\\246)-334(n)1(ad)-333(s)-1(ta)28(w)28(e)-1(m)-333(\\261)-1(miga)-56(j)1(\\241c)-334(k)56(amie)-1(n)1(iami)-334(n)1(a)-333(g\\246)-1(si.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-314(s)-1(z\\252o)-315(w)-314(g\\363r\\246,)-315(j)1(as)-1(n)1(o\\261)-1(ci\\241)-314(z)-1(al)1(e)-1(w)28(a)-56(j)1(\\241c)-315(\\261)-1(wiat)1(,)-314(c)-1(iep\\252o)-314(s)-1(i)1(\\246)-315(p)-27(o)-28(dn)1(os)-1(i\\252o,)-314(\\273e)-315(ju)1(\\273)]TJ -27.879 -13.549 Td[(m)27(u)1(c)27(h)28(y)-275(b)1(rz\\246)-1(cz)-1(a\\252y)-275(p)-27(o)-275(s)-1(zybac)28(h,)-275(j)1(as)-1(k)28(\\363\\252ki)-275(zapami\\246tale)-276(c)28(hlu)1(s)-1(ta\\252y)-275(wskro\\261)-275(prze)-1(j)1(rzys)-1(t)1(e)-1(-)]TJ 0 -13.549 Td[(go)-289(p)-28(o)28(wietrza,)-289(s)-1(ta)28(w)-289(m)-1(ieni)1(\\252)-290(si\\246)-290(w)-289(ogniac)28(h,)-289(d)1(rze)-1(w)28(a)-290(za\\261)-1(,)-289(k)1(ie)-1(j)1(b)28(y)-289(sp\\252a)28(w)-1(i)1(one)-290(w)-289(z)-1(i)1(e)-1(leni)1(,)]TJ 0 -13.55 Td[(p)-27(ol\\261)-1(n)1(iew)27(a\\252y)-383(\\261w)-1(i)1(e)-1(\\273yz)-1(n)1(\\241)-383(rozle)-1(w)28(a)-56(j)1(\\241c)-384(mio)-28(d)1(ne)-384(zapac)28(h)28(y;)-383(z)-383(p)-28(\\363l)-383(ogr)1(om)-1(n)28(y)1(c)27(h,)-383(op)1(\\252yni)1(\\246)-1(-)]TJ 0 -13.549 Td[(t)28(yc)27(h)-339(ni)1(e)-1(bi)1(e)-1(sk)28(o\\261)-1(ci\\241,)-340(b)1(i\\252)-340(ni)1(e)-1(ki)1(e)-1(d)1(y)-340(c)27(h\\252o)-27(dna)28(wy)84(,)-340(z)-1(i)1(e)-1(mi\\241)-340(pr)1(z)-1(ej\\246t)28(y)-340(c)-1(i)1(\\241)-28(g)-340(i)-340(sk)28(o)27(wr)1(onk)28(o)28(w)27(e)]TJ 0 -13.549 Td[(\\261piew)27(an)1(ia;)-236(w)-1(szys)-1(tek)-236(\\261)-1(wiat)-236(tc)27(h)1(n\\241\\252)-237(zwies)-1(n)1(o)27(w)28(\\241)-237(cic)27(h)1(\\241)-237(l)1(ub)-27(o\\261)-1(ci\\241,)-236(a)-237(o)-28(d)-236(wsi,)-237(l)1(e)-1(d)1(w)-1(i)1(e)-237(w)-1(i)1(d-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-305(w)-305(d)1(alek)28(o\\261)-1(ciac)27(h)1(,)-305(s\\252)-1(on)1(e)-1(czn\\241)-305(p)-27(o\\273)-1(og\\241)-305(p)1(rze)-1(mglon)28(y)1(c)27(h,)-304(nies\\252)-1(y)-304(s)-1(i)1(\\246)-306(cz)-1(asami)-305(j)1(\\246)-1(dr)1(ne)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)56(an)1(ia)-334(i)-333(h)28(u)1(ki)-333(pi)1(s)-1(tol)1(e)-1(to)28(wyc)27(h)-333(strzela\\253!)]TJ 27.879 -13.549 Td[(Jeno)-272(w)-272(Lip)-27(c)-1(ac)28(h)-272(b)29(y\\252o)-272(pu)1(s)-1(to)-272(i)-271(\\273)-1(a\\252ob)1(nie)-272(kiejb)29(y)-272(p)-28(o)-271(p)-28(ogr)1(z)-1(ebie,)-272(t)28(yle)-272(co)-272(wypu)1(s)-1(z-)]TJ -27.879 -13.55 Td[(cz)-1(on)1(e)-367(do)-366(p)1(ic)-1(i)1(a)-367(b)29(yd\\252o)-366(\\252az)-1(i)1(\\252o,)-366(kiej)-366(c)27(h)1(c)-1(ia\\252o,)-366(co)-28(c)27(h)1(a)-56(j)1(\\241c)-367(si\\246)-367(o)-366(d)1(rz)-1(ew)28(a)-367(i)-366(p)-27(ory)1(kuj)1(\\241c)-367(ku)]TJ 0 -13.549 Td[(p)-27(olom)-271(zie)-1(leni)1(e)-1(j)1(\\241c)-1(ym.)-270(Pu)1(s)-1(tk)56(\\241)-270(z)-1(ar\\363)28(wno)-270(s)-1(to)-55(ja\\252y)-270(op\\252otk)1(i,)-271(j)1(ak)-271(i)1(.)-271(sienie)-271(p)-27(o)28(wywie)-1(r)1(ane,)]TJ 0 -13.549 Td[(jeno)-263(miejsc)-1(ami)-263(na)-263(s\\252)-1(on)1(e)-1(cznej)-263(s)-1(tr)1(onie)-263(w)-1(y)1(grze)-1(w)28(ali)-263(s)-1(i)1(\\246)-264(p)-27(o)-28(d)-263(bi)1(a\\252ym)-1(i)-263(\\261cianami,)-263(gdzie)]TJ 0 -13.549 Td[(za\\261)-275(dziew)27(cz)-1(y)1(n)28(y)-274(c)-1(zes)-1(a\\252y)-274(si\\246)-275(w)-274(oknac)28(h)-274(ot)28(w)28(a)-1(r)1(t)28(yc)27(h)1(,)-274(a)-274(s)-1(tar)1(uc)27(h)29(y)-274(rozs)-1(iad)1(\\252e)-275(na)-274(p)1(rogac)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(eiskiw)28(a\\252)-1(y)-333(d)1(z)-1(i)1(e)-1(ci.)]TJ 27.879 -13.55 Td[(I)-420(tak)-420(oto)-420(pr)1(z)-1(ec)27(ho)-27(dzi\\252y)-420(go)-28(dzin)28(y)-420(cic)28(ho\\261c)-1(i)-420(se)-1(n)1(nej)-420(i)-420(sm)27(ut)1(nej,)-420(ni)1(e)-1(ki)1(e)-1(j)-420(wiat)1(e)-1(r)]TJ -27.879 -13.549 Td[(zatrz\\241s)-1(\\252)-469(drze)-1(win)1(ami,)-469(\\273)-1(e)-470(p)-27(osz)-1(u)1(m)-1(ia\\252y)-469(cic)27(h)29(u\\261k)28(o)-470(w)28(a\\273)-1(\\241c)-469(s)-1(i\\246)-470(k)1(u)-469(c)27(h)1(atom)-470(i)-469(l\\246kliwie)]TJ 0 -13.549 Td[(jak)1(b)28(y)-428(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-429(w)-428(p)1(uste)-428(izb)28(y)83(,)-427(to)-428(wr\\363b)1(le)-428(stado)-428(z)-428(wrzas)-1(k)1(ie)-1(m)-428(p)1(rze)-1(n)1(os)-1(i\\252o)-427(s)-1(i\\246)-428(z)]TJ 0 -13.549 Td[(sadu)-394(n)1(a)-395(d)1(rog\\246)-395(alb)-27(o)-394(z)-1(asz)-1(ar)1(pa\\252y)-394(s)-1(i)1(\\246)-395(kr\\363tk)1(ie)-395(kr)1(z)-1(yk)1(i)-395(d)1(z)-1(i)1(e)-1(ci,)-394(o)-28(d)1(gania)-55(j\\241cyc)27(h)-394(wron)29(y)]TJ 0 -13.549 Td[(o)-28(d)-333(k)1(urcz)-1(\\241tk)28(\\363)28(w.)]TJ 27.879 -13.55 Td[(M\\363)-55(j)-333(Jez)-1(u)1(,)-334(n)1(ie)-334(tak)-333(b)28(y)1(\\252o)-334(p)1(rz\\363)-28(dzi)-333(w)-334(ten)-333(dzie\\253,)-333(ni)1(e)-334(tak!.)1(..)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-374(s)-1(i\\246)-374(ju\\273)-374(w)-1(spi)1(na\\252o)-374(ku)-374(p)-27(o\\252)-1(u)1(dn)1(io)28(w)-1(i)1(,)-374(nad)-374(k)28(omin)28(y)84(,)-374(kiej)-374(Ro)-28(c)27(h)1(o)-375(p)1(rzylaz\\252)]TJ -27.879 -13.549 Td[(do)-272(Boryn\\363)28(w,)-272(z)-1(a)-55(jrza\\252)-273(d)1(o)-273(c)28(horego,)-273(p)-27(ogad)1(a\\252)-273(z)-273(dzie\\242)-1(mi)-273(i)-272(zas)-1(iad)1(\\252)-273(w)-273(gan)1(ku)-272(na)-272(s)-1(\\252o\\253)1(c)-1(u)1(.)]TJ 0 -13.549 Td[(P)28(o)-28(czyt)28(yw)27(a\\252)-411(cos)-1(ik)-411(n)1(a)-412(k)1(s)-1(i\\241\\273c)-1(e)-411(i)-411(bacz)-1(n)1(ie)-412(w)28(o)-28(dzi\\252)-411(o)-28(cz)-1(yma)-411(p)-28(o)-411(dr)1(ogac)27(h)1(.)-411(A)-412(wkr)1(\\363tc)-1(e)]TJ 0 -13.549 Td[(nad)1(e)-1(sz\\252)-1(a)-333(k)28(o)28(w)27(al)1(o)27(w)28(a)-333(z)-334(dzie\\242)-1(mi)-333(i)-333(o)-28(dwiedziws)-1(zy)-333(o)-56(j)1(c)-1(a,)-333(pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-334(n)1(a)-334(p)1(rzy\\271bie.)]TJ 27.879 -13.55 Td[({)-333(W)83(asz)-334(w)-334(d)1(om)27(u)1(?)-334({)-333(z)-1(ap)29(yta\\252)-334(Ro)-27(c)27(ho)-333(p)-27(o)-334(d)1(\\252ugiej)-333(c)27(h)29(w)-1(il)1(i.)]TJ 0 -13.549 Td[({)-333(Gdzie)-334(za\\261)-1(!)1(...)-333(do)-333(miasta)-334(zabr)1(a\\252)-334(si\\246)-334(z)-334(w)28(\\363)-56(j)1(te)-1(m.)]TJ 0 -13.549 Td[({)-333(C)-1(a\\252a)-333(wie\\261)-334(tam)-334(d)1(z)-1(isia)-55(j.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)-27(o)-28(cies)-1(z\\241)-334(si\\246)-334(n)1(iec)-1(o)-333(\\261)-1(wi\\246c)-1(on)29(ym,)-334(c)28(h)28(ud)1(z)-1(i)1(aki.)]TJ 0 -13.549 Td[({)-333(Wy\\261c)-1(ie)-333(to)-334(z)-333(m)-1(atk)56(\\241)-333(nie)-333(p)-28(o)-55(jec)27(h)1(ali?)-334({)-333(p)28(y)1(ta\\252)-334(Jagn)28(y)-333(wyc)28(ho)-28(d)1(z)-1(\\241ce)-1(j)1(.)]TJ 0 -13.55 Td[({)-333(A)-334(c\\363\\273)-334(tam)-333(p)-28(o)-333(m)-1(n)1(ie!)-333({)-334(wysz)-1(\\252a)-333(w)-334(op)1(\\252otki)-333(s)-1(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-334(t\\246)-1(skn)1(ie)-334(n)1(a)-334(p)-27(ola.)]TJ 0 -13.549 Td[({)-333(No)27(wy)-333(w)28(e)-1(\\252n)1(iak)-333(m)-1(a)-333(dzisia)-56(j)1(!)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(z)-334(w)28(e)-1(stc)27(h)1(nieni)1(e)-1(m)-334(M)1(agda.)]TJ 0 -13.549 Td[({)-416(P)28(o)-417(matu)1(li,)-416(ni)1(e)-417(p)-28(ozna)-55(jec)-1(i)1(e)-417(go)-417(to,)-416(co?)-417(A)-416(i)-416(k)28(orale)-417(wsz)-1(y)1(s)-1(tki)1(e)-417(z)-1(a)28(wies)-1(i\\252a,)-416(i)]TJ -27.879 -13.549 Td[(bu)1(rsz)-1(t)28(yn)29(y)-424(te)-425(wielgac)27(h)1(ne)-425(te\\273)-425(p)-27(o)-424(m)-1(at)1(usi!)-424({)-424(p)-28(ou)1(c)-1(za\\252a)-425(j)1(\\241)-424(J\\363z)-1(k)56(a)-424(\\273)-1(a\\252o\\261nie.)-424({)-424(Je)-1(n)1(o)]TJ 0 -13.549 Td[(c)27(h)29(ustk)28(\\246)-334(na)-333(g\\252o)28(w)-1(i)1(e)-334(m)-1(a)-333(sw)27(o)-55(j\\241..)1(.)]TJ 27.879 -13.549 Td[({)-290(Pr)1(a)27(wd)1(a,)-290(t)28(ylac)27(h)1(na)-290(sz)-1(mat)-290(osta\\252o)-290(p)-28(o)-290(n)1(ie)-1(b)-27(osz)-1(cz)-1(k)56(ac)27(h)1(,)-290(to)-290(nama)-290(ic)28(h)-290(tkn)1(\\241\\242)-291(n)1(ie)]TJ -27.879 -13.55 Td[(p)-27(oz)-1(w)28(olili)1(,)-333(a)-334(j)1(e)-1(j)-333(wsz)-1(ystk)28(o)-333(o)-28(dd)1(a\\252,)-333(i)-334(p)1(arad)1(uje)-333(s)-1(e)-334(t)1(e)-1(raz...)]TJ 27.879 -13.549 Td[({)-317(Hale)-1(,)-317(j)1(e)-1(sz)-1(cze)-1(c)27(h)-316(kie)-1(j)1(\\261)-318(wyrzek)55(a\\252a)-317(pr)1(z)-1(ed)-317(Nas)-1(t)1(k)55(\\241,)-317(co)-318(s\\241)-317(z)-1(le\\273)-1(a\\252e)-317(i)-318(\\261mie)-1(r)1(dz\\241...)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(j)1(e)-1(j)-333(tak)-333(zapac)28(hn\\246\\252o)-333(to)-334(\\252a)-55(jn)1(o)-334(d)1(iab)-27(e)-1(lskie!)]TJ 0 -13.549 Td[({)-354(Nie)-1(c)28(h)-354(jeno)-354(o)-28(c)-1(i)1(e)-1(c)-355(ozdr)1(o)27(wiej\\241,)-354(zarno)-354(up)-27(omn\\246)-355(si\\246)-355(o)-354(k)28(orale,)-355(p)1(i\\246\\242)-355(s)-1(zn)28(u)1(rk)28(\\363)28(w)]TJ -27.879 -13.549 Td[(osta\\252o)-334(d)1(\\252ugic)27(h)-332(kiej)-333(bicz)-1(e)-333(i)-333(jak)-333(gro)-28(c)28(h)-333(na)-55(jwi\\246ks)-1(zy!)]TJ 27.879 -13.55 Td[(Magd)1(a)-228(s)-1(i)1(\\246)-229(j)1(u\\273)-228(nie)-228(o)-28(dezw)27(a\\252a;)-228(w)28(e)-1(stc)27(h)1(n\\241)28(ws)-1(zy)-228(ci\\246)-1(\\273k)28(o)-228(zac)-1(z\\246)-1(\\252a)-228(isk)56(a\\242)-229(n)1(a)-56(j)1(m)-1(\\252o)-28(d)1(s)-1(ze)]TJ -27.879 -13.549 Td[(dziec)27(k)28(o.)-442(J\\363z)-1(k)56(a)-442(s)-1(i\\246)-443(te\\273)-443(z)-1(ar)1(az)-443(p)-28(on)1(ies)-1(\\252a)-443(n)1(a)-443(wie\\261)-1(,)-442(Wit)1(e)-1(k)-442(p)-28(o)-27(d)-443(sta)-55(jni)1(\\241)-443(ma)-56(j)1(s)-1(tr)1(o)27(w)28(a\\252)]TJ\nET\nendstream\nendobj\n1395 0 obj <<\n/Type /Page\n/Contents 1396 0 R\n/Resources 1394 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1394 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1399 0 obj <<\n/Length 8703      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(436)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(jesz)-1(cz)-1(e)-480(c)-1(osik)-479(kie)-1(l)1(e)-481(k)28(ogu)1(tk)56(a,)-480(dziec)-1(i)-479(z)-1(a\\261)-480(bar)1(as)-1(zk)28(o)27(w)28(a\\252y)-480(r)1(az)-1(em)-481(z)-480(pi)1(e)-1(sk)56(am)-1(i)-479(prze)-1(d)]TJ 0 -13.549 Td[(gank)1(ie)-1(m,)-300(p)-27(o)-28(d)-300(okiem)-301(Bylicy)84(,)-301(k)1(t\\363ren)-300(c)-1(zu)28(w)28(a\\252)-301(nad)-299(nimi)-300(kiej)-300(k)28(ok)28(os)-1(z,)-300(a)-301(Ro)-28(c)28(ho)-300(jakb)29(y)]TJ 0 -13.549 Td[(\\271dzie)-1(b)1(k)28(o)-334(zadr)1(z)-1(ema\\252)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sk)28(o\\253)1(c)-1(zyli\\261c)-1(i)1(e)-334(p)-27(olne)-334(r)1(ob)-28(ot)28(y?)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(e)-334(jeno,)-333(\\273e)-334(zie)-1(mni)1(aki)-333(w)-1(sadzone)-333(i)-333(gro)-28(c)27(h)-332(p)-28(osian)28(y)84(.)]TJ 0 -13.55 Td[({)-333(U)-334(d)1(ru)1(gic)27(h)-333(i)-333(t)28(yla)-333(n)1(ie)-334(zrobion)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Zd\\241\\273\\241)-334(j)1(e)-1(sz)-1(cz)-1(e;)-333(p)-27(o)27(wiedali)1(,)-333(c)-1(o)-333(pu)1(s)-1(zc)-1(z\\241)-333(c)27(h\\252op)-27(\\363)28(w)-334(n)1(a)-334(P)1(rze)-1(w)28(o)-28(dy)84(.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(taki)-333(wiedz\\241c)-1(y)-333(p)-27(o)28(w)-1(i)1(ada\\252?)]TJ 0 -13.549 Td[({)-333(A)-334(r)1(\\363\\273)-1(n)1(i)-333(m)-1(\\363)28(wili)-333(w)-333(k)28(o\\261)-1(cie)-1(l)1(e)-1(!)-333(Koz\\252o)27(w)28(a)-333(z)-1(b)1(ie)-1(r)1(a)-334(si\\246)-334(i)1(\\261)-1(\\242)-334(p)1(rosi\\242)-334(d)1(z)-1(iedzica...)]TJ 0 -13.549 Td[({)-333(G\\252up)1(ia,)-333(dziedzic)-334(to)-333(ic)27(h)-333(wi\\246zi)-334(czy)-334(co?)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(c)27(h)-333(si\\246)-334(ws)-1(ta)28(wi\\252,)-333(to)-333(m)-1(o\\273e)-334(b)28(y)-333(p)1(u\\261c)-1(il)1(i...)]TJ 0 -13.55 Td[({)-333(Ws)-1(t)1(a)27(wia\\252)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(ni)1(e)-1(r)1(az)-334(i)-333(nie)-334(p)-27(omog\\252o...)]TJ 0 -13.549 Td[({)-458(\\233eb)28(y)-457(ino)-457(c)27(hcia\\252,)-457(ale)-458(ni)1(e)-459(c)28(hce)-458(pr)1(z)-1(ez)-458(z)-1(\\252o\\261\\242)-459(l)1(a)-458(Lip)1(ie)-1(c,)-457(m)-1(\\363)-55(j)-457(p)-28(o)28(wiada.)1(..)-458({)]TJ -27.879 -13.549 Td[(ur)1(w)27(a\\252a)-315(nagle)-316(p)-27(o)-28(c)27(h)29(yla)-56(j)1(\\241c)-316(z)-1(mies)-1(zan\\241)-315(t)28(w)27(arz)-316(n)1(ad)-315(dzie)-1(ci\\253)1(s)-1(k)56(\\241)-316(g\\252o)28(w)28(\\241,)-316(tr)1(z)-1(yman\\241)-315(m)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(dzy)-333(k)28(olan)1(am)-1(i,)-333(\\273e)-334(Ro)-28(c)27(h)1(o)-333(na)-333(pr\\363\\273no)-333(cz)-1(ek)56(a\\252)-334(j)1(akiego)-1(\\261)-333(s)-1(\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-333(Kiedy\\273)-333(s)-1(i\\246)-333(tam)-334(Koz\\252o)27(w)28(a)-333(w)-1(y)1(biera?)-333({)-334(p)28(y)1(ta\\252)-334(ciek)55(a)28(wie.)]TJ 0 -13.55 Td[({)-333(A)-334(zaraz)-334(p)-27(o)-333(p)-28(o\\252u)1(dn)1(iu)-333(i\\261\\242)-334(ma)-56(j\\241.)1(..)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(e)-334(ws)-1(k)28(\\363r)1(a)-56(j\\241,)-333(co)-333(s)-1(i\\246)-333(prze)-1(l)1(e)-1(c\\241)-334(i)-333(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(a)-333(in)1(nego)-334(zac)27(h)28(wyc\\241.)]TJ 0 -13.549 Td[(Nie)-266(o)-28(d)1(rze)-1(k\\252a,)-265(gdy)1(\\273)-267(w)-265(op\\252otki)-265(s)-1(k)1(r\\246)-1(ca\\252)-266(z)-266(d)1(rogi)-266(p)1(an)-265(Jac)-1(ek,)-265(dzie)-1(d)1(z)-1(i)1(c)-1(\\363)28(w)-266(br)1(at,)-266(o)]TJ -27.879 -13.549 Td[(kt\\363r)1(ym)-308(p)-28(o)28(wiadal)1(i,)-308(\\273e)-309(g\\252up)1(a)28(w)-1(y)-307(b)28(y\\252)-308(ni)1(e)-1(co,)-308(b)-27(o)-308(z)-1(a)28(w\\273)-1(d)1(y)-308(z)-1(e)-308(s)-1(k)1(rzypk)56(ami)-308(s)-1(i)1(\\246)-309(n)1(os)-1(i\\252,)-308(n)1(a)]TJ 0 -13.549 Td[(rozs)-1(t)1(a)-56(jac)28(h)-352(p)-28(o)-27(d)-352(\\014gu)1(rami)-353(gr)1(yw)27(a\\252)-352(i)-352(t)28(ylk)28(o)-352(z)-353(c)27(h)1(\\252opami)-353(p)1(rze)-1(sta)28(w)27(a\\252.)-352(Szed\\252)-353(p)1(rzygi\\246t)28(y)]TJ 0 -13.55 Td[(ze)-456(skrzyp)1(ic)-1(\\241)-454(p)-28(o)-27(d)-455(p)1(ac)27(h\\241,)-454(z)-455(fa)-56(j)1(e)-1(czk)55(\\241)-454(w)-455(z)-1(\\246bac)27(h)1(,)-455(c)28(h)28(ud)1(y)83(,)-454(w)-1(y)1(s)-1(oki)1(,)-455(z)-455(\\273)-1(\\363\\252t\\241)-454(br\\363)-27(dk)56(\\241)]TJ 0 -13.549 Td[(i)-390(rozbiegan)28(ymi)-390(o)-28(c)-1(zyma.)-390(Ro)-28(c)27(h)1(o)-391(wysz)-1(ed\\252)-390(napr)1(z)-1(ec)-1(i)1(w)-1(.)-390(M)1(usie)-1(l)1(i)-391(si\\246)-391(zna\\242,)-391(b)-27(o)-390(p)-28(osz)-1(l)1(i)]TJ 0 -13.549 Td[(raze)-1(m)-325(n)1(ad)-324(s)-1(ta)28(w)-325(i)-324(d\\252ugo)-324(tam)-325(s)-1(i)1(e)-1(d)1(z)-1(ieli)-324(na)-325(k)56(amieniac)28(h,)-324(c)-1(osik)-325(cic)27(h)1(o)-325(p)-27(oredza)-56(j)1(\\241c)-1(,)-324(\\273)-1(e)]TJ 0 -13.549 Td[(ju)1(\\273)-371(da)28(wno)-370(przedzw)27(oni)1(li)-370(p)-28(o\\252u)1(dni)1(e)-1(,)-370(kiej)-370(s)-1(i\\246)-371(r)1(oz)-1(es)-1(zli.)-370(Ro)-28(c)27(h)1(o)-371(wr\\363)-28(ci\\252)-371(n)1(a)-371(gan)1(e)-1(k,)-370(ale)]TJ 0 -13.549 Td[(b)28(y\\252)-333(jak)1(i\\261)-334(oso)27(wia\\252y)-333(i)-333(mark)28(otn)1(o)-334(p)1(atrza\\252.)]TJ 27.879 -13.55 Td[({)-333(Sc)27(h)29(uc)27(h)1(ra\\252o)-333(s)-1(i)1(\\246)-334(pan)1(is)-1(k)28(o,)-333(\\273e)-334(ledwiem)-334(go)-333(p)-28(ozna\\252!)-333({)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(Byl)1(ic)-1(a.)]TJ 0 -13.549 Td[({)-333(Znali\\261cie)-334(go?)-334({)-333(\\261c)-1(iszy\\252)-334(g\\252os)-334(ogl)1(\\241da)-56(j)1(\\241c)-334(si\\246)-334(n)1(a)-334(k)28(o)28(w)28(alo)28(w)27(\\241.)]TJ 0 -13.549 Td[({)-222(Jak\\273e)-1(b)28(y)84(...)-222(Ni)1(e)-1(ma\\252o)-222(dok)56(az)-1(yw)28(a\\252)-222(z)-1(a)-222(m\\252o)-28(du)1(,)-222(niema\\252)-1(o.)1(..)-222(Kat)-222(c)-1(i)-222(b)29(y\\252)-222(la)-222(dzie)-1(u)1(c)27(h)1(...)]TJ -27.879 -13.549 Td[(w)28(e)-414(W)83(ol)1(i)-414(n)1(i)-413(jedn)1(e)-1(j)-413(n)1(ie)-414(p)1(rz)-1(epu)1(\\261)-1(ci\\252..)1(.)-414(d)1(obr)1(z)-1(e)-414(b)1(ac)-1(z\\246)-1(,)-413(w)-413(jaki)1(e)-414(to)-413(c)-1(u)1(gan)28(t)28(y)-413(je\\271)-1(d)1(z)-1(i\\252..)1(.)]TJ 0 -13.549 Td[(jak)-333(se)-334(u)1(\\273)-1(yw)28(a\\252...)-333(bacz\\246)-1(..)1(.)-334({)-333(p)-27(o)-56(j)1(\\246)-1(ki)1(w)27(a\\252)-333(s)-1(tar)1(y)83(.)]TJ 27.879 -13.55 Td[({)-226(W)1(z)-1(i\\241\\252)-225(z)-1(a)-225(to)-226(ci\\246\\273)-1(k)56(\\241)-226(p)-27(oku)1(t\\246)-1(,)-225(ci\\246)-1(\\273k)56(\\241!)-226(T)83(o\\261c)-1(i)1(e)-226(i)-226(n)1(a)-56(j)1(s)-1(tar)1(s)-1(i)-225(w)27(e)-226(wsi,)-225(c)-1(o?)-226(Jam)28(br)1(o\\273)-1(y)]TJ -27.879 -13.549 Td[(m)27(u)1(s)-1(i)-333(b)29(y\\242)-334(starsz)-1(y)84(,)-333(b)-28(o)-333(jak)-333(in)1(o)-334(b)1(ac)-1(z\\246,)-334(on)-332(z)-1(a)28(wdy)-333(b)28(y\\252)-333(s)-1(t)1(ary)83(.)]TJ 27.879 -13.549 Td[({)-333(Sam)-334(r)1(oz)-1(p)-27(o)28(wiada,)-333(co)-334(\\261m)-1(i)1(e)-1(r)1(\\242)-334(o)-334(n)1(im)-334(zap)-27(om)-1(n)1(ia\\252a!)-333({)-334(wtr)1(\\241c)-1(i\\252a)-333(k)28(o)28(w)27(alo)28(w)28(a.)]TJ 0 -13.549 Td[({)-250(Kostuc)28(ha)-250(ta)-250(o)-250(n)1(iki)1(m)-251(n)1(ie)-250(z)-1(ab)1(ac)-1(zy)83(,)-249(jeno)-250(tego)-250(os)-1(ta)28(wia)-250(se)-1(,)-249(b)28(y)-250(lepi)1(e)-1(j)-249(s)-1(kr)1(usz)-1(a\\252,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(k)1(w)27(ard)1(y)83(,)-333(j)1(u\\261c)-1(i)1(...)-333(wyc)-1(y)1(gania)-333(s)-1(i)1(\\246)-1(,)-333(j)1(ak)-334(mo\\273e)-1(..)1(.)-334(j)1(u\\261c)-1(i)1(...)-333({)-333(j\\241k)56(a\\252)-334(cic)28(ho.)]TJ 27.879 -13.549 Td[(Zamilkli)-333(n)1(a)-334(d)1(\\252ugo.)]TJ 0 -13.55 Td[({)-355(B)-1(acz)-1(\\246,)-355(kiej)-355(to)-356(w)-355(Lip)-28(cac)27(h)-355(wsz)-1(ystki)1(e)-1(go)-355(pi\\246tnastu)-355(gosp)-28(o)-28(d)1(arzy)-356(siedzia\\252o)-356({)]TJ -27.879 -13.549 Td[(zac)-1(z\\241\\252)-334(zno)28(wu)-333(Bylica)-334(wyci\\241)-28(ga)-55(j\\241c)-334(n)1(ie\\261)-1(mia\\252o)-333(palce)-334(ku)-333(tab)1(ac)-1(e)-333(Ro)-28(c)27(h)1(o)27(w)28(e)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(teraz)-333(s)-1(iedzi)-333(c)-1(zterdzies)-1(tu)1(!)-333({)-334(p)-27(o)-28(d)1(s)-1(u)1(n\\241\\252)-333(m)27(u)-333(tab)1(akierk)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-404(I)-404(n)1(o)27(w)28(e)-404(ju\\273)-404(cz)-1(ek)56(a)-56(j\\241)-403(na)-404(dzia\\252y)84(,)-404(ur)1(o)-28(dzi)-404(r)1(ok)-404(c)-1(zy)-404(n)1(ie,)-404(a)-404(nar)1(\\363)-28(d)-404(za)28(ws)-1(ze)-405(j)1(e)-1(d)1(-)]TJ -27.879 -13.549 Td[(nak)28(o)-417(pl)1(on)28(uj)1(e)-1(,)-417(ju)1(\\261)-1(ci..)1(.)-418(a)-417(z)-1(i)1(e)-1(mi)-418(n)1(ie)-418(p)1(rz)-1(y)1(b)28(yw)28(a...)-417(jes)-1(zc)-1(ze)-418(n)1(ie)-1(co\\261)-418(lat,)-417(a)-418(zbr)1(akni)1(e)-418(la)]TJ 0 -13.55 Td[(ws)-1(zystkic)28(h...)-333({)-333(Kic)28(ha\\252)-333(rz\\246)-1(si\\261)-1(cie.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(j)1(u\\273)-333(dzis)-1(i)1(a)-56(j)-333(w)28(e)-334(ws)-1(i)-333(ni)1(e)-334(c)-1(i)1(as)-1(n)1(o!)-333({)-334(r)1(z)-1(ek\\252a)-334(k)28(o)28(w)28(alo)28(w)27(a.)]TJ\nET\nendstream\nendobj\n1398 0 obj <<\n/Type /Page\n/Contents 1399 0 R\n/Resources 1397 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1397 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1402 0 obj <<\n/Length 9057      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(437)]TJ -330.353 -35.866 Td[({)-326(Pr)1(a)27(wd)1(a,)-326(a)-326(kiej)-326(si\\246)-327(c)28(h\\252op)1(aki)-326(p)-27(o\\273)-1(eni\\241,)-325(to)-326(ju\\273)-326(la)-326(ic)28(h)-326(d)1(z)-1(iec)-1(i)-325(nie)-326(os)-1(tan)1(ie)-326(i)-326(p)-28(o)]TJ -27.879 -13.549 Td[(morgu,)-333(j)1(u\\261c)-1(i.)1(..)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(w)28(e)-334(\\261wiat)-333(i\\261)-1(\\242)-333(m)27(usz)-1(\\241!)-333({)-333(zau)28(w)27(a\\273y\\252)-333(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[({)-333(Z)-334(cz)-1(y)1(m)-334(to)-333(p)-28(\\363)-55(jd)1(\\241?)-334(z)-334(go\\252ymi)-333(pazur)1(am)-1(i)-333(ten)-333(wiater)-333(z)-1(agrab)1(ia\\242?)]TJ 0 -13.549 Td[({)-441(A)-441(Ni)1(e)-1(mc)-1(y)-440(ano)-441(n)1(a)-441(S\\252up)1(i)-441(wyku)1(pi\\252y)-440(dzie)-1(d)1(z)-1(i)1(c)-1(a)-441(i)-440(te)-1(r)1(az)-442(si\\246)-441(s)-1(ta)28(wia)-55(j\\241...)-440(p)-28(o)]TJ -27.879 -13.55 Td[(dwie)-333(w)-1(\\252\\363k)1(i)-334(n)1(a)-334(osad\\246)-333({)-334(m\\363)28(wi\\252)-334(Ro)-28(c)28(ho)-333(do\\261\\242)-334(sm)27(ut)1(nie.)]TJ 27.879 -13.549 Td[({)-376(Ju\\261c)-1(i)1(...)-376(p)-27(o)28(w)-1(i)1(adali)-376(o)-376(t)28(ym...)-376(h)1(ale)-377(Ni)1(e)-1(mc)-1(y)-376(n)1(ar\\363)-28(d)-375(insz)-1(y)84(,)-376(uczon)28(y)-376(i)-376(z)-1(asobn)29(y)83(,)]TJ -27.879 -13.549 Td[(han)1(dl)1(uj\\241)-493(w)27(es)-1(p)-27(\\363\\252)-494(z)-494(\\233)-1(y)1(dami,)-494(a)-493(krzywd\\241)-494(lu)1(dzk)56(\\241)-494(s)-1(e)-494(p)-27(om)-1(aga)-55(j\\241..)1(.)-494(a)-494(n)1(ie)-1(c)28(h)28(b)28(y)-493(tak)]TJ 0 -13.549 Td[(p)-27(o)-449(c)27(h\\252op)1(s)-1(ku)-448(z)-450(go\\252ymi)-449(p)1(alicam)-1(i)-449(c)28(h)28(yta\\252y)-449(si\\246)-449(z)-1(iemie)-1(,)-449(t)1(o)-449(b)28(y)-449(i)-449(trzec)27(h)-449(siew)27(\\363)28(w)-449(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(etrzyma\\252y)83(..)1(.)-333(i)-332(co)-333(d)1(o)-333(j)1(e)-1(d)1(ne)-1(go)-332(wyku)1(pi\\252y)84(...)-332(W)-332(Lip)-27(c)-1(ac)27(h)-332(ciasno,)-332(du)1(s)-1(z\\241)-333(si\\246)-333(lu)1(dzie,)]TJ 0 -13.549 Td[(a)-316(tam)28(ten)-316(ma)-316(t)28(yl)1(ac)27(hn)1(a)-316(p)-27(ola,)-315(\\273)-1(e)-316(ugor)1(e)-1(m)-316(p)1(ra)28(wie)-316(le\\273)-1(y)84(...)-315({)-316(ws)-1(k)56(aza\\252)-316(dw)28(orskie)-316(zie)-1(mie)]TJ 0 -13.55 Td[(za)-334(m\\252ynem,)-334(wzg\\363rze)-1(m)-333(p)-28(o)-28(d)-332(las)-334(bi)1(e)-1(gn)1(\\241c)-1(e,)-333(k)55(a)-55(j)-333(c)-1(zerni)1(a\\252)-1(y)-333(\\252u)1(bin)1(o)28(w)27(e)-334(stogi.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(P)29(o)-28(dlesiu?)]TJ 0 -13.549 Td[({)-261(Ryc)28(h)28(t)28(yk)-261(p)1(rzyleg\\252e)-262(d)1(o)-261(naszyc)27(h,)-260(w)-261(s)-1(am)-261(r)1(az)-262(d)1(o)-261(wyku)1(pn)1(a,)-261(ze)-262(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(\\261c)-1(i)-260(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(arst)28(w)-311(tam)-310(b)28(y)-310(wym)-1(i)1(e)-1(r)1(z)-1(y\\252,)-310(j)1(u\\261c)-1(i.)1(..)-310(z)-1(e)-310(trzydzie\\261)-1(ci...)-310(al)1(e)-311(b)-28(o)-310(to)-310(dziedzic)-311(p)1(rze)-1(d)1(a,)]TJ 0 -13.549 Td[(kiej)-333(m)28(u)-333(pieni\\246dzy)-333(ni)1(e)-334(p)-28(ot)1(rz)-1(a?..)1(.)-333(b)-28(ogacz)-334(taki.)1(..)]TJ 27.879 -13.55 Td[({)-389(Hale!)-389(b)-28(ogacz)-1(,)-389(a)-389(kr)1(\\246)-1(ci)-389(s)-1(i)1(\\246)-390(z)-1(a)-389(gr)1(o)-1(sze)-1(m)-389(kiej)-389(pisk)28(orz)-389(z)-1(a)-389(b\\252otem,)-389(\\273)-1(e)-389(ju\\273)-389(o)-28(d)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252op)-28(\\363)28(w)-354(p)-27(o\\273)-1(y)1(c)-1(za)-354(i)-354(k)56(a)-55(j)-354(i)1(no)-354(mo\\273e)-1(.)-353(\\233ydy)-353(go)-354(pr)1(z)-1(y)1(dusza)-56(j\\241)-353(o)-354(sw)27(o)-55(je,)-354(co)-354(na)-353(las)-354(da\\252y)84(,)]TJ 0 -13.549 Td[(p)-27(o)-28(datk)1(i)-227(wini)1(e)-1(n)1(,)-227(dw)28(orskim)-227(ni)1(e)-228(p)1(\\252)-1(aci,)-226(jes)-1(zc)-1(ze)-1(k)-226(ordy)1(nari)1(i)-227(na)-227(No)28(wy)-227(Rok)-227(n)1(ale\\273)-1(n)1(e)-1(j)-226(nie)]TJ 0 -13.549 Td[(dosta\\252y)84(,)-271(ws)-1(z\\246)-1(d)1(z)-1(ie)-271(wini)1(e)-1(n)1(,)-271(a)-271(s)-1(k)56(\\241d)-270(to)-271(w)27(e\\271)-1(mie)-271(o)-28(d)1(da\\242,)-271(kiej)-271(b)-27(oru)-270(z)-1(ab)1(roni)1(\\252)-271(urz\\241d)-271(ci\\241\\242,)]TJ 0 -13.549 Td[(p)-27(\\363ki)-329(s)-1(i)1(\\246)-330(z)-330(c)28(h\\252opami)-329(n)1(ie)-330(u)1(go)-28(dzi?)-329(Nie)-330(wysie)-1(d)1(z)-1(i)-329(on)-328(d\\252ugo)-329(n)1(a)-329(W)83(oli)1(,)-329(nie!)-329(P)28(o)28(wiadali)1(,)]TJ 0 -13.55 Td[(co)-316(s)-1(i)1(\\246)-316(ju\\273)-316(za)-316(ku)1(p)-27(c)-1(ami)-316(ogl)1(\\241da...)-315({)-316(r)1(oz)-1(gad)1(a\\252)-1(a)-315(s)-1(i)1(\\246)-317(n)1(ies)-1(p)-27(o)-28(d)1(z)-1(ian)1(ie)-316(k)28(o)28(w)27(alo)28(w)28(a,)-316(al)1(e)-317(k)1(ie)-1(j)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(o)-378(c)27(h)1(c)-1(ia\\252)-378(j)1(\\241)-378(wi\\246c)-1(ej)-378(p)-27(o)-28(ci\\241)-28(gn\\241\\242)-378(za)-378(j\\246z)-1(yk)1(,)-378(zac)-1(i\\246\\252a)-378(s)-1(i)1(\\246)-379(j)1(ak)28(o\\261)-379(i)-377(z)-1(b)28(y)1(w)-1(sz)-1(y)-377(go)-378(b)-27(e)-1(le)]TJ 0 -13.549 Td[(cz)-1(ym,)-333(dziec)-1(i)-333(zw)27(o\\252a\\252a)-333(i)-334(d)1(o)-333(dom)-334(p)-27(osz)-1(\\252a.)]TJ 27.879 -13.549 Td[({)-274(Sp)-27(oro)-274(m)27(u)1(s)-1(i)-274(wiedzie\\242)-275(o)-28(d)-274(sw)28(o)-56(jego,)-274(jeno)-274(si\\246)-275(b)-27(o)-56(j)1(a)-274(p)-28(op)1(u\\261c)-1(i\\242...)-274(J)1(u\\261c)-1(i,)-274(\\273e)-275(p)1(rzy-)]TJ -27.879 -13.549 Td[(leg\\252e)-252(ziem)-1(ie)-251(ro)-27(dn)1(e)-1(,)-251(\\252\\241ki)-250(dwuk)28(o\\261ne,)-251(j)1(u\\261c)-1(i.)1(..)-251({)-251(r)1(oz)-1(m)28(y\\261)-1(l)1(a\\252)-251(g\\252)-1(o\\261no)-250(s)-1(tary)84(,)-251(wp)1(atrzon)28(y)-251(w)]TJ 0 -13.55 Td[(p)-27(o)-28(dl)1(e)-1(skie)-308(p)-27(ola,)-307(k)56(a)-55(j)-307(wida\\242)-307(b)28(y\\252o)-307(za)-308(stogami)-307(dac)28(h)28(y)-307(za)-1(b)1(ud)1(o)28(w)27(a\\253)-307(f)1(olw)28(arcz)-1(n)28(y)1(c)27(h,)-307(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(\\273e)-320(Ro)-28(c)27(h)1(o)-320(n)1(ie)-320(s\\252uc)27(h)1(a\\252,)-320(b)-27(o)-319(do)-55(jrza)28(ws)-1(zy)-319(Koz)-1(\\252o)28(w)27(\\241)-319(sto)-56(j)1(\\241c)-1(\\241)-319(nad)-319(sta)28(w)27(em)-320(z)-320(k)28(ob)1(ietam)-1(i)1(,)]TJ 0 -13.549 Td[(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(n)1(ic)27(h)-333(p)1(r\\246dk)28(o.)]TJ 27.879 -13.549 Td[({)-301(Hi.)1(..)-301(hi)1(...)-301(zmog\\252y)-301(dziedzic)-1(a.)1(..)-301(M\\363)-55(j)-301(Jezu,)-301(a)-301(p)-27(o\\273ywi\\252yb)28(v)-301(si\\246)-301(c)27(h)1(\\252)-1(op)29(y)-301(ni)1(e)-1(zgo-)]TJ -27.879 -13.549 Td[(rze)-1(j)1(...)-359(Ju\\261c)-1(i)1(...)-360(d)1(ru)1(ga)-360(w)-1(i)1(e)-1(\\261)-360(b)28(y)-360(stan)1(\\246)-1(\\252a,)-360(r)1(\\241k)-360(ni)1(e)-361(zbr)1(akni)1(e)-361(n)1(i)-360(g\\252o)-28(d)1(n)28(yc)27(h)-359(na)-360(ziem)-1(i)1(e)-1(..)1(.)]TJ 0 -13.55 Td[(ju)1(\\261)-1(ci..)1(.)-358({)-358(rozm)-1(ar)1(z)-1(y\\252)-358(si\\246)-358(B)-1(yl)1(ic)-1(a)-358(d)1(yrd)1(a)-56(j)1(\\241c)-359(za)-358(dzie)-1(\\242mi,)-358(b)-27(o)-358(ja\\273e)-359(n)1(a)-358(drog\\246)-358(s)-1(i)1(\\246)-359(wyto-)]TJ 0 -13.549 Td[(cz)-1(y\\252y)84(.)]TJ 27.879 -13.549 Td[(Na)-333(nies)-1(zp)-27(ory)-333(z)-1(acz)-1(\\246li)-333(d)1(z)-1(w)28(oni\\242.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-427(si\\246)-427(ju)1(\\273)-427(prze)-1(t)1(ac)-1(za\\252o)-427(ku)-426(b)-27(orom)-427(i)-427(d)1(rze)-1(w)28(a)-427(p)-27(o)-28(cz)-1(\\246\\252y)-427(k\\252a\\261\\242)-427(d\\252ugi)1(e)-428(cie-)]TJ -27.879 -13.549 Td[(ni)1(e)-357(n)1(a)-356(dr)1(ogi)-356(i)-356(sta)28(w)-1(,)-355(a)-356(przedwie)-1(czorna)-356(cic)28(ho\\261\\242)-357(tak)-355(przyw)28(ala\\252a)-356(\\261)-1(wiat,)-355(\\273)-1(e)-356(s)-1(\\252y)1(c)27(ha\\242)]TJ 0 -13.549 Td[(b)28(y\\252o)-359(dalekie)-360(j)1(e)-1(sz)-1(cz)-1(e)-360(d)1(ud)1(nieni)1(e)-361(w)28(oz\\363)27(w,)-359(krzyki)-359(ptact)28(w)27(a)-359(na)-359(ogorz)-1(elisk)56(ac)27(h)-359(i)-359(c)-1(ic)28(he,)]TJ 0 -13.55 Td[(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(e)-334(gr)1(anie)-333(organ\\363)28(w)-333(w)-334(k)28(o\\261c)-1(iele.)]TJ 27.879 -13.549 Td[(\\233e)-331(za\\261)-331(p)-27(o)28(w)-1(r)1(ac)-1(a\\252y)-330(j)1(u\\273)-331(n)1(iekt\\363re)-330(z)-331(mias)-1(t)1(a,)-330(z)-1(akl)1(e)-1(k)28(ota\\252y)-330(o)-28(d)-329(trep)-28(\\363)28(w)-330(w)-1(szys)-1(tk)1(ie)]TJ -27.879 -13.549 Td[(mos)-1(tk)1(i,)-333(tak)-333(biegli)-333(no)28(win)-333(p)-27(os)-1(\\252u)1(c)27(h)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-455(p)-27(o)-454(nies)-1(zp)-27(orac)27(h)1(,)-454(o)-454(s)-1(am)28(ym)-455(zac)27(h)1(o)-28(dzie)-1(,)-454(d)1(obr)1(o)-28(dziej)-454(p)-27(o)-56(jec)27(h)1(a\\252)-455(d)1(rog\\241)-454(do)]TJ -27.879 -13.549 Td[(W)84(\\363lki.)-442(Jam)27(b)1(ro\\273y)-443(p)-27(o)27(wiedzia\\252,)-442(\\273)-1(e)-443(do)-442(dw)28(oru)-442(na)-443(b)1(al,)-443(a)-442(z)-1(ar)1(az)-444(p)-27(o)-443(j)1(e)-1(go)-442(w)-1(y)1(je\\271)-1(d)1(z)-1(ie)]TJ 0 -13.55 Td[(organ)1(ist)27(y)-463(z)-464(ca\\252ym)-464(dome)-1(m)-463(w)27(ali)1(li)-464(w)-463(go\\261)-1(cie)-464(do)-463(m\\252)-1(y)1(narz\\363)28(w;)-464(Jasio)-463(w)-1(i)1(\\363)-28(d\\252)-463(m)-1(atk)28(\\246)]TJ 0 -13.549 Td[(sie)-1(l)1(nie)-334(zes)-1(tro)-55(jon)1(\\241)-334(i)-333(w)28(e)-1(so\\252o)-333(p)-28(ozdr)1(a)27(wia\\252)-333(dzieuc)27(h)29(y)83(,)-333(wyzie)-1(r)1(a)-56(j)1(\\241c)-1(e)-334(z)-333(op\\252otk)28(\\363)28(w.)]TJ\nET\nendstream\nendobj\n1401 0 obj <<\n/Type /Page\n/Contents 1402 0 R\n/Resources 1400 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1400 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1405 0 obj <<\n/Length 8650      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(438)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zmie)-1(r)1(z)-1(c)28(h)-410(si\\246)-411(r)1(oz)-1(tr)1(z)-1(\\241sa\\252)-410(c)-1(ic)28(h)28(y)-410(p)-27(o)-410(z)-1(i)1(e)-1(miac)27(h)1(,)-410(s)-1(\\252o\\253)1(c)-1(e)-410(z)-1(asz\\252)-1(o)-410(i)-409(z)-1(or)1(z)-1(e)-410(s)-1(i\\246)-410(roz-)]TJ -27.879 -13.549 Td[(lew)27(a\\252y)-440(coraz)-441(sze)-1(rzej,)-440(\\273e)-441(z)-441(p)-27(\\363\\252)-440(nieba)-440(stan\\246\\252o)-441(w)-440(kr)1(w)27(a)28(wyc)27(h)-440(ogn)1(iac)27(h)1(,)-440(kieb)28(y)-440(t)28(ym)]TJ 0 -13.549 Td[(zarz)-1(ewiem)-475(przysypan)1(e)-1(,)-474(w)27(o)-27(dy)-474(s)-1(i\\246)-475(k)1(rw)28(a)27(w)28(o)-475(zatli\\252y)-474(i)-475(sz)-1(y)1(b)28(y)-474(roz)-1(gor)1(z)-1(a\\252y)84(,)-475(o)-27(d)-475(mia-)]TJ 0 -13.549 Td[(sta)-328(za\\261)-328(c)-1(or)1(az)-328(wi\\246)-1(cej)-327(nadj)1(e)-1(\\273d\\273a\\252o)-328(w)28(oz\\363)27(w)-327(i)-328(coraz)-328(r)1(oz)-1(g\\252o\\261niej)-327(wrza\\252)-1(y)-327(kr)1(z)-1(y)1(ki)-327(prze)-1(d)]TJ 0 -13.549 Td[(domami.)]TJ 27.879 -13.55 Td[(Hank)1(i)-328(jeno)-328(nie)-328(b)28(y\\252o)-329(wid)1(a\\242)-1(,)-328(al)1(e)-329(m)-1(i)1(m)-1(o)-328(to)-328(przed)-328(c)27(ha\\252u)1(p\\241)-328(gw)27(ar)1(no)-328(b)28(y\\252o)-328(i)-328(w)27(e-)]TJ -27.879 -13.549 Td[(so\\252)-1(o;)-426(dzieuc)28(h)-427(r)1(\\363)27(wies)-1(n)29(yc)27(h)-426(nasz\\252)-1(o)-426(s)-1(i)1(\\246)-428(d)1(o)-427(J\\363zki,)-426(\\273)-1(e)-427(ki)1(e)-1(j)-426(te)-427(s)-1(zcz)-1(yg\\252y)-426(\\261)-1(wiergotl)1(iw)27(e)]TJ 0 -13.549 Td[(obsiad)1(\\252y)-413(przy\\271b)-28(\\246)-413(i)-413(ganek,)-413(zaba)28(wia)-56(j)1(\\241c)-414(si\\246)-414(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)27(h)1(ami)-413(z)-414(Ja\\261kiem)-414(P)1(rz)-1(ewrot-)]TJ 0 -13.549 Td[(n)28(ym,)-289(kt\\363ren)-289(pr)1(z)-1(y)1(le)-1(cia\\252)-290(za)-290(Nastu)1(s)-1(i\\241,)-289(c)27(h)1(o)-28(\\242)-290(go)-289(ta)-290(j)1(u\\273)-290(ca\\252kiem)-290(o)-28(dp)-27(\\246dza\\252)-1(a)-289(o)-28(d)-289(sie)-1(b)1(ie,)]TJ 0 -13.549 Td[(na)-237(k)28(ogo)-238(in)1(nego)-238(rac)27(h)29(uj\\241c.)-238(J)1(\\363z)-1(k)56(a)-238(u)1(gas)-1(zc)-1(za\\252a)-238(je,)-238(j)1(ak)-238(in)1(o)-238(mog\\252a,)-238(pl)1(ac)27(kiem)-238(ja)-55(jec)-1(zn)28(ym)]TJ 0 -13.549 Td[(a)-333(kie\\252bas\\241.)]TJ 27.879 -13.55 Td[(Nastusia)-345(rej)-345(wied\\252a,)-344(jak)28(o)-345(n)1(a)-56(j)1(s)-1(tar)1(s)-1(za)-345(i)-345(\\273e)-346(t)1(o)-345(na)-55(jbar)1(dziej)-345(si\\246)-345(prze)-1(k)1(piw)28(a\\252a)-345(z)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opak)56(a,)-305(c)-1(o)-305(to)-306(b)29(y\\252)-306(n)1(ie)-1(zgu\\252a,)-305(a)-305(s)-1(iar)1(c)-1(zyste)-1(go)-305(parob)1(k)56(a)-306(c)28(hcia\\252)-306(u)1(da)28(w)27(a\\242.)-305(Sto)-55(ja\\252)-305(w)-1(\\252a-)]TJ 0 -13.549 Td[(\\261nie)-254(p)1(rz)-1(ed)-253(w)-1(szys)-1(tk)1(imi,)-254(w)-254(p)1(as)-1(i)1(as)-1(t)28(yc)28(h)-254(p)-27(ortk)56(ac)27(h)1(,)-254(w)-253(no)28(wym)-254(s)-1(p)-27(e)-1(n)1(c)-1(erk)1(u)-254(i)-253(w)-254(k)56(ap)-28(elu)1(s)-1(ie)]TJ 0 -13.549 Td[(na)-333(b)1(akier,)-333(uj)1(\\241\\252)-334(si\\246)-334(p)-27(o)-28(d)-333(b)-27(oki,)-333(a)-333(z)-1(e)-333(\\261)-1(miec)27(hem)-334(p)-27(o)28(w)-1(i)1(ada\\252:)]TJ 27.879 -13.549 Td[({)-333(Musita)-333(o)-333(m)-1(n)1(ie)-334(stoi\\242,)-334(b)-27(om)-334(sam)-334(j)1(e)-1(d)1(e)-1(n)-333(p)1(arob)-27(e)-1(k)-333(w)28(e)-334(ws)-1(i)1(!)]TJ 0 -13.55 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(z)-1(a)-333(kro)28(w)28(am)-1(i)-333(d)1(yrd)1(a\\242)-334(m)-1(a)-333(kto)-333(j)1(e)-1(sz)-1(cz)-1(e!)]TJ 0 -13.549 Td[({)-333(P)28(okrak)56(a)-333(jedn)1(a,)-333(do)-333(s)-1(kr)1(oban)1(ia)-333(z)-1(iemniak)28(\\363)28(w)-334(sp)-27(os)-1(ob)1(n)28(y!)]TJ 0 -13.549 Td[({)-387(Dziec)-1(iom)-387(nosy)-387(ob)-27(cie)-1(r)1(a\\242)-1(!)-387({)-386(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252y)-387(j)1(e)-1(d)1(na)-387(pr)1(z)-1(ez)-387(dru)1(g\\241,)-387(rozg\\252o\\261)-1(n)29(ym)]TJ -27.879 -13.549 Td[(\\261m)-1(iec)27(h)1(e)-1(m)-432(wyb)1(uc)27(h)1(a)-56(j)1(\\241c)-1(,)-431(ale)-432(Jasie)-1(k)-431(s)-1(i)1(\\246)-433(n)1(ie)-432(s)-1(t)1(ropi\\252,)-431(s)-1(t)1(rz)-1(y)1(kn\\241\\252)-432(\\261lin)1(\\241)-432(p)1(rz)-1(ez)-432(z)-1(\\246b)28(y)-431(i)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252:)]TJ 27.879 -13.55 Td[({)-333(O)-333(takie)-334(g\\252u)1(pie)-333(s)-1(kr)1(z)-1(at)28(y)-333(ni)1(e)-334(s)-1(to)-55(j\\246!..)1(.)-334(G)1(\\246)-1(si)-333(w)27(ama)-333(pa\\261\\242)-334(jes)-1(zc)-1(ze!)]TJ 0 -13.549 Td[({)-333(Sam)-334(\\252on)1(i)-333(z)-1(a)-333(kro)28(wim)-333(o)-1(gon)1(e)-1(m)-333(ta\\253co)28(w)27(a\\252,)-333(a)-333(te)-1(r)1(a)-334(p)1(arobk)56(a)-333(ud)1(a)-56(j)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(I)-334(co)-334(d)1(ni)1(a)-334(p)-27(ortk)1(i)-334(gu)1(bi\\252,)-333(tak)-333(p)1(rze)-1(d)-333(b)28(y)1(kiem)-334(uciek)56(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(O\\273)-1(e\\253)-333(si\\246)-334(z)-334(M)1(agd\\241)-333(o)-28(d)-333(Jan)1(kla,)-333(ta)-333(c)-1(i)-333(p)1(as)-1(u)1(je)-334(w)-333(s)-1(am)-333(raz)-1(.)]TJ 0 -13.549 Td[({)-333(\\233ydo)28(ws)-1(k)1(ie)-334(bac)28(hor)1(y)-334(n)1(ia\\253czy)83(,)-333(to)-333(i)-333(tobie)-333(nos)-334(b)-27(\\246dzie)-334(umia\\252a)-333(uciera\\242)-1(.)]TJ 0 -13.55 Td[({)-307(Alb)-27(o)-307(z)-308(Jagat\\241,)-307(to)-307(j\\241)-307(n)1(a)-307(o)-28(dp)1(ust)27(y)-306(p)-28(op)1(ro)28(w)27(ad)1(z)-1(isz)-308({)-307(r)1(z)-1(u)1(c)-1(a\\252y)-307(w)-307(niego)-307(s)-1(zydl)1(i-)]TJ -27.879 -13.549 Td[(wie.)]TJ 27.879 -13.549 Td[({)-312(A)-313(j)1(akb)28(ym)-312(do)-312(kt\\363r)1(e)-1(j)-312(z)-312(w)27(\\363)-28(d)1(k)55(\\241)-312(p)-27(os)-1(\\252a\\252,)-312(to)-312(b)28(y)-312(s)-1(i)1(\\246)-313(do)-312(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wy)-312(o)-28(c)28(h\\014ar)1(o-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(a)-333(i)-333(ws)-1(zystkie)-334(p)1(i\\241tki)-333(susz)-1(y)1(\\252)-1(a)-333(z)-334(r)1(ado\\261c)-1(i!)-333({)-333(o)-28(d)1(p)-28(o)28(wiedzia\\252.)]TJ 27.879 -13.549 Td[({)-343(A)-344(p)-27(ozw)27(oli)-343(ci)-343(to)-343(m)-1(atk)56(a,)-343(kiej\\261)-343(w)-344(c)28(ha\\252up)1(ie)-344(p)-27(otrze)-1(b)1(n)28(y)-343(do)-343(m)28(yc)-1(i)1(a)-344(gar)1(nk)28(\\363)28(w)-344(i)]TJ -27.879 -13.55 Td[(mac)-1(an)1(ia)-333(kur)1(!)-334({)-333(za)27(w)28(o\\252a\\252a)-334(Nastk)56(a.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(si\\246)-334(ozgniew)27(am)-333(i)-333(p)-28(\\363)-55(jd\\246)-333(do)-333(Mary)1(s)-1(i)-333(Balce)-1(rk)28(\\363)28(wn)28(y!)]TJ 0 -13.549 Td[({)-333(Id\\271,)-334(j)1(u\\273)-333(tam)-334(Mar)1(ys)-1(i)1(a)-334(cz)-1(ek)56(a)-334(n)1(a)-334(ci\\246)-334(z)-333(p)-28(omiet\\252e)-1(m)-333(alb)-28(o)-333(cz)-1(ym\\261)-334(gor)1(s)-1(zym...)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(iec)27(h)-333(ci\\246)-334(jeno)-333(d)1(o)-56(jr)1(z)-1(y)84(,)-333(to)-334(zaraz)-333(pies)-1(k)1(i)-334(p)-27(ospu)1(s)-1(zc)-1(za.)]TJ 0 -13.549 Td[({)-319(I)-319(n)1(ie)-319(z)-1(gu)1(b)-318(c)-1(ze)-1(go)-318(p)-28(o)-319(d)1(ro)-28(d)1(z)-1(e!)-318({)-319(\\261)-1(mia\\252a)-319(si\\246)-319(Nas)-1(t)1(u\\261)-319(p)-27(o)-28(c)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-320(go)-318(\\271)-1(d)1(z)-1(iebk)28(o)]TJ -27.879 -13.549 Td[(za)-334(p)-27(ortk)1(i,)-333(b)-28(o)-333(mia\\252)-334(wsz)-1(ystk)56(\\241)-333(przy)28(o)-28(d)1(z)-1(iew)27(\\246)-333(kiejb)28(y)-333(n)1(a)-334(wyr)1(os)-1(t.)]TJ 27.879 -13.55 Td[({)-333(P)28(o)-333(dziadku)-332(do)-28(d)1(z)-1(iera)-333(bu)1(c)-1(i)1(ar\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(Kamiz)-1(el\\246)-334(ma)-333(z)-1(e)-334(wsyp)28(y)84(,)-333(c)-1(o)-333(j\\241)-333(to)-333(\\261)-1(win)1(ie)-334(p)-27(o)-28(dar)1(\\252y)83(.)]TJ 0 -13.549 Td[(Lec)-1(ia\\252y)-411(s)-1(\\252o)28(w)28(a)-412(ki)1(e)-1(j)-411(grad)-411(wraz)-412(ze)-412(\\261m)-1(iec)27(h)1(e)-1(m;)-411(\\261)-1(mia\\252)-412(si\\246)-412(zar\\363)28(wno)-411(i)-412(sk)28(o)-28(cz)-1(y\\252,)]TJ -27.879 -13.549 Td[(b)28(y)-408(Nastk)28(\\246)-408(w)-1(p)-27(\\363\\252)-408(uj)1(\\241\\242)-1(,)-408(al)1(e)-409(m)28(u)-408(kt\\363r)1(a\\261)-409(p)-27(o)-28(dsta)28(wi\\252a)-408(nog\\246,)-408(\\273)-1(e)-408(ru)1(n\\241\\252)-408(jak)-407(d\\252ugi)-407(p)-28(o)-28(d)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(\\246)-1(,)-333(n)1(ie)-334(mog\\241c)-334(p)-27(o)27(wsta\\242)-1(,)-333(b)-27(o)-333(go)-334(w)28(c)-1(i)1(\\241\\273)-334(p)-28(op)29(yc)27(h)1(a\\252)-1(y)84(.)]TJ 27.879 -13.55 Td[({)-327(Da)-55(jta)-326(m)27(u)-326(sp)-28(ok)28(\\363)-55(j,)-326(jak\\273e)-1(.)1(..)-327({)-326(przycis)-1(za\\252a)-327(J\\363zk)56(a)-327(p)-27(om)-1(aga)-55(j\\241c)-327(m)27(u)-326(wsta\\242)-1(,)-326(b)-28(o)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(n)1(ie)-1(d)1(o)-56(j)1(da,)-333(gosp)-28(o)-28(d)1(arskim)-333(b)28(y\\252)-333(s)-1(yn)1(e)-1(m)-333(i)-333(jej)-333(p)-28(o)28(wino)28(w)28(at)28(ym)-334(p)1(rze)-1(z)-334(matk)28(\\246.)]TJ\nET\nendstream\nendobj\n1404 0 obj <<\n/Type /Page\n/Contents 1405 0 R\n/Resources 1403 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1390 0 R\n>> endobj\n1403 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1408 0 obj <<\n/Length 8183      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(439)]TJ -330.353 -35.866 Td[(A)-333(p)-28(otem)-334(zaba)28(wiali)-333(si\\246)-334(w)-333(\\261)-1(lep\\241)-333(bab)1(k)28(\\246)-1(.)]TJ 0 -13.549 Td[(Ja\\261k)55(a)-430(na)-430(ni)1(\\241)-431(ob)1(ra\\252y)-430(i)-431(za)28(w)-1(i)1(\\241z)-1(a)28(ws)-1(zy)-430(m)27(u)-430(o)-28(cz)-1(y)84(,)-430(usta)27(wi\\252y)-430(go)-430(w)-1(p)1(rost)-431(gan)1(ku)]TJ -27.879 -13.549 Td[(rozbi)1(e)-1(ga)-55(j\\241c)-397(s)-1(i\\246)-397(nar)1(az)-398(z)-397(kr)1(z)-1(yk)1(ie)-1(m)-397(n)1(a)-397(w)-1(sze)-398(stron)28(y)-396(kiej)-397(wr\\363b)1(le)-1(.)-396(P)28(ogoni)1(\\252)-397(z)-1(a)-397(n)1(imi)]TJ 0 -13.549 Td[(z)-359(rozc)-1(zapierzon)28(ymi)-359(r)1(\\246)-1(k)28(oma)-359(n)1(at)28(yk)56(a)-56(j\\241c)-359(si\\246)-359(c)-1(o)-358(tro)-28(c)28(ha)-359(n)1(a)-359(p\\252ot)28(y)-358(i)-359(\\261c)-1(ian)29(y;)-359(k)1(ie)-1(r)1(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(si\\246)-443(za)-442(\\261)-1(miec)27(hami,)-442(al)1(e)-443(n)1(ie)-1(\\252acno)-442(kt\\363r)1(\\241)-442(przyc)28(h)28(wyc)-1(i)1(\\252)-1(,)-441(b)-28(o)-442(\\261m)-1(i)1(ga\\252)-1(y)-441(k)28(ole)-443(n)1(ie)-1(go)-442(k)1(ie)-1(j)]TJ 0 -13.55 Td[(jask)28(\\363\\252ki,)-436(p)-27(otr\\241ca)-56(j\\241c)-437(w)-436(przelo)-28(cie)-1(,)-436(\\273)-1(e)-437(zat\\246tnia\\252o)-436(pr)1(z)-1(ed)-437(c)28(ha\\252u)1(p\\241,)-436(jakb)29(y)-437(to)-436(s)-1(tad)1(o)]TJ 0 -13.549 Td[(\\271re)-1(b)1(ak)28(\\363)28(w)-437(p)1(rze)-1(gan)1(ia\\252)-436(p)-28(o)-436(gr)1(ud)1(z)-1(i,)-435(a)-436(piski,)-436(wrza)28(w)27(a,)-435(\\261)-1(miec)27(h)28(y)-436(si\\246)-436(z)-1(atr)1(z)-1(\\246s)-1(\\252y)84(,)-436(a\\273)-437(n)1(a)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-333(wie\\261)-334(s)-1(i)1(\\246)-334(rozle)-1(ga\\252o.)]TJ 27.879 -13.549 Td[(Mr)1(ok)-417(j)1(u\\273)-417(g\\246s)-1(tn)1(ia\\252,)-416(z)-1(orze)-417(s)-1(i)1(\\246)-417(dop)1(ala\\252y)-417(i)-416(z)-1(ab)1(a)28(w)27(a)-416(trw)28(a\\252a)-417(w)-417(n)1(a)-56(jl)1(e)-1(p)1(s)-1(ze)-1(,)-416(kiej)]TJ -27.879 -13.549 Td[(nar)1(az)-334(w)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-333(b)1(uc)27(h)1(n\\241\\252)-333(wrzas)-1(k)-333(ku)1(rzy)83(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-333(p)-27(olec)-1(ia\\252a)-333(tam)-334(w)-333(te)-334(p)-27(\\246)-1(d)1(y)83(.)]TJ 0 -13.55 Td[(Wit)1(e)-1(k)-248(s)-1(to)-55(ja\\252)-249(p)-27(o)-28(d)-248(sz)-1(op)1(\\241)-249(c)27(h)1(o)28(w)27(a)-55(j\\241c)-249(c)-1(osik)-248(z)-1(a)-248(s)-1(iebi)1(e)-1(,)-248(a)-249(Gu)1(lbasiak)-248(pr)1(z)-1(yw)28(aro)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(za)-334(p)1(\\252ugami,)-333(\\273)-1(e)-334(m)28(u)-333(in)1(o)-334(\\252eb)-333(s)-1(i)1(\\246)-334(bi)1(e)-1(li)1(\\252)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nic)-1(,)-333(J\\363zia..)1(.)-333(nic...)-333({)-333(s)-1(ze)-1(p)1(ta\\252)-334(p)-27(omies)-1(zan)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Kur)1(\\246)-1(\\261c)-1(i)1(e)-334(du)1(s)-1(il)1(i...)-333(p)1(i\\363ra)-333(jes)-1(zc)-1(ze)-334(an)1(o)-334(l)1(e)-1(c\\241...)]TJ 0 -13.549 Td[({)-361(In)1(om)-361(k)28(oguto)28(wi)-360(tro)-28(c)28(h\\246)-361(z)-361(ogona)-360(wyrw)28(a\\252,)-361(b)-27(o)-361(mi)-360(p)-28(otr)1(z)-1(a)-360(la)-361(mo)-56(j)1(e)-1(go)-360(ptak)56(a.)]TJ -27.879 -13.55 Td[(Ale)-334(n)1(ie)-334(n)1(as)-1(z)-334(k)28(ogu)1(t,)-333(ni)1(e)-1(,)-333(J\\363zia!)-333(Gul)1(basiak)-333(s)-1(k)56(\\241d)1(c)-1(i\\261)-333(przyni)1(\\363s)-1(\\252..)1(.)-334(sw)28(o)-56(jego...)]TJ 27.879 -13.549 Td[({)-333(P)28(ok)56(a\\273)-1(!)-333({)-333(rozk)55(aza\\252a)-334(sur)1(o)28(w)27(o.)]TJ 0 -13.549 Td[(Cisn\\241\\252)-333(jej)-333(p)-28(o)-27(d)-333(nogi)-333(na)-333(p)-27(\\363\\252)-334(\\273yw)28(e)-1(go)-333(ptak)56(a,)-333(ca\\252)-1(k)1(ie)-1(m)-333(os)-1(ku)1(ban)1(e)-1(go)-333(z)-334(p)1(i\\363r.)]TJ 0 -13.549 Td[({)-322(P)29(e)-1(wni)1(e)-1(,)-321(\\273)-1(e)-322(ni)1(e)-322(nasz)-1(!)-321({)-322(rze)-1(k)1(\\252a)-322(nie)-322(mog\\241c)-322(rozp)-28(ozna\\242.{)-321(Ale)-322(p)-28(ok)56(a\\273)-322(s)-1(w)28(o)-56(j)1(e)-1(go)]TJ -27.879 -13.549 Td[(cudak)56(a.)]TJ 27.879 -13.55 Td[(Wyn)1(i\\363s\\252)-237(n)1(a)-237(j)1(a\\261)-1(n)1(i\\246)-237(j)1(u\\273)-237(ca\\252kiem)-237(goto)28(w)28(e)-1(go)-236(k)28(ogutk)56(a:)-236(z)-237(d)1(rze)-1(w)28(a)-236(b)28(y\\252)-236(w)-1(y)1(s)-1(tr)1(ugan)28(y)]TJ -27.879 -13.549 Td[(i)-396(obl)1(e)-1(p)1(ion)28(y)-396(c)-1(i)1(as)-1(tem,)-397(w)-396(kt\\363r)1(e)-397(p)-27(o)27(wt)28(yk)56(ano)-396(p)1(i\\363rek,)-396(\\273)-1(e)-396(kiej)-396(\\273)-1(y)1(w)-1(y)-396(si\\246)-397(wid)1(z)-1(ia\\252,)-396(b)-27(o)-396(i)]TJ 0 -13.549 Td[(\\252e)-1(b)-332(z)-334(dziob)-27(e)-1(m)-334(mia\\252)-333(pr)1(a)27(wd)1(z)-1(iw)28(ego,)-334(n)1(a)-333(pat)28(yk)-333(nad)1(z)-1(i)1(an)28(y)83(.)]TJ 27.879 -13.549 Td[(Na)-363(des)-1(ce)-364(se)-364(sto)-56(j)1(a\\252)-363(c)-1(ze)-1(r)1(w)27(ono)-363(u)1(krasz)-1(on)1(e)-1(j)1(,)-363(a)-363(tak)-363(z)-1(m)28(y\\261lni)1(e)-364(pr)1(z)-1(yr)1(yc)27(h)29(to)27(w)28(anej)]TJ -27.879 -13.549 Td[(do)-411(malu\\261kiego)-411(w)27(ozik)56(a,)-411(\\273)-1(e)-411(s)-1(k)28(oro)-411(Wi)1(te)-1(k)-411(zaruc)28(ha\\252)-411(d\\252u)1(gim)-412(d)1(ys)-1(ze)-1(l)1(kiem)-1(,)-411(k)28(ogu)1(t)-411(j\\241\\252)]TJ 0 -13.55 Td[(ta\\253)1(c)-1(o)28(w)27(a\\242)-429(i)-430(skrzyd)1(\\252a)-430(rozk\\252ada\\242,)-429(do)-429(te)-1(go)-429(za\\261)-430(z)-1(ap)1(ia\\252)-430(G)1(ulb)1(as)-1(i)1(ak,)-429(ja\\273)-1(e)-429(s)-1(i\\246)-429(kury)-429(z)]TJ 0 -13.549 Td[(grz\\246)-1(d)-332(o)-28(dez)-1(w)28(a\\252y)83(.)]TJ 27.879 -13.549 Td[({)-463(Jez)-1(u)1(,)-463(a)-463(tom)-464(p)-27(\\363ki)-462(\\273)-1(ycia)-463(taki)1(e)-1(go)-463(cudak)56(a)-463(n)1(ie)-464(u)29(w)-1(i)1(dzia\\252a!)-463({)-463(pr)1(z)-1(yk)1(ucn\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(ob)-28(ok)1(.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(y)-334(j)1(e)-1(st,)-333(c)-1(o?)-333(Utra\\014)1(\\252e)-1(m,)-333(J\\363z)-1(i)1(a,)-333(c)-1(o?)-333({)-334(sz)-1(epta\\252)-333(z)-334(d)1(um\\241.)]TJ 0 -13.55 Td[({)-333(Same)-1(\\261)-333(to)-334(wystroi\\252?)-333(z)-1(e)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(g\\252o)28(wy?)]TJ 0 -13.549 Td[(Dziw)-334(j)1(\\241)-334(r)1(oz)-1(p)1(iera\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(sam!)-334(J)1(\\246)-1(d)1(re)-1(k)-333(mi)-333(jeno)-333(k)28(oguta)-333(\\273yw)27(ego)-333(przyn)1(i\\363s)-1(\\252..)1(.)-333(a)-334(sam)-1(,)-333(J\\363zia..)1(.)]TJ 0 -13.549 Td[({)-430(M)1(oi\\261)-1(ciewy)83(,)-429(a)-430(to)-429(kiej)-430(\\273ywy)-430(si\\246)-430(r)1(uc)27(h)1(a,)-430(c)28(ho)-28(\\242)-430(z)-430(d)1(re)-1(wn)1(a.)-430(P)29(o)-1(k)56(a\\273)-430(go)-429(dzie)-1(u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)1(om)-1(!)1(...)-333(dop)1(iero)-333(to)-334(b)-27(\\246d\\241)-333(w)-1(y)1(dziwia\\242)-1(!)1(...)-333(P)28(ok)56(a\\273)-1(,)-333(W)1(ite)-1(k)1(!)]TJ 27.879 -13.549 Td[({)-372(Ni,)-371(ju)1(tro)-372(p)-27(\\363)-56(j)1(dziem)27(y)-372(p)-27(o)-372(d)1(yngu)1(s)-1(ie,)-372(to)-371(obacz)-1(\\241.)-371(Je)-1(sz)-1(cz)-1(e)-372(sz)-1(tac)28(hetk)28(\\363)28(w)-373(b)1(rak)]TJ -27.879 -13.55 Td[(kiele)-334(n)1(iego,)-334(\\273eb)28(y)-333(nie)-333(s)-1(f)1(run)1(\\241\\252.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(op)1(atrz)-333(kro)28(wy)-334(i)-333(d)1(o)-334(i)1(z)-1(b)28(y)-333(p)1(rzyc)27(h)1(o)-28(d\\271)-333(robi)1(\\242)-1(,)-333(widn)1(iej)-333(c)-1(i)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(Przyj)1(d\\246,)-333(jeno)-333(jes)-1(zc)-1(ze)-1(c)28(h)-333(na)-333(ws)-1(i)-333(cos)-1(ik)-333(spr)1(a)27(wi\\246...)]TJ 0 -13.549 Td[(W)84(r\\363)-28(ci\\252a)-451(pr)1(z)-1(ed)-450(dom,)-451(ale)-451(d)1(z)-1(iew)28(c)-1(zyn)28(y)-450(ju\\273)-451(sk)28(o\\253cz)-1(y)1(\\252)-1(y)-450(z)-1(ab)1(a)28(w)27(\\246)-451(i)-450(z)-1(acz)-1(\\246\\252y)-451(si\\246)]TJ -27.879 -13.549 Td[(rozc)27(h)1(o)-28(dzi\\242,)-343(b)-27(o)-343(n)1(o)-28(c)-343(si\\246)-343(rob)1(i\\252a,)-342(\\261)-1(wiat\\252a)-342(z)-1(ap)1(alali)-342(p)-28(o)-342(domac)27(h)1(,)-343(gwiazdy)-342(si\\246)-343(te\\273)-343(k)55(a)-55(j\\261)]TJ 0 -13.55 Td[(ni)1(e)-1(k)56(a)-56(j)-332(p)-28(ok)56(az)-1(y)1(w)27(a\\252y)84(,)-333(a)-334(c)28(h\\252\\363)-28(d)-333(wiec)-1(zorn)28(y)-333(zac)-1(i)1(\\241)-28(ga\\252)-334(z)-333(p)-28(\\363l.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-334(ws)-1(zys)-1(t)1(kie)-334(k)28(ob)1(ie)-1(t)28(y)-333(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252y)-334(z)-333(m)-1(i)1(as)-1(ta,)-333(a)-333(Hank)56(a)-333(nie)-334(n)1(adj)1(e)-1(\\273d\\273a\\252a.)]TJ\nET\nendstream\nendobj\n1407 0 obj <<\n/Type /Page\n/Contents 1408 0 R\n/Resources 1406 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1406 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1412 0 obj <<\n/Length 9536      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(440)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(J\\363zk)55(a)-411(n)1(arz)-1(\\241d)1(z)-1(i)1(\\252a)-412(sut\\241)-411(wiec)-1(ze)-1(r)1(z)-1(\\246:)-411(barsz)-1(cz)-412(n)1(a)-412(k)1(ie)-1(\\252b)1(as)-1(ie)-411(i)-411(z)-1(iemniaki)-411(t\\252u)1(s)-1(to)]TJ -27.879 -13.549 Td[(omas)-1(zc)-1(zone.)-328(Zacz)-1(\\246\\252a)-328(j)1(\\241)-328(p)-27(o)-28(da)28(w)28(a\\242)-329(n)1(a)-328(\\252a)28(w)27(\\246,)-328(gd)1(y\\273)-328(Ro)-28(c)27(h)1(o)-328(cz)-1(ek)56(a\\252)-1(,)-327(dziec)-1(i)-327(je\\261)-1(\\242)-328(sk)56(am)-1(-)]TJ 0 -13.549 Td[(la\\252y)84(,)-264(a)-264(Jagn)1(a)-264(raz)-264(p)-27(o)-264(raz)-264(z)-1(agl)1(\\241da\\252a)-264(d)1(o)-264(izb)28(y)83(,)-263(kiej)-264(W)1(ite)-1(k)-263(ws)-1(u)1(n\\241\\252)-264(si\\246)-264(c)-1(ic)28(h)28(u\\261k)28(o)-264(i)-264(zaraz)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kucn\\241\\252)-288(prze)-1(d)-288(d)1(ymi\\241c)-1(y)1(m)-1(i)-288(mic)27(h)1(am)-1(i)1(.)-289(Dziwni)1(e)-289(b)28(y\\252)-289(cze)-1(rw)28(on)28(y)84(,)-289(ma\\252o)-289(j)1(ad\\252)-288(i)-289(\\252y)1(\\273)-1(k)56(\\241)]TJ 0 -13.549 Td[(p)-27(o)-334(z\\246)-1(b)1(ac)27(h)-333(d)1(z)-1(w)28(oni)1(\\252)-1(,)-333(tak)-333(m)28(u)-333(s)-1(i)1(\\246)-334(r\\246c)-1(e)-334(t)1(rz)-1(\\246s\\252)-1(y)84(,)-333(a)-333(nie)-334(d)1(o)-56(j)1(ad\\252sz)-1(y)-333(do)-333(k)28(o\\253)1(c)-1(a,)-333(p)-27(ole)-1(cia\\252.)]TJ 27.879 -13.55 Td[(Z\\252apa\\252a)-358(go)-358(J\\363zk)56(a)-358(w)-359(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-357(prze)-1(d)-357(c)27(h)1(le)-1(w)28(em)-1(,)-358(j)1(ak)-358(nab)1(iera\\252)-358(w)-358(p)-28(o\\252\\246)-358(\\261)-1(wi\\253)1(-)]TJ -27.879 -13.549 Td[(skiego)-334(\\273arcia)-333(z)-334(c)-1(ebr)1(atki,)-333(a)-333(os)-1(tr)1(o)-334(n)1(as)-1(ta)28(w)28(a\\252a:)-333(c)-1(o)-333(m)27(u)-333(si\\246)-334(sta\\252o?)]TJ 27.879 -13.549 Td[(Wyk)1(r\\246c)-1(a\\252)-333(s)-1(i\\246,)-333(jak)-333(m\\363g\\252,)-333(w)-1(y)1(c)-1(ygan)1(ia\\252,)-333(ale)-334(w)-333(k)28(o\\253cu)-333(pra)28(wd\\246)-333(p)-28(o)28(wiedzia\\252:)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(o)-28(d)1(e)-1(b)1(ra\\252em)-334(dob)1(ro)-28(d)1(z)-1(iejo)28(wi)-333(s)-1(w)28(o)-56(j)1(e)-1(go)-333(b)-27(o)-28(\\242k)55(a!)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(Mari)1(a,)-333(a)-334(n)1(ie)-334(d)1(o)-56(jr)1(z)-1(a\\252)-333(c)-1(i)1(\\246)-334(kto?)]TJ 0 -13.549 Td[({)-463(Ni)1(e)-1(,)-462(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-462(p)-27(o)-56(j)1(e)-1(c)27(h)1(ali,)-462(psy)-462(p)-28(osz)-1(\\252y)-462(\\273re)-1(\\242,)-462(a)-463(b)-27(o)-28(cie)-1(k)-462(w)-463(gan)1(ku)-462(s)-1(to)-55(ja\\252!)]TJ -27.879 -13.55 Td[(Maciu)1(\\261)-262(to)-261(wyp)1(atrzy\\252)-261(i)-261(pr)1(z)-1(yl)1(e)-1(cia\\252)-261(p)-27(o)27(wiedzie\\242)-1(!)-261(K)1(ap)-28(ot\\241)-261(P)1(ietrk)28(o)28(w)27(\\241)-261(go)-261(p)1(rzydu)1(s)-1(i)1(\\252)-1(em,)]TJ 0 -13.549 Td[(b)28(y)-472(m)-1(e)-473(n)1(ie)-473(kuj)1(n\\241\\252,)-472(i)-473(p)-27(onies)-1(\\252em)-473(do)-473(sc)27(h)1(o)28(w)-1(k)56(a.)-472(I)-1(n)1(o)-473(p)1(ary)-473(z)-473(g\\246b)28(y)-473(n)1(ie)-473(pu)1(\\261)-1(\\242,)-473(mo)-56(j)1(a)]TJ 0 -13.549 Td[(z\\252)-1(o)-27(c)-1(iu)1(\\261)-1(k)56(a!)-383(Za)-384(par\\246)-384(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l)-383(przywied\\246)-384(go)-384(d)1(o)-384(c)27(h)1(a\\252)-1(u)1(p)28(y)84(,)-384(ob)1(ac)-1(zys)-1(z,)-384(j)1(ak)-384(p)1(aro)-28(d)1(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(na)-333(gan)1(ku)-333(b)-27(\\246)-1(d)1(z)-1(ie,)-333(a)-334(n)1(ikto)-333(go)-333(przec)-1(iec)27(h)-333(n)1(ie)-334(r)1(oz)-1(p)-27(oz)-1(n)1(a.)-333(Nie)-334(wyda)-55(j)-333(me)-334(in)1(o!)]TJ 27.879 -13.549 Td[({)-305(Hale!)-304(kie)-1(j)-304(ci\\246)-305(to)-305(z)-305(c)-1(zym)-305(wyd)1(a\\252)-1(am?)-305(Dziw)-305(mi)-305(j)1(e)-1(n)1(o,)-305(\\273e)-1(\\261)-305(to)-305(si\\246)-305(w)27(a\\273y\\252,)-304(Je)-1(zu!)]TJ 0 -13.55 Td[({)-388(S)1(w)27(o)-55(je)-388(o)-28(d)1(e)-1(b)1(ra\\252e)-1(m.)-388(P)29(e)-1(d)1(z)-1(ia\\252em)-1(,)-387(c)-1(o)-387(nie)-388(d)1(a)-1(r)1(uj)1(\\246)-1(,)-387(i)-388(o)-28(d)1(e)-1(b)1(ra\\252em)-1(..)1(.)-388(P)28(o)-388(t)1(om)-389(go)]TJ -27.879 -13.549 Td[(p)-27(e)-1(wni)1(e)-288(\\252as)-1(k)56(a)28(wi\\252,)-287(\\273)-1(eb)28(y)-287(dr)1(ugie)-287(ucie)-1(c)28(h\\246)-288(mia\\252y)84(,)-287(ju)1(\\261)-1(ci!..)1(.)-287({)-288(sz)-1(epn)1(\\241\\252)-288(i)-287(p)-27(olec)-1(i)1(a\\252)-288(gd)1(z)-1(ies)-1(i)1(k)]TJ 0 -13.549 Td[(w)-253(p)-27(ole.)-253(Ni)1(e)-1(zad\\252u)1(go)-253(si\\246)-253(ja)28(wi\\252)-253(z)-252(na)28(wrotem)-253(i)-253(zasiad\\252)-252(prze)-1(d)-252(k)28(omin)1(e)-1(m)-253(wr)1(az)-253(z)-253(dzie)-1(\\242mi)]TJ 0 -13.549 Td[(do)-333(wyk)28(o\\253)1(c)-1(zania)-333(k)28(ogutk)56(a.)]TJ 27.879 -13.549 Td[(A)-298(w)-299(izbie)-298(z)-1(rob)1(i\\252o)-298(s)-1(i\\246)-299(j)1(ak)28(o\\261)-299(s)-1(enn)1(ie)-299(i)-298(sm)27(ut)1(no.)-298(Jagu\\261)-299(p)-27(osz)-1(\\252a)-298(na)-298(s)-1(w)28(o)-56(j)1(\\241)-299(stron)1(\\246)-1(,)]TJ -27.879 -13.55 Td[(za\\261)-331(Ro)-27(c)27(ho)-329(s)-1(i)1(e)-1(dzia\\252)-329(prze)-1(d)-329(d)1(om)-1(em)-330(raze)-1(m)-330(z)-330(Byli)1(c)-1(\\241,)-329(kt\\363ren)-329(ju)1(\\273)-330(\\273)-1(yd)1(y)-330(w)28(oz)-1(i)1(\\252,)-330(tak)-329(go)]TJ 0 -13.549 Td[(\\261pik)-333(morzy\\252.)]TJ 27.879 -13.549 Td[({)-333(Id\\271c)-1(ie)-333(do)-333(dom,)-333(b)-28(o)-333(tam)-334(n)1(a)-334(w)28(as)-334(cz)-1(ek)56(a)-334(p)1(an)-333(Jace)-1(k!)1({)-334(sz)-1(epn)1(\\241\\252)-334(m)28(u)-333(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[({)-454(Na)-454(m)-1(n)1(ie)-455(cz)-1(ek)56(a...)-454(p)1(an)-454(Jace)-1(k..)1(.)-454(dy\\242)-454(lec)-1(\\246...)-454(n)1(a)-455(mni)1(e)-1(?...)-454(n)1(o...)-454(n)1(o)-454({)-455(j)1(\\241k)56(a\\252)]TJ -27.879 -13.549 Td[(zdumion)29(y)83(,)-333(ca\\252)-1(k)1(ie)-1(m)-333(w)-1(y)1(trze)-1(\\271wia)28(w)-1(sz)-1(y)84(,)-333(i)-333(p)-28(osze)-1(d)1(\\252)-1(.)]TJ 27.879 -13.55 Td[(A)-489(Ro)-28(c)27(h)1(o)-490(n)1(a)-489(przy\\271bie)-489(os)-1(ta\\252,)-489(pacierz)-490(sz)-1(epta\\252,)-489(wpat)1(rz)-1(on)29(y)-489(w)-490(no)-27(c)-1(,)-489(w)-489(o)27(w)28(e)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)1(rze)-1(j)1(rz)-1(an)1(e)-309(dal)1(e)-1(k)28(o\\261c)-1(i)-308(ni)1(e)-1(b)1(a,)-309(k)56(a)-56(j)-308(si\\246)-309(a\\273)-309(tr)1(z)-1(\\246s)-1(\\252o)-308(o)-28(d)-308(gwie)-1(zdn)29(yc)27(h)-308(migot\\363)28(w,)-309(d)1(o\\252e)-1(m)]TJ 0 -13.549 Td[(za\\261)-1(,)-333(nad)-332(z)-1(iemiam)-1(i)-333(wyn)1(os)-1(i\\252)-333(si\\246)-334(ju)1(\\273)-334(sro)-28(d)1(z)-1(e)-334(r)1(ogat)28(y)-334(mies)-1(i)1(\\241c)-334(i)-333(b)-28(\\363)-27(d\\252)-333(c)-1(iemno\\261c)-1(i.)]TJ 27.879 -13.549 Td[(W)-314(c)27(ha\\252u)1(pac)27(h)-314(\\261w)-1(i)1(at\\252a)-315(gas\\252)-1(y)-314(p)-27(os)-1(ob)1(nie,)-315(ki)1(e)-1(j)-314(o)-28(cz)-1(y)-314(s)-1(n)1(e)-1(m)-315(zwie)-1(r)1(ane;)-315(milcz)-1(eni)1(e)-1(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ej\\246te)-283(cic)27(h)28(u)1(\\261)-1(k)1(im)-283(dy)1(gotaniem)-283(listec)-1(zk)28(\\363)28(w)-283(i)-282(g\\252)-1(u)1(c)27(h)28(y)1(m)-1(,)-282(dal)1(e)-1(ki)1(m)-283(b)-28(e\\252k)28(otem)-283(rze)-1(cz)-1(ki)1(,)]TJ 0 -13.55 Td[(rozlew)27(a\\252o)-287(si\\246)-287(dok)28(o\\252a.)-286(T)27(y)1(lk)28(o)-287(jesz)-1(cz)-1(e)-287(u)-286(m)-1(\\252y)1(narz\\363)28(w)-287(gorza\\252)-1(y)-286(okn)1(a)-287(i)-287(zaba)28(wiali)-286(s)-1(i)1(\\246)-288(d)1(o)]TJ 0 -13.549 Td[(p)-27(\\363\\271)-1(n)1(a.)]TJ 27.879 -13.549 Td[(W)-301(izbi)1(e)-302(Boryn)1(\\363)27(w)-301(ju)1(\\273)-302(p)1(rz)-1(y)1(c)-1(ic)28(h\\252o,)-301(spa\\242)-301(w)-1(sz)-1(y)1(s)-1(cy)-301(legli)-301(gas)-1(z\\241c)-302(\\261wiat\\252o,)-301(\\273)-1(e)-301(ino)]TJ -27.879 -13.549 Td[(k)28(o\\252o)-315(garn)1(k)28(\\363)27(w)-315(z)-315(w)-1(i)1(e)-1(cz)-1(erz\\241)-315(usta)27(wion)29(yc)27(h)-314(w)-316(k)28(omin)1(ie)-316(\\273arzy\\252y)-315(si\\246)-316(w)28(\\246)-1(gl)1(e)-1(,)-315(a)-315(\\261wie)-1(r)1(s)-1(zc)-1(z)]TJ 0 -13.549 Td[(p)-27(os)-1(kr)1(z)-1(y)1(piw)28(a\\252)-361(gd)1(z)-1(i)1(e)-1(\\261)-361(w)-360(k)56(\\241c)-1(ie,)-360(ale)-361(Ro)-27(c)27(ho)-360(w)28(c)-1(i\\241\\273)-360(s)-1(iedzia\\252)-360(na)-360(dw)28(orze)-361(o)-28(cz)-1(eku)1(j\\241c)-361(n)1(a)]TJ 0 -13.549 Td[(Hank)28(\\246,)-227(\\273)-1(e)-228(dop)1(iero)-228(k)28(o\\252o)-228(same)-1(go)-228(p)-27(\\363\\252no)-27(c)27(k)56(a)-228(zadu)1(dni)1(\\252)-1(y)-227(k)28(op)28(yt)1(a)-228(na)-227(m)-1(o\\261c)-1(i)1(e)-229(k)28(o\\252o)-227(m)-1(\\252yn)1(a)]TJ 0 -13.55 Td[(i)-333(wkr\\363tce)-334(wto)-28(cz)-1(y\\252a)-333(si\\246)-334(br)1(yk)56(a.)]TJ 27.879 -13.549 Td[(Hank)56(a)-337(b)28(y\\252a)-337(dziwni)1(e)-338(s)-1(m)28(utn)1(a)-337(i)-337(m)-1(il)1(c)-1(z\\241c)-1(a,)-337(\\273e)-338(dop)1(iero)-337(kiej)-337(z)-1(j)1(ad\\252a)-337(wie)-1(cze)-1(rz\\246)-338(i)]TJ -27.879 -13.549 Td[(par)1(ob)-28(ek)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-334(sta)-56(j)1(ni,)-333(o)-27(dw)28(a\\273)-1(y\\252)-333(s)-1(i)1(\\246)-334(p)28(yta\\242:)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(ieli\\261c)-1(i)1(e)-334(m\\246)-1(\\273a?)]TJ 0 -13.549 Td[({)-464(Ca\\252e)-464(p)-28(op)-27(o\\252ud)1(nie)-464(z)-464(ni)1(m)-465(p)1(rze)-1(siedzia\\252am)-1(!)-463(Zdro)28(wy)-464(j)1(e)-1(st)-464(i)-463(dob)1(re)-1(j)-463(m)28(y\\261)-1(l)1(i...)]TJ -27.879 -13.55 Td[(k)56(az)-1(a\\252)-301(w)28(as)-302(p)-27(oz)-1(d)1(ro)28(w)-1(i)1(\\242)-1(..)1(.)-301(I)-302(d)1(ru)1(gic)27(h)-301(c)28(h\\252op)-27(\\363)28(w)-302(te\\273)-302(wid)1(z)-1(ia\\252am...)-301(ma)-55(j\\241)-301(ic)27(h)-300(pu\\261ci\\242)-1(,)-301(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(ni)1(kto)-373(n)1(ie)-373(wie)-373(ki)1(e)-1(d)1(y)83(...)-372(U)-372(te)-1(go,)-372(co)-373(ma)-373(n)1(a)-373(s\\241dac)27(h)-372(An)28(tk)56(a)-372(bron)1(i\\242,)-373(te\\273)-373(b)28(y\\252am...)-372(Nie)]TJ\nET\nendstream\nendobj\n1411 0 obj <<\n/Type /Page\n/Contents 1412 0 R\n/Resources 1410 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1410 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1415 0 obj <<\n/Length 9923      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(441)]TJ -358.232 -35.866 Td[(m\\363)27(wi\\252a)-334(tego,)-334(co)-334(jej)-334(k)56(amieniem)-335(zaci\\246)-1(\\273y\\252o)-334(n)1(a)-334(s)-1(ercu,)-334(a)-334(j)1(e)-1(n)1(o)-334(takie)-334(r\\363\\273no\\261c)-1(i)-333(dru)1(gie,)]TJ 0 -13.549 Td[(An)28(tk)56(a)-319(si\\246)-319(nie)-319(t)28(ycz)-1(\\241ce)-1(,)-318(a\\273)-320(r)1(oz)-1(p)1(\\252)-1(ak)56(a\\252a)-319(si\\246)-319(nagle,)-319(i)-319(c)28(ho)-28(\\242)-319(pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252a)-319(t)28(w)27(arz)-319(r\\246k)28(oma,)]TJ 0 -13.549 Td[(\\252z)-1(y)-333(p)-27(o)-28(cie)-1(k)1(\\252y)-334(p)1(rze)-1(z)-333(palce)-1(.)]TJ 27.879 -13.549 Td[({)-351(Pr)1(z)-1(y)1(jd\\246)-351(ran)1(o...)-351(o)-27(dp)-27(o)-28(c)-1(zni)1(jcie)-352(sobi)1(e)-1(:)-351(strz\\241\\261)-1(l)1(i\\261)-1(cie)-351(s)-1(i)1(\\246)-352(mo)-28(cno...)-350(b)28(y)-351(w)28(am)-352(n)1(ie)]TJ -27.879 -13.549 Td[(zas)-1(zk)28(o)-28(dzi\\252o.)]TJ 27.879 -13.55 Td[({)-333(A)-334(n)1(iec)27(h)28(b)28(y)1(m)-334(ju)1(\\273)-334(raz)-334(zdec)27(h)1(\\252a)-334(i)-333(wi\\246c)-1(ej)-333(ni)1(e)-334(c)-1(i)1(e)-1(r)1(pia\\252a!)-333({)-333(w)-1(y)1(buc)28(hn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[(P)28(oki)1(w)27(a\\252)-427(g\\252o)28(w)27(\\241)-427(i)-426(w)-1(y)1(ni\\363s\\252)-427(s)-1(i)1(\\246)-428(b)-27(e)-1(z)-427(s\\252o)27(w)28(a,)-427(j)1(e)-1(n)1(o)-427(przed)-427(c)27(h)1(a\\252up)1(\\241)-427(pies)-1(k)1(i)-427(c)-1(osik)]TJ -27.879 -13.549 Td[(rozs)-1(zcz)-1(ek)55(an)1(e)-334(gni)1(e)-1(wni)1(e)-334(pr)1(z)-1(ycisz)-1(a\\252)-333(do)-333(bu)1(dy)-333(zap)-28(\\246dza)-56(j)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[(Ale)-420(Hank)56(a,)-420(c)28(ho)-28(\\242)-420(si\\246)-420(z)-1(arn)1(o)-420(d)1(o)-420(dzie)-1(ci)-420(p)1(rzy\\252o\\273)-1(y)1(\\252)-1(a,)-419(usn\\241\\242)-420(ni)1(e)-421(mog\\252a)-420(mim)-1(o)]TJ -27.879 -13.549 Td[(ut)1(rud)1(z)-1(eni)1(a)-1(.)-363(Jak\\273e)-1(!)1(...)-364(t)1(o)-28(\\242)-364(An)28(te)-1(k)-363(j\\241)-364(p)1(rzyj\\241\\252)-363(kiej)-364(tego)-364(psa)-364(u)1(przykr)1(z)-1(on)1(e)-1(go.)1(..)-364(\\221)1(w)-1(i)1(\\246)-1(-)]TJ 0 -13.549 Td[(cone)-399(ze)-399(s)-1(makiem)-399(jad)1(\\252,)-399(te)-399(k)1(ilk)56(ana\\261c)-1(i)1(e)-399(z)-1(\\252ot)28(yc)28(h)-399(wzi\\241\\252,)-398(nie)-399(p)28(y)1(ta)-56(j)1(\\241c)-1(,)-398(s)-1(k)56(\\241d)-398(mia\\252a,)-398(i)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-333(si\\246)-334(n)1(ie)-334(u\\273ali\\252)-333(nad)-333(j)1(e)-1(j)-332(um\\246)-1(cz)-1(eni)1(e)-1(m)-334(d)1(alek)55(\\241)-333(dr)1(og\\241!...)]TJ 27.879 -13.549 Td[(Op)-27(o)28(w)-1(i)1(ada\\252a)-225(m)27(u)1(,)-225(co)-225(i)-225(j)1(ak)-225(s)-1(i)1(\\246)-226(r)1(obi)-225(w)-225(gosp)-28(o)-27(darce)-225({)-225(nie)-225(p)-27(o)-28(c)27(h)28(w)28(ali\\252,)-225(a)-224(napr)1(z)-1(ec)-1(i)1(w)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-449(z)-1(e)-450(z)-1(\\252o\\261c)-1(i)1(\\241)-450(przygan)1(ia\\252...)-450(O)-449(c)-1(a\\252\\241)-450(wie\\261)-451(r)1(oz)-1(p)29(yt)28(yw)27(a\\252,)-449(a)-450(o)-450(dziec)-1(iac)28(h)-450(n)1(i)]TJ 0 -13.549 Td[(ws)-1(p)-27(omnia\\252..)1(.)-398(S)1(z)-1(\\252a)-398(k)1(u)-398(n)1(iem)27(u)-397(z)-398(t)27(y)1(m)-398(s)-1(erce)-1(m)-398(wiern)28(y)1(m)-399(i)-397(k)28(o)-28(c)28(ha)-56(j)1(\\241c)-1(y)1(m)-1(,)-397(ut\\246sknion)1(a)]TJ 0 -13.549 Td[(wielc)-1(e)-281(\\252ask)-281(j)1(e)-1(go;)-280(\\273)-1(on)1(\\241)-281(m)27(u)-280(p)1(rz)-1(ecie)-1(c)28(h)-281(\\261lu)1(bn)1(\\241)-281(b)28(y\\252a)-281(i)-280(matk)56(\\241)-281(jego)-281(d)1(z)-1(iec)-1(i)1(,)-281(to)-280(jej)-281(n)1(a)28(w)27(et)]TJ 0 -13.55 Td[(ni)1(e)-401(p)1(rzyho\\252u)1(bi\\252,)-400(n)1(ie)-400(p)-28(o)-27(c)-1(a\\252o)28(w)27(a\\252,)-399(nie)-400(z)-1(atr)1(os)-1(k)56(a\\252)-400(si\\246)-401(o)-399(jej)-400(zdro)28(wie...)-400(K)1(ie)-1(j)-399(ob)-27(c)-1(y)-400(si\\246)]TJ 0 -13.549 Td[(widzia\\252)-308(i)-308(ki)1(e)-1(j)-307(na)-308(ob)-27(c)-1(\\241)-308(sobie)-308(sp)-28(ogl\\241d)1(a\\252,)-308(ni)1(e)-309(b)1(ardzo)-308(s)-1(\\252u)1(c)27(h)1(a)-56(j\\241c)-308(jej)-308(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\253)1(,)-308(\\273)-1(e)]TJ 0 -13.549 Td[(ju)1(\\273)-260(w)-260(k)28(o\\253cu)-259(i)-259(m)-1(\\363)28(wi\\242)-260(ni)1(e)-260(m)-1(og\\252a,)-259(\\273)-1(al)-259(j\\241)-259(du)1(s)-1(i)1(\\252)-1(,)-259(\\252zy)-260(zalew)27(a\\252y)84(,)-260(to)-259(jes)-1(zc)-1(ze)-260(krzykn)1(\\241\\252,)-260(b)29(y)]TJ 0 -13.549 Td[(m)27(u)-353(z)-355(b)-28(ek)56(am)-1(i)-354(n)1(ie)-355(p)1(rzyje\\273)-1(d)1(\\273)-1(a\\252a!)-354(Jez)-1(u)1(s)-355(k)28(o)-28(c)28(han)28(y)84(,)-354(dziw,)-354(\\273)-1(e)-355(tr)1(up)-27(e)-1(m)-354(nie)-354(pad)1(\\252)-1(a.)1(..)-354(T)83(o)]TJ 0 -13.549 Td[(za)-330(t\\246)-330(ci\\246\\273)-1(k)56(\\241)-330(s\\252u\\273b)-28(\\246)-329(k)28(ole)-330(jego)-330(d)1(obra,)-329(za)-330(p)1(rac\\246)-330(nad)-329(si\\252y)83(,)-329(za)-330(te)-330(cie)-1(r)1(pieni)1(a)-330(wsz)-1(y\\242kie)]TJ 0 -13.55 Td[({)-333(nic)-333(w)-334(zap\\252ac)-1(i)1(e)-1(:)-333(ni)-333(j)1(e)-1(d)1(nego)-334(s\\252o)28(w)27(a)-333(\\252as)-1(k)1(i,)-333(ni)-333(jedn)1(e)-1(go)-333(s\\252)-1(o)28(w)28(a)-334(p)-27(o)-28(ciec)27(h)28(y!)]TJ 27.879 -13.549 Td[({)-471(Je)-1(zu,)-471(w)28(e)-1(j)1(rzyj)-471(mi\\252o\\261)-1(ciwie,)-471(w)-1(sp)-27(om)-1(\\363\\273,)-471(b)-28(o)-471(n)1(ie)-472(zdzie)-1(r)1(\\273)-1(\\246!)-471({)-472(j)1(\\246)-1(cza\\252)-1(a)-471(cis)-1(n)1(\\241c)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\246)-302(w)-302(p)-28(o)-27(duszki,)-302(b)29(yc)27(h)-301(dzie)-1(ci)-302(n)1(ie)-302(roz)-1(b)1(ud)1(z)-1(i\\242,)-302(a)-302(k)56(a\\273da)-302(k)28(ostk)56(a)-302(w)-302(niej)-302(z)-302(osobna)-301(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252a)-426(p\\252ak)56(aniem,)-426(\\273)-1(a\\252o\\261c)-1(i\\241,)-426(p)-27(oni)1(\\273)-1(eniem)-427(i)-426(strasz)-1(n)29(ym)-427(p)-27(o)-28(cz)-1(u)1(c)-1(iem)-427(k)1(rz)-1(y)1(w)-1(d)1(y!)-426(Nie)]TJ 0 -13.549 Td[(mog\\252a)-318(sobie)-318(p)-27(opu)1(\\261)-1(ci\\242)-318(d)1(usz)-1(y)-317(tam)-318(p)1(rz)-1(y)-317(n)1(im)-318(ni)-317(p)-27(ote)-1(m)-317(z)-318(p)-28(o)28(wrotem)-318(pr)1(z)-1(y)-317(lu)1(dziac)27(h)1(,)]TJ 0 -13.55 Td[(wi\\246c)-262(teraz)-261(d)1(opiero)-261(o)-27(dda)28(w)28(a\\252a)-261(si\\246)-261(roz)-1(p)1(ac)-1(zy)84(,)-261(teraz)-261(p)-28(ozw)28(ala\\252a)-261(m\\246)-1(ce)-261(roz)-1(d)1(z)-1(i)1(e)-1(ra\\242)-261(se)-1(r)1(c)-1(e)]TJ 0 -13.549 Td[(i)-333(\\252z)-1(om)-333(gorz)-1(k)1(im)-334(p)1(\\252yn\\241\\242.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Za\\261)-395(naza)-56(j)1(utr)1(z)-1(,)-394(w)-395(\\261)-1(wi\\241tecz)-1(n)28(y)-394(p)-27(oniedzia\\252e)-1(k)1(,)-395(d)1(z)-1(ie\\253)-394(s)-1(i)1(\\246)-396(p)-27(o)-28(d)1(nosi\\252)-395(j)1(e)-1(sz)-1(cz)-1(e)-395(j)1(a-)]TJ -27.879 -13.549 Td[(\\261niejsz)-1(y)84(,)-437(b)1(arze)-1(j)-436(jeno)-437(sk)56(\\241)-28(pan)29(y)-437(w)-437(rosac)27(h)-436(i)-437(mo)-28(d)1(ra)28(wyc)27(h)-436(om)-1(gl)1(e)-1(n)1(iac)27(h)1(,)-437(ale)-437(i)-436(barze)-1(j)]TJ 0 -13.55 Td[(rozs)-1(\\252on)1(e)-1(cz)-1(n)1(ion)28(y)-316(i)-315(jaki)1(\\261)-317(zgo\\252a)-316(w)27(es)-1(els)-1(zy)84(.)-316(Ptak)1(i)-316(\\261)-1(p)1(iew)27(a\\252y)-316(r)1(o)-1(zg\\252o\\261)-1(n)1(iej,)-316(a)-316(ciep\\252y)-316(wia-)]TJ 0 -13.549 Td[(ter)-423(pr)1(z)-1(egania\\252)-423(p)-27(o)-423(dr)1(z)-1(ewinac)28(h,)-423(\\273e)-424(sz)-1(emra\\252y)-423(jak)1(b)28(y)-423(pacierze)-1(m)-423(c)-1(i)1(c)27(h)28(u)1(\\261)-1(ki)1(m)-1(;)-423(l)1(ud)1(z)-1(ie)]TJ 0 -13.549 Td[(zryw)28(ali)-348(s)-1(i\\246)-349(r)1(a\\271)-1(n)1(ie)-1(j)-348(wywiera)-55(j\\241c)-349(d)1(rz)-1(wi)-348(a)-349(ok)1(na,)-348(na)-348(\\261)-1(wiat)-348(B)-1(o\\273y)-348(le)-1(cieli)-348(s)-1(p)-27(o)-56(j)1(rze)-1(\\242,)-349(n)1(a)]TJ 0 -13.549 Td[(sady)-439(p)1(rzytrz\\241\\261)-1(n)1(i\\246te)-439(z)-1(ieleni\\241,)-438(na)-439(t)1(e)-440(n)1(ieob)-56(j)1(\\246)-1(te)-439(ziem)-1(ie)-439(zwie)-1(sn\\241)-438(oprz\\246)-1(d)1(z)-1(on)1(e)-1(,)-438(c)-1(a\\252e)]TJ 0 -13.549 Td[(rosami)-295(s)-1(kr)1(z)-1(\\241ce)-1(,)-295(w)-295(s\\252o\\253cu)-295(rad)1(os)-1(n)28(y)1(m)-296(u)1(topion)1(e)-1(,)-295(n)1(a)-295(p)-28(ol)1(a,)-295(k)56(a)-56(j)-295(j)1(u\\273)-295(oz)-1(imin)29(y)83(,)-295(wiatr)1(e)-1(m)]TJ 0 -13.549 Td[(k)28(oleban)1(e)-1(,)-333(ni)1(b)28(y)-333(p\\252o)28(w)27(e,)-333(p)-27(om)-1(ar)1(s)-1(zc)-1(zone)-334(w)28(o)-28(d)1(y)-334(k)1(u)-333(c)27(h)1(a\\252)-1(u)1(p)-27(om)-334(s)-1(p)1(\\252yw)28(a\\252)-1(y)84(.)]TJ 27.879 -13.55 Td[(My)1(li)-319(si\\246)-319(prze)-1(d)-318(d)1(om)-1(ami,)-319(p)1(rze)-1(k)1(rz)-1(y)1(ki)-319(si\\246)-319(nies)-1(\\252y)-318(w)-1(skr)1(o\\261)-320(sad\\363)28(w,)-319(k)56(a)-56(j)1(\\261)-319(ju\\273)-319(d)1(ym)]TJ -27.879 -13.549 Td[(w)28(ali\\252)-354(z)-354(k)28(omina,)-353(k)28(onie)-354(r)1(\\273)-1(a\\252y)-353(p)-28(o)-353(s)-1(ta)-55(jn)1(iac)27(h)1(,)-354(skrzypi)1(a\\252)-1(y)-353(wierz)-1(eje,)-354(w)28(o)-28(d)1(\\246)-354(c)-1(ze)-1(r)1(pali)-353(z)-1(e)]TJ 0 -13.549 Td[(sta)27(wu)1(,)-384(b)28(yd)1(\\252o)-384(s)-1(z\\252o)-384(do)-384(p)1(ic)-1(i)1(a,)-384(krzycz)-1(a\\252y)-383(g\\246)-1(si,)-384(a)-384(ki)1(e)-1(j)-383(dzw)27(on)28(y)-383(ud)1(e)-1(rzy\\252y)-384(i)-383(ogromne,)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(os)-1(i)1(\\246)-1(\\273ne)-374(g\\252os)-1(y)-373(j\\246\\252y)-374(h)28(u)1(c)-1(ze)-1(\\242)-374(i)-374(r)1(oz)-1(lew)27(a\\242)-374(si\\246)-374(na)-374(wie\\261)-1(,)-373(na)-374(p)-27(ola,)-374(n)1(a)-374(b)-27(ory)-374(d)1(alekie,)]TJ 0 -13.549 Td[(wz)-1(mog\\252y)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(kr)1(z)-1(yk)1(i,)-333(a)-334(serc)-1(a)-333(\\273ywie)-1(j)-333(i)-333(w)28(e)-1(sele)-1(j)-333(zabi)1(\\252y)83(.)]TJ 27.879 -13.55 Td[(Ch\\252op)1(aki)-367(j)1(u\\273)-367(l)1(a)-1(t)1(a\\252)-1(y)-366(z)-367(sik)56(a)27(wk)56(ami,)-366(s)-1(p)1(ra)28(w)-1(i)1(a)-56(j)1(\\241c)-367(s)-1(obi)1(e)-367(\\261)-1(migu)1(s)-1(,)-366(alb)-27(o)-367(p)1(rz)-1(y)1(c)-1(za-)]TJ -27.879 -13.549 Td[(jon)1(e)-351(za)-350(drzew)27(ami)-350(nad)-350(sta)28(w)27(em,)-350(la\\252y)-350(ni)1(e)-351(t)28(ylk)28(o)-350(p)1(rz)-1(ec)27(h)1(o)-28(dz\\241c)-1(y)1(c)27(h,)-349(ale)-351(k)56(a\\273)-1(d)1(e)-1(go,)-349(kto)]TJ\nET\nendstream\nendobj\n1414 0 obj <<\n/Type /Page\n/Contents 1415 0 R\n/Resources 1413 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1413 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1418 0 obj <<\n/Length 9997      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(442)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(in)1(o)-284(na)-283(pr)1(\\363g)-284(wyjr)1(z)-1(a\\252,)-283(\\273)-1(e)-284(j)1(u\\273)-284(na)28(w)28(e)-1(t)-283(\\261)-1(cian)28(y)-283(b)28(y\\252y)-283(p)-28(omo)-28(cz)-1(on)1(e)-284(i)-284(k)56(a\\252u\\273e)-284(s)-1(iwi\\252y)-283(s)-1(i)1(\\246)-284(p)-28(o)-28(d)]TJ 0 -13.549 Td[(domami.)]TJ 27.879 -13.549 Td[(Za)28(w)-1(r)1(z)-1(a\\252y)-285(ws)-1(zys)-1(t)1(kie)-286(dr)1(ogi)-286(i)-285(ob)-28(ej\\261cia,)-286(wrzaski,)-285(\\261)-1(miec)27(h)28(y)84(,)-286(p)1(rze)-1(gon)28(y)-285(nar)1(as)-1(ta\\252y)]TJ -27.879 -13.549 Td[(coraz)-398(barzej,)-398(b)-27(o)-398(i)-397(dzie)-1(u)1(c)27(h)28(y)-397(gz)-1(i)1(\\252y)-398(si\\246)-399(n)1(iez)-1(gor)1(z)-1(ej,)-397(le)-1(j)1(\\241c)-398(s)-1(i\\246)-398(mi\\246)-1(d)1(z)-1(y)-397(s)-1(ob)1(\\241)-398(i)-397(gania-)]TJ 0 -13.549 Td[(j\\241c)-367(p)-27(o)-367(s)-1(ad)1(ac)27(h,)-366(\\273)-1(e)-367(z)-1(a\\261)-367(ic)27(h)-366(du)1(\\273)-1(o)-367(b)29(y\\252o)-367(i)-367(dor)1(os)-1(\\252yc)28(h,)-367(to)-367(wn)1(e)-1(t)-367(d)1(a\\252y)-367(rad)1(\\246)-368(c)27(h)1(\\252opak)28(om)]TJ 0 -13.55 Td[(rozgani)1(a)-56(j\\241c)-281(ic)27(h)-281(n)1(a)-282(wsz)-1(ystkie)-281(s)-1(tr)1(on)28(y)83(,)-281(a)-281(tak)-281(s)-1(i\\246)-281(roz)-1(sw)28(a)27(w)28(olil)1(i,)-281(\\273)-1(e)-282(n)1(a)27(w)28(et)-282(Ja\\261k)56(a)-282(P)1(rze)-1(-)]TJ 0 -13.549 Td[(wrotn)1(e)-1(go,)-244(kt\\363ren)-244(s)-1(i)1(\\246)-245(z)-245(s)-1(ik)56(a)28(wk)55(\\241)-244(o)-28(d)-244(gas)-1(ze)-1(n)1(ia)-244(p)-28(o\\273ar\\363)28(w)-245(zac)-1(za)-56(j)1(a\\252)-245(na)-244(Nas)-1(tk)28(\\246,)-245(d)1(opad)1(\\252y)]TJ 0 -13.549 Td[(Balc)-1(erk)28(\\363)28(wn)28(y)84(,)-333(w)27(o)-28(d)1(\\241)-334(zla\\252y)-333(i)-333(jes)-1(zc)-1(ze)-334(d)1(o)-334(sta)28(wu)-333(z)-1(ep)-28(c)28(hn)1(\\246)-1(\\252y)-333(na)-333(p)-27(o\\261)-1(miew)-1(i)1(s)-1(k)28(o..)1(.)]TJ 27.879 -13.549 Td[(Ale)-315(ozgniew)28(an)28(y)-315(za)-315(d)1(e)-1(sp)-27(e)-1(kt,)-314(i\\273)-315(to)-314(dzieuc)27(h)29(y)-315(g\\363r)1(\\246)-315(nad)-314(ni)1(m)-315(wz)-1(i\\246\\252y)83(,)-314(pr)1(z)-1(yzw)28(a\\252)]TJ -27.879 -13.549 Td[(w)-355(p)-28(omo)-28(c)-355(Pietrk)56(a)-355(Boryn)1(o)28(w)27(ego)-355(i)-355(tak)-355(si\\246)-356(zm)27(y)1(\\261)-1(ln)1(ie)-356(zasadzili)-355(n)1(a)-355(Na)-1(stk)28(\\246,)-355(a\\273)-356(j)1(\\241)-355(do-)]TJ 0 -13.549 Td[(stali)-388(w)-389(p)1(az)-1(u)1(ry)-388(i)-388(p)-28(o)-27(d)-388(s)-1(tu)1(dn)1(i\\246)-389(za)27(wlekli)1(,)-389(a)-388(tak)-388(sro)-28(d)1(z)-1(e)-389(sp\\252a)28(wili,)-388(j)1(a\\273)-1(e)-388(w)-1(n)1(ieb)-28(og\\252osy)]TJ 0 -13.55 Td[(wrze)-1(sz)-1(cz)-1(a\\252a.)1(..)-349(Za\\261)-350(p)-27(ote)-1(m,)-349(d)1(obra)28(wsz)-1(y)-349(j)1(e)-1(sz)-1(cz)-1(e)-349(Witk)56(a,)-349(G)1(ulb)1(as)-1(iak)56(a)-349(i)-349(co)-349(s)-1(tar)1(s)-1(zyc)27(h)1(,)]TJ 0 -13.549 Td[(c)27(h)29(yc)-1(i)1(li)-335(Mary)1(s)-1(i\\246)-335(B)-1(alce)-1(r)1(k)28(\\363)28(w)-1(n)1(\\246)-336(i)-335(tak)56(\\241)-336(j)1(e)-1(j)-334(k)55(\\241)-27(piel)-335(s)-1(p)1(ra)28(wili,)-335(a\\273)-336(matk)56(a)-336(z)-335(kij)1(e)-1(m)-336(l)1(e)-1(cia\\252a)]TJ 0 -13.549 Td[(na)-322(p)-27(om)-1(o)-28(c;)-322(przyp)1(arli)-322(te)-1(\\273)-323(gd)1(z)-1(ie\\261)-323(Jagn)1(\\246)-324(i)-322(t\\246go)-323(u)1(t)27(y)1(t\\252ali,)-322(na)28(w)27(et)-322(J\\363z)-1(ce)-323(nie)-323(p)1(rze)-1(p)1(usz)-1(-)]TJ 0 -13.549 Td[(cz)-1(a)-55(j\\241c,)-334(c)28(ho)-28(\\242)-333(s)-1(i\\246)-333(prosi\\252a)-333(i)-333(z)-334(b)-28(ekiem)-334(l)1(e)-1(cia\\252a)-334(n)1(a)-333(s)-1(k)56(arg\\246)-334(d)1(o)-334(Han)1(ki.)]TJ 27.879 -13.549 Td[({)-333(Sk)56(ar\\273y)-333(s)-1(i\\246,)-333(a)-333(rada,)-333(o)-28(cz)-1(y)-333(si\\246)-334(j)1(e)-1(j)-333(skr)1(z)-1(\\241)-333(do)-333(\\014gl)1(\\363)27(w!)]TJ 0 -13.55 Td[({)-353(A)-353(i)-353(m)-1(n)1(ie)-354(zap)-27(o)27(wietrzone)-353(do)-353(\\273yw)27(ej)-353(sk)28(\\363ry)-353(d)1(o)-56(j)1(\\246)-1(\\252y!{)-353(u)1(\\273)-1(ala\\252a)-353(si\\246)-354(w)28(e)-1(so\\252o)-353(Ja-)]TJ -27.879 -13.549 Td[(gust)28(yn)1(k)55(a)-333(wpad)1(a)-56(j)1(\\241)-1(c)-333(do)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(.)]TJ 27.879 -13.549 Td[({)-302(Nib)29(y)-302(te)-302(ob)28(wies)-1(ie)-302(k)28(om)27(u)-301(p)1(rz)-1(epu)1(s)-1(zc)-1(za)-56(j)1(\\241!)-302({)-302(b)1(iad)1(oli\\252a)-302(J\\363zk)55(a)-301(prze)-1(w\\252\\363)-28(cz)-1(\\241c)-302(si\\246)]TJ -27.879 -13.549 Td[(w)-361(s)-1(u)1(c)27(he)-361(s)-1(zm)-1(at)28(y)84(,)-361(ale)-362(mimo)-361(s)-1(tr)1(ac)27(h)28(u)-361(wysz)-1(\\252a)-361(p)-27(ote)-1(m)-361(na)-361(ganek,)-361(b)-27(o)-361(a\\273)-362(du)1(dn)1(ia\\252o)-362(n)1(a)]TJ 0 -13.549 Td[(dr)1(ogac)27(h)-339(o)-28(d)-339(p)1(rz)-1(egani)1(a\\253)-340(i)-339(wie\\261)-340(s)-1(i\\246)-340(t)1(rz)-1(\\246s\\252)-1(a)-339(wrzas)-1(k)56(ami:)-340(c)28(h\\252opak)1(i)-340(d)1(z)-1(i)1(w)-340(nie)-340(oszala\\252y)]TJ 0 -13.55 Td[(z)-348(u)1(c)-1(i)1(e)-1(c)28(h)28(y)83(,)-347(c)28(ho)-28(d)1(z)-1(i)1(li)-347(c)-1(a\\252\\241)-347(h)28(u)1(rm\\241,)-347(z)-1(agan)1(ia)-55(j\\241c,)-347(kto)-347(s)-1(i)1(\\246)-348(nap)1(ato)-28(cz)-1(y)1(\\252)-1(,)-346(p)-28(o)-28(d)-346(s)-1(ik)56(a)28(wki,)-347(a\\273)]TJ 0 -13.549 Td[(so\\252)-1(t)28(y)1(s)-292(m)27(u)1(s)-1(i)1(a\\252)-292(r)1(oz)-1(gan)1(ia\\242)-292(sw)28(a)27(w)28(oln)1(ik)28(\\363)28(w)-1(,)-291(b)-27(o)-291(n)1(ie)-292(sp)-28(os\\363b)-291(si\\246)-291(b)28(y\\252o)-291(p)-28(ok)56(aza\\242)-292(z)-291(c)27(h)1(a\\252)-1(u)1(p)28(y)84(.)]TJ 27.879 -13.549 Td[({)-349(W)83(ama)-349(c)-1(osik)-349(ni)1(e)-1(zdro)28(w)28(o)-349(p)-28(o)-349(w)27(czora)-56(j)1(s)-1(zym?)-350({)-349(sz)-1(epn)1(\\246)-1(\\252a)-349(Jagust)28(ynk)56(a)-349(s)-1(u)1(s)-1(z\\241c)]TJ -27.879 -13.549 Td[(pl)1(e)-1(cy)-333(przed)-333(k)28(om)-1(i)1(ne)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)1(rz)-1(\\246sie)-334(si\\246)-334(w)28(e)-334(m)-1(n)1(ie)-334(i)-333(ci\\246)-1(gi)1(e)-1(m)-333(m)-1(e)-334(k)28(op)1(ie,)-333(m)-1(gli)-333(me)-334(p)1(rz)-1(y)-333(t)28(ym..)1(.)]TJ 0 -13.55 Td[({)-265(P)28(o\\252\\363\\273c)-1(i)1(e)-266(si\\246.)-265(T)83(rze)-1(b)1(a)-265(b)28(y)-265(si\\246)-265(w)27(am)-265(n)1(api\\242)-265(mac)-1(i\\363r)1(k)28(o)27(w)28(ego)-265(nap)1(aru!)-264(Strz\\246\\261)-1(li)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(si\\246)-427(w)27(cz)-1(or)1(a)-56(j)1(!)-427({)-426(z)-1(af)1(raso)27(w)28(a\\252a)-427(si\\246)-427(bar)1(dzo,)-427(al)1(e)-427(\\273)-1(e)-427(zapac)27(h)1(n\\246\\252a)-427(ki)1(s)-1(zk)55(a)-426(pr)1(z)-1(ysma\\273)-1(on)1(a,)]TJ 0 -13.549 Td[(siad\\252a)-333(wraz)-334(z)-334(d)1(rugi)1(m)-1(i)-333(d)1(o)-334(\\261ni)1(adani)1(a,)-333(\\252)-1(ak)28(omie)-333(w)-1(yp)1(atru)1(j\\241c)-334(wi\\246ksz)-1(ego)-333(k)55(a)28(w)28(a\\252k)55(a.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-56(j)1(e)-1(d)1(z)-1(cie)-334(i)-333(wy)84(,)-334(gosp)-27(o)-28(dyn)1(i:)-333(g\\252o)-28(d)1(z)-1(eniem)-334(zdr)1(o)27(wiu)-333(n)1(ie)-334(p)-27(omo\\273)-1(e...)]TJ 0 -13.549 Td[({)-333(Kiej)-333(m)-1(i)-333(si\\246)-334(mierzi)-333(m)-1(i\\246s)-1(o;)-333(ar)1(bat)28(y)-333(s)-1(e)-333(z)-1(gotu)1(j\\246.)]TJ 0 -13.55 Td[({)-271(Na)-272(pr)1(z)-1(ep\\252u)1(k)55(an)1(ie)-272(\\015)1(ak)28(\\363)27(w)-271(niez)-1(gor)1(s)-1(ze)-1(,)-271(ale)-272(b)29(y\\261)-1(cie)-272(si\\246)-272(gorza\\252ki)-271(przegoto)27(w)28(anej)]TJ -27.879 -13.549 Td[(z)-334(t\\252u)1(s)-1(to\\261c)-1(i)1(\\241)-334(i)-333(k)28(orzeniami)-333(nap)1(ili,)-333(r)1(yc)27(h)1(le)-1(j)-333(b)29(y)-333(p)-28(omog\\252o...)]TJ 27.879 -13.549 Td[({)-338(Ju)1(\\261)-1(ci,)-338(zm)-1(ar)1(lak)56(a)-338(b)28(y)-338(p)-27(os)-1(ta)28(wi\\252y)-338(taki)1(e)-339(leki!)1(...)-338({)-338(za\\261)-1(mia\\252)-338(s)-1(i)1(\\246)-339(P)1(ie)-1(t)1(re)-1(k)1(,)-338(kt\\363ren)]TJ -27.879 -13.549 Td[(wz)-1(i)1(\\241\\252)-417(miejsc)-1(e)-416(k)28(ole)-417(Jagu)1(s)-1(i)1(,)-416(w)-417(o)-27(c)-1(zy)-416(jej)-416(zagl\\241da\\252)-416(p)-27(o)-28(da)-55(j\\241c)-416(us\\252u\\273liwie,)-416(na)-416(co)-417(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(sp)-28(o)-55(jrza\\252a,)-325(i)-325(ci\\246)-1(gi)1(e)-1(m,)-325(j\\241)-325(zagadu)1(j\\241c,)-325(ale)-326(\\273e)-326(go)-325(zb)28(yw)28(a\\252)-1(a)-325(b)-27(e)-1(l)1(e)-326(cz)-1(ym,)-325(j)1(\\241\\252)-326(r)1(oz)-1(p)28(y)1(t)28(yw)27(a\\242)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)28(\\246)-334(o)-333(Mate)-1(u)1(s)-1(za,)-333(o)-333(Stac)27(h)1(a)-333(P\\252os)-1(zk)28(\\246)-334(i)-333(d)1(rugic)28(h.)]TJ 27.879 -13.55 Td[({)-306(Jak\\273e)-1(,)-306(wid)1(z)-1(ia\\252am)-306(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h,)-306(sp)-27(\\363lni)1(e)-307(s)-1(e)-306(s)-1(iedz\\241,)-306(a)-306(p)-28(ok)28(o)-55(je)-307(ma)-56(j)1(\\241)-306(dw)28(ors)-1(k)1(ie)]TJ -27.879 -13.549 Td[(zgo\\252)-1(a,)-264(wysokie,)-265(wid)1(ne,)-264(z)-265(p)-28(o)-27(d\\252og\\241,)-264(jeno)-264(\\273)-1(e)-265(z)-265(t)1(\\241)-265(\\273e)-1(lazn\\241)-264(pa)-55(j\\246c)-1(zyn)1(\\241)-265(w)-265(ok)1(nac)27(h)1(,)-264(b)28(yc)27(h)]TJ 0 -13.549 Td[(si\\246)-278(im)-278(na)-277(s)-1(p)1(ac)-1(er)-277(nie)-278(zac)27(h)1(c)-1(ia\\252o.)-277(A)-278(p)1(rze)-1(k)56(armia)-55(j\\241)-277(ic)27(h)-277(te\\273)-278(niez)-1(gor)1(z)-1(ej.)-277(Gro)-27(c)27(h\\363)28(wk)28(\\246)-278(im)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nie\\261)-1(l)1(i)-300(w)-299(p)-28(o\\252edn)1(ie,)-300(spr)1(\\363b)-28(o)28(w)28(a\\252am)-1(:)-299(ki)1(e)-1(b)28(y)-299(n)1(a)-300(stary)1(m)-300(bu)1(c)-1(ie)-299(z)-1(goto)28(w)28(ana)-299(i)-299(s)-1(maro-)]TJ 0 -13.549 Td[(wid\\252em)-299(o)-28(d)-298(w)28(oz)-1(a)-298(omas)-1(zc)-1(zona.)-298(Na)-298(dr)1(ugie)-299(za\\261)-299(p)1(ra\\273)-1(on)29(yc)27(h)-298(j)1(agie)-1(\\252)-298(im)-299(p)-27(osta)27(wil)1(i...)-298(n)1(o,)]TJ 0 -13.55 Td[(\\212apa)-261(b)29(y)-261(kul)1(as)-262(n)1(a)-261(nie)-261(p)-28(o)-27(dni)1(\\363s)-1(\\252,)-261(a)-261(n)1(ie)-262(p)-27(o)28(w)27(\\241c)28(ha\\252)-261(na)28(w)28(e)-1(t.)-260(Za)-262(sw)28(o)-56(je)-261(si\\246)-262(\\273ywi\\241,)-261(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(za\\261)-334(nie)-333(m)-1(a)-333(grosz)-1(a,)-333(p)1(ac)-1(ierze)-1(m)-333(s)-1(e)-333(to)-334(j)1(ad\\252o)-333(dop)1(ra)28(w)-1(i)1(a)-334({)-333(op)-27(o)27(wiad)1(a\\252a)-334(u)1(r\\241)-28(gl)1(iwie)-1(.)]TJ\nET\nendstream\nendobj\n1417 0 obj <<\n/Type /Page\n/Contents 1418 0 R\n/Resources 1416 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1416 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1421 0 obj <<\n/Length 8993      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(443)]TJ -330.353 -35.866 Td[({)-333(Ryc)27(h)1(\\252)-1(o)-333(zac)-1(zn\\241)-333(pu)1(s)-1(zc)-1(za\\242)-1(?)]TJ 0 -13.549 Td[({)-331(P)28(o)28(w)-1(i)1(e)-1(da\\252y)84(,)-331(\\273)-1(e)-332(j)1(u\\273)-332(n)1(a)-332(P)1(rze)-1(w)28(o)-28(dy)-331(ni)1(e)-1(kt)1(\\363re)-332(wr\\363)-28(c\\241!)-331({)-332(sz)-1(epn)1(\\246)-1(\\252a)-331(c)-1(isz)-1(ej)-331(obzie-)]TJ -27.879 -13.549 Td[(ra)-55(j\\241c)-307(si\\246)-307(trw)28(o\\273)-1(n)1(ie)-307(na)-307(Han)1(k)28(\\246)-1(,)-306(a)-307(Jagn\\246)-307(j)1(akb)28(y)-306(c)-1(o\\261)-307(p)-27(o)-28(dr)1(z)-1(u)1(c)-1(i\\252o)-307(z)-307(miejsc)-1(a,)-306(\\273)-1(e)-307(uciek\\252a)]TJ 0 -13.549 Td[(z)-334(izb)28(y)84(,)-333(je\\261)-1(\\242)-334(n)1(ie)-334(sk)28(o\\253cz)-1(y)1(w)-1(sz)-1(y)84(,)-333(s)-1(t)1(ara)-333(z)-1(a\\261)-334(o)-333(Koz\\252o)27(w)28(e)-1(j)-332(z)-1(acz)-1(\\246\\252a)-334(m\\363)28(wi\\242)-1(.)]TJ 27.879 -13.549 Td[({)-346(P)28(\\363\\271no)-345(w)-1(r)1(\\363)-28(ci\\252y)-346(i)-345(z)-347(n)1(icz)-1(ym,)-345(prze)-1(tr)1(z)-1(\\246s)-1(\\252y)-345(s)-1(i)1(\\246)-347(j)1(e)-1(n)1(o)-346(p)-27(o)-346(kie\\252basac)27(h)-345(i)-346(d)1(w)27(or)1(o)27(wi)]TJ -27.879 -13.55 Td[(si\\246)-431(nap)1(atrzy\\252y!)-430(P)28(o)28(wie)-1(d)1(a)-56(j)1(\\241,)-431(\\273e)-431(cz)-1(ym\\261)-431(in)1(n)28(ym)-431(p)1(ac)27(h)1(nie)-431(n)1(i\\271li)-430(c)27(ha\\252u)1(p\\241!.)1(..)-430(Dz)-1(i)1(e)-1(dzic)]TJ 0 -13.549 Td[(im)-348(p)-27(o)27(wiedzia\\252,)-348(co)-348(n)1(ik)28(om)27(u)-347(p)-27(oradzi\\242)-348(nie)-348(mo\\273)-1(e)-348(b)-27(o)-348(to)-348(spr)1(a)27(w)28(a)-348(k)28(omis)-1(ar)1(z)-1(a)-348(i)-347(ur)1(z)-1(\\246du)1(,)]TJ 0 -13.549 Td[(a)-367(kiejb)28(y)-367(na)28(w)28(e)-1(t)-367(m\\363g\\252)-1(,)-367(te\\273)-368(b)28(y)-367(si\\246)-368(ni)1(e)-368(w)-1(sta)28(wi\\252)-368(za)-368(\\273adn)29(ym)-368(Lip)-27(c)-1(zakiem,)-368(b)-27(o)-28(\\242)-368(p)1(rze)-1(z)]TJ 0 -13.549 Td[(ni)1(c)27(h)-356(sam)-357(j)1(e)-1(st)-356(s)-1(zk)28(o)-28(d)1(n)28(y)-356(na)-55(jb)1(arz)-1(ej!)-356(W)1(ie)-1(cie,)-356(\\273)-1(e)-356(to)-356(las)-357(m)28(u)-356(sprze)-1(d)1(a)28(w)27(a\\242)-356(w)-1(zbr)1(onil)1(i,)-356(a)]TJ 0 -13.549 Td[(ku)1(p)-28(ce)-394(go)-393(teraz)-393(p)-28(o)-393(s\\241dac)28(h)-393(w\\252\\363)-28(c)-1(z\\241.)-393(Kl\\241\\252)-393(p)-27(ono)-393(siarcz)-1(y)1(\\261)-1(cie)-394(i)-392(krzyc)-1(za\\252,)-393(\\273e)-394(kiej)-393(on)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-353(c)28(h\\252op)-27(\\363)27(w)-352(ma)-352(i\\261\\242)-353(z)-352(torb)1(am)-1(i)1(,)-352(to)-352(ni)1(e)-1(c)27(h)-351(c)-1(a\\252\\241)-352(wie\\261)-353(zaraza)-352(wytraci!..)1(.)-352(Koz\\252o)27(w)28(a)]TJ 0 -13.55 Td[(ju)1(\\273)-334(z)-334(t)28(ym)-333(o)-28(d)-333(ran)1(a)-334(p)-27(o)-333(c)27(h)1(a\\252)-1(u)1(pac)28(h)-333(lata)-333(i)-333(p)-28(oms)-1(t)1(\\241)-334(o)-28(d)1(gra\\273a.)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(ia,)-333(c)-1(o)-333(m)27(u)-332(ta)-334(zrob)1(i)-333(p)-28(ogroz\\241!)]TJ 0 -13.549 Td[({)-446(Moi\\261cie)-1(,)-446(a)-446(b)-27(o)-446(to)-446(wiada,)-445(kiej)-446(kto)-446(k)28(om)28(u)-446(mi\\246)-1(tk)1(ie)-447(miejsc)-1(e)-446(wym)-1(aca,)-446(\\273e)-447(i)]TJ -27.879 -13.549 Td[(na)-55(jl)1(ic)27(h)1(s)-1(zy)83(..)1(.)-334({)-333(u)1(rw)27(a\\252a)-333(p)-27(oryw)28(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(p)-27(o)-28(dtr)1(z)-1(yma\\242)-334(Han)1(k)28(\\246)-1(,)-333(lec)-1(\\241c\\241)-333(na)-333(\\261)-1(cian)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-322(Lab)-27(oga!)-322(B)-1(y)-322(to)-322(p)1(r\\246dze)-1(j)-322(n)1(ie)-322(przysz)-1(\\252o)-322(pr)1(z)-1(ed)-322(cz)-1(ase)-1(m)-322({)-322(s)-1(ze)-1(p)1(ta\\252a)-322(w)-1(y)1(s)-1(tr)1(as)-1(zo-)]TJ -27.879 -13.55 Td[(na)-401(ci\\241)-28(gn)1(\\241c)-402(j\\241)-401(do)-401(\\252\\363\\273)-1(k)56(a,)-401(b)-27(o)-402(j)1(e)-1(j)-400(w)-402(r\\246ku)-401(ze)-1(mgla\\252a,)-401(p)-27(ot)-402(k)1(ropl)1(is)-1(t)28(y)-401(wyst\\241)-28(pi)1(\\252)-402(n)1(a)-402(j)1(e)-1(j)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(,)-288(\\273\\363\\252t)28(ym)-1(i)-288(p)1(lamam)-1(i)-288(ok)1(ryt\\241.)-288(Le\\273)-1(a\\252a)-288(ledwie)-288(dyc)28(ha)-56(j)1(\\241c)-1(,)-288(stara)-288(za\\261)-289(o)-28(cte)-1(m)-288(wyc)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ra\\252a)-338(j)1(e)-1(j)-337(s)-1(kr)1(onie)-338(i)-338(dop)1(iero)-338(kiej)-338(c)28(hrzan)28(u)-337(p)-28(o)-28(d)-337(nos)-338(nak\\252ad)1(\\252a,)-338(Hank)56(a)-338(opr)1(z)-1(y)1(tom)-1(n)1(ia\\252a)]TJ 0 -13.549 Td[(ot)28(wie)-1(r)1(a)-56(j)1(\\241c)-334(o)-28(cz)-1(y)84(,)-333(z)-1(gu)1(dk)56(a)-334(j)1(\\241)-333(jeno)-333(c)27(h)28(yci\\252a.)]TJ 27.879 -13.549 Td[(Roz)-1(esz)-1(li)-290(si\\246)-291(d)1(o)-291(ob)1(rz\\241dze)-1(\\253)-290(gosp)-27(o)-28(darskic)28(h,)-290(Wi)1(te)-1(k)-290(t)28(ylk)28(o)-290(osta\\252)-291(i)-290(u)1(patr)1(z)-1(ywsz)-1(y)]TJ -27.879 -13.55 Td[(sp)-28(osobn)1(\\241)-334(p)-27(or\\246,)-333(j\\241\\252)-333(prosi\\242)-334(gosp)-27(o)-28(dy)1(ni,)-333(ab)28(y)-333(go)-333(pu)1(\\261)-1(ci\\252a)-333(z)-334(k)28(ogutk)1(ie)-1(m.)]TJ 27.879 -13.549 Td[({)-321(A)-320(id)1(\\271)-1(,)-320(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wy)-320(jeno)-320(nie)-321(\\261c)-1(i)1(arac)27(h)1(a)-56(j)-320(i)-320(s)-1(p)1(ra)28(wuj)-320(s)-1(i)1(\\246)-321(dob)1(rz)-1(e!)-320(Psy)-321(u)29(w)-1(i)1(\\241\\273)-1(,)]TJ -27.879 -13.549 Td[(b)28(y)-333(za)-334(w)28(ami)-334(n)1(a)-334(d)1(ru)1(gie)-334(ws)-1(i)1(e)-334(ni)1(e)-334(p)-28(ol)1(e)-1(cia\\252y!)-333(Kiedy)1(\\273)-334(p)-28(\\363)-55(jd)1(z)-1(i)1(e)-1(ta?)]TJ 27.879 -13.549 Td[({)-333(A)-334(zarn)1(o)-334(n)1(o)-334(k)28(o\\261c)-1(i)1(e)-1(le.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(wrazi\\252a)-334(g\\252o)28(w)28(\\246)-334(pr)1(z)-1(ez)-334(okn)1(o)-334(i)-333(zap)28(yta\\252a:)]TJ 0 -13.55 Td[({)-333(Ka)-56(j)-333(t)1(o)-334(p)1(s)-1(y)84(,)-333(Witek?)-334(W)1(ynies\\252)-1(am)-333(im)-334(j)1(e)-1(\\261\\242)-1(,)-333(w)28(o\\252am)-334(i)-333(ni)-333(j)1(e)-1(d)1(nego!)]TJ 0 -13.549 Td[({)-294(P)1(ra)28(wda,)-293(dy\\242)-294(i)-293(w)-294(ob)-27(orze)-294(ran)1(o)-294(ni)1(e)-294(b)28(y\\252y!)-293(\\212apa!)-293(B)-1(u)1(rek!)-293(na)-293(tu!)-293({)-294(n)1(a)27(w)28(o\\252yw)28(a\\252)]TJ -27.879 -13.549 Td[(wybi)1(e)-1(ga)-55(j\\241c)-334(p)1(rze)-1(d)-333(d)1(om)-1(,)-333(ale)-333(s)-1(i\\246)-333(nie)-333(o)-28(dez)-1(w)28(a\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(Musia\\252y)-333(na)-333(wie\\261)-334(p)-28(ol)1(e)-1(cie\\242)-1(,)-333(b)-27(o)-334(suk)56(a)-333(K\\252\\246)-1(b)-27(\\363)28(w)-334(si\\246)-334(gon)1(i...)-333(ob)-55(j)1(a\\261)-1(n)1(i\\252.)]TJ 0 -13.549 Td[(Nik)28(om)28(u)-369(d)1(o)-369(g\\252o)28(wy)-369(n)1(ie)-369(pr)1(z)-1(y)1(s)-1(z\\252o)-369(m)27(y)1(\\261)-1(le\\242)-1(,)-368(k)56(a)-56(j)-368(si\\246)-369(psy)-369(p)-27(o)-28(d)1(z)-1(i)1(a\\252)-1(y)-368({)-369(zwycz)-1(a)-55(jna)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-271(rze)-1(cz)-1(.)-270(Dopiero)-271(p)-27(o)-271(jak)1(im)-1(\\261)-271(cz)-1(asie)-272(J)1(\\363z)-1(k)56(a)-271(p)-27(os)-1(\\252ysz)-1(a\\252a)-271(gd)1(z)-1(ies)-1(i)1(k)-271(w)-271(p)-28(o)-27(dw)28(\\363rz)-1(u)]TJ 0 -13.549 Td[(jak)1(b)28(y)-372(g\\252uc)28(he)-372(s)-1(k)56(amlenie,)-372(a)-372(n)1(ic)-373(t)1(am)-373(n)1(ie)-372(nalaz\\252s)-1(zy)83(,)-371(p)-28(ob)1(ie)-1(g\\252a)-372(w)-372(sad)-372(m)28(y\\261l\\241c)-1(,)-371(\\273)-1(e)-372(to)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-325(si\\246)-326(r)1(oz)-1(p)1(ra)28(w)-1(i)1(a)-325(z)-326(jak)1(im)-1(\\261)-325(pse)-1(m)-325(ob)-27(c)-1(ym.)-325(Zdziwi\\252a)-325(s)-1(i)1(\\246)-326(ni)1(e)-326(d)1(o)-56(jr)1(z)-1(a)28(ws)-1(zy)-325(ni)1(k)28(ogo,)]TJ 0 -13.549 Td[(sad)-443(b)28(y\\252)-443(p)1(ust)28(y)-443(i)-443(to)-443(sk)28(om)-1(l)1(e)-1(n)1(ie)-444(u)1(c)-1(i)1(c)27(h\\252o;)-442(ale)-444(p)-27(o)28(wrac)-1(a)-55(j\\241c)-443(natk)1(n\\246\\252a)-443(s)-1(i\\246)-443(na)-443(Bu)1(rk)56(a;)]TJ 0 -13.549 Td[(le\\273)-1(a\\252)-333(ni)1(e)-1(\\273ywy)-334(p)-27(o)-28(d)-333(szc)-1(zyto)28(w)27(\\241)-333(\\261c)-1(ian)1(\\241)-334({)-333(\\252eb)-333(m)-1(ia\\252)-333(rozw)27(al)1(on)28(y)83(.)]TJ 27.879 -13.549 Td[(Narob)1(i\\252a)-333(takiego)-334(wrzas)-1(k)1(u,)-333(\\273e)-334(s)-1(i)1(\\246)-334(ws)-1(zys)-1(cy)-333(z)-1(l)1(e)-1(cie)-1(l)1(i.)]TJ 0 -13.55 Td[({)-333(B)-1(u)1(rek)-333(z)-1(ab)1(it)28(y!)-333(Z\\252)-1(o)-27(dzie)-1(j)1(e)-334(p)-27(e)-1(wn)1(ie)-1(!)]TJ 0 -13.549 Td[(T)83(rw)28(oga)-333(p)-28(o)28(wia\\252a)-333(nad)-333(n)1(im)-1(i)1(.)]TJ 0 -13.549 Td[({)-409(A)-409(d)1(y\\242)-409(nie)-409(co)-409(insz)-1(e,)-409(w)-409(i)1(m)-1(i\\246)-409(Oj)1(c)-1(a)-409(i)-408(Syn)1(a!)-409({)-409(k)1(rz)-1(y)1(kn\\246\\252a)-409(Jagust)28(yn)1(k)55(a)-409(d)1(o)-56(j)1(-)]TJ -27.879 -13.549 Td[(rza)28(w)-1(szy)-334(n)1(araz)-334(k)1(up)-27(\\246)-334(z)-1(i)1(e)-1(mi)-333(wyw)27(al)1(onej)-333(i)-333(d\\363\\252)-334(wielki)-333(p)-27(o)-28(d)-333(p)1(rzyc)-1(i)1(e)-1(siami.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(d)1(k)28(opali)-333(si\\246)-334(do)-333(o)-55(jco)27(w)28(e)-1(j)-332(k)28(om)-1(or)1(y!)]TJ 0 -13.55 Td[({)-333(Jam)-1(a,)-333(\\273e)-334(k)28(on)1(ia)-334(b)29(y)-334(p)1(rze)-1(wl\\363k)1(\\252)-1(!)]TJ 0 -13.549 Td[({)-333(A)-334(zb)-27(o\\273)-1(a)-333(p)-28(e\\252no)-333(w)-334(d)1(ole.)]TJ\nET\nendstream\nendobj\n1420 0 obj <<\n/Type /Page\n/Contents 1421 0 R\n/Resources 1419 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1419 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1424 0 obj <<\n/Length 8481      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(444)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Je)-1(zu,)-333(a)-333(mo\\273)-1(e)-334(tam)-333(jes)-1(zc)-1(ze)-334(s\\241)-334(zb)-27(\\363)-56(je!)-333({)-333(z)-1(akr)1(z)-1(ycza\\252)-1(a)-333(J\\363zk)55(a.)]TJ 0 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(li)-281(si\\246)-281(na)-280(B)-1(or)1(yno)28(w)28(\\241)-281(stron\\246,)-280(Jagusi)-281(j)1(u\\273)-281(ni)1(e)-282(b)29(y\\252o,)-281(stary)-280(ino)-280(le)-1(\\273a\\252)-281(t)28(w)28(arz)-1(\\241)]TJ -27.879 -13.549 Td[(do)-371(izb)28(y)83(,)-371(w)-372(k)28(omorze)-372(z)-1(a\\261,)-372(za)28(w)-1(d)1(y)-372(mro)-27(c)-1(znej,)-371(w)-1(i)1(dn)1(o)-372(b)28(y\\252o,)-371(\\261)-1(wiat)1(\\252)-1(o)-371(bu)1(c)27(ha\\252o)-371(dziur)1(\\241,)]TJ 0 -13.549 Td[(\\273e)-417(\\252)-1(acno)-416(do)-55(jrzeli,)-416(jak)28(o)-416(w)-1(sz)-1(y)1(s)-1(tk)28(o)-416(b)28(y\\252o)-417(p)-27(omies)-1(zane)-417(kiej)-416(gro)-28(c)28(h)-416(z)-417(k)55(ap)1(ust\\241,)-416(z)-1(b)-27(o\\273)-1(e)]TJ 0 -13.549 Td[(p)-27(o)27(wysyp)28(y)1(w)27(an)1(e)-488(zale)-1(ga\\252o)-487(ziem)-1(i)1(\\246)-488(raze)-1(m)-487(ze)-488(sz)-1(matami,)-487(p)-27(o\\261)-1(ci\\241)-28(gan)29(ym)-1(i)-486(z)-488(d)1(r\\241)-28(g\\363)28(w;)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-340(m)-1(otk)1(i)-341(pr)1(z)-1(\\246dzy)-341(i)-341(w)28(e)-1(\\252n)1(a)-341(le\\273)-1(a\\252y)-341(p)-27(otar)1(gane)-341(i)-341(zw)-1(i)1(c)27(hl)1(o)-1(n)1(e)-1(.)-340(Nie)-341(s)-1(p)-27(os)-1(\\363b)-340(b)28(y\\252o)-341(n)1(a)]TJ 0 -13.549 Td[(razie)-334(zmiark)28(o)28(w)27(a\\242,)-333(c)-1(ze)-1(go)-333(b)1(rak)28(o)28(w)27(a\\252o.)]TJ 27.879 -13.549 Td[(Ale)-299(Hank)56(a)-299(o)-28(d)-299(r)1(az)-1(u)-299(p)-27(omiark)28(o)28(w)28(a\\252)-1(a,)-299(\\273e)-300(t)1(o)-300(k)28(o)28(w)28(alo)28(w)27(a)-299(b)28(y)1(\\242)-300(m)27(u)1(s)-1(i)-299(r)1(ob)-28(ot)1(a;)-299(gor\\241c)]TJ -27.879 -13.549 Td[(j\\241)-379(p)1(rze)-1(j)1(\\241\\252)-379(na)-379(m)28(y\\261)-1(l)1(,)-379(i\\273)-379(kiejb)28(y)-379(si\\246)-379(jeden)-379(d)1(z)-1(ie\\253)-379(op)-27(\\363\\271ni\\252a,)-379(n)1(alaz\\252b)28(y)-379(pi)1(e)-1(n)1(i\\241dze)-380(i)-378(z)-1(a-)]TJ 0 -13.549 Td[(br)1(a\\252...)-280(Nac)27(h)29(yli\\252a)-280(si\\246)-281(n)1(ad)-280(do\\252em)-281(kr)1(yj\\241c)-280(pr)1(z)-1(ed)-280(lu)1(d\\271m)-1(i)-280(k)1(un)28(ten)28(tn)1(o\\261)-1(\\242,)-280(a)-280(s)-1(p)1(ra)28(w)-1(d)1(z)-1(a)-55(j\\241c)]TJ 0 -13.549 Td[(cos)-1(ik)-333(sobie)-333(z)-1(a)-333(s)-1(t)1(aniki)1(e)-1(m.)]TJ 27.879 -13.55 Td[({)-326(Czy)-326(ab)29(y)-326(n)1(ie)-326(br)1(ak)-326(cz)-1(ego)-326(w)-326(ob)-27(orze)-1(?)-325({)-326(rze)-1(k)1(\\252a)-1(,)-325(n)1(ib)28(y)-325(tkni)1(\\246)-1(ta)-325(p)-28(o)-28(d)1(e)-1(j)1(rze)-1(n)1(iem)-1(.)]TJ 0 -13.549 Td[(Na)-333(s)-1(zc)-1(z\\246)-1(\\261cie)-1(,)-333(n)1(ic)-334(n)1(igdzie)-334(n)1(ie)-334(br)1(ak)28(o)28(w)27(a\\252o.)]TJ 0 -13.549 Td[(Dob)1(rz)-1(e)-419(b)28(y\\252y)-419(d)1(rzw)-1(i)-418(p)-28(oza)28(w)-1(i)1(e)-1(ran)1(e)-1(!)-418({)-420(ozw)28(a)-1(\\252)-419(si\\246)-419(Pietrek)-419(i)-419(s)-1(k)28(o)-27(c)-1(zy\\252)-419(nar)1(az)-420(do)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(ac)-1(zanego)-335(do\\252u)1(,)-335(o)-28(d)1(w)27(al)1(i\\252)-335(z)-335(w)27(ej\\261c)-1(i)1(a)-335(o)-28(cipk)28(\\246)-335(wielgac)27(h)1(n\\241)-335(i)-334(w)-1(y)1(c)-1(i\\241)-27(gn\\241\\252)-335(stam)27(t\\241d)]TJ 0 -13.549 Td[(\\212ap)-27(\\246)-334(s)-1(k)28(o)28(wycz)-1(\\241ce)-1(go.)]TJ 27.879 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(z\\252o)-28(dzieje)-334(go)-333(tam)-334(wrzucili)1(,)-333(ale)-334(to)-333(dziwne,)-333(pies)-334(z\\252)-1(y)-333(i)-333(d)1(a\\252)-334(si\\246...)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ikto)-333(w)-334(n)1(o)-28(cy)-334(n)1(ie)-334(s\\252ys)-1(za\\252)-333(s)-1(zc)-1(ze)-1(k)56(an)1(ia!)]TJ 0 -13.549 Td[(Dali)-277(z)-1(n)1(a\\242)-278(o)-278(spra)28(wie)-278(s)-1(o\\252t)28(yso)28(wi,)-278(r)1(oz)-1(n)1(ios)-1(\\252o)-277(s)-1(i\\246)-278(te\\273)-278(m)-1(i)1(gie)-1(m)-278(p)-27(o)-278(wsi,)-278(\\273e)-278(w)-278(dyr)1(dy)]TJ -27.879 -13.549 Td[(lec)-1(i)1(e)-1(li)-341(ogl\\241d)1(a\\242)-1(,)-341(wyr)1(z)-1(ek)56(a\\242)-342(a)-342(d)1(e)-1(l)1(ib)-28(ero)28(w)28(a\\242)-1(.)-341(S)1(ad)-341(z)-1(ap)-27(e)-1(\\252n)1(i\\252)-341(s)-1(i\\246)-341(lud)1(\\271)-1(mi,)-341(cis)-1(n)1(\\246)-1(l)1(i)-342(si\\246)-342(k)1(ie)-1(j)]TJ 0 -13.549 Td[(do)-380(k)28(onf)1(e)-1(sjon)1(a\\252u,)-380(ku)1(\\273)-1(d)1(e)-1(n)-380(g\\252o)28(w)27(\\246)-381(wt)28(yk)56(a\\252)-381(d)1(o)-381(d)1(o\\252u,)-380(p)-27(o)27(wiad)1(a\\252)-381(sw)27(o)-55(je)-381(i)-380(Burk)56(a)-380(pil)1(nie)]TJ 0 -13.55 Td[(ogl\\241d)1(a\\252.)]TJ 27.879 -13.549 Td[(Zja)28(wi\\252)-355(s)-1(i)1(\\246)-356(i)-355(Ro)-28(c)27(h)1(o,)-355(a)-355(usp)-28(ok)28(oi)1(w)-1(sz)-1(y)-354(roz)-1(p)1(\\252ak)55(an)1(\\241)-355(i)-355(wrz)-1(esz)-1(cz)-1(\\241c\\241)-355(J\\363z)-1(k)28(\\246,)-355(kt\\363ra)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u)-302(z)-302(os)-1(ob)1(na)-302(op)-27(o)28(w)-1(i)1(ada\\252a,)-302(j)1(ak)-302(to)-302(b)28(y\\252o,)-302(p)-27(osz)-1(ed\\252)-302(do)-302(Han)1(ki,)-301(le)-1(\\273\\241c)-1(ej)-302(zno)28(wu)-302(n)1(a)]TJ 0 -13.549 Td[(\\252\\363\\273)-1(k)1(u,)-333(ale)-334(j)1(ak)28(o\\261)-334(dziwni)1(e)-334(s)-1(p)-27(ok)28(o)-55(jnej.)1(..)]TJ 27.879 -13.549 Td[({)-333(Zl\\241k\\252e)-1(m)-333(s)-1(i)1(\\246)-1(,)-333(b)28(y\\261cie)-334(tego)-334(zb)28(ytn)1(io)-333(do)-333(s)-1(erca)-334(n)1(ie)-334(wzi\\246)-1(l)1(i!{)-333(z)-1(acz)-1(\\241\\252.)]TJ 0 -13.55 Td[({)-333(I...)-333(ni)1(c)-1(ze)-1(go)-333(c)27(h)28(w)28(a\\252a)-333(B)-1(ogu)-333(n)1(ie)-334(wz)-1(i)1(\\241\\252...)-333(z)-1(ap)-27(\\363\\271ni\\252)-333(s)-1(i)1(\\246)-1(..)1(.)-334({)-333(p)1(rz)-1(y)1(c)-1(iszy\\252a)-334(g\\252os.)]TJ 0 -13.549 Td[({)-333(Miar)1(kuj)1(e)-1(cie,)-334(k)1(to?...)]TJ 0 -13.549 Td[({)-333(Da\\252ab)28(ym)-334(g\\252o)28(w)28(\\246)-1(,)-333(\\273e)-334(k)28(o)28(w)27(al.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(c)28(h)28(yb)1(a)-334(n)1(a)-334(cosik)-333(up)1(a)-1(t)1(rz)-1(on)1(e)-1(go)-333(p)-27(olo)28(w)27(a\\252?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(jeno)-333(\\273e)-334(m)27(u)-333(si\\246)-334(wyp)1(s)-1(n)1(\\246)-1(\\252o,)-333(do)-333(w)28(a)-56(j)1(u)-333(t)28(ylk)28(o)-333(m)-1(\\363)28(wi\\246...)]TJ 0 -13.55 Td[({)-440(Ju)1(\\261)-1(ci,)-440(za)-440(r\\246k)28(\\246)-441(trza)-440(b)28(y)-440(z\\252apa\\242)-440(alb)-27(o)-440(\\261)-1(wiad)1(k)28(\\363)27(w)-440(mie\\242)-1(..)1(.)-440(No,)-440(n)1(a)-441(co)-440(si\\246)-441(to)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)-333(w)28(a\\273)-1(y)-333(la)-333(grosz)-1(a!)1(...)]TJ 27.879 -13.549 Td[({)-333(Na)27(w)28(et)-334(p)1(rze)-1(d)-333(An)29(tkiem)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(wygada)-55(jcie)-1(,)-333(moi)-333(dr)1(o)-28(dzy!)-333({)-333(prosi\\252a.)]TJ 0 -13.549 Td[({)-457(Wi)1(e)-1(cie)-1(,)-456(\\273)-1(em)-457(niesk)28(ory)-457(d)1(o)-457(z)-1(wierze)-1(\\253)1(,)-457(a)-457(\\252acniej)-456(prze)-1(cie\\273)-458(zabi)1(\\242)-458(cz)-1(\\252o)28(wiek)55(a)]TJ -27.879 -13.549 Td[(ni)1(\\271)-1(li)-333(go)-333(ur)1(o)-28(dzi\\242.)-333(Z)-1(n)1(a\\252e)-1(m)-333(go,)-333(\\273)-1(e)-334(k)1(r\\246)-1(t)1(ac)-1(z,)-333(ale)-334(o)-333(tak)55(\\241)-333(rzec)-1(z)-334(b)29(ym)-334(n)1(ie)-334(p)-27(os)-1(\\241d)1(z)-1(i\\252.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(go)-333(sta\\242)-334(na)-333(na)-55(jgor)1(s)-1(ze)-1(,)-333(znam)-334(j)1(a)-333(go)-334(d)1(obrze...)]TJ 0 -13.55 Td[(W)84(\\363)-56(jt)-223(n)1(adsz)-1(ed\\252)-223(z)-224(so\\252t)28(ys)-1(em)-224(i)-223(wzi\\246)-1(l)1(i)-223(ogl\\241da\\242)-223(s)-1(zc)-1(ze)-1(g\\363\\252o)28(w)28(o,)-223(w)-1(y)1(p)28(ytu)1(j\\241c)-224(si\\246)-224(J\\363zki)]TJ -27.879 -13.549 Td[(o)-333(w)-1(szys)-1(tk)28(o.)]TJ 27.879 -13.549 Td[({)-444(\\233e)-1(b)29(y)-444(Koz)-1(i)1(o\\252)-445(n)1(ie)-444(s)-1(iedzia\\252,)-444(m)28(y\\261)-1(l)1(a\\252)-1(b)29(ym)-1(,)-443(c)-1(o)-444(to)-444(jego)-444(s)-1(p)1(ra)28(wk)56(a...)-444({)-444(sz)-1(epn)1(\\241\\252)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(jcie,)-333(Pietrze)-1(,)-333(b)-27(o)-334(K)1(oz)-1(\\252o)28(w)27(a)-333(ku)-333(n)1(am)-334(zm)-1(i)1(e)-1(r)1(z)-1(a)-333({)-334(tr)1(\\241c)-1(i)1(\\252)-334(go)-333(s)-1(o\\252t)28(ys.)]TJ 0 -13.55 Td[({)-333(Sp)1(\\252)-1(oszyli)-333(s)-1(i)1(\\246)-1(,)-333(\\273e)-334(nic)-333(p)-28(on)1(o)-334(n)1(ie)-334(u)1(nie\\261li.)]TJ 0 -13.549 Td[({)-427(P)28(ew)-1(n)1(ie,)-427(s)-1(tr)1(a\\273)-1(n)1(ik)28(om)-428(tr)1(z)-1(a)-427(b)28(y)-427(d)1(a\\242)-428(zna\\242...)-427(n)1(o)27(w)28(a)-427(rob)-27(ota)-427(diab)1(li)-427(nad)1(ali,)-427(\\273e)]TJ\nET\nendstream\nendobj\n1423 0 obj <<\n/Type /Page\n/Contents 1424 0 R\n/Resources 1422 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1409 0 R\n>> endobj\n1422 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1427 0 obj <<\n/Length 9257      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(445)]TJ -358.232 -35.866 Td[(cz)-1(\\252o)28(wie)-1(k)-333(\\261w)-1(i)1(\\241t)-334(n)1(a)28(w)27(et)-333(z)-1(a\\273y\\242)-334(sp)-28(ok)28(o)-55(jn)1(ie)-334(n)1(ie)-334(mo\\273)-1(e...)]TJ 27.879 -13.549 Td[(So\\252t)28(ys)-333(naraz)-333(s)-1(i\\246)-333(s)-1(c)27(h)29(yli\\252)-333(i)-333(p)-28(o)-27(dn)1(i\\363s)-1(\\252)-333(\\273)-1(elazn)28(y)84(,)-334(ok)1(rw)27(a)28(wion)28(y)-333(p)1(r\\246t.)]TJ 0 -13.549 Td[({)-333(T)27(ym)-333(c)-1(i)-333(zak)56(atrup)1(ili)-333(Bur)1(k)55(a!)]TJ 0 -13.549 Td[(\\233e)-1(l)1(az)-1(o)-333(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252o)-334(z)-333(r\\241k)-333(do)-333(r\\241k)1(.)]TJ 0 -13.549 Td[({)-333(Pr\\246t,)-333(z)-334(j)1(akiego)-334(z\\246)-1(b)29(y)-334(d)1(o)-333(bron)-333(k)1(uj)1(\\241.)]TJ 0 -13.55 Td[({)-333(Mogli)-333(u)1(kra\\261\\242)-334(c)27(h)1(o)-28(\\242)-1(b)29(y)-334(i)-333(z)-333(ku\\271ni)-333(Mi)1(c)27(ha\\252o)28(w)28(e)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Ku\\271ni)1(a)-334(j)1(u\\273)-334(o)-28(d)-332(pi\\241tk)1(u)-333(z)-1(a)28(w)28(arta.)]TJ 0 -13.549 Td[({)-333(Ko)28(w)27(ala)-333(tr)1(z)-1(a)-333(w)-1(y)1(p)28(yta\\242,)-333(c)-1(zy)-333(m)27(u)-333(n)1(ie)-334(zgin\\246\\252o.)]TJ 0 -13.549 Td[({)-405(T)83(ak)-404(mogli)-404(ukr)1(a\\261)-1(\\242,)-405(j)1(ak)-405(mogli)-404(przyn)1(ie)-1(\\261\\242)-405(z)-405(s)-1(ob)1(\\241,)-405(w)28(\\363)-56(j)1(t)-405(to)-404(w)27(ama)-405(m\\363)28(wi,)-405(a)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)1(a)-327(w)-327(c)27(h)1(a\\252upi)1(e)-328(n)1(ie)-327(ma,)-327(co)-327(z)-1(a\\261)-327(r)1(obi\\242,)-327(mo)-56(j)1(a)-327(to)-326(s)-1(p)1(ra)28(w)27(a)-327(z)-327(so\\252t)28(ys)-1(em!)-327({)-327(p)-27(o)-28(d)1(ni\\363s\\252)]TJ 0 -13.549 Td[(g\\252os)-1(,)-333(k)1(rz)-1(y)1(c)-1(z\\241c)-1(,)-333(b)28(y)-333(si\\246)-334(n)1(ie)-334(t\\252o)-28(cz)-1(y)1(li)-333(p)-28(o)-333(pr)1(\\363\\273)-1(n)1(icy)-334(i)-333(d)1(o)-334(d)1(om)-334(sz)-1(l)1(i.)]TJ 27.879 -13.55 Td[(Nikt)1(o)-296(si\\246)-296(go)-296(n)1(ie)-296(ul\\246kn)1(\\241\\252,)-296(j)1(e)-1(n)1(o)-296(\\273e)-296(c)-1(zas)-296(s)-1(i\\246)-296(b)29(y\\252o)-296(zbiera\\242)-296(d)1(o)-296(k)28(o\\261c)-1(io\\252a,)-295(to)-295(w)-1(n)1(e)-1(t)]TJ -27.879 -13.549 Td[(si\\246)-382(p)-27(orozc)27(h)1(o)-28(dzili)1(,)-381(b)-27(o)-381(ju)1(\\273)-382(i)-381(l)1(ud)1(z)-1(ie)-381(z)-381(dru)1(gic)27(h)-380(ws)-1(i)-380(nad)-380(p\\252otami)-381(c)-1(i)1(\\241)-28(gn\\246li)-381(g\\246sie)-1(go,)-380(i)]TJ 0 -13.549 Td[(w)28(oz)-1(y)-333(coraz)-334(cz)-1(\\246\\261)-1(ciej)-333(du)1(dni)1(a\\252y)-334(n)1(a)-333(m)-1(o\\261c)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-443(kiej)-444(si\\246)-444(d)1(o)-444(cna)-443(w)-1(y)1(lud)1(ni\\252o,)-443(ws)-1(u)1(n\\241\\252)-443(s)-1(i\\246)-444(d)1(o)-444(sadu)-443(Bylica)-443(i)-444(n)28(u)1(\\273)-1(e)-444(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(ogl\\241d)1(a\\242)-334(s)-1(w)28(o)-56(j)1(e)-1(go)-333(pi)1(e)-1(sk)56(a,)-334(cuci\\242)-334(go)-333(a)-333(pr)1(z)-1(em)-1(a)28(wia\\242)-334(d)1(o)-334(n)1(iego)-334(cic)27(h)29(u\\261k)28(o.)]TJ 27.879 -13.55 Td[(Dom)-395(te\\273)-395(opu)1(s)-1(tosz)-1(a\\252,)-394(do)-394(k)28(o\\261)-1(cio\\252a)-395(p)-27(osz)-1(li)1(,)-395(Han)1(k)55(a)-394(jeno)-394(w)-395(\\252\\363\\273)-1(ku)-394(osta\\252a,)-395(p)1(a-)]TJ -27.879 -13.549 Td[(cie)-1(r)1(z)-1(e)-380(se)-380(prze)-1(p)-27(o)28(wiada)-55(j\\241c,)-380(a)-379(m)27(y\\261l\\241c)-380(o)-380(An)29(tku,)-379(\\273e)-381(za\\261)-380(cic)27(h)1(o)-380(s)-1(i)1(\\246)-380(z)-1(rob)1(i\\252o,)-379(b)-28(o)-379(s)-1(tar)1(y)]TJ 0 -13.549 Td[(dziec)-1(i)-333(p)-27(o)28(w)-1(i)1(\\363)-28(d\\252)-333(na)-333(dr)1(og\\246)-1(,)-333(zas)-1(n)1(\\246)-1(\\252a)-333(kw)28(ardo.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-423(ano)-422(stan\\246\\252o)-422(przyp)-27(o\\252ud)1(nie,)-422(galan)1(c)-1(ie)-422(pr)1(z)-1(ygr)1(z)-1(an)1(e)-423(i)-422(tak)-422(cic)28(h)28(u\\261kie,)-422(ja\\273e)]TJ -27.879 -13.549 Td[(\\261piewy)-456(n)1(aro)-28(d)1(u)-455(rozc)27(h)1(o)-28(dzi\\252y)-455(si\\246)-456(z)-456(k)28(o\\261cio\\252a)-456(i)-455(b)1(rz\\246)-1(cz)-1(a\\252y)-455(p)-27(o)-455(s)-1(zybac)28(h,)-455(j)1(u\\273)-456(i)-455(p)1(rze)-1(-)]TJ 0 -13.55 Td[(dzw)28(onili)-294(na)-295(P)28(o)-28(d)1(nies)-1(i)1(e)-1(n)1(ie)-1(,)-294(a)-296(on)1(a)-295(c)-1(i)1(\\246)-1(giem)-296(spa\\252a.)-295(Zb)1(ud)1(z)-1(i\\252)-295(j)1(\\241)-296(d)1(opi)1(e)-1(ro)-295(tu)1(rk)28(ot)-295(w)28(oz)-1(\\363)28(w)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(\\241cyc)27(h)-432(p)-27(o)-432(wyb)-28(o)-55(jac)28(h,)-432(b)-27(o)-433(j)1(ak)-432(to)-433(b)29(y\\252o)-433(w)28(e)-433(zw)-1(y)1(c)-1(za)-56(j)1(u,)-432(w)-433(d)1(ru)1(gie)-433(\\261w)-1(i)1(\\246)-1(to)-432(Wiel-)]TJ 0 -13.549 Td[(k)56(ano)-28(cy)84(,)-435(p)-27(o)-435(sumie,)-434(\\261)-1(cigali)-434(s)-1(i)1(\\246)-1(,)-434(kt\\363ren)-434(pi)1(e)-1(rw)28(ej)-434(dopad)1(nie)-434(s)-1(w)28(o)-56(j)1(e)-1(j)-434(c)27(h)1(a\\252up)28(y)84(,)-434(\\273)-1(e)-435(in)1(o)]TJ 0 -13.549 Td[(miga\\252y)-362(przez)-363(dr)1(z)-1(ew)27(a)-362(br)1(yki,)-362(zap)-27(c)27(han)1(e)-363(lu)1(d\\271m)-1(i)1(,)-363(i)-362(k)28(on)1(ie)-363(p)1(ran)1(e)-363(batami.)-362(\\221)1(c)-1(igal)1(i)-362(s)-1(i\\246)]TJ 0 -13.549 Td[(tak)-365(siar)1(c)-1(zy\\261)-1(cie,)-365(\\273e)-366(Ch)1(a\\252upa)-364(s)-1(i\\246)-365(tr)1(z)-1(\\246s)-1(\\252a)-365(i)-364(wrz)-1(a)28(w)28(a)-365(tur)1(k)28(ot\\363)28(w)-365(i)-365(\\261m)-1(iec)27(h)1(\\363)28(w)-365(w)-1(i)1(c)27(hr)1(e)-1(m)]TJ 0 -13.55 Td[(pr)1(z)-1(elec)-1(ia\\252a.)-455(Chcia\\252a)-456(s)-1(i)1(\\246)-457(p)-27(o)-28(d)1(nie\\261)-1(\\242,)-455(obac)-1(zy\\242,)-456(ale)-456(d)1(om)-1(o)28(wi)-456(wr)1(ac)-1(ali)-455(i)-456(Jagu)1(s)-1(t)28(yn)1(k)56(a,)]TJ 0 -13.549 Td[(kr)1(z)-1(\\241ta)-55(j\\241c)-370(si\\246)-370(kiele)-370(obi)1(adu,)-369(j\\246\\252a)-370(op)-27(o)28(w)-1(i)1(ada\\242,)-370(j)1(ak)-370(zw)27(al)1(i\\252o)-370(si\\246)-370(t)28(ylac)28(hna)-369(nar)1(o)-28(du)1(,)-370(co)]TJ 0 -13.549 Td[(i)-328(p)-28(o\\252o)28(w)28(a)-329(ni)1(e)-329(m)-1(ia\\252a)-328(m)-1(i)1(e)-1(j)1(s)-1(ca)-329(w)-329(k)28(o\\261cie)-1(l)1(e)-1(,)-328(\\273)-1(e)-329(wsz)-1(ystkie)-329(d)1(w)27(or)1(y)-329(zjec)27(h)1(a\\252y)83(,)-328(a)-329(p)-27(o)-329(sumie)]TJ 0 -13.549 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-358(z)-1(w)28(o\\252yw)27(a\\252)-359(gosp)-28(o)-27(darzy)-359(d)1(o)-359(z)-1(akr)1(ys)-1(t)1(ii)-359(i)-359(cos)-1(i)1(k)-359(z)-360(n)1(imi)-359(ur)1(e)-1(d)1(z)-1(a\\252,)-359(J\\363zk)56(a)-359(z)-1(a\\261)]TJ 0 -13.549 Td[(zno)28(wuj)-333(rozp)-27(o)27(wiad)1(a\\252a)-334(o)-333(dziedzicz)-1(k)56(ac)27(h)1(,)-333(jak)-333(to)-333(b)28(y\\252y)-333(wys)-1(tr)1(o)-56(j)1(one.)]TJ 27.879 -13.55 Td[({)-286(Wi)1(e)-1(cie)-1(,)-285(a)-286(to)-286(p)1(anienk)1(i)-286(z)-286(W)83(oli)-285(to)-286(ci)-286(taki)1(e)-287(ku)1(pr)1(y)-286(d\\271wiga)-56(j)1(\\241)-286(na)-285(z)-1(ad)1(z)-1(ie,)-286(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(te)-334(i)1(ndor)1(y)83(,)-333(ki)1(e)-1(j)-333(se)-334(ogon)28(y)-333(rozcz)-1(ap)1(ie)-1(r)1(z)-1(on)1(e)-334(p)-28(osta)28(wi\\241.)]TJ 27.879 -13.549 Td[({)-333(Sian)1(e)-1(m)-333(s)-1(e)-334(t)1(e)-334(m)-1(i)1(e)-1(j)1(s)-1(ca)-334(wyp)29(yc)27(h)1(a)-56(j\\241)-333(leb)-27(o)-334(ga\\252gan)1(a)-1(mi)-333({)-333(p)-28(o)-55(ja\\261nia\\252a)-333(stara.)]TJ 0 -13.549 Td[({)-277(A)-277(w)-277(p)1(as)-1(ie)-277(w)27(ci\\246te)-277(kiej)-277(osy)83(,)-277(b)1(atem)-278(b)29(yc)27(h)-276(je)-277(p)-28(op)1(rze)-1(cina\\252,)-276(\\273)-1(e)-277(ani)-276(p)-28(ozna\\242,)-277(kiej)]TJ -27.879 -13.549 Td[(te)-334(b)1(rzuc)27(h)29(y)-333(dz)-1(i)1(e)-1(w)28(a)-56(j)1(\\241...)-333(Z)-333(blisk)56(am)-334(wyp)1(atryw)28(a\\252a.)]TJ 27.879 -13.549 Td[({)-401(Ka)-55(j?)-401(a)-401(p)-27(o)-28(d)-400(gorse)-1(t)28(y)-401(wp)28(y)1(c)27(ha)-55(j\\241.)-400(P)28(o)28(w)-1(i)1(ada\\252a)-401(mi)-401(j)1(e)-1(d)1(na)-401(d)1(w)27(\\363r)1(k)55(a,)-400(c)-1(o)-401(za)-401(p)-27(o-)]TJ -27.879 -13.55 Td[(k)28(o)-56(j)1(o)28(w)27(\\241)-461(b)28(y)1(\\252)-1(a)-461(w)-461(mo)-28(d)1(lic)27(k)1(im)-462(d)1(w)27(or)1(z)-1(e,)-461(jak)-460(to)-461(p)-28(on)1(iekt\\363re)-461(dziedzic)-1(zki)-461(si\\246)-461(g\\252)-1(o)-27(dz\\241)-461(i)]TJ 0 -13.549 Td[(pasami)-364(na)-364(no)-28(c)-364(\\261)-1(ci\\241)-28(ga)-55(j\\241,)-364(b)28(y)-364(in)1(o)-364(nie)-364(p)-28(ogr)1(ubi)1(e)-1(\\242.)-364(T)83(ak)56(a)-365(mo)-28(d)1(a)-365(d)1(w)27(or)1(s)-1(k)56(a,)-364(ab)28(y)-364(k)56(a\\273)-1(d)1(a)]TJ 0 -13.549 Td[(pan)1(i)-333(c)-1(i)1(e)-1(n)1(iu\\261k)55(\\241)-333(si\\246)-334(wyd)1(a)27(w)28(a\\252a,)-333(nib)29(y)-334(t)28(y)1(c)-1(zk)55(a,)-333(n)1(a)-334(zadzie)-334(j)1(e)-1(n)1(o)-334(wyd)1(\\246)-1(t)1(a.)]TJ 27.879 -13.549 Td[({)-333(W)83(e)-334(wsi)-333(inacz)-1(ej,)-333(b)-27(o)-28(\\242)-334(z)-333(c)27(h)28(u)1(dyc)28(h)-333(przekpiw)28(a)-56(j)1(\\241)-333(s)-1(i\\246)-334(p)1(arob)1(ki.)]TJ 0 -13.549 Td[({)-269(Za\\261)-1(b)28(y)-269(n)1(ie)-1(!)-269(d)1(z)-1(ieuc)28(ha)-269(m)27(u)1(s)-1(i)-269(b)28(y)1(\\242)-270(kiej)-269(lepa,)-269(rozros\\252)-1(a)-269(ws)-1(z\\246dz)-1(i)1(e)-1(,)-269(tak)56(a,)-269(c)-1(o)-269(to)-269(jak)]TJ -27.879 -13.55 Td[(si\\246)-387(cz)-1(\\252ek)-386(do)-386(niej)-386(p)1(rz)-1(y)1(prze,)-387(t)1(o)-387(j)1(akb)28(y)-386(d)1(o)-387(p)1(iec)-1(a)-386(gor\\241ce)-1(go..)1(.)-386({)-387(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-387(P)1(ie)-1(t)1(re)-1(k)1(,)]TJ 0 -13.549 Td[(wpatr)1(z)-1(on)28(y)-333(w)-333(Jagusi\\246,)-334(wysta)28(wia)-56(j)1(\\241c)-1(\\241)-333(garn)1(ki)-333(z)-334(k)28(omina.)]TJ\nET\nendstream\nendobj\n1426 0 obj <<\n/Type /Page\n/Contents 1427 0 R\n/Resources 1425 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1425 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1431 0 obj <<\n/Length 9114      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(446)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(-Wid)1(z)-1(isz)-357(go,)-355(p)-28(ok)1(rak)28(\\246)-1(,)-355(w)-1(y)1(pr\\363\\273no)28(w)28(a\\252)-356(s)-1(i\\246,)-356(p)-27(o)-28(d)1(jad\\252)-356(se)-356(m)-1(i\\246s)-1(em)-356(i)-356(jak)1(ie)-357(m)28(u)-356(to)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(sm)-1(ak)1(i)-334(n)1(a)-333(oz)-1(\\363r)-333(pr)1(z)-1(y)1(c)27(ho)-27(dz\\241!)-334({)-333(zgromi\\252a)-334(go)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a.)]TJ 27.879 -13.549 Td[({)-331(Jak)-330(tak)56(a)-331(si\\246)-331(pr)1(z)-1(y)-330(rob)-27(o)-28(c)-1(i)1(e)-332(r)1(uc)28(ha,)-330(to)-331(dziw)-331(si\\246)-331(jej)-330(w)27(e\\252niak)-330(nie)-331(r)1(oz)-1(p)-27(\\246)-1(k)1(nie...)]TJ 0 -13.549 Td[(Chcia\\252)-349(jes)-1(zc)-1(ze)-350(cos)-1(i)1(k)-349(trefn)1(e)-1(go)-349(do)-27(da\\242,)-349(ale)-350(Domin)1(ik)28(o)28(w)27(a)-349(pr)1(z)-1(ysz\\252)-1(a)-349(op)1(atryw)28(a\\242)]TJ -27.879 -13.549 Td[(Hank)28(\\246,)-333(i)-333(wygonil)1(i)-333(g)-1(o)-333(z)-334(i)1(z)-1(b)28(y)84(.)]TJ 27.879 -13.55 Td[(Ob)1(iad)-311(te)-1(\\273)-312(zaraz)-312(p)-28(o)-27(da)28(w)27(al)1(i)-312(na)-311(ganku)1(,)-312(gd)1(y\\273)-312(c)-1(iep\\252o)-312(b)29(y\\252o)-312(i)-312(s\\252onec)-1(zni)1(e)-1(.)-311(M\\252o)-28(da)]TJ -27.879 -13.549 Td[(zie)-1(l)1(e)-1(\\253)-342(p)-27(ol\\261ni)1(e)-1(w)28(a\\252)-1(a,)-341(trz\\241c)27(ha)-55(j\\241c)-342(s)-1(i\\246)-342(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-342(na)-342(ga\\252\\241zk)56(ac)27(h)-342(i)-342(gme)-1(r)1(z)-1(\\241c)-342(kiej)-342(mot)28(yle,)]TJ 0 -13.549 Td[(pt)1(as)-1(ie)-333(\\261)-1(wiegot)28(y)-334(r)1(oz)-1(n)1(os)-1(i\\252y)-333(si\\246)-334(ze)-334(sad\\363)28(w.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-363(z)-1(ak)56(aza\\252a)-363(Hance)-364(ru)1(s)-1(za\\242)-363(s)-1(i\\246)-363(z)-364(p)-27(o\\261c)-1(ieli,)-363(a)-363(\\273e)-364(zaraz)-363(p)-27(o)-364(ob)1(iedzie)]TJ -27.879 -13.549 Td[(nad)1(e)-1(sz\\252)-1(a)-306(W)84(e)-1(r)1(onk)56(a)-306(z)-307(dzie\\242)-1(mi,)-306(d)1(o)-307(\\252\\363\\273k)56(a)-307(p)1(rzys)-1(t)1(a)27(wil)1(i)-306(\\252)-1(a)28(w)28(\\246)-307(i)-306(J\\363zk)55(a)-306(n)1(anios\\252a)-306(\\261)-1(wi\\246c)-1(o-)]TJ 0 -13.549 Td[(nego)-309(i)-309(\\015)1(ac)27(h)1(\\246)-310(gor)1(z)-1(a\\252ki)-308(z)-310(mio)-27(dem)-1(,)-308(b)-28(o)-309(Han)29(u\\261,)-309(c)27(h)1(o)-28(\\242)-309(z)-310(tr)1(ud)1(e)-1(m)-309(ni)1(e)-1(co,)-309(ale)-309(go)-28(d)1(nie,)-309(p)-27(o)]TJ 0 -13.55 Td[(gosp)-28(o)-28(d)1(arsku)-253(p)-28(o)-28(d)1(e)-1(j)1(m)-1(o)28(w)28(a\\252a)-254(s)-1(i)1(os)-1(tr)1(\\246)-255(i)-253(s)-1(\\241siadki)1(,)-254(kt\\363r)1(e)-255(w)28(e)-1(d)1(le)-254(z)-1(wycz)-1(a)-55(ju)-253(j\\246\\252y)-254(p)-27(os)-1(ob)1(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\242)-401(w)-401(go\\261c)-1(ie)-400(u\\273ala\\242)-401(s)-1(i)1(\\246)-401(nad)-400(n)1(i\\241,)-400(gorz)-1(a\\252k)1(i)-401(p)-27(o)-28(ci\\241)-28(ga\\242,)-401(s\\252o)-28(d)1(kim)-401(p)1(lac)27(ki)1(e)-1(m)]TJ 0 -13.549 Td[(w)28(olniu)1(\\261)-1(k)28(o)-363(si\\246)-363(delekto)28(w)27(a\\242)-363(i)-363(r\\363\\273no\\261ci)-363(s)-1(\\241siedzkie)-363(rozp)-28(o)28(wiada\\242,)-363(g\\252\\363)28(wnie)-363(z)-1(a\\261)-363(o)-363(t)28(ym)]TJ 0 -13.549 Td[(p)-27(o)-28(dk)28(op)1(ie)-334(p)-27(o)-28(d)-333(k)28(omor\\246)-334(tr)1(a)-56(j)1(k)28(ota\\242)-1(.)]TJ 27.879 -13.549 Td[(Zas)-1(i)1(e)-480(domo)28(w)-1(i)-479(pr)1(z)-1(ed)-479(c)27(h)1(a\\252)-1(u)1(p\\241)-479(s)-1(i)1(\\246)-480(w)-1(y)1(grze)-1(w)28(ali)-479(p)-28(or)1(e)-1(d)1(z)-1(a)-55(j\\241c)-480(z)-480(lu)1(d\\271m)-1(i)1(,)-480(j)1(ac)-1(y)]TJ -27.879 -13.55 Td[(w)28(c)-1(i\\241\\273)-401(do)-401(sadu)-400(s)-1(zli,)-401(a)-401(sro)-28(d)1(z)-1(e)-401(m)-1(edy)1(to)27(w)28(ali)-401(n)1(ad)-401(j)1(am)-1(\\241)-401(j)1(e)-1(sz)-1(cz)-1(e)-401(ni)1(e)-402(za)27(w)28(alon)1(\\241,)-401(gdy\\273)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)-333(wzbron)1(i\\252)-333(do)-333(c)-1(zas)-1(u)-333(p)1(rzyjazdu)-333(p)1(isarza)-334(i)-333(stra\\273nik)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-416(Jagu)1(s)-1(t)28(yn)1(k)56(a)-416(b)28(y\\252a)-416(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\252a)-416(o)-415(t)27(y)1(m)-1(,)-415(nie)-416(wiad)1(a)-416(ju)1(\\273)-416(dzis)-1(i)1(a)-56(j)-415(p)-28(o)]TJ -27.879 -13.549 Td[(raz)-339(kt\\363ry)84(,)-339(ki)1(e)-1(j)-338(z)-340(p)-27(o)-28(dw)28(\\363rza)-339(wyw)27(al)1(ili)-339(si\\246)-339(c)27(h\\252op)1(aki)-339(z)-339(k)28(ogutkiem.)-339(Witek)-339(ic)28(h)-339(wi\\363)-28(d)1(\\252,)]TJ 0 -13.549 Td[(wystro)-56(j)1(on)28(y)-376(sie)-1(l)1(nie,)-376(w)-377(b)1(utac)27(h)-375(na)28(w)27(et)-376(i)-376(k)55(aszkiec)-1(ie)-376(B)-1(or)1(yno)28(wym,)-376(s)-1(ro)-27(dze)-377(na)-376(b)1(akier)]TJ 0 -13.55 Td[(nad)1(z)-1(i)1(an)28(ym,)-399(a)-398(p)-28(ob)-27(ok)-398(w)-399(kup)1(ie)-399(s)-1(zed\\252)-399(M)1(ac)-1(iu)1(\\261)-399(K\\252\\246)-1(b)-27(\\363)28(w,)-399(Gu)1(lbasiak,)-398(J\\246drek,)-398(Kub)1(a)]TJ 0 -13.549 Td[(Gr)1(z)-1(eli)-357(z)-358(kr)1(z)-1(yw)28(\\241)-358(g\\246b\\241)-357(syn)-357(i)-357(dr)1(ugie.)-357(Kije)-357(m)-1(i)1(e)-1(li)-357(w)-357(r\\246)-1(k)56(ac)28(h)-357(i)-358(t)1(orb)-27(e)-1(cz)-1(ki)-357(p)1(rze)-1(z)-358(p)1(lec)-1(y)84(,)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-333(za\\261)-334(tul)1(i\\252)-334(p)-27(o)-28(d)-333(p)1(ac)27(h\\241)-333(skrzypi)1(c)-1(e)-334(P)1(ietrk)28(o)28(w)27(e.)]TJ 27.879 -13.549 Td[(Wywiedl)1(i)-410(si\\246)-410(na)-410(d)1(rog\\246)-410(z)-410(parad)1(\\241)-410(i)-409(na)-56(j)1(pi)1(e)-1(rw)28(ej)-410(r)1(usz)-1(yl)1(i)-410(do)-409(dob)1(ro)-28(d)1(z)-1(ieja,)-409(b)-28(o)]TJ -27.879 -13.549 Td[(tak)-379(p)-28(o)-379(inn)1(e)-380(roki)-379(parob)1(ki)-380(p)-27(o)-28(cz)-1(y)1(na\\252y)84(.)-380(\\221)1(m)-1(ia\\252o)-379(w)27(es)-1(zli)-379(do)-380(ogr)1(o)-28(du)1(,)-380(p)1(rz)-1(ed)-379(pleban)1(i\\246,)]TJ 0 -13.55 Td[(usta)28(wili)-400(s)-1(i\\246)-401(w)-401(r)1(z)-1(\\241d)1(,)-401(wysu)28(w)28(a)-56(j\\241c)-401(p)1(rze)-1(d)-400(si\\246)-401(k)28(ogutk)56(a.)-400(Witek)-401(zagra\\252)-401(n)1(a)-401(skrzypi)1(c)-1(y)84(,)]TJ 0 -13.549 Td[(Gu)1(lbasiak)-479(j)1(\\241\\252)-480(kr)1(\\246)-1(ci\\242)-480(cud)1(akiem)-480(i)-479(p)1(ia\\242,)-479(a)-480(wsz)-1(y)1(s)-1(cy)83(,)-479(r)1(ypi\\241c)-479(kij)1(am)-1(i)-479(i)-479(n)1(ogam)-1(i)-479(d)1(o)]TJ 0 -13.549 Td[(wt\\363ru)1(,)-333(w)-1(r)1(az)-334(z)-1(a\\261pi)1(e)-1(w)28(ali)-333(piskli)1(w)-1(i)1(e)-1(:)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(zli\\261m)27(y)-333(tu)-333(p)-27(o)-333(dyn)1(gusie)-1(!)]TJ 0 -13.549 Td[(Za\\261)-1(p)1(iew)27(am)28(y)-333(o)-334(Jez)-1(u)1(s)-1(i)1(e)-1(,)]TJ 0 -13.55 Td[(O)-333(Jez)-1(u)1(s)-1(ie,)-333(o)-334(M)1(aryj)1(e)-334(-)]TJ 0 -13.549 Td[(Da)-55(jcie)-334(nam)-333(c)-1(o,)-333(gosp)-28(o)-27(dyn)1(ie)-1(!)1(...)]TJ 0 -13.549 Td[(I)-335(d\\252u)1(go)-336(\\261pi)1(e)-1(w)28(ali,)-335(a)-335(coraz)-335(\\261)-1(miele)-1(j)-334(i)-335(rozg\\252o\\261)-1(ni)1(e)-1(j)1(,)-335(a\\273)-336(wysz)-1(ed\\252)-335(d)1(obro)-27(dzie)-1(j)-334(i)-335(p)-28(o)]TJ -27.879 -13.549 Td[(dzies)-1(i)1(\\241tku)-333(im)-333(roz)-1(d)1(a\\252,)-333(k)28(ogutk)56(a)-333(p)-28(o)-28(c)28(h)28(w)28(ali\\252)-333(i)-334(z)-333(\\252as)-1(k)56(\\241)-334(i)1(c)27(h)-333(o)-28(d)1(pu)1(\\261)-1(ci\\252...)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-454(ja\\273e)-455(s)-1(p)-27(otn)1(ia\\252)-455(ze)-455(s)-1(tr)1(ac)27(h)28(u)1(,)-455(cz)-1(y)-454(o)-454(b)-28(o)-28(\\242k)56(a)-455(n)1(ie)-455(z)-1(agad)1(a,)-455(snad)1(\\271)-455(go)-455(j)1(e)-1(d)1(-)]TJ -27.879 -13.549 Td[(nak)-448(w)-1(\\261r\\363)-28(d)-448(dr)1(ugic)28(h)-449(ni)1(e)-450(rozp)-27(oz)-1(n)1(a\\252,)-449(ale)-450(n)1(a)-449(p)-28(ok)28(o)-55(je)-449(o)-28(dsze)-1(d)1(\\252)-1(,)-448(przysy\\252a)-56(j)1(\\241c)-450(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(pr)1(z)-1(ez)-325(d)1(z)-1(iew)28(c)-1(zyn\\246)-324(s)-1(\\252o)-28(d)1(z)-1(i)1(u\\261kiego)-325(p)1(lac)27(k)56(a,)-324(\\273e)-325(h)28(u)1(kn)1(\\246)-1(li)-324(m)28(u)-324(\\261piewk)28(\\246)-325(na)-324(p)-27(o)-28(d)1(z)-1(i\\246k)28(\\246)-325(i)-324(d)1(o)]TJ 0 -13.549 Td[(organ)1(ist\\363)27(w)-333(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\246li.)]TJ 27.879 -13.549 Td[(P)28(otem)-394(za\\261)-394(ju)1(\\273)-394(c)27(ha\\252u)1(p)28(y)-393(na)28(wie)-1(d)1(z)-1(al)1(i)-394(wraz)-394(z)-394(ca\\252\\241)-394(c)28(hmar\\241)-393(dzie)-1(ci)-393(roz)-1(wr)1(z)-1(es)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(an)28(y)1(c)27(h)-377(i)-376(tak)-377(si\\246)-378(cisn\\241cyc)27(h)1(,)-377(\\273e)-378(m)28(usie)-1(l)1(i)-377(obr)1(ania\\242)-377(k)28(ogutk)56(a)-377(p)1(rze)-1(d)-376(nap)-27(orem)-1(,)-376(gdy\\273)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-334(pi)1(\\363rek)-334(c)28(hcia\\252o)-334(t)28(y)1(k)55(a\\242)-333(i)-334(k)1(ijasz)-1(k)1(ie)-1(m)-333(z)-1(ar)1(uc)27(h)1(a\\242)-1(.)]TJ 27.879 -13.55 Td[(Wit)1(e)-1(k)-458(ic)28(h)-458(pr)1(o)27(w)28(adzi\\252)-458(rej)-458(wio)-28(d)1(\\241)-1(c)-458(i)-458(na)-458(ws)-1(zystk)28(o)-459(ma)-55(j\\241c)-459(cz)-1(u)1(jn)1(e)-459(ok)28(o,)-458(nog\\241)]TJ -27.879 -13.549 Td[(zna\\242)-282(d)1(a)28(w)27(a\\252,)-281(b)28(y)-281(zac)-1(zyn)1(a\\242)-1(,)-281(a)-281(sm)27(yk)1(ie)-1(m)-281(rz\\241dzi\\252,)-281(k)56(a)-56(j)-281(n)28(u)1(t\\246)-282(wyci\\241)-28(ga\\242)-281(c)-1(i)1(e)-1(n)1(iu\\261k)56(\\241,)-281(a)-282(k)1(ie)-1(j)]TJ\nET\nendstream\nendobj\n1430 0 obj <<\n/Type /Page\n/Contents 1431 0 R\n/Resources 1429 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1429 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1434 0 obj <<\n/Length 9524      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(447)]TJ -358.232 -35.866 Td[(gru)1(b\\241;)-366(j)1(e)-1(m)28(u)-366(te\\273)-367(o)-28(d)1(da)28(w)27(al)1(i)-366(go\\261)-1(ci\\253ce.)-366(A)-367(z)-366(tak)56(\\241)-366(parad)1(\\241)-366(s)-1(i\\246)-366(w)27(o)-28(d)1(z)-1(i)1(li)-366(i)-366(tak)-366(sz)-1(u)1(m)-1(n)1(ie,)]TJ 0 -13.549 Td[(ja\\273e)-303(n)1(a)-303(ca\\252\\241)-302(w)-1(i)1(e)-1(\\261)-302(roz)-1(n)1(os)-1(i)1(\\252y)-302(s)-1(i\\246)-302(\\261)-1(p)1(ie)-1(w)28(ani)1(a)-303(i)-302(p)1(rzygrywki)-302(skrzyp)1(ic)-1(y)84(,)-302(a)-302(lud)1(z)-1(i)1(e)-303(wielc)-1(e)]TJ 0 -13.549 Td[(si\\246)-390(d)1(z)-1(iw)28(o)28(w)27(al)1(i,)-389(\\273e)-390(to)-389(skrzat)28(y)83(,)-389(l)1(e)-1(d)1(w)-1(i)1(e)-390(o)-28(d)1(ros\\252)-1(e)-389(o)-28(d)-388(z)-1(iemie)-1(,)-388(a)-389(p)-28(o)-28(czyna)-55(j\\241)-389(sobie)-389(nib)29(y)]TJ 0 -13.549 Td[(par)1(obki)1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-337(zac)27(h\\363)-27(d)-338(si\\246)-338(ju)1(\\273)-339(mia\\252o,)-338(p)-27(o)-28(cz)-1(erwienia\\252e)-338(\\271dzie)-1(b)1(k)28(o)-338(s)-1(\\252o\\253)1(c)-1(e)-338(pr)1(z)-1(etacz)-1(a\\252o)-338(si\\246)]TJ -27.879 -13.55 Td[(nad)-340(b)-27(ory)84(,)-341(a)-340(p)-28(o)-340(niebi)1(e)-342(mo)-28(d)1(rym)-341(r)1(oz)-1(w\\252\\363)-28(cz)-1(y\\252y)-340(s)-1(i)1(\\246)-342(b)1(ia\\252e)-341(c)27(h)1(m)27(u)1(rki,)-340(kiej)-340(te)-341(niepr)1(z)-1(eli-)]TJ 0 -13.549 Td[(cz)-1(on)1(e)-298(s)-1(tad)1(o)-298(g\\246s)-1(i)1(,)-297(w)-1(i)1(ate)-1(r)-297(si\\246)-298(te\\273)-298(ru)1(c)27(ha\\252)-297(k)56(a)-56(j)1(\\261)-298(g\\363r\\241)-297(c)27(h)28(wiej\\241c)-298(cz)-1(u)1(bami)-297(ord)1(z)-1(a)28(wia\\252yc)27(h)]TJ 0 -13.549 Td[(top)-27(oli,)-285(a)-286(w)28(e)-286(w)-1(si)-285(c)-1(zyni)1(\\252)-1(o)-285(s)-1(i)1(\\246)-286(c)-1(oraz)-286(r)1(o)-56(j)1(niej)-285(i)-286(gw)28(arli)1(w)-1(i)1(e)-1(j)1(:)-286(starsi)-286(p)-27(oredzali)-285(przed)-286(c)28(ha-)]TJ 0 -13.549 Td[(\\252up)1(am)-1(i)-408(zas)-1(ieda)-55(j\\241c)-409(p)1(rogi,)-408(d)1(z)-1(ieuc)28(h)28(y)-408(gz)-1(i\\252y)-408(s)-1(i)1(\\246)-409(nad)-408(sta)28(w)27(em)-409(lub)-408(u)1(j\\241)28(ws)-1(zy)-408(s)-1(i\\246)-408(w)-1(p)-27(\\363\\252)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi\\252y)-458(k)28(olebi\\241co,)-459(p)1(ies)-1(n)1(e)-1(cz)-1(ki)-458(za)27(w)28(o)-28(d)1(z)-1(\\241c,)-459(i)1(\\273)-459(kiej)-458(kwiat)28(y)-459(mak)28(o)28(w)27(e)-459(l)1(e)-1(b)-27(o)-459(n)1(as)-1(tu)1(r-)]TJ 0 -13.549 Td[(cji)-361(roi\\252y)-361(s)-1(i)1(\\246)-362(m)-1(i)1(\\246)-1(d)1(z)-1(y)-361(dr)1(z)-1(ew)-1(i)1(nami,)-361(w)27(e)-362(w)28(o)-28(d)1(z)-1(ie)-362(si\\246)-362(o)-28(d)1(bi)1(ja)-56(j)1(\\241c)-362(ni)1(b)28(y)-361(w)-362(lustrze,)-362(d)1(z)-1(i)1(e)-1(ci)]TJ 0 -13.55 Td[(lata\\252y)-333(z)-334(d)1(yngu)1(s)-1(i)1(arz)-1(ami,)-333(za\\261)-334(jesz)-1(cz)-1(e)-334(i)1(nsi)-334(w)-333(p)-27(ola)-334(szli)-333(m)-1(i)1(e)-1(d)1(z)-1(ami.)]TJ 27.879 -13.549 Td[(Na)-308(n)1(ies)-1(zp)-28(\\363r)-307(j)1(u\\273)-308(p)1(rze)-1(dzw)28(aniali)1(,)-308(k)1(ie)-1(j)-307(gr)1(ub)1(a)-308(P\\252osz)-1(k)28(o)28(w)28(a,)-308(o)-27(dwiedziws)-1(zy)-308(p)1(rz\\363-)]TJ -27.879 -13.549 Td[(dzi)-333(Boryn\\246,)-333(w)27(c)28(ho)-28(d)1(z)-1(i)1(\\252a)-334(d)1(o)-334(Han)1(ki.)]TJ 27.879 -13.549 Td[({)-281(By\\252am)-281(u)-281(c)27(h)1(orego.)-281(Jez)-1(u)1(,)-281(a)-281(to)-281(le\\273)-1(y)84(,)-281(j)1(ak)-281(le\\273)-1(a\\252..)1(.)-281(Zagadyw)28(a\\252am:)-281(ani)-280(s)-1(p)-27(o)-56(j)1(rza\\252)]TJ -27.879 -13.549 Td[(na)-400(mnie.)-400(S\\252o\\253)1(c)-1(e)-401(m)28(u)-400(\\261)-1(wiec)-1(i)-400(n)1(a)-401(\\252\\363\\273k)28(o,)-400(to)-401(j)1(e)-401(p)1(alicam)-1(i)-400(zagrabi)1(a,)-401(j)1(akb)28(y)-400(w)-400(gar\\261c)-1(ie)]TJ 0 -13.55 Td[(c)27(h)1(c)-1(i)1(a\\252)-417(u)1(j\\241\\242)-416(i)-416(ki)1(e)-1(j)-415(to)-416(m)-1(al)1(u\\261kie)-416(dziec)-1(i\\241tk)28(o)-416(w)-416(n)1(im)-416(grz)-1(ebi)1(e)-1(!)-415(Prosto)-416(p\\252ak)56(a\\242,)-416(c)-1(o)-415(s)-1(i\\246)]TJ 0 -13.549 Td[(to)-407(z)-408(c)-1(z\\252o)27(wiek)56(a)-408(zrobi)1(\\252)-1(o!)-407({)-407(roz)-1(p)-27(o)28(wiada\\252a)-407(s)-1(iad)1(a)-56(j)1(\\241c)-408(przy)-407(\\252\\363\\273)-1(ku)1(,)-408(al)1(e)-408(przepi\\252a)-407(jak)-407(i)]TJ 0 -13.549 Td[(dr)1(ugie,)-333(s)-1(i)1(\\246)-1(ga)-55(j\\241c)-334(d)1(o)-334(p)1(lac)27(k)56(a.)-333({)-333(Jada)-333(to)-333(te)-1(r)1(az)-1(,)-333(b)-27(o)-334(wid)1(z)-1(i)-333(mi)-333(s)-1(i)1(\\246)-334(p)-28(ot)1(\\252)-1(u)1(\\261)-1(cia\\252?)]TJ 27.879 -13.549 Td[({)-333(Ju\\273)-334(n)1(iez)-1(gor)1(z)-1(ej,)-333(\\273)-1(e)-333(m)-1(o\\273e)-334(m)28(u)-333(ku)-333(zdro)28(wiu)-333(id)1(z)-1(i)1(e)-1(!.)1(..)]TJ 0 -13.549 Td[({)-356(Ch\\252op)1(aki)-356(p)-27(osz)-1(\\252y)-355(z)-357(k)28(ogu)1(tkiem)-356(do)-355(W)83(oli)1(!)-356({)-356(zatra)-55(jk)28(ota\\252a)-356(J)1(\\363z)-1(k)56(a)-356(wpad)1(a)-56(j)1(\\241c)-1(,)]TJ -27.879 -13.55 Td[(ale)-334(d)1(o)-56(j)1(rza)27(wsz)-1(y)-333(P)1(\\252)-1(oszk)28(o)27(w)28(\\241,)-333(wynies\\252)-1(a)-333(si\\246)-334(p)1(rz)-1(ed)-333(dom)-333(do)-333(Jagusi.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a,)-333(b)28(yd)1(\\252o)-334(cz)-1(as)-333(obrz\\241dza\\242!)-334({)-333(za)27(w)28(o\\252a\\252a.)]TJ 0 -13.549 Td[({)-302(P)28(ew)-1(n)1(ie)-303(k)28(om)28(u)-302(\\261)-1(wi\\246ta,)-302(to)-302(\\261w)-1(i)1(\\246)-1(ta,)-302(a)-302(br)1(z)-1(u)1(c)27(h)-302(za)28(w)-1(d)1(y)-302(o)-302(g\\252)-1(o)-27(dzie)-303(p)1(am)-1(i\\246ta!)-302(Byli)]TJ -27.879 -13.549 Td[(z)-311(k)28(ogu)1(tkiem)-310(i)-310(u)-310(mnie...)-309(s)-1(p)1(ra)28(wn)28(y)-310(ten)-310(w)28(as)-1(z)-310(Witek)-310(i)-310(ze)-311(\\261le)-1(p)1(i\\363)28(w)-310(m)27(u)-310(d)1(obr)1(z)-1(e)-310(patr)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(do)-333(\\014gl\\363)28(w)-333(pierws)-1(zy)84(,)-334(d)1(o)-333(rob)-27(ot)27(y)-333(j)1(e)-1(n)1(o)-334(go)-333(trza)-333(kij)1(e)-1(m)-334(n)1(ap)-27(\\246)-1(d)1(z)-1(a\\242!)]TJ 0 -13.55 Td[({)-338(Moi\\261c)-1(i)1(e)-1(,)-338(a)-338(dy\\242)-338(z)-1(e)-339(s\\252u\\273b\\241)-338(ws)-1(z\\246)-1(d)1(y)-338(jedn)1(ak)55(a)-338(b)1(ie)-1(d)1(a!)-338(M\\252yn)1(arzo)27(w)28(a)-338(s)-1(i\\246)-338(prze)-1(d)1(e)]TJ -27.879 -13.549 Td[(mn\\241)-333(usk)56(ar\\273)-1(a\\252a)-333(na)-333(sw)27(o)-55(je)-334(d)1(z)-1(iewki,)-333(\\273e)-334(p)-27(\\363\\252)-334(rok)1(u)-333(utr)1(z)-1(yma\\242)-334(n)1(ie)-334(mo\\273)-1(e.)]TJ 27.879 -13.549 Td[({)-333(Pr\\246dk)28(o)-333(si\\246)-334(tam)-334(d)1(orab)1(ia)-56(j)1(\\241)-334(d)1(z)-1(i)1(e)-1(ciak)28(\\363)28(w...)-333(\\221wie\\273)-1(y)-333(c)28(hleb)-333(p)-27(om)-1(aga!)]TJ 0 -13.549 Td[({)-338(Chleb)-338(jak)-338(c)28(hleb,)-338(al)1(e)-339(to)-338(c)-1(ze)-1(l)1(adn)1(ik)-338(s)-1(p)1(ra)28(wi,)-338(to)-338(s)-1(y)1(ne)-1(k)1(,)-338(te)-1(n)-337(z)-339(klas,)-338(do)-338(d)1(om)27(u)]TJ -27.879 -13.549 Td[(za)-56(jr)1(z)-1(y)84(,)-261(a)-261(p)-28(o)28(wiada)-55(j\\241,)-261(\\273e)-262(i)-261(sam)-262(m\\252ynar)1(z)-262(\\273)-1(ad)1(nej)-261(n)1(ie)-262(pr)1(z)-1(epu)1(\\261)-1(ci..)1(.)-261(to)-262(i)-261(tr)1(ud)1(no)-261(dziew)-1(k)1(i)]TJ 0 -13.55 Td[(dot)1(rz)-1(y)1(m)-1(a\\242)-439(d)1(o)-438(roku)1(.)-439(Co)-438(pr)1(a)27(wd)1(a,)-439(t)1(o)-439(i)-438(s\\252u\\273ba)-438(hard)1(z)-1(i)1(e)-1(j)1(e)-1(..)1(.)-439(M)1(\\363)-56(j)-438(an)1(o)-439(c)28(h\\252op)1(ak)-439(d)1(o)]TJ 0 -13.549 Td[(pasion)1(ki,)-389(\\273)-1(e)-390(to)-389(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-390(w)-390(d)1(om)27(u)-389(br)1(ak,)-390(za)-390(p)1(s)-1(a)-389(me)-390(u)28(w)27(a\\273a)-390(i)-389(k)56(a\\273)-1(e)-390(se)-390(m)-1(l)1(e)-1(k)56(a)-390(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)-28(dwiec)-1(zorek)-333(p)-28(o)-27(da)28(w)27(a\\242!)-333(S\\252ysz)-1(an)1(e)-334(to)-333(rze)-1(cz)-1(y)1(!)]TJ 27.879 -13.549 Td[({)-340(P)28(arob)1(k)56(a)-340(m)-1(am,)-340(to)-340(mi)-340(nie)-340(no)28(win)1(a,)-340(c)-1(ze)-1(go)-340(im)-340(si\\246)-341(zac)27(h)1(c)-1(iew)27(a,)-339(ale)-341(go)-28(d)1(z)-1(i)1(\\242)-341(si\\246)]TJ -27.879 -13.549 Td[(na)-414(ws)-1(zy\\242)-1(k)28(o)-414(m)27(u)1(s)-1(z\\246)-1(,)-414(b)-28(o)-414(p)-28(\\363)-55(jd)1(z)-1(i)1(e)-416(se)-415(w)27(e)-415(\\261wiat)-415(w)-415(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ksz\\241)-415(rob)-27(ot\\246)-415(i)-415(c\\363\\273)-415(p)-27(o)-28(c)-1(zn\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(n)1(ie)-1(go)-333(w)-334(t)28(yl)1(im)-334(gosp)-28(o)-27(darst)28(wie)-1(!)]TJ 27.879 -13.55 Td[({)-333(\\233e)-1(b)28(y)-333(go)-333(w)27(ama)-333(t)28(ylk)28(o)-333(nie)-333(o)-28(dm\\363)28(w)-1(i)1(\\252a)-334(kt)1(\\363ra)-333({)-334(r)1(z)-1(ek\\252a)-334(cisz)-1(ej.)]TJ 0 -13.549 Td[({)-333(Wiec)-1(ie)-333(to)-334(co?)-334({)-333(zatrw)28(o\\273)-1(y\\252a)-333(s)-1(i)1(\\246)-334(ni)1(e)-1(ma\\252o.)]TJ 0 -13.549 Td[({)-472(Dos)-1(z\\252o)-473(me)-473(cos)-1(ik)-472(z)-473(b)-27(oku)1(...)-472(mo\\273)-1(e)-473(cygan)1(i\\241,)-472(to)-473(n)1(ie)-473(r)1(oz)-1(p)-27(o)28(w)-1(i)1(adam.)-473(Hal)1(e)-1(,)]TJ -27.879 -13.549 Td[(gadu)1(,)-289(gadu)1(,)-289(a)-290(z)-289(c)-1(zym)-290(to)-289(j)1(a)-290(p)1(rzys)-1(z\\252am?)-290(Ob)1(ie)-1(ca\\252y)-289(s)-1(i)1(\\246)-290(pr)1(z)-1(yj)1(\\261)-1(\\242)-289(niekt\\363r)1(e)-1(,)-289(u)1(gw)27(arzym)]TJ 0 -13.549 Td[(si\\246)-1(,)-332(sierot)28(y)83(,)-332(p)1(rzyjd)1(\\271)-1(cie)-333(i)-332(wy)83(.)1(..)-332(jak\\273e)-1(,)-332(Bory)1(no)28(w)27(ej)-332(b)28(y)-332(n)1(ie)-333(b)28(y\\252o,)-332(ki)1(e)-1(j)-332(co)-332(na)-56(j)1(pi)1(e)-1(rwsz)-1(e)]TJ 0 -13.55 Td[(si\\246)-334(zbier\\241.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(p)-28(o)-28(c)28(hlebi)1(a\\252)-1(a,)-350(ale)-351(Han)1(k)56(a)-351(wym\\363)28(w)-1(i)1(\\252)-1(a)-350(si\\246)-351(s)-1(\\252ab)-27(o\\261)-1(ci\\241,)-350(p)-27(o)-351(pr)1(a)28(w)-1(d)1(z)-1(i)1(e)-1(,)-350(b)-27(o)-351(ju)1(\\273)]TJ\nET\nendstream\nendobj\n1433 0 obj <<\n/Type /Page\n/Contents 1434 0 R\n/Resources 1432 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1432 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1437 0 obj <<\n/Length 10016     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(448)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(p)-27(o)-28(c)-1(zu\\252a)-333(si\\246)-334(\\271dzie)-1(b)1(k)28(o)-334(n)1(apit)1(\\241.)]TJ 27.879 -13.549 Td[(P\\252osz)-1(k)28(o)28(w)28(a,)-333(w)-1(i)1(e)-1(lce)-334(mark)28(otn)1(a)-334(o)-27(dmo)27(w)28(\\241,)-333(Jagn\\246)-333(p)-28(osz)-1(\\252a)-333(zaprasz)-1(a\\242.)]TJ 0 -13.549 Td[(Ale)-326(i)-326(Jagusia)-326(s)-1(i\\246)-326(wym)-1(a)28(wia\\252a,)-326(\\273e)-327(to)-326(ju)1(\\273)-327(k)56(a)-56(j)1(\\261)-327(in)1(dziej)-326(z)-327(matk)56(\\241)-327(si\\246)-326(obiec)-1(a\\252y)84(...)]TJ 0 -13.549 Td[({)-428(P)28(os)-1(zlib)29(y\\261)-1(cie,)-429(J)1(agna,)-428(c)27(kn)1(i)-429(si\\246)-429(w)28(ama)-429(za)-429(c)28(h\\252opami,)-428(a)-428(do)-429(P)1(\\252os)-1(zk)28(o)28(w)27(ej)-428(ani)]TJ -27.879 -13.549 Td[(c)27(h)29(ybi)-447(c)-1(o)-447(Jam)27(b)1(ro\\273y)-448(za)-56(j)1(rz)-1(y)-447(alb)-27(o)-448(kt)1(\\363re)-1(n)-447(z)-448(d)1(z)-1(iad)1(k)28(\\363)28(w)-448(i)-448(za)28(w)-1(\\273dy)-447(c)27(h)1(o)-28(cia)-448(p)-27(ortk)56(ami)]TJ 0 -13.55 Td[(zale)-1(ci..)1(.)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(Jagust)28(ynk)56(a)-333(s)-1(p)-27(o)-28(d)-333(c)28(ha\\252up)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(wy)-333(to)-333(p)-28(o)-333(sw)27(o)-55(jem)27(u)-333(t)28(ym)-333(s)-1(\\252o)28(w)27(em)-334(ki)1(e)-1(b)28(y)-333(n)1(o\\273)-1(em)-334(\\273gac)-1(i)1(e)-1(...)]TJ 0 -13.549 Td[({)-333(W)83(es)-1(o\\252o)-333(mi,)-333(tom)-334(rad)1(a)-333(ku\\273dem)27(u)1(,)-334(cze)-1(go)-333(m)27(u)-333(p)-27(otrza!)-333({)-333(s)-1(zydzi\\252a.)]TJ 0 -13.549 Td[(Jagu)1(\\261)-345(c)-1(i)1(e)-1(p)1(n\\246\\252)-1(a)-344(si\\246)-345(ze)-345(z)-1(\\252o\\261c)-1(i)-344(i)-344(na)-344(d)1(rog\\246)-345(wysz)-1(\\252a,)-344(b)-27(e)-1(zradn)1(ie)-345(w)28(o)-28(d)1(z)-1(\\241c)-345(o)-28(czym)-1(a)]TJ -27.879 -13.549 Td[(p)-27(o)-334(\\261wie)-1(cie)-334(i)-333(l)1(e)-1(d)1(w)-1(i)1(e)-334(p\\252acz)-334(ws)-1(tr)1(z)-1(ym)28(uj)1(\\241c)-1(.)-333(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(s)-1(i\\246)-333(jej)-333(s)-1(tr)1(as)-1(znie)-333(c)27(kn)1(i\\252o!)]TJ 27.879 -13.549 Td[(C\\363\\273)-1(,)-352(\\273)-1(e)-353(\\261wi\\246)-1(ta)-352(c)-1(zu\\242)-353(b)28(y)1(\\252)-1(o)-352(ws)-1(z\\246)-1(d)1(z)-1(ie,)-353(\\273e)-353(lu)1(dzie)-353(s)-1(i\\246)-353(r)1(oili,)-352(\\273)-1(e)-353(\\261m)-1(i)1(e)-1(c)27(h)29(y)-353(i)-352(krzyki)]TJ -27.879 -13.55 Td[(trz\\246s)-1(\\252y)-228(s)-1(i)1(\\246)-229(nad)-228(wsi\\241,)-228(\\273)-1(e)-229(n)1(a)28(w)27(et)-229(p)-27(o)-228(s)-1(zaryc)28(h)-228(p)-28(ol)1(ac)27(h)-228(c)-1(zerwie)-1(n)1(ia\\252y)-228(k)28(obiet)28(y)-228(i)-228(pies)-1(n)1(e)-1(cz)-1(k)1(i)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-328(niek)56(a)-56(j)-327(d)1(z)-1(w)28(oni\\252y?..)1(.)-328({)-327(jej)-327(b)28(y\\252o)-327(s)-1(m)28(utn)1(ie)-328(i)-327(tak)-328(c)28(kno)-327(cz)-1(ego\\261)-1(,)-327(\\273)-1(e)-327(ju\\273)-328(wyt)1(rz)-1(y)1(m)-1(a\\242)]TJ 0 -13.549 Td[(ni)1(e)-317(mog\\252a.)-316(Od)-316(sam)-1(ego)-316(rana)-316(tak)-316(j)1(\\241)-316(c)-1(osik)-316(rozpi)1(e)-1(r)1(a\\252)-1(o)-316(i)-316(p)-27(onosi\\252o,)-316(\\273e)-317(p)-27(o)-316(z)-1(n)1(a)-56(jom)28(yc)27(h)]TJ 0 -13.549 Td[(lata\\252a,)-254(p)-27(o)-254(drogac)28(h,)-254(w)-254(p)-28(ol)1(e)-255(wyc)27(h)1(o)-28(dzi\\252a)-254(i)-254(na)28(w)28(e)-1(t)-254(co\\261)-255(ze)-255(trzy)-254(razy)-254(s)-1(i)1(\\246)-255(pr)1(z)-1(eob\\252\\363)-28(czy\\252a,)]TJ 0 -13.549 Td[(na)-349(d)1(armo)-349(ws)-1(zystk)28(o,)-349(ni)1(e)-350(p)-27(om)-1(og\\252o:)-349(r)1(w)27(a\\252o)-349(j)1(\\241)-349(c)-1(or)1(az)-350(b)1(arz)-1(ej,)-348(b)28(y)-349(gd)1(z)-1(ies)-1(i)1(k)-349(lec)-1(ie\\242,)-349(c)-1(o\\261)]TJ 0 -13.55 Td[(rob)1(i\\242,)-334(szuk)56(a\\242)-334(cz)-1(ego\\261)-1(..)1(.)]TJ 27.879 -13.549 Td[(\\233e)-274(i)-273(te)-1(r)1(az)-274(s)-1(i)1(\\246)-274(p)-28(on)1(ies)-1(\\252a)-273(a\\273)-274(na)-273(top)-27(olo)28(w)27(\\241)-273(drog\\246)-273(i)-274(sz)-1(\\252a)-273(za)-1(p)1(atrzona)-273(w)-274(cz)-1(erw)28(on\\241,)]TJ -27.879 -13.549 Td[(ogromn\\241)-284(ku)1(l\\246)-285(s\\252o\\253ca,)-284(spada)-55(j\\241ce)-1(go)-284(n)1(ad)-284(b)-27(ory)83(,)-284(sz\\252)-1(a)-284(p)1(rze)-1(z)-284(te)-285(pr)1(ogi)-284(c)-1(i)1(e)-1(n)1(i\\363)28(w)-285(i)-284(l\\261ni)1(e)-1(\\253)1(,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-334(z)-1(ac)28(h\\363)-28(d)-332(rz)-1(u)1(c)-1(a\\252)-333(pr)1(z)-1(ez)-334(dr)1(z)-1(ew)27(a.)]TJ 27.879 -13.549 Td[(Ch\\252\\363)-28(d)-415(mrok)28(\\363)28(w)-415(j\\241)-415(o)28(w)-1(i)1(on\\241\\252,)-415(a)-416(cic)28(he,)-416(n)1(agrzane)-416(d)1(yc)27(h)1(anie)-415(p)-28(\\363l)-415(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252)-1(o)]TJ -27.879 -13.55 Td[(na)-405(wskro\\261)-406(l)1(ub)28(y)1(m)-406(dy)1(gote)-1(m;)-405(o)-28(d)-405(wsi)-405(goni\\252y)-405(s\\252abn)1(\\241c)-1(e)-406(gw)28(ary)84(,)-405(a)-405(s)-1(k)56(\\241dci\\261)-405(z)-1(a)28(wie)-1(w)28(a\\252)]TJ 0 -13.549 Td[(za)27(w)28(o)-28(d)1(liwy)-302(g\\252os)-302(skrzypi)1(c)-1(y)-301(i)-302(cz)-1(epi)1(a\\252)-302(s)-1(i\\246)-302(se)-1(r)1(c)-1(a,)-301(kiejb)29(y)-302(ta)-301(z)-1(\\252ot)28(ymi)-302(r)1(os)-1(ami)-302(b)1(rz\\246)-1(cz)-1(\\241ca)]TJ 0 -13.549 Td[(pa)-55(j\\246c)-1(zyn)1(a,)-420(j)1(a\\273)-1(e)-420(r)1(oz)-1(sn)28(u\\252a)-419(s)-1(i\\246)-420(w)-420(cic)28(h)28(u\\261kim)-420(tr)1(z)-1(ep)-28(o)-27(c)-1(ie)-420(top)-27(oli)1(,)-420(w)-420(mrok)56(ac)27(h)1(,)-420(co)-420(j)1(u\\273)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252za\\252y)-334(b)1(ru)1(z)-1(d)1(am)-1(i)-333(i)-333(cz)-1(ai\\252y)-333(si\\246)-334(w)-333(krzac)27(h)-333(tar)1(nin)1(.)]TJ 27.879 -13.549 Td[(Sz\\252a)-333(prze)-1(d)-332(s)-1(iebi)1(e)-1(,)-333(ani)-333(wiedz\\241c)-1(,)-333(co)-334(j)1(\\241)-333(nies)-1(i)1(e)-334(i)-333(dok)56(\\241d.)]TJ 0 -13.55 Td[(Wzdyc)28(ha\\252a)-317(g\\252\\246)-1(b)-27(ok)28(o,)-317(c)-1(zas)-1(ami)-317(r\\246c)-1(e)-317(rozw)27(o)-28(d)1(z)-1(\\241c,)-317(c)-1(zas)-1(ami)-317(pr)1(z)-1(ysta)-55(j\\241c)-318(b)-27(e)-1(zrad)1(-)]TJ -27.879 -13.549 Td[(ni)1(e)-319(i)-317(to)-28(c)-1(z\\241c)-318(roz)-1(p)1(alon)28(y)1(m)-1(i)-318(o)-27(c)-1(zyma,)-318(jak)1(b)28(y)-318(zac)-1(ze)-1(p)1(ki)-318(d)1(la)-318(ud)1(r\\246c)-1(zonej)-318(d)1(usz)-1(y)-318(szuk)56(a\\252a,)]TJ 0 -13.549 Td[(ale)-417(sz)-1(\\252a)-417(d)1(ale)-1(j)-416(pr)1(z)-1(\\246d\\241c)-417(m)27(y)1(\\261)-1(li)-416(wiotkie)-417(i)-416(nik\\252e,)-417(j)1(ak)28(o)-417(te)-417(\\261)-1(wietliste)-417(ni)1(c)-1(i)-417(n)1(a)-417(w)28(o)-28(dzie,)]TJ 0 -13.549 Td[(\\273e)-440(ni)1(e)-440(uc)28(h)28(ycis)-1(z,)-439(b)-27(o)-440(zm\\241c)-1(\\241)-439(s)-1(i)1(\\246)-440(i)-439(pr)1(z)-1(epad)1(n\\241)-439(o)-28(d)-439(cienia)-439(r\\246ki.)-439(P)29(atrz)-1(a\\252a)-439(w)-439(s)-1(\\252o\\253)1(c)-1(e,)]TJ 0 -13.549 Td[(ni)1(e)-339(w)-1(i)1(dz\\241c)-339(nicz)-1(ego,)-339(t)1(op)-28(ole,)-338(c)-1(o)-338(rz)-1(\\246dami)-338(p)-28(o)-27(c)27(h)28(yl)1(a\\252)-1(y)-338(si\\246)-339(nad)-338(n)1(i\\241,)-339(zda\\252y)-338(s)-1(i)1(\\246)-339(jej)-339(j)1(ak)28(o)]TJ 0 -13.55 Td[(zam)-1(glon)1(e)-368(pr)1(z)-1(yp)-27(omnieni)1(a...)-367(Siebi)1(e)-368(jeno)-367(m)-1(o)-28(cno)-367(cz)-1(u)1(\\252)-1(a)-367(i)-367(to,)-368(\\273e)-368(j\\241)-367(rozpiera)-367(a\\273)-1(e)-368(d)1(o)]TJ 0 -13.549 Td[(b)-27(olu,)-350(do)-351(kr)1(z)-1(yk)1(u,)-351(d)1(o)-351(p\\252acz)-1(u,)-350(\\273)-1(e)-351(j\\241)-351(p)-27(onosi)-351(gd)1(z)-1(ies)-1(i)1(k,)-351(i\\273)-351(c)-1(zepi\\252ab)28(y)-350(s)-1(i\\246)-351(t)28(yc)27(h)-350(ptak)28(\\363)28(w)]TJ 0 -13.549 Td[(lec)-1(\\241cyc)27(h)-412(p)-27(o)-28(d)-412(z)-1(ac)28(h\\363)-28(d)-412(i)-412(na)-412(kra)-55(j)-413(\\261wiata)-413(p)-27(ofr)1(un)1(\\246)-1(\\252a.)-412(Wz)-1(b)1(iera\\252a)-413(w)-413(n)1(iej)-413(j)1(ak)56(a\\261)-414(mo)-28(c)]TJ 0 -13.549 Td[(pal)1(\\241c)-1(a)-432(i)-431(tak)-432(r)1(z)-1(ewliw)28(a,)-432(\\273e)-433(\\252zy)-432(p)1(rzys)-1(\\252an)1(ia\\252y)-432(o)-27(c)-1(zy)-432(i)-431(ognie)-432(si\\246)-432(p)-28(o)-432(n)1(iej)-432(r)1(oz)-1(lew)28(a\\252)-1(y)1(;)]TJ 0 -13.549 Td[(rw)28(a\\252a)-334(l)1(e)-1(p)1(kie,)-333(pac)27(h)1(n\\241ce)-334(p)-27(\\246)-1(d)1(y)-334(t)1(op)-28(oli)1(,)-333(c)27(h\\252o)-28(d)1(z)-1(\\241c)-333(nimi)-333(rozpalon)1(e)-334(usta)-333(i)-333(o)-28(c)-1(zy)84(...)]TJ 27.879 -13.549 Td[(Cz)-1(ase)-1(m)-251(pr)1(z)-1(y)1(s)-1(iad)1(a\\252a)-252(p)-27(o)-28(d)-250(drzew)27(em)-252(i)-251(skul)1(ona,)-251(wspar\\252sz)-1(y)-251(t)28(w)28(arz)-251(na)-251(pi)1(\\246)-1(\\261c)-1(iac)28(h,)]TJ -27.879 -13.55 Td[(zapada\\252a)-226(w)-227(sie)-1(b)1(ie)-227(b)-27(e)-1(z)-227(p)1(am)-1(i)1(\\246)-1(ci,)-226(c)-1(isn\\241c)-227(si\\246)-227(j)1(e)-1(n)1(o)-227(d)1(o)-227(p)1(nia)-226(i)-227(p)1(r\\246\\273)-1(\\241c...)-226(i)-226(le)-1(d)1(wie)-227(dy)1(s)-1(z\\241c)-1(..)1(.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-268(i)-268(w)-268(n)1(ie)-1(j)-267(wios)-1(n)1(a)-268(za\\261)-1(p)1(ie)-1(w)28(a\\252a)-268(s)-1(w)28(o)-56(j)1(\\241)-268(pi)1(e)-1(\\261\\253)-268(u)1(paln)1(\\241,)-268(\\273e)-269(b)1(ur)1(z)-1(y\\252o)-268(si\\246)-268(w)-268(niej)]TJ -27.879 -13.549 Td[(i)-317(cos)-1(i)1(k)-317(p)-27(o)-28(cz)-1(yn)1(a\\252o,)-317(jak)28(o)-316(w)-317(t)27(y)1(c)27(h)-316(z)-1(iemiac)27(h)-316(ro)-28(d)1(n)28(yc)27(h)1(,)-317(u)1(gorem)-318(l)1(e)-1(\\273\\241c)-1(y)1(c)27(h,)-316(p)-28(o)-27(c)-1(zyna)-316(s)-1(i\\246)]TJ 0 -13.549 Td[(o)-401(wio\\261nie,)-401(j)1(ak)28(o)-401(w)-401(t)28(yc)27(h)-400(dr)1(z)-1(ew)-1(i)1(nac)27(h)1(,)-401(op)1(it)28(yc)27(h)-400(mo)-28(c)-1(\\241)-400(ros)-1(t)1(u,)-401(\\261pi)1(e)-1(w)28(a)-401(i)-401(j)1(ak)28(o)-401(ws)-1(z\\246)-1(d)1(y)]TJ 0 -13.549 Td[(si\\246)-334(rozpr)1(\\246)-1(\\273a,)-333(kiej)-333(pierwsz)-1(e)-334(s\\252o\\253ce)-334(pr)1(z)-1(y)1(grz)-1(eje...)]TJ 27.879 -13.55 Td[(Dygota\\252a)-385(w)-385(sobie,)-385(pal)1(i\\252y)-385(j\\241)-385(o)-27(c)-1(zy)83(,)-384(z)-1(a\\261)-385(om)-1(d)1(la\\252e)-386(n)1(ogi)-385(stula\\252y)-385(si\\246)-385(b)-28(ez)-1(w)28(oln)1(ie)]TJ -27.879 -13.549 Td[(i)-379(ledwie)-380(j)1(\\241)-380(n)1(ie)-1(s\\252y)83(.)-379(P)1(\\252ak)55(a\\242)-380(si\\246)-380(j)1(e)-1(j)-379(c)28(hcia\\252o,)-379(\\261)-1(p)1(ie)-1(w)28(a\\242)-1(,)-379(tar)1(z)-1(a\\242)-380(p)-27(o)-379(run)1(iac)27(h)-379(zb)-27(\\363\\273)-380(m)-1(i)1(\\246)-1(-)]TJ\nET\nendstream\nendobj\n1436 0 obj <<\n/Type /Page\n/Contents 1437 0 R\n/Resources 1435 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1435 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1440 0 obj <<\n/Length 8131      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(449)]TJ -358.232 -35.866 Td[(ciuc)28(hn)28(yc)28(h)-391(i)-392(c)28(h\\252o)-28(d)1(n)28(ymi)-392(r)1(os)-1(ami)-392(op)-27(erlon)28(y)1(c)27(h,)-391(to)-391(bra\\252a)-391(j\\241)-391(s)-1(zalona)-391(c)27(h\\246\\242)-392(sk)28(o)-28(c)-1(zy\\242)-392(w)]TJ 0 -13.549 Td[(cie)-1(r)1(nie,)-446(pr)1(z)-1(edzie)-1(r)1(a\\242)-447(si\\246)-447(ws)-1(k)1(ro\\261)-447(sz)-1(ar)1(pi\\241cyc)27(h)-446(g\\241szc)-1(z\\363)27(w)-446(i)-446(p)-27(o)-28(c)-1(zu\\242)-446(dziki,)-446(lu)1(b)28(y)-446(b)-27(\\363l)]TJ 0 -13.549 Td[(pr)1(z)-1(epi)1(e)-1(ra\\253)-333(i)-333(sz)-1(amota\\253)1(.)]TJ 27.879 -13.549 Td[(Za)28(w)-1(r)1(\\363)-28(ci\\252a)-356(naraz)-356(z)-357(p)-27(o)28(wrotem)-357(i)-356(d)1(os)-1(\\252ysz)-1(a)28(wsz)-1(y)-356(g\\252osy)-356(s)-1(k)1(rzypicy)-356(p)-27(obieg\\252a)-356(ku)]TJ -27.879 -13.549 Td[(ni)1(m)-1(.)-284(Hej,)-284(tak)-284(zakr\\246c)-1(i)1(\\252y)-284(s)-1(i\\246)-284(w)-285(n)1(ie)-1(j)1(,)-284(tak)56(\\241)-285(za)28(w)-1(r)1(otn\\241)-284(lu)1(b)-28(o\\261ci\\241)-285(p)1(rze)-1(j)1(\\246)-1(\\252y)84(,)-284(\\273)-1(e)-284(w)-285(tan)28(y)-284(b)29(y)]TJ 0 -13.55 Td[(si\\246)-306(pu\\261ci\\252a,)-306(w)-306(\\261c)-1(i)1(s)-1(k)-305(k)55(ar)1(c)-1(zm)27(y)-305(rozh)28(uk)56(an)1(e)-1(j)1(,)-306(w)-306(tu)1(m)27(u)1(lt,)-306(w)-306(p)1(ij)1(at)27(y)1(k)28(\\246)-306(na)28(w)27(et,)-306(\\273e)-306(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(w)-334(samo)-334(zatrace)-1(n)1(ie,)-334(h)1(e)-1(j)1(!..)1(.)]TJ 27.879 -13.549 Td[(Dr\\363\\273k)56(\\241)-341(o)-27(d)-340(c)-1(men)28(tarza)-341(d)1(o)-340(top)-28(olo)28(w)28(e)-1(j)1(,)-340(c)-1(a\\252\\241)-340(w)-341(cz)-1(erw)28(on)28(yc)28(h)-340(ogniac)28(h)-340(z)-1(ac)28(ho)-28(d)1(u,)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252)-333(ktos)-1(i)1(k)-333(z)-334(ksi\\241\\273)-1(k)56(\\241)-333(w)-334(r)1(\\246)-1(ku)-333(i)-333(p)-27(o)-28(d)-333(b)1(ia\\252ymi)-333(brz\\363z)-1(k)56(ami)-333(pr)1(z)-1(ysta)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[(Jasio)-333(to)-334(b)29(y\\252,)-333(organist\\363)28(w)-334(syn)1(.)]TJ 0 -13.549 Td[(Zz)-1(a)-333(d)1(rz)-1(ew)28(a)-334(c)28(hcia\\252a)-334(p)-27(opatr)1(z)-1(e\\242)-334(n)1(a)-334(n)1(ie)-1(go,)-333(al)1(e)-334(j\\241)-333(do)-55(jrza\\252.)]TJ 0 -13.55 Td[(I)-251(uciec)-252(n)1(ie)-251(p)-28(oredzi\\252a,)-251(n)1(ogi)-251(jak)1(b)28(y)-251(si\\246)-252(ziem)-1(i)-250(c)-1(ze)-1(p)1(i\\252y)-251(i)-251(o)-28(czu)-251(ni)1(e)-252(mog\\252a)-251(o)-28(derw)28(a\\242)]TJ -27.879 -13.549 Td[(o)-28(d)-254(n)1(ie)-1(go;)-254(zbli\\273a\\252)-255(si\\246)-255(z)-255(u)1(\\261)-1(mie)-1(c)28(hem)-1(,)-254(z\\246)-1(b)28(y)-254(m)28(u)-255(gr)1(a\\252y)-255(w)-254(c)-1(ze)-1(r)1(w)27(on)28(y)1(c)27(h)-254(w)27(ar)1(gac)27(h,)-254(sm)27(u)1(k\\252y)]TJ 0 -13.549 Td[(b)28(y\\252,)-333(r)1(os)-1(\\252y)-333(i)-333(bia\\252y)-333(n)1(a)-334(g\\246bie.)]TJ 27.879 -13.549 Td[({)-333(Jakb)28(y\\261cie)-334(mnie,)-333(Jagu\\261,)-333(nie)-333(p)-28(oznali)1(?)]TJ 0 -13.549 Td[(A\\273)-334(j)1(\\241)-334(w)-333(do\\252ku)-333(\\261c)-1(i)1(s)-1(n)1(\\246)-1(\\252o)-333(o)-28(d)-333(tego)-334(g\\252osu.)]TJ 0 -13.55 Td[({)-333(C)-1(o)-333(b)28(y)1(m)-334(ta)-333(nie)-334(p)-27(ozna\\252a!..)1(.)-333(jeno)-333(pan)-333(Ja\\261)-333(taki)-333(te)-1(r)1(a)-334(gal)1(an)28(t)28(y)83(,)-333(taki)-333(i)1(nsz)-1(y)84(...)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(l)1(ata)-334(id)1(\\241...)-333(Byli)1(\\261)-1(cie)-334(u)-333(k)28(ogo)-333(na)-333(Budac)28(h?)]TJ 0 -13.549 Td[({)-317(T)83(ak)-317(sobie)-317(ino)-317(c)28(ho)-28(d)1(z)-1(i\\252am,)-317(\\261w)-1(i)1(\\246)-1(to)-317(p)1(rz)-1(ecie)-1(k)1(.)-317(Nab)-28(o\\273na?)-317({)-317(tkn)1(\\246)-1(\\252a)-317(ni)1(e)-1(\\261m)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.549 Td[(ksi\\241\\273ki.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(,)-333(o)-333(kr)1(a)-56(jac)28(h)-333(dalekic)28(h)-333(i)-333(o)-334(morzac)27(h)1(!)]TJ 0 -13.55 Td[({)-333(Je)-1(zu!)-333(o)-333(morz)-1(ac)28(h!)-333(A)-333(te)-334(obr)1(az)-1(i)1(ki)-333(te)-1(\\273)-333(nie)-334(\\261wi\\246te)-1(?)]TJ 0 -13.549 Td[({)-333(Zobacz)-1(cie)-1(!)-333({)-333(p)-27(o)-28(dsun)1(\\241\\252)-334(j)1(e)-1(j)-333(p)-27(o)-28(d)-333(o)-27(c)-1(zy)-333(ks)-1(i)1(\\241\\273)-1(k)28(\\246)-334(i)-333(p)-27(ok)56(az)-1(yw)28(a\\252.)]TJ 0 -13.549 Td[(St)1(ali)-314(rami\\246)-314(w)-315(r)1(am)-1(i)1(\\246)-1(,)-314(b)-27(e)-1(zw)28(olnie)-314(wpiera)-55(j\\241c)-314(s)-1(i\\246)-314(w)-314(s)-1(iebi)1(e)-315(b)1(ie)-1(d)1(rami,)-314(a)-314(t)28(yk)56(a)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(ami)-332(nisk)28(o)-332(przyc)28(h)28(ylon)28(y)1(m)-1(i)1(.)-333(P)29(o)-56(j)1(a\\261)-1(n)1(ia\\252)-333(j)1(\\241)-333(n)1(iekiedy)84(,)-332(w)-1(tedy)-332(p)-27(o)-28(d)1(nosi\\252a)-333(n)1(a)-332(niego)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)-273(p)-27(o)-28(d)1(z)-1(i)1(w)-1(u)-272(p)-28(e\\252ne,)-273(ni)1(e)-274(\\261m)-1(i)1(e)-1(j)1(\\241c)-274(dy)1(c)27(ha\\242)-273(z)-1(e)-273(wz)-1(r)1(usz)-1(enia,)-272(a)-274(cisn\\241c)-273(s)-1(i\\246)-273(c)-1(or)1(az)-274(b)1(arze)-1(j)1(,)]TJ 0 -13.55 Td[(b)28(yc)28(h)-333(lepiej)-333(do)-55(jr)1(z)-1(e\\242)-1(,)-333(gd)1(y\\273)-334(s\\252)-1(o\\253)1(c)-1(e)-333(opu)1(\\261)-1(ci\\252o)-334(si\\246)-334(j)1(u\\273)-334(za)-333(b)-28(or)1(y)83(.)]TJ 27.879 -13.549 Td[(Naraz)-333(w)-1(strz\\241s)-1(n)1(\\241\\252)-334(si\\246)-334(ca\\252y)-333(i)-333(o)-28(dsun)1(\\241\\252)-334(\\271dziebk)28(o.)]TJ 0 -13.549 Td[({)-333(Mro)-27(c)-1(ze)-1(j)1(e)-1(,)-333(cz)-1(as)-334(d)1(o)-334(d)1(om)27(u)1(!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(cic)28(ho.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(p)-27(\\363)-28(d\\271m)27(y)1(!)]TJ 0 -13.549 Td[(Szli)-325(w)-325(m)-1(i)1(lc)-1(zeniu)1(,)-325(nakr)1(yc)-1(i)-325(p)1(ra)28(wie)-326(cieniami)-325(dr)1(z)-1(ew.)-325(S\\252o\\253ce)-326(zas)-1(z\\252o,)-325(mo)-28(dr)1(a)27(w)28(e)]TJ -27.879 -13.55 Td[(mroki)-277(trz\\246)-1(s\\252y)-277(s)-1(i\\246)-278(n)1(a)-278(p)-27(ola,)-277(z\\363rz)-278(dzisia)-56(j)-277(n)1(ie)-278(b)28(y\\252o,)-277(j)1(e)-1(n)1(o)-278(pr)1(z)-1(ez)-278(gru)1(bac)28(hne)-278(p)1(ni)1(e)-278(top)-28(ol)1(i)]TJ 0 -13.549 Td[(widn)1(ia\\252)-333(na)-333(niebi)1(e)-334(z)-1(\\252o)-28(cist)28(y)-333(roz)-1(l)1(e)-1(w,)-333(\\261)-1(wiat)-333(p)1(rz)-1(y)1(gas)-1(a\\252.)]TJ 27.879 -13.549 Td[({)-333(I)-334(to)-333(ws)-1(zystk)28(o)-334(p)1(ra)28(wda,)-333(co)-334(tam)-333(p)-28(ok)56(azane?)-334({)-333(przystan\\246\\252a.)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystk)28(o,)-333(Jagu\\261,)-333(w)-1(szys)-1(tk)28(o.)]TJ 0 -13.549 Td[(Jez)-1(u)1(,)-333(takie)-334(w)28(o)-28(dy)-333(wielgac)27(h)1(ne,)-333(takie)-333(\\261)-1(wiat)28(y)84(,)-334(\\273e)-334(u)28(wierzy\\242)-334(tr)1(ud)1(no.)]TJ 0 -13.549 Td[({)-271(S\\241,)-271(Jagu)1(\\261)-1(,)-271(s\\241!)-271({)-271(s)-1(ze)-1(p)1(ta\\252)-272(coraz)-271(c)-1(isze)-1(j)-271(zagl\\241da)-55(j\\241c)-271(jej)-271(w)-272(o)-27(c)-1(zy)-271(z)-272(tak)-271(b)1(lisk)55(a,)-271(\\273e)]TJ -27.879 -13.55 Td[(ws)-1(tr)1(z)-1(y)1(m)-1(a\\252a)-245(o)-28(d)1(dec)27(h,)-245(d)1(res)-1(zc)-1(z)-245(j\\241)-245(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-245(i)-245(p)-28(o)-27(da\\252a)-245(s)-1(i\\246)-245(pi)1(e)-1(rsiami)-245(nap)1(rz\\363)-28(d,)-245(cz)-1(ek)56(a\\252a,)]TJ 0 -13.549 Td[(i\\273)-334(j)1(\\241)-334(ob)-27(e)-1(j)1(m)-1(ie)-334(i)-333(do)-333(pn)1(ia)-334(p)1(rzypr)1(z)-1(e,)-334(j)1(a\\273)-1(e)-334(ramion)1(a)-334(si\\246)-334(jej)-333(oz)-1(w)28(ar\\252y)-334(i)-333(goto)28(w)27(a)-333(s)-1(i)1(\\246)-334(b)28(y\\252a)]TJ 0 -13.549 Td[(da\\242,)-333(ale)-334(Jasio)-333(o)-28(dsun)1(\\241\\252)-334(si\\246)-334(\\261pi)1(e)-1(sz)-1(n)1(ie.)]TJ 27.879 -13.549 Td[({)-333(Musz\\246)-334(i\\261\\242)-334(pr)1(\\246)-1(dzej,)-333(dob)1(ran)1(o)-28(c)-334(Jagu)1(s)-1(i!)-333({)-333(i)-333(p)-28(ol)1(e)-1(cia\\252.)]TJ 0 -13.549 Td[(Z)-333(dobr)1(y)-333(pacie)-1(r)1(z)-334(pr)1(z)-1(es)-1(to)-55(ja\\252a,)-333(n)1(im)-334(si\\246)-334(p)-27(oredzi\\252a)-334(r)1(usz)-1(y\\242)-333(z)-334(mie)-1(j)1(s)-1(ca.)]TJ 0 -13.55 Td[({)-470(Urz)-1(ek\\252)-470(m)-1(e)-471(czy)-471(co!)-470({)-471(m)28(y\\261)-1(l)1(a\\252a)-471(wlek)55(\\241c)-471(si\\246)-471(o)-27(c)-1(i\\246\\273)-1(al)1(e)-1(,)-470(m\\241t)-471(j)1(aki\\261)-471(mia\\252a)-470(w)]TJ -27.879 -13.549 Td[(g\\252o)28(w)-1(i)1(e)-1(,)-333(ci\\241)-28(gotki)-333(j)1(\\241)-334(r)1(oz)-1(b)1(ie)-1(r)1(a\\252y)83(.)]TJ\nET\nendstream\nendobj\n1439 0 obj <<\n/Type /Page\n/Contents 1440 0 R\n/Resources 1438 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1438 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1443 0 obj <<\n/Length 9306      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(450)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Wiecz)-1(\\363r)-338(s)-1(i)1(\\246)-339(robi)1(\\252)-1(,)-338(\\261w)-1(i)1(at\\252a)-339(b)1(\\252)-1(y)1(s)-1(k)56(a\\252y)-339(t)1(u)-339(i)-338(o)28(wdzie)-1(,)-338(a)-339(z)-339(k)56(ar)1(c)-1(zm)27(y)-338(roznosi\\252o)-339(si\\246)]TJ -27.879 -13.549 Td[(gran)1(ie)-334(i)-333(p)1(rz)-1(y)1(t\\252umione)-333(roz)-1(mo)28(wy)83(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252a)-374(pr)1(z)-1(ez)-374(okn)1(o)-374(d)1(o)-374(izb)28(y)-373(roz\\261)-1(wietlonej:)-373(p)1(an)-373(Jac)-1(ek)-374(sto)-55(ja\\252)-374(w)-373(p)-28(o\\261ro)-28(d)1(ku)]TJ -27.879 -13.549 Td[(i)-358(rzn\\241\\252)-358(na)-358(skrzyp)-27(c)-1(ac)28(h,)-358(za\\261)-359(pr)1(z)-1(ed)-358(sz)-1(yn)1(kw)27(asem)-359(k)28(oleba\\252)-358(s)-1(i)1(\\246)-359(Jam)27(b)1(ro\\273y)83(,)-358(k)1(rz)-1(y)1(kliwie)]TJ 0 -13.549 Td[(cos)-1(ik)-333(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\252)-334(k)28(omorn)1(icom)-1(,)-333(cz)-1(\\246s)-1(t)1(o)-334(p)-27(o)-333(kielis)-1(zek)-334(si\\246ga)-56(j)1(\\241c)-1(.)]TJ 27.879 -13.55 Td[(Naraz)-273(kt)1(os)-1(ik)-272(j\\241)-272(wp)-28(\\363\\252)-273(k)1(rze)-1(p)1(k)28(o)-273(uj)1(\\241\\252,)-273(\\273e)-273(krzykn)1(\\246)-1(\\252a)-273(k)1(urcz\\241c)-274(si\\246)-273(i)-272(w)-1(y)1(dzie)-1(r)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-247(P)1(rz)-1(y)1(dyb)1(a\\252e)-1(m)-247(ci\\246)-248(i)-246(nie)-247(p)1(usz)-1(cz)-1(\\246...)-246(napi)1(jem)-248(si\\246)-247(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o...)-247(p)-27(\\363)-28(d)1(z)-1(i.)1(..)-247({)-247(sz)-1(ept)1(a\\252)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)-333(n)1(ie)-334(zw)27(aln)1(ia)-55(j\\241c)-334(z)-334(p)1(az)-1(u)1(r\\363)28(w)-334(i)-333(p)-27(o)-28(ci\\241)-28(gn)1(\\241\\252)-334(j)1(\\241)-334(b)-27(o)-28(cz)-1(n)28(y)1(m)-1(i)-333(d)1(rz)-1(wiami)-333(do)-333(alk)1(ie)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[(Nikt)1(o)-339(n)1(ie)-339(do)-55(jr)1(z)-1(a\\252,)-338(b)-27(o)-339(j)1(u\\273)-339(p)1(ra)28(wie)-339(cie)-1(mno)-338(b)28(y\\252o)-338(na)-338(\\261w)-1(i)1(e)-1(cie)-339(i)-338(m)-1(a\\252o)-338(kto)-338(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi\\252)-333(dr)1(og\\241.)]TJ 27.879 -13.549 Td[(Wie\\261)-277(ju)1(\\273)-277(przycic)27(h)1(a\\252)-1(a,)-276(milk\\252y)-276(gw)27(ar)1(y)-277(i)-277(p)1(ustosz)-1(a\\252y)-277(op)1(\\252otki,)-276(nar)1(\\363)-28(d)-277(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)]TJ -27.879 -13.55 Td[(si\\246)-328(p)-27(o)-327(c)27(h)1(a\\252)-1(u)1(pac)28(h,)-327(d)1(obiega\\252y)-327(\\261)-1(wi\\246ta)-327(i)-327(dn)1(i)-327(s)-1(\\252o)-27(dkic)28(h)-327(w)28(c)-1(zas)-1(o)28(w)28(a\\253,)-327(p)-27(o)28(w)-1(sz)-1(edn)1(ie)-327(jut)1(ro)]TJ 0 -13.549 Td[(sto)-56(j)1(a\\252)-1(o)-237(z)-1(a)-237(pr)1(ogie)-1(m)-237(i)-238(w)-237(m)-1(r)1(o)-1(k)56(ac)28(h)-237(os)-1(tre)-237(k\\252y)-238(sz)-1(cze)-1(rzy\\252o,)-237(\\273)-1(e)-238(n)1(iejedn\\241)-237(du)1(s)-1(z\\246)-238(l\\246k)-238(\\261c)-1(i)1(s)-1(k)56(a\\252)]TJ 0 -13.549 Td[(i)-333(tur)1(bacje)-334(ob)1(s)-1(i)1(ada\\252y)-333(na)-333(no)28(w)28(o...)]TJ 27.879 -13.549 Td[(P)28(osm)27(u)1(tnia\\252a)-243(wie\\261)-244(i)-243(pr)1(z)-1(yg\\252u)1(c)27(h)1(\\252)-1(a,)-243(j)1(akb)28(y)-243(d)1(o)-244(ziem)-1(i)-243(b)1(arze)-1(j)-242(przywiera)-56(j)1(\\241c)-244(i)-243(tu)1(l\\241c)]TJ -27.879 -13.549 Td[(si\\246)-362(w)-361(sady)-361(on)1(ie)-1(mia\\252e,)-361(jesz)-1(cz)-1(e)-361(tam)-362(k)56(a)-55(j\\261)-361(niek)56(a)-56(j)-361(siedzieli)-361(na)-361(p)1(rzy\\271)-1(b)1(ac)27(h)-360(do)-55(jada)-55(j\\241c)]TJ 0 -13.55 Td[(\\261w)-1(i)1(\\246)-1(cone)-299(i)-298(z)-298(c)-1(ic)28(ha)-298(gw)27(ar)1(z)-1(\\241c,)-298(gdzie)-299(za\\261)-299(s)-1(p)1(a\\242)-299(si\\246)-299(r)1(yc)27(h)1(le)-1(j)-298(wyb)1(ierali,)-298(p)1(ie\\261)-1(n)1(ie)-299(p)-27(ob)-28(o\\273ne)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(wu)1(j\\241c.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-403(u)-402(P\\252os)-1(zk)28(o)28(w)27(ej)-403(r)1(o)-56(j)1(no)-403(b)28(y)1(\\252)-1(o)-402(i)-403(gw)27(ar)1(no,)-403(ze)-1(sz\\252)-1(y)-402(s)-1(i)1(\\246)-404(b)28(y)1(\\252)-1(y)-402(s)-1(\\241siad)1(ki,)-403(a)-403(ob)1(-)]TJ -27.879 -13.549 Td[(siad\\252sz)-1(y)-381(\\252a)27(wy)84(,)-382(p)-27(oredza\\252y)-382(go)-28(d)1(ni)1(e)-383(mi\\246dzy)-382(sob\\241.)-381(W)83(\\363)-55(jto)28(w)28(a)-382(na)-381(pierwsz)-1(ym)-382(miejsc)-1(u)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(a,)-415(za\\261)-416(p)-27(ob)-27(ok)-415(p)-28(\\246k)56(ata,)-415(wys)-1(zcz)-1(ek)55(an)1(a)-415(B)-1(al)1(c)-1(erk)28(o)28(w)27(a)-415(sw)27(o)-55(jego)-415(do)28(w)27(o)-27(dzi\\252a;)-415(b)28(y-)]TJ 0 -13.55 Td[(\\252a)-353(i)-352(c)28(h)28(ud)1(a)-353(S)1(ik)28(orzyn)1(a,)-353(b)29(y\\252a)-353(i)-352(j)1(az)-1(go)-28(cz)-1(\\241ca)-352(c)-1(i\\246giem)-353(Boryn)1(o)27(w)28(a,)-352(s)-1(tr)1(yjec)-1(zna)-352(c)27(h)1(orego,)]TJ 0 -13.549 Td[(b)28(y\\252a)-374(i)-373(k)28(o)28(w)27(alo)28(w)28(a)-374(z)-375(n)1(a)-56(j)1(m)-1(\\252o)-28(d)1(s)-1(zym)-374(pr)1(z)-1(y)-373(piersi,)-374(u)1(gw)27(ar)1(z)-1(a)-55(j\\241ca)-374(s)-1(i\\246)-374(z)-374(p)-28(ob)-27(o\\273n\\241,)-374(cic)27(h)1(\\241)]TJ 0 -13.549 Td[(so\\252)-1(t)28(y)1(s)-1(o)28(w)27(\\241,)-333(i)-333(d)1(rugi)1(e)-334(b)28(y\\252y)-333(co)-334(n)1(a)-56(j)1(pierws)-1(ze)-334(w)28(e)-334(ws)-1(i)1(.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252y)-265(nap)1(usz)-1(on)1(e)-267(i)-265(o)-28(d\\246te)-266(kiej)-266(k)1(w)27(oki)-265(w)-266(bar\\252ogu)1(,)-266(a)-266(wsz)-1(y\\242kie)-266(w)28(e)-267(\\261wi\\241tec)-1(z-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h)-231(s)-1(u)1(t)28(yc)27(h)-231(w)27(e\\252ni)1(ak)55(ac)28(h,)-231(w)-232(c)27(h)29(ustk)55(ac)28(h,)-231(lip)-27(e)-1(c)28(k)56(\\241)-232(mo)-28(d\\241)-231(do)-231(p)-28(\\363\\252)-231(plec)-1(\\363)28(w)-232(op)1(usz)-1(cz)-1(on)29(yc)27(h)1(,)]TJ 0 -13.55 Td[(w)-276(cz)-1(ep)-27(c)-1(ac)28(h)-275(kiej)-275(k)28(o\\252)-1(a)-275(bi)1(e)-1(lu)1(c)27(h)1(ne,)-276(a)-275(rz\\246s)-1(i\\261c)-1(i)1(e)-276(s)-1(k)56(arb)-27(o)28(w)27(an)1(e)-276(nad)-275(czo\\252)-1(ami,)-275(w)28(e)-276(fr)1(yz)-1(k)56(ac)27(h)]TJ 0 -13.549 Td[(p)-27(o)-308(u)1(s)-1(zy)-308(n)1(as)-1(t)1(ros)-1(zon)28(yc)28(h,)-307(na)-307(kt\\363r)1(e)-308(t)27(y)1(le)-308(k)28(oral)1(i)-308(n)1(a)27(wiesi\\252y)83(,)-307(ile)-308(k)1(t\\363ra)-307(m)-1(ia\\252a.)-307(Zaba)28(wia-)]TJ 0 -13.549 Td[(\\252y)-353(si\\246)-353(galan)28(t)1(o.)-353(g\\246b)28(y)-353(z)-353(w)28(oln)1(a)-353(c)-1(zerwie)-1(n)1(ia\\252y)-353(i)-352(ku)1(n)28(ten)28(tno\\261\\242)-353(rozpiera\\252a,)-352(p)-28(op)1(ra)28(wia\\252y)]TJ 0 -13.549 Td[(pi)1(lni)1(e)-289(w)27(e\\252niak)28(\\363)28(w,)-288(b)28(y)-288(s)-1(i)1(\\246)-289(nie)-288(przygn)1(ie)-1(t\\252y)84(,)-288(i)-288(ju\\273)-288(j\\246\\252)-1(y)-288(d)1(o)-289(si\\246)-289(p)1(rzys)-1(i)1(ada\\242)-289(coraz)-289(b)1(li\\273e)-1(j)1(,)]TJ 0 -13.549 Td[(a)-333(c)-1(isze)-1(j)-333(p)-27(oredza\\242)-334(bi)1(e)-1(r\\241c)-333(s)-1(i\\246)-333(w)-1(za)-56(j)1(e)-1(m)-333(na)-333(oz)-1(or)1(y)83(.)]TJ 27.879 -13.55 Td[(A)-376(ki)1(e)-1(j)-375(k)28(o)28(w)27(al)-375(s)-1(i\\246)-376(j)1(a)27(wi\\252,)-375(p)-28(o)28(wieda\\252,)-376(co)-376(p)1(rosto)-376(z)-376(m)-1(i)1(as)-1(ta)-376(wr)1(ac)-1(a,)-376(n)1(a)-376(d)1(obre)-376(si\\246)]TJ -27.879 -13.549 Td[(rozw)27(ese)-1(li)1(\\252)-1(y)84(.)-406(Ch\\252op)-406(b)28(y)1(\\252)-407(wysz)-1(cze)-1(k)56(an)28(y)84(,)-406(jak)-406(ma\\252o)-407(k)1(t\\363ren,)-406(\\273e)-407(z)-1(a\\261)-406(b)28(y\\252)-406(ju)1(\\273)-407(zdzie)-1(b)1(k)28(o)]TJ 0 -13.549 Td[(nap)1(it)28(y)84(,)-362(to)-362(j)1(\\241\\252)-362(w)-1(y)1(c)-1(ygan)1(ia\\242)-362(takie)-362(rze)-1(cz)-1(y)-361(do)-362(\\261m)-1(i)1(e)-1(c)28(h)28(u,)-361(ja\\273)-1(e)-362(za)-362(b)-28(ok)1(i)-362(si\\246)-363(b)1(ra\\252y;)-361(iz)-1(b)1(a)]TJ 0 -13.549 Td[(si\\246)-392(zatrz\\246)-1(s\\252a,)-391(on)-391(za\\261)-392(\\261m)-1(ia\\252)-391(si\\246)-392(n)1(a)-56(j)1(g\\252)-1(o\\261ni)1(e)-1(j)1(,)-391(ja\\273e)-392(ten)-391(jego)-391(rec)27(h)1(ot)-392(s\\252yc)27(h)1(a\\242)-392(b)28(y)1(\\252o)-392(u)]TJ 0 -13.549 Td[(Boryn)1(\\363)27(w.)]TJ 27.879 -13.549 Td[(D\\252ugo)-430(s)-1(e)-431(u)1(\\273)-1(yw)28(ali,)-430(b)-28(o)-430(c)-1(o\\261)-431(tr)1(z)-1(y)-430(raz)-1(y)-430(P\\252osz)-1(k)28(o)28(w)28(a)-431(p)-27(o)-431(gorza\\252k)28(\\246)-431(p)-28(osy\\252a\\252a)-431(do)]TJ -27.879 -13.55 Td[(\\233yd)1(a.)]TJ 27.879 -13.549 Td[(Za\\261)-322(u)-322(Boryn)1(\\363)28(w)-323(j)1(e)-1(szc)-1(ze)-323(siedzie)-1(l)1(i)-322(pr)1(z)-1(ed)-322(c)28(ha\\252up)1(\\241.)-322(Han)1(k)55(a)-321(w)-1(sta\\252a)-322(i)-322(otu)1(lon)1(a)-322(w)]TJ -27.879 -13.549 Td[(k)28(o\\273uc)27(h)1(,)-333(gdy\\273)-333(z)-1(i\\241b)-333(wzi\\241\\252)-334(p)-27(o)-333(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(e)-1(,)-333(b)28(y\\252a)-333(z)-334(d)1(rugi)1(m)-1(i.)]TJ 27.879 -13.549 Td[(P)28(\\363ki)-369(d)1(nia)-369(starcz)-1(y\\252o,)-369(Ro)-28(c)28(ho)-369(im)-370(cz)-1(yt)1(a\\252)-370(z)-370(k)1(s)-1(i\\241\\273ki,)-369(\\273e)-370(ni)1(e)-1(raz)-369(Hank)56(a,)-369(rozgl\\241-)]TJ -27.879 -13.549 Td[(da)-55(j\\241c)-333(s)-1(i\\246,)-333(pr)1(z)-1(yk)56(azyw)27(a\\252a)-333(c)-1(i)1(c)27(ho)-333(J\\363zc)-1(e:)]TJ 27.879 -13.55 Td[({)-333(Wyj)1(rz)-1(y)1(j)-333(no)-333(na)-333(dr)1(og\\246)-1(..)1(.)]TJ 0 -13.549 Td[(Ale)-342(ni)1(k)28(og\\363)-56(j)-341(nie)-342(b)28(y)1(\\252)-1(o)-341(i)-342(cz)-1(yta\\252,)-341(p)-28(\\363k)1(i)-342(wiec)-1(z\\363r)-342(n)1(ie)-342(z)-1(amro)-28(cz)-1(y)1(\\252)-342(z)-1(iemi,)-342(a)-342(p)-27(otem)]TJ\nET\nendstream\nendobj\n1442 0 obj <<\n/Type /Page\n/Contents 1443 0 R\n/Resources 1441 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1428 0 R\n>> endobj\n1441 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1446 0 obj <<\n/Length 9242      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(451)]TJ -358.232 -35.866 Td[(p)-27(o)27(wiad)1(a\\252)-455(jes)-1(zc)-1(ze)-455(r\\363\\273no\\261c)-1(i,)-454(gdy\\273)-455(s)-1(r)1(o)-28(dze)-455(s)-1(i\\246)-455(rozcie)-1(k)56(a)28(wili.)-454(No)-28(c)-456(i)1(c)27(h)-454(okryw)28(a\\252a,)-455(i\\273)]TJ 0 -13.549 Td[(ledwie)-238(s)-1(i\\246)-238(z)-1(n)1(ac)-1(zyli)-238(n)1(a)-238(bia\\252ej)-238(\\261c)-1(i)1(anie)-238(c)27(ha\\252u)1(p)28(y;)-238(wiec)-1(z\\363r)-238(si\\246)-239(sta)28(w)27(a\\252)-238(cie)-1(mn)28(y)-238(i)-237(c)27(h\\252o)-28(d)1(n)28(y)84(,)]TJ 0 -13.549 Td[(gwiazdy)-439(n)1(ie)-439(wz)-1(es)-1(z\\252y)83(,)-438(g\\252uc)27(h)1(a)-439(cic)27(ho\\261\\242)-439(ogarn)1(ia\\252a)-439(\\261)-1(wiat)1(,)-439(jeno)-438(c)-1(o)-439(w)28(o)-28(d)1(a)-439(b)-28(e\\252k)28(ota\\252a)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-1(ci\\261)-334(i)-333(psy)-333(w)27(ar)1(c)-1(za\\252y)83(.)]TJ 27.879 -13.549 Td[(Zbi)1(li)-306(si\\246)-307(w)-306(ku)1(p)-27(\\246)-1(,)-306(\\273e)-306(Nas)-1(tu)1(\\261)-307(z)-306(J\\363zk)55(\\241,)-305(W)83(eronk)56(a)-306(z)-306(dzie\\242)-1(mi,)-306(J)1(agust)27(y)1(nk)56(a,)-306(K\\252\\246-)]TJ -27.879 -13.55 Td[(b)-27(o)27(w)28(a)-397(i)-396(Pietrek)-397(p)1(ra)28(wie)-397(u)-396(n\\363g)-397(Ro)-28(c)28(ho)28(wyc)27(h)-396(pr)1(z)-1(ysiedli)1(,)-397(a)-397(Han)1(k)56(a)-397(ni)1(e)-1(co)-397(z)-397(b)-28(ok)1(u)-397(n)1(a)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(e)-1(n)1(iu.)]TJ 27.879 -13.549 Td[(Roz)-1(p)-27(o)28(wiada\\252)-401(o)-401(ca\\252ym)-401(p)-28(ol)1(s)-1(ki)1(m)-402(n)1(aro)-28(d)1(z)-1(i)1(e)-402(h)1(is)-1(tor)1(ie)-401(r\\363\\273ne,)-401(to)-401(pr)1(z)-1(y)1(p)-28(o)28(wie\\261)-1(cie)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(\\246)-1(te,)-333(to)-334(cud)1(e)-1(\\253)1(k)56(a)-334(tak)1(ie)-334(o)-333(\\261)-1(wiec)-1(i)1(e)-1(,)-333(\\273e)-334(kto)-333(b)28(y)-333(je)-334(t)1(a)-334(p)-27(o)-56(j)1(\\241\\252)-334(i)-333(zapami\\246ta\\252!)]TJ 27.879 -13.549 Td[(Zas)-1(\\252u)1(c)27(h)1(ali)-385(s)-1(i\\246,)-385(nie)-385(w)27(a\\273\\241c)-386(o)-28(d)1(s)-1(ap)1(n\\241\\242)-386(n)1(i)-385(p)-28(or)1(usz)-1(y\\242)-385(s)-1(i\\246)-385(z)-386(m)-1(i)1(e)-1(j)1(s)-1(c)-386(i)-385(ca\\252\\241)-386(d)1(usz)-1(\\241)]TJ -27.879 -13.549 Td[(pi)1(j\\241c)-334(te)-333(s)-1(\\252o)28(w)27(a)-333(mio)-28(d)1(ne,)-334(j)1(ak)-333(wys)-1(c)28(h\\252a)-333(z)-1(iemia)-334(p)1(ij)1(e)-334(d\\273d\\273e)-334(rosiste)-334(i)-333(c)-1(i)1(e)-1(p)1(\\252e)-1(.)]TJ 27.879 -13.55 Td[(On)-333(za\\261)-1(,)-333(p)1(ra)28(wie)-334(ni)1(e)-1(wid)1(n)28(y)-333(la)-333(o)-28(c)-1(zu,)-333(u)1(ro)-28(cz)-1(y)1(s)-1(t)28(ym,)-333(c)-1(i)1(c)27(h)28(ym)-333(g\\252os)-1(em)-334(p)-27(o)27(wiad)1(a\\252:)]TJ 0 -13.549 Td[({)-367(\\377)-55(P)28(o)-367(zimie)-367(zw)-1(i)1(e)-1(sna)-366(przyc)28(ho)-28(d)1(z)-1(i)-366(k)56(a\\273)-1(d)1(e)-1(m)28(u,)-366(kt\\363ren)-366(jej)-366(c)-1(ze)-1(k)56(a)-367(w)-366(pracy)83(,)-366(mo-)]TJ -27.879 -13.549 Td[(dl)1(it)28(wie)-334(a)-333(goto)27(w)28(o\\261c)-1(i.)1(\")]TJ 27.879 -13.549 Td[({)-333(\\377)-56(Du)1(fa)-55(jcie)-1(,)-333(b)-27(o)-334(p)-27(okr)1(z)-1(ywd)1(z)-1(on)1(e)-334(z)-1(a)28(w\\273dy)-333(g\\363r\\246)-334(w)28(e)-1(zm\\241.\")]TJ 0 -13.549 Td[({)-289(\\377O)1(c)27(h\\014)1(arn)1(\\241)-289(kr)1(w)-1(i)1(\\241)-289(i)-288(tru)1(dem)-289(trza)-289(p)-27(osie)-1(w)28(a\\242)-289(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(\\241)-288(s)-1(zcz)-1(\\246\\261)-1(li)1(w)27(o\\261\\242)-1(,)-288(a)-289(k)1(t\\363-)]TJ -27.879 -13.55 Td[(ren)-333(p)-27(os)-1(ia\\252,)-333(wz)-1(ejd)1(z)-1(i)1(e)-334(m)27(u)-333(i)-333(cz)-1(as)-333(\\273)-1(n)1(iwn)28(y)-333(m)-1(i)1(a\\252)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(.\")]TJ 27.879 -13.549 Td[({)-233(\\377)-56(Ale)-233(kto)-233(jeno)-233(o)-233(c)27(hl)1(e)-1(b)-233(p)-27(o)28(ws)-1(ze)-1(d)1(ni)-233(zabiega,)-233(do)-233(sto\\252u)-233(P)28(a\\253skiego)-233(nie)-233(s)-1(i\\241d)1(z)-1(i)1(e)-1(.\")]TJ 0 -13.549 Td[({)-333(\\377)-56(Kto)-333(in)1(o)-334(wyr)1(z)-1(ek)56(a)-334(n)1(a)-334(z\\252e)-1(,)-333(n)1(ie)-334(cz)-1(yn)1(i\\241c)-334(d)1(obr)1(a)-1(,)-333(ten)-333(gorsze)-334(z)-1(\\252o)-333(ro)-28(d)1(z)-1(i)1(.\")]TJ 0 -13.549 Td[(D\\252ugo)-420(p)-28(o)28(wiad)1(a\\252)-1(,)-420(a)-421(tak)-420(m)-1(\\241d)1(rze)-1(,)-420(\\273)-1(e)-421(ni)1(e)-422(spami\\246ta\\242,)-421(i)-420(c)-1(oraz)-421(cisz)-1(ej)-421(a)-420(rz)-1(ew-)]TJ -27.879 -13.549 Td[(liwiej,)-402(\\273e)-403(z)-1(a\\261)-403(go)-402(no)-28(c)-403(ca\\252kiem)-403(okr)1(y\\252a,)-403(t)1(o)-403(si\\246)-403(z)-1(d)1(a)28(w)27(a\\252o,)-402(jak)28(ob)28(y)-402(ten)-402(g\\252os)-403(\\261)-1(wi\\246t)28(y)-403(z)]TJ 0 -13.55 Td[(zie)-1(mie)-350(wyc)28(ho)-28(d)1(z)-1(i\\252)-349(alb)-27(o)-350(\\273e)-350(to)-349(g\\252o)-1(s)-349(p)-28(omar\\252yc)28(h)-349(p)-28(ok)28(ol)1(e)-1(\\253)-349(Boryn)1(o)27(wyc)28(h,)-349(co)-350(w)-350(n)1(o)-28(c)-350(t\\246)]TJ 0 -13.549 Td[(Zmart)28(wyc)27(h)28(wstania)-235(B\\363g)-235(je)-235(na)-235(\\261wiat)-235(o)-28(d)1(pu)1(\\261)-1(ci\\252)-235(i)-235(pr)1(a)28(w)-1(i)1(\\241)-235(te)-1(raz)-235(ze)-236(zm)27(u)1(rs)-1(za\\252yc)27(h)-234(\\261)-1(cian)1(,)]TJ 0 -13.549 Td[(z)-334(d)1(rze)-1(w)-333(p)-28(o)-28(c)28(h)28(ylon)29(yc)27(h)1(,)-334(z)-333(g\\246)-1(ste)-1(j)-332(no)-28(cy)83(,)-333(ku)-332(prze)-1(stro)-27(dze)-334(a)-334(op)1(ami\\246)-1(tan)1(iu)-333(r)1(o)-28(dzon)28(yc)27(h)1(.)]TJ 27.879 -13.549 Td[(Du)1(s)-1(ze)-319(s)-1(i\\246)-319(wsz)-1(ystki)1(e)-320(w)28(a\\273y\\252y)-319(n)1(a)-319(t)28(yc)28(h)-319(s\\252o)28(w)27(ac)27(h)1(,)-318(bij)1(\\241c)-1(yc)28(h)-318(w)-319(s)-1(erca)-319(j)1(ak)-319(d)1(z)-1(w)28(on,)]TJ -27.879 -13.549 Td[(i)-333(ni)1(e)-1(s\\252y)-334(si\\246)-334(w)-333(om)-1(r)1(o)-28(cz)-1(on)1(e)-334(ut\\246s)-1(k)1(nieni)1(a,)-334(w)-333(niep)-27(o)-56(j)1(\\246)-1(te)-334(d)1(z)-1(i)1(w)-1(y)-333(marze)-1(\\253)1(.)]TJ 27.879 -13.55 Td[(Nikt)1(o)-252(n)1(ie)-252(d)1(os)-1(\\252ysz)-1(a\\252)-251(na)28(w)28(e)-1(t,)-251(\\273e)-252(psy)-251(za)-1(cz\\246)-1(\\252y)-251(w)-252(ca\\252e)-1(j)-250(w)-1(si)-251(uj)1(ada\\242,)-251(kto\\261)-252(kr)1(z)-1(ycza\\252)]TJ -27.879 -13.549 Td[(na)-333(d)1(rogac)27(h)-333(i)-333(zadu)1(dni)1(a\\252y)-334(b)1(ieganin)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(d)1(le)-1(sie)-334(si\\246)-334(p)1(ali!)-333({)-333(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252)-333(jak)1(i\\261)-334(g\\252os)-334(p)1(rz)-1(ez)-334(sad.)]TJ 0 -13.549 Td[(Wyb)1(iegli)-333(na)-333(dr)1(og\\246)-1(.)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a)-289(b)28(y\\252a:)-289(d)1(w)27(orskie)-289(bu)1(dyn)1(ki)-289(n)1(a)-289(P)28(o)-28(d)1(le)-1(siu)-289(sta\\252y)-289(w)-289(ogni)1(u,)-289(p)1(\\252)-1(omieni)1(e)-290(kiej)]TJ -27.879 -13.55 Td[(cz)-1(erw)28(one)-334(kr)1(z)-1(e)-334(wyb)1(uc)28(ha\\252y)-333(z)-334(cie)-1(mn)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-305(A)-306(s\\252o)27(w)28(o)-306(cia\\252em)-306(s)-1(i)1(\\246)-306(s)-1(ta\\252o!)-305({)-305(s)-1(ze)-1(p)1(n\\246\\252)-1(a)-305(Jagu)1(s)-1(t)28(yn)1(k)55(a)-305(Koz\\252o)27(w)28(\\241)-306(wsp)-28(omin)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(Kara)-333(b)-27(os)-1(k)56(a)-333(przyc)27(h)1(o)-28(dzi.)]TJ 0 -13.549 Td[({)-333(Za)-334(n)1(as)-1(z\\241)-334(k)1(rzyw)-1(d)1(\\246)-1(!)-333({)-333(kr)1(z)-1(y\\273o)28(w)27(a\\252y)-333(si\\246)-334(w)-334(ciem)-1(n)1(o\\261)-1(ciac)27(h)-332(g\\252)-1(osy)84(.)]TJ 0 -13.549 Td[(Drzwi)-328(c)27(h)1(a\\252)-1(u)1(p)-328(tr)1(z)-1(ask)56(a)-1(\\252y)84(,)-328(lu)1(dzie)-329(w)-328(dy)1(rdy)-328(a)-328(n)1(a)-329(p)-27(\\363\\252)-328(o)-28(d)1(z)-1(ian)1(i)-328(wpadal)1(i)-328(na)-328(dr)1(o-)]TJ -27.879 -13.549 Td[(gi,)-429(a)-429(coraz)-429(wi\\246)-1(k)1(s)-1(z\\241)-429(kup)1(\\241)-429(c)-1(i)1(s)-1(n)1(\\246)-1(li)-428(s)-1(i\\246)-429(na)-429(most)-429(pr)1(z)-1(ed)-429(m\\252ynem,)-429(s)-1(k)56(\\241d)-428(w)-1(i)1(da\\242)-429(b)28(y\\252o)]TJ 0 -13.55 Td[(na)-55(jl)1(e)-1(p)1(ie)-1(j)1(,)-333(\\273)-1(e)-334(mo\\273e)-334(w)-334(j)1(aki\\261)-334(p)1(ac)-1(i)1(e)-1(rz)-333(c)-1(a\\252a)-333(wie)-1(\\261)-334(j)1(u\\273)-333(s)-1(i\\246)-333(s)-1(t\\252o)-28(cz)-1(y)1(\\252a.)]TJ 27.879 -13.549 Td[(P)28(o\\273ar)-397(za\\261)-398(ur)1(as)-1(ta\\252)-397(co)-397(c)27(h)28(wila,)-397(f)1(olw)28(ark)-397(sto)-56(j)1(a\\252)-398(n)1(a)-397(w)-1(zg\\363rzu)-397(p)-27(o)-28(d)-397(lasem)-1(,)-397(wi\\246c)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(cia\\273)-355(o)-355(p)1(ar\\246)-355(wior)1(s)-1(t)-354(o)-28(d)-354(Lip)1(iec)-1(,)-354(wida\\242)-354(b)28(y\\252o)-355(j)1(ak)-354(na)-354(d\\252oni)-354(wzm)-1(agan)1(ie)-355(si\\246)-355(ogni)1(a.)]TJ 0 -13.549 Td[(Na)-428(cz)-1(arn)1(e)-1(j)-427(\\261c)-1(ian)1(ie)-428(las)-1(u)-427(roi\\252y)-427(s)-1(i\\246)-428(ogni)1(s)-1(te)-428(j\\246z)-1(or)1(y)-428(i)-428(wyb)1(uc)27(h)1(a\\252y)-428(kr)1(w)27(a)28(w)27(e,)-428(sk\\252\\246bio-)]TJ 0 -13.549 Td[(ne)-408(c)28(hm)28(ury)84(.)-407(Nie)-408(b)28(y\\252o)-407(w)-1(i)1(atru)-407(i)-407(ogie)-1(\\253)-407(wyn)1(os)-1(i\\252)-407(s)-1(i\\246)-408(coraz)-408(wy\\273e)-1(j)1(,)-407(bud)1(yn)1(ki)-408(p)1(\\252on\\246\\252y)]TJ 0 -13.55 Td[(kiej)-310(sm)-1(oln)1(e)-311(s)-1(zcz)-1(ap)28(y)84(,)-310(c)-1(zarn)1(e)-311(dym)28(y)-311(w)28(ali\\252y)-310(s\\252upami,)-310(a)-310(krw)28(a)27(wy)84(,)-310(z)-1(wic)27(h)1(rzon)28(y)-310(br)1(z)-1(ask)]TJ 0 -13.549 Td[(rozlew)27(a\\252)-333(s)-1(i)1(\\246)-334(w)-334(cie)-1(mn)1(o\\261)-1(ciac)27(h)-333(r)1(z)-1(ek)56(\\241)-334(ogn)1(is)-1(t)1(\\241)-334(i)-333(c)27(h)29(w)-1(i)1(a\\252)-334(si\\246)-334(j)1(u\\273)-334(n)1(ad)-333(b)-28(or)1(e)-1(m.)]TJ\nET\nendstream\nendobj\n1445 0 obj <<\n/Type /Page\n/Contents 1446 0 R\n/Resources 1444 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1444 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1450 0 obj <<\n/Length 6123      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(452)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(30.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Pr)1(z)-1(era\\271liw)28(e)-334(ry)1(ki)-333(rozdar\\252y)-333(p)-27(o)27(wietrze.)]TJ 0 -13.549 Td[({)-333(W)83(o\\252o)28(wina)-333(si\\246)-334(pal)1(i,)-333(nie)-333(uratu)1(j\\241)-333(wiele)-1(,)-333(b)-27(o)-333(jedne)-333(drzwi.)]TJ 0 -13.549 Td[({)-333(Stogi)-333(si\\246)-334(teraz)-334(za)-56(j)1(m)27(u)1(j\\241!)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(sto)-28(d)1(o\\252y)-333(w)-334(ogni)1(u!)-333({)-333(w)27(o\\252ali)-333(strw)28(o\\273)-1(eni.)]TJ 0 -13.549 Td[(Ksi\\241dz)-243(n)1(adbi)1(e)-1(g\\252,)-243(k)28(o)28(w)28(al,)-243(so\\252t)28(ys)-1(,)-242(a)-243(w)-243(k)28(o\\253cu)-243(i)-242(w)27(\\363)-55(jt)-243(sk)56(\\241dci\\261)-243(s)-1(i\\246)-243(zja)28(wi\\252,)-243(ale)-243(c)27(h)1(o)-28(\\242)]TJ -27.879 -13.55 Td[(pi)1(jan)28(y)84(,)-244(\\273e)-245(l)1(e)-1(d)1(w)-1(i)1(e)-245(si\\246)-244(trzyma\\252)-244(na)-244(n)1(ogac)27(h,)-243(z)-1(acz)-1(\\241\\252)-244(wrze)-1(szc)-1(ze)-1(\\242)-244(i)-244(wygan)1(ia\\242)-245(l)1(ud)1(z)-1(i,)-243(b)28(yc)27(h)]TJ 0 -13.549 Td[(na)-333(p)-27(om)-1(o)-27(c)-334(lec)-1(ieli)-333(d)1(w)27(oro)28(wi.)]TJ 27.879 -13.549 Td[(Ale)-334(n)1(ikt)-333(si\\246)-334(z)-334(t)28(ym)-333(nie)-333(\\261)-1(p)1(ie)-1(sz)-1(y)1(\\252,)-334(a)-333(j)1(e)-1(n)1(o)-334(z\\252y)-333(p)-28(omru)1(k)-333(z)-1(erw)27(a\\252)-333(si\\246)-334(w)-334(ci\\273bie:)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(ha)-55(j)-333(c)27(h)1(\\252)-1(op)-27(\\363)28(w)-334(p)1(usz)-1(cz)-1(\\241,)-333(to)-333(p)-27(ole)-1(c\\241)-333(rato)28(w)27(a\\242!)]TJ 0 -13.549 Td[(I)-331(nie)-331(p)-28(omog\\252y)-331(kl\\241t)28(wy)-331(ni)-331(gro\\271b)28(y)84(,)-331(ani)-331(na)28(w)28(e)-1(t)-331(p)1(rob)-27(os)-1(zc)-1(zo)28(w)27(e)-332(p)1(\\252aks)-1(i)1(w)27(e)-332(b)1(\\252aga-)]TJ -27.879 -13.549 Td[(ni)1(a:)-333(nar\\363)-27(d)-333(s)-1(to)-55(ja\\252)-333(niep)-27(orusz)-1(on)29(y)-333(i)-334(w)-333(ogie\\253)-333(p)-28(on)29(uro)-333(pat)1(rz)-1(a\\252.)]TJ 27.879 -13.55 Td[({)-333(Psie)-1(k)1(rwie)-334(p)1(arob)28(y)-333(d)1(w)27(orskie!)-333({)-334(zakr)1(z)-1(ycz)-1(a\\252a)-333(Kob)1(uso)27(w)28(a)-333(pi\\246\\261)-1(ci\\241)-333(gro\\273\\241c)-1(.)]TJ 0 -13.549 Td[(\\233e)-265(t)28(ylk)28(o)-265(w)28(\\363)-56(j)1(t)-265(wraz)-265(z)-1(e)-265(so\\252)-1(t)28(y)1(s)-1(em)-265(i)-265(k)28(o)28(w)27(alem)-265(p)-27(o)-56(jec)27(h)1(ali)-265(d)1(o)-265(ogni)1(a,)-265(i)-265(t)1(o)-265(z)-266(go\\252y)1(m)-1(i)]TJ -27.879 -13.549 Td[(r\\246k)28(oma,)-334(gd)1(y\\273)-334(an)1(i)-333(b)-28(osak)28(\\363)28(w)-1(,)-333(n)1(i)-333(w)-1(i)1(ader)-333(nie)-334(p)-27(ozw)27(oli)1(li)-333(z)-1(ab)1(ie)-1(r)1(a\\242)-334(z)-334(c)28(ha\\252up)1(.)]TJ 27.879 -13.549 Td[({)-449(Kij)1(am)-1(i)-449(tego,)-449(kt\\363ren)-449(ru)1(s)-1(zy!)-449(Na)-449(s)-1(tracenie)-450(\\261cie)-1(r)1(w)27(\\246!)-449({)-450(za)28(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252y)-449(jak)]TJ -27.879 -13.549 Td[(jedn)1(a.)]TJ 27.879 -13.55 Td[(A)-326(ca\\252)-1(a)-326(wie\\261)-327(si\\246)-326(ju\\273)-326(z)-1(ebr)1(a\\252a,)-326(do)-326(n)1(a)-56(j)1(m)-1(\\252o)-28(d)1(s)-1(zyc)27(h)1(,)-326(co)-327(j)1(e)-327(r)1(oz)-1(kr)1(z)-1(y)1(c)-1(zane)-326(na)-326(r\\246ku)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(h)28(u\\261t)28(yw)27(al)1(i,)-398(i)-397(k\\252\\246bil)1(i)-398(si\\246)-398(wielk)56(\\241,)-398(p)-27(on)28(u)1(r\\241)-398(ci\\273b\\241,)-397(\\273)-1(e)-398(ma\\252o)-398(kt)1(o)-398(si\\246)-398(o)-28(dzyw)28(a\\252,)-398(a)-397(i)]TJ 0 -13.549 Td[(to)-314(s)-1(zeptem)-1(,)-314(p)1(a\\261)-1(li)-314(j)1(e)-1(n)1(o)-314(c)27(hciw)28(e)-315(o)-28(cz)-1(y)-314(i)-314(wzdyc)28(hali)1(,)-315(b)-27(o)-314(w)-315(k)56(a\\273dym)-314(s)-1(ercu)-314(kr)1(z)-1(ew)-1(i)1(\\252y)-314(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ta)-56(j)1(one)-315(srogo)-314(r)1(ado\\261c)-1(ie,)-314(\\273e)-315(to)-314(za)-314(lip)-27(e)-1(c)28(kie)-314(krzywdy)-314(P)29(an)-314(B\\363g)-314(dzie)-1(d)1(z)-1(ica)-314(ogni)1(e)-1(m)]TJ 0 -13.549 Td[(p)-27(ok)55(ar)1(a\\252.)]TJ 27.879 -13.55 Td[(Do)-335(p)-28(\\363\\271na)-335(w)-336(n)1(o)-28(c)-336(si\\246)-336(p)1(ali\\252o,)-335(a)-336(n)1(ikto)-335(do)-335(dom)-335(nie)-336(p)-27(osz)-1(ed\\252:)-335(c)-1(zek)55(al)1(i)-336(cierpl)1(iwie)]TJ -27.879 -13.549 Td[(k)28(o\\253ca,)-259(\\273e)-259(to)-259(ju)1(\\273)-260(j)1(e)-1(d)1(no)-259(morze)-260(ogn)1(ia)-259(p)1(rz)-1(ew)28(ala\\252o)-259(s)-1(i)1(\\246)-260(n)1(ad)-259(f)1(olw)27(ar)1(kiem)-260(i)-258(bi\\252o)-259(spi)1(\\246)-1(tr)1(z)-1(o-)]TJ 0 -13.549 Td[(n)28(ymi)-329(fal)1(am)-1(i)-329(w)-329(nieb)-27(o,)-330(zapal)1(one)-330(snop)1(ki)-329(z)-330(d)1(ac)27(h\\363)28(w)-329(i)-330(gon)29(t)28(y)-330(r)1(oz)-1(n)1(os)-1(i)1(\\252)-1(y)-329(si\\246)-330(k)1(rw)27(a)28(wym)]TJ 0 -13.549 Td[(desz)-1(cz)-1(em)-1(,)-280(a)-281(o)-28(d)-280(cz)-1(erw)28(on)28(yc)27(h)-280(\\252un)1(,)-281(co)-281(j)1(ak)-281(ogn)1(is)-1(t)1(e)-282(p)1(\\252ac)27(h)28(t)28(y)-280(w)-1(i)1(e)-1(w)28(a\\252y)-281(w)-281(cie)-1(mn)1(o\\261)-1(ciac)27(h)1(,)]TJ 0 -13.549 Td[(zrumieni\\252y)-274(s)-1(i\\246)-275(cz)-1(u)1(b)28(y)-275(d)1(rz)-1(ew)-275(i)-275(d)1(ac)27(h)28(y)-275(m\\252yn)1(ic)-1(y)-274(z)-1(a\\261)-275(s)-1(t)1(a)27(w)-275(j)1(akb)28(y)-275(k)1(to)-275(p)-28(otr)1(z)-1(\\241s\\252)-275(bl)1(adym)]TJ 0 -13.55 Td[(zarz)-1(ewiem)-1(.)]TJ 27.879 -13.549 Td[(T)83(u)1(rk)28(ot)28(y)-380(w)27(oz\\363)28(w)-1(,)-379(krzyki)-380(\\252ud)1(z)-1(i)1(,)-380(ryki)1(,)-380(s)-1(tr)1(as)-1(zna)-380(groza)-380(z)-1(n)1(is)-1(zcz)-1(enia)-380(b)1(i\\252y)-380(z)-381(p)-27(o-)]TJ -27.879 -13.549 Td[(\\273aru,)-344(a)-344(wie\\261)-345(w)28(c)-1(i\\241\\273)-344(s)-1(ta\\252a,)-344(j)1(akb)28(y)-344(ten)-344(\\273ywy)-344(m)27(u)1(r)-344(w)-345(ziem)-1(i\\246)-344(wros)-1(\\252y)84(,)-344(a)-344(pas\\241c)-1(y)-344(o)-27(c)-1(zy)-344(i)]TJ 0 -13.549 Td[(du)1(s)-1(ze)-334(o)-28(d)1(e)-1(mst\\241...)]TJ 27.879 -13.549 Td[(Za\\261)-334(o)-28(d)-333(k)56(ar)1(c)-1(zm)27(y)-333(rozlega\\252)-334(si\\246)-334(o)-28(c)28(hry)1(p\\252y)-333(g\\252os)-334(pi)1(jan)1(e)-1(go)-333(Jam)27(b)1(ro\\273a:)]TJ 0 -13.55 Td[(Dzi\\261)-334(Mar)1(y\\261)-334(mo)-56(j)1(a,)-333(Mary\\261!)-333(Da)-333(dob)1(re)-334(p)1(iw)27(o)-333(w)28(arz)-1(y)1(s)-1(z!)]TJ\nET\nendstream\nendobj\n1449 0 obj <<\n/Type /Page\n/Contents 1450 0 R\n/Resources 1448 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1448 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1453 0 obj <<\n/Length 6143      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(31)]TJ/F17 10.909 Tf 0 -73.325 Td[(Na)-225(tak)55(\\241)-225(d)1(z)-1(iwn)1(\\241)-226(wie\\261)-1(\\242)-226(Han)1(k)56(a)-226(a\\273)-226(si\\246)-226(u)1(nies\\252)-1(a)-225(z)-226(p)-27(o\\261)-1(cieli,)-225(\\273e)-226(Jagust)28(ynk)56(a)-225(pr)1(z)-1(ec)27(h)28(wyci\\252a)]TJ 0 -13.549 Td[(j\\241)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(w)-334(p)-27(or\\246)-334(i)-333(do)-333(p)-27(o)-28(du)1(s)-1(zek)-334(p)1(rzygni)1(e)-1(t\\252a.)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(si\\246)-334(n)1(ie)-334(ru)1(c)27(h)1(a)-56(jcie,)-333(nie)-333(pali)-333(si\\246)-334(n)1(ik)56(a)-56(j!)]TJ 0 -13.549 Td[({)-245(Bo)-245(tak)56(\\241)-245(rze)-1(cz)-245(p)-28(o)28(wiedzie)-1(l)1(i,)-245(j)1(akb)28(y)-245(i)1(m)-246(w)28(e)-245(\\252bie)-245(z)-1(amro)-27(c)-1(zy\\252o;)-245(p)1(rze)-1(m)28(yjcie)-245(s)-1(ob)1(ie)]TJ -27.879 -13.55 Td[(cie)-1(mi\\246)-334(\\261wi\\246)-1(con\\241)-333(w)28(o)-28(d\\241,)-333(to)-333(w)28(am)-1(a)-333(du)1(r)-333(pr)1(z)-1(ejdzie.)]TJ 27.879 -13.549 Td[({)-470(Ni)1(e)-1(,)-469(Han)28(u\\261,)-469(roz)-1(u)1(m)-470(sw)27(\\363)-55(j)-470(mam)-470(i)-469(pr)1(a)27(wd\\246)-470(r)1(z)-1(ek\\252em)-1(,)-469(jak)28(o)-469(pan)-469(Jace)-1(k)-469(o)-28(d)]TJ -27.879 -13.549 Td[(w)28(c)-1(zora)-56(j)-327(s)-1(i)1(e)-1(d)1(z)-1(i)-327(w)-1(r)1(az)-329(ze)-329(mn)1(\\241...)-328(j)1(u\\261c)-1(i.)1(..)-328({)-328(j)1(\\241k)55(a\\252)-328(Byl)1(ic)-1(a)-328(p)1(rzygin)1(a)-56(j\\241c)-328(si\\246)-329(d)1(o)-328(kic)28(han)1(ia)]TJ 0 -13.549 Td[(p)-27(o)-334(t\\246gim)-333(z)-1(a\\273yc)-1(i)1(u.)]TJ 27.879 -13.549 Td[({)-391(Wi)1(da\\242)-391(ju)1(\\273)-392(d)1(o)-391(c)-1(n)1(a)-391(og\\252up)1(ia\\252!)-391(Ob)1(ac)-1(zc)-1(i)1(e)-1(;)-391(czy)-391(ni)1(e)-392(wraca)-56(j)1(\\241,)-391(dziec)27(k)28(o)-391(mi)-391(za-)]TJ -27.879 -13.549 Td[(g\\252o)-28(d)1(z)-1(\\241.)]TJ 27.879 -13.55 Td[({)-272(Od)-271(k)28(o\\261)-1(cio\\252a)-272(n)1(ik)28(og\\363)-56(j)-271(jes)-1(zcz)-1(e)-272(nie)-272(wid)1(no!)-272({)-272(ob)-55(j)1(a\\261)-1(n)1(i\\252a)-272(p)-27(o)-272(c)27(h)28(wili)-271(Jagust)28(ynk)56(a,)]TJ -27.879 -13.549 Td[(zno)28(wu)-333(z)-1(ab)1(ie)-1(r)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(do)-333(up)1(rz\\241tania)-333(izb)28(y)84(,)-333(p)-28(osypu)1(j\\241c)-334(j)1(\\241)-333(piaskiem)-1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-333(kic)28(ha\\252)-333(z)-1(a)28(wz)-1(i\\246c)-1(i)1(e)-334(raz)-334(p)-27(o)-333(razie)-1(,)-333(\\273e)-334(a\\273)-334(n)1(a)-334(\\252a)28(wie)-334(p)1(rzys)-1(i)1(ad\\252.)]TJ 0 -13.549 Td[({)-333(T)83(r\\241b)1(ic)-1(i)1(e)-334(kiej)-333(w)-334(mie\\261)-1(cie)-334(n)1(a)-334(r)1(ynk)1(u!)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(kr)1(z)-1(epk)56(a)-333(tabak)56(a)-334(p)1(ana)-333(Jac)27(k)28(o)28(w)28(a,)-333(c)-1(a\\252\\241)-333(pacz)-1(k)28(\\246)-334(mi)-333(da\\252.)1(..)-333(c)-1(a\\252\\241..)1(.)]TJ 0 -13.55 Td[(Rano)-329(j)1(e)-1(szc)-1(ze)-330(b)29(y\\252o,)-329(okn)1(e)-1(m)-329(zaz)-1(iera\\252o)-329(j)1(as)-1(n)1(e)-330(i)-328(c)-1(i)1(e)-1(p)1(\\252)-1(e)-329(s\\252o\\253ce)-330(d)1(rze)-1(w)28(a)-329(s)-1(i)1(\\246)-330(w)-329(sa-)]TJ -27.879 -13.549 Td[(dzie)-433(c)28(h)28(wia\\252y)-432(o)-28(d)-432(wiatru)1(,)-432(z)-1(a\\261)-432(prze)-1(z)-432(w)-1(y)1(w)27(ar)1(te)-433(dr)1(z)-1(wi)-432(do)-432(sie)-1(n)1(i)-432(c)-1(isn\\246\\252y)-432(s)-1(i)1(\\246)-433(p)-28(ogi)1(\\246)-1(te)]TJ 0 -13.549 Td[(g\\246s)-1(ie)-346(sz)-1(yj)1(e)-347(i)-345(c)-1(ze)-1(r)1(w)27(on)1(e)-1(,)-345(s)-1(ycz\\241c)-1(e)-346(dziob)28(y)84(,)-346(a)-346(ca\\252e)-347(stado)-345(utap)1(lan)28(yc)28(h)-346(w)-346(b\\252o)-27(c)-1(ie)-346(i)-346(p)1(isz)-1(-)]TJ 0 -13.549 Td[(cz)-1(\\241cyc)27(h)-392(g\\241si\\241t)-392(s)-1(k)1(raba\\252o)-392(s)-1(i)1(\\246)-393(na)-392(pr)1(\\363g)-393(wysoki.)-392(Nar)1(az)-393(pies)-393(gd)1(z)-1(iesik)-392(z)-1(a)28(w)28(arc)-1(za\\252,)-392(\\273)-1(e)]TJ 0 -13.549 Td[(g\\246s)-1(i)-394(p)-27(o)-28(d)1(nios\\252y)-394(kr)1(z)-1(y)1(k,)-394(a)-394(kw)28(oki)-393(s)-1(iedz\\241c)-1(e)-394(n)1(a)-394(ja)-55(jac)27(h)-393(gdak)56(a\\242)-394(p)-27(o)-28(c)-1(z\\246)-1(\\252y)-393(s)-1(tr)1(ac)27(hl)1(iwie)-394(i)]TJ 0 -13.55 Td[(sfru)29(w)27(a\\242)-334(z)-333(gniazd.)]TJ 27.879 -13.549 Td[({)-333(A)-334(d)1(y\\242)-334(c)28(ho)-28(cia\\273)-334(d)1(o)-334(sadu)-333(wyp)-27(\\246d\\271c)-1(ie,)-333(m)-1(o\\273e)-334(si\\246)-334(tr)1(a)27(w)28(\\241)-333(z)-1(ab)1(a)27(wi\\241.)]TJ 0 -13.549 Td[({)-333(Wyp)-27(\\246)-1(d)1(z)-1(\\246,)-333(Han)28(u\\261,)-333(i)-333(o)-28(d)-333(gap)-333(p)1(rz)-1(y)1(pil)1(n)28(uj)1(\\246)-1(..)1(.)]TJ 0 -13.549 Td[(Wn)1(e)-1(t)-329(p)1(rz)-1(y)1(c)-1(ic)28(h\\252o)-329(w)-330(i)1(z)-1(b)1(ie)-1(,)-329(j)1(e)-1(n)1(o)-329(s)-1(zum)-329(drzew)-330(d)1(o)-28(c)27(h)1(o)-28(dzi\\252)-329(z)-1(e)-329(dw)28(oru)-329(i)-329(k)28(oleba\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(zdzie)-1(b)1(k)28(o)-334(\\261wiat)28(y)83(,)-333(wisz)-1(\\241ce)-334(u)-333(cz)-1(ar)1(nego)-334(p)1(u\\252apu)1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(o)-333(tam)-333(c)27(h\\252op)1(aki)-333(robi)1(\\241?)-334({)-333(z)-1(ap)29(yta\\252a)-334(Han)1(k)56(a)-334(p)-27(o)-333(d\\252ugi)1(e)-1(j)-333(c)28(h)28(wili.)]TJ 0 -13.549 Td[({)-480(Pietrek)-481(or)1(z)-1(e)-481(ziem)-1(n)1(iacz)-1(ysk)28(o)-480(p)-28(o)-28(d)-480(g\\363r)1(k)55(\\241,)-480(a)-480(Witek)-480(w)27(e)-481(w)28(a\\252ac)27(ha)-480(br)1(on)28(uj)1(e)]TJ -27.879 -13.549 Td[(zagon)28(y)-333(p)-28(o)-27(d)-333(le)-1(n)-333(n)1(a)-333(\\261)-1(wi\\253)1(s)-1(ki)1(m)-334(do\\252ku)1(.)]TJ 27.879 -13.549 Td[({)-333(Mokr)1(o)-334(tam)-333(jes)-1(zc)-1(ze)-1(?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)1(re)-1(p)29(y)-333(c)-1(a\\252kiem)-334(wi\\246z)-1(n)1(\\241,)-333(ale)-334(p)-27(o)-334(zbr)1(ono)28(w)28(a)-1(n)1(iu)-333(r)1(yc)27(h)1(le)-1(j)-333(p)1(rze)-1(sc)27(h)1(nie.)]TJ 0 -13.55 Td[({)-333(Nim)-334(si\\246)-334(te\\273)-334(zie)-1(mia)-333(wygrze)-1(j)1(e)-334(do)-333(sie)-1(wu)1(,)-333(m)-1(o\\273e)-334(ju)1(\\273)-334(ws)-1(tan)1(\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(O)-333(s)-1(ob)1(ie)-334(teraz)-334(p)1(am)-1(i\\246ta)-55(jcie)-1(,)-333(a)-333(rob)-27(ot)28(y)-333(w)27(ama)-333(nikto)-333(n)1(ie)-334(uk)1(radn)1(ie!)]TJ 0 -13.549 Td[({)-333(Wyd)1(o)-56(jon)1(e)-334(to)-333(kro)28(wy?)]TJ 330.353 -29.888 Td[(453)]TJ\nET\nendstream\nendobj\n1452 0 obj <<\n/Type /Page\n/Contents 1453 0 R\n/Resources 1451 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1451 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1456 0 obj <<\n/Length 8908      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(454)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Samam)-334(d)1(oi\\252a,)-333(b)-28(o)-333(Jagu\\261)-333(p)-28(o)-28(d)-332(ob)-28(or)1(\\241)-334(sz)-1(k)28(op)1(ki)-333(usta)28(wi\\252a)-334(i)-333(gd)1(z)-1(ies)-1(i)1(k)-333(p)-28(osz)-1(\\252a.)]TJ 0 -13.549 Td[({)-322(Nosi)-322(s)-1(i)1(\\246)-323(ci\\246gie)-1(m)-322(p)-27(o)-322(ws)-1(i)-322(j)1(ak)-322(ten)-322(p)1(ie)-1(s,)-322(\\273e)-323(\\273adn)1(e)-1(j)-321(p)-28(omo)-28(cy)-322(n)1(i)-322(wyr\\246ki.)-322(Hal)1(e)-1(,)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzcie)-362(Kobu)1(s)-1(o)28(w)28(e)-1(j)1(,)-361(\\273)-1(e)-362(zagon)28(y)-361(p)-28(o)-28(d)-361(k)56(ap)1(ust\\246)-362(dam)-362(i)-361(P)1(ie)-1(tr)1(e)-1(k)-361(gn\\363)-55(j)-361(o)-28(d)-361(ni)1(e)-1(j)-361(wy-)]TJ 0 -13.549 Td[(wiez)-1(ie)-306(i)-305(z)-1(aor)1(z)-1(e,)-306(ale)-306(p)-27(o)-306(cz)-1(tery)-305(dn)1(i)-306(o)-28(d)1(rob)1(ku)-305(z)-307(j)1(e)-1(d)1(nego.)-306(P)1(rzy)-306(sadze)-1(n)1(iu)-305(z)-1(iemniak)28(\\363)28(w)]TJ 0 -13.549 Td[(o)-28(d)1(robi)1(\\252ab)28(y)-333(p)-28(o\\252o)28(w)28(\\246)-1(,)-333(a)-333(re)-1(szt\\246)-334(w)27(e)-333(\\273)-1(n)1(iw)27(o.)]TJ 27.879 -13.55 Td[({)-333(Koz)-1(\\252o)28(w)28(a)-334(te\\273)-334(c)28(hcia\\252ab)28(y)-333(z)-1(agon)-333(p)-27(o)-28(d)-333(l)1(e)-1(n)-333(n)1(a)-334(o)-27(drob)-27(ek.)]TJ 0 -13.549 Td[({)-322(T)27(yl)1(a)-323(o)-27(drob)1(i,)-322(c)-1(o)-322(pi)1(e)-1(s)-323(n)1(ap\\252acz)-1(e.)-322(Nie)-1(c)28(h)-322(s)-1(e)-322(k)55(a)-55(j)-322(in)1(dzie)-1(j)-322(sz)-1(u)1(k)56(a,)-322(dosy\\242)-323(si\\246)-323(\\252oni)]TJ -27.879 -13.549 Td[(naszc)-1(ze)-1(k)56(a\\252a)-333(prze)-1(d)-332(c)-1(a\\252\\241)-333(w)-1(si\\241)-333(na)-333(o)-56(j)1(c)-1(a,)-333(\\273e)-334(j\\241)-333(u)1(krzywdzi\\252.)]TJ 27.879 -13.549 Td[({)-371(Jak)-370(w)27(am)-371(do)-370(up)-27(o)-28(dob)28(y)84(,)-371(w)28(asz)-372(gr)1(on)28(t,)-371(to)-371(i)-370(w)27(asz)-1(a)-370(w)27(ola!)-370(Fili)1(pk)56(a)-371(tu)-370(w)27(cz)-1(or)1(a)-56(j)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dcz)-1(as)-333(w)27(asz)-1(y)1(c)27(h)-333(ro)-27(d\\363)28(w)-334(zac)27(ho)-27(dzi\\252a)-334(o)-333(zie)-1(mn)1(iaki.)]TJ 27.879 -13.549 Td[({)-333(Za)-334(p)1(ie)-1(n)1(i\\241d)1(z)-1(e)-334(c)28(hcia\\252a?)]TJ 0 -13.55 Td[({)-333(Odr)1(obi\\252ab)28(y)1(;)-333(tam)-334(grosz)-1(a)-333(w)-334(c)28(ha\\252u)1(pie)-334(n)1(ie)-334(p)-27(o\\261w)-1(i)1(e)-1(ci,)-333(g\\252o)-28(dem)-334(p)1(rz)-1(y)1(m)-1(i)1(e)-1(ra)-55(j\\241.)]TJ 0 -13.549 Td[({)-367(Z)-367(p)-27(\\363\\252)-368(k)28(or)1(c)-1(zyk)56(a)-367(do)-367(j)1(e)-1(d)1(z)-1(enia)-367(zaraz)-367(niec)27(h)-366(w)27(e\\271)-1(mie,)-367(a)-367(p)-27(otrza)-367(jej)-367(wi\\246c)-1(ej,)-367(to)]TJ -27.879 -13.549 Td[(dop)1(iero)-266(p)-28(o)-266(sadze)-1(n)1(iu,)-266(b)-27(o)-28(\\242)-267(n)1(ie)-267(wiad)1(a)-1(,)-266(wiela)-266(os)-1(tan)1(ie.)-266(Przyj)1(dzie)-267(J\\363zk)55(a,)-266(to)-266(o)-28(d)1(m)-1(i)1(e)-1(r)1(z)-1(y)84(,)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(r)1(ob)-28(otn)1(ica)-334(z)-334(F)1(ilip)1(ki,)-333(no!)1(...)-333(zb)28(yw)28(a)-334(j)1(e)-1(n)1(o...)]TJ 27.879 -13.549 Td[({)-333(A)-334(z)-333(c)-1(ze)-1(go)-333(to)-333(nab)1(ie)-1(r)1(z)-1(e)-334(mo)-28(cy?)-334(Ni)1(e)-334(do)-55(je,)-333(nie)-333(do\\261pi,)-333(a)-333(c)-1(o)-333(rok)-333(ro)-27(dzi.)]TJ 0 -13.55 Td[({)-275(Marn)1(ac)-1(j)1(a,)-276(m\\363)-55(j)-275(Je)-1(zu,)-275(\\273niw)28(a)-276(j)1(e)-1(szc)-1(ze)-276(z)-1(a)-275(g\\363rami,)-275(a)-276(p)1(rze)-1(d)1(n\\363)28(w)28(e)-1(k)-275(z)-1(a)-275(pr)1(ogiem)-1(.)]TJ 0 -13.549 Td[({)-327(Za)-327(pr)1(ogie)-1(m!)-327(W)-326(c)27(ha\\252u)1(pac)27(h)-326(ju)1(\\273)-328(siedzi,)-327(za)-327(brzuc)28(h)28(y)-327(\\261c)-1(isk)56(a,)-327(\\273e)-328(ledwie)-327(z)-1(i)1(pi\\241.)]TJ 0 -13.549 Td[({)-333(Wyp)1(u\\261c)-1(il)1(i\\261)-1(cie)-334(to)-333(mac)-1(ior)1(\\246)-1(?)]TJ 0 -13.549 Td[({)-333(Le)-1(g\\252a)-333(p)-28(o)-27(d)-333(\\261)-1(cian)1(\\241,)-334(al)1(e)-334(pr)1(os)-1(iak)1(i)-334(\\261liczne,)-334(ok)1(r\\241)-28(glu)1(c)27(h)1(ne)-334(ki)1(e)-1(j)-333(te)-333(bu)1(\\252)-1(ecz)-1(ki)1(.)]TJ 0 -13.549 Td[(Bylica)-333(s)-1(tan)1(\\241\\252)-334(w)28(e)-334(dr)1(z)-1(wiac)28(h)-333(i)-333(z)-1(a)-55(j\\241k)56(a\\252:)]TJ 0 -13.55 Td[({)-250(G\\246s)-1(i)-249(p)-28(o)-28(d)-249(jan)1(gres)-1(tami)-250(osta)27(wi\\252em.)-250(A)-250(to)-250(pr)1(z)-1(ysze)-1(d\\252)-250(n)1(ib)28(y)-250(p)1(an)-250(Jace)-1(k)-249(w)27(e)-250(\\261)-1(wi\\246-)]TJ -27.879 -13.549 Td[(to)-275(i)-276(p)-27(o)28(w)-1(i)1(ada:)-275(\\377)27(W)1(pro)28(w)28(adz\\246)-276(s)-1(i\\246)-276(d)1(o)-276(cie)-1(b)1(ie,)-276(Byli)1(c)-1(a,)-275(na)-275(k)28(om)-1(or)1(ne)-276(i)-275(dobr)1(z)-1(e)-276(zap\\252ac\\246)-1(..)1(.\")]TJ 0 -13.549 Td[(My)1(\\261)-1(la\\252ec)27(h)1(:)-401(przekpiw)28(a)-401(se)-402(z)-401(c)27(h\\252op)1(a,)-401(jak)28(o)-401(u)-400(pan\\363)28(w)-401(z)-1(wycza)-56(jn)1(ie,)-401(i)-401(rze)-1(k)28(\\246:)-401(\\377Gr)1(os)-1(za)]TJ 0 -13.549 Td[(mi)-281(p)-27(otr)1(z)-1(a)-280(i)-281(p)-27(ok)28(o)-56(j)1(e)-281(w)28(o)-1(l)1(ne)-281(mam!\")-281(Za\\261m)-1(i)1(a\\252)-281(si\\246)-1(,)-280(d)1(a\\252)-281(mi)-281(p)1(ac)-1(zk)28(\\246)-281(p)-27(e)-1(terb)1(urk)1(i,)-280(c)27(ha\\252u)1(p)-28(\\246)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(rza\\252)-305(i)-305(m\\363)28(w)-1(i)1(:)-305(\\377)28(Wy)-304(m)-1(o\\273e)-1(cie)-305(tu)-304(wysie)-1(d)1(z)-1(i)1(e)-1(\\242,)-305(to)-304(i)-305(j)1(a)-305(p)-28(or)1(adz\\246)-1(,)-304(a)-305(c)28(ha\\252up)-27(\\246)-305(z)-305(w)27(oln)1(a)]TJ 0 -13.55 Td[(wyp)-27(orz\\241dzim)-1(,)-333(\\273e)-334(za)-334(d)1(w)27(\\363r)-333(starcz)-1(y)1(!\")]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(taki)-333(sz)-1(l)1(ac)27(hcic,)-333(dzie)-1(d)1(z)-1(i)1(c)-1(\\363)28(w)-334(b)1(rat!)-333({)-333(dziwi\\252a)-333(s)-1(i\\246)-333(s)-1(tara.)]TJ 0 -13.549 Td[({)-384(Zrobi)1(\\252)-385(se)-385(lego)28(w)-1(i)1(s)-1(k)28(o)-384(p)-27(ob)-28(ok)-384(mo)-56(j)1(e)-1(go)-384(i)-384(sie)-1(d)1(z)-1(i)1(.)-384(Wyc)27(h)1(o)-28(dzi\\252em)-1(,)-384(to)-384(na)-384(p)1(rogu)]TJ -27.879 -13.549 Td[(pap)1(ierosa)-334(ku)1(rzy\\252)-334(i)-333(wr\\363b)1(le)-334(ziarn)1(e)-1(m)-333(pr)1(z)-1(yn)1(\\246)-1(ca\\252.)]TJ 27.879 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(to)-333(jad)1(\\252)-334(b)-27(\\246dzie)-1(?)]TJ 0 -13.55 Td[({)-333(Garn)28(u)1(s)-1(zki)-333(ze)-334(s)-1(ob)1(\\241)-333(s)-1(p)1(ro)28(w)27(ad)1(z)-1(i\\252)-333(i)-333(arb)1(at\\246)-334(c)-1(i)1(\\246)-1(giem)-334(w)28(arzy)-333(a)-334(p)-27(opi)1(ja..)1(.)]TJ 0 -13.549 Td[({)-333(Na)-334(d)1(armo)-334(t)1(e)-1(go)-333(nie)-333(robi)1(,)-334(cosik)-333(w)-334(t)28(ym)-333(b)28(y\\242)-334(m)28(usi,)-333(\\273)-1(e)-333(taki)-333(pan)1(...)]TJ 0 -13.549 Td[({)-425(A)-425(j)1(e)-1(st,)-425(\\273e)-426(d)1(o)-425(c)-1(n)1(a)-425(og\\252up)1(ia\\252!)-425(Cz)-1(\\252o)28(wiek)-425(k)56(a\\273)-1(d)1(e)-1(n)-424(z)-1(a)28(wdy)-424(z)-1(ab)1(ie)-1(ga)-425(i)-424(tur)1(buj)1(e)]TJ -27.879 -13.549 Td[(si\\246)-344(o)-343(l)1(e)-1(p)1(s)-1(ze)-1(,)-343(a)-343(t)1(aki)-343(pan)-342(c)27(h)1(c)-1(ia\\252b)29(y)-343(m)-1(i)1(e)-1(\\242)-343(gorze)-1(j)1(?)-344(Ni)1(c)-344(in)1(s)-1(zego,)-343(jeno)-343(r)1(oz)-1(u)1(m)-344(straci\\252)-343({)]TJ 0 -13.549 Td[(m\\363)27(wi\\252a)-333(Hank)56(a)-333(un)1(os)-1(z\\241c)-334(g\\252o)28(w)27(\\246,)-333(gdy\\273)-333(w)-334(op\\252otk)56(ac)28(h)-333(roz)-1(l)1(e)-1(g\\252y)-333(si\\246)-334(g\\252os)-1(y)84(.)]TJ 27.879 -13.549 Td[(W)84(rac)-1(al)1(i)-278(ju)1(\\273)-279(z)-278(k)28(o\\261c)-1(io\\252a)-278(o)-27(d)-278(c)27(h)1(rztu.)-278(P)1(rzo)-28(dem)-278(J\\363z)-1(k)56(a)-278(n)1(ie)-1(s\\252a)-278(dziec)27(k)28(o)-278(w)-278(p)-27(o)-28(du)1(s)-1(z-)]TJ -27.879 -13.55 Td[(ce)-1(,)-303(c)27(h)28(u)1(s)-1(t\\241)-303(pr)1(z)-1(ykr)1(ytej,)-303(p)-28(o)-27(d)-304(str\\363\\273\\241)-304(Domin)1(ik)28(o)28(w)27(ej,)-303(a)-304(za)-304(n)1(imi)-304(w)28(alili)-303(w)27(\\363)-55(jt)-303(z)-304(P\\252osz)-1(k)28(o-)]TJ 0 -13.549 Td[(w)28(\\241,)-334(w)-333(ku)1(m)27(y)-333(pr)1(os)-1(ze)-1(n)1(i,)-333(z)-334(t)28(y\\252u)-333(za\\261)-334(ku)1(s)-1(zt)28(yk)56(a\\252)-334(Jam)28(bro\\273y)-333(nie)-333(m)-1(og\\241c)-333(nad\\241\\273y\\242.)]TJ 27.879 -13.549 Td[(Ale)-367(nim)-367(pr\\363g)-367(p)1(rz)-1(est\\241)-28(pi)1(li,)-367(Domini)1(k)28(o)27(w)28(a)-367(o)-28(debr)1(a\\252a)-368(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-367(i)-367(p)1(rz)-1(e\\273e)-1(gn)1(a)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-416(j)1(\\246)-1(\\252a)-415(z)-416(n)1(im)-1(,)-414(w)27(edle)-415(s)-1(tar)1(e)-1(go)-415(ob)28(ycz)-1(a)-55(ju)1(,)-415(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\242)-416(ca\\252)-1(y)-414(dom,)-415(na)-415(w)27(\\246g\\252ac)27(h)-415(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)-55(j\\241c)-334(i)-333(p)1(rz)-1(y)-333(k)56(a\\273dym)-333(z)-334(os)-1(ob)1(na)-333(m\\363)27(wi\\241c:)]TJ 27.879 -13.55 Td[({)-333(Na)-334(wsc)27(ho)-27(dzie)-334({)-333(tu)-333(wie)-1(j)1(e)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Na)-334(p)-27(\\363\\252no)-27(c)-1(y)-333({)-333(tu)-333(z)-1(i)1(\\246)-1(b)1(i...)]TJ\nET\nendstream\nendobj\n1455 0 obj <<\n/Type /Page\n/Contents 1456 0 R\n/Resources 1454 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1454 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1459 0 obj <<\n/Length 8272      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(455)]TJ -330.353 -35.866 Td[({)-333(Na)-334(zac)27(h)1(o)-28(dzie)-334({)-333(tu)-333(cie)-1(mn)1(o...)]TJ 0 -13.549 Td[({)-333(Na)-334(p)-27(o\\252ud)1(niu)-333({)-333(tu)-333(gr)1(z)-1(eje...)]TJ 0 -13.549 Td[({)-333(A)-334(wsz)-1(\\246dy)-333(strze)-1(\\273)-334(si\\246)-334(z\\252e)-1(go,)-333(d)1(usz)-1(o)-333(lu)1(dzk)55(a,)-333(i)-333(jeno)-333(w)-333(B)-1(ogu)-333(miej)-333(nad)1(z)-1(i)1(e)-1(j)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(nab)-27(o\\273na,)-333(a)-333(tak)55(a)-333(gu)1(\\261)-1(lar)1(k)55(a)-333(z)-334(Domin)1(ik)28(o)28(w)27(ej!)-333({)-333(\\261)-1(mia\\252)-333(s)-1(i)1(\\246)-334(w)27(\\363)-55(jt.)]TJ 0 -13.549 Td[({)-392(P)28(acierz)-392(p)-28(omaga,)-392(al)1(e)-393(i)-391(z)-1(ama)28(w)-1(i)1(anie)-392(ni)1(e)-393(zasz)-1(k)28(o)-28(d)1(z)-1(i,)-391(wiadomo!)-392({)-392(sze)-1(p)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(P\\252osz)-1(k)28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[(Szumn)1(o)-319(w)28(e)-1(szli)-318(do)-318(izb)28(y)84(.)-318(Stara)-318(r)1(oz)-1(p)-27(o)28(w)-1(i)1(\\252)-1(a)-318(d)1(z)-1(ieci\\241tk)28(o)-318(i)-318(jak)-318(j)1(e)-319(P)28(an)-318(B\\363g)-318(s)-1(t)28(w)28(o-)]TJ -27.879 -13.549 Td[(rzy\\252,)-333(nagu)1(s)-1(ie\\253k)1(ie)-334(i)-333(kiej)-333(rak)-333(cz)-1(erw)28(one,)-333(m)-1(atce)-334(d)1(o)-334(r)1(\\241k)-333(p)-28(o)-28(d)1(a\\252a.)]TJ 27.879 -13.549 Td[({)-396(P)1(ra)28(w)27(ego)-396(c)27(h)1(rze)-1(\\261c)-1(ij)1(ani)1(na,)-396(kt)1(\\363re)-1(m)28(u)-396(Ro)-27(c)27(ho)-396(n)1(a)-396(imi\\246)-396(pr)1(z)-1(y)-396(c)28(hr)1(z)-1(cie)-396(\\261)-1(wi\\246t)28(ym)]TJ -27.879 -13.549 Td[(dan)1(o,)-333(pr)1(z)-1(yn)1(os)-1(im)-333(w)27(am,)-333(matk)28(o.)-333(Nie)-1(c)28(h)-333(s)-1(i)1(\\246)-334(z)-1(d)1(ro)28(w)27(o)-333(c)27(h)1(o)28(w)27(a)-333(na)-333(p)-27(o)-28(c)-1(i)1(e)-1(c)27(h)1(\\246)-1(!)]TJ 27.879 -13.549 Td[({)-299(I)-300(n)1(iec)27(ha)-55(j)-299(z)-300(t)1(uzin)-299(Ro)-28(c)27(h)1(\\363)28(w)-300(wywiedzie)-1(!)-299(T)84(\\246)-1(gi)-299(p)1(arob)-27(e)-1(k:)-299(kr)1(z)-1(y)1(c)-1(za\\252,)-299(\\273)-1(e)-300(n)1(ie)-300(t)1(rz)-1(a)]TJ -27.879 -13.55 Td[(go)-333(b)28(y\\252a)-333(s)-1(zc)-1(zypa\\242)-333(przy)-333(c)27(h)1(rzc)-1(ie,)-333(a)-334(s\\363l)-333(wypl)1(u)28(w)27(a\\252,)-333(ja\\273e)-334(\\261m)-1(i)1(e)-1(c)28(h)-333(bra\\252.)1(..)]TJ 27.879 -13.549 Td[({)-365(Bo)-366(i)1(dzie)-366(z)-365(ro)-28(d)1(u,)-365(k)1(t\\363ren)-365(s)-1(i)1(\\246)-366(gorza\\252ki)-365(n)1(ie)-366(wyp)1(rzys)-1(i)1(\\246)-1(ga\\252)-365({)-365(oz)-1(w)28(a\\252)-365(s)-1(i)1(\\246)-366(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ch\\252op)1(ak)-360(p)1(is)-1(zc)-1(za\\252)-360(i)-359(ma)-56(jd)1(a\\252)-360(ku)1(lasam)-1(i)-359(na)-359(pierzyni)1(e)-1(,)-359(Domini)1(k)28(o)27(w)28(a)-360(p)1(rze)-1(tar)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(m)27(u)-318(w)27(\\363)-28(d)1(k)56(\\241)-319(o)-28(c)-1(zy)83(,)-319(u)1(s)-1(t)1(a)-320(i)-319(czo\\252)-1(o)-319(i)-319(d)1(opiero)-319(go)-319(Hance)-320(p)1(rzys)-1(t)1(a)27(wi\\252a)-319(d)1(o)-320(p)1(iers)-1(i)1(.)-319(Pr)1(z)-1(yp)1(i\\241\\252)]TJ 0 -13.55 Td[(si\\246)-334(kiej)-333(sm)-1(ok)-333(i)-333(\\261c)-1(ic)28(hn)1(\\241\\252)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-423(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)28(a\\252)-1(a)-422(s)-1(erd)1(e)-1(cz)-1(n)1(ie)-423(kumom)-423(ca\\252)-1(u)1(j\\241c)-423(si\\246)-423(z)-1(e)-423(ws)-1(zystkimi,)-422(a)-423(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(pr)1(as)-1(za)-56(j)1(\\241c)-1(,)-333(\\273e)-334(c)27(h)1(rzc)-1(in)29(y)-334(n)1(ie)-334(tak)1(ie)-1(,)-333(j)1(ak)-333(b)28(y\\242)-334(p)-27(o)28(w)-1(i)1(nn)28(y)-333(Boryn)1(o)28(w)27(ego)-334(d)1(z)-1(i)1(e)-1(c)28(k)55(a.)]TJ 27.879 -13.549 Td[({)-253(Uro)-28(d)1(z)-1(icie)-254(za)-254(r)1(ok)-254(cz)-1(w)28(artego,)-253(p)-28(op)1(ra)28(wim)-254(sobie)-253(w)-1(tedy)-253(i)-253(o)-28(d)1(bij)1(e)-1(m!)-253({)-254(\\273arto)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)-333(o)-28(ciera)-55(j\\241c)-334(w)28(\\241s)-1(y)84(,)-333(b)-28(o)-333(ju)1(\\273)-334(ki)1(e)-1(li)1(s)-1(ze)-1(k)-333(sz)-1(ed\\252)-333(ku)-333(ni)1(e)-1(m)28(u.)]TJ 27.879 -13.55 Td[({)-297(Ch)1(rz)-1(cin)28(y)-296(b)-27(e)-1(z)-297(o)-55(jca)-297(to)-297(j)1(akb)28(y)-296(grze)-1(c)28(h)-297(b)-27(ez)-297(o)-28(dp)1(usz)-1(cz)-1(eni)1(a{)-297(ozw)27(a\\252)-297(si\\246)-297(ni)1(e)-1(b)1(ac)-1(z-)]TJ -27.879 -13.549 Td[(ni)1(e)-334(Jam)27(b)1(ro\\273y)83(.)]TJ 27.879 -13.549 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-1(a)-296(si\\246)-296(na)-296(to)-296(Han)1(k)56(a,)-296(a\\273)-297(k)28(ob)1(iet)27(y)-295(j\\246\\252y)-296(do)-296(n)1(ie)-1(j)-295(pr)1(z)-1(epij)1(a\\242)-297(n)1(a)-296(p)-27(o)-28(c)-1(i)1(e)-1(sz)-1(e-)]TJ -27.879 -13.549 Td[(ni)1(e)-342(i)-341(w)-341(ramiona)-341(b)1(ra\\242)-1(,)-340(\\273)-1(e)-342(u)1(tul)1(iws)-1(zy)-341(\\273)-1(a\\252o\\261c)-1(i)1(e)-342(zaprasz)-1(a\\252a,)-341(b)29(yc)27(h)-341(si\\246)-341(do)-341(jad)1(\\252a)-342(b)1(rali)1(,)]TJ 0 -13.549 Td[(gdy)1(\\273)-334(ja)-55(jec)-1(znica)-333(na)-333(kie\\252basie)-334(j)1(u\\273)-334(p)1(ac)27(hn)1(\\246)-1(\\252a)-333(z)-334(mic)27(h)29(y)83(.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-441(cz)-1(y)1(ni\\252a)-441(pr)1(z)-1(y)1(j\\246c)-1(ie,)-441(b)-27(o)-442(J)1(\\363z)-1(k)56(a)-441(pr)1(z)-1(y\\261pi)1(e)-1(wyw)28(a\\252a)-442(d)1(z)-1(i)1(e)-1(ci\\241tku)-440(usy-)]TJ -27.879 -13.549 Td[(pi)1(a)-56(j)1(\\241c)-334(je)-334(w)-333(du)1(\\273)-1(ej)-333(ni)1(e)-1(cc)-1(e,)-333(\\273)-1(e)-334(t)1(o)-334(u)-333(starej)-333(k)28(o\\252yski)-333(biegun)1(\\363)28(w)-334(br)1(ak)28(o)28(w)27(a\\252o.)]TJ 27.879 -13.549 Td[(D\\252ugo)-333(skrzyb)-27(ota\\252y)-334(\\252y)1(\\273)-1(ki)1(,)-334(a)-333(n)1(ikto)-333(s)-1(\\252o)28(w)28(a)-334(n)1(ie)-334(wypu)1(\\261)-1(ci\\252.)]TJ 0 -13.549 Td[(\\233e)-348(za\\261)-348(d)1(z)-1(ieci)-347(do)-347(s)-1(i)1(e)-1(n)1(i)-347(s)-1(i)1(\\246)-348(nasz)-1(\\252o)-347(i)-347(coraz)-347(to)-348(g\\252o)28(win)28(y)-347(d)1(o)-347(iz)-1(b)29(y)-347(wt)27(y)1(k)55(a\\252y)84(,)-347(w)27(\\363)-55(jt)]TJ -27.879 -13.549 Td[(rzuci\\252)-482(im)-482(pr)1(z)-1(ygar)1(\\261)-1(\\242)-482(k)56(arme)-1(lk)28(\\363)28(w,)-482(i\\273)-482(z)-482(piskiem)-483(a)-482(b)1(ij)1(at)27(y)1(k)55(\\241)-482(wyt)1(o)-28(c)-1(zy\\252y)-482(si\\246)-482(prze)-1(d)]TJ 0 -13.55 Td[(dom..)1(.)]TJ 27.879 -13.549 Td[({)-333(Na)27(w)28(et)-334(Jam)28(br)1(o\\273)-334(z)-1(ap)-27(omnia\\252)-333(j\\246z)-1(y)1(k)55(a)-333(w)-333(g\\246)-1(b)1(ie)-1(!)-333({)-333(z)-1(acz)-1(\\246\\252a)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-474(Bo)-474(s)-1(e)-474(p)-27(o)-474(c)-1(i)1(c)27(h)28(u)-473(m)-1(i)1(arku)1(je,)-474(\\273)-1(e)-474(c)27(h)1(\\252opak)28(o)28(wi)-474(gosp)-28(o)-28(d)1(ark)28(\\246)-474(trza)-474(s)-1(zyk)28(o)28(w)28(a\\242)-475(i)]TJ -27.879 -13.549 Td[(dzieuc)28(h\\246.)]TJ 27.879 -13.549 Td[({)-333(Gron)28(t)-333({)-333(o)-56(j)1(c)-1(o)28(wy)-333(to)-333(k\\252op)-28(ot,)-333(a)-333(dzieuc)27(h)1(a)-333({)-334(ku)1(m\\363)27(w.)]TJ 0 -13.549 Td[({)-337(Ni)1(e)-338(zbr)1(akni)1(e)-337(te)-1(go)-336(nasie)-1(n)1(ia,)-336(nie!)-337(P)1(rosz)-1(\\241)-336(s)-1(i\\246)-337(z)-337(n)1(im)-337(i)-336(b)28(y)-337(k)1(to)-337(wz)-1(i)1(\\241\\252)-1(,)-336(dop)1(\\252a-)]TJ -27.879 -13.55 Td[(ca)-56(j\\241.)]TJ 27.879 -13.549 Td[({)-339(M)1(usi)-339(b)28(y\\242,)-339(co)-339(w)28(\\363)-56(j)1(to)27(w)28(e)-1(j)-338(c)27(k)1(ni)-338(s)-1(i\\246)-339(do)-338(m)-1(a\\252ego;)-339(wid)1(z)-1(ia\\252am,)-339(j)1(ak)-339(wietrzy\\252a)-339(na)]TJ -27.879 -13.549 Td[(p\\252o)-27(c)-1(ie)-333(przy)28(o)-28(dziew)27(\\246)-333(p)-28(o)-333(s)-1(w)28(oic)28(h)-333(nieb)-27(orak)56(ac)27(h!)]TJ 27.879 -13.549 Td[({)-333(P)28(ono)-333(na)-333(j)1(e)-1(sie)-1(\\253)-333(w)28(\\363)-56(j)1(t)-333(obiec)-1(u)1(j\\241)-333(spra)28(wi\\242)-334(c)28(hrzcin)28(y!)]TJ 0 -13.549 Td[({)-333(Przy)-333(takim)-333(urz\\246dzie)-1(,)-333(a)-333(o)-333(c)-1(zym)-334(p)-27(otrza,)-333(nie)-333(z)-1(ap)-27(om)-1(i)1(na)-55(j\\241!)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(s)-1(m)28(utn)1(o)-334(w)-333(c)27(ha\\252u)1(pie)-333(b)-28(ez)-334(d)1(z)-1(iec)-1(i)1(\\253skic)27(h)-332(w)-1(r)1(z)-1(ask)28(\\363)27(w!)-333({)-333(rze)-1(k\\252)-333(p)-27(o)27(w)28(a\\273nie.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(\\273e)-334(i)-333(utr)1(apie\\253)-333(z)-334(n)1(imi)-333(niem)-1(a\\252o,)-333(ale)-333(i)-334(wyr)1(\\246)-1(k)56(a)-333(jes)-1(t,)-333(i)-333(p)-27(o)-28(cie)-1(c)28(ha..)1(.)]TJ\nET\nendstream\nendobj\n1458 0 obj <<\n/Type /Page\n/Contents 1459 0 R\n/Resources 1457 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1457 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1462 0 obj <<\n/Length 8537      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(456)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Sp)-27(e)-1(cja\\252y!)-333(I)-333(na)-333(z\\252)-1(o)-27(c)-1(ie)-333(s)-1(tr)1(ac)-1(i,)-333(kt)1(o)-334(j)1(e)-334(pr)1(z)-1(ep\\252aci!)-333({)-334(mru)1(kn\\246\\252a)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-430(P)28(e)-1(wn)1(ie)-1(,)-430(\\273e)-431(b)28(yw)28(a)-56(j)1(\\241)-431(i)-430(z)-1(\\252e,)-430(z)-1(a)-430(nic)-431(ma)-56(j)1(\\241c)-1(e)-431(o)-55(jc\\363)28(w)-1(,)-430(kw)28(ard)1(e)-1(,)-430(ale)-431(j)1(ak)56(a)-431(ma\\242)-1(,)]TJ -27.879 -13.549 Td[(tak)56(a)-333(na\\242,)-334(t)1(o)-334(si\\246)-334(zbiera,)-333(co)-334(si\\246)-334(zas)-1(i)1(a\\252o!)-334({)-333(w)28(e)-1(stc)27(h)1(n\\246\\252a)-334(Domin)1(ik)28(o)28(w)27(a.)]TJ 27.879 -13.549 Td[(Roz)-1(sro\\273y\\252a)-333(s)-1(i\\246)-333(Jagust)28(ynk)56(a,)-333(c)-1(zuj)1(\\241c)-1(,)-333(\\273e)-334(to)-333(jej)-333(pr)1(z)-1(y)1(m)-1(a)28(wia.)]TJ 0 -13.549 Td[({)-283(\\212ac)-1(no)-283(w)28(am)-284(prze\\261)-1(miew)27(a\\242)-284(z)-284(d)1(rugi)1(c)27(h,)-283(\\273e)-284(m)-1(acie)-284(taki)1(c)27(h)-283(dob)1(ryc)28(h)-283(c)27(h\\252op)1(ak)28(\\363)27(w,)]TJ -27.879 -13.55 Td[(co)-334(to)-333(i)-333(opr)1(z)-1(\\246d\\241,)-333(i)-333(wydo)-55(j\\241,)-333(i)-333(garn)1(ki)-333(p)-27(om)27(yj)1(\\241)-334(j)1(ak)-333(na)-56(j)1(s)-1(p)1(ra)28(wniejsze)-334(dzieuc)27(h)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(w)-334(p)-27(o)-28(cz)-1(ciw)28(o\\261)-1(ci)-333(c)27(h)1(o)27(w)28(ane)-334(i)-333(w)-333(p)-28(os\\252usz)-1(e\\253st)28(wie)-1(.)]TJ 0 -13.549 Td[({)-402(Pr)1(a)27(wd)1(a,)-402(s)-1(ame)-403(n)1(a)28(w)27(et)-402(p)28(ysk)28(\\363)27(w)-402(n)1(as)-1(ta)28(wia)-56(j)1(\\241)-402(do)-402(bi)1(c)-1(ia!)-401(Wypi)1(s)-1(z,)-402(wym)-1(al)1(uj)-402({)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dob)1(ne)-451(do)-451(sw)27(o)-55(jego)-452(o)-55(jca!)-451(Ju)1(\\261)-1(ci,)-451(j)1(ak)55(a)-451(ma\\242)-1(,)-450(tak)55(a)-451(n)1(a\\242)-1(,)-451(p)1(ra)28(wd\\246\\261)-1(cie)-451(rz)-1(ekli)1(;)-451(a)-451(\\273)-1(e)]TJ 0 -13.549 Td[(pami\\246tam,)-474(co\\261)-1(cie)-475(za)-474(m\\252o)-28(du)-473(z)-474(c)27(h\\252op)1(ak)55(ami)-474(wyp)1(ra)28(wiali,)-473(to)-474(mi)-474(nie)-474(d)1(z)-1(iw)28(ota,)-474(co)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia)-332(do)-332(w)28(a)-1(s)-332(s)-1(i\\246)-332(c)-1(a\\252kiem)-333(u)1(da\\252a,)-332(b)-28(o)-332(taku)1(s)-1(i)1(e)-1(\\253)1(k)55(a)-332(jak)28(o)-332(i)-332(wy:)-332(niec)27(h)28(b)29(y)-333(k)28(o\\252ek,)-332(b)-27(e)-1(le)]TJ 0 -13.55 Td[(w)-241(czapie)-241(n)1(a)-240(bakier,)-240(ze)-1(c)28(hcia\\252...)-240(n)1(ie)-241(o)-28(d)1(m)-1(\\363)28(wi)-240(z)-241(p)-27(o)-28(cz)-1(ciw)27(o\\261c)-1(i)-240({)-240(syc)-1(za\\252a)-240(jej)-240(nad)-240(u)1(c)27(hem,)]TJ 0 -13.549 Td[(a\\273)-334(tam)28(ta)-333(p)-28(ob)1(lad\\252a)-333(c)27(h)28(y)1(l\\241c)-334(g\\252o)28(w)27(\\246)-334(coraz)-333(ni\\273e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-468(w\\252a\\261nie)-467(s)-1(ie\\253)-467(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252a,)-467(za)27(w)28(o\\252a\\252a)-468(j)1(e)-1(j)-466(Hank)56(a,)-467(w)27(\\363)-27(dk)56(\\241)-468(cz\\246)-1(stuj)1(\\241c)-1(:)]TJ -27.879 -13.549 Td[(wypi)1(\\252a)-334(i)-333(n)1(ie)-334(pat)1(rz)-1(\\241c)-333(na)-333(nik)28(ogo,)-333(n)1(a)-334(sw)27(o)-55(j\\241)-333(stron\\246)-333(p)-28(osz)-1(\\252a.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-333(sc)27(h)1(m)27(ur)1(nia\\252,)-333(n)1(a)-334(p)1(r\\363\\273no)-333(o)-28(c)-1(zekuj)1(\\241c)-1(,)-333(\\273e)-334(p)-27(o)27(wr\\363)-27(c)-1(i.)]TJ 0 -13.55 Td[(Roz)-1(mo)28(wy)-424(j)1(ak)28(o\\261)-425(n)1(ie)-424(s)-1(z\\252y)83(,)-423(nas\\252uc)27(h)1(iw)28(a\\252)-424(i)-424(c)27(h)1(o)-28(dzi\\252)-424(o)-27(c)-1(zyma)-424(kry)1(jomo)-424(z)-1(a)-423(ni\\241,)]TJ -27.879 -13.549 Td[(gdy)-333(zno)28(wu)-333(si\\246)-334(uk)56(aza\\252a)-334(i)-333(n)1(a)-334(p)-27(o)-28(d)1(w)27(\\363rze)-334(p)1(rze)-1(sz)-1(\\252a.)]TJ 27.879 -13.549 Td[(I)-382(k)28(obi)1(e)-1(tom)-382(o)-28(d)1(e)-1(c)27(h)1(c)-1(i)1(a\\252o)-382(s)-1(i\\246)-382(p)-27(ogw)27(ary)1(;)-382(s)-1(t)1(are)-383(j)1(e)-1(n)1(o)-382(s)-1(i)1(\\246)-383(\\273ar\\252y)-382(r)1(oz)-1(w\\261)-1(cieklon)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(\\261le)-1(p)1(iami,)-368(za\\261)-368(P\\252osz)-1(k)28(o)28(w)28(a)-368(p)-27(oredza\\252a)-368(z)-368(cic)27(ha)-367(z)-368(Hank)56(\\241.)-367(Je)-1(d)1(e)-1(n)-367(Jam)28(br)1(o\\273)-1(y)-367(nie)-368(p)1(rze)-1(-)]TJ 0 -13.549 Td[(pu)1(s)-1(zcz)-1(a\\252)-347(\\015asz)-1(ce)-348(i)-347(c)27(ho)-27(\\242)-348(ni)1(kto)-348(n)1(ie)-348(s\\252uc)27(h)1(a\\252,)-347(pl\\363t\\252)-347(c)-1(osik)-347(i)-347(wyc)-1(y)1(gania\\252)-347(niest)27(w)28(orzone)]TJ 0 -13.55 Td[(rze)-1(czy)83(.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-474(si\\246)-475(n)1(araz)-474(p)-28(o)-28(d)1(ni)1(\\363s)-1(\\252)-474(i)-474(nib)29(y)-474(z)-1(a)-474(dom)-474(s)-1(i)1(\\246)-475(wyni)1(\\363s)-1(\\252,)-474(a)-474(c)27(h)28(y)1(\\252)-1(k)1(ie)-1(m,)-474(pr)1(z)-1(ez)]TJ -27.879 -13.549 Td[(sad)-339(n)1(a)-339(p)-28(o)-27(dw)28(\\363rze)-340(p)-27(osz)-1(ed\\252.)-339(Jagu)1(s)-1(i)1(a)-339(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-339(n)1(a)-339(p)1(rogu)-339(ob)-27(ory)-338(da)-55(j\\241c)-339(pi)1(\\242)-340(p)-27(o)-339(p)1(alc)-1(u)]TJ 0 -13.549 Td[(srok)56(ate)-1(m)28(u)-333(c)-1(i)1(o\\252k)28(o)27(wi.)]TJ 27.879 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252)-334(si\\246)-334(tr)1(w)27(o\\273nie)-333(i)-333(p)-28(c)28(ha)-56(j)1(\\241c)-334(j)1(e)-1(j)-333(za)-334(gor)1(s)-334(k)56(arme)-1(l)1(ki)-333(s)-1(ze)-1(p)1(n\\241\\252:)]TJ 0 -13.55 Td[({)-305(Na\\261ci,)-305(J)1(agu\\261,)-305(p)1(rzyjd)1(\\271)-305(o)-305(zm)-1(i)1(e)-1(rzc)27(h)29(u)-305(d)1(o)-305(al)1(kie)-1(r)1(z)-1(a,)-304(to)-304(dam)-305(ci)-305(cos)-1(i)1(k)-305(l)1(e)-1(p)1(s)-1(ze)-1(go.)]TJ 0 -13.549 Td[(I)-333(nie)-334(cze)-1(k)56(a)-56(j)1(\\241c)-334(o)-28(d)1(p)-28(o)28(wiedzi,)-333(do)-333(izb)28(y)-333(\\261)-1(p)1(ie)-1(sznie)-334(p)-27(o)28(wraca\\252)-1(.)]TJ 0 -13.549 Td[({)-304(Ho,)-303(ho,)-304(cio\\252ek)-304(w)27(am)-304(si\\246)-304(z)-1(d)1(arzy\\252,)-304(dob)1(rze)-304(go)-304(przedacie)-305({)-303(m)-1(\\363)28(wi\\252)-304(rozpi)1(na)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(k)56(ap)-28(ot)1(.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(c)28(ho)28(w)27(an)1(ie)-334(p)-27(\\363)-56(j)1(dzie,)-334(b)-27(o)-333(to)-333(z)-334(dw)28(orskiego)-334(gatu)1(nk)1(u.)]TJ 0 -13.55 Td[({)-336(P)1(ro\\014)1(t)-336(b)-27(\\246)-1(d)1(z)-1(i)1(e)-336(p)-28(ewn)28(y)83(,)-335(ile)-336(\\273e)-336(m\\252ynar)1(z)-1(o)28(wy)-336(b)28(y)1(k)-336(j)1(u\\273)-336(d)1(o)-336(n)1(ic)-1(ze)-1(go.)-335(Ucie)-1(sz)-1(y)-335(si\\246)]TJ -27.879 -13.549 Td[(An)28(tek)-333(z)-334(taki)1(e)-1(go)-333(przyc)28(ho)28(wku.)]TJ 27.879 -13.549 Td[({)-333(M\\363)-56(j)-332(Je)-1(zu!)-333(ki)1(e)-1(j)-333(on)-333(go)-333(obacz)-1(y)1(?)-334(ki)1(e)-1(j)1(?)]TJ 0 -13.549 Td[({)-333(Nie)-1(zad\\252u)1(go,)-333(ja)-333(to)-333(w)27(ama)-334(p)-27(o)28(wiadam,)-333(to)-333(w)-1(i)1(e)-1(rzcie)-1(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(wsz)-1(ystkic)28(h)-333(z)-334(dn)1(ia)-333(na)-333(dzie\\253)-333(c)-1(ze)-1(k)56(a)-55(j\\241.)]TJ 0 -13.549 Td[({)-333(M\\363)28(wi\\246)-1(,)-333(\\273e)-334(leda)-333(dzie\\253)-333(s)-1(i\\246)-333(z)-1(j)1(a)27(wi\\241,)-333(cos)-1(i)1(k)-333(s)-1(i\\246)-333(ta)-334(p)1(rze)-1(cie)-1(k)-333(z)-333(urz\\246)-1(d)1(u)-333(wie...)]TJ 0 -13.55 Td[({)-333(A)-334(n)1(a)-56(j)1(gorsz)-1(e,)-333(c)-1(o)-333(p)-28(ol)1(a)-334(n)1(ie)-334(c)27(h)1(c)-1(\\241)-333(cz)-1(ek)56(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(s)-1(i\\246)-333(w)-334(p)-27(or\\246)-334(n)1(ie)-334(ob)1(s)-1(ieje,)-333(to)-333(s)-1(tr)1(as)-1(zno)-333(m)27(y\\261le\\242)-334(o)-333(jes)-1(ieni)1(!)]TJ 0 -13.549 Td[(W)84(\\363z)-334(jaki)1(\\261)-334(z)-1(at)1(urk)28(ota\\252.)-333(J\\363zk)56(a)-334(wyj)1(rza)27(wsz)-1(y)-333(za)-334(n)1(im)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a:)]TJ 0 -13.549 Td[({)-333(Prob)-27(osz)-1(cz)-334(z)-334(Ro)-28(c)28(hem)-334(pr)1(z)-1(ejec)27(h)1(ali.)]TJ 0 -13.549 Td[({)-333(Ks)-1(i)1(\\241dz)-334(p)-27(o)-333(w)-1(i)1(no)-333(do)-333(m)-1(szy)-334(si\\246)-334(wyb)1(iera\\252)-333({)-334(ob)-55(j)1(a\\261)-1(n)1(ia\\252)-334(Jam)28(br)1(o\\273)-1(y)84(.)]TJ 0 -13.55 Td[({)-333(\\233e)-334(to)-333(R)-1(o)-27(c)27(ha)-333(wz)-1(i)1(\\241\\252)-334(n)1(a)-334(p)1(roban)29(ta,)-333(nie)-333(Dom)-1(i)1(nik)28(o)28(w)28(\\241!)-334({)-333(dr)1(wi\\252a)-334(stara.)]TJ 0 -13.549 Td[(Nie)-363(zd\\241\\273y\\252a)-363(si\\246)-363(o)-28(d)1(c)-1(i)1(\\241\\242)-363(Dom)-1(i)1(nik)28(o)28(w)28(a,)-363(b)-27(o)-363(k)28(o)28(w)28(al)-363(wsz)-1(ed\\252)-362(i)-363(w)28(\\363)-56(j)1(t)-363(p)-27(o)-28(d)1(ni\\363s\\252)-363(si\\246)]TJ\nET\nendstream\nendobj\n1461 0 obj <<\n/Type /Page\n/Contents 1462 0 R\n/Resources 1460 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1447 0 R\n>> endobj\n1460 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1465 0 obj <<\n/Length 8452      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(457)]TJ -358.232 -35.866 Td[(do)-333(n)1(ie)-1(go)-333(z)-334(ki)1(e)-1(li)1(s)-1(zkiem)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sp)-27(\\363\\271)-1(n)1(i\\252e)-1(\\261)-333(s)-1(i\\246,)-333(Mic)28(ha\\252,)-333(to)-333(go\\253\\273e)-334(nas)-333(te)-1(r)1(az)-1(!)]TJ 0 -13.549 Td[({)-333(Pr\\246dk)28(o)-333(w)28(as)-1(,)-333(ku)1(m)-1(i)1(e)-1(,)-333(zgoni\\246,)-333(b)-28(o)-333(tu)-333(j)1(u\\273)-334(p)-27(o)-333(w)27(as)-334(l)1(e)-1(c\\241...)]TJ 0 -13.549 Td[(Co)-334(j)1(e)-1(n)1(o)-333(dom\\363)27(wi\\252,)-333(wpad)1(\\252)-334(zady)1(s)-1(zan)28(y)-333(s)-1(o\\252t)28(ys.)]TJ 0 -13.549 Td[({)-333(A)-334(c)28(ho)-28(d)1(\\271)-1(\\273e)-1(,)-333(P)1(ie)-1(t)1(rz)-1(e,)-333(pi)1(s)-1(arz)-333(z)-1(e)-334(stra\\273ni)1(k)55(ami)-333(na)-333(w)28(as)-334(c)-1(ze)-1(k)56(a)-55(j\\241.)]TJ 0 -13.55 Td[({)-333(Psiac)27(h)1(m)-1(a\\242,)-333(\\273)-1(e)-334(t)1(o)-334(n)1(i)-333(pacie)-1(r)1(z)-1(a)-333(s)-1(p)-27(ok)28(o)-55(jno\\261ci!)-333(Hale)-334(c\\363\\273)-1(,)-333(ur)1(z)-1(\\241d)-333(p)1(ierws)-1(zy)83(.)1(..)]TJ 0 -13.549 Td[({)-333(Odp)1(ra)28(w)27(cie)-334(i)1(c)27(h)-333(pr)1(\\246)-1(d)1(k)28(o)-334(i)-333(p)-27(o)28(wrac)-1(a)-55(jcie.)]TJ 0 -13.549 Td[({)-353(Ab)-27(o)-354(t)1(o)-354(c)28(h)28(w)28(ac)-1(i)-353(cz)-1(asu;)-353(o)-353(p)-27(o\\273a)-1(r)-352(na)-353(P)28(o)-28(d)1(les)-1(iu)-352(i)-353(o)-353(w)27(asz)-354(p)-27(o)-28(d)1(k)28(op)-353(b)-27(\\246)-1(d)1(\\241)-353(p)-28(ene-)]TJ -27.879 -13.549 Td[(tro)28(w)28(ali..)1(.)]TJ 27.879 -13.549 Td[(Wyb)1(ieg\\252)-334(wraz)-334(z)-333(s)-1(o\\252t)28(yse)-1(m,)-333(a)-333(Hank)56(a)-334(wp)1(ie)-1(r)1(a)-56(j)1(\\241c)-334(o)-28(cz)-1(y)-333(w)-334(k)28(o)28(w)28(ala)-333(rze)-1(k\\252a:)]TJ 0 -13.549 Td[({)-333(Przyj)1(d\\241)-333(opisyw)28(a\\242)-1(,)-333(to)-333(im)-334(r)1(oz)-1(p)-27(o)28(wie)-1(cie)-334(wsz)-1(ystk)28(o,)-333(Mic)28(hale.)]TJ 0 -13.55 Td[(Sk)1(ub)1(a\\252)-334(w)28(\\241s)-1(y)-333(i)-333(wbi\\252)-333(\\261)-1(l)1(e)-1(p)1(ie)-334(w)-333(dzie)-1(ciak)56(a,)-333(nib)29(y)-333(s)-1(i\\246)-334(t)1(o)-334(m)28(u)-333(pr)1(z)-1(yp)1(atru)1(j\\241c.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to)-334(i)1(m)-334(p)-27(o)27(wiem?)-334(t)28(yla,)-333(co)-334(i)-333(J\\363zk)56(a)-334(p)-27(oredzi!)]TJ 0 -13.549 Td[({)-321(Dzieuc)28(h)28(y)-321(p)1(rze)-1(ciek)-321(d)1(o)-321(ur)1(z)-1(\\246dn)1(ik)28(\\363)28(w)-321(ni)1(e)-321(w)-1(y\\261l\\246,)-321(n)1(ie)-321(pr)1(z)-1(y)1(s)-1(toi,)-320(a)-321(p)-27(o)28(wie)-1(cie,)-321(\\273e)]TJ -27.879 -13.549 Td[(ile)-381(wiadomo,)-381(z)-382(k)28(omory)-380(nicz)-1(ego)-381(nie)-381(wynie\\261li,)-381(cz)-1(y)-381(za\\261)-382(co)-381(insz)-1(ego)-381(ni)1(e)-382(zgin\\246\\252o,)-381(to)]TJ 0 -13.549 Td[(ju)1(\\273)-1(.)1(..)-425(Bogu)-425(j)1(e)-1(d)1(nem)27(u)-424(wiadomo...)-424(i...)-424({)-425(s)-1(tr)1(z)-1(epn)1(\\246)-1(\\252a)-425(p)1(ie)-1(r)1(z)-1(yn)1(\\246)-425(p)-28(ok)56(asz)-1(lu)1(j\\241c,)-425(b)28(y)-424(nie)]TJ 0 -13.55 Td[(p)-27(ok)55(aza\\242)-334(m)28(u)-333(t)28(w)27(arzy)-333(s)-1(zyd)1(liw)28(e)-1(j)1(,)-333(ale)-334(on)-333(si\\246)-334(j)1(e)-1(no)-333(cie)-1(p)1(n\\241\\252)-333(i)-333(wys)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[({)-333(\\221wi\\246dlerz)-334(j)1(uc)28(ha!)-333({)-333(prze)-1(\\261mie)-1(c)28(hn)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(lec)-1(iu)1(c)27(h)1(no.)]TJ 0 -13.549 Td[({)-418(\\233e)-419(k)1(r\\363tki)1(e)-419(b)28(y)1(\\252)-1(y)84(,)-418(to)-418(si\\246)-418(jes)-1(zc)-1(ze)-418(urw)28(a\\252y!)-418({)-418(n)1(arze)-1(k)56(a\\252)-418(Jam)27(b)1(ro\\273)-418(p)-28(o)-418(cz)-1(ap)1(k)28(\\246)]TJ -27.879 -13.549 Td[(si\\246)-1(ga)-55(j\\241c.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a,)-333(ur)1(z)-1(n)1(ij)-333(im)-333(kie\\252)-1(b)1(as)-1(y)84(,)-333(ni)1(e)-1(c)27(h)-332(s)-1(e)-334(c)28(hrzcin)28(y)-333(w)-334(d)1(om)27(u)-333(p)1(rzyd\\252u)1(\\273)-1(\\241.)]TJ 0 -13.55 Td[({)-333(G\\246)-1(\\261)-333(to)-334(j)1(e)-1(stem)-1(,)-333(b)28(y)1(m)-334(suc)27(h)1(\\241)-334(k)1(ie)-1(\\252b)1(as)-1(\\246)-334(\\242k)56(a\\252?)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(d)1(le)-1(j)1(c)-1(i)1(e)-334(s)-1(e)-333(gorz)-1(a\\252k)56(\\241,)-333(b)28(y\\261c)-1(i)1(e)-334(ni)1(e)-334(wyrze)-1(k)56(ali.)]TJ 0 -13.549 Td[({)-276(M\\241d)1(re)-276(lud)1(z)-1(i)1(e)-277(p)-27(o)28(wiada)-55(j\\241:)-276(r)1(ac)27(h)28(u)1(j)-276(k)56(asz)-1(\\246,)-276(kiej)-276(j)1(\\241)-276(s)-1(y)1(pies)-1(z)-276(d)1(o)-276(garnk)56(a,)-276(p)1(alic\\363)28(w)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-333(r)1(ob)-28(o)-28(cie)-334(n)1(ie)-334(ogl\\241d)1(a)-56(j)1(,)-333(ale)-334(ki)1(e)-1(li)1(s)-1(zk)28(\\363)27(w)-333(pr)1(z)-1(y)-333(p)-27(o)-28(c)-1(z\\246s)-1(tu)1(nku)-333(n)1(ie)-334(l)1(ic)-1(z...)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)-333(gr)1(z)-1(y)1(s)-1(i)-333(pr)1(z)-1(yd)1(z)-1(w)28(ani)1(a)-56(j)1(\\241,)-334(t)1(am)-334(pi)1(jak)-333(do)-333(ms)-1(zy)-333(s)-1(\\252u\\273y!)]TJ 0 -13.55 Td[(Pr)1(z)-1(egady)1(w)27(ali)1(,)-375(n)1(ie)-375(sz)-1(cz)-1(\\246dz\\241c)-375(gor)1(z)-1(a\\252ki,)-374(ale)-374(nie)-374(w)-1(y)1(s)-1(z\\252y)-375(i)-374(d)1(w)27(a)-374(pacierze)-1(,)-374(kiej)]TJ -27.879 -13.549 Td[(so\\252)-1(t)28(y)1(s)-386(j\\241\\252)-385(oblat)28(yw)28(a\\242)-386(c)28(ha\\252up)29(y)-386(i)-385(w)28(o\\252a\\242)-1(,)-385(b)28(y)-385(si\\246)-386(wsz)-1(ysc)-1(y)-385(sc)27(h)1(o)-28(dzili)-385(d)1(o)-386(w)28(\\363)-56(j)1(ta)-385(prze)-1(d)]TJ 0 -13.549 Td[(pi)1(s)-1(ar)1(z)-1(a)-333(i)-333(s)-1(tr)1(a\\273)-1(n)1(ik)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Ozgniew)28(a\\252)-1(o)-256(to)-256(P\\252osz)-1(k)28(o)28(w)28(\\241,)-256(\\273)-1(e)-256(uj)1(\\241)27(wsz)-1(y)-256(si\\246)-257(p)-27(o)-28(d)-256(b)-27(oki)-256(p)28(y)1(s)-1(k)-256(n)1(a)-257(n)1(iego)-257(wyw)28(ar\\252a:)]TJ 0 -13.549 Td[({)-415(A)-415(mam)-415(gdzie)-1(sik.)1(..)-415(za)-415(pazuc)28(h\\241...)-414(w)27(\\363)-55(jto)28(w)28(e)-416(p)1(rzyk)56(az)-1(y!)-414(Nas)-1(za)-415(to)-415(spra)28(w)28(a?)]TJ -27.879 -13.55 Td[(pr)1(os)-1(i)1(lim)-340(i)1(c)27(h?)-339(c)-1(zas)-340(mam)27(y)-339(l)1(a)-340(stra\\273ni)1(k)28(\\363)27(w,)-339(co?)-340(Nie)-339(psy)-339(jes)-1(te\\261)-1(m)28(y)83(,)-339(co)-339(na)-339(leda)-339(gwiz)-1(d)]TJ 0 -13.549 Td[(do)-371(n)1(ogi)-371(s)-1(i)1(\\246)-372(zlatuj)1(\\241!)-371(P)28(otr)1(z)-1(a)-371(im)-371(cz)-1(ego,)-371(niec)27(h)-370(przyj)1(d\\241)-371(i)-371(p)28(y)1(ta)-56(j)1(\\241!)-371(Je)-1(d)1(na)-371(d)1(roga!)-371(Nie)]TJ 0 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-1(m)28(y!)-264({)-263(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252a)-264(wyb)1(iega)-56(j)1(\\241c)-265(n)1(a)-264(dr)1(og\\246)-264(do)-264(gromad)1(ki)-264(wyl\\246k\\252yc)28(h)-264(k)28(ob)1(iet,)]TJ 0 -13.549 Td[(zbiera)-55(j\\241cyc)27(h)-333(si\\246)-334(n)1(ad)-333(s)-1(ta)28(w)28(e)-1(m.)]TJ 27.879 -13.549 Td[({)-387(Do)-386(rob)-27(ot)28(y)83(,)-386(kum)28(y)83(,)-386(w)-387(p)-28(ol)1(a,)-387(kto)-386(m)-1(a)-386(s)-1(p)1(ra)28(w)27(\\246)-387(d)1(o)-387(gos)-1(p)-27(o)-28(d)1(y\\253,)-386(p)-27(o)27(win)1(ie)-1(n)-386(wie-)]TJ -27.879 -13.549 Td[(dzie\\242)-1(,)-379(k)56(a)-56(j)-379(n)1(as)-380(s)-1(zuk)56(a\\242.)-380(Hal)1(e)-1(,)-379(ni)1(e)-1(d)1(o)-28(c)-1(ze)-1(k)56(an)1(ie)-380(ic)28(h,)-379(b)28(y\\261m)27(y)-379(na)-379(b)-27(e)-1(le)-380(p)1(rzyk)56(az)-380(rzuca\\252y)]TJ 0 -13.55 Td[(ws)-1(zystk)28(o)-240(i)-239(sz\\252)-1(y)-239(wysta)28(w)27(a\\242)-239(p)-28(o)-28(d)-238(drzwiami)-239(kiej)-239(psy)83(,)-239(tr)1(\\241b)28(y)-239(jedn)1(e)-1(!)-239({)-239(krzycz)-1(a\\252a,)-239(sro)-28(d)1(z)-1(e)]TJ 0 -13.549 Td[(zap)-28(erzona.)]TJ 27.879 -13.549 Td[(Gosp)-28(o)-27(dyn)1(i\\241)-373(b)28(y\\252a)-374(p)-27(o)-374(Bory)1(nac)27(h)-373(p)1(ierws)-1(z\\241,)-373(to)-374(p)-27(os)-1(\\252u)1(c)27(ha\\252y)-373(jej)-373(rozlatu)1(j\\241c)-374(si\\246)]TJ -27.879 -13.549 Td[(kiej)-436(sp\\252osz)-1(on)1(e)-437(k)28(ok)28(osz)-1(k)1(i,)-436(\\273e)-437(za\\261)-437(j)1(u\\273)-436(w)-1(i)1(\\246)-1(ksz)-1(o\\261\\242)-436(w)-437(p)-27(olac)27(h)-435(rob)1(i\\252a)-436(o)-28(d)-436(r)1(ana,)-436(p)1(usto)]TJ 0 -13.549 Td[(si\\246)-468(zrob)1(i\\252o)-467(na)-467(ws)-1(i)1(,)-467(dziec)-1(i)-467(j)1(e)-1(n)1(o)-467(k)56(a)-56(j\\261)-467(ni)1(e)-1(k)56(a)-56(j)-466(ba)28(wi\\252y)-467(si\\246)-468(n)1(ad)-467(sta)28(w)27(em)-468(i)-466(s)-1(tar)1(uc)27(h)29(y)]TJ 0 -13.55 Td[(wygrze)-1(w)28(a\\252y)-333(p)-28(o)-27(d)-333(s)-1(\\252o\\253)1(c)-1(e.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-253(\\273e)-254(p)1(isarz)-253(s)-1(i\\246)-253(ze)-1(\\271li\\252)-253(i)-253(sielni)1(e)-254(skl\\241\\252)-253(so\\252t)27(y)1(s)-1(a,)-252(ale)-254(r)1(ad)-253(n)1(ie)-1(r)1(ad)-253(m)28(usia\\252)-253(p)-27(ole)-1(\\271\\242)]TJ\nET\nendstream\nendobj\n1464 0 obj <<\n/Type /Page\n/Contents 1465 0 R\n/Resources 1463 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1463 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1469 0 obj <<\n/Length 9062      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(458)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)-291(p)-28(ol)1(a)-1(.)1(..)-291(D\\252ugo)-291(u)1(ganial)1(i)-291(s)-1(i\\246)-291(p)-28(o)-291(zagonac)28(h)-291(rozp)28(ytu)1(j\\241c)-291(lud)1(z)-1(i,)-291(czy)-291(kto)-291(c)-1(ze)-1(go)-291(n)1(ie)-292(wie)]TJ 0 -13.549 Td[(o)-336(p)-28(o\\273arze)-337(na)-336(P)28(o)-28(d)1(le)-1(siu)1(.)-337(Ry)1(c)27(h)28(t)28(yk)-336(to)-336(s)-1(amo)-337(p)-27(o)28(wie)-1(d)1(ali,)-336(co)-337(i)-336(on)-336(wie)-1(d)1(z)-1(i)1(a\\252,)-337(b)-27(o)-336(kto)-337(b)29(y)]TJ 0 -13.549 Td[(si\\246)-334(to)-333(wyda\\252)-333(z)-334(t)28(ym)-334(p)1(rze)-1(d)-333(stra\\273ni)1(k)55(ami,)-333(co)-334(l)1(a)-334(siebie)-334(tai)1(\\252?)]TJ 27.879 -13.549 Td[(Cz)-1(as)-455(j)1(e)-1(n)1(o)-455(s)-1(t)1(rac)-1(i)1(li)-455(d)1(o)-455(p)-27(o\\252ud)1(nia,)-454(na\\252azili)-454(s)-1(i\\246)-455(p)-27(o)-455(w)28(e)-1(r)1(te)-1(p)1(ac)27(h)-454(i)-455(zab\\252o)-28(cili)-454(p)-28(o)]TJ -27.879 -13.549 Td[(pasy)84(,)-334(gd)1(y\\273)-334(r)1(ole)-334(b)28(y)1(\\252)-1(y)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(m)-1(i)1(e)-1(j)1(s)-1(cam)-1(i)-333(p)1(rze)-1(p)1(adzis)-1(te,)-333(a)-334(n)1(a)-333(darmo.)]TJ 27.879 -13.55 Td[(T)83(ak)-322(b)28(yl)1(i)-323(t)28(y)1(m)-323(rozgniew)27(an)1(i,)-322(\\273e)-323(s)-1(k)28(or)1(o)-323(p)1(rz)-1(y)1(s)-1(zli)-322(do)-322(Boryn)28(y)-322(op)1(is)-1(y)1(w)27(a\\242)-323(\\363)28(w)-323(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(k)28(op,)-419(starszy)-419(kl\\241\\252)-419(na)-419(cz)-1(ym)-419(\\261)-1(wiat)-419(stoi,)-419(a)-419(nat)1(kn\\241)28(ws)-1(zy)-419(s)-1(i)1(\\246)-420(w)-419(ganku)-418(na)-419(B)-1(y)1(lic\\246)-1(,)-419(z)]TJ 0 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(am)-1(i)-333(d)1(o)-334(n)1(ie)-1(go)-333(sk)28(o)-28(c)-1(zy\\252)-333(i)-333(krzyc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-265(T)28(y)83(,)-264(mordo)-264(s)-1(ob)1(ac)-1(za,)-265(cz)-1(em)27(u)-264(to)-265(n)1(ie)-265(pil)1(n)28(uj)1(e)-1(sz)-1(,)-264(\\273)-1(e)-265(ci)-265(si\\246)-265(z)-1(\\252o)-27(dzie)-1(j)1(e)-265(p)-28(o)-28(d)1(k)28(opu)1(j\\241,)]TJ -27.879 -13.549 Td[(co!)-334({)-333(i)-333(ju)1(\\273)-334(o)-28(d)-333(maci)-334(j)1(\\241\\252)-334(m)28(u)-333(wyw)28(o)-28(dzi\\242.)]TJ 27.879 -13.549 Td[({)-342(A)-342(pi)1(ln)28(uj)-341(s)-1(ob)1(ie,)-342(o)-28(d)-342(t)1(e)-1(go\\261)-342(p)-28(ostano)28(wion)28(y)84(,)-342(ja)-342(n)1(ie)-342(t)27(w)28(\\363)-56(j)-341(par)1(ob)-28(ek,)-342(s\\252ys)-1(zysz)-1(!)-342({)]TJ -27.879 -13.55 Td[(o)-28(d)1(c)-1(i\\241\\252)-333(z)-334(miejsc)-1(a)-333(s)-1(tar)1(y)83(,)-333(d)1(o)-334(\\273yw)28(e)-1(go)-333(dotk)1(ni\\246t)28(y)83(.)]TJ 27.879 -13.549 Td[(A\\273)-321(p)1(isarz)-321(r)1(ykn\\241\\252,)-320(b)29(y)-320(p)28(ys)-1(k)-320(stu)1(li\\252,)-320(kiej)-320(z)-321(osob\\241)-320(u)1(rz\\246)-1(d)1(o)27(w)28(\\241)-320(m)-1(\\363)28(wi,)-320(b)-27(o)-321(d)1(o)-320(k)28(oz)-1(y)]TJ -27.879 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-417(za)-416(h)1(ardo\\261\\242)-1(,)-415(ale)-416(s)-1(tar)1(y)-416(s)-1(i)1(\\246)-417(r)1(oz)-1(w\\261c)-1(iekli)1(\\252)-416(na)-416(d)1(o)-1(b)1(re.)-416(P)1(ros)-1(t)1(o)27(w)28(a\\252)-416(s)-1(i)1(\\246)-417(h)1(ard)1(o)-416(i)]TJ 0 -13.549 Td[(gro\\271n)28(y)84(,)-333(m)-1(iot)1(a)-56(j\\241cy)-333(o)-28(cz)-1(yma,)-333(z)-1(ac)28(hr)1(ypia\\252:)]TJ 27.879 -13.549 Td[({)-416(A)-416(t)28(y\\261)-416(co)-416(z)-1(a)-415(os)-1(ob)1(a?)-416(Gromadzie)-416(s)-1(\\252u)1(\\273)-1(ysz)-1(,)-415(gromada)-416(ci)-416(p)1(\\252ac)-1(i,)-415(to)-416(r\\363b)1(,)-416(co)-28(\\242)]TJ -27.879 -13.55 Td[(mas)-1(z)-400(p)1(rze)-1(z)-400(w)28(\\363)-56(j)1(ta)-399(nak)56(az)-1(an)1(e)-1(,)-399(a)-399(w)27(ar)1(a)-400(ci)-400(o)-27(d)-399(gos)-1(p)-27(o)-28(d)1(arz)-1(y)1(!)-399(Widzisz)-400(go,)-399(\\252ac)27(hm)28(ytek)]TJ 0 -13.549 Td[(jeden,)-265(pisarek)-266(j)1(aki\\261!)-266(Od)1(pas\\252)-266(s)-1(i\\246)-266(na)-265(nasz)-1(ym)-266(c)27(h)1(lebie)-266(i)-266(b)-27(\\246)-1(d)1(z)-1(i)1(e)-267(tu)-265(lu)1(d\\271m)-1(i)-265(p)-28(omiata\\252..)1(.)]TJ 0 -13.549 Td[(i)-333(na)-333(cie)-1(b)1(ie)-334(si\\246)-334(zna)-55(jdzie)-334(wi\\246ksz)-1(y)-333(u)1(rz\\241d)-333(i)-333(k)55(ar)1(a...)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-350(z)-352(so\\252t)27(y)1(s)-1(em)-352(r)1(z)-1(u)1(c)-1(i)1(li)-351(si\\246)-352(go)-351(p)1(rzyc)-1(i)1(s)-1(za\\242)-1(,)-351(b)-27(o)-351(sro\\273y\\252)-351(s)-1(i\\246)-351(coraz)-352(b)1(arze)-1(j)-350(i)-351(ju)1(\\273)]TJ -27.879 -13.549 Td[(k)28(ole)-334(siebie)-333(z)-1(a)-333(c)-1(zym\\261)-334(t)28(w)27(ar)1(dym)-333(m)-1(aca\\252)-333(dr\\273\\241c)-1(y)1(m)-1(i)-333(r\\246k)28(oma.)]TJ 27.879 -13.55 Td[({)-320(A)-319(z)-1(ap)1(isz)-320(m)-1(e)-320(d)1(o)-320(\\261traf)1(u,)-319(z)-1(ap)1(\\252)-1(ac\\246)-320(i)-319(jes)-1(zc)-1(ze)-1(c)28(h)-319(c)-1(i)-319(na)-319(gorza\\252)-1(k)28(\\246)-320(d)1(o\\252o\\273)-1(\\246,)-320(j)1(ak)-319(m)-1(i)]TJ -27.879 -13.549 Td[(si\\246)-334(sp)-28(o)-28(d)1(oba!)-333({)-333(w)27(o\\252a\\252.)]TJ 27.879 -13.549 Td[(Nie)-498(zw)-1(r)1(ac)-1(ali)-497(na)-497(niego)-498(u)28(w)28(agi)-498(op)1(isuj\\241c)-498(wsz)-1(ystk)28(o)-498(p)-27(o)-28(d)1(robn)1(o)-498(i)-497(roz)-1(p)29(ytuj)1(\\241c)]TJ -27.879 -13.549 Td[(domo)28(wyc)27(h)-360(o)-361(p)-28(o)-28(d)1(k)28(op,)-360(a)-361(s)-1(tary)-360(m)-1(r)1(ucz)-1(a\\252)-361(cos)-1(ik)-360(do)-361(sie)-1(b)1(ie,)-361(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-362(d)1(om,)-361(z)-1(aziera\\252)]TJ 0 -13.549 Td[(p)-27(o)-334(k)56(\\241tac)28(h,)-333(psa)-333(na)28(w)27(et)-333(k)28(opn\\241\\252,)-333(n)1(ie)-334(mog\\241c)-334(si\\246)-334(usp)-27(ok)28(oi\\242)-1(.)]TJ 27.879 -13.55 Td[(P)28(o)-278(sk)28(o\\253cz)-1(eniu)-277(c)27(hcieli)-278(c)-1(o)-278(p)1(rz)-1(egry)1(\\271)-1(\\242,)-278(ale)-279(Han)1(k)55(a)-278(k)56(az)-1(a\\252a)-278(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(,)-278(\\273e)-279(mlek)55(a)]TJ -27.879 -13.549 Td[(i)-333(c)27(h)1(le)-1(b)1(a)-333(z)-1(b)1(rak\\252o)-333(akur)1(atnie,)-333(s)-1(\\241)-333(jeno)-333(zie)-1(mn)1(iaki)-333(o)-28(d)-333(\\261niad)1(ania.)]TJ 27.879 -13.549 Td[(P)28(on)1(ie)-1(\\261li)-333(si\\246)-334(d)1(o)-334(k)56(arcz)-1(m)28(y)83(,)-333(w)-333(\\273)-1(yw)28(e)-334(k)56(amie)-1(n)1(ie)-334(Li)1(p)-28(ce)-334(wykli)1(na)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-404(Dobrze\\261)-405(z)-1(r)1(obi\\252a,)-404(Han)28(u\\261,)-404(nic)-404(c)-1(i)-404(ni)1(e)-405(z)-1(rob)1(i\\241.)-404(Jez)-1(u)1(,)-405(to)-404(na)28(w)28(e)-1(t)-404(ni)1(e)-1(b)-27(os)-1(zc)-1(zyk)]TJ -27.879 -13.549 Td[(dziedzic,)-334(c)28(ho)-28(\\242)-333(m)-1(ia\\252)-333(pr)1(a)28(w)27(o,)-333(a)-333(tak)-333(m)-1(e)-333(nigd)1(y)-333(nie)-334(sp)-27(oniewie)-1(r)1(a\\252,)-334(n)1(igd)1(y)83(..)1(.)]TJ 27.879 -13.55 Td[(D\\252ugo)-333(n)1(ie)-334(m\\363g\\252)-334(zap)-28(omni)1(e)-1(\\242)-334(ob)1(razy)83(.)]TJ 0 -13.549 Td[(Zaraz)-328(p)-27(o)-327(p)-28(o\\252u)1(dni)1(u)-327(kt\\363ra\\261)-327(w)-1(st\\241)-28(p)1(i\\252a)-328(p)-27(o)28(wie)-1(d)1(a)-56(j)1(\\241c)-328(\\273)-1(e)-328(j)1(e)-1(szc)-1(ze)-328(w)-328(k)56(arcz)-1(mie)-328(sie-)]TJ -27.879 -13.549 Td[(dz\\241)-333(i)-333(s)-1(o\\252t)28(ys)-334(p)-27(olec)-1(ia\\252)-333(spro)28(w)28(adzi\\242)-334(Koz\\252o)28(w)27(\\241.)]TJ 27.879 -13.549 Td[({)-333(Szuk)56(a)-56(j)-333(wiat)1(ru)-333(w)-334(p)-27(olu)1(!)-333({)-334(za\\261)-1(mia\\252a)-333(s)-1(i)1(\\246)-334(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334(p)-27(o)-334(susz)-334(d)1(o)-334(lasu)-333(p)-27(olec)-1(ia\\252a!)]TJ 0 -13.549 Td[({)-422(W)83(e)-423(W)84(arsia)28(wie)-423(s)-1(i)1(e)-1(d)1(z)-1(i)-422(o)-28(d)-422(w)28(c)-1(zora)-55(j,)-422(p)-27(o)-423(d)1(z)-1(i)1(e)-1(ci)-423(p)-27(o)-55(jec)27(ha\\252a)-422(do)-422(s)-1(zpi)1(tala,)-422(m)-1(a)]TJ -27.879 -13.55 Td[(dw)28(o)-56(j)1(e)-334(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\271\\242)-334(na)-333(o)-28(d)1(c)27(ho)28(w)28(anie,)-333(ni)1(b)28(y)-333(z)-334(t)28(yc)27(h)-333(p)-27(o)-28(d)1(rzutk)28(\\363)28(w...)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)-333(j)1(e)-334(g\\252o)-28(dem)-334(zam)-1(or)1(z)-1(y)1(\\242)-1(,)-333(jak)-333(to)-333(b)28(y)1(\\252)-1(o)-333(z)-334(tam)28(t)28(ymi)-334(d)1(w)27(a)-333(rok)1(i)-333(te)-1(m)28(u.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-334(to)-333(i)-334(l)1(e)-1(p)1(ie)-1(j)-332(la)-334(c)28(h)28(ud)1(z)-1(i)1(ak)28(\\363)27(w,)-333(ni)1(e)-334(b)-27(\\246)-1(d)1(\\241)-334(si\\246)-334(ca\\252e)-334(\\273)-1(y)1(c)-1(ie)-333(t)27(y)1(ra\\252y)-333(kiej)-333(psy)83(.)1(..)]TJ 0 -13.549 Td[({)-333(I)-334(b)-27(\\246)-1(k)56(ar)1(t)-334(cz)-1(\\252o)28(wiec)-1(ze)-334(nasienie...)-333(j)1(u\\273)-334(on)1(a)-334(ci\\246\\273)-1(k)28(o)-333(pr)1(z)-1(ed)-333(Bogie)-1(m)-333(o)-28(dp)-27(o)28(wie)-1(.)]TJ 0 -13.549 Td[({)-306(P)1(rze)-1(ciek)-306(z)-306(rozm)27(ys\\252u)-305(nie)-306(g\\252o)-28(d)1(z)-1(i,)-305(sam)-1(a)-306(n)1(iec)-1(z\\246)-1(sto)-306(n)1(a)-56(j)1(e)-307(si\\246)-306(d)1(o)-306(s)-1(y)1(ta,)-306(to)-305(s)-1(k)56(\\241d)]TJ -27.879 -13.55 Td[(i)-333(la)-333(dziec)-1(i)-333(w)28(e)-1(\\271m)-1(ie...)]TJ 27.879 -13.549 Td[({)-279(P\\252ac\\241)-279(na)-279(u)1(trz)-1(y)1(m)-1(an)1(ie,)-279(nie)-279(z)-280(d)1(obr)1(o\\261)-1(ci)-279(je)-279(przytu)1(la!)-279({)-279(rze)-1(k)1(\\252a)-280(Han)1(k)56(a)-279(s)-1(u)1(ro)28(w)27(o.)]TJ\nET\nendstream\nendobj\n1468 0 obj <<\n/Type /Page\n/Contents 1469 0 R\n/Resources 1467 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1467 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1472 0 obj <<\n/Length 9078      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(459)]TJ -330.353 -35.866 Td[({)-333(Pi\\246\\242)-1(d)1(z)-1(i)1(e)-1(si\\241t)-333(z)-1(\\252ot)28(yc)28(h)-333(na)-333(c)-1(a\\252y)-333(rok)-333(o)-27(d)-333(s)-1(ztuki)1(,)-333(niewie)-1(l)1(k)55(a)-333(to)-333(obr)1(ada...)]TJ 0 -13.549 Td[({)-333(Nie)-1(wielk)56(a,)-333(b)-27(o)-334(p)1(rz)-1(epi)1(ja)-333(z)-334(mie)-1(j)1(s)-1(ca,)-333(a)-333(p)-28(otem)-334(d)1(z)-1(iec)-1(i)1(s)-1(k)56(a)-333(z)-334(g\\252o)-28(du)-332(m)-1(r)1(\\241.)]TJ 0 -13.549 Td[({)-348(D)1(y\\242)-348(nie)-348(wsz)-1(y)1(s)-1(tki)1(e)-1(:)-347(a)-348(n)1(ie)-348(wyc)27(h)1(o)28(w)27(a\\252)-347(s)-1(i\\246)-348(to)-347(w)27(asz)-348(Wit)1(e)-1(k,)-347(a)-348(i)-347(ten)-347(dr)1(ugi,)-347(c)-1(o)]TJ -27.879 -13.549 Td[(to)-333(jes)-1(t)-333(w)-333(Mo)-28(dl)1(ic)-1(y)-333(u)-333(gosp)-27(o)-28(dar)1(z)-1(a!)]TJ 27.879 -13.549 Td[({)-404(A)-404(b)-27(o)-404(Wi)1(tk)55(a)-403(o)-28(c)-1(i)1(e)-1(c)-404(wz)-1(i\\246li)-404(t)1(akim)-404(s)-1(k)1(rz)-1(at)1(e)-1(m,)-404(co)-404(jes)-1(zcz)-1(e)-404(k)28(os)-1(zul)1(\\246)-405(w)-404(z\\246)-1(b)1(ac)27(h)]TJ -27.879 -13.55 Td[(nosi\\252,)-333(i)-333(w)-334(c)28(ha\\252up)1(ie)-334(si\\246)-334(o)-28(d)1(gryz\\252.)-333(T)83(ak)-333(s)-1(amo)-333(b)28(y\\252o)-333(i)-334(z)-333(tam)27(t)28(ym.)]TJ 27.879 -13.549 Td[({)-432(Broni)1(\\246)-433(to)-432(K)1(oz)-1(\\252o)28(w)27(ej?..)1(.)-432(p)-28(o)28(wiad)1(am)-433(i)1(no,)-432(j)1(ak)-432(s)-1(i)1(\\246)-433(mi)-432(wid)1(z)-1(i.)-431(Musi)-432(k)28(ob)1(ie)-1(ta)]TJ -27.879 -13.549 Td[(sz)-1(u)1(k)55(a\\242)-333(jakiego)-333(z)-1(arob)1(ku)1(,)-334(b)-27(o)-333(do)-333(garn)1(k)55(a)-333(n)1(ie)-334(ma)-334(co)-334(wsta)28(w)-1(i)1(\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(K)1(oz)-1(\\252a)-333(nie)-333(m)-1(a,)-333(to)-333(ni)1(e)-334(m)-1(a)-333(kto)-333(u)1(kra\\261\\242)-1(.)]TJ 0 -13.549 Td[({)-313(A)-313(z)-314(Jagat\\241)-313(si\\246)-314(j)1(e)-1(j)-313(n)1(ie)-313(uda\\252o:)-313(stara)-313(miasto)-314(u)1(mrz)-1(e\\242)-314(p)-27(ozdro)28(wia\\252a)-313(galan)28(to)-313(i)]TJ -27.879 -13.549 Td[(wyni)1(e)-1(s\\252a)-252(s)-1(i\\246)-252(o)-28(d)-251(ni)1(e)-1(j)1(.)-252(Wy\\273ala)-252(si\\246)-252(te)-1(raz)-252(p)-27(o)-252(ws)-1(i,)-251(\\273)-1(e)-252(Koz\\252o)27(w)28(a)-252(co)-252(dni)1(a)-252(jej)-252(wyma)28(wia\\252a,)]TJ 0 -13.55 Td[(i\\273)-334(ze)-334(\\261m)-1(i)1(e)-1(r)1(c)-1(i\\241)-333(z)-1(w\\252\\363)-28(cz)-1(y)84(,)-333(b)28(y)-333(j\\241)-333(p)-27(os)-1(zk)28(o)-28(d)1(o)27(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)-333(p)-27(e)-1(wn)1(ie)-334(do)-333(K\\252\\246b)-28(\\363)28(w:)-333(gdzie\\273)-334(jej)-333(sz)-1(u)1(k)55(a\\242)-333(s)-1(c)27(h)1(ron)1(ie)-1(n)1(ia?)]TJ 0 -13.549 Td[({)-359(Nie)-359(wr\\363)-27(c)-1(i:)-358(roz\\273)-1(ali)1(\\252a)-359(s)-1(i)1(\\246)-360(n)1(a)-359(kr)1(e)-1(wni)1(ak)28(\\363)27(w.)-358(K\\252\\246)-1(b)-27(o)28(w)27(a)-358(nierada)-358(j\\241)-359(p)1(u\\261c)-1(i)1(\\252a)-359(o)-28(d)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie,)-434(b)-27(o)-28(\\242)-434(to)-434(i)-433(p)-27(o\\261)-1(cie)-1(l)-433(s)-1(t)1(ara)-434(ma,)-434(i)-433(grosz)-434(p)-28(ewnie)-434(sp)-27(ory)83(,)-433(ale)-434(n)1(ie)-434(c)27(hcia\\252a)-434(osta\\242;)]TJ 0 -13.549 Td[(pr)1(z)-1(eni)1(e)-1(s\\252a)-323(skrzyni)1(e)-323(do)-322(s)-1(o\\252t)28(yski)-322(i)-322(up)1(atru)1(je)-323(se)-1(,)-322(u)-322(k)28(ogo)-322(b)28(y)-322(mog\\252a)-323(p)-27(om)-1(r)1(z)-1(e\\242)-323(sp)-28(ok)28(o)-55(j-)]TJ 0 -13.55 Td[(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-291(P)29(o\\273)-1(yj)1(e)-291(jes)-1(zc)-1(ze)-1(,)-290(a)-291(w)-291(k)56(a\\273dej)-290(c)27(ha\\252u)1(pie)-291(teraz)-291(si\\246)-291(przyd)1(a,)-291(c)28(ho)-28(\\242b)28(y)-290(g\\246)-1(si)-291(p)-27(opa\\261\\242)]TJ -27.879 -13.549 Td[(alb)-27(o)-333(z)-1(a)-333(kro)28(w)28(am)-1(i)-333(wyj)1(rz)-1(e\\242.)-334(K)1(a)-56(j)-333(si\\246)-334(to)-333(zno)28(w)-1(u)-332(Jagna)-333(z)-1(ad)1(z)-1(i)1(a\\252)-1(a?)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(u)-333(or)1(ganist\\363)28(w)-334(p)1(anience)-334(fr)1(yzki)-333(w)-1(y)1(s)-1(zyw)27(a.)]TJ 0 -13.549 Td[({)-333(P)28(ora)-333(na)-333(zaba)28(w)27(\\246,)-333(jakb)29(y)-334(w)-333(c)27(h)1(a\\252upi)1(e)-334(br)1(ak)28(o)27(w)28(a\\252o)-333(rob)-28(ot)28(y)1(!)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(o)-28(d)-332(s)-1(am)28(yc)27(h)-333(\\261w)-1(i)1(\\241t)-334(p)1(rze)-1(siad)1(uje)-333(tam)-334(ci\\246)-1(gi)1(e)-1(m)-334({)-333(sk)55(ar)1(\\273)-1(y)1(\\252)-1(a)-333(J\\363zk)56(a.)]TJ 0 -13.549 Td[({)-333(Zrobi)1(\\246)-334(z)-334(ni)1(\\241)-334(p)-27(orz\\241dek,)-333(\\273)-1(e)-333(m)-1(n)1(ie)-334(p)-27(opami\\246ta...)-333(P)28(ok)56(a\\273c)-1(ie)-333(m)-1(i)-333(d)1(z)-1(iec)27(k)28(o.)]TJ 0 -13.549 Td[(Wzi\\246\\252)-1(a)-318(j)1(e)-319(do)-318(sie)-1(b)1(ie)-319(i)-318(sk)28(oro)-318(p)-27(os)-1(p)1(rz\\241ta\\252y)-318(p)-28(o)-318(obi)1(e)-1(d)1(z)-1(ie,)-318(roze)-1(gn)1(a\\252a)-319(wsz)-1(y)1(s)-1(tki)1(c)27(h)]TJ -27.879 -13.549 Td[(do)-261(rob)-27(ot)28(y)84(.)-261(Sama)-262(j)1(e)-1(n)1(o)-262(w)-261(izbie)-261(os)-1(ta\\252a)-261(nas\\252uc)28(h)28(uj)1(\\241c)-262(ni)1(e)-1(ki)1(e)-1(d)1(y)-261(z)-1(a)-261(dzie\\242)-1(mi,)-261(ba)28(wi\\241cymi)]TJ 0 -13.549 Td[(si\\246)-281(pr)1(z)-1(ed)-280(dome)-1(m)-281(p)-27(o)-28(d)-280(ok)1(ie)-1(m)-281(Byl)1(ic)-1(y)84(,)-280(a)-281(p)-27(o)-281(d)1(ru)1(gie)-1(j)-280(stron)1(ie)-281(Boryn)1(a)-281(le\\273)-1(a\\252)-280(jak)-280(za)27(wd)1(y)]TJ 0 -13.55 Td[(sam)-1(otn)1(ie,)-309(patr)1(z)-1(a\\252)-309(w)-309(s\\252o\\253ce)-1(,)-309(co)-309(si\\246)-310(p)1(rze)-1(z)-309(okn)1(o)-309(k\\252ad\\252o)-309(n)1(a)-309(izb)-28(\\246)-309(s)-1(m)28(ug\\241)-309(r)1(oz)-1(d)1(rgan)1(\\241)-309(i)]TJ 0 -13.549 Td[(gme)-1(r)1(a\\252)-303(w)-302(n)1(iej)-302(p)1(alc)-1(ami,)-302(a)-301(c)-1(osik)-302(d)1(o)-302(s)-1(iebi)1(e)-303(gw)28(arzy\\252)-302(z)-302(c)-1(ic)28(ha,)-302(j)1(ak)-302(to)-302(d)1(z)-1(i)1(e)-1(ci\\241tk)28(o)-302(sobie)]TJ 0 -13.549 Td[(osta)27(wion)1(e)-1(.)]TJ 27.879 -13.549 Td[(Na)-382(w)-1(si)-382(te\\273)-383(pu)1(s)-1(tk)56(\\241)-382(wia\\252o,)-382(b)-28(o)-382(cz)-1(as)-382(s)-1(i\\246)-382(z)-1(rob)1(i\\252)-382(wybr)1(an)28(y)-382(i)-382(kto)-382(jeno)-382(m\\363)-1(g\\252)-382(si\\246)]TJ -27.879 -13.549 Td[(ru)1(c)27(h)1(a\\242)-1(,)-333(wyc)27(h)1(o)-28(dzi\\252)-333(w)-334(p)-27(ola,)-333(do)-333(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.55 Td[(Od)-290(sam)27(yc)28(h)-290(\\261)-1(wi\\241t)-290(p)-28(ogo)-27(da)-291(si\\246)-291(j)1(u\\273)-291(u)1(s)-1(tal)1(i\\252a,)-291(\\273e)-291(c)-1(o)-290(dzie\\253)-290(b)28(y\\252o)-291(cieplej)-290(i)-290(ja\\261niej.)]TJ 0 -13.549 Td[(Dn)1(i)-463(ju\\273)-463(s)-1(z\\252y)-463(d\\252ugac)28(hn)1(e)-1(,)-463(r)1(ank)56(am)-1(i)-463(omglon)1(e)-1(,)-463(sz)-1(ar)1(a)27(w)28(e)-464(i)-463(cic)27(h)1(o)-463(nagrzane)-463(w)]TJ -27.879 -13.549 Td[(p)-27(o\\252udn)1(ia,)-333(a)-333(z)-1(orzami)-333(o)-334(zac)27(h)1(o)-28(dzie)-334(r)1(oz)-1(p)1(alone,)-333(pra)28(w)28(e)-1(j)-333(zwie)-1(sn)28(y)-333(d)1(ni.)]TJ 27.879 -13.549 Td[(P)28(on)1(ie)-1(k)1(t\\363re)-399(wlek\\252y)-398(s)-1(i)1(\\246)-399(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o,)-398(kiej)-398(te)-399(stru)1(m)-1(i)1(e)-1(n)1(ia)-398(w)-399(s)-1(\\252o\\253)1(c)-1(u)-398(r)1(oz)-1(i)1(s)-1(kr)1(z)-1(on)1(e)-1(,)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252o)-28(dn)1(a)28(w)27(e)-406(j)1(ak)-406(on)1(e)-406(i)-405(jak)-405(one)-406(p)1(rze)-1(j)1(rz)-1(y)1(s)-1(te)-406(i)-405(zdzie)-1(b)1(k)28(o)-406(p)1(lu)1(s)-1(zc)-1(z\\241c)-1(e)-406(o)-405(br)1(z)-1(egi,)-405(pu)1(s)-1(te)]TJ 0 -13.549 Td[(i)-406(sin)1(a)27(w)28(e,)-406(a)-406(j)1(e)-1(n)1(o)-406(k)56(a)-56(j)1(\\261)-406(niek)56(a)-56(j)-405(\\273)-1(\\363\\252te)-406(o)-28(d)-405(mlec)-1(z\\363)27(w,)-405(to)-406(stokr\\363tk)56(ami)-406(r)1(oz)-1(b)1(ie)-1(l)1(one)-406(alb)-27(o)]TJ 0 -13.55 Td[(rozz)-1(i)1(e)-1(leni)1(a\\252)-1(e)-333(w)-1(i)1(e)-1(r)1(z)-1(b)-27(o)28(w)-1(y)1(m)-1(i)-333(p)-27(\\246)-1(d)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252y)-371(i)-372(ciep\\252e)-372(ca\\252kiem)-1(,)-371(n)1(agrzane,)-371(w)-1(i)1(lgotna)28(w)28(e)-1(,)-371(p)1(rze)-1(siane)-371(s)-1(\\252o\\253cem)-1(,)]TJ -27.879 -13.549 Td[(pac)28(hn)1(\\241c)-1(e)-412(\\261w)-1(i)1(e)-1(\\273yzn\\241)-412(i)-411(tak)-411(pr)1(z)-1(ej\\246te)-412(roste)-1(m,)-411(tak)-412(zwies)-1(n\\241)-411(nab)1(rzm)-1(i)1(a\\252)-1(e,)-411(tak)-412(mo)-28(c\\241)]TJ 0 -13.549 Td[(opi)1(te)-1(,)-275(\\273e)-276(z)-276(wiec)-1(zora,)-275(kiej)-275(p)1(tas)-1(ie)-275(g\\252os)-1(y)-275(pr)1(z)-1(y)1(c)-1(ic)28(h\\252y)-275(i)-275(wie)-1(\\261)-275(le)-1(g\\252a,)-275(to)-275(z)-1(d)1(a)28(w)27(a\\252o)-275(s)-1(i\\246)-275(c)-1(zu\\242)]TJ 0 -13.549 Td[(w)-277(ziem)-1(i)-276(p)1(arcie)-277(k)28(orzeni)-276(i)-276(wynosz)-1(eni)1(e)-277(s)-1(i)1(\\246)-277(\\271)-1(d)1(z)-1(i)1(e)-1(b)-27(e)-1(\\252)-276(i)-276(jak)1(b)28(y)-276(s)-1(\\252ysz)-1(a\\252)-276(cic)27(h)28(u)1(\\261)-1(k)1(ie)-277(sz)-1(me)-1(r)1(y)]TJ 0 -13.55 Td[(ot)28(wie)-1(r)1(a)-56(j)1(\\241c)-1(yc)28(h)-299(s)-1(i)1(\\246)-300(p\\241k)28(o)28(wi,)-299(p)-28(\\246d)-299(rost\\363)28(w)-300(i)-299(g\\252os)-1(y)-299(st)28(w)27(orze\\253,)-299(wyda)-55(j\\241cyc)27(h)-299(si\\246)-300(n)1(a)-300(\\261w)-1(i)1(at)]TJ 0 -13.549 Td[(Bo\\273)-1(y)84(...)]TJ\nET\nendstream\nendobj\n1471 0 obj <<\n/Type /Page\n/Contents 1472 0 R\n/Resources 1470 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1470 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1475 0 obj <<\n/Length 9998      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(460)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Sz\\252y)-333(z)-1(a\\261)-333(i)-334(d)1(ru)1(gie)-1(,)-333(d)1(o)-334(t)1(a)-1(m)28(t)28(yc)27(h)-333(zgo\\252a)-333(niep)-28(o)-27(dob)1(ne.)]TJ 0 -13.549 Td[(Be)-1(z)-325(s)-1(\\252o\\253ca,)-325(pr)1(z)-1(em)-1(gl)1(one,)-325(s)-1(zaromo)-28(dr)1(a)27(w)28(e)-1(,)-325(n)1(iskie,)-325(c)27(hm)28(urzysk)56(am)-1(i)-325(b)1(rz)-1(u)1(c)27(h)1(at)28(y-)]TJ -27.879 -13.549 Td[(mi)-390(przyw)28(alone)-390(a)-391(p)1(arne,)-390(c)-1(i)1(\\246)-1(\\273kie)-391(i)-390(b)1(ij\\241ce)-391(d)1(o)-391(g\\252o)28(wy)-390(kiej)-390(gorza\\252k)55(a,)-390(i)1(\\273)-391(lud)1(z)-1(i)1(e)-391(c)-1(zul)1(i)]TJ 0 -13.549 Td[(si\\246)-298(jakb)29(y)-298(p)1(ijan)1(i;)-298(d)1(rze)-1(win)29(y)-298(ku)1(rcz)-1(y\\252y)-297(s)-1(i)1(\\246)-298(w)-298(dygo)-27(c)-1(ie,)-297(a)-298(ws)-1(ze)-1(l)1(kie)-298(s)-1(t)28(w)28(orze)-1(n)1(ie,)-298(rozpi)1(e)-1(-)]TJ 0 -13.549 Td[(ran)1(e)-328(jak)56(\\241\\261)-328(lub)-27(o\\261c)-1(i\\241,)-327(dar)1(\\252)-1(o)-327(s)-1(i\\246)-328(gd)1(z)-1(i)1(e)-1(sik)-328(i)-327(p)-27(o{)-328(nosi\\252o)-328(n)1(ie)-328(w)-1(i)1(ada)-328(k)56(a)-55(j)-328(i)-327(p)-28(o)-327(c)-1(o,)-327(\\273)-1(e)-328(in)1(o)]TJ 0 -13.55 Td[(kr)1(z)-1(ycz)-1(e\\242)-365(s)-1(i)1(\\246)-366(c)28(hcia\\252o,)-365(p)1(rz)-1(ec)-1(i)1(\\241)-28(ga\\242)-365(alb)-27(o)-365(tul)1(a)-1(\\242)-365(c)28(ho)-28(\\242b)28(y)-365(i)-364(p)-28(o)-364(t)28(yc)27(h)-364(tra)28(w)27(ac)28(h)-365(mokr)1(yc)27(h)1(,)]TJ 0 -13.549 Td[(jak)28(o)-333(te)-334(p)1(s)-1(y)-333(og\\252u)1(pia\\252e)-334(cz)-1(y)1(ni\\252y)84(.)]TJ 27.879 -13.549 Td[(T)83(o)-424(przyc)27(h)1(o)-28(d)1(z)-1(i\\252y)-424(ju)1(\\273)-425(o)-28(d)-424(sam)-1(ego)-425(\\261witania)-424(za)-1(d)1(e)-1(szc)-1(zone,)-425(j)1(akb)28(y)-424(z)-1(gr)1(z)-1(ebn)29(ym)]TJ -27.879 -13.549 Td[(pr)1(z)-1(\\246dziw)28(e)-1(m)-232(obmotane,)-232(\\273e)-233(\\261w)-1(i)1(ata)-232(nie)-232(do)-55(jrza\\252)-232(ni)-232(d)1(r\\363g,)-232(n)1(i)-232(c)27(h)1(at)-232(s)-1(ku)1(lon)28(yc)28(h)-232(p)-27(o)-28(d)-232(p)1(rze)-1(-)]TJ 0 -13.549 Td[(mok\\252ymi)-391(sadami.)-390(Des)-1(zc)-1(z)-391(p)1(ada\\252)-390(w)27(oln)1(o,)-391(ci\\241)-28(gl)1(e)-1(,)-390(b)-27(e)-1(zustann)1(ie)-1(,)-390(r)1(\\363)27(wn)1(iu\\261kie,)-391(d)1(r\\273\\241c)-1(e)]TJ 0 -13.549 Td[(ni)1(c)-1(i)-288(sz)-1(ar)1(e)-289(jakb)29(y)-288(s)-1(i\\246)-288(o)-28(dwij)1(a\\252y)-288(z)-289(jaki)1(e)-1(go\\261)-289(wr)1(z)-1(ec)-1(ion)1(a)-288(niedo)-55(jrzanego,)-288(wi\\241\\273)-1(\\241c)-288(nieb)-27(o)-289(z)]TJ 0 -13.55 Td[(zie)-1(mi\\241,)-345(\\273e)-346(ino)-345(pr)1(z)-1(ygi)1(\\246)-1(\\252o)-345(s)-1(i\\246)-346(wsz)-1(y)1(s)-1(tk)28(o)-345(c)-1(ierp)1(liwie)-346(i)-345(mok\\252o,)-345(nas\\252)-1(u)1(c)27(h)28(u)1(j\\241c)-346(r)1(z)-1(\\246s)-1(i)1(s)-1(tego)]TJ 0 -13.549 Td[(trzep)-28(otu)-307(i)-308(b)1(ul)1(g)-1(ot)1(\\363)27(w)-308(stru)1(g,)-308(co)-308(si\\246)-308(z)-309(b)1(ia\\252ymi)-308(k\\252ak)56(ami)-308(stac)-1(za\\252y)-308(z)-308(p)-27(\\363l)-308(cz)-1(arn)1(ia)28(wyc)27(h)1(.)]TJ 27.879 -13.549 Td[(Zwyc)-1(za)-56(j)1(ni)1(e)-375(to)-375(b)29(y\\252o,)-374(jak)-374(k)56(a\\273)-1(d)1(e)-1(go)-374(roku)-374(n)1(a)-375(p)1(ie)-1(r)1(ws)-1(z\\241)-375(zwie)-1(sn\\246,)-374(nik)1(to)-375(si\\246)-375(te\\273)]TJ -27.879 -13.549 Td[(nad)-245(n)1(imi)-246(n)1(ie)-246(z)-1(astana)28(wia\\252,)-245(nie)-246(p)-27(ora)-245(b)28(y\\252a)-246(n)1(a)-246(d)1(e)-1(li)1(b)-28(ero)28(w)27(an)1(ie,)-246(\\261wit)-246(b)-27(o)28(wie)-1(m)-246(wygan)1(ia\\252)]TJ 0 -13.549 Td[(nar)1(\\363)-28(d)-365(do)-365(rob)-27(ot)28(y)83(,)-365(a)-365(p)-28(\\363\\271n)28(y)-365(mrok)-365(dop)1(ie)-1(r)1(o)-366(sp)-27(\\246)-1(d)1(z)-1(a\\252,)-365(\\273)-1(e)-366(l)1(e)-1(d)1(w)-1(i)1(e)-366(c)-1(zas)-1(u)-365(starczy\\252o,)-366(b)29(y)]TJ 0 -13.55 Td[(p)-27(o)-56(j)1(e)-1(\\261\\242)-334(i)-333(nieco)-334(wytc)28(hn\\241\\242.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-301(te)-1(\\273)-301(prze)-1(z)-301(to)-301(c)-1(a\\252e)-302(d)1(ni)-301(sto)-56(j)1(a\\252)-1(y)-301(p)1(ustk)56(\\241,)-301(p)-28(o)-28(d)-300(s)-1(tr)1(a\\273)-1(\\241)-301(t)28(ylk)28(o)-301(s)-1(tar)1(uc)28(h,)-301(ps\\363)28(w)]TJ -27.879 -13.549 Td[(i)-287(t)28(y)1(c)27(h)-286(s)-1(ad)1(\\363)27(w)-287(coraz)-287(g\\246\\261)-1(cie)-1(j)-286(pr)1(z)-1(y)1(s)-1(\\252ani)1(a)-56(j)1(\\241c)-1(yc)28(h)-287(c)28(ha\\252up)29(y;)-287(cz)-1(ase)-1(m)-287(si\\246)-287(jeno)-286(dziad)-287(j)1(aki\\261)]TJ 0 -13.549 Td[(pr)1(z)-1(ewl\\363k\\252,)-462(o)-28(dp)1(ro)28(w)28(adzan)28(y)-462(psim)-1(i)-462(j)1(az)-1(gotami,)-462(alb)-27(o)-463(w)28(\\363z)-463(d)1(o)-463(m\\252yna)-462(i)-462(z)-1(n)1(o)28(w)-1(u)-462(d)1(ro-)]TJ 0 -13.549 Td[(gi)-461(le)-1(\\273a\\252y)-462(p)1(uste,)-462(a)-462(on)1(iem)-1(i)1(a\\252)-1(e)-462(c)28(ha\\252up)29(y)-462(p)1(rze)-1(zie)-1(r)1(a\\252y)-462(wskro\\261)-462(sad\\363)28(w)-462(pr)1(z)-1(epal)1(on)28(ymi)]TJ 0 -13.55 Td[(sz)-1(yb)1(k)56(am)-1(i)-345(na)-345(p)-28(ol)1(a)-346(sz)-1(eroki)1(e)-1(,)-345(na)-345(p)-28(ol)1(a)-346(n)1(ie)-1(ob)-55(j)1(\\246)-1(te,)-345(c)-1(o)-345(jakb)28(y)-345(morze)-1(m)-346(ziem)-346(wie)-1(\\261)-346(ca\\252\\241)]TJ 0 -13.549 Td[(okr)1(\\241\\273)-1(a\\252y)84(,)-423(n)1(a)-423(p)-27(ola,)-422(co)-423(n)1(ib)28(y)-422(matk)56(a)-423(r)1(o)-28(dzona)-422(tul)1(i\\252a)-423(n)1(a)-423(p)-27(o)-28(d)1(o\\252ku)-422(dziec)-1(in)29(y)-423(sw)28(o)-56(je)-422(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(p)1(ie)-1(r)1(s)-1(i)-333(w)28(e)-1(zbr)1(anej)-333(trzyma\\252)-1(a)-333(w)-333(\\273)-1(ywi\\241cym)-334(ob)-55(j)1(\\246)-1(ciu.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-343(co)-343(dn)1(ie)-344(t)1(o)-343(s)-1(z\\252y)-343(rob)-27(otne,)-343(ciep\\252e)-1(,)-342(des)-1(zc)-1(zami)-343(pr)1(z)-1(ekrap)1(iane,)-343(raz)-343(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(\\261nieg)-282(p)1(ierzas)-1(t)28(y)-281(j\\241\\252)-281(w)28(ali\\242,)-282(\\273e)-282(p)1(rzys)-1(i)1(w)-1(i)1(\\252)-282(p)-27(ola,)-281(jeno)-281(co)-282(n)1(a)-281(kr\\363tk)28(o,)-281(b)-27(o)-281(go)-282(wnet)-281(s)-1(\\252o\\253)1(c)-1(e)]TJ 0 -13.55 Td[(do)-360(c)-1(n)1(a)-361(z)-1(e\\273)-1(ar)1(\\252o)-361({)-361(to)-361(i)-361(n)1(ie)-361(dziw)28(ota,)-361(\\273e)-362(n)1(a)-361(ws)-1(i)-360(przycic)27(h)1(a\\252)-1(y)-360(s)-1(w)28(ary)84(,)-361(k\\252\\363tn)1(ie)-361(a)-361(s)-1(p)1(ra-)]TJ 0 -13.549 Td[(wy)-412(ws)-1(ze)-1(l)1(kie,)-412(b)-27(o)-412(rob)-27(ota)-412(z)-1(ap)1(rz\\246)-1(ga\\252a)-412(w)-412(t)28(w)27(ar)1(de)-412(jarzma)-412(i)-412(do)-412(ziem)-1(i)-411(ws)-1(zys)-1(tk)1(ie)-412(\\252)-1(b)29(y)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gi\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[(\\233e)-337(j)1(u\\273)-336(c)-1(o)-336(r)1(ano,)-336(j)1(e)-1(n)1(o)-336(\\261)-1(wit)-336(r)1(os)-1(ist)28(y)-336(ot)28(w)27(ar)1(\\252)-336(s)-1(iw)28(e)-336(\\261)-1(lepie;)-336(a)-336(p)1(ie)-1(r)1(ws)-1(ze)-337(sk)28(o)27(wr)1(onki)]TJ -27.879 -13.549 Td[(za\\261)-1(p)1(ie)-1(w)28(a\\252y)83(,)-456(wie\\261)-457(zryw)28(a\\252a)-457(si\\246)-457(n)1(a)-457(r)1(\\363)28(w)-1(n)1(e)-457(nogi)1(,)-456(re)-1(j)1(w)27(ac)28(h)-456(si\\246)-457(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(,)-456(tr)1(z)-1(ask)56(anie)]TJ 0 -13.55 Td[(wr\\363tn)1(i,)-362(p\\252acz)-1(e)-363(d)1(z)-1(ieci,)-362(krzyki)-362(g\\246s)-1(i)-362(wyp)-27(\\246)-1(d)1(z)-1(an)28(y)1(c)27(h)-362(nad)-362(r)1(o)27(wy)-362(i)-362(wnet)-363(wyp)1(ro)28(w)27(ad)1(z)-1(al)1(i)]TJ 0 -13.549 Td[(k)28(oni)1(e)-1(,)-397(c)27(h)1(\\252opaki)-397(p)1(\\252ugi)-397(wio)-28(d\\252y)84(,)-397(z)-1(iemniak)1(i)-398(wyn)1(os)-1(i)1(li)-397(na)-397(w)27(ozy)-397(i)-398(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i)1(li)-397(s)-1(i\\246)-397(tak)]TJ 0 -13.549 Td[(pr)1(\\246)-1(d)1(k)28(o)-357(w)-357(p)-27(ola,)-357(\\273e)-357(w)-357(pacierz)-357(ab)-27(o)-357(dw)28(a)-357(cic)27(h)1(o)-357(ju)1(\\273)-357(b)28(y\\252o)-357(n)1(a)-357(ws)-1(i)-356(a)-357(p)1(usto.)-357(Na)28(w)27(et)-357(n)1(a)]TJ 0 -13.549 Td[(ms)-1(z\\246)-359(p)1(ra)28(w)-1(i)1(e)-359(ni)1(kto)-358(nie)-358(w)-1(st\\246p)-28(o)28(w)28(a\\252)-1(,)-358(\\273e)-359(cz)-1(\\246sto)-359(gr)1(anie)-358(organ\\363)28(w)-358(h)28(ucz)-1(a\\252o)-358(w)-358(pu)1(s)-1(t)28(ym)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(iele,)-351(roz)-1(l)1(e)-1(w)28(a)-56(j)1(\\241c)-352(s)-1(i)1(\\246)-352(na)-351(p)-27(ola)-351(c)-1(o)-351(bl)1(i\\273)-1(sz)-1(e,)-351(a)-351(dopi)1(e)-1(r)1(o)-352(n)1(a)-352(g\\252os)-352(sygn)1(atur)1(ki)-351(kl\\246k)55(al)1(i)]TJ 0 -13.549 Td[(p)-27(o)-334(r)1(olac)27(h)-333(d)1(o)-334(r)1(ann)28(y)1(c)27(h)-333(pacierzy)83(.)]TJ 27.879 -13.55 Td[(Wyc)28(ho)-28(d)1(z)-1(i)1(li)-357(ws)-1(zysc)-1(y)-357(do)-357(r)1(ob)-28(ot)28(y)84(,)-357(a)-358(p)1(ra)28(wie)-358(tego)-357(z)-1(n)1(a\\242)-358(ni)1(e)-358(b)28(y\\252o)-357(na)-357(ziem)-1(iac)28(h;)]TJ -27.879 -13.549 Td[(dop)1(iero)-464(p)1(rzyjrza)28(ws)-1(zy)-464(si\\246)-464(bacz)-1(n)1(ie)-1(j)1(,)-464(to)-463(tam)-464(k)55(a)-55(j\\261)-464(ni)1(e)-1(k)56(a)-56(j)-463(d)1(o)-1(p)1(atrzy\\252)-464(p)1(\\252ugi,)-463(k)28(onie)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gi\\246)-1(te)-266(w)-266(pr)1(ac)-1(y)84(,)-266(gdzie)-266(w)27(\\363z)-266(na)-266(miedzy)-266(i)-266(k)28(ob)1(iet)27(y)84(,)-266(co)-266(jak)-265(lisz)-1(ki)-265(c)-1(ze)-1(r)1(w)27(on)1(e)-267(gme)-1(r)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-334(w\\261)-1(r)1(\\363)-28(d)-333(p)-27(\\363l)-333(ogrom)-1(n)29(yc)27(h)1(,)-333(p)-28(o)-28(d)-332(nieb)-28(em)-334(j)1(as)-1(n)29(ym)-334(i)-333(wys)-1(ok)1(im.)]TJ 27.879 -13.549 Td[(A)-296(w)27(ok)28(\\363\\252)-296(o)-28(d)-296(Ru)1(dki)1(,)-296(o)-28(d)-296(W)84(oli,)-296(o)-28(d)-295(Mo)-28(d)1(licy)83(,)-296(o)-28(d)-295(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-296(wsi,)-296(widn)28(y)1(c)27(h)-296(cz)-1(u)1(-)]TJ -27.879 -13.55 Td[(bami)-260(sad\\363)28(w)-260(i)-260(b)1(ia\\252ymi)-260(\\261c)-1(ian)1(ami)-260(w)-260(niebi)1(e)-1(sk)55(a)28(wym)-260(p)-27(o)27(wietrzu,)-259(roztrz\\246)-1(sa\\252y)-260(s)-1(i)1(\\246)-261(gw)28(ar-)]TJ 0 -13.549 Td[(liw)28(e,)-359(p)-28(e\\252ne)-359(kr)1(z)-1(yk)56(a\\253)-358(i)-359(\\261)-1(p)1(iew)27(\\363)28(w)-359(o)-28(dg\\252osy)-359(rob)-27(\\363t.)-359(K)1(a)-56(j)-358(jeno)-359(oki)1(e)-1(m)-359(s)-1(i)1(\\246)-1(gn)1(\\241\\252)-360(za)-359(k)28(op)-27(c)-1(e)]TJ\nET\nendstream\nendobj\n1474 0 obj <<\n/Type /Page\n/Contents 1475 0 R\n/Resources 1473 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1473 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1478 0 obj <<\n/Length 9953      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(461)]TJ -358.232 -35.866 Td[(gran)1(icz)-1(n)1(e)-1(,)-327(ws)-1(z\\246)-1(d)1(y)-327(do)-56(j)1(rza\\252)-328(c)28(h\\252op)-27(\\363)27(w)-327(s)-1(iej\\241cyc)28(h,)-327(p\\252u)1(gi)-328(w)-327(orce)-1(,)-327(lu)1(dzi)-328(p)1(rzy)-327(s)-1(ad)1(z)-1(eniu)]TJ 0 -13.549 Td[(zie)-1(mni)1(ak)28(\\363)27(w,)-333(za\\261)-334(p)-28(o)-333(p)1(ias)-1(zc)-1(zyst)28(yc)27(h)-333(r)1(olac)27(h)-333(j)1(u\\273)-334(k)1(urz)-333(s)-1(i\\246)-333(p)-28(o)-28(d)1(nosi\\252)-333(z)-1(a)-333(br)1(onami.)]TJ 27.879 -13.549 Td[(Jeno)-326(lip)-27(e)-1(c)28(kie)-327(ziem)-1(ie)-326(le)-1(\\273a\\252y)-326(w)-327(o)-28(d)1(r\\246)-1(t)28(wia\\252ej)-326(c)-1(ic)28(ho\\261c)-1(i)1(,)-327(sm)27(u)1(tne,)-326(og\\252uc)27(h)1(\\252e)-1(,)-326(jak)28(o)]TJ -27.879 -13.549 Td[(te)-486(niep\\252o)-28(d)1(ne)-486(wywie)-1(i)1(s)-1(k)56(a)-486(alb)-27(o)-486(drzew)-1(i)1(n)28(y)-486(sc)27(hn)1(\\241c)-1(e)-486(w\\261)-1(r\\363)-27(d)-486(lasu)-486(m\\252o)-28(dego.)-486(Bo)-486(i)-486(w)]TJ 0 -13.549 Td[(opu)1(s)-1(zcz)-1(eniu)-365(s)-1(iero)-27(c)-1(ym)-366(le\\273)-1(a\\252y)84(,)-366(m\\363)-56(j)-366(Bo\\273e)-1(,)-366(o)-27(d\\252ogiem)-367(p)1(ra)28(wie)-1(,)-365(gdy\\273)-366(te)-366(k)28(obiec)-1(e)-366(r\\246c)-1(e)]TJ 0 -13.55 Td[(ni)1(e)-452(znacz)-1(y)1(\\252)-1(y)-450(i)-451(z)-1(a)-451(d)1(z)-1(i)1(e)-1(si\\246)-1(ciu)-450(c)27(h\\252op)-27(\\363)28(w,)-451(c)27(h)1(o)-28(\\242)-452(si\\246)-451(w)-1(i)1(e)-1(\\261)-451(c)-1(a\\252a)-451(tr)1(ud)1(z)-1(i\\252a)-451(w)-451(p)-27(o)-28(c)-1(i)1(e)-452(o)-28(d)]TJ 0 -13.549 Td[(\\261w)-1(i)1(tu)-333(do)-333(no)-28(cy)84(.)]TJ 27.879 -13.549 Td[(C\\363\\273)-328(to)-328(mog\\252y)-327(s)-1(ame)-328(p)-27(orad)1(z)-1(i\\242?)-328(Zwija\\252y)-327(si\\246)-328(jeno)-327(k)28(ole)-328(ziem)-1(n)1(iak)28(\\363)28(w)-328(a)-328(l)1(n\\363)28(w,)-328(a)]TJ -27.879 -13.549 Td[(p)-27(o)-287(resz)-1(cie)-287(p)-27(\\363l)-287(ku)1(rop)1(atki)-286(s)-1(kr)1(z)-1(y)1(kiw)28(a\\252)-1(y)-286(si\\246)-287(c)-1(or)1(az)-287(g\\252o\\261)-1(n)1(ie)-1(j)1(,)-286(to)-287(za)-56(j)1(\\241c)-1(ze)-1(k)-286(cz)-1(\\246s)-1(to)-286(kica\\252,)]TJ 0 -13.549 Td[(a)-342(tak)-342(w)28(olno,)-341(\\273)-1(e)-342(m)-1(ogl)1(i)-342(z)-1(r)1(ac)27(ho)28(w)28(a\\242)-1(,)-342(i)1(le)-343(r)1(az)-1(y)-342(zabi)1(e)-1(li)1(\\252)-343(p)-27(o)-28(d)1(ogoniem)-342(z)-343(ozim)-1(i)1(n;)-342(wron)29(y)]TJ 0 -13.549 Td[(\\252az)-1(i)1(\\252y)-408(s)-1(tad)1(ami)-408(p)-27(o)-408(ugoru)1(j\\241cyc)27(h)-407(z)-1(agon)1(ac)27(h)1(,)-408(leniwie)-408(wyci\\241)-28(ga)-56(j)1(\\241c)-1(y)1(c)27(h)-408(si\\246)-408(w)-408(s)-1(\\252o\\253)1(c)-1(u)1(,)]TJ 0 -13.55 Td[(na)-333(p)1(r\\363\\273)-1(n)1(o)-334(cze)-1(k)56(a)-56(j)1(\\241c)-334(r\\246ki)-333(lu)1(dzkiej.)]TJ 27.879 -13.549 Td[(C\\363\\273)-310(to)-309(n)1(ar\\363)-28(d)-308(m)-1(ia\\252)-309(z)-309(te)-1(go,)-309(\\273e)-310(d)1(ni)-309(p)1(rzyc)27(h)1(o)-28(dzi\\252y)-309(wybr)1(ane)-309(i)-309(c)-1(u)1(dn)1(e)-1(,)-309(\\273e)-310(wyn)1(o-)]TJ -27.879 -13.549 Td[(si\\252y)-380(s)-1(i)1(\\246)-381(r)1(ank)56(am)-1(i)1(,)-380(jak)1(b)28(y)-380(w)28(e)-381(srebrze)-380(s)-1(k)56(\\241)-28(p)1(ane)-380(z)-1(\\252ote)-380(m)-1(on)1(s)-1(tr)1(ancje,)-380(\\273e)-381(zie)-1(l)1(one)-380(b)28(y\\252y)84(,)]TJ 0 -13.549 Td[(pac)28(hn)1(\\241c)-1(e)-395(zio\\252ami,)-394(nagr)1(z)-1(an)1(e)-395(i)-394(\\261)-1(p)1(ie)-1(w)28(a)-56(j)1(\\241c)-1(e)-394(ptasimi)-395(g\\252osami,)-394(\\273)-1(e)-395(k)56(a\\273dy)-394(r\\363)28(w)-394(z)-1(\\252o)-28(ci\\252)]TJ 0 -13.549 Td[(si\\246)-357(o)-28(d)-356(mle)-1(cz)-1(\\363)28(w,)-356(k)55(a\\273da)-356(m)-1(i)1(e)-1(d)1(z)-1(a)-356(m)-1(i)1(e)-1(n)1(i\\252a)-357(si\\246)-357(kiej)-356(ws)-1(t\\246ga)-357(sz)-1(y)1(ta)-357(w)-357(stokr)1(o)-28(c)-1(i)1(e)-1(,)-356(a)-357(\\252\\246gi)]TJ 0 -13.55 Td[(kiej)-362(t)27(y)1(m)-364(p)1(uc)28(hem)-364(zr\\363\\273o)28(w)-1(i)1(on)28(ym)-363(kwiatami)-363(b)28(y)1(\\252y)-363(p)-27(otrz\\241\\261)-1(n)1(i\\246)-1(te,)-363(\\273e)-363(k)55(a\\273da)-362(drze)-1(win)1(a)]TJ 0 -13.549 Td[(try)1(s)-1(k)56(a\\252a)-374(w)27(ez)-1(b)1(ran)1(\\241)-374(z)-1(ieleni\\241,)-374(a)-374(wsz)-1(ystek)-374(\\261)-1(wiat)-374(wzbiera\\252)-374(tak)56(\\241)-374(z)-1(wiesn\\241,)-374(a\\273)-374(z)-1(iemia)]TJ 0 -13.549 Td[(zda)28(w)27(a\\252a)-333(s)-1(i)1(\\246)-334(kip)1(ie)-1(\\242)-333(i)-333(bul)1(gota\\242)-334(o)-28(d)-333(tego)-333(w)-1(r)1(z)-1(\\241tk)1(u)-333(z)-1(wies)-1(n)1(o)28(w)27(ego!)]TJ 27.879 -13.549 Td[(A)-476(c\\363\\273)-477(z)-476(te)-1(go,)-476(k)1(ie)-1(j)-475(p)-28(ol)1(a)-477(n)1(ie)-476(z)-1(aoran)1(e)-1(,)-475(nie)-476(obsiane,)-476(ni)1(e)-477(ob)1(robi)1(one)-477(l)1(e)-1(\\273a\\252y)83(,)]TJ -27.879 -13.549 Td[(ni)1(b)28(y)-285(par)1(ob)28(y)-285(zdro)28(w)28(e)-286(i)-285(kr)1(z)-1(epk)1(ie)-1(,)-285(p)1(rze)-1(ci\\241)-28(ga)-55(j\\241ce)-286(si\\246)-286(j)1(e)-1(n)1(o)-285(na)-285(s\\252o\\253cu,)-285(a)-285(ca\\252)-1(e)-285(t)28(ygo)-28(d)1(nie)]TJ 0 -13.55 Td[(tra)28(wi\\241c)-296(n)1(a)-296(ni)1(c)-1(zym,)-296(zas)-1(ie)-296(n)1(a)-296(t\\252u)1(s)-1(t)28(yc)28(h,)-295(ro)-28(d)1(n)28(yc)27(h)-295(ziem)-1(iac)28(h)-295(m)-1(i)1(as)-1(to)-295(z)-1(b)-27(\\363\\273)-296(ognic)28(h)28(y)-295(s)-1(i\\246)]TJ 0 -13.549 Td[(pl)1(e)-1(n)1(i\\252y)83(,)-311(ost)28(y)-311(s)-1(tr)1(z)-1(ela\\252y)-311(w)-312(g\\363r)1(\\246)-1(,)-311(lebi)1(o)-28(dy)-311(tr)1(z)-1(\\246s)-1(\\252y)-311(si\\246)-312(p)-27(o)-312(d)1(o\\252k)56(ac)27(h,)-311(r)1(udzia\\252y)-311(sz)-1(cz)-1(a)28(wie,)]TJ 0 -13.549 Td[(p)-27(e)-1(r)1(z)-1(e)-426(k)1(\\252u\\252y)-425(si\\246)-426(g\\246s)-1(to)-425(p)-27(o)-425(p)-28(o)-27(dor\\363)28(wk)56(ac)27(h)-425(j)1(e)-1(sienn)28(yc)28(h,)-425(a)-425(n)1(a)-426(r)1(\\273)-1(ysk)56(ac)27(h)-425(wyn)1(os)-1(i)1(\\252)-1(y)-425(si\\246)]TJ 0 -13.549 Td[(sm)27(uk)1(\\252e)-332(dziew)27(an)1(n)28(y)-331(i)-331(\\252opi)1(an)28(y)-331(kiej)-331(te)-331(kum)28(y)-331(p)-28(o)-27(duf)1(a\\252e)-332(zas)-1(iad)1(a\\252y)-331(s)-1(ze)-1(r)1(ok)28(o,)-331(\\273)-1(e)-331(c)-1(o)-331(in)1(o)]TJ 0 -13.549 Td[(tli)1(\\252)-1(o)-410(s)-1(i)1(\\246)-411(w)-411(pr)1(z)-1(y)1(ta)-56(jeni)1(u)-410(i)-411(strac)28(hem)-411(dotela)-410(\\273)-1(y\\252o,)-410(kie\\252k)28(o)28(w)27(a\\252o)-411(t)1(e)-1(raz)-410(w)27(es)-1(elni)1(e)-1(,)-410(s)-1(z\\252o)]TJ 0 -13.55 Td[(c)27(h)29(y\\273)-1(y)1(m)-334(roste)-1(m,)-333(p)-27(c)27(ha\\252o)-333(s)-1(i)1(\\246)-334(z)-334(b)1(ruzd)-333(na)-333(zagon)28(y)-333(i)-333(panoszy\\252o)-334(si\\246)-334(b)1(uj)1(nie)-333(p)-28(o)-333(rolac)28(h.)]TJ 27.879 -13.549 Td[(A\\273)-334(l\\246k)-333(jak)1(i\\261)-334(pr)1(z)-1(ewie)-1(w)28(a\\252)-334(p)-27(o)-333(t)28(yc)27(h)-333(p)-27(olac)28(h)-333(opu)1(s)-1(zc)-1(zon)28(yc)27(h)1(.)]TJ 0 -13.549 Td[(\\233e)-319(zda)28(w)27(a\\252o)-318(s)-1(i)1(\\246)-1(,)-318(j)1(akb)28(y)-318(b)-27(ory)83(,)-318(c)28(h)28(yl\\241ce)-319(si\\246)-319(ni)1(s)-1(k)28(o)-318(nad)-318(u)1(gorami,)-318(gw)27(ar)1(z)-1(y)1(\\252)-1(y)-318(zdu)1(-)]TJ -27.879 -13.549 Td[(mione,)-467(\\273e)-467(strumieni)1(e)-467(l\\246)-1(kl)1(iwie)-1(j)-466(wi\\252y)-466(s)-1(i)1(\\246)-467(s)-1(kr)1(o\\261)-467(pu)1(s)-1(tek,)-466(a)-467(tarn)1(in)28(y)-466(ju)1(\\273)-467(ob)28(w)28(alone)]TJ 0 -13.549 Td[(bi)1(a\\252ym)-1(i)-378(p\\241k)56(ami,)-379(gr)1(usz)-1(e)-379(p)-27(o)-379(mie)-1(d)1(z)-1(ac)28(h,)-379(p)1(rze)-1(l)1(otne)-379(ptact)28(w)27(o,)-378(to)-379(j)1(aki\\261)-379(w)27(\\246dr)1(o)27(wn)1(ik)-379(z)]TJ 0 -13.55 Td[(ob)-27(c)-1(yc)28(h)-402(stron)-401(i)-402(na)28(w)28(e)-1(t)-402(te)-402(krzy\\273e)-403(i)-401(\\014gur)1(y)83(,)-401(s)-1(tr)1(\\363)-1(\\273uj)1(\\241c)-1(e)-402(nad)-401(dr)1(ogam)-1(i)1(,)-402(ws)-1(zys)-1(t)1(k)28(o)-402(s)-1(i\\246)]TJ 0 -13.549 Td[(rozgl\\241d)1(a)-334(w)-333(z)-1(d)1(umie)-1(n)1(iu)-333(i)-333(p)28(y)1(ta)-334(d)1(ni)-333(j)1(as)-1(n)28(y)1(c)27(h)-333(i)-333(t)28(yc)27(h)-333(o)-27(d\\252og\\363)28(w)-334(p)1(ust)27(y)1(c)27(h:)]TJ 27.879 -13.549 Td[({)-400(A)-399(k)55(a)-55(j)-399(s)-1(i\\246)-400(to)-399(p)-28(o)-28(d)1(z)-1(i)1(a\\252y)-400(gosp)-28(o)-28(d)1(arze)-1(?)-400(k)56(a)-55(j)-400(to)-399(te)-400(\\261)-1(p)1(ie)-1(wy)84(,)-400(te)-400(b)1(ujn)1(e)-400(rad)1(o\\261)-1(cie)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(?)-1(.)1(..)]TJ 27.879 -13.549 Td[(Jeno)-333(te)-1(n)-332(p\\252ac)-1(z)-333(k)28(obiec)-1(y)-333(im)-333(p)-28(o)28(wiad)1(a\\252,)-334(co)-333(s)-1(i\\246)-333(w)-334(Lip)-27(c)-1(ac)28(h)-333(s)-1(t)1(a\\252)-1(o.)]TJ 0 -13.549 Td[(I)-355(tak)-354(s)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-355(dzie)-1(\\253)-354(p)-27(o)-355(d)1(niu)-354(b)-27(e)-1(z)-355(\\273adnej)-354(pr)1(z)-1(em)-1(i)1(an)28(y)-355(n)1(a)-355(lepsz)-1(e;)-355(n)1(apr)1(z)-1(ec)-1(iw,)]TJ -27.879 -13.55 Td[(gdy)1(\\273)-287(co)-286(d)1(nia)-286(p)1(ra)28(wie)-286(m)-1(n)1(iej)-286(k)28(ob)1(ie)-1(t)-285(w)-1(y)1(c)27(ho)-27(dzi\\252o)-286(w)-286(p)-28(ol)1(e)-1(,)-285(\\273)-1(e)-286(to)-286(w)-286(c)27(h)1(a\\252up)1(ac)27(h)-285(z)-1(aleg\\252e)-1(j)]TJ 0 -13.549 Td[(rob)-27(o)-28(cie)-334(ledwie)-333(p)-28(or)1(adzi\\252.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-305(u)-305(Boryn)1(\\363)27(w)-305(sz)-1(\\252o)-305(ws)-1(zys)-1(t)1(k)27(o)-305(j)1(ak)-305(z)-1(wycz)-1(a)-55(jn)1(ie)-1(,)-305(w)28(oln)1(ie)-1(j)-304(jeno)-305(ni)1(\\271)-1(li)-305(p)-27(o)-305(inn)1(e)]TJ -27.879 -13.549 Td[(lata)-381(i)-382(\\271dziebk)28(o)-382(gor)1(z)-1(ej,)-381(\\273)-1(e)-382(to)-381(Pietrek)-381(dopi)1(e)-1(r)1(o)-382(s)-1(i)1(\\246)-382(przyu)1(c)-1(za\\252)-382(do)-381(p)-28(ol)1(o)27(wyc)28(h)-381(rob)-28(\\363t)1(,)]TJ 0 -13.549 Td[(ale)-334(za)28(wdy)-333(s)-1(z\\252o)-334(j)1(ak)28(o\\261)-1(,)-333(b)-27(o)-28(\\242)-334(i)-333(r)1(\\241k)-333(p)-28(omo)-28(cn)28(yc)27(h)-333(n)1(ie)-334(b)1(rak\\252o.)]TJ 27.879 -13.55 Td[(Hank)56(a,)-405(c)27(h)1(o)-28(\\242)-406(jesz)-1(cz)-1(e)-406(z)-406(\\252\\363\\273k)56(a,)-406(r)1(z)-1(\\241d)1(z)-1(i\\252a)-405(ws)-1(zystkim)-406(tak)-405(zm)27(y\\261ln)1(ie)-406(i)-405(kw)27(ar)1(do,)]TJ -27.879 -13.549 Td[(\\273e)-329(n)1(a)28(w)27(et)-328(Jagu)1(\\261)-328(m)27(usia\\252a)-328(z)-328(d)1(rugi)1(m)-1(i)-327(s)-1(ta)28(w)28(a\\242)-328(do)-328(r)1(ob)-28(ot)28(y)84(,)-328(i)-327(o)-328(ws)-1(zelkiej)-328(r)1(z)-1(ec)-1(zy)-327(r\\363)28(w)-1(n)1(\\241)]TJ\nET\nendstream\nendobj\n1477 0 obj <<\n/Type /Page\n/Contents 1478 0 R\n/Resources 1476 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1476 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1481 0 obj <<\n/Length 8925      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(462)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pami\\246\\242)-455(mia\\252a:)-454(o)-454(lew)27(en)28(tarzu,)-454(o)-454(c)27(h)1(orym,)-454(k)56(a)-56(j)-453(ora\\242)-455(i)-454(co)-454(gdzie)-455(sia\\242,)-454(o)-455(d)1(z)-1(i)1(e)-1(ciac)27(h)1(,)]TJ 0 -13.549 Td[(gdy)1(\\273)-379(Bylica)-378(ju)1(\\273)-379(o)-28(d)-377(c)27(hr)1(z)-1(cin)-378(n)1(ie)-379(p)1(rzyc)27(h)1(o)-28(dzi\\252,)-378(zac)27(hor)1(z)-1(a\\252)-378(p)-27(ono.)-378(Ju)1(\\261)-1(ci,)-378(\\273e)-379(c)-1(a\\252e)-378(dn)1(i)]TJ 0 -13.549 Td[(le\\273)-1(a\\252a)-492(w)-492(s)-1(amotn)1(o\\261)-1(ci,)-492(t)28(yle)-492(jeno)-492(l)1(udzi)-492(wid)1(uj\\241c,)-492(co)-492(w)-493(ob)1(iad)-492(i)-491(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m,)-492(alb)-27(o)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(\\241,)-311(zagl\\241d)1(a)-56(j)1(\\241)-1(c\\241)-311(d)1(o)-311(ni)1(e)-1(j)-310(raz)-311(w)-311(dzie\\253;)-310(\\273)-1(ad)1(na)-311(z)-311(s\\241s)-1(iad)1(e)-1(k)-310(nie)-311(p)-27(ok)56(az)-1(yw)28(a\\252a)]TJ 0 -13.549 Td[(si\\246)-1(,)-326(na)28(w)27(et)-327(Magd)1(a,)-327(a)-327(o)-327(Ro)-28(c)28(h)28(u)-326(to)-327(jakb)29(y)-327(s)-1(\\252u)1(c)27(h)-326(z)-1(a{)-327(gi)1(n\\241\\252:)-327(j)1(ak)-327(p)-27(o)-56(jec)27(h)1(a\\252)-327(w)-1(t)1(e)-1(n)1(c)-1(zas)-328(z)]TJ 0 -13.55 Td[(pr)1(ob)-28(oszc)-1(ze)-1(m,)-366(t)1(ak)-366(i)-365(nie)-366(p)-27(o)28(w)-1(r)1(\\363)-28(ci\\252.)-366(S)1(trasz)-1(n)1(ie)-366(m)-1(i)1(e)-1(rzi\\252o)-366(si\\246)-366(j)1(e)-1(j)-365(to)-366(l)1(e)-1(\\273e)-1(n)1(ie)-1(,)-365(wi\\246c)-367(ab)29(y)]TJ 0 -13.549 Td[(ry)1(c)27(hl)1(e)-1(j)-409(ozdr)1(o)27(wie\\242)-410(i)-409(si\\252)-409(nab)1(ra\\242,)-409(nie)-409(\\273)-1(a\\252o)28(w)27(a\\252a)-409(sobie)-409(t\\252uste)-1(go)-409(j)1(ad\\252a)-409(ni)-409(j)1(a)-56(j)1(k)28(\\363)27(w,)-409(n)1(i)]TJ 0 -13.549 Td[(mi\\246)-1(sa,)-310(n)1(a)27(w)28(et)-310(przyk)56(az)-1(a\\252a)-310(zarzn\\241\\242)-310(na)-310(r)1(os)-1(\\363\\252)-310(k)28(ok)28(os)-1(zk)28(\\246,)-310(nie)-310(ni)1(e)-1(\\261n\\241)-310(p)-27(o)-310(pr)1(a)27(wd)1(z)-1(ie,)-310(ale)]TJ 0 -13.549 Td[(za)27(wd)1(y)-334(w)28(arta\\252\\241)-333(ze)-334(dw)28(a)-334(z\\252ote)-1(.)]TJ 27.879 -13.549 Td[(T)83(ote\\273)-417(tak)-415(pr\\246dk)28(o)-416(zmog\\252)-1(a)-416(c)28(hor)1(ob)-28(\\246,)-416(\\273e)-417(ju)1(\\273)-417(w)-416(P)1(rze)-1(w)28(o)-28(dy)-415(w)-1(sta\\252a,)-416(p)-27(os)-1(tan)1(a-)]TJ -27.879 -13.549 Td[(wia)-56(j)1(\\241c)-389(i\\261)-1(\\242)-389(n)1(a)-389(wyw)27(\\363)-27(d)-389(d)1(o)-389(k)28(o\\261)-1(cio\\252a;)-389(o)-27(drad)1(z)-1(a\\252y)-388(jej)-389(k)28(ob)1(ie)-1(t)28(y)84(,)-389(ale)-389(si\\246)-389(up)1(ar\\252a)-389(i)-389(zaraz)]TJ 0 -13.55 Td[(p)-27(o)-334(sumie)-334(p)-27(osz)-1(\\252a)-333(z)-334(P\\252osz)-1(k)28(o)28(w)28(\\241.)]TJ 27.879 -13.549 Td[(Ch)28(wia\\252a)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(na)-333(n)1(o)-1(gac)28(h)-333(i)-333(c)-1(z\\246)-1(sto)-333(ws)-1(p)1(ie)-1(r)1(a\\252a)-334(n)1(a)-334(k)1(umie)-1(.)]TJ 0 -13.549 Td[({)-333(Ja\\273)-1(e)-333(m)-1(i)-333(si\\246)-334(w)-333(g\\252)-1(o)28(wie)-334(k)28(o\\252u)1(je,)-333(tak)-333(z)-1(wies)-1(n)1(\\241)-334(p)1(ac)27(h)1(nie.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(\\253)1(,)-334(d)1(w)27(a)-333(i)-333(wz)-1(wycz)-1(ai)1(c)-1(ie)-333(s)-1(i\\246.)]TJ 0 -13.549 Td[({)-333(T)27(yd)1(z)-1(i)1(e)-1(\\253)-333(d)1(opiero,)-333(a)-333(z)-1(mian)28(y)-333(n)1(a)-334(\\261wiec)-1(ie)-333(z)-1(a)-333(c)-1(a\\252y)-333(mies)-1(i\\241c.)]TJ 0 -13.55 Td[({)-333(Na)-334(b)29(ys)-1(tr)1(ym)-334(k)28(on)1(iu)-333(zw)-1(i)1(e)-1(sna)-333(jedzie,)-334(\\273e)-334(n)1(ie)-334(p)1(rz)-1(egoni)1(.)]TJ 0 -13.549 Td[({)-333(Zie)-1(l)1(ono)-333(te)-1(\\273,)-333(m)-1(\\363)-55(j)-333(Jez)-1(u)1(,)-334(zielono!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-335(sady)-334(w)-1(i)1(s)-1(ia\\252y)-334(nad)-334(z)-1(iemi\\241)-335(kiej)-335(t)1(a)-335(c)27(hm)28(ur)1(a)-335(z)-1(i)1(e)-1(lon)1(o\\261)-1(ci,)-335(\\273e)-335(ino)-335(k)28(omin)29(y)-335(z)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)-272(biela\\252y)-273(i)-272(dac)27(h)29(y)-273(s)-1(i)1(\\246)-274(wyn)1(os)-1(i\\252y)84(.)-273(P)28(o)-273(g\\241sz)-1(czac)27(h)-273(p)1(tas)-1(t)28(w)28(o)-273(\\261)-1(wiergota\\252o)-273(zapami\\246tale,)]TJ 0 -13.549 Td[(do\\252em)-371(za\\261)-370(o)-28(d)-370(p)-27(\\363l)-370(cie)-1(p)1(\\252y)-370(wiate)-1(r)-369(p)-28(o)-27(c)-1(i\\241)-27(ga\\252)-1(,)-369(a\\273)-371(si\\246)-371(b)1(ur)1(z)-1(y\\252y)-370(c)28(h)28(w)27(ast)28(y)-370(p)-27(o)-28(d)-370(p)1(\\252otam)-1(i)1(,)]TJ 0 -13.55 Td[(a)-333(s)-1(ta)28(w)-333(m)-1(ar)1(s)-1(zc)-1(zy\\252)-333(s)-1(i\\246)-334(i)-333(p)1(r\\246go)27(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-333(T)83(\\246)-1(gi)1(e)-334(p\\241ki)-333(wzbiera)-55(j\\241)-333(na)-333(wi\\261)-1(n)1(iac)27(h)1(,)-333(ino)-333(pat)1(rz)-1(e\\242)-334(kwiat)1(u.)]TJ 0 -13.549 Td[({)-333(B)-1(y)-333(mr\\363z)-334(n)1(ie)-334(zw)27(ar)1(z)-1(y)1(\\252)-1(,)-333(to)-333(o)28(w)27(o)-27(c)-1(u)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(galan)28(to.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(ada)-55(j\\241,)-333(\\273)-1(e)-333(kiedy)-333(c)27(h)1(le)-1(b)-332(nie)-334(zro)-27(dzi,)-333(s)-1(ad)-333(d)1(ogo)-28(dzi!)]TJ 0 -13.549 Td[({)-307(Ma)-307(si\\246)-308(n)1(a)-308(to)-307(w)-307(Lip)-27(c)-1(ac)28(h,)-307(id)1(z)-1(ie)-307(p)-27(o)-308(tem)27(u)1(!..)1(.)-307({)-308(w)28(e)-1(stc)27(h)1(n\\246\\252a)-307(s)-1(m)28(utn)1(ie)-1(,)-307(sp)-27(ogl\\241-)]TJ -27.879 -13.55 Td[(da)-55(j\\241c)-333(\\252)-1(za)28(w)27(o)-333(na)-333(n)1(ie)-334(obsian)1(e)-334(p)-28(ol)1(a.)]TJ 27.879 -13.549 Td[(Pr)1(\\246)-1(d)1(k)28(o)-429(si\\246)-429(u)28(win\\246\\252y)-429(z)-429(wyw)28(o)-28(dem,)-429(b)-27(o)-429(d)1(z)-1(iec)-1(i)1(ak)-429(si\\246)-429(rozkrzyc)-1(za\\252,)-429(a)-428(i)-429(Han)1(k)55(a)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)-1(zu\\252a)-457(si\\246)-457(tak)-457(u)1(tru)1(dzon\\241,)-457(\\273e)-457(z)-1(ar)1(az)-458(p)-27(o)-457(p)-27(o)28(w)-1(r)1(o)-28(c)-1(i)1(e)-458(d)1(o)-457(izb)28(y)-457(p)1(rzyleg\\252)-1(a)-456(niec)-1(o)-457(n)1(a)]TJ 0 -13.549 Td[(p)-27(o\\261)-1(cieli,)-333(ale)-334(n)1(ie)-334(o)-28(d)1(z)-1(i)1(pn\\246\\252a)-333(jes)-1(zc)-1(ze)-1(,)-333(ki)1(e)-1(j)-333(W)1(ite)-1(k)-333(z)-334(k)1(rzykiem)-334(wlec)-1(ia\\252:)]TJ 27.879 -13.549 Td[({)-333(Gosp)-28(o)-28(d)1(yni)1(,)-333(a)-334(to)-333(Cygan)28(y)-333(d)1(o)-334(wsi)-334(i)1(d\\241!)]TJ 0 -13.55 Td[({)-349(Masz)-350(diab)1(le)-350(k)56(aft)1(an,)-349(tego)-350(j)1(e)-1(sz)-1(cz)-1(e)-349(brak)28(o)28(w)28(a\\252o.)-350(Za)28(w)28(o\\252a)-56(j)-349(P)1(ie)-1(tr)1(k)56(a)-350(d)1(rz)-1(wi)-349(p)-27(o-)]TJ -27.879 -13.549 Td[(zam)27(yk)56(a\\242,)-334(b)29(yc)27(h)-333(cz)-1(ego)-333(nie)-334(p)-27(orw)28(a\\252y)83(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-333(dom)-333(wys)-1(z\\252a)-334(zatrw)28(o\\273)-1(on)1(a)-333(w)-1(i)1(e)-1(lce)-1(.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-336(wkr)1(\\363tc)-1(e)-335(rozle)-1(cia\\252a)-335(si\\246)-336(p)-27(o)-335(w)-1(si)-335(ca)-1(\\252a)-335(b)1(and)1(a)-336(Cygan)1(e)-1(k)1(,)-335(ob)-28(d)1(art)28(yc)27(h)1(,)-335(roz-)]TJ -27.879 -13.549 Td[(mam)-1(\\252an)28(y)1(c)27(h)-451(c)-1(zarn)28(y)1(c)27(h)-451(kiej)-451(s)-1(agan)29(y)83(,)-451(z)-452(dzie)-1(\\242mi)-452(n)1(a)-452(p)1(le)-1(cac)27(h)1(,)-452(a)-451(up)1(rzykrzon)28(yc)28(h,)-451(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-1(c)28(h)-354(B\\363g)-353(bron)1(i;)-353(\\252a)-1(zi\\252y)-353(\\273)-1(ebr)1(z)-1(\\241c,)-354(wr)1(\\363\\273)-1(y\\242)-354(c)28(hcia\\252y)-354(i)-353(do)-353(izb)-353(gw)27(a\\252tem)-354(s)-1(i)1(\\246)-354(c)-1(isn\\246\\252y)83(.)-353(Z)]TJ 0 -13.55 Td[(dzies)-1(i)1(\\246)-1(\\242)-334(i)1(c)27(h)-333(b)28(y\\252o,)-333(a)-333(nar)1(obi\\252y)-333(wrzas)-1(ku)-332(na)-333(c)-1(a\\252\\241)-333(w)-1(i)1(e)-1(\\261.)]TJ 27.879 -13.549 Td[({)-226(J\\363zk)55(a,)-225(s)-1(p)-27(\\246)-1(d)1(\\271)-227(g\\246s)-1(i)-226(i)-225(kur)1(y)-226(w)-227(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e,)-226(dziec)-1(i)-226(p)1(rzywie)-1(d)1(\\271)-227(d)1(o)-226(c)27(ha\\252u)1(p)28(y)84(,)-226(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(uk)1(radn)1(\\241!)-286({)-287(s)-1(i)1(ad\\252a)-287(w)-286(ganku)-286(p)1(iln)1(o)27(w)28(a\\242)-1(,)-286(a)-287(d)1(o)-56(j)1(rza)27(wsz)-1(y)-286(jak)56(\\241\\261)-287(Cygan)1(ic)27(h)1(\\246)-287(z)-1(mierz)-1(a)-55(j\\241c\\241)]TJ 0 -13.549 Td[(w)-456(op\\252otki)1(,)-456(p)-27(os)-1(zc)-1(zu\\252a)-456(j)1(\\241)-456(pse)-1(m.)-456(\\212ap)1(a)-456(s)-1(i\\246)-456(rozsro\\273)-1(y)1(\\252)-456(i)-456(ni)1(e)-457(p)1(u\\261c)-1(i\\252,)-456(\\273e)-456(c)-1(zaro)28(wnica)]TJ 0 -13.549 Td[(p)-27(ogrozi\\252a)-334(k)1(ijem)-334(i)-333(c)-1(osik)-333(n)1(a)-334(n)1(i\\241)-333(m)-1(amrota\\252a.)]TJ 27.879 -13.55 Td[({)-333(Hale)-1(,)-333(gd)1(z)-1(i)1(e)-1(\\261)-334(mam)-334(t)28(w)28(o)-56(j)1(e)-334(pr)1(z)-1(ekle\\253st)28(w)27(a,)-333(z\\252)-1(o)-27(dzie)-1(j)1(k)28(o!)]TJ 0 -13.549 Td[({)-333(Nie)-334(u)1(rz)-1(ek\\252ab)28(y)84(,)-333(gdyb)29(y\\261)-1(cie)-334(j)1(\\241)-334(p)1(u\\261c)-1(i)1(li)-333({)-334(sze)-1(p)1(n\\246\\252)-1(a)-333(Jagn)1(a)-334(z)-334(p)1(rze)-1(k)56(\\241se)-1(m.)]TJ\nET\nendstream\nendobj\n1480 0 obj <<\n/Type /Page\n/Contents 1481 0 R\n/Resources 1479 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1466 0 R\n>> endobj\n1479 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1484 0 obj <<\n/Length 8998      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(463)]TJ -330.353 -35.866 Td[({)-474(Aleb)28(y)-473(c)-1(o)-474(u)1(krad)1(\\252a.)-474(T)83(ak)1(ie)-1(j)-473(ni)1(e)-475(u)1(pi)1(ln)28(uj)1(e)-1(,)-473(c)27(h)1(o)-28(\\242)-1(b)29(y)-474(j)1(e)-1(j)-473(na)-474(r)1(\\246)-1(ce)-474(patr)1(z)-1(a\\252,)-474(a)]TJ -27.879 -13.549 Td[(c)27(h)1(c)-1(ec)-1(i)1(e)-334(wr\\363\\273)-1(eni)1(a,)-333(to)-334(go\\253)1(c)-1(i)1(e)-334(s)-1(e)-333(z)-1(a)-333(nimi.)]TJ 27.879 -13.549 Td[(Sn)1(ad\\271)-453(tr)1(a\\014\\252a)-453(w)-453(p)1(rzyta)-56(j)1(one)-453(c)27(h)1(\\246)-1(ci,)-452(b)-28(o)-452(Jagna)-452(p)-28(on)1(ie)-1(s\\252a)-453(si\\246)-453(na)-452(w)-1(i)1(e)-1(\\261)-453(i)-453(ca\\252e)]TJ -27.879 -13.549 Td[(to)-320(ni)1(e)-1(d)1(z)-1(ieln)1(e)-321(p)-27(op)-28(o\\252u)1(dni)1(e)-321(\\252az)-1(i)1(\\252a)-321(za)-320(Cygank)56(ami.)-320(Nie)-321(p)-27(oredzi\\252a)-320(wyz)-1(b)29(y\\242)-321(si\\246)-321(j)1(akiej\\261)]TJ 0 -13.549 Td[(g\\252uc)28(hej)-298(oba)28(wy)-299(n)1(i)-298(pr)1(z)-1(ez)-1(wyci\\246)-1(\\273y\\242)-299(ciek)56(a)27(w)28(o\\261)-1(ci)-298(wr\\363\\273)-1(b)29(y)83(,)-298(\\273e)-299(p)-28(o)-298(sto)-299(r)1(az)-1(y)-298(z)-1(a)28(wraca\\252a)-299(d)1(o)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)28(y)-429(i)-428(nies)-1(\\252a)-429(si\\246)-430(zno)28(wu)-429(za)-429(nimi,)-429(a\\273)-429(dop)1(ie)-1(r)1(o)-429(na)-429(zm)-1(i)1(e)-1(rzc)27(h)28(u)1(,)-429(ki)1(e)-1(j)-429(Cygan)1(ic)27(h)29(y)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\246\\252a)-422(k)1(u)-421(laso)27(wi,)-421(d)1(o)-56(j)1(rz)-1(a)28(wsz)-1(y)84(,)-421(\\273)-1(e)-422(j)1(e)-1(d)1(na)-421(ws)-1(t\\241)-27(pi\\252a)-421(do)-421(k)56(arcz)-1(m)28(y)83(,)-421(ws)-1(u)1(n\\246\\252a)-421(s)-1(i\\246)]TJ 0 -13.549 Td[(za)-384(n)1(i\\241)-383(i)-383(z)-383(w)-1(i)1(e)-1(lk)1(im)-384(strac)28(hem)-1(,)-382(\\273)-1(egna)-55(j\\241c)-383(s)-1(i\\246)-383(raz)-383(p)-28(o)-383(r)1(az)-1(,)-383(k)56(aza\\252)-1(a)-383(sobi)1(e)-384(wr\\363\\273y\\242)-1(,)-382(nie)]TJ 0 -13.549 Td[(bacz\\241c)-334(na)-333(lud)1(z)-1(i)-333(p)1(rzy)-333(s)-1(zynk)1(w)27(asie)-334(sto)-56(j)1(\\241c)-1(yc)28(h.)]TJ 27.879 -13.549 Td[(Wiecz)-1(orem,)-230(p)-27(o)-229(k)28(olac)-1(j)1(i,)-229(z)-1(es)-1(z\\252y)-229(s)-1(i\\246)-229(do)-230(J)1(\\363z)-1(ki)-229(n)1(a)-230(gan)1(e)-1(k)-229(dziew)27(cz)-1(yn)29(y)-230(i)-229(r)1(a)-56(jco)28(w)27(a\\252y)]TJ -27.879 -13.549 Td[(o)-308(Cyganac)28(h,)-307(op)-28(o)28(wiada)-55(j\\241c,)-308(co)-308(kt\\363rej)-307(w)-1(y)1(w)-1(r)1(\\363\\273)-1(y\\252y:)-307(\\273)-1(e)-308(Mar)1(ys)-1(i)-307(B)-1(al)1(c)-1(erk)28(\\363)28(wnie)-308(w)27(ese)-1(le)]TJ 0 -13.55 Td[(pr)1(z)-1(ep)-27(o)27(wiedzia\\252y)-378(n)1(a)-378(k)28(opani)1(u,)-378(Nastce)-379(wielgi)-378(ma)-56(j)1(\\241te)-1(k)-377(i)-378(c)27(h)1(\\252opa,)-378(Uli)1(s)-1(i)-378(S)1(o)-28(c)27(h)1(\\363)28(w)-1(n)1(ie,)]TJ 0 -13.549 Td[(\\273e)-417(j)1(\\241)-416(z)-1(wiedzie)-417(k)56(a)28(w)27(al)1(e)-1(r)1(,)-416(te)-1(j)-415(p)-28(\\246k)56(ate)-1(j)-415(W)83(eron)1(c)-1(e)-416(Bartk)28(o)28(w)27(ej)-416(c)28(horob)-27(\\246,)-416(z)-1(asie)-416(T)83(e)-1(r)1(e)-1(sc)-1(e)]TJ 0 -13.549 Td[(\\273o\\252)-1(n)1(ierce)-1(...)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(b)-27(\\246)-1(k)56(art)1(a!)-334({)-333(za)27(w)28(arcz)-1(a\\252a)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-333(siedz\\241c)-1(a)-333(z)-334(b)-27(oku.)]TJ 0 -13.549 Td[(Nie)-294(zw)27(a\\273ali)-293(na)-293(ni\\241,)-293(b)-27(o)-294(w\\252a\\261)-1(n)1(ie)-294(P)1(ie)-1(tr)1(e)-1(k)-293(si\\246)-294(pr)1(z)-1(ysiad)1(\\252)-294(i)-293(j\\241\\252)-294(i)1(m)-294(pr)1(a)27(wi\\242)-294(r)1(\\363\\273)-1(n)1(o-)]TJ -27.879 -13.55 Td[(\\261c)-1(i,)-280(j)1(ak)-280(to)-280(C)-1(y)1(gan)28(y)-280(s)-1(w)28(o)-56(j)1(e)-1(go)-280(kr)1(\\363la)-280(m)-1(a)-55(j\\241,)-280(kt\\363r)1(e)-1(n)-280(ca\\252y)-280(w)27(e)-280(s)-1(r)1(e)-1(b)1(rn)28(yc)28(h)-280(guzac)27(h)-280(c)28(ho)-28(d)1(z)-1(i)1(,)]TJ 0 -13.549 Td[(a)-308(tak)1(i)-308(ma)-308(p)-27(os\\252)-1(u)1(c)27(h)1(,)-308(\\273e)-308(kiejb)28(y)-307(pr)1(z)-1(y)1(k)55(aza\\252)-308(la)-307(\\261)-1(miec)27(h)28(u)-307(t)28(ylk)28(o)-307(p)-28(o)28(wies)-1(i\\242)-308(si\\246)-308(kt\\363r)1(e)-1(m)28(u,)-307(a)]TJ 0 -13.549 Td[(w)-334(mig)-333(to)-333(robi)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Z\\252)-1(o)-27(dzie)-1(j)1(s)-1(k)1(i)-333(kr\\363l,)-333(mo)-28(carz)-334(taki)1(,)-333(a)-334(p)1(s)-1(ami)-333(go)-334(sz)-1(czuj\\241{)-333(sz)-1(epn)1(\\241\\252)-334(Wi)1(te)-1(k)1(.)]TJ 0 -13.549 Td[({)-272(Pi)1(e)-1(skie)-272(nas)-1(i)1(e)-1(n)1(ie)-1(,)-271(p)-28(ogan)28(y)-271(z)-1(atr)1(ac)-1(on)1(e)-1(!)-272({)-272(mruk)1(n\\246\\252a)-273(stara)-272(i)-272(p)1(rzys)-1(u)1(n\\241)28(ws)-1(zy)-272(si\\246)]TJ -27.879 -13.55 Td[(rozp)-27(o)27(wiad)1(a\\252a,)-334(j)1(ak)-333(to)-333(C)-1(y)1(gan)28(y)-333(dzie)-1(ci)-333(krad)1(n\\241)-333(p)-27(o)-334(wsiac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-271(I)-272(\\273e)-1(b)28(y)-271(cz)-1(ar)1(ne)-272(b)28(y)1(\\252y)83(,)-271(to)-271(je)-272(k)56(\\241)-28(p)1(i\\241)-272(w)28(e)-272(wyw)28(arz)-1(e)-271(z)-272(olsz)-1(yn)29(y)83(,)-271(\\273)-1(e)-271(i)-272(r)1(o)-28(dzona)-271(matk)55(a)]TJ -27.879 -13.549 Td[(p)-27(ote)-1(m)-295(n)1(ie)-295(rozp)-27(oz)-1(n)1(a,)-295(za\\261)-295(c)-1(eg\\252\\241)-295(\\261c)-1(iera)-55(j\\241)-294(ja\\273e)-295(do)-295(k)28(o\\261c)-1(i)-294(te)-295(miejsc)-1(a,)-294(k)56(a)-56(j)-294(pr)1(z)-1(y)-294(c)27(h)1(rz)-1(cie)]TJ 0 -13.549 Td[(Oleje)-333(\\261)-1(wi\\246te)-334(k\\252ad)1(li)-333(na)-333(nie,)-333(i)-333(pr)1(os)-1(to)-333(w)-334(d)1(iabl)1(\\246)-1(ta)-333(pr)1(z)-1(em)-1(i)1(e)-1(n)1(ia)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[({)-330(A)-329(p)-27(ono)-330(t)1(akie)-330(cz)-1(ary)-329(i)-329(z)-1(ama)28(wiania)-329(p)-27(o)-1(t)1(ra\\014\\241,)-329(ja\\273e)-330(strac)27(h)-329(m\\363)28(w)-1(i)1(\\242)-1(!)-329({)-330(p)1(isn\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(kt\\363r)1(a\\261)-1(.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(n)1(iec)27(h)28(b)28(y)-333(ci\\246)-334(o)-28(c)28(h)28(uc)28(ha\\252a,)-333(a)-333(ju\\273)-333(b)28(y)-333(c)-1(i)-333(w)28(\\241s)-1(y)-333(wyros\\252y)-333(na)-333(\\252okie\\242)-1(.)]TJ 0 -13.549 Td[({)-249(Pr)1(z)-1(e\\261)-1(miew)27(acie!...)-249(O)1(p)-28(o)28(wiad)1(a)-56(j\\241,)-248(\\273)-1(e)-249(c)27(h\\252op)1(u)-249(ze)-250(s\\252upskiej)-249(p)1(ara\\014)1(i,)-249(c)-1(o)-249(i)1(c)27(h)-249(p)-27(ono)]TJ -27.879 -13.549 Td[(wysz)-1(cz)-1(u)1(\\252)-370(psami,)-370(to)-369(Cyganic)28(ha)-369(jeno)-370(mign)1(\\246)-1(\\252a)-370(j)1(akim\\261)-370(lu)1(s)-1(terki)1(e)-1(m)-370(p)1(rz)-1(ed)-369(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)]TJ 0 -13.549 Td[(a)-333(z)-1(ar)1(az)-334(c)-1(a\\252ki)1(e)-1(m)-334(zani)1(e)-1(wid)1(z)-1(ia\\252.)]TJ 27.879 -13.55 Td[({)-333(I)-334(p)-27(o)-28(d)1(obno)-333(lu)1(dzi,)-333(w)-334(co)-334(c)28(hc\\241,)-333(przem)-1(ieni)1(a)-56(j)1(\\241,)-334(n)1(a)28(w)27(et)-334(w)28(e)-334(zwie)-1(r)1(z)-1(aki)1(.)]TJ 0 -13.549 Td[({)-333(Kto)-333(s)-1(i\\246)-333(s)-1(p)1(ije,)-333(te)-1(n)-333(si\\246)-334(sam)-334(n)1(a)-56(j)1(le)-1(p)1(iej)-333(w)27(e)-333(\\261)-1(win)1(i\\246)-334(pr)1(z)-1(em)-1(i)1(e)-1(n)1(ia.)]TJ 0 -13.549 Td[({)-304(Hale,)-304(a)-305(t)1(e)-1(n)-304(gosp)-27(o)-28(darz)-304(z)-305(M)1(o)-28(dli)1(c)-1(y)84(,)-304(c)-1(o)-304(to)-304(\\252oni)-304(n)1(a)-304(o)-28(dp)1(u\\261c)-1(ie)-304(b)-28(e\\252,)-304(ni)1(e)-305(\\252az)-1(i)1(\\252)-305(to)]TJ -27.879 -13.549 Td[(na)-333(cz)-1(w)28(orak)56(ac)27(h)1(,)-334(n)1(ie)-334(sz)-1(cze)-1(k)56(a\\252?...)]TJ 27.879 -13.549 Td[({)-333(Z\\252)-1(y)-333(go)-333(op)-27(\\246)-1(ta\\252,)-333(pr)1(z)-1(ec)-1(i)1(e)-1(k)-333(d)1(obro)-27(dzie)-1(j)-333(wyp)-27(\\246dzali)-333(z)-334(ni)1(e)-1(go)-333(diab)1(\\252a.)]TJ 0 -13.549 Td[({)-333(Je)-1(zu,)-333(\\273e)-334(to)-333(s)-1(\\241)-333(na)-333(\\261w)-1(i)1(e)-1(cie)-334(taki)1(e)-334(s)-1(p)1(ra)28(wy)83(,)-333(j)1(a\\273)-1(e)-334(sk)28(\\363ra)-333(c)-1(i)1(e)-1(r)1(pni)1(e)-1(!.)1(..)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(z\\252)-1(e)-333(w)-1(sz\\246)-1(d)1(y)-334(si\\246)-334(cz)-1(ai)1(,)-333(jak)-333(ten)-333(w)-1(i)1(lk)-333(kiele)-334(o)28(wie)-1(c.)]TJ 0 -13.549 Td[(T)83(rw)28(oga)-386(wion)1(\\246)-1(\\252a)-386(p)1(rze)-1(z)-386(se)-1(rca,)-385(\\273)-1(e)-386(s)-1(k)1(up)1(i\\252y)-386(si\\246)-386(barzej,)-385(a)-386(Witek)-386(r)1(oz)-1(d)1(ygotan)28(y)]TJ -27.879 -13.549 Td[(strac)27(h)1(e)-1(m)-333(c)-1(ic)28(ho)-333(s)-1(ze)-1(p)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(A)-334(u)-333(n)1(as)-334(te\\273)-334(cos)-1(ik)-333(strasz)-1(y)84(...)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(\\242)-333(b)-28(ele)-334(cz)-1(ego!)-333({)-334(p)-27(o)28(ws)-1(ta\\252a)-333(na)-333(ni)1(e)-1(go)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.55 Td[({)-451(\\221)1(m)-1(i)1(a\\252)-1(b)29(ym)-451(to,)-451(k)1(ie)-1(j)-450(c)27(h)1(o)-28(d)1(z)-1(i)-450(c)-1(osik)-451(p)-27(o)-451(sta)-56(j)1(ni,)-450(obr)1(ok)28(\\363)28(w)-451(przysypu)1(je,)-451(k)28(on)1(ie)]TJ -27.879 -13.549 Td[(r\\273\\241...)-234(i)-235(za)-235(br)1(\\363g)-235(c)27(h)1(o)-28(dzi,)-234(b)-28(o)-234(w)-1(i)1(dzia\\252e)-1(m,)-235(j)1(ak)-235(\\212ap)1(a)-235(tam)-235(lec)-1(i)1(a\\252)-1(,)-234(w)27(ar)1(c)-1(za\\252,)-235(kr)1(\\246)-1(ci\\252)-235(ogon)1(e)-1(m)]TJ\nET\nendstream\nendobj\n1483 0 obj <<\n/Type /Page\n/Contents 1484 0 R\n/Resources 1482 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1482 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1488 0 obj <<\n/Length 8821      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(464)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(i)-231(\\252)-1(asi\\252)-231(s)-1(i\\246,)-232(a)-231(nik)28(og\\363)-55(j)-231(nie)-232(b)28(y)1(\\252o...)-231(T)83(o)-232(p)-27(e)-1(wn)1(ikiem)-232(Kub)-27(o)28(w)27(a)-231(du)1(s)-1(za)-232(p)1(rz)-1(y)1(c)27(ho)-27(dzi...)1({)-232(do)-27(da\\252)]TJ 0 -13.549 Td[(cis)-1(ze)-1(j)-332(ogl\\241da)-55(j\\241c)-334(si\\246)-334(n)1(a)-334(wsz)-1(ystki)1(e)-334(s)-1(tr)1(on)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Kub)-27(o)28(w)27(a)-333(du)1(s)-1(za!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252)-1(a)-333(J\\363zk)56(a)-334(\\273e)-1(gn)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(raz)-334(p)-27(o)-333(raz.)]TJ 0 -13.549 Td[(Zatrz\\246)-1(s\\252y)-358(si\\246)-358(w)-1(sz)-1(y)1(s)-1(tki)1(e)-1(,)-357(m)-1(r)1(\\363z)-359(p)1(rz)-1(esz)-1(ed\\252)-358(k)28(o\\261c)-1(i,)-357(a)-358(kiej)-358(d)1(rz)-1(wi)-358(j)1(akie\\261)-359(skr)1(z)-1(yp)1(-)]TJ -27.879 -13.549 Td[(n\\246\\252y)83(,)-333(ze)-1(r)1(w)27(a\\252y)-333(si\\246)-334(z)-334(kr)1(z)-1(y)1(kiem)-1(.)-333(T)83(o)-333(Hank)56(a)-333(s)-1(tan)1(\\246)-1(\\252a)-333(w)-334(p)1(rogu)1(.)]TJ 27.879 -13.55 Td[({)-333(Pietrek,)-333(a)-333(k)55(a)-55(j)-333(te)-334(Cygan)28(y)-333(sto)-56(j)1(\\241?)]TJ 0 -13.549 Td[({)-333(M\\363)28(wili)-333(w)-334(k)28(o\\261c)-1(i)1(e)-1(le,)-333(\\273)-1(e)-333(s)-1(iedz\\241)-333(w)-334(les)-1(i)1(e)-334(z)-1(a)-333(Boryn)1(o)27(wym)-333(krzy\\273e)-1(m.)]TJ 0 -13.549 Td[({)-333(T)83(rza)-334(str\\363\\273o)28(w)27(a\\242)-334(w)-333(no)-27(c)-1(y)84(,)-333(b)28(yc)27(h)-333(cz)-1(ego)-333(nie)-333(w)-1(y)1(pro)28(w)28(adzili.)]TJ 0 -13.549 Td[({)-333(W)-333(blisk)28(o\\261c)-1(i)-333(p)-27(ono)-333(nie)-333(krad)1(n\\241.)]TJ 0 -13.549 Td[({)-347(Jak)-347(si\\246)-347(im)-347(ud)1(a,)-347(dw)28(a)-347(roki)-346(te)-1(m)28(u)-347(te\\273)-347(tam)-348(stali,)-346(a)-347(Sosz)-1(e)-347(mac)-1(ior)1(k)28(\\246)-348(wzi\\246)-1(l)1(i...)]TJ -27.879 -13.549 Td[(Nie)-428(trza)-428(s)-1(i\\246)-428(na)-428(to)-428(spu)1(s)-1(zc)-1(za\\242)-1(!)-428({)-428(ostrze)-1(g\\252a)-428(Han)1(k)55(a)-428({)-428(i)-428(ki)1(e)-1(j)-427(s)-1(i\\246)-428(dziew)27(cz)-1(yn)29(y)-428(roze)-1(-)]TJ 0 -13.55 Td[(sz)-1(\\252y)84(,)-406(piln)1(o)28(w)27(a\\252a)-406(c)27(h)1(\\252opak)28(\\363)28(w)-1(,)-406(b)29(y)-406(z)-1(a)-406(sob\\241)-406(dob)1(rze)-407(p)-27(oz)-1(am)28(yk)55(al)1(i)-406(ob)-28(or)1(\\246)-407(i)-406(sta)-56(j)1(ni\\246,)-406(z)-1(a\\261)]TJ 0 -13.549 Td[(p)-27(o)27(wr)1(ac)-1(a)-55(j\\241c)-334(za)-56(j)1(rza\\252)-1(a)-333(na)-333(o)-55(jco)27(w)28(\\241)-333(s)-1(tr)1(on\\246,)-334(czy)-334(j)1(u\\273)-333(jes)-1(t)-333(Jagusia.)]TJ 27.879 -13.549 Td[({)-436(Sk)28(o)-28(cz)-437(n)1(o,)-436(J\\363z)-1(k)56(a,)-436(p)-27(o)-437(Jagn)1(\\246)-1(,)-436(n)1(iec)27(h)-436(p)1(rz)-1(y)1(c)27(ho)-27(dzi)-436(do)-436(c)27(h)1(a)-1(\\252u)1(p)28(y)84(,)-436(nie)-437(osta)28(wi\\246)]TJ -27.879 -13.549 Td[(dzisia)-56(j)-332(drzwi)-333(na)-333(c)-1(a\\252\\241)-333(no)-28(c)-333(w)-1(y)1(w)27(art)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Ale)-295(J\\363z)-1(k)56(a)-295(ryc)28(h\\252o)-295(oz)-1(n)1(a)-56(jmi\\252a,)-295(\\273e)-296(u)-295(Domin)1(ik)28(o)27(w)28(ej)-295(c)-1(i)1(e)-1(mno)-295(i)-295(na)-295(ws)-1(i)-295(j)1(u\\273)-296(p)1(ra)28(wie)]TJ -27.879 -13.55 Td[(ws)-1(z\\246)-1(d)1(z)-1(i)1(e)-334(\\261)-1(p)1(i\\241.)]TJ 27.879 -13.549 Td[({)-366(Nie)-366(puszc)-1(z\\246)-367(lata)28(w)28(c)-1(a,)-366(n)1(iec)27(h)-366(se)-367(d)1(o)-366(rana)-366(p)-27(os)-1(i)1(e)-1(d)1(z)-1(i)-366(n)1(a)-366(dw)28(orz)-1(e)-366({)-366(w)-1(y)1(gra\\273a\\252)-1(a)]TJ -27.879 -13.549 Td[(zas)-1(u)28(w)28(a)-56(j)1(\\241c)-334(dr)1(z)-1(wi.)]TJ 27.879 -13.549 Td[(Mu)1(s)-1(i)1(a\\252)-1(o)-394(te)-1(\\273)-395(b)29(y\\242)-395(ju)1(\\273)-395(bard)1(z)-1(o)-394(p)-28(\\363\\271no,)-394(kiej)-394(p)-28(os\\252ys)-1(za)28(ws)-1(zy)-395(tar)1(ganie)-395(d)1(rzw)-1(i)1(am)-1(i)]TJ -27.879 -13.549 Td[(zw)-1(l)1(e)-1(k\\252a)-267(s)-1(i\\246)-267(ot)27(wiera\\242)-268(i)-267(a\\273)-268(si\\246)-268(c)-1(of)1(n\\246\\252a,)-268(t)1(ak)-268(o)-28(d)-267(Jagn)29(y)-268(b)1(uc)28(hn)1(\\246)-1(\\252o)-268(gor)1(z)-1(a\\252k)56(\\241.)-267(Nie)-1(zgorze)-1(j)]TJ 0 -13.55 Td[(m)27(u)1(s)-1(i)1(a\\252a)-230(b)29(y\\242)-230(n)1(apita,)-229(gd)1(y\\273)-230(d)1(\\252ugo)-229(mac)-1(a\\252a)-229(z)-1(a)-229(kl)1(am)-1(k)56(\\241)-229(i)-229(s)-1(\\252y)1(c)27(ha\\242)-229(b)28(y\\252o)-229(z)-230(izb)28(y)-229(p)-27(ot)28(yk)56(anie)]TJ 0 -13.549 Td[(si\\246)-334(o)-333(s)-1(p)1(rz\\246)-1(t)28(y)-333(i)-333(to,)-333(\\273)-1(e)-334(j)1(ak)-333(s)-1(ta\\252a,)-333(b)1(uc)27(h)1(n\\246\\252a)-334(si\\246)-334(n)1(a)-333(\\252)-1(\\363\\273k)28(o.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(e)-1(!)-333(\\233e)-334(i)-333(n)1(a)-334(o)-28(d)1(pu)1(\\261)-1(cie)-334(galan)1(c)-1(i)1(e)-1(j)-333(b)29(y)-334(si\\246)-334(n)1(ie)-334(u)1(racz)-1(y\\252a,)-333(n)1(o,)-334(n)1(o!..)1(.)]TJ 0 -13.549 Td[(Ale)-366(ju)1(\\273)-367(ta)-366(no)-27(c)-367(ni)1(e)-367(mia\\252a)-366(pr)1(z)-1(ej\\261\\242)-367(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-366(gd)1(y\\273)-366(na)-366(s)-1(am)28(ym)-366(\\261)-1(witan)1(iu)-366(za-)]TJ -27.879 -13.549 Td[(trz\\241s\\252)-383(s)-1(i\\246)-383(na)-382(w)-1(si)-383(tak)1(i)-383(wrzas)-1(k)-383(i)-382(lame)-1(n)28(t)1(,)-383(\\273)-1(e)-383(kt)1(o)-383(jes)-1(zc)-1(ze)-383(s)-1(p)1(a\\252)-1(,)-382(w)-383(k)28(os)-1(zuli)-382(\\261)-1(p)1(ies)-1(znie)]TJ 0 -13.55 Td[(wybi)1(e)-1(ga\\252)-333(na)-333(dr)1(og\\246)-334(m)27(y\\261l\\241c,)-333(i\\273)-334(si\\246)-334(k)56(a)-56(j)-333(p)1(ali.)1(..)]TJ 27.879 -13.549 Td[(T)83(o)-293(B)-1(alcerk)28(o)28(w)27(a)-293(z)-294(c)-1(\\363r)1(k)55(ami)-293(dar)1(\\252)-1(a)-293(s)-1(i)1(\\246)-294(wnieb)-28(og\\252osy)83(,)-293(\\273e)-294(jej)-293(k)28(onia)-293(w)-1(y)1(pro)28(w)28(adzili)]TJ -27.879 -13.549 Td[(z\\252)-1(o)-27(dzie)-1(j)1(e)-1(.)]TJ 27.879 -13.549 Td[(W)-399(mig)-400(ca\\252a)-400(wie\\261)-400(si\\246)-400(zle)-1(cia\\252a)-399(prze)-1(d)-399(c)28(ha\\252u)1(p)-28(\\246,)-399(a)-400(on)1(e)-400(rozm)-1(am\\252ane)-400(op)-27(o)28(wia-)]TJ -27.879 -13.549 Td[(da\\252y)-393(niepr)1(z)-1(yt)1(om)-1(n)1(ie)-394(p)-28(o\\261r\\363)-28(d)-393(p)1(\\252)-1(acz\\363)27(w)-394(i)-393(lame)-1(n)28(t\\363)28(w,)-394(j)1(ak)28(o)-394(Mar)1(ys)-1(i)1(a)-394(p)-27(os)-1(z\\252a)-394(o)-394(\\261w)-1(i)1(c)-1(ie)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(s)-1(yp)1(a\\242)-274(obr)1(oku,)-273(a)-273(tu)-273(dr)1(z)-1(wi)-273(w)-1(y)1(w)27(ar)1(te)-1(,)-273(sta)-56(j)1(nia)-273(pu)1(s)-1(ta)-273(i)-273(k)28(onia)-273(pr)1(z)-1(y)-273(\\273\\252)-1(ob)1(ie)-274(n)1(ie)-274(ma.)]TJ 27.879 -13.549 Td[({)-285(Ratuj)1(,)-285(Jez)-1(u)-284(m)-1(i)1(\\252)-1(o\\261ciwy!)-285(ratu)1(jcie,)-285(lu)1(dz)-1(i)1(e)-1(,)-285(r)1(atuj)1(c)-1(i)1(e)-1(!)-285({)-285(r)1(yc)-1(za\\252a)-285(s)-1(tar)1(a)-285(dr)1(\\241c)-286(si\\246)]TJ -27.879 -13.549 Td[(za)-334(\\252eb)-333(i)-333(t\\252uk)56(\\241c)-334(si\\246)-334(o)-333(p\\252ot)28(y)-333(kiej)-333(ten)-333(ptak)-333(sp)-28(\\246tan)28(y)84(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(le)-1(cia\\252)-446(so\\252t)28(ys,)-446(p)-27(o)-446(w)28(\\363)-56(j)1(ta)-446(te\\273)-446(p)-27(os)-1(\\252ali)1(,)-446(al)1(e)-446(go)-446(w)-446(d)1(om)27(u)-445(n)1(ie)-446(b)28(y\\252o,)-445(z)-1(j)1(a)28(w)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-330(dop)1(iero)-330(w)-329(par)1(\\246)-330(pacierz)-1(y)84(,)-329(jeno)-329(\\273)-1(e)-330(si\\246)-330(l)1(e)-1(d)1(w)-1(i)1(e)-330(na)-329(nogac)28(h)-329(utrzyma\\252:)-329(napi)1(t)28(y)-330(b)29(y\\252,)]TJ 0 -13.549 Td[(roze)-1(span)29(y)-329(i)-329(zgo\\252a)-329(ni)1(e)-1(p)1(rz)-1(y)1(tom)-1(n)29(y)83(,)-328(b)-28(o)-329(j)1(\\241\\252)-329(c)-1(osik)-328(m)-1(amrota\\242)-329(i)-329(l)1(udzi)-329(r)1(oz)-1(gan)1(ia\\252,)-329(a\\273)-329(go)]TJ 0 -13.55 Td[(so\\252)-1(t)28(y)1(s)-334(m)27(u)1(s)-1(ia\\252)-333(usun)1(\\241\\242)-334(z)-334(o)-28(czu.)]TJ 27.879 -13.549 Td[(Ale)-349(i)-348(tak)-348(m)-1(a\\252o)-348(kto)-349(zw)28(a\\273)-1(a\\252)-349(n)1(a)-349(n)1(iego)-349(w)-349(t)28(ym)-349(ci\\246\\273)-1(k)1(im)-349(s)-1(t)1(rapi)1(e)-1(n)1(iu,)-348(c)-1(o)-348(jak)-348(k)56(a-)]TJ -27.879 -13.549 Td[(mie)-1(n)1(ie)-299(pr)1(z)-1(y)1(w)27(ali)1(\\252)-1(o)-298(ws)-1(zys)-1(tk)1(ie)-299(du)1(s)-1(ze)-1(;)-298(s)-1(\\252u)1(c)27(h)1(ali)-299(w)28(c)-1(i)1(\\241\\273)-299(op)-28(o)28(wiada\\253)-298(d)1(rep)-28(cz)-1(\\241c)-299(ze)-299(s)-1(ta)-55(jn)1(i)]TJ 0 -13.549 Td[(na)-351(d)1(rog\\246)-352(i)-351(z)-351(na)28(wrotem)-1(,)-351(n)1(ie)-352(wiedz\\241c)-1(,)-351(co)-351(p)-28(o)-27(c)-1(z\\241\\242)-1(,)-351(b)-27(ez)-1(rad)1(ni)-351(i)-351(d)1(o)-351(c)-1(n)1(a)-352(wystrasz)-1(eni)1(,)]TJ 0 -13.549 Td[(a\\273)-334(kt)1(\\363ra\\261)-334(rzuci\\252a)-333(w)-334(g\\252os:)]TJ 27.879 -13.55 Td[({)-333(T)83(o)-334(cyga\\253)1(s)-1(k)56(a)-333(rob)-27(ota!)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(w)-333(les)-1(ie)-333(s)-1(to)-55(j\\241!)-333(p)-27(e)-1(n)1(e)-1(tr)1(o)27(w)28(a\\252y)-333(w)27(cz)-1(or)1(a)-56(j)1(!)]TJ\nET\nendstream\nendobj\n1487 0 obj <<\n/Type /Page\n/Contents 1488 0 R\n/Resources 1486 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1486 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1491 0 obj <<\n/Length 9155      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(465)]TJ -330.353 -35.866 Td[({)-333(Nie)-334(kto)-333(d)1(rugi)-333(u)1(krad)1(\\252)-1(,)-333(n)1(ie!)-334({)-333(ze)-1(r)1(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(bu)1(rzliw)28(e)-334(g\\252os)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Le)-1(cie\\242)-334(do)-333(ni)1(c)27(h)-333(i)-333(o)-28(debr)1(a\\242)-1(,)-333(a)-333(s)-1(p)1(ra\\242)-334(z\\252o)-28(d)1(z)-1(iej\\363)28(w!)-333({)-334(wrzasn\\246\\252)-1(a)-333(Gu)1(lbaso)28(w)27(a.)]TJ 0 -13.549 Td[({)-333(Na)-334(\\261mie)-1(r)1(\\242)-334(z)-1(ak)56(atr)1(upi)1(\\242)-334(z)-1(a)-333(tak)56(\\241)-333(krzywd\\246!)]TJ 0 -13.549 Td[(W)84(rz)-1(ask)-287(b)1(uc)27(h)1(n\\241\\252)-287(ogromn)28(y)-287(k)1(u)-287(ws)-1(c)28(ho)-28(d)1(z)-1(\\241cem)27(u)-287(w\\252a\\261nie)-287(s)-1(\\252o\\253)1(c)-1(u)1(,)-287(k)28(o\\252ki)-287(zac)-1(z\\246)-1(\\252y)]TJ -27.879 -13.549 Td[(rw)28(a\\242)-380(z)-380(p\\252ot\\363)28(w,)-379(trz\\241c)27(ha\\242)-380(p)1(i\\246)-1(\\261ciam)-1(i)1(,)-380(k)1(r\\246)-1(ci\\242)-380(si\\246)-380(w)-380(k)28(\\363\\252k)28(o,)-379(to)-380(gd)1(z)-1(i)1(e)-1(sik)-379(ju\\273)-380(n)1(apr)1(z)-1(\\363)-28(d)]TJ 0 -13.55 Td[(wybi)1(e)-1(ga\\242)-334(z)-333(krzykiem,)-334(k)1(ie)-1(j)-332(no)28(w)27(a)-333(spra)28(w)28(a)-334(si\\246)-334(wyd)1(a\\252a.)]TJ 27.879 -13.549 Td[(So\\252t)28(ysk)56(a)-334(z)-333(p\\252ac)-1(zem)-334(pr)1(z)-1(yb)1(ieg\\252a,)-334(\\273e)-334(i)-333(im)-333(w)27(\\363z)-334(u)1(krad)1(li)-333(z)-334(p)-27(o)-28(dw)28(\\363rza.)]TJ 0 -13.549 Td[(Os\\252up)1(ie)-1(l)1(i,)-287(j)1(ak)-286(kieb)28(y)-287(p)1(ioru)1(n)-286(trzas)-1(n)1(\\241\\252)-287(gd)1(z)-1(ies)-1(i)1(k)-287(z)-287(b)1(lisk)28(o\\261)-1(ci,)-286(\\273)-1(e)-287(d)1(\\252ugi)-286(c)-1(zas)-287(jeno)]TJ -27.879 -13.549 Td[(wz)-1(d)1(yc)27(h)1(ali)-333(rozw)27(o)-28(d)1(z)-1(\\241c)-333(r\\246c)-1(e)-334(i)-333(sp)-28(ogl)1(\\241da)-55(j\\241c)-334(n)1(a)-334(sie)-334(ze)-334(zgroz)-1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Koni)1(a)-334(z)-334(w)28(oze)-1(m)-334(u)1(krad)1(\\252y)83(,)-333(n)1(o,)-334(t)1(e)-1(go)-333(jes)-1(zc)-1(ze)-334(w)28(e)-334(ws)-1(i)-333(n)1(ie)-334(b)28(yw)28(a\\252o.)]TJ 0 -13.549 Td[({)-333(Jak)56(a\\261)-334(k)56(ara)-333(s)-1(p)1(a)-1(d)1(a)-333(na)-333(Lip)-27(c)-1(e.)]TJ 0 -13.55 Td[({)-333(I)-334(co)-334(t)28(y)1(dzie)-1(\\253)-333(gor)1(z)-1(ej!)]TJ 0 -13.549 Td[({)-333(Prz\\363)-28(d)1(z)-1(i)-333(b)-27(e)-1(z)-333(c)-1(a\\252e)-334(rok)1(i)-333(t)27(y)1(lac)27(h)1(na)-333(s)-1(i)1(\\246)-334(nie)-333(z)-1(d)1(arza)-1(\\252o,)-333(co)-334(t)1(e)-1(raz)-333(przez)-334(m)-1(i)1(e)-1(si\\241c.)]TJ 0 -13.549 Td[({)-320(A)-320(n)1(a)-320(cz)-1(ym)-320(si\\246)-320(to)-320(jes)-1(zcz)-1(ec)27(h)-319(s)-1(k)28(o\\253)1(c)-1(zy)83(,)-319(na)-320(cz)-1(y)1(m)-1(!)-319({)-320(p)-28(osze)-1(p)1(t)27(y)1(w)27(a\\252y)-320(t)1(rw)27(o\\273ni)1(e)-1(.)]TJ 0 -13.549 Td[(Naraz)-223(r)1(z)-1(u)1(c)-1(il)1(i)-223(si\\246)-223(z)-1(a)-222(s)-1(o\\252t)28(yse)-1(m)-223(d)1(o)-223(Balce)-1(rk)28(o)28(w)28(e)-1(go)-222(s)-1(ad)1(u,)-222(k)56(a)-56(j)-222(widn)1(e)-223(b)28(y\\252y)-223(k)28(o\\253)1(s)-1(k)1(ie)]TJ -27.879 -13.549 Td[(\\261lady)84(,)-345(z)-1(n)1(ac)-1(zne)-346(p)-27(o)-346(r)1(os)-1(ie)-345(i)-346(n)1(a)-346(\\261wie)-1(\\273ej)-345(z)-1(iemi,)-345(a\\273)-346(do)-345(s)-1(o\\252t)28(yso)28(w)27(ej)-345(s)-1(to)-27(do\\252y;)-345(tam)-346(k)28(on)1(ia)]TJ 0 -13.55 Td[(wpr)1(z)-1(\\246gli)-478(do)-478(w)27(ozu)-478(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(e)-479(i)-479(k)28(o\\252u)1(j\\241c)-479(p)-27(o)-478(rolac)27(h)1(,)-478(w)-1(y)1(jec)27(hal)1(i)-479(k)28(o\\252o)-478(m)-1(\\252y)1(narza)-479(n)1(a)]TJ 0 -13.549 Td[(dr)1(og\\246)-1(,)-333(b)1(ie)-1(gn)1(\\241c)-1(\\241)-333(do)-333(W)84(oli.)]TJ 27.879 -13.549 Td[(P)28(\\363\\252)-414(ws)-1(i)-413(p)-28(osz)-1(\\252o)-414(rozpat)1(ruj)1(\\241c)-415(w)-414(c)-1(i)1(c)27(ho\\261ci)-414(\\261)-1(lad)1(y)83(,)-413(kt\\363re)-414(dop)1(ie)-1(r)1(o)-414(p)-28(o)-27(d)-414(s)-1(t)1(ogam)-1(i)]TJ -27.879 -13.549 Td[(spalon)28(y)1(m)-1(i,)-341(p)1(rz)-1(y)-341(skr\\246c)-1(ie)-342(n)1(a)-342(P)29(o)-28(dles)-1(i)1(e)-1(,)-341(ur)1(w)27(a\\252y)-341(s)-1(i\\246)-342(z)-342(n)1(ag\\252a,)-342(\\273e)-342(ni)1(e)-343(sp)-27(os)-1(\\363b)-341(ic)28(h)-342(b)29(y\\252o)]TJ 0 -13.549 Td[(o)-28(d)1(s)-1(zuk)56(a\\242.)]TJ 27.879 -13.55 Td[(Ale)-303(ta)-304(k)1(radzie\\273)-304(tak)-303(stur)1(b)-28(o)28(w)28(a\\252a)-304(wsz)-1(ystki)1(c)27(h,)-303(\\273e)-304(c)28(ho)-28(\\242)-303(dzie)-1(\\253)-302(b)28(y\\252)-303(bar)1(dzo)-304(cud)1(-)]TJ -27.879 -13.549 Td[(n)28(y)84(,)-338(ma\\252o)-338(kto)-337(w)-1(zi\\241\\252)-338(si\\246)-338(do)-337(rob)-27(ot)27(y)1(:)-338(\\252azili)-338(p)-27(o)28(w)27(ar)1(z)-1(eni)1(,)-338(\\252amali)-338(r)1(\\246)-1(ce)-339(u)1(\\273)-1(al)1(a)-56(j)1(\\241c)-339(si\\246)-338(nad)]TJ 0 -13.549 Td[(Balc)-1(erk)28(o)28(w)28(\\241,)-334(p)1(rze)-1(j)1(m)27(u)1(j\\241c)-334(si\\246)-334(coraz)-334(wi\\246ksz)-1(y)1(m)-334(s)-1(tr)1(ac)27(h)1(e)-1(m)-334(o)-333(sw)27(\\363)-55(j)-333(dob)28(y)1(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(Za\\261)-361(Balce)-1(r)1(k)28(o)27(w)28(a)-360(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-360(p)1(rze)-1(d)-360(sta)-55(jni)1(\\241,)-360(jakb)29(y)-360(pr)1(z)-1(y)-360(t)28(ym)-360(k)56(atafal)1(ku,)-360(zapu)1(-)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252a)-334(z)-333(p\\252ac)-1(zu)-333(i)-333(ledwie)-334(j)1(u\\273)-334(zip)1(i\\241c)-1(,)-333(wyb)1(uc)28(ha\\252a)-334(n)1(iekiedy)-333(w\\261)-1(r)1(\\363)-28(d)-333(j\\246k)28(\\363)28(w:)]TJ 27.879 -13.55 Td[({)-371(O)-370(m)-1(\\363)-55(j)-370(k)55(asz)-1(t)1(an)-371(j)1(e)-1(d)1(yn)28(y)84(,)-371(mo)-56(j)1(e)-371(k)28(onisk)28(o)-371(k)28(o)-28(c)28(hane,)-371(m\\363)-55(j)-371(p)1(arobk)1(u)-371(n)1(a)-56(j)1(le)-1(p)1(s)-1(zy!)]TJ -27.879 -13.549 Td[(A)-357(to)-357(m)28(u)-357(dop)1(iero)-357(na)-356(dz)-1(i)1(e)-1(si\\241t)28(y)-357(rok)-356(s)-1(z\\252o,)-357(sam)-1(am)-357(go)-357(o)-28(d)-356(\\271)-1(rebi)1(\\246)-1(cia)-357(wyc)27(h)1(o)28(w)27(a\\252a,)-357(j)1(ak)]TJ 0 -13.549 Td[(to)-323(dziec)-1(i)1(\\241tk)28(o)-323(ro)-28(d)1(z)-1(on)1(e)-1(,)-323(d)1(y\\242)-324(w)-323(t)28(ym)-323(s)-1(am)28(ym)-324(r)1(oku)-323(si\\246)-323(ul\\241)-27(g\\252)-324(co)-323(i)-323(m\\363)-56(j)-323(S)1(tac)27(h)1(o!)-323(A)-323(c)-1(\\363\\273)]TJ 0 -13.549 Td[(m)27(y)-333(teraz)-333(s)-1(ierot)28(y)-333(p)-27(o)-28(c)-1(zni)1(e)-1(m)28(y)-334(b)-27(ez)-334(c)-1(i)1(e)-1(b)1(ie)-1(,)-333(co?)]TJ 27.879 -13.549 Td[(Za)28(w)27(o)-28(d)1(z)-1(i)1(\\252a)-402(tak)-402(\\273a\\252o\\261)-1(l)1(iwie)-1(,)-401(i\\273)-402(co)-402(mi\\246)-1(tsi)-401(p\\252ak)56(ali)-402(z)-402(n)1(i\\241)-402(r)1(az)-1(em)-402(roz\\273)-1(ala)-55(j\\241c)-402(si\\246)]TJ -27.879 -13.55 Td[(nad)-376(s)-1(tr)1(at\\241,)-377(gdy)1(\\273)-378(b)-27(e)-1(z)-377(k)28(onia)-377(to)-377(j)1(ak)-377(pr)1(z)-1(ez)-378(r\\241k)1(,)-377(z)-1(w\\252as)-1(zcz)-1(a)-377(teraz)-378(n)1(a)-377(z)-1(wies)-1(n)1(\\246)-378(i)-377(k)1(ie)-1(j)]TJ 0 -13.549 Td[(c)27(h)1(\\252op)-28(\\363)28(w)-333(nie)-334(b)29(y\\252o.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-229(c)-1(o)-229(s\\241s)-1(i)1(adki)-229(ob)1(s)-1(iad)1(\\252y)-229(j\\241,)-229(z)-229(c)-1(a\\252ego)-230(se)-1(r)1(c)-1(a)-229(p)-27(o)-28(cie)-1(sz)-1(a)-55(j\\241c;)-229(a)-229(p)-28(osp)-27(\\363lnie)-229(ws)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(mina\\252y)-333(k)56(as)-1(ztana)-333(c)27(h)29(w)27(al\\241c)-333(go)-334(n)1(iem)-1(a\\252o.)]TJ 27.879 -13.549 Td[({)-333(Pi\\246kn)28(y)-333(b)28(y)1(\\252)-334(k)28(o\\253)1(,)-334(k)1(rze)-1(p)1(ki)-333(jes)-1(zc)-1(ze)-1(,)-333(k)1(ie)-1(j)-333(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-333(\\252ago)-28(d)1(n)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Sk)28(op)1(a\\252)-334(mi)-333(c)27(h\\252op)1(ak)55(a,)-333(k)1(umo,)-333(ale)-334(p)-27(o)-334(p)1(ra)28(wdzie)-334(w)28(a\\252)-1(ac)28(h)-333(b)28(y\\252)-333(pr)1(z)-1(edn)1(i.)]TJ 0 -13.55 Td[({)-262(P)1(ra)28(wda,)-261(gru)1(d\\246)-262(mia\\252)-262(w)-261(kul)1(a)-1(sac)27(h)-261(i)-261(\\271dzie)-1(b)1(k)28(o)-262(\\261lepia\\252,)-261(ale)-262(za)27(wd)1(y)-262(cz)-1(terd)1(z)-1(i)1(e)-1(\\261c)-1(i)]TJ -27.879 -13.549 Td[(pap)1(ierk)28(\\363)28(w)-334(d)1(alib)28(y)-333(za)-334(n)1(iego.)]TJ 27.879 -13.549 Td[({)-333(A)-334(\\014)1(glo)28(w)27(a\\252)-333(kiej)-333(pi)1(e)-1(s,)-333(nie)-334(\\261ci\\241)-28(ga\\252)-333(to)-334(p)1(ierz)-1(y)1(n)-333(z)-334(p\\252ot\\363)28(w?)-334(co?)]TJ 0 -13.549 Td[({)-304(Szuk)56(a\\242)-304(takiego)-304(dru)1(giego,)-304(s)-1(zuk)56(a\\242!)-304({)-304(w)-1(y)1(rze)-1(k)56(a\\252y)-304(b)-27(ole)-1(j)1(\\241c)-1(o,)-304(n)1(ib)28(y)-303(nad)-304(j)1(akim\\261)]TJ -27.879 -13.549 Td[(umarl)1(akiem)-1(,)-263(a)-263(B)-1(al)1(c)-1(erk)28(o)28(w)27(a)-263(co)-264(sp)-28(o)-55(jr)1(z)-1(a\\252a)-263(na)-263(\\273)-1(\\252\\363b)1(,)-264(to)-263(j)1(\\241)-264(n)1(o)27(wy)-263(ryk)-263(wstrz\\241s)-1(a\\252)-263(i)-263(no)28(w)27(e)]TJ 0 -13.55 Td[(\\273a\\252)-1(o\\261cie)-253(c)28(h)28(wyta\\252y)-252(za)-252(gardziel)-252(i)-252(ta)-252(p)1(usta)-252(s)-1(ta)-55(jn)1(ia,)-252(ki)1(e)-1(j)-251(\\261)-1(wie\\273)-1(y)-252(gr)1(\\363b,)-252(b)1(ud)1(z)-1(i)1(\\252)-1(a)-252(p)1(am)-1(i)1(\\246)-1(\\242)]TJ 0 -13.549 Td[(strat)28(y)-401(nieo)-28(d)1(\\273)-1(a\\252o)28(w)27(an)1(e)-1(j)-401(i)-401(kr)1(z)-1(ywd)1(y)83(.)-401(Us)-1(p)-27(ok)28(oi\\252a)-401(s)-1(i)1(\\246)-402(dop)1(ie)-1(r)1(o,)-402(k)1(ie)-1(j)-401(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(li)1(,)-402(j)1(ak)28(o)]TJ\nET\nendstream\nendobj\n1490 0 obj <<\n/Type /Page\n/Contents 1491 0 R\n/Resources 1489 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1489 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1494 0 obj <<\n/Length 9944      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(466)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(so\\252)-1(t)28(y)1(s)-338(wz)-1(i)1(\\241\\252)-338(P)1(ie)-1(t)1(rk)56(a)-337(o)-28(d)-337(Han)1(ki,)-337(ksi\\246\\273)-1(ego)-337(W)83(alk)56(a,)-337(m\\252ynar)1(c)-1(zyk)56(a)-337(i)-337(p)-28(o)-55(jec)27(h)1(ali)-337(sz)-1(u)1(k)55(a\\242)]TJ 0 -13.549 Td[(u)-333(Cygan)1(\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(sz)-1(u)1(k)56(a)-56(j)-333(wiatr)1(u)-333(w)-334(p)-27(olu:)-333(k)1(to)-334(u)1(krad)1(nie,)-333(s)-1(c)28(ho)28(w)28(a)-334(\\252adn)1(ie.)]TJ 0 -13.549 Td[(Dob)1(rz)-1(e)-375(j)1(u\\273)-375(b)28(y\\252o)-375(p)-27(o)-28(d)-375(wiecz)-1(\\363r,)-374(kiej)-375(p)-27(o)28(w)-1(r)1(\\363)-28(cili)-375(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada)-55(j\\241c,)-375(\\273)-1(e)-375(ani)-374(\\261)-1(l)1(adu)]TJ -27.879 -13.549 Td[(ni)1(k)55(a)-55(j,)-333(j)1(akb)28(y)-333(k)56(am)-1(i)1(e)-1(\\253)-333(r)1(z)-1(u)1(c)-1(i\\252)-333(w)27(e)-333(w)27(o)-28(d)1(\\246)-1(.)]TJ 27.879 -13.55 Td[(W)84(\\363)-56(jt)-390(te\\273)-391(s)-1(i)1(\\246)-391(p)-28(ok)56(aza\\252)-391(w)27(e)-391(wsi)-391(i)-390(c)28(ho)-28(\\242)-391(j)1(u\\273)-391(mrok)-390(z)-1(ap)1(ada\\252,)-390(z)-1(ab)1(ra\\252)-391(so\\252t)28(ysa)-391(na)]TJ -27.879 -13.549 Td[(br)1(yk)28(\\246)-284(i)-283(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-283(don)1(ie)-1(\\261\\242)-284(stra\\273nik)28(om)-283(i)-283(k)56(ance)-1(lar)1(ii,)-283(a)-283(Balc)-1(erk)28(o)28(w)28(a)-284(z)-283(Marysi\\241)-283(p)-27(os)-1(z\\252y)]TJ 0 -13.549 Td[(na)-333(s\\241s)-1(iedn)1(ie)-334(wsie)-334(sz)-1(u)1(k)55(a\\242)-333(na)-333(s)-1(w)28(o)-56(j)1(\\241)-334(r)1(\\246)-1(k)28(\\246.)]TJ 27.879 -13.549 Td[(Ale)-331(w)-1(r)1(\\363)-28(c)-1(i)1(\\252y)-331(z)-332(ni)1(c)-1(zym,)-331(do)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-331(si\\246)-332(j)1(e)-1(n)1(o,)-331(\\273)-1(e)-331(p)-28(o)-331(in)1(s)-1(zyc)28(h)-331(w)-1(siac)28(h)-331(r\\363)28(wnie\\273)]TJ -27.879 -13.549 Td[(mno\\273y\\252y)-487(si\\246)-487(kr)1(adzie\\273)-1(e.)-487(Bez)-487(to)-487(n)1(a)-487(lu)1(dzi)-487(p)1(ad\\252o)-486(jes)-1(zc)-1(ze)-487(c)-1(i)1(\\246)-1(\\273s)-1(ze)-487(ud)1(r\\246c)-1(ze)-1(n)1(ie,)-487(b)-27(o)]TJ 0 -13.549 Td[(strac)27(h)-234(o)-236(d)1(ob)28(ytek,)-235(j)1(a\\273)-1(e)-235(w)27(\\363)-55(jt)-235(ustano)28(wi\\252)-235(s)-1(t)1(r\\363\\273)-1(e)-235(i)-235(w)-236(b)1(raku)-234(parob)1(k)28(\\363)28(w)-236(p)-27(o)-235(dwie)-235(k)28(obiet)28(y)]TJ 0 -13.55 Td[(w)28(e)-1(sp)-28(\\363\\252)-259(ze)-260(starszym)-1(i)-258(c)27(h\\252op)-27(cam)-1(i)-259(mia\\252y)-259(co)-259(n)1(o)-28(c)-260(ob)-27(c)27(h)1(o)-28(dzi\\242)-259(wie)-1(\\261)-259(i)-259(p)1(iln)1(o)27(w)28(a\\242)-1(,)-258(a)-259(opr)1(\\363)-28(c)-1(z)]TJ 0 -13.549 Td[(tego)-293(i)-292(w)-292(k)56(a\\273)-1(d)1(e)-1(j)-292(c)28(ha\\252u)1(pie)-292(z)-293(os)-1(ob)1(na)-292(cz)-1(u)28(w)28(ali,)-292(wsz)-1(ystki)1(e)-293(z)-1(a\\261)-292(dzie)-1(wki)-292(p)-27(osz)-1(\\252y)-292(spa\\242)-293(d)1(o)]TJ 0 -13.549 Td[(sta)-56(j)1(ni)-333(i)-333(ob)-28(\\363r)1(.)]TJ 27.879 -13.549 Td[(Jedn)1(ak)28(o)-285(i)-284(t)1(o)-285(n)1(ie)-285(p)-27(omog\\252o,)-284(a)-285(t)1(rw)27(oga)-284(j)1(e)-1(sz)-1(cz)-1(e)-284(bar)1(z)-1(ej)-284(ur)1(os)-1(\\252a,)-284(gd)1(y\\273)-285(mimo)-284(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(str\\363\\273o)27(w)28(a\\253)-239(z)-1(araz)-240(p)1(ierws)-1(ze)-1(j)-239(no)-27(c)-1(y)-239(Fili)1(p)-28(ce)-240(z)-1(za)-240(w)28(o)-28(dy)-239(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(e)-240(w)-1(y)1(pro)28(w)28(adzili)-239(m)-1(acior\\246)]TJ 0 -13.55 Td[(na)-333(op)1(ros)-1(i)1(e)-1(n)1(iu.)]TJ 27.879 -13.549 Td[(Pr)1(os)-1(to)-277(n)1(ie)-278(op)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242,)-277(c)-1(o)-277(si\\246)-278(z)-277(t\\241)-277(c)27(h)28(u)1(dziacz)-1(k)56(\\241)-277(wyrab)1(ia\\252o:)-277(tak)-277(rozpacz)-1(a\\252a,)]TJ -27.879 -13.549 Td[(\\273e)-334(i)-332(p)-28(o)-333(d)1(z)-1(i)1(e)-1(c)27(k)1(u)-333(n)1(ie)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\252ab)28(y)-332(c)-1(i)1(\\246)-1(\\273e)-1(j)1(,)-333(b)-27(o)-28(\\242)-333(to)-333(b)28(y\\252)-333(j)1(e)-1(j)-332(dob)29(yte)-1(k)-332(jedyn)29(y)83(,)-332(z)-1(a)-333(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(rac)28(ho)28(w)27(a\\252a)-264(si\\246)-264(prze)-1(\\273ywi\\242)-264(do)-264(\\273niw;)-264(r)1(yc)-1(za\\252a)-264(te)-1(\\273)-264(t\\252uk)56(\\241c)-264(s)-1(i)1(\\246)-265(o)-264(\\261c)-1(ian)29(y)83(,)-264(j)1(a\\273)-1(e)-264(s)-1(tr)1(ac)27(h)-263(b)28(y\\252o)]TJ 0 -13.549 Td[(pat)1(rz)-1(e\\242.)-291(Na)28(w)27(et)-291(d)1(o)-291(d)1(obro)-27(dzie)-1(j)1(a)-291(p)-27(olec)-1(ia\\252a)-290(z)-292(l)1(am)-1(en)28(tami,)-290(\\273)-1(e)-291(li)1(tuj)1(\\241c)-292(si\\246)-291(n)1(ad)-291(n)1(i\\241,)-290(da\\252)]TJ 0 -13.55 Td[(jej)-333(ca\\252e)-1(go)-333(ru)1(bla)-333(i)-333(obiec)-1(a\\252)-333(pr)1(os)-1(i)1(ak)55(a)-333(z)-334(t)28(yc)28(h,)-333(co)-334(si\\246)-334(d)1(opiero)-333(m)-1(i)1(a\\252y)-334(u)1(l\\241c)-334(n)1(a)-334(\\273ni)1(w)27(a.)]TJ 27.879 -13.549 Td[(A)-468(nar)1(\\363)-28(d)-468(j)1(u\\273)-468(nie)-468(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-467(c)-1(o)-468(p)-27(o)-28(c)-1(z\\241\\242)-469(i)-467(jak)-468(zap)-28(ob)1(iec)-469(krad)1(z)-1(i)1(e)-1(\\273om)-1(.)-467(Dz)-1(ie\\253)]TJ -27.879 -13.549 Td[(nasta\\252)-451(i)1(\\261)-1(cie)-451(p)-28(ogr)1(z)-1(eb)-28(o)28(wy)84(,)-451(\\273e)-451(z)-1(a\\261)-451(i)-450(p)-28(ogo)-28(d)1(a)-451(si\\246)-451(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i\\252a,)-451(d)1(e)-1(sz)-1(cz)-1(y)1(k)-451(siepa\\252)-451(o)-28(d)]TJ 0 -13.549 Td[(ran)1(a)-499(i)-499(szare)-1(,)-498(c)-1(i)1(\\246)-1(\\273kie)-499(ni)1(e)-1(b)-27(o)-499(pr)1(z)-1(y)1(gniata\\252o)-499(\\261wiat)-499(wsz)-1(ystek,)-499(to)-499(sm)27(u)1(tek)-499(ogarn)1(ia\\252)]TJ 0 -13.549 Td[(du)1(s)-1(ze,)-350(l)1(udzie)-350(c)28(ho)-28(d)1(z)-1(i)1(li)-349(w)-350(ut)1(rapi)1(e)-1(ni)1(u,)-349(wz)-1(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(y)-349(i)-349(\\273)-1(al)1(ni,)-349(ze)-350(s)-1(tr)1(ac)27(hem)-350(m)28(y\\261)-1(l)1(\\241c)-350(o)]TJ 0 -13.55 Td[(no)-27(c)-1(y)-333(n)1(a)-56(jb)1(li\\273s)-1(zej.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-417(na)-416(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(e)-418(p)1(rze)-1(d)-416(s)-1(am)28(ym)-417(wie)-1(cz)-1(or)1(e)-1(m)-417(zja)28(wi\\252)-417(s)-1(i)1(\\246)-418(Ro)-27(c)27(ho)-417(i)-416(biega)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(p)-27(o)-332(c)27(h)1(a\\252)-1(u)1(pac)28(h)-332(r)1(oz)-1(n)1(os)-1(i\\252)-332(n)1(o)28(w)-1(i)1(n\\246)-332(tak)-332(d)1(z)-1(iwn)1(\\241,)-332(\\273)-1(e)-332(zgo\\252a)-332(nie)-332(d)1(o)-332(u)28(wie)-1(r)1(z)-1(enia.)-331(Oto)-332(r)1(oz)-1(-)]TJ 0 -13.549 Td[(p)-27(o)27(wiad)1(a\\252)-419(rad)1(o\\261)-1(n)1(ie)-1(,)-418(jak)28(o)-418(w)27(e)-419(c)-1(zw)28(artek,)-419(p)-27(o)-56(j)1(utr)1(z)-1(e,)-419(zjad)1(\\241)-419(s)-1(i)1(\\246)-420(ca\\252\\241)-419(h)28(u)1(rm\\241)-419(s)-1(\\241siedzi)]TJ 0 -13.549 Td[(p)-27(om)-1(aga\\242)-333(Lip)-28(com)-334(w)-333(p)-28(ol)1(n)28(yc)27(h)-333(r)1(ob)-28(ot)1(ac)27(h.)]TJ 27.879 -13.55 Td[(Nie)-437(m)-1(ogli)-437(zrazu)-437(u)28(wierzy\\242)-1(,)-437(ale)-437(kiej)-437(i)-437(dob)1(ro)-28(d)1(z)-1(iej)-437(wysz)-1(ed\\252sz)-1(y)-437(n)1(a)-438(wie\\261)-438(p)-27(o-)]TJ -27.879 -13.549 Td[(t)28(wie)-1(r)1(dza\\252)-284(n)1(a)-56(j)1(uro)-27(c)-1(zy\\261c)-1(iej)-283({)-283(rad)1(o\\261)-1(\\242)-284(b)1(uc)28(hn)1(\\246)-1(\\252a)-283(p)-28(o)-283(lu)1(dziac)27(h)1(,)-283(\\273)-1(e)-283(ju)1(\\273)-284(o)-283(z)-1(mierz)-1(c)28(h)28(u,)-283(k)1(ie)-1(j)]TJ 0 -13.549 Td[(desz)-1(cz)-323(p)1(rze)-1(sta\\252,)-322(a)-322(i)1(no)-322(k)56(a\\252u\\273e)-323(p)-27(o)-28(cz)-1(erwieni)1(a\\252)-1(y)-321(o)-28(d)-321(z)-1(\\363rz)-322(p)1(rze)-1(cie)-1(k)56(a)-55(j\\241cyc)27(h)-321(s)-1(p)-27(o)-28(d)-321(opa-)]TJ 0 -13.549 Td[(r\\363)28(w,)-357(z)-1(ar)1(oi\\252y)-357(s)-1(i\\246)-357(dr)1(o)-1(gi)1(,)-357(rozbrzm)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-358(w)28(e)-1(se)-1(ln)29(ym)-1(i)-357(k)1(rz)-1(y)1(k)55(ami.)-357(Zagoto)28(w)28(a\\252)-1(o)-357(si\\246)-358(p)-27(o)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ac)27(h)-399(o)-28(d)-399(gw)27(ar)1(\\363)27(w,)-399(biegali)-399(p)-28(o)-399(s)-1(\\241siadac)28(h)-400(r)1(oz)-1(w)28(a\\273)-1(a\\242)-400(i)-399(dziw)28(o)27(w)28(a\\242)-400(s)-1(i)1(\\246)-400(te)-1(j)-399(no)28(wi-)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-356(z)-1(ap)-27(omina)-55(j\\241c)-357(c)-1(a\\252k)1(ie)-1(m)-357(o)-356(krad)1(z)-1(ie\\273)-1(ac)28(h)-357(i)-356(tak)-356(s)-1(i\\246)-357(cie)-1(sz\\241c)-358(se)-1(r)1(dec)-1(zni)1(e)-358(t)1(\\241)-357(p)-28(omo)-28(c\\241)]TJ 0 -13.55 Td[(ni)1(e)-1(sp)-28(o)-27(dzian\\241,)-333(\\273e)-334(na)28(w)28(e)-1(t)-333(ma\\252o)-334(kt)1(o)-334(p)1(iln)1(o)27(w)28(a\\252)-334(t)1(e)-1(j)-333(n)1(o)-28(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Naza)-56(ju)1(trz,)-446(jeno)-446(s)-1(i)1(\\246)-447(\\261)-1(wit)-446(pr)1(z)-1(etar\\252)-446(c)27(h)28(y)1(la)-447(t)28(y)1(la,)-446(c)-1(a\\252a)-446(w)-1(i)1(e)-1(\\261)-447(stan\\246\\252a)-446(na)-446(nogi;)]TJ -27.879 -13.549 Td[(wypr)1(z)-1(\\241tal)1(i)-502(c)28(ha\\252u)1(p)28(y;)-501(bral)1(i)-502(si\\246)-502(d)1(o)-502(p)1(iec)-1(ze)-1(n)1(ia)-502(c)28(hleb)-27(\\363)27(w,)-501(ry)1(c)27(h)28(to)28(w)28(ali)-501(w)27(ozy)83(,)-501(kr)1(a)-56(jal)1(i)]TJ 0 -13.549 Td[(zie)-1(mni)1(aki)-433(d)1(o)-433(s)-1(ad)1(z)-1(eni)1(a,)-433(sz)-1(li)-432(w)-433(p)-28(ol)1(a)-433(rozrz)-1(u)1(c)-1(a\\242)-433(n)1(a)27(w)28(\\363z)-1(,)-432(le\\273)-1(\\241cy)-433(n)1(a)-433(kup)1(ac)27(h)-432({)-433(a)-433(w)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(j)-406(c)27(ha\\252u)1(pie)-407(tu)1(rb)-27(o)27(w)28(ano)-407(si\\246)-407(w)27(edle)-407(jad)1(\\252a)-407(i)-407(nap)1(itku)-406(la)-407(t)28(yc)28(h)-407(go\\261c)-1(i)-407(n)1(ies)-1(p)-27(o)-28(dzia-)]TJ 0 -13.55 Td[(n)28(yc)28(h,)-316(rozumian)1(o)-317(b)-27(o)28(wie)-1(m,)-316(jak)28(o)-316(trza)-316(w)-1(y)1(s)-1(t\\241)-27(pi\\242)-317(go)-27(dn)1(ie)-1(,)-316(p)-27(o)-316(gos)-1(p)-27(o)-28(dar)1(s)-1(k)1(u,)-316(i\\273)-317(b)-27(ez)-317(to)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(na)-412(ku)1(ra)-412(i)-412(g\\241sk)56(a,)-412(os)-1(ta)28(wion)1(a)-412(na)-412(pr)1(z)-1(edan)1(ie)-1(,)-411(da\\252y)-412(gard)1(\\252o,)-412(i)-412(n)1(ie)-1(ma\\252o)-412(z)-1(n)1(o)28(w)-1(u)]TJ\nET\nendstream\nendobj\n1493 0 obj <<\n/Type /Page\n/Contents 1494 0 R\n/Resources 1492 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1492 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1497 0 obj <<\n/Length 8639      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(467)]TJ -358.232 -35.866 Td[(nab)1(rali)-304(n)1(a)-304(br\\363g)-304(w)-304(k)56(arc)-1(zmie)-305(i)-304(w)28(e)-305(m\\252yni)1(e)-1(,)-304(\\273e)-305(j)1(ak)-304(prze)-1(d)-303(w)-1(i)1(e)-1(lk)1(im)-305(\\261wi\\246)-1(t)1(e)-1(m)-304(ucz)-1(yn)1(i\\252o)]TJ 0 -13.549 Td[(si\\246)-334(w)-334(Li)1(p)-28(cac)27(h)1(.)]TJ 27.879 -13.549 Td[(A)-350(Ro)-28(c)28(ho)-350(mo\\273)-1(e)-350(na)-55(jb)1(ardziej)-350(r)1(adosn)28(y)-350(i)-350(wzru)1(s)-1(zon)28(y)83(,)-349(c)-1(a\\252y)-350(d)1(z)-1(i)1(e)-1(\\253)-349(u)28(wija\\252)-350(si\\246)-350(p)-28(o)]TJ -27.879 -13.549 Td[(ws)-1(i)-400(p)-27(op)-28(\\246dza)-56(j)1(\\241c)-401(j)1(e)-1(sz)-1(cz)-1(e)-400(tu)-400(i)-400(o)27(wd)1(z)-1(ie)-400(do)-400(przygoto)28(w)28(a\\253,)-400(a)-400(tak)-401(b)29(y\\252)-401(j)1(a\\261)-1(n)1(iej\\241cy)-400(i)-401(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)-28(dziw)-243(r)1(oz)-1(mo)28(w)-1(n)29(y)83(,)-242(\\273)-1(e)-243(ki)1(e)-1(j)-242(za)-56(j)1(rz)-1(a\\252)-242(do)-242(B)-1(or)1(yn\\363)28(w,)-243(Han)1(k)56(a,)-243(kt)1(\\363ra)-243(zno)28(wu)-242(le)-1(\\273a\\252a)-243(cz)-1(u)1(j\\241c)]TJ 0 -13.55 Td[(si\\246)-334(c)27(h)1(or\\241,)-333(rze)-1(k)1(\\252)-1(a)-333(cic)27(h)1(o:)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(zy)-333(s)-1(i)1(\\246)-334(w)27(am)-333(\\261)-1(wiec)-1(\\241)-333(kiej)-333(w)-333(c)27(hor)1(obie...)]TJ 0 -13.549 Td[({)-388(Zd)1(ro)28(wym)-1(,)-387(jeno)-387(radosn)28(y)84(,)-388(j)1(ak)-388(n)1(igdy)-387(w)-388(\\273yc)-1(i)1(u.)-387(Miark)1(ujecie)-1(:)-387(t)28(yla)-387(c)27(h\\252op)-27(\\363)28(w)]TJ -27.879 -13.549 Td[(si\\246)-377(z)-1(w)28(ali)-376(na)-377(ca\\252e)-377(dw)28(a)-377(d)1(ni)-376(do)-377(Li)1(piec)-1(,)-376(\\273)-1(e)-377(n)1(a)-56(j)1(pil)1(niejsz)-1(e)-377(r)1(ob)-28(ot)28(y)-376(obrob)1(i\\241.)-376(Jak\\273e)-377(s)-1(i\\246)]TJ 0 -13.549 Td[(ni)1(e)-334(rad)1(o)27(w)28(a\\242?)]TJ 27.879 -13.549 Td[({)-386(Dz)-1(i)1(w)-1(n)1(o)-386(m)-1(i)-386(j)1(e)-1(n)1(o,)-386(\\273)-1(e)-387(t)1(ak)-386(z)-1(a)-386(dar)1(m)-1(o,)-386(p)1(rze)-1(z)-387(zap\\252at)28(y)84(,)-386(z)-1(a)-386(jedn)1(o)-386(B)-1(\\363g)-386(zap\\252a\\242)]TJ -27.879 -13.55 Td[(c)27(h)1(c)-1(\\241)-333(rob)1(i\\242...)-333(te)-1(go)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-334(b)29(yw)27(a\\252o.)1(..)]TJ 27.879 -13.549 Td[({)-438(A)-439(za)-438(B)-1(\\363g)-438(zap\\252a\\242)-439(p)1(rzyjad)1(\\241)-439(p)-27(omaga\\242)-1(,)-438(j)1(ak)-439(p)1(ra)28(w)28(e)-439(P)28(olaki)-438(a)-438(c)27(h)1(rze)-1(\\261c)-1(i)1(jan)28(y)]TJ -27.879 -13.549 Td[(p)-27(o)27(win)1(n)28(y!)-487(Ju)1(\\261)-1(ci,)-487(c)-1(o)-487(tak)-487(nie)-487(b)28(yw)28(a\\252)-1(o,)-487(ale)-487(i)-488(b)-27(ez)-488(to)-488(z\\252e)-488(pan)1(os)-1(zy)-487(s)-1(i\\246)-487(w)27(e)-488(\\261wie)-1(cie.)]TJ 0 -13.549 Td[(Pr)1(z)-1(emie)-1(n)1(i)-452(si\\246)-452(jes)-1(zc)-1(ze)-453(n)1(a)-452(lepsz)-1(e,)-452(zobacz)-1(y)1(c)-1(ie!)-452(Nar)1(\\363)-28(d)-452(p)1(rzyjd)1(z)-1(i)1(e)-453(d)1(o)-452(rozum)28(u,)-451(p)-28(o-)]TJ 0 -13.549 Td[(miarku)1(je,)-337(\\273e)-337(ni)1(e)-338(ma)-337(si\\246)-337(n)1(a)-337(k)28(ogo)-337(i)1(nsz)-1(ego)-337(ogl\\241d)1(a\\242)-1(,)-336(\\273)-1(e)-337(n)1(ikto)-336(m)27(u)-336(nie)-337(p)-27(omo\\273)-1(e,)-337(j)1(e)-1(n)1(o)]TJ 0 -13.55 Td[(on)-344(s)-1(am)-345(sobi)1(e)-1(,)-344(ws)-1(p)1(ie)-1(r)1(a)-56(j)1(\\241c)-346(j)1(e)-1(d)1(e)-1(n)-344(d)1(rugi)1(e)-1(go)-344(w)-345(p)-28(ot)1(rz)-1(ebi)1(e)-1(!)-344(A)-345(r)1(oz)-1(ro\\261ni)1(e)-345(s)-1(i\\246)-345(wtencz)-1(as)]TJ 0 -13.549 Td[(p)-27(o)-337(ws)-1(zystkie)-337(ziem)-1(i)1(e)-337(kiej)-337(t)1(e)-1(n)-336(b)-27(\\363r)-337(n)1(iez)-1(mo\\273)-1(on)29(y)-337(i)-336(n)1(ie)-1(p)1(rzyjacio\\252y)-336(jego)-337(sc)-1(ze)-1(zn\\241)-336(nib)29(y)]TJ 0 -13.549 Td[(\\261niegi!)-412(O)1(bacz)-1(ycie,)-412(pr)1(z)-1(y)1(jdzie)-412(tak)56(a)-412(p)-27(ora!)-412({)-412(w)28(o\\252a\\252)-412(pr)1(om)-1(i)1(e)-1(n)1(ie)-1(j)1(\\241c)-1(,)-411(a)-412(r\\246c)-1(e)-412(wyci\\241)-28(ga\\252)]TJ 0 -13.549 Td[(gdzies)-1(i)1(k,)-356(jakb)29(y)-356(c)27(hcia\\252)-356(k)28(o)-28(c)27(h)1(aniem)-357(ob)-55(j)1(\\241\\242)-357(ws)-1(zyste)-1(k)-356(n)1(ar\\363)-28(d)-355(i)-356(w)-1(i)1(\\241z)-1(a\\242)-357(go)-356(mi\\252o\\261c)-1(i\\241)-356(w)]TJ 0 -13.549 Td[(jeden)-333(p)-27(\\246)-1(k)-333(n)1(ie)-1(p)1(rze)-1(\\252aman)28(y)84(...)]TJ 27.879 -13.55 Td[(Ale)-334(ucie)-1(k\\252)-334(zaraz,)-334(gdy\\273)-335(zacz)-1(\\246\\252a)-335(wyp)29(yt)28(yw)27(a\\242,)-334(kto)-334(spra)28(wi\\252)-334(taki)-334(cud,)-334(\\273e)-335(p)1(rzy-)]TJ -27.879 -13.549 Td[(jad)1(\\241)-289(z)-290(p)-27(omo)-28(c)-1(\\241?)-289(Cho)-27(dzi\\252)-289(p)-28(o)-289(wsi,)-289(gdy)1(\\273)-290(d)1(o)-289(p)-28(\\363\\271nej)-289(n)1(o)-28(c)-1(y)-288(\\261)-1(wiec)-1(i)1(\\252)-1(o)-289(si\\246)-289(p)-28(o)-289(c)28(ha\\252up)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(\\273e)-312(to)-311(d)1(z)-1(ieuc)28(h)28(y)-311(p)1(ra)28(w)-1(i)1(e)-312(\\261wi\\241te)-1(czne)-312(ob)1(lec)-1(ze)-1(n)1(ia)-311(sz)-1(yk)28(o)28(w)28(a\\252y)83(,)-311(sp)-28(o)-27(dzie)-1(w)28(a)-56(j)1(\\241c)-312(si\\246,)-311(i\\273)-311(c)-1(o\\261)]TJ 0 -13.549 Td[(par)1(obk)28(\\363)28(w)-334(j)1(utr)1(o)-334(p)1(rzyjedzie.)]TJ 27.879 -13.549 Td[(A)-314(naza)-56(j)1(utrz,)-314(ledwie)-315(\\261wit)-314(p)-28(ob)1(ieli\\252)-314(dac)27(h)29(y)83(,)-314(wie\\261)-315(ju)1(\\273)-315(b)28(y\\252a)-314(goto)28(w)27(a,)-314(z)-314(k)28(om)-1(in)1(\\363)28(w)]TJ -27.879 -13.55 Td[(si\\246)-433(kur)1(z)-1(y\\252o,)-432(dziew)27(cz)-1(y)1(n)28(y)-433(k)1(ie)-1(j)-432(op)1(arzone)-433(lata\\252y)-432(m)-1(i)1(\\246)-1(d)1(z)-1(y)-432(c)27(h)1(a\\252)-1(u)1(pami,)-432(c)27(h)1(\\252)-1(op)1(aki)-432(z)-1(a\\261)]TJ 0 -13.549 Td[(skrab)1(a\\252)-1(y)-292(s)-1(i)1(\\246)-294(p)-27(o)-293(d)1(rabi)1(nac)27(h)-292(na)-293(k)56(aleni)1(c)-1(e,)-293(p)1(atrz\\241c)-294(n)1(a)-293(dr)1(ogi.)-293(\\221)1(w)-1(i)1(\\241te)-1(cz)-1(n)1(a)-293(cis)-1(za)-293(p)1(ad\\252a)]TJ 0 -13.549 Td[(na)-296(wie)-1(\\261.)-297(Dzie\\253)-296(przysz)-1(ed\\252)-297(c)28(hm)28(urn)29(y)83(,)-296(b)-28(ez)-297(s)-1(\\252o\\253)1(c)-1(a,)-296(ale)-297(c)-1(i)1(e)-1(p)1(\\252)-1(y)-296(i)-296(dziwnie)-297(j)1(ak)28(o\\261)-298(t)1(\\246)-1(skn)28(y)84(.)]TJ 0 -13.549 Td[(Pt)1(ac)-1(t)28(w)28(o)-246(z)-1(a)-55(jad)1(le)-246(\\261)-1(wiergota\\252o)-245(p)-28(o)-245(s)-1(ad)1(ac)27(h)1(,)-246(za\\261)-246(g\\252)-1(osy)-245(lud)1(z)-1(ki)1(e)-246(c)-1(ic)28(h\\252y)84(,)-246(ci\\246\\273)-1(k)28(o)-246(si\\246)-246(w)28(a\\273)-1(\\241c)]TJ 0 -13.549 Td[(w)-334(t)28(y)1(m)-334(nagr)1(z)-1(an)28(y)1(m)-334(wilgotn)28(y)1(m)-334(p)-27(o)27(wietrzu.)]TJ 27.879 -13.55 Td[(D\\252ugo)-398(cz)-1(ek)56(ali,)-398(b)-27(o)-398(dop)1(iero)-398(kiej)-398(p)1(rze)-1(d)1(z)-1(w)28(onil)1(i)-398(na)-398(ms)-1(z\\246,)-398(z)-1(ad)1(ud)1(nia\\252y)-398(g\\252u)1(c)27(ho)]TJ -27.879 -13.549 Td[(dr)1(ogi,)-333(a)-333(s)-1(p)-27(o)-28(d)-333(sin)28(yc)28(h)-333(rzadkic)28(h)-333(mgie)-1(\\252)-333(j\\246\\252y)-333(s)-1(i\\246)-333(w)-1(y)1(tac)-1(za\\242)-334(sz)-1(eregi)-334(w)28(oz\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(Jad\\241)-333(z)-334(W)84(oli!)]TJ 0 -13.549 Td[({)-333(Jad\\241)-333(z)-334(Rze)-1(p)-27(e)-1(k!)]TJ 0 -13.549 Td[({)-333(Jad\\241)-333(z)-334(D\\246bicy!)]TJ 0 -13.549 Td[({)-333(Jad\\241)-333(z)-334(P)1(rz)-1(y)1(\\252\\246)-1(k)56(a!)]TJ 0 -13.55 Td[(W)84(rz)-1(esz)-1(cz)-1(eli)-360(ze)-361(ws)-1(zystkic)28(h)-360(stron)-360(n)1(a)-360(wyprz\\363)-28(d)1(ki)-360(b)1(ie)-1(gn)1(\\241c)-361(p)1(rze)-1(d)-360(k)28(o\\261ci\\363\\252,)-360(k)56(a)-56(j)]TJ -27.879 -13.549 Td[(ju)1(\\273)-369(p)1(ierws)-1(ze)-369(w)28(ozy)-368(z)-1(a)-55(jec)27(h)1(a\\252)-1(y)84(,)-368(a)-368(wkr)1(\\363tc)-1(e)-368(ws)-1(zys)-1(t)1(e)-1(k)-368(p)1(lac)-368(lud)1(\\271)-1(mi)-368(si\\246)-369(zap)-27(c)27(ha\\252)-368(i)-367(z)-1(a-)]TJ 0 -13.549 Td[(pr)1(z)-1(\\246gami.)-320(Ch\\252opi)1(,)-320(\\261)-1(wi\\241t)1(e)-1(cz)-1(n)1(ie)-321(p)1(rzy)28(o)-28(dzian)1(i,)-320(ze)-1(sk)55(ak)1(iw)27(al)1(i)-320(z)-321(w)28(as)-1(\\241)-27(g\\363)27(w)-320(r)1(z)-1(u)1(c)-1(a)-55(j\\241c)-320(p)-28(o-)]TJ 0 -13.549 Td[(zdro)28(wienia)-297(k)28(obi)1(e)-1(tom)-298(n)1(adc)28(ho)-28(d)1(z)-1(\\241cym)-298(ze)-1(wsz)-1(\\241d)1(,)-298(d)1(z)-1(i)1(e)-1(ci)-297(z)-1(a\\261)-298(j)1(ak)-297(z)-1(a)28(wdy)-297(wrza)-1(sk)-297(p)-27(o)-28(d-)]TJ 0 -13.549 Td[(ni)1(e)-1(s\\252y)83(,)-333(otacz)-1(a)-55(j\\241c)-334(p)1(rzyb)28(y\\252yc)28(h.)]TJ 27.879 -13.55 Td[(I)-333(s)-1(zli)-333(z)-1(ar)1(az)-334(na)-333(ms)-1(z\\246)-1(,)-333(b)-27(o)-334(j)1(u\\273)-333(w)-334(k)28(o\\261c)-1(iele)-334(zah)28(u)1(c)-1(za\\252y)-334(or)1(gan)28(y)83(.)]TJ 0 -13.549 Td[(A)-324(s)-1(k)28(or)1(o)-324(ks)-1(i)1(\\241dz)-325(sk)28(o\\253cz)-1(y)1(\\252,)-324(pra)28(wie)-324(c)-1(a\\252a)-324(wie)-1(\\261)-324(wys)-1(y)1(pa\\252a)-324(s)-1(i\\246)-324(z)-1(a)-324(wr\\363tn)1(ie)-324(c)-1(me)-1(n)1(-)]TJ\nET\nendstream\nendobj\n1496 0 obj <<\n/Type /Page\n/Contents 1497 0 R\n/Resources 1495 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1495 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1500 0 obj <<\n/Length 10360     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(468)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(tarza)-281(p)-27(o)-28(d)-280(dzw)27(on)1(nic\\246,)-281(gosp)-28(o)-28(d)1(yn)1(ie)-281(w)-1(y)1(s)-1(t\\241)-28(p)1(i\\252y)-280(na)-281(p)1(rze)-1(d)1(z)-1(ie,)-281(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-280(kr\\246c)-1(i\\252y)-280(s)-1(i)1(\\246)-282(n)1(a)]TJ 0 -13.549 Td[(b)-27(ok)55(ac)28(h)-404(wie)-1(r)1(c)-1(\\241c)-405(\\261lepiami)-404(parob)1(k)28(\\363)28(w)-1(,)-404(a)-404(k)28(om)-1(or)1(nice)-405(zbi\\252y)-404(s)-1(i)1(\\246)-405(os)-1(ob)1(no)-404(w)-405(ku)1(p)-28(\\246)-405(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ku)1(ropat)1(ki,)-268(nie)-268(\\261)-1(miej\\241c)-269(cis)-1(n)1(\\241\\242)-269(si\\246)-269(na)-268(o)-28(cz)-1(y)-268(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a,)-269(k)1(t\\363ry)-268(wnet)-269(si\\246)-269(u)1(k)55(aza\\252,)-268(p)-28(o-)]TJ 0 -13.549 Td[(zdro)28(wi\\252)-304(ws)-1(zys)-1(t)1(kic)27(h)-303(i)-304(raz)-1(em)-305(z)-304(Ro)-28(c)27(h)1(e)-1(m)-304(j\\241\\252)-304(rozp)-28(or)1(z)-1(\\241d)1(z)-1(a\\242,)-304(kt\\363ry)-304(d)1(o)-304(jaki)1(e)-1(j)-304(c)28(ha\\252up)29(y)]TJ 0 -13.549 Td[(ma)-334(j)1(e)-1(c)28(ha\\242)-334(r)1(obi\\242,)-333(bacz)-1(\\241c)-334(j)1(e)-1(n)1(o,)-333(b)28(y)-333(b)-27(ogats)-1(zyc)27(h)-333(d)1(o)-333(b)-28(ogatsz)-1(y)1(c)27(h)-333(kw)28(ate)-1(r)1(o)28(w)27(a\\242.)]TJ 27.879 -13.55 Td[(T)83(ak)-305(ano)-305(w)-306(mig)-305(w)-1(sz)-1(y)1(s)-1(tk)28(o)-305(rozp)-28(or)1(z)-1(\\241d)1(z)-1(i\\252,)-305(\\273e)-306(nie)-306(p)1(rze)-1(sz)-1(\\252a)-305(i)-305(p)-28(\\363\\252)-305(go)-28(dzin)28(y)84(,)-306(a)-305(ju)1(\\273)]TJ -27.879 -13.549 Td[(rozdr)1(apali)-298(c)28(h\\252op)-28(\\363)28(w,)-298(pr)1(z)-1(ed)-298(k)28(o\\261)-1(cio\\252em)-299(osta\\252)-1(y)-298(j)1(e)-1(n)1(o)-299(sp\\252ak)56(an)1(e)-299(k)28(om)-1(or)1(nice)-1(,)-298(n)1(a)-299(d)1(armo)]TJ 0 -13.549 Td[(cz)-1(ek)55(a)-55(j\\241ce)-1(,)-399(\\273e)-400(i)-399(im)-400(kt\\363r)1(y\\261)-400(pr)1(z)-1(y)1(padn)1(ie,)-400(p)-27(o)-399(w)-1(si)-399(z)-1(a\\261)-400(r)1(w)27(ete)-1(s)-399(s)-1(i\\246)-400(cz)-1(y)1(ni\\252:)-399(wysta)27(wial)1(i)]TJ 0 -13.549 Td[(\\252a)28(w)-1(y)-319(p)1(rze)-1(d)-319(c)28(ha\\252up)29(y)83(,)-319(du)1(c)27(h)1(e)-1(m)-319(p)-28(o)-28(d)1(a)-56(j)1(\\241c)-320(\\261)-1(n)1(iad)1(ania)-319(i)-319(c)-1(z\\246)-1(stu)1(j\\241c)-320(gorza\\252k)56(\\241)-320(n)1(a)-320(p)1(r\\246dsz)-1(e)]TJ 0 -13.549 Td[(skumani)1(e)-1(.)-368(Dzie)-1(wki)-368(rad)1(e)-369(us\\252ugi)1(w)27(a\\252y)84(,)-369(l)1(e)-1(d)1(w)-1(i)1(e)-369(t)28(yk)56(a)-56(j\\241c)-368(jad\\252a,)-368(gd)1(y\\273)-369(wi\\246ks)-1(zo\\261)-1(\\242)-368(b)28(y\\252a)]TJ 0 -13.549 Td[(par)1(obk)28(\\363)28(w)-334(i)-333(tak)-333(wystro)-55(jon)28(y)1(c)27(h,)-333(j)1(akb)28(y)-333(na)-333(zm)-1(\\363)28(win)28(y)84(,)-333(a)-334(n)1(ie)-334(d)1(o)-334(r)1(ob)-28(ot)28(y)-333(zjec)27(hal)1(i.)]TJ 27.879 -13.55 Td[(Nie)-409(b)28(y\\252o)-409(cz)-1(asu)-408(na)-409(r)1(oz)-1(gad)1(ki,)-409(t)28(yl)1(e)-410(j)1(e)-1(n)1(o)-409(m\\363)27(wil)1(i,)-409(z)-409(kt\\363ry)1(c)27(h)-408(s)-1(\\241)-409(wsi)-409(i)-409(j)1(ak)-409(si\\246)]TJ -27.879 -13.549 Td[(w)28(o\\252)-1(a)-55(j\\241,)-362(na)28(w)28(e)-1(t)-362(jedli)-362(m)-1(a\\252o)-362(w)-1(i)1(e)-1(le)-363(wyma)28(w)-1(i)1(a)-56(j)1(\\241c)-364(si\\246)-363(wielc)-1(e)-363(p)-27(olit)28(ycznie,)-363(j)1(ak)28(o)-363(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-334(z)-1(ar)1(obil)1(i)-333(na)-333(s)-1(u)1(ts)-1(ze)-334(jad)1(\\252o.)]TJ 27.879 -13.549 Td[(W)84(ryc)27(h)1(le)-334(te\\273,)-334(p)-27(o)-28(d)-333(p)1(rze)-1(w)28(o)-28(dem)-334(k)28(ob)1(iet,)-333(z)-1(acz)-1(\\246li)-333(wyje\\273)-1(d)1(\\273)-1(a\\242)-333(w)-334(p)-27(ola.)]TJ 0 -13.549 Td[(Jakb)29(y)-334(t)1(o)-334(u)1(ro)-28(cz)-1(y)1(s)-1(te)-334(\\261wi\\241tk)28(o)-333(ucz)-1(yn)1(i\\252o)-333(s)-1(i\\246)-333(na)-333(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[(Pu)1(s)-1(t)1(e)-336(i)-336(zdr)1(\\246)-1(t)28(wia\\252e)-336(p)-27(ola)-335(o\\273)-1(y\\252y)84(,)-335(p)-28(otr)1(z)-1(\\246s)-1(\\252y)-335(s)-1(i)1(\\246)-336(g\\252os)-1(y)84(,)-335(z)-1(e)-336(wsz)-1(ystkic)28(h)-335(p)-28(o)-27(dw)28(\\363rz)]TJ -27.879 -13.549 Td[(wytacz)-1(a\\252y)-329(si\\246)-329(w)27(ozy)83(,)-329(wsz)-1(ystki)1(m)-1(i)-329(d)1(r\\363\\273k)56(a)-1(mi)-329(ci\\241)-28(gn)1(\\246)-1(\\252y)-329(p)1(\\252ugi,)-328(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(i)-328(m)-1(iedzami)]TJ 0 -13.549 Td[(lu)1(dzie)-432(r)1(usz)-1(ali)1(,)-431(a)-432(wsz)-1(\\246dy)84(,)-431(s)-1(k)1(ro\\261)-432(sad\\363)28(w)-431(i)-431(pr)1(z)-1(ez)-432(p)-27(ola)-431(rw)28(a\\252y)-431(s)-1(i\\246)-431(p)-28(ok)1(rzyki,)-431(lecia\\252y)]TJ 0 -13.549 Td[(rad)1(os)-1(n)1(e)-345(p)-27(oz)-1(d)1(ro)28(wie)-1(n)1(ia,)-344(k)28(onie)-344(r\\273a\\252)-1(y)84(,)-344(tur)1(k)28(ota\\252y)-344(roze)-1(sc)27(h\\252e)-345(k)28(o\\252a,)-344(p)1(s)-1(y)-344(u)1(jada\\252y)-344(zapa-)]TJ 0 -13.549 Td[(mi\\246)-1(t)1(ale)-372(gania)-55(j\\241c)-372(za)-372(\\271re)-1(b)1(ak)56(am)-1(i)1(,)-372(a)-371(buj)1(na,)-371(mo)-28(c)-1(n)1(a)-372(rad)1(o\\261)-1(\\242)-372(p)1(rze)-1(p)-27(e)-1(\\252n)1(ia\\252a)-372(se)-1(r)1(c)-1(a)-371(i)-372(p)-27(o)]TJ 0 -13.55 Td[(zie)-1(miac)28(h)-342(si\\246)-342(n)1(ie)-1(s\\252a)-342({)-341(i)-342(n)1(a)-342(p)-27(oletk)55(ac)28(h)-341(p)-28(o)-28(d)-341(ziem)-1(n)1(iaki,)-341(na)-341(j\\246c)-1(zmie)-1(n)1(n)28(yc)28(h)-342(r)1(olac)27(h)1(,)-342(n)1(a)]TJ 0 -13.549 Td[(r\\273ysk)55(ac)28(h,)-335(na)-336(zac)27(h)29(w)27(asz)-1(cz)-1(on)29(yc)27(h)-335(ugor)1(ac)27(h)-335(s)-1(ta)28(w)28(ali)-336(i)-335(w)27(eso\\252)-1(y)1(m)-336(p)-28(ogw)28(arem)-1(,)-335(s)-1(zumn)1(ie)-336(i)]TJ 0 -13.549 Td[(rozg\\252o\\261)-1(n)1(ie)-334(ki)1(e)-1(j)-333(d)1(o)-334(ta\\253)1(c)-1(a.)]TJ 27.879 -13.549 Td[(Naraz)-406(p)1(rzycic)27(h)1(\\252)-1(o)-405(ws)-1(zystk)28(o,)-405(bat)28(y)-405(\\261)-1(wisn\\246\\252y)83(,)-405(zas)-1(zc)-1(z\\246)-1(k)56(a\\252y)-405(orcz)-1(yk)1(i,)-405(s)-1(p)1(r\\246\\273)-1(y\\252y)]TJ -27.879 -13.549 Td[(si\\246)-436(k)28(on)1(ie)-435(i)-435(r)1(dza)27(w)28(e)-435(jes)-1(zc)-1(ze)-436(p)1(\\252ugi)-434(j\\246\\252)-1(y)-434(s)-1(i)1(\\246)-436(z)-435(w)28(olna)-435(wp)1(ie)-1(r)1(a\\242)-436(w)-435(ziem)-1(i\\246)-435(i)-434(w)-1(y)1(w)27(ala\\242)]TJ 0 -13.55 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(e)-375(skib)29(y)-375(cz)-1(ar)1(ne)-375(i)-375(l)1(\\261)-1(n)1(i\\241c)-1(e,)-374(a)-375(nar)1(\\363)-28(d)-374(s)-1(i\\246)-375(p)1(rosto)27(w)28(a\\252,)-375(n)1(abi)1(e)-1(ra\\252)-374(dec)27(h)28(u)1(,)-375(\\273e)-1(gn)1(a\\252,)]TJ 0 -13.549 Td[(p)-27(otac)-1(za\\252)-334(o)-27(c)-1(zyma)-334(p)-27(o)-333(rolac)27(h)1(,)-333(pr)1(z)-1(ygi)1(na\\252)-333(i)-334(p)1(racy)-333(a)-334(tr)1(ud)1(u)-333(s)-1(i\\246)-333(ima\\252)-1(.)]TJ 27.879 -13.549 Td[(Zgo\\252a)-320(n)1(ab)-28(o\\273na)-319(i)-320(\\261wi\\246)-1(ta)-319(c)-1(i)1(c)27(ho\\261\\242)-320(ogarn)1(\\246)-1(\\252a)-320(p)-27(ola,)-319(jakb)29(y)-320(si\\246)-320(rozp)-27(o)-28(c)-1(z\\246)-1(\\252o)-319(nab)-27(o-)]TJ -27.879 -13.549 Td[(\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-276(w)-276(t)28(y)1(m)-276(niez)-1(mierzon)28(ym)-276(k)28(o\\261cie)-1(l)1(e)-1(.)-275(Nar\\363)-28(d)-275(w)-275(p)-28(ok)28(or)1(z)-1(e)-276(p)1(rzyw)27(ar)1(\\252)-276(d)1(o)-276(zagon\\363)28(w,)]TJ 0 -13.549 Td[(\\261c)-1(ic)28(hn)1(\\241\\252)-352(i)-351(z)-1(e)-352(wz)-1(d)1(yc)27(h)1(e)-1(m)-352(serdec)-1(zn)28(ym)-351(rz)-1(u)1(c)-1(a\\252)-351(\\261)-1(wi\\246te)-1(,)-351(ro)-27(dn)1(e)-352(z)-1(iar)1(na,)-351(p)-28(osiew)27(a\\252)-351(trud)]TJ 0 -13.55 Td[(na)-333(p)1(le)-1(n)1(ne)-334(j)1(utr)1(o,)-333(m)-1(atce)-334(zie)-1(mi)-333(o)-28(d)1(da)28(w)27(a\\252)-333(si\\246)-334(ws)-1(zyste)-1(k)-333(i)-333(z)-334(d)1(uf)1(no\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[(Hej!)-497(o)-1(\\273y\\252y)-497(z)-1(n)1(o)27(wu)-497(lip)-27(ec)27(kie)-498(p)-27(ola,)-498(d)1(o)-28(cz)-1(ek)56(a\\252)-1(y)-497(si\\246)-498(gos)-1(p)-27(o)-28(dar)1(z)-1(y)-497(t\\246)-1(skn)1(i\\241c)-1(e,)-498(a)]TJ -27.879 -13.549 Td[(to)-28(\\242,)-381(j)1(ak)-381(okiem)-381(s)-1(i\\246gn\\241\\252,)-380(o)-28(d)-381(b)-27(or\\363)28(w)-381(c)27(h)1(m)27(ur)1(n)28(yc)28(h)-381(a\\273)-381(p)-28(o)-381(wy\\273ni)1(e)-382(p)-27(oln)28(y)1(c)27(h)-381(gr)1(anic,)-381(p)-27(o)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h)-449(zie)-1(miac)28(h)-449(w)-449(t)28(ym)-449(sz)-1(ar)1(oz)-1(ielon)1(a)27(wym,)-449(mg\\252a)28(w)-1(y)1(m)-450(p)-27(o)28(wie)-1(t)1(rz)-1(u)1(,)-449(n)1(ib)28(y)-448(p)-28(o)-28(d)]TJ 0 -13.549 Td[(w)28(o)-28(d\\241,)-266(ja\\273e)-267(roi\\252o)-266(s)-1(i\\246)-267(o)-27(d)-266(c)-1(ze)-1(r)1(w)27(on)28(y)1(c)27(h)-266(w)27(e\\252niak)28(\\363)28(w,)-266(pasias)-1(t)28(yc)28(h)-266(p)-28(or)1(te)-1(k,)-266(b)1(ia\\252yc)27(h)-266(k)56(ap)-27(ot,)]TJ 0 -13.549 Td[(k)28(oni)-333(p)1(rzygi\\246t)28(yc)27(h)-333(w)-333(p\\252ugac)28(h)-333(i)-333(w)27(oz\\363)28(w)-334(p)-27(o)-334(miedzac)27(h)1(.)]TJ 27.879 -13.55 Td[(Nib)28(y)-252(p)1(s)-1(zcz)-1(eln)28(y)-252(r\\363)-55(j)-252(ob)1(s)-1(iad)1(\\252)-252(z)-1(iemi\\246)-253(p)1(ac)27(hn)1(i\\241c\\241)-253(i)-252(r)1(oi\\252)-252(s)-1(i\\246)-252(pr)1(ac)-1(o)28(wic)-1(i)1(e)-253(w)-252(c)-1(ic)28(ho\\261c)-1(i)]TJ -27.879 -13.549 Td[(bl)1(adego)-405(z)-1(wies)-1(n)1(o)28(w)27(ego)-405(dn)1(ia)-405({)-405(\\273e)-406(j)1(e)-1(n)1(o)-405(s)-1(k)28(o)28(wron)1(ki)-405(r)1(oz)-1(g\\252o\\261niej)-405(\\261piew)28(a\\252)-1(y)-404(w)27(a\\273\\241c)-405(s)-1(i\\246)]TJ 0 -13.549 Td[(gdzies)-1(i)1(k)-414(n)1(iedo)-56(j)1(rzane,)-413(w)-1(i)1(ate)-1(r)-413(te\\273)-414(pr)1(z)-1(ewia\\252)-414(n)1(ie)-1(k)1(ie)-1(d)1(y)83(,)-413(zatarga\\252)-413(drzew)-1(i)1(n)28(y)83(,)-413(rozwia\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)28(o)-27(dzie)-1(wy)-333(k)28(obi)1(e)-1(tom,)-333(pr)1(z)-1(yg\\252ad)1(z)-1(i\\252)-333(\\273yta)-333(i)-334(w)-333(b)-28(or)1(y)-333(ucie)-1(k)56(a\\252)-333(z)-334(c)27(h)1(ic)27(h)1(ote)-1(m.)]TJ 27.879 -13.549 Td[(D\\252ugi)1(e)-464(go)-28(dzin)28(y)-463(p)1(raco)27(w)28(ali)-463(b)-27(e)-1(z)-464(wytc)28(hn)1(ie)-1(n)1(ia,)-463(t)28(yle)-464(j)1(e)-1(n)1(o)-464(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(a)-56(j)1(\\241c)-1(,)-463(c)-1(o)]TJ -27.879 -13.55 Td[(tam)-483(kto\\261)-483(grzbiet)-483(wypr)1(os)-1(to)28(w)28(a\\252,)-483(o)-28(d)1(z)-1(ip)1(n\\241\\252)-483(i)-483(zno)28(wuj)-482(s)-1(i)1(\\246)-484(p)1(rz)-1(y)1(k\\252ada\\252)-483(d)1(o)-483(z)-1(agon)1(a.)]TJ 0 -13.549 Td[(\\233e)-369(na)28(w)28(e)-1(t)-368(na)-368(p)-28(o\\252u)1(dn)1(ie)-369(z)-369(r\\363l)-368(ni)1(e)-369(z)-1(j)1(e)-1(\\273d\\273ali,)-368(pr)1(z)-1(ysiedli)-368(j)1(e)-1(n)1(o)-369(na)-368(mie)-1(d)1(z)-1(ac)28(h)-368(p)-28(o)-55(je\\261)-1(\\242)-369(z)]TJ\nET\nendstream\nendobj\n1499 0 obj <<\n/Type /Page\n/Contents 1500 0 R\n/Resources 1498 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1485 0 R\n>> endobj\n1498 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1503 0 obj <<\n/Length 9279      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(469)]TJ -358.232 -35.866 Td[(dw)28(o)-56(j)1(ak)28(\\363)28(w)-274(i)-274(k)28(o\\261)-1(ciom)-274(da\\242)-274(f)1(olg\\246)-1(,)-273(ale)-274(s)-1(k)28(or)1(o)-274(t)28(ylk)28(o)-274(k)28(on)1(ie)-275(p)1(rze)-1(j)1(ad\\252y)84(,)-274(za)-274(p\\252ugi)-273(s)-1(i)1(\\246)-275(i)1(m)-1(ali)1(,)]TJ 0 -13.549 Td[(ni)1(e)-334(leni\\241c)-333(ni)-333(o)-28(ci\\241)-28(ga)-56(j)1(\\241c)-1(.)-333(Dop)1(iero)-333(o)-334(sam)27(y)1(m)-334(z)-1(mierzc)27(h)28(u)-333(zac)-1(z\\246li)-333(\\261)-1(ci\\241)-28(ga\\242)-334(z)-333(p)-28(\\363l)1(.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(tk)1(i)-355(rozb\\252ys\\252y)-355(c)27(h)1(at)28(y)-355(i)-355(za)28(w)-1(r)1(z)-1(a\\252y)-355(gw)28(arem)-355(a)-355(kr\\246tani)1(n\\241,)-355(ca\\252a)-355(wie)-1(\\261)-355(stan\\246-)]TJ -27.879 -13.549 Td[(\\252a)-406(w)-406(\\252)-1(u)1(nac)28(h)-406(ogni)1(,)-406(c)-1(o)-406(si\\246)-406(z)-407(oki)1(e)-1(n)-405(i)-406(drzwi)-406(wyw)28(a)-1(r)1(t)28(yc)27(h)-405(dar\\252y)-406(n)1(a)-406(dr)1(og\\246)-1(,)-406(w)-406(k)56(a\\273)-1(d)1(e)-1(j)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-326(z)-1(wij)1(ali)-326(si\\246)-326(kiele)-326(obr)1(z)-1(\\241d)1(k)28(\\363)27(w)-326(i)-325(wie)-1(cze)-1(rzy)84(.)-326(Rw)27(etes)-327(si\\246)-326(p)-27(o)-28(dn)1(i\\363s\\252)-1(,)-325(pr)1(z)-1(ekrzy-)]TJ 0 -13.55 Td[(ki,)-457(r\\273e)-1(n)1(ia)-458(k)28(on)1(i,)-458(skrzyp)28(y)-457(wie)-1(r)1(z)-1(ei,)-457(c)-1(iel\\246c)-1(e)-458(b)-27(e)-1(k)1(i,)-458(g\\246got)28(y)-458(g\\246s)-1(i)-457(na)-458(n)1(o)-28(c)-458(s)-1(p)-27(\\246dzon)28(yc)27(h)]TJ 0 -13.549 Td[(do)-399(zagr\\363)-28(d,)-399(d)1(z)-1(ieci\\253skie)-400(wrzaski,)-399(\\273)-1(e)-400(ca\\252a)-400(wie\\261)-400(h)28(u)1(c)-1(za\\252a)-400(i)-399(trz\\246)-1(s\\252a)-400(si\\246)-400(t)28(ym)-399(dziwnie)]TJ 0 -13.549 Td[(rad)1(os)-1(n)29(ym)-334(b)-27(e)-1(\\252k)28(otem)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252o)-314(d)1(opi)1(e)-1(ro,)-313(ki)1(e)-1(j)-313(gosp)-28(o)-27(dyn)1(ie)-314(do)-313(mic)27(h)-313(zaprasza\\252)-1(y)84(,)-313(tak)-313(s)-1(ieln)1(ie)-314(hon)1(o-)]TJ -27.879 -13.549 Td[(ru)1(j\\241c)-261(c)27(h)1(\\252)-1(op)-27(\\363)28(w,)-261(\\273)-1(e)-261(s)-1(ad)1(z)-1(a\\252y)-260(ic)27(h)-261(n)1(a)-261(pi)1(e)-1(rwsz)-1(y)1(c)27(h)-261(miejsc)-1(ac)28(h,)-261(p)-27(o)-28(d)1(t)27(y)1(k)55(a)-55(j\\241c)-261(c)-1(o)-261(n)1(a)-56(j)1(lepsz)-1(e,)]TJ 0 -13.549 Td[(ni)1(e)-334(\\273)-1(a\\252o)28(w)28(a\\252)-1(y)-333(b)-27(o)28(wie)-1(m)-333(ni)-333(mi\\246)-1(sa,)-333(ni)-333(gor)1(z)-1(a\\252ki.)1(..)]TJ 27.879 -13.55 Td[(W)84(e)-291(ws)-1(zys)-1(t)1(kic)27(h)-290(c)28(ha\\252u)1(pac)27(h)-290(wiec)-1(zerz)-1(al)1(i,)-290(ws)-1(z\\246)-1(d)1(y)-290(prze)-1(z)-290(w)-1(y)1(w)27(ar)1(te)-291(okn)1(a)-291(i)-290(d)1(rz)-1(wi)]TJ -27.879 -13.549 Td[(widn)1(e)-225(b)28(y)1(\\252y)-224(g)-1(\\252o)28(wy)-224(w)-225(k)1(r\\241)-28(g)-224(ze)-1(b)1(rane)-224(i)-224(g\\246)-1(b)28(y)-224(r)1(uc)28(ha)-56(j)1(\\241c)-1(e,)-224(s)-1(k)1(rzyb)-28(ot)-224(\\252y\\273ek)-224(s)-1(i\\246)-224(rozc)27(ho)-27(dzi\\252,)]TJ 0 -13.549 Td[(a)-333(s)-1(maki)-333(s\\252)-1(on)1(in)28(y)-333(p)1(rz)-1(y)1(s)-1(ma\\273)-1(on)1(e)-1(j)-332(w)-1(i)1(a\\252)-1(y)-333(p)-27(o)-333(drogac)28(h,)-333(a\\273)-334(w)-333(nozdrzac)27(h)-333(wierci\\252o.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-470(j)1(e)-1(d)1(e)-1(n)-469(Ro)-28(c)27(h)1(o)-470(nik)56(a)-55(j)-470(n)1(ie)-470(przysiad\\252)-470(n)1(a)-470(d\\252u)1(\\273)-1(ej,)-469(c)27(ho)-27(dz)-1(i)1(\\252)-470(o)-28(d)-469(dom)27(u)-469(do)]TJ -27.879 -13.549 Td[(dom)28(u,)-237(sia\\252)-238(d)1(obr)1(ym)-238(s\\252)-1(o)28(w)28(e)-1(m,)-237(p)-28(or)1(e)-1(d)1(z)-1(a\\252)-237(i)-237(s)-1(ze)-1(d)1(\\252)-238(d)1(ale)-1(j)-237(d)1(o)-238(d)1(ru)1(gic)27(h)1(,)-238(j)1(ak)28(o)-238(t)1(e)-1(n)-237(gosp)-28(o)-27(darz)]TJ 0 -13.55 Td[(zap)-28(ob)1(ie)-1(gl)1(iwy)-417(i)-417(o)-417(ws)-1(zystkim)-417(jedn)1(ak)28(o)-417(bacz)-1(\\241cy)83(,)-417(a)-417(tak)-416(s)-1(amo)-417(jak)-417(ca\\252a)-417(w)-1(i)1(e)-1(\\261)-417(p)-28(e\\252e)-1(n)]TJ 0 -13.549 Td[(w)28(e)-1(se)-1(la)-333(i)-333(mo\\273)-1(e)-334(b)1(arze)-1(j)-333(j)1(e)-1(sz)-1(cze)-334(pr)1(z)-1(ej\\246t)28(y)-334(r)1(ado\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-237(u)-236(Hanki)-237(czu\\242)-237(b)28(y\\252o)-237(to)-237(d)1(z)-1(isiejsz)-1(e)-237(\\261)-1(wi\\241tk)28(o,)-236(b)-28(o)-237(c)28(ho)-28(\\242)-237(p)-27(om)-1(o)-28(cy)-237(n)1(ie)-237(p)-28(otr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(b)-27(o)27(w)28(a\\252a,)-297(to)-298(b)29(y)-298(d)1(ru)1(gim)-298(u)1(l\\273)-1(y)1(\\242)-1(,)-297(zaprosi\\252a)-297(do)-297(s)-1(iebi)1(e)-298(na)-297(kw)28(ate)-1(r)1(\\246)-298(dw)28(\\363)-28(c)27(h)-297(Rze)-1(p)-27(cz)-1(ak)28(\\363)28(w,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-334(rob)1(i\\252y)-333(u)-333(W)83(eron)1(ki)-333(i)-333(Go\\252\\246)-1(b)-27(o)28(w)27(ej.)]TJ 27.879 -13.55 Td[(T)28(yc)27(h)-333(se)-334(wybr)1(a\\252a,)-334(\\273e)-334(to)-333(Rz)-1(ep)-27(c)-1(zaki)-333(z)-1(a)-333(sz)-1(lac)28(h)28(t\\246)-334(si\\246)-334(mia\\252y)84(.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-325(co)-326(w)-325(Lip)-27(c)-1(ac)28(h)-325(pr)1(z)-1(ekp)1(iw)27(al)1(i)-325(s)-1(i\\246)-325(z)-1(a)28(wdy)-325(z)-325(takiej)-325(sz)-1(l)1(ac)27(h)28(t)28(y)-325(i)-325(za)-325(psi)-325(pazur)]TJ -27.879 -13.549 Td[(ic)28(h)-281(ni)1(e)-282(mieli,)-281(gor)1(z)-1(ej)-281(n)1(i\\271)-1(l)1(i)-281(na)-281(miejskic)28(h)-281(\\252ac)27(h)1(m)27(ytk)28(\\363)28(w)-281(i)-281(p)1(refes)-1(j)1(an)28(t\\363)28(w)-282(p)-27(o)28(ws)-1(ta)-55(j\\241c;)-281(ale)]TJ 0 -13.549 Td[(sk)28(oro)-381(w)28(e)-1(szli)-380(do)-380(c)27(ha\\252u)1(p)28(y)83(,)-380(Han)1(k)55(a)-380(z)-1(ar)1(az)-381(s)-1(p)-27(ostrze)-1(g\\252a,)-380(\\273)-1(e)-381(t)1(o)-381(in)1(s)-1(zy)-380(gatun)1(e)-1(k,)-380(znacz)-1(-)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(s)-1(zy)83(.)]TJ 27.879 -13.55 Td[(Ch\\252op)28(y)-465(b)29(y\\252y)-465(drob)1(ne)-465(i)-465(c)27(h)28(u)1(derla)28(w)28(e)-1(,)-465(z)-465(m)-1(iejsk)56(a)-465(w)-466(cz)-1(ar)1(ne)-466(k)56(ap)-27(ot)28(y)-465(o)-28(dzian)1(e)-1(,)]TJ -27.879 -13.549 Td[(ale)-341(s)-1(i)1(e)-1(ln)1(ie)-341(miniaste;)-341(w)28(\\241s)-1(isk)56(a)-341(im)-341(s)-1(t)1(e)-1(rcza\\252)-1(y)-340(kiej)-341(wiec)27(h)29(y)-341(k)28(onop)1(ne)-341(i)-341(o)-27(c)-1(zyma)-341(to)-28(cz)-1(yl)1(i)]TJ 0 -13.549 Td[(g\\363rn)1(ie,)-342(jedn)1(ak)28(o)-343(r)1(oz)-1(mo)28(wni)-342(b)28(y)1(li,)-342(a)-342(ob)-27(e)-1(j)1(\\261)-1(cie)-343(mieli)-342(d)1(e)-1(li)1(k)55(at)1(ne)-343(i)-341(m)-1(o)28(w)28(\\246)-343(zgo\\252)-1(a)-342(p)1(a\\253sk)56(\\241.)]TJ 0 -13.549 Td[(Ob)28(y)1(c)-1(za)-56(j)1(n)28(y)-299(b)28(y\\252)-299(nar\\363)-27(d,)-299(b)-28(o)-299(tak)-299(ws)-1(zy\\242k)28(o)-300(gr)1(z)-1(ec)-1(znie)-299(c)27(h)28(w)28(alili)1(,)-300(a)-299(k)56(a\\273)-1(d)1(e)-1(j)-299(p)-27(oredzili)-299(t)28(ym)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(e)-1(m)-333(z)-1(ab)1(as)-1(o)28(w)27(a\\242,)-333(\\273)-1(e)-333(k)28(obiet)28(y)-333(ja\\273e)-334(ur)1(as)-1(ta\\252y)-333(z)-334(ku)1(n)28(ten)28(tn)1(o\\261)-1(ci.)]TJ 27.879 -13.55 Td[(Su)1(tsz)-1(\\241)-241(te\\273)-241(w)-1(i)1(e)-1(cz)-1(erz\\246)-242(k)56(aza\\252a)-241(Hank)56(a)-241(n)1(arz\\241dzi\\242)-242(i)-240(p)-27(o)-28(da\\242)-241(im)-241(na)-240(s)-1(tol)1(e)-242(p)-27(okry)1(t)28(ym)]TJ -27.879 -13.549 Td[(cz)-1(yst\\241)-333(p\\252ac)27(h)28(t)1(\\241.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(ln)1(ie)-470(i)1(c)27(h)-469(obserw)27(o)28(w)28(a\\252a,)-469(przyk)56(az)-1(u)1(j\\241c)-470(wsz)-1(y)1(s)-1(tki)1(m)-470(u)28(w)28(a\\273)-1(n)1(ie,)-470(\\273e)-470(p)1(ra)28(wie)-470(na)]TJ -27.879 -13.549 Td[(pal)1(c)-1(ac)28(h)-243(ki)1(e)-1(le)-243(ni)1(c)27(h)-242(c)27(ho)-27(dzi\\252y)83(,)-242(z)-244(o)-27(c)-1(zu)-243(o)-27(dgadu)1(j\\241c)-243(p)-27(otrze)-1(b)28(y)84(,)-243(Jagn)1(a)-243(za\\261)-1(,)-242(jakb)28(y)-242(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-258(s)-1(tr)1(ac)-1(i)1(\\252)-1(a,)-257(w)-1(y)1(s)-1(tr)1(oi\\252a)-258(s)-1(i\\246)-258(kieb)28(y)-258(n)1(a)-258(o)-28(d)1(pust)-258(i)-258(siedzia\\252a)-258(z)-1(ap)1(atrzona)-258(w)-258(m\\252o)-28(dsz)-1(ego)]TJ 0 -13.549 Td[(ni)1(b)28(y)-333(w)-334(ob)1(raz)-1(.)]TJ 27.879 -13.55 Td[({)-387(Ma)-388(on)-387(sw)28(o)-56(je)-387(dw)28(\\363rki,)-387(n)1(a)-388(b)-27(os)-1(e)-387(ani)-387(s)-1(p)-27(o)-56(j)1(rzy)-387({)-388(sz)-1(epn)1(\\246)-1(\\252a)-387(Jagust)28(ynk)56(a,)-387(ja\\273e)]TJ -27.879 -13.549 Td[(Jagu)1(\\261)-334(w)-334(ogn)1(iac)27(h)-333(stan\\246\\252a)-334(i)-333(n)1(a)-334(sw)28(o)-56(j\\241)-333(stron)1(\\246)-334(ucie)-1(k)1(\\252a.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(w)-1(sz)-1(ed\\252)-333(b)28(y\\252)-333(w\\252a\\261)-1(n)1(ie)-1(,)-333(za)-334(sto\\252kiem)-334(si\\246)-334(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-250(T)83(e)-1(m)28(u)-250(si\\246)-251(n)1(a)-56(j)1(barzej)-250(z)-1(d)1(umiew)27(a)-55(j\\241)-250(nasze)-251(c)27(h)1(\\252op)28(y)83(,)-250(co)-250(lud)1(z)-1(i)1(e)-251(z)-251(Rze)-1(p)-27(ek)-250(z)-1(j)1(e)-1(c)28(hali)]TJ -27.879 -13.549 Td[(Lip)-27(c)-1(om)-333(p)-28(omaga\\242!)-334({)-333(rzek\\252)-334(cic)27(h)1(o.)]TJ 27.879 -13.55 Td[({)-270(Nie)-270(o)-271(sw)28(o)-56(j\\241)-270(spr)1(a)27(w)28(\\246)-271(p)-27(obi)1(lim)-270(s)-1(i\\246)-270(w)-271(l)1(e)-1(sie,)-270(to)-270(nik)1(t)-270(z)-271(nas)-270(z)-1(a)28(wz)-1(i)1(\\246)-1(to\\261c)-1(i)-269(nie)-270(\\273)-1(ywi)]TJ -27.879 -13.549 Td[({)-333(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(ia\\252)-333(starsz)-1(y)84(.)]TJ\nET\nendstream\nendobj\n1502 0 obj <<\n/Type /Page\n/Contents 1503 0 R\n/Resources 1501 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1501 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1507 0 obj <<\n/Length 9672      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(470)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(o)-333(za)27(wd)1(y)-334(b)29(yw)27(a,)-333(\\273e)-334(ki)1(e)-1(j)-333(si\\246)-334(d)1(w)27(\\363)-28(c)28(h)-333(z)-1(a)-333(\\252b)28(y)-333(bi)1(e)-1(r)1(z)-1(e,)-333(trze)-1(ci)-334(k)28(or)1(z)-1(y)1(s)-1(ta!)]TJ 0 -13.549 Td[({)-279(Pr)1(a)27(wd)1(a,)-279(R)-1(o)-27(c)27(h)28(u)1(,)-279(ale)-280(n)1(ie)-1(c)28(h)-279(no)-279(d)1(w)27(\\363)-28(c)28(h)-279(si\\246)-280(zgo)-28(dn)1(ie)-280(zm\\363)27(wi)-279(w)-279(przyj)1(ac)-1(ielst)28(w)27(o,)]TJ -27.879 -13.549 Td[(to)-333(te)-1(n)-332(trze)-1(ci)-333(m)-1(o\\273e)-334(ni)1(e)-1(zgorze)-1(j)-333(ob)-27(e)-1(r)1(w)27(a\\242)-333(p)-28(o)-333(\\252bie)-333({)-334(co?)]TJ 27.879 -13.549 Td[({)-333(M\\241dr)1(z)-1(e)-333(m)-1(\\363)28(wicie)-1(,)-333(p)1(anie)-334(Rze)-1(p)-27(ec)27(ki,)-333(m\\241dr)1(z)-1(e...)]TJ 0 -13.549 Td[({)-333(A)-334(co)-333(dzis)-1(i)1(a)-56(j)-333(Lip)-27(com)-334(dolega,)-333(ju)1(tro)-333(mo\\273)-1(e)-334(p)1(rzyj\\261\\242)-334(n)1(a)-334(Rze)-1(p)1(ki.)]TJ 0 -13.55 Td[({)-435(I)-435(na)-435(k)56(a\\273)-1(d)1(\\241)-436(wie\\261,)-435(pani)1(e)-436(Rz)-1(ep)-27(e)-1(c)28(ki,)-435(je\\261li)-435(m)-1(i)1(as)-1(to)-435(za)-435(s)-1(ob)1(\\241)-436(ob)1(s)-1(ta)28(w)28(a\\242)-436(i)-435(p)-27(o-)]TJ -27.879 -13.549 Td[(sp)-28(\\363ln)1(ie)-384(s)-1(i)1(\\246)-384(bron)1(i\\242,)-384(k\\252y\\271ni)1(\\241)-384(s)-1(i)1(\\246)-1(,)-383(dzie)-1(l)1(\\241)-384(i)-384(p)1(rze)-1(z)-384(z\\252o\\261)-1(cie)-384(wyda)-55(j\\241)-384(wrogo)28(wi.)-383(M\\241dr)1(e)-384(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(jacie)-1(l)1(s)-1(ki)1(e)-440(s)-1(\\241siady)-439(to)-439(jak)-439(te)-440(p)1(\\252ot)27(y)-439(a)-439(\\261)-1(cian)28(y)-439(br)1(onn)1(e)-1(:)-439(\\261w)-1(i)1(nia)-439(s)-1(i\\246)-439(b)-28(ez)-440(ni)1(e)-440(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(\\261)-1(n)1(ie)-334(i)-333(zagona)-333(nie)-334(sp)28(ysk)56(a...)]TJ 27.879 -13.549 Td[({)-411(W)1(ie)-411(s)-1(i)1(\\246)-411(ju\\273)-411(o)-410(t)28(ym)-1(,)-410(Ro)-28(c)28(h)28(u,)-410(m)-1(i)1(\\246)-1(d)1(z)-1(y)-410(nami,)-410(jeno)-410(c)27(h\\252op)28(y)-410(jesz)-1(cz)-1(e)-411(tego)-411(n)1(ie)]TJ -27.879 -13.549 Td[(miarku)1(j\\241)-333(i)-333(s)-1(t)1(\\241d)-333(bieda)-333(id)1(z)-1(ie...)]TJ 27.879 -13.55 Td[({)-333(I)-334(n)1(a)-334(to)-333(j)1(u\\273)-334(p)-27(ora)-333(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(,)-334(p)1(ani)1(e)-334(Rz)-1(ep)-28(ec)27(k)1(i:)-333(m)-1(\\241d)1(rze)-1(j)1(\\241...)]TJ 0 -13.549 Td[({)-351(Wy)1(to)-28(c)-1(zyli)-350(s)-1(i\\246)-351(wnet)-351(p)-27(o)-351(wie)-1(cz)-1(erzy)-351(n)1(a)-351(ganek,)-351(k)56(a)-56(j)-350(ju)1(\\273)-352(P)1(ietrek)-351(pr)1(z)-1(ygr)1(yw)28(a\\252)]TJ -27.879 -13.549 Td[(na)-333(skrzypi)1(c)-1(y)-333(d)1(z)-1(iew)27(cz)-1(y)1(nom,)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(b)28(y\\252y)-333(zle)-1(cia\\252y)-333(p)-27(os)-1(\\252uc)28(ha\\242.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-355(s)-1(ze)-1(d)1(\\252)-356(cic)27(h)28(y)-355(i)-356(ciep\\252y)84(,)-356(mg\\252y)-356(bi)1(a\\252ym)-1(i)-355(k)28(o\\273uc)27(h)1(am)-1(i)-355(z)-1(siad)1(a\\252y)-356(si\\246)-356(na)-356(\\252\\246-)]TJ -27.879 -13.549 Td[(gac)27(h)1(,)-354(c)-1(za)-56(j)1(ki)-354(kwili\\252y)-354(z)-355(mokr)1(ade\\252)-355(i)-354(m\\252yn)-354(p)-27(o)-355(sw)27(o)-55(jem)27(u)-354(t)1(urk)28(ota\\252,)-354(a)-354(c)-1(zase)-1(m)-355(d)1(rze)-1(w)28(a)]TJ 0 -13.55 Td[(zas)-1(zumia\\252y)83(.)-423(Nieb)-27(o)-424(b)29(y\\252o)-424(wysokie,)-423(ale)-424(za)27(w)28(alon)1(e)-424(bu)1(rymi)-423(c)27(h)1(m)27(u)1(rz)-1(y)1(s)-1(k)56(ami,)-423(\\273)-1(e)-424(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(na)-443(obr)1(z)-1(e\\273)-1(ac)28(h)-443(z)-1(w)28(a\\252\\363)27(w)-443(przec)-1(iera\\252y)-443(s)-1(i)1(\\246)-444(m)-1(iesi\\246)-1(cz)-1(n)1(e)-444(br)1(z)-1(aski,)-443(a)-444(miejsc)-1(ami)-443(z)-444(wyrw)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)-27(oki)1(c)27(h)-333(kieb)28(y)-333(w)-334(stu)1(dni)1(ac)27(h)-333(gwiazdy)-333(b)28(ystro)-333(\\261w)-1(i)1(e)-1(ci\\252y)83(.)]TJ 27.879 -13.549 Td[(Wie\\261)-274(h)28(u)1(c)-1(za\\252a)-274(kiej)-273(ul)-273(przed)-274(wyr)1(o)-56(j)1(e)-1(m.)-274(Do)-273(p)-28(\\363\\271na)-273(jar)1(z)-1(y\\252y)-273(s)-1(i)1(\\246)-275(wsz)-1(y)1(s)-1(tki)1(e)-274(okna,)]TJ -27.879 -13.549 Td[(do)-446(p)-28(\\363\\271na)-447(te\\273)-447(w)-448(op)1(\\252otk)56(ac)27(h)-447(i)-446(p)-28(o)-446(drogac)28(h)-447(wrza\\252y)-447(pr)1(z)-1(y)1(c)-1(isz)-1(on)1(e)-448(sze)-1(p)1(t)27(y)-446(i)-447(\\261m)-1(i)1(e)-1(c)27(h)29(y)]TJ 0 -13.55 Td[(bu)1(c)27(h)1(a\\252y)-305(w)27(es)-1(o\\252e;)-305(dzie)-1(wki)-305(sz)-1(cze)-1(rzy\\252y)-305(z\\246)-1(b)28(y)-305(d)1(o)-305(k)55(a)28(w)28(ale)-1(r)1(\\363)27(w)-305(i)-305(rad)1(e)-306(si\\246)-306(z)-306(n)1(imi)-305(w)27(o)-27(dzi\\252y)]TJ 0 -13.549 Td[(nad)-297(sta)27(w)28(em)-1(,)-297(s)-1(tar)1(s)-1(ze)-299(za\\261)-299(zasiad\\252sz)-1(y)-297(z)-299(gosp)-28(o)-27(darzami)-298(na)-298(p)1(ro{)-298(gac)28(h,)-298(u)1(gw)27(ar)1(z)-1(a\\252y)-297(s)-1(i\\246)]TJ 0 -13.549 Td[(go)-28(d)1(nie)-333(z)-1(a\\273yw)27(a)-55(j\\241c)-333(c)27(h\\252o)-28(d)1(u)-333(i)-333(o)-28(dp)-27(o)-28(cz)-1(n)1(ienia.)]TJ 27.879 -13.549 Td[(A)-358(naz)-1(a)-55(ju)1(trz,)-359(l)1(e)-1(d)1(w)-1(i)1(e)-359(s)-1(i\\246)-358(nieb)-28(o)-358(z)-1(ar)1(umieni\\252o)-358(z)-1(orzami,)-358(jes)-1(zc)-1(ze)-359(w)-359(\\261w)-1(i)1(to)27(wyc)28(h,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(z)-1(iemn)28(yc)27(h)-333(sin)1(o\\261)-1(ciac)27(h)1(,)-333(z)-1(acz)-1(\\246li)-333(s)-1(i)1(\\246)-334(z)-1(r)1(yw)28(a\\242)-334(z)-1(e)-333(\\261)-1(p)1(iku)-333(i)-333(s)-1(p)-27(osobi\\242)-333(do)-333(pracy)84(.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-295(wz)-1(es)-1(z\\252o)-295(pi)1(\\246)-1(kn)1(ie)-1(,)-294(\\273)-1(e)-295(\\261)-1(wiat)1(,)-295(kieb)28(y)-295(t)28(ym)-295(srebrem)-295(s)-1(zronami)-295(p)-27(otrz\\241\\261ni\\246-)]TJ -27.879 -13.549 Td[(t)28(y)83(,)-398(w)-399(ogn)1(iac)27(h)-398(stan\\241\\252)-398(c)-1(a\\252y)84(,)-399(w)-398(s)-1(kr)1(z)-1(eniac)28(h)-398(m)-1(ok)1(ra)28(w)-1(y)1(c)27(h)-398(i)-398(w)-399(c)27(h)1(\\252o)-28(dn)28(y)1(m)-399(a)-399(r)1(z)-1(e\\271)-1(wym)]TJ 0 -13.549 Td[(p)-27(orank)1(u.)-477(Ptact)28(w)27(o)-477(uderzy\\252o)-478(w)-478(k)1(rzyk)-478(ogr)1(om)-1(n)28(y)84(,)-477(z)-1(asz)-1(u)1(m)-1(i)1(a\\252)-1(y)-477(dr)1(z)-1(ew)27(a,)-477(zab)-28(e\\252ta\\252y)]TJ 0 -13.549 Td[(w)28(o)-28(dy)84(,)-375(p)-28(o)-28(d)1(ni)1(e)-1(s\\252y)-376(si\\246)-376(l)1(udzkie)-375(g\\252)-1(osy)-375(i)-375(w)-1(i)1(ate)-1(r)-375(otr)1(z)-1(\\241sa)-56(j)1(\\241c)-376(krze)-376(roznosi\\252)-375(p)-28(o)-375(ws)-1(i)-375(ter-)]TJ 0 -13.549 Td[(k)28(ot)28(y)83(,)-357(w)27(o\\252an)1(ia,)-358(ry)1(ki,)-358(d)1(z)-1(ieusz)-1(y)1(ne)-358(\\261)-1(p)1(ie)-1(wki)1(,)-358(c)-1(o)-358(k)56(a)-55(j\\261)-358(z)-1(atr)1(z)-1(ep)-28(ot)1(a\\252)-1(y)84(,)-358(i)-358(ca\\252y)-358(ten)-358(r)1(w)27(ete)-1(s)]TJ 0 -13.55 Td[(i)-333(kr\\246tan)1(in\\246)-334(wyc)28(ho)-28(d)1(z)-1(\\241cyc)27(h)-332(na)-333(rob)-27(ot\\246)-1(.)]TJ 27.879 -13.549 Td[(Na)-381(\\252)-1(\\246gac)27(h)-381(mg\\252y)-381(jes)-1(zc)-1(ze)-382(le\\273)-1(a\\252y)-381(bia\\252e)-382(k)1(ie)-1(j)-381(\\261ni)1(e)-1(gi,)-381(j)1(e)-1(no)-381(na)-381(wy\\273s)-1(zyc)27(h)-381(rol)1(ac)27(h)]TJ -27.879 -13.549 Td[(p)-27(orze)-1(d)1(\\252)-1(y)-379(i)-379(s)-1(\\252on)1(e)-1(cz)-1(n)29(ymi)-380(b)1(icz)-1(ami)-379(p)-28(o)-28(ci\\246te)-380(i)-379(s)-1(p)-27(\\246)-1(d)1(z)-1(on)1(e)-1(,)-379(d)1(ymi\\252y)-380(j)1(u\\273)-380(k)1(ie)-1(j)-379(z)-380(t)1(ryb)1(ula-)]TJ 0 -13.549 Td[(rz\\363)28(w)-295(i)-294(k)1(u)-294(cz)-1(ystem)27(u)-294(n)1(iebu)-294(d)1(ar\\252y)-294(si\\246)-295(strz\\246)-1(p)1(iast)27(y)1(m)-295(p)1(rz\\246)-1(d)1(z)-1(iw)28(e)-1(m;)-294(w)-294(s)-1(zron)1(ac)27(h)-294(l)1(e)-1(\\273a\\252y)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-381(p)-28(ol)1(a,)-381(kul\\241c)-381(s)-1(i)1(\\246)-382(w)-381(do\\261pik)1(u)-381(i)-381(nab)1(rzm)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-382(n)1(ib)28(y)-381(p)1(\\241ki;)-381(a)-381(nar)1(\\363)-28(d)-381(z)-381(w)27(oln)1(a)]TJ 0 -13.549 Td[(wpiera\\252)-376(s)-1(i)1(\\246)-377(w)-1(szys)-1(tk)1(imi)-377(stron)1(am)-1(i)-376(w)-376(oros)-1(i)1(a\\252e)-1(,)-376(s)-1(enn)1(e)-377(zagon)28(y)83(,)-376(wtapi)1(a\\252)-377(si\\246)-377(w)-377(p)1(rze)-1(-)]TJ 0 -13.55 Td[(s\\252)-1(on)1(e)-1(cznian)1(e)-275(tu)1(m)-1(an)29(y)-274(i)-274(pr)1(z)-1(ywiera\\252)-274(do)-274(p)-27(oletek)-274(w)-275(cic)27(h)1(o\\261)-1(ci)-274({)-274(b)-27(o)-274(o)-28(d)-274(ziem)-1(,)-274(o)-27(d)-274(dr)1(z)-1(ew,)]TJ 0 -13.549 Td[(z)-323(sin)28(yc)28(h)-322(dalek)28(o\\261c)-1(i,)-322(o)-28(d)-322(w)28(\\363)-28(d)-322(b)1(\\252ys)-1(k)56(a)-55(j\\241cyc)27(h)-322(kr)1(\\246)-1(to)28(win)1(am)-1(i,)-322(o)-27(d)-322(m)-1(gie\\252)-322(i)-323(o)-27(d)-322(nieba,)-322(wy-)]TJ 0 -13.549 Td[(nosz\\241c)-1(ego)-312(r)1(oz)-1(gor)1(z)-1(a\\252y)-311(kr\\241)-27(g)-312(s\\252o\\253ca)-311({)-312(wsz)-1(ystkim)-311(\\261)-1(wiat)1(e)-1(m)-312(t)1(ak)55(a)-311(wiosna)-311(w)27(al)1(i\\252a)-312(i)-311(b)1(i\\252)]TJ 0 -13.549 Td[(taki)-271(cz)-1(ad)-271(mo)-28(c)-1(y)-271(i)-271(up)-27(o)-56(j)1(e)-1(n)1(ia,)-271(\\273)-1(e)-272(j)1(a\\273)-1(e)-272(w)-272(p)1(iers)-1(i)1(ac)27(h)-271(z)-1(ap)1(iera\\252o,)-272(j)1(a\\273)-1(e)-272(d)1(usz)-1(a)-271(s)-1(i)1(\\246)-272(trz\\246)-1(s\\252a)-272(w)]TJ 0 -13.549 Td[(taki)1(e)-1(j)-302(p)1(rz)-1(ena)-55(j\\261wi\\246)-1(t)1(s)-1(ze)-1(j)-302(r)1(ado\\261c)-1(i,)-302(co)-303(to)-302(jeno)-302(\\252z)-1(ami)-302(s)-1(k)56(ap)1(uj)1(e)-303(c)-1(ic)28(h)28(ymi,)-302(wz)-1(d)1(yc)27(h)1(e)-1(m)-302(s)-1(i\\246)]TJ 0 -13.55 Td[(wyp)-27(o)27(wie)-368(alb)-27(o)-369(k)1(l\\246)-1(k)56(an)1(ie)-1(m)-368(pr)1(z)-1(ed)-368(t)28(ym)-369(zwie)-1(sno)28(wym)-368(c)-1(u)1(dem)-369(i)-368(w)-368(na)-56(j)1(lic)28(hsz)-1(ej)-368(tra)28(w)28(c)-1(e)]TJ 0 -13.549 Td[(widom)28(ym.)]TJ\nET\nendstream\nendobj\n1506 0 obj <<\n/Type /Page\n/Contents 1507 0 R\n/Resources 1505 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1505 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1510 0 obj <<\n/Length 9523      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(471)]TJ -330.353 -35.866 Td[(T)83(o)-304(i)-303(mnogi)-303(\\363)27(w)-304(n)1(ar\\363)-28(d)-303(ob)1(z)-1(iera\\252)-304(si\\246)-304(d\\252u)1(go)-304(d)1(ok)28(o)-1(\\252a,)-303(\\273)-1(egna\\252)-303(p)-28(ob)-27(o\\273)-1(n)1(ie,)-304(p)1(ac)-1(ierze)]TJ -27.879 -13.549 Td[(sz)-1(epta\\252)-247(i)-247(w)-247(cic)27(h)1(o\\261)-1(ci)-247(za)-247(rob)-27(ot\\246)-248(si\\246)-247(br)1(a\\252)-1(,)-246(\\273)-1(e)-247(kiej)-247(p)1(rze)-1(d)1(z)-1(w)28(anial)1(i)-247(na)-247(msz)-1(\\246,)-247(ju)1(\\273)-248(wsz)-1(y)1(s)-1(cy)]TJ 0 -13.549 Td[(b)28(yl)1(i)-333(na)-333(s)-1(w)28(oic)27(h)-333(miejsc)-1(ac)28(h.)]TJ 27.879 -13.549 Td[(Mg\\252y)-339(ryc)28(h\\252o)-339(s)-1(i\\246)-340(r)1(oz)-1(wia\\252y)-339(i)-339(p)-28(ol)1(a)-340(stan\\246\\252y)-340(n)1(a)-340(s\\252onec)-1(znej)-339(ja\\261ni,)-339(\\273e)-340(jak)-339(okiem)]TJ -27.879 -13.549 Td[(si\\246)-1(ga\\252)-390(p)-27(o)-390(lip)-27(e)-1(c)28(kic)28(h)-390(zie)-1(miac)28(h,)-390(p)-27(o)-28(ci\\246)-1(t)28(yc)28(h)-390(p)1(as)-1(ami)-390(zie)-1(l)1(on)28(yc)27(h)-389(oz)-1(i)1(m)-1(in)1(,)-390(ws)-1(z\\246dy)-390(cz)-1(er-)]TJ 0 -13.55 Td[(wienia\\252y)-233(w)28(e)-1(\\252ni)1(aki,)-233(ora\\252y)-233(p)1(\\252ugi,)-233(wlek\\252y)-233(s)-1(i)1(\\246)-234(br)1(on)28(y)84(,)-233(w)27(o)-28(d)1(z)-1(on)1(e)-234(pr)1(z)-1(ez)-234(d)1(z)-1(iewki,)-233(gme)-1(r)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-373(r)1(z)-1(\\246dy)-371(k)28(obiet,)-372(sadz\\241c)-1(y)1(c)27(h)-372(ziem)-1(n)1(iaki)1(,)-372(a)-372(g\\246s)-1(to)-372(p)-27(o)-372(cz)-1(ar)1(n)28(yc)27(h)-371(i)-372(d)1(\\252ugic)28(h)-372(zagonac)27(h)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi\\252y)-303(c)27(h)1(\\252op)28(y)-303(przepasane)-304(p)1(\\252ac)27(h)28(tami:)-303(p)-27(o)-28(c)27(h)28(y)1(le)-1(n)1(i)-303(\\271)-1(d)1(z)-1(iebk)28(o)-303(i)-303(nab)-27(o\\273n)28(ym,)-303(s)-1(yp)1(kim)]TJ 0 -13.549 Td[(rzutem)-334(r)1(\\246)-1(ki)-333(r)1(oz)-1(sie)-1(w)28(ali)-333(ziarn)1(a)-334(w)-333(s)-1(p)1(ulc)28(hn)1(ione,)-333(c)-1(ze)-1(k)56(a)-55(j\\241ce)-334(role...)]TJ 27.879 -13.549 Td[(T)83(ak)-483(z)-1(a\\261)-484(wsz)-1(yscy)-484(p)1(raco)27(w)28(ali)-483(gorli)1(w)-1(i)1(e)-1(,)-483(g\\252\\363)28(w)-484(na)28(w)28(e)-1(t)-483(nie)-484(p)-27(o)-28(d)1(nosz)-1(\\241c,)-483(i\\273)-484(ani)]TJ -27.879 -13.549 Td[(sp)-28(ostrze)-1(gl)1(i)-432(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a)-1(,)-431(kt\\363r)1(e)-1(n)-431(z)-1(ar)1(az)-433(p)-27(o)-432(ms)-1(zy)-432(j)1(a)27(wi\\252)-432(si\\246)-432(pr)1(z)-1(y)-431(s)-1(w)28(oim)-432(par)1(obku)1(,)]TJ 0 -13.55 Td[(orz\\241c)-1(y)1(m)-369(nad)1(e)-369(drog\\241,)-368(a)-368(p)-28(otem)-369(ku)-368(zdu)1(m)-1(i)1(e)-1(n)1(iu)-368(c)27(ho)-27(dzi\\252)-369(p)-27(o)-369(p)-27(oletk)56(ac)27(h,)-368(p)-27(oz)-1(d)1(ra)28(wia\\252)]TJ 0 -13.549 Td[(w)28(e)-1(so\\252o,)-465(c)-1(z\\246)-1(sto)28(w)27(a\\252)-465(tabak)56(\\241,)-465(k)28(om)28(u)-465(i)-465(pap)1(ierosa)-466(u)1(dzieli\\252,)-465(tam)-466(r)1(z)-1(u)1(c)-1(i)1(\\252)-466(j)1(akie\\261)-466(s\\252o)27(w)28(o)]TJ 0 -13.549 Td[(\\252as)-1(k)56(a)28(w)28(e)-1(,)-262(\\363)28(w)-1(d)1(z)-1(i)1(e)-263(dzie)-1(ci\\253skie)-263(g\\252o)28(wy)-262(przyg\\252adzi\\252)-262(i)-263(z)-263(d)1(z)-1(ieuc)28(hami)-262(z)-1(a\\273arto)28(w)27(a\\252,)-262(in)1(dzie)-1(j)]TJ 0 -13.549 Td[(za\\261)-231(to)-231(wr\\363b)1(le)-231(stado,)-230(na)-230(z)-1(asian)28(y)-230(j)1(\\246)-1(cz)-1(mie\\253)-230(s)-1(p)1(ad\\252e,)-231(p)-27(e)-1(cyn)1(\\241)-231(zgoni\\252,)-230(a)-230(c)-1(z\\246)-1(sto)-231(p)1(ierws)-1(z\\241)]TJ 0 -13.549 Td[(gar\\261\\242)-395(sie)-1(wu)-394(kr)1(z)-1(y)1(\\273)-1(em)-395(b\\252ogos\\252a)27(wi\\252)-394(alb)-27(o)-394(i)-395(sam)-395(r)1(oz)-1(rzuci\\252,)-394(a)-394(w)-1(sz)-1(\\246dy)-394(d)1(o)-395(p)-27(o\\261piec)27(h)28(u)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(nagla\\252,)-333(jak)1(b)28(y)-333(i)-333(e)-1(k)28(on)1(om)-334(ni)1(e)-334(p)-28(or)1(e)-1(d)1(z)-1(i)1(\\252)-334(lepiej.)]TJ 27.879 -13.549 Td[(I)-335(z)-1(ar)1(a)-1(z)-335(p)-28(o)-335(ob)1(ie)-1(d)1(z)-1(i)1(e)-336(raze)-1(m)-335(z)-1(e)-335(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(i)-335(d)1(o)-335(rob)-27(ot)27(y)-335(si\\246)-336(sta)28(wi\\252)-336(ob)-55(j)1(a\\261)-1(n)1(ia)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(tom,)-398(\\273e)-399(c)28(ho)-28(\\242)-398(to)-398(d)1(z)-1(isia)-55(j)-398(wypad)1(a\\252o)-398(\\261)-1(wi\\246tego)-398(Mark)56(a,)-398(ale)-398(p)1(ro)-28(ce)-1(sja)-398(o)-28(d)1(b)-27(\\246)-1(d)1(z)-1(ie)]TJ 0 -13.549 Td[(si\\246)-334(dop)1(iero)-333(w)-334(okta)28(w)28(\\246)-1(,)-333(tr)1(z)-1(ec)-1(iego)-333(m)-1(a)-55(ja.)]TJ 27.879 -13.549 Td[({)-320(Ni)1(e)-320(p)-28(or)1(a)-320(dzisia)-56(j)1(,)-320(szk)28(o)-28(da)-319(c)-1(zas)-1(u)1(,)-320(b)-27(o)-320(c)28(h\\252op)28(y)-319(dr)1(ugi)-319(raz)-320(ni)1(e)-320(przyj)1(ad\\241)-320(p)-27(oma-)]TJ -27.879 -13.55 Td[(ga\\242!)]TJ 27.879 -13.549 Td[(T\\252umac)-1(zy\\252)-484(i)-484(sam)-484(te)-1(\\273)-484(z)-485(p)-27(ola)-484(n)1(ie)-484(z)-1(es)-1(ze)-1(d)1(\\252)-484(a\\273)-485(d)1(o)-484(s)-1(amego)-484(k)28(o\\253ca;)-484(s)-1(u)1(tann)1(\\246)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dk)56(asa\\252,)-328(kijem)-329(si\\246)-328(w)-1(spi)1(e)-1(r)1(a\\252)-1(,)-328(\\273e)-329(t)1(o)-329(t\\246gie)-328(brzuc)28(ho)-328(m)27(u)1(s)-1(i)1(a\\252)-329(d)1(\\271)-1(wiga\\242,)-328(i)-328(c)27(h)1(o)-28(dzi\\252)-328(ni)1(e)-1(-)]TJ 0 -13.549 Td[(strud)1(z)-1(eni)1(e)-1(,)-331(n)1(ie)-1(k)1(ie)-1(d)1(y)-331(jeno)-331(pr)1(z)-1(y)1(s)-1(iad)1(a)-56(j)1(\\241c)-332(p)-27(o)-332(miedzac)27(h)1(,)-331(b)28(y)-331(p)-28(ot)-331(ob)-27(etrze)-1(\\242)-332(z)-331(\\252ys)-1(i)1(n)28(y)-331(a)]TJ 0 -13.549 Td[(o)-28(d)1(z)-1(ip)1(n\\241\\242.)]TJ 27.879 -13.55 Td[(Radzi)-379(m)27(u)-379(b)29(yli)-379(s)-1(erd)1(e)-1(cz)-1(n)1(ie,)-379(i\\273)-380(p)-27(o)-28(d)-379(jego)-379(okiem)-380(rob)-27(ota)-379(jakb)29(y)-379(s)-1(z\\252a)-380(p)1(r\\246dze)-1(j)-379(i)]TJ -27.879 -13.549 Td[(lek)28(c)-1(i)1(e)-1(j)1(,)-334(c)28(h\\252op)28(y)-333(za\\261)-334(z)-1(a)-333(h)1(onor)-333(sobie)-334(mia\\252y)84(,)-333(c)-1(o)-333(im)-334(sam)-334(d)1(obro)-27(dzie)-1(j)-332(e)-1(k)28(on)1(om)27(uj)1(e)-1(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-380(j)1(u\\273)-380(cz)-1(erw)28(one)-380(i)-379(p)-27(e)-1(\\252ne)-380(n)1(ad)-379(b)-28(or)1(y)-380(si\\246)-380(zw)-1(i)1(e)-1(sz)-1(a\\252o,)-379(z)-1(i)1(e)-1(mie)-380(gas\\252y)83(,)-379(a)-380(d)1(ale)]TJ -27.879 -13.549 Td[(j\\246\\252y)-325(mo)-28(dr)1(z)-1(e\\242)-1(,)-325(ki)1(e)-1(j)-325(p)-27(ok)28(o\\253)1(c)-1(zyws)-1(zy)-325(c)-1(o)-325(n)1(a)-56(j)1(piln)1(iejsz)-1(e)-325(rob)-27(ot)27(y)-325(zacz)-1(\\246li)-325(\\261)-1(ci\\241)-28(ga\\242)-325(do)-325(ws)-1(i)1(;)]TJ 0 -13.549 Td[(\\261pies)-1(zyli)-333(si\\246)-1(,)-333(b)29(yc)27(h)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(z)-1(a)-333(widok)1(u)-333(do)-333(dom)-334(zd\\241\\273y\\242.)]TJ 27.879 -13.55 Td[(Wielu)-265(i)-266(za)-266(wiec)-1(ze)-1(r)1(z)-1(\\246)-266(d)1(z)-1(i\\246k)28(o)28(w)27(a\\252o,)-265(prze)-1(gr)1(yza)-56(j\\241c)-266(j)1(e)-1(n)1(o)-266(c)-1(o)-265(nieb\\241d)1(\\271)-266(nap)1(r\\246)-1(d)1(c)-1(e,)-266(a)]TJ -27.879 -13.549 Td[(in)1(s)-1(i)-333(z)-334(p)-27(o\\261)-1(p)1(ie)-1(c)28(hem)-334(br)1(ali)-333(m)-1(iski)-333(w)28(c)-1(zas)-334(narz\\241dzone;)-333(k)28(onie,)-333(ju\\273)-333(z)-1(a\\252o\\273one)-334(do)-333(w)28(oz)-1(\\363)28(w,)]TJ 0 -13.549 Td[(r\\273a\\252y)-333(przed)-333(domam)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-342(si\\246)-342(z)-1(n)1(o)27(wu)-341(p)-28(ok)56(aza\\252)-342(na)-342(wsi)-342(wraz)-342(z)-342(Ro)-28(c)27(h)1(e)-1(m,)-342(ob)-27(c)27(h)1(o)-28(dzi\\252)-342(ws)-1(zystkic)28(h)-342(i)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u)-297(c)27(h)1(\\252opu)-297(z)-297(os)-1(ob)1(na)-297(r)1(az)-298(jes)-1(zcz)-1(e)-297(dzi\\246)-1(k)28(o)28(w)28(a\\252)-298(za)-297(p)-27(o)-28(c)-1(zc)-1(i)1(w)27(\\241)-297(p)-27(om)-1(o)-27(c)-298(Lip)-27(c)-1(zak)28(om.)]TJ 27.879 -13.549 Td[({)-278(B)-1(o)-278(co)-279(d)1(as)-1(z)-278(p)-28(ot)1(rz)-1(ebu)1(j\\241ce)-1(m)28(u,)-278(j)1(akb)28(y\\261)-278(s)-1(ame)-1(m)28(u)-278(Jez)-1(u)1(s)-1(o)28(wi)-278(da)28(w)28(a\\252)-1(!)-278(No,)-278(m\\363)28(wi\\246)]TJ -27.879 -13.55 Td[(w)28(am)-1(,)-296(\\273e)-296(c)27(ho)-27(\\242)-297(n)1(ie)-1(sk)28(orzy)-296(jeste)-1(\\261c)-1(i)1(e)-297(d)1(a)27(w)28(a\\242)-297(n)1(a)-296(ms)-1(z\\246)-1(,)-296(c)28(ho)-28(\\242)-296(o)-296(p)-27(otrze)-1(b)1(ac)27(h)-296(k)28(o\\261cio\\252a)-296(nie)]TJ 0 -13.549 Td[(pami\\246tacie)-1(,)-371(c)27(h)1(o)-28(\\242)-372(ju\\273)-372(o)-27(d)-372(r)1(oku)-371(w)27(o\\252am,)-372(\\273e)-373(d)1(ac)27(h)-371(mi)-372(zac)-1(iek)56(a)-372(n)1(a)-372(pleban)1(ii,)-371(c)-1(o)-371(dzie)-1(\\253)]TJ 0 -13.549 Td[(mo)-28(dl)1(i\\242)-250(si\\246)-250(za)-249(w)28(as)-250(b)-27(\\246)-1(d)1(\\246)-1(,)-249(za)-249(w)27(asz)-1(\\241)-249(p)-27(o)-28(cz)-1(ciw)28(o\\261)-1(\\242)-249(Lip)-27(c)-1(om)-249(ok)56(az)-1(an)1(\\241...)-249({)-249(w)28(o\\252)-1(a\\252)-249(ze)-250(\\252zam)-1(i)1(,)]TJ 0 -13.549 Td[(ca\\252)-1(u)1(j\\241c)-333(c)27(h)28(yl\\241ce)-334(m)28(u)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(d)1(ro)-28(d)1(z)-1(e)-334(g\\252o)28(wy)83(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-333(b)29(yli)-332(kiele)-333(k)28(o)28(w)27(al)1(a,)-333(skr\\246cali)-333(n)1(a)-333(d)1(ru)1(g\\241)-333(stron)1(\\246)-333(w)-1(si,)-332(kiej)-332(im)-333(zas)-1(t\\241)-27(pi\\252y)]TJ -27.879 -13.55 Td[(dr)1(og\\246)-334(zap\\252ak)56(ane)-334(k)28(omorn)1(ic)-1(e)-333(z)-334(Koz\\252o)27(w)28(\\241)-333(na)-333(prze)-1(d)1(z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-225(A)-225(to)-225(dop)1(ras)-1(zam)-225(s)-1(i\\246)-225(dob)1(ro)-28(d)1(z)-1(ieja,)-225(sz)-1(l)1(im)-226(p)29(yta\\242:)-225(c)-1(zy)-225(to)-225(nam)-225(c)27(h\\252op)29(y)-225(p)-28(omaga\\242)]TJ\nET\nendstream\nendobj\n1509 0 obj <<\n/Type /Page\n/Contents 1510 0 R\n/Resources 1508 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1508 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1513 0 obj <<\n/Length 9127      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(472)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(e)-334(b)-27(\\246)-1(d)1(\\241?)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246\\252)-1(a)-333(h)1(ardo,)-333(p)-27(o)-28(d)1(nies)-1(ion)29(ym)-334(g\\252ose)-1(m.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(cz)-1(ek)55(al)1(im,)-334(\\273e)-334(i)-333(n)1(a)-334(n)1(as)-334(pr)1(z)-1(yj)1(dzie)-334(k)28(olej,)-333(a)-333(oni)-333(j)1(u\\273)-334(o)-27(dje\\273d\\273a)-56(j\\241.)1(..)]TJ 0 -13.549 Td[({)-333(I)-334(m)28(y)-333(s)-1(ierot)28(y)-333(ostaniem)-334(p)1(rz)-1(ez)-334(\\273adn)1(e)-1(go)-333(ws)-1(p)-27(omo\\273)-1(enia.)1(..)-333(w)-1(r)1(az)-334(m\\363)27(wi\\252y)84(.)]TJ 0 -13.549 Td[(Ksi\\241dz)-333(z)-1(af)1(raso)27(w)28(a\\252)-334(si\\246,)-333(s)-1(ro)-27(dze)-334(p)-27(o)-28(c)-1(ze)-1(r)1(wie)-1(n)1(ia)28(ws)-1(zy)83(.)]TJ 0 -13.55 Td[({)-402(C\\363\\273)-403(w)28(am)-402(p)-28(or)1(adz\\246)-1(?..)1(.)-402(nie)-402(wystarcz)-1(y\\252o)-402(d)1(la)-402(ws)-1(zystkic)28(h...)-401(i)-402(tak)-402(ca\\252e)-403(d)1(w)27(a)]TJ -27.879 -13.549 Td[(dn)1(i)-333(p)-28(o)-27(c)-1(zc)-1(i)1(w)-1(i)1(e)-334(p)-28(omagali.)1(..)-333(no,)-333(m\\363)28(w)-1(i)1(\\246)-1(..)1(.)-334({)-333(b)-27(e)-1(\\252k)28(ota\\252)-333(lata)-55(j\\241c)-334(p)-27(o)-333(nic)28(h)-333(o)-28(c)-1(zyma.)]TJ 27.879 -13.549 Td[({)-276(J)1(u\\261c)-1(i!)-275(p)-27(om)-1(agal)1(i,)-276(al)1(e)-276(gos)-1(p)-27(o)-28(dar)1(z)-1(om,)-275(b)-28(ogacz)-1(om)-276(j)1(e)-1(n)1(o...)-275(zas)-1(zlo)-28(c)27(h)1(a\\252a)-276(Fi)1(lipk)56(a.)]TJ 0 -13.549 Td[({)-333(Nam)-1(a)-333(jak)28(o)-333(zap)-28(o)28(wietrzon)28(ym)-334(n)1(ikto)-333(si\\246)-334(ni)1(e)-334(p)-27(okw)27(ap)1(i\\252)-334(wsp)-28(om\\363)-28(c...)]TJ 0 -13.549 Td[({)-333(Nik)28(og\\363)-56(j)-333(g\\252o)28(w)28(a)-334(n)1(ie)-334(zab)-28(ol)1(i)-334(o)-333(n)1(as)-1(,)-333(sie)-1(r)1(ot)28(y)83(..)1(.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(c)28(ho)-28(\\242)-334(k)1(ilk)56(a)-333(p\\252ug\\363)28(w)-334(d)1(o)-333(z)-1(iemniak)28(\\363)28(w)-334(t)1(o)-334(i)-333(tego)-334(n)1(ie!)-334({)-333(sz)-1(epta\\252y)-333(\\252za)27(w)28(o.)]TJ 0 -13.55 Td[({)-418(M)1(oi\\261c)-1(ie...)-417(o)-28(d)1(je\\273)-1(d)1(\\273)-1(a)-55(j\\241)-418(j)1(u\\273...)-417(no.)1(..)-418(zarad)1(z)-1(i)-417(s)-1(i)1(\\246)-418(jak)28(o\\261...)-417(pra)28(wda,)-417(\\273e)-418(i)-418(w)28(am)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273k)28(o...)-333(i)-333(w)28(as)-1(i)-333(m\\246)-1(\\273o)28(w)-1(i)1(e)-334(z)-334(dr)1(ugimi.)1(..)-333(no)-333(m)-1(\\363)28(wi\\246,)-333(\\273)-1(e)-334(si\\246)-334(zarad)1(z)-1(i.)]TJ 27.879 -13.549 Td[({)-480(A)-479(o)-480(cz)-1(ym)-480(to)-479(b)-28(\\246dziem)-480(c)-1(ze)-1(k)56(a\\242)-480(tej)-480(p)-27(omo)-28(c)-1(y)1(?)-1(.)1(..)-480(a)-479(jak)-479(s)-1(i\\246)-480(j)1(e)-1(sz)-1(cz)-1(e)-480(i)-479(te)-1(go)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(ak)55(a)-333(n)1(ie)-334(ws)-1(ad)1(z)-1(i,)-333(to)-333(j)1(u\\273)-334(in)1(o)-333(p)-28(ostron)1(e)-1(cz)-1(k)56(a)-333(s)-1(zuk)56(a\\242!)-334({)-333(za)27(wied\\252a)-333(Gu)1(lbaso)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-252(No,)-252(m)-1(\\363)28(wi\\246,)-252(\\273)-1(e)-253(si\\246)-253(zarad)1(z)-1(i)1(...)-252(Dam)-253(w)28(am)-253(sw)27(oi)1(c)27(h)-252(k)28(on)1(i,)-252(c)27(h)1(o)-28(\\242)-1(b)29(y)-253(n)1(a)-252(c)-1(a\\252y)-252(dzie\\253,)]TJ -27.879 -13.55 Td[(jeno)-333(mi)-333(ic)27(h)-333(n)1(ie)-334(zgo\\253cie)-1(.)1(..)-333(m)-1(\\252y)1(narza)-333(te)-1(\\273)-334(u)1(pr)1(os)-1(z\\246)-1(,)-333(w)28(\\363)-56(j)1(ta,)-333(B)-1(or)1(yn)28(y)84(,)-334(mo\\273e)-334(dad)1(z)-1(\\241.)1(..)]TJ 27.879 -13.549 Td[({)-445(M)1(o\\273)-1(e!)-445(Cze)-1(k)56(a)-55(j)-445(tat)1(k)55(a)-444(latk)56(a,)-445(j)1(a\\273)-445(k)28(ob)28(y\\252\\246)-445(wilcy)-445(zjedz\\241!)-445(Ch)1(o)-28(d\\271ta,)-444(k)28(obiet)28(y)83(,)]TJ -27.879 -13.549 Td[(ni)1(e)-335(s)-1(k)56(amla)-55(jta)-334(p)-28(o)-334(pr)1(\\363\\273)-1(n)1(icy!...)-334(\\273e)-1(b)29(y\\261)-1(ta)-334(n)1(ie)-335(p)-27(otrze)-1(b)-27(o)28(w)27(a\\252y)84(,)-334(to)-335(b)28(y)-334(w)28(ama)-335(d)1(obro)-27(dzie)-1(j)]TJ 0 -13.549 Td[(p)-27(om)-1(ogl)1(i...)-443(La)-443(gos)-1(p)-27(o)-28(d)1(arz)-1(y)-443(j)1(e)-1(st)-443(w)-1(szys)-1(tk)28(o,)-443(a)-443(t)28(y)83(,)-443(b)1(ie)-1(d)1(oto,)-443(k)56(am)-1(ieni)1(e)-444(gry\\271)-443(i)-443(\\252)-1(zami)]TJ 0 -13.549 Td[(p)-27(opij)1(a)-56(j)1(!)-391(Ow)28(c)-1(zarz)-391(jeno)-391(stoi)-391(o)-391(bar)1(an)28(y)83(,)-390(b)-28(o)-391(j)1(e)-392(strzy\\273e)-1(,)-391(a)-391(z)-391(c)-1(zeg\\363\\273)-392(to)-391(n)1(as)-392(oskub)1(ie,)]TJ 0 -13.55 Td[(c)27(h)1(e)-1(b)1(a)-271(z)-271(t)28(yc)27(h)-270(wsz)-1(y!)-270({)-271(wywiera\\252a)-271(p)29(ys)-1(k)-270(Koz\\252o)27(w)28(a,)-271(j)1(a\\273)-1(e)-271(k)1(s)-1(i\\241d)1(z)-271(z)-1(atk)56(a\\252)-271(u)1(s)-1(zy)-271(i)-270(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(Zbi)1(\\252)-1(y)-334(si\\246)-335(w)-335(ku)1(pk)28(\\246)-335(i)-335(r)1(z)-1(ewn)28(ymi)-335(\\252zam)-1(i)-334(p\\252ak)56(a\\252y)84(,)-335(w)-335(g\\252os)-335(wyrze)-1(k)56(a)-55(j\\241c,)-335(a)-334(R)-1(o)-27(c)27(ho)]TJ -27.879 -13.549 Td[(ut)1(ula\\252)-308(j)1(e)-1(,)-308(j)1(ak)-308(u)1(m)-1(ia\\252,)-307(obiec)-1(u)1(j\\241c)-308(p)-28(o)-27(c)-1(zc)-1(i)1(w)-1(i)1(e)-309(p)-27(om)-1(o)-27(c)-309(j)1(ak)55(\\241)-307(w)-1(y)1(jedna\\242.)-308(Od)1(wi\\363)-28(d\\252)-308(gd)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(sik)-284(p)-27(o)-28(d)-283(p\\252ot,)-283(b)-28(o)-283(ju)1(\\273)-285(zacz)-1(\\246li)-284(si\\246)-284(rozje\\273)-1(d)1(\\273)-1(a\\242)-284(n)1(a)-284(ws)-1(zystkie)-284(stron)28(y)84(,)-284(d)1(rogi)-283(z)-1(acz)-1(ern)1(ia\\252y)]TJ 0 -13.549 Td[(o)-28(d)-365(k)28(oni)-365(a)-366(l)1(udzi,)-365(z)-1(atu)1(rk)28(ota\\252y)-365(w)27(ozy)-366(i)-365(z)-1(e)-366(wsz)-1(ystki)1(c)27(h)-365(prog\\363)28(w)-366(l)1(e)-1(cia\\252y)-366(gor)1(\\241c)-1(e)-366(s\\252o)27(w)28(a)]TJ 0 -13.55 Td[(dzi\\246k)28(c)-1(zyn)1(ie)-1(\\253)1(:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(w)27(ama)-333(B)-1(\\363g)-333(zap\\252ac)-1(i)1(!)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(w)27(a)-55(jcie)-334(zdro)28(wi!)]TJ 0 -13.549 Td[({)-333(Odp)1(\\252ac)-1(im)-333(s)-1(i)1(\\246)-334(jes)-1(zc)-1(ze)-334(w)-333(s)-1(p)-27(os)-1(ob)1(n\\241)-333(p)-27(or\\246)-1(!)]TJ 0 -13.549 Td[({)-333(A)-334(za)28(w)-1(d)1(y)-333(w)-334(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246)-333(z)-1(a)-55(je\\273)-1(d)1(\\273)-1(a)-55(jcie)-334(do)-333(n)1(as)-334(kiej)-333(do)-333(kr)1(e)-1(wniak)28(\\363)28(w!)]TJ 0 -13.55 Td[({)-333(Ojc\\363)28(w)-334(p)-27(oz)-1(d)1(r\\363)28(w)27(cie!)-333(A)-334(k)28(ob)1(ie)-1(t)28(y)-333(n)1(am)-334(sw)27(o)-55(je)-334(p)1(rzywie)-1(\\271c)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(W)-333(p)-28(otr)1(z)-1(ebie)-333(s)-1(i\\246)-333(kt\\363ren)-333(z)-1(n)1(a)-56(j)1(dzie,)-334(z)-333(c)-1(a\\252ej)-333(du)1(s)-1(zy)-333(p)-28(omo\\273)-1(em!)]TJ 0 -13.549 Td[({)-316(O)1(s)-1(ta)-55(jta)-315(z)-317(Bogiem)-316(i)-316(n)1(iec)27(h)-315(w)27(ama)-316(p)1(lon)28(u)1(je,)-316(lu)1(dzie)-316(k)28(o)-28(c)27(h)1(ane!)-316({)-315(krzyk)56(ali)-315(c)-1(za-)]TJ -27.879 -13.549 Td[(pami)-333(trz\\241c)27(h)1(a)-56(j)1(\\241c)-334(do)-333(s)-1(i)1(\\246)-334(i)-333(r\\246k)28(om)-1(a)-333(wymac)27(h)28(u)1(j\\241c.)]TJ 27.879 -13.549 Td[(Dzie)-1(w)28(cz)-1(yn)29(y)-397(i)-396(c)-1(o)-396(ino)-396(b)28(y\\252o)-397(d)1(z)-1(i)1(e)-1(ci)-397(sz)-1(\\252y)-396(pr)1(z)-1(y)-396(w)27(ozac)27(h)-396(o)-28(d)1(pro)28(w)28(adza)-56(j)1(\\241c)-397(ic)27(h)-396(z)-1(a)]TJ -27.879 -13.549 Td[(wie\\261)-1(.)-354(Na)-56(j)1(w)-1(i)1(\\246)-1(ksz\\241)-355(ku)1(p\\241)-354(t\\252)-1(o)-27(c)-1(zyli)-354(s)-1(i)1(\\246)-355(na)-354(top)-28(ol)1(o)27(w)28(e)-1(j)1(,)-354(gdy\\273)-355(tam)28(t\\246)-1(d)1(y)-354(a\\273)-355(z)-355(trze)-1(c)27(h)-354(wsi)]TJ 0 -13.55 Td[(jec)27(h)1(ali.)-293(W)84(oz)-1(y)-293(to)-28(cz)-1(y)1(\\252)-1(y)-293(si\\246)-294(w)28(olno,)-293(r)1(oz)-1(ma)27(wial)1(i)-293(w)27(es)-1(o\\252o)-293(bu)1(c)27(ha)-55(j\\241c)-294(cz)-1(\\246st)27(y)1(m)-294(\\261)-1(miec)27(h)1(e)-1(m)]TJ 0 -13.549 Td[(i)-333(bar)1(as)-1(zkuj)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[(Mr)1(ok)-441(s)-1(i)1(\\246)-442(j)1(u\\273)-442(syp)1(a\\252,)-441(z)-1(or)1(z)-1(e)-441(gas)-1(\\252y)84(,)-441(jeno)-441(w)28(o)-28(dy)-441(k)56(a)-55(j\\261)-441(niek)56(a)-56(j)-441(gor)1(z)-1(a\\252y)-441(cz)-1(erw)28(o-)]TJ -27.879 -13.549 Td[(no,)-413(mg\\252)-1(y)-413(s)-1(i)1(\\246)-415(zwija\\252y)-413(na)-414(\\252\\246gac)27(h)-413(i)-414(wiec)-1(zorna,)-413(z)-1(wies)-1(n)1(o)28(w)27(a)-414(cic)28(ho\\261\\242)-415(p)1(rz\\246)-1(d)1(\\252)-1(a)-413(s)-1(i\\246)-414(p)-27(o)]TJ 0 -13.549 Td[(zie)-1(miac)28(h.)-333(\\233ab)28(y)-333(j\\246\\252y)-333(gdzie)-1(sik)-333(dal)1(e)-1(k)28(o)-333(a)-333(z)-1(go)-28(d)1(nie)-333(re)-1(c)28(hota\\242...)]TJ 27.879 -13.55 Td[(Dop)1(ro)28(w)27(ad)1(z)-1(il)1(i)-266(si\\246)-266(do)-266(rozsta)-56(j)1(\\363)27(w)-266(i)-265(tam)-266(\\273)-1(egnali)-265(s)-1(i)1(\\246)-267(w\\261r\\363)-28(d)-265(\\261)-1(miec)27(h)1(\\363)27(w)-266(i)-265(krzyk)56(a\\253,)]TJ -27.879 -13.549 Td[(ale)-394(n)1(im)-394(j)1(e)-1(sz)-1(cz)-1(e)-393(k)28(onie)-394(r)1(usz)-1(y\\252y)-393(z)-394(k)28(op)28(y)1(ta,)-394(k)1(ie)-1(j)-393(k)1(t\\363ra\\261)-394(z)-394(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)-393(za\\261)-1(p)1(ie)-1(w)28(a\\252a)-394(za)]TJ\nET\nendstream\nendobj\n1512 0 obj <<\n/Type /Page\n/Contents 1513 0 R\n/Resources 1511 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1511 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1516 0 obj <<\n/Length 1142      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(473)]TJ -358.232 -35.866 Td[(ni)1(m)-1(i)1(:)]TJ 27.879 -13.549 Td[(Dasz)-1(,)-320(Jasiu)1(,)-320(na)-320(zap)-28(o)28(wiedzie)-1(!)-320(S)1(\\252uc)28(ha)-56(j)-319(ino,)-319(tatu\\261)-320(jedzie)-1(,)-320(D)1(udn)1(i)-320(na)-320(mo\\261c)-1(ie)-320(-)]TJ -27.879 -13.549 Td[(da)-333(d)1(ana!)]TJ 27.879 -13.549 Td[(Du)1(dni)-333(n)1(a)-334(mo\\261c)-1(ie!)]TJ 0 -13.549 Td[(A)-333(c)27(h\\252op)1(aki)-333(im)-334(n)1(a)-334(t)1(o)-334(o)-28(d)1(wraca)-56(j\\241c)-333(s)-1(i\\246)-333(z)-334(w)27(oz\\363)28(w:)]TJ 0 -13.55 Td[(T)83(eraz,)-268(Mary\\261,)-268(takie)-268(z)-1(i)1(\\241b)28(y)-268(-)-269(Zskrzyt)28(wia\\252yb)28(y)-268(d)1(z)-1(iew)27(os\\252\\241b)28(y)-268(;)-268(Dam)-268(w)-269(Wi)1(e)-1(lk)1(im)]TJ -27.879 -13.549 Td[(P)28(o\\261c)-1(i)1(e)-1(..)1(.)-334(d)1(a)-334(d)1(ana!)-333(Dam)-333(w)-334(Wi)1(e)-1(lk)1(im)-334(P)28(o\\261c)-1(i)1(e)-1(!.)1(..)]TJ 27.879 -13.549 Td[(Dzw)27(on)1(i\\252y)-333(m)-1(\\252o)-28(d)1(e)-334(g\\252os)-1(y)-333(p)-27(o)-333(rosie)-334(i)-333(w)27(e)-333(w)-1(szys)-1(tek)-333(\\261)-1(wiat)-333(si\\246)-334(n)1(ie)-1(s\\252y)-333(radosne.)]TJ\nET\nendstream\nendobj\n1515 0 obj <<\n/Type /Page\n/Contents 1516 0 R\n/Resources 1514 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1514 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1519 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(474)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(31.)]TJ\nET\nendstream\nendobj\n1518 0 obj <<\n/Type /Page\n/Contents 1519 0 R\n/Resources 1517 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1504 0 R\n>> endobj\n1517 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1522 0 obj <<\n/Length 6480      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(32)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ch\\252op)28(y)-333(wraca)-56(j)1(\\241!)]TJ 27.879 -13.549 Td[(Pi)1(orun)1(e)-1(m)-333(ta)-333(w)-1(ie\\261\\242)-334(ru)1(n\\246\\252)-1(a)-333(i)-333(kiej)-333(p)1(\\252)-1(omie\\253)-333(roznies\\252)-1(a)-333(si\\246)-334(p)-27(o)-334(Li)1(p)-28(cac)27(h)1(!)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a-)-1(l)1(i)-333(to?)-334(I)-333(kiedy?)-333(I)-334(j)1(ak?...)]TJ 0 -13.55 Td[(Nikt)1(o)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-334(wiedzia\\252.)]TJ 0 -13.549 Td[(T)83(o)-412(jeno)-412(p)-27(e)-1(wne)-412(b)28(y\\252o,)-412(\\273)-1(e)-412(s)-1(t\\363)-55(jk)56(a)-412(z)-413(gmin)28(y)84(,)-412(kt\\363ren)-412(jes)-1(zcz)-1(e)-413(p)1(rze)-1(d)-412(wsc)27(h)1(o)-28(dem)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-323(do)-323(w)28(\\363)-56(j)1(ta)-323(z)-323(j)1(akim\\261)-323(pap)1(ie)-1(r)1(e)-1(m,)-323(r)1(z)-1(ek\\252o)-323(t)28(ym)-323(K)1(\\252)-1(\\246b)-27(o)27(w)28(e)-1(j)1(,)-323(wyp)-27(\\246dza)-56(j)1(\\241c)-1(ej)-323(w\\252a\\261nie)]TJ 0 -13.549 Td[(g\\246s)-1(i)-371(na)-371(sta)27(w,)-371(ta)-371(s)-1(i)1(\\246)-372(w)-372(ten)-371(mig)-372(r)1(z)-1(u)1(c)-1(i)1(\\252)-1(a)-371(z)-372(n)1(o)27(win)1(\\241)-371(do)-371(s)-1(\\241siad\\363)28(w,)-371(z)-1(a\\261)-371(B)-1(alcerk)28(\\363)28(w)-1(n)29(y)]TJ 0 -13.549 Td[(rozkrzycz)-1(a\\252y)-416(o)-27(d)-416(s)-1(i)1(e)-1(b)1(ie)-417(n)1(a)-56(j)1(bli)1(\\273)-1(sz)-1(ym)-416(c)27(h)1(a\\252up)-27(om)-1(,)-415(\\273)-1(e)-416(nie)-416(wys)-1(z\\252o)-416(i)-416(Zdro)28(w)28(a\\261)-1(,)-416(a)-416(j)1(u\\273)]TJ 0 -13.549 Td[(ca\\252)-1(e)-419(Lip)-27(c)-1(e)-419(z)-1(erw)28(a\\252y)-419(s)-1(i\\246)-419(na)-419(n)1(ogi)-419(trz\\246)-1(s\\241c)-420(rad)1(os)-1(n)1(\\241)-419(wrz)-1(a)28(w)28(\\241,)-419(a\\273)-420(si\\246)-420(zak)28(ot\\252o)28(w)27(a\\252o)-419(w)]TJ 0 -13.55 Td[(izbac)28(h.)]TJ 27.879 -13.549 Td[(A)-453(rano)-453(b)28(y)1(\\252)-1(o)-453(jesz)-1(cz)-1(e,)-453(t)27(y)1(le)-454(co)-454(si\\246)-454(\\261w)-1(i)1(t)-454(p)1(rze)-1(tar)1(\\252)-454(i)-453(ma)-56(j)1(o)27(wy)84(,)-454(w)28(cz)-1(es)-1(n)28(y)-453(d)1(z)-1(ie\\253)]TJ -27.879 -13.549 Td[(ws)-1(ta)28(w)28(a\\252,)-367(j)1(e)-1(n)1(o)-367(\\273e)-367(jaki\\261)-367(p)-27(o)-28(cz)-1(ern)1(ia\\252y)-367(i)-366(mokry)1(;)-367(d)1(e)-1(sz)-1(cz)-367(m)-1(\\273y\\252)-367(k)1(ie)-1(j)-366(p)1(rze)-1(z)-367(g\\246s)-1(te)-367(sito)-366(i)]TJ 0 -13.549 Td[(pl)1(usk)55(a\\252)-333(cic)27(h)28(u)1(\\261)-1(k)28(o)-333(p)-27(o)-334(r)1(oz)-1(kwita)-55(j\\241cyc)27(h)-332(s)-1(ad)1(a)-1(c)28(h.)]TJ 27.879 -13.549 Td[({)-360(Ch\\252op)28(y)-360(wraca)-56(j)1(\\241!)-361(Ch)1(\\252op)28(y)-360(wrac)-1(a)-55(j\\241!)-360({)-360(rw)28(a\\252)-361(si\\246)-360(krzyk)-360(nad)-360(wsz)-1(y)1(s)-1(tk)56(\\241)-360(w)-1(si\\241,)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-1(,)-343(sady)-343(l)1(e)-1(cia\\252)-343(h)28(uk)1(liwie)-1(,)-342(z)-344(k)56(a\\273)-1(d)1(e)-1(j)-343(c)28(ha\\252u)1(p)28(y)-343(bi\\252)-343(ki)1(e)-1(j)-343(d)1(z)-1(w)28(on)-343(rad)1(os)-1(n)29(y)83(,)-343(z)-343(k)55(a\\273dego)]TJ 0 -13.549 Td[(se)-1(rca)-333(bu)1(c)27(ha\\252)-333(p\\252omieniem)-334(i)-333(z)-334(k)56(a\\273dej)-333(gardzieli)-333(s)-1(i)1(\\246)-334(wydziera\\252.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-306(dop)1(ie)-1(r)1(o)-307(c)-1(o)-307(ws)-1(t)1(a\\252)-1(,)-306(na)-307(wie)-1(\\261)-307(ju)1(\\273)-308(wrza\\252a)-307(kiejb)28(y)-307(n)1(a)-307(o)-28(dp)1(u\\261c)-1(i)1(e)-1(;)-307(d)1(z)-1(i)1(e)-1(ci)-307(wy-)]TJ -27.879 -13.549 Td[(lat)28(yw)28(a\\252y)-242(z)-243(krzyki)1(e)-1(m)-243(n)1(a)-242(drogi)1(,)-243(t)1(rz)-1(ask)56(a\\252y)-242(drzwi,)-242(k)28(obiet)28(y)-242(o)-28(dziew)27(a\\252y)-242(si\\246)-243(na)-242(p)1(rogac)27(h)1(,)]TJ 0 -13.549 Td[(ju)1(\\273)-387(wypatr)1(uj\\241c)-387(t\\246skliwie)-387(ws)-1(k)1(ro\\261)-387(dr)1(z)-1(ew)-1(i)1(n)-387(r)1(oz)-1(k)1(w)-1(i)1(t\\252yc)27(h)-386(i)-387(sz)-1(ar)1(ugi)-386(pr)1(z)-1(ys\\252ania)-55(j\\241ce)-1(j)]TJ 0 -13.55 Td[(dal)1(e)-1(k)28(o\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-323(Wsz)-1(y)1(s)-1(tki)1(e)-324(wraca)-56(j)1(\\241!)-323(Gosp)-27(o)-28(darze,)-323(par)1(ob)-28(cy)83(,)-322(c)27(h\\252op)1(aki,)-323(wsz)-1(y)1(s)-1(tki)1(e)-1(!)-323(J)1(u\\273)-323(id\\241!)]TJ -27.879 -13.549 Td[(Ju)1(\\273)-403(wysz)-1(l)1(i)-402(z)-402(lasa,)-402(j)1(u\\273)-402(s\\241)-402(na)-401(top)-28(ol)1(o)27(w)28(e)-1(j)1(!)-402({)-401(w)27(o\\252ali)-401(na)-401(prze)-1(mian)28(y)-401(i)-402(ze)-402(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(pr)1(og\\363)28(w)-368(dar)1(\\252)-1(y)-367(si\\246)-368(kr)1(z)-1(yki)1(,)-368(a)-367(c)-1(o)-367(gor\\246ts)-1(ze)-368(wybi)1(e)-1(ga\\252y)-367(kiej)-367(os)-1(zala\\252e;)-368(gd)1(z)-1(ie)-368(j)1(u\\273)-368(p)1(\\252ac)-1(z)]TJ 0 -13.549 Td[(si\\246)-334(rozlega\\252)-334(i)-333(t\\246te)-1(n)29(t)27(y)-333(b)1(iegn\\241cyc)27(h)-333(n)1(aprzec)-1(iw...)]TJ 27.879 -13.55 Td[(Jeno)-302(tr)1(e)-1(p)28(y)-301(k\\252apa\\252y)-302(i)-302(b)1(\\252oto)-302(s)-1(i)1(\\246)-303(ot)28(wiera\\252o,)-302(tak)-302(wyr)1(yw)27(al)1(i)-302(z)-1(a)-302(k)28(o\\261c)-1(i)1(\\363\\252)-302(na)-302(top)-27(o-)]TJ -27.879 -13.549 Td[(lo)28(w)28(\\241)-359({)-359(ale)-359(n)1(a)-359(d\\252u)1(giej,)-358(z)-1(adesz)-1(cz)-1(on)1(e)-1(j)-358(dr)1(o)-28(dze)-359(jeno)-358(m)-1(\\246tne)-359(k)56(a\\252u\\273e)-359(s)-1(ta\\252y)-358(i)-359(siwi\\252y)-358(s)-1(i\\246)]TJ 0 -13.549 Td[(k)28(olein)28(y)84(,)-333(g\\252\\246)-1(b)-27(ok)28(o)-334(wyr)1(z)-1(n)1(i\\246)-1(t)1(e)-1(.)]TJ 27.879 -13.549 Td[(Ni)-333(\\273)-1(y)1(w)27(ej)-333(du)1(s)-1(zy)-333(nie)-333(w)-1(y)1(patrzy\\252)-333(p)-28(o)-27(d)-333(s)-1(cz)-1(ern)1(ia\\252ymi)-333(o)-28(d)-333(pl)1(uc)27(h)29(y)-334(t)1(op)-28(olami.)]TJ 0 -13.549 Td[(Cho)-28(\\242)-276(sro)-28(d)1(z)-1(e)-276(za)28(wie)-1(d)1(z)-1(eni,)-275(b)-27(e)-1(z)-276(n)1(am)27(ys\\252u)-275(i)-276(w)-276(d)1(yrd)1(y)-276(r)1(z)-1(u)1(c)-1(il)1(i)-276(si\\246)-276(na)-275(dr)1(ugi)-275(k)28(oniec)]TJ -27.879 -13.55 Td[(ws)-1(i)1(,)-334(za)-333(m)-1(\\252yn)1(,)-333(na)-333(dr)1(og\\246)-334(o)-28(d)-333(W)84(oli,)-333(b)-27(oi)-333(tam)27(t\\246dy)-333(mogli)-333(p)-28(o)28(wraca\\242)-1(.)]TJ 27.879 -13.549 Td[(Hale)-340(c\\363\\273,)-340(k)1(ie)-1(j)-338(i)-339(tam)-1(\\363)-55(j)-339(b)28(y\\252o)-339(pu)1(s)-1(to!)-339(Desz)-1(cz)-340(z)-1(acin)1(a\\252)-340(p)1(rzys)-1(\\252an)1(ia)-56(j)1(\\241c)-340(sz)-1(ar\\241)-339(ku)1(-)]TJ -27.879 -13.549 Td[(rza)28(w)27(\\241)-441(sz)-1(eroki)1(,)-441(wyb)-27(ois)-1(t)28(y)-440(go\\261)-1(ciniec;)-441(glin)1(iaste)-442(w)28(o)-28(dy)-440(ro)28(w)27(ami)-441(w)28(ali\\252y)84(,)-441(w)-441(br)1(uzdac)27(h)]TJ 358.232 -29.888 Td[(475)]TJ\nET\nendstream\nendobj\n1521 0 obj <<\n/Type /Page\n/Contents 1522 0 R\n/Resources 1520 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1520 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1526 0 obj <<\n/Length 8631      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(476)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(bu)1(rzy\\252a)-448(s)-1(i)1(\\246)-449(w)27(o)-27(da)-448(i)-448(dr)1(og\\241)-448(te)-1(\\273)-448(s)-1(zoro)28(w)27(a\\252y)-448(stru)1(gi)-448(spienion)1(e)-1(,)-448(a)-448(r)1(oz)-1(kwit\\252e)-448(c)-1(i)1(e)-1(rn)1(ie,)]TJ 0 -13.549 Td[(br)1(z)-1(e\\273)-1(\\241ce)-334(zielona)28(w)28(e)-334(p)-28(ol)1(e)-1(,)-333(skula\\252y)-333(zz)-1(i)1(\\246)-1(b)1(\\252)-1(e)-333(kwiat)28(y)83(.)]TJ 27.879 -13.549 Td[(W)84(ron)28(y)-336(k)28(o\\252uj)1(\\241)-336(g\\363r\\241,)-336(to)-336(plu)1(c)27(ha)-336(p)1(rz)-1(ejd)1(z)-1(i)1(e)-1(!)-336({)-336(rze)-1(k)1(\\252)-1(a)-336(kt\\363r)1(a\\261)-337(pr)1(\\363\\273)-1(n)1(o)-337(wyp)1(atru)1(-)]TJ -27.879 -13.549 Td[(j\\241c.)]TJ 27.879 -13.549 Td[(P)28(osun)1(\\246)-1(li)-322(s)-1(i)1(\\246)-323(jes)-1(zc)-1(ze)-323(\\271)-1(d)1(z)-1(iebk)28(o,)-322(gdy\\273)-323(o)-28(d)-322(spalon)1(e)-1(go)-322(folw)28(arku)-322(ktosik)-322(z)-1(ama)-56(j)1(a-)]TJ -27.879 -13.55 Td[(cz)-1(y\\252)-333(na)-333(dr)1(o)-28(dze)-334(i)-333(ku)-333(n)1(im)-334(si\\246)-334(zbl)1(i\\273)-1(a\\252.)]TJ 27.879 -13.549 Td[(Dziad)-354(to)-355(b)28(y\\252)-355(\\261lep)28(y)-355(i)-354(ws)-1(zys)-1(t)1(kim)-355(z)-1(n)1(an)28(y;)-354(pies,)-355(kt\\363r)1(e)-1(n)-354(go)-355(wi\\363)-28(d)1(\\252)-355(na)-355(szn)28(ur)1(ku,)]TJ -27.879 -13.549 Td[(zas)-1(zc)-1(ze)-1(k)56(a\\252)-228(za)-56(jad)1(le)-228(i)-228(j)1(\\241\\252)-229(si\\246)-228(ku)-227(nim)-228(rw)28(a\\242)-1(,)-227(\\261)-1(l)1(e)-1(p)1(ie)-1(c)-228(za\\261)-229(n)1(as)-1(\\252uc)28(hiw)28(a\\252)-228(pi)1(lni)1(e)-1(,)-228(k)1(ij)-228(gotu)1(j\\241c)]TJ 0 -13.549 Td[(ku)-394(obron)1(ie,)-395(ale)-395(dos\\252ys)-1(za)28(ws)-1(zy)-395(rozm)-1(o)28(wy)-395(p)1(rzyc)-1(i)1(s)-1(zy\\252)-395(piesk)55(a)-395(i)-394(p)-28(o)-27(c)27(h)28(w)28(aliws)-1(zy)-395(Boga)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252)-334(w)28(e)-1(so\\252o:)]TJ 27.879 -13.549 Td[({)-333(Miar)1(kuj)1(\\246)-1(,)-333(co)-334(to)-333(li)1(p)-28(ec)27(kie)-333(lud)1(z)-1(i)1(e)-1(..)1(.)-334(h)1(\\246)-1(?)-333(I)-334(co\\261)-334(sp)-28(or)1(o)-334(n)1(aro)-28(d)1(u..)1(.)]TJ 0 -13.55 Td[(Dzie)-1(w)28(cz)-1(yn)29(y)-334(go)-333(ob)1(s)-1(t\\241)-28(p)1(i\\252y)-333(i)-333(n)28(u\\273e)-334(rozp)-27(o)27(wiad)1(a\\242)-334(j)1(e)-1(d)1(na)-333(prze)-1(z)-333(dru)1(g\\241.)]TJ 0 -13.549 Td[({)-482(Srok)1(i)-483(me)-483(op)1(ad\\252y)-482(i)-482(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-483(nar)1(az)-483(s)-1(k)1(rze)-1(cz)-1(\\241!)-482({)-482(m)-1(r)1(ukn)1(\\241\\252)-483(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)]TJ -27.879 -13.549 Td[(u)28(w)28(a\\273)-1(n)1(ie)-334(n)1(a)-334(wsz)-1(e)-334(stron)29(y)83(,)-333(gdy)1(\\273)-334(c)-1(i)1(s)-1(n)1(\\246)-1(\\252y)-333(si\\246)-334(z)-334(b)1(lisk)55(a.)]TJ 27.879 -13.549 Td[(Ku)1(p\\241)-227(ju)1(\\273)-228(w)-1(r)1(ac)-1(ali)1(,)-228(d)1(z)-1(i)1(ad)-227(w)-228(p)-27(o\\261)-1(ro)-27(dku)-227(wl\\363k)1(\\252)-228(si\\246)-228(h)28(u\\261ta)-55(j\\241cy)-228(n)1(a)-228(k)1(ulac)28(h)-228(i)-227(n)1(ogac)27(h)]TJ -27.879 -13.549 Td[(p)-27(okr\\246c)-1(on)29(yc)27(h)1(,)-334(wyp)1(iera\\252)-334(n)1(apr)1(z)-1(\\363)-28(d)-332(ogromn\\241,)-333(\\261)-1(l)1(e)-1(p)1(\\241)-334(t)28(w)28(arz.)]TJ 27.879 -13.55 Td[(P)28(oli)1(c)-1(zki)-299(mia\\252)-299(c)-1(ze)-1(r)1(w)27(on)1(e)-300(i)-299(spa\\261ne,)-299(o)-28(c)-1(zy)-299(b)1(ie)-1(l)1(m)-1(em)-300(zas)-1(n)29(ute,)-299(br)1(w)-1(ie)-299(s)-1(i)1(w)27(e)-299(i)-299(krza-)]TJ -27.879 -13.549 Td[(cz)-1(aste)-1(,)-333(n)1(o)-28(c)27(h)1(al)-333(kie)-1(j)-332(tr\\241b)-27(\\246)-1(,)-333(a)-333(br)1(z)-1(u)1(c)27(ho)-333(ni)1(e)-1(zgorze)-1(j)-333(wzd\\246te)-1(.)]TJ 27.879 -13.549 Td[(Cierpl)1(iwie)-334(s\\252)-1(u)1(c)27(h)1(a\\252,)-334(a\\273)-333(w)-1(y)1(m)-1(iar)1(k)28(o)28(w)27(a)28(ws)-1(zy)-333(przerw)27(a\\252)-333(im)-333(tra)-56(j)1(k)28(ot)28(y:)]TJ 0 -13.549 Td[({)-264(Z)-264(t)28(ymem)-264(i)-264(\\261)-1(p)1(ies)-1(zy\\252)-264(d)1(o)-264(w)-1(si.)-263(Nie)-1(c)28(hr)1(z)-1(cz)-1(on)28(y)-263(jeden)-264(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-264(m)-1(i)-263(w)-264(s)-1(ekrec)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(co)-373(Li)1(p)-28(cz)-1(ak)1(i)-372(dzis)-1(i)1(a)-56(j)-372(wr)1(ac)-1(a)-55(j\\241)-372(z)-373(kr)1(e)-1(min)1(a\\252u!)-372(Wcz)-1(or)1(a)-56(j)-372(mi)-372(r)1(z)-1(ek\\252,)-372(m)27(y\\261l\\246)-372(s)-1(ob)1(ie)-1(,)-371(jut)1(ro)]TJ 0 -13.55 Td[(do)-296(d)1(ni)1(a)-296(s)-1(k)28(o)-28(cz)-1(\\246)-296(i)-296(p)1(ierws)-1(zy)-296(dam)-296(zna\\242.)-296(Jak\\273e)-1(,)-295(s)-1(zuk)56(a\\242)-296(takiej)-296(ws)-1(i)-295(jak)-296(Li)1(p)-28(ce)-1(!)-295(A)-296(kt\\363re)]TJ 0 -13.549 Td[(to)-333(wp)-28(o)-28(d)1(le)-334(d)1(rep)-28(c\\241?)-334({)-333(b)-27(o)-334(n)1(ie)-334(p)-27(oredz\\246)-334(p)-27(o)-334(sam)27(ym)-333(g\\252os)-1(ie)-333(roz)-1(ezna\\242?)-1(!)]TJ 27.879 -13.549 Td[({)-313(Mar)1(ys)-1(i)1(a)-314(Balce)-1(r)1(k)28(\\363)27(wn)1(a!...)-313(Nastk)56(a)-313(Go\\252\\246)-1(b)1(i\\363)28(w!...)-313(Uli)1(s)-1(ia)-313(so\\252t)28(ys)-1(o)28(w)28(a!...)-313(K)1(\\252\\246)-1(b)-27(o-)]TJ -27.879 -13.549 Td[(w)28(a)-334(Kasia!.)1(..)-333(Sik)28(or)1(z)-1(an)1(k)55(a)-333(Han)28(u)1(s)-1(i)1(a!)-334({)-333(w)28(o\\252a\\252)-1(y)-333(wsz)-1(ystkie.)]TJ 27.879 -13.549 Td[({)-366(Ho!)-365(ho!)-366(sam)-366(c)-1(i)-365(to)-366(kwiat)-365(pan)1(no)28(wy)-366(wys)-1(zed\\252!)-366(W)1(idzi)-366(mi)-366(si\\246,)-366(co)-366(w)27(am)-366(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.55 Td[(pi)1(lno)-333(do)-333(p)1(arobk)28(\\363)28(w,)-333(a)-334(d)1(z)-1(i)1(adem)-334(m)27(u)1(s)-1(i)1(ta)-334(si\\246)-334(k)28(on)29(te)-1(n)28(to)28(w)28(a\\242)-1(!)1(...)-333(he?)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(iepra)28(wda!)-333(p)-27(o)-333(o)-56(jc\\363)28(w)-334(wysz)-1(li)1(m)-334({)-333(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252y)84(.)]TJ 0 -13.549 Td[({)-277(Lob)-28(oga,)-277(dy)1(\\242)-278(\\261)-1(lep)28(y)-277(jezdem)-1(,)-277(ale)-278(n)1(ie)-278(g\\252uc)28(h)28(y!)-277({)-278(a\\273)-278(b)1(aran)1(ic)-1(\\246)-277(g\\252)-1(\\246bi)1(e)-1(j)-277(n)1(ac)-1(isn\\241\\252.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-333(w)28(e)-334(ws)-1(i)1(,)-334(\\273e)-334(j)1(u\\273)-334(id)1(\\241,)-333(to\\261)-1(m)28(y)-333(wylec)-1(ia\\252y)-333(nap)1(rze)-1(ciw!)]TJ 0 -13.549 Td[({)-333(A)-334(tu)-332(nik)56(a)-56(j)-332(nik)28(ogo!)]TJ 0 -13.55 Td[({)-449(Je)-1(sz)-1(cze)-1(k)-449(za)-450(w)28(c)-1(ze)-1(\\261ni)1(e)-1(;)-449(dob)1(rze)-1(,)-449(b)28(y)-449(n)1(a)-450(p)-27(o\\252e)-1(d)1(ni)1(e)-450(z)-1(d)1(\\241\\273)-1(y)1(li)-449(gos)-1(p)-27(o)-28(dar)1(z)-1(e,)-449(b)-28(o)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opaki)-333(to)-333(mo\\273)-1(e)-334(i)-333(d)1(o)-334(wiec)-1(zora)-333(ni)1(e)-334(\\261)-1(ci\\241)-28(gn)1(\\241...)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-1(;)-333(raze)-1(m)-333(ic)27(h)-333(p)1(usz)-1(cz)-1(\\241,)-333(to)-333(i)-333(raze)-1(m)-333(pr)1(z)-1(yj)1(d\\241!)]TJ 0 -13.549 Td[({)-402(A)-402(mo)-1(\\273e)-403(si\\246)-402(w)-403(mie\\261)-1(cie)-402(z)-1(ab)1(a)27(wi\\241?)-402(ma\\252)-1(o)-402(to)-402(tam)-402(pan)1(n\\363)28(w?...)-402(c\\363\\273)-403(to)-402(im)-402(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(w)28(ola)-333(do)-333(w)27(a)-55(ju)-333(si\\246)-334(\\261piesz)-1(y\\242?...)-333(he!)-333(he!)-333({)-334(p)1(rze)-1(k)28(omarza\\252)-334(si\\246)-334(\\261mie)-1(j)1(\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(iec)27(h)-333(si\\246)-334(zaba)28(wi\\241!)-333(nikt)1(o)-334(za)-334(n)1(imi)-333(nic)-333(p\\252ac)-1(ze!)]TJ 0 -13.55 Td[({)-323(Ju\\261ci,)-323(w)-324(mie\\261)-1(cie)-323(nie)-323(brak)1(uj)1(e)-324(t)28(yc)27(h)1(,)-323(c)-1(o)-323(w)-323(mam)-1(ki)-322(p)-28(osz)-1(\\252y)-323(alb)-27(o)-323(w)-323(piec)-1(ac)28(h)-323(u)]TJ -27.879 -13.549 Td[(\\233yd)1(\\363)27(w)-333(pal\\241.)1(..)-333(takie)-334(b)-27(\\246d\\241)-333(im)-334(r)1(ade)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(c)27(hm)28(ur)1(nie)-334(Nastu)1(s)-1(ia.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363ren)-333(mie)-1(skie)-333(w)-1(y)1(c)-1(ieru)1(c)27(h)28(y)-333(p)1(rz)-1(ek\\252ad)1(a,)-334(o)-333(taki)1(e)-1(go)-333(\\273)-1(ad)1(na)-333(ni)1(e)-334(s)-1(toi)1(!)]TJ 0 -13.549 Td[({)-333(Da)28(w)-1(n)1(o\\261)-1(cie,)-333(dziadku)1(,)-333(w)-334(Lip)-27(cac)27(h)-333(ni)1(e)-334(b)28(yl)1(i?)-334({)-333(z)-1(agad)1(n\\246\\252a)-334(k)1(t\\363ra\\261.)]TJ 0 -13.549 Td[({)-234(A)-233(da)28(wno,)-233(c)-1(o\\261)-234(na)-233(jes)-1(ieni)1(!)-234(Zimo)28(w)27(a\\252em)-234(s)-1(e)-234(u)-233(m)-1(i)1(\\252)-1(osiern)28(y)1(c)27(h)-233(lud)1(z)-1(i,)-233(w)28(e)-235(d)1(w)27(or)1(z)-1(em)]TJ -27.879 -13.55 Td[(pr)1(z)-1(es)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(z\\252)-1(y)-333(cz)-1(as.)]TJ 27.879 -13.549 Td[({)-333(Mo\\273e)-334(w)27(e)-333(W)83(\\363lce)-1(?)-333(u)-333(nasz)-1(ego?)-334(co?)]TJ\nET\nendstream\nendobj\n1525 0 obj <<\n/Type /Page\n/Contents 1526 0 R\n/Resources 1524 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1524 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1529 0 obj <<\n/Length 9322      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(477)]TJ -330.353 -35.866 Td[({)-256(A)-255(w)27(e)-256(W)84(\\363lc)-1(e!)-255(Ja)-256(ta)-256(za)28(w)-1(d)1(y)-256(za)-256(p)1(an)-255(brat)-255(z)-256(dzie)-1(d)1(z)-1(i)1(c)-1(ami)-256(i)-255(z)-256(dw)28(orskimi)-256(p)1(ie)-1(sk)56(a-)]TJ -27.879 -13.549 Td[(mi:)-274(zna)-55(j\\241)-273(m)-1(e)-274(i)-273(nie)-274(u)1(krzywdz\\241!)-274(D)1(a\\252)-1(y)-273(mi)-274(ciep\\252y)-273(przypi)1(e)-1(ce)-1(k)1(,)-274(w)28(arzy)83(,)-273(ile)-274(wlaz\\252)-1(o,)-273(tom)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-364(ca\\252y)-363(c)-1(zas)-364(p)-27(o)27(wr)1(\\363s)-1(\\252a)-363(kr\\246c)-1(i)1(\\252)-364(i)-363(Boga)-364(c)28(h)28(w)27(al)1(i\\252.)-363(C)-1(z\\252e)-1(k)-363(si\\246)-364(wyp)-27(orz\\241dzi\\252)-364(i)-363(p)1(ies)-1(k)28(o)28(wi)]TJ 0 -13.549 Td[(te\\273)-399(ni)1(e)-1(zgorze)-1(j)-397(b)-28(oki)-398(wyd)1(obr)1(z)-1(a\\252y!)-398(Ho!)-398(h)1(o!)-398(dziedzic)-399(m\\241dr)1(y:)-398(z)-398(dziadami)-398(trzyma)-398(i)]TJ 0 -13.549 Td[(wie,)-288(\\273)-1(e)-288(torb)-27(\\246)-289(i)-288(wsz)-1(y)-288(za)-288(darmo)-288(mia\\252)-289(b)-27(\\246dzie)-1(.)1(..)-288(he!)-288(he!)-288({)-288(a\\273)-289(b)1(rzuc)28(hem)-289(trz\\241s\\252)-289(i)-288(\\252y)1(pa\\252)]TJ 0 -13.55 Td[(p)-27(o)27(wiek)56(am)-1(i)-333(o)-28(d)-332(\\261)-1(miec)27(h)28(u)1(,)-334(a)-333(w)28(c)-1(i\\241\\273)-333(ra)-56(j)1(c)-1(o)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-328(A)-327(da\\252)-328(P)28(an)-327(Jez)-1(u)1(s)-328(z)-1(wies)-1(n)1(\\246)-1(,)-327(s)-1(p)1(rzykrzy\\252y)-327(m)-1(i)-327(s)-1(i)1(\\246)-329(p)-27(ok)28(o)-55(je)-328(i)-328(d)1(w)27(or)1(s)-1(ki)1(e)-328(przyp)-27(o-)]TJ -27.879 -13.549 Td[(c)27(h)1(lebst)27(w)28(a,)-303(zacni\\252o)-303(mi)-302(s)-1(i\\246)-303(za)-303(c)27(h)1(a\\252up)1(am)-1(i)-302(i)-303(t)28(ym)-303(\\261wiatem)-303(s)-1(ze)-1(r)1(okim...)-302(He)-1(j)1(,)-303(d)1(e)-1(sz)-1(cz)-1(y)1(k)]TJ 0 -13.549 Td[(ci)-250(t)1(o)-250(siepie)-250(k)1(ie)-1(j)-249(czys)-1(te)-249(z)-1(\\252oto,)-249(cie)-1(p)1(\\252y)-249(i)-249(rz)-1(\\246sis)-1(t)28(y)84(,)-249(i)-250(r)1(o)-28(dz\\241cy)83(,)-249(ja\\273e)-250(\\261wiat)-249(pac)27(h)1(nie)-249(m)-1(\\252o)-28(d)1(\\241)]TJ 0 -13.549 Td[(tra)28(w)28(\\241...)-333(Ka)-55(j)-333(to)-333(le)-1(cita?)-333(Dz)-1(i)1(e)-1(u)1(c)27(h)28(y?!)]TJ 27.879 -13.549 Td[(Dos\\252ys)-1(za\\252)-334(n)1(araz,)-333(\\273)-1(e)-334(p)-27(oni)1(e)-1(s\\252y)-333(s)-1(i\\246)-333(z)-334(m)-1(i)1(e)-1(j)1(s)-1(ca,)-333(os)-1(ta)28(wia)-56(j)1(\\241c)-334(go)-333(pr)1(z)-1(ed)-333(m)-1(\\252y)1(nem)-1(.)]TJ 0 -13.55 Td[({)-333(Dz)-1(i)1(e)-1(u)1(c)27(h)28(y!)]TJ 0 -13.549 Td[(Ale)-296(\\273)-1(ad)1(na)-296(j)1(u\\273)-296(nie)-296(o)-28(dk)1(rzykn\\246\\252a:)-296(do)-55(jr)1(z)-1(a\\252y)-296(k)28(ob)1(iet)27(y)84(,)-296(ci\\241)-28(gn)1(\\241c)-1(e)-296(nad)-295(s)-1(ta)28(w)28(e)-1(m)-296(ku)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)1(o)27(w)28(e)-1(j)-336(c)28(ha\\252u)1(pie,)-336(i)-337(d)1(o)-337(n)1(ic)27(h)-336(\\261miga\\252y)83(.)-336(Z)-336(p)-28(\\363\\252)-336(w)-1(si)-336(ju)1(\\273)-337(s)-1(i)1(\\246)-337(tam)-337(zbiera\\252o,)-336(b)28(y)-336(s)-1(i)1(\\246)-337(c)-1(o\\261)]TJ 0 -13.549 Td[(rze)-1(t)1(e)-1(ln)1(e)-1(go)-333(do)28(wiedzie)-1(\\242.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-240(snad)1(\\271)-241(ws)-1(ta\\252)-240(ni)1(e)-1(d)1(a)27(wn)1(o,)-241(b)-27(o)-240(jeno)-240(w)-241(p)-27(ortk)56(ac)28(h)-240(s)-1(iedzia\\252)-240(na)-240(pr)1(ogu)-240(o)28(w)-1(i)1(ja)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(on)28(u)1(c)-1(ami)-333(nogi,)-333(a)-333(o)-333(but)28(y)-333(kr)1(z)-1(y)1(c)-1(za\\252)-334(n)1(a)-334(\\273on\\246.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(pad\\252y)-381(d)1(o)-382(n)1(ie)-1(go)-381(z)-382(wrzas)-1(k)1(ie)-1(m,)-381(z)-1(ad)1(ysz)-1(an)1(e)-1(,)-381(ob\\252o)-27(c)-1(on)1(e)-1(,)-381(kt\\363r)1(e)-382(jes)-1(zc)-1(ze)-382(n)1(ie)]TJ -27.879 -13.549 Td[(m)27(y)1(te)-334(ni)-333(cz)-1(es)-1(an)1(e)-1(,)-333(a)-333(ws)-1(zystkie)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(z)-1(i)1(pi\\241ce)-334(z)-334(n)1(ie)-1(cierp)1(liw)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Da\\252)-254(s)-1(i)1(\\246)-255(im)-254(wyra)-55(jco)28(w)27(a\\242,)-254(bu)1(t)28(y)-254(c)-1(o)-254(in)1(o)-254(s)-1(ad)1(\\252e)-1(m)-254(wys)-1(maro)28(w)28(ane)-254(naci\\241)-28(gn\\241\\252,)-254(u)1(m)27(y)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(w)-334(sieni)-333(i,)-333(p)-27(o)-28(cz)-1(es)-1(u)1(j\\241c)-334(k)1(ud\\252y)-333(w)-333(ot)28(w)27(art)28(ym)-333(okni)1(e)-1(,)-333(rzuci\\252)-333(dr)1(w)-1(i)1(\\241c)-1(o:)]TJ 27.879 -13.55 Td[({)-319(Pi)1(lno)-319(w)28(am)-1(a)-319(d)1(o)-320(c)28(h\\252op)-27(\\363)28(w)-1(,)-319(co?)-319(Nie)-320(b)-27(\\363)-56(j)1(ta)-319(s)-1(i\\246,)-319(wraca)-56(j)1(\\241)-319(dzis)-1(i)1(a)-56(j)-319(z)-319(p)-28(ewno\\261c)-1(i\\241)]TJ -27.879 -13.549 Td[(Matk)56(a,)-333(d)1(a)-56(j)-333(no)-333(p)1(apier;)-333(co)-334(go)-333(to)-333(s)-1(t\\363)-55(jk)56(a)-333(przyn)1(i\\363s)-1(\\252..)1(.)-333(z)-1(a)-333(obr)1(az)-1(em)-334(le\\273)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ob)1(raca\\252)-334(go)-333(w)-334(gar\\261ciac)27(h)1(,)-334(a\\273)-333(trze)-1(p)1(n\\241)28(ws)-1(zy)-333(w)27(e\\253)-333(palcami)-333(rz)-1(ek\\252:)]TJ 0 -13.549 Td[({)-388(Wyra\\271ni)1(e)-389(s)-1(toi)-388(o)-388(t)28(ym)-389(j)1(ak)-388(w)27(\\363\\252..)1(.)-389(\\377)28(T)83(ak)-388(j)1(ak)-388(krze)-1(\\261c)-1(i)1(jan)28(y)-388(ws)-1(i)-388(Lip)-27(ec)-1(,)-388(gmin)28(y)]TJ -27.879 -13.549 Td[(T)28(ym)-1(\\363)28(w,)-499(uj)1(e)-1(zda.)1(..\")-499({)-499(a)-500(cz)-1(y)1(ta)-56(j)1(ta)-499(s)-1(e)-500(same)-1(!)-499(W)84(\\363)-56(j)1(t)-500(w)28(ama)-500(m\\363)28(wi,)-499(c)-1(o)-499(wraca)-56(j)1(\\241,)-499(to)]TJ 0 -13.55 Td[(pr)1(a)28(w)-1(d)1(a)-334(b)29(y\\242)-334(m)27(u)1(s)-1(i)1(!)]TJ 27.879 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252)-340(i)1(m)-340(pap)1(ier,)-339(kt\\363r)1(e)-1(n)-339(sz)-1(ed\\252)-339(z)-340(r)1(\\241k)-339(do)-339(r\\241k,)-339(i)-339(c)28(ho)-28(cia\\273)-340(\\273adn)1(a)-339(nie)-339(w)-1(y)1(m)-1(iar)1(-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(a\\252a)-394(ni)-394(li)1(te)-1(r)1(ki,)-394(\\273)-1(e)-394(to)-395(b)29(y\\252)-395(u)1(rz\\246)-1(d)1(o)27(wy)84(,)-394(przyp)1(ina\\252y)-394(s)-1(i)1(\\246)-395(do)-394(ni)1(e)-1(go,)-394(wlepia)-55(j\\241c)-395(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(z)-342(jak)56(\\241\\261)-342(trw)28(o\\273)-1(n)1(\\241)-342(rad)1(o\\261)-1(ci\\241,)-342(k)1(ie)-1(j)1(b)28(y)-342(w)-342(ob)1(raz,)-342(a\\273)-342(dosta\\252)-342(s)-1(i)1(\\246)-343(Han)1(c)-1(e,)-342(k)1(t\\363ra,)-342(wzi\\241)28(ws)-1(zy)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(zapask)28(\\246)-1(,)-333(o)-28(d)1(da\\252a)-333(z)-334(p)-27(o)27(wrot)1(e)-1(m.)]TJ 27.879 -13.55 Td[({)-333(Kumie,)-333(c)-1(zy)-333(to)-334(wsz)-1(ystki)1(e)-334(wrac)-1(a)-55(j\\241?)-333({)-334(sp)28(yt)1(a\\252)-1(a)-333(l\\246kliwie)]TJ 0 -13.549 Td[({)-333(Napisane,)-333(c)-1(o)-333(wraca)-56(j\\241,)-333(to)-333(wraca)-56(j)1(\\241!)]TJ 0 -13.549 Td[({)-333(Raz)-1(em)-334(br)1(ali)-333(c)-1(a\\252\\241)-333(wie)-1(\\261,)-333(to)-333(i)-333(raz)-1(em)-334(p)1(usz)-1(cz)-1(\\241!)-333({)-333(oz)-1(w)28(a\\252a)-333(s)-1(i\\246)-333(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-501(Wst\\241)-28(p)-27(c)-1(i)1(e)-1(,)-501(k)1(umo;)-501(p)1(rz)-1(emi\\246)-1(k)1(li\\261c)-1(ie)-501(\\271dzie)-1(b)1(k)28(o!)-501({)-501(zaprasza\\252)-1(a)-501(w)28(\\363)-56(j)1(to)28(w)27(a,)-500(ale)]TJ -27.879 -13.549 Td[(Hank)56(a)-320(nie)-320(c)27(hcia\\252a,)-320(naci\\241)-28(gn)1(\\246)-1(\\252a)-320(z)-1(ap)1(as)-1(k)28(\\246)-320(na)-320(c)-1(zo\\252o)-321(i)-320(p)1(ie)-1(r)1(w)-1(sza)-321(r)1(usz)-1(y\\252a)-320(z)-321(na)28(wrotem.)]TJ 27.879 -13.549 Td[(W)84(olniu)1(\\261)-1(k)28(o)-333(j)1(e)-1(n)1(o)-334(sz)-1(\\252a,)-333(ledwie)-334(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(a)-333(z)-334(r)1(ado\\261)-1(ci)-333(a)-333(s)-1(tr)1(ac)27(h)28(u)-333(zaraze)-1(m.)]TJ 0 -13.55 Td[({)-327(Ju\\261c)-1(i)1(,)-327(c)-1(o)-327(i)-327(An)28(tk)56(a)-327(w)-1(r)1(\\363)-28(c)-1(\\241,)-327(j)1(u\\261c)-1(i)1(!)-327({)-328(p)-27(om)27(y)1(\\261)-1(la\\252a)-327(ws)-1(p)1(ie)-1(r)1(a)-56(j)1(\\241c)-328(si\\246)-328(nar)1(az)-328(o)-327(p\\252ot,)]TJ -27.879 -13.549 Td[(b)-27(o)-315(tak)-315(j\\241)-315(w)-315(do\\252ku)-314(\\261)-1(cisn\\246\\252)-1(o,)-314(\\273)-1(e)-315(om)-1(al)-315(n)1(ie)-316(p)1(ad\\252a.)-315(D\\252u)1(go)-315(\\252apa\\252a)-315(p)-28(o)28(wietrze)-316(zgor\\241cz)-1(-)]TJ 0 -13.549 Td[(k)28(o)28(w)27(an)29(ym)-1(i)-444(w)28(argami...)-444(Nie,)-445(n)1(ie)-1(d)1(obrze)-445(si\\246)-445(jes)-1(zc)-1(ze)-445(c)-1(zu\\252a,)-444(dziwnie)-445(s\\252ab)-28(o.)1({)-445(W)84(r\\363)-28(ci)]TJ 0 -13.549 Td[(An)28(tek,)-303(wr\\363)-28(ci!)-303({)-303(rad)1(o\\261)-1(\\242)-303(j\\241)-303(rozpi)1(e)-1(r)1(a\\252)-1(a)-303(d)1(o)-303(krzyku)1(,)-303(a)-304(j)1(e)-1(d)1(no)-28(cze)-1(\\261nie)-303(j\\246\\252y)-303(j\\241)-303(pr)1(z)-1(eni)1(k)55(a\\242)]TJ 0 -13.549 Td[(strac)27(h)29(y)-334(j)1(akie\\261)-1(,)-333(n)1(ie)-1(p)-27(ew)-1(n)1(o\\261)-1(ci,)-333(ob)1(a)27(wy)-333(jesz)-1(cz)-1(e)-334(zgo\\252a)-334(ciem)-1(n)1(e)-1(.)]TJ 27.879 -13.55 Td[(Coraz)-368(w)27(oln)1(iej)-368(sz)-1(\\252a)-368(i)-368(ci\\246\\273)-1(ej,)-368(u)1(s)-1(u)29(w)27(a)-55(j\\241c)-368(s)-1(i\\246)-368(p)-27(o)-28(d)-368(p)1(\\252ot)28(y)83(,)-368(b)-27(o)-368(ca\\252\\241)-368(drog\\241)-368(w)28(ali\\252y)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)84(,)-370(lecia\\252y)-370(sz)-1(u)1(m)-1(n)1(ie,)-370(\\273e)-370(\\261)-1(miec)27(hami,)-369(rozwrz)-1(es)-1(zcz)-1(an)1(e)-370(i)-370(j)1(a\\261)-1(n)1(ie)-1(j)1(\\241c)-1(e)-370(r)1(ado\\261)-1(ci\\241,)-369(a)]TJ\nET\nendstream\nendobj\n1528 0 obj <<\n/Type /Page\n/Contents 1529 0 R\n/Resources 1527 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1527 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1532 0 obj <<\n/Length 8673      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(478)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(e)-453(bacz\\241c)-453(na)-452(pl)1(uc)27(h)1(\\246)-1(,)-452(k)1(up)1(i\\252y)-452(s)-1(i\\246)-452(p)-28(o)-27(d)-452(c)27(h)1(a\\252)-1(u)1(pami,)-452(to)-452(n)1(ad)-452(s)-1(ta)28(w)28(e)-1(m)-452(i)-452(ra)-56(j)1(c)-1(o)28(w)28(a\\252y)]TJ 0 -13.549 Td[(za)27(wzi\\246)-1(cie.)]TJ 27.879 -13.549 Td[(Dop)-27(\\246)-1(d)1(z)-1(i)1(\\252)-1(a)-333(j)1(\\241)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a.)]TJ 0 -13.549 Td[({)-376(Ju)1(\\261)-1(ci,)-375(\\273)-1(e)-376(wiec)-1(ie!)-376(n)1(o,)-376(to)-375(dop)1(ie)-1(r)1(o)-376(no)28(win)1(a.)-376(Cz)-1(ek)56(am)-376(na)-376(n)1(i\\241)-376(co)-376(d)1(nia,)-375(a)-376(kiej)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(z\\252a,)-334(zw)28(ali\\252a)-333(m)-1(e)-334(k)1(ie)-1(j)-333(p)1(a\\252\\241)-334(w)-333(c)-1(i)1(e)-1(mi\\246.)-333(Od)-333(w)27(\\363)-55(jta)-333(id)1(z)-1(iecie)-1(?)]TJ 27.879 -13.55 Td[({)-333(Przyt)28(wierdzi\\252)-333(i)-333(na)28(w)27(et)-333(z)-334(pap)1(ieru)-333(o)-333(t)28(ym)-334(p)1(rz)-1(ecz)-1(yta\\252.)]TJ 0 -13.549 Td[({)-435(P)1(rz)-1(ecz)-1(yta\\252,)-434(to)-435(ju)1(\\261)-1(ci,)-435(\\273e)-435(p)-28(ewne!)-435(Ch)28(w)27(a\\252a)-435(ci,)-435(P)29(anie,)-435(p)-27(o)28(w)-1(r)1(\\363)-28(c\\241)-435(c)27(h)28(u)1(dziaki,)]TJ -27.879 -13.549 Td[(p)-27(o)27(wr)1(\\363)-28(c)-1(\\241)-333(gosp)-28(o)-28(d)1(arze)-1(!)-333({)-333(s)-1(ze)-1(p)1(ta\\252a)-333(gor\\241c)-1(o)-333(rozw)28(o)-28(dz\\241c)-334(r\\246c)-1(e.)]TJ 27.879 -13.549 Td[(\\212zy)-334(p)-27(osypa\\252y)-333(si\\246)-334(j)1(e)-1(j)-333(z)-334(wyb)1(lak\\252yc)28(h)-333(o)-28(cz)-1(u)1(,)-334(a\\273)-333(Hank)56(a)-333(s)-1(i\\246)-334(zdu)1(mia\\252a.)]TJ 0 -13.549 Td[({)-333(My\\261la\\252ac)27(h)1(,)-333(\\273)-1(e)-334(zap)-27(om)-1(stuj)1(e)-1(cie,)-334(a)-333(wy)-333(w)-334(b)-27(e)-1(k)1(,)-333(no,)-333(no!)1(...)]TJ 0 -13.549 Td[({)-260(Co)-259(w)-1(y)1(?)-1(!)-259(w)-260(tak)56(\\241)-259(p)-28(or)1(\\246)-260(b)28(yc)27(h)-259(p)-27(oms)-1(to)28(w)28(a\\252a!)-260(Cz\\252)-1(o)28(wiek)-260(j)1(e)-1(n)1(o)-260(z)-260(b)1(iedy)-259(da)-259(c)-1(zas)-1(em)]TJ -27.879 -13.55 Td[(fol)1(g\\246)-263(oz)-1(oro)28(wi,)-262(ale)-263(w)-263(se)-1(r)1(c)-1(u)-262(co)-263(in)1(s)-1(ze)-1(go)-262(s)-1(iedzi,)-262(\\273)-1(e)-263(cz)-1(y)-262(c)27(h)1(c)-1(e,)-263(czy)-263(n)1(ie)-263(c)27(h)1(c)-1(e,)-263(a)-262(z)-263(dru)1(gimi)]TJ 0 -13.549 Td[(rad)1(o)28(w)27(a\\242)-334(si\\246)-334(m)28(usi)-333(alb)-28(o)-333(i)-333(sm)27(uci\\242...)-333(Nie)-333(p)-28(or)1(e)-1(d)1(z)-1(i)-333(\\273y\\242)-334(z)-334(osobn)1(a,)-334(n)1(ie...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252y)-438(k)28(o\\252o)-438(ku\\271ni)1(:)-438(m)-1(\\252ot)28(y)-438(b)1(i\\252y)-438(h)28(uk)1(liwie,)-438(ogie)-1(\\253)-437(bu)1(c)27(ha\\252)-438(cz)-1(erw)28(on)28(y)-438(z)]TJ -27.879 -13.549 Td[(ogni)1(s)-1(k)56(a,)-340(a)-341(k)28(o)28(w)27(al)-340(obr)1(\\246)-1(cz)-341(naci\\241)-28(ga\\252)-340(na)-341(k)28(o\\252o)-340(p)-28(o)-27(d)-340(\\261)-1(cian\\241.)-340(Sp)-27(ostrze)-1(g\\252sz)-1(y)-340(Hank)28(\\246)-341(wy-)]TJ 0 -13.549 Td[(pr)1(os)-1(to)28(w)28(a\\252)-334(si\\246)-334(i)-333(wpar)1(\\252)-334(o)-28(czy)-334(w)-333(jej)-333(rozgor\\241cz)-1(k)28(o)28(w)28(an\\241)-333(t)28(w)27(arz.)]TJ 27.879 -13.55 Td[({)-333(A)-334(co?...)-333(do)-27(c)-1(ze)-1(k)56(a\\252y)-333(s)-1(i)1(\\246)-334(Lip)-27(c)-1(e)-334(\\261wi\\246ta!...)-333(wraca)-56(j)1(\\241)-334(p)-27(ono)-333(n)1(ie)-1(k)1(t\\363re:)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystkie)-333(w)-1(r)1(ac)-1(a)-55(j\\241,)-333(w)27(\\363)-55(jt)-333(o)-333(t)28(ym)-334(cz)-1(y)1(ta\\252!)-334({)-333(p)-27(opr)1(a)27(wi\\252a)-333(go)-334(J)1(agust)27(y)1(nk)56(a.)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystkie,)-333(z)-1(b)-27(\\363)-56(j)1(\\363)28(w)-334(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-334(t)1(ak)-334(zaraz)-333(nie)-334(wyp)1(usz)-1(cz)-1(\\241,)-333(n)1(ie...)]TJ 0 -13.549 Td[(Hance)-497(a\\273)-496(s)-1(i\\246)-496(w)-497(g\\252o)28(w)-1(i)1(e)-497(z)-1(ak)28(ot)1(\\252)-1(o)28(w)28(a\\252o)-497(i)-496(se)-1(r)1(c)-1(e)-496(dziw)-497(n)1(ie)-497(p)-27(\\246)-1(k)1(\\252)-1(o)-496(z)-497(b)-27(\\363lu)1(,)-496(ale)]TJ -27.879 -13.549 Td[(zdzie)-1(r)1(\\273)-1(y\\252a)-333(ud)1(e)-1(r)1(z)-1(enie)-333(i)-333(o)-28(dc)28(ho)-28(d)1(z)-1(\\241c)-334(r)1(z)-1(ek\\252a)-333(m)27(u)-333(ze)-334(stras)-1(zn\\241)-333(n)1(ie)-1(n)1(a)28(w)-1(i)1(\\261)-1(ci\\241:)]TJ 27.879 -13.55 Td[({)-333(B)-1(y)-333(ci)-333(te)-1(n)-333(p)1(s)-1(i)-333(oz\\363r)-333(pr)1(z)-1(yr)1(\\363s)-1(\\252)-333(do)-333(p)-27(o)-28(dn)1(ie)-1(b)1(ienia!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(sz)-1(y)1(\\252a)-397(kroku)-396(u)1(c)-1(iek)56(a)-56(j)1(\\241c)-398(o)-27(d)-397(j)1(e)-1(go)-397(\\261mie)-1(c)28(h)28(u,)-396(c)-1(o)-397(j)1(akb)28(y)-396(k\\252ami)-397(c)27(h)28(wyt)1(a\\252)]TJ -27.879 -13.549 Td[(za)-334(se)-1(r)1(c)-1(e.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(z)-333(ganku)-333(ob)-27(ejrza\\252a)-334(si\\246)-334(n)1(a)-334(\\261wiat.)]TJ 0 -13.549 Td[({)-333(Ma\\273e)-334(s)-1(i)1(\\246)-334(i)-333(m)-1(a\\273e)-1(.)1(..)-333(c)-1(i)1(\\246)-1(\\273k)28(o)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(z)-334(p)1(\\252)-1(u)1(giem)-1(,)-333(wyj)1(e)-1(c)28(ha\\242)-334(n)1(a)-334(r)1(ol\\246)]TJ 0 -13.55 Td[(Uda)28(w)28(a\\252a)-334(sp)-27(ok)28(\\363)-56(j:)]TJ 0 -13.549 Td[({)-333(Rann)28(y)-333(d)1(e)-1(sz)-1(cz)-334(i)-333(s)-1(t)1(are)-1(j)-333(b)1(ab)28(y)-333(tan)1(ie)-1(c)-333(nied\\252u)1(go)-334(tr)1(w)27(a)-55(j\\241.)]TJ 0 -13.549 Td[({)-333(T)83(rza)-334(b)-27(\\246dzie)-334(t)28(ymc)-1(zas)-1(em)-334(sadzi\\242)-334(ame)-1(r)1(yki)-333(p)-27(o)-28(d)-333(mot)28(yc)-1(zk)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-383(Kob)1(iet)-383(in)1(o)-383(patr)1(z)-1(e\\242)-1(;)-382(s)-1(p)-27(\\363\\271ni\\252y)-382(s)-1(i\\246)-383(b)-27(e)-1(z)-383(t\\246)-383(no)28(win)1(\\246)-1(,)-382(ale)-383(przyj)1(d\\241...)-382(b)28(y\\252am)-383(u)]TJ -27.879 -13.549 Td[(ni)1(c)27(h)-333(z)-334(wiec)-1(zora,)-333(ws)-1(zystkie)-333(s)-1(i\\246)-333(obiec)-1(a\\252y)-333(n)1(a)-334(o)-28(d)1(rob)-27(e)-1(k)1(.)]TJ 27.879 -13.55 Td[(W)-433(i)1(z)-1(b)1(ie)-434(j)1(u\\273)-433(ogie)-1(\\253)-432(bu)1(z)-1(o)28(w)28(a\\252)-1(;)-432(c)-1(iep\\252o)-433(b)28(y)1(\\252o)-433(i)-433(ja\\261niej)-433(n)1(i\\271li)-433(na)-433(d)1(w)27(or)1(z)-1(e.)-433(J\\363zk)55(a)]TJ -27.879 -13.549 Td[(skrob)1(a\\252)-1(a)-231(ziem)-1(n)1(iaki,)-231(a)-231(d)1(z)-1(i)1(e)-1(ciak)-231(wrze)-1(sz)-1(cz)-1(a\\252)-231(wni)1(e)-1(b)-27(og\\252os)-1(y)-231(mimo)-231(z)-1(ab)1(a)27(wia\\253)-230(s)-1(tar)1(s)-1(zyc)27(h)]TJ 0 -13.549 Td[(dziec)-1(i)1(.)-334(Han)1(k)56(a)-334(p)1(rzykl\\246kn\\241)28(wsz)-1(y)-333(pr)1(z)-1(ed)-333(k)28(o\\252ysk)55(\\241)-333(j\\246\\252a)-333(go)-334(k)56(armi\\242.)]TJ 27.879 -13.549 Td[({)-389(J\\363zia,)-389(ni)1(e)-1(c)28(h)-389(Pi)1(e)-1(tr)1(e)-1(k)-389(n)1(arz\\241dzi)-389(des)-1(k)1(i,)-389(gn\\363)-55(j)-389(b)-27(\\246)-1(d)1(z)-1(i)1(e)-390(wyw)28(oz)-1(i\\252)-389(o)-28(d)-388(Flor)1(ki)-389(na)]TJ -27.879 -13.549 Td[(te)-392(z)-1(agon)28(y)-392(k)1(ie)-1(l)1(e)-393(P)28(acz)-1(es)-1(i)1(o)27(w)28(ego)-393(\\273yta.)-392(Ni)1(m)-393(p)1(luc)28(ha)-392(pr)1(z)-1(ejd)1(z)-1(ie,)-392(par)1(\\246)-393(f)1(ur)-392(wywiez)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(co)-334(si\\246)-334(ma)-333(w)27(a\\252\\246s)-1(a\\242)-334(p)-27(o)-333(pr\\363\\273ni)1(c)-1(y!)]TJ 27.879 -13.55 Td[({)-333(Przy)-333(w)27(as)-333(to)-334(n)1(ikto)-333(z)-334(leni)1(e)-1(m)-333(s)-1(i\\246)-333(nie)-334(sto)28(w)27(ar)1(z)-1(y)1(s)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(i)-333(s)-1(ama)-333(kul)1(as)-1(\\363)28(w)-334(n)1(ie)-334(\\273a\\252uj)1(\\246)-1(!)-333({)-333(p)-28(o)28(ws)-1(t)1(a\\252)-1(a)-333(c)27(h)1(o)28(w)27(a)-55(j\\241c)-334(p)1(ie)-1(r)1(s)-1(i)1(.)]TJ 0 -13.549 Td[({)-327(Hal)1(e)-1(,)-326(ady)-326(b)28(ym)-327(na)-326(\\261)-1(mier\\242)-327(zap)-28(omni)1(a\\252)-1(a,)-326(pr)1(z)-1(ec)-1(i)1(e)-1(k)-326(to)-327(o)-28(d)-326(p)-27(o\\252e)-1(d)1(nia)-326(\\261)-1(wi\\241tk)28(o!)]TJ -27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(z)-334(p)1(ro)-28(ce)-1(sj\\246)-333(z)-1(ap)-27(o)28(w)-1(i)1(ada\\252,)-333(o)-28(d\\252o\\273on\\241)-333(ze)-334(\\261)-1(wi\\246te)-1(go)-333(Mar)1(k)56(a)-334(n)1(a)-334(ok)1(ta)27(w)28(\\246...)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iek)-333(to)-333(ino)-333(w)-334(kr)1(z)-1(y)1(\\273)-1(o)28(w)27(e)-333(dn)1(i)-334(b)29(yw)27(a)-55(j\\241)-333(pr)1(o)-28(ce)-1(sje!...)]TJ 0 -13.55 Td[({)-234(Z)-234(am)27(b)-27(on)28(y)-234(zap)-28(o)28(wiad)1(a\\252)-235(n)1(a)-234(dzis)-1(i)1(a)-56(j)1(,)-234(to)-234(m)27(usi,)-234(co)-234(i)-234(b)-27(e)-1(z)-234(krzy\\273)-1(o)28(wyc)27(h)-233(dn)1(i)-234(m)-1(o\\273na)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi\\242)-334(d)1(o)-333(\\014gur)-333(i)-333(\\261wi\\246)-1(ci\\242)-334(gr)1(anice)-1(.)]TJ\nET\nendstream\nendobj\n1531 0 obj <<\n/Type /Page\n/Contents 1532 0 R\n/Resources 1530 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1530 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1535 0 obj <<\n/Length 9375      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(479)]TJ -330.353 -35.866 Td[({)-344(Ch)1(\\252)-1(op)1(aki)-343(b)-28(\\246d\\241)-343(br)1(a\\252)-1(y)-343(d)1(z)-1(isia)-55(j)-344(n)1(a)-344(p)-27(ok\\252adan)1(k)28(\\246)-344(p)-28(o)-343(k)28(op)-28(cac)27(h)1(!)-344({)-343(z)-1(a\\261mia\\252a)-344(si\\246)]TJ -27.879 -13.549 Td[(J\\363zk)55(a)-333(d)1(o)-334(w)28(c)27(ho)-27(dz\\241c)-1(ego)-334(W)1(itk)56(a.)]TJ 27.879 -13.549 Td[({)-325(Id\\241)-325(j)1(u\\273,)-325(id)1(\\241.)-325(Bie\\273)-1(yj)1(c)-1(i)1(e)-326(z)-325(nimi,)-324(a)-325(z)-1(ar)1(z)-1(\\241d)1(\\271)-1(cie)-1(,)-324(c)-1(o)-325(p)-27(otrza.)-325(Ja)-325(ostan)1(\\246)-326(w)-325(c)27(h)1(a-)]TJ -27.879 -13.549 Td[(\\252up)1(ie,)-276(ob)1(rz\\241dz\\246)-276(i)-275(\\261)-1(n)1(iadan)1(ie)-276(zgotuj)1(\\246)-1(.)-275(J\\363zk)55(a)-275(z)-276(Wit)1(kiem)-276(b)-28(\\246d\\241)-275(don)1(os)-1(i)1(li)-275(z)-1(iemniak)1(i)-276(n)1(a)]TJ 0 -13.549 Td[(p)-27(ole)-1(!)-284({)-285(zarz\\241dza\\252a)-285(Hank)56(a)-284(w)-1(y)1(z)-1(iera)-55(j\\241c)-285(n)1(a)-285(k)28(omorni)1(c)-1(e,)-285(kt)1(\\363re)-285(p)-28(o)-27(okr\\246c)-1(an)1(e)-285(w)-285(p\\252ac)28(h)28(t)28(y)]TJ 0 -13.55 Td[(i)-433(zapaski,)-432(\\273)-1(e)-433(ledwie)-433(im)-433(b)28(y\\252o)-433(o)-27(c)-1(zy)-433(wid)1(a\\242)-1(,)-432(z)-434(k)28(osz)-1(y)1(k)55(ami)-433(n)1(a)-433(r\\246ku)-432(i)-433(mot)28(yc)-1(zk)56(am)-1(i)1(,)]TJ 0 -13.549 Td[(sc)27(ho)-27(dzi\\252y)-333(s)-1(i\\246)-334(p)-27(o)-28(d)-333(\\261cian\\246)-334(ot)1(rz)-1(epu)1(j\\241c)-333(trep)28(y)-333(o)-334(p)1(rzyc)-1(i)1(e)-1(sie)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)28(wied\\252a)-284(j)1(e)-284(z)-1(ar)1(az)-284(Jagust)28(ynk)56(a)-283(przez)-284(prze\\252)-1(az)-284(n)1(ad)-283(p)-28(ol)1(n\\241)-283(drog\\241,)-283(k)56(a)-56(j)-283(tu)1(\\273)-284(pr)1(z)-1(y)]TJ -27.879 -13.549 Td[(br)1(ogu)-333(le\\273)-1(a\\252y)-333(c)-1(zarn)1(e)-1(,)-333(p)1(rze)-1(si\\241k\\252e)-334(w)28(o)-28(d\\241)-333(zagon)28(y)83(.)]TJ 27.879 -13.549 Td[(St)1(an\\246\\252)-1(y)-274(wnet)-274(do)-274(rob)-27(ot)27(y)84(,)-274(p)-28(o)-274(dwie)-274(na)-275(zagoni)1(e)-1(,)-274(g\\252o)28(w)27(ami)-274(do)-274(s)-1(iebi)1(e)-275({)-275(d)1(z)-1(iu)1(ba\\252y)]TJ -27.879 -13.549 Td[(mot)28(yc)-1(zk)56(am)-1(i)-276(d)1(o\\252ki,)-276(a)-276(wraziws)-1(zy)-276(w)27(e\\253)-276(ziem)-1(n)1(iak,)-276(p)1(rzygarn)1(ia\\252y)-276(go)-276(z)-1(iemi\\241,)-276(ok)28(opu)1(j\\241c)]TJ 0 -13.55 Td[(zaraz)-1(em)-334(w)-333(p)-28(op)1(rze)-1(cz)-1(n)1(e)-334(rz\\241dk)1(i.)]TJ 27.879 -13.549 Td[(Cz)-1(tery)-333(r)1(obi\\252y)84(,)-334(stara)-333(b)28(y)1(\\252)-1(a)-333(j)1(e)-1(n)1(o)-334(n)1(a)-334(p)1(rzypr)1(z)-1(\\241\\273k)28(\\246)-1(,)-333(d)1(o)-334(p)-27(ogani)1(ania.)]TJ 0 -13.549 Td[(C\\363\\273)-1(,)-312(ki)1(e)-1(j)-312(rob)-27(ota)-312(s)-1(z\\252a)-313(n)1(ies)-1(p)-27(oro!.)1(..)-312(r\\246)-1(ce)-313(grab)1(ia\\252y)-312(z)-313(z)-1(i)1(m)-1(n)1(a)-313(i)-312(w)-312(bru)1(z)-1(d)1(ac)27(h)-312(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(mokro,)-418(w)-419(t)1(re)-1(p)29(y)-419(n)1(abi)1(e)-1(ra\\252o)-418(s)-1(i)1(\\246)-419(w)27(o)-27(dy)84(,)-419(a)-418(sz)-1(mat)28(y)-418(na)-418(nic)-419(si\\246)-419(mara\\252y)-418(w)-419(b)1(\\252o)-28(cie)-1(,)-418(b)-27(o)]TJ 0 -13.549 Td[(desz)-1(cz)-1(,)-380(c)28(ho)-28(\\242)-380(c)-1(iep\\252y)-380(i)-380(coraz)-381(d)1(rob)1(niejsz)-1(y)84(,)-380(m\\273)-1(y\\252)-380(ci\\246)-1(gi)1(e)-1(m,)-380(rozpry)1(s)-1(ku)1(j\\241c)-380(s)-1(i\\246)-380(p)-28(o)-380(ski-)]TJ 0 -13.55 Td[(bac)28(h,)-397(a)-398(trze)-1(p)1(i\\241c)-398(p)-28(o)-397(s)-1(ad)1(ac)27(h,)-397(c)-1(o)-397(z)-1(wies)-1(i\\252y)-397(okwiec)-1(on)1(e)-399(ga\\252\\246z)-1(ie)-398(n)1(ad)-398(d)1(rog\\246)-398(i)-398(z)-398(j)1(ak)55(\\241\\261)]TJ 0 -13.549 Td[(lu)1(b)-28(o\\261c)-1(i)1(\\241)-334(n)1(as)-1(ta)28(wia\\252y)-333(s)-1(i)1(\\246)-334(na)-333(pl)1(uc)27(h)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Ale)-351(ju)1(\\273)-352(sz)-1(\\252o)-351(n)1(a)-351(o)-28(d)1(m)-1(ian)1(\\246)-1(:)-350(k)28(ok)28(ot)28(y)-351(pi)1(a\\252)-1(y)84(,)-351(n)1(ieb)-28(o)-351(si\\246)-351(s)-1(tr)1(onami)-351(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(o)-350(nie-)]TJ -27.879 -13.549 Td[(zgorz)-1(ej)-252(p)1(rze)-1(tar)1(te)-1(,)-252(j)1(as)-1(k)28(\\363\\252ki)-252(j)1(\\246)-1(\\252y)-252(\\261m)-1(i)1(ga\\242)-253(p)-27(o)27(wietrzem)-253(kiejb)29(y)-252(na)-252(zw)-1(i)1(ady)84(,)-252(a)-253(za\\261)-253(wron)29(y)]TJ 0 -13.549 Td[(uciek)56(a\\252)-1(y)-333(z)-334(k)56(aleni)1(c)-334(i)-333(nies\\252)-1(y)-333(si\\246)-334(cic)27(h)29(u\\261k)28(o)-334(a)-333(ni)1(s)-1(k)28(o)-333(nad)-333(p)-27(olami.)]TJ 27.879 -13.55 Td[(Bab)28(y)-339(gm)-1(era\\252y)-339(pr)1(z)-1(ygi)1(\\246)-1(te)-339(do)-339(z)-1(agon)1(\\363)27(w,)-339(p)-27(o)-28(dob)1(ne)-340(d)1(o)-340(k)1(\\252)-1(\\246b)-27(\\363)27(w)-339(s)-1(zmat)-340(p)1(rze)-1(mo-)]TJ -27.879 -13.549 Td[(cz)-1(on)28(y)1(c)27(h,)-479(p)-27(ore)-1(d)1(z)-1(a)-55(j\\241c,)-480(w)28(oln)1(iu\\261k)28(o)-480(r)1(obi\\241c,)-480(a)-479(z)-480(d\\252ugi)1(m)-1(i)-479(o)-28(d)1(p)-28(o)-28(czynk)56(ami,)-480(\\273e)-480(to)-480(n)1(a)]TJ 0 -13.549 Td[(o)-28(d)1(rob)-27(e)-1(k)-308(pr)1(z)-1(ysz)-1(\\252y)84(,)-308(a\\273)-309(dopi)1(e)-1(r)1(o)-309(stara,)-308(obsadza)-56(j\\241ca)-309(gr)1(o)-28(c)27(h)1(e)-1(m)-309(p)1(iec)27(hot)1(\\241)-309(nad)1(br)1(u\\271dzia)]TJ 0 -13.549 Td[(zac)-1(z\\246)-1(\\252a)-333(w)-334(g\\252os)-334(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(dok)28(o\\252a:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(wiela)-333(dzisia)-56(j)-333(gosp)-27(o)-28(dy\\253)-332(w)-334(p)-27(olu)-333(ni)-333(n)1(a)-334(ogr)1(o)-28(dac)28(h.)]TJ 0 -13.55 Td[({)-333(C)-1(h)1(\\252op)28(y)-333(wraca)-56(j\\241,)-333(to)-333(ni)1(e)-334(rob)-27(ota)-333(im)-334(w)-333(g\\252o)27(wie!)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(t\\252u)1(s)-1(te)-333(jad\\252o)-333(nar)1(z)-1(\\241d)1(z)-1(a)-55(j\\241)-333(i)-333(pierzyn)28(y)-333(grzej\\241...)]TJ 0 -13.549 Td[({)-390(Pr)1(z)-1(e\\261)-1(miew)27(acie,)-390(a)-390(s)-1(amej)-390(ja\\273e)-391(\\252yst)28(y)-390(d)1(o)-391(n)1(ic)27(h)-389(dr)1(yga)-56(j)1(\\241!)-390({)-390(rze)-1(k\\252a)-390(Koz\\252o)28(w)27(a.)]TJ -27.879 -13.549 Td[({)-365(Nie)-365(w)-1(y)1(pr\\246)-365(s)-1(i)1(\\246)-1(,)-365(co)-365(m)-1(i)-365(j)1(u\\273)-365(Lip)-27(c)-1(e)-365(obmierz)-1(\\252y)-365(b)-27(ez)-366(c)27(h)1(\\252op)-28(\\363)28(w.)-365(S)1(taram)-365(prze)-1(ciek,)-365(ale)]TJ 0 -13.549 Td[(pr)1(os)-1(to)-401(p)-27(o)27(wiem,)-402(\\273e)-402(c)27(h)1(o)-28(\\242)-402(to)-401(s)-1(\\241)-401(ju)1(c)27(h)28(y)84(,)-401(\\252a)-56(j)1(dusy)84(,)-402(\\261wi\\246)-1(d)1(lerze)-402(i)-402(zabi)1(jaki)1(,)-402(a)-401(ni)1(e)-1(c)27(h)-401(si\\246)]TJ 0 -13.55 Td[(ja)28(wi)-306(c)27(h)1(o)-28(\\242b)28(y)-306(i)-306(ta)-306(na)-56(j)1(gorsz)-1(a)-306(p)-27(okrak)56(a,)-306(to)-306(z)-1(ar)1(no)-306(z)-307(n)1(im)-307(r)1(a\\271)-1(n)1(ie)-1(j)-305(i)-306(w)27(es)-1(elej;)-306(i)-306(lek)28(c)-1(i)1(e)-1(j)-306(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(.)-333(K)1(t\\363ra)-333(c)-1(o)-333(insze)-1(go)-333(p)-28(o)28(wie,)-333(z)-1(e\\252\\273)-1(e)-334(j)1(ak)-333(pies)-1(.)]TJ 27.879 -13.549 Td[({)-273(Wycz)-1(ek)56(a\\252)-1(y)-273(si\\246)-274(n)1(a)-273(nic)28(h)-273(k)28(obiet)28(y)-273(kiej)-273(k)56(ania)-273(na)-273(d)1(e)-1(sz)-1(cz)-1(!)-273({)-273(w)27(estc)27(hn)1(\\246)-1(\\252a)-273(kt\\363r)1(a\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(j)1(e)-1(d)1(na)-333(to)-333(c)-1(ze)-1(k)56(an)1(ie)-334(ci\\246)-1(\\273k)28(o)-333(przyp)1(\\252)-1(aci,)-333(a)-333(dzie)-1(u)1(c)27(h)28(y)-333(n)1(a)-56(j)1(prz\\363)-28(d)1(z)-1(iej.)1(..)]TJ 0 -13.549 Td[({)-333(\\233e)-334(i)-333(trzy)-333(kw)27(ar)1(ta\\252y)-334(n)1(ie)-334(min)1(\\241,)-333(a)-334(d)1(obro)-27(dzie)-1(j)-332(c)27(hr)1(z)-1(ci\\242)-334(n)1(ie)-334(nad)1(\\241\\273)-1(y)84(...)]TJ 0 -13.549 Td[({)-399(Star)1(e)-1(,)-399(a)-399(ba)-55(j\\241)-399(trzy)-400(p)-27(o)-399(trzy:)-399(dy)1(\\242)-400(na)-399(to)-399(P)28(an)-399(Jez)-1(u)1(s)-400(s)-1(t)28(w)28(orzy\\252)-400(k)28(ob)1(iet\\246)-1(!)-399(n)1(ie)]TJ -27.879 -13.55 Td[(grze)-1(c)28(h)-333(mie\\242)-334(d)1(z)-1(i)1(e)-1(c)28(k)28(o!)-333({)-333(p)-27(o)-28(dn)1(ies)-1(\\252a)-333(g\\252os)-333(przek)28(orni)1(e)-334(Gr)1(z)-1(eli)-332(z)-334(kr)1(z)-1(y)1(w)27(\\241)-333(g\\246b\\241)-333(k)28(ob)1(ieta.)]TJ 27.879 -13.549 Td[({)-333(A)-334(wy)-333(ci\\246)-1(gi)1(e)-1(m)-334(sw)27(o)-55(je:)-333(z)-1(a)28(wdy)-333(za)-334(b)-27(\\246k)55(ar)1(tami)-334(stoicie!)]TJ 0 -13.549 Td[({)-315(A)-314(z)-1(a)28(wdy)84(,)-315(j)1(a\\273)-1(e)-315(d)1(o)-315(sam)-1(ej)-315(\\261mie)-1(r)1(c)-1(i)-314(k)56(a\\273)-1(d)1(e)-1(m)28(u)-315(d)1(o)-315(o)-28(czu)-315(stan\\246)-315(i)-314(rze)-1(kn)1(\\246)-1(:)-314(b)-27(\\246)-1(k)56(art)]TJ -27.879 -13.549 Td[(cz)-1(y)-305(nie)-306({)-306(zar\\363)28(wno)-305(lud)1(z)-1(k)1(ie)-306(nasie)-1(n)1(ie,)-306(p)1(ra)28(w)27(o)-305(m)-1(a)-306(n)1(a)-306(\\261wie)-1(cie)-306(jedn)1(o)-306(i)-305(jedn)1(ak)28(o)-306(je)-306(P)28(an)]TJ 0 -13.549 Td[(Jez)-1(u)1(s)-334(s)-1(zan)28(u)1(je,)-334(w)28(edle)-334(zas\\252)-1(u)1(g)-333(jeno)-333(a)-334(gr)1(z)-1(ec)27(h)1(\\363)27(w...)]TJ 27.879 -13.55 Td[(Zakrzycz)-1(a\\252y)-333(j\\241)-333(wy\\261m)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-334(wz)-1(gard)1(liwie.)-333(Zabi\\252a)-333(r\\246c)-1(e)-334(i)-333(p)-27(okiw)28(a\\252a)-333(g\\252)-1(o)28(w)28(\\241.)]TJ 0 -13.549 Td[({)-333(Szc)-1(z\\246)-1(\\261\\242)-334(Bo\\273)-1(e)-333(na)-333(rob)-27(ot\\246)-1(!)-333(j)1(ak\\273)-1(e)-333(idzie?)-334({)-333(krzykn)1(\\246)-1(\\252a)-333(Hank)56(a)-333(z)-334(pr)1(z)-1(e\\252az)-1(u)1(.)]TJ\nET\nendstream\nendobj\n1534 0 obj <<\n/Type /Page\n/Contents 1535 0 R\n/Resources 1533 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1533 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1538 0 obj <<\n/Length 8642      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(480)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(!)-333(d)1(obr)1(z)-1(e,)-333(ino)-333(m)-1(ok)1(ro.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)1(raku)1(je)-334(ziem)-1(n)1(iak)28(\\363)28(w)-1(?)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-334(n)1(iec)-1(o)-333(na)-333(\\273)-1(erd)1(c)-1(e.)]TJ 0 -13.549 Td[({)-333(Donosz)-1(\\241,)-333(il)1(e)-334(p)-27(otrza;)-334(j)1(e)-1(n)1(o)-334(mi)-333(si\\246)-334(widzi,)-333(co)-334(za)-333(grub)-27(o)-333(kra)-55(jane...)]TJ 0 -13.549 Td[({)-333(Za)-334(gr)1(ub)-27(o,)-333(dy\\242)-334(i)1(no)-333(na)-333(p)-28(\\363\\252,)-333(p)1(rze)-1(cie)-1(k)-333(u)-333(m\\252yn)1(arza)-334(co)]TJ 0 -13.55 Td[(dr)1(obn)1(ie)-1(j)1(s)-1(ze)-322(ziem)-1(n)1(iaki)-321(ca\\252)-1(e)-321(s)-1(ad)1(z)-1(\\241.)-321(Ro)-28(c)28(ho)-321(p)-28(o)28(wiedzia\\252,)-321(\\273)-1(e)-321(takie)-322(s\\241)-321(dw)28(a)-322(r)1(az)-1(y)]TJ -27.879 -13.549 Td[(pl)1(e)-1(n)1(niejsz)-1(e.)]TJ 27.879 -13.549 Td[({)-381(M)1(usi,)-381(miem)-1(i)1(e)-1(c)28(k)55(a)-380(to)-381(mo)-28(da,)-380(b)-28(o)-380(jak)-380(Lip)-27(c)-1(e)-381(Lip)-27(c)-1(ami,)-380(z)-1(a)28(wdy)-380(s)-1(i)1(\\246)-382(ziem)-1(n)1(iaki)]TJ -27.879 -13.549 Td[(kr)1(a)-56(ja\\252o)-333(na)-333(t)28(yla,)-333(c)28(h)28(yla)-333(o)-28(cz)-1(k)28(\\363)28(w)-334(mia\\252y)-333({)-333(kw)28(\\246)-1(k)56(a\\252a)-334(spr)1(z)-1(ec)-1(zliwie)-333(Gulb)1(as)-1(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(Moi\\261c)-1(i)1(e)-1(,)-333(pr)1(z)-1(ec)-1(i)1(e)-1(k)-333(d)1(z)-1(isiejsi)-334(l)1(ud)1(z)-1(i)-333(ni)1(e)-334(g\\252up)1(s)-1(i)-333(w)28(c)-1(zora)-55(js)-1(zyc)28(h...)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(tera)-333(ja)-55(jo)-333(c)27(h)1(c)-1(e)-333(b)28(y\\242)-334(m\\246)-1(d)1(rsz)-1(e)-334(o)-27(d)-333(kur)1(y)-333(i)-333(s)-1(tad)1(u)-333(pr)1(z)-1(ew)27(o)-28(d)1(z)-1(i)1(\\242)-1(..)1(.)]TJ 0 -13.55 Td[({)-326(Rz)-1(ekli\\261cie)-1(!)-326(Al)1(e)-327(p)-27(o)-327(p)1(ra)28(wdzie,)-326(c)-1(o)-326(p)-27(oniekt\\363r)1(e)-1(,)-326(c)27(h)1(o)-28(\\242)-327(l)1(ata)-326(m)-1(a)-55(j\\241,)-326(r)1(oz)-1(u)1(m)27(u)-326(n)1(ie)]TJ -27.879 -13.549 Td[(nab)29(y\\252y!)-333({)-333(z)-1(ak)28(o\\253)1(c)-1(zy\\252a)-334(Han)1(k)56(a)-334(cofa)-55(j\\241c)-334(si\\246)-334(z)-333(prze)-1(\\252azu.)]TJ 27.879 -13.549 Td[({)-391(Zad)1(uf)1(ana)-390(w)-391(s)-1(ob)1(ie)-1(,)-390(j)1(akb)28(y)-390(ju)1(\\273)-391(na)-391(ca\\252e)-1(j)-390(gosp)-28(o)-27(darce)-391(Boryn)1(\\363)27(w)-390(s)-1(iedzia\\252a)-391({)]TJ -27.879 -13.549 Td[(mruk)1(n\\246\\252a)-334(Koz\\252o)28(w)27(a)-333(obziera)-56(j)1(\\241c)-334(si\\246)-334(za)-334(n)1(i\\241.)]TJ 27.879 -13.549 Td[({)-303(P)28(on)1(iec)27(ha)-55(jcie)-303(jej:)-303(sz)-1(cz)-1(ere)-303(z\\252)-1(ot)1(o,)-303(nie)-303(k)28(obi)1(e)-1(ta!)-302(Nie)-304(wiad)1(a,)-303(cz)-1(yb)29(y)-303(si\\246)-304(n)1(alaz\\252)-1(a)]TJ -27.879 -13.55 Td[(o)-28(d)-433(n)1(iej)-433(lepsz)-1(a)-433(i)-433(m)-1(\\241d)1(rze)-1(j)1(s)-1(za.)-433(Co)-434(d)1(nia)-433(z)-434(n)1(i\\241)-433(s)-1(i)1(e)-1(d)1(z)-1(\\246,)-433(a)-434(o)-27(c)-1(zy)-433(i)-433(roz)-1(u)1(mie)-1(n)1(ie)-434(mam.)]TJ 0 -13.549 Td[(Nacie)-1(r)1(z)-1(p)1(ia\\252a)-334(si\\246)-334(on)1(a)-334(i)-333(p)1(rze)-1(sz)-1(\\252a)-333(krzy\\273e)-1(,)-333(\\273e)-334(ni)1(e)-1(c)28(h)-333(B)-1(\\363g)-333(br)1(oni.)1(..)]TJ 27.879 -13.549 Td[({)-495(Cz)-1(ek)56(a)-495(j\\241)-494(jes)-1(zc)-1(ze)-496(n)1(iejedn)1(o)-1(.)1(..)-495(Jagn)1(a)-495(w)-495(c)27(h)1(a\\252upi)1(e)-1(,)-494(i)-495(s)-1(k)28(or)1(o)-495(An)28(tek)-495(wr\\363)-28(ci,)]TJ -27.879 -13.549 Td[(cude\\253k)56(a)-333(s)-1(i)1(\\246)-334(tu)-333(zac)-1(zn\\241)-333(i)-333(brew)28(e)-1(ry)1(je,)-333(b)-28(\\246dzie)-334(cz)-1(ego)-333(s)-1(\\252uc)28(ha\\242...)]TJ 27.879 -13.549 Td[({)-382(\\233)-1(e)-382(Jagna)-382(z)-383(w)27(\\363)-55(jtem)-383(si\\246)-383(s)-1(p)1(rz\\246)-1(g\\252a,)-382(c)-1(osik)-382(mi)-383(o)-382(t)28(ym)-383(b)1(\\241kn\\246li)-382({)-383(p)1(ra)28(wda)-382(to?)]TJ -27.879 -13.55 Td[(Za\\261)-1(mia\\252y)-333(si\\246)-334(z)-334(Fi)1(lip)1(ki,)-333(\\273)-1(e)-333(p)28(yta,)-333(o)-333(c)-1(zym)-334(j)1(u\\273)-333(w)-1(r)1(\\363ble)-334(\\261wiergo)-28(c\\241.)]TJ 27.879 -13.549 Td[({)-342(Nie)-343(r)1(oz)-1(p)1(usz)-1(cz)-1(a)-55(jta)-342(oz)-1(or)1(\\363)28(w)-1(:)-342(i)-342(wiater)-342(c)-1(zase)-1(m)-343(s\\252uc)28(ha)-342(i)-342(roznosi,)-342(k)56(a)-56(j)-342(n)1(ie)-343(p)-27(o-)]TJ -27.879 -13.549 Td[(trzeba!)-333({)-333(z)-1(gromi\\252a)-333(Jagust)28(ynk)56(a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(gi\\246)-1(\\252y)-343(si\\246)-343(do)-343(roli)1(,)-343(dziabk)1(i)-343(m)-1(i)1(ga\\252y)-343(s)-1(zc)-1(z\\246)-1(k)56(a)-55(j\\241c)-343(niekiej)-343(o)-343(k)56(am)-1(i)1(e)-1(n)1(ie)-1(,)-342(a)-344(on)1(e)]TJ -27.879 -13.549 Td[(ra)-55(jco)28(w)27(a\\252y)-333(z)-1(a)28(wzi\\246)-1(cie)-334(ca\\252\\241)-334(wie\\261)-334(ob)1(gaduj)1(\\241c)-1(:)]TJ 27.879 -13.55 Td[(Za\\261)-420(Han)1(k)55(a)-419(s)-1(z\\252a)-419(o)-28(d)-419(pr)1(z)-1(e\\252az)-1(u)-419(c)28(h)28(y\\252kiem)-420(p)-27(o)-28(d)-419(wi\\261niami,)-419(b)-27(o)-420(j)1(\\241)-419(c)27(h)28(wyta\\252y)-419(z)-1(a)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\246)-440(ob)28(wis)-1(\\252e)-440(i)-440(przem)-1(o)-28(czo)-1(n)1(e)-441(ga\\252\\246z)-1(i)1(e)-1(,)-440(j)1(akb)28(y)-440(nab)1(ite)-440(z)-1(b)1(ie)-1(l)1(a\\252)-1(y)1(m)-441(j)1(u\\273)-441(p)1(\\241k)28(o)28(w)-1(i)1(e)-1(m)-440(i)]TJ 0 -13.549 Td[(listec)-1(zk)56(am)-1(i.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(\\252a)-333(w)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e)-334(p)1(rze)-1(gl\\241d)1(a\\242)-334(gosp)-28(o)-28(d)1(arst)28(w)27(o.)]TJ 0 -13.549 Td[(Od)-388(sam)27(y)1(c)27(h)-388(\\261w)-1(i)1(\\241t)-389(p)1(ra)28(wie)-389(si\\246)-389(ni)1(e)-389(wyc)27(h)28(y)1(la\\252a)-389(z)-388(dom)27(u)1(,)-388(\\273)-1(e)-388(to)-389(p)-27(ogorsz)-1(y)1(\\252)-1(o)-388(si\\246)]TJ -27.879 -13.55 Td[(jej)-317(p)-28(o)-318(wyw)28(o)-28(d)1(z)-1(ie.)-318(Dzisie)-1(j)1(s)-1(za)-318(n)1(o)27(win)1(a)-318(z)-1(erw)28(a\\252a)-318(j\\241)-318(z)-318(\\252\\363\\273k)55(a)-318(i)-317(trzyma\\252a)-318(na)-318(n)1(ogac)27(h,)-317(\\273)-1(e)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242)-334(si\\246)-334(c)28(h)28(wia\\252a)-334(n)1(a)-334(k)56(a\\273dym)-333(kroku)1(,)-333(z)-1(agl)1(\\241da\\252a)-333(p)-28(o)-333(k)56(\\241tac)27(h)-333(\\271l\\241c)-334(si\\246)-334(coraz)-334(b)1(arze)-1(j)1(.)]TJ 27.879 -13.549 Td[(A)-359(to)-359(k)1(ro)28(wy)-359(b)28(y\\252y)-358(jak)28(o\\261)-359(os)-1(o)28(wia\\252e)-359(i)-359(do)-359(p)-27(\\363\\252)-359(b)-27(ok)28(\\363)28(w)-359(w)-360(gn)1(o)-56(j)1(u,)-358(prosiaki)-358(c)-1(o\\261)-359(z)-1(a)]TJ -27.879 -13.549 Td[(ma\\252o)-334(p)1(rzyros\\252)-1(y)84(,)-333(na)28(w)28(e)-1(t)-333(g\\246s)-1(i)-333(wyda)28(w)28(a\\252y)-333(s)-1(i\\246)-333(dziw)-1(n)1(ie)-334(n)1(iem)-1(r)1(a)27(w)28(e)-1(,)-333(j)1(akb)28(y)-333(zam)-1(or)1(z)-1(on)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-358(Ady)-357(b)28(y\\261)-358(c)27(ho)-27(\\242)-359(wiec)27(h)1(c)-1(iem)-358(w)-1(y)1(tar\\252)-358(w)27(a\\252ac)28(ha!)-358({)-358(wsiad\\252a)-358(n)1(a)-358(Pietrk)56(a,)-358(wyj)1(e)-1(\\273-)]TJ -27.879 -13.549 Td[(d\\273a)-56(j)1(\\241c)-1(ego)-333(do)-333(gno)-55(ju,)-333(al)1(e)-334(par)1(ob)-28(ek)-333(c)-1(osik)-333(mruk)1(n\\241\\252)-334(z\\252e)-1(go)-333(i)-333(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252.)]TJ 27.879 -13.55 Td[(W)-318(s)-1(to)-27(dole)-319(n)1(o)28(w)27(a)-318(z)-1(gry)1(z)-1(ota:)-318(w)-319(ku)1(pi)1(e)-319(z)-1(iemniak)28(\\363)28(w,)-318(le)-1(\\273\\241c)-1(y)1(c)27(h)-318(na)-318(klepisku)1(,)-319(p)29(y-)]TJ -27.879 -13.549 Td[(sk)55(a\\252)-444(se)-445(w)-444(na)-55(jlepsz)-1(e)-444(Jagusin)-443(w)-1(i)1(e)-1(pr)1(z)-1(ek,)-444(za\\261)-445(ku)1(ry)-444(gr)1(z)-1(eba\\252y)-444(w)-444(p)-27(o\\261)-1(lad)1(z)-1(i)1(e)-1(,)-444(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(da)28(wno)-339(m)-1(ia\\252)-340(b)29(y\\242)-340(z)-1(n)1(ie)-1(sion)28(y)-339(na)-340(g\\363r\\246.)-340(S)1(krzycz)-1(a\\252a)-340(za)-340(to)-340(J\\363zk)28(\\246)-341(i)-339(do)-340(W)1(itk)28(o)28(w)-1(y)1(c)27(h)-339(ku-)]TJ 0 -13.549 Td[(d\\252\\363)28(w)-419(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-1(a,)-419(l)1(e)-1(d)1(w)-1(i)1(e)-420(s)-1(i)1(\\246)-420(c)27(h\\252op)1(ak)-419(w)-1(y)1(\\261)-1(li)1(z)-1(gn)1(\\241\\252)-420(i)-419(uciek\\252,)-419(a)-420(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyna)-419(b)-27(e)-1(k)1(ie)-1(m)-419(i)]TJ 0 -13.549 Td[(sk)55(ar)1(g\\241)-334(si\\246)-334(zani)1(e)-1(s\\252)-1(a:)]TJ 27.879 -13.55 Td[({)-222(Haruj)1(\\246)-223(ci\\246)-1(gi)1(e)-1(m)-223(k)1(ie)-1(j)-221(k)28(o\\253,)-222(a)-223(wy)-222(kr)1(z)-1(ycz)-1(y)1(c)-1(ie:)-222(Jagni)1(e)-1(,)-222(co)-223(si\\246)-223(ca\\252e)-223(dn)1(ie)-223(w)28(a\\252k)28(oni,)]TJ -27.879 -13.549 Td[(to)-333(pr)1(z)-1(epu)1(s)-1(zc)-1(zac)-1(ie!)]TJ\nET\nendstream\nendobj\n1537 0 obj <<\n/Type /Page\n/Contents 1538 0 R\n/Resources 1536 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1523 0 R\n>> endobj\n1536 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1541 0 obj <<\n/Length 9536      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(481)]TJ -330.353 -35.866 Td[({)-333(No,)-333(c)-1(ic)28(ho,)-333(g\\252up)1(ia,)-333(c)-1(i)1(c)27(ho!)-333(S)1(am)-1(a)-333(widzisz)-1(,)-333(co)-334(si\\246)-334(tu)-332(w)-1(y)1(rabi)1(a...)]TJ 0 -13.549 Td[({)-333(Mog\\252am)-334(to)-333(ws)-1(zy\\242kiem)27(u)-333(u)1(radzi\\242?)-334(co?)]TJ 0 -13.549 Td[({)-333(No,)-333(c)-1(ic)28(ho!)-333(Nie\\261)-1(ta)-333(zie)-1(mni)1(aki,)-333(b)-27(o)-334(zbr)1(akni)1(e)-334(k)28(obietom!)]TJ 0 -13.549 Td[(Da\\252a)-309(ju)1(\\273)-310(sp)-28(ok)28(\\363)-55(j)-309(kr)1(z)-1(yk)28(om.)-309({)-309(Pr)1(a)27(wd)1(a,)-309(dziew)27(cz)-1(yn)1(a)-309(w)-1(szys)-1(tk)1(ie)-1(m)28(u)-309(n)1(ie)-310(u)1(radzi,)]TJ -27.879 -13.549 Td[(a)-293(n)1(a)-56(j)1(e)-1(mnik)1(i!..)1(.)-293(Bo\\273)-1(e)-293(si\\246)-293(z)-1(mi\\252uj)1(.)-293(Od)-292(r)1(ana)-293(j)1(u\\273)-293(z)-1(ac)28(ho)-28(d)1(u)-292(w)-1(y)1(gl\\241da)-55(j\\241.)-292(Dorabi)1(a\\242)-294(si\\246)-293(w)]TJ 0 -13.55 Td[(na)-55(jemnik)28(\\363)28(w)-273(to)-273(jak)1(b)28(y)-273(wilk)1(i)-273(zgo)-28(dzi\\252)-273(do)-272(o)27(wiec)-274(w)28(o)-28(d)1(z)-1(enia.)-272(Pr)1(z)-1(ez)-274(sumienia)-272(s)-1(\\241)-273(lu)1(dzie:)]TJ 27.879 -13.549 Td[(Roz)-1(m)28(y\\261la\\252a)-244(z)-244(gor)1(yc)-1(z\\241,)-243(w)-1(y)1(w)-1(i)1(e)-1(ra)-55(j\\241c)-244(ca\\252\\241)-244(z\\252o\\261)-1(\\242)-244(n)1(a)-244(wiepr)1(z)-1(aku)1(,)-244(j)1(a\\273)-1(e)-243(z)-244(kwikiem)]TJ -27.879 -13.549 Td[(p)-27(ogna\\252,)-333(\\273)-1(e)-333(go)-334(to)-333(i)-333(\\212apa)-333(jesz)-1(cz)-1(e)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-333(z)-1(a)-333(uc)28(ho)-333(o)-28(d)1(pro)28(w)28(adza\\252...)]TJ 27.879 -13.549 Td[(Do)-326(s)-1(ta)-55(jn)1(i)-327(p)-27(otem)-327(z)-1(a)-55(jrza\\252a,)-326(ale)-327(jakb)29(y)-327(p)-27(o)-327(n)1(o)28(w)27(\\241)-326(z)-1(gr)1(yz)-1(ot\\246)-327({)-326(ano)-326(klacz)-327(obgr)1(y-)]TJ -27.879 -13.549 Td[(za\\252)-1(a)-333(p)1(ust)27(y)-333(\\273\\252\\363b,)-333(a)-333(\\271)-1(r)1(e)-1(b)1(ak,)-333(ut)28(yt\\252an)28(y)-333(ki)1(e)-1(j)-333(\\261wini)1(a,)-334(s\\252om\\246)-334(wyc)-1(i)1(\\241)-28(ga\\252)-334(z)-333(p)-28(o)-28(d)1(\\261)-1(ci\\363\\252ki.)]TJ 27.879 -13.549 Td[({)-357(Ku)1(bi)1(e)-358(b)29(y)-357(se)-1(r)1(c)-1(e)-357(p)-27(\\246)-1(k\\252o,)-356(kiejb)28(y)-356(c)-1(i)1(\\246)-358(t)1(akim)-357(z)-1(ob)1(ac)-1(zy\\252)-357({)-356(s)-1(ze)-1(p)1(n\\246\\252a)-357(z)-1(ak)1(\\252ada)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(im)-333(z)-1(a)-333(dr)1(abk)28(\\246)-334(siano)-333(i)-333(g\\252as)-1(zc)-1(z\\241c)-334(p)-27(o)-333(m)-1(i\\246ciuc)28(hn)28(yc)28(h)-333(a)-334(ciep\\252yc)28(h)-333(c)27(h)1(rapac)28(h.)]TJ 27.879 -13.549 Td[(Ale)-300(j)1(u\\273)-300(n)1(ie)-300(p)-27(os)-1(z\\252a)-300(d)1(ale)-1(j)1(:)-299(ogarn\\246\\252o)-300(j)1(\\241)-300(n)1(araz)-300(zniec)27(h)1(\\246)-1(ce)-1(n)1(ie)-300(i)-299(taki)-299(p\\252acz)-300(c)27(h)29(yc)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(za)-410(gar)1(dzie)-1(l)1(,)-409(\\273)-1(e)-410(wspar\\252sz)-1(y)-409(si\\246)-409(o)-410(b)1(ar\\252\\363g)-409(Pietrk)28(o)28(wy)-409(z)-1(ar)1(yc)-1(za\\252a,)-409(s)-1(ama)-409(nie)-409(wie)-1(d)1(z)-1(\\241c)]TJ 0 -13.549 Td[(lacz)-1(ego.)]TJ 27.879 -13.549 Td[(T)83(ak)-277(zbrak)1(\\252)-1(o)-277(j)1(e)-1(j)-277(si\\252,)-277(\\273)-1(e)-277(opad\\252a)-277(w)-277(s)-1(ob)1(ie)-278(kiej)-277(ten)-277(k)56(am)-1(i)1(e)-1(\\253)-277(ci\\246\\273)-1(ki)-277(Ju)1(\\273)-278(ni)1(e)-278(mog\\252)-1(a)]TJ -27.879 -13.55 Td[(ur)1(e)-1(d)1(z)-1(i)1(\\242)-287(d)1(oli,)-285(m)-1(\\363)-55(j)-286(Jez)-1(u)1(,)-286(n)1(ie)-286(m)-1(og\\252a,)-285(a)-286(to)-28(\\242)-286(p)-28(o)-27(c)-1(zu\\252a)-286(si\\246)-286(tak)56(a)-286(opu)1(s)-1(zc)-1(zona)-285(na)-286(\\261wie)-1(cie,)]TJ 0 -13.549 Td[(jak)28(o)-340(to)-340(d)1(rz)-1(ew)28(o)-341(r)1(os)-1(n)1(\\241c)-1(e)-340(na)-340(wywie)-1(i)1(s)-1(ku)1(,)-340(s)-1(amotn)1(e)-341(i)-340(na)-340(k)56(a\\273)-1(d)1(\\241)-340(z)-1(\\252a)-340(pr)1(z)-1(y)1(go)-28(d\\246)-340(w)-1(y)1(s)-1(ta-)]TJ 0 -13.549 Td[(wione!)-399(An)1(i)-399(wy\\273ali\\242)-399(s)-1(i)1(\\246)-400(p)1(rze)-1(d)-398(kim!)-399(I)-399(an)1(i)-399(k)28(o\\253ca)-399(p)1(rz)-1(ewidzie\\242)-400(z\\252e)-1(j)-398(dol)1(i!)-399(Nic,)-399(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-398(tr)1(u\\242)-398(s)-1(i)1(\\246)-398(z)-1(gry)1(z)-1(ot\\241)-397(i)-398(p)1(\\252ak)55(an)1(iem)-1(..)1(.)-398(n)1(ic)-398(kromie)-398(u)1(dr\\246ki)-397(w)-1(i)1(e)-1(cz)-1(n)1(e)-1(j)-397(i)-397(c)-1(ze)-1(k)56(an)1(ia)]TJ 0 -13.549 Td[(na)-333(gorsze)-1(...)]TJ 27.879 -13.55 Td[(\\231rebak)-362(li)1(z)-1(a\\252)-362(j\\241)-362(p)-27(o)-362(t)28(w)27(arzy)84(,)-362(\\273)-1(e)-363(b)-27(ez)-1(w)28(olni)1(e)-363(pr)1(z)-1(y)1(tula\\252a)-362(g\\252o)28(w)27(\\246)-362(do)-362(jego)-362(k)55(ar)1(ku)-362(i)]TJ -27.879 -13.549 Td[(zanosi\\252a)-334(si\\246)-334(coraz)-334(b)-27(ole\\261)-1(n)1(iej.)]TJ 27.879 -13.549 Td[(C\\363\\273)-460(j)1(e)-1(j)-459(ta)-459(p)-27(o)-460(gosp)-27(o)-28(dar)1(c)-1(e,)-459(p)-28(o)-459(b)-27(ogac)-1(t)28(wie,)-459(p)-28(o)-459(lu)1(dzkim)-459(u)28(w)27(a\\273ani)1(u,)-459(kiej)-459(la)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie)-241(n)1(ie)-241(mia\\252a)-241(an)1(i)-241(j)1(e)-1(d)1(nej)-240(c)27(h)28(wil)1(i)-241(szc)-1(z\\246)-1(\\261liw)28(o\\261)-1(ci)-240(w)-241(ca\\252)-1(y)1(m)-241(\\273)-1(y)1(c)-1(iu)1(,)-240(nic)-241(zgo\\252a!)-240(Sk)56(ar\\273y\\252a)]TJ 0 -13.549 Td[(si\\246)-334(tak)-333(\\273a\\252)-1(o\\261ni)1(e)-1(,)-333(ja\\273e)-334(kl)1(ac)-1(z)-334(zar\\273a\\252a)-334(k)1(u)-333(niej,)-333(tar)1(ga)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(na)-333(\\252a\\253cuc)28(h)28(u.)]TJ 27.879 -13.55 Td[(Za)28(w)-1(l)1(e)-1(k\\252a)-403(s)-1(i\\246)-404(d)1(o)-404(i)1(z)-1(b)28(y)-403(i)-403(przysadziws)-1(zy)-404(d)1(o)-404(p)1(ie)-1(r)1(s)-1(i)-403(rozkrzycz)-1(an)1(e)-1(go)-403(c)27(h\\252op)1(ak)55(a)]TJ -27.879 -13.549 Td[(zapatrzy\\252a)-237(si\\246)-237(b)-27(e)-1(zm)27(y\\261ln)1(ie)-237(w)-237(z)-1(ap)-27(o)-28(cone)-237(sz)-1(yb)29(y)83(,)-236(z)-1(b)1(ru)1(\\273)-1(d)1(\\273)-1(on)1(e)-238(o)-27(c)-1(iek)56(a)-56(j)1(\\241c)-1(ymi)-236(krop)1(lam)-1(i)1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(c)28(k)28(o)-334(j)1(ak)28(o\\261)-334(mat)28(yjasi\\252o)-333(s)-1(k)56(aml\\241c)-334(i)-333(p)-27(op\\252aku)1(j\\241c)-1(.)]TJ 0 -13.549 Td[({)-473(C)-1(i)1(c)27(ho,)-473(malu)1(\\261)-1(ki)1(,)-474(cic)28(ho!..)1(.)-473(w)-1(r)1(\\363)-28(c)-1(i)-473(tatu)1(lo,)-473(pr)1(z)-1(y)1(w)-1(i)1(e)-1(zie)-474(ci)-474(k)1(urask)56(a...)-473(wr\\363)-28(ci,)]TJ -27.879 -13.549 Td[(synk)56(a)-314(na)-315(k)28(o\\253)-314(wsadzi...)-314(cic)27(h)1(o,)-314(m)-1(alu)1(\\261)-1(k)1(i:)-314(A,)-315(a,)-314(a!)-314(k)28(otki)-314(dw)28(a!)-314(s)-1(zare)-315(b)1(ure)-314(ob)28(ydw)28(a!..)1(.)]TJ 0 -13.55 Td[(W)84(r\\363)-28(ci)-333(tatulo,)-333(wr\\363)-27(c)-1(i!)-333({)-333(pr)1(z)-1(y\\261pi)1(e)-1(wyw)28(a\\252a)-334(h)28(u)1(\\261)-1(t)1(a)-56(j\\241c)-333(go)-334(i)-333(c)28(ho)-28(d)1(z)-1(\\241c)-334(p)-27(o)-333(izbie.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(i)-333(w)-1(r)1(\\363)-28(ci!)-333({)-334(p)-27(ot)28(wie)-1(r)1(dzi\\252a)-334(sobi)1(e)-334(pr)1(z)-1(ysta)-55(j\\241c)-334(n)1(agle)-1(.)]TJ 0 -13.549 Td[(P\\252omie\\253)-309(j\\241)-310(ogar)1(n\\241\\252,)-309(m)-1(o)-28(c)-310(r)1(oz)-1(p)1(r\\246\\273)-1(y\\252a)-309(przygi\\246te)-310(pl)1(e)-1(cy)-310(i)-309(tak)56(a)-310(r)1(ado\\261\\242)-311(wst\\241)-28(p)1(i-)]TJ -27.879 -13.549 Td[(\\252a)-352(w)-353(se)-1(r)1(c)-1(e,)-352(\\273)-1(e)-352(s)-1(i\\246)-352(ju)1(\\273)-353(rw)28(a\\252a)-352(do)-352(k)28(omory)-352(rzn\\241\\242)-352(k)55(a)28(w)28(a\\252)-353(\\261wini)1(n)28(y)-352(la)-352(niego,)-352(\\273e)-353(ju)1(\\273)-353(p)-27(o)]TJ 0 -13.549 Td[(gorza\\252k)28(\\246)-354(c)27(h)1(c)-1(ia\\252a)-353(p)-27(os)-1(y\\252a\\242)-354(l)1(a)-354(n)1(ie)-1(go,)-353(n)1(a)27(w)28(et)-354(j)1(u\\273)-354(k)1(u)-353(s)-1(kr)1(z)-1(yn)1(i)-353(s)-1(z\\252a,)-353(b)28(y)-353(s)-1(i\\246)-353(przy)28(o)-28(d)1(z)-1(ia\\242)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(ie)-253(la)-253(niego)-253({)-253(ale)-253(ni)1(m)-254(to)-252(ucz)-1(yn)1(i\\252a,)-253(p)1(rz)-1(y)1(p)-28(omin)1(ki)-253(s\\252\\363)27(w)-253(k)28(o)28(w)27(al)1(o)27(wyc)28(h)-253(spad)1(\\252y)]TJ 0 -13.55 Td[(na)-265(ob)-28(ol)1(a\\252)-1(e)-266(se)-1(r)1(c)-1(e)-266(ki)1(e)-1(j)-265(jastrz\\246)-1(b)1(ie)-266(os)-1(tr)1(ymi)-266(p)1(az)-1(u)1(rami,)-266(zm)-1(ar)1(t)28(w)-1(i)1(a\\252a)-266(na)-266(miejsc)-1(u)1(,)-266(ob)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ra)-55(j\\241c)-355(s)-1(i)1(\\246)-356(j)1(e)-1(n)1(o)-355(p)-28(o)-355(i)1(z)-1(b)1(ie)-356(r)1(oz)-1(p)1(alon)28(ym)-355(wz)-1(r)1(okiem)-1(,)-354(jakb)28(y)-354(z)-1(a)-355(r)1(atun)1(kiem)-1(,)-355(n)1(ie)-355(wie)-1(d)1(z)-1(\\241c)]TJ 0 -13.549 Td[(zn\\363)28(w,)-334(co)-333(m)27(y\\261le\\242)-1(,)-333(co)-334(p)-27(o)-28(cz)-1(yn)1(a\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(ak)-333(nie)-333(w)-1(r)1(\\363)-28(c)-1(i)1(?)-334(Jez)-1(u)1(!)-333(Je)-1(zu!)-333({)-333(j\\246kn\\246\\252a)-333(c)27(h)28(wyta)-55(j\\241c)-334(si\\246)-334(za)-334(g\\252o)28(w)28(\\246)-1(,)]TJ 0 -13.549 Td[(Ba\\252a)-355(si\\246)-354(te)-1(go)-354(m\\363)28(w)-1(i)1(\\242)-1(,)-354(a)-354(g\\252os)-354(te)-1(n)-353(h)28(ucz)-1(a\\252)-354(w)-354(niej)-354(k)1(ie)-1(j)-353(w)-355(stud)1(ni)1(:)-354(goto)28(w)27(a\\252)-354(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.55 Td[(wrza\\252)-334(i)-333(wz)-1(b)1(iera\\252)-334(w)-333(pi)1(e)-1(rsiac)28(h)-333(krzykiem)-334(strac)28(h)28(u.)]TJ 27.879 -13.549 Td[(Dzie)-1(ci)-273(j)1(\\246)-1(\\252y)-272(s)-1(i\\246)-273(za)-273(\\252b)28(y)-273(w)28(o)-28(d)1(z)-1(i\\242)-273(i)-273(k)1(rzyc)-1(ze)-1(\\242,)-273(wyci\\241)-28(gn)1(\\246)-1(\\252a)-273(j)1(e)-274(za)-273(d)1(rzw)-1(i)1(,)-273(z)-1(ab)1(iera)-56(j)1(\\241c)]TJ\nET\nendstream\nendobj\n1540 0 obj <<\n/Type /Page\n/Contents 1541 0 R\n/Resources 1539 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1539 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1545 0 obj <<\n/Length 8438      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(482)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-318(do)-318(n)1(arz)-1(\\241d)1(z)-1(an)1(ia)-318(\\261niad)1(ani)1(a,)-318(b)-27(o)-318(ju)1(\\273)-319(J\\363zk)56(a)-318(z)-1(agl)1(\\241da\\252a)-318(d)1(o)-318(iz)-1(b)29(y)-318(wietrz\\241c)-319(\\252ak)28(omie,)]TJ 0 -13.549 Td[(cz)-1(y)-333(zgoto)27(w)28(ane.)]TJ 27.879 -13.549 Td[(\\212zy)-319(usta\\242)-320(m)28(usia\\252y)-319(i)-319(b)-27(ole)-1(\\261cie)-320(p)1(rzytai\\242)-319(s)-1(i\\246)-319(w)-320(d)1(usz)-1(y)84(,)-319(b)-27(o)-319(jarzmo)-320(co)-28(d)1(z)-1(ienn)1(e)-1(go)]TJ -27.879 -13.549 Td[(tru)1(du)-333(w)-333(k)56(ark)-333(s)-1(i)1(\\246)-334(wpij)1(a\\252o)-334(p)1(rzyp)-28(omin)1(a)-56(j)1(\\241c)-1(,)-333(\\273e)-334(rob)-27(ota)-333(c)-1(ze)-1(k)56(a\\242)-334(n)1(ie)-334(mo\\273)-1(e...)]TJ 27.879 -13.549 Td[(Uwija\\252a)-404(si\\246)-404(te)-1(\\273,)-404(j)1(ak)-404(m)-1(og\\252a,)-403(c)27(ho)-27(\\242)-405(n)1(ogi)-404(s)-1(i)1(\\246)-405(p)-27(o)-28(d)-404(n)1(i\\241)-404(p)1(l\\241ta\\252y)-404(i)-404(wsz)-1(ystk)28(o)-404(le-)]TJ -27.879 -13.55 Td[(cia\\252o)-372(z)-372(r\\241k.)-371(Jeno)-372(wzdyc)28(ha\\252a)-372(\\273a\\252o\\261)-1(n)1(ie,)-372(\\252z)-1(\\246)-372(j)1(ak)56(\\241)-372(pu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-372(niekiedy)84(,)-372(a)-371(w)27(e)-372(\\261wiat)]TJ 0 -13.549 Td[(zam)-1(glon)29(y)-333(t\\246)-1(skni)1(e)-334(s)-1(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-320(Cz)-1(y)-320(t)1(o)-320(Jagusia)-320(nie)-320(wyjd)1(z)-1(i)1(e)-321(do)-320(sadzenia?)-320({)-320(wrz)-1(asn\\246\\252a)-320(J\\363zk)55(a)-320(p)1(rze)-1(z)-320(okno.)]TJ 0 -13.549 Td[(Hank)56(a)-333(o)-28(d)1(s)-1(ta)28(wi\\252a)-333(gar)-333(z)-334(barszc)-1(ze)-1(m)-333(i)-334(n)1(a)-333(dru)1(g\\241)-334(stron)1(\\246)-334(p)-27(obieg\\252a.)]TJ 0 -13.549 Td[(St)1(ary)-462(le\\273)-1(a\\252)-462(na)-462(b)-27(ok,)-462(t)28(w)27(arz\\241)-462(do)-462(okn)1(a,)-463(j)1(akb)28(y)-462(p)1(atrz\\241c)-463(na)-462(Jagn)1(\\246)-1(,)-462(cz)-1(es)-1(z\\241c)-1(\\241)]TJ -27.879 -13.549 Td[(d\\252u)1(gie,)-334(j)1(as)-1(n)1(e)-334(w\\252os)-1(y)-333(p)1(rz)-1(ed)-333(lu)1(s)-1(terk)1(ie)-1(m,)-333(na)-333(skrzyni)-333(u)1(s)-1(ta)28(wion)28(ym.)]TJ 27.879 -13.55 Td[({)-333(C)-1(zy)-333(to)-333(dzis)-1(i)1(a)-56(j)-333(\\261wi\\246)-1(to,)-333(\\273e)-334(do)-333(rob)-27(ot)28(y)-333(ni)1(e)-334(wyc)27(h)1(o)-28(dzicie)-1(?...)]TJ 0 -13.549 Td[({)-333(Z)-334(r)1(oz)-1(p)1(le)-1(cion)28(y)1(m)-1(i)-333(w\\252os)-1(ami)-333(nie)-333(p)-28(ol)1(e)-1(t\\246...)]TJ 0 -13.549 Td[({)-333(Od)-333(\\261w)-1(i)1(tania,)-333(mog\\252a\\261)-334(je)-333(ju\\273)-333(dzie)-1(si\\246\\242)-334(razy)-333(z)-1(ap)1(le\\261)-1(\\242!)]TJ 0 -13.549 Td[({)-333(Mog\\252am,)-334(al)1(e)-334(ni)1(e)-334(z)-1(ap)1(le)-1(t)1(\\252)-1(am!)]TJ 0 -13.549 Td[({)-333(Jagna,)-333(wy)-333(tak)-333(z)-1(e)-333(m)-1(n)1(\\241)-334(n)1(ie)-334(igr)1(a)-56(j)1(c)-1(ie!)]TJ 0 -13.55 Td[({)-457(Bo)-457(c)-1(o?)-457(Od)1(pra)28(wicie)-457(m)-1(n)1(ie)-458(mo\\273e)-458(alb)-27(o)-457(wytr)1(\\241c)-1(icie)-457(z)-458(zas)-1(\\252u)1(g?)-458({)-457(w)28(ark)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(har)1(do)-333(ni)1(e)-334(\\261)-1(p)1(ies)-1(z\\241c)-334(s)-1(i)1(\\246)-334(z)-334(cz)-1(es)-1(an)1(ie)-1(m{)-333(nie)-333(u)-333(w)27(as)-333(s)-1(iedz\\246)-334(i)-333(ni)1(e)-334(na)-333(w)27(asze)-1(j)-333(\\252asc)-1(e!)]TJ 27.879 -13.549 Td[({)-333(A)-334(i)1(no)-333(k)55(a)-55(j?)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(U)-334(siebie)-333(jez)-1(d)1(e)-1(m,)-333(b)28(y\\261c)-1(ie)-333(s)-1(ob)1(ie)-334(to)-333(bacz)-1(y)1(li...)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(o)-28(cie)-1(c)-333(z)-1(amr\\241,)-333(to)-333(s)-1(i)1(\\246)-334(p)-28(ok)56(a\\273e)-1(,)-333(cz)-1(y)-333(u)-333(siebie)-333(jes)-1(te\\261)-1(!)]TJ 0 -13.55 Td[({)-333(Ale)-334(p)-27(\\363ki)-333(\\273)-1(y)1(j\\241,)-333(to)-333(ja)-333(w)27(a)-55(ju)-333(mog\\246)-334(d)1(rzw)-1(i)-333(p)-27(ok)56(az)-1(a\\242.)]TJ 0 -13.549 Td[({)-333(Mni)1(e)-1(!)-333(mnie!)-333({)-333(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-1(a)-333(j)1(akb)28(y)-333(bi)1(c)-1(ze)-1(m)-333(p)-28(o)-28(d)1(c)-1(i)1(\\246)-1(ta.)]TJ 0 -13.549 Td[({)-401(Pr)1(z)-1(ycz)-1(epi)1(ac)-1(ie)-401(s)-1(i)1(\\246)-402(ci\\246)-1(gi)1(e)-1(m)-401(do)-401(mnie)-401(kiej)-401(rze)-1(p)-401(d)1(o)-401(ogona!)-401(M)1(arnego)-401(s)-1(\\252o)28(w)27(a)]TJ -27.879 -13.549 Td[(w)28(am)-334(ni)1(e)-334(m)-1(\\363)28(wi\\246,)-333(a)-334(wy)-333(in)1(o)-334(h)28(u)1(ru)-333(b)1(ur)1(u)-333(jak)-333(na)-333(tego)-334(\\252ysego)-334(k)28(on)1(ia...)]TJ 27.879 -13.549 Td[({)-277(P)28(o)-28(dzi\\246kuj)-276(B)-1(ogu)1(,)-278(\\273e)-278(gorsze)-1(go\\261)-278(n)1(ie)-278(ob)-27(e)-1(r)1(w)27(a\\252a!)-277({)-278(r)1(oz)-1(cz)-1(ap)1(ierzy\\252a)-278(si\\246)-278(gro\\271ni)1(e)-1(.)]TJ 0 -13.55 Td[({)-398(S)1(pr)1(\\363buj)1(c)-1(i)1(e)-1(:)-397(inom)-398(j)1(e)-1(d)1(na)-397(s)-1(ierota,)-397(ku)-397(mo)-56(j)1(e)-1(j)-397(obr)1(onie)-398(n)1(ikto)-397(nie)-398(stani)1(e)-1(,)-397(ale)]TJ -27.879 -13.549 Td[(u)28(wid)1(z)-1(icie,)-333(c)-1(zyje)-333(os)-1(tan)1(ie)-334(n)1(a)-334(wierzc)27(h)28(u)1(!)]TJ 27.879 -13.549 Td[(Od)1(garn\\246\\252a)-311(w\\252osy)-311(z)-311(t)28(w)28(arzy)-310(i)-311(srogie,)-310(p)-28(e\\252ne)-311(za)28(w)-1(zi\\246to\\261)-1(ci)-310(o)-28(cz)-1(y)-310(ud)1(e)-1(r)1(z)-1(y\\252y)-310(kieb)28(y)]TJ -27.879 -13.549 Td[(no\\273em)-1(,)-351(j)1(a\\273)-1(e)-352(Han)1(k)28(\\246)-352(z)-352(miejsc)-1(a)-351(tak)56(a)-351(z)-1(\\252o\\261)-1(\\242)-351(p)-28(on)1(ies)-1(\\252a,)-351(i\\273)-352(j)1(\\246)-1(\\252a)-351(wytrz\\241sa\\242)-352(pi\\246\\261c)-1(iami)-351(a)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(e\\242,)-334(co)-333(ino)-333(\\261)-1(l)1(ina)-333(pr)1(z)-1(y)1(nies)-1(\\252a.)]TJ 27.879 -13.55 Td[({)-364(G)1(rozis)-1(z!)-363(Z)-1(acznij)-363(in)1(o,)-364(zac)-1(zni)1(j!)-363(Nie)-1(win)1(i\\241tk)28(o,)-363(s)-1(i)1(e)-1(rot)1(a)-364(p)-27(okrzywdzona..)1(.)-364(Ju)1(-)]TJ -27.879 -13.549 Td[(\\261c)-1(i.)1(..)-251(Dobr)1(z)-1(e)-252(l)1(udzie)-252(wiedz\\241,)-251(c)-1(o)-251(wyrab)1(iasz)-1(!)-251(W)-251(ca\\252e)-1(j)-251(p)1(ara\\014i)-251(wiedz\\241)-251(o)-252(t)28(w)28(oic)27(h)-251(spr)1(a)27(w-)]TJ 0 -13.549 Td[(k)56(ac)27(h)1(.)-380(Nie)-380(r)1(az)-380(c)-1(i\\246)-380(j)1(u\\273)-380(wid)1(z)-1(i)1(e)-1(li)-379(z)-380(w)27(\\363)-55(jtem)-380(w)-380(k)56(arczm)-1(ie,)-379(nie)-380(d)1(w)27(a!)-379(A)-380(wtedy)84(,)-380(com)-380(ci)]TJ 0 -13.549 Td[(p)-27(o)-291(p)-27(\\363\\252no)-27(c)27(ku)-290(d)1(rzw)-1(i)-290(ot)28(wiera\\252a,)-290(wrac)-1(a\\252a\\261)-290(z)-291(pij)1(at)28(yki,)-290(z)-290(\\252)-1(a)-55(jd)1(ac)-1(t)28(w)28(a,)-290(pij)1(ana)-290(b)28(y\\252a\\261)-291(k)1(ie)-1(j)]TJ 0 -13.549 Td[(\\261w)-1(i)1(nia..)1(.)-268(Do)-268(c)-1(zas)-1(u)-267(dz)-1(b)1(an)-268(w)28(o)-28(d\\246)-268(nosi,)-268(do)-268(cz)-1(asu.)1(..)-268(Nie)-269(b)-27(\\363)-55(j)-268(s)-1(i)1(\\246)-1(,)-268(kto)-268(w)-268(g\\252o\\261)-1(n)1(o\\261)-1(ci)-268(\\273)-1(y)1(je,)]TJ 0 -13.549 Td[(o)-381(t)28(ym)-381(cic)27(h)1(o)-381(m)-1(\\363)28(wi\\241!)-381(S)1(k)28(o\\253cz)-1(y)-380(s)-1(i\\246)-381(t)28(w)28(o)-56(je)-381(p)1(ano)28(w)27(an)1(ie,)-381(\\273)-1(e)-381(n)1(i)-381(w)27(\\363)-55(jt,)-380(ni)-380(k)28(o)27(w)28(al)-381(ci\\246)-381(nie)]TJ 0 -13.55 Td[(obr)1(oni\\241,)-333(t)28(y)84(...)-333(t)28(y!.)1(..)]TJ 27.879 -13.549 Td[(Ja\\273e)-334(s)-1(i)1(\\246)-334(z)-1(ak)1(rztusi\\252a)-334(z)-333(krzyk)28(\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-421(Rob)1(i\\246)-1(,)-420(co)-421(rob)1(i\\246)-1(,)-420(a)-421(k)56(a\\273dem)27(u)-420(w)27(ar)1(a)-421(d)1(o)-421(mnie)-421(j)1(ak)-421(tem)27(u)-420(psu!)-420({)-421(wrzasn\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(nagl)1(e)-1(,)-333(o)-28(d)1(rzuca)-56(j\\241c)-333(w)-1(\\252osy)-333(na)-333(pl)1(e)-1(cy)83(,)-333(ki)1(e)-1(j)1(b)28(y)-333(t\\246)-334(pr)1(z)-1(ygar)1(\\261)-1(\\242)-333(ln)28(u)-333(n)1(a)-56(jczys)-1(tsze)-1(go)]TJ 27.879 -13.549 Td[(Roz)-1(j)1(usz)-1(on)1(a)-294(ju)1(\\273)-295(b)29(y\\252a)-294(i)-294(goto)28(w)28(a)-294(na)28(w)27(et)-294(do)-293(bitk)1(i,)-294(b)-27(o)-294(ja\\273e)-295(si\\246)-294(c)-1(a\\252a)-294(tr)1(z)-1(\\246s)-1(\\252a;)-294(r)1(\\246)-1(ce)]TJ -27.879 -13.55 Td[(jej)-442(lat)1(a\\252)-1(y)-442(k)28(ol)1(e)-443(bi)1(o)-28(der)-442(i)-442(tak)-442(srogo)-442(c)-1(iepa\\252a)-442(\\261le)-1(p)1(iami,)-442(\\273)-1(e)-442(w)-443(Han)1(c)-1(e)-442(opad\\252o)-442(se)-1(r)1(c)-1(e,)]TJ 0 -13.549 Td[(zm)-1(il)1(k\\252a)-334(i)-333(tr)1(z)-1(asn\\241)28(ws)-1(zy)-333(jeno)-333(dr)1(z)-1(wiami)-333(uciek\\252a)-334(z)-334(i)1(z)-1(b)28(y)84(.)]TJ\nET\nendstream\nendobj\n1544 0 obj <<\n/Type /Page\n/Contents 1545 0 R\n/Resources 1543 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1543 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1548 0 obj <<\n/Length 9990      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(483)]TJ -330.353 -35.866 Td[(Ale)-366(p)-28(o)-366(tej)-366(k\\252\\363tn)1(i)-366(ruc)28(ha\\242)-366(s)-1(i\\246)-366(nie)-366(mog\\252)-1(a,)-366(siad)1(\\252a)-367(z)-366(dziec)27(kiem)-367(p)-27(o)-28(d)-365(oknem)-1(,)-366(a)]TJ -27.879 -13.549 Td[(J\\363zk)55(a)-333(za)-56(j)1(m)-1(o)28(w)27(a\\252a)-333(si\\246)-334(p)-27(o)-28(da)28(w)28(aniem)-334(\\261niad)1(ania.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-335(k)1(ie)-1(j)-333(s)-1(i\\246)-334(z)-1(n)1(o)27(wu)-334(p)-27(orozc)27(h)1(o)-28(dzili)-334(d)1(o)-335(r)1(ob)-28(ot)28(y)84(,)-334(z)-1(ebr)1(a\\252a)-335(si\\246)-335(j)1(ak)28(o\\261)-335(w)-334(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(i,)-291(p)-28(on)1(ie)-1(c)28(ha)28(ws)-1(zy)-292(r)1(ob)-28(\\363t,)-291(wybr)1(a\\252)-1(a)-291(s)-1(i\\246)-292(d)1(o)-292(o)-56(j)1(c)-1(a,)-291(kt\\363ren)-292(zac)27(h)1(orza\\252)-292(ju)1(\\273)-293(p)1(ar\\246)-292(dn)1(i)-292(tem)27(u)1(,)]TJ 0 -13.549 Td[(ale)-334(z)-333(p)-28(\\363\\252)-333(dr)1(ogi)-334(za)28(wr\\363)-28(ci\\252a)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.55 Td[(T)83(ak)-333(si\\246)-334(w)-334(n)1(iej)-333(roztrz\\246)-1(s\\252o,)-334(\\273e)-334(an)1(i)-333(s)-1(p)-27(os)-1(\\363b)-333(i)1(\\261)-1(\\242)-334(b)29(y\\252o.)]TJ 0 -13.549 Td[(A)-411(z)-1(a\\261)-412(p)-27(ote)-1(m,)-411(c)27(h)1(o)-28(\\242)-412(pr)1(z)-1(ysz)-1(\\252a)-411(nieco)-412(do)-411(s)-1(i)1(\\252,)-412(r)1(\\246)-1(k)28(oma)-412(j)1(e)-1(n)1(o)-412(rob)1(i\\252a,)-411(b)-28(ez)-1(w)28(oln)1(ie)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-1(,)-333(a)-333(g\\252)-1(\\363)28(wni)1(e)-334(m)27(y)1(\\261)-1(la\\252a)-333(o)-333(An)28(tku)1(,)-334(w)28(e)-334(\\261wiat)-334(si\\246)-334(zapat)1(ruj)1(\\241c)-334(dal)1(e)-1(ki)1(...)]TJ 27.879 -13.549 Td[(P)28(ogo)-28(d)1(a)-412(si\\246)-412(te\\273)-412(rob)1(i\\252a,)-411(des)-1(zc)-1(z)-412(u)1(s)-1(ta\\252,)-411(k)56(apa\\252o)-411(jeno)-411(z)-412(dac)28(h\\363)28(w)-412(i)-411(z)-412(dr)1(z)-1(ew,)-412(\\273e)]TJ -27.879 -13.549 Td[(to)-354(wiate)-1(r)-354(j)1(\\241\\252)-355(ot)1(rz)-1(\\241sa\\242)-355(ga\\252\\246z)-1(ie,)-354(dr)1(ogi)-354(s)-1(iwi\\252y)-354(si\\246)-355(k)56(a\\252u\\273am)-1(i)1(,)-354(\\261)-1(wiat)-354(s)-1(ta)28(w)28(a\\252)-355(si\\246)-355(coraz)]TJ 0 -13.549 Td[(ja\\261ni)1(e)-1(j)1(s)-1(zy)83(.)]TJ 27.879 -13.55 Td[(Rac)27(h)1(o)27(w)28(ali,)-248(c)-1(o)-249(na)-249(p)1(rzyp)-27(o\\252)-1(u)1(dn)1(ie)-249(s)-1(\\252o\\253ce)-250(p)-27(ok)56(a\\273)-1(e)-249(s)-1(i)1(\\246)-250(n)1(ie)-1(c)28(h)28(yb)1(nie,)-249(b)-27(o)-249(ju\\273)-249(jask)28(\\363\\252-)]TJ -27.879 -13.549 Td[(ki)-320(lata\\252y)-320(g\\363r\\241;)-320(b)1(ia\\252e)-1(,)-320(pr)1(z)-1(ez)-1(\\252o)-28(cone)-320(c)27(hm)28(ur)1(y)-321(sz)-1(\\252y)-320(p)-27(o)-321(n)1(iebie)-321(stadami,)-320(a)-320(z)-321(p)-28(\\363l)-320(ciep\\252o)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252o)-312(i)-312(p)1(tas)-1(i)-311(w)-1(r)1(z)-1(ask)-312(p)-27(o)-28(d)1(nosi\\252)-312(si\\246)-312(w)-312(s)-1(ad)1(ac)27(h,)-311(jakb)29(y)-312(o\\261nie\\273)-1(on)29(yc)27(h)-311(kwiatami.)-312(Za\\261)]TJ 0 -13.549 Td[(wie\\261)-388(galan)28(to)-387(p)-27(og\\252o\\261)-1(n)1(ia\\252a;)-387(kur)1(z)-1(y\\252o)-387(si\\246)-388(ze)-388(ws)-1(zystkic)28(h)-387(pr)1(a)27(wie)-387(k)28(om)-1(i)1(n\\363)28(w,)-387(s)-1(mac)-1(zne)]TJ 0 -13.549 Td[(jad)1(\\252a)-414(n)1(arz)-1(\\241d)1(z)-1(al)1(i,)-413(rado\\261\\242)-414(wydziera\\252a)-414(si\\246)-414(z)-414(c)27(h)1(a\\252up)-413(i)-413(babi)1(e)-414(jazgot)27(y)-413(n)1(ie)-1(s\\252y)-414(si\\246)-414(o)-28(d)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)28(y)-351(d)1(o)-352(c)28(ha\\252u)1(p)28(y)83(,)-351(d)1(z)-1(ieuc)28(h)28(y)-351(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a\\252y)-351(s)-1(i\\246)-351(\\261)-1(wi\\241tec)-1(zni)1(e)-1(;)-351(ws)-1(t)1(\\246)-1(gi)-351(zaplata)-55(j\\241c)]TJ 0 -13.549 Td[(w)-265(k)28(osy)84(,)-264(niejedn)1(a)-265(w)-264(dy)1(rdy)-264(lecia\\252a)-265(p)-27(o)-264(gorza\\252k)28(\\246)-1(,)-264(b)-27(o)-265(\\233y)1(d,)-264(ucies)-1(zon)28(y)-264(p)-27(o)27(wrot)1(e)-1(m)-264(c)27(h\\252o-)]TJ 0 -13.549 Td[(p)-27(\\363)27(w,)-368(da)28(w)28(a\\252)-369(na)-368(b)-27(\\363rg,)-368(ile)-369(kto)-368(in)1(o)-369(c)27(h)1(c)-1(i)1(a\\252)-1(,)-368(a)-368(c)-1(or)1(az)-369(to)-369(ktosik)-368(w\\252az)-1(i\\252)-368(na)-368(drab)1(in)1(\\246)-369(i)-369(z)]TJ 0 -13.549 Td[(dac)28(h\\363)28(w)-334(p)1(rze)-1(p)1(atryw)28(a\\252)-334(p)1(iln)1(ie)-334(wsz)-1(ystkie)-333(drogi)-333(b)1(ie)-1(gn)1(\\241c)-1(e)-333(o)-28(d)-333(mias)-1(t)1(a...)]TJ 27.879 -13.549 Td[(T)83(ak)-389(si\\246)-389(z)-1(a)-55(j\\246\\252)-1(y)-388(p)-28(or)1(z)-1(\\241d)1(k)55(ami,)-389(\\273e)-390(ma\\252o)-389(kt\\363r)1(a)-389(s)-1(z\\252a)-389(w)-390(p)-27(ole;)-389(na)28(w)28(e)-1(t)-389(g\\246s)-1(i)-388(z)-1(ap)-27(o-)]TJ -27.879 -13.55 Td[(mnia\\252y)-334(p)-27(o)28(wygania\\242)-334(nad)-333(ro)28(wy)83(,)-334(\\273e)-335(g\\246ga\\252y)-334(wrzas)-1(kl)1(iwie)-335(w)-334(p)-27(o)-28(dw)28(\\363rzac)27(h,)-333(z)-1(a\\261)-334(dzie)-1(ci-)]TJ 0 -13.549 Td[(sk)55(a,)-381(pu)1(s)-1(zcz)-1(on)1(e)-382(dzis)-1(i)1(a)-382(n)1(a)-382(w)28(ol\\246)-382(i)-381(nie)-382(p)1(rzyk)56(arcane,)-382(wyp)1(ra)28(wia\\252y)-382(p)-27(o)-381(drogac)28(h)-381(takie)]TJ 0 -13.549 Td[(br)1(e)-1(w)28(e)-1(r)1(yje,)-408(\\273)-1(e)-408(niec)27(h)-407(B)-1(\\363g)-408(br)1(oni!)-408(S)1(tarsz)-1(e,)-408(z)-409(d)1(\\252)-1(u)1(gac)27(h)1(n)28(ymi)-408(t)28(yk)56(am)-1(i)1(;)-409(zwija\\252y)-408(si\\246)-409(n)1(a)]TJ 0 -13.549 Td[(top)-27(olo)28(w)27(ej,)-393(s)-1(kr)1(abi\\241c)-394(si\\246)-394(na)-394(d)1(rze)-1(w)28(a)-394(i)-394(sp)28(yc)28(ha)-55(j\\241c)-394(wroni)1(e)-395(gn)1(iazda,)-394(\\273e)-394(wys)-1(tr)1(as)-1(zone)]TJ 0 -13.549 Td[(pt)1(as)-1(zys)-1(k)56(a,)-440(kiej)-440(c)28(hm)27(u)1(ra)-440(s)-1(ad)1(z)-1(y)1(;)-441(k)28(o\\252o)28(w)28(a\\252y)-441(wysok)28(o)-440(z)-441(\\273)-1(a\\252osn)28(ym,)-440(j\\246kli)1(w)-1(y)1(m)-441(krak)56(a-)]TJ 0 -13.55 Td[(ni)1(e)-1(m;)-467(a)-467(zno)28(wuj)-466(dr)1(ugie,)-467(mni)1(e)-1(j)1(s)-1(ze)-1(,)-466(gania\\252y)-467(\\261lep)-28(ego)-467(k)28(on)1(ia)-467(ksi\\246)-1(\\273ego,)-467(z)-1(a\\252o\\273onego)]TJ 0 -13.549 Td[(do)-379(b)-27(e)-1(czki)-379(na)-379(saniac)28(h,)-379(c)27(h)1(c)-1(\\241c)-379(go)-380(n)1(ap)-27(\\246)-1(d)1(z)-1(i\\242)-379(z)-380(wy\\273s)-1(ze)-1(go)-379(br)1(z)-1(egu)-379(d)1(o)-380(sta)28(wu,)-379(jeno)-379(co)]TJ 0 -13.549 Td[(k)28(o\\253)-353(m\\241d)1(rala)-353(n)1(ie)-354(d)1(a\\252)-353(s)-1(i)1(\\246)-354(za\\273)-1(y)1(\\242)-354(z)-353(ma\\253ki.)-352(Nie)-1(k)1(ie)-1(d)1(y)83(,)-352(ju)1(\\273)-354(n)1(ad)-353(sam)-1(i)1(utk)56(\\241)-353(kr)1(a)27(w)28(\\246)-1(d)1(z)-1(i)1(\\241,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-454(j)1(akb)28(y)-452(na)-453(z\\252)-1(o\\261\\242,)-453(\\252e)-1(b)-452(s)-1(p)1(usz)-1(cz)-1(a\\252,)-452(g\\252)-1(u)1(c)27(h)1(n\\241\\252)-453(na)-453(wr)1(z)-1(aski,)-453(cierpl)1(iwie)-453(s)-1(i\\246)]TJ 0 -13.549 Td[(otrz\\241sa)-56(j\\241c)-298(z)-298(b)1(\\252ota)-298(i)-297(gru)1(d,)-297(kt\\363ry)1(c)27(h)-297(m)27(u)-297(n)1(ie)-298(s)-1(zcz)-1(\\246dzili.)-297(Ale)-298(sk)28(oro)-297(p)-28(o)-28(czu\\252,)-297(\\273)-1(e)-298(m)28(u)-298(n)1(a)]TJ 0 -13.55 Td[(b)-27(e)-1(cz)-1(k)28(\\246)-353(w\\252a\\273)-1(\\241)-353(i)-352(do)-353(u)1(z)-1(d)1(y)-353(ju)1(\\273)-354(si\\246ga)-56(j)1(\\241,)-353(r\\273a\\252)-353(gro\\271nie)-353(i)-353(p)-27(onosi\\252,)-353(skr\\246c)-1(a)-55(j\\241c)-353(z)-353(nag\\252a)-353(w)]TJ 0 -13.549 Td[(na)-55(jwi\\246ksz)-1(\\241)-279(kup)-27(\\246)-280(z)-1(b)-27(ere)-1(\\271ni)1(k)28(\\363)27(w)-279(i\\273)-280(rozlat)28(yw)27(al)1(i)-280(si\\246)-280(z)-280(krzyki)1(e)-1(m.)-280(D)1(obre)-280(p)1(ar\\246)-280(pacierzy)]TJ 0 -13.549 Td[(tak)-314(si\\246)-314(zaba)28(wiali,)-313(ja\\273e)-315(go)-313(w)-315(k)28(o\\253)1(c)-1(u)-313(i)-314(zmanil)1(i)-314(p)-27(o)-28(dt)28(yk)56(a)-55(j\\241c)-314(p)-28(o)-27(d)-314(c)28(hrap)29(y)-314(wiec)27(he\\242)-314(z)-1(a-)]TJ 0 -13.549 Td[(pal)1(on)28(y)83(,)-286(\\273)-1(e)-287(k)28(onisk)28(o)-287(z)-1(es)-1(t)1(rac)27(h)1(ane)-287(rzuci\\252o)-287(s)-1(i\\246)-287(w)-287(b)-28(ok)1(,)-287(akur)1(atnie)-287(pr)1(os)-1(to)-287(n)1(a)-287(pr)1(z)-1(yw)28(arte)]TJ 0 -13.549 Td[(op\\252otk)1(i)-407(B)-1(or)1(yno)28(w)28(e)-1(.)-407(W)1(yw)27(al)1(i\\252)-407(w)-1(r)1(\\363tnie)-407(i)-407(tak)-407(si\\246)-407(w)-408(n)1(ie)-408(zapl)1(\\241ta\\252)-408(or)1(c)-1(zyk)56(am)-1(i)1(,)-407(\\273)-1(e)-407(go)]TJ 0 -13.549 Td[(dop)1(ad\\252y)-333(z)-334(b)1(lisk)55(a)-333(i)-333(dal)1(e)-1(j)1(\\273)-1(e)-334(p)1(ra\\242)-334(b)1(atami,)-333(c)-1(o)-333(in)1(o)-334(wlaz\\252o.)]TJ 27.879 -13.55 Td[(Ku)1(las)-1(y)-437(b)28(y)1(\\252b)28(y)-437(s)-1(ob)1(ie)-438(p)-27(o\\252)-1(ama\\252)-437(w)-438(\\273e)-1(rd)1(k)56(ac)27(h,)-437(ki)1(e)-1(b)28(y)-437(n)1(ie)-438(Jagn)1(a,)-438(k)1(t\\363ra)-437(dos\\252y-)]TJ -27.879 -13.549 Td[(sz)-1(a)28(ws)-1(zy)-423(krzyki)-423(ki)1(jem)-424(rozp)-28(\\246dzi\\252a)-423(wis)-1(u)1(s)-1(\\363)28(w)-423(i)-424(wywied\\252a)-423(go)-423(na)-423(dr)1(og\\246)-1(,)-423(ale)-423(\\273)-1(e)-424(k)28(o\\253)]TJ 0 -13.549 Td[(wystrasz)-1(on)28(y)-359(s)-1(tr)1(ac)-1(i\\252)-359(w)-1(i)1(atr,)-360(n)1(ie)-360(wie)-1(d)1(z)-1(\\241c,)-360(w)-359(jak)56(\\241)-360(stron\\246)-360(si\\246)-360(obr)1(\\363)-28(c)-1(i)1(\\242)-1(,)-359(a)-360(c)27(h)1(\\252)-1(op)1(ac)-1(zy-)]TJ 0 -13.549 Td[(sk)55(a)-333(cz)-1(ai\\252y)-333(si\\246)-334(za)-334(d)1(rze)-1(w)28(am)-1(i)1(,)-334(p)-27(o)28(wie)-1(d)1(\\252a)-334(go)-333(na)-333(p)1(le)-1(b)1(ani\\246.)]TJ 27.879 -13.549 Td[(Dr\\363\\273k)56(\\241)-255(m)-1(i\\246dzy)-255(ksi\\246\\273)-1(ym)-255(ogro)-28(d)1(e)-1(m)-255(a)-255(K\\252\\246bami)-255(go)-255(p)-28(op)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-1(a,)-255(gd)1(y)-255(w\\252a\\261)-1(n)1(ie)]TJ -27.879 -13.55 Td[(br)1(ycz)-1(k)56(a)-400(organ)1(is)-1(t)1(\\363)27(w)-400(za)-56(j)1(e)-1(c)28(ha\\252a)-400(pr)1(z)-1(ed)-400(i)1(c)27(h)-400(d)1(om)-400(s)-1(to)-55(j\\241cy)-400(w)-400(g\\252\\246)-1(b)1(i.)-400(O)1(rgani)1(\\261)-1(cina)-400(j)1(u\\273)]TJ 0 -13.549 Td[(b)28(y\\252a)-333(na)-333(sie)-1(d)1(z)-1(eni)1(u,)-333(a)-333(Jas)-1(io)-333(ca\\252o)27(w)28(a\\252)-334(si\\246)-334(p)1(rze)-1(d)-333(p)1(rogiem)-334(z)-334(r)1(o)-28(dzin)1(\\241.)]TJ\nET\nendstream\nendobj\n1547 0 obj <<\n/Type /Page\n/Contents 1548 0 R\n/Resources 1546 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1546 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1551 0 obj <<\n/Length 8238      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(484)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Koni)1(a)-334(p)1(rzywie)-1(d)1(\\252am)-1(,)-333(b)-27(o)-334(d)1(z)-1(i)1(e)-1(ci)-333(go)-334(p)1(\\252os)-1(zy\\252y)83(.)1(..)-333({)-334(zacz)-1(\\246\\252)-1(a)-333(n)1(ie)-1(\\261mia\\252o.)]TJ 0 -13.549 Td[({)-500(O)1(jcie)-1(c,)-500(k)1(rzykni)1(j)-500(n)1(a)-500(W)84(alk)56(a,)-500(n)1(iec)27(h)-499(go)-500(o)-28(d)1(bierze)-1(!)-499(T)83(e)-1(,)-499(ry)1(fo)-500(j)1(e)-1(d)1(na,)-499(k)28(onia)]TJ -27.879 -13.549 Td[(sam)-1(ego)-334(p)-27(orzucasz)-1(,)-333(\\273)-1(eb)28(y)-333(n)1(ogi)-334(p)-27(o\\252ama\\252,)-334(co?)-334({)-333(gru)1(c)27(h)1(n\\246\\252)-1(a)-333(n)1(a)-334(p)1(arobk)56(a.)]TJ 27.879 -13.549 Td[(Jasio,)-340(s)-1(p)-27(ostrze)-1(g\\252sz)-1(y)-340(Jagn)1(\\246)-1(,)-340(jeno)-340(\\261m)-1(i)1(gn\\241\\252)-340(o)-28(c)-1(zyma)-341(p)-27(o)-340(o)-56(j)1(c)-1(ac)28(h)-340(i)-340(r\\246)-1(k)28(\\246)-340(do)-340(niej)]TJ -27.879 -13.549 Td[(wyci\\241)-28(gn\\241\\252.)]TJ 27.879 -13.55 Td[({)-333(Zos)-1(ta\\253)1(c)-1(ie,)-333(Jagu\\261,)-333(z)-334(Bogie)-1(m.)]TJ 0 -13.549 Td[({)-333(Do)-334(k)1(las)-1(\\363)28(w)-333(to)-334(j)1(u\\273?)]TJ 0 -13.549 Td[(Za)-333(s)-1(erce)-334(j\\241)-333(c)-1(osik)-333(\\261c)-1(isn\\246\\252o,)-333(jakb)29(y)-334(\\273al)-333(c)-1(i)1(c)27(h)28(y)84(.)]TJ 0 -13.549 Td[({)-333(Na)-334(k)1(s)-1(i\\246dza)-333(go)-334(o)-28(d)1(w)27(o\\273\\246,)-334(mo)-56(j)1(a)-333(B)-1(or)1(yno)28(w)28(o!)-334({)-333(n)1(apusza\\252)-1(a)-333(si\\246)-334(du)1(mnie.)]TJ 0 -13.549 Td[({)-333(Na)-334(k)1(s)-1(i\\246dza!)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-280(z)-1(d)1(umione)-280(o)-28(czy)-280(na)-279(niego.)-280(S)1(iada\\252)-280(w\\252a\\261)-1(n)1(ie)-280(na)-280(p)1(rze)-1(d)1(nim)-280(siedze)-1(n)1(iu,)]TJ -27.879 -13.55 Td[(pl)1(e)-1(cam)-1(i)-333(d)1(o)-334(k)28(on)1(i.)]TJ 27.879 -13.549 Td[({)-287(B\\246)-1(d)1(\\246)-287(d\\252u\\273e)-1(j)-286(pat)1(rz)-1(a\\252)-287(n)1(a)-287(Lip)-27(c)-1(e!)-287({)-286(z)-1(a)28(w)27(o\\252a\\252)-287(ogar)1(nia)-55(j\\241c)-287(pr)1(z)-1(yt)1(ula)-55(j\\241cym)-287(s)-1(p)-27(o)-56(j)1(-)]TJ -27.879 -13.549 Td[(rze)-1(n)1(iem)-354(opl)1(e)-1(\\261nia\\252e)-354(d)1(ac)27(h)28(y)-353(o)-56(j)1(c)-1(o)28(w)28(e)-1(j)-353(c)28(ha\\252up)29(y)-354(i)-353(te)-354(sady)84(,)-353(l\\261)-1(n)1(i\\241ce)-354(rosam)-1(i)-353(a)-353(kwiatami)]TJ 0 -13.549 Td[(ob)28(w)28(alone.)]TJ 27.879 -13.549 Td[(Kon)1(ie)-334(ru)1(s)-1(zy\\252y)-333(tru)1(c)27(h)1(c)-1(ik)1(ie)-1(m.)]TJ 0 -13.55 Td[(Jagn)1(a)-284(p)-27(osz)-1(\\252a)-283(w)-284(tr)1(op)-283(tu\\273)-283(z)-1(a)-283(br)1(ycz)-1(k)56(\\241.)-283(Jas)-1(i)1(o)-284(k)1(rzyc)-1(za\\252)-284(j)1(e)-1(szc)-1(ze)-284(cos)-1(ik)-283(d)1(o)-284(si\\363str,)]TJ -27.879 -13.549 Td[(bu)1(c)-1(z\\241cyc)27(h)-395(p)-27(o)-28(d)-395(dome)-1(m,)-395(a)-396(p)1(atrza\\252)-396(j)1(e)-1(n)1(o)-396(na)-395(ni)1(\\241)-396(jedn)1(\\241:)-395(w)-396(jej)-395(m)-1(o)-27(dre,)-395(z)-1(wilgot)1(nia-)]TJ 0 -13.549 Td[(\\252e)-426(o)-27(c)-1(zy)83(,)-425(ki)1(e)-1(b)28(y)-424(te)-1(n)-425(d)1(z)-1(i)1(e)-1(\\253)-424(m)-1(a)-55(jo)28(wy)-425(bard)1(z)-1(o)-425(cud)1(ne;)-425(na)-425(jej)-425(g\\252o)28(w)28(\\246)-426(jasn\\241,)-425(op)1(lec)-1(ion)1(\\241)]TJ 0 -13.549 Td[(w)28(ark)28(o)-28(cz)-1(ami,)-402(co)-402(jak)-402(gr)1(ub)1(ac)27(hn)1(e)-403(p)-27(os)-1(t)1(ronk)1(i)-402(le\\273)-1(a\\252y)-402(p)-27(otr\\363)-55(jn)1(ie)-403(n)1(ad)-402(b)1(ia\\252ym)-403(czo\\252)-1(em,)]TJ 0 -13.549 Td[(zw)-1(i)1(s)-1(a)-55(j\\241c)-352(jes)-1(zc)-1(zek)-352(p)-27(\\363\\252k)28(oli\\261)-1(cie)-352(kiele)-352(uszu,)-352(n)1(a)-352(j)1(e)-1(j)-351(t)28(w)27(ar)1(z)-353(b)1(ialu)1(c)27(hn)1(\\241)-352(i)-351(tak)-352(\\261licz)-1(n)1(\\241,)-352(i\\273)]TJ 0 -13.55 Td[(do)-333(r\\363\\273y)-333(p)-27(olnej)-333(p)-27(o)-28(dob)1(n\\241.)]TJ 27.879 -13.549 Td[(On)1(a)-375(za\\261)-375(s)-1(z\\252a)-375(pr)1(a)28(w)-1(i)1(e)-375(b)-28(ez)-1(w)28(oln)1(ie)-1(,)-374(jak)1(b)28(y)-375(u)1(rze)-1(cz)-1(on)1(a)-375(j)1(e)-1(go)-374(o)-28(c)-1(zyma)-375(j)1(arz\\241c)-1(ymi,)]TJ -27.879 -13.549 Td[(w)28(argi)-382(s)-1(i)1(\\246)-383(jej)-382(tr)1(z)-1(\\246s)-1(\\252y)84(,)-382(\\273)-1(e)-382(z)-1(\\246b)-27(\\363)27(w)-382(z)-1(a)28(wrze)-1(\\242)-382(nie)-382(m)-1(og\\252a,)-382(se)-1(r)1(c)-1(e)-382(lub)-27(o)-382(dy)1(g)-1(ot)1(a\\252)-1(o,)-381(a)-383(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(sz)-1(\\252y)-333(z)-1(a)-333(n)1(im)-334(p)-27(ok)28(orni)1(e)-1(,)-333(zgo\\252a)-334(tr)1(uc)27(h)1(lej\\241c)-334(z)-333(dziwne)-1(j)-332(s)-1(\\252o)-28(d)1(k)28(o\\261)-1(ci...)]TJ 27.879 -13.549 Td[(Jakb)29(y)-264(j\\241)-263(s)-1(en)-264(zmorz)-1(y)1(\\252)-264(nag\\252y)-263(i)-264(t)28(ym)-264(pac)28(hn)1(\\241c)-1(ym)-264(kwiat)1(e)-1(m)-264(ni)1(e)-1(p)1(am)-1(i)1(\\246)-1(ci)-264(zas)-1(yp)29(y-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-1(.)1(..)-253(D)1(opiero)-253(k)1(ie)-1(j)-252(b)1(ryk)56(a)-253(skr\\246c)-1(i)1(\\252)-1(a)-252(ku)-252(top)-28(ol)1(o)27(w)28(ej,)-252(roz)-1(erw)28(a\\252y)-253(si\\246)-253(ic)27(h)-252(o)-28(cz)-1(y)84(,)-252(pu\\261ci\\252y)-253(te)]TJ 0 -13.549 Td[(par)1(z)-1(\\241ce)-358(ogni)1(w)27(a)-357(i)-357(rozpry)1(s)-1(n\\246\\252y)-357(s)-1(i)1(\\246)-358(tak)-357(dosz)-1(cz)-1(\\246tni)1(e)-1(,)-357(ja\\273e)-358(u)1(de)-1(r)1(z)-1(y)1(\\252)-1(a)-357(si\\246)-358(p)-27(o)-56(j)1(rz)-1(eni)1(e)-1(m)]TJ 0 -13.549 Td[(o)-333(pu)1(s)-1(t)28(y)-333(\\261)-1(wiat)-333(i)-333(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-333(nagle.)]TJ 27.879 -13.549 Td[(Jasio)-333(m)-1(ac)28(ha\\252)-333(c)-1(zapk)56(\\241)-333(na)-333(p)-28(o\\273e)-1(gn)1(anie.)-333(Wj)1(e)-1(\\273d\\273ali)-333(ju)1(\\273)-334(w)-334(mrok)-333(top)-27(oli.)]TJ 0 -13.549 Td[(Roz)-1(gl)1(\\241da\\252a)-333(s)-1(i\\246)-333(dok)28(o\\252a,)-333(o)-28(cz)-1(y)-333(tr\\241c,)-333(jak)1(b)28(y)-333(z)-1(e)-334(sn)28(u)-333(wyr)1(w)27(an)1(a.)]TJ 0 -13.55 Td[({)-333(Je)-1(zu,)-333(tak)1(i)-334(t)1(o)-334(b)28(y)-333(\\261lepiami)-333(do)-333(s)-1(amego)-334(p)1(iek\\252a)-334(zapr)1(o)27(w)28(adzi\\252...)]TJ 0 -13.549 Td[(Otr)1(z)-1(\\241sn\\246\\252a)-334(si\\246)-334(j)1(akb)28(y)-333(z)-334(t)28(yc)28(h)-333(par)1(z)-1(\\241cyc)27(h)1(,)-333(s)-1(p)-27(o)-56(j)1(rze)-1(\\253)-333(Jasio)28(wyc)27(h)1(.)]TJ 0 -13.549 Td[({)-344(O)1(rgani)1(s)-1(t\\363)28(w)-344(syn,)-343(a)-344(k)1(ie)-1(j)-343(d)1(z)-1(iedzic\\363)28(w)-344(s)-1(i)1(\\246)-345(wid)1(z)-1(i)1(...)-343(I)-344(ksi\\246dze)-1(m)-344(ostani)1(e)-1(,)-343(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(d)1(o)-333(Lipiec)-334(go)-333(dad)1(z)-1(\\241!.)1(..)]TJ 27.879 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252a)-386(s)-1(i\\246;)-386(b)1(ryk)56(a)-386(ju)1(\\273)-387(zni)1(kn\\246\\252a,)-386(tur)1(k)28(ot)-386(jeno)-386(d)1(o)-28(c)27(h)1(o)-28(dzi\\252)-386(i)-386(g\\252osy)-386(p)-28(ozdr)1(o-)]TJ -27.879 -13.549 Td[(wie\\253)-333(z)-1(amienian)29(yc)27(h)-333(z)-334(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(\\241cymi.)]TJ 27.879 -13.55 Td[({)-267(T)83(aki)-267(m)-1(lecz)-1(ak,)-267(dziec)-1(i)1(uc)27(h)-267(p)1(ra)28(wie)-1(,)-267(a)-267(niec)27(h)-267(sp)-28(o)-55(jrzy)84(,)-268(to)-267(jakb)29(y)-268(k)1(to)-268(d)1(rugi)-267(wp)-27(\\363\\252)]TJ -27.879 -13.549 Td[(ob)-55(j\\241\\252,)-333(j)1(a\\273)-1(e)-334(ci\\241)-28(gotk)1(i)-334(b)1(ier\\241)-333(i)-333(w)-334(g\\252o)28(w)-1(i)1(e)-334(s)-1(i)1(\\246)-334(m\\241c)-1(i.)1(..)]TJ 27.879 -13.549 Td[(Wzdr)1(ygn\\246\\252a)-439(s)-1(i)1(\\246)-440(ob)1(lizuj)1(\\241c)-440(cze)-1(rw)28(one)-439(w)28(argi,)-438(a)-439(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-440(si\\246)-439(pr)1(\\246)-1(\\273\\241c)-1(o,)-438(z)]TJ -27.879 -13.549 Td[(lu)1(b)-28(o\\261c)-1(i)1(\\241...)]TJ 27.879 -13.549 Td[(Ch\\252\\363)-28(d)-367(j\\241)-368(nagle)-368(pr)1(z)-1(ej\\241\\252.)-368(Dop)1(ie)-1(r)1(o)-369(sp)-27(os)-1(tr)1(z)-1(eg\\252a,)-368(\\273)-1(e)-368(jes)-1(t)-368(z)-369(go\\252\\241)-368(g\\252o)28(w)27(\\241,)-368(b)-27(os)-1(o)-368(i)]TJ -27.879 -13.55 Td[(pr)1(a)28(w)-1(i)1(e)-299(w)-299(k)28(osz)-1(u)1(li,)-298(b)-27(o)-299(t)28(ylk)28(o)-298(w)-299(j)1(akiej\\261)-299(p)-27(o)-28(d)1(artej)-298(c)27(h)28(u)1(\\261)-1(cin)1(ie)-299(na)-298(ramion)1(ac)27(h.)-298(S)1(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(\\252a)-334(si\\246)-334(p)1(rzyws)-1(t)28(yd)1(z)-1(on)1(a)-334(i)-333(j)1(\\246)-1(\\252a)-333(s)-1(tr)1(onami)-333(przebiera\\242)-334(si\\246)-334(ku)-332(domo)27(wi.)]TJ\nET\nendstream\nendobj\n1550 0 obj <<\n/Type /Page\n/Contents 1551 0 R\n/Resources 1549 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1549 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1554 0 obj <<\n/Length 8683      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(485)]TJ -330.353 -35.866 Td[({)-353(C)-1(h)1(\\252op)28(y)-353(wrac)-1(a)-55(j\\241,)-353(wiec)-1(ie)-353(to?)-354({)-353(krzyk)56(a\\252y)-354(d)1(o)-353(niej)-353(dzieuc)27(h)29(y)-354(z)-353(op\\252otk)28(\\363)28(w)-1(,)-353(to)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)84(,)-333(to)-334(d)1(z)-1(ieci)-334(n)1(a)28(w)27(et,)-333(a)-334(wsz)-1(y)1(s)-1(tki)1(e)-334(z)-1(ad)1(ysz)-1(an)1(e)-334(i)-333(le)-1(d)1(wie)-334(zipi)1(\\241c)-1(e)-334(z)-333(rado\\261c)-1(i)]TJ 27.879 -13.549 Td[({)-333(No)-334(to)-333(co?)-334({)-333(rze)-1(k\\252a)-333(kt\\363r)1(e)-1(j)1(\\261)-334(ju)1(\\273)-334(pr)1(a)27(wie)-333(z)-1(e)-334(z\\252o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(ac)-1(a)-55(j\\241!..)1(.)-333(m)-1(a\\252o)-333(to?)-334({)-333(z)-1(d)1(umiew)27(a\\252y)-333(si\\246)-334(j)1(e)-1(j)-333(ozi\\246)-1(b)1(\\252o\\261)-1(ci.)]TJ 0 -13.549 Td[({)-324(T)28(yla)-324(z)-325(n)1(imi,)-324(co)-324(i)-324(pr)1(z)-1(ez)-325(n)1(ic)27(h)1(!)-324(G\\252up)1(ie!)-324({)-324(m)-1(r)1(ucz)-1(a\\252a,)-324(p)1(rzykro)-324(t)1(kni\\246ta,)-324(\\273e)-325(to)]TJ -27.879 -13.55 Td[(k)56(a\\273)-1(d)1(a)-334(k)1(ie)-1(j)-333(zw)28(ario)28(w)27(an)1(a)-333(w)-1(y)1(gl\\241da\\252a)-333(s)-1(w)28(o)-56(j)1(e)-1(go..)1(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252a)-388(do)-387(matki.)-387(J\\246)-1(d)1(rzyc)27(h)-387(b)28(y)1(\\252)-388(jeno,)-387(p)1(ie)-1(r)1(w)-1(szy)-388(r)1(az)-388(dopi)1(e)-1(r)1(o)-388(zw)-1(l)1(\\363k\\252)-388(si\\246)-388(z)]TJ -27.879 -13.549 Td[(bar)1(\\252ogu,)-340(pr)1(z)-1(etr\\241con)28(y)-340(kul)1(as)-341(m)-1(i)1(a\\252)-341(jes)-1(zcz)-1(e)-341(sp)-28(o)28(wit)28(y)-340(w)-341(sz)-1(mat)28(y)83(,)-340(k)28(osz)-1(yk)-340(wyp)1(lata\\252)-341(n)1(a)]TJ 0 -13.549 Td[(pr)1(ogu)-333(i)-333(p)-28(ogwizdy)1(w)27(a\\252)-333(s)-1(r)1(ok)28(om)-1(,)-333(\\252a\\273\\241c)-1(ym)-333(p)-28(o)-333(p\\252otac)28(h.)]TJ 27.879 -13.549 Td[({)-333(Wies)-1(z)-334(t)1(o,)-334(J)1(ag)-1(u)1(\\261)-1(?..)1(.)-333(W)83(raca)-56(j)1(\\241)-333(nasi!...)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(j)1(u\\273)-334(k)1(ie)-1(j)-333(te)-333(s)-1(r)1(oki)-333(c)-1(a\\252y)-333(\\261w)-1(i)1(at)-334(to)-333(j)1(e)-1(d)1(no)-333(roz)-1(p)-27(o)28(wiada!)]TJ 0 -13.55 Td[({)-333(Wies)-1(z,)-333(a)-334(Nastusia)-333(to)-333(prosto)-333(o)-28(d)-333(rozum)28(u)-333(o)-28(d)1(c)27(ho)-28(d)1(z)-1(i)1(,)-333(\\273)-1(e)-334(i)-333(S)1(z)-1(ymek)-333(w)-1(r)1(\\363)-28(c)-1(i)1(...)]TJ 0 -13.549 Td[({)-333(C)-1(zem)27(u\\273)-333(to?)-334({)-333(B)-1(\\252y)1(s)-1(n)1(\\246)-1(\\252a)-333(\\261)-1(lepi)1(am)-1(i)-333(srogo,)-333(p)-27(o)-334(matcz)-1(yn)1(e)-1(m)28(u.)]TJ 0 -13.549 Td[({)-249(I..)1(.)-249(n)1(ic)-1(.)1(..)-249(A)-248(to)-249(me)-249(z)-1(n)1(o)28(w)-1(u)1(j)-248(kul)1(as)-250(r)1(oz)-1(b)-27(ola\\252..)1(.)-249({)-249(za)-56(j)1(\\241k)56(a\\252)-249(s)-1(t)1(rac)27(h)1(liwie.)-249({)-248(C)-1(i)1(c)27(ho)-55(j,)]TJ -27.879 -13.549 Td[(\\261c)-1(ierwy)-333({)-333(rz)-1(u)1(c)-1(i)1(\\252)-334(p)1(at)27(y)1(kiem)-334(w)-334(sie\\253)-333(na)-333(rozgdak)56(ane)-333(kw)27(ok)1(i.)]TJ 27.879 -13.549 Td[(Nib)28(y)-425(to)-426(r)1(oz)-1(ciera\\252)-426(n)1(og\\246)-427(b)-27(ol\\241c\\241,)-426(a)-425(p)-28(ok)28(or)1(nie)-426(zagl\\241da\\252)-425(w)-426(jej)-425(t)27(w)28(arz)-426(d)1(z)-1(iwn)1(ie)]TJ -27.879 -13.55 Td[(omro)-28(cz)-1(a\\252\\241.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)-333(t)1(o)-334(matk)56(a?)]TJ 0 -13.549 Td[({)-333(Na)-334(p)1(lebani)1(\\246)-334(p)-27(o)-1(szli...)-333(Jagu)1(\\261)-1(,)-333(o)-333(Nastc)-1(e)-334(t)1(o)-334(mi)-333(s)-1(i\\246)-333(ino)-333(tak)-333(wypsn\\246\\252o...)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i;)-333(m)27(y\\261li,)-333(co)-333(o)-334(t)28(ym)-333(nikt)1(o)-334(n)1(ie)-334(wie!)-333(P)28(obier\\241)-333(si\\246)-334(i)-333(t)28(yla..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(matk)56(a)-333(p)-28(ozw)27(ol)1(e)-1(\\253)1(s)-1(t)28(w)28(o)-334(d)1(adz\\241,)-333(kiej)-333(Nas)-1(tu)1(\\261)-334(ma)-334(j)1(e)-1(n)1(o)-334(morg\\246?)]TJ 0 -13.55 Td[({)-395(Pyt)1(a\\252)-396(si\\246)-396(b)-27(\\246dzie)-1(,)-395(t)1(o)-396(n)1(ie)-396(p)-27(ozw)27(ol\\241.)-395(Hal)1(e)-1(,)-395(l)1(ata)-396(j)1(u\\273)-395(parob)-394(m)-1(a,)-395(t)1(o)-396(i)-395(r)1(oz)-1(u)1(m)]TJ -27.879 -13.549 Td[(sw)27(\\363)-55(j)-333(p)-28(o)28(win)1(ie)-1(n)-333(mie\\242)-1(,)-333(b)28(y)1(c)27(h)-333(wiedzie)-1(\\242,)-333(c)-1(o)-333(i)-333(jak)1(...)]TJ 27.879 -13.549 Td[({)-327(A)-326(ma,)-327(Jagu)1(\\261)-1(,)-326(ma,)-326(i)-327(ki)1(e)-1(j)-326(si\\246)-327(u)28(w)28(e)-1(\\271mie)-327(i)-326(p)-28(\\363)-55(jd)1(z)-1(ie,)-326(udr)1(y)-327(n)1(a)-327(u)1(dr)1(y)83(,)-326(to)-327(i)-326(matki)]TJ -27.879 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(\\252uc)28(ha,)-333(na)-333(z\\252o\\261)-1(\\242)-334(si\\246)-334(o\\273e)-1(n)1(i,)-333(sw)27(\\363)-55(j)-333(gron)28(t)-333(o)-28(d)1(bierze)-334(i)-333(na)-333(s)-1(w)28(oim)-333(p)-28(osta)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Ple\\242)-1(,)-333(k)1(ie)-1(j)-333(ci)-333(c)-1(i)1(e)-1(p)1(\\252)-1(o,)-333(p)1(le\\242)-1(,)-333(b)28(yc)28(h)-333(c)-1(i)1(\\246)-334(jeno)-333(matk)55(a)-333(n)1(ie)-334(p)-27(os)-1(\\252ysz)-1(eli!)]TJ 0 -13.55 Td[(Mar)1(k)28(otno\\261\\242)-357(j\\241)-356(przej\\246)-1(\\252a.)-356(Jak\\273e)-1(!)-356(tak)56(a)-357(Nastk)56(a,)-356(a)-357(i)-356(to)-357(zabiega)-357(o)-356(c)27(h)1(\\252opa,)-356(i)-357(to)]TJ -27.879 -13.549 Td[(ma)-333(s)-1(w)28(o)-56(j)1(e)-333(rado\\261c)-1(i)1(e)-1(,)-332(a)-333(dr)1(ugie)-333(d)1(z)-1(ieuc)28(h)28(y)-333(to)-332(s)-1(amo.)-333(W\\261cie)-1(k)1(n\\241)-333(si\\246)-333(c)27(h)28(yb)1(a)-333(d)1(z)-1(isia)-55(j,)-333(b)-27(o)-28(\\242)]TJ 0 -13.549 Td[(do)-333(k)56(a\\273)-1(d)1(e)-1(j)-332(ktos)-1(i)1(k)-334(p)-27(o)28(wr\\363)-28(ci,)-333(do)-333(k)56(a\\273)-1(d)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-364(Pr)1(a)27(wd)1(a,)-364(dy\\242)-364(ws)-1(zystkie)-364(p)-28(o)28(wr\\363)-28(c\\241...)-363({)-365(P)29(orw)28(a\\252)-1(a)-364(j)1(\\241)-364(nag\\252a,)-364(n)1(ie)-1(cierp)1(liw)28(a)-365(r)1(a-)]TJ -27.879 -13.549 Td[(do\\261\\242,)-322(\\273)-1(e)-322(p)-27(orzuci\\252a)-322(wys)-1(t)1(ras)-1(zonego)-322(J\\246dr)1(z)-1(yc)28(ha)-322(i)-321(s)-1(kw)28(apn)1(ie)-322(p)-28(on)1(ies)-1(\\252a)-322(si\\246)-322(do)-322(c)28(ha\\252up)29(y)]TJ 0 -13.55 Td[(sz)-1(yk)28(o)28(w)28(a\\242)-282(i)-280(robi)1(\\242)-282(p)-27(orz\\241dki)-280(na)-281(p)1(rz)-1(y)1(j\\246c)-1(ie,)-281(j)1(ak)-281(i)-281(d)1(rugi)1(e)-1(,)-281(i)-280(c)-1(ze)-1(k)56(a\\242)-281(gor\\241cz)-1(k)28(o)28(w)28(o)-281(p)-28(o)28(wra-)]TJ 0 -13.549 Td[(ca)-56(j\\241cyc)28(h,)-333(jak)-333(i)-333(ca\\252)-1(a)-333(wie\\261)-334(w)-334(tej)-333(c)27(h)29(w)-1(i)1(li.)]TJ 27.879 -13.549 Td[(Zwija\\252a)-347(si\\246)-348(t\\246go,)-347(ja\\273e)-348(p)1(rzy\\261)-1(p)1(iew)-1(u)1(j\\241c)-347(z)-348(rad)1(o\\261)-1(ci)-347(a)-347(z)-348(u)1(t\\246)-1(skn)1(ie)-1(n)1(iem)-1(,)-347(i)-347(n)1(ie)-347(raz)]TJ -27.879 -13.549 Td[(jeden)-333(wyb)1(ie)-1(ga\\252a)-333(patr)1(z)-1(e\\242)-334(na)-333(d)1(rogi,)-333(k)56(a)-56(j)-333(i)-333(ws)-1(zystkie)-333(w)-1(i)1(s)-1(ia\\252y)-333(o)-28(cz)-1(y)1(m)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Kogo)-333(to)-334(wygl\\241d)1(ac)-1(i)1(e)-1(?)-333({)-334(zagadn)1(\\241\\252)-334(j)1(\\241)-334(k)1(tos)-1(i)1(k)-334(n)1(ies)-1(p)-27(o)-28(dzian)1(ie)-1(.)]TJ 0 -13.549 Td[(Jakb)29(y)-305(j\\241)-305(kto)-305(pr)1(z)-1(ez)-306(cie)-1(mi\\246)-306(zdzieli\\252,)-305(zblad)1(\\252a,)-305(r\\246)-1(ce)-306(j)1(e)-1(j)-304(opad\\252y)-305(k)1(ie)-1(b)28(y)-305(t)1(e)-306(s)-1(k)1(rzy-)]TJ -27.879 -13.55 Td[(d\\252a)-333(pr)1(z)-1(etr\\241cone)-334(i)-333(se)-1(r)1(c)-1(e)-333(z)-1(ad)1(ygota\\252o)-334(z)-333(\\273)-1(a\\252o\\261c)-1(i.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-300(n)1(a)-300(k)28(ogo\\273)-301(to)-300(cze)-1(k)56(a?)-300(pr)1(z)-1(ec)-1(iek)-300(n)1(ik)28(om)27(u)-299(do)-300(n)1(iej)-300(n)1(ie)-1(\\261pi)1(e)-1(sz)-1(n)1(o,)-300(pr)1(z)-1(ec)-1(i)1(e)-1(k)]TJ -27.879 -13.549 Td[(na)-425(ws)-1(zystkim)-425(\\261)-1(wiec)-1(ie)-425(s)-1(ama)-426(j)1(e)-1(st)-425(jak)28(o)-425(ten)-425(k)28(o\\252)-1(ek!.)1(..)-425({)-426(T)28(yle)-425(c)-1(o)-425(m)-1(o\\273e)-426(An)28(t)1(e)-1(k!)1(...)-425({)]TJ 0 -13.549 Td[(do)-27(da\\252a)-333(trw)28(o\\273)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-330(An)28(tek!)-330({)-330(wys)-1(ze)-1(p)1(ta\\252a)-330(c)-1(ic)28(h)28(u\\261k)28(o,)-330(se)-1(rce)-331(j)1(e)-1(j)-329(w)27(ez)-1(b)1(ra\\252o)-330(w)27(es)-1(t)1(c)27(hn)1(ie)-1(n)1(iem)-331(i)-330(p)1(rzy-)]TJ -27.879 -13.55 Td[(p)-27(om)-1(i)1(nki)-342(prze)-1(wia\\252y)-342(prze)-1(z)-343(p)1(am)-1(i\\246\\242)-343(kiej)-343(te)-343(mg\\252y)-343(ni)1(k\\252e)-344(i)-342(kiej)-343(se)-1(n)-342(cudn)29(y)83(,)-342(ale)-344(d)1(a)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(ju)1(\\273)-334(\\261nion)29(y)83(.)-333(Mo\\273e)-334(i)-333(wr\\363)-28(ci!)-333({)-333(duma\\252a.)]TJ\nET\nendstream\nendobj\n1553 0 obj <<\n/Type /Page\n/Contents 1554 0 R\n/Resources 1552 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1552 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1557 0 obj <<\n/Length 9891      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(486)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(...)1(C)-1(h)1(o)-28(\\242)-353(k)28(o)28(w)28(al)-352(jes)-1(zc)-1(ze)-353(w)28(cz)-1(ora)-55(j)-352(u)1(p)-28(ewnia\\252,)-352(\\273e)-353(go)-352(z)-353(d)1(rugi)1(m)-1(i)-352(z)-352(krem)-1(i)1(na\\252u)-352(n)1(ie)]TJ -27.879 -13.549 Td[(pu)1(s)-1(zcz)-1(\\241,)-333(\\273e)-334(na)-333(d\\252u)1(gie)-334(lata)-333(tam)-334(p)-27(ozos)-1(tan)1(ie:)]TJ 27.879 -13.549 Td[({)-462(A)-461(m)-1(o\\273e)-462(go)-462(i)-462(p)1(usz)-1(cz)-1(\\241!)-461({)-462(Pr)1(z)-1(ywt\\363r)1(z)-1(y\\252a)-462(g\\252o\\261ni)1(e)-1(j)1(,)-462(jak)1(b)28(y)-462(j)1(u\\273)-462(wyc)27(h)1(o)-28(dz\\241c)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(l\\241)-335(i)-336(o)-28(cz)-1(ekiw)28(ani)1(e)-1(m)-336(nap)1(rze)-1(ciw,)-336(ale)-336(b)-27(e)-1(z)-336(r)1(ado\\261c)-1(i,)-335(b)-28(ez)-336(un)1(ie)-1(sienia)-335(i)-336(z)-336(jak)56(\\241\\261)-336(przy-)]TJ 0 -13.549 Td[(cz)-1(a)-55(jon\\241)-333(w)-333(s)-1(ercu)-333(trw)28(o\\273)-1(n)1(\\241)-334(n)1(ie)-1(c)28(h\\246c)-1(i)1(\\241.)]TJ 27.879 -13.55 Td[({)-344(A)-344(n)1(ie)-1(c)28(h)-344(se)-345(wr\\363)-27(c)-1(i!)-343(c)-1(o)-344(mi)-344(tam)-344(z)-345(n)1(iego!)-344({)-344(c)-1(i)1(e)-1(p)1(n\\246\\252)-1(a)-344(si\\246)-344(niecie)-1(r)1(pli)1(w)-1(i)1(e)-1(.)-344(S)1(tary)]TJ -27.879 -13.549 Td[(j\\241\\252)-333(cos)-1(ik)-333(b)-27(e)-1(\\252k)28(ota\\242...)]TJ 27.879 -13.549 Td[(Zadem)-329(s)-1(i)1(\\246)-330(o)-27(dwr\\363)-28(ci\\252a)-329(o)-27(d)-329(n)1(iego)-329(z)-329(obmierz)-1(\\252o\\261c)-1(i)1(,)-329(n)1(ie)-329(p)-28(o)-27(da)-56(j)1(\\241c)-329(je\\261)-1(\\242,)-329(c)28(ho)-28(\\242)-329(wie-)]TJ -27.879 -13.549 Td[(dzia\\252a,)-333(\\273e)-334(o)-334(t)1(o)-334(sk)56(am)-1(le)-333(p)-28(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u.)]TJ 27.879 -13.549 Td[({)-415(B)-1(y)1(\\261)-416(ju)1(\\273)-416(raz)-415(z)-1(d)1(e)-1(c)27(h)1(\\252!)-415({)-416(r)1(oz)-1(sro\\273y\\252a)-416(si\\246)-416(n)1(agle)-416(i)-415(ab)28(y)-415(go)-415(straci\\242)-416(z)-416(o)-27(c)-1(zu,)-415(na)]TJ -27.879 -13.549 Td[(ganek)-333(z)-1(n)1(o)28(w)-1(u)-332(p)-28(osz)-1(\\252a.)]TJ 27.879 -13.55 Td[(Kij)1(ank)1(i)-373(tr)1(z)-1(epa\\252y)-372(nad)-371(s)-1(ta)28(w)28(e)-1(m)-373(i)-372(k)56(a)-56(j)1(\\261)-373(ni)1(e)-1(k)56(a)-56(j)-372(p)-27(o)-28(d)-372(d)1(rze)-1(w)28(am)-1(i)-372(cz)-1(erwieni\\252y)-372(si\\246)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)-365(p)1(ie)-1(r)1(\\241c)-1(e.)-365(Su)1(c)27(h)28(y)84(,)-365(leciu\\261ki)-365(wiater)-365(ledwie)-365(c)-1(o)-365(t)28(yk)56(a\\252)-365(wie)-1(r)1(z)-1(b)-364(z)-1(ielon)28(y)1(c)27(h,)-364(\\273)-1(e)-365(z)-1(a-)]TJ 0 -13.549 Td[(trz\\246c)27(h\\252y)-428(si\\246)-429(ni)1(e)-1(ki)1(e)-1(d)1(y)83(.)-428(S\\252o\\253)1(c)-1(e)-429(co)-428(ino)-428(mia\\252o)-429(si\\246)-429(wy\\252up)1(a\\242)-429(zz)-1(a)-428(bia\\252y)1(c)27(h)-428(c)27(h)1(m)27(u)1(r,)-428(\\273)-1(e)]TJ 0 -13.549 Td[(ju)1(\\273)-324(p)-28(ol)1(\\261)-1(n)1(ie)-1(w)28(a\\252y)-324(k)56(a\\252u\\273e)-324(i)-324(p)-27(o)-324(g\\252adzi)-324(sta)28(w)-1(u)-323(ta\\253)1(c)-1(o)28(w)27(a\\252y)-323(z)-1(\\252ota)28(w)28(e)-325(migot)28(y)84(.)-324(Des)-1(zc)-1(zo)28(w)27(e)]TJ 0 -13.549 Td[(mg\\252y)-317(ju)1(\\273)-317(opad\\252y)84(,)-317(\\273e)-317(z)-318(sz)-1(ar)1(yc)27(h)1(,)-317(k)56(amie)-1(n)1(n)28(yc)28(h)-317(p)1(\\252)-1(ot)1(\\363)27(w)-317(wyn)1(os)-1(i)1(\\252)-1(y)-316(s)-1(i)1(\\246)-318(coraz)-317(bar)1(z)-1(ej)-317(n)1(a)]TJ 0 -13.55 Td[(ja\\261ni)1(\\246)-283(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(a)-282(r)1(oz)-1(kwita)-55(j\\241ce)-283(sady)84(,)-282(ki)1(e)-1(b)28(y)-281(te)-283(wielgac)27(h)1(ne)-282(s)-1(n)1(op)28(y)-282(kwietn)1(e)-1(,)-282(wion)1(\\241c)-1(e)]TJ 0 -13.549 Td[(zapac)27(h)1(am)-1(i)-292(i)-293(p)-27(e)-1(\\252n)1(e)-294(p)1(tasic)27(h)-292(\\261)-1(wiegot\\363)28(w)-1(,)-292(m)-1(\\252y)1(n)-293(tu)1(rk)28(ota\\252)-293(ostro,)-292(a)-293(z)-294(k)1(u\\271ni)-293(r)1(oz)-1(l)1(at)27(y)1(w)27(a-)]TJ 0 -13.549 Td[(\\252y)-310(si\\246)-310(d)1(\\271)-1(wi\\246kliw)28(e)-1(,)-309(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(e)-310(b)1(ic)-1(i)1(a)-310(m\\252)-1(ot)1(\\363)27(w,)-309(z)-1(a\\261)-310(lu)1(dzkie)-310(g\\252osy)-310(i)-309(c)-1(a\\252y)-309(te)-1(n)-309(r)1(w)27(ete)-1(s)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(goto)27(w)28(a\\253)-333(b)28(y)1(\\252)-334(jak)28(o)-333(to)-333(psz)-1(cze)-1(ln)1(e)-334(br)1(z)-1(\\246c)-1(zenie)-334(w\\261r\\363)-28(d)-333(d)1(rze)-1(win)1(.)]TJ 27.879 -13.549 Td[({)-308(A)-308(mo\\273)-1(e)-308(go)-309(i)-307(obacz)-1(\\246!)-308({)-308(du)1(m)-1(a\\252a)-308(wysta)27(wia)-55(j\\241c)-308(t)28(w)27(ar)1(z)-309(na)-308(wiat)1(e)-1(r)-308(i)-308(n)1(a)-308(te)-309(r)1(os)-1(y)]TJ -27.879 -13.55 Td[(sk)55(ap)1(uj)1(\\241c)-1(e)-334(z)-333(obsyc)27(h)1(a)-56(j\\241cyc)28(h)-333(kwiat\\363)28(w)-334(i)-333(li)1(\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261.)-333(nie)-333(w)-1(y)1(jdziec)-1(ie)-333(to)-334(d)1(o)-333(rob)-27(ot)27(y)1(?)-334({)-333(wrz)-1(asn\\246\\252a)-333(J\\363z)-1(k)56(a)-333(z)-334(p)-28(o)-27(dw)28(\\363rza.)]TJ 0 -13.549 Td[(Ani)-314(j)1(e)-1(j)-313(do)-314(g\\252o)27(wy)-314(p)1(rz)-1(y)1(s)-1(z\\252o)-315(si\\246)-315(op)1(iera\\242:)-315(zabr)1(a\\252a)-315(mot)28(ycz)-1(k)28(\\246)-314(i)-315(zaraz)-314(p)-28(osz)-1(\\252a)-314(do)]TJ -27.879 -13.549 Td[(k)28(obi)1(e)-1(t.)-299(O)1(dpad)1(\\252a)-300(j)1(\\241)-299(m)-1(o)-27(c)-300(i)-299(c)27(h)1(\\246)-1(\\242)-299(s)-1(p)1(rz)-1(eciwu,)-299(a)-299(na)28(w)28(e)-1(t)-299(rad)1(a)-300(p)-27(o)-28(d)1(da\\252a)-299(s)-1(i)1(\\246)-300(pr)1(z)-1(y)1(k)55(azo)28(w)-1(i)1(,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-238(j)1(\\241)-239(wyr)1(yw)28(a\\252)-239(z)-239(m)28(y\\261le)-1(\\253)-237(i)-239(n)1(iep)-28(ewno\\261c)-1(i.)-238(P)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252a)-239(j)1(\\241)-239(j)1(e)-1(n)1(o)-238(dziwna)-238(t\\246)-1(skn)1(o\\261)-1(\\242,)]TJ 0 -13.55 Td[(\\273e)-391(j)1(a\\273)-1(e)-390(\\252z)-1(y)-390(n)1(abiega\\252y)-390(do)-390(o)-27(c)-1(zu,)-390(a)-390(d)1(usz)-1(a)-390(si\\246)-390(k)55(a)-55(j\\261c)-1(i)1(\\261)-391(r)1(w)27(a\\252a.)-390(T)83(ak)-390(si\\246)-390(pr)1(z)-1(yp)1(i\\246\\252)-1(a)-390(d)1(o)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)83(,)-369(\\273e)-370(k)28(om)-1(or)1(nice)-370(os)-1(ta\\252y)-369(dalek)28(o)-370(n)1(a)-370(za)-56(j)1(dac)27(h)1(,)-370(al)1(e)-370(nie)-370(u)1(s)-1(ta)28(w)28(a\\252a,)-370(n)1(ie)-370(z)-1(w)28(a\\273)-1(a)-55(j\\241c)]TJ 0 -13.549 Td[(na)-430(Jagust)28(ynk)28(o)28(w)28(e)-432(p)1(rzycinki)-430(ni)-430(widz\\241c)-431(bab)1(ic)27(h)-430(\\261)-1(l)1(e)-1(p)1(i\\363)28(w)-1(,)-430(c)-1(o)-430(j\\241)-431(ob)1(iega\\252)-1(y)-430(c)-1(i)1(\\246)-1(giem,)]TJ 0 -13.549 Td[(kiej)-333(te)-334(p)1(s)-1(y)-333(p)1(rzyc)-1(za)-56(j)1(one)-334(d)1(ok)56(\\241\\261)-1(li)1(w)27(ego)-334(c)28(h)28(wytu)1(.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-284(n)1(iekiedy)-283(pr)1(os)-1(to)28(w)28(a\\252)-1(a)-283(s)-1(i)1(\\246)-284(nagle,)-283(jak)28(o)-283(ta)-284(gr)1(us)-1(za)-283(o)-28(c)-1(i)1(\\246)-1(\\273a\\252a)-284(kwiatem)-284(pr)1(o-)]TJ -27.879 -13.55 Td[(stuj)1(e)-431(s)-1(i)1(\\246)-431(na)-430(mie)-1(d)1(z)-1(y)-430(p)-27(o)-28(d)-430(t)1(kni\\246cie)-1(m)-430(wiatru)-430(i)-430(c)28(h)28(wie)-1(j)1(e)-431(si\\246)-431(\\271dzie)-1(b)1(k)28(o,)-430(i)-430(patr)1(z)-1(y)-430(p)-27(o)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-406(t)28(ys)-1(i)1(\\241c)-1(ami)-406(o)-28(czu,)-406(i)-405(p\\252acz)-1(e)-406(b)1(ia\\252ym,)-406(w)28(onn)28(ym)-406(ok)1(w)-1(i)1(ate)-1(m)-406(p)-27(o)-406(rozc)27(h)28(wian)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(zie)-1(l)1(on)28(yc)27(h)-333(zb)-27(o\\273)-1(ac)28(h,)-333(i)-333(m)-1(o\\273e)-334(zim)27(y)-333(srogie)-333(s)-1(p)-27(om)-1(i)1(na...)]TJ 27.879 -13.549 Td[(Jagu)1(\\261)-308(o)-306(An)28(tku)-306(m)27(y)1(\\261)-1(la\\252a)-307(n)1(iekiedy)84(,)-307(a)-307(cz\\246)-1(\\261c)-1(iej)-306(Jas)-1(i)1(o)27(w)28(e)-307(o)-28(c)-1(zy)-306(jarz\\241c)-1(e)-307(i)-306(Jas)-1(i)1(o)27(w)28(e)]TJ -27.879 -13.549 Td[(w)28(argi)-310(cz)-1(erw)28(one)-310(s)-1(ta)28(w)28(a\\252y)-310(w)-310(pami\\246)-1(ci,)-309(i)-310(Jas)-1(i)1(o)27(wy)-310(g\\252os)-310(lu)1(b)28(y)-310(o)-28(d)1(z)-1(yw)28(a\\252)-310(s)-1(i)1(\\246)-311(w)-310(se)-1(r)1(c)-1(u)-309(tak)]TJ 0 -13.549 Td[(s\\252)-1(o)-27(dk)28(o,)-272(j)1(a\\273)-1(e)-272(s)-1(m)28(utki)-272(p)1(ierz)-1(c)28(ha\\252y)-272(i)-272(p)-27(o)-56(j)1(a\\261)-1(n)1(ia\\252o)-272(w)-273(n)1(iej,)-272(\\273e)-273(p)1(rz)-1(y)1(gi\\241)28(w)-1(szy)-272(s)-1(i\\246)-272(bar)1(z)-1(ej)-272(nad)]TJ 0 -13.55 Td[(zagonem)-1(,)-429(c)-1(ze)-1(p)1(i\\252a)-430(si\\246)-431(ca\\252\\241)-430(mo)-28(c)-1(\\241)-429(ut\\246s)-1(k)1(nie\\253)-430(t)28(yc)28(h)-430(wsp)-28(omin)1(k)28(\\363)27(w.)-429(Natur\\246)-430(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(ju)1(\\273)-485(tak)56(\\241)-485(mia\\252a,)-484(kieb)28(y)-484(te)-485(wiotkie)-485(t)1(rz)-1(mielin)28(y)-484(cz)-1(y)-484(c)27(h)1(m)-1(i)1(e)-1(le)-485(d)1(z)-1(i)1(kie,)-485(k)1(t\\363re)-485(za)27(wd)1(y)]TJ 0 -13.549 Td[(cz)-1(epi\\242)-382(s)-1(i)1(\\246)-383(m)27(u)1(s)-1(z\\241)-382(jak)1(ie)-1(j)-381(ga\\252\\246)-1(zi)-382(leb)-28(o)-382(k)28(ole)-382(pn)1(ia)-382(wynios\\252e)-1(go)-382(o)28(win)1(\\241\\242)-383({)-382(b)28(yc)28(h)-382(rosn\\241\\242)]TJ 0 -13.549 Td[(mog\\252y)-413(i)-412(kwitn)1(\\241\\242)-1(,)-412(i)-412(\\273)-1(y\\242)-413({)-412(z)-1(a\\261)-413(o)-27(derw)28(a)-1(n)1(e)-413(p)-27(o)-28(dp)-27(ory)-412(i)-412(s)-1(ob)1(ie)-413(os)-1(t)1(a)27(wion)1(e)-1(,)-412(na)-412(past)28(w)27(\\246)]TJ 0 -13.549 Td[(z\\252)-1(ej)-333(p)1(rz)-1(y)1(go)-28(dzie)-334(\\252acno)-333(id\\241.)]TJ 27.879 -13.55 Td[(A)-335(k)28(omorni)1(c)-1(e,)-335(nasze)-1(p)1(ta)27(wsz)-1(y)-334(s)-1(i\\246)-335(o)-335(ni)1(e)-1(j)-334(do)-335(syta,)-335(\\273e)-336(to)-334(c)-1(iep\\252o)-335(j)1(u\\273)-335(s)-1(i\\246)-335(zrobi)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(galan)28(t)1(e)-1(,)-275(p)-27(oz)-1(rzuca\\252y)-275(z)-276(g\\252\\363)27(w)-275(p\\252ac)27(h)29(t)28(y)-276(i)-275(zapaski)-275(i)-275(w)-1(zi\\246\\252y)-276(r)1(a\\271)-1(n)1(ie)-1(j)-275(p)-27(ogw)28(arza\\242)-1(,)-275(c)-1(z\\246\\261)-1(cie)-1(j)]TJ\nET\nendstream\nendobj\n1556 0 obj <<\n/Type /Page\n/Contents 1557 0 R\n/Resources 1555 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1542 0 R\n>> endobj\n1555 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1560 0 obj <<\n/Length 9209      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(487)]TJ -358.232 -35.866 Td[(si\\246)-334(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\242)-1(,)-333(n)1(a)-334(p)-27(o\\252e)-1(d)1(ni)1(e)-334(t\\246)-1(skli)1(w)-1(i)1(e)-334(wygl\\241da)-55(j\\241c...)]TJ 27.879 -13.549 Td[({)-267(K)1(oz)-1(\\252o)28(w)27(a,)-266(wy\\273s)-1(za\\261)-1(cie)-267({)-267(to)-266(obacz)-1(cie,)-267(czy)-267(c)27(h)1(\\252op)-28(\\363)28(w)-267(n)1(ie)-267(wid)1(a\\242)-268(n)1(a)-267(top)-27(olo)28(w)28(e)-1(j)1(?)]TJ 0 -13.549 Td[({)-333(Ani)-333(widu)1(,)-333(ani)-333(s\\252)-1(y)1(c)27(h)28(u)1(!)-333({)-334(o)-28(d)1(rze)-1(k)1(\\252)-1(a,)-333(p)1(r\\363\\273no)-333(s)-1(i\\246)-333(na)-333(palcac)27(h)-333(wspin)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(Gdzieb)28(y)-333(z)-1(a\\261)-333(tak)-333(ryc)27(h)1(\\252o...)-333(ni)1(e)-334(z)-1(d)1(\\241\\273)-1(\\241)-333(p)1(rz)-1(ed)-333(mroki)1(e)-1(m...)-333(k)56(arw)28(as)-334(dr)1(ogi...)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(i\\246)-1(\\242)-333(k)55(ar)1(c)-1(zm\\363)27(w)-333(na)-333(rozjazdac)27(h)1(!)-333({)-334(zakp)1(i\\252a)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.55 Td[({)-333(C)-1(h)29(ud)1(z)-1(iak)1(i,)-333(biedota,)-333(k)56(a)-56(j)-332(im)-334(tam)-333(k)55(ar)1(c)-1(zm)27(y)-333(b)-27(\\246)-1(d)1(\\241)-334(w)-333(g\\252o)27(wie!)]TJ 0 -13.549 Td[({)-333(Wymize)-1(ro)28(w)28(ali)-333(s)-1(i)1(\\246)-334(t)28(ylac)27(h)1(na)-333(cz)-1(asu,)-333(nacierzpieli..)1(.)]TJ 0 -13.549 Td[({)-333(T)83(ak)56(a)-334(im)-333(b)28(y\\252a)-333(krzywda,)-333(\\273e)-334(s)-1(i)1(\\246)-334(w)-334(cieple)-333(w)-1(y)1(s)-1(p)1(ali)-333(i)-334(n)1(a)-56(j)1(e)-1(d)1(li)-333(p)-27(o)-334(gr)1(dyk)28(\\246...)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)28(y)1(le)-334(tej)-333(dob)1(ro)-28(ci)-333(z)-1(a\\273y\\252y)83(,)-333(co)-334(t)1(e)-334(k)56(armiki)-333(na)-333(p)-27(okrzyw)27(ac)28(h)-333(z)-334(p)1(le)-1(w)28(ami.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(o)-333(s)-1(u)1(c)27(h)28(y)1(m)-334(z)-1(i)1(e)-1(mni)1(oku,)-333(a)-333(lepiej)-333(na)-333(w)28(olno\\261c)-1(i)-333({)-333(rze)-1(k\\252a)-333(Gr)1(z)-1(eli)-333(k)28(obieta.)]TJ 0 -13.549 Td[({)-276(D)1(opiero)-276(t)1(o)-276(sm)-1(aki)-275(tak)56(a)-276(w)28(oln)1(o\\261)-1(\\242!..)-275(ho,)-275(t)28(yla)-275(z)-276(niej)-275(biedn)1(e)-1(m)28(u,)-275(\\273)-1(e)-276(mo\\273e)-276(s)-1(ob)1(ie)]TJ -27.879 -13.55 Td[(zdyc)28(ha\\242)-416(z)-416(g\\252o)-27(du,)-415(k)56(a)-55(j)-415(m)27(u)-415(si\\246)-416(sp)-28(o)-27(dob)1(a,)-415(b)-28(o)-415(s)-1(ztraf)1(u)-415(za)-416(to)-415(p\\252aci\\242)-416(n)1(ie)-416(k)56(a\\273\\241,)-416(n)1(i)-415(go)]TJ 0 -13.549 Td[(stra\\273nik)-333(do)-333(kr)1(e)-1(min)1(a\\252)-1(u)-332(nie)-334(p)-27(o)-55(jmie)-1(!)1(...)-333({)-333(w)-1(y)1(dziwia\\252a.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(moi\\261c)-1(iewy)83(,)-333(p)1(ra)28(wda!)-333(ale)-334(co)-333(niew)27(ol)1(a,)-334(to)-333(n)1(ie)-1(w)28(ola!.)1(.)]TJ 0 -13.549 Td[({)-322(A)-322(c)-1(o)-322(gro)-27(c)27(h)-322(ze)-323(sp)-28(erk)56(\\241,)-322(to)-322(n)1(ie)-323(r)1(os)-1(\\363\\252)-322(na)-322(osik)28(o)28(w)-1(y)1(m)-323(k)28(o\\252ku)1(!)-322({)-322(prze)-1(d)1(rze)-1(\\271ni)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-333(j)1(a\\273)-1(e)-334(wsz)-1(y)1(s)-1(tki)1(e)-334(\\261)-1(miec)27(h)1(e)-1(m)-333(gruc)28(hn\\246\\252y)83(.)]TJ 27.879 -13.55 Td[(Od)1(c)-1(i\\246\\252a)-315(si\\246)-315(c)-1(osik)-315(F)1(ilip)1(k)55(a,)-314(ale)-315(m)-1(og\\252a)-315(t)1(\\363)-315(utr)1(z)-1(yma\\242)-315(wt\\363r)-315(z)-315(takim)-315(p)29(ys)-1(k)56(acz)-1(em)]TJ -27.879 -13.549 Td[(i)-477(oz)-1(or)1(nic\\241?)-478(Jagu)1(s)-1(t)28(yn)1(k)56(a)-478(n)1(a)27(wyd)1(z)-1(i)1(w)-1(i)1(a\\252)-1(a)-477(nad)-477(n)1(i\\241,)-477(c)-1(o)-477(in)1(o)-478(wlaz\\252o,)-478(i)-477(j)1(\\246)-1(\\252a)-477(c)-1(u)1(de\\253k)56(a)]TJ 0 -13.549 Td[(wygady)1(w)27(a\\242)-450(o)-450(m\\252)-1(y)1(narzu,)-449(jak)28(o)-450(n)1(a)-450(b)-28(\\363r)1(g)-450(da)-55(je)-450(s)-1(t\\246c)27(h)1(\\252\\241)-450(k)55(asz\\246)-1(,)-450(a)-449(z)-1(a)-450(p)1(ie)-1(n)1(i\\241dze)-450(te)-1(\\273)]TJ 0 -13.549 Td[(osz)-1(u)1(kuj)1(e)-366(na)-365(w)28(adze)-1(.)-365(Za\\261)-366(p)-27(ote)-1(m)-365(ju)1(\\273)-366(z)-366(Koz\\252o)28(w)27(\\241)-365(na)-365(sp)-28(\\363\\252k)28(\\246)-366(u)1(\\273)-1(yw)28(a\\252y)-365(na)-365(ca\\252)-1(ej)-365(ws)-1(i)1(,)]TJ 0 -13.549 Td[(ni)1(e)-335(prze)-1(p)1(usz)-1(cza)-56(j\\241c)-335(n)1(a)28(w)27(et)-335(d)1(obro)-27(dzie)-1(j)1(o)28(w)-1(i)1(;)-335(a)-334(przew)-1(\\252\\363)-28(cz)-1(\\241c)-335(k)56(a\\273dego)-335(z\\252ym)-1(i)-334(ozorami)]TJ 0 -13.55 Td[(kieb)28(y)-333(p)1(rz)-1(ez)-334(te)-334(ostre)-333(c)-1(iern)1(ie...)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(elo)28(w)27(a)-333(s)-1(p)1(r\\363b)-27(o)28(w)27(a\\252a)-333(br)1(oni\\242)-334(p)-27(oni)1(e)-1(kt)1(\\363ryc)27(h)1(,)-333(ale)-334(j)1(\\241)-334(zakrzycz)-1(a\\252a)-333(Koz\\252)-1(o)28(w)28(a:)]TJ 0 -13.549 Td[({)-333(Wy)-333(b)28(y\\261c)-1(i)1(e)-334(radzi)-333(br)1(oni\\242)-333(na)28(w)27(et)-333(takic)28(h,)-333(c)-1(o)-333(k)28(o\\261c)-1(io\\252y)-333(rozbi)1(ja)-55(j\\241...)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(ws)-1(zystki)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-333(zar\\363)28(w)-1(n)1(o)-333(p)-28(otr)1(z)-1(ebu)1(je)-334(ob)1(ron)28(y!)-333({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(\\252ago)-28(dn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\273)-334(n)1(a)-56(j)1(bar)1(z)-1(ej)-333(Grze)-1(l)1(a)-334(p)1(rze)-1(d)-333(w)28(as)-1(z\\241)-333(m)-1(aglo)28(wni)1(c)-1(\\241..)1(.)]TJ 0 -13.55 Td[({)-360(Nie)-360(w)28(am)-360(przes)-1(tr)1(z)-1(ega\\242)-361(p)-27(o)-28(cz)-1(ciw)28(o\\261)-1(ci,)-359(kt\\363ra\\261c)-1(ie)-360(Bartk)56(a)-360(K)1(oz)-1(\\252a)-360(k)28(ob)1(ie)-1(t)1(a!..)-360({)]TJ -27.879 -13.549 Td[(rze)-1(k)1(\\252a)-334(t)28(w)28(ardo,)-333(p)1(rostuj)1(\\241c)-334(s)-1(i)1(\\246)-334(wynio\\261le.)]TJ 27.879 -13.549 Td[(St)1(ruc)28(hla\\252y)-436(ws)-1(zystkie)-436(c)-1(ze)-1(k)56(a)-56(j)1(\\241c)-1(,)-436(\\273e)-437(sk)28(o)-28(c)-1(z\\241)-436(s)-1(ob)1(ie)-437(d)1(o)-437(k)1(ud\\252\\363)28(w,)-436(ale)-437(on)1(e)-437(jeno)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ewle)-1(k)1(\\252y)-304(p)-27(o)-304(sobi)1(e)-304(s)-1(r)1(ogimi)-304(\\261lepiami.)-303(Dob)1(rz)-1(e,)-303(c)-1(o)-303(w)-304(sam)-1(\\241)-303(p)-27(or\\246)-304(Wit)1(e)-1(k)-303(pr)1(z)-1(yl)1(e)-1(cia\\252)]TJ 0 -13.549 Td[(zw)27(o\\252yw)28(a\\242)-334(na)-333(obi)1(ad)-333(i)-333(k)28(os)-1(ze)-334(zbiera\\242,)-333(\\273)-1(e)-334(to)-333(\\261w)-1(i)1(\\241tk)28(o)27(w)28(a\\242)-334(mieli)-333(o)-28(d)-333(p)-27(o\\252ud)1(nia.)]TJ 27.879 -13.55 Td[(M\\363)28(wi\\252y)-368(ju)1(\\273)-369(m)-1(a\\252o)-368(w)-1(i)1(e)-1(le)-369(n)1(a)28(w)27(et)-369(p)1(rzy)-369(ob)1(iedzie)-1(,)-368(kt\\363r)1(e)-1(n)-368(Han)1(k)55(a)-368(k)56(az)-1(a\\252a)-368(p)-28(o)-28(d)1(a\\242)]TJ -27.879 -13.549 Td[(na)-245(ganku)1(,)-246(b)-27(o)-246(s)-1(\\252o\\253)1(c)-1(e)-246(s)-1(i)1(\\246)-247(j)1(u\\273)-246(ca\\252)-1(k)1(ie)-1(m)-246(wykr)1(y\\252o,)-246(ca\\252y)-246(\\261w)-1(iat)-245(s)-1(i)1(\\246)-247(r)1(oz)-1(j)1(a\\261)-1(n)1(i\\252,)-246(a)-246(ws)-1(zystkie)]TJ 0 -13.549 Td[(dac)28(h)28(y)-295(i)-295(dr)1(z)-1(ew)27(a)-295(k)1(w)-1(i)1(tn\\241ce)-1(,)-295(ki)1(e)-1(j)-295(t)28(y)1(m)-296(bi)1(e)-1(lu)1(c)27(h)1(n)28(ym)-295(\\261)-1(n)1(ie)-1(gi)1(e)-1(m)-295(przyp)1(r\\363s)-1(zone)-295({)-295(p\\252a)28(wi\\252y)]TJ 0 -13.549 Td[(si\\246)-334(w)-334(p)1(rze)-1(j)1(rzys)-1(t)28(ym,)-333(pac)28(hn)1(\\241c)-1(ym)-333(p)-28(o)28(wietrzu.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-273(si\\246)-274(rozto)-28(cz)-1(y)1(\\252)-274(s\\252o)-1(n)1(e)-1(czn)28(y)-273(i)-274(cic)27(h)29(y)83(,)-273(wiate)-1(r)-273(\\271dziebk)28(o)-273(prze)-1(gar)1(nia\\252)-273(p)-28(o)-273(dr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(winac)28(h,)-293(al)1(e)-294(tak)-292(m)-1(i)1(\\246)-1(ciutk)28(o,)-292(kieb)28(y)-293(te)-293(r\\246c)-1(e)-293(m)-1(at)1(c)-1(zyne)-293(g\\252adzi\\252y)-293(p)1(ie)-1(\\261c)-1(i)1(w)-1(i)1(e)-294(d)1(z)-1(i)1(e)-1(ci\\253skie)]TJ 0 -13.55 Td[(g\\246busie.)]TJ 27.879 -13.549 Td[(\\221wi\\241t)1(k)28(o)-319(te\\273)-319(sz)-1(cze)-1(re)-318(s)-1(tan)1(\\246)-1(\\252o,)-318(b)-27(o)-318(ju)1(\\273)-319(o)-28(d)-318(p)-27(o)-28(ob)1(iedzia)-318(nikt)1(o)-319(w)-318(p)-27(ole)-319(d)1(o)-319(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.549 Td[(ni)1(e)-357(wysz)-1(ed\\252,)-356(na)28(w)28(e)-1(t)-356(b)28(y)1(d\\252o)-356(z)-1(egnali)-356(z)-356(past)28(w)-1(i)1(s)-1(k,)-356(\\273e)-357(j)1(e)-1(n)1(o)-357(p)-27(on)1(ie)-1(k)1(t\\363ra)-356(biedot)1(a)-357(sw)27(o)-55(je)]TJ 0 -13.549 Td[(zam)-1(or)1(z)-1(on)1(e)-322(k)55(ar)1(m)-1(i)1(c)-1(ielki)-321(wyw)28(o)-28(dzi\\252a)-322(n)1(a)-322(p)-27(ostronk)56(ac)28(h)-322(p)-27(op)1(a\\261)-1(\\242)-322(k)56(a)-56(j)1(\\261)-322(p)-27(o)-322(mie)-1(d)1(z)-1(ac)28(h)-321(lub)]TJ 0 -13.549 Td[(nad)-332(ro)28(w)27(ami.)]TJ 27.879 -13.55 Td[(A)-308(ki)1(e)-1(j)-307(s)-1(\\252o\\253)1(c)-1(e)-308(o)-28(d)1(to)-28(c)-1(zy\\252o)-308(si\\246)-308(na)-308(p)1(ar\\246)-308(c)27(h)1(\\252opa)-308(z)-308(p)-27(o\\252)-1(u)1(dn)1(ia,)-308(j)1(\\246)-1(l)1(i)-308(s)-1(i)1(\\246)-309(l)1(ud)1(z)-1(ie)-308(zbie-)]TJ -27.879 -13.549 Td[(ra\\242)-389(p)-28(o)-28(d)-388(k)28(o\\261)-1(cio\\252e)-1(m,)-389(wygrze)-1(w)28(ali)-389(si\\246)-390(p)-27(o)-28(d)-389(m)27(u)1(rami,)-389(pr)1(z)-1(egw)27(ar)1(z)-1(a)-55(j\\241c)-390(z)-389(c)-1(ic)28(ha)-389(jak)28(o)-389(ci)]TJ\nET\nendstream\nendobj\n1559 0 obj <<\n/Type /Page\n/Contents 1560 0 R\n/Resources 1558 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1558 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1564 0 obj <<\n/Length 9449      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(488)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pt)1(ak)28(o)27(wie)-266(\\261)-1(wiergo)-28(c\\241c)-1(y)-266(w)-266(klon)1(a)-1(c)28(h)-266(i)-266(lip)1(ac)27(h,)-266(co)-266(w)-1(y)1(nios\\252ym)-267(kr)1(\\246)-1(gi)1(e)-1(m)-267(j)1(a\\273)-1(e)-266(ku)-266(dac)28(hom)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(io\\252a)-376(s)-1(i)1(\\246)-1(ga\\252y)-376(ga\\252\\246)-1(ziami,)-376(le)-1(d)1(wie)-377(pr)1(z)-1(yt)1(rz)-1(\\241\\261ni)1(\\246)-1(t)28(ymi)-376(z)-1(ieleni\\241.)-376(S)1(\\252o\\253ce)-377(przyp)1(ie)-1(k)56(a-)]TJ 0 -13.549 Td[(\\252o)-387(niezgorz)-1(ej,)-387(j)1(ak)-387(to)-387(zw)-1(y)1(c)-1(za)-56(j)1(nie)-387(b)28(yw)28(a)-388(p)-27(o)-387(ran)1(n)28(ym)-387(des)-1(zc)-1(zu.)-387(K)1(obiet)28(y)-387(z)-1(estro)-56(j)1(one)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(ie)-464(p)-27(os)-1(ta)28(w)28(a\\252y)-464(k)1(upami,)-463(a)-463(p)-28(on)1(ie)-1(k)1(t\\363re)-464(wygl\\241d)1(a\\252y)-464(t)1(\\246)-1(skliwie)-464(za)-464(m)28(ur)1(,)-464(n)1(a)]TJ 0 -13.549 Td[(top)-27(olo)28(w)27(\\241,)-471(z)-1(a\\261)-472(\\261lep)28(y)-471(dziad)-471(s)-1(iedzia\\252)-472(wraz)-472(z)-472(p)1(ie)-1(skiem)-472(w)28(e)-472(w)-1(r)1(\\363tniac)28(h)-471(s)-1(m\\246)-1(tar)1(z)-1(a)-471(i)]TJ 0 -13.55 Td[(p)-27(ob)-28(o\\273ne)-429(p)1(ie)-1(\\261ni)1(e)-430(wyci\\241)-28(ga\\252)-429(j)1(\\246)-1(k)1(liwie,)-429(uszam)-1(i)-428(s)-1(tr)1(z)-1(yg\\252)-429(n)1(a)-429(ws)-1(ze)-429(s)-1(tr)1(on)28(y)-429(i)-428(p)-28(ot)1(rz)-1(\\241sa\\252)]TJ 0 -13.549 Td[(mis)-1(ecz)-1(k)56(\\241)-333(do)-333(w)27(c)28(ho)-28(d)1(z)-1(\\241cyc)27(h)1(.)]TJ 27.879 -13.549 Td[(Wysze)-1(d)1(\\252)-308(ryc)28(h\\252o)-308(i)-307(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-307(w)-308(k)28(om\\273)-1(\\246)-308(u)1(br)1(an)28(y)-308(i)-307(s)-1(t)1(u\\252\\246)-1(,)-307(z)-308(go\\252\\241)-308(g\\252o)28(w)27(\\241,)-307(\\273e)-308(m)27(u)]TJ -27.879 -13.549 Td[(ja\\273e)-334(\\252ysin)1(a)-334(b)1(\\252ys)-1(k)56(a\\252a)-333(w)-334(s\\252)-1(o\\253)1(c)-1(u)1(.)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(tr)1(e)-1(k)-374(B)-1(or)1(yn\\363)28(w)-375(k)1(rz)-1(y)1(\\273)-375(uj)1(\\241\\252)-1(,)-374(b)-27(o)-375(Jam)28(bro\\273)-375(n)1(ie)-375(ur)1(adzi\\252b)28(y)-374(le)-1(cie\\242)-375(t)27(y)1(la)-375(d)1(rogi,)]TJ -27.879 -13.549 Td[(za\\261)-303(w)28(\\363)-56(j)1(t,)-302(so\\252t)27(y)1(s)-303(i)-301(kt\\363ra\\261)-302(z)-302(t\\246\\273)-1(sz)-1(yc)28(h)-302(d)1(z)-1(i)1(e)-1(u)1(c)27(h)-302(wyn)1(ie\\261)-1(li)-301(c)27(h)1(or\\241)-28(gwie,)-302(co)-302(s)-1(i\\246)-302(j)1(\\246)-1(\\252y)-302(zaraz)]TJ 0 -13.55 Td[(rozwija\\242)-249(na)-249(w)-1(i)1(e)-1(tr)1(z)-1(e,)-249(trze)-1(p)1(a\\242)-250(i)-249(b\\252ysk)56(a\\242)-250(k)28(olorami.)-249(Mi)1(c)27(ha\\252)-249(organ)1(is)-1(t\\363)28(w)-249(p)-28(on)1(i\\363s\\252)-250(w)28(o)-28(d\\246)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(con\\241)-366(i)-367(kr)1(opid)1(\\252o,)-367(Jam)28(br)1(o\\273)-1(y)-366(rozda\\252)-367(b)1(rac)28(kim)-367(\\261w)-1(i)1(e)-1(ce)-1(,)-366(a)-367(or)1(ganista)-367(z)-367(k)1(s)-1(i\\241\\273k)56(\\241)-367(w)]TJ 0 -13.549 Td[(r\\246ku)-290(s)-1(tan)1(\\241\\252)-291(wp)-28(o)-28(d)1(le)-291(dob)1(ro)-28(d)1(z)-1(ieja,)-290(kt\\363ren)-291(d)1(a\\252)-291(z)-1(n)1(ak,)-291(i)-290(ruszyli)-291(w)-291(cic)27(h)1(o\\261)-1(ci)-291(p)1(rze)-1(z)-291(wie)-1(\\261)]TJ 0 -13.549 Td[(okwiec)-1(on)1(\\241;)-333(nad)-333(sta)28(w)27(em)-1(,)-333(j)1(a\\273)-1(e)-334(w)28(e)-334(w)28(o)-28(dzie)-334(cic)28(hej)-333(o)-28(db)1(ija\\252a)-333(s)-1(i)1(\\246)-334(c)-1(a\\252a)-333(pr)1(o)-28(ce)-1(sja.)]TJ 27.879 -13.549 Td[(Sp)-27(oro)-446(jes)-1(zc)-1(ze)-447(k)28(obi)1(e)-1(t)-446(i)-447(d)1(z)-1(ieci)-447(p)1(rz)-1(y)1(\\252\\241c)-1(za\\252o)-447(s)-1(i)1(\\246)-447(p)-28(o)-446(dro)-27(dze)-1(,)-446(z)-1(a\\261)-447(n)1(a)-447(ostatku)]TJ -27.879 -13.55 Td[(m\\252ynar)1(z)-334(z)-334(k)28(o)28(w)27(al)1(e)-1(m)-334(p)-27(ob)-27(ok)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(a)-333(s)-1(i)1(\\246)-334(do)-28(cisk)56(ali.)]TJ 27.879 -13.549 Td[(A)-280(n)1(a)-280(s)-1(am)28(ym)-281(k)28(o\\253)1(c)-1(u)1(,)-280(za)-280(ws)-1(zys)-1(tk)1(imi,)-280(wlek\\252a)-280(s)-1(i)1(\\246)-281(Agata,)-280(cz\\246)-1(sto)-280(p)-28(ok)56(asz)-1(l)1(uj\\241c,)-280(i)]TJ -27.879 -13.549 Td[(\\261le)-1(p)29(y)-308(dziad)-307(k)28(ole)-1(b)1(a\\252)-308(s)-1(i)1(\\246)-309(n)1(a)-308(ku)1(lac)27(h)1(,)-308(jeno)-308(\\273e)-308(o)-28(d)-307(m)-1(ostu)-308(za)28(wr\\363)-28(ci\\252)-308(i)-308(p)-27(ono)-308(d)1(o)-308(k)56(arcz)-1(m)28(y)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-293(za)-292(m\\252)-1(y)1(nem)-293(zas)-1(ta)28(wion)28(y)1(m)-1(,)-292(b)-27(o)-292(i)-292(um\\241c)-1(zon)28(y)-292(m\\252ynar)1(c)-1(zyk)-292(p)1(rz)-1(y)1(s)-1(ta\\252)-292(do)]TJ -27.879 -13.55 Td[(k)28(ompan)1(ii,)-344(z)-1(ap)1(alili)-344(\\261)-1(wiec)-1(i)1(e)-1(,)-344(ks)-1(i)1(\\241dz)-345(nad)1(z)-1(i)1(a\\252)-345(c)-1(zarn)1(\\241,)-345(r)1(ogat\\241)-345(cz)-1(ap)-27(e)-1(cz)-1(k)28(\\246,)-344(prze)-1(\\273egna\\252)]TJ 0 -13.549 Td[(si\\246)-334(i)-333(z)-1(ai)1(n)28(tono)28(w)28(a\\252:)-333(\\377)-56(Kto)-333(s)-1(i)1(\\246)-334(w)-334(op)1(iek)28(\\246)-1(..)1(.\")]TJ 27.879 -13.549 Td[(Za)28(w)-1(t)1(\\363ro)28(w)27(ali)-322(z)-324(c)-1(a\\252ego)-323(s)-1(erca,)-323(jak)-323(k)1(to)-323(umia\\252,)-323(i)-323(ru)1(s)-1(zyli)-323(wzd\\252u\\273)-323(rze)-1(ki)1(,)-323(\\252\\241k)55(ami,)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)-416(p)-27(e)-1(\\252n)1(o)-417(b)28(y\\252o)-416(jes)-1(zc)-1(ze)-417(k)56(a\\252u\\273,)-417(a)-416(m)-1(i)1(e)-1(jscam)-1(i)-416(tak)-416(grz\\241)-1(sk)28(o,)-416(\\273)-1(e)-417(p)-27(o)-417(k)28(ostki)-416(z)-1(ap)1(adali)1(.)]TJ 0 -13.549 Td[(Os\\252ania)-55(j\\241c)-422(\\261)-1(wiat)1(\\252)-1(o)-421(r\\246k)28(om)-1(a;)-421(roz)-1(w\\252\\363)-28(cz)-1(y)1(li)-422(si\\246)-422(p)-27(o)-422(w)27(\\241skiej)-422(d)1(ro\\273yni)1(e)-1(,)-421(kiej)-422(r)1(\\363\\273)-1(an)1(ie)-1(c)]TJ 0 -13.55 Td[(u)28(wit)28(y)-333(z)-334(cz)-1(erw)28(on)28(yc)28(h,)-333(pasiast)27(y)1(c)27(h)-333(w)28(e)-1(\\252n)1(iak)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Rz)-1(ek)56(a)-339(m)-1(i)1(gota\\252a)-339(w)-340(s\\252o\\253cu)-339(i)-339(wi\\252a)-339(si\\246)-340(p)-27(okr)1(\\246)-1(tn)1(ie)-340(wskro\\261)-339(\\252\\241k)-339(z)-1(i)1(e)-1(lon)29(yc)27(h)1(,)-339(nab)1(i-)]TJ -27.879 -13.549 Td[(t)28(yc)27(h)-332(k)55(a)-55(j\\261)-334(n)1(iek)55(a)-55(j)-333(k)28(\\246)-1(p)1(ami)-334(\\273\\363\\252t)28(yc)27(h)-333(i)-333(b)1(ia\\252yc)27(h)-332(kwiatk)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Chor)1(\\241)-28(gwie)-339(wia\\252y)-337(s)-1(i\\246)-338(n)1(ad)-338(g\\252o)28(w)27(ami,)-337(nib)29(y)-338(te)-338(ptaki)-337(wie)-1(l)1(gac)27(hn)1(e)-339(\\273\\363\\252to)-28(cz)-1(erw)28(o-)]TJ -27.879 -13.549 Td[(n)28(ymi)-377(s)-1(kr)1(z)-1(y)1(d\\252am)-1(i)1(,)-378(kr)1(z)-1(y)1(\\273)-379(k)28(o\\252y)1(s)-1(a\\252)-378(si\\246)-378(na)-377(przedzie)-1(,)-377(a)-378(g\\252osy)-378(roz\\261piew)27(an)1(e)-378(roznosi\\252y)]TJ 0 -13.55 Td[(si\\246)-355(z)-355(w)28(olna)-354(w)-354(c)-1(ic)28(h)28(ym,)-354(przejrzyst)28(ym)-355(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(,)-355(spad)1(a)-56(j)1(\\241c)-355(na)-354(tr)1(a)27(wy)84(,)-354(na)-354(k)28(\\246)-1(p)28(y)-354(\\252o-)]TJ 0 -13.549 Td[(zin)-337(j)1(as)-1(n)1(oz)-1(i)1(e)-1(lon)29(yc)27(h)1(,)-337(na)-336(c)-1(iern)1(io)28(w)27(e)-337(kr)1(z)-1(e,)-337(ca\\252e)-338(w)-337(b)1(ia\\252o\\261)-1(ciac)28(h)-337(kwiat)1(\\363)27(w)-337(k)1(ie)-1(b)29(y)-337(w)-337(t)28(yc)27(h)]TJ 0 -13.549 Td[(gz\\252)-1(ac)28(h)-333(pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(W)84(o)-28(da)-457(plu)1(s)-1(k)56(a\\252a)-458(o)-457(brzegi,)-458(g\\246sto)-458(up)1(s)-1(t)1(rz)-1(on)1(e)-458(k)56(ac)-1(ze)-1(\\253)1(c)-1(ami,)-457(kieb)28(y)-457(do)-458(cic)27(h)1(e)-1(go)]TJ -27.879 -13.549 Td[(wt\\363ru)-384(pie\\261)-1(n)1(iom)-385(i)-385(o)-28(cz)-1(om)-385(lec)-1(\\241cym)-385(pr)1(z)-1(ed)-385(si\\246)-385(w)-386(d)1(ale)-385(jasnego)-385(nieba,)-385(w)-385(r)1(z)-1(ek)28(\\246)-386(r)1(oz)-1(-)]TJ 0 -13.549 Td[(migotan\\241)-316(z)-1(\\252ot)28(ymi)-316(\\252usk)55(ami,)-316(w)-317(te)-317(ws)-1(i)1(e)-317(w)-1(i)1(dn)1(ie)-1(j)1(\\241c)-1(e)-317(n)1(a)-317(wy\\273niac)28(h)-317(suc)28(h)28(yc)28(h,)-316(a)-317(ledwie)]TJ 0 -13.55 Td[(znacz)-1(n)1(e)-334(w)-334(mo)-28(d)1(ra)28(w)-1(y)1(m)-334(p)-27(o)27(wietrzu)-333(ws)-1(t\\246gami)-333(s)-1(ad)1(\\363)27(w)-333(bia\\252o)-333(kwitn)1(\\241c)-1(yc)28(h.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-333(s)-1(ze)-1(d)1(\\252)-334(z)-333(as)-1(yst\\241)-333(tu\\273)-334(za)-333(krzy\\273)-1(em)-334(i)-333(\\261piew)28(a\\252)-334(wraz)-334(z)-333(dru)1(gimi.)]TJ 0 -13.549 Td[({)-333(C)-1(o\\261)-333(du)1(\\273)-1(o)-333(k)56(ac)-1(ze)-1(k)-333(si\\246)-334(p)-27(o)-28(dr)1(yw)27(a!)-333({)-333(sz)-1(epn)1(\\241\\252)-334(ze)-1(zuj)1(\\241c)-334(na)-333(pr)1(a)27(w)28(o.)]TJ 0 -13.549 Td[({)-241(Pr)1(z)-1(elotn)1(e)-1(,)-241(kr)1(z)-1(y)1(\\273)-1(\\363)28(wki)-241({)-241(o)-28(d)1(par\\252)-241(m\\252ynar)1(z)-242(p)1(atrz\\241c)-242(za)-241(rz)-1(ek)28(\\246)-241(w)-242(n)1(iz)-1(i)1(n)28(y)83(,)-240(z)-1(aros\\252e)]TJ -27.879 -13.549 Td[(\\273\\363\\252)-1(t)1(\\241,)-344(z)-1(es)-1(z\\252oro)-28(cz)-1(n)1(\\241)-344(trzc)-1(in)1(\\241)-344(i)-344(olc)27(h)1(am)-1(i)1(,)-344(s)-1(k)56(\\241d)-344(r)1(az)-345(w)-344(raz)-344(p)-28(o)-28(d)1(ryw)28(a\\252y)-344(s)-1(i)1(\\246)-345(ci\\246)-1(\\273k)28(o)-344(c)-1(a\\252e)]TJ 0 -13.55 Td[(stada.)]TJ 27.879 -13.549 Td[({)-333(I)-334(b)-27(o)-28(ciak)28(\\363)28(w)-334(co\\261)-334(wi\\246)-1(cej)-333(ni\\271li)-333(z)-1(esz)-1(\\252ego)-334(r)1(oku.)]TJ\nET\nendstream\nendobj\n1563 0 obj <<\n/Type /Page\n/Contents 1564 0 R\n/Resources 1562 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1562 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1567 0 obj <<\n/Length 9361      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(489)]TJ -330.353 -35.866 Td[({)-333(Ma)-56(j)1(\\241)-333(c)-1(o)-333(\\273)-1(r)1(e)-1(\\242)-334(n)1(a)-334(moic)28(h)-333(\\252\\241k)55(ac)28(h,)-333(to)-333(s)-1(i)1(\\246)-334(z)-334(ca\\252e)-1(go)-333(\\261)-1(wiata)-333(zw)-1(\\252\\363)-28(cz\\241.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(a)-334(sw)28(o)-56(jego)-333(s)-1(tr)1(ac)-1(i\\252em)-1(,)-333(w)-333(s)-1(ame)-334(\\261wi\\246)-1(ta)-333(si\\246)-334(gdzie\\261)-334(zap)-28(o)-28(d)1(z)-1(i)1(a\\252.)]TJ 0 -13.549 Td[({)-333(Do)-334(stad)1(a)-334(si\\246)-334(p)-27(e)-1(wn)1(ie)-334(pr)1(z)-1(y)1(\\252)-1(\\241czy\\252,)-333(na)-333(przelo)-28(c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(to)-333(jes)-1(t)-333(w)-333(t)27(y)1(c)27(h)-333(u)28(w)28(a\\252o)28(w)27(an)28(y)1(c)27(h)-333(redl)1(inac)28(h?)]TJ 0 -13.549 Td[({)-289(K)1(o\\253skiego)-289(z\\246)-1(b)1(a)-289(ws)-1(ad)1(z)-1(i)1(\\252)-1(em)-289(ca\\252\\241)-289(morg\\246...)-288(tro)-28(c)28(h\\246)-289(tu)-288(mokro,)-288(ale)-289(\\273e)-289(m)-1(\\363)28(wi\\241,)]TJ -27.879 -13.55 Td[(co)-334(n)1(a)-334(suc)28(h)28(y)-333(rok)-333(id)1(z)-1(ie,)-333(to)-333(m)-1(o\\273e)-334(si\\246)-334(ud)1(a.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(le)-334(ni)1(e)-334(tak,)-333(jak)-333(m\\363)-56(j)-332(z)-1(es)-1(z\\252oro)-28(cz)-1(n)29(y:)-333(s)-1(c)28(h)28(yla\\242)-334(si\\246)-334(n)1(ie)-334(b)28(y)1(\\252o)-334(p)-27(o)-333(c)-1(o.)]TJ 0 -13.549 Td[({)-333(Kur)1(opatk)28(om)-334(si\\246)-334(u)1(da\\252:)-333(sp)-28(or)1(o)-334(si\\246)-334(i)1(c)27(h)-333(tam)-334(wywied\\252o)-333({)-333(\\273)-1(art)1(o)27(w)28(a\\252)-334(cic)28(ho.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)1(an)-333(jad)1(\\252)-334(k)1(urop)1(at)28(w)-1(y)84(,)-333(a)-333(m)-1(o)-55(je)-334(siwki)-333(z\\246)-1(bami)-333(dzw)28(oni\\252y)-333(o)-333(\\273)-1(\\252\\363b)1(...)]TJ 0 -13.549 Td[({)-333(Obr)1(o)-28(dzi)-333(s)-1(i)1(\\246)-1(,)-333(to)-333(ju)1(\\273)-334(ksi\\246)-1(d)1(z)-1(u)-333(d)1(obr)1(o)-28(dziejo)28(wi)-333(z)-334(fu)1(rk)28(\\246)-334(j)1(ak)55(\\241)-333(u\\273ycz)-1(\\246.)]TJ 0 -13.549 Td[({)-454(B\\363g)-454(z)-1(ap\\252a\\242,)-454(b)-27(o)-454(i)-454(k)28(oniczyna)-454(ze)-1(sz)-1(\\252ar)1(o)-28(c)-1(zna)-454(n)1(ie)-1(t)1(\\246)-1(ga;)-454(j)1(e)-1(\\261li)-454(susz)-1(e)-454(pr)1(z)-1(yj)1(d\\241,)]TJ -27.879 -13.55 Td[(pr)1(z)-1(epad)1(nie!)-333({)-334(w)28(es)-1(tc)28(hn\\241\\252)-333(\\273a\\252)-1(o\\261ni)1(e)-334(i)-333(z)-1(acz)-1(\\241\\252)-333(z)-1(n)1(o)28(w)-1(u)-332(\\261)-1(p)1(ie)-1(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Do)-28(c)28(ho)-28(d)1(z)-1(i)1(li)-307(w)-1(\\252a\\261ni)1(e)-308(pierwsz)-1(ego)-308(k)28(op)-27(ca,)-307(kt\\363ren)-307(b)28(y\\252)-307(tak)-307(p)-27(okryt)28(y)-307(kr)1(z)-1(ami)-307(roz-)]TJ -27.879 -13.549 Td[(kwit\\252yc)28(h)-360(tarn)1(in)1(,)-360(\\273)-1(e)-361(wyn)1(os)-1(i)1(\\252)-361(si\\246)-360(kiej)-360(bia\\252a)-360(k)28(op)1(a,)-360(nastrosz)-1(on)1(a)-361(k)1(w)-1(i)1(atam)-1(i)-360(r)1(oz)-1(b)1(rz\\246)-1(-)]TJ 0 -13.549 Td[(cz)-1(on)28(y)1(m)-1(i)-333(p)1(s)-1(zc)-1(ze)-1(ln)29(ym)-334(r)1(o)-56(jem.)]TJ 27.879 -13.549 Td[(Oto)-27(c)-1(zyli)-346(go)-345(kr\\246gie)-1(m)-346(\\261wiate)-1(\\252)-346(r)1(oz)-1(c)28(h)28(wian)28(yc)28(h,)-346(k)1(rz)-1(y)1(\\273)-347(si\\246)-346(wz)-1(n)1(i\\363s)-1(\\252)-346(zatkn)1(i\\246)-1(t)28(y)-345(w)]TJ -27.879 -13.55 Td[(kr)1(z)-1(ac)27(h)1(,)-270(c)28(hor\\246gwie)-271(si\\246)-270(rozwin\\246\\252y)-270(ni)1(s)-1(k)28(o)-270(p)-27(o)-28(c)27(h)29(ylon)1(e)-271(i)-269(lud)1(z)-1(ie)-270(pr)1(z)-1(y)1(kl\\246kli)-270(k)28(o\\252em)-1(,)-269(jakb)29(y)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-386(o\\252tarze)-1(m,)-387(n)1(a)-387(k)1(t\\363rym,)-386(w)-387(kwiatac)27(h)-386(i)-386(psz)-1(cze)-1(ln)29(ym)-387(br)1(z)-1(\\246ku)-386(z)-1(wies)-1(n)29(y)83(,)-386(ob)-55(ja)28(wi\\252)]TJ 0 -13.549 Td[(si\\246)-334(ma)-56(j)1(e)-1(stat)-334(\\261wi\\246t)27(y)1(!...)]TJ 27.879 -13.549 Td[(W)84(raz)-407(te\\273)-407(ksi\\241dz)-406(o)-28(dczyt)28(yw)27(a\\252)-406(mo)-28(dl)1(it)28(w)27(\\246)-407(o)-27(d)-406(grad)1(u)-406(i)-406(krop)1(i\\252)-407(w)28(o)-28(d)1(\\241)-407(\\261wi\\246)-1(con\\241)]TJ -27.879 -13.549 Td[(ws)-1(zystkie)-351(cz)-1(t)1(e)-1(ry)-350(stron)29(y)-351(\\261wiata;)-350(i)-350(dr)1(z)-1(ew)-1(i)1(n)28(y)83(,)-350(i)-350(zie)-1(mi\\246,)-350(i)-350(w)27(o)-28(d)1(y)83(,)-350(i)-350(te)-351(g\\252o)28(wy)-350(c)27(h)28(yl)1(\\241c)-1(e)]TJ 0 -13.55 Td[(si\\246)-268(p)-27(ok)28(orni)1(e)-1(,)-267(ca\\252y)-267(te)-1(n)-267(\\261wiat)-267(rozdygotan)29(y)-267(c)-1(ic)28(h\\241)-267(rad)1(o\\261)-1(ci\\241)-267(ros)-1(t)1(u)-267(i)-267(m)-1(o)-27(c)-1(y)84(,)-267(i)-267(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(a,)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o,)-333(c)-1(o)-333(dol\\246)-333(s)-1(w)28(o)-56(j)1(\\241)-334(p)-27(o)-28(cz)-1(y)1(na\\252o)-333(i)-334(co)-333(m)-1(ar)1(t)27(w)28(e)-334(j)1(e)-1(st.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-333(z)-1(asz)-1(u)1(m)-1(i)1(a\\252)-334(n)1(o)27(w)28(\\241)-333(pie\\261)-1(n)1(i\\241)-333(i)-333(p)-28(o)-28(d)1(nosi\\252)-333(s)-1(i\\246)-333(ra\\271)-1(n)1(iej)-333(i)-333(w)27(es)-1(eln)1(ie)-1(j)1(.)]TJ 0 -13.549 Td[(Rusz)-1(y)1(li)-446(dal)1(e)-1(j)1(,)-446(bier\\241c)-447(si\\246)-446(o)-28(d)-446(razu)-446(na)-446(lew)28(o,)-446(w)-447(p)-27(opr)1(z)-1(ek)-446(\\252\\241k,)-446(p)-28(o)-27(d)-446(\\252ago)-28(dn)1(e)]TJ -27.879 -13.549 Td[(wz)-1(g\\363r)1(z)-1(a.)-355(Dziec)-1(i)-355(j)1(e)-1(n)1(o)-355(d\\252u)1(\\273)-1(ej)-355(si\\246)-356(zatrzyma\\252y)83(,)-355(\\273e)-356(to)-355(G)1(ulb)1(as)-1(iak)1(i)-355(z)-356(Wi)1(tkiem)-1(,)-354(w)27(edle)]TJ 0 -13.55 Td[(starego)-387(ob)28(y)1(c)-1(za)-56(j)1(u,)-386(spra)28(wia\\252y)-386(na)-386(k)28(op)-27(c)-1(u)-386(p)-27(oni)1(e)-1(kt)1(\\363)-1(r)1(ym)-387(c)28(h\\252opak)28(om)-386(t\\246)-1(g\\241)-386(\\252a\\271ni\\246,)-386(\\273)-1(e)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(i\\363s\\252)-334(si\\246)-334(taki)-333(wrzas)-1(k)1(,)-333(ja\\273e)-334(ksi\\241dz)-334(i)1(m)-334(z)-334(d)1(ala)-334(wygr)1(a\\273)-1(a\\252.)]TJ 27.879 -13.549 Td[(A)-429(z)-1(a)-429(\\252\\241k)56(ami)-429(w)27(es)-1(zli)-429(na)-429(sz)-1(eroki)-429(wygon)-428(grani)1(c)-1(zn)28(y)83(,)-429(w)-429(g\\241sz)-1(cz)-430(sm)27(uk)1(\\252yc)27(h)-429(j)1(a-)]TJ -27.879 -13.549 Td[(\\252o)28(w)27(c\\363)28(w)-1(,)-344(rosn\\241cyc)27(h)-344(z)-345(kr)1(a)-56(j)1(a,)-345(j)1(akb)28(y)-344(na)-344(s)-1(tr)1(a\\273)-1(y)-344(p)-28(\\363l)-344(ro)-27(dn)28(yc)28(h.)-344(Wygon)-344(b)28(y\\252)-344(s)-1(ze)-1(r)1(oki,)-344(a)]TJ 0 -13.549 Td[(kr)1(\\246)-1(ci\\252)-410(t\\246)-1(d)1(y)-410(i)-410(o)28(w)28(\\246)-1(d)1(y)-410(kiej)-410(r)1(z)-1(ek)55(a)-410(zielon\\241)-410(f)1(al\\241)-410(tra)28(w)-410(g\\246)-1(sto)-410(n)1(abit)28(yc)28(h)-410(kwiatu)1(s)-1(zk)56(am)-1(i)1(,)]TJ 0 -13.55 Td[(\\273e)-392(n)1(a)28(w)27(et)-391(w)-391(stary)1(c)27(h)-390(k)28(ole)-1(i)1(nac)27(h)-390(mro)28(wi\\252y)-391(si\\246)-391(\\273\\363\\252)-1(t)1(e)-392(mlec)-1(ze)-391(i)-391(b)1(ia\\252e)-391(s)-1(t)1(okrotki)1(.)-391(Ka)-55(j\\261)]TJ 0 -13.549 Td[(rozw)27(al)1(a\\252y)-250(s)-1(i\\246)-250(wie)-1(l)1(kie)-251(k)56(amionk)1(i,)-250(obr)1(os)-1(\\252e)-250(w)-251(ciernie,)-250(\\273e)-251(tr)1(z)-1(eba)-250(je)-250(b)28(y\\252o)-250(p)-27(ote)-1(m)-250(ob)-28(c)28(ho-)]TJ 0 -13.549 Td[(dzi\\242,)-255(a)-255(gd)1(z)-1(i)1(e)-256(zn\\363)28(w)-255(sto)-56(j)1(a\\252y)-255(sam)-1(otn)1(ie)-255(dzikie)-255(gru)1(s)-1(ze,)-255(ca\\252)-1(e)-255(w)28(e)-255(kwiatac)27(h)-254(i)-255(p)1(s)-1(zc)-1(zeln)28(ym)]TJ 0 -13.549 Td[(br)1(z)-1(\\246kiem)-371(r)1(oz)-1(\\261pi)1(e)-1(w)28(ane)-370(i)-370(tak)-370(bar)1(dzo)-370(c)-1(u)1(dn)1(e)-371(i)-370(\\261wi\\246)-1(te,)-370(j)1(ak)28(o)-370(te)-371(Hostie)-371(u)1(nosz)-1(\\241ce)-370(s)-1(i\\246)]TJ 0 -13.549 Td[(nad)-335(p)-28(olami,)-336(j)1(a\\273)-1(e)-336(s)-1(i\\246)-336(kl\\246k)55(a\\242)-336(c)27(h)1(c)-1(ia\\252o)-336(pr)1(z)-1(ed)-336(ni)1(m)-1(i)-336(a)-336(ca\\252o)27(w)28(a\\242)-337(ziem)-1(i\\246,)-336(c)-1(o)-336(j)1(e)-337(na)-336(\\261w)-1(i)1(at)]TJ 0 -13.549 Td[(wyda\\252a.)]TJ 27.879 -13.55 Td[(A)-326(gdzie)-327(z)-1(n)1(o)28(w)-1(u)-326(b)1(rz\\363z)-1(k)56(a)-326(s)-1(i\\246)-326(p)-28(o)-28(c)28(h)28(yla\\252a,)-326(p)1(rz)-1(y)28(o)-27(dziana)-326(w)-327(b)1(ie)-1(l)1(u\\261kie)-327(gz\\252o)-327(i)-326(ca\\252)-1(a)]TJ -27.879 -13.549 Td[(o)28(wioni\\246ta)-351(z)-1(i)1(e)-1(lon)29(ym)-1(i)1(,)-351(roz)-1(p)1(lec)-1(ion)29(ymi)-352(w)28(ark)28(o)-27(c)-1(zam)-1(i)1(,)-352(a)-351(tak)-351(cz)-1(ysta)-351(i)-351(dr)1(\\273)-1(\\241ca)-352(w)-351(s)-1(ob)1(ie,)]TJ 0 -13.549 Td[(kiej)-333(ta)-333(dziew)27(cz)-1(yn)1(a)-333(do)-333(pierwsz)-1(ej)-333(k)28(om)27(u)1(nii)-333(sta)-56(j)1(\\241c)-1(a.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(nosili)-329(s)-1(i)1(\\246)-330(z)-330(w)27(oln)1(a)-330(n)1(a)-330(wyni)1(os)-1(\\252o\\261\\242)-1(,)-329(ob)-28(c)28(ho)-28(d)1(z)-1(\\241c)-330(li)1(p)-28(ec)27(ki)1(e)-330(p)-28(ola)-329(o)-28(d)-329(p)-27(\\363\\252)-1(n)1(o)-28(cy)83(,)]TJ -27.879 -13.549 Td[(wz)-1(d)1(\\252u\\273)-334(m\\252ynar)1(z)-1(o)28(wyc)27(h)-332(r\\363l,)-333(sz)-1(u)1(m)-1(i\\241cyc)28(h)-333(\\273)-1(ytem.)]TJ 27.879 -13.55 Td[(Ksi\\241dz)-480(sz)-1(ed\\252)-480(za)-480(krzy\\273)-1(em,)-480(za)-480(nim)-480(c)-1(i)1(s)-1(n)1(\\246)-1(\\252y)-480(si\\246)-480(kup)1(k)56(am)-1(i)-479(dz)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)-479(i)-480(c)-1(o)]TJ -27.879 -13.549 Td[(m\\252o)-28(dsz)-1(e)-383(k)28(obiet)28(y)83(,)-383(za\\261)-384(w)-383(k)28(o\\253cu,)-383(w)-384(p)-27(o)-55(jedyn)1(k)28(\\246)-384(alb)-27(o)-383(i)-383(p)-28(o)-383(par)1(z)-1(e)-383(w)-384(rz\\241dk)1(u,)-383(wlek\\252y)]TJ\nET\nendstream\nendobj\n1566 0 obj <<\n/Type /Page\n/Contents 1567 0 R\n/Resources 1565 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1565 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1570 0 obj <<\n/Length 9455      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(490)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(si\\246)-284(s)-1(t)1(aruc)28(h)28(y)-283(z)-284(Agat\\241,)-284(k)1(usz)-1(t)28(yk)56(a)-56(j)1(\\241c)-1(\\241)-283(dal)1(e)-1(k)28(o)-283(z)-1(a)-283(ws)-1(zys)-1(tk)1(imi.)-283(Dz)-1(ieci)-284(j)1(e)-1(n)1(o)-284(p)1(l\\241ta\\252y)-283(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(b)-27(ok)56(ac)27(h,)-333(c)28(hron)1(i\\241c)-334(si\\246)-334(ksi\\246\\273)-1(yc)28(h)-333(o)-28(cz)-1(u)1(,)-333(b)28(yc)27(h)-333(\\261mie)-1(l)1(e)-1(j)-333(b)1(arasz)-1(k)28(o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(A\\273)-238(wyn)1(ie\\261)-1(li)-237(si\\246)-237(na)-237(r\\363)28(wni\\246,)-237(k)56(a)-56(j)-237(i)-237(cic)28(ho\\261\\242)-238(s)-1(t)1(an\\246\\252)-1(a)-237(wi\\246ksz)-1(a,)-237(wiater)-237(usta\\252)-237(z)-1(u)1(p)-28(e\\252-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(,)-320(c)27(h)1(or\\246gw)-1(i)1(e)-321(z)-1(wis\\252y)83(,)-320(a)-320(nar\\363)-27(d)-320(s)-1(i\\246)-320(roz)-1(wl\\363k)1(\\252)-321(na)-320(sta)-56(j)1(e)-1(,)-320(\\273)-1(e)-320(jak)28(o)-320(te)-321(kwiat)28(y)-320(w)-1(i)1(dn)1(ia\\252y)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)28(y)-333(w\\261)-1(r)1(\\363)-28(d)-333(zie)-1(l)1(e)-1(ni)1(,)-333(z)-1(a\\261)-334(p)1(\\252om)27(yk)1(i)-334(\\261wiec)-334(dr)1(\\273)-1(a\\252y)-333(s)-1(k)1(rami)-334(n)1(ib)28(y)-333(z\\252ota)28(w)27(e)-334(mot)28(yle.)]TJ 27.879 -13.55 Td[(Nieb)-28(o)-361(wisia\\252o)-361(wysokie)-361(i)-361(c)-1(zyste)-1(,)-360(t)27(y)1(lk)28(o)-361(niegdzie)-361(le\\273)-1(a\\252a)-361(jak)56(a\\261)-361(bia\\252a)-361(c)28(hm)27(u)1(ra,)]TJ -27.879 -13.549 Td[(kieb)28(y)-331(o)28(w)27(ca)-331(na)-331(mo)-28(dr)1(a)27(wyc)28(h,)-331(ni)1(e)-1(ob)-55(j)1(\\246)-1(t)28(yc)28(h)-331(p)-28(ol)1(ac)27(h,)-331(p)1(rze)-1(z)-332(k)1(t\\363re)-332(n)1(ie)-1(s\\252o)-331(s)-1(i\\246)-331(ogromne,)]TJ 0 -13.549 Td[(rozgorza\\252e)-334(s)-1(\\252o\\253)1(c)-1(e,)-333(z)-1(alew)28(a)-56(j\\241c)-333(\\261)-1(wiat)-333(cie)-1(p)1(\\252e)-1(m)-333(i)-334(b)1(lask)55(ami.)]TJ 27.879 -13.549 Td[(Jeno)-339(pie\\261)-1(\\253)-339(si\\246)-340(wz)-1(mog\\252a:)-339(h)28(uk)1(n\\246li)-339(z)-340(c)-1(a\\252ej)-339(m)-1(o)-28(cy)-339(i)-340(tak)-339(r)1(oz)-1(g\\252o\\261nie,)-340(j)1(a\\273)-1(e)-340(p)1(taki)]TJ -27.879 -13.549 Td[(uciek)56(a\\252)-1(y)-347(z)-348(d)1(rze)-1(w)-347(p)-28(ob)1(liskic)27(h)1(;)-347(c)-1(zas)-1(em)-348(ku)1(rop)1(atk)55(a)-347(wystrasz)-1(on)1(a)-348(f)1(urk)1(n\\246\\252)-1(a)-347(sp)-28(o)-28(d)-347(n)1(\\363g)]TJ 0 -13.549 Td[(alb)-27(o)-333(i)-334(za)-56(j)1(\\241c)-1(zek)-334(wyr)1(yw)27(a\\252)-333(si\\246)-334(gdzies)-1(i)1(k)-334(sp)-27(o)-28(d)-333(k)28(ot)28(yry)-333(i)-333(gn)1(a\\252)-334(n)1(a)-334(o\\261lep.)]TJ 27.879 -13.55 Td[({)-333(Oz)-1(i)1(m)-1(i)1(n)28(y)-333(dob)1(rz)-1(e)-333(id\\241)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(ks)-1(i)1(\\241dz.)]TJ 0 -13.549 Td[({)-333(B)-1(a!)-333(w)28(c)-1(zora)-55(j)-333(ju)1(\\273)-334(pi)1(\\246)-1(tk)28(\\246)-334(w)-333(\\273)-1(y)1(c)-1(ie)-333(z)-1(n)1(alaz)-1(\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(t\\363\\273)-334(to)-333(tak)-333(s)-1(p)1(apra\\252?...)-333({)-333(p)-27(o\\252o)27(w)28(a)-333(gno)-56(j)1(u)-333(na)-333(skib)1(a)-1(c)28(h.)]TJ 0 -13.549 Td[({)-333(Zie)-1(mni)1(aki)-333(kt\\363rej\\261)-333(k)28(om)-1(or)1(nicy)83(,)-333(j)1(akb)28(y)-333(w)-334(k)1(ro)28(w)27(\\246)-333(przy)28(oryw)28(a\\252a.)]TJ 0 -13.549 Td[({)-333(Przec)-1(ie\\273)-334(b)1(rona)-333(ws)-1(zystk)28(o)-334(wywlec)-1(ze.)-334(P)29(as)-1(ku)1(dziarze)-334(j)1(uc)27(h)29(y!)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(to)-333(par)1(ob)-28(ek)-333(dob)1(ro)-28(d)1(z)-1(iej\\363)28(w)-333(przy)28(ory)1(w)27(a\\252)-333({)-334(wtr)1(\\241c)-1(i\\252)-333(c)-1(i)1(c)27(ho)-333(k)28(o)28(w)27(al)1(.)]TJ 0 -13.549 Td[(Dob)1(ro)-28(d)1(z)-1(iej)-298(si\\246)-298(rz)-1(u)1(c)-1(i)1(\\252,)-298(ale)-299(zamilk\\252)-298(i)-298(p)1(rzy\\261)-1(p)1(iew)-1(u)1(j\\241c)-298(nar)1(o)-28(do)28(wi,)-298(c)28(ho)-28(d)1(z)-1(i\\252)-298(o)-28(czy-)]TJ -27.879 -13.549 Td[(ma)-239(p)-28(o)-239(t)28(ym)-239(ni)1(e)-1(ob)-55(j\\246t)28(ym)-239(rozle)-1(wie)-239(p)-27(\\363l)-239(ro)-28(d)1(n)28(yc)27(h)1(,)-239(co)-239(p)-28(ogar)1(bion)1(e)-240(i)-239(miejsc)-1(ami)-239(\\271dzie)-1(b)1(k)28(o)]TJ 0 -13.549 Td[(wz)-1(d)1(\\246)-1(te,)-313(jak)28(o)-313(te)-314(p)1(iersi)-314(matki)-313(k)56(armi\\241ce)-1(j)1(,)-313(z)-1(d)1(a\\252y)-313(s)-1(i\\246)-313(dyc)28(ha\\242)-314(w)-313(s)-1(\\252o)-28(d)1(kim)-313(w)-1(zbi)1(e)-1(r)1(aniu)1(,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-366(co)-367(i)1(no)-366(pr)1(z)-1(yp)1(adn)1(ie)-367(d)1(o)-366(rozw)27(art)1(e)-1(go)-366(\\252ona,)-366(p)-27(o\\273)-1(y)1(w)-1(i)1(\\242)-367(si\\246)-367(mog\\252o)-366(i)-366(przytu)1(li\\242,)-366(i)-366(o)]TJ 0 -13.55 Td[(dol)1(i)-333(s)-1(rogi)1(e)-1(j)-333(zap)-27(om)-1(n)1(ie)-1(\\242.)]TJ 27.879 -13.549 Td[(Hej!)-334(s)-1(ze)-1(r)1(ok)28(o)-335(n)1(ies)-1(\\252y)-334(s)-1(i)1(\\246)-335(o)-28(cz)-1(y)84(,)-335(i)-334(d)1(ale)-1(k)28(o,)-334(i)-334(p)1(rz)-1(estrono,)-334(\\273e)-335(c)-1(a\\252a)-334(pr)1(o)-28(c)-1(esja)-334(z)-1(d)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-381(j)1(e)-1(n)1(o)-380(c)-1(i)1(\\241)-28(gie)-1(m)-380(mr\\363)28(w)27(ek)-380(w\\261r\\363)-28(d)-379(z)-1(b)-27(\\363\\273)-1(,)-380(a)-380(g\\252osy)-380(lu)1(dzkie)-380(t)28(yle)-380(w)27(a\\273y\\252y)-380(nad)-379(p)-27(olam)-1(i)1(,)]TJ 0 -13.549 Td[(co)-334(te)-333(s)-1(k)28(o)28(wronk)28(o)28(w)28(e)-334(\\261)-1(wiergotan)1(ia.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-356(s)-1(i\\246)-357(p)1(rze)-1(tacza\\252)-1(o)-356(ku)-356(zac)27(h)1(o)-28(do)28(wi,)-356(\\273)-1(e)-356(ju)1(\\273)-357(p)-28(oz\\252o)-28(cia\\252y)-356(z)-1(b)-27(o\\273)-1(a,)-356(okwiec)-1(on)1(e)]TJ -27.879 -13.55 Td[(dr)1(z)-1(ew)27(a)-318(r)1(z)-1(u)1(c)-1(a\\252y)-318(cienie,)-318(za\\261)-319(l)1(ip)-27(e)-1(c)27(k)1(i)-318(s)-1(t)1(a)27(w)-318(wyb)1(\\252)-1(y)1(s)-1(ki)1(w)27(a\\252)-318(rozgorza\\252\\241)-318(s)-1(zyb)1(\\241)-318(z)-319(ob)1(rze)-1(\\273y)]TJ 0 -13.549 Td[(sad\\363)28(w,)-417(s)-1(p)1(ienion)1(\\241)-417(bi)1(e)-1(l\\241)-417(k)1(w)-1(i)1(at\\363)28(w)-418(p)1(rzytrz\\241\\261ni\\246t)28(yc)27(h)1(.)-417(Wie\\261)-417(le)-1(\\273a\\252a)-417(ni)1(\\273)-1(ej,)-416(jakb)28(y)-416(w)27(e)]TJ 0 -13.549 Td[(dn)1(ie)-284(mic)27(h)29(y)-284(wielgac)27(h)1(nej,)-283(a)-283(tak)-284(p)1(rzys)-1(\\252on)1(iona)-283(dr)1(z)-1(ew)27(ami,)-283(\\273)-1(e)-283(ino)-283(k)55(a)-55(j\\261)-284(n)1(iek)55(a)-55(j)-283(do)-55(jrza\\252)]TJ 0 -13.549 Td[(sz)-1(ar\\241)-386(s)-1(to)-27(do\\252\\246)-1(;)-386(jeden)-387(k)28(o\\261ci\\363\\252,)-387(co)-387(s)-1(i)1(\\246)-388(wyn)1(os)-1(i)1(\\252)-387(bia\\252y)1(m)-1(i)-386(m)27(ur)1(am)-1(i)-386(p)-27(onad)-386(w)-1(szys)-1(tk)28(o)-386(i)]TJ 0 -13.549 Td[(z\\252)-1(ot)28(y)1(m)-334(krzy\\273e)-1(m)-333(na)-333(niebi)1(e)-334(\\261)-1(wiec)-1(i)1(\\252.)]TJ 27.879 -13.55 Td[(Za\\261)-268(p)-28(o)-268(p)1(ra)28(w)28(e)-1(j)-267(r\\246c)-1(e)-268(id\\241cyc)28(h)-268(r)1(oz)-1(lew)27(a\\252y)-267(s)-1(i\\246)-268(r\\363)28(wni)1(e)-1(,)-267(nib)28(y)-267(te)-268(niepr)1(z)-1(ejr)1(z)-1(an)1(e)-269(w)28(o-)]TJ -27.879 -13.549 Td[(dy)-251(s)-1(zarozie)-1(l)1(one)-1(,)-251(z)-253(kt\\363r)1(yc)27(h)-251(w)-1(y)1(nosi\\252y)-252(s)-1(i\\246)-252(ws)-1(ie)-252(g\\246)-1(st)28(ymi)-252(k)28(\\246)-1(p)1(ami)-252(drze)-1(w)-252(okwiec)-1(on)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(kr)1(z)-1(y\\273e)-282(przyd)1(ro\\273)-1(n)1(e)-282(i)-282(dr)1(z)-1(ew)27(a)-282(samotnie)-282(rosn\\241ce.)-282(Ocz)-1(y)-281(s)-1(i\\246)-282(tam)-282(ni)1(e)-1(s\\252y)-282(jak)-281(ptak)1(i,)-282(ale)]TJ 0 -13.549 Td[(ni)1(e)-332(s)-1(i\\246gn\\246\\252y)-332(w)-331(k)28(o\\252uj\\241cym)-332(l)1(o)-28(c)-1(i)1(e)-332(inn)28(y)1(c)27(h)-331(gran)1(ic)-1(,)-331(kr)1(om)-1(ie)-332(t)28(y)1(c)27(h)-331(b)-28(or)1(\\363)27(w)-331(c)-1(ze)-1(r)1(niej\\241cyc)27(h)]TJ 0 -13.549 Td[(dok)28(o\\252a.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o\\261)-333(z)-1(a)-333(c)-1(i)1(c)27(ho.)1(..)-333(ab)28(y)-333(des)-1(zc)-1(z)-333(w)-334(n)1(o)-28(c)-1(y)-333(n)1(ie)-334(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252...)-333({)-333(z)-1(acz)-1(\\241\\252)-333(ksi\\241dz.)]TJ 0 -13.55 Td[({)-333(Nie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(:)-333(wytar\\252o)-333(s)-1(i)1(\\246)-334(na)-333(dob)1(re)-334(i)-333(c)28(h\\252\\363)-28(d)-333(za)28(w)-1(i)1(e)-1(w)28(a.)]TJ 0 -13.549 Td[({)-333(Rano)-333(la\\252o,)-333(a)-334(teraz)-333(w)27(o)-28(d)1(y)-333(ani)-333(z)-1(n)1(aku)1(.)]TJ 0 -13.549 Td[({)-333(Zw)-1(i)1(e)-1(sna)-333(pr)1(z)-1(ec)-1(iek,)-333(to)-333(w)-334(mig)-333(pr)1(z)-1(es)-1(yc)28(ha)-333({)-333(w)-1(tr)1(\\241c)-1(i)1(\\252)-334(sw)27(o)-55(je)-334(k)28(o)28(w)28(al.)]TJ 0 -13.549 Td[(Dosi\\246)-1(gl)1(i)-350(dr)1(ugiego)-350(k)28(op)-27(c)-1(a,)-349(w)27(\\246g\\252o)27(w)28(ego)-1(.)-349(Wielki)-349(b)28(y\\252)-350(kiej)-349(usypisk)28(o;)-350(p)-27(o)28(wie)-1(d)1(ali,)]TJ -27.879 -13.549 Td[(\\273e)-293(p)-27(o)-28(d)-291(nim)-292(l)1(e)-1(\\273\\241)-292(p)-27(obite)-292(n)1(a)-292(w)27(o)-55(jn)1(ie)-1(.)-291(Krzy\\273)-292(s)-1(t)1(a\\252)-292(na)-292(n)1(im)-292(niski)-291(a)-292(s)-1(tr)1(uc)28(hla\\252y)-291(c)-1(a\\252kiem,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(s)-1(tr)1(o)-56(jon)29(y)-419(w)-419(ze)-1(sz)-1(\\252or)1(o)-28(c)-1(zne)-419(wian)28(u)1(s)-1(zki)-418(a)-419(obr)1(az)-1(ik)1(i,)-419(u)1(br)1(ane)-419(\\014r)1(anec)-1(zk)56(am)-1(i,)-418(z)-1(a\\261)-419(z)]TJ 0 -13.549 Td[(b)-27(oku)-305(tul)1(i\\252a)-306(si\\246)-306(wyp)1(r\\363)-28(c)27(h)1(ni)1(a\\252)-1(a,)-305(r)1(os)-1(o)-28(c)28(hata)-305(wie)-1(r)1(z)-1(b)1(a,)-306(ok)1(ryw)28(a)-56(j)1(\\241c)-306(jego)-306(r)1(an)28(y)-305(m)-1(\\252o)-28(d)1(ymi)]TJ\nET\nendstream\nendobj\n1569 0 obj <<\n/Type /Page\n/Contents 1570 0 R\n/Resources 1568 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1568 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1573 0 obj <<\n/Length 8997      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(491)]TJ -358.232 -35.866 Td[(p)-27(\\246)-1(d)1(am)-1(i)1(.)-454(S)1(trasz)-1(n)1(ie)-454(tu)1(r)-453(b)28(y\\252o)-453(jak)28(o\\261)-454(i)-453(pu)1(s)-1(to,)-453(\\273e)-454(na)28(w)28(e)-1(t)-453(wr\\363b)1(le)-454(ni)1(e)-454(gnie\\271dzi\\252y)-454(si\\246)]TJ 0 -13.549 Td[(w)-386(d)1(z)-1(iu)1(pl)1(ac)27(h,)-385(a)-386(c)28(ho)-28(cia\\273)-386(n)1(aok)28(\\363\\252)-386(le\\273)-1(a\\252y)-385(ro)-27(dza)-56(jn)1(e)-386(z)-1(i)1(e)-1(mie,)-386(k)28(op)1(iec)-386(b)28(y\\252)-386(p)1(ra)28(wie)-386(nagi)1(,)]TJ 0 -13.549 Td[(o)-28(d)1(arte)-288(b)-27(oki)-287(\\273\\363\\252c)-1(i)1(\\252)-1(y)-287(si\\246)-287(piac)28(hami,)-287(\\273)-1(e)-287(jeno)-287(rozc)27(h)1(o)-28(dn)1(iki)1(,)-287(kiej)-287(te)-288(li)1(s)-1(za)-56(j)1(e)-1(,)-287(cz)-1(epi)1(a\\252)-1(y)-286(s)-1(i\\246)]TJ 0 -13.549 Td[(ni)1(e)-1(gd)1(z)-1(ie)-333(i)-334(stercz)-1(a\\252y)-333(s)-1(u)1(c)27(h)1(e)-334(bad)1(yle)-334(d)1(z)-1(i)1(e)-1(w)28(ann)28(y)-333(i)-333(sz)-1(alej\\363)28(w)-333(\\252o\\253skic)27(h)1(.)]TJ 27.879 -13.549 Td[(Od)-242(m)-1(or)1(u)-243(o)-28(d)1(pra)28(wili)-243(n)1(ab)-27(o\\273)-1(e\\253st)27(w)28(o)-243(i)-243(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(sz)-1(a)-55(j\\241c)-243(krok)28(\\363)28(w,)-243(wz)-1(i)1(\\246)-1(li)-243(si\\246)-243(jes)-1(zc)-1(ze)]TJ -27.879 -13.55 Td[(bar)1(z)-1(ej)-386(na)-386(lew)27(o,)-386(na)-386(s)-1(k)1(ro\\261)-387(do)-386(top)-27(olo)28(w)27(ej)-386(dr)1(ogi,)-386(m)-1(ierz\\241c)-387(p)-27(o)-28(d)-386(s)-1(am)-386(las)-1(,)-386(j)1(ak)-387(wio)-27(d\\252a)]TJ 0 -13.549 Td[(w)28(\\241s)-1(k)56(a)-333(i)-334(wyj)1(e)-1(\\273d\\273ona)-333(mo)-28(c)-1(n)1(o)-333(dr\\363\\273k)56(a.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-347(zw)27(ar)1(t\\241)-346(kup)1(\\241)-346(ruszyli,)-346(t)28(y)1(lk)28(o)-346(Agata)-346(os)-1(ta\\252a)-346(p)1(rzy)-346(k)28(op)-27(c)-1(u)1(,)-346(kryj)1(omo)-346(o)-28(dar)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(sz)-1(mat\\246)-348(z)-348(kr)1(z)-1(y)1(\\273)-1(a)-347(i)-347(p)-28(o)-28(d)1(\\241\\273)-1(a)-55(j\\241c)-348(z)-347(dala)-347(z)-1(a)-347(p)1(ro)-28(ce)-1(sj\\241)-347(z)-1(agr)1(z)-1(eb)28(yw)28(a\\252a)-348(j)1(\\241)-348(strz\\246)-1(p)1(k)56(am)-1(i)-347(p)-27(o)]TJ 0 -13.549 Td[(mie)-1(d)1(z)-1(ac)28(h)-333(la)-333(jaki)1(e)-1(go\\261)-334(zab)-27(ob)-28(on)28(u)1(.)]TJ 27.879 -13.549 Td[(Or)1(ganista)-418(zain)28(t)1(ono)28(w)27(a\\252)-417(litan)1(i\\246,)-418(al)1(e)-418(c)-1(i\\241)-27(gn\\246li)-417(j\\241)-417(os)-1(p)1(ale,)-418(\\273e)-418(\\261piew)27(a\\252)-417(in)1(o)-418(kto)]TJ -27.879 -13.55 Td[(ni)1(e)-1(kt)1(o,)-426(w)-427(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246,)-426(b)-27(o)-427(k)28(ob)1(iet)28(y)-426(ra)-56(j)1(c)-1(o)28(w)28(a\\252y)-426(z)-427(cic)27(h)1(a)-1(,)-425(rz)-1(u)1(c)-1(a)-55(j\\241c)-426(jeno)-426(w)-426(p)-28(otr)1(z)-1(eb-)]TJ 0 -13.549 Td[(n)28(ym)-393(miejsc)-1(u)-392(wrzas)-1(kl)1(iwie)-1(:)-392(\\377)-56(M)1(\\363)-28(dl)-392(s)-1(i)1(\\246)-394(za.)-393(n)1(am)-1(i)1(\")-393({)-393(za\\261)-393(dzie)-1(cisk)55(a)-392(w)-1(y)1(par\\252y)-392(s)-1(i)1(\\246)-394(n)1(a)]TJ 0 -13.549 Td[(wypr)1(z)-1(\\363)-27(dki)-391(i)-392(bar)1(as)-1(zk)28(o)28(w)27(a\\252y)-392(sw)27(a)28(w)28(olni)1(e)-1(,)-391(ja\\273)-1(e)-392(P)1(ie)-1(t)1(re)-1(k)-391(B)-1(or)1(yn\\363)28(w,)-392(ob)1(z)-1(iera)-55(j\\241c)-392(s)-1(i)1(\\246)-393(n)1(a)]TJ 0 -13.549 Td[(pr)1(ob)-28(oszc)-1(za,)-334(mru)1(c)-1(za\\252)-333(z)-1(e\\271)-1(lon)29(y:)]TJ 27.879 -13.549 Td[({)-333(Ob)28(wies)-1(ie,)-333(ju)1(c)27(h)28(y!)-333(zb)-27(e)-1(re\\271niki)1(!...)-333(b)-27(o)-333(jak)-333(pa\\261)-334(spu)1(s)-1(zcz)-1(\\246!)]TJ 0 -13.55 Td[(Ksi\\241dz,)-360(z)-1(n)28(u)1(\\273)-1(on)29(y)-361(j)1(u\\273)-361(sie)-1(l)1(nie,)-360(p)-28(ot)-360(o)-28(c)-1(i)1(e)-1(r)1(a\\252)-361(z)-361(\\252ysic)-1(y)84(,)-360(a)-361(rozgl\\241da)-55(j\\241c)-361(si\\246)-361(p)-27(o)-361(s\\241-)]TJ -27.879 -13.549 Td[(sie)-1(d)1(nic)28(h)-333(rolac)28(h)-333(p)-28(ogad)1(yw)28(a\\252)-334(z)-334(w)28(\\363)-56(j)1(tem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ho,)-333(ho!)-333(t)28(ym)-334(j)1(u\\273)-334(gr)1(o)-28(c)27(h)-333(p)-27(o)28(ws)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(ra)28(wda!.)1(.)-334(w)28(c)-1(zes)-1(n)28(y)-333(b)28(y)1(\\242)-334(m)27(u)1(s)-1(i)1(,)-334(r)1(ola)-333(dop)1(ra)28(w)-1(i)1(ona)-333(i)-333(idzie)-334(ki)1(e)-1(j)-333(b)-27(\\363r.)]TJ 0 -13.549 Td[({)-333(Ja)-334(sia\\252em)-334(jesz)-1(cz)-1(e)-334(n)1(a)-334(P)29(almo)27(w)28(\\241,)-333(a)-334(d)1(opi)1(e)-1(ro)-333(k\\252y)-333(pu)1(s)-1(zcz)-1(a)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(u)-333(d)1(o)-334(d)1(obro)-27(dzie)-1(j)1(a)-334(n)1(a)-333(t)27(y)1(m)-334(do\\252k)1(u)-333(z)-1(imn)1(ic)-1(a,)-333(a)-333(tu)-333(gru)1(n)28(t)-333(c)-1(i)1(e)-1(p)1(le)-1(j)1(s)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(\\246)-1(cz)-1(mion)1(a)-334(j)1(u\\273)-334(i)1(m)-334(p)-27(o)27(wsc)27(ho)-27(dzi\\252y)83(,)-333(a)-333(r\\363)28(wne,)-333(jakb)28(y)-333(siew)-1(n)1(iki)1(e)-1(m)-334(p)-27(osiane.)]TJ 0 -13.549 Td[({)-333(Mo)-28(d)1(licz)-1(aki)-333(d)1(obre)-333(gos)-1(p)-27(o)-28(d)1(arz)-1(e,)-333(na)-333(dw)28(orsk)56(\\241)-334(mo)-28(d)1(\\246)-334(w)-334(p)-27(olu)-333(r)1(obi\\241.)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(k)28(o)-334(n)1(a)-334(n)1(as)-1(zyc)27(h)-332(p)-28(olac)28(h)-333(ani)-333(znaku)-332(jes)-1(zc)-1(ze)-334(o)28(w)-1(s\\363)28(w)-334(i)-333(j)1(\\246)-1(cz)-1(mion)1(\\363)27(w.)]TJ 0 -13.549 Td[({)-333(Sp)-27(\\363\\271)-1(n)1(ione)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o,)-333(d)1(e)-1(sz)-1(cz)-1(e)-333(te)-1(\\273)-333(przyb)1(i\\252y)83(,)-333(\\273e)-334(niepr)1(\\246)-1(d)1(k)28(o)-334(si\\246)-334(r)1(usz)-1(\\241.)]TJ 0 -13.55 Td[({)-333(I)-334(spap)1(rane,)-333(\\273)-1(e)-333(niec)27(h)-333(B\\363g)-333(bron)1(i!)-333({)-333(w)27(es)-1(tc)28(hn)1(\\241\\252)-334(ksi\\241dz)-333(\\273)-1(a\\252o\\261nie.)]TJ 0 -13.549 Td[({)-333(Daro)28(w)27(an)1(e)-1(m)28(u)-333(k)28(oni)1(o)27(wi)-333(w)-334(z\\246b)28(y)-333(nie)-333(z)-1(agl\\241d)1(a)-56(j)1(\\241)-334({)-333(za)-1(\\261mia\\252)-334(si\\246)-334(k)28(o)28(w)28(al.)]TJ 0 -13.549 Td[({)-252(T)83(e,)-252(wisusy)83(,)-251(usz)-1(y)-251(p)-28(o)-28(ob)1(ryw)28(am,)-252(jak)-251(nie)-252(p)1(rze)-1(staniec)-1(i)1(e)-1(!)-251({)-252(krzykn)1(\\241\\252)-252(pr)1(ob)-28(osz)-1(cz)]TJ -27.879 -13.549 Td[(na)-428(c)28(h\\252op)1(ak)28(\\363)27(w)-428(\\261m)-1(iga)-55(j\\241cyc)27(h)-427(k)56(am)-1(i)1(e)-1(n)1(iam)-1(i)-427(z)-1(a)-428(stadki)1(e)-1(m)-428(ku)1(ropat)28(w,)-428(sz)-1(or)1(uj)1(\\241c)-1(yc)28(h)-428(w)]TJ 0 -13.549 Td[(p)-27(oprzek)-334(zagon\\363)28(w.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252y)-359(z)-360(n)1(ag\\252a)-360(r)1(oz)-1(mo)28(w)-1(y)84(,)-359(c)27(h)1(\\252opaki)-359(p)1(rzyw)27(ar)1(\\252)-1(y)-359(p)-27(o)-359(br)1(uzdac)27(h)1(,)-359(organ)1(is)-1(ta)]TJ -27.879 -13.549 Td[(zn\\363)28(w)-268(j\\241\\252)-267(b)-28(ec)-1(ze\\242)-1(,)-267(k)28(o)28(w)27(al)-267(z)-1(a)28(wt\\363ro)28(w)28(a\\252)-1(,)-267(ja\\273e)-268(w)-268(u)1(s)-1(zac)27(h)-267(z)-1(a)28(wiercia\\252o,)-268(a)-267(c)-1(i)1(e)-1(n)1(iu\\261kie)-268(g\\252osy)]TJ 0 -13.549 Td[(k)28(obi)1(e)-1(t)-303(p)-27(o)-28(dn)1(ie)-1(s\\252y)-303(s)-1(i\\246)-304(j)1(\\246)-1(k)1(liwym)-304(c)28(h\\363rem,)-304(\\273e)-304(li)1(tania)-303(rozw)-1(l)1(e)-1(k\\252a)-303(s)-1(i)1(\\246)-304(nad)-303(p)-27(olami,)-303(nib)29(y)]TJ 0 -13.549 Td[(ten)-344(ci\\241)-28(g)-344(p)1(tak)28(\\363)27(w)-344(zm\\246)-1(cz)-1(on)28(y)1(c)27(h)-344(d)1(\\252ugim)-344(lotem)-344(i)-344(ju)1(\\273)-344(z)-345(w)28(olna)-344(i)-343(c)-1(or)1(az)-345(n)1(i\\273)-1(ej)-344(op)1(ada)-55(j\\241-)]TJ 0 -13.549 Td[(cyc)27(h)1(.)]TJ 27.879 -13.549 Td[(P)28(ar)1(li)-485(s)-1(i)1(\\246)-486(tak)-485(w\\261)-1(r)1(\\363)-28(d)-485(p)-27(\\363l)-485(z)-1(i)1(e)-1(lon)29(yc)27(h)-485(d)1(\\252ugim)-485(i)-485(roz\\261)-1(p)1(iew)27(an)28(y)1(m)-486(zagonem)-1(,)-485(\\273e)]TJ -27.879 -13.55 Td[(lu)1(dzie)-1(,)-329(pr)1(ac)-1(u)1(j\\241cy)-330(na)-329(m)-1(o)-27(dlic)28(kic)28(h)-330(p)-27(olac)27(h)1(,)-330(a)-329(na)28(w)27(et)-330(i)-329(na)-330(d)1(als)-1(zyc)28(h,)-330(p)-27(o)-28(d)1(nosili)-329(s)-1(i\\246)-330(o)-28(d)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)-237(c)-1(zap)28(y)-237(z)-1(d)1(e)-1(j)1(m)27(u)1(j\\241c,)-238(t)1(o)-238(p)1(rzykl\\246k)55(a)-55(j\\241c)-237(na)-237(z)-1(agon)1(ac)27(h,)-237(gd)1(z)-1(ie)-238(za\\261)-238(b)28(y)1(d\\252o)-237(z)-1(ary)1(c)-1(za\\252o,)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(z\\241c)-374(ci\\246)-1(\\273kie,)-373(rogate)-374(\\252b)28(y)84(,)-373(a)-374(k)56(a)-55(j\\261)-374(zno)28(wu)-373(s)-1(p)1(\\252os)-1(zon)28(y)-373(\\271)-1(r)1(e)-1(b)1(ak)-374(o)-27(db)1(ie)-1(g\\252)-373(m)-1(aci,)-373(w)]TJ 0 -13.549 Td[(ca\\252)-1(y)-333(\\261wiat)-333(gna)-56(j)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[(Ze)-235(sta)-56(j)1(e)-235(m)-1(i)1(e)-1(li)-234(j)1(e)-1(sz)-1(cz)-1(e)-234(do)-234(trze)-1(cie)-1(go)-234(k)28(op)-27(c)-1(a)-234(i)-234(\\014gur)1(y)-234(przy)-234(top)-27(olo)28(w)27(ej,)-234(gdy)-234(ktosik)]TJ -27.879 -13.55 Td[(wrzas)-1(n)1(\\241\\252)-334(z)-334(ca\\252yc)27(h)-333(si\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(\\252op)28(y)-333(jak)1(ie)-1(\\261)-334(z)-333(las)-1(u)-332(w)-1(y)1(c)27(ho)-27(dz\\241!)]TJ\nET\nendstream\nendobj\n1572 0 obj <<\n/Type /Page\n/Contents 1573 0 R\n/Resources 1571 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1571 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1576 0 obj <<\n/Length 9705      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(492)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(A)-334(mo\\273e)-334(to)-333(nasi?)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(as)-1(i)1(!)-334(n)1(as)-1(i)1(!)-333({)-334(b)1(uc)27(h)1(n\\246\\252o)-334(z)-333(kup)28(y)-333(i)-333(ki)1(lk)56(ana\\261c)-1(ior)1(o)-334(r)1(z)-1(u)1(c)-1(i\\252o)-333(si\\246)-334(nap)1(rz\\363)-28(d.)]TJ 0 -13.549 Td[({)-333(Sta\\242!)-333(Nab)-28(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-333(pierws)-1(ze)-334({)-333(nak)56(aza\\252)-334(ostro)-333(ksi\\241dz.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-496(\\273e)-497(ostali,)-496(p)1(rze)-1(d)1(e)-1(p)1(tuj)1(\\241c)-497(z)-496(ni)1(e)-1(cie)-1(r)1(pli)1(w)27(o\\261c)-1(i.)-495(Zbili)-495(s)-1(i\\246)-496(jeno)-496(b)1(arze)-1(j)-495(w)]TJ -27.879 -13.549 Td[(ku)1(p)-28(\\246,)-403(s)-1(t)1(o)27(w)28(arzysz)-1(a)-56(j)1(\\241c)-404(j)1(ak)-403(p)-28(op)1(ad\\252o,)-403(b)-27(o)-404(k)56(a\\273dego)-403(dziw)-404(n)1(ie)-404(p)-27(o)-28(d)1(ryw)28(a\\252o)-404(z)-403(m)-1(i)1(e)-1(j)1(s)-1(ca,)]TJ 0 -13.55 Td[(ale)-334(k)1(s)-1(i\\241d)1(z)-334(n)1(ie)-334(pu)1(\\261)-1(ci\\252,)-333(pr)1(z)-1(y\\261pi)1(e)-1(sz)-1(a\\252)-333(jedn)1(ak)-333(kroku)1(.)]TJ 27.879 -13.549 Td[(Wiat)1(e)-1(r)-243(s)-1(k)56(\\241d)1(c)-1(i\\261)-243(z)-1(a)28(wia\\252,)-244(\\273e)-244(\\261w)-1(i)1(e)-1(ce)-244(p)-28(ogas\\252y)83(,)-243(c)27(h)1(or\\241)-28(gwie)-244(zatrze)-1(p)1(a\\252y)-243(i)-244(\\273yta,)-243(krze)]TJ -27.879 -13.549 Td[(i)-278(u)1(kwie)-1(cone)-278(drzew)27(a)-278(j\\246\\252y)-278(si\\246)-279(k)28(oleba\\242,)-278(jak)1(b)28(y)-278(k\\252an)1(ia)-56(j)1(\\241c)-279(i)-278(d)1(o)-279(n)1(\\363g)-278(s)-1(i)1(\\246)-279(c)27(h)28(y)1(l\\241c)-279(p)1(ro)-28(ce)-1(sji)1(.)]TJ 0 -13.549 Td[(Ale)-457(nar)1(\\363)-28(d,)-456(c)27(h)1(o)-28(\\242)-457(\\261)-1(p)1(ie)-1(w)28(a\\252)-457(coraz)-457(g\\252o\\261)-1(n)1(ie)-1(j)1(,)-457(w)-457(d)1(yrd)1(y)-457(j)1(u\\273)-457(s)-1(u)1(n\\241\\252)-457(i)-456(o)-28(cz)-1(y)-456(w)-1(p)1(iera\\252)-457(w)]TJ 0 -13.549 Td[(b)-27(\\363r)-404(n)1(ie)-1(d)1(aleki,)-404(mi\\246dzy)-404(d)1(rze)-1(w)28(a)-404(pr)1(z)-1(y)1(dro\\273ne,)-404(k)56(a)-56(j)-403(j)1(u\\273)-404(wyra\\271nie)-404(bi)1(e)-1(la\\252y)-403(s)-1(i)1(\\246)-405(k)56(ap)-27(ot)28(y)]TJ 0 -13.549 Td[(c)27(h)1(\\252opskie.)]TJ 27.879 -13.55 Td[({)-283(Nie)-284(p)-27(c)27(h)1(a)-56(j)1(c)-1(ie\\273)-1(e)-283(s)-1(i)1(\\246)-1(,)-283(g\\252up)1(ie:)-283(c)27(h\\252op)28(y)-283(w)28(am)-284(n)1(ie)-284(u)1(c)-1(i)1(e)-1(kn)1(\\241!)-283({)-284(zgromi\\252)-283(ksi\\241dz,)-283(b)-28(o)]TJ -27.879 -13.549 Td[(m)27(u)-332(ju\\273)-333(nast\\246)-1(p)-27(o)28(w)27(a\\252y)-333(na)-333(p)1(i\\246)-1(t)28(y)-333(t\\252o)-28(cz)-1(\\241c)-333(s)-1(i\\246)-333(jedn)1(a)-334(p)1(rz)-1(ez)-334(d)1(rug\\241.)]TJ 27.879 -13.549 Td[(Hank)56(a,)-224(c)-1(o)-225(b)28(y)1(\\252a)-225(s)-1(z\\252a)-225(w)-225(rz)-1(\\246dzie)-225(z)-225(na)-56(j)1(pi)1(e)-1(rwsz)-1(ymi)-225(gosp)-27(o)-28(dy)1(niami,)-225(a\\273)-225(kr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-302(k)56(ap)-28(ot)28(y)84(.)-302(Wiedzia\\252a)-302(przec)-1(iek,)-302(j)1(ak)28(o)-303(tam)-302(An)28(tk)56(a)-302(ni)1(e)-303(z)-1(ob)1(ac)-1(zy)84(,)-302(a)-303(mimo)-302(to)]TJ 0 -13.549 Td[(zatrz\\246)-1(s\\252a)-348(s)-1(i\\246)-348(r)1(ado\\261c)-1(i\\241)-348(i)-347(pij)1(ana)-347(z)-1(go\\252a)-348(n)1(adzie)-1(j)1(a)-348(rozs)-1(ad)1(z)-1(a\\252a)-348(j)1(e)-1(j)-347(du)1(s)-1(z\\246,)-348(\\273)-1(e)-348(ze)-1(sz)-1(\\252a)-348(n)1(a)]TJ 0 -13.55 Td[(b)-27(ok,)-333(w)-334(b)1(ruzd\\246,)-333(i)-333(o)-28(c)-1(zy)-333(wypatr)1(yw)28(a\\252)-1(a.)1(..)]TJ 27.879 -13.549 Td[(Za\\261)-283(J)1(agusia,)-282(id)1(\\241c)-1(a)-282(wp)-27(o)-28(dl)1(e)-283(matki,)-281(p)-28(or)1(w)27(a\\252a)-282(si\\246)-283(z)-282(mie)-1(j)1(s)-1(ca,)-282(b)28(y)1(c)27(h)-282(l)1(e)-1(cie)-1(\\242,)-282(ogn)1(ie)]TJ -27.879 -13.549 Td[(j\\241)-276(prze)-1(j)1(\\246)-1(\\252y)-276(i)-277(taki)-276(dygot,)-276(c)-1(o)-277(z\\246)-1(b)-27(\\363)28(w)-277(nie)-277(p)-27(ore)-1(d)1(z)-1(i)1(\\252a)-277(z)-1(ewrz)-1(e\\242;)-277(a)-277(dr)1(ugie)-277(k)28(obi)1(e)-1(t)28(y)-277(te\\273)-277(nie)]TJ 0 -13.549 Td[(mniej)-312(s)-1(i\\246)-313(rw)28(a\\252y)-313(ku)-312(t)28(ym)-313(wyt\\246s)-1(k)1(nion)28(y)1(m)-1(.)-312(Je)-1(n)1(o)-313(p)-27(oniekt\\363r)1(e)-314(d)1(z)-1(ieuc)28(h)28(y)-313(i)-312(c)27(h)1(\\252opaki)-312(nie)]TJ 0 -13.549 Td[(ws)-1(tr)1(z)-1(y)1(m)-1(a\\252y)-277(d)1(\\252ugo,)-277(b)-27(o)-277(n)1(araz)-277(c)27(hl)1(as)-1(n)1(\\246)-1(\\252y)-277(z)-277(ku)1(p)28(y)83(,)-276(kiej)-277(w)28(o)-28(da)-277(z)-277(ce)-1(b)1(ra)-277(ws)-1(tr)1(z)-1(\\241\\261ni\\246tego,)]TJ 0 -13.55 Td[(i)-374(m)-1(imo)-375(w)28(o\\252a\\253)-374(p)-28(ogn)1(a\\252)-1(y)-374(na)-374(prze\\252)-1(a)-55(j)-374(do)-375(d)1(rogi,)-374(ja\\273e)-375(im)-375(\\252yst)27(y)-374(bi)1(e)-1(la\\252y)84(.)-375(P)1(ro)-28(ce)-1(sja)-374(ry-)]TJ 0 -13.549 Td[(c)27(h)1(\\252o)-339(dosi\\246)-1(g\\252a)-339(kr)1(z)-1(y)1(\\273)-1(a)-339(Boryn)1(\\363)27(w,)-339(za)-339(kt\\363r)1(ym)-340(t)1(u\\273)-340(zaraz)-339(b)28(y\\252)-339(k)28(op)1(ie)-1(c,)-339(n)1(a)-340(skr)1(a)-56(ju)-338(z)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(lip)-27(ec)27(kic)28(h)-333(i)-333(dw)28(orskiego)-334(b)-27(oru)1(.)]TJ 27.879 -13.549 Td[(Ch\\252op)28(y)-377(ju)1(\\273)-378(tam)-378(s)-1(to)-55(ja\\252y)-377(kup)1(\\241)-378(w)-378(cieniu)-377(br)1(z)-1(\\363z)-378(wielgac)27(h)1(n)28(yc)28(h,)-378(str\\363\\273uj)1(\\241c)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-265(krzy\\273u;)-265(z)-267(d)1(ala)-266(j)1(u\\273)-266(o)-28(d)1(kryw)28(ali)-265(g\\252o)27(wy)-265(i)-266(o)-28(cz)-1(om)-266(k)28(ob)1(iet)-266(p)-27(ok)55(aza\\252y)-266(si\\246)-266(lu)1(b)-28(e)-266(t)28(w)27(ar)1(z)-1(e)]TJ 0 -13.55 Td[(m\\246)-1(\\273\\363)28(w)-1(,)-356(o)-55(jc\\363)28(w)-1(,)-355(braci)-356(a)-356(syn\\363)28(w)-356(ut\\246s)-1(k)1(nion)28(y)1(c)27(h,)-355(t)27(w)28(arze)-357(p)-27(o)-28(c)28(h)28(ud)1(\\252e)-1(,)-356(wymize)-1(r)1(o)27(w)28(ane)-356(a)]TJ 0 -13.549 Td[(p)-27(e)-1(\\252n)1(e)-334(rad)1(o\\261)-1(ci,)-333(p)-28(e\\252ne)-334(u)1(\\261)-1(miec)27(h)1(\\363)27(w)-333(s)-1(zcz)-1(\\246\\261)-1(cia.)]TJ 27.879 -13.549 Td[({)-237(P)1(\\252os)-1(zki!)-236(Sik)28(or)1(y!)-237(M)1(ate)-1(u)1(s)-1(z!)-237(K)1(\\252)-1(\\241b)1(!)-237(i)-236(Gu)1(lbas!)-237(i)-236(s)-1(tar)1(y)-237(G)1(rz)-1(ela!)-236(i)-237(Fi)1(lip)1(!)-237(Mi)1(z)-1(eraki)]TJ -27.879 -13.549 Td[(k)28(o)-28(c)28(hane!)-395(B)-1(i)1(e)-1(d)1(ota!)-396(J)1(e)-1(zus)-396(M)1(aria,)-395(Matk)28(o)-395(Pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(a!)-395({)-395(rw)27(a\\252y)-395(si\\246)-396(w)28(o\\252)-1(an)1(ia)-395(i)]TJ 0 -13.549 Td[(p)-27(okrzyki)-416(a)-416(s)-1(ze)-1(p)1(t)28(y)-416(gor\\241c)-1(e,)-416(i)-416(ju)1(\\273)-417(o)-28(cz)-1(y)-416(gorza\\252y)-416(rado\\261c)-1(i)1(\\241,)-416(ju\\273)-416(s)-1(i\\246)-416(r\\246)-1(ce)-417(wyci\\241)-28(ga\\252y)84(,)]TJ 0 -13.55 Td[(ju)1(\\273)-443(t\\252u)1(m)-1(i)1(one)-443(p)1(\\252ac)-1(ze)-443(k)1(w)-1(i)1(li\\252y)-442(i)-442(kr)1(z)-1(yk)-442(n)1(abr)1(z)-1(miew)27(a\\252)-442(w)-442(gardzielac)27(h)1(,)-442(ju)1(\\273)-443(p)-27(onosi\\252o)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h,)-309(ale)-310(ksi\\241d)1(z)-310(jedn)29(ym)-310(gromkim)-309(s)-1(\\252o)28(w)28(e)-1(m)-310(p)-27(o)28(ws)-1(tr)1(z)-1(yma\\252)-309(i)-310(u)1(c)-1(i)1(s)-1(zy\\252)-309(nar\\363)-27(d,)-309(a)]TJ 0 -13.549 Td[(do)28(wi\\363)-28(d)1(\\252s)-1(zy)-256(p)-28(o)-28(d)-256(kr)1(z)-1(y)1(\\273)-1(,)-256(c)-1(zyta\\252)-256(s)-1(p)-27(ok)28(o)-56(j)1(nie)-257(mo)-28(d)1(lit)28(w)27(\\246)-257(\\377o)-27(d)-256(ognia\";)-256(jeno)-256(c)-1(zyta\\252)-257(w)28(oln)1(o,)]TJ 0 -13.549 Td[(b)-27(o)-385(niec)27(h)1(\\241c)-1(y)-385(a)-385(ci\\246)-1(gi)1(e)-1(m)-385(obziera\\252)-385(s)-1(i\\246)-385(na)-385(stron)28(y)-385(i)-384(p)-28(o)-28(czc)-1(iwymi)-385(o)-28(cz)-1(y)1(m)-1(a)-385(c)28(ho)-28(d)1(z)-1(i\\252)-385(p)-27(o)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(ac)28(h)-333(wyn\\246dznia\\252yc)28(h.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-415(te)-1(\\273)-415(pr)1(z)-1(y)1(kl\\246)-1(k)1(n\\246li)-415(w)-415(p)-28(\\363\\252k)28(ol)1(e)-416(i)-415(wraz)-415(z)-416(\\273arli)1(w)27(\\241)-415(i)-415(d)1(z)-1(i\\246k)28(cz)-1(yn)1(n\\241)-415(mo-)]TJ -27.879 -13.55 Td[(dl)1(it)28(w)27(\\241)-469(\\252z)-1(y)-469(p)1(\\252yn\\246\\252y)-469(z)-470(o)-28(cz)-1(u)1(,)-470(u)29(w)-1(i)1(e)-1(sz)-1(on)28(y)1(c)27(h)-469(n)1(a)-470(Chr)1(ystusie)-470(pr)1(z)-1(y)1(bit)28(ym)-469(do)-469(krzy\\273a.)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-351(kiej)-351(zak)28(o\\253cz)-1(y)1(\\252)-351(i)-351(w)28(o)-28(d\\241)-351(skr)1(opi\\252)-351(g\\252o)28(wy)-351(c)27(h)29(yl\\241ce)-352(si\\246)-351(do)-351(ziem)-1(i)1(,)-351(zdj\\241\\252)-351(r)1(ogat\\241)]TJ 0 -13.549 Td[(cz)-1(ap)-27(e)-1(cz)-1(k)28(\\246)-333(i)-333(w)27(es)-1(o\\252o)-333(a)-334(w)-333(c)-1(a\\252y)-333(g\\252os)-334(h)28(u)1(kn)1(\\241\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(c)28(h)28(w)28(alon)28(y!)-333(Jak)-333(si\\246)-334(mac)-1(ie,)-333(lu)1(dzie)-334(k)28(o)-28(c)28(hane!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-286(co)-286(c)27(h\\363r)1(e)-1(m)-286(o)-28(d)1(krzykn)1(\\246)-1(li)1(,)-286(c)-1(isn\\241c)-286(si\\246)-287(d)1(o)-286(niego)-286(kiej)-286(te)-286(o)28(w)27(ce)-287(d)1(o)-286(paste)-1(r)1(z)-1(a,)]TJ -27.879 -13.55 Td[(a)-275(w)-275(r)1(\\246)-1(ce)-276(ca\\252uj)1(\\241c)-1(,)-274(a)-275(za)-275(nogi)-274(ob\\252api)1(a)-56(j)1(\\241c)-1(,)-274(a)-275(on)-275(ci)-275(k)56(a\\273dego)-275(br)1(a\\252)-275(do)-274(s)-1(erca,)-275(p)-27(o)-275(g\\252o)28(w)27(ac)27(h)]TJ 0 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\252,)-292(p)-28(o)-292(zbi)1(e)-1(d)1(z)-1(on)28(y)1(c)27(h)-292(t)28(w)28(arzac)27(h)-292(g\\252ask)55(a\\252,)-292(t)1(ros)-1(k)1(liwie)-292(p)28(yta\\252)-292(j)-292(i)-292(z)-292(dob)1(rym)-292(s)-1(\\252o)28(w)28(e)-1(m)]TJ\nET\nendstream\nendobj\n1575 0 obj <<\n/Type /Page\n/Contents 1576 0 R\n/Resources 1574 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1561 0 R\n>> endobj\n1574 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1579 0 obj <<\n/Length 9761      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(493)]TJ -358.232 -35.866 Td[(o)-28(d)1(pu)1(s)-1(zc)-1(za\\252,)-334(a\\273)-333(utr)1(udzon)28(y)-333(siad\\252)-333(p)-27(o)-28(d)-333(krzy\\273e)-1(m,)-333(p)-28(ot)-333(ob)-27(c)-1(i)1(e)-1(r)1(a)-56(j\\241c)-333(i)-333(te)-334(\\252z)-1(y)-333(p)-27(o)-28(cz)-1(ciw)27(e)]TJ 27.879 -13.549 Td[(A)-333(nar\\363)-27(d)-333(s)-1(k)28(ot\\252o)28(w)28(a\\252)-334(si\\246)-334(ki)1(e)-1(j)-333(ten)-333(wrz\\241te)-1(k)-333(ki)1(pi\\241cy)83(.)]TJ 0 -13.549 Td[(Buc)27(h)1(n\\246\\252a)-312(w)-1(r)1(z)-1(a)28(w)28(a,)-312(\\261)-1(miec)27(h)28(y)84(,)-312(c)-1(mok)56(ania,)-312(p)1(\\252ac)-1(ze)-313(r)1(adosne)-313(d)1(z)-1(i)1(e)-1(ci\\253skie)-312(jazgot)28(y)83(,)]TJ -27.879 -13.549 Td[(gor\\241ce)-239(s)-1(\\252o)28(w)27(a)-238(i)-239(sz)-1(ept)28(y)84(,)-239(krzyki)1(,)-239(co)-239(jak)-238(\\261)-1(p)1(ie)-1(w)-239(si\\246)-239(wydziera\\252y)-239(z)-239(se)-1(rc)-239(u)1(s)-1(zc)-1(z\\246)-1(\\261liwion)29(yc)27(h)1(,)]TJ 0 -13.549 Td[(w)28(o\\252)-1(an)1(ia)-456(t\\246s)-1(kn)1(ic)-456(z)-457(n)1(ag\\252a)-456(z)-1(ap)-27(om)-1(n)1(ian)28(yc)28(h;)-456(k)56(a\\273da)-456(sw)27(o)-55(jego)-456(na)-456(stron)1(\\246)-457(o)-28(d)1(c)-1(i)1(\\241)-28(ga\\252a)-456(i)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(e)-1(n)-353(ki)1(e)-1(j)-353(ten)-353(c)27(ho)-55(jak)-353(k)28(oleba\\252)-354(si\\246)-354(wp)-27(o\\261)-1(r)1(\\363)-28(d)-353(krzyk)28(\\363)28(w)-354(w)-354(ku)1(pie)-354(k)28(ob)1(iet)-354(i)-353(dziec)-1(i,)-353(w)]TJ 0 -13.549 Td[(rad)1(os)-1(n)1(e)-1(j)-362(wrz)-1(a)28(wie)-363(gw)27(ar)1(u)-363(i)-363(p)1(\\252ac)-1(z\\363)28(w)-1(.)1(..)-363(Dob)1(rz)-1(e)-363(ze)-364(d)1(w)27(a)-363(p)1(ac)-1(ierze)-363(trw)27(a\\252y)-362(p)-28(o)28(witan)1(ia)]TJ 0 -13.549 Td[(i)-333(b)28(y\\252yb)29(y)-333(s)-1(i\\246)-334(p)1(rze)-1(ci\\241)-28(gn)1(\\246)-1(\\252y)-333(d)1(o)-334(n)1(o)-28(c)-1(y)84(,)-333(a\\273)-334(ksi\\241dz)-333(s)-1(i\\246)-333(s)-1(p)1(am)-1(i)1(\\246)-1(ta\\252,)-333(\\273e)-334(p)-28(or)1(a,)-333(i)-333(da\\252)-334(znak)1(.)]TJ 27.879 -13.549 Td[(Rusz)-1(y)1(li)-312(do)-313(ostatn)1(ie)-1(go)-312(k)28(op)-27(c)-1(a,)-312(drog\\241)-312(wz)-1(d)1(\\252u\\273)-313(lasu,)-312(ni)1(s)-1(ki)1(m)-1(i)-312(z)-1(ar)1(o\\261)-1(l)1(am)-1(i)-312(ja\\252o)28(w-)]TJ -27.879 -13.549 Td[(c\\363)27(w)-333(i)-333(s)-1(o\\261nian)1(e)-1(j)-333(m\\252o)-28(d)1(z)-1(i.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-500(z)-1(a\\261pi)1(e)-1(w)28(a\\252)-1(:)-500(\\377)-55(Serd)1(e)-1(cz)-1(n)1(a)-500(Matk)28(o\",)-500(a)-500(ws)-1(zys)-1(tk)1(ie)-501(j)1(ak)-500(jeden)-500(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)]TJ -27.879 -13.55 Td[(za)27(wt\\363r)1(o)27(w)28(ali)-339(w)-1(i)1(e)-1(lk)1(im)-340(g\\252os)-1(em,)-340(a\\273)-340(b)-27(\\363r)-340(za)-56(j)1(\\246)-1(cza\\252)-340(i)-340(ec)27(h)1(am)-1(i)-339(o)-28(d)1(da)28(w)27(a\\252,)-339(w)27(es)-1(ele)-340(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(e)-1(\\252ni)1(a\\252)-1(o)-456(d)1(usz)-1(\\246,)-456(tak)56(\\241)-457(mo)-28(c)-456(da)-55(j\\241c)-457(p)1(iers)-1(i)1(om)-1(,)-456(\\273e)-457(\\261piew)-457(zry)1(w)27(a\\252)-456(s)-1(i)1(\\246)-457(kiej)-456(b)1(urza)]TJ 0 -13.549 Td[(wio\\261nian)1(a)-334(i)-333(c)27(h)1(lu)1(s)-1(ta\\252)-333(nad)-333(b)-27(ory)-333(s\\252up)-27(e)-1(m)-333(roz)-1(ogn)1(ion)28(y)1(c)27(h)-333(un)1(ies)-1(ie\\253.)1(..)]TJ 27.879 -13.549 Td[(A)-282(\\273)-1(e)-282(s)-1(p)-27(oro)-282(n)1(aro)-28(d)1(u)-282(pr)1(z)-1(yb)29(y\\252o,)-282(to)-282(ju\\273)-282(z)-1(ap)-27(c)27(h)1(ali)-282(ca\\252)-1(\\241)-282(d)1(rog\\246,)-282(s)-1(zli)-282(tak\\273e)-283(i)-282(b)-27(orem)]TJ -27.879 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-263(drze)-1(w)28(ami,)-264(sz)-1(li)-263(i)-264(nad)-263(p)-28(ol)1(am)-1(i,)-263(\\273)-1(e)-264(c)-1(a\\252e)-264(P)28(o)-28(d)1(le)-1(sie)-264(z)-1(aroi)1(\\252o)-264(s)-1(i\\246)-264(lud)1(\\271)-1(mi,)-263(a)-264(h)28(uk)56(a\\252o)]TJ 0 -13.55 Td[(pi)1(e)-1(\\261ni\\241)-333(n)1(ie)-1(b)-27(os)-1(i)1(\\246)-1(\\273n\\241.)]TJ 27.879 -13.549 Td[(Jeno)-291(co)-291(r)1(yc)27(h)1(\\252o)-291(\\261)-1(p)1(iew)-291(opad)1(\\252)-291(kiej)-290(c)27(hm)28(ur)1(a,)-291(gd)1(y)-291(j)1(u\\273)-291(pi)1(e)-1(ru)1(n)-290(z)-1(e)-291(sie)-1(b)1(ie)-291(wypu)1(\\261)-1(ci,)]TJ -27.879 -13.549 Td[(\\273e)-247(t)28(yl)1(k)28(o)-246(i)-246(ze)-247(sam)-1(ego)-246(p)1(rz)-1(o)-27(dk)56(a)-246(jesz)-1(cz)-1(e)-246(n)28(u)1(t\\246)-247(wyci\\241)-28(gal)1(i,)-246(mnogim)-246(za\\261)-247(zrob)1(i\\252o)-246(si\\246)-246(piln)1(o)]TJ 0 -13.549 Td[(zgw)27(arza\\242)-261(z)-1(e)-261(sw)28(oim)-1(i)1(.)-261(Ci\\241)-27(g)-261(si\\246)-261(te)-1(\\273)-261(p)-27(orw)28(a\\252)-261(i)-260(rozpierzc)27(h)1(a\\252)-261(na)-260(s)-1(tr)1(on)28(y)84(,)-261(c)28(ha\\252up)1(am)-1(i)-260(sz)-1(li)1(,)]TJ 0 -13.549 Td[(wiela)-377(dziec)-1(i)-377(p)-27(omniejsz)-1(e)-377(na)-377(r)1(\\246)-1(ce)-378(wzi\\246)-1(\\252o,)-376(dru)1(gie)-378(a)-377(co)-377(m\\252o)-28(dsz)-1(e)-377(par)1(am)-1(i)-376(s)-1(zli,)-377(cos)-1(i)1(k)]TJ 0 -13.55 Td[(se)-469(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada)-55(j\\241c,)-468(a)-468(in)1(s)-1(ze)-468(ju)1(\\273)-468(s)-1(i\\246)-468(w)-468(g\\241sz)-1(cz)-468(w)-1(y)1(w)27(o)-28(d)1(z)-1(i)1(li,)-468(o)-27(d)-468(l)1(udzkic)28(h)-468(o)-27(c)-1(zu,)-467(z)-1(a\\261)]TJ 0 -13.549 Td[(dzieuc)28(h)28(y)-345(sp\\252on)1(ione)-345(ki)1(e)-1(j)-344(wi\\261nie)-345(p)1(rz)-1(y)1(w)-1(i)1(e)-1(r)1(a\\252)-1(y)-344(do)-344(s)-1(w)28(oic)28(h)-345(c)28(h\\252opak)28(\\363)28(w)-345(n)1(ie)-345(bacz)-1(\\241c)-345(n)1(a)]TJ 0 -13.549 Td[(ni)1(k)28(ogo.)-319(A)-319(kiej)-319(ni)1(e)-1(ki)1(e)-1(j)1(,)-319(s)-1(n)1(ad\\271)-319(la)-319(ul\\273e)-1(n)1(ia)-319(sobie)-319(w)-320(k)1(un)28(ten)28(tn)1(o\\261)-1(ciac)27(h)1(,)-319(\\261)-1(p)1(iew)27(em)-320(zn\\363)28(w)]TJ 0 -13.549 Td[(gru)1(c)27(h)1(ali)-285(rozg\\252)-1(o\\261n)28(ym,)-285(ja\\273e)-286(wron)29(y)-285(z)-286(gni)1(az)-1(d)-285(wylat)28(y)1(w)27(a\\252y)-285(na)-285(p)-27(ola,)-285(ja\\273e)-286(\\261wie)-1(ce)-286(gas\\252y)]TJ 0 -13.549 Td[(o)-28(d)-238(p)-27(\\246du)1(,)-238(a)-239(b)-27(\\363r)-238(o)-28(d)1(h)28(u)1(kiw)28(a\\252)-239(z)-238(w)27(oln)1(a)-238(i)-238(b)-28(e\\252k)28(ota\\252,)-238(kieb)28(y)-238(z)-239(t)1(e)-1(j)-238(g\\252\\246b)-27(okie)-1(j)1(,)-238(ni)1(e)-1(p)1(rze)-1(j)1(rz)-1(an)1(e)-1(j)]TJ 0 -13.55 Td[(gard)1(z)-1(i)1(e)-1(li)1(.)]TJ 27.879 -13.549 Td[(T)83(o)-425(cic)28(ho\\261\\242)-426(si\\246)-425(rozp)-27(o\\261)-1(cie)-1(r)1(a\\252a,)-425(\\273e)-425(ino)-424(tup)-27(ot)-425(n)1(\\363g)-425(s)-1(i)1(\\246)-425(roz)-1(l)1(e)-1(ga\\252)-425(i)-424(pr)1(ys)-1(k)56(a\\252y)-424(w)]TJ -27.879 -13.549 Td[(g\\241sz)-1(cz)-1(ac)28(h)-378(rozogni)1(one)-378(\\261)-1(miec)27(h)28(y)84(,)-378(\\261)-1(cisz)-1(on)1(e)-379(s\\252o)27(w)28(a)-378(lu)1(b)-378(te)-378(pacierze)-379(staru)1(c)27(h,)-377(m)-1(amro-)]TJ 0 -13.549 Td[(tan)1(e)-334(j\\246kliwymi)-333(na)28(wrotami.)]TJ 27.879 -13.549 Td[(Zac)27(h)1(\\363)-28(d)-319(j)1(u\\273)-319(nad)1(c)27(ho)-27(dzi\\252,)-319(ni)1(e)-1(b)-27(o)-319(s)-1(i\\246)-319(wyni)1(e)-1(s\\252o,)-319(jakb)29(y)-319(wz)-1(d)1(yma)-56(j\\241c)-319(w)-319(rozz)-1(\\252o)-28(co-)]TJ -27.879 -13.55 Td[(n\\241,)-310(s)-1(zklan)1(\\241)-311(b)1(ani\\246,)-311(\\273e)-311(jeno)-311(ki)1(lk)56(a)-311(c)27(h)1(m)27(ur)-310(pr)1(z)-1(es)-1(i)1(\\241k\\252yc)27(h)-310(cz)-1(erwieni\\241)-311(md)1(la\\252o)-311(w)-311(s)-1(i)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(wysok)28(o\\261)-1(ciac)27(h)1(,)-345(s\\252)-1(o\\253)1(c)-1(e)-345(ze)-1(sun)1(\\246)-1(\\252o)-345(si\\246)-345(na)-345(sam)-345(wr\\241b)-345(i)-344(nad)-344(b)-27(orami)-345(za)27(wis\\252o,.)-345(a)-344(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(pn)1(i)-458(ogromn)28(yc)27(h)1(,)-459(w)-458(z)-1(ielon)28(y)1(c)27(h)-458(p)-27(o)-28(dsz)-1(y)1(c)-1(iac)28(h)-458(roz)-1(t)1(rz)-1(\\246s)-1(a\\252y)-458(si\\246)-459(br)1(z)-1(aski)-458(z)-1(\\252ota)28(w)27(e,)-458(z)-1(a\\261)]TJ 0 -13.549 Td[(na)-386(p)-27(olanac)27(h)-386(samotne)-387(d)1(rz)-1(ew)28(a)-387(zda\\252y)-387(si\\246)-387(\\273ywym)-387(ogn)1(ie)-1(m)-387(p)1(\\252on\\241\\242,)-387(r)1(oz)-1(gor)1(z)-1(a\\252y)-386(w)27(o-)]TJ 0 -13.549 Td[(dy)84(,)-402(pr)1(z)-1(yt)1(a)-56(jon)1(e)-403(w)-402(g\\241s)-1(zc)-1(zac)27(h)1(,)-402(i)-402(c)-1(a\\252y)-402(b)-27(\\363r)-402(jakb)28(y)-402(w)-402(ogni)1(ac)27(h)-402(stan\\241\\252)-402(i)-402(w)-403(kr)1(w)27(a)28(wyc)27(h)]TJ 0 -13.549 Td[(dy)1(m)-1(ac)28(h,)-442(\\273e)-442(t)28(ylk)28(o)-442(miejsc)-1(ami,)-442(k)56(a)-55(j)-442(wyn)1(ios)-1(\\252e)-442(c)27(h)1(o)-56(j)1(ary)-442(sta\\252y)-442(zw)27(ar)1(t\\241)-442(g\\246s)-1(t)28(w)28(\\241)-442(i)-442(ki)1(e)-1(-)]TJ 0 -13.55 Td[(b)28(y)-393(c)28(h\\252op)28(y)-393(wspart)1(e)-394(o)-393(s)-1(i)1(\\246)-394(ramion)1(am)-1(i)1(,)-393(tam)-394(czarne)-393(m)-1(r)1(oki)-393(zale)-1(ga\\252y)84(,)-393(a)-393(i)-393(to)-393(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\261)-1(wietlon)1(e)-334(ni)1(e)-1(gd)1(z)-1(ie)-333(t)27(y)1(m)-334(d\\273d\\273em)-334(s)-1(\\252on)1(e)-1(cz)-1(n)29(ym)-1(.)]TJ 27.879 -13.549 Td[(B\\363r)-455(p)-28(o)-27(c)27(h)28(yl)1(a\\252)-456(si\\246)-456(n)1(ad)-455(dr)1(og\\241)-456(i)-455(n)1(a)-455(p)-28(ol)1(a)-456(zda\\252)-455(s)-1(i)1(\\246)-456(pat)1(rz)-1(e\\242,)-456(wygr)1(z)-1(ew)27(a)-55(j\\241c)-455(w)]TJ -27.879 -13.549 Td[(zac)27(ho)-27(dzie)-354(c)-1(zub)29(y)-354(wielgac)27(h)1(ne,)-354(a)-353(sto)-56(ja\\252)-353(tak)-353(c)-1(ic)28(h)28(u\\261k)28(o,)-353(i\\273)-354(ku)1(c)-1(ie)-354(d)1(z)-1(i)1(\\246)-1(cio\\252\\363)28(w)-354(trzas)-1(k)56(a-)]TJ 0 -13.549 Td[(\\252o)-440(p)1(rze)-1(n)1(ikliwie,)-439(kuku)1(\\252k)56(a)-440(gdzies)-1(ik)-439(ku)1(k)55(a\\252a)-439(z)-1(a)28(wz)-1(i)1(\\246)-1(cie)-1(,)-439(a)-440(z)-440(p)-27(\\363l)-439(do)-28(c)28(ho)-28(d)1(z)-1(i\\252y)-439(pt)1(as)-1(ie)]TJ 0 -13.55 Td[(\\261w)-1(i)1(e)-1(rgot)1(ania:)]TJ 27.879 -13.549 Td[(Droga)-445(kr)1(\\246)-1(ci\\252a)-445(s)-1(i\\246)-445(m)-1(i)1(e)-1(j)1(s)-1(cam)-1(i)-445(sam\\241)-446(kr)1(a)28(w)27(\\246dzi\\241)-445(p)-28(\\363l,)-445(\\273e)-446(c)28(h\\252op)28(y)-445(p)1(rz)-1(esta)27(w)28(ali)]TJ\nET\nendstream\nendobj\n1578 0 obj <<\n/Type /Page\n/Contents 1579 0 R\n/Resources 1577 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1577 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1583 0 obj <<\n/Length 10669     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(494)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(op)-27(o)27(wiad)1(a\\242)-249(i)-247(c)-1(i)1(s)-1(n\\241\\242)-248(si\\246)-249(n)1(ad)-248(b)1(ru)1(z)-1(d)1(\\241)-248(przyd)1(ro\\273)-1(n)1(\\241,)-248(sz)-1(li)-247(p)-28(o)-27(c)27(h)28(yl)1(e)-1(n)1(i,)-248(ob)-27(e)-1(j)1(m)27(u)1(j\\241c)-248(o)-28(c)-1(zyma)]TJ 0 -13.549 Td[(te)-224(n)1(iwy)-224(zielone,)-224(k)56(a)-55(j)-223(g\\246)-1(sto)-224(k)1(w)-1(it)1(n\\241ce)-224(drze)-1(w)28(a)-223(gorz)-1(a\\252y)-223(w)-224(zac)27(h)1(o)-28(dzie)-1(,)-223(te)-224(d)1(\\252ugie)-224(zagon)28(y)84(,)]TJ 0 -13.549 Td[(co)-342(wle)-1(k)1(\\252)-1(y)-341(s)-1(i)1(\\246)-343(k)1(u)-342(n)1(im)-342(p)-28(ok)28(or)1(nie,)-342(te)-342(ki)1(e)-1(j)-341(w)27(o)-28(d)1(y)-342(\\271dziebk)28(o)-342(r)1(oz)-1(k)28(oleban)1(e)-343(p)-27(ola)-341(oz)-1(imin)1(,)]TJ 0 -13.549 Td[(c)27(h)29(yl\\241ce)-468(si\\246)-468(j)1(akb)28(y)-467(p)-27(o)-28(d)-467(n)1(ogi)-467(gosp)-28(o)-28(d)1(arzom)-468(z)-467(c)27(h)1(rz)-1(\\246ste)-1(m)-467(rad)1(os)-1(n)28(y)1(m)-1(.)-467(\\233ar)1(li)-467(c)-1(i)-466(te)-1(\\273)]TJ 0 -13.549 Td[(\\261le)-1(p)1(iami)-245(t\\246)-245(ma\\242)-245(\\273)-1(y)1(w)-1(i)1(c)-1(ielk)28(\\246,)-245(\\273e)-245(niejeden)-244(s)-1(i)1(\\246)-245(\\273)-1(egna\\252,)-244(niejeden)-244(\\377)-56(P)28(o)-28(c)28(h)28(w)28(alon)28(y\")-244(m)-1(\\363)28(wi\\252)]TJ 0 -13.55 Td[(cz)-1(ap)-27(\\246)-301(z)-1(d)1(e)-1(j)1(m)27(u)1(j\\241c,)-301(a)-301(za\\261)-301(ws)-1(zys)-1(t)1(kim)-301(zar\\363)28(w)-1(n)1(o)-301(d)1(usz)-1(e)-301(kl)1(\\246)-1(k)56(a\\252y)-301(w)-301(n)1(iem)-1(ej,)-300(gor\\241ce)-1(j)-300(cz)-1(ci)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(t\\241)-333(\\261)-1(wi\\246t\\241)-333(i)-333(ut\\246s)-1(kn)1(ion\\241.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-421(co)-421(p)-27(o)-421(t)28(yc)28(h)-421(p)1(ie)-1(r)1(ws)-1(zyc)27(h)-420(pr)1(z)-1(ywit)1(aniac)28(h)-421(n)1(o)27(w)28(e)-421(gw)27(ar)1(y)-421(si\\246)-421(p)-28(o)-27(dn)1(ie)-1(s\\252y)-421(i)]TJ -27.879 -13.549 Td[(no)28(w)28(e)-288(rad)1(o\\261)-1(cie)-288(r)1(oz)-1(p)1(ie)-1(r)1(a\\252y)-287(s)-1(erca,)-287(ja\\273e)-288(c)27(h)1(c)-1(ia\\252o)-287(si\\246)-288(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-287(h)28(u)1(kn)1(\\241\\242)-288(p)-28(o)-287(les)-1(i)1(e)-288(alb)-27(o)]TJ 0 -13.549 Td[(i)-333(pr)1(z)-1(yp)1(a\\261)-1(\\242)-333(do)-333(t)28(yc)27(h)-333(zagon\\363)28(w)-334(i)-333(zap\\252ak)56(a\\242.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-360(Hank)56(a)-360(p)-27(o)-28(cz)-1(u)1(\\252a)-360(s)-1(i\\246)-360(jak)1(b)28(y)-360(za)-360(c)-1(a\\252ym)-360(\\261w)-1(i)1(ate)-1(m.)-360(A)-360(to)-28(\\242)-360(tu)1(\\273)-361(p)1(rze)-1(d)-359(ni\\241)-360(i)]TJ -27.879 -13.55 Td[(za)-406(n)1(i\\241,)-405(i)-405(wsz)-1(\\246dy)-405(c)28(h\\252op)28(y)-405(sz)-1(\\252y)-405(szumno,)-405(a)-405(ki)1(e)-1(le)-405(k)56(a\\273)-1(d)1(e)-1(go)-405(k)28(obi)1(e)-1(t)28(y)-405(i)-405(d)1(z)-1(i)1(e)-1(ci)-405(tul)1(\\241)-405(s)-1(i\\246)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(n)1(ie)-402(ni)1(b)28(y)-402(te)-402(k)1(rz)-1(e)-402(w)28(\\241t\\252e)-1(,)-401(a)-402(t)1(o)-28(\\242)-402(gw)27(ar)1(z)-1(\\241,)-401(c)-1(iesz)-1(\\241)-402(si\\246,)-402(w)-401(o)-28(c)-1(zy)-402(sobi)1(e)-402(z)-1(agl\\241d)1(a)-56(j)1(\\241,)]TJ 0 -13.549 Td[(cis)-1(n)1(\\241)-443(si\\246)-443(do)-443(sie)-1(b)1(ie,)-443(a)-443(on)1(a)-443(jedn)1(a)-443(p)1(rz)-1(em\\363)27(wi\\242)-443(n)1(ie)-443(m)-1(a)-443(d)1(o)-443(k)28(ogo!)-443(Ca\\252y)-442(nar\\363)-27(d)-443(wre)]TJ 0 -13.549 Td[(uk)1(rop)-27(e)-1(m)-298(rad)1(o\\261)-1(ci)-298(n)1(ie)-1(p)-27(o)28(ws)-1(tr)1(z)-1(ymanej,)-297(a)-298(ona,)-297(c)27(ho)-27(\\242)-299(i)1(dz)-1(i)1(e)-299(w)-298(p)-27(o\\261)-1(r)1(o)-28(dk)1(u,)-298(t)1(ak)-298(s)-1(i)1(\\246)-299(cz)-1(u)1(je)]TJ 0 -13.549 Td[(opu)1(s)-1(zcz)-1(on)1(a)-414(i)-414(n)1(ie)-1(sz)-1(cz\\246)-1(sna,)-413(jak)28(o)-414(to)-413(drze)-1(w)28(o)-414(u)1(s)-1(yc)28(ha)-55(j\\241ce)-415(w)-414(g\\241sz)-1(cz)-1(ac)28(h,)-413(na)-414(k)1(t\\363rym)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-262(wron)1(a)-262(gniazda)-262(n)1(ie)-263(u)29(w)-1(i)1(je)-262(ni)-262(\\273aden)-262(ptak)-261(nie)-262(przysi\\241dzie.)-262(Na)28(w)27(et)-262(m)-1(a\\252o)-262(kt)1(o)-263(j)1(\\241)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(w)-1(i)1(ta\\252)-292({)-293(j)1(ak\\273e)-1(!)-292(k)56(a\\273dem)27(u)-291(b)28(y\\252o)-292(pi)1(lno)-292(d)1(o)-292(s)-1(w)28(oic)27(h)1(...)-292(co)-292(im)-292(tam)-292(ona?...)-292(a)-292(t)28(yl)1(ac)27(hn)1(a)]TJ 0 -13.549 Td[(ic)28(h)-370(w)-1(r)1(\\363)-28(ci\\252o...)-370(na)28(w)28(e)-1(t)-370(Kozie\\252)-1(,)-370(\\273e)-371(zno)28(wu)-370(b)-28(\\246dzie)-371(tr)1(z)-1(eba)-370(pil)1(no)28(w)27(a\\242)-370(k)28(om)-1(or)1(y)-371(i)-370(c)28(hlewy)]TJ 0 -13.549 Td[(zam)27(yk)56(a\\242...)-320(na)28(w)28(e)-1(t)-320(i)-320(te)-321(n)1(a)-56(j)1(w)-1(i)1(\\246)-1(ksz)-1(e)-320(bu)1(n)28(to)28(w)-1(n)1(iki:)-320(G)1(rze)-1(la,)-320(w)28(\\363)-56(j)1(t\\363)28(w)-321(br)1(at,)-320(i)-320(Mateusz)-1(..)1(.)]TJ 0 -13.549 Td[(An)28(tk)56(a)-333(jeno)-333(ni)1(e)-334(pu)1(\\261)-1(cili.)1(..)-333(m)-1(o\\273e)-334(go)-333(ju)1(\\273)-334(ni)1(gdy)-333(ni)1(e)-334(z)-1(ob)1(ac)-1(zy)83(.)1(..)]TJ 27.879 -13.55 Td[(Nie,)-359(nie)-360(mog\\252a)-360(j)1(u\\273)-360(wytr)1(z)-1(yma\\242,)-360(b)-27(o)-360(t)1(e)-360(roz)-1(m)28(ys\\252y)-360(p)1(rzygniat)1(a\\252)-1(y)-359(j)1(\\241)-360(ki)1(e)-1(b)28(y)-359(k)56(a-)]TJ -27.879 -13.549 Td[(mie)-1(n)1(ie,)-417(\\273)-1(e)-417(le)-1(d)1(w)-1(i)1(e)-418(nogi)-417(zbi)1(e)-1(r)1(a\\252)-1(a,)-417(al)1(e)-418(sz)-1(\\252a)-417(z)-418(g\\252o)28(w)27(\\241)-417(p)-27(o)-28(dn)1(ies)-1(ion)1(\\241,)-417(hard)1(a)-417(na)-417(ok)28(o)-417(i)]TJ 0 -13.549 Td[(p)28(yszna)-356(jak)-355(z)-1(a)28(wdy)84(.)-356(Kiej)-356(za\\261)-1(p)1(iew)27(ali)1(,)-356(\\261)-1(p)1(iew)27(a\\252a)-356(z)-356(dru)1(gimi)-356(don)1(o\\261)-1(n)1(ie)-1(;)-355(kiej)-356(mo)-28(dl)1(it)28(w)27(\\246)]TJ 0 -13.549 Td[(ksi\\241dz)-334(zacz)-1(yn)1(a\\252,)-334(p)1(ierws)-1(za)-334(p)-27(o)28(w)-1(t)1(arz)-1(a\\252a)-333(z)-1(b)1(iela\\252ym)-1(i)-333(w)28(argami,)-333(jeno)-333(w)-334(t)28(yc)27(h)-333(d)1(\\252)-1(u)1(gic)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(erw)28(ac)27(h)1(,)-440(gd)1(y)-439(p)-28(os\\252ys)-1(za\\252a)-439(w)27(ok)28(o\\252o)-439(\\261)-1(cis)-1(zone)-439(o)-28(d)-439(\\273)-1(ar)1(\\363)27(w)-439(s)-1(zept)28(y)83(,)-439(wpi)1(e)-1(r)1(a\\252)-1(a)-439(ci\\246)-1(\\273kie)]TJ 0 -13.55 Td[(o)-28(cz)-1(y)-354(w)-354(krzy\\273)-354(b\\252ysz)-1(cz)-1(\\241cy)-354(i)-354(s)-1(z\\252a,)-354(strz)-1(eg\\241c)-355(si\\246)-354(jeno)-354(t)28(yc)27(h)-354(\\252ez)-355(zdr)1(adzie)-1(c)28(kic)27(h)1(,)-354(c)-1(o)-354(j)1(ak)]TJ 0 -13.549 Td[(z\\252)-1(o)-27(dzie)-1(j)1(e)-359(w)-1(y)1(m)27(yk)56(a\\252y)-359(si\\246)-359(ni)1(e)-1(ki)1(e)-1(j)-358(s)-1(p)-27(o)-28(d)-358(rozpalon)29(yc)27(h)-358(p)-28(o)28(wiek.)-359(Ni)1(e)-360(p)-27(o)28(w)27(a\\273y\\252a)-359(si\\246)-359(na-)]TJ 0 -13.549 Td[(w)28(e)-1(t)-326(p)28(yta\\242)-327(o)-326(An)28(tk)56(a)-327({)-326(jes)-1(zc)-1(ze)-327(b)28(yc)28(h)-326(s)-1(i)1(\\246)-327(m)-1(og\\252a)-326(w)-1(y)1(da\\242)-327(z)-327(m\\246)-1(ki)-326(p)1(rze)-1(d)-326(lu)1(d\\271m)-1(i)1(!...)-326(Nie,)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-311(t)27(y)1(le)-312(z)-1(n)1(ie)-1(s\\252a,)-312(to)-312(i)-311(wi\\246)-1(ce)-1(j)-311(p)1(rz)-1(emo\\273)-1(e,)-312(p)1(rz)-1(ecie)-1(r)1(pi..)1(.)-312(u)1(d\\271w)-1(i)1(g)-1(n)1(ie...)-311(Nak)55(azyw)28(a\\252)-1(a)-311(s)-1(o-)]TJ 0 -13.549 Td[(bi)1(e)-387(czuj\\241c)-386(zaraze)-1(m,)-386(j)1(ak)-386(w)-386(ni)1(e)-1(j)-385(\\252z)-1(y)-385(piek)56(\\241c)-1(e)-386(wz)-1(b)1(ie)-1(r)1(a)-56(j)1(\\241,)-386(jak)-385(\\273)-1(al)-385(z)-1(a)-385(g)-1(ar)1(dziel)-386(du)1(s)-1(i)1(,)]TJ 0 -13.55 Td[(mrokiem)-334(p)1(rze)-1(s\\252ania)-55(j\\241)-333(s)-1(i)1(\\246)-334(o)-28(cz)-1(y)-333(i)-333(jak)-333(ta)-333(m\\246)-1(k)56(a)-333(ro\\261)-1(n)1(ie)-334(z)-333(m)-1(in)29(ut)28(y)-333(na)-333(min)28(u)1(t\\246)-1(.)]TJ 27.879 -13.549 Td[(Nie)-326(s)-1(ama\\242)-326(jedna)-326(t)1(ak)-326(biad)1(oli\\252a,)-326(n)1(ie,)-326(b)-27(o)-28(\\242)-327(i)-325(Jagusia)-326(c)-1(zu\\252a)-326(si\\246)-326(nie)-326(lepiej:)-326(sz\\252)-1(a)]TJ -27.879 -13.549 Td[(ona)-434(z)-434(os)-1(ob)1(na,)-434(p)1(rz)-1(em)27(y)1(k)55(a)-55(j\\241c)-434(s)-1(i\\246)-434(l\\246kliwie)-434(kiej)-434(ta)-434(s)-1(ar)1(na)-434(s)-1(p)1(\\252os)-1(zona.)-434(I)-434(j)1(\\241)-435(p)-27(oni)1(e)-1(s\\252y)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(cie,)-464(\\273)-1(e)-464(p)-28(ob)1(ieg\\252a)-464(napr)1(z)-1(ec)-1(i)1(w)-465(i)-464(p)1(ra)28(wie)-465(p)1(ierws)-1(za)-464(c)27(h)1(\\252)-1(op)-27(\\363)28(w)-464(dopad)1(\\252a,)-464(a)-464(ni)1(kto)]TJ 0 -13.549 Td[(do)-473(niej)-474(n)1(ie)-474(wys)-1(k)28(o)-28(czy\\252,)-474(n)1(ikto)-474(n)1(ie)-474(przytu)1(li\\252)-474(i)-474(n)1(ie)-474(c)-1(a\\252o)28(w)28(a\\252)-1(.)-473(Je)-1(szc)-1(ze)-475(z)-474(d)1(ala)-474(do)-55(j-)]TJ 0 -13.549 Td[(rza\\252a)-444(Mateusz)-1(o)28(w)28(\\241)-445(g\\252o)28(w)28(\\246)-445(n)1(ad)-444(insze)-445(wyni)1(e)-1(sion\\241,)-443(w)-1(i)1(\\246)-1(c)-444(ku)-444(n)1(ie)-1(m)28(u)-444(rzuci\\252y)-444(si\\246)-445(j)1(e)-1(j)]TJ 0 -13.55 Td[(o)-28(cz)-1(y)-412(rozgorza\\252e)-1(,)-412(ku)-412(n)1(iem)27(u)-412(p)-27(orw)28(a\\252y)-413(j)1(\\241)-413(n)1(agle)-413(d)1(a)27(wn)1(o)-413(j)1(u\\273)-413(zap)-28(omn)1(iane)-413(t\\246sknot)28(y)84(,)]TJ 0 -13.549 Td[(\\273e)-322(p)1(rze)-1(p)29(yc)27(h)1(a\\252)-1(a)-320(s)-1(i)1(\\246)-322(p)1(rze)-1(z)-321(ci\\273b)-28(\\246)-321(z)-321(wrzas)-1(ki)1(e)-1(m)-321(r)1(adosn)28(ym.)-321(Ale)-321(on)-320(j)1(akb)28(y)-320(jej)-321(n)1(ie)-321(do)-55(j-)]TJ 0 -13.549 Td[(rza\\252...)-334(Nim)-335(go)-334(d)1(os)-1(i\\246g\\252a,)-334(ju\\273)-334(m)-1(atk)56(a)-334(w)-1(i)1(s)-1(ia\\252a)-334(m)27(u)-334(n)1(a)-335(szyi,)-334(Nas)-1(tu)1(s)-1(i)1(a)-335(wp)-27(\\363\\252)-335(tr)1(z)-1(yma\\252a)]TJ 0 -13.549 Td[(i)-291(m\\252)-1(o)-27(dsz)-1(e)-292(d)1(z)-1(i)1(e)-1(ci)-291(w)-1(i)1(e)-1(sz)-1(a\\252y)-291(si\\246)-292(d)1(ok)28(o\\252)-1(a,)-291(za\\261)-292(T)83(eres)-1(k)56(a)-291(\\273)-1(o\\252ni)1(e)-1(r)1(k)55(a,)-291(cz)-1(erw)28(ona)-291(jak)-291(b)1(urak)1(,)]TJ 0 -13.549 Td[(rozb)-27(e)-1(cz)-1(an)1(a,)-333(trzym)-1(a\\252a)-333(go)-333(z)-1(a)-333(r\\246k)28(\\246)-1(,)-333(n)1(ie)-334(strze)-1(g\\241c)-334(si\\246)-334(j)1(u\\273)-334(o)-27(c)-1(zu)-333(niczyic)27(h)1(.)]TJ 27.879 -13.55 Td[(Jakb)29(y)-288(j)1(\\241)-288(kto)-287(w)27(o)-28(d)1(\\241)-288(zimn\\241.)-287(obla\\252,)-287(\\273)-1(e)-288(wyp)1(ad\\252a)-288(z)-288(k)1(up)28(y)-287(i)-288(w)-287(las)-288(p)-28(ogn)1(a\\252a,)-288(sam)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-350(w)-1(i)1(e)-1(d)1(z)-1(\\241c,)-349(c)-1(o)-349(s)-1(i\\246)-350(z)-350(n)1(i\\241)-349(w)-1(y)1(pra)28(wia.)-349(Jak\\273e)-350(to,)-349(m)-1(i)1(a)-1(\\252a)-349(s)-1(t)1(ras)-1(zn\\241)-349(o)-28(c)27(h)1(ot\\246)-350(p)-27(o)-28(c)-1(zu\\242)-349(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n1582 0 obj <<\n/Type /Page\n/Contents 1583 0 R\n/Resources 1581 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1581 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1586 0 obj <<\n/Length 8917      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(495)]TJ -358.232 -35.866 Td[(w)-389(gromadzie)-389(i)-389(\\261c)-1(i)1(s)-1(ku)1(,)-389(w)-389(tej)-388(prze)-1(j)1(m)27(u)1(j\\241ce)-1(j)-388(wrza)27(wie)-389(p)-27(o)28(w)-1(i)1(ta\\253,)-389(c)28(hcia\\252a)-389(si\\246)-389(c)-1(iesz)-1(y\\242)]TJ 0 -13.549 Td[(jak)-307(i)-307(dru)1(gie;)-308(p)1(rze)-1(cie)-1(k)1(,)-308(ki)1(e)-1(j)-307(ws)-1(zystkie,)-308(mia\\252a)-307(s)-1(erc)-1(e)-308(p)-27(e\\252ne)-308(\\273)-1(ar)1(\\363)28(w)-308(i)-308(goto)28(w)28(e)-308(do)-307(uni)1(e)-1(-)]TJ 0 -13.549 Td[(sie)-1(\\253)-397(i)-397(s)-1(zlo)-28(c)28(h\\363)28(w)-398(r)1(adosn)28(yc)27(h)1(,)-398(a)-397(oto)-398(sama)-398(i\\261\\242)-398(m)27(u)1(s)-1(i)1(,)-398(z)-398(d)1(ala)-398(o)-27(d)-397(lud)1(z)-1(i)-397(ni)1(b)28(y)-398(t)1(e)-1(n)-397(pi)1(e)-1(s)]TJ 0 -13.549 Td[(opar)1(s)-1(zywia\\252y)83(.)]TJ 27.879 -13.549 Td[(Roz)-1(d)1(ygota\\252a)-369(si\\246)-370(te\\273)-370(ci\\246\\273)-1(ki)1(m)-370(\\273alem)-1(,)-369(l)1(e)-1(d)1(w)-1(i)1(e)-370(j)1(u\\273)-370(\\252zy)-369(ws)-1(t)1(rz)-1(y)1(m)27(uj)1(\\241c)-370(a)-369(wyr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(k)56(ania)-283(i)-284(wle)-1(k)1(\\252)-1(a)-283(s)-1(i\\246)-284(jak)28(o)-283(ta)-284(c)27(h)1(m)27(ur)1(a)-284(p)-28(os\\246pna,)-283(c)-1(o)-284(t)1(o)-284(le)-1(d)1(a)-284(c)27(h)28(wil)1(a)-284(des)-1(zc)-1(zem)-285(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(ym)]TJ 0 -13.549 Td[(zap\\252ac)-1(ze.)]TJ 27.879 -13.549 Td[(P)28(ar)1(\\246)-329(razy)-328(pr)1(\\363b)-28(o)28(w)28(a\\252a)-329(u)1(c)-1(i)1(e)-1(k)56(a\\242)-329(d)1(o)-328(dom,)-328(ale)-329(n)1(ie)-329(p)-27(oredzi\\252a:)-328(\\273al)-328(jej)-328(b)28(y\\252o)-328(osta-)]TJ -27.879 -13.549 Td[(wia\\242)-336(p)1(ro)-28(ce)-1(sj\\246,)-335(to)-336(i)-335(p)1(l\\241ta\\252a)-335(s)-1(i\\246)-335(p)-28(otem)-336(p)-27(omi\\246)-1(d)1(z)-1(y)-335(lu)1(d\\271mi,)-335(jak)-335(ten)-335(\\212apa)-335(s)-1(zuk)56(a)-55(j\\241cy)]TJ 0 -13.549 Td[(w)-311(ci\\273bie)-310(s)-1(w)28(oic)27(h)-310(gosp)-28(o)-27(darzy)83(.)-310(Ni)1(e)-311(c)-1(i\\241)-27(gn\\246\\252o)-311(j)1(e)-1(j)-310(d)1(o)-311(matki)-310(ni)-310(d)1(o)-311(b)1(rata,)-310(kt\\363r)1(e)-1(n)-310(p)1(rze)-1(-)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(ln)1(ie)-387(zagub)1(ia\\252)-386(s)-1(i\\246)-386(w)-387(j)1(a\\252o)27(w)28(c)-1(ac)28(h)-386(i)-386(k)28(ole)-386(Nas)-1(tu)1(s)-1(i)-386(k)28(o\\252o)28(w)27(a\\252,)-386(a)-386(kto)-386(dr)1(ugi)-386(te\\273)-387(si\\246)-387(z)]TJ 0 -13.55 Td[(ni)1(\\241)-326(nie)-326(s)-1(t)1(o)27(w)28(arzys)-1(zy\\252,)-326(za)-56(j)1(\\246)-1(t)28(y)-326(sw)28(oim)-1(i)1(.)-326(A\\273)-327(w)-326(k)28(o\\253)1(c)-1(u)-325(z)-1(\\252o\\261\\242)-327(j)1(\\241)-326(z)-1(atr)1(z)-1(\\246s)-1(\\252a,)-326(\\273e)-326(b)28(y\\252ab)28(y)-326(z)]TJ 0 -13.549 Td[(lu)1(b)-28(o\\261c)-1(i)1(\\241)-331(pu)1(\\261)-1(ci\\252a)-331(k)56(am)-1(ieni)1(e)-1(m)-331(w)-331(c)-1(a\\252\\241)-331(k)1(up)-27(\\246)-332(i)-330(w)-332(te)-331(rozrad)1(o)27(w)28(ane,)-331(\\261mie)-1(j)1(\\241c)-1(e)-331(s)-1(i)1(\\246)-332(g\\246b)28(y)84(.)]TJ 27.879 -13.549 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-333(\\273e)-334(ju)1(\\273)-334(wyc)27(h)1(o)-28(dzili)-333(z)-334(b)-27(oru)1(.)]TJ 0 -13.549 Td[(Ostatni)-377(k)28(op)1(ie)-1(c)-377(s)-1(to)-55(ja\\252)-377(na)-377(roz)-1(d)1(ro\\273u,)-377(s)-1(k)56(\\241d)-377(j)1(e)-1(d)1(na)-377(z)-378(dr)1(\\363g)-378(skr\\246c)-1(a\\252a)-377(pr)1(os)-1(to)-377(ku)]TJ -27.879 -13.549 Td[(m\\252yno)28(wi.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-378(j)1(u\\273)-378(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(\\252o)-378(i)-378(zimn)28(y)-377(w)-1(i)1(ate)-1(r)-377(p)-27(o)27(wia\\252)-377(z)-379(n)1(izin,)-377(ksi\\241dz)-378(p)1(rz)-1(y)1(\\261)-1(p)1(ie)-1(sza\\252)]TJ -27.879 -13.549 Td[(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o,)-334(\\273e)-334(to)-333(i)-333(W)83(al)1(e)-1(k)-333(cz)-1(ek)56(a\\252)-334(n)1(a)-334(n)1(ie)-1(go)-333(z)-334(b)1(rycz)-1(k)56(\\241.)]TJ 27.879 -13.549 Td[(\\221p)1(iew)27(ali)-399(ta)-400(jes)-1(zcz)-1(e)-400(c)-1(o\\261)-400(ni)1(e)-1(co\\261)-1(,)-399(ale)-401(j)1(u\\273)-400(ws)-1(zystk)28(o)-400(s)-1(z\\252o)-400(na)-400(r)1(z)-1(ad)1(ki)-400(p)28(y)1(te)-1(l,)-399(b)-28(o)]TJ -27.879 -13.549 Td[(ut)1(rud)1(z)-1(eni)-411(b)28(yli)1(,)-412(za\\261)-413(c)28(h\\252op)28(y)-411(rozp)28(yt)28(yw)28(a\\252y)-412(z)-412(c)-1(ic)28(ha)-412(o)-411(folw)28(arek)-412(spalon)29(y)-412(w)28(e)-413(\\261wi\\246ta,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(go)-444(ru)1(m)-1(o)28(wisk)55(a)-444(ok)28(op)-27(c)-1(on)1(e)-445(s)-1(t)1(e)-1(rcz)-1(a\\252y)-444(n)1(ie)-1(d)1(alek)28(o,)-444(a)-445(p)1(rz)-1(y)-444(t)28(ym)-444(i)-444(na)-444(dw)28(orskic)27(h)]TJ 0 -13.55 Td[(p)-27(olac)27(h)-333(d)1(z)-1(i)1(a)-1(\\252y)-333(si\\246)-334(ciek)55(a)28(w)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-442(ano)-441(sk)55(ak)56(a\\252)-441(p)-28(o)-441(zagonac)27(h)-440(na)-441(s)-1(w)28(o)-56(j)1(e)-1(j)-441(b)1(u\\252an)1(c)-1(e)-442(za)-441(jaki)1(m)-1(i\\261)-441(lud)1(\\271)-1(mi,)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-317(rozm)-1(i)1(e)-1(r)1(z)-1(a)-55(j\\241cym)-1(i)-316(role)-317(d\\252ugi)1(m)-1(i)-317(p)1(r\\246tam)-1(i)1(,)-317(a)-317(z)-1(a\\261)-317(przy)-317(krzy\\273u,)-317(n)1(a)-317(rozw)-1(i)1(dleniu)]TJ 0 -13.549 Td[(dr)1(\\363g)-334(i)-333(k)28(ol)1(e)-334(s)-1(tog\\363)28(w)-333(s)-1(p)1(alon)28(yc)28(h)-333(w)-1(i)1(dn)1(ia\\252y)-333(bryk)1(i)-333(\\273)-1(\\363\\252to)-333(m)-1(al)1(o)27(w)28(ane.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(to)-333(mo\\273)-1(e)-334(b)29(y\\242)-1(?)-333({)-334(zau)28(w)28(a\\273)-1(y\\252)-333(ktosik.)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(p)-28(ol)1(e)-334(w)-1(y)1(m)-1(i)1(e)-1(rza)-56(j)1(\\241,)-333(jeno)-333(\\273)-1(e)-333(to)-334(n)1(ie)-334(ome)-1(n)29(try)84(.)]TJ 0 -13.549 Td[({)-333(Kup)-27(ce)-334(p)-28(ewnik)1(ie)-1(m,)-333(ni)1(e)-1(j)-333(wygl\\241d)1(a)-56(j)1(\\241)-334(n)1(a)-333(c)27(h\\252op)-27(\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(Na)-334(M)1(ie)-1(mc\\363)27(w)-333(patr)1(z)-1(\\241.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(:)-333(k)56(ap)-27(ot)28(y)-334(gr)1(anato)28(w)28(e)-1(,)-333(f)1(a)-56(je)-333(w)-334(z\\246)-1(b)1(ac)27(h)-333(i)-333(p)-27(ortki)-333(n)1(a)-334(c)28(holew)27(ac)28(h.)]TJ 0 -13.549 Td[({)-333(Ryc)27(h)28(t)28(yk)1(,)-333(p)-28(o)-28(d)1(obn)1(i)-333(do)-333(Olend)1(r\\363)28(w)-334(z)-334(G)1(run)29(bac)27(h)1(a.)]TJ 0 -13.55 Td[(Szeptali)-452(o)-28(c)-1(zy)-453(wytrzes)-1(zc)-1(za)-56(j)1(\\241c)-454(ciek)55(a)28(wie,)-453(ale)-453(jaki)1(\\261)-454(g\\252uc)28(h)28(y)-453(n)1(ie)-1(p)-27(ok)28(\\363)-56(j)-452(z)-1(acz\\241\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ejmo)28(w)27(a\\242)-308(gromad\\246,)-308(\\273)-1(e)-309(n)1(a)28(w)27(et)-308(nie)-308(s)-1(p)-27(os)-1(tr)1(z)-1(egli,)-308(j)1(ak)-308(k)28(o)28(w)27(al)-308(wyni)1(\\363s)-1(\\252)-308(s)-1(i)1(\\246)-309(cic)27(h)1(ac)-1(ze)-1(m)]TJ 0 -13.549 Td[(i)-333(pr)1(a)27(wie)-333(c)27(h)28(y\\252ki)1(e)-1(m,)-333(br)1(uzdami,)-333(pr)1(z)-1(ebiera\\252)-333(s)-1(i\\246)-333(ku)-333(dziedzico)27(wi.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(d)1(le)-1(ski)-333(fol)1(w)27(arek)-333(ku)1(puj)1(\\241)-333(c)-1(zy)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(w)28(e)-334(\\261wi\\246)-1(ta)-333(p)-27(o)27(wiad)1(ali,)-333(co)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(ogl\\241da)-333(s)-1(i)1(\\246)-334(z)-1(a)-333(ku)1(p)-28(cami.)]TJ 0 -13.549 Td[({)-333(Ale)-334(n)1(ie)-1(c)28(h)-333(r\\246k)55(a)-333(b)-27(os)-1(k)56(a)-333(bron)1(i)-333(o)-28(d)-333(miem)-1(iec)27(k)1(ic)27(h)-333(som)-1(siad)1(\\363)27(w!)]TJ 0 -13.55 Td[(P)28(on)1(ie)-1(c)28(hali)-504(rozw)27(a\\273a\\253,)-504(b)-28(o)-504(s)-1(k)28(o\\253)1(c)-1(zy\\252o)-505(si\\246)-505(nab)-27(o\\273)-1(e\\253st)28(w)27(o)-504(ks)-1(i)1(\\241dz)-505(ws)-1(iad)1(a\\252)-505(na)]TJ -27.879 -13.549 Td[(br)1(ycz)-1(k)28(\\246)-334(wraz)-333(z)-334(organ)1(is)-1(tami.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-457(s)-1(i\\246)-458(r)1(oz)-1(b)1(i\\252)-457(na)-457(kup)28(y)-457(i)-457(z)-458(w)28(olna)-457(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252)-457(do)-457(ws)-1(i,)-457(rozwlekli)-457(s)-1(i)1(\\246)-458(p)-28(o)]TJ -27.879 -13.549 Td[(dr)1(o)-28(dze,)-334(t)1(o)-334(miedzam)-1(i)-333(sz)-1(li)-333(g\\246s)-1(i)1(e)-1(go,)-333(j)1(ak)-334(t)1(a)-334(k)28(om)28(u)-333(bli)1(\\273)-1(ej)-333(b)28(y\\252o)-333(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-451(ju)1(\\273)-452(zas)-1(z\\252o)-451(i)-451(mro)-28(cz)-1(a\\252o)-451(n)1(ad)-451(zie)-1(miami,)-451(n)1(a)-451(z)-1(i)1(e)-1(lon)1(k)55(a)28(wym)-451(z)-1(a\\261)-451(ni)1(e)-1(b)1(ie)]TJ -27.879 -13.55 Td[(roz\\273)-1(ar)1(z)-1(a\\252y)-243(si\\246)-244(z)-1(or)1(z)-1(e)-244(ogn)1(iste)-1(.)-243(Z)-243(\\252)-1(\\241k)-243(za)-244(m\\252yn)1(e)-1(m)-244(r)1(usz)-1(a\\252y)-243(s)-1(i)1(\\246)-244(bia\\252e)-244(op)1(ary)84(,)-244(r)1(oz)-1(w\\252\\363)-28(cz)-1(\\241c)]TJ 0 -13.549 Td[(kieb)28(y)-292(pr)1(z)-1(\\246dz\\246)-293(na)-293(wsz)-1(y)1(s)-1(tki)1(e)-293(nizin)28(y)84(.)-293(W)-292(cic)27(h)1(o\\261)-1(ci,)-292(jak)56(\\241)-293(si\\246)-293(pr)1(z)-1(y)28(o)-27(dzie)-1(w)28(a\\252)-293(\\261w)-1(i)1(at,)-293(j)1(e)-1(n)1(o)]TJ\nET\nendstream\nendobj\n1585 0 obj <<\n/Type /Page\n/Contents 1586 0 R\n/Resources 1584 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1584 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1589 0 obj <<\n/Length 9141      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(496)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(o)-28(c)-1(i)1(e)-1(k)-333(kl)1(e)-1(k)28(ota\\252)-333(gdzie)-1(sik)-333(rozg\\252o\\261)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Bo)-409(n)1(a)28(w)27(et)-408(g\\252)-1(osy)-408(lu)1(dzkie)-409(p)-27(ogas\\252)-1(y)-408(i)-408(ca\\252a)-408(pro)-27(c)-1(es)-1(j)1(a)-409(wsi\\241k)56(a\\252a)-409(z)-408(w)27(oln)1(a)-408(w)-409(p)-27(o-)]TJ -27.879 -13.549 Td[(la,)-450(\\273)-1(e)-451(j)1(e)-1(n)1(o)-451(gdzieniegdzie)-451(cz)-1(erwienia\\252)-451(w)28(e\\252)-1(n)1(iak,)-450(leb)-28(o)-450(bia\\252e)-451(k)56(ap)-28(ot)28(y)-450(mgli\\252y)-451(si\\246)-451(w)]TJ 0 -13.549 Td[(zapada)-55(j\\241cyc)27(h)1(,)-333(m)-1(o)-27(dra)28(wyc)27(h)-332(c)-1(ieni)1(ac)27(h.)]TJ 27.879 -13.549 Td[(A)-486(p)-27(okr)1(\\363tc)-1(e)-486(wie\\261)-487(j)1(\\246)-1(\\252a)-485(s)-1(i\\246)-486(n)1(ap)-28(e\\252nia\\242)-486(i)-485(roz)-1(b)1(rzm)-1(i)1(e)-1(w)28(a\\242)-1(,)-485(b)-28(o)-485(ju)1(\\273)-487(wsz)-1(ystki)1(m)-1(i)]TJ -27.879 -13.55 Td[(stronami)-353(a)-354(gw)27(ar)1(nie)-354(w)28(alil)1(i,)-354(k)56(a\\273den)-354(za\\261)-354(c)27(h\\252op)-353(kr)1(z)-1(y\\273em)-355(\\261wi\\246t)27(y)1(m)-354(w)-1(i)1(ta\\252)-354(da)28(wno)-353(nie)]TJ 0 -13.549 Td[(widzian)1(e)-256(p)1(rogi,)-254(a)-255(n)1(ie)-1(-jeden)-254(na)-255(ziem)-256(r)1(ymn\\241\\252)-255(p)1(rze)-1(d)-254(obr)1(a)-1(zami,)-255(w)-255(g\\252os)-255(ry)1(c)-1(z\\241c)-256(szc)-1(z\\246)-1(-)]TJ 0 -13.549 Td[(\\261c)-1(ia)]TJ 27.879 -13.549 Td[(P)28(on)1(o)27(wi\\252y)-364(si\\246)-364(witania,)-363(a)-364(babi)1(e)-365(i)-364(d)1(z)-1(i)1(e)-1(ci\\253skie)-364(jazgot)28(y)83(,)-364(a)-364(op)-27(o)28(w)-1(i)1(adan)1(ia,)-364(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ry)1(w)27(an)1(e)-334(wybu)1(c)27(hami)-333(gor\\241cyc)27(h)-333(ca\\252un)1(k)28(\\363)28(w)-334(i)-333(\\261)-1(miec)27(h)1(\\363)27(w.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)84(,)-369(rozognion)1(e)-370(i)-369(jakb)29(y)-369(os)-1(zala\\252e)-370(z)-370(wrzas)-1(k)1(u,)-369(j\\246\\252y)-369(usadza\\242)-370(s)-1(w)28(oic)27(h)-368(nie-)]TJ -27.879 -13.55 Td[(b)-27(orak)28(\\363)28(w)-334(p)1(rze)-1(d)-333(mic)27(h)1(am)-1(i)1(,)-333(p)-28(o)-28(d)1(t)28(yk)56(a)-56(j)1(\\241c)-334(im)-334(j)1(ad\\252o)-333(i)-333(niew)27(ol)1(\\241c)-334(z)-1(e)-333(w)-1(szys)-1(tk)1(ie)-1(go)-333(se)-1(r)1(c)-1(a.)]TJ 27.879 -13.549 Td[(\\233e)-254(i)-253(k)1(rz)-1(y)1(w)-1(d)-252(z)-1(ap)-27(omnieli,)-253(i)-253(p)1(am)-1(i)1(\\246)-1(ci)-253(bi)1(e)-1(d)1(,)-253(i)-253(d\\252ugi)1(c)27(h)-253(mies)-1(i\\246cy)-253(roz)-1(\\252\\241k)1(i)-253(s)-1(i\\246)-253(z)-1(b)29(yli,)]TJ -27.879 -13.549 Td[(b)-27(o)-251(k)56(a\\273)-1(d)1(e)-1(n)-250(z)-252(ca\\252e)-1(go)-251(se)-1(r)1(c)-1(a)-251(cies)-1(zy\\252)-251(s)-1(i)1(\\246)-252(p)-27(o)28(wrotem)-252(i)-250(s)-1(w)28(oimi,)-251(kt\\363r)1(e)-252(r)1(az)-252(p)-27(o)-251(raz)-251(ob\\252ap)1(ia\\252)]TJ 0 -13.549 Td[(i)-333(do)-333(se)-1(rca)-333(przycisk)55(a\\252,)-333(a)-333(o)-334(r)1(\\363\\273)-1(n)1(o\\261)-1(ci)-333(w)-1(y)1(p)28(yt)28(yw)28(a\\252.)]TJ 27.879 -13.549 Td[(Kiedy)-264(z)-1(a\\261)-265(j)1(u\\273)-265(s)-1(ob)1(ie)-265(p)-28(o)-27(djedl)1(i)-265(d)1(o)-265(s)-1(y)1(tu,)-265(r)1(usz)-1(y)1(li)-265(gosp)-28(o)-27(dark)1(i)-265(ogl\\241d)1(a\\242)-266(i)-264(rad)1(o)27(w)28(a\\242)]TJ -27.879 -13.55 Td[(si\\246)-408(dob)28(y)1(tkiem)-1(,)-407(\\273e)-408(c)27(ho)-27(\\242)-408(ju\\273)-408(d)1(obr)1(z)-1(e)-408(\\261c)-1(i)1(e)-1(mnia\\252o,)-407(a)-408(\\252azili)-407(p)-27(o)-408(ob)-27(e)-1(j)1(\\261)-1(ciac)27(h)-407(i)-407(s)-1(ad)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(lew)27(en)28(tar)1(z)-1(e)-230(p)-27(oklepu)1(j\\241c)-230(alb)-27(o)-230(i)-229(t)28(yk)56(a)-56(j)1(\\241c)-231(p)1(alcam)-1(i)-229(ob)28(wis\\252e)-231(p)-27(o)-28(d)-229(kwiatem)-230(ga\\252\\246)-1(zie,)-230(k)1(ie)-1(b)29(y)]TJ 0 -13.549 Td[(te)-334(k)28(o)-27(c)27(han)1(e)-1(,)-333(d)1(z)-1(ieci\\253skie)-334(g\\252o)28(win)28(y)84(.)]TJ 27.879 -13.549 Td[(\\233e)-334(j)1(u\\273)-334(i)-333(n)1(ie)-334(op)-27(o)27(wiedzie\\242)-1(,)-333(j)1(akim)-334(w)28(e)-1(sele)-1(m)-333(rozgorz)-1(a\\252y)-333(Lip)-27(ce)-1(.)]TJ 0 -13.549 Td[(T)28(ylk)28(o)-333(u)-333(jedn)28(y)1(c)27(h)-333(Boryn)1(\\363)27(w)-333(b)28(y\\252o)-333(z)-1(go\\252a)-333(in)1(ac)-1(ze)-1(j)1(.)]TJ 0 -13.55 Td[(Dom)-274(os)-1(ta\\252)-274(pr)1(a)28(w)-1(i)1(e)-275(pu)1(s)-1(t)28(y)84(,)-274(Jagust)28(yn)1(k)55(a)-274(p)-27(olec)-1(ia\\252a)-274(d)1(o)-275(sw)27(oi)1(c)27(h,)-273(J\\363z)-1(k)56(a)-274(te)-1(\\273)-274(z)-275(Wi)1(t-)]TJ -27.879 -13.549 Td[(kiem)-268(p)-27(onies)-1(\\252a)-267(s)-1(i\\246,)-267(k)55(a)-55(j)-267(lud)1(niej)-267(b)28(y\\252o)-268(i)-267(w)27(es)-1(elej,)-267(\\273)-1(e)-268(j)1(e)-1(d)1(na)-268(Han)1(k)56(a)-268(c)27(h)1(o)-28(dzi\\252a)-268(p)-27(o)-268(ciem)-1(n)1(e)-1(j)]TJ 0 -13.549 Td[(izbie)-367(p)-28(oh)29(u\\261tuj)1(\\241c)-368(na)-367(r\\246ku)-367(d)1(z)-1(iec)27(k)28(o)-367(kwil\\241ce)-368(i)-367(j)1(u\\273)-368(p)1(usz)-1(cz)-1(a)-55(j\\241c)-367(w)27(o)-28(d)1(z)-1(e)-367(\\273)-1(alom)-367(i)-367(b)-28(ol)1(e)-1(-)]TJ 0 -13.549 Td[(sn)28(ym,)-333(pal\\241cym)-334(\\252zom)-1(.)]TJ 27.879 -13.549 Td[(Jeno)-417(\\273e)-417(i)-417(w)-417(t)28(ym)-417(ni)1(e)-418(osta\\252a)-417(d)1(z)-1(isia)-55(j)-417(sam)-1(a)-416(jedna,)-416(b)-27(o)-417(ano)-417(J)1(agu\\261)-417(tak)-417(sam)-1(o)]TJ -27.879 -13.55 Td[(cis)-1(k)56(a\\252a)-429(s)-1(i\\246)-429(w)-430(mro)-28(cz)-1(n)29(ym)-430(ob)-27(e)-1(j)1(\\261)-1(ciu)1(,)-430(r)1(yc)27(h)28(t)28(y)1(k)-430(t)28(y)1(m)-1(i)-429(sam)27(ymi)-429(s)-1(m)28(utk)56(ami)-429(s)-1(zarp)1(ana)-429(i)]TJ 0 -13.549 Td[(tak)-333(sam)-1(o)-333(t\\252uk)56(\\241c)-334(si\\246)-334(ki)1(e)-1(j)-333(ten)-333(p)1(tak)-333(o)-334(kl)1(atk)28(o)28(w)27(e)-334(p)1(r\\246t)27(y)84(.)]TJ 27.879 -13.549 Td[(T)83(ak)-333(si\\246)-334(ju)1(\\273)-334(b)-27(o)28(w)-1(i)1(e)-1(m)-334(spl)1(e)-1(t\\252o)-333(dziwnie.)]TJ 0 -13.549 Td[(Jagn)1(a)-320(p)1(rzylec)-1(i)1(a\\252)-1(a)-319(j)1(e)-1(sz)-1(cze)-320(p)1(rz)-1(ed)-319(d)1(ru)1(gim)-1(i)1(,)-319(a)-319(c)27(ho)-27(c)-1(ia\\273)-319(mro)-28(cz)-1(n)1(a)-319(b)28(y\\252a)-319(kiej)-319(n)1(o)-28(c)]TJ -27.879 -13.549 Td[(i)-303(roze)-1(\\271lon)1(a,)-304(r)1(z)-1(u)1(c)-1(i)1(\\252)-1(a)-303(si\\246)-304(d)1(o)-304(r)1(ob)-28(ot)28(y)84(,)-303(robi)1(\\252a)-1(,)-303(co)-303(ino)-303(jej)-303(wpad)1(\\252o)-304(p)-27(o)-28(d)-303(o)-27(c)-1(zy)83(,)-303(za)-304(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.55 Td[(kic)28(h;)-261(w)-1(y)1(doi\\252a)-262(kr)1(o)28(w)-1(y)84(,)-262(n)1(ap)-28(oi)1(\\252)-1(a)-261(c)-1(ielak)56(a,)-262(n)1(a)28(w)27(et)-262(\\261)-1(win)1(iom)-262(\\273)-1(ar)1(c)-1(i)1(e)-263(p)-27(oni)1(e)-1(s\\252a,)-262(ja\\273e)-262(Hank)56(a)]TJ 0 -13.549 Td[(zdumia\\252a)-332(si\\246,)-332(ledwie)-332(wie)-1(r)1(z)-1(\\241c)-332(w\\252as)-1(n)28(y)1(m)-333(o)-27(c)-1(zom)-1(.)-331(A)-332(ona)-332(n)1(ie)-332(bacz)-1(\\241c)-332(n)1(a)-332(nik)28(ogo)-332(p)1(ra-)]TJ 0 -13.549 Td[(co)27(w)28(a\\252a,)-341(jakb)28(y)-341(si\\246)-342(c)28(hc\\241c)-342(z)-1(ar)1(obi\\242)-341(i)-342(t)1(ak)-342(u)1(m\\246)-1(cz)-1(y\\242,)-341(b)28(y)-341(z)-1(ap)-27(omnie\\242)-342(kr)1(z)-1(ywd)1(y)-341(jakiej\\261)-341(i)]TJ 0 -13.549 Td[(zabi\\242)-334(w)-333(s)-1(ob)1(ie)-334(sm)27(u)1(tki)-333(a)-333(\\273)-1(ale.)]TJ 27.879 -13.549 Td[(Ale)-380(c)-1(\\363\\273,)-380(c)27(h)1(o)-28(\\242)-381(r)1(\\246)-1(ce)-381(mdl)1(a\\252)-1(y)-379(z)-381(u)1(trud)1(z)-1(eni)1(a)-381(i)-379(krzy\\273)-381(d)1(z)-1(i)1(w)-381(n)1(ie)-381(p)-27(\\246k)55(a\\252,)-380(\\252zy)-380(i)-380(tak)]TJ -27.879 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-266(sta\\252)-1(y)-265(jej)-265(w)-266(o)-28(c)-1(zac)27(h)-265(i)-266(cz)-1(\\246s)-1(t)1(o)-266(pal\\241cym)-266(sz)-1(n)28(u)1(rem)-266(c)-1(iek\\252y)-266(p)-27(o)-266(t)28(w)28(arzy)83(,)-266(a)-265(w)-266(du)1(s)-1(zy)]TJ 0 -13.55 Td[(kr)1(z)-1(ew)-1(i)1(\\252)-334(si\\246)-334(coraz)-334(b)1(uj)1(niejsz)-1(y)-333(i)-333(sro\\273s)-1(zy)-333(s)-1(m)28(utek)]TJ 27.879 -13.549 Td[(Zap\\252ak)56(ane)-328(o)-28(cz)-1(y)-327(nic)-328(ni)1(e)-329(wid)1(z)-1(ia\\252y)-328(wp)-27(o)-28(d)1(le)-329(siebie,)-328(n)1(a)27(w)28(e)-1(t)-327(Pietrk)56(a,)-328(k)1(t\\363ren)-328(ju)1(\\273)]TJ -27.879 -13.549 Td[(o)-28(d)-317(sam)-1(ego)-318(p)1(rzyj\\261c)-1(i)1(a)-318(n)1(a)-318(kr)1(ok)-318(j)1(e)-1(j)-317(n)1(ie)-318(o)-28(d)1(s)-1(t\\246p)-27(o)27(w)28(a\\252)-318(i)-317(p)-27(om)-1(aga)-55(j\\241c)-318(zagadyw)28(a\\252)-318(z)-318(cic)27(h)1(a)]TJ 0 -13.549 Td[(i)-446(roz)-1(\\273arzon)28(ymi)-446(\\261)-1(lepi)1(am)-1(i)-446(ob)-28(ejmo)28(w)27(a\\252,)-446(a)-447(p)1(rzyc)-1(i)1(e)-1(ra\\252)-446(s)-1(i\\246)-447(n)1(ieraz)-447(tak)-446(z)-447(blisk)56(a,)-447(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(b)-27(e)-1(zw)27(ol)1(nie)-437(s)-1(i\\246)-437(o)-28(dsu)28(w)28(a\\252a.)-437(A\\273)-1(e)-438(p)1(rzysz)-1(\\252o)-437(do)-437(tego,)-437(\\273)-1(e)-437(kiej)-437(w)-437(s)-1(to)-28(d)1(ole)-438(n)1(abi)1(e)-1(ra\\252a)-437(w)]TJ 0 -13.55 Td[(opa\\252k)28(\\246)-335(sie)-1(cz)-1(k)1(i,)-335(c)28(h)28(wyc)-1(i)1(\\252)-335(j\\241)-335(wp)-27(\\363\\252)-1(,)-334(do)-335(s\\241s)-1(i)1(e)-1(k)56(a)-335(p)1(rz)-1(y)1(piera\\252)-335(mam)-1(r)1(o)-28(cz)-1(\\241c)-335(c)-1(osik)-335(i)-334(do)-335(j)1(e)-1(j)]TJ 0 -13.549 Td[(w)28(arg)-333(c)27(hciwie)-334(si\\246ga)-56(j\\241c...)]TJ\nET\nendstream\nendobj\n1588 0 obj <<\n/Type /Page\n/Contents 1589 0 R\n/Resources 1587 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1587 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1592 0 obj <<\n/Length 9008      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(497)]TJ -330.353 -35.866 Td[(Nie)-315(sprzec)-1(iwi\\252a)-315(si\\246,)-315(n)1(ie)-315(miarku)1(j\\241c,)-315(d)1(o)-315(cz)-1(ego)-315(id)1(z)-1(ie)-315(i)-314(da)-55(j\\241c)-315(si\\246)-315(na)-314(jego)-315(w)27(ol)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-445(n)1(a)28(w)27(et)-445(rad)1(a)-445(tem)27(u,)-444(\\273)-1(e)-445(j)1(\\241)-445(jak)56(a\\261)-445(mo)-28(c)-445(p)-28(o)-55(jena)-445(i)-444(p)-28(on)1(os)-1(i)1(,)-445(ale)-445(sk)28(oro)-445(j)1(\\241)-445(rzuci\\252)]TJ 0 -13.549 Td[(na)-421(s\\252om)-1(\\246)-421(i)-421(p)-27(o)-28(c)-1(zu\\252a)-421(n)1(a)-421(t)28(w)27(arzy)-421(j)1(e)-1(go)-421(wilgotn)1(e)-422(w)28(argi,)-421(p)-27(orw)28(a\\252a)-421(s)-1(i)1(\\246)-422(ni)1(b)28(y)-421(wic)27(h)1(e)-1(r)-420(i)]TJ 0 -13.549 Td[(o)-28(d)1(rzuci\\252a)-334(go)-333(pr)1(e)-1(cz)-334(kiej)-333(ten)-333(wie)-1(c)28(he\\242)-1(,)-333(j)1(a\\273)-1(e)-334(b)-27(\\246c)-1(n)1(\\241\\252)-334(n)1(a)-334(kl)1(e)-1(p)1(is)-1(k)28(o.)1(..)]TJ 27.879 -13.549 Td[(St)1(ras)-1(zna)-333(z\\252o\\261)-1(\\242)-334(j)1(\\241)-334(zatrz\\246)-1(s\\252a...)]TJ 0 -13.55 Td[({)-263(T)27(y)-263(p)-27(okrak)28(o)-263(zap)-28(o)28(wietrzona!.)1(..)-263(t)28(y)-263(\\261)-1(win)1(iarzu!.)1(..)-263(P)28(o)28(w)27(a\\273)-263(s)-1(i)1(\\246)-264(jes)-1(zc)-1(ze)-264(k)1(ie)-1(j)-262(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(tkn)1(\\241\\242)-1(,)-304(to)-305(c)-1(i)-305(k)1(ulasy)-305(p)-27(oprzetr\\241ca)-1(m!.)1(..)-305(Dam)-305(ja)-305(ci)-305(jamory)84(,)-305(j)1(a\\273)-1(e)-305(s)-1(i\\246)-305(ju)1(c)27(h)1(\\241)-305(oblejes)-1(z!..)1(.)]TJ 0 -13.549 Td[({)-333(krzycz)-1(a\\252a)-333(rz)-1(u)1(c)-1(a)-55(j\\241c)-333(s)-1(i\\246)-333(z)-334(grab)1(iam)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ale)-359(wnet)-359(zap)-28(omnia\\252a)-358(o)-359(w)-1(szys)-1(tk)1(im)-359(i)-359(p)-27(ok)28(o\\253cz)-1(ywsz)-1(y)-358(obr)1(z)-1(\\241dk)1(i,)-359(d)1(o)-359(c)27(h)1(a\\252up)28(y)]TJ -27.879 -13.549 Td[(p)-27(os)-1(z\\252a.)]TJ 27.879 -13.549 Td[(W)-320(progu)-320(n)1(atkn\\246\\252a)-321(si\\246)-321(na)-320(Hank)28(\\246:)-321(za)-56(j)1(rza\\252y)-321(sobie)-321(w)-321(o)-27(c)-1(zy)-321(p)1(rze)-1(sz)-1(k)1(lone)-321(\\252zam)-1(i)]TJ -27.879 -13.55 Td[(a)-333(b)-28(\\363l)1(e)-1(m)-334(o)-27(c)-1(i\\246\\273)-1(a\\252e)-333(i)-334(\\261pi)1(e)-1(sz)-1(n)1(ie)-334(si\\246)-334(r)1(oz)-1(b)1(ie)-1(g\\252y)84(.)]TJ 27.879 -13.549 Td[(Z)-352(ob)1(u)-351(iz)-1(b)-351(d)1(rzw)-1(i)-351(s)-1(t)1(a\\252)-1(y)-351(wyw)28(arte)-352(do)-351(s)-1(i)1(e)-1(n)1(i)-352(i)-351(w)-352(obu)-351(j)1(u\\273)-352(si\\246)-352(pali)1(\\252y)-352(\\261wiat\\252a,)-352(\\273e)]TJ -27.879 -13.549 Td[(co)-334(c)28(h)28(wila,)-333(jakb)29(y)-333(z)-334(niewyt\\252omac)-1(zonego)-334(m)28(usu,)-333(sp)-28(oziera\\252y)-333(z)-334(dal)1(a)-334(n)1(a)-334(siebie.)]TJ 27.879 -13.549 Td[(Za\\261)-417(p)-27(ote)-1(m,)-416(nar)1(z)-1(\\241d)1(z)-1(a)-55(j\\241c)-417(wsp)-28(\\363l)1(nie)-416(k)28(olac)-1(j)1(\\246)-1(,)-416(k)1(r\\246)-1(ci\\252y)-416(si\\246)-417(z)-417(b)1(lisk)55(a)-416(siebie,)-416(ale)]TJ -27.879 -13.549 Td[(\\273adna)-400(nie)-401(pu)1(\\261)-1(ci\\252a)-401(p)1(ary)83(,)-400(\\273)-1(ad)1(na)-401(i)-400(s)-1(\\252o)28(w)28(a)-401(nie)-401(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)-400(jeno)-401(kr)1(yjomo)-401(ki)1(e)-1(j)-400(z)-1(\\252o-)]TJ 0 -13.55 Td[(dzieje)-269(c)27(h)1(o)-28(dzi\\252y)-269(za)-269(sob\\241)-269(\\261lepiami.)-269(J)1(u\\261c)-1(i,)-268(dob)1(rz)-1(e)-269(wiedzia\\252y)83(,)-268(c)-1(o)-269(k)56(a\\273da)-269(d)1(z)-1(isia)-55(j)-269(cierpi)1(,)]TJ 0 -13.549 Td[(\\273e)-318(c)-1(z\\246)-1(sto)-317(z)-1(\\252e)-318(i)-317(m)-1(\\261ciw)27(e)-318(o)-27(c)-1(zy)-317(przysk)55(ak)1(iw)27(a\\252y)-317(d)1(o)-318(sie)-1(b)1(ie)-318(ki)1(e)-1(j)-317(n)1(o\\273)-1(e)-318(ostre,)-317(a)-318(zac)-1(i\\261ni)1(\\246)-1(te)]TJ 0 -13.549 Td[(ni)1(e)-1(me)-334(u)1(s)-1(ta)-333(m)-1(\\363)28(wi\\252y)-333(ur)1(\\241)-28(gliwie:)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e)-334(ci)-333(tak!)-333(dob)1(rze)-1(!)]TJ 0 -13.549 Td[(Ale)-455(przyc)27(h)1(o)-28(dzi\\252y)-455(i)-455(taki)1(e)-456(c)27(h)28(wil)1(e)-1(,)-455(\\273e)-456(zac)-1(zyna\\252o)-455(im)-455(b)28(y\\242)-456(siebie)-455(\\273)-1(al,)-455(\\273e)-456(b)29(y-)]TJ -27.879 -13.55 Td[(\\252yb)28(y)-420(z)-1(agw)28(arz)-1(y)1(\\252y)-421(pr)1(z)-1(yj)1(a\\271)-1(n)1(ie,)-421(\\273)-1(e)-421(k)56(a\\273)-1(d)1(a)-421(ino)-421(cz)-1(ek)56(a\\252a)-421(z)-1(acz)-1(epki)1(,)-421(b)28(y)-421(o)-28(d)1(rze)-1(k)1(n\\241\\242)-421(p)-28(o-)]TJ 0 -13.549 Td[(cz)-1(ciwym)-338(s\\252o)27(w)28(em)-1(,)-337(\\273e)-338(n)1(a)27(w)28(e)-1(t)-337(p)1(rzys)-1(ta)28(w)28(a\\252y)-337(w)-1(p)-27(o)-28(d)1(le,)-337(z)-1(ez)-1(u)1(j\\241c)-338(k)1(u)-337(s)-1(ob)1(ie)-338(wycz)-1(eku)1(j\\241co,)]TJ 0 -13.549 Td[(gdy)1(\\273)-366(ust\\246p)-28(o)28(w)28(a\\252a)-366(za)28(w)-1(zi\\246to\\261)-1(\\242,)-365(p)1(rz)-1(y)1(m)-1(i)1(e)-1(ra\\252y)-365(zada)28(wni)1(one)-366(gn)1(iew)-1(y)84(,)-365(a)-365(p)-28(osp)-27(\\363lna)-365(d)1(ola)]TJ 0 -13.549 Td[(i)-387(op)1(usz)-1(cz)-1(eni)1(e)-388(k\\252on)1(i\\252y)-387(j)1(e)-388(k)1(u)-387(sobie)-387(coraz)-387(bli\\273e)-1(j)1(...)-386(jeno)-387(co)-387(ni)1(e)-388(sk\\252oni)1(\\252)-1(y)84(,)-387(b)-27(o)-387(za)27(wd)1(y)]TJ 0 -13.549 Td[(je)-394(cos)-1(ik)-393(p)-28(o)28(wstrzym)27(yw)28(a\\252o:)-394(to)-394(p)1(\\252ac)-1(z)-394(dziec)27(k)56(a,)-394(to)-393(w)-1(st)28(yd)-393(jaki\\261,)-394(to)-393(nag\\252e)-394(o)-28(c)27(kn)1(ienie)]TJ 0 -13.55 Td[(w)-456(pami\\246c)-1(i)-456(kr)1(z)-1(ywd)1(,)-456(ja\\273e)-457(i)-456(w)-456(k)28(o\\253cu)-456(r)1(oz)-1(n)1(ie)-1(s\\252o)-456(je)-456(dalek)28(o)-456(i)-456(z)-1(a)28(wz)-1(i)1(\\246)-1(to\\261\\242)-457(zno)28(wu)-456(w)]TJ 0 -13.549 Td[(se)-1(rcac)27(h)-389(za)28(w)-1(r)1(z)-1(a\\252a,)-389(z\\252o\\261)-1(cie)-390(spr\\246\\273y\\252y)-390(d)1(usz)-1(e)-389(i)-389(o)-28(c)-1(zy)-389(p)-28(o)-27(c)-1(z\\246)-1(\\252y)-389(si\\246)-390(\\273ga\\242)-390(b\\252ysk)56(a)27(wicami)]TJ 0 -13.549 Td[(ni)1(e)-1(n)1(a)27(wi\\261ci.)]TJ 27.879 -13.549 Td[({)-478(Dobrze)-479(ci)-478(tak!)-478(dob)1(rz)-1(e)-478({)-479(sycz)-1(a\\252y)-478(z)-479(cic)27(h)1(a,)-479(p)1(ra\\273\\241c)-479(s)-1(i)1(\\246)-479(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)-479(zno)28(wu)]TJ -27.879 -13.549 Td[(goto)28(w)27(e)-333(do)-333(k\\252\\363tni)1(,)-334(d)1(o)-333(bitk)1(i)-334(n)1(a)28(w)27(et,)-333(b)28(yc)28(h)-333(c)-1(a\\252\\241)-333(z)-1(\\252o\\261\\242)-334(wywrze)-1(\\242)-334(n)1(a)-334(d)1(ru)1(gie)-1(j)1(.)]TJ 27.879 -13.55 Td[(Na)-385(szc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(,)-384(do)-384(te)-1(go)-384(ni)1(e)-385(przysz)-1(\\252o,)-384(b)-27(o)-385(Jagu)1(s)-1(ia)-384(z)-1(ar)1(az)-385(p)-28(o)-384(k)28(olacji)-384(wynies\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-334(do)-333(matki.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-438(b)28(y)1(\\252)-439(cie)-1(mn)28(y)84(,)-438(ale)-439(cic)27(h)29(y)-438(i)-439(ciep\\252y;)-438(gwiazdy)-438(j)1(e)-1(n)1(o)-439(z)-438(rz)-1(ad)1(k)56(a)-439(p)1(rze)-1(b)1(\\252y-)]TJ -27.879 -13.549 Td[(skiw)28(a\\252)-1(y)-444(w)-445(p)1(\\252)-1(o)28(wyc)28(h)-445(g\\252\\246b)-28(ok)28(o\\261ciac)27(h;)-444(n)1(a)-445(mo)-28(c)-1(zarac)28(h)-445(l)1(e)-1(\\273a\\252y)-445(b)1(ia\\252e)-1(,)-444(gru)1(b)-28(e)-445(k)28(o\\273uc)27(h)29(y)]TJ 0 -13.549 Td[(opar)1(\\363)28(w)-1(,)-312(\\273ab)28(y)-312(z)-1(acz)-1(y)1(na\\252y)-312(rec)27(hota\\242,)-312(a)-313(n)1(iekiedy)-312(z)-1(ab)1(\\252\\241k)56(a\\252)-1(o)-312(si\\246)-313(j\\246kli)1(w)27(e)-313(kwil)1(e)-1(n)1(ie)-313(cz)-1(a-)]TJ 0 -13.549 Td[(jek.)-337(Ziemi\\246)-338(za\\261)-338(otu)1(la\\252y)-337(mroki,)-336(\\273)-1(e)-337(jeno)-337(k)56(a)-56(j)1(\\261)-338(wynosi\\252y)-337(si\\246)-338(n)1(a)-337(ja\\261ni\\246)-337(ni)1(e)-1(b)1(a)-338(d)1(rze)-1(w)28(a)]TJ 0 -13.55 Td[(p)-27(os)-1(p)1(ane,)-275(s)-1(ad)1(y)-275(s)-1(zarza\\252y)-275(jakb)29(y)-275(w)27(ap)1(nem)-276(skrop)1(ione,)-275(a)-275(bij)1(\\241c)-1(e)-275(z)-1(ap)1(ac)27(hami)-275(n)1(ib)28(y)-275(z)-275(try-)]TJ 0 -13.549 Td[(bu)1(larz\\363)28(wv)-384(roz\\273)-1(ar)1(z)-1(on)28(y)1(c)27(h;)-383(wi\\261)-1(n)1(io)28(wy)-384(kwiat)-384(p)1(ac)27(h)1(nia\\252)-384(i)-383(bzy)-384(ledwie)-384(roztla\\252e,)-384(pac)28(h-)]TJ 0 -13.549 Td[(ni)1(a\\252y)-290(z)-1(b)-27(o\\273a,)-290(w)28(o)-28(dy)-289(i)-290(te)-290(z)-1(iemie)-291(p)1(rze)-1(wil)1(go)-28(c)-1(on)1(e)-1(,)-289(a)-290(k)56(a\\273)-1(d)1(e)-1(n)-289(kwiat)-290(cz)-1(u)1(\\242)-291(b)29(y\\252o)-290(z)-291(osobn)1(a)]TJ 0 -13.549 Td[(i)-427(w)-1(sz)-1(y)1(s)-1(tki)1(e)-428(raz)-1(em)-428(wion\\246\\252y)-428(u)1(pa)-55(ja)-55(j\\241cym)-1(,)-427(s\\252)-1(o)-27(dki)1(m)-428(z)-1(ap)1(ac)27(hem)-1(,)-427(ja\\273e)-428(w)-428(g\\252o)28(w)-1(i)1(e)-428(s)-1(i\\246)]TJ 0 -13.549 Td[(kr)1(\\246)-1(ci\\252o.)]TJ 27.879 -13.55 Td[(Wie\\261)-482(j)1(e)-1(sz)-1(cze)-482(ni)1(e)-482(s)-1(p)1(a\\252a,)-481(c)-1(ic)28(he)-481(p)-28(ogw)28(ary)-481(tr)1(z)-1(\\246s)-1(\\252y)-481(si\\246)-482(o)-28(d)-480(prog\\363)28(w)-481(i)-481(przy\\271b,)]TJ -27.879 -13.549 Td[(ton)1(\\241c)-1(yc)28(h)-223(w)-223(ciem)-1(n)1(o\\261)-1(ciac)28(h,)-222(z)-1(a\\261)-223(dr)1(ogi,)-223(p)1(rzys\\252)-1(on)1(ion)1(e)-224(cieniami)-222(drze)-1(w,)-222(a)-223(j)1(e)-1(n)1(o)-223(ni)1(e)-1(gdzie)]TJ\nET\nendstream\nendobj\n1591 0 obj <<\n/Type /Page\n/Contents 1592 0 R\n/Resources 1590 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1590 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1595 0 obj <<\n/Length 6021      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(498)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(32.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(p)-27(orzni\\246te)-427(\\261w)-1(i)1(e)-1(tl)1(is)-1(t)28(ymi)-426(pr)1(\\246)-1(gami)-426(z)-427(oki)1(e)-1(n)-426(b)1(ij\\241cymi,)-426(mro)28(wi\\252y)-426(s)-1(i\\246)-426(o)-28(d)-426(lu)1(dzi.)-426(Jagu\\261)]TJ 0 -13.549 Td[(ni)1(b)28(y)-273(to)-273(do)-273(m)-1(at)1(ki)-273(z)-1(mierza\\252)-1(a,)-273(a)-273(j\\246\\252a)-273(kr\\246c)-1(i\\242)-273(nad)-273(sta)28(w)27(em)-1(,)-273(k)28(o\\252o)28(w)28(a\\242)-1(,)-273(p)1(rz)-1(y)1(s)-1(ta)-55(j\\241c)-274(coraz)]TJ 0 -13.549 Td[(cz)-1(\\246\\261)-1(ciej,)-344(b)-27(o)-344(pr)1(a)28(w)-1(i)1(e)-345(co)-344(krok)-343(nat)28(yk)56(a\\252a)-344(s)-1(i)1(\\246)-345(n)1(a)-344(jak)56(\\241\\261)-344(par\\246,)-344(mo)-28(cno)-344(splec)-1(i)1(on\\241)-344(i)-344(cic)27(h)1(o)]TJ 0 -13.549 Td[(gw)28(arz)-1(\\241c\\241.)]TJ 27.879 -13.549 Td[(Sp)-27(otk)56(a\\252a)-333(i)-334(b)1(rata)-333(z)-334(Nastusi\\241:)-333(trzymali)-333(s)-1(i)1(\\246)-334(wp)-28(\\363\\252)-333(c)-1(a\\252u)1(j\\241c)-334(zapami\\246tale.)]TJ 0 -13.55 Td[(Wlaz\\252a)-268(te)-1(\\273)-268(ni)1(e)-1(c)27(h)1(c)-1(\\241cy)-268(n)1(a)-269(M)1(arysi\\246)-268(B)-1(alcerk)28(\\363)28(w)-1(n)1(\\246)-269(z)-268(W)83(a)28(wrzkiem)-1(:)-268(gd)1(z)-1(i)1(e)-1(sik)-268(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(p\\252otem,)-456(w)-455(grub)29(ym)-456(cie)-1(n)1(iu)-455(sto)-56(j)1(ali,)-455(pr)1(z)-1(ytu)1(leni)-455(do)-455(s)-1(i)1(e)-1(b)1(ie)-456(i)-455(o)-456(Bo\\273)-1(y)1(m)-456(\\261)-1(wiec)-1(i)1(e)-456(nie)]TJ 0 -13.549 Td[(wiedz\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Roz)-1(p)-27(ozna\\252a)-326(p)-27(o)-327(g\\252osac)27(h)-325(i)-326(dr)1(ugie,)-326(\\273)-1(e)-326(z)-327(k)56(a\\273dego)-326(c)-1(ieni)1(a)-326(nad)-326(w)28(o)-28(d)1(\\241,)-326(s)-1(p)-27(o)-28(d)-326(p)1(\\252o-)]TJ -27.879 -13.549 Td[(t\\363)28(w,)-433(ze)-1(ws)-1(z\\241d)-433(r)1(oz)-1(n)1(os)-1(i)1(\\252)-1(y)-432(s)-1(i)1(\\246)-434(sz)-1(ept)28(y)84(,)-433(dy)1(s)-1(z\\241c)-1(e)-433(s)-1(\\252o)28(w)28(a,)-433(up)1(aln)1(e)-434(w)28(e)-1(stc)27(h)1(nieni)1(a,)-433(jak)1(ie)-1(\\261)]TJ 0 -13.549 Td[(dy)1(got)28(y)-303(i)-303(sz)-1(amotani)1(a.)-303(Ca\\252a)-303(w)-1(i)1(e)-1(\\261)-303(z)-1(d)1(a\\252a)-303(s)-1(i)1(\\246)-304(wrze)-1(\\242)-303(uk)1(rop)-27(e)-1(m)-303(mi\\252o)27(w)28(a\\253)-302(i)-303(lub)-27(o\\261c)-1(i\\241,)-302(\\273)-1(e)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-403(i)-403(te)-404(skrzat)27(y)-403(ledwie)-403(o)-28(dr)1(os)-1(\\252e,)-404(a)-403(i)-403(to)-404(w)28(o)-28(dzi\\252y)-403(s)-1(i)1(\\246)-404(z)-404(c)27(h)1(\\252opak)56(am)-1(i)1(,)-404(g\\273\\241c)-404(si\\246)-404(a)]TJ 0 -13.549 Td[(pr)1(z)-1(egani)1(a)-56(j\\241c)-333(p)-28(o)-333(dr)1(ogac)27(h.)]TJ 27.879 -13.549 Td[(Ob)1(m)-1(i)1(e)-1(rz\\252o)-235(j)1(e)-1(j)-234(t)1(o)-235(n)1(agle)-1(,)-234(\\273e)-235(wz)-1(i\\246\\252a)-235(i)1(c)27(h)-234(wymija\\242,)-234(kieruj)1(\\241c)-235(si\\246)-235(pr)1(os)-1(to)-234(do)-234(matki,)]TJ -27.879 -13.549 Td[(ale)-450(p)1(rze)-1(d)-449(d)1(om)-1(em)-450(sp)-28(otk)56(a\\252a)-449(s)-1(i)1(\\246)-450(obli)1(c)-1(znie)-450(z)-449(Mateusz)-1(em)-1(;)-449(n)1(ie)-450(sp)-28(o)-55(jrza\\252)-450(n)1(a)28(w)27(et)-450(n)1(a)]TJ 0 -13.549 Td[(ni)1(\\241)-425(mija)-55(j\\241c)-425(kiej)-424(to)-425(dr)1(z)-1(ew)27(o;)-424(wi\\363)-28(d)1(\\252)-425(s)-1(i)1(\\246)-426(z)-425(T)83(eres)-1(k)56(\\241)-425(tr)1(z)-1(yma)-55(j\\241c)-425(j\\241)-424(w)-1(p)-27(\\363\\252)-425(i)-424(c)-1(osik)-425(j)1(e)-1(j)]TJ 0 -13.55 Td[(pr)1(a)28(w)-1(i)1(\\241c)-1(..)1(.)-334(P)1(rze)-1(sz)-1(l)1(i,)-333(a)-334(on)1(a)-334(j)1(e)-1(szc)-1(ze)-334(s)-1(\\252y)1(s)-1(za\\252a)-334(ic)28(h)-333(g\\252os)-1(y)-333(i)-333(pr)1(z)-1(y)1(t\\252umione)-333(\\261)-1(miec)27(h)28(y)84(.)]TJ 27.879 -13.549 Td[(Za)28(w)-1(r)1(\\363)-28(ci\\252a)-253(nagl)1(e)-254(i)-252(ju)1(\\273)-253(w)-253(dy)1(rdy)84(,)-253(j)1(akb)28(y)-252(gonion)1(a)-253(p)1(rz)-1(ez)-253(ws)-1(zystkie)-253(psy)84(,)-253(uciek)56(a\\252)-1(a)]TJ -27.879 -13.549 Td[(do)-333(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(A)-282(wie)-1(cz\\363r)-282(c)-1(ic)28(h)28(y)84(,)-282(w)-1(i)1(o\\261)-1(n)1(ian)28(y)84(,)-282(pac)27(h)1(n\\241cy)83(,)-282(n)1(abr)1(z)-1(mia\\252y)-282(rad)1(o\\261)-1(ci\\241)-282(p)-27(o)27(wita\\253)1(,)-282(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(j\\246t)28(y)-333(\\261)-1(wi\\246t\\241)-333(c)-1(ic)28(ho\\261c)-1(i\\241)-333(sz)-1(cz)-1(\\246\\261)-1(cia,)-333(p)1(\\252)-1(y)1(n\\241\\252)-333(niep)-27(o)27(wstrzym)-1(an)1(ie.)]TJ 27.879 -13.55 Td[(Gd)1(z)-1(i)1(e)-1(sik)-353(w)-353(n)1(o)-28(c)-1(y)84(,)-353(w)-353(r)1(oz)-1(p)1(ac)27(hn)1(ion)28(yc)28(h)-353(sadac)28(h)-353(cz)-1(y)-352(na)-353(p)-27(olu)1(,)-353(f)1(uj)1(ark)56(a)-353(z)-1(a\\261wie)-1(r)1(-)]TJ -27.879 -13.549 Td[(goli\\252a)-333(t\\246s)-1(kn)1(\\241)-333(n)28(ut\\241,)-333(j)1(akb)28(y)-333(do)-333(wt\\363ru)-333(t)28(ym)-333(s)-1(ze)-1(p)1(tom)-334(i)-333(ca\\252unk)28(om,)-333(i)-333(rad)1(o\\261)-1(ciom.)]TJ 27.879 -13.549 Td[(Za\\261)-360(na)-359(mo)-28(c)-1(zarac)28(h)-359(\\273)-1(ab)28(y)-359(zarec)27(hota\\252y)-359(wielkim)-360(c)28(h\\363r)1(e)-1(m,)-359(niekiedy)-359(jeno)-359(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ry)1(w)27(an)28(y)1(m)-1(,)-328(a)-328(dr)1(ugie,)-328(w)27(e)-328(s)-1(ta)28(wie)-329(p)1(rzym)-1(gl)1(on)28(ym)-329(k)1(ie)-1(j)-327(ok)28(o)-329(zas)-1(y)1(pia)-55(j\\241ce)-1(,)-328(o)-28(d)1(p)-27(o)27(wiad)1(a\\252y)]TJ 0 -13.549 Td[(im)-291(p)1(rze)-1(ci\\241)-28(g\\252ym,)-291(senn)28(ym,)-290(c)-1(or)1(az)-292(cic)28(hsz)-1(ym)-291(h)29(uk)56(aniem...)-290(a\\273)-291(dzie)-1(ci,)-290(bar)1(as)-1(zkuj)1(\\241c)-1(e)-291(p)-27(o)]TJ 0 -13.55 Td[(dr)1(ogac)27(h)1(,)-334(j)1(\\246)-1(\\252y)-333(si\\246)-334(z)-334(n)1(imi)-333(prze)-1(maga\\242)-334(i)-333(kr)1(z)-1(y)1(c)-1(ze)-1(\\242)-334(p)1(rze)-1(k)28(omarza)-56(j)1(\\241c)-1(:)]TJ 27.879 -13.549 Td[(Re)-1(h)1(!)-313(reh!)-312(reh!)-313(Bo)-28(cian)-313(zdec)27(h)1(\\252!)-313(Ja)-313(rad)1(a,)-313(t)28(y)-313(r)1(ada,)-313(ob)1(ie)-314(m)28(y)-313(r)1(ade!)-313(Rade!)-313(rad)1(e)-1(!)]TJ -27.879 -13.549 Td[(rad)1(e)-1(!)1(...)-333(.)]TJ\nET\nendstream\nendobj\n1594 0 obj <<\n/Type /Page\n/Contents 1595 0 R\n/Resources 1593 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1580 0 R\n>> endobj\n1593 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1598 0 obj <<\n/Length 7482      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(33)]TJ/F17 10.909 Tf 0 -73.325 Td[(Dzie)-1(\\253)-364(w)-1(sta)28(w)27(a\\252)-365(c)-1(u)1(dn)29(y)83(,)-365(cie)-1(p)1(\\252y)83(,)-365(a)-365(j\\246dr)1(n)28(y)83(,)-365(n)1(ib)28(y)-365(ten)-365(c)27(h)1(\\252)-1(op)-364(dobr)1(z)-1(e)-365(w)-1(y)1(s)-1(p)1(an)28(y)83(,)-365(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(ledwie)-408(p)1(rz)-1(ec)27(k)1(n\\241)28(ws)-1(zy)-408(n)1(a)-408(r)1(\\363)27(wn)1(e)-408(nogi)-407(s)-1(i\\246)-408(zryw)28(a)-408(i)-407(sz)-1(ep)-28(c\\241c)-408(pacierze)-1(,)-407(tr\\241c)-408(o)-28(czy)83(,)-407(a)]TJ 0 -13.549 Td[(\\271dzie)-1(b)1(k)28(o)-334(p)-27(ozie)-1(w)28(a)-56(j)1(\\241c)-334(za)-334(r)1(ob)-28(ot\\241)-333(si\\246)-334(rozgl\\241da.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-430(ws)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o)-429(p)-28(ogo)-28(d)1(ni)1(e)-1(;)-429(c)-1(ze)-1(r)1(w)27(one)-430(i)-429(ogromne,)-430(z)-430(w)27(oln)1(a)-430(wtacz)-1(a\\252o)-430(si\\246)]TJ -27.879 -13.55 Td[(na)-383(wysokie)-384(n)1(ieb)-28(o,)-383(j)1(ak)28(ob)28(y)-383(na)-383(to)-383(p)-27(ole)-384(n)1(ie)-1(ob)-55(j)1(\\246)-1(te,)-383(k)56(a)-56(j)-383(w)-383(s)-1(i)1(n)28(yc)27(h)-383(op)1(rz\\246)-1(d)1(ac)27(h)-383(mgie\\252,)]TJ 0 -13.549 Td[(le\\273)-1(a\\252y)-333(n)1(ie)-1(p)1(rze)-1(li)1(c)-1(zone)-334(stada)-333(b)1(ia\\252yc)27(h)-333(c)28(hm)27(u)1(r.)]TJ 27.879 -13.549 Td[(I)-287(wiater)-287(si\\246)-287(ju)1(\\273)-287(w)27(a\\252\\246s)-1(a\\252)-287(p)-27(o)-287(\\261w)-1(i)1(e)-1(cie)-1(,)-286(kieb)28(y)-286(te)-1(n)-286(gos)-1(p)-27(o)-28(d)1(arz)-287(bu)1(dz\\241c)-1(y)-286(w)-1(szys)-1(tk)28(o)]TJ -27.879 -13.549 Td[(na)-413(\\261)-1(witan)1(iu;)-413(pr)1(z)-1(egarni)1(a\\252)-414(z)-1(b)-27(o\\273a)-414(p)-28(omd)1(la\\252e)-1(,)-413(dm)27(u)1(c)27(h)1(a\\252)-414(w)27(e)-414(mg\\252y)83(,)-413(\\273)-1(e)-414(rozpi)1(e)-1(rzc)27(h)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-403(n)1(a)-403(wsz)-1(e)-402(s)-1(tr)1(on)28(y)83(,)-402(t)1(arga\\252)-402(ob)28(wis)-1(\\252ymi)-402(ga\\252\\246z)-1(iami,)-402(k)56(a)-56(j)1(\\261)-403(n)1(a)-403(r)1(oz)-1(sta)-56(j)1(ac)27(h)-402(h)29(ukn)1(\\241\\252,)-402(to)]TJ 0 -13.549 Td[(c)27(h)29(y\\252kiem)-277(pr)1(z)-1(ebr)1(a\\252)-277(si\\246)-277(ku)-276(u)1(\\261)-1(p)1(ion)28(ym)-277(j)1(e)-1(szc)-1(ze)-277(s)-1(ad)1(om)-277(i)-276(rymn\\241\\252)-276(w)-277(g\\241sz)-1(cz)-1(e,)-276(\\273)-1(e)-277(z)-276(w)-1(i)1(\\261)-1(n)1(i)]TJ 0 -13.55 Td[(p)-27(os)-1(yp)1(a\\252)-268(si\\246)-268(ostatn)1(i)-268(k)1(w)-1(i)1(at)-268(i)-267(k)1(ie)-1(j)-267(\\261ni)1(e)-1(g)-267(trz\\241s)-1(\\252)-267(s)-1(i)1(\\246)-268(na)-267(zie)-1(mi\\246;)-267(kiej)-267(\\252z)-1(y)-267(na)-267(w)28(o)-28(dy)-267(sta)28(w)-1(u)]TJ 0 -13.549 Td[(pad)1(a\\252.)]TJ 27.879 -13.549 Td[(Ziem)-1(i)1(a)-362(si\\246)-362(bu)1(dzi\\252a,)-362(p)1(taki)-361(z)-1(a\\261pi)1(e)-1(w)28(a\\252)-1(y)-361(w)-362(gn)1(iazdac)27(h)1(,)-362(d)1(rze)-1(w)28(a)-362(te\\273)-362(j\\246\\252y)-362(sze)-1(m-)]TJ -27.879 -13.549 Td[(ra\\242)-380(ni)1(b)28(y)-380(t)28(ym)-380(pacierze)-1(m)-380(pi)1(e)-1(r)1(w)-1(sz)-1(y)1(m)-1(;)-379(kwiat)28(y)-380(si\\246)-381(ot)28(wiera\\252y)-380(p)-27(o)-28(d)1(nosz)-1(\\241c)-380(do)-380(s\\252o\\253ca)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kie,)-333(z)-1(wilgo)-27(c)-1(on)1(e)-334(i)-333(s)-1(enn)1(e)-334(rz\\246)-1(sy)84(,)-334(a)-333(l\\261ni)1(\\241c)-1(e)-334(r)1(os)-1(y)-333(sypa\\252y)-333(si\\246)-334(grad)1(e)-1(m)-333(p)-28(erli)1(s)-1(t)28(ym.)]TJ 27.879 -13.55 Td[(D\\252ugi)-306(a)-306(l)1(ub)28(y)-306(d)1(ygot)-306(z)-1(atr)1(z)-1(\\241s\\252)-306(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(,)-305(c)-1(o)-306(z)-1(n)1(o)28(w)-1(u)-305(s)-1(i\\246)-306(bu)1(dzi\\252o)-306(do)-306(\\273)-1(y)1(c)-1(ia)-306(za\\261)]TJ -27.879 -13.549 Td[(gdzies)-1(i)1(k)-241(z)-242(zie)-1(mie,)-241(z)-1(e)-241(dn)1(a)-241(w)-1(sze)-1(lk)1(ie)-1(go)-241(st)28(w)27(orzenia)-241(b)1(uc)27(h)1(n\\241\\252)-241(ni)1(e)-1(m)28(y)-241(krzyk)-241(i)-241(j)1(ak)-241(g\\252uc)27(h)1(a)]TJ 0 -13.549 Td[(b\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-1(a)-258(p)1(rze)-1(lec)-1(i)1(a\\252)-258(nad)-258(\\261wiatem)-1(,)-257(jak)-258(k)1(ie)-1(d)1(y)-258(cz)-1(\\252o)28(wie)-1(cz)-1(\\241)-258(d)1(usz)-1(\\246)-258(w)-258(t)28(w)27(ar)1(dym)-258(\\261piku)]TJ 0 -13.549 Td[(zm)-1(or)1(a)-240(dusi,)-240(\\273e)-240(targa)-240(si\\246)-1(,)-239(s)-1(tr)1(ac)27(ha,)-239(z)-1(amiera,)-240(a\\273e)-241(r)1(aptem)-241(o)-27(c)-1(zy)-240(oze)-1(wrze)-241(n)1(a)-240(s)-1(\\252on)1(e)-1(cz)-1(n)1(\\241)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252o\\261)-1(\\242)-362(i)-361(krzyki)1(e)-1(m)-362(sz)-1(cz)-1(\\246snego)-362(oni)1(e)-1(mienia)-361(dzie\\253)-362(wit)1(a)-362(i)-361(to,)-361(\\273)-1(e)-362(mi\\246dzy)-362(\\273ywymi)]TJ 0 -13.55 Td[(jest)-351(j)1(e)-1(szc)-1(ze)-1(,)-350(n)1(iep)-28(omna,)-350(j)1(ak)28(o)-350(to)-350(no)28(wy)-350(dzie)-1(\\253)-349(tru)1(d\\363)28(w)-351(a)-350(b)-27(ole\\261)-1(ci,)-350(j)1(ak)-350(w)27(cz)-1(or)1(a)-56(j)-350(b)29(y\\252o;)]TJ 0 -13.549 Td[(jak)-333(z)-333(jut)1(re)-1(m)-333(przyj)1(dzie)-1(,)-333(j)1(ak)-333(z)-1(a)28(wdy)-333(b)-27(\\246)-1(d)1(z)-1(ie...)]TJ 27.879 -13.549 Td[(Wi\\246c)-257(i)-256(Lip)-27(ce)-257(j\\246\\252y)-257(si\\246)-257(b)1(ud)1(z)-1(i)1(\\242)-257(i)-256(ra\\271no)-256(z)-1(r)1(yw)27(a\\242)-256(na)-256(nogi;)-256(n)1(ie)-1(j)1(e)-1(d)1(na)-256(g\\252o)28(w)27(a)-256(rozc)-1(zo-)]TJ -27.879 -13.549 Td[(c)27(h)1(ran)1(a)-291(wyziera\\252a,)-290(w)27(o)-28(d)1(z)-1(\\241c)-290(z)-1(aspan)28(y)1(m)-1(i)-290(o)-28(cz)-1(y)1(m)-1(a)-290(p)-27(o)-291(\\261wie)-1(cie;)-290(k)55(a)-55(j\\261)-290(ju\\273)-290(s)-1(i)1(\\246)-291(m)27(yl)1(i)-290(prze)-1(d)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(am)-1(i,)-397(to)-398(p)-28(o)-397(w)27(o)-28(d)1(\\246)-399(d)1(o)-398(s)-1(ta)28(wu)-398(wyp)1(ada\\252y)-398(r)1(oz)-1(d)1(z)-1(i)1(ane)-398(jes)-1(zc)-1(ze)-1(k)-397(k)28(obiet)28(y)83(,)-397(ktos)-1(i)1(k)]TJ 0 -13.55 Td[(dr)1(w)27(a)-304(r\\241b)1(a\\252;)-304(w)27(ozy)-304(te\\273)-305(wytacz)-1(an)1(o)-305(n)1(a)-304(drog\\246,)-304(dy)1(m)27(y)-304(ni)1(e)-1(k)56(a)-56(j)1(\\261)-305(wykwit)1(a\\252)-1(y)-304(z)-304(k)28(om)-1(i)1(n\\363)28(w,)]TJ 0 -13.549 Td[(a)-333(tu)-333(i)-333(o)28(w)-1(d)1(z)-1(ie)-333(roznosi\\252y)-333(s)-1(i\\246)-333(krzyki)-333(na)-333(leni\\241cyc)28(h)-333(s)-1(i\\246)-333(w)-1(sta)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(Rano)-236(b)28(y\\252o)-236(jes)-1(zc)-1(ze)-1(,)-236(s\\252o\\253ce)-237(le)-1(d)1(wie)-237(c)-1(o)-236(na)-236(par)1(\\246)-237(c)27(h\\252op)1(a)-237(wyn)1(ies)-1(\\252o)-237(si\\246)-237(n)1(ad)-236(w)-1(sc)27(h)1(o-)]TJ -27.879 -13.549 Td[(dem)-351(i)-350(z)-351(b)-27(oku)-350(p)1(rze)-1(z)-351(mro)-28(czna)28(w)27(e)-351(sady)-350(b)-27(o)-28(d)1(\\252o)-351(cz)-1(erw)28(on)28(ymi)-350(p\\252omie)-1(n)1(iami,)-350(a)-351(j)1(u\\273)-351(r)1(u-)]TJ 0 -13.549 Td[(c)27(h)1(ano)-333(s)-1(i)1(\\246)-334(ws)-1(z\\246)-1(d)1(y)-333(galan)28(to.)]TJ 27.879 -13.55 Td[(Wiat)1(e)-1(r)-334(si\\246)-335(k)56(a)-56(j)1(\\261)-1(ci\\242)-334(z)-1(ap)-27(o)-28(dzia\\252,)-334(\\273e)-335(w)-335(l)1(ub)-27(e)-1(j)-334(cic)28(ho\\261c)-1(i)-334(ws)-1(zystk)28(o)-334(s)-1(i\\246)-334(s)-1(yci\\252o)-334(rze)-1(\\271-)]TJ -27.879 -13.549 Td[(wym,)-242(pac)27(h)1(n\\241cym)-243(p)-27(oran)1(kiem)-1(,)-242(s\\252o\\253ce)-243(gra\\252o)-242(w)27(e)-243(w)28(o)-28(d)1(ac)27(h)-242(i)-242(rosy)-242(s)-1(k)56(ap)28(y)1(w)27(a\\252y)-242(z)-243(d)1(ac)27(h\\363)28(w)]TJ 0 -13.549 Td[(sp)-28(erlon)29(ym)-1(i)-418(sz)-1(n)29(urk)56(ami,)-418(jask)28(\\363\\252ki)-418(\\261)-1(miga\\252y)-418(w)-419(cz)-1(yst)28(ym)-419(p)-27(o)28(wie)-1(tr)1(z)-1(u)1(,)-418(b)-28(o)-28(\\242ki)-418(lec)-1(i)1(a\\252)-1(y)-418(z)]TJ 358.232 -29.888 Td[(499)]TJ\nET\nendstream\nendobj\n1597 0 obj <<\n/Type /Page\n/Contents 1598 0 R\n/Resources 1596 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1596 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1602 0 obj <<\n/Length 9812      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(500)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(gni)1(az)-1(d)-307(na)-307(\\273)-1(er,)-307(k)28(ok)28(ot)27(y)-307(pi)1(a\\252)-1(y)-307(p)-27(o)-308(p\\252otac)28(h)-308(wytr)1(z)-1(epu)1(j\\241c)-308(rad)1(o\\261)-1(n)1(ie)-308(s)-1(kr)1(z)-1(y)1(d\\252ami,)-308(a)-307(g\\246)-1(si)]TJ 0 -13.549 Td[(z)-298(g\\246)-1(gotli)1(w)-1(y)1(m)-299(kr)1(z)-1(y)1(kiem)-299(wyw)28(o)-28(dzi\\252y)-298(m\\252o)-28(de)-298(na)-298(sta)28(w)-299(scz)-1(erwienion)28(y)84(.)-298(Byd\\252o)-298(r)1(yc)-1(za\\252o)]TJ 0 -13.549 Td[(p)-27(o)-336(ob)-27(orac)28(h,)-335(za\\261)-336(ws)-1(z\\246)-1(d)1(y)-336(p)1(rze)-1(d)-335(p)1(rogami)-335(a)-336(w)-335(op\\252otk)56(ac)27(h)-335(d)1(oili)-335(p)-27(o\\261)-1(p)1(ies)-1(znie)-335(kro)28(wy)-335(i)]TJ 0 -13.549 Td[(z)-286(k)55(a\\273dego)-286(ob)-28(ej\\261cia)-286(wyganial)1(i)-286(in)28(w)28(e)-1(n)29(tarz)-286(na)-286(dr)1(ogi,)-286(\\273e)-287(sz)-1(ed\\252)-286(k)28(olebi)1(\\241c)-1(o)-286(ry)1(c)-1(z\\241c)-287(p)1(rze)-1(-)]TJ 0 -13.549 Td[(ci\\241)-28(gle,)-360(a)-360(co)-28(c)28(ha)-56(j)1(\\241c)-360(s)-1(i\\246)-360(o)-359(p\\252ot)28(y)-360(i)-359(drzew)27(a,)-359(z)-1(a\\261)-360(o)28(w)27(ce)-360(z)-361(zadar)1(t)28(ym)-1(i)-359(\\252bami)-360(p)-27(ob)-27(e)-1(ku)1(j\\241c)]TJ 0 -13.55 Td[(cis)-1(n)1(\\246)-1(\\252y)-390(s)-1(i)1(\\246)-391(\\261)-1(r)1(o)-28(dki)1(e)-1(m)-391(d)1(rogi)-390(w)-391(tuman)1(ie)-391(kur)1(z)-1(u)1(.)-391(S)1(p)-28(\\246dzali)-390(ws)-1(zystk)28(o)-391(na)-390(pl)1(ac)-391(prze)-1(d)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(io\\252em)-1(,)-302(k)56(a)-56(j)-302(p)1(aru)-302(starsz)-1(y)1(c)27(h)-302(c)27(h)1(\\252opak)28(\\363)28(w)-303(n)1(a)-303(k)28(on)1(iac)27(h)1(,)-303(t)1(rz)-1(ask)56(a)-56(j)1(\\241c)-303(batami)-302(a)-303(k)1(ln\\241c)]TJ 0 -13.549 Td[(siarcz)-1(y\\261cie)-1(,)-333(ogan)1(ia\\252o)-334(r)1(oz)-1(\\252a\\273\\241c)-1(e)-334(si\\246)-334(stad)1(o)-334(i)-333(wrze)-1(sz)-1(cz)-1(a\\252o)-333(na)-333(op)-27(\\363\\271)-1(n)1(ion)28(yc)28(h.)]TJ 27.879 -13.549 Td[(A)-263(kiej)-264(r)1(usz)-1(yl)1(i,)-263(s)-1(t\\252acz)-1(a)-55(j\\241c)-264(si\\246)-264(na)-263(top)-28(ol)1(o)27(w)28(e)-1(j)1(,)-263(b)-28(o)-263(ja\\273e)-264(p)-28(o)-28(d)-263(l)1(as)-1(em)-264(le\\273)-1(a\\252y)-263(w)-1(sp)-27(\\363l-)]TJ -27.879 -13.549 Td[(ne)-294(p)1(as)-1(t)28(wisk)55(a,)-293(przykr)1(y\\252a)-294(ic)28(h)-294(ku)1(rza)27(w)28(a)-294(or)1(os)-1(ia\\252a)-294(i)-293(c)-1(ze)-1(r)1(w)27(on)1(a)27(w)28(o)-294(mieni\\241ca)-294(s)-1(i)1(\\246)-295(w)-294(s\\252o\\253-)]TJ 0 -13.549 Td[(cu,)-471(\\273e)-471(jeno)-470(b)-28(elki)-470(o)27(wiec)-471(i)-471(p)1(ie)-1(sk)28(o)28(w)27(e)-471(sz)-1(cz)-1(ek)56(ania)-470(rw)27(a\\252y)-470(s)-1(i)1(\\246)-472(z)-471(ci\\246)-1(\\273kic)28(h)-471(t)1(uman\\363)28(w,)]TJ 0 -13.55 Td[(znacz)-1(\\241c)-334(d)1(rog\\246,)-333(k)55(a)-55(j)-333(s)-1(i)1(\\246)-334(p)-28(o)-27(dzie)-1(l)1(i.)]TJ 27.879 -13.549 Td[(Za\\261)-235(p)-27(okr\\363tce)-235(z)-1(a)-234(ni)1(m)-1(i)-234(i)-234(g\\246)-1(siark)1(i)-235(wyp)-27(\\246)-1(d)1(z)-1(a\\252y)-234(bi)1(a\\252e)-1(,)-234(rozg\\246)-1(gan)1(e)-235(s)-1(tad)1(a,)-234(to)-235(ktosik)]TJ -27.879 -13.549 Td[(cie)-1(l)1(n\\241)-463(kro)28(w)28(\\246)-464(wi\\363)-28(d\\252)-463(n)1(a)-464(miedz\\246)-464(alb)-27(o)-464(k)28(on)1(ia)-463(s)-1(p)-27(\\246tanego)-464(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-464(za)-463(grz)-1(y)1(w)27(\\246)-464(n)1(a)]TJ 0 -13.549 Td[(ugor)1(y)83(.)]TJ 27.879 -13.549 Td[(Ale)-363(i)-362(p)-28(otem)-363(niewiele)-363(s)-1(i\\246)-363(p)1(rz)-1(y)1(c)-1(iszy\\252o,)-363(\\273e)-364(t)1(o)-363(wie)-1(\\261)-363(j)1(\\246)-1(\\252a)-363(si\\246)-363(s)-1(zyk)28(o)28(w)28(a\\242)-364(n)1(a)-363(jar)1(-)]TJ -27.879 -13.55 Td[(marek.)-333(B)-1(y)1(\\252)-1(o)-333(to)-333(jak)28(o\\261)-334(w)-333(t)28(ydzie\\253)-333(p)-27(o)-334(p)-27(o)28(w)-1(r)1(o)-28(cie)-334(c)27(h)1(\\252op)-28(\\363)28(w)-334(z)-333(krem)-1(i)1(na\\252u.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(tk)28(o)-264(j)1(u\\273)-264(w)-264(Lip)-27(c)-1(ac)28(h)-264(wraca\\252o)-264(z)-264(w)27(ol)1(na)-264(d)1(o)-264(da)28(wnego,)-264(j)1(ak)28(ob)28(y)-264(p)-27(o)-264(tej)-264(b)1(ur)1(z)-1(y)]TJ -27.879 -13.549 Td[(srogiej,)-307(c)-1(o)-307(s)-1(zk)28(\\363)-28(d)-307(narob)1(i\\252a)-308(n)1(ie)-1(ma\\252yc)28(h,)-308(\\273e)-308(nar)1(\\363)-28(d,)-307(o)-28(c)27(h)1(\\252on\\241)28(ws)-1(zy)-308(z)-308(tr)1(w)27(ogi,)-307(wyrze)-1(k)56(a-)]TJ 0 -13.549 Td[(j\\241c)-333(a)-334(\\273al\\241c)-334(si\\246)-334(n)1(a)-334(d)1(ol\\246,)-334(i)1(m)-1(a\\252)-333(s)-1(i)1(\\246)-334(p)-27(o)-334(\\271dziebku)-333(p)1(racy)-334(w)28(etuj)1(\\241c)-1(ej.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-413(c)-1(o)-413(ni)1(e)-414(s)-1(z\\252o)-414(j)1(e)-1(szc)-1(ze)-1(,)-413(j)1(ak)-414(b)29(y\\252o)-414(i)1(\\261)-1(\\242)-414(p)-27(o)28(winn)1(o,)-413(c)27(ho)-27(c)-1(ia\\273)-413(c)27(h\\252op)28(y)-413(j)1(u\\273)-414(u)1(j\\246-)]TJ -27.879 -13.55 Td[(\\252y)-430(rz\\241dy)-430(w)-430(s)-1(w)28(o)-56(j)1(e)-431(kw)28(ard)1(e)-431(r\\246c)-1(e,)-430(jes)-1(zc)-1(zec)27(h)-430(si\\246)-431(b)-27(o)28(w)-1(i)1(e)-1(m)-430(le)-1(n)1(ili)-430(n)1(ie)-1(co\\261)-431(p)-27(oran)1(i\\242)-1(,)-430(d)1(o)]TJ 0 -13.549 Td[(p)-27(\\363\\271)-1(n)1(a)-362(n)1(ie)-1(r)1(az)-362(w)-1(y)1(le)-1(gu)1(j\\241c)-362(si\\246)-362(p)-27(o)-28(d)-361(pierzynami;)-361(jesz)-1(cz)-1(ec)27(h)-361(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-361(cz)-1(\\246s)-1(to)-361(g\\246)-1(sto)-362(d)1(o)]TJ 0 -13.549 Td[(k)56(arcz)-1(m)28(y)-291(z)-1(agl)1(\\241da\\252,)-291(n)1(ib)28(y)-291(t)1(o)-291(no)28(win)-291(zas)-1(i)1(\\246)-1(ga)-55(j\\241c)-291(w)-292(spr)1(a)28(w)-1(i)1(e)-1(;)-291(j)1(e)-1(sz)-1(cze)-292(ten)-291(i)-290(\\363)27(w)-291(p)-27(\\363\\252)-291(dn)1(ia)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(a\\252\\246s)-1(a\\252)-326(p)-27(o)-327(ws)-1(i)-326(i)-326(pr)1(z)-1(egada\\252)-326(z)-327(ku)1(m)-1(ami,)-326(a)-326(z)-1(a\\261)-327(d)1(rugi)1(e)-327(s)-1(p)29(yc)27(h)1(a)-1(l)1(i)-326(jeno)-326(c)-1(o)-326(pil)1(niej-)]TJ 0 -13.549 Td[(sz)-1(e)-344(r)1(ob)-28(ot)28(y)84(,)-343(b)-27(o)-28(\\242)-344(n)1(ie)-1(\\252acno)-343(b)28(y)1(\\252)-1(o)-343(p)-27(o)-343(t)28(ylim)-343(pr\\363\\273no)28(w)28(aniu)-342(bra\\242)-343(s)-1(i)1(\\246)-344(na)-343(ostro)-343({)-343(ale)-344(j)1(u\\273)]TJ 0 -13.55 Td[(co)-397(dn)1(ia)-396(prze)-1(mieni)1(a)-1(\\252o)-396(s)-1(i)1(\\246)-397(na)-397(l)1(e)-1(p)1(s)-1(ze)-1(,)-396(co)-397(dn)1(ia)-396(pu\\261cie)-1(j)-396(rob)1(i\\252o)-397(si\\246)-397(w)-397(k)56(ar)1(c)-1(zm)-1(i)1(e)-397(i)-397(p)-27(o)]TJ 0 -13.549 Td[(dr)1(ogac)27(h)-377(i)-377(c)-1(o)-377(dn)1(ia)-378(g\\246\\261)-1(ciej)-377(m)27(u)1(s)-378(c)27(h)28(yt)1(a\\252)-378(z)-1(a)-377(\\252b)28(y)-377(i)-378(p)1(rzygin)1(a\\252)-378(do)-377(z)-1(i)1(e)-1(mie,)-378(d)1(o)-378(ci\\246\\273)-1(ki)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(zno)-56(j)1(nej)-333(pr)1(ac)-1(y)-333(zaprz\\246ga)-56(j\\241c.)]TJ 27.879 -13.549 Td[(\\233e)-395(z)-1(a\\261)-395(d)1(z)-1(i)1(s)-1(ia)-55(j)-394(akur)1(atnie)-395(wyp)1(ada\\252)-395(j)1(armarek)-395(w)-394(T)27(ymo)28(w)-1(i)1(e)-1(,)-394(to)-395(ma\\252o)-395(k)1(to)-395(do)]TJ -27.879 -13.549 Td[(rob)-27(ot)28(y)-333(wyc)27(h)1(o)-28(dzi\\252,)-333(s)-1(zyku)1(j\\241c)-334(si\\246)-334(n)1(a)-334(n)1(iego.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(edn)1(o)28(w)27(ek)-341(w)28(c)-1(ze)-1(\\261ni)1(e)-1(j)-340(lato\\261)-341(za)27(wita\\252)-340(i)-341(tak)-340(c)-1(i\\246\\273)-1(k)1(i,)-341(j)1(a\\273)-1(e)-341(skwierc)-1(za\\252o)-341(p)-27(o)-341(c)27(h)1(a-)]TJ -27.879 -13.549 Td[(\\252up)1(ac)27(h)1(,)-323(wi\\246)-1(c)-323(co)-323(jeno)-323(kt)1(o)-323(m)-1(i)1(a\\252)-323(jes)-1(zc)-1(ze)-324(d)1(o)-323(pr)1(z)-1(edan)1(ia,)-323(\\261piesz)-1(n)1(ie)-324(wyp)1(ro)28(w)28(adza\\252)-1(,)-322(z)-1(a\\261)]TJ 0 -13.549 Td[(dr)1(ugie)-319(s)-1(z\\252y)-319(la)-319(zgw)27(arzenia)-319(si\\246)-320(ze)-320(som)-1(siad)1(y)83(,)-319(l)1(a)-320(ob)1(ac)-1(ze)-1(n)1(ia)-319(\\261w)-1(i)1(ata)-320(i)-318(w)-1(y)1(picia)-319(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(tego)-334(k)1(ie)-1(l)1(is)-1(zk)56(a.)]TJ 27.879 -13.549 Td[(Ka\\273den)-292(mia\\252)-293(sw)27(\\363)-55(j)-292(fr)1(as)-1(u)1(nek,)-292(a)-293(k)56(a)-55(j\\273e)-293(s)-1(i)1(\\246)-293(to)-292(nar\\363)-27(d)-292(p)-28(o)-27(c)-1(iesz)-1(y)84(,)-293(wy\\273ali,)-292(skrzepi,)]TJ -27.879 -13.549 Td[(a)-333(no)28(win)-333(do)28(wie,)-333(je\\261)-1(li)-333(n)1(ie)-334(n)1(a)-334(j)1(armarku)-333(l)1(e)-1(b)-27(o)-334(n)1(a)-333(o)-28(dp)1(u\\261c)-1(ie?...)]TJ 27.879 -13.55 Td[(Wi\\246c)-303(s)-1(k)28(oro)-303(p)-27(o)28(wyp)-27(\\246)-1(d)1(z)-1(an)1(o)-303(in)28(w)28(e)-1(n)28(tar)1(z)-1(e)-303(na)-303(p)1(as)-1(z\\246)-1(,)-302(z)-1(acz)-1(\\246li)-303(si\\246)-303(z)-1(b)1(ie)-1(r)1(a\\242)-1(,)-302(ryc)27(h)29(to-)]TJ -27.879 -13.549 Td[(w)28(a\\242)-334(w)27(ozy)83(,)-333(a)-333(wyc)27(h)1(o)-28(dzi\\242,)-333(kto)-333(piec)27(h)28(t)28(y)-333(i\\261\\242)-334(m)28(usia\\252.)]TJ 27.879 -13.549 Td[(Bie)-1(d)1(ota)-397(rusz)-1(y)1(\\252a)-398(n)1(a)-56(jp)1(ierw)28(e)-1(j)1(,)-398(b)-27(o)-397(Filip)1(k)56(a)-398(z)-398(p)1(\\252ac)-1(ze)-1(m)-397(p)-28(ogn)1(a\\252a)-398(sz)-1(e\\261)-1(\\242)-398(stary)1(c)27(h)]TJ -27.879 -13.549 Td[(g\\246s)-1(i,)-293(o)-28(derw)28(an)28(yc)27(h)-293(o)-28(d)-293(m)-1(\\252o)-27(dzi)-294(ledwie)-294(c)-1(o)-294(p)-27(oros\\252e)-1(j)1(,)-294(\\273e)-295(to)-293(c)27(h\\252op)-293(z)-1(ac)28(horza\\252)-294(p)-27(o)-294(p)-28(o)28(wro-)]TJ 0 -13.549 Td[(cie)-334(i)-333(do)-333(garn)1(k)56(a)-334(n)1(ie)-334(b)28(y\\252o)-333(co)-334(wsta)27(wi\\242.)]TJ 27.879 -13.55 Td[(Kt\\363r)1(y\\261)-427(te\\273)-427(z)-426(k)28(omorni)1(k)28(\\363)27(w)-426(ci\\241)-28(gn\\241\\252)-426(za)-426(rogi)-426(j)1(a\\252o)27(wic\\246)-1(,)-425(c)-1(o)-426(si\\246)-427(b)29(y\\252a)-426(te)-1(r)1(az)-427(na)]TJ -27.879 -13.549 Td[(zw)-1(i)1(e)-1(sn\\246)-479(p)-27(ogna\\252a.)1(..)-478(\\233e)-479(za\\261)-479(bi)1(e)-1(d)1(a)-479(ma)-478(d\\252ugi)1(e)-479(nogi)-478(a)-478(ostre)-479(p)1(az)-1(u)1(ry)84(,)-478(to)-478(Grze)-1(l)1(a)-479(z)]TJ\nET\nendstream\nendobj\n1601 0 obj <<\n/Type /Page\n/Contents 1602 0 R\n/Resources 1600 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1600 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1605 0 obj <<\n/Length 9065      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(501)]TJ -358.232 -35.866 Td[(kr)1(z)-1(yw)28(\\241)-395(g\\246b\\241,)-394(c)28(ho)-28(\\242)-394(na)-394(o\\261)-1(miu)-394(morgac)27(h)-393(s)-1(iedzia\\252,)-394(a)-395(d)1(o)-56(j)1(n\\241)-394(kro)28(w)28(\\246)-395(p)-27(opro)28(w)28(adzi\\252)-395(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)27(wr)1(\\363\\261)-1(le,)-333(s)-1(oms)-1(i)1(ad)-333(z)-1(a\\261)-333(jego,)-334(J)1(\\363z)-1(ek)-333(W)83(ac)27(h)1(nik)1(,)-333(m)-1(acior\\246)-333(z)-334(pr)1(os)-1(i\\246tami)-333(p)-28(op)-27(\\246)-1(d)1(z)-1(a\\252.)]TJ 27.879 -13.549 Td[(Rato)28(w)27(a\\252y)-252(s)-1(i)1(\\246)-254(c)28(h)28(ud)1(z)-1(i)1(aki,)-252(jak)-252(jeno)-253(mog\\252y)83(,)-252(b)-27(o)-253(ju)1(\\273)-253(niejedn)1(e)-1(go)-252(tak)-253(p)1(rzypiera\\252o,)]TJ -27.879 -13.549 Td[(\\273e)-294(ostatni)1(\\241)-293(k)28(oni)1(n\\246)-293(w)-1(y)1(pro)28(w)28(adzi\\252,)-293(j)1(ak)-293(to)-293(G)1(ulb)1(as)-294(m)28(usia\\252,)-293(spr)1(o)-28(ce)-1(so)27(w)28(a\\252a)-293(go)-293(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(Balc)-1(erk)28(o)28(w)28(a)-400(za)-400(p)1(i\\246)-1(t)1(na\\261c)-1(ie)-400(r)1(ub)1(li,)-399(kt\\363re)-399(b)28(y\\252)-400(k)1(ie)-1(j)1(\\261)-400(p)-27(o\\273)-1(ycz)-1(y)1(\\252)-400(n)1(a)-400(kr)1(o)27(w)28(\\246,)-400(i)-399(teraz)-400(go-)]TJ 0 -13.55 Td[(to)28(wym)-407(wyroki)1(e)-1(m)-407(grozi\\252a,)-407(\\273e)-407(w\\261)-1(r)1(\\363)-28(d)-407(p)1(\\252ac)-1(z\\363)28(w)-407(c)-1(a\\252ej)-407(r)1(o)-28(dzin)28(y)-406(a)-407(wyrzek)55(a\\253)-406(i)-406(gr\\363\\271)-1(b)]TJ 0 -13.549 Td[(siad\\252)-333(nieb)-27(orak)-333(na)-333(k)56(as)-1(ztank)56(a)-333(i)-333(przeda)28(w)27(a\\242)-334(go)-333(p)-27(o)-56(j)1(e)-1(c)28(ha\\252.)]TJ 27.879 -13.549 Td[(W)84(oz)-1(y)-324(s)-1(i)1(\\246)-325(z)-325(w)28(olna)-324(wytac)-1(za\\252y)-324(jeden)-324(z)-1(a)-324(dr)1(ugim,)-324(b)-28(o)-27(\\242)-325(i)-324(gos)-1(p)-27(o)-28(dar)1(z)-1(e)-325(wyw)28(ozili,)]TJ -27.879 -13.549 Td[(co)-290(kt\\363ren)-290(mia\\252,)-289(gdy\\273)-290(w)27(\\363)-55(jt)-289(o)-290(p)-28(o)-28(d)1(atki)-289(w)27(o\\252a\\252)-290(i)-290(k)56(arami)-290(straszy\\252,)-290(za\\261)-291(gosp)-28(o)-27(dyn)1(ie)-290(te)-1(\\273)]TJ 0 -13.549 Td[(si\\246)-327(w)-1(y)1(biera\\252y)-326(z)-1(e)-327(sw)27(oim)-327(d)1(obr)1(e)-1(m,)-327(\\273e)-327(c)-1(z\\246)-1(sto)-327(g\\246s)-1(t)1(o)-327(k)28(ok)28(os)-1(zki)-326(gdak)56(a\\252y)-327(sp)-27(o)-28(d)-326(z)-1(ap)1(as)-1(ek)]TJ 0 -13.549 Td[(lu)1(b)-262(t\\246)-1(gi)-262(g\\246s)-1(i)1(or)-262(z)-1(asycz)-1(a\\252)-262(z)-263(w)27(as\\241)-28(ga,)-262(a)-262(dr)1(ugie)-263(p)1(iec)27(h)28(t)28(y)-262(id)1(\\241c)-1(e)-263(j)1(a)-56(j)1(k)55(a)-262(n)1(ie)-1(s\\252y)-262(w)-263(c)28(h)28(ustac)27(h)1(;)]TJ 0 -13.55 Td[(to)-293(m)-1(as\\252o)-294(k)1(ryj)1(om)-1(o)-293(pr)1(z)-1(ed)-293(dzie\\242)-1(mi)-293(z)-1(b)1(ierane,)-293(a)-294(p)-27(on)1(ie)-1(k)1(t\\363re)-294(to)-293(i)-293(\\261)-1(wi\\241tecz)-1(n)1(e)-294(w)27(e\\252niak)1(i)]TJ 0 -13.549 Td[(lu)1(b)-333(z)-1(b)-27(\\246dne)-333(p\\252\\363tna)-333(d)1(\\271)-1(wiga\\252y)-333(na)-333(pl)1(e)-1(cac)27(h)1(.)]TJ 27.879 -13.549 Td[(Bie)-1(d)1(a)-333(ano)-333(p)-28(op)-27(\\246)-1(d)1(z)-1(a\\252a,)-333(a)-333(do)-333(\\273niw,)-333(do)-333(no)28(w)28(e)-1(go,)-333(b)28(y)1(\\252)-1(o)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(dalek)28(o.)]TJ 0 -13.549 Td[(T)83(ak)-228(s)-1(i)1(\\246)-229(w)-1(szys)-1(tk)1(im)-229(\\261pies)-1(zy\\252o,)-228(\\273)-1(e)-229(n)1(a)27(w)28(et)-229(ms)-1(za)-229(o)-27(dpr)1(a)28(w)-1(i)1(a\\252)-1(a)-228(si\\246)-229(dzisia)-56(j)-228(znacz)-1(n)1(ie)]TJ -27.879 -13.549 Td[(w)28(c)-1(ze)-1(\\261niej.)-497(J)1(e)-1(n)1(o)-498(p)1(ar\\246)-497(k)28(obiet)-497(kl\\246c)-1(za\\252o)-497(przed)-497(o\\252tarze)-1(m,)-497(ni)1(e)-498(mog\\241c)-498(n)1(ad\\241\\273y\\242)-498(za)]TJ 0 -13.55 Td[(ksi\\246dze)-1(m,)-437(b)-27(o)-437(le)-1(d)1(wie)-438(o)-28(d)1(m\\363)27(wi\\252y)-437(n)1(a)-437(P)28(o)-28(d)1(nies)-1(i)1(e)-1(n)1(ie)-1(,)-436(a)-437(ju\\273)-437(Jam)28(bro\\273)-437(gas)-1(i)1(\\252)-438(\\261wiec)-1(e)-437(i)]TJ 0 -13.549 Td[(klu)1(c)-1(zami)-333(p)-28(o)-28(d)1(z)-1(w)28(ani)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(k)56(a)-445(\\273)-1(o\\252n)1(ierk)56(a,)-445(kt\\363r)1(a)-445(z)-446(j)1(ak)55(\\241\\261)-445(spra)28(w)28(\\241)-445(przysz)-1(\\252a)-445(d)1(o)-445(pr)1(ob)-28(osz)-1(cz)-1(a,)-444(tra\\014)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(ry)1(c)27(h)28(t)28(yk,)-278(ki)1(e)-1(j)-278(j)1(u\\273)-279(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-279(na)-278(\\261niad)1(anie.)-278(Nie)-279(\\261m)-1(i)1(a\\252)-1(a)-278(go)-278(ju)1(\\261)-1(ci)-279(zacz)-1(epi\\242,)-278(w)-1(i)1(\\246)-1(c)-279(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(stan\\246\\252a)-278(prze)-1(d)-277(sz)-1(tac)27(h)1(e)-1(t)1(am)-1(i)-277(w)-1(y)1(patru)1(j\\241c,)-278(ki)1(e)-1(j)-277(s)-1(i\\246)-278(na)-278(gan)1(ku)-277(p)-28(ok)56(a\\273e)-1(.)-278(Ni)1(m)-279(si\\246)-278(jedn)1(ak)]TJ 0 -13.55 Td[(ze)-1(b)1(ra\\252a)-334(p)1(rzys)-1(t)1(\\241)-28(pi\\242,)-333(s)-1(i)1(ad\\252)-333(na)-333(br)1(yc)-1(zk)28(\\246)-334(i)-333(pr)1(z)-1(yk)56(azyw)28(a\\252)-334(ostro)-333(ru)1(s)-1(za\\242)-334(do)-333(T)28(ym)-1(o)28(w)28(a.)]TJ 27.879 -13.549 Td[(W)84(e)-1(stc)27(h)1(n\\246\\252)-1(a)-388(\\273a\\252o\\261)-1(n)1(ie,)-388(d\\252u)1(go)-388(patr)1(z)-1(\\241c)-388(na)-388(top)-27(olo)28(w)28(\\241,)-388(k)56(a)-56(j)-388(k)1(urz)-388(wisia\\252)-388(i)-388(sz)-1(ar\\241)]TJ -27.879 -13.549 Td[(c)27(h)1(m)27(u)1(r\\241)-452(k\\252ad\\252)-452(si\\246)-452(na)-452(p)-27(ola;)-452(w)28(oz)-1(y)-451(turk)28(ot)1(a\\252)-1(y)-451(c)-1(oraz)-452(dal)1(e)-1(j)1(,)-452(a)-452(in)1(o)-452(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(\\253)-451(k)28(obiet)]TJ 0 -13.549 Td[(ci\\241)-28(gn\\241cyc)28(h)-333(g\\246)-1(sie)-1(go)-333(n)1(ad)-333(drog\\241)-333(mign\\246\\252a)-333(niekiedy)-333(mi\\246)-1(d)1(z)-1(y)-333(d)1(rze)-1(w)28(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-307(\\261)-1(cic)28(h\\252y)-307(p)-27(okr\\363tce)-1(,)-307(m\\252yn)-306(nie)-307(turk)28(ot)1(a\\252)-1(,)-306(ku\\271nia)-307(sta\\252a)-307(z)-1(amkn)1(i\\246)-1(ta)-307(i)-307(d)1(rogi)]TJ -27.879 -13.55 Td[(do)-403(cna)-403(op)1(ustos)-1(za\\252y)83(,)-403(b)-27(o)-403(kto)-403(osta\\252,)-403(d\\252ub)1(a\\252)-403(c)-1(osik)-403(w)-403(ob)-28(ej\\261c)-1(i)1(ac)27(h)-403(i)-403(n)1(a)-403(ogro)-28(d)1(ac)27(h)-403(za)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(am)-1(i.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(k)56(a)-333(s)-1(ieln)1(ie)-334(sfraso)28(w)27(an)1(a)-334(wr\\363)-27(c)-1(i\\252a)-333(do)-333(dom)28(u.)]TJ 0 -13.549 Td[(Mi)1(e)-1(sz)-1(k)56(a\\252a)-418(za)-417(k)28(o\\261)-1(cio\\252e)-1(m,)-417(p)-28(ob)-27(ok)-417(Mateusz)-1(a,)-417(w)-417(c)27(ha\\252u)1(pin)1(ie)-418(o)-417(jedn)1(e)-1(j)-417(i)1(z)-1(bi)1(e)-418(z)]TJ -27.879 -13.549 Td[(p)-27(\\363\\252s)-1(ion)1(k)56(\\241,)-300(gdy\\273)-300(d)1(rug\\241)-300(p)1(rzy)-300(dzia\\252ac)27(h)-299(br)1(at)-300(o)-28(d)1(e)-1(rzn\\241\\252)-300(i)-299(przeni\\363s\\252)-300(na)-300(sw)27(\\363)-55(j)-300(gr)1(un)28(t,)-299(\\273)-1(e)]TJ 0 -13.55 Td[(kiej)-230(r)1(oz)-1(ci\\246)-1(t)1(e)-231(w)-230(p)-28(op)1(rz)-1(ek)-230(\\273e)-1(b)1(ra)-230(s)-1(tercz)-1(a\\252y)-230(p)1(rze)-1(p)1(i\\252o)28(w)27(an)1(e)-231(\\261)-1(cian)28(y)-230(i)-229(dac)27(h)1(,)-230(pr)1(z)-1(yp)1(iera)-56(j)1(\\241c)-1(e)]TJ 0 -13.549 Td[(do)-333(ok)28(op)-27(c)-1(on)1(e)-1(go)-333(k)28(omina.)]TJ 27.879 -13.549 Td[(Do)-55(jrza\\252a)-334(j)1(\\241)-333(z)-334(proga)-333(Nastk)56(a,)-334(\\273e)-334(to)-333(in)1(o)-334(w)28(\\241s)-1(k)1(i)-333(s)-1(adek)-333(ic)27(h)-332(dzie)-1(l)1(i\\252.)]TJ 0 -13.549 Td[({)-333(No)-334(c\\363\\273)-1(?)-333(c)-1(o)-333(ci)-333(w)-1(yczyta\\252?)-334({)-333(z)-1(a)28(w)28(o\\252a\\252a)-334(b)1(ie)-1(gn)1(\\241c)-334(ku)-333(n)1(iej.)]TJ 0 -13.549 Td[(T)83(eres)-1(k)56(a)-333(z)-334(pr)1(z)-1(e\\252az)-1(u)-333(op)-27(o)28(w)-1(i)1(ada\\252a,)-333(c)-1(o)-333(j\\241)-333(sp)-28(otk)56(a\\252o.)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(b)28(y)-333(organ)1(is)-1(ta)-333(p)1(rz)-1(ecz)-1(yta\\252?..)1(.)-334(p)1(isane)-334(m)28(usi)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\242.)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(p)-28(or)1(e)-1(d)1(z)-1(i,)-333(ale)-333(jak)-333(tu)-333(z)-334(go\\252y)1(m)-1(i)-333(r\\246k)28(oma)-334(i\\261\\242)-334(d)1(o)-334(n)1(iego?)]TJ 0 -13.549 Td[({)-333(W)83(e\\271)-334(par)1(\\246)-334(ja)-55(jk)28(\\363)28(w.)]TJ 0 -13.549 Td[({)-333(Matk)56(a)-333(w)-1(sz)-1(y)1(s)-1(tki)1(e)-334(p)-27(onie\\261)-1(l)1(i)-334(d)1(o)-333(m)-1(iasta;)-333(k)56(ac)-1(ze)-334(in)1(o)-334(zos)-1(t)1(a\\252)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(tu)1(rbu)1(j)-333(si\\246)-1(:)-333(w)28(e)-1(\\271m)-1(i)1(e)-334(on)-333(i)-333(k)56(ac)-1(ze)-1(.)1(.)]TJ 0 -13.549 Td[({)-222(P)28(os)-1(z\\252ab)28(ym,)-222(a)-223(cze)-1(go\\261)-223(si\\246)-223(b)-27(o)-56(j)1(\\246)-1(!)-222(Bym)-223(to)-222(wiedzia\\252a,)-222(c)-1(o)-222(tu)-222(nap)1(isane!)-223({)-222(Wy)1(j\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(zz)-1(a)-500(gorsu)-500(li)1(s)-1(t)-500(o)-28(d)-499(m)-1(\\246\\273)-1(a,)-500(k)1(t\\363ren)-500(b)28(y\\252)-500(jej)-500(w)28(\\363)-56(j)1(t)-500(przywi\\363z\\252)-500(w)27(cz)-1(or)1(a)-56(j)-500(wiec)-1(zorem)-501(z)]TJ 0 -13.549 Td[(k)56(ance)-1(l)1(arii)-333({)-333(C)-1(o)-333(tam)-334(mo\\273e)-334(s)-1(t)1(oi\\242)-1(?)]TJ\nET\nendstream\nendobj\n1604 0 obj <<\n/Type /Page\n/Contents 1605 0 R\n/Resources 1603 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1603 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1608 0 obj <<\n/Length 9050      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(502)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Nastk)55(a)-355(w)-1(zi\\246\\252a)-356(jej)-355(z)-357(r)1(\\241k)-356(zac)-1(ze)-1(r)1(nion)29(y)-356(p)1(apier)-356(i)1(,)-356(p)1(rz)-1(y)1(kucn\\241)28(ws)-1(zy)-356(p)-27(o)-28(d)-355(pr)1(z)-1(e\\252a-)]TJ -27.879 -13.549 Td[(ze)-1(m,)-294(r)1(oz)-1(p)-27(os)-1(t)1(ar\\252a)-294(go)-293(na)-294(k)28(ol)1(anac)27(h)-293(i)-293(z)-1(n)1(o)28(w)-1(u)-293(z)-294(n)1(ie)-1(ma\\252ym)-294(tr)1(ud)1(e)-1(m)-294(p)1(r\\363b)-27(o)27(w)28(a\\252a)-294(o)-28(d)1(c)-1(zy-)]TJ 0 -13.549 Td[(t)28(yw)28(a\\242)-1(.)-359(T)83(eres)-1(k)56(a)-359(pr)1(z)-1(ysiad)1(\\252)-1(a)-359(n)1(a)-360(\\273e)-1(r)1(dce)-360(i)-359(ws)-1(p)1(ar\\252sz)-1(y)-359(b)1(ro)-28(d)1(\\246)-360(na)-359(pi)1(\\246)-1(\\261c)-1(i)1(ac)27(h)-359(pat)1(rz)-1(y)1(\\252a)-360(z)]TJ 0 -13.549 Td[(l\\246kiem)-400(na)-399(te)-400(j)1(akie\\261)-400(kres)-1(k)1(i,)-399(z)-400(kt\\363ryc)28(h)-399(t)28(yle)-400(j)1(e)-1(n)1(o)-400(Nastk)56(a)-400(wysylab)1(iz)-1(o)28(w)28(a\\252a,)-400(\\273e)-400(P)28(o-)]TJ 0 -13.549 Td[(c)27(h)29(w)27(alon)29(y)-334(sto)-55(ja\\252o)-333(na)-333(p)-28(o)-28(cz\\241tku.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(rozbi)1(e)-1(r)1(\\246)-334(wi\\246)-1(ce)-1(j)1(,)-333(to)-334(d)1(armo.)-333(Mateusz)-334(to)-333(b)28(y)-333(p)-27(e)-1(wni)1(kie)-1(m)-333(p)-28(or)1(e)-1(d)1(z)-1(i)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-320(Ni)1(e)-1(,)-319(ni)1(e)-1(!)-319({)-320(p)-27(o)-28(cz)-1(erwienia\\252a)-319(s)-1(tr)1(as)-1(znie)-320(i)-319(c)-1(i)1(c)27(ho)-319(j\\246\\252a)-320(p)1(ros)-1(i)1(\\242)-1(:)-319({)-320(Ni)1(e)-320(m)-1(\\363)28(w)-320(m)28(u)-320(o)]TJ -27.879 -13.549 Td[(li\\261cie)-1(,)-333(Nastu\\261,)-333(nie)-333(p)-28(o)28(wiada)-55(j.)1(..)]TJ 27.879 -13.549 Td[({)-315(\\233eb)28(y)-314(dr)1(uk)28(o)28(w)27(an)1(e)-1(,)-314(to)-314(na)-315(k)56(a\\273dej)-314(ks)-1(i)1(\\241\\273)-1(ce)-315(przec)-1(zytam,)-315(l)1(ite)-1(r)1(y)-315(znam)-315(d)1(obr)1(z)-1(e)-315(i)]TJ -27.879 -13.549 Td[(bacz\\246)-1(,)-347(jak)56(a)-347(kt\\363ra)-347(j)1(e)-1(st,)-347(ale)-348(tu)1(ta)-56(j)-347(n)1(ic)-1(ze)-1(go)-347(z\\252)-1(o\\273y\\242)-348(n)1(ie)-348(p)-27(oredz\\246)-1(:)-347(sam)-1(e)-347(jakie\\261)-348(ku)1(lasy)]TJ 0 -13.549 Td[(i)-333(wykr\\246tasy)83(,)-333(j)1(akb)28(y)-333(m)27(u)1(c)27(h\\246)-333(u)28(w)27(al)1(an\\241)-333(w)-334(cz)-1(ern)1(idl)1(e)-334(pu)1(\\261)-1(ci\\252)-334(k)1(to)-334(n)1(a)-333(papi)1(e)-1(r)1(.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(p)-27(o)28(w)-1(i)1(e)-1(sz)-1(,)-333(Nastu\\261,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-311(Dy\\242)-312(j)1(u\\273)-311(c)-1(i)-311(w)28(c)-1(zora)-55(j)-311(rze)-1(k\\252am,)-311(\\273e)-312(ni)1(c)-312(mi)-312(d)1(o)-311(w)27(a)-55(ju)1(.)-311(W)83(r\\363)-27(c)-1(i)-311(t)28(w)28(\\363)-56(j)-311(z)-311(w)27(o)-55(jsk)55(a,)-311(to)]TJ -27.879 -13.549 Td[(i)-333(tak)-333(ws)-1(zy\\242k)28(o)-334(m)28(usi)-334(si\\246)-334(wyd)1(a\\242)-1(!)-333({)-333(rze)-1(k)1(\\252a)-334(p)-27(o)28(w)-1(sta)-55(j\\241c)-1(.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(k)56(a)-385(j)1(akb)28(y)-384(s)-1(i)1(\\246)-386(zac)27(h)1(\\252ys)-1(n)1(\\246)-1(\\252a)-384(p\\252acz)-1(em)-1(,)-384(\\273)-1(e)-385(i)1(no)-385(r)1(obi\\252a)-384(gard\\252em,)-385(s\\252o)27(w)28(a)-385(n)1(ie)]TJ -27.879 -13.549 Td[(mog\\241c)-334(wydob)29(y\\242)-1(.)]TJ 27.879 -13.55 Td[(Nastk)55(a)-310(c)-1(osik)-310(z)-1(e\\271)-1(lon)1(a)-311(o)-28(d)1(e)-1(sz)-1(\\252a,)-310(kur)1(y)-311(zw)27(o\\252u)1(j\\241c)-311(p)-27(o)-311(dr)1(o)-28(dze)-1(,)-310(a)-311(T)83(eres)-1(k)56(a,)-311(za)28(wi\\241-)]TJ -27.879 -13.549 Td[(za)27(wsz)-1(y)-333(w)-333(w)27(\\246z)-1(e\\252e)-1(k)-333(pi)1(\\246)-1(\\242)-334(j)1(a)-56(j)1(e)-1(k)-333(k)56(acz)-1(yc)28(h,)-333(p)-27(o)27(wlek\\252a)-333(s)-1(i\\246)-333(do)-333(organ)1(is)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-355(n)1(iele)-1(t)1(k)28(o)-355(j)1(e)-1(j)-354(b)29(y\\242)-355(m)27(u)1(s)-1(i)1(a\\252o,)-355(p)1(rzysta)27(w)28(a\\252a)-354(c)-1(o)-354(tro)-28(c)28(ha)-354(i)-354(kry)1(j\\241c)-355(si\\246)-355(w)-354(c)-1(ieni)1(e)-1(,)]TJ -27.879 -13.549 Td[(z)-334(b)-27(o)-56(j)1(a\\271)-1(n)1(i\\241)-333(w)-1(p)1(atryw)28(a\\252a)-333(s)-1(i\\246)-333(w)-334(ni)1(e)-1(zrozumia\\252e)-334(li)1(te)-1(ry)-333(l)1(is)-1(tu)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(go)-334(j)1(u\\273)-333(puszc)-1(za)-56(j\\241?..)1(.)]TJ 0 -13.55 Td[(T)83(rw)28(oga)-318(c)27(h)29(w)-1(y)1(ta\\252a)-318(j\\241)-318(za)-318(gard)1(\\252o,)-318(n)1(ogi)-318(si\\246)-319(u)1(gin)1(a\\252)-1(y)84(,)-318(se)-1(r)1(c)-1(e)-318(si\\246)-318(tak)-318(rozpacz)-1(l)1(iwie)]TJ -27.879 -13.549 Td[(t\\252uk)1(\\252o,)-501(\\273e)-501(pr)1(z)-1(ycisk)56(a\\252)-1(a)-500(si\\246)-501(do)-500(dr)1(z)-1(ew)-1(,)-500(zap\\252ak)56(an)28(ymi)-500(o)-28(cz)-1(yma)-501(b)1(iega)-56(j)1(\\241c)-501(jakb)29(y)-501(za)]TJ 0 -13.549 Td[(ratu)1(nk)1(ie)-1(m.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(ino)-333(o)-333(pieni)1(\\241dze)-334(pisze)-1(!)]TJ 0 -13.549 Td[(Sz\\252a)-394(c)-1(oraz)-394(w)27(oln)1(iej;)-394(m\\246)-1(\\273o)27(wy)-394(list)-394(tak)-394(jej)-394(c)-1(i)1(\\246)-1(\\273y\\252)-395(a)-394(par)1(z)-1(y)1(\\252)-1(,)-394(co)-394(c)-1(i\\246giem)-395(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(k\\252ad)1(a\\252)-1(a)-333(go)-333(z)-1(za)-333(g)-1(or)1(s)-1(u)-333(d)1(o)-333(r\\241k)-333(i)-333(a\\273)-334(w)-334(r)1(\\363g)-334(c)28(h)28(ustki)-333(za)27(win)1(\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[(U)-306(or)1(ganist\\363)28(w)-306(jakb)29(y)-306(n)1(ik)28(ogo)-306(ni)1(e)-307(b)29(y\\252o:)-306(d)1(rzw)-1(i)-305(s)-1(t)1(a\\252)-1(y)-305(p)-27(o)27(wywieran)1(e)-307(d)1(o)-306(p)1(ust)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(izb,)-485(\\273e)-485(t)27(y)1(lk)28(o)-485(w)-485(jednej,)-484(k)55(a)-55(j)-485(ok)1(no)-485(b)28(y\\252o)-485(p)1(rzys)-1(\\252on)1(ione)-485(s)-1(p)-27(\\363)-28(d)1(nic\\241,)-485(ktosik)-485(c)28(hr)1(apa\\252)]TJ 0 -13.549 Td[(rozg\\252o\\261)-1(n)1(ie)-306(sp)-28(o)-27(d)-306(p)1(ierzyn)28(y)84(.)-306(Z)-305(nie\\261m)-1(ia\\252o\\261c)-1(i)1(\\241)-306(p)1(rze)-1(sun)1(\\246)-1(\\252a)-306(si\\246)-306(p)1(rze)-1(z)-306(sie\\253,)-305(rozgl\\241da)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-488(p)-27(o)-487(p)-28(o)-27(dw)28(\\363rz)-1(u)1(,)-487(t)28(ylk)28(o)-487(d)1(z)-1(iewk)56(a)-488(siedzia\\252a)-487(przed)-487(ku)1(c)27(hn)1(i\\241)-487(z)-488(ki)1(e)-1(r)1(z)-1(an)1(k)55(\\241)-487(mi\\246dzy)]TJ 0 -13.55 Td[(k)28(olan)1(am)-1(i)1(,)-334(mas\\252)-1(o)-333(wyb)1(ija)-55(j\\241c,)-333(i)-334(ogan)1(ia\\252a)-333(s)-1(i\\246)-333(ga\\252)-1(\\246zi\\241)-334(p)1(rze)-1(d)-333(m)28(uc)28(hami.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)56(a)-55(j)-333(to)-334(p)1(ani)1(?)]TJ 0 -13.549 Td[({)-333(Na)-334(ogr)1(o)-28(dzie,)-333(z)-1(araz)-333(j\\241)-333(tu)-333(p)-27(os)-1(\\252ysz)-1(y)1(c)-1(ie...)]TJ 0 -13.549 Td[(T)83(eres)-1(k)56(a)-372(p)-27(ob)-27(ok)-372(stan\\246\\252a)-372(mi\\246tos)-1(z\\241c)-372(list)-372(w)-371(r\\246)-1(k)1(u)-371(i)-372(c)28(h)28(ustk)28(\\246)-372(naci\\241)-28(ga)-55(j\\241c)-372(b)1(arz)-1(ej)]TJ -27.879 -13.549 Td[(na)-333(cz)-1(o\\252o,)-333(gdy)1(\\273)-334(s)-1(\\252o\\253)1(c)-1(e)-334(wy\\252azi\\252o)-333(z)-1(a)-333(bu)1(dyn)1(k)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Z)-468(ksi\\246)-1(\\273e)-1(go)-468(p)-27(o)-28(dw)28(\\363rza,)-468(p\\252otem)-469(j)1(e)-1(n)1(o)-469(o)-28(d)1(gro)-28(d)1(z)-1(on)1(e)-1(go,)-468(r)1(oz)-1(tr)1(z)-1(\\246s)-1(a\\252y)-468(si\\246)-469(wrza-)]TJ -27.879 -13.55 Td[(skliw)28(e)-409(g\\252osy)-408(dr)1(obiu)1(,)-408(k)56(ac)-1(zki)-407(trze)-1(p)1(a\\252)-1(y)-407(s)-1(i\\246)-408(w)-408(k)56(a\\252)-1(u)1(\\273)-1(ac)28(h,)-407(m)-1(\\252o)-28(d)1(e)-409(i)1(ndy)1(c)-1(zki)-408(b)1(iadol)1(i\\252y)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-1(ci\\261)-384(p)-27(o)-28(d)-383(p\\252otem)-1(,)-383(za\\261)-384(ind)1(ory)-383(gulgo)-27(c)-1(\\241c)-384(rozcz)-1(ap)1(ie)-1(r)1(z)-1(a\\252y)-383(s)-1(kr)1(z)-1(y)1(d\\252a,)-383(p)-28(o)-28(d)1(s)-1(k)56(aku)1(j\\241c)]TJ 0 -13.549 Td[(za)-56(jad)1(le)-316(ku)-316(p)1(rosi\\246)-1(tom,)-316(wyl)1(e)-1(gu)1(j\\241cym)-317(w)-316(b)1(\\252)-1(o)-27(c)-1(ie,)-316(go\\252\\246bie)-316(p)-27(o)-28(dr)1(yw)27(a\\252y)-316(si\\246)-316(s)-1(p)1(rze)-1(d)-315(s)-1(to-)]TJ 0 -13.549 Td[(do\\252y)84(,)-341(kr)1(\\241\\273)-1(y)1(\\252)-1(y)-340(w)-341(p)-28(o)28(wietrzu)-341(i)-341(spad)1(a\\252y)-341(co)-341(tro)-28(c)28(ha)-341(n)1(a)-341(c)-1(ze)-1(r)1(w)27(on)1(e)-342(d)1(ac)27(h)28(y)-340(pleban)1(ii)-341(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ta)-321(c)27(h)1(m)27(u)1(ra)-321(\\261)-1(n)1(iego)27(w)28(a.)-321(Wil)1(gotna)28(w)28(e)-322(a)-321(rze)-1(\\271w)27(e)-321(c)-1(i)1(e)-1(p)1(\\252)-1(a)-321(b)1(uc)28(ha\\252o)-321(z)-322(p)-27(\\363l,)-321(sady)-321(r)1(oz)-1(kwit\\252e)]TJ 0 -13.55 Td[(p\\252a)28(wi\\252y)-270(s)-1(i)1(\\246)-271(w)-271(s\\252o\\253cu,)-270(j)1(ab\\252oni)1(e)-271(ob)28(w)28(alone)-270(kwiate)-1(m)-270(wynosi\\252y)-270(s)-1(i)1(\\246)-271(z)-271(zie)-1(l)1(e)-1(n)1(i)-270(kiej)-270(bia\\252e)]TJ 0 -13.549 Td[(c)27(h)1(m)27(u)1(ry)-361(op)28(y)1(lone)-361(z)-1(or)1(z)-1(ami;)-361(p)1(s)-1(zc)-1(zo\\252y)-361(z)-361(c)-1(ic)28(h)28(u\\261kim)-361(br)1(z)-1(\\246kiem)-361(le)-1(cia\\252y)-361(n)1(a)-361(prac\\246)-1(,)-360(k)55(a)-55(j\\261)]TJ\nET\nendstream\nendobj\n1607 0 obj <<\n/Type /Page\n/Contents 1608 0 R\n/Resources 1606 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1606 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1611 0 obj <<\n/Length 8324      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(503)]TJ -358.232 -35.866 Td[(ju)1(\\273)-437(i)-436(m)-1(ot)28(yl)-436(zam)-1(i)1(gota\\252)-437(kiej)-436(ten)-436(p\\252atek)-437(k)1(w)-1(i)1(a)-1(t)1(o)27(wy)84(,)-437(t)1(o)-437(stado)-436(w)-1(r)1(\\363bli)-436(z)-437(n)1(ie)-1(ma\\252ym)]TJ 0 -13.549 Td[(wrzas)-1(ki)1(e)-1(m)-334(spad)1(a\\252o)-334(z)-333(drzew)-334(na)-333(p)1(\\252)-1(ot)28(y)84(.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(ce)-334(nar)1(az)-334(\\252z)-1(y)-333(si\\246)-334(p)1(u\\261c)-1(i\\252y)-333(z)-334(o)-27(c)-1(zu)-333(i)-333(c)-1(iu)1(rki)1(e)-1(m)-334(p)-27(o)-28(ciek\\252y)83(.)]TJ 0 -13.549 Td[({)-333(Organ)1(is)-1(t)1(a)-334(j)1(e)-1(st)-334(w)-333(dom)28(u?)-333({)-334(sp)28(yta\\252a,)-333(t)28(w)28(arz)-334(o)-28(d)1(wrac)-1(a)-55(j\\241c.)]TJ 0 -13.549 Td[({)-333(A)-334(k)56(a)-55(jb)28(y)84(.)-333(Dobro)-27(dzie)-1(j)-332(w)-1(y)1(jec)27(ha\\252,)-333(to)-333(s)-1(i)1(\\246)-334(wyleguje)-333(kiej)-333(te)-1(n)-332(w)-1(i)1(e)-1(p)1(rz)-1(.)]TJ 0 -13.55 Td[({)-333(Dobr)1(o)-28(dziej)-333(p)-28(ewnie)-334(n)1(a)-333(jarmark)1(?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(b)29(yk)56(a)-334(ma)-56(j)1(\\241)-334(k)1(up)-27(o)28(w)27(a\\242.)]TJ 0 -13.549 Td[({)-333(A)-334(ma\\252o)-333(to)-334(j)1(u\\273)-334(ma)-333(r\\363\\273nego)-334(d)1(obra?)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Kto)-333(m)-1(a)-333(dosy\\242,)-333(to)-334(c)28(hcia\\252b)28(y)-333(jes)-1(zcz)-1(ek)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333({)-333(mruk)1(n\\246\\252)-1(a)-333(d)1(z)-1(iewk)55(a.)]TJ 0 -13.549 Td[(T)83(eres)-1(k)56(a)-235(z)-1(milk\\252a,)-235(zrob)1(i\\252o)-236(si\\246)-235(jej)-235(s)-1(tr)1(as)-1(znie)-235(\\273)-1(a\\252o\\261nie,)-235(\\273)-1(e)-235(to)-235(lud)1(z)-1(ie)-235(m)-1(a)-55(j\\241)-235(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(kiego)-333(p)-28(o)-333(grd)1(yk)28(\\246)-1(,)-333(a)-333(ona)-333(ledwie)-333(s)-1(i\\246,)-333(p)-28(o\\273ywi,)-333(g\\252o)-28(d)1(uj\\241c)-333(c)-1(z\\246)-1(sto.)]TJ 27.879 -13.55 Td[({)-351(Gosp)-27(o)-28(dyn)1(i)-351(id)1(\\241!)-351({)-351(za)28(w)27(o\\252a\\252a)-351(d)1(z)-1(iewk)55(a,)-350(ru)1(c)27(ha)-55(j\\241c)-351(mo)-28(c)-1(n)1(o)-351(k)28(oz)-1(i)1(e)-1(\\252ki)1(e)-1(m)-351(w)-351(kie-)]TJ -27.879 -13.549 Td[(rzance)-1(,)-333(j)1(a\\273)-1(e)-334(\\261mie)-1(t)1(ana)-333(w)-1(y)1(pry)1(s)-1(ki)1(w)27(a\\252a)-333(w)27(ok)28(o\\252o.)]TJ 27.879 -13.549 Td[({)-417(T)83(o)-417(t)28(w)28(o)-56(j)1(a)-417(s)-1(p)1(ra)28(wk)55(a,)-416(pr)1(\\363\\273)-1(n)1(iaku!)1(...)-417(u)1(m)27(y)1(\\261)-1(ln)1(ie)-417(pu)1(\\261)-1(ci\\252e)-1(\\261)-417(k)28(oni)1(e)-418(w)-417(k)28(on)1(ic)-1(zyn)1(\\246)-1(!)]TJ -27.879 -13.549 Td[({)-384(rozleg\\252)-385(si\\246)-384(w)-385(sadzie)-384(jazgotliwy)-384(g\\252os)-385(or)1(gani\\261cin)28(y)84(.)-384({)-384(Nie)-385(c)28(hcia\\252o)-384(c)-1(i)-384(si\\246)-384(na)-384(u)1(g\\363r)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(i\\242.)-388(Je)-1(zus,)-388(\\273)-1(e)-388(to)-389(n)1(a)-389(n)1(ik)28(ogo)-388(s)-1(i\\246)-388(s)-1(p)1(u\\261)-1(ci\\242)-389(n)1(ie)-389(mo\\273)-1(n)1(a!)-388(Ze)-389(dw)28(a)-389(p)1(r\\246t)28(y)-389(k)28(on)1(icz)-1(yn)29(y)]TJ 0 -13.55 Td[(spasione!)-248(Cz)-1(ek)56(a)-56(j)1(,)-248(p)-27(o)27(wiem)-248(z)-1(ar)1(az)-1(,)-248(a)-247(w)-1(u)1(j)-248(tak)1(ie)-248(c)-1(i)-248(f)1(ryk)28(o)-248(spr)1(a)28(w)-1(i)1(,)-248(dar)1(m)-1(ozjad)1(z)-1(i)1(e)-249(j)1(e)-1(d)1(e)-1(n)1(,)]TJ 0 -13.549 Td[(\\273e)-334(p)-28(op)1(ami\\246)-1(tasz)-1(.)]TJ 27.879 -13.549 Td[({)-348(W)1(ygna\\252em)-348(na)-347(ug\\363r,)-347(sam)-348(s)-1(p)-27(\\246)-1(ta\\252em)-348(i)-347(na)-348(l)1(ince)-348(pr)1(z)-1(ywi\\241za\\252e)-1(m)-348(d)1(o)-348(k)28(o\\252k)56(a!)-348({)]TJ -27.879 -13.549 Td[(t\\252umacz)-1(y\\252)-333(s)-1(i)1(\\246)-334(p\\252acz)-1(l)1(iwie)-334(Mi)1(c)27(ha\\252.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(cyga\\253.)-333(W)84(uj)-333(si\\246)-334(z)-334(t)1(ob\\241)-333(rozm)-1(\\363)28(wi,)-333(no.)1(..)]TJ 0 -13.55 Td[({)-333(Ja)-334(n)1(ie)-334(wygn)1(a\\252e)-1(m,)-333(m)-1(\\363)28(wi\\246)-334(ciotce)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(to?)-334(ksi\\241dz)-333(m)-1(o\\273e)-1(?)-333({)-333(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252a)-333(ur\\241)-27(gliwie)-1(.)]TJ 0 -13.549 Td[({)-333(Zgad\\252a)-333(c)-1(iotk)56(a:)-333(ksi\\241dz)-333(w)-1(y)1(pas\\252)-334(sw)27(oi)1(m)-1(i)-333(k)28(o\\253)1(m)-1(i)-333({)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252)-333(g\\252os)-1(.)]TJ 0 -13.549 Td[({)-333(W\\261)-1(ciek\\252)-333(s)-1(i\\246!...)-333({)-333(pr)1(z)-1(y)1(w)-1(r)1(z)-1(yj)-332(p)28(ysk,)-333(\\273)-1(eb)28(y)-333(s)-1(i)1(\\246)-334(nie)-333(roznies)-1(\\252o!)]TJ 0 -13.549 Td[({)-261(Nie)-261(przywr\\246,)-261(w)-261(o)-28(cz)-1(y)-261(m)28(u)-261(p)-27(o)28(w)-1(i)1(e)-1(m,)-261(b)-27(o)-261(w)-1(i)1(dzia\\252e)-1(m.)-261(Ciotk)56(a)-261(na)-261(mn)1(ie)-262(kr)1(z)-1(y)1(c)-1(zy)83(,)]TJ -27.879 -13.55 Td[(a)-298(to)-298(ksi\\241dz)-298(w)-1(y)1(pas\\252)-1(:)-297(P)28(os)-1(ze)-1(d)1(\\252e)-1(m)-298(do)-298(d)1(nia)-298(p)-27(o)-298(k)28(onie:)-298(gni)1(ady)-298(le\\273)-1(a\\252,)-298(a)-298(kl)1(ac)-1(z)-298(s)-1(i\\246)-298(pas\\252a;)]TJ 0 -13.549 Td[(b)28(y\\252y)-227(tam)-1(,)-227(gdzie)-229(j)1(e)-228(z)-1(osta)27(wi\\252em)-228(na)-228(n)1(o)-28(c)-1(.)-227(Dos)-1(y\\242)-228(zos)-1(ta)28(wi\\252y)-228(\\261lad\\363)28(w,)-228(mo\\273)-1(n)1(a)-228(spra)28(wdzi\\242,)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-344(gor)1(\\241c)-1(e.)-344(Rozp)-28(\\246ta\\252em)-344(je)-344(i)-343(ws)-1(iad)1(\\252e)-1(m)-344(n)1(a)-344(gn)1(iadego,)-343(a)-344(tu)-343(wid)1(z)-1(\\246,)-344(\\273e)-344(w)-344(n)1(as)-1(ze)-1(j)]TJ 0 -13.549 Td[(k)28(oni)1(c)-1(zyni)1(e)-445(jaki)1(e)-1(\\261)-445(k)28(on)1(ie.)-444(\\221wita\\252o)-444(dop)1(ie)-1(r)1(o,)-444(dos)-1(t)1(a\\252)-1(em)-445(si\\246)-445(p)1(rze)-1(gon)1(e)-1(m)-444(p)-28(o)-28(d)-443(ks)-1(i)1(\\246)-1(\\273y)]TJ 0 -13.549 Td[(ogr\\363)-27(d,)-342(\\273)-1(eb)28(y)-342(im)-343(d)1(rog\\246)-343(z)-1(ast\\241)-28(p)1(i\\242,)-343(wy\\252a\\273\\246)-343(na)-342(dr\\363\\273k)28(\\246)-343(K\\252\\246b)-28(o)28(w)28(\\241,)-343(a)-342(tu)-342(pr)1(ob)-28(osz)-1(cz)-343(stoi)]TJ 0 -13.55 Td[(z)-360(b)1(rew)-1(i)1(arz)-1(em,)-359(roz)-1(gl)1(\\241da)-359(s)-1(i\\246)-359(dok)28(o\\252a)-359(i)-359(raz)-360(p)-27(o)-360(r)1(az)-360(p)-27(op)-28(\\246dza)-359(je)-360(b)1(ate)-1(m)-359(c)-1(or)1(az)-360(g\\252\\246)-1(b)1(ie)-1(j)]TJ 0 -13.549 Td[(w)-334(k)28(on)1(icz)-1(yn)1(\\246)-1(,)-333(to.)1(..)]TJ 27.879 -13.549 Td[({)-323(Cic)28(ho,)-322(Mic)28(ha\\252!)-323(S)1(\\252ysz)-1(an)1(e)-324(t)1(o)-323(rze)-1(cz)-1(y)84(,)-322(\\273)-1(eb)28(y)-322(s)-1(am)-323(ksi\\241d)1(z)-1(..)1(.)-323(Da)28(wno)-322(ju\\273)-323(m\\363)28(wi-)]TJ -27.879 -13.549 Td[(\\252am,)-334(\\273e)-334(to)-333(s)-1(i)1(ano)-333(w)-334(p)1(rze)-1(sz)-1(\\252ym)-333(roku)1(...)-333(cic)27(ho,)-333(tam)-333(jak)56(a\\261)-334(k)28(ob)1(ie)-1(t)1(a)-334(stoi.)]TJ 27.879 -13.549 Td[(P)28(oto)-27(c)-1(zy\\252a)-287(si\\246)-287(n)1(apr)1(z)-1(\\363)-28(d)-285(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie,)-286(w)-1(\\252a\\261nie)-286(i)-286(organi)1(s)-1(ta)-286(krzycz)-1(a\\252)-286(s)-1(p)-27(o)-28(d)-286(p)1(ierzy-)]TJ -27.879 -13.549 Td[(n)28(y)-333(n)1(a)-334(M)1(ic)27(ha\\252a.)]TJ 27.879 -13.55 Td[(T)83(eres)-1(k)56(a)-364(o)-28(dd)1(a\\252a)-365(j)1(e)-1(j)-364(w)28(\\246)-1(ze\\252)-1(ek)-364(z)-365(j)1(a)-56(jk)56(ami,)-364(a)-364(p)-28(o)-27(dejm)27(u)1(j\\241c)-364(z)-1(a)-364(nogi)1(,)-365(p)1(rosi\\252a)-364(nie-)]TJ -27.879 -13.549 Td[(\\261m)-1(ia\\252o)-333(o)-333(prze)-1(czytani)1(e)-334(listu)-333(o)-28(d)-333(m\\246\\273)-1(a.)]TJ 27.879 -13.549 Td[(Kaza\\252a)-334(j)1(e)-1(j)-333(zacz)-1(ek)55(a\\242.)]TJ 0 -13.549 Td[(A)-392(dop)1(iero)-392(w)-392(par\\246)-392(dob)1(ryc)28(h)-392(pacierzy)-392(z)-1(a)28(w)28(o\\252)-1(an)1(o)-392(j\\241)-392(d)1(o)-393(i)1(z)-1(b)28(y)84(.)-392(Or)1(ganista)-392(roz-)]TJ -27.879 -13.549 Td[(mam)-1(\\252an)28(y)-333(ca\\252kiem)-1(,)-333(w)-333(gac)-1(iac)28(h)-333(jeno,)-333(p)-27(opij)1(a)-56(j)1(\\241c)-334(k)56(a)28(w)27(\\246)-334(j)1(\\241\\252)-334(cz)-1(y)1(ta\\242)-1(.)]TJ 27.879 -13.55 Td[(S\\252u)1(c)27(h)1(a\\252)-1(a)-478(z)-479(zamie)-1(r)1(a)-56(j)1(\\241c)-1(ym)-478(s)-1(erce)-1(m,)-478(b)-27(o)-479(w\\252a\\261)-1(n)1(ie)-479(m\\241\\273)-479(j)1(e)-1(j)-478(zap)-27(o)27(wiad)1(a\\252)-479(sw)28(\\363)-56(j)]TJ -27.879 -13.549 Td[(p)-27(o)27(wr)1(\\363t)-423(n)1(a)-422(\\273)-1(n)1(iw)27(a,)-422(r)1(az)-1(em)-423(z)-423(K)1(ub\\241)-422(Jar)1(c)-1(zykiem)-423(z)-422(W)83(\\363lk)1(i)-422(i)-422(z)-423(Grzel\\241)-422(B)-1(or)1(yno)28(wym.)]TJ\nET\nendstream\nendobj\n1610 0 obj <<\n/Type /Page\n/Contents 1611 0 R\n/Resources 1609 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1609 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1614 0 obj <<\n/Length 9987      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(504)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(List)-481(b)28(y\\252)-481(p)-27(o)-28(cz)-1(ciwy)83(,)-480(trosk)56(a\\252)-481(s)-1(i\\246)-481(o)-481(ni)1(\\241,)-481(wyp)28(yt)28(y)1(w)27(a\\252)-481(o)-481(ws)-1(zystk)28(o,)-481(co)-481(s)-1(i)1(\\246)-482(d)1(z)-1(ieje)-481(w)]TJ 0 -13.549 Td[(dom)28(u,)-302(prze)-1(sy\\252a\\252)-303(p)-27(oz)-1(d)1(ro)28(wie)-1(n)1(ia)-303(zna)-56(j)1(om)27(y)1(m)-304(i)-302(buc)28(ha\\252)-303(rad)1(o\\261)-1(ci\\241)-303(p)-27(o)28(w)-1(r)1(otu,)-302(a)-303(w)-304(k)28(o\\253)1(c)-1(u)]TJ 0 -13.549 Td[(Gr)1(z)-1(ela)-392(dop)1(isyw)27(a\\252)-392(p)1(rosz)-1(\\241c,)-392(b)28(y)-392(za)28(w)-1(i)1(adomi\\252a)-392(jego)-392(o)-56(j)1(c)-1(a)-392(o)-392(p)-27(o)28(w)-1(r)1(o)-28(c)-1(i)1(e)-1(.)-392(Ch)28(u)1(dziacz)-1(ek)]TJ 0 -13.549 Td[(ni)1(e)-334(wie)-1(d)1(z)-1(i)1(a\\252,)-334(co)-333(s)-1(i\\246)-333(s)-1(ta\\252o)-333(z)-334(Maciejem)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-311(T)83(eres)-1(k)28(\\246)-310(te)-311(ciep\\252e,)-310(p)-28(o)-27(c)-1(zc)-1(i)1(w)27(e)-310(s)-1(\\252o)28(w)27(a)-310(p)1(ra\\273y\\252y)-310(kiej)-310(bat)28(y)-310(i)-309(do)-310(z)-1(i)1(e)-1(mi)-310(pr)1(z)-1(y)1(gi-)]TJ -27.879 -13.55 Td[(na\\252y)84(.)-318(M)1(o)-28(c)-1(o)28(w)28(a\\252a)-318(s)-1(i)1(\\246)-1(,)-317(b)28(yc)27(h)-317(n)1(ie)-318(p)-28(oznal)1(i)-318(p)-27(o)-318(ni)1(e)-1(j)1(,)-318(b)28(yc)28(h)-317(z)-1(d)1(z)-1(ier\\273y\\242)-318(s)-1(p)-27(ok)28(o)-56(j)1(nie)-318(t\\246)-318(wie\\261)-1(\\242)]TJ 0 -13.549 Td[(strasz)-1(n)1(\\241,)-334(al)1(e)-334(z)-1(d)1(rad)1(liw)28(e)-334(\\252z)-1(y)-333(sam)-1(e)-333(jak)28(o\\261)-334(p)-27(o)-28(cie)-1(k)1(\\252y)-334(r)1(oz)-1(p)1(alon)28(ymi)-333(paciork)56(ami.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(s)-1(i\\246)-333(to)-334(cies)-1(zy)-333(z)-334(p)-27(o)27(wrot)1(u)-333(c)27(h\\252op)1(a!)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(ur)1(\\241)-28(gliwie)-333(organi)1(\\261)-1(cina.)]TJ 0 -13.549 Td[(T)83(eres)-1(ce)-310(j)1(e)-1(sz)-1(cz)-1(ec)27(h)-308(rz\\246)-1(sis)-1(tszy)-309(grad)-309(p)-27(osypa\\252)-309(si\\246)-310(z)-309(o)-28(cz)-1(u)1(.)-309(Uc)-1(i)1(e)-1(k\\252a)-309(b)1(ie)-1(d)1(ota,)-309(ab)28(y)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)1(ie)-1(m)-333(nie)-333(w)-1(y)1(buc)28(hn)1(\\241\\242)-1(,)-333(i)-333(d\\252u)1(go)-334(si\\246)-334(tu)1(li\\252a)-333(k)56(a)-56(j\\261)-333(w)-334(op)1(\\252)-1(ot)1(k)55(ac)28(h.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(j)1(a)-334(teraz)-334(p)-27(o)-28(cz)-1(n)1(\\246)-1(,)-333(sierota?)-334(co?)-334({)-333(wyrzek)55(a\\252a)-333(z)-334(b)-27(e)-1(zrad)1(n\\241)-333(\\273)-1(a\\252o\\261c)-1(i\\241.)]TJ 0 -13.55 Td[(Ju)1(\\261)-1(ci,)-343(c)27(h)1(\\252op)-343(wr\\363)-28(ci,)-343(do)28(wie)-344(si\\246)-343(o)-344(wsz)-1(ystki)1(m)-1(!)-343(S)1(trac)27(h)-342(j\\241)-343(p)-27(orw)27(a\\252)-343(j)1(ak)28(o)-344(ten)-343(z\\252y)83(,)]TJ -27.879 -13.549 Td[(lu)1(t)28(y)-381(wic)28(her.)-380(Jas)-1(i)1(e)-1(k)-380(b)28(y\\252)-380(p)-28(o)-27(c)-1(zc)-1(i)1(w)-1(y)84(,)-380(ale)-381(z)-1(a)28(wzi\\246)-1(t)28(y)-380(jak)-380(wsz)-1(ystkie)-381(P)1(\\252os)-1(zki:)-380(kr)1(z)-1(ywd)1(y)]TJ 0 -13.549 Td[(ni)1(e)-487(przepu\\261ci,)-487(j)1(e)-1(szc)-1(ze)-487(go)-487(zabij)1(e)-1(!)-486(Jez)-1(u)1(s)-1(,)-486(ratu)1(j,)-486(Jez)-1(u)1(s)-1(!)-486(Ani)-486(p)-27(om)27(y\\261la\\252a)-487(o)-486(s)-1(ob)1(ie.)]TJ 0 -13.549 Td[(P)28(op)1(\\252akuj)1(\\241c)-477(a)-477(sz)-1(ar)1(pi\\241c)-477(si\\246)-477(w)-477(sobie,)-476(z)-1(n)1(alaz)-1(\\252a)-476(s)-1(i)1(\\246)-477(u)-477(Bory)1(n\\363)28(w.)-477(Han)1(ki)-476(nie)-477(b)29(y\\252o:)]TJ 0 -13.549 Td[(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252a)-273(d)1(o)-273(mias)-1(t)1(a)-273(jesz)-1(cz)-1(e)-273(w)28(c)-1(zas)-273(ran)1(o;)-273(Jagn)1(a)-273(te\\273)-273(u)-272(m)-1(atk)1(i)-273(r)1(obi\\252a,)-272(\\273)-1(e)-273(w)-272(c)27(ha\\252u)1(pie)]TJ 0 -13.55 Td[(b)28(y\\252a)-333(jeno)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(z)-334(J\\363zk)56(\\241:)-333(p\\252\\363tn)1(o)-334(zm)-1(o)-27(c)-1(zone)-334(r)1(oz)-1(p)-27(o\\261)-1(ciera\\252y)-333(w)-334(sadzie.)]TJ 27.879 -13.549 Td[(P)28(o)28(wiedzia\\252a)-337(o)-337(Grze)-1(l)1(i,)-337(c)27(h)1(c)-1(\\241c)-337(s)-1(i)1(\\246)-338(wyn)1(ie)-1(\\261\\242)-337(c)-1(zym)-337(pr\\246dze)-1(j)1(,)-337(ale)-337(s)-1(t)1(ara)-337(o)-28(d)1(w)-1(i)1(e)-1(d)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(j\\241)-333(n)1(a)-334(b)-27(ok)-333(i)-333(dziwnie)-334(d)1(obr)1(otliwie)-334(sze)-1(p)1(n\\246\\252)-1(a:)]TJ 27.879 -13.549 Td[({)-307(T)83(eres)-1(k)56(a,)-307(op)1(ami\\246)-1(ta)-55(j)-307(si\\246,)-307(miej\\273e)-308(r)1(oz)-1(u)1(m)-1(,)-306(oz)-1(or\\363)28(w)-307(z\\252yc)27(h)-306(nie)-307(u)1(tnies)-1(z...)-306(Jas)-1(i)1(e)-1(k)]TJ -27.879 -13.549 Td[(wr\\363)-28(ci,)-353(t)1(o)-353(s)-1(i\\246)-353(i)-353(tak)-352(do)28(wie.)-353(P)28(omiarku)1(j,)-352(parob)-27(ek)-353(na)-353(mies)-1(i)1(\\241c)-1(,)-352(a)-353(m)-1(\\241\\273)-353(na)-353(ca\\252e)-353(\\273)-1(ycie!)]TJ 0 -13.55 Td[(Dob)1(rz)-1(e)-333(c)-1(i)-333(rad)1(z)-1(\\246.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(wy)-333(p)-28(o)28(wiedacie?)-334(co)-1(?)-333({)-333(b)-28(e\\252k)28(ota\\252a,)-333(nib)28(y)-333(n)1(ie)-334(r)1(oz)-1(umiej\\241c.)]TJ 0 -13.549 Td[({)-278(Ni)1(e)-279(u)1(da)28(w)28(a)-56(j)-277(g\\252up)1(ie)-1(j)1(,)-278(wsz)-1(yscy)-278(wiedz\\241)-278(o)-278(w)28(as)-1(,)-277(Mateusz)-1(a)-277(o)-28(dp)1(ra)28(w,)-278(p)-27(\\363ki)-277(c)-1(zas)-1(,)]TJ -27.879 -13.549 Td[(to)-429(J)1(as)-1(iek)-428(nie)-429(u)28(wierzy)83(,)-428(s)-1(t)1(\\246)-1(skni)1(\\252)-429(s)-1(i)1(\\246)-430(d)1(o)-429(ciebie,)-429(\\252acno)-428(w)-1(m\\363)28(wis)-1(z,)-428(c)-1(o)-428(ino)-428(z)-1(ec)27(hces)-1(z.)]TJ 0 -13.549 Td[(Mateusz)-351(s)-1(i)1(\\246)-351(z)-1(n)1(aro)28(w)-1(i)1(\\252)-351(do)-350(t)27(w)28(o)-56(j)1(e)-1(j)-350(p)1(ie)-1(r)1(z)-1(y)1(n)28(y)83(,)-350(ale)-351(pr)1(z)-1(ec)-1(i)1(e)-1(k)-350(nie)-351(p)1(rzyr\\363s\\252,)-351(wyp)-27(\\246)-1(d)1(\\271)-351(go,)]TJ 0 -13.55 Td[(p)-27(\\363ki)-403(c)-1(zas)-1(.)-403(Nie)-404(b)-27(\\363)-56(j)-403(si\\246)-1(,)-403(Jasie)-1(k)-403(te\\273)-404(nie)-404(u)1(\\252am)-1(ek..)1(.)-404(A)-403(k)28(o)-28(c)27(h)1(anie)-404(p)1(rze)-1(j)1(dzie)-404(jak)28(o)-403(te)-1(n)]TJ 0 -13.549 Td[(dzie\\253)-500(w)28(c)-1(zora)-55(jsz)-1(y)84(,)-500(n)1(ie)-501(wstrzymas)-1(z,)-500(c)27(h)1(o)-28(\\242b)28(y\\261)-500(\\273)-1(y)1(c)-1(iem)-500(p\\252ac)-1(i)1(\\252a;)-500(k)28(o)-28(c)27(h)1(ani)1(e)-501(to)-500(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(suta)-489(om)-1(asta)-489(pr)1(z)-1(y)-489(n)1(ie)-1(d)1(z)-1(i)1(e)-1(li)1(;)-490(j)1(e)-1(d)1(z)-490(co)-490(d)1(ni)1(a,)-489(a)-490(r)1(yc)27(h)1(\\252)-1(o)-489(ci)-489(z)-1(mierznie)-490(i)-489(o)-27(db)-27(e)-1(k)1(iw)27(a\\242)]TJ 0 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(iesz)-1(.)-355(Ko)-28(c)28(han)1(ie)-356(p)1(\\252ak)55(an)1(ie,)-355(a)-356(\\261lub)-354(gr\\363b)-355({)-355(p)-27(o)27(wiad)1(a)-56(j)1(\\241.)-355(Mo\\273e)-356(i)-355(pr)1(a)27(wd)1(a,)-355(jeno)-355(\\273)-1(e)]TJ 0 -13.549 Td[(ten)-385(gr\\363b)-384(z)-386(c)27(h)1(\\252op)-28(em)-385(i)-385(dzie)-1(cisk)56(am)-1(i)-385(lepszy)-385(ni\\271li)-385(w)28(olno\\261\\242)-386(w)-385(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246.)-385(Nie)-385(bu)1(c)-1(z,)]TJ 0 -13.55 Td[(a)-440(ratu)1(j)-440(s)-1(i)1(\\246)-1(,)-440(p)-27(\\363ki)-440(p)-27(ora.)-440(Jak)-440(ci\\246)-441(t)28(w)28(\\363)-56(j)-440(b)-27(ez)-441(to)-440(k)28(o)-28(c)27(h)1(ani)1(e)-441(s)-1(p)-27(on)1(ie)-1(wiera)-440(i)-440(z)-441(c)28(ha\\252up)29(y)]TJ 0 -13.549 Td[(wygna,)-262(k)55(a)-55(j)-263(to)-263(p)-27(\\363)-56(j)1(dzies)-1(z?)-264(W)84(e)-264(\\261wiat)-263(n)1(a)-264(zatracenie)-263(i)-263(p)-27(o\\261)-1(miew)-1(i)1(s)-1(k)28(o!)-263(Hale,)-263(p)-27(omie)-1(n)1(ia\\252)]TJ 0 -13.549 Td[(si\\246)-471(stry)1(jek)-470(z)-1(a)-470(siekierk)28(\\246)-471(k)1(ijek!)-470(Zlec)-1(i)1(s)-1(z)-470(z)-471(w)28(oz)-1(a,)-469(to)-470(biegni)1(j)-470(p)-27(ote)-1(m)-470(za)-470(roz)-1(w)28(or\\241)-470(z)]TJ 0 -13.549 Td[(wywies)-1(zon)28(ym)-446(ozorem)-1(!)-445(p)-27(o)-28(d)-445(wiatr)-445(r)1(yc)27(h)1(\\252o)-446(d)1(e)-1(c)27(h)-444(s)-1(tr)1(ac)-1(isz)-446(i)-445(s)-1(i)1(\\252)-446(si\\246)-446(wyzb)-28(\\246dzies)-1(z,)-445(i)]TJ 0 -13.549 Td[(ry)1(c)27(h\\252o)-475(c)-1(i)1(\\246)-476(o)-28(d)1(jad\\241!)-475(G)1(\\252upi)1(a,)-475(k)55(a\\273den)-475(c)27(h)1(\\252op)-475(ma)-476(p)-27(ortk)1(i,)-475(Mateusz)-476(m)27(u)-474(c)-1(zy)-475(Kub)1(a,)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(n)-251(jedn)1(ak)28(o)-252(pr)1(z)-1(ysi\\246ga,)-252(jak)-251(s)-1(i\\246ga,)-252(k)56(a\\273den)-252(jak)-251(m)-1(i)1(\\363)-28(d,)-251(p)-28(\\363ki)1(\\261)-253(m)28(u)-252(mi\\252a.)-252(P)29(om)-1(iar)1(kuj)]TJ 0 -13.55 Td[(sobie)-334(i)-333(d)1(o)-334(g\\252o)28(wy)-333(w)27(e\\271)-1(,)-333(co)-28(\\242)-334(m\\363)28(w)-1(i)1(\\246)-1(,)-333(wuj)-333(n)1(am)-334(ci)-333(prze)-1(ciek)-333(i)-333(dobr)1(a)-334(l)1(a)-334(ciebie)-333(pragn)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Ale)-259(T)83(eres)-1(k)56(a)-258(ju)1(\\273)-259(nie)-259(mog\\252a)-259(wytr)1(z)-1(y)1(m)-1(a\\242,)-259(u)1(c)-1(i)1(e)-1(k\\252a)-258(w)-259(p)-27(ole)-259(a)-258(buc)28(hn)1(\\241)27(wsz)-1(y)-258(gdzie-)]TJ -27.879 -13.549 Td[(sik)-333(w)-334(\\273yto,)-333(tam)-334(d)1(opiero)-333(p)-27(opu\\261ci\\252a)-334(\\273alom)-334(i)-333(p)1(\\252ak)55(an)1(iom.)]TJ 27.879 -13.549 Td[(Darmo)-363(p)1(r\\363b)-27(o)28(w)27(a\\252a)-363(r)1(oz)-1(w)28(a\\273)-1(a\\242)-363(s\\252o)27(w)28(a)-363(starej,)-362(gdy\\273)-363(co)-363(c)28(h)28(wila)-363(c)28(h)28(wyta\\252)-363(j)1(\\241)-363(taki)]TJ -27.879 -13.549 Td[(\\273al)-274(z)-1(a)-273(Mateusz)-1(em)-1(,)-273(\\273)-1(e)-274(z)-274(ryki)1(e)-1(m)-274(t\\252uk)1(\\252a)-274(s)-1(i\\246)-274(p)-27(o)-274(br)1(u\\271dzie)-274(jak)28(o)-274(ten)-274(p)-27(oran)1(ion)28(y)-273(z)-1(wierz.)]TJ 27.879 -13.55 Td[(Dop)1(ie)-1(r)1(o)-334(j)1(akie\\261)-334(ni)1(e)-1(d)1(ale)-1(k)1(ie)-334(wrzas)-1(ki)-333(p)-27(o)-28(d)1(nies)-1(\\252y)-333(j)1(\\241)-334(n)1(a)-334(n)1(ogi.)]TJ 0 -13.549 Td[(Jakb)29(y)-334(p)1(rze)-1(d)-333(w)28(\\363)-56(j)1(to)28(w)27(\\241)-333(c)27(h)1(a\\252up\\241)-333(rozlega\\252a)-334(si\\246)-334(sroga)-333(k\\252\\363tni)1(a.)]TJ\nET\nendstream\nendobj\n1613 0 obj <<\n/Type /Page\n/Contents 1614 0 R\n/Resources 1612 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1599 0 R\n>> endobj\n1612 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1617 0 obj <<\n/Length 9147      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(505)]TJ -330.353 -35.866 Td[(Ju)1(\\261)-1(ci:)-333(to)-333(w)27(\\363)-55(jto)28(w)27(a)-333(z)-334(Koz\\252o)28(w)27(\\241)-333(pr)1(z)-1(ez)-1(y)1(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(o)-28(d)-333(ostatni)1(c)27(h.)]TJ 0 -13.549 Td[(St)1(o)-56(ja\\252y)-411(nap)1(rze)-1(ciw)-412(sie)-1(b)1(ie,)-412(p)1(\\252otam)-1(i)-411(a)-412(d)1(rog\\241)-412(p)-27(o)-28(d)1(z)-1(i)1(e)-1(lon)1(e)-1(,)-411(w)-412(k)28(osz)-1(u)1(lac)27(h)-411(jeno)]TJ -27.879 -13.549 Td[(i)-487(w)27(e\\252niak)56(ac)27(h)1(,)-487(a)-488(ledwie)-488(j)1(u\\273)-488(zipi)1(\\241c)-488(z)-1(e)-488(z\\252o\\261)-1(ci,)-487(p)-28(oms)-1(t)1(o)27(w)28(a\\252y)-488(ze)-488(ws)-1(zystkiej)-487(m)-1(o)-27(c)-1(y)84(,)]TJ 0 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(am)-1(i)-333(do)-333(sie)-1(b)1(ie)-334(wygr)1(a\\273)-1(a)-55(j\\241c.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-335(k)28(on)1(ie)-336(zak\\252ada\\252)-335(d)1(o)-336(w)28(as\\241)-28(ga,)-335(z)-1(agad)1(uj)1(\\241c)-336(ni)1(e)-1(ki)1(e)-1(d)1(y)-335(do)-335(c)27(h)1(\\252opa)-335(z)-336(M)1(o)-28(dli)1(c)-1(y)]TJ -27.879 -13.55 Td[(sie)-1(d)1(z)-1(\\241ce)-1(go)-226(w)-227(gan)1(ku,)-226(kt)1(\\363re)-1(n)-226(j)1(a\\273)-1(e)-226(tup)1(a\\252)-227(z)-227(u)1(c)-1(iec)27(h)28(y)84(,)-226(p)-28(ok)1(rzykuj)1(\\241c)-227(ju)1(dz\\241c)-1(o)-226(na)-226(k)28(obi)1(e)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(Kr)1(z)-1(yk)1(i)-305(roz)-1(n)1(os)-1(i)1(\\252y)-305(s)-1(i\\246)-305(dalek)28(o,)-305(\\273)-1(e)-305(kiej)-305(na)-305(d)1(z)-1(iw)28(o)28(w)-1(i)1(s)-1(k)28(o)-305(zbiegali)-305(si\\246)-306(lu)1(dzie:)-305(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(ro)-406(j)1(u\\273)-407(i)1(c)27(h)-406(sto)-56(j)1(a\\252o)-407(n)1(a)-406(dr)1(o)-28(dze)-1(,)-406(a)-406(sp)-28(oza)-406(ws)-1(zys)-1(t)1(kic)27(h)-405(p\\252ot\\363)28(w)-407(s\\241s)-1(i)1(e)-1(d)1(z)-1(ki)1(c)27(h)-406(i)-406(w)28(\\246)-1(g\\252\\363)28(w)]TJ 0 -13.549 Td[(wy\\261c)-1(iu)1(bia\\252y)-333(si\\246)-334(g\\252o)28(wy)83(.)]TJ 27.879 -13.549 Td[(Bo)-395(te)-1(\\273)-395(k\\252\\363)-28(ci\\252y)-395(s)-1(i)1(\\246)-1(,)-395(\\273e)-396(n)1(iec)27(h)-395(B\\363g)-395(br)1(oni!)-394(W)83(\\363)-55(jto)28(w)27(a,)-394(c)-1(ic)28(ha)-395(zaz)-1(wycz)-1(a)-55(j)-395(i)-395(zgo-)]TJ -27.879 -13.549 Td[(dl)1(iw)27(a)-352(k)28(ob)1(ieta,)-352(j)1(akb)28(y)-352(si\\246)-352(dzis)-1(i)1(a)-56(j)-351(w)-1(\\261c)-1(i)1(e)-1(k\\252a,)-351(s)-1(ro\\273y\\252a)-352(si\\246)-352(c)-1(oraz)-352(b)1(arz)-1(ej,)-351(z)-1(a\\261)-352(Koz\\252o)27(w)28(a)]TJ 0 -13.55 Td[(z)-364(rozm)27(ys\\252u)-364(n)1(iec)-1(o)-364(p)1(rzyc)-1(i)1(c)27(ha\\252a)-363(i)-364(ni)1(e)-365(p)1(rze)-1(p)1(usz)-1(cz)-1(a)-55(j\\241c)-364(ni)1(c)-1(ze)-1(go,)-363(\\273)-1(ga\\252a)-364(j)1(\\241)-364(p)-27(o)27(w)28(olu)1(\\261)-1(ku)]TJ 0 -13.549 Td[(na\\261mie)-1(c)28(hli)1(w)-1(y)1(m)-1(i)-333(s\\252o)27(w)28(ami.)]TJ 27.879 -13.549 Td[({)-262(Jazgo)-28(c)-1(z)-262(s)-1(e,)-262(p)1(ani)-262(w)28(\\363)-56(j)1(to)28(w)27(o,)-262(j)1(az)-1(go)-27(c)-1(z,)-262(pieski)-262(ci\\246)-263(n)1(ie)-263(p)1(rze)-1(sz)-1(cze)-1(k)56(a)-56(j)1(\\241!)-262({)-262(w)27(o\\252a\\252a.)]TJ 0 -13.549 Td[({)-482(A)-482(b)-27(o)-482(to)-482(pierws)-1(zy)-482(r)1(az)-1(,)-482(a)-482(b)-27(o)-482(to)-482(dr)1(ugi!)-482(Ni)1(e)-483(ma)-482(t)28(ygo)-28(dn)1(ia;)-482(b)28(y)-481(m)-1(i)-482(co)-482(z)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)28(y)-434(n)1(ie)-435(zgin\\246\\252o!)-434(Kok)28(osz)-1(ki)-434(n)1(ie\\261)-1(n)1(e)-1(,)-434(ku)1(rcz)-1(\\246ta,)-434(k)56(ac)-1(zki,)-434(a)-434(na)28(w)28(e)-1(t)-434(s)-1(t)1(ara)-434(g\\246)-1(\\261,)-434(\\273)-1(e)]TJ 0 -13.55 Td[(ju)1(\\273)-340(n)1(ie)-339(w)-1(y)1(p)-28(o)28(wiem)-340(t)28(yc)28(h)-339(sz)-1(k)28(\\363)-28(d)-338(na)-339(ogr)1(o)-28(dzie)-339(i)-339(w)-340(sadzie!)-339(A)-339(b)-27(o)-28(da)-55(j\\261)-339(s)-1(i\\246)-339(stru\\252a)-339(mo)-56(j)1(\\241)]TJ 0 -13.549 Td[(kr)1(z)-1(ywd)1(\\241!)-334(\\273e)-1(b)29(y)-333(c)-1(i\\246)-333(p)-28(okr)1(\\246)-1(ci\\252o!)-333(\\273)-1(eb)28(y\\261)-333(s)-1(terg\\252a)-333(p)-28(o)-27(de)-334(p)1(\\252ote)-1(m...)]TJ 27.879 -13.549 Td[({)-333(Oz)-1(d)1(z)-1(i)1(e)-1(r)1(a)-56(j)-333(si\\246)-1(,)-333(wron)1(o,)-333(krzycz)-1(,)-333(to)-333(c)-1(i)-333(u)1(l\\273)-1(y)84(,)-333(pan)1(i)-333(w)27(\\363)-55(jto)28(w)27(o.)1(..)]TJ 0 -13.549 Td[({)-401(A)-401(tom)-401(dzisia)-56(j)1(!)-401({)-401(zwr\\363)-28(ci\\252a)-401(s)-1(i)1(\\246)-402(d)1(o)-401(T)83(e)-1(r)1(e)-1(ski,)-400(w)-1(y)1(\\252)-1(a\\273\\241ce)-1(j)-400(na)-401(d)1(rog\\246)-401({)-401(a)-401(tom)]TJ -27.879 -13.549 Td[(ran)1(o)-342(pi)1(\\246)-1(\\242)-342(k)56(a)27(w)28(a\\252k)28(\\363)28(w)-342(p\\252\\363tna)-341(w)-1(y)1(nies)-1(\\252a)-342(n)1(a)-342(bi)1(e)-1(ln)1(ik.)-341(Zac)27(ho)-27(dz\\246)-343(p)-27(o)-342(\\261niad)1(aniu)1(;)-342(ab)28(y)-341(je)]TJ 0 -13.55 Td[(zm)-1(o)-28(czy\\242)-1(.)-386(B)-1(r)1(akuj)1(e)-388(j)1(e)-1(d)1(nego!)-387(S)1(z)-1(u)1(k)55(am!)-387(J)1(akb)28(y)-387(p)-27(o)-28(d)-386(z)-1(i)1(e)-1(mi\\246)-387(s)-1(i)1(\\246)-388(zapad)1(\\252!)-387(Dy\\242)-387(k)56(am)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ni)1(am)-1(i)-409(przycis)-1(n)1(\\246)-1(\\252am,)-410(a)-410(wiat)1(ru)-410(n)1(ie)-410(b)28(y\\252o!)-410(P)1(\\252\\363tno)-410(cieniu)1(\\261)-1(ki)1(e)-1(,)-409(pacz)-1(es)-1(n)1(e)-1(,)-409(\\273)-1(e)-410(kup)1(ne)]TJ 0 -13.549 Td[(ni)1(e)-334(b)28(y\\252ob)28(y)-333(lepsze)-1(,)-333(i)-333(z)-1(gi)1(n\\246\\252o!)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(\\261)-1(win)1(i)-333(t\\252usz)-1(cz)-334(c)-1(i)-333(\\261lepie)-333(z)-1(alew)27(a,)-333(to\\261)-333(nie)-333(do)-56(j)1(rza\\252a!...)]TJ 0 -13.549 Td[({)-333(B)-1(o\\261)-333(m)-1(i)-333(p)1(\\252)-1(\\363t)1(no)-333(ukr)1(ad\\252a!)-333({)-334(wr)1(z)-1(asn\\246\\252a.)]TJ 0 -13.55 Td[({)-333(Ja)-334(ci)-333(uk)1(rad\\252am!)-333(P)28(o)28(w)-1(t)1(\\363rz)-334(to)-333(jes)-1(zcz)-1(e,)-333(p)-28(o)28(wt\\363rz!)]TJ 0 -13.549 Td[({)-383(A)-383(t)28(y)-383(z\\252o)-28(dzieju)-382(jeden!)-383(P)1(rze)-1(d)-382(c)-1(a\\252ym)-383(\\261w)-1(i)1(ate)-1(m)-383(z)-1(a\\261wiarcz)-1(\\246.)-383(P)1(rzyz)-1(n)1(as)-1(z)-383(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(kiej)-333(ci\\246)-334(w)-333(dyb)1(ac)27(h)-333(do)-333(kr)1(e)-1(min)1(a\\252)-1(u)-332(p)-28(op)-27(\\246)-1(d)1(z)-1(\\241.)]TJ 27.879 -13.549 Td[({)-377(Z)-1(\\252o)-27(dzie)-1(j)1(k)56(\\241)-378(me)-378(pr)1(z)-1(ez)-1(y)1(w)27(a!)-377(S\\252ysz)-1(y)1(ta,)-377(lud)1(z)-1(ie!)-377(Do)-378(s\\241du)-377(p)-27(o)-28(d)1(am)-1(,)-377(j)1(ak)-378(B\\363g)-377(w)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)1(ie)-1(,)-333(wsz)-1(ysc)-1(y)-333(s\\252ysz)-1(eli.)-333(Ja)-333(c)-1(i)-333(u)1(krad)1(\\252am)-1(,)-333(mas)-1(z)-334(\\261wiadk)1(i,)-333(t)28(y)-333(torb)-27(o?)-1(.)1(.)]TJ 27.879 -13.55 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a,)-367(c)27(h)29(yc)-1(iwsz)-1(y)-367(j)1(aki\\261)-367(k)28(o\\252e)-1(k,)-366(na)-367(dr)1(og\\246)-368(wypad)1(\\252a)-367(i)-367(do)-28(ciera)-56(j)1(\\241c)-368(k)1(ie)-1(j)-366(pies)]TJ -27.879 -13.549 Td[(rozw\\261)-1(ciec)-1(zon)28(y)83(,)-333(j)1(az)-1(gota\\252a)-333(z)-1(a)-55(jad)1(le:)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(ci)-333(kij)1(e)-1(m)-333(przyt)28(wierdz\\246)-1(!)-333(j)1(a)-334(ci)-333(z)-1(a\\261wiarcz)-1(\\246!)-333(jak)-333(ci...)]TJ 0 -13.549 Td[({)-498(P)28(o)-28(d)1(e)-1(j)1(d\\271,)-498(pan)1(i)-498(w)27(\\363)-55(jto)28(w)28(o!)-498(T)-1(k)1(nij)-497(m)-1(e)-498(jeno,)-498(\\261wi\\253sk)56(a)-499(k)1(umo!)-498(tkn)1(ij)-498(me)-1(,)-498(t)28(y)]TJ -27.879 -13.549 Td[(sobacz)-1(a)-333(p)-28(ok)1(rak)28(o!)-333({)-334(za)28(wrz)-1(esz)-1(cz)-1(a\\252a)-333(wybiega)-56(j)1(\\241c)-334(nap)1(rze)-1(ciw.)]TJ 27.879 -13.549 Td[(Od)1(e)-1(p)-27(c)27(h)1(n\\246\\252a)-247(m)-1(\\246\\273)-1(a,)-246(kt\\363r)1(e)-1(n)-246(j\\241)-247(p)-27(o)28(ws)-1(tr)1(z)-1(ym)28(yw)28(a\\252)-1(,)-246(i)-247(r)1(oz)-1(kr)1(ac)-1(zyws)-1(zy)-247(si\\246)-247(p)-28(o)-27(d)-247(b)-27(oki)]TJ -27.879 -13.55 Td[(si\\246)-334(uj)1(\\246)-1(\\252a)-333(krzycz)-1(\\241c)-333(ur\\241)-27(gliwie:)]TJ 27.879 -13.549 Td[({)-333(B)-1(i)1(j)-333(m)-1(e,)-333(bij)1(,)-333(a)-334(k)1(rymina\\252)-333(ci\\246)-334(ni)1(e)-334(minie,)-333(pan)1(i)-333(w)27(\\363)-55(jto)28(w)27(o!)1(...)]TJ 0 -13.549 Td[({)-314(Za)28(wrzyj)-313(p)28(ysk,)-313(b)28(ym)-314(ci\\246)-314(pi)1(e)-1(rw)28(ej)-314(d)1(o)-314(k)28(ozy)-314(n)1(ie)-314(zapak)28(o)28(w)27(a\\252!)-313({)-314(k)1(rz)-1(y)1(kn\\241\\252)-313(w)27(\\363)-55(jt.)]TJ 0 -13.549 Td[({)-317(P)1(s)-1(y)-316(s)-1(e)-317(w\\261)-1(ciek\\252e)-318(zam)27(y)1(k)55(a)-55(j,)-316(b)-28(o\\261)-317(o)-28(d)-316(tego,)-317(bab)-27(\\246)-317(s)-1(w)28(o)-56(j)1(\\241)-317(w)28(e)-1(\\271)-317(lepiej)-317(n)1(a)-317(p)-27(os)-1(tr)1(o-)]TJ -27.879 -13.549 Td[(nek,)-333(b)28(y)1(c)27(h)-333(s)-1(i)1(\\246)-334(lu)1(dzi)-334(n)1(ie)-334(cz)-1(epi)1(a\\252a!)-334({)-333(gru)1(c)27(h)1(n\\246\\252)-1(a)-333(n)1(ie)-334(mog\\241c)-334(ju)1(\\273)-334(wytrzyma\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(Urz\\246)-1(d)1(nik)-333(d)1(o)-334(ci\\246)-334(m\\363)28(w)-1(i)1(,)-334(p)-27(omiark)1(uj)-333(si\\246)-1(,)-333(k)28(ob)1(ie)-1(t)1(o!)-334({)-333(za)27(w)28(o\\252a\\252)-334(gr)1(o\\271)-1(n)1(ie.)]TJ 0 -13.549 Td[({)-267(Gd)1(z)-1(i)1(e)-1(sik)-267(mi)-267(t)28(w)28(\\363)-56(j)-266(ur)1(z)-1(\\241d)-266({)-267(rozumies)-1(z!)-267(G)1(roz)-1(i)1(\\252)-267(m)-1(i)-266(b)-28(\\246dzie,)-267(wid)1(z)-1(isz)-267(go,)-267(sam)-1(e\\261)]TJ\nET\nendstream\nendobj\n1616 0 obj <<\n/Type /Page\n/Contents 1617 0 R\n/Resources 1615 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1615 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1621 0 obj <<\n/Length 9488      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(506)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(mo\\273)-1(e)-371(p\\252\\363tn)1(o)-371(wz)-1(ion)-370(la)-371(j)1(akiej)-371(k)28(o)-27(c)27(han)1(icy)-371(na)-371(k)28(oszul\\246.)-371(Gr)1(om)-1(ad)1(z)-1(k)1(ic)27(h)-370(pieni)1(\\246)-1(d)1(z)-1(y)-371(j)1(u\\273)]TJ 0 -13.549 Td[(ci)-412(n)1(ie)-412(s)-1(tar)1(c)-1(zy\\252o,)-412(b)-27(o\\261)-412(je)-412(pr)1(z)-1(ec)27(h)1(la\\252,)-412(p)1(ijan)1(ico.)-412(Nie)-412(b)-27(\\363)-56(j)-411(s)-1(i)1(\\246)-1(,)-411(w)-1(i)1(e)-1(d)1(z)-1(\\241,)-411(c)-1(o)-411(w)-1(y)1(rabi)1(as)-1(z.)]TJ 0 -13.549 Td[(P)28(osiedzis)-1(z)-333(s)-1(e)-334(i)-333(t)28(y)84(,)-333(pani)1(e)-334(ur)1(z)-1(\\246dn)1(iku,)-333(p)-27(osie)-1(d)1(z)-1(i)1(s)-1(z!)]TJ 27.879 -13.549 Td[(Ale)-275(tego)-275(ju\\273)-275(b)28(y)1(\\252)-1(o)-275(za)-275(wiele)-276(l)1(a)-275(ob)-28(o)-55(jga,)-274(\\273)-1(e)-275(kiej)-275(wilk)1(i)-275(sk)28(o)-28(c)-1(zyli)-274(na)-275(n)1(i\\241;)-275(pi)1(e)-1(r)1(w)-1(sz)-1(a)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)1(o)27(w)28(a)-308(c)27(h)1(las)-1(n)1(\\246)-1(\\252a)-308(j)1(\\241)-308(kijem)-308(przez)-309(p)28(ysk)-308(i)-308(z)-308(dziki)1(m)-309(kwik)1(ie)-1(m)-308(w)-308(kud)1(\\252y)-308(s)-1(i)1(\\246)-309(w)28(c)-1(ze)-1(p)1(i\\252a)]TJ 0 -13.55 Td[(pazur)1(am)-1(i)1(,)-333(z)-1(a\\261)-334(w)28(\\363)-56(j)1(t)-334(j)1(\\241\\252)-334(p)1(ra\\242)-334(p)1(i\\246\\261)-1(ciami,)-333(k)56(a)-56(j)-333(p)-27(opad)1(\\252)-1(o.)]TJ 27.879 -13.549 Td[(Bartek)-333(w)-334(ten)-333(m)-1(i)1(g)-334(sk)28(o)-28(cz)-1(y\\252)-333(na)-333(p)-27(om)-1(o)-27(c)-334(s)-1(w)28(o)-56(j)1(e)-1(j)1(.)]TJ 0 -13.549 Td[(Zw)27(ar)1(li)-432(si\\246)-433(ki)1(e)-1(j)-432(p)1(s)-1(y)-432(w)-432(nierozpl)1(\\241tan\\241)-432(ku)1(p)-28(\\246,)-432(\\273)-1(e)-432(ani)-432(roze)-1(zna\\252,)-432(cz)-1(y)1(je)-433(p)1(i\\246\\261)-1(cie)]TJ -27.879 -13.549 Td[(m\\252\\363)-28(c)-1(\\241)-455(k)1(ie)-1(b)29(y)-455(c)-1(epami,)-455(cz)-1(y)1(je)-455(g\\252o)27(wy)-455(si\\246)-455(tac)-1(za)-56(j)1(\\241)-455(i)-455(c)-1(zyj)1(e)-456(s\\241)-455(krzyki.)-454(Przyw)28(arli)-454(s)-1(i\\246)]TJ 0 -13.549 Td[(do)-387(p)1(\\252)-1(ot)1(a)-388(i)-387(p)1(rz)-1(eto)-28(cz)-1(y)1(li)-387(s)-1(i)1(\\246)-388(z)-1(n)1(o)28(w)-1(u)-387(n)1(a)-387(drog\\246)-387(kiej)-387(s)-1(n)1(op)28(y)-387(wic)27(h)28(u)1(r\\241)-387(z)-1(ak)1(r\\246)-1(cone,)-387(a\\273)-388(w)]TJ 0 -13.549 Td[(k)28(o\\253cu,)-333(zmaga)-56(j\\241c)-333(s)-1(i\\246)-333(c)-1(oraz)-333(z)-1(a)-55(jad)1(le)-1(j)1(,)-333(run)1(\\246)-1(l)1(i)-333(na)-333(z)-1(iem,)-334(w)-333(pi)1(as)-1(ek.)]TJ 27.879 -13.55 Td[(Ku)1(rz)-345(ic)27(h)-344(z)-1(ak)1(ry\\252,)-345(i)1(\\273)-346(j)1(e)-1(n)1(o)-345(kr)1(z)-1(yk)1(i)-345(a)-345(p)-27(om)-1(sto)28(w)27(an)1(ia)-345(si\\246)-345(rozle)-1(ga\\252y)1(;)-345(tul)1(ali)-345(si\\246)-345(p)-28(o)]TJ -27.879 -13.549 Td[(dr)1(o)-28(dze)-334(b)1(ij\\241c)-333(a)-334(wrze)-1(sz)-1(cz\\241c)-334(wnieb)-28(og\\252osy)83(.)]TJ 27.879 -13.549 Td[(Cz)-1(ase)-1(m)-412(ktosik)-412(wyry)1(w)27(a\\252)-412(si\\246)-413(z)-412(kup)29(y)83(,)-412(cz)-1(ase)-1(m)-412(i)-412(ws)-1(zystkie)-412(naraz)-412(p)-28(o)-27(dn)1(os)-1(i\\252y)]TJ -27.879 -13.549 Td[(si\\246)-392(n)1(a)-391(nogi)1(,)-391(a)-391(c)28(h)28(yta)-55(j\\241c)-391(w)-391(gar\\261)-1(cie,)-391(co)-391(p)-28(op)1(ad\\252o,)-390(z)-1(n)1(o)27(wu)-390(bil)1(i)-391(na)-391(siebie,)-391(za)-391(\\252b)28(y)-390(s)-1(i\\246)]TJ 0 -13.549 Td[(w)28(o)-28(dz\\241c)-1(,)-333(za)-334(or)1(z)-1(y)1(dle,)-333(z)-1(a)-333(s)-1(zp)-27(ondr)1(y)83(.)]TJ 27.879 -13.55 Td[(W)84(rz)-1(ask)-232(s)-1(i)1(\\246)-233(roz)-1(n)1(i\\363s\\252)-233(n)1(a)-233(ca\\252)-1(\\241)-232(wie\\261)-1(,)-232(wys)-1(tr)1(ac)27(h)1(ane)-233(ku)1(ry)-232(gdak)56(a\\252y)-232(p)-28(o)-232(s)-1(ad)1(ac)27(h)1(,)-233(p)1(s)-1(y)]TJ -27.879 -13.549 Td[(j\\246\\252y)-314(sz)-1(cze)-1(k)56(a\\242)-1(,)-313(bab)28(y)-313(p)-27(o)-28(dn)1(ie)-1(s\\252y)-314(l)1(am)-1(en)28(t)28(y)83(,)-313(t\\252o)-28(cz)-1(\\241c)-314(s)-1(i)1(\\246)-315(d)1(ok)28(o\\252a)-314(b)-27(e)-1(zradn)1(ie,)-314(a\\273)-314(dop)1(iero)]TJ 0 -13.549 Td[(nad)1(bi)1(e)-1(g\\252e)-334(c)28(h\\252op)28(y)-333(roze)-1(r)1(w)27(ali)-333(b)1(ij\\241cyc)28(h.)]TJ 27.879 -13.549 Td[(Co)-466(tam)-466(b)29(y\\252o)-466(j)1(e)-1(sz)-1(cz)-1(e)-466(p)1(rze)-1(kl)1(e)-1(\\253)1(s)-1(t)28(w,)-465(p\\252ac)-1(z\\363)28(w)-466(a)-466(wygr)1(a\\273)-1(a\\253)1(,)-466(to)-465(i)-466(n)1(ie)-466(wyp)-27(o-)]TJ -27.879 -13.549 Td[(wiedzie)-1(\\242.)-362(Somsiady)-361(p)-28(or)1(oz)-1(latal)1(i)-362(s)-1(i)1(\\246)-363(zaraz,)-362(ab)28(y)-362(ic)28(h)-362(n)1(a)-363(\\261wiadk)28(\\363)28(w)-362(ni)1(e)-363(p)-27(o)-28(dan)1(o;)-362(ale)]TJ 0 -13.55 Td[(rozp)-27(o)27(wiad)1(ali)-333(ws)-1(z\\246)-1(d)1(y)83(,)-333(n)1(ib)28(y)-333(p)-27(o)-28(d)-333(s)-1(ekr)1(e)-1(tem)-1(,)-333(j)1(ak)-333(w)27(\\363)-55(jto)28(wie)-334(sro)-28(d)1(z)-1(e)-334(zbi)1(li)-333(Koz\\252)-1(\\363)28(w.)-333(.)]TJ 27.879 -13.549 Td[(A)-348(n)1(ie)-348(w)-1(y)1(s)-1(z\\252o)-348(i)-348(p)1(aru)-348(p)1(ac)-1(i)1(e)-1(r)1(z)-1(y)84(,)-348(w)28(\\363)-56(jt)-347(z)-349(zapu)1(c)27(h)1(\\252ym)-348(p)28(yskiem)-349(wraz)-348(z)-348(k)28(obi)1(e)-1(t\\241,)]TJ -27.879 -13.549 Td[(te\\273)-476(ni)1(e)-1(zgorze)-1(j)-475(zasinion)1(\\241)-475(i)-475(p)-28(o)-27(drap)1(an\\241,)-475(p)1(ie)-1(r)1(ws)-1(i)-475(p)-27(o)-56(j)1(e)-1(c)28(hali)-475(sk)56(arg\\246)-476(p)-27(o)-28(d)1(a)27(w)28(a\\242)-1(.)-475(Za\\261)]TJ 0 -13.549 Td[(dop)1(iero)-333(w)-334(j)1(ak)55(\\241)-333(go)-28(d)1(z)-1(in)1(\\246)-334(ru)1(s)-1(zyli)-333(Koz\\252o)28(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-239(P\\252os)-1(zk)56(a,)-240(n)1(a)28(w)27(et)-240(wielce)-240(c)27(h\\246tliwie,)-239(b)-28(o)-239(z)-1(a)-239(dar)1(m)-1(o,)-239(z)-1(go)-27(dzi\\252)-240(si\\246)-240(ic)27(h)-239(p)-27(o)28(wie)-1(\\271\\242)]TJ -27.879 -13.55 Td[(do)-333(miasta,)-333(b)28(yle)-334(si\\246)-334(j)1(e)-1(n)1(o)-334(p)-27(o)-333(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lsku)-333(p)1(rz)-1(y)1(s)-1(\\252u)1(\\273)-1(y\\242)-333(w)27(\\363)-55(jto)28(wi.)]TJ 27.879 -13.549 Td[(Jec)27(hal)1(i)-340(p)-27(o)-28(da)28(w)28(a\\242)-340(s)-1(k)56(arg\\246,)-340(wi\\246c)-340(jak)-339(s)-1(i\\246)-340(b)28(y)1(li)-340(p)-27(o)-28(d)1(nie\\261)-1(l)1(i)-340(z)-340(bi)1(tki)-340(n)1(i)-340(\\271dziebk)56(a)-340(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-334(ogarn)1(ia)-56(j)1(\\241c)-1(,)-333(tak)-333(ru)1(s)-1(zyli)1(.)]TJ 27.879 -13.549 Td[(Um)27(y)1(\\261)-1(ln)1(ie)-248(te\\273)-248(p)1(rz)-1(ez)-248(wie\\261)-248(jec)27(h)1(ali)-247(s)-1(t\\246pa,)-247(b)28(y)-247(m\\363)-28(c)-248(rozp)-27(o)27(wiad)1(a\\242)-248(sw)27(o)-55(je)-248(kr)1(z)-1(ywd)1(y)83(,)]TJ -27.879 -13.549 Td[(a)-333(ran)28(y)-333(ok)56(az)-1(y)1(w)27(a\\242)-334(k)56(a\\273dem)27(u)1(,)-334(k)1(to)-334(j)1(e)-1(n)1(o)-333(c)27(hcia\\252)-333(patrze\\242)-1(.)]TJ 27.879 -13.55 Td[(Kozio\\252)-415(mia\\252)-414(\\252)-1(eb)-414(rozw)27(alon)29(y)-415(d)1(o)-415(k)28(o\\261c)-1(i)1(,)-415(j)1(a\\273)-1(e)-415(m)28(u)-414(krew)-415(z)-1(al)1(e)-1(w)28(a\\252a)-415(ca\\252)-1(\\241)-414(t)28(w)27(ar)1(z)-1(,)]TJ -27.879 -13.549 Td[(sz)-1(yj)1(\\246)-376(i)-374(piersi,)-375(wid)1(ne)-375(s)-1(p)-27(o)-28(d)-374(p)-28(or)1(oz)-1(r)1(yw)27(an)1(e)-1(j)-374(k)28(os)-1(zul)1(i.)-375(Niewie)-1(l)1(a)-375(go)-375(ju)1(\\273)-376(b)-27(ola\\252o,)-375(al)1(e)-376(co)]TJ 0 -13.549 Td[(tro)-27(c)27(ha)-333(za)-334(b)-27(oki)-333(si\\246)-334(c)27(h)29(w)-1(y)1(ta\\252)-334(i)-333(p)1(rz)-1(era\\271liwie)-333(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-405(Lab)-27(oga,)-405(nie)-405(z)-1(d)1(z)-1(ier\\273\\246)-1(!)-404(Ws)-1(zystkie)-405(z)-1(iob)1(ra)-405(mi)-405(przetr\\241ci\\252!)-405(Ratuj)1(ta,)-405(lud)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(ratu)1(jta,)-333(b)-27(o)-333(p)-28(omr\\246!...)]TJ 27.879 -13.549 Td[(A)-333(Magda)-333(wt\\363ro)28(w)28(a\\252a)-334(lamen)28(tliwie:)]TJ 0 -13.55 Td[({)-404(K\\252oni)1(c)-1(\\241)-404(go)-404(pra\\252!)-404(Cic)28(ho)-55(j,)-404(c)27(h)29(udziaku)1(!)-404(s)-1(p)-27(on)1(ie)-1(wiera\\252)-404(c)-1(i)1(\\246)-405(kiej)-404(p)1(s)-1(a,)-404(ale)-404(jes)-1(t)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-278(spra)28(wiedli)1(w)27(o\\261\\242)-278(i)-278(k)56(ara)-278(n)1(a)-278(zb)-28(\\363)-55(j\\363)28(w,)-278(j)1(e)-1(st!)-277(C)-1(i)1(c)27(ho)-55(j,)-277(m)-1(i)1(z)-1(eraku)1(!)-278(d)1(obrze)-278(c)-1(i)-277(on)-277(z)-1(a-)]TJ 0 -13.549 Td[(p\\252aci!)-243(Na)-244(\\261m)-1(ier\\242)-244(c)27(h)1(c)-1(i)1(a\\252)-244(go)-244(zabi\\242,)-243(w)-1(i)1(dzie)-1(l)1(i)-244(lu)1(dzie,)-244(ledwie)-244(go)-244(ob)1(ron)1(ili,)-243(to)-244(za\\261)-1(wiar)1(c)-1(z\\241)]TJ 0 -13.549 Td[(w)-299(s\\241dzie)-299(p)-28(o)-27(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(!)-298({)-299(dar)1(\\252a)-299(si\\246)-1(,)-298(raz)-299(p)-27(o)-299(r)1(az)-300(wyb)1(uc)28(ha)-55(j\\241c)-299(s)-1(t)1(ras)-1(zn)28(ym)-299(r)1(ykiem,)-299(a)-298(tak)]TJ 0 -13.549 Td[(b)28(y\\252a)-341(sp)-28(on)1(ie)-1(wieran)1(a,)-341(\\273)-1(e)-342(l)1(e)-1(d)1(w)-1(i)1(e)-342(j\\241)-341(p)-27(oz)-1(n)1(a)27(w)28(ali.)-341(Z)-341(go\\252ym)-342(\\252b)-27(e)-1(m)-341(jec)27(ha\\252a,)-341(w\\252os)-1(y)-341(mia-)]TJ 0 -13.55 Td[(\\252a)-354(p)-27(o)28(wyryw)28(ane)-354(wr)1(az)-354(z)-1(e)-354(sk)28(\\363r\\241,)-353(nad)1(e)-1(r)1(w)27(an)1(e)-354(usz)-1(y)84(,)-353(o)-28(cz)-1(y)-353(z)-1(ak)1(rw)27(a)28(wion)1(e)-354(i)-353(c)-1(a\\252\\241)-353(t)27(w)28(arz)]TJ 0 -13.549 Td[(p)-27(o)-28(dar)1(t\\241)-344(pazurami,)-344(j)1(akb)28(y)-344(j)1(\\241)-344(kto)-344(p)-28(ob)1(ron)1(o)27(w)28(a\\252,)-344(\\273e)-345(c)27(h)1(o)-28(\\242)-345(wiedzieli,)-344(co)-344(to)-344(z)-1(a)-344(zi\\363\\252k)28(o,)]TJ\nET\nendstream\nendobj\n1620 0 obj <<\n/Type /Page\n/Contents 1621 0 R\n/Resources 1619 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1619 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1624 0 obj <<\n/Length 8453      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(507)]TJ -358.232 -35.866 Td[(a)-333(niejeden)-333(s)-1(zcz)-1(erze)-334(s)-1(i)1(\\246)-334(lito)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(tak)-333(p)-27(obi\\242)-333(lud)1(z)-1(i)1(,)-334(n)1(o!)]TJ 0 -13.549 Td[({)-333(Ws)-1(t)28(y)1(d)-333(i)-333(obraza)-334(b)-27(osk)55(a;)-333(to)-27(\\242)-334(ledwie)-334(\\273ywi)-333(jad)1(\\241.)]TJ 0 -13.549 Td[({)-463(Niez)-1(gor)1(z)-1(ej)-463(p)-27(os)-1(zlac)28(h)28(to)28(w)27(an)1(i,)-463(co?)-464(I)-463(r)1(z)-1(e\\271)-1(n)1(ik)-463(l)1(e)-1(p)1(ie)-1(j)-462(nie)-463(p)-27(oredzi...)-462(Ale)-464(p)1(a-)]TJ -27.879 -13.549 Td[(n)28(u)-450(w)28(\\363)-56(j)1(to)28(wi)-450(prze)-1(ciek)-450(ws)-1(zystk)28(o)-451(w)28(oln)1(o,)-450(nie)-450(ur)1(z)-1(\\246dn)1(ik)-450(to,)-450(ni)1(e)-451(\\014gu)1(ra?)-450({)-450(dorzuca\\252)]TJ 0 -13.55 Td[(ur)1(\\241)-28(gliwie)-333(P\\252os)-1(zk)56(a)-334(zwraca)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(do)-333(nar)1(o)-28(du)1(.)]TJ 27.879 -13.549 Td[(St)1(ropi)1(li)-314(si\\246)-314(t)28(ym)-314(w)-1(i)1(e)-1(lce,)-314(b)-27(o)-314(c)27(h)1(o)-28(\\242)-314(Koz)-1(\\252y)-313(da)28(wna)-314(j)1(u\\273)-314(pr)1(z)-1(ejec)27(h)1(ali,)-314(wie\\261)-314(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(d\\252u)1(go)-334(n)1(ie)-334(mog\\252a)-334(si\\246)-334(u)1(s)-1(p)-27(ok)28(oi\\242.)]TJ 27.879 -13.549 Td[(T)83(eres)-1(k)56(a,)-392(kt\\363r)1(a)-392(z)-1(e)-392(s)-1(tr)1(ac)27(h)28(u)-392(sc)27(h)1(o)28(w)27(a\\252a)-392(s)-1(i)1(\\246)-393(w)-392(c)-1(zas)-393(b)1(itki)1(,)-392(wylaz\\252)-1(a)-392(sk)56(\\241dci\\261)-393(d)1(o-)]TJ -27.879 -13.549 Td[(pi)1(e)-1(r)1(o,)-334(k)1(ie)-1(j)-333(j)1(u\\273)-333(obie)-334(stron)29(y)-333(p)-28(o)-55(jec)27(ha\\252y)-333(d)1(o)-334(s\\241d\\363)28(w.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252a)-407(z)-1(ar)1(az)-408(d)1(o)-407(Koz\\252\\363)28(w)-1(,)-406(\\273)-1(e)-407(to)-406(B)-1(ar)1(te)-1(k)-406(p)-28(o)-27(c)-1(iot)1(kiem)-408(j)1(e)-1(j)-406(wyp)1(ada\\252)-407(z)-407(mat-)]TJ -27.879 -13.55 Td[(cz)-1(yn)1(e)-1(j)-314(s)-1(tr)1(on)28(y)84(.)-315(W)-315(c)27(h)1(a\\252up)1(ie)-316(n)1(ie)-315(b)28(y\\252o)-315(ni)1(k)28(ogo,)-315(jeno)-315(n)1(a)-315(dw)28(orze)-316(p)-27(o)-28(d)-314(\\261)-1(cian\\241)-315(siedzia\\252o)]TJ 0 -13.549 Td[(t)28(yc)27(h)-332(tro)-56(j)1(e)-334(dziec)-1(i)-333(p)1(rzywie)-1(zion)28(y)1(c)27(h)-333(z)-334(W)84(arsz)-1(a)28(wy)83(.)]TJ 27.879 -13.549 Td[(T)83(u)1(li\\252y)-279(si\\246)-279(do)-279(siebie,)-279(\\252ap)-27(cz)-1(ywie)-279(ogry)1(z)-1(a)-55(j\\241c)-279(z)-1(i)1(e)-1(mniak)1(i)-279(n)1(ie)-279(dogoto)28(w)27(an)1(e)-1(,)-278(a)-279(br)1(o-)]TJ -27.879 -13.549 Td[(ni)1(\\241c)-272(si\\246)-271(piskiem)-271(i)-271(\\252y\\273k)56(am)-1(i)-270(o)-28(d)-271(p)1(rosi\\241t.)-271(A)-270(tak)-271(b)28(y\\252y)-270(z)-1(ab)1(ie)-1(d)1(z)-1(on)1(e)-1(,)-270(wyc)27(h)28(u)1(d\\252e)-271(i)-271(ob)1(ros)-1(\\252e)]TJ 0 -13.549 Td[(br)1(ud)1(e)-1(m,)-297(j)1(a\\273)-1(e)-297(lito\\261\\242)-297(j\\241)-297(wz)-1(i)1(\\246)-1(\\252a.)-297(P)1(rze)-1(n)1(ie)-1(s\\252a)-297(je)-297(do)-296(s)-1(ieni)1(,)-297(a)-297(p)-27(oz)-1(a)28(wie)-1(r)1(a)28(w)-1(sz)-1(y)-296(dr)1(z)-1(wi,)-297(j)1(u\\273)]TJ 0 -13.55 Td[(w)-334(d)1(yrd)1(y)-333(p)-28(ol)1(e)-1(cia\\252a)-334(z)-333(no)28(winami.)]TJ 27.879 -13.549 Td[(U)-333(Go\\252\\246)-1(b)1(i\\363)28(w)-334(j)1(e)-1(n)1(o)-334(Nastk)56(a)-334(b)29(y\\252a.)]TJ 0 -13.549 Td[(Mateusz)-299(j)1(e)-1(szc)-1(ze)-299(p)1(rze)-1(d)-298(\\261ni)1(adan)1(ie)-1(m)-298(p)-27(os)-1(ze)-1(d)1(\\252)-298(b)28(y\\252)-298(do)-298(S)1(tac)27(h)1(a,)-298(B)-1(y)1(lico)27(w)28(e)-1(go)-298(zi\\246-)]TJ -27.879 -13.549 Td[(cia.)-294(W\\252a\\261)-1(n)1(ie)-294(w)-1(r)1(az)-295(z)-294(nim)-294(p)-28(enetro)28(w)28(a\\252)-295(r)1(oz)-1(w)28(alon)1(\\241)-295(c)28(ha\\252up)-27(\\246,)-294(c)-1(zyb)28(y)-294(si\\246)-294(nie)-294(da\\252a)-294(p)-27(o)-28(d-)]TJ 0 -13.549 Td[(ni)1(e)-1(\\261\\242)-1(.)-333(Bylica)-333(c)27(ho)-27(dzi\\252)-334(za)-333(nimi,)-333(j)1(\\241k)55(a)-55(j\\241c)-334(n)1(iekiedy)-333(s)-1(w)28(o)-56(j)1(e)-1(.)]TJ 27.879 -13.55 Td[(P)28(an)-323(Jace)-1(k)-323(za\\261)-324(sie)-1(d)1(z)-1(i)1(a\\252)-324(jak)-323(za)28(w)-1(d)1(y)-323(na)-323(progu)1(,)-323(pap)1(ie)-1(r)1(os)-1(a)-323(kur)1(z)-1(y)1(\\252)-324(i)-323(p)-27(ogw)-1(i)1(z)-1(d)1(y-)]TJ -27.879 -13.549 Td[(w)28(a\\252)-334(n)1(a)-334(go\\252\\246bie)-334(k)28(o\\252u)1(j\\241ce)-334(nad)-332(trze)-1(\\261niami.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-333(s)-1(i\\246)-333(ju\\273)-333(p)-28(o)-28(d)1(nosi\\252o)-333(ku)-333(p)-27(o\\252udn)1(io)28(wi,)-333(c)-1(i)1(e)-1(p\\252o)-333(b)28(y\\252o)-333(galan)28(t)1(e)-1(.)]TJ 0 -13.549 Td[(Nagrzane)-329(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-329(mie)-1(n)1(i\\252o)-329(si\\246)-329(nad)-328(p)-27(olami)-329(ki)1(e)-1(j)-328(w)27(o)-27(da,)-328(z)-1(b)-27(o\\273)-1(a)-328(i)-329(sady)-328(s)-1(ta\\252y)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-292(w)-292(s)-1(\\252o\\253)1(c)-1(e)-292(z)-1(ap)1(atrzone,)-292(\\273)-1(e)-292(jeno)-292(n)1(ie)-1(ki)1(e)-1(d)1(y)-292(z)-293(tr)1(z)-1(e\\261)-1(n)1(i)-292(Bylico)28(w)-1(y)1(c)27(h)-292(spad)1(a\\252)-292(okwiat)]TJ 0 -13.55 Td[(c)27(h)29(w)-1(i)1(e)-1(j)1(\\241c)-334(s)-1(i)1(\\246)-334(na)-333(tra)28(w)28(ac)27(h)-333(ni)1(b)28(y)-333(bia\\252y)-333(mot)28(yl.)]TJ 27.879 -13.549 Td[(Do)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o)-225(p)-27(o\\252ud)1(nie,)-225(kiej)-225(Mateusz)-226(sk)28(o\\253cz)-1(y)1(\\252)-226(ogl)1(\\241dani)1(e)-1(;)-225(a)-225(dzi\\363b)1(i\\241c)-226(top)-27(orem)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(t)1(u)-333(i)-334(o)28(wdzie)-334(p)-27(o)-333(b)-28(ok)56(ac)28(h,)-333(rze)-1(k)1(\\252)-334(stano)28(w)27(czo:)]TJ 27.879 -13.549 Td[({)-333(Ze)-1(tla\\252e)-333(do)-333(c)-1(n)1(a,)-334(samo)-334(p)1(r\\363)-28(c)28(hn)1(o,)-334(n)1(ic)-334(z)-333(te)-1(go)-333(ni)1(e)-334(p)-28(osta)28(wi,)-333(to)-334(d)1(armo...)]TJ 0 -13.549 Td[({)-333(Dokup)1(i\\252b)28(ym)-333(niec)-1(o\\261)-333(no)28(w)27(ego,)-333(mo\\273)-1(e)-334(b)29(y)83(..)1(.)-334({)-333(sz)-1(epn)1(\\241\\252)-334(b)1(\\252)-1(agal)1(nie)-333(Stac)27(h)1(o.)]TJ 0 -13.55 Td[({)-333(Dokup)-27(cie)-334(n)1(a)-334(ca\\252\\241)-334(c)28(ha\\252up)-27(\\246,)-334(z)-333(te)-1(go)-333(gno)-55(ju)-333(n)1(ie)-334(wyb)1(ie)-1(r)1(z)-1(e)-333(ni)-333(jedn)1(e)-1(go)-333(bal)1(a.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363)-55(jcie)-334(si\\246)-334(Boga!)]TJ 0 -13.549 Td[({)-394(D)1(y\\242)-394(pr)1(z)-1(ycies)-1(ie)-393(jes)-1(zc)-1(ze)-394(b)28(y)-393(w)-1(y)1(trzyma\\252)-1(y)84(,)-393(w)27(\\246gary)-393(jeno)-393(da\\242)-394(n)1(o)27(w)28(e...)-393(\\261)-1(cian)28(y)]TJ -27.879 -13.549 Td[(te\\273)-334(b)28(y)-333(p)-27(o)-28(dp)-27(orami)-333(w)27(es)-1(p)1(rze)-1(\\242...)-333(kl)1(am)-1(r)1(am)-1(i)-333(\\261c)-1(i\\241)-27(gn\\241\\242...)-333(dy)1(\\242)-1(..)1(.)-333({)-334(j)1(\\241k)55(a\\252)-333(stary)-333(B)-1(y)1(lica.)]TJ 27.879 -13.549 Td[({)-426(Kiej\\261c)-1(i)1(e)-427(taki)-425(m)-1(a)-55(jste)-1(r)1(,)-426(to)-426(s)-1(ob)1(ie)-426(s)-1(ta)28(wia)-56(j)1(c)-1(i)1(e)-1(,)-426(j)1(a)-426(z)-427(p)1(r\\363)-28(c)27(h)1(na)-426(n)1(ie)-427(p)-27(oredz\\246)-427({)]TJ -27.879 -13.549 Td[(rzuci\\252)-333(gniewnie)-334(n)1(ac)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-334(sp)-28(ence)-1(r)1(e)-1(k.)]TJ 27.879 -13.55 Td[(Nadesz)-1(\\252a)-333(na)-333(to)-334(W)84(eronk)56(a)-333(z)-334(dziec)27(ki)1(e)-1(m)-334(n)1(a)-333(r\\246)-1(k)1(u)-333(i)-333(j\\246\\252)-1(a)-333(wyrzek)55(a\\242:)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(m)28(y)-334(t)1(e)-1(raz)-333(p)-28(o)-28(czniem)27(y)84(,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ze)-334(dw)28(a)-334(t)28(y)1(s)-1(i\\241ce)-334(trzeba)-333(b)28(y)-333(na)-333(no)28(w)28(\\241!)-333({)-334(w)28(e)-1(stc)27(h)1(n\\241\\252)-333(frasobl)1(iwie)-334(S)1(tac)27(ho.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(c)28(heba)-333(o)-334(j)1(e)-1(d)1(nej)-333(izbie)-333(z)-1(e)-334(sion)1(k)55(\\241.)]TJ 0 -13.549 Td[({)-343(Prze)-1(ciec)27(h)-343(co\\261)-344(b)28(y)-343(dr)1(z)-1(ew)27(a)-343(dosta\\252)-344(z)-344(n)1(as)-1(ze)-1(go)-343(lasu..)1(.)-344(j)1(u\\261c)-1(i)1(,)-344(\\273eb)28(y)-343(t)27(y)1(lk)28(o)-344(c)28(h)28(yla)]TJ -27.879 -13.55 Td[(t)28(yla.)1(..)-333(a)-334(r)1(e)-1(sz)-1(t\\246)-333(doku)1(pi\\246...)-333(j)1(u\\261c)-1(i.)1(..)-333(c)27(h)28(w)28(ac)-1(i)1(\\252)-1(ob)29(y)83(..)1(.)-333(W)-334(u)1(rz\\246)-1(d)1(z)-1(i)1(e)-334(pr)1(os)-1(i\\242...)]TJ 27.879 -13.549 Td[({)-308(Dad)1(z)-1(\\241)-307(to)-308(teraz,)-308(kiej)-307(b)-28(\\363r)-307(w)-308(pr)1(o)-28(ce)-1(sie)-1(!)1(...)-307(prze)-1(cie\\273)-308(na)28(w)27(et)-308(zbieran)1(in)28(y)-307(w)-1(zbr)1(o-)]TJ\nET\nendstream\nendobj\n1623 0 obj <<\n/Type /Page\n/Contents 1624 0 R\n/Resources 1622 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1622 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1627 0 obj <<\n/Length 9309      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(508)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(li.)-333(P)28(o)-28(cze)-1(k)56(a)-56(j)1(c)-1(i)1(e)-334(z)-334(c)27(h)1(a\\252up\\241)-333(d)1(o)-334(k)28(o\\253)1(c)-1(a)-333(s)-1(p)1(ra)28(wy!)-333({)-333(radzi\\252)-333(Mateusz)-1(.)]TJ 27.879 -13.549 Td[({)-271(Cz)-1(ek)56(a)-56(j)-271(t)1(atk)55(a)-271(l)1(atk)55(a,)-270(a)-272(k)56(a)-55(j\\273e)-272(si\\246)-272(to)-271(n)1(a)-271(z)-1(i)1(m)-1(\\246)-271(p)-28(o)-27(dzie)-1(j)1(e)-1(m?)-271(k)55(a)-55(j?)-271({)-271(wybu)1(c)27(h)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(W)84(e)-1(ron)1(k)56(a)-334(i)-333(zap\\252ak)56(a\\252a)-334(\\273a\\252o\\261)-1(l)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(P)28(omilk)1(li.)-337(M)1(ate)-1(u)1(s)-1(z)-337(z)-1(b)1(iera\\252)-337(s)-1(w)28(o)-56(j)1(e)-337(p)-28(or)1(z)-1(\\241d)1(ki)-337(cie)-1(siels)-1(k)1(ie)-1(,)-336(Stac)28(ho)-337(d)1(rapa\\252)-337(si\\246)-337(w)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\246,)-332(a)-333(Bylica)-332(nos)-333(wyciera\\252)-333(za)-333(w)28(\\246g\\252)-1(em,)-332(\\273)-1(e)-333(w)-332(te)-1(j)-332(sm)27(u)1(tnej)-332(c)-1(i)1(c)27(ho\\261c)-1(i)-332(j)1(e)-1(n)1(o)-333(W)84(e)-1(r)1(on-)]TJ 0 -13.55 Td[(cz)-1(yn)-333(p)1(\\252ac)-1(z)-333(c)27(hl)1(ipa\\252.)]TJ 27.879 -13.549 Td[(Naraz)-333(pan)-333(Jace)-1(k)-333(si\\246)-334(p)-27(o)-28(dn)1(i\\363s\\252)-334(i)-333(g\\252o\\261no)-333(rze)-1(k\\252:)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(\\252)-1(aczc)-1(ie,)-333(W)83(eron)1(k)55(a,)-333(d)1(rze)-1(w)28(o)-334(si\\246)-334(n)1(a)-334(c)28(ha\\252u)1(p)-28(\\246)-334(zna)-55(jd)1(z)-1(ie.)]TJ 0 -13.549 Td[(Os\\252up)1(ie)-1(l)1(i)-392(s)-1(ta)-55(j\\241c)-393(z)-392(rozdzia)28(w)-1(i)1(on)28(ymi)-392(g\\246)-1(b)1(am)-1(i,)-392(a\\273)-392(dop)1(ie)-1(r)1(o)-392(Mateus)-1(z)-392(pierwsz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-334(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252)-333(i)-333(\\261)-1(miec)27(hem)-334(gr)1(uc)27(h)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-418(M)1(\\241dry)-417(obi)1(e)-1(cuj)1(e)-1(,)-417(a)-418(g\\252up)1(i)-418(si\\246)-418(rad)1(uj)1(e)-1(!)-417(T)83(o)-418(g\\252o)28(wy)-418(n)1(ie)-418(m)-1(a)-417(k)56(a)-56(j)-417(pr)1(z)-1(ytu)1(li\\242,)-418(a)]TJ -27.879 -13.55 Td[(c)27(h)1(a\\252up)28(y)-234(b)-28(\\246dzie)-235(dr)1(ugim)-235(r)1(oz)-1(d)1(a)27(w)28(a\\252!)-235({)-234(p)-28(o)28(wiedzia\\252)-235(os)-1(t)1(ro,)-235(sp)-27(o)-28(de)-235(\\252ba)-234(patrz\\241c)-235(na)-235(n)1(iego,)]TJ 0 -13.549 Td[(ale)-301(p)1(an)-300(Jac)-1(ek)-300(ju\\273)-301(si\\246)-301(n)1(ie)-301(oz)-1(w)28(a\\252,)-300(s)-1(iad)1(\\252)-301(zno)28(wuj)-300(na)-300(pr)1(ogu,)-300(z)-1(ak)1(urzy\\252)-300(papi)1(e)-1(rosa)-300(i)-301(j)1(ak)]TJ 0 -13.549 Td[(pr)1(z)-1(\\363)-27(dzi,)-333(s)-1(ku)1(bi)1(\\241c)-334(br\\363)-27(dk)28(\\246,)-333(p)-28(o)-333(ni)1(e)-1(b)1(ie)-334(w)28(o)-28(dzi\\252)-333(o)-28(c)-1(zyma.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(jt)1(a)-334(in)1(o,)-333(a)-334(n)1(iez)-1(ad)1(\\252)-1(u)1(go)-333(i)-334(ca\\252y)-333(folw)28(arcz)-1(ek)-333(w)27(ama)-333(przy)28(obi)1(e)-1(ca.)]TJ 0 -13.549 Td[(Za\\261)-1(mia\\252)-333(s)-1(i)1(\\246)-334(Mateusz)-334(i)-333(rzuciws)-1(zy)-333(ramionami)-333(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 0 -13.55 Td[(Na)-333(le)-1(w)28(o)-333(s)-1(i\\246)-333(w)-1(zi\\241\\252)-333(z)-1(ar)1(az)-334(z)-334(mie)-1(j)1(s)-1(ca,)-333(\\261)-1(cie\\273)-1(k)56(\\241)-333(wio)-28(d\\241c\\241)-333(p)-28(o)-27(d)-333(s)-1(to)-28(d)1(o\\252am)-1(i)1(.)]TJ 0 -13.549 Td[(Ma\\252o)-260(lud)1(z)-1(i)-260(rob)1(i\\252o)-261(d)1(z)-1(i)1(s)-1(ia)-55(j)-260(na)-260(ogro)-28(d)1(ac)27(h,)-260(b)-27(o)-261(j)1(e)-1(n)1(o)-261(k)56(a)-56(j)1(\\261)-261(ni)1(e)-1(k)56(a)-56(j)-260(cz)-1(erwienia\\252a)-260(k)28(o-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(ta)-292(alb)-27(o)-293(jak)1(i\\261)-293(c)27(h)1(\\252op)-293(n)1(apr)1(a)27(wia\\252)-292(dac)27(h)1(,)-293(t)1(o)-293(cos)-1(ik)-292(ma)-56(jd)1(ro)28(w)28(a\\252)-293(w)27(e)-293(wr\\363t)1(niac)28(h)-293(sto)-28(d)1(\\363\\252,)]TJ 0 -13.549 Td[(p)-27(o)27(wywieran)29(yc)27(h)-333(n)1(a)-334(p)-27(ola.)]TJ 27.879 -13.549 Td[(Nie\\261)-1(p)1(ies)-1(zno)-266(b)28(y\\252o)-267(M)1(ate)-1(u)1(s)-1(zo)28(w)-1(i)1(,)-267(gd)1(y\\273)-267(rad)-266(p)1(rzys)-1(ta)28(w)28(a\\252)-267(p)-27(oredza)-56(jac)-267(z)-267(c)28(h\\252op)1(am)-1(i)]TJ -27.879 -13.55 Td[(o)-380(w)27(\\363)-55(jto)28(w)27(ej)-380(bi)1(tc)-1(e,)-380(do)-381(d)1(z)-1(i)1(e)-1(u)1(c)27(h)-380(z\\246)-1(b)28(y)-380(sz)-1(cz)-1(erzy\\252)-381(i)-380(w)28(e)-1(so\\252o)-381(zagadyw)28(a\\252,)-380(a)-381(gdzie)-381(zn\\363)28(w)]TJ 0 -13.549 Td[(bab)-27(om)-426(tak)-425(tr)1(e)-1(f)1(nie)-426(p)1(rzys)-1(ol)1(i\\252,)-425(ja\\273e)-426(\\261)-1(miec)27(h)-425(z)-1(ar)1(e)-1(c)28(hota\\252)-425(na)-425(ogro)-28(d)1(ac)27(h,)-425(\\273e)-426(niejedn)1(a)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a)-56(j)1(\\241c)-334(s)-1(z\\252a)-333(z)-1(a)-333(nim)-333(o)-28(c)-1(zyma.)]TJ 27.879 -13.549 Td[(Jak\\273e)-1(,)-475(u)1(ro)-28(d)1(n)28(y)-475(b)28(y\\252)-475(i)-475(w)-1(y)1(ros)-1(\\252y)-475(ki)1(e)-1(j)-475(d)1(\\241b,)-475(a)-475(jakb)28(y)-475(kr)1(\\363l)-475(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-475(w)28(e)-476(ws)-1(i)]TJ -27.879 -13.549 Td[(par)1(obk)28(\\363)28(w,)-293(b)-27(o)-293(i)-293(mo)-28(carz)-293(p)-28(o)-292(An)28(tku)-292(B)-1(or)1(yni)1(e)-294(p)1(ierws)-1(zy)83(,)-292(i)-293(tan)1(e)-1(cz)-1(n)1(ik)-293(r)1(\\363)27(wn)28(y)-292(Stac)28(ho)28(wi)]TJ 0 -13.55 Td[(P\\252osz)-1(ce,)-357(a)-356(i)-356(m)-1(\\241d)1(rala.)-356(\\233e)-357(za\\261)-357(pr)1(z)-1(y)-356(t)28(ym)-357(spr)1(a)27(wn)28(y)-356(b)28(y)1(\\252)-357(d)1(o)-357(k)56(a\\273)-1(d)1(e)-1(j)-356(r)1(ob)-28(ot)28(y)84(,)-356(b)-28(o)-356(i)-356(w)27(\\363z)]TJ 0 -13.549 Td[(zrobi)1(\\252)-1(,)-318(i)-318(k)28(om)-1(i)1(n)-319(p)-27(osta)27(wi\\252,)-318(i)-318(c)27(ha\\252u)1(p)-28(\\246)-319(wyr)1(yc)27(h)28(t)1(o)27(w)28(a\\252,)-319(i)-318(na)-318(\\015ec)-1(i)1(ku)-318(pi\\246kni)1(e)-319(w)-1(y)1(gryw)28(a\\252,)]TJ 0 -13.549 Td[(to)-303(c)27(h)1(o)-28(c)-1(i)1(a\\273)-304(pr)1(a)27(wie)-303(nie)-303(m)-1(i)1(a\\252)-304(gron)29(tu)-303(i)-303(grosz)-304(si\\246)-304(go)-303(ni)1(e)-304(utr)1(z)-1(yma\\252,)-303(i\\273)-304(szc)-1(zo)-28(dr)1(y)-303(b)28(y\\252)-303(la)]TJ 0 -13.549 Td[(dr)1(ugic)28(h,)-367(a)-367(ni)1(e)-1(j)1(e)-1(d)1(na)-367(m)-1(atk)56(a)-367(rad)1(a)-368(b)29(y)-367(z)-368(nim)-367(pr)1(z)-1(epi\\252a)-367(c)27(h)1(o)-28(\\242b)28(y)-367(c)-1(a\\252ego)-368(cielak)56(a,)-367(b)28(yc)27(h)]TJ 0 -13.549 Td[(go)-397(jeno)-397(na)-397(z)-1(i\\246cia)-398(p)1(rzys)-1(p)-27(osobi\\242,)-397(z)-1(a\\261)-398(n)1(iejedna)-397(dziew)27(cz)-1(y)1(na)-397(ju)1(\\273)-398(go)-398(p)1(rzypu)1(s)-1(zc)-1(za\\252a)]TJ 0 -13.55 Td[(do)-333(p)-27(o)-28(du)1(fa\\252o\\261c)-1(i)-333(rac)28(h)28(uj)1(\\241c)-1(,)-333(co)-333(p)-28(otem)-334(p)1(r\\246dze)-1(j)-333(zanies)-1(i)1(e)-334(na)-333(zap)-28(o)28(wiedzie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-334(n)1(a)-334(n)1(ic)-334(sz)-1(\\252y)-333(w)-1(szys)-1(tk)1(ie)-334(zabiegi,)-333(z)-334(m)-1(at)1(k)55(ami)-333(pi\\252,)-333(z)-334(c\\363rk)56(am)-1(i)-333(j)1(am)-1(or)1(o)27(w)28(a\\252,)-334(a)]TJ -27.879 -13.549 Td[(o)-28(d)-333(o\\273e)-1(n)1(ku)-333(wykr)1(\\246)-1(ca\\252)-334(si\\246)-334(k)1(ie)-1(j)-333(p)1(isk)28(orz.)]TJ 27.879 -13.549 Td[({)-398(Ni)1(e)-1(\\252acno)-398(wyb)1(ra\\242,)-398(b)-27(o)-398(k)56(a\\273)-1(d)1(a)-398(d)1(obra,)-397(a)-398(j)1(e)-1(sz)-1(cz)-1(e)-398(l)1(e)-1(p)1(s)-1(ze)-398(p)-28(o)-28(d)1(rasta)-56(j)1(\\241,)-398(p)-27(o)-28(cz)-1(e-)]TJ -27.879 -13.549 Td[(k)56(am)-1(.)1(..)-333({)-334(p)-27(o)28(wiada\\252)-333(s)-1(w)28(ac)27(h)1(om)-1(,)-333(r)1(a)-56(j\\241cym)-333(m)27(u)-333(r\\363\\273ne)-333(dzie)-1(wu)1(c)27(h)28(y)84(.)]TJ 27.879 -13.549 Td[(A)-361(zim\\241)-361(z)-1(m\\363)28(wi\\252)-361(s)-1(i)1(\\246)-362(b)28(y)1(\\252)-361(z)-362(T)84(e)-1(resk)55(\\241)-361(i)-360(\\273)-1(y)1(\\252)-361(z)-362(n)1(i\\241)-361(p)1(ra)28(w)-1(i)1(e)-362(n)1(a)-361(o)-28(cz)-1(ac)28(h)-361(wsz)-1(ystkiej)]TJ -27.879 -13.55 Td[(ws)-1(i)1(,)-334(n)1(ie)-334(b)1(ac)-1(z\\241c)-334(na)-333(gad)1(ania)-333(ni)-333(p)-27(ogrozy)83(.)]TJ 27.879 -13.549 Td[({)-374(W)83(r\\363)-27(c)-1(i)-374(Jasie)-1(k)1(,)-375(to)-374(m)27(u)-374(j)1(\\241)-375(o)-27(dd)1(am)-1(,)-374(jes)-1(zcz)-1(ek)-375(gor)1(z)-1(a\\252ki)-374(p)-27(os)-1(t)1(a)27(wi,)-374(\\273e)-1(m)-375(m)28(u)-374(k)28(o-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(t)28(y)-307(pil)1(no)28(w)27(a\\252)-307({)-308(p)1(rz)-1(e\\261m)-1(iew)28(a\\252)-308(s)-1(i)1(\\246)-308(z)-308(przyj)1(ac)-1(io\\252y)-307(jak)28(o\\261)-308(wkr)1(\\363tc)-1(e)-308(p)-27(o)-308(p)-27(o)28(wro)-28(cie,)-308(\\273e)-308(to)]TJ 0 -13.549 Td[(ju)1(\\273)-334(p)1(rz)-1(y)1(krzy\\252a)-334(m)28(u)-333(si\\246)-334(i)-333(z)-334(w)28(olna)-333(o)-28(d)-333(n)1(iej)-333(o)-28(dsta)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[(I)-229(te)-1(r)1(az)-1(,)-229(n)1(a)-230(ob)1(iad)-229(id)1(\\241c)-1(,)-229(d)1(\\252)-1(u)1(\\273)-1(sz\\241)-230(d)1(rog\\246)-230(wyb)1(ra\\252,)-229(b)28(yc)27(h)-228(s)-1(e)-230(p)-27(o)-229(dro)-27(dze)-230(p)-27(o\\273)-1(art)1(o)27(w)28(a\\242)]TJ -27.879 -13.55 Td[(z)-334(d)1(z)-1(ieuc)28(hami)-333(a)-334(u)1(s)-1(zc)-1(zyp)1(n\\241\\242,)-333(kt\\363r\\241)-333(s)-1(i)1(\\246)-334(da.)]TJ 27.879 -13.549 Td[(I)-346(c)-1(a\\252kiem)-347(n)1(ies)-1(p)-27(o)-28(d)1(z)-1(ian)1(ie)-347(n)1(atkn\\241\\252)-346(si\\246)-347(na)-346(Jagn)1(\\246)-1(:)-346(p)-27(e)-1(\\252\\252a)-346(c)-1(osik)-346(n)1(a)-347(matcz)-1(yn)29(ym)]TJ\nET\nendstream\nendobj\n1626 0 obj <<\n/Type /Page\n/Contents 1627 0 R\n/Resources 1625 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1625 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1630 0 obj <<\n/Length 8977      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(509)]TJ -358.232 -35.866 Td[(ogro)-27(dzie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Jagusia!)-333({)-333(w)-1(yk)1(rzykn\\241\\252)-333(rad)1(o\\261)-1(n)1(ie.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia)-333(p)-27(o)-28(dn)1(ie)-1(s\\252a)-333(s)-1(i\\246)-333(i)-334(strzeli\\252a)-333(nad)-333(zagonem)-334(kiej)-333(ta)-333(m)-1(al)1(w)27(a)-333(wys)-1(m)28(uk)1(\\252)-1(a.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(\\261)-334(to)-333(me)-334(do)-55(jr)1(z)-1(a\\252?)-334(Cie,)-333(jak)1(i)-334(p)1(r\\246dki)1(,)-333(ju\\273)-333(t)28(ydzie)-1(\\253)-332(w)27(e)-334(wsi,)-333(a)-334(d)1(opi)1(e)-1(ro.)1(..)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(j)1(e)-1(sz)-1(cz)-1(e\\261)-334(\\261licz)-1(n)1(ie)-1(j)1(s)-1(za!)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-334(p)-27(o)-28(dziw)28(e)-1(m.)]TJ 0 -13.55 Td[(Ugi\\246ta)-329(b)28(y\\252a)-329(do)-329(k)28(ol)1(an,)-329(sp)-28(o)-27(d)-329(cz)-1(erw)28(onej)-329(c)27(h)28(u)1(s)-1(t)28(y)84(,)-329(p)-27(o)-28(d)-329(b)1(ro)-28(d)1(\\241)-329(z)-1(a)28(wi\\241zanej,)-329(mo-)]TJ -27.879 -13.549 Td[(dr)1(z)-1(a\\252y)-436(ogromne;)-436(s)-1(\\252o)-28(d)1(kie)-437(o)-28(cz)-1(y)84(,)-436(bia\\252e)-437(z\\246)-1(b)29(y)-437(gr)1(a\\252)-1(y)-436(w)-437(wi\\261ni)1(o)27(wyc)28(h)-436(w)27(argac)28(h)-436(i)-437(ca\\252a)]TJ 0 -13.549 Td[(g\\246busia,)-463(zaru)1(m)-1(i)1(e)-1(n)1(iona)-463(k)1(ie)-1(j)-462(jab)1(\\252usz)-1(k)28(o,)-463(a)-463(\\261licz)-1(n)1(a,)-463(j)1(a\\273)-1(e)-463(s)-1(i)1(\\246)-464(p)1(ros)-1(i)1(\\252a)-463(o)-463(c)-1(a\\252o)28(w)27(an)1(ie.)]TJ 0 -13.549 Td[(Uj\\246\\252a)-463(si\\246)-463(har)1(do)-463(p)-27(o)-28(d)-462(b)-27(ok)-463(i)-462(bi)1(\\252a)-463(w)-463(n)1(ie)-1(go)-462(s)-1(kr)1(z)-1(\\241cymi)-463(\\261lepiami)-462(z)-464(t)1(ak)55(\\241)-462(m)-1(o)-27(c)-1(\\241,)-462(\\273)-1(e)]TJ 0 -13.549 Td[(dr)1(e)-1(sz)-1(cze)-334(go)-334(p)1(rze)-1(sz)-1(\\252y)84(.)-333(Ob)-27(e)-1(j)1(rz)-1(a\\252)-333(si\\246)-334(dok)28(o\\252a)-333(i)-333(bli)1(\\273)-1(ej)-333(p)-27(o)-28(dsz)-1(ed\\252.)]TJ 27.879 -13.549 Td[({)-333(Od)-333(t)28(ygo)-28(d)1(nia)-333(ci\\246)-334(sz)-1(u)1(k)55(am)-333(i)-333(w)-1(y)1(patru)1(j\\246)-333(p)-28(o)-333(pr)1(\\363\\273)-1(n)1(ic)-1(y)84(.)]TJ 0 -13.55 Td[({)-323(Cyga\\253)-322(s)-1(e)-323(p)1(s)-1(u)1(,)-323(to)-323(ci)-323(mo\\273e)-324(u)29(w)-1(i)1(e)-1(rzy)83(.)-322(Co)-323(wie)-1(cz\\363r)-323(z\\246)-1(b)28(y)-322(s)-1(u)1(s)-1(zy)-323(p)-27(o)-323(op)1(\\252otk)55(ac)28(h,)]TJ -27.879 -13.549 Td[(co)-334(wiec)-1(z\\363r)-333(inn)1(e)-1(j)-332(basuje,)-333(a)-333(te)-1(r)1(az)-334(b)-28(\\246dzie)-334(mi)-333(c)-1(o)-333(in)1(s)-1(ze)-1(go)-333(wma)27(wia\\252!)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(m)-1(i)1(\\246)-334(to,)-333(Jagu\\261,)-333(w)-1(i)1(tas)-1(z?)-334(co?)-334(tak)1(?)-1(.)1(.)]TJ 0 -13.549 Td[({)-334(Jak\\273e)-334(to)-334(mam)-335(i)1(nacz)-1(ej?)-334(Mo\\273e)-334(c)-1(i\\246)-334(za)-334(k)28(olana)-333(p)-28(o)-28(d)1(j\\241\\242)-334(i)-334(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)27(a\\242,)-334(\\273e)-1(\\261)-334(se)-335(o)]TJ -27.879 -13.549 Td[(mnie)-333(przyp)-27(om)-1(n)1(ia\\252?)]TJ 27.879 -13.55 Td[({)-333(B)-1(acz)-1(\\246,)-333(jak)28(e\\261)-334(to)-333(m)-1(e)-333(\\252oni)-333(pr)1(z)-1(yj)1(mo)27(w)28(a\\252a.)]TJ 0 -13.549 Td[({)-246(Co)-246(b)29(y\\252o)-246(\\252oni)1(,)-246(to)-245(nie)-246(teraz)-246({)-246(o)-27(dwr\\363)-28(ci\\252a)-246(si\\246)-246(t)28(w)27(ar)1(z)-246(kryj)1(\\241c)-1(,)-245(a)-246(on)-245(s)-1(i)1(\\246)-246(przysun)1(\\241\\252)]TJ -27.879 -13.549 Td[(nagl)1(e)-1(,)-333(ob)-27(e)-1(j)1(m)27(u)1(j\\241c)-334(j)1(\\241)-334(c)28(hciwymi)-334(r)1(\\246)-1(k)28(oma.)]TJ 27.879 -13.549 Td[(Wyr)1(w)27(a\\252a)-333(m)27(u)-333(si\\246)-334(z)-333(gniew)27(em.)]TJ 0 -13.549 Td[({)-333(P)28(oni)1(e)-1(c)27(h)1(a)-56(j)1(,)-333(b)-28(o)-333(mi)-334(T)84(e)-1(resk)55(a)-333(\\261le)-1(p)1(ie)-334(wyd)1(rapi)1(e)-334(z)-1(a)-333(cie)-1(b)1(ie!)]TJ 0 -13.55 Td[({)-333(Jagusia!)-333({)-333(le)-1(d)1(w)-1(i)1(e)-334(j\\246kn)1(\\241\\252)-1(.)]TJ 0 -13.549 Td[({)-306(Do)-307(sw)27(o)-55(jej)-306(\\273)-1(o\\252n)1(ierki)-306(wr\\363)-28(\\242)-307(se)-307(z)-307(j)1(am)-1(or)1(am)-1(i)1(...)-306(wys)-1(\\252u)1(guj)-306(si\\246)-1(,)-306(p)-27(\\363ki)-306(tam)28(te)-1(n)-306(n)1(ie)]TJ -27.879 -13.549 Td[(wr\\363)-28(ci.)-226(Odp)1(as)-1(\\252a)-227(ci\\246)-227(w)-227(kreminale,)-227(n)1(as)-1(zk)28(o)-28(d)1(o)27(w)28(a\\252a)-227(si\\246)-227(na)-227(ciebie,)-227(to)-226(jej)-227(teraz)-227(o)-28(d)1(rab)1(ia)-56(j)1(!)]TJ 0 -13.549 Td[({)-260(c)27(hl)1(as)-1(ta\\252a)-260(kiej)-260(batem,)-260(a)-261(tak)-260(wzgardl)1(iwie)-1(,)-260(\\273e)-261(Mateusz)-261(zap)-28(omni)1(a\\252)-261(j)1(\\246)-1(zyk)56(a)-261(w)-260(g\\246)-1(b)1(ie.)]TJ 27.879 -13.549 Td[(Wst)28(yd)-244(go)-244(p)1(rz)-1(ej\\241\\252,)-244(p)-27(o)-28(cz)-1(erwienia\\252)-244(ki)1(e)-1(j)-243(bur)1(ak,)-244(p)1(rz)-1(y)1(gi\\241\\252)-244(s)-1(i\\246)-244(i)-244(uciek\\252)-244(p)-28(o)-244(p)1(rostu.)]TJ 0 -13.55 Td[(A)-344(Jagn)1(\\246)-1(,)-343(c)27(h)1(o)-28(\\242)-344(p)-28(o)28(wiedzia\\252a,)-344(co)-344(cz)-1(u)1(\\252)-1(a)-343(i)-344(z)-344(cz)-1(ym)-344(si\\246)-344(ju)1(\\273)-344(c)-1(a\\252y)-343(t)27(y)1(dzie)-1(\\253)-343(n)1(os)-1(i\\252a,)]TJ -27.879 -13.549 Td[(\\273al)-334(t)1(e)-1(raz)-333(ogarn\\241\\252:)-333(n)1(ie)-334(m)27(y)1(\\261)-1(la\\252a,)-333(i\\273)-333(s)-1(i\\246)-333(oz)-1(gn)1(ie)-1(w)28(a)-333(i)-334(p)-27(\\363)-55(jdzie)-334(sobi)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-317(G\\252up)1(i,)-317(prze)-1(ciec)27(h)-317(ja)-317(in)1(o)-318(tak)-317(sobie)-318(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(am,)-317(pr)1(z)-1(ez)-318(z)-1(\\252o\\261c)-1(i)1(!)-318({)-317(m)27(y)1(\\261)-1(la\\252a,)]TJ -27.879 -13.549 Td[(mark)28(otn)1(ie)-334(patr)1(z)-1(\\241c)-333(z)-1(a)-333(nim.)-333({)-333(I)-334(\\273e)-1(b)29(y)-334(si\\246)-334(zaraz)-334(ozgni)1(e)-1(w)28(a\\242)-1(!)-333(..)1(.Mateusz)-1(!)]TJ 27.879 -13.549 Td[(Ale)-334(n)1(ie)-334(u)1(s)-1(\\252ysza)-1(\\252,)-333(\\261m)-1(i)1(ga)-56(j)1(\\241c)-334(pr)1(z)-1(ez)-334(s)-1(ad)-332(jakb)28(y)-333(p)-27(os)-1(zcz)-1(u)1(t)27(y)84(.)]TJ 0 -13.55 Td[({)-273(Z\\252a)-273(osa,)-273(\\261)-1(cierw)28(o!)-273({)-273(mrucza\\252)-273(le)-1(c\\241c)-273(ju\\273)-273(p)1(ros)-1(to)-272(do)-273(d)1(om)27(u.)-272(Gni)1(e)-1(w)-273(n)1(im)-273(m)-1(iot)1(a\\252)]TJ -27.879 -13.549 Td[(na)-464(prze)-1(mian)-464(z)-465(p)-28(o)-27(dziw)27(em.)-465(Jak\\273e)-1(,)-464(z)-1(a)28(wdy)-464(b)28(y\\252a)-465(tak)56(a)-465(tr)1(usia,)-465(g\\246b)28(y)-464(oz)-1(ew)-1(r)1(z)-1(e\\242)-465(nie)]TJ 0 -13.549 Td[(p)-27(oredzi\\252a.)-342(T)83(o)-28(\\242)-342(go)-342(sp)-28(on)1(iew)-1(i)1(e)-1(r)1(a\\252)-1(a)-341(kiej)-342(p)1(s)-1(a!)-341(Ws)-1(t)28(yd)-341(ni)1(m)-342(z)-1(atrz\\241s\\252)-1(,)-341(\\273)-1(e)-342(zob)-28(ejr)1(z)-1(a\\252)-342(si\\246,)]TJ 0 -13.549 Td[(cz)-1(y)-333(ab)28(y)-333(kto)-333(ni)1(e)-334(s)-1(\\252y)1(s)-1(za\\252)-334(j)1(e)-1(j)-333(p)29(ys)-1(k)28(o)28(w)28(ania.)]TJ 27.879 -13.549 Td[({)-359(T)83(e)-1(r)1(e)-1(sk)28(\\246)-360(m)27(u)-359(wyp)-27(omina!)-359(G\\252u)1(pia!)1(...)-359(c)-1(o)-359(m)28(u)-359(ta)-360(\\273o\\252nierk)56(a?...)-359(zaba)28(w)27(a)-359(i)-359(t)28(yla!)]TJ -27.879 -13.549 Td[(A)-363(jak)-363(to)-363(\\261le)-1(p)1(iami)-363(s)-1(yp)1(n\\246\\252a!)-363(jak)-363(to)-363(har)1(no)-363(p)-28(o)-27(d)-363(b)-28(ok)-363(si\\246)-364(u)1(j\\246\\252a!)-363(jak)-363(to)-363(bu)1(c)27(h)1(n\\246\\252)-1(o)-363(o)-28(d)]TJ 0 -13.55 Td[(ni)1(e)-1(j)-386(l)1(ub)-27(o\\261)-1(ci\\241!..)1(.)-386(Je)-1(zu,)-386(i)-386(w)-386(p)28(ysk)-386(wz)-1(i\\241\\242)-386(o)-28(d)-386(taki)1(e)-1(j)-386(n)1(ie)-387(wst)28(yd,)-386(b)-27(e)-1(l)1(e)-387(s)-1(i)1(\\246)-387(jeno)-386(d)1(os)-1(ta\\242)]TJ 0 -13.549 Td[(do)-333(mio)-28(d)1(u...)-333({)-333(Ci\\246gotki)-333(go)-334(wzi\\246\\252)-1(y)84(,)-333(z)-1(w)28(oln)1(i\\252)-334(k)1(roku)-333(p)1(rze)-1(d)-333(c)28(ha\\252up)1(\\241.)]TJ 27.879 -13.549 Td[({)-404(Oz)-1(gn)1(iew)27(a\\252a)-405(si\\246,)-404(\\273)-1(em)-405(o)-405(n)1(iej)-404(prze)-1(p)-27(omnia\\252.)1(..)-404(B)-1(oga\\242,)-404(c)-1(om)-405(win)1(o)27(w)28(at)28(y)83(.)1(..)-404(i)-405(o)]TJ -27.879 -13.549 Td[(T)83(eres)-1(k)28(\\246...)-382({)-383(skr)1(z)-1(ywi\\252)-382(s)-1(i)1(\\246)-383(jak)-382(p)-27(o)-383(o)-28(ccie)-1(.)-382(Dosy\\242)-383(j)1(u\\273)-383(mia\\252)-382(te)-1(j)-382(p)1(\\252aks)-1(y)84(,)-382(z)-1(b)1(rzyd\\252y)-382(m)27(u)]TJ 0 -13.549 Td[(te)-300(ci\\241)-28(g\\252e)-299(kw)-1(i)1(ki.)-299(Nie)-299(\\261)-1(lu)1(b)-28(o)28(w)28(a\\252)-300(p)1(rze)-1(ciek,)-299(b)28(yc)27(h)-298(s)-1(i\\246)-299(jej)-299(m)27(u)1(s)-1(ia\\252)-299(tr)1(z)-1(yma\\242)-300(j)1(ak)-299(te)-1(n)-299(ogon)]TJ 0 -13.55 Td[(kr)1(o)27(wy!)-341(Ma)-341(p)1(rz)-1(ecie)-1(k)-341(c)28(h\\252opa!)-341(I)-341(ks)-1(i)1(\\241dz)-342(got\\363)28(w)-341(go)-342(j)1(e)-1(sz)-1(cz)-1(e)-341(w)-1(y)1(p)-28(omni)1(e)-1(\\242)-342(z)-341(am)27(b)-27(on)28(y!)-341(Z)]TJ 0 -13.549 Td[(tak)56(\\241)-333(to)-334(i)-333(cz)-1(\\252o)28(wie)-1(k)-333(\\015)1(ac)-1(ze)-1(j)1(e)-1(.)-333(P)1(s)-1(i)1(akr\\363tk)56(a)-333(z)-334(t)28(ymi)-334(b)1(abami!)-333({)-333(s)-1(r)1(o\\273)-1(y\\252)-333(si\\246)-334(w)-334(sobi)1(e)-1(.)]TJ\nET\nendstream\nendobj\n1629 0 obj <<\n/Type /Page\n/Contents 1630 0 R\n/Resources 1628 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1628 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1633 0 obj <<\n/Length 8882      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(510)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ob)1(iad)-255(s)-1(i\\246)-256(d)1(opiero)-256(d)1(ogoto)28(wyw)27(a\\252,)-255(s)-1(kr)1(z)-1(y)1(c)-1(za\\252)-256(wi\\246)-1(c)-256(Nastk)28(\\246)-256(z)-1(a)-256(mitr)1(\\246)-1(\\273e)-1(n)1(ie)-256(i)-256(za)-56(j)1(-)]TJ -27.879 -13.549 Td[(rza\\252)-298(do)-297(T)83(e)-1(r)1(e)-1(ski.)-298(W)1(\\252a\\261)-1(n)1(ie)-299(k)1(ro)28(w)27(\\246)-298(d)1(oi\\252a)-298(w)-298(s)-1(ad)1(z)-1(ie;)-298(p)-27(o)-28(d)1(nios\\252a)-298(na)-297(niego)-298(o)-28(cz)-1(y)-297(dziwnie)]TJ 0 -13.549 Td[(sm)27(ut)1(ne,)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(c)-1(o)-333(ob)-27(e)-1(sc)27(h)1(\\252)-1(e)-333(z)-334(p\\252acz)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego\\261)-334(to)-333(bucza\\252)-1(a?)]TJ 0 -13.549 Td[(T\\252umac)-1(zy\\252a)-333(s)-1(i\\246)-333(c)-1(ic)28(ho,)-333(mi\\252uj)1(\\241c)-1(ymi)-333(o)-28(cz)-1(y)1(m)-1(a)-333(ogarn)1(ia)-56(j)1(\\241c)-334(t)28(w)27(ar)1(z)-334(jego.)]TJ 0 -13.55 Td[({)-333(Wymion)-333(b)28(y)1(\\261)-334(lepiej)-333(pil)1(no)28(w)27(a\\252a,)-333(strzyk)56(as)-1(z)-333(ano)-333(m)-1(l)1(e)-1(kiem)-334(n)1(a)-334(w)28(e\\252)-1(n)1(iak.)]TJ 0 -13.549 Td[(Kw)28(ard)1(y)-486(b)28(y\\252)-485(dz)-1(i)1(s)-1(ia)-55(j)-485(i)-486(pr)1(z)-1(ez)-486(dobr)1(o)-28(ci,)-486(\\273e)-486(\\252)-1(ama\\252a)-486(sobie)-486(g\\252o)28(w)27(\\246,)-486(co)-486(m)27(u)-485(si\\246)]TJ -27.879 -13.549 Td[(sta\\252o,)-289(spra)28(wuj)1(\\241c)-290(si\\246)-289(ju)1(\\273)-289(kiej)-289(tr)1(usia,)-289(gd)1(y\\273)-289(z)-1(a)-289(k)56(a\\273dym)-289(o)-27(dez)-1(w)28(aniem)-289(z)-1(\\252o\\261c)-1(i\\241)-288(pry)1(s)-1(k)56(a\\252)]TJ 0 -13.549 Td[(i)-333(\\261)-1(l)1(e)-1(p)1(iami)-334(t)1(o)-28(c)-1(zy\\252.)]TJ 27.879 -13.549 Td[(Nib)28(y)-339(to)-340(cze)-1(go\\261)-340(p)-27(o)-340(sadzie)-340(s)-1(zuk)56(a\\252)-340(i)-339(k)28(ole)-340(dom)28(u,)-339(a)-340(g\\252\\363)28(w)-1(n)1(ie)-340(pr)1(z)-1(ygl)1(\\241da\\252)-340(si\\246)-340(jej)]TJ -27.879 -13.549 Td[(kr)1(yjomo)-333(dziwuj\\241c)-333(s)-1(i\\246)-333(c)-1(oraz)-333(barzej:)]TJ 27.879 -13.55 Td[({)-277(A)-278(gd)1(z)-1(i)1(e)-1(\\273)-278(t)1(o)-278(mia\\252em)-278(o)-28(cz)-1(y?)-277(T)83(akie)-277(to)-278(c)28(herla)28(w)28(e)-278(i)-277(wym)-1(i)1(\\246)-1(k\\252e...)-277(Ni)-277(to)-277(z)-278(p)1(ie)-1(r)1(z)-1(a,)]TJ -27.879 -13.549 Td[(ni)-333(z)-333(m)-1(i\\246sa!)-334(G)1(nat)-333(rozkw)28(as)-1(zon)28(y)83(.)-333(Cygan)1(ic)27(h)1(a)-334(p)1(rosto.)-333(Ni)-333(p)-28(ostur)1(y)83(,)-333(ni)1(...)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-421(je)-1(d)1(ne)-422(o)-27(c)-1(zy)-422(t)1(o)-422(mia\\252a)-422(p)1(i\\246kne,)-422(r)1(\\363)28(w)-1(n)1(e)-422(mo\\273)-1(e)-422(Jagu)1(s)-1(in)29(ym,)-422(ogr)1(om)-1(n)1(e)-1(,)]TJ -27.879 -13.549 Td[(jasne)-248(ki)1(e)-1(j)-247(ni)1(e)-1(b)-27(o)-248(i)-248(cz)-1(ar)1(n)28(ymi)-248(b)1(rwiami)-248(op)1(i\\246)-1(te,)-248(a)-247(ilekro)-28(\\242)-248(sp)-28(ot)1(k)55(a\\252)-248(si\\246)-248(z)-248(nimi,)-247(o)-28(dwraca\\252)]TJ 0 -13.549 Td[(g\\252o)28(w)27(\\246)-334(i)-333(k)1(l\\241\\252)-334(z)-333(c)-1(ic)28(ha:)]TJ 27.879 -13.55 Td[({)-333(Wytr)1(z)-1(es)-1(zc)-1(za)-333(\\261)-1(lepi)1(e)-334(nib)29(y)-334(cielak,)-333(ki)1(e)-1(j)-333(ogon)-333(p)-27(o)-28(d)1(nies)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[(Niec)-1(i)1(e)-1(rp)1(liwi\\252o)-333(go)-333(to)-334(p)1(atrze)-1(n)1(ie)-334(i)-333(w)-334(sro\\273s)-1(zy)-333(gni)1(e)-1(w)-333(w)-1(p)1(ro)28(w)27(ad)1(z)-1(a\\252o.)]TJ 0 -13.549 Td[({)-291(Na)-291(z\\252)-1(o\\261\\242)-291(na)-291(ci\\246)-292(n)1(ie)-291(s)-1(p)-27(o)-56(j)1(rz)-1(\\246,)-291(\\261lepia)-55(j)-291(se)-292(p)1(s)-1(u)-290(w)-292(ogon)1(!)-291(Nie)-291(pr)1(z)-1(ec)-1(i\\241)-27(gnies)-1(z)-291(me)-1(.)]TJ 0 -13.549 Td[(Raz)-1(em)-353(jedli)-352(obiad)1(,)-353(ale)-353(ni)-352(razu)-353(d)1(o)-353(niej)-353(si\\246)-353(ni)1(e)-354(ozw)27(a\\252,)-353(n)1(i)-353(n)1(a)27(w)28(et)-353(s)-1(p)-27(o)-56(j)1(rza\\252)-353(w)]TJ -27.879 -13.549 Td[(jej)-333(stron)1(\\246)-1(.)-333(Nastc)-1(e)-334(j)1(e)-1(n)1(o)-334(p)1(rzygady)1(w)27(a\\252)-333(c)-1(o)-333(tro)-27(c)27(ha:)]TJ 27.879 -13.55 Td[({)-333(Pies)-334(b)28(y)-333(si\\246)-334(n)1(ie)-334(c)27(h)29(yc)-1(i)1(\\252)-334(za)-334(tak)56(\\241)-333(k)56(as)-1(z\\246)-1(:)-333(j)1(ak)-333(u)28(w)27(\\246dzona!)1(...)]TJ 0 -13.549 Td[({)-333(B)-1(oga\\242)-333(ta,)-333(\\271)-1(d)1(z)-1(iebk)28(o)-333(jeno)-333(pr)1(z)-1(y)1(palon)1(a)-334(i)-333(ki)1(e)-1(j)-333(cie)-334(w)-333(z)-1(\\246b)28(y)-333(k\\252uj)1(e)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(rz)-1(eciwia)-56(j)-333(si\\246!)-333(Muc)28(hami)-333(j\\241)-333(z)-1(ma\\261)-1(ci\\252a\\261,)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333(i)1(c)27(h)-333(ni)1(\\271)-1(li)-333(skw)28(ark)28(\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(m)28(u)-333(m)27(u)1(c)27(h)28(y)-333(sz)-1(k)28(o)-27(dz\\241!)-334(j)1(aki)-333(pr)1(z)-1(ebi)1(e)-1(rn)29(y!)-333(nie)-333(s)-1(tr)1(ujesz)-334(s)-1(i)1(\\246)-1(!)]TJ 0 -13.549 Td[(Za\\261)-334(p)1(rz)-1(y)-333(k)56(ap)1(u\\261c)-1(ie)-333(w)-1(yr)1(z)-1(ek)56(a\\252)-334(n)1(a)-334(stare)-333(s)-1(ad)1(\\252)-1(o.)]TJ 0 -13.55 Td[({)-333(Mazi\\241)-334(o)-27(d)-333(w)27(oza)-333(om)-1(a\\261c)-1(i\\242,)-333(te\\273)-334(gorsz)-1(e)-334(b)29(y)-333(nie)-334(b)29(y\\252o.)]TJ 0 -13.549 Td[({)-333(P)28(oli\\273)-333(os)-1(i,)-333(to)-333(obaczys)-1(z,)-333(ja)-333(ta)-333(nie)-334(p)1(rob)1(an)28(tk)56(a!)-333({)-334(o)-27(dp)-27(o)27(wiad)1(a\\252a)-334(t)28(w)28(ard)1(o.)]TJ 0 -13.549 Td[(Cz)-1(epi)1(a\\252)-326(s)-1(i\\246)-326(b)-27(e)-1(l)1(e)-327(cz)-1(ego)-326(i)-326(p)1(iek\\252o)27(w)28(a\\252.)-326(\\233e)-326(T)83(ere)-1(sk)56(a)-326(c)-1(a\\252y)-325(c)-1(zas)-326(s)-1(i\\246)-326(ni)1(e)-327(o)-27(dzyw)27(a\\252a,)]TJ -27.879 -13.549 Td[(to)-330(zaraz)-330(p)-28(o)-329(obiedzie)-330(w)-1(zi\\241\\252)-330(si\\246)-330(i)-330(do)-330(n)1(iej,)-330(d)1(o)-56(j)1(rza\\252)-330(b)-28(o)28(wiem)-331(j)1(e)-1(j)-329(kro)28(w)28(\\246)-331(co)-28(c)28(ha)-56(j)1(\\241c)-1(\\241)-329(s)-1(i\\246)]TJ 0 -13.549 Td[(o)-333(w)27(\\246gie\\252)-1(.)]TJ 27.879 -13.55 Td[({)-333(Obr)1(os)-1(\\252a)-333(gno)-55(jem)-334(kiej)-333(sk)28(orup)1(\\241:)-333(nie)-333(m)-1(o\\273e)-1(cie)-334(to)-333(j)1(e)-1(j)-333(wycie)-1(r)1(a\\242)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(Mokr)1(o)-334(w)-333(ob)-28(or)1(z)-1(e,)-333(to)-334(si\\246)-334(w)28(ala.)]TJ 0 -13.549 Td[({)-429(Mokro!)-429(S)1(\\241)-430(w)-430(l)1(e)-1(sie)-430(k)28(olki)1(,)-430(s\\241;)-429(c)-1(ze)-1(k)56(acie)-430(jeno,)-429(b)28(y)-429(w)27(am)-429(kto)-430(n)1(agrab)1(i\\252)-430(i)-429(do)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)28(y)-379(p)1(rzyni)1(\\363s)-1(\\252.)-379(Dy)1(\\242)-380(o)-28(d)1(parzy)-379(sobie)-379(k\\252\\246)-1(b)29(y)-379(w)-380(t)28(y)1(m)-380(gn)1(o)-56(ju)1(,)-379(zgnij)1(e)-1(!)-379(T)28(yla)-379(b)1(ab)-379(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-1(,)-453(a)-454(p)-27(orz\\241dku)-453(ani)-453(za)-454(grosz)-1(!)-453({)-454(wrze)-1(sz)-1(cza\\252)-1(,)-453(ale)-454(T)83(eres)-1(k)56(a)-454(u)1(s)-1(t\\246p)-28(o)28(w)28(a\\252a)-454(m)27(u)]TJ 0 -13.549 Td[(p)-27(ok)28(orni)1(e)-1(,)-333(n)1(ie)-334(\\261m)-1(iej\\241c)-333(s)-1(i\\246)-333(ju\\273)-333(bron)1(i\\242,)-333(a)-334(j)1(e)-1(n)1(o)-334(p)1(rosz)-1(\\241c)-334(\\261lepiami)-333(o)-333(p)-28(omi\\252o)28(w)27(an)1(ie.)]TJ 27.879 -13.55 Td[(Cic)27(h)1(a)-228(prze)-1(cie\\273)-229(b)28(y)1(\\252)-1(a)-228(j)1(ak)-228(z)-1(a)28(ws)-1(ze)-1(,)-227(uleg\\252a)-229(i)-228(p)1(raco)28(w)-1(i)1(ta)-229(j)1(ak)-228(mr\\363)28(w)-1(k)56(a,)-228(n)1(a)27(w)28(et)-229(r)1(ada,)]TJ -27.879 -13.549 Td[(\\273e)-383(wzi\\241\\252)-382(n)1(ad)-382(n)1(i\\241)-382(g\\363r)1(\\246)-383(i)-381(kw)28(ardo)-381(pan)28(u)1(je.)-382(A)-381(w)-1(\\252a\\261nie)-382(on)-381(i)-381(b)-28(ez)-382(to)-382(sro\\273)-1(y)1(\\252)-382(s)-1(i)1(\\246)-383(coraz)]TJ 0 -13.549 Td[(bar)1(z)-1(ej.)-406(Gniew)28(a\\252)-1(y)-406(go)-407(jej)-407(k)28(o)-28(c)28(ha)-55(j\\241ce)-1(,)-407(l)1(\\246)-1(kl)1(iw)27(e)-407(o)-28(cz)-1(y)84(,)-407(gni)1(e)-1(w)28(a\\252)-407(c)27(h\\363)-27(d)-407(cic)27(h)28(y)84(,)-407(gn)1(ie)-1(w)28(a\\252a)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-320(p)-27(ok)28(orna,)-319(gn)1(ie)-1(w)28(a\\252o)-320(i)-319(to,)-319(\\273e)-320(ci\\246)-1(gi)1(e)-1(m)-320(p)1(l\\241ta\\252a)-319(s)-1(i\\246)-319(k)28(ole)-320(ni)1(e)-1(go.)-319(Mi)1(a\\252)-320(j)1(u\\273)-320(o)-28(c)28(hot\\246)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)1(n\\241\\242,)-334(b)29(y)-333(m)27(u)-333(z)-334(o)-28(czu)-333(ust\\241)-28(pi)1(\\252a.)]TJ 27.879 -13.55 Td[({)-481(\\233eb)28(y)-481(t)1(o)-481(m)-1(or)1(\\363)28(w)-1(k)56(a)-481(wzie)-1(n)1(a,)-481(p)1(s)-1(i)1(akrew)-1(!)-480({)-481(b)1(uc)27(h)1(n\\241\\252)-481(wr)1(e)-1(sz)-1(cie)-481(i)-481(zabr)1(a)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(p)-27(orz\\241dki)-315(c)-1(i)1(e)-1(siels)-1(k)1(ie)-1(,)-315(na)28(w)28(e)-1(t)-315(ni)1(e)-316(w)-1(y)1(tc)27(h)1(n\\241)28(ws)-1(zy)-316(p)1(rzyp)-27(o\\252)-1(u)1(dn)1(ia,)-315(p)-28(osz)-1(ed\\252)-315(do)-315(K\\252\\246)-1(b)-27(\\363)28(w,)]TJ\nET\nendstream\nendobj\n1632 0 obj <<\n/Type /Page\n/Contents 1633 0 R\n/Resources 1631 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1618 0 R\n>> endobj\n1631 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1636 0 obj <<\n/Length 8063      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(511)]TJ -358.232 -35.866 Td[(k)56(a)-56(j)-333(mia\\252)-333(jak)56(\\241\\261)-334(rob)-27(ot\\246)-334(p)1(rzy)-333(c)27(ha\\252u)1(pie.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ieli)-333(tam)-334(j)1(e)-1(szc)-1(ze)-334(pr)1(z)-1(y)-333(mic)27(h)1(ac)27(h)1(,)-334(n)1(a)-333(dw)28(orz)-1(e.)]TJ 0 -13.549 Td[(Zaku)1(rz)-1(y)1(\\252)-334(p)1(apierosa)-334(siedz\\241c)-334(p)-27(o)-28(d)-333(\\261)-1(cian)1(\\241.)]TJ 0 -13.549 Td[(K\\252\\246b)28(y)-333(p)-28(ogad)1(yw)28(ali)-333(o)-334(p)-27(o)28(wro)-28(cie)-334(z)-334(w)28(o)-56(j)1(s)-1(k)56(a)-333(Grze)-1(l)1(i)-333(B)-1(or)1(yno)28(w)28(e)-1(go.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(ac)-1(a)-333(to)-333(ju\\273?)-334({)-333(zap)28(yta\\252)-333(s)-1(p)-27(ok)28(o)-56(j)1(nie.)]TJ 0 -13.55 Td[({)-333(Nie)-334(wiec)-1(ie)-333(to?)-334(Dy\\242)-333(raze)-1(m)-334(z)-333(Ja\\261)-1(k)1(ie)-1(m)-333(T)83(e)-1(r)1(e)-1(ski)-333(i)-333(Jarcz)-1(aki)1(e)-1(m)-333(z)-334(W)83(ol)1(i.)]TJ 0 -13.549 Td[({)-333(Na)-333(\\273)-1(n)1(iw)28(a)-333(s)-1(i\\246)-333(obi)1(e)-1(cuj)1(\\241.)-333(T)83(e)-1(r)1(e)-1(sk)56(a)-333(lata\\252a)-333(dzisia)-333(z)-334(l)1(is)-1(tem)-333(do)-333(organ)1(ist)27(y)84(,)-333(b)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(zyta\\252.)-333(P)28(o)28(wiada\\252)-333(mi)-333(o)-334(t)28(ym.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(ci)-333(no)28(win)1(a!)-334(Jasiek)-333(p)-28(o)28(wraca!)-333({)-334(za)28(w)27(o\\252a\\252)-333(b)-28(ez)-1(w)28(oln)1(ie)-1(.)]TJ 0 -13.549 Td[(Zmilkli)-351(ws)-1(zys)-1(cy)84(,)-352(jeno)-351(\\261)-1(lip)1(ia)-352(ob)1(lec)-1(ia\\252y)-351(p)-28(o)-352(sobi)1(e)-1(,)-352(a)-351(k)28(obiet)28(y)-352(si\\246)-352(s)-1(cz)-1(erwieni\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)27(wstrzym)27(u)1(j\\241c)-311(\\261)-1(mie)-1(c)28(h.)-311(Nie)-311(p)-28(omiark)28(o)28(w)28(a\\252)-312(i)-311(j)1(akb)28(y)-311(rad)-310(w)-1(i)1(e)-1(\\261c)-1(i,)-311(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252)-311(sp)-28(ok)28(o)-55(j-)]TJ 0 -13.55 Td[(ni)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(c)-1(o)-333(p)-28(o)28(wraca;)-333(m)-1(o\\273e)-334(p)1(rz)-1(estan\\241)-333(obgad)1(yw)27(a\\242)-333(T)83(e)-1(r)1(e)-1(sk)28(\\246)-1(.)]TJ 0 -13.549 Td[(Ja\\273e)-385(\\252y)1(\\273)-1(ki)-383(z)-1(a)28(wis\\252y)-384(nad)-383(mic)27(h)1(\\241,)-384(tak)-383(s)-1(i)1(\\246)-385(zdu)1(mie)-1(li)1(,)-384(a)-384(on)-383(to)-28(cz\\241c)-385(zuc)28(h)28(w)27(a\\252y)1(m)-1(i)]TJ -27.879 -13.549 Td[(\\261le)-1(p)1(iami)-333(do)-28(d)1(a\\252)-1(:)]TJ 27.879 -13.549 Td[({)-461(W)1(ie)-1(cie,)-461(j)1(ak)-461(j)1(e)-1(j)-460(n)1(ie)-461(sz)-1(cz)-1(\\246dz\\241.)-461(Ni)1(c)-461(m)-1(i)-460(do)-460(niej,)-460(c)27(h)1(o)-28(cia\\273)-461(m)-1(i)-460(p)-27(o)28(w)-1(i)1(no)28(w)27(ata)]TJ -27.879 -13.55 Td[(z)-470(o)-55(jco)28(w)27(ej)-469(stron)28(y)84(,)-469(ale)-469(\\273)-1(eb)28(y)-469(tak)-469(n)1(a)-470(mn)1(ie)-470(p)1(ad\\252o,)-469(dob)1(rze)-470(b)28(y)1(m)-470(p)1(le)-1(ciu)1(c)27(hom)-469(g\\246)-1(b)29(y)]TJ 0 -13.549 Td[(p)-27(oz)-1(at)28(yk)56(a\\252:)-224(zapami\\246talib)29(y!)-224(A)-223(ju)1(\\273)-224(k)28(obiet)28(y)-224(l)1(a)-224(dr)1(ugic)28(h)-224(n)1(a)-56(j)1(gorsz)-1(e:)-224(n)1(ie)-1(c)28(h)28(b)28(y)-223(na)-55(jb)1(ie)-1(lsza,)]TJ 0 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(epu)1(s)-1(zc)-1(z\\241)-334(i)-333(b)1(\\252ote)-1(m)-333(ob)28(w)27(al)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334(co)-334(tak)1(,)-334(p)-27(ew)-1(n)1(ie!)-333({)-334(p)1(rzywt\\363rzyli)-333(wbij)1(a)-56(j)1(\\241c)-334(o)-28(cz)-1(y)-333(w)-334(mic)28(h\\246.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(li\\261c)-1(ie)-333(ju\\273)-333(u)-333(B)-1(or)1(yn)28(y?)-333({)-334(zagadn)1(\\241\\252)-334(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(nie.)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(zbieram)-333(s)-1(i\\246)-333(i)-334(zbi)1(e)-1(r)1(am)-1(,)-333(a)-333(c)-1(o)-333(dn)1(ia)-333(c)-1(osik)-333(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(z)-1(i.)]TJ 0 -13.549 Td[({)-333(Za)-334(wsz)-1(ystkic)28(h)-333(c)-1(i)1(e)-1(rp)1(i,)-333(a)-333(nik)1(to)-334(o)-333(ni)1(m)-334(ni)1(e)-334(pami\\246ta.)]TJ 0 -13.549 Td[({)-333(Zagl\\241da\\252e\\261)-334(to)-333(do)-333(niego?)-334(co?)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(p)-27(\\363)-56(j)1(d\\246)-333(s)-1(am,)-333(to)-334(p)-27(o)28(wie)-1(d)1(z)-1(\\241,)-333(co)-334(d)1(o)-333(Jagn)28(y)-333(c)-1(i\\241)-27(gn\\246:)]TJ 0 -13.549 Td[({)-407(C)-1(i)1(e)-1(!)-407(u)28(w)28(a\\273)-1(n)28(y)-407(kiej)-407(dziewk)55(a)-407(p)-28(o)-407(pr)1(z)-1(y)1(padk)1(u)-407({)-408(mru)1(kn\\246\\252a)-408(stara)-407(Agata,)-408(sie-)]TJ -27.879 -13.55 Td[(dz\\241ca)-334(p)-27(o)-28(d)-333(p)1(\\252)-1(ot)1(e)-1(m)-334(z)-333(m)-1(i)1(s)-1(ec)-1(zk)56(\\241)-334(n)1(a)-334(k)28(ol)1(anac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(m)-1(i)-333(j)1(u\\273)-334(ob)1(m)-1(i)1(e)-1(rz\\252y)-333(s)-1(zc)-1(zek)55(an)1(ia.)]TJ 0 -13.549 Td[({)-333(I)-334(wilk)-333(si\\246)-334(statku)1(je,)-333(kiej)-333(m)27(u)-333(k\\252y)-333(spr)1(\\363)-28(c)27(h)1(niej\\241)-333({)-334(\\261mia\\252)-334(si\\246)-334(K)1(\\252\\241b.)]TJ 0 -13.549 Td[({)-333(Alb)-27(o)-334(ki)1(e)-1(j)-333(si\\246)-334(za)-334(b)1(ar\\252ogiem)-334(r)1(oz)-1(gl\\241d)1(a)-334({)-333(p)-27(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(Mat)1(e)-1(u)1(s)-1(z.)]TJ 0 -13.549 Td[({)-260(Ho,)-261(h)1(o,)-260(to)-261(in)1(o)-261(p)1(atrze)-1(\\242,)-260(jak)-260(do)-260(kt\\363r)1(e)-1(j)-260(z)-261(w)28(\\363)-28(dk)56(\\241)-260(p)-28(o\\261les)-1(z)-261({)-260(\\273)-1(ar)1(to)28(w)27(a\\252)-260(K\\252\\246)-1(b)1(iak.)]TJ 0 -13.55 Td[({)-333(W\\252a\\261)-1(n)1(ie,)-334(ci\\246gie)-1(m)-333(ju)1(\\273)-334(delib)-27(eruj)1(\\246)-1(,)-333(d)1(o)-334(k)1(t\\363rej)-333(b)28(y)-333(przepi\\242.)]TJ 0 -13.549 Td[({)-350(Pr\\246dk)28(o)-350(wybi)1(e)-1(r)1(a)-56(j,)-350(a)-350(w)-351(d)1(ruh)1(n)28(y)-350(me)-351(pr)1(o\\261)-1(,)-350(Mateusz)-351({)-350(piskn)1(\\246)-1(\\252a)-350(Kas)-1(i)1(a,)-351(n)1(a)-56(j)1(-)]TJ -27.879 -13.549 Td[(starsz)-1(a.)]TJ 27.879 -13.549 Td[({)-246(C\\363\\273)-1(,)-245(kiej)-246(n)1(ie\\252)-1(acno:)-245(ws)-1(zy\\242)-1(k)1(ie)-246(z)-1(ar\\363)28(wno)-245(w)-1(y)1(bran)1(e)-247(i)-245(jedn)1(a)-246(w)-246(dru)1(g\\241)-246(na)-55(jl)1(e)-1(p)1(s)-1(ze)-1(.)]TJ -27.879 -13.549 Td[(Magd)1(usia)-348(n)1(a)-56(jb)-27(ogatsz)-1(a,)-347(ale)-348(ju\\273)-348(p)1(rze)-1(z)-348(z)-1(\\246b)-27(\\363)27(w)-348(i)-347(z)-1(e)-348(\\261)-1(l)1(e)-1(p)1(i\\363)28(w)-348(jej)-348(cieknie;)-348(Ul)1(is)-1(i)1(a)-348(nib)29(y)]TJ 0 -13.549 Td[(kwiat,)-388(jeno)-389(co)-389(ma)-389(jedn)1(o)-389(bi)1(e)-1(d)1(ro)-389(gru)1(bsz)-1(e)-389(i)-388(b)-28(ec)-1(zk)28(\\246)-389(k)55(ap)1(ust)28(y)-389(w)28(e)-390(wian)1(ie;)-389(F)84(rank)56(a)-389(z)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)27(ho)28(wkiem)-1(;)-376(Mar)1(ysia)-377(zb)28(yt)-376(s)-1(zc)-1(zo)-28(d)1(ra)-377(d)1(la)-377(p)1(arob)1(k)28(\\363)27(w;)-376(Jew)-1(k)56(a,)-376(c)27(ho)-27(\\242)-377(m)-1(a)-376(c)-1(a\\252e)-377(sto)]TJ 0 -13.549 Td[(z\\252)-1(ot)28(y)1(c)27(h)-371(sam\\241)-371(k)28(opro)28(win)1(\\241,)-371(w)28(a\\252)-1(k)28(o\\253)1(,)-371(p)-27(o)-28(d)-370(pierzyn\\241)-370(c)-1(i\\246giem)-372(wyl)1(e)-1(gu)1(je.)-371(A)-371(ws)-1(zystkie)]TJ 0 -13.549 Td[(b)28(y)-328(t\\252usto)-329(jad)1(\\252y)83(,)-328(s)-1(\\252o)-28(d)1(k)28(o)-329(p)-27(opij)1(a\\252y)-329(i)-328(nic)-329(ni)1(e)-330(r)1(obi\\252y)84(.)-329(Czys)-1(t)1(e)-330(z\\252oto)-329(taki)1(e)-330(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y!)-328(A)]TJ 0 -13.549 Td[(za\\261)-334(jes)-1(zc)-1(ze)-334(d)1(rugi)1(e)-334(m)-1(a)-55(j\\241)-333(la)-333(mnie)-334(za)-333(kr\\363tk)1(ie)-334(pi)1(e)-1(rzyn)28(y)84(.)]TJ 27.879 -13.549 Td[(Gr)1(uc)27(h)1(n\\246li)-333(\\261)-1(miec)27(h)1(e)-1(m,)-333(ja\\273e)-334(si\\246)-334(go\\252\\246)-1(b)1(ie)-334(p)-27(orw)28(a\\252y)-333(z)-334(dac)28(h\\363)28(w.)]TJ 0 -13.55 Td[({)-228(P)1(ra)28(wd\\246)-228(m\\363)27(wi\\246.)-228(P)1(rzymie)-1(r)1(z)-1(a\\252em)-228(u)-228(n)1(iejedn)1(e)-1(j)1(,)-228(ledwie)-228(mi)-228(d)1(o)-228(p)-27(\\363\\252)-228(\\252yst)-228(si\\246)-1(ga)-55(j\\241,)]TJ -27.879 -13.549 Td[(jak)1(\\273)-1(e)-334(b)29(ym)-334(to)-333(z)-1(i)1(m)-1(\\241)-333(wyspa\\252?)-334(c)28(heba)-333(w)-334(b)1(utac)27(h)1(,)-333(c)-1(o?..)1(.)]TJ\nET\nendstream\nendobj\n1635 0 obj <<\n/Type /Page\n/Contents 1636 0 R\n/Resources 1634 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1634 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1640 0 obj <<\n/Length 8997      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(512)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zgromi\\252a)-333(go)-334(K)1(\\252)-1(\\246b)-27(o)27(w)28(a,)-333(i\\273)-334(zb)-28(ere\\273)-1(e\\253st)28(w)27(a)-333(gad)1(a)-334(p)1(rzy)-334(d)1(z)-1(i)1(e)-1(u)1(c)27(hac)28(h.)]TJ 0 -13.549 Td[({)-277(La)-276(\\261)-1(miec)27(h)28(u)-276(jeno)-276(m)-1(\\363)28(wi\\246.)-277(P)1(rze)-1(cie)-1(k)-276(p)-27(o)27(wieda)-55(j\\241,)-276(c)-1(o)-276(p)-28(o)-27(c)-1(zc)-1(iw)28(e)-277(\\273)-1(ar)1(t)28(y)-277(n)1(ie)-277(s)-1(zk)28(o-)]TJ -27.879 -13.549 Td[(dz\\241)-333(i)-333(p)-28(o)-28(d)-332(pierzyn\\241.)]TJ 27.879 -13.549 Td[(Ale)-334(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)-333(r)1(oz)-1(cz)-1(ap)1(ie)-1(r)1(z)-1(y\\252y)-333(si\\246)-334(ki)1(e)-1(j)-333(te)-333(jend)1(yc)-1(zki.)]TJ 0 -13.549 Td[({)-351(Hale)-1(,)-351(j)1(aki)-351(prze)-1(b)1(iern)28(y!)1(...)-351(b)-27(\\246)-1(d)1(z)-1(ie)-352(si\\246)-352(tu)-351(p)1(rze)-1(k)1(piw)28(a\\252)-352(ze)-352(ws)-1(zystkic)27(h)1(!)-351(Kiej)-351(c)-1(i)]TJ -27.879 -13.55 Td[(w)-334(Li)1(p)-28(cac)27(h)-333(malo,)-333(n)1(a)-334(d)1(rugi)1(c)27(h)-333(ws)-1(i)1(ac)27(h)-333(se)-334(s)-1(zuk)56(a)-55(j!)-333({)-333(jazg)-1(ot)1(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-406(Je)-1(st)-406(ic)27(h)-406(w)-406(Lip)-27(c)-1(ac)28(h,)-406(jes)-1(t)1(:)-407(p)1(rze)-1(ciek)-407(\\252acni)1(e)-1(j)-406(o)-406(dosta\\252\\241)-406(pann)1(\\246)-407(ni)1(\\271)-1(li)-406(o)-406(ca\\252)-1(\\241)]TJ -27.879 -13.549 Td[(z\\252)-1(ot)1(\\363)27(wk)28(\\246.)-438(P)29(o)-438(d)1(ydk)1(u)-437(i)-438(j)1(u\\273)-438(z)-437(o)-56(jco)28(wym)-438(lit)1(kup)-27(e)-1(m)-437(je)-438(p)1(rze)-1(d)1(a)-56(j\\241.)-437(Byc)27(h)-437(j)1(e)-1(n)1(o)-438(k)1(up)-27(c)-1(e)]TJ 0 -13.549 Td[(si\\246)-401(nalaz\\252y!)-400(T)27(yl)1(e)-402(t)1(e)-1(go,)-400(ja\\273e)-402(si\\246)-401(wie\\261)-401(trz\\246)-1(sie)-401(o)-28(d)-400(s)-1(k)1(rz)-1(ek)28(\\363)28(w)-401(pan)1(no)28(wyc)27(h)1(,)-401(wsz)-1(y\\242kie)]TJ 0 -13.549 Td[(goto)28(w)27(e)-305(p)-27(o)-28(d)-304(k)28(ozik,)-304(\\273e)-305(c)-1(o)-304(s)-1(ob)-27(ota)-304(w)-305(k)56(a\\273)-1(d)1(e)-1(j)-304(c)27(h)1(a\\252up)1(ie)-305(ju)1(\\273)-305(o)-28(d)-304(\\261w)-1(i)1(tania)-304(pu)1(c)-1(u)1(j\\241)-304(s)-1(i\\246)-305(d)1(o)]TJ 0 -13.549 Td[(cz)-1(ysta,)-286(k)28(osy)-287(w)28(e)-287(wst\\246)-1(gi)-286(p)1(le)-1(t)1(\\241)-287(i)-286(k)28(ok)28(osz)-1(k)1(i)-286(p)-28(o)-286(sadac)27(h)-286(gon)1(i\\241,)-286(b)28(y)1(c)27(h)-286(j)1(e)-287(p)-28(on)1(ie\\261)-1(\\242)-286(\\233)-1(y)1(do)28(wi)]TJ 0 -13.55 Td[(na)-331(gorza\\252k)28(\\246)-1(,)-331(a)-331(o)-28(d)-331(sam)-1(ego)-331(p)-28(o\\252edn)1(ia)-331(jeno)-331(z)-1(za)-332(w)28(\\246g\\252)-1(\\363)28(w)-331(patrz\\241,)-331(c)-1(zy)-331(z)-332(kt\\363r)1(e)-1(j)-331(stron)29(y)]TJ 0 -13.549 Td[(sw)27(at)28(y)-234(n)1(ie)-234(c)-1(i)1(\\241)-28(gn\\241)-234(W)1(idzia\\252em)-1(,)-233(kt\\363re)-234(i)-234(z)-234(d)1(ac)27(h\\363)28(w,)-234(zapask)56(am)-1(i)-233(p)-28(o)28(wiew)27(a\\252y)-233(w)-1(r)1(z)-1(es)-1(zcz)-1(\\241c:)]TJ 0 -13.549 Td[(\\377)-56(D)1(o)-294(mn)1(ie)-1(,)-293(M)1(ac)-1(i)1(u\\261,)-293(do)-293(mnie!\")-293(Za\\261)-294(matki)-293(wt\\363r)1(z)-1(y\\252y)1(:)-293(\\377)-56(Do)-293(Kasi)-293(pr)1(z)-1(\\363)-27(dzi,)-293(Maciusiu)1(,)]TJ 0 -13.549 Td[(do)-333(Kasi!)-333(Sy)1(rek)-334(i)-333(me)-1(n)1(del)-333(ja)-55(jk)28(\\363)28(w)-334(p)1(rzy\\252o\\273)-1(\\246)-333(do)-333(w)-1(i)1(ana!)-333(Do)-333(Kas)-1(i)1(!\")]TJ 27.879 -13.549 Td[(Roz)-1(p)-27(o)28(wiada\\252)-233(ucies)-1(zni)1(e)-1(,)-233(j)1(a)-1(\\273e)-234(c)28(h\\252opak)1(i)-233(k\\252ad\\252y)-233(si\\246)-234(ze)-234(\\261m)-1(i)1(e)-1(c)27(h)29(u,)-233(j)1(e)-1(n)1(o)-234(K\\252\\246bi)1(anki)]TJ -27.879 -13.55 Td[(p)-27(o)-28(dn)1(ies)-1(\\252y)-333(wrzas)-1(k)-333(na)-333(ni)1(e)-1(go,)-333(\\273e)-334(s)-1(t)1(ary)-333(krzykn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta!)-333(skrzec)-1(z\\241)-334(k)1(ie)-1(j)-333(te)-333(s)-1(r)1(oki)-333(na)-333(des)-1(zc)-1(z.)]TJ 0 -13.549 Td[(Nie)-334(zaraz)-333(s)-1(i\\246)-333(usp)-28(ok)28(oil)1(i,)-333(w)-1(i)1(\\246)-1(c)-334(b)29(y)-333(prze)-1(r)1(w)27(a\\242)-333(te)-334(pr)1(z)-1(ekpi)1(nki,)-333(zap)28(yta\\252:)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(e\\261)-334(to,)-333(M)1(ate)-1(u)1(s)-1(z,)-333(przy)-333(w)27(\\363)-55(jto)28(w)28(e)-1(j)-333(w)28(o)-56(j)1(nie?)]TJ 0 -13.549 Td[({)-333(Nie)-1(.)-333(M)1(\\363)27(wil)1(i,)-333(c)-1(o)-333(Koz\\252om)-334(s)-1(i)1(e)-1(ln)1(ie)-334(si\\246)-334(d)1(os)-1(ta\\252o.)]TJ 0 -13.55 Td[({)-333(\\233e)-334(ju)1(\\273)-334(lepiej)-333(ni)1(e)-334(mo\\273)-1(n)1(a)-1(.)-333(S)1(trac)28(h,)-333(jak)-333(wygl\\241d)1(ali!)-333(W)84(\\363)-56(j)1(t)-334(se)-334(p)-27(oz)-1(w)28(oli\\252,)-333(n)1(o!...)]TJ 0 -13.549 Td[({)-333(Gromadzki)-333(c)27(h)1(leb)-333(tak)-333(go)-334(r)1(oz)-1(n)1(os)-1(i,)-333(to)-333(i)-333(br)1(yk)56(a.)]TJ 0 -13.549 Td[({)-247(G\\252\\363)28(wnie,)-247(co)-247(s)-1(i\\246)-247(nik)28(ogo)-247(n)1(ie)-247(b)-28(o)-55(ja.)-247(Kt)1(\\363\\273)-248(to)-247(m)28(u)-247(stanie)-247(na)-247(sprzec)-1(iw?)-247(Dru)1(gi)-247(z)-1(a)]TJ -27.879 -13.549 Td[(tak)56(\\241)-237(s)-1(ztuk)28(\\246)-237(dob)1(rze)-238(b)28(y)-237(zap\\252aci\\252,)-237(ale)-237(jem)27(u)-237(w\\252os)-237(z)-238(g\\252o)28(w)-1(y)-236(nie)-237(s)-1(p)1(adni)1(e)-1(.)-237(Z)-237(u)1(rz\\246)-1(d)1(nik)56(ami)]TJ 0 -13.549 Td[(si\\246)-334(zna,)-333(to)-333(w)-334(p)-27(o)28(w)-1(i)1(e)-1(cie)-334(mo)-28(c)-1(en)-333(ws)-1(zystk)28(o,)-333(c)-1(o)-333(in)1(o)-334(ze)-1(c)28(hce)-1(..)1(.)]TJ 27.879 -13.55 Td[({)-340(Bo\\261ta)-340(b)1(aran)28(y)84(,)-340(\\273e)-340(dacie)-340(taki)1(e)-1(m)28(u)-339(prze)-1(w)28(o)-28(d)1(z)-1(i\\242)-340(n)1(ad)-339(s)-1(ob)1(\\241!)-340(P)29(oniewie)-1(r)1(a)-340(i)-339(wy-)]TJ -27.879 -13.549 Td[(nosi)-333(s)-1(i)1(\\246)-334(nad)-333(wsz)-1(y)1(s)-1(tki)1(e)-1(,)-333(a)-333(oni)-333(go)-333(dziw)-334(p)-27(o)-333(nogac)27(h)-333(n)1(ie)-334(ca\\252uj)1(\\241!)]TJ 27.879 -13.549 Td[({)-333(Sami)-333(go)-334(wyb)1(rali)1(m)-334(nad)-333(sob\\241,)-333(to)-333(i)-333(u)28(w)28(a\\273)-1(a\\242)-334(m)28(usim.)]TJ 0 -13.549 Td[({)-333(Kto)-333(go)-334(wsadzi\\252,)-333(te)-1(n)-333(i)-333(ze)-1(sadzi\\242)-334(r)1(m)-1(o\\273e)-1(.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(n)1(ie)-334(kr)1(z)-1(ycz,)-334(M)1(ate)-1(u)1(s)-1(z,)-333(jes)-1(zc)-1(ze)-334(si\\246,)-334(r)1(oz)-1(n)1(ies)-1(ie.)]TJ 0 -13.55 Td[({)-333(A)-334(d)1(onies\\241)-334(m)28(u,)-333(to)-333(b)-28(\\246dzie)-334(wiedzia\\252.)-333(Niec)27(h)-333(me)-334(in)1(o)-334(zac)-1(ze)-1(p)1(i!)]TJ 0 -13.549 Td[({)-306(Maciej)-306(c)27(h)1(ory)84(,)-306(to)-306(kto)-306(m)27(u)-305(insz)-1(y)-306(p)-27(oredzi?)-306(Ka\\273den)-306(s)-1(i)1(\\246)-307(w)28(aguj)1(e)-307(i\\261\\242)-307(n)1(a)-307(p)1(ierw-)]TJ -27.879 -13.549 Td[(sz)-1(ego,)-356(b)-27(o)-356(k)55(a\\273den)-356(l)1(e)-1(d)1(w)-1(i)1(e)-357(sw)27(oi)1(m)-357(b)1(iedom)-356(w)-1(y)1(doli)-355({)-356(s)-1(ze)-1(p)1(n\\241\\252)-356(stary)-356(p)-27(o)-28(d)1(nosz)-1(\\241c)-356(s)-1(i)1(\\246)-357(z)]TJ 0 -13.549 Td[(\\252a)28(w)-1(y)84(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(\\261li)-333(s)-1(i)1(\\246)-334(wraz)-334(i)-333(dr)1(ud)1(z)-1(y)84(.)]TJ 0 -13.549 Td[(Kto)-343(p)-27(o)-343(jadl)1(e)-344(leg\\252)-344(o)-27(dp)-27(o)-28(c)-1(zyw)28(a\\242)-1(,)-343(k)1(to)-344(n)1(a)-343(drog\\246)-343(w)-1(y)1(c)27(ho)-27(dzi\\252)-343(k)28(o\\261)-1(ci)-343(prze)-1(ci\\241)-28(gn)1(\\241\\242)]TJ -27.879 -13.55 Td[(i)-323(p)1(as)-1(a)-323(o)-28(d)1(pu\\261ci\\242)-1(,)-323(a)-323(kt)1(o,)-323(jak)-323(d)1(z)-1(ieuc)28(h)28(y)83(,)-322(do)-323(s)-1(ta)28(wu)-323(p)-27(osz)-1(\\252y)-323(m)27(y)1(\\242)-324(garn)1(ki)-323(a)-323(c)27(h)1(\\252o)-28(dzi\\242)-323(s)-1(i\\246)]TJ 0 -13.549 Td[(i)-391(r)1(a)-56(j)1(c)-1(o)28(w)27(a\\242.)-391(M)1(ate)-1(u)1(s)-1(z)-391(zabra\\252)-390(s)-1(i\\246)-391(zaraz)-391(do)-391(ob)-27(c)-1(i)1(e)-1(syw)28(ania)-391(p)-27(o)-28(d)1(p)-28(\\363r)-390(do)-391(c)28(ha\\252u)1(p)28(y)83(,)-390(z)-1(a\\261)]TJ 0 -13.549 Td[(K\\252\\241b)-333(f)1(a)-56(j)1(k)28(\\246)-334(z)-1(ap)1(ali\\252)-333(i)-333(na)-333(progu)-332(przysiad\\252.)]TJ 27.879 -13.549 Td[({)-290(Kto)-291(j)1(e)-1(n)1(o)-291(o)-290(dr)1(ugic)28(h)-290(s)-1(toi)1(,)-291(t)1(e)-1(go)-290(bieda)-290(wydoi)1(!)-291({)-290(mruk)1(n\\241\\252)-291(p)29(yk)56(a)-56(j)1(\\241c)-291(s)-1(mac)-1(zni)1(e)-1(.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-320(w)-1(i)1(s)-1(ia\\252o)-320(nad)-319(s)-1(am\\241)-320(c)27(ha\\252u)1(p\\241,)-320(pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(e)-321(zrobi)1(\\252)-1(o)-320(si\\246)-321(n)1(agrzane)-1(,)-320(cie-)]TJ -27.879 -13.55 Td[(p\\252em)-475(w)-1(i)1(a\\252o)-475(o)-28(d)-475(p)-27(\\363l.)-474(Sady)-474(s)-1(to)-55(ja\\252y)-475(w)-475(cic)27(h)1(o\\261)-1(ci,)-475(mi\\246dzy)-475(d)1(rze)-1(win)1(a)-1(mi)-475(mieni)1(\\252)-1(o)-474(s)-1(i\\246)]TJ 0 -13.549 Td[(o)-28(d)-334(s\\252o\\253ca,)-334(okwiat)-334(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-334(s)-1(\\252a\\252)-334(si\\246)-335(na)-334(tr)1(a)27(wy)84(,)-334(psz)-1(cz)-1(o\\252y)-334(b)1(rz\\246)-1(cz)-1(a\\252y)-334(p)-27(o)-335(j)1(ab\\252on)1(iac)27(h)1(,)]TJ\nET\nendstream\nendobj\n1639 0 obj <<\n/Type /Page\n/Contents 1640 0 R\n/Resources 1638 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1638 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1643 0 obj <<\n/Length 9084      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(513)]TJ -358.232 -35.866 Td[(sta)27(w)-250(p)-27(ol\\261niew)28(a\\252)-250(w)-1(skro\\261)-250(ga\\252\\246)-1(zi,)-249(na)28(w)27(et)-250(p)1(tac)-1(t)28(w)28(o)-250(p)-28(omil)1(k\\252o.)-250(Pr)1(z)-1(edp)-27(o\\252ud)1(nio)28(w)28(a,)-250(s\\252o)-28(d-)]TJ 0 -13.549 Td[(k)56(a)-334(senno\\261\\242)-334(sia\\252a)-334(si\\246)-334(p)-27(o)-333(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(\\233e)-334(K\\252\\241b)1(,)-333(ab)28(y)-333(nie)-334(zadr)1(z)-1(ema\\242)-1(,)-333(p)-27(o)27(wl\\363k)1(\\252)-334(si\\246)-334(d)1(o)-334(d)1(o\\252u)-333(z)-334(z)-1(i)1(e)-1(mni)1(ak)55(ami.)]TJ 0 -13.549 Td[(Za\\261)-352(p)-27(ote)-1(m)-351(c)-1(osik)-351(ostro)-351(p)28(yk)56(a\\252)-351(przygas\\252\\241)-352(f)1(a)-56(j)1(k)28(\\246)-352(i)-351(s)-1(p)1(lu)28(w)28(a\\252,)-351(o)-28(dr)1(z)-1(u)1(c)-1(a)-55(j\\241c)-352(g\\252o)28(w)27(\\241)]TJ -27.879 -13.549 Td[(w\\252os)-1(y)84(,)-333(opada)-55(j\\241ce)-334(m)28(u)-333(na)-333(t)28(w)27(ar)1(z)-1(.)]TJ 27.879 -13.55 Td[({)-333(Ob)-27(e)-1(j)1(rz)-1(a\\252e\\261)-1(,)-333(co?)-334({)-333(z)-1(ap)29(yta\\252a)-333(\\273)-1(on)1(a)-334(wyc)28(h)28(yla)-55(j\\241c)-334(si\\246)-334(ze)-334(sie)-1(n)1(i.)]TJ 0 -13.549 Td[({)-245(Ju)1(\\261)-1(ci..)1(.)-245(\\273e)-1(b)29(y)-245(tak)-244(raz)-245(w)-245(d)1(z)-1(i)1(e)-1(\\253)-244(w)28(arz)-1(y)1(\\242)-1(,)-244(s)-1(tar)1(c)-1(zy\\252ob)28(y)-244(z)-1(i)1(e)-1(mniak)28(\\363)28(w)-245(d)1(o)-245(n)1(o)27(wyc)28(h!)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(r)1(az)-334(na)-333(dzie\\253!)-333(M\\252o)-28(d)1(e)-334(i)-333(zdro)28(w)28(e)-1(,)-333(to)-333(i)-333(\\271)-1(r)1(e)-1(\\242)-334(p)-27(otrzebuj)1(\\241.)]TJ 0 -13.549 Td[({)-228(Ni)1(e)-229(d)1(o)-28(ci\\241)-28(gni)1(e)-1(m.)-228(T)28(yla)-227(naro)-27(du)1(.)-228(Dzies)-1(i\\246\\242)-228(g\\241b,)-227(a)-228(br)1(z)-1(u)1(c)27(h)28(y)-227(ma)-56(j\\241)-227(kiej)-228(\\242wierc)-1(i)1(e)-1(.)]TJ -27.879 -13.549 Td[(T)83(rza)-333(b)-28(\\246dzie)-334(cos)-1(i)1(k)-334(zarad)1(z)-1(i)1(\\242)-1(.)]TJ 27.879 -13.549 Td[({)-390(O)-390(ja\\252\\363)28(w)28(c)-1(e)-391(m)28(y\\261lisz)-1(,)-390(co?)-391(T)83(o)-390(ci)-390(z)-1(ap)-27(o)28(wiadam,)-390(\\273)-1(e)-390(pr)1(z)-1(eda\\242)-391(j)1(e)-1(j)-389(nie)-390(p)-28(ozw)27(ol)1(\\246)-1(.)]TJ -27.879 -13.55 Td[(R\\363b)-333(se)-1(,)-333(co)-334(c)28(hc)-1(esz)-1(,)-333(a)-333(b)28(yd)1(l\\241tk)56(a)-334(n)1(ie)-334(d)1(am)-1(.)-333(Zapami\\246ta)-56(j)-332(s)-1(ob)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Zatrze)-1(p)1(a\\252)-389(r\\246k)28(om)-1(a,)-389(k)1(ie)-1(j)1(b)28(y)-389(o)-28(d)-388(os)-1(y)-389(u)1(pr)1(z)-1(yk)1(rzone)-1(j)1(,)-389(i)-389(gd)1(y)-389(o)-28(desz)-1(\\252a,)-389(j)1(\\241\\252)-390(zno)28(wu)]TJ -27.879 -13.549 Td[(fa)-55(jk)28(\\246)-333(z)-1(ap)1(ala\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Psiac)27(h)1(m)-1(a\\242)-333(baba.)1(..)-333(P)28(otrza,)-333(to)-333(i)-334(j)1(a\\252\\363)28(w)-1(k)56(a)-333(nie)-333(o\\252)-1(t)1(arz)-1(!)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-447(p)1(ra\\273y\\252o)-447(pr)1(os)-1(to)-446(w)-447(o)-28(cz)-1(y)84(,)-447(cienie)-447(b)29(y\\252y)-447(j)1(e)-1(sz)-1(cz)-1(e)-447(malu)1(\\261)-1(ki)1(e)-1(,)-446(to)-447(si\\246)-447(jeno)]TJ -27.879 -13.55 Td[(o)-28(d)1(w)-1(r)1(\\363)-28(ci\\252)-467(p)1(le)-1(cami)-466(i)-467(p)29(yk)56(a\\252)-467(coraz)-467(w)28(olni)1(e)-1(j)-466(i)-466(rzadziej.)-466(P)28(op)1(u\\261c)-1(i)1(\\252)-467(pasa,)-466(b)-27(o)-467(m)28(u)-466(c)-1(o\\261)]TJ 0 -13.549 Td[(zie)-1(mni)1(aki)-440(ci\\241\\273)-1(y)1(\\252)-1(y)84(,)-440(s\\252o\\253ce)-441(p)1(rzypiek)56(a\\252o,)-440(go\\252\\246)-1(b)1(ie)-441(gr)1(uc)28(ha\\252y)-440(w)28(e)-441(strze)-1(sz)-1(e)-440(i)-440(cic)27(h)28(u)1(\\261)-1(k)1(i)]TJ 0 -13.549 Td[(sz)-1(me)-1(r)-333(l)1(i\\261)-1(ci)-333(tak)-333(rozbiera\\252,)-333(\\273)-1(e)-333(j\\241\\252)-333(s)-1(i\\246)-333(kiw)28(a\\242)-334(i)-333(\\273)-1(yd)1(y)-333(w)27(ozi\\242)-334(p)-27(o)-333(\\261)-1(ciani)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(om)-1(aszu!)-333(T)83(omas)-1(zu!)]TJ 0 -13.549 Td[(Ozw)27(ar)1(\\252)-334(o)-28(czy)83(,)-333(Agata)-333(s)-1(iedzia\\252a)-333(p)-28(ob)-27(ok,)-333(tr)1(w)27(o\\273nie)-333(p)-28(ogl\\241d)1(a)-56(j)1(\\241c)-1(.)]TJ 0 -13.55 Td[({)-306(Ci\\246\\273)-1(ki)-305(m)-1(acie)-306(przedn\\363)28(w)28(e)-1(k)-305({)-306(m)-1(\\363)28(wi\\252a)-306(cic)27(h)1(o.)-306({)-306(By\\261)-1(cie)-306(c)27(h)1(c)-1(ieli,)-305(to)-306(m)-1(am)-306(p)1(ar\\246)]TJ -27.879 -13.549 Td[(grosz)-1(y)84(,)-487(wygo)-27(dzi\\252ab)28(ym)-487(w)27(a)-55(ju)1(.)-487(Na)-487(p)-27(o)-28(c)27(h)1(\\363)28(w)27(ek)-487(j)1(e)-488(\\261c)-1(i)1(ba\\252am,)-487(ale)-487(kiej\\261c)-1(i)1(e)-488(w)-487(tak)1(ie)-1(j)]TJ 0 -13.549 Td[(p)-27(otrze)-1(b)1(ie)-1(,)-453(p)-27(o\\273)-1(y)1(c)-1(z\\246)-1(.)-453(Ja\\252\\363)28(w)-1(k)1(i)-454(sz)-1(k)28(o)-27(da.)-453(Pr)1(z)-1(y)-453(m)-1(n)1(ie)-454(si\\246)-454(\\252oni)-453(ul)1(\\246)-1(g\\252a..)1(.)-454(z)-454(mlec)-1(znego)]TJ 0 -13.549 Td[(gatu)1(nku)1(.)-424(M)1(o\\273)-1(e)-424(mi)-423(P)28(an)-423(Je)-1(zus)-424(p)-27(ozw)27(oli)-423(do\\273y\\242,)-424(t)1(o)-424(mi)-424(z)-424(n)1(o)28(w)27(ego)-424(o)-28(d)1(dacie.)-424(W)1(z)-1(i\\241\\242)]TJ 0 -13.549 Td[(o)-28(d)-324(s)-1(w)28(o)-56(j)1(e)-1(go)-324(w)-325(p)-28(ot)1(rz)-1(ebi)1(e)-325(nie)-325(ws)-1(t)28(yd)-324(i)-324(gos)-1(p)-27(o)-28(d)1(arz)-1(o)28(wi,)-324(w)27(e\\271)-1(cie)-325({)-325(wsun\\246\\252a)-325(m)28(u)-325(w)-325(r)1(\\246)-1(k)28(\\246)]TJ 0 -13.55 Td[(sam)27(ymi)-333(z)-1(\\252ot\\363)28(wk)56(am)-1(i)-333(cos)-1(ik)-333(ze)-334(tr)1(z)-1(y)-333(ru)1(ble.)]TJ 27.879 -13.549 Td[({)-333(Sc)27(h)1(o)28(w)27(a)-55(jcie)-334(sobie!)-333(Jak)28(o\\261)-334(se)-334(p)-28(or)1(e)-1(d)1(z)-1(\\246.)]TJ 0 -13.549 Td[({)-333(W)83(e\\271)-1(cie,)-333(dy\\242)-334(j)1(e)-1(sz)-1(cze)-334(z)-334(p)-27(\\363\\252)-334(r)1(ubl)1(a)-334(d)1(o\\252o\\273)-1(\\246,)-333(w)27(e\\271)-1(cie)-334({)-333(pr)1(os)-1(i\\252a)-333(cic)27(h)28(u)1(\\261)-1(k)28(o.)]TJ 0 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-334(w)28(am)-1(a.)-333(Cie,)-333(jak)56(a\\261)-1(cie)-334(to)-333(p)-27(o)-28(cz)-1(ciw)27(a!)]TJ 0 -13.549 Td[({)-389(T)83(o)-389(j)1(u\\273)-389(ca\\252e)-390(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(\\261c)-1(i)-388(z)-1(\\252ot)28(yc)28(h)-389(b)1(ie)-1(r)1(z)-1(cie,)-389(d)1(o)-389(r\\363)28(wna)-389({)-389(sup)1(\\252a\\252a)-389(z)-389(w)27(\\246z)-1(e\\252k)55(a)]TJ -27.879 -13.55 Td[(do)-27(da)-55(j\\241c)-437(p)-27(o)-436(dzie)-1(si\\241tce)-437({)-436(bierzc)-1(i)1(e)-437({)-436(s)-1(k)56(amla\\252a)-437(p)-27(o)28(ws)-1(tr)1(z)-1(ym)28(uj)1(\\241c)-437(\\252z)-1(y)1(:)-436(du)1(s)-1(za)-437(si\\246)-437(j)1(e)-1(j)]TJ 0 -13.549 Td[(dar)1(\\252a,)-333(jakb)28(y)-333(k)56(a\\273dy)-333(grosik)-333(pr)1(u\\252a)-333(s)-1(ob)1(ie)-334(z)-334(wn\\246trzno\\261ci.)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(n)1(i\\241dze)-445(d)1(z)-1(i)1(w)-1(n)1(ie)-444(kusz)-1(\\241co)-444(l\\261ni\\252y)-444(w)-444(s\\252o\\253cu.)-444(P)1(rz)-1(y)1(m)-1(r)1(u\\273a\\252)-444(o)-28(c)-1(zy)-444(z)-444(lub)-27(o\\261)-1(ci,)]TJ -27.879 -13.549 Td[(grze)-1(b)1(i\\241c)-466(m)-1(i)1(\\246)-1(d)1(z)-1(y)-465(nimi:)-465(no)28(w)27(e)-466(b)28(y\\252y)-465(i)-466(cz)-1(yste.)-466(Wzdy)1(c)27(ha\\252)-466(ci\\246\\273)-1(k)28(o)-466(zmaga)-56(j\\241c)-466(si\\246)-466(z)-1(e)]TJ 0 -13.549 Td[(strasz)-1(n)1(\\241)-334(c)28(h\\246)-1(ci\\241,)-333(j)1(a\\273)-1(e)-334(o)-27(dwr\\363)-28(ci\\252)-333(s)-1(i\\246)-333(i)-333(s)-1(ze)-1(p)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(Sc)27(h)1(o)28(w)27(a)-55(jcie)-334(d)1(obrze)-1(,)-333(a)-333(to)-333(p)-28(o)-27(dpat)1(rz)-1(\\241)-333(i)-333(jesz)-1(cz)-1(e)-334(w)28(ama)-334(u)1(krad)1(n\\241.)]TJ 0 -13.55 Td[(Napr)1(as)-1(za\\252a)-380(go)-380(jes)-1(zc)-1(ze)-381(cic)28(h)28(u\\261k)28(o,)-380(ale)-380(jeno)-380(tak)-380(l)1(a)-380(z)-1(wycz)-1(a)-55(ju)1(,)-380(b)-27(o)-381(k)1(ie)-1(j)-379(s)-1(i)1(\\246)-381(n)1(ie)]TJ -27.879 -13.549 Td[(ozw)27(a\\252,)-333(j\\246\\252a)-334(skw)28(apn)1(ie)-334(za)27(wij)1(a\\242)-334(i)-333(c)27(h)1(o)27(w)28(a\\242)-334(te)-333(s)-1(w)28(o)-56(j)1(e)-334(s)-1(k)56(arb)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zem)27(u\\273)-333(to)-334(n)1(ie)-334(siedzic)-1(i)1(e)-334(u)-333(nas?)-334({)-333(zagadn\\241\\252)-333(p)-27(o)-334(j)1(akim\\261)-334(cz)-1(asie)-1(.)]TJ 0 -13.549 Td[({)-360(Jak\\273e)-1(,)-360(rob)-27(o)-28(cie)-361(\\273adn)1(e)-1(j)-359(nie)-361(p)-27(oredz\\246,)-360(na)28(w)27(et)-360(z)-1(a)-360(g\\241sk)55(ami)-360(ni)1(e)-361(wyd\\241\\273\\246)-1(.)-360(Dar)1(-)]TJ -27.879 -13.549 Td[(mo)-362(to)-362(\\271)-1(r)1(e)-1(\\242)-362(b)-28(\\246d\\246,)-362(co?)-1(.)1(..)-362(S\\252ab)1(am)-1(,)-361(ju\\273)-362(z)-363(d)1(ni)1(a)-362(na)-362(dzie\\253)-362(k)28(o\\253)1(c)-1(a)-362(cz)-1(ek)55(am.)-362(P)29(e)-1(wni)1(e)-1(,)-362(co)]TJ 0 -13.55 Td[(u)-316(krewniak)28(\\363)28(w)-317(milej)-316(b)28(y)-316(p)-28(omrze)-1(\\242,)-316(m)-1(il)1(e)-1(j)1(...)-316(c)27(h)1(o)-28(\\242)-1(b)29(y)-317(n)1(a)27(w)28(e)-1(t)-316(w)-317(tej)-316(k)28(om)-1(or)1(z)-1(e)-317(p)-27(o)-317(j)1(a\\252\\363)27(w-)]TJ 0 -13.549 Td[(ce)-1(..)1(.)-367(ju)1(\\261)-1(ci,)-366(jeno)-367(gd)1(z)-1(ie\\273)-1(b)29(y)-367(w)28(am)-368(t)1(aki)-367(k\\252op)-27(ot)-367(i)-366(turb)1(ac)-1(j)1(e)-1(!)-366(Ca\\252)-1(e)-367(cz)-1(terd)1(z)-1(ie\\261c)-1(i)-366(z)-1(\\252ot)28(yc)27(h)]TJ\nET\nendstream\nendobj\n1642 0 obj <<\n/Type /Page\n/Contents 1643 0 R\n/Resources 1641 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1641 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1646 0 obj <<\n/Length 9329      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(514)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(mam)-310(na)-310(p)-27(o)-28(c)28(h\\363)28(w)27(ek..)1(.)-310(b)28(y)1(c)27(h)-309(to)-310(i)-309(z)-1(e)-310(msz)-1(\\241)-310(b)29(y\\252o...)-309(p)-28(o)-309(gos)-1(p)-27(o)-28(d)1(arsku..)1(.)-310(co?...)-309(Pierzyn\\246)]TJ 0 -13.549 Td[(b)28(ym)-265(d)1(o\\252o\\273)-1(y\\252a..)1(.)-265(Nie)-265(b)-27(\\363)-56(j)1(c)-1(ie)-265(si\\246)-1(,)-264(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o)-265(w)28(ama)-265(usn\\246,)-265(n)1(i)-265(si\\246)-265(s)-1(p)-27(o)-28(dziejec)-1(ie...)-264(p)-27(okr\\363t-)]TJ 0 -13.549 Td[(ce)-1(..)1(.)-355({)-355(j\\241k)56(a\\252a)-355(nie\\261m)-1(ia\\252o,)-354(z)-356(b)1(ij\\241cym)-355(s)-1(erce)-1(m)-355(o)-28(cz)-1(ekiw)28(ania,)-354(\\273)-1(e)-355(j\\241)-355(pr)1(z)-1(y)1(jmie)-356(i)-354(p)-28(o)28(wie:)]TJ 0 -13.549 Td[(\\377Osta\\253ce)-1(!)1(\")]TJ 27.879 -13.549 Td[(Ale)-450(s)-1(i\\246)-450(nie)-450(o)-28(dezw)27(a\\252,)-450(jak)1(b)28(y)-450(ni)1(e)-451(rozumiej\\241c)-450(t)27(y)1(c)27(h)-450(sk)56(am)-1(\\252a\\253)1(,)-450(prze)-1(ci\\241)-28(ga\\252)-450(si\\246)]TJ -27.879 -13.55 Td[(jeno,)-281(p)-28(oziew)27(a\\252)-282(i)-282(j\\241\\252)-282(si\\246)-283(c)28(h)28(y\\252ki)1(e)-1(m)-282(przebiera\\242)-282(k)28(ole)-283(c)28(ha\\252up)29(y)-282(ku)-282(sto)-28(d)1(\\363\\252)-1(ce,)-282(na)-282(siano..)1(.)]TJ 27.879 -13.549 Td[({)-490(G)1(os)-1(p)-27(o)-28(d)1(arz)-490(taki.)1(..)-489(ju\\261ci...)-489(jak)1(\\273)-1(eb)28(y)83(.)1(..)-489(dziad\\363)28(wk)56(a)-1(m)-489(ino..)1(.)-490(\\212k)56(a\\252a)-490(w)-489(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(cic)27(h)28(u)1(\\261)-1(k)1(im)-1(,)-333(\\273aln)28(y)1(m)-334(s)-1(k)1(rz)-1(y)1(b)-28(otem,)-333(p)-28(o)-28(d)1(nosz)-1(\\241c)-333(w)-1(y)1(p\\252ak)56(ane)-334(o)-27(c)-1(zy)-333(ku)-333(ni)1(e)-1(m)28(u.)]TJ 27.879 -13.549 Td[(P)28(o)28(wlek\\252a)-387(si\\246)-387(w)27(ol)1(niu)1(\\261)-1(k)28(o,)-386(k)56(as)-1(zl\\241c)-387(cz)-1(\\246s)-1(to)-386(i)-387(p)1(rzys)-1(i)1(ada)-55(j\\241c)-387(co)-387(tro)-27(c)27(ha)-386(nad)-386(sta-)]TJ -27.879 -13.549 Td[(w)28(e)-1(m.)-333(P)28(osz)-1(\\252a)-333(zno)28(wu,)-333(j)1(ak)-333(co)-334(d)1(ni)1(a,)-333(wypatr)1(yw)27(a\\242)-333(p)-27(o)-333(w)-1(si,)-333(k)56(a)-55(jb)28(y)-333(mog\\252a)-333(p)-27(om)-1(r)1(z)-1(e\\242)-334(p)-27(o)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arsku,)-333(p)1(rze)-1(z)-334(osz)-1(u)1(k)56(a\\253st)28(w)27(a.)]TJ 27.879 -13.55 Td[(I)-395(w)-1(l)1(e)-1(k\\252a)-395(si\\246)-396(sz)-1(u)1(k)55(a\\242)-395(lud)1(z)-1(i)-395(spr)1(a)27(wiedl)1(iwyc)27(h.)-395(S)1(n)28(u)1(\\252)-1(a)-395(si\\246)-396(p)-27(o)-396(wsi)-395(jak)28(o)-395(ta)-395(nik)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(pa)-55(j\\246c)-1(zyn)1(a,)-333(c)-1(o)-333(lec)-1(i,)-333(n)1(ie)-334(wiedz\\241c)-1(,)-333(k)56(a)-56(j)-333(si\\246)-334(u)1(c)-1(ze)-1(p)1(i.)]TJ 27.879 -13.549 Td[(A)-450(n)1(ar\\363)-28(d)-449(s)-1(i\\246)-450(p)1(rz)-1(e\\261m)-1(iew)28(a\\252)-451(i)-449(la)-450(u)1(c)-1(iec)27(h)28(y)-449(radzi\\252)-450(b)1(ie)-1(d)1(o)-28(cie)-1(,)-449(\\273)-1(e)-450(u)-450(k)1(re)-1(wn)1(iak)28(\\363)28(w)]TJ -27.879 -13.549 Td[(osta\\242)-334(p)-27(o)27(win)1(na,)-333(za\\261)-334(K\\252\\246)-1(b)-27(om,)-333(nib)29(y)-334(t)1(o)-334(z)-334(p)1(rzyjaciels)-1(t)28(w)28(a,)-333(te)-1(\\273)-333(m)-1(\\363)28(wili)1(:)]TJ 27.879 -13.549 Td[({)-457(P)28(o)28(wino)28(w)28(ata)-457(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)1(,)-457(grosz)-457(s)-1(w)28(\\363)-56(j)-456(m)-1(a)-457(n)1(a)-457(p)-28(o)-27(c)27(ho)28(w)28(e)-1(k)-457(i)-456(d\\252ugo)-457(w)28(ama)-457(w)]TJ -27.879 -13.55 Td[(c)27(h)1(a\\252up)1(ie)-334(ni)1(e)-334(z)-1(ago\\261c)-1(i)1(...)-333(Ka)-55(j\\273e)-334(s)-1(i)1(\\246)-334(to)-333(p)-28(o)-27(dzie)-1(j)1(e)-1(?)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(tk)28(o)-321(to)-320(przysz)-1(\\252o)-321(d)1(o)-321(g\\252o)27(wy)-320(K\\252\\246)-1(b)-27(o)28(w)27(ej,)-320(gdy)-321(m\\241\\273)-321(op)-28(o)28(wiedzia\\252)-321(jej)-321(o)-320(dzi-)]TJ -27.879 -13.549 Td[(sie)-1(j)1(s)-1(zym)-407(z)-406(Agat\\241.)-406(Spa\\242)-406(s)-1(i\\246)-406(ju)1(\\273)-407(p)-28(o\\252o\\273yli)1(,)-407(a)-406(ki)1(e)-1(j)-406(d)1(z)-1(iec)-1(i)-406(j)1(\\246)-1(\\252y)-406(c)27(h)1(rap)1(a\\242)-1(,)-406(zac)-1(z\\246)-1(\\252a)-406(go)]TJ 0 -13.549 Td[(cic)27(h)1(o)-334(n)1(am)-1(a)28(wia\\242:)]TJ 27.879 -13.549 Td[({)-342(Miejsc)-1(e)-343(si\\246)-343(zna)-56(j)1(dzie...)-342(w)-343(sionce)-343(mo\\273)-1(e)-343(p)-27(ole\\273)-1(e\\242)-1(..)1(.)-343(g\\246s)-1(i)-342(si\\246)-343(wygna)-342(p)-27(o)-28(d)-342(s)-1(zo-)]TJ -27.879 -13.55 Td[(p)-27(\\246)-1(..)1(.)-359(b)-28(ele)-360(cz)-1(y)1(m)-360(si\\246)-360(p)1(rz)-1(e\\273ywi..)-359(d\\252u)1(go)-360(n)1(ie)-360(p)-27(o)-28(ci\\241)-28(gn)1(ie...)-359(na)-359(p)-27(o)-28(c)27(h)1(o)28(w)27(ek)-359(m)-1(a..)1(.)-359(Lud)1(z)-1(ie)]TJ 0 -13.549 Td[(b)28(y)-407(ni)1(e)-408(gadali)1(...)-407(a)-407(pierzyn)28(y)-407(ni)1(e)-408(p)-28(otr)1(z)-1(a)-407(b)28(y)-407(o)-28(d)1(da)28(w)27(a\\242...)-407(j)1(u\\261c)-1(i,)-407(n)1(a)-408(d)1(ro)-28(d)1(z)-1(e)-408(tego)-407(nie)]TJ 0 -13.549 Td[(zna)-56(j)1(dzie)-334({)-333(t\\252umacz)-1(y\\252a)-333(gor\\241co.)]TJ 27.879 -13.549 Td[(Ale)-334(K)1(\\252\\241b)-333(jeno)-333(z)-1(ac)28(hrap)1(a\\252)-334(w)-333(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(.)-333(I)-334(d)1(opiero)-333(naza)-56(j)1(utrz)-333(rano)-333(rzek\\252:)]TJ 0 -13.549 Td[({)-275(\\233)-1(eb)28(y)-275(Jagata)-275(b)28(y\\252a)-275(c)-1(a\\252kiem)-276(b)-27(e)-1(z)-275(gros)-1(za,)-275(przyj)1(\\241\\252b)28(ym,)-276(t)1(rud)1(no,)-275(dop)1(ust)-276(Bo\\273y)83(,)]TJ -27.879 -13.55 Td[(ale)-444(tak,)-443(p)-28(o)28(wiedz\\241,)-444(c)-1(o)-443(la)-444(t)28(yc)27(h)-443(par)1(u)-444(z\\252ot)28(yc)27(h)-443(dob)1(ro\\261\\242)-445(\\261wiarcz)-1(ym)28(y)83(.)-443(Pr)1(z)-1(ec)-1(iek)-444(j)1(u\\273)]TJ 0 -13.549 Td[(p)28(ysku)1(j\\241,)-333(co)-334(la)-333(nas)-333(p)-28(osz)-1(\\252a)-333(na)-333(\\273e)-1(b)1(ry)84(...)-333(Nie)-334(mo\\273na.)]TJ 27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a,)-354(\\273)-1(e)-354(s)-1(\\252u)1(c)27(ha\\252a)-354(si\\246)-354(w)27(e)-354(w)-1(sz)-1(y)1(s)-1(tk)1(im)-355(m\\246\\273)-1(a,)-354(to)-354(i)1(no)-354(w)27(estc)27(hn)1(\\246)-1(\\252a)-354(\\273a\\252o\\261)-1(n)1(ie)]TJ -27.879 -13.549 Td[(za)-334(p)1(ie)-1(r)1(z)-1(y)1(n\\241)-333(i)-333(p)-28(osz)-1(\\252a)-333(pr)1(z)-1(yn)1(agla\\242)-334(d)1(z)-1(iew)28(c)-1(zyn)28(y)-333(do)-333(p)-27(o\\261)-1(p)1(ie)-1(c)28(h)28(u.)]TJ 27.879 -13.549 Td[(Kap)1(ust\\246)-334(mie)-1(l)1(i)-333(ano)-333(dzis)-1(i)1(a)-56(j)-333(sadzi\\242)-1(.)]TJ 0 -13.55 Td[(Dzie)-1(\\253)-257(z)-1(r)1(obi\\252)-258(s)-1(i)1(\\246)-259(b)28(y\\252)-258(jak)-258(i)-258(w)28(c)-1(zora)-55(jsz)-1(y)84(,)-258(\\261)-1(l)1(ic)-1(zn)28(y)84(,)-258(s)-1(\\252on)1(e)-1(cz)-1(n)28(y)-258(i)-258(p)1(ra)28(wdziwie)-259(ma)-56(j)1(o-)]TJ -27.879 -13.549 Td[(wy)83(.)-254(Wi)1(ate)-1(r)-254(jeno)-254(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-255(b)1(aras)-1(zku)1(j\\241cy)-255(i)-254(sw)-1(y)1(w)27(oli)1(\\252)-255(p)-27(o)-255(p)-27(olac)27(h)1(,)-254(\\273)-1(e)-255(zb)-27(o\\273)-1(a)-254(c)27(hl)1(usta\\252y)]TJ 0 -13.549 Td[(p)-27(o)-359(zagonac)27(h)-358(k)1(ie)-1(j)-358(w)28(o)-28(d)1(y)-359(r)1(oz)-1(k)28(o\\252ysane.)-358(Sady)-358(si\\246)-359(c)27(h)28(wia\\252y)-358(z)-359(p)-27(os)-1(zumem)-1(,)-358(g\\246)-1(sto)-358(trz\\246)-1(-)]TJ 0 -13.549 Td[(s\\241c)-385(okwiatem)-1(,)-384(a)-384(p)-28(e\\252ne,)-384(c)-1(i)1(\\246)-1(\\273kie)-385(ki)1(\\261)-1(cie)-385(b)1(z)-1(\\363)28(w)-385(i)-384(cz)-1(eremc)27(h)28(y)-384(rozwie)-1(w)28(a\\252y)-384(z)-1(ap)1(ac)27(hem.)]TJ 0 -13.549 Td[(P)28(o)28(wietrze)-341(sz\\252)-1(o)-339(rze)-1(\\271w)27(e,)-339(prze)-1(j)1(\\246)-1(te)-340(ziem)-1(i)1(\\241)-340(i)-339(kwiatami.)-340(S)1(p)-28(o)-27(d)-340(l)1(e)-1(\\261n)28(yc)28(h)-340(p)1(as)-1(t)28(wisk)-340(\\261pi)1(e)-1(-)]TJ 0 -13.549 Td[(wy)-380(s)-1(i\\246)-380(nies\\252)-1(y)-380(z)-380(w)-1(i)1(atrem)-1(.)-380(W)-380(ku)1(\\271)-1(n)1(i)-380(dzw)27(on)1(i\\252y)-380(m\\252)-1(ot)28(y)84(.)-380(Od)-380(sam)-1(ego)-380(rana)-380(p)-27(e)-1(\\252n)1(o)-381(j)1(u\\273)]TJ 0 -13.55 Td[(b)28(y\\252o)-382(n)1(a)-383(d)1(rogac)27(h)-381(gw)27(ar\\363)28(w)-382(i)-382(lud)1(z)-1(i)1(.)-382(Kobiet)28(y)-382(c)-1(i)1(\\241)-28(gn\\246\\252y)-382(na)-382(k)56(apu)1(\\261)-1(n)1(is)-1(k)56(a)-382(d\\271wiga)-56(j)1(\\241c)-383(w)]TJ 0 -13.549 Td[(pr)1(z)-1(etak)56(ac)27(h)-332(i)-332(k)28(os)-1(zac)27(h)-332(r)1(oz)-1(sad\\246,)-332(a)-333(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada)-56(j)1(\\241c)-333(w)-333(g\\252os)-333(o)-332(w)28(c)-1(zora)-56(j)1(s)-1(zym)-333(j)1(armarku)]TJ 0 -13.549 Td[(i)-333(w)27(\\363)-55(jto)28(w)28(e)-1(j)-333(spr)1(a)28(w)-1(ie.)]TJ 27.879 -13.549 Td[(\\233e)-454(p)-27(okr)1(\\363tc)-1(e,)-453(j)1(e)-1(sz)-1(cz)-1(e)-453(ni)1(m)-454(r)1(os)-1(a)-453(ob)-27(e)-1(sc)27(h)1(\\252a,)-453(na)-453(cz)-1(ar)1(n)28(yc)27(h)-452(k)56(apu)1(\\261)-1(n)1(is)-1(k)56(ac)27(h)1(,)-453(p)-27(o-)]TJ -27.879 -13.549 Td[(ci\\246)-1(t)28(yc)28(h)-433(jeno)-433(bru)1(z)-1(d)1(am)-1(i)-433(p)-27(e)-1(\\252n)28(y)1(m)-1(i)-433(w)28(o)-28(dy)-433(p)-27(ol\\261)-1(n)1(iew)27(a)-55(j\\241ce)-1(j)-433(w)-434(s\\252o\\253cu,)-433(z)-1(ar)1(oi\\252o)-434(si\\246)-434(o)-28(d)]TJ 0 -13.55 Td[(cz)-1(erwieni.)]TJ 27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-344(z)-345(c\\363rk)56(am)-1(i)-344(t)1(e)-1(\\273)-344(tam)-345(p)-27(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252a,)-344(za\\261)-345(K\\252\\241b)-344(z)-344(Mateusz)-1(em)-344(i)-344(c)27(h\\252op)1(a-)]TJ\nET\nendstream\nendobj\n1645 0 obj <<\n/Type /Page\n/Contents 1646 0 R\n/Resources 1644 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1644 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1649 0 obj <<\n/Length 8070      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(515)]TJ -358.232 -35.866 Td[(k)56(am)-1(i)-333(wzi\\246)-1(l)1(i)-334(si\\246)-334(d)1(o)-333(p)-28(o)-28(d)1(pi)1(e)-1(ran)1(ia)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-338(sk)28(oro)-337(s)-1(\\252o\\253ce)-338(zac)-1(z\\246)-1(\\252o)-337(przyp)1(ie)-1(k)56(a\\242,)-338(stary)-337(zda\\252)-338(r)1(ob)-28(ot\\246)-338(n)1(a)-338(syn)1(\\363)27(w)-337(i)-338(wyw)28(o-)]TJ -27.879 -13.549 Td[(\\252a)28(w)-1(szy)-334(Balce)-1(r)1(k)55(a,)-333(p)-27(osz)-1(li)-333(o)-28(d)1(wie)-1(d)1(z)-1(a\\242)-333(B)-1(or)1(yn\\246.)]TJ 27.879 -13.549 Td[({)-333(Pi\\246kn)28(y)-333(cz)-1(as,)-333(kumie)-334({)-333(rzek\\252)-334(K)1(\\252)-1(\\241b)-332(przyj)1(m)27(uj)1(\\241c)-334(tab)1(ak)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Galan)28(t)28(y)84(.)-333(B)-1(y)1(le)-334(jeno)-333(za)-334(d)1(\\252ugo)-333(nie)-333(przyp)1(ie)-1(k)56(a\\252o.)]TJ 0 -13.55 Td[({)-333(Str)1(onami)-333(prze)-1(c)28(ho)-28(d)1(z)-1(\\241)-333(desz)-1(cz)-1(e,)-333(to\\273)-334(i)-333(nas)-333(nie)-334(omin)1(\\241.)]TJ 0 -13.549 Td[({)-333(Robact)27(w)28(o)-333(ja\\273e)-334(s)-1(i)1(\\246)-334(roi)-333(na)-333(d)1(rz)-1(ew)28(ac)27(h,)-333(n)1(a)-334(susz)-1(\\246)-333(s)-1(i\\246)-333(m)-1(a.)]TJ 0 -13.549 Td[({)-304(A)-303(jar)1(z)-1(y)1(n)28(y)-304(sp)-27(\\363\\271)-1(n)1(ione,)-303(m)-1(og\\252ob)28(y)-303(pr)1(z)-1(y)1(pali\\242.)-303(Mo\\273e)-304(P)28(an)-303(Je)-1(zus)-304(n)1(ie)-304(d)1(opu\\261ci...)]TJ -27.879 -13.549 Td[(C\\363\\273)-334(ta)-333(na)-333(jar)1(m)-1(ar)1(ku?)-333(do)28(wie)-1(d)1(z)-1(i)1(e)-1(li)1(\\261)-1(cie)-334(si\\246)-334(co)-334(o)-333(k)28(oni)1(u?)]TJ 27.879 -13.549 Td[({)-333(I...)-333(da\\252em)-334(starsz)-1(em)27(u)-333(tr)1(z)-1(y)-333(ru)1(bl)1(e)-1(,)-333(pr)1(z)-1(y)28(ob)1(iec)-1(a\\252.)]TJ 0 -13.549 Td[({)-371(\\233e)-371(to)-371(p)1(rze)-1(zpiecz)-1(n)1(o\\261)-1(ci)-371(n)1(ie)-371(m)-1(a)-370(\\273)-1(adn)1(e)-1(j)1(!..)1(.)-371(cz)-1(\\252o)28(wie)-1(k)-370(p)-27(o)-28(d)-371(strac)28(hem)-371(c)-1(i\\246giem)]TJ -27.879 -13.55 Td[(\\273yje)-334(j)1(ak)-333(te)-1(n)-333(za)-56(j)1(\\241c)-1(,)-333(a)-333(ni)1(kto)-333(nie)-333(p)-28(or)1(adzi.)]TJ 27.879 -13.549 Td[({)-333(A)-334(w)28(\\363)-56(j)1(t)-333(kiej)-333(m)-1(alo)28(w)28(an)28(y)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(os)-1(tr)1(o\\273)-1(n)1(ie)-334(Balc)-1(erek.)]TJ 0 -13.549 Td[({)-333(T)83(rza)-334(b)-27(\\246dzie)-334(p)-27(om)27(y\\261le\\242)-334(o)-334(n)1(o)28(w)-1(y)1(m)-334({)-333(rzuci\\252)-334(K)1(\\252)-1(\\241b)1(.)]TJ 0 -13.549 Td[(Balc)-1(erek)-333(s)-1(p)-27(o)-56(j)1(rza\\252)-334(n)1(a)-334(n)1(iego,)-334(al)1(e)-334(s)-1(t)1(ary)-333(do)-28(d)1(a\\252)-334(gor)1(\\241c)-1(o:)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(wst)28(yd)-333(pr)1(z)-1(ez)-334(ni)1(e)-1(go)-333(na)-333(wie\\261)-334(idzie.)-333(S\\252ysz)-1(eli\\261c)-1(i)1(e)-334(o)-334(w)28(cz)-1(ora)-55(jsz)-1(y)1(m)-1(?)]TJ 0 -13.55 Td[({)-411(I..)1(.)-411(b)1(itk)56(a)-411(k)56(a\\273)-1(d)1(e)-1(m)28(u)-410(przytra\\014)1(\\242)-411(s)-1(i)1(\\246)-412(mo\\273e)-1(,)-410(z)-1(wycz)-1(a)-55(jn)1(ie)-1(.)1(..)-411(D)1(rugie)-411(miar)1(kuj)1(\\246)-1(:)]TJ -27.879 -13.549 Td[(b)28(y\\261m)27(y)-333(za)-333(te)-334(jego)-334(r)1(z)-1(\\241d)1(y)-333(nie)-333(dop\\252acili)1(.)]TJ 27.879 -13.549 Td[({)-333(Sam)-334(si\\246)-334(n)1(ie)-334(r)1(oz)-1(p)-27(orz\\241dza:)-333(dy\\242)-334(i)-333(k)56(asjer)-333(pil)1(n)28(uj)1(e)-1(,)-333(i)-333(pi)1(s)-1(arz,)-333(i)-333(ur)1(z)-1(\\241d)1(...)]TJ 0 -13.549 Td[({)-325(P)1(s)-1(y)-324(m)-1(i)1(\\246)-1(sa)-325(pi)1(ln)28(u)1(j\\241!)-324(W)83(aru)1(j\\241,)-324(a)-325(w)-325(k)28(o\\253)1(c)-1(u)-324(t)28(y)83(,)-324(c)27(h)1(\\252)-1(op)1(ie,)-325(d)1(op\\252a\\242)-1(,)-324(b)-27(o)-325(ni)1(e)-326(d)1(opi)1(l-)]TJ -27.879 -13.549 Td[(no)28(w)28(ali.)]TJ 27.879 -13.55 Td[({)-333(B)-1(oga\\242)-333(ta)-334(i)1(nac)-1(zej!)-333(Wiec)-1(i)1(e)-334(ta)-333(c)-1(o)-333(no)28(w)28(e)-1(go?)]TJ 0 -13.549 Td[(Balc)-1(erek)-231(jeno)-231(s)-1(p)1(lun)1(\\241\\252)-232(i)-231(r\\246k)55(\\241)-231(mac)27(hn)1(\\241\\252;)-232(n)1(ie)-232(c)28(hcia\\252)-232(gad)1(a\\242)-1(,)-231(c)27(h)1(\\252op)-231(b)28(y\\252)-232(mru)1(kliwy)]TJ -27.879 -13.549 Td[(i)-333(pr)1(z)-1(ez)-334(bab)-27(\\246)-334(zah)28(uk)56(an)28(y)84(,)-333(to)-333(i)-333(barze)-1(j)-332(s)-1(tr)1(z)-1(eg\\241c)-1(y)-333(j\\246zyk)56(a.)]TJ 27.879 -13.549 Td[(Dosz)-1(li)-333(te\\273)-334(d)1(o)-334(Boryn)1(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(J\\363zk)55(a)-333(skrob)1(a\\252)-1(a)-333(zie)-1(mn)1(iaki)-333(na)-333(gank)1(u.)]TJ 0 -13.55 Td[({)-260(Id\\271c)-1(ie,)-260(o)-56(j)1(c)-1(i)1(e)-1(c)-260(ta)-260(s)-1(ami)-260(le\\273)-1(\\241.)-260(Han)28(u)1(s)-1(i)1(a)-261(n)1(a)-260(k)55(ap)1(u\\261ni)1(s)-1(ku)1(,)-260(a)-260(Jagna)-260(rob)1(i)-260(u)-260(matki.)]TJ 0 -13.549 Td[(W)-444(iz)-1(b)1(ie)-445(p)1(usto)-445(b)28(y\\252o,)-444(pr)1(z)-1(ez)-445(ot)28(w)27(art)1(e)-445(okno)-444(z)-1(agl\\241d)1(a\\252y)-445(ki)1(\\261)-1(cie)-445(bz\\363)28(w)-445(i)-445(s\\252o\\253ce)]TJ -27.879 -13.549 Td[(sia\\252o)-334(si\\246)-334(p)1(rze)-1(z)-334(ziele)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(St)1(ary)-286(s)-1(iedzia\\252)-286(na)-287(\\252\\363\\273ku)1(.)-287(W)1(yc)27(h)28(u)1(d\\252y)-286(b)28(y\\252,)-286(s)-1(i)1(w)27(a)-286(bro)-27(da)-286(je\\273)-1(y\\252a)-286(m)27(u)-286(si\\246)-287(na)-286(\\273)-1(\\363\\252tej)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(z)-1(y)-313(ki)1(e)-1(j)-313(szc)-1(ze)-1(\\242,)-313(g\\252o)27(w)28(\\246)-314(mia\\252)-313(jes)-1(zc)-1(ze)-314(ob)29(w)-1(i)1(\\241z)-1(an)1(\\241,)-313(ruc)28(ha\\252)-313(c)-1(osik)-313(sin)28(ymi)-313(w)27(ar)1(gam)-1(i)1(.)]TJ 27.879 -13.55 Td[(P)28(o)-28(c)28(h)28(w)28(alili)-333(Boga,)-333(nie)-334(o)-27(drzek\\252)-334(n)1(i)-333(s)-1(i\\246)-333(p)-28(or)1(usz)-1(y\\252.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(oz)-1(n)1(a)-56(j)1(e)-1(cie)-334(to)-333(nas?)-334({)-333(ozw)27(a\\252)-333(s)-1(i\\246)-333(K\\252\\241b)-333(z)-1(a)-333(r\\246k)28(\\246)-334(go)-333(bior)1(\\241c)-1(.)]TJ 0 -13.549 Td[(Jakb)29(y)-333(n)1(ic)-333(n)1(ie)-333(wiedzia\\252,)-332(nas\\252uc)27(h)1(iw)28(a\\252)-333(n)1(ib)28(y)-332(tego)-333(\\261wiegotania)-332(jask)28(\\363\\252e)-1(k)-332(l)1(e)-1(p)1(i\\241-)]TJ -27.879 -13.549 Td[(cyc)27(h)-323(gniazda)-324(p)-27(o)-28(d)-323(s)-1(trzec)27(h\\241)-324(l)1(e)-1(b)-27(o)-324(te)-1(go)-324(szm)-1(eru)-323(ga\\252)-1(\\246zi)-324(s)-1(zoru)1(j\\241cyc)27(h)-323(p)-28(o)-324(\\261c)-1(i)1(anac)27(h)-323(i)-324(w)]TJ 0 -13.549 Td[(okn)1(o)-334(n)1(iekie)-1(d)1(y)-333(z)-1(agl)1(\\241da)-56(j)1(\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[({)-333(Macie)-1(j)1(u!)-333({)-333(rze)-1(k\\252)-333(z)-1(n)1(\\363)28(w)-334(K\\252\\241b)-333(wstrz\\241s)-1(a)-55(j\\241c)-334(n)1(im)-334(zdziebk)28(o.)]TJ 0 -13.55 Td[(Chor)1(y)-334(d)1(rgn)1(\\241\\252,)-334(o)-27(c)-1(zy)-333(m)27(u)-333(si\\246)-334(zatrz\\246)-1(s\\252y)83(,)-333(ob)-27(e)-1(j)1(rza\\252)-334(si\\246)-334(n)1(a)-334(n)1(ic)27(h)1(.)]TJ 0 -13.549 Td[({)-333(S\\252ysz)-1(y)1(c)-1(ie?)-334(d)1(y\\242)-334(K\\252\\241b)-333(j)1(e)-1(stem)-1(,)-333(a)-333(to)-333(B)-1(alcere)-1(k)1(,)-334(w)28(asz)-334(kum;)-333(p)-27(oz)-1(n)1(a)-56(j)1(e)-1(cie)-1(,)-333(co?)]TJ 0 -13.549 Td[(Cz)-1(ek)56(ali)-333(patr)1(z)-1(\\241c)-334(m)28(u)-333(w)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-281(S)1(am)-281(tu,)-280(c)27(h)1(\\252)-1(op)29(y!)-281(Do)-280(m)-1(n)1(ie!)-281(Bij)-280(psub)1(rat\\363)28(w!)-281(b)1(ij!)-280({)-281(kr)1(z)-1(yk)1(n\\241\\252)-281(z)-281(n)1(ag\\252)-1(a)-280(ogrom-)]TJ -27.879 -13.549 Td[(n)28(ym)-333(g\\252os)-1(em)-1(,)-333(p)-27(o)-28(d)1(ni\\363s\\252)-334(r)1(\\246)-1(ce)-334(jak)1(b)28(y)-333(w)-334(ob)1(roni)1(e)-334(i)-333(z)-1(w)28(ali\\252)-333(s)-1(i)1(\\246)-334(na)-333(wz)-1(n)1(ak.)]TJ 27.879 -13.55 Td[(J\\363zk)55(a)-366(wp)1(ad\\252a)-366(na)-366(kr)1(z)-1(yk)-365(i)-366(j\\246\\252a)-366(m)27(u)-366(g\\252o)28(w)28(\\246)-367(ob)28(w)28(ala\\242)-366(m)-1(okr)1(ymi)-366(s)-1(zmatam)-1(i)1(,)-366(ale)]TJ -27.879 -13.549 Td[(on)-333(j)1(u\\273)-334(le\\273a\\252)-334(cic)27(h)28(y)84(,)-333(a)-334(w)-333(s)-1(zerok)28(o)-333(ot)27(w)28(art)28(yc)28(h)-333(o)-28(cz)-1(ac)27(h)-332(l\\261)-1(n)1(i\\252)-333(jaki\\261)-333(s)-1(tr)1(ac)27(h)-333(\\261m)-1(i)1(e)-1(rt)1(e)-1(ln)28(y)84(.)]TJ\nET\nendstream\nendobj\n1648 0 obj <<\n/Type /Page\n/Contents 1649 0 R\n/Resources 1647 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1647 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1652 0 obj <<\n/Length 8311      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(516)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Wyszli)-333(p)-28(ok)1(r\\363tce)-1(,)-333(sfraso)28(w)27(an)1(i)-334(i)-333(p)-27(e\\252)-1(n)1(i)-333(z)-1(gr)1(oz)-1(y)84(.)]TJ 0 -13.549 Td[({)-293(T)83(r)1(up)-292(c)-1(i)-292(tam)-293(le\\273)-1(y)84(,)-293(a)-293(n)1(ie)-293(\\273)-1(ywy)-292(c)-1(z\\252o)27(wiek!)-292({)-293(rze)-1(k\\252)-292(K\\252\\241b)-293(o)-27(dwraca)-56(j)1(\\241)-1(c)-293(o)-28(czy)-293(na)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-371(z)-1(n)1(o)28(w)-1(u)-371(skrob)1(a\\252a)-372(zie)-1(mn)1(iaki)-371(na)-371(ganku)1(,)-372(d)1(z)-1(ieci)-372(b)1(a)27(wi\\252y)-371(si\\246)-372(p)-28(o)-27(d)-372(\\261cian\\241,)]TJ -27.879 -13.549 Td[(a)-369(w)-368(s)-1(ad)1(z)-1(i)1(e)-369(s)-1(p)1(ac)-1(ero)28(w)27(a\\252)-368(Witk)28(o)28(wy)-369(b)-27(o)-28(ciek,)-368(z)-1(a\\261)-369(wiater)-368(przys\\252ania\\252)-368(ga\\252\\246)-1(ziami)-369(okn)1(o)]TJ 0 -13.55 Td[(wyw)28(arte.)]TJ 27.879 -13.549 Td[(Szli)-333(cz)-1(as)-334(j)1(aki\\261)-333(w)-334(milcz)-1(eniu)-333(zgrozy)83(,)-333(j)1(akb)28(y)-333(z)-334(gr)1(obu)-333(wysz)-1(li)1(.)]TJ 0 -13.549 Td[({)-333(Ka\\273)-1(d)1(e)-1(m)28(u)-333(pr)1(z)-1(y)1(jdzie)-334(n)1(a)-334(t)1(o,)-334(k)56(a\\273dem)27(u)-333({)-333(sz)-1(epn)1(\\241\\252)-334(\\252za)27(w)28(o)-333(K\\252\\241b.)]TJ 0 -13.549 Td[({)-427(A)-428(k)56(a\\273dem)27(u.)1(..)-427(w)27(ola)-427(Bo\\273)-1(a,)-427(c)-1(\\363\\273,)-427(nie)-427(p)-28(or)1(e)-1(d)1(z)-1(i.)1(..)-427(Hale)-1(,)-427(m\\363g\\252)-428(j)1(e)-1(sz)-1(cz)-1(e)-428(p)-27(o\\273y\\242)]TJ -27.879 -13.549 Td[(jak)56(\\241)-333(p)-27(or\\246)-1(,)-333(\\273e)-1(b)29(y)-333(nie)-334(ten)-333(las...)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(.)-333(Zgin)1(\\241\\252,)-333(a)-334(d)1(rugi)1(e)-334(s)-1(i)1(\\246)-334(z)-334(tego)-334(p)-27(o\\273ywi\\241)-333({)-334(w)28(e)-1(stc)27(h)1(n\\241\\252.)]TJ 0 -13.55 Td[({)-333(Raz)-334(k)28(oz)-1(i)1(e)-334(\\261)-1(mier\\242...)-333(ma\\252)-1(o)-333(si\\246)-334(to)-333(nah)1(aro)28(w)27(a\\252?)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(am)-1(a)-333(te\\273)-334(mo\\273)-1(e)-334(n)1(iez)-1(ad\\252u)1(go)-334(p)1(rzyjd)1(z)-1(i)1(e)-334(z)-1(a)-333(n)1(im)-334(i\\261\\242)-1(.)]TJ 0 -13.549 Td[(P)28(atr)1(z)-1(eli)-256(kw)28(ard)1(o)-257(w)28(e)-257(\\261wiat,)-256(w)-256(p)-28(ol)1(a)-257(r)1(oz)-1(k)28(o\\252ysane,)-256(na)-256(b)-27(ory)-256(wid)1(ne)-257(j)1(ak)-256(na)-256(d)1(\\252oni,)]TJ -27.879 -13.549 Td[(na)-306(r)1(ole)-307(ziele)-1(n)1(i\\241ce)-1(,)-306(n)1(a)-306(te)-1(n)-305(dzie)-1(\\253)-305(jasn)28(y)83(,)-306(ciep\\252y)-306(i)-306(zwie)-1(sno)28(wy)84(,)-306(i)-306(du)1(s)-1(ze)-307(im)-306(k)56(am)-1(i)1(e)-1(n)1(ia\\252y)]TJ 0 -13.549 Td[(w)-334(r)1(e)-1(zygn)1(ac)-1(j)1(i)-334(a)-333(p)-27(o)-28(dd)1(aniu)-332(s)-1(i\\246)-333(w)27(oli)-333(Bo\\273)-1(ej.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(zm)-1(i)1(e)-1(n)1(i\\242)-334(tego)-334(cz)-1(\\252o)28(wiek)28(o)27(wi,)-333(co)-28(\\242)-334(m)28(u)-333(pr)1(z)-1(ez)-1(n)1(ac)-1(zone,)-333(nie...)]TJ 0 -13.549 Td[(I)-333(z)-334(t)28(ym)-334(si\\246)-334(r)1(oz)-1(es)-1(zli.)]TJ 0 -13.549 Td[(Za\\261)-446(dr)1(ud)1(z)-1(y)-445(te)-1(go\\273)-446(j)1(e)-1(sz)-1(cze)-446(dni)1(a)-446(i)-445(nast\\246)-1(p)1(n)28(yc)28(h)-446(p)-27(o)-28(cz)-1(\\246li)-445(na)28(wiedza\\242)-446(c)27(hor)1(e)-1(go,)]TJ -27.879 -13.549 Td[(jeno)-333(co)-334(tak)-333(samo)-334(n)1(ik)28(ogo)-334(n)1(ie)-334(p)-27(ozna)28(w)27(a\\252,)-333(\\273e)-334(w)-334(k)28(o\\253)1(c)-1(u)-333(zapr)1(z)-1(es)-1(tal)1(i.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(m)28(u)-333(t)28(ylk)28(o)-333(pacierze)-334(o)-334(p)1(r\\246dki)1(e)-334(s)-1(k)28(on)1(anie)-333(p)-28(otr)1(z)-1(ebn)1(e)-334({)-333(p)-28(o)28(wiedzia\\252)-334(k)1(s)-1(i\\241d)1(z)-1(.)]TJ 0 -13.55 Td[(A)-255(\\273e)-256(k)56(a\\273den)-255(mia\\252)-255(d)1(os)-1(y\\242)-255(sw)27(oic)28(h)-255(tu)1(rb)1(a)-1(cji)-254(a)-255(bi)1(e)-1(d)1(,)-255(to)-255(i)-255(n)1(ie)-255(dziw)28(o)-1(t)1(a,)-255(c)-1(o)-254(w)-1(r)1(yc)27(h)1(le)]TJ -27.879 -13.549 Td[(zap)-28(omni)1(e)-1(li)-242(o)-243(nim,)-243(za\\261)-244(j)1(e)-1(\\261li)-243(zdar)1(z)-1(y\\252o)-243(si\\246)-243(k)28(om)27(u)-242(s)-1(p)-27(om)-1(n)1(ie\\242)-1(,)-243(t)1(o)-243(jakb)28(y)-242(o)-243(nieb)-27(os)-1(zc)-1(zyku)1(.)]TJ 27.879 -13.549 Td[(Co)-385(pra)28(wda,)-384(to)-385(i)-385(le)-1(\\273a\\252)-385(s)-1(e)-385(c)27(h)28(u)1(dziasz)-1(ek)-385(w)-386(t)1(akim)-385(opusz)-1(cze)-1(n)1(iu,)-385(k)1(ie)-1(b)29(y)-385(ju)1(\\273)-386(do)]TJ -27.879 -13.549 Td[(grob)1(u)-333(z)-1(\\252o\\273on)28(y)-333(i)-333(tra)28(w)28(\\241)-334(p)-27(oros\\252y)83(.)]TJ 27.879 -13.549 Td[(Kom)28(u\\273)-334(ta)-333(b)28(y)1(\\252)-334(w)-333(pami\\246)-1(ci?)]TJ 0 -13.55 Td[(Byw)27(a\\252o)-296(ni)1(e)-1(r)1(az)-1(,)-296(i\\273)-296(c)-1(a\\252e)-297(d)1(ni)-296(le\\273)-1(a\\252)-296(b)-27(e)-1(z)-297(k)1(ropl)1(i)-296(w)27(o)-28(d)1(y)83(,)-296(mo\\273)-1(e)-296(b)28(y)-296(i)-296(p)-28(omar\\252)-296(pr)1(os)-1(to)]TJ -27.879 -13.549 Td[(z)-434(g\\252o)-28(du)1(,)-434(gdy)1(b)28(y)-434(n)1(ie)-435(W)1(itk)28(o)28(w)27(e)-434(dob)1(re)-434(s)-1(erce)-1(,)-433(kt\\363ren)-434(p)-27(ory)1(w)27(a\\252,)-434(co)-434(si\\246)-435(j)1(e)-1(n)1(o)-434(da\\252o,)-433(i)]TJ 0 -13.549 Td[(ni)1(\\363s)-1(\\252)-310(gos)-1(p)-27(o)-28(dar)1(z)-1(o)28(wi,)-310(a)-311(n)1(a)27(w)28(et)-311(kr)1(o)28(w)-1(y)-310(cz)-1(\\246s)-1(to)-310(p)-28(o)-27(dd)1(a)-56(ja\\252)-310(kry)1(jomo)-311(i)-310(m)-1(l)1(e)-1(ki)1(e)-1(m)-311(go)-310(p)-27(oi\\252.)]TJ 0 -13.549 Td[(Chor)1(y)-499(b)-28(o)28(wiem)-500(p)1(rze)-1(j)1(m)-1(o)28(w)28(a\\252)-500(go)-499(d)1(z)-1(i)1(w)-1(n)1(ie)-500(f)1(rasobli)1(w)27(\\241)-499(tr)1(os)-1(k)56(\\241,)-499(a\\273)-500(r)1(az)-500(o\\261m)-1(i)1(e)-1(li)1(\\252)-499(s)-1(i\\246)]TJ 0 -13.549 Td[(zap)28(yta\\242)-334(p)1(arob)1(k)55(a.)]TJ 27.879 -13.55 Td[({)-333(Pietrek,)-333(pr)1(a)28(w)-1(d)1(a)-334(t)1(o)-1(,)-333(\\273e)-334(kto)-333(p)1(rz)-1(ez)-334(sp)-28(o)28(wiedzi)-333(z)-1(amrze)-1(,)-333(d)1(o)-334(p)1(ie)-1(k)1(\\252a)-334(id)1(z)-1(i)1(e)-1(?)]TJ 0 -13.549 Td[({)-333(Pra)28(wda.)-333(P)1(rze)-1(ciek)-334(k)1(s)-1(i\\241d)1(z)-334(za)27(wd)1(y)-334(t)1(ak)-334(m\\363)28(wi\\241)-333(w)-334(k)28(o\\261c)-1(iele.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(gosp)-27(o)-28(dar)1(z)-334(b)28(y)-333(do)-333(pi)1(e)-1(ki)1(e)-1(\\252)-333(p)-28(osz)-1(l)1(i?)-334({)-333(pr)1(z)-1(e\\273)-1(egna\\252)-333(si\\246)-334(trw)28(o\\273)-1(n)1(ie.)]TJ 0 -13.549 Td[({)-333(T)83(aki)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-333(j)1(ak)-334(i)-333(d)1(rugi)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(!)-333(gosp)-27(o)-28(dar)1(z)-334(taki)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-333(j)1(ak)-334(i)-333(d)1(ru)1(gie)-1(!)-333(h)1(ale)-1(!)]TJ 0 -13.549 Td[({)-240(G\\252up)1(i\\261)-241(k)1(ie)-1(j)-239(g\\252\\241b)-240(k)56(apu\\261cian)28(y!)-240({)-240(zap)-28(erzy\\252)-240(s)-1(i\\246)-240(Pietrek,)-240(d)1(\\252ugo)-240(m)27(u)-240(t)1(\\252)-1(u)1(mac)-1(z\\241c)-1(,)]TJ -27.879 -13.55 Td[(ale)-334(W)1(itek)-334(n)1(ie)-334(u)29(w)-1(ierzy\\252;)-333(s)-1(w)28(o)-56(j)1(e)-334(on)-333(wiedzia\\252)-333(i)-334(zgo\\252a)-334(d)1(ru)1(gie)-1(.)]TJ 27.879 -13.549 Td[(T)83(ak)-333(ano)-333(p)1(rz)-1(ec)27(h)1(o)-28(dzi\\252y)-333(dn)1(ie)-334(w)-333(B)-1(or)1(yno)28(w)28(e)-1(j)-333(c)28(ha\\252up)1(ie...)]TJ 0 -13.549 Td[(Za\\261)-334(n)1(a)-334(wsi)-334(k)28(ot)1(\\252)-1(o)28(w)28(a\\252o)-334(si\\246)-334(ki)1(e)-1(j)-333(w)-333(garn)1(ku.)]TJ 0 -13.549 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a)-361(b)1(itk)56(a)-361(to)-361(spr)1(a)28(w)-1(i)1(\\252)-1(a,)-360(obi)1(e)-362(b)-27(o)28(wie)-1(m)-361(stron)29(y)-361(sz)-1(u)1(k)55(a\\252y)-360(\\261)-1(wiad)1(k)28(\\363)28(w)-1(,)-360(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(ci\\241)-28(ga)-56(j)1(\\241c)-334(n)1(ar\\363)-28(d)-333(n)1(a)-334(sw)27(o)-55(j\\241)-333(s)-1(t)1(ron\\246.)]TJ 27.879 -13.55 Td[(Cho)-28(cia\\273)-247(t)1(o)-247(j)1(e)-1(n)1(o)-247(z)-246(Koz)-1(\\252ami)-246(b)28(y\\252a)-246(s)-1(p)1(ra)28(w)28(a,)-246(ale)-247(w)28(\\363)-56(jt)-246(n)1(ie)-247(zas)-1(p)1(a\\252)-247(i)-246(t\\246go)-246(z)-1(ab)1(ie)-1(ga\\252.)]TJ -27.879 -13.549 Td[(G\\363r)1(\\246)-384(te\\273)-383(wz)-1(i\\241\\252)-383(zaraz)-383(z)-383(mie)-1(j)1(s)-1(ca,)-383(b)-27(o)-383(wi\\246c)-1(ej)-382(ni\\271li)-383(p)-27(o\\252o)28(w)27(a)-382(w)-1(si)-383(za)-383(n)1(im)-383(s)-1(i\\246)-383(op)-27(o)28(w)-1(i)1(e)-1(-)]TJ\nET\nendstream\nendobj\n1651 0 obj <<\n/Type /Page\n/Contents 1652 0 R\n/Resources 1650 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1637 0 R\n>> endobj\n1650 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1655 0 obj <<\n/Length 9073      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(517)]TJ -358.232 -35.866 Td[(dzia\\252a.)-438(Znali)-438(go)-439(j)1(ak)-439(z\\252y)-439(sze)-1(l\\241)-27(g,)-439(ale)-439(w)28(\\363)-56(j)1(te)-1(m)-438(b)28(y\\252)-439(p)1(rze)-1(ciec)27(h,)-438(m\\363g\\252)-439(w)-439(n)1(ie)-1(j)1(e)-1(d)1(n)28(ym)]TJ 0 -13.549 Td[(p)-27(oredzi\\242)-1(,)-444(ale)-445(i)-445(m\\363g\\252)-445(dob)1(rz)-1(e)-445(sad\\252a)-445(zala\\242)-445(z)-1(a)-445(sk)28(\\363r\\246,)-445(to)-444(i)-445(namo)28(w)27(\\241,)-444(pr)1(z)-1(yp)-27(o)-28(c)28(hleb-)]TJ 0 -13.549 Td[(st)27(w)28(em)-334(a)-333(gorz)-1(a\\252k)56(\\241)-333(przysp)-28(osobi)1(\\252)-334(sobie)-333(\\261)-1(wiad)1(k)28(\\363)27(w,)-333(jak)1(ic)27(h)-333(m)28(u)-333(b)28(y\\252o)-333(p)-27(otrza)-1(.)]TJ 27.879 -13.549 Td[(Kozio\\252)-253(le\\273)-1(a\\252)-253(ci\\246\\273)-1(k)28(o)-253(c)27(h)1(ory)-253(i)-252(ksi\\246)-1(d)1(z)-1(a)-253(z)-253(P)28(an)1(e)-1(m)-253(Jez)-1(u)1(s)-1(em)-254(spr)1(o)27(w)28(adzali)-252(do)-253(ni)1(e)-1(go.)]TJ -27.879 -13.549 Td[(P)28(o)28(wiedali)-380(ta)-381(r\\363\\273ni)1(e)-381(o)-381(te)-1(j)-380(c)28(horob)1(ie,)-381(b\\241k)56(a)-55(j\\241c)-381(w)-381(se)-1(kr)1(e)-1(cie,)-381(co)-381(jeno)-380(ud)1(a)-56(je,)-380(b)28(y)-381(w)28(\\363)-56(j)1(t)]TJ 0 -13.55 Td[(jesz)-1(cz)-1(e)-347(l)1(e)-1(p)1(ie)-1(j)-345(b)-28(ekn\\241\\252)-346(na)-346(s\\241dac)27(h)1(.)-346(Ale)-347(B\\363g)-346(w)-1(i)1(e)-1(,)-346(j)1(ak)-346(to)-347(tam)-346(b)28(y\\252o.)-346(Wiedzian)1(o)-347(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(dob)1(rze)-1(,)-318(\\273)-1(e)-319(s)-1(ama)-319(Koz\\252o)28(w)27(a)-319(ca\\252e)-319(dni)1(e)-320(l)1(ata\\252a)-319(p)-28(o)-319(l)1(ud)1(z)-1(iac)28(h)-319(p)-27(oms)-1(tu)1(j\\241c)-319(a)-319(wyrze)-1(k)56(a)-55(j\\241c.)]TJ 0 -13.549 Td[(Op)-27(o)28(w)-1(i)1(ada\\252a,)-244(co)-244(ju)1(\\273)-245(p)1(rze)-1(d)1(a\\252a)-244(m)-1(acior\\246)-244(z)-244(pr)1(os)-1(i\\246tami)-244(na)-243(le)-1(k)28(o)28(w)28(anie)-244(m\\246)-1(\\273a)-244(i)-244(p)1(ra)28(w)-1(i)1(e)-245(co)]TJ 0 -13.549 Td[(dn)1(ia)-311(wylat)28(yw)28(a\\252a)-311(um)28(y\\261)-1(l)1(nie)-311(pr)1(z)-1(ed)-311(w)28(\\363)-56(j)1(t\\363)28(w)-312(k)1(rz)-1(y)1(c)-1(z\\241c)-312(wni)1(e)-1(b)-27(og\\252os)-1(y)84(,)-311(j)1(ak)28(o)-311(ju\\273)-311(Bartek)]TJ 0 -13.549 Td[(umiera,)-333(Boga)-334(i)-333(lu)1(dzi)-333(s)-1(p)1(ra)28(wie)-1(d)1(liwyc)28(h)-333(wz)-1(yw)28(a)-56(j)1(\\241c)-334(na)-333(\\261w)-1(i)1(arc)-1(zenie)-334(i)-333(p)-27(oratu)1(nek.)]TJ 27.879 -13.549 Td[(Bie)-1(d)1(ota)-414(jeno)-414(i)-414(c)-1(o)-414(tkl)1(iws)-1(ze)-415(k)28(obi)1(e)-1(t)28(y)-414(stan\\246li)-414(p)-27(o)-415(ic)28(h)-414(stroni)1(e)-1(,)-414(a)-414(na)28(w)28(e)-1(t)-414(jeden)]TJ -27.879 -13.55 Td[(z)-361(p)-27(om)-1(n)1(iejsz)-1(yc)28(h)-360(gos)-1(p)-27(o)-28(d)1(arz)-1(y)84(,)-360(Kobu)1(s)-1(,)-360(\\273e)-361(to)-361(cz\\252)-1(o)28(wiek)-360(b)28(y\\252)-361(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(n)28(y)-360(i)-361(sw)28(arliwy)84(.)]TJ 0 -13.549 Td[(Ale)-281(r)1(e)-1(sz)-1(t)1(a)-281(n)1(i)-280(s)-1(\\252u)1(c)27(ha\\242)-280(nie)-280(c)27(hcia\\252a,)-280(w)-281(\\273yw)28(e)-281(o)-28(cz)-1(y)-280(si\\246)-281(wyp)1(iera)-56(j)1(\\241c)-1(,)-280(j)1(ak)28(ob)28(y)-280(c)-1(o)-280(n)1(ie)-1(b)1(\\241d\\271)]TJ 0 -13.549 Td[(widzieli,)-309(za\\261)-309(niejeden)-309(r)1(adzi\\252)-309(jes)-1(zc)-1(zek,)-309(b)28(y)-308(z)-310(w)28(\\363)-56(j)1(te)-1(m)-309(ni)1(e)-310(zadzie)-1(r)1(ali,)-308(b)-28(o)-309(n)1(ic)-1(zego)-309(nie)]TJ 0 -13.549 Td[(ws)-1(k)28(\\363r)1(a)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(No)28(w)27(e)-320(z)-320(te)-1(go)-320(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(y)-319(histori)1(e)-1(,)-319(\\273)-1(e)-320(to)-320(Kob)1(us)-320(m)-1(i)1(a\\252)-320(oz)-1(\\363r)-320(n)1(iep)-28(o)28(w\\261)-1(ci\\241)-28(gl)1(iwy)83(,)]TJ -27.879 -13.55 Td[(\\252ac)-1(n)1(o)-333(s)-1(i\\246)-333(z)-334(pi\\246\\261)-1(ciami)-333(p)-28(on)1(os)-1(i)1(\\252,)-334(a)-333(b)1(ab)28(y)-333(te)-1(\\273)-333(w)-334(s)-1(\\252o)28(w)28(ac)27(h)-333(n)1(ie)-334(pr)1(z)-1(ebi)1(e)-1(ra\\252y)84(.)]TJ 27.879 -13.549 Td[(Wi\\246c)-336(je)-1(n)1(o)-336(wrzas)-1(ki)-335(z)-337(tego)-336(s)-1(z\\252y)-336(i)-336(gni)1(e)-1(wy)84(,)-336(b)-28(o)-336(c\\363\\273)-1(?)-336(mogli)-336(to)-336(p)-27(oredzi\\242)-336(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(z)-1(om)-333(i)-333(w)27(\\363)-56(j)1(to)28(wi?)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-333(ju)1(\\273)-334(\\233yd)-333(si\\246)-334(z)-334(n)1(ic)27(h)-333(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a\\252)-334(i)-333(n)1(a)-334(b)-27(\\363rg)-333(da)28(w)28(a\\242)-334(nie)-333(c)27(hcia\\252.)]TJ 0 -13.549 Td[(A)-490(ni)1(e)-491(pr)1(z)-1(es)-1(ze)-1(d)1(\\252)-490(i)-490(t)27(y)1(dzie)-1(\\253)1(,)-490(do\\261\\242)-491(j)1(u\\273)-491(wsz)-1(y)1(s)-1(tki)1(e)-491(mia\\252y)-490(te)-1(j)-489(s)-1(p)1(ra)28(wy)-490(i)-490(t)27(y)1(c)27(h)]TJ -27.879 -13.55 Td[(jazgot\\363)28(w)-334(l)1(a)-1(men)28(tliwyc)28(h,)-333(\\273e)-334(ju)1(\\273)-334(s\\252)-1(u)1(c)27(h)1(a\\242)-334(pr)1(z)-1(es)-1(tal)1(i.)]TJ 27.879 -13.549 Td[(A\\273)-334(tu)-333(n)1(o)28(w)27(a)-333(p)-27(om)-1(o)-28(c)-333(im)-334(p)1(rz)-1(y)1(s)-1(z\\252a)-334(i)-333(w)28(e)-334(ws)-1(i)-333(zno)28(wu)-333(s)-1(i)1(\\246)-334(z)-1(ak)28(ot\\252o)28(w)28(a\\252o.)]TJ 0 -13.549 Td[(Oto)-343(P)1(\\252os)-1(zk)56(a)-343(z)-1(m\\363)28(w)-1(i)1(\\252)-344(si\\246)-343(z)-344(m\\252yn)1(arz)-1(em)-343(i)-343(wraz)-343(ot)28(w)27(arcie)-343(a)-343(g\\252o\\261)-1(n)1(o)-343(s)-1(tan)1(\\246)-1(l)1(i)-343(p)-28(o)]TJ -27.879 -13.549 Td[(stroni)1(e)-334(Koz\\252)-1(\\363)28(w...)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-336(sz)-1(\\252o)-336(i)1(m)-337(ak)1(uratn)1(ie)-336(o)-336(ni)1(c)27(h)-335(c)-1(o)-336(o)-336(ten)-335(\\261)-1(n)1(ie)-1(g)-336(\\252o\\253)1(s)-1(k)1(i)-336({)-336(sw)27(o)-55(je)-336(w)-336(t)28(ym)-336(m)-1(ieli)]TJ -27.879 -13.55 Td[(zam)27(ys\\252y)-333(i)-334(l)1(a)-334(siebie)-334(j)1(akie\\261)-334(wygo)-28(d)1(y)-333(ryc)28(h)28(to)28(w)27(ali)1(.)]TJ 27.879 -13.549 Td[(P\\252osz)-1(k)56(a)-422(b)28(y\\252)-423(c)28(h\\252op)-422(s)-1(ieln)1(ie)-423(am)27(b)1(itn)28(y)84(,)-423(skry)1(t)28(y)83(,)-422(a)-423(w)28(e)-423(s)-1(w)28(\\363)-56(j)-422(rozum)-423(i)-422(b)-28(ogact)28(w)27(a)]TJ -27.879 -13.549 Td[(du)1(fa)-55(j\\241cy)83(,)-307(z)-1(a\\261)-308(m\\252ynar)1(z)-1(,)-307(w)-1(i)1(adomo,)-308(co)-308(la)-308(gr)1(os)-1(za)-308(da\\252b)28(y)-307(s)-1(i)1(\\246)-309(p)-27(o)28(wie)-1(si\\242,)-308(ku)1(t)28(w)27(a)-308(i)-307(z)-1(d)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ru)1(s)-1(.)]TJ 27.879 -13.549 Td[(W)84(o)-56(jn)1(a)-307(si\\246)-307(te)-1(\\273)-307(wnet)-307(za)28(w)-1(i)1(\\241z)-1(a\\252a)-307(mi\\246dzy)-307(stron)1(am)-1(i)-306(c)-1(i)1(c)27(ha)-306(i)-307(za)27(wzi\\246ta,)-307(b)-27(o)-28(\\242)-307(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(lu)1(dziac)27(h)-424(w)-425(o)-28(c)-1(zy)-425(\\261wiarcz)-1(yl)1(i)-425(s)-1(ob)1(ie)-425(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lst)28(w)27(o,)-424(w)-1(i)1(tali)-425(j)1(ak)-425(i)-425(p)1(rz\\363)-28(dzi,)-425(a)-425(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(ni)1(e)-1(r)1(az)-334(i)-333(do)-333(k)55(ar)1(c)-1(zm)27(y)-333(p)-27(o)-28(d)-333(r)1(\\246)-1(ce)-334(s)-1(i)1(\\246)-334(wie)-1(d)1(li.)]TJ 27.879 -13.549 Td[(Co)-327(m)-1(\\241d)1(rze)-1(j)1(s)-1(i)-327(wnet)-327(si\\246)-328(p)-27(omiark)28(o)28(w)27(al)1(i,)-327(jak)28(o)-327(tej)-327(sp)-28(\\363\\252ce)-328(n)1(ie)-328(o)-327(spr)1(a)27(wiedl)1(iw)27(o\\261\\242)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi,)-333(n)1(ie)-334(o)-333(krzywdy)-333(Koz\\252\\363)27(w,)-333(a)-333(o)-334(co\\261)-334(in)1(s)-1(ze)-1(go,)-333(mo\\273e)-334(i)-333(o)-334(w)28(\\363)-56(j)1(tos)-1(t)28(w)28(o.)]TJ 27.879 -13.549 Td[({)-381(P)28(o\\273)-1(y)1(w)-1(i)1(\\252)-382(si\\246)-382(jeden,)-381(n)1(ie)-1(c)28(h)-381(s)-1(i)1(\\246)-382(ta)-382(p)-27(o\\273ywi\\241)-382(i)-381(d)1(rugi)1(e)-1(!{)-381(p)-27(o)27(wiad)1(ali)-381(starz)-1(y)-381(k)1(i-)]TJ -27.879 -13.549 Td[(w)28(a)-56(j\\241c)-333(g\\252o)27(w)28(am)-1(i)1(.)]TJ 27.879 -13.55 Td[(I)-333(tak)-333(c)-1(zas)-334(s)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(,)-333(\\273e)-334(m\\246)-1(t)-333(w)28(e)-334(ws)-1(i)-333(b)28(y)1(\\252)-334(coraz)-334(wi\\246ks)-1(zy)84(.)]TJ 0 -13.549 Td[(A\\273)-334(tu)-333(k)1(t\\363rego\\261)-334(dn)1(ia)-333(gruc)28(hn)1(\\246)-1(\\252o)-333(p)-28(o)-333(c)27(h)1(a\\252up)1(ac)27(h:)]TJ 0 -13.549 Td[({)-333(Nie)-1(mcy)-333(w)-334(k)56(arcz)-1(mie)-334(p)-27(opasa)-56(j)1(\\241!)]TJ 0 -13.549 Td[({)-333(Na)-334(P)29(o)-28(dlesie)-334(p)-27(e)-1(wni)1(kiem)-334(c)-1(i)1(\\241)-28(gn\\241)-333({)-333(rze)-1(k\\252)-333(kto\\261)-334(d)1(om)27(y\\261ln)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(jad)1(\\241)-334(z)-333(B)-1(ogiem!...)-333(co)-334(w)28(ama)-334(d)1(o)-334(n)1(ic)27(h)1(?)-334({)-333(pr)1(z)-1(ek\\252ada\\252)-333(dr)1(ugi.)]TJ 0 -13.55 Td[(Ale)-380(jak)56(a\\261)-381(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(na,)-380(tr)1(w)27(o\\273na)-380(cie)-1(k)56(a)28(w)28(o\\261)-1(\\242)-380(o)27(w\\252adn)1(\\246)-1(\\252a)-380(lu)1(d\\271mi.)-380(Pr)1(z)-1(ez)-381(sady)]TJ -27.879 -13.549 Td[(kr)1(z)-1(yk)56(ali)-486(se)-487(t\\246)-487(no)28(win)1(\\246)-1(,)-486(w)-487(op)1(\\252otk)55(ac)28(h)-486(s)-1(ta)28(w)28(ali)-486(gada\\242)-487(o)-486(ni)1(e)-1(j)1(,)-487(a)-486(in)1(s)-1(ze)-487(z)-1(a\\261)-487(j)1(u\\273)-487(d)1(o)]TJ\nET\nendstream\nendobj\n1654 0 obj <<\n/Type /Page\n/Contents 1655 0 R\n/Resources 1653 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1653 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1659 0 obj <<\n/Length 9189      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(518)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(k)56(arcz)-1(m)28(y)-333(s)-1(i\\246)-333(prze)-1(b)1(iera\\252y)-333(na)-333(pr)1(z)-1(ew)-1(i)1(ady)84(.)]TJ 27.879 -13.549 Td[(Jak)28(o\\273)-295(p)1(ra)28(w)-1(d)1(\\246)-295(rze)-1(kl)1(i,)-295(p)1(i\\246\\242)-295(bry)1(k)-295(sto)-56(j)1(a\\252o)-295(na)-294(p)-27(o)-28(dj)1(e)-1(\\271dzie)-1(,)-294(a)-294(w)-1(sz)-1(y)1(s)-1(tki)1(e)-295(na)-295(\\273ela-)]TJ -27.879 -13.549 Td[(zn)28(yc)27(h)-267(osiac)27(h)1(,)-267(na)-267(\\273)-1(\\363\\252to)-267(i)-267(niebi)1(e)-1(sk)28(o)-268(malo)28(w)27(an)1(e)-1(,)-267(b)1(ud)1(am)-1(i)-267(p)1(\\252)-1(\\363)-27(c)-1(ienn)29(ym)-1(i)-267(n)1(akryt)1(e)-1(,)-267(sp)-28(o)-28(d)]TJ 0 -13.549 Td[(kt\\363r)1(yc)27(h)-470(w)-1(y)1(z)-1(iera\\252y)-471(k)28(ob)1(iet)27(y)-470(i)-471(r\\363\\273n)28(y)-471(sprz\\246t)-471(gos)-1(p)-27(o)-28(d)1(ars)-1(k)1(i,)-471(za\\261)-472(w)-471(k)56(arcz)-1(mie)-471(prze)-1(d)]TJ 0 -13.549 Td[(sz)-1(yn)1(kw)28(as)-1(em)-334(z)-334(d)1(z)-1(iesi\\246)-1(ciu)-333(Niemc)-1(\\363)28(w)-334(p)-27(opi)1(ja\\252o.)]TJ 27.879 -13.55 Td[(A)-362(t\\246gie)-362(b)28(y\\252y)-362(j)1(uc)28(h)28(y)83(,)-361(rozros\\252)-1(e)-362(i)-361(bro)-27(date,)-362(w)-362(gran)1(ato)28(w)27(e)-362(k)56(ap)-28(ot)28(y)-361(przy)28(o)-28(dzian)1(e)-1(,)]TJ -27.879 -13.549 Td[(ze)-296(sre)-1(b)1(rn)28(y)1(m)-1(i)-294(\\252)-1(a\\253)1(c)-1(u)1(c)27(h)1(am)-1(i)-295(n)1(a)-295(s)-1(p)1(a\\261)-1(n)29(yc)27(h)-295(b)1(rzuc)28(hac)27(h)1(,)-295(a)-295(p)28(yski)-295(to)-295(j)1(a\\273)-1(e)-295(s)-1(i)1(\\246)-296(im)-295(\\261)-1(wieci\\252y)]TJ 0 -13.549 Td[(o)-28(d)-333(d)1(obr)1(e)-1(go)-333(jad)1(\\252a.)-334(S)1(z)-1(w)28(argotal)1(i)-334(cosik)-333(z)-1(e)-334(\\233y)1(dem)-1(.)]TJ 27.879 -13.549 Td[(Ch\\252op)28(y)-243(ca\\252\\241)-243(kup)1(\\241)-243(s)-1(ta)28(w)28(ali)-243(p)-27(ob)-28(ok)-242(o)-244(w)28(\\363)-28(d)1(k)28(\\246)-244(kr)1(z)-1(ycz\\241c)-1(,)-243(a)-243(p)1(atrz\\241c)-244(i)-243(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)]TJ -27.879 -13.549 Td[(u)28(w)28(a\\273)-1(n)1(ie,)-302(ale)-303(tr)1(ud)1(no)-302(b)28(y\\252o)-302(wymiark)28(o)28(w)28(a\\242)-303(c)27(h)1(o)-28(\\242b)28(y)-302(i)-302(jedn)1(o)-302(s)-1(\\252o)28(w)28(o.)-302(Dopiero)-302(Mat)1(e)-1(u)1(s)-1(z,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-466(z)-467(\\233yd)1(am)-1(i)-466(p)-27(ore)-1(d)1(z)-1(i)1(\\252)-467(sz)-1(w)28(argota\\242,)-467(tak)-466(cos)-1(ik)-466(do)-466(ni)1(c)27(h)-466(z)-1(asz)-1(p)1(rec)27(ho)28(w)28(a\\252,)-467(j)1(a\\273)-1(e)]TJ 0 -13.55 Td[(k)56(arcz)-1(marz)-343(o)-28(dwr\\363)-27(c)-1(i\\252)-343(si\\246)-344(zdziwion)28(y)84(.)-343(Niemc)-1(y)-343(\\252ysn\\246li)-343(j)1(e)-1(n)1(o)-343(p)-28(o)-343(sobie)-343(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)-343(a)-343(nie)]TJ 0 -13.549 Td[(o)-28(d)1(rze)-1(kl)1(i,)-229(z)-1(a\\261)-230(p)-27(otem)-230(i)-229(Gr)1(z)-1(ela,)-229(w)27(\\363)-55(jt\\363)28(w)-229(brat,)-229(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252)-229(im)-229(jakie\\261)-230(n)1(ie)-1(miec)27(ki)1(e)-230(s)-1(\\252o)28(w)28(o.)]TJ 0 -13.549 Td[(Zadami)-371(s)-1(i\\246)-372(wykr)1(\\246)-1(ci\\252y)-371(do)-372(c)28(h\\252op)-27(\\363)28(w)-1(,)-371(rec)27(h)1(o)-28(c)-1(\\241c)-372(mi\\246dzy)-372(sob\\241)-371(jak)28(ob)28(y)-371(te)-372(\\261)-1(win)1(ie)-372(nad)]TJ 0 -13.549 Td[(k)28(ory)1(te)-1(m.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(i)1(no)-333(pr)1(a\\242)-334(p)-28(o)-333(t)28(yc)28(h)-333(\\261)-1(wi\\253)1(s)-1(ki)1(c)27(h)-333(p)28(ysk)56(ac)27(h)1(!)-334({)-333(rzek\\252)-334(r)1(oz)-1(gn)1(ie)-1(w)28(an)28(y)-333(Mateusz.)]TJ 0 -13.55 Td[({)-333(Kij)1(e)-1(m)-334(b)29(y)-333(p)-28(otr)1(z)-1(a)-333(z)-1(maca\\242)-334(b)-28(ok)1(i,)-333(a)-334(wn)1(e)-1(t)-333(b)28(y)-333(p)1(rz)-1(em\\363)27(wi\\252y)84(.)]TJ 0 -13.549 Td[(A)-333(Adam)-334(K)1(\\252\\246)-1(b)1(iak)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-334(z)-1(ap)1(alcz)-1(yw)28(o\\261c)-1(i\\241:)]TJ 0 -13.549 Td[({)-333(Pc)27(h)1(n\\246)-333(w)-334(k)56(a\\252du)1(n)-333(te)-1(go)-333(j)-333(z)-334(b)1(rze)-1(ga,)-333(zw)27(ali)-333(me)-1(,)-333(to)-333(p)1(ie)-1(r)1(z)-1(ta)-333(na)-333(o)-28(d)1(le)-1(w.)]TJ 0 -13.549 Td[(P)28(o)28(ws)-1(tr)1(z)-1(y)1(m)-1(ali)-455(go,)-455(b)-27(o)-456(i)-455(Niem)-1(cy)83(,)-455(j)1(akb)28(y)-455(p)-28(o)-27(c)-1(zu)28(ws)-1(zy)-455(gro\\271b)28(y)83(,)-455(wz)-1(i)1(\\246)-1(li)-455(an)28(ta\\252)-455(z)]TJ -27.879 -13.549 Td[(pi)1(w)27(em)-334(i)-333(pr)1(\\246)-1(d)1(k)28(o)-334(si\\246)-334(wyn)1(ie\\261)-1(li)-333(z)-334(k)56(ar)1(c)-1(zm)27(y)84(.)]TJ 27.879 -13.55 Td[({)-333(T)83(e)-1(,)-333(p)1(lud)1(ry)84(,)-333(nie)-334(t)1(ak)-334(\\261pi)1(e)-1(sz)-1(n)1(o,)-333(p)-28(or)1(tki)-333(p)-28(ogu)1(bi)1(ta!)]TJ 0 -13.549 Td[({)-333(\\221wi\\253)1(s)-1(ki)1(e)-334(p)-28(o)-27(c)-1(iot)1(ki!)-333({)-334(k)1(rzyc)-1(ze)-1(l)1(i)-333(z)-1(a)-333(nimi)-333(c)27(h)1(\\252opaki)1(.)]TJ 0 -13.549 Td[(Ale)-282(z)-1(araz)-282(p)-28(o)-282(ic)28(h)-282(wyje\\271)-1(d)1(z)-1(i)1(e)-283(\\233yd)-282(wyzna\\252)-282(pr)1(z)-1(ed)-282(par)1(obk)56(ami,)-282(jak)28(o)-282(Niem)-1(cy)-282(ju)1(\\273)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-384(k)1(up)1(i\\252y)-383(P)28(o)-27(dles)-1(i)1(e)-1(,)-382(\\273)-1(e)-383(j)1(u\\273)-383(p)-27(o)-56(jec)27(h)1(ali)-383(r)1(oz)-1(mierza\\242)-383(k)28(oloni\\246,)-383(\\273e)-383(c)-1(a\\252e)-383(p)1(i\\246)-1(t)1(na\\261c)-1(ie)]TJ 0 -13.549 Td[(famil)1(ii)-333(os)-1(i\\241d)1(z)-1(i)1(e)-334(na)-333(fol)1(w)27(ark)1(u.)]TJ 27.879 -13.55 Td[({)-333(My)-333(s)-1(i)1(\\246)-334(du)1(s)-1(i)1(m)-334(na)-333(zago)-1(n)1(ac)27(h)1(,)-333(a)-334(Niemc)-1(y)-333(b)-27(\\246)-1(d)1(\\241)-334(n)1(a)-333(w)-1(\\252\\363k)56(ac)27(h)-333(r)1(oz)-1(w)28(alali.)]TJ 0 -13.549 Td[({)-323(T)83(o)-323(p)-27(o)-28(dku)1(p)-323(ic)28(h,)-323(a)-323(ni)1(e)-324(d)1(a)-56(j!)-323(Ru)1(s)-1(z)-323(rozume)-1(m,)-323(kiej)-323(si\\246)-323(m)-1(asz)-324(za)-323(m)-1(\\241d)1(ral\\246!...)-323({)]TJ -27.879 -13.549 Td[(wykr)1(z)-1(yk)1(iw)27(a\\252)-333(na)-333(Gr)1(z)-1(el\\246)-334(S)1(tac)27(ho)-333(P\\252osz)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-375(Psiakrew)-376(z)-375(tak)55(\\241)-375(spra)28(w)28(\\241!)-376({)-375(zakl\\241\\252)-375(Mateusz)-376(bij)1(\\241c)-376(pi)1(\\246)-1(\\261c)-1(i)1(\\241)-376(w)-375(s)-1(zynk)1(w)27(as.)-376({)]TJ -27.879 -13.549 Td[(Jak)-241(si\\246)-242(u)1(s)-1(ad)1(z)-1(\\241)-241(n)1(a)-242(P)29(o)-28(dl)1(e)-1(siu,)-241(to)-241(i)-241(ci\\246\\273)-1(k)28(o)-241(b)-27(\\246)-1(d)1(z)-1(ie)-241(w)-242(Li)1(p)-28(cac)27(h)-241(wyt)1(rz)-1(y)1(m)-1(a\\242)-241({)-241(z)-1(ap)-27(e)-1(wn)1(ia\\252,)]TJ 0 -13.55 Td[(\\273e)-334(to)-333(b)28(yw)28(a\\252)-1(y)-333(b)29(y\\252)-334(w)28(e)-334(\\261w)-1(i)1(e)-1(cie)-1(,)-333(a)-333(Niem)-1(c\\363)28(w)-334(zna\\252)-333(dob)1(rz)-1(e.)]TJ 27.879 -13.549 Td[(Nie)-357(w)-1(i)1(e)-1(r)1(z)-1(yl)1(i)-357(m)27(u)-357(zrazu,)-357(al)1(e)-358(mimo)-357(to)-357(c)-1(a\\252a)-357(wie)-1(\\261)-357(s)-1(i)1(\\246)-358(zak\\252op)-28(ot)1(a\\252)-1(a;)-356(j\\246li)-357(me)-1(d)1(y-)]TJ -27.879 -13.549 Td[(to)28(w)27(a\\242)-333(i)-333(roz)-1(w)28(a\\273a\\242)-1(,)-333(c)-1(o)-333(b)28(y)-333(z)-334(t)1(akiego)-334(som)-1(siedzt)28(w)27(a)-333(mo)-1(g\\252o)-333(wypa\\261\\242)-334(z\\252e)-1(go)-333(la)-333(Lipi)1(e)-1(c?)]TJ 27.879 -13.549 Td[(A)-388(tu)-388(c)-1(o)-388(dni)1(a)-389(pastu)1(c)27(h)28(y)-388(i)-389(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(\\241cy)-388(donosili)1(,)-389(j)1(ak)28(o)-389(n)1(a)-389(P)28(o)-28(d)1(les)-1(iu)-388(gr)1(un)28(ta)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(rozmie)-1(r)1(z)-1(a)-55(j\\241,)-333(k)56(am)-1(i)1(e)-1(n)1(ie)-334(zw)27(o\\273\\241)-334(i)-333(stud)1(ni)1(\\246)-334(k)28(opi\\241.)]TJ 27.879 -13.549 Td[(\\233e)-234(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-232(prze)-1(z)-233(c)-1(i)1(e)-1(k)56(a)28(w)27(o\\261\\242)-234(p)-27(o)-28(ci\\241)-28(ga\\252)-233(z)-1(a)-233(m\\252)-1(y)1(n)-233(ku)-233(W)84(oli,)-233(a)-233(w\\252as)-1(n)28(y)1(m)-1(i)-233(o)-28(czym)-1(a)]TJ -27.879 -13.55 Td[(spra)28(wdza\\252,)-333(\\273)-1(e)-334(p)1(ra)28(wd\\246)-334(p)-27(o)28(wiadali)1(.)]TJ 27.879 -13.549 Td[(Ale)-334(j)1(ak)-333(s)-1(to)-55(j\\241)-333(rze)-1(czy)83(,)-333(ni)1(e)-334(s)-1(p)-27(os\\363b)-333(s)-1(i\\246)-333(b)28(y\\252o)-333(do)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(pierali)-348(k)28(o)28(w)27(ala,)-348(b)-27(o)-349(z)-349(Niem)-1(cami)-349(si\\246)-349(ju)1(\\273)-349(z)-1(w)28(\\241c)27(ha\\252)-348(i)-349(k)28(on)1(ie)-349(im)-349(p)-27(o)-28(dk)1(u)28(w)27(a\\252,)]TJ -27.879 -13.549 Td[(ale)-334(wyk)1(r\\246c)-1(a\\252)-333(s)-1(i\\246)-333(i)-334(n)1(i)-333(to,)-333(ni)-333(o)28(w)27(o)-333(o)-28(d)1(p)-28(o)28(wiad)1(a\\252.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(G)1(rz)-1(ela,)-333(w)28(\\363)-56(j)1(t\\363)27(w)-333(br)1(at,)-333(p)-28(osz)-1(ed\\252)-333(na)-333(pr)1(z)-1(ewiady)-333(i)-333(p)1(ra)28(w)-1(d)1(\\246)-334(wy\\252o\\273)-1(y)1(\\252.)]TJ 0 -13.55 Td[(By\\252o)-429(za\\261)-429(tak:)-428(dzie)-1(d)1(z)-1(i)1(c)-429(b)28(y\\252)-429(win)1(ie)-1(n)-428(j)1(e)-1(d)1(nem)27(u)-428(Niem)-1(co)28(wi)-429(p)1(i\\246)-1(t)1(na\\261c)-1(ie)-429(t)28(ysi\\246c)-1(y)]TJ -27.879 -13.549 Td[(ru)1(bli)1(.)-283(Odd)1(a\\242)-284(ni)1(e)-284(mia\\252,)-283(a)-284(ten)-283(m)28(u)-283(w)-284(d)1(\\252ugu)-283(c)28(hcia\\252)-284(wzi\\241\\242)-284(P)29(o)-28(dles)-1(i)1(e)-284(i)-283(res)-1(zt\\246)-284(goto)28(wym)]TJ\nET\nendstream\nendobj\n1658 0 obj <<\n/Type /Page\n/Contents 1659 0 R\n/Resources 1657 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1657 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1662 0 obj <<\n/Length 9714      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(519)]TJ -358.232 -35.866 Td[(grosz)-1(em)-381(d)1(op\\252aci\\242)-1(.)-380(D)1(z)-1(iedzic)-381(si\\246)-380(nib)28(y)-380(go)-27(dzi\\252,)-380(a)-380(z)-1(a)-380(ku)1(p)-28(cam)-1(i)-380(p)-27(osy\\252a\\252,)-380(b)-28(o)-380(Niemie)-1(c)]TJ 0 -13.549 Td[(da)28(w)28(a\\252)-334(j)1(e)-1(n)1(o)-334(p)-27(o)-333(s)-1(ze)-1(\\261\\242)-1(d)1(z)-1(i)1(e)-1(si\\241t)-333(ru)1(bli)-333(za)-334(morg\\246.)-333(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-333(z)-1(w\\252\\363)-28(cz)-1(y)84(,)-333(jak)-333(mo\\273)-1(e.)]TJ 27.879 -13.549 Td[({)-311(Ale)-311(zgo)-28(dzi\\242)-311(s)-1(i)1(\\246)-312(m)28(usi!)-311(W)84(e)-311(dw)28(orze)-312(p)-27(e\\252no)-311(\\233yd)1(\\363)27(w,)-310(k)55(a\\273den)-310(o)-311(s)-1(w)28(o)-56(j)1(e)-311(krzyc)-1(zy!)]TJ -27.879 -13.549 Td[(P)28(o)28(wiada\\252)-327(mi)-327(b)-27(oro)28(wy)83(,)-327(co)-327(ju)1(\\273)-328(k)1(ro)28(wy)-327(z)-1(a)-55(j\\246te)-328(za)-327(p)-27(o)-28(datek.)-327(S)1(k)56(\\241d\\273e)-328(to)-327(w)28(e)-1(\\271mie)-328(zap\\252a-)]TJ 0 -13.549 Td[(ci\\242)-1(?)-272(Wsz)-1(y)1(s)-1(tk)28(o)-272(n)1(a)-272(pn)1(iu)-271(prze)-1(d)1(ane!)-272(Lasu)-272(p)1(rze)-1(cie)-1(k)-271(te)-1(r)1(az)-1(,)-271(dop)-27(\\363ki)-272(z)-272(nami)-272(w)-272(p)1(ro)-28(ce)-1(sie,)]TJ 0 -13.55 Td[(ci\\241\\242)-297(m)27(u)-296(nie)-297(p)-27(oz)-1(w)28(ol\\241.)-296(Nie)-297(p)-28(or)1(e)-1(d)1(z)-1(i)-296(s)-1(ob)1(ie)-297(inacz)-1(ej)-296(i)-297(pr)1(z)-1(eda\\242)-297(m)28(usi)-297(c)27(h)1(o)-28(\\242b)28(y)-297(za)-297(b)-27(e)-1(le)-297(co)]TJ 0 -13.549 Td[({)-333(t)28(w)-1(i)1(e)-1(rd)1(z)-1(i)1(\\252)-334(Gr)1(z)-1(ela.)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)56(a)-334(ziem)-1(ia,)-333(p)-27(o)-333(s)-1(to)-333(ru)1(bli)-333(za)-334(morg\\246)-333(nie)-333(z)-1(a)-333(du)1(\\273)-1(o.)]TJ 0 -13.549 Td[({)-333(Kup)1(uj)1(c)-1(ie,)-333(pr)1(z)-1(eda)-333(i)-333(jes)-1(zc)-1(ze)-334(w)28(a)-56(j)1(u)-333(w)-334(r\\246k)28(\\246)-334(p)-27(o)-28(ca\\252)-1(u)1(je.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(d)1(rogi)-333(grosz)-1(,)-333(j)1(ak)-333(go)-334(b)1(rakn)1(ie)-1(!)]TJ 0 -13.549 Td[({)-333(Miem)-1(cy)-333(s)-1(e)-333(u\\273yj\\241,)-333(a)-333(t)28(y)83(,)-333(c)27(h)1(\\252opie,)-333(\\261)-1(l)1(in\\246)-333(\\252)-1(y)1(k)55(a)-55(j!)]TJ 0 -13.55 Td[(P)28(ogad)1(yw)27(al)1(i)-250(w)-1(zdy)1(c)27(ha)-55(j\\241c)-250(\\273)-1(a\\252o\\261nie.)-250(Mark)28(ot)1(no\\261\\242)-251(ic)27(h)-249(roz)-1(b)1(iera\\252a.)-250(Ju\\261ci,)-250(\\273)-1(al)-250(b)29(y-)]TJ -27.879 -13.549 Td[(\\252o)-281(tak)1(ie)-1(j)-280(ziem)-1(i)1(,)-281(b)-27(o)-280(to)-281(p)1(rzyle)-1(g\\252a)-280(i)-280(ro)-28(d)1(na.)-280(Ka\\273dem)27(u)-280(b)28(y)-280(s)-1(i)1(\\246)-281(pr)1(z)-1(yd)1(a\\252o)-281(ki)1(lk)56(a)-281(morg\\363)28(w,)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u.)-296(Dy\\242)-297(si\\246)-297(j)1(u\\273)-297(cis)-1(n)1(\\246)-1(l)1(i)-297(n)1(a)-297(sw)27(oi)1(c)27(h)-296(z)-1(agon)1(ac)27(h)-296(kiej)-296(mr\\363)28(w)-1(k)1(i,)-296(dy\\242)-297(l)1(e)-1(d)1(w)-1(i)1(e)-297(s)-1(i\\246)-297(j)1(u\\273)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\273)-1(y)1(w)-1(i)1(ali)-338(o)-28(de)-339(\\273ni)1(w)-339(d)1(o)-339(\\273niw.)-338(T)83(aki)-338(k)56(a)28(w)27(a\\252)-338(w)-1(y)1(bran)1(e)-1(j)-337(z)-1(iem)-1(i)1(,)-338(w)-339(s)-1(am)-338(raz)-339(la)-338(syn\\363)28(w)]TJ 0 -13.549 Td[(i)-308(z)-1(i)1(\\246)-1(ci\\363)28(w)-1(.)-308(No)28(w)27(\\241)-308(wie\\261)-309(b)28(y)-308(w)-1(y)1(s)-1(ta)28(wili)-308(i)-308(\\252\\241ki)-308(m)-1(ielib)29(y)-309(n)1(iez)-1(gorsze)-1(,)-308(i)-308(w)27(o)-28(d)1(a)-309(p)-27(ob)-27(ok...)-308(Ale)]TJ 0 -13.55 Td[(c\\363\\273)-1(,)-333(ni)1(e)-334(p)-27(ore)-1(d)1(z)-1(i)1(!)-334(M)1(iem)-1(cy)-333(s)-1(i\\246d\\241,)-333(b)-27(\\246d\\241)-333(s)-1(i\\246)-333(panoszy\\242)-1(,)-333(a)-333(t)28(y)83(,)-333(cz)-1(\\252o)28(wieku,)-333(zdyc)28(ha)-56(j)1(.)]TJ 27.879 -13.549 Td[({)-457(Ka)-56(j)-456(s)-1(i\\246)-457(to)-457(w)-1(sz)-1(y)1(s)-1(tk)28(o)-457(p)-27(o)-28(dzieje?)-458({)-457(wz)-1(d)1(yc)27(h)1(ali)-457(starzy)-458(p)1(atrz\\241c)-458(n)1(a)-458(m\\252\\363)-28(d)1(\\271)-1(,)]TJ -27.879 -13.549 Td[(g\\273\\241c)-1(\\241)-368(si\\246)-368(wie)-1(czorami)-368(p)-27(o)-368(dr)1(ogac)27(h,)-367(a)-368(b)28(y)1(\\252o)-368(te)-1(go,)-367(b)28(y\\252o,)-367(ja\\273e)-369(si\\246)-368(\\261c)-1(ian)29(y)-368(rozpi)1(e)-1(r)1(a\\252)-1(y)1(!)]TJ 0 -13.549 Td[(A)-333(z)-1(a)-333(c)-1(\\363\\273)-333(to)-334(mia\\252)-333(kto)-333(gru)1(n)28(ta)-333(kup)-27(o)28(w)27(a\\242,)-333(kiej)-333(le)-1(d)1(wie)-334(n)1(a)-334(\\273ycie)-334(starcz)-1(y\\252o?)]TJ 27.879 -13.549 Td[(G\\252o)28(wili)-277(si\\246)-277(ni)1(e)-1(ma\\252o,)-277(na)28(w)28(e)-1(t)-276(do)-277(ksi\\246dza)-277(s)-1(zli)-277(p)-27(o)-277(r)1(a)-1(d)1(\\246)-1(.)-276(Nie)-277(p)-28(or)1(e)-1(d)1(z)-1(i\\252:)-276(z)-278(p)1(uste)-1(go)]TJ -27.879 -13.55 Td[(ni)1(e)-334(nal)1(e)-1(j)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-303(Kto)-303(nie)-304(ma)-303(gros)-1(za,)-303(ni)1(e)-304(umac)-1(za)-303(nos)-1(a.)-303(Biedn)1(e)-1(m)28(u)-303(z)-1(a)28(wdy)-303(wiater)-303(w)-304(o)-28(cz)-1(y)1(!...)]TJ 0 -13.549 Td[(Ale)-334(i)-333(wyr)1(z)-1(ek)56(ania)-333(a)-334(b)1(iad)1(ole)-1(n)1(ia)-333(te)-1(\\273)-333(nic)-334(n)1(ie)-334(p)-27(omog\\252)-1(y)84(.)]TJ 0 -13.549 Td[(A)-412(jak)1(b)28(y)-412(na)-412(dob)1(itk)28(\\246;)-412(up)1(a\\252y)-412(s)-1(z\\252y)-412(c)-1(oraz)-412(wi\\246)-1(k)1(s)-1(ze)-1(.)-412(M)1(a)-56(j)-412(d)1(opiero)-412(si\\246)-413(mia\\252)-412(ku)]TJ -27.879 -13.549 Td[(k)28(o\\253co)28(wi,)-346(a)-347(p)1(rz)-1(y)1(piek)56(a\\252)-1(o)-346(kieb)28(y)-346(w)-347(l)1(ip)-28(cu.)-346(Dn)1(ie)-347(ws)-1(ta)28(w)28(a\\252y)-347(cic)28(he)-347(i)-346(du)1(s)-1(zne,)-346(s)-1(\\252o\\253)1(c)-1(e)-347(o)-28(d)]TJ 0 -13.55 Td[(sam)-1(ego)-259(ws)-1(c)28(ho)-28(d)1(u)-258(w)-1(yn)1(os)-1(i)1(\\252o)-259(s)-1(i)1(\\246)-260(r)1(oz)-1(p)1(alone)-259(n)1(a)-259(cz)-1(yste)-259(nieb)-27(o)-259(i)-258(tak)-259(p)1(rz)-1(y)1(piek)56(a\\252o,)-259(\\273e)-260(j)1(u\\273)]TJ 0 -13.549 Td[(p)-27(o)-332(wy\\273)-1(n)1(iac)27(h)-331(i)-332(n)1(a)-332(piask)56(ac)27(h)-331(jarzyn)28(y)-331(m)-1(d)1(la\\252y)-332(p)-27(o\\273\\363\\252)-1(k)1(\\252e)-1(,)-332(t)1(ra)28(w)-1(y)-331(do)-332(cna)-331(w)-1(y)1(pala\\252o)-332(p)-27(o)]TJ 0 -13.549 Td[(ugor)1(ac)27(h)1(,)-333(stru)1(gi)-332(wys)-1(y)1(c)27(ha\\252y)84(,)-332(z)-1(iemniak)1(i)-333(za\\261,)-333(c)28(ho)-28(\\242)-332(z)-1(r)1(az)-1(u)-332(n)1(ie)-1(zgorze)-1(j)-331(rusz)-1(y)1(\\252y)83(,)-332(ledwie)]TJ 0 -13.549 Td[(okr)1(yw)27(a\\252y)-384(z)-1(i)1(e)-1(mi\\246)-385(c)28(h)28(ud)1(ymi)-385(\\252\\246c)-1(i)1(nami.)-384(Oz)-1(i)1(m)-1(in)29(y)-385(j)1(e)-1(n)1(o)-385(n)1(ie)-385(u)1(c)-1(ierp)1(ia\\252y)-384(w)-1(i)1(e)-1(la,)-384(wyk\\252o-)]TJ 0 -13.549 Td[(sz)-1(on)1(e)-1(,)-387(p)1(i\\246)-1(k)1(nie)-387(w)-1(y)1(ros)-1(\\252e,)-387(s)-1(z\\252y)-387(jes)-1(zcz)-1(ek)-387(galan)28(to)-387(w)-387(g\\363r\\246,)-387(ja\\273e)-388(c)27(h)1(a\\252up)28(y)-387(si\\246)-388(skry)1(\\252y)-387(i)]TJ 0 -13.55 Td[(jak)1(b)28(y)-333(do)-333(z)-1(i)1(e)-1(mi)-333(przycup)1(n\\246\\252y)83(,)-333(dac)28(hami)-333(jeno)-333(widn)1(e)-334(nad)-333(t)28(y)1(m)-334(b)-27(ore)-1(m)-333(k\\252os)-1(i)1(s)-1(t)28(ym.)]TJ 27.879 -13.549 Td[(No)-28(ce)-258(te\\273)-257(b)28(y\\252y)-257(d)1(usz)-1(n)1(e)-258(i)-257(tak)-256(nagrzane,)-257(\\273e)-258(j)1(u\\273)-257(p)-27(o)-257(s)-1(ad)1(ac)27(h)-257(syp)1(iali,)-257(gd)1(y\\273)-257(tru)1(dno)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-333(w)-334(c)28(ha\\252up)1(ac)27(h)-333(wytr)1(z)-1(y)1(m)-1(a\\242.)]TJ 27.879 -13.549 Td[(Za\\261)-421(pr)1(z)-1(ez)-421(te)-421(gor\\241ca,)-420(pr)1(z)-1(ez)-421(k\\252op)-27(ot)27(y)-420(i)-420(\\273)-1(a\\252o\\261c)-1(i)1(e)-1(,)-420(pr)1(z)-1(ez)-421(P\\252osz)-1(k)28(o)28(w)28(e)-421(ju)1(dze)-1(n)1(ie)]TJ -27.879 -13.549 Td[(na)-326(w)28(\\363)-56(jt)1(a,)-327(p)1(rze)-1(z)-327(p)1(rze)-1(d)1(n\\363)28(w)27(ek)-326(c)-1(i)1(\\246)-1(\\273s)-1(zy)-326(lato\\261)-327(ni)1(\\271)-1(li)-326(p)-27(o)-327(i)1(nn)1(e)-327(roki,)-326(d)1(o\\261)-1(\\242,)-326(\\273)-1(e)-327(w)-326(Lip)-27(c)-1(ac)27(h)]TJ 0 -13.549 Td[(nasta\\252)-333(c)-1(zas)-334(dziwni)1(e)-334(s)-1(w)28(arli)1(w)-1(y)-333(i)-333(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(n)28(y)83(.)]TJ 27.879 -13.55 Td[(Cho)-28(d)1(z)-1(i)1(li)-294(r)1(oz)-1(d)1(ygotani)-293(w)-294(s)-1(ob)1(ie)-294(up)1(atruj)1(\\241c)-294(jeno,)-293(k)28(ogo)-294(b)28(y)-294(\\273gn\\241\\242)-294(t)28(ym)-294(b)-27(ol\\241cym)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(e)-1(m)-299(alb)-27(o)-299(i)-299(za)-299(orzydle)-299(c)27(h)29(yc)-1(i\\242.)-299(Ka\\273den)-299(r)1(ad)-299(sta)28(w)27(a\\252)-299(p)1(rz)-1(eciw)-299(dru)1(giem)27(u,)-298(\\273)-1(e)-299(jakb)29(y)]TJ 0 -13.549 Td[(pi)1(e)-1(k\\252o)-330(z)-1(r)1(obi\\252o)-330(s)-1(i)1(\\246)-331(w)27(e)-331(wsi.)-331(Co)-330(dn)1(ia)-331(b)-27(o)28(wie)-1(m)-330(ju\\273)-331(o)-27(d)-330(\\261)-1(witan)1(ia)-331(t)1(rz)-1(\\246s\\252)-1(o)-330(si\\246)-331(o)-28(d)-330(k\\252\\363tn)1(i)]TJ 0 -13.549 Td[(a)-293(wyz)-1(wisk,)-293(b)-27(o)-293(c)-1(o)-293(d)1(nia)-293(p)1(rzyc)27(h)1(o)-28(dzi\\252o)-293(c)-1(o\\261)-293(no)28(w)28(e)-1(go.)-293(A)-293(to)-293(K)1(obuso)28(w)-1(i)1(e)-294(si\\246)-294(p)-27(obi)1(li,)-293(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(ksi\\241dz)-387(m)27(u)1(s)-1(ia\\252)-387(go)-28(d)1(z)-1(i)1(\\242)-388(i)-387(nap)-27(omina\\242,)-387(a)-387(to)-387(Balc)-1(erk)28(o)28(w)27(a)-387(z)-387(Gul)1(base)-1(m)-387(kud)1(\\252\\363)27(w)-387(sobie)]TJ 0 -13.55 Td[(nastrz\\246pili)-468(o)-468(prosiak)56(a,)-468(kt\\363ren)-468(m)-1(ar)1(c)27(hew)-469(sp)28(ysk)56(a\\252)-1(,)-468(to)-468(P\\252osz)-1(k)28(o)28(w)28(a)-469(p)-27(o\\273)-1(ar)1(\\252)-1(a)-468(s)-1(i)1(\\246)-469(z)-1(e)]TJ 0 -13.549 Td[(so\\252)-1(t)28(y)1(s)-1(em)-226(o)-225(prze)-1(mienieni)1(e)-226(g\\241s)-1(i)1(\\241t;)-225(to)-226(o)-225(dziec)-1(i)-225(sz)-1(\\252y)-225(k\\252\\363tn)1(ie)-1(,)-225(to)-225(o)-225(s)-1(zk)28(o)-28(dy)-225(som)-1(siedzkie,)]TJ\nET\nendstream\nendobj\n1661 0 obj <<\n/Type /Page\n/Contents 1662 0 R\n/Resources 1660 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1660 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1665 0 obj <<\n/Length 9187      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(520)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(to)-425(o)-426(b)-27(e)-1(le)-425(c)-1(o,)-425(b)28(yc)28(h)-426(si\\246)-426(j)1(e)-1(n)1(o)-426(p)1(rz)-1(y)1(c)-1(ze)-1(p)1(ia\\242)-426(a)-426(k)1(\\252y\\271)-1(n)1(i\\242,)-426(a)-425(wrz)-1(es)-1(zcz)-1(e\\242)-426(i)-426(wyzyw)28(a\\242)-426(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkiej)-479(mo)-28(c)-1(y)-479({)-479(\\273e)-480(j)1(akb)28(y)-479(zaraz)-1(a)-479(n)1(a)-480(wie\\261)-480(p)1(ad\\252a,)-479(t)28(yle)-479(p)-28(o)28(wsta)27(w)28(a\\252o)-479(s)-1(w)28(ar\\363)28(w,)]TJ 0 -13.549 Td[(bi)1(jat)28(yk)-333(i)-333(pr)1(o)-28(ce)-1(s\\363)27(w.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-333(Jam)27(b)1(ro\\273y)-334(p)1(rze)-1(\\261mie)-1(w)28(a\\252)-334(si\\246)-334(p)1(rze)-1(d)-333(ob)-27(cym)-1(i)1(:)]TJ 0 -13.549 Td[({)-478(Niez)-1(gorszy)-478(prze)-1(d)1(no)28(w)28(e)-1(k)-478(lato\\261)-478(da\\252)-478(mi)-479(P)29(an)-478(Jez)-1(u)1(s)-1(!)-478(Umarlak)28(\\363)28(w)-478(nie)-478(m)-1(a,)]TJ -27.879 -13.55 Td[(ni)1(kto)-302(s)-1(i\\246)-302(nie)-302(l\\246)-1(gn)1(ie,)-303(n)1(ikto)-302(n)1(ie)-303(\\273e)-1(n)1(i,)-302(a)-303(mn)1(ie)-303(dzie\\253)-302(w)-303(d)1(z)-1(i)1(e)-1(\\253)-302(kt)1(os)-1(ik)-302(gor)1(z)-1(a\\252k)28(\\246)-303(sta)28(w)-1(i)1(a,)]TJ 0 -13.549 Td[(hon)1(oru)1(je,)-373(a)-373(n)1(a)-373(\\261w)-1(i)1(adki)-372(prosi.)-372(\\233e)-1(b)28(y)-372(tak)-373(p)1(ar\\246)-373(rok)28(\\363)28(w)-373(j)1(e)-1(sz)-1(cz)-1(e)-373(si\\246)-373(k\\252\\363)-28(cili,)-372(a)-373(na)-372(nic)]TJ 0 -13.549 Td[(b)28(y)-333(si\\246)-334(cz)-1(\\252o)28(wie)-1(k)-333(r)1(oz)-1(p)1(i\\252...)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(c)-1(o)-333(si\\246)-334(\\271le)-334(dzia\\252o)-333(w)-334(Lip)-27(cac)27(h.)]TJ 0 -13.549 Td[(Ale)-334(c)28(heba)-333(c)-1(o)-333(w)-333(c)27(ha\\252u)1(pie)-333(Dom)-1(in)1(ik)28(o)28(w)27(ej)-333(d)1(z)-1(ia\\252o)-333(s)-1(i)1(\\246)-334(na)-55(jgor)1(z)-1(ej.)]TJ 0 -13.549 Td[(Szyme)-1(k)-335(p)-28(o)28(wr\\363)-28(ci\\252)-336(z)-336(dru)1(gimi,)-336(J\\246dr)1(z)-1(yc)28(h)-336(wyzdro)28(wia\\252,)-336(b)1(ieda)-336(im)-336(nie)-336(doskwie-)]TJ -27.879 -13.55 Td[(ra\\252a)-387(jak)-387(ind)1(z)-1(iej,)-387(to)-388(p)-27(o)28(winn)1(o)-388(b)28(y)1(\\252)-1(o)-387(i\\261\\242)-389(wsz)-1(y)1(s)-1(tk)28(o)-387(p)-28(o)-387(da)28(wnem)27(u.)-387(Boga\\242)-388(ta)-388(p)-27(os)-1(z\\252o,)]TJ 0 -13.549 Td[(kiej)-349(c)28(h\\252opak)1(i)-349(o)-28(dm\\363)28(wi\\252y)-349(m)-1(atce)-350(p)-27(os\\252uc)27(h)28(u)1(!)-349(St)1(a)27(wial)1(i)-349(s)-1(i\\246)-349(har)1(do,)-349(k\\252\\363)-28(cili)-349(z\\241b)-349(za)-349(z)-1(\\241b)1(,)]TJ 0 -13.549 Td[(bi)1(\\242)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(p)-28(ozw)28(olili,)-333(a)-333(\\273)-1(ad)1(n)28(yc)28(h)-333(rob)-27(\\363t)-333(k)28(obiec)-1(y)1(c)27(h,)-333(j)1(ak)-334(p)1(rz\\363)-28(dzi,)-333(an)1(i)-334(t)1(kn\\246li.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(wk)28(\\246)-334(se)-334(pr)1(z)-1(yj)1(mijcie)-334(alb)-27(o)-333(i)-333(s)-1(ami)-333(r\\363b)-27(c)-1(ie)-333({)-334(p)-27(o)28(wie)-1(d)1(ali)-333(t)28(w)27(ar)1(do.)]TJ 0 -13.549 Td[(P)28(acz)-1(es)-1(i)1(o)27(w)28(a)-241(mia\\252a)-241(\\273)-1(elaz)-1(n)1(e)-242(r)1(\\246)-1(ce)-242(i)-241(d)1(usz)-1(\\246)-241(ni)1(e)-1(u)1(s)-1(t\\246pli)1(w)27(\\241)-241({)-241(j)1(ak\\273)-1(e!)-241(t)28(yle)-241(lat)-241(ws)-1(zyst-)]TJ -27.879 -13.55 Td[(kim)-373(rz\\241dzi\\252a,)-373(t)28(yle)-373(lat)-373(ni)1(kto)-373(nie)-373(\\261)-1(mia\\252)-373(si\\246)-374(j)1(e)-1(j)-373(p)1(rze)-1(ciwi\\242)-373(ni)-373(w)-373(p)-28(op)1(rze)-1(k)-373(sta)28(w)27(a\\242.)-373(A)]TJ 0 -13.549 Td[(tu)-333(kt)1(o)-334(sta)28(w)27(a\\252?)-333(kto)-334(si\\246)-334(p)1(rze)-1(ciw)-333(niej)-333(w)27(a\\273y\\252?)-333({)-334(w\\252as)-1(n)1(e)-334(dziec)-1(i)1(!)]TJ 27.879 -13.549 Td[({)-486(Jez)-1(u)1(s)-487(mi\\252os)-1(i)1(e)-1(r)1(n)28(y)-486({)-486(w)28(o\\252)-1(a\\252a)-486(w)-486(zapami\\246)-1(t)1(aniu)-485(i)-486(z)-1(\\252o\\261c)-1(i)1(,)-486(pr)1(z)-1(y)-486(l)1(e)-1(da)-486(ok)56(azji)]TJ -27.879 -13.549 Td[(c)27(h)29(w)-1(y)1(ta)-56(j)1(\\241c)-345(z)-1(a)-345(k)1(ij)-344(na)-344(s)-1(yn)1(\\363)28(w)-1(,)-344(c)27(h)1(c)-1(i)1(a\\252)-1(a)-344(ic)27(h)-344(p)1(rze)-1(m\\363)-28(c)-345(i)-344(z)-1(m)28(usi\\242)-345(do)-344(p)-28(os\\252uc)28(h)28(u.)-344(Nie)-345(dal)1(i)]TJ 0 -13.549 Td[(si\\246)-1(,)-316(z)-1(aci\\246li)-317(si\\246)-317(jak)-316(i)-317(matk)56(a)-317(i)-317(p)-27(osz)-1(li)-316(na)-317(u)1(dr)1(y)83(.)-316(T)83(o)-317(p)-27(o)27(wsta)28(w)27(a\\252y)-317(p)1(ra)28(wie)-317(c)-1(o)-317(d)1(ni)1(a)-317(takie)]TJ 0 -13.55 Td[(wrzas)-1(ki)-333(a)-333(goni)1(t)28(w)-1(y)-333(k)28(ole)-333(c)27(ha\\252u)1(p)28(y)83(,)-333(j)1(a\\273)-1(e)-333(lud)1(z)-1(ie)-333(s)-1(i\\246)-333(z)-1(b)1(ie)-1(gal)1(i)-334(u)1(s)-1(p)-27(ok)56(a)-56(j)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-227(ksi\\241dz,)-227(s)-1(n)1(ad\\271)-228(p)1(rze)-1(z)-227(ni\\241)-227(p)-27(o)-28(dm\\363)28(w)-1(i)1(on)28(y)83(,)-227(wzyw)27(a\\252)-227(ic)28(h)-227(do)-227(s)-1(i)1(\\246)-1(,)-227(a)-227(do)-227(zgo)-28(dy)-227(i)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\252u)1(s)-1(ze)-1(\\253)1(s)-1(t)28(w)28(a)-266(nap)-27(om)-1(i)1(na\\252.)-266(Wy)1(s)-1(\\252uc)28(hali)-265(c)-1(ierp)1(liwie,)-266(w)-266(r\\246c)-1(e)-266(go)-266(uca\\252)-1(o)28(w)28(ali,)-266(a)-266(za)-266(nogi)1(,)]TJ 0 -13.549 Td[(jak)-333(p)1(rzys)-1(t)1(a\\252)-1(o,)-333(z)-334(p)-27(ok)28(or\\241)-333(p)-27(o)-28(dj)1(\\246)-1(l)1(i,)-333(ale)-334(si\\246)-334(n)1(ie)-334(p)1(rz)-1(emie)-1(n)1(ili.)]TJ 27.879 -13.549 Td[({)-469(Ni)1(e)-469(dzie)-1(cim,)-469(wiem)27(y)84(,)-468(c)-1(o)-468(nama)-469(rob)1(i\\242.)-469(Niec)27(h)-468(matk)56(a)-469(pi)1(e)-1(r)1(w)-1(sz)-1(a)-468(ust\\241)-28(p)1(i!)-469({)]TJ -27.879 -13.55 Td[(t\\252umacz)-1(yl)1(i)-333(s)-1(i\\246)-333(prze)-1(d)-333(l)1(ud)1(\\271)-1(mi.)-333({)-333(C)-1(a\\252a)-333(wie)-1(\\261)-333(s)-1(i\\246)-333(z)-334(nas)-334(p)1(rze)-1(\\261mie)-1(w)28(a\\252a...)]TJ 27.879 -13.549 Td[(A)-330(Domini)1(k)28(o)27(w)28(a)-330(ja\\273e)-330(p)-28(o\\273\\363\\252k\\252a)-330(z)-1(e)-330(z\\252)-1(o\\261ci)-330(a)-330(z)-1(mart)28(wienia,)-329(b)-28(o)-330(w)-330(\\273aden)-330(sp)-28(os\\363b)]TJ -27.879 -13.549 Td[(zm)-1(\\363)-28(c)-372(s)-1(i)1(\\246)-373(ni)1(e)-373(d)1(a)27(w)28(ali,)-372(a)-372(p)1(rzy)-372(t)27(y)1(m)-373(miasto)-372(w)-373(k)28(o\\261c)-1(i)1(e)-1(le)-372(przes)-1(iad)1(yw)28(a\\242)-373(i)-372(p)-27(o)-372(kumac)27(h)1(,)]TJ 0 -13.549 Td[(jak)-287(p)1(rz)-1(\\363)-27(dzi,)-287(m)27(usia\\252a)-287(te)-1(r)1(az)-288(robi)1(\\242)-288(k)28(ole)-288(gos)-1(p)-27(o)-28(d)1(ars)-1(t)28(w)28(a,)-287(Jagusi\\246)-288(c)-1(i)1(\\246)-1(giem)-288(p)1(rz)-1(y)1(z)-1(yw)28(a\\252a)]TJ 0 -13.549 Td[(do)-281(p)-27(om)-1(o)-27(c)-1(y)84(.)-281(A)-1(l)1(e)-282(i)-281(c)-1(\\363r)1(k)55(a)-281(ni)1(e)-282(s)-1(zc)-1(z\\246dzi\\252a)-282(j)1(e)-1(j)-281(zgryzot)-281(i)-282(wst)28(ydu)1(.)-281(P)28(ac)-1(ze)-1(sio)28(w)28(a)-282(tr)1(z)-1(yma\\252a)]TJ 0 -13.55 Td[(w)28(\\363)-56(jt)1(o)27(w)28(\\241)-450(s)-1(tr)1(on\\246,)-450(na)28(w)27(et)-450(\\261w)-1(i)1(a)-1(r)1(c)-1(zy\\252a)-450(pr)1(z)-1(ec)-1(iwk)28(o)-450(Koz\\252om)-1(,)-450(gd)1(y\\273)-451(b)29(y\\252a)-450(przy)-450(bi)1(tc)-1(e)-450(i)]TJ 0 -13.549 Td[(opat)1(ryw)28(a\\252a)-334(w)28(\\363)-56(j)1(t\\363)27(w.)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(tr)-268(te\\273)-269(cz)-1(\\246s)-1(to)-268(wie)-1(czorami)-269(zagl\\241da\\252)-268(do)-268(ni)1(e)-1(j)1(,)-269(n)1(ib)28(y)-268(to)-268(na)-268(p)-28(or)1(e)-1(d)1(y)83(,)-268(a)-268(g\\252)-1(\\363)28(wni)1(e)-1(,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-333(Jagusi\\246)-334(wyw)28(o\\252a\\242)-334(i)-333(pr)1(o)27(w)28(adzi\\242)-334(si\\246)-334(z)-333(ni\\241)-333(na)-333(ogro)-27(dy)84(.)]TJ 27.879 -13.549 Td[(Na)-462(wsi)-462(si\\246)-462(n)1(ic)-462(nie)-462(u)1(kryj)1(e)-1(,)-461(d)1(obrze)-462(wie)-1(d)1(z)-1(\\241,)-461(z)-462(c)-1(zego)-462(si\\246)-462(kur)1(z)-1(y)-461(i)-462(k)56(a)-55(j,)-461(to)-462(i)]TJ -27.879 -13.549 Td[(zgors)-1(zenie)-464(z)-465(t)28(yc)28(h)-464(grze)-1(szn)28(yc)27(h)-463(jamor\\363)28(w)-464(ros)-1(\\252o)-464(coraz)-464(barzej)-464(i)-464(d)1(obrzy)-464(lu)1(dzie)-465(j)1(u\\273)]TJ 0 -13.55 Td[(ni)1(e)-1(r)1(az)-334(os)-1(tr)1(z)-1(egali)-333(s)-1(t)1(ar\\241.)]TJ 27.879 -13.549 Td[(Mog\\252a)-293(to)-293(z)-1(ap)-27(ob)1(ie)-1(c,)-293(kiej)-293(Jagn)1(a)-294(mimo)-293(pr)1(\\363\\261)-1(b)-293(i)-293(b)1(\\252aga\\253)-293(rob)1(i\\252a)-293(jakb)28(y)-293(n)1(a)-293(z)-1(\\252o\\261\\242)-1(.)]TJ -27.879 -13.549 Td[(W)84(ola\\252a)-357(b)-28(o)28(wiem)-357(grz)-1(ec)27(h)-356(na)-55(jci\\246\\273)-1(sz)-1(y)-356(i)-357(obmo)28(wy)-357(lu)1(dzkie)-357(ni\\271li)-356(prze)-1(siad)1(yw)27(an)1(ie)-357(w)-357(te)-1(j)]TJ 0 -13.549 Td[(obmierz\\252e)-1(j)-437(c)27(h)1(a\\252)-1(u)1(pie)-438(m\\246)-1(\\273o)28(w)27(ej.)-437(Z)-1(\\252e)-438(j\\241)-437(p)-28(or)1(w)27(a\\252o)-438(i)-438(n)1(ies)-1(\\252o,)-438(a)-437(nikt)1(o)-438(nie)-438(b)28(y\\252)-438(mo)-28(ce)-1(n)]TJ 0 -13.549 Td[(p)-27(o)27(wstrzyma\\242)-1(.)]TJ 27.879 -13.55 Td[(Hance)-441(to)-440(na)28(w)28(e)-1(t)-440(s)-1(z\\252o)-441(n)1(a)-441(r)1(\\246)-1(k)28(\\246)-441(i)-440(n)1(a)27(w)28(e)-1(t)-440(cz)-1(\\246s)-1(to)-440(o)-440(t)27(y)1(m)-441(rozp)-28(o)28(wiad)1(a\\252a)-441(p)1(rz)-1(ed)]TJ -27.879 -13.549 Td[(lu)1(d\\271m)-1(i)1(.)]TJ\nET\nendstream\nendobj\n1664 0 obj <<\n/Type /Page\n/Contents 1665 0 R\n/Resources 1663 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1663 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1668 0 obj <<\n/Length 9588      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(521)]TJ -330.353 -35.866 Td[({)-268(Niec)27(h)-268(si\\246)-268(z)-1(ab)1(a)27(wia,)-268(p)-27(\\363ki)-268(w)28(\\363)-56(j)1(to)28(wi)-268(nie)-268(wz)-1(b)1(roni)1(\\241)-269(t)1(rac)-1(i)1(\\242)-269(gromad)1(z)-1(ki)1(e)-1(.)-268(Dy)1(\\242)-269(jej)]TJ -27.879 -13.549 Td[(ni)1(c)-1(ze)-1(go)-341(nie)-342(\\273)-1(a\\252u)1(je)-342(i)-342(zw)28(oz)-1(i)-341(z)-343(miasta,)-342(co)-342(in)1(o)-342(mo\\273)-1(e,)-342(w)28(e)-343(z\\252oto)-342(b)28(y)-341(j\\241)-342(op)1(ra)28(wi\\252.)-342(Ni)1(e)-1(c)27(h)]TJ 0 -13.549 Td[(se)-334(u\\273yw)28(a)-56(j\\241)-333(i)-333(k)28(o\\253ca)-333(patrz\\241.)-333(Co)-334(mi)-333(tam)-334(d)1(o)-334(n)1(ic)27(h)1(!)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-438(ma\\252o)-438(to)-437(j\\241)-438(w\\252asn)28(yc)27(h)-437(zm)-1(ar)1(t)28(w)-1(i)1(e)-1(\\253)-437(\\273)-1(ar)1(\\252o!)-438(Nie)-438(\\273a\\252o)27(w)28(a\\252a)-438(p)1(ie)-1(n)1(i\\246dzy)-438(la)]TJ -27.879 -13.549 Td[(adw)28(ok)56(ata,)-381(a)-381(jes)-1(zc)-1(ze)-382(n)1(ie)-381(w)-1(i)1(ada)-381(b)28(y\\252o,)-381(ki)1(e)-1(j)-380(s)-1(i\\246)-381(An)28(tk)28(o)28(w)27(a)-381(spr)1(a)27(w)28(a)-381(o)-28(db)-27(\\246dzie)-382(i)-381(co)-381(go)]TJ 0 -13.55 Td[(cz)-1(ek)55(a.)-262(A)-263(on)-262(tam)-263(c)27(h)28(u)1(dziac)-1(zek)-263(sc)27(hn)1(\\241\\252)-263(w)-263(kreminale)-263(i)-262(B)-1(o\\273e)-1(go)-262(z)-1(mi\\252o)28(w)27(an)1(ia)-263(wygl\\241d)1(a\\252.)]TJ 0 -13.549 Td[(W)-494(c)27(ha\\252u)1(pie)-495(te\\273)-495(si\\246)-495(z)-495(w)27(oln)1(a)-495(rozpr)1(z)-1(\\246ga\\252o.)-495(M)1(og\\252a)-495(to)-495(d)1(opil)1(no)28(w)27(a\\242)-495(wsz)-1(ystki)1(e)-1(go?)]TJ 0 -13.549 Td[(P)28(ar)1(ob)-28(ek)-313(si\\246)-314(r)1(oz)-1(zuc)28(h)28(w)27(al)1(a\\252)-314(coraz)-313(bar)1(z)-1(ej,)-312(s)-1(n)1(ad\\271)-313(prze)-1(z)-313(k)28(o)28(w)27(al)1(a)-313(p)-28(o)-28(d)1(ma)27(wian)29(y)83(,)-313(\\273e)-313(tak)]TJ 0 -13.549 Td[(rob)1(i\\252,)-406(j)1(ak)-406(m)27(u)-405(s)-1(i)1(\\246)-407(p)-27(o)-28(d)1(oba\\252o,)-406(a)-406(n)1(ieraz)-1(,)-405(kiej)-406(d)1(o)-406(m)-1(i)1(as)-1(ta)-406(p)-27(o)-55(je)-1(c)28(ha\\252a,)-406(ca\\252y)-406(d)1(z)-1(ie\\253)-406(si\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(a\\252\\246s)-1(a\\252)-386(p)-28(o)-386(ws)-1(i.)-386(Gr)1(oz)-1(i\\252a)-386(m)27(u)-386(p)-27(ote)-1(m,)-386(\\273)-1(e)-387(n)1(ie)-1(c)28(h)-386(jeno)-387(An)29(te)-1(k)-386(p)-27(o)27(wr\\363)-27(c)-1(i,)-386(a)-386(z)-387(nim)]TJ 0 -13.549 Td[(si\\246)-334(cz)-1(\\246s)-1(to)-333(p)-27(orac)27(h)28(u)1(je.)]TJ 27.879 -13.55 Td[({)-282(W)84(r\\363)-28(ci!)-281(Je)-1(sz)-1(cz)-1(e)-282(n)1(a)-282(to)-282(n)1(ie)-282(pr)1(z)-1(ysz\\252)-1(o,)-281(b)28(yc)28(h)-282(zb)-27(\\363)-56(j\\363)28(w)-282(p)1(usz)-1(cz)-1(al)1(i!)-282({)-281(o)-28(dkr)1(z)-1(y)1(kiw)28(a\\252)]TJ -27.879 -13.549 Td[(zuc)27(h)29(w)27(ale.)]TJ 27.879 -13.549 Td[(Ja\\273e)-369(c)-1(i)1(e)-1(rp)1(\\252a)-369(z)-369(gn)1(iew)-1(u)1(,)-368(bi\\242)-369(b)29(y)-369(j)1(e)-1(n)1(o)-369(ten)-368(p)28(ysk)-368(niep)-27(o)-28(c)-1(zciwy)83(,)-368(ale)-369(p)-27(oredzi)-368(m)27(u)]TJ -27.879 -13.549 Td[(to?)-309(J)1(e)-1(sz)-1(cz)-1(e)-309(j)1(\\241)-309(sp)-27(oniewie)-1(r)1(a,)-309(a)-308(kt\\363\\273)-309(to)-308(si\\246)-309(z)-1(a)-308(ni)1(\\241)-309(u)1(p)-28(omni)1(,)-309(k)1(to)-309(w)28(e)-1(spr)1(z)-1(e?)-309(T)83(rza)-308(b)28(y\\252o)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-443(z)-1(n)1(ie)-1(\\261\\242)-444(i)-443(w)-443(s)-1(ob)1(ie)-444(sc)27(h)1(o)27(w)28(a\\242)-444(n)1(a)-443(p)-28(\\363\\271niej,)-443(d)1(o)-443(s)-1(p)-27(os)-1(ob)1(nej)-443(p)-27(ory)84(,)-443(b)-28(o)-443(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(p)-27(\\363)-56(j)1(dzie)-345(i)-345(wsz)-1(ystk)28(o)-344(na)-345(j)1(e)-1(j)-344(r)1(\\246)-1(ce)-345(s)-1(p)1(adni)1(e)-1(;)-344(ju)1(\\273)-345(i)-345(tak)-344(ledwie)-345(mog\\252a)-345(wyd)1(oli\\242)-345(rob)-27(o)-28(cie.)]TJ 0 -13.549 Td[(Zapad)1(a\\252a)-310(prze)-1(to)-310(n)1(a)-310(z)-1(d)1(ro)28(wiu)-310(coraz)-311(wi\\246ce)-1(j)1(.)-310(Jak\\273e)-1(,)-310(i)-310(\\273e)-1(l)1(az)-1(o)-310(w)-310(k)28(o\\253cu)-310(rd)1(z)-1(a)-310(p)1(rze)-1(\\271re,)]TJ 0 -13.549 Td[(i)-333(k)56(am)-1(i)1(e)-1(\\253)-333(j)1(e)-1(n)1(o)-334(d)1(o)-334(cz)-1(asu)-333(wytr)1(z)-1(yma,)-333(a)-333(nie)-334(d)1(opiero)-333(s\\252)-1(ab)1(a)-333(k)28(obieta!)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-403(dni)1(a)-404(p)-27(o)-28(d)-403(k)28(on)1(iec)-404(ma)-56(j)1(a)-404(ksi\\241d)1(z)-404(z)-404(or)1(ganist\\241)-403(p)-28(o)-55(jec)27(h)1(ali)-403(na)-403(o)-28(d)1(pu)1(s)-1(t,)]TJ -27.879 -13.549 Td[(za\\261)-405(J)1(am)27(br)1(o\\273)-1(y)-403(tak)-403(s)-1(i\\246)-404(spi)1(\\252)-404(z)-404(Nie)-1(mcam)-1(i)1(,)-404(kt\\363r)1(e)-404(c)-1(z\\246)-1(sto)-404(zagl\\241d)1(a\\252y)-404(d)1(o)-404(k)56(arcz)-1(m)28(y)83(,)-403(\\273)-1(e)]TJ 0 -13.55 Td[(ni)1(e)-334(b)28(y\\252o)-333(k)28(om)27(u)-333(p)1(rze)-1(d)1(z)-1(w)28(oni\\242)-333(na)-333(Anio\\252)-333(P)28(a\\253)1(s)-1(ki)-333(n)1(i)-333(k)28(o\\261)-1(cio\\252a)-334(ot)28(w)28(orzy\\242.)]TJ 27.879 -13.549 Td[(Ze)-1(b)1(rali)-352(si\\246)-353(przeto)-353(o)-28(d)1(pra)28(wia\\242)-353(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-353(p)-27(o)-28(d)-352(c)-1(me)-1(n)29(tarz,)-353(k)56(a)-56(j)-352(p)-27(ob)-28(ok)-352(br)1(a-)]TJ -27.879 -13.549 Td[(m)27(y)-367(s)-1(to)-55(ja\\252a)-368(ma\\252a)-368(k)56(a)-1(p)1(licz)-1(k)56(a)-368(z)-368(\\014gu)1(r\\241)-368(Mat)1(ki)-368(Bos)-1(ki)1(e)-1(j)1(.)-368(Ka\\273dego)-368(m)-1(a)-55(ja)-368(p)1(rzys)-1(t)1(ra)-56(j)1(a\\252y)]TJ 0 -13.549 Td[(j\\241)-367(dzie)-1(w)28(c)-1(zyn)28(y)-367(w)-368(pap)1(ie)-1(r)1(o)27(w)28(e)-368(ws)-1(t\\246gi)-368(a)-368(k)28(or)1(on)28(y)-368(wyz\\252ac)-1(an)1(e)-369(i)-367(p)-28(ol)1(n)28(ym)-368(kwiec)-1(iem)-368(ob-)]TJ 0 -13.549 Td[(rzuca\\252y)83(,)-414(bron)1(i\\241c)-415(o)-28(d)-415(zup)-27(e\\252nej)-415(ru)1(in)28(y)84(,)-415(gd)1(y\\273)-416(k)56(ap)1(licz)-1(k)56(a)-415(b)28(y\\252a)-415(o)-27(dwiec)-1(zna,)-414(s)-1(p)-27(\\246)-1(k)56(ana)-414(i)]TJ 0 -13.55 Td[(w)-345(gruz)-345(s)-1(i)1(\\246)-346(sypi\\241ca,)-345(\\273e)-346(n)1(a)27(w)28(e)-1(t)-345(p)1(taki)-345(j)1(u\\273)-345(s)-1(i\\246)-345(w,)-345(niej)-345(n)1(ie)-346(gn)1(ie)-1(\\271dzi\\252y)84(,)-345(a)-345(jeno)-345(ni)1(e)-1(ki)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(w)-435(cz)-1(as)-435(s\\252\\363t)-435(j)1(e)-1(sie)-1(n)1(n)28(yc)28(h,)-434(pastuc)28(h)-435(j)1(aki)-434(s)-1(c)27(h)1(ron)1(ie)-1(n)1(ia)-435(szuk)56(a\\252.)-435(S)1(m)-1(\\246tarn)1(e)-435(drzew)27(a,)-434(li-)]TJ 0 -13.549 Td[(p)28(y)-409(staruc)28(h)28(y)84(,)-410(b)1(rzoz)-1(y)-409(wysm)27(uk)1(\\252e)-410(i)-409(te)-1(,)-409(p)-27(ogi\\246)-1(t)1(e)-410(krzy\\273e)-410(os)-1(\\252an)1(ia\\252y)-410(j)1(\\241)-410(n)1(iec)-1(o)-409(o)-28(d)-409(b)1(urz)]TJ 0 -13.549 Td[(zim)-1(o)28(wyc)28(h)-333(i)-334(wic)28(hr)1(\\363)27(w.)]TJ 27.879 -13.549 Td[(Ze)-1(sz\\252)-1(o)-466(si\\246)-467(sp)-28(or)1(o)-467(n)1(aro)-28(d)1(u)-466(i)-466(jak)-466(si\\246)-467(n)1(apr\\246dce)-467(da\\252o,)-466(p)1(rzybr)1(ali)-466(k)55(ap)1(licz)-1(k)28(\\246)-466(w)]TJ -27.879 -13.55 Td[(zie)-1(l)1(e)-1(\\253)1(,)-425(a)-424(kwiat)28(y)84(,)-424(ktos)-1(i)1(k)-424(\\261)-1(miec)-1(i)-424(wygarn)1(\\241\\252,)-425(k)1(tos)-1(i)1(k)-425(\\273\\363\\252t)28(ym)-425(p)1(ias)-1(k)1(ie)-1(m)-424(wys)-1(y)1(pa\\252,)-424(\\273)-1(e)]TJ 0 -13.549 Td[(na)28(wt)28(yk)56(a)28(w)-1(sz)-1(y)-427(w)-428(zie)-1(mi\\246)-428(u)-427(s)-1(t)1(\\363p)-428(\\014)1(gur)1(y)-428(\\261w)-1(i)1(e)-1(cz)-1(ek)-428(i)-427(lamp)-28(ek)-428(zapal)1(on)28(yc)27(h)1(,)-428(wr)1(az)-429(j)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(kl\\246k)56(a\\242)-334(nab)-27(o\\273nie.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-315(p)1(rzykl\\246kn\\241\\252)-314(na)-314(pr)1(z)-1(edzie,)-315(p)1(rze)-1(d)-314(p)1(rogiem)-1(,)-314(zarzucon)28(ym)-315(tu)1(lip)1(anami)-315(a)]TJ -27.879 -13.549 Td[(g\\252ogiem)-334(r\\363\\273o)28(w)-1(y)1(m)-334(i)-333(pierwsz)-1(y)-333(zac)-1(z\\241\\252)-334(\\261pi)1(e)-1(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[(By\\252o)-277(j)1(u\\273)-277(d)1(obr)1(z)-1(e)-277(p)-27(o)-277(s\\252o\\253cu,)-276(mro)-28(cz)-1(a\\252o,)-276(n)1(ie)-1(b)-27(o)-276(na)-276(z)-1(ac)27(h)1(o)-28(d)1(z)-1(ie)-277(p)1(ali\\252o)-276(s)-1(i)1(\\246)-277(jes)-1(zc)-1(ze)]TJ -27.879 -13.55 Td[(w)28(e)-356(z)-1(\\252o)-27(c)-1(ie)-355(c)-1(a\\252e)-356(i)-355(b)1(ledziu\\261k)56(\\241)-356(ziele)-1(n)1(i\\241)-355(pr)1(z)-1(yt)1(rz)-1(\\241\\261ni)1(\\246)-1(te,)-355(c)-1(zas)-356(b)29(y\\252)-356(cic)28(h)28(y)83(,)-355(ob)29(w)-1(i)1(s)-1(\\252e)-356(w)28(ar-)]TJ 0 -13.549 Td[(k)28(o)-28(cz)-1(e)-361(brz\\363z)-362(j)1(akb)28(y)-361(si\\246)-362(la\\252y)-361(ku)-361(ziem)-1(i)1(,)-361(z)-1(b)-27(o\\273)-1(a)-361(stan\\246\\252y)-361(przygi\\246te,)-362(k)1(ie)-1(b)29(y)-361(z)-1(as\\252uc)27(h)1(ane)]TJ 0 -13.549 Td[(d\\271wi\\246kliwy)-333(b)-28(e\\252k)28(ot)-333(rze)-1(cz)-1(ki)-333(i)-333(to)-333(cic)27(h)28(u)1(\\261)-1(k)1(ie)-334(s)-1(t)1(rz)-1(y)1(k)55(an)1(ie)-334(k)28(on)1(ik)28(\\363)28(w)-334(p)-27(oln)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Ostatni)1(e)-309(stada)-308(d)1(o)-308(ob)-28(\\363r)-307(\\261)-1(ci\\241)-28(ga\\252y;)-308(o)-27(d)-308(ws)-1(i)1(,)-308(z)-309(p)-27(\\363l,)-308(z)-308(mie)-1(d)1(z)-309(j)1(u\\273)-308(niedo)-55(jr)1(z)-1(an)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(bu)1(c)27(h)1(a\\252y)-432(ni)1(e)-1(ki)1(e)-1(d)1(y)-432(j)1(az)-1(gotl)1(iw)27(e)-432(\\261piewki)-432(p)1(as)-1(t)1(usz)-1(e)-432(i)-431(d\\252ugi)1(e)-1(,)-431(prze)-1(ci\\241)-28(g\\252e)-432(p)-27(oryk)1(i.)-432(Za\\261)]TJ 0 -13.55 Td[(nar)1(\\363)-28(d)-471(\\261)-1(p)1(ie)-1(w)28(a\\252,)-472(wpat)1(rz)-1(on)29(y)-472(w)-472(jasn\\241)-471(t)28(w)27(arz)-472(Mat)1(ki,)-472(co)-472(wyci\\241)-28(ga\\252a)-472(b)1(\\252ogos)-1(\\252a)28(wi\\241c)-1(e)]TJ 0 -13.549 Td[(r\\246c)-1(e)-333(nad)-333(ws)-1(zystkim)-333(\\261)-1(wiatem:)]TJ\nET\nendstream\nendobj\n1667 0 obj <<\n/Type /Page\n/Contents 1668 0 R\n/Resources 1666 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1666 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1671 0 obj <<\n/Length 7867      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(522)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Dob)1(rano)-27(c)-1(,)-333(w)28(onna)-333(li)1(lija,)]TJ 0 -13.549 Td[(Dob)1(rano)-27(c)-1(!)]TJ 0 -13.549 Td[(Zapac)28(h)-386(m)-1(\\252o)-28(d)1(yc)27(h)-386(b)1(rz\\363z)-387(p)-28(o)28(wia\\252)-387(ze)-387(sm)-1(\\246tarza)-387(i)-386(wraz)-387(te\\273)-387(s)-1(\\252o)28(wiki)-386(j\\246\\252y)-387(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(pr)1(\\363b)-28(o)28(w)28(a\\242)-267(gar)1(dzie)-1(l)1(i,)-266(wyci\\241)-28(ga\\242)-266(rw)27(an)1(\\241)-266(n)28(u)1(t\\241,)-266(wz)-1(b)1(ie)-1(r)1(a\\242)-267(mo)-28(c\\241,)-266(ja\\273e)-267(w)-266(k)28(o\\253)1(c)-1(u)-265(buc)28(hn)1(\\246)-1(-)]TJ 0 -13.549 Td[(\\252y)-285(z\\252ote)-1(,)-284(s)-1(p)1(ie)-1(n)1(ion)1(e)-286(stru)1(gi,)-285(j)1(a\\273)-1(e)-285(p)-27(ola\\252y)-285(si\\246)-285(te)-286(t)1(re)-1(l)1(e)-286(p)-27(erliste,)-285(te)-285(kl\\241sk)55(an)1(ia)-285(cud)1(ne)-285(i)-285(te)]TJ 0 -13.55 Td[(lu)1(b)-28(e,)-364(r)1(z)-1(ewliw)28(e)-365(za)28(w)27(o)-28(d)1(z)-1(eni)1(a,)-364(za\\261)-365(n)1(ie)-1(d)1(alek)28(o)-364(z)-1(e)-364(zb)-28(\\363\\273)-364(ozw)27(a\\252y)-363(s)-1(i\\246)-364(te\\273)-365(p)1(ana)-363(Jac)27(k)28(o)28(w)27(e)]TJ 0 -13.549 Td[(skrzypi)1(c)-1(e)-365(p)1(rzywtarza)-56(j\\241c)-364(lud)1(z)-1(iom)-364(tak)-364(s)-1(\\252o)-28(d)1(k)28(o,)-364(c)-1(ic)28(h)28(u\\261k)28(o)-365(a)-364(p)1(rz)-1(ejm)28(uj)1(\\241c)-1(o,)-364(j)1(a)-1(k)1(b)28(y)-364(to)]TJ 0 -13.549 Td[(te)-276(\\273ytni)1(e)-1(,)-275(rd)1(z)-1(a)28(w)27(e)-276(k)1(\\252os)-1(y)-275(dzw)27(on)1(i\\252y)-275(o)-276(si\\246)-1(,)-275(to)-276(z\\252ote)-276(ni)1(e)-1(b)-27(o)-276(l)1(e)-1(b)-27(o)-276(p)1(rz)-1(y)1(s)-1(c)28(h\\252a)-276(ziem)-1(i)1(a)-276(tak)56(\\241)]TJ 0 -13.549 Td[(pi)1(e)-1(\\261ni\\241)-333(zagra\\252a)-333(m)-1(a)-55(jo)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(I)-346(j)1(u\\273)-346(w)-1(r)1(az)-347(\\261pi)1(e)-1(w)28(ali)-346(wsz)-1(ystkie,)-346(i)-345(nar)1(\\363)-28(d,)-345(i)-346(ptaszk)28(o)27(wie)-346(i)-346(skrzyp)1(ic)-1(e,)-346(a)-346(k)1(ie)-1(j)-345(na)]TJ -27.879 -13.549 Td[(to)-261(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie)-261(usta)28(w)27(ali)1(,)-261(kiej)-261(s\\252o)27(wik)1(i)-261(tak)-261(si\\246)-262(zani)1(e)-1(s\\252y)83(,)-261(a\\273e)-262(cic)27(h)1(\\252o,)-261(a)-261(s)-1(t)1(run)29(y)-261(jakb)29(y)]TJ 0 -13.55 Td[(tc)27(h)29(u)-338(nabi)1(e)-1(r)1(a\\252)-1(y)84(,)-338(w)-1(t)1(e)-1(d)1(y)-339(n)1(ieprze)-1(l)1(ic)-1(zon)28(y)-338(\\273)-1(ab)1(i)-338(c)27(h\\363r)-338(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-339(rec)27(h)1(otliw)28(e)-339(g\\252os)-1(y)-338(i)-338(gra\\252)]TJ 0 -13.549 Td[(zgo)-28(dli)1(w)-1(y)1(m)-334(skrze)-1(ki)1(e)-1(m)-334(i)-333(n)29(uk)56(aniem)-334(p)1(rze)-1(ci\\241)-28(g\\252ym.)]TJ 27.879 -13.549 Td[(I)-333(tak)-333(ju\\273)-333(s)-1(z\\252o)-334(n)1(a)-334(p)1(rze)-1(mian)28(y)84(.)]TJ 0 -13.549 Td[(D\\252ugo)-322(si\\246)-323(o)28(w)27(o)-322(nab)-27(o\\273)-1(e\\253st)28(w)27(o)-322(ci\\241)-28(gn\\246\\252o,)-322(ja\\273e)-323(k)28(o)28(w)27(al)-322(z)-1(acz\\241\\252)-323(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(sz)-1(a\\242,)-322(wy-)]TJ -27.879 -13.549 Td[(dziera\\252)-333(s)-1(i\\246)-333(m)-1(o)-27(c)-1(n)1(o,)-334(n)1(ad)-333(dr)1(ugimi)-333(g\\363ru)1(j\\241c;)-333(a)-334(cz)-1(\\246s)-1(t)1(o)-334(w)28(o\\252a\\252)-334(za)-334(siebie:)]TJ 27.879 -13.55 Td[({)-333(P)28(o\\261)-1(p)1(ies)-1(za)-56(j)1(ta)-334(si\\246,)-333(lud)1(z)-1(ie...)-333({)-333(\\273e)-334(to)-333(op)-28(\\363\\271nial)1(i)-333(s)-1(i\\246)-333(z)-334(n)28(ut)1(\\241)-334(n)1(ie)-1(k)1(t\\363re.)]TJ 0 -13.549 Td[(A)-333(na)28(w)27(et)-333(raz)-334(h)29(ukn)1(\\241\\252)-334(n)1(a)-334(M)1(ac)-1(iu)1(s)-1(i)1(a)-334(K\\252\\246b)-27(o)27(w)28(e)-1(go:)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(rz)-1(y)1(j)-333(s)-1(i)1(\\246)-1(,)-333(ju)1(c)27(h)1(o,)-333(b)-28(o\\261)-334(n)1(ie)-334(za)-334(b)29(yd\\252em)-1(!)]TJ 0 -13.549 Td[(\\233e)-306(zgo)-28(d)1(liwie)-305(ju)1(\\273)-306(p)-27(os)-1(z\\252o,)-305(i)-305(g\\252osy)-305(p)-28(o)-27(dry)1(w)27(a\\252y)-305(si\\246)-305(raz)-1(em)-305(kiej)-305(te)-305(s)-1(tad)1(a)-305(go\\252\\246)-1(b)1(ie)]TJ -27.879 -13.549 Td[(i)-333(kr\\241\\273\\241co,)-334(z)-333(w)27(oln)1(a)-333(unosi\\252y)-333(s)-1(i)1(\\246)-334(ku)-333(n)1(ie)-1(b)1(u)-333(cie)-1(mni)1(e)-1(j)1(\\241c)-1(em)27(u)1(.)]TJ 27.879 -13.55 Td[(Dob)1(rano)-27(c)-1(,)-333(w)28(onna)-333(li)1(lija!)]TJ 0 -13.549 Td[(Dob)1(rano)-27(c)-1(!)]TJ 0 -13.549 Td[(Niep)-28(ok)56(alan)1(a)-333(Maryj)1(a!)]TJ 0 -13.549 Td[(Dob)1(rano)-27(c)-1(!)]TJ 0 -13.549 Td[(Mr)1(ok)-353(ju)1(\\273)-354(zg\\246s)-1(tn)1(ia\\252)-353(i)-353(n)1(o)-28(c)-354(ciep\\252a)-353(i)-352(c)-1(ic)28(ha)-353(\\261w)-1(i)1(at)-353(otul)1(a\\252a,)-353(z)-1(asie)-353(na)-353(n)1(iebie)-353(wy-)]TJ -27.879 -13.55 Td[(st\\246)-1(p)-27(o)28(w)27(a\\252y)-333(gwiazdy)-333(ros\\241)-334(r)1(oz)-1(iskr)1(z)-1(on)1(\\241,)-334(k)1(ie)-1(j)-332(s)-1(i\\246)-333(z)-1(acz)-1(\\246li)-333(rozc)27(ho)-27(dzi\\242)-1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(u)1(c)27(h)28(y)84(,)-333(wp)-28(\\363\\252)-333(s)-1(i)1(\\246)-334(p)-27(obra)28(ws)-1(zy)83(,)-333(za)28(w)27(o)-28(d)1(z)-1(i)1(\\252y)-334(p)-27(o)-333(dr)1(ogac)27(h.)]TJ 0 -13.549 Td[(Hank)56(a)-276(p)-27(o)27(wr)1(ac)-1(a\\252a)-276(jeno)-276(z)-277(d)1(z)-1(i)1(e)-1(c)28(kiem)-277(na)-276(r)1(\\246)-1(ku)-275(i)-276(s)-1(r)1(o)-28(dze)-277(cz)-1(ego\\261)-277(zadu)1(m)-1(an)1(a,)-276(gdy)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(u)1(n\\241\\252)-333(s)-1(i\\246)-333(k)28(o)27(w)28(al)-333(i)-333(w)-1(p)-27(o)-28(d)1(le)-334(sz)-1(ed\\252.)]TJ 27.879 -13.549 Td[(Nie)-334(ozw)28(a\\252)-1(a)-333(si\\246)-1(;)-333(d)1(opiero)-333(pr)1(z)-1(ed)-333(domem)-1(,)-333(wid)1(z)-1(\\241c,)-333(i\\273)-334(ni)1(e)-334(os)-1(ta)-55(je,)-333(rze)-1(k\\252a:)]TJ 0 -13.55 Td[({)-333(Ws)-1(t)1(\\241)-28(picie)-334(t)1(o,)-334(M)1(ic)27(h)1(a\\252?)]TJ 0 -13.549 Td[({)-333(Przysi\\246d\\246)-334(w)-333(ganku)-333(i)-333(p)-27(o)28(w)-1(i)1(e)-1(m)-333(c)-1(o)-333(w)27(am)-333({)-334(sz)-1(epn)1(\\241\\252)-334(cic)28(ho.)]TJ 0 -13.549 Td[(\\221cierp)1(\\252)-1(a)-333(n)1(ie)-1(co,)-333(s)-1(zyku)1(j\\241c)-334(si\\246)-334(j)1(ak)56(\\241\\261)-334(no)28(w)28(\\241)-334(b)1(ie)-1(d)1(\\246)-334(p)-27(os)-1(\\252ysz)-1(e\\242.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(li\\261c)-1(ie)-333(p)-28(on)1(o)-334(u)-333(An)29(tk)55(a?)-333({)-333(pierws)-1(zy)-333(z)-1(acz\\241\\252)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(am,)-333(ale)-334(mn)1(ie)-334(do)-333(ni)1(e)-1(go)-333(ni)1(e)-334(pu)1(\\261)-1(cili.)]TJ 0 -13.549 Td[({)-333(T)83(e)-1(gom)-333(s)-1(i\\246)-333(i)-333(b)-28(o)-55(ja\\252.)]TJ 0 -13.55 Td[({)-333(M\\363)28(w)27(cie,)-333(c)-1(o)-333(wie)-1(cie!)-333({)-334(mr\\363z)-334(j)1(\\241)-334(p)1(rze)-1(sz)-1(ed\\252.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(j)1(a)-334(ta)-333(wiem)-1(?...)-333(t)28(yl)1(a)-334(j)1(e)-1(n)1(o,)-333(c)-1(o)-333(m)-1(i)-333(si\\246)-334(u)1(da\\252o)-333(z)-1(e)-333(s)-1(tarsze)-1(go)-333(wyc)-1(i)1(\\241)-28(gn\\241\\242.)]TJ 0 -13.549 Td[({)-333(A)-334(co?)-334({)-333(wpar)1(\\252)-1(a)-333(si\\246)-334(w)-334(s\\252up)-27(ek)-334(i)-333(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-333(mo)-28(cniej)-333(pr)1(z)-1(ycisn\\246\\252a)-334(d)1(o)-334(siebie.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-333(\\273e)-334(An)28(tk)56(a,)-333(pr)1(z)-1(ed)-333(s)-1(p)1(ra)28(w)28(\\241)-334(n)1(ie)-334(wyp)1(usz)-1(cz)-1(\\241.)]TJ 0 -13.549 Td[({)-399(Lacz)-1(ego!)-399({)-399(ledwie)-399(w)-1(y)1(j\\241k)56(a\\252a,)-399(dy)1(got)-399(j\\241)-399(tr)1(z)-1(\\241s\\252)-399(i)-399(\\252am)-1(a\\252.)-399({)-399(D)1(y\\242)-1(.)1(..)-399(pr)1(z)-1(ec)-1(i)1(e)-1(k)]TJ -27.879 -13.55 Td[(adw)28(ok)56(at)-333(m)-1(\\363)28(wi\\252,)-333(c)-1(o)-333(mo\\273)-1(e)-334(p)1(usz)-1(cz)-1(\\241.)]TJ 27.879 -13.549 Td[({)-231(Hal)1(e)-1(,)-230(\\273)-1(eb)28(y)-231(i)1(m)-231(ucie)-1(k)1(\\252)-1(!)-230(T)83(ak)-230(prze)-1(z)-231(n)1(ic)-1(zego)-231(nie)-231(p)1(usz)-1(cz)-1(\\241!)-230(Wiec)-1(i)1(e)-1(,)-230(przysz)-1(ed\\252em)]TJ\nET\nendstream\nendobj\n1670 0 obj <<\n/Type /Page\n/Contents 1671 0 R\n/Resources 1669 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1656 0 R\n>> endobj\n1669 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1674 0 obj <<\n/Length 9178      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(523)]TJ -358.232 -35.866 Td[(dzisia)-56(j)-356(do)-356(w)27(as)-357(c)-1(a\\252ki)1(e)-1(m)-357(p)-27(o)-357(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lsku)1(.)-357(Co)-357(tam)-357(p)-28(omi\\246dzy)-357(n)1(am)-1(i)-356(b)28(y\\252o)-357(to)-357(b)29(y\\252o;)]TJ 0 -13.549 Td[(obaczyc)-1(i)1(e)-368(k)1(ie)-1(d)1(y\\261,)-367(\\273e)-1(m)-366(b)28(y\\252)-367(p)1(ra)28(w...)-366(Nie)-367(wie)-1(r)1(z)-1(yl)1(i\\261)-1(cie)-367(mi..)1(.)-367(w)28(as)-1(za)-367(w)28(ola...)-366(ale)-367(teraz)]TJ 0 -13.549 Td[(wys\\252)-1(u)1(c)27(h)1(a)-56(jcie,)-420(co)-420(rze)-1(k)1(n\\246,)-420(a)-420(jak)-419(ksi\\246)-1(d)1(z)-1(u)-419(na)-420(sp)-27(o)27(wiedzi,)-419(tak)-420(pr)1(a)28(w)-1(d)1(\\246)-421(p)-27(o)28(wie)-1(m..)1(.)-420(Z)]TJ 0 -13.549 Td[(An)28(tk)1(ie)-1(m)-296(je)-1(st)-296(\\271)-1(le!)-296(z)-297(p)-27(e)-1(wno\\261c)-1(i)1(\\241)-297(ci\\246\\273)-1(k)28(o)-296(go)-297(zas)-1(\\241d)1(z)-1(\\241,)-296(mo\\273)-1(e)-297(n)1(a)-297(d)1(z)-1(i)1(e)-1(si\\246)-1(\\242)-296(lat.)-296(S\\252ysz)-1(y)1(c)-1(ie)]TJ 0 -13.549 Td[(to?...)]TJ 27.879 -13.55 Td[({)-333(S\\252ysz)-1(\\246,)-333(ale)-334(n)1(ic)-334(a)-333(nic)-333(nie)-334(wierz\\246)-334({)-333(usp)-28(ok)28(oi)1(\\252a)-334(si\\246)-334(n)1(agle)-1(.)]TJ 0 -13.549 Td[({)-333(Ka\\273)-1(d)1(e)-1(n)-332(nie)-334(wierzy)83(,)-333(p)-27(\\363ki)-333(ni)1(e)-334(pr)1(z)-1(ymierzy;)-333(pr)1(a)27(wd)1(\\246)-334(w)27(am)-333(rze)-1(k\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(Za)27(wd)1(y)-334(t)1(ak)55(\\241)-333(m\\363)27(wicie)-334({)-333(za\\261)-1(mia\\252a)-333(s)-1(i\\246)-333(w)-1(zgard)1(liwie.)]TJ 0 -13.549 Td[(Ciepn\\241\\252)-444(si\\246)-445(i)-444(j\\241\\252)-444(gor\\241co)-445(u)1(p)-28(ewnia\\242,)-444(jak)28(o)-444(teraz)-445(z)-445(p)1(roste)-1(go)-444(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lst)28(w)27(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-1(,)-435(b)28(yc)27(h)-435(p)-27(ore)-1(d)1(z)-1(i)1(\\242)-1(.)-436(S)1(\\252uc)28(ha\\252a)-436(c)27(h)1(o)-28(dz\\241c)-437(o)-27(c)-1(zyma)-436(p)-28(o)-436(ob)-27(e)-1(j)1(\\261)-1(ciu)1(,)-436(ju)1(\\273)-437(si\\246)-436(par\\246)]TJ 0 -13.549 Td[(razy)-258(p)-28(o)-28(d)1(nosi\\252a)-259(n)1(iec)-1(ierp)1(liwie:)-259(k)1(ro)28(wy)-259(an)1(o)-259(n)1(ie)-259(wydo)-55(jon)1(e)-259(p)-28(or)1(ykiw)28(a\\252y)-259(w)-258(ob)-28(or)1(z)-1(e,)-258(g\\246)-1(si)]TJ 0 -13.55 Td[(b)28(y\\252y)-402(nie)-403(zap)-27(\\246)-1(d)1(z)-1(on)1(e)-404(n)1(a)-403(n)1(o)-28(c)-403(i)-403(\\271rebak)-403(gon)1(i\\252)-403(si\\246)-403(w)-403(op\\252otk)56(ac)28(h)-403(z)-403(\\212ap)1(\\241,)-403(a)-403(c)28(h\\252opak)1(i)]TJ 0 -13.549 Td[(ra)-55(jco)28(w)27(a\\252y)-342(w)-343(sto)-28(d)1(ole)-1(.)-342(Ni)1(e)-343(wie)-1(r)1(z)-1(y)1(\\252)-1(a)-342(m)28(u)-342(ju)1(\\261)-1(ci)-342(ani)-342(s\\252)-1(\\363)28(w)28(e)-1(cz)-1(k)56(a.)-342({)-342(Niec)27(h)-342(si\\246)-343(wygad)1(a,)]TJ 0 -13.549 Td[(mo\\273)-1(e)-334(si\\246)-334(wyd)1(a,)-333(z)-334(c)-1(zym)-333(przysz)-1(ed\\252)-333({)-334(m)28(y\\261la\\252a)-334(tr)1(z)-1(y)1(m)-1(a)-55(j\\241c)-334(si\\246)-334(n)1(a)-334(b)1(ac)-1(zno\\261ci.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\242?)-334(co?)-334({)-333(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(a,)-333(b)29(yle)-334(co\\261)-334(rze)-1(c.)]TJ 0 -13.549 Td[({)-333(A,)-333(rada)-333(b)28(y)-333(si\\246)-334(nal)1(az)-1(\\252a)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(cisz)-1(ej)-333(jes)-1(zc)-1(ze)-1(.)]TJ 0 -13.55 Td[(Od)1(w)-1(r)1(\\363)-28(ci\\252a)-334(si\\246)-334(d)1(o)-334(n)1(iego.)]TJ 0 -13.549 Td[({)-484(Da\\242)-485(wyku)1(p,)-484(to)-484(go)-485(p)1(usz)-1(cz)-1(\\241)-484(j)1(e)-1(sz)-1(cz)-1(e)-484(prze)-1(d)-483(s)-1(p)1(ra)28(w)27(\\241,)-484(a)-484(p)-28(ot)1(e)-1(m)-485(t)1(o)-485(j)1(u\\273)-485(se)]TJ -27.879 -13.549 Td[(p)-27(oredzi,)-333(c)27(ho)-27(\\242)-1(b)28(y)-333(i)-333(d)1(o)-334(tej)-333(Hame)-1(r)1(yki..)1(.)-333(nie)-334(zgoni)1(\\241...)]TJ 27.879 -13.549 Td[({)-496(Jez)-1(u)1(s)-1(,)-496(M)1(aria!)-496(D)1(o)-496(Ham)-1(eryk)1(i!)-496({)-496(krzykn)1(\\246)-1(\\252a)-496(b)-27(ez)-1(w)28(olni)1(e)-1(.)-496({)-496(Cic)28(ho)-28(cie,)-496(jak)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-347(przysi\\246g\\241)-348(m\\363)27(wi\\246,)-348(t)1(ak)-348(d)1(z)-1(iedzic)-348(rad)1(z)-1(i)1(\\252)-1(.)-347(\\377)-56(Ni)1(e)-1(c)28(h)-348(u)1(c)-1(i)1(e)-1(k)56(a)-348({)-347(p)-28(o)28(wiada)-347({)-348(n)1(a)-56(j)1(m)-1(n)1(ie)-1(j)]TJ 0 -13.55 Td[(dzies)-1(i)1(\\246)-1(\\242)-334(l)1(at...)-333(z)-1(marn)29(uj)1(e)-334(s)-1(i)1(\\246)-334(c)27(h)1(\\252)-1(op)1(...)1(\")-334(Wczo)-1(r)1(a)-56(j)-333(mi)-333(m\\363)27(wi\\252.)]TJ 27.879 -13.549 Td[({)-333(Uc)-1(iek)56(a\\242)-334(ze)-334(ws)-1(i.)1(..)-333(o)-28(d)-333(gron)28(t)1(u...)-333(o)-27(d)-333(dzie)-1(ci..)1(.)-333(Je)-1(zu..)1(.)-334({)-333(to)-333(in)1(o)-334(zrozumia\\252a.)]TJ 0 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(jeno)-333(wykup)1(,)-333(a)-334(r)1(e)-1(sz)-1(t\\246)-333(to)-334(j)1(u\\273)-333(An)28(te)-1(k)-333(p)-27(os)-1(t)1(ano)28(wi,)-333(da)-55(jcie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Sk)56(\\241d\\273e)-334(to)-333(w)27(ezm)-1(\\246?)-1(.)1(..)-333(M\\363)-55(j)-333(B)-1(o\\273e)-1(,)-333(w)-333(t)28(yli)-333(\\261w)-1(i)1(at...)-333(o)-28(d)-333(wsz)-1(ystkiego.)]TJ 0 -13.549 Td[({)-449(P)1(i\\246)-1(\\242s)-1(et)-449(ru)1(bl)1(i)-449(c)27(h)1(c)-1(\\241!)-448(Prze)-1(ciek)-449(mac)-1(ie)-449(te)-449(o)-56(j)1(c)-1(o)28(w)28(e)-1(..)1(.)-449(w)28(e)-1(\\271c)-1(ie)-449(je)-449(n)1(a)-449(w)-1(y)1(kup)1(...)]TJ -27.879 -13.55 Td[(p)-27(olicz)-1(ym)-333(s)-1(i\\246)-333(p)-28(\\363\\271ni)1(e)-1(j)1(...)-333(b)28(yl)1(e)-334(jeno)-333(rato)28(w)28(a\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[(Sk)28(o)-27(c)-1(zy\\252a)-333(na)-333(r\\363)28(w)-1(n)1(e)-334(n)1(ogi.)]TJ 0 -13.549 Td[({)-333(Jak)28(o)-334(t)1(e)-1(n)-333(p)1(ie)-1(s)-333(c)-1(i\\246giem)-334(jedn)1(o)-333(s)-1(zc)-1(ze)-1(k)56(acie)-1(!)-333({)-333(c)27(h)1(c)-1(ia\\252a)-333(o)-28(d)1(e)-1(j)1(\\261)-1(\\242.)]TJ 0 -13.549 Td[({)-385(Ciepi)1(e)-1(cie)-385(s)-1(i)1(\\246)-386(j)1(ak)-385(g\\252u)1(pia)-384({)-385(r)1(oz)-1(gni)1(e)-1(w)28(a\\252)-385(si\\246)-1(.)-384({)-385(T)83(ak)-384(se)-386(i)1(no)-385(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252e)-1(m...)]TJ -27.879 -13.549 Td[(Hale,)-413(b)-28(\\246dzie)-413(s)-1(i\\246)-413(tu)-413(h)1(onoro)28(w)28(a\\242)-414(o)-413(b)-27(e)-1(le)-413(s)-1(\\252o)28(w)27(o,)-413(a)-413(tam)-413(c)27(h)1(\\252op)-413(w)-414(k)1(re)-1(min)1(ale)-414(zgni)1(je,)]TJ 0 -13.55 Td[(P)28(o)28(wiem)-334(m)27(u)1(,)-333(jak)-333(to)-333(z)-1(ab)1(ie)-1(gacie,)-333(b)28(y)-333(m)27(u)-333(u)1(l\\273y\\242)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-334(zno)28(wu,)-333(n)1(ie)-334(wiedz\\241c)-334(ju)1(\\273)-1(,)-333(co)-334(m)28(y\\261le)-1(\\242.)]TJ 0 -13.549 Td[(Op)-27(o)28(w)-1(i)1(ada\\252)-345(sz)-1(erok)28(o)-344(o)-345(tej)-344(Jam)-1(eryce,)-345(o)-345(l)1(ud)1(z)-1(iac)28(h)-345(zna)-55(jom)28(yc)27(h)1(,)-345(k)1(t\\363re)-345(tam)-345(p)-27(o-)]TJ -27.879 -13.549 Td[(jec)27(h)1(a\\252y)83(,)-325(\\273e)-326(li)1(s)-1(t)28(y)-325(p)1(is)-1(z\\241,)-325(a)-325(na)28(w)28(e)-1(t)-325(p)1(ie)-1(n)1(i\\241dze)-326(p)1(rzys)-1(y)1(\\252a)-56(j\\241)-325(l)1(a)-326(sw)27(oi)1(c)27(h.)-324(Jak)-325(tam)-326(d)1(obrze,)]TJ 0 -13.549 Td[(jak)56(\\241)-282(w)27(ol\\246)-282(m)-1(a)-282(k)55(a\\273den,)-282(j)1(akie)-283(b)-27(ogac)-1(t)28(w)28(a)-283(zbiera)-55(j\\241.)-282(An)28(tek)-282(m)-1(\\363g\\252b)28(y)-282(zaraz)-283(uciek)56(a\\242)-1(:)-282(z)-1(n)1(a)]TJ 0 -13.549 Td[(\\233yd)1(a,)-299(kt\\363ren)-299(j)1(u\\273)-300(n)1(iejednego)-299(wypr)1(o)27(w)28(adzi\\252.)-299(Ma\\252o)-299(to)-299(j)1(u\\273)-300(tak)1(ic)27(h)-298(ucie)-1(k)1(\\252)-1(o!)-299(Za\\261)-299(Han-)]TJ 0 -13.55 Td[(k)56(a)-368(m)-1(og\\252ab)28(y)-367(jec)27(ha\\242)-368(p)-28(ot)1(e)-1(m)-368(la)-368(niep)-27(oz)-1(n)1(aki.)-368(Gr)1(z)-1(ela)-368(wr\\363)-28(ci)-368(z)-369(w)28(o)-56(j)1(s)-1(k)56(a,)-368(to)-368(sp\\252aci\\252b)28(y)-368(z)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(o)28(wizn)28(y)84(,)-334(a)-333(ni)1(e)-1(,)-333(ku)1(piec)-334(si\\246)-334(te\\273)-334(ry)1(c)27(h\\252o)-333(zna)-56(j)1(dzie.)]TJ 27.879 -13.549 Td[({)-493(P)28(or)1(ad\\271c)-1(i)1(e)-494(si\\246)-493(ksi\\246)-1(d)1(z)-1(a,)-492(obacz)-1(y)1(c)-1(ie,)-493(co)-493(w)28(am)-1(a)-493(p)1(rzyt)28(wie)-1(r)1(dzi)-493(mo)-56(j)1(e)-494(s\\252o)28(w)27(a.)]TJ -27.879 -13.549 Td[(P)28(oznacie,)-474(\\273)-1(em)-475(p)1(ra)28(wy)-474(i)-474(z)-1(e)-474(s)-1(zc)-1(ze)-1(r)1(e)-1(go)-474(se)-1(r)1(c)-1(a)-474(nama)28(wiam)-1(,)-474(n)1(ie)-474(la)-474(s)-1(w)28(o)-56(j)1(e)-1(j)-474(wygo)-27(dy)84(.)]TJ 0 -13.549 Td[(Jeno)-288(p)1(rze)-1(d)-287(ni)1(kim)-288(ani)-287(par)1(y)-288(z)-288(g\\246)-1(b)29(y)83(,)-287(b)28(yc)27(h)-287(si\\246)-288(s)-1(tr)1(a\\273)-1(n)1(ic)-1(y)-287(ni)1(e)-289(zmiark)28(o)28(w)27(al)1(i,)-288(za\\261)-288(wte)-1(d)1(y)]TJ 0 -13.55 Td[(i)-333(z)-1(a)-333(t)28(ysi\\241ce)-334(go)-334(n)1(ie)-334(p)1(usz)-1(cz)-1(\\241,)-333(a)-333(jes)-1(zcz)-1(e)-334(w)-333(k)56(a)-56(jd)1(an)28(y)-333(z)-1(ak)1(uj)1(\\241)-334({)-333(z)-1(ak)28(o\\253)1(c)-1(zy\\252)-333(p)-28(o)28(w)28(a\\273)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sk)56(\\241d)-333(wz)-1(i)1(\\241\\242)-334(na)-333(wykup)1(!)-333(t)28(ylac)27(h)1(na)-333(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)1(!)-333({)-334(j)1(\\246)-1(kn)1(\\246)-1(\\252a.)]TJ\nET\nendstream\nendobj\n1673 0 obj <<\n/Type /Page\n/Contents 1674 0 R\n/Resources 1672 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1672 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1678 0 obj <<\n/Length 5010      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(524)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(33.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-305(Zn)1(am)-305(k)28(ogo\\261)-305(z)-305(Mo)-28(d)1(licy)83(,)-304(kto)-305(b)29(y)-305(d)1(a\\252)-305(na)-304(dob)1(ry)-304(pro)-27(c)-1(en)28(t...)-304(znam)-305(i)-304(dru)1(gic)27(h)1(...)]TJ -27.879 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-334(b)28(y)-333(si\\246)-334(n)1(alaz)-1(\\252y)84(...)-333(Mo)-55(ja)-333(w)-334(t)28(y)1(m)-334(g\\252o)28(w)27(a..)1(.)-334(p)-27(om\\363g\\252b)28(ym.)]TJ 27.879 -13.549 Td[(I)-333(d\\252ugo)-333(jesz)-1(cz)-1(e)-334(r)1(adzi\\252)-333(a)-334(n)1(am)-1(a)28(wia\\252.)]TJ 0 -13.549 Td[({)-333(Roz)-1(w)28(a\\273)-1(cie,)-334(t)1(rz)-1(a)-333(ry)1(c)27(h\\252o)-333(p)-27(os)-1(tan)1(o)27(wi\\242.)]TJ 0 -13.549 Td[(Od)1(s)-1(ze)-1(d)1(\\252)-334(cic)27(h)1(o,)-333(\\273)-1(e)-333(ani)-333(s)-1(p)-27(ostrze)-1(g\\252a,)-333(kiej)-333(si\\246)-334(zap)-28(o)-28(d)1(z)-1(i)1(a\\252)-334(w)-333(no)-28(cy)83(.)]TJ 0 -13.55 Td[(P)28(\\363\\271no)-358(j)1(u\\273)-358(b)28(y\\252o,)-358(w)-358(c)27(h)1(a\\252up)1(ie)-359(spal)1(i,)-358(t)28(ylk)28(o)-358(W)1(ite)-1(k)-357(s)-1(iedzia\\252)-358(p)-27(o)-28(d)-358(\\261c)-1(i)1(an\\241,)-358(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(str\\363\\273uj\\241c)-485(gosp)-28(o)-28(d)1(yn)1(i,)-485(n)1(a)-485(w)-1(si)-485(te\\273)-485(w)-1(sz)-1(y)1(s)-1(cy)-485(legli,)-484(na)28(w)27(et)-485(p)1(s)-1(y)-485(n)1(ie)-485(p)-28(oszc)-1(ze)-1(ki)1(w)27(a\\252y)84(,)]TJ 0 -13.549 Td[(w)28(o)-28(da)-348(j)1(e)-1(n)1(o)-348(bu)1(lgota\\252a)-348(i)-347(ptaki)-347(z)-1(a)28(w)28(o)-28(dzi\\252y)-348(w)-348(sadac)28(h.)-348(K)1(s)-1(i\\246\\273)-1(y)1(c)-349(si\\246)-348(wto)-28(cz)-1(y\\252)-348(n)1(a)-348(ni)1(e)-1(b)-27(o)]TJ 0 -13.549 Td[(i)-394(s)-1(ze)-1(d)1(\\252)-395(sre)-1(b)1(rn)28(y)1(m)-395(s)-1(ierp)-27(em)-395(prze)-1(z)-395(t)1(e)-396(straszne,)-395(mro)-28(cz)-1(n)1(e)-395(wys)-1(ok)28(o\\261ci.)-395(Bia\\252e)-395(i)-394(niskie)]TJ 0 -13.549 Td[(mg\\252y)-417(p)-27(okryw)28(a\\252y)-417(\\252\\241ki,)-416(z)-1(a\\261)-417(n)1(ad)-417(\\273ytami)-417(wisia\\252)-417(p\\252o)28(wy)-417(tu)1(m)-1(an)-416(kwietnej)-417(k)1(urza)28(w)-1(y)1(;)]TJ 0 -13.549 Td[(sta)27(w)-365(p)-28(ol)1(\\261)-1(n)1(ie)-1(w)28(a\\252)-366(ws)-1(k)1(ro\\261)-366(dr)1(z)-1(ew)-366(ki)1(e)-1(b)28(y)-365(ta\\015a)-365(lo)-28(d)1(o)28(w)27(a..)1(.)-366(A\\273e)-366(dzw)27(on)1(i\\252o)-366(w)-366(u)1(s)-1(zac)27(h)-365(o)-28(d)]TJ 0 -13.55 Td[(tej)-333(c)-1(i)1(c)27(ho\\261c)-1(i)-333(a)-333(s\\252)-1(o)28(wicz)-1(yc)28(h)-333(kl\\241sk)56(a\\253)-333(i)-333(z)-1(a)28(w)28(o)-28(dze)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(s)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(w)28(c)-1(i\\241\\273)-333(na)-333(jedn)28(ym)-333(m)-1(i)1(e)-1(j)1(s)-1(cu)-333(jak)1(b)28(y)-333(przyku)1(ta.)]TJ 0 -13.549 Td[({)-238(Je)-1(zu,)-238(u)1(c)-1(iek)56(a\\242)-239(z)-1(e)-238(w)-1(si,)-238(o)-28(d)-238(gr)1(on)28(tu,)-238(o)-28(d)-238(wsz)-1(ystki)1(e)-1(go!)-238({)-238(m)27(y\\261la\\252a)-238(je)-1(d)1(no)-238(w)-239(k)28(\\363\\252k)28(o.)]TJ 0 -13.549 Td[(Gr)1(oz)-1(a)-288(j\\241)-288(p)1(rze)-1(j)1(\\246)-1(\\252a,)-288(rosn\\241c)-288(z)-289(min)28(u)1(t)28(y)-288(na)-288(min)28(ut)1(\\246)-1(,)-288(a)-288(se)-1(rce)-289(\\261c)-1(i)1(s)-1(k)56(a)-56(j)1(\\241c)-289(strasz)-1(n)29(ym)]TJ -27.879 -13.549 Td[(\\273ale)-1(m)-333(i)-333(prze)-1(r)1(a\\273)-1(eni)1(e)-1(m.)]TJ 27.879 -13.55 Td[(\\212apa)-226(z)-1(acz\\241\\252)-227(wy\\242)-227(na)-226(p)-28(o)-27(dw)28(\\363rz)-1(u)1(,)-226(s)-1(\\252o)28(wiki)-226(\\261)-1(cic)27(h)1(\\252y)83(,)-226(z)-1(a)28(wia\\252)-227(wiat)1(e)-1(r,)-226(\\273e)-227(z)-1(ak)28(oleba\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(cie)-1(n)1(ie)-334(i)-333(j)1(\\246)-1(kl)1(iwy)83(,)-333(s)-1(m)28(utn)29(y)-333(s)-1(zum)-334(p)1(rze)-1(l)1(e)-1(cia\\252.)]TJ 27.879 -13.549 Td[({)-333(Kub)-27(o)28(w)27(\\241)-333(du)1(s)-1(z\\246)-334(ob)1(ac)-1(zy\\252!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(W)1(itek)-334(\\273egna)-56(j)1(\\241c)-334(si\\246)-334(strac)27(h)1(liwie.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(!)-333({)-333(sk)55(ar)1(c)-1(i\\252a)-333(go,)-333(s)-1(p)1(a\\242)-334(wyp)-27(\\246)-1(d)1(z)-1(a)-55(j\\241c.)]TJ 0 -13.549 Td[({)-333(Kiej)-333(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(,)-334(d)1(o)-334(k)28(on)1(i)-333(z)-1(agl)1(\\241da,)-333(obr)1(oku)-333(im)-333(dosypu)1(je...)-333(b)-27(o)-334(to)-333(raz?)]TJ 0 -13.55 Td[(Nie)-269(s)-1(\\252u)1(c)27(h)1(a\\252)-1(a)-268(ju)1(\\273)-1(,)-269(cic)28(ho\\261\\242)-270(zno)28(wu)-269(spad)1(\\252a)-269(na)-269(\\261wiat,)-269(s\\252o)28(w)-1(i)1(ki)-269(za\\261)-1(p)1(iew)27(a\\252y)84(,)-269(a)-269(ona)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(ki)1(e)-1(b)28(y)-333(zm)-1(ar)1(t)28(w)-1(i)1(a\\252)-1(a,)-333(p)-27(o)28(wtarza)-56(j\\241c)-333(niekiej)-333(z)-334(m\\246)-1(k)56(\\241)-333(i)-333(s)-1(tr)1(ac)27(hem:)]TJ 27.879 -13.549 Td[({)-333(W)-333(c)-1(a\\252y)-333(\\261)-1(wiat)-333(u)1(c)-1(iek)56(a\\242)-1(!)-333(Na)-333(z)-1(a)28(ws)-1(ze!)-334(J)1(e)-1(zu)-333(m)-1(i)1(\\252os)-1(iern)28(y)1(!)-334(Na)-333(za)27(wsz)-1(e...)]TJ\nET\nendstream\nendobj\n1677 0 obj <<\n/Type /Page\n/Contents 1678 0 R\n/Resources 1676 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1676 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1681 0 obj <<\n/Length 6946      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(34)]TJ/F17 10.909 Tf 0 -73.325 Td[(Jes)-1(zc)-1(ze)-1(c)28(h)-366(b)29(y\\252y)-366(p)-27(o)-366(\\261)-1(wi\\241t)1(k)55(ac)28(h)-366(u)1(m)-1(a)-55(jenia)-365(c)27(ha\\252u)1(p)-366(d)1(o)-366(cna)-366(n)1(ie)-366(prze)-1(wi\\246d\\252y)84(,)-366(ki)1(e)-1(j)-365(kt\\363-)]TJ 0 -13.549 Td[(rego\\261)-334(d)1(nia)-333(ran)1(kiem)-334(na)-55(jn)1(ie)-1(sp)-27(o)-28(dziew)27(an)1(ie)-1(j)-333(zja)28(wi\\252)-333(s)-1(i)1(\\246)-334(Ro)-28(c)27(h)1(o.)]TJ 27.879 -13.549 Td[(Jeno)-264(co)-264(dop)1(iero)-264(p)-27(o)-264(ms)-1(zy)-264(i)-263(d\\252ugi)1(e)-1(j)-263(rozm)-1(o)28(wie)-264(z)-264(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-265(p)-27(ok)56(az)-1(a\\252)-263(s)-1(i\\246)-264(na)-263(w)-1(si.)]TJ -27.879 -13.55 Td[(Niewie)-1(l)1(a)-284(lu)1(dzi)-283(kr\\246ci\\252o)-284(si\\246)-284(w)-283(ob)-27(e)-1(j)1(\\261)-1(ciac)27(h)1(,)-283(\\273)-1(e)-283(to)-284(p)-27(ora)-283(b)28(y)1(\\252a)-284(osyp)28(yw)28(ani)1(a)-284(ziem)-1(n)1(iak)28(\\363)28(w,)]TJ 0 -13.549 Td[(lec)-1(z)-342(sk)28(oro)-341(s)-1(i)1(\\246)-342(roznies)-1(\\252o,)-341(j)1(ak)28(o)-342(Ro)-28(c)28(ho)-341(idzie)-342(p)1(rz)-1(ez)-342(wie\\261)-1(,)-341(wnet)-341(c)-1(i)-341(ten)-341(i)-342(\\363)28(w)-342(n)1(a)-341(drog\\246)]TJ 0 -13.549 Td[(\\261pies)-1(zy\\252)-333(w)-1(i)1(ta\\242)-334(da)28(wno)-333(ni)1(e)-334(widzian)1(e)-1(go.)]TJ 27.879 -13.549 Td[(A)-273(on)-272(za\\261)-273(s)-1(ze)-1(d)1(\\252,)-273(j)1(ak)-273(za)28(wdy)-272(na)-273(k)1(iju)-272(si\\246)-273(ws)-1(p)1(ie)-1(r)1(a)-56(j)1(\\241c)-1(,)-272(w)27(oln)1(iu)1(\\261)-1(k)28(o,)-272(z)-273(p)-28(o)-27(dni)1(e)-1(sion\\241)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\241,)-307(w)-308(t)1(e)-1(j)-307(ci)-307(s)-1(ame)-1(j)-306(k)55(ap)-27(o)-28(cie)-308(sz)-1(ar)1(e)-1(j)1(,)-308(i)-307(tak)-307(samo)-308(z)-308(r)1(\\363\\273)-1(a\\253)1(c)-1(ami)-307(na)-307(s)-1(zyi;)-307(wiater)-307(m)27(u)]TJ 0 -13.549 Td[(rozgarn)1(ia\\252)-334(siw)28(e)-334(w\\252os)-1(y)84(,)-333(a)-334(c)28(h)28(ud)1(a)-334(t)28(w)28(arz)-334(j)1(a\\261)-1(n)1(ia\\252a)-334(d)1(z)-1(i)1(w)-1(n)1(\\241)-333(dobr)1(o)-28(ci\\241)-334(i)-333(w)28(e)-1(sele)-1(m.)]TJ 27.879 -13.55 Td[(W)84(o)-28(dzi\\252)-460(o)-28(cz)-1(y)1(m)-1(a)-459(p)-28(o)-460(c)28(ha\\252u)1(pac)27(h)-459(i)-460(sadac)28(h,)-459(prze)-1(\\261mie)-1(c)28(h)28(uj)1(\\241c)-460(s)-1(i\\246)-460(r)1(ado\\261nie)-460(do)]TJ -27.879 -13.549 Td[(ws)-1(zy\\242kiego,)-258(w)-1(i)1(ta\\252)-259(si\\246)-259(z)-258(k)55(a\\273dy)1(m)-259(z)-259(osobn)1(a,)-258(\\273)-1(e)-258(na)28(w)27(et)-258(dzie)-1(ciom,)-258(c)-1(o)-258(si\\246)-259(b)28(y)1(\\252y)-259(d)1(o)-258(niego)]TJ 0 -13.549 Td[(garn)1(\\246)-1(\\252y)84(,)-324(g\\252o)28(w)-1(i)1(n)28(y)-324(p)1(rz)-1(y)1(g\\252adza\\252)-325(p)-27(o)-28(cz)-1(ciwie,)-324(za\\261)-325(d)1(o)-324(k)28(obiet)-324(pi)1(e)-1(rwsz)-1(y)-323(z)-1(agad)1(yw)27(a\\252,)-323(tak)]TJ 0 -13.549 Td[(b)28(y\\252)-333(rad)1(,)-333(\\273)-1(e)-334(wsz)-1(ystk)28(o)-333(z)-1(asta)-56(j)1(e)-334(p)-27(o)-334(d)1(a)28(w)-1(n)1(e)-1(m)28(u.)]TJ 27.879 -13.549 Td[({)-332(W)-331(C)-1(z\\246)-1(sto)-28(c)28(ho)28(wie)-332(b)28(y\\252e)-1(m)-332(n)1(a)-332(o)-28(dp)1(u\\261c)-1(i)1(e)-333({)-331(o)-28(dp)-27(o)28(w)-1(i)1(ada\\252,)-332(gd)1(y)-332(n)1(apierali)-331(c)-1(iek)56(a-)]TJ -27.879 -13.55 Td[(wie,)-334(k)56(a)-55(j)-333(s)-1(i)1(\\246)-334(to)-334(zadziew)27(a\\252)-333(pr)1(z)-1(ez)-334(t)28(yla)-333(cz)-1(asu.)]TJ 27.879 -13.549 Td[(Ale)-387(tak)-387(s)-1(i)1(\\246)-388(sz)-1(cz)-1(erze)-1(,)-387(cies)-1(zyli)-387(z)-387(jego)-387(p)-28(o)28(wrotu)1(,)-387(\\273)-1(e)-387(z)-1(ar)1(az)-388(p)-27(o)-387(dr)1(o)-28(dze)-388(j)1(\\246)-1(li)-386(m)27(u)]TJ -27.879 -13.549 Td[(rozp)-27(o)27(wiad)1(a\\242)-264(lip)-27(e)-1(c)28(kie)-264(n)1(o)27(win)29(y)83(,)-263(a)-264(ktosik)-263(ju)1(\\273)-264(i)-264(r)1(ady)-263(jaki)1(e)-1(j)1(\\261)-264(z)-1(asi\\246ga)-1(\\252,)-263(za\\261)-264(dru)1(gi)-264(c)28(hcia\\252)]TJ 0 -13.549 Td[(si\\246)-278(w)-1(y)1(\\273)-1(ali)1(\\242)-1(,)-277(o)-28(dw)28(o)-28(d)1(z)-1(\\241c)-278(go)-278(n)1(a)-278(s)-1(t)1(ron\\246)-278(i)-277(s)-1(u)1(pl\\241c)-278(p)1(rze)-1(d)-277(ni)1(m)-279(t)1(urb)1(ac)-1(j)1(e)-1(,)-277(kiejb)28(y)-277(ten)-278(gr)1(os)-1(z)]TJ 0 -13.549 Td[(na)-333(ostatni\\241)-333(p)-27(otrze)-1(b)-27(\\246)-334(sc)27(h)1(o)27(w)28(an)28(y)84(.)]TJ 27.879 -13.55 Td[({)-333(Do)-334(cna)-333(u)1(s)-1(ta\\252em)-1(,)-333(d)1(z)-1(ie\\253)-333(jak)1(i)-333(o)-28(dp)-27(o)-28(cz)-1(n)1(\\246)-334({)-333(t\\252umac)-1(zy\\252)-334(si\\246)-334(zb)28(yw)28(a)-56(j)1(\\241c)-1(o.)]TJ 0 -13.549 Td[(Na)-333(prze\\261)-1(cigi)-333(j\\246li)-333(go)-334(zapr)1(as)-1(za\\242)-334(d)1(o)-334(sw)27(oi)1(c)27(h)-333(c)27(h)1(a\\252up)1(.)]TJ 0 -13.549 Td[({)-332(Na)-332(t)28(ymcz)-1(ase)-1(m)-332(zakw)27(ateru)1(j\\246)-332(si\\246)-333(u)-331(Macieja,)-332(j)1(u\\273e)-1(m)-332(to)-331(Hance)-333(p)1(rzy)28(obiec)-1(a\\252;)]TJ -27.879 -13.549 Td[(a)-333(przyj)1(m)-1(i)1(e)-334(m)-1(n)1(ie)-334(kt)1(o)-334(p)-27(otem)-1(,)-333(d)1(o)-334(tego)-333(przystan\\246)-334(n)1(a)-334(d)1(\\252u\\273e)-1(j)1(.)]TJ 27.879 -13.549 Td[(I)-333(\\273)-1(w)28(a)27(w)28(o)-333(ruszy\\252)-334(d)1(o)-334(Bory)1(n\\363)28(w.)]TJ 0 -13.55 Td[(Ju)1(\\261)-1(ci,)-392(co)-393(Han)1(k)56(a)-392(przyj)1(\\246)-1(\\252a)-392(go)-392(rad)1(o\\261)-1(n)1(ie)-393(i)-392(z)-392(c)-1(a\\252ego)-392(s)-1(erca)-392(ugasz)-1(cz)-1(a\\242)-392(c)27(h)1(c)-1(ia\\252a,)]TJ -27.879 -13.549 Td[(ale)-334(sk)28(oro)-333(jeno)-333(z\\252)-1(o\\273y\\252)-333(torb)28(y)-333(i)-333(o)-28(d)1(z)-1(i)1(pn)1(\\241\\252)-334(ni)1(e)-1(co,)-333(do)-333(s)-1(tar)1(e)-1(go)-333(si\\246)-334(wybr)1(a\\252.)]TJ 27.879 -13.549 Td[({)-339(A)-339(ob)1(ac)-1(zc)-1(i)1(e)-340(i)1(c)27(h,)-338(le\\273)-1(\\241)-339(w)-339(sadzie,)-339(\\273e)-340(to)-338(gor\\241c)-339(w)-339(c)27(ha\\252u)1(pie.)-339(M)1(le)-1(k)56(a)-339(w)28(am)-1(a)-338(b)-28(ez)]TJ -27.879 -13.549 Td[(ten)-333(c)-1(zas)-334(u)28(w)28(arz\\246)-1(,)-333(a)-333(m)-1(o\\273e)-334(b)28(y)1(\\261)-1(cie)-334(i)-333(j)1(a)-56(jk)28(\\363)28(w)-333(z)-1(j)1(e)-1(d)1(li?)-334(co?)]TJ 27.879 -13.549 Td[(Ale)-423(Ro)-28(c)27(h)1(o)-423(ju)1(\\273)-423(b)28(y\\252)-423(w)-423(sadzie)-424(i)-422(c)27(h)28(y)1(\\252kie)-1(m)-423(p)1(rze)-1(b)1(ie)-1(r)1(a\\252)-423(s)-1(i)1(\\246)-424(p)-27(o)-28(d)-422(ga\\252\\246)-1(ziami)-423(do)]TJ -27.879 -13.55 Td[(c)27(h)1(orego,)-349(kt\\363ren)-349(le\\273)-1(a\\252)-349(w)-350(p)-27(\\363\\252k)28(os)-1(zku)1(,)-349(w)-1(y)1(m)-1(osz)-1(cz)-1(on)29(ym)-350(p)1(ierz)-1(y)1(n\\241,)-349(i)-349(k)28(o\\273)-1(u)1(c)27(h)1(e)-1(m)-349(przy-)]TJ 0 -13.549 Td[(okr)1(yt)28(y)83(.)-409(\\212apa,)-409(zw)-1(i)1(ni\\246t)28(y)-410(w)-409(k\\252\\246)-1(b)-27(ek,)-410(w)28(aro)28(w)28(a\\252)-410(m)27(u)-409(p)1(rzy)-410(n)1(ogac)27(h)1(,)-410(a)-409(Witk)28(\\363)28(w)-410(b)-27(o)-28(ciek)]TJ 0 -13.549 Td[(ga)-56(j)1(da\\252)-333(s)-1(i)1(\\246)-334(p)-28(o)-27(c)-1(iesz)-1(n)1(ie)-334(mi\\246)-1(d)1(z)-1(y)-333(d)1(rze)-1(w)28(am)-1(i)-333(k)1(ie)-1(b)28(y)-333(n)1(a)-334(stra\\273y)84(.)]TJ 358.232 -29.888 Td[(525)]TJ\nET\nendstream\nendobj\n1680 0 obj <<\n/Type /Page\n/Contents 1681 0 R\n/Resources 1679 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1679 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1684 0 obj <<\n/Length 8513      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(526)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Sad)-473(b)28(y)1(\\252)-474(s)-1(tar)1(y)-474(i)-474(mro)-27(c)-1(zn)28(y;)-473(rozros)-1(\\252e)-474(d)1(rz)-1(ewin)28(y)-473(tak)-474(p)1(rz)-1(y)1(s)-1(\\252an)1(ia\\252y)-474(ni)1(e)-1(b)-27(o,)-474(\\273e)]TJ -27.879 -13.549 Td[(do\\252em)-347(na)-347(m)28(ur)1(a)27(w)28(ac)27(h)-346(jeno)-347(n)1(iek)55(a)-55(j\\261)-347(gme)-1(ra\\252y)-346(s)-1(i\\246)-347(s\\252onec)-1(zne)-347(pr)1(\\246)-1(gi,)-346(p)-28(o)-27(dob)1(ne)-347(z)-1(\\252ot)28(ym)]TJ 0 -13.549 Td[(pa)-55(j\\241k)28(om.)]TJ 27.879 -13.549 Td[(Maciej)-370(wz)-1(n)1(ak)-370(le\\273a\\252)-1(.)-369(Roz)-1(ru)1(c)27(h)1(ane)-370(ga\\252\\246)-1(zie)-371(z)-370(cic)27(h)28(y)1(m)-371(p)-27(osz)-1(u)1(m)-1(em)-371(c)28(h)28(wia\\252y)-370(si\\246)]TJ -27.879 -13.549 Td[(nad)-302(nim)-303(p\\252ac)28(h)28(t\\241)-303(c)-1(ieni)1(\\363)27(w,)-303(\\273e)-304(j)1(e)-1(n)1(o)-303(c)-1(zas)-1(em)-1(,)-303(k)1(ie)-1(j)-302(j\\241)-303(wiater)-303(oz)-1(d)1(ar\\252,)-303(s\\252o\\253c)-1(e)-303(c)27(h)1(lusta\\252o)]TJ 0 -13.55 Td[(m)27(u)-332(w)-334(o)-28(cz)-1(y)-333(i)-333(coraz)-334(k)56(a)28(w)27(a\\252)-333(m)-1(o)-27(drego)-333(nieba)-333(si\\246)-334(o)-28(d)1(s)-1(\\252an)1(ia\\252.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(przysiad\\252.)]TJ 0 -13.549 Td[(Drzew)27(a)-294(s)-1(zumia\\252y)84(,)-294(c)-1(zas)-1(em)-295(pi)1(e)-1(s)-295(w)28(ark)1(n\\241\\252)-294(na)-294(m)27(u)1(c)27(h)28(y)84(,)-294(a)-295(n)1(ie)-1(k)1(ie)-1(d)1(y)-294(roz\\261)-1(wiegota-)]TJ -27.879 -13.549 Td[(ne)-333(jask)28(\\363\\252ki)-333(\\261)-1(mign)1(\\246)-1(\\252y)-333(ws)-1(kr)1(o\\261)-334(pn)1(i)-333(c)-1(zarn)28(y)1(c)27(h)-333(na)-333(p)-27(ola)-333(z)-1(ielon)1(e)-334(i)-333(rozk)28(o\\252)-1(y)1(s)-1(an)1(e)-1(.)]TJ 27.879 -13.549 Td[(Chor)1(y)-334(n)1(araz)-334(zwr\\363)-28(ci\\252)-333(s)-1(i\\246)-333(do)-333(niego.)]TJ 0 -13.549 Td[({)-333(P)28(oz)-1(n)1(a)-56(j)1(e)-1(cie)-334(mni)1(e)-1(,)-333(Macieju)1(,)-334(co?)-334(P)29(oz)-1(n)1(a)-56(j)1(e)-1(cie)-1(?)]TJ 0 -13.55 Td[(Boryn)1(ie)-424(leciu\\261ki)-423(pr)1(z)-1(y\\261mie)-1(c)28(h)-423(wion\\241\\252)-423(p)-27(o)-424(t)28(w)28(arzy)83(,)-423(o)-27(c)-1(zy)-423(s)-1(i\\246)-423(z)-1(atr)1(z)-1(epa\\252y)-423(i)-423(j)1(\\241\\252)]TJ -27.879 -13.549 Td[(ru)1(c)27(h)1(a\\242)-334(s)-1(i)1(n)28(ymi)-333(w)27(argami,)-333(ale)-333(g\\252)-1(osu)-333(n)1(ie)-334(dob)29(y\\252.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(P)28(an)-333(Jez)-1(u)1(s)-334(pr)1(z)-1(em)-1(i)1(e)-1(n)1(i,)-333(to)-334(mo\\273e)-1(cie)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(w)-1(y)1(z)-1(d)1(ro)28(w)-1(i)1(e)-1(\\242.)]TJ 0 -13.549 Td[(Sn)1(ad\\271)-398(r)1(oz)-1(u)1(m)-1(i)1(a\\252,)-398(gd)1(y\\273)-398(p)-27(otrz\\241s)-1(\\252)-397(g\\252o)28(w)27(\\241)-397(i)-398(j)1(akb)28(y)-397(n)1(ie)-1(c)28(h\\246tnie)-397(o)-28(dwr\\363)-27(c)-1(i\\252)-397(s)-1(i)1(\\246)-398(o)-28(d)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go.)-330(Zapatrzy\\252)-331(si\\246)-331(zno)28(wu)-331(w)-331(r)1(oz)-1(k)28(o\\252ysane)-331(ga\\252\\246z)-1(ie)-331(i)-330(w)-331(te)-331(s)-1(\\252on)1(e)-1(cz)-1(n)1(e)-331(bry)1(z)-1(gi,)-330(z)-1(al)1(e)-1(-)]TJ 0 -13.55 Td[(w)28(a)-56(j\\241ce)-334(m)28(u)-333(o)-28(cz)-1(y)-333(raz)-333(p)-28(o)-333(raz.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(jeno)-333(w)27(es)-1(tc)28(hn)1(\\241\\252,)-334(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-334(go)-333(i)-333(o)-28(d)1(s)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(co)-333(o)-56(jcu)-333(j)1(akb)28(y)-333(ju)1(\\273)-334(lepiej?)-333({)-334(p)29(yta\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[(D\\252ugo)-333(co\\261)-334(miark)28(o)28(w)27(a\\252,)-333(a\\273)-334(r)1(z)-1(ek\\252)-333(c)-1(ic)28(h)28(ym,)-333(w)27(a\\273n)28(ym)-333(g\\252)-1(osem)-1(:)]TJ 0 -13.549 Td[({)-233(T)83(o)-28(\\242)-234(i)-233(lam)-1(p)1(a)-234(p)1(rze)-1(d)-233(zaga\\261)-1(n)1(i\\246)-1(ciem)-234(\\273yws)-1(zym)-234(p\\252omieniem)-234(wystrze)-1(li)-233(n)1(a)-234(ostat-)]TJ -27.879 -13.55 Td[(ku)1(:)-403(Mni)1(e)-404(s)-1(i)1(\\246)-404(z)-1(d)1(a)-56(j)1(e)-1(,)-403(co)-404(M)1(ac)-1(iej)-403(ju)1(\\273)-404(do)-27(c)27(ho)-27(dzi...)-403(A\\273)-404(mi)-403(na)28(w)28(e)-1(t)-403(dziwno,)-403(\\273e)-404(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(\\273yje;)-333(przec)-1(ie\\273)-334(n)1(a)-334(wi\\363r)-333(wyse)-1(c)28(h\\252...)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(j)1(e)-1(\\261\\242)-334(ni)1(c)-334(ni)1(e)-334(c)27(h)1(c)-1(e,)-333(na)28(w)27(et)-333(m)-1(lek)56(a)-334(n)1(ie)-334(za)28(w)-1(sze)-334(p)-28(op)1(ij)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Musicie)-334(b)28(y)1(\\242)-334(goto)28(w)27(e;)-333(\\273)-1(e)-334(l)1(ada)-333(dzie\\253)-333(s)-1(k)28(o\\253)1(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-306(P)28(ewnie,)-306(\\273e)-307(tak)1(,)-306(m\\363)-56(j)-306(Bo\\273e)-1(,)-305(p)-28(ewnie.)-306(T)83(o)-306(sam)-1(o)-306(w)28(cz)-1(ora)-55(j)-306(m\\363)28(wi\\252)-306(Jam)27(b)1(ro\\273y)83(,)-306(a)]TJ -27.879 -13.55 Td[(na)28(w)28(e)-1(t)-333(rad)1(z)-1(i)1(\\252,)-334(\\273eb)28(y)-333(ju\\273)-333(nie)-333(c)-1(ze)-1(k)56(a\\242)-334(i)-333(tr)1(umn\\246)-334(ob)1(s)-1(tal)1(o)27(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-280(Ka\\273c)-1(i)1(e)-281(zrobi)1(\\242)-1(,)-280(n)1(ie)-280(b)-28(\\246dzie)-280(d\\252ugo)-280(cz)-1(ek)56(a\\252a,)-280(nie...)-279(Jak)-280(du)1(s)-1(zy)-280(p)1(ilno)-280(ze)-280(\\261)-1(wiata,)]TJ -27.879 -13.549 Td[(ni)1(c)-1(zym)-405(j)1(e)-1(j)-404(n)1(ie)-405(p)-27(o)28(w)-1(strzyma,)-404(na)28(w)28(e)-1(t)-404(p\\252ak)56(ani)1(e)-1(m,)-404(b)-28(ob)29(y)-405(j)1(u\\273)-404(p)-28(on)1(ie)-1(k)1(t\\363re)-405(ca\\252e)-405(wie)-1(k)1(i)]TJ 0 -13.549 Td[(osta)27(w)28(a\\252y)-493(mi\\246dzy)-493(nami)-492({)-493(m)-1(\\363)28(wi\\252)-493(sm)27(u)1(tnie,)-493(zabiera)-55(j\\241c)-493(si\\246)-494(d)1(o)-493(mle)-1(k)56(a,)-492(kt\\363re)-493(m)27(u)]TJ 0 -13.549 Td[(nar)1(z)-1(\\241d)1(z)-1(i)1(\\252)-1(a,)-333(i)-333(p)-27(opij)1(a)-56(j)1(\\241c)-334(z)-334(w)28(olna,)-333(wyp)29(yt)28(yw)27(a\\252,)-333(co)-334(si\\246)-334(tu)-332(w)27(e)-334(wsi)-333(dzia\\252o.)]TJ 27.879 -13.55 Td[(P)28(o)28(wtarza\\252a,)-290(c)-1(o)-290(j)1(u\\273)-290(b)28(y\\252)-290(s\\252ysz)-1(a\\252)-290(p)-27(o)-290(dro)-27(dze)-291(o)-28(d)-289(dr)1(ugic)28(h,)-290(i)-289(o)-290(s)-1(w)28(oic)27(h)-289(k\\252op)-27(otac)27(h)]TJ -27.879 -13.549 Td[(j\\246\\252a)-333(s)-1(i\\246)-333(s)-1(kw)28(apn)1(ie)-334(a)-333(s)-1(ze)-1(r)1(ok)28(o)-334(r)1(oz)-1(w)28(o)-28(d)1(z)-1(i\\242.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)-333(t)1(o)-334(J\\363zk)56(a?)-334({)-333(przerw)27(a\\252)-333(jej)-333(n)1(ie)-1(cierpl)1(iwie)-1(.)]TJ 0 -13.549 Td[({)-465(W)-464(p)-28(olu)1(,)-465(zie)-1(mn)1(iaki)-465(osyp)1(uje)-465(z)-465(k)28(om)-1(or)1(nicami)-465(i)-465(Jagu)1(s)-1(t)28(yn)1(k)56(\\241,)-465(z)-1(a\\261)-465(Pi)1(e)-1(tr)1(e)-1(k)]TJ -27.879 -13.549 Td[(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252)-334(d)1(o)-333(las)-1(u)1(:)-333(z)-1(w)28(oz)-1(i)-333(S)1(tac)27(ho)28(wi)-333(dr)1(z)-1(ew)27(o)-333(na)-333(c)27(h)1(a\\252up)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(u)1(du)1(je)-334(si\\246)-334(to?)]TJ 0 -13.55 Td[({)-333(Przec)-1(iek)-333(pan)-333(Jacek)-334(d)1(a\\252)-334(m)28(u)-333(dzies)-1(i\\246\\242)-334(c)28(ho)-56(j)1(ar\\363)28(w.)]TJ 0 -13.549 Td[({)-333(Da\\252)-334(m)28(u?)-333(P)28(o)28(w)-1(i)1(adali)-333(mi)-333(c)-1(o\\261)-334(o)-333(t)28(ym,)-333(ale)-334(n)1(ie)-334(u)28(wierzy\\252e)-1(m.)]TJ 0 -13.549 Td[({)-351(Bo)-350(to)-351(i)-350(nie)-351(d)1(o)-351(wiar)1(y!)-351(Zr)1(az)-1(u)-350(n)1(ikto)-351(n)1(ie)-351(p)-27(o)28(w)-1(i)1(e)-1(rzy\\252.)-350(Obi)1(e)-1(ca\\252,)-351(ale)-351(p)1(rze)-1(ciec)27(h)]TJ -27.879 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-385(ob)1(ie)-1(cuj)1(e)-1(.)-385(Ob)1(iec)-1(an)1(k)55(a)-385(c)-1(acank)56(a,)-385(a)-386(g\\252u)1(piem)27(u)-385(r)1(ado\\261\\242)-386({)-386(p)-27(o)28(wie)-1(d)1(a)-56(j)1(\\241.)-386(A)-385(pan)]TJ 0 -13.549 Td[(Jace)-1(k)-372(da\\252)-372(Stac)28(ho)28(wi)-373(li)1(s)-1(t)-372(i)-373(k)56(aza\\252)-373(m)27(u)-372(z)-373(n)1(im)-373(i\\261\\242)-373(do)-372(dziedzic)-1(a.)-372(Na)28(w)27(et)-373(W)84(eronk)56(a)-372(s)-1(i\\246)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\252a,)-314(b)28(y)-314(sz)-1(ed\\252,)-314(b)-27(o)-314(p)-27(o)27(wiad)1(a,)-314(co)-314(b)-28(\\246dzie)-315(b)1(ut)28(y)-314(d)1(ar\\252)-314(na)-314(d)1(armo?...)-314(j)1(e)-1(sz)-1(cz)-1(e)-314(si\\246)-315(z)]TJ 0 -13.549 Td[(ni)1(e)-1(go)-377(wy\\261m)-1(iej\\241,)-377(\\273e)-378(za)28(w)-1(i)1(e)-1(rzy\\252)-377(g\\252up)1(ie)-1(m)28(u..)1(.)-377(Ale)-378(S)1(tac)27(h)1(o)-378(si\\246)-378(u)1(par)1(\\252)-378(i)-377(p)-27(os)-1(zed\\252.)-377(I)-377(p)-28(o-)]TJ\nET\nendstream\nendobj\n1683 0 obj <<\n/Type /Page\n/Contents 1684 0 R\n/Resources 1682 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1682 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1687 0 obj <<\n/Length 8822      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(527)]TJ -358.232 -35.866 Td[(wiada,)-291(\\273)-1(e)-292(m)-1(o\\273e)-293(w)-292(p)1(ac)-1(ierz)-292(p)-28(o)-292(o)-27(dd)1(aniu)-291(listu)-292(d)1(z)-1(iedzic)-292(go)-292(k)55(aza\\252)-292(z)-1(a)28(w)28(o\\252a\\242)-293(n)1(a)-292(p)-28(ok)28(o)-55(je,)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(z\\246s)-1(to)28(w)28(a)-1(\\252)-393(gorz)-1(a\\252k)56(\\241)-394(i)-393(rze)-1(k\\252:)-393(\\377)-56(P)1(rz)-1(y)1(je\\273)-1(d)1(\\273)-1(a)-55(j)-394(z)-394(w)28(oz)-1(ami,)-394(t)1(o)-394(c)-1(i)-393(b)-28(or)1(o)28(w)-1(y)-393(wyc)-1(ec)27(h)28(u)1(je)]TJ 0 -13.549 Td[(dzies)-1(i)1(\\246)-1(\\242)-437(s)-1(ztuk)-436(bud)1(ul)1(c)-1(u)1(...\")-437(Da\\252)-437(m)28(u)-437(K\\252\\241b)-436(k)28(oni,)-436(da\\252)-437(so\\252)-1(t)28(y)1(s)-1(,)-437(d)1(a\\252am)-438(i)-436(ja)-437(P)1(ie)-1(tr)1(k)56(a.)]TJ 0 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-425(ju)1(\\273)-425(na)-424(n)1(ic)27(h)-424(cz)-1(ek)56(a\\252)-425(w)-424(p)-27(or\\246)-1(b)1(ie)-425(i)-424(zaraz)-425(sam)-425(wyb)1(ra\\252)-424(c)-1(o)-424(na)-55(j\\261m)-1(i)1(gle)-1(j)1(s)-1(ze)-425(z)]TJ 0 -13.549 Td[(t)28(yc)27(h)1(,)-436(co)-436(to)-436(je)-436(z)-1(im\\241)-436(c)-1(i)1(\\246)-1(li)-435(la)-436(\\233yd\\363)28(w.)-436(No)-436(i)-436(zw)27(o\\273\\241,)-436(b)-27(o)-436(dob)1(rz)-1(e)-436(trzyd)1(z)-1(ie\\261)-1(ci)-436(w)28(oz)-1(\\363)28(w)]TJ 0 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-437(z)-438(ga\\252\\246)-1(ziami.)-437(Stac)27(h)1(o)-437(galan)28(t\\241)-437(c)27(ha\\252u)1(p)-28(\\246)-437(s)-1(e)-438(wysz)-1(y)1(kuj)1(e)-1(!)-437(Nie)-438(p)-27(otrza)-437(m)-1(\\363)28(wi\\242,)]TJ 0 -13.549 Td[(jak)-348(p)1(an)28(u)-348(Jac)27(k)28(o)28(wi)-349(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)27(a\\252)-348(i)-349(p)1(rze)-1(p)1(rasz)-1(a\\252;)-348(b)-28(o)-348(p)-27(o)-349(pr)1(a)28(w)-1(d)1(z)-1(i)1(e)-349(w)-1(sz)-1(y)1(s)-1(cy)-349(go)-348(mie)-1(l)1(i)-349(za)]TJ 0 -13.549 Td[(dziad)1(ak)55(a)-396(i)-396(za)-397(g\\252u)1(pa)28(w)28(e)-1(go,)-396(\\273e)-397(to)-396(nie)-396(wiada,)-396(z)-396(c)-1(ze)-1(go)-396(\\273yje,)-396(i)-396(p)-28(o)-27(d)-396(\\014gu)1(rami,)-396(to)-396(w)27(e)]TJ 0 -13.549 Td[(zb)-28(o\\273ac)27(h)-371(gryw)28(a)-372(n)1(a)-372(skrzyp)1(ic)-1(y)84(,)-371(a)-372(cz)-1(ase)-1(m)-372(t)1(ak)-372(b)-27(e)-1(l)1(e)-372(c)-1(o)-371(i)-372(n)1(ie)-372(do)-371(s)-1(k)1(\\252)-1(ad)1(u)-371(p)-28(o)28(wie,)-372(j)1(ak)28(o)]TJ 0 -13.549 Td[(ten)-297(ni)1(e)-1(sp)-28(e\\252na)-297(rozum)28(u..)1(.)-297(A)-297(on)-297(taki)-297(p)1(an,)-297(\\273e)-298(m)28(u)-297(sam)-298(dziedzic)-298(p)-27(os\\252usz)-1(n)28(y!)1(...)-297(Kt)1(o)-298(b)29(y)]TJ 0 -13.549 Td[(to)-333(pr)1(z)-1(\\363)-28(d)1(z)-1(i)-333(d)1(a\\252)-334(wiar\\246?...)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(p)1(atrzc)-1(ie)-333(na)-333(c)-1(z\\252o)27(wiek)56(a,)-333(jeno)-333(na)-333(jego)-334(u)1(c)-1(zyn)1(ki.)]TJ 0 -13.549 Td[({)-450(Ale)-451(da\\242)-450(t)27(y)1(lac)27(h)1(na)-450(drze)-1(w)28(a,)-450(kt\\363re,)-450(jak)-450(Mat)1(e)-1(usz)-451(r)1(ac)27(h)28(u)1(je)-1(,)-450(w)28(arto)-450(z)-451(t)28(ysi\\241c)]TJ -27.879 -13.549 Td[(z\\252)-1(ot)28(y)1(c)27(h,)-333(i)-333(to)-333(jeno)-333(z)-1(a)-333(B\\363g)-334(zap\\252a\\242,)-333(te)-1(go)-333(j)1(e)-1(sz)-1(cz)-1(e)-334(n)1(ie)-334(b)29(yw)27(a\\252o!)]TJ 27.879 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(adali)1(,)-334(co)-333(z)-1(a)-333(to)-333(s)-1(tar)1(\\241)-334(c)28(ha\\252up)-27(\\246)-334(b)1(ie)-1(r)1(z)-1(e)-333(w)-334(do\\273yw)28(o)-28(c)-1(i)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-492(Hale,)-492(t)28(yle)-492(w)27(art)1(a)-492(c)-1(o)-492(ten)-492(trep)-492(r)1(oz)-1(\\252u)1(pan)28(y!)-491(Ju\\273e)-1(\\261w)27(a)-492(n)1(a)27(w)28(et)-492(m)27(y\\261leli,)-492(cz)-1(y)]TJ -27.879 -13.55 Td[(w)-395(tej)-394(dob)1(ro)-28(ci)-395(n)1(ie)-395(m)-1(a)-394(jak)1(ie)-1(go)-394(p)-28(o)-27(dej\\261c)-1(ia,)-394(ja\\273e)-395(W)83(eron)1(k)56(a)-395(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(a)-395(s)-1(i)1(\\246)-395(redzi\\252a.)]TJ 0 -13.549 Td[(Sk)1(rzyc)-1(za\\252)-334(j)1(\\241,)-333(\\273)-1(e)-334(g\\252u)1(pia.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(i)-333(pr)1(a)27(wd)1(a.)-333(Da)-56(j\\241)-333({)-333(to)-333(bra\\242)-333(i)-334(Bogu)-333(za)-334(\\252ask)28(\\246)-334(dzi\\246k)28(o)28(w)27(a\\242.)]TJ 0 -13.549 Td[({)-380(P)1(rz)-1(ecie)-1(k)-379(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-380(n)1(iez)-1(wycz)-1(a)-55(jn)28(y)-379(br)1(a\\242)-381(d)1(armo)-28(c)27(h)28(y)-379(i)-380(j)1(e)-1(sz)-1(cz)-1(ec)27(h)-379(o)-28(d)-379(dziedzi-)]TJ -27.879 -13.549 Td[(c\\363)27(w!)-371(S)1(\\252ys)-1(zane)-371(to)-371(rzec)-1(zy!)-371(Jak\\273e,)-371(kiej)-371(to)-371(c)28(h)28(to)-371(c)27(h)1(\\252opu)-370(da\\252)-371(co)-371(z)-372(d)1(obro)-27(c)-1(i?)-371(\\233eb)28(y)-371(p)-27(o)]TJ 0 -13.55 Td[(na)-55(jmni)1(e)-1(j)1(s)-1(z\\241)-400(p)-28(or)1(e)-1(d)1(\\246)-401(i)1(\\261)-1(\\242,)-400(a)-400(i)-400(to)-399(na)-400(r\\246c)-1(e)-400(p)1(atrz\\241,)-400(z)-1(a\\261)-400(w)-400(ur)1(z)-1(\\246dzie)-400(s)-1(i\\246)-400(pr)1(z)-1(ez)-401(gr)1(os)-1(za)]TJ 0 -13.549 Td[(ni)1(e)-306(p)-27(ok)55(a\\273,)-305(b)-27(o)-306(ci)-305(ju)1(tro)-305(pr)1(z)-1(yj)1(\\261)-1(\\242)-305(k)55(a\\273\\241)-305(alb)-27(o)-306(za)-305(niedziel\\246)-1(.)1(..)-305(Przez)-306(t\\246)-306(An)28(t)1(k)28(o)27(w)28(\\241)-305(s)-1(p)1(ra)28(w)27(\\246)]TJ 0 -13.549 Td[(dob)1(rze)-423(p)-28(ozna\\252am,)-423(j)1(akie)-423(to)-422(jes)-1(t)-422(urz\\241dzenie)-423(n)1(a)-423(\\261)-1(wiecie)-423(i)-423(n)1(ie)-1(ma\\252o)-423(j)1(u\\273)-423(p)1(ie)-1(n)1(i\\246dzy)]TJ 0 -13.549 Td[(wyni)1(e)-1(s\\252am)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(c)-1(o\\261c)-1(ie)-333(m)-1(i)-333(An)28(tk)56(a)-333(ws)-1(p)-27(omnieli.)-333(Wst\\246)-1(p)-27(o)28(w)27(a\\252em)-334(d)1(o)-334(miasta.)]TJ 0 -13.55 Td[({)-333(T)83(o\\261)-1(cie)-334(go)-333(mo\\273)-1(e)-334(wid)1(z)-1(i)1(e)-1(li)1(?)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)28(y)1(\\252)-1(o)-333(cz)-1(asu.)]TJ 0 -13.549 Td[({)-333(Je)-1(\\271dzi\\252am)-334(n)1(ie)-1(d)1(a)28(w)-1(n)1(o,)-333(nie)-333(pu)1(\\261)-1(cili)-333(me)-334(do)-333(ni)1(e)-1(go.)-333(B\\363g)-334(wie,)-333(kiej)-333(go)-333(obacz)-1(\\246.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-334(i)-333(pr\\246dzej,)-333(ni\\271li)-333(miark)1(ujecie)-334({)-333(rze)-1(k\\252)-333(z)-334(u\\261mie)-1(c)28(hem)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(c)-1(o)-333(wy)-333(p)-28(o)28(wiadacie!)]TJ 0 -13.55 Td[({)-481(Pra)28(wd\\246!)-481(W)-481(g\\252\\363)28(w)-1(n)29(ym)-482(u)1(rz\\246)-1(d)1(z)-1(ie)-481(p)-28(o)28(wiedz)-1(i)1(e)-1(li)-481(mi,)-481(\\273e)-482(An)28(tk)56(a)-481(m)-1(og\\241)-481(p)1(rz)-1(ed)]TJ -27.879 -13.549 Td[(spra)28(w)28(\\241)-457(pu\\261ci\\242)-458(n)1(a)-457(w)27(ol\\246,)-457(j)1(e)-1(\\261li)-457(kto)-457(p)-27(or\\246c)-1(zy)-457(za)-458(n)1(im,)-457(c)-1(o)-457(n)1(ie)-457(ucie)-1(k)1(nie,)-457(alb)-27(o)-457(da)-457(w)]TJ 0 -13.549 Td[(zas)-1(ta)28(w)-334(s\\241do)28(wi)-333(pi\\246\\242s)-1(et)-334(r)1(ub)1(li.)]TJ 27.879 -13.549 Td[({)-369(Ryc)28(h)28(t)28(yk)-368(p)-28(o)-27(dobn)1(ie)-369(i)-369(k)28(o)28(w)28(al)-369(m\\363)28(wi\\252!)-369({)-368(j\\246\\252)-1(a)-368(z)-1(ar)1(az)-370(op)-27(o)28(wiada\\242)-369(j)1(e)-1(go)-368(rady)-368(c)-1(o)]TJ -27.879 -13.549 Td[(do)-333(s\\252o)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-293(Rada)-293(d)1(obra,)-293(al)1(e)-294(\\273e)-294(to)-293(M)1(ic)27(h)1(a)-1(\\252o)28(w)28(a,)-293(niepr)1(z)-1(ez)-1(p)1(iec)-1(zna:)-293(ma)-293(on)-293(tu)-292(c)-1(o\\261)-293(w)-294(t)28(y)1(m)-1(,)]TJ -27.879 -13.55 Td[(ma...)-271(Ze)-271(sprze)-1(d)1(ani)1(e)-1(m)-271(s)-1(i)1(\\246)-272(n)1(ie)-271(\\261)-1(p)1(ie)-1(szy\\242)-1(:)-270(z)-272(gr)1(on)28(tu)-270(w)-1(y)1(je\\273)-1(d)1(\\273)-1(a)-271(si\\246)-271(w)-271(ogie)-1(r)1(y)83(,)-270(a)-271(p)-28(o)28(wraca)]TJ 0 -13.549 Td[(rak)1(ie)-1(m,)-271(n)1(a)-271(cz)-1(w)28(orak)56(ac)27(h)1(...)-270(C)-1(o)-270(insz)-1(ego)-271(tr)1(z)-1(eba)-271(wyn)1(ale\\271)-1(\\242...)-270(Mo\\273e)-272(b)29(y)-271(kto)-270(p)-28(or)1(\\246)-1(cz)-1(y)1(\\252)-1(?..)1(.)]TJ 0 -13.549 Td[(pr)1(z)-1(ewie)-1(d)1(z)-1(i)1(e)-1(\\242)-334(si\\246)-334(p)-27(otrza)-333(m)-1(i)1(\\246)-1(d)1(z)-1(y)-333(lu)1(d\\271m)-1(i)1(...)-333(Ju\\261c)-1(i)1(,)-333(\\273)-1(eb)28(y)-333(pieni)1(\\241dze)-334(b)28(y\\252y)84(...)]TJ 27.879 -13.549 Td[({)-363(Mo\\273e)-363(b)28(y)-363(si\\246)-364(i)-362(nalaz\\252y)-363({)-363(sz)-1(epn)1(\\246)-1(\\252a)-363(cis)-1(ze)-1(j)1(.)-363({)-363(Mam)-363(cos)-1(i)1(k)-363(goto)28(w)27(ego)-363(grosz)-1(a,)]TJ -27.879 -13.549 Td[(jeno)-333(zrac)27(h)1(o)28(w)27(a\\242)-334(n)1(ie)-334(p)-27(oredzi\\252am)-1(,)-333(al)1(e)-334(m)-1(o\\273e)-334(b)28(y)-333(c)28(h)28(w)27(aci\\252o...)]TJ 27.879 -13.55 Td[({)-333(P)28(ok)56(a\\273)-1(cie;)-334(t)1(o)-334(r)1(a)-1(zem)-334(pr)1(z)-1(elicz)-1(y)1(m)27(y)84(.)]TJ 0 -13.549 Td[(Zni)1(kn\\246\\252a)-240(gdzie)-1(sik)-240(w)-240(ob)-27(e)-1(j)1(\\261)-1(ciu)1(,)-240(a)-240(p)-28(o)28(wr\\363)-28(ciwsz)-1(y)-240(p)-27(o)-240(jak)1(im\\261)-241(p)1(a)-1(cierzu)-240(p)1(rz)-1(y)1(w)27(ar)1(\\252)-1(a)]TJ\nET\nendstream\nendobj\n1686 0 obj <<\n/Type /Page\n/Contents 1687 0 R\n/Resources 1685 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1685 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1690 0 obj <<\n/Length 8729      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(528)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(dr)1(z)-1(wi)-333(na)-333(zas)-1(u)28(w)28(\\246)-334(i)-333(p)-27(o\\252o\\273)-1(y\\252a)-333(m)27(u)-333(w)28(\\246z)-1(e\\252e)-1(k)-333(na)-333(k)28(olan)1(a.)]TJ 27.879 -13.549 Td[(By\\252y)-343(w)-342(nim)-343(p)1(apiero)28(w)28(e)-343(pieni\\241d)1(z)-1(e,)-342(b)28(y\\252y)-342(i)-343(srebrn)1(e)-343(na)28(w)28(e)-1(t)-342(b)28(y\\252o)-343(p)1(ar\\246)-343(z\\252ot)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(i)-333(s)-1(ze\\261)-1(\\242)-334(b)1(icz)-1(\\363)28(w)-334(k)28(or)1(ali.)]TJ 27.879 -13.549 Td[({)-341(T)83(o)-342(p)-27(o)-341(m)-1(atce,)-342(d)1(a\\252)-342(j)1(e)-342(Jagni)1(e)-1(,)-341(a)-341(p)-28(otem)-342(snad)1(\\271)-342(o)-28(d)1(e)-1(b)1(ra\\252)-342({)-341(sz)-1(epn)1(\\246)-1(\\252a)-341(przyku)1(-)]TJ -27.879 -13.549 Td[(ca)-56(j\\241c)-333(przed)-333(\\252a)27(w)28(\\241,)-333(na)-333(kt\\363rej)-333(Ro)-28(c)28(ho)-333(rozlicz)-1(a\\252.)]TJ 27.879 -13.55 Td[({)-333(C)-1(zterysta)-333(trzydzie\\261)-1(ci)-334(d)1(w)27(a)-333(ru)1(bl)1(e)-334(i)-333(pi\\246\\242)-334(z\\252ot)27(y)1(c)27(h!)-333(O)1(d)-333(Mac)-1(i)1(e)-1(j)1(a,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(T)83(ak...)-333(j)1(u\\261c)-1(i)1(...)-333(da\\252)-333(mi)-334(p)-27(o)-333(\\261)-1(wi\\246tac)27(h)1(...)-333({)-333(j\\241k)56(a\\252a)-334(cze)-1(rwieni)1(\\241c)-334(s)-1(i)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Na)-334(zas)-1(t)1(a)27(w)-333(nie)-333(s)-1(tar)1(c)-1(zy)83(,)-333(ale)-333(m)-1(ogli)1(b)28(y\\261c)-1(ie)-333(c)-1(o)-333(s)-1(p)1(rze)-1(d)1(a\\242)-334(z)-334(in)29(w)27(en)28(tarza!)]TJ 0 -13.549 Td[({)-255(Ju\\261c)-1(i,)-255(mog\\252ab)28(ym)-256(p)1(rze)-1(d)1(a\\242)-256(m)-1(acior)1(\\246)-1(..)1(.)-256(k)1(ro)28(w)27(\\246)-256(j)1(a\\252o)27(w)28(\\241)-256(t)1(e)-1(\\273)-256(b)28(y)-255(mo\\273)-1(n)1(a,)-255(z)-1(b)-27(\\246)-1(d)1(na,)]TJ -27.879 -13.549 Td[(\\233yd)-333(j)1(u\\273)-334(o)-333(ni)1(\\241)-334(p)1(rze)-1(p)28(y)1(t)27(y)1(w)27(a\\252..)1(.)-334(t)1(o)-334(p)1(ar\\246)-334(k)28(or)1(c)-1(zyk)28(\\363)28(w)-334(zb)-28(o\\273a...)]TJ 27.879 -13.549 Td[({)-289(A)-290(widzicie,)-290(ziarn)1(k)28(o)-290(d)1(o)-290(ziarn)1(k)56(a)-290(i)-289(z)-1(b)1(ierz)-1(e)-290(si\\246)-290(miark)56(a.)-289(Be)-1(z)-290(n)1(ic)-1(zyj)1(e)-1(j)-289(p)-27(om)-1(o)-27(c)-1(y)]TJ -27.879 -13.55 Td[(An)28(tk)56(a)-333(wykup)1(im)28(y)83(.)-333(Wie)-333(to)-334(k)1(to)-334(o)-333(w)28(as)-1(zyc)27(h)-333(p)1(ieni\\241d)1(z)-1(ac)27(h)1(?)]TJ 27.879 -13.549 Td[({)-325(Oj)1(c)-1(i)1(e)-1(c)-325(m)-1(i)-324(dali)-324(na)-325(r)1(ato)27(w)28(ani)1(e)-326(An)28(t)1(k)55(a,)-324(przyk)56(azuj\\241c,)-325(ab)28(y)1(m)-326(n)1(ik)28(om)28(u)-325(ni)-324(s)-1(\\252\\363)28(w-)]TJ -27.879 -13.549 Td[(kiem)-334(n)1(ie)-334(p)1(is)-1(n)1(\\246)-1(\\252a.)-333(W)84(am)-1(a)-333(pi)1(e)-1(r)1(w)-1(sz)-1(em)27(u)-332(s)-1(i\\246)-333(z)-1(a)28(wie)-1(r)1(z)-1(am.)-333(Jakb)28(y)-333(M)1(ic)27(h)1(a\\252)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-230(Ni)1(e)-231(r)1(oz)-1(g\\252osz)-1(\\246,)-230(b)1(\\241d\\271c)-1(ie)-230(sp)-27(ok)28(o)-56(jn)1(i.)-229(Jak)-230(p)-27(o)28(w)-1(i)1(adomi\\241,)-230(\\273e)-230(p)-27(ora,)-230(p)-27(o)-56(j)1(ad\\246)-230(z)-230(w)28(am)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-308(An)28(tk)56(a.)-307(U\\252adzi)-308(si\\246)-308(jak)28(o\\261)-308(na)-307(dob)1(re,)-308(u)1(\\252)-1(ad)1(z)-1(i)1(,)-308(moi)-308(k)28(o)-27(c)27(han)1(i)-308({)-307(s)-1(ze)-1(p)1(ta\\252)-308(ca\\252uj\\241c)-308(j)1(\\241)-308(w)]TJ 0 -13.55 Td[(g\\252o)28(w)27(\\246,)-333(b)-28(o)-333(m)27(u)-332(s)-1(i\\246)-333(do)-333(n\\363g)-333(rzuci\\252a)-334(z)-333(p)-28(o)-28(d)1(z)-1(i)1(\\246)-1(k)56(\\241.)]TJ 27.879 -13.549 Td[({)-333(Ro)-28(dzon)28(y)-333(o)-28(cie)-1(c)-333(le)-1(p)1(s)-1(zy)-333(b)28(y)-333(ni)1(e)-334(b)28(y\\252)-333({)-334(w)28(o\\252a\\252a)-334(z)-333(p\\252acz)-1(em)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)-333(c)28(h\\252op,)-333(P)28(an)29(u)-333(B)-1(ogu)-333(p)-27(o)-28(d)1(z)-1(i)1(\\246)-1(ku)1(jec)-1(i)1(e)-1(.)-333(Gd)1(z)-1(ie)-333(to)-334(J)1(agusia?)]TJ 0 -13.549 Td[({)-264(Dy\\242)-264(jes)-1(zc)-1(ze)-264(do)-264(dn)1(ia)-264(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252a)-264(do)-264(miasta)-264(z)-265(matk)56(\\241)-264(i)-264(z)-265(w)28(\\363)-56(j)1(tem)-1(.)-264(P)29(o)27(wiad)1(a\\252y)83(,)]TJ -27.879 -13.549 Td[(co)-334(d)1(o)-334(r)1(e)-1(j)1(e)-1(n)28(t)1(a,)-334(stara)-333(p)-27(ono)-333(gron)28(t)-333(p)1(rz)-1(epi)1(s)-1(u)1(je)-334(n)1(a)-334(c\\363rk)28(\\246.)]TJ 27.879 -13.55 Td[({)-333(Ws)-1(zystk)28(o)-333(Jagnie?)-334(a)-333(c)27(h)1(\\252opaki?)]TJ 0 -13.549 Td[({)-267(P)1(rze)-1(z)-267(z\\252o\\261)-1(\\242)-267(d)1(o)-267(ni)1(c)27(h,)-266(\\273e)-267(to)-267(c)27(h)1(c)-1(\\241)-266(dzia\\252\\363)28(w)-1(.)-266(Pi)1(e)-1(k\\252o)-266(tam)-267(u)-266(nic)28(h,)-266(a)-267(to)-266(dzie)-1(\\253)-266(n)1(ie)]TJ -27.879 -13.549 Td[(mija)-410(pr)1(z)-1(ez)-411(k\\252\\363tni)1(;)-411(za\\261)-411(w)28(\\363)-56(j)1(t)-411(b)1(roni)-410(Domin)1(ik)28(o)28(w)27(ej,)-410(opi)1(e)-1(ku)1(nem)-411(b)28(y\\252)-410(nad)-410(sierotami)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(p)-27(o)-333(\\261)-1(mierci)-334(D)1(om)-1(in)1(ik)56(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(a)-334(m)28(y\\261la\\252e)-1(m,)-333(\\273)-1(e)-333(c)-1(o)-333(insze)-1(go,)-333(b)-27(o)-334(to)-333(mi)-333(r\\363\\273nie)-334(op)-27(o)28(wiadali)1(.)]TJ 0 -13.55 Td[({)-340(T)83(o)-339(\\261)-1(wi\\246t\\241)-340(p)1(ra)28(wd\\246)-340(m\\363)27(wil)1(i.)-340(Jagn)1(\\241)-340(si\\246)-340(ano)-339(opieku)1(j\\241,)-339(ale)-340(tak,)-340(co)-340(mi)-339(w)-1(st)28(yd)]TJ -27.879 -13.549 Td[(rozp)-27(o)27(wiad)1(a\\242)-304(p)-27(o)-28(dr)1(obn)1(ie)-1(.)-303(S)1(tary)-303(j)1(e)-1(sz)-1(cz)-1(e)-303(rz\\246)-1(zi,)-303(a)-303(ta)-303(jak)-303(suk)56(a...)-303(Nie)-303(p)-28(o)28(wtarza\\252ab)28(ym)]TJ 0 -13.549 Td[(p)-27(o)-334(k)1(im)-1(,)-333(al)1(e)-334(s)-1(amam)-334(ic)28(h)-333(w)-334(sadzie)-334(zdy)1(ba\\252a,)-333(no..)1(.)]TJ 27.879 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(m)-1(i)-333(gd)1(z)-1(ie)-333(w)-1(y)1(p)-28(o)-28(cz\\241\\242)-334({)-334(p)1(rze)-1(r)1(w)27(a\\252)-333(jej)-333(p)-27(o)27(wsta)-56(j)1(\\241c)-334(z)-334(\\252a)28(w)-1(y)84(.)]TJ 0 -13.549 Td[(Chcia\\252a)-333(m)27(u)-333(s\\252a\\242)-334(J\\363z)-1(i)1(ne)-334(\\252\\363\\273k)28(o,)-333(ale)-334(w)28(ola\\252)-334(i)1(\\261)-1(\\242)-334(d)1(o)-334(sto)-28(d)1(o\\252y)83(.)]TJ 0 -13.55 Td[({)-333(Pieni)1(\\241dze)-334(dob)1(rze)-334(s)-1(c)28(ho)28(w)27(a)-55(jcie)-334({)-333(os)-1(t)1(rz)-1(eg\\252)-333(j\\241)-333(jes)-1(zc)-1(ze)-334(i)-333(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[(A\\273)-398(dopi)1(e)-1(ro)-398(p)-27(o)-398(p)-27(o\\252udn)1(iu)-398(si\\246)-398(p)-28(ok)56(aza\\252,)-398(z)-1(j)1(ad\\252)-398(obi)1(ad)-398(i)-398(n)1(a)-398(w)-1(i)1(e)-1(\\261)-398(s)-1(i\\246)-398(wybiera\\252,)]TJ -27.879 -13.549 Td[(kiej)-333(Han)1(k)55(a)-333(z)-334(wielk)56(\\241)-334(n)1(ie\\261)-1(mia\\252o\\261)-1(ci\\241)-333(s)-1(i)1(\\246)-334(o)-28(d)1(e)-1(zw)27(a\\252a:)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(\\261)-1(cie)-334(mi)-333(to,)-333(Ro)-28(c)27(h)28(u)1(,)-333(o\\252)-1(t)1(arz)-334(p)-27(om)-1(ogl)1(i)-333(przystroi\\242...)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(j)1(utr)1(o)-334(Bo\\273)-1(e)-333(C)-1(i)1(a\\252o.)-334(G)1(dzie)-1(\\273)-333(to)-334(go)-333(sta)28(w)-1(i)1(ac)-1(ie?)]TJ 0 -13.549 Td[({)-409(Gd)1(z)-1(ie)-409(i)-409(co)-409(rok,)-409(p)1(rze)-1(d)-408(gankiem.)-409(Pietrk)56(a)-409(in)1(o)-409(patr)1(z)-1(e\\242)-410(z)-409(las)-1(u)1(,)-409(pr)1(z)-1(y)1(w)-1(i)1(e)-1(zie)]TJ -27.879 -13.55 Td[(gaci)-258(jo)-28(d)1(\\252o)28(w)27(ej)-258(i)-258(\\261wie)-1(r)1(c)-1(zak)28(\\363)28(w)-1(,)-257(z)-1(a\\261)-258(Jagust)28(ynk)28(\\246)-258(z)-259(J)1(\\363z)-1(k)56(\\241)-258(z)-1(ar)1(no)-258(p)-27(o)-258(obi)1(e)-1(d)1(z)-1(ie)-258(p)-27(c)27(hn)1(\\246)-1(\\252am)]TJ 0 -13.549 Td[(p)-27(o)-334(ziela)-333(na)-333(w)-1(i)1(anki.)]TJ 27.879 -13.549 Td[({)-333(A)-334(\\261wie)-1(ce,)-334(l)1(ic)27(h)28(t)1(arz)-1(e)-333(m)-1(acie)-334(to)-333(ju)1(\\273)-1(?)]TJ 0 -13.549 Td[({)-333(Jam)27(b)1(ro\\273y)-334(p)1(rzy)28(obiec)-1(a\\252)-333(pr)1(z)-1(y)1(nie\\261)-1(\\242)-333(z)-334(k)28(o\\261)-1(cio\\252a)-333(w)27(cz)-1(es)-1(n)29(ym)-334(ran)1(kiem.)]TJ 0 -13.549 Td[({)-333(U)-334(k)28(og\\363\\273)-333(to)-334(j)1(e)-1(sz)-1(cze)-334(b)-28(\\246d\\241)-333(sta)27(wial)1(i)-333(o\\252)-1(t)1(arz)-1(e?)]TJ 0 -13.55 Td[({)-305(P)28(o)-305(nasz)-1(ej)-305(stroni)1(e)-306(u)-305(w)28(\\363)-56(j)1(ta,)-305(z)-1(a\\261)-306(p)-27(o)-305(tam)27(tej)-305(u)-305(m\\252yn)1(arz)-1(a)-305(i)-305(p)1(rz)-1(ed)-305(P)1(\\252)-1(oszk)55(ami.)]TJ 0 -13.549 Td[({)-327(P)28(om)-1(og\\246)-327(w)27(am,)-327(w)-1(st\\241)-28(p)1(i\\246)-328(jeno)-327(do)-327(pan)1(a)-328(J)1(ac)27(k)56(a)-328(i)-327(pr)1(z)-1(ed)-327(z)-1(mierzc)27(hem)-328(p)1(rzyjd)1(\\246)-1(.)]TJ\nET\nendstream\nendobj\n1689 0 obj <<\n/Type /Page\n/Contents 1690 0 R\n/Resources 1688 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1675 0 R\n>> endobj\n1688 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1693 0 obj <<\n/Length 9670      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(529)]TJ -330.353 -35.866 Td[({)-333(Ka\\273)-1(cie)-334(W)84(eronce)-1(,)-333(b)28(y)-333(zaraz)-334(z)-333(rana)-333(p)1(rz)-1(y)1(s)-1(z\\252a)-334(p)-27(omaga\\242)-1(!)]TJ 0 -13.549 Td[(Kiwn)1(\\241\\252)-334(g\\252o)28(w)27(\\241)-333(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(j)1(u\\273)-334(p)1(rosto)-334(d)1(o)-333(Stac)27(h)1(o)28(w)27(ej)-333(ru)1(dery)83(.)]TJ 0 -13.549 Td[(P)28(an)-350(Jac)-1(ek)-351(siedzia\\252)-351(na)-351(p)1(rogu,)-350(jak)-351(za)28(wdy)84(,)-351(pap)1(ieros)-1(a)-351(p)1(ali\\252,)-350(br\\363)-27(dk)28(\\246)-351(s)-1(ku)1(ba\\252)-351(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ew\\252\\363)-28(c)-1(zy\\252)-333(o)-28(c)-1(zyma)-334(p)-27(o)-333(rozk)28(o\\252ys)-1(an)29(yc)27(h)-333(zb)-28(o\\273ac)27(h)1(,)-333(i)-334(za)-333(ptak)56(ami)-333(patrzy\\252.)]TJ 27.879 -13.549 Td[(Za\\261)-283(przed)-283(c)28(ha\\252up)1(\\241)-283(i)-283(p)-27(o)-28(d)-282(trze)-1(\\261ni)1(am)-1(i)-282(le)-1(\\273a\\252o)-283(j)1(u\\273)-283(par)1(\\246)-284(t\\246gic)28(h)-283(c)27(h)1(o)-56(j)1(ar\\363)28(w)-283(i)-283(k)1(up)28(y)]TJ -27.879 -13.55 Td[(wierz)-1(c)28(ho\\252\\363)28(w)-257(i)-256(ga\\252\\246)-1(zi,)-256(s)-1(tar)1(y)-257(Byli)1(c)-1(a)-257(k)28(ol)1(e)-257(nic)28(h)-256(\\252)-1(azi\\252,)-256(wym)-1(i)1(e)-1(rza\\252)-257(top)-27(orzyskiem)-1(,)-256(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(jak)1(i)-333(s)-1(\\246k)-333(o)-28(dciup)1(n\\241\\252)-333(s)-1(i)1(e)-1(ki)1(e)-1(r\\241)-333(i)-333(ci\\246)-1(gi)1(e)-1(m)-334(mru)1(c)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-283(I)-284(t)28(y)1(\\261)-284(pr)1(z)-1(ysz)-1(ed\\252)-283(n)1(a)-284(n)1(as)-1(ze)-284(p)-27(o)-28(dw)28(\\363rk)28(o.)1(..)-283(ju)1(\\261)-1(ci...)-283(gal)1(an)28(t)28(y\\261)-1(,)-283(wid)1(z)-1(\\246...)-283(B\\363g)-283(c)-1(i)-283(za-)]TJ -27.879 -13.549 Td[(p\\252a\\242...)-288(zaraz)-289(c)-1(i)1(\\246)-289(Mateusz)-289(do)-288(os)-1(tr)1(e)-1(go)-288(k)55(an)29(tu)-288(w)-1(y)1(ryc)28(h)28(tuj)1(e)-1(.)1(..)-289(n)1(a)-289(p)1(rzyc)-1(i)1(e)-1(sie)-289(zdatn)28(y)1(\\261)-1(..)1(.)]TJ 0 -13.549 Td[(suc)27(h)1(o)-334(mia\\252)-333(b)-28(\\246dzies)-1(z,)-333(nie)-333(b)-28(\\363)-55(j)-333(s)-1(i)1(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Jakb)28(y)-333(d)1(o)-334(\\273yw)27(ej)-333(osob)28(y)-333(m)-1(\\363)28(wi)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(d)1(z)-1(iwion)29(y)-334(Ro)-27(c)27(ho.)]TJ 0 -13.55 Td[({)-338(S)1(iada)-55(jcie.)-338(Z)-338(r)1(ado\\261c)-1(i)-337(w)-338(g\\252o)28(w)-1(i)1(e)-338(m)27(u)-337(s)-1(i)1(\\246)-339(p)-27(omies)-1(za\\252o,)-338(ca\\252e)-339(d)1(ni)1(e)-339(t)1(ak)-338(p)1(rz)-1(esia-)]TJ -27.879 -13.549 Td[(du)1(je)-333(przy)-333(drzew)-1(i)1(e)-1(.)-333(S\\252u)1(c)27(h)1(a)-56(jcie)-334(n)1(o.)]TJ 27.879 -13.549 Td[({)-483(A)-484(i)-483(t)28(y)-484(wysta\\252a\\261)-484(si\\246)-1(,)-483(c)27(h)29(ud)1(z)-1(iacz)-1(k)28(o,)-483(w)-484(b)-27(oru)1(,)-483(to)-484(se)-484(te)-1(r)1(az)-484(o)-28(dp)-27(o)-28(cz)-1(n)1(ies)-1(z...)]TJ -27.879 -13.549 Td[(ju)1(\\261)-1(ci,)-369(nik)1(to)-370(ci\\246)-370(ju)1(\\273)-370(nie)-370(r)1(usz)-1(y!)1(..)-369({)-370(gada\\252)-369(s)-1(tar)1(y)-370(g\\252ad)1(z)-1(\\241c)-370(mi\\252os)-1(n)29(ymi)-370(r\\246k)28(oma)-370(\\273\\363\\252t\\241,)]TJ 0 -13.549 Td[(z\\252)-1(u)1(s)-1(zcz)-1(on)1(\\241)-334(k)28(or\\246)-333(s)-1(osn)28(y)84(.)]TJ 27.879 -13.55 Td[(P)28(olaz\\252)-484(do)-483(na)-55(jgru)1(bsz)-1(ej,)-483(z)-1(w)28(alonej)-483(na)-484(d)1(r\\363\\273)-1(k)28(\\246,)-484(k)1(ucn\\241\\252)-484(pr)1(z)-1(ed)-483(prze)-1(k)1(ro)-56(j)1(e)-1(m)-484(i)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(\\241c)-333(z)-334(lub)-27(o\\261c)-1(i\\241)-333(n)1(a)-334(\\273\\363\\252te)-1(,)-333(n)1(abrzmia\\252e)-334(\\273)-1(y)1(w)-1(i)1(c)-1(\\241)-333(s)-1(\\252o)-55(je,)-333(m)-1(amrota\\252:)]TJ 27.879 -13.549 Td[({)-263(T)27(y)1(lac)27(h)1(na\\261,)-263(a)-263(dali)-262(c)-1(i)-263(r)1(ad\\246!)-263(c)-1(o?)-263(\\233ydy)-262(b)28(y)-263(c)-1(i)1(\\246)-264(d)1(o)-263(m)-1(iasta)-263(wywie)-1(z\\252y)83(,)-262(a)-263(tak)-263(P)28(an)]TJ -27.879 -13.549 Td[(Jez)-1(u)1(s)-332(p)-27(oz)-1(w)28(oli\\252,)-331(co)-332(u)-330(s)-1(w)28(oic)27(h)-331(ostan)1(ie)-1(sz)-1(,)-331(u)-330(gos)-1(p)-27(o)-28(dar)1(z)-1(y)84(,)-331(obr)1(az)-1(y)-331(n)1(a)-332(t)1(obie)-331(p)-28(o)28(wies)-1(z\\241,)]TJ 0 -13.549 Td[(ksi\\241dz)-333(c)-1(ie)-333(w)27(o)-28(d)1(\\241)-334(\\261wi\\246c)-1(on)1(\\241)-334(skrop)1(i,)-333(ju)1(\\261)-1(ci..)1(.)-334(co?...)]TJ 27.879 -13.55 Td[(P)28(an)-348(Jac)-1(ek)-349(j)1(e)-1(n)1(o)-349(pr)1(z)-1(e\\261)-1(miec)27(ha\\252)-349(si\\246)-349(z)-350(t)1(e)-1(go)-349(n)1(ie)-1(znacznie)-349(i)-349(p)-27(ogada)28(ws)-1(zy)-349(cos)-1(i)1(k)-349(z)]TJ -27.879 -13.549 Td[(Ro)-28(c)27(h)1(e)-1(m,)-333(wz)-1(i\\241\\252)-333(skrzypk)1(i)-334(p)-27(o)-28(d)-333(p)1(ac)27(h)1(\\246)-334(i)-333(m)-1(i)1(e)-1(d)1(z)-1(ami)-333(ruszy\\252)-334(k)1(u)-333(b)-28(or)1(om)-1(.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(z)-1(a\\261)-334(p)-27(otem)-334(u)-333(W)84(e)-1(ron)1(ki)-333(sie)-1(d)1(z)-1(i)1(a\\252)-334(wys\\252uc)27(h)29(uj\\241c)-333(r\\363\\273)-1(n)1(o\\261)-1(ci.)]TJ 0 -13.549 Td[(Na)-406(\\261wie)-1(cie)-406(mia\\252o)-406(si\\246)-406(ju)1(\\273)-407(p)-27(o)-28(d)-405(wiec)-1(z\\363r,)-406(u)1(pa\\252)-405(prze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252,)-406(a)-406(n)1(a)28(w)27(et)-406(ju)1(\\273)-406(o)-28(d)]TJ -27.879 -13.549 Td[(\\252\\241k)-390(p)1(rze)-1(wiew)27(a\\252y)-389(c)27(h)1(\\252o)-28(dn)1(a)27(w)28(e)-390(c)-1(i)1(\\241)-28(gi,)-389(w)-1(i)1(ate)-1(r)-389(te\\273)-390(niez)-1(gor)1(z)-1(ej)-389(j\\241\\252)-390(d)1(m)27(u)1(c)27(ha\\242)-390(o)-27(d)-390(same)-1(-)]TJ 0 -13.55 Td[(go)-374(p)-27(o\\252ud)1(nia,)-373(\\273e)-375(\\273ytn)1(ie)-374(p)-27(ola,)-374(r)1(dza)27(w)28(e)-374(o)-28(d)-373(m\\252)-1(o)-27(dyc)28(h)-374(k)1(\\252os)-1(\\363)28(w,)-374(to)-27(c)-1(zy\\252y)-374(si\\246)-374(sk\\252\\246)-1(b)1(ione)]TJ 0 -13.549 Td[(kiej)-314(w)27(o)-28(d)1(y)83(,)-314(raz)-315(p)-27(o)-315(raz)-315(zak)28(ole)-1(b)1(a\\252y)-315(si\\246)-315(gw)27(a\\252to)28(wni)1(e)-1(,)-314(z)-1(akr)1(\\246)-1(ci\\252y)-315(wir)1(e)-1(m)-315(i)-314(c)27(hl)1(usta\\252y)-315(ku)]TJ 0 -13.549 Td[(dr)1(ogom)-324(i)-324(miedzom)-1(,)-323(jak)1(b)28(y)-324(j)1(u\\273)-324(in)1(o,)-324(i)1(no)-324(wyl)1(a\\242)-324(s)-1(i\\246)-324(mia\\252y;)-323(ale)-324(jeno)-323(t\\252uk\\252y)-323(p\\252o)28(wymi)]TJ 0 -13.549 Td[(grzyw)28(am)-1(i)-396(o)-396(zie)-1(mi\\246)-396(i)-396(p)-28(o)-27(dda)28(w)28(a\\252y)-396(s)-1(i\\246)-396(w)-397(t)28(y\\252,)-396(ki)1(e)-1(j)-396(stad)1(o)-397(\\271reb)-28(c\\363)28(w)-397(d)1(\\246)-1(b)1(a)-396(s)-1(ta)-55(j\\241cyc)27(h)1(.)]TJ 0 -13.549 Td[(Wiat)1(e)-1(r)-492(z)-492(r\\363\\273n)28(yc)28(h)-492(stron)-492(p)1(ar\\252)-492(na)-492(n)1(ie)-492(i)-492(m)-1(i)1(ota\\252)-492(kiejb)28(y)-491(la)-492(z)-1(ab)1(a)27(wy)84(,)-492(\\273e)-493(wz)-1(b)1(ur)1(z)-1(o-)]TJ 0 -13.55 Td[(ne)-388(zno)28(wu)-388(h)28(u)1(la\\252y)-388(p)-27(o)-388(z)-1(agon)1(ac)27(h)-387(p)-28(e\\252ne)-388(gurb)-387(p\\252o)28(wyc)27(h)1(,)-388(zie)-1(l)1(on)28(yc)27(h)-387(z)-1(at)1(o)-1(k)1(,)-388(rd)1(z)-1(a)28(wyc)27(h)]TJ 0 -13.549 Td[(sm)27(ug)-453(i)-452(c)27(hr)1(z)-1(\\246s)-1(t)1(u,)-453(i)-453(t)1(rz)-1(ep)-27(ot\\363)28(w)-1(.)-452(Sk)28(o)28(wronk)1(i)-453(wydzw)27(an)1(ia\\252y)-453(wysok)28(o,)-453(c)-1(zase)-1(m)-453(s)-1(tad)1(o)]TJ 0 -13.549 Td[(wron)-377(pr)1(z)-1(ec)-1(i\\241)-27(gn\\246\\252o,)-378(w)28(a\\273)-1(\\241c)-378(si\\246)-378(na)-378(wietrze)-378(i)-378(spad)1(a)-56(j)1(\\241c)-378(o)-28(dp)-27(o)-28(cz)-1(yw)28(a\\242)-378(na)-377(rozk)28(o\\252)-1(y)1(s)-1(a-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-283(dr)1(z)-1(ewinac)28(h.)-283(S\\252o\\253)1(c)-1(e)-283(ju\\273)-283(c)-1(ze)-1(r)1(wie)-1(n)1(ia\\252o)-283(opu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-284(s)-1(i)1(\\246)-284(coraz)-284(n)1(i\\273)-1(ej)-283(i)-283(p)-27(o)-283(c)-1(a\\252ym)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(,)-383(p)-27(o)-384(p)-27(olac)27(h)-383(r)1(oz)-1(k)28(o\\252ysan)28(yc)28(h)-383(i)-384(p)-27(o)-383(s)-1(ad)1(ac)27(h)-383(trze)-1(p)-27(o)-28(cz)-1(\\241cyc)27(h)-383(si\\246)-384(n)1(ib)28(y)-383(s)-1(tad)1(a)-384(n)1(a)]TJ 0 -13.549 Td[(u)28(wi\\246z)-1(i)-333(r)1(oz)-1(lew)27(a\\252)-333(s)-1(i)1(\\246)-334(z)-334(w)28(olna)-333(cz)-1(erw)28(ona)28(wy)-334(b)1(rzas)-1(k)-333(k)28(o\\253)1(c)-1(z\\241c)-1(ego)-334(si\\246)-334(d)1(ni)1(a.)]TJ 27.879 -13.55 Td[(Za\\261)-306(z)-306(p)-28(o)28(w)28(o)-28(du)-305(ju)1(trze)-1(j)1(s)-1(ze)-1(go)-305(\\261)-1(wi\\246ta)-306(lu)1(dzie)-306(w)27(cz)-1(e\\261niej)-306(sc)27(h)1(o)-28(dzili)-305(z)-306(p)-28(\\363l)1(,)-306(k)28(ob)1(ie)-1(t)28(y)]TJ -27.879 -13.549 Td[(wi\\252y)-251(wianki)-251(p)1(rze)-1(d)-251(c)28(ha\\252up)1(ami,)-251(dzie)-1(ci)-251(znosi\\252y)-251(nar\\246c)-1(za)-251(tataraku)1(,)-251(pr)1(z)-1(ed)-251(P\\252osz)-1(k)56(ami)-251(i)]TJ 0 -13.549 Td[(m\\252ynar)1(z)-1(em)-259(s)-1(to\\273y\\252y)-259(si\\246)-259(br)1(z)-1(ez)-1(i)1(n)28(y)-259(i)-258(\\261)-1(wierki)1(,)-259(kt\\363r)1(e)-260(wk)28(op)28(y)1(w)27(ali)1(,)-259(k)56(a)-56(j)-258(mia\\252y)-259(si\\246)-259(s)-1(t)1(a)27(wia\\242)]TJ 0 -13.549 Td[(o\\252tarze)-1(,)-250(gd)1(z)-1(i)1(e)-251(ju)1(\\273)-251(i)-250(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-250(mai\\252y)-250(\\261c)-1(ian)29(y)83(,)-250(d)1(rog\\246)-251(te\\273)-251(miejsc)-1(ami)-250(r\\363)28(wnal)1(i)-250(z)-1(asypu)1(j\\241c)]TJ 0 -13.549 Td[(wyb)-27(ois)-1(k)56(a,)-383(k)1(t\\363ra\\261)-383(te)-1(\\273)-383(jes)-1(zc)-1(ze)-384(p)1(ra\\252a)-383(n)1(ad)-383(sta)27(w)28(em)-1(,)-383(\\273e)-384(i)1(no)-383(ki)1(jank)56(a)-383(tr)1(z)-1(ask)55(a\\252a)-383(i)-382(g\\246)-1(si)]TJ 0 -13.55 Td[(strac)27(h)1(liwie)-334(g\\246ga\\252y)83(.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-329(w)-1(\\252a\\261ni)1(e)-330(z)-1(b)1(iera\\252)-329(s)-1(i\\246)-329(wyj\\261\\242)-330(o)-28(d)-328(W)83(eronk)1(i,)-329(kiej)-329(n)1(a)-330(top)-27(olo)28(w)28(e)-1(j)-329(w)28(e)-330(srogiej)]TJ\nET\nendstream\nendobj\n1692 0 obj <<\n/Type /Page\n/Contents 1693 0 R\n/Resources 1691 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1691 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1697 0 obj <<\n/Length 8885      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(530)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ku)1(rza)27(wie)-354(uk)56(aza\\252)-354(s)-1(i\\246)-354(ktosik)-354(p)-27(\\246dz\\241c)-1(y)-354(n)1(a)-354(k)28(oniu)1(.)-354(Wstrzym)28(yw)27(a\\252y)-353(go)-354(niec)-1(o)-354(w)28(oz)-1(y)-353(z)-1(e)]TJ 0 -13.549 Td[(St)1(ac)27(ho)28(wym)-334(d)1(rze)-1(w)28(e)-1(m,)-333(\\273)-1(e)-333(p)-28(ol)1(e)-1(m)-334(c)28(hcia\\252)-333(ob)-56(j)1(e)-1(\\273d\\273a\\242.)]TJ 27.879 -13.549 Td[({)-333(T)83(e)-1(!)-333(k)28(on)1(ia)-333(o)-28(c)27(h)28(w)28(ac)-1(i)1(s)-1(z,)-333(k)55(a)-55(j)-333(c)-1(i)-333(tak)-333(p)1(iln)1(o!)-333({)-334(kr)1(z)-1(y)1(c)-1(ze)-1(li)1(.)]TJ 0 -13.549 Td[(Wymin)1(\\241\\252)-491(ic)28(h)-491(j)1(ak)28(o\\261)-491(i)-491(p)-27(ogna\\252)-490(do)-491(wsi)-491(z)-491(ca\\252yc)27(h)-490(s)-1(i)1(\\252,)-491(j)1(a\\273)-1(e)-491(k)28(oni)1(o)27(wi)-490(z)-1(agr)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(w)28(\\241troba.)]TJ 27.879 -13.55 Td[({)-333(He)-1(j)1(!)-333(Adam,)-333(p)-28(o)-28(cze)-1(k)56(a)-56(j)-333(n)1(o!)-333({)-334(w)28(o\\252a\\252)-334(Ro)-28(c)28(ho.)]TJ 0 -13.549 Td[(K\\252\\246biak)-333(wstrzym)-1(a\\252)-333(s)-1(i)1(\\246)-334(ni)1(e)-1(co)-334(i)-333(j)1(\\241\\252)-334(kr)1(z)-1(y)1(c)-1(ze)-1(\\242)-334(z)-333(c)-1(a\\252yc)28(h)-333(s)-1(i\\252:)]TJ 0 -13.549 Td[({)-387(A)-386(to)-387(n)1(ie)-387(w)-1(i)1(e)-1(cie,)-387(j)1(akie)-1(\\261)-387(zabi)1(te)-387(le)-1(\\273\\241)-387(w)-387(b)-27(oru)1(!)-387(Jez)-1(u)1(s)-1(,)-386(zatk)55(a\\252o)-386(m)-1(e)-387(ca\\252kiem)-1(.)]TJ -27.879 -13.549 Td[(Kon)1(ia)-338(p)1(as)-1(\\252em)-338(n)1(a)-338(sm)27(u)1(gu)-337(i)-338(j)1(u\\273e)-1(\\261m)27(y)-337(z)-338(G)1(ulb)1(as)-1(iak)1(ie)-1(m)-337(jec)27(hal)1(i)-338(d)1(o)-338(d)1(om)-1(,)-337(a\\273)-338(t)1(u)-337(prze)-1(d)]TJ 0 -13.549 Td[(Boryn)1(o)27(wym)-427(k)1(rz)-1(y)1(\\273)-1(em)-427(k)28(o\\253)-427(si\\246)-427(rzuci\\252)-427(w)-427(b)-27(ok,)-427(j)1(a\\273)-1(em)-427(b)-28(\\246cn\\241\\252)-427(n)1(a)-427(z)-1(i)1(e)-1(m.)-427(P)28(at)1(rz)-1(\\246:)-427(k)1(i)]TJ 0 -13.549 Td[(lic)28(ho)-291(s)-1(t)1(rac)27(h)1(n\\246\\252)-1(o)-291(k)28(on)1(ia?)-292(a)-291(tu)-291(jak)1(ie)-1(\\261)-291(lud)1(z)-1(ie)-291(w)-292(ja\\252o)28(w)28(c)-1(ac)27(h)-290(le)-1(\\273\\241...)-291(W)84(o\\252alim,)-291(a)-292(on)1(i)-292(n)1(ic,)]TJ 0 -13.55 Td[(le\\273)-1(\\241)-333(kieb)28(y)-333(p)-27(om)-1(ar)1(\\252e)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(i,)-333(b)-28(\\246dzie)-334(t)1(u)-333(c)-1(u)1(de\\253k)56(a)-333(roz)-1(p)-27(o)28(wiada\\252!)-333({)-333(z)-1(a)28(wrze)-1(sz)-1(cz)-1(eli.)]TJ 0 -13.549 Td[({)-405(Obacz)-1(cie)-406(sami:)-405(le)-1(\\273\\241)-405(tam)-1(!)-405(G)1(ulb)1(as)-1(iak)-405(te\\273)-406(wid)1(z)-1(ia\\252,)-405(jeno)-405(co)-406(ze)-406(strac)27(h)29(u)-405(w)]TJ -27.879 -13.549 Td[(las)-334(p)-27(ogn)1(a\\252)-334(d)1(o)-334(k)28(omorn)1(ic)-1(,)-333(kt)1(\\363re)-334(susz)-334(z)-1(b)1(iera\\252y)83(.)-333(Nie\\273yw)27(e)-333(le)-1(\\273\\241.)]TJ 27.879 -13.549 Td[({)-333(W)-333(im)-1(i)1(\\246)-334(Oj)1(c)-1(a)-333(i)-333(Syn)1(a,)-333(to)-334(j)1(e)-1(d)1(\\271)-1(\\273e)-334(d)1(o)-334(w)28(\\363)-56(j)1(ta)-334(p)-27(o)28(wiadomi\\242!)]TJ 0 -13.55 Td[({)-333(W)83(\\363)-55(jt)-333(jes)-1(zcz)-1(e)-334(z)-333(m)-1(iasta)-333(nie)-333(przyj)1(e)-1(c)27(h)1(ali)-333({)-333(rze)-1(k\\252)-333(ktosik.)]TJ 0 -13.549 Td[({)-322(T)84(o)-322(s)-1(o\\252t)28(yso)28(wi)-322(d)1(a\\242)-323(zna\\242!..)1(.)-322(k)28(ole)-322(k)28(o)28(w)28(ala)-322(d)1(rog\\246)-322(p)-27(opra)28(wia)-321(z)-323(c)28(h\\252op)1(ak)55(ami!.)1(..)-322({)]TJ -27.879 -13.549 Td[(w)28(o\\252)-1(al)1(i)-333(z)-1(a)-333(nim,)-333(b)-27(o)-334(j)1(u\\273)-334(ostry)1(m)-334(galop)-27(e)-1(m)-333(s)-1(i\\246)-333(pu)1(\\261)-1(ci\\252.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-412(co)-412(p)-28(o)-412(wsi)-412(w)-412(ten)-412(mig)-412(s)-1(i)1(\\246)-413(r)1(oz)-1(g\\252osi\\252o)-412(o)-412(p)-28(omord)1(o)28(w)27(an)28(y)1(c)27(h,)-411(w)-1(r)1(z)-1(ask)-412(si\\246)]TJ -27.879 -13.549 Td[(cz)-1(yn)1(i\\252)-253(zgrozy)-252(p)-28(e\\252e)-1(n)-252(i)-252(bi)1(e)-1(gani)1(na,)-252(lu)1(dzie)-253(ja\\273e)-253(s)-1(i)1(\\246)-253(\\273)-1(egnali)-252(z)-253(p)1(rze)-1(ra\\273enia.)-252(A)-253(n)1(im)-253(s\\252o\\253-)]TJ 0 -13.55 Td[(ce)-350(zas)-1(z\\252o,)-349(z)-349(p)-27(\\363\\252)-349(ws)-1(i)-348(w)-1(y)1(le)-1(g\\252o)-348(na)-349(d)1(rogi.)-348(Kto\\261)-349(dob)1(ro)-28(d)1(z)-1(ieja)-348(u)28(wiadomi\\252,)-348(\\273)-1(e)-349(wys)-1(zed\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-437(pleban)1(i\\246)-438(rozp)28(yt)28(y)1(w)27(a\\242,)-438(k)1(up\\241)-437(ju)1(\\273)-438(tam)-438(sz)-1(li)-437(ni)1(e)-1(ma\\252\\241,)-438(r)1(a)-56(j)1(\\241c)-438(z)-438(c)-1(ic)28(ha,)-437(m\\252)-1(o)-27(dsi)]TJ 0 -13.549 Td[(pu)1(\\261)-1(cili)-377(si\\246)-378(niec)-1(o)-377(nap)1(rz)-1(\\363)-27(d)-378(t)1(op)-28(olo)28(w)28(\\241,)-378(a)-377(w)-1(sz)-1(y)1(s)-1(cy)-378(z)-378(wielk)56(\\241)-378(ni)1(e)-1(cierpl)1(iw)27(o\\261c)-1(i)1(\\241)-378(cz)-1(ek)55(al)1(i)]TJ 0 -13.549 Td[(na)-333(so\\252t)27(y)1(s)-1(a,)-333(kt\\363r)1(e)-1(n)-333(w)28(oz)-1(em)-334(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-333(z)-1(ab)1(iera)-56(j)1(\\241c)-334(z)-1(e)-333(s)-1(ob)1(\\241)-334(K)1(\\252)-1(\\246ba)-333(i)-333(par)1(obk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(D\\252ugo)-386(cz)-1(ek)56(ali,)-386(b)-27(o)-387(d)1(opiero)-386(o)-386(z)-1(mierzc)27(h)28(u)-386(p)-27(o)28(w)-1(r)1(\\363)-28(ci\\252;)-386(ale)-387(ku)-386(n)1(iem)-1(a\\252em)27(u)-386(zdu)1(-)]TJ -27.879 -13.55 Td[(mie)-1(n)1(iu)-245(w)27(\\363)-55(jto)28(wymi)-246(k)28(o\\253)1(mi)-246(i)-245(bry)1(k)55(\\241.)-245(Z\\252y)-246(b)29(y\\252)-246(jak)1(i\\261)-1(,)-245(b)-27(o)-246(sro)-28(d)1(z)-1(e)-246(kl\\241\\252)-245(i)-246(p)-27(o)-28(d)1(c)-1(in)1(a\\252)-246(sz)-1(k)56(ap)28(y)84(,)]TJ 0 -13.549 Td[(ani)-393(m)28(y\\261)-1(l)1(\\241c)-394(pr)1(z)-1(ysta)28(w)27(a\\242)-394(p)1(rze)-1(d)-393(ci\\273b\\241,)-393(ale)-394(kto\\261)-393(k)28(onie)-394(za)-394(u)1(z)-1(d)1(y)-393(c)27(h)28(wyci\\252,)-393(\\273)-1(e)-394(m)28(usia\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(tan)1(\\241\\242)-334(i)-333(rze)-1(k\\252:)]TJ 27.879 -13.549 Td[({)-359(Ju)1(c)27(h)28(y)-358(te)-359(c)27(h)1(\\252)-1(op)1(aki,)-358(wym)27(y\\261li\\252y)-358(s)-1(ob)1(ie)-359(c)-1(o)-358(nieb\\241d)1(\\271)-360(l)1(a)-359(z)-1(ab)1(a)28(w)-1(y)84(.)-359(\\233ad)1(n)28(yc)28(h)-359(za-)]TJ -27.879 -13.549 Td[(bi)1(t)28(yc)27(h)-393(n)1(ie)-394(b)29(y\\252o)-394(w)-393(les)-1(i)1(e)-1(,)-393(lu)1(dzie)-394(se)-394(j)1(akie\\261)-394(spa\\252y)-393(p)-27(o)-28(d)-393(kr)1(z)-1(ak)56(ami.)-393(Z\\252api\\246)-393(K\\252\\246)-1(b)1(iak)56(a,)]TJ 0 -13.55 Td[(to)-350(j)1(a)-350(m)28(u)-350(d)1(am)-350(s)-1(tr)1(ac)27(han)1(ia.)-350(S)1(p)-27(otk)55(a\\252em)-350(p)-28(o)-349(dr)1(o)-28(dze)-350(w)27(\\363)-55(jta)-350(i)-349(z)-1(ab)1(ra\\252em)-350(s)-1(i\\246)-350(z)-350(ni)1(m)-1(,)-349(to)]TJ 0 -13.549 Td[(ca\\252)-1(a)-333(h)1(is)-1(tor)1(ia.)-333(Wio!)-333(malu\\261kie!)]TJ 27.879 -13.549 Td[({)-436(A)-436(c\\363\\273)-436(to,)-436(w)28(\\363)-56(j)1(t)-436(c)27(h)1(ory)83(,)-435(\\273)-1(e)-436(le\\273)-1(y)-435(kiej)-436(b)1(aran)1(?)-437({)-435(p)28(yta\\252)-436(kt)1(o\\261)-437(zagl\\241da)-55(j\\241c)-436(do)]TJ -27.879 -13.549 Td[(w)28(as)-1(\\241)-28(ga.)]TJ 27.879 -13.549 Td[({)-333(\\221p)1(ik)-333(go)-334(zmorz)-1(y)1(\\252)-334(i)-333(t)28(yla!)-333({)-333(\\261)-1(mign)1(\\241\\252)-334(k)28(on)1(ie)-334(i)-333(j)1(u\\273)-334(k\\252u)1(s)-1(em)-334(ru)1(s)-1(zy\\252.)]TJ 0 -13.549 Td[({)-333(\\221cie)-1(r)1(wy)-334(t)1(e)-334(wis)-1(u)1(s)-1(y)84(,)-333(\\273)-1(eb)28(y)-333(tak)56(\\241)-334(r)1(z)-1(ec)-1(z)-333(w)-1(y)1(m)27(y\\261li\\242!)]TJ 0 -13.55 Td[({)-333(Gul)1(basiak)56(a)-334(to)-333(spra)28(wk)56(a,)-333(on)-333(pierws)-1(zy)-333(do)-333(psic)28(h)-333(\\014gl\\363)28(w!)]TJ 0 -13.549 Td[({)-333(Rz)-1(em)-1(i)1(e)-1(n)1(ie)-1(m)-333(b)28(y)-333(ic)27(h)-333(z\\252oi\\242,)-334(co)-333(m)-1(a)-55(j\\241)-333(lu)1(dzi)-334(t)1(rw)27(o\\273y\\242)-334(p)-27(o)-333(pr\\363\\273no\\261ci!)]TJ 0 -13.549 Td[(Wyr)1(z)-1(ek)56(ali)-333(z)-334(obu)1(rze)-1(n)1(ie)-1(m,)-333(rozc)27(h)1(o)-28(dz\\241c)-334(si\\246)-334(z)-334(w)28(oln)1(a)-334(p)-27(o)-333(c)27(ha\\252u)1(pac)27(h)1(.)]TJ 0 -13.549 Td[(Jes)-1(zc)-1(ze)-543(gdzie)-1(n)1(iegdzie)-543(s)-1(to)-55(jali)-542(ku)1(pk)56(ami)-543(nad)-542(sta)28(w)27(em)-543(s)-1(cz)-1(erwienion)29(ym)-543(o)-28(d)]TJ -27.879 -13.549 Td[(z\\363rz)-1(,)-412(gd)1(y)-412(s)-1(i\\246)-413(p)-27(ok)56(az)-1(a\\252y)-412(k)28(omorn)1(ic)-1(e)-413(z)-412(c)-1(i\\246\\273)-1(k)1(imi)-413(b)1(rze)-1(mion)1(am)-1(i)-412(dr)1(z)-1(ew)27(a)-412(na)-412(p)1(le)-1(cac)27(h)1(.)]TJ 0 -13.55 Td[(Koz\\252o)27(w)28(a)-430(sz)-1(\\252a)-429(na)-430(p)1(rze)-1(d)1(z)-1(ie,)-430(j)1(a\\273)-1(e)-430(wp)-27(\\363\\252)-430(z)-1(gi)1(\\246)-1(ta)-429(p)-28(o)-28(d)-429(ci\\246\\273)-1(arem,)-430(i)-429(do)-55(jrza)28(w)-1(sz)-1(y)-429(lu)1(dzi)]TJ 0 -13.549 Td[(ws)-1(p)1(ar\\252a)-333(s)-1(i\\246)-333(brze)-1(mieni)1(e)-1(m)-334(o)-333(d)1(rz)-1(ew)28(o.)]TJ\nET\nendstream\nendobj\n1696 0 obj <<\n/Type /Page\n/Contents 1697 0 R\n/Resources 1695 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1695 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1700 0 obj <<\n/Length 9323      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(531)]TJ -330.353 -35.866 Td[({)-343(So\\252t)28(ys)-343(w)28(a)-56(ju)-342(dob)1(rze)-344(o)-27(c)-1(ygan)1(i\\252!)-343({)-343(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-343(ledwie)-343(zipi\\241c)-343(z)-343(utr)1(udzenia.)]TJ -27.879 -13.549 Td[({)-333(Zabit)28(yc)28(h)-333(w)-334(les)-1(i)1(e)-334(ni)1(e)-334(b)28(y\\252o,)-333(to)-333(pr)1(a)27(wd)1(a,)-334(al)1(e)-334(m)-1(o\\273e)-334(co)-334(gor)1(s)-1(ze)-1(go.)]TJ 27.879 -13.549 Td[(I)-333(s)-1(k)28(oro)-333(ze)-1(b)1(ra\\252o)-334(si\\246)-334(wi\\246ce)-1(j)-333(lu)1(dzi,)-333(zw)27(ab)1(ion)28(yc)28(h)-333(jej)-333(g\\252os)-1(em)-1(,)-333(p)1(u\\261c)-1(i\\252a)-333(oz\\363r:)]TJ 0 -13.549 Td[({)-361(W)83(racalim)-361(p)-28(o)-27(dle\\261)-1(n)1(\\241)-362(d)1(rog\\241)-361(ku)-361(krzy\\273o)28(w)-1(i)1(,)-362(a\\273)-362(t)1(u)-361(Gulb)1(as)-1(i)1(ak)-362(l)1(e)-1(ci)-361(napr)1(z)-1(ec)-1(i)1(w)]TJ -27.879 -13.549 Td[(i)-439(k)1(rzyc)-1(zy)-439(ze)-1(strac)28(han)28(y)1(:)-439(\\377)-56(P)29(o)-28(d)-438(ja\\252o)28(w)27(cam)-1(i)-438(jaki)1(e)-1(\\261)-439(zabite)-439(le\\273)-1(\\241!)1(\")-439(Zabite,)-439(t)1(o)-439(z)-1(ab)1(ite,)]TJ 0 -13.55 Td[(m)27(y)1(\\261)-1(l\\246,)-304(ale)-305(w)28(arto)-304(z)-1(a)28(wdy)-304(ob)-27(e)-1(j)1(rz)-1(e\\242)-305(P)28(osz)-1(l)1(i\\261)-1(m)28(y)83(.)1(..)-304(w)-1(i)1(dzim)-305(z)-305(dal)1(a,)-305(p)1(ra)28(wda,)-304(le\\273)-1(\\241)-304(jak)1(ie)-1(\\261)]TJ 0 -13.549 Td[(lu)1(dzie)-313(kieb)28(y)-313(n)1(ie)-1(\\273yw)28(e)-1(.)1(..)-313(j)1(e)-1(n)1(o)-313(im)-313(ku)1(las)-1(y)-312(s)-1(tercz)-1(\\241)-312(s)-1(p)-27(o)-28(d)-312(ja\\252o)28(w)27(c\\363)28(w)-1(.)-312(Fil)1(ipk)56(a)-313(me)-313(c)-1(i\\241)-27(ga,)]TJ 0 -13.549 Td[(b)28(y)-373(uciek)55(a\\242...)-373(Grzelo)28(w)27(a)-374(j)1(u\\273)-374(p)1(ac)-1(ierz)-374(tr)1(z)-1(epie)-374(i)-373(mnie)-374(te\\273)-374(m)-1(r)1(\\363z)-374(p)-28(o)-373(plec)-1(ac)28(h)-373(c)27(ho)-27(dzi\\252,)]TJ 0 -13.549 Td[(alem)-354(si\\246)-354(p)1(rze)-1(\\273e)-1(gn)1(a\\252a,)-353(p)-28(o)-27(dc)27(h)1(o)-28(d)1(z)-1(\\246)-354(b)1(li\\273e)-1(j)1(...)-353(p)1(atrz\\246)-1(.)1(..)-353(a)-353(to)-353(pan)-353(w)28(\\363)-56(j)1(t)-353(le\\273)-1(y)-353(p)1(rz)-1(ez)-354(k)56(a-)]TJ 0 -13.549 Td[(p)-27(ot)28(y)83(,)-427(a)-427(p)-27(ob)-28(ok)-426(Jagusia)-427(Boryn)1(o)27(w)28(a...)-427(i)-426(\\261)-1(p)1(i\\241)-427(s)-1(e)-427(w)-427(na)-56(j)1(lepsz)-1(e.)-427(Sp)1(ili)-427(si\\246)-427(w)-428(mie\\261)-1(cie,)]TJ 0 -13.549 Td[(gor\\241c)-391(b)28(y\\252,)-391(to)-391(se)-392(c)27(h)1(c)-1(i)1(e)-1(li)-390(w)-1(y)1(p)-28(o)-28(cz)-1(\\241\\242)-391(w)-391(c)27(h\\252o)-28(d)1(z)-1(i)1(e)-392(i)-391(p)-27(o)-56(j)1(am)-1(or)1(o)27(w)28(a\\242.)-391(Ja\\273)-1(e)-391(bu)1(c)27(ha\\252a)-391(o)-28(d)]TJ 0 -13.55 Td[(ni)1(c)27(h)-367(gor)1(z)-1(a\\252k)56(a!)-367(Nie)-367(bu)1(dzilim:)-367(ni)1(e)-1(c)28(h)-367(\\261)-1(wiad)1(ki)-367(p)1(rzyjd)1(\\241,)-367(niec)27(h)-366(c)-1(a\\252a)-367(wie\\261)-368(obaczy)83(,)-367(co)]TJ 0 -13.549 Td[(si\\246)-257(wyp)1(ra)28(w)-1(i)1(a!)-256(Ws)-1(t)28(yd)-255(m)-1(\\363)28(wi\\242,)-256(jak)-256(b)28(y)1(\\252)-1(a)-256(r)1(oz)-1(d)1(z)-1(ian)1(a;)-256(ja\\273e)-257(Fil)1(ipk)56(a)-256(z)-257(li)1(to\\261)-1(ci)-256(pr)1(z)-1(y)28(okr)1(y\\252a)]TJ 0 -13.549 Td[(j\\241)-339(zapask)56(\\241.)-339(Cz)-1(ysta)-339(so)-28(doma.)-339(S)1(tara)-339(jes)-1(t)1(e)-1(m,)-339(a)-339(jes)-1(zcz)-1(e)-339(o)-339(takim)-339(z)-1(gor)1(s)-1(ze)-1(n)1(iu)-339(n)1(ie)-339(s)-1(\\252y-)]TJ 0 -13.549 Td[(sz)-1(a\\252am.)-327(So\\252t)28(ys)-328(zaraz)-327(przyj)1(e)-1(c)27(h)1(a\\252)-327(i)-328(b)1(ud)1(z)-1(i)1(\\252)-1(,)-327(J)1(agna)-327(w)-328(p)-27(ola)-327(uciek\\252a,)-327(z)-1(a\\261)-327(pan)1(a)-328(w)28(\\363)-56(j)1(ta)]TJ 0 -13.549 Td[(ledwie)-334(n)1(a)-333(w)27(\\363z)-334(wdy)1(go)27(w)28(ali,)-333(spi)1(t)27(y)-333(b)29(y\\252)-334(k)1(ie)-1(j)-333(\\261wini)1(a!)]TJ 27.879 -13.55 Td[({)-333(Je)-1(zus,)-333(te)-1(go)-333(j)1(e)-1(sz)-1(cz)-1(e)-334(w)-333(Lip)-27(c)-1(ac)28(h)-333(nie)-333(b)28(yw)28(a\\252o)-334({)-333(j\\246kn\\246\\252a)-333(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(to)-333(par)1(ob)-28(ek)-333(z)-334(dziewk)55(\\241,)-333(ale)-333(to)-334(gosp)-27(o)-28(dar)1(z)-1(,)-333(o)-28(ciec)-334(dziec)-1(iom)-333(i)-333(w)27(\\363)-55(jt!)]TJ 0 -13.549 Td[({)-333(A)-334(Bory)1(na)-333(z)-1(e)-334(\\261mie)-1(r)1(c)-1(i\\241)-333(si\\246)-334(mo)-28(cuje,)-333(w)27(o)-27(dy)-333(m)27(u)-332(nie)-334(ma)-333(kto)-333(p)-28(o)-27(da\\242,)-334(a)-333(ta..)1(.)]TJ 0 -13.549 Td[({)-436(Ja)-436(b)28(ym)-437(j)1(\\241)-436(z)-1(e)-437(wsi)-436(w)-1(y)1(\\261)-1(wiec)-1(i)1(\\252)-1(a!)-436(j)1(a)-436(b)28(ym)-437(\\261cie)-1(r)1(w)27(\\246)-437(r)1(\\363z)-1(gami)-436(p)-27(o)-28(d)-436(k)28(o\\261c)-1(io\\252em)]TJ -27.879 -13.549 Td[(sie)-1(k)1(\\252)-1(a!)-333({)-333(za)-1(cz\\246)-1(\\252a)-333(z)-1(n)1(o)27(wu)-333(wrzes)-1(zc)-1(ze)-1(\\242)-333(Koz)-1(\\252o)28(w)28(a)-1(.)]TJ 27.879 -13.55 Td[({)-374(Z)-1(gor)1(s)-1(ze)-1(n)1(ie)-375(sam)-1(o)-374(kr)1(z)-1(ycz)-1(y)1(;)-374(c)-1(o)-374(tu)-374(do)-28(d)1(a)28(w)27(a\\242?)-375({)-374(usp)-28(ok)56(a)-55(ja\\252y)-374(j\\241)-374(k)28(obiet)28(y)83(,)-374(za-)]TJ -27.879 -13.549 Td[(\\252am)27(u)1(j\\241c)-334(r)1(\\246)-1(ce)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)56(a)-55(j)-333(Dom)-1(i)1(nik)28(o)28(w)28(a?)]TJ 0 -13.549 Td[({)-333(Z)-334(r)1(oz)-1(m)28(ys)-1(\\252em)-334(j\\241)-333(w)-333(m)-1(ie\\261c)-1(ie)-333(os)-1(ta)28(wili,)-333(b)29(yc)27(h)-333(n)1(ie)-334(pr)1(z)-1(es)-1(zk)56(adza\\252a...)]TJ 0 -13.549 Td[({)-333(Je)-1(zu,)-333(strac)28(h)-333(p)-28(om)28(y\\261)-1(l)1(e)-1(\\242,)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(wypr)1(a)27(wia)-333(teraz)-334(n)1(a)-334(\\261wie)-1(cie!)]TJ 0 -13.55 Td[({)-333(T)83(aki)-333(grze)-1(c)28(h,)-333(takie)-333(z)-1(gor)1(s)-1(ze)-1(n)1(ie)-1(,)-333(d)1(y\\242)-334(wst)27(y)1(d)-333(na)-333(c)-1(a\\252\\241)-333(wie)-1(\\261)-333(pad)1(nie!)]TJ 0 -13.549 Td[({)-333(Jagna)-333(s)-1(i)1(\\246)-334(ta)-333(os)-1(\\252a)28(wy)-334(n)1(ie)-334(b)-27(o)-56(j)1(a,)-333(ju)1(tro)-333(goto)28(w)27(a)-333(to)-333(s)-1(amo)-334(r)1(obi\\242.)]TJ 0 -13.549 Td[(Wyr)1(z)-1(ek)56(ali)-380(p)-27(o)-381(c)28(ha\\252up)1(ac)27(h)1(,)-380(z)-1(a\\252am)27(u)1(j\\241c)-380(r\\246c)-1(e,)-380(\\273)-1(e)-380(ju\\273)-380(z)-381(tej)-380(zgroz)-1(y)-380(i)-380(ob)1(ur)1(z)-1(enia)]TJ -27.879 -13.549 Td[(co)-294(mi\\246tsz)-1(e)-293(k)28(obiet)28(y)-293(p\\252ak)56(a\\252y)-293(s)-1(p)-27(o)-28(d)1(z)-1(i)1(e)-1(w)28(a)-56(j\\241c)-293(s)-1(i)1(\\246)-294(k)56(ary)-293(srogiej)-293(o)-27(d)-293(Boga)-293(na)-293(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(lu)1(dzi.)-333(Ca\\252)-1(a)-333(wie\\261)-334(s)-1(i)1(\\246)-334(trz\\246)-1(s\\252a)-334(o)-27(d)-333(gada\\253)-333(i)-333(lamen)28(t\\363)28(w)-1(.)]TJ 27.879 -13.55 Td[(T)28(ylk)28(o)-342(jedne)-343(c)28(h\\252op)1(aki,)-342(c)-1(o)-342(s)-1(i)1(\\246)-343(b)28(y\\252y)-342(z)-1(es)-1(z\\252y)-342(na)-342(m)-1(ost,)-342(w)-1(zi\\246\\252y)-343(G)1(ulb)1(as)-1(i)1(ak)55(a)-342(roz-)]TJ -27.879 -13.549 Td[(p)28(yt)28(y)1(w)27(a\\242)-334(p)-27(o)-28(d)1(robn)1(o)-334(i)-333(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a\\252y)-333(s)-1(i\\246)-333(z)-334(c)-1(a\\252ej)-333(histori)1(i.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(ci)-333(k)28(ok)28(ot)-333(z)-334(w)27(\\363)-55(jta,)-333(n)1(o!)-333(to)-334(c)28(h)28(w)27(at)1(!)-334({)-333(\\261m)-1(i)1(a\\252)-334(si\\246)-334(W)84(ac)27(hn)1(ik)-333(Adam.)]TJ 0 -13.549 Td[({)-333(Odp)-27(oku)1(tuj)1(e)-334(jes)-1(zc)-1(ze)-334(za)-334(t)1(e)-334(jamory:)-333(k)28(ob)1(ieta)-334(\\252eb)-333(m)27(u)-333(ob)-27(edrze)-1(!)]TJ 0 -13.549 Td[({)-333(I)-334(z)-334(p)-27(\\363\\252)-333(roku)-333(n)1(ie)-334(p)1(rz)-1(y)1(pu)1(\\261)-1(ci)-333(do)-333(s)-1(iebi)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(o)-333(Jagusi)-333(to)-334(i)-333(n)1(ie)-1(\\261pi)1(e)-1(sz)-1(n)1(o)-334(m)28(u)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(do)-333(s)-1(w)28(o)-56(j)1(e)-1(j)1(.)]TJ 0 -13.55 Td[({)-333(Psiac)27(h)1(m)-1(a\\242,)-333(la)-333(Jagn)28(y)-333(k)56(a\\273)-1(d)1(e)-1(n)-333(b)28(y)-333(si\\246)-334(w)28(a\\273)-1(y)1(\\252)-334(n)1(a)-334(wsz)-1(ystk)28(o...)]TJ 0 -13.549 Td[({)-340(Jes)-1(zc)-1(ze)-341(b)29(y!)-340(k)28(ob)1(ie)-1(ta)-339(kiej)-340(\\252ani)1(a,)-340(\\273)-1(e)-340(ni)1(e)-341(wiad)1(a,)-340(c)-1(zy)-340(n)1(alaz)-1(\\252b)29(y)-340(\\261)-1(l)1(ic)-1(zni)1(e)-1(j)1(s)-1(z\\241)-340(w)]TJ -27.879 -13.549 Td[(jak)1(im)-334(d)1(w)27(orze:)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(s)-1(p)-27(o)-55(jrzy)-333(na)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)56(a,)-333(a)-334(j)1(u\\273)-333(c)-1(i\\241)-27(gotki)-333(bior)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Mi\\363)-28(d)1(,)-333(nie)-333(k)28(obieta,)-333(nie)-333(dziwno)-333(m)-1(i)-333(te\\273,)-334(co)-333(An)28(te)-1(k)-333(Bory)1(na...)]TJ 0 -13.549 Td[({)-413(Da)-55(jta)-413(sp)-27(ok)28(\\363)-56(j)1(,)-413(c)27(h)1(\\252opaki!)-412(Gu)1(lbasiak)-413(\\252\\273e)-413(jedno,)-412(Koz\\252)-1(o)28(w)28(a)-413(dr)1(ugie,)-413(a)-412(bab)28(y)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-244(zaz)-1(d)1(ro\\261\\242)-244(jesz)-1(cz)-1(e)-243(dok\\252ada)-55(j\\241,)-243(za\\261)-244(p)-27(o)-243(pr)1(a)27(wdzie)-243(to)-243(nie)-243(w)-1(i)1(adomo,)-243(jak)-243(b)28(y)1(\\252)-1(o.)1(..)-243(Na)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(n\\241)-278(p)28(y)1(s)-1(ku)1(j\\241,)-278(c)28(ho)-28(\\242)-278(na)-55(jp)-27(o)-28(cz)-1(ciws)-1(za)-278({)-278(zac)-1(z\\241\\252)-278(m)-1(\\363)28(wi\\242)-278(Mateusz)-279(j)1(akim\\261)-279(sm)27(u)1(tn)28(ym)]TJ\nET\nendstream\nendobj\n1699 0 obj <<\n/Type /Page\n/Contents 1700 0 R\n/Resources 1698 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1698 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1703 0 obj <<\n/Length 9164      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(532)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(i)-244(wie)-1(l)1(c)-1(e)-245(strap)1(ion)28(ym)-245(g\\252ose)-1(m,)-244(ale)-245(n)1(ie)-245(s)-1(k)28(o\\253)1(c)-1(zy\\252,)-244(gdy\\273)-245(si\\246)-245(zja)28(wi\\252)-245(mi\\246dzy)-244(nimi)-244(Grze)-1(l)1(a,)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)1(\\363)27(w)-333(br)1(at.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273?)-334(P)1(ietr)-333(\\261)-1(p)1(i\\241)-333(jes)-1(zc)-1(ze)-1(?)-333({)-334(p)29(ytali)-333(cie)-1(k)56(a)28(ws)-1(i)1(.)]TJ 0 -13.549 Td[({)-462(Brat)-462(m\\363)-55(j)-462(ro)-27(dzon)28(y)83(,)-461(ale)-462(kto)-462(tak)-461(rob)1(i,)-462(p)1(s)-1(em)-463(mi)-461(jes)-1(t)-462(o)-27(d)-462(d)1(z)-1(isia)-55(j!)-462(Al)1(e)-463(ta)]TJ -27.879 -13.549 Td[(\\261c)-1(ierw)28(a)-334(wsz)-1(y)1(s)-1(tki)1(e)-1(m)28(u)-333(w)-1(i)1(no)28(w)27(at)1(a!)-334({)-333(wyb)1(uc)27(h)1(n\\241\\252)-333(w\\261)-1(cie)-1(k)1(\\252)-1(o\\261ci\\241.)]TJ 27.879 -13.55 Td[({)-244(A)-244(ni)1(e)-1(p)1(ra)28(wda!)-244({)-244(wrzas)-1(n)1(\\241\\252)-244(naraz)-244(Pi)1(e)-1(tr)1(e)-1(k,)-243(parob)-27(e)-1(k)-243(B)-1(or)1(yn\\363)28(w,)-244(pr)1(z)-1(edziera)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-334(z)-334(p)1(i\\246)-1(\\261ciam)-1(i)-333(d)1(o)-334(G)1(rze)-1(li)-333({)-333(kt\\363r)1(e)-1(n)-333(tak)-333(sz)-1(cz)-1(ek)56(a,)-333(\\252)-1(\\273e)-334(j)1(ak)-333(pies)-1(!)]TJ 27.879 -13.549 Td[(Zdu)1(m)-1(i)1(e)-1(li)-389(si\\246)-390(t\\241)-390(ni)1(e)-1(sp)-28(o)-27(dzian\\241)-389(obron)1(\\241,)-390(a)-389(on)-390(wytr)1(z)-1(\\241c)28(ha)-56(j)1(\\241c)-390(pi\\246\\261c)-1(iami)-390(k)1(rzy-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-237(W)84(\\363)-56(j)1(t)-237(j)1(e)-1(n)1(o)-237(wini)1(e)-1(n)1(!)-237(T)83(o)-236(ona)-237(m)28(u)-236(k)28(orale)-237(zw)27(ozi\\252a?)-237(ona)-236(go)-237(do)-236(k)55(ar)1(c)-1(zm)27(y)-236(c)-1(i)1(\\241)-28(ga\\252a?)]TJ -27.879 -13.549 Td[(ona)-335(p)-27(o)-336(ca\\252yc)27(h)-334(no)-28(cac)27(h)-335(w)-335(s)-1(ad)1(z)-1(ie)-335(w)27(aro)28(w)28(a\\252a,)-335(c)-1(o?)-335(Dobrze)-336(wiem)-1(,)-335(j)1(ak)-335(przyn)1(ie)-1(w)28(ala\\252)-335(i)]TJ 0 -13.55 Td[(ku)1(s)-1(i\\252;)-333(A)-333(mo\\273)-1(e)-334(i)-333(j)1(akic)27(h)-333(k)1(ropl)1(i)-333(jej)-333(z)-1(ad)1(a\\252,)-334(b)29(y)-333(m)27(u)-333(si\\246)-334(ni)1(e)-334(opar)1(\\252a!)]TJ 27.879 -13.549 Td[({)-333(Obr)1(o\\253ca)-334(zap)-27(o)27(wietrzon)28(y!)-333(n)1(ie)-334(cie)-1(p)-333(si\\246)-334(t)1(ak,)-333(b)-28(o)-333(ob)-27(e)-1(rt)1(e)-1(lek)-333(z)-1(gu)1(bisz.)]TJ 0 -13.549 Td[({)-333(Do)28(w)-1(i)1(e)-334(s)-1(i)1(\\246)-1(,)-333(co)-334(j)1(\\241)-334(b)1(ron)1(is)-1(z,)-333(to)-334(ci)-333(z)-1(as\\252ugi)-333(p)-27(o)-28(d)1(nies)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Alb)-27(o)-334(j)1(akie)-334(p)-27(ortk)1(i)-333(p)-28(o)-333(Macie)-1(j)1(u)-333(o)-28(c)28(h\\014ar)1(uj)1(e)-1(!)]TJ 0 -13.549 Td[(A\\273)-334(si\\246)-334(p)-27(ok\\252adal)1(i)-333(z)-1(e)-334(\\261m)-1(i)1(e)-1(c)28(h\\363)28(w)-334(i)-333(p)1(rz)-1(ekp)1(iw)27(a\\253)1(.)]TJ 0 -13.55 Td[({)-264(Ch)1(\\252)-1(op)-263(za)-264(n)1(i\\241)-264(n)1(ie)-264(s)-1(tan)1(ie)-264(si\\246)-264(up)-27(om)-1(n)1(ie\\242)-264(ani)-263(kto)-264(d)1(rugi)1(,)-264(to)-263(ja)-263(bron)1(i\\252)-264(b)-27(\\246)-1(d)1(\\246)-1(.)1(..)-264(A)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(\\246)-1(,)-310(p)1(s)-1(i)1(akrew)-1(,)-309(i)-310(ni)1(e)-1(c)27(h)-309(jes)-1(zcz)-1(e)-310(us\\252ys)-1(z\\246)-311(z\\252e)-311(s\\252o)28(w)27(o,)-310(p)1(i\\246\\261)-1(ci)-310(ni)1(e)-311(p)-27(o\\273)-1(a\\252u)1(j\\246...)-310(P)1(ys)-1(k)56(acz)-1(e)]TJ 0 -13.549 Td[(ju)1(c)27(h)28(y)84(,)-275(ki)1(e)-1(b)28(y)-275(si\\246)-275(to)-275(przytra\\014)1(\\252o)-275(z)-276(kt\\363r)1(e)-1(go)-275(sios)-1(t)1(r\\241)-275(alb)-27(o)-276(k)28(ob)1(iet\\241,)-275(to)-275(b)28(y)-275(mord)1(y)-275(s)-1(tu)1(lili)1(!)]TJ 27.879 -13.549 Td[({)-377(Z)-1(a)28(wrzyj)-377(i)-377(t)28(y)-378(p)29(ys)-1(k)1(,)-378(p)1(arob)1(ie)-378(jeden!)-377(n)1(ie)-378(t)28(w)27(o)-55(ja)-377(s)-1(p)1(ra)28(w)27(a,)-377(p)1(iln)28(u)1(j)-377(s)-1(e)-378(k)28(o\\253)1(s)-1(ki)1(c)27(h)]TJ -27.879 -13.549 Td[(ogon\\363)28(w!)-333({)-333(gruc)28(hn)1(\\241)-1(\\252)-333(na)-333(n)1(ie)-1(go)-333(St)1(ac)27(ho)-333(P\\252osz)-1(k)56(a.)]TJ 27.879 -13.55 Td[({)-333(I)-334(b)1(ac)-1(z,)-333(b)28(y\\261)-334(cz)-1(ego)-333(prz\\363)-28(d)1(z)-1(i)-333(ni)1(e)-334(ob)-27(e)-1(rw)28(a\\252)-333({)-334(d)1(o)-28(da\\252)-333(W)83(ac)28(hn)1(ik.)]TJ 0 -13.549 Td[({)-384(A)-384(o)-28(d)-383(gos)-1(p)-27(o)-28(d)1(arzy)-384(c)-1(i)-383(z)-1(asie,)-384(k)28(o\\252tun)1(ie)-384(jeden!)-384({)-384(d)1(orzuci\\252)-384(jes)-1(zc)-1(ze)-384(kt\\363ry\\261)-384(na)]TJ -27.879 -13.549 Td[(o)-28(d)1(c)27(ho)-27(dn)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-287(Gosp)-28(o)-27(darze)-288(p)1(arsz)-1(y)1(w)27(e,)-287(dziedzic)-1(e)-287(\\261)-1(cierwy!)-287(Ja)-287(s\\252u\\273\\246)-1(,)-287(ale)-287(kry)1(jomo)-287(\\242)-1(wiar)1(te)-1(k)]TJ -27.879 -13.549 Td[(ni)1(e)-304(w)-1(y)1(nosz)-1(\\246)-304(d)1(o)-304(\\233yd)1(a)-304(ni)-303(z)-304(k)28(omory)-303(nicze)-1(g\\363)-55(j)-304(n)1(ie)-304(p)-27(oryw)28(am)-1(!)-303(Jes)-1(zc)-1(ze)-304(me)-304(nie)-304(znacie!)]TJ 0 -13.55 Td[({)-257(krzycz)-1(a\\252)-257(z)-1(a)-257(o)-28(d)1(c)27(ho)-27(dz\\241c)-1(ymi)-257(\\261)-1(p)1(ies)-1(znie,)-257(b)-28(o)-257(n)1(ijak)28(o)-257(s)-1(i)1(\\246)-258(im)-258(zrob)1(i\\252o,)-257(\\273)-1(e)-257(nie)-258(o)-27(dzyw)27(a)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-334(ju)1(\\273)-334(n)1(a)-334(j)1(e)-1(go)-333(wrz)-1(aski,)-333(p)-27(orozc)27(h)1(o)-28(dzili)-333(si\\246)-334(p)-27(o)-333(c)27(ha\\252u)1(pac)27(h)1(.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-359(si\\246)-360(j)1(u\\273)-359(z)-1(r)1(obi\\252,)-359(j)1(e)-1(n)1(o)-360(\\273e)-360(j)1(aki\\261)-359(w)-1(i)1(e)-1(tr)1(z)-1(n)28(y)-359(i)-359(d)1(z)-1(i)1(w)-1(n)1(ie)-360(j)1(as)-1(n)29(y;)-359(da)28(wno)-359(b)-27(o-)]TJ -27.879 -13.549 Td[(wiem)-400(b)29(y\\252o)-399(p)-27(o)-399(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(e)-1(,)-398(a)-399(na)-398(niebie)-399(j)1(e)-1(sz)-1(cz)-1(e)-399(le\\273a\\252)-1(y)-398(s)-1(zerokie)-399(zatoki)-399(z\\363rz)-399(kr)1(w)27(a-)]TJ 0 -13.549 Td[(wyc)27(h)1(,)-241(kieb)28(y)-241(mro)28(w)-1(i)1(s)-1(k)56(a)-241(p)-28(or)1(oz)-1(r)1(yw)27(an)1(e)-1(,)-241(i)-241(wzbiera\\252y)-241(z)-242(w)28(oln)1(a)-242(wielgac)27(h)1(ne)-241(c)27(hm)28(ur)1(z)-1(ysk)56(a.)]TJ 0 -13.55 Td[(Jaki)1(\\261)-383(n)1(ie)-1(p)-27(ok)28(\\363)-55(j)-382(rozwiew)27(a\\252)-382(si\\246)-382(nad)-381(\\261)-1(wiatem,)-382(wiater)-382(p)-27(oh)28(uk)1(iw)27(a\\252)-382(wysok)28(o,)-382(\\273e)-382(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(co)-291(n)1(a)-56(j)1(w)-1(y)1(\\273)-1(sz)-1(e)-290(drzew)27(a)-290(sz)-1(arp)1(a\\252y)-290(s)-1(i)1(\\246)-291(wie)-1(r)1(z)-1(c)28(ho\\252k)56(am)-1(i)1(;)-290(ptaki)-290(j)1(akie\\261)-291(z)-290(w)-1(r)1(z)-1(askiem)-291(p)1(rze)-1(-)]TJ 0 -13.549 Td[(ci\\241)-28(ga\\252y)-417(ni)1(e)-1(d)1(o)-56(j)1(rz)-1(an)1(e)-1(,)-416(g\\246)-1(si)-417(te)-1(\\273)-417(ni)1(e)-418(wiada)-417(cz)-1(em)27(u)-416(krzycz)-1(a\\252y)-417(p)-27(o)-417(ob)-27(e)-1(j)1(\\261)-1(ciac)27(h)1(,)-417(a)-417(psy)]TJ 0 -13.549 Td[(uj)1(ada\\252y)-318(k)1(ie)-1(j)-317(w\\261)-1(ciek\\252e)-1(,)-318(wyb)1(iega)-56(j)1(\\241c)-319(a\\273)-318(na)-318(p)-27(ola.)-318(Za\\261)-318(w)-318(c)27(ha\\252u)1(pac)27(h)-317(te\\273)-319(b)28(y)1(\\252)-1(o)-318(p)-27(o)-28(d)1(ob-)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-300(b)-27(o)-301(p)-27(o)-301(k)28(olacji)-300(n)1(ikto)-300(w)-301(izbac)27(h)-300(n)1(ie)-301(os)-1(t)1(a\\252)-301(ni)-300(na)-300(pr)1(ogac)27(h)-300(siada\\252,)-300(jak)-300(z)-1(wycza)-56(jn)1(ie:)]TJ 0 -13.549 Td[(ws)-1(zysc)-1(y)-333(d)1(o)-334(s\\241s)-1(i)1(a)-1(d)1(\\363)28(w)-334(sz)-1(li)-333(k)1(upi)1(\\241c)-334(s)-1(i)1(\\246)-334(pr)1(z)-1(ed)-333(op\\252otk)56(ami,)-333(a)-334(z)-333(c)-1(ic)28(ha)-333(p)-27(ore)-1(d)1(z)-1(a)-55(j\\241c.)]TJ 27.879 -13.55 Td[(Wie\\261)-273(b)28(y\\252a)-273(ki)1(e)-1(j)-272(wym)-1(ar)1(\\252a;)-273(ni)1(e)-274(r)1(oz)-1(l)1(e)-1(ga\\252y)-273(si\\246)-273(\\261)-1(miec)27(h)28(y)-272(ni)-272(\\261)-1(p)1(ie)-1(wki)1(,)-273(jak)-272(z)-1(a)28(wdy)-272(w)]TJ -27.879 -13.549 Td[(cie)-1(p)1(\\252y)-311(wie)-1(cz)-1(\\363r)1(,)-311(b)-27(o)-311(w)-1(szys)-1(tk)1(ie)-312(sz)-1(ept)1(e)-1(m)-311(raili)-310(s)-1(tr)1(z)-1(eg\\241c)-312(si\\246)-311(dzie)-1(ci)-311(i)-311(d)1(z)-1(ieuc)28(h)-311(i)-311(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(kic)28(h)-333(pr)1(z)-1(ejmo)28(w)27(a\\252o)-333(jedn)1(akie)-334(ob)1(urzenie)-334(i)-333(zgroza.)]TJ 27.879 -13.549 Td[(U)-274(Hank)1(i)-274(te)-1(\\273)-274(s)-1(i)1(\\246)-275(ze)-1(b)1(ra\\252o)-274(na)-274(gan)1(ku)-274(p)1(ar\\246)-275(k)1(um:)-274(pr)1(z)-1(yl)1(e)-1(cia\\252y)-274(si\\246)-275(n)1(ad)-274(n)1(i\\241)-274(u\\273ala\\242)]TJ -27.879 -13.549 Td[(i)-265(co)-265(no)28(w)28(e)-1(go)-265(o)-265(Jagn)1(ie)-265(do)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)-265(P)28(o)-28(cz)-1(y)1(na\\252y)-265(z)-265(r\\363\\273n)28(yc)27(h)-264(s)-1(t)1(ron,)-264(ale)-266(Han)1(k)56(a)-265(o)-28(dr)1(z)-1(ek\\252a)]TJ 0 -13.55 Td[(sm)27(ut)1(nie:)]TJ 27.879 -13.549 Td[({)-333(Ws)-1(t)28(y)1(d)-333(to)-334(i)-333(ob)1(raza)-334(b)-27(os)-1(k)56(a,)-333(ale)-333(i)-334(n)1(iem)-1(a\\252e)-334(n)1(ies)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(.)]TJ\nET\nendstream\nendobj\n1702 0 obj <<\n/Type /Page\n/Contents 1703 0 R\n/Resources 1701 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1701 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1706 0 obj <<\n/Length 8928      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(533)]TJ -330.353 -35.866 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(a)-333(ju)1(tro)-333(c)-1(a\\252a)-333(par)1(a\\014a)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(o)-334(t)28(ym)-333(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a.)]TJ 0 -13.549 Td[({)-333(I)-334(zaraz)-334(p)-27(o)28(wie)-1(d)1(z)-1(\\241,)-333(\\273e)-334(c)-1(o)-333(n)1(a)-56(jgor)1(s)-1(ze)-1(,)-333(to)-333(w)-333(Lip)-28(cac)27(h)-333(si\\246)-334(sta)-56(j)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(a)-334(wsz)-1(ystkie)-333(lip)-27(e)-1(c)28(kie)-334(k)28(ob)1(iet)27(y)-333(wst)28(yd)-333(pad)1(nie.)]TJ 0 -13.549 Td[({)-379(B)-1(o)-379(ws)-1(zy\\242kie)-380(tak)1(ie)-380(\\261w)-1(i)1(\\246)-1(te,)-379(\\273)-1(e)-379(niec)27(h)28(b)29(y)-380(j)1(e)-380(kto)-379(tak)-379(p)1(rz)-1(y)1(niew)27(al)1(a\\252,)-380(t)1(o)-380(sam)-1(o)]TJ -27.879 -13.549 Td[(b)28(y)-333(zrobi)1(\\252)-1(y)1(!)-333({)-334(zas)-1(zyd)1(z)-1(i\\252a)-333(Jagust)28(yn)1(k)55(a.)]TJ 27.879 -13.55 Td[({)-362(Cic)27(h)1(o)-28(cie)-1(,)-361(nie)-362(p)-27(ora)-362(na)-362(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)28(h)28(y!)-362({)-362(zgromi\\252a)-362(j\\241)-362(Han)1(k)56(a)-362(w)-1(y)1(nio\\261le)-362(i)-362(ju)1(\\273)]TJ -27.879 -13.549 Td[(ani)-333(s\\252o)28(w)27(em)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(oz)-1(w)28(a\\252a.)]TJ 27.879 -13.549 Td[(Jes)-1(zc)-1(ze)-407(j)1(\\241)-406(dusi\\252)-406(ws)-1(t)28(yd)1(,)-406(ale)-406(gniew,)-406(c)-1(o)-406(j)1(\\241)-407(zrazu)-406(c)28(h)28(wyc)-1(i)1(\\252)-407(n)1(a)-406(Jagn\\246,)-406(ju)1(\\273)-407(si\\246)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(\\261)-303(zap)-28(o)-27(dzia\\252,)-302(\\273e)-303(sk)28(oro)-302(ku)1(m)27(y)-301(s)-1(i\\246)-302(p)-27(orozc)27(ho)-28(d)1(z)-1(i)1(\\252y)83(,)-302(za)-56(j)1(rza\\252a)-302(na)-302(d)1(rug\\241)-302(stron)1(\\246)-1(,)-301(nib)29(y)]TJ 0 -13.549 Td[(to)-385(do)-385(Macie)-1(j)1(a,)-385(ale)-386(d)1(o)-56(j)1(rz)-1(a)28(wsz)-1(y)-385(Jagu)1(s)-1(i\\246)-385(\\261)-1(p)1(i\\241c)-1(\\241)-385(w)-386(u)1(br)1(aniu)-385(p)1(rzyw)27(ar)1(\\252a)-386(d)1(rzw)-1(i)-385(i)-385(p)-27(o)]TJ 0 -13.549 Td[(omac)27(ku)-333(r)1(oz)-1(ebra\\252a)-333(j\\241)-333(staran)1(nie.)]TJ 27.879 -13.55 Td[({)-320(Niec)27(h)-320(B\\363g)-320(bron)1(i)-320(takiej)-320(dol)1(i!)-320({)-320(m)27(y\\261la\\252a)-320(p)-28(ot)1(e)-1(m)-320(z)-321(dziwn\\241)-320(lit)1(o\\261)-1(ci\\241)-320(i)-320(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(par)1(\\246)-334(razy)-333(te)-1(go)-333(wiec)-1(zora)-333(z)-1(agl\\241d)1(a\\252a)-334(d)1(o)-333(niej.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(m)28(us)-1(i)1(a\\252a)-334(cos)-1(i)1(k)-334(zmiark)28(o)28(w)28(a\\242)-1(,)-333(b)-27(o)-334(r)1(z)-1(ek\\252a)-334(j)1(akb)28(y)-333(n)1(ie)-1(c)28(hc\\241c)-1(y)1(:)]TJ 0 -13.549 Td[({)-333(Jagna)-333(b)-27(e)-1(z)-334(gr)1(z)-1(ec)27(h)28(u)-333(n)1(ie)-334(j)1(e)-1(st,)-333(ale)-334(w)28(\\363)-56(j)1(t)-334(n)1(a)-56(j)1(winn)1(ie)-1(j)1(s)-1(zy)83(.)]TJ 0 -13.549 Td[({)-391(Pr)1(a)28(w)-1(d)1(a,)-391(i)-391(j)1(e)-1(m)28(u)-391(p)-27(o)27(win)1(ni)-390(z)-1(ap)1(\\252)-1(aci\\242)-391(z)-1(a)-391(wsz)-1(ystk)28(o,)-391(j)1(e)-1(m)28(u!)-391({)-391(p)1(rzyt)28(w)-1(i)1(e)-1(r)1(dza\\252)-1(a)]TJ -27.879 -13.55 Td[(tak)-333(za)-56(jad)1(le)-334(Han)1(k)55(a,)-333(j)1(a\\273)-1(e)-333(Pietrek)-333(s)-1(p)-27(o)-56(j)1(rza\\252)-334(n)1(a)-334(n)1(i\\241)-333(dzi\\246)-1(k)28(cz)-1(y)1(nn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(I)-336(dob)1(rze)-337(u)1(tra\\014\\252y)84(,)-336(b)-27(o)-336(do)-336(p)-27(\\363\\271)-1(n)1(a)-336(w)-337(n)1(o)-28(c)-336(s)-1(tar)1(y)-336(P\\252osz)-1(k)56(a)-336(i)-336(Koz\\252y)-336(lata\\252y)-336(p)-27(o)-336(ws)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-28(db)1(ur)1(z)-1(a)-55(j\\241c)-331(lud)1(z)-1(i)-330(pr)1(z)-1(ec)-1(i)1(w)-331(niem)27(u)1(.)-331(P)1(\\252os)-1(zk)55(a)-330(na)28(w)27(et)-331(d)1(o)-331(c)27(h)1(a\\252up)-330(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(\\252)-331(i)-331(n)1(ib)28(y)-330(to)]TJ 0 -13.549 Td[(\\273artami)-333(ga)-1(d)1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(Uda\\252)-333(s)-1(i\\246)-333(nam)-334(w)28(\\363)-56(j)1(t,)-333(w)-334(ca\\252ym)-334(p)-27(o)28(w)-1(i)1(e)-1(cie)-334(n)1(ie)-334(n)1(a)-56(jd)1(z)-1(i)1(e)-334(wi\\246)-1(k)1(s)-1(ze)-1(go)-333(c)27(h)28(w)28(ata!)]TJ 0 -13.55 Td[(A)-345(\\273e)-345(jak)28(o\\261)-345(n)1(ie)-345(bar)1(dzo)-345(m)28(u)-345(b)1(as)-1(o)28(w)28(ali,)-344(do)-344(k)55(ar)1(c)-1(zm)27(y)-344(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252.)-344(B)-1(y)1(\\252)-1(o)-344(ju)1(\\273)-345(tam)]TJ -27.879 -13.549 Td[(kil)1(ku)-469(p)-27(omniejsz)-1(yc)28(h)-469(gosp)-28(o)-27(darzy)83(,)-468(p)-28(osta)28(w)-1(i)1(\\252)-470(i)1(m)-470(gor)1(z)-1(a\\252ki)-469(r)1(az)-470(i)-469(d)1(rugi)1(,)-469(a\\273)-470(ki)1(e)-1(j)-469(si\\246)]TJ 0 -13.549 Td[(p)-27(o)-28(dci\\246li,)-333(sw)27(o)-56(j)1(e)-334(j)1(\\241\\252)-334(wyk\\252ad)1(a\\242)-1(:)]TJ 27.879 -13.549 Td[({)-333(W)83(\\363)-55(jt)-333(nam)-333(s)-1(i\\246)-333(s)-1(p)1(ra)28(w)-1(i)1(a?)-334(co?)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(ie)-1(r)1(w)-1(szyz)-1(n)1(a)-334(m)28(u)-333(pr)1(z)-1(ec)-1(i)1(e)-1(\\273!)-333({)-334(r)1(z)-1(u)1(c)-1(i\\252)-333(os)-1(t)1(ro\\273)-1(n)1(ie)-334(Kob)1(us.)]TJ 0 -13.55 Td[({)-270(T)83(r)1(z)-1(ymam)-270(o)-270(n)1(im)-270(s)-1(w)28(o)-56(j)1(e)-271(i)-269(nie)-270(p)1(usz)-1(cz)-1(\\246)-270(z)-270(g\\246)-1(b)29(y)83(,)-269(trzym)-1(am!)-269({)-270(m)-1(r)1(ucz)-1(a\\252)-270(p)-27(o)-28(d)1(pi\\252y)]TJ -27.879 -13.549 Td[(zdzie)-1(b)1(k)28(o)-334(S)1(ik)28(ora)-333(ws)-1(p)1(iera)-56(j)1(\\241c)-334(si\\246)-334(ci\\246)-1(\\273k)28(o)-333(na)-333(s)-1(zynk)1(w)27(asie)-1(.)]TJ 27.879 -13.549 Td[({)-424(T)83(rzyma)-56(j)-424(se)-425(i)-424(c)-1(o)-424(d)1(rugi)1(e)-1(go)-424(w)-425(z\\246)-1(b)1(ac)27(h)1(:)-424(nikt)1(o)-425(ci)-424(nie)-424(w)-1(y)1(dzie)-1(r)1(a!)-424({)-425(b)1(uc)28(hn)1(\\241\\252)]TJ -27.879 -13.549 Td[(P\\252osz)-1(k)56(a)-281(i)-282(j)1(u\\273)-282(cic)28(ho)-282(j)1(\\241\\252)-282(p)-27(o)-28(d)1(ju)1(dz)-1(a\\242)-281(na)-281(w)27(\\363)-55(jta)-281(pra)28(wi\\241c,)-282(j)1(aki)-281(to)-282(z\\252y)-281(przyk\\252ad)-281(la)-281(lu)1(dzi)]TJ 0 -13.549 Td[(da)-55(je,)-333(jaki)-333(wst)27(y)1(d)-333(pr)1(z)-1(ez)-334(ni)1(e)-1(go)-333(i)-333(r\\363\\273ne)-334(r)1(\\363\\273)-1(n)1(o)-1(\\261ci.)]TJ 27.879 -13.55 Td[({)-333(T)83(rzymam)-334(i)-333(o)-334(t)1(o)-1(b)1(ie)-334(sw)27(o)-55(je,)-333(jeno)-333(c)-1(i)-333(n)1(ie)-334(p)-27(o)28(w)-1(i)1(e)-1(m)-333({)-334(mru)1(c)-1(za\\252)-334(zno)28(wu)-333(Si)1(k)28(ora.)]TJ 0 -13.549 Td[({)-345(Zw)27(ali)1(\\242)-346(go)-345(z)-346(u)1(rz)-1(\\246du)1(,)-345(to)-345(jedyn)1(a)-345(rada,)-345(zaraz)-345(m)27(u)-345(tr)1(\\241ba)-345(z)-1(mi\\246kni)1(e)-1(!)-345({)-345(pr)1(a)28(w)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(sta)27(wia)-55(j\\241c)-298(n)1(o)28(w)27(\\241)-297(kw)28(ate)-1(r)1(k)28(\\246)-1(.)-297({)-297(P)28(os)-1(ad)1(z)-1(i)1(lim)-298(go)-297(na)-297(w)27(\\363)-55(jtost)28(wie)-1(,)-297(to)-297(mo)-28(c)-1(n)1(im)-298(i)-297(ze)-1(sadzi\\242!)]TJ 0 -13.549 Td[(T)83(o,)-367(co)-367(dzisia)-56(j)-366(z)-1(r)1(obi\\252,)-367(wst)27(y)1(d)-367(la)-367(ca\\252e)-1(j)-366(ws)-1(i,)-367(al)1(e)-1(\\242)-367(gorsz)-1(e)-367(rob)1(i\\252,)-367(z)-368(d)1(z)-1(i)1(e)-1(d)1(z)-1(ice)-1(m)-367(za)27(wd)1(y)]TJ 0 -13.549 Td[(trzyma\\252)-334(na)-333(s)-1(zk)28(o)-28(d\\246)-334(gr)1(om)-1(ad)1(y)83(,)-333(s)-1(zk)28(o\\252\\246)-335(c)28(hce)-334(w)-334(Lip)-28(cac)27(h)-333(sta)27(wia\\242,)-333(Miem)-1(c\\363)28(w)-334(na)-334(P)29(o)-28(d-)]TJ 0 -13.549 Td[(les)-1(i)1(e)-286(t)1(o)-285(on)-284(p)-28(on)1(o)-285(d)1(z)-1(iedzico)27(wi)-284(nar)1(ai\\252.)-285(A)-284(h)28(ul)1(a)-285(c)-1(i)1(\\246)-1(giem,)-285(p)1(ije,)-285(sto)-28(d)1(o\\252\\246)-285(s)-1(ob)1(ie)-285(p)-28(osta)28(wi\\252,)]TJ 0 -13.55 Td[(k)28(oni)1(a)-378(p)1(rz)-1(y)1(kup)1(i\\252,)-377(m)-1(i\\246so)-378(co)-378(t)28(yd)1(z)-1(ie\\253)-377(jad)1(a)-378(i)-377(h)1(e)-1(rb)1(at\\246)-378(pi)1(ja)-377({)-378(za)-378(cz)-1(y)1(je)-378(to)-377(pieni)1(\\241dze)-1(?)]TJ 0 -13.549 Td[(co?)-334(Ju)1(\\261)-1(ci,)-333(nie)-333(z)-1(a)-333(s)-1(w)28(o)-56(j)1(e)-1(,)-333(j)1(e)-1(n)1(o)-334(za)-333(gromadzkie)-1(.)1(..)]TJ 27.879 -13.549 Td[({)-453(T)83(o)-453(trzymam)-1(,)-453(co)-453(\\261)-1(wi\\253)1(tuc)28(h)-453(jest)-453(w)27(\\363)-55(jt,)-453(ale)-453(i)-453(t)28(y)-453(b)28(y\\261)-453(s)-1(w)28(o)-56(j)1(e)-1(go)-453(ry)1(ja)-453(c)27(h)1(c)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(ws)-1(ad)1(z)-1(i)1(\\242)-334(do)-333(k)28(oryta!)-333({)-333(pr)1(z)-1(erw)28(a\\252)-334(m)28(u)-333(mam)-1(r)1(ot)-334(S)1(ik)28(ory)84(.)]TJ 27.879 -13.549 Td[({)-333(Sp)1(i\\252)-334(si\\246)-334(i)-333(b)-27(e)-1(l)1(e)-334(c)-1(o)-333(p)-27(o)27(wiad)1(a:)]TJ 0 -13.55 Td[({)-333(Sw)28(o)-56(j)1(e)-334(trzymam)-1(,)-333(\\273e)-334(c)-1(i)1(\\246)-334(na)-333(w)28(\\363)-56(jt)1(a)-334(n)1(ie)-334(wyb)1(ie)-1(r)1(z)-1(em)-1(!)]TJ 0 -13.549 Td[(Od)1(s)-1(u)1(n\\246li)-338(si\\246)-338(o)-28(d)-337(n)1(ie)-1(go)-337(i)-338(cos)-1(i)1(k)-338(d)1(\\252)-1(u)1(go)-338(w)-338(n)1(o)-28(c)-338(ur)1(e)-1(d)1(z)-1(ali)1(.)-338(Za\\261)-338(naza)-56(j)1(utr)1(z)-338(jes)-1(zc)-1(ze)]TJ\nET\nendstream\nendobj\n1705 0 obj <<\n/Type /Page\n/Contents 1706 0 R\n/Resources 1704 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1704 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1709 0 obj <<\n/Length 9684      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(534)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozg\\252o\\261)-1(n)1(iej)-393(j\\246li)-393(roz)-1(gad)1(yw)28(a\\242)-394(c)-1(a\\252\\241)-393(histori)1(\\246)-1(,)-393(b)-27(o)-394(k)1(s)-1(i\\241d)1(z)-394(z)-1(ab)1(ron)1(i\\252)-394(sta)28(wiania)-393(o\\252tarza)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-285(w)28(\\363)-56(j)1(te)-1(m,)-285(j)1(ak)-285(to)-285(co)-285(rok)-285(b)29(yw)27(a\\252o.)-285(J)1(u\\261c)-1(i,)-284(c)-1(o)-285(si\\246)-285(w)-1(sz)-1(y)1(s)-1(tki)1(e)-1(go)-285(d)1(o)28(w)-1(iedzia\\252)-285(i)-285(zaraz)]TJ 0 -13.549 Td[(ran)1(o)-421(k)55(aza\\252)-421(w)27(o\\252a\\242)-421(Dom)-1(i)1(nik)28(o)28(w)28(\\241,)-421(kt\\363ra)-421(b)28(y)1(\\252)-1(a)-421(d)1(opiero)-421(o)-421(p)-27(\\363\\252no)-28(c)28(ku)-421(wr\\363)-28(ci\\252a,)-421(i)-421(tak)1(i)]TJ 0 -13.549 Td[(b)28(y\\252)-333(z\\252)-1(y)84(,)-333(\\273)-1(e)-333(organi)1(s)-1(t\\246)-334(zwym)27(y)1(\\261)-1(la\\252,)-333(a)-333(Jam)27(b)1(ro\\273a)-334(cyb)1(uc)27(h)1(e)-1(m)-333(przekrop)1(i\\252.)]TJ 27.879 -13.549 Td[(\\323w)-364(d)1(z)-1(ie\\253)-363(B)-1(o\\273e)-1(go)-363(C)-1(i)1(a\\252)-1(a)-363(przysz)-1(ed\\252)-364(b)29(y\\252,)-364(j)1(ak)-364(i)-364(p)-27(op)1(rz)-1(edn)1(ie,)-364(wielc)-1(e)-364(p)-27(ogo)-28(dn)29(y)83(,)]TJ -27.879 -13.55 Td[(jeno)-390(dziwni)1(e)-391(du)1(s)-1(z\\241c)-1(y)-390(i)-390(c)-1(i)1(c)27(h)28(y;)-390(n)1(a)-56(jmni)1(e)-1(j)1(s)-1(zy)-390(p)-28(o)28(wiew)-391(ni)1(e)-391(przew)-1(iew)28(a\\252)-391(nad)-390(ziem)-1(i)1(\\241,)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(e)-320(zarno)-319(o)-28(d)-320(wsc)27(ho)-27(du)-319(j\\246\\252o)-320(pr)1(a)-1(\\273y\\242)-320(ni)1(e)-1(mi\\252os)-1(i)1(e)-1(r)1(nie,)-320(\\273e)-321(w)-320(r)1(oz)-1(p)1(alon)28(ym)-320(i)-320(suc)28(h)28(ym)]TJ 0 -13.549 Td[(p)-27(o)27(wietrzu)-354(li\\261c)-1(ie)-355(mdla\\252y)-355(p)-27(o)28(wi\\246)-1(d)1(\\252e)-356(i)-354(z)-1(b)-27(o\\273)-1(a)-354(s)-1(i\\246)-355(k\\252on)1(i\\252y)-355(b)-27(e)-1(zw\\252)-1(ad)1(nie,)-355(p)1(iase)-1(k)-355(p)1(arzy\\252)]TJ 0 -13.549 Td[(w)-334(n)1(ogi)-333(kiej)-333(z)-1(ar)1(z)-1(ewie)-1(,)-333(za\\261)-334(ze)-334(\\261)-1(cian)-333(\\261c)-1(i)1(e)-1(k)56(a\\252y)-333(\\273)-1(ywice,)-334(\\273arem)-334(wytop)1(ione.)]TJ 27.879 -13.549 Td[(F)84(olgo)28(w)27(a\\252)-361(se)-361(P)28(an)-360(Jez)-1(u)1(s)-361(i)-361(p)1(ra\\273)-1(y)1(\\252)-361(co)-1(r)1(az)-361(m)-1(o)-27(c)-1(n)1(ie)-1(j)1(,)-361(al)1(e)-361(nar\\363)-27(d)-361(j)1(akb)28(y)-360(na)-360(to)-361(n)1(ie)]TJ -27.879 -13.549 Td[(baczy\\252;)-354(gdy)1(\\273)-355(j)1(u\\273)-354(o)-28(d)-354(sam)-1(ego)-354(\\261w)-1(i)1(tania)-354(r)1(e)-1(j)1(w)27(ac)28(h)-354(si\\246)-355(cz)-1(y)1(ni\\252)-354(n)1(a)-354(w)-1(si)-354(i)-354(sroga)-354(k)1(r\\246)-1(t)1(ani-)]TJ 0 -13.55 Td[(na:)-325(sz)-1(yk)28(o)28(w)28(ali)-325(s)-1(i\\246)-326(d)1(o)-326(k)28(o\\261c)-1(io\\252a,)-325(a)-326(d)1(z)-1(iew)28(c)-1(zyn)28(y)84(,)-326(kt)1(\\363re)-326(mia\\252y)-326(n)1(os)-1(i\\242)-326(f)1(e)-1(r)1(e)-1(tr)1(on)28(y)-326(i)-325(sypa\\242)]TJ 0 -13.549 Td[(kwiatem)-396(p)1(rz)-1(ed)-395(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(m)-396(n)1(a)-396(p)1(ro)-28(ce)-1(sji)1(,)-396(b)1(iega\\252)-1(y)-395(ki)1(e)-1(j)-395(op)1(arz)-1(on)1(e)-396(jedn)1(e)-396(do)-395(dr)1(u-)]TJ 0 -13.549 Td[(gic)28(h)-416(przymierza\\242)-417(s)-1(tr)1(oiki,)-416(a)-416(cz)-1(es)-1(a\\242)-417(si\\246)-417(i)-416(cud)1(e)-1(\\253)1(k)55(a)-416(wygad)1(yw)27(a\\242)-416(m)-1(i\\246dzy)-416(s)-1(ob)1(\\241,)-416(z)-1(a\\261)]TJ 0 -13.549 Td[(starsi)-324(na)-324(gw)27(a\\252t)-324(stroil)1(i)-324(o\\252tarze)-1(;)-324(sta)28(w)-1(i)1(ali)-324(u)-324(m\\252ynar)1(z)-1(\\363)28(w,)-324(pr)1(z)-1(ed)-324(p)1(le)-1(b)1(ani\\241,)-324(zamias)-1(t)-324(u)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)1(a,)-269(i)-268(przed)-269(Bory)1(nami,)-269(\\273e)-269(Hank)56(a)-269(wraz)-269(z)-269(d)1(om)-1(o)28(wni)1(k)55(ami)-269(j)1(u\\273)-269(o)-28(d)-268(\\261witu)-268(p)-28(omaga\\252a)]TJ 0 -13.55 Td[(Ro)-28(c)27(h)1(o)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zyli)-341(te)-1(\\273)-342(p)1(ra)28(wie)-343(p)1(ierws)-1(i)1(,)-342(a)-342(tak)-341(pi\\246kni)1(e)-343(p)1(rzybr)1(ali,)-341(ja\\273e)-343(si\\246)-342(lud)1(z)-1(i)1(e)-343(zdu)1(-)]TJ -27.879 -13.549 Td[(mie)-1(l)1(i)-333(p)-28(o)28(wieda)-56(j)1(\\241c)-1(,)-333(co)-334(n)1(a)28(w)27(et)-333(pi\\246kni)1(e)-1(j)1(s)-1(zy)-333(o)-28(d)-333(m\\252ynarzo)28(w)27(ego.)]TJ 27.879 -13.549 Td[(I)-249(p)1(ra)28(wd\\246)-249(r)1(z)-1(ekli:)-248(pr)1(z)-1(ed)-248(ganki)1(e)-1(m)-249(stan)1(\\246)-1(\\252a)-249(k)1(ie)-1(b)29(y)-249(k)56(ap)1(licz)-1(k)56(a,)-248(w)-1(y)1(plec)-1(i)1(ona)-249(z)-249(b)1(rzo-)]TJ -27.879 -13.549 Td[(zo)27(wyc)28(h)-360(ga\\252\\246)-1(zi)-360(a)-360(z)-1(i)1(e)-1(leni)1(,)-360(w)-1(y)1(kryl)1(i)-360(j\\241)-360(c)-1(a\\252\\241)-360(w)28(e)-1(\\252ni)1(ak)55(ami,)-360(\\273e)-361(j)1(a\\273)-1(e)-360(gra\\252a)-360(w)-361(o)-27(c)-1(zac)27(h)-360(o)-28(d)]TJ 0 -13.55 Td[(k)28(olor)1(\\363)27(w,)-412(za\\261)-412(w)-413(p)-27(o\\261ro)-28(d)1(ku,)-411(na)-412(p)-27(o)-28(dwy\\273s)-1(zeniu)1(,)-412(stan\\241\\252)-412(o\\252tarz,)-412(p)1(rz)-1(y)1(kryt)28(y)-411(bielu)1(\\261)-1(k)56(\\241)]TJ 0 -13.549 Td[(i)-470(cie\\253k)56(\\241)-470(p\\252ac)28(h)28(t\\241)-470(i)-469(z)-1(asta)27(wion)29(y)-470(\\261w)-1(i)1(e)-1(cam)-1(i)-469(a)-470(kwiatami)-470(w)-470(d)1(oink)56(ac)27(h)1(,)-470(kt\\363r)1(e)-471(J)1(\\363z)-1(k)56(a)]TJ 0 -13.549 Td[(obl)1(e)-1(p)1(i\\252a)-334(w)-333(s)-1(t)1(rz)-1(y)1(\\273)-1(ki)-333(ze)-334(z\\252)-1(ot)1(e)-1(go)-333(pap)1(ie)-1(r)1(u.)]TJ 27.879 -13.549 Td[(Wielki)-301(obr)1(az)-303(M)1(atki)-302(Boskiej)-302(wisia\\252)-302(nad)-301(o\\252tarze)-1(m,)-302(a)-301(p)-28(ob)-27(ok)-302(za)28(w)-1(i)1(e)-1(sili)-302(mn)1(ie)-1(j)1(-)]TJ -27.879 -13.549 Td[(sz)-1(e,)-484(il)1(e)-485(si\\246)-484(jeno)-483(z)-1(mie\\261)-1(ci\\252o.)-484(Za\\261)-484(la)-484(wi\\246ksz)-1(ej)-483(przy)28(oz)-1(d)1(ob)28(y)-483(nad)-483(s)-1(am)28(ym)-484(o\\252tarze)-1(m)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)-1(ze)-1(p)1(ili)-357(kl)1(atk)28(\\246)-358(z)-357(k)28(os)-1(em)-1(,)-357(k)1(t\\363rego)-358(Nastu)1(s)-1(ia)-357(p)1(rzynies\\252)-1(a:)-356(ptak)-357(si\\246)-358(wyd)1(z)-1(i)1(e)-1(ra\\252)-357(p)-27(o)]TJ 0 -13.549 Td[(sw)27(o)-55(jem)27(u,)-333(\\273e)-334(m)28(u)-333(to)-334(W)1(ite)-1(k)-333(z)-333(c)-1(ic)28(ha)-333(pr)1(z)-1(ygwizdy)1(w)27(a\\252.)]TJ 27.879 -13.549 Td[(A)-316(ca\\252e)-317(op)1(\\252otki)-316(o)-27(d)-316(d)1(rogi)-316(wysadzone)-316(b)28(y)1(\\252)-1(y)-315(\\261)-1(wiercz)-1(y)1(n\\241)-316(n)1(a)-316(pr)1(z)-1(em)-1(i)1(an)-316(z)-316(br)1(z)-1(\\363z-)]TJ -27.879 -13.549 Td[(k)56(am)-1(i)1(,)-333(\\273)-1(\\363\\252t)28(ym)-334(p)1(iaskiem)-334(gru)1(b)-28(o)-333(wysypan)1(e)-334(i)-333(z)-1(ar)1(z)-1(u)1(c)-1(on)1(e)-334(tatarak)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-325(znosi\\252a)-325(c)-1(a\\252e)-326(n)1(ar\\246c)-1(ze)-326(mo)-28(d)1(rak)28(\\363)28(w)-1(,)-325(ostr\\363\\273ek;)-325(wyc)-1(zki)-325(p)-27(olnej)-325(i)-325(p)1(rzys)-1(tr)1(a-)]TJ -27.879 -13.55 Td[(ja\\252a)-377(\\261c)-1(i)1(an)28(y)-377(k)56(apli)1(c)-1(zki;)-377(op)1(i\\246\\252)-1(a)-377(te\\273)-378(n)1(imi)-377(obr)1(az)-1(y)84(,)-377(lic)28(h)28(tarze)-378(i)-376(c)-1(o)-377(in)1(o)-377(b)28(y\\252o)-377(mo\\273)-1(n)1(a,)-377(\\273)-1(e)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-451(ziem)-1(i)1(\\246)-452(pr)1(z)-1(ed)-451(o\\252tarzem)-452(p)-27(otrz\\241s)-1(n)1(\\246)-1(\\252a)-451(kwiatami;)-451(n)1(ie)-452(d)1(aro)28(w)27(a\\252a)-451(i)-451(c)28(ha\\252up)1(ie,)]TJ 0 -13.549 Td[(gdy)1(\\273)-358(c)-1(a\\252e)-358(\\261c)-1(i)1(an)28(y)-357(i)-357(okna)-357(gin\\246\\252y)-357(p)-28(o)-27(d)-357(z)-1(ieleni\\241,)-357(za\\261)-358(w)-358(snop)1(ki)-357(dac)28(h)28(u)-357(na)28(wt)28(yk)56(a\\252a)-358(ta-)]TJ 0 -13.549 Td[(tarak)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-287(p)1(rzyk\\252adal)1(i)-287(s)-1(i)1(\\246)-288(d)1(o)-287(rob)-27(ot)28(y)-287(ws)-1(zysc)-1(y)-286(z)-1(ar)1(\\363)27(wn)1(o,)-287(kr)1(om)-1(ie)-287(j)1(e)-1(d)1(nej)-287(Jagu)1(s)-1(i,)-286(kt\\363ra)]TJ -27.879 -13.549 Td[(wymkn\\241)28(ws)-1(zy)-333(s)-1(i)1(\\246)-334(z)-334(c)27(h)1(a\\252up)28(y)-333(w)28(c)-1(ze)-1(sn)28(ym)-333(ran)1(kiem)-1(;)-333(ju)1(\\273)-334(si\\246)-334(n)1(ie)-334(p)-27(ok)55(aza\\252a.)]TJ 27.879 -13.55 Td[(Wp)1(ra)28(wdzie)-318(sk)28(o\\253czyli)-317(p)1(ierws)-1(i,)-316(ale)-317(ju)1(\\273)-318(s\\252o\\253ce)-317(w)-1(y)1(nosi\\252o)-317(s)-1(i)1(\\246)-318(n)1(ad)-317(wie\\261)-317(i)-317(coraz)]TJ -27.879 -13.549 Td[(wi\\246c)-1(ej)-333(tur)1(k)28(ota\\252o)-334(w)28(oz)-1(\\363)28(w,)-333(z)-334(dr)1(ugic)28(h)-333(ws)-1(i)-333(j)1(ad\\241cyc)27(h.)]TJ 27.879 -13.549 Td[(J\\246li)-333(s)-1(i)1(\\246)-334(wi\\246)-1(c)-333(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie)-334(sz)-1(y)1(k)28(o)27(w)28(a\\242)-334(d)1(o)-334(k)28(o\\261c)-1(i)1(o\\252)-1(a.)]TJ 0 -13.549 Td[(Wit)1(e)-1(k)-279(jeno)-280(osta\\252)-280(na)-279(s)-1(tr)1(a\\273)-1(y)-279(w)-280(op\\252otk)56(ac)27(h)1(,)-280(b)-27(o)-280(c)27(h)1(m)-1(ar)1(a)-280(dziec)-1(i)-279(c)-1(isn\\246\\252a)-280(si\\246)-280(ogl\\241-)]TJ -27.879 -13.549 Td[(da\\242)-377(o\\252tarz)-378(i)-376(przygwizdyw)28(a\\242)-378(k)28(oso)27(wi,)-376(\\273)-1(e)-378(ga\\252\\246z)-1(i)1(\\241)-378(o)-27(dgan)1(ia\\252,)-377(a)-378(n)1(ie)-377(m)-1(og\\241c)-377(p)-28(or)1(e)-1(d)1(z)-1(i\\242)]TJ 0 -13.55 Td[(pu)1(s)-1(zcz)-1(a\\252)-267(na)-267(n)1(ic)27(h)-266(s)-1(w)28(o)-56(j)1(e)-1(go)-267(b)-27(o)-28(\\242)-1(k)56(a,)-267(k)1(t\\363ren)-267(s)-1(n)1(ad\\271)-267(pr)1(z)-1(yu)1(c)-1(zon)28(y)84(,)-267(wys)-1(u)29(w)27(a\\252)-267(s)-1(i)1(\\246)-268(cz)-1(a)-55(j\\241co)-267(i)]TJ 0 -13.549 Td[(grozi\\252)-270(os)-1(tr)1(ym)-271(d)1(z)-1(iob)-27(em)-271(w)-270(b)-28(ose)-271(nogi)1(,)-270(ja\\273e)-271(z)-271(wrzas)-1(k)1(ie)-1(m)-270(rozpierzc)27(hal)1(i)-270(s)-1(i\\246)-270(c)-1(o)-270(c)27(h)28(wil)1(a.)]TJ\nET\nendstream\nendobj\n1708 0 obj <<\n/Type /Page\n/Contents 1709 0 R\n/Resources 1707 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1694 0 R\n>> endobj\n1707 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1712 0 obj <<\n/Length 9713      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(535)]TJ -330.353 -35.866 Td[(Sy)1(gnatu)1(rk)56(a)-481(aku)1(ratn)1(ie)-481(si\\246)-481(ozw)27(a\\252a,)-480(kiej)-480(c)-1(a\\252y)-480(dom)-480(w)-1(y)1(s)-1(ze)-1(d)1(\\252.)-481(J\\363zk)56(a)-481(b)1(ieg\\252)-1(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(o)-27(dem)-1(,)-297(w)-297(bi)1(e)-1(li)-297(ca\\252a,)-297(w)-297(trze)-1(wik)56(ac)27(h)-296(z)-1(asz)-1(n)29(uro)28(w)28(an)28(yc)27(h)-296(c)-1(ze)-1(r)1(w)27(on)28(y)1(m)-1(i)-297(t)1(as)-1(iemk)55(ami,)-297(z)]TJ 0 -13.549 Td[(ksi\\241\\273k)55(\\241)-333(w)-334(r)1(\\246)-1(ku)1(.)]TJ 27.879 -13.549 Td[({)-314(Witek,)-314(jak)-314(c)-1(i)-314(si\\246)-315(wid)1(z)-1(\\246?)-315(co?)-315({)-314(p)28(yta\\252a)-314(obraca)-56(j)1(\\241c)-315(s)-1(i)1(\\246)-315(pr)1(z)-1(ed)-314(nim)-314(na)-314(pi\\246c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Galan)28(to,)-333(k)1(ie)-1(j)-333(t)1(a)-334(b)1(ia\\252a)-334(g\\241sk)56(a!)-333({)-334(o)-28(d)1(rze)-1(k)1(\\252)-334(z)-334(p)-27(o)-28(d)1(z)-1(iw)28(em)-1(.)]TJ 0 -13.55 Td[({)-320(T)28(yla)-320(si\\246)-320(na)-319(t)27(y)1(m)-320(roz)-1(u)1(m)-1(i)1(e)-1(sz)-320(c)-1(o)-320(t)28(w)28(\\363)-56(j)-319(b)-27(o)-28(c)-1(i)1(e)-1(k.)-319(Hank)56(a)-320(p)-27(e)-1(d)1(z)-1(i)1(e)-1(li)1(,)-320(c)-1(o)-319(\\273)-1(ad)1(na)-320(w)28(e)]TJ -27.879 -13.549 Td[(ws)-1(i)-333(tak)-333(si\\246)-334(n)1(ie)-334(pr)1(z)-1(y)1(s)-1(tr)1(oi)-334({)-333(tr)1(z)-1(epa\\252a)-333(ob)-28(ci\\241)-28(ga)-55(j\\241c)-334(p)1(rzykr\\363t)1(kie)-334(ob)1(le)-1(cze)-1(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(e)-1(!.)1(..)-333(a)-334(k)28(ol)1(ana)-333(c)-1(i)-333(si\\246)-334(cz)-1(erwieni\\241)-333(pr)1(z)-1(ez)-334(ki)1(e)-1(c)27(k)28(\\246)-333(nib)28(y)-333(g\\246s)-1(i)-333(sp)-27(o)-28(d)-333(pi)1(e)-1(rza.)]TJ 0 -13.549 Td[({)-339(G\\252up)1(i\\261!)-339(\\212apie)-339(w)-340(ogon)-338(s)-1(e)-340(za)-56(j)1(rzyj!)-339(Hal)1(e)-1(,)-339(b)-27(o)-28(\\242k)55(a)-339(sc)27(h)1(o)27(w)28(a)-56(j)1(:)-339(ksi\\241dz)-339(przyj)1(dzie)]TJ -27.879 -13.549 Td[(z)-334(p)1(ro)-28(ce)-1(sj\\241)-333(i)-333(jes)-1(zc)-1(ze)-334(go)-333(obacz)-1(y)-333(i)-333(p)-27(oz)-1(n)1(a)-333({)-334(p)1(rz)-1(estrze)-1(ga\\252a)-333(c)-1(isze)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-267(P)1(ra)28(w)-1(d)1(a,)-267(\\273e)-267(\\261)-1(w)28(arna)-266(i)-267(p)1(rz)-1(y)1(s)-1(tr)1(o)-56(jon)1(a,)-267(a)-267(i)-266(gos)-1(p)-27(o)-28(d)1(yni)-266(te)-1(\\273)-267(si\\246)-267(rozc)-1(zapierza)-267(kiej)]TJ -27.879 -13.55 Td[(ten)-293(i)1(nd)1(or!)-292({)-293(sz)-1(epta\\252)-293(wygl)1(\\241da)-55(j\\241c)-293(z)-1(a)-292(ni)1(m)-1(i)-292(na)-292(drog\\246,)-292(ale)-293(ws)-1(p)-27(om)-1(n)1(ia)28(ws)-1(zy)-293(p)1(rze)-1(strog\\246)]TJ 0 -13.549 Td[(zac)-1(i\\241)-27(gn\\241\\252)-445(b)-27(o)-28(\\242k)55(a)-444(do)-444(do\\252u)-444(p)-28(o)-444(z)-1(i)1(e)-1(mniak)56(ac)28(h,)-444(z)-1(a\\261)-445(la)-444(obr)1(on)28(y)-445(p)1(rze)-1(d)-444(dzie\\242)-1(mi)-444(\\212apie)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(k)55(aza\\252)-225(w)27(ar)1(o)27(w)28(a\\242)-225(przed)-225(o\\252tarze)-1(m,)-225(a)-224(s)-1(am)-225(p)-27(o)-1(l)1(e)-1(cia\\252)-225(do)-224(Mac)-1(i)1(e)-1(j)1(a,)-225(le\\273)-1(\\241ce)-1(go)-225(w)-225(sadzie,)]TJ 0 -13.549 Td[(jak)-333(co)-333(dni)1(a.)]TJ 27.879 -13.549 Td[(Na)-371(w)-1(si)-371(ju)1(\\273)-372(ca\\252kiem)-372(\\261)-1(cic)28(h\\252o,)-371(ws)-1(zys)-1(t)1(kie)-372(w)28(oz)-1(y)-371(p)1(rze)-1(j)1(e)-1(c)27(h)1(a\\252y)-371(i)-371(lud)1(z)-1(i)1(e)-372(pr)1(z)-1(es)-1(zli,)]TJ -27.879 -13.55 Td[(dr)1(ogi)-355(op)1(ustos)-1(za\\252y)83(,)-354(jeno)-354(niek)56(a)-56(j\\261)-355(w)-355(op)1(\\252otk)56(ac)27(h)-354(ba)28(wi\\252y)-355(si\\246)-355(dziec)-1(i,)-354(psy)-355(wyl)1(e)-1(ga\\252y)-354(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-277(s\\252o\\253cu)-276(i)-277(j)1(as)-1(k)28(\\363\\252ki)-276(\\261m)-1(iga\\252y)-276(nad)-276(sta)28(w)27(em)-277(w)-277(r)1(oz)-1(p)1(alon)28(ym)-277(p)-27(o)28(wie)-1(tr)1(z)-1(u)1(,)-277(za\\261)-277(w)-277(k)28(o\\261c)-1(i)1(e)-1(le)]TJ 0 -13.549 Td[(zaraz)-330(p)-27(o)-330(sygn)1(aturce)-330(r)1(oz)-1(p)-27(o)-28(cz)-1(\\246\\252o)-330(si\\246)-330(n)1(ab)-28(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o,)-329(dob)1(ro)-28(dziej)-329(wys)-1(zed\\252)-329(z)-1(e)-330(sum\\241)-329(i)]TJ 0 -13.549 Td[(organ)29(y)-276(zagra\\252y)84(,)-276(al)1(e)-276(s)-1(n)1(ad\\271)-276(wn)1(e)-1(t)-275(p)-28(o)-275(k)56(az)-1(an)1(iu)-275(ud)1(e)-1(r)1(z)-1(y)1(\\252)-1(y)-275(wsz)-1(ystkie)-275(dzw)27(on)28(y)84(,)-275(i)-275(h)28(ukn)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(taki)1(m)-374(\\261pi)1(e)-1(w)28(aniem,)-373(ja\\273e)-373(go\\252)-1(\\246bi)1(e)-374(p)-27(orw)28(a\\252y)-373(si\\246)-373(z)-374(d)1(ac)27(h)1(\\363)27(w,)-372(i)-373(nar)1(\\363)-28(d)-372(j\\241\\252)-373(si\\246)-373(w)-1(y)1(w)27(ala\\242)]TJ 0 -13.55 Td[(wielkimi)-236(d)1(rz)-1(wiami,)-236(a)-236(n)1(ad)-236(n)1(im)-236(w)-1(y)1(c)27(ho)-27(dzi\\252y)-236(c)27(h)1(or\\241)-28(gwie)-236(p)-28(o)-27(c)27(h)28(yl)1(one,)-236(\\261)-1(wiat)1(\\252)-1(a)-236(gor)1(e)-1(j)1(\\241c)-1(e)]TJ 0 -13.549 Td[(i)-363(ob)1(raz)-1(y)84(,)-363(n)1(ie)-1(sione)-363(pr)1(z)-1(ez)-364(d)1(z)-1(iew)28(c)-1(zyn)28(y)-363(w)-363(bi)1(e)-1(l)-363(p)1(rz)-1(y)1(bran)1(e)-1(,)-362(z)-1(a\\261)-363(w)-364(k)28(o\\253)1(c)-1(u)-362(w)-1(y)1(nosi\\252)-364(si\\246)]TJ 0 -13.549 Td[(cz)-1(erw)28(on)28(y)-338(bald)1(ac)27(h)1(,)-339(a)-338(p)-27(o)-28(d)-338(n)1(im)-339(ksi\\241d)1(z)-339(z)-1(e)-338(z)-1(\\252o)-28(cist\\241)-339(mon)1(s)-1(tr)1(ancj\\241)-338(w)-339(r)1(\\246)-1(ku)-338(w)28(oln)1(iu\\261k)28(o)]TJ 0 -13.549 Td[(zs)-1(t\\246p)-28(o)28(w)28(a\\252)-332(z)-1(e)-332(s)-1(c)27(h)1(o)-28(d)1(\\363)27(w.)-332(A)-332(ki)1(e)-1(j)-332(si\\246)-332(jak)28(o)-332(tak)28(o)-332(usta)28(wili)-332(d)1(o)-332(pro)-27(c)-1(es)-1(j)1(i,)-332(cz)-1(yn)1(i\\241c)-333(wskro\\261)]TJ 0 -13.549 Td[(ci\\273)-1(b)29(y)-238(d)1(\\252ug\\241)-237(uli)1(c)-1(\\246,)-237(obrze)-1(\\273on\\241)-237(zapalon)28(y)1(m)-1(i)-237(\\261wie)-1(cami,)-237(dobr)1(o)-28(dziej)-237(z)-1(n)1(o)28(w)-1(u)1(j)-237(z)-1(a\\261pi)1(e)-1(w)28(a\\252:)]TJ 27.879 -13.55 Td[(U)-333(drzwi)-333(T)-1(w)28(oic)28(h)-333(s)-1(to)-55(j\\246,)-333(P)28(anie!..)1(.)]TJ 0 -13.549 Td[(A)-333(w)-1(szys)-1(tek)-333(nar)1(\\363)-28(d)-333(o)-28(d)1(gruc)28(hn)1(\\241\\252)-334(m)28(u)-333(w)-334(j)1(e)-1(d)1(e)-1(n)-333(ogr)1(o)-1(mn)28(y)84(,)-333(nieb)-27(os)-1(i\\246\\273n)28(y)-333(g\\252os)-1(:)]TJ 0 -13.549 Td[(Cz)-1(ek)56(am)-334(na)-333(Tw)27(e)-333(z)-1(mi\\252o)28(w)27(an)1(ie)-1(.)1(..)]TJ 0 -13.549 Td[(I)-277(\\261)-1(p)1(iew)27(a)-55(j\\241c)-278(r)1(usz)-1(y)1(li,)-277(cis)-1(n)1(\\241c)-278(si\\246)-278(w)28(e)-278(wr)1(\\363tniac)28(h)-277(s)-1(m\\246tarza)-277(i)-277(prze)-1(p)29(yc)27(h)1(a)-56(j)1(\\241c)-1(,)-277(gd)1(y\\273)]TJ -27.879 -13.549 Td[(zjazd)-372(b)28(y\\252)-372(ogromn)28(y)84(,)-372(c)-1(a\\252a)-372(p)1(ara\\014a)-372(si\\246)-373(sta)28(wi\\252a,)-372(a)-372(na)28(w)27(et)-372(ws)-1(zystkie)-373(d)1(w)27(or)1(y)83(,)-372(\\273e)-373(d)1(z)-1(i)1(e)-1(-)]TJ 0 -13.55 Td[(dzice)-452(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252y)-451(dob)1(ro)-28(d)1(z)-1(ieja)-450(i)-451(jes)-1(zcz)-1(e)-451(w)-451(as)-1(y\\261c)-1(i)1(e)-452(sz)-1(l)1(i)-451(p)-27(ob)-28(ok)-450(z)-1(e)-451(\\261)-1(wiat\\252em)-1(,)-450(z)-1(a\\261)]TJ 0 -13.549 Td[(bal)1(dac)27(h)-283(ni)1(e)-1(s\\252)-1(y)-283(gos)-1(p)-27(o)-28(d)1(arz)-1(e,)-284(j)1(e)-1(n)1(o)-284(jakb)29(y)-284(na)-284(z\\252o\\261)-1(\\242)-284(Lip)-27(c)-1(zak)28(om)-1(,)-283(s)-1(ame)-285(ob)-27(ce)-285(z)-284(dru)1(gic)27(h)]TJ 0 -13.549 Td[(ws)-1(i)1(.)]TJ 27.879 -13.549 Td[(Ca\\252a)-280(pro)-27(c)-1(es)-1(j)1(a)-280(w)-1(y)1(w)27(ali)1(\\252a)-280(s)-1(i\\246)-280(z)-281(cieni\\363)28(w)-280(s)-1(m\\246tarza)-280(na)-280(p)1(lac)-1(,)-279(ja\\273e)-281(bi)1(a\\252y)-280(i)-280(wrz\\241c)-1(y)]TJ -27.879 -13.549 Td[(o)-28(d)-262(s)-1(p)1(ie)-1(k)1(i,)-263(s\\252o\\253ce)-264(lu)1(n\\246\\252o)-263(w)-263(o)-28(c)-1(zy)83(,)-262(\\273)-1(ywym)-263(ogn)1(ie)-1(m)-263(pr)1(a\\273)-1(\\241c,)-263(\\273e)-264(j)1(u\\273)-263(s)-1(i)1(\\246)-264(w)28(olno)-263(p)-27(osu)28(w)27(al)1(i)]TJ 0 -13.549 Td[(w\\261)-1(r)1(\\363)-28(d)-362(b)1(ic)-1(i)1(a)-363(d)1(z)-1(w)28(on\\363)28(w,)-362(\\261piew)27(\\363)28(w,)-362(w)-362(pac)27(h)1(n\\241cyc)27(h)-361(dymac)27(h)-361(tryb)1(ular)1(z)-1(a)-362(i)-362(w)-362(k\\252\\246bac)27(h)]TJ 0 -13.55 Td[(ku)1(rza)27(wy)84(,)-378(jak)56(a)-378(s)-1(i\\246)-378(wnet)-379(p)-27(o)-28(d)1(nies\\252)-1(a,)-378(w\\261r\\363)-28(d)-377(\\261)-1(wiate\\252)-379(i)-377(te)-1(go)-378(kwiec)-1(ia,)-377(s)-1(yp)1(anego)-378(p)-28(o)-28(d)]TJ 0 -13.549 Td[(nogi)-333(d)1(obr)1(o)-28(dzie)-1(j)1(a.)]TJ 27.879 -13.549 Td[(P)28(o)28(wiedli)-282(si\\246)-282(do)-282(p)1(ie)-1(r)1(ws)-1(ze)-1(go)-282(z)-282(pr)1(a)27(w)28(e)-1(j)-281(s)-1(t)1(ron)28(y)-282(o\\252tar)1(z)-1(a,)-282(d)1(o)-282(Boryn)1(\\363)27(w;)-282(d)1(roga)-282(si\\246)]TJ -27.879 -13.549 Td[(w)-368(m)-1(ig)-368(zap)-28(c)28(ha\\252a,)-368(j)1(a\\273)-1(e)-369(p)1(\\252ot)28(y)-368(trze)-1(sz)-1(cz)-1(a\\252y)84(,)-368(i)-368(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-368(w)28(e)-369(sta)28(w)-369(zlec)-1(ia\\252)-368(z)-369(wysokiego)]TJ 0 -13.549 Td[(br)1(z)-1(egu,)-388(i)-388(p)1(rzydr)1(o\\273)-1(n)1(e)-389(dr)1(z)-1(ew)27(a)-388(si\\246)-389(tr)1(z)-1(\\246s)-1(\\252y)-388(o)-28(d)-387(nap)-27(oru.)-388(W)84(alil)1(i)-388(c)-1(i\\246\\273)-1(k)56(\\241,)-388(r)1(oz)-1(\\261piew)27(an)1(\\241)]TJ 0 -13.55 Td[(ci\\273)-1(b)1(\\241)-304(g\\252\\363)28(w)-304(kiejb)28(y)-303(t\\241)-304(r)1(z)-1(ek)56(\\241)-304(mie)-1(n)1(i\\241c)-1(\\241)-303(s)-1(i)1(\\246)-305(o)-27(d)-304(f)1(arb)1(,)-304(za\\261)-305(\\261ro)-27(dkiem,)-304(n)1(ib)28(y)-303(\\252)-1(\\363)-27(d\\271)-304(na)-303(fali)1(,)]TJ 0 -13.549 Td[(p\\252y)1(n\\241\\252)-336(cz)-1(erw)28(on)28(y)-335(bald)1(ac)27(h)-335(i)-335(c)27(h)28(wia\\252y)-335(s)-1(i\\246)-336(c)28(hor)1(\\241)-28(gwie)-1(,)-335(obr)1(az)-1(y)-335(i)-335(\\261)-1(wi\\246te)-336(\\014gu)1(ry)-335(c)-1(a\\252e)-336(w)]TJ\nET\nendstream\nendobj\n1711 0 obj <<\n/Type /Page\n/Contents 1712 0 R\n/Resources 1710 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1710 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1716 0 obj <<\n/Length 9585      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(536)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(tiu)1(lac)27(h)-333(a)-333(kwiatac)28(h.)]TJ 27.879 -13.549 Td[(P)28(ar)1(li)-401(si\\246)-402(w)-401(t\\252oku)-400(wie)-1(l)1(kim)-401(g\\252o)27(w)28(a)-401(pr)1(z)-1(y)-401(g\\252o)28(wie,)-401(ledwie)-401(ju\\273)-401(dy)1(s)-1(z\\241c)-402(z)-401(\\273)-1(ar)1(u)-401(i)]TJ -27.879 -13.549 Td[(cias)-1(n)1(ot)28(y)83(,)-424(ale)-424(\\261)-1(pi)1(e)-1(w)28(a)-56(j)1(\\241c)-425(z)-425(ca\\252e)-1(go)-424(s)-1(erca,)-424(c)-1(a\\252\\241)-424(m)-1(o)-27(c)-1(\\241,)-424(ws)-1(zystkimi)-424(gardzielami,)-424(\\273)-1(e)]TJ 0 -13.549 Td[(zda\\252o)-360(s)-1(i\\246,)-360(jak)28(ob)29(y)-360(w)-1(r)1(az)-361(z)-361(n)1(imi)-360(\\261)-1(wiat)-360(ca)-1(\\252y)-360(\\261pi)1(e)-1(w)28(a\\252)-361(c)28(h)28(w)27(a\\252\\246)-360(P)28(an)28(u)-360({)-360(jak)28(ob)29(y)-360(te)-361(lip)29(y)]TJ 0 -13.549 Td[(wyni)1(os)-1(\\252e,)-239(t)1(e)-239(c)-1(zarn)1(e)-239(olc)27(h)29(y)83(,)-238(te)-239(r)1(oz)-1(gorza\\252e)-239(w)-239(s\\252o\\253cu)-238(w)27(o)-27(dy)84(,)-239(t)1(e)-239(\\261)-1(mig\\252e)-239(b)1(rz\\363z)-1(ki)1(,)-239(te)-238(s)-1(ad)1(y)]TJ 0 -13.55 Td[(ni)1(s)-1(ki)1(e)-377(i)-377(p)-27(ola)-377(zielone,)-376(i)-377(d)1(ale)-1(k)28(o\\261c)-1(i)-376(okiem)-377(ni)1(e)-1(ob)-55(j)1(\\246)-1(te,)-377(i)-376(c)27(h)1(a\\252up)28(y)84(,)-377(i)-376(ws)-1(zystk)28(o,)-377(co)-377(in)1(o)]TJ 0 -13.549 Td[(b)28(y\\252o,)-430(d)1(ok\\252ada\\252o)-430(s)-1(w)28(\\363)-56(j)-430(wt\\363r)-430(s)-1(erd)1(e)-1(cz)-1(n)29(y)83(,)-430(nab)1(rzm)-1(i)1(a\\252)-1(y)-430(r)1(ado\\261)-1(ci\\241,)-430(\\273e)-431(pie\\261)-1(\\253)-430(ogr)1(om)-1(n)1(a)]TJ 0 -13.549 Td[(rozlew)27(a\\252a)-479(si\\246)-479(sk\\252\\246)-1(b)1(ion)28(y)1(m)-479(grz)-1(motem)-479(w)-479(roz\\273)-1(ar)1(z)-1(on)29(ym)-479(p)-28(o)28(wietrzu)-478(i)-479(ku)-478(b)1(ladem)27(u)]TJ 0 -13.549 Td[(ni)1(e)-1(b)1(u)-333(do)-333(s)-1(\\252o\\253)1(c)-1(a)-333(si\\246)-334(p)-27(o)-28(dn)1(os)-1(i\\252a.)]TJ 27.879 -13.549 Td[(A\\273)-334(li)1(\\261)-1(cie)-334(tr)1(z)-1(\\246s)-1(\\252y)-333(si\\246)-334(o)-28(d)-333(g\\252os\\363)28(w)-334(i)-333(os)-1(t)1(atnie)-333(kwiat)28(y)-333(z)-334(dr)1(z)-1(ew)-334(lec)-1(i)1(a\\252)-1(y)]TJ 0 -13.549 Td[(Pr)1(z)-1(ed)-222(Boryn)1(am)-1(i)-222(k)1(s)-1(i\\241d)1(z)-223(o)-28(d)1(c)-1(zyta\\252)-222(pi)1(e)-1(rwsz)-1(\\241)-222(E)1(w)27(an)1(ge)-1(li\\246)-222(i)-222(o)-28(dp)-27(o)-28(cz)-1(\\241)28(wsz)-1(y)-222(\\271dzie)-1(b)1(-)]TJ -27.879 -13.55 Td[(k)28(o,)-333(p)-27(o)27(wi\\363)-27(d\\252)-333(nar\\363)-27(d)-333(do)-333(m)-1(\\252yn)1(arzo)28(w)27(ego)-334(o\\252tar)1(z)-1(a.)]TJ 27.879 -13.549 Td[(Upa\\252)-440(s)-1(i\\246)-441(b)28(y\\252)-440(jes)-1(zc)-1(ze)-442(p)-27(o)-28(d)1(ni\\363s\\252,)-441(\\273e)-441(ju\\273)-441(zgo\\252a)-441(wytrzyma\\242)-442(b)29(y\\252o)-441(ni)1(e)-442(sp)-28(os\\363b)]TJ -27.879 -13.549 Td[(i)-432(kur)1(z)-433(z)-1(ap)1(ie)-1(r)1(a\\252)-433(gard)1(z)-1(i)1(e)-1(le,)-432(s)-1(\\252o\\253ce)-433(zbiela\\252o)-433(i)-432(p)-27(o)-433(j)1(as)-1(n)28(ym)-432(niebie)-433(j)1(\\246)-1(\\252y)-432(si\\246)-433(z)-1(aci\\241)-28(ga\\242)]TJ 0 -13.549 Td[(bi)1(a\\252a)27(w)28(e)-1(,)-433(d\\252u)1(gie)-434(s)-1(m)28(ugi;)-433(a)-434(rozpr)1(a\\273)-1(on)1(e)-435(p)-27(o)28(wie)-1(t)1(rz)-1(e)-434(tr)1(z)-1(\\246s)-1(\\252o)-434(si\\246)-434(i)-433(m)-1(ieni)1(\\252)-1(o)-433(w)-434(o)-28(cz)-1(ac)27(h)]TJ 0 -13.549 Td[(kiej)-333(wrz\\241te)-1(k)-333({)-333(na)-333(bu)1(rz\\246)-334(si\\246)-334(zbiera\\252o.)]TJ 27.879 -13.55 Td[(Ju)1(\\273)-348(z)-348(dob)1(r\\241)-347(go)-28(dzin)1(\\246)-348(c)-1(i)1(\\241)-28(gn\\246\\252a)-348(si\\246)-348(p)1(ro)-28(ce)-1(sja)-347(i)-347(c)27(h)1(o)-28(\\242)-348(j)1(u\\273)-348(u)1(s)-1(ta)28(w)28(ali)-347(z)-1(e)-348(spi)1(e)-1(ki)1(,)-348(a)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(\\242)-244(i)-244(sam)-244(pr)1(ob)-28(osz)-1(cz)-244(s)-1(p)-27(otni)1(a\\252y)-244(b)28(y\\252)-243(i)-244(cz)-1(erw)28(on)28(y)-244(k)1(ie)-1(j)-243(b)1(urak,)-243(ale)-244(ob)-27(c)27(ho)-27(dzili)-243(z)-245(w)28(oln)1(a,)]TJ 0 -13.549 Td[(p)-27(os)-1(ob)1(nie)-411(wsz)-1(ystkie)-411(o\\252tar)1(z)-1(e,)-411(p)1(rze)-1(d)-410(k)56(a\\273)-1(d)1(ym)-411(wys\\252)-1(u)1(c)27(h)28(u)1(j\\241c)-411(E)1(w)27(an)1(ge)-1(li)1(e)-411(i)-411(\\261piew)27(a)-55(j\\241c)]TJ 0 -13.549 Td[(no)28(w)28(e)-334(pi)1(e)-1(\\261nie.)]TJ 27.879 -13.549 Td[(A)-257(cz)-1(asam)-1(i)1(,)-257(kiej)-257(nar)1(\\363)-28(d)-257(\\271dziebk)28(o)-257(usta)28(ws)-1(zy)-257(m)-1(i)1(lkn)1(\\241\\252)-1(,)-256(\\273)-1(e)-257(ino)-257(tu)1(p)-28(ot)-257(n)1(\\363g)-257(s)-1(i\\246)-257(roz-)]TJ -27.879 -13.55 Td[(lega\\252,)-277(w)-278(on)1(e)-1(j)-276(c)-1(ic)28(ho\\261c)-1(i)-277(n)1(ag\\252e)-1(j)-277(sk)28(o)28(w)-1(r)1(onki)-277(b)29(y\\252o)-277(s)-1(\\252yc)28(ha\\242)-278(n)1(a)-277(p)-28(ol)1(ac)27(h,)-277(k)1(uku)1(\\252k)55(a)-277(gd)1(z)-1(ies)-1(i)1(k)]TJ 0 -13.549 Td[(ku)1(k)55(a\\252a)-272(za)28(wz)-1(i\\246c)-1(i)1(e)-273(i)-271(jask)28(\\363\\252ki)-272(\\261wie)-1(gota\\252y)-271(p)-28(o)-27(d)-272(strze)-1(c)28(hami,)-272(za\\261)-272(dz)-1(w)28(on)28(y)-271(bim)28(ba\\252y)-272(b)-27(ez)-1(-)]TJ 0 -13.549 Td[(ustan)1(nie;)-333(bi\\252y)-333(z)-334(w)28(olna,)-333(a)-333(d\\252u)1(gim,)-333(m)-1(o)-28(cn)28(ym)-333(i)-333(gor\\241c)-1(y)1(m)-334(g\\252os)-1(em.)]TJ 27.879 -13.549 Td[(I)-279(c)28(ho)-28(cia\\273)-279(nar\\363)-27(d)-279(zno)28(wuj)-278(\\261)-1(p)1(iew)27(a\\252,)-278(c)27(ho)-27(c)-1(ia\\273)-279(c)27(h)1(\\252op)28(y)-279(n)1(ie)-279(\\273)-1(a\\252o)28(w)28(a\\252)-1(y)-278(gard)1(z)-1(ieli,)-278(k)28(o-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(t)28(y)-305(wydziera\\252y)-305(s)-1(i\\246)-306(cieniu)1(\\261)-1(k)56(\\241)-305(n)28(ut\\241,)-305(d)1(z)-1(ieci)-306(p)1(isk)55(a\\252y)-305(p)-27(o)-306(sw)27(o)-55(jem)27(u)1(,)-306(a)-305(m)-1(a\\252e)-306(d)1(z)-1(w)28(onk)1(i)]TJ 0 -13.55 Td[(jazgota\\252y)-274(i)-274(o)-27(d)-274(ci\\246)-1(\\273kiego)-274(tu)1(p)-28(otu)-273(du)1(dni)1(a\\252a)-274(w)-1(y)1(s)-1(c)27(h)1(\\252a)-274(z)-1(i)1(e)-1(mia)-274({)-274(a)-274(g\\252os)-1(y)-273(dzw)27(on)1(\\363)27(w)-274(wy-)]TJ 0 -13.549 Td[(nosi\\252y)-280(s)-1(i)1(\\246)-281(nad)-280(ws)-1(zystkim,)-280(\\261)-1(p)1(iew)27(a\\252y)-280(c)-1(zysto)-281(i)-280(g\\363rn)1(ie,)-281(\\261pi)1(e)-1(w)28(a\\252y)-281(n)1(ie)-1(b)-27(osi\\246)-1(\\273ni)1(e)-281(jaki)1(m)-1(\\261)]TJ 0 -13.549 Td[(z\\252)-1(o)-27(c)-1(ist)28(ym,)-312(g\\252\\246)-1(b)-27(okim)-312(g\\252)-1(osem)-1(,)-312(p)1(rz)-1(ej\\246t)28(ym)-312(rado\\261c)-1(i)1(\\241)-313(i)-312(w)28(e)-1(se)-1(l)1(e)-1(m,)-312(a)-312(tak)-312(krze)-1(p)1(k)28(o)-313(i)-312(r)1(oz)-1(-)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)1(ie,)-315(jakb)29(y)-315(kto)-315(w)28(ali\\252)-315(m)-1(\\252otami)-315(w)28(e)-316(s\\252o\\253ce)-1(,)-315(i)1(\\273)-316(ws)-1(zyste)-1(k)-315(\\261wiat)-315(zda\\252)-315(s)-1(i)1(\\246)-316(k)28(oleba\\242)-315(i)]TJ 0 -13.549 Td[(rozdzw)27(an)1(ia\\242.)]TJ 27.879 -13.55 Td[(Za\\261)-373(kiej)-373(sk)28(o\\253czyli)-373(p)1(rze)-1(d)-372(o\\252tarzami,)-373(to)-372(jes)-1(zc)-1(ze)-373(d\\252ugo)-372(trw)28(a\\252o)-373(nab)-27(o\\273)-1(e\\253st)28(w)27(o)]TJ -27.879 -13.549 Td[(w)-334(k)28(o\\261cie)-1(l)1(e)-1(,)-333(d\\252u)1(go)-334(h)29(ucz)-1(a\\252y)-333(organ)28(y)-333(i)-333(r)1(oz)-1(lega\\252y)-333(s)-1(i\\246)-333(\\261)-1(p)1(ie)-1(w)28(ani)1(a.)]TJ 27.879 -13.549 Td[(A)-243(ledwie)-243(co)-243(wys)-1(y)1(pali)-242(s)-1(i\\246)-243(p)1(rz)-1(ed)-242(k)28(o\\261)-1(ci\\363\\252,)-243(b)28(y)1(c)27(h)-242(niec)-1(o)-243(o)-27(c)27(h\\252on)1(\\241\\242)-244(p)-27(o)-28(d)-242(dr)1(z)-1(ew)27(ami,)]TJ -27.879 -13.549 Td[(grosz)-408(j)1(aki)-407(dziadom)-407(wys)-1(u)1(p\\252a\\242)-407(i)-407(z)-1(m\\363)27(wi\\242)-407(s)-1(i)1(\\246)-408(z)-1(e)-407(z)-1(n)1(a)-56(j)1(om)-1(k)56(ami,)-407(kiej)-407(p)-27(o)-28(cie)-1(mni)1(a\\252o)-408(z)]TJ 0 -13.549 Td[(nag\\252a,)-469(daleki)-470(gr)1(z)-1(mot)-470(zah)28(ucza\\252)-470(i)-470(s)-1(u)1(c)27(h)28(y)84(,)-470(p)1(al\\241cy)-470(wiater)-470(zakr\\246c)-1(i\\252,)-469(\\273)-1(e)-470(dr)1(z)-1(ew)27(a)-469(s)-1(i\\246)]TJ 0 -13.549 Td[(zatarga\\252y)-333(i)-333(kur)1(z)-334(s)-1(i)1(\\246)-334(p)-28(o)-27(dn)1(i\\363s)-1(\\252)-333(na)-333(dr)1(ogac)27(h)1(.)]TJ 27.879 -13.55 Td[(Lud)1(z)-1(i)1(e)-334(z)-334(b)1(li\\273s)-1(zyc)27(h)-333(wsi)-334(j)1(\\246)-1(l)1(i)-333(na)-333(gw)27(a\\252t)-333(wyje\\273)-1(d)1(\\273)-1(a\\242.)]TJ 0 -13.549 Td[(Ale)-291(zrazu)-290(in)1(o)-291(d)1(rob)1(n)28(y)-290(des)-1(zc)-1(z)-290(prze)-1(k)1(ropi)1(\\252,)-291(gor)1(\\241c)-1(y)-290(i)-290(rzadk)1(i,)-290(\\273)-1(e)-290(jes)-1(zc)-1(ze)-291(par)1(niej)]TJ -27.879 -13.549 Td[(si\\246)-496(s)-1(ta\\252o)-496(i)-495(du)1(s)-1(zniej,)-495(z)-1(a\\261)-496(s\\252o\\253ce)-496(pali\\252o)-495(niem)-1(i)1(\\252)-1(osiern)1(ie)-1(j)1(,)-496(a)-496(\\273ab)28(y)-495(n)28(uk)56(a\\252y)-496(cisz)-1(ej)-495(i)]TJ 0 -13.549 Td[(se)-1(n)1(niej,)-277(jeno)-278(co)-278(j)1(ak)28(o\\261)-278(p)-28(omro)-27(c)-1(za\\252o,)-278(dal)1(e)-278(s)-1(i\\246)-278(p)1(rzy\\242)-1(mi\\252y)84(,)-278(zah)28(ucz)-1(a\\252y)-277(z)-1(n)1(o)28(w)-1(u)-277(gr)1(z)-1(mot)28(y)]TJ 0 -13.549 Td[(i)-333(na)-333(p)-27(os)-1(in)1(ia\\252ym)-334(wsc)27(h)1(o)-28(dzie)-334(j)1(\\246)-1(\\252y)-333(migota\\242)-334(b)1(lade,)-333(kr\\363tk)1(ie)-334(b\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-1(e.)]TJ 27.879 -13.55 Td[(Burza)-387(sz)-1(\\252a)-386(o)-28(d)-386(ws)-1(c)27(h)1(o)-28(d)1(niej)-386(s)-1(tr)1(on)28(y)83(,)-386(kieb)28(y)-386(s)-1(i)1(e)-1(rp)-27(em)-387(nad)1(c)-1(i\\241)-27(ga\\252)-1(y)-386(ci\\246)-1(\\273kie,)-387(gr)1(a-)]TJ -27.879 -13.549 Td[(nat)1(o)27(w)28(e)-471(p\\252ac)27(h)29(t)27(y)-470(c)27(h)1(m)27(u)1(r,)-471(op)1(ite)-471(desz)-1(cz)-1(em)-471(c)-1(zy)-471(gr)1(adem)-1(,)-470(kr\\363tk)1(i)-471(a)-471(h)29(ukli)1(w)-1(y)-470(wiater)]TJ\nET\nendstream\nendobj\n1715 0 obj <<\n/Type /Page\n/Contents 1716 0 R\n/Resources 1714 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1714 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1719 0 obj <<\n/Length 8816      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(537)]TJ -358.232 -35.866 Td[(wyry)1(w)27(a\\252)-322(si\\246)-322(przo)-28(d)1(e)-1(m,)-322(\\261w)-1(i)1(s)-1(zc)-1(z\\241c)-322(p)-28(o)-322(czubac)28(h)-322(d)1(rze)-1(w)-322(i)-322(szarpi)1(\\241c)-323(zb)-28(o\\273ami,)-322(p)1(tac)-1(t)28(w)28(o)]TJ 0 -13.549 Td[(z)-304(wrzas)-1(k)1(ie)-1(m)-303(ucie)-1(k)56(a\\252o)-303(p)-28(o)-27(d)-303(dac)27(h)29(y)83(,)-303(na)28(w)28(e)-1(t)-303(psy)-303(gna\\252y)-303(do)-303(c)27(h)1(a\\252up)1(,)-304(b)29(yd\\252o)-303(w)-1(y)1(ryw)28(a\\252o)-304(z)]TJ 0 -13.549 Td[(p)-27(\\363l,)-302(a)-302(p)-28(o)-302(dr)1(ogac)27(h)-302(j)1(u\\273)-303(si\\246)-303(k)1(r\\246)-1(ci\\252y)-302(s\\252up)28(y)-302(ku)1(rza)27(wy)84(,)-302(z)-1(a\\261)-302(grz)-1(mot)28(y)-302(rozlega\\252)-1(y)-302(si\\246)-303(coraz)]TJ 0 -13.549 Td[(bl)1(i\\273)-1(ej.)]TJ 27.879 -13.549 Td[(A)-456(ni)1(e)-457(wysz)-1(\\252o)-456(i)-456(dw)28(\\363)-28(c)27(h)-455(pacie)-1(r)1(z)-1(y)84(,)-456(kiej)-456(s\\252o\\253ce)-457(j\\246\\252o)-456(s)-1(i\\246)-456(z)-1(atap)1(ia\\242)-457(w)-456(ru)1(dyc)28(h,)]TJ -27.879 -13.55 Td[(pasku)1(dn)28(yc)28(h)-293(tumanac)28(h)-294(i)-293(pr)1(z)-1(e\\261)-1(wiec)-1(a\\252o)-294(k)1(ie)-1(j)1(b)28(y)-293(z)-1(za)-294(sz)-1(yb)29(y)-294(pr)1(z)-1(epal)1(onej,)-294(gr)1(z)-1(mot)28(y)-294(j)1(u\\273)]TJ 0 -13.549 Td[(zah)28(ur)1(k)28(ota\\252)-1(y)-324(n)1(ad)-324(w)-1(si\\241)-324(i)-324(uderzy\\252)-325(t)1(aki)-324(w)-1(i)1(c)27(her,)-324(\\273e)-325(dziw)-325(d)1(rz)-1(ew)-325(n)1(ie)-325(p)-27(o)28(w)-1(y)1(ryw)28(a\\252,)-325(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(ga\\252\\246)-1(zie)-421(i)-420(snop)1(ki)-420(z)-421(d)1(ac)27(h\\363)28(w)-420(w)-421(ca\\252y)-420(\\261)-1(wiat)-420(p)-27(orw)27(a\\252,)-420(a)-420(pi)1(e)-1(rwsz)-1(e)-420(pior)1(un)28(y)-420(tr)1(z)-1(asn\\246\\252y)]TJ 0 -13.549 Td[(gdzies)-1(i)1(k)-268(w)-268(b)-27(ory;)-267(c)-1(a\\252e)-268(ni)1(e)-1(b)-27(o)-268(w)-268(mig)-268(p)-27(os)-1(i)1(nia\\252o)-268(n)1(ib)28(y)-267(w)27(\\241tr)1(oba,)-267(s)-1(\\252o\\253)1(c)-1(e)-268(zgas)-1(\\252o,)-268(za)28(wy\\252y)]TJ 0 -13.549 Td[(wic)27(h)1(ry)-461(i)-461(pi)1(orun)29(y)-461(j\\246\\252)-1(y)-461(b)1(i\\242)-462(j)1(e)-1(d)1(e)-1(n)-460(z)-1(a)-461(dr)1(ugim,)-461(grzm)-1(ot)28(y)-461(zatrz\\246)-1(s\\252y)-461(z)-1(i)1(e)-1(mi\\241)-461(i)-461(ognie)]TJ 0 -13.549 Td[(b\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-334(oz)-1(d)1(z)-1(i)1(e)-1(ra\\252y)-333(sc)27(h)1(m)27(ur)1(z)-1(on)1(e)-334(ni)1(e)-1(b)-27(o,)-333(o)-28(c)-1(zy)-333(wy\\273)-1(era)-55(j\\241c)-334(b)1(lask)55(ami.)]TJ 27.879 -13.55 Td[(Dom)28(y)-296(d)1(ygota\\252y)-295(o)-28(d)-295(h)28(u)1(k)28(\\363)27(w,)-295(a)-296(wsz)-1(elkie)-295(s)-1(t)28(w)28(orz)-1(eni)1(e)-296(pr)1(z)-1(ycz)-1(ai)1(\\252o)-296(si\\246)-296(w)-296(strac)28(h)28(u.)]TJ 0 -13.549 Td[(Na)-368(s)-1(zc)-1(z\\246\\261)-1(cie)-1(,)-368(\\273e)-369(b)1(urza)-368(pr)1(z)-1(ew)27(ali)1(\\252a)-369(si\\246)-369(stron)1(am)-1(i)1(,)-368(pior)1(un)28(y)-368(b)1(i\\252y)-368(gdzies)-1(ik)-368(d)1(a-)]TJ -27.879 -13.549 Td[(lek)28(o,)-360(w)-1(i)1(c)27(h)28(ur)1(a)-361(p)1(rze)-1(sz)-1(\\252a)-360(nie)-360(p)-28(o)-28(czyniwsz)-1(y)-360(sz)-1(k)28(\\363)-28(d)1(,)-360(nieb)-28(o)-360(za)-1(cz\\246)-1(\\252o)-360(s)-1(i\\246)-361(j)1(u\\273)-361(wyj)1(a\\261)-1(n)1(ia\\242,)]TJ 0 -13.549 Td[(gdy)-353(p)1(rze)-1(d)-352(nies)-1(zp)-27(orami)-353(lun)1(\\241\\252)-354(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(y)-353(d)1(e)-1(sz)-1(cz)-354(i)-353(p)-27(os)-1(z\\252a)-353(tak)56(a)-354(n)1(a)28(w)27(a\\252n)1(ic)-1(a,)-353(\\273e)-354(w)-353(mig)]TJ 0 -13.549 Td[(p)-27(o\\252o\\273)-1(y\\252a)-406(z)-1(b)-27(o\\273)-1(a,)-406(r)1(z)-1(ek)55(a)-406(w)27(ezbra\\252a,)-406(a)-407(ze)-407(ws)-1(zystkic)28(h)-406(ro)28(w)27(\\363)28(w,)-406(m)-1(iedz)-407(i)-406(b)1(ruzd)-406(w)28(ali\\252a)]TJ 0 -13.55 Td[(spienion)1(a)-333(w)27(o)-28(d)1(a.)]TJ 27.879 -13.549 Td[(Usp)-28(ok)28(oi\\252o)-223(si\\246)-224(d)1(opiero)-223(p)-27(o)-28(d)-223(sam)-224(wiecz)-1(\\363r,)-223(d)1(e)-1(szc)-1(z)-223(prze)-1(sz)-1(ed\\252)-223(i)-223(n)1(a)-223(z)-1(ac)27(h)1(\\363)-28(d)-223(s\\252o\\253ce)]TJ -27.879 -13.549 Td[(si\\246)-334(wykr)1(y\\252o)-334(zz)-1(a)-333(c)27(h)1(m)27(u)1(r)-333(c)-1(ze)-1(r)1(w)27(on)1(\\241)-334(i)-333(p)1(romie)-1(n)1(ist\\241)-334(k)1(ul\\241..)1(.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-410(o\\273y\\252y)-410(zno)28(wu,)-410(l)1(ud)1(z)-1(ie)-410(j\\246li)-409(w)-1(y)1(w)-1(i)1(e)-1(ra\\242)-410(d)1(rz)-1(wi)-409(i)-410(wy\\252az)-1(i)1(\\242)-411(n)1(a)-410(\\261)-1(wiat,)-409(i)-410(d)1(y-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\242)-324(z)-323(lu)1(b)-28(o\\261c)-1(i)1(\\241)-323(o)-28(c)27(h)1(\\252o)-28(dzon)28(ym)-323(p)-27(o)27(wietrze)-1(m;)-323(p)1(ac)27(hn)1(ia\\252o)-323(ws)-1(zy\\242k)28(o)-323(p)-28(o)-323(d)1(e)-1(szc)-1(zu,)-323(a)-323(j)1(u\\273)]TJ 0 -13.55 Td[(na)-55(jb)1(arze)-1(j)-369(m\\252o)-28(de)-370(b)1(rz)-1(\\363zki)-369(i)-370(t)1(e)-370(m)-1(i\\246t)28(y)-370(p)-27(o)-369(o)-1(gr)1(\\363)-28(dk)56(ac)28(h;)-369(przem)-1(i\\246k\\252a)-370(ziem)-1(i)1(a)-370(jak)1(b)28(y)-369(s)-1(i\\246)]TJ 0 -13.549 Td[(rozpal)1(i\\252a)-360(w)-360(s)-1(\\252o\\253)1(c)-1(u)1(;)-360(gor)1(z)-1(a\\252y)-360(k)56(a\\252u)1(\\273)-1(e)-360(p)-27(o)-360(dr)1(ogac)27(h,)-359(b\\252ysz)-1(cza)-1(\\252y)-359(li\\261c)-1(i)1(e)-361(i)-359(tra)28(wy)83(,)-359(pal)1(i\\252y)]TJ 0 -13.549 Td[(si\\246)-334(spienion)1(e)-334(w)28(o)-28(dy)84(,)-333(s)-1(p)1(\\252yw)27(a)-55(j\\241ce)-334(z)-334(r)1(adosn)28(ym)-334(b)-27(e)-1(\\252k)28(otem)-334(d)1(o)-334(sta)28(wu.)]TJ 27.879 -13.549 Td[(Lec)-1(iu)1(c)27(h)1(n)28(y)-370(w)-1(i)1(ate)-1(r)1(e)-1(k)-370(p)1(rze)-1(garn)1(ia\\252)-370(p)-28(o)-27(c)27(h)28(yl)1(one)-371(zb)-28(o\\273a)-370(i)-370(rze)-1(\\271w)27(o\\261\\242)-371(mo)-28(cna)-370(i)-370(w)27(e-)]TJ -27.879 -13.549 Td[(se)-1(ln)1(a)-317(bi\\252a)-317(o)-28(d)-317(b)-27(or\\363)28(w)-317(i)-317(p)-28(\\363l)-317(i)-317(p)1(rze)-1(n)1(ik)56(a\\252a)-318(d)1(usz)-1(\\246,)-317(\\273e)-318(ju)1(\\273)-318(d)1(z)-1(iec)-1(i)-316(z)-318(wrzas)-1(ki)1(e)-1(m)-317(bro)-27(dzi\\252y)]TJ 0 -13.55 Td[(p)-27(o)-253(r)1(o)27(w)28(ac)27(h)-252(i)-252(roztok)56(ac)27(h)1(,)-253(p)1(taki)-252(\\242)-1(wierk)56(a\\252y)-252(w)-253(g\\241sz)-1(cz)-1(ac)28(h,)-252(psy)-252(ujad)1(a\\252y)83(,)-252(ksi\\246\\273)-1(e)-253(p)-27(erlicz)-1(k)1(i)]TJ 0 -13.549 Td[(dar)1(\\252y)-399(si\\246)-399(n)1(a)-399(p)1(\\252otac)27(h)1(,)-399(a)-398(ws)-1(zystkie)-399(op)1(\\252otki,)-398(d)1(rogi,)-398(c)27(h)1(a\\252up)28(y)-398(i)-398(ob)-28(ej\\261cia)-399(zadzw)27(on)1(i-)]TJ 0 -13.549 Td[(\\252y)-349(p)1(rze)-1(k)1(rz)-1(y)1(k)55(ami)-348(i)-349(r)1(oz)-1(mo)28(w)27(ami,)-348(na)28(w)27(et)-349(j)1(u\\273)-349(tam)-349(k)56(a)-56(j)1(\\261)-349(k)28(ole)-349(m\\252)-1(y)1(na)-349(za)28(wio)-28(d\\252a)-348(kt\\363ra\\261)]TJ 0 -13.549 Td[(pi)1(e)-1(snec)-1(zk)28(\\246)-1(:)]TJ 27.879 -13.549 Td[(Des)-1(zc)-1(zyk)-333(rosi,)-333(z)-1(r)1(os)-1(i)-333(me)-1(,)-333(zrosi)-333(m)-1(e)-333(-)]TJ 0 -13.55 Td[(Mo)-55(ja)-333(Mar)1(y\\261)-1(,)-333(n)1(o)-28(c)-1(u)1(j)-333(me)-1(;)-333(no)-27(c)-1(u)1(j)-333(m)-1(e!)]TJ 0 -13.549 Td[(Za\\261)-346(o)-28(d)-345(p)-27(ola)-346(wraz)-346(z)-346(ry)1(kiem)-346(s)-1(tad)-345(sp)-28(\\246dzan)28(yc)28(h)-346(d)1(ar\\252y)-345(s)-1(i\\246)-346(j)1(az)-1(got)1(liw)28(e)-1(,)-345(pr\\246dk)1(ie)]TJ -27.879 -13.549 Td[(\\261piewki)-333(paste)-1(r)1(e)-1(k:)]TJ 27.879 -13.549 Td[(P)28(o)28(wiedzia\\252e)-1(\\261,)-333(\\273)-1(e)-334(mni)1(e)-334(w)27(e\\271m)-1(iesz)]TJ 0 -13.549 Td[(Sk)28(or)1(o)-334(\\273ytk)28(o,)-333(j)1(ark)28(\\246)-334(ze)-1(\\273niesz)-1(;)]TJ 0 -13.549 Td[(A)-333(t)28(y\\261)-334(ze)-1(\\273on)-333(i)-333(o)27(wies)-1(ek)-333(-)]TJ 0 -13.55 Td[(T)83(eraz)-334(sz)-1(cz)-1(ek)56(as)-1(z)-333(kie)-1(b)29(y)-333(pies)-1(ek)-333(-)]TJ 0 -13.549 Td[(Oj)-333(d)1(ana,)-333(d)1(a)-334(d)1(ana!..)]TJ 0 -13.549 Td[(Zac)-1(z\\246\\252)-1(y)-415(te\\273)-416(wyj)1(e)-1(\\273d\\273a\\242)-416(w)28(oz)-1(y)-415(lu)1(dzi,)-415(kt\\363rzy)-415(os)-1(tal)1(i)-415(prze)-1(cze)-1(ku)1(j\\241c)-416(b)1(ur)1(z)-1(\\246,)-415(ale)]TJ -27.879 -13.549 Td[(wiela)-246(gos)-1(p)-27(o)-28(d)1(arzy)-246(z)-1(e)-246(s)-1(\\241siedzkic)27(h)-245(ws)-1(i)-245(p)-28(ozos)-1(ta\\252o)-246(w)-246(go\\261c)-1(in)1(ie)-246(u)-246(Lip)-27(cz)-1(ak)28(\\363)28(w:)-246(b)28(yli)-245(to)-246(c)-1(i)1(,)]TJ 0 -13.549 Td[(co)-287(tak)-287(p)-27(o)-28(cz)-1(ciwie)-287(z)-1(j)1(e)-1(c)27(h)1(ali)-286(p)-28(omaga\\242)-287(k)28(obietom.)-287(Bogats)-1(i)-286(ugasz)-1(cz)-1(ali)-286(ic)27(h)-286(p)-27(o)-287(domac)27(h)1(,)]TJ 0 -13.55 Td[(ni)1(e)-310(\\273a\\252uj)1(\\241c)-310(j)1(ad\\252a)-309(n)1(i)-309(n)1(apit)1(k)28(\\363)27(w,)-309(za\\261)-309(biedn)1(iejsz)-1(e)-309(p)-27(o)27(wied\\252y)-308(s)-1(w)28(oic)27(h)-308(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(\\363)27(w)-309(n)1(a)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(z\\246s)-1(tu)1(nek)-334(d)1(o)-333(\\233)-1(y)1(da)-333(b)-28(o)-333(za)27(wd)1(y)-333(ra\\271)-1(n)1(iej)-333(w)-334(ku)1(pie)-333(i)-333(w)-334(k)56(arcz)-1(mie)-334(w)28(e)-1(sele)-1(j)1(.)]TJ\nET\nendstream\nendobj\n1718 0 obj <<\n/Type /Page\n/Contents 1719 0 R\n/Resources 1717 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1717 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1722 0 obj <<\n/Length 9218      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(538)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ch\\252op)1(aki)-299(s)-1(p)1(ro)28(w)28(adzi\\252y)-299(m)27(u)1(z)-1(yk)28(\\246,)-299(\\273e)-300(j)1(u\\273)-299(o)-28(d)-299(n)1(ie)-1(sz)-1(p)-27(or\\363)28(w)-299(roznosi\\252o)-299(s)-1(i)1(\\246)-300(z)-299(k)55(ar)1(c)-1(z-)]TJ -27.879 -13.549 Td[(m)27(y)-333(za)28(w)27(o)-28(d)1(z)-1(eni)1(e)-334(s)-1(k)1(rzypk)28(\\363)28(w,)-333(dud)1(lenie)-333(bas\\363)27(w)-333(i)-333(brz\\246kliwy)-333(w)27(ar)1(k)28(ot)-334(b)-27(\\246b)-28(enk)56(a.)]TJ 27.879 -13.549 Td[(A)-484(i)-484(dru)1(dzy)-484(te)-1(\\273)-484(g\\246)-1(sto)-484(p)-28(o)-28(ci\\241)-28(gal)1(i)-485(n)1(a)-484(z)-1(ab)1(a)27(w)28(\\246)-1(,)-484(gd)1(y\\273)-485(o)-28(d)-483(t)27(y)1(la)-484(c)-1(zas)-1(u)1(,)-485(b)-27(o)-484(o)-28(d)]TJ -27.879 -13.549 Td[(sam)27(yc)28(h)-333(z)-1(ap)1(ust,)-333(nie)-334(zbi)1(e)-1(r)1(ali)-333(s)-1(i\\246)-333(na)-333(\\273)-1(ad)1(n\\241)-333(o)-28(c)27(h)1(ot\\246.)]TJ 27.879 -13.549 Td[(Naro)-27(du)-336(s)-1(i)1(\\246)-337(nasz)-1(\\252o)-336(c)-1(o)-336(niemiara,)-336(m)-1(i)1(e)-1(j)1(s)-1(c)-337(zbr)1(ak\\252o,)-337(\\273e)-337(s)-1(p)-27(oro)-336(m)27(u)1(s)-1(i)1(a\\252)-1(o)-336(s)-1(i)1(\\246)-337(kun)1(-)]TJ -27.879 -13.55 Td[(ten)28(to)28(w)27(a\\242)-325(siedze)-1(n)1(ie)-1(m)-325(n)1(a)-325(b)-27(e)-1(l)1(k)55(ac)28(h)-325(l)1(e)-1(\\273\\241c)-1(yc)28(h)-324(p)-28(o)-28(d)-324(k)56(arcz)-1(m\\241,)-324(jeno)-325(co)-325(cz)-1(as)-325(b)29(y\\252)-325(pi)1(\\246)-1(kn)29(y)]TJ 0 -13.549 Td[(i)-284(na)-284(ni)1(e)-1(b)1(ie)-285(\\261)-1(wieci\\252y)-285(z\\252ote)-285(roztoki)1(,)-285(to)-284(si\\246)-285(g\\246s)-1(to)-284(kw)28(ate)-1(r)1(o)27(w)28(ali)-284(p)-27(o)-28(d)-284(\\261)-1(cian)1(\\241,)-285(k)1(rz)-1(y)1(k)55(a)-55(j\\241c)]TJ 0 -13.549 Td[(na)-333(\\233yd)1(a,)-333(b)28(y)-333(im)-334(n)1(apitk)1(i)-334(wyn)1(os)-1(i)1(\\252.)]TJ 27.879 -13.549 Td[(\\233e)-408(pra)28(wie)-408(s)-1(ama)-408(m\\252)-1(\\363)-27(d\\271)-408(przep)-28(e\\252nia\\252a)-408(k)56(arcz)-1(m\\246,)-408(z)-1(ar)1(az)-409(te\\273)-408(z)-409(miejsc)-1(a)-408(p)-27(os)-1(zli)]TJ -27.879 -13.549 Td[(ob)-27(e)-1(r)1(kiem)-1(,)-487(ja\\273e)-488(\\261c)-1(ian)29(y)-487(i)-488(d)1(yle)-488(p)-27(o)-56(j)1(\\246)-1(k)1(iw)27(a\\252y)84(,)-487(a)-488(p)1(rze)-1(w)28(o)-28(dzi\\252)-487(tanom)-488(k)1(u)-487(niema\\252)-1(em)27(u)]TJ 0 -13.549 Td[(p)-27(o)-28(dziw)28(o)27(wi)-332(Szyme)-1(k)-332(Dominik)28(o)28(w)28(e)-1(j)-332(z)-333(Nastusi\\241.)-332(Darmo)-333(go)-333(m\\252o)-28(d)1(s)-1(zy)83(,)-332(J\\246drzyc)27(h)1(,)-332(o)-28(d-)]TJ 0 -13.55 Td[(w)28(o)-28(dzi\\252,)-429(c)-1(i)1(c)27(ho)-429(moles)-1(tu)1(j\\241c,)-429(ale)-430(n)1(ie)-430(p)-27(oredzi\\252,)-429(b)-27(o)-430(p)1(arob)-27(e)-1(k)-429(si\\246)-429(s)-1(ieln)1(ie)-430(rozo)-28(c)28(ho)-28(ci\\252)-429(i)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a\\242)-315(nie)-315(c)28(hcia\\252,)-314(gorz)-1(a\\252k)28(\\246)-315(p)1(i\\252)-315(i)-314(d)1(o)-315(pi)1(c)-1(ia)-314(Nastk)28(\\246)-315(i)-315(k)56(amrat\\363)28(w)-315(sw)27(oi)1(c)27(h)-314(pr)1(z)-1(yn)1(iew)27(a-)]TJ 0 -13.549 Td[(la\\252,)-307(za\\261)-308(c)-1(o)-307(ur)1(z)-1(n)1(\\246)-1(\\252a)-307(m)27(u)1(z)-1(y)1(k)55(a,)-307(d)1(z)-1(iesi\\241tki)-307(rzuca\\252)-308(gr)1(a)-56(j)1(k)28(om)-1(,)-307(Nastk)28(\\246)-308(wp)-28(\\363\\252)-307(uj)1(mo)27(w)28(a\\252)-308(i)-307(z)]TJ 0 -13.549 Td[(ca\\252)-1(ej)-333(mo)-28(cy)-334(wr)1(z)-1(es)-1(zc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(Je)-1(n)1(o)-334(ostro,)-333(c)28(h\\252op)-27(c)-1(y)84(,)-333(z)-334(k)28(op)28(yta,)-333(p)-27(o)-333(nasz)-1(em)27(u)1(!)]TJ 0 -13.55 Td[(I)-378(n)1(os)-1(i)1(\\252)-378(si\\246)-378(p)-27(o)-378(izbi)1(e)-378(kiej)-377(te)-1(n)-377(r)1(oz)-1(h)28(u)1(k)56(an)28(y)-377(\\271)-1(rebi)1(e)-1(c,)-378(p)-27(okr)1(z)-1(yk)1(uj)1(\\241c)-378(s)-1(r)1(ogo)-378(i)-377(bij)1(\\241c)]TJ -27.879 -13.549 Td[(siarcz)-1(y\\261cie)-334(ob)-27(c)-1(asam)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-375(Wi)1(e)-1(c)27(h)1(c)-1(i)1(e)-1(,)-374(juc)28(ha,)-375(z)-375(b)1(ut\\363)28(w)-375(p)-28(o)28(wytr)1(z)-1(\\241c)28(ha!)-375({)-375(sz)-1(ept)1(a\\252)-375(Jam)27(b)1(ro\\273)-1(y)84(,)-375(r)1(obi\\241c)-375(\\252a-)]TJ -27.879 -13.549 Td[(k)28(omie)-374(grdy)1(k)55(\\241)-373(ku)-373(pij)1(\\241c)-1(ym)-374(p)-27(ob)-27(ok:{)-374(A)-373(w)27(ali)-373(kul)1(as)-1(ami)-374(k)1(ie)-1(j)-373(ce)-1(p)-27(e)-1(m:)-374(j)1(e)-1(szc)-1(ze)-375(m)28(u)-373(s)-1(i\\246)]TJ 0 -13.549 Td[(rozlec)-1(\\241!)-333({)-333(do)-28(d)1(a\\252)-334(g\\252o\\261niej,)-333(b)1(li\\273e)-1(j)-333(si\\246)-334(p)-27(o)-28(d)1(s)-1(u)29(w)27(a)-55(j\\241c)-1(.)]TJ 27.879 -13.55 Td[({)-281(B)-1(aczc)-1(ie)-281(ino,)-281(\\273e)-1(b)29(y\\261)-1(cie)-281(s)-1(ami)-281(c)-1(ze)-1(go)-281(n)1(ie)-282(stracili)-281({)-281(mruk)1(n\\241\\252)-281(Mateusz)-1(,)-281(sto)-56(j)1(\\241c)-1(y)]TJ -27.879 -13.549 Td[(ze)-334(s)-1(w)28(oimi)-333(k)55(amrat)1(a)-1(mi.)]TJ 27.879 -13.549 Td[({)-333(Gorza\\252ki)-333(b)28(ym)-333(s)-1(i\\246)-333(z)-334(w)27(ami)-333(nap)1(i\\252)-333(na)-333(z)-1(go)-28(d)1(\\246)-334({)-333(rze)-1(k\\252)-333(\\261)-1(miej\\241c)-333(s)-1(i\\246)-333(Jam)27(b)1(ro\\273)-1(y)84(.)]TJ 0 -13.549 Td[({)-475(Na\\261)-1(ci,)-475(sz)-1(k)1(\\252)-1(a)-475(j)1(e)-1(n)1(o)-475(nie)-475(z)-1(ec)27(h)1(la)-56(j)1(,)-475(pij)1(anico!)-475({)-475(p)-27(o)-28(da\\252)-475(m)27(u)-474(p)-28(e\\252n)28(y)-475(ki)1(e)-1(lisze)-1(k)-475(i)]TJ -27.879 -13.549 Td[(o)-28(d)1(w)-1(r)1(\\363)-28(ci\\252)-387(si\\246)-387(plecam)-1(i,)-386(b)-27(o)-387(Gr)1(z)-1(ela,)-386(w)27(\\363)-55(jt\\363)28(w)-387(b)1(rat,)-386(z)-1(acz)-1(\\241\\252)-386(im)-387(cos)-1(ik)-386(rai)1(\\242)-387(z)-387(c)-1(ic)28(ha;)-386(\\273)-1(e)]TJ 0 -13.55 Td[(ws)-1(p)1(arci)-435(o)-435(sz)-1(yn)1(kw)28(as)-436(s\\252uc)28(hali)-434(u)28(w)27(a\\273ni)1(e)-436(n)1(ie)-435(bacz)-1(\\241c)-435(na)-435(tan)29(y)-435(ni)-434(na)-435(sto)-56(j)1(\\241c)-1(\\241)-434(prze)-1(d)]TJ 0 -13.549 Td[(ni)1(m)-1(i)-474(gor)1(z)-1(a\\252k)28(\\246:)-474(Sze)-1(\\261c)-1(iu)-473(ic)27(h)-474(b)28(y)1(\\252o)-475(ze)-1(b)1(ran)28(y)1(c)27(h,)-474(wsz)-1(ystki)1(e)-475(na)-55(jp)1(rz)-1(edn)1(iejsz)-1(e)-475(w)28(e)-475(wsi)]TJ 0 -13.549 Td[(par)1(obki)1(,)-364(s)-1(ame)-365(ro)-27(do)28(w)27(e,)-364(gos)-1(p)-27(o)-28(d)1(arskie)-365(syn)28(y)84(,)-364(radzili)-364(p)1(iln)1(o,)-364(ale)-365(\\273e)-365(wrz)-1(ask)-364(si\\246)-365(rob)1(i\\252)]TJ 0 -13.549 Td[(coraz)-434(wi\\246)-1(k)1(s)-1(zy)-433(i)-434(ciasnota,)-433(to)-434(p)1(rze)-1(n)1(ie\\261)-1(li)-433(si\\246)-434(do)-433(\\273)-1(y)1(do)28(ws)-1(ki)1(e)-1(j)-433(stancji,)-433(gdy)1(\\273)-434(alkierz)]TJ 0 -13.549 Td[(za)-56(jmo)28(w)27(al)1(i)-333(gos)-1(p)-27(o)-28(dar)1(z)-1(e)-334(ze)-334(sw)27(oi)1(m)-1(i)-333(go\\261\\242)-1(mi.)]TJ 27.879 -13.55 Td[(Iz)-1(b)1(a)-242(b)29(y\\252a)-242(cias)-1(n)1(a;)-241(z)-1(ap)-27(c)27(h)1(a)-1(n)1(a)-242(r)1(oz)-1(b)1(abran)29(ymi)-242(b)-27(e)-1(t)1(am)-1(i,)-241(w)-242(k)1(t\\363ryc)27(h)-241(spa\\252y)-241(\\233ydzi\\246-)]TJ -27.879 -13.549 Td[(ta,)-366(i\\273)-367(ledwie)-367(si\\246)-367(p)-27(om)-1(ie\\261)-1(cili)-366(p)1(rz)-1(y)-366(stole)-1(.)-366(Jedn)1(a)-367(\\252o)-56(j)1(\\363)28(w)-1(k)56(a)-366(k)28(op)-28(ci\\252a)-367(si\\246)-367(w)-367(mos)-1(i)1(\\246)-1(\\273n)28(ym)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cz)-1(n)1(iku)1(,)-393(wis)-1(z\\241c)-1(y)1(m)-394(u)-392(pu)1(\\252apu.)-392(Grze)-1(l)1(a)-393(pu)1(\\261)-1(ci\\252)-393(\\015asz)-1(k)28(\\246)-393(w)-393(k)28(ole)-1(j)1(k)28(\\246)-1(,)-392(przepili)-392(raz)-393(i)]TJ 0 -13.549 Td[(dr)1(ugi,)-254(ale)-255(j)1(ak)28(o\\261)-255(nik)1(to)-255(n)1(ie)-255(z)-1(aczyna\\252,)-254(z)-255(c)-1(zym)-255(p)1(rz)-1(y)1(s)-1(zli:)-254(ja\\273e)-255(Mateusz)-255(rzuci\\252)-255(d)1(rwi\\241co:)]TJ 27.879 -13.549 Td[({)-333(Zac)-1(zyna)-55(j,)-333(Gr)1(z)-1(ela,)-333(to)-333(kiej)-333(wron)28(y)-333(na)-333(desz)-1(cz)-1(u)-333(tak)-333(siedzita!)]TJ 0 -13.549 Td[(Nie)-394(zd\\241\\273y\\252)-393(Grze)-1(l)1(a)-394(zac)-1(z\\241\\242,)-394(gd)1(y)-393(ws)-1(ze)-1(d)1(\\252)-394(k)28(o)28(w)28(al)-394(i)-393(wita\\252)-393(si\\246)-394(sz)-1(u)1(k)55(a)-55(j\\241c,)-393(k)55(a)-55(j)-393(b)28(y)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(s)-1(i\\241\\261\\242)-1(.)]TJ 27.879 -13.549 Td[({)-474(S)1(m)-1(oli)1(p)28(ysk)-474(ju)1(c)27(h)1(a,)-474(z)-1(a)28(wdy)-473(tam)-474(w)-1(zejdzie,)-474(k)56(a)-56(j)-473(go)-474(ni)1(e)-475(p)-27(os)-1(i)1(ali!)-474({)-474(b)1(uc)28(hn)1(\\241\\252)]TJ -27.879 -13.549 Td[(Mateusz.)-334({)-333(W)-333(t)28(w)27(o)-55(je)-334(r)1(\\246)-1(ce)-1(,)-333(M)1(ic)27(h)1(a\\252!)-334({)-333(d)1(o)-28(da\\252)-333(z)-1(ar)1(az)-1(,)-333(t\\252umi\\241c)-333(gniew.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-334(wyp)1(i\\252)-333(i)-333(nadr)1(abia)-55(j\\241c)-334(min)1(\\241)-334(ozw)28(a\\252)-334(si\\246)-334(\\273artob)1(liwie)-1(:)]TJ 0 -13.549 Td[({)-333(Nie)-334(\\252asym)-334(cud)1(z)-1(yc)28(h)-333(s)-1(ekret\\363)28(w,)-334(a)-333(n)1(ic)-334(tu)1(,)-334(wid)1(z)-1(\\246,)-333(p)-27(o)-334(mnie...)]TJ 0 -13.55 Td[({)-261(Rz)-1(ek\\252e)-1(\\261!)-261(Dobr)1(z)-1(e)-261(w)27(ama)-261(z)-262(Miemc)-1(ami)-261(w)-262(p)1(i\\241tki)-261(n)1(a)-261(s)-1(p)-27(e)-1(r)1(c)-1(e)-262(z)-261(k)56(a)27(w)28(\\241,)-261(to)-261(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(lepiej)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(dzis)-1(i)1(a)-56(j)1(,)-334(w)28(e)-334(\\261wi\\246)-1(to.)1(..)]TJ\nET\nendstream\nendobj\n1721 0 obj <<\n/Type /Page\n/Contents 1722 0 R\n/Resources 1720 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1720 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1725 0 obj <<\n/Length 8790      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(539)]TJ -330.353 -35.866 Td[({)-333(P)28(o)28(w)-1(i)1(adasz)-334(P\\252osz)-1(k)56(a)-333(b)-28(ele)-334(co,)-333(jakb)29(y\\261)-334(si\\246)-334(n)1(api\\252...)-333({)-333(o)-28(d)1(bu)1(rkn)1(\\241\\252)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(o)28(w)-1(i)1(e)-1(d)1(am)-1(,)-333(co)-334(wiad)1(om)-1(o,)-333(\\273e)-334(co)-334(d)1(nia)-333(z)-334(n)1(imi)-333(ha\\253d)1(rycz)-1(y)1(s)-1(z.)]TJ 0 -13.549 Td[({)-333(Kto)-333(m)-1(i)-333(r)1(ob)-28(ot\\246)-334(d)1(a)-56(j)1(e)-1(,)-333(tem)27(u)-333(r)1(obi\\246,)-333(ni)1(e)-334(pr)1(z)-1(ebieram.)]TJ 0 -13.549 Td[({)-333(Rob)-28(ot\\246!)-333(c)-1(o)-333(in)1(s)-1(ze)-1(go)-333(t)28(y)-333(z)-334(ni)1(m)-1(i)-333(ob)1(rabi)1(as)-1(z)-334({)-333(rze)-1(k)1(\\252)-334(cis)-1(zej)-333(W)83(ac)28(hni)1(k.)]TJ 0 -13.549 Td[({)-333(Jak)28(e)-1(\\261)-333(i)-334(z)-333(dzie)-1(d)1(z)-1(i)1(c)-1(em)-334(nasz)-334(las)-333(obrab)1(ia\\252)-333({)-334(d)1(o)-28(da\\252)-333(gro\\271nie)-333(Pry)1(c)-1(ze)-1(k)1(.)]TJ 0 -13.55 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(c)-1(o)-333(na)-333(s\\241d)-333(tra\\014)1(\\252)-1(em...)-333(cie)-1(!)-333(j)1(ak)-334(t)1(o)-334(wsz)-1(ystk)28(o)-333(w)-1(i)1(e)-1(d)1(z)-1(\\241.)]TJ 0 -13.549 Td[({)-428(Da)-55(jta)-427(m)27(u)-427(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-428(r)1(obi)-427(s)-1(w)28(o)-56(j)1(e)-428(b)-28(ez)-428(nas,)-428(to)-428(i)-427(m)27(y)-427(w)27(e\\271m)27(y)-427(s)-1(i\\246)-428(d)1(o)-428(s)-1(w)28(o)-56(j)1(e)-1(go)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(n)1(ie)-1(go)-333({)-333(p)-28(o)28(wiedzia\\252)-334(G)1(rz)-1(ela)-333(patr)1(z)-1(\\241c)-333(m)27(u)-333(ostro)-333(w)-334(\\261lepie)-334(r)1(oz)-1(b)1(ie)-1(gan)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-397(Ki)1(e)-1(j)1(b)28(y)-397(w)28(as)-398(stra\\273ni)1(k)-397(do)-55(jr)1(z)-1(a\\252)-397(p)1(rze)-1(z)-397(okna,)-396(p)-28(om)28(y\\261la\\252b)28(y)84(,)-397(c)-1(o)-396(s)-1(i\\246)-397(zm)-1(a)28(wiacie)]TJ -27.879 -13.549 Td[(na)-333(k)28(ogo!)-333({)-333(nib)28(y)-333(to)-333(d)1(rwi\\252,)-333(ale)-334(w)28(argi)-333(m)27(u)-333(si\\246)-334(ze)-334(z\\252o\\261)-1(ci)-333(trz\\246)-1(s\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(Mo\\273e)-334(i)-333(tak,)-333(jeno)-333(ni)1(e)-334(na)-333(c)-1(i)1(e)-1(b)1(ie)-1(:)-333(za)-333(m)-1(a\\252a\\261)-334(\\014)1(gura,)-333(M)1(ic)27(h)1(a\\252.)]TJ 0 -13.55 Td[(Nacis)-1(n)1(\\241\\252)-334(cz)-1(ap)1(k)28(\\246)-334(i)-333(wys)-1(zed\\252)-333(trzas)-1(k)56(a)-56(j)1(\\241c)-334(dr)1(z)-1(wiami.)]TJ 0 -13.549 Td[({)-333(Przew)27(\\241c)27(h)1(a\\252)-334(cos)-1(i)1(k)-333(i)-334(n)1(a)-333(z)-1(wiad)1(y)-334(p)1(rzylec)-1(i)1(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Got\\363)28(w)-334(teraz)-334(i)1(\\261)-1(\\242)-334(s\\252uc)28(ha\\242)-334(p)-27(o)-28(d)-333(okn)1(o.)]TJ 0 -13.549 Td[({)-333(O)-333(s)-1(ob)1(ie)-334(jesz)-1(cz)-1(e)-334(co)-333(takiego)-334(u)1(s)-1(\\252yszy)83(,)-333(\\273e)-334(m)27(u)-333(si\\246)-334(o)-28(d)1(e)-1(c)28(hce)-1(.)]TJ 0 -13.549 Td[({)-293(C)-1(i)1(c)27(ho)-55(jta)-293(no,)-293(c)27(h)1(\\252op)-28(cy!)-293({)-294(zac)-1(z\\241\\252)-294(G)1(rze)-1(la)-293(ur)1(o)-28(c)-1(zy\\261c)-1(ie.)-293({)-294(M)1(\\363)27(wi\\252em)-294(ju)1(\\273)-294(w)28(am)-1(a,)]TJ -27.879 -13.55 Td[(co)-286(P)29(o)-28(dl)1(e)-1(sie)-286(n)1(ie)-286(p)1(rze)-1(d)1(ane)-285(jes)-1(zc)-1(ze)-286(M)1(ie)-1(mcom)-1(,)-285(al)1(e)-286(leda)-285(j)1(u\\273)-286(d)1(z)-1(i)1(e)-1(\\253)-284(m)-1(og\\241)-285(p)-27(o)-56(j)1(e)-1(c)28(ha\\242)-286(d)1(o)]TJ 0 -13.549 Td[(aktu)1(,)-333(a)-334(n)1(a)28(w)27(et)-334(m\\363)28(wili,)-333(co)-334(n)1(a)-334(p)1(rzysz)-1(\\252y)-333(c)-1(zw)28(a)-1(r)1(te)-1(k)1(.)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(wiem)27(y)-333(i)-333(trze)-1(b)1(a)-333(na)-333(to)-334(zarad)1(z)-1(i)1(\\242)-1(!)-333({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(ni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-334(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Rad\\271,)-334(G)1(rze)-1(la:)-333(n)1(a)-334(k)1(s)-1(i\\241\\273c)-1(e)-333(umie)-1(sz,)-334(gazet\\246)-334(c)-1(zytu)1(jes)-1(z,)-333(to)-333(c)-1(i)-333(\\252ac)-1(n)1(iej.)]TJ 0 -13.549 Td[({)-477(Bo)-477(j)1(ak)-477(Mi)1(e)-1(mc)-1(e)-477(ku)1(pi)1(\\241)-477(i)-477(zas)-1(i)1(\\246)-1(d)1(\\241)-477(o)-477(mie)-1(d)1(z)-1(\\246,)-476(to)-477(b)-27(\\246)-1(d)1(z)-1(ie)-477(j)1(ak)-477(w)-477(G\\363r)1(k)55(ac)28(h:)]TJ -27.879 -13.55 Td[(p)-27(o)27(wietrza)-371(prosto)-371(z)-1(b)1(rakn)1(ie)-372(do)-371(dy)1(c)27(han)1(ia)-371(w)-372(Lip)-27(cac)27(h)-371(i)-371(z)-372(torb)1(ami)-372(p)-27(\\363)-56(j)1(dziem)27(y)-371(alb)-27(o)]TJ 0 -13.549 Td[(do)-333(Hame)-1(r)1(yki.)]TJ 27.879 -13.549 Td[({)-333(A)-334(o)-55(jce)-334(jeno)-333(si\\246)-334(w)28(e)-334(\\252b)28(y)-333(s)-1(k)1(robi)1(\\241,)-334(wzdyc)28(ha)-55(j\\241)-333(i)-333(z)-1(arad)1(z)-1(i)1(\\242)-334(ni)1(e)-334(p)-28(or)1(e)-1(d)1(z)-1(\\241.)]TJ 0 -13.549 Td[({)-333(I)-334(z)-334(gosp)-27(o)-28(dar)1(e)-1(k)-333(nam)-333(nie)-333(ust\\241)-28(pi)1(\\241!)-333({)-334(r)1(z)-1(u)1(c)-1(ali)-333(j)1(e)-1(d)1(e)-1(n)-333(p)-27(o)-333(dru)1(gim.)]TJ 0 -13.549 Td[({)-332(Wie)-1(l)1(k)55(a)-332(rze)-1(cz)-333(Mi)1(e)-1(mc)-1(y)1(!)-333(siedzia\\252y)-333(t)1(aku\\261k)28(o)-333(w)-332(Lis)-1(zk)56(ac)27(h)-332(a)-333(n)1(as)-1(i)-332(ic)28(h)-332(w)-1(y)1(kup)1(ili)]TJ -27.879 -13.55 Td[(co)-377(d)1(o)-377(j)1(e)-1(d)1(nego,)-376(\\273)-1(e)-377(za\\261)-377(w)-376(G\\363rk)56(ac)27(h)-375(b)28(y\\252o)-376(inacz)-1(ej,)-376(to)-376(sam)-1(e)-377(c)28(h\\252op)28(y)-376(win)1(o)27(w)28(ate:)-376(pi\\252y)84(,)]TJ 0 -13.549 Td[(pr)1(o)-28(ce)-1(so)27(w)28(a\\252y)-333(s)-1(i\\246)-333(c)-1(i\\246giem)-334(i)-333(torb)29(y)-333(s)-1(e)-334(wygr)1(a\\252y)83(.)]TJ 27.879 -13.549 Td[({)-461(T)84(o)-461(i)-460(z)-461(P)28(o)-28(dl)1(e)-1(sia)-461(mo\\273e)-1(m)-461(wyk)1(upi)1(\\242)-461(i)-461(p)1(rze)-1(gn)1(a\\242)-1(!)-460({)-461(w)28(o\\252a\\252)-461(J\\246drek)-460(B)-1(or)1(yna,)]TJ -27.879 -13.549 Td[(stryj)1(e)-1(cz)-1(n)29(y)-334(An)29(tk)55(a.)]TJ 27.879 -13.549 Td[({)-375(\\212acno)-375(m\\363)28(w)-1(i)1(\\242)-1(:)-375(t)1(e)-1(raz)-375(ni)1(e)-376(ma)-375(za)-375(c)-1(o)-375(k)1(upi)1(\\242)-1(;)-375(c)28(ho)-28(cia\\273)-375(t)28(ylk)28(o)-375(p)-27(o)-375(sz)-1(e\\261)-1(\\242dzies)-1(i\\241t)]TJ -27.879 -13.55 Td[(ru)1(bli)-239(morg\\246)-239(s)-1(p)1(rze)-1(d)1(a)-56(j\\241,)-239(a)-239(p)-27(ote)-1(m)-239(to)-239(z)-1(n)1(a)-56(j)1(dzie)-1(sz)-240(z)-239(jakie)-239(t)28(ys)-1(i)1(\\241c)-240(z\\252)-1(ot)28(yc)28(h)-239(za)-240(to)-239(sam)-1(o?..)1(.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(o)-55(jce)-334(wydzieli\\252y)-333(k)56(a\\273)-1(d)1(e)-1(m)28(u,)-333(c)-1(o)-333(j)1(e)-1(go,)-333(a)-333(pr\\246dze)-1(j)-332(b)28(y)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\252.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(p)-27(e)-1(wni)1(e)-1(,)-333(j)1(u\\261)-1(ci!)-333(Zaraz)-333(b)28(ym)-334(wiedzia\\252,)-333(c)-1(o)-333(rob)1(i\\242!)-334({)-333(za)27(wr)1(z)-1(es)-1(zc)-1(ze)-1(l)1(i.)]TJ 0 -13.549 Td[({)-494(O)-494(g\\252up)1(ie,)-494(g\\252)-1(u)1(pi)1(e)-1(!)-494(T)83(o)-494(starzy)-494(z)-495(ca\\252e)-1(go)-494(ledwie)-494(s)-1(i\\246)-494(prze\\273)-1(ywi\\241,)-494(a)-494(wy)-494(na)]TJ -27.879 -13.549 Td[(dzia\\252ac)27(h)-332(c)27(hce)-1(cie)-334(n)1(az)-1(b)1(ija\\242)-333(pieni)1(\\246)-1(d)1(z)-1(y!)-333({)-333(pr)1(z)-1(erw)28(a\\252)-334(im)-333(Grze)-1(l)1(a.)]TJ 27.879 -13.549 Td[(Zmilkli)-276(n)1(araz,)-277(b)-27(o)-276(ju\\261ci)-277(tak)56(\\241)-276(pr)1(a)27(wd)1(\\246)-277(rze)-1(k\\252,)-276(jak)1(b)28(y)-276(obu)1(c)27(hem)-277(zw)27(ali)1(\\252)-277(w)-277(ciem)-1(i)1(\\246)-1(.)]TJ 0 -13.55 Td[({)-293(Bieda)-293(n)1(ie)-294(z)-293(tego,)-293(\\273e)-294(o)-55(jco)28(w)-1(i)1(e)-294(n)1(ie)-293(c)27(hc\\241)-293(w)28(am)-294(p)-27(opu)1(\\261)-1(ci\\242)-293(gos)-1(p)-27(o)-28(d)1(arek)-293({)-293(m\\363)28(w)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(dal)1(e)-1(j)-274({)-275(a)-275(j)1(e)-1(n)1(o)-275(z)-275(tego,)-275(\\273e)-276(Li)1(p)-28(ce)-275(m)-1(a)-55(j\\241)-275(ziem)-1(i)-274(z)-1(a)-274(m)-1(a\\252o,)-274(\\273)-1(e)-275(nar)1(o)-28(du)-274(ci\\246)-1(gi)1(e)-1(m)-275(p)1(rz)-1(y)1(b)28(yw)28(a,)]TJ 0 -13.549 Td[(gdy)1(\\273)-301(c)-1(o)-300(starcz)-1(y\\252o)-300(z)-1(a)-300(dziad)1(k)28(\\363)27(w)-300(la)-300(tro)-56(j)1(ga,)-300(m)27(u)1(s)-1(i)-300(si\\246)-301(teraz)-301(rozdziela\\242)-301(la)-300(dzies)-1(i)1(\\246)-1(cior-)]TJ 0 -13.549 Td[(ga.)]TJ 27.879 -13.549 Td[({)-333(\\221wi\\246ta)-334(p)1(ra)28(wda!)-333(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(tak!)-333(Ju\\261c)-1(i)1(!)-333({)-334(sz)-1(eptal)1(i)-334(sfr)1(as)-1(o)28(w)28(ani.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(k)1(up)1(i\\242)-334(P)28(o)-28(d)1(les)-1(ie)-333(i)-334(p)-27(o)-28(d)1(z)-1(i)1(e)-1(li)1(\\242)-1(!)-333({)-333(w)-1(y)1(rw)28(a\\252)-334(si\\246)-334(kt\\363r)1(y\\261)-1(.)]TJ 0 -13.549 Td[({)-333(Kup)1(i\\252b)28(y\\261)-333(w)-1(ie\\261,)-334(j)1(e)-1(n)1(o)-333(pieni\\241d)1(z)-1(e)-333(gdzie)-1(\\261!)-333({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(Mat)1(e)-1(u)1(s)-1(z.)]TJ\nET\nendstream\nendobj\n1724 0 obj <<\n/Type /Page\n/Contents 1725 0 R\n/Resources 1723 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1723 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1728 0 obj <<\n/Length 8885      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(540)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(C)-1(zek)55(a)-55(jta)-333(jeno,)-333(mo\\273e)-334(s)-1(i)1(\\246)-334(i)-333(na)-333(to)-334(zna)-55(jd)1(z)-1(i)1(e)-334(jak)56(a)-333(rada.)]TJ 0 -13.549 Td[(Mateusz)-334(si\\246)-334(n)1(araz)-334(ze)-1(r)1(w)27(a\\252,)-333(bu)1(c)27(h)1(n\\241\\252)-333(pi\\246\\261)-1(ci\\241)-333(w)-334(st\\363\\252)-334(i)-333(zakrzycz)-1(a\\252:)]TJ 0 -13.549 Td[({)-249(A)-249(cz)-1(ek)56(a)-56(j)1(c)-1(ie)-249(i)-249(r)1(\\363b)-28(cie)-249(s)-1(ob)1(ie)-1(,)-248(c)-1(o)-249(c)28(hce)-1(cie)-1(,)-248(m)-1(n)1(ie)-249(ju\\273)-249(d)1(os)-1(y\\242)-249(i)-249(j)1(ak)-249(s)-1(i)1(\\246)-250(ozgniew)28(am)-1(,)]TJ -27.879 -13.549 Td[(to)-333(rzuc\\246)-334(wie)-1(\\261)-333(i)-333(do)-333(m)-1(iasta)-333(p)-28(\\363)-55(jd)1(\\246)-1(,)-333(tam)-333(le)-1(p)1(iej)-333(lud)1(z)-1(i)1(e)-334(\\273)-1(y)1(j\\241.)]TJ 27.879 -13.549 Td[({)-333(T)-1(w)28(o)-56(j)1(a)-333(w)27(ola,)-333(ale)-333(dru)1(dzy)-333(m)27(u)1(s)-1(z\\241)-334(tu)1(ta)-56(j)-332(os)-1(ta\\242)-334(i)-333(j)1(ak)28(o\\261)-334(sobie)-334(r)1(adzi\\242)-1(:)]TJ 0 -13.55 Td[({)-479(A)-479(b)-27(o)-479(ju)1(\\273)-480(wytr)1(z)-1(y)1(m)-1(a\\242)-479(nie)-479(mog\\246)-1(,)-478(ja\\273e)-480(d)1(iabli)-478(c)-1(z\\252o)27(wiek)56(a)-479(bier\\241:)-478(c)-1(iasnota)]TJ -27.879 -13.549 Td[(ws)-1(z\\246)-1(d)1(y)83(,)-286(\\273e)-288(c)28(ha\\252up)29(y)-287(d)1(z)-1(iw)-286(s)-1(i\\246)-287(n)1(ie)-287(rozw)27(ala)-55(j\\241,)-286(t)28(yla)-287(w)-286(nic)28(h)-287(siedzi,)-287(b)1(ieda)-287(j)1(a\\273)-1(e)-287(p)1(is)-1(zcz)-1(y)84(,)]TJ 0 -13.549 Td[(a)-326(tu)-326(p)-27(ob)-28(ok)-326(l)1(e)-1(\\273y)-326(z)-1(iemia)-326(w)27(oln)1(a)-326(i)-326(prosi)-326(s)-1(i)1(\\246)-1(,)-326(b)28(y)-326(j)1(\\241)-326(w)-1(zi\\241\\242...)-326(a)-326(ni)1(e)-327(ugr)1(yz)-1(i)1(e)-1(sz)-1(,)-326(c)28(ho)-28(\\242b)28(y\\261)]TJ 0 -13.549 Td[(zdyc)28(ha\\252)-420(z)-421(g\\252o)-28(d)1(u,)-420(n)1(ie)-420(m)-1(a)-420(j)1(e)-1(j)-420(k)1(up)1(i\\242)-421(za)-420(c)-1(o)-420(i)-420(p)-27(o\\273yc)-1(zy\\242)-420(nie)-420(m)-1(a)-420(o)-28(d)-419(k)28(ogo.)-420(\\233e)-1(b)29(y)-420(to)]TJ 0 -13.549 Td[(w)28(c)-1(i\\363r)1(no\\261c)-1(i)-333(z)-334(tak)1(im)-334(u)1(rz)-1(\\241d)1(z)-1(eni)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(ela)-333(op)-28(o)28(wiedzia\\252,)-333(jak)-333(to)-333(jes)-1(t)-333(in)1(dzie)-1(j)-333(p)-27(o)-333(dr)1(ugic)28(h)-333(kra)-55(jac)27(h)1(.)]TJ 0 -13.55 Td[(S\\252u)1(c)27(h)1(ali)-333(w)-1(zdy)1(c)27(ha)-55(j\\241c)-333(\\273)-1(a\\252o\\261)-1(n)1(ie,)-333(a)-334(M)1(ate)-1(u)1(s)-1(z)-334(m)28(u)-333(pr)1(z)-1(erw)28(a\\252:)]TJ 0 -13.549 Td[({)-331(C\\363\\273)-332(nama)-331(z)-332(tego,)-331(\\273e)-332(dr)1(ugie)-331(dob)1(rze)-332(ma)-56(j\\241!)-330(P)28(ok)55(a\\273)-331(g\\252o)-28(dn)1(e)-1(m)28(u)-331(misk)28(\\246)-332(p)-27(e)-1(\\252n\\241)]TJ -27.879 -13.549 Td[(i)-347(sc)27(h)1(o)27(w)28(a)-56(j)1(,)-347(n)1(ie)-1(c)28(h)-347(si\\246)-347(nac)27(h)1(la)-347(p)1(atrze)-1(n)1(ie)-1(m!)-347(Dob)1(rze)-348(ma)-56(j)1(\\241:)-347(k)56(a)-56(j)-346(in)1(dzie)-1(j)-346(to)-347(j)1(e)-1(st)-347(opi)1(e)-1(k)56(a)]TJ 0 -13.549 Td[(nad)-375(n)1(aro)-28(d)1(e)-1(m,)-375(nie)-376(tak)1(,)-376(j)1(ak)-375(u)-376(n)1(as)-1(,)-375(gd)1(z)-1(ie)-376(k)56(a\\273den)-375(c)27(h\\252op)-375(ro\\261ni)1(e)-376(s)-1(e)-376(j)1(ak)28(o)-376(ta)-375(dzicz)-1(k)56(a)]TJ 0 -13.549 Td[(w)-314(c)-1(zys)-1(t)28(y)1(m)-315(p)-27(olu,)-314(\\273e)-315(cz)-1(y)-314(zmarnieje,)-314(cz)-1(y)-314(te\\273)-315(wyro\\261ni)1(e)-315({)-314(c)-1(o)-314(to)-314(k)28(ogo)-314(s)-1(w)28(\\246)-1(d)1(z)-1(i)1(?)-1(.)1(..)-314(b)-27(e)-1(le)]TJ 0 -13.55 Td[(jeno)-368(p)-28(o)-28(d)1(atki)-369(p)1(\\252ac)-1(i)1(\\252)-1(,)-368(w)-369(re)-1(k)1(rut)28(y)-368(s)-1(ze)-1(d)1(\\252)-369(i)-369(ur)1(z)-1(\\246dom)-369(s)-1(i)1(\\246)-370(n)1(ie)-369(prze)-1(ciwi\\252!)-369(M)1(ie)-1(r)1(z)-1(i)-368(m)-1(i)-368(s)-1(i\\246)]TJ 0 -13.549 Td[(ju)1(\\273)-334(taki)1(e)-334(\\273)-1(y)1(c)-1(ie)-333(i)-333(do)-333(grdy)1(ki)-333(idzie...)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(ela,)-333(wys)-1(\\252u)1(c)27(ha)28(wsz)-1(y)-333(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(,)-333(zac)-1(z\\241\\252)-334(zno)28(wu)-333(s)-1(w)28(o)-56(j)1(e)-1(:)]TJ 0 -13.549 Td[({)-333(Je)-1(st)-333(t)28(ylk)28(o)-333(jeden)-333(s)-1(p)-27(os)-1(\\363b)1(,)-333(\\273)-1(eb)28(y)-333(P)28(o)-28(d)1(les)-1(ie)-333(b)28(y\\252o)-333(nasz)-1(e.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(u)1(n\\246li)-238(s)-1(i\\246)-238(jes)-1(zc)-1(ze)-239(bl)1(i\\273)-1(ej,)-238(b)29(yc)27(h)-238(i)-238(s\\252o)27(w)28(a)-238(nie)-239(straci\\242,)-238(gdy)-238(nar)1(az)-239(taki)-238(wrzas)-1(k)]TJ -27.879 -13.55 Td[(ws)-1(tr)1(z)-1(\\241sn\\241\\252)-358(ca\\252)-1(\\241)-358(k)56(arcz)-1(m\\241,)-358(ja\\273e)-359(sz)-1(y)1(b)28(y)-358(z)-1(ab)1(rz\\246)-1(cz)-1(a\\252y)84(,)-358(i)-358(m)27(u)1(z)-1(yk)56(a)-358(gra\\242)-358(prze)-1(sta\\252a.)-358(P)28(o-)]TJ 0 -13.549 Td[(lec)-1(i)1(a\\252)-403(tam)-403(kt)1(\\363ry\\261)-403(n)1(a)-403(p)1(rze)-1(wiady)-402(i)-402(op)-27(o)27(wiad)1(a\\252)-403(p)-27(otem)-403(z)-1(e)-403(\\261mie)-1(c)28(hem)-1(,)-402(co)-403(si\\246)-403(sta\\252o:)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-488(n)1(arob)1(i\\252a)-488(taki)1(e)-1(go)-487(piek\\252a,)-487(przylecia\\252a)-488(b)-27(o)28(w)-1(i)1(e)-1(m)-488(z)-488(ki)1(jem)-488(p)-28(o)-487(s)-1(y)1(n\\363)28(w,)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(a)-452(ic)27(h)-452(bi\\242)-453(i)-453(si\\252\\241)-453(do)-453(d)1(om)27(u)-452(z)-1(ab)1(iera\\242,)-453(jeno)-453(co)-453(si\\246)-454(op)1(arli)1(,)-453(matk)28(\\246)-454(z)-453(k)56(arcz)-1(m)28(y)]TJ 0 -13.549 Td[(wyp)-27(\\246)-1(d)1(z)-1(il)1(i,)-315(a)-316(teraz)-316(S)1(z)-1(y)1(m)-1(ek)-315(j\\241\\252)-315(pi\\242)-316(n)1(a)-316(u)1(m)-1(or)1(,)-315(z)-1(a\\261)-316(J\\246dr)1(z)-1(y)1(c)27(h)-315(pi)1(jan)28(y)-315(do)-315(cna)-315(rycz)-1(y)-315(w)]TJ 0 -13.55 Td[(k)28(omini)1(e)-1(.)]TJ 27.879 -13.549 Td[(Nie)-351(p)28(y)1(tali)-350(o)-351(wi\\246c)-1(ej,)-350(gdy)1(\\273)-351(Grze)-1(la)-350(zac)-1(z\\241\\252)-351(wyk\\252ada\\242)-351(sw)28(\\363)-56(j)-350(s)-1(p)-27(os\\363b,)-350(kt\\363ry)-350(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(taki)1(:)-330(z)-331(d)1(z)-1(iedzice)-1(m)-330(s)-1(i)1(\\246)-331(p)-27(ogo)-28(dzi\\242)-330(i)-330(w)-330(z)-1(amian)-330(morgi)-329(las)-1(u)-329(z)-1(a\\273\\241da\\242)-330(p)-28(o)-330(cz)-1(t)1(e)-1(ry)-329(m)-1(or)1(gi)]TJ 0 -13.549 Td[(p)-27(ola)-333(na)-333(P)28(o)-28(d)1(le)-1(siu)1(!)]TJ 27.879 -13.549 Td[(Zdu)1(m)-1(i)1(e)-1(li)-259(s)-1(i)1(\\246)-261(wielce)-260(i)-260(strasz)-1(n)1(ie)-260(roz)-1(r)1(ado)28(w)28(ali)-260(tak)56(\\241)-260(mo\\273liw)28(o\\261)-1(ci\\241,)-260(a)-259(Grze)-1(la)-259(jes)-1(z-)]TJ -27.879 -13.55 Td[(cz)-1(e)-461(p)-27(o)27(wiad)1(a\\252,)-461(co)-461(tak)-460(sam)-1(o)-460(s)-1(i\\246)-461(u)1(go)-28(dzi\\252a)-460(jedna)-460(wie)-1(\\261)-461(k)28(o\\252o)-460(P\\252o)-28(c)27(k)56(a,)-460(o)-461(cz)-1(ym)-460(b)28(y\\252)]TJ 0 -13.549 Td[(wycz)-1(yta\\252)-333(w)-334(gazec)-1(ie.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(a)-334(n)1(as)-1(za,)-333(c)27(h\\252op)-27(cy!)-333(\\233)-1(y)1(dzie)-1(,)-333(gor)1(z)-1(a\\252ki)1(!)-334({)-333(kr)1(z)-1(yk)1(n\\241\\252)-333(P\\252os)-1(zk)56(a)-334(w)28(e)-334(d)1(rzw)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(Za)-334(tr)1(z)-1(y)-333(morgi)-333(b)-27(oru)-333(ry)1(c)27(h)28(t)28(yk)-333(b)28(y)-333(n)1(am)-334(wypad)1(\\252o)-334(d)1(w)27(an)1(a\\261)-1(cie)-334(p)-27(ola!)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(am)-334(z)-334(d)1(z)-1(i)1(e)-1(si\\246)-1(\\242,)-333(c)-1(a\\252a)-333(gos)-1(p)-27(o)-28(d)1(ark)56(a!)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-1(c)28(h)28(b)28(y)-333(d)1(o)-28(da\\252)-333(c)-1(o)-333(ni)1(e)-1(b)1(\\241d\\271)-334(kr)1(z)-1(ak)28(\\363)28(w)-333(na)-333(opa\\252.)]TJ 0 -13.55 Td[({)-333(A)-334(za)-333(pa\\261niki)-333(m\\363g\\252b)28(y)-333(da\\242)-333(c)27(ho)-27(\\242)-334(p)-28(o)-333(mord)1(z)-1(e)-334(\\252\\241ki)1(.)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-1(co)-333(bu)1(dul)1(c)-1(u)-333(n)1(a)-334(c)28(ha\\252up)29(y!)-333({)-334(w)28(o\\252ali)-333(jeden)-333(p)1(rz)-1(ez)-334(d)1(rugi)1(e)-1(go.)]TJ 0 -13.549 Td[({)-323(Je)-1(szc)-1(ze)-324(tro)-27(c)27(h\\246,)-323(a)-323(b)-28(\\246dziec)-1(i)1(e)-324(c)27(h)1(c)-1(ieli,)-323(\\273eb)28(y)-323(w)27(am)-323(do)-28(d)1(a\\252)-324(p)-27(o)-323(k)28(oni)1(u)-323(z)-324(w)28(oz)-1(em)-324(i)]TJ -27.879 -13.549 Td[(p)-27(o)-334(k)1(ro)28(w)-1(i)1(e)-1(,)-333(co?)-334({)-333(przekpiw)28(a\\252)-333(Mateusz)-1(.)]TJ 27.879 -13.549 Td[({)-281(Cic)27(h)1(o)-28(cie)-282(n)1(o!...)-280(trze)-1(b)1(a)-281(te)-1(r)1(az)-282(n)1(am)-1(a)28(wia\\242,)-281(ab)28(y)-281(si\\246)-282(gosp)-27(o)-28(dar)1(z)-1(e)-281(z)-1(ebr)1(ali,)-281(p)-27(os)-1(zli)]TJ -27.879 -13.55 Td[(do)-333(d)1(z)-1(iedzica)-334(i)-333(p)1(rz)-1(e\\252o\\273)-1(y)1(li,)-333(cz)-1(ego)-334(c)28(hc\\241:)-333(m)-1(o\\273e)-334(si\\246)-334(i)-333(z)-1(go)-27(dzi.)]TJ 27.879 -13.549 Td[(Mateusz)-334(m)28(u)-333(pr)1(z)-1(erw)28(a\\252)-1(:)]TJ\nET\nendstream\nendobj\n1727 0 obj <<\n/Type /Page\n/Contents 1728 0 R\n/Resources 1726 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1713 0 R\n>> endobj\n1726 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1731 0 obj <<\n/Length 9424      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(541)]TJ -330.353 -35.866 Td[({)-252(Jak)-252(nie)-252(m)-1(a)-252(no\\273a)-252(na)-252(gardl)1(e)-1(,)-252(to)-252(si\\246)-253(ni)1(e)-253(z)-1(go)-27(dzi:)-252(jem)27(u)-252(zaraz)-253(p)-27(otr)1(z)-1(a)-252(pieni)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(i)-249(M)1(iem)-1(cy)-249(j)1(e)-250(d)1(adz\\241)-249(c)27(h)1(o)-28(\\242b)28(y)-249(j)1(utr)1(o,)-249(n)1(ie)-1(c)28(h)-249(si\\246)-249(t)28(ylk)28(o)-248(z)-1(go)-28(d)1(z)-1(i)1(...)-249(A)-248(nim)-249(si\\246)-249(nasi)-249(wyd)1(rap)1(i\\241)]TJ 0 -13.549 Td[(p)-27(o)-403(\\252bac)28(h,)-402(nim)-403(si\\246)-403(nar)1(e)-1(d)1(z)-1(\\241,)-402(nim)-403(si\\246)-403(na)-402(jedno)-402(z)-1(go)-27(dz\\241,)-403(ni)1(m)-403(bab)28(y)-402(pr)1(z)-1(ec)-1(i\\241)-27(gn\\241)-403(n)1(a)]TJ 0 -13.549 Td[(sw)27(o)-55(j\\241)-296(s)-1(t)1(ron\\246,)-296(to)-296(mie)-1(si\\241ce)-297(p)1(rz)-1(ejd)1(\\241,)-296(dziedzic)-297(ziem)-1(i)1(\\246)-297(pr)1(z)-1(eda)-296(i)-296(p)1(le)-1(cy)-296(wyp)1(nie:)-296(b)-28(\\246dzie)]TJ 0 -13.549 Td[(mia\\252)-261(o)-261(cz)-1(y)1(m)-261(c)-1(ze)-1(k)56(a\\242,)-261(j)1(ak)-261(wyp)1(adni)1(e)-261(s)-1(p)1(ra)28(w)27(a)-260(z)-262(b)-27(orem.)-261(Gr)1(z)-1(elo)28(wy)-261(sp)-28(os\\363b)-260(jes)-1(t)-260(m)-1(\\241d)1(ry)84(,)]TJ 0 -13.55 Td[(jeno)-333(wid)1(z)-1(i)-333(mi)-334(si\\246,)-333(trza)-334(go)-333(in)1(n)28(ym)-334(k)28(o\\253)1(c)-1(em)-334(sta)28(w)-1(i)1(a\\242)-334(do)-333(pi)1(on)28(u.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(gad)1(a)-56(j)1(\\273)-1(e,)-333(Mateusz)-1(,)-333(rad)1(\\271)-1(!)]TJ 0 -13.549 Td[({)-333(Nie)-334(gad)1(a\\242)-1(,)-333(ni)1(e)-334(nar)1(adza\\242)-334(s)-1(i)1(\\246)-1(,)-333(a)-333(trza)-334(zrob)1(i\\242)-334(tak)-333(sam)-1(o)-333(jak)-333(z)-334(b)-27(orem.)]TJ 0 -13.549 Td[({)-333(C)-1(zase)-1(m)-334(t)1(ak)-334(mo\\273na,)-333(a)-333(c)-1(zas)-1(em)-334(n)1(ie)-1(!)-333({)-333(mruk)1(n\\241\\252)-334(G)1(rze)-1(la.)]TJ 0 -13.549 Td[({)-336(A)-337(j)1(a)-337(ci)-337(m\\363)28(wi\\246)-1(,)-336(\\273e)-337(mo\\273)-1(n)1(a,)-337(w)-336(inn)29(y)-337(\\271dziebk)28(o)-336(s)-1(p)-27(os)-1(\\363b)1(,)-336(a)-337(to)-336(s)-1(amo)-336(w)-1(y)1(jdzie...)]TJ -27.879 -13.549 Td[(Do)-245(M)1(ie)-1(mc\\363)27(w)-245(i)1(\\261)-1(\\242)-245(c)-1(a\\252\\241)-245(gr)1(om)-1(ad)1(\\241)-245(i)-245(sp)-27(ok)28(o)-56(jn)1(ie)-245(im)-245(z)-1(ap)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242,)-245(ab)28(y)1(c)27(h)-244(s)-1(i\\246)-245(ni)1(e)-246(w)28(a\\273y\\252y)]TJ 0 -13.55 Td[(ku)1(p)-28(o)28(w)28(a\\242)-334(P)28(o)-28(d)1(le)-1(sia..)1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(tak)1(ie)-334(s\\241)-334(g\\252u)1(pie,)-333(\\273)-1(e)-334(zaraz)-333(s)-1(i\\246)-333(nas)-334(u)1(l\\246)-1(k)1(n\\241)-333(i)-333(p)-28(os\\252uc)27(h)1(a)-56(j)1(\\241!)]TJ 0 -13.549 Td[({)-285(T)83(ot)1(e)-1(\\273)-285(im)-285(si\\246)-285(z)-1(ap)-27(o)28(wie)-1(,)-284(\\273e)-286(j)1(e)-1(\\261li)-284(nie)-285(p)-27(os\\252)-1(u)1(c)27(h)1(a)-56(j)1(\\241)-285(i)-285(k)1(up)1(i\\241,)-285(to)-284(nie)-285(p)-27(ozw)27(oli)1(m)-285(im)]TJ -27.879 -13.549 Td[(sia\\242)-1(,)-227(n)1(ie)-228(p)-27(oz)-1(w)28(olim)-227(s)-1(i)1(\\246)-228(bu)1(do)28(w)28(a\\242)-1(,)-227(n)1(ie)-228(d)1(am)27(y)-227(kr)1(okiem)-228(si\\246)-228(ru)1(s)-1(zy\\242)-228(za)-227(p)-28(ol)1(a.)-227(Zobacz)-1(ycie,)]TJ 0 -13.549 Td[(cz)-1(y)-333(si\\246)-334(ni)1(e)-334(ul\\246kn)1(\\241!)-333(Wyku)1(rzym)27(y)-333(ic)28(h)-333(kiej)-333(lis\\363)28(w)-334(z)-334(j)1(am)27(y)84(.)]TJ 27.879 -13.55 Td[({)-304(A)-304(j)1(u\\261c)-1(i)1(,)-304(n)1(ib)28(y)-304(t)1(o)-304(s)-1(e)-304(n)1(ie)-304(p)-28(or)1(e)-1(d)1(z)-1(\\241!.)1(..)-304(j)1(ak)-304(B\\363g)-304(w)-304(n)1(ie)-1(b)1(ie)-1(,)-303(tak)-303(nas)-304(z)-1(n)1(o)28(w)-1(u)-303(za)-304(te)]TJ -27.879 -13.549 Td[(p)-27(ogrozy)-334(wsadz\\241)-334(d)1(o)-334(k)1(rem)-1(in)1(a\\252u!)-333({)-333(wybu)1(c)27(hn)1(\\241\\252)-334(G)1(rze)-1(la.)]TJ 27.879 -13.549 Td[({)-256(Zapak)1(uj\\241,)-255(to)-256(i)-256(p)1(usz)-1(cz)-1(\\241,)-255(w)-1(i)1(e)-1(k)28(o)28(w)27(a\\242)-256(tam)-256(ni)1(e)-257(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(m)28(y)83(,)-256(al)1(e)-257(ki)1(e)-1(j)-255(nas)-256(wypu)1(s)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(\\241,)-392(t)1(o)-392(la)-392(M)1(ie)-1(mc\\363)27(w)-392(b)-27(\\246)-1(d)1(z)-1(i)1(e)-393(j)1(e)-1(szc)-1(ze)-393(gor)1(z)-1(ej..)1(.)-392(g\\252up)1(ie)-392(one)-392(ni)1(e)-393(s\\241)-392(i)-391(prz\\363)-28(d)1(z)-1(i)-391(dobr)1(z)-1(e)]TJ 0 -13.549 Td[(rozw)27(a\\273\\241,)-318(cz)-1(y)-318(im)-318(w)27(o)-55(jn)1(a)-319(z)-318(nami)-318(p)-27(\\363)-56(jd)1(z)-1(i)1(e)-319(na)-318(zdr)1(o)27(wie...)-318(Dziedzic)-319(te\\273)-319(b)-27(\\246dzie)-319(in)1(ac)-1(ze)-1(j)]TJ 0 -13.55 Td[(\\261piew)27(a\\252,)-333(j)1(a)-1(k)-333(m)28(u)-333(ku)1(p)-28(c\\363)28(w)-334(rozp)-27(\\246)-1(d)1(z)-1(im)28(y)83(,)-333(za\\261)-334(ni)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[(Ale)-331(j)1(u\\273)-331(Gr)1(z)-1(ela)-331(n)1(ie)-331(m\\363g\\252)-331(wytrzyma\\242)-1(,)-330(ze)-1(rw)28(a\\252)-331(si\\246)-331(o)-28(d)-330(sto\\252u)-331(i)-330(zac)-1(z\\241\\252)-331(z)-331(ca\\252)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(si\\252)-275(o)-28(d)1(w)27(o)-27(dzi\\242)-275(o)-28(d)-274(t)28(yc)28(h)-274(z)-1(u)1(c)27(h)28(w)28(a\\252yc)27(h)-274(zam)27(y)1(s)-1(\\252\\363)28(w)-1(.)-274(P)1(rze)-1(k\\252ad)1(a\\252,)-275(j)1(akie)-275(t)1(o)-275(z)-275(tego)-274(w)-1(y)1(nikn)1(\\241)]TJ 0 -13.549 Td[(pr)1(o)-28(ce)-1(sy)83(,)-385(no)28(w)27(e)-386(strat)28(y)-385(la)-386(ws)-1(zystkic)28(h,)-385(no)28(w)27(e)-386(marn)1(ac)-1(yj)1(e)-1(,)-385(\\273)-1(e)-386(goto)28(wi)-386(p)-27(o)28(w)-1(sadza\\242)-386(ic)27(h)]TJ 0 -13.549 Td[(za)-469(te)-469(ci\\241)-28(g\\252e)-469(b)1(un)29(t)27(y)-468(n)1(a)-469(p)1(ar\\246)-469(lat)-468(d)1(o)-469(kr)1(ymina\\252u)1(...)-468(\\273)-1(e)-468(to)-469(wsz)-1(ystk)28(o)-468(da)-468(s)-1(i)1(\\246)-469(z)-1(r)1(obi\\242)]TJ 0 -13.55 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-470(z)-1(e)-470(sam)27(ym)-470(d)1(z)-1(i)1(e)-1(d)1(z)-1(ice)-1(m..)1(.)-470(Zakli)1(na\\252)-470(n)1(a)-470(wsz)-1(ystk)28(o)-470(i)-469(b\\252aga\\252,)-469(b)28(y)-469(no)28(w)27(ego)]TJ 0 -13.549 Td[(ni)1(e)-1(sz)-1(cz)-1(\\246\\261c)-1(ia)-337(n)1(ie)-338(\\261ci\\241)-28(gali)-337(n)1(a)-337(nar)1(\\363)-28(d.)-337(P)1(ra)28(wi\\252)-337(z)-1(e)-337(dw)28(a)-337(pacierz)-1(e)-337(i)-337(j)1(a\\273)-1(e)-337(p)-28(o)-27(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252,)]TJ 0 -13.549 Td[(ja\\273e)-291(ca\\252o)28(w)27(a\\252)-290(ic)28(h)-290(p)-27(os)-1(ob)1(nie)-290(m)-1(ol)1(e)-1(stuj)1(\\241c)-291(i)-290(p)1(rosz)-1(\\241c,)-290(b)28(yc)28(h)-290(p)-27(oniec)27(h)1(ali,)-290(al)1(e)-291(ws)-1(zystk)28(o)-290(to)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(na)-333(d)1(a)-1(r)1(m)-1(o,)-333(k)1(ie)-1(j)1(b)28(y)-333(gro)-28(c)28(h)-333(rzuca\\252)-334(n)1(a)-334(\\261c)-1(i)1(an\\246,)-333(\\273)-1(e)-334(w)-333(k)28(o\\253cu)-333(Mateusz)-334(rzek\\252:)]TJ 27.879 -13.549 Td[({)-223(Pra)28(wisz)-224(kiej)-223(w)-223(k)28(o\\261)-1(ciele)-1(,)-223(j)1(akb)28(y\\261)-223(z)-224(ksi\\241\\273)-1(k)1(i)-224(wyczyt)28(yw)27(a\\252,)-223(a)-223(nam)-223(c)-1(ze)-1(go)-223(in)1(s)-1(ze)-1(go)]TJ -27.879 -13.55 Td[(p)-27(otrza!)]TJ 27.879 -13.549 Td[(W)84(raz)-515(te\\273)-515(w)-1(sz)-1(y)1(s)-1(cy)-515(zac)-1(z\\246li)-515(m\\363)28(wi\\242)-1(,)-514(zryw)28(a\\242)-515(s)-1(i)1(\\246)-1(,)-514(t\\252uc)-515(p)1(i\\246)-1(\\261c)-1(i)1(am)-1(i)-514(w)-515(st\\363\\252,)-515(a)]TJ -27.879 -13.549 Td[(wrze)-1(sz)-1(cz)-1(e\\242)-334(z)-334(wielki)1(e)-1(j)-333(r)1(ado\\261c)-1(i:)]TJ 27.879 -13.549 Td[({)-437(Dobr)1(a)-438(n)1(as)-1(za,)-437(na)-437(Mi)1(e)-1(mc)-1(\\363)28(w)-437(i\\261\\242)-1(,)-437(roze)-1(gn)1(a\\242)-438(p)1(lud)1(rak)28(\\363)28(w!)-437(Mateusz)-438(m\\241drze)]TJ -27.879 -13.549 Td[(rad)1(z)-1(i)1(,)-334(j)1(e)-1(go)-333(s\\252)-1(u)1(c)27(h)1(am)27(y)84(,)-333(a)-334(kt)1(\\363re)-1(n)-332(s)-1(i\\246)-333(b)-28(o)-55(ja,)-333(ni)1(e)-1(c)27(h)-332(p)-28(o)-28(d)-332(pierzyn\\246)-333(s)-1(i\\246)-333(c)27(ho)28(w)28(a!)]TJ 27.879 -13.549 Td[(Ani)-333(sp)-27(os)-1(\\363b)-333(j)1(u\\273)-334(b)28(y)1(\\252o)-334(d)1(o)-334(n)1(ic)27(h)-333(m\\363)28(wi\\242)-1(,)-333(tak)-333(i)1(c)27(h)-333(p)-27(onosi\\252o.)]TJ 0 -13.55 Td[(\\233yd)-276(w)-278(t)1(e)-278(p)-27(ore)-277(pr)1(z)-1(yn)1(i\\363s\\252)-278(\\015)1(ac)27(h)1(\\246)-1(,)-276(w)-1(y)1(s)-1(\\252uc)28(ha\\252)-277(i)-277(\\261cie)-1(r)1(a)-56(j)1(\\241c)-278(n)1(a)-277(s)-1(tol)1(e)-278(p)-27(orozle)-1(w)28(an\\241)]TJ -27.879 -13.549 Td[(gorza\\252k)28(\\246)-334(p)-27(o)27(wiedzia\\252)-333(nie\\261)-1(mia\\252o:)]TJ 27.879 -13.549 Td[({)-333(Mateusz)-334(ma)-334(ki)1(e)-1(p)-27(e)-1(\\252e:)-333(m)-1(\\241d)1(r\\241)-333(rad)1(\\246)-334(da)-55(je.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(!)-333(Jan)1(kiel)-333(te)-1(\\273)-334(n)1(a)-334(M)1(iem)-1(c\\363)28(w)-1(,)-333(n)1(o!)-333({)-334(zakrzycz)-1(eli)-333(z)-1(d)1(umieni.)]TJ 0 -13.549 Td[({)-301(Bo)-301(j)1(a)-301(w)27(ol)1(\\246)-301(trzym)-1(a\\242)-301(ze)-301(s)-1(w)28(oimi,)-301(b)1(ie)-1(d)1(y)-301(si\\246)-301(u\\273yj)1(e)-1(,)-300(jak)-300(i)-301(ws)-1(zystkie,)-301(al)1(e)-302(j)1(ak)28(o\\261)]TJ -27.879 -13.55 Td[(z)-272(p)-27(omo)-28(c\\241)-272(b)-27(osk)55(\\241)-271(\\273y\\242)-271(m)-1(o\\273na..)1(.)-271(Ale)-271(gdzie)-272(p)1(rzyc)27(h)1(o)-28(dz\\241)-271(Nie)-1(mcy)83(,)-271(to)-271(j)1(u\\273)-271(tam)-272(n)1(ie)-271(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(n)28(y)-267(\\233yd)1(e)-1(k)-267(si\\246)-267(nie)-267(p)-27(o\\273)-1(ywi,)-266(tam)-268(p)1(ies)-268(n)1(ie)-268(ma)-267(co)-267(je\\261)-1(\\242...)-267(Ni)1(e)-1(c)27(h)-266(one)-267(z)-1(d)1(e)-1(c)28(hn)1(\\241,)-267(ni)1(e)-1(c)27(h)]TJ\nET\nendstream\nendobj\n1730 0 obj <<\n/Type /Page\n/Contents 1731 0 R\n/Resources 1729 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1729 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1735 0 obj <<\n/Length 8831      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(542)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ic)28(h)-333(ta...)-333(tf)1(y)83(..)1(.)-333(c)27(hor)1(oba)-333(w)-1(y)1(t\\252ucz)-1(e!...)]TJ 27.879 -13.549 Td[({)-333(\\233yd)-333(i)-333(trzyma)-334(z)-333(naro)-27(de)-1(m!)-333(S\\252y)1(s)-1(ze)-1(li)1(\\261)-1(ta,)-333(co?)]TJ 0 -13.549 Td[(Dziw)27(o)28(w)28(ali)-333(s)-1(i)1(\\246)-334(c)-1(or)1(az)-334(bar)1(z)-1(ej.)]TJ 0 -13.549 Td[({)-343(Ja)-343(jes)-1(tem)-344(\\233y)1(d,)-343(ale)-343(m)-1(n)1(ie)-344(w)-343(b)-27(oru)-343(n)1(ie)-344(znale\\271)-1(l)1(i,)-343(ja)-343(si\\246)-344(tu)1(ta)-56(j)-342(uro)-27(dzi\\252e)-1(m)-343(jak)]TJ -27.879 -13.549 Td[(i)-422(wy)83(,)-422(m\\363)-56(j)-422(d)1(z)-1(i)1(ade)-1(k)-422(i)-422(m\\363)-56(j)-422(o)-55(jciec)-423(te\\273)-1(..)1(.)-423(to)-422(z)-423(k)1(im)-423(j)1(a)-423(mam)-423(tr)1(z)-1(yma\\242?)-1(.)1(..)-422(c)-1(o?...)-422(Czy)]TJ 0 -13.55 Td[(to)-347(j)1(a)-347(nie)-347(s)-1(w)28(\\363)-56(j)1(?...)-347(P)1(rze)-1(cie\\273)-348(j)1(ak)-347(w)27(am)-347(b)-27(\\246)-1(d)1(z)-1(i)1(e)-348(lepi)1(e)-1(j)1(,)-347(to)-347(i)-347(mni)1(e)-348(b)-27(\\246)-1(d)1(z)-1(i)1(e)-348(lepi)1(e)-1(j)1(!...)-346(Jak)]TJ 0 -13.549 Td[(wy)-420(b)-27(\\246dzie)-1(cie)-420(gosp)-28(o)-27(darze)-1(,)-419(to)-419(ja)-420(b)-27(\\246d\\246)-420(z)-420(w)28(a)-1(mi)-419(han)1(dlo)28(w)28(a\\252!...)-419(Jak)-419(m)-1(\\363)-55(j)-420(d)1(z)-1(i)1(adek)-420(z)]TJ 0 -13.549 Td[(w)28(as)-1(zymi,)-473(no)-473(n)1(ie)-1(?..)1(.)-473(A)-473(c)-1(o\\261cie)-474(m\\241dr)1(z)-1(e)-473(o)-473(Nie)-1(mcac)27(h)-473(m)28(y\\261)-1(l)1(e)-1(li)1(,)-473(to)-473(ja)-473(ca\\252\\241)-473(but)1(e)-1(lk)28(\\246)]TJ 0 -13.549 Td[(arak)1(u)-367(p)-28(osta)28(wi\\246)-1(!)1(...)-367(W)84(as)-1(ze)-368(zdro)28(wie,)-367(gos)-1(p)-27(o)-28(dar)1(z)-1(e)-367(p)-28(o)-27(dles)-1(k)1(ie)-1(!)-367({)-367(za)27(w)28(o\\252a\\252)-368(p)1(rze)-1(p)1(ija)-55(j\\241c)]TJ 0 -13.549 Td[(do)-333(Gr)1(z)-1(eli.)]TJ 27.879 -13.549 Td[(Pi)1(li)-460(g\\246)-1(sto)-460(i)-460(tak)55(a)-460(rad)1(o\\261)-1(\\242)-460(nimi)-460(o)28(w)-1(\\252ad)1(n\\246\\252a,)-461(\\273e)-461(d)1(z)-1(iw)-460(\\233yda)-460(n)1(ie)-461(c)-1(a\\252o)28(w)28(ali)-460(p)-28(o)]TJ -27.879 -13.55 Td[(br)1(o)-28(dzie,)-300(usadzili)-300(go)-300(mi\\246dzy)-300(s)-1(ob)1(\\241)-301(i)-300(wsz)-1(y)1(s)-1(tk)28(o)-300(zno)28(wu)-300(rozp)-28(o)28(wiedzieli,)-300(rad)1(z)-1(\\241c)-300(s)-1(i\\246)-300(go)]TJ 0 -13.549 Td[(w)28(e)-301(wsz)-1(ystki)1(m)-1(.)-299(Na)27(w)28(e)-1(t)-299(Grze)-1(l)1(a)-300(s)-1(i)1(\\246)-301(r)1(oz)-1(c)28(hm)27(u)1(rzy\\252)-300(i)-299(przysta\\252)-300(z)-1(n)1(o)28(w)-1(u)-299(do)-299(nic)28(h,)-300(b)29(yc)27(h)-299(go)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(\\241d)1(z)-1(il)1(i)-334(o)-333(co)-334(z\\252e)-1(go.)]TJ 27.879 -13.549 Td[(Narad)1(a)-334(j)1(u\\273)-333(nied\\252u)1(go)-334(tr)1(w)27(a\\252a,)-333(b)-27(o)-334(M)1(ate)-1(u)1(s)-1(z)-334(si\\246)-334(p)-27(o)-28(d)1(ni\\363s\\252)-334(i)-333(w)28(o\\252a\\252:)]TJ 0 -13.549 Td[({)-333(Do)-334(k)56(ar)1(c)-1(zm)27(y)84(,)-333(c)27(h\\252op)-27(c)-1(y)84(,)-333(nogi)-333(wyp)1(ros)-1(t)1(o)27(w)28(a\\242)-1(,)-333(d)1(os)-1(y)1(\\242)-334(na)-333(dzisia)-56(j)1(!...)]TJ 0 -13.55 Td[(Hur)1(m)-1(\\241)-343(tam)-344(p)-27(os)-1(zli,)-343(a)-344(Mateusz)-344(o)-28(db)1(i\\252)-344(zaraz)-344(j)1(akiem)27(u\\261)-344(T)83(eres)-1(k)28(\\246)-344(i)-343(pu)1(\\261)-1(ci\\252)-344(si\\246)-344(z)]TJ -27.879 -13.549 Td[(ni)1(\\241)-325(w)-325(tan)28(y)84(,)-325(a)-324(z)-1(a)-324(nim)-325(d)1(rugi)1(e)-326(zac)-1(z\\246\\252)-1(y)-324(dziewki)-325(z)-325(k)56(\\241t\\363)28(w)-325(wyc)-1(i)1(\\241)-28(ga\\242)-1(,)-324(na)-324(m)27(uzyk)56(an)28(t\\363)28(w)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)56(a\\242)-334(i)-333(w)-333(tan)28(y)-333(i\\261\\242)-334(kiej)-333(wic)27(h)1(e)-1(r)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-312(co)-312(zaraz)-312(rz\\246)-1(si\\261c)-1(iej)-312(gr)1(uc)28(hn\\246\\252a)-312(m)28(uzyk)56(a,)-312(b)-27(o)-312(gra)-55(jki)-311(wie)-1(d)1(z)-1(ia\\252y)84(,)-312(\\273e)-312(z)-313(M)1(a-)]TJ -27.879 -13.549 Td[(teusz)-1(em)-334(n)1(ie)-334(pr)1(z)-1(elew)-1(k)1(i,)-333(\\273)-1(e)-334(p)1(\\252ac)-1(i)1(,)-334(al)1(e)-334(i)-333(bi\\242)-333(goto)28(w)-1(y)84(.)]TJ 27.879 -13.55 Td[(Roz)-1(t)1(a\\253co)27(w)28(a\\252a)-408(si\\246)-408(k)55(ar)1(c)-1(zma)-408(na)-407(dob)1(re)-1(,)-407(z)-408(c)-1(zub)-27(\\363)28(w)-408(ju)1(\\273)-408(s)-1(i\\246)-408(gal)1(ancie)-408(kur)1(z)-1(y\\252o,)]TJ -27.879 -13.549 Td[(\\273e)-291(wr)1(z)-1(aski,)-289(m)27(uzyk)56(a;)-289(tup)-27(ot)28(y)-290(a)-290(siarczys)-1(te)-290(p)-27(okr)1(z)-1(yk)1(i)-290(jak)1(b)28(y)-290(wr)1(z)-1(\\241tki)1(e)-1(m)-290(p)1(rz)-1(ep)-27(e)-1(\\252n)1(ia\\252y)]TJ 0 -13.549 Td[(izb)-28(\\246)-290(i)-290(na)-290(\\261)-1(wiat)-290(si\\246)-291(rozlew)27(a\\252y)-290(p)1(rz)-1(ez)-291(p)-27(o)28(w)-1(y)1(w)-1(i)1(e)-1(ran)1(e)-291(d)1(rz)-1(wi)-290(a)-290(okn)1(a,)-291(za\\261)-291(p)-27(o)-28(d)-290(\\261c)-1(i)1(anami)]TJ 0 -13.549 Td[(na)-343(d)1(w)27(or)1(z)-1(e)-344(t)1(e)-1(\\273)-344(sz)-1(\\252a)-343(n)1(ie)-1(zgorsz)-1(a)-343(zaba)28(w)27(a,)-343(b)1(rz\\241k)55(a\\252y)-343(k)1(ie)-1(l)1(is)-1(zki,)-343(gosp)-28(o)-27(darze)-344(cz)-1(\\246sto)-344(d)1(o)]TJ 0 -13.549 Td[(si\\246)-334(pr)1(z)-1(epi)1(jali,)-333(a)-333(rail)1(i)-333(c)-1(oraz)-333(g\\252o\\261)-1(n)1(ie)-1(j)-333(i)-333(coraz)-334(b)-27(e\\252)-1(k)28(ot)1(liwiej.)]TJ 27.879 -13.55 Td[(No)-28(c)-376(ju)1(\\273)-376(s)-1(i\\246)-376(zrobi)1(\\252a,)-376(gwiaz)-1(d)1(y)-376(b)29(ys)-1(tr)1(o)-376(z)-1(a\\261wiec)-1(i\\252y)84(,)-376(sz)-1(u)1(m)-1(i)1(a\\252)-1(y)-375(c)-1(i)1(c)27(ho)-375(drze)-1(win)29(y)83(,)]TJ -27.879 -13.549 Td[(a)-326(z)-327(mokr)1(ade\\252)-327(r)1(oz)-1(n)1(os)-1(i\\252y)-325(s)-1(i\\246)-326(\\273)-1(ab)1(ie)-327(r)1(e)-1(c)28(hotan)1(ia)-326(i)-326(h)28(u)1(c)-1(za\\252y)-326(niekiedy)-326(g\\252osy)-326(b)1(\\241k)27(\\363)28(w,)-326(p)-27(o)]TJ 0 -13.549 Td[(sadac)27(h)-374(s)-1(\\252o)28(wiki)-374(z)-1(a)28(w)27(o)-27(dzi\\252y)83(,)-374(c)-1(iep\\252o)-375(b)29(y\\252o)-375(i)-375(p)1(ac)27(hn)1(\\241c)-1(o.)-374(U\\273)-1(yw)28(ali)-375(se)-375(lud)1(z)-1(i)1(e)-376(wyw)28(c)-1(zas)-1(u)]TJ 0 -13.549 Td[(na)-328(\\261w)-1(i)1(e)-1(\\273ym,)-329(c)28(h\\252o)-28(d)1(n)28(ym)-329(p)-27(o)28(wie)-1(t)1(rz)-1(u)1(,)-328(a)-329(r)1(az)-329(p)-28(o)-328(raz)-328(jak)56(a\\261)-329(par)1(a,)-329(t)1(rz)-1(y)1(m)-1(a)-55(j\\241c)-329(si\\246)-329(wp)-27(\\363\\252,)]TJ 0 -13.549 Td[(wysu)28(w)27(a\\252a)-294(s)-1(i)1(\\246)-295(z)-295(k)56(arcz)-1(m)28(y)-295(i)-294(w)-294(c)-1(ieni)1(e)-295(s)-1(z\\252a...)-294(Za\\261)-295(p)-27(o)-28(d)-294(\\261c)-1(ian)1(\\241)-294(b)28(y\\252o)-295(j)1(u\\273)-294(c)-1(oraz)-294(g\\252)-1(o\\261ni)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(gadal)1(i)-333(w)-1(sz)-1(y)1(s)-1(cy)-333(raz)-1(em,)-333(\\273)-1(e)-334(tr)1(ud)1(no)-333(s)-1(i)1(\\246)-334(b)28(y\\252o)-333(p)-28(o\\252ap)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-308(...)1(a)-308(c)-1(o)-308(j)1(e)-1(n)1(o)-309(wiepr)1(z)-1(k)56(a)-308(wypu)1(\\261)-1(ci\\252am,)-308(\\273e)-309(jesz)-1(cz)-1(e)-308(i)-308(ryj)1(a)-308(ni)1(e)-309(zd\\241\\273y\\252)-308(w)-1(sadzi\\242)-308(w)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(aki,)-333(a)-333(ta)-334(d)1(o)-334(mn)1(ie)-334(z)-334(p)28(y)1(s)-1(ki)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Wyp)-27(\\246)-1(d)1(z)-1(i)1(\\242)-334(j\\241)-333(z)-1(e)-333(w)-1(si!.)1(..)-333(Wyp)-27(\\246)-1(d)1(z)-1(i)1(\\242)-1(!.)1(..)]TJ 0 -13.549 Td[({)-380(Bacz)-1(\\246,)-380(co)-380(tak)-379(s)-1(amo)-380(z)-380(j)1(e)-1(d)1(n\\241)-379(z)-1(r)1(obili)-379(za)-380(moic)27(h)-379(m\\252o)-28(dyc)28(h)-379(lat!...)-379(P)1(rz)-1(ed)-379(k)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(io\\252em)-334(d)1(o)-334(kr)1(wi)-334(u)1(k)56(arali,)-333(kr)1(o)28(w)27(ami)-333(w)-1(y)1(w)-1(i)1(e)-1(\\271li)-333(z)-1(a)-333(k)28(op)-27(c)-1(e)-334(i)-333(b)29(y\\252)-334(sp)-27(ok)28(\\363)-56(j.)1(..)]TJ 27.879 -13.55 Td[({)-333(\\233ydzie,)-334(ca\\252\\241)-333(kw)27(aterk)28(\\246)-334(k)1(rze)-1(p)1(kiej!)]TJ 0 -13.549 Td[({)-333(Odebr)1(a\\252a)-334(mlek)28(o)-334(mo)-56(j)1(e)-1(j)-333(siwul)1(i,)-333(o)-28(debr)1(a\\252a!...)]TJ 0 -13.549 Td[({)-333(Obr)1(a\\242)-334(no)28(w)28(e)-1(go,)-333(to)-333(k)56(a\\273)-1(d)1(y)-334(t)1(ak)-334(samo)-334(p)-27(orad)1(z)-1(i)1(...)]TJ 0 -13.549 Td[({)-333(Wyrw)28(a\\242)-334(z\\252e)-1(,)-333(p)-27(\\363ki)-333(wi\\246)-1(k)1(s)-1(ze)-1(go)-333(k)28(orze)-1(n)1(ia)-333(nie)-333(z)-1(ap)1(u\\261c)-1(i..)1(.)]TJ 0 -13.549 Td[({)-333(Ple\\242)-334(zb)-28(o\\273e)-1(,)-333(p)-27(\\363ki)-333(c)27(h)29(w)27(ast)28(y)-334(n)1(ie)-334(zag\\252usz)-1(\\241.)1(..)]TJ 0 -13.55 Td[({)-333(Przepij)1(c)-1(ie)-333(no)-333(do)-333(mnie,)-333(a)-334(cos)-1(i)1(k)-334(w)28(a)-56(j)1(u)-333(rze)-1(k)1(n\\246...)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(k)55(a)-333(bi)1(e)-1(r)1(z)-334(z)-1(a)-333(rogi)1(,)-334(a)-333(ni)1(e)-334(p)-27(opuszc)-1(za)-56(j)1(,)-334(j)1(a\\273)-1(e)-333(s)-1(i\\246)-333(z)-1(w)28(ali..)1(.)]TJ\nET\nendstream\nendobj\n1734 0 obj <<\n/Type /Page\n/Contents 1735 0 R\n/Resources 1733 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1733 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1738 0 obj <<\n/Length 3985      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(543)]TJ -330.353 -35.866 Td[({)-333(Dw)27(a)-333(morgi)-333(a)-333(je)-1(d)1(na)-333({)-333(trzy)-333(m)-1(or)1(gi;)-333(trzy)-333(m)-1(or)1(g)-1(i)-333(a)-333(jedn)1(a)-333({)-334(cz)-1(tery)-333(morgi.)]TJ 0 -13.549 Td[({)-333(Pij)1(,)-333(bracie,)-333(to)-334(i)-333(r)1(o)-28(dzone)-334(n)1(ie)-334(zrob)1(i\\252yb)28(y)-333(p)-27(o)-28(c)-1(zciwie)-1(j)1(...)]TJ 0 -13.549 Td[(Rw)27(a\\252y)-244(si\\246)-245(z)-245(mrok)28(\\363)28(w)-245(p)-27(ostrz\\246)-1(p)1(ione)-244(roz)-1(mo)28(wy)83(,)-244(\\273e)-245(ani)-244(roze)-1(zna\\252,)-244(kt)1(o)-245(m\\363)28(w)-1(i)1(\\252)-245(i)-244(do)]TJ -27.879 -13.549 Td[(k)28(ogo;)-335(t)28(ylk)28(o)-335(jeden)-335(gru)1(bac)28(hn)28(y)-335(g\\252os)-336(z)-335(Jam)27(b)1(ro\\273a)-336(g\\363r)1(o)27(w)28(a\\252)-335(w)-1(y)1(ra\\271)-1(n)1(ie)-336(n)1(ad)-335(dr)1(ugimi)-335(w)]TJ 0 -13.549 Td[(r\\363\\273n)28(yc)28(h)-261(m)-1(iejscac)27(h,)-261(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252)-262(b)-27(o)28(wie)-1(m)-261(c)-1(i\\246giem)-262(o)-28(d)-261(ku)1(p)28(y)-262(d)1(o)-262(k)1(up)28(y)84(,)-262(t)1(o)-262(do)-261(k)56(arcz)-1(m)28(y)]TJ 0 -13.55 Td[(zagl\\241da\\252)-423(i)-422(ws)-1(z\\246)-1(d)1(y)-423(wygar)1(nia)-55(j\\241c)-423(p)-27(o)-423(ku)1(s)-1(zt)28(yc)-1(zku)1(,)-423(p)1(ijan)29(y)-423(ju)1(\\273)-423(b)28(y\\252)-423(ca\\252kiem,)-423(sie)-1(l)1(nie)]TJ 0 -13.549 Td[(si\\246)-366(p)-27(otacz)-1(a\\252,)-365(al)1(e)-366(c)27(h)29(yc)-1(i)1(\\252)-365(przy)-365(sz)-1(y)1(nkw)28(as)-1(ie)-365(kt\\363r)1(e)-1(go\\261)-365(z)-1(a)-365(or)1(z)-1(y)1(dle)-365(i)-365(j\\241\\252)-365(go)-365(p)1(\\252ac)-1(zliwie)]TJ 0 -13.549 Td[(mole)-1(sto)28(w)27(a\\242:)]TJ 27.879 -13.549 Td[({)-287(Oc)28(hrzc)-1(i)1(\\252)-1(em)-287(c)-1(i\\246,)-287(W)84(o)-56(j)1(te)-1(k,)-286(i)-287(t)28(w)27(o)-55(jej)-287(k)28(ob)1(ie)-1(cie)-287(tak)-287(dzw)27(on)1(i\\252em)-1(,)-287(j)1(a\\273)-1(e)-287(mi)-287(kul)1(as)-1(y)]TJ -27.879 -13.549 Td[(p)-27(opu)1(c)27(h\\252y:)-356(p)-28(osta)28(w)-357(kielisz)-1(ek)-357(b)1(racie)-1(!)-356(A)-357(p)-27(os)-1(ta)28(wisz)-358(ca\\252\\241)-357(p)-27(\\363\\252kw)27(aterk)28(\\246,)-357(p)1(rze)-1(d)1(z)-1(w)28(oni\\246)]TJ 0 -13.549 Td[(jej)-307(n)1(a)-307(w)-1(i)1(e)-1(cz)-1(n)1(e)-308(o)-28(d)1(p)-27(o)-28(c)-1(zyw)28(anie)-307(i)-307(dr)1(ug\\241)-307(bab)-27(\\246)-307(c)-1(i)-307(n)1(ara)-56(j)1(\\246)-1(.)1(..)-307(m\\252o)-28(d\\241,)-307(j)1(e)-1(d)1(rn\\241)-307(k)1(ie)-1(j)-306(rze)-1(p)1(a!)]TJ 0 -13.55 Td[(P)28(osta)28(w)-1(,)-333(b)1(racie)-1(,)-333(p)-27(\\363\\252kw)28(ate)-1(r)1(k)28(\\246)-1(..)1(.)]TJ 27.879 -13.549 Td[(M\\252o)-28(d)1(z)-1(i)1(e)-1(\\273)-423(h)28(u)1(la\\252a)-423(za)27(wzi\\246c)-1(ie,)-423(\\273e)-423(c)-1(a\\252a)-422(iz)-1(b)1(a)-423(wyp)-27(e)-1(\\252n)1(i\\252a)-423(si\\246)-423(wrz)-1(askiem)-423(a)-423(wie-)]TJ -27.879 -13.549 Td[(w)28(a)-56(j\\241cymi)-400(ki)1(e)-1(c)27(k)56(ami)-400(i)-399(k)55(ap)-27(otami,)-400(j)1(u\\273)-400(pi)1(e)-1(snec)-1(zki)-400(p)1(rzy\\261)-1(p)1(iew)-1(y)1(w)27(ali)-399(przed)-400(m)28(uzyk)55(\\241)-399(i)]TJ 0 -13.549 Td[(ta\\253)1(c)-1(o)28(w)27(al)1(i)-428(c)-1(oraz)-428(z)-1(ap)1(am)-1(i)1(\\246)-1(talej,)-428(\\273e)-429(n)1(a)27(w)28(e)-1(t)-428(starsz)-1(e)-428(k)28(obiet)28(y)-428(w)-1(y)1(trz\\241s)-1(a\\252y)-428(si\\246)-1(,)-428(p)1(is)-1(k)1(li-)]TJ 0 -13.549 Td[(wie)-348(p)-27(okr)1(z)-1(yk)1(uj\\241c,)-347(a)-347(Jagust)28(yn)1(k)55(a)-347(p)1(rze)-1(d)1(ar\\252s)-1(zy)-347(s)-1(i)1(\\246)-348(d)1(o)-348(\\261ro)-28(d)1(k)56(a)-347(uj\\246\\252a)-347(s)-1(i)1(\\246)-348(wp)-28(\\363\\252)-347(i)-347(b)1(ij\\241c)]TJ 0 -13.55 Td[(nogami)-333(o)-333(p)-28(o)-28(d)1(\\252og\\246)-334(wy\\261piewyw)27(a\\252a)-333(c)27(h)1(rzypli)1(w)-1(i)1(e)-1(:)]TJ 27.879 -13.549 Td[(Nie)-351(b)-27(o)-56(j)1(\\246)-351(s)-1(i\\246)-351(wil)1(k)55(a,)-350(c)27(h)1(o)-28(\\242)-1(b)29(y)-351(b)29(y\\252o)-351(kil)1(k)55(a!)1(...)-350(Nie)-351(b)-27(o)-56(j\\246)-351(si\\246)-351(c)27(h)1(\\252opa,)-350(c)27(h)1(o)-28(\\242)-1(b)29(y)-351(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(k)28(opa!)1(...)]TJ\nET\nendstream\nendobj\n1737 0 obj <<\n/Type /Page\n/Contents 1738 0 R\n/Resources 1736 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1736 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1741 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(544)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(34.)]TJ\nET\nendstream\nendobj\n1740 0 obj <<\n/Type /Page\n/Contents 1741 0 R\n/Resources 1739 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1739 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1744 0 obj <<\n/Length 7037      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(35)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ow)28(\\363\\273)-266(te)-266(d)1(nie)-265(o)-28(d)-265(Bo\\273)-1(ego)-266(Cia\\252a)-265(do)-265(n)1(ie)-1(d)1(z)-1(i)1(e)-1(li)-265(n)1(ie)-266(p)1(rz)-1(esz)-1(\\252y)-265(letk)28(o)-266(M)1(ate)-1(u)1(s)-1(zo)28(wi,)-265(Grze)-1(l)1(i)]TJ 0 -13.549 Td[(ni)-420(ic)28(h)-421(k)56(amratom;)-420(Mateusz)-421(b)-28(o)28(wiem)-421(przerw)27(a\\252)-420(rob)-27(ot)28(y)-421(p)1(rzy)-421(S)1(tac)27(h)1(o)27(w)28(e)-1(j)-420(c)28(ha\\252up)1(ie;)]TJ 0 -13.549 Td[(za\\261)-309(dru)1(dzy)-308(te)-1(\\273)-309(p)-27(oni)1(e)-1(c)28(hali)-308(s)-1(w)28(oic)28(h)-308(z)-1(a)-55(j\\246\\242)-1(,)-308(a)-309(i)1(no)-308(c)-1(a\\252e)-309(te)-309(d)1(nie)-309(i)-308(wiec)-1(zory)-308(c)27(h)1(o)-28(dzili)-308(p)-27(o)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)1(ac)27(h)-348(w)-348(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246)-348(i)-348(p)-27(o)-28(dj)1(udzali)-348(n)1(ar\\363)-28(d)-347(pr)1(z)-1(ec)-1(iwk)28(o)-348(M)1(ie)-1(mcom)-1(,)-348(n)1(a)28(w)27(o\\252uj)1(\\241c)-349(d)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(\\246)-1(d)1(z)-1(enia)-333(ic)27(h)-332(z)-334(P)28(o)-28(d)1(le)-1(sia.)]TJ 27.879 -13.549 Td[(Kar)1(c)-1(zm)-1(ar)1(z)-456(ze)-455(s)-1(w)28(o)-56(j)1(e)-1(j)-454(stron)28(y)-454(te\\273)-456(n)1(ie)-455(\\273)-1(a\\252o)28(w)28(a\\252)-455(nam\\363)28(w)-1(,)-454(a)-455(j)1(ak)-455(b)28(y)1(\\252)-1(o)-454(p)-28(ot)1(rz)-1(a)]TJ -27.879 -13.549 Td[(na)-356(u)1(part)28(y)1(c)27(h,)-356(to)-356(i)-356(p)-27(o)-28(cz)-1(\\246s)-1(t)1(unk)28(\\363)28(w)-356(alb)-27(o)-356(b)-28(or)1(g)-1(o)28(w)28(a\\253,)-356(al)1(e)-357(s)-1(z\\252o)-356(kiej)-356(p)-27(o)-357(gr)1(ud)1(z)-1(ie;)-356(starsi)]TJ 0 -13.549 Td[(dr)1(apali)-434(si\\246)-435(j)1(e)-1(n)1(o)-435(p)-27(o)-434(\\252bac)27(h)1(,)-434(w)-1(zdy)1(c)27(hal)1(i)-434(c)-1(i\\246\\273)-1(k)28(o)-434(i,)-434(n)1(ie)-435(w)28(a\\273)-1(\\241c)-435(si\\246)-435(n)1(a)-434(\\273)-1(ad)1(n\\241)-434(s)-1(tr)1(on\\246,)]TJ 0 -13.549 Td[(ogl\\241d)1(ali)-394(si\\246)-394(n)1(a)-394(d)1(rugic)28(h)-393(i)-394(n)1(a)-394(k)28(ob)1(ie)-1(t)28(y)84(,)-394(k)1(t\\363re)-394(j)1(ak)-394(j)1(e)-1(d)1(na)-394(an)1(i)-393(s)-1(\\252uc)28(ha\\242)-394(n)1(ie)-394(c)27(h)1(c)-1(ia\\252y)-393(o)]TJ 0 -13.55 Td[(wypr)1(a)28(w)-1(i)1(e)-334(na)-333(Miemc)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-372(Hale!)-372(co)-372(im)-372(do)-372(\\252b)-27(\\363)28(w)-373(strze)-1(l)1(i\\252o!)-372(Ma\\252o)-372(to)-372(j)1(u\\273)-372(marnacji)-371(przez)-373(b)-27(\\363r?...)-371(jes)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(e)-375(j)1(e)-1(d)1(nego)-375(n)1(ie)-375(o)-27(dsie)-1(d)1(z)-1(i)1(a\\252)-1(y)-374(i)-374(n)1(o)28(w)27(e)-375(b)1(iedy)-374(c)27(h)1(c)-1(\\241)-374(na)-374(wie\\261)-375(spro)28(w)28(adzi\\242)-1(!)-374({)-374(w)28(o\\252)-1(a\\252y)84(,)-374(a)]TJ 0 -13.549 Td[(so\\252)-1(t)28(y)1(s)-1(o)28(w)27(a,)-333(cic)27(h)1(a)-334(zazw)-1(y)1(c)-1(za)-56(j)1(,)-334(j)1(a\\273)-1(e)-333(p)-28(omiet\\252o)-334(c)28(h)28(yci\\252a)-334(n)1(a)-333(Grze)-1(l\\246.)]TJ 27.879 -13.549 Td[({)-349(Jak)-348(b)-27(\\246)-1(d)1(z)-1(iesz)-350(n)1(iew)27(oli)1(\\252)-349(do)-348(no)28(w)27(ego)-349(b)1(un)28(t)1(u,)-348(to)-349(ci\\246)-349(s)-1(tr)1(a\\273)-1(n)1(ik)28(om)-349(wydam!)-348(Ny-)]TJ -27.879 -13.55 Td[(gusy)84(,)-337(\\261cie)-1(r)1(w)-1(y)1(;)-336(robi)1(\\242)-337(s)-1(i)1(\\246)-337(im)-336(nie)-336(c)27(hce)-1(,)-336(tob)29(y)-336(ino)-336(space)-1(ro)28(w)28(a\\252y!)-336({)-336(roz)-1(wr)1(z)-1(es)-1(zc)-1(za\\252a)-336(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(c)27(h)1(a\\252up\\241.)]TJ 27.879 -13.549 Td[(Za\\261)-334(Balce)-1(rk)28(o)28(w)28(a)-334(gr)1(uc)27(h)1(n\\246\\252a)-334(n)1(a)-333(Mateusz)-1(a:)]TJ 0 -13.549 Td[({)-333(Psy)-333(na)-333(w)27(as)-334(spu)1(s)-1(zc)-1(z\\246,)-334(p)1(r\\363\\273niak)1(i!)-333(W)83(r)1(z)-1(\\241tk)1(u)-333(nasz)-1(yk)1(uj\\246!)]TJ 0 -13.549 Td[(I)-334(w)-1(szys)-1(tk)1(ie)-335(p)1(rogiem)-335(zale)-1(g\\252y)-334(p)1(rze)-1(ciwk)28(o)-335(n)1(am)-1(o)28(w)28(om)-1(,)-334(g\\252u)1(c)27(h)1(e)-335(na)-334(t\\252umacz)-1(enia)]TJ -27.879 -13.55 Td[(i)-432(pr)1(o\\261)-1(b)28(y)84(,)-432(\\273)-1(e)-432(ani)-432(sp)-28(osobu)-432(b)29(y\\252o)-433(im)-432(tra\\014)1(\\242)-433(do)-432(rozum)28(u;)-432(za)27(wr)1(z)-1(es)-1(zc)-1(za\\252y)-432(k)55(a\\273dego,)-432(a)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(e)-1(d)1(na)-333(ju)1(\\273)-334(i)-333(p\\252acz)-1(em)-334(lame)-1(n)29(tliwym)-333(buc)28(ha\\252a.)]TJ 27.879 -13.549 Td[({)-336(Nie)-337(d)1(am)-337(mo)-56(j)1(e)-1(m)28(u)-336(i\\261\\242)-1(!)-336(Kap)-27(ot)28(y)-336(s)-1(i)1(\\246)-337(u)28(wies)-1(z\\246)-1(,)-336(i)-336(c)28(ho)-28(\\242b)28(y)-336(mi)-336(kul)1(as)-1(y)-336(ob)-27(c)-1(i\\246li,)-336(a)]TJ -27.879 -13.549 Td[(ni)1(e)-334(pu)1(s)-1(zc)-1(z\\246!...)-333(Dosy\\242)-334(m)28(y)-334(si\\246)-334(j)1(u\\273)-333(nabi)1(e)-1(d)1(o)27(w)28(a\\252y!..)1(.)]TJ 27.879 -13.549 Td[({)-295(A)-296(\\273eb)28(y)-295(w)27(as,)-295(g\\252\\241b)28(y)-295(jedn)1(e)-1(,)-295(siarcz)-1(y)1(s)-1(te)-296(p)1(ierun)29(y)-295(roz)-1(n)1(ies)-1(\\252y!)-295({)-295(kl\\241\\252)-295(Mateusz)-1(.)-295({)]TJ -27.879 -13.55 Td[(T)83(o)-331(k)1(ie)-1(j)-330(sroki)-330(na)-331(d)1(e)-1(szc)-1(z)-331(kr)1(z)-1(ycz)-1(\\241)-330(i)-331(kr)1(z)-1(y)1(c)-1(z\\241.)-331(Dy)1(\\242)-332(to)-330(c)-1(i)1(e)-1(le)-331(p)1(r\\246dze)-1(j)-330(z)-1(r)1(oz)-1(u)1(m)-1(i)1(e)-332(l)1(ud)1(z)-1(k)56(\\241)]TJ 0 -13.549 Td[(mo)27(w)28(\\246)-334(n)1(i\\271)-1(l)1(i)-333(k)27(ob)1(ieta)-334(m\\241d)1(re)-334(s\\252o)27(w)28(o!)-333({)-334(wyr)1(z)-1(ek)56(a\\252)-334(g\\252\\246b)-28(ok)28(o)-333(z)-1(n)1(iec)27(h\\246con)28(y)83(.)]TJ 27.879 -13.549 Td[({)-347(Da)-55(j)-347(sp)-27(ok)28(\\363)-56(j,)-346(Grzela,)-347(n)1(ie)-347(tra\\014sz)-347(z)-348(n)1(iem)-1(i)-346(do)-347(r)1(oz)-1(u)1(m)27(u:)-346(trza)-347(b)28(y)-346(k)55(a\\273d\\241)-346(s)-1(p)1(ra\\242)]TJ -27.879 -13.549 Td[(ab)-27(o)-334(\\273e)-1(b)29(yc)27(h)-333(t)28(w)28(o)-56(j)1(a)-334(b)28(y)1(\\252a,)-334(t)1(o)-334(ci\\246)-334(wtedy)-333(mo\\273)-1(e)-334(p)-27(os\\252)-1(u)1(c)27(h)1(a)-334({)-333(\\273ali\\252)-333(s)-1(i\\246)-333(s)-1(m)28(utn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-260(T)83(akie)-260(ju)1(\\273)-261(s\\241,)-260(\\273)-1(e)-260(prze)-1(z)-260(m)-1(o)-27(c)-261(ni)1(e)-261(pr)1(z)-1(erob)1(is)-1(z:)-260(in)1(s)-1(zym)-261(t)1(rz)-1(a)-260(sp)-27(os)-1(ob)-27(e)-1(m)-260(z)-261(n)1(ie)-1(mi;)]TJ -27.879 -13.55 Td[(oto)-333(nie)-333(prze)-1(ciwia\\242)-334(si\\246,)-333(przytak)1(iw)27(a\\242,)-333(a)-334(p)-27(omalu\\261ku)-333(n)1(a)-334(sw)27(o)-55(j\\241)-333(stron\\246)-333(p)-28(o)-27(c)-1(i\\241)-28(ga\\242.)]TJ 27.879 -13.549 Td[(T\\252umac)-1(zy\\252)-234(tak)-234(Gr)1(z)-1(ela,)-234(ni)1(e)-235(o)-28(d)1(s)-1(t\\246pu)1(j\\241c)-234(s)-1(p)1(ra)28(wy)83(,)-234(b)-27(o)-234(c)27(h)1(o)-28(c)-1(i)1(a\\273)-235(sam)-235(b)28(y\\252)-234(j)1(e)-1(j)-233(z)-1(razu)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(w)-1(n)29(y)83(,)-333(ale)-334(sk)28(oro)-333(rozw)27(a\\273y\\252,)-333(\\273e)-334(inacze)-1(j)-333(n)1(ie)-334(mo\\273)-1(n)1(a,)-333(c)-1(a\\252\\241)-333(du)1(s)-1(z\\241)-334(si\\246)-334(j)1(e)-1(j)-333(o)-27(dda\\252.)]TJ 358.232 -29.888 Td[(545)]TJ\nET\nendstream\nendobj\n1743 0 obj <<\n/Type /Page\n/Contents 1744 0 R\n/Resources 1742 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1742 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1747 0 obj <<\n/Length 9803      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(546)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ch\\252op)-312(b)28(y\\252)-312(kw)27(ar)1(dy)-312(i)-313(n)1(ie)-1(u)1(s)-1(t)1(\\246)-1(p)1(liwy)83(,)-312(a)-313(n)1(a)-313(co)-313(s)-1(i)1(\\246)-313(jeno)-313(za)28(w)-1(zi\\241\\252,)-312(dop)1(i\\241\\242)-313(m)27(u)1(s)-1(ia\\252,)]TJ -27.879 -13.549 Td[(\\273e)-1(b)28(y)-458(tam)-458(nie)-458(wie)-1(m)-458(c)-1(o)-458(pr)1(z)-1(es)-1(zk)56(adza\\252o;)-458(to)-459(i)-458(teraz)-458(na)-458(nic)-458(nie)-458(z)-1(w)28(a\\273)-1(a\\252:)-458(za)28(w)-1(i)1(e)-1(ral)1(i)]TJ 0 -13.549 Td[(m)27(u)-419(d)1(rz)-1(wi)-419(prze)-1(d)-419(nosem)-421({)-419(oknami)-420(gad)1(a\\252;)-420(k)28(obi)1(e)-1(t)28(y)-420(m)28(u)-419(w)-1(y)1(gra\\273)-1(a\\252y)-419({)-420(nie)-420(gn)1(ie)-1(w)28(a\\252)]TJ 0 -13.549 Td[(si\\246)-1(,)-427(p)1(rzy\\261)-1(wiar)1(c)-1(za\\252)-428(j)1(e)-1(szc)-1(ze)-1(,)-427(a)-427(k)56(a)-56(j)-427(b)29(y\\252o)-428(p)-27(otr)1(z)-1(a)-427({)-427(baso)27(w)28(a\\252,)-427(z)-1(a\\261)-427(niejedn)1(\\241)-427(o)-428(d)1(z)-1(i)1(e)-1(ci)]TJ 0 -13.549 Td[(zagadyw)28(a\\252)-277(i)-276(p)-27(orz\\241dk)1(i)-276(w)-1(y)1(c)27(h)28(w)28(ala\\252,)-276(a\\273)-277(w)-276(k)28(o\\253cu)-276(p)-27(o)27(wiedzia\\252)-276(s)-1(w)28(o)-56(j)1(e)-1(,)-276(a)-276(n)1(ie)-277(u)1(da\\252o)-276(s)-1(i)1(\\246)-277({)]TJ 0 -13.55 Td[(sz)-1(ed\\252)-223(d)1(alej.)-222(Ca\\252)-1(e)-223(d)1(w)27(a)-222(dn)1(i)-222(p)-28(e\\252no)-222(go)-223(b)28(y\\252o)-222(na)-222(w)-1(si,)-222(w)-223(c)28(ha\\252up)1(ac)27(h,)-222(p)-27(o)-223(ogr)1(o)-28(dac)28(h,)-222(w)-223(p)-27(ola)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-351(s)-1(zed\\252)-352(i)-351(zagadu)1(j\\241c)-352(o)-352(t)28(y)1(m)-352(i)-352(o)28(wym)-352(l)1(udzi,)-351(s)-1(w)28(o)-56(j)1(e)-352(im)-352(p)1(ra)28(wi\\252,)-352(za\\261)-352(t)28(ym,)-352(k)1(t\\363rzy)]TJ 0 -13.549 Td[(ni)1(e)-315(miark)28(o)28(w)28(ali)-314(o)-28(d)-313(razu,)-314(ki)1(jasz)-1(ki)1(e)-1(m)-314(ryso)28(w)27(a\\252)-314(p)-27(o)-314(z)-1(iem)-1(i)-313(p)-28(o)-27(dles)-1(ki)1(e)-315(p)-27(ola,)-314(p)-27(ok)56(az)-1(yw)28(a\\252)]TJ 0 -13.549 Td[(dzia\\252y)-457(i)-456(c)-1(i)1(e)-1(r)1(z)-1(pl)1(iwie)-457(t\\252umac)-1(zy\\252)-457(k)28(orzy\\261c)-1(i)-456(k)55(a\\273dego.)-457(Al)1(e)-458(mimo)-457(t)28(yc)27(h)-456(zabieg\\363)27(w)-457(n)1(a)]TJ 0 -13.549 Td[(dar)1(m)-1(o)-270(b)28(y\\252yb)29(y)-271(te)-271(wsz)-1(ystkie)-271(zac)27(h)1(o)-28(dy)84(,)-271(gd)1(yb)28(y)-270(ni)1(e)-271(p)-28(omo)-28(c)-271(Ro)-28(c)27(h)1(o)28(w)27(a.)-270(Jak)28(o\\261)-271(w)-271(sob)-28(ot\\246)]TJ 0 -13.549 Td[(p)-27(o)-463(p)-27(o\\252ud)1(niu)1(,)-462(z)-1(miark)28(o)28(w)28(a)27(wsz)-1(y)84(,)-462(\\273)-1(e)-463(wsi)-462(nie)-463(p)-27(oru)1(s)-1(z\\241,)-462(w)-1(y)1(z)-1(w)28(ali)-462(Ro)-28(c)27(h)1(a)-463(za)-463(sto)-28(d)1(o\\252y)]TJ 0 -13.55 Td[(Boryn)1(o)27(w)28(e)-334(i)-333(zw)-1(i)1(e)-1(r)1(z)-1(yli)-333(si\\246)-334(p)1(rze)-1(d)-333(n)1(im;)-333(b)-28(o)-55(jali)-333(si\\246,)-334(\\273e)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(im)-334(p)1(rze)-1(ciwn)28(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-334(Ro)-27(c)27(ho)-333(p)-27(om)27(y\\261la\\252)-333(kr\\363tk)28(o)-333(i)-333(p)-28(o)28(wiad)1(a:)]TJ 0 -13.549 Td[({)-432(Sp)-27(os\\363b)-432(to)-432(zb)-28(\\363)-55(jec)27(ki,)-431(ale)-433(\\273e)-433(n)1(a)-432(inn)29(y)-432(ju)1(\\273)-433(ni)1(e)-433(ma)-432(c)-1(zas)-1(u)1(,)-432(p)-27(om)-1(og\\246)-432(w)27(am)-432(z)]TJ -27.879 -13.549 Td[(c)27(h)1(\\246)-1(ci\\241.)]TJ 27.879 -13.549 Td[(I)-333(zaraz)-333(p)-27(os)-1(ze)-1(d)1(\\252)-333(na)-332(ogro)-28(d)1(y)-333(d)1(o)-333(pr)1(ob)-28(oszc)-1(za)-333(s)-1(i)1(e)-1(d)1(z)-1(\\241ce)-1(go)-332(przy)-332(parob)1(ku)-332(k)28(os)-1(z\\241-)]TJ -27.879 -13.55 Td[(cym)-313(k)28(onicz)-1(y)1(n\\246,)-313(kt\\363r)1(e)-1(n)-312(p)-28(otem)-313(rozp)-28(o)28(wiad)1(a\\252)-1(,)-312(jak)28(o)-313(zrazu)-313(d)1(obr)1(o)-28(dziej)-313(si\\246)-313(oz)-1(gn)1(ie)-1(w)28(a\\252)]TJ 0 -13.549 Td[(na)-383(Ro)-28(c)28(ha,)-383(kr)1(z)-1(ycz)-1(a\\252,)-383(zat)28(yk)56(a\\252)-384(u)1(s)-1(zy)-383(i)-383(s)-1(\\252u)1(c)27(ha\\242)-383(na)28(w)28(e)-1(t)-383(ni)1(e)-384(c)27(h)1(c)-1(ia\\252,)-383(l)1(e)-1(cz)-384(p)-27(ote)-1(m)-383(s)-1(iedl)1(i)]TJ 0 -13.549 Td[(oba)-55(j)-416(na)-416(mie)-1(d)1(z)-1(y)-416(i)-416(d)1(\\252)-1(u)1(go)-417(se)-417(cos)-1(i)1(k)-417(u)1(rad)1(z)-1(ali)1(:)-417(S)1(nad)1(\\271)-417(Ro)-28(c)27(h)1(o)-417(go)-416(pr)1(z)-1(ek)28(ona\\252,)-416(gdy)1(\\273)-417(o)]TJ 0 -13.549 Td[(zm)-1(ierzc)27(h)28(u)1(,)-318(kiej)-319(l)1(ud)1(z)-1(ie)-319(zac)-1(z\\246li)-318(\\261)-1(ci\\241)-28(ga\\242)-319(z)-319(p)-27(\\363l,)-318(prob)-27(osz)-1(cz)-319(p)-28(osze)-1(d)1(\\252)-319(na)-318(wie)-1(\\261)-319(i)-318(n)1(ib)28(y)-318(to)]TJ 0 -13.549 Td[(c)27(h)1(\\252o)-28(du)-333(za\\273)-1(yw)28(a\\252,)-334(a)-333(z)-1(agl\\241d)1(a\\252)-334(w)-334(ob)-27(e)-1(j)1(\\261)-1(cia,)-334(p)29(yta\\252)-334(o)-334(r)1(\\363\\273)-1(n)1(o\\261)-1(ci,)-333(a)-334(g\\252\\363)28(w)-1(n)1(ie)-334(z)-334(k)28(obietami)]TJ 0 -13.55 Td[(si\\246)-334(zm)-1(a)28(wia\\252)-333(i)-334(w)-333(k)28(o\\253cu)-333(k)56(a\\273)-1(d)1(e)-1(m)28(u)-333(z)-334(osobna)-333(a)-333(c)-1(i)1(c)27(ho)-333(p)-27(o)27(wiad)1(a\\252:)]TJ 27.879 -13.549 Td[({)-399(C)-1(h)1(\\252opaki)-399(d)1(obrze)-400(c)28(hc\\241.)-400(T)84(rz)-1(eba)-399(si\\246)-400(\\261pies)-1(zy\\242,)-399(p)-28(\\363ki)-399(j)1(e)-1(sz)-1(cze)-400(c)-1(zas)-1(.)-399(Zrob)1(icie)]TJ -27.879 -13.549 Td[(sw)27(o)-55(je,)-334(t)1(o)-334(j)1(a)-334(j)1(u\\273)-334(p)-27(o)-55(jad\\246)-333(do)-333(dzie)-1(d)1(z)-1(i)1(c)-1(a)-333(i)-333(b)-28(\\246d\\246)-333(go)-334(n)1(am)-1(a)28(wia\\252.)]TJ 27.879 -13.549 Td[(I)-440(t)28(yl)1(e)-441(d)1(ok)55(aza\\252,)-440(\\273e)-440(k)28(obiet)28(y)-440(si\\246)-440(ju\\273)-440(n)1(ie)-440(prze)-1(ciwi\\252y)84(,)-440(za\\261)-441(gosp)-27(o)-28(dar)1(z)-1(e)-440(z)-1(acz)-1(\\246li)]TJ -27.879 -13.549 Td[(wyw)28(o)-28(dzi\\242,)-334(i)1(\\273)-334(s)-1(k)28(or)1(o)-334(k)1(s)-1(i\\241d)1(z)-334(zac)27(h\\246c)-1(a,)-333(to)-333(w)28(arto)-333(b)28(y)-333(tak)-333(z)-1(r)1(obi\\242.)]TJ 27.879 -13.55 Td[(Jes)-1(zc)-1(ze)-242(si\\246)-241(c)-1(a\\252y)-241(wiec)-1(z\\363r)-241(n)1(aradzali,)-241(al)1(e)-242(j)1(u\\273)-241(ranki)1(e)-1(m)-241(w)-241(niedziel\\246)-242(b)28(y)1(li)-241(ws)-1(zysc)-1(y)]TJ -27.879 -13.549 Td[(zdec)-1(yd)1(o)28(w)27(an)1(i)-334(n)1(a)-333(jedno.)]TJ 27.879 -13.549 Td[(Mi)1(e)-1(li)-364(i\\261\\242)-365(p)-28(o)-364(nies)-1(zp)-27(orac)27(h)-364(i)-364(z)-365(Ro)-28(c)27(h)1(e)-1(m)-365(n)1(a)-365(cz)-1(ele)-1(,)-364(\\273e)-365(to)-365(m\\363g\\252)-365(s)-1(i)1(\\246)-365(rozm)-1(\\363)28(wi\\242)-365(z)]TJ -27.879 -13.549 Td[(Mi)1(e)-1(mc)-1(ami)-333(p)-27(o)-334(ic)28(hn)1(e)-1(m)28(u.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-363(to)-363(b)28(y\\252)-363(Ro)-28(c)27(h)1(o)-363(te)-1(r)1(az)-364(pr)1(z)-1(y)28(ob)1(ie)-1(ca\\252)-363(c)27(h\\252op)1(ak)28(om)-1(;)-362(o)-28(des)-1(zli)-363(p)-27(oh)28(uk)1(uj)1(\\241c)-364(z)]TJ -27.879 -13.55 Td[(rad)1(o\\261)-1(ci\\241;)-359(on)-358(s)-1(iedzia\\252)-359(na)-359(Bory)1(no)28(wym)-360(gan)1(ku)-359(p)1(rze)-1(su)28(w)28(a)-56(j\\241c)-359(z)-1(i)1(arna)-359(r)1(\\363\\273)-1(a\\253)1(c)-1(a)-359(i)-359(cos)-1(i)1(k)]TJ 0 -13.549 Td[(me)-1(d)1(ytuj)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[(Wcz)-1(e\\261)-1(n)1(ie)-256(j)1(e)-1(szc)-1(ze)-256(b)28(y\\252o,)-255(d)1(opi)1(e)-1(ro)-255(co)-255(m)-1(iski)-255(spr)1(z)-1(\\241tn)1(\\246)-1(li)-255(p)-27(o)-255(\\261niad)1(aniu)1(,)-255(\\273)-1(e)-255(z)-1(ap)1(ac)27(h)]TJ -27.879 -13.549 Td[(\\273uru)-333(i)-333(ok)1(ras)-1(y)-333(wierci\\252)-334(n)1(oz)-1(d)1(rza,)-333(a)-334(P)1(ietrek)-334(p)1(rze)-1(ci\\241)-28(ga\\252)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(j)1(adle.)]TJ 27.879 -13.549 Td[(Cz)-1(as)-308(s)-1(i)1(\\246)-309(r)1(obi\\252)-308(ciep\\252y)-308(a)-308(n)1(ie)-1(u)1(paln)29(y)83(,)-307(jask)27(\\363\\252k)1(i)-308(ni)1(b)28(y)-308(ku)1(le)-309(p)1(rze)-1(cin)1(a\\252)-1(y)-307(p)-28(o)28(wietrze)-1(.)]TJ -27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-500(p)-27(o)-28(d)1(nosi\\252o)-500(si\\246)-500(dop)1(ie)-1(r)1(o)-500(zz)-1(a)-499(c)27(ha\\252u)1(p)28(y)83(,)-499(i\\273)-500(w)-500(cieniac)28(h)-500(p)-27(ol\\261ni)1(e)-1(w)28(a\\252)-1(y)-499(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(osusz)-1(on)1(e)-1(,)-333(ci\\246)-1(\\273kie)-334(t)1(ra)28(w)-1(y)-333(i)-333(z)-334(p)-27(\\363l)-333(za)27(wiew)27(a\\252)-333(c)27(h)1(\\252\\363)-28(d)-333(pac)28(hn)1(\\241c)-1(y)-333(zb)-28(o\\273am)-1(i)1(.)]TJ 27.879 -13.549 Td[(W)-289(c)27(ha\\252u)1(pie)-290(cic)28(ho)-290(b)29(y\\252o,)-290(j)1(ak)-289(z)-1(azw)-1(y)1(c)-1(za)-56(j)-289(w)-290(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246,)-289(k)28(obiet)28(y)-290(zwija\\252y)-289(s)-1(i)1(\\246)-290(k)28(ole)]TJ -27.879 -13.549 Td[(p)-27(orz\\241dk)28(\\363)28(w,)-405(d)1(z)-1(ieci)-405(ob)1(s)-1(iad)1(\\252s)-1(zy)-404(m)-1(isk)28(\\246)-405(pr)1(z)-1(ed)-404(ganki)1(e)-1(m)-405(p)-27(o)-56(j)1(ada\\252y)-404(z)-405(w)28(olna,)-404(br)1(oni\\241c)]TJ 0 -13.549 Td[(si\\246)-360(\\252y\\273k)56(am)-1(i)-359(i)-358(piskiem)-360(p)1(rze)-1(d)-359(\\212ap)1(\\241,)-359(kt\\363r)1(e)-1(n)-358(na)-359(gw)27(a\\252t)-359(r)1(w)27(a\\252)-359(s)-1(i)1(\\246)-360(d)1(o)-360(sp)-27(\\363\\252ki,)-359(mac)-1(i)1(ora)]TJ 0 -13.549 Td[(st\\246)-1(k)56(a\\252a)-446(p)-27(o)-28(d)-445(\\261)-1(cian\\241)-445(na)-446(s\\252o\\253cu,)-445(tak)-446(j)1(\\241)-446(w)28(ali\\252y)-446(\\252b)1(am)-1(i)-445(pr)1(os)-1(i\\246ta)-446(d)1(obiera)-55(j\\241c)-446(s)-1(i)1(\\246)-447(d)1(o)]TJ 0 -13.55 Td[(mle)-1(k)56(a,)-465(to)-465(b)-27(o)-28(ciek)-465(rozgania\\252)-465(ku)1(ry)-465(i)-465(ga)-55(jd)1(a\\252)-465(s)-1(i\\246)-465(z)-1(a)-465(\\271rebaki)1(e)-1(m)-465(bar)1(as)-1(zkuj)1(\\241c)-1(ym)-465(w)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(\\363rzu,)-235(n)1(ie)-1(k)1(ie)-1(d)1(y)-235(dr)1(z)-1(ew)27(a)-235(zas)-1(zumia\\252y)-235(i)-235(sad)-235(s)-1(i)1(\\246)-236(rozk)28(oleba\\252,)-235(za\\261)-236(p)-27(ole)-1(m)-235(rozc)27(h)1(o)-28(dzi\\252)]TJ\nET\nendstream\nendobj\n1746 0 obj <<\n/Type /Page\n/Contents 1747 0 R\n/Resources 1745 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1732 0 R\n>> endobj\n1745 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1750 0 obj <<\n/Length 9764      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(547)]TJ -358.232 -35.866 Td[(si\\246)-334(jeno)-333(b)1(rz)-1(\\246k)-333(psz)-1(cz)-1(\\363\\252)-333(id)1(\\241c)-1(yc)28(h)-333(na)-333(rob)-27(ot\\246)-334(i)-333(d)1(z)-1(w)28(onieni)1(a)-334(sk)28(o)28(w)-1(r)1(onk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(I)-447(na)-447(w)-1(si)-447(z)-1(al)1(e)-1(g\\252a)-447(niedzielna)-447(c)-1(i)1(c)27(ho\\261\\242)-1(,)-447(\\273e)-448(t)28(ylk)28(o)-447(ni)1(e)-1(ki)1(e)-1(d)1(y)-448(s\\252yc)27(h)1(a\\242)-448(b)28(y\\252o)-447(g\\252o-)]TJ -27.879 -13.549 Td[(sy)83(,)-373(ku)1(ra)-373(kt\\363r)1(a\\261)-374(zw)27(o\\252yw)28(a\\252a,)-373(to)-373(gdzie)-1(sik)-373(n)1(ad)-373(sta)27(w)28(em)-374(ze)-374(\\261m)-1(i)1(e)-1(c)27(h)1(am)-1(i)-372(a)-374(c)28(hlu)1(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(pu)1(c)-1(o)28(w)28(a\\252y)-333(s)-1(i\\246)-334(c)28(h\\252op)1(aki)-333(ab)-28(o)-333(k)56(ac)-1(zki)-333(zakw)27(ak)56(a\\252y)83(.)]TJ 27.879 -13.549 Td[(Drogi)-445(le)-1(\\273a\\252y)-446(pu)1(s)-1(t)1(e)-447(i)-446(r)1(oz)-1(migotan)1(e)-447(w)-446(s)-1(\\252o\\253)1(c)-1(u)1(,)-446(ma\\252o)-446(kto)-446(pr)1(z)-1(ec)27(ho)-27(dzi\\252,)-446(jeno)]TJ -27.879 -13.55 Td[(ni)1(e)-1(k)56(a)-56(j)-332(na)-333(progac)28(h)-333(c)-1(ze)-1(sa\\252y)-333(s)-1(i)1(\\246)-334(dziew)27(cz)-1(yn)29(y)-333(i)-334(k)1(tos)-1(ik)-333(z)-333(c)-1(ic)28(ha)-333(gra\\252)-333(na)-333(fu)1(jarce)-1(.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-249(p)1(rze)-1(b)1(ie)-1(r)1(a\\252)-249(r\\363\\273aniec)-1(,)-248(cz)-1(ase)-1(m)-249(n)1(as)-1(\\252u)1(c)27(hi)1(w)27(a\\252,)-248(a)-249(g\\252\\363)28(w)-1(n)1(ie)-249(m)27(y)1(\\261)-1(la\\252)-248(o)-249(Jagusi,)]TJ -27.879 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252)-247(j)1(\\241)-247(kr)1(\\246)-1(c\\241c)-1(\\241)-246(s)-1(i)1(\\246)-247(p)-28(o)-246(iz)-1(b)1(ie,)-247(czas)-1(em)-247(s)-1(ta)28(w)28(a\\252a)-247(za)-247(n)1(im)-1(,)-246(n)1(ie)-1(k)1(ie)-1(d)1(y)-246(s)-1(z\\252a)-247(w)-247(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e,)]TJ 0 -13.549 Td[(a)-437(wraca)-56(j\\241c)-437(spuszc)-1(za\\252a)-438(p)1(rze)-1(d)-436(nim)-437(o)-28(cz)-1(y)-436(i)-437(krw)28(a)28(w)-1(y)-436(rumieniec)-437(oblew)27(a\\252)-437(j)1(e)-1(j)-436(t)27(w)28(arz)]TJ 0 -13.549 Td[(wymiz)-1(ero)28(w)28(an\\241,)-333(\\273)-1(e)-333(z)-1(r)1(obi\\252o)-333(m)27(u)-333(si\\246)-334(\\273al.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(d)1(obr)1(otliwie,)-333(p)-28(o)-28(d)1(nosz)-1(\\241c)-333(na)-333(ni\\241)-333(o)-28(cz)-1(y)84(.)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-389(z)-390(z)-1(ap)1(art)28(ym)-389(o)-28(dd)1(e)-1(c)28(hem)-390(c)-1(zek)55(a)-55(j\\241c,)-389(c)-1(o)-389(p)-27(o)27(wie,)-389(ale)-390(on)1(,)-390(j)1(akb)28(y)-389(n)1(ie)]TJ -27.879 -13.549 Td[(wiedz\\241c)-1(,)-333(co)-334(rzec)-1(,)-333(zam)-1(r)1(ucz)-1(a\\252)-333(jeno)-333(c)-1(o)-333(ni)1(e)-1(b)1(\\241d\\271)-334(i)-333(zam)-1(i)1(lk\\252.)]TJ 27.879 -13.549 Td[(Na)-256(s)-1(w)28(o)-56(j)1(\\241)-257(stron)1(\\246)-257(zno)28(wu)-256(o)-28(desz)-1(\\252a,)-256(pr)1(z)-1(ysiad)1(\\252a)-257(w)-256(wyw)27(ar)1(t)27(y)1(m)-257(okn)1(ie)-257(i)-256(ws)-1(p)1(ar\\252sz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-262(o)-262(fu)1(tryn)1(\\246)-263(p)1(atrzy\\252a)-262(\\273a\\252os)-1(n)28(y)1(m)-1(i)-261(o)-28(cz)-1(yma)-262(w)28(e)-263(\\261wiat)-262(r)1(oz)-1(s\\252onec)-1(znion)29(y)83(,)-261(na)-262(te)-262(c)28(hm)27(u)1(r-)]TJ 0 -13.549 Td[(ki)-352(b)1(ia\\252e)-1(,)-352(co)-353(k)1(ie)-1(j)-351(g\\246)-1(si)-352(b\\252\\241k)56(a\\252y)-352(s)-1(i\\246)-352(p)-28(o)-352(ni)1(e)-1(b)1(ie)-353(j)1(as)-1(n)28(y)1(m)-1(,)-352(i)-352(ci\\246)-1(\\273kie)-352(w)27(es)-1(tc)28(hn)1(ie)-1(n)1(ia)-352(rw)28(a\\252y)]TJ 0 -13.55 Td[(si\\246)-267(j)1(e)-1(j)-266(z)-266(piersi,)-266(a)-266(niekiedy)-266(\\252zy)-266(k)56(apa\\252y)-266(z)-267(zacz)-1(erwie)-1(n)1(ion)28(y)1(c)27(h)-266(o)-28(cz)-1(u)-265(i)-266(p\\252yn)1(\\246)-1(\\252y)-266(w)28(olno)-266(p)-27(o)]TJ 0 -13.549 Td[(wyc)27(h)29(udzonej,)-338(miz)-1(ern)1(e)-1(j)-338(t)28(w)28(arzy)83(.)-338(Ju\\261c)-1(i)1(,)-339(ma\\252o)-339(to)-338(pr)1(z)-1(es)-1(z\\252a)-339(p)1(rze)-1(z)-339(te)-339(d)1(nie?)-339(Dy\\242)-339(ca\\252a)]TJ 0 -13.549 Td[(wie\\261)-389(s)-1(zc)-1(zu\\252a)-388(na)-388(n)1(i\\241,)-388(kieb)28(y)-388(na)-388(psa)-388(parszyw)27(ego;)-388(k)28(obiet)28(y)-388(o)-28(dwr)1(ac)-1(a\\252y)-388(si\\246)-389(pl)1(e)-1(cam)-1(i)1(,)]TJ 0 -13.549 Td[(kiej)-254(prze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a,)-254(a)-255(p)-27(oniekt\\363re)-255(splu)28(w)28(a\\252y)-255(za)-255(ni)1(\\241;)-255(pr)1(z)-1(yj)1(ac)-1(i)1(\\363\\252)-1(k)1(i)-255(jej)-254(nie)-255(s)-1(p)-27(ostrze)-1(ga\\252y)84(,)]TJ 0 -13.549 Td[(c)27(h)1(\\252op)28(y)-322(\\261m)-1(i)1(a\\252)-1(y)-321(s)-1(i\\246)-322(wz)-1(gar)1(dli)1(w)-1(i)1(e)-1(,)-322(a)-322(n)1(a)28(w)27(et)-322(w)27(czora)-56(j)-321(na)-55(jm\\252o)-28(dsz)-1(y)-321(Gul)1(basiak)-322(\\261m)-1(i)1(gn\\241\\252)]TJ 0 -13.55 Td[(za)-334(n)1(i\\241)-333(b\\252ote)-1(m)-333(i)-333(z)-1(akr)1(z)-1(y)1(c)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(W)83(\\363)-55(jto)28(w)28(a)-334(k)28(o)-28(c)28(han)1(ic)-1(a!)]TJ 0 -13.549 Td[(O!)-333(to)-333(jak)1(b)28(y)-333(j\\241)-333(no\\273e)-334(pr)1(z)-1(es)-1(zy\\252y)-333(i)-333(ws)-1(t)28(yd)-333(d)1(z)-1(i)1(w)-334(ni)1(e)-334(z)-1(ad)1(usi\\252!)]TJ 0 -13.549 Td[(M\\363)-55(j)-287(Bo\\273)-1(e,)-287(a)-288(b)-27(o)-287(to)-288(b)29(y\\252a)-288(win)1(o)28(w)27(ata?...)-287(sp)-27(oi\\252)-288(j)1(\\241)-288(p)1(rze)-1(ciek,)-287(\\273)-1(e)-287(o)-288(Bo\\273)-1(y)1(m)-288(\\261w)-1(i)1(e)-1(cie)]TJ -27.879 -13.549 Td[(ni)1(e)-278(wie)-1(d)1(z)-1(i)1(a\\252a...)-277(mog\\252)-1(a)-277(si\\246)-278(to)-277(p)1(rz)-1(eciw)-1(i)1(\\242)-1(?...)-277(a)-277(teraz)-278(wsz)-1(yscy)-277(na)-277(ni\\241,)-277(teraz)-277(c)-1(a\\252a)-277(wie)-1(\\261)]TJ 0 -13.55 Td[(uciek)56(a)-334(ki)1(e)-1(j)-333(o)-28(d)-332(z)-1(ap)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(on)1(e)-1(j)1(,)-334(a)-333(n)1(ikto)-333(w)-334(ob)1(roni)1(e)-334(nie)-333(s)-1(tan)1(ie.)]TJ 27.879 -13.549 Td[(Gd)1(z)-1(ie\\273)-485(to)-485(te)-1(r)1(az)-486(p)-27(\\363)-56(j)1(dzie)-1(?)-485(Dr)1(z)-1(wi)-485(p)1(rz)-1(ed)-485(n)1(i\\241)-485(p)-27(oz)-1(a)28(wie)-1(r)1(a)-56(j)1(\\241)-485(i)-485(jes)-1(zc)-1(ze)-485(psam)-1(i)]TJ -27.879 -13.549 Td[(sz)-1(cz)-1(u)1(\\242)-425(goto)28(wi!...)-424(Na)28(w)28(e)-1(t)-424(do)-424(matki)-424(n)1(ie)-425(ma)-425(i)1(\\261)-1(\\242)-425(p)-27(o)-424(c)-1(o:)-424(p)1(ra)28(wie)-425(j)1(\\241)-425(wygn)1(a\\252a)-425(mimo)]TJ 0 -13.549 Td[(pr)1(\\363\\261)-1(b)-223(i)-223(p)1(\\252ac)-1(z\\363)27(w..)1(.)-223(\\273)-1(e)-224(gd)1(yb)28(y)-223(n)1(ie)-224(Hank)56(a,)-223(ju)1(\\273)-224(b)28(y)-223(co)-224(z\\252e)-1(go)-223(sobie)-224(zrob)1(i\\252a...)-223(Ju)1(\\261)-1(ci,)-223(jedn)1(a)]TJ 0 -13.549 Td[(An)28(tk)28(o)28(w)28(a)-452(zaopiek)28(o)28(w)27(a\\252a)-452(si\\246)-452(n)1(i\\241)-452(p)-27(o)-28(cz)-1(ciwie,)-452(n)1(ie)-452(c)-1(of)1(a)-56(j)1(\\241c)-452(r\\246ki)-452(p)-27(omo)-28(cnej)-452(i)-451(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(br)1(oni\\241c)-333(prze)-1(d)-332(lud)1(\\271)-1(mi..)1(.)]TJ 27.879 -13.549 Td[(A)-234(b)-27(o)-234(i)-233(ni)1(e)-1(win)1(o)27(w)28(ata,)-234(n)1(ie,)-234(w)28(\\363)-56(j)1(t)-234(win)1(ie)-1(n)1(,)-234(\\273e)-234(j\\241)-234(sku)1(s)-1(i\\252)-233(i)-234(p)1(rz)-1(y)1(niew)27(ol)1(i\\252)-234(do)-233(grze)-1(c)28(h)28(u,)]TJ -27.879 -13.549 Td[(a)-312(j)1(u\\273)-312(na)-55(jb)1(ardziej)-312(win)1(ien)-312(wsz)-1(ystkiem)27(u)-311(ten)-312(stary)-311(z)-1(b)1(uk!)-311(P)28(om)28(y\\261)-1(l)1(a\\252)-1(a)-311(naraz)-312(o)-312(m\\246\\273)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-283(C)-1(a\\252e)-284(\\273ycie)-284(m)-1(i)-283(za)28(w)-1(i)1(\\241z)-1(a\\252!)-283(P)28(ann)1(\\241)-284(b)28(y)1(\\252ab)28(ym,)-284(t)1(o)-284(ni)1(e)-284(dali)1(b)28(y)-283(m)-1(n)1(ie)-284(uk)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(\\242)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(..)1(.)-333(I)-334(c\\363\\273)-1(em)-334(to)-333(z)-1(a)-333(ni)1(m)-334(u\\273y\\252a?)-333(Ni)-334(\\273ycia,)-333(ni)-333(\\261w)-1(i)1(ata!...)]TJ 27.879 -13.549 Td[(Roz)-1(m)28(y\\261la\\252a)-285(gor)1(\\241c)-1(zk)28(o)27(w)28(o,)-284(\\273)-1(a\\252o\\261c)-1(i)1(e)-285(s)-1(i\\246)-285(w)-284(niej)-284(k)56(a)-56(j)1(\\261)-1(\\242)-285(zap)-27(o)-28(dzie)-1(w)28(a\\252y)83(,)-284(a)-284(ws)-1(ta)28(w)28(a\\252)]TJ -27.879 -13.55 Td[(nat)1(om)-1(iast)-333(s)-1(r)1(ogi)-334(gn)1(iew)-334(i)-333(tak)-333(j\\241)-333(rozpr)1(\\246)-1(\\273a\\252,)-333(ja\\273e)-334(z)-1(acz)-1(\\246\\252a)-333(biega\\242)-334(p)-27(o)-334(i)1(z)-1(b)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-345(P)28(ew)-1(n)1(ie,)-345(c)-1(o)-345(ws)-1(zystk)28(o)-345(z)-1(\\252e)-346(p)1(rze)-1(z)-345(niego...)-345(i)-345(z)-345(An)28(tki)1(e)-1(m)-345(b)28(y)-345(tego)-346(n)1(ie)-346(b)29(y\\252o...)-345(i)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)-350(b)28(y)-350(s)-1(i)1(\\246)-351(nie)-351(w)28(a\\273)-1(y)1(\\252...)-350(i...)-350({)-350(s)-1(k)56(ar\\273y\\252a)-351(si\\246.)-351(\\233y\\252ab)29(y)-351(se)-351(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-351(jak)-350(prz\\363)-28(d)1(z)-1(i,)-350(j)1(ak)]TJ 0 -13.549 Td[(\\273yj\\241)-275(wsz)-1(y)1(\\242)-1(ki)1(e)-1(..)1(.)-275(Z\\252y)-275(go)-274(p)-28(osta)28(w)-1(i)1(\\252)-275(na)-274(dro)-27(dze)-276(i)-274(matk)28(\\246)-275(s)-1(ku)1(s)-1(i)1(\\252)-275(m)-1(or)1(gam)-1(i)1(,)-275(a)-275(teraz)-275(m)28(usi)]TJ 0 -13.549 Td[(cie)-1(r)1(z)-1(p)1(ie)-1(\\242...)-333(m)28(usi...)-333({)-333(a\\273)-1(eb)28(y)-333(ci\\246)-334(rob)1(aki)-333(rozto)-28(cz)-1(y\\252y)1(!)]TJ 27.879 -13.55 Td[(Wyb)1(uc)28(hn)1(\\246)-1(\\252a)-253(zac)-1(isk)56(a)-56(j\\241c)-253(m\\261)-1(ciwie)-253(pi\\246\\261)-1(cie)-253(i)-253(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-253(pr)1(z)-1(ez)-254(sz)-1(czyto)28(w)27(e)-253(okno)]TJ -27.879 -13.549 Td[(w)28(as)-1(\\241)-28(g)-367(z)-367(c)27(hor)1(ym)-367(p)-28(o)-28(d)-366(dr)1(z)-1(ew)27(ami,)-367(p)-27(obi)1(e)-1(g\\252a)-367(tam)-367(gw)27(a\\252to)28(wnie)-367(i)-367(nac)28(h)28(yla)-55(j\\241c)-367(s)-1(i\\246)-367(nad)]TJ\nET\nendstream\nendobj\n1749 0 obj <<\n/Type /Page\n/Contents 1750 0 R\n/Resources 1748 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1748 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1754 0 obj <<\n/Length 8072      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(548)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(m)-334(zas)-1(ycz)-1(a\\252a)-333(ni)1(e)-1(n)1(a)27(wistni)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ab)28(y\\261)-334(zdec)27(h)1(\\252)-334(j)1(ak)-333(na)-56(j)1(pr)1(\\246)-1(d)1(z)-1(ej,)-333(t)28(y)-333(s)-1(tar)1(y)-333(psie)-1(!)1(...)]TJ 0 -13.549 Td[(Chor)1(y)-465(wyt)1(rz)-1(esz)-1(cz)-1(y\\252)-464(na)-464(ni)1(\\241)-465(o)-27(c)-1(zy)-464(i)-465(cosik)-464(z)-1(amam)-1(r)1(ota\\252,)-464(ale)-465(j)1(u\\273)-465(o)-28(d)1(lec)-1(ia\\252a:)]TJ -27.879 -13.549 Td[(ul)1(\\273)-1(y\\252o)-333(jej)-333(gala\\253)1(c)-1(i)1(e)-1(,)-333(mia\\252a)-334(si\\246)-334(j)1(u\\273)-334(n)1(a)-333(kim)-334(o)-27(dbi)1(ja\\242)-334(za)-334(sw)28(o)-56(je)-333(krzywdy)84(.)-333(.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-295(s)-1(ta\\252)-295(n)1(a)-295(ganku)1(,)-295(gdy)-295(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-295(z)-295(p)-28(o)28(wrotem,)-295(ale)-295(uda)28(w)28(a\\252,)-295(\\273)-1(e)-295(jej)-295(n)1(ie)]TJ -27.879 -13.55 Td[(sp)-28(ostrze)-1(ga.)-333(Zagada\\252)-333(g\\252o\\261)-1(n)1(iej)-333(do)-333(Ro)-28(c)27(h)1(a:)]TJ 27.879 -13.549 Td[({)-333(Mateusz)-334(rozp)-28(o)28(wiad)1(a,)-334(j)1(ak)28(o)-333(ic)27(h)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(iecie)-334(na)-333(Mi)1(e)-1(mc)-1(\\363)28(w...)]TJ 0 -13.549 Td[({)-333(Prosili)1(,)-333(to)-334(p)-27(\\363)-56(j)1(d\\246)-333(z)-334(nimi)-333(do)-333(s\\241s)-1(iad)1(\\363)28(w)-334({)-333(p)-28(o)28(wiedzia\\252)-334(z)-333(nacis)-1(k)1(ie)-1(m.)]TJ 0 -13.549 Td[({)-269(No)28(w)27(e)-269(dyb)1(ki)-269(sobie)-269(s)-1(zyku)1(j\\241.)-269(Rozwydr)1(z)-1(y\\252y)-269(si\\246)-269(c)27(h\\252op)28(y)-269(n)1(a)-269(dziedzic)-1(u)-268(i)-269(m)27(y\\261l\\241,)]TJ -27.879 -13.549 Td[(\\273e)-281(j)1(ak)-280(zno)28(wu)-280(p)-27(\\363)-56(j)1(d\\241)-280(h)28(u)1(rm\\241)-280(z)-280(kijami)-280(a)-279(krzykiem,)-280(to)-280(Mi)1(e)-1(mc)-1(y)-279(s)-1(i\\246)-280(u)1(l\\246)-1(k)1(n\\241)-280(i)-280(P)29(o)-28(dl)1(e)-1(sia)]TJ 0 -13.549 Td[(ni)1(e)-334(ku)1(pi\\241.)]TJ 27.879 -13.55 Td[(Ledwie)-334(si\\246)-334(h)1(am)-1(o)28(w)28(a\\252)-334(ze)-334(z\\252)-1(o\\261c)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(s)-1(i)1(\\246)-334(i)-333(w)-1(y)1(rze)-1(kn)1(\\241)-334(k)1(upn)1(a,)-333(kto)-333(wie)-1(?..)1(.)]TJ 0 -13.549 Td[({)-453(A)-452(ju)1(\\261)-1(ci!)-452(gron)28(ta)-453(p)-27(orozmie)-1(r)1(z)-1(al)1(i,)-453(wsz)-1(ystkie)-453(f)1(am)-1(i)1(e)-1(li)1(e)-453(ju\\273)-453(si\\246)-453(s)-1(p)1(ro)28(w)28(adzi\\252y)83(,)]TJ -27.879 -13.549 Td[(stud)1(nie)-334(k)28(op)1(i\\241,)-333(k)56(am)-1(i)1(e)-1(\\253)-333(n)1(a)-334(f)1(un)1(dame)-1(n)29(ta)-334(zw)27(o\\273\\241...)]TJ 27.879 -13.549 Td[({)-333(Wiem)-334(dob)1(rze)-1(,)-333(\\273e)-334(u)-333(rejen)28(ta)-333(jes)-1(zcz)-1(e)-334(ak)1(tu)-333(nie)-333(p)-28(o)-27(dpi)1(s)-1(ali)]TJ 0 -13.55 Td[({)-333(Mni)1(e)-334(s)-1(i)1(\\246)-334(pr)1(z)-1(ysi\\246gali,)-333(jak)28(o)-333(j)1(u\\273)-334(p)-27(o)-333(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(.)]TJ 0 -13.549 Td[({)-333(M\\363)28(wi\\246)-1(,)-333(co)-334(wiem,)-333(i)-334(gd)1(yb)28(y)-333(d)1(z)-1(iedzic)-334(znal)1(az)-1(\\252)-333(le)-1(p)1(s)-1(zyc)28(h)-333(kup)-27(c)-1(\\363)28(w...)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(p)1(rze)-1(ciek)-333(Lip)-28(ce)-334(n)1(ie)-334(ku)1(pi\\241,)-333(n)1(ikt)-333(grosz)-1(em)-334(n)1(ie)-334(\\261m)-1(i)1(e)-1(rd)1(z)-1(i)1(...)]TJ 0 -13.549 Td[({)-333(Grze)-1(l)1(a)-334(tu)-333(j)1(ak)28(o\\261)-334(k)56(alku)1(luj)1(e)-334(i)-333(zda)-56(j)1(e)-334(mi)-333(s)-1(i\\246...)]TJ 0 -13.549 Td[({)-314(G)1(rze)-1(la!)-313({)-314(p)1(rze)-1(r)1(w)27(a\\252)-314(gw)28(a\\252to)28(wnie)-314({)-313(Grze)-1(l)1(a)-314(si\\246)-314(p)-28(c)28(ha)-313(na)-314(p)1(ierws)-1(ze)-1(go,)-313(a)-314(g\\252u)1(pi)]TJ -27.879 -13.55 Td[(nar)1(\\363)-28(d)-333(b)1(a\\252)-1(am)28(uci)-333(i)-333(do)-333(z)-1(\\252ego)-334(j)1(e)-1(n)1(o)-334(p)1(ro)28(w)28(adzi...)]TJ 27.879 -13.549 Td[({)-309(Zob)1(ac)-1(zym)27(y)84(,)-309(j)1(ak)-309(to)-309(wyj)1(dzie,)-309(zobacz)-1(ym)28(y!)-309({)-308(m)-1(\\363)28(wi\\252)-309(Ro)-28(c)28(ho)-309(u)1(\\261)-1(miec)27(ha)-55(j\\241c)-309(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co,)-333(gdy\\273)-333(k)28(o)27(w)28(al)-333(ja\\273e)-334(wyryw)28(a\\252)-333(s)-1(e)-334(w)28(\\241s)-1(y)-333(ze)-334(z\\252o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Jac)-1(ek)-333(z)-334(k)56(ance)-1(l)1(arii!)-333({)-333(z)-1(a)28(w)28(o\\252a\\252)-334(sp)-28(ostrze)-1(ga)-55(j\\241c)-333(s)-1(t\\363)-55(jk)28(\\246)-334(w)-333(op\\252otk)56(ac)27(h)1(.)]TJ 0 -13.549 Td[({)-256(Dla)-256(\\377)-55(Ann)28(y)-255(Ma\\242)-1(wiej\\363)28(wn)28(y)-256(Bory)1(na\")-256(p)1(apier)-256(z)-256(k)55(an)1(c)-1(elari)1(i!)-256({)-256(rec)-1(y)1(to)28(w)27(a\\252)-256(Jace)-1(k)]TJ -27.879 -13.55 Td[(wyci\\241)-28(ga)-56(j)1(\\241c)-334(j)1(ak)55(\\241\\261)-334(k)28(op)-27(ert\\246)-334(z)-333(torb)28(y)84(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-407(p)1(rzybi)1(e)-1(g\\252a)-407(i)-406(nies)-1(p)-27(ok)28(o)-56(j)1(nie)-407(ob)1(raca)-1(\\252a)-406(papi)1(e)-1(r)1(,)-407(ni)1(e)-408(wiedz\\241c)-1(,)-406(c)-1(o)-407(z)-407(n)1(im)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)-1(z\\241\\242.)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(zytam)-334({)-333(rze)-1(k)1(\\252)-334(Ro)-28(c)28(ho.)]TJ 0 -13.549 Td[(Ko)28(w)28(al)-447(c)27(h)1(c)-1(i)1(a\\252)-447(m)27(u)-446(za)-56(j)1(rze)-1(\\242)-447(pr)1(z)-1(ez)-447(rami\\246,)-447(ale)-447(Ro)-28(c)28(ho)-446(z)-1(amkn\\241\\252)-446(pr\\246dk)28(o)-446(list)-447(i)]TJ -27.879 -13.55 Td[(rze)-1(k)1(\\252)-334(n)1(a)-56(j)1(s)-1(p)-27(ok)28(o)-56(j)1(niej:)]TJ 27.879 -13.549 Td[({)-330(S\\241d)-330(w)28(as)-331(za)28(w)-1(i)1(adamia,)-330(Hank)56(a,)-330(\\273e)-331(mo\\273)-1(ec)-1(ie)-330(s)-1(i)1(\\246)-331(z)-331(An)28(tk)1(ie)-1(m)-330(widy)1(w)27(a\\242)-331(r)1(az)-331(na)]TJ -27.879 -13.549 Td[(t)28(yd)1(z)-1(ie\\253.)]TJ 27.879 -13.549 Td[(Hank)56(a,)-234(opatr)1(z)-1(ywsz)-1(y)-234(s)-1(t)1(\\363)-56(jk)28(\\246,)-234(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-235(do)-234(izb)28(y)83(,)-234(z)-1(a\\261)-235(Ro)-28(c)28(ho)-234(dop)1(ie)-1(r)1(o)-235(p)-27(o)-235(o)-28(d)1(e)-1(j)1(\\261)-1(ciu)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)1(a)-334(p)-27(os)-1(zed\\252)-333(z)-1(a)-333(ni\\241,)-333(w)28(o\\252a)-56(j)1(\\241c)-334(rad)1(o\\261)-1(n)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-312(Co)-312(in)1(nego)-312(stoi)-312(n)1(apisane)-312(w)-312(pap)1(ierze)-1(,)-311(nie)-312(c)27(h)1(c)-1(i)1(a\\252)-1(em)-312(t)28(ylk)28(o)-312(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-312(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(k)28(o)28(w)27(al)1(u!)-337(S\\241d)-336(p)-28(o)28(wiadamia,)-337(b)29(y\\261)-1(cie)-338(p)1(rzywie)-1(\\271li)-337(p)1(i\\246)-1(\\242se)-1(t)-337(ru)1(bli)-337(zas)-1(t)1(a)27(wu)-337(al)1(b)-28(o)-337(p)-27(or\\246c)-1(ze)-1(-)]TJ 0 -13.549 Td[(ni)1(e)-1(,)-333(to)-333(An)28(tk)56(a)-333(z)-1(araz)-333(w)-1(y)1(pu)1(s)-1(zc)-1(z\\241...)-333(Co)-333(to)-334(w)28(am?)-1(..)1(.)]TJ 27.879 -13.549 Td[(Nie)-537(o)-27(drzek\\252a,)-536(g\\252)-1(os)-536(jej)-536(o)-28(debr)1(a\\252o,)-536(s)-1(tan)1(\\246)-1(\\252a)-536(jak)-536(wryt)1(a,)-537(r)1(umie\\253ce)-537(p)-27(okry\\252y)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(z)-1(,)-454(p)-27(ote)-1(m)-454(z)-1(b)1(lad\\252a)-454(kiej)-454(\\261)-1(ciana,)-454(o)-28(cz)-1(y)-454(si\\246)-455(p)1(rz)-1(y)1(\\242)-1(mi\\252y)-454(\\252z)-1(ami,)-454(rozw)-1(i)1(e)-1(d)1(\\252a)-455(r\\246ce)-455(i)]TJ 0 -13.549 Td[(z)-334(ci\\246\\273)-1(ki)1(e)-1(m)-334(w)28(es)-1(tc)28(hni)1(e)-1(n)1(ie)-1(m)-333(jak)-333(d\\252u)1(ga)-334(r)1(ymn\\246\\252a)-334(n)1(a)-334(t)28(w)28(arz)-334(p)1(rze)-1(d)-333(ob)1(razam)-1(i.)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)1(o)-261(s)-1(i)1(\\246)-262(wyn)1(i\\363s)-1(\\252)-261(cic)27(h)29(u\\261k)28(o,)-261(s)-1(i)1(e)-1(dzia\\252)-261(n)1(a)-261(ganku)-260(i)-261(c)-1(zyta)-55(j\\241c)-261(jes)-1(zc)-1(ze)-262(ten)-261(p)1(api)1(e)-1(r)]TJ -27.879 -13.549 Td[(u\\261mie)-1(c)28(ha\\252)-282(si\\246)-282(z)-1(ar)1(\\363)28(w)-1(n)1(o)-282(rozrad)1(o)27(w)28(an)28(y)84(,)-282(za\\261)-282(p)-28(o)-281(jakim\\261)-282(cz)-1(asie)-282(z)-1(n)1(o)27(wu)-281(z)-1(a)-55(jr)1(z)-1(a\\252)-282(d)1(o)-282(izb)28(y)84(.)]TJ\nET\nendstream\nendobj\n1753 0 obj <<\n/Type /Page\n/Contents 1754 0 R\n/Resources 1752 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1752 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1757 0 obj <<\n/Length 9275      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(549)]TJ -330.353 -35.866 Td[(Hank)56(a)-330(kl\\246)-1(cza\\252)-1(a)-330(na)-330(\\261)-1(ro)-27(dku)-330(mo)-28(dl)1(\\241c)-332(si\\246)-331(ca\\252)-1(\\241)-330(du)1(s)-1(z\\241,)-331(\\273e)-331(dziw)-331(si\\246)-331(jej)-331(se)-1(r)1(c)-1(e)-331(n)1(ie)]TJ -27.879 -13.549 Td[(rozp)-27(\\246)-1(k\\252o)-412(z)-412(rado\\261ci)-412(i)-412(z)-413(on)1(e)-1(go)-412(\\273aru)-411(dzi\\246)-1(k)28(czynie\\253;)-411(kr\\363tki)1(e)-1(,)-412(r)1(w)27(an)1(e)-413(w)28(e)-1(stc)27(h)1(nieni)1(a)-412(i)]TJ 0 -13.549 Td[(sz)-1(ept)28(y)-231(gor)1(\\241c)-1(e)-231(zda\\252y)-230(s)-1(i\\246)-231(ca\\252\\241)-231(izb)-28(\\246)-231(wyp)-27(e)-1(\\252n)1(ia\\242)-231(b\\252ysk)56(am)-1(i,)-230(bi)1(\\252y)-231(kiej)-230(s)-1(\\252u)1(p)28(y)-231(se)-1(r)1(dec)-1(znego)]TJ 0 -13.549 Td[(ogni)1(a)-472(p)-27(o)-28(d)-471(stop)28(y)-471(C)-1(z\\246)-1(sto)-28(c)28(ho)28(ws)-1(ki)1(e)-1(j)1(,)-472(\\273yw)28(\\241)-472(kr)1(w)-1(i)1(\\241)-472(sp\\252yw)28(a\\252y)83(.)-471(Umie)-1(r)1(a\\252a)-472(p)1(ra)28(w)-1(i)1(e)-472(z)-1(e)]TJ 0 -13.549 Td[(sz)-1(cz)-1(\\246\\261)-1(cia,)-499(\\252zy)-499(c)-1(i)1(e)-1(k\\252y)-499(stru)1(m)-1(i)1(e)-1(n)1(iami)-499(a)-499(w)-1(r)1(az)-500(z)-499(nimi)-499(\\261c)-1(iek)56(a\\252a)-499(pami\\246)-1(\\242)-499(ws)-1(zy\\242kic)27(h)]TJ 0 -13.55 Td[(b)-27(ol\\363)28(w)-334(d)1(a)27(wn)28(yc)28(h,)-333(p)1(am)-1(i\\246\\242)-334(kr)1(z)-1(y)1(w)-1(d)-333(wsz)-1(elki)1(c)27(h.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-334(si\\246)-334(wres)-1(zc)-1(i)1(e)-334(i)-333(o)-28(cie)-1(r)1(a)-56(j)1(\\241c)-334(\\252z)-1(y)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(Ro)-28(c)27(h)1(o)27(wi:)]TJ 0 -13.549 Td[({)-282(Ju\\273em)-283(teraz)-282(goto)27(w)28(a)-282(na)-282(n)1(o)27(w)28(e,)-282(b)-28(o)-282(c)28(ho)-28(\\242b)28(y)-282(p)1(rz)-1(y)1(s)-1(z\\252o)-282(na)-56(j)1(gorsz)-1(e,)-282(to)-282(ju)1(\\273)-283(tak)1(ie)]TJ -27.879 -13.549 Td[(z\\252)-1(e)-333(nie)-333(b)-28(\\246dzie)-1(.)]TJ 27.879 -13.549 Td[(A\\273)-282(s)-1(i)1(\\246)-283(zdziwi\\252,)-281(tak)-282(n)1(agle)-282(s)-1(i\\246)-282(p)1(rze)-1(mieni\\252a:)-281(o)-28(c)-1(zy)-282(si\\246)-282(zais)-1(k)1(rz)-1(y)1(\\252)-1(y)84(,)-281(krew)-282(z)-1(agr)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(na)-333(b)1(ladyc)28(h)-333(p)-28(ol)1(ic)-1(zk)56(ac)27(h)1(,)-334(p)1(rosto)28(w)27(a\\252a)-333(s)-1(i)1(\\246)-1(,)-333(jak)1(b)28(y)-333(jej)-333(z)-334(dzies)-1(i)1(\\246)-1(\\242)-334(l)1(at)-334(u)1(b)28(y\\252o.)]TJ 27.879 -13.55 Td[({)-360(Uwi\\253)1(c)-1(i)1(e)-360(s)-1(i\\246)-360(ze)-360(s)-1(p)1(rze)-1(d)1(a\\273)-1(\\241,)-359(z)-1(r)1(\\363b)-28(cie,)-360(co)-360(p)-27(otrze)-1(b)1(a,)-360(p)1(ieni\\246dzy)-360(i)-359(p)-27(o)-56(jedziem)27(y)]TJ -27.879 -13.549 Td[(p)-27(o)-334(An)29(tk)55(a,)-333(c)28(ho)-28(\\242b)28(y)-333(ju)1(tro)-333(alb)-27(o)-334(w)28(e)-334(wtorek.)]TJ 27.879 -13.549 Td[({)-333(An)28(tek)-334(wr)1(ac)-1(a!)-333(An)28(tek)-333(w)-1(r)1(ac)-1(a!)-333({)-333(p)-27(o)27(wtar)1(z)-1(a\\252a)-333(b)-28(ez)-1(w)28(oln)1(ie)-1(.)]TJ 0 -13.549 Td[({)-412(Ni)1(e)-412(rozp)-28(o)28(wiada)-55(jcie!)-412(P)29(o)27(wr\\363)-27(c)-1(i,)-411(to)-411(s)-1(i\\246)-412(i)-411(tak)-411(do)28(wiedz\\241,)-412(za\\261)-412(p)-27(ote)-1(m)-412(t)1(rz)-1(eba)]TJ -27.879 -13.549 Td[(m\\363)27(wi\\242,)-333(c)-1(o)-333(go)-333(pu)1(\\261)-1(cili)-333(pr)1(z)-1(ez)-334(zas)-1(ta)28(wu:)-333(k)28(o)28(w)28(al)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(s)-1(i)1(\\246)-334(w)27(as)-333(c)-1(ze)-1(p)1(ia\\252.)]TJ 27.879 -13.55 Td[(Naucza\\252)-483(c)-1(ic)28(ho.)-483(O)1(biec)-1(a\\252a)-483(u)1(ro)-28(czy\\261)-1(cie,)-483(t)28(ylk)28(o)-483(j)1(e)-1(d)1(nej)-483(J)1(\\363z)-1(ce)-484(za)28(w)-1(i)1(e)-1(r)1(z)-1(a)-55(j\\241c)-483(ta-)]TJ -27.879 -13.549 Td[(jemnic\\246)-1(,)-409(j)1(e)-1(n)1(o)-409(c)-1(o)-409(ledwie)-410(j)1(u\\273)-409(z)-1(d)1(z)-1(ier\\273a\\252a)-410(t\\246)-409(s)-1(tr)1(as)-1(zn\\241)-409(rad)1(o\\261)-1(\\242;)-409(c)27(h)1(o)-28(dzi\\252a)-409(kiej)-409(opi)1(ta,)]TJ 0 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\252a)-353(ci\\246)-1(giem)-353(dziec)-1(i)1(,)-353(gad)1(a\\252)-1(a)-352(do)-352(\\271)-1(rebak)56(a,)-352(gada\\252a)-353(d)1(o)-353(mac)-1(i)1(ory)83(,)-352(pr)1(z)-1(edr)1(z)-1(e\\271)-1(n)1(ia\\252a)]TJ 0 -13.549 Td[(si\\246)-338(z)-338(b)-27(o)-28(\\242kiem)-1(,)-337(a)-337(\\212ap)1(ie)-1(,)-337(k)1(t\\363ren)-337(c)27(h)1(o)-28(dzi\\252)-337(z)-1(a)-337(ni)1(\\241)-338(ze)-338(sk)56(am)-1(leni)1(e)-1(m)-337(i)-337(w)-338(o)-28(czy)-337(z)-1(agl\\241d)1(a\\252,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-333(c)-1(osik)-333(miarku)1(j\\241c,)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(w)-333(s)-1(ame)-334(u)1(c)27(ho)-333(ni)1(b)28(y)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wi:)]TJ 27.879 -13.55 Td[({)-333(C)-1(i)1(c)27(ho,)-333(g\\252u)1(pi,)-333(gosp)-28(o)-27(darz)-333(prze)-1(ciek)-333(w)-1(r)1(ac)-1(a)-55(j\\241!)]TJ 0 -13.549 Td[(I)-379(\\261mia\\252a)-379(si\\246,)-379(p)-27(op\\252aku)1(j\\241c)-379(n)1(a)-379(p)1(rze)-1(mian,)-378(Maciejo)28(wi)-379(d)1(\\252ugo)-378(o)-379(t)28(ym)-379(r)1(oz)-1(p)-27(o)28(wia-)]TJ -27.879 -13.549 Td[(da\\252a,)-335(ja\\273)-1(e)-336(o)-28(cz)-1(y)-335(trze)-1(sz)-1(cz)-1(y)1(\\252)-337(wystrac)28(han)1(e)-337(i)-336(cos)-1(i)1(k)-336(mam)-1(la\\252)-336(j)1(\\246)-1(zykiem.)-336(Zabacz)-1(y)1(\\252)-1(a)-336(j)1(u\\273)]TJ 0 -13.549 Td[(o)-448(ca\\252ym)-448(\\261w)-1(i)1(e)-1(cie,)-448(\\273e)-448(J\\363z)-1(k)56(a)-448(m)28(usia\\252a)-448(p)1(rzyp)-27(om)-1(in)1(a\\242)-1(,)-447(i\\273)-448(cz)-1(as)-448(j)1(u\\273)-448(si\\246)-448(s)-1(zyk)28(o)28(w)27(a\\242)-448(d)1(o)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(io\\252a.)-384(He)-1(j)1(,)-385(p)-27(onosi\\252o)-385(j)1(\\241)-385(s)-1(zc)-1(z\\246\\261)-1(cie)-1(,)-384(p)-27(onos)-1(i)1(\\252o,)-385(\\273e)-386(c)28(hcia\\252o)-385(si\\246)-385(jej)-385(\\261pi)1(e)-1(w)28(a\\242)-1(,)-384(c)27(hcia-)]TJ 0 -13.55 Td[(\\252o)-411(si\\246)-411(l)1(e)-1(cie)-1(\\242)-410(w)27(e)-411(\\261w)-1(i)1(at)-411(i)-410(kr)1(z)-1(yk)56(a\\242)-411(zb)-27(o\\273)-1(om,)-410(c)-1(o)-410(s)-1(i\\246)-411(d)1(o)-411(n)1(\\363g)-411(k)1(\\252ania\\252y)-410(z)-1(e)-410(c)27(hr)1(z)-1(\\246s)-1(tem,)]TJ 0 -13.549 Td[(dr)1(z)-1(ewinom,)-333(z)-1(i)1(e)-1(mi)-333(w)-1(szys)-1(tk)1(ie)-1(j)1(:)]TJ 27.879 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arz)-334(wraca)-56(j)1(\\241!)-333(An)28(tek)-333(w)-1(r)1(\\363)-28(c)-1(i)1(!)]TJ 0 -13.549 Td[(Ja\\273e)-278(z)-277(on)1(e)-1(j)-276(rad)1(o\\261)-1(ci)-277(Jagn)1(\\246)-277(j\\246\\252)-1(a)-276(z)-1(ap)1(ras)-1(za\\242,)-277(b)28(yc)28(h)-277(r)1(az)-1(em)-277(p)-28(osz\\252)-1(y)84(,)-277(al)1(e)-278(J)1(agna)-277(n)1(ie)]TJ -27.879 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(a,)-333(w)28(ola\\252a)-333(p)-28(ozos)-1(ta\\242.)]TJ 27.879 -13.55 Td[(Nikt)1(o)-405(j)1(e)-1(j)-403(o)-405(An)29(tku)-404(n)1(ie)-405(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-404(ale)-404(dom)28(y\\261)-1(l)1(i\\252a)-404(s)-1(i\\246)-404(\\252ac)-1(n)1(o)-405(wsz)-1(ystki)1(e)-1(go)-404(z)]TJ -27.879 -13.549 Td[(p)-27(\\363\\252s)-1(\\252\\363)28(w)27(ek)-311(i)-310(z)-311(tego,)-311(co)-311(Han)1(k)55(a)-310(wypr)1(a)27(wia\\252a.)-310(P)28(oni)1(e)-1(s\\252a)-311(i)-310(j\\241)-310(ta)-311(wiadomo\\261\\242)-311(i)-311(r)1(oz)-1(k)28(o\\252y-)]TJ 0 -13.549 Td[(sa\\252)-1(a)-333(j)1(ak)55(\\241\\261)-334(r)1(adosn\\241,)-333(cic)27(h)1(\\241)-334(n)1(adziej\\241,)-333(\\273)-1(e)-333(nie)-334(b)1(ac)-1(z\\241c)-334(n)1(a)-334(n)1(ic)-334(p)-27(olec)-1(ia\\252a)-333(do)-333(matki.)]TJ 27.879 -13.549 Td[(Nie)-334(w)-333(p)-27(or\\246)-334(p)1(rz)-1(y)1(s)-1(z\\252a,)-334(t)1(ra\\014a)-55(j\\241c)-334(ak)1(urat)1(nie)-334(n)1(a)-333(s)-1(rog\\241)-333(k\\252\\363tn)1(i\\246)-1(.)]TJ 0 -13.549 Td[(Szyme)-1(k)-397(b)-28(o)28(wiem)-399(zaraz)-398(p)-28(o)-397(\\261)-1(n)1(iadan)1(iu)-398(zas)-1(i)1(ad\\252)-398(p)-27(o)-28(d)-398(ok)1(nem)-399(z)-398(pap)1(ieros)-1(em)-398(w)]TJ -27.879 -13.549 Td[(z\\246)-1(b)1(ac)27(h,)-393(s)-1(tr)1(z)-1(yk)56(a\\252)-394(\\261lin)1(\\241)-394(na)-393(iz)-1(b)-27(\\246,)-394(d\\252u)1(go)-394(me)-1(d)1(yto)28(w)27(a\\252,)-393(d\\252ugo)-393(s)-1(i\\246)-394(w)28(a\\273)-1(y\\252)-393(s)-1(p)-27(ogl\\241da)-55(j\\241c)]TJ 0 -13.55 Td[(na)-333(b)1(rata,)-333(a\\273)-334(w)-334(k)28(o\\253)1(c)-1(u)-332(rz)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-504(A)-505(to,)-504(matk)28(o,)-504(da)-56(j)1(c)-1(i)1(e)-505(m)-1(i)-504(p)1(ie)-1(n)1(i\\246dzy)83(,)-504(b)-27(o)-505(na)-504(zap)-28(o)28(wiedzi)-505(m)28(usz)-1(\\246)-505(zani)1(e)-1(\\261\\242)-1(.)]TJ -27.879 -13.549 Td[(Ksi\\241dz)-333(p)-28(edzia\\252,)-333(b)28(yc)28(h)-333(przed)-333(nies)-1(zp)-27(orami)-334(p)1(rzyj\\261\\242)-334(n)1(a)-334(p)1(ac)-1(i)1(e)-1(rze.)]TJ 27.879 -13.549 Td[({)-333(Z)-334(ki)1(m)-1(\\273e)-334(si\\246)-334(to)-333(\\273)-1(eni)1(s)-1(z?)-334({)-333(s)-1(p)29(yta\\252a)-334(z)-333(ur\\241)-27(gliwym)-334(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)28(hem)-1(.)]TJ 0 -13.549 Td[({)-333(Z)-334(Nastusi\\241)-333(Go\\252\\246)-1(b)1(ian)1(k)55(\\241.)]TJ 0 -13.55 Td[(Nie)-308(o)-28(d)1(e)-1(zw)27(a\\252a)-308(si\\246,)-308(k)1(rz)-1(\\241ta)-55(j\\241c)-308(si\\246)-308(pil)1(nie)-308(k)28(ole)-308(garn)1(k)28(\\363)28(w)-308(i)-308(k)28(omin)1(a.)-308(J\\246drek)-308(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(k\\252ad)1(a\\252)-257(d)1(re)-1(w)28(e)-1(k)-256(i)-256(c)28(ho)-28(\\242)-257(si\\246)-257(ogi)1(e)-1(\\253)-256(b)1(uzo)28(w)27(a\\252;)-256(dm)28(uc)28(ha\\252)-257(w)-256(ni)1(e)-1(go)-256(z)-1(e)-256(s)-1(tr)1(ac)27(h)28(u)1(,)-257(za\\261)-257(S)1(z)-1(ymek)]TJ\nET\nendstream\nendobj\n1756 0 obj <<\n/Type /Page\n/Contents 1757 0 R\n/Resources 1755 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1755 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1760 0 obj <<\n/Length 8521      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(550)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pr)1(z)-1(ec)-1(zek)55(a)28(ws)-1(zy)-333(z)-334(p)1(ac)-1(ierz)-334(ozw)27(a\\252)-333(si\\246)-334(zno)28(wu,)-333(jeno)-333(jak)28(o\\261)-333(p)-28(ewniej:)]TJ 27.879 -13.549 Td[({)-333(C)-1(a\\252e)-333(pi\\246\\242)-334(ru)1(bli)-333(mi)-333(dacie,)-334(b)-27(o)-333(i)-333(z)-1(m\\363)28(w)-1(i)1(n)28(y)-333(trza)-334(wyp)1(ra)28(wi\\242)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(y)1(\\252a\\252)-1(e\\261)-334(to)-333(ju)1(\\273)-334(z)-334(w)28(\\363)-28(d)1(k)55(\\241,)-333(co?)-334({)-333(p)28(yta\\252a)-333(tak)-333(s)-1(amo.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(z)-1(i\\252)-333(K\\252\\241b)-333(z)-334(P)1(\\252os)-1(zk)55(\\241.)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(rzyj\\246\\252a)-334(ci\\246,)-333(c)-1(o?)-333({)-334(a\\273)-334(si\\246)-334(j)1(e)-1(j)-333(b)1(ro)-28(d)1(a)-333(trz\\246)-1(s\\252a)-334(ze)-334(\\261m)-1(iec)27(h)29(u.)]TJ 0 -13.55 Td[({)-333(Jak\\273e)-1(!.)1(..)-333(przyj)1(\\246)-1(\\252a,)-333(ju)1(\\261)-1(ci.)]TJ 0 -13.549 Td[({)-333(T)83(ra\\014)1(\\252)-1(o)-333(si\\246)-334(\\261le)-1(p)-27(ej)-333(kur)1(z)-1(e)-334(ziar)1(no:)-333(jes)-1(zcz)-1(e)-334(b)29(y)-334(n)1(ie,)-333(tak)55(a)-333(wyw\\252ok)55(a!)]TJ 0 -13.549 Td[(Szyme)-1(k)-333(si\\246)-334(zmars)-1(zcz)-1(y\\252,)-333(ale)-334(cze)-1(k)56(a\\252,)-333(c)-1(o)-333(p)-27(o)27(wie)-333(w)-1(i)1(\\246)-1(ce)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Przyn)1(ie)-1(\\261)-333(w)27(o)-28(d)1(y)-333(z)-1(e)-333(s)-1(ta)28(wu,)-333(a)-333(t)28(y)83(,)-333(J\\246drek,)-333(wieprzk)56(a)-334(wyp)1(u\\261\\242)-1(,)-333(b)-27(o)-333(kwic)-1(zy)83(.)1(..)]TJ 0 -13.549 Td[(Zrob)1(ili)-378(to)-378(p)1(ra)28(w)-1(i)1(e)-379(b)-27(e)-1(zw)27(ol)1(nie,)-378(a)-378(kiej)-378(zno)28(wu)-378(Szyme)-1(k)-378(r)1(oz)-1(p)1(ar\\252)-378(s)-1(i\\246)-378(na)-378(\\252a)28(w)27(ce)-379(i)]TJ -27.879 -13.549 Td[(m\\252o)-28(dsz)-1(y)-333(j)1(\\241\\252)-334(ma)-56(j)1(dro)28(w)28(a\\242)-334(cos)-1(ik)-333(p)-27(o)-28(d)-333(b)1(lac)27(h)1(\\241,)-333(s)-1(tar)1(a)-334(rozk)56(az)-1(a\\252a)-333(t)28(w)27(ar)1(dym)-333(g\\252os)-1(em)-1(:)]TJ 27.879 -13.55 Td[({)-333(Szyme)-1(k,)-333(p)1(ic)-1(i)1(e)-334(z)-1(an)1(ie\\261)-334(ja\\252\\363)28(w)27(ce!)]TJ 0 -13.549 Td[({)-335(Wyn)1(ie)-1(\\261c)-1(i)1(e)-336(s)-1(e)-335(s)-1(ami,)-335(za)-336(d)1(z)-1(iewk)28(\\246)-336(s)-1(\\252u)1(\\273)-1(y)1(\\252)-336(w)28(am)-1(a)-335(ni)1(e)-336(b)-27(\\246)-1(d)1(\\246)-1(!)-335({)-335(bu)1(rkn\\241\\252)-335(har)1(do,)]TJ -27.879 -13.549 Td[(rozpi)1(e)-1(ra)-55(j\\241c)-333(s)-1(i\\246)-333(na)-333(\\252)-1(a)28(wie)-334(j)1(e)-1(szc)-1(ze)-334(s)-1(zerz)-1(ej.)]TJ 27.879 -13.549 Td[({)-333(S\\252ysz)-1(a\\252e\\261)-1(?!)-333(Nie)-334(d)1(opr)1(o)27(w)28(adza)-56(j)-333(me)-334(d)1(o)-334(z\\252o\\261)-1(ci)-333(pr)1(z)-1(y)-333(\\261w)-1(i)1(\\246)-1(tej)-333(ni)1(e)-1(d)1(z)-1(ieli.)1(..)]TJ 0 -13.549 Td[({)-333(Wy\\261c)-1(ie)-333(te)-1(\\273)-333(s)-1(\\252ysz)-1(eli,)-333(com)-334(rze)-1(k)1(\\252:)-334(d)1(a)-56(j)1(c)-1(i)1(e)-334(pieni)1(\\246)-1(d)1(z)-1(y)84(,)-333(a)-334(\\273yw)28(o!...)]TJ 0 -13.55 Td[({)-333(Nie)-334(d)1(am)-334(i)-333(\\273)-1(eni)1(\\242)-334(c)-1(i)-333(si\\246)-334(n)1(ie)-334(pr)1(z)-1(y)1(z)-1(w)28(ol\\246)-1(!)-333({)-333(bu)1(c)27(h)1(n\\246\\252a.)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(rze)-1(z)-334(w)28(as)-1(zego)-334(p)1(rzyz)-1(w)28(ole\\253st)27(w)28(a)-333(s)-1(i\\246)-333(ob)-28(\\246d\\246!)]TJ 0 -13.549 Td[({)-333(Szyme)-1(k,)-333(p)-27(omiarku)1(j)-333(s)-1(i)1(\\246)-334(i)-333(z)-1(e)-334(mn)1(\\241)-334(n)1(ie)-334(zadzie)-1(r)1(a)-56(j)1(!)]TJ 0 -13.549 Td[(P)28(o)-28(c)28(h)28(yli)1(\\252)-334(si\\246)-334(n)1(araz)-334(p)1(rze)-1(d)-333(n)1(i\\241)-334(i)-333(p)-27(ok)28(orn)1(ie)-334(p)-27(o)-28(d)1(j\\241\\252)-333(z)-1(a)-333(nogi.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(w)28(as)-334(pr)1(os)-1(z\\246)-1(;)-333(matk)28(o,)-333(dy)1(\\242)-334(s)-1(k)56(aml\\246)-334(j)1(ak)-333(te)-1(n)-333(p)1(ies)-1(!.)1(..)]TJ 0 -13.55 Td[(\\212zy)-334(m)28(u)-333(zala\\252y)-333(gard\\252o.)]TJ 0 -13.549 Td[(J\\246drek)-437(te)-1(\\273)-438(ry)1(kn\\241\\252)-437(i)-438(d)1(ale)-1(j)1(\\273)-1(e)-438(matk)28(\\246)-438(c)-1(a\\252o)28(w)28(a\\242)-438(p)-28(o)-437(r\\246)-1(k)1(u;)-437(ob\\252api)1(a\\242)-438(z)-1(a)-438(n)1(ogi)-438(a)]TJ -27.879 -13.549 Td[(mole)-1(sto)28(w)27(a\\242)-333(w)-1(r)1(az)-334(z)-334(b)1(ratem)-1(.)]TJ 27.879 -13.549 Td[(Od)1(garn\\246\\252a)-333(ic)27(h)-333(o)-28(d)-332(s)-1(iebie)-333(z)-1(e)-334(z\\252o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-262(An)1(i)-262(mi)-261(s)-1(i\\246)-262(w)28(a\\273)-262(prze)-1(ciwi\\242,)-262(b)-27(o)-262(ci\\246)-262(wygoni)1(\\246)-263(n)1(a)-262(cz)-1(tery)-261(wiatry)1(!...)-261({)-262(kr)1(z)-1(yk)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(wytrz\\241c)27(h)1(a)-56(j)1(\\241c)-334(pi)1(\\246)-1(\\261c)-1(iami.)]TJ 27.879 -13.549 Td[(Ale)-276(Szyme)-1(k)-275(ju\\273)-276(si\\246)-276(nie)-276(ukl)1(\\246)-1(kn)1(\\241\\252,)-276(matc)-1(zyn)1(e)-277(s\\252o)27(w)28(a)-276(\\261m)-1(i)1(g)-1(n)1(\\246)-1(\\252y)-275(go)-276(kiej)-276(b)1(ic)-1(zem)-1(;)]TJ -27.879 -13.549 Td[(\\273e)-307(z)-1(ak)1(ipia\\252,)-306(wyp)1(rosto)27(w)28(a\\252)-306(s)-1(i\\246)-306(hard)1(o)-306(i)-307(r)1(o)-28(do)28(w)28(a)-306(P)28(ac)-1(ze)-1(si\\363)28(w)-307(za)28(wz)-1(i\\246to\\261)-1(\\242)-306(bu)1(c)27(hn)1(\\246)-1(\\252a)-306(m)27(u)]TJ 0 -13.549 Td[(do)-400(g\\252o)28(w)-1(y)1(;)-401(p)-27(ost\\241)-28(pi)1(\\252)-401(n)1(a)-401(izb)-27(\\246)-401(i)-400(rz)-1(ek\\252)-400(s)-1(tr)1(as)-1(znie)-400(s)-1(p)-27(ok)28(o)-56(j)1(nie,)-400(b)-28(o)-27(d\\241c)-401(j)1(\\241)-401(rozgorza\\252ymi)]TJ 0 -13.549 Td[(\\261le)-1(p)1(iami:)]TJ 27.879 -13.55 Td[({)-333(Da)28(w)27(a)-55(jcie)-334(pi)1(e)-1(n)1(i\\241dze)-334(a)-333(pr\\246dk)28(o!)1(...)-333(cz)-1(ek)55(a\\252)-333(ju)1(\\273)-334(n)1(i)-334(p)1(rosi\\252)-334(n)1(ie)-334(b)-27(\\246d\\246!)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(am)-1(!)-333({)-333(wrz)-1(asn\\246\\252a)-334(r)1(oz)-1(j)1(usz)-1(on)1(a)-334(ogl)1(\\241da)-55(j\\241c)-334(si\\246)-334(za)-334(cz)-1(y)1(m)-334(do)-333(r\\246ki.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(sam)-334(se)-334(j)1(e)-334(z)-1(n)1(a)-56(j)1(d\\246!)]TJ 0 -13.549 Td[(Sk)28(o)-27(c)-1(zy\\252)-300(d)1(o)-300(skrzynk)1(i)-300(ki)1(e)-1(j)-299(ry)1(\\261)-1(,)-299(jedn)28(y)1(m)-300(s)-1(zarpn)1(i\\246c)-1(iem)-300(o)-28(d)1(e)-1(r)1(w)27(a\\252)-300(wiek)28(o)-300(i)-299(z)-1(acz\\241\\252)]TJ -27.879 -13.549 Td[(z)-333(niej)-332(w)-1(y)1(w)27(ala\\242)-333(n)1(a)-333(p)-28(o)-27(d\\252og\\246)-333(oblecz)-1(enia.)-332(Rz)-1(u)1(c)-1(i\\252a)-333(si\\246)-333(z)-333(wrz)-1(askiem)-333(do)-333(ob)1(ron)28(y)84(,)-333(p)1(r\\363-)]TJ 0 -13.549 Td[(b)-27(o)27(w)28(a\\252a)-285(go)-285(t)27(y)1(lk)28(o)-285(z)-1(r)1(az)-1(u)-285(o)-27(dci\\241)-28(gn\\241\\242,)-285(ale)-285(\\273)-1(e)-285(ani)-285(na)-285(kr)1(ok)-285(nie)-285(ust\\246)-1(p)-27(o)28(w)27(a\\252,)-285(w)28(cz)-1(epi\\252a)-285(m)27(u)]TJ 0 -13.55 Td[(r\\246k)28(\\246)-325(w)-326(k)1(ud\\252y)84(,)-325(a)-325(d)1(rug\\241)-325(zacz)-1(\\246\\252a)-325(bi\\242)-325(p)-27(o)-325(t)28(w)27(arzy)-325(i)-324(g\\252)-1(o)28(wie,)-325(k)28(opa\\242)-325(w)-325(z)-1(a)-55(jd)1(y)-325(i)-325(k)1(rz)-1(y)1(c)-1(ze)-1(\\242)]TJ 0 -13.549 Td[(wnieb)-27(og\\252os)-1(y)84(.)-249(Ogani)1(a\\252)-250(si\\246)-249(jes)-1(zc)-1(ze)-250(k)1(ie)-1(j)-248(o)-28(d)-249(m)28(uc)28(h)28(y)-249(up)1(rzykrzonej,)-248(nie)-249(pr)1(z)-1(es)-1(ta)-55(j\\241c)-249(s)-1(zu-)]TJ 0 -13.549 Td[(k)56(a\\242)-313(p)1(ieni\\246dzy)83(,)-312(j)1(a\\273)-1(e)-312(dosta)28(ws)-1(zy)-312(gdzies)-1(ik)-311(w)-313(s\\252abizn\\246,)-312(otr)1(z)-1(\\241c)27(h)1(n\\241\\252)-312(si\\246)-312(z)-313(tak)56(\\241)-312(z)-1(\\252o\\261c)-1(i)1(\\241,)]TJ 0 -13.549 Td[(\\273e)-386(pad)1(\\252)-1(a)-385(na)-385(izb)-28(\\246)-385(jak)-385(d\\252uga,)-385(ale)-385(w)-386(ten)-385(m)-1(ig)-385(si\\246)-386(z)-1(erw)28(a\\252a)-386(i)-385(c)27(h)29(yc)-1(i)1(w)-1(sz)-1(y)-385(p)-27(ogrze)-1(b)1(ac)-1(z)]TJ 0 -13.549 Td[(ru)1(n\\246\\252a)-285(zno)28(wu)-284(n)1(a)-285(n)1(iego.)-285(Ni)1(e)-285(c)27(h)1(c)-1(i)1(a\\252)-285(tej)-284(bi)1(tki)-284(z)-285(matk)56(\\241,)-284(to)-284(s)-1(i\\246)-284(jeno)-284(obr)1(ania\\252)-284(jes)-1(zcz)-1(e,)]TJ 0 -13.55 Td[(jak)-406(m\\363g\\252,)-407(u)1(s)-1(i\\252u)1(j\\241c)-407(j)1(e)-1(j)-406(o)-28(d)1(e)-1(b)1(ra\\242)-407(\\273e)-1(lazo.)-406(W)83(rzask)-407(n)1(ap)-28(e\\252ni\\252)-406(iz)-1(b)-27(\\246.)-407(J\\246dr)1(e)-1(k)1(,)-407(zanosz)-1(\\241c)]TJ 0 -13.549 Td[(si\\246)-334(o)-28(d)-333(p)1(\\252ac)-1(zu,)-333(b)1(ie)-1(ga\\252)-333(do)-28(ok)28(o\\252a)-333(ni)1(c)27(h)-333(i)-333(sk)55(amla\\252)-333(\\273)-1(a\\252o\\261liwie:)]TJ\nET\nendstream\nendobj\n1759 0 obj <<\n/Type /Page\n/Contents 1760 0 R\n/Resources 1758 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1758 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1763 0 obj <<\n/Length 9175      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(551)]TJ -330.353 -35.866 Td[({)-333(Matu)1(lu,)-333(lab)-27(oga!..)1(.)-334(M)1(atul)1(u!..)1(.)]TJ 0 -13.549 Td[(Jagn)1(a,)-382(ws)-1(ze)-1(d)1(\\252s)-1(zy)-382(w\\252a\\261nie)-382(na)-381(to,)-382(r)1(z)-1(u)1(c)-1(i\\252a)-381(s)-1(i\\246)-382(ic)28(h)-382(r)1(oz)-1(b)1(ra)-55(ja\\242,)-382(ale)-382(n)1(a)-382(dar)1(m)-1(o,)]TJ -27.879 -13.549 Td[(b)-27(o)-486(c)-1(o)-486(S)1(z)-1(ymek)-486(s)-1(i\\246)-486(uc)28(h)28(yli)1(\\252)-486(i)-486(w)-487(b)-27(ok)-486(u)1(s)-1(k)28(o)-28(czy\\252,)-486(matk)55(a)-486(d)1(opad)1(a\\252a)-486(go)-487(zno)28(wu)-486(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ta)-382(suk)56(a)-382(rozjuszona)-382(i)-382(pr)1(a\\252a,)-382(k)56(a)-56(j)-382(p)-27(opad)1(\\252o,)-382(\\273)-1(e)-382(ju)1(\\273)-383(r)1(oz)-1(w\\261)-1(ciec)-1(zon)28(y)-382(z)-382(b)-28(\\363l)1(u)-382(o)-28(d)1(da)28(w)27(a\\242)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252.)-372(S)1(c)-1(ze)-1(p)1(ili)-371(s)-1(i\\246)-372(k)1(ie)-1(j)-371(p)1(s)-1(y)-371(i)-372(t)1(ac)-1(za)-56(j)1(\\241c)-372(s)-1(i\\246)-372(p)-27(o)-372(i)1(z)-1(b)1(ie)-1(,)-371(t\\252uk)1(li)-372(si\\246)-372(o)-371(\\261)-1(cian)28(y)-371(i)-372(spr)1(z)-1(\\246t)28(y)]TJ 0 -13.55 Td[(ze)-334(s)-1(tr)1(as)-1(zn)28(ym)-333(w)-1(r)1(z)-1(askiem)-1(.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-445(j)1(u\\273)-444(zac)-1(z\\246)-1(l)1(i)-444(n)1(adbi)1(e)-1(ga\\242)-444(ze)-445(wsz)-1(y)1(s)-1(tki)1(c)27(h)-443(s)-1(tr)1(on,)-443(pr\\363b)1(uj)1(\\241c)-444(roz)-1(d)1(z)-1(i)1(e)-1(li)1(\\242)-445({)]TJ -27.879 -13.549 Td[(c\\363\\273)-1(,)-333(kiej)-333(pr)1(z)-1(y)1(pi\\246\\252a)-334(si\\246)-334(d)1(o)-334(n)1(iego)-334(n)1(ib)28(y)-333(p)1(ija)28(wk)55(a)-333(i)-333(bi)1(\\252a)-334(z)-334(oszala\\252\\241)-334(zapami\\246ta\\252o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[(A\\273)-478(tr)1(z)-1(asn\\241\\252)-478(j)1(\\241)-478(p)1(i\\246\\261)-1(ci\\241)-477(m)-1(i\\246dzy)-477(o)-28(c)-1(zy)84(,)-478(c)28(h)28(yci\\252)-478(za)-478(b)-27(oki)-477(i)-477(rzuci\\252)-478(ki)1(e)-1(j)-477(o)-28(cip)1(k)55(\\241)]TJ -27.879 -13.549 Td[(na)-396(iz)-1(b)-27(\\246)-1(;)-396(p)-28(ot)1(o)-28(c)-1(zy\\252a)-397(si\\246)-397(i)-397(nib)29(y)-397(klo)-27(c)-398(ca\\252ym)-397(c)-1(i\\246\\273are)-1(m)-397(p)1(ad\\252a)-397(na)-396(roz)-1(p)1(alon)1(\\241)-397(blac)28(h\\246,)]TJ 0 -13.549 Td[(p)-27(om)-1(i)1(\\246)-1(d)1(z)-1(y)-333(gary)-333(p)-27(e)-1(\\252n)1(e)-334(wrz\\241tku,)-333(k)28(omin)-333(si\\246)-334(rozw)28(ali\\252)-333(i)-334(wsz)-1(y)1(s)-1(tk)28(o)-333(s)-1(i)1(\\246)-334(z)-1(ap)1(ad\\252o..)1(.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-329(c)-1(o)-329(z)-1(ar)1(az)-330(j\\241)-329(w)-1(y)1(w)-1(l)1(e)-1(kl)1(i)-330(z)-329(rumo)28(w)-1(i)1(s)-1(k)56(a,)-329(ale)-330(c)27(h)1(o)-28(cia\\273)-330(b)28(y\\252a)-329(s)-1(tr)1(as)-1(zni)1(e)-330(p)-28(op)1(a-)]TJ -27.879 -13.549 Td[(rzona,)-333(n)1(ie)-334(bacz\\241c)-334(na)-333(b)-27(\\363l)-334(n)1(i)-333(na)-333(tl\\241ce)-334(si\\246)-334(kiec)27(ki)1(,)-333(p)-28(or)1(yw)27(a\\252a)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e)-334(n)1(a)-334(n)1(iego.)]TJ 27.879 -13.549 Td[({)-275(W)1(yno\\261)-275(mi)-275(si\\246,)-275(wyr)1(o)-28(dk)1(u)-275(p)1(rze)-1(kl)1(\\246)-1(t)28(y!)1(...)-274(Wyno\\261)-275(si\\246!...)-274({)-275(r)1(yc)-1(za\\252a)-275(n)1(ie)-1(p)1(rzytom-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Mu)1(s)-1(i)1(e)-1(li)-248(p)1(rz)-1(ez)-249(mo)-28(c)-249(gasi\\242)-249(ogie\\253)-248(na)-248(ni)1(e)-1(j)-248(i)-248(pr)1(z)-1(y)1(trzym)27(yw)28(a\\242,)-249(b)29(yc)27(h)-248(c)28(ho)-28(cia\\273)-249(t)28(w)28(arz)]TJ -27.879 -13.55 Td[(spalon)1(\\241)-334(ob)29(w)27(ali\\242)-333(z)-1(mo)-28(cz)-1(on)28(y)1(m)-1(i)-333(sz)-1(matami,)-333(ali\\242)-334(i)-333(tak)-333(si\\246)-334(wyd)1(z)-1(i)1(e)-1(ra\\252a.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)1(c)27(h)-333(ci\\246)-334(mo)-56(j)1(e)-334(o)-28(c)-1(zy)-333(wi\\246)-1(cej)-333(nie)-333(w)-1(i)1(dzia\\252y)83(..)1(.)-333(\\273)-1(eb)28(yc)27(h)-333(ci\\246...)]TJ 0 -13.549 Td[(Szyme)-1(k)-446(za\\261)-1(,)-446(l)1(e)-1(d)1(w)-1(i)1(e)-447(ju)1(\\273)-447(dy)1(c)27(ha)-55(j\\241cy)83(,)-446(zbi)1(t)27(y)-446(i)-446(okr)1(w)27(a)28(wion)28(y)84(,)-446(jeno)-446(pat)1(rz)-1(a\\252)-446(na)]TJ -27.879 -13.549 Td[(matk)28(\\246)-413(wytr)1(z)-1(es)-1(zc)-1(zon)28(ymi)-412(\\261le)-1(p)1(iami,)-412(strac)27(h)-411(go)-412(u\\252api)1(\\252)-413(za)-412(gardziel,)-412(tr)1(z)-1(\\241s\\252)-413(si\\246)-412(c)-1(a\\252y)84(,)]TJ 0 -13.549 Td[(s\\252)-1(o)28(w)28(a)-334(n)1(ie)-334(mog\\241c)-334(wykr)1(z)-1(tu)1(s)-1(i)1(\\242)-334(ni)-333(wiedz\\241c)-1(,)-333(co)-334(si\\246)-334(d)1(z)-1(ieje.)]TJ 27.879 -13.55 Td[(A)-433(le)-1(d)1(wie)-434(s)-1(i)1(\\246)-434(niec)-1(o\\261)-434(u)1(s)-1(p)-27(ok)28(oi\\252o,)-433(gdy)-433(n)1(a)-1(r)1(az)-434(s)-1(t)1(ara)-434(wyr)1(w)27(a\\252a)-433(s)-1(i\\246)-434(k)28(ob)1(ietom)-434(z)]TJ -27.879 -13.549 Td[(r\\241k)1(,)-360(s)-1(k)28(o)-28(czy\\252a)-360(z)-1(a)-360(k)28(omin)-360(d)1(o)-361(d)1(r\\241)-28(ga)-360(z)-360(oblecz)-1(eniem)-361(i)-359(z)-1(d)1(z)-1(iera)-55(j\\241c)-360(z)-361(ni)1(e)-1(go)-360(S)1(z)-1(ymk)28(o)28(w)27(e)]TJ 0 -13.549 Td[(rze)-1(czy)83(,)-333(j\\246\\252a)-334(j)1(e)-334(wyrzuca\\242)-334(p)1(rze)-1(z)-334(ok)1(no)-333(do)-333(s)-1(ad)1(u..)1(.)]TJ 27.879 -13.549 Td[({)-327(Pr)1(e)-1(cz)-328(z)-328(moic)27(h)-326(o)-28(c)-1(zu!)-327(Ni)1(c)-328(tu)-327(t)28(w)28(o)-56(j)1(e)-1(go,)-327(mo)-56(j)1(e)-328(ws)-1(zy\\242k)28(o,)-327(ani)-327(jedn)1(e)-1(go)-327(zagon)28(u)]TJ -27.879 -13.549 Td[(ci)-324(n)1(ie)-324(dam,)-323(ani)-323(\\252y\\273)-1(k)1(i)-324(stra)28(wy)83(,)-323(c)28(ho)-28(\\242b)28(y\\261)-324(zdyc)28(ha\\252)-323(z)-324(g\\252)-1(o)-27(du)1(!)-324({)-323(w)-1(r)1(z)-1(es)-1(zcz)-1(a\\252a)-324(ostatk)56(ami)]TJ 0 -13.55 Td[(si\\252)-334(i)-333(zm)-1(o\\273ona)-333(wres)-1(zc)-1(i)1(e)-334(pr)1(z)-1(ez)-334(s)-1(r)1(ogie)-334(b)-27(ole\\261)-1(cie)-334(p)1(ad\\252a)-333(z)-334(rozdzie)-1(r)1(a)-56(j)1(\\241c)-1(ymi)-333(j\\246k)56(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(P)28(on)1(ie)-1(\\261li)-333(j)1(\\241)-334(n)1(a)-334(\\252\\363\\273k)28(o.)]TJ 0 -13.549 Td[(Lud)1(z)-1(i)-286(s)-1(i\\246)-287(nasz)-1(\\252o,)-286(\\273)-1(e)-287(z)-1(ap)-27(c)27(h)1(ali)-287(izb)-28(\\246,)-287(w)-287(s)-1(i)1(e)-1(n)1(iac)27(h)-286(s)-1(i\\246)-287(ju)1(\\273)-288(gn)1(ie)-1(t)1(li,)-287(a)-287(i)-287(p)1(rze)-1(z)-287(okno)]TJ -27.879 -13.549 Td[(wt)28(yk)56(ali)-333(g\\252o)27(wy)84(.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-368(ju)1(\\273)-368(g\\252o)28(w)27(\\246)-368(tr)1(ac)-1(i\\252a,)-367(c)-368(ni)1(e)-368(wie)-1(d)1(z)-1(\\241c,)-367(c)-1(o)-367(p)-28(o)-28(czyna\\242,)-368(b)-27(o)-367(s)-1(tar)1(a)-368(j)1(u\\273)-368(pr)1(os)-1(to)]TJ -27.879 -13.55 Td[(ry)1(c)-1(za\\252a)-463(z)-463(b)-27(\\363lu)1(...)-462(Jak\\273e)-1(,)-462(to)-28(\\242)-463(ca\\252\\241)-463(t)28(w)28(arz)-463(i)-462(sz)-1(yj)1(\\246)-463(mia\\252a)-463(wr)1(z)-1(\\241tki)1(e)-1(m)-463(ob)1(lane,)-462(r\\246c)-1(e)]TJ 0 -13.549 Td[(p)-27(opiec)-1(zone,)-333(w\\252)-1(osy)-333(s)-1(p)1(alon)1(e)-334(i)-333(o)-28(c)-1(zy)84(,)-334(\\273e)-334(ledwie)-333(w)-1(i)1(dzia\\252a.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-418(siad\\252)-418(w)-419(sadk)1(u)-418(p)-28(o)-27(d)-418(\\261)-1(cian)1(\\241)-419(c)27(h)1(a\\252up)28(y)84(,)-418(br)1(o)-28(d\\246)-418(w)-1(spar)1(\\252)-419(n)1(a)-419(p)1(i\\246)-1(\\261ciac)27(h)-418(i)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-369(zas)-1(t)28(yg\\252,)-369(okr)1(w)27(a)28(wion)28(y)84(,)-369(w)-369(s)-1(in)1(iak)56(ac)27(h)-369(ca\\252y)-369(i)-369(w)-369(t)28(yc)27(h)-368(krze)-1(p)1(n\\241cyc)27(h)-368(ju\\273)-369(s)-1(op)1(lac)27(h)]TJ 0 -13.549 Td[(kr)1(w)-1(i)1(e)-334(na)-333(t)28(w)27(ar)1(z)-1(y)84(,)-333(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252)-333(jeno)-333(matc)-1(zyn)28(y)1(c)27(h)-333(j\\246k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(Mateusz)-334(pr)1(z)-1(yl)1(e)-1(cia\\252)-334(wkr)1(\\363tc)-1(e)-333(i)-333(c)-1(i\\241)-27(gn\\241c)-334(go)-333(z)-1(a)-333(r\\246k)28(\\246)-334(rzek\\252:)]TJ 0 -13.55 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-334(do)-333(mnie.)-333(Nic)-334(tu)-333(teraz)-334(p)-27(o)-333(tobi)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-264(Nie)-264(p)-28(\\363)-28(d)1(\\246)-1(!)-263(Gron)28(t)-264(m\\363)-56(j)-263(p)-28(o)-264(o)-55(jcac)27(h,)-263(to)-264(na)-264(s)-1(w)28(oim)-264(os)-1(tan)1(\\246)-1(,)-264(n)1(ie)-264(ust\\241)-28(pi)1(\\246)-1(!)-264({)-264(gad)1(a\\252)]TJ -27.879 -13.549 Td[(z)-334(p)-27(on)28(u)1(r\\241)-333(z)-1(aci\\246)-1(to\\261ci\\241,)-333(b)-28(ez)-1(w)28(oln)1(ie)-334(c)27(h)29(yta)-56(j)1(\\241c)-334(si\\246)-334(pazur)1(am)-1(i)-333(za)-333(w)27(\\246gie)-1(\\252.)]TJ 27.879 -13.549 Td[(Nie)-302(p)-27(omog\\252y)-302(p)1(ro\\261b)28(y)-301(ni)-301(mole)-1(sto)28(w)27(an)1(ia,)-301(z)-302(mie)-1(j)1(s)-1(ca)-302(si\\246)-302(n)1(ie)-302(ru)1(s)-1(zy\\252)-301(i)-302(zapr)1(z)-1(es)-1(t)1(a\\252)]TJ -27.879 -13.549 Td[(o)-28(d)1(p)-28(o)28(wiad)1(a)-1(\\242.)]TJ 27.879 -13.55 Td[(Mateusz)-386(pr)1(z)-1(ysiad)1(\\252)-386(p)-28(ob)-27(ok,)-385(nie)-386(wiedz\\241c)-1(,)-385(c)-1(o)-386(z)-386(n)1(im)-386(p)-28(o)-27(c)-1(z\\241\\242)-1(,)-385(z)-1(a\\261)-386(J\\246drek,)-385(z)-1(e-)]TJ -27.879 -13.549 Td[(br)1(a)28(w)-1(sz)-1(y)-393(w\\252)-1(a\\261ni)1(e)-395(p)-27(o)28(wyrzucane)-394(k)56(ap)-28(ot)28(y)84(,)-394(p)-27(ortki)-393(i)-394(k)28(osz)-1(u)1(le)-1(,)-393(z)-1(wi\\241za\\252)-394(je)-394(w)-394(p\\252ac)28(h)28(t\\246)-394(i)]TJ\nET\nendstream\nendobj\n1762 0 obj <<\n/Type /Page\n/Contents 1763 0 R\n/Resources 1761 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1761 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1766 0 obj <<\n/Length 9097      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(552)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(p)-27(o\\252o\\273)-1(y\\252)-333(pr)1(z)-1(ed)-333(br)1(ate)-1(m)-333(nie\\261)-1(mia\\252o.)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-28(d)1(\\246)-334(z)-334(tob)1(\\241,)-334(S)1(z)-1(y)1(m)-1(ek,)-333(w)27(e)-333(\\261)-1(wiat,)-333(p)-27(\\363)-28(d)1(\\246)-1(!)-333({)-333(s)-1(k)56(amla\\252)-334(r)1(z)-1(ewliwie)-334(p)-27(op\\252aku)1(j\\241c.)]TJ 0 -13.549 Td[({)-263(Psiac)27(h)1(m)-1(a\\242!..)1(.)-264(p)-27(edzia\\252e)-1(m,)-263(nie)-263(rusz\\246)-264(s)-1(i)1(\\246)-264(s)-1(t\\241d)1(,)-263(to)-264(si\\246)-264(n)1(ie)-264(r)1(usz)-1(\\246!...)-263({)-263(wrzas)-1(n)1(\\241\\252)]TJ -27.879 -13.549 Td[(t\\252uk)56(\\241c)-334(p)1(i\\246\\261)-1(ciami)-333(w)27(e)-334(\\261c)-1(i)1(an\\246,)-334(j)1(a\\273)-1(e)-333(J\\246)-1(d)1(rzyc)27(h)-333(p)1(rzykucn\\241\\252)-333(ze)-334(s)-1(tr)1(ac)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[(Zmilkli)1(,)-347(g)-1(d)1(y\\273)-348(n)1(o)28(w)27(e)-348(strasz)-1(n)1(e)-348(j\\246ki)-347(rozleg\\252y)-348(si\\246)-348(w)-347(iz)-1(b)1(ie:)-347(to)-348(Jam)28(br)1(o\\273)-348(opatr)1(y-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-405(c)27(hor)1(\\241,)-405(ob)1(\\252o\\273)-1(y\\252)-404(p)-28(op)1(arz)-1(on)1(e)-405(m)-1(i)1(e)-1(j)1(s)-1(ca)-405(m\\252o)-28(dym,)-404(nies)-1(ol)1(on)28(ym)-405(mas)-1(\\252em)-1(,)-404(przykr)1(y\\252)]TJ 0 -13.549 Td[(jak)1(imi\\261)-264(li\\261ciam)-1(i)1(,)-264(n)1(a)-263(kt\\363re)-264(zn\\363)28(w)-263(na)28(w)27(al)1(i\\252)-264(zs)-1(i)1(ad\\252ego)-264(mlek)55(a)-263(i)-263(ws)-1(zystk)28(o)-264(o)28(win)1(\\241\\252)-264(w)-263(m)-1(o-)]TJ 0 -13.549 Td[(kr)1(e)-390(sz)-1(mat)28(y)83(.)-389(P)1(rzyk)56(az)-1(a)28(ws)-1(zy)-389(Jagu)1(s)-1(i,)-388(b)28(y)-389(c)-1(o)-389(p)1(ac)-1(i)1(e)-1(rz)-389(z)-1(l)1(e)-1(w)28(a\\252a)-389(z)-1(imn\\241)-389(w)28(o)-28(d)1(\\241,)-389(p)-28(ol)1(e)-1(cia\\252)]TJ 0 -13.549 Td[(\\261pies)-1(zni)1(e)-334(do)-333(k)28(o\\261)-1(cio\\252a,)-333(gdy)1(\\273)-334(s)-1(y)1(gnatu)1(rk)56(a)-334(zadzw)27(on)1(i\\252a.)]TJ 27.879 -13.549 Td[(Cz)-1(as)-391(ju)1(\\273)-392(b)28(y)1(\\252)-1(o)-391(n)1(a)-391(s)-1(u)1(m)-1(\\246,)-391(lu)1(dzie)-392(w)28(alili)-390(c)-1(a\\252\\241)-391(dr)1(og\\241,)-391(w)27(ozy)-391(tur)1(k)28(ota\\252y)-391(i)-391(s)-1(p)-27(oro)]TJ -27.879 -13.549 Td[(zna)-56(j)1(om)27(y)1(c)27(h)-422(zagl\\241d)1(a\\252o)-422(p)-28(o)-421(dro)-28(d)1(z)-1(e)-422(d)1(o)-422(c)27(h)1(ore)-1(j)1(,)-422(j)1(a\\273)-1(e)-422(Jagna)-421(drzwi)-422(m)28(usia\\252a)-422(z)-1(a)28(wrze)-1(\\242)]TJ 0 -13.55 Td[(pr)1(z)-1(ed)-333(cie)-1(k)56(a)28(wymi,)-333(t)27(y)1(le)-334(co)-334(j)1(e)-1(d)1(na)-333(Si)1(k)28(orz)-1(y)1(na)-333(z)-334(ni)1(\\241)-334(p)-27(oz)-1(osta\\252a.)]TJ 27.879 -13.549 Td[(Wkr)1(\\363tc)-1(e)-319(i)-319(usp)-28(ok)28(oi\\252o)-319(si\\246)-320(c)-1(a\\252k)1(ie)-1(m.)-319(Domini)1(k)28(o)27(w)28(a)-319(ucic)27(h)1(\\252)-1(a,)-319(o)-27(d)-319(k)28(o\\261)-1(cio\\252a)-320(r)1(oz)-1(n)1(o-)]TJ -27.879 -13.549 Td[(si\\252o)-374(s)-1(i)1(\\246)-375(cic)27(h)1(e)-1(,)-373(brz\\246)-1(cz\\241c)-1(e)-374(gran)1(ie)-375(or)1(gan\\363)28(w)-374(i)-374(g\\252osy)-374(\\261)-1(p)1(iew)27(a\\253)-373(tc)27(h)1(n\\246\\252)-1(y)-373(ws)-1(kr)1(o\\261)-375(sad\\363)28(w)]TJ 0 -13.549 Td[(roze)-1(\\252k)56(an)28(y)1(m)-1(,)-333(p)1(ie)-1(\\261c)-1(i)1(w)-1(y)1(m)-334(trze)-1(p)-27(otem)-1(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-437(galan)29(to)-437(pr)1(z)-1(yp)1(iek)55(a\\252o,)-436(w)-437(pr)1(z)-1(yp)-27(o\\252ud)1(nio)28(w)28(e)-1(j)-436(c)-1(i)1(c)27(ho\\261ci)-437(dr)1(z)-1(ew)27(a)-436(s)-1(tan)1(\\246)-1(\\252y)]TJ -27.879 -13.55 Td[(b)-27(e)-1(z)-324(ru)1(c)27(h)28(u)1(,)-324(jeno)-324(n)1(ie)-1(k)1(ie)-1(d)1(y)-324(zatrz\\246)-1(s\\252a)-324(s)-1(i\\246)-324(jak)56(a)-324(ga\\252\\241zk)55(a)-324(i)-323(z)-1(amro)28(wi\\252y)-324(si\\246)-325(cienie,)-324(p)1(tac)-1(-)]TJ 0 -13.549 Td[(t)28(w)27(o)-391(p)-27(omilk\\252o,)-391(za\\261)-391(c)-1(zas)-1(ami)-391(ru)1(s)-1(zy\\252y)-391(zb)-28(o\\273a)-391(i)-391(d)1(z)-1(w)28(oni\\241c)-391(cic)27(h)28(u)1(\\261)-1(ki)1(m)-392(c)28(hrz\\246s)-1(tem)-1(,)-390(z)-1(a-)]TJ 0 -13.549 Td[(gra\\252y)-333(p)1(\\252)-1(o)28(wymi)-333(grzyw)27(ami.)]TJ 27.879 -13.549 Td[(Ch\\252op)1(aki)-408(w)27(ci\\241\\273)-409(siedzia\\252y)-408(p)-28(o)-27(d)-408(c)27(h)1(a\\252up\\241.)-408(M)1(ate)-1(u)1(s)-1(z)-408(z)-409(cic)27(h)1(a)-409(p)1(ra)28(wi\\252,)-408(Szyme)-1(k)]TJ -27.879 -13.549 Td[(kiw)28(a\\252)-402(jeno)-402(g\\252o)28(w)28(\\241,)-402(z)-1(a\\261)-402(J\\246)-1(d)1(rzyc)27(h)-401(le\\273)-1(\\241c)-402(przed)-402(ni)1(m)-1(i)-401(w)-1(p)1(atryw)28(a\\252)-402(s)-1(i)1(\\246)-403(w)-402(dy)1(m)-403(M)1(ate)-1(-)]TJ 0 -13.55 Td[(uszo)27(w)28(e)-1(go)-333(p)1(apierosa,)-334(co)-333(jakb)29(y)-334(n)1(iebies)-1(k)56(\\241)-333(pa)-55(j\\246c)-1(zyn\\241)-333(wyn)1(os)-1(i\\252)-333(s)-1(i)1(\\246)-334(p)-27(onad)-333(strze)-1(c)28(h\\246.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-334(wysz)-1(\\252a)-333(z)-334(wiad)1(re)-1(m)-333(p)-28(o)-333(w)28(o)-28(d\\246)-334(d)1(o)-333(s)-1(ta)28(wu.)]TJ 0 -13.549 Td[(Wtedy)-412(Mateusz)-413(s)-1(i\\246)-413(p)-27(o)-28(d)1(ni\\363s\\252,)-413(p)1(rz)-1(y)28(ob)1(iec)-1(u)1(j\\241c)-413(pr)1(z)-1(yj)1(\\261)-1(\\242)-413(j)1(e)-1(sz)-1(cz)-1(e)-413(p)-27(o)-413(ob)1(ie)-1(d)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(do)-282(k)28(o\\261c)-1(io\\252a)-282(z)-1(amierza\\252)-283(i\\261\\242)-1(,)-282(ale)-283(d)1(o)-56(j)1(rz)-1(a)28(wsz)-1(y)84(,)-283(i)1(\\273)-283(Jagusia)-282(s)-1(iedzi)-282(nad)-282(w)28(o)-28(d\\241,)-282(pr)1(z)-1(yst\\241)-28(p)1(i\\252)]TJ 0 -13.549 Td[(do)-333(n)1(ie)-1(j)1(.)]TJ 27.879 -13.55 Td[(Wiad)1(ro)-333(s)-1(t)1(a\\252)-1(o)-333(n)1(abran)1(e)-1(,)-333(n)1(ogi)-334(t)1(rz)-1(y)1(m)-1(a\\252a)-333(w)27(e)-333(w)27(o)-28(d)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Jagusia!..)1(.)-333({)-334(sz)-1(epn)1(\\241\\252)-334(cic)27(h)1(o,)-333(przysta)-56(j)1(\\241c)-334(p)-27(ob)-28(ok)-333(p)-27(o)-28(d)-333(olsz)-1(\\241.)]TJ 0 -13.549 Td[(Sp)1(u\\261c)-1(i)1(\\252a)-455(pr\\246dk)28(o)-455(w)28(e)-1(\\252n)1(iak)-455(n)1(a)-455(k)28(olana)-455(i)-454(s)-1(p)-27(o)-56(j)1(rza\\252a)-455(na)-455(n)1(ie)-1(go,)-454(ale)-456(mia\\252a)-455(tak)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ep\\252ak)56(ane)-333(o)-28(c)-1(zy)-333(i)-333(\\273)-1(a\\252o\\261c)-1(i)-333(a)-333(s)-1(m)28(utk)1(u)-333(p)-28(e\\252ne,)-333(\\273)-1(e)-334(m)28(u)-333(s)-1(i)1(\\246)-334(s)-1(erce)-334(zat\\252uk\\252o.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(ci)-333(to,)-333(Jagu\\261?)-334(c)27(h)1(ora\\261?)-1(.)1(..)]TJ 0 -13.55 Td[(Drzew)27(a)-360(si\\246)-361(zak)28(oleba\\252y)-360(b)-27(e)-1(z)-360(sz)-1(u)1(m)27(u,)-359(s)-1(yp)1(i\\241c)-360(na)-360(jej)-360(j)1(as)-1(n)1(\\241)-360(g\\252o)28(w)27(\\246)-360(ulew)27(\\246)-360(migo-)]TJ -27.879 -13.549 Td[(tli)1(w)-1(y)1(c)27(h)-333(br)1(z)-1(ask)28(\\363)28(w)-334(i)-333(c)-1(i)1(e)-1(n)1(i\\363)28(w)-1(,)-333(k)1(ie)-1(b)29(y)-334(t)1(e)-1(n)-333(d)1(e)-1(sz)-1(cz)-334(zie)-1(l)1(onoz\\252)-1(ot)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Ni...)-333(j)1(e)-1(n)1(o)-334(mi)-333(ni)1(e)-1(d)1(ruj)1(k)28(o)-334(n)1(a)-334(\\261wiec)-1(ie,)-333(nie...)-333({)-333(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-334(o)-28(czy)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(m)-334(c)-1(i)-333(co)-333(p)-28(om\\363g\\252,)-333(z)-1(arad)1(z)-1(i)1(\\252...)-333({)-333(rz)-1(ek\\252)-333(s)-1(erd)1(e)-1(cz)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(?)-333(uciek\\252e)-1(\\261)-333(w)-1(tedy)-333(n)1(a)-334(ogr)1(o)-28(dac)28(h)-333(i)-333(ju)1(\\273)-1(e\\261)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(p)-28(ok)56(aza\\252...)]TJ 0 -13.549 Td[({)-333(B)-1(o\\261)-333(m)-1(e)-333(s)-1(kr)1(z)-1(y)1(w)-1(d)1(z)-1(i)1(\\252)-1(a!)1(...)-333(\\221mia\\252em)-334(to?)-333(Jagu\\261...)-333({)-333(p)-27(ok)28(orn)28(y)-333(j)1(u\\273)-334(b)29(y\\252)-334(i)-333(d)1(obr)1(y)83(.)]TJ 0 -13.55 Td[({)-333(Ale)-1(\\242)-333(p)-28(otem)-334(w)28(o\\252a\\252am)-334(z)-1(a)-333(tob)1(\\241,)-333(nie)-334(u)1(s)-1(\\252u)1(c)27(h)1(a\\252)-1(e\\261...)]TJ 0 -13.549 Td[({)-333(W)83(o\\252a\\252a\\261)-334(to,)-333(Jagu)1(\\261)-1(?)-333(nap)1(ra)28(w)-1(d)1(\\246)-1(?!.)1(..)]TJ 0 -13.549 Td[({)-301(Rze)-1(k)1(\\252)-1(am!.)1(..)-301(W)1(ydr)1(z)-1(e\\242)-301(b)28(ym)-301(si\\246)-301(mog\\252)-1(a,)-300(a)-301(n)1(ikto)-300(b)28(y)-300(s)-1(i\\246)-301(n)1(ie)-301(p)-27(okw)27(ap)1(i\\252!..)1(.)-301(Kto)]TJ -27.879 -13.549 Td[(ta)-333(s)-1(toi)-333(o)-333(sie)-1(r)1(ot)28(y?)-1(.)1(..)-333(Skr)1(z)-1(y)1(w)-1(d)1(z)-1(i)1(\\242)-334(to)-333(k)55(a\\273den)-333(goto)28(wy)-334(i)-333(sp)-27(oniewie)-1(r)1(a\\242)-1(!)]TJ 27.879 -13.549 Td[(\\212un)1(a)-394(obla\\252a)-394(j)1(e)-1(j)-393(t)28(w)27(arz,)-394(o)-28(d)1(wio)-28(d\\252a)-394(g\\252o)28(w)27(\\246)-394(i)-394(w)-394(z)-1(ak)1(\\252)-1(op)-27(otan)1(iu)-394(j)1(\\246)-1(\\252a)-394(rozgarn)1(ia\\242)]TJ -27.879 -13.55 Td[(w)28(o)-28(d\\246)-334(n)1(ogami.)-333(Mateusz)-334(te)-1(\\273)-333(s)-1(i\\246)-333(c)-1(osik)-333(z)-1(amedyto)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[(Cic)27(h)1(o\\261)-1(\\242)-428(s)-1(i)1(\\246)-429(zno)28(wu)-428(p)1(rz\\246)-1(d)1(\\252)-1(a;)-427(grani)1(e)-429(or)1(gan\\363)28(w)-428(s)-1(\\241cz)-1(y\\252o)-428(si\\246)-428(k)28(o)-56(j)1(\\241c)-1(\\241,)-428(cic)27(h)29(u\\261k)55(\\241)]TJ\nET\nendstream\nendobj\n1765 0 obj <<\n/Type /Page\n/Contents 1766 0 R\n/Resources 1764 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1751 0 R\n>> endobj\n1764 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1769 0 obj <<\n/Length 8602      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(553)]TJ -358.232 -35.866 Td[(sm)27(ug\\241,)-310(s)-1(t)1(a)27(w)-311(p)-27(ol\\261niew)27(a\\252)-310(i)-311(k)28(oliste)-311(gur)1(b)28(y)-311(r)1(oz)-1(tacz)-1(a\\252y)-310(s)-1(i)1(\\246)-312(o)-27(d)-311(n)1(\\363g)-311(Jagusin)1(o)27(wyc)28(h)-311(k)1(ie)-1(j)]TJ 0 -13.549 Td[(w)28(\\246)-1(\\273e)-390(pr\\246go)28(w)27(ate,)-390(cienie)-390(si\\246)-390(mro)28(wi\\252y)-390(p)-27(o)-390(n)1(adb)1(rze)-1(\\273nej)-390(g\\252ad)1(z)-1(i)1(,)-390(za\\261)-390(p)-28(omi\\246dzy)-390(n)1(imi)]TJ 0 -13.549 Td[(zac)-1(z\\246)-1(\\252y)-333(ju)1(\\273)-334(lata\\242)-333(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)-334(i)-333(wi\\241za\\242)-334(si\\246)-334(mi\\246)-1(d)1(z)-1(y)-333(sob\\241.)1(..)]TJ 27.879 -13.549 Td[(Mateusza)-360(coraz)-360(s)-1(i)1(lni)1(e)-1(j)-359(ci\\241)-28(gn\\246\\252o)-360(d)1(o)-360(n)1(ie)-1(j)1(,)-359(\\273)-1(e)-360(wz)-1(i)1(\\241\\252b)28(y)-360(j)1(\\241)-360(b)29(y\\252)-360(n)1(a)-360(r\\246c)-1(e)-360(k)1(ie)-1(j)-359(to)]TJ -27.879 -13.549 Td[(dziec)-1(i)1(\\241tk)28(o)-334(i)-333(z)-334(n)1(ieop)-28(o)28(wiedzian\\241)-333(dob)1(ro\\261c)-1(i\\241)-333(pr)1(z)-1(y)1(ho\\252ub)1(i\\252)-333(a)-334(u)1(s)-1(p)-27(ok)56(a)-56(j)1(a\\252)-1(.)1(..)]TJ 27.879 -13.55 Td[({)-333(My\\261la\\252am,)-334(co\\261)-334(mi)-333(niepr)1(z)-1(yj)1(az)-1(n)29(y)83(..)1(.)-333({)-334(ozw)27(a\\252a)-333(s)-1(i)1(\\246)-334(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o.)]TJ 0 -13.549 Td[({)-333(Nigdy)1(m)-334(c)-1(i)-333(k)1(rz)-1(y)1(w)-334(ni)1(e)-334(b)28(y\\252..)1(.)-333(nie)-334(b)1(ac)-1(zysz)-334(to?...)]TJ 0 -13.549 Td[({)-480(Hale,)-480(mo\\273)-1(e)-480(\\252oni,)-480(k)1(ie)-1(d)1(y\\261...)-480(a)-480(teraz)-480(tak)-480(j)1(ak)-480(dr)1(udzy)84(...)-480(j)1(ak...)-480({)-480(sze)-1(p)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)1(ac)-1(znie.)]TJ 27.879 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252o)-334(n)1(im)-334(n)1(ag\\252)-1(e)-333(przyp)-27(omnienie,)-333(ws)-1(ta\\252)-333(w)-334(n)1(im)-334(gn)1(ie)-1(w)-333(i)-333(z)-1(azdr)1(o\\261)-1(\\242.)]TJ 0 -13.549 Td[({)-333(B)-1(o\\261...)-333(b)-27(o\\261)-1(.)1(..)]TJ 0 -13.55 Td[(Nie,)-338(ni)1(e)-339(p)-27(oredzi\\252)-338(w)-1(y)1(rzuci\\242)-339(ze)-339(siebie,)-338(co)-338(go)-338(dusi\\252o,)-338(p)-27(ohamo)28(w)27(a\\252)-338(si\\246)-339(j)1(e)-1(szc)-1(ze)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(jeno)-333(kr\\363tk)28(o)-333(i)-333(t)28(w)27(ar)1(do)-333(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a)-56(j)-333(z)-334(Bogiem)-1(!)1(...)]TJ 0 -13.549 Td[(Mu)1(s)-1(i)1(a\\252)-334(u)1(c)-1(iek)56(a\\242)-1(,)-333(ab)28(y)-333(j)1(e)-1(j)-333(w)28(\\363)-56(j)1(ta)-334(n)1(ie)-334(wyp)-27(omnie\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Uc)-1(iek)56(as)-1(z,)-333(a)-334(c\\363\\273)-1(em)-334(ci)-333(to)-333(z)-1(n)1(o)27(wu)-333(za)-334(k)1(rzywd\\246)-334(zrobi)1(\\252a?)-1(.)1(..)]TJ 0 -13.55 Td[(Wyl)1(\\246)-1(k\\252a)-333(b)28(y\\252a)-333(i)-333(roz\\273)-1(alon)1(a.)]TJ 0 -13.549 Td[({)-348(Ni)1(e)-1(..)1(.)-348(n)1(ie)-1(.)1(..)-348(j)1(e)-1(n)1(o.)-348({)-347(m)-1(\\363)28(wi\\252)-348(p)1(r\\246dk)28(o,)-347(z)-1(agl)1(\\241da)-56(j)1(\\241c)-348(w)-348(jej)-347(m)-1(o)-27(dre,)-348(p)1(rze)-1(p)1(\\252ak)55(an)1(e)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)84(,)-334(a)-334(\\273)-1(al,)-334(tk)1(liw)28(o\\261)-1(\\242)-335(i)-334(gn)1(iew)-335(n)1(im)-335(miota\\252y)-334({)-334(jeno)-334(pr)1(z)-1(ep)-28(\\246d\\271)-334(t\\246)-335(p)-27(okrak)28(\\246)-334(o)-28(d)-334(sie)-1(b)1(ie,)]TJ 0 -13.549 Td[(pr)1(z)-1(ep)-27(\\246)-1(d)1(\\271)-1(,)-333(Jagu\\261...)-333({)-333(pr)1(os)-1(i)1(\\252)-334(gw)28(a\\252to)27(wn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ab)-28(om)-333(go)-334(to)-333(pr)1(z)-1(y)1(c)-1(i\\241)-27(ga\\252)-1(a?)-333(ab)-27(o)-334(go)-333(to)-333(trzyma)-1(m!)-333({)-333(krzykn)1(\\246)-1(\\252a)-333(gniewnie.)]TJ 0 -13.55 Td[(Mateusz)-334(stan\\241\\252)-333(niep)-27(e)-1(wn)28(y)-333(i)-333(wielc)-1(e)-333(s)-1(k\\252op)-27(otan)28(y)84(.)]TJ 0 -13.549 Td[(P\\252acz)-334(j)1(\\241)-334(c)28(h)28(wyc)-1(i)1(\\252)-1(,)-333(\\252zy)-333(jak)-333(gro)-28(c)28(h)-333(s)-1(y)1(pn)1(\\246)-1(\\252y)-333(s)-1(i)1(\\246)-334(p)-27(o)-334(rozogni)1(onej)-333(t)28(w)27(ar)1(z)-1(y)84(.)]TJ 0 -13.549 Td[({)-241(T)83(ak)56(\\241)-241(kr)1(z)-1(y)1(w)-1(d)1(\\246)-241(m)-1(i)-240(z)-1(r)1(o)-1(b)1(i\\252...)-240(tak)-241(me)-241(s)-1(p)-27(oi\\252..)1(.)-241(a)-241(n)1(ikto)-241(si\\246)-241(z)-1(a)-240(m)-1(n)1(\\241)-241(ni)1(e)-242(u)1(p)-28(omn)1(i...)]TJ -27.879 -13.549 Td[(ni)1(kto)-364(s)-1(i)1(\\246)-365(ni)1(e)-365(ul)1(ituj)1(e)-1(,)-364(a)-364(ws)-1(zysc)-1(y)-364(n)1(a)-365(mn)1(ie)-365(b)1(ij)-364(zabij)1(!)-364(C)-1(\\363\\273em)-365(to)-364(wino)28(w)28(ata?)-1(.)1(.)-364(c)-1(o?)-364({)]TJ 0 -13.549 Td[(sk)55(ar)1(\\273)-1(y\\252a)-333(si\\246)-334(z)-334(b)-27(ole\\261)-1(ci\\241.)]TJ 27.879 -13.55 Td[({)-333(Ja)-334(m)28(u,)-333(\\261c)-1(i)1(e)-1(rwie,)-333(o)-28(dp)1(\\252ac)-1(\\246!)-333({)-334(wyb)1(uc)28(hn)1(\\241\\252)-334(p)-27(o)-28(dn)1(os)-1(z\\241c)-334(p)1(i\\246)-1(\\261c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Odp)1(\\252a\\242)-1(,)-333(Mateusz!)-334(O)1(dp)1(\\252)-1(a\\242,)-333(a)-333(ja)-333(ju)1(\\273)-334(c)-1(i)1(...)-333({)-333(przywt\\363rzy\\252a)-333(z)-1(a)28(wz)-1(i\\246cie)-1(.)]TJ 0 -13.549 Td[(Ju)1(\\273)-334(s)-1(i)1(\\246)-334(nie)-333(o)-28(dez)-1(w)28(a\\252,)-333(jeno)-333(p)-28(ol)1(e)-1(cia\\252)-333(ku)-333(k)28(o\\261)-1(cio\\252o)28(wi.)]TJ 0 -13.549 Td[(D\\252ugo)-328(j)1(e)-1(sz)-1(cz)-1(e)-328(s)-1(iedzia\\252a)-328(nad)-327(s)-1(ta)28(w)28(e)-1(m)-329(r)1(oz)-1(m)28(y\\261la)-56(j)1(\\241c)-329(o)-328(Mateusz)-1(u)1(,)-328(\\273)-1(e)-328(m)-1(o\\273e)-329(si\\246)]TJ -27.879 -13.549 Td[(za)-334(n)1(i\\241)-333(ujmie,)-333(a)-334(k)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(\\242)-334(ni)1(e)-334(p)-28(ozw)28(oli.)]TJ 27.879 -13.55 Td[({)-333(A)-334(mo\\273e)-334(i)-333(An)28(tek)-334({)-333(pr)1(z)-1(y)1(s)-1(z\\252o)-334(j)1(e)-1(j)-333(n)1(araz)-334(d)1(o)-334(g\\252o)28(wy)83(.)]TJ 0 -13.549 Td[(P)28(o)28(wr\\363)-28(ci\\252a)-333(do)-333(dom)28(u,)-333(p)-27(e)-1(\\252na)-333(cic)27(h)28(y)1(c)27(h)-333(i)-333(rad)1(os)-1(n)29(yc)27(h)-333(p)1(rz)-1(ecz)-1(u)1(\\242)]TJ 0 -13.549 Td[(Dzw)27(on)28(y)-412(zac)-1(z\\246)-1(\\252y)-412(bi\\242,)-413(n)1(ar\\363)-28(d)-412(wyc)27(h)1(o)-28(dzi\\252)-413(z)-413(k)28(o\\261c)-1(i)1(o\\252a,)-413(zaroi\\252y)-412(s)-1(i\\246)-413(wnet)-413(d)1(rogi)]TJ -27.879 -13.549 Td[(a)-367(roz)-1(g\\252o\\261nia\\252y)-367(tu)1(rk)28(otami)-368(w)28(oz\\363)27(w)-367(i)-368(r)1(oz)-1(mo)28(w)27(ami,)-367(\\261)-1(miec)27(h)28(y)-367(d)1(z)-1(w)28(oni\\252y)-367(w)-368(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(,)]TJ 0 -13.549 Td[(sz)-1(li)-338(ca\\252ymi)-338(kup)1(am)-1(i)1(,)-338(p)-28(osta)-56(j)1(\\241c)-339(ni)1(e)-1(ki)1(e)-1(j)-338(p)1(rze)-1(d)-337(op\\252otk)56(am)-1(i)1(,)-338(t)27(y)1(lk)28(o)-338(przed)-338(c)27(h)1(a\\252)-1(u)1(p\\241)-338(Do-)]TJ 0 -13.549 Td[(mini)1(k)28(o)27(w)28(e)-1(j)-369(lud)1(z)-1(i)1(e)-371(jak)28(o\\261)-370(c)-1(ic)28(hli)1(,)-370(s)-1(p)-27(ogl\\241d)1(ali)-370(na)-370(sie)-1(b)1(ie)-371(i)-370(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(i)1(li)-370(z)-371(zas)-1(\\246pi)1(on)28(ymi)]TJ 0 -13.55 Td[(t)28(w)27(ar)1(z)-1(ami;)-333(na)28(w)28(e)-1(t)-333(n)1(ikt)-333(nie)-333(z)-1(a)-55(jrza\\252)-333(do)-333(c)27(hor)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(t)-381(ci)-381(r)1(oz)-1(gw)28(arzy\\252a)-381(s)-1(i\\246)-381(ca\\252)-1(a)-380(w)-1(i)1(e)-1(\\261,)-381(rozgw)27(ar)1(z)-1(y\\252y)-380(s)-1(i\\246)-381(izb)28(y)-381(a)-381(sienie)-381(i)-381(p)1(rogi;)]TJ -27.879 -13.549 Td[(p)-27(o)-378(sa)-1(d)1(ac)27(h)-377(te\\273)-378(b)28(y\\252o)-378(g\\252o\\261no)-378(i)-377(ro)-55(jno,)-377(gdy)1(\\273)-378(z)-1(asiadan)1(o)-378(do)-377(obiad)1(\\363)28(w)-378(p)-28(o)-27(d)-378(d)1(rze)-1(w)28(am)-1(i)1(,)]TJ 0 -13.549 Td[(w)-359(c)-1(i)1(e)-1(n)1(iac)27(h)-358(a)-359(c)27(h\\252o)-28(d)1(z)-1(i)1(e)-1(,)-359(\\273e)-360(wsz)-1(\\246dy)-358(b)28(y\\252o)-359(wida\\242)-359(jedz\\241c)-1(y)1(c)27(h,)-358(s)-1(kr)1(z)-1(yb)-27(ot)-359(\\252y\\273e)-1(k)1(,)-359(s)-1(zcz)-1(\\246k)]TJ 0 -13.549 Td[(mic)27(h)1(;)-333(a)-334(zapac)27(h)29(y)-333(jad\\252a)-333(i)-333(s)-1(k)56(am\\252ania)-333(p)1(ie)-1(sk)28(\\363)28(w)-334(roznosi\\252y)-333(s)-1(i)1(\\246)-334(w)-334(skw)28(arnej)-333(cis)-1(zy)83(.)]TJ 27.879 -13.55 Td[(T)28(ylk)28(o)-331(u)-330(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-330(b)28(y\\252o)-331(g\\252uc)28(ho)-331(i)-331(p)1(usto:)-331(n)1(ikt)-331(si\\246)-331(nie)-331(p)-27(okw)27(ap)1(i\\252)-331(z)-331(o)-28(dwie-)]TJ -27.879 -13.549 Td[(dzin)1(am)-1(i)1(.)-307(Stara)-307(p)-27(o)-56(j)1(\\246)-1(k)1(iw)27(a\\252a)-307(w)-307(gor\\241cz)-1(ce)-1(,)-307(J)1(agu\\261)-308(n)1(ie)-307(m)-1(og\\252a)-307(ju)1(\\273)-308(wysiedzie)-1(\\242,)-307(sta)27(w)28(a\\252a)]TJ\nET\nendstream\nendobj\n1768 0 obj <<\n/Type /Page\n/Contents 1769 0 R\n/Resources 1767 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1767 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1773 0 obj <<\n/Length 8726      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(554)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)-429(p)1(rogu,)-428(to)-429(wyc)28(ho)-28(d)1(z)-1(i)1(\\252a)-429(a\\273)-429(na)-428(drog\\246,)-428(to)-429(zno)28(wu)-429(d)1(\\252ugie)-429(cz)-1(asy)-428(patrza\\252a)-429(t\\246s)-1(k)1(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-378(okno,)-378(za\\261)-378(Szyme)-1(k,)-377(jak)-378(i)-377(prz\\363)-28(d)1(z)-1(i,)-377(s)-1(iedzia\\252)-378(p)-27(o)-28(d)-377(c)27(ha\\252u)1(p\\241,)-378(t)28(y)1(le)-379(co)-378(jeden)-377(J\\246)-1(-)]TJ 0 -13.549 Td[(dr)1(e)-1(k)-319(g\\252o)28(w)-1(y)-319(ni)1(e)-320(s)-1(tr)1(ac)-1(i\\252)-319(i)-320(wzi\\241\\252)-320(si\\246)-320(p)-27(o)-320(dr)1(ugiej)-319(s)-1(t)1(ronie)-320(d)1(om)27(u)-319(d)1(o)-320(goto)28(w)27(an)1(ia)-319(s)-1(tr)1(a)27(wy)84(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-416(w)-417(j)1(aki\\261)-416(c)-1(zas)-417(p)-27(o)-416(obiedzie)-417(za)-56(j)1(rza\\252a)-417(d)1(o)-416(nic)28(h)-416(Han)1(k)55(a,)-416(j)1(e)-1(n)1(o)-416(\\273)-1(e)-416(jak)56(a\\261)]TJ -27.879 -13.549 Td[(b)28(y\\252a)-224(dziwna,)-224(rozp)28(yt)28(y)1(w)27(a\\252a)-224(o)-225(wsz)-1(ystk)28(o,)-224(tur)1(b)-28(o)28(w)28(a\\252)-1(a)-224(si\\246)-225(wielc)-1(e)-225(o)-224(c)27(h)1(or\\241,)-224(a)-224(ukr)1(adkiem,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)-1(za)-56(j)1(on)28(ymi)-333(o)-28(c)-1(zyma)-334(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-333(za)-334(Jagn)1(\\241,)-333(wz)-1(d)1(yc)27(ha)-55(j\\241c)-333(frasobl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(P)28(okr)1(\\363tc)-1(e)-333(i)-333(Mateusz)-334(pr)1(z)-1(ylecia\\252)-334(d)1(o)-334(S)1(z)-1(y)1(m)-1(k)56(a.)]TJ 0 -13.549 Td[({)-333(P)28(\\363)-56(j)1(dzies)-1(z)-334(z)-333(nami)-333(do)-333(Miem)-1(c\\363)28(w)-1(?)-333({)-333(p)28(yta\\252.)]TJ 0 -13.549 Td[({)-333(Gron)29(t)-334(m\\363)-56(j)-333(p)-27(o)-333(o)-56(j)1(c)-1(u)1(,)-333(nie)-334(u)1(s)-1(t)1(\\241)-28(pi\\246)-333(z)-334(mie)-1(j)1(s)-1(ca)-334({)-333(gad)1(a\\252)-334(sw)27(o)-55(je)-334(c)28(h\\252opak)1(.)]TJ 0 -13.549 Td[({)-333(Nas)-1(tu)1(s)-1(i)1(a)-334(cz)-1(ek)56(a)-334(n)1(a)-334(ciebie,)-333(pr)1(z)-1(ec)-1(iek)-333(mac)-1(ie)-333(p)-28(on)1(ie)-1(\\261\\242)-334(n)1(a)-334(zap)-28(o)28(wiedzie.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(\\363)-56(j)1(d\\246)-334(n)1(ik)56(a)-56(j)1(...)-333(gron)28(t)-333(m\\363)-56(j)-333(p)-27(o)-333(o)-56(j)1(c)-1(ac)28(h...)]TJ 0 -13.55 Td[({)-266(G\\252up)1(ie)-267(o\\261)-1(l)1(is)-1(k)28(o!)-266(ni)1(kto)-266(c)-1(i\\246)-267(za)-267(ogon)-266(n)1(ie)-267(ci\\241)-28(ga...)-266(a)-266(s)-1(ied\\271)-267(se)-267(c)27(h)1(o)-28(\\242b)28(y)-267(d)1(o)-267(j)1(utr)1(a!)-267({)]TJ -27.879 -13.549 Td[(rozgni)1(e)-1(w)28(a\\252)-283(si\\246,)-282(a)-282(\\273)-1(e)-282(akur)1(atnie)-282(Jagna)-282(o)-27(dpr)1(o)27(w)28(adza\\252a)-282(Hank)28(\\246)-282(w)-283(op)1(\\252otki,)-282(p)1(rzy\\252\\241c)-1(zy\\252)]TJ 0 -13.549 Td[(si\\246)-334(do)-333(n)1(ie)-1(j)1(,)-333(na)28(w)27(et)-333(nie)-333(s)-1(p)-27(o)-56(j)1(rza)27(wsz)-1(y)-333(n)1(a)-334(tam)28(t\\241.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(l)1(i)-334(r)1(az)-1(em)-334(d)1(rog\\241)-333(nad)-333(sta)28(w)27(em)-1(.)]TJ 0 -13.549 Td[({)-333(Ro)-28(c)27(h)1(o)-334(p)1(rzys)-1(zli)-333(ju)1(\\273)-334(z)-334(k)28(o\\261c)-1(i)1(o\\252)-1(a?)-333({)-333(z)-1(agad)1(a\\252)]TJ 0 -13.55 Td[({)-333(Przysz)-1(l)1(i;)-333(ju)1(\\273)-334(tam)-334(i)-333(sp)-28(or)1(o)-334(c)28(h\\252op)-27(\\363)27(w)-333(c)-1(ze)-1(k)56(a.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252)-393(si\\246)-1(.)-392(Jagna)-392(patr)1(z)-1(y\\252a)-392(z)-1(a)-393(n)1(imi,)-393(wi\\246c)-393(o)-28(d)1(w)-1(r)1(ac)-1(a)-55(j\\241c)-393(si\\246)-393(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie,)-393(za-)]TJ -27.879 -13.549 Td[(p)28(yt)1(a\\252)-334(cic)27(h)1(o,)-333(nie)-334(p)1(atrz\\241c)-334(w)-334(o)-27(c)-1(zy:)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda)-333(to,)-333(\\273e)-334(ksi\\241dz)-334(z)-333(am)27(b)-27(on)28(y)-333(k)28(ogo\\261)-334(wyp)-27(om)-1(i)1(na\\252?...)]TJ 0 -13.549 Td[({)-333(S\\252ysz)-1(a\\252e\\261)-1(,)-333(a)-333(jes)-1(zcz)-1(e)-334(za)-334(j)1(\\246)-1(zyk)-333(ci\\241)-28(gn)1(ie)-1(sz)-1(.)]TJ 0 -13.55 Td[({)-310(Pr)1(z)-1(ysze)-1(d)1(\\252)-1(em)-310(ju\\273)-310(p)-27(o)-311(k)56(azaniu)1(,)-310(p)-27(o)27(wiedal)1(i)-310(m)-1(i)-310(o)-310(t)28(ym,)-310(ale)-310(m)27(y)1(\\261)-1(la\\252em)-1(,)-309(c)-1(o)-310(jeno)]TJ -27.879 -13.549 Td[(cygani\\241)-333(tak)-333(la)-333(\\261m)-1(iec)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[({)-301(I)-302(n)1(ie)-302(jedn)1(\\241)-302(wyp)-27(omina\\252..)1(.)-302(j)1(a\\273)-1(e)-302(p)1(i\\246\\261)-1(ciami)-302(wyt)1(rz)-1(\\241c)28(ha\\252...)-301(P)1(rzyk)56(arc)-1(a\\242)-301(g\\252)-1(o\\261no)]TJ -27.879 -13.549 Td[(i)-303(na)-304(d)1(rugi)1(e)-304(k)55(amieniami)-303(fry)1(ga\\242)-305(t)1(o)-304(k)56(a\\273)-1(d)1(e)-1(n)-303(s)-1(p)1(ra)28(wn)28(y)84(...)-304(j)1(e)-1(n)1(o)-304(z\\252e)-1(m)28(u)-304(p)1(rze)-1(sz)-1(k)28(o)-27(dzi\\242)-304(nie)]TJ 0 -13.549 Td[(ma)-338(k)28(om)27(u)-337({)-338(zmart)28(wiona)-337(b)28(y\\252a)-338(g\\252\\246b)-28(ok)28(o)-337(i)-338(z\\252)-1(a)-337({)-338(Ale)-338(w)28(\\363)-56(j)1(ta)-338(to)-338(n)1(i)-338(s\\252o)27(w)28(em)-339(n)1(ie)-338(tkn)1(\\241\\252,)]TJ 0 -13.55 Td[(a)-333(on)-333(tu)-333(za)27(win)1(i\\252)-333(na)-56(j)1(bar)1(z)-1(ej)-333({)-334(d)1(o)-28(d)1(a\\252)-1(a)-333(cis)-1(zej.)]TJ 27.879 -13.549 Td[(Mateusz)-272(z)-1(akl)1(\\241\\252)-272(s)-1(iar)1(c)-1(zy\\261c)-1(ie)-272(i)-272(c)28(ho)-28(cia\\273)-272(c)27(h)1(c)-1(ia\\252)-272(j)1(e)-1(sz)-1(cze)-273(o)-272(co\\261)-272(p)28(yta\\242,)-272(zbrak)1(\\252)-1(o)-271(m)27(u)]TJ -27.879 -13.549 Td[(o)-28(d)1(w)27(agi.)-333(S)1(z)-1(l)1(i)-334(w)-333(milc)-1(zeniu)1(.)-333(Hank)56(a)-334(czu\\252a)-333(s)-1(i\\246)-333(g\\252)-1(\\246b)-27(ok)28(o)-334(d)1(otkni)1(\\246)-1(ta)-333(ca\\252)-1(\\241)-333(spra)28(w)28(\\241.)]TJ 27.879 -13.549 Td[({)-412(Ju\\261ci,)-412(\\273)-1(e)-412(Jagna)-412(gr)1(z)-1(es)-1(zy\\252a,)-412(j)1(u\\261c)-1(i,)-412(\\273e)-413(tr)1(z)-1(eba)-412(j)1(\\241)-412(b)28(y\\252o)-412(s)-1(k)56(arci\\242,)-412(ale)-412(\\273)-1(eb)28(y)-412(j\\241)]TJ -27.879 -13.549 Td[(zaraz)-345(wyp)-27(om)-1(i)1(na\\242)-345(z)-345(am)28(b)-27(on)28(y)-344(pra)28(wie)-345(p)-27(o)-344(imie)-1(n)1(iu.)1(..)-344(te)-1(go)-344(ju)1(\\273)-345(za)-345(wiele...)-344(Boryn)1(o)27(w)28(\\241)]TJ 0 -13.55 Td[(b)28(y\\252a)-306(\\273)-1(on)1(\\241,)-306(nie)-306(jak)56(\\241\\261)-307(lata)28(wic\\241...)-306({)-307(m)28(y\\261la\\252a)-307(r)1(oz)-1(\\273alona.)-306(Co)-306(p)-28(omi\\246dzy)-307(n)1(imi)-306(b)28(y\\252o,)-306(to)]TJ 0 -13.549 Td[(ic)28(h)-333(s)-1(p)1(ra)28(w)27(a,)-333(a)-333(dr)1(ugim)-333(w)27(ara)-333(o)-28(d)-333(t)1(e)-1(go.)]TJ 27.879 -13.549 Td[({)-348(Magdy)-348(n)1(i)-348(m)-1(\\252yn)1(arzo)27(wyc)28(h)-348(dziew)27(ek)-348(to)-349(n)1(ie)-349(wyp)-27(omina:)-348(wiad)1(o)-1(mo)-348(pr)1(z)-1(ec)-1(iek,)]TJ -27.879 -13.549 Td[(co)-293(wyrab)1(ia)-56(j)1(\\241!)-293(A)-292(na)-292(dw)28(\\363rki)-292(z)-293(W)83(ol)1(i)-293(te\\273)-293(ni)1(e)-294(wygr)1(a\\273)-1(a)-292(pi\\246\\261c)-1(iami,)-292(z)-1(a\\261)-293(o)-292(dzie)-1(d)1(z)-1(i)1(c)-1(zc)-1(e)-293(z)]TJ 0 -13.549 Td[(G\\252u)1(c)27(ho)28(w)28(a,)-309(c)27(ho)-27(\\242)-310(c)-1(a\\252y)-309(\\261wiat)-309(w)-1(i)1(e)-1(,)-309(jak)-309(si\\246)-310(t)1(\\252)-1(u)1(c)-1(ze)-310(z)-309(parob)1(k)55(ami,)-309(g\\252osu)-309(ni)1(e)-310(p)-28(o)-27(dn)1(ie)-1(sie!)]TJ 0 -13.549 Td[({)-333(m)-1(\\363)28(wi\\252a)-333(w)-334(n)1(a)-56(jg\\252\\246bsz)-1(y)1(m)-334(obu)1(rze)-1(n)1(iu.)]TJ 27.879 -13.55 Td[({)-333(T)83(o)-334(p)1(ra)28(wda,)-333(co)-334(i)-333(T)83(eres)-1(k)28(\\246)-334(wyp)-27(omina\\252?)-333(c)-1(o?)-333({)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(dos\\252ys)-1(za\\252a)-333(p)28(ytan)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Obi)1(e)-1(d)1(w)-1(i)1(e)-334(wyp)-28(omin)1(a\\252;)-334(wsz)-1(y)1(s)-1(cy)-333(p)-28(omiark)28(o)28(w)28(ali,)-333(o)-333(kim)-334(gad)1(a.)]TJ 0 -13.549 Td[({)-333(Kto\\261)-334(go)-333(m)27(u)1(s)-1(i)1(a\\252)-334(n)1(a)-334(n)1(i\\241)-334(p)-27(o)-28(d)1(m)-1(\\363)28(wi\\242)-334({)-333(zale)-1(d)1(wie)-334(zdzie)-1(r)1(\\273)-1(y\\252)-333(wz)-1(b)1(ur)1(z)-1(enie.)]TJ 0 -13.549 Td[({)-316(P)28(o)28(wiad)1(ali,)-316(\\273e)-316(to)-316(Domini)1(k)28(o)27(w)28(ej)-316(rob)-27(ota)-316(al)1(b)-28(o)-316(i)-315(Balc)-1(erk)28(o)28(w)28(e)-1(j;)-315(jedn)1(a)-316(s)-1(i)1(\\246)-317(m\\261c)-1(i)]TJ -27.879 -13.549 Td[(na)-336(tob)1(ie)-337(za)-336(Szym)-1(k)56(a)-336(i)-336(Nas)-1(t)1(k)28(\\246)-1(,)-336(za\\261)-337(dr)1(uga)-336(c)27(h)1(c)-1(ia\\252ab)29(y)-337(ci\\246)-336(o)-28(dci\\241)-28(gn)1(\\241\\242)-337(do)-336(sw)27(o)-55(jej)-336(Ma-)]TJ 0 -13.55 Td[(ry)1(s)-1(i.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(t)1(am)-334(raki)-333(zim)28(uj\\241!)-333(\\233e)-334(mi)-333(to)-333(na)28(w)27(et)-333(do)-333(g\\252o)28(w)-1(y)-333(n)1(ie)-334(pr)1(z)-1(y)1(s)-1(z\\252o...)]TJ\nET\nendstream\nendobj\n1772 0 obj <<\n/Type /Page\n/Contents 1773 0 R\n/Resources 1771 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1771 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1776 0 obj <<\n/Length 9175      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(555)]TJ -330.353 -35.866 Td[({)-333(C)-1(h)1(\\252op)28(y)-333(z)-1(a)28(wdy)-333(to)-333(jeno)-333(wid)1(z)-1(\\241,)-333(co)-334(ma)-56(j)1(\\241)-334(n)1(a)-333(o)-28(c)-1(zac)27(h)-333(j)1(ak)-333(w)27(\\363\\252)-333(w)-1(i)1(dn)1(e)-1(.)]TJ 0 -13.549 Td[({)-338(Na)-338(d)1(armo)-338(si\\246)-338(trud)1(z)-1(i)-337(Balc)-1(erk)28(o)28(w)27(a,)-337(na)-337(darmo!..)1(.)-338(j)1(e)-1(sz)-1(cz)-1(e)-338(co)-338(ob)-28(erw)28(a\\242)-338(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(o)-28(d)-366(T)83(eres)-1(k)1(i...)-366(A)-366(na)-366(z)-1(\\252o\\261\\242)-367(Domini)1(k)28(o)27(w)28(e)-1(j)-365(Sz)-1(y)1(m)-1(ek)-366(m)27(u)1(s)-1(i)-366(si\\246)-367(o\\273e)-1(n)1(i\\242)-367(z)-367(Nastk)56(\\241)-1(:)-366(j)1(u\\273)-367(j)1(a)]TJ 0 -13.549 Td[(tego)-334(d)1(opil)1(n)28(uj)1(\\246)-1(!)-333(\\221)1(c)-1(ierwy)-333(bab)29(y!)]TJ 27.879 -13.549 Td[({)-333(One)-333(s)-1(w)28(o)-56(j)1(e)-334(s)-1(p)1(ra)28(wy)-334(r)1(obi\\241,)-333(a)-333(b)-27(e)-1(z)-334(t)1(o)-334(n)1(ie)-1(win)1(ne)-333(c)-1(ierp)1(i\\241)-334({)-333(rzek\\252a)-334(sm)27(u)1(tni)1(e)-1(.)]TJ 0 -13.55 Td[({)-333(I)-334(tak)-333(j)1(e)-1(d)1(ni)-333(na)-333(dr)1(ugic)28(h)-333(nasta)-56(j)1(\\241,)-333(\\273)-1(e)-333(ju\\273)-333(c)-1(i\\246\\273k)28(o)-334(w)28(e)-334(ws)-1(i)-333(wytr)1(z)-1(yma\\242.)]TJ 0 -13.549 Td[({)-333(Jak)-333(Macie)-1(j)-333(b)29(y\\252,)-333(to)-334(i)-333(mia\\252)-333(kto)-333(z)-1(a\\252ago)-28(d)1(z)-1(i)1(\\242)-1(,)-333(mie)-1(l)1(i)-334(si\\246)-334(s\\252uc)28(ha\\242)-334(k)28(ogo.)]TJ 0 -13.549 Td[({)-299(Ju)1(\\261)-1(ci,)-299(w)28(\\363)-56(j)1(t)-299(tr\\241b)1(a,)-299(g\\252o)28(wy)-299(d)1(o)-299(nicz)-1(ego)-299(n)1(ie)-300(ma)-299(i)-298(w)-1(y)1(pra)28(wia)-299(tak)1(ie)-299(historie,)-299(\\273e)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(h)28(u)-333(mie\\242)-334(nie)-333(m)-1(o\\273e)-334(w)-333(naro)-27(dzie)-1(:)-333(\\233eb)28(y)-333(c)27(ho)-27(\\242)-334(An)28(tek)-333(w)-1(r)1(\\363)-28(ci\\252!...)]TJ 27.879 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)-333(n)1(ie)-1(zad\\252u)1(go,)-333(w)-1(r)1(\\363)-28(c)-1(i)1(!)-333(Ale)-334(kto)-333(go)-333(ta)-334(p)-27(os\\252)-1(u)1(c)27(h)1(a?)-334({)-333(o)-28(cz)-1(y)-333(jej)-333(rozb\\252y)1(s)-1(\\252y)84(.)]TJ 0 -13.549 Td[({)-315(Ju\\273e\\261)-1(m)28(y)-315(o)-315(t)27(y)1(m)-316(z)-315(Grze)-1(l)1(\\241)-316(i)-314(c)27(h\\252op)1(ak)55(ami)-315(r)1(adzili,)-315(\\273e)-316(j)1(ak)-315(p)-28(o)28(wr\\363)-27(c)-1(i,)-315(t)1(o)-316(j)1(u\\273)-315(m)27(y)]TJ -27.879 -13.55 Td[(raze)-1(m)-333(z)-1(r)1(obim)28(y)-333(w)27(e)-334(wsi)-333(p)-28(or)1(z)-1(\\241d)1(e)-1(k.)-333(Ob)1(ac)-1(zycie)-1(!)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(b)29(y)-333(c)-1(zas)-1(:)-333(dy)1(\\242)-334(ws)-1(zystk)28(o)-334(si\\246)-334(r)1(oz)-1(w)28(o)-28(dzi)-333(jak)-333(te)-334(k)28(o\\252a)-333(b)-27(e)-1(z)-334(l)1(u\\261ni.)]TJ 0 -13.549 Td[(Dosz)-1(li)-333(wraz)-333(do)-333(c)27(ha\\252u)1(p)28(y;)-333(n)1(a)-334(gan)1(ku)-333(sie)-1(d)1(z)-1(i)1(a\\252)-1(a)-333(ju)1(\\273)-334(gromad)1(a.)]TJ 0 -13.549 Td[(Mi)1(e)-1(li)-311(ru)1(s)-1(zy\\242)-312(w)-312(ki)1(lkun)1(as)-1(t)1(u)-312(gosp)-27(o)-28(dar)1(z)-1(y)-311(i)-312(co)-312(p)1(rze)-1(d)1(niejsz)-1(yc)28(h)-311(parob)1(k)28(\\363)28(w)-1(,)-311(c)27(h)1(o-)]TJ -27.879 -13.549 Td[(cia\\273)-334(zraz)-1(u)-332(c)-1(a\\252a)-333(w)-1(i)1(e)-1(\\261)-334(n)1(apiera\\252a)-333(s)-1(i)1(\\246)-334(i\\261\\242)-1(,)-333(j)1(ak)-334(wtedy)-333(n)1(a)-334(b)-27(\\363r.)]TJ 27.879 -13.55 Td[(Ze)-1(b)1(rali)-333(si\\246)-334(o)-27(c)-1(ze)-1(ku)1(j\\241c)-334(z)-333(niec)-1(i)1(e)-1(r)1(pliw)28(o\\261c)-1(i\\241)-333(na)-333(res)-1(zt\\246.)]TJ 0 -13.549 Td[({)-333(W)83(\\363)-55(jt)-333(tak\\273e)-334(p)-27(o)27(win)1(ien)-333(z)-334(nami)-333(i\\261\\242)-1(!)-333({)-333(z)-1(au)29(w)27(a\\273y\\252)-334(k)1(t\\363ry\\261)-334(ostru)1(guj)1(\\241c)-334(kij)1(.)]TJ 0 -13.549 Td[({)-412(Do)-412(p)-28(o)28(wiatu)-411(w)27(ez)-1(w)28(a\\252)-413(go)-412(n)1(ac)-1(ze)-1(l)1(nik;)-412(p)1(isarz)-413(m\\363)28(wi\\252,)-412(c)-1(o)-412(p)-27(o)-412(to,)-412(ab)28(y)-412(z)-1(w)28(o\\252a\\242)]TJ -27.879 -13.549 Td[(ze)-1(b)1(rani)1(e)-334(i)-333(uc)27(h)29(w)27(ali)1(\\242)-334(s)-1(zk)28(o\\252\\246)-334(w)-334(Li)1(p)-28(cac)27(h)-333(i)-333(M)1(o)-28(dli)1(c)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(z)-1(w)28(o\\252uj)1(\\241:)-333(prze)-1(ciek)-333(nie)-333(uc)27(h)29(w)27(ali)1(m)-1(!)-333({)-333(z)-1(a\\261mia\\252)-334(si\\246)-334(K\\252\\241b)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(y)1(\\252)-1(b)29(y)-333(z)-1(araz.)-333(z)-334(tego)-334(n)1(o)28(w)-1(y)-333(p)-27(o)-28(d)1(ate)-1(k)-333(z)-334(morga,)-333(j)1(ak)-334(w)-333(Do\\252ac)27(h)1(.)]TJ 0 -13.549 Td[({)-382(P)28(e)-1(wn)1(ie)-1(;)-382(ale)-382(s)-1(k)28(oro)-382(nacze)-1(ln)1(ik)-382(pr)1(z)-1(yk)56(a\\273e)-1(,)-382(to)-382(us\\252uc)27(h)1(a\\242)-383(m)27(u)1(s)-1(i)1(m)27(y)-382({)-383(zau)28(w)28(a\\273)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(so\\252)-1(t)28(y)1(s)-1(.)]TJ 27.879 -13.549 Td[({)-370(C\\363\\273)-370(on)-370(tu)-369(ma)-370(nam)-370(do)-370(r)1(oz)-1(k)56(azyw)27(an)1(ia?)-370(Niec)27(h)-369(s)-1(e)-370(s)-1(t)1(ra\\273)-1(n)1(ik)28(om)-370(pr)1(z)-1(yk)56(azuj)1(e)-1(,)]TJ -27.879 -13.549 Td[(b)28(y)-333(w)28(e)-1(sp)-28(\\363\\252)-333(z)-1(e)-333(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(am)-1(i)-333(n)1(ie)-334(kr)1(adli.)]TJ 27.879 -13.55 Td[({)-270(Zuc)28(h)28(w)27(al)1(e)-271(se)-271(p)-27(o)-28(cz)-1(y)1(nasz)-1(,)-270(G)1(rz)-1(ela!)-270({)-270(ostrzega\\252)-271(so\\252t)28(ys.)-270({)-270(Ju\\273)-270(ni)1(e)-1(j)1(e)-1(d)1(nego)-270(oz)-1(\\363r)]TJ -27.879 -13.549 Td[(dal)1(e)-1(j)-333(p)-27(o)28(wi\\363)-28(d\\252,)-333(n)1(i\\271)-1(l)1(i)-334(m)28(u)-333(si\\246)-334(c)27(h)1(c)-1(i)1(a\\252)-1(o.)]TJ 27.879 -13.549 Td[({)-259(M\\363)28(wi\\252)-260(b)-27(\\246d\\246,)-260(b)-27(o)-259(nasz)-1(e)-259(pra)28(w)28(o)-260(znam)-259(i)-259(nac)-1(zalst)28(w)27(a)-259(s)-1(i)1(\\246)-260(ni)1(e)-260(b)-28(o)-55(jam,)-259(jeno)-259(w)28(am)-1(,)]TJ -27.879 -13.549 Td[(cie)-1(mn)28(ym)-333(baran)1(om,)-334(\\252y)1(dy)-333(dy)1(go)-28(c)-1(z\\241)-333(prze)-1(d)-333(b)-27(ele)-334(\\252ac)27(h)1(m)27(yt)1(kiem)-334(z)-334(u)1(rz)-1(\\246du)1(.)]TJ 27.879 -13.549 Td[(W)84(rz)-1(esz)-1(cz)-1(a\\252,)-371(\\273e)-372(stropi)1(li)-371(s)-1(i)1(\\246)-372(tak)56(\\241)-371(z)-1(u)1(c)27(h)28(w)28(a\\252o\\261)-1(ci\\241)-371(i)-371(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-371(sk)28(\\363ra)-371(\\261)-1(cierp)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(ze)-334(s)-1(tr)1(ac)27(h)28(u)1(.)-333(K\\252\\241b)-333(p)-28(o)-27(dj)1(\\241\\252)-1(:)]TJ 27.879 -13.549 Td[({)-264(P)28(o)-263(pra)28(wdzie,)-264(tak)56(a)-264(sz)-1(k)28(o\\252a)-264(n)1(am)-264(na)-264(n)1(ic)-1(.)1(..)-264(M)1(\\363)-56(j)-263(Jadam)-264(ca\\252)-1(e)-264(d)1(w)27(a)-264(r)1(oki)-264(c)28(ho)-28(d)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(do)-326(W)84(oli,)-326(n)1(aucz)-1(y)1(c)-1(ielo)28(wi)-326(do)28(w)28(oz)-1(i\\252em)-1(,)-326(p)-27(o)-326(k)28(orcz)-1(y)1(ku)-326(ziem)-1(n)1(iak)28(\\363)28(w)-1(,)-326(k)28(ob)1(ieta)-326(te)-1(\\273)-326(m)-1(as\\252a)]TJ 0 -13.549 Td[(i)-449(j)1(a)-56(j)1(k)28(\\363)28(w)-449(da\\252a)-449(m)28(u)-449(n)1(a)-449(\\261w)-1(i)1(\\246)-1(ta,)-448(a)-449(z)-449(te)-1(go)-448(w)-1(y)1(s)-1(z\\252o,)-449(co)-449(na)-448(ks)-1(i)1(\\241\\273)-1(ce)-449(do)-449(n)1(ab)-28(o\\273e)-1(\\253)1(s)-1(t)28(w)28(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(zyta\\242)-451(ni)1(e)-452(p)-27(otr)1(a\\014,)-451(za\\261)-451(p)-28(o)-450(ruskiem)27(u)-450(te\\273)-452(an)1(i)-451(me,)-451(ani)-450(b)-27(e)-1(..)1(.)-451(M\\252o)-28(d)1(s)-1(ze)-451(c)-1(o)-451(si\\246)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-465(zim)-1(\\246)-465(u)1(c)-1(zy\\252y)-465(u)-464(Ro)-28(c)28(ha,)-465(t)1(o)-465(na)28(w)28(e)-1(t)-464(pisane)-465(rozbi)1(e)-1(r\\241)-464(i)-465(n)1(a)-465(pa\\253)1(s)-1(ki)1(c)27(h)-464(ksi\\241\\273)-1(k)56(ac)27(h)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)-1(zyta\\242)-334(p)-27(oredz\\241...)]TJ 27.879 -13.549 Td[({)-384(T)83(o)-383(R)-1(o)-27(c)27(ha)-383(ugo)-28(d)1(z)-1(i)1(\\242)-385(i)-383(ni)1(e)-1(c)27(h)29(b)28(y)-384(d)1(alej)-384(n)1(aucz)-1(a\\252;)-383(dzie)-1(ciom)-384(sz)-1(k)28(o\\252a)-384(b)1(arze)-1(j)-383(jes)-1(t)]TJ -27.879 -13.549 Td[(p)-27(otrze)-1(b)1(na)-333(ni\\271li)-333(bu)1(t)28(y)-333({)-334(wtr)1(\\241c)-1(i\\252)-333(z)-1(n)1(\\363)28(w)-334(Gr)1(z)-1(ela.)]TJ 27.879 -13.549 Td[(Na)-333(to)-334(so\\252t)28(ys)-334(ws)-1(u)1(n\\241\\252)-333(s)-1(i)1(\\246)-334(w)-334(gr)1(om)-1(ad)1(\\246)-334(i)-333(z)-1(acz\\241\\252)-334(m\\363)28(w)-1(i\\242)-333(p)-28(\\363\\252g\\252ose)-1(m:)]TJ 0 -13.549 Td[({)-381(Ro)-28(c)27(h)1(o)-381(b)28(y\\252b)28(y)-380(na)-56(j)1(lepsz)-1(y)84(,)-381(to)-381(wiem)-1(..)1(.)-381(moic)27(h)-380(c)27(h\\252op)1(ak)28(\\363)27(w)-381(wyu)1(c)-1(zy\\252...)-381(al)1(e)-382(n)1(ie)]TJ -27.879 -13.55 Td[(mo\\273)-1(n)1(a.)-246(Ur)1(z)-1(\\241d)-245(m)28(usia\\252)-246(j)1(u\\273)-246(co\\261)-246(pr)1(z)-1(ew)27(\\241c)28(ha\\242)-246(i)-245(ma)-246(n)1(a)-246(n)1(iego)-246(ok)28(o..)1(.)-246(S)1(tarsz)-1(y)-245(me)-246(s)-1(p)-27(otk)56(a\\252)]TJ 0 -13.549 Td[(w)-296(k)55(an)1(c)-1(elari)1(i)-296(i)-296(s)-1(i)1(e)-1(ln)1(ie)-297(wyp)29(yt)28(yw)27(a\\252)-296(o)-296(ni)1(e)-1(go..)1(.)-296(Nie)-297(r)1(z)-1(ek\\252e)-1(m)-296(m)27(u)-295(w)-1(i)1(e)-1(la,)-296(\\273e)-297(ze\\271)-1(li)1(\\252)-297(si\\246)-297(n)1(a)]TJ\nET\nendstream\nendobj\n1775 0 obj <<\n/Type /Page\n/Contents 1776 0 R\n/Resources 1774 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1774 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1779 0 obj <<\n/Length 9289      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(556)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(mnie)-312(i)-311(j)1(\\241\\252)-312(wpi)1(e)-1(ra\\242,)-311(jak)28(o)-311(on)-311(dob)1(rze)-312(w)-1(i)1(e)-1(,)-311(c)-1(o)-311(Ro)-28(c)27(h)1(o)-312(d)1(z)-1(i)1(e)-1(ci)-311(naucza)-312(i)-311(ksi\\241\\273)-1(k)1(i)-312(p)-27(olskie)]TJ 0 -13.549 Td[(a)-333(gaz)-1(et)28(y)-333(roz)-1(d)1(a)-56(j)1(e)-334(lu)1(dziom)-1(.)1(..)-333(T)83(rza)-334(go)-333(ostrze)-1(c,)-333(b)28(y)-333(s)-1(i)1(\\246)-334(m)-1(i)1(a\\252)-334(n)1(a)-334(b)1(ac)-1(zno\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-423(Z\\252a)-423(s)-1(pr)1(a)28(w)27(a!)-423(Dob)1(ry)-423(cz)-1(\\252o)28(wie)-1(k)1(,)-423(p)-28(ob)-27(o\\273n)28(y)83(,)-423(al)1(e)-424(p)1(rz)-1(ez)-424(n)1(iego)-424(mo\\273e)-424(spa\\261\\242)-424(na)]TJ -27.879 -13.549 Td[(wie\\261)-334(bieda.)1(..)-333(trza)-334(cos)-1(i)1(k)-333(z)-1(arad)1(z)-1(i)1(\\242)-1(..)1(.)-333(a)-334(p)1(r\\246dk)28(o)-333({)-334(wyk\\252ad)1(a\\252)-334(stary)-333(P)1(\\252os)-1(zk)55(a.)]TJ 27.879 -13.549 Td[({)-333(Ze)-334(s)-1(tr)1(ac)27(h)28(u)-333(t)1(o)-334(b)28(y)1(\\261)-1(cie)-334(go)-333(i)-333(w)-1(y)1(dali)1(...)-333(c)-1(o?)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(j)1(adliwie)-333(Grze)-1(l)1(a.)]TJ 0 -13.55 Td[({)-474(Jakb)28(y)-473(nar\\363)-27(d)-474(bu)1(n)28(to)28(w)28(a\\252)-475(p)1(rze)-1(ciw)-474(urz\\246dom,)-474(a)-474(na)-474(sz)-1(k)28(o)-28(d)1(\\246)-475(wsz)-1(ystki)1(m)-1(,)-474(to)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(y)-332(b)29(y)-332(zrob)1(i\\252)-332(to)-331(s)-1(amo.)-332(M)1(\\252o)-28(dy\\261,)-331(ale)-332(ja)-331(dobr)1(z)-1(e)-332(b)1(ac)-1(z\\246)-1(,)-331(co)-332(si\\246)-332(dzia\\252o)-332(w)-332(t\\246)-332(w)28(o)-56(j)1(n\\246)]TJ 0 -13.549 Td[(pan)1(\\363)28(w)-1(,)-333(j)1(ak)-333(z)-1(a)-333(b)-27(e)-1(le)-334(co)-333(c)27(h\\252op)-27(\\363)28(w)-334(kr)1(a)-56(j)1(ali)-333(batami.)-333(Nie)-334(n)1(as)-1(za)-333(to)-334(spr)1(a)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-445(W)83(\\363)-55(jtem)-446(c)27(h)1(c)-1(ec)-1(i)1(e)-446(z)-1(osta\\242,)-446(a)-445(g\\252up)1(i\\261c)-1(ie)-445(kiej)-445(bu)1(t)-446(d)1(z)-1(i)1(ura)28(wy!)-445({)-445(dorzuci\\252)-445(m)27(u)]TJ -27.879 -13.549 Td[(Gr)1(z)-1(ela.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(erw)28(ali,)-298(b)-27(o)-299(Ro)-28(c)28(ho)-299(wysze)-1(d)1(\\252)-299(z)-299(izb)28(y)83(,)-298(p)-27(o)28(w)-1(i)1(\\363)-28(d\\252)-298(o)-28(c)-1(zyma)-299(p)-27(o)-299(l)1(ud)1(z)-1(iac)28(h,)-298(pr)1(z)-1(e\\273)-1(e-)]TJ -27.879 -13.55 Td[(gna\\252)-333(si\\246)-334(i)-333(z)-1(a)28(w)28(o\\252a\\252:)]TJ 27.879 -13.549 Td[({)-333(P)28(ora)-333(ju)1(\\273)-1(!)-333(c)28(ho)-28(d)1(\\271)-1(m)28(y)-333(w)-334(imi\\246)-334(Bo\\273)-1(e!)]TJ 0 -13.549 Td[(Pr)1(z)-1(o)-27(dem)-337(r)1(usz)-1(y\\252,)-335(a)-336(z)-1(a)-335(nim)-336(c)28(h\\252op)28(y)-336(wyw)28(alil)1(i)-336(si\\246)-336(na)-336(\\261ro)-28(d)1(e)-1(k)-335(drogi)1(,)-336(za\\261)-337(z)-336(t)28(y\\252u)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\246\\252o)-334(n)1(iec)-1(o)-333(k)28(obiet)-333(i)-333(dzie)-1(ci.)]TJ 27.879 -13.549 Td[(Sk)1(w)27(ar)-270(te\\273)-271(j)1(u\\273)-271(p)1(rze)-1(sz)-1(ed\\252,)-270(p)1(rze)-1(d)1(z)-1(w)28(anial)1(i)-271(w\\252a\\261nie)-270(na)-270(niesz)-1(p)-27(\\363r,)-270(s\\252o\\253ce)-271(pr)1(z)-1(eta-)]TJ -27.879 -13.55 Td[(cz)-1(a\\252o)-233(s)-1(i)1(\\246)-234(ku)-233(lasom,)-233(nieb)-28(o)-233(wisia\\252o)-233(p)-28(ogo)-28(d)1(ne)-233(i)-233(jasne,)-233(z)-1(a\\261)-234(skra)-55(je)-233(b)28(y\\252y)-233(tak)-233(pr)1(z)-1(ejr)1(z)-1(yste;)]TJ 0 -13.549 Td[(\\273e)-328(na)28(w)27(et)-327(dalsz)-1(e)-328(wsie)-328(wynosi\\252y)-327(s)-1(i\\246)-327(prze)-1(d)-327(o)-27(c)-1(zyma)-328(kieb)28(y)-327(na)-327(d\\252on)1(i,)-327(a)-328(w)-328(ziele)-1(n)1(i)-327(b)-28(o-)]TJ 0 -13.549 Td[(r\\363)28(w)-261(okiem)-262(m\\363g\\252)-261(roze)-1(zna\\242)-261(\\273)-1(\\363\\252te)-261(pn)1(ie)-261(s)-1(ose)-1(n)1(,)-261(bi)1(a\\252)-1(e)-261(gz\\252)-1(a)-261(b)1(rz\\363z)-1(ek)-261(i)-261(sz)-1(ar)1(e)-1(,)-261(wielgac)27(h)1(ne)]TJ 0 -13.549 Td[(d\\246b)28(y)84(.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-431(z)-1(osta\\252y)-432(z)-1(a)-432(m\\252yn)1(e)-1(m;)-432(a)-432(c)27(h)1(\\252opi)-432(szli)-432(w)28(olno)-432(p)-27(o)-28(d)-431(w)-1(zg\\363rze)-1(.)-431(Kur)1(z)-433(si\\246)]TJ -27.879 -13.55 Td[(wz)-1(b)1(i\\252)-333(z)-1(a)-333(nimi,)-333(\\273e)-334(jeno)-333(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(z)-1(ab)1(ie)-1(l)1(a\\252)-1(a)-333(j)1(ak)55(a\\261)-334(k)56(ap)-27(ota.)]TJ 27.879 -13.549 Td[(Szli)-278(w)-278(milcze)-1(n)1(iu.)-278(Tw)28(arze)-279(b)28(y)1(\\252y)-278(s)-1(u)1(ro)28(w)27(e,)-278(min)28(y)-277(z)-1(ad)1(z)-1(ierzyste)-1(,)-277(a)-278(o)-28(c)-1(zy)-278(wyn)1(os)-1(i\\252y)]TJ -27.879 -13.549 Td[(si\\246)-334(har)1(do,)-333(n)1(ie)-1(u)1(s)-1(t\\246pl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-305(la)-305(o)-27(c)27(hot)28(y)-304(bil)1(i)-305(n)1(ie)-1(k)1(ie)-1(d)1(y)-305(o)-304(z)-1(iem)-305(d\\246b)-27(o)27(wymi)-305(l)1(agam)-1(i)1(,)-305(a)-305(cz)-1(asem)-305(to)-305(i)-305(k)1(to\\261)-305(w)]TJ -27.879 -13.549 Td[(gar\\261c)-1(i)1(e)-334(pl)1(u\\252)-333(i)-334(p)1(r\\246\\273)-1(y\\252)-333(si\\246)-334(kiejb)29(y)-333(do)-333(s)-1(k)28(oku)1(.)]TJ 27.879 -13.55 Td[(W)-418(go)-28(dn)29(ym)-419(p)-27(orz\\241dku)-418(ci\\241)-28(gn)1(\\246)-1(Ii)-418(jakb)29(y)-419(za)-419(p)1(ro)-28(ce)-1(sj\\241,)-418(b)-27(o)-419(j)1(e)-1(\\273e)-1(l)1(i)-419(kt)1(\\363re)-1(m)28(u)-418(wy-)]TJ -27.879 -13.549 Td[(rw)28(a\\252o)-312(s)-1(i)1(\\246)-313(jak)1(ie)-313(s\\252o)28(w)27(o,)-312(wn)1(e)-1(t)-312(\\261c)-1(i)1(c)27(hn)1(\\241\\252)-312(p)-28(o)-28(d)-311(k)56(arc\\241c)-1(ymi)-312(sp)-28(o)-55(jr)1(z)-1(eniami:)-312(n)1(ie)-312(p)-28(or)1(a)-312(b)28(y\\252a)]TJ 0 -13.549 Td[(na)-333(ra)-55(jco)28(w)27(an)1(ie)-1(,)-333(k)56(a\\273den)-333(s)-1(i\\246)-333(s)-1(tu)1(la\\252)-333(w)-334(sobie)-334(i)-333(k)1(rz)-1(ep\\241)-333(wz)-1(b)1(iera\\252.)]TJ 27.879 -13.549 Td[(Na)-402(k)28(op)-27(cac)27(h)-401(gran)1(ic)-1(zn)28(yc)28(h)-402(p)-27(o)-28(d)-401(kr)1(z)-1(y\\273em)-402(przysie)-1(d)1(li)-401(\\271)-1(d)1(z)-1(i)1(e)-1(bk)28(o)-401(o)-28(d)1(p)-28(o)-28(cz\\241\\242)-1(,)-401(ale)]TJ -27.879 -13.549 Td[(i)-365(te)-1(r)1(az)-367(n)1(ikt)-365(s)-1(i)1(\\246)-367(n)1(ie)-366(o)-28(d)1(e)-1(zw)27(a\\252;)-365(b\\252\\241dzili)-365(jeno)-365(c)-1(i)1(c)27(h)28(ymi)-365(o)-28(c)-1(zyma)-366(p)-27(o)-366(\\261w)-1(i)1(e)-1(cie.)-366(Lip)-27(ec)27(kie)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)28(y)-257(ledwie)-258(wida\\242)-258(b)28(y\\252o)-257(z)-1(za)-258(sad\\363)28(w,)-258(z\\252)-1(ot)1(a)-258(ban)1(ia)-258(n)1(a)-258(k)28(o\\261)-1(cielnej)-257(w)-1(i)1(e)-1(\\273y)-258(b)1(\\252ys)-1(zc)-1(za\\252a)]TJ 0 -13.549 Td[(w)-235(s)-1(\\252o\\253)1(c)-1(u)1(,)-235(p)-28(ol)1(a)-236(si\\246)-235(z)-1(ieleni\\252y)-235(j)1(ak)-235(okiem)-235(s)-1(i\\246gn\\241\\242,)-235(na)-235(p)1(as)-1(t)28(wisk)55(ac)28(h)-235(p)-27(o)-28(d)-235(l)1(as)-1(em)-236(gme)-1(r)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-453(rozs)-1(y)1(pane)-452(s)-1(tad)1(a,)-453(d)1(ym)-453(n)1(ie)-1(b)1(ies)-1(k)56(\\241)-452(s)-1(tr)1(ug\\241)-452(w)-1(y)1(nosi\\252)-453(si\\246)-453(p)-27(o)-28(d)-452(b)-27(orem)-453(z)-453(jak)1(ie)-1(go\\261)]TJ 0 -13.549 Td[(ogni)1(s)-1(k)56(a)-406(i)-406(\\261piew)28(ania)-406(d)1(z)-1(ieci\\246)-1(ce)-407(d)1(z)-1(w)28(oni)1(\\252y)83(,)-406(a)-406(gr)1(anie)-406(fu)1(jar)1(e)-1(k)-406(r)1(oz)-1(n)1(os)-1(i\\252o)-406(si\\246)-406(p)-28(o)-406(ca\\252e)-1(j)]TJ 0 -13.549 Td[(zie)-1(mi)-331(stro)-55(jn)1(e)-1(j)-330(w)28(e)-332(zwies)-1(n)1(\\246)-1(,)-330(w)-331(rado\\261\\242,)-331(w)-331(d)1(z)-1(iwn)28(y)-330(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-331(\\273e)-331(niejedn)1(e)-1(m)28(u)-330(w)27(ez)-1(b)1(ra\\252o)]TJ 0 -13.549 Td[(se)-1(rce)-483(c)-1(ic)28(h)28(ym)-483(\\273)-1(al)1(e)-1(m)-483(i)-483(oba)28(w)28(\\241,)-483(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-482(w)27(es)-1(tc)28(hn)1(\\241\\252)-484(ci\\246\\273)-1(k)28(o)-483(i)-482(trw)28(o\\273)-1(n)1(ie)-484(ze)-1(r)1(k)56(a\\252)-484(n)1(a)]TJ 0 -13.55 Td[(P)28(o)-28(d)1(les)-1(ie...)]TJ 27.879 -13.549 Td[({)-326(Cho)-28(d)1(\\271)-1(m)28(y)83(,)-326(n)1(ie)-327(o)-326(p)1(le)-1(wy)-326(p)1(rze)-1(cie)-1(\\273)-326(idzie!)-326({)-326(przyn)1(agla\\252)-326(R)-1(o)-27(c)27(ho,)-326(d)1(obr)1(z)-1(e)-326(m)-1(iar)1(-)]TJ -27.879 -13.549 Td[(ku)1(j\\241c,)-333(\\273)-1(e)-334(si\\246)-334(o)-27(c)-1(i\\241)-28(ga\\242)-333(p)-28(o)-27(c)-1(zyna)-55(j\\241.)]TJ 27.879 -13.549 Td[(Sk)1(r\\246c)-1(il)1(i)-405(pr)1(os)-1(to)-405(d)1(o)-405(z)-1(ab)1(udo)28(w)28(a\\253)-405(f)1(olw)27(ar)1(c)-1(zn)28(yc)28(h,)-405(star\\241)-405(zac)27(h)28(w)28(as)-1(zc)-1(zon\\241)-405(d)1(rog\\241,)]TJ -27.879 -13.549 Td[(\\273e)-285(k)1(ie)-1(j)1(b)28(y)-284(k)1(w)-1(i)1(e)-1(tn)1(a)-284(ws)-1(t\\246ga)-284(le\\273)-1(a\\252a)-283(w)-1(skro\\261)-284(zb)-28(\\363\\273)-284(zie)-1(l)1(on)28(yc)27(h)1(;)-284(n)1(\\246)-1(d)1(z)-1(n)1(e)-285(\\273yta)-283(niebiesz)-1(cz)-1(a-)]TJ 0 -13.55 Td[(\\252y)-289(o)-27(d)-289(mo)-28(dr)1(ak)28(\\363)28(w)-289(s)-1(p)-27(\\363\\271)-1(n)1(ione)-289(o)28(ws)-1(y)-288(\\273)-1(\\363\\252ci\\252y)-289(si\\246)-289(c)-1(a\\252e)-289(o)-28(d)-288(ognic)28(h,)-288(psz)-1(enice)-289(w)-1(y)1(m)-1(i\\246k\\252e)-289(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(palon)1(e)-298(cz)-1(erwieni)1(a\\252)-1(y)-296(o)-28(d)-296(m)-1(ak)28(\\363)28(w,)-297(za\\261)-297(z)-1(iemniaki)-296(ledwie)-297(c)-1(o)-296(w)-1(sc)27(h)1(o)-28(dzi\\252y)84(.)-297(Op)1(usz)-1(-)]TJ\nET\nendstream\nendobj\n1778 0 obj <<\n/Type /Page\n/Contents 1779 0 R\n/Resources 1777 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1777 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1782 0 obj <<\n/Length 8975      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(557)]TJ -358.232 -35.866 Td[(cz)-1(enie)-333(b)28(y\\252o)-334(wid)1(ne)-333(na)-333(k)55(a\\273dy)1(m)-334(kr)1(oku)-333(i)-333(niedb)1(alst)27(w)28(o.)]TJ 27.879 -13.549 Td[({)-333(Prosto)-333(\\273)-1(y)1(dos)-1(k)56(a)-333(gos)-1(p)-27(o)-28(d)1(ark)56(a,)-333(ja\\273e)-334(pat)1(rz)-1(e\\242)-334(b)-27(oli!)-333({)-333(m)-1(r)1(ukn)1(\\241\\252)-334(k)1(t\\363ry\\261.)]TJ 0 -13.549 Td[({)-333(Na)-56(j)1(gors)-1(zy)-333(par)1(ob)-28(ek,)-333(a)-333(jes)-1(zc)-1(ze)-334(lepiej)-333(w)-333(groncie)-334(r)1(obi!)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(dr)1(ugi,)-333(c)28(ho)-28(\\242b)28(y)-333(i)-333(dziedzic)-1(,)-333(a)-333(na)28(w)28(e)-1(t)-333(tej)-333(\\261)-1(wi\\246te)-1(j)-332(z)-1(iemi)-334(n)1(ie)-334(p)-27(osz)-1(an)28(u)1(je!)]TJ 0 -13.549 Td[({)-333(Doi)-333(j\\241)-333(i)-333(doi)-333(kiej)-333(g\\252o)-28(d)1(n\\241)-333(kro)28(w)28(\\246)-1(,)-333(to)-333(i)-333(nie)-333(dziw)27(ota,)-333(co)-334(zja\\252o)28(wia\\252a.)]TJ 0 -13.55 Td[(Wyszli)-439(n)1(a)-439(ugor)1(y)83(.)-438(Ok)28(op)-28(cone)-439(i)-438(z)-1(r)1(ujn)1(o)28(w)27(an)1(e)-440(zr\\246b)28(y)-439(b)1(ud)1(ynk)28(\\363)28(w)-439(wznosi\\252y)-439(si\\246)]TJ -27.879 -13.549 Td[(ju)1(\\273)-345(n)1(iedalek)28(o,)-344(spalon)29(y)-344(s)-1(ad)-343(p)-28(o)-27(c)-1(ze)-1(r)1(nia\\252ymi)-344(sz)-1(k)1(ie)-1(l)1(e)-1(tami)-344(d)1(rze)-1(w,)-344(wyci\\241)-28(ga)-56(j)1(\\241c)-1(y)1(c)27(h)-344(si\\246)]TJ 0 -13.549 Td[(b)-27(ole)-1(\\261ni)1(e)-282(k)1(u)-281(n)1(iebu,)-280(otacz)-1(a\\252)-281(cz)-1(w)28(oraki)-280(dw)28(orskie)-281(o)-281(zapad)1(\\252yc)27(h)-280(dac)28(hac)27(h)-280(i)-280(s)-1(tercz)-1(\\241cyc)27(h)]TJ 0 -13.549 Td[(k)28(ominac)28(h,)-368(z)-1(a\\261)-369(p)-27(o)-28(d)-368(\\261)-1(cianami,)-368(w)-369(c)27(h)28(u)1(dyc)28(h)-369(cieniac)28(h)-369(p)-27(omart)28(wia\\252yc)27(h)-368(ga\\252\\246z)-1(i,)-368(wida\\242)]TJ 0 -13.549 Td[(b)28(y\\252o)-392(gromad\\246)-392(lud)1(z)-1(i.)-392(M)1(ie)-1(mcy)-392(to)-393(b)29(yli.)-392(An)28(ta\\252)-392(pi)1(w)27(a)-392(s)-1(to)-55(ja\\252)-392(na)-392(k)56(am)-1(i)1(e)-1(n)1(iac)27(h)1(,)-392(ktos)-1(i)1(k)]TJ 0 -13.549 Td[(w)-413(p)1(rogu)-412(przygr)1(yw)27(a\\252)-412(na)-413(\\015)1(e)-1(ciku)1(,)-413(a)-412(oni)-412(s)-1(iedzieli,)-412(p)-28(or)1(oz)-1(w)28(alani)-412(na)-412(\\252a)27(wk)56(ac)27(h)-412(i)-412(tra-)]TJ 0 -13.55 Td[(wie,)-365(w)-366(k)28(osz)-1(u)1(lac)27(h)-364(jeno,)-365(z)-365(fa)-55(jami)-365(w)-365(z)-1(\\246bac)27(h)1(,)-365(i)-365(p)1(ili)-365(z)-365(glini)1(an)28(yc)27(h)-364(garn)1(c)-1(zk)28(\\363)27(w;)-365(d)1(z)-1(ieci)]TJ 0 -13.549 Td[(bar)1(as)-1(zk)28(o)28(w)27(a\\252y)-333(k)28(ole)-334(d)1(om)27(u)-333(a)-333(p)-27(ob)-28(ok)-333(p)1(as)-1(\\252y)-333(s)-1(i)1(\\246)-334(t\\246gie)-334(kr)1(o)27(wy)-333(i)-333(k)28(oni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Mu)1(s)-1(i)1(e)-1(li)-326(do)-55(jrze\\242)-328(i)1(d\\241cyc)27(h)1(,)-327(gdy)1(\\273)-328(j)1(\\246)-1(l)1(i)-327(si\\246)-327(z)-1(r)1(yw)27(a\\242,)-327(p)1(rzys\\252)-1(an)1(ia\\242)-327(o)-28(cz)-1(y)-326(gar\\261c)-1(iami,)]TJ -27.879 -13.549 Td[(a)-364(patr)1(z)-1(e\\242)-365(ku)-364(n)1(im)-365(i)-364(cos)-1(i)1(k)-364(w)-1(r)1(z)-1(es)-1(zc)-1(ze\\242)-1(,)-364(ale)-364(jaki\\261)-364(s)-1(tar)1(y)-364(Szw)27(ab)-364(zas)-1(zw)28(argota\\252)-364(os)-1(tr)1(o,)]TJ 0 -13.549 Td[(\\273e)-352(wnet)-351(pr)1(z)-1(ysiedli)-350(m)-1(a)-351(miejsc)-1(a)-351(sp)-28(ok)28(o)-55(jn)1(ie,)-351(p)-28(o)-27(c)-1(i\\241)-27(ga)-56(j)1(\\241c)-352(z)-351(ku\\015)1(\\363)27(w;)-351(\\015)1(e)-1(cik)-351(zagwizda\\252)]TJ 0 -13.55 Td[(n)28(u)1(t\\241)-295(j)1(e)-1(sz)-1(cze)-295(s)-1(\\252o)-28(d)1(s)-1(z\\241,)-294(s)-1(k)28(o)28(wron)1(ki)-294(dzw)27(on)1(i\\252y)-294(pr)1(a)27(wie)-295(n)1(ad)-294(g\\252o)28(w)27(ami,)-294(a)-294(z)-1(e)-295(zb)-27(\\363\\273)-295(s)-1(y)1(pa\\252o)]TJ 0 -13.549 Td[(si\\246)-351(g\\246)-1(ste)-1(,)-350(ni)1(e)-352(mil)1(kn\\241ce)-351(s)-1(tr)1(z)-1(yk)56(an)1(ie)-351(\\261)-1(wiersz)-1(cz)-1(\\363)28(w)-351(i)-350(k)56(a)-56(j\\261)-351(n)1(iek)55(a)-55(j\\261)-351(g\\252os)-351(pr)1(z)-1(epi\\363r)1(ki)-351(si\\246)]TJ 0 -13.549 Td[(wyry)1(w)27(a\\252.)]TJ 27.879 -13.549 Td[(A)-282(c)27(h)1(o)-28(c)-1(i)1(a\\273)-283(s)-1(p)1(iec)-1(zona)-282(z)-1(i)1(e)-1(mia)-282(du)1(dni)1(a\\252a)-283(p)-27(o)-28(d)-282(c)28(h\\252opami,)-282(a)-282(p)-28(o)-27(dk)28(\\363)28(wki)-282(s)-1(zc)-1(z\\246k)55(a\\252y)]TJ -27.879 -13.549 Td[(o)-357(k)56(am)-1(i)1(e)-1(n)1(ie)-358(coraz)-357(bl)1(i\\273)-1(ej,)-356(Nie)-1(mcy)-357(s)-1(i)1(\\246)-358(an)1(i)-357(p)-28(or)1(usz)-1(y)1(li,)-357(j)1(akb)28(y)-357(n)1(ic)-357(nie)-357(s)-1(\\252ysz\\241c)-1(,)-357(a)-357(j)1(e)-1(n)1(o)]TJ 0 -13.55 Td[(lu)1(bu)1(j\\241c)-334(si\\246)-334(p)1(iws)-1(ki)1(e)-1(m)-334(i)-333(t\\241)-333(s\\252o)-28(dk)28(o\\261c)-1(i)1(\\241,)-334(j)1(ak)56(\\241)-334(tc)28(hn)1(\\246)-1(\\252o)-333(p)-28(o)28(wietrze)-334(pr)1(z)-1(edwiec)-1(ze)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[(A)-395(c)27(h\\252op)28(y)-395(j)1(u\\273)-396(d)1(o)-28(c)27(h)1(o)-28(dzi\\252y)83(,)-395(coraz)-396(ci\\246\\273)-1(ej)-395(s)-1(zli)-395(jeno)-395(i)-396(w)28(oln)1(ie)-1(j)1(,)-395(p)-28(o)28(ws)-1(tr)1(z)-1(y)1(m)27(uj)1(\\241c)]TJ -27.879 -13.549 Td[(sapani)1(a)-267(i)-267(ki)1(je)-267(z)-1(acisk)55(a)-55(j\\241c;)-267(se)-1(r)1(c)-1(a)-267(si\\246)-267(z)-1(at)1(\\252)-1(u)1(k\\252y)84(,)-267(gor\\241cy)-267(d)1(ygot)-267(w)28(arem)-268(ob)1(lew)27(a\\252)-267(kr)1(z)-1(y\\273e,)]TJ 0 -13.549 Td[(gard)1(z)-1(i)1(e)-1(le)-266(zas)-1(yc)28(ha\\252y)84(,)-266(ale)-266(grzbiet)28(y)-266(si\\246)-266(pr)1(\\246)-1(\\273y\\252y)-266(i)-265(\\261)-1(lepi)1(e)-267(r)1(oz)-1(gorza\\252e)-266(hard)1(o)-266(w\\273)-1(era\\252y)-265(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-331(Mi)1(e)-1(mc)-1(\\363)28(w,)-331(a)-330(z)-331(t)27(w)28(arzy)-331(k)1(ie)-1(b)29(y)-331(zas)-1(t)28(yg\\252yc)28(h)-331(b)1(i\\252a)-331(sur)1(o)27(w)28(a)-331(za)27(wzi\\246to\\261)-1(\\242)-331(i)-330(nieust\\246)-1(p)1(liw)28(a)]TJ 0 -13.55 Td[(mo)-28(c)-1(.)]TJ 27.879 -13.549 Td[({)-311(Niec)27(h)-311(b)-27(\\246dzie)-312(p)-27(o)-28(c)28(h)28(w)27(al)1(on)28(y!)-311({)-311(r)1(z)-1(ek\\252)-311(Ro)-28(c)27(h)1(o)-311(p)-28(o)-311(n)1(ie)-1(miec)27(ku)1(,)-311(p)1(rz)-1(y)1(s)-1(ta)-55(j\\241c,)-311(a)-311(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-334(p)-27(\\363\\252k)28(ole)-1(m)-333(s)-1(tan)1(\\246)-1(\\252a)-333(gromada)-333(c)-1(i)1(s)-1(n)1(\\241c)-334(s)-1(i)1(\\246)-334(i)-333(przywiera)-55(j\\241c)-334(r)1(am)-1(ion)1(ami.)]TJ 27.879 -13.549 Td[(Niem)-1(cy)-401(c)27(h\\363r)1(e)-1(m)-402(o)-27(dp)-27(o)27(wiedzieli,)-401(ni)1(e)-402(rusz)-1(a)-55(j\\241c)-402(si\\246)-402(z)-402(mie)-1(j)1(s)-1(c.)-401(Je)-1(n)1(o)-402(ten)-401(s)-1(tar)1(y)83(,)]TJ -27.879 -13.549 Td[(ze)-334(s)-1(i)1(w)27(\\241)-333(br)1(o)-28(d\\241,)-333(p)-27(o)-28(dn)1(i\\363s\\252)-334(si\\246)-334(i)-333(p)-27(oblad)1(\\252y)-333(w)27(o)-28(d)1(z)-1(i\\252)-333(o)-28(cz)-1(y)1(m)-1(a)-333(p)-27(o)-334(ci\\273bie.)]TJ 27.879 -13.55 Td[({)-333(Ze)-334(s)-1(p)1(ra)28(w)27(\\241)-333(p)1(rz)-1(y)1(s)-1(zli\\261m)27(y)-333(do)-333(w)28(as)-334({)-333(z)-1(acz)-1(\\241\\252)-333(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[({)-365(T)83(o)-365(siada)-55(jcie)-1(,)-364(gos)-1(p)-27(o)-28(dar)1(z)-1(e,)-365(z)-366(Li)1(piec)-1(,)-364(w)-1(i)1(dz\\246)-1(,)-365(j)1(e)-1(ste\\261)-1(cie)-1(,)-364(to)-365(ogadam)27(y)-364(p)-28(o)-365(s\\241-)]TJ -27.879 -13.549 Td[(sie)-1(d)1(z)-1(k)1(u!)-333(Johan)1(,)-333(F)83(r)1(yc)-1(,)-333(\\252a)28(w)27(ek)-333(dl)1(a)-334(s\\241s)-1(i)1(ad\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(spr)1(a)27(w)28(a)-333(kr\\363tk)56(a,)-333(to)-333(p)-28(ostoim)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(m)28(usi)-334(b)29(y\\242)-334(kr)1(\\363tk)55(a,)-333(k)1(ie)-1(d)1(y\\261c)-1(ie)-333(c)-1(a\\252\\241)-333(w)-1(si\\241)-333(pr)1(z)-1(ysz)-1(l)1(i!)-333({)-334(za)28(w)27(o\\252a\\252)-333(p)-28(o)-333(p)-27(olsku.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(ws)-1(zystkic)28(h)-333(z)-1(ar\\363)28(wno)-333(ob)-27(c)27(h)1(o)-28(dzi.)]TJ 0 -13.55 Td[({)-329(Je)-1(sz)-1(cz)-1(e)-329(trzy)-330(r)1(az)-1(y)-329(t)28(yle)-330(osta\\252o)-329(w)-330(dom)28(u!)-329({)-329(p)-28(o)28(wiedzia\\252)-330(z)-330(n)1(ac)-1(i)1(s)-1(ki)1(e)-1(m)-330(G)1(rz)-1(ela.)]TJ 0 -13.549 Td[({)-352(B)-1(ar)1(dzo\\261)-1(m)27(y)-352(w)28(am)-353(rad)1(z)-1(i)1(,)-353(a)-352(kiedy\\261cie)-353(pr)1(z)-1(yszli)-353(p)1(ierws)-1(i)1(,)-353(to)-352(mo\\273)-1(e)-353(p)1(iw)27(a)-352(si\\246)-353(z)]TJ -27.879 -13.549 Td[(nami)-333(nap)1(ijecie)-1(.)1(..)-333(na)-333(s)-1(\\241siedzk)55(\\241)-333(zgo)-28(d\\246...)-333(Nalejcie)-334(n)1(o,)-333(c)27(h\\252op)-27(cy)83(..)1(.)]TJ 27.879 -13.549 Td[({)-471(Wyc)28(hla)-55(j)-471(se)-472(sam)-1(!)-471(Jak)1(i)-471(s)-1(zc)-1(zo)-28(d)1(ry!)-471(Nie)-471(na)-471(p)1(iw)27(o)-471(p)1(rzy\\261)-1(l)1(im)-1(!)-470({)-472(zakr)1(z)-1(ycz)-1(eli)]TJ -27.879 -13.549 Td[(gor\\246tsi.)]TJ 27.879 -13.55 Td[(Ro)-28(c)27(h)1(o)-333(ic)27(h)-333(p)1(rzyc)-1(iszy\\252)-334(o)-27(c)-1(zyma,)-334(a)-333(stary)-333(Niem)-1(i)1(e)-1(c)-334(r)1(z)-1(ek\\252)-333(kw)27(ar)1(do:)]TJ 0 -13.549 Td[({)-333(No,)-333(to)-334(s\\252uc)28(ham)27(y)1(!)]TJ\nET\nendstream\nendobj\n1781 0 obj <<\n/Type /Page\n/Contents 1782 0 R\n/Resources 1780 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1780 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1785 0 obj <<\n/Length 8845      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(558)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Cic)27(h)1(o\\261)-1(\\242)-390(pad\\252a,)-390(sapan)1(ie)-391(a)-390(kr\\363tk)1(ie)-391(p)1(rz)-1(y)1(dec)27(h)28(y)-390(si\\246)-391(rozleg\\252y)83(,)-390(Lip)-27(c)-1(zaki)-390(b)1(arz)-1(ej)]TJ -27.879 -13.549 Td[(si\\246)-307(z)-1(w)28(ar\\252y)83(,)-306(dr)1(e)-1(sz)-1(cz)-307(pr)1(z)-1(ej\\241\\252)-307(wsz)-1(ystkic)28(h,)-306(c)-1(a)-306(Nie)-1(mc)-1(y)-306(te\\273)-308(stan)1(\\246)-1(li)-306(jak)-306(jeden,)-306(w)-1(y)1(nie\\261)-1(l)1(i)]TJ 0 -13.549 Td[(si\\246)-404(n)1(aprze)-1(ciw)-403(z)-1(w)28(art\\241)-403(ku)1(p\\241)-403(i)-403(j)1(\\246)-1(li)-402(z)-1(\\252ymi)-403(\\261)-1(l)1(e)-1(p)1(iami)-403(w)-1(p)1(iera\\242)-404(w)-403(c)27(h)1(\\252op)-28(\\363)28(w,)-403(z)-1(a)-403(b)1(ro)-28(d)1(y)]TJ 0 -13.549 Td[(targa\\242,)-333(nab)1(z)-1(d)1(ycz)-1(a\\242)-334(a)-333(c)-1(osik)-333(z)-334(cic)27(h)1(a)-333(m)-1(amrota\\242.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-227(trw)28(o\\273)-1(n)1(ie)-228(wygl\\241d)1(a\\252)-1(y)-227(okn)1(am)-1(i)1(,)-228(d)1(z)-1(iec)-1(i)-227(kry)1(\\252y)-228(si\\246)-228(p)-28(o)-227(s)-1(i)1(e)-1(n)1(iac)27(h,)-227(za\\261)-229(j)1(akie\\261)]TJ -27.879 -13.55 Td[(wielgac)27(h)1(ne,)-326(rud)1(e)-327(p)1(s)-1(y)-326(w)28(arcz)-1(a\\252y)-325(p)-28(o)-28(d)-325(\\261)-1(cian)1(a)-1(mi,)-325(a)-327(on)1(i)-326(z)-326(dobr)1(e)-327(Zd)1(ro)28(w)27(a\\261)-326(s)-1(to)-55(jali)-325(tak)]TJ 0 -13.549 Td[(nap)1(rze)-1(ciw)-314(w)-313(g\\252)-1(\\246b)-27(okiej)-313(c)-1(ic)28(ho\\261c)-1(i)-313(kieb)28(y)-313(to)-314(stado)-313(bar)1(an\\363)28(w,)-314(co)-314(j)1(u\\273)-314(\\261le)-1(p)1(iami)-314(k)1(rw)28(a)27(w)28(o)]TJ 0 -13.549 Td[(to)-28(cz)-1(y)84(,)-382(przebiera)-382(k)28(op)28(ytami,)-382(grzbiet)28(y)-383(p)1(r\\246\\273)-1(y)84(,)-382(\\252b)28(y)-383(p)1(rzygin)1(a)-383(i)-382(leda)-382(c)27(h)28(wila)-382(ru)1(nie)-383(n)1(a)]TJ 0 -13.549 Td[(si\\246)-334(rogami,)-333(a\\273)-334(Ro)-28(c)28(ho)-333(pr)1(z)-1(erw)28(a\\252)-1(:)]TJ 27.879 -13.549 Td[({)-343(Pr)1(z)-1(y\\261lim)-343(o)-28(d)-343(ca\\252e)-1(j)-343(wsi)-343(p)-28(o)-343(to)-343({)-344(m\\363)28(wi\\252)-343(p)-28(o)-343(p)-27(ols)-1(k)1(u,)-343(g\\252o\\261)-1(n)1(o)-343(i)-344(wyr)1(a\\271)-1(n)1(ie)-344({)-343(b)28(y)]TJ -27.879 -13.549 Td[(w)28(as)-334(pr)1(os)-1(i\\242)-333(p)-28(o)-333(dob)1(ro)-28(ci,)-333(\\273)-1(eb)28(y\\261cie)-334(ni)1(e)-334(ku)1(p)-28(o)28(w)28(ali)-333(P)28(o)-28(d)1(le)-1(sia...)]TJ 27.879 -13.55 Td[({)-333(T)83(ak!)-333(Ju\\261ci!)-333(P)28(o)-333(to!)-333({)-334(p)1(rz)-1(y)1(w)-1(t)1(\\363rz)-1(y)1(li)-333(z)-1(a)-333(ni)1(m)-334(trzask)55(a)-55(j\\241c)-334(k)1(ijami.)]TJ 0 -13.549 Td[(T)83(amc)-1(i)-333(zrazu)-333(os)-1(\\252u)1(pieli.)]TJ 0 -13.549 Td[({)-265(C)-1(o)-265(on)-265(gada?)-265(C)-1(zego)-266(c)28(hc)-1(e?)-266(Ni)1(e)-266(rozumie)-1(m)28(y!)-265({)-265(b)-28(e\\252k)28(otali)-265(usz)-1(om)-266(n)1(ie)-266(wierz\\241c)-1(.)]TJ 0 -13.549 Td[(Wi\\246c)-359(i)1(m)-359(Ro)-28(c)27(h)1(o)-358(raz)-359(j)1(e)-1(sz)-1(cz)-1(e)-358(i)-358(p)-28(o)-358(n)1(ie)-1(miec)27(ku)-357(p)-28(o)28(wt\\363rzy\\252,)-358(a)-358(le)-1(d)1(wie)-359(sk)28(o\\253cz)-1(y\\252,)]TJ -27.879 -13.549 Td[(Mateusz)-334(ciepn\\241\\252)-333(z)-1(ap)1(alcz)-1(ywie:)]TJ 27.879 -13.55 Td[({)-333(I)-334(b)28(y)1(\\261)-1(cie)-334(se)-1(,)-333(p)1(lud)1(ry)84(,)-333(p)-28(osz)-1(\\252y)-333(do)-333(ws)-1(zystkic)28(h)-333(diab)1(\\252\\363)28(w)-1(!)]TJ 0 -13.549 Td[(Sk)28(o)-27(c)-1(zyli)-379(naraz)-380(j)1(akb)28(y)-379(ukr)1(op)-28(em)-380(p)-28(ol)1(ani,)-379(wrz)-1(ask)-380(b)1(uc)28(hn)1(\\241\\252)-1(,)-379(krzycz)-1(eli)-379(k\\252\\246)-1(b)1(i\\241c)]TJ -27.879 -13.549 Td[(si\\246)-301(a)-301(sz)-1(w)28(argo)-28(c\\241c)-301(z)-1(a)-55(jadl)1(e)-1(,)-300(trz\\241c)27(h)1(a)-56(j\\241c)-301(k)1(ulasam)-1(i)1(,)-301(tu)1(pi\\241c)-301(ze)-301(z)-1(\\252o\\261c)-1(i\\241,)-300(\\273e)-302(j)1(u\\273)-301(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(z)-275(pi\\246\\261)-1(ciami)-275(d)1(ar\\252)-275(s)-1(i)1(\\246)-276(ku)-274(c)27(h)1(\\252op)-28(om)-275(i)-275(wygr)1(a\\273)-1(a\\252,)-275(al)1(e)-276(stali)-275(n)1(iep)-28(or)1(usz)-1(eni)-275(j)1(ak)-275(m)28(ur,)-274(pal\\241c)]TJ 0 -13.549 Td[(srogimi)-333(o)-28(c)-1(zyma,)-333(r\\246c)-1(e)-334(si\\246)-334(i)1(m)-334(jeno)-333(trz\\246s)-1(\\252y)84(,)-334(a)-333(z\\246)-1(b)28(y)-333(zac)-1(i)1(na\\252y)83(.)]TJ 27.879 -13.55 Td[({)-222(Cz)-1(y\\261c)-1(i)1(e)-223(wy)-222(ws)-1(zys)-1(cy)-222(p)-27(o)27(w)28(ario)28(w)28(ali?)-222({)-222(w)27(o\\252a\\252)-222(s)-1(tar)1(y)-222(p)-28(o)-27(dnosz)-1(\\241c)-222(r\\246c)-1(e.)-222({)-222(Wz)-1(b)1(ra-)]TJ -27.879 -13.549 Td[(ni)1(ac)-1(ie)-333(nam)-334(k)1(up)-27(o)28(w)27(a\\242)-334(ziem)-1(i\\246!)-333(Dlacz)-1(ego?)-334(Z)-333(jak)1(ie)-1(go)-333(pr)1(a)27(w)28(a?...)]TJ 27.879 -13.549 Td[(Zno)28(wu)-420(m)28(u)-420(Ro)-28(c)27(h)1(o)-420(w)-1(y)1(\\252)-1(o\\273y\\252)-420(ws)-1(zystk)28(o)-421(sp)-27(ok)28(o)-56(j)1(nie,)-420(s)-1(ze)-1(r)1(ok)28(o)-420(i)-420(jak)-420(si\\246)-421(p)1(atrzy)83(,)]TJ -27.879 -13.549 Td[(ale)-334(Ni)1(e)-1(miec)-334(p)-27(o)-28(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia)28(w)-1(szy)-334(ze)-334(z\\252o\\261)-1(ci,)-333(wrzas)-1(n)1(\\241\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(Zie)-1(mia)-333(jes)-1(t)-333(tego,)-333(kto)-333(z)-1(a)-333(ni)1(\\241)-334(p)1(\\252ac)-1(i!)]TJ 0 -13.55 Td[({)-332(T)83(ak)-332(w)-1(y)1(gl\\241da)-332(p)-27(o)-333(w)28(as)-1(zem)27(u,)-332(al)1(e)-333(p)-28(o)-332(n)1(as)-1(ze)-1(m)28(u)-332(jes)-1(t)-332(in)1(ac)-1(ze)-1(j)1(,)-332(\\273)-1(e)-333(p)-27(o)28(winn)1(a)-333(b)29(y\\242)]TJ -27.879 -13.549 Td[(tego,)-333(k)28(om)27(u)-333(j)1(e)-1(st)-334(p)-27(otrzebn\\241)-333({)-333(p)-28(o)28(wiedzia\\252)-333(uro)-27(c)-1(zy\\261)-1(cie.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(w)-333(jaki)-333(sp)-28(os\\363b,)-333(za)-334(d)1(armo)-334(mo\\273e)-1(,)-333(p)-27(o)-334(zb)-27(\\363)-56(j)1(e)-1(c)27(k)1(u?)-334({)-333(kp)1(i\\252)-333(ur\\241)-27(gliwie.)]TJ 0 -13.549 Td[({)-333(Za)-334(te)-333(dzie)-1(si\\246\\242)-334(pal)1(c)-1(\\363)28(w,)-334(d)1(u\\273a)-333(p\\252ata!)-333({)-333(o)-28(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(tak)-333(s)-1(amo)-333(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[({)-244(G)1(\\252)-1(u)1(pi)1(e)-245(gad)1(anie!)-243(C)-1(o)-243(tu)-244(b)-27(\\246dzie)-1(m)28(y)-244(cz)-1(as)-244(tr)1(ac)-1(il)1(i)-244(n)1(a)-244(\\273)-1(ar)1(t)28(y)83(,)-243(P)28(o)-28(d)1(le)-1(sie)-244(ku)1(pili)1(\\261)-1(m)28(y)83(,)]TJ -27.879 -13.55 Td[(jest)-335(nasz)-1(e)-335(i)-335(p)-27(oz)-1(ostani)1(e)-1(,)-334(a)-335(k)28(om)27(u)-334(s)-1(i\\246)-335(to)-335(n)1(ie)-336(p)-27(o)-28(d)1(oba,)-335(n)1(iec)27(h)-335(i)1(dzie)-336(z)-335(Bogiem)-336(i)-334(om)-1(ij)1(a)]TJ 0 -13.549 Td[(nas)-333(z)-334(dal)1(e)-1(k)56(a.)-333(No,)-333(c)-1(ze)-1(go)-333(jes)-1(zcz)-1(e)-334(cz)-1(ek)56(ac)-1(i)1(e)-1(?...)]TJ 27.879 -13.549 Td[({)-333(C)-1(zego?)-334(By)-333(w)27(am)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242:)-333(w)27(ara)-333(o)-28(d)-333(n)1(as)-1(zej)-333(z)-1(iemi!)-333({)-334(b)1(uc)28(hn\\241\\252)-333(Gr)1(z)-1(ela.)]TJ 0 -13.549 Td[({)-333(Wyn)1(o\\261)-1(cie)-334(si\\246)-334(sam)-1(i)1(,)-334(p)-27(\\363ki)-333(w)28(as)-334(goni)1(\\242)-334(nie)-333(z)-1(acz)-1(n)1(iem)-1(.)]TJ 0 -13.549 Td[({)-333(P)28(\\363ki)-333(jesz)-1(cz)-1(e)-334(p)1(rosim)27(y)-333(p)-27(o)-333(s)-1(\\241sie)-1(d)1(z)-1(k)1(u!)-333({)-333(w)27(o\\252ali)-333(d)1(rud)1(z)-1(y)84(.)]TJ 0 -13.549 Td[({)-337(Gr)1(oz)-1(icie.)-337(Do)-337(s\\241du)-336(p)-28(o)-28(d)1(am)27(y!)-336(Zna)-56(j)1(dziem)27(y)-337(n)1(a)-337(w)27(as)-337(s)-1(p)-27(os\\363b,)-337(n)1(ie)-337(o)-28(dsiedzie)-1(l)1(i-)]TJ -27.879 -13.55 Td[(\\261c)-1(ie)-325(jes)-1(zcz)-1(e)-325(z)-1(a)-325(l)1(as)-1(,)-325(t)1(o)-325(w)27(am)-325(pr)1(z)-1(y\\252o\\273\\241)-325(i)-325(r)1(az)-1(em)-326(o)-27(drob)1(icie)-1(!)-324({)-325(drwi\\252)-325(stary)84(,)-325(ale)-325(ju)1(\\273)-325(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\241s\\252)-334(ze)-334(z)-1(\\252o\\261c)-1(i)1(,)-334(a)-333(i)-333(dr)1(ugie)-333(le)-1(d)1(wie)-334(si\\246)-334(h)1(am)-1(o)28(w)28(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Ws)-1(zarze)-334(p)1(rz)-1(ekl\\246te!)]TJ 0 -13.549 Td[({)-318(Zb)-28(\\363)-55(je!)-318(Psy)-318(\\261)-1(mierd)1(z)-1(\\241ce)-1(!)-318({)-318(wrze)-1(sz)-1(cz)-1(eli)-318(p)-27(o)-318(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-318(wij\\241c)-318(s)-1(i\\246)-318(w)-319(k)1(upi)1(e)-319(kiej)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(deptan)1(e)-334(gadzin)28(y)84(.)]TJ 27.879 -13.55 Td[({)-314(Cic)27(h)1(o,)-314(psie)-1(kr)1(wie)-1(,)-314(k)1(ie)-1(j)-313(nar\\363)-27(d)-314(do)-314(w)27(as)-314(m)-1(\\363)28(wi!)-314({)-314(z)-1(ak)1(l\\241\\252)-314(Mateusz)-1(,)-314(jeno)-314(\\273e)-315(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-334(ul)1(\\246)-1(kl)1(i,)-333(krzyc)-1(z\\241c)-334(coraz)-334(g\\252o\\261niej)-333(i)-333(ca\\252)-1(\\241)-333(ku)1(p\\241)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ysu)28(w)28(a)-56(j)1(\\241c)-1(.)]TJ\nET\nendstream\nendobj\n1784 0 obj <<\n/Type /Page\n/Contents 1785 0 R\n/Resources 1783 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1770 0 R\n>> endobj\n1783 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1788 0 obj <<\n/Length 9192      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(559)]TJ -330.353 -35.866 Td[(Ro)-28(c)27(h)1(o,)-285(b)-27(o)-55(j\\241c)-285(s)-1(i)1(\\246)-285(bitk)1(i,)-285(ogar)1(nia\\252)-284(c)27(h\\252op)-27(\\363)28(w,)-285(p)1(rz)-1(y)1(c)-1(isza\\252)-285(i)-285(d)1(o)-285(sp)-28(ok)28(o)-55(ju)-284(n)1(ie)-1(w)28(oli\\252,)]TJ -27.879 -13.549 Td[(ale)-334(m)28(u)-333(si\\246)-334(wyryw)28(ali)-333(kr)1(z)-1(ycz\\241c)-334(jeden)-333(pr)1(z)-1(ez)-334(dr)1(ugiego:)]TJ 27.879 -13.549 Td[({)-333(Zdzie)-1(l)1(\\273)-1(e)-334(k)1(t\\363ry)-333(w)-334(\\252eb)-333(pierwsz)-1(ego)-334(z)-333(brzega.)]TJ 0 -13.549 Td[({)-333(Juc)28(h)28(y)-333(im)-334(\\271dzie)-1(b)1(k)28(o)-333(w)-1(y)1(pu\\261ci\\242)-1(!)]TJ 0 -13.549 Td[({)-333(Dam)27(y)-333(si\\246)-334(to;)-333(c)27(h)1(\\252op)-28(cy?)-333(z)-334(c)-1(a\\252ego)-334(n)1(aro)-28(d)1(u)-333(si\\246)-334(wytrz\\241s)-1(a)-55(j\\241!)]TJ 0 -13.55 Td[({)-482(I)-482(n)1(a)-482(s)-1(w)28(oim)-482(ni)1(e)-483(p)-27(os)-1(t)1(a)27(wim)28(y?)-482({)-482(w)28(o\\252)-1(al)1(i)-482(dr)1(ud)1(z)-1(y)-481(z)-1(ac)27(h)1(\\246)-1(ca)-56(j)1(\\241c)-482(s)-1(i\\246)-482(a)-482(cis)-1(n)1(\\241c)]TJ -27.879 -13.549 Td[(coraz)-490(b)1(li\\273e)-1(j)-488(i)-489(gro\\271niej,)-488(a\\273)-490(Mat)1(e)-1(u)1(s)-1(z)-489(o)-28(dgar)1(n\\241\\252)-489(Ro)-28(c)27(h)1(a)-489(na)-489(stron)1(\\246)-490(i)-489(wysun)1(\\241\\252)-490(si\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(Niem)-1(c\\363)28(w)-1(,)-333(k)1(ie)-1(j)-333(wil)1(k)-333(b\\252ysk)55(a)-55(j\\241c)-333(z)-1(\\246bami.)]TJ 27.879 -13.549 Td[({)-268(S\\252uc)28(ha)-55(jta,)-268(Mi)1(e)-1(mc)-1(y)1(!)-269({)-268(ry)1(kn\\241\\252)-268(wyc)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-269(pi)1(\\246)-1(\\261c)-1(ie.)-268({)-268(M\\363)28(w)-1(i)1(li\\261m)27(y)-268(do)-268(w)28(as)-269(p)-28(o)]TJ -27.879 -13.549 Td[(lu)1(dzku,)-265(p)-27(o)-28(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(,)-265(a)-266(wy)-266(gr)1(oz)-1(icie)-266(kr)1(e)-1(min)1(a\\252)-1(em)-266(i)-265(prze)-1(k)1(piw)28(ac)-1(i)1(e)-266(s)-1(i\\246)-266(z)-266(n)1(as)-1(!)-265(Dobr)1(a)-1(,)-265(ale)]TJ 0 -13.549 Td[(teraz)-349(zagram)28(y)-348(z)-349(w)28(am)-1(i)-348(i)1(nacz)-1(ej!)-348(Nie)-348(c)27(h)1(c)-1(eta)-348(z)-1(go)-27(dy)83(,)-347(to)-348(w)27(ama)-348(z)-1(ap)-27(o)28(w)-1(i)1(adam)27(y)-347(prze)-1(d)]TJ 0 -13.55 Td[(Bogie)-1(m)-295(i)-296(lu)1(d\\271mi,)-296(j)1(ak)-295(p)-28(o)-28(d)-295(p)1(rzysi\\246)-1(g\\241,)-295(\\273e)-296(na)-296(P)29(o)-28(dl)1(e)-1(siu)-295(nie)-295(w)-1(ysiedzicie)-1(!)-295(Pr)1(z)-1(y)1(s)-1(zlim)-296(z)]TJ 0 -13.549 Td[(p)-27(ok)28(o)-56(j)1(e)-1(m,)-336(a)-336(wy)-336(c)28(hce)-1(ta)-335(w)27(o)-55(jn)28(y!)-335(Dobr)1(a,)-336(ki)1(e)-1(j)-335(w)27(o)-55(jn)1(a,)-336(to)-336(w)28(o)-56(j)1(na!)-335(Mata)-336(za)-336(s)-1(ob)1(\\241)-336(s\\241dy)84(,)]TJ 0 -13.549 Td[(mata)-236(u)1(rz)-1(\\246dy)84(,)-235(m)-1(ata)-235(pi)1(e)-1(n)1(i\\241dze)-1(,)-235(a)-236(m)28(y)-236(j)1(e)-1(n)1(o)-236(te)-236(go\\252e)-236(p)1(i\\246\\261)-1(cie)-1(.)1(..)-236(O)1(bacz)-1(ym)28(y)83(,)-235(cz)-1(yj)1(e)-236(b)-27(\\246)-1(dzie)]TJ 0 -13.549 Td[(g\\363r\\241!)-375(A)-375(j)1(e)-1(sz)-1(cz)-1(e)-375(to)-375(w)27(am)-375(do\\252o\\273\\246)-1(,)-375(b)29(y\\261)-1(cie)-375(z)-1(apami\\246tali.)1(..)-375(jak)28(o)-375(ogie\\253)-375(i)1(m)-1(a)-375(si\\246)-376(s\\252om)27(y)84(,)]TJ 0 -13.549 Td[(ale)-339(ze\\271)-1(re)-338(i)-338(m)27(u)1(ro)28(w)27(a\\253)1(c)-1(e,)-338(a)-339(c)28(h)28(yta)-338(si\\246)-339(i)-338(zb)-28(o\\273a)-338(c)27(ho)-27(\\242)-1(b)28(y)-338(n)1(a)-339(p)1(ni)1(u...)-338(b)29(yd\\252o)-338(te)-1(\\273)-338(pad)1(a)-339(n)1(a)]TJ 0 -13.55 Td[(pa\\261ni)1(k)55(ac)28(h..)1(.)-351(z)-1(a\\261)-352(\\273aden)-351(cz)-1(\\252o)28(wie)-1(k)-351(n)1(ie)-352(u)1(c)-1(iecz)-1(e)-352(o)-27(d)-351(z)-1(\\252ej)-351(pr)1(z)-1(ygo)-27(dy)84(...)-351(Sp)1(am)-1(i)1(\\246)-1(ta)-55(jta,)-351(co)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252e)-1(m:)-333(w)27(o)-55(jna)-333(w)-333(dzie)-1(\\253)-333(i)-333(w)-333(no)-28(cy)84(,)-334(i)-333(n)1(a)-334(k)56(a\\273dym)-333(m)-1(i)1(e)-1(j)1(s)-1(cu..)1(.)]TJ 27.879 -13.549 Td[({)-333(W)83(o)-55(jn)1(a!)-334(W)84(o)-56(j)1(na!)-333(i)-333(tak)-333(nam,)-333(P)28(an)1(ie)-334(Bo\\273)-1(e,)-333(dop)-27(om)-1(\\363\\273!)-333({)-333(h)28(ukn)1(\\246)-1(l)1(i)-333(w)-1(r)1(az)-1(.)]TJ 0 -13.549 Td[(Niem)-1(cy)-351(sk)28(o)-28(cz)-1(yli)-350(do)-351(d)1(r\\241)-28(g\\363)28(w)-351(le)-1(\\273\\241cyc)27(h)-351(p)-27(o)-28(d)-350(\\261)-1(cian)1(\\241;)-351(kilk)1(u)-351(wyni)1(e)-1(s\\252o)-351(fu)1(z)-1(j)1(e)-1(,)-351(to)]TJ -27.879 -13.549 Td[(za)-334(k)56(amie)-1(n)1(ie)-334(c)28(h)28(wyta\\252o,)-333(k)28(obiet)28(y)-333(p)-28(o)-27(dni)1(e)-1(s\\252y)-334(wr)1(z)-1(ask.)]TJ 27.879 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(no)-333(kt\\363r)1(y)-334(strzeli,)-333(a)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-334(ws)-1(i)1(e)-334(tu)-333(z)-1(l)1(e)-1(c\\241.)]TJ 0 -13.549 Td[({)-379(Zas)-1(t)1(rz)-1(elisz,)-379(plu)1(dr)1(o,)-379(jedn)1(e)-1(go,)-378(to)-379(c)-1(i)1(\\246)-380(d)1(rud)1(z)-1(y)-378(kij)1(am)-1(i)-379(zat\\252uk)56(\\241)-379(j)1(ak)-379(psa)-379(par)1(-)]TJ -27.879 -13.549 Td[(sz)-1(yw)28(e)-1(go.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(zac)-1(zyna)-55(jcie,)-334(S)1(z)-1(w)28(ab)28(y)84(,)-333(b)-28(o)-333(z)-334(c)28(h\\252opami)-333(ni)1(e)-334(z)-1(d)1(z)-1(ier\\273yta.)]TJ 0 -13.549 Td[({)-333(A)-334(w)28(as)-1(zego)-334(mi\\246s)-1(a)-333(i)-333(g\\252o)-28(dn)28(y)-333(p)1(ies)-334(nie)-333(tkni)1(e)-1(.)]TJ 0 -13.55 Td[({)-308(Tkn)1(ij)-307(m)-1(e,)-308(p)1(lud)1(ro)-308(j)1(e)-1(d)1(na,)-307(tkni)1(j)-308({)-308(gr)1(oz)-1(il)1(i)-308(zuc)27(h)29(w)27(ale)-308(i)-307(w)-1(y)1(z)-1(yw)28(a)-56(j)1(\\241c)-1(o.)-307(Stal)1(i)-308(ju)1(\\273)]TJ -27.879 -13.549 Td[(z)-301(bli)1(s)-1(k)56(a,)-301(\\261lepiami)-301(si\\246)-301(jeno)-301(b)-27(o)-28(d)1(\\241c)-1(,)-300(prze)-1(st\\246pu)1(j\\241c)-301(z)-302(n)1(ogi)-301(n)1(a)-301(nog\\246,)-301(tr)1(z)-1(ask)55(a)-55(j\\241c)-301(kij)1(ami)]TJ 0 -13.549 Td[(a)-359(wrz)-1(es)-1(zcz)-1(\\241c)-360(za)-56(j)1(adl)1(e)-1(,)-359(\\273e)-360(wym)27(y)1(s)-1(\\252y)-359(i)-359(p)-27(ogroz)-1(y)-359(l)1(ata\\252y)-359(nad)-359(g\\252o)28(w)27(ami)-359(kiej)-359(k)56(amie)-1(n)1(ie,)]TJ 0 -13.549 Td[(ju)1(\\273)-294(si\\246)-294(wyc)-1(i)1(\\241)-28(ga\\252y)-293(pazury)-293(i)-293(niejeden)-293(a\\273e)-294(dygota\\252)-293(z)-294(goto)28(w)27(o\\261ci,)-293(gdy)-293(Ro)-28(c)27(h)1(o)-294(ogar)1(n\\241\\252)]TJ 0 -13.549 Td[(sw)27(oic)28(h)-315(i)-314(o)-28(dwi\\363)-27(d\\252)-315(w)-315(t)28(y\\252,)-314(c)27(h)1(\\252)-1(op)29(y)-315(rad)1(e)-315(nierad)1(e)-315(o)-28(dwraca\\252y)-315(si\\246)-315(p)-28(\\363\\252b)-27(okiem)-315(i)-315(czujn)1(ie,)]TJ 0 -13.55 Td[(pi)1(ln)28(u)1(j\\241c)-334(za)-56(j)1(d\\363)28(w,)-334(o)-27(dc)27(h)1(o)-28(d)1(z)-1(il)1(i,)-333(t)28(ym)-334(ci)-333(s)-1(zydli)1(w)-1(i)1(e)-1(j)-333(za)-333(s)-1(i\\246)-333(krzyk)56(a)-56(j)1(\\241c)-1(:)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a)-56(jt)1(a)-334(z)-334(Bogiem)-1(,)-333(\\261wi\\253skie)-333(p)-28(omiot)28(y!)]TJ 0 -13.549 Td[({)-333(I)-334(cz)-1(ek)56(a)-56(j)1(c)-1(ie,)-333(a\\273)-334(w)27(am)-333(c)-1(ze)-1(r)1(w)27(on)29(y)-334(k)28(ogu)1(t)-333(z)-1(ap)1(ie)-1(j)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(Za)-56(jr)1(z)-1(y)1(m)27(y)-333(tu)-333(p)-27(ota\\253co)28(w)27(a\\242)-334(z)-333(w)27(asz)-1(ymi)-333(pan)1(nami!)]TJ 0 -13.549 Td[(Ja\\273e)-334(ic)27(h)-332(R)-1(o)-27(c)27(ho)-333(m)27(u)1(s)-1(i)1(a\\252)-334(p)1(rzyc)-1(i)1(s)-1(zy\\242)-1(,)-333(tak)-333(sro)-28(d)1(z)-1(e)-333(g\\246)-1(b)-27(o)28(w)27(ali)1(.)]TJ 0 -13.549 Td[(Zmie)-1(r)1(z)-1(c)28(h)-274(s)-1(i)1(\\246)-275(j)1(u\\273)-274(k\\252ad\\252)-274(na)-274(ziem)-1(iac)28(h,)-274(s\\252o\\253ce)-275(zas)-1(z\\252o,)-274(c)27(h)1(\\252o)-28(dn)29(y)-274(w)-1(i)1(ate)-1(r)-273(prze)-1(gar)1(-)]TJ -27.879 -13.55 Td[(ni)1(a\\252)-394(zb)-27(o\\273)-1(a,)-393(\\273e)-394(k)1(\\252)-1(on)1(i\\252y)-393(si\\246)-394(d)1(z)-1(w)28(oni)1(\\241c)-394(k\\252osam)-1(i)1(,)-393(w)-1(i)1(lgotni)1(a\\252)-1(y)-392(tra)28(wy)-393(o)-28(d)-393(r)1(os)-394(siwyc)27(h)1(,)]TJ 0 -13.549 Td[(g\\252os)-1(y)-368(pi)1(s)-1(zc)-1(za\\252e)-1(k)-368(i)-368(dzie)-1(ci\\253)1(s)-1(ki)1(e)-370(wr)1(z)-1(aski)-368(roz)-1(n)1(os)-1(i)1(\\252y)-369(si\\246)-369(o)-28(d)-368(ws)-1(i,)-368(\\273abie)-369(r)1(e)-1(c)27(h)1(ot)28(y)-369(gr)1(a\\252y)]TJ 0 -13.549 Td[(na)-333(b)1(agnisk)55(ac)28(h)-333(i)-333(s)-1(ze)-1(d)1(\\252)-334(j)1(u\\273)-333(\\261)-1(wiatem)-334(cic)27(h)28(y)-333(i)-333(p)1(ac)27(hn)1(\\241c)-1(y)-333(wiec)-1(z\\363r.)]TJ 27.879 -13.549 Td[(Ch\\252op)1(i)-291(wr)1(ac)-1(ali)-290(w)28(olno,)-290(r)1(oz)-1(p)1(i\\246)-1(te)-290(k)55(ap)-27(ot)28(y)-290(p)-27(o)27(wiew)27(a\\252y)-290(n)1(ib)28(y)-290(bi)1(a\\252e)-291(s)-1(k)1(rz)-1(y)1(d\\252a;)-290(s)-1(zli)]TJ -27.879 -13.549 Td[(gw)28(arni)1(e)-1(,)-469(p)1(rzysta)-56(j)1(\\241c)-470(co)-469(c)27(h)29(w)-1(i)1(la,)-469(kt)1(\\363ry\\261)-469(ju)1(\\273)-469(\\261)-1(p)1(ie)-1(w)28(a\\252,)-469(j)1(a\\273)-1(e)-469(b)-27(ory)-469(o)-27(dda)28(w)28(a\\252y)83(,)-468(jensi)]TJ 0 -13.55 Td[(gwizdali)-333(z)-334(u)1(c)-1(iec)27(h)29(y)83(,)-333(to)-333(gw)27(ar)1(z)-1(\\241c)-334(ob)-27(ejmo)28(w)27(ali)-333(gor\\241cymi)-333(\\261)-1(l)1(e)-1(p)1(iam)-1(i)-333(p)-27(o)-28(d)1(le)-1(skie)-333(z)-1(iemie)-1(.)]TJ 27.879 -13.549 Td[({)-333(Gron)28(t)28(y)-333(\\252acno)-333(p)-28(o)-27(dzie)-1(l)1(ne!)-333({)-334(rzek\\252)-334(stary)-333(K\\252\\241b)1(.)]TJ\nET\nendstream\nendobj\n1787 0 obj <<\n/Type /Page\n/Contents 1788 0 R\n/Resources 1786 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1786 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1792 0 obj <<\n/Length 3512      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(560)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(35.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-247(J)1(u\\261c)-1(i,)-246(gos)-1(p)-27(o)-28(d)1(arki)-246(mo\\273)-1(n)1(a)-247(b)28(y)-246(w)-1(y)1(kra)-55(ja\\242)-247(kiej)-246(plastry)-246(mio)-28(d)1(u,)-246(jedn)1(a)-247(w)-247(dr)1(ug\\241;)]TJ -27.879 -13.549 Td[(i)-333(k)56(a\\273)-1(d)1(a)-334(z)-333(\\252)-1(\\241k)56(\\241)-333(i)-333(pa\\261nik)1(ie)-1(m.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(le)-334(jeno)-333(Mi)1(e)-1(mc)-1(y)-333(u)1(s)-1(t\\241)-27(pi\\252y!)-333({)-333(w)27(estc)27(hn)1(\\241\\252)-334(so\\252t)28(ys.)]TJ 0 -13.549 Td[({)-333(Nie)-334(tu)1(rbu)1(jcie)-334(si\\246,)-333(ju\\273)-333(m)27(y)-333(w)-334(t)28(ym,)-333(\\273e)-334(ust\\241)-28(p)1(i\\241)-334({)-333(zap)-28(ewnia\\252)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Wz)-1(i)1(\\241\\252b)28(ym)-334(t\\246)-333(z)-1(iemi\\246)-334(z)-334(kr)1(a)-56(j)1(u;)-333(pr)1(z)-1(y)-333(d)1(ro)-28(d)1(z)-1(e)-334({)-333(sz)-1(epn)1(\\241\\252)-334(P)1(rycz)-1(ek)-333(Adam.)]TJ 0 -13.55 Td[({)-333(A)-334(mni)1(e)-334(b)28(y)-333(si\\246)-334(widzia\\252y)-333(w)-334(p)-27(o\\261ro)-28(d)1(ku,)-333(te)-334(z)-333(\\014gu)1(r\\241)-333({)-334(r)1(z)-1(ek\\252)-334(i)1(nsz)-1(y)-333(par)1(ob)-28(ek.)]TJ 0 -13.549 Td[({)-333(Ja)-334(b)29(ym)-334(si\\246)-334(d)1(ar\\252)-333(o)-334(te)-333(o)-28(d)-333(W)83(ol)1(i.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(\\273e)-1(b)28(y)-333(tak)-333(d)1(os)-1(ta\\242)-333(na)-333(ogro)-28(d)1(ac)27(h)-333(p)-27(o)-334(f)1(oliw)28(arku)1(!)]TJ 0 -13.549 Td[({)-333(Jaki)-333(m\\241dral)1(a,)-334(n)1(a)-56(j)1(leps)-1(ze)-334(b)28(y)-333(c)28(hcia\\252!)]TJ 0 -13.549 Td[({)-363(W)1(ys)-1(t)1(arc)-1(zy)-362(la)-363(wsz)-1(ystki)1(c)27(h)-362(p)-28(o)-362(k)56(a)27(w)28(ale)-363({)-362(uspak)56(a)-56(j)1(a\\252)-363(Gr)1(z)-1(ela,)-362(b)-28(o)-362(ju)1(\\273)-363(b)28(yli)-362(si\\246)]TJ -27.879 -13.549 Td[(sprze)-1(cza\\242)-334(z)-1(acz)-1(\\246li.)]TJ 27.879 -13.55 Td[({)-371(Je)-1(\\273eli)-371(dziedzic)-372(si\\246)-372(zgo)-28(dzi,)-371(a)-371(o)-28(d)1(da)-371(w)27(am)-371(P)28(o)-28(d)1(les)-1(ie,)-371(to)-371(niema\\252)-1(a)-371(p)1(raca)-372(w)28(as)]TJ -27.879 -13.549 Td[(cz)-1(ek)55(a,)-333(n)1(iem)-1(a\\252y)-333(tru)1(d)-333({)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(Ro)-28(c)28(ho.)]TJ 27.879 -13.549 Td[({)-333(Wyd)1(olim!)-333(w)-1(y)1(dolim)-333(w)-1(szys)-1(tk)1(ie)-1(m)28(u!)-333({)-333(w)27(o\\252al)1(i)-334(r)1(ado\\261nie.)]TJ 0 -13.549 Td[({)-333(Ow)27(a!)-333(n)1(ie)-334(strasz)-1(n)1(a)-334(p)1(raca)-334(n)1(a)-334(sw)28(oim)-1(!)]TJ 0 -13.549 Td[({)-333(Na)27(w)28(et)-334(wsz)-1(ystki)1(m)-334(dziedzic)-1(o)28(wym)-334(ziem)-1(i)1(om)-334(b)28(y\\261m)27(y)-333(p)-27(orad)1(z)-1(il)1(i.)]TJ 0 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(jeno)-333(dad)1(z)-1(\\241,)-333(a)-333(obacz)-1(y)1(c)-1(ie!)]TJ 0 -13.549 Td[({)-375(Cz)-1(\\252o)28(wiek)-375(b)28(yc)28(h)-375(si\\246)-375(w)-1(p)1(ar\\252)-375(w)-375(z)-1(i)1(e)-1(mi\\246)-375(kiej)-375(d)1(rze)-1(w)28(o)-375(i)-375(n)1(ie)-1(c)28(h)-375(m)28(u)-375(kto)-375(p)-27(oredzi,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(c)28(h)-333(p)-28(op)1(rob)1(uje)-333(w)-1(y)1(rw)27(a\\242!)]TJ 27.879 -13.549 Td[(Roz)-1(gw)28(arzali)-239(si\\246)-239(m)-1(i\\246dzy)-239(sob\\241,)-239(coraz)-239(pr\\246dzej)-239(id)1(\\241c)-1(,)-239(b)-27(o)-239(ju)1(\\273)-240(o)-28(d)-238(ws)-1(i)-239(zac)-1(i)1(e)-1(mni)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(gromada)-333(k)28(ob)1(ie)-1(t)-333(bi)1(e)-1(gn)1(\\241c)-1(yc)28(h)-333(nap)1(rze)-1(ciw.)]TJ\nET\nendstream\nendobj\n1791 0 obj <<\n/Type /Page\n/Contents 1792 0 R\n/Resources 1790 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1790 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1795 0 obj <<\n/Length 6410      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(36)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ju)1(\\273)-489(tak)-488(dn)1(ia\\252o,)-488(\\273)-1(e)-489(calu)1(\\261)-1(ki)-488(\\261w)-1(i)1(at)-489(p)-27(okr)1(y\\252)-489(si\\246)-489(b)29(y\\252)-489(sin)1(a)27(w)28(\\241)-488(m)-1(o)-28(d)1(ro\\261c)-1(i)1(\\241)-489(ki)1(e)-1(j)-488(\\261liw)28(a)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(a\\252a,)-404(gdy)-404(Hank)56(a)-405(za)-56(jec)27(h)1(a\\252a)-405(pr)1(z)-1(ed)-404(c)27(ha\\252u)1(p)-28(\\246,)-405(j)1(e)-1(sz)-1(cze)-406(l)1(e)-1(\\273\\241c)-1(\\241)-404(w)27(e)-405(\\261piku)1(,)-405(al)1(e)-406(n)1(a)]TJ 0 -13.549 Td[(ostry)-408(tu)1(rk)28(ot)-407(bry)1(ki)-408(d)1(z)-1(ieci)-408(wypad)1(\\252y)-408(z)-408(wrzas)-1(ki)1(e)-1(m)-408(i)-408(\\212ap)1(a)-408(j\\241\\252)-407(s)-1(zc)-1(ze)-1(k)56(a\\242)-408(rad)1(o\\261)-1(n)1(ie)-408(i)]TJ 0 -13.55 Td[(wysk)55(ak)1(iw)27(a\\242)-334(p)1(rze)-1(d)-333(k)28(o\\253)1(mi.)]TJ 27.879 -13.549 Td[({)-361(A)-362(k)56(a)-55(j)-361(An)28(tek?)-362({)-361(kr)1(z)-1(y)1(c)-1(za\\252a)-362(z)-361(proga)-361(J\\363zk)55(a)-361(n)1(adzie)-1(w)28(a)-56(j)1(\\241c)-362(p)1(rz)-1(ez)-362(g\\252o)28(w)27(\\246)-361(w)27(e\\252-)]TJ -27.879 -13.549 Td[(ni)1(ak.)]TJ 27.879 -13.549 Td[({)-349(Za)-349(tr)1(z)-1(y)-348(dn)1(i)-349(d)1(opiero)-349(go)-348(puszc)-1(z\\241,)-349(ale)-349(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)-348(ju)1(\\273)-349(niec)27(h)28(y)1(bni)1(e)-350({)-348(o)-28(dp)-27(o)28(wia-)]TJ -27.879 -13.549 Td[(da\\252a)-333(sp)-28(ok)28(o)-55(jni)1(e)-1(,)-333(ca\\252uj\\241c)-333(dzie)-1(ci,)-333(a)-333(rozda)-55(j\\241c)-334(im)-333(kuk)1(ie)-1(\\252ki)1(.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-389(te\\273)-390(w)-1(y)1(le)-1(cia\\252)-389(z)-1(e)-390(sta)-56(j)1(ni,)-389(a)-389(z)-1(a)-389(nim)-389(\\271)-1(r)1(e)-1(b)1(ak,)-389(kt\\363ren)-389(z)-1(e)-390(r)1(\\273)-1(eniem)-390(j)1(\\241\\252)-390(si\\246)]TJ -27.879 -13.55 Td[(dob)1(iera\\242)-334(d)1(o)-334(kl)1(ac)-1(zy)83(,)-333(P)1(ie)-1(t)1(re)-1(k)-333(wyci\\241)-28(ga\\252)-333(z)-334(w)28(as)-1(\\241)-28(ga)-333(spra)28(wun)1(ki.)]TJ 27.879 -13.549 Td[({)-268(Kosz)-1(\\241)-268(to?)-268({)-269(p)29(yta\\252a)-268(s)-1(iad)1(a)-56(j)1(\\241c)-269(zaraz)-269(w)-268(pr)1(ogu,)-268(b)28(y)-268(d)1(a\\242)-269(pi)1(e)-1(r)1(s)-1(i)-268(n)1(a)-56(jm\\252o)-28(d)1(s)-1(ze)-1(m)28(u.)]TJ 0 -13.549 Td[({)-360(W)-360(pi)1(\\246)-1(ciu)-360(zac)-1(z\\246li)-360(w)27(czora)-56(j)-359(w)-361(p)-27(o\\252e)-1(d)1(ni)1(e)-1(,)-360(Fi)1(lip,)-359(R)-1(af)1(a\\252)-360(i)-360(Kobu)1(s)-361(za)-360(o)-28(dr)1(ob)-28(ek,)]TJ -27.879 -13.549 Td[(a)-333(K\\252\\246)-1(b)-27(\\363)28(w)-334(Jad)1(am)-334(i)-333(Mateusz)-334(p)1(rz)-1(y)1(na)-55(j\\246c)-1(i.)]TJ 27.879 -13.549 Td[({)-333(Mateusz)-334(Go\\252\\241b,)-333(cie?)-1(.)1(..)]TJ 0 -13.55 Td[({)-355(Ju)1(\\261)-1(ci,)-355(mn)1(ie)-356(t)1(e)-1(\\273)-355(b)28(y\\252o)-355(d)1(z)-1(iwn)1(o,)-355(ale)-355(sam)-356(c)28(hcia\\252,)-355(p)-27(o)28(w)-1(i)1(e)-1(d)1(a,)-355(jak)28(o)-354(nie)-355(c)27(h)1(c)-1(e)-355(do)]TJ -27.879 -13.549 Td[(cna)-333(z)-1(gar)1(bac)-1(i)1(e)-1(\\242)-334(p)1(rzy)-333(c)-1(ioso\\252c)-1(e,)-333(to)-333(m)27(u)1(s)-1(i)-333(se)-334(grzbiet)-333(w)-1(y)1(prosto)28(w)27(a\\242)-333(przy)-333(k)28(os)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-334(wyw)28(ar\\252a)-333(okna)-333(p)-27(o)-334(sw)27(o)-55(jej)-333(s)-1(t)1(roni)1(e)-334(i)-333(na)-333(\\261)-1(wiat)-333(wyjr)1(z)-1(a\\252a.)]TJ 0 -13.549 Td[({)-333(\\221p)1(i\\241)-334(t)1(o)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(o)-28(c)-1(i)1(e)-1(c?)]TJ 0 -13.549 Td[({)-333(W)-333(s)-1(ad)1(z)-1(ie)-333(le)-1(\\273\\241,)-333(nie)-333(w)-1(n)1(os)-1(i)1(lim)-334(go)-333(na)-333(n)1(o)-28(c)-1(,)-333(b)-27(o)-333(w)-334(izbie)-333(s)-1(tr)1(as)-1(znie)-333(gor\\241c)-1(o.)]TJ 0 -13.55 Td[({)-333(Jak\\273e)-334(tam)-334(z)-334(matk)56(\\241?)]TJ 0 -13.549 Td[({)-336(P)28(o)-335(da)28(wnem)27(u)1(,)-336(c)27(h)1(o)-28(\\242)-336(mo\\273)-1(e)-336(i)-336(\\271dziebk)28(o)-336(l)1(e)-1(p)1(ie)-1(j)1(.)-336(Jam)28(br)1(o\\273)-337(l)1(e)-1(ku)1(j\\241,)-335(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(w)28(c)-1(zora)-56(j)-254(i)-254(o)28(w)27(czarz)-255(z)-255(W)84(oli,)-254(ok)55(ad)1(z)-1(i)1(\\252)-255(j\\241,)-254(ma\\261)-1(cie)-255(j)1(akie\\261)-255(da\\252)-254(i)-255(p)-27(e)-1(d)1(z)-1(i)1(a\\252,)-255(co)-255(d)1(o)-255(d)1(z)-1(i)1(e)-1(wi\\246c)-1(iu)]TJ 0 -13.549 Td[(ni)1(e)-1(d)1(z)-1(iel)-333(b)-27(\\246)-1(d\\241)-333(zdro)28(wi,)-333(b)28(y)1(le)-334(jeno)-333(n)1(a)-334(\\261wiat\\252o)-334(n)1(ie)-334(wyc)28(ho)-28(d)1(z)-1(il)1(i.)]TJ 27.879 -13.549 Td[({)-381(T)83(o)-381(p)-28(on)1(o)-381(na)-55(jlepsz)-1(e)-381(na)-381(opar)1(z)-1(elin)1(\\246)-1(!)-381({)-381(o)-28(d)1(rze)-1(k\\252a,)-381(za)-381(c)-1(zym)-381(da)-56(j)1(\\241c)-382(d)1(z)-1(iec)27(k)1(u)-381(z)]TJ -27.879 -13.55 Td[(dr)1(ugiej)-258(p)1(ie)-1(r)1(s)-1(i,)-258(wyp)29(yt)28(yw)28(a\\252)-1(a)-258(skw)28(apliwie)-258(o)-259(w)28(cz)-1(ora)-55(jsz)-1(e)-258(no)28(win)28(y)84(,)-258(jeno)-258(kr\\363t)1(k)28(o)-259(to)-258(tr)1(w)27(a-)]TJ 0 -13.549 Td[(\\252o,)-393(b)-27(o)-393(b)1(ia\\252y)-392(dzie)-1(\\253)-392(si\\246)-393(ju)1(\\273)-393(robi\\252,)-392(z)-1(or)1(z)-1(e)-393(zru)1(m)-1(ieni)1(\\252y)-393(n)1(ie)-1(b)-27(o)-393(i)-392(z)-1(agr)1(a\\252y)-393(b)1(rzas)-1(k)56(am)-1(i)-392(w)]TJ 0 -13.549 Td[(p)-27(o)27(wietrzu,)-355(rosy)-355(s)-1(k)56(ap)28(y)1(w)27(a\\252y)-355(z)-356(dr)1(z)-1(ew)-1(,)-355(p)1(taki)-355(z)-1(a\\261wie)-1(r)1(gota\\252y)-356(p)-27(o)-355(gniazdac)28(h)-355(i)-356(n)1(a)-356(wsi)]TJ 0 -13.549 Td[(ju)1(\\273)-314(si\\246)-313(k)55(a)-55(j\\261)-313(niek)56(a)-56(j)-313(r)1(oz)-1(lega\\252y)-313(b)-27(e)-1(ki)-312(o)27(wiec)-314(i)-313(p)-27(ory)1(kiw)28(ania)-313(stad)-313(wyp)-27(\\246)-1(d)1(z)-1(an)29(yc)27(h)-313(n)1(a)-313(pa-)]TJ 0 -13.549 Td[(st)27(wisk)56(a,)-251(za\\261)-251(ktos)-1(i)1(k)-251(zac)-1(z\\241\\252)-251(nak)1(le)-1(p)29(yw)27(a\\242)-251(k)28(os\\246)-1(,)-250(\\273)-1(e)-251(cie)-1(n)1(iu)1(\\261)-1(ki)1(,)-251(ostry)-250(brz\\246)-1(k)-250(rozdzw)27(an)1(ia\\252)]TJ 0 -13.55 Td[(si\\246)-334(pr)1(z)-1(eni)1(kliwie.)]TJ 27.879 -13.549 Td[(Hank)56(a)-383(c)-1(o)-383(jeno)-383(rozdzia)28(w)-1(sz)-1(y)-383(si\\246)-384(z)-384(d)1(rogi)-383(p)-28(ob)1(ie)-1(g\\252a)-383(do)-383(B)-1(or)1(yn)28(y;)-383(le\\273a\\252)-384(w)-384(p)-27(\\363\\252-)]TJ -27.879 -13.549 Td[(k)28(osz)-1(ku)-333(p)-27(o)-28(d)-333(d)1(rze)-1(w)28(am)-1(i)1(,)-333(przykr)1(yt)28(y)-333(pierzyn\\241)-333(i)-333(s)-1(p)1(a\\252.)]TJ 358.232 -29.888 Td[(561)]TJ\nET\nendstream\nendobj\n1794 0 obj <<\n/Type /Page\n/Contents 1795 0 R\n/Resources 1793 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1793 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1798 0 obj <<\n/Length 9316      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(562)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-373(Wi)1(e)-1(cie!)-373({)-373(zas)-1(ze)-1(p)1(ta\\252a)-373(targa)-55(j\\241c)-373(go)-373(za)-373(r\\246k)28(\\246)-373({)-373(An)28(tek)-373(za)-373(trzy)-373(d)1(ni)-372(p)-28(o)28(wr\\363)-28(ci.)]TJ -27.879 -13.549 Td[(Od)1(s)-1(ta)28(wili)-266(go)-267(d)1(o)-267(gu)1(b)-28(ern)1(i,)-267(Ro)-27(c)27(ho)-266(p)-28(o)-55(jec)27(h)1(a\\252)-267(z)-1(a)-266(ni)1(m)-267(z)-267(pieni\\246dzmi,)-266(z)-1(ap)1(\\252)-1(aci)-266(tam)-267(okup)]TJ 0 -13.549 Td[(i)-333(raze)-1(m)-333(ju)1(\\273)-334(p)-28(o)28(wr\\363)-27(c)-1(\\241!)]TJ 27.879 -13.549 Td[(St)1(ary)-337(s)-1(i)1(ad\\252)-337(rap)1(te)-1(m,)-337(pr)1(z)-1(ec)-1(i)1(e)-1(ra\\252)-337(o)-28(cz)-1(y)-336(i)-337(jakb)28(y)-337(s\\252uc)28(ha\\252,)-337(ale)-337(w)-1(n)1(e)-1(t)-337(si\\246)-338(zw)28(ali\\252)-337(w)]TJ -27.879 -13.549 Td[(p)-27(o\\261)-1(ciel)-334(i)-333(zac)-1(i)1(\\241)-28(gn\\241)28(ws)-1(zy)-333(pierzyn)1(\\246)-334(na)-333(g\\252o)28(w)27(\\246,)-333(jakb)28(y)-333(zas)-1(n)1(\\241\\252)-334(zno)28(wu.)]TJ 27.879 -13.55 Td[(Nie)-334(b)29(y\\252o)-334(z)-333(nim)-333(c)-1(o)-333(gada\\242)-334(i)-333(ak)1(uratn)1(ie)-334(k)28(osiarze)-334(w)28(c)27(h)1(o)-28(dzili)-333(w)-334(op)1(\\252otki.)]TJ 0 -13.549 Td[({)-333(Kole)-334(k)56(ap)1(u\\261nisk)28(\\363)28(w)-334(p)-27(o\\252)-1(o\\273yli)1(m)-334(w)28(c)-1(zora)-56(j)-332(\\252)-1(\\241k)28(\\246)-333({)-334(ob)-55(j)1(a\\261)-1(n)1(ia\\252)-334(F)1(ilip)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(i)1(d\\271c)-1(ie)-333(dzis)-1(i)1(a)-56(j)-333(za)-334(r)1(z)-1(ek)28(\\246)-1(,)-333(p)1(rz)-1(y)-333(k)28(op)-27(cac)27(h,)-333(J\\363zk)56(a)-334(p)-27(ok)56(a\\273)-1(e)-334(w)28(ama.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(t)1(a)-334(n)1(a)-334(K)1(ac)-1(zym)-334(Do\\252ku)1(,)-333(k)55(ar)1(w)27(as)-333(te)-1(go)-333(galan)28(t)28(y)84(.)]TJ 0 -13.549 Td[({)-333(I)-334(tr)1(a)27(w)28(a)-333(p)-28(o)-333(pas)-333(jak)-333(b)-27(\\363r,)-333(nie)-333(tak)56(a,)-334(j)1(ak)-333(w)27(cz)-1(or)1(a)-56(j)1(s)-1(za.)]TJ 0 -13.549 Td[({)-333(T)83(ak)56(a)-334(to)-333(kiepsk)56(a,)-333(c)-1(o?)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(wysc)27(h)1(\\252a)-334(p)1(ra)28(wie)-1(,)-333(j)1(akb)28(y)-333(sz)-1(cz)-1(otk)28(\\246)-333(k)28(os)-1(i\\252.)]TJ 0 -13.549 Td[({)-333(Ros)-1(a)-333(ob)-28(esc)27(hn)1(ie,)-334(t)1(o)-334(mo\\273)-1(n)1(a)-334(b)29(y)-333(j\\241)-333(ju)1(\\273)-334(dzisia)-56(j)-333(p)1(rze)-1(tr)1(z)-1(\\241sn\\241\\242.)]TJ 0 -13.549 Td[(P)28(osz)-1(l)1(i)-358(zaraz,)-358(j)1(e)-1(n)1(o)-358(Mateusz)-1(,)-357(z)-1(ap)1(ala)-55(j\\241cy)-358(co\\261)-359(d)1(\\252ugo)-357(papi)1(e)-1(r)1(os)-1(a)-358(u)-357(Jagu)1(s)-1(i,)-357(ru)1(-)]TJ -27.879 -13.549 Td[(sz)-1(y\\252)-396(na)-396(os)-1(tatk)1(u)-397(i)-396(j)1(e)-1(sz)-1(cz)-1(e)-397(si\\246)-397(\\252ak)28(omie)-397(z)-1(a)-396(s)-1(i)1(\\246)-397(ogl\\241da\\252,)-396(kiej)-396(te)-1(n)-396(k)28(ot)-396(o)-28(degnan)29(y)-397(o)-28(d)]TJ 0 -13.549 Td[(mle)-1(k)56(a.)]TJ 27.879 -13.55 Td[(I)-333(z)-334(dr)1(ugic)28(h)-333(dom\\363)28(w)-334(j\\246li)-333(te\\273)-334(g\\246)-1(sto)-333(wyc)27(h)1(o)-28(dzi\\242)-334(n)1(a)-334(k)28(o\\261b)-27(\\246)-1(.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-399(w\\252a\\261)-1(n)1(ie)-399(co)-399(in)1(o)-399(s)-1(i)1(\\246)-399(p)-28(ok)56(azyw)27(a\\252o,)-398(ogromne)-399(i)-398(rozc)-1(ze)-1(rwieni)1(one,)-399(d)1(z)-1(ie\\253)]TJ -27.879 -13.549 Td[(rob)1(i\\252)-333(s)-1(i\\246)-333(c)-1(iep\\252y)84(,)-333(na)-333(s)-1(p)1(ie)-1(k)28(ot)1(\\246)-334(z)-1(n)1(o)28(w)-1(u)1(j)-333(s)-1(i)1(\\246)-334(mia\\252o.)]TJ 27.879 -13.549 Td[(Kosiarze)-385(ruszyli)-385(g\\246sie)-1(go,)-384(wypr)1(z)-1(edzani)-385(p)1(rze)-1(z)-385(J\\363zk)28(\\246)-385(w)-1(l)1(e)-1(k)56(\\241c)-1(\\241)-384(t)28(yk)28(\\246)-1(;)-384(kto)-385(p)1(a-)]TJ -27.879 -13.549 Td[(cie)-1(r)1(z)-487(mru)1(c)-1(za\\252,)-486(kto)-486(si\\246)-487(j)1(e)-1(sz)-1(cze)-487(p)1(rz)-1(ec)-1(i)1(\\241)-28(ga\\252)-486(i)-486(\\261le)-1(p)1(ie)-487(t)1(ar\\252)-486(z)-1(e)-486(\\261)-1(p)1(iku)1(,)-486(a)-486(kto)-486(rzuca\\252)]TJ 0 -13.55 Td[(ni)1(e)-1(ki)1(e)-1(j)-400(jaki)1(e)-1(\\261)-401(z)-1(b)-27(\\246dne)-401(s\\252o)27(w)28(o,)-401(p)1(rz)-1(esz)-1(li)-400(z)-1(a)-401(m\\252yn;)-400(na)-401(\\252\\246gac)27(h)-400(le)-1(\\273a\\252y)-401(ni)1(s)-1(ki)1(e)-1(,)-400(rz)-1(ad)1(kie)]TJ 0 -13.549 Td[(mg\\252y)83(,)-386(k)28(\\246p)28(y)-386(olc)27(h)-386(wid)1(z)-1(i)1(a\\252y)-387(si\\246)-387(k)1(ie)-1(j)-385(krze)-387(dy)1(m)-1(i)1(\\241c)-1(e,)-386(rz)-1(ek)56(a)-387(p)1(rze)-1(b)1(\\252ys)-1(k)1(iw)27(a\\252a)-386(ni)1(e)-1(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)-439(sin)28(yc)28(h)-440(pr)1(z)-1(es)-1(\\252on)-439(orosz)-1(on)1(e)-441(t)1(ra)28(w)-1(y)-439(s)-1(ta\\252y)-439(p)-28(o)-28(c)28(h)28(ylon)1(e)-1(;)-439(c)-1(za)-56(j)1(ki)-440(j)1(u\\273)-440(kwili\\252y)-439(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(k)56(a)-56(j)1(,)-333(a)-334(\\273arz\\241c)-1(e)-333(s)-1(i\\246)-333(o)-28(d)-333(ws)-1(c)28(ho)-28(d)1(u)-333(p)-28(o)28(wietrze)-334(pac)28(hn)1(ia\\252o)-334(wil)1(gotn)28(ym)-334(k)1(w)-1(i)1(e)-1(ciem)-1(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a,)-400(do)28(wi\\363)-28(d)1(\\252s)-1(zy)-401(ic)28(h)-401(d)1(o)-401(k)28(op)-27(c)-1(\\363)28(w,)-401(o)-28(d)1(m)-1(i)1(e)-1(rzy\\252a)-401(o)-55(jco)28(w)27(\\241)-401(\\252\\241k)28(\\246)-401(i)-401(zatkn)1(\\241)27(wsz)-1(y)]TJ -27.879 -13.55 Td[(na)-333(gran)1(icy)-333(t)27(y)1(k)28(\\246)-334(p)-28(ol)1(e)-1(cia\\252a)-333(z)-334(p)-28(o)28(wrotem.)]TJ 27.879 -13.549 Td[(P)28(ozru)1(c)-1(ali)-511(sp)-28(encerki,)-511(p)-27(o)-28(d)1(w)-1(i)1(n\\246li)-511(p)-28(or)1(tki)-511(do)-511(k)28(olan)1(,)-511(roz)-1(sta)28(wili)-511(si\\246)-512(p)-27(ob)-28(ok)-511(i)]TJ -27.879 -13.549 Td[(wpar)1(\\252)-1(szy)-334(d)1(rze)-1(w)28(c)-1(e)-333(w)-334(zie)-1(mi\\246)-334(j)1(\\246)-1(l)1(i)-333(raz)-334(p)-27(o)-334(r)1(az)-1(i)1(e)-334(g\\252adzi\\242)-334(k)28(osy)-334(ose\\252)-1(k)56(ami.)]TJ 27.879 -13.549 Td[({)-453(S)1(ie)-1(l)1(na)-453(tra)28(w)28(a)-453(jak)-452(k)28(o\\273)-1(u)1(c)27(h,)-452(niejeden)-453(d)1(obrze)-453(s)-1(i\\246)-453(zap)-28(o)-28(ci)-453({)-453(r)1(z)-1(ek\\252)-453(Mateusz)]TJ -27.879 -13.549 Td[(sta)-56(j)1(\\241c)-334(na)-333(pi)1(e)-1(rwsz)-1(ego)-334(i)-333(p)1(r\\363b)1(uj\\241c)-333(rozm)-1(ac)28(h)28(u.)]TJ 27.879 -13.55 Td[({)-333(Wysok)55(a)-333(i)-333(g\\246s)-1(ta,)-333(n)1(a)-1(b)1(ier\\241)-333(s)-1(e)-334(sian)1(a,)-333(no!)-333({)-333(rz)-1(ek\\252)-333(dr)1(ugi)-333(s)-1(ta)-55(j\\241c)-333(ob)-28(ok.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(le)-334(in)1(o)-334(p)-27(ogo)-28(d)1(nie)-333(s)-1(pr)1(z)-1(\\241tn)1(\\246)-1(l)1(i)-333({)-334(r)1(z)-1(ek\\252)-334(t)1(rz)-1(eci)-334(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-334(si\\246)-334(p)-27(o)-334(n)1(iebie.)]TJ 0 -13.549 Td[({)-307(S)1(k)28(oro)-307(cz)-1(\\252o)28(wie)-1(k)-306(\\252\\241k)28(\\246)-308(k)28(osi,)-307(l)1(e)-1(d)1(a)-307(bab)1(a)-307(des)-1(zc)-1(z)-307(u)1(prosi)-307({)-307(za\\261)-1(mia\\252)-307(si\\246)-307(c)-1(zw)27(ar)1(t)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda)-333(to)-333(b)28(y\\252a)-333(p)-27(o)-334(in)1(ne)-334(r)1(oki,)-333(ale)-333(nie)-334(l)1(ato\\261)-1(!)-333({)-333(z)-1(acz)-1(y)1(na)-55(j,)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(e\\273)-1(egnal)1(i)-229(si\\246)-229(wraz,)-229(M)1(ate)-1(u)1(s)-1(z)-229(p)1(rzyc)-1(i)1(\\241)-28(gn\\241\\252)-229(p)1(as)-1(a,)-228(rozkr)1(a)-1(czy\\252)-229(si\\246)-229(ni)1(e)-1(co,)-229(p)1(rzy-)]TJ -27.879 -13.549 Td[(gi\\241\\252)-364(b)1(ary)84(,)-364(w)-364(gar\\261c)-1(i)1(e)-365(spl)1(un)1(\\241)-1(\\252,)-363(nab)1(ra\\252)-364(d)1(e)-1(c)27(h)29(u)-364(i)-363(s)-1(ze)-1(r)1(okim)-364(rozmac)27(hem)-364(s)-1(p)1(u\\261c)-1(i\\252)-363(k)28(os)-1(\\246,)]TJ 0 -13.55 Td[(tn)1(\\241c)-333(j)1(u\\273)-332(raz)-332(za)-332(razem)-1(,)-331(a)-332(za)-332(ni)1(m)-333(d)1(ru)1(dzy)83(,)-331(os)-1(ta)28(w)28(a)-56(j)1(\\241c)-333(n)1(iec)-1(o)-332(n)1(a)-332(sk)28(os)-1(,)-331(b)28(y)-331(s)-1(e)-332(n\\363g)-331(nie)]TJ 0 -13.549 Td[(p)-27(o)-28(dci\\241\\242,)-410(cz)-1(yn)1(ili)-409(to\\273)-410(s)-1(amo,)-410(w)28(c)-1(i)1(na)-55(j\\241c)-410(s)-1(i)1(\\246)-411(p)-27(osobni)1(e)-411(w)-410(omglon)1(\\241)-410(\\252\\241k)28(\\246)-410(i)-410(c)27(h)1(lasz)-1(cz)-1(\\241c)]TJ 0 -13.549 Td[(r\\363)28(wn)28(ym,)-357(sp)-28(ok)28(o)-55(jn)29(ym)-358(r)1(z)-1(u)1(te)-1(m)-357(k)28(os,)-357(z)-1(i)1(m)-1(n)1(e)-358(ostrza)-357(jeno)-357(\\252ysk)56(a\\252y)-357(z)-1(e)-357(\\261w)-1(i)1(s)-1(tem)-358(i)-356(tra)28(wy)]TJ 0 -13.549 Td[(k\\252ad)1(\\252)-1(y)-333(si\\246)-334(ci\\246\\273)-1(k)28(o)-333(os)-1(y)1(puj)1(\\241c)-334(ic)28(h)-333(ros\\241)-334(k)1(ie)-1(b)29(y)-334(t)28(y)1(m)-1(i)-333(\\252z)-1(ami.)]TJ 27.879 -13.549 Td[(Wiat)1(e)-1(r)-393(j)1(\\241\\252)-393(\\271)-1(d)1(z)-1(iebk)28(o)-393(p)1(rze)-1(garn)1(ia\\242)-393(tra)28(w)-1(y)-392(i)-393(c)-1(za)-56(j)1(ki)-393(coraz)-394(j)1(\\246)-1(k)1(liwiej)-393(krzycz)-1(a\\252y)]TJ -27.879 -13.55 Td[(nad)-397(ni)1(m)-1(i)1(,)-398(cz)-1(ase)-1(m)-398(ku)1(ropat)1(ki)-398(f)1(urk)1(n\\246\\252)-1(y)-397(s)-1(p)-27(o)-28(d)-397(n\\363g,)-397(ale)-398(oni,)-397(k)28(o\\252ys)-1(z\\241c)-398(s)-1(i\\246)-398(z)-398(pr)1(a)27(w)28(e)-1(j)]TJ 0 -13.549 Td[(stron)28(y)-363(na)-364(lew)28(\\241,)-364(ci\\246)-1(l)1(i)-364(ni)1(e)-1(stru)1(dze)-1(n)1(ie)-364(w)-1(p)1(iera)-56(j)1(\\241c)-365(si\\246)-364(w)-364(\\252\\241k)28(\\246)-364(pi\\246d\\271)-364(za)-364(pi\\246dzi\\241,)-363(t)27(y)1(lk)28(o)]TJ\nET\nendstream\nendobj\n1797 0 obj <<\n/Type /Page\n/Contents 1798 0 R\n/Resources 1796 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1796 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1801 0 obj <<\n/Length 9410      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(563)]TJ -358.232 -35.866 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-431(p)1(rz)-1(y)1(s)-1(ta)28(w)28(a\\252)-431(kt\\363ry)1(\\261)-432(k)28(os\\246)-431(naostrzy\\242)-431(le)-1(b)-27(o)-431(gr)1(z)-1(b)1(ie)-1(t)-430(wypr)1(os)-1(to)28(w)28(a\\242)-432(i)-430(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.549 Td[(sie)-1(k)1(\\252)-308(za)28(w)-1(zi\\246c)-1(ie)-307(os)-1(ta)28(wia)-55(j\\241c)-308(za)-307(s)-1(ob)1(\\241)-308(coraz)-307(d\\252u\\273s)-1(ze)-308(p)-27(ok)28(osy)-308(i)-307(wgn)1(ie)-1(cion)1(e)-308(\\261lady)-307(n)1(\\363g.)]TJ 27.879 -13.549 Td[(Za\\261)-232(nim)-232(s\\252o\\253ce)-233(wyn)1(ies)-1(\\252o)-232(si\\246)-232(nad)-231(wie\\261)-1(,)-231(ju\\273)-232(ca\\252e)-233(\\252\\241k)1(i)-232(ja\\273e)-232(j\\246c)-1(za\\252y)-232(p)-27(o)-28(d)-231(k)28(os)-1(ami,)]TJ -27.879 -13.549 Td[(ws)-1(z\\246)-1(d)1(y)-382(k)28(os)-1(il)1(i,)-382(w)-1(sz\\246)-1(d)1(y)-383(b)1(\\252ys)-1(k)56(a\\252y)-382(s)-1(i)1(ne)-383(ostrza,)-382(roznosi\\252y)-383(si\\246)-383(zgrzytli)1(w)27(e)-383(ostrze)-1(n)1(ia)-382(i)]TJ 0 -13.549 Td[(ws)-1(z\\246)-1(d)1(y)-333(bi\\252)-333(mo)-28(c)-1(n)29(y)-334(zapac)28(h)-333(tra)28(w)-333(w)-1(i)1(\\246)-1(d)1(n\\241cyc)27(h.)]TJ 27.879 -13.55 Td[(P)28(ogo)-28(d)1(a)-294(b)28(y)1(\\252)-1(a)-293(jakb)28(y)-293(wybr)1(ana)-294(n)1(a)-294(s)-1(i)1(anok)28(osy)83(,)-293(b)-28(o)-293(c)27(ho)-27(c)-1(ia\\273)-294(stara)-294(p)-27(o)28(w)-1(i)1(adk)56(a)-294(m\\363-)]TJ -27.879 -13.549 Td[(wi:)-446(\\377)-56(Zacz)-1(n)1(ij)-446(sianok)28(osy)83(,)-446(zap\\252acz)-1(\\241)-446(w)-1(n)1(e)-1(t)-446(n)1(ie)-1(b)1(iosy\",)-446(ale)-447(lato\\261)-446(s)-1(ta\\252o)-446(s)-1(i\\246)-446(jakb)29(y)-447(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ek)28(\\363r.)-333(Mi)1(as)-1(to)-333(des)-1(zcz)-1(\\363)28(w)-334(p)1(rzys)-1(z\\252a)-333(s)-1(u)1(s)-1(za.)]TJ 27.879 -13.549 Td[(Dn)1(ie)-486(ws)-1(ta)28(w)28(a\\252)-1(y)-485(ob)1(lane)-486(r)1(os)-1(ami,)-485(a)-486(r)1(oz)-1(p)1(alone)-485(kiej)-485(c)-1(z\\252o)27(wiek)-485(w)-486(gor\\241cz)-1(ce)-1(,)-485(i)]TJ -27.879 -13.549 Td[(k\\252ad)1(\\252)-1(y)-466(s)-1(i)1(\\246)-468(w)28(e)-467(w)-1(i)1(e)-1(cz)-1(or)1(y)-467(z)-1(i)1(on\\241ce)-468(spi)1(e)-1(k)28(ot\\241,)-466(\\273)-1(e)-467(ju)1(\\273)-467(w)-1(y)1(s)-1(yc)28(ha\\252y)-467(stud)1(ni)1(e)-468(i)-466(rze)-1(cz)-1(ki)1(,)]TJ 0 -13.549 Td[(zb)-28(o\\273a)-420(\\273)-1(\\363\\252k\\252y)84(,)-420(ok)28(op)-28(o)28(wizn)28(y)-420(wi\\246)-1(d)1(\\252y)83(,)-420(r)1(obact)28(w)27(o)-420(rzuci\\252o)-420(s)-1(i)1(\\246)-421(na)-420(d)1(rz)-1(ew)28(a,)-420(o)27(w)28(o)-28(c)-420(obla-)]TJ 0 -13.55 Td[(t)28(yw)28(a\\252,.)-408(kro)28(wy)-408(os)-1(ta)28(wia\\252y)-408(mlek)28(o,)-409(\\273e)-409(to)-408(g\\252o)-28(d)1(ne)-408(w)-1(r)1(ac)-1(a\\252y)-408(z)-409(wyp)1(alon)28(yc)28(h)-408(past)28(wis)-1(k)1(,)]TJ 0 -13.549 Td[(gdy)1(\\273)-303(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-302(j)1(e)-1(n)1(o)-302(t)28(ym)-302(p)-28(ozw)28(ala\\252)-302(pa\\261\\242)-302(w)-302(p)-28(or)1(\\246)-1(b)1(ac)27(h,)-301(kt\\363r)1(e)-303(zap\\252aci\\252y)-302(p)-27(o)-302(p)1(i\\246)-1(\\242)-302(r)1(ubl)1(i)]TJ 0 -13.549 Td[(z)-334(ogon)1(a.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(c)-1(o)-333(ni)1(e)-334(ws)-1(zys)-1(cy)-333(mogli)-333(w)-1(y)1(w)27(ali)1(\\242)-334(t)28(yle)-334(got)1(o)27(w)28(e)-1(go)-333(grosz)-1(a.)]TJ 0 -13.549 Td[(Ale)-434(i)-433(b)-27(e)-1(z)-434(te)-434(r)1(\\363\\273)-1(n)1(o\\261)-1(ci)-433(prze)-1(d)1(no)28(w)28(e)-1(k)-433(s)-1(t)1(a)27(w)28(a\\252)-434(si\\246)-434(coraz)-434(ci\\246)-1(\\273s)-1(zy)84(,)-434(zw\\252a)-1(szc)-1(za)-434(la)]TJ -27.879 -13.55 Td[(k)28(omorni)1(k)28(\\363)27(w)-333(i)-333(dru)1(giej)-333(biedot)28(y)84(.)]TJ 27.879 -13.549 Td[(Rac)27(h)1(o)27(w)28(ali)-469(jeno,)-469(co)-469(na)-469(\\261)-1(wi\\246t)28(y)-470(J)1(an)-469(m)27(u)1(s)-1(z\\241)-470(p)1(rzyj\\261\\242)-470(desz)-1(cz)-1(e)-470(i)-469(wsz)-1(ystk)28(o)-469(w)]TJ -27.879 -13.549 Td[(p)-27(olac)27(h)-319(j)1(e)-1(sz)-1(cz)-1(e)-319(s)-1(i\\246)-319(p)-28(op)1(ra)28(wi,)-319(na)28(w)27(et)-319(ju)1(\\273)-320(na)-319(t\\246)-320(in)29(te)-1(n)1(c)-1(j)1(\\246)-320(na)-319(ms)-1(z\\246)-320(da)28(w)28(ali,)-319(ni)1(c)-320(jedn)1(ak)]TJ 0 -13.549 Td[(ni)1(e)-334(p)-27(om)-1(og\\252o,)-333(s)-1(u)1(s)-1(za)-333(w)27(ci\\241\\273)-334(tr)1(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Do)-405(garn)1(k)28(\\363)27(w)-405(u)-405(n)1(ie)-1(j)1(e)-1(d)1(nego)-405(nie)-406(b)29(y\\252o)-405(c)-1(o)-405(ws)-1(ta)28(wi\\242,)-405(ale)-406(za.)-405(to)-406(n)1(ie)-406(b)1(rak)28(o)28(w)28(a\\252)-1(o)]TJ -27.879 -13.55 Td[(sw)27(ar\\363)28(w)-283(n)1(i)-283(k\\252\\363tn)1(i)-283(i)-282(wyrze)-1(k)56(a\\253.)-282(Mo\\273e)-283(jes)-1(zc)-1(ze)-283(nigd)1(y)83(,)-282(jak)-282(jeno)-283(zapami\\246tali)-282(na)-56(j)1(s)-1(t)1(a)-1(r)1(s)-1(i)1(,)]TJ 0 -13.549 Td[(ni)1(e)-413(b)28(y\\252o)-412(w)-413(Li)1(p)-28(cac)27(h)-412(t)28(y)1(le)-413(spra)28(w)-412(r\\363\\273n)28(yc)27(h)1(,)-412(a)-413(to)-412(o)-412(s\\241dy)-412(z)-1(a)-412(las)-412(s)-1(i\\246)-412(k\\252op)-28(ot)1(ali,)-412(a)-412(to)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)1(o)27(w)28(e)-295(s)-1(p)1(ra)28(wy)-295(k\\252y)1(\\271)-1(n)1(i\\252y)-295(ci\\246gie)-1(m)-295(l)1(ud)1(z)-1(i)-294(m)-1(i)1(\\246)-1(d)1(z)-1(y)-294(s)-1(ob)1(\\241,)-295(a)-294(to)-295(Domin)1(ik)28(o)28(w)27(ej)-294(s)-1(p)-27(ory)-294(z)-1(e)]TJ 0 -13.549 Td[(synem)-1(,)-277(a)-277(to)-278(M)1(ie)-1(mcy)83(,)-277(a)-278(to)-277(p)-27(om)-1(n)1(iejsz)-1(e,)-278(s\\241s)-1(i)1(e)-1(d)1(z)-1(ki)1(e)-278(s)-1(p)-27(ory)84(,)-277(t)27(y)1(le)-278(tego)-278(b)28(y)1(\\252)-1(o,)-277(\\273e)-278(pr)1(a)27(wie)]TJ 0 -13.549 Td[(zap)-28(omin)1(ali)-333(o)-334(b)1(ie)-1(d)1(z)-1(i)1(e)-1(,)-333(\\273yj\\241c)-333(kieb)28(y)-333(w)-334(t)28(ym)-334(k)28(ot)1(le)-334(w)-334(ci\\241)-28(g\\252y)1(c)27(h)-333(pl)1(otac)27(h)-333(i)-333(sw)27(arac)28(h.)]TJ 27.879 -13.55 Td[(Nie)-295(d)1(z)-1(i)1(w)27(ota)-294(te\\273)-1(,)-294(\\273e)-295(s)-1(k)28(or)1(o)-295(n)1(ades)-1(z\\252y)-294(s)-1(ian)1(ok)28(os)-1(y)84(,)-294(o)-28(detc)27(h)1(n\\246li,)-294(b)1(ie)-1(d)1(ota)-294(s)-1(i\\246)-294(w)-1(n)1(e)-1(t)]TJ -27.879 -13.549 Td[(rozbi)1(e)-1(g\\252a)-375(p)-28(o)-375(d)1(w)27(or)1(ac)27(h)-375(za)-375(z)-1(arob)1(kiem)-1(,)-374(a)-376(gosp)-27(o)-28(dar)1(z)-1(e,)-375(z)-1(at)28(yk)56(a)-55(j\\241c)-376(u)1(s)-1(zy)-375(na)-375(wsz)-1(elkie)]TJ 0 -13.549 Td[(no)28(win)28(y)84(,)-333(do)-333(k)28(os)-334(p)1(rz)-1(y)1(pi\\246li)-333(si\\246)-334(z)-334(r)1(ado\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[(Nie)-473(zap)-28(omni)1(e)-1(li)-472(jeno)-472(o)-473(Mi)1(e)-1(mc)-1(ac)28(h,)-472(b)-28(o)-472(c)-1(o)-472(dn)1(ia)-473(kt)1(os)-1(ik)-472(lec)-1(ia\\252)-472(na)-473(P)29(o)-28(dl)1(e)-1(sie)]TJ -27.879 -13.549 Td[(wypat)1(ryw)28(a\\242)-1(,)-333(co)-334(on)1(i)-333(tam)-334(rob)1(i\\241.)]TJ 27.879 -13.55 Td[(Si)1(e)-1(d)1(z)-1(ieli)-384(jes)-1(zc)-1(ze,)-385(p)1(rz)-1(estali)-385(j)1(e)-1(n)1(o)-385(k)28(op)1(a\\242)-385(s)-1(tu)1(dn)1(ie)-385(i)-385(zw)27(ozi\\242)-385(k)56(amie)-1(\\253)-384(n)1(a)-385(fu)1(nd)1(a-)]TJ -27.879 -13.549 Td[(me)-1(n)28(t)1(a,)-415(za\\261)-415(k)28(o)27(w)28(al)-414(kt\\363rego\\261)-415(dn)1(ia)-415(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-414(\\273)-1(e)-415(M)1(ie)-1(mcy)-415(zas)-1(k)56(ar\\273yli)-414(dziedzic)-1(a)-414(o)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\241dze)-1(,)-333(a)-333(Lip)-27(c)-1(e)-333(o)-334(gw)28(a\\252t.)]TJ 27.879 -13.549 Td[(Ch\\252op)28(y)-333(n)1(a\\261)-1(mia\\252y)-333(s)-1(i)1(\\246)-334(z)-334(tego)-334(d)1(o)-334(w)28(oli.)]TJ 0 -13.549 Td[(W\\252a\\261nie)-333(dzis)-1(i)1(a)-56(j)-333(na)-333(\\252\\241k)56(ac)27(h)-333(w)-333(c)-1(zas)-1(i)1(e)-334(obiad)1(u)-333(sz)-1(erok)28(o)-333(o)-334(t)28(ym)-333(rozpra)28(wian)1(o.)]TJ 0 -13.549 Td[(P)28(o\\252u)1(dni)1(e)-267(pr)1(z)-1(ysz\\252)-1(o)-266(u)1(paln)1(e)-1(,)-266(s\\252o\\253ce)-267(stan\\246\\252o)-267(n)1(ad)-266(g\\252o)28(w)27(ami)-266(rozpalon)1(e)-267(do)-266(b)1(ia\\252o-)]TJ -27.879 -13.55 Td[(\\261c)-1(i,)-265(nieb)-27(o)-266(w)-1(i)1(s)-1(ia\\252o)-266(b)1(ia\\252a)28(w)-1(y)1(m)-267(o)-27(d)-266(p)-27(o\\273)-1(ogi)-265(tumanem,)-266(\\273)-1(ar)-265(bu)1(c)27(h)1(a\\252)-266(kiej)-266(z)-266(pieca)-266(s)-1(tr)1(as)-1(zli-)]TJ 0 -13.549 Td[(w)28(e)-1(go,)-317(n)1(a)-56(j)1(s)-1(\\252ab)1(s)-1(zy)-317(wiater)-317(n)1(ie)-317(prze)-1(wia\\252,)-316(li\\261c)-1(ie)-317(zw)-1(i)1(s)-1(\\252y)-317(p)-27(omdla\\252e,)-317(zam)-1(i)1(lk\\252o)-317(p)1(tac)-1(t)28(w)28(o,)]TJ 0 -13.549 Td[(cie)-1(n)1(ie)-351(le\\273)-1(a\\252y)-350(c)28(h)28(ud)1(e)-351(i)-350(kr\\363tki)1(e)-1(,)-350(n)1(ie)-1(wiela)-350(c)27(hr)1(oni\\241c)-350(o)-28(d)-350(s)-1(p)1(ieki,)-350(du)1(s)-1(zno)-350(b)28(y\\252o,)-350(j)1(e)-1(n)1(o)-351(o)-28(d)]TJ 0 -13.549 Td[(p)-27(ok)28(os)-1(\\363)28(w)-399(b)1(i\\252)-399(ostry)-398(zapac)28(h)-398(tra)28(w)-399(r)1(oz)-1(p)1(ra\\273)-1(on)29(yc)27(h)1(,)-399(zb)-27(o\\273)-1(a,)-398(sady)-398(i)-398(dom)28(y)-399(sta\\252y)-398(jakb)29(y)]TJ 0 -13.549 Td[(ogarn)1(i\\246te)-365(b)1(ia\\252ym)-365(p)1(\\252om)-1(i)1(e)-1(n)1(iam)-1(i)1(;)-364(ws)-1(zys)-1(t)1(k)28(o)-365(zda)28(w)28(a\\252o)-365(si\\246)-364(roztapia\\242)-364(w)-365(r)1(oz)-1(\\273ar\\273on)28(ym)]TJ 0 -13.55 Td[(p)-27(o)27(wietrzu,)-351(tr)1(z)-1(\\246s)-1(\\241cym)-352(si\\246)-352(ki)1(e)-1(b)28(y)-351(ten)-351(w)27(ar)-351(n)1(a)-352(w)28(oln)28(y)1(m)-352(ogniu)1(,)-351(na)28(w)27(et)-351(rze)-1(k)56(a)-352(p)1(\\252yn\\246\\252a)]TJ 0 -13.549 Td[(w)28(olniej,)-444(b)-27(ez)-445(s)-1(zm)-1(eru)1(,)-444(w)27(o)-28(d)1(y)-444(b\\252ysz)-1(cza\\252)-1(y)-444(r)1(oz)-1(top)1(ion)28(ym)-444(s)-1(zkliw)28(em)-1(,)-444(a)-444(tak)-444(pr)1(z)-1(ejrzy-)]TJ\nET\nendstream\nendobj\n1800 0 obj <<\n/Type /Page\n/Contents 1801 0 R\n/Resources 1799 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1799 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1804 0 obj <<\n/Length 8870      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(564)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ste)-1(,)-369(\\273)-1(e)-370(k)56(a\\273dy)-369(kie\\252b)-370(wid)1(ni)1(a)-1(\\252)-369(p)-28(o)-27(d)-370(w\\252\\363kn)1(ist\\241)-370(p)-27(o)28(w)-1(ierzc)27(h)1(ni\\241;)-369(k)56(a\\273)-1(d)1(y)-370(k)56(am)28(yk)-370(n)1(a)-370(d)1(nie)]TJ 0 -13.549 Td[(pi)1(as)-1(zc)-1(zyst)28(ym)-454(i)-454(k)56(a\\273dy)-453(rak,)-453(gme)-1(r)1(z)-1(\\241cy)-454(si\\246)-454(w)-454(p)1(rz)-1(e\\261w)-1(i)1(e)-1(tlon)29(yc)27(h)-453(cie)-1(n)1(iac)27(h)-453(b)1(rze)-1(g\\363)28(w,)]TJ 0 -13.549 Td[(cic)27(h)1(o\\261)-1(\\242)-292(wle)-1(k)1(\\252)-1(a)-291(s)-1(i\\246)-292(n)1(ad)-292(zie)-1(miami)-292(s\\252onec)-1(zn\\241,)-291(usypi)1(a)-56(j\\241c\\241)-292(p)1(rz)-1(\\246dz\\241,)-292(j)1(e)-1(d)1(ne)-292(m)27(u)1(c)27(h)28(y)84(,)-292(co)]TJ 0 -13.549 Td[(br)1(z)-1(\\246c)-1(za\\252y)-333(k)28(o\\252o)-334(l)1(udzi.)]TJ 27.879 -13.549 Td[(Kosiarze)-374(s)-1(i)1(e)-1(d)1(z)-1(ieli)-373(nad)-373(s)-1(am\\241)-374(r)1(z)-1(ek)56(\\241,)-374(p)-27(o)-28(d)-373(k)28(\\246)-1(p)1(\\241)-374(olc)28(h)-373(w)-1(y)1(nios\\252yc)27(h)1(,)-374(wyj)1(ada)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(z)-363(d)1(w)27(o)-55(jak)28(\\363)28(w.)-362(Mateusz)-1(o)28(wi)-362(p)1(rz)-1(y)1(nies)-1(\\252a)-362(j)1(e)-1(\\261\\242)-363(Nastk)56(a,)-362(w)-1(y)1(robn)1(ik)28(om)-362(\\273)-1(a\\261)-362(Hank)56(a)-362(z)-363(Ja-)]TJ 0 -13.549 Td[(gust)28(yn)1(k)55(\\241;)-306(pr)1(z)-1(y)1(s)-1(iad)1(\\252y)-307(n)1(a)-307(tr)1(a)27(wie)-307(w)-306(s)-1(\\252o\\253cu)-306(i)-307(n)1(akry)1(w)27(a)-55(j\\241c)-307(c)27(h)29(ustam)-1(i)-306(g\\252o)28(w)-1(y)-306(s\\252uc)27(h)1(a\\252y)]TJ 0 -13.549 Td[(cie)-1(k)56(a)28(wie)-1(.)]TJ 27.879 -13.549 Td[({)-325(Ja)-325(o)-28(d)-324(p)-27(o)-28(c)-1(z\\241tku)-324(z)-1(a)28(wdy)-324(m)-1(\\363)28(wi\\252em)-326(j)1(e)-1(d)1(no,)-325(\\273e)-325(nie)-325(dzi\\261,)-325(to)-325(j)1(utro)-324(Miem)-1(cy)-325(si\\246)]TJ -27.879 -13.549 Td[(wyni)1(e)-1(\\261\\242)-334(m)27(u)1(s)-1(z\\241!)-333({)-333(m)-1(\\363)28(wi\\252)-334(M)1(ate)-1(u)1(s)-1(z)-333(w)-1(y)-333({)-333(skrzybu)1(j\\241c)-334(gar)1(ncz)-1(ek.)]TJ 27.879 -13.549 Td[({)-333(Ks)-1(i)1(\\241dz)-334(tak)-333(samo)-334(u)1(t)28(w)-1(ierd)1(z)-1(a!)-333({)-333(pr)1(z)-1(ywt\\363r)1(z)-1(y\\252a)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-415(A)-415(t)1(ak)-415(b)-27(\\246)-1(d)1(z)-1(ie,)-415(j)1(ak)-415(si\\246)-415(s)-1(p)-27(o)-28(d)1(oba)-415(d)1(z)-1(iedzico)27(wi)-414({)-415(w)27(ar)1(kn\\241\\252)-415(k)1(\\252\\363tliwie)-415(Kobu)1(s)]TJ -27.879 -13.549 Td[(rozc)-1(i)1(\\241)-28(ga)-56(j)1(\\241c)-334(si\\246)-334(p)-27(o)-28(d)-333(dr)1(z)-1(ew)27(em.)]TJ 27.879 -13.549 Td[({)-305(Jak)1(\\273)-1(e,)-305(to)-304(nie)-305(zl\\246kli)-304(s)-1(i\\246)-305(w)28(as)-1(zyc)27(h)-304(wrzas)-1(k)28(\\363)28(w)-305(i)-304(nie)-305(u)1(c)-1(iekli)1(?)-305({)-305(wtr\\241ci\\252a)-305(si\\246)-305(p)-28(o)]TJ -27.879 -13.549 Td[(sw)27(o)-55(jem)27(u)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-333(al)1(e)-334(kt\\363ry)1(\\261)-334(rze)-1(k)1(\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ko)28(w)27(al)-333(p)-27(o)28(w)-1(i)1(ada\\252)-333(w)27(cz)-1(ora)-55(j,)-333(j)1(ak)28(o)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(p)-28(ogo)-28(d)1(z)-1(i)-333(si\\246)-334(z)-334(n)1(ami.)]TJ 0 -13.55 Td[({)-333(Je)-1(n)1(o)-334(mi)-333(dziwno,)-333(\\273e)-334(Mi)1(c)27(ha\\252)-333(teraz)-334(ze)-334(ws)-1(i\\241)-333(tr)1(z)-1(yma.)]TJ 0 -13.549 Td[({)-333(W)83(\\246s)-1(zy)-333(on)-333(w)-334(t)28(ym)-333(jak)56(\\241\\261)-334(d)1(obr\\241)-333(sz)-1(tu)1(c)-1(zk)28(\\246)-334(la)-333(s)-1(i)1(e)-1(b)1(ie)-334({)-333(s)-1(y)1(kn\\246\\252a)-334(stara.)]TJ 0 -13.549 Td[({)-333(I)-334(m\\252ynar)1(z)-334(te\\273)-334(s)-1(i)1(\\246)-334(p)-27(ono)-333(w)-1(sta)28(wia\\252)-334(w)28(e)-334(d)1(w)27(orze)-334(za)-334(wsi\\241.)]TJ 0 -13.549 Td[({)-260(Wszys)-1(tk)1(ie)-260(z)-1(a)-260(n)1(ami,)-260(d)1(obro)-27(dzie)-1(j)1(e)-260(ju)1(c)27(h)28(y)-259({)-260(m)-1(\\363)28(wi\\252)-260(M)1(ate)-1(u)1(s)-1(z.)-260({)-259(P)28(o)28(w)-1(i)1(e)-1(m)-260(w)28(am)-1(,)]TJ -27.879 -13.549 Td[(lacz)-1(ego)-353(n)1(as)-1(z\\241)-353(stron\\246)-353(tr)1(z)-1(y)1(m)-1(a)-55(j\\241:)-352(k)28(o)27(w)28(alo)28(wi)-353(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-353(ob)1(ie)-1(ca\\252)-353(d)1(obr\\241)-352(ob)-28(erc)28(hapk)28(\\246)-353(za)]TJ 0 -13.55 Td[(zgo)-28(d\\246)-444(z)-445(Lip)-27(cam)-1(i,)-443(m)-1(\\252yn)1(arz)-444(s)-1(i\\246)-444(z)-1(l)1(\\246)-1(kn)1(\\241\\252,)-444(\\273)-1(e)-444(Nie)-1(mcy)-444(m)-1(og\\241)-444(p)-27(osta)27(wi\\242)-444(wiatrak)-444(n)1(a)]TJ 0 -13.549 Td[(g\\363rce)-243(k)28(o\\252o)-243(\\014)1(gury)84(,)-242(z)-1(a\\261)-243(k)56(arczm)-1(ar)1(z)-243(te)-1(\\273)-243(p)-27(omaga)-243(n)1(aro)-28(do)28(wi)-242(z)-1(e)-243(strac)28(h)28(u)-242(o)-243(siebie,)-242(dobr)1(z)-1(e)]TJ 0 -13.549 Td[(on)-333(wie,)-333(\\273)-1(e)-334(k)56(a)-55(j)-333(Miem)-1(ce)-334(si\\241d\\241,)-333(tam)-333(s)-1(i\\246)-333(ju)1(\\273)-334(\\273)-1(ad)1(e)-1(n)-333(\\233yd)1(e)-1(k)-333(n)1(ie)-334(p)-27(o\\273)-1(y)1(w)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(i)-333(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(b)-28(o)-55(j\\241)-333(s)-1(i)1(\\246)-334(c)27(h\\252op)-27(\\363)28(w,)-334(k)1(ie)-1(j)-332(o)-334(zgo)-28(d\\246)-333(z)-1(ap)-27(obi)1(e)-1(ga?...)]TJ 0 -13.549 Td[({)-333(A)-334(zgadl)1(i\\261)-1(cie,)-333(m)-1(atk)28(o,)-333(ten)-333(s)-1(i)1(\\246)-334(na)-55(jwi\\246c)-1(ej)-333(b)-27(o)-56(j)1(\\241,)-334(zarn)1(o)-334(w)28(a)-56(j)1(u)-333(wy\\252o\\273)-1(\\246...)]TJ 0 -13.55 Td[(Pr)1(z)-1(erw)28(a\\252)-334(M)1(ate)-1(u)1(s)-1(z,)-333(gdy\\273)-333(o)-28(d)-333(ws)-1(i)-333(p)-27(ok)56(az)-1(a\\252)-333(s)-1(i\\246)-333(Witek)-333(p)-28(\\246dz\\241c)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Gosp)-28(o)-28(d)1(yni)1(,)-333(a)-334(to)-333(pr)1(\\246)-1(d)1(k)28(o)-334(c)28(ho)-28(d)1(\\271)-1(cie!)-333({)-334(wrze)-1(szc)-1(za\\252)-334(j)1(u\\273)-334(z)-333(dala.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(si\\246)-334(sta\\252o?)-334(ogie\\253)-333(c)-1(zy)-333(c)-1(o?)-333({)-333(z)-1(erw)28(a\\252)-1(a)-333(si\\246)-334(tr)1(w)27(o\\273nie.)]TJ 0 -13.549 Td[({)-333(A)-334(to.)1(..)-333(to)-333(gos)-1(p)-27(o)-28(dar)1(z)-334(c)-1(zego\\261)-334(krzycz)-1(\\241!)]TJ 0 -13.549 Td[(P)28(olecia\\252a)-334(co)-333(tc)27(h)28(u)1(,)-333(nie)-334(r)1(oz)-1(u)1(m)-1(i)1(e)-1(j)1(\\241c)-334(z)-1(go\\252a,)-333(co)-334(si\\246)-334(tam)-333(s)-1(ta\\252o:)]TJ 0 -13.55 Td[(A)-431(oto)-431(co)-431(b)28(y\\252o.)-430(Mac)-1(i)1(e)-1(j)-430(ju)1(\\273)-432(o)-28(d)-430(s)-1(amego)-431(rana)-431(b)29(y\\252)-431(jak)1(i\\261)-432(d)1(z)-1(i)1(w)-1(n)29(y)83(,)-431(mat)28(yj)1(as)-1(i\\252,)]TJ -27.879 -13.549 Td[(mam)-1(r)1(ota\\252)-344(c)-1(i)1(\\246)-1(giem)-1(,)-343(z)-1(r)1(yw)27(a\\252)-344(si\\246)-344(z)-344(p)-28(o\\261c)-1(i)1(e)-1(li,)-343(to)-344(sz)-1(u)1(k)55(a\\252)-344(cz)-1(ego\\261)-344(k)28(o\\252)-1(o)-343(s)-1(iebi)1(e)-1(,)-344(\\273e)-344(Hank)56(a)]TJ 0 -13.549 Td[(o)-28(d)1(c)27(ho)-27(dz\\241c)-416(na)-416(\\252\\241ki)-415(pr)1(z)-1(y)1(k)55(aza\\252a)-416(J\\363zc)-1(e)-416(p)1(iln)1(ie)-1(j)1(s)-1(ze)-416(na)-415(niego)-416(b)1(ac)-1(ze)-1(n)1(ie.)-416(Dziew)27(cz)-1(yn)1(a)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)-417(zagl\\241da\\252a)-417(d)1(o)-417(niego,)-417(le\\273)-1(a\\252)-417(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-417(a\\273)-417(dop)1(iero)-417(w)-417(c)-1(zas)-1(ie)-417(obi)1(adu)-417(zac)-1(z\\241\\252)]TJ 0 -13.549 Td[(wrze)-1(sz)-1(cz)-1(e\\242)-334(wni)1(e)-1(b)-27(og\\252os)-1(y)84(.)]TJ 27.879 -13.549 Td[(Gd)1(y)-333(Hank)56(a)-334(p)1(rzylec)-1(i)1(a\\252)-1(a,)-333(j)1(e)-1(sz)-1(cze)-334(s)-1(i)1(e)-1(dzia\\252)-333(na)-333(literk)56(ac)27(h)-332(i)-334(w)28(o\\252a\\252:)]TJ 0 -13.55 Td[({)-333(Ka)-56(j)1(\\261)-1(cie)-334(mi)-333(bu)1(t)28(y)-333(z)-1(ap)-27(o)-28(dzieli!)-333({)-333(da)28(w)27(a)-55(jcie)-334(p)1(r\\246dze)-1(j)1(.)]TJ 0 -13.549 Td[({)-311(Zaraz)-312(p)1(rzynies\\241)-312(z)-312(k)28(omory)84(,)-311(z)-1(ar)1(az)-1(.)1(..)-311({)-312(u)1(s)-1(p)1(ak)56(a)-56(j)1(a\\252)-1(a)-311(wyl\\246k\\252a,)-311(gdy)1(\\273)-312(wyda)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(ca\\252)-1(k)1(ie)-1(m)-333(pr)1(z)-1(ytomn)28(y)-333(i)-333(gro\\271ni)1(e)-334(to)-28(cz)-1(y\\252)-333(o)-28(cz)-1(ami.)]TJ 27.879 -13.549 Td[({)-433(Zas)-1(p)1(a\\252e)-1(m,)-433(psiac)27(h)1(m)-1(a\\242)-433({)-434(p)1(rze)-1(ziew)-1(n)1(\\241\\252)-434(sze)-1(rok)28(o:)-433({)-433(Ju)1(\\273)-434(bi)1(a\\252y)-433(dzie)-1(\\253)1(,)-433(a)-434(wy)]TJ -27.879 -13.549 Td[(\\261pita.)-333(Ku)1(ba)-333(ni)1(e)-1(c)27(h)-332(bron)29(y)-334(szykuj)1(e)-1(,)-333(sia\\242)-334(p)-27(o)-56(j)1(e)-1(d)1(z)-1(i)1(e)-1(m)-334({)-333(rozk)56(az)-1(y)1(w)27(a\\252.)]TJ 27.879 -13.55 Td[(St)1(ali)-337(p)1(rze)-1(d)-336(ni)1(m)-1(,)-336(nie)-337(wiedz\\241c)-1(,)-336(c)-1(o)-336(p)-28(o)-28(cz\\241\\242)-1(,)-336(gdy\\273)-337(n)1(araz)-337(przec)27(h)28(yl)1(i\\252)-337(s)-1(i)1(\\246)-337(i)-337(lec)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(b)-27(e)-1(zw\\252)-1(ad)1(ni)1(e)-334(na)-333(z)-1(i)1(e)-1(mi\\246.)]TJ\nET\nendstream\nendobj\n1803 0 obj <<\n/Type /Page\n/Contents 1804 0 R\n/Resources 1802 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1789 0 R\n>> endobj\n1802 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1807 0 obj <<\n/Length 9534      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(565)]TJ -330.353 -35.866 Td[({)-384(Nie)-385(b)-27(\\363)-56(j)-383(s)-1(i\\246,)-384(Han)28(u\\261...)-384(zem)-1(gli)1(\\252)-1(o)-384(me)-1(.)1(..)-384(An)28(tek)-384(w)-385(p)-27(olu,)-384(co?)-384(W)-384(p)-28(olu)1(?)-385({)-384(p)-27(o-)]TJ -27.879 -13.549 Td[(wtarza\\252,)-333(kie)-1(j)-332(go)-334(zno)28(wu)-333(u\\252o\\273yli)-333(n)1(a)-334(p)1(ie)-1(r)1(z)-1(yn)1(ie.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(o)-28(d)-333(\\261w)-1(i)1(tania.)1(..)-333({)-334(j)1(\\241k)56(a\\252a)-334(b)-27(o)-56(j)1(\\241c)-334(si\\246)-334(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\242)-1(.)]TJ 0 -13.549 Td[(Roz)-1(gl)1(\\241da\\252)-360(si\\246)-360(b)28(ystro)-359(i)-360(ci\\246gie)-1(m)-360(gad)1(a\\252,)-360(al)1(e)-361(co)-360(j)1(e)-1(d)1(no)-359(s)-1(\\252o)28(w)27(o)-359(rze)-1(k\\252)-359(do)-360(r)1(z)-1(ec)-1(zy;)]TJ -27.879 -13.549 Td[(to)-314(dzies)-1(i\\246\\242)-315(ca\\252kiem)-315(p\\252an)29(yc)27(h)-314(i)-314(zno)28(wu)-314(j\\241\\252)-314(si\\246)-315(gdzies)-1(i)1(k)-314(w)-1(yr)1(yw)28(a\\242)-1(,)-314(c)27(h)1(c)-1(i)1(a\\252)-315(si\\246)-315(u)1(biera\\242)]TJ 0 -13.55 Td[(i)-441(o)-441(b)1(ut)28(y)-440(w)27(o\\252a\\252,)-441(to)-440(c)27(h)28(wyta\\252)-441(si\\246)-441(z)-1(a)-441(g\\252o)28(w)28(\\246)-442(i)-440(tak)-441(pr)1(z)-1(era\\271liwie)-441(j\\246c)-1(za\\252,)-441(j)1(a\\273)-1(e)-441(s)-1(i)1(\\246)-442(n)1(a)]TJ 0 -13.549 Td[(dr)1(ogi)-315(roz)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o.)-315(Han)1(k)55(a)-315(rozumiej\\241c,)-316(j)1(ak)28(o)-316(n)1(a)-316(k)28(on)1(iec)-316(ju)1(\\273)-316(m)27(u)-315(p)1(rz)-1(y)1(c)27(ho)-27(dzi,)-315(k)55(aza\\252a)]TJ 0 -13.549 Td[(go)-333(przenie\\261)-1(\\242)-334(d)1(o)-333(c)27(ha\\252u)1(p)28(y)-333(i)-333(przed)-333(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m)-334(p)-27(os\\252a\\252)-1(a)-333(p)-27(o)-334(k)1(s)-1(i\\246dza.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-308(wkr\\363tce)-308(z)-308(P)28(anem)-308(Je)-1(zusem)-1(,)-307(ale)-308(go)-308(j)1(e)-1(n)1(o)-308(\\261)-1(wi\\246t)28(ymi)-308(olejami)-307(nama-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\252.)]TJ 27.879 -13.549 Td[({)-333(Wi\\246c)-1(ej)-333(m)27(u)-333(j)1(u\\273)-334(n)1(ie)-334(p)-27(otrzeba,)-333(lad)1(a)-334(go)-28(d)1(z)-1(i)1(na)-333(u\\261nie...)-333({)-333(p)-27(o)27(wiedzia\\252.)]TJ 0 -13.55 Td[(Na)-392(o)-27(dwiec)-1(z\\363r)-392(n)1(as)-1(z\\252o)-392(si\\246)-392(nar)1(o)-28(du)1(,)-391(b)-28(o)-391(z)-1(d)1(a)27(w)28(a\\252)-392(si\\246)-392(k)28(ona\\242,)-391(\\273)-1(e)-392(Han)1(k)55(a)-391(ju)1(\\273)-392(m)27(u)]TJ -27.879 -13.549 Td[(gromni)1(c)-1(\\246)-334(wt)28(yk)56(a\\252a,)-333(ale)-334(si\\246)-334(j)1(ak)28(o\\261)-334(usp)-27(ok)28(oi\\252)-334(i)-333(zas)-1(n)1(\\241\\252.)]TJ 27.879 -13.549 Td[(Za\\261)-365(naza)-56(j)1(utrz)-365(b)29(y\\252o)-365(tak)-364(s)-1(amo,)-365(p)-27(oz)-1(n)1(a)28(w)27(a\\252)-365(l)1(ud)1(z)-1(i,)-364(rozm)-1(a)28(wia\\252)-365(p)1(rzytomnie,)-365(to)]TJ -27.879 -13.549 Td[(ca\\252)-1(e)-303(go)-28(d)1(z)-1(in)29(y)-303(le\\273)-1(a\\252)-303(ki)1(e)-1(j)-302(tru)1(p.)-303(S)1(iedzia\\252a)-303(przy)-303(n)1(im)-303(k)28(o)27(w)28(alo)28(w)28(a)-303(nieo)-28(dst\\246pn)1(ie)-1(,)-302(a)-303(Jagu-)]TJ 0 -13.549 Td[(st)27(y)1(nk)56(a)-333(c)27(hcia\\252a)-333(go)-334(ok)56(adza\\242.)]TJ 27.879 -13.55 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-333(jes)-1(zc)-1(ze)-334(ogie\\253)-333(z)-1(ap)1(r\\363sz)-1(y)1(c)-1(ie.)]TJ 0 -13.549 Td[(Burk)1(n\\241\\252)-358(ni)1(e)-1(sp)-28(o)-27(dziani)1(e)-1(,)-358(a)-358(gd)1(y)-358(w)-358(p)-27(o\\252)-1(u)1(dn)1(ie)-358(przylec)-1(i)1(a\\252)-358(k)28(o)27(w)28(al)-358(i)-358(zagl\\241d)1(a\\252)-358(m)27(u)]TJ -27.879 -13.549 Td[(w)-334(p)1(rzyw)28(arte)-334(o)-28(cz)-1(y)84(,)-333(to)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(zno)28(wu)-333(z)-334(d)1(z)-1(iwn)28(y)1(m)-334(pr)1(z)-1(e\\261)-1(miec)27(h)1(e)-1(m:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(f)1(ras)-1(u)1(j)-333(si\\246)-1(,)-333(Mi)1(c)27(ha\\252.)1(..)-333(ju)1(\\273)-334(te)-1(r)1(az)-334(w)28(am)-334(do)-55(jd)1(\\246)-1(..)1(.)-334(n)1(iez)-1(ad)1(\\252ugo)-333(do)-55(jd\\246...)]TJ 0 -13.549 Td[(Od)1(w)-1(r)1(\\363)-28(ci\\252)-305(si\\246)-304(do)-304(\\261)-1(cian)28(y)-304(i)-304(wi\\246c)-1(ej)-304(n)1(i\\242)-305(n)1(ie)-305(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252,)-304(al)1(e)-305(\\273e)-305(wida\\242)-304(b)28(y\\252o,)-304(jak)28(o)]TJ -27.879 -13.55 Td[(s\\252)-1(ab)1(ni)1(e)-288(i)-287(c)-1(or)1(az)-288(bar)1(z)-1(ej)-287(zapad)1(a,)-287(to)-288(go)-287(j)1(u\\273)-288(p)1(iln)1(o)27(w)28(ali,)-287(a)-287(g\\252\\363)28(wnie)-287(Jagusia,)-287(z)-288(kt)1(\\363r\\241)-287(te)-1(\\273)]TJ 0 -13.549 Td[(wypr)1(a)28(w)-1(i)1(a\\252)-1(y)-333(si\\246)-334(j)1(akie\\261)-334(dziwno\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(t)1(a\\252)-1(a)-271(rap)1(te)-1(m)-271(db)1(a\\242)-272(o)-272(matk)28(\\246,)-271(z)-1(d)1(a)-56(j\\241c)-271(j\\241)-271(c)-1(a\\252ki)1(e)-1(m)-272(n)1(a)-272(J)1(\\246)-1(d)1(rk)56(a,)-271(i)-272(k)56(amieniem)]TJ -27.879 -13.549 Td[(zale)-1(g\\252a)-333(pr)1(z)-1(y)-333(m\\246)-1(\\273u.)]TJ 27.879 -13.549 Td[({)-348(S)1(am)-1(a)-347(ic)27(h)-347(przyp)1(iln)28(u)1(j\\246,)-348(to)-347(m)-1(o)-55(je)-348(pr)1(a)27(w)28(o!)-348({)-347(rz)-1(ek\\252a)-348(Han)1(c)-1(e)-348(i)-348(M)1(agdzie)-348(z)-348(tak)55(\\241)]TJ -27.879 -13.55 Td[(mo)-28(c)-1(\\241,)-333(i)1(\\273)-334(s)-1(i)1(\\246)-334(nie)-333(prze)-1(ciwi\\252y)84(,)-333(ile)-334(co)-334(k)56(a\\273da)-333(dosy\\242)-334(mia\\252a)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(r)1(ob)-28(ot)28(y)84(.)]TJ 27.879 -13.549 Td[(I)-416(ju)1(\\273)-417(si\\246)-416(ni)1(e)-417(ru)1(s)-1(zy\\252a)-416(z)-416(c)27(h)1(a)-1(\\252u)1(p)28(y)84(,)-416(jak)1(i\\261)-417(g\\252u)1(c)27(h)28(y)-416(strac)28(h)-416(tr)1(z)-1(yma\\252)-416(j\\241)-415(kieb)28(y)-416(na)]TJ -27.879 -13.549 Td[(u)28(wi\\246z)-1(i)1(,)-334(\\273e)-334(n)1(ie)-334(p)-27(oredzi\\252a)-334(o)-27(dbi)1(e)-1(\\273y\\242)-334(c)28(horego)-333(jak)-333(pr)1(z)-1(\\363)-28(d)1(z)-1(i)1(.)]TJ 27.879 -13.549 Td[(A)-301(c)-1(a\\252a)-301(w)-1(i)1(e)-1(\\261)-302(b)28(y)1(\\252a)-302(n)1(a)-302(\\252\\241k)56(ac)27(h)1(,)-302(sian)1(ok)28(os)-1(y)-301(s)-1(z\\252y)-301(niepr)1(z)-1(erw)28(anie,)-301(o)-28(d)-301(s)-1(amego)-302(\\261wi-)]TJ -27.879 -13.549 Td[(tan)1(ia,)-348(sk)28(oro)-348(jeno)-347(pierws)-1(ze)-348(z)-1(or)1(z)-1(e)-348(nieb)-27(o)-348(z)-1(r)1(umieni\\252y)84(,)-348(c)-1(a\\252y)-347(nar\\363)-27(d)-348(tam)-348(ci\\241)-28(gn)1(\\241\\252)-1(,)-347(z)-1(a\\261)]TJ 0 -13.55 Td[(rz\\246)-1(d)1(y)-408(c)27(h)1(\\252)-1(op)-27(\\363)28(w,)-408(rozdzian)28(yc)28(h)-408(do)-408(k)28(os)-1(zul)1(i)-408(kiej)-408(te)-409(sio)-28(d)1(\\252ate)-409(b)-27(o)-28(c)-1(i)1(an)28(y)83(,)-408(ob)1(s)-1(i)1(ad\\252y)-408(\\252\\246)-1(gi)1(,)]TJ 0 -13.549 Td[(ostrzy\\252y)-323(\\273e)-1(l)1(e)-1(\\271c)-1(a)-322(i,)-323(b)1(\\252ys)-1(k)56(a)-55(j\\241c)-323(k)28(osam)-1(i,)-322(ca\\252)-1(e)-323(d)1(nie)-323(siek\\252y)-323(zapami\\246tale,)-323(ca\\252e)-323(dni)1(e)-323(te)-1(\\273)]TJ 0 -13.549 Td[(jeno)-333(s\\252yc)27(h)1(a)-1(\\242)-333(b)28(y\\252o)-333(brz\\246ki)-333(k)28(os)-334(nak)1(u)28(w)27(an)29(yc)27(h)-333(i)-333(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(wki)-333(d)1(z)-1(ieuc)28(h)-333(grab)1(i\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Zielone,)-310(pu)1(s)-1(zyste)-311(r)1(\\363)27(wn)1(ie)-311(\\252\\241k)-310(r)1(oi\\252y)-310(s)-1(i)1(\\246)-311(o)-28(d)-309(lud)1(z)-1(i)-310(a)-310(p)-27(obr)1(z)-1(\\246k)28(\\363)28(w)-311(i)-310(gw)28(ar\\363)28(w,)-310(mi-)]TJ -27.879 -13.549 Td[(gota\\252y)-330(pasiaste)-331(p)-27(ortk)1(i,)-330(c)-1(ze)-1(r)1(w)27(on)1(e)-331(w)28(e)-1(\\252n)1(iaki)-330(ni)1(b)28(y)-330(mak)28(o)27(w)28(e)-331(k)1(w)-1(i)1(at)27(y)-330(p)1(\\252on\\246\\252y)-330(w)-331(s\\252o\\253-)]TJ 0 -13.549 Td[(cu,)-379(pies)-1(n)1(e)-1(cz)-1(k)1(i)-380(si\\246)-380(rozlega\\252)-1(y)-379(h)28(u)1(kliwie,)-379(dzw)27(oni)1(\\252y)-380(k)28(osy)83(,)-379(bu)1(c)27(h)1(a\\252)-1(y)-379(\\261m)-1(iec)27(h)29(y)-380(w)28(e)-1(so\\252e)-380(i)]TJ 0 -13.55 Td[(ws)-1(z\\246)-1(d)1(y)-235(s)-1(z\\252a)-235(o)-28(c)27(h)1(otna,)-235(siarcz)-1(y)1(s)-1(ta)-235(rob)-27(ota,)-235(a)-235(p)-27(o)-28(d)-235(k)56(a\\273den)-235(wie)-1(cz)-1(\\363r)1(,)-235(kiej)-235(sc)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ione)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(e)-289(k\\252oni\\252o)-289(si\\246)-290(nad)-288(b)-28(or)1(y)-290(i)-289(p)-27(o)28(wie)-1(tr)1(z)-1(e)-289(z)-1(a)28(wrza\\252)-1(o)-289(kr)1(z)-1(yk)1(ie)-1(m)-289(ptact)28(w)27(a,)-289(ki)1(e)-1(j)-289(wsz)-1(yst-)]TJ 0 -13.549 Td[(kie)-423(zb)-28(o\\273a)-423(i)-423(t)1(ra)28(w)-1(y)-422(ja\\273e)-423(s)-1(i\\246)-423(trz\\246s)-1(\\252y)-423(o)-27(d)-423(m)28(uzyki)-423(\\261wiers)-1(zcz)-1(\\363)28(w,)-423(a)-423(mo)-28(cz)-1(ary)-422(z)-1(agr)1(a\\252y)]TJ 0 -13.549 Td[(\\273abimi)-363(r)1(e)-1(c)27(h)1(otami,)-363(ki)1(e)-1(j)-362(bu)1(c)27(hn)1(\\246)-1(\\252y)-362(z)-1(ap)1(ac)27(h)28(y)84(,)-363(j)1(akb)28(y)-363(ca\\252a)-363(zie)-1(mia)-363(b)29(y\\252a)-363(tryb)1(ul)1(arz)-1(em,)]TJ 0 -13.549 Td[(to)-28(cz)-1(y)1(\\252y)-485(si\\246)-485(p)-28(o)-485(d)1(rogac)28(h)-485(ci\\246\\273)-1(ki)1(e)-1(,)-484(opas\\252)-1(e)-485(w)28(oz)-1(y)-484(z)-1(e)-485(sianem,)-485(wracali)-485(ze)-485(\\261)-1(p)1(ie)-1(w)28(ami)]TJ 0 -13.55 Td[(k)28(osiarze)-1(,)-441(a)-440(na)-441(p)-27(o\\273)-1(\\363\\252k\\252yc)28(h,)-441(zdept)1(an)28(yc)27(h)-440(wyc)-1(i)1(nk)56(ac)27(h)-440(rozs)-1(iad)1(a\\252y)83(,)-441(si\\246)-441(g\\246)-1(sto)-441(k)28(op)1(ic)-1(e)]TJ 0 -13.549 Td[(i)-394(s)-1(togi,)-394(ki)1(e)-1(j)-394(te)-395(ku)1(m)27(y)-394(p)-28(o)-27(duf)1(a\\252e)-395(pr)1(z)-1(ysiad)1(a)-56(j\\241c)-395(d)1(o)-395(cic)27(h)1(e)-1(j)-394(p)-27(ogw)27(ar)1(y)83(,)-394(a)-395(mi\\246dzy)-395(n)1(imi)]TJ\nET\nendstream\nendobj\n1806 0 obj <<\n/Type /Page\n/Contents 1807 0 R\n/Resources 1805 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1805 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1811 0 obj <<\n/Length 8864      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(566)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(br)1(o)-28(dzi\\252y)-293(b)-27(o)-28(\\242ki,)-293(cz)-1(a)-55(jki)-292(k)28(o\\252)-1(o)28(w)28(a\\252y)-293(z)-294(\\273a\\252os)-1(n)28(y)1(m)-294(kwil)1(e)-1(n)1(ie)-1(m)-293(i)-293(b)1(ia\\252e)-294(mg\\252y)-293(wp)-28(e\\252z)-1(a\\252y)-293(o)-28(d)]TJ 0 -13.549 Td[(bagn)1(isk.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ez)-447(ot)28(w)28(arte)-446(o)-1(k)1(na)-446(Boryn)1(o)27(w)28(e)-1(j)-445(c)27(h)1(a\\252)-1(u)1(p)28(y)-446(w)28(c)-1(isk)56(a\\252y)-446(s)-1(i\\246)-446(te)-447(wsz)-1(ystkie)-446(g\\252os)-1(y)]TJ -27.879 -13.549 Td[(lu)1(dzi)-336(i)-336(p)-27(\\363l,)-336(w)28(e)-1(se)-1(l)1(ne)-337(g\\252osy)-336(\\273yc)-1(i)1(a)-336(i)-336(tru)1(du)-336(wr)1(az)-337(z)-336(k)55(ad)1(z)-1(i)1(e)-1(ln)29(ym)-1(i)-335(w)27(on)1(iam)-1(i)-335(z)-1(b)-27(\\363\\273)-337(i)-335(\\252)-1(\\241k)1(,)]TJ 0 -13.549 Td[(i)-333(s)-1(\\252o\\253)1(c)-1(a,)-333(j)1(e)-1(n)1(o)-334(Jagu)1(s)-1(i)1(a)-334(b)28(y)1(\\252a)-334(g\\252u)1(c)27(ha)-333(na)-333(ws)-1(zystk)28(o.)]TJ 27.879 -13.55 Td[(W)-428(i)1(z)-1(b)1(ie)-429(cic)28(ho)-428(b)28(y\\252o)-428(i)-427(m)-1(ar)1(t)28(w)27(o,)-428(p)1(rze)-1(z)-428(krze,)-428(os)-1(\\252an)1(ia)-56(j)1(\\241c)-1(e)-428(o)-28(d)-427(\\273)-1(ar)1(\\363)27(w,)-428(sia\\252)-428(si\\246)]TJ -27.879 -13.549 Td[(zie)-1(l)1(ona)28(wy)83(,)-468(se)-1(n)1(n)28(y)-468(mrok,)-468(b)1(rz\\246)-1(cz)-1(a\\252y)-468(m)28(uc)28(h)28(y)-468(i)-468(\\212apa,)-467(w)27(aru)1(j\\241cy)-468(pr)1(z)-1(y)-468(gosp)-27(o)-28(dar)1(z)-1(u)1(,)]TJ 0 -13.549 Td[(zie)-1(wn)1(\\241\\252)-351(ni)1(e)-1(ki)1(e)-1(d)1(y)-350(i)-351(sz)-1(ed\\252)-350(si\\246)-351(p)-27(o\\252)-1(asi\\242)-351(d)1(o)-351(J)1(agn)28(y)83(,)-350(sie)-1(d)1(z)-1(\\241cej)-350(c)-1(a\\252e)-351(go)-28(d)1(z)-1(i)1(n)28(y)-350(b)-28(ez)-351(ru)1(c)27(h)28(u)]TJ 0 -13.549 Td[(i)-333(m)27(y)1(\\261)-1(li)1(,)-334(zgo\\252a)-333(do)-333(s)-1(\\252up)1(a)-333(p)-28(o)-28(d)1(obn)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Maciej)-385(j)1(u\\273)-385(nie)-385(m)-1(\\363)28(wi\\252,)-385(n)1(ie)-386(j)1(\\246)-1(cza\\252)-1(,)-384(le)-1(\\273a\\252)-385(s)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-386(i)-385(t)28(yl)1(k)28(o)-385(c)-1(i\\246giem)-386(w\\252\\363)-28(cz)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)1(m)-1(a;)-407(te)-408(jasne)-408(\\261lepie,)-407(b\\252ysz)-1(cz)-1(\\241ce)-408(kiej)-407(s)-1(zklan)1(e)-408(ga\\252y)83(,)-407(c)27(h)1(o)-28(dzi\\252y)-407(z)-1(a)-407(ni\\241)-407(z)-408(takim)]TJ 0 -13.55 Td[(up)-27(orem)-334(i)-333(tak)-333(n)1(a)-334(wskro\\261)-334(p)1(rze)-1(wierca\\252y)-334(k)1(ie)-1(j)-332(z)-1(imne)-333(no\\273e)-1(,)]TJ 27.879 -13.549 Td[(Na)-395(pr)1(\\363\\273)-1(n)1(o)-396(si\\246)-395(o)-28(dwraca\\252a,)-395(na)-395(pr)1(\\363\\273)-1(n)1(o)-395(c)27(hcia\\252a)-395(z)-1(ap)-27(omnie\\242)-1(,)-394(patrzy\\252y)-395(z)-396(k)56(a\\273-)]TJ -27.879 -13.549 Td[(dego)-391(k)56(\\241ta,)-390(w)-391(p)-27(o)27(wietrzu)-390(s)-1(i\\246)-391(u)1(nosi\\252y)-391(i)-390(\\261w)-1(ieci\\252y)-391(j)1(e)-1(d)1(nak)28(o)-391(strasznie)-391(i)-390(tak)-391(ci\\241)-28(gn)1(\\241c)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-1(p)1(rze)-1(p)1(arc)-1(i)1(e)-1(,)-342(\\273e)-343(da)28(w)27(a\\252a)-342(s)-1(i)1(\\246)-343(na)-342(ic)27(h)-342(w)28(ol\\246,)-343(p)1(atrz\\241c)-343(w)-343(n)1(ie)-343(kieb)28(y)-342(w)-343(p)1(rze)-1(p)1(a\\261)-1(cie)-343(ni)1(e)-1(-)]TJ 0 -13.549 Td[(pr)1(z)-1(ejr)1(z)-1(an)1(e)-1(.)]TJ 27.879 -13.55 Td[(A)-333(niekiedy)84(,)-333(jakb)29(y)-333(w)-1(y)1(ryw)28(a)-56(j\\241c)-333(s)-1(i\\246)-333(z)-1(e)-334(strasznego)-334(sn)28(u,)-333(b)1(\\252aga\\252)-1(a)-333(\\273a\\252o\\261)-1(n)1(ie)-1(:)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(tak)-333(n)1(ie)-334(p)1(atrzc)-1(ie,)-333(b)-28(o)-333(mi)-333(dusz\\246)-334(wywle)-1(cz)-1(ecie)-1(,)-333(n)1(ie)-334(pat)1(rz)-1(cie!)]TJ 0 -13.549 Td[(Mu)1(s)-1(i)1(a\\252)-360(dos\\252ys)-1(ze)-1(\\242,)-360(gd)1(y\\273)-360(dr)1(\\273)-1(a\\252)-360(n)1(iec)-1(o,)-359(t)27(w)28(arz)-360(m)28(u)-360(si\\246)-360(kur)1(c)-1(zy\\252a)-360(w)-360(j)1(akim\\261)-360(nie-)]TJ -27.879 -13.549 Td[(m)27(y)1(m)-313(kr)1(z)-1(yk)1(u,)-312(o)-28(cz)-1(y)-312(p)1(atrzy\\252y)-312(jes)-1(zc)-1(ze)-313(strasz)-1(n)1(ie)-1(j)-311(i)-312(p)-28(o)-312(s)-1(i)1(n)28(yc)27(h)-311(p)-28(oli)1(c)-1(zk)56(ac)27(h)-312(to)-28(cz)-1(y)1(\\252y)-312(s)-1(i\\246)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kimi)-333(krop)1(lami)-333(\\252)-1(zy)84(.)]TJ 27.879 -13.55 Td[(Ucie)-1(k)56(a\\252a)-333(w)-1(t)1(e)-1(d)1(y)-334(n)1(a)-333(\\261)-1(wiat,)-333(strac)27(h)-333(j)1(\\241)-333(w)-1(y)1(gania\\252.)]TJ 0 -13.549 Td[(P)28(atr)1(z)-1(y\\252a)-333(zz)-1(a)-333(dr)1(z)-1(ew)-334(n)1(a)-334(\\252\\241ki,)-333(p)-27(e\\252)-1(n)1(e)-334(n)1(aro)-28(d)1(u)-333(i)-333(radosnej)-333(wrza)27(wy)84(.)]TJ 0 -13.549 Td[(I)-333(o)-28(dc)28(ho)-28(d)1(z)-1(i\\252a)-333(z)-334(p)1(\\252ac)-1(ze)-1(m.)]TJ 0 -13.549 Td[(Sz\\252a)-303(d)1(o)-303(matki,)-302(ale)-303(ledwie)-303(g\\252o)27(w)28(\\246)-303(w)27(etkn)1(\\246)-1(\\252a)-303(d)1(o)-303(ciem)-1(n)1(e)-1(j)-302(izb)28(y)83(,)-302(ledwie)-303(j)1(\\241)-303(o)28(w)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(zapac)27(h)-333(l)1(e)-1(k)28(\\363)28(w,)-333(c)-1(of)1(a\\252)-1(a)-333(si\\246)-334(p)-27(o\\261)-1(p)1(ies)-1(znie:)]TJ 27.879 -13.55 Td[(I)-333(z)-1(n)1(o)27(wu)-333(p)1(\\252ak)55(a\\252a.)]TJ 0 -13.549 Td[(T)83(o)-265(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-264(z)-1(a)-265(d)1(om)-265(i)-265(ni)1(e)-1(s\\252a)-265(s)-1(i)1(\\246)-266(t\\246skliwymi)-265(o)-27(c)-1(zym)-1(a)-264(p)-28(o)-264(\\261)-1(wiec)-1(ie)-265(sz)-1(eroki)1(m)-1(.)]TJ -27.879 -13.549 Td[(I)-341(p)1(\\252ak)56(a\\252)-1(a)-340(wte)-1(d)1(y)-340(jes)-1(zc)-1(ze)-341(\\273alniej,)-340(sm)27(u)1(tniej)-340(i)-340(b)-28(ol)1(e)-1(\\261niej,)-340(j)1(ak)28(o)-341(ta)-340(ptaszk)55(a)-340(z)-341(p)-27(o\\252am)-1(a-)]TJ 0 -13.549 Td[(n)28(ymi)-333(skrzyd\\252ami)-333(os)-1(ta)28(wion)1(a)-334(p)1(rze)-1(z)-334(stado,)-333(sk)56(ar\\273)-1(y)1(\\252a)-334(si\\246)-334(r)1(z)-1(ew)-1(l)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(I)-378(tak)-379(b)-27(ez)-379(pr)1(z)-1(em)-1(i)1(an)-378(s)-1(z\\252y)-379(d)1(ni)1(e)-379(z)-1(a)-378(dn)1(iami,)-378(Hank)56(a)-379(w)28(ci\\241\\273)-379(b)28(y\\252a)-378(z)-1(a)-55(j\\246ta)-378(s)-1(ian)1(o-)]TJ -27.879 -13.55 Td[(k)28(osam)-1(i)-333(n)1(a)-334(r)1(\\363)27(wn)1(i)-334(z)-333(c)-1(a\\252\\241)-333(w)-1(si\\241,)-333(d)1(opiero)-333(trze)-1(ciego)-334(d)1(nia)-333(zos)-1(ta\\252a)-333(w)-334(d)1(om)27(u)-333(o)-28(d)-332(rana.)]TJ 27.879 -13.549 Td[({)-340(Sob)-27(ota,)-340(to)-340(ju)1(\\273)-341(d)1(z)-1(isia)-55(j)-340(An)28(tek)-340(wr\\363)-28(ci)-340(z)-341(p)-27(e)-1(wno\\261ci\\241!)-340({)-340(rz)-1(ek\\252a)-340(rad)1(o\\261)-1(n)1(ie)-1(,)-340(szy-)]TJ -27.879 -13.549 Td[(ku)1(j\\241c)-334(d)1(om)-334(n)1(a)-334(p)1(rz)-1(y)1(j\\246c)-1(ie)-333(m)-1(\\246\\273)-1(a.)]TJ 27.879 -13.549 Td[(P)28(o\\252u)1(dni)1(e)-257(ju)1(\\273)-257(p)1(rze)-1(sz)-1(\\252o,)-256(a)-256(jego)-256(jes)-1(zc)-1(ze)-257(n)1(ie)-257(b)28(y)1(\\252)-1(o,)-256(Han)1(k)56(a)-257(wygl)1(\\241da\\252a)-256(z)-1(a)-256(k)28(o\\261c)-1(i\\363\\252,)]TJ -27.879 -13.549 Td[(a\\273)-334(n)1(a)-334(top)-27(olo)28(w)28(\\241)-334(sz)-1(\\252a)-333(patr)1(z)-1(e\\242)-1(,)-333(al)1(e)-334(pu)1(s)-1(to)-333(tam)-334(b)29(y\\252o)-334(i)-333(cic)27(h)1(o.)]TJ 27.879 -13.549 Td[(Lud)1(z)-1(i)1(e)-314(\\261pies)-1(zni)1(e)-1(j)-313(zac)-1(z\\246)-1(l)1(i)-313(z)-1(w)28(oz)-1(i)1(\\242)-314(s)-1(i)1(ano,)-313(gdy)1(\\273)-314(mia\\252o)-313(s)-1(i\\246)-313(na)-313(o)-28(d)1(m)-1(ian)1(\\246)-1(,)-313(k)28(ok)28(ot)28(y)]TJ -27.879 -13.55 Td[(pi)1(a\\252y)83(,)-265(s)-1(\\252o\\253ce)-266(bar)1(z)-1(ej)-266(d)1(opiek)56(a\\252o,)-266(stron)1(am)-1(i)-265(wis)-1(i)1(a\\252)-1(y)-265(c)-1(i)1(\\246)-1(\\273kie)-266(grad)1(o)28(w)27(e)-266(c)27(h)1(m)27(u)1(ry)-266(i)-265(wiater)]TJ 0 -13.549 Td[(zryw)28(a\\252)-334(si\\246)-334(k)28(o\\252uj)1(\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Wygl)1(\\241dali)-363(bu)1(rzy)-364(z)-364(u)1(lew)27(\\241,)-363(a)-364(j)1(e)-1(n)1(o)-364(spad)1(\\252)-364(kr\\363t)1(ki,)-363(c)27(ho)-27(c)-1(ia\\273)-364(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(y)-363(des)-1(zc)-1(z,)-363(w)]TJ -27.879 -13.549 Td[(mig)-306(w)-1(y)1(pit)28(y)-306(pr)1(z)-1(ez)-307(spiec)-1(zon\\241)-306(zie)-1(mi\\246,)-306(\\273)-1(e)-307(t)28(y)1(le)-307(b)28(y\\252o)-306(z)-307(n)1(ie)-1(go)-306(p)-27(o)-28(c)-1(i)1(e)-1(c)28(h)28(y)83(,)-306(co)-307(si\\246)-307(o)-27(d\\261w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(\\273y\\252o)-334(p)-27(o)28(wie)-1(tr)1(z)-1(e.)]TJ 27.879 -13.55 Td[(Ale)-312(wiec)-1(z\\363r)-311(przysz)-1(ed\\252)-312(n)1(iec)-1(o)-311(c)27(h\\252o)-28(d)1(ni)1(e)-1(j)1(s)-1(zy)83(,)-311(pac)28(hni)1(a\\252o)-312(s)-1(i)1(anem)-312(i)-312(ziem)-1(i)1(\\241)-312(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(mo)-28(c)-1(zon\\241,)-410(p)-28(o)-411(d)1(rogac)27(h)-410(le\\273)-1(a\\252y)-411(g\\246s)-1(te)-411(mroki,)-410(ks)-1(i)1(\\246)-1(\\273yc)-412(j)1(e)-1(szc)-1(ze)-412(n)1(ie)-412(wsc)27(ho)-27(dzi\\252,)-411(ni)1(e)-1(b)-27(o)]TJ\nET\nendstream\nendobj\n1810 0 obj <<\n/Type /Page\n/Contents 1811 0 R\n/Resources 1809 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1809 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1814 0 obj <<\n/Length 9208      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(567)]TJ -358.232 -35.866 Td[(wisia\\252o)-380(cie)-1(mne)-380(i)-379(jeno)-379(z)-380(rzadk)56(a)-380(p)-27(opr)1(z)-1(ebij)1(ane)-380(gwiazdami,)-379(w)-1(skro\\261)-380(sad\\363)28(w)-380(b)1(\\252ys)-1(k)56(a-)]TJ 0 -13.549 Td[(\\252y)-400(\\261)-1(wiat\\252a)-400(c)27(h)1(a\\252)-1(u)1(p)-400(i)-400(kiej)-400(\\261)-1(wi\\246to)-56(j)1(a\\253skie)-401(r)1(obacz)-1(ki)-400(mro)28(wi\\252y)-400(s)-1(i\\246)-400(w)27(e)-401(sta)28(w)-1(i)1(e)-1(;)-400(k)28(olacje)]TJ 0 -13.549 Td[(jedl)1(i)-388(ws)-1(z\\246)-1(d)1(y)-388(pr)1(z)-1(ed)-388(p)1(rogami,)-388(ktosik)-388(gr)1(a\\252)-389(n)1(a)-388(fu)1(jarce)-389(i)-387(\\261)-1(miec)27(h)28(y)-388(r)1(oz)-1(d)1(z)-1(w)28(ania\\252y)-388(si\\246)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-318(n)1(ie)-1(k)56(a)-56(j)1(,)-317(pt)1(aki)-317(ju)1(\\273)-318(zac)-1(zyn)1(a\\252)-1(y)-317(\\261pi)1(e)-1(w)28(a\\242)-318(i)-317(p)-27(ola)-317(p)1(rz)-1(em\\363)27(wi\\252y)-317(cic)27(h)29(ym)-318(strzyk)56(ani)1(e)-1(m)]TJ 0 -13.549 Td[(k)28(oni)1(k)28(\\363)27(w)-333(i)-333(g\\252os)-1(ami)-333(przepi\\363r)1(e)-1(k)-333(i)-333(derk)56(acz)-1(\\363)28(w.)]TJ 27.879 -13.55 Td[(U)-333(B)-1(or)1(yn\\363)28(w)-333(tak)-333(s)-1(amo)-333(jedli)-333(p)1(rze)-1(d)-333(c)28(ha\\252up)1(\\241,)-333(p)-27(o)-28(d)-333(okn)1(e)-1(m)-333(gw)27(arn)1(o)-333(b)28(y\\252o)-333(i)-333(lud)1(-)]TJ -27.879 -13.549 Td[(no,)-397(b)-28(o)-397(Hank)56(a,)-398(\\273e)-399(to)-398(sk)28(o\\253czyli)-398(k)28(osi\\242,)-398(zaprosi\\252a)-398(ws)-1(zystkic)28(h,)-398(wyst\\246puj)1(\\241c)-398(z)-1(e)-398(s)-1(u)1(t\\241)]TJ 0 -13.549 Td[(k)28(olacj\\241:)-265(p)1(ac)27(h)1(nia\\252a)-265(j)1(a)-56(jecz)-1(n)1(ic)-1(a)-265(ze)-266(sz)-1(czypior)1(kiem)-1(,)-264(ra\\271no)-265(skrzyb)-28(ot)1(a\\252)-1(y)-264(\\252y\\273)-1(k)1(i,)-265(a)-265(skrze)-1(-)]TJ 0 -13.549 Td[(kli)1(w)-1(y)-409(g\\252os)-411(Jagu)1(s)-1(t)28(yn)1(ki)-410(r)1(oz)-1(l)1(e)-1(ga\\252)-410(si\\246)-411(co)-410(c)27(h)29(w)-1(i)1(la,)-410(n)1(ie)-1(c\\241c)-410(w)-1(y)1(buc)28(h)28(y)-410(\\261mie)-1(c)28(h)28(u.)-409(Hank)56(a)]TJ 0 -13.549 Td[(dok)1(\\252ada\\252a)-386(c)-1(o)-386(tro)-27(c)27(h\\246)-386(z)-387(gar\\363)28(w)-387(zapr)1(as)-1(za)-56(j)1(\\241c)-1(,)-386(b)29(yc)27(h)-386(se)-387(n)1(ie)-387(\\273a\\252)-1(o)28(w)28(ali,)-386(ale)-386(c)-1(a\\252\\241)-386(du)1(s)-1(z\\241)]TJ 0 -13.549 Td[(nas\\252uc)28(hiw)28(a\\252a)-334(k)56(a\\273dego)-334(g\\252osu)-333(z)-334(d)1(rogi,)-333(a)-333(c)-1(o)-333(c)27(h)28(wil)1(a)-334(b)1(ie)-1(g\\252a)-333(wygl\\241d)1(a\\242)-334(w)-334(op)1(\\252otki.)]TJ 27.879 -13.55 Td[(Ani)-353(\\261)-1(lad)1(u)-354(An)28(tk)56(a,)-354(n)1(atkn)1(\\246)-1(\\252a)-354(s)-1(i)1(\\246)-355(t)28(ylk)28(o)-354(r)1(az)-355(n)1(a)-354(T)83(e)-1(r)1(e)-1(sk)28(\\246)-355(p)1(rz)-1(y)1(w)27(art)1(\\241)-354(do)-354(p\\252ota)-354(i)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-333(na)-333(k)28(ogo\\261)-334(cz)-1(ek)55(a)-55(j\\241c\\241.)]TJ 27.879 -13.549 Td[(Mateusz,)-361(n)1(ie)-361(mog\\241c)-361(s)-1(i)1(\\246)-361(dogad)1(a\\242)-361(z)-361(Jagusi\\241,)-360(m)-1(r)1(ukl)1(iw)27(\\241)-360(dzisia)-56(j)-360(i)-360(n)1(ie)-1(c)28(h\\246tn\\241,)]TJ -27.879 -13.549 Td[(j\\241\\252)-338(s)-1(i)1(\\246)-339(z)-1(e)-338(z)-1(\\252o\\261c)-1(i)-338(spiera\\242)-339(z)-339(P)1(ietrkiem,)-338(gdy)-338(J\\246)-1(d)1(rek)-338(przylec)-1(i)1(a\\252)-339(p)-27(o)-339(siostr\\246,)-338(\\273)-1(e)-339(matk)56(a)]TJ 0 -13.549 Td[(j\\241)-333(wz)-1(y)1(w)27(a.)]TJ 27.879 -13.55 Td[(Wkr)1(\\363tc)-1(e)-370(roz)-1(es)-1(zli)-370(si\\246)-371(ws)-1(zysc)-1(y)84(,)-371(t)28(y)1(lk)28(o)-371(j)1(e)-1(d)1(e)-1(n)-370(M)1(ate)-1(u)1(s)-1(z)-371(co\\261)-371(d\\252u)1(go)-371(si\\246)-371(o)-28(ci\\241)-28(ga\\252,)]TJ -27.879 -13.549 Td[(\\273e)-334(dop)1(ie)-1(r)1(o)-334(w)-333(dob)1(ry)-333(pacierz)-334(p)-27(os)-1(zed\\252.)]TJ 27.879 -13.549 Td[(P)28(o)-376(c)27(h)29(w)-1(i)1(li)-376(i)-376(Hank)56(a)-376(wys)-1(z\\252a,)-376(na)-376(d)1(armo)-377(wyp)1(atru)1(j\\241c)-376(w)-377(cie)-1(mn)1(o\\261)-1(ciac)27(h)1(,)-376(kiej)-376(j\\241)]TJ -27.879 -13.549 Td[(dosze)-1(d)1(\\252)-334(znad)-333(sta)28(w)-1(u)-333(j)1(e)-1(go)-333(w)28(arkli)1(w)-1(y)84(,)-333(gni)1(e)-1(wn)28(y)-333(g\\252os)-1(:)]TJ 27.879 -13.549 Td[({)-362(Cze)-1(go)-361(z)-1(a)-361(m)-1(n)1(\\241)-362(\\252az)-1(i)1(s)-362(jak)-361(te)-1(n)-361(pi)1(e)-1(s...)-361(nie)-362(u)1(c)-1(i)1(e)-1(kn)1(\\246)-362(c)-1(i.)1(..)-362(j)1(u\\273)-362(d)1(os)-1(y\\242)-362(n)1(as)-362(m)-1(i)1(e)-1(l\\241)]TJ -27.879 -13.55 Td[(na)-388(ozorac)27(h)1(...)-388({)-388(i)-388(c)-1(o\\261)-389(tam)-388(jes)-1(zc)-1(ze)-389(p)1(rz)-1(y)1(krze)-1(j)1(s)-1(ze)-1(go,)-388(a)-388(w)-389(o)-27(dp)-27(o)27(wiedzi)-388(p)-27(os)-1(yp)1(a\\252y)-388(s)-1(i\\246)]TJ 0 -13.549 Td[(rozs)-1(zlo)-28(c)28(han)1(e)-334(s)-1(\\252o)28(w)28(a)-334(i)-333(rz\\246s)-1(ist)28(y)-333(p\\252acz)-1(.)]TJ 27.879 -13.549 Td[(Ale)-330(H)-1(an)1(ki)-330(to)-330(ni)1(e)-331(wz)-1(r)1(usz)-1(y\\252o,)-330(cz)-1(ek)56(a\\252)-1(a)-330(n)1(a)-331(m\\246\\273)-1(a,)-330(to)-330(c)-1(o)-330(j)1(\\241)-331(tam)-330(mog\\252)-1(y)-330(ob)-27(c)27(h)1(o-)]TJ -27.879 -13.549 Td[(dzi\\242)-327(c)-1(u)1(dze)-327(s)-1(p)1(ra)28(w)-1(y)1(?)-327(Jagust)28(ynk)56(a)-327(rob)1(i\\252a)-327(wiec)-1(zorn)1(e)-328(p)-27(orz\\241dki)1(,)-327(a)-327(\\273e)-328(d)1(z)-1(i)1(e)-1(c)28(k)28(o)-327(z)-1(acz)-1(\\246\\252o)]TJ 0 -13.549 Td[(co\\261)-334(m)-1(at)28(y)1(jas)-1(i)1(\\242)-1(,)-333(wz)-1(i)1(\\246)-1(\\252a)-333(je)-334(n)1(a)-333(r\\246)-1(ce)-334(i)-333(p)-27(oh)28(u\\261tuj)1(\\241c)-334(za)-56(j)1(rz)-1(a\\252a)-333(do)-333(c)27(h)1(orego.)]TJ 27.879 -13.55 Td[({)-333(An)28(tk)56(a)-334(i)1(no)-333(c)-1(o)-333(patr)1(z)-1(e\\242)-1(!)-333({)-333(zakrzyc)-1(za\\252a)-333(o)-28(d)-333(pr)1(oga.)]TJ 0 -13.549 Td[(Boryn)1(a)-334(l)1(e)-1(\\273a\\252)-334(zapatr)1(z)-1(on)28(y)-333(w)-333(lampk)28(\\246,)-334(d)1(ymi\\241c\\241)-334(n)1(ad)-333(k)28(om)-1(i)1(nem)-1(.)]TJ 0 -13.549 Td[({)-317(D)1(z)-1(isia)-56(j)-316(go)-316(pu)1(\\261)-1(cili,)-316(Ro)-28(c)27(h)1(o)-317(cz)-1(ek)56(a)-317(n)1(a)-317(ni)1(e)-1(go)-316({)-317(p)-27(o)27(wtar)1(z)-1(a\\252a)-317(m)28(u)-316(w)-317(s)-1(ame)-317(u)1(s)-1(zy)83(,)]TJ -27.879 -13.549 Td[(str\\363\\273uj\\241c)-281(r)1(adosn)28(ymi)-280(o)-28(c)-1(zami)-281(j)1(e)-1(go)-280(\\271)-1(r)1(e)-1(n)1(ic,)-281(cz)-1(y)-280(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252,)-280(ale)-281(snad)1(\\271)-281(i)-280(ta)-281(n)1(o)27(win)1(a)]TJ 0 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(edar\\252a)-333(si\\246)-334(do)-333(m\\363z)-1(gu)1(,)-333(gdy\\273)-333(ani)-333(s)-1(i)1(\\246)-334(p)-28(or)1(usz)-1(y)1(\\252)-1(,)-333(n)1(i)-333(s)-1(p)-27(o)-56(j)1(rza\\252)-334(n)1(a)-334(n)1(i\\241.)]TJ 27.879 -13.55 Td[({)-351(Mo\\273e)-352(j)1(u\\273)-351(do)-351(ws)-1(i)-351(w)28(c)27(h)1(o)-28(dzi..)1(.)-351(m)-1(o\\273e)-352(j)1(u\\273...)-351({)-351(m)28(y\\261la\\252a)-351(w)-1(y)1(biega)-56(j)1(\\241c)-352(co)-351(c)27(h)28(wila)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-420(dom,)-420(a)-420(tak)-421(b)29(y\\252a)-421(p)-27(ew)-1(n)1(a)-421(j)1(e)-1(go)-420(p)-27(o)28(w)-1(r)1(otu)-420(i)-420(tak)-420(roz)-1(t)1(rz)-1(\\246siona)-420(o)-28(cz)-1(ekiw)28(aniem,)]TJ 0 -13.549 Td[(\\273e)-452(p)1(rzytomno\\261\\242)-452(tr)1(ac)-1(i)1(\\252)-1(a,)-450(wybu)1(c)27(ha\\252a)-451(\\261mie)-1(c)28(hem)-451(z)-452(l)1(e)-1(d)1(a)-451(p)-28(o)28(w)28(o)-28(du)1(,)-451(r)1(oz)-1(p)1(ra)28(w)-1(i)1(a\\252a)-451(z)-1(e)]TJ 0 -13.549 Td[(sob\\241)-387(i)-386(p)-27(otac)-1(za\\252a)-387(si\\246)-387(kiej)-386(pi)1(jana.)-386(Ciem)-1(n)1(o\\261)-1(ciom)-387(p)-27(o)28(w)-1(i)1(a)-1(d)1(a\\252a)-387(o)-386(s)-1(w)28(oic)27(h)-386(n)1(adzie)-1(j)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-348(b)29(ydl)1(\\241tk)28(om)-349(si\\246)-348(z)-1(wierzy\\252a)-348(pr)1(z)-1(y)-348(u)1(do)-55(ju)1(,)-348(b)28(yc)28(h)-348(wiedzia\\252y)83(,)-347(jak)28(o)-348(ic)28(h)-348(gosp)-28(o)-28(d)1(arz)]TJ 0 -13.549 Td[(wraca)-56(j)1(\\241.)]TJ 27.879 -13.55 Td[(I)-333(c)-1(ze)-1(k)56(a\\252a)-333(z)-334(m)-1(i)1(n)28(ut)28(y)-333(na)-333(min)28(u)1(t\\246)-1(,)-333(ale)-333(ju)1(\\273)-334(os)-1(tat)1(k)55(ami)-333(s)-1(i)1(\\252)-334(i)-333(cie)-1(r)1(pli)1(w)27(o\\261c)-1(i.)]TJ 0 -13.549 Td[(No)-28(c)-316(si\\246)-317(j)1(u\\273)-316(cz)-1(yn)1(i\\252a,)-316(wie\\261)-316(k\\252ad\\252a)-316(si\\246)-316(s)-1(p)1(a\\242)-1(,)-315(Jagusia,)-316(p)-27(o)28(wr\\363)-28(ciws)-1(zy)-316(o)-28(d)-315(matki,)]TJ -27.879 -13.549 Td[(zaraz)-378(p)1(rzyle)-1(g\\252a)-377(w)-377(p)-28(o\\261c)-1(i)1(e)-1(l,)-377(ca\\252y)-377(dom)-377(w)-1(k)1(r\\363tce)-378(zas)-1(n)1(\\241\\252)-1(,)-377(a)-377(Han)1(k)55(a)-377(j)1(e)-1(sz)-1(cz)-1(e)-377(p)-28(\\363\\271no)-377(w)]TJ 0 -13.549 Td[(no)-27(c)-396(w)27(ar)1(o)27(w)28(a\\252a)-395(prze)-1(d)-395(d)1(ome)-1(m,)-395(ja\\273e)-396(wybit)1(a)-396(ze)-396(si\\252)-396(i)-395(sro)-28(d)1(z)-1(e)-396(sp\\252ak)56(ana,)-395(p)-27(ogasiws)-1(zy)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252a)-334(te\\273)-334(si\\246)-334(p)-27(o\\252o\\273)-1(y\\252a.)]TJ 27.879 -13.55 Td[(Wsz)-1(y)1(s)-1(tek)-333(\\261)-1(wiat)-333(p)-27(ogr\\241\\273)-1(a\\252)-333(si\\246)-334(w)-334(g\\252\\246b)-27(okiej)-333(c)-1(ic)28(ho\\261c)-1(i)-333(o)-28(d)1(p)-28(o)-27(c)-1(zyw)28(ania.)]TJ 0 -13.549 Td[(Na)-333(w)-1(si)-333(gas)-1(\\252y)-333(\\261w)-1(i)1(at\\252a)-334(j)1(e)-1(d)1(ne)-334(p)-27(o)-333(dr)1(ugim,)-333(jak)-333(o)-28(cz)-1(y)-333(snem)-334(p)1(rz)-1(y)1(w)-1(i)1(e)-1(r)1(ane.)]TJ\nET\nendstream\nendobj\n1813 0 obj <<\n/Type /Page\n/Contents 1814 0 R\n/Resources 1812 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1812 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1817 0 obj <<\n/Length 9675      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(568)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ksi\\246\\273)-1(yc)-442(s)-1(i\\246)-442(wto)-28(c)-1(zy\\252)-442(na)-442(gran)1(ato)28(w)27(e,)-442(wys)-1(oki)1(e)-443(ni)1(e)-1(b)-27(o,)-442(gwie)-1(zdn)29(ym)-443(migotem)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(i)1(ane,)-494(i)-493(wz)-1(n)1(os)-1(i\\252)-493(s)-1(i\\246)-494(coraz)-494(wy\\273e)-1(j)1(,)-494(l)1(e)-1(cia\\252)-494(ki)1(e)-1(j)-493(p)1(tak)-494(wlek)56(\\241c)-1(y)-493(w)-1(skr)1(o\\261)-494(pustek)]TJ 0 -13.549 Td[(sre)-1(b)1(rzyste)-390(skrzyd\\252a,)-389(c)28(hm)28(ury)-388(s)-1(p)1(a\\252)-1(y)-388(k)55(a)-55(j\\261)-389(niek)56(a)-56(j)1(,)-389(p)-28(ozwijan)1(e)-390(w)-389(pu)1(s)-1(zyste)-1(,)-389(b)1(ia\\252a)28(w)27(e)]TJ 0 -13.549 Td[(k\\252\\246b)28(y)83(.)]TJ 27.879 -13.549 Td[(Za\\261)-361(na)-361(ziem)-1(i)1(ac)27(h)-360(w)-1(sz)-1(elki)1(e)-362(st)28(w)27(or)1(z)-1(eni)1(e)-362(u)1(z)-1(n)1(o)-56(j)1(one)-361(leg\\252)-1(o)-360(w)-361(c)-1(ic)28(h)28(y)-361(i)-360(s)-1(\\252o)-27(dki)-360(s)-1(en,)]TJ -27.879 -13.55 Td[(jeno)-267(p)1(tak)-267(j)1(aki\\261)-268(t)1(u)-267(i)-267(o)28(wdzie)-268(\\261pi)1(e)-1(w)28(a\\252)-267(rz)-1(\\246sis)-1(te)-267(pi)1(os)-1(n)1(e)-1(cz)-1(ki)1(,)-267(jeno)-267(w)28(o)-28(dy)-266(s)-1(ze)-1(mra\\252y)-267(cos)-1(i)1(k)]TJ 0 -13.549 Td[(jak)1(b)28(y)-380(p)1(rze)-1(z)-380(s)-1(en,)-379(a)-380(drzew)-1(i)1(n)28(y)83(,)-379(p\\252a)28(wi\\241c)-1(e)-380(s)-1(i)1(\\246)-381(w)-380(ksi\\246\\273)-1(y)1(c)-1(o)28(wyc)27(h)-379(brzask)55(ac)28(h,)-380(zadr)1(ga\\252y)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)-265(j)1(akb)28(y)-265(s)-1(i)1(\\246)-266(im)-266(d)1(z)-1(i)1(e)-1(\\253)-265(marzy\\252,)-265(c)-1(zase)-1(m)-266(p)1(ies)-266(w)27(ar)1(kn\\241\\252)-265(alb)-27(o)-265(prze)-1(l)1(atuj)1(\\241c)-1(y)-265(lelek)]TJ 0 -13.549 Td[(zatrze)-1(p)1(a\\252)-360(s)-1(kr)1(z)-1(y)1(d\\252ami,)-360(a)-360(n)1(iskie)-360(opar)1(y)-360(j)1(\\246)-1(\\252y)-360(z)-360(w)28(olna)-359(i)-360(tr)1(os)-1(kl)1(iwie)-360(przys\\252ania\\242)-360(p)-27(ola)]TJ 0 -13.549 Td[(kieb)28(y)-333(t\\246)-334(ma\\242)-334(u)1(tru)1(dzon\\241.)]TJ 27.879 -13.549 Td[(Sp)-27(o)-28(d)-314(ledwie)-315(r)1(oz)-1(ez)-1(n)1(an)28(yc)27(h)-314(\\261c)-1(i)1(an)-315(i)-314(ze)-315(s)-1(ad\\363)28(w)-315(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i\\252y)-314(si\\246)-315(c)-1(ic)28(he)-315(d)1(yc)27(h)1(ania,)]TJ -27.879 -13.55 Td[(lu)1(dzie)-334(spali)-333(n)1(a)-334(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(,)-333(p)-28(o)28(wierz)-1(a)-55(j\\241c)-333(s)-1(i\\246)-333(z)-334(du)1(fn)1(o)-1(\\261ci\\241)-334(n)1(o)-28(cy)83(.)]TJ 27.879 -13.549 Td[(I)-495(w)-495(Boryn)1(o)27(w)28(ej)-495(izbie)-495(le\\273)-1(a\\252a)-495(senna)-495(cic)28(ho\\261\\242)-1(,)-495(\\261wiers)-1(zc)-1(z)-495(j)1(e)-1(n)1(o)-495(s)-1(tr)1(z)-1(yk)56(a\\252)-495(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(k)28(ominem)-334(i)-333(Jagu)1(s)-1(in)1(e)-334(o)-28(d)1(dec)27(h)28(y)-333(tr)1(z)-1(epa\\252y)-333(s)-1(i)1(\\246)-334(kiej)-333(s)-1(k)1(rzyd\\252a)-333(m)-1(ot)28(y)1(le)-1(.)]TJ 27.879 -13.549 Td[(No)-28(c)-272(m)27(u)1(s)-1(i)1(a\\252)-1(a)-271(b)28(y\\242)-272(ju)1(\\273)-273(p)-27(\\363\\271)-1(n)1(a,)-272(p)1(ie)-1(r)1(ws)-1(ze)-273(k)1(ury)-271(z)-1(acz)-1(\\246\\252y)-272(pi)1(a\\242)-1(,)-271(gdy)-272(n)1(araz)-272(B)-1(or)1(yna)]TJ -27.879 -13.549 Td[(p)-27(oruszy\\252)-382(s)-1(i)1(\\246)-383(n)1(a)-382(\\252\\363\\273ku)-382(j)1(akb)28(y)-381(pr)1(z)-1(ec)-1(yk)56(a)-55(j\\241c,)-382(wraz)-382(te\\273)-383(i)-381(ksi\\246)-1(\\273yc)-382(ud)1(e)-1(r)1(z)-1(y)1(\\252)-382(w)-382(s)-1(zyb)28(y)-381(i)]TJ 0 -13.55 Td[(c)27(h)1(lusn\\241\\252)-333(obl)1(e)-1(w)28(a)-56(j)1(\\241c)-334(m)27(u)-333(t)28(w)28(arz)-334(srebr)1(z)-1(yst)28(ym)-334(wrz\\241tkiem)-334(\\261wiat\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252)-393(n)1(a)-393(\\252\\363\\273ku)-392(i)-392(kiw)28(a)-56(j)1(\\241c)-393(g\\252o)28(w)27(\\241)-392(a)-392(robi)1(\\241c)-393(usiln)1(ie)-393(gr)1(dyk)56(\\241,)-392(c)27(h)1(c)-1(ia\\252)-392(c)-1(osik)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzie\\242)-1(;)-333(ale)-333(m)27(u)-333(j)1(e)-1(n)1(o)-334(zabu)1(lgota\\252o)-333(w)-334(gard)1(z)-1(i)1(e)-1(li)1(.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-396(tak)-396(d)1(o\\261)-1(\\242)-396(d\\252ugo,)-396(r)1(oz)-1(gl)1(\\241da)-56(j)1(\\241c)-397(si\\246)-397(n)1(ieprzytomni)1(e)-1(,)-396(a)-396(ni)1(e)-1(ki)1(e)-1(d)1(y)-396(gm)-1(e-)]TJ -27.879 -13.549 Td[(rz\\241c)-393(p)1(alcam)-1(i)-392(w)28(e)-393(\\261wie)-1(t)1(le)-1(,)-392(j)1(akb)28(y)-392(c)28(hc\\241c)-393(ze)-1(b)1(ra\\242)-392(w)-393(gar)1(\\261)-1(cie)-393(o)28(w)28(\\241)-392(rozm)-1(igot)1(an\\241)-392(rze)-1(k)28(\\246)]TJ 0 -13.55 Td[(ksi\\246\\273)-1(yco)28(w)-1(y)1(c)27(h)-333(b)1(rz)-1(ask)28(\\363)28(w)-1(,)-333(b)1(ij\\241c\\241)-333(m)27(u)-333(w)-333(o)-28(c)-1(zy)84(.)]TJ 27.879 -13.549 Td[({)-333(Dnieje...)-333(p)-27(ora.)1(..)-333({)-334(zam)-1(amrot)1(a\\252)-334(wres)-1(zc)-1(i)1(e)-1(,)-333(sta)-56(j)1(\\241c)-334(na)-333(p)-27(o)-28(d\\252o)-28(d)1(z)-1(e.)]TJ 0 -13.549 Td[(Wyj)1(rza\\252)-332(okn)1(e)-1(m)-332(i)-331(jakb)29(y)-332(si\\246)-332(bu)1(dzi\\252)-332(z)-332(ci\\246)-1(\\273kiego)-332(sn)28(u,)-331(z)-1(d)1(a\\252o)-332(m)28(u)-332(si\\246,)-332(\\273e)-332(to)-332(ju)1(\\273)]TJ -27.879 -13.549 Td[(du)1(\\273)-1(y)-333(d)1(z)-1(i)1(e)-1(\\253)1(,)-334(\\273e)-334(zas)-1(p)1(a\\252,)-334(a)-333(j)1(akie\\261)-334(pil)1(ne)-334(r)1(ob)-28(ot)28(y)-333(cz)-1(ek)55(a)-55(j\\241)-333(na)-333(n)1(ie)-1(go.)1(..)]TJ 27.879 -13.549 Td[({)-332(P)28(ora)-332(w)-1(sta)28(w)27(a\\242,)-332(p)-28(or)1(a...)-332({)-333(p)-27(o)28(w)-1(t)1(arz)-1(a\\252,)-332(\\273e)-1(gn)1(a)-56(j)1(\\241c)-333(s)-1(i\\246)-333(wielekro)-28(\\242)-332(raz)-1(y)-332(i)-332(z)-1(aczy-)]TJ -27.879 -13.55 Td[(na)-55(j\\241c)-402(pacierz)-402(rozgl\\241da\\252)-402(si\\246)-402(z)-1(arazem)-403(za)-402(o)-28(d)1(z)-1(ieniem,)-402(p)-27(o)-402(bu)1(t)27(y)-401(s)-1(i)1(\\246)-1(ga\\252,)-402(k)56(a)-56(j)-401(zw)-1(y)1(k\\252y)]TJ 0 -13.549 Td[(b)28(y\\252y)-325(s)-1(toi)1(\\242)-1(,)-325(a)-1(l)1(e)-327(n)1(ie)-326(nalaz\\252s)-1(zy)-326(n)1(icz)-1(ego)-326(p)-28(o)-27(d)-326(r)1(\\246)-1(k)56(\\241,)-326(zap)-27(om)-1(n)1(ia\\252)-326(o)-326(ws)-1(zystkim)-326(i)-326(b)1(\\252\\241dzi\\252)]TJ 0 -13.549 Td[(b)-27(e)-1(zrad)1(nie)-376(r\\246k)28(oma)-376(dok)28(o\\252a)-375(s)-1(iebi)1(e)-1(,)-375(pacie)-1(r)1(z)-376(m)27(u)-375(s)-1(i)1(\\246)-376(rw)27(a\\252,)-375(i\\273)-376(jeno)-375(p)-28(on)1(iekt\\363re)-376(s\\252o)27(w)28(a)]TJ 0 -13.549 Td[(mam)-1(l)1(a\\252)-334(b)-27(e)-1(zd\\271wi\\246)-1(cz)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Sk)28(o\\252tu)1(ni)1(\\252)-1(y)-457(m)27(u)-457(s)-1(i\\246)-458(nar)1(az)-459(w)-458(m\\363z)-1(gu)-457(ws)-1(p)-27(om)-1(i)1(nki)-457(jakic)28(h\\261)-458(rob)-27(\\363t,)-458(to)-458(spr)1(a)27(wy)]TJ -27.879 -13.55 Td[(da)28(wne,)-250(to)-250(j)1(akb)28(y)-249(o)-28(dg\\252osy)-250(tego,)-250(c)-1(o)-249(s)-1(i\\246)-250(dok)28(o\\252a)-250(n)1(iego)-250(dzia\\252o)-250(pr)1(z)-1(ez)-251(ca\\252y)-250(cz)-1(as)-250(c)27(h)1(orob)28(y)84(,)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(i)1(\\241k)55(a\\252o)-481(to)-481(w)-482(n)1(iego)-482(w)-481(s)-1(tr)1(z)-1(\\246pac)28(h)-481(nik)1(\\252)-1(y)1(c)27(h,)-481(w)-481(bl)1(adyc)28(h)-481(przyp)-27(omnieniac)28(h,)-481(w)]TJ 0 -13.549 Td[(ru)1(c)27(h)1(ac)27(h)-455(z)-1(atar)1(t)27(y)1(c)27(h)-455(jak)-455(s)-1(ki)1(b)28(y)-456(n)1(a)-456(r\\273ysk)56(ac)27(h)-455(i)-456(b)1(udzi\\252o)-456(si\\246)-456(teraz)-456(nagl)1(e)-1(,)-455(k\\252\\246)-1(b)1(i\\252o)-456(w)]TJ 0 -13.549 Td[(m\\363z)-1(gu)-321(i)-322(n)1(a)-322(\\261w)-1(i)1(at)-322(par)1(\\252o,)-322(\\273e)-323(p)-27(ory)1(w)27(a\\252)-322(si\\246)-322(c)-1(o)-321(c)27(h)28(wila)-321(z)-1(a)-322(j)1(akim\\261)-322(m)-1(a)-55(jak)1(ie)-1(m,)-322(l)1(e)-1(cz)-322(nim)]TJ 0 -13.549 Td[(si\\246)-332(go)-332(u)1(c)-1(zepi\\252,)-331(ju)1(\\273)-332(m)27(u)-331(si\\246)-332(r)1(oz)-1(\\252azi\\252)-332(w)-331(pami\\246c)-1(i)-331(jak)28(o)-331(te)-332(zgni\\252e)-332(p)1(rz\\246)-1(d)1(z)-1(e,)-331(i)-332(d)1(usz)-1(a)-331(m)27(u)]TJ 0 -13.549 Td[(si\\246)-334(c)27(h)29(w)-1(i)1(a\\252)-1(a,)-333(k)1(ie)-1(j)-333(p)1(\\252om)-1(i)1(e)-1(\\253)-333(n)1(ie)-334(ma)-56(j)1(\\241c)-1(y)-333(si\\246)-334(cz)-1(ym)-333(p)-28(o)-27(dsyc)-1(i)1(\\242)-1(.)]TJ 27.879 -13.55 Td[(T)28(yle)-379(jeno)-378(te)-1(r)1(az)-380(wiedzia\\252,)-378(c)-1(o)-379(si\\246)-379(mo\\273)-1(e)-379(\\261ni\\242)-379(o)-379(p)1(ierws)-1(ze)-1(j)-378(zwie)-1(\\261ni)1(e)-380(d)1(rze)-1(w)28(om)]TJ -27.879 -13.549 Td[(p)-27(os)-1(c)28(hni)1(\\246)-1(t)28(ym,)-387(\\273e)-387(p)-28(or)1(a)-387(im)-387(pr)1(z)-1(ec)27(kn)1(\\241\\242)-388(z)-387(dr)1(\\246)-1(t)28(wicy)-387(zimo)27(w)28(e)-1(j)1(,)-387(p)-27(ora)-387(n)1(abr)1(ane)-387(c)27(h)1(lust)28(y)]TJ 0 -13.549 Td[(wypu)1(\\261)-1(ci\\242)-259(z)-1(e)-260(siebie,)-259(p)-27(ora)-259(z)-1(aszumie)-1(\\242)-259(z)-260(wic)27(h)1(rami)-259(w)28(e)-1(se)-1(ln)1(\\241)-259(pie\\261)-1(\\253)-258(\\273)-1(ycia,)-259(a)-259(n)1(ie)-260(wiedz\\241,)]TJ 0 -13.549 Td[(\\273e)-334(p\\252on)1(e)-334(s)-1(\\241)-333(ic)28(h)-333(\\261)-1(n)1(ie)-1(n)1(ia)-333(i)-333(pr\\363\\273ne)-333(p)-28(o)-28(czynan)1(ia...)]TJ 27.879 -13.549 Td[(Za)-331(cz)-1(y)1(m)-332(cok)28(olwiek)-331(r)1(obi\\252,)-330(c)-1(zyni)1(\\252,)-331(jak)28(o)-330(te)-1(n)-330(k)28(o\\253)-330(p)-27(o)-331(latac)27(h)-330(c)28(ho)-28(d)1(z)-1(enia)-330(w)-331(kie-)]TJ -27.879 -13.55 Td[(racie)-334(cz)-1(y)1(ni)-333(na)-333(w)28(olno\\261c)-1(i)1(,)-334(\\273e)-334(ci\\246gie)-1(m)-333(s)-1(i\\246)-333(jeno)-333(w)-334(k)28(\\363\\252k)28(o)-333(obraca)-333(z)-334(pr)1(z)-1(ywyk)1(u.)]TJ 27.879 -13.549 Td[(Maciej)-352(ot)28(w)27(or)1(z)-1(y\\252)-352(okn)1(o)-353(i)-352(wyj)1(rza\\252)-353(n)1(a)-352(\\261)-1(wiat,)-352(za)-56(j)1(rza\\252)-353(d)1(o)-353(k)28(omory)-352(i)-352(p)-27(o)-352(d\\252u)1(gim)]TJ\nET\nendstream\nendobj\n1816 0 obj <<\n/Type /Page\n/Contents 1817 0 R\n/Resources 1815 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1815 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1820 0 obj <<\n/Length 8781      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(569)]TJ -358.232 -35.866 Td[(nam)28(y\\261le)-314(p)-27(ogrze)-1(b)1(a\\252)-314(w)-313(k)28(omini)1(e)-1(,)-313(za\\261)-314(p)-27(ote)-1(m,)-313(j)1(ak)-313(s)-1(ta\\252,)-313(b)-27(os)-1(o)-313(i)-313(w)-313(k)28(os)-1(zul)1(i,)-313(p)-27(os)-1(ze)-1(d)1(\\252)-314(n)1(a)]TJ 0 -13.549 Td[(dw)28(\\363r.)]TJ 27.879 -13.549 Td[(Drzwi)-245(b)29(y\\252y)-245(wyw)28(arte,)-245(ca\\252\\241)-245(sie)-1(\\253)-244(zalew)27(a\\252o)-245(k)1(s)-1(i\\246\\273)-1(y)1(c)-1(o)28(w)28(e)-246(\\261wiat\\252o,)-244(prze)-1(d)-244(p)1(rogiem)]TJ -27.879 -13.549 Td[(spa\\252)-332(\\212ap)1(a,)-331(z)-1(win)1(i\\246)-1(t)28(y)-331(w)-331(k\\252\\246)-1(b)-27(e)-1(k)1(,)-332(al)1(e)-332(na)-331(s)-1(ze)-1(l)1(e)-1(st)-331(krok)28(\\363)28(w)-332(p)1(rze)-1(b)1(udzi\\252)-331(s)-1(i\\246,)-331(z)-1(a)28(w)28(arcz)-1(a\\252)-331(i)]TJ 0 -13.549 Td[(p)-27(oz)-1(n)1(a)27(wsz)-1(y)-333(sw)27(o)-55(jego)-334(p)-27(osz)-1(ed\\252)-333(z)-1(a)-333(ni)1(m)-1(.)]TJ 27.879 -13.55 Td[(Maciej)-396(p)1(rzys)-1(tan)1(\\241\\252)-396(pr)1(z)-1(ed)-396(d)1(om)-1(em)-396(i)-396(skrob)1(i\\241c)-396(s)-1(i\\246)-396(w)-396(uc)28(ho)-396(ci\\246\\273)-1(k)28(o)-396(si\\246)-396(g\\252o)27(wi\\252,)]TJ -27.879 -13.549 Td[(jak)1(ie)-334(go)-333(to)-334(p)1(iln)1(e)-334(rob)-27(ot)28(y)-333(c)-1(ze)-1(k)56(a)-55(j\\241?...)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(s)-318(r)1(ado\\261nie)-318(sk)56(ak)56(a\\252)-318(m)28(u)-317(do)-317(piersi,)-317(p)-28(og\\252ad)1(z)-1(i\\252)-317(go)-317(p)-28(o)-317(da)28(wnem)27(u)1(,)-318(r)1(oz)-1(gl)1(\\241da)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-334(fr)1(as)-1(ob)1(liwie)-334(p)-27(o)-333(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Wid)1(no)-377(b)28(y\\252o)-378(j)1(ak)-378(w)-378(d)1(z)-1(ie\\253,)-377(ksi\\246\\273)-1(yc)-378(wyn)1(os)-1(i\\252)-377(s)-1(i\\246)-378(j)1(u\\273)-378(nad)-377(c)27(h)1(a\\252up)1(\\241,)-378(\\273e)-378(m)-1(o)-28(d)1(ry)]TJ -27.879 -13.549 Td[(cie)-1(\\253)-410(ze)-1(su)28(w)28(a\\252)-411(s)-1(i)1(\\246)-411(z)-411(bia\\252yc)28(h)-410(\\261)-1(cian,)-410(w)28(o)-28(dy)-410(s)-1(t)1(a)27(wu)-410(p)-27(ol\\261)-1(n)1(iew)27(a\\252y)-410(kiej)-410(lustra,)-410(wie)-1(\\261)-411(l)1(e)-1(-)]TJ 0 -13.55 Td[(\\273a\\252)-1(a)-364(w)-365(g\\252\\246b)-27(okim)-365(milcze)-1(n)1(iu,)-364(j)1(e)-1(dn)1(e)-365(p)1(tas)-1(zysk)55(a,)-364(co)-365(si\\246)-365(wyd)1(z)-1(i)1(e)-1(ra\\252y)-364(zapami\\246tale)-365(p)-27(o)]TJ 0 -13.549 Td[(g\\241sz)-1(cz)-1(ac)28(h.)]TJ 27.879 -13.549 Td[(Z)-482(nag\\252a)-482(przyp)-27(om)-1(n)1(ia\\252o)-483(m)28(u)-482(si\\246)-483(c)-1(osik,)-482(b)-27(o)-483(p)-27(osz)-1(ed\\252)-482(\\261)-1(p)1(ie)-1(szno)-482(w)-483(p)-27(o)-28(dw)28(\\363rze)-1(,)]TJ -27.879 -13.549 Td[(dr)1(z)-1(wi)-312(ws)-1(zys)-1(t)1(kie)-313(sta\\252)-1(y)-312(ot)28(w)28(arte,)-313(c)28(h\\252opak)1(i)-313(c)28(hrap)1(a\\252y)-313(p)-27(o)-28(d)-312(\\261c)-1(ian)1(ami)-313(sto)-28(d)1(o\\252)-1(y)84(,)-312(z)-1(a)-55(jrza\\252)]TJ 0 -13.549 Td[(do)-348(s)-1(ta)-55(jn)1(i,)-349(p)-27(oklepu)1(j\\241c)-349(k)28(onie,)-349(j)1(a\\273)-1(e)-349(z)-1(ar)1(\\273)-1(a\\252y)84(,)-349(p)-27(ote)-1(m)-349(d)1(o)-349(kr\\363)28(w)-349(ws)-1(ad)1(z)-1(i\\252)-349(g\\252o)28(w)28(\\246)-1(,)-349(l)1(e)-1(\\273a\\252y)]TJ 0 -13.55 Td[(rz\\246)-1(d)1(e)-1(m,)-417(\\273e)-418(in)1(o)-418(i)1(m)-418(zady)-417(widn)1(ia\\252y)-417(w)27(e)-417(\\261)-1(wietle;)-417(to)-417(s)-1(p)-27(o)-28(d)-417(sz)-1(op)29(y)-417(z)-1(ac)27(h)1(c)-1(i)1(a\\252)-418(w)28(\\363z)-418(wy-)]TJ 0 -13.549 Td[(ci\\241)-28(gn\\241\\242,)-311(j)1(u\\273)-311(n)1(a)27(w)28(e)-1(t)-310(p)-28(or)1(w)27(a\\252)-310(z)-1(a)-311(wysta)-56(j)1(\\241c)-1(y)-310(dy)1(s)-1(ze)-1(l,)-310(ale)-311(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-311(b)1(\\252ys)-1(zc)-1(z\\241cy)-311(p)1(\\252)-1(u)1(g)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(c)27(h)1(lew)27(ami,)-333(do)-333(ni)1(e)-1(go)-333(p)-28(o\\261pi)1(e)-1(sz)-1(y)1(\\252)-334(i)-333(ni)1(e)-334(dosz)-1(ed\\252sz)-1(y)-333(ca\\252kiem)-334(zap)-28(omni)1(a\\252)-1(.)]TJ 27.879 -13.549 Td[(St)1(an\\241\\252)-385(w)-386(p)-27(o\\261)-1(r)1(o)-28(dk)1(u)-385(p)-27(o)-28(dw)28(\\363rza,)-385(obr)1(a)-1(ca)-56(j)1(\\241c)-386(si\\246)-386(n)1(a)-385(w)-1(szys)-1(tk)1(ie)-386(stron)28(y)84(,)-385(b)-27(o)-385(m)27(u)]TJ -27.879 -13.549 Td[(si\\246)-334(wyda\\252o,)-333(\\273e)-334(s)-1(k)56(\\241d)1(c)-1(i\\261)-333(w)27(o\\252a)-55(j\\241.)]TJ 27.879 -13.55 Td[(\\233ur)1(a)27(w)-333(s)-1(t)1(udzienn)28(y)-333(wyn)1(os)-1(i\\252)-333(si\\246)-334(tu)1(\\273)-334(pr)1(z)-1(ed)-333(nim,)-333(c)-1(i)1(e)-1(\\253)-333(d)1(\\252ugi)-333(k\\252ad)1(\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(zego)-334(to?)-333({)-334(p)29(yta\\252)-334(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241c)-334(o)-27(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i.)]TJ 0 -13.549 Td[(Sad)1(,)-468(p)-27(orzni\\246t)28(y)-468(\\261wiat\\252ami,)-468(j)1(akb)28(y)-468(zast\\241)-28(pi)1(\\252)-468(m)27(u)-467(dr)1(og\\246)-1(,)-468(srebr)1(z)-1(\\241ce)-468(s)-1(i\\246)-468(li)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(sz)-1(em)-1(r)1(a\\252y)-334(cos)-1(i)1(k)-333(c)-1(ic)28(h)28(u\\261k)28(o.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(m)-1(e)-333(w)27(o\\252a?)-334({)-333(m)27(y)1(\\261)-1(la\\252)-333(dot)28(y)1(k)55(a)-55(j\\241c)-334(si\\246)-334(d)1(rze)-1(w.)]TJ 0 -13.55 Td[(\\212apa,)-263(c)28(ho)-28(d)1(z)-1(\\241cy)-264(w)28(ci\\241\\273)-264(pr)1(z)-1(y)-263(ni)1(m)-1(,)-263(zas)-1(k)28(omla\\252)-264(cos)-1(i)1(k,)-263(\\273)-1(e)-264(p)1(rzys)-1(tan)1(\\241\\252,)-263(w)27(es)-1(tc)28(hn)1(\\241\\252)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)-27(ok)28(o)-333(i)-333(rz)-1(ek\\252)-333(w)27(es)-1(o\\252o:)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(p)1(ies)-1(ku)1(,)-333(p)-28(or)1(a)-334(sia\\242...)]TJ 0 -13.549 Td[(Ale)-336(w)-336(mig)-335(i)-336(o)-335(t)28(ym)-336(pr)1(z)-1(ep)-27(om)-1(n)1(ia\\252;)-336(r)1(oz)-1(syp)28(yw)28(a\\252o)-336(m)28(u)-335(s)-1(i\\246)-336(wsz)-1(ystk)28(o)-335(w)-336(pami\\246c)-1(i)]TJ -27.879 -13.549 Td[(kiej)-482(s)-1(u)1(c)27(h)28(y)-482(piase)-1(k)-482(w)-483(gar\\261c)-1(i)1(ac)27(h,)-482(jeno)-482(\\273)-1(e)-483(w)27(ci\\241\\273)-483(no)28(w)28(e)-483(w)-1(sp)-27(om)-1(in)1(ki)-482(p)-28(op)28(y)1(c)27(ha\\252y)-482(go)]TJ 0 -13.55 Td[(zn\\363)28(w)-339(gd)1(z)-1(ie\\261)-339(n)1(aprz\\363)-28(d;)-338(mota\\252)-338(s)-1(i\\246)-338(w)-339(one)-339(z\\252ud)1(y)-338(jak)-338(to)-338(w)-1(r)1(z)-1(ec)-1(i)1(ono)-338(w)-339(ni)1(\\242)-339(uciek)55(a)-55(j\\241c\\241)]TJ 0 -13.549 Td[(wiec)-1(znie,)-333(a)-334(ci\\246gie)-1(m)-333(na)-333(jedn)29(ym)-334(miejsc)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-308(Ju\\261c)-1(i.)1(..)-308(p)-28(or)1(a)-309(sia\\242)-1(.)1(..)-308({)-309(p)-27(o)28(w)-1(i)1(e)-1(dzia\\252)-308(z)-1(n)1(o)27(wu)-308(i)-308(ru)1(s)-1(zy\\252)-309(r)1(a\\271)-1(n)1(ie)-309(k)28(ole)-309(sz)-1(op)29(y)-309(op)1(\\252ot-)]TJ -27.879 -13.549 Td[(k)56(am)-1(i)-413(w)-1(i)1(e)-1(d)1(\\241c)-1(ymi)-414(n)1(a)-414(p)-28(ole,)-414(n)1(atkn\\241\\252)-414(si\\246)-415(n)1(a)-414(br)1(\\363g)-414(\\363)27(w)-414(ni)1(e)-1(sz)-1(cz)-1(\\246sn)28(y)83(,)-414(spal)1(on)28(y)-414(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(zim)-1(\\241)-333(i)-333(ju)1(\\273)-334(p)-27(os)-1(ta)28(wion)28(y)-333(teraz)-334(n)1(a)-333(no)28(w)27(o.)]TJ 27.879 -13.549 Td[(Chcia\\252)-495(go)-496(zrazu)-495(wymin\\241\\242,)-495(lec)-1(z)-495(nagle)-495(o)-28(dsk)28(o)-28(cz)-1(y)1(\\252)-1(,)-495(r)1(oz)-1(wid)1(ni\\252o)-495(m)28(u)-495(s)-1(i)1(\\246)-496(na)]TJ -27.879 -13.55 Td[(mgnieni)1(e)-1(,)-365(b)1(\\252ysk)55(a)28(wic\\241)-365(rzuci\\252)-365(si\\246)-365(w)-1(stec)-1(z)-365(c)-1(zas)-1(u)1(,)-365(wyr)1(yw)27(a\\252)-365(z)-365(p)1(\\252ota)-365(k)28(o\\252e)-1(k)-364(i)-365(u)1(j\\241)28(ws)-1(zy)]TJ 0 -13.549 Td[(go)-442(obu)1(r\\241cz)-443(kiej)-442(wid)1(\\252)-1(y)-442(i)-441(z)-443(nasro\\273on\\241)-442(t)28(w)27(ar)1(z)-1(\\241)-442(rzuci\\252)-442(s)-1(i)1(\\246)-443(na)-442(s\\252up)28(y)84(,)-442(goto)28(wy)-442(bi\\242)-442(i)]TJ 0 -13.549 Td[(zabij)1(a\\242)-1(,)-333(lec)-1(z)-333(nim)-333(uderzy\\252)-333(c)-1(o)-333(b\\241d)1(\\271)-1(,)-333(wyp)1(u\\261c)-1(i\\252)-333(k)28(o\\252e)-1(k)-333(b)-27(e)-1(zrad)1(nie.)]TJ 27.879 -13.549 Td[(Za)-324(b)1(rogiem)-1(,)-323(o)-28(d)-323(sam)-1(ej)-323(drogi)-323(a)-324(p)-27(ob)-27(ok)-324(zie)-1(mn)1(iak)28(\\363)28(w)-1(,)-323(c)-1(i)1(\\241)-28(gn\\241\\252)-323(s)-1(i\\246)-324(d)1(\\252ugi)-323(s)-1(zm)-1(at)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dor)1(\\363)27(wki)1(,)-334(p)1(rzystan\\241\\252)-333(przed)-333(nim)-333(w)27(o)-28(d)1(z)-1(\\241c)-333(z)-1(d)1(umion)28(ymi)-333(o)-28(cz)-1(yma.)]TJ 27.879 -13.55 Td[(Ksi\\246\\273)-1(yc)-268(j)1(u\\273)-268(b)28(y)1(\\252)-268(w)-268(p)-27(\\363\\252)-268(ni)1(e)-1(b)1(a,)-268(ziem)-1(ie)-268(p)1(\\252a)28(w)-1(i)1(\\252)-1(y)-267(si\\246)-268(w)-268(pr)1(z)-1(y)1(m)-1(glon)29(yc)27(h)-267(br)1(z)-1(ask)56(ac)27(h)]TJ -27.879 -13.549 Td[(i)-333(le\\273)-1(a\\252y)-333(op)-27(e)-1(rl)1(one)-334(r)1(os)-1(ami,)-333(jak)1(b)28(y)-333(z)-1(as\\252uc)28(hane)-333(w)-334(milcz)-1(eniu)1(.)]TJ\nET\nendstream\nendobj\n1819 0 obj <<\n/Type /Page\n/Contents 1820 0 R\n/Resources 1818 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1818 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1823 0 obj <<\n/Length 9972      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(570)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Niepr)1(z)-1(enik)1(nion)1(a)-241(cic)27(h)1(o\\261)-1(\\242)-241(b)1(i\\252a)-241(z)-240(p)-28(\\363l,)-240(zam)-1(gl)1(one)-241(d)1(ale)-241(\\252\\241c)-1(zy\\252y)-240(z)-1(i)1(e)-1(mi\\246)-241(z)-241(n)1(ie)-1(b)-27(em)-1(,)]TJ -27.879 -13.549 Td[(z)-344(\\252\\241k)-343(p)-28(e\\252z)-1(a\\252y)-343(b)1(ia\\252a)27(w)28(e)-344(tu)1(m)-1(an)29(y)-344(i)-343(wlek\\252y)-343(s)-1(i\\246)-344(n)1(ad)-343(z)-1(b)-27(o\\273am)-1(i)-343(kiej)-343(pr)1(z)-1(\\246dze)-1(,)-343(ob)1(tula)-55(j\\241c)]TJ 0 -13.549 Td[(je)-333(nib)29(y)-334(ciep\\252ym,)-333(wilgotn)28(y)1(m)-334(k)28(o\\273)-1(u)1(c)27(h)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Wyr)1(os)-1(\\252e,)-426(z)-1(ielon)1(a)27(w)28(e)-427(\\261c)-1(ian)29(y)-427(\\273yta)-426(p)-28(o)-27(c)27(h)28(yl)1(a\\252)-1(y)-426(si\\246)-427(n)1(ad)-426(m)-1(iedz\\246)-427(p)-27(o)-28(d)-426(ci\\246)-1(\\273arem)]TJ -27.879 -13.549 Td[(k\\252os\\363)27(w,)-397(z)-1(wisa)-56(j)1(\\241c)-1(yc)28(h)-398(ki)1(e)-1(b)28(y)-397(te)-399(r)1(dza)28(w)27(e)-398(dziob)28(y)-397(piskl\\241t,)-397(psz)-1(enice)-398(s)-1(z\\252y)-398(ju)1(\\273)-399(w)-398(s\\252up)1(,)]TJ 0 -13.55 Td[(sta\\252y)-338(hard)1(o,)-338(l\\261)-1(n)1(i\\241c)-339(czarni)1(a)27(wymi)-338(pi)1(\\363rami,)-338(z)-1(a\\261)-338(o)27(wsy)-338(i)-338(j\\246c)-1(zmiona,)-338(ledwie)-338(rozkrze)-1(-)]TJ 0 -13.549 Td[(wione,)-333(z)-1(i)1(e)-1(leni)1(a\\252y)-334(k)1(ie)-1(j)-333(\\252\\241k)1(i)-334(w)-333(p\\252o)28(wyc)27(h)-333(p)1(rze)-1(s\\252onac)27(h)-332(m)-1(gie\\252)-333(i)-334(\\261wiat\\252a.)]TJ 27.879 -13.549 Td[(Dru)1(gie)-301(ku)1(ry)-300(ju)1(\\273)-302(p)1(ia\\252y)84(,)-301(n)1(o)-28(c)-301(b)28(y\\252a)-301(p)-27(\\363\\271na,)-300(p)-28(ol)1(a,)-301(p)-27(ogr\\241\\273one)-301(w)-301(g\\252\\246b)-28(ok)1(i)-301(se)-1(n)-300(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)-1(zyw)28(ania,)-374(jak)1(b)28(y)-374(dyc)28(ha\\252y)-374(niekiej)-374(c)-1(ic)28(h)28(u\\261kim)-375(c)28(hrz\\246s)-1(tem)-375(i)-374(jakim\\261)-375(ec)27(hem)-375(dzien-)]TJ 0 -13.549 Td[(n)28(yc)28(h)-476(zabi)1(e)-1(g\\363)28(w)-476(i)-476(trosk)-476({)-476(j)1(ak)-476(d)1(yc)27(ha)-475(m)-1(a\\242,)-476(ki)1(e)-1(j)-475(przylegni)1(e)-477(wp)-27(o\\261)-1(r\\363)-27(d)-476(d)1(z)-1(ieci\\241te)-1(k)1(,)]TJ 0 -13.549 Td[(du)1(fn)1(ie)-334(\\261pi\\241cyc)28(h)-333(na)-333(jej)-333(\\252onie...)]TJ 27.879 -13.55 Td[(Boryn)1(a)-305(nar)1(az)-305(pr)1(z)-1(ykl)1(\\246)-1(kn)1(\\241\\252)-305(n)1(a)-305(zagonie)-305(i)-304(j\\241\\252)-305(w)-304(nasta)27(wion)1(\\241)-305(k)28(osz)-1(u)1(l\\246)-305(nab)1(iera\\242)]TJ -27.879 -13.549 Td[(zie)-1(mi,)-385(n)1(ib)28(y)-385(z)-385(te)-1(go)-385(w)28(ora)-385(zb)-28(o\\273e)-386(n)1(as)-1(zyk)28(o)28(w)27(an)1(e)-386(d)1(o)-385(s)-1(iewu,)-385(a\\273)-385(nagarn)1(\\241)28(w)-1(szy)-385(t)28(yla,)-385(i\\273)]TJ 0 -13.549 Td[(si\\246)-318(l)1(e)-1(d)1(w)-1(i)1(e)-318(p)-27(o)-28(d)1(\\271)-1(wign)1(\\241\\252,)-317(pr)1(z)-1(e\\273)-1(egna\\252)-317(si\\246,)-317(spr\\363b)-27(o)28(w)27(a\\252)-317(r)1(oz)-1(mac)27(h)28(u)-316(i)-317(p)-27(o)-28(cz)-1(\\241\\252)-317(ob)1(s)-1(i)1(e)-1(w)28(a\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)27(h)28(yl)1(i\\252)-307(s)-1(i)1(\\246)-308(p)-27(o)-28(d)-306(ci\\246)-1(\\273arem)-307(i)-307(z)-307(w)27(ol)1(na,)-306(krok)-306(z)-1(a)-307(k)1(rokiem)-307(s)-1(ze)-1(d)1(\\252)-307(i)-307(t)28(y)1(m)-308(b)1(\\252ogo-)]TJ -27.879 -13.549 Td[(s\\252)-1(a)28(wi\\241cym,)-333(p)-28(\\363\\252k)28(olist)28(ym)-334(r)1(z)-1(u)1(te)-1(m)-333(p)-28(osiew)27(a\\252)-333(z)-1(i)1(e)-1(mi\\246)-334(n)1(a)-334(zagonac)28(h.)]TJ 27.879 -13.55 Td[(\\212apa)-291(c)27(h)1(o)-28(d)1(z)-1(i\\252)-291(z)-1(a)-291(ni)1(m)-1(,)-291(a)-291(kiej)-291(ptak)-291(j)1(aki)-291(s)-1(p)1(\\252os)-1(zon)28(y)-291(z)-1(erw)28(a\\252)-292(si\\246)-292(sp)-28(o)-27(d)-291(n\\363g,)-291(goni)1(\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(c)27(h)29(w)-1(i)1(l\\246)-334(i)-333(zno)28(wu)-333(p)-28(o)28(wraca\\252)-334(n)1(a)-334(s\\252u\\273b)-28(\\246)-333(przy)-333(gos)-1(p)-27(o)-28(d)1(arzu.)]TJ 27.879 -13.549 Td[(A)-456(B)-1(or)1(yna,)-456(zapatrzon)28(y)-456(pr)1(z)-1(ed)-456(s)-1(i)1(\\246)-457(w)-457(c)-1(a\\252y)-456(ten)-456(urok)1(liwy)-456(\\261)-1(wiat)-456(no)-28(cy)-456(z)-1(wie-)]TJ -27.879 -13.549 Td[(sno)28(w)27(ej,)-389(sz)-1(ed\\252)-389(z)-1(agon)1(am)-1(i)-389(cic)27(h)1(o,)-389(nib)28(y)-389(wid)1(m)-1(o)-389(b\\252ogos\\252a)27(wi\\241ce)-390(k)56(a\\273)-1(d)1(e)-1(j)-388(grud)1(c)-1(e)-390(ziem)-1(i)1(,)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(m)28(u)-333(\\271)-1(d)1(\\271)-1(b)1(\\252u,)-333(i)-333(s)-1(i)1(a\\252)-334({)-333(s)-1(i)1(a\\252)-334(w)28(c)-1(i)1(\\241\\273)-1(,)-333(sia\\252)-334(n)1(ies)-1(tr)1(udze)-1(n)1(ie.)]TJ 27.879 -13.55 Td[(P)28(ot)28(yk)56(a\\252)-429(s)-1(i)1(\\246)-430(o)-429(skib)28(y)84(,)-429(pl)1(\\241ta\\252)-429(w)27(e)-429(w)-1(y)1(rw)28(a)-1(c)28(h,)-429(n)1(iekiedy)-429(si\\246)-430(n)1(a)28(w)27(et)-429(pr)1(z)-1(ew)-1(r)1(ac)-1(a\\252,)]TJ -27.879 -13.549 Td[(jeno)-477(\\273e)-478(n)1(ic)-478(o)-477(t)28(ym)-477(nie)-477(wie)-1(d)1(z)-1(i)1(a\\252)-478(i)-477(n)1(ic)-478(n)1(ie)-478(czu\\252)-477(kromie)-477(te)-1(j)-477(p)-27(otr)1(z)-1(eb)28(y)-477(g\\252uc)28(hej)-477(a)]TJ 0 -13.549 Td[(ni)1(e)-1(p)1(rze)-1(p)1(artej,)-333(b)28(yc)28(h)-333(s)-1(ia\\242.)]TJ 27.879 -13.549 Td[(Szed\\252)-279(a\\273)-279(do)-278(kra\\253)1(c)-1(a)-279(p)-27(\\363l,)-278(a)-279(gdy)-278(m)27(u)-278(z)-1(i)1(e)-1(mi)-279(zabr)1(ak\\252o)-279(p)-27(o)-28(d)-278(r\\246)-1(k)56(\\241,)-278(no)28(w)27(ej)-278(nabi)1(e)-1(r)1(a\\252)]TJ -27.879 -13.549 Td[(i)-333(s)-1(i)1(a\\252,)-334(a)-333(gd)1(y)-334(m)28(u)-333(dr)1(og\\246)-334(z)-1(ast\\241)-28(p)1(i\\252y)-333(k)56(am)-1(ion)1(ki)-333(a)-333(krze)-334(k)28(olcz)-1(aste)-1(,)-333(za)28(w)-1(r)1(ac)-1(a\\252.)]TJ 27.879 -13.55 Td[(Od)1(c)27(ho)-27(dzi\\252)-307(dalek)28(o,)-307(\\273e)-308(ju)1(\\273)-308(p)1(tas)-1(i)1(e)-308(g\\252osy)-307(s)-1(i\\246)-307(ur)1(yw)27(a\\252y)-307(i)-306(k)55(a)-55(j\\261)-307(w)-308(mglist)28(yc)27(h)-306(m)-1(r)1(o-)]TJ -27.879 -13.549 Td[(k)56(ac)27(h)-371(z)-1(gi)1(n\\246\\252a)-372(c)-1(a\\252a)-371(wie)-1(\\261,)-372(a)-371(ob)-28(ejmo)28(w)27(a\\252o)-371(p\\252o)28(w)27(e,)-372(n)1(ieprzejrzane)-372(morze)-372(p)-28(\\363l)1(,)-372(gin)1(\\241\\252)-372(w)]TJ 0 -13.549 Td[(ni)1(c)27(h)-286(kiej)-287(p)1(tak)-287(zab\\252\\241k)56(an)28(y)-287(l)1(ub)-286(kiej)-287(d)1(usz)-1(a)-287(o)-27(dlatu)1(j\\241ca)-287(z)-1(e)-287(ziem)-1(ie)-287({)-287(i)-286(z)-1(n)1(o)27(wu)-286(s)-1(i)1(\\246)-288(wy\\252a-)]TJ 0 -13.549 Td[(ni)1(a\\252)-292(bli)1(\\273)-1(ej)-292(d)1(om)-1(\\363)28(w,)-292(w)-292(k)1(r\\241)-28(g)-292(p)1(tas)-1(i)1(c)27(h)-291(\\261)-1(wiergot\\363)28(w)-292(p)-28(o)28(wraca\\252)-292(i)-292(w)-292(k)1(r\\241)-28(g)-292(zam)-1(i)1(lk\\252yc)28(h)-292(n)1(a.)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(i)1(l\\246)-299(tr)1(ud)1(\\363)27(w)-298(cz)-1(\\252o)28(wie)-1(czyc)27(h)1(,)-298(jakb)29(y)-298(wynosz)-1(on)28(y)-297(z)-299(n)1(a)27(wrot)1(e)-1(m)-298(na)-298(kr)1(a)27(w)28(\\246d\\271)-298(\\273)-1(yj)1(\\241c)-1(ego)]TJ 0 -13.55 Td[(\\261w)-1(i)1(ata)-334(p)1(rze)-1(z)-334(c)28(hr)1(z)-1(\\246s)-1(tli)1(w)27(\\241)-333(fal)1(\\246)-334(z)-1(b)-27(\\363\\273...)]TJ 27.879 -13.549 Td[({)-333(Pu)1(s)-1(zc)-1(za)-56(j)1(,)-333(Kub)1(a,)-333(bron)28(y)-333(a)-333(letk)28(o!)-333({)-334(w)28(o\\252a\\252)-334(n)1(iekiedy)-333(ni)1(b)28(y)-333(na)-333(par)1(obk)56(a.)]TJ 0 -13.549 Td[(I)-259(t)1(ak)-259(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252)-258(c)-1(zas)-1(,)-258(a)-258(on)-259(sia\\252)-258(niez)-1(mord)1(o)28(w)27(an)1(ie)-1(,)-258(pr)1(z)-1(y)1(s)-1(ta)-55(j\\241c)-259(j)1(e)-1(n)1(o)-259(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-336(o)-27(dp)-27(o)-28(c)-1(z\\241\\242)-336(i)-336(k)28(o\\261c)-1(i)-335(roz)-1(ci\\241)-28(gn)1(\\241\\242)-1(,)-335(i)-336(zno)28(wu)-336(si\\246)-336(br)1(a\\252)-336(do)-336(tej)-336(p)1(\\252onej)-336(p)1(racy)83(,)-335(do)-336(tego)]TJ 0 -13.549 Td[(tru)1(du)-333(n)1(a)-333(nic,)-333(do)-333(t)28(yc)27(h)-333(zb)-28(\\246dn)29(yc)27(h)-333(zabi)1(e)-1(g\\363)28(w.)]TJ 27.879 -13.549 Td[(A)-234(p)-28(otem,)-235(ki)1(e)-1(j)-234(j)1(u\\273)-235(n)1(o)-28(c)-235(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-235(zm)-1(\\246tni)1(a\\252)-1(a,)-234(gwiazdy)-234(z)-1(b)1(lad\\252y)-234(i)-234(kur)1(y)-235(zacz)-1(yn)1(a-)]TJ -27.879 -13.55 Td[(\\252y)-244(p)1(ia\\242)-244(pr)1(z)-1(ed)-244(\\261witani)1(e)-1(m,)-244(zw)27(ol)1(nia\\252)-244(w)-244(r)1(ob)-28(o)-28(cie,)-244(p)1(rzys)-1(ta)28(w)28(a\\252)-244(c)-1(z\\246)-1(\\261cie)-1(j)-243(i)-244(zap)-27(om)-1(n)1(ia)28(ws)-1(zy)]TJ 0 -13.549 Td[(nab)1(iera\\242)-407(ziem)-1(i)-406(p)1(ust\\241)-406(gar\\261c)-1(i\\241)-406(sia\\252)-406({)-406(jakb)28(y)-406(j)1(u\\273)-406(jeno)-406(sie)-1(b)1(ie)-407(same)-1(go)-406(rozs)-1(i)1(e)-1(w)28(a\\252)-407(d)1(o)]TJ 0 -13.549 Td[(ostatk)56(a)-247(na)-246(te)-247(pr)1(ao)-56(j)1(c)-1(o)28(w)27(e)-247(r)1(ole,)-247(wsz)-1(ystkie)-247(d)1(ni)-246(pr)1(z)-1(e\\273)-1(y)1(te)-1(,)-246(ws)-1(zys)-1(t)1(e)-1(k)-246(\\273)-1(y)1(w)27(ot)-246(c)-1(z\\252o)27(wiecz)-1(y)84(,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-298(b)28(y\\252)-298(w)-1(zi\\241\\252)-299(i)-298(teraz)-299(t)28(ym)-299(ni)1(w)27(om)-299(\\261wi\\246)-1(t)28(ym)-299(p)-27(o)28(wraca\\252)-299(i)-299(Bogu)-298(Pr)1(z)-1(edwiec)-1(znem)27(u)1(.)]TJ 27.879 -13.549 Td[(I)-306(w)-307(on\\241)-306(\\273)-1(y)1(w)27(ota)-306(jego)-306(p)-28(or)1(\\246)-307(os)-1(tatn)1(i\\241)-306(c)-1(osik)-306(dziwnego)-307(zac)-1(z\\246\\252)-1(o)-306(si\\246)-307(dzia\\242:)-306(nieb)-28(o)]TJ -27.879 -13.55 Td[(p)-27(os)-1(zarza\\252o)-245(k)1(ie)-1(j)-243(z)-1(gr)1(z)-1(ebn)1(a)-244(p\\252ac)27(h)29(ta,)-244(ksi\\246)-1(\\273yc)-244(z)-1(asz)-1(ed\\252,)-244(wsz)-1(elki)1(e)-245(\\261w)-1(i)1(at\\252o\\261)-1(ci)-244(p)-27(ogas)-1(\\252y)84(,)-244(\\273)-1(e)]TJ 0 -13.549 Td[(ca\\252)-1(y)-323(\\261w)-1(i)1(at)-324(o\\261lep\\252)-324(n)1(agle)-324(i)-323(z)-1(aton)1(\\241\\252)-324(w)-324(b)1(ur)1(yc)27(h)-323(sk)28(o\\252tuni)1(on)28(yc)27(h)-323(top)1(ielac)27(h)1(,)-324(a)-323(c)-1(o\\261)-324(zgo\\252a)]TJ\nET\nendstream\nendobj\n1822 0 obj <<\n/Type /Page\n/Contents 1823 0 R\n/Resources 1821 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1808 0 R\n>> endobj\n1821 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1826 0 obj <<\n/Length 7023      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(571)]TJ -358.232 -35.866 Td[(ni)1(e)-1(p)-27(o)-56(j)1(\\246)-1(tego)-385(jakb)29(y)-385(w)-1(sta\\252o)-385(gdzies)-1(ik)-385(i)-385(sz\\252)-1(o)-385(ci\\246\\273)-1(ki)1(m)-1(i)-385(kr)1(o)-56(j)1(c)-1(ami)-385(ws)-1(kr)1(o\\261)-386(mrok)28(\\363)28(w,)-385(\\273)-1(e)]TJ 0 -13.549 Td[(zie)-1(mia)-333(z)-1(d)1(a\\252a)-334(si\\246)-334(k)28(ol)1(e)-1(b)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ec)-1(i)1(\\241)-28(g\\252y)83(,)-333(z\\252o)27(wr\\363\\273bn)29(y)-333(s)-1(zum)-334(p)-27(o)28(wia\\252)-334(o)-27(d)-333(b)-28(or)1(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(Zatrz\\246)-1(s\\252y)-294(si\\246)-294(dr)1(z)-1(ew)27(a)-293(s)-1(amotne,)-294(d)1(e)-1(szc)-1(z)-294(p)-27(os)-1(c)28(hni)1(\\246)-1(t)28(yc)28(h)-294(l)1(i\\261)-1(ci)-294(zas)-1(zem)-1(r)1(a\\252)-294(p)-28(o)-293(k\\252o-)]TJ -27.879 -13.549 Td[(sac)27(h,)-357(zak)28(o\\252)-1(y)1(s)-1(a\\252y)-357(s)-1(i\\246)-358(zb)-27(o\\273)-1(a)-357(i)-358(tr)1(a)28(w)-1(y)84(,)-357(a)-358(z)-358(ni)1(s)-1(ki)1(c)27(h,)-357(rozdy)1(gotan)28(yc)27(h)-357(p)-27(\\363l)-357(p)-28(o)-27(dni)1(\\363s)-1(\\252)-357(s)-1(i\\246)]TJ 0 -13.55 Td[(cic)27(h)28(y)84(,)-333(trw)28(o\\273)-1(n)28(y)84(,)-333(j\\246kli)1(w)-1(y)-333(g\\252os:)]TJ 27.879 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arzu!)-333(Gosp)-28(o)-27(darzu!)]TJ 0 -13.549 Td[(Zielone)-392(pi\\363r)1(a)-392(j\\246c)-1(zm)-1(i)1(on)-392(trz\\246)-1(s\\252y)-392(si\\246)-393(j)1(akb)28(y)-392(w)-392(p\\252acz)-1(u)-391(i)-392(gor\\241c)-1(y)1(m)-1(i)-392(ca\\252un)1(k)56(am)-1(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(le)-1(ga\\252y)-333(do)-333(j)1(e)-1(go)-333(n\\363g)-333(utr)1(ud)1(z)-1(on)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[({)-420(Gosp)-28(o)-28(d)1(arzu!)-420({)-420(zda\\252y)-420(s)-1(i)1(\\246)-421(s)-1(k)56(amle\\242)-421(\\273yta)-420(z)-1(ast\\246)-1(p)1(uj)1(\\241c)-1(e)-420(m)27(u)-420(d)1(rog\\246)-421(i)-420(tr)1(z)-1(\\246s)-1(\\252y)]TJ -27.879 -13.549 Td[(rosist)28(ym)-362(gr)1(adem)-362(\\252ez)-1(.)-360(Jakie\\261)-362(p)1(taki)-361(zakrzycz)-1(a\\252y)-361(\\273a\\252o\\261)-1(n)1(ie)-1(.)-360(Wiater)-361(za\\252)-1(k)56(a\\252)-361(m)28(u)-361(nad)]TJ 0 -13.55 Td[(g\\252o)28(w)27(\\241.)-365(M)1(g\\252)-1(y)-365(o)28(wij)1(a\\252y)-365(go)-366(w)-365(mokr\\241)-365(pr)1(z)-1(\\246dz\\246)-1(,)-365(a)-365(g\\252osy)-365(w)27(ci\\241\\273)-366(r)1(os)-1(\\252y)84(,)-365(olbr)1(z)-1(ymia\\252y)84(,)-365(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkic)28(h)-333(s)-1(tr)1(on)-333(bi\\252y)-333(j)1(\\246)-1(kl)1(iwie)-1(,)-333(n)1(ie)-1(p)1(rze)-1(r)1(w)27(an)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(Gos)-1(p)-27(o)-28(d)1(arzu!)-333(Gosp)-28(o)-27(darzu!)]TJ 0 -13.549 Td[(Dos\\252ys)-1(za\\252)-334(wr)1(e)-1(sz)-1(cie)-1(,)-333(\\273e)-334(rozgl\\241d)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(w)27(o\\252a\\252)-333(c)-1(i)1(c)27(ho:)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(j)1(e)-1(ste)-1(m,)-333(c)-1(zego?)-334(co?)-1(.)1(..)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(g\\252)-1(u)1(c)27(h)1(\\252o)-436(n)1(araz)-436(d)1(ok)28(o\\252a,)-436(d)1(opi)1(e)-1(ro)-435(ki)1(e)-1(j)-435(zno)28(wu)-435(ru)1(s)-1(zy\\252)-435(p)-28(osiew)27(a\\242)-436(o)-27(c)-1(i\\246\\273a\\252)-1(\\241)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(i)-333(pu)1(s)-1(t)1(\\241)-334(d)1(\\252)-1(on)1(i\\241,)-333(zie)-1(mia)-333(pr)1(z)-1(em)-1(\\363)28(wi\\252a)-333(w)-334(j)1(e)-1(d)1(e)-1(n)-333(c)28(h\\363r)-333(ogromn)28(y:)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a\\253cie)-1(!)-333(Osta\\253cie)-334(z)-333(nami!)-333(Osta\\253cie!...)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\241\\252)-371(zdu)1(m)-1(i)1(on)28(y)83(,)-370(zda\\252o)-370(m)27(u)-369(s)-1(i\\246,)-370(\\273)-1(e)-370(w)-1(szys)-1(tk)28(o)-370(ru)1(s)-1(zy\\252o)-370(nap)1(rze)-1(ciw,)-370(p)-28(e\\252-)]TJ -27.879 -13.549 Td[(za\\252)-1(y)-476(tr)1(a)27(wy)84(,)-477(p)1(\\252yn\\246\\252y)-477(r)1(oz)-1(k)28(o\\252ysane)-477(zb)-28(o\\273a,)-476(opasyw)27(a\\252y)-476(go)-477(zagon)28(y)84(,)-477(ca\\252y)-477(\\261wiat)-476(s)-1(i\\246)]TJ 0 -13.55 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-304(i)-303(w)28(ali\\252)-303(n)1(a)-303(niego,)-303(\\273)-1(e)-303(s)-1(tr)1(ac)27(h)-303(go)-303(p)-27(orw)28(a\\252,)-303(c)27(h)1(c)-1(ia\\252)-303(kr)1(z)-1(y)1(c)-1(ze)-1(\\242,)-303(ale)-303(g\\252)-1(osu)-303(j)1(u\\273)-303(nie)]TJ 0 -13.549 Td[(wydob)29(y\\252)-273(ze)-273(\\261c)-1(i\\261ni)1(\\246)-1(tej)-272(gard)1(z)-1(ieli,)-272(c)28(hcia\\252)-273(u)1(c)-1(iek)56(a\\242)-1(,)-272(zabr)1(ak\\252o)-273(m)28(u)-272(s)-1(i\\252)-272(i)-272(z)-1(i)1(e)-1(mia)-272(c)27(h)28(wyci\\252a)]TJ 0 -13.549 Td[(za)-303(nogi,)-303(p)1(l\\241ta\\252y)-303(go)-303(zb)-27(o\\273)-1(a,)-303(p)1(rzytrzym)28(yw)27(a\\252y)-302(bru)1(z)-1(d)1(y)83(,)-302(\\252)-1(ap)1(a\\252y)-303(t)28(w)27(ar)1(de)-303(s)-1(k)1(ib)28(y)84(,)-303(wygra-)]TJ 0 -13.549 Td[(\\273a\\252)-1(y)-426(drze)-1(w)28(a)-427(z)-1(ast\\246puj)1(\\241c)-1(e)-427(dr)1(og\\246)-1(,)-427(r)1(w)27(a\\252y)-427(ost)28(y)83(,)-427(r)1(ani\\252y)-427(k)56(amie)-1(n)1(ie,)-427(goni\\252)-427(z\\252y)-427(w)-1(i)1(ate)-1(r)1(,)]TJ 0 -13.549 Td[(b\\252\\241k)56(a\\252a)-333(no)-28(c)-334(i)-333(te)-333(g\\252os)-1(y)84(,)-333(bij)1(\\241c)-1(e)-334(ca\\252ym)-334(\\261wiatem)-1(:)]TJ 27.879 -13.55 Td[({)-333(Os)-1(t)1(a\\253cie)-1(!)-333(Osta\\253cie!)]TJ 0 -13.549 Td[(Zmart)28(wia\\252)-488(nar)1(az)-1(,)-487(w)-1(szys)-1(tk)28(o)-487(pr)1(z)-1(ycic)27(h)1(\\252o)-488(i)-488(stan)1(\\246)-1(\\252o)-488(w)-488(miejsc)-1(u)1(,)-488(b)1(\\252ys)-1(k)56(a)28(wic)-1(a)]TJ -27.879 -13.549 Td[(ot)28(w)27(or)1(z)-1(y)1(\\252)-1(a)-324(m)28(u)-324(o)-27(c)-1(zy)-324(z)-325(p)-27(omroki)-324(\\261mie)-1(r)1(te)-1(l)1(nej,)-324(n)1(ieb)-28(o)-324(si\\246)-324(roz)-1(w)28(ar\\252o)-324(p)1(rze)-1(d)-323(nim,)-324(a)-324(tam)]TJ 0 -13.549 Td[(w)-355(j)1(as)-1(n)1(o\\261)-1(ciac)27(h)-353(o\\261)-1(lepi)1(a)-56(j\\241cyc)28(h)-354(B)-1(\\363g)-354(Ocie)-1(c,)-354(s)-1(i)1(e)-1(d)1(z)-1(\\241cy)-354(na)-354(tron)1(ie)-355(ze)-355(s)-1(n)1(op)-28(\\363)28(w,)-354(wyc)-1(i)1(\\241)-28(ga)]TJ 0 -13.549 Td[(ku)-333(n)1(iem)27(u)-333(r\\246c)-1(e)-333(i)-333(rz)-1(ecz)-1(e)-334(d)1(obr)1(otliwie:)]TJ 27.879 -13.55 Td[({)-333(P)28(\\363)-28(d)1(z)-1(i\\273e)-1(,)-333(d)1(usz)-1(k)28(o)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(a,)-333(d)1(o)-334(mni)1(e)-1(.)-333(P)28(\\363)-27(dzi\\273)-1(e,)-333(utr)1(udzon)28(y)-333(p)1(arobk)1(u...)]TJ 0 -13.549 Td[(Zac)27(h)28(wia\\252)-333(si\\246)-334(Boryn)1(a,)-334(r)1(oz)-1(t)28(w)28(orzy\\252)-334(r)1(\\246)-1(ce)-1(,)-333(j)1(ak)-333(w)-334(cz)-1(as)-334(P)29(o)-28(dn)1(ie)-1(sienia:)]TJ 0 -13.549 Td[({)-385(P)28(an)1(ie)-385(B)-1(o\\273e)-385(z)-1(ap)1(\\252)-1(a\\242!)-385({)-385(o)-27(drzek\\252)-385(i)-385(ru)1(n\\241\\252)-385(n)1(a)-385(t)28(w)27(ar)1(z)-386(p)1(rze)-1(d)-384(t)28(ym)-385(Ma)-56(j)1(e)-1(statem)]TJ -27.879 -13.549 Td[(Pr)1(z)-1(ena)-55(j\\261wi\\246)-1(tsz)-1(y)1(m)-1(.)]TJ 27.879 -13.549 Td[(P)28(ad)1(\\252)-334(i)-333(p)-27(om)-1(ar)1(\\252)-334(w)-333(onej)-333(\\252as)-1(ki)-333(P)29(a\\253skiej)-333(go)-28(dzin)1(ie)-1(.)]TJ 0 -13.549 Td[(\\221wit)-333(si\\246)-334(n)1(ad)-333(nim)-333(ucz)-1(yn)1(i\\252,)-333(a)-333(\\212apa)-333(w)-1(y)1(\\252)-334(d)1(\\252ugo)-333(i)-334(\\273a\\252o\\261)-1(n)1(ie...)]TJ\nET\nendstream\nendobj\n1825 0 obj <<\n/Type /Page\n/Contents 1826 0 R\n/Resources 1824 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1824 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1830 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(572)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(36.)]TJ\nET\nendstream\nendobj\n1829 0 obj <<\n/Type /Page\n/Contents 1830 0 R\n/Resources 1828 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1828 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1833 0 obj <<\n/Length 118       \n>>\nstream\n1 0 0 1 237.081 510.595 cm\nBT\n/F31 14.346 Tf 0 0 Td[(CZ)1(\\206\\221\\202)-375(IV)]TJ 16.214 -37.858 Td[(LA)94(TO)]TJ\nET\nendstream\nendobj\n1832 0 obj <<\n/Type /Page\n/Contents 1833 0 R\n/Resources 1831 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1831 0 obj <<\n/Font << /F31 22 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1836 0 obj <<\n/Length 0         \n>>\nstream\nendstream\nendobj\n1835 0 obj <<\n/Type /Page\n/Contents 1836 0 R\n/Resources 1834 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1834 0 obj <<\n/ProcSet [ /PDF ]\n>> endobj\n1839 0 obj <<\n/Length 6564      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(37)]TJ/F17 10.909 Tf 0 -73.325 Td[(I)-333(tak)-333(s)-1(i\\246)-333(ano)-333(b)28(y\\252o)-333(z)-1(mar\\252o)-333(Macie)-1(j)1(o)28(w)-1(i)-333(Boryn)1(ie.)]TJ 27.879 -13.549 Td[(Za\\261)-448(w)-448(c)28(ha\\252up)1(ie)-448(zas)-1(p)1(ali)-447(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-448(z)-448(p)-27(o)28(w)27(o)-27(du)-447(ni)1(e)-1(d)1(z)-1(ieli,)-447(j)1(a\\273)-1(e)-448(d)1(opi)1(e)-1(ro)-447(\\212apa)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ebu)1(dzi\\252)-385(i)1(c)27(h)-384(s)-1(zc)-1(zek)55(an)1(ie)-1(m,)-384(b)-28(o)-384(tak)-384(uj)1(ada\\252,)-384(tak)-385(wy\\252,)-384(tak)-384(c)-1(isk)56(a\\252)-385(si\\246)-385(do)-384(dr)1(z)-1(wi,)-384(a)]TJ 0 -13.549 Td[(kiej)-394(m)27(u)-393(ot)27(w)28(orzyli)1(,)-395(t)1(ak)-395(sz)-1(ar)1(pa\\252)-394(z)-1(a)-394(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wy)-394(i)-394(wylat)28(yw)28(a\\252)-395(ob)1(z)-1(iera)-55(j\\241c)-395(si\\246,)-395(czy)]TJ 0 -13.55 Td[(za)-334(n)1(im)-334(lec\\241)-1(,)-333(\\273e)-334(Han)1(k)28(\\246)-334(jakb)29(y)-333(c)-1(osik)-333(tkn)1(\\246)-1(\\252o.)]TJ 27.879 -13.549 Td[({)-333(Wyj)1(rz)-1(y)1(j)-333(no,)-333(J\\363zk)55(a,)-333(cz)-1(ego)-333(te)-1(n)-333(p)1(ies)-334(c)27(h)1(c)-1(e.)]TJ 0 -13.549 Td[(P)28(olecia\\252a)-334(za)-333(nim)-334(w)-333(dob)1(rej)-333(m)27(y\\261le,)-333(s)-1(wyw)28(ol\\241c)-334(p)-27(o)-334(d)1(ro)-28(d)1(z)-1(e.)]TJ 0 -13.549 Td[(Dop)1(ro)28(w)27(ad)1(z)-1(i\\252)-333(j\\241)-333(do)-333(o)-55(jco)27(w)28(e)-1(go)-333(tr)1(upa.)]TJ 0 -13.549 Td[(W)84(rz)-1(ask)-273(ci)-273(s)-1(tr)1(as)-1(zn)28(y)-273(p)-27(o)-28(dn)1(ios\\252)-1(a,)-272(z)-1(b)1(ie)-1(gl)1(i)-273(s)-1(i\\246)-273(wnet)-273(w)-1(sz)-1(y)1(s)-1(cy)-273(na)-273(p)-27(ole)-274(d)1(o)-273(s)-1(tar)1(e)-1(go,)]TJ -27.879 -13.549 Td[(ale)-405(ju)1(\\273)-406(ca\\252kiem)-406(wid)1(z)-1(ia\\252)-405(si\\246)-405(b)28(y\\242)-405(z)-1(es)-1(kr)1(z)-1(y)1(t)27(wia\\252y)1(m)-1(,)-405(l)1(e)-1(\\273a\\252)-405(na)-405(t)28(w)27(ar)1(z)-1(y)84(,)-405(j)1(ak)-405(b)28(y\\252)-405(p)1(ad\\252)]TJ 0 -13.55 Td[(w)-341(s)-1(k)28(on)1(ania)-341(cz)-1(asie,)-341(a)-341(rozkrzy\\273)-1(o)28(w)28(an)28(y)-341(ki)1(e)-1(b)28(y)-340(w)-342(t)28(ym)-341(os)-1(t)1(atnim)-341(du)1(s)-1(zn)28(ym)-341(i)-341(gor\\241cym)]TJ 0 -13.549 Td[(pacierzu.)]TJ 27.879 -13.549 Td[(Zni)1(e)-1(siono)-333(go)-333(do)-333(c)27(ha\\252u)1(p)28(y)84(,)-334(p)1(rob)1(uj)1(\\241c)-334(jes)-1(zc)-1(ze)-334(r)1(ato)27(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[(Ale)-253(n)1(a)-253(dar)1(m)-1(o)-252(p)-28(osz)-1(\\252y)-252(s)-1(tar)1(un)1(ki,)-252(pr\\363\\273ne)-253(j)1(u\\273)-253(b)28(y\\252y)-252(ws)-1(ze)-1(lak)1(ie)-253(p)-28(omo)-28(ce)-253(i)-253(zabiegi,)]TJ -27.879 -13.549 Td[(tru)1(p)-333(ci)-334(t)1(o)-334(b)28(y)1(\\252)-334(j)1(e)-1(n)1(o,)-334(zimn)28(y)-333(tru)1(p)-333(cz)-1(\\252o)28(wie)-1(cz)-1(y)84(.)]TJ 27.879 -13.55 Td[(Sr)1(ogi)-458(lamen)28(t)-458(p)-27(o)27(wsta\\252)-458(w)-458(c)27(h)1(a\\252)-1(u)1(pi)1(e)-1(,)-458(Han)1(k)56(a)-458(rozkrzycz)-1(a\\252a)-458(si\\246)-458(w)-1(n)1(ieb)-28(og\\252osy)83(,)]TJ -27.879 -13.549 Td[(J\\363zk)55(a)-387(z)-388(r)1(ykiem)-388(t\\252u)1(k\\252a)-388(si\\246)-388(o)-387(\\261c)-1(ian)29(y)83(,)-387(Wi)1(te)-1(k)-387(b)1(ucz)-1(a\\252)-387(w)-1(r)1(az)-388(z)-388(d)1(z)-1(ie\\242m)-1(i,)-387(n)1(a)28(w)27(et)-388(\\212ap)1(a)]TJ 0 -13.549 Td[(wy\\252)-321(i)-320(sz)-1(cz)-1(ek)55(a\\252)-320(w)-321(op\\252otk)56(ac)28(h,)-320(t)28(ylk)28(o)-321(j)1(e)-1(d)1(e)-1(n)-320(P)1(ie)-1(t)1(re)-1(k)1(,)-321(co)-321(si\\246)-321(b)28(y\\252)-320(p)-28(ok)1(r\\246c)-1(i\\252)-320(tu)-320(i)-321(o)28(wdzie,)]TJ 0 -13.549 Td[(wyjr)1(z)-1(a\\252)-333(na)-333(s)-1(\\252o\\253)1(c)-1(e)-333(i)-334(spa\\242)-333(p)-28(osz)-1(ed\\252)-333(do)-333(sta)-56(j)1(ni.)]TJ 27.879 -13.549 Td[(A)-377(Macie)-1(j)-376(le\\273)-1(a\\252)-377(na)-377(sw)27(oim)-377(\\252\\363\\273)-1(ku)1(,)-377(rozc)-1(i)1(\\241)-28(gni\\246t)28(y)-377(i)-377(sz)-1(t)28(ywn)28(y)84(,)-377(z)-378(rozdzia)28(wion\\241)-377(i)]TJ -27.879 -13.55 Td[(u)28(w)28(alan\\241)-364(w)-364(z)-1(iemi)-364(g\\246)-1(b)1(\\241,)-364(p)-28(o)-28(d)1(obien)-364(zgo\\252a)-365(d)1(o)-364(z)-1(es)-1(c)28(h\\252e)-1(j)-363(na)-364(s)-1(\\252o\\253)1(c)-1(u)-364(gr)1(ud)1(y)-365(ziem)-1(i)-364(l)1(e)-1(b)-27(o)]TJ 0 -13.549 Td[(pn)1(ia)-276(s)-1(p)1(r\\363)-28(c)28(hni)1(a\\252)-1(ego;)-276(w)-277(ze)-1(sz)-1(t)28(ywn)1(ia\\252yc)27(h)-276(gar)1(\\261)-1(ciac)27(h)-276(zac)-1(i)1(s)-1(k)56(a\\252)-277(p)1(iac)27(h)1(;)-276(z)-1(a\\261)-277(o)-27(c)-1(zy)-277(ot)28(w)28(arte)]TJ 0 -13.549 Td[(sz)-1(erok)28(o)-346(pat)1(rz)-1(y)1(\\252y)-346(z)-347(tak)1(im)-346(z)-1(ac)27(h)29(w)-1(y)1(c)-1(eniem,)-346(a)-346(tak)-346(k)56(a)-56(j)1(\\261)-347(d)1(alek)28(o,)-346(jak)28(ob)28(y)-345(w)-346(nieb)-28(o)-346(j)1(u\\273)]TJ 0 -13.549 Td[(na)-333(\\261c)-1(ie\\273a)-56(j)-333(wyw)28(arte.)]TJ 27.879 -13.549 Td[(Ale)-384(tak)56(a)-383(s)-1(tr)1(as)-1(zna)-383(groza)-384(\\261m)-1(ierci)-383(bi\\252a)-383(o)-28(d)-383(ni)1(e)-1(go)-383(i)-384(tak)56(a)-383(przejm)27(u)1(j\\241ca)-384(l)1(uto\\261\\242)-1(,)]TJ -27.879 -13.55 Td[(ja\\273e)-334(go)-333(p\\252ac)27(h)29(t\\241)-334(p)1(rzykr)1(yli.)]TJ 27.879 -13.549 Td[(\\233e)-356(z)-1(a\\261)-356(w)-356(m)-1(i)1(g)-356(roznies)-1(\\252o)-356(si\\246)-356(p)-28(o)-355(w)-1(si,)-356(to)-355(le)-1(d)1(wie)-357(co)-356(s\\252o\\253ce)-357(wyn)1(ie)-1(s\\252o)-356(si\\246)-357(c)28(h)28(yla)]TJ -27.879 -13.549 Td[(t)28(yla)-340(nad)-340(c)27(ha\\252u)1(p)28(y)84(,)-341(a)-341(j)1(u\\273)-341(lu)1(dzie)-341(le)-1(cieli)-341(n)1(a)-341(p)1(rze)-1(wiady)1(;)-341(r)1(az)-342(p)-27(o)-341(r)1(az)-342(w)28(c)27(h)1(o)-28(dzi\\252)-341(k)1(tos)-1(ik)1(,)]TJ 0 -13.549 Td[(un)1(os)-1(i)1(\\252)-229(p\\252ac)28(h)28(t)28(y)83(,)-228(z)-1(aziera\\252)-229(m)28(u)-228(w)-229(o)-28(c)-1(zy)84(,)-229(p)1(rz)-1(y)1(kl\\246k)55(a\\252)-228(i)-229(p)1(ac)-1(i)1(e)-1(rz)-229(m\\363)28(wi\\252,)-229(za\\261)-229(dru)1(dzy)-228(\\252)-1(ami\\241c)]TJ 0 -13.549 Td[(rozpacz)-1(n)1(ie)-292(r)1(\\246)-1(ce)-292(pr)1(z)-1(ysta)28(w)27(al)1(i)-291(w)-292(\\273)-1(a\\252ob)1(nej)-291(c)-1(i)1(c)27(ho\\261ci,)-291(do)-291(c)-1(n)1(a)-292(w)-291(s)-1(ob)1(ie)-292(stru)1(c)27(hl)1(e)-1(li)-291(z)-292(on)1(e)-1(j)]TJ 0 -13.55 Td[(Bo\\273)-1(ej)-333(pr)1(z)-1(em)-1(o)-27(c)-1(y)-333(nad)-332(c)-1(z\\252o)27(wiek)28(o)28(w)-1(y)1(m)-334(\\273yw)27(otem.)]TJ 27.879 -13.549 Td[(Jeno)-290(te)-290(\\273)-1(a\\252osne)-290(lame)-1(n)28(t)28(y)-289(s)-1(ierot)-290(n)1(ie)-290(\\261)-1(cic)27(h)1(a\\252y)-290(ani)-289(na)-290(c)27(h)29(w)-1(i)1(l\\246)-1(,)-289(roznos)-1(z\\241c)-290(s)-1(i\\246)-290(na)]TJ -27.879 -13.549 Td[(ca\\252)-1(\\241)-333(wie\\261)-1(.)]TJ 358.232 -29.888 Td[(575)]TJ\nET\nendstream\nendobj\n1838 0 obj <<\n/Type /Page\n/Contents 1839 0 R\n/Resources 1837 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1837 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1842 0 obj <<\n/Length 8544      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(576)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Dop)1(ie)-1(r)1(o)-408(kiej)-407(Jam)27(b)1(ro\\273)-408(n)1(adsz)-1(ed\\252,)-407(w)-1(y)1(p)-28(\\246dzi\\252)-408(wsz)-1(ystkic)28(h)-407(przed)-408(d)1(om)-1(,)-407(a)-408(i)1(z)-1(b)-27(\\246)]TJ -27.879 -13.549 Td[(zam)-1(kn)1(\\241\\252,)-447(b)29(y)-447(w)28(e)-1(sp)-28(\\363\\252)-446(z)-448(J)1(agust)27(y)1(nk)56(\\241)-447(i)-446(Jagat\\241,)-447(k)1(t\\363ra)-447(si\\246)-447(b)28(y)1(\\252)-1(a)-446(przywlek\\252a)-447(z)-447(t)28(ym)]TJ 0 -13.549 Td[(o)-28(c)28(h\\014ar)1(n)28(ym)-366(p)1(ac)-1(i)1(e)-1(rzem)-1(,)-365(wz)-1(i)1(\\241\\242)-366(s)-1(i\\246)-365(do)-365(obrz\\241dzania)-365(umarl)1(ak)55(a.)-365(Oc)28(hotn)1(ie)-366(on)-365(to)-365(z)-1(a-)]TJ 0 -13.549 Td[(wdy)-247(robi)1(\\252)-248(i)-248(z)-248(ni)1(e)-1(ma\\252ymi)-248(pr)1(z)-1(ekp)1(ink)56(ami,)-248(ale)-248(d)1(z)-1(isia)-248(b)29(y\\252o)-248(m)27(u)-247(cz)-1(ego\\261)-249(n)1(a)-248(se)-1(r)1(c)-1(u)-247(c)-1(i)1(\\246)-1(\\273k)28(o.)]TJ 27.879 -13.549 Td[({)-333(T)27(y)1(la)-333(ano)-333(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(ej)-333(sz)-1(cz)-1(\\246\\261)-1(l)1(iw)27(o\\261c)-1(i)1(!)-333({)-334(mamrota\\252)-333(rozdziew)27(a)-56(j)1(\\241c)-334(zm)-1(ar)1(\\252e)-1(go.)]TJ -27.879 -13.55 Td[({)-354(Kostu)1(c)27(ha,)-353(kiej)-354(si\\246)-354(jej)-353(s)-1(p)-27(o)-28(d)1(oba,)-354(u)1(\\252api)-353(c)-1(i\\246)-354(za)-354(grd)1(yk)28(\\246)-1(,)-353(pr)1(a\\261)-1(n)1(ie)-354(w)-354(p)28(ysk,)-354(zadr)1(z)-1(es)-1(z)]TJ 0 -13.549 Td[(gir)1(y)-334(n)1(a)-333(ks)-1(i)1(\\246)-1(\\273\\241)-334(ob)-27(or\\246)-334(i)-333(op)1(rze)-1(j)-333(si\\246!)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-333(Jagust)28(ynk)56(a)-333(b)28(y\\252a)-333(jak)56(a\\261)-334(mark)28(otn)1(a,)-333(b)-28(o)-333(wyrze)-1(k)1(\\252)-1(a)-333(\\273a\\252)-1(o\\261ni)1(e)-1(:)]TJ 0 -13.549 Td[({)-333(T)27(yr)1(a\\252)-334(si\\246)-334(j)1(e)-1(n)1(o)-334(c)28(h)28(ud)1(z)-1(i)1(ac)-1(ze)-1(k)-333(p)-27(o)-334(\\261wiec)-1(ie,)-333(to)-333(le)-1(p)1(iej,)-333(c)-1(o)-333(i)-333(p)-27(om)-1(ar)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(b)-27(o)-333(m)27(u)-333(to)-333(j)1(ak)55(a)-333(krzywda)-333(b)28(y)1(\\252)-1(a!)]TJ 0 -13.549 Td[({)-333(Ale)-334(i)-333(dob)1(ro\\261c)-1(i)-333(te\\273)-334(n)1(a\\273)-1(y\\252)-333(niewiela.)]TJ 0 -13.55 Td[({)-328(K)1(t\\363\\273)-328(to)-328(jej)-327(z)-1(a\\273yw)28(a)-328(do)-327(s)-1(yta!)-327(Cob)28(y)-328(n)1(a)-56(j)1(wi\\246)-1(k)1(s)-1(zy)-328(d)1(z)-1(iedzic,)-328(cob)28(y)-327(na)28(w)27(et)-328(sam)]TJ -27.879 -13.549 Td[(kr)1(\\363l,)-333(a)-334(k)1(\\252)-1(op)-27(ota\\252,)-333(a)-333(z)-1(ab)1(ie)-1(ga\\252,)-333(a)-333(c)-1(i)1(e)-1(rzpi)1(a\\252)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(T)27(yl)1(e)-334(jeno)-333(b)28(y\\252o)-333(jego,)-333(c)-1(o)-333(g\\252o)-28(d)1(u)-333(nie)-333(z)-1(azna\\252)-333(a)-334(c)28(h\\252o)-28(d)1(u.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(to)-333(g\\252\\363)-28(d,)-333(matk)28(o.)-333(T)83(ur)1(bacje)-334(gr)1(yz\\241)-334(b)1(arze)-1(j)-333(wsz)-1(ystkiego.)]TJ 0 -13.549 Td[({)-256(P)1(ra)28(wda,)-255(c)-1(zym)-256(to)-256(sam)-1(a)-255(nie)-256(p)1(rakt)28(yk)1(!)-256(A)-256(j)1(e)-1(m)28(u)-255(Jagusia)-256(zapiek)56(a\\252a)-256(do)-255(\\273)-1(yw)28(e)-1(go)]TJ -27.879 -13.55 Td[(mi\\246)-1(sa,)-333(dziec)-1(i)-333(te\\273)-334(ni)1(e)-334(\\273)-1(a\\252o)28(w)28(a\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-243(Dziec)-1(i)-242(mia\\252)-243(dob)1(re)-243(i)-242(nij)1(akiej)-242(krzywdy)-242(o)-28(d)-242(nic)28(h)-243(n)1(ie)-243(za)-1(zna\\252)-242({)-243(wtr\\241ci\\252a)-243(Jagata)]TJ -27.879 -13.549 Td[(pr)1(z)-1(eryw)28(a)-56(j)1(\\241c)-334(g\\252o\\261ne)-334(mo)-28(d\\252y)84(.)]TJ 27.879 -13.549 Td[({)-236(P)1(iln)28(u)1(jcie)-236(lepiej)-235(pacie)-1(r)1(z)-1(a.)-235(Hale)-1(,)-235(\\273)-1(a\\252o\\261c)-1(i)1(e)-237(wyci\\241)-28(ga)-235(z)-1(a)-235(nieb)-28(oszc)-1(zyk)56(a,)-236(a)-236(u)1(s)-1(z\\363)28(w)]TJ -27.879 -13.549 Td[(dob)1(rze)-334(nad)1(s)-1(t)1(a)27(wia)-333(na)-333(no)28(win)1(ki)-333({)-334(w)28(ark)1(n\\246\\252)-1(a)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a.)]TJ 27.879 -13.55 Td[({)-333(B)-1(o)-333(z\\252)-1(e)-333(dzie)-1(ci)-333(tak)-333(b)28(y)-333(s)-1(i)1(\\246)-334(ni)1(e)-334(biad)1(oli\\252y)84(.)-333(P)28(os)-1(\\252u)1(c)27(h)1(a)-56(jcie)-334(an)1(o...)]TJ 0 -13.549 Td[({)-369(Byc)27(h)-368(si\\246)-369(w)27(a)-55(ju)-368(t)28(ylac)28(hna)-368(os)-1(ta\\252o)-368(p)-28(o)-369(k)1(im,)-369(to)-369(b)29(y\\261)-1(cie)-369(si\\246)-369(do)-369(si\\363)-28(d)1(m)-1(ego)-369(p)-27(otu)]TJ -27.879 -13.549 Td[(wydzierali)-333(n)1(ie)-334(\\273a\\252)-1(u)1(j\\241c)-333(gardzieli.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ha)-55(jta!)-333(Jagu)1(s)-1(i)1(a)-334(b)1(ie)-1(\\273y!)-333({)-333(pr)1(z)-1(ycisz)-1(y\\252)-333(Jam)28(bro\\273.)]TJ 0 -13.549 Td[(Jagu)1(\\261)-387(wn)1(e)-1(t)-386(wp)1(ad\\252a)-386(d)1(o)-386(izb)28(y)-386(i)-385(s)-1(tan)1(\\246)-1(\\252a)-386(w)-386(p)-27(o\\261ro)-28(dk)1(u)-386(k)1(ie)-1(j)-385(wryta,)-385(nie)-386(mog\\241c)]TJ -27.879 -13.55 Td[(wykr)1(z)-1(tu)1(s)-1(i\\242)-333(ani)-333(s)-1(\\252o)28(w)28(a.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-333(b)28(yli)-333(Macieja)-333(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(w)28(ali)-333(w)-334(cz)-1(y)1(s)-1(t\\241)-333(k)28(os)-1(zul)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-286(P)28(omarli!)-286({)-286(j\\246kn)1(\\246)-1(\\252a)-286(w)-1(r)1(e)-1(sz)-1(cie)-287(wtap)1(ia)-56(j)1(\\241c)-287(w)-286(niego)-286(z)-1(es)-1(tr)1(ac)27(han)1(e)-1(,)-286(n)1(ie)-1(p)1(rzytom-)]TJ -27.879 -13.549 Td[(ne)-332(o)-27(c)-1(zy)83(.)-331(Str)1(ac)27(h)-331(j\\241)-331(c)27(h)28(y)1(c)-1(i\\252)-331(z)-1(a)-331(gard\\252o)-331(i)-332(se)-1(r)1(c)-1(e)-332(j)1(akb)28(y)-331(s)-1(i\\246)-332(zakrzep\\252o)-332(n)1(a)-332(l\\363)-27(d,)-331(\\273)-1(e)-332(ledwie)]TJ 0 -13.549 Td[(dy)1(c)27(ha\\242)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\252a.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(wiedzie)-1(l)1(i\\261)-1(cie)-334(t)1(o)-1(?)-333({)-333(p)28(yta\\252)-333(Jam)27(b)1(ro\\273)-334(\\252ago)-28(d)1(nie.)]TJ 0 -13.549 Td[({)-495(U)-494(matki)-494(s)-1(p)1(a\\252)-1(am,)-494(a)-495(Wi)1(te)-1(k)-494(c)-1(o)-494(ino)-494(pr)1(z)-1(yl)1(e)-1(cia\\252)-495(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(.)-494(Nie)-495(\\273yje)-495(to)]TJ -27.879 -13.549 Td[(nap)1(ra)28(wd\\246?)-334({)-333(z)-1(ap)29(yta\\252a)-334(n)1(agle,)-333(przyst\\246)-1(p)1(uj)1(\\241c)-334(do)-333(ni)1(e)-1(go.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(nie)-333(do)-333(\\261)-1(lu)1(bu)-333(go)-333(ry)1(c)27(h)28(tu)1(jem)-1(,)-333(a)-333(jeno)-333(do)-333(tru)1(mn)28(y)83(.)]TJ 0 -13.549 Td[(Nie)-373(mog\\252)-1(a)-372(jes)-1(zc)-1(ze)-374(zrozumie\\242)-1(,)-372(w)-1(spar)1(\\252a)-373(s)-1(i\\246)-373(o)-373(\\261c)-1(i)1(an\\246,)-373(gdy)1(\\273)-374(si\\246)-373(jej)-373(wid)1(z)-1(ia\\252o,)]TJ -27.879 -13.549 Td[(jak)28(ob)29(y)-387(j)1(\\241)-387(morz)-1(y)1(\\252)-387(c)-1(i)1(\\246)-1(\\273ki)-386(\\261)-1(p)1(ik)-387(i)-386(z)-1(mora)-386(du)1(s)-1(i\\252a,)-386(a)-387(on)1(a)-387(ni)1(e)-388(p)-27(oredzi)-387(si\\246)-387(p)1(rz)-1(ebu)1(dzi\\242,)]TJ 0 -13.55 Td[(jeno)-432(si\\246)-433(k)56(ala)-432(ca\\252a)-432(w)-433(p)-27(otac)27(h)-432(i)-431(w)-433(m\\246)-1(ce)-433(strac)28(h)28(u.)-432(I)-432(co)-432(tro)-28(c)28(h\\246)-433(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-432(z)-432(iz)-1(b)29(y)]TJ 0 -13.549 Td[(i)-419(p)-27(o)28(w)-1(r)1(ac)-1(a\\252a)-419(n)1(ie)-419(m)-1(og\\241c)-419(o)-28(derw)28(a\\242)-419(o)-28(c)-1(z\\363)28(w)-420(o)-27(d)-419(tr)1(upa,)-418(i)-419(co)-419(tro)-28(c)28(h\\246)-419(z)-1(r)1(yw)27(a\\252a)-419(si\\246)-419(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(uciek)56(a\\242)-1(,)-431(a)-432(osta)28(w)27(a\\252a,)-431(i)-431(c)-1(o)-431(tro)-28(c)28(h\\246)-432(lecia\\252a)-432(za)-432(d)1(om)-1(,)-431(n)1(a)-432(p)1(rz)-1(e\\252az)-432(i)-431(nic)-432(n)1(ie)-432(wid)1(z)-1(\\241cy)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252a)-361(p)-27(o)-361(p)-27(olac)27(h)-360(alb)-27(o)-360(s)-1(iad)1(a\\252a)-361(n)1(a)-361(p)1(rz)-1(y)1(\\271)-1(b)1(ie)-361(wp)-28(o)-27(dle)-361(J\\363zki,)-360(kt\\363r)1(a)-361(b)1(ucz)-1(a\\252a)-360(dr\\241c)]TJ 0 -13.549 Td[(w\\252os)-1(y)-333(i)-333(kr)1(z)-1(ycz)-1(\\241c)-333(\\273)-1(a\\252o\\261nie:)]TJ 27.879 -13.55 Td[({)-333(O)-333(m)-1(\\363)-55(j)-333(tatul)1(u)-333(jedyn)29(y!)-333(O)-333(m)-1(\\363)-55(j)-333(tatul)1(u!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-299(c)-1(o)-299(ws)-1(zys)-1(t)1(k)28(o)-300(ob)-27(e)-1(j)1(\\261)-1(cie)-300(i)-299(d)1(om)-300(p)-28(e\\252ne)-299(b)28(y\\252y)-299(t)28(yc)27(h)-299(p)1(\\252)-1(acz\\363)27(w)-299(i)-300(l)1(am)-1(en)28(tli)1(w)-1(y)1(c)27(h)]TJ\nET\nendstream\nendobj\n1841 0 obj <<\n/Type /Page\n/Contents 1842 0 R\n/Resources 1840 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1827 0 R\n>> endobj\n1840 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1845 0 obj <<\n/Length 8789      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(577)]TJ -358.232 -35.866 Td[(sz)-1(lo)-27(c)27(ha\\253)1(,)-400(a)-399(ona)-399(t)28(ylk)28(o)-399(jedn)1(a,)-400(c)28(ho)-28(cia)-399(s)-1(i\\246)-400(w)-399(niej)-399(trz\\246)-1(s\\252a)-400(k)56(a\\273da)-399(k)28(os)-1(tec)-1(zk)56(a)-400(i)-399(jaki)1(e)-1(\\261)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kie)-409(b)-27(olenie)-409(spiera\\252o)-409(p)-27(o)-28(d)-408(piersiami,)-409(n)1(ie)-409(pu)1(\\261)-1(ci\\252a)-409(n)1(i)-409(j)1(e)-1(d)1(nej)-409(\\252zy)83(,)-408(nie)-409(p)-27(oredzi\\252a)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(e\\242,)-334(a)-333(jeno)-333(c)27(h)1(o)-28(d)1(z)-1(i\\252a)-333(b\\252\\246dn)1(a,)-333(\\261)-1(wiec)-1(\\241c)-334(o)-27(c)-1(zam)-1(i)-333(zapiek\\252ymi)-333(w)-334(zgrozie)-1(.)]TJ 27.879 -13.549 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-287(\\273)-1(e)-288(Hank)56(a)-288(wryc)28(hle)-288(si\\246)-288(opami\\246)-1(t)1(a\\252)-1(a)-287(i)-288(c)27(h)1(o)-28(cia\\273)-289(j)1(e)-1(szc)-1(ze)-1(c)28(h)-288(p)-27(op\\252aku)1(-)]TJ -27.879 -13.549 Td[(j\\241cy)84(,)-294(a)-293(ju)1(\\273)-294(da)28(w)27(a\\252a)-293(bacz)-1(eni)1(e)-294(na)-294(wsz)-1(y)1(s)-1(tk)28(o)-293(i)-294(r)1(z)-1(\\241d)1(z)-1(i\\252a)-293(jak)-293(zw)-1(y)1(kle,)-294(\\273e)-294(kiej)-293(pr)1(z)-1(ylecie)-1(l)1(i)]TJ 0 -13.55 Td[(k)28(o)28(w)27(al)1(o)27(wie,)-333(c)-1(a\\252ki)1(e)-1(m)-334(b)29(y\\252a)-334(ost)28(yg\\252a.)]TJ 27.879 -13.549 Td[(Magd)1(a)-334(wyb)1(uc)28(hn\\246\\252a)-333(p\\252ac)-1(zem)-1(,)-333(a)-333(jeno)-333(k)28(o)28(w)27(al)-333(rozp)28(yt)28(yw)28(a\\252.)]TJ 0 -13.549 Td[(Op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(p)-27(o)-334(p)-27(orz\\241dku)1(,)-333(jak)-333(si\\246)-334(to)-333(s)-1(t)1(a\\252)-1(o.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(c)-1(o)-333(m)27(u)-333(P)28(an)-332(Je)-1(zus)-334(d)1(a\\252)-334(l)1(e)-1(kk)56(\\241)-333(\\261)-1(mier\\242!)-333({)-334(sz)-1(epn)1(\\241\\252.)]TJ 0 -13.549 Td[({)-333(T)27(yl)1(ac)27(hn)1(a)-333(w)-1(y)1(c)-1(ierzpia\\252,)-333(to)-333(m)27(u)-333(si\\246)-334(n)1(ale\\273)-1(a\\252a.)]TJ 0 -13.549 Td[({)-333(C)-1(h)29(ud)1(z)-1(iasz)-1(ek,)-333(na)-333(p)-27(ole)-334(j)1(a\\273)-1(e)-334(u)1(c)-1(i)1(e)-1(k)56(a\\252)-333(prze)-1(d)-332(k)28(os)-1(tu)1(c)27(h\\241!)]TJ 0 -13.55 Td[({)-333(A)-334(z)-333(w)-1(i)1(e)-1(cz)-1(or)1(a)-334(zagl\\241da\\252am)-333(do)-333(niego,)-333(to)-333(le)-1(\\273a\\252)-334(se)-334(cic)27(h)1(o)-334(j)1(ak)-333(z)-1(a)28(wdy)84(.)]TJ 0 -13.549 Td[({)-333(I)-334(n)1(ie)-334(p)1(rz)-1(em\\363)27(wi\\252,)-333(co?)-334({)-333(p)28(yta\\252)-333(tr\\241c)-333(s)-1(u)1(c)27(he)-333(o)-28(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(Ani)-333(tego)-334(s\\252o)28(w)27(a,)-333(ogarn)1(\\246)-1(\\252am)-334(m)28(u)-333(pi)1(e)-1(r)1(z)-1(yn)1(\\246)-1(,)-333(d)1(a\\252)-1(am)-333(pi\\242)-333(i)-333(p)-28(osz)-1(\\252am.)]TJ 0 -13.549 Td[({)-451(I)-452(sam)-452(ws)-1(ta\\252!)-451(Mo\\273e)-452(b)28(y)-451(jesz)-1(cz)-1(ec)27(h)-451(n)1(ie)-452(p)-27(om)-1(ar)1(li,)-451(\\273)-1(eb)28(y)-451(go)-452(k)1(to)-452(p)1(iln)1(o)27(w)28(a\\252)-452({)]TJ -27.879 -13.549 Td[(j\\246kn)1(\\246)-1(\\252a)-333(Magda)-333(p)1(rz)-1(ez)-334(g\\252\\246b)-28(ok)1(ie)-334(sz)-1(lo)-27(c)27(han)1(ia.)]TJ 27.879 -13.55 Td[({)-333(Jagusia)-333(s)-1(yp)1(ia\\252a)-333(u)-333(m)-1(atk)1(i,)-333(b)-28(o)-333(stara)-333(c)-1(i)1(\\246)-1(\\273k)28(o)-334(c)28(hora,)-333(za)28(w)-1(d)1(y)-333(tak.)]TJ 0 -13.549 Td[({)-260(T)84(ak)-260(j)1(u\\273)-260(mia\\252o)-260(b)28(y)1(\\242)-1(,)-259(to)-260(i)-259(tak)-259(s)-1(i)1(\\246)-260(s)-1(ta\\252o!)-259(T)27(y)1(la)-260(si\\246)-260(nac)28(hor)1(z)-1(a\\252,)-259(jak\\273e)-1(,)-259(to)-28(\\242)-260(wi\\246c)-1(ej)]TJ -27.879 -13.549 Td[(ni)1(\\271)-1(li)-295(k)1(w)27(ar)1(ta\\252)-1(!)-295(A)-295(k)28(om)28(u)-295(ni)1(e)-296(do)-295(zdro)28(wia,)-295(to)-295(lepsz)-1(a)-295(p)1(r\\246)-1(d)1(k)56(a)-296(\\261mie)-1(r)1(\\242)-1(.)-295(T)83(r)1(z)-1(a)-295(P)28(an)29(u)-295(B)-1(ogu)]TJ 0 -13.549 Td[(dzi\\246k)28(o)28(w)27(a\\242,)-333(c)-1(o)-333(s)-1(i\\246)-333(ju)1(\\273)-334(nie)-333(m)-1(or)1(du)1(je)-334({)-333(wyrze)-1(k)1(\\252)-1(.)]TJ 27.879 -13.549 Td[({)-349(Ju)1(\\261)-1(ci,)-348(a)-349(s)-1(ami)-348(w)-1(i)1(e)-1(cie)-1(,)-348(c)-1(o)-348(to)-349(zraz)-1(u)-348(k)28(osz)-1(to)28(w)28(a\\252y)-349(d)1(o)-28(c)27(h)28(tor)1(y)83(,)-348(c)-1(o)-348(le)-1(k)1(i,)-349(a)-348(na)-349(n)1(ic)]TJ -27.879 -13.55 Td[(p)-27(os)-1(z\\252o)-334(wsz)-1(ystk)28(o.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(jak)-333(k)1(to)-334(n)1(a)-334(\\261mie)-1(r)1(\\242)-334(c)27(h)1(ory)84(,)-334(t)1(e)-1(m)28(u)-333(nie)-333(p)-28(omog\\241)-334(d)1(o)-28(c)27(h)29(tory)84(.)]TJ 0 -13.549 Td[({)-333(T)83(aki)-333(gos)-1(p)-27(o)-28(d)1(arz,)-334(t)1(aki)-333(m)-1(\\241d)1(rala,)-333(m\\363)-56(j)-333(J)1(e)-1(zu!)-333({)-333(biad)1(oli\\252a)-333(Magda.)]TJ 0 -13.549 Td[({)-333(A)-334(mni)1(e)-334(jeno)-333(\\273a)-1(l)1(,)-333(c)-1(o)-333(An)28(tek)-333(nie)-334(zd\\241\\273y\\252)-333(do)-333(\\273)-1(y)1(w)27(ego.)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(z)-1(iec)-1(i)1(uc)27(h)1(,)-333(to)-334(p)1(\\252ak)56(a\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(ie.)-333(O)-333(p)-28(o)-27(c)27(ho)28(wku)-333(p)1(iln)1(ie)-1(j)-333(p)-27(om)28(y\\261)-1(l)1(e)-1(\\242.)]TJ 0 -13.55 Td[({)-333(Pra)28(wda,)-333(a)-333(tu)-333(j)1(akb)28(y)-333(na)-333(z\\252)-1(o\\261\\242)-334(i)-333(Ro)-28(c)28(ha)-333(nie)-333(m)-1(a.)]TJ 0 -13.549 Td[({)-333(P)28(oredzim)27(y)-333(se)-334(sam)-1(i.)-333(Ni)1(e)-334(fr)1(as)-1(u)1(jcie)-334(si\\246)-1(,)-333(j)1(u\\273)-334(j)1(a)-334(wsz)-1(ystk)28(o)-333(wyryc)28(h)28(tuj)1(\\246)-1(.)]TJ 0 -13.549 Td[(Od)1(p)-28(o)28(wiad)1(a\\252)-310(k)28(o)28(w)27(al,)-309(kt)1(\\363re)-1(n)-309(c)28(ho)-28(cia\\273)-310(t)28(w)28(arz)-310(p)-27(ok)56(az)-1(yw)28(a\\252)-310(f)1(rasobliw)28(\\241,)-309(a)-310(w)-309(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(cos)-1(ik)-434(d)1(ru)1(gie)-1(go)-434(tai)1(\\252)-1(,)-433(gdy\\273)-434(nib)29(y)-434(to)-434(w)-1(zdy)1(c)27(ha\\252,)-434(n)1(ib)28(y)-434(to)-434(\\273a\\252o)28(w)27(a\\252)-434(i)-434(\\252z)-1(y)-433(ob)-28(ciera\\252,)-434(a)]TJ 0 -13.549 Td[(w)-366(o)-28(czy)-366(n)1(ie)-366(patr)1(z)-1(y\\252.)-365(Wzi\\241\\252)-366(si\\246)-366(Jam)28(bro\\273o)28(w)-1(i)-365(p)-27(om)-1(aga\\242)-366(i)-365(ub)1(iery)-365(o)-56(j)1(c)-1(o)28(w)27(e)-366(szyk)28(o)28(w)27(a\\242,)]TJ 0 -13.55 Td[(a)-405(d\\252u)1(go)-406(m)28(ysz)-1(k)28(o)28(w)27(a\\252)-405(w)-405(k)28(om)-1(or)1(z)-1(e)-406(p)-27(omi\\246dzy)-405(m)-1(otk)56(ami)-405(pr)1(z)-1(\\246dzy)-405(i)-405(w)-406(r)1(upi)1(e)-1(ciac)27(h)1(,)-405(to)]TJ 0 -13.549 Td[(p)-27(o)-435(k)56(\\241tac)27(h)-434(s)-1(zuk)56(a\\252,)-435(to)-435(j)1(a\\273)-1(e)-435(n)1(a)-435(g\\363r\\246)-435(w)-1(\\252azi\\252)-435(n)1(ib)28(y)-435(t)1(o)-435(p)-28(o)-435(b)1(ut)28(y)84(,)-435(kt\\363r)1(e)-435(tam)-436(wisia\\252y)84(.)]TJ 0 -13.549 Td[(Wzdyc)28(ha\\252)-355(ju)1(c)27(h)1(a)-356(k)1(ie)-1(j)-354(m)-1(iec)27(h)1(,)-355(pacierz)-1(e)-355(trze)-1(p)1(a\\252)-355(g\\252)-1(o\\261ni)1(e)-1(j)-355(n)1(i\\271li)-355(Jagata)-355(i)-355(wyp)-27(om)-1(in)1(a\\252)]TJ 0 -13.549 Td[(dob)1(ro\\261c)-1(i)1(e)-269(ni)1(e)-1(b)-27(os)-1(zc)-1(zyk)56(a,)-268(ale)-268(o)-28(c)-1(zy)-268(m)27(u)-267(c)-1(i\\246gien)-268(s)-1(zuk)56(a\\252y)-268(cz)-1(ego\\261)-269(p)-27(o)-268(iz)-1(b)1(ie)-1(,)-267(a)-269(same)-269(r\\246c)-1(e)]TJ 0 -13.549 Td[(laz\\252y)-333(p)-28(o)-28(d)-333(p)-27(o)-28(d)1(usz)-1(k)1(i)-334(l)1(e)-1(b)-27(o)-333(w)27(e)-334(s\\252om)-1(i)1(e)-334(\\252\\363\\273)-1(k)56(a)-333(c)27(hciwie)-334(b)-27(ob)1(ro)28(w)27(a\\252y)84(.)]TJ 27.879 -13.549 Td[(A\\273)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a)-334(ozw)27(a\\252a)-333(s)-1(i)1(\\246)-334(k)56(\\241\\261)-1(li)1(w)-1(i)1(e)-1(:)]TJ 0 -13.55 Td[({)-320(By\\261c)-1(ie)-320(tam)-320(c)-1(ze)-1(go)-319(usc)27(hn)1(i\\246te)-1(go)-320(n)1(ie)-320(nale\\271)-1(l)1(i...)-319(a)-320(na)-55(jdziec)-1(i)1(e)-1(,)-320(to)-319(trzym)-1(a)-55(jcie\\273)-1(,)]TJ -27.879 -13.549 Td[(b)-27(o)-334(w)28(a)-56(j)1(u)-333(uciec)-1(ze)-334(z)-334(gar\\261ci,)-333(\\261)-1(li)1(z)-1(gie...)]TJ 27.879 -13.549 Td[({)-471(Kogo)-471(nie)-471(piecz)-1(e,)-471(te)-1(m)28(u)-471(ni)1(e)-472(uciec)-1(ze)-1(!)-471({)-471(mru)1(kn\\241\\252)-471(i)-471(ju)1(\\273)-472(sz)-1(u)1(k)55(a\\252)-471(ot)28(w)28(arc)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)-406(j)1(e)-1(n)1(o)-407(m\\363g\\252)-1(,)-406(n)1(a)27(w)28(e)-1(t)-406(ni)1(e)-407(bacz)-1(\\241c)-407(n)1(a)-407(organ)1(isto)27(w)28(ego)-407(Mic)28(ha\\252a,)-406(kt\\363ren)-406(pr)1(z)-1(yl)1(e)-1(cia\\252)]TJ 0 -13.549 Td[(zz)-1(ia)-55(jan)28(y)-333(p)-27(o)-333(Jam)27(b)1(ro\\273)-1(a.)]TJ 27.879 -13.55 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(d)1(o)-334(k)28(o\\261c)-1(io\\252a,)-333(p)1(rzywie)-1(\\271li)-333(do)-333(c)27(h)1(rzt\\363)28(w)-334(cz)-1(w)28(oro)-333(dzie)-1(ci.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(p)-27(o)-28(c)-1(ze)-1(k)56(a)-55(j\\241,)-333(ni)1(e)-334(os)-1(ta)28(wi\\246)-334(r)1(oz)-1(b)1(abr)1(anego.)]TJ\nET\nendstream\nendobj\n1844 0 obj <<\n/Type /Page\n/Contents 1845 0 R\n/Resources 1843 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1843 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1849 0 obj <<\n/Length 8972      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(578)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-404(Wy)1(r\\246)-1(cz)-1(\\246)-404(w)28(as)-1(,)-404(i)1(d\\271c)-1(ie,)-404(Jam)28(br)1(o\\273)-1(y)-404({)-404(n)1(ama)27(wia\\252)-404(k)28(o)28(w)28(al,)-404(jak)1(b)28(y)-404(c)27(h)1(c)-1(\\241c)-404(si\\246)-405(go)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(b)28(y)1(\\242)-1(.)]TJ 27.879 -13.549 Td[({)-340(Oc)27(h)1(\\014ar)1(o)27(w)28(a\\252e)-1(m)-340(s)-1(i)1(\\246)-1(,)-340(to)-340(i)-340(zrobi)1(\\246)-1(.)-340(Niepr)1(\\246)-1(d)1(k)28(o)-340(tra\\014)-340(mi)-340(s)-1(i)1(\\246)-341(dr)1(ugi)-340(tak)1(i)-340(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(z)-1(.)-330(Z)-1(r)1(\\363b)-331(w)-331(k)28(o\\261c)-1(iele,)-331(co)-331(p)-28(otr)1(z)-1(a,)-330(Mic)27(h)1(a\\252,)-331(wyr\\246cz)-332(mnie,)-331(a)-331(n)1(iec)27(h)-331(c)28(hrzes)-1(tn)1(i)-331(o\\252tarz)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(d\\241)-336(z)-336(zapalon)28(y)1(m)-1(i)-335(\\261)-1(wiec)-1(ami,)-335(to)-336(c)-1(i)-335(grosz)-337(j)1(aki)-335(k)55(ap)1(nie.)-336(Na)-336(or)1(ganist\\246)-336(s)-1(i)1(\\246)-337(u)1(c)-1(zy)83(,)-335(a)]TJ 0 -13.55 Td[(pr)1(z)-1(y)-302(g\\252upi)1(m)-304(c)28(hrzcie)-304(j)1(e)-1(sz)-1(cze)-304(u)1(s)-1(\\252u)1(\\273)-1(y\\242)-303(ni)1(e)-304(p)-27(oredzi)-303({)-303(ozw)27(a\\252)-303(si\\246)-303(z)-1(a)-303(n)1(im)-303(w)-1(zgard)1(liwie.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(pr)1(z)-1(ywied\\252a)-333(Mateusz)-1(a,)-333(b)29(yc)27(h)-333(wzi\\241\\252)-334(miar)1(\\246)-334(na)-333(tru)1(m)-1(n)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-369(Jeno)-369(m)27(u)-368(domo)28(w)-1(i)1(n)28(y)-369(ni)1(e)-370(\\273a\\252)-1(u)1(j,)-369(n)1(iec)27(h)28(ta)-369(c)28(h)28(ud)1(z)-1(iak)-369(r)1(oz)-1(epr)1(z)-1(e)-369(s)-1(i\\246)-369(c)27(h)1(o)-28(\\242)-1(b)29(y)-369(p)-28(o)]TJ -27.879 -13.549 Td[(\\261m)-1(ierci)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(Jam)28(bro\\273)-333(s)-1(m)28(utn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-287(M)1(\\363)-56(j)-286(Jez)-1(u)1(,)-287(za)-287(\\273ycia)-287(to)-286(c)-1(i)1(as)-1(n)1(o)-287(m)27(u)-286(b)29(y\\252o)-287(i)-286(na)-286(w)-1(\\252\\363k)56(ac)27(h)1(,)-287(a)-286(teraz)-287(i)-287(w)28(e)-287(cz)-1(terec)27(h)]TJ -27.879 -13.549 Td[(desk)55(ac)28(h)-492(s)-1(i\\246)-493(zmie)-1(\\261ci)-493({)-492(s)-1(ze)-1(p)1(n\\246\\252a)-493(Jagu)1(s)-1(t)28(yn)1(k)56(a,)-493(za\\261)-493(Jagata)-492(pr)1(z)-1(eryw)28(a)-56(j)1(\\241c)-493(pacie)-1(r)1(z)-1(e)]TJ 0 -13.55 Td[(j\\241k)56(a\\252a)-333(p\\252acz)-1(li)1(w)-1(i)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-355(Gosp)-28(o)-28(d)1(arze)-1(m)-355(s)-1(e)-356(b)29(y\\252,)-355(to)-356(i)-355(gosp)-28(o)-27(darski)-355(p)-27(o)-28(c)27(h)1(\\363)27(w)28(ek)-356(mia\\252)-355(b)-28(\\246dzie,)-355(a)-356(b)1(iedn)28(y)]TJ -27.879 -13.549 Td[(cz)-1(\\252o)28(wie)-1(k)-414(to)-414(na)28(w)27(et)-414(nie)-415(wie,)-414(p)-28(o)-27(d)-414(jaki)1(m)-415(p\\252otem)-415(t\\246)-415(ostatni)1(\\241)-415(par)1(\\246)-415(pu)1(\\261)-1(ci.)-414(Byc)27(h)-414(ci)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at\\252o\\261)-1(\\242)-334(wieku)1(is)-1(ta!)-333(Byc)27(h)-332(c)-1(i.)1(..)-333({)-334(zani)1(e)-1(s\\252a)-334(si\\246)-334(zno)28(wu.)]TJ 27.879 -13.549 Td[(A)-437(M)1(ate)-1(u)1(s)-1(z)-437(jeno)-436(g\\252)-1(o)28(w)28(\\241)-437(p)-27(okiw)28(a\\252)-1(,)-436(o)-28(dmierzy\\252)-437(tru)1(pa,)-436(pacie)-1(r)1(z)-438(zm\\363)27(wi\\252)-437(i)-436(wy-)]TJ -27.879 -13.55 Td[(sz)-1(ed\\252,)-308(a)-307(c)27(ho)-27(c)-1(ia\\273)-308(to)-308(b)29(y\\252a)-308(ni)1(e)-1(d)1(z)-1(iela,)-307(z)-1(ab)1(ra\\252)-308(si\\246)-308(w)-1(n)1(e)-1(t)-307(do)-308(r)1(ob)-28(ot)28(y;)-307(ws)-1(ze)-1(lak)1(i)-308(p)-27(orz\\241dek)]TJ 0 -13.549 Td[(stolarski)-335(zna)-55(jd)1(o)27(w)28(a\\252)-335(s)-1(i)1(\\246)-336(w)-335(c)27(h)1(a\\252upi)1(e)-1(,)-335(a)-334(s)-1(u)1(c)27(he)-335(d\\246b)-27(o)27(w)28(e)-336(d)1(e)-1(ski)-335(j)1(u\\273)-335(z)-335(da)28(w)-1(n)1(a)-335(na)-335(g\\363r)1(z)-1(e)]TJ 0 -13.549 Td[(cz)-1(ek)55(a\\252y)84(.)]TJ 27.879 -13.549 Td[(Wn)1(e)-1(t)-370(c)-1(i)-370(wyr)1(yc)27(h)28(to)28(w)28(a\\252)-371(w)28(arsz)-1(tat)-370(w)-371(sadzie)-371(i)-370(rob)1(i\\252)-371(p)-27(ogani)1(a)-56(j\\241c)-371(ostro)-370(Pi)1(e)-1(tr)1(k)55(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252anego)-333(m)27(u)-333(d)1(o)-334(p)-27(omo)-28(c)-1(y)84(.)]TJ 27.879 -13.55 Td[(Dzie)-1(\\253)-307(s)-1(i)1(\\246)-309(j)1(u\\273)-308(b)28(y\\252)-308(wyni)1(\\363s)-1(\\252)-308(da)28(wno,)-307(s)-1(\\252o\\253ce)-308(\\261)-1(wiec)-1(i\\252o)-308(w)28(e)-1(so\\252e)-309(i)-307(pal\\241ce)-1(,)-308(\\273e)-308(gor\\241c)]TJ -27.879 -13.549 Td[(zaraz)-455(o)-28(d)-454(\\261)-1(n)1(iadan)1(ia)-455(j)1(\\241\\252)-455(pr)1(z)-1(yp)1(iek)55(a\\242)-455(galan)1(c)-1(i)1(e)-1(;)-454(ja\\273e)-455(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-455(s)-1(ad)1(y)-455(i)-454(p)-28(ola)-454(jakb)29(y)]TJ 0 -13.549 Td[(si\\246)-365(z)-366(w)28(oln)1(a)-365(p)-27(ogr\\241\\273a\\252)-1(y)-364(w)-365(t)28(ym)-365(rozb)-27(e)-1(\\252k)28(otan)28(y)1(m)-1(,)-364(bia\\252a)28(wym)-365(wrz\\241tku)-364(rozpra\\273onego)]TJ 0 -13.549 Td[(p)-27(o)27(wietrza.)]TJ 27.879 -13.549 Td[(P)28(omdl)1(a\\252)-1(e)-491(d)1(rze)-1(win)28(y)-490(p)-28(or)1(uc)28(hiw)28(a\\252y)-491(n)1(ie)-1(k)1(ie)-1(j)-490(li)1(s)-1(tk)56(ami,)-491(k)1(ie)-1(b)29(y)-491(t)28(ym)-491(skrzyd\\252em)]TJ -27.879 -13.55 Td[(pt)1(ak)-310(ton\\241cy)-310(w)-311(spiek)28(o)-28(cie)-1(,)-310(\\261wi\\241tec)-1(zna)-310(c)-1(i)1(c)27(ho\\261\\242)-311(ob)-55(j\\246\\252a)-310(c)-1(a\\252\\241)-310(wie)-1(\\261,)-310(jedn)1(e)-311(jask)28(\\363\\252ki,)-310(co)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(goli)1(\\252)-1(y)-274(za)-56(j)1(adl)1(e)-1(j)-274(\\261miga)-56(j)1(\\241c)-275(n)1(ad)-274(s)-1(ta)28(w)28(e)-1(m)-274(kiej)-274(osz)-1(ala\\252e,)-274(za\\261)-275(p)-27(o)-275(d)1(rogac)28(h)-274(w)-275(szaryc)27(h)]TJ 0 -13.549 Td[(tu)1(m)-1(an)1(ac)27(h)-470(ku)1(rza)27(wy)-470(j\\246\\252y)-470(tur)1(k)28(ota\\242)-471(w)27(ozy)-470(i)-470(lud)1(z)-1(i)1(e)-471(z)-1(e)-471(wsi)-470(p)-28(ob)1(liskic)28(h)-470(\\261)-1(ci\\241)-28(gali)-470(ku)]TJ 0 -13.549 Td[(k)28(o\\261c)-1(io\\252o)28(wi,)-398(\\273e)-399(c)-1(o)-398(tr)1(o)-28(c)27(h)1(\\246)-399(ktosik)-398(zw)27(aln)1(ia\\252)-398(k)28(oni)-398(lu)1(b)-398(pr)1(z)-1(ysta)28(w)27(a\\252)-398(pr)1(z)-1(ed)-398(Boryn)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(k)56(a)-56(j)-225(s)-1(iedzia\\252a)-226(rozp\\252ak)56(ana)-226(ro)-27(dzina,)-226(p)-27(o)-28(c)28(h)28(w)27(al)1(i\\252)-226(B)-1(oga)-226(i)-226(w)28(e)-1(stc)27(h)1(n\\241\\252)-226(\\273)-1(a\\252o\\261ni)1(e)-1(,)-226(zaz)-1(i)1(e)-1(ra)-55(j\\241c)]TJ 0 -13.55 Td[(do)-333(\\261ro)-28(d)1(k)55(a)-333(p)1(rz)-1(ez)-334(wyw)28(arte)-334(d)1(rzw)-1(i)-333(a)-333(okn)1(a.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273)-410(u)28(wija\\252)-410(s)-1(i)1(\\246)-411(i)-410(\\261)-1(p)1(ies)-1(zy\\252)-410(a\\273)-411(do)-410(p)-27(otu)-410(z)-411(ob)1(rz\\241dzaniem)-411(u)1(m)-1(ar)1(\\252e)-1(go,)-410(ju)1(\\273)]TJ -27.879 -13.549 Td[(b)28(yl)1(i)-391(\\252\\363\\273)-1(k)28(o)-390(w)-1(y)1(nie\\261)-1(li)-390(do)-391(sadu)-390(i)-391(p)-27(o\\261)-1(ciele)-391(p)-28(or)1(oz)-1(wies)-1(zali)-391(p)-27(o)-391(p)1(\\252)-1(ot)1(ac)27(h,)-390(gdy)-391(j)1(\\241\\252)-391(w)27(o\\252a\\242)]TJ 0 -13.549 Td[(na)-333(Han)1(k)28(\\246)-1(,)-333(ab)28(y)-333(pr)1(z)-1(y)1(nies)-1(\\252a)-333(ja\\252o)28(w)28(c)-1(o)28(wyc)27(h)-333(j)1(ag\\363)-28(d)-333(do)-333(wyk)56(adze)-1(n)1(ia)-333(izb)28(y)83(.)]TJ 27.879 -13.549 Td[(Jeno)-346(n)1(ie)-346(dos\\252)-1(y)1(s)-1(za\\252a)-346(i)-346(o)-28(ciera)-56(j)1(\\241c)-346(te)-347(j)1(akie\\261)-347(ostatn)1(ie)-346(\\252)-1(zy)84(,)-346(c)-1(o)-345(s)-1(ame)-347(sk)56(ap)28(yw)28(a\\252y)83(,)]TJ -27.879 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-334(j)1(u\\273)-333(patrzy\\252a)-333(na)-333(dr)1(og\\246)-1(,)-333(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(leda)-333(c)27(h)28(wila)-333(An)28(tk)56(a.)]TJ 27.879 -13.55 Td[(Go)-27(dz)-1(i)1(n)28(y)-271(j)1(e)-1(d)1(nak)-270(pr)1(z)-1(ec)27(ho)-27(dzi\\252y)83(,)-270(a)-271(jego)-271(n)1(ie)-271(b)28(y\\252o,)-270(w)-271(k)28(o\\253cu)-271(c)28(hcia\\252a)-271(ju)1(\\273)-271(p)-28(osy\\252a\\242)]TJ -27.879 -13.549 Td[(do)-333(miasta)-334(P)1(ietrk)56(a)-334(n)1(a)-334(p)1(rze)-1(wiad)1(y)83(.)]TJ 27.879 -13.549 Td[({)-317(Kon)1(ia)-317(jeno)-317(zm)-1(ac)28(ha)-317(i)-317(n)1(ic)-1(zego)-317(s)-1(i\\246)-317(nie)-317(pr)1(z)-1(ewie)-1(.)1(..)-317(ju)1(\\261)-1(ci)-317({)-317(t\\252u)1(m)-1(acz)-1(y)1(\\252)-318(Byli)1(c)-1(a,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(n)-333(b)29(y\\252)-334(w\\252a\\261)-1(n)1(ie)-334(n)1(adsz)-1(ed\\252)-333(z)-334(W)84(e)-1(r)1(onk)56(\\241.)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iec)27(h)-333(u)1(rz\\246)-1(d)1(a)-334(cos)-1(i)1(k)-334(wiedz\\241?)]TJ 0 -13.55 Td[({)-250(Ju)1(\\261)-1(ci..)1(.)-250(wiedz\\241...)-249(ale)-250(raz,)-250(co)-250(dzisia)-250(zamkni\\246te,)-250(b)-27(o)-250(n)1(ie)-1(d)1(z)-1(i)1(e)-1(la,)-249(z)-1(a\\261)-250(p)-27(o)-250(d)1(rugi)1(e)-1(,)]TJ -27.879 -13.549 Td[(co)-334(si\\246)-334(p)1(rze)-1(z)-334(smaro)28(w)27(an)1(ia)-334(n)1(ik)56(a)-56(j)-333(n)1(ie)-334(d)1(o)-28(ci\\261)-1(n)1(ie.)]TJ\nET\nendstream\nendobj\n1848 0 obj <<\n/Type /Page\n/Contents 1849 0 R\n/Resources 1847 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1847 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1852 0 obj <<\n/Length 9450      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(579)]TJ -330.353 -35.866 Td[({)-333(Dy\\242)-334(j)1(u\\273)-334(n)1(ie)-334(ws)-1(t)1(rz)-1(y)1(m)-1(am)-333({)-334(sk)56(ar\\273y\\252a)-334(si\\246)-334(p)1(rze)-1(d)-333(siostr\\241.)]TJ 0 -13.549 Td[({)-268(Jes)-1(zc)-1(ze)-268(s)-1(i\\246)-268(n)1(im)-268(nacie)-1(sz)-1(y)1(c)-1(ie,)-268(j)1(e)-1(sz)-1(cze)-269(si\\246)-268(w)27(ama)-268(da)-267(w)27(e)-268(z)-1(n)1(aki)-268({)-268(sykn)1(\\241\\252)-268(k)28(o)28(w)27(al)]TJ -27.879 -13.549 Td[(p)-27(ogl\\241da)-55(j\\241c)-334(n)1(a)-334(J)1(agusi\\246)-1(,)-333(siedz\\241c)-1(\\241)-333(p)-28(o)-27(d)-333(\\261)-1(cian\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)-333(ci)-333(te)-1(n)-333(z\\252y)-333(oz)-1(\\363r)-333(sk)28(o\\252c)-1(za\\252)-334({)-333(mruk)1(n\\246\\252a.)]TJ 0 -13.549 Td[({)-416(P)28(o)-415(dyb)1(k)56(ac)27(h)-415(c)-1(i\\246\\273\\241)-416(kul)1(as)-1(y)84(,)-416(to)-415(nie\\252ac)-1(n)1(o)-416(p)-27(o\\261)-1(p)1(ie)-1(sz)-1(a\\242)-416({)-415(dorzuci\\252)-416(u)1(r\\241)-28(gli)1(w)-1(i)1(e)-1(,)]TJ -27.879 -13.55 Td[(ze)-1(\\271lon)28(y)-333(dar)1(e)-1(mn)28(ym)-333(p)-28(osz)-1(u)1(kiw)28(ani)1(e)-1(m)-334(p)1(ieni\\246dzy)83(.)]TJ 27.879 -13.549 Td[(Nie)-334(o)-27(drzek\\252a,)-333(w)-1(ygl)1(\\241da)-55(j\\241c)-334(zno)28(wu)-333(na)-333(dr)1(og\\246)-1(.)]TJ 0 -13.549 Td[(W\\252a\\261nie)-298(p)1(rz)-1(edzw)28(aniali)-297(na)-297(s)-1(u)1(m)-1(\\246)-298(i)-297(Jam)27(b)1(ro\\273)-298(zbiera\\252)-298(si\\246)-298(do)-297(k)28(o\\261)-1(cio\\252a,)-298(p)1(rzyk)56(a-)]TJ -27.879 -13.549 Td[(zuj\\241c)-313(Witk)28(o)28(wi)-313(wys)-1(maro)28(w)28(anie)-313(s)-1(ad)1(\\252e)-1(m)-313(B)-1(or)1(yno)28(wyc)28(h)-313(bu)1(t\\363)28(w)-1(,)-313(gd)1(y\\273)-314(si\\246)-313(tak)-313(z)-1(es)-1(c)28(h\\252y)84(,)]TJ 0 -13.549 Td[(co)-334(n)1(ie)-334(sp)-28(os\\363b)-333(b)28(y\\252o)-333(wz)-1(u)1(\\242)-334(m)27(u)-333(j)1(e)-334(n)1(a)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-323(wraz)-322(z)-323(Mateusz)-1(em)-323(p)-27(onie\\261li)-322(s)-1(i\\246)-322(k)55(a)-55(j\\261)-323(n)1(a)-323(wie\\261,)-323(a)-322(W)84(e)-1(ron)1(k)56(a)-323(zabr)1(a)27(wsz)-1(y)]TJ -27.879 -13.55 Td[(o)-56(j)1(c)-1(a)-440(i)-440(Hanczyne)-441(d)1(z)-1(i)1(e)-1(ci)-440(te)-1(\\273)-440(p)-28(osz)-1(\\252a,)-440(w)-440(c)27(ha\\252u)1(pie)-440(os)-1(ta\\252y)-440(si\\246)-441(jeno)-440(sam)-1(e)-440(k)28(obiet)28(y)-440(i)]TJ 0 -13.549 Td[(Wit)1(e)-1(k,)-290(kt\\363ren)-291(o)-28(ci\\241)-28(gl)1(iwie)-291(s)-1(maro)28(w)27(a\\252)-291(b)1(ut)28(y)84(,)-291(s)-1(i)1(e)-1(ln)1(ie)-291(je)-291(nagr)1(z)-1(ew)27(a)-55(j\\241c)-291(przed)-291(k)28(ominem,)]TJ 0 -13.549 Td[(a)-333(c)-1(o)-333(tro)-27(c)27(h\\246)-333(le)-1(cia\\252)-333(s)-1(p)-27(o)-56(j)1(rze)-1(\\242)-334(n)1(a)-334(gosp)-27(o)-28(dar)1(z)-1(a)-333(lub)-332(na)-333(J\\363z)-1(k)28(\\246)-333(c)27(hl)1(ipi\\241c\\241)-333(c)-1(or)1(az)-334(c)-1(i)1(s)-1(ze)-1(j)1(.)]TJ 27.879 -13.549 Td[(Na)-362(d)1(rogac)28(h)-361(usta\\252)-362(ws)-1(ze)-1(l)1(ki)-361(ruc)28(h,)-361(lu)1(dzie)-362(ju)1(\\273)-362(pr)1(z)-1(es)-1(zli)-361(do)-361(k)28(o\\261)-1(cio\\252a,)-361(z)-1(a\\261)-362(u)-361(Bo-)]TJ -27.879 -13.549 Td[(ry)1(n\\363)28(w)-340(z)-1(r)1(obi\\252o)-339(s)-1(i\\246)-340(ca\\252kiem)-340(c)-1(ic)28(ho,)-339(t)28(yle)-340(jeno,)-339(co)-340(pr)1(z)-1(ez)-340(w)-1(y)1(w)27(art)1(e)-341(d)1(rzwi)-340(a)-340(ok)1(na)-340(g\\252os)]TJ 0 -13.55 Td[(Jagat)28(y)84(,)-324(o)-28(d)1(m)-1(a)28(wia)-56(j)1(\\241c)-1(ej)-323(litan)1(i\\246)-324(z)-1(a)-324(u)1(m)-1(ar)1(\\252e)-1(go,)-323(roznosi\\252)-324(s)-1(i)1(\\246)-325(k)1(ie)-1(j)-323(to)-324(p)1(tas)-1(i)1(e)-325(\\242wierk)56(anie)]TJ 0 -13.549 Td[(wraz)-334(z)-333(k\\252\\246)-1(b)1(am)-1(i)-333(j)1(a\\252)-1(o)28(w)28(c)-1(o)28(w)28(e)-1(go)-333(dy)1(m)27(u,)-333(j)1(akim)-334(J)1(agust)27(y)1(nk)56(a)-333(w)-1(y)1(k)55(ad)1(z)-1(a\\252a)-333(izb)28(y)-333(i)-333(s)-1(ieni)1(e)-1(.)]TJ 27.879 -13.549 Td[(P)28(okr)1(\\363tc)-1(e)-437(i)-436(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-437(snad)1(\\271)-437(s)-1(i\\246)-437(r)1(oz)-1(p)-27(o)-28(cz)-1(\\246\\252o,)-437(gd)1(y\\273)-437(o)-28(d)-436(k)28(o\\261)-1(cio\\252a)-436(j\\246\\252)-1(y)-436(si\\246)]TJ -27.879 -13.549 Td[(rozkr\\241\\273a\\242)-473(w)-472(pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(o)27(w)28(ej)-472(c)-1(i)1(c)27(ho\\261ci)-472(\\261)-1(p)1(ie)-1(wy)-472(a)-472(organ)1(o)28(w)27(e)-472(grani)1(e)-473(t)28(ym)-472(jaki)1(m)-1(\\261)]TJ 0 -13.549 Td[(g\\363rn)29(ym)-1(,)-333(d)1(ale)-1(k)1(im,)-334(a)-333(s\\252o)-28(dki)1(m)-334(trzep)-28(otem)-1(.)]TJ 27.879 -13.55 Td[(Hank)56(a,)-296(n)1(ie)-297(mog\\241c)-297(sobi)1(e)-297(n)1(ik)56(a)-56(j)-296(n)1(ale\\271)-1(\\242)-297(miejsc)-1(a,)-295(p)-28(osz)-1(\\252a)-296(j)1(a\\273)-1(e)-297(n)1(a)-296(pr)1(z)-1(e\\252az)-1(,)-296(b)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(o)-28(d)1(m)-1(\\363)28(wi\\242)-334(p)1(ac)-1(ierze)-1(.)]TJ 27.879 -13.549 Td[({)-441(I)-441(p)-27(omarli)-440(s)-1(e)-441(an)1(o,)-441(p)-27(om)-1(ar)1(li!)-440({)-441(rozm)27(y\\261la\\252a)-441(\\273a\\252o\\261)-1(n)1(ie,)-441(pr)1(z)-1(es)-1(u)29(w)27(a)-55(j\\241c)-441(z)-1(i)1(arna)]TJ -27.879 -13.549 Td[(r\\363\\273a\\253ca,)-396(ale)-397(pacierz)-397(j)1(e)-1(n)1(o)-397(n)1(ie)-1(k)1(ie)-1(d)1(y)-396(przyc)27(h)1(o)-28(dzi\\252)-396(na)-396(w)27(ar)1(gi,)-396(b)-28(o)-28(\\242)-396(w)-397(g\\252o)28(w)-1(i)1(e)-397(i)-397(serc)-1(u)]TJ 0 -13.549 Td[(mia\\252a)-334(j)1(ak)28(ob)28(y)-333(ten)-333(k)28(o\\252tun)-333(zwit)28(y)-333(z)-1(m)28(y\\261)-1(l)1(e)-1(\\253)-333(p)1(rz)-1(er\\363\\273n)28(yc)28(h)-333(a)-334(strac)28(ha\\253)-333(n)1(iem)-1(a\\252yc)28(h.)]TJ 27.879 -13.55 Td[({)-413(T)83(r)1(z)-1(y)1(dzie)-1(\\261c)-1(i)-412(dwie)-413(morgi)1(,)-413(a)-413(p)1(a\\261)-1(n)1(iki)1(,)-413(a)-413(l)1(as)-1(,)-412(a)-413(b)1(udy)1(nki)1(,)-413(a)-413(l)1(e)-1(w)28(e)-1(n)29(tarze)-1(,)-412(t)28(y-)]TJ -27.879 -13.549 Td[(lac)28(hne)-264(gos)-1(p)-27(o)-28(d)1(ars)-1(t)28(w)28(o!)-264({)-265(w)28(es)-1(tc)28(hn\\246\\252a)-264(ogarni)1(a)-56(j\\241c)-264(z)-265(lu)1(b)-28(o\\261c)-1(i)1(\\241)-265(sz)-1(eroki)1(e)-265(p)-27(ola)-265(i)-264(ten)-264(ca\\252y)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-334(Bo\\273y)83(.)]TJ 27.879 -13.549 Td[({)-274(\\233e)-1(b)28(y)-274(tak)-274(p)-27(os)-1(p)1(\\252ac)-1(a\\242)-275(i)-274(osta\\242)-275(n)1(a)-275(wsz)-1(ystki)1(m)-1(!)-274(By\\242)-1(,)-274(j)1(ak)-274(o)-28(c)-1(i)1(e)-1(c)-275(b)29(yli!)-274({)-274(Py)1(c)27(ha)-274(j\\241)]TJ -27.879 -13.549 Td[(rozpar)1(\\252a)-306(z)-307(n)1(ag\\252)-1(a,)-305(hard)1(o)-306(s)-1(p)-27(o)-55(jrza\\252a)-306(w)-306(s)-1(amo)-306(s)-1(\\252o\\253)1(c)-1(e,)-306(p)1(rz)-1(e\\261)-1(miec)27(h)1(n\\246\\252a)-306(s)-1(i\\246)-306(znac)-1(z\\241co)-306(i)]TJ 0 -13.55 Td[(z)-334(se)-1(r)1(c)-1(em)-334(p)-27(e)-1(\\252n)28(y)1(m)-334(s)-1(\\252o)-27(dkic)28(h)-333(nad)1(z)-1(i)1(e)-1(i)-333(j\\246\\252a)-333(s)-1(ze)-1(p)1(ta\\242)-334(s)-1(\\252o)28(w)28(a)-334(r)1(\\363\\273)-1(a\\253)1(c)-1(a.)]TJ 27.879 -13.549 Td[({)-298(Ale)-298(o)-28(d)-298(p)-27(\\363\\252w\\252\\363)-28(c)-1(zk)56(a)-298(nie)-298(ust\\241)-28(p)1(i\\246)-1(;)-297(p)-28(\\363\\252)-298(c)28(ha\\252up)29(y)-298(te)-1(\\273)-298(mo)-56(je)-298(i)-298(t)28(yc)28(h)-298(kr)1(\\363)27(w)-298(mlec)-1(z-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h)-333(ni)1(e)-334(p)-28(op)1(usz)-1(cz)-1(\\246)-333(z)-334(gar\\261c)-1(i)-333({)-333(wyrze)-1(k)1(\\252)-1(a)-333(n)1(ie)-1(co)-334(\\273aln)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Zamo)-28(dli)1(\\252a)-356(s)-1(i)1(\\246)-357(zno)28(wu)-356(n)1(a)-356(d)1(\\252)-1(u)1(g\\241)-356(c)27(h)29(w)-1(i)1(l\\246)-1(,)-355(p)-27(o)27(w\\252\\363)-28(cz)-1(\\241c)-356(roze)-1(\\252za)28(w)-1(i)1(on)28(ymi)-356(o)-28(czam)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-237(zie)-1(miac)28(h,)-236(s)-1(to)-55(j\\241cyc)27(h)-236(w)28(e)-237(s)-1(\\252o\\253)1(c)-1(u)-236(kieb)28(y)-236(w)-237(tej)-236(z)-1(\\252ota)28(w)28(e)-1(j)-236(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wie;)-237(wyk)1(\\252os)-1(zone,)]TJ 0 -13.549 Td[(bu)1(jn)1(e)-335(\\273yta)-334(gmera\\252y)-334(rd)1(z)-1(a)28(wymi)-334(wisiorami,)-334(czarni)1(a)27(w)28(e)-334(j\\246)-1(czm)-1(ion)1(a)-334(p)-27(ol\\261)-1(n)1(iew)27(a\\252y)-334(k)1(ie)-1(j)]TJ 0 -13.55 Td[(ta)-360(w)28(o)-28(d)1(a)-360(g\\252\\246)-1(b)-27(ok)56(a,)-359(z)-1(a\\261)-360(jasnozielone)-360(o)28(ws)-1(y)84(,)-359(g\\246)-1(sto)-360(p)1(rz)-1(eros\\252e)-360(\\273)-1(\\363\\252t\\241)-359(ognic)28(h\\241,)-359(p\\252a)28(wi\\252y)]TJ 0 -13.549 Td[(si\\246)-364(trze)-1(p)-27(otliwie)-364(w)-364(cic)27(h)28(y)1(m)-1(,)-363(nagrzan)28(ym)-364(p)-27(o)28(wie)-1(tr)1(z)-1(u)1(.)-364(Jaki)1(\\261)-365(p)1(tak)-364(wielgac)28(hn)28(y)-363(w)27(a\\273y\\252)]TJ 0 -13.549 Td[(si\\246)-253(nad)-252(rozkwit\\252\\241)-253(k)28(on)1(ic)-1(zyn)1(\\241,)-253(co)-253(ni)1(b)28(y)-253(ok)1(rw)27(a)28(wion)1(a)-253(c)27(h)29(usta)-253(le\\273)-1(a\\252a)-253(n)1(a)-253(sk\\252oni)1(e)-254(wy\\273ni)1(.)]TJ 0 -13.549 Td[(Ka)-55(j\\261)-298(niek)56(a)-56(j)-297(b)-28(ob)29(y)-298(t)28(ysi\\241c)-1(ami)-298(b)1(ia\\252yc)27(h)-297(\\261le)-1(p)1(i\\363)28(w)-298(s)-1(tr)1(\\363\\273)-1(o)28(w)27(a\\252y)-297(przy)-298(ziem)-1(n)1(iak)56(ac)27(h)1(,)-298(a)-298(tu)-297(i)]TJ 0 -13.549 Td[(o)28(wdzie)-257(n)1(a)-256(do\\252k)56(ac)27(h)-255(ln)28(y)-256(n)1(ie)-1(b)1(ie\\261)-1(ci\\252y)-256(si\\246)-257(b)1(ledziu\\261kim)-256(kwiatem)-1(,)-255(nib)28(y)-255(te)-257(p)1(rzymru\\273one)]TJ 0 -13.55 Td[(o)-28(d)-333(b)1(lask)28(\\363)27(w)-333(dzie)-1(ci\\253)1(s)-1(ki)1(e)-334(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[(Bardzo)-304(cud)1(nie)-304(b)28(y)1(\\252o)-304(na)-303(\\261)-1(wiec)-1(ie,)-303(s)-1(\\252o\\253ce)-304(ogrze)-1(w)28(a\\252o)-304(coraz)-304(barzej)-304(i)-303(c)-1(i)1(e)-1(p)1(\\252)-1(o,)-303(sy-)]TJ\nET\nendstream\nendobj\n1851 0 obj <<\n/Type /Page\n/Contents 1852 0 R\n/Resources 1850 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1850 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1855 0 obj <<\n/Length 9454      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(580)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cone)-360(z)-1(ap)1(ac)27(hem)-360(kw)-1(i)1(at\\363)28(w)-1(,)-359(c)-1(o)-360(tli)1(\\252y)-360(s)-1(i)1(\\246)-361(ni)1(e)-1(p)1(rze)-1(li)1(c)-1(zone)-360(w)27(e)-360(z)-1(b)-27(o\\273ac)27(h)-360(i)-360(wsz)-1(\\246dy)84(,)-360(zw)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(o)-363(z)-363(p)-28(\\363l)-363(tak)56(\\241)-363(lu)1(b\\241,)-363(\\273ywi\\241c)-1(\\241)-363(mo)-28(c\\241,)-363(ja\\273e)-364(d)1(usz)-1(e)-363(roz)-1(p)1(iera\\252o)-363(rado\\261ci\\241)-363(i)-363(s)-1(ame)-364(\\252zy)]TJ 0 -13.549 Td[(cis)-1(n)1(\\246)-1(\\252y)-333(si\\246)-334(d)1(o)-334(o)-28(cz\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(\\221wi\\246ta\\261)-334(t)28(y)-333(i)-333(ro)-28(d)1(z)-1(on)1(a!)-333(\\221wi\\246)-1(t)1(a)-334({)-333(wyrze)-1(k)1(\\252)-1(a)-333(p)-27(o)-28(c)27(h)29(yla)-56(j)1(\\241c)-334(g\\252o)28(w)27(\\246.)]TJ 0 -13.549 Td[(Sy)1(gnatu)1(rk)56(a)-334(za\\261w)-1(i)1(e)-1(rgota\\252a)-333(w)-334(p)-27(o)28(wie)-1(t)1(rz)-1(u)-332(kiej)-333(te)-1(n)-333(p)1(tas)-1(zek.)]TJ 0 -13.55 Td[({)-331(Za)-331(Tw)27(o)-55(j\\241)-331(to)-331(spr)1(a)28(w)27(\\241)-331(wsz)-1(y\\242k)28(o)-331(na)-331(\\261wie)-1(cie,)-331(m\\363)-56(j)-330(Je)-1(zu)-331(k)28(o)-27(c)27(han)29(y!)-331(Za)-331(Tw)27(o)-55(j\\241!)]TJ -27.879 -13.549 Td[({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(gor)1(\\241c)-1(o)-333(bier\\241c)-333(s)-1(i\\246)-333(z)-334(p)-28(o)28(wrotem)-334(d)1(o)-334(p)1(ac)-1(i)1(e)-1(r)1(z)-1(a.)]TJ 27.879 -13.549 Td[(Ka)-55(j\\261)-376(w)-376(p)-28(ob)1(li\\273u)-375(c)-1(osik)-376(zatrze)-1(sz)-1(cza\\252)-1(o,)-375(ob)-28(ejr)1(z)-1(a\\252a)-376(si\\246)-376(u)28(w)28(a\\273)-1(n)1(ie)-1(;)-375(p)-27(o)-28(d)-376(wi\\261ni)1(am)-1(i)]TJ -27.879 -13.549 Td[(o)-333(p\\252ot)-333(plecion)28(y)-333(ws)-1(p)1(arta)-333(s)-1(to)-55(ja\\252a)-333(Jagusia,)-333(jak)28(o\\261)-333(s)-1(m)28(utn)1(ie)-334(wz)-1(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(a.)]TJ 27.879 -13.549 Td[({)-228(\\233)-1(e)-228(to)-229(n)1(i)-229(min)29(ut)28(y)-228(s)-1(p)-27(ok)28(o)-56(j)1(u!)-228({)-228(z)-1(abi)1(ada\\252a)-228(Hank)56(a,)-228(gdy\\273)-229(p)1(rzyp)-27(om)-1(in)1(ki)-228(c)27(h)1(las)-1(n)1(\\246)-1(\\252y)]TJ -27.879 -13.549 Td[(j\\241)-497(kiej)-497(te)-498(parz\\241ce)-498(p)-28(okr)1(z)-1(y)1(w)-1(y)84(.)-498({)-497(Pr)1(a)27(wd)1(a,)-498(d)1(y\\242)-498(ona)-497(m)-1(a)-497(z)-1(ap)1(is)-1(!)-497({)-498(p)1(rzyp)-27(om)-1(n)1(ia\\252a)]TJ 0 -13.55 Td[(sobie.)-322({)-323(Ca\\252e)-323(sz)-1(e\\261)-1(\\242)-322(m)-1(or)1(g\\363)27(w!)-322(Z\\252o)-28(dziejk)56(a)-322(jedna!)-322({)-322(A\\273)-323(j)1(\\241)-323(w)-322(do\\252ku)-322(spar)1(\\252)-1(o)-322(ze)-323(z)-1(\\252o\\261c)-1(i)1(.)]TJ 0 -13.549 Td[(Od)1(w)-1(r)1(\\363)-28(ci\\252a)-452(s)-1(i\\246)-452(pl)1(e)-1(cam)-1(i)1(,)-452(jeno)-452(co)-452(ju)1(\\273)-453(n)1(ie)-453(p)-27(oredzi\\252a)-452(ze)-1(b)1(ra\\242)-453(si\\246)-452(na)-452(mo)-28(d)1(lit)28(w)27(\\246,)-452(b)-27(o)]TJ 0 -13.549 Td[(da)28(wne)-333(urazy)-333(i)-333(\\273)-1(al)1(e)-334(opad)1(\\252)-1(y)-333(j)1(\\241)-334(k)1(ie)-1(j)-332(te)-334(z)-1(\\252e,)-333(rozs)-1(zc)-1(ze)-1(k)56(an)1(e)-334(psy)83(.)]TJ 27.879 -13.549 Td[(P)28(o\\252u)1(dni)1(e)-403(ju)1(\\273)-403(pr)1(z)-1(ec)27(ho)-27(dzi\\252o,)-402(c)27(h)28(u)1(de)-403(cienie)-403(j)1(\\246)-1(\\252y)-402(wyp)-27(e)-1(\\252za\\242)-403(s)-1(p)-27(o)-28(d)-402(d)1(rze)-1(w)-402(i)-403(d)1(o-)]TJ -27.879 -13.549 Td[(m\\363)27(w,)-355(a)-355(w)27(e)-355(z)-1(b)-27(o\\273a)-1(c)28(h,)-355(co)-355(s)-1(i\\246)-355(\\271)-1(d)1(z)-1(iebk)28(o)-355(k\\252on)1(i\\252y)-355(z)-1(a)-355(s)-1(\\252o\\253)1(c)-1(em,)-355(z)-1(agra\\252y)-355(z)-356(cic)28(ha)-355(k)28(onik)1(i)]TJ 0 -13.55 Td[(p)-27(olne,)-333(b\\241k)-333(te\\273)-334(k)56(a)-56(j)1(\\261)-334(niek)56(a)-56(j)-333(zah)28(u)1(c)-1(za\\252)-334(i)-333(p)1(rz)-1(epi)1(\\363rki)-333(o)-28(d)1(z)-1(yw)28(a\\252y)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(sw)27(o)-55(jem)27(u)1(.)]TJ 27.879 -13.549 Td[(Ale)-334(u)1(pa\\252)-333(wz)-1(maga\\252)-334(si\\246)-334(coraz)-334(b)1(arze)-1(j)-333(i)-333(p)1(ra\\273y\\252)-334(j)1(u\\273)-333(niem)-1(i)1(\\252)-1(osiern)1(ie)-1(.)]TJ 0 -13.549 Td[(Su)1(ma)-376(s)-1(i\\246)-376(wnet)-376(sk)28(o\\253cz)-1(y\\252a)-376(i)-375(nad)-375(s)-1(ta)28(w)27(em)-376(j\\246\\252y)-376(g\\246s)-1(to)-376(p)1(rzys)-1(i)1(ada\\242)-376(k)28(obiet)28(y)-376(do)]TJ -27.879 -13.549 Td[(ze)-1(zu)28(w)27(an)1(ia)-291(trzew)-1(i)1(k)28(\\363)27(w,)-291(za\\261)-292(d)1(rogi)-291(tak)-291(si\\246)-291(z)-1(amro)28(wi\\252y)-291(lu)1(d\\271m)-1(i)1(,)-291(w)27(ozam)-1(i)-290(a)-291(gw)27(arem,)-291(\\273)-1(e)]TJ 0 -13.549 Td[(Hank)56(a)-333(\\261)-1(p)1(ies)-1(znie)-333(p)-28(o)28(wr\\363)-28(ci\\252a)-333(do)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-334(j)1(u\\273)-334(b)29(y\\252)-334(ca\\252kiem)-334(wyry)1(c)27(h)28(to)28(w)28(an)28(y)83(.)]TJ 0 -13.549 Td[(Le\\273)-1(a\\252)-312(w)-313(p)-27(o\\261)-1(r)1(o)-28(dku)-312(i)1(z)-1(b)28(y)84(,)-312(na)-312(s)-1(ze)-1(r)1(okiej)-312(\\252a)27(wie,)-312(nak)1(rytej)-312(p\\252ac)27(h)29(t\\241)-313(i)-312(ob)1(s)-1(ta)28(wionej)]TJ -27.879 -13.549 Td[(p\\252on)1(\\241c)-1(y)1(m)-1(i)-301(\\261wiec)-1(ami,)-301(j)1(u\\261c)-1(i)1(,)-301(c)-1(o)-301(wym)28(yt)28(y)-301(b)28(y)1(\\252,)-301(wyc)-1(zes)-1(an)28(y)-300(i)-301(ogolon)28(y)-300(do)-301(cz)-1(ysta,)-301(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(na)-463(p)-27(olicz)-1(k)1(u)-463(mia\\252)-463(d\\252ug\\241)-463(zadr\\246)-463(o)-28(d)-463(Jam)28(br)1(o\\273)-1(o)28(w)28(e)-1(j)-463(b)1(rzyt)28(wy)83(,)-463(zalepion)1(\\241)-464(p)1(api)1(e)-1(rem.)]TJ 0 -13.549 Td[(Ubi)1(e)-1(r)-306(te)-1(\\273)-307(m)-1(i)1(a\\252)-307(w)-1(d)1(z)-1(i)1(an)28(y)-307(co)-307(na)-56(j)1(lepsz)-1(y:)-306(bia\\252\\241)-307(k)56(ap)-27(ot\\246)-1(,)-306(kt\\363r\\241)-307(se)-308(b)29(y\\252)-307(s)-1(p)1(ra)28(wi\\252)-307(na)-307(\\261lub)]TJ 0 -13.55 Td[(z)-334(Jagu)1(s)-1(i)1(\\241,)-334(p)-27(ort)1(ki)-333(pasiate)-334(i)-333(bu)1(t)28(y)-333(pra)28(wie)-334(ca\\252kiem)-334(n)1(o)27(w)28(e)-1(.)]TJ 27.879 -13.549 Td[(W)-237(spraco)28(w)27(an)29(yc)27(h)1(,)-237(w)-1(y)1(s)-1(c)27(h)1(\\252yc)27(h)-236(r\\246k)55(ac)28(h)-237(trzyma\\252)-238(ob)1(razik)-237(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wskiej,)-237(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(\\252a)28(w)27(\\241)-306(sta\\252a)-306(bali)1(a)-306(z)-307(w)28(o)-28(d\\241,)-305(b)28(yc)28(h)-306(pr)1(z)-1(ec)27(h)1(\\252adz)-1(a\\242)-306(p)-27(o)28(w)-1(i)1(e)-1(trze,)-306(z)-1(a\\261)-306(na)-306(gl)1(ini)1(an)28(yc)27(h)-305(p)-28(ok)1(ry-)]TJ 0 -13.549 Td[(w)28(ac)27(h)-479(dymi\\252y)-479(ja\\252o)28(w)27(co)28(w)27(e)-480(j)1(ago)-28(dy)-479(z)-1(ap)-27(e\\252nia)-55(j\\241c)-480(izb)-28(\\246)-480(k)1(ie)-1(b)29(y)-480(t\\241)-479(m)-1(g\\252\\241)-479(m)-1(o)-28(d)1(ra)28(w)27(\\241,)-479(w)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(j)-333(wyn)1(os)-1(i)1(\\252)-334(si\\246)-334(strasz)-1(li)1(w)-1(y)-333(ma)-56(j)1(e)-1(stat)-333(\\261)-1(mierci.)]TJ 27.879 -13.55 Td[(I)-325(le\\273)-1(a\\252)-325(s)-1(e)-325(tak)-325(par)1(adn)1(ie)-326(w)-325(onej)-325(tr)1(upi)1(e)-1(j)-325(cic)28(ho\\261c)-1(i)-325(M)1(ac)-1(iej)-325(Boryn)1(a,)-325(c)-1(z\\252e)-1(k)-325(spr)1(a-)]TJ -27.879 -13.549 Td[(wiedliwy)-366(i)-366(m)-1(\\241d)1(ry)83(,)-366(c)27(h)1(rze)-1(\\261c)-1(i)1(jan)-366(pr)1(a)28(w)-1(y)84(,)-367(gosp)-27(o)-28(dar)1(z)-367(z)-367(dziada)-366(prad)1(z)-1(i)1(ada)-366(i)-367(p)1(ie)-1(r)1(ws)-1(zy)]TJ 0 -13.549 Td[(b)-27(ogac)-1(z)-334(w)28(e)-334(wsi.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-281(d)1(ac)27(h)1(e)-1(m)-282(o)-55(jc\\363)28(w)-282(pr)1(z)-1(y\\252o\\273y\\252)-282(se)-282(p)-27(o)-282(r)1(az)-282(os)-1(tatn)1(i)-281(g\\252o)27(win)1(\\246)-282(s)-1(tr)1(ud)1(z)-1(on)1(\\241;)-282(k)1(ie)-1(j)-281(ten)]TJ -27.879 -13.549 Td[(pt)1(ak)-444(na)-443(wyra)-56(j)1(u,)-443(ni)1(m)-445(w)28(e\\271)-1(mie)-444(lot)-444(p)-27(o)-28(d)1(niebn)29(y)83(,)-443(a)-444(p)-27(onies)-1(i)1(e)-445(si\\246)-444(tam,)-444(k)56(a)-56(j)-443(o)-28(d)-443(wiek)]TJ 0 -13.549 Td[(wiek)55(a)-333(ws)-1(zystkie)-334(o)-27(dlatu)1(j\\241.)]TJ 27.879 -13.55 Td[(Goto)28(wy)-350(c)-1(i)-350(ju)1(\\273)-351(b)28(y\\252)-350(do)-351(p)-27(o\\273e)-1(gn)1(a\\253)-351(zna)-55(jomk)28(\\363)28(w)-351(a)-351(p)-27(o)28(wino)28(w)28(at)28(yc)27(h)-350(i)-350(goto)28(w)-1(y)-350(do)]TJ -27.879 -13.549 Td[(onej)-333(d)1(rogi)-333(dalekiej.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-317(m)27(u)-315(s)-1(i\\246)-316(ano)-316(d)1(usz)-1(a)-316(k)28(orzy\\252a)-316(przed)-316(s)-1(\\241d)1(e)-1(m)-316(P)28(a\\253)1(s)-1(ki)1(m)-1(,)-316(a)-316(j)1(e)-1(n)1(o)-317(ten)-316(j)1(e)-1(go)-316(tr)1(up)]TJ -27.879 -13.549 Td[(lic)28(h)28(y)84(,)-270(ta)-270(cz)-1(\\252o)28(w)-1(i)1(e)-1(cz)-1(a)-270(zew)-1(\\252ok)56(a,)-270(p)1(r\\363\\273na)-270(\\273ywi\\241c)-1(ego)-270(dec)27(h)28(u)1(,)-270(le\\273)-1(a\\252a)-270(j)1(akb)28(y)-269(prze)-1(\\261mie)-1(c)28(ha-)]TJ 0 -13.549 Td[(j\\241c)-333(s)-1(i\\246)-333(le)-1(ciu)1(\\261)-1(k)28(o)-333(w\\261)-1(r\\363)-27(d)-333(\\261)-1(wiate\\252,)-333(dym\\363)28(w)-334(i)-333(mo)-28(d)1(\\252)-1(\\363)28(w)-333(nieustann)29(yc)27(h)1(.)]TJ 27.879 -13.55 Td[(A)-260(lud)1(z)-1(ie)-261(szli)-261(j)1(u\\273)-261(a)-260(s)-1(zli)-260(t)28(ym)-261(ci\\241)-28(giem)-261(ni)1(e)-1(sk)28(o\\253cz)-1(on)29(ym)-1(;)-260(kto)-260(wz)-1(d)1(yc)27(h)1(a\\252)-261(\\273a\\252)-1(o\\261ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(kto)-356(si\\246)-357(bi)1(\\252)-357(w)-356(piersi)-356(i)-357(mo)-28(d)1(li\\252)-356(gor\\241co,)-356(kto)-356(z)-1(a\\261)-357(medyto)28(w)28(a\\252)-357(ki)1(w)27(a)-55(j\\241c)-357(sm)27(u)1(tnie)-356(g\\252o)27(w)28(\\241)]TJ\nET\nendstream\nendobj\n1854 0 obj <<\n/Type /Page\n/Contents 1855 0 R\n/Resources 1853 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1853 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1858 0 obj <<\n/Length 9755      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(581)]TJ -358.232 -35.866 Td[(i)-368(ob)-27(cie)-1(r)1(a)-56(j)1(\\241c)-369(t)1(\\246)-369(ci\\246\\273)-1(k)56(\\241,)-368(\\273aln)1(\\241)-368(\\252z)-1(\\246,)-368(\\273e)-368(s)-1(zme)-1(r)-367(pacie)-1(r)1(z)-1(y)84(,)-368(\\261c)-1(i)1(s)-1(zone)-368(sz)-1(lo)-27(c)27(h)28(y)-367(i)-368(p)-27(ogw)27(ar)1(y)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(liw)28(e)-225(trz\\246)-1(s\\252y)-225(si\\246)-225(kiej)-224(te)-225(przejm)27(u)1(j\\241ce)-225(s)-1(i)1(\\241)-28(pan)1(ia)-225(d)1(e)-1(sz)-1(cz)-1(\\363)28(w)-225(j)1(e)-1(sienn)28(y)1(c)27(h.)-224(A)-225(l)1(ud)1(z)-1(ie)]TJ 0 -13.549 Td[(w)28(c)27(ho)-27(dzili)-348(i)-349(wyc)27(h)1(o)-28(d)1(z)-1(il)1(i)-349(b)-27(e)-1(z)-349(p)1(rze)-1(rwy;)-348(sz)-1(li)-348(gos)-1(p)-27(o)-28(d)1(arze)-350(i)-348(k)28(omorni)1(c)-1(y)84(,)-349(sz)-1(\\252y)-348(k)28(obi)1(e)-1(t)28(y)-348(i)]TJ 0 -13.549 Td[(dzieuc)28(h)28(y)83(,)-379(sz)-1(l)1(i)-380(starzy)-379(i)-379(m)-1(\\252o)-27(dzi,)-379(c)-1(a\\252e)-380(Li)1(p)-28(ce)-380(t\\252o)-28(cz)-1(y)1(\\252y)-380(si\\246)-380(w)-379(izbie)-379(i)-379(w)-380(sie)-1(n)1(iac)27(h)1(,)-379(z)-1(a\\261)]TJ 0 -13.549 Td[(do)-453(okien)-453(c)-1(isn\\246\\252o)-454(si\\246)-454(t)28(yla)-453(dziec)-1(i)-453(i)-453(tak)-454(swyw)27(ol)1(i\\252y)83(,)-453(ja\\273e)-454(Witek)-453(nie)-454(p)-27(oredz\\241c)-454(ic)27(h)]TJ 0 -13.55 Td[(roze)-1(gn)1(a\\242)-319(p)-27(os)-1(zc)-1(zu\\252)-318(pse)-1(m,)-318(ale)-319(\\212apa)-318(go)-318(nie)-319(p)-27(os\\252)-1(u)1(c)27(h)1(a\\252,)-319(tr)1(z)-1(y)1(m)-1(a\\252)-318(s)-1(i\\246)-318(dzis)-1(i)1(a)-56(j)-318(J\\363zki,)-318(a)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-334(b)1(iega\\252)-334(d)1(ok)28(o\\252a)-334(c)28(ha\\252up)29(y)-334(i)-333(wy\\252)-333(kiej)-333(ten)-333(g\\252upi)1(.)]TJ 27.879 -13.549 Td[(Nad)-379(ca\\252\\241)-379(w)-1(si\\241)-379(zac)-1(i)1(\\246)-1(\\273y\\252a)-379(ta)-379(\\261)-1(mier\\242)-380(Bory)1(no)28(w)27(a;)-378(dzie)-1(\\253)-378(b)28(y\\252)-379(pr)1(z)-1(ec)-1(i)1(e)-1(k)-379(\\261licz)-1(n)29(y)83(,)]TJ -27.879 -13.549 Td[(rozs)-1(\\252on)1(e)-1(cz)-1(n)1(ion)28(y)84(,)-354(p)1(ac)27(hn)1(\\241c)-1(y)-353(z)-1(wiesn\\241)-354(i)-353(lub)28(y)84(,)-354(\\273e)-354(nie)-354(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-1(,)-353(a)-354(d)1(z)-1(iwn)28(y)-353(s)-1(m)28(u-)]TJ 0 -13.549 Td[(tek)-388(o)28(w)-1(i)1(e)-1(w)28(a\\252)-388(c)27(ha\\252u)1(p)28(y)-388(i)-387(dziwna)-388(cic)27(h)1(o\\261)-1(\\242)-388(z)-1(aleg\\252a)-388(ws)-1(zystkie)-388(drogi)1(.)-388(Lud)1(z)-1(i)1(e)-389(c)28(ho)-28(d)1(z)-1(il)1(i)]TJ 0 -13.549 Td[(oso)27(wial)1(i,)-345(mark)28(otn)1(i)-345(a)-344(s)-1(r)1(o)-28(dze)-345(s)-1(tr)1(apieni)1(,)-345(k)56(a\\273dy)-344(jeno)-345(wzdyc)28(ha\\252)-345(\\273a\\252o\\261)-1(n)1(ie)-1(,)-344(rozw)28(o)-28(dzi\\252)]TJ 0 -13.55 Td[(r\\246c)-1(e)-333(i)-333(z)-1(ad)1(um)27(y)1(w)27(a\\252)-333(s)-1(i\\246)-333(nad)-333(cz)-1(\\252o)28(wiec)-1(z\\241)-334(sm)27(u)1(tn\\241)-333(dol)1(\\241.)]TJ 27.879 -13.549 Td[(Wielu)1(,)-266(kt)1(\\363rz)-1(y)-265(\\273yli)-265(z)-266(nieb)-28(osz)-1(czykiem)-266(w)-266(pr)1(z)-1(y)1(jacie)-1(l)1(s)-1(t)28(wie)-1(,)-265(osta\\252o)-266(pr)1(z)-1(ed)-265(c)27(ha\\252u)1(-)]TJ -27.879 -13.549 Td[(p\\241,)-333(k)56(a)-56(j)-333(j)1(u\\273)-334(p)-27(oni)1(e)-1(kt\\363r)1(e)-334(gos)-1(p)-27(o)-28(d)1(ynie)-333(p)-28(o)-28(cies)-1(za\\252y)-334(Han)1(k)28(\\246)-1(,)-333(Magd)1(\\246)-334(i)-333(J\\363z)-1(k)28(\\246,)-333(p)-28(o)-28(czc)-1(iwie)]TJ 0 -13.549 Td[(p)-27(op\\252aku)1(j\\241c)-334(wraz)-333(z)-334(nimi,)-333(a)-333(s)-1(i)1(e)-1(ln)1(ie)-334(si\\246)-334(wy\\273ala)-56(j)1(\\241c)-1(,)-333(n)1(ad)-333(s)-1(i)1(e)-1(r)1(otam)-1(i)1(.)]TJ 27.879 -13.549 Td[(Jeno)-305(do)-305(Jagusi)-306(n)1(ikto)-305(ni)1(e)-306(pr)1(z)-1(yst\\246p)-28(o)28(w)27(a\\252)-305(z)-306(t)28(ym)-306(d)1(obr)1(ym)-1(,)-305(p)-27(o)-28(cie)-1(sz)-1(a)-55(j\\241cym)-306(s\\252o-)]TJ -27.879 -13.55 Td[(w)28(e)-1(m,)-304(ju)1(\\261)-1(ci,)-304(co)-304(ta)-304(b)28(y\\252a)-304(ni)1(e)-1(g\\252o)-28(d)1(na)-304(u\\273ala\\253)-303(s)-1(i\\246)-304(nad)-303(s)-1(ob)1(\\241,)-304(ale)-305(za)28(w)-1(d)1(y)-304(tak)-304(j)1(\\241)-304(z)-1(ab)-27(ola\\252o)]TJ 0 -13.549 Td[(to)-328(op)1(usz)-1(cz)-1(enie,)-328(\\273e)-328(ucie)-1(k\\252a)-328(d)1(o)-328(sadu)-328(i)-327(z)-1(asz)-1(y)1(w)-1(szy)-328(s)-1(i)1(\\246)-329(w)-328(g\\246s)-1(t)28(w)28(\\246)-1(,)-327(s)-1(iedzia\\252a)-328(tam)-328(c)-1(a\\252e)]TJ 0 -13.549 Td[(go)-28(d)1(z)-1(in)29(y)-333(nas)-1(\\252u)1(c)27(h)28(u)1(j\\241c)-334(j)1(e)-1(n)1(o)-333(Mateusz)-1(o)28(w)27(ej)-333(rob)-27(ot)28(y)-333(k)28(ole)-334(tr)1(umn)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-334(to)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(\\261)-1(mie)-333(p)-28(ok)56(azyw)27(a\\242)-333(na)-333(o)-28(c)-1(zy!)-333({)-333(s)-1(y)1(kn\\246\\252a)-334(za)-334(n)1(i\\241)-333(w)27(\\363)-55(jto)28(w)28(a.)]TJ 0 -13.549 Td[({)-333(P)28(oni)1(e)-1(c)27(h)1(a)-56(j)1(c)-1(i)1(e)-1(!)-333(Nie)-334(p)-27(ora)-333(na)-333(taki)1(e)-334(wyp)-27(om)-1(in)1(ki!)-333({)-333(wyrze)-1(k\\252a)-333(kt\\363r)1(a\\261)-1(.)]TJ 0 -13.55 Td[({)-333(I)-334(n)1(ie)-1(c)28(h)-333(j\\241)-333(tam)-334(P)29(an)-333(Je)-1(zus)-333(s)-1(\\241d)1(z)-1(i)-333({)-333(do)-28(d)1(a\\252a)-334(Han)1(k)56(a)-334(\\252ago)-28(d)1(nie.)]TJ 0 -13.549 Td[({)-225(W)83(\\363)-55(jt)-225(ta)-226(w)28(as)-1(ze)-226(d)1(o)-28(c)-1(i)1(nki)-225(d)1(obrze)-226(jej)-225(wynad)1(gro)-28(d)1(z)-1(i)1(!{)-226(za\\261m)-1(ia\\252)-225(s)-1(i)1(\\246)-226(k)28(o)28(w)27(al.)-225(S)1(z)-1(cz)-1(\\246-)]TJ -27.879 -13.549 Td[(\\261c)-1(iem,)-343(\\273)-1(e)-343(przys\\252ali)-343(p)-27(o)-343(niego)-343(o)-28(d)-343(m\\252ynar)1(z)-1(a,)-343(gd)1(y\\273)-343(w)27(\\363)-55(jto)28(w)27(a)-343(r)1(oz)-1(cz)-1(ap)1(ierz)-1(a\\252a)-343(si\\246)-344(k)1(ie)-1(j)]TJ 0 -13.549 Td[(in)1(dycz)-1(k)56(a,)-333(goto)28(w)27(a)-333(zrobi)1(\\242)-334(k\\252\\363tn)1(i\\246)-1(.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-298(jeno)-298(gr)1(uc)27(h)1(n\\241\\252)-298(r)1(e)-1(c)27(h)1(o)-28(c\\241c)-1(ym)-298(\\261m)-1(iec)27(h)1(e)-1(m)-298(i)-298(p)-27(olec)-1(i)1(a\\252)-1(,)-297(a)-298(one)-298(os)-1(ta\\252y)84(,)-298(p)-27(oga-)]TJ -27.879 -13.55 Td[(du)1(j\\241c)-276(ju\\273)-276(m)-1(a\\252o)-276(wie)-1(l)1(e)-277(o)-276(r\\363\\273)-1(n)1(o\\261)-1(ciac)28(h,)-276(a)-276(c)-1(oraz)-276(c)-1(isze)-1(j)-276(i)-276(se)-1(n)1(niej,)-276(j)1(akb)28(y)-276(z)-277(t)28(yc)28(h)-276(c)-1(i)1(\\246)-1(\\273kic)27(h)]TJ 0 -13.549 Td[(tu)1(rbacji)-337(al)1(b)-28(o)-337(same)-1(go)-337(gor\\241ca,)-337(co)-337(ju\\273)-337(doskwiera\\252o)-337(z)-1(go\\252a)-337(n)1(ie)-337(do)-337(z)-1(n)1(ies)-1(ieni)1(a.)-337(P)28(arn)1(o)]TJ 0 -13.549 Td[(si\\246)-392(p)1(rz)-1(y)-390(t)27(y)1(m)-392(rob)1(i\\252o)-391(i)-391(dziwni)1(e)-392(du)1(s)-1(zno,)-391(n)1(ie)-392(p)-27(o)28(wia\\252)-391(w)-1(i)1(ate)-1(r)-391(b)29(yc)27(h)-391(n)1(a)-56(j)1(l\\273e)-1(j)1(s)-1(zy)83(,)-391(\\273e)-392(n)1(i)]TJ 0 -13.549 Td[(jeden)-435(listek)-436(i)-435(n)1(i)-435(jedno)-435(\\271d\\271b\\252o)-435(s)-1(i\\246)-436(n)1(ie)-436(zaru)1(c)27(ha\\252o,)-435(a)-435(c)27(ho)-27(c)-1(ia\\273)-435(prze)-1(sz\\252)-1(o)-435(ju)1(\\273)-436(sp)-28(or)1(y)]TJ 0 -13.549 Td[(k)56(a)28(w)27(a\\252)-287(cz)-1(asu)-286(o)-28(d)-286(p)-28(o\\252u)1(dni)1(a;)-287(to)-286(je)-1(d)1(nak)-286(s)-1(\\252on)1(e)-1(cz)-1(n)29(y)-287(w)28(ar)-287(la\\252)-286(s)-1(i\\246)-287(j)1(e)-1(sz)-1(cz)-1(e)-287(\\273ywym)-287(ogni)1(e)-1(m)]TJ 0 -13.55 Td[(i)-280(tak)-280(przyp)1(ie)-1(k)56(a\\252,)-280(ja\\273e)-281(\\261)-1(cian)28(y)-280(p)1(\\252)-1(ak)56(a\\252y)-280(\\273)-1(y)1(w)-1(i)1(c)-1(\\241)-280(i)-281(wi\\246d\\252y)-280(p)-27(om)-1(d)1(la\\252e)-281(c)27(h)28(w)28(ast)27(y)-280(i)-280(kwiat)28(y)84(.)]TJ 27.879 -13.549 Td[(Ryk)-375(s)-1(i)1(\\246)-376(naraz)-375(w)-1(y)1(dar\\252)-375(pr)1(z)-1(ec)-1(i\\241)-27(g\\252y)-376(i)-375(t\\246s)-1(kl)1(iwy;)-375(jaki)1(\\261)-376(c)27(h\\252op)-375(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-376(kr)1(o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(p)-27(o)-334(d)1(ru)1(gie)-1(j)-333(stron)1(ie)-334(sta)28(w)-1(u)1(.)]TJ 27.879 -13.549 Td[({)-473(P)28(ew)-1(n)1(ikiem)-474(d)1(o)-473(ks)-1(i)1(\\246)-1(\\273e)-1(go)-473(b)28(yk)56(a!)-473({)-473(oz)-1(w)28(a\\252a)-473(s)-1(i\\246)-473(P\\252osz)-1(k)28(o)28(w)28(a)-474(gon)1(i\\241c)-474(o)-28(czam)-1(i)]TJ -27.879 -13.549 Td[(kr)1(o)27(w)28(\\246)-1(,)-333(sz)-1(ar)1(pi\\241c\\241)-333(s)-1(i\\246)-333(na)-333(p)-28(ostron)1(ku.)]TJ 27.879 -13.549 Td[({)-401(M\\252y)1(narz)-401(do)-400(niego)-401(jesz)-1(cz)-1(ek)-401(lepi)1(e)-1(j)-400(rycz)-1(y)84(,)-401(j)1(e)-1(n)1(o)-401(c)-1(o)-400(prze)-1(z)-401(z\\252o\\261)-1(\\242!)-401({)-401(p)-27(o)-28(d)1(j\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a,)-333(ale)-333(\\273)-1(ad)1(nej)-333(ju)1(\\273)-334(s)-1(i)1(\\246)-334(ni)1(e)-334(c)27(h)1(c)-1(ia\\252o)-333(m)-1(\\363)28(wi\\242.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252y)-306(rozc)-1(zapierzone)-307(ki)1(e)-1(b)28(y)-306(te)-307(kw)28(oki)-307(w)-307(p)1(ias)-1(k)1(u,)-306(le)-1(d)1(wie)-307(ju)1(\\273)-308(d)1(ysz)-1(\\241c)-307(z)-307(go-)]TJ -27.879 -13.549 Td[(r\\241ca.)-270(Roz)-1(b)1(iera\\252)-270(je)-270(upa\\252,)-270(cic)28(ho\\261\\242)-271(i)-270(ten)-270(p)1(\\252)-1(ak)1(liwy)83(,)-269(nieusta)-56(j)1(\\241c)-1(y)-270(g\\252os)-270(Jagat)28(y)-270(m)-1(o)-27(dl\\241ce)-1(j)]TJ 0 -13.549 Td[(si\\246)-334(pr)1(z)-1(y)-333(u)1(m)-1(ar)1(\\252)-1(y)1(m)-1(.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-435(kiej)-435(p)1(rze)-1(d)1(z)-1(w)28(onil)1(i)-435(na)-435(n)1(ies)-1(zp)-28(or)1(y)83(,)-434(roz)-1(esz)-1(\\252y)-435(si\\246)-435(do)-435(d)1(om)-1(\\363)28(w,)-435(a)-435(Han)1(-)]TJ -27.879 -13.55 Td[(k)56(a)-395(p)-28(os\\252a\\252a)-395(z)-1(a)-395(k)28(o)28(w)28(ale)-1(m,)-395(b)28(y)1(c)27(h)-395(sze)-1(d\\252)-395(z)-395(ni)1(\\241)-395(do)-395(pr)1(ob)-28(oszc)-1(za)-395(ugo)-28(d)1(z)-1(i\\242)-395(si\\246)-396(o)-395(p)-27(ogrze)-1(b)]TJ 0 -13.549 Td[(o)-56(j)1(c)-1(o)28(wy)84(.)]TJ\nET\nendstream\nendobj\n1857 0 obj <<\n/Type /Page\n/Contents 1858 0 R\n/Resources 1856 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1856 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1861 0 obj <<\n/Length 8929      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(582)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Wit)1(e)-1(k)-333(ry)1(c)27(h\\252o)-333(p)-27(o)27(wr\\363)-27(c)-1(i\\252,)-333(ale)-333(s)-1(am.)]TJ 0 -13.549 Td[({)-396(Hale,)-396(kiej)-396(si\\246)-396(b)-28(o)-55(ja\\252em)-397(p)1(rzyst\\241)-28(pi)1(\\242)-1(,)-396(b)-27(o)-396(Mi)1(c)27(ha\\252)-396(se)-397(siedz\\241)-396(z)-397(d)1(z)-1(iedzice)-1(m)-396(u)]TJ -27.879 -13.549 Td[(m\\252ynar)1(z)-1(a)-333(i)-333(pij)1(\\241)-334(ar)1(bate)-334({)-333(p)-27(o)28(w)-1(i)1(ada\\252)-333(z)-1(zia)-56(j)1(an)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Z)-334(d)1(z)-1(iedzice)-1(m?)]TJ 0 -13.549 Td[({)-464(A)-464(ju)1(\\261)-1(ci,)-464(p)1(rze)-1(ciek)-464(go)-464(z)-1(n)1(am)-1(!)-463(Arbate)-464(s)-1(e)-464(pi)1(j\\241)-464(i)-464(p)1(lac)-1(ek)-464(p)-27(o)-56(j)1(ada)-55(j\\241,)-464(d)1(obrze)]TJ -27.879 -13.55 Td[(widzia\\252em)-1(.)-333(A)-333(ogiery)-333(s)-1(to)-55(j\\241)-333(w)-334(cieniu)-332(i)-334(j)1(e)-1(n)1(o)-333(kulasami)-334(p)1(rze)-1(b)1(iera)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(Zdziwi\\252a)-353(si\\246)-354(t)1(e)-1(m)28(u,)-353(ale)-353(p)-27(o)-353(nies)-1(zp)-27(orac)27(h)1(,)-353(ni)1(e)-354(d)1(o)-28(cz)-1(ek)55(a)28(ws)-1(zy)-353(si\\246)-353(k)28(o)27(w)28(ala,)-353(ogar)1(-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-333(s)-1(i\\246)-333(\\261)-1(wi\\241tec)-1(znie)-333(i)-333(p)-28(osz)-1(\\252a)-333(z)-334(Magd)1(\\241)-333(na)-333(pleban)1(i\\246)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(za)-262(n)1(ie)-262(b)29(y\\252o)-262(n)1(a)-261(p)-28(ok)28(o)-55(jac)27(h)1(,)-261(c)27(h)1(o)-28(\\242)-262(ws)-1(zystkie)-261(drzwi)-261(i)-261(okna)-261(s)-1(t)1(a\\252)-1(y)-261(p)-27(o)28(wy-)]TJ -27.879 -13.549 Td[(wierane;)-314(p)1(rzys)-1(i)1(ad\\252y)-314(cz)-1(ek)56(a\\242)-1(,)-313(ale)-314(p)-28(o)-313(jakim\\261)-314(c)-1(zasie)-314(dzie)-1(wk)56(a)-314(p)-27(o)28(w)-1(iedzia\\252a,)-313(\\273)-1(e)-314(ksi\\241dz)]TJ 0 -13.549 Td[(w)-334(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(u)-333(i)-333(k)56(aza)-1(\\252)-333(je)-333(z)-1(a)28(w)28(o\\252)-1(a\\242.)]TJ 27.879 -13.55 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-283(se)-284(w)-283(cieniu)-282(p)-28(o)-27(d)-283(p\\252otem,)-283(a)-283(w)-283(p)-28(o\\261ro)-28(d)1(ku)-282(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(a,)-283(k)28(ol)1(e)-284(n)1(ie)-1(zgorsz)-1(ej)]TJ -27.879 -13.549 Td[(kr)1(o)27(win)29(y)83(,)-471(kt\\363r\\241)-471(c)27(h\\252op)-471(tr)1(z)-1(yma\\252)-472(k)1(r\\363tk)28(o)-472(n)1(a)-472(p)-27(os)-1(tr)1(onku)1(,)-472(k)1(r\\246c)-1(i\\252)-471(s)-1(i\\246)-472(z)-472(r)1(ykiem)-472(t\\246)-1(gi)1(,)]TJ 0 -13.549 Td[(srok)56(at)28(y)-334(b)29(yk,)-333(\\273e)-334(ledwie)-334(go)-333(par)1(ob)-333(utr)1(z)-1(yma\\252)-333(na)-333(\\252a)-1(\\253)1(c)-1(u)1(c)27(h)28(u)1(.)]TJ 27.879 -13.549 Td[({)-258(W)84(ale)-1(k)1(!)-258(P)28(o)-28(cz)-1(ek)56(a)-56(j)-257(jes)-1(zc)-1(ze)-1(,)-257(niec)27(h)-257(nab)1(ie)-1(r)1(z)-1(e)-258(wi\\246)-1(k)1(s)-1(ze)-1(j)-257(o)-28(c)27(h)1(ot)28(y!)-258({)-258(kr)1(z)-1(yk)1(n\\241\\252)-258(pr)1(o-)]TJ -27.879 -13.549 Td[(b)-27(os)-1(zc)-1(z)-287(i)-287(w)-1(y)1(c)-1(iera)-55(j\\241c)-288(sp)-27(o)-28(c)-1(on)1(\\241)-288(\\252y)1(s)-1(in)1(\\246)-1(,)-287(p)1(rzyw)27(o\\252a\\252)-287(do)-287(sie)-1(b)1(ie)-288(k)28(ob)1(ie)-1(t)28(y)-287(i)-287(j)1(\\241\\252)-288(wyp)28(y)1(t)28(yw)27(a\\242)]TJ 0 -13.55 Td[(o)-470(wsz)-1(y)1(s)-1(tk)28(o,)-469(p)-28(o)-27(c)-1(iesz)-1(a\\242)-470(i)-469(krze)-1(p)1(i\\242)-470(mi\\252os)-1(iern)1(ie,)-470(a)-469(kiej)-470(go)-469(z)-1(agad)1(n\\246\\252y)-470(o)-469(p)-28(ogr)1(z)-1(eb)-469(i)]TJ 0 -13.549 Td[(k)28(osz)-1(t)28(y;)-333(p)1(rz)-1(erw)28(a\\252)-334(i)1(m)-334(os)-1(t)1(ro)-333(i)-334(n)1(iec)-1(ierp)1(liwie:)]TJ 27.879 -13.549 Td[({)-295(O)-295(t)28(ym)-296(p)-27(otem)-1(.)-295(Ni)1(e)-296(z)-1(d)1(z)-1(i)1(e)-1(r)1(am)-296(sk)27(\\363r)1(y)-295(z)-296(lu)1(dzi.)-295(Maciej)-295(b)28(y\\252)-295(pi)1(e)-1(r)1(w)-1(sz)-1(y)1(m)-296(w)28(e)-296(ws)-1(i)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(arze)-1(m,)-336(to)-337(i)-336(p)-27(ogrze)-1(b)-336(m)28(usi)-337(mie\\242)-337(ni)1(e)-337(lada)-336(jak)1(i.)-336(No,)-337(m\\363)28(wi\\246)-1(,)-336(n)1(ie)-337(lad)1(a)-337(j)1(aki!)-336({)]TJ 0 -13.549 Td[(p)-27(o)27(wt\\363r)1(z)-1(y\\252)-333(gro\\271nie,)-333(p)-27(o)-334(sw)27(o)-55(jem)27(u)1(.)]TJ 27.879 -13.55 Td[(Za)-333(nogi)-333(jeno)-333(go)-333(ob\\252api)1(\\252)-1(y)84(,)-333(ni)1(e)-334(\\261)-1(miej\\241c)-334(si\\246)-334(j)1(u\\273)-333(w)-334(ni)1(c)-1(zym)-334(p)1(rze)-1(ciwi\\242)-1(.)]TJ 0 -13.549 Td[({)-318(Ja)-319(w)28(am)-319(tu)-317(dam!)-319(W)1(idzicie)-319(ic)28(h,)-318(zb)-28(ere\\271)-1(n)1(iki!)-318({)-318(krzykn)1(\\241\\252)-319(n)1(a)-319(or)1(gani\\261c)-1(i)1(ak)28(\\363)27(w,)]TJ -27.879 -13.549 Td[(zaz)-1(iera)-55(j\\241cyc)27(h)-333(sp)-27(o)-1(za)-333(p\\252ot\\363)28(w.)-333({)-334(C\\363\\273,)-334(j)1(ak)-333(s)-1(i)1(\\246)-334(w)27(am)-333(p)-28(o)-28(d)1(oba)-333(m\\363)-56(j)-333(b)28(y)1(c)-1(ze)-1(k)1(,)-334(h)1(e)-1(?)]TJ 27.879 -13.549 Td[({)-333(\\221li)1(c)-1(zno\\261c)-1(i!)-333(Lepsz)-1(y)-333(o)-28(d)-332(m)-1(\\252yn)1(arzo)27(w)28(ego!)-334({)-333(p)1(rz)-1(y)1(takiw)28(a\\252a)-334(Han)1(k)55(a.)]TJ 0 -13.549 Td[({)-252(T)83(ak)-252(m)28(u)-252(do)-252(mo)-55(jego)-1(,)-251(jak)-252(w)28(o\\252u)-252(d)1(o)-253(k)56(ar)1(e)-1(t)28(y!)-252(P)1(rzyjr)1(z)-1(yj)1(c)-1(i)1(e)-253(m)28(u)-252(si\\246)-1(!)-252({)-252(p)-27(o)-28(d)1(pro)28(w)28(a-)]TJ -27.879 -13.55 Td[(dzi\\252)-288(j)1(e)-288(bli)1(\\273)-1(ej,)-287(klepi\\241c)-288(z)-288(l)1(ub)-27(o\\261)-1(ci\\241)-288(b)29(yk)56(a,)-288(kt\\363r)1(e)-1(n)-287(rw)28(a\\252)-288(si\\246)-288(ju)1(\\273)-288(do)-287(kro)28(wy)-288(j)1(ak)-288(w\\261c)-1(iek\\252y)84(.)]TJ 0 -13.549 Td[({)-393(Co)-394(za)-393(k)56(ark!)-393(A)-393(jak)1(i)-393(grzbiet,)-393(jak)1(ie)-394(to)-393(ma)-393(piersi!)-393(Smok,)-393(n)1(ie)-394(b)29(yk!)-393({)-393(w)27(o\\252a\\252,)-393(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ap)1(uj\\241c)-333(z)-334(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(j)1(e)-1(szc)-1(ze)-1(m)-333(takiego)-334(n)1(ie)-334(wid)1(z)-1(ia\\252a.)]TJ 0 -13.549 Td[({)-333(He)-1(,)-333(p)1(ra)28(w)-1(d)1(a!)-333(Cz)-1(yst)28(y)-333(holend)1(e)-1(r)1(,)-334(t)1(rz)-1(y)1(s)-1(ta)-333(ru)1(bli)-333(k)28(osz)-1(tu)1(je.)]TJ 0 -13.55 Td[({)-333(T)27(yl)1(ac)27(hn)1(a)-333(pieni\\246dzy!)-333({)-333(dziw)27(o)28(w)28(a\\252y)-333(s)-1(i\\246)-333(z)-1(d)1(umione.)]TJ 0 -13.549 Td[({)-377(An)1(i)-377(grosz)-1(a)-377(mni)1(e)-1(j)1(!)-377(W)83(al)1(e)-1(k,)-376(pu)1(s)-1(zc)-1(za)-56(j)-376(go...)-377(ostro\\273ni)1(e)-378(i)1(no,)-377(b)-27(o)-377(kr)1(o)27(w)28(a)-377(ni)1(e)-1(t\\246-)]TJ -27.879 -13.549 Td[(ga...)-448(Od)-449(j)1(e)-1(d)1(nego)-449(raz)-1(u)-448(p)-28(ok)1(ryj)1(e)-1(..)1(.)-449(P)28(ew)-1(n)1(ie,)-449(\\273)-1(e)-449(drogi)1(,)-449(ale)-449(bior)1(\\246)-450(t)28(ylk)28(o)-449(p)-27(o)-449(ru)1(blu)-448(i)]TJ 0 -13.549 Td[(dw)28(adzie\\261)-1(cia)-296(grosz)-1(y)-296(p)-27(os)-1(tr)1(onk)28(o)28(w)27(ego,)-296(\\273)-1(eb)28(y)-296(s)-1(i)1(\\246)-297(Lip)-27(c)-1(e)-297(d)1(o)-28(c)27(h)1(o)28(w)27(a\\252y)-296(p)-28(or)1(z)-1(\\241d)1(n)28(yc)28(h)-296(kr\\363)28(w.)]TJ 0 -13.549 Td[(M\\252yn)1(arz)-396(s)-1(i)1(\\246)-397(gn)1(ie)-1(w)28(a)-396(na)-396(mn)1(ie)-1(,)-395(ale)-397(j)1(u\\273)-396(m)-1(i)-395(obmierz)-1(\\252y)-395(te)-397(k)28(ot)28(y)84(,)-396(jak)1(ie)-397(macie)-397(p)-27(o)-396(j)1(e)-1(-)]TJ 0 -13.549 Td[(go)-414(s)-1(tad)1(nik)1(u.)-414(T)83(r)1(z)-1(yma)-56(j)1(\\273)-1(e,)-414(gap)-27(o,)-415(k)1(ro)28(w)27(\\246)-414(przy)-414(s)-1(am)28(ym)-414(p)28(ys)-1(k)1(u,)-414(b)-27(o)-415(ci)-414(si\\246)-415(wyrwie!)-414({)]TJ 0 -13.55 Td[(wrzas)-1(n)1(\\241\\252)-375(na)-374(c)27(h)1(\\252opa.)-374({)-375(No,)-374(to)-375(i)1(d\\271c)-1(ie)-375(z)-375(Bogiem)-375({)-375(zwr\\363)-28(ci\\252)-375(si\\246)-375(d)1(o)-375(k)28(ob)1(ie)-1(t,)-374(wid)1(z)-1(\\241c,)]TJ 0 -13.549 Td[(\\273e)-348(p)1(rzyws)-1(t)28(yd)1(z)-1(on)1(e)-347(o)-28(dwraca\\252y)-347(si\\246)-347(\\271dzie)-1(b)1(k)28(o)-347(n)1(a)-347(s)-1(t)1(ron\\246.)-347({)-346(A)-347(j)1(utro)-346(e)-1(ksp)-27(orta)-347(d)1(o)-347(k)28(o-)]TJ 0 -13.549 Td[(\\261c)-1(io\\252a!)-281({)-282(w)28(o\\252a\\252)-282(j)1(e)-1(sz)-1(cze)-282(z)-1(a)-281(nimi,)-281(bi)1(or\\241c)-282(si\\246)-282(p)-27(o)-1(maga\\242)-282(c)28(h\\252opu)1(,)-282(\\273e)-282(to)-281(kro)28(wy)-281(nie)-282(m\\363g\\252)]TJ 0 -13.549 Td[(ut)1(rz)-1(y)1(m)-1(a\\242.)]TJ 27.879 -13.549 Td[({)-255(P)29(o)-28(dzi\\246kuj)1(e)-1(sz)-255(t)28(y)-255(mi)-254(z)-1(a)-254(c)-1(i)1(e)-1(l\\246,)-254(b)-28(\\246dzie,)-255(j)1(akiego\\261)-255(jes)-1(zc)-1(ze)-255(nie)-255(wid)1(z)-1(i)1(a\\252.)-255(W)84(alek,)-255(a)]TJ -27.879 -13.55 Td[(pr)1(z)-1(epr)1(o)27(w)28(ad\\271)-307(go,)-306(ni)1(e)-1(c)28(h)-307(si\\246)-307(p)1(rze)-1(c)27(h)1(\\252o)-28(dzi,)-306(c)27(h)1(o)-28(c)-1(i)1(a\\273)-307(c)-1(o)-306(tam)-307(takiem)27(u)-306(sm)-1(ok)28(o)28(wi)-306(z)-1(n)1(ac)-1(zy)]TJ 0 -13.549 Td[(jedn)1(a)-333(m)27(uc)28(ha!)-333({)-333(przec)27(h)28(w)28(ala\\252.)]TJ\nET\nendstream\nendobj\n1860 0 obj <<\n/Type /Page\n/Contents 1861 0 R\n/Resources 1859 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1846 0 R\n>> endobj\n1859 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1864 0 obj <<\n/Length 9052      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(583)]TJ -330.353 -35.866 Td[(Kob)1(ie)-1(t)28(y)-382(z)-1(a\\261)-383(p)-27(os)-1(z\\252y)-383(do)-383(or)1(ganist)28(y)83(,)-382(b)-28(o)-27(\\242)-384(to)-382(i)-383(z)-383(nim)-383(te\\273)-384(b)29(y\\252o)-383(trza)-383(si\\246)-384(go)-27(dzi\\242)]TJ -27.879 -13.549 Td[(z)-447(osobna)-446(o)-447(p)-27(ogrzeb,)-446(ale)-447(\\273)-1(e)-446(organi)1(\\261)-1(cina)-446(pr)1(z)-1(yj)1(\\246)-1(\\252a)-446(je)-447(k)56(a)28(w)27(\\241,)-446(pr)1(z)-1(y)-446(kt\\363r)1(e)-1(j)-446(si\\246)-447(ni)1(e)-1(-)]TJ 0 -13.549 Td[(co)-413(zagw)27(ar)1(z)-1(y\\252y)84(,)-412(to)-412(b)28(y\\252o)-412(p)-28(o)-28(d)-411(s)-1(am)-413(zac)27(h)1(\\363)-28(d,)-412(i)-412(j)1(u\\273)-413(b)29(yd\\252o)-412(s)-1(p)-27(\\246dzali)-412(z)-413(past)28(wis)-1(k,)-412(k)1(ie)-1(j)]TJ 0 -13.549 Td[(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(\\252)-1(y)-333(d)1(o)-334(c)28(ha\\252up)29(y)83(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-404(gan)1(kiem)-405(sto)-56(j)1(a\\252)-404(pan)-404(J)1(ac)-1(ek)-404(z)-405(M)1(ate)-1(u)1(s)-1(ze)-1(m)-404(i)-404(p)28(y)1(k)55(a)-55(j\\241c)-404(fa)-55(jec)-1(zk)28(\\246)-405(go)-28(d)1(z)-1(i)1(\\252)]TJ -27.879 -13.55 Td[(go)-333(do)-333(rzni\\246c)-1(i)1(a)-334(d)1(rze)-1(w)28(a)-334(n)1(a)-334(S)1(tac)27(h)1(o)28(w)27(\\241)-333(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-1(.)]TJ 27.879 -13.549 Td[(Mateusz)-334(j)1(ak)28(o\\261)-334(nie)-333(bard)1(z)-1(o)-333(b)28(y)1(\\252)-334(rad)1(,)-333(b)-28(o)-333(si\\246)-334(wykr)1(\\246)-1(ca\\252.)]TJ 0 -13.549 Td[({)-465(Dr)1(z)-1(ew)27(o)-465(p)-27(orzn\\246,)-465(n)1(iew)-1(i)1(e)-1(lk)56(a)-465(ob)1(rad)1(a,)-465(ale)-465(c)-1(zy)-465(c)28(ha\\252up)-27(\\246)-465(p)-27(os)-1(ta)28(wi\\246,)-465(a)-465(b)-27(o)-465(ja)]TJ -27.879 -13.549 Td[(wiem)-1(?...)-429(Mo\\273e)-430(k)55(a)-55(j)-430(w)28(e)-430(\\261)-1(wiat)-429(p)-28(\\363)-55(jd)1(\\246)-1(..)1(.)-430(Cni)-429(m)-1(i)-429(si\\246)-430(ju\\273)-430(w)28(e)-430(w)-1(si..)1(.)-430(Bo)-430(ja)-429(w)-1(i)1(e)-1(m,)-430(co)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zn\\246...)-404({)-405(m\\363)27(wi\\252)-404(s)-1(p)-27(ogl\\241da)-55(j\\241c)-405(n)1(a)-405(Jagusi\\246,)-405(do)-55(j\\241c\\241)-405(kr)1(o)27(w)28(\\246)-405(p)-28(o)-27(d)-405(ob)-27(or\\241.)-404({)-405(Z)-405(ran)1(a)]TJ 0 -13.549 Td[(sk)28(o\\253cz)-1(\\246)-334(tr)1(umn\\246,)-333(to)-334(si\\246)-334(j)1(e)-1(szc)-1(ze)-334(rozm)-1(\\363)28(wim)28(y)-333({)-334(d)1(ok)28(o\\253cz)-1(y\\252)-333(pr)1(\\246)-1(d)1(k)28(o)-334(i)-333(p)-27(os)-1(zed\\252.)]TJ 27.879 -13.55 Td[(A)-479(pan)-479(Jacek)-480(wsz)-1(ed\\252)-479(do)-479(nieb)-27(os)-1(zc)-1(zyk)56(a)-479(i)-480(m\\363)28(wi\\252)-480(d)1(\\252ugi,)-479(se)-1(r)1(dec)-1(zn)28(y)-479(pacierz)]TJ -27.879 -13.549 Td[(ob)-27(c)-1(iera)-55(j\\241c)-334(r)1(z)-1(\\246s)-1(i)1(s)-1(te)-334(\\252zy)83(.)]TJ 27.879 -13.549 Td[({)-457(B)-1(y)-457(c)27(h)1(o)-28(cia\\273)-458(syno)28(wie)-458(wdal)1(i)-458(si\\246)-458(w)-457(niego)-458({)-457(wyrze)-1(k)1(\\252)-458(p)-27(ote)-1(m)-457(do)-457(Hanki)1(.)-458({)]TJ -27.879 -13.549 Td[(Dob)1(ry)-239(to)-239(b)28(y)1(\\252)-240(cz\\252)-1(o)28(wiek)-239(i)-239(p)1(ra)28(w)-1(y)-238(P)28(olak.)-238(B)-1(y\\252)-239(z)-239(nami)-239(w)-239(p)-27(o)27(wstaniu)1(,)-239(pr)1(z)-1(y)1(s)-1(ta\\252)-239(d)1(o)-239(parti)1(i)]TJ 0 -13.549 Td[(dob)1(ro)28(w)28(olnie)-291(i)-290(gnat\\363)28(w)-291(nie)-291(\\273a\\252o)27(w)28(a\\252.)-291(Wi)1(dzia\\252e)-1(m)-291(go)-291(p)1(rzy)-291(rob)-27(o)-28(cie.)-291(A)-291(zm)-1(ar)1(no)28(w)27(a\\252)-290(s)-1(i\\246)]TJ 0 -13.55 Td[(pr)1(z)-1(ez)-382(nas...)-381(P)1(rze)-1(kl)1(e)-1(\\253)1(s)-1(t)28(w)28(o)-382(ci\\241\\273)-1(y)-381(n)1(ad)-381(nami..)1(.)-382({)-381(gada\\252)-381(jakb)29(y)-381(do)-381(s)-1(iebi)1(e)-1(,)-381(a)-381(c)27(ho)-27(c)-1(ia\\273)]TJ 0 -13.549 Td[(ni)1(e)-297(rozumia\\252a)-297(ws)-1(zystkiego,)-296(to)-297(jedn)1(ak)-296(z)-297(w)-1(d)1(z)-1(i)1(\\246)-1(cz)-1(n)1(o\\261)-1(ci)-297(za)-297(d)1(obr)1(e)-297(s)-1(\\252o)28(w)27(a)-296(ws)-1(p)-27(om)-1(i)1(nek)]TJ 0 -13.549 Td[(p)-27(o)-28(dj)1(\\246)-1(\\252a)-333(go)-334(za)-333(nogi.)]TJ 27.879 -13.549 Td[({)-240(Da)-56(j)1(c)-1(ie)-240(s)-1(p)-27(ok)28(\\363)-56(j)1(!)-240(T)83(akim)-240(c)-1(z\\252o)27(wiek)-240(jak)-240(i)-240(wy!)-240({)-240(z)-1(akr)1(z)-1(ycza\\252)-241(gn)1(ie)-1(wn)1(ie)-1(.)-240({)-240(G\\252u)1(pia!)]TJ -27.879 -13.549 Td[(dziedzic)-389(n)1(ie)-388(\\261)-1(wi\\246t)28(y!)-388({)-388(p)-27(opatr)1(z)-1(y\\252)-388(j)1(e)-1(sz)-1(cz)-1(e)-388(na)-388(Boryn)1(\\246)-1(,)-387(z)-1(ap)1(ali\\252)-388(o)-28(d)-388(\\261wiec)-1(y)-388(f)1(a)-56(j)1(e)-1(cz)-1(k)28(\\246)]TJ 0 -13.55 Td[(i)-362(wysz)-1(ed\\252)-362(n)1(ie)-362(o)-28(d)1(p)-28(o)28(wiada)-55(j\\241c)-362(na)-361(p)-28(o)28(witan)1(ie)-363(k)28(o)28(w)28(ala,)-362(k)1(t\\363ren)-362(b)28(y)1(\\252)-362(w)-1(\\252a\\261nie)-362(w)28(c)27(h)1(o)-28(dzi\\252)]TJ 0 -13.549 Td[(do)-333(sie)-1(n)1(i.)]TJ 27.879 -13.549 Td[({)-410(Co\\261)-410(h)1(arn)28(y)-409(dzisia)-56(j)1(!)-410(D)1(z)-1(iad)1(ak)-410(j)1(uc)28(ha!)-409({)-410(r)1(z)-1(ek\\252)-410(za)-410(n)1(im)-410(z)-410(pr)1(z)-1(ek)56(\\241s)-1(em)-1(,)-409(ale)-410(\\273e)]TJ -27.879 -13.549 Td[(b)28(y\\252)-284(j)1(aki\\261)-284(roz)-1(r)1(ado)28(w)27(an)29(y)83(,)-284(to)-284(p)1(rzys)-1(i)1(ad\\252)-284(do)-284(\\273on)28(y)-284(i)-284(j)1(\\241\\252)-285(sz)-1(ept)1(a\\242)-1(.)-284({)-284(Dob)1(ra)-284(nasz)-1(a!)-283(Wie)-1(sz,)]TJ 0 -13.549 Td[(Magd)1(u\\261,)-295(d)1(z)-1(iedzic)-295(s)-1(zuk)56(a)-295(zgo)-28(dy)-294(z)-1(e)-295(ws)-1(i)1(\\241.)-295(Nama)27(wia,)-294(c)-1(ob)28(y)1(m)-296(m)28(u)-294(p)-28(omaga\\252.)-295(Ju)1(\\261)-1(ci,)-295(co)]TJ 0 -13.55 Td[(m)27(u)1(s)-1(i)-333(si\\246)-334(n)1(am)-334(dob)1(rze)-334(okr)1(oi\\242)-1(.)-333(Jeno)-333(ani)-333(mru)1(-)-1(mru)1(,)-333(k)28(obieto,)-333(o)-333(w)-1(i)1(e)-1(lgi)1(e)-334(rze)-1(cz)-1(y)-333(id)1(z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252)-248(do)-248(zmar\\252e)-1(go,)-247(p)-28(ok)1(r\\246)-1(ci\\252)-248(si\\246)-248(tu)-248(i)-247(o)28(w)-1(d)1(z)-1(i)1(e)-249(i)-247(na)-248(wie\\261)-248(p)-28(olecia\\252,)-248(wyci\\241)-28(ga)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252op)-28(\\363)28(w)-333(do)-333(k)55(ar)1(c)-1(zm)27(y)-333(n)1(a)-334(n)1(arad\\246.)]TJ 27.879 -13.549 Td[(Zmie)-1(r)1(z)-1(c)28(h)-336(si\\246)-336(ju)1(\\273)-337(b)29(y\\252)-336(cz)-1(yn)1(i\\252,)-336(zorze)-336(os)-1(t)28(yg\\252y)-336(k)1(ie)-1(j)-335(te)-336(ord)1(z)-1(ewia\\252e)-336(blac)28(h)28(y)-336(p)1(rzy-)]TJ -27.879 -13.549 Td[(syp)28(yw)28(ane)-399(p)-27(opi)1(o\\252e)-1(m,)-398(\\273)-1(e)-399(j)1(e)-1(n)1(o)-399(n)1(iek)55(a)-55(j\\261)-399(co)-399(si\\246)-399(t)1(a)-399(\\261w)-1(i)1(e)-1(ci\\252a)-399(j)1(ak)56(a\\261)-399(c)27(h)1(m)27(ur)1(k)56(a)-399(n)1(abran)1(a)]TJ 0 -13.55 Td[(z\\252)-1(o)-27(c)-1(ist\\241)-333(\\261)-1(wiat\\252o\\261c)-1(i)1(\\241)-334(zac)27(h)1(o)-28(du)1(.)]TJ 27.879 -13.549 Td[(A)-386(kiej)-387(si\\246)-387(j)1(u\\273)-387(d)1(o)-387(cna)-387(zrob)1(i\\252)-387(wiec)-1(z\\363r)-386(i)-387(p)-27(ok)28(o\\253)1(c)-1(zyli)-386(gos)-1(p)-27(o)-28(d)1(arskie)-387(obr)1(z)-1(\\241d)1(ki,)]TJ -27.879 -13.549 Td[(to)-488(ca\\252a)-488(ro)-27(dzina)-487(z)-1(n)1(o)27(wu)-487(s)-1(i)1(\\246)-488(z)-1(ebra\\252a)-487(przy)-488(zmar\\252ym.)-488(U)-487(B)-1(or)1(yno)28(w)28(e)-1(go)-487(w)27(ez)-1(g\\252o)28(wia)]TJ 0 -13.549 Td[(b)28(y\\252o)-490(coraz)-491(wid)1(niej)-490(o)-28(d)-489(\\261)-1(wiec)-491(j)1(arz)-1(\\241cyc)28(h,)-490(Jam)28(bro\\273)-490(raz)-491(p)-27(o)-490(raz)-491(ob)-27(cina\\252)-490(kn)1(ot)28(y)-490(i)]TJ 0 -13.549 Td[(\\261piew)27(a\\252)-245(z)-245(ksi\\241\\273ki,)-245(a)-245(za)-245(n)1(im)-245(p)-28(o)28(wtarzali)-245(wsz)-1(ystki)1(e)-1(,)-244(p)-28(op)1(\\252)-1(ak)1(uj)1(\\241c)-246(n)1(ie)-1(k)1(ie)-1(j)-244(na)-244(przem)-1(ian)]TJ 0 -13.549 Td[(i)-333(bi)1(adol\\241c.)]TJ 27.879 -13.55 Td[(Dru)1(dzy)-413(z)-1(a\\261,)-413(s)-1(\\241siedzi,)-413(\\273)-1(e)-414(w)-413(izbie)-413(b)28(y\\252o)-414(ciasno)-413(i)-413(z)-1(ad)1(uc)28(h,)-413(to)-413(przykl)1(\\246)-1(k)56(ali)-413(na)]TJ -27.879 -13.549 Td[(dw)28(orze)-1(,)-333(p)-28(o)-28(d)-333(oknami)-334(i)-334(ci\\241)-28(gn)1(\\246)-1(li)-333(t\\246)-335(d)1(\\252)-1(u)1(g\\241)-334(i)-334(\\273)-1(a\\252osn\\241)-334(n)28(u)1(t\\246)-335(l)1(itani)1(i,)-334(ja\\273e)-335(si\\246)-334(w)-1(i)1(dzia\\252o,)]TJ 0 -13.549 Td[(co)-334(wsz)-1(ystek)-334(sad)-333(\\261piew)27(a.)]TJ 27.879 -13.549 Td[(No)-28(c)-329(s)-1(i\\246)-329(z)-330(w)28(olna)-329(\\261c)-1(i\\241)-27(ga\\252)-1(a)-329(n)1(a)-329(\\261)-1(wiat,)-329(wi\\246c)-330(j)1(u\\273)-330(d)1(o)-329(c)-1(n)1(a)-330(p)1(rzyc)-1(i)1(c)27(h\\252o,)-329(gd)1(z)-1(i)1(e)-330(s)-1(p)1(a\\242)]TJ -27.879 -13.549 Td[(si\\246)-367(k\\252adli,)-366(p)-27(o)-367(s)-1(ad)1(ac)27(h)-366(bieli\\252y)-366(s)-1(i\\246)-367(p)-27(o\\261)-1(ciele)-367(i)-367(c)27(h)1(a\\252up)28(y)-366(gas)-1(\\252y)-366(jedn)1(a)-367(p)-28(o)-366(dru)1(giej,)-367(j)1(e)-1(n)1(o)]TJ 0 -13.55 Td[(co)-290(k)28(ok)28(ot)28(y)-288(pia\\252y)-289(j)1(ak)28(o\\261)-290(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie,)-289(a)-289(tak)56(a)-289(parn)1(a)-289(i)-289(du)1(s)-1(zna)-289(cic)28(ho\\261\\242)-290(stan\\246\\252a,)-289(jakb)29(y)]TJ 0 -13.549 Td[(si\\246)-334(mia\\252o)-334(n)1(a)-334(o)-27(dmian\\246.)]TJ\nET\nendstream\nendobj\n1863 0 obj <<\n/Type /Page\n/Contents 1864 0 R\n/Resources 1862 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1862 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1868 0 obj <<\n/Length 10070     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(584)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Do)-302(p)-27(\\363\\271)-1(n)1(a)-303(w)-302(no)-28(c)-302(\\261)-1(p)1(ie)-1(w)28(ali)-302(p)1(rz)-1(y)-302(Bory)1(nie,)-302(a)-303(k)1(ie)-1(j)-301(s)-1(i\\246)-302(roze)-1(sz)-1(li)1(,)-302(os)-1(ta\\252)-302(jeno)-302(Jam-)]TJ -27.879 -13.549 Td[(br)1(o\\273)-334(i)-333(Jagata,)-333(b)28(yc)28(h)-333(ju)1(\\273)-334(c)-1(zu)28(w)28(a\\242)-334(do)-333(ran)1(a.)]TJ 27.879 -13.549 Td[(I)-395(\\261piew)27(al)1(i)-395(zraz)-1(u)-394(rozg\\252o\\261)-1(n)1(ie,)-395(alej)-395(k)1(ie)-1(j)-394(usta\\252)-395(ws)-1(zelki)-395(r)1(uc)27(h)-394(i)-395(zw)28(ali\\252a)-395(si\\246)-395(nie-)]TJ -27.879 -13.549 Td[(zg\\252)-1(\\246bi)1(ona)-289(c)-1(i)1(s)-1(za)-290(n)1(o)-28(cy)83(,)-289(wnet)-289(j\\241\\252)-289(ic)27(h)-288(m)-1(or)1(z)-1(y\\242)-289(\\261)-1(p)1(ik,)-289(t\\246go)-289(w)27(o)-28(d)1(z)-1(\\241c)-289(z)-1(a)-289(\\252b)28(y)84(,)-289(\\273)-1(e)-290(wyci\\241)-28(gal)1(i)]TJ 0 -13.549 Td[(coraz)-292(c)-1(i)1(s)-1(ze)-1(j)-291(i)-291(m)-1(amrot)1(liwiej,)-291(nie)-292(p)1(rze)-1(cyk)56(a)-56(j)1(\\241c)-292(na)28(w)27(et)-292(wtedy)84(,)-291(kie)-1(j)-291(\\212ap)1(a)-292(p)1(rzyc)27(h)1(o)-28(dzi\\252)]TJ 0 -13.55 Td[(i)-333(z)-334(cic)27(h)1(a)-334(sk)56(am)-1(l)1(\\241c)-1(y)-333(p)-27(olizyw)27(a\\252)-333(nasadl)1(one)-334(b)1(ut)28(y)-333(ni)1(e)-1(b)-27(os)-1(zc)-1(zyk)56(a.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(e)-296(o)-295(sam)27(ym)-295(p)-27(\\363\\252no)-28(c)28(ku)-295(g\\246s)-1(t)1(a)-295(\\242)-1(ma)-295(pr)1(z)-1(yw)28(ali\\252a)-295(ziem)-1(i)1(\\246)-1(,)-295(p)-27(ogas\\252)-1(y)-294(gw)-1(i)1(az)-1(d)1(y)83(,)]TJ -27.879 -13.549 Td[(sc)27(hm)28(ur)1(z)-1(y\\252o)-271(s)-1(i)1(\\246)-272(c)-1(a\\252ki)1(e)-1(m)-272(i)-271(j)1(akb)28(y)-271(jesz)-1(cz)-1(e)-272(b)1(arze)-1(j)-271(\\261c)-1(i)1(c)27(h\\252o,)-271(\\273e)-272(t)28(ylk)28(o)-271(ni)1(e)-1(kiedy)-271(zatrz\\246)-1(s\\252o)]TJ 0 -13.549 Td[(si\\246)-361(jakie\\261)-361(drzew)27(o)-361(i)-360(p)-28(osyp)1(a\\252)-361(s)-1(i\\246)-361(cic)27(h)29(u\\261ki,)-361(l)1(\\246)-1(kl)1(iwy)-361(sz)-1(me)-1(r)-360(alb)-27(o)-361(wydar)1(\\252)-361(s)-1(i)1(e)-1(j)-360(s)-1(k)56(\\241d)1(c)-1(i\\261)]TJ 0 -13.549 Td[(g\\252os)-344(j)1(aki\\261)-343(dziwn)28(y)83(,)-342(ni)-343(to)-343(kr)1(z)-1(y)1(k,)-343(ni)-343(t)1(o)-344(h)29(uk,)-343(n)1(i)-343(to)-343(w)28(o\\252)-1(an)1(ie)-343(dalekie,)-343(i)-343(p)1(rz)-1(epad)1(a\\252)-343(te)-1(\\273)]TJ 0 -13.549 Td[(ni)1(e)-334(wiadomo)-333(k)55(a)-55(j.)1(..)]TJ 27.879 -13.55 Td[(Wie\\261)-484(l)1(e)-1(\\273a\\252a)-484(w)-483(g\\252\\246)-1(b)-27(okim)-483(\\261)-1(p)1(iku)-483(i)-483(j)1(akb)28(y)-483(n)1(a)-484(sam)27(y)1(m)-484(dn)1(ie)-484(ciem)-1(n)1(icy)83(,)-483(t)28(ylk)28(o)]TJ -27.879 -13.549 Td[(jedn)1(a)-437(Boryn)1(o)28(w)27(a)-437(i)1(z)-1(ba)-436(\\261)-1(wiec)-1(i)1(\\252)-1(a)-436(blad)1(o)-437(w)-437(tej)-437(mro)-27(c)-1(znej)-437(top)1(ieli,)-437(a)-436(przez)-438(wyw)28(arte)]TJ 0 -13.549 Td[(okn)1(a)-240(widn)1(ia\\252)-240(M)1(ac)-1(iej)-239(le\\273)-1(\\241cy)-240(w\\261r\\363)-28(d)-239(\\273\\363\\252)-1(t)28(y)1(c)27(h)-239(\\261)-1(wiate\\252,)-240(o)28(wian)28(y)-239(dy)1(m)-1(ami)-239(k)55(ad)1(z)-1(i)1(de)-1(\\252)-239(nib)29(y)]TJ 0 -13.549 Td[(t)28(ym)-411(m)-1(o)-27(dra)28(wym)-411(ob\\252oki)1(e)-1(m.)-411(Jam)28(bro\\273)-411(z)-412(Jagat)1(\\241,)-411(ws)-1(p)1(ar\\252s)-1(zy)-411(si\\246)-412(o)-411(n)1(iego)-411(g\\252)-1(o)28(w)28(am)-1(i)1(,)]TJ 0 -13.549 Td[(zadrze)-1(mali)-333(j)1(u\\273)-334(n)1(a)-334(d)1(obr)1(e)-1(,)-333(c)27(h)1(rap)1(i\\241c)-1(,)-333(j)1(a\\273)-1(e)-334(si\\246)-334(r)1(oz)-1(l)1(e)-1(ga\\252o.)]TJ 27.879 -13.55 Td[(Za\\261)-323(ta)-322(l)1(e)-1(tn)1(ia,)-322(kr\\363t)1(k)55(a)-322(n)1(o)-28(c)-323(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(i\\252a)-322(sz)-1(yb)1(k)28(o,)-322(jak)1(b)28(y)-322(s)-1(i)1(\\246)-323(j)1(e)-1(j)-322(k)56(a)-55(j\\261)-323(\\261pi)1(e)-1(sz)-1(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(zd\\241\\273y\\242)-1(,)-479(n)1(im)-480(p)1(ierws)-1(ze)-480(ku)1(ry)-479(zapiej\\241,)-479(\\261wiec)-1(e)-480(t)1(e)-1(\\273)-480(d)1(opal)1(a\\252)-1(y)-479(si\\246)-479(p)-28(osobn)1(ie)-480(i)-479(gas\\252y)]TJ 0 -13.549 Td[(ni)1(b)28(y)-394(t)1(e)-395(o)-27(c)-1(zy)-394(stru)1(dzone)-394(pat)1(rz)-1(eni)1(e)-1(m)-394(w)-394(u)1(m)-1(ar)1(\\252e)-1(go,)-393(i\\273)-394(na)-393(\\261)-1(witan)1(iu)-393(os)-1(ta\\252a)-393(jeno)-394(co)]TJ 0 -13.549 Td[(na)-55(jgr)1(ub)1(s)-1(za,)-333(m)-1(igo)-27(c)-1(\\241c)-334(si\\246)-334(k)1(ie)-1(j)-333(t)1(o)-334(z\\252ote)-334(ostrze)-1(.)]TJ 27.879 -13.549 Td[(A\\273)-427(sz)-1(ar)1(y)83(,)-426(pr)1(z)-1(em)-1(gl)1(on)28(y)-426(\\261)-1(wit,)-426(zw)-1(l)1(\\363k\\252s)-1(zy)-426(s)-1(i\\246)-426(le)-1(n)1(iwie)-427(z)-427(p)-27(\\363l,)-426(z)-1(a)-55(jr)1(z)-1(a\\252)-426(do)-426(iz)-1(b)29(y)83(,)]TJ -27.879 -13.55 Td[(pr)1(os)-1(to)-339(w)-339(Boryn)1(o)28(w)27(\\241)-339(t)28(w)27(ar)1(z)-1(,)-338(kt\\363ra)-339(j)1(akb)28(y)-339(si\\246)-340(\\271dziebk)28(o)-339(o\\273ywi\\252a,)-339(jak)1(b)28(y)-339(si\\246)-340(b)1(ud)1(z)-1(i\\252)-339(z)]TJ 0 -13.549 Td[(ci\\246)-1(\\273kiego)-398(sn)28(u)-397(i)-398(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)-398(t)28(yc)27(h)-397(pierwsz)-1(yc)28(h)-398(\\261wiergota\\253)-397(p)-28(o)-397(gniazdac)28(h,)-397(patrza\\252)]TJ 0 -13.549 Td[(skro\\261)-334(p)-27(o)-28(cz)-1(ern)1(ia\\252yc)27(h)-333(p)-27(o)28(wie)-1(k)-333(w)-333(dalekie)-333(jes)-1(zc)-1(ze)-334(zo)-1(r)1(z)-1(e)-333(w)-1(sc)27(h)1(o)-28(d\\363)28(w.)]TJ 27.879 -13.549 Td[(\\221wit)-333(j)1(u\\273)-334(g\\246s)-1(t)1(nia\\252)-333(roztrz\\241s)-1(a)-55(j\\241c)-334(si\\246)-334(ki)1(e)-1(b)28(y)-333(ta)-333(zam)-1(i)1(e)-1(\\242)-334(\\261niego)28(w)27(a.)]TJ 0 -13.549 Td[(Nieb)-28(o)-484(za)-56(j)1(a\\261)-1(n)1(ia\\252o)-484(jak)-484(p)1(\\252\\363tno)-484(n)1(a)-484(bielni)1(k)55(ac)28(h,)-484(gd)1(y)-484(je)-484(s)-1(\\252o\\253)1(c)-1(e)-484(pr)1(z)-1(ygr)1(z)-1(eje,)-484(z)]TJ -27.879 -13.55 Td[(p)-27(\\363l)-458(p)-27(o)28(w)-1(i)1(a\\252o)-458(c)27(h)1(\\252)-1(o)-27(dem)-1(,)-457(s)-1(t)1(a)27(w)-458(w)28(es)-1(tc)28(hn\\241\\252)-457(k)28(ole)-1(b)1(i\\241c)-458(s)-1(i)1(\\246)-458(s)-1(enn)1(ie)-1(,)-457(a)-458(sp)-28(o)-27(d)-458(mro)-27(c)-1(zn)28(yc)27(h)]TJ 0 -13.549 Td[(pr)1(\\363)-28(c)27(h)1(nic)-374(n)1(o)-28(cy)-374(j)1(a)27(wi\\252y)-373(s)-1(i)1(\\246)-375(ob)1(razy)-374(b)-27(or\\363)28(w,)-374(k)1(ie)-1(b)29(y)-374(te)-374(cz)-1(ar)1(ne)-374(c)27(h)1(m)27(u)1(ry)-373(w)-1(y)1(nosz)-1(\\241ce)-374(s)-1(i\\246)]TJ 0 -13.549 Td[(ze)-487(ziem)-1(i)1(,)-486(za\\261)-487(p)-27(on)1(ie)-1(k)1(t\\363re)-486(dr)1(z)-1(ew)-1(i)1(n)28(y)83(,)-485(s)-1(amotn)1(ie)-486(s)-1(to)-55(j\\241ce)-1(,)-485(pu)1(s)-1(zy\\252y)-486(si\\246)-486(cz)-1(ub)1(ami)-486(w)]TJ 0 -13.549 Td[(rozbi)1(e)-1(lon)29(ym)-381(p)-27(o)27(wietrzu)-380(ni)1(b)28(y)-380(p)-28(\\246ki)-380(c)-1(zarn)28(y)1(c)27(h)-380(pi)1(\\363r;)-380(ju)1(\\273)-381(na)28(w)27(et)-380(przylecia\\252)-381(p)1(ie)-1(r)1(ws)-1(zy)]TJ 0 -13.549 Td[(wiater,)-333(z)-1(at)1(armos)-1(i\\252)-333(s)-1(ad)1(am)-1(i)-333(i)-333(j)1(\\241\\252)-334(p)1(rze)-1(d)1(m)27(uc)28(hiw)28(a\\242)-334(w)28(e)-334(\\261)-1(p)1(i\\241ce)-334(p)-27(o)-28(d)-333(pr)1(z)-1(y\\271bami.)]TJ 27.879 -13.55 Td[(Ale)-295(jes)-1(zc)-1(ze)-296(ma\\252o)-295(kto)-295(pr)1(z)-1(ec)27(kn)1(\\241\\252)-295(i)-295(oz)-1(wiera\\252)-295(o)-28(cz)-1(y)84(.)-295(W)-295(s\\252)-1(o)-27(dki)1(m)-296(d)1(o\\261)-1(pi)1(ku)-295(le\\273a\\252)-1(o)]TJ -27.879 -13.549 Td[(ws)-1(zystk)28(o)-334(l)1(e)-1(n)1(i\\241c)-334(si\\246)-334(\\271dzie)-1(b)1(k)28(o,)-333(jak)-333(to)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(b)28(y)1(w)27(a)-333(p)-28(o)-333(\\261w)-1(i)1(\\246)-1(cie)-334(cz)-1(y)-333(j)1(armarku)1(.)]TJ 27.879 -13.549 Td[(A)-287(w)-1(r)1(yc)27(h)1(le)-288(i)-287(s)-1(am)-288(d)1(z)-1(ie\\253)-287(s)-1(i)1(\\246)-288(p)-28(o)-27(dni)1(\\363s)-1(\\252,)-287(jeno)-287(c)-1(o)-287(jaki)1(\\261)-288(m)-1(g\\252a)28(wy)-288(i)-287(sm)27(ut)1(n)28(y)83(,)-287(s\\252)-1(o\\253)1(c)-1(a)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-274(nie)-274(b)28(y\\252o,)-274(al)1(e)-275(sk)28(o)27(wron)1(ki)-274(j)1(u\\273)-274(prze)-1(d)1(z)-1(w)28(ani)1(a\\252y)-274(s)-1(w)28(o)-56(j)1(e)-275(p)1(ac)-1(ierze)-1(,)-273(g\\252)-1(o\\261ni)1(e)-1(j)-273(z)-1(ab)-27(e)-1(\\252-)]TJ 0 -13.549 Td[(k)28(ota\\252y)-289(w)28(o)-28(d)1(y)-289(i)-289(p)-27(oru)1(s)-1(zy\\252y)-289(si\\246)-289(zb)-28(o\\273a)-289(bi)1(j\\241c)-289(c)27(h)1(rz)-1(\\246stliwymi)-289(k\\252osam)-1(i)-288(o)-289(mie)-1(d)1(z)-1(e)-289(i)-288(drogi)1(,)]TJ 0 -13.549 Td[(ju)1(\\273)-314(niegdzie)-314(p)-28(o)-313(z)-1(agr)1(o)-28(dac)28(h)-314(rw)28(a\\252y)-314(si\\246)-314(t\\246s)-1(kl)1(iw)27(e)-314(b)-27(e)-1(ki)-313(o)28(w)-1(i)1(e)-1(c,)-314(k)56(a)-56(j)1(\\261)-314(z)-1(n)1(o)27(wu)-313(jazgotliwie)]TJ 0 -13.55 Td[(zag\\246)-1(ga\\252y)-315(g\\246s)-1(i)1(,)-315(to)-315(k)28(ogu)1(t)28(y)-315(si\\246)-315(w)-1(y)1(dzie)-1(r)1(a\\252y)-315(rozg\\252o\\261)-1(n)1(ie,)-315(gdzie)-315(na)28(w)28(e)-1(t)-314(w)27(o\\252ani)1(a)-315(s)-1(i)1(\\246)-316(r)1(oz)-1(-)]TJ 0 -13.549 Td[(lega\\252y)83(,)-382(s)-1(k)1(rzyp)28(y)-382(w)-1(r)1(\\363tni,)-382(k)28(o\\253)1(s)-1(ki)1(e)-383(r\\273)-1(eni)1(a,)-383(r)1(uc)27(h)-382(i)-382(skrz\\246)-1(t)-382(w)-1(sta)28(w)27(a\\253)1(,)-382(\\273)-1(e)-383(ca\\252a)-383(wie\\261)-383(s)-1(i\\246)]TJ 0 -13.549 Td[(bu)1(dzi\\252a)-287(ima)-55(j\\241c)-287(s)-1(i)1(\\246)-288(z)-287(w)28(olna)-286(pr)1(ac)-1(y)-286(c)-1(o)-28(d)1(z)-1(i)1(e)-1(n)1(nej,)-287(j)1(e)-1(n)1(o)-287(u)-286(Boryn)1(\\363)27(w)-287(w)28(c)-1(i)1(\\241\\273)-288(b)29(y\\252o)-287(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(cic)27(h)1(o)-334(i)-333(sp)-28(ok)28(o)-55(jn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Zas)-1(p)1(ali)-374(an)1(o)-375(z)-374(on)28(yc)28(h)-374(s)-1(m)28(utk)28(\\363)28(w)-374(i)-374(c)-1(i)1(\\246)-1(\\273kic)28(h)-374(tur)1(bacji,)-374(j)1(a\\273)-1(e)-374(na)-374(d)1(w)27(\\363r)-374(r)1(oz)-1(n)1(os)-1(i\\252y)]TJ -27.879 -13.55 Td[(si\\246)-334(c)27(h)1(rap)1(ania.)]TJ 27.879 -13.549 Td[(Wiat)1(e)-1(r)-447(b)1(uc)27(h)1(a\\252)-447(c)-1(o)-447(tr)1(o)-28(c)27(h\\246)-447(w)-447(ot)27(w)28(arte)-447(dr)1(z)-1(wi)-447(a)-447(okna)-447(i)-447(t)1(\\252)-1(u)1(k\\252)-447(s)-1(i)1(\\246)-448(p)-27(o)-448(i)1(z)-1(b)1(ac)27(h)]TJ\nET\nendstream\nendobj\n1867 0 obj <<\n/Type /Page\n/Contents 1868 0 R\n/Resources 1866 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1866 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1871 0 obj <<\n/Length 9029      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(585)]TJ -358.232 -35.866 Td[(\\261w)-1(i)1(s)-1(zc)-1(z\\241c)-335(przec)-1(i\\241)-27(gle)-335(i)-335(n)1(a)-335(d)1(armo)-335(rozwie)-1(w)28(a\\252)-335(n)1(ie)-1(b)-27(osz)-1(cz)-1(yk)28(o)28(wi)-334(w)-1(\\252osy)-335(i)-334(targa\\252)-334(\\261)-1(wia-)]TJ 0 -13.549 Td[(t\\252em)-334(os)-1(t)1(a)-1(t)1(niej)-333(\\261)-1(wiecy)83(.)]TJ 27.879 -13.549 Td[(Nie)-345(p)-28(or)1(usz)-1(y\\252)-345(si\\246)-345(ju\\261ci)-345(B)-1(or)1(yna,)-344(nie)-345(przec)27(kn)1(\\241\\252)-1(,)-344(nie)-345(p)-28(or)1(w)27(a\\252)-345(si\\246)-346(d)1(o)-345(rob)-27(ot)28(y)-345(ni)]TJ -27.879 -13.549 Td[(dr)1(ugic)28(h)-357(do)-358(n)1(iej)-358(zap)-27(\\246)-1(d)1(z)-1(a\\252,)-357(le)-1(\\273a\\252)-358(se)-358(m)-1(ar)1(t)28(w)-1(y)84(,)-357(c)-1(ic)28(h)28(y)83(,)-357(na)-357(k)56(am)-1(ie\\253)-357(ju)1(\\273)-358(z)-1(akr)1(z)-1(ep\\252y)-357(i)-358(n)1(a)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-334(j)1(u\\273)-334(g\\252u)1(c)27(h)28(y)84(.)]TJ 27.879 -13.55 Td[(Wiat)1(r)-322(ju\\273)-322(z)-323(niema\\252\\241)-323(mo)-28(c\\241)-323(za)28(w)-1(i)1(a\\252)-323(i)-322(rymn)1(\\241\\252)-323(w)-322(s)-1(ad,)-322(\\273e)-323(ws)-1(zystk)28(o)-323(w)28(ok)28(\\363\\252)-322(j\\246\\252)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-294(c)27(h)28(wia\\242,)-294(sze)-1(le\\261)-1(ci\\242,)-294(tr)1(z)-1(\\241c)28(ha\\242,)-294(k)28(o\\252ysa\\242)-294(i)-294(j)1(akb)28(y)-293(zagl\\241da\\242)-294(w)-294(Bory)1(no)28(w)27(\\241)-293(s)-1(in)1(\\241)-294(t)28(w)28(arz;)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)1(\\252)-267(w)-267(niego)-267(dzie\\253)-267(mg\\252a)28(w)-1(y)84(,)-267(zagl\\241d)1(a\\252)-1(y)-266(rozc)27(h)28(wian)1(e)-268(d)1(rze)-1(w)28(a,)-267(za\\261)-268(on)1(e)-267(w)-1(y)1(s)-1(m)28(uk\\252e,)]TJ 0 -13.549 Td[(gib)1(kie)-351(m)-1(al)1(w)-1(y)-350(kiej)-351(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-350(c)27(h)28(yl)1(i\\252y)-351(si\\246)-352(p)1(rze)-1(z)-351(okn)1(a)-351(w)-351(p)-28(ok)1(\\252onac)27(h)-350(g\\252\\246)-1(b)-27(okic)28(h,)-350(a)-351(z)-1(e)]TJ 0 -13.549 Td[(dw)28(oru)-311(r)1(az)-312(p)-28(o)-311(raz)-312(wp)1(ada\\252a)-312(z)-312(b)1(rz\\246)-1(k)1(ie)-1(m)-311(psz)-1(cz)-1(o\\252a,)-311(to)-312(mot)28(yl)-311(lec)-1(ia\\252)-311(wprost)-311(na)-311(\\261)-1(wia-)]TJ 0 -13.549 Td[(t\\252o,)-365(to)-365(jask)28(\\363\\252k)56(a)-366(zb\\252\\241d)1(z)-1(i\\252a)-365(\\261wie)-1(r)1(go)-28(c)-1(\\241c)-365(l\\246kliwie,)-365(to)-365(nies)-1(\\252y)-365(si\\246)-365(m)27(uc)28(h)28(y)84(,)-365(przyp)-27(e)-1(\\252za\\252y)]TJ 0 -13.55 Td[(\\273ucz)-1(ki)-300(i)-301(wsz)-1(elaki)-300(B)-1(o\\273y)-300(s)-1(t)28(w)28(\\363r,)-301(a)-300(w)-1(r)1(az)-301(z)-301(nimi)-301(sp\\252y)1(w)27(a\\252)-301(d)1(o)-301(izb)28(y)-300(c)-1(ic)28(h)28(y)-301(b)1(rz\\246)-1(k)-300(i)-301(szum,)]TJ 0 -13.549 Td[(i)-333(trze)-1(p)-27(ot,)-333(i)-333(\\242)-1(wierk)56(an)1(ia,)-333(kieb)28(y)-333(te)-1(n)-332(jeden)-333(g\\252)-1(os)-333(\\273)-1(yw)28(ej,)-333(s)-1(erd)1(e)-1(cz)-1(n)1(e)-1(j)-332(\\273)-1(a\\252o\\261c)-1(i:)]TJ 27.879 -13.549 Td[({)-333(P)28(omar\\252!)-333(P)28(oma)-1(r)1(\\252!)-333(P)28(om)-1(ar)1(\\252!)]TJ 0 -13.549 Td[(I)-258(c)-1(o)-258(j)1(e)-1(n)1(o)-258(\\273)-1(y)1(\\252o,)-258(trz\\246)-1(s\\252o)-258(s)-1(i\\246,)-258(\\252k)56(a\\252o)-258(i)-258(z)-1(an)1(os)-1(i)1(\\252o,)-258(jakb)29(y)-258(w)-258(przyt\\252u)1(m)-1(ion)29(ym)-1(;)-257(s)-1(r)1(ogim)]TJ -27.879 -13.549 Td[(lame)-1(n)1(c)-1(i)1(e)-1(;)-398(a\\273)-398(\\261)-1(cic)27(h)1(\\252o)-399(z)-398(nag\\252a)-398(i)-398(tr)1(w)27(o\\273nie,)-398(wiater)-398(usta\\252,)-398(ws)-1(zystk)28(o)-399(p)1(rzytai\\252o)-398(dec)27(h)]TJ 0 -13.55 Td[(i)-407(pad)1(\\252o)-407(na)-407(t)28(w)27(ar)1(z)-408(w)-407(pro)-27(c)27(h)-407(zie)-1(mi,)-407(b)-27(o)-407(oto)-407(z)-1(e)-407(\\261)-1(wito)28(wyc)27(h)-406(s)-1(zaro\\261c)-1(i)-407(wz)-1(esz)-1(\\252o)-407(s)-1(\\252o\\253)1(c)-1(e)]TJ 0 -13.549 Td[(cz)-1(erw)28(one)-381(i)-380(ogromne,)-380(w)-1(y)1(nies)-1(\\252o)-380(s)-1(i\\246)-380(nad)-380(\\261w)-1(i)1(at,)-381(ogar)1(n\\246\\252o)-381(go)-380(w)-1(\\252ad)1(n)28(ym,)-380(\\273)-1(ywi\\241cym)]TJ 0 -13.549 Td[(okiem)-334(i)-333(skry\\252o)-333(si\\246)-334(w)-334(sk)28(o\\252tun)1(ion)1(e)-334(c)27(h)1(m)27(ur)1(z)-1(ysk)56(a.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(ar)1(z)-1(a\\252o)-409(n)1(a)-409(\\261)-1(wiec)-1(ie,)-409(a)-409(n)1(ie)-410(wysz)-1(\\252o)-409(i)-408(Z)-1(d)1(ro)28(w)28(a\\261)-1(,)-409(j)1(\\241\\252)-409(s)-1(yp)1(a\\242)-410(d)1(rob)1(n)28(y)83(,)-408(c)-1(iep\\252y)]TJ -27.879 -13.549 Td[(desz)-1(cz)-340(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(ymi)-339(k)1(ropl)1(am)-1(i,)-338(\\273)-1(e)-339(wnet)-339(wsz)-1(ystkie)-339(p)-27(ola)-339(i)-338(s)-1(ad)1(y)-339(rozdzw)27(on)1(i\\252y)-339(si\\246)-339(syp-)]TJ 0 -13.55 Td[(kim,)-333(ni)1(e)-1(u)1(s)-1(ta)-55(j\\241cym)-334(sz)-1(mere)-1(m.)]TJ 27.879 -13.549 Td[(Oc)28(h\\252o)-28(d)1(\\252)-1(o)-272(z)-1(n)1(ac)-1(znie,)-273(zapac)28(hn)1(ia\\252y)-273(d)1(rogi,)-272(ptaki)-272(zac)-1(z\\246)-1(\\252y)-272(\\261)-1(p)1(ie)-1(w)28(a\\242)-273(z)-273(c)-1(a\\252ej)-273(mo)-28(cy)83(,)]TJ -27.879 -13.549 Td[(a)-499(w)-498(te)-1(j)-498(sz)-1(ar)1(e)-1(j)1(,)-499(r)1(oz)-1(d)1(rgan)1(e)-1(j)-498(ku)1(rza)27(wie,)-498(jak)56(a)-499(p)1(rzys)-1(\\252on)1(i\\252a)-499(\\261wiat,)-498(pi\\252y)-498(s)-1(p)1(ragn)1(ione)]TJ 0 -13.549 Td[(zb)-28(o\\273a,)-270(p)1(i\\252y)-270(li\\261cie)-271(p)-27(omdla\\252e,)-270(p)1(i\\252y)-270(d)1(rz)-1(ew)28(a,)-270(pi)1(\\252)-1(y)-269(wys)-1(c)28(hn)1(i\\246)-1(te)-270(gard)1(z)-1(i)1(e)-1(le)-270(stru)1(g)-270(i)-270(zie)-1(mie)]TJ 0 -13.549 Td[(spiec)-1(zone,)-333(pi\\252y)-333(d)1(\\252)-1(u)1(go)-333(i)-334(z)-333(lub)-27(o\\261c)-1(i\\241,)-333(d)1(ys)-1(z\\241c)-334(j)1(akb)28(y)-333(z)-334(d)1(z)-1(i\\246k)28(c)-1(zyn)1(ie)-1(n)1(iem)-1(.)]TJ 27.879 -13.55 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(b)1(racie)-334(desz)-1(cz)-1(u)1(!)-333(B)-1(\\363g)-333(z)-1(ap)1(\\252a\\242)-1(,)-333(sios)-1(t)1(ro)-333(c)27(hm)28(ur)1(o!)-334(B\\363g)-333(z)-1(ap)1(\\252a\\242)-1(!)]TJ 0 -13.549 Td[(W\\252a\\261nie)-222(te)-1(n)-221(de)-1(szc)-1(z)-223(zacina)-55(j\\241cy)-222(przebud)1(z)-1(i)1(\\252)-223(Han)1(k)28(\\246)-223(\\261pi\\241c\\241)-222(p)-28(o)-28(d)-221(s)-1(am)28(ym)-223(ok)1(nem)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(s)-1(i)1(\\246)-334(pierwsz)-1(a)-333(z)-1(erw)28(a\\252a)-334(n)1(a)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[(P)28(ob)1(ie)-1(g\\252a)-333(z)-334(kr)1(z)-1(yk)1(ie)-1(m)-333(do)-333(s)-1(t)1(a)-56(jn)1(i.)]TJ 0 -13.549 Td[({)-350(P)1(ie)-1(tr)1(e)-1(k!)-349(Wsta)27(w)28(a)-56(j)1(!)-350(Des)-1(zcz)-351(p)1(ada!)-350(K)1(onicz)-1(y)1(n\\246)-350(trza)-350(le)-1(cie\\242)-351(k)28(op)1(i\\242,)-350(b)-27(o)-350(na)-350(n)1(ic)]TJ -27.879 -13.55 Td[(pr)1(z)-1(emi\\246)-1(k)1(nie!)-403(Witek,)-402(w)27(a\\252k)28(oni)1(u)-403(jeden,)-402(kro)28(wy)-403(wygani)1(a)-56(j)1(!)-403(Na)-403(ws)-1(i)-403(j)1(u\\273)-403(pr)1(z)-1(ep)-28(\\246dzili)1(!)]TJ 0 -13.549 Td[({)-330(w)27(o\\252a\\252a)-330(os)-1(t)1(ro)-330(w)-1(y)1(puszc)-1(za)-56(j)1(\\241c)-331(z)-331(c)28(hlew)27(\\363)28(w)-330(g\\246)-1(si,)-330(kt\\363r)1(e)-331(z)-331(r)1(adosn)28(ym)-330(g\\246)-1(gotem)-331(lecia\\252y)]TJ 0 -13.549 Td[(tap)1(la\\242)-334(si\\246)-334(w)-334(k)56(a\\252u\\273ac)27(h)1(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252a)-343(d)1(o)-343(kr)1(\\363)27(w)-342(i)-342(\\261)-1(win)1(ie)-343(wyp)-27(\\246)-1(d)1(z)-1(a\\252a)-342(na)-342(p)-28(o)-27(dw)28(\\363rz)-1(e,)-342(gdy)-342(p)1(rz)-1(y)1(le)-1(cia\\252)-342(k)28(o)27(w)28(al;)]TJ -27.879 -13.549 Td[(u\\252o\\273yli)1(,)-373(c)-1(o)-372(b)28(y\\252o)-373(p)-27(otrza)-373(ku)1(pi\\242)-373(na)-372(jut)1(rz)-1(ejsz\\241)-373(s)-1(t)28(yp)-27(\\246,)-373(wz)-1(i\\241\\252)-372(pieni\\241d)1(z)-1(e)-373(i)-373(mia\\252)-373(zaraz)]TJ 0 -13.549 Td[(jec)27(h)1(a\\242)-334(do)-333(mias)-1(t)1(e)-1(cz)-1(k)56(a,)-333(ale)-334(j)1(u\\273)-334(z)-333(bry)1(c)-1(zki)-333(pr)1(z)-1(yw)28(o\\252a\\252)-334(j)1(\\241)-334(i)-333(r)1(z)-1(ek\\252)-333(c)-1(ic)28(ho:)]TJ 27.879 -13.55 Td[({)-227(Hank)56(a,)-227(da)-55(jcie)-228(mi)-227(p)-27(o\\252o)27(w)28(\\246)-1(,)-227(t)1(o)-228(n)1(i)-227(pary)-227(n)1(ie)-228(p)1(usz)-1(cz\\246)-1(,)-227(\\273e)-1(\\261c)-1(i)1(e)-228(s)-1(tar)1(e)-1(go)-227(p)-27(o)-28(debr)1(ali.)]TJ -27.879 -13.549 Td[(Zr\\363b)1(m)27(y)-333(p)-27(o)-334(d)1(obrem)27(u)1(.)]TJ 27.879 -13.549 Td[(Roz)-1(cze)-1(rwieni)1(\\252a)-334(si\\246)-334(ki)1(e)-1(j)-333(b)1(urak)-333(i)-333(kr)1(z)-1(y)1(kn\\246\\252a)-334(p)-27(oryw)28(cz)-1(o:)]TJ 0 -13.549 Td[({)-324(A)-324(p)28(ysku)1(j)-324(sobie)-324(c)27(h)1(o)-28(\\242)-1(b)29(y)-324(pr)1(z)-1(ed)-324(ca\\252ym)-325(\\261wiatem)-1(;)-323(w)-1(i)1(dzis)-1(z)-324(go,)-324(sam)-325(got\\363)28(w)-324(do)]TJ -27.879 -13.549 Td[(z\\252)-1(ego,)-333(to)-333(m)27(y\\261li,)-333(co)-334(i)-333(d)1(rugi)1(e)-334(takie)-333(s)-1(ame)-1(.)]TJ 27.879 -13.55 Td[(Jeno)-333(b\\252ysn\\241\\252)-333(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)-333(p)-28(oskub)1(a\\252)-334(w)28(\\241s\\363)27(w)-333(i)-333(z)-1(aci\\241\\252)-334(k)28(on)1(ie.)]TJ 0 -13.549 Td[(Hank)56(a)-310(z)-1(a\\261)-310(wz)-1(i\\246\\252a)-311(si\\246)-310(os)-1(tr)1(o)-311(d)1(o)-311(r)1(ob)-28(ot)28(y)84(,)-310(t)28(yla)-310(b)-27(o)27(wiem)-311(gosp)-28(o)-27(dark)56(a)-310(c)-1(zek)55(a\\252a)-310(na)]TJ\nET\nendstream\nendobj\n1870 0 obj <<\n/Type /Page\n/Contents 1871 0 R\n/Resources 1869 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1869 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1874 0 obj <<\n/Length 8442      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(586)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(\\241,)-308(\\273e)-308(trza)-308(b)29(y\\252o)-308(d)1(obrze)-308(kul)1(as)-1(y)-307(wyc)-1(i)1(\\241)-28(gn\\241\\242)-308(i)-307(g\\252o)28(w)-1(i)1(\\242)-308(s)-1(i\\246)-308(n)1(iem)-1(a\\252o,)-307(b)28(yc)28(h)-308(wsz)-1(y)1(s)-1(tki)1(e)-1(-)]TJ 0 -13.549 Td[(m)27(u)-322(wyd)1(oli\\242,)-323(tote\\273)-324(p)-27(okr)1(\\363tc)-1(e,)-323(j)1(ak)-323(co)-323(dn)1(ia,)-323(r)1(oz)-1(l)1(e)-1(ga\\252)-323(si\\246)-323(p)-28(o)-322(c)-1(a\\252ym)-323(ob)-27(e)-1(j)1(\\261)-1(ciu)-322(jej)-323(g\\252os)]TJ 0 -13.549 Td[(rozk)56(az)-1(u)1(j\\241cy)83(.)]TJ 27.879 -13.549 Td[(Boryn)1(ie)-393(zapalil)1(i)-393(d)1(wie)-393(no)28(w)28(e)-393(\\261)-1(wiec)-1(e)-393(i)-392(p)1(rz)-1(y)1(kryl)1(i)-393(go)-392(pr)1(z)-1(e\\261)-1(cierad\\252em.)-393(Jagata)]TJ -27.879 -13.549 Td[(mam)-1(r)1(ota\\252a)-375(p)1(rzy)-374(ni)1(m)-375(pacierze)-1(,)-374(p)1(rzys)-1(y)1(puj)1(\\241c)-375(r)1(az)-375(p)-27(o)-374(raz)-375(n)1(a)-374(w)27(\\246gliki)-374(j)1(ag\\363)-28(d)-374(j)1(a\\252o)27(w-)]TJ 0 -13.55 Td[(co)27(wyc)28(h.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-296(pr)1(z)-1(ysz\\252)-1(a)-296(o)-28(d)-296(matki)-296(d)1(opiero)-296(p)-28(o)-296(\\261niad)1(aniu)1(,)-296(ale)-297(\\273e)-297(j\\241)-296(s)-1(t)1(rac)27(h)1(e)-1(m)-297(p)1(rze)-1(j)1(-)]TJ -27.879 -13.549 Td[(mo)27(w)28(a\\252)-444(ni)1(e)-1(b)-27(os)-1(zcz)-1(yk)1(,)-444(to)-444(si\\246)-444(jeno)-444(b)1(\\252\\246)-1(d)1(nie)-444(kr\\246ci\\252a)-444(p)-28(o)-443(ob)-28(ej\\261c)-1(i)1(u,)-444(cz)-1(\\246sto)-444(g\\246)-1(sto)-444(wy-)]TJ 0 -13.549 Td[(gl\\241d)1(a)-56(j)1(\\241c)-425(n)1(a)-424(Mateusz)-1(a;)-423(kt\\363ren)-424(p)1(rze)-1(n)1(i\\363s)-1(\\252)-424(si\\246)-424(z)-425(r)1(ob)-28(ot)1(\\241)-424(na)-424(kl)1(e)-1(p)1(is)-1(k)28(o;)-423(k)28(o\\253cz)-1(y\\252)-424(j)1(u\\273)]TJ 0 -13.549 Td[(tru)1(mn\\246)-345(i)-345(w\\252)-1(a\\261ni)1(e)-346(b)28(y)1(\\252)-346(malo)28(w)28(a\\252)-345(na)-345(ni)1(e)-1(j)-344(bia\\252y)-345(k)1(rz)-1(y)1(\\273)-1(,)-345(k)1(ie)-1(j)-344(Jagna)-345(stan\\246\\252a)-345(w)27(e)-345(wrot-)]TJ 0 -13.549 Td[(ni)1(ac)27(h)-333(sto)-28(do\\252y)84(.)]TJ 27.879 -13.55 Td[(Mi)1(lc)-1(za\\252a)-334(sp)-27(oz)-1(iera)-55(j\\241c)-334(tr)1(w)27(o\\273ni)1(e)-334(na)-333(c)-1(zarn)1(e)-334(wiek)28(o.)]TJ 0 -13.549 Td[({)-333(Wdo)28(w)28(a\\261)-334(teraz)-1(,)-333(Jagu)1(\\261)-1(,)-333(wdo)28(w)28(a!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(ze)-334(wsp)-28(\\363\\252cz)-1(u)1(c)-1(iem.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)-333({)-333(o)-28(d)1(par\\252a)-333(\\252z)-1(a)28(w)28(o)-334(i)-333(cic)27(h)28(u)1(\\261)-1(k)28(o.)]TJ 0 -13.549 Td[(P)28(atr)1(z)-1(a\\252)-327(n)1(a)-327(ni)1(\\241)-327(p)-27(o)-28(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(,)-326(z)-1(mize)-1(r)1(o)27(w)28(ana)-326(c)-1(i)-326(b)28(y\\252a)-327(i)-326(blad)1(a)-327(kiej)-327(t)1(e)-1(n)-326(op\\252atek,)-327(a)]TJ -27.879 -13.549 Td[(tak)-333(\\273a\\252)-1(o\\261liw)28(a,)-333(jak)-333(to)-333(p)-27(okrzywdzone)-334(d)1(z)-1(i)1(e)-1(ci\\241tk)28(o.)]TJ 27.879 -13.55 Td[({)-333(T)83(ak)56(a)-334(to)-333(ju)1(\\273)-334(cz)-1(\\252o)28(wie)-1(k)28(o)28(w)28(a)-334(d)1(ola)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(sm)27(u)1(tnie.)]TJ 0 -13.549 Td[({)-432(A)-432(wd)1(o)27(w)28(am!)-432(wdo)28(w)27(am)-432({)-432(p)-27(o)28(wt\\363rzy\\252a)-432(i)-432(\\252zy)-432(nap)-27(e\\252)-1(n)1(i\\252y)-432(j)1(e)-1(j)-431(mo)-28(dr)1(e)-433(o)-28(czy)83(,)-432(a)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273kie)-300(wz)-1(d)1(yc)27(h)28(y)-299(dziw)-300(piersi)-300(n)1(ie)-300(roz)-1(erw)28(a\\252y)83(,)-299(\\273)-1(e)-300(ucie)-1(k)1(\\252a)-300(z)-1(a)-300(c)28(ha\\252up)-27(\\246)-300(i)-300(ni)1(e)-301(b)1(ac)-1(z\\241c)-301(n)1(a)]TJ 0 -13.549 Td[(desz)-1(cz)-1(,)-358(p\\252ak)56(a\\252a)-359(tam)-359(d\\252u)1(go)-359(i)-358(tak)-359(r)1(z)-1(ew)-1(l)1(iwie)-1(,)-358(ja\\273e)-359(j\\241)-359(sama)-359(Hank)56(a)-359(spr)1(o)27(w)28(adzi\\252a)-359(d)1(o)]TJ 0 -13.549 Td[(izb)28(y)-333(pr)1(obu)1(j\\241c)-334(u)1(s)-1(p)-27(ok)28(oi\\242)-334(a)-333(p)-27(o)-28(c)-1(i)1(e)-1(sz)-1(y\\242.)]TJ 27.879 -13.55 Td[({)-310(P\\252ak)56(aniem)-311(ni)1(e)-311(z)-1(ar)1(adzis)-1(z.)-310(Nam)-1(a)-310(te)-1(\\273)-311(n)1(iele)-1(tk)28(o,)-310(ale)-311(j)1(u\\273)-311(tob)1(ie,)-311(sieroto,)-310(p)-28(ew-)]TJ -27.879 -13.549 Td[(ni)1(kiem)-1(,)-333(co)-334(b)1(arze)-1(j)-333(ci\\246\\273)-1(k)28(o)-333({)-333(m)-1(\\363)28(wi\\252a)-333(z)-334(dob)1(ro\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[({)-347(P\\252acz)-348(p\\252acz)-1(em)-1(,)-347(a)-347(rok)-347(ni)1(e)-348(pr)1(z)-1(ejd)1(z)-1(ie)-347(i)-348(za\\261)-1(p)1(iew)27(am)-347(jej)-347(takiego)-348(c)28(hmiela)-348(n)1(o-)]TJ -27.879 -13.549 Td[(w)28(e)-1(go,)-333(co)-334(si\\246)-334(w\\261c)-1(iekni)1(e)-334({)-333(oz)-1(w)28(a\\252a)-334(si\\246)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-333(Jagust)28(ynk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(ora)-333(na)-333(pr)1(z)-1(ekpi)1(nki)-333({)-333(s)-1(k)56(arci\\252a)-333(j\\241)-333(Hank)56(a.)]TJ 0 -13.55 Td[({)-399(P)28(o)28(wie)-1(d)1(am)-400(sz)-1(cze)-1(r\\241)-399(p)1(ra)28(wd\\246,)-399(ab)-28(o)-399(to)-399(n)1(ie)-400(m\\252o)-28(da,)-399(n)1(ie)-400(u)1(ro)-28(d)1(na,)-399(n)1(ie)-400(b)-27(ogata!)]TJ -27.879 -13.549 Td[(Kij)1(e)-1(m)-333(s)-1(i)1(\\246)-334(b)-28(\\246dzie)-334(m)28(usia\\252a)-333(ogania\\242)-334(p)1(rze)-1(d)-333(c)28(h\\252op)1(am)-1(i.)]TJ 27.879 -13.549 Td[(Jagn)1(a)-342(n)1(ie)-342(o)-28(d)1(rze)-1(k\\252a,)-341(Han)1(k)55(a)-341(za\\261)-342(w)-1(y)1(nies)-1(\\252a)-341(w)-342(op)1(\\252otki)-341(\\273)-1(ar)1(c)-1(i)1(e)-342(la)-341(prosi\\241t)-341(i)-341(wy-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a\\252a)-334(n)1(a)-334(d)1(rog\\246.)]TJ 27.879 -13.549 Td[({)-322(Co)-321(s)-1(i\\246)-322(tam)-322(sta\\252o?)-322({)-321(m)27(y\\261la\\252a)-322(strap)1(iona.)-321({)-322(M)1(ie)-1(l)1(i)-322(go)-321(pu)1(\\261)-1(ci\\242)-322(w)-322(sob)-28(ot\\246,)-322(a)-321(tu)]TJ -27.879 -13.55 Td[(ju)1(\\273)-334(p)-27(oniedzia\\252ek)-334(i)-333(an)1(i)-333(w)-1(i)1(du)1(,)-334(an)1(i)-333(s)-1(\\252yc)28(h)28(u.)]TJ 27.879 -13.549 Td[(Ale)-363(ni)1(e)-364(b)28(y)1(\\252o)-363(c)-1(zas)-1(u)-362(na)-363(f)1(rasun)1(ki,)-363(b)-27(o)-363(m)28(usia\\252a)-363(p)-28(omaga\\242)-363(k)28(opi\\242)-363(resz)-1(t\\246)-363(s)-1(i)1(ana)-363(i)]TJ -27.879 -13.549 Td[(ws)-1(zystk)56(\\241)-381(k)28(oniczyn\\246,)-381(gd)1(y\\273)-381(des)-1(zc)-1(z)-381(r)1(oz)-1(p)1(ada\\252)-381(si\\246)-381(ju)1(\\273)-382(n)1(a)-381(d)1(obre,)-381(n)1(ie)-381(pr)1(z)-1(es)-1(ta)-55(j\\241c)-381(an)1(i)]TJ 0 -13.549 Td[(na)-333(c)27(h)29(w)-1(i)1(l\\246)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-323(wkr\\363tce)-323(p)-27(o)-323(p)-27(o\\252ud)1(niu)-322(n)1(adsz)-1(ed\\252)-322(pr)1(ob)-28(osz)-1(cz)-323(z)-323(or)1(ganist\\241,)-322(przysz)-1(l)1(i)-323(b)1(racc)-1(y)]TJ -27.879 -13.549 Td[(ze)-234(\\261w)-1(i)1(at\\252e)-1(m)-233(i)-233(lu)1(dzi)-233(z)-1(ebr)1(a\\252o)-234(si\\246)-233(te)-1(\\273)-233(c)-1(o\\261)-233(ni)1(e)-1(co\\261)-1(,)-233(w\\252o\\273yli)-233(Boryn)1(\\246)-234(d)1(o)-233(tru)1(m)-1(n)29(y)83(,)-233(M)1(ate)-1(u)1(s)-1(z)]TJ 0 -13.55 Td[(zabi\\252)-403(j)1(\\241)-403(k)28(o\\252k)56(am)-1(i)1(,)-403(ksi\\241d)1(z)-403(o)-28(dp)1(ra)28(wi\\252)-403(mo)-28(dli)1(t)28(w)-1(y)84(,)-403(skr)1(opi\\252)-403(w)28(o)-28(d)1(\\241)-403(\\261)-1(wi\\246con\\241)-403(i)-402(p)-27(o)27(wie\\271)-1(l)1(i)]TJ 0 -13.549 Td[(go,)-333(z)-334(cic)27(h)1(a)-334(p)1(rzy\\261)-1(p)1(iew)-1(u)1(j\\241c,)-333(do)-333(k)28(o\\261)-1(cio\\252a,)-333(k)56(a)-56(j)-333(j)1(u\\273)-334(Jam)28(br)1(o\\273)-334(bi\\252)-333(w)28(e)-334(dzw)27(on)-333(\\273a\\252obn)29(y)83(.)]TJ 27.879 -13.549 Td[(A)-395(kiedy)-395(wr\\363)-27(c)-1(il)1(i)-395(z)-396(e)-1(k)1(s)-1(p)-27(ort)28(y)84(,)-395(to)-396(w)-395(c)27(h)1(a\\252up)1(ie)-396(wid)1(z)-1(ia\\252o)-395(si\\246)-396(tak)-395(j)1(ak)28(o\\261)-396(pu)1(s)-1(to)-395(i)]TJ -27.879 -13.549 Td[(strasz)-1(n)1(ie)-278(c)-1(ic)28(ho,)-277(ja\\273e)-278(J\\363z)-1(k)56(a)-278(b)1(uc)27(h)1(n\\246\\252a)-278(p)1(\\252)-1(acze)-1(m,)-278(a)-277(Hank)56(a)-278(ozw)27(a\\252a)-278(si\\246)-278(do)-277(Jagust)28(ynk)1(i)]TJ 0 -13.549 Td[(opr)1(z)-1(\\241ta)-55(j\\241ce)-1(j)-332(iz)-1(b)-27(\\246)-1(:)]TJ 27.879 -13.55 Td[({)-346(Cho)-27(c)-1(ia\\273)-346(o)-28(d)-345(t)28(yla)-345(c)-1(zas)-1(u)-345(tr)1(up)-27(e)-1(m)-346(b)28(y)1(\\252)-346(jeno,)-345(a)-346(z)-1(a)28(wdy)-345(c)-1(zu\\242)-346(b)28(y)1(\\252)-1(o)-345(gos)-1(p)-27(o)-28(d)1(arz)-1(a)]TJ -27.879 -13.549 Td[(w)-334(c)28(ha\\252u)1(pie.)]TJ\nET\nendstream\nendobj\n1873 0 obj <<\n/Type /Page\n/Contents 1874 0 R\n/Resources 1872 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1872 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1877 0 obj <<\n/Length 8858      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(587)]TJ -330.353 -35.866 Td[({)-333(An)28(tek)-334(wr)1(\\363)-28(c)-1(i)1(,)-334(to)-333(i)-333(gosp)-28(o)-28(d)1(arz)-334(b)-27(\\246dzie)-334({)-333(pr)1(z)-1(yp)-27(o)-28(c)27(h)1(lebia\\252a)-333(s)-1(t)1(ara.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(c)27(h)-333(jeno)-333(p)1(r\\246)-1(d)1(k)28(o)-334(p)-27(o)28(wr\\363)-28(ci\\252)-333({)-334(w)28(e)-1(stc)27(h)1(n\\246\\252a)-334(t\\246s)-1(k)1(no.)]TJ 0 -13.549 Td[(Ale)-336(\\273e)-337(szare)-1(,)-335(wilgotn)1(e)-337(p)1(rze)-1(s\\252on)28(y)-336(ob)1(tul)1(a\\252y)-336(zie)-1(mi\\246)-336(i)-335(des)-1(zc)-1(z)-336(pad)1(a\\252)-336(ni)1(e)-1(u)1(s)-1(tan)1(-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(,)-333(to)-333(obtar)1(\\252a)-334(\\252zy)83(,)-333(w)28(e)-1(stc)27(h)1(n\\246\\252a)-334(r)1(az)-334(i)-333(dru)1(gi)-333(i)-333(dalej\\273e)-334(p)-27(ogania\\242)-333(s)-1(w)28(oic)27(h)1(.)]TJ 27.879 -13.549 Td[({)-309(A)-310(c)28(ho)-28(d)1(\\271)-1(cie\\273)-1(,)-309(lu)1(dzie!)-310(\\233eb)28(y)-309(p)-27(om)-1(ar)1(\\252)-310(i)-309(ten)-309(na)-55(jwi\\246ks)-1(zy)84(,)-310(t)1(o)-310(j)1(ak)-309(te)-1(n)-309(k)56(amie\\253)-309(w)]TJ -27.879 -13.55 Td[(morze)-1(,)-364(g\\252\\246)-1(b)-27(okie,)-365(j)1(u\\273)-365(go)-364(nikt)1(o)-365(ni)1(e)-365(w)-1(y)1(\\252)-1(o)28(wi,)-364(a)-365(zie)-1(mia)-364(nie)-365(p)-27(o)-28(cz)-1(ek)56(a)-365(i)-364(trza)-365(k)28(ole)-365(n)1(ie)-1(j)]TJ 0 -13.549 Td[(rob)1(i\\242.)]TJ 27.879 -13.549 Td[(I)-349(p)-27(o)28(w)-1(i)1(e)-1(d)1(\\252a)-349(ws)-1(zystkic)27(h)-348(za)-349(p)1(rz)-1(e\\252az)-349(do)-348(ok)28(op)28(yw)27(an)1(ia)-349(ziem)-1(n)1(iak)28(\\363)28(w,)-349(j)1(e)-1(n)1(o)-349(J\\363zk)55(a)]TJ -27.879 -13.549 Td[(osta\\252a)-412(p)1(iln)1(o)28(w)27(a\\242)-411(dzie)-1(ci,)-411(a)-411(i)-411(b)-27(ez)-412(to,)-411(co)-411(b)28(y\\252a)-411(j)1(ak)55(a\\261)-411(c)27(h)1(ora)-411(i)-411(n)1(ie)-412(mog\\252a)-411(s)-1(i)1(\\246)-412(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ut)1(uli\\242)-275(w)-276(\\273a\\252o\\261)-1(ci,)-275(\\212ap)1(a)-275(te)-1(\\273)-275(przy)-275(ni)1(e)-1(j)-275(w)28(aro)28(w)28(a\\252)-276(n)1(ieo)-28(dst\\246pni)1(e)-276(i)-275(ten)-275(Wit)1(k)28(o)27(wy)-275(b)-27(o)-28(cie)-1(k)1(,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(n)-333(sto)-56(j)1(a\\252)-334(w)-333(ganku)-332(na)-333(jedn)1(e)-1(j)-333(n)1(o)-28(dze)-334(kieb)28(y)-333(n)1(a)-334(str\\363\\273y)83(.)]TJ 27.879 -13.55 Td[(Za\\261)-371(d)1(e)-1(sz)-1(cz)-370(nie)-370(przes)-1(ta)28(w)28(a\\252)-371(an)1(i)-370(na)-370(c)28(h)28(wil\\246,)-370(pad)1(a\\252)-370(drob)1(n)28(y)83(,)-369(g\\246)-1(st)28(y)-370(i)-370(cie)-1(p)1(\\252y)83(,)-370(\\273e)]TJ -27.879 -13.549 Td[(usta\\252y)-376(\\261piew)27(a\\242)-376(ptak)1(i,)-376(a)-376(ws)-1(ze)-1(l)1(aki)-376(s)-1(t)28(w)28(\\363r)-376(p)1(rz)-1(y)1(le)-1(g\\252)-376(w)-376(cic)27(h)1(o\\261)-1(ci,)-376(ca\\252)-1(y)-375(\\261)-1(wiat)-376(z)-376(w)27(oln)1(a)]TJ 0 -13.549 Td[(oni)1(e)-1(mia\\252)-386(i)-385(jak)1(b)28(y)-385(s)-1(i\\246)-386(zas)-1(\\252u)1(c)27(h)1(a\\252)-386(w)-386(ten)-385(trze)-1(p)-27(ot)-386(r)1(os)-1(ist)28(y)83(,)-385(br)1(z)-1(\\246kli)1(w)-1(y)-385(i)-385(nieustann)29(y)83(,)-385(a)]TJ 0 -13.549 Td[(jeno)-390(k)55(a)-55(j\\261)-391(n)1(ie)-1(k)56(a)-55(j)-391(za)28(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252y)-391(g\\246s)-1(i)1(,)-391(tap)1(la)-56(j)1(\\241c)-1(e)-391(si\\246)-391(p)-28(o)-390(s)-1(in)29(yc)27(h)1(,)-391(spieni)1(on)28(yc)27(h)-390(k)56(a\\252u-)]TJ 0 -13.549 Td[(\\273ac)27(h.)]TJ 27.879 -13.55 Td[(Dop)1(ie)-1(r)1(o)-292(o)-292(s)-1(am)28(ym)-292(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(e)-293(wyj)1(rza\\252o)-292(rozognion)1(e)-293(s\\252o\\253ce)-293(i)-291(z)-1(ap)1(ali\\252o)-292(cz)-1(erw)28(o-)]TJ -27.879 -13.549 Td[(ne)-333(ognie)-333(w)-334(rosac)27(h)-333(i)-333(k)56(a\\252u\\273ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(ogo)-28(d)1(a)-334(n)1(a)-334(j)1(utr)1(o)-334(p)-27(e)-1(wn)1(a!)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(ali,)-333(\\261c)-1(i\\241)-27(ga)-56(j\\241c,)-333(z)-334(p)-27(\\363l.)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)28(b)28(y)-333(j)1(e)-1(sz)-1(cz)-1(e)-334(p)1(ada\\252o,)-333(cz)-1(yste)-334(z\\252oto,)-333(nie)-333(des)-1(zc)-1(z.)]TJ 0 -13.549 Td[({)-333(Zie)-1(mni)1(aki)-333(b)28(y\\252y)-333(ju)1(\\273)-334(na)-333(ostatni)1(c)27(h)-333(nogac)28(h.)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(to)-334(o)28(ws\\363)27(w)-333(nie)-333(przyp)1(ie)-1(k)1(\\252)-1(o!)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystkiem)27(u)-333(p)-27(\\363)-56(j)1(dzie)-334(n)1(a)-334(zdr)1(o)28(w)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(se)-334(tak)-333(p)-27(opada\\252)-333(c)27(h)1(o)-28(cia\\273)-334(ze)-334(trzy)-333(dn)1(i)-334({)-333(wz)-1(d)1(yc)27(h)1(a\\252)-334(k)1(t\\363ry\\261.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-285(i)-285(pad)1(a\\252)-285(tak)-285(r\\363)28(wno,)-284(rz\\246)-1(si\\261)-1(cie)-285(i)-285(sp)-28(ok)28(o)-55(jn)1(ie)-286(d)1(o)-285(s)-1(amej)-285(no)-27(c)-1(y)84(,)-285(\\273e)-286(z)-285(lub)-27(o\\261c)-1(i\\241)]TJ -27.879 -13.549 Td[(wysta)27(w)28(ali)-309(p)-27(o)-28(d)-309(c)27(h)1(a\\252upami,)-309(n)1(a)-310(p)1(rz)-1(ec)27(h)1(\\252o)-28(dzon)28(ym,)-309(pac)27(h)1(n\\241cym)-310(p)-27(o)28(wie)-1(tr)1(z)-1(u)1(,)-309(z)-1(a\\261)-310(G)1(ul-)]TJ 0 -13.55 Td[(basiaki)-318(s)-1(k)1(rz)-1(y)1(kiw)28(a\\252y)-319(dzieuc)27(h)29(y)-319(i)-319(c)28(h\\252opak)28(\\363)28(w,)-319(b)29(yc)27(h)-318(le)-1(cie\\242)-319(z)-1(a)-319(wie\\261)-1(,)-318(na)-319(wy\\273nie,)-319(p)1(ali\\242)]TJ 0 -13.549 Td[(sob)-28(\\363tk)28(o)28(w)28(e)-339(ogn)1(ie,)-338(gd)1(y\\273)-338(to)-338(b)28(y\\252a)-338(wigi)1(lia)-338(\\261wi\\246)-1(t)1(e)-1(go)-338(Jan)1(a,)-338(al)1(e)-339(co)-338(\\242m)-1(a)-337(b)28(y\\252a)-338(i)-337(plu)1(c)27(h)1(a,)]TJ 0 -13.549 Td[(to)-285(m)-1(a\\252o)-285(kto)-285(da\\252)-286(si\\246)-286(p)-27(o)-28(ci\\241)-28(gn)1(\\241\\242)-1(,)-285(\\273e)-286(t)28(ylk)28(o)-285(k)55(a)-55(j\\261)-286(n)1(ie)-1(k)56(a)-55(j)-285(c)-1(o)-285(tam)-286(p)-27(o)-28(d)-285(lase)-1(m)-285(roz)-1(b)1(\\252ysn\\241\\252)]TJ 0 -13.549 Td[(jak)1(i\\261)-334(s\\252ab)28(y)-333(ogie)-1(n)1(iek.)]TJ 27.879 -13.549 Td[(Wit)1(e)-1(k)-379(ju)1(\\273)-380(o)-28(d)-379(zm)-1(r)1(oku)-379(pr)1(z)-1(yn)1(iew)27(ala\\252)-379(J\\363z)-1(k)28(\\246,)-379(ab)28(y)-379(z)-380(nim)-379(le)-1(cia\\252a)-379(na)-379(Sob)-27(\\363tki,)]TJ -27.879 -13.55 Td[(ale)-334(m)28(u)-333(p)-27(o)27(wiedzia\\252a)-333(\\273)-1(a\\252o\\261nie:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(olete)-1(,)-333(co)-334(mi)-333(tam)-334(zaba)28(wy)83(,)-333(co)-334(mi)-333(tam)-334(j)1(u\\273)-334(wsz)-1(y)1(s)-1(tk)28(o..)1(.)]TJ 0 -13.549 Td[(Dy\\242)-333(ino)-333(z)-1(ap)1(alim,)-333(pr)1(z)-1(es)-1(k)28(o)-28(czym)-334(ogie\\253)-333(i)-333(pr)1(z)-1(yl)1(e)-1(cim)-334({)-333(pr)1(os)-1(i\\252)-333(gor\\241co.)]TJ 0 -13.549 Td[({)-333(Sied\\271)-333(w)-334(c)27(h)1(a\\252upi)1(e)-1(,)-333(b)-27(o)-334(p)-27(o)28(wie)-1(m)-333(Hance)-1(!)-333({)-333(z)-1(agr)1(oz)-1(i\\252a.)]TJ 0 -13.549 Td[(Ale)-476(p)-27(ole)-1(cia\\252)-476(i)-476(p)-27(o)28(wr\\363)-28(ci\\252)-476(dop)1(ie)-1(r)1(o)-476(p)-27(o)-476(k)28(olac)-1(j)1(i,)-476(g\\252o)-28(d)1(n)28(y)-476(i)-475(ut)28(yt\\252an)28(y)-475(w)-476(b\\252o)-28(cie)]TJ -27.879 -13.549 Td[(jak)-397(nieb)-28(oskie)-398(s)-1(t)28(w)28(orze)-1(n)1(ie,)-398(gdy\\273)-398(des)-1(zc)-1(z)-398(ni)1(e)-399(u)1(s)-1(ta)28(w)28(a\\252)-399(an)1(i)-398(na)-398(c)28(h)28(wil\\246)-398(i)-398(pad)1(a\\252)-399(p)1(rze)-1(z)]TJ 0 -13.55 Td[(ca\\252)-1(\\241)-326(no)-28(c,)-327(a\\273)-327(d)1(opiero)-327(p)1(rze)-1(sta\\252)-327(naza)-56(j)1(utr)1(z)-328(o)-326(du)1(\\273)-1(ym)-327(d)1(niu)1(,)-327(w\\252a\\261)-1(n)1(ie)-327(kiedy)-326(ju)1(\\273)-328(l)1(ud)1(z)-1(ie)]TJ 0 -13.549 Td[(ci\\241)-28(gn\\246li)-333(n)1(a)-334(\\273a\\252obne)-333(nab)-27(o\\273)-1(e\\253st)28(w)27(o.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-477(s)-1(i)1(\\246)-478(jedn)1(ak)-477(ni)1(e)-478(p)-27(ok)55(aza\\252o;)-477(\\261)-1(wiat)-477(si\\246)-477(b)28(y\\252)-477(omgli\\252)-477(s)-1(zara)28(w)27(\\241)-477(k)1(urza)28(w)27(\\241,)]TJ -27.879 -13.549 Td[(w)-459(kt\\363rej)-459(j)1(e)-1(sz)-1(cz)-1(ek)-459(bar)1(z)-1(ej)-459(r)1(oz)-1(zie)-1(l)1(e)-1(n)1(i\\252y)-459(s)-1(i)1(\\246)-460(p)-27(ola)-459(i)-459(s)-1(ad)1(y)83(,)-458(a)-460(w)28(o)-28(d)1(y)-459(wle)-1(k)1(\\252)-1(y)-458(s)-1(i\\246)-459(nib)29(y)]TJ 0 -13.549 Td[(te)-489(s)-1(rebr)1(na)28(w)28(e)-490(pr)1(z)-1(\\246dziw)28(a.)-489(P)28(o)28(wie)-1(tr)1(z)-1(e)-489(b)28(y\\252o)-489(rze)-1(\\271w)28(e)-1(,)-489(c)28(h\\252o)-28(d)1(na)28(w)27(e)-489(i)-489(pac)28(hn)1(\\241c)-1(e,)-489(rosy)]TJ 0 -13.55 Td[(k)56(apa\\252y)-434(ob\\014)1(c)-1(ie)-435(za)-434(le)-1(d)1(a)-435(p)-27(o)28(w)-1(i)1(e)-1(w)28(e)-1(m,)-434(ptaki)-434(d)1(ar\\252y)-434(s)-1(i\\246)-435(k)1(ie)-1(b)29(y)-435(osz)-1(al)1(a\\252)-1(e,)-434(psy)-435(u)1(jad)1(a\\252y)]TJ 0 -13.549 Td[(w)28(e)-1(so\\252o)-375(p)1(rze)-1(gan)1(ia)-56(j)1(\\241c)-375(si\\246)-375(p)-27(o)-374(drogac)28(h)-374(wraz)-375(z)-374(dzie)-1(\\242mi,)-374(a)-374(w)-1(sz)-1(elaki)-374(g\\252os)-374(le)-1(cia\\252)-374(g\\363r-)]TJ\nET\nendstream\nendobj\n1876 0 obj <<\n/Type /Page\n/Contents 1877 0 R\n/Resources 1875 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1875 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1880 0 obj <<\n/Length 9285      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(588)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ni)1(e)-439(i)-438(r)1(ado\\261nie,)-438(na)28(w)28(e)-1(t)-438(zie)-1(mie,)-438(opi)1(te)-439(w)28(o)-28(d\\241)-438(i)-438(n)1(abr)1(z)-1(mia\\252e)-439(mo)-28(c\\241,)-438(z)-1(d)1(a\\252y)-438(s)-1(i)1(\\246)-439(wrze)-1(\\242)]TJ 0 -13.549 Td[(ni)1(e)-1(p)-27(o)28(w)-1(strzyman)28(ym)-333(ros)-1(t)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Za\\261)-239(w)-239(k)28(o\\261)-1(ciele)-240(k)1(s)-1(i\\241d)1(z)-239(o)-28(dp)1(ra)28(wi\\252)-239(\\273)-1(a\\252ob)1(n\\241)-239(w)28(ot)28(yw)28(\\246)-240(i)-238(wraz)-239(z)-240(p)1(rob)-27(os)-1(zcz)-1(em)-240(s\\252up)1(-)]TJ -27.879 -13.549 Td[(skim)-307(i)-307(or)1(ganist\\241,)-307(zas)-1(i)1(ad\\252s)-1(zy)-307(n)1(apr)1(z)-1(ec)-1(iw)-307(siebie)-307(w)-307(\\252a)28(w)27(ac)27(h)-306(p)1(rz)-1(ed)-306(w)-1(i)1(e)-1(lk)1(im)-307(o\\252)-1(t)1(arz)-1(em,)]TJ 0 -13.549 Td[(j\\246li)-333(wyci\\241)-28(ga\\242)-334(\\252aci\\253skie)-333(pie\\261)-1(n)1(ie.)]TJ 27.879 -13.55 Td[(Boryn)1(a)-407(le\\273)-1(a\\252)-407(wysok)28(o)-407(na)-407(k)56(ataf)1(alku)1(,)-407(obsta)28(wion)28(y)-407(w)-407(b)1(ia\\252y)-407(l)1(as)-408(\\261wie)-1(c)-407(p\\252on)1(\\241-)]TJ -27.879 -13.549 Td[(cyc)27(h)1(,)-371(a)-371(d)1(ok)28(o\\252a)-371(kl\\246c)-1(za\\252a)-371(k)28(orn)1(ie)-371(c)-1(a\\252a)-370(w)-1(ie\\261,)-371(zam)-1(o)-28(d)1(lon)1(a)-371(i)-371(zas)-1(\\252u)1(c)27(han)1(a)-371(w)-371(te)-371(d)1(\\252)-1(u)1(gie,)]TJ 0 -13.549 Td[(lame)-1(n)29(tliw)28(e)-369(pie\\261)-1(n)1(ie,)-369(co)-369(n)1(abrzmie)-1(w)28(a\\252y)-369(n)1(iekiedy)-368(takim)-369(strasz)-1(n)29(ym)-369(krzyki)1(e)-1(m,)-369(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(w\\252os)-1(y)-298(p)-27(o)27(wsta)28(w)27(a\\252y)-298(i)-298(b)-28(ol)1(e)-1(sna)-298(lut)1(o\\261)-1(\\242)-299(\\261c)-1(i)1(s)-1(k)56(a\\252a)-299(se)-1(r)1(c)-1(a;)-298(to)-298(ni)1(e)-1(ki)1(e)-1(d)1(y)-299(cic)27(h)1(\\252y)-298(w)-299(pr)1(z)-1(ejm)28(u-)]TJ 0 -13.549 Td[(j\\241cyc)28(h,)-400(\\273)-1(aln)29(yc)27(h)-400(j\\246k)56(ac)27(h,)-400(a\\273)-401(du)1(s)-1(ze)-401(mdla\\252y)-400(s)-1(tr)1(uc)28(hla\\252e)-401(i)-400(s)-1(ame)-401(\\252z)-1(y)-400(c)-1(i)1(e)-1(k\\252y)-400(z)-401(o)-28(cz)-1(\\363)28(w;)]TJ 0 -13.549 Td[(alb)-27(o)-314(te)-1(\\273)-314(z)-1(n)1(o)27(wu)-314(p)-27(o)-28(d)1(nosi\\252y)-314(s)-1(i\\246)-314(jaki)1(e)-1(\\261)-315(cud)1(ne)-314(i)-315(n)1(ieb)-28(osi\\246\\273)-1(n)1(e)-1(,)-314(ki)1(e)-1(b)28(y)-314(te)-314(g\\252os)-1(y)-314(\\261piew)27(a\\253)]TJ 0 -13.55 Td[(jan)1(iels)-1(k)1(ic)27(h)-369(i)-369(wiec)-1(znej)-369(s)-1(zcz)-1(\\246\\261)-1(li)1(w)27(o\\261c)-1(i)1(,)-370(\\273e)-370(n)1(ar\\363)-28(d)-369(wzdyc)28(ha\\252)-369(c)-1(i\\246\\273)-1(k)28(o,)-369(ob)-27(c)-1(i)1(e)-1(r)1(a\\252)-370(o)-28(cz)-1(y)84(,)-369(a)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(to)-333(g\\246s)-1(to)-333(i)-333(p)-28(on)1(iekt\\363re)-334(p)1(\\252ac)-1(ze)-1(m)-333(bu)1(c)27(ha\\252y)-333(se)-1(r)1(dec)-1(zn)28(ym.)]TJ 27.879 -13.549 Td[(Ci\\241)-28(gn)1(\\246)-1(\\252o)-257(s)-1(i)1(\\246)-258(to)-257(z)-258(d)1(obr\\241)-257(go)-28(d)1(z)-1(i)1(n\\246,)-257(a)-258(k)1(ie)-1(j)-257(sk)28(o\\253czyli,)-257(r)1(umor)-257(p)-28(o)28(wsta\\252)-1(,)-257(p)-27(o)-28(d)1(nosili)]TJ -27.879 -13.549 Td[(si\\246)-466(z)-466(kl\\246c)-1(ze)-1(k)-465(i)-465(Jam)27(b)1(ro\\273)-466(j)1(\\241\\252)-466(br)1(a\\242)-466(\\261)-1(wiec)-1(e)-466(o)-27(d)-465(k)55(ataf)1(alku)-465(i)-465(rozda)28(w)28(a\\242)-466(je)-466(lu)1(dziom,)]TJ 0 -13.549 Td[(ksi\\241dz)-324(te)-1(\\273)-325(j)1(e)-1(sz)-1(cze)-325(pr)1(z)-1(e\\261)-1(p)1(ie)-1(w)28(a\\252)-325(p)1(rzy)-324(trumn)1(ie)-1(,)-324(ok)56(adzi\\252)-324(j\\241,)-324(a\\273)-325(zrobi\\252o)-324(si\\246)-325(ni)1(e)-1(b)1(ie)-1(sk)28(o)]TJ 0 -13.55 Td[(o)-28(d)-388(d)1(ym\\363)27(w,)-388(skrop)1(i\\252)-388(w)27(o)-28(d)1(\\241)-389(\\261wi\\246c)-1(on)1(\\241,)-389(wyci\\241)-28(gn)1(\\241\\252)-389(j)1(ak)56(\\241\\261)-389(n)28(u)1(t\\246)-389(i)-388(ru)1(s)-1(zy\\252)-388(ku)-388(dr)1(z)-1(wiom)]TJ 0 -13.549 Td[(za)-334(kr)1(z)-1(y)1(\\273)-1(em)-1(.)]TJ 27.879 -13.549 Td[(A)-367(k)28(o\\261)-1(ci\\363\\252)-368(a\\273)-368(si\\246)-368(zatrz\\241s)-1(\\252)-367(o)-28(d)-367(krzyk)28(\\363)28(w,)-368(p)1(\\252ac)-1(z\\363)27(w)-367(i)-368(szlo)-28(c)27(h)1(a\\253,)-367(b)-27(o)-368(tru)1(mn\\246)-368(ju)1(\\273)]TJ -27.879 -13.549 Td[(br)1(ali)-317(co)-317(n)1(a)-56(jp)1(ierws)-1(i)-316(gos)-1(p)-27(o)-28(d)1(arz)-1(e)-317(i)-316(z)-1(an)1(ie)-1(\\261li)-317(n)1(a)-317(w)28(\\363z)-1(,)-316(w)-317(p)-28(\\363\\252k)28(osz)-1(ki)-316(wym)-1(osz)-1(czone)-317(s)-1(\\252o-)]TJ 0 -13.549 Td[(m\\241,)-334(z)-1(a\\261)-335(J)1(agust)27(y)1(nk)56(a)-334(ta)-56(j)1(nie,)-334(b)28(yc)28(h)-334(ksi\\246)-1(\\273a)-334(nie)-334(s)-1(p)-27(os)-1(tr)1(z)-1(egli,)-334(wrazi\\252a)-334(p)-28(o)-27(d)-334(ni\\241)-334(b)-27(o)-28(c)27(h)1(e)-1(n)]TJ 0 -13.55 Td[(c)27(h)1(leba,)-340(ob)28(wini)1(\\246)-1(t)28(y)-340(w)-341(c)-1(zyste)-341(p\\252\\363tn)1(o,)-341(P)1(ie)-1(t)1(re)-1(k)-340(ze)-1(b)1(ra\\252)-341(k)1(r\\363tk)28(o)-341(l)1(e)-1(j)1(c)-1(e,)-341(zac)-1(i)1(na\\252)-341(b)1(atem)-341(i)]TJ 0 -13.549 Td[(obziera\\252)-333(s)-1(i\\246)-333(niec)-1(i)1(e)-1(rp)1(liwie)-333(na)-333(ks)-1(i)1(\\246)-1(\\273y)83(.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(\\246)-1(cz)-1(a\\252y)-348(\\273)-1(a\\252ob)1(nie)-349(d)1(z)-1(w)28(on)28(y)84(,)-349(wyn)1(ie)-1(\\261li)-348(c)-1(zarn)1(e)-350(c)28(hor)1(\\241)-28(gwie)-1(,)-348(rozb\\252ysn\\246\\252y)-349(\\261wia-)]TJ -27.879 -13.549 Td[(t\\252a,)-333(Stac)28(ho)-333(p)-27(oni\\363s\\252)-334(kr)1(z)-1(y)1(\\273)-1(,)-333(a)-333(ks)-1(i)1(\\246)-1(\\273a)-334(za\\261piew)27(al)1(i:)]TJ 27.879 -13.549 Td[({)-333(\\377)-56(Mi)1(s)-1(erere)-334(me)-1(i)-333(Deus\".)]TJ 0 -13.55 Td[(I)-381(strasz)-1(n)1(a)-381(pi)1(e)-1(\\261\\253,)-380(pie\\261)-1(\\253)-380(\\261m)-1(i)1(e)-1(rci)-381(za\\252k)56(a\\252)-1(a)-380(nad)-380(g\\252o)27(w)28(ami)-381(sm)27(u)1(tkiem)-381(b)-28(ez)-1(b)1(rze)-1(\\273-)]TJ -27.879 -13.549 Td[(n)28(ym)-333(i)-333(groz\\241.)]TJ 27.879 -13.549 Td[(Rusz)-1(y)1(li)-333(z)-334(w)28(olna)-333(na)-333(top)-27(olo)28(w)27(\\241)-333(dr)1(og\\246)-334(ku)-333(sm)-1(\\246tarzo)28(wi.)]TJ 0 -13.549 Td[(Cz)-1(ar)1(na)-461(c)27(h)1(or\\241)-28(gi)1(e)-1(w)-461(z)-461(k)28(o\\261)-1(ciotru)1(p)-28(em)-461(z)-1(a\\252omota\\252a)-461(na)-461(wietrze)-462(ki)1(e)-1(j)-460(te)-1(n)-460(ptak)]TJ -27.879 -13.549 Td[(strasz)-1(li)1(w)-1(y)-402(i)-402(p)-28(on)1(ies)-1(\\252a)-402(s)-1(i\\246)-402(przo)-28(dem,)-403(a)-402(za)-403(n)1(i\\241)-403(d)1(opiero)-402(b\\252ysk)56(a\\252)-403(sre)-1(b)1(rzyst)27(y)-402(kr)1(z)-1(y)1(\\273)-403(i)]TJ 0 -13.55 Td[(ot)28(wie)-1(r)1(a\\252a)-225(si\\246)-224(d\\252uga)-224(ul)1(ic)-1(a)-224(b)1(rac)27(k)1(ic)27(h)-224(z)-224(z)-1(ap)1(alon)28(ymi)-224(\\261w)-1(i)1(e)-1(cam)-1(i,)-224(i)-224(szli)-224(ksi\\246)-1(\\273a)-224(w)-225(cz)-1(ar)1(n)28(yc)27(h)]TJ 0 -13.549 Td[(k)56(apac)28(h.)]TJ 27.879 -13.549 Td[(T)83(ru)1(mna)-464(jec)27(h)1(a\\252a)-465(w)-464(p)-27(o\\261)-1(r)1(o)-28(dk)1(u,)-464(u)1(\\252o\\273)-1(on)1(a)-465(n)1(a)-464(s)-1(\\252omie)-464(w)-1(y)1(s)-1(ok)28(o,)-464(\\273e)-465(j)1(\\241)-464(c)-1(i\\246giem)]TJ -27.879 -13.549 Td[(i)-417(wsz)-1(y)1(s)-1(tki)1(e)-418(mieli)-417(n)1(a)-417(o)-28(cz)-1(ac)28(h,)-416(a)-417(tu\\273)-417(za)-417(ni\\241)-416(w)-1(l)1(e)-1(k\\252a)-417(si\\246)-417(ro)-27(dzina)-417(sro)-28(d)1(z)-1(e)-417(za)28(w)27(o)-28(d)1(z)-1(\\241c)]TJ 0 -13.549 Td[(p\\252acz)-1(em)-326(i)-325(j)1(\\246)-1(k)56(ami,)-325(z)-1(a\\261)-325(p)-28(ob)-27(ok)-325(i)-325(k)55(a)-55(j)-325(gdzie)-326(k)1(to)-326(wzi\\241\\252)-326(miejsc)-1(e,)-325(c)-1(i)1(\\273)-1(b)1(i\\252a)-326(si\\246)-326(ca\\252a)-325(w)-1(i)1(e)-1(\\261,)]TJ 0 -13.549 Td[(w)-334(n)1(iem)-1(a\\252ym)-333(s)-1(m)28(utku)-332(a)-334(cic)27(h)1(o\\261)-1(ci)-333(id\\241ca.)]TJ 27.879 -13.55 Td[(\\233e)-334(n)1(a)27(w)28(e)-1(t)-333(c)28(hore)-333(i)-334(k)56(alekie)-333(nie)-334(osta\\252y)-333(w)-334(c)28(ha\\252up)1(ac)27(h)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(emglone,)-406(sz)-1(ar)1(e)-407(n)1(ieb)-28(o)-405(w)-1(i)1(s)-1(ia\\252o)-406(n)1(isk)28(o,)-406(j)1(akb)28(y)-406(wspar)1(te)-407(n)1(a)-406(t)28(yc)28(h)-406(wielgac)27(h)1(-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h)-312(top)-27(olac)27(h)1(,)-312(p)-28(o)-27(c)27(h)28(yl)1(on)28(yc)27(h)-311(nade)-312(dr)1(o)-1(g\\241.)-312(W)1(s)-1(zystk)28(o)-313(sto)-55(ja\\252o)-312(b)-28(ez)-313(ru)1(c)27(h)28(u)1(,)-312(pr)1(z)-1(ygi)1(\\246)-1(te)]TJ 0 -13.549 Td[(i)-284(k)1(ie)-1(b)29(y)-284(z)-1(as\\252uc)28(han)1(e)-285(w)-284(te)-284(pi)1(e)-1(\\261nie)-284(\\273a\\252obne,)-284(a)-284(k)1(ie)-1(d)1(y)-284(p)-27(o)28(w)-1(i)1(a\\252)-284(w)-1(i)1(ate)-1(r)-283(i)-284(r)1(oz)-1(ru)1(c)27(h)1(a\\252)-284(p)-28(ola)-283(i)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a,)-300(t)1(o)-301(p)-27(osypa\\252y)-300(si\\246)-301(r)1(os)-1(y)-300(n)1(ib)28(y)-300(t)28(ym)-300(\\273)-1(al)1(n)28(ym,)-300(c)-1(i)1(c)27(h)28(ym)-300(p\\252acz)-1(em)-1(,)-300(za\\261)-301(r)1(oz)-1(c)28(h)28(wiane)]TJ 0 -13.55 Td[(zb)-28(o\\273a)-410(k)28(ole)-1(b)1(a\\252y)-410(s)-1(i)1(\\246)-411(z)-410(w)27(oln)1(a)-410(c)-1(i\\246\\273kimi)-410(k\\252os)-1(ami,)-410(c)28(h)28(yli)1(\\252)-1(y)-409(s)-1(i\\246)-410(c)-1(or)1(az)-411(n)1(i\\273)-1(ej,)-410(j)1(akb)28(y)-410(d)1(o)]TJ 0 -13.549 Td[(n\\363g)-333(p)1(rz)-1(y)1(pad)1(a)-56(j\\241c)-333(gos)-1(p)-27(o)-28(dar)1(z)-1(o)28(wi)-333(w)-334(t)28(ym)-333(k)28(orn)28(ym,)-333(os)-1(t)1(atnim)-333(p)-28(ok)1(\\252)-1(on)1(ie.)]TJ\nET\nendstream\nendobj\n1879 0 obj <<\n/Type /Page\n/Contents 1880 0 R\n/Resources 1878 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1865 0 R\n>> endobj\n1878 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1883 0 obj <<\n/Length 8725      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(589)]TJ -330.353 -35.866 Td[(Ksi\\246\\273)-1(a)-364(pie\\261\\253)-364(roz)-1(p)1(\\252yn\\246\\252a)-364(s)-1(i\\246)-364(k)55(a)-55(j\\261c)-1(i\\261)-364(w)-365(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(,)-365(\\273e)-365(sroga)-364(c)-1(ic)28(ho\\261\\242)-365(zw)27(ali)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-345(na)-344(du)1(s)-1(ze,)-345(j)1(e)-1(n)1(o)-345(d)1(z)-1(w)28(on)28(y)-344(j)1(\\246)-1(cz)-1(a\\252y)-344(w)27(ci\\241\\273,)-344(bi\\252y)-344(p)-27(on)28(ur)1(ym)-345(g\\252ose)-1(m,)-344(w)27(o\\252a\\252y)-344(c)-1(osik)-344(w)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o)-294(p)-27(o)-28(c)27(h)1(m)27(u)1(rn)1(e)-1(,)-293(ku)-293(lasom)-294(i)-294(w)-294(d)1(ale)-294(zam)-1(glon)1(e)-1(,)-293(sk)28(o)27(wron)1(ki)-293(\\261)-1(p)1(iew)27(a\\252y)-293(nad)-293(p)-27(olam)-1(i)1(,)]TJ 0 -13.549 Td[(w)28(\\363z)-373(n)1(ie)-1(k)1(ie)-1(j)-371(zas)-1(kr)1(z)-1(yp)1(ia\\252,)-372(sz)-1(ar)1(pa\\252y)-372(si\\246)-372(c)27(h)1(or\\241)-28(gwie,)-372(c)28(hlu)1(pa\\252o)-372(b)1(\\252)-1(ot)1(o)-372(p)-28(o)-27(d)-372(n)1(ogam)-1(i,)-371(a)]TJ 0 -13.549 Td[(te)-334(b)-27(\\363ln)1(e)-1(,)-333(sie)-1(r)1(o)-28(c)-1(e)-333(p\\252acz)-1(e)-334(k)1(w)-1(i)1(li\\252y)-333(nieustann)1(ie.)]TJ 27.879 -13.55 Td[({)-476(\\377)-55(Mise)-1(r)1(e)-1(re)-476(me)-1(i)-475(De)-1(u)1(s)-1(\")-475({)-476(z)-1(a\\261pi)1(e)-1(w)28(a\\252)-476(z)-1(n)1(o)28(w)-1(u)-475(pr)1(ob)-28(osz)-1(cz,)-476(pr)1(z)-1(y)1(w)-1(t\\363r)1(z)-1(y\\252)-475(m)27(u)]TJ -27.879 -13.549 Td[(s\\252)-1(u)1(pski)-310(wraz)-310(z)-310(organ)1(is)-1(t\\241)-309(i)-310(k)28(o)28(w)27(alem,)-310(kt\\363r)1(e)-1(n)-309(trzyma\\252)-310(parasol)-310(n)1(ad)-310(d)1(obro)-27(dzie)-1(j)1(am)-1(i)1(,)]TJ 0 -13.549 Td[(gdy)1(\\273)-334(des)-1(zcz)-334(z)-334(no)28(w)28(a)-334(p)-27(okr)1(apia\\252.)]TJ 27.879 -13.549 Td[(I)-333(\\261piew)27(al)1(i)-333(tak)-332(s)-1(tr)1(as)-1(znie,)-333(tak)-332(rozpacz)-1(n)1(ie)-333(i)-333(tak)-332(j\\246kliwie,)-333(j)1(a\\273)-1(e)-333(\\252z)-1(y)-332(s)-1(i)1(\\246)-334(cisn\\246\\252y)83(,)]TJ -27.879 -13.549 Td[(zam)-1(iera\\252o)-469(se)-1(rce,)-469(a)-469(o)-28(c)-1(zy)-469(strw)28(o\\273)-1(on)1(e)-1(,)-469(o)-28(czy)-469(p)-28(ob)1(\\252\\241k)55(an)1(e)-470(w)-469(ni)1(e)-1(mo)-28(cy)-469(nies\\252)-1(y)-468(s)-1(i\\246)-469(w)27(e)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-346(i)-346(u)-346(tego)-347(n)1(ieba)-346(c)27(h)1(m)27(u)1(rnego)-346(\\273)-1(ebr)1(a\\252y)-346(z)-1(mi\\252o)28(w)27(an)1(ia.)-346(Tw)27(ar)1(z)-1(e)-346(blad)1(\\252y)83(,)-346(d)1(usz)-1(e)-346(j\\246\\252y)]TJ 0 -13.55 Td[(si\\246)-423(zw)-1(i)1(e)-1(r)1(a\\242)-423(w)-422(m)-1(\\246c)-1(e)-422(i)-422(lu)1(t)27(y)-422(d)1(ygot)-422(p)1(rz)-1(ejmo)28(w)27(a\\252,)-422(\\273e)-423(wzdyc)28(hali)-422(coraz)-422(c)-1(i\\246\\273)-1(ej,)-421(a)-423(j)1(u\\273)]TJ 0 -13.549 Td[(p)-27(oniekt\\363ry)-434(\\252zy)-435(ob)-27(c)-1(i)1(e)-1(ra\\252,)-434(to)-435(sz)-1(ept)1(a\\252)-435(pacierz)-435(p)-27(os)-1(in)1(ia\\252ymi)-435(w)28(argami,)-434(w)-435(piersi)-434(s)-1(i\\246)]TJ 0 -13.549 Td[(bi)1(\\252)-457(i)-457(k)56(a)-56(j)1(a\\252)-457(s)-1(k)1(rusz)-1(on)29(y)83(,)-456(z)-1(a\\261)-457(ws)-1(zys)-1(t)1(kic)27(h)-456(omro)-28(cz)-1(y\\252)-457(ci\\246\\273)-1(k)1(i,)-457(b)-27(e)-1(znad)1(z)-1(i)1(e)-1(j)1(n)28(y)-457(sm)27(u)1(te)-1(k)-456(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(w)27(ali)1(\\252)-1(a)-233(b)-27(e)-1(zgran)1(ic)-1(zna)-233(\\273a\\252o\\261)-1(\\242,)-233(\\273)-1(e)-233(kiej)-233(te)-234(d)1(ym)27(y)-233(gr)1(yz)-1(\\241ce)-234(sn)28(u\\252y)-233(si\\246)-234(p)-27(o)-233(nic)28(h)-233(b)-27(ole)-1(sne)]TJ 0 -13.549 Td[(me)-1(d)1(ytacje)-334(i)-333(j\\246ki)-333(zakrze)-1(p)1(\\252e)-334(w)-334(tr)1(w)27(o)-27(dze)-1(.)]TJ 27.879 -13.55 Td[(Jez)-1(u)1(,)-333(b\\241d\\271)-333(nam)-334(gr)1(z)-1(es)-1(zn)28(ym)-333(m)-1(i)1(\\252)-1(o\\261ciwy!)-333(Je)-1(zu!)]TJ 0 -13.549 Td[(O)-333(dol)1(o)-334(cz)-1(\\252o)28(wiek)27(o)28(w)28(a,)-333(dolo)-333(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iw)27(a!)]TJ 0 -13.549 Td[(A)-336(c)-1(\\363\\273e)-337(s)-1(\\241)-336(te)-337(ws)-1(zystkie)-337(zno)-55(jne)-336(trud)1(y?)-337(C\\363\\273e)-337(te)-1(n)-336(\\273yw)28(ot)-337(cz)-1(\\252o)28(wiec)-1(zy)83(,)-336(c)-1(o)-336(jak)28(o)]TJ -27.879 -13.549 Td[(\\261niegi)-333(s)-1(p)1(\\252yw)27(a)-333(b)-27(e)-1(z)-334(\\261lad)1(u,)-333(\\273)-1(e)-333(o)-334(n)1(im)-334(n)1(a)28(w)27(et)-334(d)1(z)-1(i)1(e)-1(ci)-333(ro)-28(d)1(z)-1(on)1(e)-334(nie)-333(przyp)-27(omn\\241?)]TJ 27.879 -13.549 Td[(\\233a\\252o\\261)-1(ci\\241)-333(jeno)-333(p\\252ak)56(ani)1(e)-1(m)-334(j)1(e)-1(n)1(o,)-333(c)-1(i)1(e)-1(rzpi)1(e)-1(n)1(ie)-1(m)-333(jeno..)1(.)]TJ 0 -13.55 Td[({)-333(I)-334(c\\363\\273)-1(e)-333(s)-1(\\241)-333(one)-334(szc)-1(z\\246)-1(\\261liw)28(o\\261)-1(ci,)-333(dob)1(ro\\261c)-1(ie,)-333(nad)1(z)-1(i)1(e)-1(j)1(e)-1(?)]TJ 0 -13.549 Td[(Cz)-1(cz)-1(y)1(m)-334(dy)1(m)-1(em)-1(,)-333(p)1(r\\363)-28(c)28(hn)1(ic)-1(\\241,)-333(mamid\\252em)-334(i)-333(z)-1(go\\252a)-333(ni)1(c)-1(zym...)]TJ 0 -13.549 Td[(A)-452(c)-1(\\363\\273e\\261)-453(to)-452(t)28(y)-452(s)-1(am,)-452(c)-1(z\\252o)28(w)-1(ieku)1(,)-452(kt\\363ry)-452(si\\246)-453(p)1(usz)-1(y)1(s)-1(z,)-452(a)-453(d)1(mie)-1(sz)-1(,)-452(a)-452(wyn)1(os)-1(isz)]TJ -27.879 -13.549 Td[(har)1(do)-333(p)-27(onad)-333(ws)-1(ze)-1(l)1(kie)-334(st)28(w)27(or)1(z)-1(enie?)]TJ 27.879 -13.549 Td[(T)28(ym)-302(w)-1(i)1(atrem)-302(jeno)-302(j)1(e)-1(ste)-1(\\261,)-302(co)-302(n)1(ie)-302(w)-1(i)1(ada,)-302(sk)56(\\241d)-302(p)1(rzyc)27(h)1(o)-28(dzi,)-301(nie)-302(wiad)1(a,)-302(p)-27(o)-302(c)-1(o)]TJ -27.879 -13.55 Td[(si\\246)-334(mie)-1(cie,)-333(i)-334(n)1(ie)-334(wiad)1(a,)-333(k)55(a)-55(j)-333(si\\246)-334(rozwie)-1(w)28(a...)]TJ 27.879 -13.549 Td[(I)-333(t)27(y)-333(si\\246)-334(masz)-334(pan)1(e)-1(m)-334(wsz)-1(y)1(s)-1(tki)1(e)-1(go)-333(\\261)-1(wiat)1(a,)-334(cz\\252)-1(o)28(wieku?..)1(.)]TJ 0 -13.549 Td[(A)-333(b)28(yc)27(h)-332(c)-1(i)-333(kto)-333(ra)-55(je)-334(d)1(a)28(w)27(a\\252)-333({)-334(op)1(u\\261c)-1(i)1(\\242)-334(je)-334(m)28(usisz)-1(.)]TJ 0 -13.549 Td[(Byc)27(h)-333(ci)-333(kto)-333(ws)-1(zys)-1(tk)1(ie)-334(mo)-28(ce)-334(da)28(w)28(a\\252)-334({)-333(\\261)-1(mier\\242)-334(ci)-333(je)-334(wyd)1(rze)-1(.)]TJ 0 -13.549 Td[(Byc)27(h)-333(ci)-333(kto)-333(rozum)-334(p)1(rzyz)-1(n)1(a\\252)-334(n)1(a)-56(j)1(wi\\246)-1(k)1(s)-1(zy)-333({)-334(p)1(r\\363)-28(c)27(h)1(nem)-334(ostani)1(e)-1(sz)-1(.)]TJ 0 -13.55 Td[(I)-333(nie)-334(p)1(rze)-1(mo\\273e)-1(sz)-334(doli)1(,)-333(m)-1(izeroto,)-333(ni)1(e)-334(pr)1(z)-1(ez)-1(wyci\\246)-1(\\273ysz)-334(\\261m)-1(ierci,)-333(ni)1(e)-1(..)1(.)]TJ 0 -13.549 Td[(Bo\\261)-338(ano)-337(b)-27(e)-1(zbr)1(onn)28(y)84(,)-337(s)-1(\\252ab)28(y)-337(i)-337(p)1(\\252on)28(y)-337(jak)28(o)-337(ten)-337(liste)-1(cz)-1(ek,)-337(kt\\363r)1(ym)-338(wiater)-337(\\273e)-1(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(o)-334(\\261wie)-1(cie.)]TJ 27.879 -13.549 Td[(Bo\\261)-384(ano,)-383(cz)-1(\\252o)28(wieku,)-383(w)-383(pazur)1(ac)27(h)-383(\\261m)-1(i)1(e)-1(rci,)-383(j)1(ak)28(o)-384(ten)-383(p)1(tas)-1(ze)-1(k)-383(z)-383(gniazda)-383(p)-27(o-)]TJ -27.879 -13.549 Td[(debr)1(an)28(y)84(,)-438(c)-1(o)-437(s)-1(e)-438(piu)1(k)56(a)-438(rado\\261ni)1(e)-1(,)-437(trze)-1(p)-27(o)-28(ce)-1(,)-438(p)1(rzy\\261piewuje,)-438(a)-438(n)1(ie)-438(wie)-1(,)-437(\\273)-1(e)-438(go)-438(wnet)]TJ 0 -13.549 Td[(zdrad)1(na)-333(r\\246k)55(a)-333(p)1(rz)-1(y)1(du)1(s)-1(i)-333(za)-334(gar)1(dzie)-1(l)-333(i)-333(lu)1(b)-28(ego)-333(\\273)-1(yw)28(ota)-333(z)-1(b)1(a)27(wi.)]TJ 27.879 -13.55 Td[(O)-333(du)1(s)-1(zo,)-333(p)-28(o)-333(c\\363\\273)-334(d\\271wigas)-1(z)-333(c)-1(z\\252o)27(wiec)-1(zego)-334(tr)1(up)1(a,)-334(p)-27(o)-333(c)-1(o?)]TJ 0 -13.549 Td[(T)83(ak)-419(ci)-420(an)1(o)-420(czu\\252)-420(n)1(ar\\363)-28(d)1(,)-419(tak)-419(c)-1(i)-419(me)-1(d)1(yto)28(w)27(a\\252)-419(i)-419(w)-420(sobie)-419(roz)-1(w)28(a\\273a\\252)-1(,)-419(a)-419(patr)1(z)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(sm)27(ut)1(nie)-312(p)-27(o)-312(z)-1(iemiac)27(h)-311(z)-1(i)1(e)-1(lon)29(yc)27(h)1(,)-312(w\\252\\363)-28(c)-1(zy\\252)-312(t\\246s)-1(k)1(n)28(ymi)-312(o)-28(cz)-1(ami)-312(p)-27(o)-312(\\261wie)-1(cie)-312(i)-312(wzdyc)28(ha\\252)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o)-499(z)-499(on)28(yc)28(h)-499(n)1(ie)-1(wyp)-27(o)28(wie)-1(d)1(z)-1(i)1(an)28(yc)27(h)-498(b)-27(ole)-1(\\253)1(,)-499(a\\273)-499(t)28(w)28(arz)-1(e)-499(k)56(amie)-1(n)1(ia\\252y)-499(i)-498(du)1(s)-1(ze)-499(s)-1(i\\246)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252y)84(.)]TJ 27.879 -13.55 Td[(Ale)-314(i)-314(to)-314(z)-1(ar)1(\\363)28(w)-1(n)1(o)-314(w)-1(i)1(e)-1(d)1(z)-1(ieli,)-313(c)-1(o)-314(jedy)1(na)-314(cz)-1(\\252o)28(wie)-1(k)28(o)28(w)28(a)-314(du)1(fno\\261\\242)-315(w)-314(P)28(an)1(a)-56(j)1(e)-1(zuso-)]TJ -27.879 -13.549 Td[(w)28(e)-1(j)-333(\\252asc)-1(e,)-333(a)-334(j)1(e)-1(d)1(yna)-333(uciec)-1(zk)56(a)-334(d)1(usz)-1(y)-333(w)-333(Je)-1(go)-333(\\261)-1(wi\\246t)28(ym)-334(mi\\252osierdziu)1(.)]TJ\nET\nendstream\nendobj\n1882 0 obj <<\n/Type /Page\n/Contents 1883 0 R\n/Resources 1881 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1881 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1887 0 obj <<\n/Length 9467      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(590)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(\\377)-56(S)1(e)-1(cun)1(dum)-333(m)-1(agn)1(am)-334(mise)-1(ri)1(c)-1(or)1(diam)-333(T)83(uam...\")]TJ 0 -13.549 Td[(Ci\\246\\273)-1(ki)1(e)-1(,)-444(\\252ac)-1(i\\253)1(s)-1(k)1(ie)-445(s)-1(\\252o)28(w)27(a)-444(pad)1(a\\252y)-445(ki)1(e)-1(j)-444(gru)1(dy)-444(przem)-1(ar)1(z)-1(\\252ej)-445(ziem)-1(i)1(,)-445(j)1(a\\273)-1(e)-445(b)-27(e)-1(z-)]TJ -27.879 -13.549 Td[(w)28(olnie)-448(p)-27(o)-28(c)27(h)28(y)1(lali)-448(g\\252o)28(wy)83(,)-447(jakb)28(y)-447(p)-28(o)-27(d)-448(n)1(ie)-1(u)1(b\\252agan)1(\\241)-448(k)28(o\\261)-1(b)1(\\241)-448(\\261)-1(mierc)-1(i)1(,)-448(ale)-448(s)-1(zli)-448(n)1(iep)-28(o-)]TJ 0 -13.549 Td[(ws)-1(tr)1(z)-1(y)1(m)-1(an)1(ie)-1(;)-393(s)-1(zli)-394(kw)28(ard)1(z)-1(i)-394(a)-394(zrez)-1(ygn)1(o)27(w)28(ani)1(,)-394(s)-1(zarzy)-394(i)-394(mo)-28(c)-1(n)1(i)-394(kiej)-394(te)-394(g\\252az)-1(y)-394(wid)1(ne)]TJ 0 -13.549 Td[(na)-406(mie)-1(d)1(z)-1(ac)28(h,)-406(goto)28(wi)-406(ju\\273)-406(na)-406(w)-1(sz)-1(y)1(s)-1(tk)28(o)-406(a)-406(nieul\\246kli)1(,)-407(u)1(gorom)-407(i)-406(zaraze)-1(m)-406(t)27(y)1(m)-407(bu)1(j-)]TJ 0 -13.55 Td[(n)28(ym,)-424(okwie)-1(con)28(ym)-425(p)-27(olom)-425(p)-27(o)-28(d)1(obni)1(,)-425(i)-424(t)28(ym)-425(dr)1(z)-1(ew)27(om)-425(r\\363)28(wni)-424(w)-425(sile)-425(i)-425(k)1(ruc)28(ho\\261c)-1(i)-424({)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(om,)-378(w)-379(k)1(t\\363re)-379(p)1(ioru)1(n)-378(m)-1(\\363g\\252)-378(trzasn\\241\\242)-379(leda)-378(c)27(h)29(w)-1(i)1(la)-379(i)-378(w)-378(r\\246c)-1(e)-379(\\261mie)-1(r)1(c)-1(i)-378(p)-27(o)-28(da\\242,)-378(a)]TJ 0 -13.549 Td[(one)-333(hard)1(o)-333(pn\\241)-333(si\\246)-334(ku)-333(s\\252o\\253cu)-333(i)-333(\\261)-1(p)1(iew)27(a)-55(j\\241)-333(g\\252\\246)-1(b)-27(ok)56(\\241,)-334(r)1(adosn\\241)-333(pie\\261\\253)-333(\\273)-1(ycia..)1(.)]TJ 27.879 -13.549 Td[(Szli)-458(wsi\\241)-458(c)-1(a\\252\\241)-458(c)-1(i\\273bi)1(\\241c)-459(si\\246)-459(i)-458(pr)1(z)-1(ep)28(yc)28(ha)-55(j\\241c,)-458(ale)-459(k)56(a\\273)-1(d)1(e)-1(n)-457(tak)-458(b)28(y\\252)-458(z)-1(atop)1(ion)28(y)]TJ -27.879 -13.549 Td[(w)-366(sm)27(u)1(tk)55(ac)28(h,)-365(\\273)-1(e)-366(j)1(akb)28(y)-365(s)-1(ze)-1(d)1(\\252)-366(sam)-366(w)-366(pu)1(s)-1(tce)-366(niez)-1(miern)1(e)-1(j)-365(i)-366(op)1(usz)-1(cze)-1(n)1(iu,)-365(a)-366(k)56(a\\273)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(zapatrzy\\252)-328(si\\246)-328(gdzie)-1(sik)-328(i)-327(jakb)28(y)-327(widzia\\252)-328(pr)1(z)-1(ez)-329(o)-27(c)-1(zy)-328(zas)-1(zklon)1(e)-329(\\252zam)-1(i)-327(o)-56(jc\\363)28(w)-328(s)-1(w)28(oic)27(h)1(,)]TJ 0 -13.55 Td[(dziad)1(\\363)27(w)-324(i)-324(p)1(radziad)1(\\363)27(w,)-324(n)1(ie)-1(sion)28(y)1(c)27(h)-324(tam,)-324(na)-324(sm)-1(\\246tarz,)-324(j)1(u\\273)-325(wid)1(n)28(y)-324(p)1(rz)-1(ez)-325(gr)1(ub)-27(e)-325(p)1(nie)]TJ 0 -13.549 Td[(top)-27(oli..)1(.)]TJ 27.879 -13.549 Td[(Dzw)27(on)28(y)-454(w)27(ci\\241\\273)-455(bi\\252y)-454(i)-455(p)-27(on)28(ur)1(a)-455(pie\\261)-1(\\253)-454(h)28(u)1(c)-1(za\\252a)-455(c)-1(or)1(az)-456(j)1(\\246)-1(kl)1(iwie)-1(j)1(,)-455(sm)-1(\\246tarz)-455(ju)1(\\273)]TJ -27.879 -13.549 Td[(b)28(y\\252)-407(niedal)1(e)-1(k)28(o,)-407(wyrasta\\252)-408(ze)-408(z)-1(b)-27(\\363\\273)-408(k)28(\\246)-1(p)1(ami)-408(d)1(rze)-1(w,)-407(krzy\\273)-1(\\363)28(w)-408(i)-407(mogi\\252,)-408(a)-407(z)-1(d)1(a)28(w)27(a\\252)-407(s)-1(i\\246)]TJ 0 -13.549 Td[(ot)28(wie)-1(r)1(a\\242)-1(,)-316(kieb)28(y)-317(ten)-316(s)-1(tr)1(as)-1(zn)28(y)84(,)-317(ni)1(gdy)-317(n)1(ie)-317(z)-1(ap)-27(e\\252)-1(n)1(ion)28(y)-316(d\\363\\252,)-316(w)-318(k)1(t\\363ren)-317(z)-317(w)28(olna)-317(a)-316(nie{)]TJ 0 -13.55 Td[(p)-27(o)27(wstrzymanie)-366(s)-1(p)1(\\252yw)27(a)-366(ca\\252y)-366(\\261)-1(wiat)1(,)-366(\\273)-1(e)-366(ju)1(\\273)-367(n)1(ie)-1(j)1(e)-1(d)1(nem)27(u)-365(s)-1(i\\246)-366(widzia\\252o,)-366(jak)28(o)-366(w)-366(t)28(ym)]TJ 0 -13.549 Td[(zades)-1(zc)-1(zon)28(ym)-421(p)-27(o)27(wietrzu)-421(i)-421(ze)-421(s)-1(tr)1(on)-421(ws)-1(zystkic)27(h)-420(bi)1(j\\241)-421(dzw)28(on)28(y)83(,)-421(j)1(arz\\241)-421(s)-1(i)1(\\246)-422(\\261w)-1(i)1(at\\252a,)]TJ 0 -13.549 Td[(cz)-1(erni)1(e)-1(j)1(\\241)-401(rozwiane)-401(c)27(h)1(or\\241)-28(gwie)-401(i)-400(p\\252yn)1(\\241)-401(\\261)-1(p)1(iew)27(an)1(ia,)-401(\\273e)-401(z)-401(k)55(a\\273dej)-400(c)27(ha\\252u)1(p)28(y)-401(wyn)1(os)-1(z\\241)]TJ 0 -13.549 Td[(tru)1(mn)28(y)83(,)-278(\\273e)-279(w)-1(szys)-1(tk)1(im)-1(i)-278(d)1(rogami)-279(ci\\241)-28(gn)1(\\241)-279(\\273a\\252obn)1(e)-279(p)-28(o)-28(c)28(ho)-28(d)1(y)83(,)-278(a)-278(k)55(a\\273den)-278(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-278(p\\252a-)]TJ 0 -13.549 Td[(cz)-1(e)-225(k)28(ogo\\261,)-224(z)-1(a)28(w)27(o)-27(dzi,)-224(a)-225(tak)-224(sz)-1(lo)-27(c)27(ha,)-224(j)1(a\\273)-1(e)-225(ws)-1(zystkie)-225(n)1(ieb)-28(o)-224(i)-224(z)-1(iemia)-225(wzbiera)-224(\\273)-1(a\\252osn)28(ym)]TJ 0 -13.55 Td[(j\\246kiem)-334(i)-333(sp\\252yw)28(a)-333(s)-1(zm)-1(erem)-334(ni)1(e)-1(u)1(s)-1(tan)1(n)28(yc)28(h,)-333(gorzkic)28(h)-333(jak)-333(pi)1(o\\252)-1(u)1(n)-333(\\252e)-1(z...)]TJ 27.879 -13.549 Td[(P)28(o)-28(c)28(h\\363)-28(d)-410(j)1(u\\273)-411(skr)1(\\246)-1(ca\\252)-411(na)-410(dr)1(\\363\\273)-1(k)28(\\246)-411(k)1(u)-410(s)-1(m\\246)-1(tar)1(z)-1(o)28(wi,)-410(kiej)-410(go)-411(d)1(op)-27(\\246)-1(dzi\\252)-410(dzie)-1(d)1(z)-1(i)1(c)-1(,)]TJ -27.879 -13.549 Td[(wysiad\\252)-284(z)-285(p)-27(o)28(w)27(ozu)-284(i)-284(p)-27(os)-1(ze)-1(d)1(\\252)-284(p)-28(ob)-27(ok)-284(tru)1(m)-1(n)29(y)-284(w)-285(srogiej)-284(ciasno)-28(cie,)-284(gdy\\273)-284(dr\\363\\273k)56(a)-284(b)28(y\\252a)]TJ 0 -13.549 Td[(w)28(\\241s)-1(k)56(a,)-333(g\\246)-1(sto)-333(brz\\363zk)55(ami)-333(obsadzona)-333(i)-333(z)-1(b)-27(o\\273a)-334(sta\\252y)-333(z)-1(e)-334(stron)-333(ob)1(u.)]TJ 27.879 -13.549 Td[(A)-340(kiej)-340(k)1(s)-1(i\\246\\273a)-340(s)-1(k)28(o\\253czyli)-340(\\261piew)28(a\\242)-1(,)-340(Domin)1(ik)28(o)28(w)27(a)-340(tr)1(z)-1(yma)-55(j\\241ca)-340(s)-1(i\\246)-340(Jagn)28(y)84(,)-340(z)-1(gar)1(-)]TJ -27.879 -13.55 Td[(bi)1(ona)-333(i)-333(na)-333(wp)-28(\\363\\252)-333(\\261)-1(lepa,)-333(za)28(w)-1(i)1(e)-1(d)1(\\252a)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u:)-333(\\377)-56(K)1(to)-334(si\\246)-334(w)-333(opiek)28(\\246)-1(\".)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-298(co)-298(p)1(rzywt\\363rz)-1(y)1(li)-298(skw)28(apn)1(ie)-298(i)-298(gor\\241co,)-297(jakb)28(y)-297(c)-1(zepia)-55(j\\241c)-298(s)-1(i)1(\\246)-299(zes)-1(tr)1(ac)27(han)29(y-)]TJ -27.879 -13.549 Td[(mi)-333(duszam)-1(i)-333(tej)-333(pie\\261ni)-333(s)-1(erd)1(e)-1(cz)-1(n)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(I)-333(ju\\273)-333(tak)-333(roz\\261)-1(p)1(ie)-1(w)28(ani)1(,)-334(a)-333(p)-27(e)-1(\\252n)1(i)-334(j)1(ak)28(o)28(w)27(ej\\261)-334(d)1(uf)1(no\\261c)-1(i)-333(w)28(e)-1(sz)-1(l)1(i)-334(n)1(a)-333(s)-1(m\\246)-1(tar)1(z)-1(.)]TJ 0 -13.549 Td[(Co)-485(na)-55(jpi)1(e)-1(r)1(w)-1(si)-485(gosp)-28(o)-28(d)1(arze)-486(d)1(\\271)-1(wign)1(\\246)-1(li)-484(trumn)1(\\246)-1(,)-485(a)-485(n)1(a)27(w)28(et)-485(s)-1(am)-485(dzie)-1(d)1(z)-1(i)1(c)-486(j)1(\\241\\252)]TJ -27.879 -13.55 Td[(ws)-1(p)1(iera\\242)-327(w)-327(p)-28(o\\261ro)-28(d)1(ku,)-326(i)-327(p)-27(onie\\261li)-327(j)1(\\241)-327(\\273)-1(\\363\\252t)28(ymi)-327(d)1(ro\\273ynami)-327(wskro\\261)-327(okwiec)-1(on)28(y)1(c)27(h)-326(m)-1(o-)]TJ 0 -13.549 Td[(gi\\252,)-324(tr)1(a)28(w)-325(i)-323(krzy\\273\\363)27(w,)-324(za)-324(k)56(apli)1(c)-1(\\246,)-324(k)56(a)-56(j)-323(w)-324(g\\241s)-1(zc)-1(zac)27(h)-323(le)-1(szc)-1(zyn)-324(i)-323(bz\\363)27(w)-324(cz)-1(ek)56(a\\252)-324(ju\\273)-324(gr\\363b)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(\\273o)-334(wyb)1(ran)28(y)84(.)]TJ 27.879 -13.549 Td[(St)1(ras)-1(zne)-333(p\\252acz)-1(e)-334(i)-333(kr)1(z)-1(yk)1(i)-333(z)-1(atar)1(ga\\252)-1(y)-333(p)-27(o)28(wie)-1(tr)1(z)-1(em.)]TJ 0 -13.549 Td[(Chor)1(\\241)-28(gwie)-365(i)-365(\\261wiat\\252a)-365(ok)28(ol)1(i\\252y)-365(j)1(am)-1(\\246)-365(g\\252\\246b)-27(ok)55(\\241,)-364(nar)1(\\363)-28(d)-364(s)-1(i)1(\\246)-365(s)-1(k\\252\\246bi\\252)-364(i)-365(cisn\\241\\252)-364(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(zie)-1(r)1(a)-56(j)1(\\241c)-334(trw)28(o\\273)-1(n)1(ie)-334(w)-333(te)-1(n)-333(d)1(\\363\\252)-334(\\273\\363\\252ta)28(w)-1(y)-333(i)-333(p)1(ust)28(y)83(..)1(.)]TJ 27.879 -13.55 Td[(A)-316(k)1(ie)-1(d)1(y)-316(p)1(rze)-1(\\261piew)27(al)1(i)-316(j)1(e)-1(sz)-1(cz)-1(e)-316(co\\261)-317(n)1(iec)-1(o\\261,)-316(p)1(rob)-27(os)-1(zc)-1(z)-316(stan\\241\\252)-316(n)1(a)-316(ku)1(pie)-316(wyw)28(a-)]TJ -27.879 -13.549 Td[(lon)1(e)-1(go)-333(pi)1(ac)27(h)28(u)1(,)-334(o)-27(dwr\\363)-28(ci\\252)-333(s)-1(i\\246)-333(i)-333(rz)-1(ek\\252)-333(grzm)-1(i)1(\\241c)-1(o:)]TJ 27.879 -13.549 Td[({)-333(Naro)-28(d)1(z)-1(ie)-333(c)27(hr)1(z)-1(e\\261)-1(cij)1(a\\253ski!)-333(Naro)-28(d)1(z)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252o)-490(z)-490(nag\\252a,)-490(j)1(e)-1(n)1(o)-490(dzw)27(on)29(y)-490(j\\246cz)-1(a\\252y)-490(z)-490(o)-28(d)1(dali,)-489(a)-490(J\\363zk)55(a,)-489(opasa)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(r\\241cz)-1(y)1(nami)-333(o)-56(j)1(c)-1(o)28(w)27(\\241)-333(tru)1(mn\\246)-334(za)28(w)27(o)-28(d)1(z)-1(i)1(\\252)-1(a)-333(rzew)-1(l)1(iwie)-1(,)-333(n)1(a)-334(n)1(ic)-334(n)1(ie)-334(bacz\\241c)-1(.)]TJ 27.879 -13.55 Td[(Za\\261)-377(p)1(rob)-27(os)-1(zc)-1(z)-376(p)-28(o)-27(c)-1(i\\241)-27(gn\\241\\252)-376(nose)-1(m)-376(z)-377(tab)1(akiery)84(,)-376(kic)27(h)1(n\\241\\252)-376(raz)-376(i)-376(dru)1(gi,)-376(a)-376(p)-27(oto-)]TJ -27.879 -13.549 Td[(cz)-1(ywsz)-1(y)-333(za\\252z)-1(a)28(wion)28(ymi)-333(o)-28(cz)-1(ami)-333(rze)-1(k\\252)-333(don)1(o\\261)-1(n)1(ie)-1(:)]TJ\nET\nendstream\nendobj\n1886 0 obj <<\n/Type /Page\n/Contents 1887 0 R\n/Resources 1885 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1885 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1890 0 obj <<\n/Length 8358      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(591)]TJ -330.353 -35.866 Td[({)-333(B)-1(r)1(ac)-1(ia,)-333(a)-333(k)28(og\\363\\273)-334(to)-333(c)27(h)1(o)27(w)28(acie)-334(dzisia)-56(j)1(,)-333(k)28(ogo?)]TJ 0 -13.549 Td[(\\377)-56(M)1(ac)-1(i)1(e)-1(j)1(a)-334(Boryn)1(\\246)-1(!)1(\")-334({)-333(p)-27(o)27(wiad)1(ac)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(A)-395(ja)-395(w)28(am)-396(m\\363)28(wi\\246)-1(,)-395(\\273e)-396(i)-394(pierws)-1(ze)-1(go)-395(gosp)-27(o)-28(dar)1(z)-1(a,)-395(i)-395(p)-27(o)-28(cz)-1(ciw)28(e)-1(go)-395(cz)-1(\\252o)28(wie)-1(k)56(a,)-395(i)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)27(ego)-277(k)55(atol)1(ik)56(a)-277(c)27(ho)28(w)28(ac)-1(i)1(e)-1(..)1(.)-277(Zna\\252em)-278(go)-277(b)-27(o)28(w)-1(i)1(e)-1(m)-277(o)-28(d)-277(l)1(at)-277(i)-277(za\\261)-1(wiad)1(c)-1(zam)-1(,)-276(,)-277(jak)28(o)-277(\\273y\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(k\\252adni)1(e)-1(,)-322(Boga)-323(c)28(h)28(w)27(al)1(i\\252,)-322(s)-1(p)-27(o)28(w)-1(iad)1(a\\252)-323(si\\246)-323(i)-322(k)28(om)28(uni)1(k)28(o)27(w)28(a\\252,)-322(a)-323(b)1(ie)-1(d)1(ot\\246)-323(ws)-1(p)-27(omaga\\252.)]TJ 27.879 -13.55 Td[(M\\363)28(wi\\246)-334(w)28(am:)-334(wsp)-28(omaga\\252!)-333({)-334(p)-27(o)28(wt\\363rzy\\252)-334(ci\\246\\273)-1(k)28(o)-333(dy)1(c)27(ha)-55(j\\241c.)]TJ 0 -13.549 Td[(P\\252acz)-1(e)-256(j\\246\\252y)-256(kwil)1(i\\242)-257(d)1(ok)28(o\\252a)-256(i)-256(wz)-1(d)1(yc)27(h)28(y)-255(rw)28(a\\252)-1(y)-255(s)-1(i)1(\\246)-257(coraz)-256(g\\246)-1(\\261c)-1(iej,)-255(gdy)-256(n)1(abr)1(a)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(p)-27(o)27(wietrza)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(zno)28(wu,)-333(j)1(e)-1(n)1(o)-334(co)-334(\\273a\\252o\\261)-1(l)1(iwie)-1(j)1(:)]TJ 27.879 -13.549 Td[({)-333(I)-334(p)-27(omar\\252)-334(c)28(h)28(ud)1(z)-1(i)1(ac)-1(ze)-1(k,)-333(p)-27(omar\\252!)]TJ 0 -13.549 Td[(\\221mier\\242)-283(go)-283(sobi)1(e)-284(wyb)1(ra\\252a,)-282(jak)28(o)-283(wil)1(k)-283(wyb)1(ie)-1(r)1(a)-283(ze)-284(stad)1(a)-283(na)-55(jt\\252u)1(s)-1(tsz)-1(ego)-283(b)1(arana)]TJ -27.879 -13.549 Td[(i)-333(w)-334(b)1(ia\\252y)-333(dzie)-1(\\253)-332(na)-333(w)-1(szys)-1(tk)1(ic)27(h)-333(o)-27(c)-1(zac)27(h,)-333(a)-333(ni)1(kt)-333(m)27(u)-333(n)1(ie)-334(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(z)-1(i.)]TJ 27.879 -13.55 Td[(Jak)28(o)-326(pi)1(orun)-325(bij)1(e)-327(w)-326(d)1(rz)-1(ew)28(o)-327(wyn)1(ios\\252e)-1(,)-326(\\273e)-327(p)1(ada)-326(roz\\252up)1(ane,)-326(tak)-326(on)-326(p)1(ad\\252)-326(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(srog\\241)-333(k)28(os)-1(\\241)-333(\\261)-1(mierci.)]TJ 27.879 -13.549 Td[(Ale)-334(p)-27(omar\\252)-333(nie)-334(wsz)-1(y)1(s)-1(tek!)-333({)-333(jak)-333(m\\363)27(wi)-333(Pi)1(s)-1(mo)-333(\\261)-1(wi\\246te)-1(.)]TJ 0 -13.549 Td[(Bo)-346(oto)-346(s)-1(tan)1(\\241\\252)-346(s)-1(e)-346(ten)-346(w)28(\\246)-1(d)1(ro)28(w)-1(n)1(ik)-346(p)1(rze)-1(d)-345(w)-1(r)1(otami)-346(ra)-55(ju,)-345(pu)1(k)55(a)-346(i)-345(s)-1(k)56(amle)-347(\\273a\\252o-)]TJ -27.879 -13.549 Td[(\\261nie,)-333(a\\273)-334(\\261)-1(wi\\246t)28(y)-333(Pietr)-333(zap)28(yta:)]TJ 27.879 -13.55 Td[({)-333(Kt\\363\\273e)-1(\\261)-334(to)-333(i)-333(cz)-1(ego)-334(p)-27(otrze)-1(b)1(uj)1(e)-1(sz)-1(?)]TJ 0 -13.549 Td[({)-333(B)-1(or)1(ynam)-333(z)-334(Lipi)1(e)-1(c)-334(i)-333(mi\\252osie)-1(r)1(dzia)-333(P)28(a\\253skiego)-334(p)1(rosz)-1(\\246...)]TJ 0 -13.549 Td[({)-333(T)83(ak)-333(c)-1(i)-333(to)-333(ju)1(\\273)-334(br)1(at)28(y)-334(d)1(opi)1(e)-1(k\\252y)84(,)-333(\\273)-1(e\\261)-334(si\\246)-334(zb)28(y\\252)-333(\\273)-1(yw)28(ota,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-423(Wsz)-1(y)1(s)-1(tk)28(o)-423(p)-27(o)28(w)-1(i)1(e)-1(m)-423({)-423(rze)-1(cze)-424(Maciej)-423({)-423(j)1(e)-1(n)1(o)-423(oz)-1(ewrzyjcie)-423(w)-1(r)1(otnie,)-423(\\261wi\\246)-1(t)28(y)]TJ -27.879 -13.549 Td[(Pi)1(e)-1(tr)1(z)-1(e,)-316(b)29(yc)27(h)-315(mnie)-316(ozgrza\\252)-1(o)-315(c)27(h)1(o)-28(\\242)-316(\\271)-1(d)1(z)-1(iebk)28(o)-315(P)28(a\\253skie)-316(zmi\\252o)28(w)27(ani)1(e)-1(,)-315(b)-27(om)-316(prze)-1(marz\\252)]TJ 0 -13.55 Td[(na)-333(l\\363)-27(d)-333(w)-334(onej)-333(tu)1(\\252ac)-1(zc)-1(e)-334(ziem)-1(skiej.)]TJ 27.879 -13.549 Td[(\\221wi\\246t)28(y)-333(Pietr)-333(ozw)27(ar\\252)-333(ni)1(e)-1(co,)-333(ale)-334(n)1(ie)-334(pu)1(s)-1(zcz)-1(a)-333(go)-334(j)1(e)-1(sz)-1(cze)-334(i)-333(rze)-1(cz)-1(e:)]TJ 0 -13.549 Td[({)-280(A)-280(je)-1(n)1(o)-280(nie)-280(\\252)-1(\\273yj)1(,)-280(b)-28(o)-280(tu)-280(n)1(ik)28(ogo)-280(nie)-280(o)-28(c)-1(y)1(ganisz)-1(.)-280(M)1(\\363)27(w,)-280(d)1(usz)-1(o,)-280(\\261m)-1(ia\\252o,)-280(cz)-1(em)27(u)1(\\261)]TJ -27.879 -13.549 Td[(to)-333(uciek\\252a)-334(ze)-334(zie)-1(mie?...)]TJ 27.879 -13.549 Td[(A)-250(Maciej)-250(r)1(ymn\\241\\252)-250(na)-250(k)28(ol)1(ana,)-250(\\273e)-250(to)-250(\\261)-1(p)1(iew)27(an)1(ia)-250(jan)1(ie)-1(l)1(s)-1(ki)1(e)-251(d)1(os)-1(\\252ysza\\252)-251(i)-249(dzw)27(on)1(ki,)]TJ -27.879 -13.55 Td[(jak)1(b)28(y)-333(na)-333(P)28(o)-28(d)1(nies)-1(i)1(e)-1(n)1(ie)-1(,)-333(a)-333(o)-28(d)1(rze)-1(cz)-1(e)-334(z)-333(p\\252acz)-1(em)-1(:)]TJ 27.879 -13.549 Td[({)-247(Pra)28(wd\\246)-247(p)-28(o)28(wiem)-248(kiej)-247(na)-247(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)1(;)-248(a)-247(to)-247(nie)-247(p)-28(or)1(e)-1(d)1(z)-1(i\\252em)-248(d)1(\\252)-1(u)1(\\273)-1(ej)-247(wytrzyma\\242)]TJ -27.879 -13.549 Td[(na)-236(z)-1(iem)-1(i)1(,)-237(b)-27(o)-237(tam)-237(ju\\273)-237(lu)1(dzie)-237(jak)28(o)-237(te)-237(wilki)-236(nasta)-56(j)1(\\241)-237(na)-237(sie)-1(b)1(ie,)-237(b)-27(o)-237(tam)-237(ju\\273)-237(j)1(e)-1(n)1(o)-237(s)-1(w)28(ary)84(,)]TJ 0 -13.549 Td[(k\\252\\363tn)1(ie)-1(,)-384(a)-385(obraza)-385(b)-27(os)-1(k)56(a...)-384(Nie)-386(lu)1(dzie)-385(to,)-385(\\261w)-1(i)1(\\246)-1(t)28(y)-385(P)1(ie)-1(tr)1(z)-1(e,)-385(n)1(ie)-386(b)-27(oskie)-385(s)-1(t)28(w)28(orz)-1(eni)1(a,)]TJ 0 -13.549 Td[(a)-362(jeno)-362(te)-363(psy)-362(w\\261)-1(cie)-1(k)1(\\252e)-363(i)-362(te)-363(s)-1(wyn)1(ie)-363(smro)-28(d)1(liw)28(e)-1(.)-362(I)-363(t)1(ak)-363(j)1(e)-1(st)-362(\\271)-1(le)-362(na)-362(\\261)-1(wiec)-1(i)1(e)-1(,)-362(\\273e)-363(i)-362(nie)]TJ 0 -13.55 Td[(wyp)-27(o)27(wiedzie\\242)-334(ws)-1(zystkiego...)]TJ 27.879 -13.549 Td[(Zagin)1(\\241\\252)-337(wsz)-1(elki)-335(p)-28(os\\252uc)27(h)1(,)-336(zagin\\246\\252a)-336(p)-28(o)-27(c)-1(zc)-1(i)1(w)27(o\\261\\242)-1(,)-336(zagin)1(\\246)-1(\\252o)-336(mi\\252os)-1(i)1(e)-1(r)1(dzie)-1(,)-335(brat)]TJ -27.879 -13.549 Td[(p)-27(o)27(wsta)-56(j)1(e)-226(n)1(a)-226(b)1(rata,)-225(d)1(z)-1(i)1(e)-1(ci)-225(na)-225(o)-55(jc\\363)27(w,)-225(\\273on)28(y)-225(na)-225(m\\246\\273)-1(\\363)28(w,)-225(s)-1(\\252u)1(ga)-226(n)1(a)-225(pan)1(a...)-225(n)1(ie)-226(u)1(s)-1(zan)28(uj)1(\\241)]TJ 0 -13.549 Td[(ju)1(\\273)-334(n)1(ic)-1(ze)-1(go,)-333(n)1(i)-333(w)-1(i)1(e)-1(ku)1(,)-333(ni)-333(ur)1(z)-1(\\246du)1(,)-333(ni)-333(na)28(w)28(e)-1(t)-333(ksi\\246dza...)]TJ 27.879 -13.549 Td[(Z\\252y)-331(zapano)28(w)28(a\\252)-331(w)-332(serc)-1(ac)28(h,)-331(a)-330(p)-28(o)-28(d)-330(jego)-331(pr)1(z)-1(ew)27(o)-27(de)-1(m)-331(r)1(oz)-1(p)1(us)-1(t)1(a)-331(a)-331(pij)1(a\\253st)28(w)27(o,)-331(a)]TJ -27.879 -13.549 Td[(z\\252)-1(o\\261cie)-334(kr)1(z)-1(ew)-1(i)1(\\241)-334(si\\246)-334(coraz)-334(b)1(arze)-1(j)1(.)]TJ 27.879 -13.55 Td[(Wsz)-1(\\246dy)-333(\\252a)-55(jdu)1(s)-334(na)-333(\\252a)-56(j)1(du)1(s)-1(i)1(e)-1(,)-333(a)-333(\\252a)-56(jd)1(use)-1(m)-333(p)-28(ogan)1(ia...)]TJ 0 -13.549 Td[(Wsz)-1(\\246dy)-384(j)1(e)-1(n)1(o)-384(c)27(h)28(yt)1(ro\\261)-1(cie,)-384(os)-1(zuk)56(a\\253)1(s)-1(t)28(w)28(a,)-384(s)-1(rogi)1(e)-385(u)1(c)-1(iski)-384(a)-384(z\\252)-1(o)-27(dzie)-1(j)1(s)-1(t)28(w)28(a,)-384(\\273)-1(e)-384(c)-1(o)]TJ -27.879 -13.549 Td[(mas)-1(z,)-333(z)-334(gar\\261c)-1(i)-333(n)1(ie)-334(p)-27(opu)1(\\261)-1(\\242,)-333(b)-28(o)-333(c)-1(i)-333(wyd)1(r\\241.)]TJ 27.879 -13.549 Td[(Byc)27(h)-333(n)1(a)-56(j)1(le)-1(p)1(s)-1(z\\241)-333(\\252)-1(\\241k)28(\\246,)-333(a)-333(w)-1(y)1(pas\\241)-334(i)-333(stratu)1(j\\241.)]TJ 0 -13.549 Td[(Byc)27(h)-333(c)28(ho)-28(cia\\273)-334(t\\246)-333(s)-1(ki)1(bk)28(\\246,)-334(a)-333(z)-334(cud)1(z)-1(ego)-333(przy)28(orz\\241.)]TJ 0 -13.55 Td[(By\\261)-334(n)1(a)27(w)28(e)-1(t)-333(ku)1(r\\246)-334(p)1(u\\261c)-1(i)1(\\252)-334(z)-334(ob)-27(ej\\261c)-1(ia,)-333(p)1(rzyc)27(h)28(wyc\\241)-334(k)1(ie)-1(j)-332(te)-334(wilki)1(.)]TJ 0 -13.549 Td[(Ka)28(w)28(a\\252)-1(k)56(a)-376(\\273e)-1(l)1(a)-1(za)-376(ni)1(e)-377(p)1(rze)-1(p)-27(om)-1(n)1(ij)-375(ni)-376(p)-27(os)-1(tr)1(onk)56(a,)-376(c)28(ho)-28(\\242b)28(y)-376(b)28(y)1(\\252)-1(y)-375(ks)-1(i)1(\\246)-1(\\273e)-1(,)-375(b)-28(o)-376(n)1(ie)]TJ\nET\nendstream\nendobj\n1889 0 obj <<\n/Type /Page\n/Contents 1890 0 R\n/Resources 1888 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1888 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1893 0 obj <<\n/Length 9424      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(592)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pr)1(z)-1(epu)1(s)-1(zc)-1(z\\241)-333(i)-333(ukr)1(adn\\241.)]TJ 27.879 -13.549 Td[(Gor)1(z)-1(a\\252k)28(\\246)-369(jeno)-369(p)1(ij\\241,)-369(r)1(oz)-1(p)1(ust\\246)-370(czyni\\241)-369(i)-368(w)-370(s\\252u\\273bi)1(e)-370(Bo\\273)-1(ej)-369(ca\\252kiem)-370(si\\246)-369(opu)1(s)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(a)-55(j\\241,)-407(p)-28(ogan)29(y)-408(te)-408(p)1(ie)-1(skie)-408(i)-407(c)27(h)1(rystob)1(ije,)-408(\\273e)-408(dr)1(ugie)-408(\\233yd)1(y)83(,)-407(a)-407(s)-1(tokr)1(o)-28(\\242)-408(p)-27(o)-28(c)-1(zciws)-1(ze)-408(i)]TJ 0 -13.549 Td[(b)-27(ogob)-28(o)-55(jn)1(ie)-1(j)1(s)-1(ze.)]TJ 27.879 -13.549 Td[({)-333(I)-334(to)-333(w)-334(l)1(ip)-27(e)-1(c)27(k)1(ie)-1(j)-332(para\\014)1(i)-333(tak)-333(s)-1(i\\246)-333(dzie)-1(j)1(e)-1(?)-333({)-334(p)1(rze)-1(r)1(w)27(a\\252)-333(m)27(u)-333(\\261wi\\246)-1(t)28(y)-333(P)1(ie)-1(tr)1(.)]TJ 0 -13.55 Td[({)-333(Indziej)-333(te\\273)-334(nie)-333(le)-1(p)1(iej,)-333(ale)-334(j)1(u\\273)-334(w)-333(lip)-27(ec)27(kiej)-333(na)-55(jgor)1(z)-1(ej.)]TJ 0 -13.549 Td[(A)-385(\\261w)-1(i)1(\\246)-1(t)28(y)-385(P)1(ie)-1(tr)-384(j\\241\\252)-385(w)-386(p)1(alce)-386(tr)1(z)-1(ask)55(a\\242,)-385(b)1(rwie)-386(sro\\273y\\242,)-385(o)-28(c)-1(zami)-385(to)-28(cz)-1(y\\242)-385(i)-385(rze)-1(k)1(\\252)]TJ -27.879 -13.549 Td[(wytrz\\241c)27(h)1(a)-56(j)1(\\241c)-334(pi)1(\\246)-1(\\261c)-1(i\\241)-333(ku)-333(ziem)-1(i)1(:)]TJ 27.879 -13.549 Td[({)-346(T)83(aki)1(e)-1(\\261ta)-346(to,)-346(Li)1(p)-28(cz)-1(ak)1(i?)-346(T)83(akie!)-346(A)-346(zb)-27(\\363)-56(je)-346(ob)1(m)-1(ierz\\252e)-1(,)-345(a)-346(p)-28(ogan)1(in)28(y)-345(gorsz)-1(e)-346(o)-28(d)]TJ -27.879 -13.549 Td[(Niem)-1(c\\363)28(w!)-348(A)-349(t)1(o)-349(r)1(oki)-348(mac)-1(ie)-348(dob)1(re,)-348(z)-1(iemie)-349(r)1(o)-28(dza)-56(j)1(ne,)-348(a)-348(pa\\261nik)1(i,)-348(a)-348(\\252\\241ki,)-348(a)-348(b)-27(oru)-348(p)-27(o)]TJ 0 -13.549 Td[(k)56(a)28(w)27(ale)-351(i)-350(tak)-350(si\\246)-351(to)-350(s)-1(p)1(ra)28(wiata!.)1(..)-350(C)-1(h)1(leb)-350(w)27(as)-351(an)1(o)-351(r)1(oz)-1(n)1(os)-1(i)1(,)-351(\\252a)-55(jd)1(usy)-351(j)1(e)-1(d)1(ne!)-350(P)28(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.55 Td[(ja)-333(o)-333(t)28(ym)-334(P)28(an)29(u)-333(Je)-1(zuso)28(w)-1(i)1(,)-333(p)-28(o)28(wiem)-1(,)-333(a)-333(on)-333(ju)1(\\273)-334(w)28(am)-1(a)-333(c)-1(u)1(gli)-333(pr)1(z)-1(yk)1(r\\363)-28(ci...)]TJ 27.879 -13.549 Td[(Maciej)-293(j)1(\\241\\252)-293(sw)27(oic)28(h)-293(p)-27(o)-28(cz)-1(ciwie)-293(b)1(roni)1(\\242)-1(,)-292(ale)-293(\\261)-1(wi\\246t)28(y)-293(P)1(ie)-1(t)1(r)-293(r)1(oz)-1(gn)1(ie)-1(w)28(a\\252)-293(si\\246)-293(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej)-333(i)-333(kiej)-333(ni)1(e)-334(tup)1(nie)-333(nog\\241)-333(a)-334(k)1(rzykni)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-445(Nie)-446(b)1(ro\\253)-445(t)1(akic)27(h)-444(s)-1(yn)1(\\363)28(w)-1(!)-445(A)-445(to)-445(ci)-445(jeno)-445(rzekn\\246:)-445(Niec)27(h)-445(mi)-445(s)-1(i)1(\\246)-446(te)-446(j)1(ud)1(as)-1(ze)]TJ -27.879 -13.549 Td[(p)-27(opra)28(wi\\241)-416(d)1(o)-416(trze)-1(c)28(h)-416(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l)-416(i)-415(p)-28(oku)1(t\\246)-416(c)-1(zyni)1(\\241,)-416(a)-416(jak)-415(nie)-416(p)-27(os)-1(\\252uc)28(ha)-55(j\\241,)-416(to)-416(t)1(ak)-416(ic)27(h)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(c)-1(isn\\246)-333(g\\252)-1(o)-27(dem)-1(,)-333(p)-27(o\\273)-1(og\\241)-333(i)-333(c)27(h)1(or\\363bsk)56(am)-1(i)1(,)-333(\\273)-1(e)-334(mni)1(e)-334(p)-28(op)1(ami\\246)-1(ta)-55(j\\241)-333(\\252a)-56(j)1(du)1(s)-1(y)-333(j)1(e)-1(d)1(ne)-1(.)]TJ 27.879 -13.549 Td[(Mo)-27(c)-1(n)1(o)-249(pr)1(ob)-28(oszc)-1(z)-249(p)-27(o)28(w)-1(i)1(ada\\252,)-248(do)-248(s)-1(erca)-249(i)-248(tak)-248(nap)-27(om)-1(i)1(na)-56(j)1(\\241c)-1(o,)-248(i)-248(takim)-249(gn)1(iew)27(em)]TJ -27.879 -13.549 Td[(Bo\\273)-1(ym)-255(grozi\\252,)-256(i)-255(tak)-255(pi)1(\\246)-1(\\261c)-1(i)1(a)-1(mi)-255(wytrz\\241c)27(h)1(a\\252,)-256(\\273e)-256(s)-1(zlo)-28(c)28(h)28(y)-255(s)-1(i)1(\\246)-256(p)-28(o)-27(dni)1(e)-1(s\\252y)-256(d)1(ok)28(o\\252a,)-256(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(zap\\252ak)56(a\\252)-334(i)-333(b)1(i\\252)-334(si\\246)-334(w)-333(piersi)-333(a)-334(k)56(a)-55(ja\\252...)]TJ 27.879 -13.549 Td[(Za\\261)-334(ksi\\241dz,)-333(o)-28(dsapn)1(\\241)27(wsz)-1(y)-333(n)1(ie)-1(co,)-333(j\\241\\252)-334(zno)28(wu)-333(m)-1(\\363)28(wi\\242)-334(o)-333(nieb)-27(os)-1(zc)-1(zyku)1(,)-334(j)1(ak)28(o)-334(to)]TJ -27.879 -13.55 Td[(pad)1(\\252)-466(z)-1(a)-466(ws)-1(zystkic)28(h..)1(.)-466(I)-466(w)27(o\\252a\\252)-466(do)-466(zgo)-28(dy)84(.)-466(W)84(o\\252a\\252)-467(d)1(o)-466(s)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(ci.)-466(W)84(o\\252a\\252)-467(d)1(o)]TJ 0 -13.549 Td[(p)-27(om)-1(i)1(ark)28(o)28(w)27(an)1(ia)-279(si\\246)-280(w)-279(gr)1(z)-1(ec)27(h)1(ac)27(h,)-278(b)-28(o)-278(nie)-279(wiada,)-278(k)28(om)27(u)-278(z)-280(b)1(rze)-1(ga)-279(wyb)1(ije)-279(ta)-279(ostatn)1(ia)]TJ 0 -13.549 Td[(go)-28(d)1(z)-1(in)1(a)-333(i)-334(p)1(rzyjd)1(z)-1(i)1(e)-334(s)-1(tan)1(\\241\\242)-334(p)1(rz)-1(ed)-333(strasz)-1(n)28(y)1(m)-334(s\\241de)-1(m)-333(P)28(ana.)1(..)]TJ 27.879 -13.549 Td[(\\233e)-334(n)1(a)27(w)28(e)-1(t)-333(sam)-334(d)1(z)-1(iedzic,)-334(a)-333(ob)-27(c)-1(i)1(e)-1(ra\\252)-333(ku)1(\\252akiem)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[(P)28(okr)1(\\363tc)-1(e)-307(jedn)1(ak)-307(ks)-1(i)1(\\246)-1(\\273a)-308(sk)28(o\\253czyli)-307(sw)27(o)-55(je)-308(i)-307(o)-28(d)1(e)-1(szli)-307(wraz)-308(z)-307(dzie)-1(d)1(z)-1(icem)-1(,)-307(a)-307(kiej)]TJ -27.879 -13.55 Td[(spu\\261cili)-291(w)-291(d\\363\\252)-291(tru)1(m)-1(n)1(\\246)-292(i)-291(j\\246li)-291(n)1(a)-291(ni\\241)-291(sypa\\242)-291(piase)-1(k,)-290(ja\\273e)-292(z)-1(ad)1(ud)1(nia\\252o,)-291(wrzas)-1(k)-290(c)-1(i,)-291(m\\363)-56(j)]TJ 0 -13.549 Td[(Jez)-1(u)1(,)-333(buc)28(hn)1(\\241\\252,)-334(a)-333(kr)1(z)-1(yk)1(i,)-333(a)-334(tak)1(ie)-334(lamen)28(t)28(y)83(,)-333(cob)28(y)-333(i)-333(na)-56(j)1(kw)28(ardsze)-1(go)-333(s)-1(k)1(rusz)-1(y)1(\\252o.)]TJ 27.879 -13.549 Td[(Rycz)-1(a\\252a)-265(J\\363z)-1(k)56(a,)-265(ry)1(c)-1(za\\252a)-266(M)1(agda,)-265(ry)1(c)-1(za\\252)-1(a)-265(Han)1(k)55(a)-265(i)-265(stryj)1(e)-1(cz)-1(n)1(e)-1(,)-265(p)1(\\252)-1(ak)56(a\\252y)-265(bl)1(is)-1(k)1(ie)]TJ -27.879 -13.549 Td[(i)-245(d)1(alekie,)-245(p)-27(o)27(win)1(o)28(w)27(ate)-245(i)-245(zgo\\252a)-245(ob)-27(c)-1(e,)-245(a)-245(j)1(u\\273)-245(mo\\273)-1(e)-245(na)-55(jr)1(z)-1(ew)-1(l)1(iwie)-1(j)-244(zanosi\\252a)-245(s)-1(i)1(\\246)-246(Jagu)1(s)-1(i)1(a,)]TJ 0 -13.549 Td[(kt\\363r)1(\\241)-334(tak)-333(cos)-1(i)1(k)-334(spar)1(\\252o)-334(p)-27(o)-28(d)-333(p)1(iers)-1(i)1(am)-1(i)1(,)-334(j)1(a\\273)-1(e)-333(s)-1(i\\246)-333(prosto)-333(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252a)-333(w)-334(kr)1(z)-1(yk)1(u.)]TJ 27.879 -13.55 Td[({)-294(Hal)1(e)-1(,)-293(te)-1(r)1(az)-294(s)-1(k)28(o)28(wycz)-1(y)84(,)-294(a)-293(c)-1(o)-293(to)-294(wyp)1(ra)28(w)-1(i)1(a\\252a)-294(z)-294(ni)1(e)-1(b)-27(os)-1(zc)-1(zyki)1(e)-1(m!)-293({)-294(mruk)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(kt\\363r)1(a\\261)-334(z)-334(b)-27(oku,)-333(za\\261)-334(P\\252osz)-1(k)28(o)28(w)28(a)-334(ob)-27(cie)-1(r)1(a)-56(j)1(\\241c)-334(o)-28(cz)-1(y)-333(do)-27(da\\252a:)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(s)-1(e)-334(\\252ask)28(\\246)-334(wyp)1(\\252)-1(ak)1(uje,)-333(b)28(yc)28(h)-333(j\\241)-333(ni)1(e)-334(wygnali)-333(z)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 0 -13.549 Td[({)-333(My\\261li,)-333(\\273e)-334(kto)-333(g\\252up)1(i)-334(a)-333(u)28(wierzy!)-333({)-333(p)-28(o)28(wiedzia\\252a)-334(g\\252o\\261no)-333(organ)1(i\\261)-1(cin)1(a.)]TJ 0 -13.549 Td[(Ale)-225(Jagn)1(a)-225(n)1(ie)-225(wiedzia\\252a)-225(j)1(u\\273)-225(o)-224(B)-1(o\\273ym)-225(\\261wie)-1(cie,)-225(p)1(ad\\252a)-224(k)55(a)-55(j\\261)-225(w)-224(piase)-1(k)-224(i)-224(z)-1(an)1(os)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-284(taki)1(m)-284(\\273a\\252)-1(osn)28(ym)-283(p\\252acz)-1(em)-1(,)-283(j)1(akb)28(y)-283(to)-283(n)1(a)-284(n)1(i\\241)-283(s)-1(yp)1(ia\\252y)-283(si\\246)-284(te)-284(ci\\246\\273)-1(k)1(ie)-1(,)-283(sypk)1(ie)-284(stru)1(gi)]TJ 0 -13.55 Td[(zie)-1(mi,)-400(jakb)29(y)-401(to)-401(n)1(ad)-401(n)1(i\\241)-401(h)28(u)1(c)-1(za\\252y)-401(te)-401(p)-27(os)-1(\\246pn)1(e)-401(g\\252os)-1(y)-401(d)1(z)-1(w)28(on\\363)28(w,)-401(j)1(akb)28(y)-400(to)-401(n)1(ad)-401(n)1(i\\241)]TJ 0 -13.549 Td[(p\\252ak)56(ali)1(...)]TJ 27.879 -13.549 Td[(A)-260(d)1(z)-1(w)28(on)28(y)-259(w)27(ci\\241\\273)-260(bi\\252y)84(,)-260(j)1(akb)28(y)-259(s)-1(k)56(ar\\273\\241c)-261(si\\246)-260(ni)1(e)-1(b)1(ios)-1(om,)-259(z)-1(a\\261)-260(z)-1(n)1(ad)-259(\\261)-1(wie\\273)-1(ej)-260(mogi\\252y)]TJ -27.879 -13.549 Td[(te)-361(ws)-1(zystkie)-361(p)1(\\252ac)-1(ze)-1(,)-360(te)-361(sz)-1(lo)-27(c)27(h)28(y)-360(i)-361(b)1(iadan)1(ia)-360(te)-1(\\273)-361(si\\246)-361(sk)55(ar)1(\\273)-1(y\\252y)-360(na)-360(dol\\246)-361(n)1(ieub)1(\\252)-1(agan)1(\\241)]TJ 0 -13.549 Td[(i)-333(na)-333(t\\246)-334(wiec)-1(zn\\241)-333(kr)1(z)-1(ywd)1(\\246)-334(c)-1(z\\252o)28(w)-1(i)1(e)-1(cz)-1(\\241.)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246li)-387(s)-1(i\\246)-387(wnet)-388(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i\\242)-387(z)-388(w)28(o)-1(l)1(na,)-387(kto)-387(tam)-387(jes)-1(zc)-1(ze)-388(gd)1(z)-1(ies)-1(i)1(k)-387(p)-28(o)-387(dr)1(o)-28(dze)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(kl\\246k)55(a\\252,)-386(k)1(to)-386(i)-386(te)-1(n)-385(pacierz)-386(m)-1(\\363)28(wi\\252)-386(z)-1(a)-386(p)-27(omar\\252e)-1(,)-385(kto)-386(z)-1(a\\261)-386(jeno)-386(si\\246)-386(b\\252\\241k)56(a\\252)-386(w)-1(\\261r\\363)-28(d)]TJ\nET\nendstream\nendobj\n1892 0 obj <<\n/Type /Page\n/Contents 1893 0 R\n/Resources 1891 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1891 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1896 0 obj <<\n/Length 9378      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(593)]TJ -358.232 -35.866 Td[(mogi\\252)-378(i)-378(sm)27(ut)1(nie)-378(delib)-27(e)-1(r)1(o)28(w)27(a\\252,)-378(a)-378(d)1(ru)1(gie)-379(r)1(usz)-1(ali)-377(o)-28(c)-1(i)1(\\241)-28(gliwie)-378(ku)-377(c)27(ha\\252u)1(p)-28(om)-378(ob)1(z)-1(iera-)]TJ 0 -13.549 Td[(j\\241c)-408(si\\246)-408(wycz)-1(eku)1(j\\241co,)-408(gd)1(y\\273)-408(k)28(o)28(w)27(al)-407(z)-408(Han)1(k)55(\\241)-407(s)-1(p)1(rasz)-1(al)1(i)-408(p)-27(oni)1(e)-1(kt\\363r)1(yc)27(h)-407(n)1(a)-408(ten)-407(c)27(h)1(le)-1(b)]TJ 0 -13.549 Td[(\\273a\\252)-1(ob)1(n)28(y)84(,)-333(jak)-333(to)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(b)28(yw)28(a)-333(p)-28(o)-333(p)-27(o)-28(c)27(h)1(o)27(wku)1(.)]TJ 27.879 -13.549 Td[(I)-409(ki)1(e)-1(j)-408(oklepal)1(i)-409(mogi\\252\\246)-1(,)-408(a)-409(nad)-408(n)1(i\\241)-409(wk)28(opali)-408(c)-1(zarn)29(y)-409(kr)1(z)-1(y\\273,)-409(wzi\\246)-1(l)1(i)-409(p)-27(om)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie)-425(sierot)28(y)-424(i)-424(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\246li)-424(sp)-28(or)1(\\241)-424(gromad\\241)-424(p)-28(or)1(e)-1(d)1(z)-1(a)-55(j\\241c)-424(z)-425(cic)27(h)1(a,)-424(a)-425(wy\\273ala)-55(j\\241c)-425(si\\246)]TJ 0 -13.55 Td[(nad)-332(nimi,)-333(a)-333(p)-28(op)1(\\252akuj)1(\\241c)-334(ni)1(e)-1(ki)1(e)-1(d)1(y)83(..)1(.)]TJ 27.879 -13.549 Td[(W)-240(Bo)-1(r)1(yno)28(w)28(e)-1(j)-240(i)1(z)-1(b)1(ie)-241(ju)1(\\273)-241(b)28(y\\252o)-240(w)-1(szys)-1(tk)28(o)-240(ur)1(z)-1(\\241d)1(z)-1(on)1(e)-241(do)-240(p)-28(ot)1(rz)-1(eb)28(y)84(,)-241(wzd\\252u)1(\\273)-241(\\261)-1(cian)]TJ -27.879 -13.549 Td[(ci\\241)-28(gn\\246\\252y)-345(s)-1(i\\246)-346(sto\\252y;)-345(obsta)28(wione)-346(d)1(\\252ugac)27(h)1(n)28(ymi)-345(\\252a)27(w)28(ami,)-345(\\273)-1(e)-346(sk)28(oro)-345(s)-1(i\\246)-345(jeno)-345(roz)-1(siedli)1(,)]TJ 0 -13.549 Td[(zaraz)-334(p)-27(o)-28(dan)1(o)-334(gor)1(z)-1(a\\252k)28(\\246)-334(i)-333(c)28(hleb)28(y)84(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(epi)1(li)-274(go)-28(d)1(nie,)-274(w)-274(cic)27(h)1(o\\261)-1(ci)-274(a)-274(p)-27(o)28(w)27(ad)1(z)-1(e,)-274(pr)1(z)-1(egry\\271li)-273(c)-1(o\\261)-274(nieco)-1(\\261)-274(i)-274(or)1(ganista)-274(za-)]TJ -27.879 -13.549 Td[(cz)-1(\\241\\252)-240(c)-1(zyta\\242)-240(z)-241(k)1(s)-1(i\\241\\273ki)-240(sp)-28(osobn)1(e)-241(mo)-28(d)1(lit)28(wy)83(,)-240(a)-240(p)-27(otem)-241(za\\261)-1(p)1(iew)27(ali)-239(litan)1(i\\246)-241(za)-240(umar\\252ego;)]TJ 0 -13.55 Td[(wt\\363ro)28(w)28(ali)-412(m)27(u)-412(o)-28(c)28(hotn)1(ie)-413(i)-412(gor\\241co,)-413(p)1(rze)-1(r)1(yw)27(a)-55(j\\241c)-413(j)1(e)-1(n)1(o)-413(wtedy)84(,)-412(kiej)-412(k)28(o)27(w)28(al)-412(pu)1(s)-1(zc)-1(za\\252)]TJ 0 -13.549 Td[(\\015ac)28(h\\246)-334(w)-333(no)28(w)28(\\241)-334(k)28(olejk)28(\\246,)-333(a)-333(Jagust)28(ynk)56(a)-333(c)27(hl)1(e)-1(b)-333(r)1(oz)-1(n)1(os)-1(i\\252a.)]TJ 27.879 -13.549 Td[(Kob)1(ie)-1(t)28(y)-439(zebra\\252y)-439(si\\246)-439(p)-28(o)-439(d)1(rugi)1(e)-1(j)-438(s)-1(tr)1(onie)-439(u)-439(Hank)1(i;)-439(p)1(i\\252y)-439(herb)1(at\\246)-1(,)-439(p)-27(o)-56(j)1(ada\\252y)]TJ -27.879 -13.549 Td[(s\\252)-1(o)-27(dki)-294(p)1(lac)-1(ek)-294(i)-294(p)-28(o)-27(d)-294(przew)27(o)-28(d)1(e)-1(m)-294(organi)1(\\261)-1(cin)28(y)-294(za\\261)-1(p)1(ie)-1(w)28(a\\252y)-294(tak)-294(rz)-1(ewnie)-294(i)-294(prze)-1(j)1(m)27(u)1(j\\241-)]TJ 0 -13.549 Td[(co,)-271(ja\\273e)-272(ku)1(ry)-271(zagdak)56(a\\252y)-271(p)-28(o)-271(s\\241dzie.)-271(I)-271(tak)-271(ano)-271(ws)-1(p)-27(omina)-55(j\\241c)-271(p)-28(o)-27(c)-1(zc)-1(iwie)-271(ni)1(e)-1(b)-27(os)-1(zc)-1(zy-)]TJ 0 -13.55 Td[(k)56(a)-333(nar\\363)-28(d)-332(p)-28(o)-55(jad)1(a\\252,)-333(p)-28(op)1(ija\\252,)-333(p)-27(op\\252aki)1(w)27(a\\252)-333(i)-333(\\261)-1(p)1(ie)-1(w)28(a\\252)-333(z)-1(a)-333(jego)-333(du)1(s)-1(z\\246)-334(p)-27(ob)-28(o\\273ne)-333(pie\\261)-1(n)1(ie,)]TJ 0 -13.549 Td[(jak)-333(p)1(rzys)-1(ta\\252o)-333(w)-334(t)1(ak)55(\\241)-333(p)-27(or\\246)-334(i)-333(za)-334(tak)1(ie)-1(go)-333(gosp)-28(o)-28(d)1(arza...)]TJ 27.879 -13.549 Td[(St)28(y)1(pa)-250(b)28(y)1(\\252)-1(a)-250(sut)1(a,)-250(Hank)56(a)-250(zapr)1(as)-1(za\\252a)-250(s)-1(erdecz)-1(n)1(ie)-251(n)1(ie)-250(\\273)-1(a\\252u)1(j\\241c)-250(jad)1(\\252)-1(a)-249(ni)-250(n)1(apit)1(ku,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-472(w)-472(p)-27(o\\252ud)1(nie,)-471(kiej)-471(j)1(u\\273)-472(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-470(j\\241\\252)-471(s)-1(i\\246)-471(ogl\\241da\\242)-471(z)-1(a)-471(c)-1(zap\\241,)-471(p)-27(o)-28(d)1(ali)-471(klu)1(s)-1(ki)-471(z)]TJ 0 -13.549 Td[(mle)-1(k)1(ie)-1(m,)-333(a)-333(p)-28(otem)-334(p)1(ra\\273one)-334(mi\\246s)-1(o)-333(z)-334(k)56(apu)1(s)-1(t\\241)-333(i)-333(gro)-28(c)28(h)-333(s)-1(zcz)-1(o)-28(d)1(rze)-334(omas)-1(zc)-1(zon)28(y)84(.)]TJ 27.879 -13.55 Td[({)-333(Dru)1(dzy)-334(t)1(akie)-1(go)-333(w)28(e)-1(se)-1(l)1(a)-334(n)1(ie)-334(wyp)1(ra)28(w)-1(i)1(a)-56(j)1(\\241!)-334({)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(B)-1(ol)1(e)-1(s\\252a)27(w)28(o)28(w)27(a.)]TJ 0 -13.549 Td[({)-333(A)-334(ma\\252o)-333(nieb)-28(osz)-1(czyk)-333(os)-1(ta)28(wi\\252,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ma)-56(j)1(\\241)-333(s)-1(i\\246)-333(c)-1(zym)-334(p)-27(o)-28(cie)-1(sz)-1(a\\242,)-333(ma)-56(j\\241.)]TJ 0 -13.549 Td[({)-333(Goto)28(wyc)27(h)-333(p)1(ie)-1(n)1(i\\246dzy)-333(te)-1(\\273)-334(sp)-27(oro)-333(c)27(hap)1(n\\241\\242)-334(m)28(usieli..)1(.)]TJ 0 -13.549 Td[({)-333(Ko)28(w)27(al)-333(wyrzek)55(a,)-333(co)-334(b)29(y\\252y)-333(i)-334(p)-27(on)1(o)-334(si\\246)-334(k)56(a)-56(j)1(\\261)-334(p)-27(o)-28(dzia\\252y)84(.)]TJ 0 -13.55 Td[({)-333(Narze)-1(k)56(a,)-333(a)-334(d)1(obr)1(z)-1(e)-334(j)1(e)-334(m)27(u)1(s)-1(i)1(a\\252)-334(sc)27(h)1(o)27(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[(P)28(ogad)1(yw)27(a\\252y)-321(z)-322(cic)28(ha)-321(m)-1(i)1(\\246)-1(d)1(z)-1(y)-321(sob\\241)-321(k)28(obiet)28(y)83(,)-321(wyskrzyb)1(uj)1(\\241c)-322(m)-1(i)1(s)-1(ki)-321(d)1(o)-321(c)-1(zys)-1(ta)-321(i)]TJ -27.879 -13.549 Td[(strze)-1(g\\241c)-265(si\\246)-265(Hanki)1(,)-265(k)1(t\\363ra)-265(n)1(ieustann)1(ie)-265(bacz)-1(y)1(\\252)-1(a,)-264(b)28(y)1(c)27(h)-264(kt\\363rej)-264(c)-1(zego)-265(ni)1(e)-265(z)-1(b)1(rak\\252o;)-264(z)-1(a\\261)]TJ 0 -13.549 Td[(p)-27(o)-282(c)27(h)1(\\252opskiej)-282(stron)1(ie)-282(organ)1(ista,)-282(n)1(apit)28(y)-281(ju)1(\\273)-282(\\271)-1(d)1(z)-1(iebk)28(o,)-281(d\\271wign\\241\\252)-281(s)-1(i\\246)-282(n)1(ad)-281(s)-1(to\\252em)-282(i)-282(z)]TJ 0 -13.549 Td[(kieliszkiem)-243(w)-243(gar)1(\\261)-1(ci)-242(j\\241\\252)-242(w)-1(y)1(p)-28(omin)1(a\\242)-243(nieb)-27(os)-1(zc)-1(zyk)56(a)-243(t)1(ak)-243(g\\363r)1(nie)-242(i)-242(z)-243(takimi)-242(\\252ac)-1(i)1(\\253skimi)]TJ 0 -13.55 Td[(pr)1(z)-1(ep)-27(o)27(wiad)1(k)55(ami,)-444(\\273)-1(e)-445(c)27(h)1(o)-28(c)-1(i)1(a)-445(nie)-445(bar)1(dzo)-445(w)-1(y)1(rozumie)-1(l)1(i,)-445(ale)-445(p\\252ak)56(a\\242)-445(s)-1(i\\246)-445(ws)-1(zystkim)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(o)-333(ki)1(e)-1(j)-333(n)1(a)-334(t)28(ym)-333(k)55(azani)1(u.)]TJ 27.879 -13.549 Td[(Gw)28(ar)-416(si\\246)-417(j)1(u\\273)-416(p)-27(o)-28(dn)1(os)-1(i\\252)-416(i)-415(g\\246)-1(b)28(y)-416(cze)-1(rwieni)1(a\\252y)83(,)-416(\\273e)-417(t)1(o)-416(\\015ac)27(h)1(a)-416(c)-1(z\\246)-1(sto)-416(kr)1(\\241\\273)-1(y\\252a)-416(i)]TJ -27.879 -13.549 Td[(sz)-1(k\\252o)-358(galan)28(to)-358(brz\\241k)56(a\\252o,)-359(t)1(o)-359(ju)1(\\273)-359(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-358(omac)27(ki)1(e)-1(m)-359(sz)-1(u)1(k)56(a\\252)-359(kielisz)-1(k)56(a)-358(i)-359(d)1(ru)1(g\\241)-359(r)1(\\246)-1(k)56(\\241)]TJ 0 -13.549 Td[(ku)1(m)-1(a)-292(ob)-28(ejmo)28(w)27(a\\252)-292(z)-1(a)-292(s)-1(zyj)1(\\246)-293(b)-28(e\\252k)28(o)-28(cz)-1(\\241c)-293(sk)28(o\\252c)-1(za\\252ym)-293(ozore)-1(m.)-292(Za\\261)-293(p)-28(on)1(iekt\\363ry)-292(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-419(wyci\\241)-28(gn)1(\\241\\252)-419(t\\246)-419(\\273a\\252)-1(ob)1(n\\241)-418(n)28(ut\\246)-419(i)-418(wyp)-27(om)-1(i)1(na\\242)-419(pr)1(\\363b)-28(o)28(w)28(a\\252,)-419(ale)-419(j)1(u\\273)-419(n)1(ikto)-418(nie)]TJ 0 -13.55 Td[(wt\\363ro)28(w)28(a\\252)-347(ni)-347(s\\252uc)28(ha\\252,)-347(wsz)-1(yscy)-347(b)-27(o)27(wiem)-347(gw)27(ar)1(z)-1(yl)1(i)-347(sto)28(w)27(arzysz)-1(a)-55(j\\241c)-347(s)-1(i)1(\\246)-348(d)1(o)-347(u)1(p)-28(o)-28(d)1(ob)28(y)84(,)]TJ 0 -13.549 Td[(\\261w)-1(i)1(arc)-1(z\\241c)-386(sobi)1(e)-386(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(a)-386(i)-384(raz)-386(w)-385(raz)-385(pr)1(z)-1(epij)1(a)-56(j)1(\\241c)-1(,)-385(a)-385(co)-385(s)-1(k)28(or)1(s)-1(i)-385(d)1(o)-385(kielisz)-1(k)56(a)]TJ 0 -13.549 Td[(wym)27(y)1(k)55(al)1(i)-442(si\\246)-442(c)27(h)29(y\\252kiem)-442(i)-442(wiedl)1(i)-442(ku)-441(k)56(arcz)-1(mie.)-441(T)27(yl)1(k)28(o)-442(jeden)-441(Jam)27(b)1(ro\\273)-442(b)28(y)1(\\252)-442(dzisia)]TJ 0 -13.549 Td[(zgo\\252)-1(a)-324(n)1(iep)-28(o)-28(d)1(obn)29(y)-324(do)-324(siebie.)-324(Ju)1(\\261)-1(ci,)-324(co)-324(pi\\252)-324(t)28(yla)-324(co)-324(i)-324(d)1(rugi)1(e)-1(,)-324(a)-324(mo\\273e)-325(i)-324(wi\\246c)-1(ej,)-323(gdy\\273)]TJ 0 -13.549 Td[(sam)-340(si\\246)-340(p)1(rzyma)27(wia\\252)-339(o)-339(gor)1(z)-1(a\\252k)28(\\246,)-339(ale)-340(siedzia\\252)-339(k)56(a)-56(j\\261)-339(w)-339(k)55(\\241cie)-339(s)-1(r)1(o)-28(dze)-340(zw)27(ar)1(z)-1(on)29(y)83(,)-339(o)-27(c)-1(zy)]TJ 0 -13.55 Td[(ci\\246)-1(gi)1(e)-1(m)-334(p)1(rze)-1(ciera\\252)-334(i)-333(ci\\246\\273)-1(k)28(o)-333(wz)-1(d)1(yc)27(h)1(a\\252.)]TJ 27.879 -13.549 Td[(T)83(r\\241ci\\252)-333(go)-334(k)1(t\\363ry\\261)-334(i)-333(n)1(a)-334(u)1(c)-1(i)1(e)-1(sz)-1(n)1(e)-334(p)-27(o)27(wiad)1(ki)-333(wyci\\241)-28(ga\\252.)]TJ\nET\nendstream\nendobj\n1895 0 obj <<\n/Type /Page\n/Contents 1896 0 R\n/Resources 1894 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1894 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1899 0 obj <<\n/Length 8998      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(594)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-372(Nie)-372(ru)1(c)27(h)1(a)-56(j)-372(m\\246,)-372(b)-27(om)-373(\\273a\\252os)-1(n)29(y!)-372({)-372(o)-28(d)1(bu)1(rkn)1(\\241\\252)-372({)-372(p)-28(omr\\246)-372(wnet,)-372(p)-27(omr\\246)-1(.)1(..)-372(P)1(s)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)-331(mn)1(ie)-331(j)1(e)-1(no)-330(za)28(w)-1(y)1(j\\241)-330(i)-330(bab)1(a)-331(w)-330(garn)1(e)-1(k)-330(r)1(oz)-1(b)1(it)28(y)-330(z)-1(ad)1(z)-1(w)28(oni)-330({)-330(mam)-1(rot)1(a\\252)-331(p)1(\\252ac)-1(zliwie.)]TJ 0 -13.549 Td[({)-341(Jak\\273e)-1(,)-340(to\\273)-342(p)1(rz)-1(y)-340(c)27(hr)1(z)-1(cie)-342(M)1(ac)-1(i)1(e)-1(j)1(a)-342(b)29(y\\252e)-1(m!..)1(.)-341(Na)-341(jego)-341(w)27(es)-1(elu)-341(t)1(a\\253co)27(w)28(a\\252e)-1(m!)-341(Oj)1(c)-1(\\363)28(w)]TJ 0 -13.549 Td[(jego)-463(c)27(h)1(o)27(w)28(a\\252e)-1(m!)-463(Dobr)1(z)-1(e)-463(pami\\246tam)-1(!)-463(M)1(\\363)-56(j)-463(Jez)-1(u)1(,)-463(i)-463(t)28(ylac)28(hno)-463(j)1(u\\273)-464(r)1(\\363\\273)-1(n)1(e)-1(go)-463(nar)1(o)-28(du)]TJ 0 -13.549 Td[(oklepa\\252em,)-334(t)28(y)1(lum)-334(j)1(u\\273)-333(prze)-1(d)1(z)-1(w)28(ani)1(a\\252...)-333(A)-333(te)-1(r)1(az)-334(p)-28(or)1(a)-334(n)1(a)-334(mn)1(ie)-1(!)1(...)]TJ 27.879 -13.55 Td[(P)28(o)-28(d)1(ni)1(\\363s)-1(\\252)-429(s)-1(i)1(\\246)-430(n)1(agle)-430(i)-429(wysze)-1(d)1(\\252)-430(p)1(r\\246dk)28(o)-429(d)1(o)-430(sadu)1(;)-429(Wit)1(e)-1(k)-429(p)-27(otem)-430(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)]TJ -27.879 -13.549 Td[(jak)28(o)-333(stary)-333(sie)-1(d)1(z)-1(i)1(a)-1(\\252)-333(za)-334(c)28(ha\\252up)1(\\241)-334(d)1(o)-333(p)-28(\\363\\271na)-333(i)-333(p\\252ak)56(a\\252...)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-309(c)-1(o)-309(s)-1(i\\246)-310(n)1(im)-310(n)1(ikto)-309(nie)-310(zatu)1(rb)-27(o)27(w)28(a\\252,)-310(k)56(a\\273den)-309(b)-28(o)28(wiem)-310(mia\\252)-310(d)1(os)-1(y\\242)-310(sw)27(oi)1(c)27(h)]TJ -27.879 -13.549 Td[(tu)1(rbacji)1(,)-239(a)-238(przy)-238(t)28(ym)-239(ju)1(\\273)-239(na)-238(s)-1(am)28(ym)-239(zm)-1(i)1(e)-1(r)1(z)-1(c)27(h)29(u)-238(przysz)-1(ed\\252)-238(na)-56(j)1(ni)1(e)-1(sp)-28(o)-27(dzianiej)-238(ksi\\241dz)]TJ 0 -13.549 Td[(wraz)-334(z)-333(dzie)-1(d)1(z)-1(i)1(c)-1(em)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(z)-280(p)-28(o)-27(c)-1(iesz)-1(a\\252)-280(\\252as)-1(k)56(a)28(wie)-280(s)-1(ierot)28(y)84(,)-280(g\\252as)-1(k)56(a\\252)-280(d)1(z)-1(ieci,)-280(a)-280(zgw)27(ar)1(z)-1(a)-55(j\\241c)-280(s)-1(i\\246)-280(z)-280(go-)]TJ -27.879 -13.55 Td[(sp)-28(o)-28(d)1(yn)1(iam)-1(i)-355(c)28(h\\246tliwie)-355(na)28(w)27(et)-355(p)-27(opij)1(a\\252)-356(h)1(e)-1(r)1(bat\\246,)-355(kt\\363r\\241)-355(m)28(u)-355(J\\363zk)55(a)-355(p)-27(o)-28(d)1(a\\252)-1(a,)-355(za\\261)-356(d)1(z)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(dzic)-288(p)-27(ogada)28(wsz)-1(y)-287(z)-288(t)28(ym)-288(i)-287(o)28(wym)-288(o)-287(r\\363\\273no\\261c)-1(iac)28(h,)-287(wz)-1(i)1(\\241\\252)-288(o)-28(d)-287(k)28(o)28(w)28(ala)-288(k)1(ie)-1(l)1(is)-1(ze)-1(k)1(,)-288(p)1(rze)-1(p)1(i\\252)]TJ 0 -13.549 Td[(do)-333(ws)-1(zystkic)28(h)-333(i)-333(p)-28(o)28(wiedzia\\252)-334(d)1(o)-334(Han)1(ki:)]TJ 27.879 -13.549 Td[({)-394(Je\\261)-1(l)1(i)-394(k)28(om)27(u)-393(\\273)-1(al)-393(Macie)-1(j)1(a,)-394(to)-394(mni)1(e)-395(z)-394(p)-27(e)-1(wno\\261c)-1(i)1(\\241)-394(na)-55(jwi\\246c)-1(ej,)-393(b)-28(o)-394(\\273e)-1(b)29(y)-394(teraz)]TJ -27.879 -13.549 Td[(\\273y\\252,)-445(to)-444(b)28(ym)-445(si\\246)-445(ze)-445(w)-1(si\\241)-445(u)1(go)-28(d)1(z)-1(i\\252)-444(dob)1(ro)28(w)27(oln)1(ie.)-445(M)1(o\\273)-1(e)-445(i)-444(da\\252b)28(ym,)-444(c)-1(ze)-1(go\\261c)-1(i)1(e)-445(pier-)]TJ 0 -13.55 Td[(w)28(e)-1(j)-401(c)27(h)1(c)-1(ieli!)1(...)-401({)-402(oz)-1(w)28(a\\252)-402(si\\246)-402(g\\252o\\261)-1(n)1(ie)-1(j)-401(to)-28(cz)-1(\\241c)-402(d)1(ok)28(o\\252a)-402(o)-28(cz)-1(ami.)-401({)-402(Ale)-402(mam)-402(to)-402(z)-402(kim)]TJ 0 -13.549 Td[(p)-27(om)-1(\\363)28(wi\\242?)-334(P)1(rz)-1(ez)-334(k)28(omisarz)-1(a)-333(n)1(ie)-334(c)27(h)1(c)-1(\\246,)-333(a)-334(ze)-334(wsi)-334(n)1(ikt)-333(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(si\\246)-334(n)1(ie)-334(zg\\252as)-1(za!...)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(ali)-333(w)-334(skup)1(ieniu)1(,)-334(r)1(oz)-1(w)28(a\\273)-1(a)-55(j\\241c)-333(k)55(a\\273de)-333(jego)-334(s\\252o)27(w)28(o.)]TJ 0 -13.549 Td[(M\\363)28(wi\\252)-267(j)1(e)-1(sz)-1(cz)-1(e)-267(co\\261)-268(n)1(iec)-1(o\\261)-267(i)-267(zagady)1(w)27(a\\252,)-267(al)1(e)-268(j)1(ak)-267(d)1(o)-267(te)-1(go)-266(m)27(ur)1(u,)-266(\\273)-1(ad)1(e)-1(n)-266(b)-28(o)28(wiem)]TJ -27.879 -13.549 Td[(ni)1(e)-340(da\\252)-340(si\\246)-340(z)-1(a)-339(oz)-1(\\363r)-339(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\242)-340(i)-339(na)28(w)27(et)-340(p)29(ys)-1(k)56(a)-339(nie)-340(ozw)27(ar\\252,)-339(jeno)-339(przytak)1(iw)27(al)1(i)-340(skro-)]TJ 0 -13.55 Td[(bi)1(\\241c)-377(s)-1(i\\246)-377(p)-27(o)-377(\\252b)1(ac)27(h)-376(a)-377(sp)-28(oziera)-56(j)1(\\241c)-377(p)-28(o)-376(s)-1(ob)1(ie)-377(z)-1(n)1(ac)-1(z\\241co,)-377(\\273e)-377(w)-1(i)1(dz\\241c)-1(,)-376(jak)28(o)-376(nie)-377(p)-27(oredzi)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\252am)-1(a\\242)-372(te)-1(j)-372(cz)-1(u)1(jn)1(e)-1(j)-372(ostro\\273no\\261c)-1(i)1(,)-373(wyw)28(o\\252a\\252)-373(ksi\\246dza)-373(i)-372(p)-27(os)-1(zli)-372(o)-28(d)1(pro)28(w)28(adze)-1(n)1(i)-373(ca\\252\\241)]TJ 0 -13.549 Td[(h)28(u)1(rm\\241)-334(a\\273)-333(w)-334(op\\252otk)1(i.)]TJ 27.879 -13.549 Td[(P)28(o)-333(ic)27(h)-332(o)-28(dej\\261c)-1(i)1(u)-333(j\\246li)-333(s)-1(i)1(\\246)-334(dop)1(ie)-1(r)1(o)-334(d)1(z)-1(i)1(w)27(o)28(w)27(a\\242)-333(a)-334(g\\252o)28(wi\\242)-334(wielce)-1(.)]TJ 0 -13.549 Td[({)-333(No,)-333(no,)-333(\\273)-1(eb)28(y)-333(sam)-334(dziedzic)-334(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(c)28(h\\252op)1(s)-1(ki)-333(p)-27(ogrze)-1(b)1(.)]TJ 0 -13.55 Td[({)-333(P)28(otrze)-1(b)1(uj)1(e)-334(nas,)-333(to)-333(bak)28(\\246)-334(\\261wie)-1(ci)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-334(P)1(\\252os)-1(zk)55(a.)]TJ 0 -13.549 Td[({)-333(A)-334(cz)-1(em)27(u)-332(to)-334(n)1(ie)-334(mia\\252)-333(przyj)1(\\261)-1(\\242)-334(z)-333(dobr)1(e)-1(go)-333(se)-1(rca,)-333(c)-1(o?)-333({)-333(bron)1(i\\252)-334(K)1(\\252\\241b.)]TJ 0 -13.549 Td[({)-304(Lata)-304(mas)-1(z,)-304(ale\\261)-305(rozum)28(u)-304(n)1(ie)-305(n)1(abr)1(a\\252)-1(.)-303(Kiedy\\273)-304(to)-304(dzie)-1(d)1(z)-1(i)1(c)-305(p)1(rz)-1(y)1(s)-1(ze)-1(d)1(\\252)-304(do)-304(ws)-1(i)]TJ -27.879 -13.549 Td[(z)-334(p)1(rzyjaciels)-1(t)28(w)28(e)-1(m,)-333(kiedy?)]TJ 27.879 -13.549 Td[({)-333(C)-1(o\\261)-333(w)-334(t)28(ym)-333(b)28(y\\242)-334(m)28(usi,)-333(\\273)-1(e)-334(t)1(ak)-334(zgo)-28(d)1(y)-333(s)-1(zuk)56(a!)]TJ 0 -13.55 Td[({)-333(Ano)-333(c)-1(o,)-333(\\273e)-334(m)27(u)-332(jej)-333(p)-28(otr)1(z)-1(a)-333(bar)1(z)-1(ej)-333(ni)1(\\271)-1(li)-333(n)1(am)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(m)28(y)-333(m)-1(o\\273e)-1(m)28(y)-333(s)-1(e)-333(p)-28(o)-28(cz)-1(ek)56(a\\242)-1(,)-333(mo\\273)-1(em)27(y)1(!)-333({)-334(w)28(o\\252a\\252)-334(p)1(ijan)29(y)-334(S)1(ik)28(ora.)]TJ 0 -13.549 Td[({)-405(Wy)-404(m)-1(o\\273ec)-1(ie,)-405(ale)-405(d)1(rugi)1(e)-406(n)1(ie)-405(m)-1(og\\241!)-404({)-405(wrzas)-1(n)1(\\241\\252)-405(z)-1(e\\271)-1(lon)29(y)-405(Gr)1(z)-1(ela,)-405(w)28(\\363)-56(j)1(t\\363)28(w)]TJ -27.879 -13.549 Td[(br)1(at.)]TJ 27.879 -13.549 Td[(J\\246li)-347(s)-1(i)1(\\246)-348(ju)1(\\273)-348(k\\252\\363)-28(ci\\242)-348(a)-347(przem)-1(a)28(wia\\242,)-348(b)-27(o)-347(jeden)-347(pr)1(a)27(wi\\252)-347(s)-1(w)28(o)-56(j)1(e)-348(i)-347(dr)1(ugi)-347(te\\273)-348(s)-1(w)28(e)-1(go)]TJ -27.879 -13.549 Td[(do)28(w)28(o)-28(dzi\\252,)-333(a)-333(trze)-1(ci)-333(obu)-333(si\\246)-334(p)1(rz)-1(eciwi\\252)-334(za\\261)-334(in)1(s)-1(i)-333(mam)-1(r)1(otali:)]TJ 27.879 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(o)-28(d)1(da)-333(b)-28(\\363r)-333(i)-333(zie)-1(mi\\246,)-333(to)-333(z)-1(rob)1(im)-334(zgo)-28(d)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-251(Ni)1(e)-251(p)-28(otr)1(z)-1(a)-250(z)-1(go)-28(d)1(y)83(,)-250(no)28(w)28(e)-251(nad)1(z)-1(ia\\252y)-250(pr)1(z)-1(yj)1(d\\241,)-250(to)-251(i)-250(tak)-250(w)-1(szys)-1(tk)28(o)-250(b)-28(\\246dzie)-251(n)1(as)-1(ze)-1(.)]TJ -27.879 -13.549 Td[(Niec)27(h)-333(p)1(s)-1(iac)28(hma\\242)-334(z)-334(tor)1(bami)-333(p)-28(\\363)-55(jd)1(z)-1(ie)-333(z)-1(a)-333(krzywd\\246)-333(nasz)-1(\\241.)]TJ 27.879 -13.549 Td[({)-333(\\233ydy)-333(go)-333(du)1(s)-1(z\\241,)-333(to)-334(c)28(h\\252op)-27(\\363)27(w)-333(o)-333(p)-28(omo)-28(c)-334(sk)28(omle)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rz\\363)-28(dzi)-333(to)-333(ino)-333(wie)-1(d)1(z)-1(i)1(a\\252)-334(kr)1(z)-1(ycze)-1(\\242:)-333(z)-334(dr)1(ogi,)-333(c)27(hamie,)-333(b)-28(o)-333(bat)1(e)-1(m!)]TJ 0 -13.55 Td[({)-454(M\\363)28(w)-1(i)1(\\246)-455(w)27(ama,)-454(nie)-455(wierzta)-454(dzie)-1(d)1(z)-1(i)1(c)-1(o)28(wi,)-454(b)-28(o)-454(k)56(a\\273)-1(d)1(e)-1(n)-454(z)-455(n)1(ic)27(h)-454(j)1(e)-1(n)1(o)-455(zdrad)1(\\246)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252opskiem)27(u)-333(n)1(aro)-28(d)1(o)27(wi)-333(gotu)1(je)-334({)-333(w)27(o\\252a\\252)-333(kt\\363r)1(y\\261)-334(bar)1(z)-1(ej)-333(nap)1(it)28(y)83(.)]TJ\nET\nendstream\nendobj\n1898 0 obj <<\n/Type /Page\n/Contents 1899 0 R\n/Resources 1897 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1884 0 R\n>> endobj\n1897 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1902 0 obj <<\n/Length 9022      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(595)]TJ -330.353 -35.866 Td[({)-436(S\\252u)1(c)27(h)1(a)-56(jt)1(a)-437(n)1(o,)-436(gosp)-28(o)-27(darze)-1(!)-435({)-436(z)-1(akr)1(z)-1(yk)1(n\\241\\252)-436(nar)1(az)-437(k)28(o)28(w)28(al.)-436({)-436(P)28(o)28(wiem)-437(w)28(am)]TJ -27.879 -13.549 Td[(m\\241dre)-378(s\\252)-1(o)28(w)28(o:)-378(j)1(ak)-378(z)-1(go)-27(dy)-378(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-378(c)27(h)1(c)-1(e,)-378(to)-378(p)-27(otrza)-378(z)-378(nim)-378(t\\246)-378(z)-1(go)-27(d\\246)-378(z)-1(r)1(obi\\242)-378(i)-378(b)1(ra\\242,)]TJ 0 -13.549 Td[(co)-334(si\\246)-334(d)1(a,)-333(nie)-334(cz)-1(ek)56(a)-56(j)1(\\241c)-334(gru)1(s)-1(zk)28(\\363)28(w)-334(na)-333(wierzbie.)]TJ 27.879 -13.549 Td[(Na)-333(to)-334(p)-27(o)28(ws)-1(ta\\252)-333(Grzela,)-333(w)27(\\363)-55(jt\\363)28(w)-334(b)1(rat,)-333(i)-333(za)27(w)28(o\\252a\\252:)]TJ 0 -13.549 Td[({)-333(\\221wi\\246ta)-334(p)1(ra)28(wda!)-333(Cho)-28(d)1(\\271)-1(t)1(a)-334(d)1(o)-334(k)56(arczm)27(y)84(,)-334(t)1(am)-334(s)-1(i)1(\\246)-334(nar)1(adzim)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(a)-334(sta)28(wiam)-334(la)-333(ca\\252)-1(ej)-333(k)28(ompan)1(ii)-333({)-334(d)1(o)-28(d)1(a\\252)-334(o)-28(c)28(hotn)1(ie)-334(k)28(o)28(w)27(al)1(.)]TJ 0 -13.549 Td[(Wywiedl)1(i)-304(si\\246)-304(p)-27(okr\\363tce)-304(ca\\252)-1(\\241)-303(ku)1(p\\241)-303(w)-304(op\\252otki)1(.)-304(Zmierzc)27(ha\\252o)-303(s)-1(i\\246)-303(ju\\273)-304(\\271dziebk)28(o,)]TJ -27.879 -13.549 Td[(b)28(yd)1(\\252o)-240(sz)-1(\\252o)-239(z)-240(past)28(wis)-1(k)-239(i)-239(p)-27(o)-240(ca\\252e)-1(j)-239(ws)-1(i)-239(roznosi\\252y)-239(s)-1(i)1(\\246)-240(p)-28(or)1(yki,)-239(g\\246got)28(y)83(,)-239(fu)1(jar)1(e)-1(k)-239(pi)1(s)-1(k)56(a)-56(j)1(\\241c)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(ebi)1(e)-1(ran)1(ia)-333(i)-333(te)-334(dziec)-1(i\\253)1(s)-1(k)1(ie)-334(\\261piewy)-333(i)-334(wr)1(z)-1(aski.)]TJ 27.879 -13.549 Td[(A)-362(c)27(h)1(\\252opi)-362(mimo)-363(k)28(ob)1(iec)-1(yc)28(h)-362(j)1(az)-1(gota\\253)-361(i)-362(s)-1(p)1(rz)-1(eciwia\\253)-362(p)-27(os)-1(zli)-362(ca\\252\\241)-363(gr)1(om)-1(ad)1(\\241)-362(ku)]TJ -27.879 -13.549 Td[(k)56(arcz)-1(mie,)-387(t)28(ylk)28(o)-387(j)1(e)-1(d)1(e)-1(n)-386(Sik)28(or)1(a,)-387(c)-1(o)-386(os)-1(ta)28(w)28(a\\252)-388(n)1(iec)-1(o)-387(za)-387(dr)1(ugimi,)-387(c)28(h)28(yta\\252)-387(si\\246)-387(p\\252ot\\363)28(w)-387(i)]TJ 0 -13.55 Td[(cos)-1(ik)-333(d)1(\\252ugo)-333(przy)-333(nic)28(h)-333(grd)1(yk)56(a\\252.)]TJ 27.879 -13.549 Td[(D\\252ugo)-318(ic)27(h)-318(b)28(y)1(\\252)-1(o)-318(s)-1(\\252yc)28(ha\\242,)-319(tak)-318(s)-1(i)1(\\246)-319(pro)28(w)28(adzili)-318(s)-1(zumnie,)-318(ile)-319(\\273)-1(e)-319(to)-318(ju)1(\\273)-319(niejeden,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-333(s)-1(ob)1(ie)-334(u)1(l\\273)-1(y)1(\\242)-1(,)-333(p)1(ios)-1(n)1(e)-1(cz)-1(k)56(\\241)-333(h)28(u)1(kn\\241\\252)-333(alb)-27(o)-334(i)-333(kr)1(z)-1(yk)56(a\\252)-333(z)-334(gor\\241co\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Za\\261)-329(u)-328(Boryn\\363)28(w,)-328(s)-1(k)28(or)1(o)-329(u)1(prz\\241tn\\246li)-328(p)-27(o)-329(go\\261c)-1(iac)28(h)-328(i)-329(p)1(rzys)-1(zed\\252)-329(ciem)-1(n)29(y)-329(wiec)-1(z\\363r,)]TJ -27.879 -13.549 Td[(zrobi)1(\\252)-1(o)-333(si\\246)-334(jak)28(o\\261)-333(dziwnie)-333(c)-1(ic)28(ho,)-333(pu)1(s)-1(t)1(o)-334(i)-333(sm)27(ut)1(nie.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-493(t\\252u)1(k\\252a)-493(s)-1(i\\246)-493(p)-27(o)-494(sw)28(o)-56(jej)-493(i)1(z)-1(b)1(ie)-494(ki)1(e)-1(j)-492(te)-1(n)-492(ptak)-493(p)-27(o)-493(klatce)-494(i)-492(c)-1(o)-493(tro)-27(c)27(ha)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-1(a)-308(d)1(o)-309(Han)1(ki,)-308(ale)-308(w)-1(i)1(dz\\241c)-1(,)-308(j)1(ak)28(o)-309(wsz)-1(y)1(s)-1(cy)-308(c)27(ho)-27(dz\\241)-309(oso)28(w)-1(i)1(ali)-308(a)-308(s)-1(tr)1(apieni,)-308(u)1(c)-1(i)1(e)-1(k)56(a\\252a)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-334(j)1(e)-1(d)1(nego)-334(s\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-388(co)-388(w)-388(c)27(h)1(a\\252)-1(u)1(pi)1(e)-389(b)28(y)1(\\252o)-388(jak)-388(w)-388(gr)1(obie,)-388(a)-388(ki)1(e)-1(j)-387(obr)1(z)-1(\\241d)1(z)-1(il)1(i)-388(gos)-1(p)-27(o)-28(d)1(arst)28(w)27(o)-388(i)]TJ -27.879 -13.549 Td[(zjedli)-280(k)28(ol)1(ac)-1(j)1(\\246)-1(,)-280(to)-280(c)28(ho)-28(cia)-280(\\261)-1(p)1(ik)-280(morzy\\252)-280(k)56(a\\273)-1(d)1(e)-1(go,)-280(a)-280(n)1(ikt)-280(si\\246)-281(z)-280(iz)-1(b)29(y)-280(nie)-280(kw)28(api\\252)-280(r)1(us)-1(za\\242.)]TJ 0 -13.55 Td[(Si)1(e)-1(d)1(z)-1(ieli)-437(p)1(rze)-1(d)-436(k)28(ominem)-438(zapat)1(rz)-1(eni)-436(w)-437(ogie)-1(\\253)-436(i)-437(tr)1(w)27(o\\273nie)-437(nas\\252uc)28(h)28(uj)1(\\241c)-1(y)-436(k)55(a\\273dego)]TJ 0 -13.549 Td[(sz)-1(me)-1(r)1(u.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-454(b)28(y)1(\\252)-455(cic)27(h)29(y)83(,)-454(t)28(yl)1(k)28(o)-455(n)1(iekie)-1(d)1(y)-454(wiater)-454(przegarn\\241\\252)-454(i)-454(zas)-1(zumia\\252y)-454(dr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(w)28(a,)-392(c)-1(zas)-1(em)-393(zatrze)-1(szc)-1(za\\252y)-392(p\\252ot)28(y)83(,)-392(b)1(rz\\246)-1(k)1(n\\246\\252)-1(y)-391(s)-1(zyb)28(y)-392(lu)1(b)-392(\\212ap)1(a)-393(za)28(w)27(ar)1(c)-1(za\\252)-392(je\\273)-1(\\241c)-392(s)-1(i\\246)]TJ 0 -13.549 Td[(gro\\271ni)1(e)-1(,)-333(a)-333(p)-28(otem)-334(wlek\\252y)-333(s)-1(i)1(\\246)-334(d\\252u)1(gie)-1(,)-333(n)1(ie)-1(sk)28(o\\253cz)-1(on)1(e)-1(,)-333(zgo\\252a)-334(gr)1(ob)-28(o)28(w)28(e)-334(cic)27(h)1(o\\261)-1(cie)-1(.)]TJ 27.879 -13.55 Td[(On)1(i)-347(z)-1(a\\261)-347(s)-1(iedzieli)-347(rozdy)1(gotani)-347(coraz)-347(barze)-1(j)1(,)-347(a)-347(tak)-347(s)-1(t)1(rw)27(o\\273eni,)-347(\\273e)-348(r)1(az)-348(p)-27(o)-347(raz)]TJ -27.879 -13.549 Td[(kto\\261)-291(s)-1(i\\246)-291(\\273)-1(egna\\252)-291(i)-291(pacie)-1(r)1(z)-292(z)-1(aczyna\\252)-291(roztrz\\246)-1(sion)28(ymi)-291(w)27(ar)1(gam)-1(i)1(,)-291(b)-28(o)-291(ju)1(\\273)-292(ws)-1(zystkim)-291(s)-1(i\\246)]TJ 0 -13.549 Td[(widzia\\252o,)-309(jak)28(o)-309(cos)-1(ik)-309(si\\246)-310(gd)1(z)-1(ie\\261)-310(r)1(usz)-1(a,)-309(\\273e)-310(c)27(h)1(o)-28(dzi)-309(p)-28(o)-309(g\\363rze)-1(,)-309(j)1(a\\273)-1(e)-309(b)-28(elki)-309(tr)1(z)-1(es)-1(zc)-1(z\\241,)-309(\\273)-1(e)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a)-374(p)-27(o)-28(d)1(e)-374(d)1(rzw)-1(i)1(am)-1(i,)-373(\\273e)-374(w)-373(okn)1(a)-373(z)-1(agl\\241d)1(a)-373(i)-373(ob)-28(ciera)-373(s)-1(i)1(\\246)-374(o)-373(\\261)-1(cian)28(y)84(,)-373(to)-373(jak)1(b)28(y)-373(kto\\261)]TJ 0 -13.549 Td[(klamki)-333(zatarga\\252)-333(i)-333(c)-1(i\\246\\273)-1(k)28(o)-333(st\\241)-28(pa)-55(j\\241cy)-333(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-334(ca\\252\\241)-334(c)28(ha\\252up)-27(\\246.)]TJ 27.879 -13.55 Td[(S\\252u)1(c)27(h)1(ali)-333(bledzi,)-333(z)-334(zapart)28(y)1(m)-334(tc)27(h)1(e)-1(m,)-333(z)-1(go\\252a)-333(ni)1(e)-1(p)1(rz)-1(y)1(tom)-1(n)1(i.)]TJ 0 -13.549 Td[(Naraz)-285(k)28(o\\253)-284(z)-1(ar\\273a\\252)-285(w)28(e)-286(sta)-56(j)1(ni,)-284(\\212apa)-285(ostro)-285(zasz)-1(cz)-1(ek)56(a\\252)-285(i)-285(rzuci\\252)-285(si\\246)-286(k)1(u)-285(d)1(rzw)-1(i)1(om)-1(,)]TJ -27.879 -13.549 Td[(J\\363zk)55(a)-333(n)1(ie)-334(mog\\241c)-334(ju)1(\\273)-334(ws)-1(tr)1(z)-1(yma\\242,)-333(krzykn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-333(Oc)-1(i)1(e)-1(c!)-333(Lab)-28(oga,)-333(o)-28(ciec)-1(!)-333({)-333(i)-333(z)-1(ap)1(\\252ak)55(a\\252a)-333(s)-1(t)1(rac)27(h)1(liwie.)]TJ 0 -13.549 Td[({)-333(Na)-334(to)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(strze)-1(p)1(n\\246\\252a)-334(p)1(alc)-1(ami)-333(trzy)-333(razy)-333(i)-334(r)1(z)-1(ek\\252a)-333(w)27(a\\273nie:)]TJ 0 -13.549 Td[({)-270(Nie)-270(bu)1(c)-1(z,)-270(p)1(rze)-1(sz)-1(k)56(ad)1(z)-1(asz)-271(d)1(usz)-1(y)-269(o)-28(dej\\261\\242)-270(w)-270(s)-1(p)-27(ok)28(o)-56(j)1(u;)-270(p)1(\\252ac)-1(ze)-270(j\\241)-270(an)1(o)-270(trzyma)-56(j\\241)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)-254(z)-1(i)1(e)-1(mi.)-254(Wywrzyjcie)-255(dr)1(z)-1(wi,)-254(niec)27(h)-254(se)-256(ta)-254(w)27(\\246dr)1(o)27(wn)1(ic)-1(a)-254(o)-28(dl)1(e)-1(ci)-255(n)1(a)-255(Jez)-1(u)1(s)-1(o)28(w)27(e)-255(p)-27(ola..)1(.)]TJ 0 -13.549 Td[(Niec)27(h)-333(si\\246)-334(p)-27(oniesie)-334(w)-334(sp)-27(ok)28(o)-56(j)1(no\\261c)-1(i.)]TJ 27.879 -13.549 Td[(Ot)28(w)28(arli)-368(dr)1(z)-1(wi;)-368(w)-369(izbie)-369(p)1(rzyc)-1(i)1(c)27(h\\252o)-368(i)-369(j)1(akb)28(y)-368(z)-1(amar\\252o,)-368(nik)1(t)-369(si\\246)-369(ni)1(e)-369(p)-28(or)1(usz)-1(y\\252,)]TJ -27.879 -13.549 Td[(t)28(ylk)28(o)-263(rozpal)1(one)-264(o)-27(c)-1(zy)-263(lata\\252y)83(,)-263(\\212ap)1(a)-263(jeno)-263(pr)1(z)-1(ew)27(\\241c)28(hiw)28(a\\252)-264(k)56(\\241t)28(y)84(,)-263(s)-1(k)56(amla\\252)-264(n)1(iekiej,)-263(kr)1(\\246)-1(ci\\252)]TJ 0 -13.549 Td[(ogonem)-391(i)-390(jak)1(b)28(y)-390(s)-1(i\\246)-390(do)-390(k)28(ogo\\261)-391(przy\\252asz)-1(a\\252,)-390(\\273)-1(e)-390(ju\\273)-390(te)-1(r)1(az)-391(w)-1(szys)-1(cy)-390(c)-1(zuli)-390(n)1(a)-56(j)1(g\\252)-1(\\246bi)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(jak)28(o)-333(to)-333(gdzies)-1(ik)-333(p)-27(omi\\246)-1(d)1(z)-1(y)-333(n)1(imi)-334(b)1(\\252\\241k)56(a)-334(si\\246)-334(d)1(usz)-1(a)-333(z)-1(mar\\252ego.)]TJ 27.879 -13.549 Td[(A\\273)-334(Han)1(k)55(a)-333(za\\261)-1(p)1(ie)-1(w)28(a\\252a)-334(r)1(oz)-1(d)1(ygotan)28(y)1(m)-1(,)-333(zdu)1(s)-1(zon)28(ym)-334(g\\252ose)-1(m:)]TJ\nET\nendstream\nendobj\n1901 0 obj <<\n/Type /Page\n/Contents 1902 0 R\n/Resources 1900 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1900 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1906 0 obj <<\n/Length 391       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(596)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(37.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Wsz)-1(y)1(s)-1(tki)1(e)-334(nasz)-1(e)-333(dzie)-1(n)1(ne)-334(spr)1(a)28(w)-1(y)1(!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(w)-1(tar)1(z)-1(al)1(i)-334(gor)1(\\241c)-1(o)-333(i)-333(z)-334(ni)1(e)-1(zm)-1(i)1(e)-1(r)1(n\\241)-333(ulg\\241.)]TJ\nET\nendstream\nendobj\n1905 0 obj <<\n/Type /Page\n/Contents 1906 0 R\n/Resources 1904 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1904 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1909 0 obj <<\n/Length 6887      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(38)]TJ/F17 10.909 Tf 0 -73.325 Td[(Dzie)-1(\\253)-332(b)28(y\\252)-334(b)1(ard)1(z)-1(o)-333(c)-1(u)1(dn)29(y)83(,)-333(pr)1(a)28(w)-1(d)1(z)-1(i)1(w)-1(i)1(e)-334(lato)28(wy)83(.)]TJ 27.879 -13.549 Td[(Mo\\273e)-280(sz)-1(\\252a)-279(d)1(z)-1(iesi\\241ta)-279(ran)1(o,)-279(b)-28(o)-279(j)1(u\\273)-279(s)-1(\\252o\\253ce)-279(w)-1(i)1(s)-1(ia\\252o)-279(w)-279(p)-28(\\363\\252)-279(d)1(rogi)-279(mi\\246dzy)-279(w)-1(sc)27(h)1(o-)]TJ -27.879 -13.549 Td[(dem)-346(a)-346(p)-27(o\\252ud)1(niem)-346(i)-346(wyn)1(os)-1(i\\252o)-346(si\\246)-346(coraz)-346(bard)1(z)-1(i)1(e)-1(j)-345(pal)1(\\241c)-1(e,)-346(ki)1(e)-1(j)-345(lip)-27(e)-1(c)28(kie)-346(dzw)28(on)28(y)83(,)-345(ile)]TJ 0 -13.55 Td[(ic)28(h)-333(jeno)-333(b)28(y\\252o,)-333(z)-1(ad)1(z)-1(w)28(oni)1(\\252y)-334(r)1(oz)-1(g\\252o\\261nie)-333(i)-333(z)-1(e)-334(wsz)-1(ystkiej)-333(mo)-28(cy)83(.)]TJ 27.879 -13.549 Td[(A)-416(ten,)-415(c)-1(o)-416(go)-415(to)-416(pr)1(z)-1(ez)-1(y)1(w)27(ali)-415(Pietrem,)-416(h)28(u)1(c)-1(za\\252)-416(na)-55(jg\\252o\\261niej)-416(i)-415(\\261)-1(p)1(iew)27(a\\252)-416(ca\\252ym)]TJ -27.879 -13.549 Td[(gard)1(z)-1(i)1(e)-1(lem)-1(,)-352(jak)-352(kiedy)-352(to)-353(c)28(h\\252op)-352(\\271)-1(d)1(z)-1(iebk)28(o)-352(nap)1(it)28(y)-353(d)1(rog\\241)-353(i)1(dzie)-1(,)-352(k)28(olebie)-353(si\\246)-353(z)-1(e)-353(stro-)]TJ 0 -13.549 Td[(n)28(y)-446(n)1(a)-447(stron)1(\\246)-447(i)-446(z)-1(a)28(w)28(o)-28(dz\\241cy)-447(ca\\252e)-1(m)28(u)-446(\\261w)-1(i)1(atu)-446(rad)1(o\\261)-1(cie)-447(sw)27(o)-55(je)-447(gr)1(ub)1(ac)27(hn)29(ym)-447(g\\252ose)-1(m)]TJ 0 -13.549 Td[(p)-27(o)27(wiad)1(a...)]TJ 27.879 -13.549 Td[(Za\\261)-223(d)1(rugi)1(,)-222(niec)-1(o)-222(p)-27(om)-1(n)1(iejsz)-1(y)84(,)-222(o)-222(kt\\363rym)-222(Jam)27(b)1(ro\\273)-223(r)1(oz)-1(p)-27(o)28(wiada\\252,)-222(\\273e)-223(go)-222(o)-28(c)27(h)1(rzc)-1(i-)]TJ -27.879 -13.55 Td[(li)-310(na)-311(P)28(a)28(w\\252a,)-311(wyd)1(z)-1(iera\\252)-311(si\\246)-311(te\\273)-312(n)1(ie)-311(c)-1(isze)-1(j)1(,)-311(a)-311(j)1(e)-1(n)1(o)-311(\\273)-1(ar)1(liwiej)-311(wt\\363ro)28(w)28(a\\252,)-311(wysok)55(\\241)-310(n)28(ut\\246)]TJ 0 -13.549 Td[(br)1(a\\252,)-358(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\252)-358(g\\363rni)1(e)-1(,)-358(a)-358(cz)-1(y)1(s)-1(t)28(ym)-358(g\\252os)-1(em)-358(z)-1(a)28(w)28(o)-28(dzi\\252)-358(i)-358(ki)1(e)-1(b)28(y)-357(s)-1(i\\246)-358(z)-1(ap)1(ami\\246)-1(ta\\252,)-357(tak)]TJ 0 -13.549 Td[(dzw)28(oni\\252,)-305(j)1(ak)28(ob)28(y)-305(ta)-305(d)1(z)-1(i)1(e)-1(wk)56(a)-305(p)-28(on)1(iekt\\363ra,)-305(k)1(ie)-1(j)-304(j\\241)-305(r)1(oz)-1(epr)1(z)-1(e)-305(k)28(o)-28(c)27(h)1(anie)-305(leb)-28(o)-305(t)1(e)-1(n)-304(dzie)-1(\\253)]TJ 0 -13.549 Td[(zw)-1(i)1(e)-1(sno)28(wy)83(,)-288(\\273)-1(e)-289(w)-289(p)-28(ol)1(a)-289(lec)-1(i,)-288(s)-1(k)1(ro\\261)-289(z)-1(b)-27(\\363\\273)-289(s)-1(i\\246)-289(p)1(rz)-1(ebi)1(e)-1(r)1(a)-289(i)-289(\\261piew)27(a)-288(z)-1(e)-289(ws)-1(zystkiego)-289(s)-1(erca)]TJ 0 -13.549 Td[(wiatrom,)-333(p)-27(olom)-1(,)-333(n)1(iebu)-333(j)1(as)-1(n)1(e)-1(m)28(u)-333(i)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(d)1(usz)-1(y)-333(w)28(e)-1(se)-1(ln)1(e)-1(j)1(.)]TJ 27.879 -13.55 Td[(A)-301(n)1(a)-301(tr)1(z)-1(ec)-1(iego)-301({)-300(s)-1(ygn)1(atur)1(k)55(a)-300(jak)28(o)-300(te)-1(n)-300(pt)1(as)-1(ze)-1(k)-300(\\261)-1(wiergoli)1(\\252)-1(a,)-300(na)-300(dar)1(m)-1(o)-300(c)27(hc\\241c)]TJ -27.879 -13.549 Td[(tam)28(te)-495(pr)1(z)-1(e\\261)-1(p)1(iew)27(a\\242,)-494(nie)-495(mog\\252a)-494(jednak)1(,)-494(c)27(ho)-27(c)-1(ia)-494(jazgota\\252a)-494(s)-1(iek)56(a)-56(j)1(\\241c)-1(ym,)-494(pr)1(\\246)-1(d)1(kim)]TJ 0 -13.549 Td[(g\\252os)-1(em,)-323(kieb)28(y)-323(te)-323(dziec)-1(i)1(\\253skie)-323(s)-1(p)1(rz)-1(eciwy)83(.)-323(\\233e)-323(ju)1(\\273)-324(d)1(z)-1(w)28(oni)1(\\252)-1(y)-322(c)-1(zyni)1(\\241c)-324(galan)29(t\\241)-323(k)56(ap)-28(el\\246,)]TJ 0 -13.549 Td[(b)-27(o)-250(to)-251(i)-249(bas)-251(p)-27(ob)-27(\\246)-1(ki)1(w)27(a\\252,)-250(i)-250(za)28(w)27(o)-28(d)1(z)-1(i)1(\\252y)-250(s)-1(kr)1(z)-1(yp)1(ice)-1(,)-250(i)-250(ten)-250(b)-27(\\246b)-28(enek)-250(z)-251(b)1(rz\\246)-1(k)56(ad\\252ami)-250(dr)1(yga\\252)]TJ 0 -13.549 Td[(w)28(e)-1(so\\252o,)-334(i)-333(r)1(z)-1(n)1(\\246)-1(\\252y)-333(wraz)-334(o)-28(d)-332(uc)27(h)1(a,)-333(uro)-27(c)-1(zy\\261c)-1(ie)-334(a)-333(rozg\\252o\\261)-1(n)1(ie.)]TJ 27.879 -13.55 Td[(Na)-251(o)-28(dp)1(ust)-251(c)-1(i)-251(one)-251(tak)-251(rad)1(o\\261)-1(ni)1(e)-252(zw)27(o\\252yw)28(a\\252y)83(,)-251(b)-27(o)-28(\\242)-252(to)-251(b)28(y\\252)-251(dzie\\253)-251(\\261)-1(wi\\246tego)-252(P)1(iotra)]TJ -27.879 -13.549 Td[(i)-333(P)28(a)28(w\\252a,)-334(za)28(w)-1(d)1(y)-333(w)-334(Lip)-27(cac)27(h)-333(u)1(ro)-28(cz)-1(y\\261cie)-334(ob)-27(c)27(ho)-27(dzon)28(y)83(.)]TJ 27.879 -13.549 Td[(A)-442(c)-1(zas)-443(si\\246)-443(te\\273)-443(b)28(y)1(\\252)-443(zrobi)1(\\252)-443(wyb)1(ran)28(y)84(,)-442(c)-1(i)1(c)27(h)28(y)-442(i)-442(wie)-1(l)1(c)-1(e)-442(s)-1(\\252onec)-1(zn)28(y)84(,)-442(na)-442(galan)28(t\\241)]TJ -27.879 -13.549 Td[(spiek)28(\\246)-417(s)-1(i\\246)-417(mia\\252o,)-416(ale)-417(mimo)-417(to)-417(j)1(u\\273)-417(o)-27(d)-417(same)-1(go)-416(\\261)-1(witan)1(ia)-417(n)1(a)-417(p)1(lac)-1(u)-416(p)1(rz)-1(ed)-416(k)28(o\\261)-1(cio-)]TJ 0 -13.549 Td[(\\252e)-1(m)-422(han)1(dlar)1(z)-1(e)-423(zac)-1(z\\246)-1(l)1(i)-423(sta)28(wia\\242)-423(bu)1(dy)-422(p)1(rze)-1(r\\363\\273ne,)-422(a)-423(k)1(ram)27(y)84(,)-422(a)-423(sto\\252y)83(,)-422(p)1(\\252\\363)-28(c)-1(i)1(e)-1(n)1(n)28(ymi)]TJ 0 -13.55 Td[(dac)28(hami)-333(nakr)1(yte.)]TJ 27.879 -13.549 Td[(Za\\261)-314(sk)28(oro)-313(dzw)27(on)28(y)-313(zabi)1(m)27(ba\\252y)84(,)-313(s)-1(k)28(or)1(o)-314(i)1(c)27(h)-313(g\\252os)-314(r)1(adosn)28(y)-313(rozla\\252)-314(si\\246)-314(p)-27(o)-313(\\261)-1(wiec)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(to)-260(i)-259(p)-28(okr)1(\\363tc)-1(e)-260(n)1(a)-260(w)-1(y)1(s)-1(c)28(hni)1(\\246)-1(t)28(yc)28(h)-260(d)1(rogac)27(h)-259(i)-260(w)-260(tu)1(m)-1(an)1(ac)27(h)-259(kur)1(z)-1(a)28(wy)-260(j)1(\\246)-1(\\252y)-260(coraz)-260(c)-1(z\\246\\261)-1(cie)-1(j)]TJ 0 -13.549 Td[(tu)1(rk)28(ota\\242)-396(w)27(ozy)84(,)-396(a)-395(i)-396(p)1(ies)-1(i)-395(te)-1(\\273)-396(g\\246s)-1(t)1(o)-396(ci\\241)-28(gn\\246li,)-395(\\273e)-396(jak)-395(jeno)-395(b)28(y\\252o)-396(si\\246gn\\241\\242)-396(oki)1(e)-1(m,)-396(n)1(a)]TJ 0 -13.549 Td[(ws)-1(zystkie)-404(stron)28(y)84(,)-403(p)-28(o)-403(drogac)28(h,)-403(\\261)-1(cie\\273)-1(k)56(ami,)-404(n)1(a)-404(miedzac)27(h,)-403(cz)-1(erwieni\\252y)-403(s)-1(i)1(\\246)-404(k)28(obiec)-1(e)]TJ 0 -13.55 Td[(pr)1(z)-1(y)28(o)-27(dzie)-1(wy)-333(i)-333(biela\\252y)-333(rozwiane)-333(k)55(ap)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[(Ci\\241)-28(gn)1(\\246)-1(li)-334(r)1(z)-1(\\246dami,)-334(p)-27(o)-28(d)1(obni)1(e)-335(kiej)-334(te)-334(g\\246)-1(si,)-334(mieni\\241c)-334(s)-1(i\\246)-334(jeno)-334(w)-334(upal)1(e)-335(i)-334(w\\261)-1(r)1(\\363)-28(d)]TJ -27.879 -13.549 Td[(zb)-28(\\363\\273)-334(zielon)28(yc)28(h.)]TJ 358.232 -29.888 Td[(597)]TJ\nET\nendstream\nendobj\n1908 0 obj <<\n/Type /Page\n/Contents 1909 0 R\n/Resources 1907 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1907 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1912 0 obj <<\n/Length 10024     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(598)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(S\\252o\\253)1(c)-1(e)-377(nies)-1(\\252o)-377(si\\246)-378(wy\\273e)-1(j)-377(a)-377(wy\\273e)-1(j)-376(i)-377(p\\252yn)1(\\246)-1(\\252o)-377(kiej)-377(ptak)-377(z\\252o)-28(cis)-1(t)28(y)-377(p)-27(o)-377(m)-1(o)-27(dry)1(m)-1(,)]TJ -27.879 -13.549 Td[(cz)-1(yst)28(ym)-362(n)1(iebie,)-361(jar)1(z)-1(\\241c)-362(si\\246)-362(coraz)-361(barze)-1(j)-360(i)-361(nagrze)-1(w)28(a)-56(j)1(\\241c)-362(tak)-361(sz)-1(cz)-1(o)-27(drze,)-361(\\273)-1(e)-362(j)1(u\\273)-361(p)-28(o-)]TJ 0 -13.549 Td[(wietrze)-447(trz\\246)-1(s\\252o)-447(si\\246)-447(nad)-446(p)-27(olami;)-446(jes)-1(zc)-1(ze)-447(ta)-446(niekiej)-446(o)-28(d)-446(\\252\\241k)-447(c)28(h\\252\\363)-28(d)-446(lu)1(b)28(y)-446(p)-28(o)28(wia\\252)-446(i)]TJ 0 -13.549 Td[(zak)28(ole)-1(b)1(a\\252)-417(b)1(iele)-1(j)1(\\241c)-1(y)1(m)-1(i)-416(\\273ytami,)-416(jes)-1(zcz)-1(e)-417(i)-416(o)28(wsy)-417(zac)27(h)1(rz\\246)-1(\\261c)-1(i)1(\\252)-1(y)-416(cic)28(h)28(utk)28(o)-416(i)-416(p)-27(otrz\\246)-1(s\\252y)]TJ 0 -13.549 Td[(si\\246)-355(m)-1(\\252o)-28(d)1(e)-356(p)1(s)-1(zenicz)-1(n)1(e)-356(k)1(\\252os)-1(y)84(,)-355(za\\261)-356(r)1(oz)-1(kwit)1(\\252)-1(e)-355(ln)29(y)-355(sp\\252yn)1(\\246)-1(\\252y)-355(r)1(oz)-1(n)1(ie)-1(b)1(ies)-1(zc)-1(zon\\241)-355(stru)1(g\\241)]TJ 0 -13.55 Td[(kiej)-266(w)27(o)-27(dy)84(,)-267(ale)-267(j)1(u\\273)-267(z)-267(w)28(olna)-266(gr\\241\\273y\\252o)-267(si\\246)-267(ws)-1(zystk)28(o)-267(w)-267(s\\252onec)-1(zn)28(ym)-267(wrz\\241tku)-266(i)-266(c)-1(i)1(c)27(ho\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[(Hej,)-427(rad)1(os)-1(n)28(y)-427(ci)-427(to)-428(b)28(y)1(\\252)-428(d)1(z)-1(ie\\253)-427(i)-427(pr)1(a)27(wd)1(z)-1(iwie)-428(o)-27(dp)1(usto)27(wy)84(.)-427(Dz)-1(w)28(on)28(y)-427(bim)28(ba\\252y)]TJ -27.879 -13.549 Td[(d\\252u)1(go)-369(i)-369(te)-369(g\\252os)-1(y)-368(j\\246kliw)28(e)-370(l)1(e)-1(cia\\252y)-369(w)28(e)-370(\\261wiat)-369(tak)-369(r)1(oz)-1(g\\252o\\261nie,)-369(a\\273)-369(c)27(h)28(wia\\252y)-369(si\\246)-369(\\271)-1(d)1(\\271)-1(b)1(\\252a,)]TJ 0 -13.549 Td[(a\\273)-260(p\\252os)-1(zy\\252y)-260(si\\246)-260(ptaki)1(,)-260(ale)-260(\\261)-1(p)1(i\\273o)27(w)28(e)-261(serc)-1(a)-260(b)1(i\\252y)-260(w)28(c)-1(i)1(\\241\\273)-1(,)-260(b)1(i\\252y)-260(miaro)28(w)28(o,)-260(mo)-28(c)-1(n)1(o)-260(i)-260(g\\363rn)1(ie,)]TJ 0 -13.549 Td[(wynosz\\241c)-334(s)-1(i)1(\\246)-334(ku)-333(s\\252o)-1(\\253)1(c)-1(u)-332(t\\241)-334(p)1(rze)-1(j)1(m)27(u)1(j\\241c\\241)-334(p)1(ie)-1(\\261ni)1(\\241)-334(i)-333(w)28(o\\252aniem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Zm)-1(i\\252u)1(j)-333(s)-1(i)1(\\246)-1(!)-333(Zmi\\252uj)1(!)-333(Z)-1(mi\\252u)1(j!)]TJ 0 -13.55 Td[({)-333(Matk)28(o)-333(Pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(a!)-333(Mat)1(k)28(o!)-334(M)1(atk)28(o!)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(a)-334(p)1(rosz)-1(\\246!)-333(I)-334(j)1(a!)-333(I)-334(j)1(a!)-334(I)-333(ja!)]TJ 0 -13.549 Td[(\\221p)1(iew)27(a\\252y)-333(se)-1(rd)1(e)-1(cznie)-334(ob)29(w)27(o\\252uj)1(\\241c)-334(zaraze)-1(m)-334(u)1(ro)-28(czys)-1(te)-333(\\261)-1(wi\\246to.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-451(i)-451(cz)-1(u)1(\\252)-1(o)-450(s)-1(i\\246)-451(w)-451(p)-28(o)28(wietrzu)-451(\\261wi\\246)-1(t)28(y)-450(dzie)-1(\\253)-450(o)-28(d)1(pusto)28(wy;)-451(\\261w)-1(i)1(\\246)-1(to)-451(b)29(y\\252o)-451(p)-28(o)]TJ -27.879 -13.549 Td[(c)27(h)1(atac)27(h)1(,)-355(p)1(rzys)-1(tr)1(o)-56(j)1(on)28(yc)27(h)-354(ziele)-1(n)1(i\\241,)-354(w)-355(dalac)28(h)-354(prze)-1(b)1(\\252yskuj)1(\\241c)-1(yc)28(h)-354(kieb)28(y)-355(zapal)1(on)28(ymi)]TJ 0 -13.55 Td[(\\261w)-1(i)1(e)-1(cam)-1(i)1(,)-336(w)-335(rad)1(os)-1(n)28(yc)28(h)-335(g\\252os)-1(ac)28(h)-335(i)-336(w)-335(t)28(ym)-336(cos)-1(i)1(k,)-335(c)-1(ze)-1(go)-335(ni)1(e)-336(w)-1(y)1(p)-28(o)28(wiedzie)-1(\\242,)-335(a)-336(co)-335(s)-1(i\\246)]TJ 0 -13.549 Td[(un)1(os)-1(i)1(\\252o)-334(n)1(ad)-333(p)-28(ol)1(am)-1(i)-333(rozpi)1(e)-1(r)1(a)-56(j\\241c)-333(s)-1(erca)-334(l)1(ub\\241)-333(cic)27(h)1(o\\261)-1(ci\\241)-333(i)-334(w)28(es)-1(ele)-1(m.)]TJ 27.879 -13.549 Td[(A)-276(nar)1(\\363)-28(d)-276(\\261)-1(p)1(ies)-1(zy\\252)-276(t\\252umnie)-276(na)-276(o)27(w)28(e)-277(\\261wi\\246)-1(to)-276(i)-276(w)28(ali\\252)-276(z)-1(e)-277(wsz)-1(ystki)1(c)27(h)-276(stron.)-276(K)1(\\252)-1(\\246b)28(y)]TJ -27.879 -13.549 Td[(ku)1(rza)27(wy)-283(t)1(o)-28(c)-1(zy\\252y)-283(si\\246)-283(nieustann)1(ie)-283(nad)-282(w)-1(szys)-1(tk)1(imi)-283(dr)1(ogam)-1(i,)-282(tur)1(k)28(ota\\252y)-283(w)27(ozy)84(,)-283(r\\273a\\252y)]TJ 0 -13.549 Td[(k)28(oni)1(e)-1(,)-376(lec)-1(i)1(a\\252y)-377(g\\252osy)-376(pr)1(z)-1(er\\363\\273ne,)-376(w)-1(i)1(\\241z)-1(a\\252y)-376(s)-1(i)1(\\246)-377(g\\252o\\261)-1(n)1(e)-377(rozmo)27(wy)84(,)-376(c)-1(zas)-1(em)-377(kt)1(os)-1(ik)-376(wy-)]TJ 0 -13.55 Td[(c)27(h)29(yla\\252)-328(si\\246)-328(z)-328(p)-27(\\363\\252k)28(osz)-1(k)28(\\363)28(w)-328(i)-327(kr)1(z)-1(yk)56(a\\252)-327(do)-327(pies)-1(zyc)27(h)1(,)-327(gdzie)-328(z)-1(n)1(o)28(w)-1(u)-327(\\261pi)1(e)-1(sz)-1(y)1(\\252)-328(zap)-28(\\363\\271nion)29(y)]TJ 0 -13.549 Td[(dziad)-322(j)1(\\246)-1(kl)1(iwie)-323(pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(wu)1(j\\241c,)-323(a)-322(p)-27(o)-323(w)28(oz)-1(ac)28(h)-322(niekt\\363ry)1(c)27(h)-322(sz)-1(eptan)1(o)-323(p)1(ac)-1(ierze)-1(,)-322(p)-27(oz)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ra)-55(j\\241c)-294(d)1(ok)28(o\\252)-1(a)-293(z)-294(ni)1(e)-1(m)27(y)1(m)-294(p)-28(o)-27(dziw)27(em,)-294(gd)1(y\\273)-294(z)-1(i)1(e)-1(mia)-294(sto)-55(ja\\252a)-294(p)1(rzys)-1(tr)1(o)-56(j)1(ona)-293(kieb)28(y)-294(n)1(a)-294(te)]TJ 0 -13.549 Td[(go)-28(d)1(y)-328(w)28(e)-1(selne,)-327(c)-1(a\\252a)-328(w)28(e)-328(kwiatac)28(h)-327(i)-328(zieleni)-327(i)-328(ca\\252a)-328(w)-327(ptasic)27(h)-327(\\261piew)28(aniac)28(h,)-327(w)-328(c)27(h)1(rz\\246)-1(-)]TJ 0 -13.549 Td[(stac)27(h)-348(zb)-27(\\363\\273)-349(i)-348(br)1(z)-1(\\246ku)-348(p)1(s)-1(zc)-1(z\\363\\252)-348(a)-348(tak)55(a)-348(cud)1(na,)-348(n)1(ieob)-56(j)1(\\246)-1(ta,)-347(w)27(es)-1(elna)-348(i)-348(p)1(rze)-1(n)1(a)-56(j)1(\\261)-1(wi\\246ts)-1(za)]TJ 0 -13.55 Td[(w)-334(on)1(e)-1(j)-332(m)-1(o)-28(cy)-333(\\273)-1(y)1(w)-1(i)1(\\241c)-1(ej,)-333(ja\\273e)-334(p)1(ie)-1(r)1(s)-1(i)-333(zapiera\\252o.)]TJ 27.879 -13.549 Td[(Drzew)27(a)-357(p)-28(o)-357(m)-1(i)1(e)-1(d)1(z)-1(ac)28(h)-357(s)-1(to)-55(ja\\252y)-357(kieb)28(y)-357(na)-357(s)-1(tr)1(\\363\\273)-1(y)84(,)-358(zapatr)1(z)-1(on)1(e)-358(w)-358(s\\252o\\253ce)-1(,)-357(a)-358(d)1(o-)]TJ -27.879 -13.549 Td[(\\252e)-1(m)-337(j)1(ak)-337(ok)1(ie)-1(m)-337(si\\246gn\\241\\242)-337(le\\273)-1(a\\252y)-336(p)-28(ola)-336(z)-1(ielon)1(e)-1(,)-336(s)-1(zumi\\241ce)-338(j)1(ak)-337(w)28(o)-28(d)1(y)-337(wz)-1(b)1(ur)1(z)-1(on)1(e)-1(,)-336(i)-337(j)1(ak)]TJ 0 -13.549 Td[(w)28(o)-28(dy)-325(pr)1(z)-1(ew)27(ala\\252y)-325(si\\246)-326(niekiedy)-325(z)-1(e)-326(stron)29(y)-326(n)1(a)-326(stron\\246,)-325(bij)1(\\241c)-326(o)-326(ws)-1(zystkie)-326(d)1(rogi,)-325(m)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(dze)-349(i)-348(ro)28(wy)83(,)-348(co)-349(migota\\252y)-348(ki)1(e)-1(j)-348(te)-349(wst\\246)-1(gi)-348(kwietne)-348(s)-1(zc)-1(zo)-28(d)1(rz)-1(e)-348(prze)-1(p)1(lec)-1(ion)1(e)-349(pu)1(s)-1(zyst\\241)]TJ 0 -13.55 Td[(bi)1(e)-1(l\\241,)-253(\\273\\363\\252to\\261c)-1(i\\241)-253(i)-253(\\014ol)1(e)-1(tem;)-253(kwitn\\246\\252y)-253(ju)1(\\273)-254(b)-27(o)27(wiem)-254(o)28(w)28(e)-254(ostr\\363\\273ki)-253(przer\\363\\273)-1(n)1(e)-1(,)-253(k)1(w)-1(i)1(tn\\246\\252y)]TJ 0 -13.549 Td[(p)-27(o)27(w)28(o)-56(j)1(e)-281(pat)1(rz)-1(\\241ce)-281(z)-281(\\273ytn)1(ic)27(h)-280(g\\241sz)-1(cz)-1(\\363)28(w)-281(p)1(rzyta)-56(j)1(on)28(ymi,)-280(pac)28(hn)1(\\241c)-1(ymi)-280(o)-28(cz)-1(ami,)-280(kwitn)1(\\246)-1(-)]TJ 0 -13.549 Td[(\\252y)-362(mo)-28(d)1(raki,)-361(mie)-1(j)1(s)-1(cam)-1(i)1(,)-362(k)56(a)-56(j)-361(\\271dzie)-1(b)1(k)28(o)-362(wymi\\246)-1(k)1(\\252o,)-362(tak)-362(g\\246sto,)-362(j)1(akb)28(y)-362(t)1(am)-363(n)1(ieb)-28(o)-361(s)-1(i\\246)]TJ 0 -13.549 Td[(k\\252ad)1(\\252)-1(o,)-312(k)1(w)-1(i)1(tn\\246\\252y)-313(wyczki)-312(c)-1(a\\252ymi)-312(k)28(\\246)-1(p)1(am)-1(i)1(,)-312(a)-313(on)1(e)-313(jaskry)84(,)-312(a)-312(m)-1(l)1(e)-1(cz)-1(e)-313(i)-312(k)1(rw)27(a)28(w)28(e)-313(ost)27(y)84(,)-312(a)]TJ 0 -13.549 Td[(ogni)1(c)27(h)28(y)-340(i)-341(k)28(oni)1(c)-1(zyn)28(y)84(,)-341(a)-341(stokrotk)1(i,)-341(a)-341(r)1(umiank)1(i)-341(dziki)1(e)-1(,)-341(a)-341(t)28(y)1(s)-1(i\\241c)-341(in)1(s)-1(zyc)27(h)1(,)-341(o)-341(kt)1(\\363ryc)27(h)]TJ 0 -13.549 Td[(jeno)-291(sam)-292(Jez)-1(u)1(s)-292(pami\\246ta,)-292(b)-27(o)-28(\\242)-292(j)1(e)-1(m)28(u)-291(t)28(ylk)28(o)-291(kwitn)1(\\241)-292(i)-291(tak)-291(pac)28(hn)1(\\241,)-292(\\273e)-292(p)1(ros)-1(t)1(o)-292(cz)-1(ad)-291(b)1(i\\252)]TJ 0 -13.55 Td[(o)-28(d)-333(p)-27(\\363l)-333(kieb)28(y)-333(w)-334(k)28(o\\261c)-1(i)1(e)-1(le,)-333(gdy)-333(j)1(e)-1(gomo\\261)-1(\\242)-333(ok)55(ad)1(z)-1(a)-333(Sak)1(rame)-1(n)28(t)1(a.)]TJ 27.879 -13.549 Td[(T)83(en)-349(i)-350(\\363)28(w)-349(p)-28(o)-28(ci\\241)-28(ga\\252)-349(nose)-1(m)-349(z)-350(lub)-27(o\\261c)-1(i\\241,)-349(a)-349(k)28(onia)-349(batem)-350(ok\\252ad)1(a\\252)-350(i)-349(p)-28(o\\261pi)1(e)-1(sz)-1(a\\252,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-439(s)-1(\\252o\\253)1(c)-1(e)-439(p)1(ra\\273)-1(y)1(\\252o)-439(coraz)-439(ogni\\261cie)-1(j)1(,)-439(j)1(a\\273)-1(e)-439(\\261pi)1(k)-439(morzy\\252,)-438(\\273)-1(e)-439(j)1(u\\273)-439(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-438(sro)-28(d)1(z)-1(e)]TJ 0 -13.549 Td[(\\252b)-27(e)-1(m)-334(k)1(iw)27(a\\252.)]TJ 27.879 -13.549 Td[(T)83(o)-333(i)-333(p)-28(ok)1(r\\363tce)-334(Lip)-27(c)-1(e)-334(n)1(ap)-28(e\\252ni)1(\\252)-1(y)-333(si\\246)-334(n)1(aro)-28(d)1(e)-1(m)-333(p)-28(o)-333(wr\\246b)28(y)83(.)]TJ 0 -13.55 Td[(Jec)27(hal)1(i)-270(b)-28(o)28(wiem)-271(i)-270(j)1(e)-1(c)28(hali)-270(b)-27(ez)-271(p)1(rz)-1(estanku)1(,)-270(\\273)-1(e)-270(ju)1(\\273)-271(wsz)-1(\\246dy)-270(n)1(a)-271(d)1(rogac)28(h,)-270(d)1(ok)28(o\\252)-1(a)]TJ -27.879 -13.549 Td[(sta)27(wu)1(,)-238(p)-27(o)-28(d)-237(p\\252otami,)-237(w)-238(p)-27(o)-28(dw)28(\\363rzac)27(h)-237(i)-238(k)56(a)-55(j)-238(j)1(e)-1(n)1(o)-238(b)28(y)1(\\252)-1(o)-237(m)-1(o\\273na)-237(z)-1(ac)28(h)28(wyc)-1(i)1(\\242)-238(niec)-1(o)-237(c)-1(ieni)1(a,)]TJ\nET\nendstream\nendobj\n1911 0 obj <<\n/Type /Page\n/Contents 1912 0 R\n/Resources 1910 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1910 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1915 0 obj <<\n/Length 9819      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(599)]TJ -358.232 -35.866 Td[(usta)28(wia\\252y)-384(s)-1(i\\246)-385(w)28(ozy)-385(i)-384(wyp)1(rz)-1(\\246gano)-384(k)28(oni)1(e)-1(,)-384(b)-27(o)-385(n)1(a)-385(p)1(lacu)-384(prze)-1(d)-384(k)28(o\\261cio\\252e)-1(m)-385(b)29(y\\252a)-385(j)1(u\\273)]TJ 0 -13.549 Td[(tak)56(a)-333(g\\246)-1(st)28(w)27(a)-333(i)-333(tak)-333(w)27(\\363z)-334(sta)-56(j)1(a\\252)-334(p)1(rzy)-333(w)27(ozie,)-334(\\273e)-334(ledwie)-333(s)-1(i\\246)-333(prze)-1(cisn\\241\\252.)]TJ 27.879 -13.549 Td[(Lip)-27(c)-1(e)-333(prosto)-333(gin\\246\\252y)-333(w)-334(tej)-333(na)28(w)28(ale)-334(lu)1(dzi,)-333(w)27(oz\\363)28(w)-334(i)-333(k)28(oni)1(.)]TJ 0 -13.549 Td[(Rw)27(etes)-307(t)1(e)-1(\\273)-306(b)28(y\\252)-305(c)-1(oraz)-306(wi\\246ksz)-1(y)84(,)-306(gw)28(ary)-305(i)-306(kr)1(z)-1(yk)1(i)-306(p)-27(o)-28(d)1(nosi\\252y)-306(si\\246)-306(nad)-305(c)-1(a\\252\\241)-305(w)-1(si\\241.)]TJ -27.879 -13.549 Td[(Nar\\363)-27(d)-292(sz)-1(u)1(m)-1(i)1(a\\252)-292(kiej)-292(b)-27(\\363r)-292(r)1(oz)-1(k)28(oleban)29(y)83(.)-291(Kobiet)28(y)-292(ob)1(s)-1(iad)1(a\\252y)-292(sta)28(w)-293(mo)-28(cz)-1(y)1(\\242)-293(n)1(ogi,)-292(wzu-)]TJ 0 -13.55 Td[(w)28(a\\242)-451(tr)1(z)-1(ew)-1(i)1(ki)-450(a)-450(ogar)1(nia\\242)-450(si\\246)-451(p)1(rzys)-1(t)1(o)-56(jn)1(ie)-450(do)-450(k)28(o\\261c)-1(i)1(o\\252a)-1(,)-449(c)27(h)1(\\252)-1(op)1(i)-450(r)1(a)-56(jco)28(w)27(al)1(i)-450(ku)1(pami)]TJ 0 -13.549 Td[(zm)-1(a)28(wia)-56(j)1(\\241c)-482(s)-1(i)1(\\246)-482(z)-1(e)-482(soms)-1(iad)1(y)83(,)-481(za\\261)-482(dzie)-1(wu)1(c)27(h)28(y)-481(i)-481(c)27(h)1(\\252)-1(op)1(aki)-481(c)-1(i)1(s)-1(n)1(\\246)-1(\\252y)-481(s)-1(i\\246)-481(\\252)-1(ak)28(omie)-482(d)1(o)]TJ 0 -13.549 Td[(kr)1(am)-1(\\363)28(w)-383(i)-382(bu)1(d,)-382(a)-383(g\\252\\363)28(wnie)-383(d)1(o)-383(k)56(atary)1(nki)-382(gra)-55(j\\241ce)-1(j)1(,)-383(n)1(a)-383(kt)1(\\363re)-1(j)-382(j)1(aki\\261)-383(zwie)-1(r)1(z)-383(z)-1(amor-)]TJ 0 -13.549 Td[(ski,)-350(c)-1(ze)-1(r)1(w)27(ono)-350(pr)1(z)-1(ystro)-55(jon)28(y)-350(i)-350(z)-352(p)29(ys)-1(k)56(a)-350(p)-28(o)-28(d)1(obn)28(y)-350(do)-350(s)-1(tar)1(e)-1(go)-350(Miem)-1(ca,)-350(c)-1(zyni)1(\\252)-351(takie)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(i)1(e)-1(sz)-1(n)1(e)-334(sk)27(ok)1(i)-333(a)-334(\\014)1(gle)-1(,)-333(j)1(a\\273)-1(e)-333(s)-1(i\\246)-333(z)-1(a)-333(b)-28(ok)1(i)-333(brali)-333(ze)-334(\\261m)-1(i)1(e)-1(c)27(h)29(u.)]TJ 27.879 -13.549 Td[(Katar)1(ynk)56(a)-335(pr)1(z)-1(y)1(gryw)28(a\\252)-1(a)-335(za)28(wz)-1(i\\246c)-1(i)1(e)-336(i)-335(n)1(a)-335(tak)55(\\241)-335(n)29(ut\\246,)-335(ja\\273e)-336(n)1(iejednem)27(u)-334(kul)1(as)-1(y)]TJ -27.879 -13.55 Td[(dr)1(yga\\252y)83(,)-423(a)-425(j)1(akb)28(y)-424(d)1(o)-424(wt\\363ru)-424(i)-423(dziady)-424(u)1(s)-1(ad)1(o)28(w)-1(i)1(e)-1(n)1(i)-424(w)27(e)-424(dw)28(a)-424(rz\\246)-1(d)1(y)83(,)-424(o)-28(d)-423(kru)1(c)27(h)28(t)28(y)-424(d)1(o)]TJ 0 -13.549 Td[(pl)1(ac)-1(u)1(,)-288(j\\246\\252)-1(y)-288(wyci\\241)-28(ga\\242)-288(s)-1(w)28(o)-56(j)1(e)-289(p)1(ie)-1(\\261ni)-288(p)1(rosz)-1(aln)1(e)-1(,)-288(za\\261)-289(w)-288(s)-1(am)28(yc)27(h)-288(wr)1(otniac)28(h)-288(c)-1(men)28(tarza)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-257(\\261lep)28(y)84(,)-256(t\\252ust)28(y)-256(dziad)1(,)-256(c)-1(o)-255(go)-256(to)-256(z)-1(a)28(wdy)-255(pies)-257(p)1(ro)28(w)28(adz)-1(a\\252,)-255(i)-256(\\261piew)27(a\\252)-256(n)1(a)-56(j)1(\\273)-1(arl)1(iwie)-1(j)]TJ 0 -13.549 Td[(i)-333(na)-55(jcieniej)-333(wyc)-1(i)1(\\241)-28(ga\\252.)]TJ 27.879 -13.549 Td[(Ale)-276(sk)28(oro)-275(jeno)-275(z)-1(asygn)1(o)27(w)28(ali)-275(na)-275(s)-1(u)1(m\\246)-1(,)-275(nar)1(\\363)-28(d)-275(p)-27(orz)-1(u)1(c)-1(i)1(\\252)-276(zaba)28(wy)-275(i)-276(k)1(ie)-1(j)-275(w)28(e)-1(zbr)1(a-)]TJ -27.879 -13.55 Td[(n)28(y)-378(p)-27(otok)-379(l)1(un\\241\\252)-378(do)-378(k)28(o\\261)-1(cio\\252a)-379(i)-378(tak)-378(go)-379(n)1(ap)-28(c)28(ha\\252,)-379(j)1(a\\273)-1(e)-379(\\273ebra)-378(trze)-1(sz)-1(cza\\252)-1(y)84(,)-378(a)-379(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-472(p)1(rzyb)28(yw)28(ali)-471(n)1(o)27(wi)-471(gni)1(e)-1(t\\241c)-471(s)-1(i\\246,)-471(a)-471(na)28(w)27(et)-471(s)-1(w)28(arz\\241c)-1(,)-471(ale)-471(w)-1(i)1(\\246)-1(ksz)-1(o\\261\\242)-472(m)28(usia\\252a)]TJ 0 -13.549 Td[(osta\\242)-334(na)-333(dw)28(orze)-334(tu)1(l\\241c)-334(si\\246)-334(p)-27(o)-28(d)-333(m)27(u)1(ry)-333(i)-333(dr)1(z)-1(ew)27(a.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(jec)27(ha\\252o)-296(t)1(e)-1(\\273)-296(par)1(u)-296(k)1(s)-1(i\\246\\273)-1(y)-295(z)-296(dr)1(ugic)28(h)-296(p)1(ara\\014i)1(,)-296(zas)-1(iedl)1(i)-296(zaraz)-296(w)-296(k)28(onf)1(e)-1(sjon)1(a-)]TJ -27.879 -13.549 Td[(\\252ac)27(h)-333(p)-27(o)-28(d)-333(d)1(rze)-1(w)28(am)-1(i)-333(s\\252uc)27(h)1(a\\242)-334(sp)-28(o)28(wiedzi,)-333(nie)-333(bacz)-1(\\241c)-334(zgo\\252a)-334(n)1(a)-333(t\\252ok)-334(n)1(i)-333(na)-333(s)-1(p)1(iek)28(\\246)-1(.)]TJ 27.879 -13.55 Td[(A)-361(wiater)-361(b)29(y\\252)-361(c)-1(a\\252k)1(ie)-1(m)-361(u)1(s)-1(ta\\252)-361(i)-360(gor\\241c)-361(p)-27(o)-28(dn)1(os)-1(i\\252)-361(si\\246)-361(ju)1(\\273)-361(nie)-361(d)1(o)-361(w)-1(y)1(trzymania,)]TJ -27.879 -13.549 Td[(\\273ywy)-290(ogie\\253)-290(la\\252)-290(si\\246)-290(pr)1(os)-1(to)-290(n)1(a)-290(g\\252o)28(w)-1(y)84(,)-290(ale)-290(n)1(ar\\363)-28(d)-289(c)-1(ierp)1(liwie)-290(gni)1(\\363t\\252)-290(s)-1(i\\246)-290(p)1(rz)-1(y)-289(k)28(onf)1(e)-1(sjo-)]TJ 0 -13.549 Td[(na\\252ac)28(h)-333(i)-333(roi\\252)-333(p)-28(o)-333(sm)-1(\\246tarzu,)-333(n)1(a)-334(d)1(armo)-334(wysz)-1(u)1(kuj)1(\\241c)-334(cie)-1(n)1(ia)-333(lub)-332(jakiej)-333(b)1(\\241d\\271)-334(os\\252on)28(y)83(.)]TJ 27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(z)-464(b)28(y\\252)-464(w\\252)-1(a\\261ni)1(e)-465(wyc)27(h)1(o)-28(d)1(z)-1(i\\252)-464(ze)-465(ms)-1(z\\241,)-464(ki)1(e)-1(j)-464(d)1(opi)1(e)-1(ro)-464(Han)1(k)56(a)-464(z)-465(J\\363zk)55(\\241)]TJ -27.879 -13.549 Td[(nad)1(e)-1(sz\\252)-1(y)84(,)-432(ale)-432(\\273)-1(e)-432(nie)-432(s)-1(p)-27(os\\363b)-432(si\\246)-433(b)28(y)1(\\252o)-433(d)1(o)-28(cis)-1(n)1(\\241\\242)-433(c)28(ho)-28(\\242b)28(y)-432(n)1(a)27(w)28(et)-432(do)-432(dr)1(z)-1(wi)-432(k)28(o\\261c)-1(iel-)]TJ 0 -13.55 Td[(n)28(yc)28(h,)-333(to)-333(stan)1(\\246)-1(\\252y)-333(n)1(a)-333(s)-1(zc)-1(ze)-1(r)1(ym)-333(s)-1(\\252o\\253cu)-333(p)-27(o)-28(d)-332(park)56(an)1(e)-1(m,)-333(rozgl\\241d)1(a)-56(j\\241c)-333(si\\246)-334(w)-333(ci\\273)-1(b)1(ie,)-333(a)]TJ 0 -13.549 Td[(P)28(o)-28(c)28(h)28(w)28(alon)28(ym)-334(wit)1(a)-56(j\\241c)-333(z)-1(n)1(a)-56(j)1(om)-1(k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(Zaraz)-333(te\\273)-333(h)28(ukn)1(\\246)-1(\\252y)-332(organ)28(y)-332(i)-332(z)-1(acz)-1(\\246\\252a)-333(s)-1(i)1(\\246)-333(s)-1(u)1(m)-1(a,)-332(pr)1(z)-1(yk)1(l\\246)-1(k)1(li)-333(wsz)-1(ysc)-1(y)84(,)-332(p)-28(op)1(rzy-)]TJ -27.879 -13.549 Td[(siadali)-333(a)-333(j\\246li)-333(si\\246)-334(\\273arliwie)-333(pacie)-1(r)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ryc)27(h)29(t)28(yk)-340(i)-339(p)-27(o\\252)-1(u)1(dn)1(ie)-340(stan\\246\\252)-1(o,)-339(s\\252o\\253ce)-341(za)28(wis)-1(\\252o)-339(prosto)-340(n)1(ad)-339(g\\252)-1(o)28(w)28(am)-1(i)-339(lej\\241c)-340(w)28(a-)]TJ -27.879 -13.55 Td[(rem)-307(strasz)-1(li)1(w)-1(ym)-306(i)-307(wsz)-1(ystk)28(o)-307(j)1(akb)28(y)-306(p)-27(om)-1(d)1(la\\252o)-307(z)-307(on)1(e)-1(j)-306(spieki,)-306(\\273e)-307(ni)-306(li\\261\\242)-307(nie)-307(zadr)1(ga\\252,)]TJ 0 -13.549 Td[(ni)-361(p)1(tak)-361(prze)-1(l)1(e)-1(cia\\252,)-361(ni)-361(jaki)-361(b)1(\\241d\\271)-362(g\\252os)-362(p)-27(o)28(w)-1(i)1(a\\252)-362(z)-362(p)-27(\\363l.)-361(Nieb)-28(o)-361(wis)-1(i)1(a\\252o)-362(w)-362(mart)28(w)28(e)-1(j)-361(ci-)]TJ 0 -13.549 Td[(c)27(h)1(o\\261)-1(ci)-409(kiej)-409(ta)-409(s)-1(zklan)1(a)-409(ta\\015a)-409(rozpalon)1(a)-409(do)-409(bia\\252ego,)-409(a)-409(roz)-1(t)1(rz)-1(\\246sione)-410(n)1(ib)28(y)-409(wrz\\241tek)]TJ 0 -13.549 Td[(p)-27(o)27(wietrze)-409(\\261)-1(lepi)1(\\252o)-409(w)-1(y)1(\\273)-1(era)-55(j\\241c)-409(o)-28(c)-1(zy)84(.)-409(P)28(ar)1(z)-1(y\\252a)-409(ziem)-1(i)1(a,)-409(par)1(z)-1(y\\252y)-408(rozgrz)-1(an)1(e)-409(m)27(ur)1(y)83(,)-408(\\273)-1(e)]TJ 0 -13.549 Td[(kl\\246cz)-1(eli)-345(b)-27(ez)-346(r)1(uc)27(h)29(u,)-345(l)1(e)-1(d)1(w)-1(i)1(e)-346(j)1(u\\273)-345(zipi)1(\\241c)-346(i)-344(jakb)29(y)-345(si\\246)-345(z)-346(w)28(oln)1(a)-345(gotuj)1(\\241c)-345(w)-345(t)28(ym)-345(ukr)1(opie)]TJ 0 -13.549 Td[(s\\252)-1(on)1(e)-1(czn)28(ym.)]TJ 27.879 -13.55 Td[(Nar\\363)-27(d)-373(s)-1(i)1(\\246)-374(mo)-28(dl)1(i\\252)-373(w)-374(g\\252\\246b)-27(okiej)-373(c)-1(i)1(c)27(ho\\261ci,)-373(kto)-373(n)1(a)-373(ks)-1(i)1(\\241\\273)-1(ce)-1(,)-373(k)1(to)-373(na)-373(r\\363\\273a\\253cu,)-373(a)]TJ -27.879 -13.549 Td[(kto)-267(jeno)-268(t)28(ym)-268(szc)-1(ze)-1(r)1(ym)-268(s)-1(\\252o)28(w)28(e)-1(m)-268(Boga)-268(c)27(h)29(w)27(ali)1(\\252)-268(i)-268(wzdyc)28(hem)-268(s)-1(erdecz)-1(n)28(y)1(m)-1(.)-267(Uro)-28(cz)-1(y)1(s)-1(te)]TJ 0 -13.549 Td[(g\\252os)-1(y)-373(or)1(gan\\363)28(w)-374(la\\252y)-373(si\\246)-374(b)1(rz\\246)-1(kl)1(iw)-1(y)1(m)-1(,)-373(r)1(oz)-1(mo)-28(dl)1(on)28(ym)-374(p)1(ac)-1(i)1(e)-1(rzem)-1(,)-373(a)-373(niekiedy)-373(\\261pi)1(e)-1(w)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252)-362(o)-28(d)-361(o\\252tarza,)-362(czas)-1(em)-362(z)-1(a)-55(jazgota\\252y)-362(d)1(z)-1(w)28(onki)1(,)-362(a)-361(c)-1(zas)-1(em)-362(z)-1(ah)29(ucz)-1(a\\252)-362(gr)1(ub)1(ac)27(hn)29(y)]TJ 0 -13.549 Td[(g\\252os)-401(or)1(ganist)28(y)83(,)-399(z)-1(a\\261)-400(p)-27(ote)-1(m)-400(ci\\241)-28(gn\\246\\252y)-400(si\\246)-400(d\\252ugi)1(e)-1(,)-400(j)1(akb)28(y)-399(oniem)-1(i)1(a\\252e)-401(z)-400(\\273)-1(ar)1(u)-400(c)28(h)28(wile)-400(i)]TJ 0 -13.55 Td[(dy)1(m)27(y)-256(k)56(adzid)1(e)-1(\\252)-256(p\\252y)1(n\\246\\252)-1(y)-255(prze)-1(z)-256(wyw)28(arte)-257(d)1(rzwi)-256(k)28(o\\261)-1(cio\\252a)-256(opr)1(z)-1(\\246dza)-56(j)1(\\241c)-257(w)-256(niebi)1(e)-1(sk)56(a)27(w)28(\\241)]TJ 0 -13.549 Td[(i)-333(w)27(on)1(n\\241)-333(mg\\252)-1(\\246)-333(p)-28(o)-27(c)27(h)28(yl)1(one)-334(g\\252o)28(wy)-333(kl\\246c)-1(z\\241c)-1(yc)28(h.)]TJ\nET\nendstream\nendobj\n1914 0 obj <<\n/Type /Page\n/Contents 1915 0 R\n/Resources 1913 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1913 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1918 0 obj <<\n/Length 9161      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(600)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Szme)-1(r)-286(p)1(ac)-1(ierz\\363)28(w)-287(rozdzw)28(ania\\252)-286(s)-1(i)1(\\246)-287(nik)1(\\252ym)-287(i)-286(sypki)1(m)-287(c)27(h)1(rz\\246)-1(ste)-1(m)-286(w)-287(r)1(oz)-1(b)1(ie)-1(l)1(a\\252)-1(ej)]TJ -27.879 -13.549 Td[(cis)-1(zy)-261(gor\\241c)-1(ego)-262(p)1(rzyp)-27(o\\252udn)1(ia)-261(i)-262(gr)1(a\\252)-1(y)-261(w)-262(s\\252o\\253cu)-261(bar)1(w)-1(iste)-262(c)28(h)28(ust)28(y)83(,)-261(k)56(ap)-28(ot)28(y)-261(i)-261(w)27(e\\252niaki)1(,)]TJ 0 -13.549 Td[(\\273e)-239(ca\\252y)-238(sm\\246)-1(tar)1(z)-238(w)-1(i)1(dzia\\252)-238(si\\246)-238(kieb)28(y)-238(p)1(rzytrz\\241\\261ni\\246t)28(y)-238(kwiat)1(am)-1(i,)-237(co)-238(s)-1(i)1(\\246)-238(c)27(h)28(yl)1(i\\252y)-238(k)28(or)1(nie)-238(w)]TJ 0 -13.549 Td[(onej)-266(\\261wi\\246te)-1(j)-265(go)-28(dzini)1(e)-267(p)1(rze)-1(d)-265(P)28(anem)-1(,)-265(jak)28(ob)28(y)-266(u)1(ta)-56(j)1(on)28(ym)-266(w)-266(t)28(ym)-267(s\\252o\\253cu)-266(r)1(oz)-1(gor)1(z)-1(a\\252ym)]TJ 0 -13.549 Td[(i)-333(w)27(e)-333(w)-1(szys)-1(tk)1(ie)-1(j)-332(c)-1(ic)28(ho\\261c)-1(i)-333(\\261w)-1(i)1(ata...)]TJ 27.879 -13.55 Td[(\\233e)-248(t)28(ylk)28(o)-247(niekiedy)-247(c)-1(o)-247(tam)-248(kto\\261)-248(grzbi)1(e)-1(t)-247(prosto)28(w)27(a\\252,)-247(rozw)27(o)-28(d)1(z)-1(i)1(\\252)-248(r\\246c)-1(e)-248(i)-247(wz)-1(d)1(yc)27(h)1(a\\252)]TJ -27.879 -13.549 Td[(g\\252\\246)-1(b)-27(ok)28(o,)-333(to)-333(gdzies)-1(ik)-333(zap\\252ak)56(a\\252o)-334(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-333(alb)-27(o)-333(kwik)-333(k)28(o\\253ski)-333(roznosi\\252)-334(si\\246)-334(o)-27(d)-333(w)27(oz\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(Na)28(w)27(et)-412(d)1(z)-1(iad)1(y)-412(p)-27(o)-28(cic)27(h)1(\\252)-1(y)84(,)-412(t)28(y)1(le)-413(j)1(e)-1(n)1(o,)-412(co)-412(p)-27(oniekt\\363ry)-411(pr)1(z)-1(ez)-413(\\261pi)1(k)-412(wyry)1(w)27(a\\252)-412(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(j)-333(z)-333(g\\252)-1(o\\261ni)1(e)-1(j)1(s)-1(zym)-334(Zd)1(ro)28(w)27(a\\261)-334(i)-333(o)-333(ws)-1(p)-27(omo\\273)-1(enie)-333(z)-1(ask)55(amla\\252.)]TJ 27.879 -13.549 Td[(A)-378(upa\\252)-378(jes)-1(zc)-1(ze)-379(s)-1(i)1(\\246)-379(w)-1(zmaga\\252)-379(i)-378(tak)-379(p)1(ra\\273y\\252,)-379(j)1(a\\273)-1(e)-379(p)-27(ola)-378(i)-379(sady)-378(zalane)-379(p)-27(o\\273)-1(og\\241)]TJ -27.879 -13.549 Td[(roz\\273)-1(ar)1(z)-1(y)1(\\252)-1(y)-333(si\\246)-334(k)1(ie)-1(j)-333(ogi)1(e)-1(\\253)-333(migo)-28(c\\241c)-334(b)1(ia\\252a)27(wymi)-333(p\\252omieniami.)]TJ 27.879 -13.55 Td[(Cic)27(h)1(o\\261)-1(\\242)-236(b)28(y\\252a)-236(c)-1(or)1(az)-237(s)-1(enn)1(iejsz)-1(a,)-236(\\273e)-237(ju)1(\\273)-237(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-236(zac)27(h)1(rapa\\252)-236(na)-236(d)1(obre,)-236(niejeden)]TJ -27.879 -13.549 Td[(kiw)28(a\\252)-275(si\\246)-275(kl\\246c)-1(z\\241c)-1(y)84(,)-274(z)-1(a\\261)-275(dr)1(ud)1(z)-1(y)-274(w)-1(y)1(c)27(ho)-27(dzili)-274(s)-1(i\\246)-275(r)1(z)-1(e\\271)-1(wi\\242,)-275(gd)1(y\\273)-275(raz)-275(p)-27(o)-275(raz)-275(skrzyp)1(ia\\252y)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-334(s)-1(t)1(udzienn)1(e)-334(\\273)-1(u)1(ra)28(wie)-1(:)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-255(w)-254(c)-1(zas)-255(p)1(ro)-28(ce)-1(sji,)-254(k)1(ie)-1(j)-254(k)28(o\\261ci\\363\\252)-255(zatrz\\241s)-1(\\252)-254(si\\246)-255(o)-28(d)-254(\\261pi)1(e)-1(w)28(a\\253,)-254(kiej)-254(j)1(\\246)-1(\\252y)-254(w)27(al)1(i\\242)]TJ -27.879 -13.549 Td[(c)27(h)1(or\\241)-28(gwie,)-234(a)-235(za)-234(nimi)-234(wyc)27(h)1(o)-28(dzi\\252)-234(ks)-1(i)1(\\241dz)-235(p)-27(o)-28(d)-234(cz)-1(erw)28(on)28(ym)-235(b)1(ald)1(ac)27(hem)-235(z)-235(monstran)1(c)-1(j)1(\\241)]TJ 0 -13.55 Td[(w)-330(r\\246)-1(k)56(ac)28(h,)-330(p)1(ro)28(w)27(ad)1(z)-1(on)28(y)-330(p)1(rze)-1(z)-330(s)-1(am)28(yc)27(h)-330(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic\\363)28(w,)-330(nar\\363)-27(d)-330(pr)1(z)-1(ec)27(kn)1(\\241\\252)-331(i)-330(r)1(usz)-1(y\\252)-330(wraz)]TJ 0 -13.549 Td[(z)-334(p)1(ro)-28(ce)-1(sj\\241.)]TJ 27.879 -13.549 Td[(Zadzw)27(on)1(i\\252y)-339(d)1(z)-1(w)28(on)28(y)84(,)-339(\\261piew)-339(bu)1(c)27(h)1(n\\241\\252)-339(ze)-340(wsz)-1(ystki)1(c)27(h)-338(gardzieli)-339(i)-338(bi\\252)-339(j)1(a\\273)-1(e)-339(k)56(a)-56(j)1(\\261)]TJ -27.879 -13.549 Td[(ku)-244(s\\252o\\253cu,)-244(mo)-28(c)-1(n)29(y)83(,)-244(ogromn)28(y)84(,)-244(s)-1(erd)1(e)-1(cz)-1(n)28(y)84(,)-244(a)-244(pro)-27(c)-1(es)-1(j)1(a)-245(op)1(\\252yw)27(a\\252a)-244(z)-245(w)28(olna)-244(bi)1(a\\252)-1(e,)-244(rozpa-)]TJ 0 -13.549 Td[(lon)1(e)-223(m)27(ur)1(y)-223(k)28(o\\261c)-1(i)1(o\\252a)-223(kiej)-222(ta)-223(r)1(z)-1(ek)55(a)-222(w)27(ez)-1(b)1(ran)1(a.)-223(Cze)-1(rw)28(on)28(y)-222(bald)1(ac)27(h)-222(p\\252y)1(n\\241\\252)-223(n)1(a)-223(pr)1(z)-1(edzie,)]TJ 0 -13.55 Td[(ca\\252)-1(y)-372(w)-373(dymac)27(h)-372(k)55(ad)1(z)-1(i)1(e)-1(ln)29(yc)27(h)1(,)-373(\\273)-1(e)-373(jeno)-373(c)28(h)28(wilami)-373(b)1(\\252ys)-1(k)56(a\\252a)-373(z\\252)-1(ot)1(a)-373(m)-1(on)1(s)-1(tr)1(ancja,)-373(mi-)]TJ 0 -13.549 Td[(gota\\252y)-281(rz\\246)-1(d)1(y)-281(\\261)-1(wiate\\252,)-282(r)1(oz)-1(win)1(i\\246te)-282(c)27(h)1(or\\241)-28(gwie)-282(n)1(ib)28(y)-281(p)1(tac)-1(t)28(w)28(o)-282(\\252op)-27(ota\\252o)-282(n)1(ad)-281(mro)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(g\\252\\363)28(w)-1(,)-287(c)27(h)28(wia\\252y)-287(s)-1(i)1(\\246)-289(ob)1(razy)-288(p)1(rz)-1(y)1(s)-1(tr)1(o)-56(j)1(one)-288(w)-288(tiu)1(le)-288(a)-288(ws)-1(t\\246gi,)-287(i)-288(bi)1(\\252y)-288(rad)1(o\\261)-1(n)1(ie)-288(dzw)27(on)29(y)83(,)-287(i)]TJ 0 -13.549 Td[(grzmia\\252y)-291(organ)28(y)84(,)-291(a)-291(nar)1(\\363)-28(d)-291(\\261pi)1(e)-1(w)28(a\\252)-292(z)-291(un)1(ies)-1(ieni)1(e)-1(m,)-291(c)-1(a\\252y)1(m)-292(se)-1(r)1(c)-1(em)-292(i)-291(wsz)-1(y)1(s)-1(tk)56(\\241)-291(du)1(s)-1(z\\241)]TJ 0 -13.549 Td[(t\\246s)-1(kl)1(iw)27(\\241)-334(wyn)1(os)-1(i)1(\\252)-335(si\\246)-334(k)56(a)-56(j\\261)-334(ja\\273e)-334(w)-335(n)1(iebiosy)83(,)-333(ja\\273e)-335(ku)-333(te)-1(m)28(u)-334(s\\252o\\253cu)-334(p)1(rz)-1(ena)-55(j\\261wi\\246)-1(t)1(s)-1(ze)-1(-)]TJ 0 -13.55 Td[(m)27(u)1(.)]TJ 27.879 -13.549 Td[(.)-333(.)-333(.)-333(.)-333(.)-334(.)-333(.)-333(.)-333(.)-333(.)-333(.)-333(.)]TJ 0 -13.549 Td[(Za\\261)-427(p)-27(o)-426(p)1(ro)-28(ce)-1(sji,)-425(kiej)-426(zno)28(wu)-426(wz)-1(i)1(\\246)-1(li)-425(o)-28(dp)1(ra)28(w)-1(i)1(a\\242)-427(n)1(ab)-28(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-426(i)-426(kiej)-426(zno)28(wu)]TJ -27.879 -13.549 Td[(g\\252os)-1(y)-374(or)1(gan\\363)28(w)-375(zah)28(ucza\\252)-1(y)-374(p)1(rze)-1(j)1(m)27(u)1(j\\241co,)-375(n)1(a)-375(sm\\246)-1(tar)1(z)-1(u)-374(zrob)1(i\\252o)-375(si\\246)-375(cic)27(h)1(o)-374(jak)-374(pr)1(z)-1(\\363-)]TJ 0 -13.549 Td[(dzi,)-330(ale)-331(j)1(u\\273)-331(n)1(ikto)-330(nie)-330(drze)-1(ma\\252,)-330(w)-1(zmog\\252y)-331(si\\246)-331(j)1(e)-1(n)1(o)-331(sz)-1(ept)28(y)-330(pacierz)-1(\\363)28(w,)-330(rozg\\252o\\261)-1(n)1(ia\\252y)]TJ 0 -13.55 Td[(wz)-1(d)1(yc)27(h)29(y)83(,)-318(d)1(z)-1(i)1(ady)-318(j)1(u\\273)-318(p)-27(obrz\\246kiw)28(a)-1(\\252y)-317(w)-318(m)-1(i)1(s)-1(ec)-1(zki,)-318(a)-317(tu)-318(i)-317(o)27(wd)1(z)-1(ie)-318(j)1(\\246)-1(li)-317(z)-319(cic)27(h)1(a)-318(p)-27(ogw)27(a-)]TJ 0 -13.549 Td[(rza\\242)-1(.)]TJ 27.879 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-1(e)-379(p)-27(o)28(wy\\252az)-1(il)1(i)-379(z)-379(k)28(o\\261cio\\252a,)-379(n)1(a)-379(d)1(armo)-379(szuk)56(a)-56(j)1(\\241c)-379(c)-1(ieni)1(a)-379(i)-378(k)56(a)-56(j)-378(b)28(y)-378(p)1(rzy-)]TJ -27.879 -13.549 Td[(si\\241\\261)-1(\\242,)-252(dop)1(iero)-252(Jam)27(b)1(ro\\273)-253(wygn)1(a\\252)-252(lud)1(z)-1(i)-252(sp)-28(o)-27(d)-252(jak)1(ie)-1(go\\261)-252(drzew)27(a)-252(i)-252(naznosi\\252)-252(im)-252(s)-1(to\\252k)28(\\363)28(w,)]TJ 0 -13.549 Td[(\\273e)-334(z)-1(asiedli)-333(p)-27(oredza)-56(j)1(\\241c)-334(m)-1(i)1(\\246)-1(d)1(z)-1(y)-333(sob\\241.)]TJ 27.879 -13.549 Td[(By\\252)-342(i)-342(ten)-342(z)-342(W)83(ol)1(i,)-342(ale)-342(nie)-342(usiedzia\\252)-342(w)-342(m)-1(i)1(e)-1(j)1(s)-1(cu,)-342(a)-342(j)1(e)-1(n)1(o)-342(c)-1(i)1(\\246)-1(giem)-342(s)-1(i\\246)-342(kr)1(\\246)-1(ci\\252)-342(p)-28(o)]TJ -27.879 -13.55 Td[(sm)-1(\\246tarzu)-343(i)-343(co)-343(d)1(o)-56(jr)1(z)-1(a\\252)-343(zna)-55(jome)-1(go)-343(Li)1(p)-28(cz)-1(ak)56(a,)-343(p)1(rzys)-1(t)1(a)27(w)28(a\\252)-343(do)-343(n)1(ie)-1(go)-342(i)-343(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lsk)28(o)]TJ 0 -13.549 Td[(zagadyw)28(a\\252,)-333(\\273)-1(e)-334(n)1(a)27(w)28(et)-334(Han)1(k)28(\\246)-334(zobacz)-1(y\\252)-333(i)-333(z)-1(ar)1(az)-334(s)-1(i)1(\\246)-334(do)-333(ni)1(e)-1(j)-333(p)1(rze)-1(cis)-1(n)1(\\241\\252.)]TJ 27.879 -13.549 Td[({)-333(W)83(r)1(\\363)-28(c)-1(i)1(\\252)-334(to)-333(ju)1(\\273)-334(w)28(as)-1(z?)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(za\\261)-1(b)29(y)-333(ta)-334(wr\\363)-27(c)-1(i\\252!)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(o)-28(d)1(obn)1(o)-334(j)1(e)-1(\\271dzili\\261c)-1(i)1(e)-334(p)-27(o)-334(n)1(ie)-1(go?)]TJ 0 -13.55 Td[({)-292(Ju\\261ci,)-292(z)-1(ar)1(no)-292(p)-27(o)-292(o)-56(jco)28(wym)-293(p)-27(o)-28(c)28(ho)28(wku)-292(p)-27(o)-56(j)1(e)-1(c)27(h)1(a\\252am)-1(,)-291(ale)-293(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ieli)-292(w)-292(ur)1(z)-1(\\246-)]TJ -27.879 -13.549 Td[(dzie,)-333(c)-1(o)-333(go)-333(puszc)-1(z\\241)-334(d)1(opiero)-333(z)-1(a)-333(t)28(yd)1(z)-1(ie\\253,)-333(to)-333(n)1(ib)28(y)-333(w)27(e)-333(\\261)-1(ro)-27(d\\246.)]TJ\nET\nendstream\nendobj\n1917 0 obj <<\n/Type /Page\n/Contents 1918 0 R\n/Resources 1916 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1903 0 R\n>> endobj\n1916 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1921 0 obj <<\n/Length 7568      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(601)]TJ -330.353 -35.866 Td[({)-333(Jak\\273e)-334(tam)-334(z)-334(k)56(au)1(c)-1(j)1(\\241,)-334(zap\\252acicie)-1(?)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(tam)-333(o)-334(to)-333(ju)1(\\273)-334(Ro)-28(c)28(ho)-333(z)-1(ab)1(ie)-1(ga)-333({)-333(wyrze)-1(k\\252a)-333(os)-1(t)1(ro\\273)-1(n)1(ie.)]TJ 0 -13.549 Td[({)-333(Je)-1(\\261li)-333(ni)1(e)-334(mac)-1(ie)-334(p)1(ieni\\246dzy)83(,)-333(to)-333(j)1(a)-334(za)-334(An)29(tk)56(a)-334(p)-27(or\\246c)-1(z\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-322(B)-1(\\363g)-322(zap\\252a\\242)-1(!)-322({)-322(s)-1(c)28(h)28(yli)1(\\252a)-323(m)28(u)-322(s)-1(i)1(\\246)-323(do)-322(n\\363g.)-322({)-322(Mo\\273e)-323(Ro)-28(c)27(h)1(o)-323(j)1(ak)28(o\\261)-323(se)-323(p)-28(or)1(e)-1(d)1(z)-1(i)1(,)-323(a)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-333(nie,)-333(to)-333(m)27(usi)-333(s)-1(i)1(\\246)-334(s)-1(zuk)56(a\\242)-334(i)1(nsz)-1(ego)-334(sp)-27(os)-1(ob)1(u.)]TJ 27.879 -13.55 Td[({)-333(P)28(ami\\246)-1(ta)-55(jcie,)-333(\\273)-1(e)-334(j)1(ak)-333(b)-28(\\246dzie)-334(p)-27(otrze)-1(b)1(a,)-333(p)-28(or)1(\\246)-1(cz)-1(\\246)-333(z)-1(a)-333(niego.)]TJ 0 -13.549 Td[(P)28(osz)-1(ed\\252)-473(d)1(alej)-473(do)-472(Jagusi,)-473(siedz\\241c)-1(ej)-473(wp)-27(o)-28(dl)1(e)-474(p)-27(o)-28(d)-472(m)27(ur)1(e)-1(m)-473(wraz)-473(z)-473(m)-1(atk)56(\\241)-473(i)]TJ -27.879 -13.549 Td[(wielc)-1(e)-398(zamo)-28(dl)1(onej,)-397(ale)-398(n)1(ie)-398(nal)1(az)-1(\\252sz)-1(y)-397(s)-1(p)-27(osobn)1(e)-1(go)-397(s)-1(\\252o)28(w)27(a,)-397(to)-397(jeno)-397(pr)1(z)-1(e\\261)-1(miec)27(h)1(n\\241\\252)]TJ 0 -13.549 Td[(si\\246)-334(do)-333(n)1(ie)-1(j)-333(i)-333(za)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-334(d)1(o)-334(sw)27(oi)1(c)27(h.)]TJ 27.879 -13.549 Td[(P)28(olecia\\252a)-327(za)-327(ni)1(m)-327(o)-28(c)-1(zami,)-327(p)1(iln)1(ie)-327(pr)1(z)-1(epatr)1(uj)1(\\241c)-327(dzie)-1(d)1(z)-1(iczki,)-326(tak)-327(wystro)-55(jon)1(e)-1(;)]TJ -27.879 -13.549 Td[(ja\\273e)-236(dziw)-236(b)1(ra\\252,)-236(a)-235(takie)-236(b)1(ie)-1(l)1(u\\261kie)-236(na)-235(g\\246)-1(b)1(ie)-236(i)-236(tak)-235(w)27(ci\\246te)-236(w)-236(pasie,)-236(\\273e)-236(Je)-1(zus!)-236(P)29(ac)27(hn)1(ia\\252o)]TJ 0 -13.55 Td[(te\\273)-334(o)-28(d)-333(n)1(ic)27(h)-333(ki)1(e)-1(b)28(y)-333(z)-333(te)-1(go)-333(try)1(bul)1(arza.)]TJ 27.879 -13.549 Td[(Ch\\252o)-28(d)1(z)-1(i)1(\\252)-1(y)-319(si\\246)-320(c)-1(zyms)-1(i\\242,)-319(c)-1(o)-319(s)-1(i\\246)-320(wid)1(z)-1(ia\\252o)-319(nib)29(y)-320(te)-320(r)1(oz)-1(cz)-1(ap)1(ie)-1(r)1(z)-1(on)1(e)-320(ogon)28(y)-320(i)1(nd)1(y-)]TJ -27.879 -13.549 Td[(cz)-1(e.)-374(P)29(aru)-373(m\\252o)-28(dyc)28(h)-373(dziedzic)-1(\\363)28(w)-374(zagl\\241d)1(a\\252)-1(o)-373(im)-374(w)-373(o)-28(cz)-1(y)-373(i)-373(tak)-373(s)-1(i\\246)-373(c)-1(osik)-373(\\261)-1(miali)1(,)-374(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(lu)1(dzie)-334(si\\246)-334(t)28(ym)-334(n)1(iem)-1(a\\252o)-333(gorsz)-1(y)1(li.)]TJ 27.879 -13.549 Td[(Naraz)-345(k)55(a)-55(j\\261)-346(w)-345(k)28(o\\253cu)-345(ws)-1(i,)-345(j)1(akb)28(y)-345(na)-345(mo\\261)-1(cie)-346(p)1(rzy)-346(m\\252yn)1(ie)-1(,)-345(zatur)1(k)28(ota\\252y)-346(ostro)]TJ -27.879 -13.55 Td[(w)28(oz)-1(y)-333(i)-333(k\\252\\246b)28(y)-333(kur)1(z)-1(a)28(wy)-333(w)-1(zbi)1(\\252)-1(y)-333(si\\246)-334(p)-27(onad)-332(drze)-1(w)28(a.)]TJ 27.879 -13.549 Td[({)-333(Jakie\\261)-334(sp)-28(\\363\\271nion)1(e)-334({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(Pietrek)-333(do)-333(Hank)1(i.)]TJ 0 -13.549 Td[({)-333(\\221wiec)-1(e)-334(j)1(uc)28(h)28(y)-333(b)-28(\\246d\\241)-333(gasili)-333({)-333(dorzuci\\252)-333(ktosik.)]TJ 0 -13.549 Td[(A)-362(dr)1(ud)1(z)-1(y)-362(j)1(\\246)-1(l)1(i)-362(s)-1(i)1(\\246)-363(p)1(rz)-1(ec)27(h)28(y)1(la\\242)-363(p)1(rze)-1(z)-362(m)27(u)1(r)-362(ogro)-27(dze)-1(n)1(ia)-362(i)-362(c)-1(i)1(e)-1(k)56(a)28(wie)-363(zaz)-1(i)1(e)-1(ra\\242)-362(na)]TJ -27.879 -13.549 Td[(dr)1(ogi)-333(obiega)-56(j)1(\\241c)-1(e)-334(sta)28(w.)]TJ 27.879 -13.55 Td[(A)-302(p)-27(okr\\363tce)-1(,)-301(w)-1(\\261r\\363)-28(d)-301(wrz)-1(askli)1(w)-1(y)1(c)27(h)-302(j)1(az)-1(got\\363)28(w)-302(i)-302(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(a\\253)1(,)-302(uk)56(aza\\252)-302(s)-1(i\\246)-302(c)-1(a\\252y)]TJ -27.879 -13.549 Td[(rz\\241d)-333(ogromn)28(yc)28(h)-333(br)1(yk,)-333(nak)1(ryt)28(yc)28(h)-333(bia\\252ymi)-333(bu)1(dami.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(M)1(iem)-1(cy!)-333(Miemc)-1(y)-333(z)-334(P)28(o)-27(dles)-1(i)1(a!)-333({)-334(wykr)1(z)-1(y)1(kn\\241\\252)-333(ktosik.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-334(i)-333(p)1(ra)28(wda)-333(to)-334(b)29(y\\252a.)]TJ 0 -13.549 Td[(Jec)27(hal)1(i)-340(w)-340(kilk)56(ana\\261cie)-341(b)1(ryk)1(,)-340(z)-1(ap)1(rz\\246)-1(\\273on)28(yc)27(h)-339(w)-340(t\\246)-1(gi)1(e)-341(k)28(on)1(ie)-1(;)-340(p)-27(o)-28(d)-339(p\\252\\363)-28(cienn)28(y)1(m)-1(i)]TJ -27.879 -13.55 Td[(bu)1(dami)-238(widn)1(ia\\252)-239(wsz)-1(elki)-238(spr)1(z)-1(\\246t)-239(d)1(om)-1(o)28(wy)-238(i)-238(s)-1(i)1(e)-1(d)1(z)-1(ia\\252y)-238(k)28(ob)1(ie)-1(t)28(y)-238(i)-238(dziec)-1(i,)-238(za\\261)-239(ru)1(de,)-238(opa-)]TJ 0 -13.549 Td[(s\\252)-1(e)-321(Miemc)-1(e)-322(z)-321(fa)-55(jami)-321(w)-322(z\\246)-1(b)1(ac)27(h)-321(sz\\252)-1(y)-321(p)1(ies)-1(zo.)-321(Wielkie)-321(psy)-321(le)-1(cia\\252y)-321(p)-27(ob)-28(ok)1(,)-321(s)-1(zc)-1(ze)-1(r)1(z)-1(\\241c)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(k\\252y)-334(i)-333(o)-27(dsz)-1(cz)-1(ekuj)1(\\241c)-334(li)1(p)-28(ec)27(ki)1(m)-1(,)-333(kt\\363r)1(e)-334(raz)-334(w)-333(raz)-334(za)-56(j)1(adl)1(e)-334(do)-28(ciera\\252y)83(.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-407(r)1(z)-1(u)1(c)-1(i\\252)-407(si\\246)-407(p)1(atrze)-1(\\242)-407(na)-406(nic)28(h,)-406(a)-407(wie)-1(l)1(u)-407(p)1(rze)-1(\\252azi\\252o)-407(ogro)-28(d)1(z)-1(eni)1(e)-407(i)-407(lec)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.549 Td[(sp)-28(o)-55(jrze\\242)-334(z)-334(bl)1(is)-1(k)56(a.)]TJ 27.879 -13.55 Td[(Mi)1(e)-1(mc)-1(e)-352(p)1(rz)-1(eje\\273d\\273a\\252)-1(y)-351(s)-1(t)1(\\246)-1(p)1(a,)-352(ledwie)-352(si\\246)-352(prze)-1(cisk)56(a)-56(j\\241c)-352(p)1(rze)-1(z)-352(g\\246s)-1(t)28(w)27(\\246)-352(w)28(oz)-1(\\363)28(w)-352(i)]TJ -27.879 -13.549 Td[(k)28(oni)1(,)-410(ale)-410(\\273aden)-410(n)1(a)28(w)27(et)-410(pr)1(z)-1(ed)-409(k)28(o\\261)-1(cio\\252e)-1(m)-410(n)1(ie)-410(z)-1(d)1(j\\241\\252)-410(k)56(asz)-1(ki)1(e)-1(tu)-409(ni)-409(k)28(ogo)-410(p)-27(oz)-1(d)1(ro)28(wi\\252.)]TJ 0 -13.549 Td[(Jeno)-455(o)-28(czy)-455(s)-1(i)1(\\246)-456(i)1(m)-456(j)1(arzy\\252y)-455(i)-454(bro)-27(dy)-455(t)1(rz)-1(\\246s\\252)-1(y)84(,)-455(j)1(akb)28(y)-454(z)-1(e)-455(z)-1(\\252o\\261c)-1(i)1(.)-455(P)28(ogl\\241d)1(ali)-455(w)-455(n)1(ar\\363)-28(d)]TJ 0 -13.549 Td[(har)1(do,)-333(ki)1(e)-1(j)-333(te)-334(zb)-27(\\363)-56(j)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Plu)1(dr)1(aki)-333(\\261)-1(cie)-1(r)1(wie)-1(!)]TJ 0 -13.549 Td[({)-333(Kob)28(yl)1(e)-334(s)-1(y)1(n)28(y!)]TJ 0 -13.55 Td[({)-333(\\221wi\\253)1(s)-1(ki)1(e)-334(p)-28(o)-27(dogoni)1(a!)]TJ 0 -13.549 Td[({)-333(Sob)1(ac)-1(ze)-334(p)-27(o)-28(c)-1(i)1(otki!)]TJ 0 -13.549 Td[(P)28(osypa\\252y)-333(si\\246)-334(wyzw)-1(i)1(s)-1(k)56(a)-333(kiej)-333(k)56(am)-1(ieni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(co,)-333(na)-333(c)-1(zyj)1(e)-1(m)-334(stan)1(\\246)-1(\\252o,)-333(Miemc)-1(e?)-334({)-333(krzykn)1(\\241\\252)-334(k)1(u)-333(nim)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Kto)-333(k)28(ogo)-334(p)1(rze)-1(p)1(ar\\252?)]TJ 0 -13.55 Td[({)-333(Str)1(ac)27(h)-333(w)28(am)-334(c)27(h)1(\\252)-1(op)1(s)-1(k)1(ie)-1(j)-332(pi\\246\\261)-1(ci,)-333(co?)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(jt)1(a,)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(o)-28(d)1(pust,)-333(zaba)28(wim)27(y)-333(si\\246)-334(w)-333(k)55(ar)1(c)-1(zm)-1(i)1(e)-1(!)]TJ\nET\nendstream\nendobj\n1920 0 obj <<\n/Type /Page\n/Contents 1921 0 R\n/Resources 1919 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1919 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1925 0 obj <<\n/Length 8481      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(602)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Nie)-334(o)-27(dzyw)27(al)1(i)-333(s)-1(i\\246)-333(z)-1(acina)-55(j\\241c)-334(j)1(e)-1(n)1(o)-334(k)28(on)1(ie)-334(i)-333(wielce)-334(\\261)-1(p)1(ies)-1(z\\241c)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(oln)1(iej,)-333(pl)1(ud)1(ry)83(,)-333(b)-27(o)-333(p)-28(or)1(tki)-333(p)-28(ogu)1(bi)1(ta.)]TJ 0 -13.549 Td[(Jaki)1(\\261)-394(c)27(h)1(\\252opak)-393(\\261m)-1(i)1(gn\\241\\252)-393(na)-393(n)1(ic)27(h)-392(k)55(amieniem,)-393(a)-393(dru)1(gie)-393(te)-1(\\273)-393(j\\246\\252y)-393(c)-1(eg\\252y)-393(rw)28(a\\242)-1(,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-333(pr)1(z)-1(ywt\\363r)1(z)-1(y\\242,)-333(ale)-334(w)-333(p)-28(or)1(\\246)-334(ic)27(h)-332(przytr)1(z)-1(ymali.)]TJ 27.879 -13.549 Td[({)-333(Da)-56(j)1(ta)-334(sp)-27(ok)28(\\363)-56(j)1(,)-334(c)28(h\\252op)1(aki,)-333(niec)27(h)-333(o)-27(dejd)1(z)-1(ie)-333(ta)-334(zaraza.)]TJ 0 -13.55 Td[({)-333(A)-334(\\273e)-1(b)29(y)-333(w)27(as)-334(m\\363r)-333(ni)1(e)-334(omin\\241\\252,)-333(psy)-333(heret)28(yc)27(ki)1(e)-1(.)]TJ 0 -13.549 Td[(A)-333(kt\\363ra\\261)-333(z)-334(lip)-27(e)-1(c)28(kic)28(h)-333(w)-1(y)1(c)-1(i\\241)-27(gn\\246\\252)-1(a)-333(p)1(i\\246)-1(\\261c)-1(i)1(e)-334(i)-333(z)-1(ak)1(rz)-1(y)1(c)-1(za\\252a)-334(za)-334(n)1(imi:)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(c)27(h)-333(w)28(as)-334(wytracili)-333(co)-334(d)1(o)-334(j)1(e)-1(d)1(nego)-334(k)1(ie)-1(j)-332(psy)-334(w\\261c)-1(i)1(e)-1(k\\252e...)]TJ 0 -13.549 Td[(Pr)1(z)-1(ejec)27(h)1(ali)-340(w)-1(r)1(e)-1(sz)-1(cie)-341(gin)1(\\241c)-341(na)-340(top)-28(ol)1(o)27(w)28(e)-1(j)1(,)-340(\\273)-1(e)-341(jeno)-340(z)-341(c)-1(i)1(e)-1(n)1(i\\363)28(w)-341(i)-340(kurza)28(wy)-341(sz)-1(\\252y)]TJ -27.879 -13.549 Td[(s\\252)-1(ab)1(n\\241ce)-334(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(an)1(ia)-333(i)-334(t)1(urk)28(ot)28(y)-333(w)28(oz)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(Wtedy)-354(tak)56(a)-354(rado\\261\\242)-355(rozpar)1(\\252)-1(a)-354(Lip)-27(c)-1(zak)28(\\363)28(w,)-355(co)-355(j)1(u\\273)-355(n)1(ie)-355(sp)-28(os\\363b)-354(b)28(y\\252o)-354(s)-1(i\\246)-354(k)28(om)27(u)]TJ -27.879 -13.55 Td[(br)1(a\\242)-279(do)-278(pacierz)-1(\\363)28(w,)-278(b)-28(o)-278(jeno)-278(kup)1(ili)-278(si\\246)-279(c)-1(or)1(az)-279(g\\246)-1(\\261c)-1(i)1(e)-1(j)-278(k)28(ole)-279(d)1(z)-1(i)1(e)-1(d)1(z)-1(ica.)-278(A)-279(on)-278(rad)-278(tem)27(u)]TJ 0 -13.549 Td[(wielc)-1(e,)-333(p)-28(ogad)1(yw)28(a\\252)-334(w)28(e)-1(so\\252o,)-333(c)-1(z\\246)-1(sto)28(w)27(a\\252)-333(tabak)56(\\241)-333(i)-333(w)-334(k)28(o\\253cu)-333(rzek\\252)-334(p)1(rzyp)-27(o)-28(c)27(h)1(le)-1(b)1(nie.)]TJ 27.879 -13.549 Td[({)-333(T)83(\\246)-1(go\\261c)-1(i)1(e)-334(p)-27(o)-28(dku)1(rzyli,)-333(ca\\252y)-333(r\\363)-56(j)-333(si\\246)-334(wyn)1(i\\363s\\252.)]TJ 0 -13.549 Td[({)-441(A)-441(b)-27(o)-441(im)-442(n)1(as)-1(ze)-442(k)28(o\\273uc)28(h)28(y)-441(\\261m)-1(i)1(e)-1(rd)1(z)-1(i)1(a\\252y)-441({)-441(z)-1(a\\261m)-1(i)1(a\\252)-442(si\\246)-441(i)-441(kt\\363ry)1(\\261)-1(,)-441(a)-441(G)1(rz)-1(ela,)]TJ -27.879 -13.549 Td[(w)28(\\363)-56(jt)1(\\363)27(w)-333(br)1(at,)-333(w)-1(y)1(rz)-1(ek\\252)-333(nib)29(y)-334(t)1(o)-334(z)-334(f)1(rasobli)1(w)27(o\\261c)-1(i)1(\\241:)]TJ 27.879 -13.55 Td[({)-246(Za)-245(delik)56(atn)28(y)-245(nar)1(\\363)-28(d)-245(na)-246(c)28(h\\252op)1(s)-1(ki)1(c)27(h)-245(s)-1(oms)-1(i)1(ad\\363)28(w,)-246(b)-27(o)-246(n)1(ie)-1(c)28(h)-245(jeno)-246(k)1(t\\363ren)-246(wzion)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(\\252eb,)-333(to)-333(z)-1(ar)1(az)-334(na)-333(z)-1(i)1(e)-1(m)-334(l)1(e)-1(cia\\252...)]TJ 27.879 -13.549 Td[({)-333(P)28(obi)1(\\252)-334(si\\246)-334(to)-333(kto)-333(z)-334(n)1(im)-1(i)1(?)-334({)-333(p)28(yta\\252)-333(rozc)-1(iek)56(a)28(w)-1(i)1(on)28(y)-333(dzie)-1(d)1(z)-1(i)1(c)-1(.)]TJ 0 -13.549 Td[({)-429(Za\\261)-1(b)28(y)-429(t)1(a)-430(p)-27(obi)1(\\252,)-429(Mateusz)-430(ta)-429(jedn)1(e)-1(go)-429(tkn)1(\\241\\252,)-429(\\273)-1(e)-429(m)27(u)-429(n)1(ie)-430(o)-27(drze)-1(k)1(\\252)-430(n)1(a)-429(P)28(o-)]TJ -27.879 -13.549 Td[(c)27(h)29(w)27(alon)29(y)83(,)-333(to)-333(z)-1(ar)1(az)-334(ju)1(c)27(h\\241)-333(si\\246)-334(ob)1(la\\252)-334(i)-333(d)1(z)-1(iw)-333(du)1(s)-1(zy)-333(nie)-333(z)-1(gu)1(bi\\252.)]TJ 27.879 -13.55 Td[({)-265(Do)-265(cna)-264(m)-1(i)1(\\246)-1(tki)-264(nar)1(\\363)-28(d,)-264(na)-265(ok)28(o)-265(c)28(h\\252op)28(y)-264(kiej)-265(d)1(\\246)-1(b)29(y)83(,)-264(a)-265(s)-1(p)1(u\\261c)-1(isz)-265(pi\\246\\261\\242)-1(,)-264(to)-265(jakb)29(y\\261)]TJ -27.879 -13.549 Td[(w)-334(p)1(ierzyn\\246)-334(t)1(ra\\014\\252)-333({)-334(ob)-55(j)1(a\\261)-1(n)1(ia\\252)-333(z)-334(c)-1(i)1(c)27(ha)-333(Mateusz.)]TJ 27.879 -13.549 Td[({)-333(I)-334(n)1(ie)-334(sz)-1(cz)-1(\\246\\261)-1(ci\\252o)-333(s)-1(i)1(\\246)-334(im)-334(n)1(a)-334(P)29(o)-28(dlesiu.)-333(Kr)1(o)27(wy)-333(im)-333(p)-28(on)1(o)-334(p)1(ad\\252y)84(.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(n)1(ie)-334(wiedli)-333(za)-334(sob\\241)-333(an)1(i)-334(j)1(e)-1(d)1(nej.)]TJ 0 -13.549 Td[({)-356(Kobu)1(s)-357(moglib)29(y)-356(p)-28(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242!)-356({)-356(w)-1(y)1(rw)27(a\\252)-356(si\\246)-357(kt)1(\\363ry\\261)-357(z)-356(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-1(,)-356(al)1(e)-357(K\\252\\241b)]TJ -27.879 -13.55 Td[(kr)1(z)-1(yk)1(n\\241\\252)-333(os)-1(tr)1(o)-1(:)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(i\\261)-334(ki)1(e)-1(j)-333(b)1(ut!)-333(Na)-333(paskud)1(ni)1(k)55(a)-333(p)-27(oz)-1(d)1(yc)27(h)1(a\\252)-1(y)84(,)-333(wiadomo...)]TJ 0 -13.549 Td[(Ja\\273e)-271(s)-1(i\\246)-270(p)-28(oku)1(rcz)-1(yl)1(i)-271(z)-271(t)1(a)-56(jon)1(e)-1(j)-270(u)1(c)-1(i)1(e)-1(c)27(h)29(y)83(,)-270(ale)-271(n)1(ikto)-270(ju\\273)-270(pary)-270(ni)1(e)-271(pu)1(\\261)-1(ci\\252,)-271(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-333(p)1(rzys)-1(u)1(n\\241)28(ws)-1(zy)-333(s)-1(i\\246)-333(bli)1(\\273)-1(ej)-333(rze)-1(k\\252:)]TJ 27.879 -13.549 Td[({)-333(\\233e)-334(s)-1(i)1(\\246)-334(Miemc)-1(e)-334(wyn)1(ie)-1(s\\252y)83(,)-333(to)-333(j)1(u\\273)-334(p)1(ana)-333(dziedzic)-1(o)28(w)28(a)-334(\\252ask)55(a.)]TJ 0 -13.55 Td[({)-484(B)-1(o)-484(w)28(ol\\246)-485(spr)1(z)-1(eda\\242)-485(sw)27(oi)1(m)-1(,)-484(c)28(ho)-28(\\242b)28(y)-484(za)-485(p)-27(\\363\\252)-484(darmo)-484({)-484(z)-1(ap)-27(e)-1(wn)1(ia\\252)-485(gor)1(\\241c)-1(o,)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\241c)-344(r\\363\\273no\\261c)-1(ie)-344(a)-343(rozp)-27(o)27(wiad)1(a)-56(j)1(\\241c)-1(,)-343(jak)-343(to)-343(on)-343(i)-343(jego)-344(d)1(z)-1(iad)1(y)83(,)-343(i)-343(pr)1(adziady)-343(za)27(wsz)-1(e)]TJ 0 -13.549 Td[(jedn)1(o)-333(trzym)-1(al)1(i)-334(z)-333(c)27(h\\252op)1(am)-1(i)1(,)-333(z)-1(a)28(ws)-1(ze)-334(sz)-1(li)-333(r)1(az)-1(em)-1(.)1(..)]TJ 27.879 -13.549 Td[(Na)-333(to)-334(S)1(ik)28(ora)-333(p)1(rz)-1(e\\261m)-1(iec)27(h)1(n\\241\\252)-333(s)-1(i\\246)-333(i)-333(p)-28(o)28(wiedzia\\252)-334(z)-333(c)-1(ic)28(ha:)]TJ 0 -13.549 Td[({)-390(T)83(ak)-390(mi)-390(to)-390(stary)-389(dzie)-1(d)1(z)-1(i)1(c)-391(k)56(azali)-390(wypi)1(s)-1(a\\242)-390(na)-390(p)1(lec)-1(ac)27(h)-389(batami,)-389(\\273)-1(e)-390(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(dob)1(rze)-334(bacz\\246)-1(.)]TJ 27.879 -13.55 Td[(Ale)-245(d)1(z)-1(iedzic)-245(j)1(akb)28(y)-244(nie)-245(d)1(os)-1(\\252ysz)-1(a\\252)-244(p)-28(o)28(wieda)-56(j)1(\\241c)-245(w\\252)-1(a\\261ni)1(e)-1(,)-244(c)-1(o)-244(to)-245(za\\273)-1(y)1(\\252)-245(k\\252op)-27(ot\\363)27(w,)]TJ -27.879 -13.549 Td[(ab)28(y)-392(si\\246)-393(j)1(e)-1(n)1(o)-393(M)1(ie)-1(mc)-1(\\363)28(w)-392(p)-28(ozb)28(y\\242;)-392(ju)1(\\261)-1(ci,)-392(c)-1(o)-392(go)-392(s)-1(\\252u)1(c)27(hal)1(i)-393(p)1(rzytaku)1(j\\241c)-393(p)-27(oli)1(t)27(y)1(c)-1(znie,)-392(a)]TJ 0 -13.549 Td[(sw)27(o)-55(je)-334(m)28(y\\261)-1(l)1(\\241c)-334(o)-333(t)27(y)1(c)27(h)-333(jego)-333(dob)1(ro\\261)-1(ciac)28(h)-333(la)-333(c)27(h\\252op)1(s)-1(ki)1(e)-1(go)-333(nar)1(o)-28(du)1(.)]TJ 27.879 -13.549 Td[({)-264(Dobr)1(o)-28(dzieje,)-264(z)-1(n)1(aku)-264(ni)1(e)-265(z)-1(r)1(obi,)-264(c)28(ho)-28(\\242)-264(z)-265(ja)-55(jk)56(a)-264(uleje!)-264({)-264(m)-1(amrota\\252)-264(Si)1(k)28(ora,)-264(ja\\273e)]TJ -27.879 -13.549 Td[(go)-333(K\\252\\241b)-333(tr\\241ca\\252,)-333(b)28(yc)27(h)-333(zapr)1(z)-1(es)-1(t)1(a\\252)-1(.)]TJ 27.879 -13.55 Td[(I)-347(tak)-347(s)-1(e)-347(s)-1(p)-27(o\\252ec)-1(znie)-347(baso)27(w)28(ali,)-346(kie)-1(j)-346(jaki)1(\\261)-348(ksi\\246\\273)-1(yk)-347(w)-347(bi)1(a\\252e)-1(j)-347(k)28(om\\273y)-347(i)-347(z)-348(tac\\241)-347(w)]TJ -27.879 -13.549 Td[(r\\246ku)-333(j)1(\\241\\252)-334(si\\246)-334(ku)-333(n)1(im)-334(p)1(rze)-1(p)29(yc)27(h)1(a\\242)-1(.)]TJ\nET\nendstream\nendobj\n1924 0 obj <<\n/Type /Page\n/Contents 1925 0 R\n/Resources 1923 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1923 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1928 0 obj <<\n/Length 8749      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(603)]TJ -330.353 -35.866 Td[({)-333(C)-1(i)1(e)-1(,)-333(wid)1(z)-1(i)-333(mi)-334(si\\246,)-333(\\273)-1(e)-334(t)1(o)-334(Jasio)-333(organ)1(is)-1(t\\363)28(w)-333({)-334(za)28(w)27(o\\252a\\252)-333(kt\\363ry\\261.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-268(co)-268(t)1(o)-268(b)28(y\\252)-267(Jas)-1(i)1(o,)-268(j)1(e)-1(n)1(o)-268(ju)1(\\273)-268(ub)1(ran)28(y)-267(p)-27(o)-268(ksi\\246\\273)-1(em)27(u)1(,)-268(i)-267(z)-1(b)1(iera\\252)-268(n)1(a)-268(k)28(o\\261c)-1(i\\363\\252,)-267(c)-1(o)]TJ -27.879 -13.549 Td[(\\252as)-1(k)56(a.)-260(Wit)1(a\\252)-261(si\\246)-261(ze)-261(ws)-1(zystkimi,)-260(p)-27(oz)-1(d)1(ra)28(w)-1(i)1(a\\252)-261(i)-260(sie)-1(l)1(nie)-261(k)1(w)27(es)-1(to)28(w)28(a\\252;)-260(z)-1(n)1(ali)-260(go)-261(b)-27(o)28(wie)-1(m)-260(i)]TJ 0 -13.549 Td[(ni)1(jak)28(o)-230(b)28(y\\252o)-230(si\\246)-230(w)-1(y)1(kr\\246c)-1(a\\242)-230(o)-28(d)-230(o)-27(c)27(h\\014)1(ary)84(,)-230(to)-230(k)56(a\\273)-1(d)1(e)-1(n)-229(s)-1(u)1(p\\252a\\252)-230(z)-231(w)28(\\246)-1(ze)-1(\\252k)28(\\363)28(w)-230(te)-1(n)-229(grosz)-231(j)1(aki\\261,)]TJ 0 -13.549 Td[(a)-356(c)-1(z\\246)-1(sto)-357(g\\246sto)-357(i)-356(ta)-356(z)-1(\\252ot\\363)28(wk)56(a)-357(zabr)1(z)-1(\\246c)-1(za\\252a)-357(o)-356(mie)-1(d)1(z)-1(i)1(aki;)-356(dziedzic)-357(rzuci\\252)-357(r)1(ub)1(la,)-356(z)-1(a\\261)]TJ 0 -13.55 Td[(dziedzicz)-1(ki)-297(s)-1(y)1(pn\\246\\252y)-298(srebr)1(e)-1(m,)-298(a)-297(Jas)-1(i)1(o,)-298(sp)-28(o)-27(c)-1(on)28(y)84(,)-298(cze)-1(rw)28(on)28(y)-297(z)-1(e)-298(zm)-1(\\246c)-1(zenia)-297(i)-298(rad)1(os)-1(n)29(y)]TJ 0 -13.549 Td[(wielc)-1(e,)-398(zbiera\\252)-398(ni)1(e)-1(stru)1(dze)-1(n)1(ie)-399(p)-27(o)-398(c)-1(a\\252y)1(m)-399(sm)-1(\\246tarzu,)-397(nie)-398(pr)1(z)-1(epu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-399(n)1(ik)28(om)27(u)-397(i)]TJ 0 -13.549 Td[(ni)1(k)28(om)27(u)-229(te\\273)-230(n)1(ie)-230(\\273a\\252)-1(u)1(j\\241c)-229(te)-1(go)-229(dob)1(rego)-230(s\\252o)28(w)27(a,)-229(a)-229(natkn)1(\\241)28(w)-1(szy)-230(si\\246)-230(n)1(a)-229(Hank)28(\\246)-230(p)-27(oz)-1(d)1(ro)28(wi\\252)]TJ 0 -13.549 Td[(j\\241)-241(tak)-241(p)-27(o)-28(cz)-1(ciwie)-1(,)-241(j)1(a\\273)-1(e)-241(c)-1(a\\252e)-242(cz)-1(terd)1(z)-1(ie\\261c)-1(i)-241(grosz)-1(y)-241(p)-27(o\\252o\\273)-1(y)1(\\252a;)-242(za\\261)-242(ki)1(e)-1(j)-241(p)1(rzys)-1(t)1(an\\241\\252)-241(prze)-1(d)]TJ 0 -13.549 Td[(Jagu)1(s)-1(i\\241)-401(i)-400(z)-1(ab)1(rz\\246)-1(kn)1(\\241\\252)-401(w)-401(tac)-1(\\246,)-401(p)-27(o)-28(dn)1(ies)-1(\\252a)-401(o)-28(cz)-1(y)-400(i)-401(jak)1(b)28(y)-401(zdr)1(\\246)-1(t)28(wia\\252a)-401(z)-1(e)-401(zdu)1(m)-1(ieni)1(a,)]TJ 0 -13.549 Td[(on)-333(te\\273)-334(\\271dzie)-1(b)1(k)28(o)-334(si\\246)-334(p)-27(omi\\246)-1(sza\\252)-1(,)-333(r)1(z)-1(ek\\252)-333(ni)-333(to,)-333(ni)-333(o)28(w)27(o)-333(i)-333(pr)1(\\246)-1(d)1(k)28(o)-334(p)-27(osz)-1(ed\\252)-333(dalej.)]TJ 27.879 -13.55 Td[(Na)28(w)27(et)-416(zap)-27(om)-1(n)1(ia\\252a)-416(d)1(a\\242)-416(o)-28(c)27(h)1(\\014ar\\246,)-415(a)-416(jeno)-415(patr)1(z)-1(a\\252a)-415(z)-1(a)-415(nim)-416(i)-415(pat)1(rz)-1(a\\252a,)-415(b)-27(o)-28(\\242)]TJ -27.879 -13.549 Td[(pr)1(os)-1(to)-419(wyda\\252)-419(si\\246)-420(jej)-419(jak)28(o)-419(ten)-419(\\261)-1(wi\\241tek,)-419(co)-420(go)-419(wymalo)28(w)27(ali)-419(w)-419(b)-28(o)-28(czn)28(ym)-420(o\\252tar)1(z)-1(u)1(,)]TJ 0 -13.549 Td[(taku)1(s)-1(i)-468(m\\252o)-28(d)1(y)83(,)-468(sm)27(u)1(k\\252y)-468(i)-468(\\261licz)-1(n)28(y)84(.)-468(Jakb)29(y)-468(j\\241)-468(u)1(rz)-1(ek\\252)-468(t)28(ymi)-468(jar)1(z)-1(\\241cymi)-468(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)-468(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(\\363\\273)-1(n)1(o)-334(t)1(ar\\252a)-334(o)-27(c)-1(zy)-333(i)-334(\\273egna\\252a)-333(s)-1(i\\246)-333(raz)-334(p)-27(o)-334(r)1(az)-1(,)-333(n)1(ie)-334(p)-27(om)-1(og\\252o.)]TJ 27.879 -13.549 Td[({)-333(Organ)1(i\\261)-1(ciak)-333(jeno,)-333(a)-333(jak)-333(si\\246)-334(to)-333(wyb)1(ra\\252)-334(gal)1(ancie)-1(.)]TJ 0 -13.55 Td[({)-333(Matk)56(a)-333(s)-1(i\\246)-333(te)-1(\\273)-334(p)1(usz)-1(y)-333(ki)1(e)-1(j)-333(ten)-333(in)1(dor)1(.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(o)-27(d)-333(Wielkiej)-333(No)-28(cy)-333(jes)-1(t)-333(w)-334(t)28(y)1(c)27(h)-333(ksi\\246\\273)-1(yc)28(h)-333(s)-1(zk)28(o\\252ac)27(h.)]TJ 0 -13.549 Td[({)-333(Prob)-27(osz)-1(cz)-334(go)-333(s)-1(p)1(ro)28(w)27(ad)1(z)-1(i\\252)-333(na)-333(o)-28(d)1(pu)1(s)-1(t)-333(do)-333(p)-27(om)-1(o)-27(c)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Star)1(y)-334(skn)1(e)-1(r)1(z)-1(y)-333(i)-333(z)-334(lu)1(dzi)-333(z)-1(d)1(z)-1(iera,)-333(ale)-333(na)-333(niego)-334(n)1(ie)-334(\\273a\\252uj)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(b)-27(o)-333(to)-333(nie)-334(h)1(onor)1(,)-334(j)1(ak)-333(ksi\\246)-1(d)1(z)-1(em)-334(ostanie?)]TJ 0 -13.55 Td[({)-333(Ale)-334(i)-333(pr)1(o\\014t)-333(mia\\252)-334(b)-27(\\246dzie)-1(.)]TJ 0 -13.549 Td[(Szeptali)-272(d)1(ok)28(o\\252a,)-272(jeno)-272(co)-272(Jagu\\261)-273(n)1(icz)-1(ego)-272(nie)-272(s)-1(\\252ysz)-1(a\\252a)-272(w)28(o)-28(dz\\241c)-273(za)-272(nim)-272(o)-28(cz)-1(ami,)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)-333(si\\246)-334(t)28(yl)1(k)28(o)-334(p)-27(oru)1(s)-1(zy\\252.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-446(i)-445(suma)-446(si\\246)-446(sk)28(o\\253cz)-1(y)1(\\252)-1(a,)-445(j)1(e)-1(sz)-1(cz)-1(ec)27(h)-445(ta)-445(z)-446(am)27(b)-27(on)28(y)-445(ksi\\241dz)-445(w)-1(y)1(g\\252)-1(asza\\252)]TJ -27.879 -13.549 Td[(zap)-28(o)28(wiedzie)-401(i)-400(w)-1(y)1(p)-28(omin)1(ki,)-400(ale)-401(j)1(u\\273)-401(n)1(ar\\363)-28(d)-400(z)-401(w)28(oln)1(a)-401(o)-28(d)1(p\\252yw)28(a\\252)-401(i)-400(d)1(z)-1(iad)1(y)-400(p)-28(o)-27(dni)1(e)-1(s\\252y)]TJ 0 -13.55 Td[(j\\246kli)1(w)27(e)-334(g\\252osy)83(,)-333(a)-333(c)-1(a\\252y)1(m)-334(c)27(h)1(\\363rem)-334(j\\246\\252y)-333(w)-1(y)1(c)-1(i\\241)-27(ga\\242)-334(s)-1(k)56(aml\\241c)-334(p)1(rosz)-1(aln)1(e)-334(pi)1(e)-1(\\261ni.)]TJ 27.879 -13.549 Td[(Hank)56(a)-354(te)-1(\\273)-354(rusz)-1(y)1(\\252)-1(a)-354(ku)-354(wyj)1(\\261)-1(ciu,)-354(gd)1(y)-355(p)1(rze)-1(cisn\\246\\252)-1(a)-354(si\\246)-355(do)-354(niej)-354(Balc)-1(erk)28(\\363)28(wna)-354(z)]TJ -27.879 -13.549 Td[(wielk)56(\\241)-334(n)1(o)27(win)1(\\241.)]TJ 27.879 -13.549 Td[({)-311(Wiecie)-312({)-311(tr)1(z)-1(epa\\252a)-311(zaz)-1(ia)-55(jan)1(a)-311({)-311(a)-311(to)-311(s)-1(p)1(ad\\252y)-311(zap)-28(o)28(wiedzie)-312(S)1(z)-1(y)1(m)-1(k)56(a)-311(Domin)1(i-)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(ej)-333(z)-334(Nastusi\\241.)]TJ 27.879 -13.55 Td[({)-333(No,)-333(no,)-333(a)-333(c)-1(\\363\\273)-334(n)1(a)-334(to)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(\\241)-333(Dominik)28(o)28(w)28(a?)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(b)28(y)84(,)-333(ud)1(ry)-333(na)-333(ud)1(ry)-333(p)-27(\\363)-56(j)1(dzie)-334(ze)-334(s)-1(y)1(nem)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(oredzi,)-333(Szyme)-1(k)-333(w)-334(sw)28(oim)-334(p)1(ra)28(w)-1(i)1(e)-334(i)-333(lata)-333(te)-1(\\273)-333(m)-1(a.)]TJ 0 -13.549 Td[({)-333(Nie)-1(zgorsz)-1(e)-333(s)-1(i\\246)-333(tam)-334(zrobi)-333(p)1(ie)-1(k)1(ie)-1(\\252k)28(o,)-333(n)1(ie)-1(zgorsz)-1(e)-333({)-334(wyr)1(z)-1(ek\\252a)-334(J)1(agust)27(y)1(nk)56(a.)]TJ 0 -13.549 Td[({)-333(Ma\\252o)-333(to)-334(i)-333(tak)-333(sw)27(ar)1(\\363)27(w,)-333(ma\\252o)-334(ob)1(razy)-334(b)-27(oskiej)-333({)-334(w)28(e)-1(stc)27(h)1(n\\246\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-393(S)1(\\252)-1(y)1(s)-1(ze)-1(l)1(i\\261)-1(cie)-393(to)-393(j)1(u\\273)-393(o)-393(w)27(\\363)-55(jcie?)-393({)-393(z)-1(agad)1(n\\246\\252a)-393(P\\252osz)-1(k)28(o)28(w)27(a)-392(nies)-1(\\241c)-393(p)-27(ob)-28(ok)-392(niej)]TJ -27.879 -13.55 Td[(sw)27(\\363)-55(j)-333(brzuc)28(h)-333(s)-1(p)1(a\\261)-1(n)29(y)-334(i)-333(t\\252u)1(s)-1(t\\241,)-333(cz)-1(erw)28(on\\241)-333(g\\246b)-28(\\246.)]TJ 27.879 -13.549 Td[({)-347(Dy\\242)-347(t)27(y)1(le)-348(mia\\252am)-347(z)-348(p)-27(o)-28(c)27(h)1(\\363)27(wki)1(e)-1(m)-347(i)-347(t)28(ylac)28(hna)-347(ci\\246gie)-1(m)-347(no)28(wyc)27(h)-346(tur)1(bacji,)-347(\\273e)]TJ -27.879 -13.549 Td[(ani)-333(wiem,)-334(co)-333(s)-1(i\\246)-333(tam)-334(na)-333(ws)-1(i)-333(wyp)1(ra)28(wia.)]TJ 27.879 -13.549 Td[({)-368(A)-368(to)-368(s)-1(t)1(ars)-1(zy)-368(m\\363)28(w)-1(i\\252)-368(mo)-56(j)1(e)-1(m)28(u,)-368(j)1(ak)28(o)-368(w)-369(k)56(asie)-369(b)1(raku)1(je)-368(du)1(\\273)-1(o.)-368(W)84(\\363)-56(j)1(t)-368(ju)1(\\273)-369(lata)]TJ -27.879 -13.549 Td[(p)-27(o)-487(lud)1(z)-1(i)1(ac)27(h)-487(i)-486(s)-1(k)56(amle)-487(o)-487(p)-28(o\\273ycz)-1(k)1(i,)-487(ab)28(y)-486(c)27(ho)-27(\\242)-488(c)28(h)28(yla)-487(t)28(yl)1(a)-487(z)-1(ebr)1(a\\242)-1(,)-486(b)-28(o)-487(l)1(e)-1(d)1(a)-487(dzie)-1(\\253)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(jedzie)-334(\\261)-1(l)1(e)-1(d)1(z)-1(t)28(w)28(o...)]TJ 27.879 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-1(c)27(h)-332(o)-28(c)-1(i)1(e)-1(c)-334(m\\363)28(w)-1(i)1(li,)-333(co)-334(n)1(a)-334(t)28(ym)-333(s)-1(k)28(o\\253)1(c)-1(zy\\242)-334(si\\246)-334(m)28(usi.)]TJ\nET\nendstream\nendobj\n1927 0 obj <<\n/Type /Page\n/Contents 1928 0 R\n/Resources 1926 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1926 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1931 0 obj <<\n/Length 8540      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(604)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Wyn)1(os)-1(i\\252)-333(s)-1(i)1(\\246)-1(,)-333(p)1(usz)-1(y\\252,)-333(pr)1(z)-1(ew)27(o)-27(dzi\\252,)-333(a)-334(teraz)-333(z)-1(ap)1(\\252)-1(aci)-333(z)-1(a)-333(sw)27(o)-55(je)-334(p)1(a\\253st)28(w)27(o!)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(mog\\241)-333(m)27(u)-333(zabr)1(a\\242)-334(gos)-1(p)-27(o)-28(d)1(ark)28(\\246?)]TJ 0 -13.549 Td[({)-425(A)-426(mog\\241,)-425(z)-1(a\\261)-425(kiejb)28(y)-425(n)1(ie)-426(c)27(h)29(w)27(aci\\252o,)-425(to)-426(se)-426(resz)-1(t\\246)-426(o)-27(dsie)-1(d)1(z)-1(i)-425(w)-425(krem)-1(i)1(nale)-426({)]TJ -27.879 -13.549 Td[(gada\\252a)-333(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333({)-333(u\\273yw)27(a\\252)-333(ju)1(c)27(h)1(a,)-333(niec)27(h)1(\\273)-1(e)-334(teraz)-334(p)-27(oku)1(tuj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(w)-1(n)1(o)-334(mi)-333(te\\273)-334(b)28(y\\252o,)-333(co)-334(n)1(a)27(w)28(et)-334(n)1(a)-334(p)-27(ogrzebie)-334(si\\246)-334(n)1(ie)-334(p)-27(ok)56(az)-1(a\\252.)]TJ 0 -13.55 Td[({)-333(C)-1(\\363\\273)-333(m)27(u)-333(ta)-333(Boryn)1(a,)-333(kie)-1(j)-332(on)-333(z)-334(wdo)28(w)27(\\241)-333(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(w)28(o)-334(tr)1(z)-1(yma.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252y)84(,)-381(b)-27(o)-380(tu\\273)-381(p)1(rz)-1(ed)-380(ni)1(m)-1(i)-380(j)1(a)27(wi\\252a)-380(s)-1(i\\246)-380(Jagu\\261)-381(p)1(ro)28(w)27(ad)1(z)-1(\\241ca)-381(matk)28(\\246;)-381(stara)]TJ -27.879 -13.549 Td[(sz)-1(\\252a)-290(przygarb)1(iona)-290(i)-290(z)-291(pr)1(z)-1(ewi\\241z)-1(an)29(ym)-1(i)-290(j)1(e)-1(sz)-1(cz)-1(e)-291(o)-27(c)-1(zam)-1(i)1(,)-291(al)1(e)-291(Jagust)28(ynk)56(a)-290(nie)-291(p)1(rze)-1(p)1(u-)]TJ 0 -13.549 Td[(\\261c)-1(i\\252a)-333(ok)56(az)-1(j)1(i.)]TJ 27.879 -13.549 Td[({)-485(Kiedy)1(\\273)-486(S)1(z)-1(ymk)28(o)28(w)27(e)-485(w)27(ese)-1(le?)-485(Ani)-485(si\\246)-485(kto)-485(s)-1(p)-27(o)-28(d)1(z)-1(i)1(a\\252)-1(,)-484(c)-1(o)-485(d)1(z)-1(isia)-55(j)-485(spadn)1(\\241)-485(z)]TJ -27.879 -13.549 Td[(am)27(b)-27(on)28(y)1(!)-315(Ju)1(\\261)-1(ci,)-315(t)1(rud)1(no)-315(c)28(h\\252op)1(ak)28(o)27(wi)-314(w)-1(zbr)1(oni\\242,)-315(k)1(ie)-1(j)-314(m)28(u)-315(j)1(u\\273)-315(ob)1(m)-1(ierz\\252y)-315(d)1(z)-1(iew)28(c)-1(zyne)]TJ 0 -13.55 Td[(rob)-27(ot)28(y)83(.)-333(Nastusia)-333(go)-334(t)1(e)-1(raz)-333(w)-1(y)1(r\\246c)-1(zy)83(..)1(.)-333({)-334(d)1(o)-56(j)1(ada\\252a)-333(z)-334(prze\\261)-1(miec)27(hem.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-333(s)-1(p)1(rosto)27(w)28(a\\252a)-334(si\\246)-334(n)1(agle)-334(i)-333(t)28(w)28(ardo)-333(rzek\\252a:)]TJ 0 -13.549 Td[({)-333(Pro)28(w)28(ad\\271,)-333(Jagu\\261,)-333(pr\\246dze)-1(j)-332(pro)28(w)28(ad\\271,)-333(b)-28(o)-333(me)-334(jes)-1(zc)-1(zek)-334(u)1(gryzie)-334(ta)-333(suk)56(a.)]TJ 0 -13.549 Td[(I)-333(p)-28(osz)-1(\\252a)-333(\\261)-1(p)1(ies)-1(znie,)-333(jak)1(b)28(y)-333(ucie)-1(k)56(a)-55(j\\241c,)-334(a)-333(P)1(\\252)-1(oszk)28(o)27(w)28(a)-333(z)-1(a\\261m)-1(ia\\252a)-333(si\\246)-334(cic)27(h)1(o:)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(to)-333(\\261)-1(l)1(e)-1(p)1(a,)-334(a)-333(n)1(ie)-1(zgorze)-1(j)-333(ob)1(ac)-1(zy\\252a...)]TJ 0 -13.55 Td[({)-333(\\221lepa,)-333(ale)-333(jes)-1(zc)-1(ze)-334(tr)1(a\\014)-333(do)-333(Szymk)28(o)27(wyc)28(h)-333(kud)1(\\252\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(o\\273e)-334(b)1(ro\\253,)-333(b)28(y)1(c)27(h)-333(si\\246)-334(i)-333(do)-333(dr)1(ugic)28(h)-333(ni)1(e)-334(dor)1(w)27(a\\252a...)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-328(ju)1(\\273)-329(nie)-329(o)-27(drze)-1(k)1(\\252)-1(a,)-328(\\261c)-1(isk)-328(przy)-328(t)27(y)1(m)-329(z)-1(ap)1(ano)28(w)27(a\\252)-328(pr)1(z)-1(ed)-329(wr)1(\\363tniami,)]TJ -27.879 -13.549 Td[(\\273e)-266(Han)1(k)56(a)-265(si\\246)-265(z)-1(gu)1(bi\\252a)-264(o)-1(sta)-55(j\\241c)-265(k)56(a)-56(j)1(\\261)-266(za)-265(wsz)-1(ystki)1(m)-1(i,)-264(ale)-265(n)1(a)27(w)28(e)-1(t)-264(b)28(y\\252a)-265(t)1(e)-1(m)28(u)-265(r)1(ada,)-264(gdy\\273)]TJ 0 -13.549 Td[(obr)1(z)-1(y)1(d\\252y)-271(j)1(e)-1(j)-270(te)-271(ni)1(e)-1(p)-27(o)-28(cz)-1(ciw)27(e)-271(d)1(ogryzania,)-270(j\\246\\252a)-271(te\\273)-271(s)-1(p)-27(ok)28(o)-56(j)1(nie)-271(rozda)28(w)28(a\\242)-271(dziadom)-271(p)-27(o)]TJ 0 -13.55 Td[(dw)28(a)-305(grosz)-1(e,)-305(nie)-305(pr)1(z)-1(epu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-306(ani)-305(j)1(e)-1(d)1(nego,)-305(z)-1(a\\261)-305(te)-1(m)28(u)-305(\\261le)-1(p)-27(em)27(u)-305(z)-305(pse)-1(m)-305(w)27(etkn\\246\\252a)]TJ 0 -13.549 Td[(ca\\252)-1(\\241)-333(d)1(z)-1(ies)-1(i)1(\\241tk)28(\\246)-334(i)-333(rze)-1(k\\252a:)]TJ 27.879 -13.549 Td[({)-333(Przyj)1(d\\271c)-1(ie)-333(do)-333(nas)-334(n)1(a)-334(ob)1(iad)1(,)-334(d)1(z)-1(i)1(adku)1(!)-333(Do)-334(Bory)1(n\\363)28(w!)]TJ 0 -13.549 Td[(Dziad)-333(p)-27(o)-28(dn)1(i\\363s\\252)-334(g\\252o)28(w)27(\\246)-333(i)-334(wytr)1(z)-1(es)-1(zcz)-1(y\\252)-333(\\261)-1(l)1(e)-1(p)-27(e)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(An)28(tk)28(o)28(w)27(a,)-333(wid)1(z)-1(i)-333(mi)-333(s)-1(ie!)-333(B)-1(\\363g)-333(zap\\252a\\242!)-334(P)1(rzylet\\246)-1(,)-333(j)1(u\\261c)-1(i,)-333(co)-333(przylet\\246.)]TJ 0 -13.55 Td[(Za)-411(w)-1(r)1(\\363tni)1(am)-1(i)-411(b)28(y)1(\\252)-1(o)-411(j)1(u\\273)-412(n)1(iec)-1(o)-411(lu)1(\\271)-1(ni)1(e)-1(j)1(,)-411(ale)-412(i)-411(tam)-411(s)-1(iedzia\\252y)-411(dziad)1(y)-411(w)27(e)-412(d)1(w)27(a)]TJ -27.879 -13.549 Td[(rz\\246)-1(d)1(y)-308(cz)-1(y)1(ni\\241c)-308(sz)-1(erok)56(\\241)-308(ul)1(ic)-1(\\246)-308(i)-307(w)-1(y)1(krzyku)1(j\\241c)-308(na)-308(r)1(\\363\\273)-1(n)1(e)-308(s)-1(p)-27(os)-1(ob)29(y)83(,)-308(a)-307(na)-308(sam)27(y)1(m)-309(k)28(o\\253)1(c)-1(u)]TJ 0 -13.549 Td[(kl\\246cz)-1(a\\252)-346(j)1(aki\\261)-346(m)-1(\\252o)-28(d)1(y)-346(z)-346(z)-1(i)1(e)-1(lon)29(ym)-346(dasz)-1(ki)1(e)-1(m)-346(na)-345(o)-28(c)-1(zac)27(h)1(,)-346(pr)1(z)-1(y)1(gryw)28(a\\252)-346(na)-346(skrzyp)1(ic)-1(y)-345(i)]TJ 0 -13.549 Td[(\\261piew)27(a\\252)-333(pi)1(e)-1(\\261nie)-333(o)-334(k)1(r\\363lac)27(h)-332(i)-333(da)28(wn)28(yc)27(h)-332(c)-1(zas)-1(ac)28(h,)-333(\\273e)-334(c)-1(a\\252\\241)-333(ku)1(p\\241)-333(s)-1(tal)1(i)-333(dok)28(o\\252a)-333(niego,)-333(a)]TJ 0 -13.549 Td[(cz)-1(\\246s)-1(t)28(y)-333(grosz)-334(sypa\\252)-333(m)27(u)-333(si\\246)-334(d)1(o)-334(czap)28(y)83(.)]TJ 27.879 -13.55 Td[(Hank)56(a)-375(p)1(rzys)-1(t)1(an\\246\\252)-1(a)-374(p)-28(o)-28(d)-374(s)-1(m\\246tarze)-1(m)-375(rozgl\\241d)1(a)-56(j\\241c)-375(si\\246)-375(z)-1(a)-375(J\\363zk)56(\\241)-375(i)-375(na)-55(jn)1(ies)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dziew)27(an)1(iej)-333(natkn)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(o)-28(cz)-1(ami)-333(na)-333(s)-1(w)28(ego)-334(o)-55(jca.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ia\\252)-368(se)-368(w)-369(r)1(z)-1(\\241d)1(ku)-368(mi\\246dzy)-368(dziad)1(am)-1(i)1(,)-368(r\\246k)28(\\246)-369(wyci\\241)-28(ga\\252)-368(d)1(o)-368(przec)27(ho)-27(dni)1(\\363)27(w)-368(i)]TJ -27.879 -13.549 Td[(j\\246kli)1(w)-1(i)1(e)-334(s)-1(k)56(am\\252a\\252)-334(o)-333(ws)-1(p)-27(omo\\273)-1(enie.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-447(j)1(\\241)-447(k)1(to)-447(p)-27(c)27(h)1(n\\241\\252)-446(no\\273e)-1(m,)-446(ale)-447(m)28(y\\261)-1(l)1(a\\252a)-447(zrazu,)-446(\\273)-1(e)-446(s)-1(i\\246)-446(jej)-446(przywid)1(z)-1(ia\\252o,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(etar\\252a)-333(o)-28(cz)-1(y)-333(raz)-333(i)-334(d)1(ru)1(gi;)-333(on)-333(c)-1(i)-333(to)-333(b)28(y)1(\\252)-334(j)1(e)-1(d)1(nak,)-333(on!)1(...)]TJ 27.879 -13.55 Td[({)-333(Oc)-1(i)1(e)-1(c)-334(mi\\246dzy)-333(dziadami!)-333(Jez)-1(u)1(s)-1(!)-333({)-333(dziw,)-333(\\273)-1(e)-333(s)-1(i\\246)-333(nie)-334(spal)1(i\\252a)-334(\\273e)-334(ws)-1(t)28(y)1(du.)]TJ 0 -13.549 Td[(Nasun\\246\\252a)-256(c)27(h)28(u)1(s)-1(tk)28(\\246)-256(bar)1(z)-1(ej)-256(na)-256(cz)-1(o\\252o)-256(i)-256(p)1(rze)-1(b)1(ra\\252a)-256(s)-1(i\\246)-256(do)-256(n)1(ie)-1(go)-256(z)-256(t)28(y\\252u)-256(o)-28(d)-255(w)27(oz\\363)27(w,)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-333(kt\\363r)1(ymi)-334(siedzia\\252.)]TJ 27.879 -13.549 Td[({)-377(C)-1(o)-377(wy)-378(r)1(obicie)-378(n)1(a)-56(j)1(le)-1(p)1(s)-1(zego,)-378(co?)-378({)-377(j\\246kn\\246\\252a)-378(p)1(rzyku)1(c)-1(n)1(\\241)27(wsz)-1(y)-377(za)-378(n)1(im)-1(,)-377(b)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(si\\246)-334(c)27(h)1(ron)1(i\\242)-334(o)-28(d)-333(l)1(udzkic)28(h)-333(o)-28(cz)-1(\\363)28(w.)]TJ 27.879 -13.55 Td[({)-333(Han)28(u\\261...)-333(a)-333(dy)1(\\242)-334(ja..)1(.)-334(a)-333(d)1(y\\242)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(cie)-334(mi)-333(z)-1(ar)1(az)-334(do)-333(dom)28(u!)-333(Jez)-1(u)1(s)-1(,)-333(taki)-333(wst)28(yd!)-333(Cho)-28(d)1(\\271)-1(cie!...)]TJ\nET\nendstream\nendobj\n1930 0 obj <<\n/Type /Page\n/Contents 1931 0 R\n/Resources 1929 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1929 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1934 0 obj <<\n/Length 9388      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(605)]TJ -330.353 -35.866 Td[({)-415(Nie)-415(p)-27(\\363)-28(d)1(e)-1(..)1(.)-415(Ju)1(\\273)-416(t)1(o)-415(s)-1(ob)1(ie)-415(z)-415(da)28(wna)-415(u)1(m)27(y\\261li\\252em...)-415(Co)-415(w)28(ama)-415(mam)-415(c)-1(i\\246\\273)-1(y)1(\\242)-1(,)]TJ -27.879 -13.549 Td[(kiej)-318(d)1(obr)1(e)-319(lu)1(dzie)-319(wsp)-28(omog\\241...)-317(W)83(e)-318(\\261)-1(wiat)-318(se)-319(p)-27(o)-28(ci\\241)-28(gne)-318(z)-319(d)1(ru)1(gim)-1(i)1(...)-318(\\261wi\\246)-1(te)-318(mie)-1(j)1(s)-1(ca)]TJ 0 -13.549 Td[(obacze)-1(..)1(.)-479(c)-1(o)-479(no)28(w)28(e)-1(go)-479(si\\246)-480(p)1(rz)-1(ewie)-1(m..)1(.)-479(Je)-1(sz)-1(cz)-1(ec)27(h)-478(w)27(ama)-479(s)-1(p)-27(ory)-479(grosz)-480(p)1(rzyni)1(e)-1(se)-1(..)1(.)]TJ 0 -13.549 Td[(Na\\261c)-1(i)-333(z\\252)-1(ot\\363)28(wk)28(\\246,)-334(k)1(up)-333(j)1(akiego)-334(cud)1(ak)56(a)-334(la)-333(Pi)1(e)-1(tr)1(usia...)-333(ku)1(p.)1(..)]TJ 27.879 -13.549 Td[(Ch)28(yci\\252a)-333(go)-334(ostro)-333(z)-1(a)-333(k)28(o\\252ni)1(e)-1(rz)-333(i)-333(pra)28(wie)-334(wywlek\\252a)-333(m)-1(i\\246dzy)-333(w)27(ozy)84(.)]TJ 0 -13.55 Td[({)-333(Zaraz)-334(mi)-333(do)-333(dom)28(u.)-333(\\233e)-334(to)-333(ws)-1(t)28(yd)1(u)-333(nie)-333(m)-1(acie!)]TJ 0 -13.549 Td[({)-333(Pu)1(\\261)-1(\\242)-334(me,)-334(b)-27(o)-333(s)-1(i\\246)-333(oz)-1(gn)1(ie)-1(w)28(am!)]TJ 0 -13.549 Td[({)-333(Rz)-1(u)1(\\242)-1(cie)-334(te)-334(t)1(orb)-28(ecz)-1(ki)1(,)-334(p)1(r\\246dk)28(o,)-333(\\273e)-1(b)28(y)-333(k)1(to)-334(n)1(ie)-334(ob)1(ac)-1(zy\\252.)]TJ 0 -13.549 Td[({)-301(T)83(o)-301(zrobi)1(\\246)-1(,)-301(co)-301(mi)-301(s)-1(i)1(\\246)-302(j)1(e)-1(n)1(o)-301(s)-1(p)-27(o)-28(d)1(oba,)-301(j)1(u\\261c)-1(i.)1(..)-301(ws)-1(t)28(yd)1(a\\252)-301(s)-1(i)1(\\246)-302(b)-27(e)-1(d)1(e)-1(.)1(..)-301(k)28(om)27(u)-300(g\\252\\363)-28(d)]TJ -27.879 -13.549 Td[(ku)1(m)-1(\\241,)-377(t)1(e)-1(m)28(u)-377(torb)1(a)-377(m)-1(at)1(k)55(\\241)-377({)-377(wyrw)28(a\\252)-377(s)-1(i)1(\\246)-378(n)1(araz)-1(,)-376(w)-1(p)1(ad\\252)-377(p)-27(om)-1(i)1(\\246)-1(d)1(z)-1(y)-377(w)28(oz)-1(y)-376(a)-378(k)28(on)1(ie)-377(i)]TJ 0 -13.549 Td[(pr)1(z)-1(epad)1(\\252.)]TJ 27.879 -13.55 Td[(Nie)-260(s)-1(p)-27(os)-1(\\363b)-259(b)28(y\\252o)-260(go)-260(sz)-1(u)1(k)55(a\\242)-260(i)-260(n)1(ale)-1(\\271\\242)-261(w)-260(taki)1(m)-261(t\\252oku)1(,)-260(jak)1(i)-260(s)-1(i)1(\\246)-261(u)1(c)-1(zyni)1(\\252)-261(n)1(a)-260(placu)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(k)28(o\\261c)-1(io\\252em)-1(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-320(przyp)1(ie)-1(k)56(a\\252o,)-320(j)1(a\\273)-1(e)-321(si\\246)-320(c)-1(z\\252o)27(wiek)-320(\\252usk)56(a\\252)-321(ze)-321(sk)28(\\363ry)84(,)-320(kur)1(z)-321(zapiera\\252)-320(pi)1(e)-1(rsi,)]TJ -27.879 -13.549 Td[(a)-375(n)1(a)-1(r)1(\\363)-28(d,)-374(c)27(h)1(o)-28(c)-1(i)1(a\\273)-376(zm)-1(\\246c)-1(zon)28(y)-374(i)-375(z)-1(gr)1(z)-1(an)29(y)-375(do)-375(ostatn)1(ie)-1(j)-374(nit)1(ki,)-375(mi\\246tos)-1(i)1(\\252)-375(s)-1(i\\246)-375(rad)1(o\\261)-1(n)1(ie)-375(i)]TJ 0 -13.549 Td[(k)28(ot\\252o)28(w)27(a\\252)-333(jak)28(ob)28(y)-333(w)-333(t)28(ym)-334(r)1(oz)-1(b)-27(e)-1(\\252k)28(otan)29(ym)-334(wrz\\241tku.)]TJ 27.879 -13.55 Td[(Katar)1(ynk)56(a)-327(wygr)1(yw)27(a\\252a)-326(roz)-1(g\\252o\\261ni)1(e)-328(n)1(a)-327(ca\\252)-1(\\241)-326(w)-1(i)1(e)-1(\\261;)-327(d)1(z)-1(iad)1(y)-327(wyci\\241)-28(ga\\252y)-326(p)-28(o)-326(s)-1(w)28(o-)]TJ -27.879 -13.549 Td[(jem)27(u)1(,)-272(dzie)-1(ci)-272(gwiz)-1(d)1(a\\252y)-273(n)1(a)-272(glini)1(an)28(yc)27(h)-272(k)1(urask)56(ac)27(h,)-272(n)1(as)-1(zc)-1(zekiw)28(a)-1(\\252y)-272(p)1(s)-1(y)-272(i)-272(k)28(onie)-272(gryz\\252y)]TJ 0 -13.549 Td[(si\\246)-406(i)-404(kw)-1(i)1(c)-1(za\\252y)83(,)-405(\\273e)-405(to)-405(m)27(u)1(c)27(h)28(y)-405(b)29(y\\252y)-405(dzisia)-405(bar)1(z)-1(ej)-405(n)1(aprzykr)1(z)-1(on)1(e)-1(,)-405(za\\261)-406(k)56(a\\273den)-405(cz)-1(\\252o-)]TJ 0 -13.549 Td[(wiek)-320(gad)1(a\\252)-320(z)-319(os)-1(ob)1(na,)-319(pr)1(z)-1(ekrzykiw)28(a\\252)-319(do)-319(z)-1(n)1(a)-56(jomk)28(\\363)28(w,)-319(s)-1(to)28(w)28(arz)-1(y)1(s)-1(za\\252)-320(si\\246)-320(i)-319(cis)-1(n)1(\\241\\252)-320(d)1(o)]TJ 0 -13.549 Td[(kr)1(am)-1(\\363)28(w,)-333(przy)-333(kt\\363ry)1(c)27(h)-333(wrza\\252o)-334(j)1(ak)-333(w)-334(u)1(lu)-333(i)-333(p)-28(o)-27(dnosi\\252y)-333(si\\246)-334(dzieusz)-1(y)1(ne)-334(p)1(is)-1(k)1(i.)]TJ 27.879 -13.55 Td[(Bud)1(y)-231(z)-1(e)-232(\\261wi\\246to\\261)-1(ciami)-231(ja\\273e)-232(s)-1(i)1(\\246)-232(c)27(h)29(w)-1(i)1(a\\252)-1(y)-231(o)-27(d)-231(bab)1(iego)-232(n)1(ap)-28(or)1(u.)-231(Nie)-231(m)-1(n)1(iejsz)-1(y)-231(b)28(y)1(\\252)]TJ -27.879 -13.549 Td[(t\\252ok,)-288(k)55(a)-55(j)-289(p)1(rze)-1(d)1(a)28(w)27(ali)-288(kie\\252basy)83(,)-288(w)-1(i)1(s)-1(z\\241c)-1(e)-289(na)-288(dr\\241\\273k)56(ac)27(h)-288(nib)29(y)-289(te)-289(gru)1(bac)27(h)1(ne)-289(p)-27(os)-1(tr)1(onki)1(.)]TJ 0 -13.549 Td[(Gd)1(z)-1(ie)-290(zn\\363)28(w)-290(ku)1(p)-28(cz)-1(y)1(li)-290(c)28(hleb)-27(e)-1(m)-290(a)-290(ku)1(kie\\252k)56(am)-1(i.)-289(Ka)-55(j\\261)-290(\\233yd)-289(na)28(w)27(o\\252yw)28(a\\252)-290(d)1(o)-290(c)-1(u)1(kierk)28(\\363)28(w,)]TJ 0 -13.549 Td[(za\\261)-273(jes)-1(zc)-1(ze)-273(in)1(dzie)-1(j)-271(na)28(w)27(et)-272(w)-1(st\\246gi)-273(wiew)28(a\\252)-1(y)-272(sp)-28(o)-27(d)-272(p\\252\\363)-28(cienn)28(yc)28(h)-272(dasz)-1(k)28(\\363)28(w)-272(i)-273(b)1(icz)-1(e)-273(p)1(rze)-1(-)]TJ 0 -13.549 Td[(r\\363\\273n)28(yc)28(h)-370(p)1(ac)-1(i)1(ork)28(\\363)28(w,)-370(a)-370(wsz)-1(\\246dy)-369(b)28(y\\252)-369(niep)-27(om)-1(iern)28(y)-369(gn)1(iot,)-370(h)1(armid)1(e)-1(r)-369(i)-370(wrzaski)-370(k)1(ie)-1(b)29(y)]TJ 0 -13.55 Td[(w)-334(j)1(akiej)-333(b)-27(\\363\\273)-1(n)1(ic)-1(y)84(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(z\\252o)-281(dob)1(ryc)28(h)-281(p)1(ar\\246)-282(p)1(ac)-1(i)1(e)-1(r)1(z)-1(\\363)28(w,)-281(ni)1(m)-282(n)1(ar\\363)-28(d)-280(j\\241\\252)-281(si\\246)-282(n)1(iec)-1(o)-281(sp)-28(ok)28(oi)1(\\242)-282(i)-281(p)1(rzyci-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\242)-1(;)-317(k)1(to)-318(p)-27(o)-28(ci\\241)-28(ga\\252)-317(do)-317(k)56(arcz)-1(m)28(y)-317(kto)-317(ju)1(\\273)-318(zabiera\\252)-317(s)-1(i)1(\\246)-318(do)-317(dom)28(u,)-317(a)-317(d)1(rud)1(z)-1(y)84(,)-317(z)-1(mo\\273e)-1(n)1(i)]TJ 0 -13.549 Td[(spiek)28(ot\\241)-276(i)-275(utr)1(ud)1(z)-1(eniem,)-276(r)1(o)-1(zk\\252ad)1(ali)-276(si\\246)-276(w)-276(cieniu)-275(w)28(oz)-1(\\363)28(w,)-276(n)1(ad)-275(s)-1(ta)28(w)28(e)-1(m,)-276(t)1(o)-276(w)-276(sadac)27(h)]TJ 0 -13.549 Td[(i)-333(p)-27(o)-28(dw)28(\\363rzac)27(h,)-333(b)28(y)1(c)27(h)-333(se)-334(p)-27(o)-28(dj)1(e)-1(\\261\\242)-334(i)-333(o)-28(d)1(p)-28(o)-28(cz\\241\\242)-1(.)]TJ 27.879 -13.55 Td[(Roz)-1(p)1(ra\\273one)-361(pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(e)-361(tak)-361(j)1(u\\273)-361(doskwiera\\252o,)-361(\\273e)-361(dyc)28(ha\\242)-361(n)1(ie)-361(b)28(y\\252o)-361(cz)-1(y)1(m)-1(,)]TJ -27.879 -13.549 Td[(a)-287(p)-28(ok)1(r\\363tce)-288(i)-287(gw)27(ar)1(z)-1(y\\242)-287(nie)-288(c)28(hcia\\252o)-287(s)-1(i\\246)-287(nik)28(om)28(u)-287(ni)-287(n)1(a)27(w)28(e)-1(t)-287(r)1(uc)27(h)1(a\\242)-1(,)-287(j)1(ak)28(o)-288(t)28(ym)-287(dr)1(z)-1(ew)27(om)]TJ 0 -13.549 Td[(p)-27(om)-1(d)1(la\\252ym)-369(w)-368(\\273arz)-1(e,)-368(a)-368(\\273)-1(e)-369(p)1(rzy)-368(t)28(ym)-369(i)-368(wie\\261)-369(zas)-1(iad)1(\\252a)-369(d)1(o)-368(m)-1(isek,)-368(to)-368(s)-1(i\\246)-368(ju\\273)-368(pr)1(a)27(wie)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-485(u)1(s)-1(p)-27(ok)28(oi\\252y)84(,)-485(j)1(e)-1(no)-484(c)-1(o)-484(tam)-485(dzie)-1(ci)-485(p)-27(o)-28(d)1(nies)-1(\\252y)-484(w)-1(r)1(z)-1(aski)-484(k)55(a)-55(j\\261)-485(ni)1(e)-1(k)56(a)-56(j)-484(i)-484(k)28(onie)]TJ 0 -13.549 Td[(sz)-1(arp)1(n\\246\\252y)-333(s)-1(i\\246)-333(przy)-333(w)27(ozac)27(h)1(.)]TJ 27.879 -13.549 Td[(Za\\261)-376(na)-375(pl)1(e)-1(b)1(anii)-375(pr)1(ob)-28(oszc)-1(z)-376(wyp)1(ra)28(wia\\252)-376(ob)1(iad)-375(la)-375(ks)-1(i)1(\\246)-1(\\273y)-376(i)-375(d)1(z)-1(iedzic\\363)27(w,)-375(pr)1(z)-1(ez)]TJ -27.879 -13.55 Td[(wyw)28(arte)-300(okn)1(a)-300(wid)1(nia\\252y)-299(g\\252o)28(wy)83(,)-299(p\\252yn)1(\\241\\252)-300(gw)28(ar)-299(rozm)-1(\\363)28(w)-299(i)-300(r)1(oz)-1(n)1(os)-1(i\\252y)-299(si\\246)-300(b)1(rz)-1(\\246ki,)-299(\\261m)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(c)27(h)29(y)-334(a)-333(taki)1(e)-334(z)-1(ap)1(ac)27(h)28(y)84(,)-333(ja\\273e)-334(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-333(\\261lin)1(k)28(\\246)-334(\\252yk)56(a\\252)-334(z)-333(on)28(yc)27(h)-333(smak)28(\\363)27(w.)]TJ 27.879 -13.549 Td[(Jam)28(bro\\273,)-304(wystro)-55(jon)29(y)-304(o)-28(d)1(\\261)-1(wi\\246tni)1(e)-1(,)-303(w)-304(me)-1(n)28(t)1(alac)27(h)-303(na)-303(piersiac)27(h)1(,)-303(kr\\246c)-1(i\\252)-303(s)-1(i\\246)-304(ci\\246-)]TJ -27.879 -13.549 Td[(giem)-334(w)-333(s)-1(ieniac)28(h,)-333(a)-333(c)-1(z\\246)-1(sto)-333(g\\246)-1(sto)-333(na)-333(ganek)-333(w)-1(y)1(biega\\252)-334(z)-333(krzykiem:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)-27(\\363)-28(dzies)-1(z,)-333(ju)1(c)27(ho,)-333(st\\241d!)-333(A)-333(to)-333(kij)1(e)-1(m)-334(ci\\246)-334(z\\252o)-56(j)1(\\246)-1(,)-333(\\273e)-334(p)-27(opami\\246)-1(t)1(as)-1(z.)]TJ 0 -13.55 Td[(Ale)-268(nie)-268(m)-1(og\\241c)-268(s)-1(i)1(\\246)-269(ogn)1(a\\242)-269(zb)-28(ere\\271)-1(n)1(ik)28(om,)-268(kt\\363re)-268(jak)28(o)-268(te)-268(w)-1(r)1(\\363ble)-268(obsiad)1(a\\252)-1(y)-267(s)-1(zta-)]TJ -27.879 -13.549 Td[(c)27(h)1(e)-1(t)28(y)84(,)-275(a)-275(\\261m)-1(i)1(e)-1(lsz)-1(e)-275(n)1(a)27(w)28(e)-1(t)-274(ju\\273)-275(p)-27(o)-28(d)-275(ok)1(na)-275(si\\246)-275(przebiera\\252y)83(,)-274(to)-275(jeno)-275(p)1(rzygra\\273a\\252)-275(ksi\\246)-1(\\273ym)]TJ\nET\nendstream\nendobj\n1933 0 obj <<\n/Type /Page\n/Contents 1934 0 R\n/Resources 1932 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1932 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1937 0 obj <<\n/Length 8083      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(606)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cybu)1(c)27(hem)-334(a)-333(wykli)1(na\\252.)]TJ 27.879 -13.549 Td[(Nadesz)-1(\\252a)-333(na)-333(to)-333(Hank)56(a)-334(p)1(rzys)-1(t)1(a)-56(j\\241c)-333(przy)-333(fu)1(rcie)-1(.)]TJ 0 -13.549 Td[({)-333(Szuk)56(ac)-1(i)1(e)-334(to)-333(k)28(ogo?)-334({)-333(z)-1(ap)28(y)1(ta\\252)-334(k)1(usz)-1(t)28(yk)56(a)-56(j)1(\\241c)-334(d)1(o)-334(n)1(ie)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(wid)1(z)-1(ieli\\261c)-1(i)1(e)-334(k)56(a)-56(j)-333(mo)-56(j)1(e)-1(go)-333(o)-56(j)1(c)-1(a?)]TJ 0 -13.549 Td[({)-344(B)-1(y)1(licy!)-344(Gor\\241c,)-344(\\273)-1(e)-344(niec)27(h)-344(B\\363g)-344(br)1(oni,)-344(to)-344(p)-27(e)-1(wn)1(ikiem)-345(\\261pi)-344(se)-345(k)56(a)-56(j)1(\\261)-345(w)-345(cieniu)1(...)]TJ -27.879 -13.55 Td[(T)83(e!)-333(jedron)1(a)-334(p)1(a\\252k)56(a!)-334({)-333(kr)1(z)-1(yk)1(n\\241\\252)-333(z)-1(n)1(o)27(wu)-333(i)-333(p)-27(ogoni\\252)-333(z)-1(a)-333(c)27(h)1(\\252opaki)1(e)-1(m.)]TJ 27.879 -13.549 Td[(A)-371(Hank)56(a)-371(s)-1(trap)1(ion)1(a)-372(wielce)-372(p)-28(osz)-1(\\252a)-371(ju)1(\\273)-372(pr)1(os)-1(to)-371(do)-371(d)1(om)27(u)-371(i)-371(rozp)-28(o)28(wiedzia\\252a)-372(o)]TJ -27.879 -13.549 Td[(ws)-1(zystkim)-333(s)-1(iostrze)-1(,)-333(kt)1(\\363ra)-333(przysz)-1(\\252a)-333(na)-333(obi)1(ad.)]TJ 27.879 -13.549 Td[(Ale)-334(W)84(eronk)56(a)-333(jeno)-333(wz)-1(r)1(us)-1(zy\\252a)-333(ramionami.)]TJ 0 -13.549 Td[({)-300(Koron)1(a)-301(m)28(u)-300(z)-1(e)-300(\\252ba)-300(nie)-300(s)-1(p)1(adni)1(e)-1(,)-300(\\273e)-301(pr)1(z)-1(ysta\\252)-300(do)-300(dziad\\363)28(w,)-300(a)-301(co)-300(nam)-301(b)-27(\\246dzie)]TJ -27.879 -13.549 Td[(lek)28(c)-1(i)1(e)-1(j)1(,)-334(t)1(o)-334(lek)28(cie)-1(j)1(.)-333(Nie)-334(taki)1(e)-334(ano)-333(s)-1(k)28(o\\253)1(c)-1(zy\\252y)-333(p)-27(o)-28(d)-333(k)28(o\\261)-1(cio\\252em)-1(.)]TJ 27.879 -13.55 Td[({)-434(Jez)-1(u)1(s)-1(,)-433(taki)-434(wst)27(y)1(d,)-434(\\273eb)28(y)-434(ro)-27(dzon)28(y)-434(o)-28(ciec)-435(n)1(a)-434(\\273)-1(ebr)1(ac)27(h!)-433(A)-434(co)-434(An)28(tek)-434(na)-434(to)]TJ -27.879 -13.549 Td[(p)-27(o)27(wie?)-389(Dopi)1(e)-1(r)1(o)-389(lud)1(z)-1(i)1(e)-390(w)28(ez)-1(m\\241)-389(nas)-389(n)1(a)-389(oz)-1(or)1(y)-389(i)-389(p)-27(o)28(wie)-1(d)1(z)-1(\\241,)-388(\\273)-1(e\\261)-1(m)28(y)-389(go)-389(wygn)1(a\\252y)-389(p)-27(o)]TJ 0 -13.549 Td[(pr)1(os)-1(zonem)27(u)1(.)]TJ 27.879 -13.549 Td[({)-416(A)-416(ni)1(e)-1(c)27(h)29(ta)-416(s)-1(zc)-1(ze)-1(k)56(a)-55(j\\241,)-416(co)-416(im)-416(s)-1(i\\246)-416(s)-1(p)-27(o)-28(d)1(oba.)-416(P)1(ys)-1(k)28(o)28(w)28(a\\242)-417(n)1(a)-416(dru)1(giego)-417(k)56(a\\273dy)]TJ -27.879 -13.549 Td[(p)-27(oredzi,)-333(ale)-334(d)1(o)-334(p)-27(om)-1(o)-27(c)-1(y)-333(n)1(ikto)-333(niesk)28(ory)83(.)]TJ 27.879 -13.55 Td[({)-333(Ja)-334(n)1(ie)-334(d)1(opu)1(s)-1(zc)-1(z\\246)-1(,)-333(\\273e)-1(b)29(y)-334(o)-27(c)-1(iec)-334(mieli)-333(dziado)28(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(go)-333(se)-334(s)-1(p)1(ro)28(w)28(ad\\271)-334(d)1(o)-334(c)28(ha\\252up)29(y)-334(i)-333(\\273yw,)-333(kiej\\261)-334(t)1(ak)55(a)-333(hon)1(orn)1(a.)]TJ 0 -13.549 Td[({)-393(A)-394(spr)1(o)27(w)28(adz\\246!)-394(J)1(u\\273)-394(m)28(u)-393(te)-1(j)-393(\\252y)1(\\273)-1(ki)-393(stra)28(wy)-393(\\273)-1(a\\252uj)1(e)-1(sz!)-394(J)1(u\\261c)-1(i,)-393(teraz)-394(miar)1(kuj)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(co\\261)-334(go)-334(d)1(o)-333(te)-1(go)-333(s)-1(ama)-333(przyn)1(ie)-1(w)28(oli\\252a.)]TJ 27.879 -13.549 Td[({)-365(P)1(rze)-1(lew)27(a)-364(s)-1(i\\246)-365(to)-365(u)-364(mnie)-365(cz)-1(y)-364(c)-1(o?)-365(Dziec)-1(iom)-365(to)-365(p)-27(ew)-1(n)1(ie)-365(o)-28(dejm\\246)-365(o)-28(d)-364(g\\246)-1(b)28(y)84(,)-365(a)]TJ -27.879 -13.55 Td[(jem)27(u)-332(dam?)]TJ 27.879 -13.549 Td[({)-333(Nale)-1(\\273y)-333(m)27(u)-333(si\\246)-334(wycug)-333(o)-28(d)-333(ciebie,)-333(nie)-333(bacz)-1(ysz?)]TJ 0 -13.549 Td[({)-333(Jak)-333(nie)-333(m)-1(am,)-333(to)-333(z)-334(jelit)-333(s)-1(ob)1(ie)-334(n)1(ie)-334(wyp)1(ruj)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-457(A)-457(wypru)1(j)-457(i)-457(d)1(a)-56(j)1(,)-457(o)-28(c)-1(i)1(e)-1(c)-458(p)1(ierws)-1(zy)83(.)-457(Ni)1(e)-1(r)1(az)-458(mi)-457(s)-1(i\\246)-457(s)-1(k)56(ar\\273y\\252,)-457(\\273e)-458(go)-457(g\\252o)-28(dem)]TJ -27.879 -13.549 Td[(morzys)-1(z)-333(i)-334(o)-333(\\261w)-1(i)1(nie)-334(wi\\246ce)-1(j)-333(d)1(basz)-334(ni)1(\\271)-1(li)-333(o)-333(ni)1(e)-1(go.)]TJ 27.879 -13.55 Td[({)-309(Pr)1(a)27(wd)1(a)-309(b)28(y\\252a,)-309(ju)1(\\261)-1(ci,)-309(o)-55(jca)-309(m)-1(or)1(z)-1(\\246)-309(g\\252)-1(o)-27(dem)-1(,)-309(a)-309(sama)-310(t)1(o)-310(se)-310(u)1(\\273)-1(y)1(w)27(am)-309(kiej)-309(dzie-)]TJ -27.879 -13.549 Td[(dzicz)-1(k)56(a.)-336(T)83(ak)-336(s)-1(i)1(\\246)-337(ano)-336(w)-1(y)1(pas\\252)-1(am,)-336(c)-1(o)-336(mi)-337(j)1(u\\273)-337(k)1(ie)-1(c)28(k)56(a)-337(z)-337(b)1(ie)-1(d)1(e)-1(r)-336(zlatu)1(je)-337(i)-336(ledwie)-337(k)1(ula-)]TJ 0 -13.549 Td[(sam)-1(i)-333(p)-27(o)28(w)-1(\\252\\363)-28(cz\\246)-1(.)-333(Na)-333(b)-28(or)1(g)-334(j)1(e)-1(n)1(o)-334(\\273yj)1(e)-1(m)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(\\242,)-333(m)27(y\\261la\\252b)28(y)-333(kto,)-333(\\273e)-334(i)-333(pr)1(a)28(w)-1(d)1(a.)]TJ 0 -13.549 Td[({)-402(A)-403(p)1(ra)28(w)-1(d)1(a,)-402(\\273)-1(eb)28(y)-402(nie)-403(Jan)1(kiel,)-402(to)-403(b)29(y)-403(n)1(a)28(w)27(et)-403(t)28(yc)28(h)-402(z)-1(iemniak)28(\\363)28(w)-403(ze)-403(sol\\241)-403(za-)]TJ -27.879 -13.55 Td[(br)1(ak\\252o.)-344(Ju)1(\\261)-1(ci,)-344(syt)28(y)-344(g\\252o)-28(d)1(nem)27(u)-343(ni)1(gdy)-344(n)1(ie)-344(z)-1(a)28(wie)-1(r)1(z)-1(y)1(!)-344({)-344(gada\\252a)-344(n)1(a)-344(wp)-28(\\363\\252)-344(z)-344(p\\252acz)-1(em,)]TJ 0 -13.549 Td[(a)-333(c)-1(or)1(az)-334(\\273)-1(a\\252o\\261niej,)-333(gd)1(y)-333(w)-1(to)-27(c)-1(zy\\252)-333(s)-1(i\\246)-333(w)-334(op\\252otk)1(i)-333(dz)-1(i)1(ad,)-333(pr)1(o)28(w)27(ad)1(z)-1(on)28(y)-333(p)1(rze)-1(z)-334(p)1(ies)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-408(S)1(iada)-55(jcie)-408(s)-1(e)-408(p)-27(o)-28(d)-407(c)27(ha\\252u)1(p\\241)-408({)-407(z)-1(wr\\363)-28(ci\\252a)-408(si\\246)-408(do\\253)-407(Hank)56(a)-408(k)1(rz)-1(\\241ta)-55(j\\241c)-408(si\\246)-408(k)28(ole)]TJ -27.879 -13.549 Td[(obi)1(adu)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252)-350(n)1(a)-350(p)1(rzy\\271)-1(b)1(ie,)-350(k)1(ule)-350(o)-27(d\\252o\\273y\\252,)-350(p)1(ies)-1(k)56(a)-349(pu\\261ci\\252)-350(n)1(a)-350(w)28(ol\\246)-350(i)-349(p)-27(o)-28(c)-1(i)1(\\241)-28(ga\\252)-350(n)1(o-)]TJ -27.879 -13.549 Td[(c)27(h)1(alem)-1(,)-333(miark)1(uj\\241c,)-333(z)-1(al)1(i)-334(j)1(u\\273)-333(jedz\\241)-334(i)-333(w)-333(kt\\363rej)-333(s)-1(tr)1(onie.)]TJ 27.879 -13.55 Td[(W\\252a\\261nie)-290(b)28(y)1(li)-289(z)-1(asiadali)-289(d)1(o)-290(obi)1(adu)-289(p)-28(o)-27(d)-290(d)1(rze)-1(w)28(ami,)-290(Han)1(k)56(a)-290(wy\\252o\\273)-1(y)1(\\252)-1(a)-289(jad)1(\\252o)-290(na)]TJ -27.879 -13.549 Td[(mis)-1(k)1(i,)-333(\\273)-1(e)-333(s)-1(ze)-1(r)1(ok)27(o)-333(rozni)1(e)-1(s\\252y)-333(s)-1(i\\246)-333(p)-28(osm)-1(ak)1(i.)]TJ 27.879 -13.549 Td[({)-243(Kas)-1(za)-244(ze)-244(s\\252onin)1(\\241,)-244(d)1(obr)1(a)-244(r)1(z)-1(ec)-1(z.)-243(Nie)-1(c)28(h)-243(w)27(ama)-244(p)-27(\\363)-56(j)1(dzie)-244(n)1(a)-244(zdr)1(o)27(wie)-244({)-243(mrucza\\252)]TJ -27.879 -13.549 Td[(dziad)-333(wietrz\\241c)-334(zapac)27(h)29(y)-334(i)-333(ob)1(lizuj)1(\\241c)-334(s)-1(i)1(\\246)-334(\\252ak)28(om)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)-55(jad)1(ali)-442(z)-443(w)27(ol)1(na,)-442(pr)1(z)-1(edm)28(uc)27(h)28(u)1(j\\241c)-442(k)55(a\\273d\\241)-442(\\252y\\273k)28(\\246)-443(s)-1(tr)1(a)27(wy)84(.)-442(\\212apa)-442(kr\\246c)-1(i\\252)-442(si\\246)-443(z)]TJ -27.879 -13.55 Td[(cic)27(h)28(y)1(m)-306(s)-1(k)28(o)28(wytem)-1(,)-305(a)-305(dziadoski)-305(pi)1(e)-1(se)-1(k)-305(z)-1(i)1(a)-56(j)1(a\\252)-306(z)-306(wywies)-1(zon)28(ym)-306(ozorem)-306(p)-27(o)-28(d)-305(\\261)-1(cian)1(\\241,)]TJ 0 -13.549 Td[(spiek)28(ota)-432(b)-28(o)28(wiem)-433(b)28(y)1(\\252a)-433(straszna,)-432(n)1(a)27(w)28(e)-1(t)-432(cienie)-432(nie)-432(o)-28(c)27(h)1(ran)1(ia\\252y)83(,)-432(d)1(z)-1(i)1(w)-433(si\\246)-433(wsz)-1(y)1(s)-1(t-)]TJ\nET\nendstream\nendobj\n1936 0 obj <<\n/Type /Page\n/Contents 1937 0 R\n/Resources 1935 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1922 0 R\n>> endobj\n1935 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1940 0 obj <<\n/Length 8725      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(607)]TJ -358.232 -35.866 Td[(k)28(o)-408(ni)1(e)-409(roztop)1(i\\252o;)-408(a)-408(w)-409(t)1(e)-1(j)-407(nagrzanej)-408(i)-408(sennej)-408(cic)27(h)1(o\\261)-1(ci)-408(j)1(e)-1(n)1(o)-408(\\252)-1(y)1(\\273)-1(ki)-407(s)-1(kr)1(z)-1(yb)-27(ota\\252y)84(,)-408(a)]TJ 0 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-334(k)56(a)-55(j\\261)-334(p)-27(o)-28(d)-333(strze)-1(c)28(h\\241)-333(z)-1(a\\261wiegota\\252)-1(a)-333(j)1(as)-1(k)28(\\363\\252k)56(a.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)-333(tak)-333(z)-334(mise)-1(cz)-1(k)28(\\246)-333(kw)27(aszonego)-334(mlek)55(a)-333(la)-333(o)-28(c)28(h\\252o)-28(dy)1(!)-333({)-334(w)28(e)-1(stc)27(h)1(n\\241\\252)-333(dziad.)]TJ 0 -13.549 Td[({)-333(Zarno)-333(w)28(am)-334(pr)1(z)-1(yn)1(ies)-1(\\246!)-333({)-334(sp)-28(ok)28(oi)1(\\252a)-334(go)-333(J\\363zk)55(a.)]TJ 0 -13.549 Td[({)-333(Du\\273o\\261)-1(cie)-334(d)1(z)-1(i)1(s)-1(ia)-55(j)-333(wykrzycz)-1(eli?)-333({)-334(zap)28(yta\\252)-333(Pi)1(e)-1(tr)1(e)-1(k)-333(ci\\241)-28(gn\\241c)-333(os)-1(p)1(ale)-334(\\252y\\273k)28(\\246)-1(.)]TJ 0 -13.55 Td[({)-282(Zm)-1(i)1(\\252)-1(u)1(j)-282(si\\246)-1(,)-282(P)29(anie;)-282(nad)-282(gr)1(z)-1(es)-1(zn)28(ymi,)-282(a)-282(ni)1(e)-283(pami\\246ta)-56(j)-281(im)-283(d)1(z)-1(iad)1(os)-1(k)1(ie)-1(j)-281(krzyw-)]TJ -27.879 -13.549 Td[(dy)1(!)-342(B)-1(oga\\242)-342(ta)-343(wiele!)-342(kt\\363ren)-342(d)1(z)-1(iad)1(a)-342(obacz)-1(y)84(,)-342(to)-342(w)-343(n)1(ie)-1(b)-27(o)-342(pil)1(nie)-342(patrzy)-342(alb)-27(o)-342(s)-1(kr)1(\\246)-1(ca)]TJ 0 -13.549 Td[(o)-371(s)-1(t)1(a)-56(je.)-371(Za\\261)-371(insz)-1(y)-370(w)-1(y)1(s)-1(u)1(ple)-371(te)-1(n)-370(grosz)-372(j)1(aki,)-371(a)-371(rad)-370(b)28(y)-371(wzi\\241\\252)-371(re)-1(szt\\246)-372(z)-371(dzie)-1(si\\241tk)1(i!)-371(Z)]TJ 0 -13.549 Td[(g\\252o)-28(d)1(u)-333(przyj)1(dzie)-334(zdyc)28(ha\\242.)]TJ 27.879 -13.549 Td[(La)-333(w)-1(szys)-1(tk)1(ic)27(h)-333(lat)1(o\\261)-334(c)-1(i)1(\\246)-1(\\273ki)-333(pr)1(z)-1(edn)1(\\363)27(w)28(e)-1(k)-333({)-333(sz)-1(epn\\246\\252a)-333(W)83(eronk)56(a.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(al)1(e)-334(na)-333(gorza\\252k)28(\\246)-334(to)-333(nik)28(om)28(u)-333(nie)-333(z)-1(b)1(rakn)1(ie)-1(.)]TJ 0 -13.55 Td[(J\\363zk)55(a)-333(w)28(e)-1(tk)1(n\\246\\252)-1(a)-333(m)27(u)-332(w)-334(gar\\261\\242)-334(mic)27(h)1(\\246)-1(,)-333(j)1(\\241\\252)-334(skw)28(apliwie)-333(p)-28(o)-55(jad)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-408(P)28(o)28(w)-1(i)1(e)-1(d)1(a)-1(l)1(i)-409(n)1(a)-409(sm\\246)-1(tar)1(z)-1(u)-408({)-408(oz)-1(w)28(a\\252)-409(si\\246)-409(zno)28(wu)-408({)-409(co)-409(Lip)-27(ce)-409(m)-1(a)-55(j\\241)-408(s)-1(i\\246)-408(dzis)-1(i)1(a)-56(j)]TJ -27.879 -13.549 Td[(go)-28(d)1(z)-1(i\\242)-333(z)-334(dziedzic)-1(em,)-334(p)1(ra)28(wda)-333(to?)]TJ 27.879 -13.549 Td[({)-333(Dos)-1(tan)1(\\241,)-333(c)-1(o)-333(im)-334(si\\246)-334(n)1(ale\\273)-1(y)84(,)-333(to)-334(mo\\273e)-334(s)-1(i)1(\\246)-334(i)-333(ugo)-28(d)1(z)-1(\\241)-333({)-333(rze)-1(k\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(A)-334(M)1(ie)-1(mce)-334(s)-1(i)1(\\246)-334(ju)1(\\273)-334(wyni)1(e)-1(s\\252y)83(,)-333(wiec)-1(ie?)-334({)-333(wyrw)28(a\\252)-334(si\\246)-334(W)1(ite)-1(k)1(.)]TJ 0 -13.55 Td[({)-333(\\233e)-1(b)28(y)-333(ic)28(h)-333(mor\\363)28(w)-1(k)56(a)-333(z)-1(d)1(usi\\252a!)-333({)-334(zakl\\241\\252)-333(wytrz\\241s)-1(a)-55(j\\241c)-333(pi\\246\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(w)28(as)-334(p)-27(okrzywdzili?)]TJ 0 -13.549 Td[({)-296(Zasz)-1(ed\\252em)-297(d)1(o)-296(ni)1(c)27(h)-296(w)28(cz)-1(ora)-55(j)-296(z)-296(wiec)-1(zora,)-296(t)1(o)-296(m)-1(e)-296(psami)-296(wysz)-1(cz)-1(u)1(li.)-296(Heret)28(yki)]TJ -27.879 -13.549 Td[(\\261c)-1(ierwy)84(,)-379(psie)-380(n)1(as)-1(ieni)1(a.)-379(P)28(ono)-379(Lip)-27(c)-1(zaki)-379(tak)-379(i)1(m)-380(dop)1(iek)55(al)1(i,)-379(\\273)-1(e)-379(m)27(u)1(s)-1(ia\\252y)-379(u)1(c)-1(iek)56(a\\242)-1(!)-379(Ze)]TJ 0 -13.549 Td[(sk)28(\\363ry)-353(b)28(y)1(m)-354(tak)1(ic)27(h)-352(ob\\252up)1(ia\\252,)-353(d)1(o)-353(\\273)-1(yw)28(ego)-353(m)-1(i\\246sa)-353({)-353(p)-28(ogad)1(yw)27(a\\252,)-352(s)-1(ieln)1(ie)-354(wygar)1(nia)-55(j\\241c)]TJ 0 -13.55 Td[(z)-334(miski,)-333(a)-333(s)-1(k)28(o\\253)1(c)-1(zyws)-1(zy)-333(nap)1(as)-1(\\252)-333(s)-1(w)28(o)-56(j)1(e)-1(go)-333(pi)1(e)-1(sk)55(a)-333(i)-333(j\\241\\252)-333(s)-1(i)1(\\246)-334(d\\271wiga\\242)-334(z)-334(p)1(rzy\\271)-1(b)29(y)83(.)]TJ 27.879 -13.549 Td[({)-333(\\233niwna)-333(p)-27(ora,)-333(to)-333(pil)1(no)-333(w)27(am)-333(do)-333(rob)-27(ot)28(y)-334({)-333(za\\261)-1(mia\\252)-333(s)-1(i\\246)-333(Pietrek.)]TJ 0 -13.549 Td[({)-332(A)-332(piln)1(o;)-332(\\252oni)-332(b)29(y\\252o)-333(n)1(as)-333(n)1(a)-333(o)-27(dp)1(u\\261c)-1(ie)-332(s)-1(ze)-1(\\261c)-1(i)1(u)-332(ws)-1(zystkiego,)-332(a)-332(dz)-1(i)1(s)-1(ia)-332(ze)-333(tr)1(z)-1(y)]TJ -27.879 -13.549 Td[(me)-1(n)1(dle)-333(s)-1(ie)-333(w)-1(yd)1(z)-1(i)1(e)-1(r)1(a,)-334(j)1(a\\273)-1(e)-333(usz)-1(y)-333(p)1(uc)27(h)1(n\\241.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(rzyjd)1(\\271)-1(cie)-334(n)1(a)-334(n)1(o)-28(c)-334({)-333(z)-1(ap)1(rasz)-1(a\\252a)-333(J\\363zk)55(a.)]TJ 0 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(c)-1(i)-333(Jezus)-334(d)1(a)-334(zdr)1(o)27(wie,)-333(c)-1(o)-333(pami\\246tasz)-334(o)-334(siero)-28(cie.)]TJ 0 -13.549 Td[({)-410(S)1(ierota)-409(ju)1(c)27(ha,)-409(a)-410(k)56(a\\252d)1(un)-409(to)-409(ju\\273)-410(l)1(e)-1(d)1(w)-1(i)1(e)-410(ud)1(\\271)-1(wign)1(ie)-410({)-410(p)1(rze)-1(kp)1(iw)28(a\\252)-410(Pi)1(e)-1(tr)1(e)-1(k)]TJ -27.879 -13.549 Td[(pat)1(rz)-1(\\241c,)-275(j)1(ak)-275(si\\246)-276(t)1(o)-28(c)-1(zy\\252)-275(\\261ro)-28(d)1(kiem)-276(d)1(rogi,)-274(grub)1(ac)27(h)1(n)28(y)-275(ki)1(e)-1(j)-274(k\\252o)-28(da,)-274(i)-275(kij)1(as)-1(zkiem)-275(m)-1(aca\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(y)83(.)]TJ 27.879 -13.549 Td[(Cha\\252u)1(pa)-241(te\\273)-242(wkr\\363t)1(c)-1(e)-241(opu)1(s)-1(tosz)-1(a\\252a,)-241(k)1(to)-241(przyleg\\252)-241(w)-241(c)-1(ieni)1(u,)-241(b)28(y)1(c)27(h)-241(si\\246)-241(pr)1(z)-1(es)-1(p)1(a\\242)-1(,)]TJ -27.879 -13.55 Td[(to)-333(ju)1(\\273)-334(c)27(h)1(rapa\\252,)-333(a)-333(res)-1(zta)-333(p)-28(osz)-1(\\252a)-333(na)-333(o)-28(d)1(pu)1(s)-1(t.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(edzw)27(on)1(ili)-409(na)-410(n)1(ies)-1(zp)-28(\\363r)1(.)-410(S)1(\\252)-1(o\\253)1(c)-1(e)-410(si\\246)-410(ju)1(\\273)-411(gal)1(ancie)-410(k\\252oni\\252o)-409(ku)-410(zac)27(h)1(o)-28(do)28(wi,)]TJ -27.879 -13.549 Td[(up)1(a\\252)-373(j)1(akb)28(y)-372(\\271dzie)-1(b)1(k)28(o)-373(sfol)1(\\273)-1(a\\252,)-372(to)-372(c)27(ho)-27(c)-1(ia\\273)-373(j)1(e)-1(szc)-1(ze)-373(s)-1(p)-27(oro)-372(wyp)-27(o)-28(c)-1(zyw)28(a\\252o)-373(p)-27(o)-28(d)-372(c)27(h)1(a\\252u-)]TJ 0 -13.549 Td[(pami,)-275(ale)-276(ju\\273)-276(coraz)-276(wi\\246)-1(ce)-1(j)-275(lu)1(dzi)-276(sc)27(ho)-27(dzi\\252o)-276(s)-1(i)1(\\246)-277(n)1(a)-276(pl)1(ac)-277(p)1(rze)-1(d)-275(k)28(o\\261)-1(cio\\252e)-1(m,)-275(p)-28(omi\\246dzy)]TJ 0 -13.549 Td[(kr)1(am)27(y)-333(i)-333(bu)1(dy)84(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-485(p)-27(onies)-1(\\252a)-485(s)-1(i)1(\\246)-486(z)-486(dzieuc)27(h)1(am)-1(i)-485(ku)1(p)-28(o)28(w)28(a\\242)-486(obr)1(az)-1(ki)1(,)-486(a)-485(g\\252\\363)28(w)-1(n)1(ie,)-486(b)29(yc)27(h)-485(si\\246)]TJ -27.879 -13.55 Td[(nap)1(atrzy\\242)-334(d)1(o)-334(syta)-333(o)28(w)-1(y)1(m)-334(ws)-1(t\\246gom,)-333(paciork)28(om)-334(i)-333(d)1(rugi)1(m)-334(cudom)-333(o)-28(dp)1(usto)28(w)-1(y)1(m)-1(.)]TJ 27.879 -13.549 Td[(Katar)1(ynk)56(a)-453(zno)28(wu)-453(zagra\\252a,)-453(dziad)1(y)-453(j\\246\\252y)-453(p)-27(os)-1(ob)1(nie)-453(wyc)-1(i)1(\\241)-28(ga\\242)-1(,)-452(brz\\246)-1(k)56(a)-55(j\\241c)-453(w)]TJ -27.879 -13.549 Td[(mis)-1(ecz)-1(ki)1(,)-431(a)-432(gw)28(ary)-431(p)-27(o)-28(dn)1(os)-1(i)1(\\252y)-431(s)-1(i\\246)-431(z)-432(w)28(olna,)-431(p)1(rze)-1(p)-27(e)-1(\\252n)1(ia)-56(j)1(\\241c)-432(ca\\252)-1(\\241)-431(wie\\261)-1(,)-431(\\273e)-432(h)28(u)1(c)-1(za\\252o)]TJ 0 -13.549 Td[(jak)28(ob)29(y)-333(w)-334(t)28(ym)-334(u)1(lu)-333(p)1(rz)-1(ed)-333(wyro)-55(jem.)]TJ 27.879 -13.549 Td[(Ka\\273den)-418(b)-27(o)27(wiem)-419(b)28(y)1(\\252)-419(syt)28(y)-418(i)-418(w)-1(y)1(p)-28(o)-28(cz)-1(\\246t)28(y)83(,)-418(to)-418(rad)-417(s)-1(i\\246)-418(s)-1(to)28(w)28(arz)-1(y)1(s)-1(za\\252)-419(a)-418(c)-1(i)1(e)-1(sz)-1(y)1(\\252)]TJ -27.879 -13.55 Td[(sp)-28(\\363\\252ec)-1(znie;)-444(k)1(to)-444(p)-27(ore)-1(d)1(z)-1(a\\252)-443(z)-445(p)1(rzyjacio\\252y)83(,)-443(kto)-444(j)1(e)-1(n)1(o)-444(\\261le)-1(p)1(ie)-444(na)-444(wsz)-1(y)1(\\242)-1(k)28(o)-444(r)1(oz)-1(t)28(wiera\\252)]TJ 0 -13.549 Td[(sz)-1(erok)28(o,)-300(kto)-301(si\\246)-301(ab)28(y)-300(cis)-1(n)1(\\241\\252,)-301(k)56(a)-55(j)-300(s)-1(i\\246)-301(d)1(ru)1(gie)-301(c)-1(i)1(s)-1(n)1(\\246)-1(\\252y)84(,)-301(k)1(to)-301(i)-300(na)-300(te)-1(n)-300(k)1(ie)-1(li)1(s)-1(ze)-1(k)-300(p)-27(o)-28(c)-1(i)1(\\241)-28(ga\\252)]TJ\nET\nendstream\nendobj\n1939 0 obj <<\n/Type /Page\n/Contents 1940 0 R\n/Resources 1938 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1938 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1944 0 obj <<\n/Length 9189      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(608)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(z)-412(kumami,)-412(kt)1(\\363re)-1(n)-411(za)-1(\\261)-412(sz)-1(ed\\252)-412(d)1(o)-412(k)28(o\\261)-1(cio\\252a)-412(leb)-27(o)-412(i)-412(sie)-1(d)1(z)-1(i)1(a)-1(\\252)-412(gd)1(z)-1(i)1(e)-1(sik)-412(w)-412(cieniu)-411(deli-)]TJ 0 -13.549 Td[(b)-27(e)-1(r)1(uj\\241c)-310(o)-310(r\\363\\273no\\261c)-1(iac)28(h,)-310(a)-310(wsz)-1(ystkic)28(h)-310(zar\\363)28(wno)-310(rozpi)1(e)-1(ra\\252a)-310(j)1(e)-1(d)1(nak)56(a)-310(rad)1(os)-1(n)1(a)-311(l)1(ub)-27(o\\261)-1(\\242)]TJ 0 -13.549 Td[(o)-28(d)1(pu)1(s)-1(to)28(w)28(ania.)-397(I)-398(nie)-398(dziw)28(ota,)-398(j)1(ak\\273)-1(e,)-398(to)-28(\\242)-398(k)56(a\\273)-1(d)1(e)-1(n)-397(wymo)-28(dl)1(i\\252)-398(s)-1(i\\246)-398(i)-398(n)1(a)28(w)-1(zdy)1(c)27(ha\\252)-398(d)1(o)]TJ 0 -13.549 Td[(w)28(oli,)-373(napat)1(rz)-1(y)1(\\252)-374(on)28(ym)-374(p)-27(oz\\252)-1(ot)1(om)-1(,)-373(\\261)-1(wiat\\252om,)-374(ob)1(razom)-374(i)-374(i)1(nn)28(ym)-374(\\261wi\\246to\\261)-1(ciom;)-374(wy-)]TJ 0 -13.549 Td[(p\\252ak)56(a\\252)-386(si\\246)-386(r)1(z)-1(ete)-1(ln)1(ie,)-386(n)1(as)-1(\\252u)1(c)27(ha\\252)-385(organ)1(\\363)27(w)-386(i)-385(\\261piew)27(a\\253)1(,)-385(a)-386(jak)1(b)28(y)-385(s)-1(i\\246)-386(ca\\252y)-386(wyk)56(\\241)-28(p)1(a\\252)-386(w)]TJ 0 -13.55 Td[(on)28(ym)-301(\\261w)-1(i)1(\\246)-1(cie)-1(,)-300(dusz)-1(\\246)-301(o)-28(cz)-1(y\\261ci\\252)-301(a)-302(skr)1(z)-1(epi\\252,)-301(n)1(aro)-28(d)1(u)-301(r\\363\\273nego)-301(z)-1(ob)1(ac)-1(zy\\252,)-301(ws)-1(p)-27(omink)28(\\363)28(w)]TJ 0 -13.549 Td[(nazbi)1(e)-1(r)1(a\\252)-334(i)-333(zb)28(y\\252)-333(s)-1(i\\246)-334(c)28(ho)-28(cia\\273)-334(n)1(a)-333(te)-1(n)-333(d)1(z)-1(i)1(e)-1(\\253)-333(j)1(e)-1(d)1(e)-1(n)-333(wsz)-1(elakic)28(h)-333(tur)1(bacji!)]TJ 27.879 -13.549 Td[(T)83(o)-301(i)-301(ob)29(yc)-1(zni)1(e)-1(,)-301(co)-301(gos)-1(p)-27(o)-28(d)1(arze)-302(n)1(a)-56(jp)1(ierws)-1(ze)-302(cz)-1(y)-300(biedota,)-300(k)28(om)-1(or)1(nik)1(i)-301(c)-1(zy)-301(pr)1(o-)]TJ -27.879 -13.549 Td[(ste)-336(d)1(z)-1(i)1(adygi)1(,)-335(a)-335(wsz)-1(ystk)28(o)-335(si\\246)-335(w)27(es)-1(eli\\252o)-334(p)-28(osp)-28(\\363l)1(nie;)-335(cz)-1(y)1(ni\\241c)-335(taki)-334(rozgw)27(ar)1(z)-1(on)28(y)-334(i)-335(r)1(oz)-1(-)]TJ 0 -13.549 Td[(k)28(oleban)28(y)-423(g\\241sz)-1(cz)-424(k)28(ole)-424(kr)1(am)-1(\\363)28(w,)-424(\\273e)-424(i)-423(przec)-1(isn\\241\\242)-424(si\\246)-424(tam)-424(b)29(y\\252o)-424(n)1(ie)-1(\\252acno.)-423(A)-424(j)1(u\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(co)-395(na)-55(jr)1(oz)-1(g\\252o\\261niej)-394(gada\\252y)-394(k)28(obiet)28(y)-395(gn)1(ie)-1(t)1(\\241c)-395(s)-1(i\\246)-395(j)1(e)-1(d)1(na)-395(p)1(rze)-1(z)-395(d)1(ru)1(g\\241)-395(do)-394(bu)1(d,)-394(ab)28(yc)27(h)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(cia\\273)-334(si\\246)-334(dot)1(kn\\241\\242)-334(i)-333(n)1(apatr)1(z)-1(y\\242)-333(on)28(yc)27(h)-333(\\261liczno\\261c)-1(i.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-269(b)28(y\\252)-270(w\\252a\\261)-1(n)1(ie)-270(kup)1(i\\252)-270(Nas)-1(tu)1(s)-1(i)-269(bu)1(rs)-1(zt)28(yn)28(y)84(,)-270(ws)-1(t)1(\\246)-1(g\\363)28(w)-270(i)-270(c)27(h)29(ustk)28(\\246)-271(cz)-1(erw)28(on\\241,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(tr)1(oi\\252a)-295(s)-1(i\\246)-295(z)-1(ar)1(az)-1(,)-295(i)-294(c)27(ho)-27(dzili)-295(o)-28(d)-294(kram)28(u)-295(d)1(o)-295(kram)28(u)-295(trzyma)-56(j)1(\\241c)-296(si\\246)-296(wp)-27(\\363\\252,)-295(rad)1(o\\261)-1(n)1(i)]TJ 0 -13.549 Td[(wielc)-1(e)-333(i)-334(j)1(ak)28(ob)28(y)-333(pi)1(jani)-333(u)1(c)-1(i)1(e)-1(c)27(h)1(\\241.)]TJ 27.879 -13.549 Td[(\\212azi\\252a)-489(z)-490(ni)1(m)-1(i)-488(J\\363z)-1(k)56(a,)-489(targu)1(j\\241c)-489(jeno)-489(i)-489(ogl)1(\\241da)-56(j)1(\\241c)-490(r)1(\\363\\273)-1(n)1(o\\261)-1(cie)-490(p)-27(orozk\\252adan)1(e)]TJ -27.879 -13.55 Td[(na)-469(s)-1(to\\252ac)28(h,)-469(a)-470(coraz)-470(i)-469(z)-470(\\273)-1(a\\252os)-1(n)29(ym)-470(wz)-1(d)1(yc)27(h)1(aniem)-470(pr)1(z)-1(elicz)-1(a\\252a)-469(t\\246)-470(s)-1(w)28(o)-56(j)1(\\241)-470(mize)-1(rn)1(\\241)]TJ 0 -13.549 Td[(z\\252)-1(ot)1(\\363)27(w)28(c)-1(zyn)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-364(pl\\241t)1(a\\252)-1(a)-364(s)-1(i)1(\\246)-365(k)55(a)-55(j\\261)-365(n)1(ie)-1(d)1(alek)28(o)-365(o)-28(d)-364(n)1(ic)27(h)-364(u)1(da)-56(j)1(\\241c)-1(,)-364(\\273e)-365(nie)-365(sp)-28(ostrzega)-365(br)1(a-)]TJ -27.879 -13.549 Td[(ta.)-414(C)-1(h)1(o)-28(dzi\\252a)-415(sama,)-415(d)1(z)-1(iwn)1(ie)-415(s)-1(m)28(utn)1(a)-415(i)-415(zgn\\246bion)1(a.)-415(Ni)1(e)-416(cies)-1(zy\\252y)-415(j)1(e)-1(j)-414(d)1(z)-1(isia)-55(j)-415(n)1(i)-415(te)]TJ 0 -13.549 Td[(rozwiane)-318(ws)-1(t\\246gi,)-317(ni)-318(gr)1(anie)-318(k)56(ataryn)1(ki,)-317(ni)-318(t)1(e)-1(n)-317(\\261)-1(cisk)-318(i)-318(wrzas)-1(k)1(i.)-318(S)1(z)-1(\\252a)-318(z)-318(dr)1(ugimi,)-317(p)-28(o-)]TJ 0 -13.55 Td[(rw)28(ana)-342(t\\252ok)1(ie)-1(m,)-342(i)-342(tam)-342(sta)28(w)27(a\\252a,)-342(k)56(a)-56(j)-341(insi)-342(sta)28(w)27(ali)1(,)-342(tam)-342(drepta\\252a,)-341(k)55(a)-55(j)-342(j)1(\\241)-342(p)-28(c)28(hali,)-341(nie)]TJ 0 -13.549 Td[(wiedz\\241c)-334(c)-1(a\\252ki)1(e)-1(m,)-333(p)-28(o)-333(co)-334(p)1(rzys)-1(z\\252a)-334(i)-333(d)1(ok)56(\\241d)-333(idzie.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(u)1(n\\241\\252)-333(s)-1(i\\246)-333(do)-333(niej)-333(Mateusz)-334(i)-333(sz)-1(epn)1(\\241\\252)-334(p)-27(ok)28(orn)1(ie)-1(:)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(mni)1(e)-334(nie)-333(go\\253)-333(o)-28(d)-333(sie)-1(b)1(ie.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(o)-27(dp)-27(\\246)-1(d)1(z)-1(a\\252am)-334(ci\\246)-334(to)-333(ki)1(e)-1(d)1(y?)]TJ 0 -13.55 Td[({)-333(Ab)-28(o)-333(raz!)-333(Nie)-334(skl\\246\\252a\\261)-334(m)-1(e)-333(to,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Nie)-1(p)-27(o)-28(cz)-1(ciwie)-334(r)1(z)-1(ek\\252e\\261)-1(,)-333(to)-333(i)-333(m)27(usia\\252am.)-333(Kt\\363\\273)-334(me)-1(.)1(..)-333({)-334(p)1(rzymilk\\252a)-333(nagle.)]TJ 0 -13.549 Td[(Jasio)-333(prze)-1(cisk)56(a\\252)-334(si\\246)-334(z)-334(w)28(olna)-333(p)1(rz)-1(ez)-334(t\\252u)1(m)27(y)-333(w)-334(j)1(e)-1(j)-332(s)-1(tr)1(on\\246)-1(.)]TJ 0 -13.549 Td[({)-286(I)-286(on)-286(n)1(a)-286(o)-28(dp)1(ust!)-286({)-286(sz)-1(epn)1(\\241\\252)-287(M)1(ate)-1(u)1(s)-1(z)-286(ws)-1(k)56(azuj\\241c)-286(ksi\\246\\273)-1(yk)56(a,)-286(kt)1(\\363re)-1(n)-285(s)-1(i)1(\\246)-287(b)1(roni)1(\\252)]TJ -27.879 -13.549 Td[(ze)-334(\\261)-1(miec)27(h)1(e)-1(m,)-333(ab)28(y)-333(go)-334(n)1(ie)-334(ca\\252o)27(w)28(ali)-333(p)-27(o)-334(r)1(\\246)-1(k)56(ac)27(h)1(.)]TJ 27.879 -13.55 Td[({)-399(Ki)1(e)-1(j)-398(dziedzic)-1(o)28(wy)-399(syn)1(!)-399(Jak)-398(s)-1(i\\246)-399(to)-398(w)-1(y)1(bra\\252!)-398(Dobr)1(z)-1(e)-399(bacz)-1(\\246,)-399(j)1(ak)-399(to)-398(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(ni)1(e)-1(d)1(a)27(wn)1(o)-334(wyr)1(yw)27(a\\252)-333(z)-1(a)-333(kr)1(o)27(wimi)-333(ogonami.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(gd)1(z)-1(i)1(e)-1(b)28(y)-333(za\\261)-334(taki)-333(kr)1(o)28(w)-1(y)-333(p)1(as)-1(a\\252)-333({)-334(p)1(rze)-1(cz)-1(y)1(\\252)-1(a)-333(n)1(ie)-1(mile)-333(dotkn)1(i\\246ta.)]TJ 0 -13.549 Td[({)-391(Rze)-1(k\\252em)-1(.)-390(P)28(ami\\246)-1(t)1(am)-1(,)-391(j)1(ak)-391(go)-391(to)-390(raz)-391(organi)1(s)-1(ta)-391(spr)1(a\\252,)-391(\\273)-1(e)-391(kr)1(o)27(wy)-391(p)1(u\\261c)-1(i)1(\\252)-391(w)]TJ -27.879 -13.549 Td[(Pr)1(ycz)-1(k)28(o)28(wy)-333(o)27(wies)-1(,)-333(a)-333(s)-1(am)-333(s)-1(e)-333(s)-1(p)1(a\\252)-334(k)56(a)-56(j)1(\\261)-334(p)-27(o)-28(d)-333(gru)1(s)-1(z\\241...)]TJ 27.879 -13.549 Td[(Jagu)1(\\261)-427(o)-28(d)1(e)-1(sz)-1(\\252a)-426(i)-426(c)27(h)1(o)-28(cia\\273)-427(n)1(ie\\261)-1(mia\\252o,)-426(pr)1(z)-1(ep)28(yc)28(ha\\252a)-426(s)-1(i)1(\\246)-427(ku)-425(niem)27(u)1(,)-426(roze)-1(\\261m)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(si\\246)-361(d)1(o)-360(niej,)-360(ale)-360(\\273)-1(e)-360(patr)1(z)-1(eli)-360(w)-360(ni)1(e)-1(go)-360(kiej)-360(w)-360(t\\246c)-1(z\\246)-1(,)-360(o)-27(dwr\\363)-28(ci\\252)-360(o)-28(cz)-1(y)-360(i)-360(n)1(akup)1(iws)-1(zy)-360(w)]TJ 0 -13.549 Td[(kr)1(am)-1(ie)-333(obrazik)28(\\363)28(w,)-333(z)-1(acz)-1(\\241\\252)-333(je)-334(r)1(oz)-1(d)1(a)28(w)27(a\\242)-334(d)1(z)-1(i)1(e)-1(u)1(c)27(hom)-333(i)-334(k)1(to)-334(c)28(hcia\\252.)]TJ 27.879 -13.549 Td[(St)1(an\\246\\252)-1(a)-383(nap)1(rze)-1(ciw)-384(ki)1(e)-1(j)-383(wryta,)-383(zapatr)1(z)-1(on)1(a)-384(w)-384(n)1(ie)-1(go)-383(rozgorza\\252)-1(y)1(m)-1(i)-383(o)-28(cz)-1(ami,)]TJ -27.879 -13.549 Td[(a)-305(z)-305(w)27(arg)-305(cze)-1(rw)28(on)28(yc)28(h)-305(p)-27(ola\\252)-305(s)-1(i)1(\\246)-306(cic)27(h)29(y)-305(l\\261)-1(n)1(i\\241cy)-305(p)-27(o\\261)-1(miec)27(h;)-304(s)-1(\\252o)-28(d)1(z)-1(iu)1(\\261)-1(k)1(i)-305(nib)29(y)-305(te)-305(m)-1(io)-27(dy)84(.)]TJ 27.879 -13.549 Td[({)-405(Na\\261c)-1(i,)-404(Jagu\\261,)-405(sw)27(o)-55(j\\241)-405(pat)1(ronk)28(\\246)-405({)-405(wyrze)-1(k)1(\\252)-406(wt)28(yk)56(a)-55(j\\241c)-405(jej)-405(ob)1(raz)-1(i)1(k,)-405(r\\246ce)-406(si\\246)]TJ -27.879 -13.55 Td[(ic)28(h)-333(s)-1(p)-27(otk)56(a\\252y)-333(i)-334(r)1(oz)-1(b)1(ie)-1(g\\252y)-333(ki)1(e)-1(j)-333(spar)1(z)-1(on)1(e)-1(.)]TJ 27.879 -13.549 Td[(Wzdr)1(ygn\\246\\252a)-347(si\\246)-1(,)-346(ni)1(e)-347(\\261)-1(miej\\241c)-347(u)1(s)-1(t)-346(ot)28(w)27(orzy\\242.)-347(M)1(\\363)27(wi\\252)-346(jes)-1(zc)-1(ze)-347(cos)-1(ik,)-346(ale)-347(j)1(akb)28(y)]TJ\nET\nendstream\nendobj\n1943 0 obj <<\n/Type /Page\n/Contents 1944 0 R\n/Resources 1942 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1942 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1947 0 obj <<\n/Length 8109      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(609)]TJ -358.232 -35.866 Td[(ut)1(on\\246\\252)-1(a)-333(w)-334(j)1(e)-1(go)-333(o)-28(cz)-1(ac)28(h)-333(i)-333(nic)-333(pra)28(wie)-334(n)1(ie)-334(p)-27(omiark)28(o)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Roz)-1(d)1(z)-1(i)1(e)-1(li)1(\\252a)-252(i)1(c)27(h)-251(g\\246st)27(w)28(a,)-251(\\273e)-252(sc)27(h)1(o)27(w)28(a)28(ws)-1(zy)-251(z)-1(a)-251(gor)1(s)-252(ob)1(razik,)-251(d)1(\\252)-1(u)1(go)-251(to)-28(cz)-1(y)1(\\252)-1(a)-251(o)-27(c)-1(za-)]TJ -27.879 -13.549 Td[(mi)-390(p)-27(o)-390(lu)1(dziac)27(h)1(.)-390(Nie)-390(b)28(y)1(\\252o)-390(go)-390(ju)1(\\273)-390(nik)56(a)-55(j,)-389(p)-28(osz)-1(ed\\252)-390(d)1(o)-390(k)28(o\\261c)-1(io\\252a,)-389(gdy\\273)-390(p)1(rze)-1(d)1(z)-1(w)28(onil)1(i)]TJ 0 -13.549 Td[(na)-333(n)1(ie)-1(sz)-1(p)-27(\\363r,)-333(ale)-333(ona)-333(c)-1(i)1(\\246)-1(giem)-334(go)-333(mia\\252a)-334(n)1(a)-334(o)-27(c)-1(zac)27(h.)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(i)-333(si\\246)-334(kiej)-333(ten)-333(\\261)-1(wi\\241tek!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(b)-27(ez)-1(w)28(olni)1(e)-1(.)]TJ 0 -13.55 Td[({)-466(T)83(ote\\273)-467(dzieuc)27(h)29(y)-466(dziw)-467(\\261lepi\\363)28(w)-466(z)-1(a)-466(ni)1(m)-467(ni)1(e)-467(p)-27(ogub)1(i\\241.)-466(G\\252up)1(ie,)-467(n)1(ie)-467(l)1(a)-467(p)1(s)-1(a)]TJ -27.879 -13.549 Td[(kie\\252basa.)]TJ 27.879 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252a)-334(si\\246)-334(p)1(r\\246dk)28(o,)-333(Mateusz)-334(sta\\252)-334(p)-27(ob)-27(ok.)]TJ 0 -13.549 Td[(Mr)1(ukn)1(\\246)-1(\\252a)-239(n)1(i)-239(to,)-239(ni)-238(o)27(w)28(o,)-239(c)28(hc)-1(\\241c)-239(si\\246)-240(o)-27(d)-239(ni)1(e)-1(go)-239(o)-28(d)1(c)-1(ze)-1(p)1(i\\242,)-239(ale)-239(s)-1(ze)-1(d)1(\\252)-240(n)1(ieo)-28(dst\\246pni)1(e)-1(,)]TJ -27.879 -13.549 Td[(d\\252u)1(go)-334(co\\261)-334(sobie)-333(w)27(a\\273y\\252,)-333(a\\273)-334(z)-1(ap)29(yta\\252:)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261,)-333(a)-334(co)-333(m)-1(atk)56(a)-333(rze)-1(kl)1(i)-334(n)1(a)-333(Szym)-1(k)28(o)28(w)28(e)-334(zap)-28(o)28(wie)-1(d)1(z)-1(i)1(e)-1(?)]TJ 0 -13.55 Td[({)-333(A)-334(c\\363\\273)-1(,)-333(k)1(ie)-1(j)-333(c)28(hce)-334(s)-1(i)1(\\246)-334(\\273)-1(eni)1(\\242)-1(,)-333(to)-333(ni)1(e)-1(c)27(h)-332(s)-1(i\\246)-333(\\273)-1(eni,)-333(j)1(e)-1(go)-333(w)27(ol)1(a.)]TJ 0 -13.549 Td[(Sk)1(rzywi\\252)-334(si\\246)-334(i)-333(p)28(y)1(ta\\252)-334(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie:)]TJ 0 -13.549 Td[({)-333(Odp)1(isz)-1(\\241)-333(m)27(u)-333(to)-333(jego)-333(m)-1(or)1(gi,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ja)-334(t)1(a)-334(wiem)-1(!)-333(Nie)-333(w)-1(y)1(z)-1(n)1(a\\252a)-334(mi)-333(s)-1(i)1(\\246)-1(.)-333(Niec)27(h)-333(si\\246)-334(j)1(e)-1(j)-333(sp)28(yta.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(t\\241)-28(p)1(i\\252)-375(d)1(o)-375(n)1(ic)27(h)-374(Szyme)-1(k)-374(z)-375(Nas)-1(tu)1(s)-1(i)1(\\241,)-375(n)1(alaz)-1(\\252)-374(s)-1(i\\246)-375(sk)56(\\241d\\261c)-1(i\\261)-375(i)-374(J\\246)-1(d)1(rzyc)27(h)1(,)-375(\\273e)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(li)-333(ca\\252\\241)-334(k)1(up\\241,)-333(a)-333(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(S)1(z)-1(y)1(m)-1(ek)-333(z)-1(acz)-1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261,)-333(m)-1(atk)1(i)-334(stron)29(y)-333(nie)-334(t)1(rz)-1(y)1(m)-1(a)-55(j,)-333(ki)1(e)-1(j)-333(si\\246)-334(mnie)-333(krzywda)-333(dzieje.)]TJ 0 -13.549 Td[({)-332(Ju\\261ci,)-332(c)-1(o)-332(za)-332(tob\\241)-332(sto)-56(j)1(\\246)-1(.)-331(Ale)-333(o)-27(dmie)-1(n)1(i\\252e)-1(\\261)-332(si\\246)-333(p)1(rze)-1(z)-332(te)-333(cz)-1(asy)83(,)-331(no,)-332(n)1(o...)-332(Ca\\252-)]TJ -27.879 -13.549 Td[(kiem)-246(kto)-246(dr)1(ugi)-246(z)-246(c)-1(iebi)1(e)-1(!)-246({)-246(d)1(z)-1(iwi\\252a)-246(si\\246,)-246(b)-28(o)-246(sto)-56(j)1(a\\252)-246(prze)-1(d)-245(ni)1(\\241)-247(sielni)1(e)-247(wy)28(e)-1(l)1(e)-1(gan)28(t)1(o)27(w)28(an)28(y)84(,)]TJ 0 -13.549 Td[(pr)1(os)-1(t)28(y)84(,)-355(wygol)1(on)28(y)-355(d)1(o)-355(cz)-1(y)1(s)-1(ta,)-354(w)-355(k)56(ap)-27(e)-1(lu)1(s)-1(i)1(e)-355(na)-354(bakier)-354(i)-355(w)-354(k)55(ap)-27(o)-28(cie)-355(b)1(ie)-1(l)1(u\\261kie)-1(j)-354(k)1(ie)-1(b)29(y)]TJ 0 -13.55 Td[(mle)-1(k)28(o.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(om)-334(si\\246)-334(wyr)1(w)27(a\\252)-333(z)-334(matc)-1(zynego)-333(s)-1(to)-55(jak)56(a.)]TJ 0 -13.549 Td[({)-333(I)-334(lepi)1(e)-1(j)-333(ci)-333(te)-1(r)1(az)-334(na)-333(w)28(oli?)-334({)-333(p)1(rz)-1(e\\261m)-1(iec)27(h)1(a\\252a)-334(si\\246)-334(z)-334(j)1(e)-1(go)-333(h)1(ardo\\261c)-1(i)1(.)]TJ 0 -13.549 Td[(Wyp)1(u\\261\\242)-334(p)1(tas)-1(zk)55(a)-333(z)-334(gar)1(\\261)-1(ci,)-333(to)-333(obacz)-1(ysz!)-334(Zap)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie)-333(s)-1(\\252ysz)-1(a\\252a\\261?)]TJ 0 -13.549 Td[({)-333(Kiedy\\273)-333(\\261)-1(lu)1(b?)]TJ 0 -13.55 Td[(Nastusia)-333(przygarn)1(\\246)-1(\\252a)-333(s)-1(i)1(\\246)-334(tkli)1(w)-1(i)1(e)-334(ob)-27(e)-1(j)1(m)27(uj)1(\\241c)-334(go)-333(w)-1(p)-27(\\363\\252.)]TJ 0 -13.549 Td[({)-333(A)-334(za)-333(trzy)-334(n)1(iedzie)-1(l)1(e)-1(,)-333(jesz)-1(cz)-1(e)-334(p)1(rze)-1(d)-333(\\273ni)1(w)27(ami)-333({)-334(sz)-1(ept)1(a\\252)-1(a)-333(sp\\252oni)1(ona.)]TJ 0 -13.549 Td[({)-333(I)-334(c)28(ho)-28(\\242b)28(y)-333(w)-334(k)56(arcz)-1(mie)-333(w)-1(y)1(pra)28(wi\\246,)-333(a)-334(matki)-333(p)1(ros)-1(i)1(\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Masz)-334(to)-333(ju\\273)-333(k)55(a)-55(j)-333(z)-1(a)28(wie\\271)-1(\\242)-333(k)28(obiet\\246)-1(?)]TJ 0 -13.549 Td[({)-357(A)-356(mam)-1(.)-356(Jak\\273e)-1(,)-356(na)-356(dr)1(ug\\241)-356(s)-1(tr)1(on\\246)-357(do)-356(matki)-357(i)-356(si\\246)-357(wypr)1(o)27(w)28(adz\\246.)-357(S)1(z)-1(u)1(k)55(a\\252)-356(p)-28(o)]TJ -27.879 -13.55 Td[(lu)1(dziac)27(h)-382(k)28(om)-1(or)1(nego)-383(nie)-383(b)-28(\\246d\\246.)-383(Niec)27(h)-382(m)-1(i)-382(jeno)-383(m\\363)-56(j)-383(gr)1(on)28(t)-383(o)-28(d)1(pisz)-1(\\241,)-382(to)-383(rad)1(\\246)-384(sobie)]TJ 0 -13.549 Td[(dam!)-333({)-333(prze)-1(c)28(h)28(w)28(ala\\252)-334(si\\246)-334(sierdzi\\261c)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(P)28(omog\\246)-334(m)27(u)1(,)-333(Jagu\\261,)-334(w)28(e)-334(wsz)-1(y\\242kim)-333(p)-28(omog\\246)-334({)-333(pr)1(z)-1(yt)28(wierd)1(z)-1(a\\252)-333(J\\246)-1(d)1(rzyc)27(h)1(.)]TJ 0 -13.549 Td[({)-438(Przec)-1(iec)27(h)-438(i)-438(m)28(y)-438(Nas)-1(tu)1(s)-1(i)-438(w)28(e)-439(\\261w)-1(i)1(at)-439(go\\252ki)1(e)-1(m)-438(nie)-438(da)-56(j)1(e)-1(m)28(y)83(.)-438(T)28(ysi\\241c)-439(z\\252ot)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(dostan)1(ie)-334(goto)28(wym)-1(i)-333(p)1(ieni\\246dzm)-1(i)-333({)-333(wyrze)-1(k)1(\\252)-334(Mat)1(e)-1(u)1(s)-1(z.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-334(o)-27(dci\\241)-28(gn)1(\\241)-1(\\252)-333(go)-333(na)-333(b)-28(ok)1(,)-333(c)-1(osik)-333(m)27(u)-333(sz)-1(epn)1(\\241\\252)-334(i)-333(p)-27(olec)-1(ia\\252.)]TJ 0 -13.55 Td[(P)28(ogad)1(yw)27(al)1(i)-330(j)1(e)-1(sz)-1(cz)-1(e)-330(co)-330(n)1(ie)-1(b)1(\\241d\\271,)-329(s)-1(zc)-1(ze)-1(g\\363ln)1(iej)-329(Szym)-1(ek)-329(roi\\252)-330(se)-1(,)-329(jak)-329(to)-329(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(z)-1(em)-388(ostan)1(ie)-1(,)-387(j)1(ak)-387(s)-1(e)-387(to)-387(gron)28(t)1(u)-387(pr)1(z)-1(yk)1(up)1(i,)-387(jak)-387(si\\246)-387(to)-387(c)27(h)28(yci)-387(zie)-1(mi,)-387(\\273e)-388(p)-27(okr)1(\\363tc)-1(e)]TJ 0 -13.549 Td[(obacz\\241,)-285(k)1(to)-285(on)-284(tak)1(i,)-284(ja\\273e)-285(Nas)-1(tu)1(s)-1(i)1(a)-285(p)1(atrza\\252a)-285(w)-285(n)1(iego)-285(z)-285(p)-27(o)-28(d)1(z)-1(iw)28(em)-1(.)-284(J\\246drzyc)28(h)-284(przy-)]TJ 0 -13.549 Td[(t)28(wie)-1(r)1(dza\\252,)-248(j)1(e)-1(n)1(o)-248(Jagusia)-247(c)27(ho)-27(dzi\\252a)-248(o)-28(cz)-1(ami)-248(p)-27(o)-248(\\261wiec)-1(ie,)-248(s\\252ysz)-1(\\241c)-248(pi)1(\\241te)-248(przez)-249(d)1(z)-1(i)1(e)-1(si\\241te.)]TJ 0 -13.549 Td[(Zar\\363)28(wno)-333(jej)-333(tam)-334(b)29(y\\252o)-334(j)1(e)-1(d)1(no.)]TJ 27.879 -13.55 Td[({)-333(Jagu\\261,)-333(przyj)1(d\\271)-334(d)1(o)-334(k)56(arczm)27(y)84(,)-334(b)-27(\\246dzie)-334(d)1(z)-1(isia)-55(j)-333(m)27(uzyk)56(a)-333({)-334(p)1(rosi\\252)-334(M)1(ate)-1(u)1(s)-1(z.)]TJ 0 -13.549 Td[({)-333(I)-334(k)56(arcz)-1(ma)-333(la)-333(m)-1(n)1(ie)-334(j)1(u\\273)-334(n)1(ie)-334(zaba)28(w)27(a)-333({)-333(o)-28(dp)1(ar\\252a)-333(s)-1(m)28(utn)1(ie)-1(.)]TJ\nET\nendstream\nendobj\n1946 0 obj <<\n/Type /Page\n/Contents 1947 0 R\n/Resources 1945 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1945 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1950 0 obj <<\n/Length 8459      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(610)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Za)-56(j)1(rza\\252)-476(w)-476(j)1(e)-1(j)-475(o)-28(czy)-476(p)1(rze)-1(mglone,)-475(z)-1(acisn\\241\\252)-476(k)56(asz)-1(ki)1(e)-1(t)-475(i)-475(p)-28(olecia\\252)-476(roztr\\241ca)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(lu)1(dzi.)-333(Pr)1(z)-1(ed)-333(pleban)1(i\\241)-333(natkn)1(\\241\\252)-334(si\\246)-334(n)1(a)-333(T)83(e)-1(r)1(e)-1(sk)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)-333(ci\\246)-334(t)1(o)-334(n)1(ie)-1(sie?)-334({)-333(z)-1(agad)1(n\\246\\252a)-334(l)1(\\246)-1(kl)1(iwie)-1(.)]TJ 0 -13.549 Td[({)-333(Do)-334(k)56(ar)1(c)-1(zm)27(y!)-333(k)28(o)28(w)28(al)-334(zw)28(o)-1(\\252u)1(je)-334(n)1(a)-333(narad)1(y)83(.)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(z\\252ab)28(ym)-333(z)-334(tob\\241.)]TJ 0 -13.55 Td[({)-324(Nie)-325(o)-28(dgan)1(iam)-325(ci\\246,)-325(miejsc)-1(a)-324(nie)-324(z)-1(br)1(akni)1(e)-1(,)-324(zw)27(a\\273)-325(j)1(e)-1(n)1(o,)-325(b)28(y)-324(ci\\246)-325(ni)1(e)-325(wz)-1(ieni)-324(na)]TJ -27.879 -13.549 Td[(ozory)83(,)-333(\\273e)-334(tak)-333(ci\\246)-1(gi)1(e)-1(m)-334(za)-333(m)-1(n)1(\\241)-334(u)29(w)27(a\\273as)-1(z.)]TJ 27.879 -13.549 Td[({)-333(I)-334(tak)-333(me)-334(j)1(u\\273)-334(n)1(os)-1(z\\241)-334(k)1(ie)-1(j)-333(p)1(s)-1(y)-333(t\\246)-333(z)-1(d)1(e)-1(c)28(h\\252\\241)-333(o)27(w)28(c)-1(\\246.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(cze)-1(m)28(u)-333(s)-1(i\\246)-333(im)-334(d)1(a)-56(j)1(e)-1(sz)-1(!)-333({)-333(z)-1(\\252y)-333(ju)1(\\273)-334(b)28(y)1(\\252)-334(i)-333(zniec)-1(i)1(e)-1(rp)1(liwion)28(y)84(.)]TJ 0 -13.549 Td[({)-333(C)-1(zem)27(u?)-333(ni)1(e)-334(wie)-1(sz)-334(to)-333(b)-27(e)-1(z)-334(co?)-334({)-333(z)-1(ask)56(ar\\273y\\252a)-334(si\\246)-334(cic)28(h)28(u\\261k)28(o.)]TJ 0 -13.549 Td[(Szarp)1(n\\241\\252)-333(s)-1(i)1(\\246)-334(i)-333(p)-28(osz)-1(ed\\252)-333(pr)1(z)-1(o)-28(d)1(e)-1(m,)-333(\\273e)-334(ledwie)-334(za)-334(n)1(im)-334(zd\\241\\273y\\252a.)]TJ 0 -13.55 Td[({)-333(Ju\\273)-334(b)1(ucz)-1(y)1(s)-1(z)-334(k)1(ie)-1(j)-332(to)-334(ciel\\246)-1(!)-333({)-333(rzuci\\252)-333(o)-28(dwraca)-56(j)1(\\241c)-334(si\\246)-334(nagl)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(n)1(ie...)-333(jeno)-333(mi)-333(pro)-28(c)28(h)-333(wle)-1(cia\\252)-333(do)-333(ok)56(a.)]TJ 0 -13.549 Td[({)-333(Jak)-333(w)-1(i)1(dz\\246)-334(p\\252ak)56(ani)1(e)-1(,)-333(to)-333(jakb)29(y)-333(m)-1(e)-334(k)1(to)-334(n)1(o\\273)-1(em)-334(\\273gn\\241\\252!)]TJ 0 -13.549 Td[(Zr\\363)28(wna\\252)-333(s)-1(i)1(\\246)-334(z)-334(ni)1(\\241)-334(i)-333(r)1(z)-1(ek\\252)-334(d)1(z)-1(i)1(w)-1(n)1(ie)-334(se)-1(r)1(dec)-1(znie:)]TJ 0 -13.549 Td[({)-327(Na\\261c)-1(i)-326(par\\246)-327(groszy)83(,)-327(k)1(up)-326(s)-1(e)-327(co)-327(na)-327(o)-28(d)1(pu)1(\\261)-1(cie,)-327(a)-327(p)-27(otem)-328(p)1(rzyjd)1(\\271)-328(d)1(o)-327(k)56(arcz)-1(m)28(y)83(,)]TJ -27.879 -13.55 Td[(to)-333(p)-28(ot)1(a\\253cujem)27(y)84(.)]TJ 27.879 -13.549 Td[(Sp)-27(o)-55(jrza\\252a)-334(o)-27(c)-1(zam)-1(i)1(,)-333(c)-1(o)-333(to)-334(j)1(akb)28(y)-333(m)28(u)-333(do)-333(n\\363g)-333(lec)-1(i)1(a\\252)-1(y)-333(z)-333(p)-28(o)-28(d)1(z)-1(i)1(\\246)-1(k)56(\\241.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(mi)-333(ta)-334(p)1(ieni\\241d)1(z)-1(e,)-333(taki\\261)-334(d)1(obr)1(y)83(..)1(.)-333(taki\\261...)-333({)-333(s)-1(ze)-1(p)1(ta\\252a)-334(r)1(oz)-1(p)1(\\252om)-1(ieni)1(ona.)]TJ 0 -13.549 Td[({)-333(A)-334(z)-333(w)-1(i)1(e)-1(cz)-1(or)1(a)-334(p)1(rzyc)27(h)1(o)-28(d\\271,)-333(prz\\363)-28(d)1(z)-1(i)-333(cz)-1(asu)-333(m)-1(i)1(a\\252)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(\\246)-1(.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252)-334(si\\246)-334(n)1(a)-334(n)1(i\\241)-333(jes)-1(zc)-1(ze)-334(z)-334(p)1(roga,)-333(u\\261mie)-1(c)28(hn)1(\\241\\252)-334(i)-333(ws)-1(ze)-1(d)1(\\252)-334(d)1(o)-333(s)-1(ieni)1(.)]TJ 0 -13.55 Td[(W)-448(k)56(arcz)-1(mie)-448(ju)1(\\273)-449(b)28(y\\252a)-448(cias)-1(n)1(ota)-448(i)-448(gor\\241c)-448(nie)-448(do)-448(wytrzymania.)-448(W)-447(g\\252)-1(\\363)28(wnej)]TJ -27.879 -13.549 Td[(izbie)-389(t\\252o)-28(cz)-1(y\\252o)-389(si\\246)-389(w)-1(i)1(e)-1(la)-389(r)1(\\363\\273)-1(n)1(e)-1(go)-389(n)1(aro)-28(d)1(u,)-389(p)1(rz)-1(epi)1(ja)-55(j\\241c)-390(a)-389(gw)28(arz\\241c)-1(,)-388(z)-1(a\\261)-389(w)-390(al)1(kierz)-1(u)]TJ 0 -13.549 Td[(ze)-1(b)1(rali)-454(si\\246)-454(c)-1(o)-454(m\\252o)-28(dsi)-454(z)-454(lip)-27(ec)27(kic)28(h,)-454(z)-454(k)28(o)28(w)27(alem)-454(i)-454(Gr)1(z)-1(el\\241,)-454(w)28(\\363)-56(j)1(to)27(wym)-454(b)1(rate)-1(m,)-454(n)1(a)]TJ 0 -13.549 Td[(cz)-1(ele)-1(.)-332(P)1(rzysz)-1(li)-332(te\\273)-333(i)-332(p)-27(oni)1(e)-1(kt\\363r)1(z)-1(y)-332(gosp)-28(o)-27(darze,)-332(jak)-332(P\\252osz)-1(k)56(a,)-332(so\\252t)27(y)1(s)-1(,)-332(K\\252\\241b)-331(i)-332(Adam,)]TJ 0 -13.549 Td[(stryj)1(e)-1(cz)-1(n)29(y)-334(Bory)1(n\\363)28(w,)-334(a)-333(n)1(a)27(w)28(e)-1(t)-333(si\\246)-334(w)28(c)-1(i)1(s)-1(n)1(\\241\\252)-334(Kob)1(us,)-333(c)27(ho)-27(\\242)-334(go)-334(n)1(ikto)-333(n)1(ie)-334(zaprasz)-1(a\\252.)]TJ 27.879 -13.55 Td[(Kiedy)-447(Mateusz)-449(ws)-1(ze)-1(d)1(\\252,)-448(w\\252a\\261)-1(n)1(ie)-449(b)28(y)1(\\252)-449(G)1(rze)-1(la)-448(p)1(ra)28(wi\\252)-448(gor\\241c)-1(o)-448(i)-448(k)1(red\\241)-448(c)-1(osik)]TJ -27.879 -13.549 Td[(pi)1(s)-1(a\\252)-333(p)-28(o)-333(stole.)]TJ 27.879 -13.549 Td[(Sz\\252o)-352(o)-352(z)-1(go)-28(d)1(\\246)-353(z)-353(d)1(z)-1(i)1(e)-1(d)1(z)-1(icem)-1(,)-352(kt)1(\\363re)-1(n)-351(obiec)-1(y)1(w)27(a\\252)-352(z)-1(a)-352(morg\\246)-352(las)-1(u)-351(da\\242)-353(c)28(h\\252op)-27(om)]TJ -27.879 -13.549 Td[(p)-27(o)-464(cz)-1(t)1(e)-1(ry)-463(n)1(a)-464(p)-27(o)-28(d)1(le)-1(skic)28(h)-463(p)-27(olac)27(h)1(,)-464(a)-463(dr)1(ugie)-463(t)28(yle)-464(ziem)-1(i)-463(p)1(u\\261)-1(ci\\242)-464(n)1(a)-463(s)-1(p)1(\\252)-1(at)28(y)1(;)-464(c)28(hcia\\252)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-333(b)-27(orgo)28(w)27(a\\242)-333(drze)-1(w)28(o)-333(na)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)84(.)]TJ 27.879 -13.55 Td[(Gr)1(z)-1(ela)-227(wyk\\252ad)1(a\\252)-227(ws)-1(zys)-1(tk)28(o)-226(p)-28(o)-27(dobn)1(ie)-227(i)-227(kr)1(e)-1(d)1(\\241)-227(znacz)-1(y\\252,)-226(jak)-227(b)29(y)-227(si\\246)-227(to)-227(p)-27(o)-28(dzielili)]TJ -27.879 -13.549 Td[(zie)-1(mi\\241)-333(i)-333(c)-1(o)-333(b)28(y)-333(wypad)1(\\252o)-334(n)1(a)-333(k)55(a\\273dego.)]TJ 27.879 -13.549 Td[({)-333(Dobr)1(z)-1(e)-334(r)1(oz)-1(w)28(a\\273)-1(cie,)-333(c)-1(o)-333(m)-1(\\363)28(wi\\246!)-333({)-334(w)28(o\\252a\\252)-334({)-333(s)-1(p)1(ra)28(w)28(a)-334(cz)-1(y)1(s)-1(ta)-333(jak)-333(z\\252oto.)]TJ 0 -13.549 Td[({)-333(Obi)1(e)-1(cank)56(a)-333(c)-1(acank)56(a,)-333(a)-334(g\\252u)1(piem)27(u)-333(r)1(ado\\261\\242)-1(!)-333({)-333(mruk)1(n\\241\\252)-334(P)1(\\252os)-1(zk)56(a.)]TJ 0 -13.549 Td[({)-357(S)1(z)-1(cz)-1(era)-357(p)1(ra)28(wda,)-357(n)1(ie)-357(obiecanki.)-356(U)-357(rejen)28(ta)-357(wsz)-1(y\\242k)28(o)-357(n)1(am)-358(o)-27(dpi)1(s)-1(ze)-1(.)-356(W)83(e\\271)-1(ta)]TJ -27.879 -13.549 Td[(in)1(o)-276(s)-1(ob)1(ie)-277(d)1(obr)1(z)-1(e)-276(do)-276(g\\252o)28(wy!)-276(T)28(ylac)27(h)1(na)-276(ziem)-1(i)-276(l)1(a)-276(naro)-27(du)1(.)-276(A)-276(to)-28(\\242)-276(k)55(a\\273dem)27(u)-275(w)-276(Lip)-27(c)-1(ac)27(h)]TJ 0 -13.55 Td[(wykr)1(oi)-334(si\\246)-334(n)1(o)28(w)27(a)-333(gos)-1(p)-27(o)-28(d)1(ark)56(a.)-333(Miar)1(kuj)1(ta)-334(i)1(no)-333(s)-1(ob)1(ie)-1(.)1(..)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-334(r)1(az)-334(jesz)-1(cz)-1(e)-334(p)-27(o)28(wt\\363rzy\\252,)-333(c)-1(o)-333(m)27(u)-333(b)29(y\\252)-334(k)56(aza\\252)-334(d)1(z)-1(iedzic)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242.)]TJ 0 -13.549 Td[(Wys\\252uc)28(hali)-241(u)28(w)28(a\\273)-1(n)1(ie,)-241(ale)-242(ni)1(kto)-241(s)-1(i\\246)-241(nie)-242(ozw)28(a\\252)-1(,)-241(p)1(atrze)-1(li)-241(j)1(e)-1(n)1(o)-242(w)-241(te)-242(b)1(ia\\252e)-242(kry)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(na)-333(stole)-334(i)-333(g\\252\\246b)-28(ok)28(o)-333(delib)-27(e)-1(r)1(o)28(w)27(ali)1(.)]TJ 27.879 -13.549 Td[({)-339(P)1(ra)28(wda,)-339(spr)1(a)27(w)28(a)-339(ki)1(e)-1(j)-338(z)-1(\\252oto,)-338(ale)-339(c)-1(zy)-339(n)1(a)-339(to)-339(k)28(omisarz)-339(p)-28(ozw)27(ol)1(i?)-339({)-339(oz)-1(w)28(a\\252)-339(si\\246)]TJ -27.879 -13.55 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(y)-333(so\\252t)28(ys)-334(orz\\241c)-334(f)1(ras)-1(ob)1(liwie)-333(pazurami)-333(p)-28(o)-333(ku)1(d\\252ac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-279(Musi!)-279(Jak)-279(gromada)-279(uc)27(h)29(w)27(ali)1(,)-280(t)1(o)-280(si\\246)-280(ur)1(z)-1(\\246d\\363)28(w)-280(o)-279(pr)1(z)-1(yzw)28(ole)-1(\\253)1(s)-1(t)28(w)28(o)-280(p)28(y)1(ta\\252a)-280(n)1(ie)]TJ\nET\nendstream\nendobj\n1949 0 obj <<\n/Type /Page\n/Contents 1950 0 R\n/Resources 1948 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1948 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1953 0 obj <<\n/Length 8156      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(611)]TJ -358.232 -35.866 Td[(b)-27(\\246)-1(d)1(z)-1(ie!)-333(Ze)-1(c)28(hce)-1(m)28(y)83(,)-333(to)-333(i)-333(on)-333(m)27(u)1(s)-1(i!)-333({)-333(zagrz)-1(mia\\252)-333(Grzela.)]TJ 27.879 -13.549 Td[({)-333(Mu)1(s)-1(i,)-332(nie)-333(m)27(u)1(s)-1(i,)-332(a)-333(t)27(y)-332(s)-1(i\\246)-333(nie)-333(wydziera)-56(j)1(.)-333(Ob)1(ac)-1(z)-333(no)-333(kt\\363r)1(y)83(,)-333(czy)-333(ab)28(y)-333(starsz)-1(y)]TJ -27.879 -13.549 Td[(ni)1(e)-334(w)27(\\241c)28(ha)-333(k)56(a)-56(j)-333(p)-27(o)-28(d)-333(\\261c)-1(ian)1(\\241?)]TJ 27.879 -13.549 Td[({)-333(Dopierom)-333(go)-334(wid)1(z)-1(ia\\252)-333(pr)1(z)-1(ed)-333(sz)-1(yn)1(kw)28(as)-1(em)-1(!)-333({)-333(ob)-55(ja\\261nia\\252)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(ie)-1(d)1(y)-333(to)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(obiec)-1(u)1(je)-334(n)1(am)-334(o)-28(d)1(pi)1(s)-1(a\\242?)-334({)-333(z)-1(agad)1(n\\241\\252)-333(kt\\363ry)1(\\261)-1(.)]TJ 0 -13.55 Td[({)-302(M\\363)28(wi\\252,)-302(co)-302(got\\363)28(w)-303(c)28(ho)-28(\\242b)28(y)-302(j)1(utr)1(o.)-302(Zgo)-28(dzim)28(y)-302(s)-1(i)1(\\246)-303(n)1(a)-302(jedno,)-301(to)-302(z)-1(ar)1(az)-303(o)-28(d)1(pi)1(s)-1(ze)-1(,)]TJ -27.879 -13.549 Td[(za\\261)-334(p)-28(ot)1(e)-1(m)-334(omen)28(tra)-333(rozm)-1(i)1(e)-1(r)1(z)-1(y)84(,)-333(c)-1(o)-333(k)28(om)27(u)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(j)1(u\\273)-333(p)-28(o)-333(\\273)-1(n)1(iw)28(ac)27(h)-333(mo\\273)-1(n)1(a)-334(b)29(y)-334(c)28(h)28(yci\\242)-334(si\\246)-334(tej)-333(zie)-1(mi:)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(a)-334(j)1(e)-1(sieni)-333(obr)1(obi\\242,)-333(jak)-333(si\\246)-334(p)1(atrzy)83(.)]TJ 0 -13.549 Td[({)-333(M\\363)-56(j)-332(Je)-1(zus,)-333(dopi)1(e)-1(r)1(o)-334(to)-333(p)-27(\\363)-56(j)1(dzie)-334(rob)-27(ota,)-333(no!)]TJ 0 -13.549 Td[(P)28(ogad)1(yw)27(al)1(i)-417(gw)28(arnie,)-417(w)28(e)-1(so\\252o,)-417(j)1(e)-1(d)1(e)-1(n)-416(pr)1(z)-1(ez)-418(d)1(ru)1(gie)-1(go.)-416(R)-1(ad)1(o\\261)-1(\\242)-417(j)1(u\\273)-417(p)-28(on)1(os)-1(i)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(ws)-1(zystkic)28(h,)-431(o)-27(c)-1(zy)-431(strze)-1(l)1(a\\252)-1(y)-430(mo)-28(c)-1(\\241,)-430(har)1(do\\261\\242)-432(p)1(rosto)28(w)27(a\\252a)-431(gr)1(z)-1(b)1(ie)-1(t)28(y)-430(i)-431(sam)-1(e)-431(r)1(\\246)-1(ce)-431(s)-1(i\\246)]TJ 0 -13.549 Td[(wyci\\241)-28(ga\\252y)-333(do)-333(br)1(ania)-333(tej)-333(z)-1(iemi)-333(upr)1(agnion)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Niejeden)-314(ju)1(\\273)-315(p)-27(o)-28(d\\261pi)1(e)-1(wyw)28(a\\252)-315(z)-315(u)1(c)-1(i)1(e)-1(c)28(h)28(y)-314(i)-314(krzyk)56(a\\252)-315(n)1(a)-315(\\233y)1(da)-314(o)-315(gor)1(z)-1(a\\252k)28(\\246,)-314(nieje-)]TJ -27.879 -13.549 Td[(den)-329(p)1(l\\363t\\252)-329(trzy)-329(p)-28(o)-329(tr)1(z)-1(y)-329(o)-329(dzia\\252ac)27(h)1(,)-329(a)-329(k)55(a\\273dem)27(u)-328(roi\\252y)-329(si\\246)-330(n)1(o)27(w)28(e)-330(gosp)-27(o)-28(dar)1(ki,)-329(b)-27(ogac)-1(-)]TJ 0 -13.549 Td[(t)28(w)27(a)-344(i)-345(rad)1(o\\261)-1(cie.)-345(Ba)-56(j)1(du)1(rz)-1(y)1(li)-345(te\\273)-345(kiej)-345(p)1(ijan)1(i,)-345(\\261mie)-1(j)1(\\241c)-345(s)-1(i\\246,)-345(b)1(ij)1(\\241c)-346(p)1(i\\246)-1(\\261ciam)-1(i)-344(w)-345(s)-1(t)1(o\\252)-1(y)-344(a)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(tup)1(uj\\241c)-333(ogni\\261c)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Dopiero)-333(to)-333(w)-334(Lip)-27(cac)27(h)-333(nastan)1(ie)-334(\\261w)-1(i)1(\\246)-1(to!)]TJ 0 -13.549 Td[({)-333(He)-1(j)1(,)-333(a)-334(j)1(akie)-334(zaba)28(wy)-333(p)-28(\\363)-55(jd)1(\\241,)-333(a)-334(j)1(akie)-334(m)28(uzyki!)]TJ 0 -13.549 Td[({)-333(I)-334(wiela)-333(to)-334(w)28(es)-1(elisk)-334(o)-27(dp)1(ra)28(w)-1(i)-333(si\\246)-334(w)-333(z)-1(ap)1(ust)28(y!)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(u)1(c)27(h)-333(w)28(e)-334(ws)-1(i)-333(z)-1(ab)1(rakn)1(ie!)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(se)-334(mies)-1(c)28(kic)27(h)-333(p)1(rzyku)1(piem)27(y)84(,)-333(nie)-333(s)-1(ta\\242)-334(t)1(o)-334(n)1(as)-1(?!)]TJ 0 -13.549 Td[({)-333(Psiac)27(h)1(m)-1(a\\242,)-333(w)-334(sam)-1(e)-333(ogie)-1(r)1(y)-333(je\\271)-1(d)1(z)-1(i\\252)-333(b)-27(\\246)-1(d)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-362(Cic)28(hota)-361(no)-362({)-361(z)-1(a)28(w)28(o\\252a\\252)-362(s)-1(tar)1(y)-362(P)1(\\252os)-1(zk)56(a)-362(bi)1(j\\241c)-362(pi)1(\\246)-1(\\261c)-1(i\\241)-361(w)-362(s)-1(t)1(\\363\\252)-362({)-362(a)-361(to)-362(kr)1(z)-1(ycz)-1(\\241)]TJ -27.879 -13.549 Td[(kiej)-267(\\233ydy)-267(w)-268(s)-1(zabas!)-268(Chcia\\252em)-268(jeno)-268(p)-27(edzie)-1(\\242,)-268(cz)-1(y)-267(ab)28(y)-267(w)-268(te)-1(j)-267(dziedzico)27(w)28(e)-1(j)-267(ob)1(ie)-1(tn)1(icy)]TJ 0 -13.549 Td[(ni)1(e)-334(ma)-334(j)1(ak)28(o)27(w)28(e)-1(go)-333(p)-27(o)-28(dej\\261cia?)-334(M)1(iarku)1(jeta,)-333(c)-1(o?)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(hli)1(,)-471(j)1(akb)28(y)-470(ic)28(h)-470(kto)-470(z)-471(nag\\252a)-470(obla\\252)-470(zim)-1(n)1(\\241)-471(w)28(o)-28(d)1(\\241,)-470(dopi)1(e)-1(r)1(o)-471(p)-27(o)-471(c)28(h)28(wili)]TJ -27.879 -13.549 Td[(ozw)27(a\\252)-333(s)-1(i\\246)-333(s)-1(o\\252t)28(ys:)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(t)1(e)-1(\\273)-334(n)1(ie)-334(mog\\246)-334(wyrozumie\\242)-1(,)-333(lacze)-1(go)-333(taki)-333(ho)-55(jn)28(y)1(?)]TJ 0 -13.549 Td[({)-372(Ju\\261c)-1(i,)-372(w)-372(t)28(ym)-373(m)28(usi)-373(b)29(y\\242)-373(jak)1(ie)-1(\\261)-372(p)-28(o)-27(dej\\261)-1(cie,)-372(b)-28(o)-372(\\273e)-1(b)28(y)-372(d)1(a)27(w)28(a\\242)-373(t)28(ylac)28(hn)1(a)-373(ziem)-1(i)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-334(z)-1(a)-333(dar)1(m)-1(o)-333({)-333(c)-1(i\\241)-27(gn\\241\\252)-333(kt\\363ry)1(\\261)-334(z)-1(e)-333(s)-1(tar)1(yc)27(h.)]TJ 27.879 -13.55 Td[(Ale)-334(n)1(a)-333(to)-334(p)-27(orw)28(a\\252)-334(si\\246)-334(G)1(rze)-1(la)-333(i)-333(z)-1(ak)1(rz)-1(y)1(c)-1(za\\252:)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(w)28(am)-334(p)-27(o)28(wie)-1(m,)-333(\\273)-1(e\\261)-1(t)1(a)-334(g\\252u)1(pie)-334(b)1(aran)28(y)-333(i)-333(t)28(yl)1(a!)]TJ 0 -13.549 Td[(I)-298(z)-1(n)1(o)28(w)-1(u)-297(j\\241\\252)-298(t\\252umac)-1(zy\\242)-298(i)-298(przek\\252ada\\242)-299(zapal)1(c)-1(zywie,)-298(ja\\273e)-299(si\\246)-299(sp)-28(o)-27(c)-1(i\\252)-298(ki)1(e)-1(j)-298(m)28(ysz)-1(,)]TJ -27.879 -13.549 Td[(k)28(o)28(w)27(al)-340(te\\273)-342(sielni)1(e)-341(m)-1(e\\252\\252)-341(oz)-1(or)1(e)-1(m)-341(i)-340(k)56(a\\273)-1(d)1(e)-1(m)28(u)-341(z)-341(osobn)1(a)-341(ry)1(c)27(h)28(to)28(w)28(a\\252)-1(,)-340(ale)-341(stary)-340(P\\252osz)-1(k)56(a)]TJ 0 -13.549 Td[(ni)1(e)-324(da\\252)-323(si\\246)-324(p)1(rze)-1(k)56(abaci\\242,)-323(g\\252o)27(w)28(\\241)-323(jeno)-323(kiw)28(a\\252)-323(i)-323(pr)1(z)-1(e\\261)-1(miec)27(ha\\252)-323(tak)-323(k)56(\\241\\261liwie,)-323(a\\273)-324(Gr)1(z)-1(ela)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-334(d)1(o)-334(n)1(ie)-1(go)-333(z)-334(p)1(i\\246\\261)-1(ciami,)-333(le)-1(d)1(wie)-334(ju)1(\\273)-334(p)-27(o)28(w)-1(strzym)28(uj\\241c)-333(z)-1(\\252o\\261\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(Rz)-1(ekni)1(jcie)-334(sw)27(o)-56(j)1(\\241)-333(pra)28(wd\\246,)-333(kiej)-333(nasz)-1(a)-333(wid)1(z)-1(i)-333(si\\246)-334(w)27(am)-333(c)-1(y)1(ga\\253st)27(w)28(em)-1(.)]TJ 0 -13.549 Td[({)-223(A)-223(rze)-1(k)28(\\246!)-223(Znam)-224(d)1(obr)1(z)-1(e)-224(t)1(o)-224(p)1(ies)-1(ki)1(e)-224(nasienie,)-223(z)-1(n)1(am)-224(i)-223(m\\363)28(w)-1(i)1(\\246)-224(w)28(a)-56(ju)1(:)-223(ni)1(e)-224(wie)-1(r)1(z)-1(ta)]TJ -27.879 -13.549 Td[(dziedzico)27(wi,)-273(p)-27(\\363ki)-273(n)1(ie)-274(b)-27(edzie)-274(cz)-1(ar)1(no)-273(na)-273(b)1(ia\\252ym.)-273(Za)27(w\\273dy)-273(si\\246)-274(n)1(as)-1(z\\241)-273(krzywd\\241)-273(p)1(as)-1(\\252y)84(,)]TJ 0 -13.549 Td[(to)-333(i)-333(te)-1(r)1(a)-334(c)28(hc\\241)-334(si\\246)-334(n)1(a)-334(n)1(as)-334(p)-27(o\\273)-1(ywi\\242!)]TJ 27.879 -13.549 Td[({)-360(T)83(ak)-359(m)-1(i)1(arku)1(jec)-1(ie,)-360(n)1(o)-360(to)-360(si\\246)-360(ni)1(e)-361(g\\363)-27(d\\271c)-1(ie,)-360(al)1(e)-361(d)1(ru)1(gim)-360(nie)-360(p)1(rze)-1(sz)-1(k)56(adza)-56(j)1(c)-1(i)1(e)-1(!)]TJ -27.879 -13.55 Td[({)-333(krzykn)1(\\241\\252)-334(n)1(a)-334(n)1(ie)-1(go)-333(K\\252\\241b)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(z)-1(i\\252e\\261)-334(z)-334(n)1(im)-1(i)-333(d)1(o)-334(b)-27(oru)1(,)-333(to)-333(ic)27(h)-333(stron)1(\\246)-334(i)-333(te)-1(r)1(a)-334(tr)1(z)-1(y)1(m)-1(asz)-1(!)]TJ\nET\nendstream\nendobj\n1952 0 obj <<\n/Type /Page\n/Contents 1953 0 R\n/Resources 1951 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1951 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1956 0 obj <<\n/Length 9478      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(612)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-307(A)-307(c)28(ho)-28(d)1(z)-1(i\\252em,)-307(a)-307(jak)-306(b)-28(\\246dzie)-307(p)-27(otrza,)-307(to)-307(i)-307(j)1(e)-1(szc)-1(ze)-1(k)-306(p)-28(\\363)-28(d)1(\\246)-1(!)-306(A)-307(trzymam)-307(nie)-307(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-1(,)-364(jeno)-365(za)-365(z)-1(go)-27(d\\241,)-365(za)-365(spra)28(wiedli)1(w)27(o\\261c)-1(i\\241,)-364(z)-1(a)-365(ca\\252\\241)-365(ws)-1(i)1(\\241.)-365(Bo)-365(jeno)-365(g\\252u)1(pi)-365(n)1(ie)-365(w)-1(i)1(dzi)]TJ 0 -13.549 Td[(w)-334(t)28(y)1(m)-334(dob)1(rego)-334(l)1(a)-334(Lip)1(iec)-1(.)-333(Jeno)-333(g\\252up)1(i)-334(n)1(ie)-334(b)1(ierz)-1(e,)-333(jak)-333(d)1(a)-56(j\\241.)]TJ 27.879 -13.549 Td[({)-308(W)1(y\\261)-1(ta)-307(w)-1(szys)-1(tk)1(ie)-308(g\\252upi)1(e)-1(,)-307(b)-28(o)-307(piln)1(o)-308(w)28(am)-1(a)-307(s)-1(p)1(rz)-1(eda\\242)-308(za)-308(ob)-27(e)-1(r)1(te)-1(l)1(e)-1(k)-307(c)-1(a\\252e)-308(p)-28(or)1(-)]TJ -27.879 -13.549 Td[(tki)1(.)-334(G)1(\\252upi)1(e)-1(,)-333(sk)28(oro)-333(dzie)-1(d)1(z)-1(i)1(c)-334(t)28(yle)-334(d)1(a)-56(j)1(e)-1(,)-333(to)-333(mo\\273)-1(e)-334(i)-333(wi\\246c)-1(ej.)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246li)-290(si\\246)-290(p)1(rz)-1(ema)27(wia\\242)-290(coraz)-290(zapalcz)-1(y)1(w)-1(i)1(e)-1(j)1(,)-290(a)-289(\\273)-1(e)-290(i)-289(dru)1(gie)-290(ws)-1(p)-27(omaga\\252y)-290(K\\252\\246-)]TJ -27.879 -13.549 Td[(ba,)-258(to)-259(z)-1(rob)1(i\\252)-259(s)-1(i)1(\\246)-260(taki)-258(g)-1(w)28(ar,)-259(j)1(a\\273)-1(e)-259(pr)1(z)-1(yl)1(e)-1(cia\\252)-259(Jank)1(ie)-1(l)-259(i)-258(s)-1(ieln\\241)-259(\\015)1(ac)27(h)1(\\246)-260(gorza\\252y)-259(p)-27(os)-1(ta)28(wi\\252)]TJ 0 -13.549 Td[(na)-333(stole.)]TJ 27.879 -13.549 Td[({)-500(S)1(z)-1(a,)-499(sz)-1(a,)-499(gos)-1(p)-27(o)-28(d)1(arz)-1(e!)-499(Nie)-1(c)28(h)-500(b)-27(\\246dzie)-500(z)-1(go)-27(da!)-499(\\233e)-1(b)28(y)-499(P)28(o)-28(d)1(les)-1(ie)-500(b)28(y)1(\\252y)-500(n)1(o)27(w)28(e)]TJ -27.879 -13.549 Td[(Lip)-27(c)-1(e!)-333(\\273)-1(eb)28(y)-333(k)56(a\\273)-1(d)1(y)-333(b)28(y\\252)-333(pan)1(!)-334({)-333(w)28(o\\252a\\252)-334(p)1(usz)-1(cz)-1(a)-55(j\\241c)-334(ki)1(e)-1(li)1(s)-1(ze)-1(k)-333(k)28(olejk)56(\\241.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-435(c)-1(o)-435(w)-1(zi\\246li)-435(pi\\242,)-435(a)-436(jesz)-1(cz)-1(e)-436(b)1(arze)-1(j)-435(si\\246)-436(ugw)28(arza\\242)-1(,)-435(ws)-1(zysc)-1(y)-435(ju)1(\\273)-436(b)-28(o)28(wiem)]TJ -27.879 -13.55 Td[(sk\\252anial)1(i)-334(si\\246)-334(d)1(o)-333(z)-1(go)-28(d)1(y)-333(opr\\363)-27(c)-1(z)-334(starego)-333(P\\252os)-1(zki.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al,)-227(kt\\363ren)-227(m)27(u)1(s)-1(ia\\252)-227(w)-228(t)28(ym)-227(m)-1(i)1(e)-1(\\242)-228(j)1(aki\\261)-228(gr)1(ub)28(y)-227(p)1(ro\\014t,)-227(n)1(a)-56(j)1(g\\252)-1(o\\261ni)1(e)-1(j)-227(r)1(oz)-1(ma)28(w)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(rozw)27(o)-27(dz\\241c)-283(s)-1(i\\246)-283(o)-282(dziedzic)-1(o)28(w)28(e)-1(j)-282(p)-27(o)-28(cz)-1(ciw)27(o\\261ci,)-283(a)-282(raz)-283(p)-27(o)-283(r)1(az)-283(s)-1(ta)28(wia\\252)-283(l)1(a)-283(ca\\252)-1(ej)-282(k)28(ompani)1(i)]TJ 0 -13.549 Td[(to)-333(gorza\\252\\246)-1(,)-333(to)-333(piw)28(o,)-333(to)-333(na)28(w)27(et)-333(arak)-333(z)-334(es)-1(encj\\241.)]TJ 27.879 -13.549 Td[(Cies)-1(zyli)-250(s)-1(i\\246)-251(t)1(ak)-251(galan)1(c)-1(i)1(e)-1(,)-250(c)-1(o)-250(ju)1(\\273)-252(n)1(iejeden)-250(je)-1(n)1(o)-251(o)-27(c)-1(zy)-251(b)1(a\\252usz)-1(y\\252)-250(i)-251(ozorem)-251(le)-1(d)1(w)27(o)]TJ -27.879 -13.55 Td[(ru)1(c)27(h)1(a\\252)-1(,)-239(za\\261)-240(K)1(obus,)-239(kt\\363r)1(e)-1(n)-239(ca\\252y)-239(c)-1(zas)-240(p)1(ary)-239(z)-240(g\\246b)28(y)-239(n)1(ie)-240(p)1(u\\261c)-1(i\\252,)-239(j)1(\\241\\252)-240(n)1(araz)-240(c)28(h)28(yb)1(a\\242)-240(lu)1(dzi)]TJ 0 -13.549 Td[(za)-334(or)1(z)-1(yd)1(la)-333(i)-333(krzyc)-1(ze)-1(\\242:)]TJ 27.879 -13.549 Td[({)-496(A)-496(k)28(omorn)1(iki)-495(to)-496(c)-1(o?)-496(P)1(s)-1(i)-495(pazur?)-496(I)-496(n)1(am)-496(s)-1(i\\246)-496(nal)1(e)-1(\\273y)-496(zie)-1(mia!)-495(Nie)-497(d)1(opu)1(-)]TJ -27.879 -13.549 Td[(\\261c)-1(im)-335(do)-335(z)-1(go)-27(dy!)-335(P)28(o)-335(s)-1(p)1(ra)28(wiedliw)28(o\\261c)-1(i)-335(b)28(y\\242)-335(m)27(u)1(s)-1(i!)-335(Jak)1(\\273)-1(e,)-336(t)1(o)-336(j)1(e)-1(d)1(e)-1(n)-335(l)1(e)-1(d)1(w)-1(i)1(e)-336(ju)1(\\273)-336(s)-1(p)1(a\\261)-1(n)29(y)]TJ 0 -13.549 Td[(k)56(a\\252du)1(n)-417(u)1(d\\271w)-1(i)1(gnie,)-417(a)-417(d)1(ru)1(gi)-417(ma)-417(z)-1(d)1(yc)27(h)1(a\\242)-417(z)-418(g\\252o)-28(d)1(u?)-417(P)29(o)-417(r\\363)28(wno)-417(m)28(usi)-417(b)28(y\\242)-417(ziem)-1(i)-416(la)]TJ 0 -13.55 Td[(ws)-1(zystkic)28(h!)-283(Dzie)-1(d)1(z)-1(i)1(c)-1(e)-284(\\261cie)-1(r)1(w)-1(y)1(!)-283(Nie)-1(j)1(e)-1(d)1(e)-1(n)-282(go\\252)-1(y)1(m)-284(zadem)-284(\\252ysk)55(a,)-283(a)-283(n)1(os)-284(dr)1(z)-1(e)-283(do)-283(g\\363ry)84(,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-281(ci\\246)-1(gi)1(e)-1(m)-281(kic)28(ha\\252!)-281(Ko\\252tu)1(niar)1(z)-1(e)-281(z)-1(ap)-27(o)28(wie)-1(tr)1(z)-1(on)1(e)-1(!)-280({)-281(krzyc)-1(za\\252)-281(c)-1(or)1(az)-282(g\\252o\\261niej)-281(i)-280(tak)]TJ 0 -13.549 Td[(ni)1(e)-1(p)1(rzys)-1(to)-55(jn)1(ie)-377(ws)-1(zystkim)-377(p)1(rzyma)27(wia\\252,)-376(j)1(a\\273)-1(e)-377(go)-376(wyc)-1(i)1(e)-1(p)1(n\\246li)-376(z)-1(a)-376(drzwi,)-376(ale)-377(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(k)56(arcz)-1(m\\241)-333(kl\\241\\252)-334(i)-333(wygr)1(a\\273)-1(a\\252.)]TJ 27.879 -13.549 Td[(Kompan)1(ia)-365(te)-1(\\273)-366(n)1(ie)-1(zad\\252u)1(go)-366(zac)-1(z\\246\\252)-1(a)-365(si\\246)-366(rozc)27(ho)-27(dzi\\242)-366(do)-365(dom\\363)28(w,)-366(j)1(e)-1(n)1(o)-366(co)-366(\\252ap)1(-)]TJ -27.879 -13.55 Td[(cz)-1(ywsi)-333(na)-333(ucie)-1(c)28(h\\246)-334(ostali)-333(w)-333(k)55(ar)1(c)-1(zm)-1(i)1(e)-1(,)-333(k)56(a)-56(j)-333(j)1(u\\273)-333(p)-28(ob)1(rz)-1(\\246kiw)28(a\\252a)-333(m)27(uzyk)56(a.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-262(i)-261(wiec)-1(z\\363r)-261(s)-1(i\\246)-261(b)28(y\\252)-262(r)1(obi\\252,)-261(s\\252)-1(o\\253)1(c)-1(e)-261(z)-1(ap)1(ad\\252o)-262(za)-262(b)-27(ory)-261(i)-261(ca\\252)-1(e)-261(nieb)-28(o)-261(s)-1(t)1(an\\246\\252)-1(o)]TJ -27.879 -13.549 Td[(w)-298(z)-1(or)1(z)-1(ac)27(h)1(,)-298(a\\273)-299(cz)-1(u)1(b)28(y)-298(zb)-28(\\363\\273)-298(i)-298(s)-1(ad)1(\\363)28(w)-299(j)1(akb)28(y)-298(si\\246)-299(p)1(\\252a)27(wi\\252y)-298(w)-298(cz)-1(erwieni)-298(a)-298(z)-1(\\252o)-27(c)-1(ie.)-298(Za)28(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(w)28(a\\252)-354(wilgotn)28(y)84(,)-354(p)1(ie\\261)-1(ciwy)-354(wiater,)-353(\\273)-1(ab)28(y)-353(j\\246\\252y)-354(r)1(e)-1(c)28(hota\\242,)-354(o)-28(d)1(z)-1(y)1(w)27(a\\252y)-353(s)-1(i\\246)-354(p)1(rze)-1(\\242)-354(pi)1(\\363rki,)-353(a)]TJ 0 -13.549 Td[(gran)1(ie)-280(k)28(oni)1(k)28(\\363)27(w)-280(r)1(oz)-1(tr)1(z)-1(\\241sa\\252o)-280(si\\246)-280(p)-27(o)-280(p)-27(olac)27(h)-279(kiej)-279(te)-1(n)-279(n)1(ie)-1(u)1(s)-1(t)1(a)-56(j\\241cy)-279(c)27(hr)1(z)-1(\\246s)-1(t)-279(do)-55(jrza\\252yc)27(h)]TJ 0 -13.55 Td[(k\\252os\\363)27(w,)-279(roz)-1(j)1(e)-1(\\273d\\273ali)-279(s)-1(i\\246)-280(j)1(u\\273)-280(z)-281(o)-27(dpu)1(s)-1(t)1(u,)-280(\\273e)-280(jeno)-280(w)28(oz)-1(y)-279(tur)1(k)28(ota\\252y)83(,)-279(a)-280(k)55(a)-55(j)-279(niek)55(a)-55(j)-279(ktos)-1(i)1(k)]TJ 0 -13.549 Td[(dob)1(rze)-334(nap)1(it)28(y)-333(wy\\261)-1(p)1(iew)-1(y)1(w)27(a\\252)-333(rozg\\252)-1(o\\261ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252y)-349(Lip)-27(c)-1(e,)-349(pu)1(s)-1(to)-349(s)-1(i)1(\\246)-350(z)-1(r)1(obi\\252o)-349(pr)1(z)-1(ed)-349(k)28(o\\261)-1(cio\\252em)-1(,)-349(ale)-349(jes)-1(zc)-1(ze)-350(p)-27(o)-28(d)-349(c)27(h)1(a-)]TJ -27.879 -13.549 Td[(\\252up)1(am)-1(i)-333(siedzie)-1(l)1(i)-334(g\\246sto)-334(l)1(udzie)-334(za\\273yw)27(a)-55(j\\241c)-334(c)28(h\\252o)-28(d)1(u)-333(i)-333(w)27(cz)-1(as\\363)28(w)]TJ 27.879 -13.549 Td[(Cic)27(h)29(y)-237(zm)-1(i)1(e)-1(r)1(z)-1(c)27(h)-236(sta)28(w)27(a\\252)-236(s)-1(i\\246)-236(na)-237(\\261wiec)-1(ie,)-236(m)-1(r)1(o)-28(c)-1(znia\\252y)-236(p)-27(ola,)-236(dale)-237(stapi)1(a\\252y)-237(si\\246)-237(ju)1(\\273)]TJ -27.879 -13.549 Td[(z)-337(nieb)-27(e)-1(m,)-337(ws)-1(zystk)28(o)-337(s)-1(i)1(\\246)-338(sp)-27(ok)28(oi\\252o,)-337(\\261pik)-336(z)-338(w)28(olna)-336(m)-1(orzy\\252)-337(ziem)-1(i\\246)-337(i)-337(ob)1(tul)1(a\\252)-337(j\\241)-337(ciep\\252\\241)]TJ 0 -13.55 Td[(ros\\241,)-433(za\\261)-434(ze)-434(sad\\363)28(w)-433(try)1(s)-1(k)56(a\\252y)-433(kiej)-433(n)1(iekiej)-433(pt)1(as)-1(ie)-433(g\\252os)-1(y)84(,)-433(j)1(ak)28(ob)28(y)-433(t)28(ym)-433(wie)-1(cz)-1(or)1(n)28(ym)]TJ 0 -13.549 Td[(pacierze)-1(m.)]TJ 27.879 -13.549 Td[(Byd\\252o)-473(wraca\\252o)-473(z)-473(past)27(wisk,)-472(raz)-473(p)-28(o)-473(r)1(az)-474(b)1(uc)28(ha\\252y)-473(d)1(\\252ugie,)-473(t\\246s)-1(kl)1(iw)27(e)-473(ry)1(ki,)-473(a)]TJ -27.879 -13.549 Td[(rogate)-408(\\252b)28(y)-408(p)-27(ok)56(az)-1(y)1(w)27(a\\252y)-408(si\\246)-408(nad)-407(s)-1(ta)28(w)28(e)-1(m,)-408(r)1(oz)-1(gorza\\252ym)-408(ogni)1(am)-1(i)-408(zac)27(h)1(o)-28(du)-407(jak)28(ob)29(y)]TJ 0 -13.549 Td[(kr)1(w)27(a)28(wym)-336(z)-1(ar)1(z)-1(ewie)-1(m.)-335(Ka)-56(j)1(\\261)-336(p)-28(o)-28(d)-335(m\\252ynem)-336(bar)1(as)-1(zk)28(o)27(w)28(a\\252y)-336(z)-336(wrzaskie)-1(m)-336(k)56(\\241)-28(p)1(i\\241ce)-336(s)-1(i\\246)]TJ 0 -13.55 Td[(c)27(h)1(\\252opaki)1(,)-361(za\\261)-361(p)-27(o)-360(ob)-28(ej\\261c)-1(i)1(ac)27(h)-360(tr)1(z)-1(\\246s)-1(\\252y)-360(si\\246)-361(d)1(z)-1(ieusz)-1(y)1(ne)-361(p)1(ies)-1(n)1(e)-1(cz)-1(k)1(i,)-360(to)-360(b)-28(eki)-360(o)28(w)-1(i)1(e)-1(c,)-360(to)]TJ 0 -13.549 Td[(g\\246s)-1(ie)-333(g\\246)-1(got)28(y)84(.)]TJ\nET\nendstream\nendobj\n1955 0 obj <<\n/Type /Page\n/Contents 1956 0 R\n/Resources 1954 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1941 0 R\n>> endobj\n1954 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1959 0 obj <<\n/Length 9063      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(613)]TJ -330.353 -35.866 Td[(Jeno)-237(u)-237(Bory)1(n\\363)28(w)-238(b)29(y\\252o)-237(c)-1(ic)28(ho)-237(i)-237(p)1(usto.)-237(Hank)56(a)-237(p)-27(onies)-1(\\252a)-237(si\\246)-238(z)-237(dzie\\242)-1(mi)-237(do)-237(kt)1(\\363re)-1(j)1(\\261)]TJ -27.879 -13.549 Td[(z)-462(k)1(um,)-461(Pietrek)-461(s)-1(i)1(\\246)-462(te)-1(\\273)-461(k)56(a)-56(j\\261)-461(z)-1(ap)-27(o)-28(d)1(z)-1(ia\\252,)-461(a)-461(Jagu)1(s)-1(ia)-461(ni)1(e)-462(p)-27(ok)55(aza\\252a)-461(s)-1(i\\246)-461(jes)-1(zc)-1(ze)-462(o)-28(d)]TJ 0 -13.549 Td[(ni)1(e)-1(sz)-1(p)-27(or\\363)28(w,)-333(\\273)-1(e)-334(t)28(y)1(lk)28(o)-334(J)1(\\363z)-1(k)56(a)-333(z)-1(wij)1(a\\252)-1(a)-333(si\\246)-334(k)28(ole)-334(wiecz)-1(orn)29(yc)27(h)-333(ob)1(rz\\241dk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(\\221l)1(e)-1(p)28(y)-325(dziad)-325(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-325(w)-326(ganku)1(,)-326(n)1(as)-1(ta)28(wia\\252)-326(g\\246b)28(y)-326(n)1(a)-326(c)27(h)1(\\252o)-28(dn)1(a)28(w)-1(y)-325(wiater,)-326(mru)1(-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252)-420(p)1(ac)-1(i)1(e)-1(rz,)-419(a)-420(pi)1(lnie)-420(n)1(as)-1(\\252u)1(c)27(h)1(iw)27(a\\252)-419(Witk)28(o)28(w)27(ego)-420(b)-27(o)-28(\\242k)56(a;)-420(kt\\363r)1(e)-1(n)-419(kr)1(\\246)-1(ci\\252)-420(si\\246)-420(wp)-28(o)-27(dle)]TJ 0 -13.55 Td[(ry)1(c)27(h)28(tu)1(j\\241c)-334(p)1(rzyc)-1(za)-56(j)1(on)28(ym)-333(dziob)-28(em)-334(w)-333(jego)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[({)-284(C)-1(i)1(e)-1(..)1(.)-284(\\233)-1(eb)28(y\\261)-284(s)-1(ki)1(s)-1(\\252,)-284(zb)-28(\\363)-55(ju)-284(j)1(e)-1(d)1(e)-1(n)1(!)-285(A)-284(to)-284(me)-285(kuj)1(n\\241\\252!)-284({)-284(m)-1(r)1(ucz)-1(a\\252)-284(z)-1(b)1(iera)-56(j)1(\\241c)-285(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie)-345(k)1(ulasy)-344(i)-344(mac)27(h)1(a)-1(\\252)-344(wielkim)-344(r\\363\\273a\\253ce)-1(m,)-344(b)-27(o)-28(cie)-1(k)-343(o)-28(dlecia\\252)-344(par\\246)-344(krok)28(\\363)28(w)-344(i)-344(z)-1(n)1(o)28(w)-1(u)]TJ 0 -13.549 Td[(zac)27(ho)-27(dzi\\252)-334(p)1(rze)-1(m)28(y\\261)-1(l)1(nie)-334(z)-333(b)-28(ok)1(u)-333(z)-334(wyc)-1(i)1(\\241)-28(gni)1(\\246)-1(t)28(ym)-334(d)1(z)-1(i)1(ob)-28(em.)]TJ 27.879 -13.549 Td[({)-329(S\\252ysz)-1(\\246)-330(ci\\246)-330(dob)1(rze)-1(!)-329(Ju)1(\\273)-330(c)-1(i)-329(si\\246)-330(nie)-329(dam.)-330(Jak)56(a)-329(to)-330(j)1(uc)28(ha)-330(zm)27(y)1(\\261)-1(ln)1(a!)-329({)-330(sz)-1(epta\\252,)]TJ -27.879 -13.549 Td[(ale)-429(\\273)-1(e)-429(w)-429(p)-27(o)-28(dw)28(\\363rzu)-429(r)1(oz)-1(l)1(e)-1(g\\252o)-429(si\\246)-429(grani)1(e)-1(,)-429(t)1(o)-429(ogania)-55(j\\241c)-429(s)-1(i)1(\\246)-430(k)1(ie)-1(j)-428(ni)1(e)-1(ki)1(e)-1(j)-428(r\\363\\273a\\253ce)-1(m)]TJ 0 -13.55 Td[(zas)-1(\\252uc)28(ha\\252)-333(s)-1(i\\246)-333(w)-1(,)-333(m)28(uzyce)-334(z)-334(lu)1(b)-28(o\\261c)-1(i)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(i)1(a,)-334(a)-333(kto)-333(tak)-333(sz)-1(cz)-1(erze)-334(rz\\246)-1(p)-27(oli?)]TJ 0 -13.549 Td[({)-485(A)-485(Wi)1(te)-1(k!)-484(Wyu)1(c)-1(zy\\252)-485(s)-1(i)1(\\246)-486(o)-28(d)-484(Pi)1(e)-1(trk)56(a)-485(i)-484(te)-1(r)1(az)-486(ci\\246)-1(gi)1(e)-1(m)-485(i)-485(d)1(udl)1(i,)-485(j)1(a\\273)-1(e)-485(usz)-1(y)]TJ -27.879 -13.549 Td[(pu)1(c)27(h)1(n\\241!)-333(Witek,)-333(p)1(rz)-1(esta\\253,)-333(a)-333(z)-1(a\\252\\363\\273)-334(k)28(on)1(icz)-1(yn)28(y)-333(\\271rebak)28(om!)-333({)-334(wr)1(z)-1(asn\\246\\252a.)]TJ 27.879 -13.549 Td[(Sk)1(rzypki)-409(umilk\\252y)84(,)-410(za\\261)-411(d)1(z)-1(i)1(ad)-410(cos)-1(i)1(k)-410(s)-1(e)-410(um)28(y\\261li\\252,)-410(b)-27(o)-410(sk)28(oro)-410(Wit)1(e)-1(k)-410(p)1(rzylec)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(p)-27(o)-28(d)-333(c)27(h)1(a\\252up)-27(\\246)-1(,)-333(rzek\\252)-334(d)1(o)-334(n)1(iego)-334(wielce)-334(dob)1(rotli)1(w)-1(i)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-333(W)83(e\\271)-334(t\\246)-334(d)1(z)-1(i)1(e)-1(si\\241tk)28(\\246)-1(,)-333(k)1(ie)-1(j)-333(t)1(ak)-334(gal)1(ancie)-334(wyci\\241)-28(gasz)-334(n)28(ut)1(\\246)-1(.)]TJ 0 -13.549 Td[(Ch\\252op)1(ak)-334(u)1(rad)1(o)27(w)28(a\\252)-334(si\\246)-334(ogr)1(om)-1(n)1(ie.)]TJ 0 -13.549 Td[({)-333(A)-334(zagra\\252b)28(y)1(\\261)-334(to)-334(i)-333(p)-27(ob)-27(o\\273)-1(n)1(e)-334(pi)1(e)-1(\\261nie,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(in)1(o)-334(p)-27(os\\252ys)-1(z\\246)-1(,)-333(to)-333(wygram.)]TJ 0 -13.55 Td[({)-271(Hal)1(e)-1(,)-270(k)56(a\\273)-1(d)1(a)-271(liszk)55(a)-270(s)-1(w)28(\\363)-56(j)-270(ogon)-270(c)27(h)29(w)27(ali)1(.)-271(A)-270(tak)56(\\241)-271(n)28(u)1(t\\246)-271(wygrasz)-1(,)-270(c)-1(o?)-270({)-271(i)-270(b)-28(ekn)1(\\241\\252)]TJ -27.879 -13.549 Td[(p)-27(o)-334(sw)27(o)-55(jem)27(u)-333(p)1(iskliwie)-334(a)-333(za)27(w)28(o)-28(d)1(z)-1(\\241cy)83(.)]TJ 27.879 -13.549 Td[(Ale)-333(W)1(ite)-1(k)-332(n)1(a)27(w)28(et)-333(n)1(ie)-333(d)1(os)-1(\\252uc)28(ha\\252,)-332(s)-1(k)1(rzypki)-332(p)1(rzyni\\363s\\252,)-332(z)-1(asiad\\252)-332(p)-27(ob)-28(ok)-332(i)-332(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(gra\\252)-352(ry)1(c)27(h)28(t)28(yk)-352(to)-352(samo,)-352(a)-352(p)-28(otem)-353(r)1(z)-1(n)1(\\241\\252)-352(insz)-1(e,)-352(jak)1(ie)-353(t)28(yl)1(k)28(o)-353(s\\252ysz)-1(a\\252)-352(w)-352(k)28(o\\261)-1(ciele)-1(,)-352(i)-351(tak)]TJ 0 -13.549 Td[(spra)28(wni)1(e)-1(,)-333(ja\\273e)-334(si\\246)-334(d)1(z)-1(iad)-333(zdu)1(mia\\252.)]TJ 27.879 -13.55 Td[({)-333(C)-1(i)1(e)-1(,)-333(n)1(a)-334(or)1(ganist\\246)-334(b)28(y\\252b)29(y\\261)-334(zdatn)28(y)1(!)]TJ 0 -13.549 Td[({)-227(Wsz)-1(y\\242k)28(o)-227(w)-1(y)1(gram,)-227(w)-1(sz)-1(y)1(\\242)-1(k)28(o,)-227(n)1(a)27(w)28(et)-228(i)-227(tak)1(ie)-228(d)1(w)27(or)1(s)-1(ki)1(e)-1(,)-227(i)-227(taki)1(e)-1(,)-227(co)-228(j)1(e)-228(\\261piew)28(a)-56(j\\241)]TJ -27.879 -13.549 Td[(p)-27(o)-487(k)55(ar)1(c)-1(zm)-1(ac)28(h)-487({)-487(pr)1(z)-1(ec)27(h)28(w)28(ala\\252)-487(s)-1(i)1(\\246)-488(rozrad)1(o)27(w)28(an)28(y)84(,)-487(wyc)-1(i)1(na)-55(j\\241c)-488(o)-27(d)-487(uc)28(ha,)-487(j)1(a\\273)-1(e)-487(kur)1(y)]TJ 0 -13.549 Td[(zagdak)56(a\\252y)-326(n)1(a)-326(gr)1(z)-1(\\246dac)28(h,)-325(gdy)-325(Han)1(k)55(a)-325(nad)1(e)-1(sz)-1(\\252a)-325(i)-325(z)-1(ar)1(az)-326(go)-326(p)1(rze)-1(p)-27(\\246)-1(d)1(z)-1(i)1(\\252)-1(a,)-325(b)29(yc)27(h)-325(J\\363zc)-1(e)]TJ 0 -13.549 Td[(p)-27(om)-1(aga\\252.)]TJ 27.879 -13.55 Td[(Do)-319(cna)-319(ju)1(\\273)-320(\\261c)-1(i)1(e)-1(mnia\\252o)-319(n)1(a)-319(\\261)-1(wiec)-1(ie,)-319(ostatnie)-319(z)-1(or)1(z)-1(e)-319(gas)-1(\\252y)84(,)-319(a)-319(wys)-1(ok)1(ie)-1(,)-319(ciem)-1(n)1(e)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)-27(o)-270(rosi\\252o)-270(si\\246)-270(gw)-1(i)1(az)-1(d)1(am)-1(i)1(,)-270(wie)-1(\\261)-270(j)1(u\\273)-270(k\\252ad\\252a)-270(si\\246)-270(s)-1(p)1(a\\242)-1(,)-269(jeno)-270(o)-27(d)-270(k)56(arcz)-1(m)28(y)-270(zalat)28(yw)28(a\\252y)]TJ 0 -13.549 Td[(dal)1(e)-1(ki)1(e)-334(p)-27(okrzyki)-333(i)-333(br)1(z)-1(\\246kliw)28(e)-334(g\\252osy)-334(m)28(uzyki.)]TJ 27.879 -13.549 Td[(Hank)56(a)-344(s)-1(iedzia\\252a)-345(p)1(rze)-1(d)-344(gank)1(ie)-1(m)-345(k)56(ar)1(m)-1(i\\241c)-345(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-344(i)-345(p)-27(ogadu)1(j\\241c)-345(z)-345(d)1(z)-1(iad)1(kiem)]TJ -27.879 -13.549 Td[(o)-306(t)28(ym)-306(i)-305(o)28(w)-1(y)1(m)-1(;)-305(c)-1(y)1(gani\\252)-306(j)1(uc)28(ha,)-305(ja\\273e)-306(s)-1(i\\246)-306(ku)1(rzy\\252o,)-306(al)1(e)-307(n)1(ie)-306(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\252)-1(a)-305(m)27(u)-305(si\\246)-1(,)-305(m)27(y)1(\\261)-1(l\\241c)]TJ 0 -13.549 Td[(sw)27(o)-55(je)-334(i)-333(t\\246s)-1(kn)1(ie)-334(w)-333(no)-28(c)-333(p)-28(ogl)1(\\241da)-56(j)1(\\241c)-1(.)]TJ 27.879 -13.55 Td[(Jagn)1(a)-481(nie)-481(wr\\363)-28(ci\\252a)-481(jes)-1(zcz)-1(e,)-481(ni)1(e)-482(siedzia\\252a)-481(r\\363)28(wnie\\273)-482(i)-480(u)-481(matki,)-480(b)-28(o)-481(zaraz)-481(z)]TJ -27.879 -13.549 Td[(wiec)-1(zora)-334(p)-27(osz)-1(\\252a)-333(na)-333(w)-1(i)1(e)-1(\\261)-334(d)1(o)-334(d)1(z)-1(ieuc)28(h,)-333(jeno)-333(c)-1(o)-333(ni)1(kiej)-333(nie)-334(wysiedzia\\252a,)-334(t)1(ak)-334(j)1(\\241)-334(cos)-1(i)1(k)]TJ 0 -13.549 Td[(p)-27(onosi\\252o.)-431(Jak)1(b)28(y)-431(j)1(\\241)-431(kto)-430(z)-1(a)-430(w)-1(\\252osy)-431(wyci\\241)-28(ga\\252,)-430(\\273)-1(e)-431(w)-431(k)28(o\\253)1(c)-1(u)-430(ju)1(\\273)-431(s)-1(ama)-431(j)1(e)-1(d)1(na)-431(\\252azi\\252a)]TJ 0 -13.549 Td[(p)-27(o)-358(ws)-1(i.)-357(D\\252ugo)-358(p)1(atrzy\\252a)-358(w)28(e)-358(w)27(o)-28(d)1(y)-358(p)-27(ogas)-1(\\252e)-358(i)-358(d)1(r\\273\\241c)-1(e)-358(o)-28(d)-357(p)-27(o)27(wiew)27(\\363)28(w,)-358(w)-358(r)1(oz)-1(r)1(uc)27(h)1(ane)]TJ 0 -13.549 Td[(\\271dzie)-1(b)1(k)28(o)-302(c)-1(ieni)1(e)-1(,)-302(w)28(e)-303(\\261wiat\\252a,)-302(c)-1(o)-302(l)1(e)-1(cia\\252y)-302(z)-303(ok)1(ie)-1(n)-301(na)-302(g\\252ad\\271)-302(s)-1(ta)28(wu)-302(i)-302(mar\\252y)-302(n)1(ie)-303(wiad)1(a)]TJ 0 -13.55 Td[(k)56(a)-56(j)-289(i)-290(p)1(rze)-1(z)-290(co!)-290(Rw)28(a\\252o)-290(j\\241)-289(gdzie)-1(sik,)-289(\\273)-1(e)-290(p)-27(olec)-1(i)1(a\\252)-1(a)-289(z)-1(a)-289(m)-1(\\252yn)1(,)-290(a\\273)-290(n)1(a)-290(\\252\\241ki,)-289(k)55(a)-55(j)-289(ju)1(\\273)-291(l)1(e)-1(\\273a\\252y)]TJ 0 -13.549 Td[(cie)-1(p)1(\\252e)-334(k)28(o\\273)-1(u)1(c)27(h)28(y)-333(b)1(ia\\252yc)27(h)-333(mgie\\252)-334(i)-333(cz)-1(a)-55(jk)1(i)-334(\\261miga\\252y)-333(nad)-333(n)1(i\\241)-334(z)-333(krzykiem.)]TJ\nET\nendstream\nendobj\n1958 0 obj <<\n/Type /Page\n/Contents 1959 0 R\n/Resources 1957 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1957 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1963 0 obj <<\n/Length 9253      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(614)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(S\\252u)1(c)27(h)1(a\\252)-1(a)-465(w)28(\\363)-28(d)-465(p)1(ada)-55(j\\241cyc)27(h)-465(z)-465(up)1(ustu)-465(w)-465(c)-1(zarn\\241)-465(gar)1(dzie)-1(!)-465(r)1(z)-1(eki,)-465(p)-27(o)-28(d)-465(ol)1(c)27(h)28(y)]TJ -27.879 -13.549 Td[(wyni)1(os)-1(\\252e)-373(i)-373(jak)1(b)28(y)-373(\\261pi\\241ce)-1(,)-373(al)1(e)-374(ten)-373(sz)-1(u)1(m)-373(z)-1(d)1(a\\252)-374(si\\246)-373(jej)-373(j)1(akim\\261)-374(\\273a\\252os)-1(n)28(y)1(m)-374(w)28(o\\252aniem)-373(i)]TJ 0 -13.549 Td[(sk)55(ar)1(g\\241)-334(n)1(abr)1(z)-1(mia\\252\\241)-334(p)1(\\252ac)-1(ze)-1(m.)]TJ 27.879 -13.549 Td[(Ucie)-1(k)1(\\252)-1(a)-402(i)-401(patrza\\252a)-402(w)-402(m)-1(\\252yn)1(arzo)27(w)28(e)-403(ok)1(na,)-402(b)1(uc)27(h)1(a)-56(j)1(\\241c)-1(e)-402(\\261)-1(wiat\\252em,)-402(gw)27(ar)1(am)-1(i)-402(a)]TJ -27.879 -13.549 Td[(br)1(z)-1(\\246kiem)-334(tal)1(e)-1(rzy)84(.)]TJ 27.879 -13.55 Td[(T\\252uk\\252a)-444(s)-1(i\\246)-445(o)-27(d)-445(b)1(rze)-1(ga)-444(ws)-1(i)-444(do)-444(brze)-1(ga)-444(jak)-444(ta)-445(w)28(o)-28(d)1(a)-445(ob\\252\\246dn)1(a,)-445(co)-445(u)1(j\\261c)-1(i)1(a)-445(na)]TJ -27.879 -13.549 Td[(dar)1(m)-1(o)-333(sz)-1(u)1(k)55(a)-333(i)-333(w)-334(n)1(ieprze)-1(b)29(yte)-334(wr\\246b)28(y)-333(bi)1(je)-334(\\273a\\252o\\261)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(\\233ar\\252o)-415(j\\241)-415(cos)-1(ik)1(,)-415(c)-1(ze)-1(go)-415(b)28(y)-415(i)-415(wyp)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-416(n)1(ie)-416(sp)-27(os)-1(\\363b)1(,)-415(ni)-415(to)-415(b)28(y\\252)-415(\\273al,)-415(ni)-415(to)]TJ -27.879 -13.549 Td[(t\\246s)-1(kn)1(ica,)-410(ni)-410(to)-410(k)28(o)-28(c)28(hani)1(e)-1(,)-410(a)-410(o)-28(cz)-1(y)-410(mia\\252a)-410(p)-27(e)-1(\\252n)1(e)-411(suc)27(h)1(e)-1(go)-410(\\273aru)-410(i)-410(w)-410(s)-1(ercu)-410(wz)-1(b)1(iera\\252)]TJ 0 -13.549 Td[(wrz\\241c)-1(y)84(,)-333(s)-1(tr)1(as)-1(zn)28(y)-333(s)-1(zlo)-28(c)28(h.)]TJ 27.879 -13.549 Td[(Nie)-332(w)-1(i)1(ada,)-332(lacze)-1(go)-332(z)-1(n)1(alaz\\252a)-333(si\\246)-332(przed)-332(pleban)1(i\\241,)-332(j)1(akie\\261)-333(k)28(on)1(ie)-333(p)-27(o)-28(d)-332(gan)1(kiem)]TJ -27.879 -13.55 Td[(bi)1(\\252y)-334(n)1(iec)-1(ierp)1(liwie)-334(k)28(op)29(ytami,)-333(\\261)-1(wiec)-1(i)1(\\252)-1(o)-333(si\\246)-334(t)28(ylk)28(o)-333(w)-334(j)1(e)-1(d)1(n)28(ym)-333(p)-28(ok)28(o)-55(ju)1(,)-333(grali)-333(w)-334(k)56(art)28(y)84(.)]TJ 27.879 -13.549 Td[(Napat)1(rz)-1(y)1(\\252a)-322(si\\246)-322(d)1(o)-322(syta)-321(i)-321(p)-27(os)-1(z\\252a)-322(op)1(\\252otk)55(ami,)-321(k)1(t\\363re)-322(d)1(z)-1(ieli\\252y)-321(K\\252\\246b)-27(o)27(w)28(\\241)-321(gos)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(dar)1(k)28(\\246)-356(o)-28(d)-354(pr)1(ob)-28(osz)-1(cz)-1(o)28(wskic)27(h)-354(ogro)-28(d)1(\\363)27(w.)-355(P)1(rze)-1(su)28(w)28(a\\252)-1(a)-355(si\\246)-355(l\\246)-1(k)1(liwie)-356(p)-27(o)-28(d)-354(\\273)-1(yw)28(op\\252otem,)]TJ 0 -13.549 Td[(ob)28(wis\\252e)-397(ga\\252\\246z)-1(i)1(e)-397(wisien)-395(m)27(usk)56(a\\252y)-396(j)1(\\241)-396(p)-28(o)-395(t)28(w)27(arzy)-395(z)-1(rosia\\252ymi)-396(l)1(is)-1(tecz)-1(k)56(ami.)-396(S)1(z)-1(\\252a)-396(b)-27(ez)-1(-)]TJ 0 -13.549 Td[(w)28(olnie,)-333(ni)1(e)-334(wie)-1(d)1(z)-1(\\241c,)-333(k)55(a)-55(j)-333(j\\241)-333(n)1(ie)-1(sie,)-333(a\\273)-334(niski)-333(d)1(om)-334(organ)1(is)-1(t\\363)28(w)-333(z)-1(ast\\241)-28(p)1(i\\252)-334(j)1(e)-1(j)-333(d)1(rog\\246.)]TJ 27.879 -13.55 Td[(Wsz)-1(y)1(s)-1(tki)1(e)-334(c)-1(ztery)-333(okna)-333(\\261w)-1(i)1(e)-1(ci\\252y)-333(i)-333(s)-1(ta\\252y)-333(ot)28(w)28(arte.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(tuli)1(\\252)-1(a)-333(si\\246)-334(w)-333(c)-1(ie\\253)-333(p)-27(o)-28(d)-333(p\\252ot)-333(i)-333(z)-1(a)-55(jr)1(z)-1(a\\252a)-333(do)-333(\\261)-1(r)1(o)-28(dk)56(a.)]TJ 0 -13.549 Td[(Or)1(ganisto)28(w)-1(i)1(e)-394(wr)1(az)-394(z)-393(dzie\\242)-1(mi)-393(siedzieli)-393(p)-27(o)-28(d)-392(w)-1(i)1(s)-1(z\\241c)-1(\\241)-392(lam)-1(p)1(\\241)-393(p)-27(opij)1(a)-56(j)1(\\241c)-394(h)1(e)-1(r)1(-)]TJ -27.879 -13.549 Td[(bat)1(\\246)-1(,)-333(za\\261)-334(Jas)-1(i)1(o)-334(c)28(ho)-28(d)1(z)-1(i\\252)-333(p)-27(o)-334(p)-27(ok)28(o)-56(j)1(u)-333(i)-333(c)-1(osik)-333(rozp)-27(o)27(wiad)1(a\\252.)]TJ 27.879 -13.549 Td[(S\\252y)1(s)-1(za\\252a)-370(k)55(a\\273de)-370(jego)-370(s\\252)-1(o)28(w)28(o,)-370(k)56(a\\273)-1(d)1(y)-370(skrzyp)-370(p)-27(o)-28(d)1(\\252ogi,)-370(n)1(ie)-1(u)1(s)-1(tan)1(ne)-370(c)-1(y)1(k)55(an)1(ie)-370(z)-1(e-)]TJ -27.879 -13.55 Td[(garu)-333(i)-333(n)1(a)28(w)27(et)-334(ci\\246\\273)-1(ki)1(e)-334(pr)1(z)-1(ysapk)1(i)-333(organi)1(s)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(A)-333(Jas)-1(i)1(o)-334(tak)1(ie)-334(cude\\253k)56(a)-333(pr)1(a)27(wi\\252,)-333(\\273e)-334(ni)1(c)-1(ze)-1(go)-333(ni)1(e)-334(rozumia\\252a.)]TJ 0 -13.549 Td[(P)28(atr)1(z)-1(y\\252a)-254(j)1(e)-1(n)1(o)-254(w)-254(ni)1(e)-1(go)-254(n)1(ib)28(y)-253(w)-255(t)1(e)-1(n)-253(obraz)-254(\\261wi\\246)-1(t)28(y)84(,)-254(p)1(ij\\241c)-254(kiej)-254(mio)-27(dy)-254(n)1(a)-56(j)1(s)-1(\\252o)-28(d)1(s)-1(ze)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(y)-403(d\\271w)-1(i)1(\\246)-1(k)-403(jego)-403(g\\252)-1(osu.)-403(Cho)-27(dzi\\252)-404(w)28(c)-1(i)1(\\241\\273)-404(i)-403(c)-1(o)-403(tro)-27(c)27(h\\246)-404(gi)1(n\\241\\252)-403(w)-404(g\\252\\246)-1(b)1(i)-403(m)-1(i)1(e)-1(sz)-1(k)56(ani)1(a,)]TJ 0 -13.549 Td[(i)-405(co)-406(tr)1(o)-28(c)27(h)1(\\246)-406(ja)28(wi\\252)-405(s)-1(i)1(\\246)-406(z)-1(n)1(\\363)28(w)-406(w)-405(kr\\246gu)-405(\\261)-1(wiat)1(\\252)-1(a;)-405(cz)-1(asem)-406(pr)1(z)-1(y)1(s)-1(ta)28(w)27(a\\252)-405(p)1(rz)-1(y)-405(ok)1(nie,)-405(\\273)-1(e)]TJ 0 -13.55 Td[(w)28(c)-1(isk)56(a\\252a)-316(si\\246)-316(w)-315(p\\252ot)-315(strw)28(o\\273)-1(on)1(a,)-315(b)28(yc)28(h)-315(jej)-315(ni)1(e)-316(do)-55(jr)1(z)-1(a\\252,)-315(ale)-315(on)-315(jeno)-315(w)-315(nieb)-27(o)-316(p)1(atrzy\\252)]TJ 0 -13.549 Td[(p)-27(okryt)1(e)-329(gwiaz)-1(d)1(ami,)-328(to)-328(c)-1(osik)-328(r)1(z)-1(ek\\252)-328(la)-328(uciec)27(h)28(y)84(,)-328(\\273)-1(e)-328(\\261)-1(miali)-328(si\\246,)-328(a)-328(rado\\261\\242)-329(b)1(\\252ysk)55(a\\252a)-328(w)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(ac)28(h)-287(k)1(ie)-1(j)-286(to)-287(s\\252o\\253ce)-1(.)-286(Pr)1(z)-1(ysiad)1(\\252)-287(wre)-1(szc)-1(ie)-287(p)-27(ob)-27(ok)-287(matki,)-286(a)-287(ma\\252e)-288(siostry)-286(j\\246\\252)-1(y)-286(m)27(u)]TJ 0 -13.549 Td[(si\\246)-389(d)1(rapa\\242)-388(na)-388(k)28(olana)-388(i)-388(wies)-1(za\\242)-389(n)1(a)-389(szyi,)-388(tu)1(li\\252)-388(c)-1(i)-388(j)1(e)-389(p)-27(o)-28(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(,)-388(h)28(u)1(\\261)-1(t)1(a\\252)-389(i)-388(\\252ask)28(ota\\252,)]TJ 0 -13.549 Td[(ja\\273e)-334(izba)-333(zatrz\\246)-1(s\\252a)-334(si\\246)-334(d)1(z)-1(ieci\\253skimi)-333(\\261)-1(miec)27(h)1(am)-1(i.)]TJ 27.879 -13.55 Td[(Ze)-1(gar)-333(wyb)1(i\\252)-333(jak)56(\\241\\261)-334(go)-28(d)1(z)-1(in)1(\\246)-334(i)-333(organ)1(i\\261c)-1(in)1(a)-334(r)1(z)-1(ek\\252a)-333(p)-28(o)28(ws)-1(ta)-55(j\\241c:)]TJ 0 -13.549 Td[({)-333(Gadu)1(,)-333(gadu)1(,)-334(a)-333(tob)1(ie)-334(cz)-1(as)-334(spa\\242!)-333(Mu)1(s)-1(isz)-334(d)1(o)-334(d)1(nia)-333(wyjec)27(h)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-246(A)-247(m)28(usz)-1(\\246,)-246(m)-1(am)28(usiu!)-246(Bo\\273)-1(e,)-246(jaki)-246(ten)-246(dzie)-1(\\253)-246(b)29(y\\252)-247(kr)1(\\363tki!)-246({)-246(w)27(es)-1(tc)28(hn)1(\\241\\252)-247(\\273a\\252)-1(o\\261ni)1(e)-1(.)]TJ 0 -13.549 Td[(A)-347(Jagusine)-347(s)-1(erce)-348(jakb)29(y)-348(k)1(to)-348(\\261cis)-1(n)1(\\241\\252)-348(i)-347(tak)-347(b)-27(ole)-1(\\261ni)1(e)-1(,)-347(j)1(a\\273)-1(e)-348(sam)-1(e)-347(\\252z)-1(y)-347(p)-27(o)-28(c)-1(i)1(e)-1(k\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)-334(t)28(w)28(arzy)83(.)]TJ 27.879 -13.549 Td[({)-257(Ale)-257(n)1(ie)-1(d)1(\\252ugo)-257(w)28(ak)56(ac)-1(j)1(e)-1(!)-256({)-257(ozw)27(a\\252)-257(si\\246)-257(z)-1(n)1(o)28(w)-1(u)-256({)-257(ksi\\241d)1(z)-258(r)1(e)-1(gens)-257(ob)1(ie)-1(ca\\252,)-257(\\273e)-257(m)-1(n)1(ie)]TJ -27.879 -13.55 Td[(na)-333(j)1(aki\\261)-334(cz)-1(as)-333(z)-1(w)28(olni,)-333(j)1(e)-1(\\261li)-333(nasz)-334(p)1(rob)-27(os)-1(zc)-1(z)-333(napi)1(s)-1(ze)-334(o)-333(to)-334(d)1(o)-334(n)1(iego.)]TJ 27.879 -13.549 Td[({)-343(Nie)-344(b)-27(\\363)-56(j)-342(s)-1(i\\246,)-343(nap)1(isz)-1(e,)-343(ju)1(\\273)-344(ja)-343(go)-343(up)1(rosz)-1(\\246!)-343({)-343(p)-28(o)28(wiedzia\\252a)-343(m)-1(atk)56(a)-343(z)-1(ab)1(iera)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-388(do)-387(s\\252ania)-387(m)27(u)-387(n)1(a)-387(k)55(an)1(apie)-387(w)-1(p)1(rost)-387(okna.)-387(P)28(omagali)-387(j)1(e)-1(j)-387(wsz)-1(ysc)-1(y)84(,)-387(a)-387(na)28(w)27(et)-387(s)-1(am)]TJ 0 -13.549 Td[(organ)1(ista)-334(p)1(rzyni\\363s\\252)-333(s)-1(p)-27(or\\241)-333(doin)1(k)28(\\246)-334(i)-333(ws)-1(u)1(n\\241\\252)-333(j\\241)-333(z)-1(e)-333(\\261)-1(miec)27(hem)-334(p)-27(o)-28(d)-333(k)56(anap)-27(\\246.)]TJ 27.879 -13.549 Td[(D\\252ugo)-366(si\\246)-366(z)-367(ni)1(m)-367(\\273e)-1(gn)1(ali)-366(na)-366(o)-27(dc)27(h)1(o)-28(dn)29(ym)-1(,)-365(a)-367(j)1(u\\273)-366(na)-55(jd)1(\\252)-1(u)1(\\273)-1(ej)-366(matk)56(a,)-366(kt\\363r)1(a)-367(go)]TJ -27.879 -13.55 Td[(z)-334(p)1(\\252ac)-1(ze)-1(m)-333(tuli)1(\\252)-1(a)-333(do)-333(p)1(ie)-1(r)1(s)-1(i)-333(a)-333(c)-1(a\\252o)28(w)28(a\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-333(\\221p)1(ij,)-333(syn)28(u)1(,)-334(smac)-1(znie,)-333(\\261)-1(p)1(ij,)-333(d)1(z)-1(i)1(e)-1(ci\\241tk)28(o.)]TJ\nET\nendstream\nendobj\n1962 0 obj <<\n/Type /Page\n/Contents 1963 0 R\n/Resources 1961 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1961 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1966 0 obj <<\n/Length 9277      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(615)]TJ -330.353 -35.866 Td[({)-333(P)28(ac)-1(i)1(e)-1(r)1(z)-1(e)-334(zm\\363)27(wi\\246)-334(i)-333(zaraz)-334(si\\246)-334(k)1(\\252ad\\246,)-334(mam)28(usiu.)]TJ 0 -13.549 Td[(Roz)-1(esz)-1(li)-333(si\\246)-334(wres)-1(zc)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Jagu)1(\\261)-385(widzia\\252a,)-384(j)1(ak)-384(w)-384(s)-1(\\241sie)-1(d)1(ni)1(e)-1(j)-384(i)1(z)-1(b)1(ie)-385(c)28(ho)-28(d)1(z)-1(i)1(li)-384(na)-384(p)1(alc)-1(ac)28(h,)-384(\\261cis)-1(zali)-384(g\\252osy)83(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(m)27(yk)56(ali)-278(okn)1(a)-278(i)-278(p)-28(ok)1(r\\363tce)-279(ca\\252)-1(y)-277(dom)-279(on)1(iem)-1(i)1(a\\252)-279(i)-278(migiem)-279(p)-27(ogr\\241\\273y\\252)-278(si\\246)-279(w)-278(c)-1(i)1(c)27(ho\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(ab)28(y)-333(j)1(e)-1(n)1(o)-334(n)1(ie)-334(pr)1(z)-1(es)-1(zk)56(adza\\242)-334(Jasio)28(w)-1(i)1(.)]TJ 27.879 -13.55 Td[(Chcia\\252a)-481(i)-482(on)1(a)-481(do)-481(dom)27(u)1(,)-481(ju)1(\\273)-482(s)-1(i)1(\\246)-482(b)28(y\\252a)-481(na)28(w)28(e)-1(t)-481(ni)1(e)-1(co)-482(u)1(nies\\252)-1(a,)-481(al)1(e)-482(j\\241)-481(c)-1(osik)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-380(p)1(rz)-1(y)1(trzym)-1(a\\252o)-380(za)-380(nogi)1(,)-380(\\273)-1(e)-380(nie)-380(p)-27(oredzi\\252a)-380(o)-28(derw)28(a\\242)-381(si\\246)-380(z)-381(miejsc)-1(a,)-380(wi\\246c)-381(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(mo)-28(c)-1(n)1(iej)-323(p)1(rzyw)28(ar\\252a)-323(p)1(le)-1(cami)-323(d)1(o)-323(p\\252ota,)-322(bar)1(z)-1(ej)-322(s)-1(i\\246)-323(skul)1(i\\252a)-323(i)-322(os)-1(ta\\252a)-322(kieb)28(y)-323(u)1(rze)-1(cz)-1(on)1(a)]TJ 0 -13.549 Td[(wpatr)1(uj)1(\\241c)-334(s)-1(i\\246)-333(w)-334(to)-333(os)-1(t)1(atnie)-333(w)-1(y)1(w)27(art)1(e)-334(i)-333(ja\\261niej\\241ce)-334(okn)1(o.)]TJ 27.879 -13.549 Td[(Jasio)-249(p)-28(o)-27(c)-1(zyta\\252)-249(ni)1(e)-1(co)-249(na)-249(gru)1(b)-28(ej)-249(k)1(s)-1(i\\241\\273c)-1(e,)-249(za\\261)-250(p)-27(ote)-1(m)-249(p)1(rz)-1(y)1(kl\\246kn\\241\\252)-249(p)-27(o)-28(d)-249(ok)1(nem)-1(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(e\\273)-1(egna\\252)-402(si\\246)-1(,)-402(z\\252o\\273)-1(y)1(\\252)-403(r)1(\\246)-1(ce)-403(do)-402(p)1(ac)-1(ierza,)-402(p)-28(o)-27(dn)1(i\\363s)-1(\\252)-402(o)-28(cz)-1(y)-402(ku)-401(niebu)-401(i)-402(z)-1(amo)-28(dl)1(i\\252)-403(si\\246)]TJ 0 -13.55 Td[(pr)1(z)-1(ejm)28(uj)1(\\241c)-1(ym)-333(s)-1(ze)-1(p)1(te)-1(m.)]TJ 27.879 -13.549 Td[(No)-28(c)-294(b)29(y\\252a)-294(g\\252\\246b)-28(ok)56(a,)-293(ni)1(e)-1(zg\\252\\246)-1(b)1(iona)-293(c)-1(i)1(c)27(ho\\261\\242)-294(obt)1(ula\\252a)-293(\\261)-1(wiat,)-293(gwiazdy)-293(m\\273)-1(y\\252y)-293(si\\246)]TJ -27.879 -13.549 Td[(na)-317(wys)-1(ok)28(o\\261c)-1(i)1(ac)27(h,)-317(nagr)1(z)-1(an)28(y)84(,)-317(pac)27(h)1(n\\241cy)-318(zwie)-1(w)-318(p)-27(o)-28(ci\\241)-28(ga\\252)-317(z)-319(p)-27(\\363l,)-317(a)-318(n)1(ie)-1(k)1(ie)-1(d)1(y)-318(zas)-1(ze)-1(m-)]TJ 0 -13.549 Td[(ra\\252y)-333(li)1(\\261)-1(cie)-334(i)-333(ptak)-333(j)1(aki\\261)-334(za\\261piew)27(a\\252.)]TJ 27.879 -13.549 Td[(A)-361(Jagu)1(s)-1(i)1(\\246)-362(zac)-1(z\\246\\252)-1(o)-360(c)-1(osik)-361(r)1(oz)-1(b)1(iera\\242)-1(,)-360(s)-1(erce)-361(s)-1(i\\246)-361(t\\252u)1(k\\252o)-361(kiej)-360(os)-1(zala\\252e)-1(,)-360(pali)1(\\252y)-361(j\\241)]TJ -27.879 -13.55 Td[(o)-28(cz)-1(y)84(,)-457(pal)1(i\\252y)-457(usta)-457(nabr)1(ane)-457(i)-457(s)-1(ame)-458(r)1(\\246)-1(ce)-458(wyci\\241)-28(ga\\252y)-457(s)-1(i)1(\\246)-458(ku)-457(n)1(iem)27(u)1(,)-457(a)-458(c)28(ho)-28(cia\\273)-457(s)-1(i\\246)]TJ 0 -13.549 Td[(ku)1(rcz)-1(y\\252a)-303(w)-302(s)-1(ob)1(ie)-1(,)-302(roztrz\\241s)-1(a\\252)-303(n)1(i\\241)-303(t)1(aki)-303(d)1(z)-1(i)1(w)-1(n)28(y)84(,)-302(niez)-1(mo\\273on)28(y)-303(d)1(ygot,)-302(\\273)-1(e)-303(wpiera\\252a)-302(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-432(p\\252ot)-432(b)-27(e)-1(zw)27(ol)1(nie)-432(i)-432(z)-433(tak)56(\\241)-432(mo)-28(c)-1(\\241,)-431(ja\\273e)-433(trzasn\\246\\252)-1(a)-432(\\273e)-1(r)1(dk)56(a.)-432(Jasio)-432(wyc)27(h)28(y)1(li\\252)-432(g\\252o)28(w)27(\\246,)]TJ 0 -13.549 Td[(p)-27(opatr)1(z)-1(y\\252)-333(dok)28(o\\252a)-333(i)-333(z)-1(n)1(o)27(wu)-333(si\\246)-334(zamo)-28(dli)1(\\252.)]TJ 27.879 -13.549 Td[(Za\\261)-409(z)-410(n)1(i\\241)-409(dzia\\252o)-409(si\\246)-409(ju\\273)-409(co\\261)-410(n)1(iep)-28(o)-55(j\\246te)-1(go;)-408(takie)-409(ognie)-409(c)27(h)1(o)-28(dzi\\252y)-409(j)1(e)-1(j)-408(p)-27(o)-409(k)28(o-)]TJ -27.879 -13.55 Td[(\\261c)-1(iac)28(h)-450(i)-450(obl)1(e)-1(w)28(a\\252y)-450(w)27(ar)1(e)-1(m,)-450(\\273)-1(e)-450(dziw)-450(nie)-450(krzycz)-1(a\\252a)-450(z)-451(tej)-450(lu)1(b)-27(e)-1(j)-450(m\\246ki.)-450(Zabaczy\\252a,)]TJ 0 -13.549 Td[(k)56(a)-56(j)-349(jes)-1(t,)-350(i)-350(l)1(e)-1(d)1(w)-1(i)1(e)-351(ju)1(\\273)-351(zip)1(a\\252)-1(a,)-349(tak)-350(s)-1(i\\246)-350(w)-350(niej)-350(ws)-1(zystk)28(o)-350(trz\\246)-1(s\\252o)-350(i)-350(p\\252on\\246\\252o.)-350(By\\252a)-350(c)-1(a-)]TJ 0 -13.549 Td[(\\252a)-418(w)-418(dr)1(e)-1(sz)-1(cz)-1(ac)28(h,)-417(kiej)-418(b)1(\\252ys)-1(k)56(a)28(wic)-1(e)-418(k\\252\\246bi\\252y)-417(s)-1(i\\246)-418(w)-418(n)1(ie)-1(j)-417(jak)1(ie)-1(\\261)-418(n)1(abrzm)-1(i)1(a\\252e)-1(,)-417(s)-1(zalone)]TJ 0 -13.549 Td[(kr)1(z)-1(yk)1(i,)-329(j)1(akie\\261)-330(wic)28(hry)-328(pal)1(\\241c)-1(e)-329(j\\241)-329(p)-27(on)1(os)-1(i\\252y)84(,)-329(j)1(akie\\261)-330(straszne)-329(pragn)1(ienia)-328(roz)-1(p)1(r\\246\\273)-1(a\\252y)-328(i)]TJ 0 -13.549 Td[(wygin)1(a\\252y)83(...)-307(Ju\\273)-308(c)27(h)1(c)-1(ia\\252a)-308(si\\246)-308(c)-1(zo\\252ga\\242)-309(tam,)-308(b)1(li\\273e)-1(j)-307(niego,)-308(b)28(yc)28(h)-308(c)28(ho)-28(cia\\273)-308(tkn\\241\\242)-308(ustami)]TJ 0 -13.55 Td[(t)28(yc)27(h)-338(j)1(e)-1(go)-338(bi)1(a\\252yc)27(h)-338(r\\241czk)28(\\363)27(w,)-338(b)28(yc)28(h)-338(jeno)-338(kl\\246c)-1(ze)-1(\\242)-339(p)1(rze)-1(d)-338(n)1(im)-339(a)-338(patr)1(z)-1(e\\242)-339(z)-339(bl)1(is)-1(k)56(a)-338(w)-339(te)]TJ 0 -13.549 Td[(g\\246busie)-371(i)-370(mo)-28(dli)1(\\242)-371(s)-1(i\\246)-370(kiej)-371(d)1(o)-371(tego)-371(cud)1(o)28(w)-1(n)1(e)-1(go)-370(obr)1(az)-1(u)1(.)-371(Ni)1(e)-371(p)-28(or)1(usz)-1(y\\252a)-370(s)-1(i\\246)-370(jednak)1(,)]TJ 0 -13.549 Td[(b)-27(o)-334(ob)1(lec)-1(ia\\252)-333(j\\241)-333(jak)1(i\\261)-334(dziwn)28(y)-333(strac)27(h)-332(i)-334(zaraze)-1(m)-333(z)-1(gr)1(oz)-1(a.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu)-333(m\\363)-56(j)1(,)-334(J)1(e)-1(zu)-333(m)-1(i)1(\\252)-1(osiern)28(y)1(!)-334({)-333(wyrw)28(a\\252)-333(s)-1(i\\246)-333(jej)-333(z)-334(piersi)-333(c)-1(i)1(c)27(h)28(y)-333(j\\246k.)]TJ 0 -13.549 Td[(Jasio)-333(p)-28(o)28(ws)-1(ta\\252,)-333(wyc)27(h)29(yli\\252)-333(s)-1(i)1(\\246)-334(c)-1(a\\252y)-333(i)-333(j)1(akb)28(y)-333(patr)1(z)-1(\\241c)-334(n)1(a)-333(ni\\241)-333(z)-1(a)28(w)28(o\\252a\\252:)]TJ 0 -13.55 Td[({)-333(Kto)-333(tam)-1(?)]TJ 0 -13.549 Td[(Zamar\\252a)-389(na)-388(c)27(h)28(wil\\246,)-389(p)1(rzytai\\252a)-389(d)1(e)-1(c)28(h,)-389(serc)-1(e)-389(p)1(rze)-1(sta\\252o)-389(bi)1(\\242)-390(i)-388(jakb)29(y)-389(zdr\\246t)28(wia-)]TJ -27.879 -13.549 Td[(\\252a)-404(w)-403(jak)1(im)-1(\\261)-403(\\261)-1(wi\\246t)28(ym)-404(strac)27(h)29(u,)-403(du)1(s)-1(za)-404(u)29(w)-1(i)1(\\246)-1(z\\252a)-404(k)56(a)-56(j)1(\\261)-404(w)-404(gar)1(dle)-403(i)-404(p)-27(e\\252)-1(n)1(a)-403(s)-1(zc)-1(z\\246)-1(snego)]TJ 0 -13.549 Td[(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(u)-333(c)27(h)28(wia\\252a)-333(s)-1(i)1(\\246)-334(w)-334(o)-27(c)-1(ze)-1(ki)1(w)27(an)1(iu.)]TJ 27.879 -13.549 Td[(Ale)-376(Jasio)-375(jeno)-375(p)-28(op)1(atrzy\\252)-375(w)-376(op\\252otk)1(i,)-375(a)-376(n)1(ie)-376(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-375(z)-1(amkn)1(\\241\\252)-376(okn)1(o,)-376(r)1(o-)]TJ -27.879 -13.549 Td[(ze)-1(b)1(ra\\252)-334(si\\246)-334(p)1(r\\246dk)28(o)-333(i)-333(\\261)-1(wiat\\252o)-333(z)-1(gas\\252o...)]TJ 27.879 -13.55 Td[(No)-28(c)-348(p)1(ad\\252a)-347(na)-347(jej)-347(du)1(s)-1(z\\246)-1(,)-347(al)1(e)-348(jes)-1(zc)-1(ze)-348(d)1(\\252)-1(u)1(go)-348(siedzia\\252a)-348(wp)1(atrzona)-347(w)-348(cz)-1(ar)1(ne)-348(i)]TJ -27.879 -13.549 Td[(ni)1(e)-1(me)-256(okn)1(o.)-255(Pr)1(z)-1(ej\\241\\252)-255(j\\241)-255(c)27(h)1(\\252\\363)-28(d)-255(i)-255(jak)1(b)28(y)-255(op)-27(e)-1(rl)1(i\\252)-256(srebr)1(n\\241)-255(ros\\241)-255(jej)-255(du)1(s)-1(z\\246)-256(wnieb)-27(o)27(wzi\\246t\\241,)]TJ 0 -13.549 Td[(gdy)1(\\273)-287(w)-1(szys)-1(tk)28(o,)-286(co)-287(w)-286(niej)-286(w)-1(r)1(z)-1(a\\252o)-286(z)-287(krwie)-287(p)-27(o\\273\\241dliw)28(ej,)-286(pr)1(z)-1(ygas\\252o)-287(r)1(oz)-1(lew)27(a)-55(j\\241c)-287(si\\246)-287(p)-27(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-333(n)1(ieop)-28(o)28(wiedzian\\241)-333(b\\252ogo\\261c)-1(i)1(\\241.)-333(Sp)1(\\252)-1(y)1(n\\246\\252a)-334(n)1(a)-334(n)1(i\\241)-333(ur)1(o)-28(c)-1(zysta,)-333(\\261)-1(wi\\246ta)-333(c)-1(i)1(c)27(ho\\261\\242,)-333(jak-)]TJ 0 -13.549 Td[(b)28(y)-328(t)1(o)-328(z)-1(ad)1(umanie)-328(kwiat\\363)28(w)-328(pr)1(z)-1(ed)-328(wsc)27(ho)-27(dem)-329(s\\252o\\253ca,)-328(\\273)-1(e)-328(rozmo)-28(dli)1(\\252a)-328(s)-1(i\\246)-328(pacierze)-1(m)]TJ 0 -13.55 Td[(sz)-1(cz)-1(\\246\\261)-1(cia,)-443(kt\\363ren)-443(ni)1(e)-444(m)-1(ia\\252)-443(s)-1(\\252\\363)28(w,)-443(a)-444(jeno)-443(dziwn\\241)-443(s)-1(\\252o)-27(dk)28(o\\261)-1(\\242)-443(z)-1(ac)27(h)29(w)-1(y)1(t\\363)28(w)-1(,)-443(pr)1(z)-1(ena)-55(j-)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(tsz)-1(e)-410(z)-1(d)1(umienie)-410(du)1(s)-1(zy)83(,)-410(n)1(iep)-28(o)-55(j\\246t\\241)-410(rad)1(o\\261)-1(\\242)-410(bud)1(z)-1(\\241cego)-411(si\\246)-410(dn)1(ia)-410(z)-1(wies)-1(n)1(o)28(w)27(ego)-410(i)]TJ\nET\nendstream\nendobj\n1965 0 obj <<\n/Type /Page\n/Contents 1966 0 R\n/Resources 1964 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1964 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1969 0 obj <<\n/Length 455       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(616)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(38.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(pr)1(z)-1(epl)1(ata\\252)-307(si\\246)-307(gr)1(ub)28(y)1(m)-1(i)-306(ziarn)1(am)-1(i)-306(b)1(\\252ogic)27(h)-305(\\252)-1(ez)-307(n)1(ib)28(y)-306(t)28(ym)-306(r\\363\\273a\\253ce)-1(m)-306(\\252)-1(aski)-306(P)28(a\\253)1(s)-1(k)1(ie)-1(j)-305(i)]TJ 0 -13.549 Td[(dzi\\246k)28(c)-1(zyn)1(ie)-1(n)1(ia.)]TJ\nET\nendstream\nendobj\n1968 0 obj <<\n/Type /Page\n/Contents 1969 0 R\n/Resources 1967 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1967 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1972 0 obj <<\n/Length 6663      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(39)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-333(P)28(\\363)-56(j)1(d\\246)-334(j)1(u\\273,)-333(Han)28(u\\261!)-333({)-334(p)1(rosi\\252a)-333(J\\363z)-1(k)56(a)-333(p)-28(ok)1(\\252)-1(ad)1(a)-56(j)1(\\241c)-334(g\\252o)28(w)27(\\246)-334(n)1(a)-334(\\252a)28(wk)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-495(A)-495(z)-1(ad)1(rzyj)-495(ogona)-495(ki)1(e)-1(j)-495(cielak)-495(i)-495(le\\242)-1(!)-495({)-495(z)-1(gr)1(om)-1(i)1(\\252a)-496(j)1(\\241)-495(o)-28(dry)1(w)27(a)-55(j\\241c)-496(o)-27(c)-1(zy)-495(o)-28(d)]TJ -27.879 -13.549 Td[(r\\363\\273a\\253ca.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(m)-1(e)-333(tak)-333(c)-1(osik)-333(s)-1(p)1(iera)-333(w)-334(do\\252k)1(u)-333(i)-333(tak)-333(m)-1(e)-334(mgli.)1(..)]TJ 0 -13.55 Td[({)-333(Nie)-334(p)1(rz)-1(esz)-1(k)56(adza)-56(j)1(,)-333(z)-1(araz)-333(s)-1(i\\246)-333(s)-1(k)28(o\\253)1(c)-1(zy)83(.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-315(p)1(rob)-27(os)-1(zc)-1(z)-314(ju\\273)-314(k)28(o\\253cz)-1(y\\252)-314(cic)27(h)1(\\241,)-315(\\273a\\252obn)1(\\241)-315(msz)-1(\\246)-315(za)-314(dusz\\246)-315(B)-1(or)1(yn)28(y)84(,)-314(z)-1(am\\363-)]TJ -27.879 -13.549 Td[(wion\\241)-333(p)1(rz)-1(ez)-334(ro)-27(dzin\\246)-333(w)-334(okta)28(w)28(\\246)-334(jego)-333(\\261)-1(mierc)-1(i)1(.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-355(te\\273)-356(co)-355(na)-55(jbl)1(i\\273)-1(si)-355(siedzie)-1(l)1(i)-355(w)-355(b)-28(o)-27(c)-1(zn)28(yc)27(h)-354(\\252a)28(w)-1(k)56(ac)27(h)1(,)-355(a)-355(t)28(ylk)28(o)-354(Jagusia)-355(z)]TJ -27.879 -13.549 Td[(matk)56(\\241)-374(kl)1(\\246)-1(cz)-1(a\\252y)-373(p)1(rz)-1(ed)-373(sam)27(ym)-373(o\\252tarze)-1(m;)-373(z)-374(ob)-27(c)-1(yc)28(h)-373(ni)1(e)-374(b)28(y\\252o)-373(nik)28(ogo,)-373(t)28(yl)1(a)-374(co)-373(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(c)27(h)1(\\363rem)-334(Jagata)-333(g\\252o\\261)-1(n)1(o)-334(tr)1(z)-1(epa\\252a)-333(pacierz)-1(e.)]TJ 27.879 -13.55 Td[(Ko\\261c)-1(i)1(\\363\\252)-422(b)28(y\\252)-421(cic)27(h)28(y)84(,)-421(c)27(h\\252o)-27(dn)28(y)-421(i)-421(mro)-28(cz)-1(n)28(y)84(,)-421(jeno)-421(na)-421(\\261ro)-28(dk)1(u)-421(m)-1(r)1(o)28(w)-1(i)1(\\252)-1(a)-421(si\\246)-422(wiel-)]TJ -27.879 -13.549 Td[(gac)27(h)1(na)-282(s)-1(tr)1(uga)-282(jar)1(z)-1(\\241ce)-1(go)-282(\\261)-1(wiat\\252a,)-282(b)-27(o)-283(s\\252o\\253ce)-283(bi)1(\\252o)-283(p)1(rz)-1(ez)-283(wyw)28(arte)-283(d)1(rzw)-1(i)-282(r)1(oz)-1(lew)27(a)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-334(ja\\273e)-334(p)-27(o)-333(a)-1(m)28(b)-27(on\\246.)]TJ 27.879 -13.549 Td[(Mi)1(c)27(ha\\252)-250(or)1(ganist\\363)28(w)-250(s)-1(\\252u\\273y\\252)-250(d)1(o)-250(m)-1(sz)-1(y)-249(i)-250(j)1(ak)-250(z)-1(a)28(wdy)84(,)-250(tak)-249(trz\\241c)27(ha\\252)-250(d)1(z)-1(w)28(onk)56(ami,)-250(\\273e)]TJ -27.879 -13.549 Td[(w)-314(u)1(s)-1(zac)27(h)-313(b)1(rz)-1(\\246cz)-1(a\\252o,)-313(wykrzykiw)28(a\\252)-314(min)1(istran)28(tu)1(r\\246,)-314(a)-313(lata\\252)-313(\\261)-1(lepi)1(am)-1(i)-313(za)-314(j)1(as)-1(k)28(\\363\\252k)56(am)-1(i)1(,)]TJ 0 -13.55 Td[(kt\\363r)1(e)-1(j)-333(k)1(ie)-1(j)-333(n)1(iekiej)-333(\\261)-1(miga\\252y)-333(p)-27(o)-334(k)28(o\\261c)-1(i)1(e)-1(le)-334(zb\\252\\241k)56(an)1(e)-334(i)-333(trw)28(o\\273)-1(n)1(ie)-334(\\261w)-1(i)1(e)-1(gol\\241ce)-1(.)]TJ 27.879 -13.549 Td[(Ka)-55(j\\261)-469(o)-28(d)-468(sta)28(wu)-468(rozle)-1(ga\\252y)-468(si\\246)-469(klap)1(i\\241ce)-469(trzas)-1(k)1(i)-469(k)1(ijan)1(e)-1(k,)-468(wr\\363b)1(le)-469(\\242w)-1(i)1(e)-1(r)1(k)55(a\\252y)]TJ -27.879 -13.549 Td[(za)-417(okn)1(am)-1(i)1(,)-416(z)-1(a\\261)-417(ze)-417(sm)-1(\\246tarza)-417(r)1(az)-417(p)-27(o)-417(r)1(az)-417(jak)56(a\\261)-417(r)1(oz)-1(gd)1(ak)55(an)1(a)-417(k)28(ok)28(osz)-417(ww)27(o)-27(dzi\\252a)-417(d)1(o)]TJ 0 -13.549 Td[(kr)1(uc)27(h)29(t)27(y)-333(ca\\252e)-334(s)-1(t)1(ado)-333(piu)1(k)56(a)-56(j\\241cyc)28(h)-333(kur)1(c)-1(z\\241te)-1(k)1(,)-334(a\\273)-333(Jam)27(b)1(ro\\273)-334(m)28(usia\\252)-334(wygan)1(ia\\242.)]TJ 27.879 -13.549 Td[(A)-333(s)-1(k)28(or)1(o)-334(ksi\\241d)1(z)-334(s)-1(k)28(o\\253)1(c)-1(zy\\252,)-333(wys)-1(zli)-333(zaraz)-334(wsz)-1(ysc)-1(y)-333(n)1(a)-334(sm\\246)-1(tar)1(z)-1(.)]TJ 0 -13.55 Td[(Ju)1(\\273)-334(b)28(yli)-333(k)28(ol)1(e)-334(dzw)27(on)1(nicy)83(,)-333(gd)1(y)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(za)-334(n)1(imi)-334(Jam)28(br)1(o\\273)-1(y:)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(p)-27(o)-28(cz)-1(ek)55(a)-55(jcie!)-334(D)1(obro)-27(dzie)-1(j)-333(c)28(hce)-334(w)28(am)-334(c)-1(osik)-333(p)-27(o)27(wiedzie\\242)-1(.)]TJ 0 -13.549 Td[(Nie)-339(wysz)-1(\\252o)-339(i)-338(Z)-1(d)1(ro)28(w)28(a\\261)-1(,)-338(kiej)-339(p)1(rzylec)-1(ia\\252)-339(zady)1(s)-1(zan)28(y)-339(z)-339(b)1(re)-1(wiar)1(z)-1(em)-339(p)-28(o)-27(d)-339(p)1(ac)27(h\\241)]TJ -27.879 -13.549 Td[(i)-333(ob)-27(c)-1(iera)-55(j\\241c)-334(\\252ysin)1(\\246)-334(pr)1(z)-1(ywita\\252)-333(dob)1(rym)-333(s)-1(\\252o)28(w)27(em)-334(i)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-311(Moi\\261c)-1(i)1(e)-1(,)-311(a)-311(to)-311(w)27(am)-312(c)28(hcia\\252e)-1(m)-311(p)-28(o)28(wiedzie\\242)-1(,)-311(\\273e)-312(z)-1(r)1(obil)1(i\\261)-1(cie)-312(p)-27(o)-311(c)27(h)1(rz)-1(e\\261c)-1(ij)1(a\\253sku)]TJ -27.879 -13.55 Td[(zam)-1(a)28(wia)-56(j)1(\\241c)-441(ms)-1(z\\246)-441(\\261w)-1(i)1(\\246)-1(t\\241)-440(za)-441(n)1(ie)-1(b)-27(osz)-1(cz)-1(yk)56(a.)-440(Ul\\273y)-440(to)-440(jego)-441(d)1(usz)-1(y)-440(i)-440(d)1(o)-441(wiec)-1(znego)]TJ 0 -13.549 Td[(zba)28(wie)-1(n)1(ia)-333(p)-28(omo\\273)-1(e.)-333(No,)-333(m)-1(\\363)28(wi\\246)-334(w)28(am,)-333(p)-28(omo\\273)-1(e!)]TJ 27.879 -13.549 Td[(Za\\273)-1(y)1(\\252)-334(tab)1(aki,)-333(p)-27(okic)27(h)1(a\\252)-334(siar)1(c)-1(zy\\261)-1(cie)-334(i)-333(wyciera)-56(j)1(\\241c)-334(nos)-333(z)-1(ap)28(y)1(ta\\252:)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(s)-1(ia)-55(j)-333(p)-27(e)-1(wnie)-333(b)-28(\\246dziec)-1(ie)-333(radzili)-333(o)-333(dzia\\252ac)27(h)1(,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)1(ak)-334(j)1(e)-334(ni)1(b)28(y)-333(w)27(e)-333(z)-1(wycz)-1(a)-55(ju)1(,)-334(co)-333(dop)1(ie)-1(r)1(o)-334(w)-333(okta)28(w)27(\\246)-333({)-334(p)1(rzyt)28(w)-1(i)1(e)-1(r)1(dzili.)]TJ 0 -13.55 Td[({)-333(Ot\\363\\273)-334(to!)-333(W\\252a\\261nie)-333(o)-334(t)28(ym)-333(c)27(h)1(c)-1(ia\\252em)-334(z)-334(w)28(ami)-334(p)-27(om\\363)27(wi\\242!)]TJ 0 -13.549 Td[(Dzie)-1(l)1(c)-1(ie)-442(si\\246)-1(,)-441(ale)-442(pami\\246ta)-56(j)1(c)-1(ie:)-442(zgo)-28(d)1(nie)-442(i)-442(spr)1(a)27(wiedl)1(iwie)-1(.)-441(\\233e)-1(b)28(y)-441(m)-1(i)-441(nie)-442(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(sw)27(ar\\363)28(w)-402(n)1(i)-402(k\\252\\363tn)1(i,)-401(b)-28(o)-401(z)-402(am)27(b)-27(on)28(y)-402(wyp)-27(omn\\246!)-402(Nieb)-27(os)-1(zc)-1(zyk)-401(w)-402(grobi)1(e)-402(s)-1(i\\246)-402(p)1(rze)-1(wr\\363-)]TJ 358.232 -29.888 Td[(617)]TJ\nET\nendstream\nendobj\n1971 0 obj <<\n/Type /Page\n/Contents 1972 0 R\n/Resources 1970 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1970 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1975 0 obj <<\n/Length 9253      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(618)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ci,)-447(j)1(e)-1(\\261li)-446(z)-1(ob)1(ac)-1(zy)83(,)-446(\\273)-1(e)-447(j)1(e)-1(go)-447(k)1(rw)28(a)27(wic\\246)-447(rozryw)28(ac)-1(i)1(e)-448(j)1(ak)-447(wil)1(ki)-447(b)1(aran)1(a!)-447(I)-447(b)1(ro\\253)-446(Bo\\273)-1(e.)]TJ 0 -13.549 Td[(kr)1(z)-1(ywd)1(z)-1(i\\242)-396(s)-1(i)1(e)-1(rot)28(y)1(!)-396(Grze)-1(l)1(a)-397(d)1(alek)28(o,)-396(a)-396(J\\363z)-1(k)56(a)-396(jesz)-1(cz)-1(e)-396(g\\252upi)-396(skr)1(z)-1(at!)-396(A)-396(co)-396(s)-1(i)1(\\246)-397(k)28(om)27(u)]TJ 0 -13.549 Td[(nal)1(e)-1(\\273y)83(,)-376(o)-28(d)1(da\\242)-377(\\261w)-1(i)1(\\246)-1(cie)-1(,)-376(co)-377(d)1(o)-377(grosz)-1(a.)-376(Jak)-376(rozrz\\241dzi\\252)-377(ma)-56(j)1(\\241tkiem)-1(,)-376(tak)-376(rozrz\\241dzi\\252,)]TJ 0 -13.549 Td[(ale)-284(trze)-1(b)1(a)-285(sp)-28(e\\252ni)1(\\242)-285(jego)-284(w)27(ol\\246.)-284(Mo\\273e)-285(on)-284(tam)-284(c)27(h)28(u)1(dzias)-1(zek)-284(w)-285(tej)-284(c)27(h)28(wil)1(i)-284(patr)1(z)-1(y)-284(a)-284(w)27(as)]TJ 0 -13.549 Td[(i)-385(m)27(y)1(\\261)-1(li)-385(sobi)1(e)-1(:)-385(n)1(a)-386(lu)1(dzim)-385(ic)27(h)-385(wywi\\363)-28(d)1(\\252,)-385(gos)-1(p)-27(o)-28(d)1(ark)28(\\246)-1(-m)-385(niez)-1(gor)1(s)-1(z\\241)-386(osta)28(wi\\252,)-385(to)-385(s)-1(i\\246)]TJ 0 -13.55 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-403(nie)-403(p)-28(ogr)1(yz)-1(\\241)-403(ki)1(e)-1(j)-403(p)1(s)-1(y)-403(p)1(rzy)-403(p)-28(o)-27(dziale.)-403(Ma)28(wiam)-404(ci\\241)-28(gle)-403(z)-404(am)28(b)-28(on)28(y)1(:)-403(z)-1(go)-28(d)1(\\241)]TJ 0 -13.549 Td[(stoi)-311(wsz)-1(ystk)28(o)-310(na)-310(\\261)-1(wiec)-1(ie,)-310(k\\252\\363tni)1(\\241)-311(jesz)-1(cz)-1(e)-311(n)1(ikt)-310(nicz)-1(ego)-311(n)1(ie)-311(zbu)1(do)28(w)27(a\\252.)-310(No,)-310(m)-1(\\363)28(wi\\246,)]TJ 0 -13.549 Td[(ni)1(c)-1(ze)-1(go,)-295(k)1(romie)-296(grzec)27(h)28(u)-295(i)-295(ob)1(razy)-295(b)-28(oskiej.)-295(A)-295(o)-295(k)28(o\\261c)-1(iele)-295(pami\\246)-1(t)1(a)-56(jcie.)-295(Nieb)-28(osz)-1(cz)-1(y)1(k)]TJ 0 -13.549 Td[(b)28(y\\252)-374(s)-1(zc)-1(zo)-28(dr)1(ym)-375(i)-375(czy)-375(na)-374(\\261)-1(wiat\\252o,)-374(c)-1(zy)-375(n)1(a)-375(ms)-1(z\\246)-1(,)-374(c)-1(zy)-375(n)1(a)-375(in)1(ne)-375(p)-27(otrze)-1(b)28(y)-374(grosz)-1(a)-374(nie)]TJ 0 -13.549 Td[(\\273a\\252)-1(o)28(w)28(a\\252)-334(i)-333(d)1(latego)-334(P)28(an)-333(B\\363g)-333(m)27(u)-333(b)1(\\252ogos)-1(\\252a)28(wi\\252...)]TJ 27.879 -13.549 Td[(D\\252ugo)-264(p)1(rze)-1(ma)28(w)-1(i)1(a\\252,)-264(ja\\273e)-265(si\\246)-264(k)28(obiet)28(y)-264(s)-1(p)1(\\252ak)55(a\\252y)-264(i)-263(j\\246\\252y)-264(m)27(u)-263(w)-265(p)-27(o)-28(d)1(z)-1(i\\246c)-1(e)-264(ob\\252ap)1(ia\\242)]TJ -27.879 -13.55 Td[(k)28(olan)1(a,)-417(za\\261)-417(J\\363zk)56(a)-417(p)1(rzypad)1(\\252a)-417(m)28(u)-416(na)28(w)27(et)-416(z)-417(b)-27(e)-1(ki)1(e)-1(m)-417(d)1(o)-417(r)1(\\241k,)-416(to)-416(j\\241)-416(przygarn)1(\\241\\252)-417(d)1(o)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(s)-1(i,)-333(a)-333(p)-27(o)-28(c)-1(a\\252o)28(w)28(a)27(wsz)-1(y)-333(w)-334(g\\252o)28(w)28(\\246)-334(rze)-1(k)1(\\252)-334(z)-334(d)1(obr)1(o\\261)-1(ci\\241:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)1(ucz)-1(,)-333(g\\252up)1(ia,)-333(P)28(an)-333(B\\363g)-334(ma)-333(s)-1(i)1(e)-1(rot)28(y)-333(w)-333(s)-1(zc)-1(ze)-1(g\\363l)1(nej)-333(opiec)-1(e.)]TJ 0 -13.549 Td[({)-379(\\233e)-380(i)-379(ro)-27(dzon)28(y)-379(nie)-379(p)-27(o)27(wiedzia\\252b)28(y)-379(b)1(arz)-1(ej)-379(d)1(o)-380(d)1(usz)-1(y)-379({)-379(sz)-1(epn)1(\\246)-1(\\252a)-379(rozrze)-1(wn)1(io-)]TJ -27.879 -13.549 Td[(na)-453(Han)1(k)55(a.)-453(S)1(nad)1(\\271)-454(i)-453(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-453(b)29(y\\252)-454(wzru)1(s)-1(zon)28(y)83(,)-453(b)-27(o)-453(wytar\\252sz)-1(y)-453(u)1(krad)1(kiem)-454(o)-28(cz)-1(y)1(;)]TJ 0 -13.55 Td[(cz)-1(\\246s)-1(to)28(w)28(a\\252)-334(k)28(o)28(w)28(ala)-334(t)1(a)-1(b)1(ak)56(\\241)-334(i)-333(p)1(r\\246dk)28(o)-333(z)-1(agad)1(a\\252)-334(o)-333(in)1(n)28(ym.)]TJ 27.879 -13.549 Td[({)-333(A)-334(c\\363\\273)-1(,)-333(b)-27(\\246dzie)-334(zgo)-28(da)-333(z)-334(dziedzice)-1(m?)]TJ 0 -13.549 Td[({)-333(B)-1(\\246dzie,)-333(ju\\273)-333(dzis)-1(i)1(a)-56(j)-333(p)-27(o)-56(j)1(e)-1(c)28(ha\\252o)-333(do)-333(niego)-333(pi\\241ciu.)1(..)]TJ 0 -13.549 Td[(-T)83(o)-471(c)27(h)28(w)28(a\\252a)-471(Bogu!)-471(J)1(u\\273)-471(z)-1(a)-471(d)1(armo)-471(ms)-1(z\\246)-472(\\261wi\\246)-1(t)1(\\241)-471(o)-28(dp)1(ra)28(wi\\246)-471(na)-471(in)29(te)-1(n)1(c)-1(j)1(\\246)-472(tej)]TJ -27.879 -13.549 Td[(zgo)-28(dy!)]TJ 27.879 -13.55 Td[({)-406(W)1(idzi)-406(mi)-406(si\\246,)-406(co)-406(wie\\261)-406(p)-28(o)28(winn)1(a)-406(si\\246)-406(z)-1(\\252o\\273y\\242)-406(na)-405(w)27(ot)28(yw)28(\\246)-406(z)-407(wysta)28(wie)-1(n)1(iem)-1(!)]TJ -27.879 -13.549 Td[(Jak\\273e)-1(,)-333(to)-333(j)1(akb)28(y)-333(no)28(w)28(e)-334(nad)1(z)-1(ia\\252y)-333(i)-333(ca\\252kiem)-334(dar)1(m)-1(o!)]TJ 27.879 -13.549 Td[({)-273(Masz)-274(rozum,)-273(M)1(ic)27(h)1(a\\252)-1(,)-273(m\\363)28(wi\\252e)-1(m)-273(o)-273(tobie)-273(dziedzic)-1(o)28(wi.)-273(No,)-273(i)1(d\\271c)-1(ie)-273(z)-274(Bogiem)-1(,)]TJ -27.879 -13.549 Td[(a)-262(pami\\246ta)-56(j)1(c)-1(i)1(e)-1(:)-262(zgo)-28(d\\241)-262(i)-262(spr)1(a)27(wiedl)1(iw)27(o\\261ci\\241!)-262(Ale,)-262(Mic)28(ha\\252!)-262({)-262(z)-1(a)28(w)28(o\\252a\\252)-263(za)-262(o)-28(dc)28(ho)-28(d)1(z)-1(\\241cym)]TJ 0 -13.549 Td[({)-411(a)-410(z)-1(a)-55(jr)1(z)-1(yj)-410(ta)-410(p)-28(\\363\\271ni)1(e)-1(j)-410(do)-410(m)-1(o)-55(jego)-411(w)28(olan)28(ta,)-410(pr)1(a)27(wy)-410(res)-1(or)-410(pr)1(z)-1(y)1(c)-1(iera)-410(s)-1(i\\246)-411(n)1(ie)-1(co)-411(d)1(o)]TJ 0 -13.55 Td[(osi...)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(p)-27(o)-28(d)-333(\\252azno)28(ws)-1(k)1(im)-334(d)1(obro)-27(dzie)-1(j)1(e)-1(m)-333(tak)-333(s)-1(i\\246)-333(z)-1(maglo)28(w)27(a\\252.)]TJ 0 -13.549 Td[(Ksi\\241dz)-446(j)1(u\\273)-446(n)1(ie)-446(o)-28(dr)1(z)-1(ek\\252,)-445(a)-446(oni)-445(p)-27(os)-1(zli)-445(prosto)-446(k)1(u)-446(d)1(omo)27(wi.)-445(Jagusia)-445(w)-1(i)1(e)-1(d)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(matk)28(\\246)-334(na)-333(ostatku,)-333(gd)1(y\\273)-334(stara)-333(wle)-1(k)1(\\252a)-334(si\\246)-334(z)-334(t)1(rud)1(e)-1(m)-333(o)-28(dp)-27(o)-28(cz)-1(yw)28(a)-56(j)1(\\241c)-334(co)-334(c)28(h)28(wila.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-357(b)29(y\\252)-358(p)-27(o)28(w)-1(sze)-1(d)1(ni,)-357(rob)-27(otn)28(y)84(,)-357(to)-358(i)-357(pu)1(s)-1(to)-357(b)28(y\\252o)-357(na)-357(drogac)28(h)-357(dok)28(o\\252a)-357(s)-1(ta)28(wu,)]TJ -27.879 -13.55 Td[(jeno)-426(d)1(z)-1(iec)-1(i)-426(b)1(a)28(w)-1(i)1(\\252)-1(y)-426(si\\246)-427(k)56(a)-55(j)-426(niek)56(a)-56(j)-426(w)-426(piasku)-426(i)-426(ku)1(ry)-426(grzeba\\252y)-426(w)-427(p)-27(orozrzucan)28(yc)27(h)]TJ 0 -13.549 Td[(\\252a)-56(j)1(nac)28(h.)-247(By\\252o)-247(jes)-1(zc)-1(ze)-248(w)28(c)-1(ze\\261)-1(n)1(ie)-1(,)-247(al)1(e)-248(j)1(u\\273)-248(s\\252o\\253ce)-248(n)1(iez)-1(gorze)-1(j)-246(pr)1(z)-1(yp)1(iek)55(a\\252o,)-247(sz)-1(cz\\246)-1(\\261c)-1(iem,)]TJ 0 -13.549 Td[(co)-437(w)-1(i)1(ate)-1(r)-437(n)1(iec)-1(o)-437(p)1(rze)-1(c)27(h)1(\\252adza\\252,)-437(z)-1(a)28(wiew)27(a\\252)-437(bu)1(jn)29(y)83(,)-437(i)1(\\273)-438(k)28(oleba\\252y)-437(si\\246)-437(s)-1(ad)1(y)83(,)-437(p)-27(e\\252)-1(n)1(e)-438(j)1(u\\273)]TJ 0 -13.549 Td[(cz)-1(erwieniej\\241cyc)27(h)-333(wi\\261ni)1(,)-334(a)-333(zb)-28(o\\273a)-333(bi\\252y)-333(o)-333(p\\252ot)28(y)-333(kiej)-333(w)27(o)-27(dy)-333(wz)-1(b)1(urzone.)]TJ 27.879 -13.549 Td[(Cha\\252u)1(p)28(y)-441(sta\\252y)-440(wyw)27(ar)1(te)-1(,)-440(wr\\363tn)1(ie)-441(ws)-1(z\\246)-1(d)1(y)-441(p)-27(orozwierane,)-440(na)-440(p\\252otac)27(h)-440(k)56(a)-56(j)1(\\261)]TJ -27.879 -13.549 Td[(ni)1(e)-1(k)56(a)-56(j)-359(wie)-1(tr)1(z)-1(y)1(\\252)-1(y)-359(s)-1(i\\246)-360(p)-28(o\\261c)-1(i)1(e)-1(le,)-360(a)-360(ws)-1(zystk)28(o,)-360(c)-1(o)-360(si\\246)-360(jeno)-360(ru)1(c)27(ha\\252o,)-360(p)1(raco)28(w)27(a\\252o)-360(w)-360(p)-28(o-)]TJ 0 -13.55 Td[(lac)28(h.)-454(Jes)-1(zc)-1(ze)-455(ktosik)-454(z)-1(w)28(ozi\\252)-455(ostatn)1(ie)-455(z)-1(ap)-27(\\363\\271nion)1(e)-455(p)-27(ok)28(os)-1(y)-454(siana,)-454(\\273e)-455(z)-1(ap)1(ac)27(h)-454(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(wierc)-1(i)1(\\252)-317(w)-316(n)1(oz)-1(d)1(rz)-1(ac)28(h,)-316(a)-316(n)1(a)-316(ob)28(wis)-1(\\252y)1(c)27(h)-316(n)1(ad)-316(dr)1(og\\241)-316(ga\\252\\246)-1(ziac)27(h)1(,)-316(p)-27(o)-28(d)-316(kt\\363r)1(ymi)-316(pr)1(z)-1(eje\\273)-1(-)]TJ 0 -13.549 Td[(d\\273a\\252y)-324(k)28(op)1(iaste)-325(w)28(oz)-1(y)84(,)-324(t)1(rz)-1(\\246s\\252)-1(y)-323(s)-1(i)1(\\246)-325(p)1(rzygar\\261c)-1(i)1(e)-325(\\271dzieb)-28(e\\252)-324(kiej)-323(te)-325(p)-27(o)28(wyryw)28(ane)-324(b)1(ro)-28(d)1(y)]TJ 0 -13.549 Td[(\\273ydo)28(ws)-1(k)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Szli)-333(z)-334(w)28(oln)1(a)-334(i)-333(w)-333(c)-1(ic)28(ho\\261c)-1(i,)-333(d)1(e)-1(li)1(b)-28(eru)1(j\\241c)-334(o)-333(dzia\\252ac)27(h)1(.)]TJ 0 -13.55 Td[(Sk)56(\\241d)1(c)-1(i\\261,)-317(jakb)28(y)-317(z)-318(p)-28(\\363l)1(,)-318(k)56(a)-56(j)-317(lu)1(dzie)-318(osyp)28(yw)28(ali)-318(ziem)-1(n)1(iaki)1(,)-318(zryw)28(a\\252a)-318(s)-1(i)1(\\246)-318(niekiedy)]TJ -27.879 -13.549 Td[(pi)1(os)-1(n)1(e)-1(cz)-1(k)56(a)-295(i)-294(sz)-1(\\252a)-294(z)-295(w)-1(iat)1(re)-1(m)-294(niewiada)-294(k)55(a)-55(j,)-294(z)-1(a\\261)-295(p)-27(o)-28(d)-294(m\\252ynem)-295(jak)56(a\\261)-295(b)1(aba)-295(t)1(ak)-295(p)1(ra\\252a)]TJ\nET\nendstream\nendobj\n1974 0 obj <<\n/Type /Page\n/Contents 1975 0 R\n/Resources 1973 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1960 0 R\n>> endobj\n1973 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1978 0 obj <<\n/Length 7994      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(619)]TJ -358.232 -35.866 Td[(kij)1(ank)56(\\241,)-333(ja\\273e)-334(si\\246)-334(rozlega\\252o)-334(i)-333(sz)-1(u)1(m)-1(n)1(ie)-334(h)29(uc)-1(za\\252y)-333(w)27(o)-27(dy)-333(s)-1(p)1(ada)-55(j\\241ce)-334(na)-333(k)28(o\\252a.)]TJ 27.879 -13.549 Td[({)-333(M\\252yn)-333(teraz)-334(ci\\246gie)-1(m)-333(rob)1(i!)-333({)-334(ozw)27(a\\252a)-333(si\\246)-334(pi)1(e)-1(r)1(w)-1(sz)-1(a)-333(Magd)1(a.)]TJ 0 -13.549 Td[({)-333(Przedno)28(w)28(e)-1(k)-333(to)-333(\\273)-1(n)1(iw)28(a)-334(l)1(a)-334(m\\252ynar)1(z)-1(a!)]TJ 0 -13.549 Td[({)-282(C)-1(i)1(\\246)-1(\\273s)-1(zy)-282(on)-282(lato\\261)-283(n)1(i\\271li)-282(\\252oni.)-282(Wsz)-1(\\246dzie)-283(b)1(ieda)-282(a\\273)-283(pi)1(s)-1(zc)-1(zy)83(,)-282(za\\261)-283(u)-282(k)28(omorn)1(ik)28(\\363)28(w)]TJ -27.879 -13.549 Td[(to)-333(ju)1(\\273)-334(pr)1(os)-1(to)-333(g\\252\\363)-28(d)-333({)-333(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-333(Hank)56(a.)]TJ 27.879 -13.55 Td[({)-262(Koz)-1(\\252y)-262(te\\273)-263(p)-28(enetru)1(j\\241)-262(p)-27(o)-263(ws)-1(i)1(,)-262(jeno)-262(c)-1(ze)-1(k)56(a\\242)-1(,)-262(j)1(ak)-262(k)28(om)27(u)-262(co)-263(gru)1(bsz)-1(ego)-262(ukr)1(adn\\241)]TJ -27.879 -13.549 Td[({)-333(rzuci\\252)-334(k)28(o)28(w)28(al.)]TJ 27.879 -13.549 Td[({)-442(Nie)-442(b)1(a)-56(jcie!)-442(Ratu)1(j\\241)-442(si\\246)-1(,)-441(biedot)28(y)84(,)-442(j)1(ak)-442(mog\\241,)-442(w)28(c)-1(zora)-55(j)-442(Koz\\252o)28(w)27(a)-442(p)1(rze)-1(d)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(organ)1(i\\261c)-1(in)1(ie)-334(k)56(ac)-1(z\\246ta,)-333(to)-334(si\\246)-334(\\271dziebk)28(o)-333(ws)-1(p)-27(om)-1(og\\252a..)1(.)]TJ 27.879 -13.549 Td[({)-364(Ryc)27(h)1(\\252)-1(o)-364(p)1(rze)-1(c)27(h)1(la)-55(j\\241.)-364(Nie)-365(p)-27(o)28(wiadam)-364(na)-364(nic)28(h)-364(ni)1(c)-365(z)-1(\\252ego,)-364(ale)-365(mi)-364(dziwno,)-364(\\273e)]TJ -27.879 -13.549 Td[(pi)1(\\363rk)56(a)-309(m)-1(o)-55(jego)-310(k)56(acz)-1(or)1(a,)-309(c)-1(o)-309(mi)-309(z)-1(gi)1(n\\241\\252)-309(w)-310(o)-55(jco)27(wy)-309(p)-27(o)-28(c)28(h\\363)28(w)27(ek,)-309(n)1(alaz)-1(\\252)-309(m\\363)-56(j)-309(M)1(ac)-1(iu)1(\\261)-310(za)]TJ 0 -13.55 Td[(ic)28(h)-333(ob)-28(\\363r)1(k)55(\\241)-333({)-333(w)-1(y)1(rze)-1(k\\252a)-333(Magd)1(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(t\\363\\273)-334(to)-333(w)-1(t)1(e)-1(nczas)-334(wz)-1(ion)-333(n)1(as)-1(ze)-334(p)-27(o\\261)-1(ciele?)-334({)-333(w)-1(tr)1(\\241c)-1(i)1(\\252)-1(a)-333(J\\363zk)56(a.)]TJ 0 -13.549 Td[({)-333(Kiej\\273e)-334(to)-333(ic)27(h)-333(spr)1(a)27(w)28(a)-333(z)-334(w)27(\\363)-55(jtami?)]TJ 0 -13.549 Td[({)-373(Ni)1(e)-1(p)1(r\\246)-1(d)1(k)28(o,)-373(al)1(e)-373(P\\252os)-1(zk)56(a)-373(ic)28(h)-372(w)-1(spiera,)-372(to)-373(j)1(u\\273)-373(w)28(\\363)-56(j)1(tom)-373(dob)1(rze)-374(zalej\\241)-372(s)-1(ad)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(za)-334(sk)28(\\363r\\246.)]TJ 27.879 -13.55 Td[({)-333(\\233e)-334(to)-333(P\\252os)-1(zk)56(a)-334(l)1(ubi)-333(za)28(w)-1(d)1(y)-333(nos)-334(wr)1(a\\273)-1(a\\242)-334(w)-333(c)-1(u)1(dze)-334(s)-1(p)1(ra)28(wy)83(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(pr)1(z)-1(y)1(jac)-1(i)1(\\363\\252)-334(se)-334(k)56(aptu)1(je,)-333(b)-28(o)-333(m)27(u)-332(pac)27(h)1(nie)-333(w)27(\\363)-55(jtost)28(w)27(o!)]TJ 0 -13.549 Td[(Pr)1(z)-1(es)-1(zed\\252)-399(im)-399(dr)1(og\\246)-400(Jan)1(kiel)-399(c)-1(i)1(\\241)-28(gn\\241cy)-399(za)-399(grzyw)27(\\246)-399(sp)-28(\\246tanego)-399(k)28(oni)1(a,)-399(kt\\363ren)]TJ -27.879 -13.549 Td[(bi)1(\\252)-334(zadem)-334(i)-333(opi)1(e)-1(ra\\252)-333(si\\246)-334(ze)-334(ws)-1(zys)-1(t)1(kic)27(h)-333(si\\252.)]TJ 27.879 -13.549 Td[({)-333(Za\\252)-1(\\363\\273cie)-334(m)27(u)-332(pieprzu)-333(p)-27(o)-28(d)-333(ogon)1(,)-334(t)1(o)-334(r)1(ypn)1(ie)-334(z)-334(miejsc)-1(a)-333(kiej)-333(ogier.)]TJ 0 -13.55 Td[({)-333(\\221miejcie)-334(si\\246)-334(na)-333(zdro)28(wie!)-333(C)-1(o)-333(ja)-333(j)1(u\\273)-334(mam)-334(z)-334(t)28(y)1(m)-334(k)28(oniem!)]TJ 0 -13.549 Td[({)-352(Wyp)-27(c)27(ha)-55(jcie)-353(go)-352(s)-1(\\252om\\241,)-352(przyp)1(ra)28(w)27(cie)-353(m)28(u)-352(no)28(wy)-353(ogon)-352(i)-352(p)-27(o)28(w)-1(i)1(e)-1(d)1(\\271)-1(cie)-353(na)-352(jar)1(-)]TJ -27.879 -13.549 Td[(mark,)-436(to)-436(mo\\273e)-437(go)-436(kto)-436(k)1(upi)-435(z)-1(a)-436(kr)1(o)27(w)28(\\246,)-436(b)-28(o)-436(n)1(a)-436(k)28(onia)-436(j)1(u\\273)-436(niezdatn)28(y!)-435({)-436(\\273)-1(ar)1(to)27(w)28(a\\252)]TJ 0 -13.549 Td[(Mi)1(c)27(ha\\252)-398(i)-397(naraz)-398(ws)-1(zysc)-1(y)-397(gruc)28(hn)1(\\246)-1(li)-397(\\261)-1(miec)27(hem,)-398(gdy)1(\\273)-399(k)28(o\\253)-397(s)-1(i)1(\\246)-399(wyr)1(w)27(a\\252,)-398(sk)28(o)-28(cz)-1(y\\252)-398(d)1(o)]TJ 0 -13.549 Td[(sta)27(wu)-478(i)-479(n)1(ie)-479(zw)27(a\\273a)-56(j\\241c)-479(n)1(a)-479(Jan)1(klo)28(w)27(e)-479(p)1(ro\\261b)28(y)-479(i)-478(gro\\271b)28(y)83(,)-478(na)-55(jsp)-27(ok)28(o)-56(jn)1(iej)-479(p)-27(o)-28(cz)-1(\\241\\252)-478(s)-1(i\\246)]TJ 0 -13.55 Td[(tarza\\242.)]TJ 27.879 -13.549 Td[({)-333(M\\241dr)1(ala)-333(ju)1(c)27(ha,)-333(m)28(usi)-334(b)29(y\\242)-334(o)-28(d)-333(Cygan)1(\\363)28(w)-1(!)]TJ 0 -13.549 Td[({)-347(P)28(os)-1(ta)28(w)28(c)-1(i)1(e)-348(m)27(u)-347(wiad)1(ro)-347(gorz)-1(a\\252k)1(i,)-347(to)-348(mo\\273e)-348(wyjd)1(z)-1(ie!)-347({)-348(za\\261)-1(mia\\252a)-347(s)-1(i)1(\\246)-348(organ)1(i-)]TJ -27.879 -13.549 Td[(\\261c)-1(in)1(a,)-380(s)-1(i)1(e)-1(d)1(z)-1(\\241ca)-381(n)1(ad)-380(sta)28(w)27(em)-381(p)1(rzy)-380(s)-1(tad)1(z)-1(ie)-380(k)56(ac)-1(z\\241t)-380(p\\252yw)28(a)-56(j)1(\\241c)-1(yc)28(h)-380(kiej)-380(te)-380(\\273)-1(\\363\\252ciu\\261kie)]TJ 0 -13.549 Td[(p)-27(\\246)-1(p)1(usz)-1(ki)1(;)-333(roz)-1(cz)-1(ap)1(ierzona)-333(k)28(ok)28(os)-1(z)-334(gd)1(ak)56(a\\252a)-334(n)1(a)-334(b)1(rze)-1(gu)1(.)]TJ 27.879 -13.55 Td[({)-333(\\221li)1(c)-1(zne)-334(stadk)28(o,)-333(to)-333(p)-27(e)-1(wni)1(e)-334(o)-28(d)-333(Koz\\252o)28(w)27(ej?)-333({)-334(p)29(yta\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-367(T)83(ak,)-366(i)-367(c)-1(i\\241)-27(gle)-368(mi)-367(j)1(e)-1(sz)-1(cze)-368(uciek)56(a)-56(j\\241)-367(n)1(a)-367(s)-1(t)1(a)27(w.)-367(T)83(asiu)1(c)27(hn)29(y!)-367(ta\\261,)-367(ta\\261)-1(,)-366(ta\\261)-1(,)-366(ta\\261)-1(!)]TJ -27.879 -13.549 Td[({)-333(z)-1(w)28(o\\252yw)27(a\\252a)-333(rzuca)-56(j)1(\\241c)-334(na)-333(pr)1(z)-1(y)1(n\\246t\\246)-334(pr)1(z)-1(ygar)1(\\261)-1(ciami)-333(jag\\252y)83(.)]TJ 27.879 -13.549 Td[(Ale)-334(k)56(acz)-1(k)1(i)-334(szoro)28(w)27(a\\252y)-333(na)-333(dr)1(ugi)-333(b)1(rz)-1(eg,)-333(\\273)-1(e)-333(p)-28(ol)1(e)-1(cia\\252a)-334(za)-333(nimi.)]TJ 0 -13.549 Td[({)-375(Cho)-28(d)1(\\271)-1(cie)-376(p)1(r\\246dze)-1(j)1(,)-375(k)28(obiet)28(y)-375({)-375(pr)1(z)-1(yn)1(agla\\252)-375(k)28(o)27(w)28(al)-375(i)-375(gd)1(y)-375(w)27(es)-1(zli)-375(d)1(o)-376(c)28(ha\\252up)29(y)83(,)]TJ -27.879 -13.549 Td[(a)-459(Hank)56(a)-459(z)-1(ak)1(rz)-1(\\241t)1(n\\246\\252)-1(a)-459(si\\246)-460(k)28(ol)1(e)-460(\\261niad)1(ania,)-459(j)1(\\241\\252)-460(zno)28(wu)-459(p)-27(e)-1(n)1(e)-1(t)1(ro)28(w)27(a\\242)-459(w)-460(izbac)28(h)-459(i)-459(w)]TJ 0 -13.55 Td[(ob)-27(e)-1(j)1(\\261)-1(ciu,)-321(n)1(a)27(w)28(et)-322(n)1(ie)-322(pr)1(z)-1(ep)-27(om)-1(n)1(ia\\252)-322(ziem)-1(n)1(iacz)-1(an)28(y)1(m)-322(do\\252om,)-321(a\\273)-322(Hank)56(a)-321(p)-28(o)28(wiedzia\\252a:)]TJ 27.879 -13.549 Td[({)-333(Ogl\\241d)1(ac)-1(ie,)-333(jakb)29(y)-334(co)-333(ub)28(y)1(\\252)-1(o!)]TJ 0 -13.549 Td[({)-333(Nie)-334(ku)1(pu)1(j\\246)-334(k)28(ota)-333(w)28(e)-334(w)27(or)1(ku!)]TJ 0 -13.549 Td[({)-337(Le)-1(p)1(iej)-337(wy)-337(z)-1(n)1(ac)-1(ie)-337(ws)-1(zy\\242)-1(k)28(o)-337(n)1(i\\271)-1(l)1(i)-337(ja)-337(s)-1(ama!)-337({)-337(wyrze)-1(k)1(\\252)-1(a)-337(z)-337(przek)55(\\241se)-1(m,)-337(rozle-)]TJ -27.879 -13.549 Td[(w)28(a)-56(j\\241c)-333(k)55(a)28(w)28(\\246)-334(w)-334(gar)1(n)28(usz)-1(k)1(i.)]TJ 27.879 -13.55 Td[({)-365(D)1(om)-1(in)1(ik)28(o)28(w)27(a,)-364(Jagu)1(\\261)-1(,)-364(a)-365(c)28(ho)-28(d)1(\\271)-1(cie\\273)-365(do)-365(k)1(up)28(y)1(!)-365({)-364(z)-1(a)28(w)28(o\\252)-1(a\\252a)-364(na)-364(dru)1(g\\241)-365(stron)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)-333(si\\246)-334(ob)1(ie)-334(za)27(w)28(ar\\252y)84(.)]TJ\nET\nendstream\nendobj\n1977 0 obj <<\n/Type /Page\n/Contents 1978 0 R\n/Resources 1976 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1976 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1982 0 obj <<\n/Length 8171      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(620)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ob)1(s)-1(iedl)1(i)-333(\\252)-1(a)28(w)28(\\246)-334(i)-333(p)-27(opij)1(ali)-333(przegryza)-56(j)1(\\241c)-334(c)27(h)1(le)-1(b)-27(em)-1(.)]TJ 0 -13.549 Td[(Nikt)1(o)-452(si\\246)-452(n)1(ie)-452(o)-28(d)1(z)-1(y)1(w)27(a\\252,)-451(ni)1(jak)28(o)-451(b)28(y\\252o)-451(z)-1(acz)-1(y)1(na\\242,)-451(k)55(a\\273den)-451(si\\246)-452(w)28(ago)27(w)28(a\\252)-451(ogl\\241-)]TJ -27.879 -13.549 Td[(da)-55(j\\241c)-372(na)-372(dru)1(gic)27(h)1(.)-372(Hank)56(a)-373(t)1(e)-1(\\273)-373(b)28(y)1(\\252a)-373(d)1(z)-1(iwn)1(ie)-373(p)-27(o)27(w\\261c)-1(i\\241)-27(gliw)28(a,)-372(ju\\261ci,)-372(c)-1(o)-372(niew)27(ol)1(i\\252a)-373(d)1(o)]TJ 0 -13.549 Td[(jad)1(\\252a)-393(p)1(rzylew)27(a)-55(j\\241c)-393(k)56(a\\273dem)27(u,)-392(ale)-392(pra)28(wie)-393(n)1(ie)-393(spu)1(s)-1(zc)-1(za\\252a)-393(o)-28(cz\\363)27(w)-392(z)-393(k)28(o)28(w)27(ala,)-392(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(si\\246)-392(wierci\\252)-391(na)-391(miejsc)-1(u)1(,)-391(\\261m)-1(i)1(ga\\252)-392(\\261lepiami)-391(p)-27(o)-391(izbi)1(e)-392(i)-391(c)28(hr)1(z)-1(\\241k)56(a\\252)-391(raz)-391(p)-28(o)-391(r)1(az)-1(.)-390(Jagusia)]TJ 0 -13.55 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(a)-278(cz)-1(ego\\261)-279(c)27(h)1(m)27(u)1(rn)1(a)-279(i)-278(wzdyc)28(hli)1(w)27(a,)-278(o)-28(cz)-1(y)-278(mia\\252a)-278(p)-27(o\\252)-1(y)1(s)-1(kl)1(iw)27(e)-278(jakb)29(y)-278(o)-28(d)-278(ni)1(e)-1(d)1(a)27(w-)]TJ 0 -13.549 Td[(nego)-386(p)1(\\252ac)-1(zu,)-385(a)-385(Dom)-1(i)1(nik)28(o)28(w)27(a)-385(cz)-1(ap)1(irzy\\252a)-386(si\\246)-386(kiej)-385(kw)28(ok)55(a)-385(i)-385(c)-1(osik)-385(p)-28(osz)-1(ept)28(y)1(w)27(a\\252a)-386(d)1(o)]TJ 0 -13.549 Td[(ni)1(e)-1(j)1(,)-363(t)28(ylk)28(o)-363(j)1(e)-1(d)1(na)-363(J\\363zk)55(a,)-362(c)-1(o)-363(ta)-363(p)-27(o)-363(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-363(p)1(le)-1(t)1(\\252)-1(a)-363(t)1(rz)-1(y)-362(p)-28(o)-363(tr)1(z)-1(y)-363(zwija)-55(j\\241c)-363(s)-1(i)1(\\246)-364(k)28(ole)]TJ 0 -13.549 Td[(gar\\363)28(w,)-333(p)-28(e\\252n)28(yc)28(h)-333(p)-28(erk)28(o)-28(cz\\241c)-1(yc)28(h)-333(z)-1(i)1(e)-1(mniak)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(D\\252u\\273y\\252o)-333(s)-1(i)1(\\246)-334(ju)1(\\273)-334(ws)-1(zystkim,)-333(a\\273)-334(pierwsz)-1(y)-333(k)28(o)28(w)27(al)-333(zac)-1(z\\241\\252:)]TJ 0 -13.549 Td[({)-333(Wi\\246c)-334(jak)1(\\273)-1(e)-334(zrob)1(im)27(y)-333(z)-334(d)1(z)-1(i)1(a\\252)-1(ami?)]TJ 0 -13.55 Td[(Hank)56(a)-431(drgn)1(\\246)-1(\\252a)-431(i)-432(pr)1(os)-1(tu)1(j\\241c)-432(si\\246)-432(p)-27(o)27(wiedzia\\252a)-432(sp)-28(ok)28(o)-55(jn)1(ie,)-432(snad)1(\\271)-433(p)-27(o)-432(d)1(obr)1(ym)]TJ -27.879 -13.549 Td[(nam)28(y\\261le)-1(:)]TJ 27.879 -13.549 Td[({)-314(A)-313(c)-1(\\363\\273)-314(ma)-314(b)29(y\\242)-1(!)-313(Ja)-314(tu)-313(j)1(e)-1(n)1(o)-314(str\\363\\273uj)1(\\246)-315(m\\246\\273)-1(o)28(w)28(e)-1(go)-314(d)1(obr)1(a)-314(i)-313(s)-1(tan)1(o)28(w)-1(i)1(\\242)-315(o)-313(niczym)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)27(a)-333(nie)-333(m)-1(am.)-333(An)28(tek)-333(w)-1(r)1(\\363)-28(c)-1(i)1(,)-333(to)-334(si\\246)-334(p)-27(o)-28(d)1(z)-1(ielit)1(a.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(tam)-334(on)-333(wr\\363)-27(c)-1(i,)-333(a)-333(tak)-333(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)-332(os)-1(ta\\242)-334(n)1(ie)-334(mo\\273e)-1(.)]TJ 0 -13.55 Td[({)-415(Ale)-416(ostani)1(e)-1(!)-415(M)1(og\\252)-1(o)-415(tak)-415(b)29(y\\242)-416(p)1(rze)-1(z)-416(ca\\252y)-415(c)-1(zas)-416(o)-55(jco)28(w)27(ej)-415(c)27(h)1(orob)28(y)84(,)-415(to)-415(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(b)28(y\\242,)-333(p)-27(\\363ki)-333(An)28(tek)-334(n)1(ie)-334(p)-27(o)28(w)-1(r)1(\\363)-28(ci.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(on)-333(j)1(e)-1(d)1(e)-1(n)-333(j)1(e)-1(st)-333(do)-333(p)-28(o)-27(dzia\\252u.)]TJ 0 -13.549 Td[({)-333(Ale)-1(\\242)-333(on)-333(na)-55(jstarsz)-1(y)84(,)-333(to)-334(j)1(e)-1(m)28(u)-333(s)-1(i)1(\\246)-334(p)-27(o)-334(o)-55(jcu)-333(nale\\273y)-334(ob)-55(j)1(\\241\\242)-334(gos)-1(p)-27(o)-28(d)1(ark)28(\\246.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(tak)1(ie)-334(ma)-334(p)1(ra)28(w)28(o)-334(j)1(ak)-334(i)-333(d)1(ru)1(gie)-334(dziec)-1(i)1(.)]TJ 0 -13.55 Td[({)-333(Mo\\273e)-334(w)27(e\\271)-1(miec)-1(i)1(e)-334(i)-333(wy)83(,)-333(jak)-333(si\\246)-334(tak)-333(z)-334(An)29(tkiem)-334(u)1(\\252)-1(o\\273yta.)]TJ 0 -13.549 Td[(K\\252\\363)-28(ci\\252a)-333(s)-1(i\\246)-333(przec)-1(iec)27(h)-333(z)-334(w)28(ami)-333(nie)-334(b)-27(\\246d\\246,)-333(nie)-334(mo)-55(ja)-333(w)-334(t)28(ym)-334(w)28(ola)-333(s)-1(t)1(ano)28(wi.)]TJ 0 -13.549 Td[({)-333(Jagu\\261!)-333({)-334(p)-27(o)-28(d)1(nies)-1(\\252a)-333(g\\252os)-334(Domini)1(k)28(o)27(w)28(a)-333({)-334(p)1(rzyp)-27(om)-1(n)1(ij\\273e)-334(o)-333(s)-1(w)28(oim.)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(o)-333(c)-1(o,)-333(p)1(rz)-1(ecie)-1(c)28(h)-333(dob)1(rz)-1(e)-333(pami\\246ta)-56(j)1(\\241...)]TJ 0 -13.549 Td[(Hank)56(a)-352(p)-27(o)-28(cz)-1(erwieni)1(a\\252)-1(a)-351(gw)27(a\\252to)28(wnie)-352(i)-351(k)28(opi\\241c)-352(\\212ap)-27(\\246)-1(,)-351(kt\\363r)1(e)-1(n)-351(s)-1(i)1(\\246)-353(n)1(a)28(w)-1(i)1(n\\241\\252)-352(p)-27(o)-28(d)]TJ -27.879 -13.55 Td[(nogi)1(,)-333(w)-1(y)1(rz)-1(ek\\252a)-333(przez)-334(z)-1(\\246b)28(y:)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(krzywd\\246)-334(d)1(obr)1(z)-1(e)-334(p)1(am)-1(i)1(\\246)-1(tam)28(y)83(.)]TJ 0 -13.549 Td[({)-318(Rze)-1(k)1(li\\261c)-1(ie!)-317(T)83(u)-317(idzie)-318(o)-318(sz)-1(e\\261\\242)-318(m)-1(or)1(g\\363)27(w,)-317(jaki)1(e)-318(nieb)-28(oszc)-1(zyk)-318(zapi)1(s)-1(a\\252)-317(Jagusi,)-318(a)]TJ -27.879 -13.549 Td[(ni)1(e)-334(o)-333(g\\252)-1(u)1(pi)1(e)-334(s)-1(\\252o)28(w)28(a!)]TJ 27.879 -13.549 Td[({)-276(Jak)-275(m)-1(acie)-276(z)-1(ap)1(is,)-276(to)-276(w)28(am)-1(a)-275(nikt)-275(nie)-276(wydr)1(z)-1(e!)-276({)-276(mru)1(kn)1(\\246)-1(\\252a)-276(gn)1(ie)-1(wn)1(ie)-277(M)1(agda,)]TJ -27.879 -13.55 Td[(sie)-1(d)1(z)-1(\\241ca)-333(c)-1(a\\252y)-333(c)-1(zas)-334(cic)27(h)1(o)-334(z)-333(dzie)-1(c)28(kiem)-334(u)-333(p)1(ie)-1(r)1(s)-1(i.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mam)27(y)84(,)-333(w)-334(u)1(rz\\246)-1(d)1(z)-1(ie)-333(z)-1(rob)1(ion)28(y)-333(i)-333(p)1(rz)-1(y)-333(\\261wiadk)56(ac)27(h)1(.)]TJ 0 -13.549 Td[({)-333(Ws)-1(zysc)-1(y)-333(cz)-1(ek)56(a)-56(j)1(\\241,)-334(to)-333(i)-333(Jagu)1(s)-1(ia)-333(mo\\273)-1(e.)]TJ 0 -13.549 Td[({)-402(P)29(e)-1(wni)1(e)-1(,)-401(\\273)-1(e)-402(m)28(usi,)-402(al)1(e)-402(c)-1(o)-402(ma)-402(sw)28(o)-56(jego,)-401(to)-402(zaraz)-402(z)-1(ab)1(ierze)-1(,)-401(a)-402(ma)-402(pr)1(z)-1(ec)-1(i)1(e)-1(k)]TJ -27.879 -13.549 Td[(kr)1(o)27(w)28(\\246)-334(z)-334(ciel\\246)-1(ciem)-1(,)-333(a)-333(\\261)-1(win)1(i\\246,)-333(a)-334(g\\241ski..)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(wsp)-28(\\363l)1(ne)-334(i)-333(p)-27(\\363)-56(j)1(dzie)-334(d)1(o)-334(d)1(z)-1(ia\\252\\363)28(w)-333({)-334(p)-27(o)28(w)-1(sta\\252)-333(t)28(w)27(ard)1(o)-333(k)28(o)27(w)28(al.)]TJ 0 -13.55 Td[({)-409(Do)-409(dzia\\252\\363)27(w!)-409(Chcielib)28(y)1(\\261)-1(cie)-1(!)-409(Co)-409(dosta\\252a)-409(w)27(e)-409(w)-1(i)1(anie,)-409(te)-1(go)-409(j)1(e)-1(j)-409(n)1(ikt)-409(mo)-28(c)-1(en)]TJ -27.879 -13.549 Td[(o)-28(d)1(e)-1(b)1(ra\\242!)-378(A)-378(mo\\273e)-379(c)28(hce)-1(cie)-378(i)-378(k)1(ie)-1(c)28(ki)-378(a)-377(pierzyn)28(y)-377(te)-1(\\273)-378(p)-27(o)-28(d)1(z)-1(ieli\\242)-378(mi\\246dzy)-378(siebie,)-378(co?)-378({)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(a)-333(g\\252os)-334(coraz)-334(siln)1(ie)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-333(La)-334(\\261mie)-1(c)28(h)28(u)-333(rze)-1(k)1(\\252e)-1(m,)-333(a)-334(wy)-333(z)-1(ar)1(az)-334(z)-334(p)1(az)-1(u)1(rami...)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(...)-333(pr)1(z)-1(egl\\241dam)-333(ja)-333(w)27(as)-333(dobr)1(z)-1(e,)-333(ju)1(\\261)-1(ci...)]TJ 0 -13.55 Td[({)-395(Bo)-395(i)-395(c)-1(o)-395(tu)-394(b)-28(\\246dziem)-396(p)-27(o)-395(pr)1(\\363\\273)-1(n)1(ic)-1(y)-394(klekta\\242)-1(.)-394(Pra)28(wd\\246)-395(rze)-1(kl)1(i\\261)-1(cie.)-395(Hank)56(a,)-395(\\273e)]TJ -27.879 -13.549 Td[(trza)-452(p)-27(o)-28(cz)-1(ek)55(a\\242)-452(n)1(a)-452(An)28(tk)56(a.)-452(M)1(nie)-452(s)-1(i)1(\\246)-453(\\261pi)1(e)-1(sz)-1(y)-451(do)-452(d)1(z)-1(iedzica,)-452(b)-27(o)-452(tam)-452(ju)1(\\273)-453(n)1(a)-452(mnie)]TJ\nET\nendstream\nendobj\n1981 0 obj <<\n/Type /Page\n/Contents 1982 0 R\n/Resources 1980 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1980 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1985 0 obj <<\n/Length 8471      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(621)]TJ -358.232 -35.866 Td[(cz)-1(ek)55(a)-55(j\\241)-294({)-294(ws)-1(ta\\252,)-294(a)-294(d)1(o)-56(j)1(rz)-1(a)28(wsz)-1(y)-294(o)-55(jco)27(wy)-294(k)28(o\\273uc)28(h)-294(rozwie)-1(sz)-1(on)29(y)-294(w)-295(k)56(\\241cie)-295(n)1(a)-294(dr\\241\\273ku)-293(j\\241\\252)]TJ 0 -13.549 Td[(go)-333(\\261)-1(ci\\241)-28(ga\\242.)]TJ 27.879 -13.549 Td[({)-333(W)-333(s)-1(am)-334(r)1(az)-334(zda\\252b)28(y)-333(s)-1(i)1(\\246)-334(na)-333(mnie.)]TJ 0 -13.549 Td[({)-333(Nie)-334(ru)1(c)27(h)1(a)-56(j)1(c)-1(ie,)-333(niec)27(h)-333(si\\246)-334(susz)-1(y)-333({)-333(br)1(oni\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-319(A)-319(j)1(u\\273)-319(te)-319(bu)1(c)-1(i)1(ary)-319(o)-27(ddacie.)-319(Chol)1(e)-1(wy)-319(j)1(e)-1(n)1(o)-319(ca\\252e)-1(,)-318(a)-319(i)-319(to)-319(j)1(u\\273)-319(raz)-319(p)-27(o)-28(d)1(s)-1(zyw)27(an)1(e)]TJ -27.879 -13.55 Td[({)-333(t\\252umac)-1(zy\\252,)-333(c)27(h)28(y)1(trze)-334(\\261)-1(ci\\241)-28(ga)-55(j\\241c)-334(j)1(e)-334(z)-334(d)1(r\\241\\273k)55(a.)]TJ 27.879 -13.549 Td[({)-387(Ni)1(c)-1(ze)-1(go)-386(tkn\\241\\242)-387(n)1(ie)-387(p)-27(oz)-1(w)28(ol\\246!)-387(W)84(e)-1(\\271mie)-1(cie)-387(co)-387(n)1(ie)-1(b)1(\\241d\\271,)-387(a)-386(p)-28(ot)1(e)-1(m)-387(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(\\241,)]TJ -27.879 -13.549 Td[(\\273e)-1(m)-394(p)-27(\\363\\252)-393(gos)-1(p)-27(o)-28(dar)1(ki)-393(z)-1(at)1(rac)-1(i)1(\\252a.)-394(Ni)1(e)-1(c)27(h)-392(prz\\363)-28(d)1(z)-1(i)-393(spis)-394(zrob)1(i\\241.)-393(Na)28(w)27(et)-394(k)28(o\\252k)56(a)-393(z)-394(p\\252otu)]TJ 0 -13.549 Td[(ru)1(s)-1(zy\\242)-334(n)1(ie)-334(d)1(am)-1(,)-333(p)-27(\\363ki)-333(ws)-1(zystkiego)-334(u)1(rz\\241d)-333(nie)-333(opisz)-1(e!)]TJ 27.879 -13.549 Td[({)-333(Sp)1(is)-1(u)-333(n)1(ie)-334(b)29(y\\252o,)-334(a)-333(j)1(u\\273)-334(si\\246)-334(k)56(a)-56(j)1(\\261)-334(zadzia\\252y)-333(o)-56(j)1(c)-1(o)28(w)27(e)-333(p)-28(o\\261c)-1(i)1(e)-1(le...)]TJ 0 -13.549 Td[({)-356(M\\363)28(wi\\252am)-356(c)-1(i)1(,)-356(c)-1(o)-355(s)-1(i\\246)-356(sta\\252)-1(o!)-355(Zaraz)-356(p)-28(o)-356(\\261mie)-1(r)1(c)-1(i)-355(roz)-1(wiesili)-356(n)1(a)-356(p\\252o)-28(cie)-356(i)-356(ktosik)]TJ -27.879 -13.55 Td[(w)-334(n)1(o)-28(cy)-333(ukrad)1(\\252.)-333(Nie)-334(b)28(y)1(\\252)-1(o)-333(g\\252o)28(wy)-334(b)1(ac)-1(zy\\242)-334(n)1(a)-334(wsz)-1(y)1(s)-1(tk)28(o.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(w)-1(n)1(e)-1(,)-333(co)-334(t)1(a)-1(k)-333(zaraz)-334(n)1(alaz\\252)-334(si\\246)-334(z\\252o)-28(dziej..)1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(n)1(ib)28(y)-333(j)1(ak?)-334(Ja)-333(wz)-1(i)1(e)-1(n)1(am)-1(,)-333(a)-333(te)-1(r)1(az)-334(cygani\\246,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-397(Cic)28(hota,)-397(k)28(ob)1(iet)28(y!)-397(T)28(ylk)28(o)-397(p)1(rze)-1(z)-397(k\\252\\363tn)1(i,)-397(p)-27(oni)1(e)-1(c)27(h)1(a)-56(j)1(,)-397(M)1(agdu\\261!)-397(K)1(to)-397(uk)1(rad\\252,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(c)28(h)-333(m)-1(i)1(a\\252)-334(b)-27(\\246)-1(d)1(z)-1(ie)-333(na)-333(\\261)-1(mierteln\\241)-333(k)28(osz)-1(u)1(l\\246)-1(.)]TJ 27.879 -13.55 Td[({)-333(Sama)-334(p)1(ierzyna)-333(w)27(a\\273y\\252a)-333(b)-28(ez)-334(ma\\252a)-334(ze)-334(tr)1(z)-1(yd)1(z)-1(i)1(e)-1(\\261c)-1(i)-333(fu)1(n)28(t\\363)28(w.)]TJ 0 -13.549 Td[({)-338(M\\363)28(wi\\246)-338(c)-1(i,)-337(s)-1(tu)1(l)-338(p)28(y)1(s)-1(k!)-337({)-338(w)-1(r)1(z)-1(asn\\241\\252)-338(n)1(a)-338(\\273)-1(on)1(\\246)-339(i)-337(w)-1(ywi\\363)-27(d\\252)-338(Hank)28(\\246)-338(w)-338(p)-27(o)-28(dw)28(\\363rze)-1(,)]TJ -27.879 -13.549 Td[(ni)1(b)28(y)-333(to)-333(la)-334(ob)-27(ejrze)-1(n)1(ia)-333(pr)1(os)-1(i\\241t.)]TJ 27.879 -13.549 Td[(P)28(osz)-1(\\252a)-333(z)-1(a)-333(n)1(im)-1(,)-333(ale)-333(dob)1(rz)-1(e)-333(s)-1(i\\246)-333(m)-1(i)1(a\\252)-1(a)-333(n)1(a)-334(b)1(ac)-1(zno\\261c)-1(i.)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(c)-1(i)1(a\\252e)-1(m)-334(w)28(am)-334(cos)-1(i)1(k)-334(p)-27(oredzi\\242.)]TJ 0 -13.55 Td[(Nasta)27(wi\\252a)-333(cie)-1(k)56(a)28(wie)-334(usz\\363)27(w,)-333(miarku)1(j\\241c)-333(niec)-1(o,)-333(k)28(ole)-333(c)-1(ze)-1(go)-333(kr\\246ci.)]TJ 0 -13.549 Td[({)-293(W)1(ie)-1(cie,)-293(a)-292(to)-293(tr)1(z)-1(eba,)-292(ab)28(y\\261c)-1(i)1(e)-293(jes)-1(zc)-1(ze)-293(pr)1(z)-1(ed)-293(spi)1(s)-1(em)-293(kt\\363r)1(e)-1(go)-293(wiecz)-1(ora)-292(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(d)1(z)-1(il)1(i)-426(d)1(o)-426(mnie)-426(ze)-426(dwie)-426(kro)28(wy)84(.)-426(Macior)1(\\246)-427(mo\\273na)-426(za)28(w)-1(i)1(e)-1(r)1(z)-1(y\\242)-426(stryj)1(e)-1(cznem)27(u,)-425(a)-426(co)]TJ 0 -13.549 Td[(si\\246)-343(jeno)-343(d)1(a,)-343(p)-27(o)-28(c)28(ho)28(w)27(a\\242)-343(u)-342(lu)1(dzi...)-342(Ju\\273)-343(w)28(am)-343(p)-27(o)27(wiem)-343(k)56(a)-56(j)1(...)-342(O)-343(zb)-28(o\\273u)-342(p)-28(o)28(wiec)-1(ie)-343(p)1(rzy)]TJ 0 -13.549 Td[(spisie,)-354(\\273e)-354(da)28(wno)-354(p)1(rze)-1(d)1(ane)-354(Jan)1(klo)28(wi,)-354(on)-353(p)1(rzyt)28(w)-1(i)1(e)-1(r)1(dzi)-354(o)-28(c)28(hotn)1(ie)-1(,)-353(da)-353(m)27(u)-353(si\\246)-354(z)-1(a)-353(to)]TJ 0 -13.55 Td[(jak)1(i)-396(k)28(orcz)-1(yk.)-396(\\231r)1(e)-1(b)1(k)28(\\246)-397(w)28(e)-1(\\271m)-1(i)1(e)-397(m\\252)-1(y)1(narz,)-396(p)-27(o)-28(dp)1(as)-1(i)1(e)-397(s)-1(i)1(\\246)-397(na)-396(j)1(e)-1(go)-396(pa\\261ni)1(k)55(ac)28(h.)-396(A)-396(co)-397(z)]TJ 0 -13.549 Td[(p)-27(orz\\241dk)28(\\363)28(w)-453(m)-1(o\\273na)-453(b)28(y)-452(s)-1(c)28(ho)28(w)27(a\\242)-453(w)-453(do\\252ac)27(h)1(,)-453(to)-453(p)-27(o)-453(\\273ytac)27(h)1(.)-453(Ze)-454(szc)-1(ze)-1(r)1(e)-1(j)-452(przyj)1(a\\271)-1(n)1(i)]TJ 0 -13.549 Td[(w)28(am)-342(rad)1(z)-1(\\246!)-341(Wsz)-1(y)1(s)-1(tk)1(ie)-342(tak)-341(r)1(obi\\241,)-340(kt\\363re)-341(jeno)-341(rozum)-341(ma)-56(j)1(\\241.)-341(Wy\\261c)-1(ie)-341(har)1(o)27(w)28(ali)-341(k)1(ie)-1(j)]TJ 0 -13.549 Td[(w)28(\\363\\252)-1(,)-336(to)-337(spr)1(a)27(wiedl)1(iwie)-337(nale\\273y)-337(si\\246)-337(w)27(ama)-337(wi\\246c)-1(ej.)-336(Mn)1(ie)-337(ta)-337(z)-337(tego)-337(dacie)-337(co)-337(ni)1(e)-1(b)1(\\241d\\271,)]TJ 0 -13.549 Td[(jak)56(\\241\\261)-422(kr)1(usz)-1(yn)1(\\246)-1(.)-421(I)-422(n)1(ie)-422(b)-27(o)-56(ja)-55(jcie)-422(si\\246)-422(nicz)-1(ego,)-421(p)-28(omaga\\252)-422(w)28(am)-422(b)-28(\\246d\\246)-422(w)28(e)-422(ws)-1(zys)-1(t)1(kim.)]TJ 0 -13.55 Td[(A)-397(ju)1(\\273)-398(w)-398(t)28(ym)-397(m)-1(o)-55(ja)-397(g\\252o)27(w)28(a,)-397(b)28(y\\261c)-1(ie)-397(os)-1(tal)1(i)-398(p)1(rzy)-397(grun)1(c)-1(ie.)-397(Jeno)-397(m)-1(n)1(ie)-398(p)-27(os)-1(\\252u)1(c)27(ha)-55(jcie,)]TJ 0 -13.549 Td[(ni)1(kto)-282(jes)-1(zc)-1(ze)-283(n)1(ie)-283(d)1(o\\252)-1(o\\273y\\252)-282(do)-282(mo)-56(j)1(e)-1(j)-282(r)1(ady)84(...)-282(Sam)-282(dziedzic)-283(a)-282(rad)-282(me)-283(s\\252uc)27(h)1(a.)-282(No,)-282(c)-1(\\363\\273)]TJ 0 -13.549 Td[(p)-27(o)27(wiecie)-1(?...)]TJ 27.879 -13.549 Td[({)-237(A)-237(jeno)-237(to,)-237(co)-238(sw)28(o)-56(jego)-237(nie)-237(p)-28(op)1(usz)-1(cz\\246)-1(,)-237(ale)-237(c)-1(u)1(dze)-1(go)-237(ni)1(e)-1(\\252ak)28(omam)-1(!)-237({)-237(o)-28(d)1(rze)-1(k)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(z)-415(w)27(oln)1(a,)-415(wp)1(ie)-1(r)1(a)-56(j)1(\\241c)-416(w)-415(n)1(ie)-1(go)-414(w)-1(zgard)1(liw)28(e)-416(o)-27(c)-1(zy)83(.)-414(Zakr\\246c)-1(i\\252)-414(s)-1(i\\246,)-415(j)1(akb)28(y)-414(kijem)-415(dosta\\252)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(cie)-1(mi\\246,)-333(p)-28(ol)1(ata\\252)-334(p)-27(o)-333(niej)-333(\\261)-1(l)1(e)-1(p)1(iami)-334(i)-333(sykn)1(\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(Ju\\273)-334(b)29(ym)-334(n)1(a)27(w)28(et)-334(n)1(ie)-334(ws)-1(p)-27(omnia\\252,)-333(\\273e)-1(\\261c)-1(i)1(e)-334(ni)1(e)-1(zgorz)-1(ej)-333(p)-27(o)-28(debr)1(ali)-333(o)-56(j)1(c)-1(a.)1(..)]TJ 0 -13.549 Td[({)-333(A)-334(wsp)-28(omin)1(a)-56(j)1(c)-1(ie!)-333(p)-28(o)28(wiem)-334(An)28(tk)28(o)28(wi,)-333(ni)1(e)-1(c)28(h)-333(z)-334(w)27(ami)-333(p)-27(ogada)-333(o)-334(tej)-333(rad)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Ledwie)-238(s)-1(i\\246)-238(ws)-1(tr)1(z)-1(yma\\252)-238(o)-28(d)-237(kl\\241t)28(w,)-238(p)1(lun)1(\\241\\252)-238(jeno,)-238(a)-238(o)-27(dc)27(h)1(o)-28(dz\\241c)-238(pr\\246dk)28(o,)-237(krzykn)1(\\241\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(wyw)28(arte)-334(okn)1(o)-333(do)-333(iz)-1(b)29(y:)]TJ 27.879 -13.549 Td[({)-279(Magd)1(a,)-279(miej)-279(ta)-278(ok)28(o)-279(na)-279(wsz)-1(ystk)28(o,)-279(b)29(yc)27(h)-278(z)-1(n)1(o)27(wu)-278(c)-1(ze)-1(go)-278(nie)-279(wyni)1(e)-1(\\261li)-279(z\\252o)-28(dzie-)]TJ -27.879 -13.55 Td[(je.)]TJ 27.879 -13.549 Td[(Hank)56(a)-376(p)1(atrz)-1(y)1(\\252a)-377(n)1(a)-376(niego)-376(z)-1(e)-376(s)-1(zyd)1(liwym)-376(prze)-1(\\261mie)-1(c)28(hem)-1(.)-375(P)28(ole)-1(cia\\252)-376(kiej)-376(op)1(a-)]TJ\nET\nendstream\nendobj\n1984 0 obj <<\n/Type /Page\n/Contents 1985 0 R\n/Resources 1983 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1983 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1988 0 obj <<\n/Length 8075      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(622)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rzon)28(y)-344(i)-344(n)1(atkn)1(\\241)27(wsz)-1(y)-344(si\\246)-344(na)-344(w)27(\\363)-55(jto)28(w)28(\\241,)-344(w)27(c)28(ho)-28(d)1(z)-1(\\241c\\241)-344(m)-1(i)1(\\246)-1(d)1(z)-1(y)-344(op)1(\\252otki,)-344(d)1(\\252ugo)-344(jej)-344(cos)-1(i)1(k)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(i)1(\\252)-334(wytr)1(z)-1(\\241c)27(h)1(a)-56(j)1(\\241c)-334(pi)1(\\246)-1(\\261c)-1(iami.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a)-333(przyn)1(ie)-1(s\\252a)-334(j)1(aki\\261)-334(u)1(rz\\246)-1(d)1(o)28(w)-1(y)-333(p)1(apier.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(l)1(a)-334(w)28(as)-1(,)-333(Han)1(k)56(a,)-334(st\\363)-55(jk)56(a)-334(p)1(rzyni)1(\\363s)-1(\\252)-333(z)-334(k)56(ance)-1(lar)1(ii.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-334(o)-334(An)29(tku!)-333({)-333(sz)-1(epn\\246\\252a)-333(z)-334(trw)28(og\\241,)-333(bior)1(\\241c)-334(pap)1(ier)-333(prze)-1(z)-333(z)-1(ap)1(as)-1(k)28(\\246.)]TJ 0 -13.55 Td[({)-361(P)28(on)1(o)-362(o)-361(G)1(rz)-1(eli.)-361(M)1(o)-56(j)1(e)-1(go)-361(n)1(ie)-362(ma,)-361(p)-27(o)-56(jec)27(h)1(a\\252)-362(d)1(o)-361(p)-28(o)28(wiatu)1(,)-361(a)-361(s)-1(t\\363)-55(jk)56(a)-361(jeno)-361(p)-27(o-)]TJ -27.879 -13.549 Td[(wiada\\252,)-333(\\273e)-334(tam)-334(stoi)-333(nap)1(isane,)-334(j)1(ak)28(ob)28(y)-333(Gr)1(z)-1(ela)-333(p)-28(omar\\252)-333(c)-1(zy)-333(c)-1(o\\261...)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zus)-333(Maria!)-333({)-333(kr)1(z)-1(ykn)1(\\246)-1(\\252a)-333(J\\363zk)55(a.)]TJ 0 -13.549 Td[(Magd)1(a)-334(t)1(e)-1(\\273)-334(si\\246)-334(ze)-1(r)1(w)27(a\\252a)-333(na)-333(nogi)1(.)]TJ 0 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-334(p)1(atrzyli)-333(na)-333(ten)-333(papi)1(e)-1(r)-333(ze)-334(z)-1(groz\\241)-333(i)-334(strac)28(hem)-1(,)-333(obr)1(ac)-1(a)-55(j\\241c)-334(n)1(im)-334(b)-27(e)-1(z-)]TJ -27.879 -13.549 Td[(rad)1(nie)-333(w)-334(roztrz\\246s)-1(ion)28(y)1(c)27(h)-333(r\\246k)56(ac)27(h)1(.)]TJ 27.879 -13.55 Td[({)-333(Mo\\273e)-334(t)28(y)83(,)-333(Jagu)1(\\261)-1(,)-333(p)-27(oredzis)-1(z)-333(roz)-1(ebr)1(a\\242)-334({)-333(prosi\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[(St)1(an\\246\\252)-1(y)-475(n)1(ad)-475(ni\\241)-475(p)-27(e)-1(\\252ne)-475(niep)-28(ok)28(o)-55(ju)-475(i)-475(tr)1(w)27(ogi,)-475(ale)-475(Jagna)-475(p)-28(o)-475(d\\252u)1(gie)-1(j)-475(c)28(h)28(wili)]TJ -27.879 -13.549 Td[(sylabi)1(z)-1(o)28(w)28(ania)-333(o)-28(d)1(par\\252a)-333(z)-1(n)1(iec)27(h\\246c)-1(on)1(a:)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(k)1(ie)-1(j)-333(t)1(o)-334(n)1(ie)-334(p)-27(o)-334(n)1(as)-1(ze)-1(m)28(u)-333(pi)1(s)-1(an)1(e)-334(i)-333(nie)-333(p)-28(or)1(adz\\246)-334(wym)-1(i)1(ark)28(o)28(w)27(a\\242.)]TJ 0 -13.549 Td[({)-246(Nie)-247(p)1(rzy)-247(n)1(iej)-246(pisane!)-246(Za)-246(to)-247(co)-246(insz)-1(ego)-246(p)-28(otr)1(a\\014)-246(na)-55(jlepi)1(e)-1(j)-246({)-246(sykn\\246\\252a)-246(w)27(\\363)-55(jto)28(w)27(a)]TJ -27.879 -13.55 Td[(wyzyw)27(a)-55(j\\241co.)]TJ 27.879 -13.549 Td[({)-249(Id\\271cie)-249(no)-249(sw)27(o)-55(j\\241)-249(stron)1(\\241)-249(i)-249(lu)1(dzi)-249(n)1(ie)-249(z)-1(acz)-1(epia)-55(jcie,)-249(k)56(a)-56(j)-248(w)27(as)-249(ob)-27(c)27(ho)-27(dz\\241)-249(z)-250(d)1(alek)55(a)]TJ -27.879 -13.549 Td[(jak)-333(to)-333(\\261m)-1(i)1(e)-1(rd)1(z)-1(\\241ce)-334({)-333(w)27(ar)1(kn\\246\\252a)-334(stara.)]TJ 27.879 -13.549 Td[(Ale)-334(w)28(\\363)-56(j)1(to)28(w)27(a,)-333(j)1(akb)28(y)-333(rad)1(a)-334(z)-333(ok)55(azji)1(,)-334(ciepn)1(\\246)-1(\\252a)-333(j\\241)-333(na)-333(o)-28(d)1(le)-1(w:)]TJ 0 -13.549 Td[({)-438(Przyk)56(arca\\242)-439(dr)1(ugic)27(h)-438(t)1(o)-439(p)-27(oredzic)-1(i)1(e)-1(,)-438(a)-439(cz)-1(em)27(u)-438(to)-438(ni)1(e)-439(w)-1(zbr)1(aniacie)-439(c\\363rusi,)]TJ -27.879 -13.55 Td[(b)28(yc)28(h)-333(c)-1(u)1(dzyc)27(h)-332(c)27(h\\252op)-27(\\363)28(w)-334(ni)1(e)-334(z)-1(w)28(o)-28(d)1(z)-1(i\\252a,)-333(co!)]TJ 27.879 -13.549 Td[({)-360(Da)-55(jcie)-360(no)-359(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-359(Pietro)28(w)27(a!)-359({)-360(wtr)1(\\241c)-1(i\\252a)-359(s)-1(i\\246)-360(Han)1(k)56(a)-360(miarku)1(j\\241c)-360(j)1(u\\273,)-360(n)1(a)-360(c)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-334(tu)1(ta)-56(j)-333(zanosi,)-333(ale)-334(w)28(\\363)-56(j)1(to)28(w)27(\\241)-333(p)-28(on)1(os)-1(i)1(\\252o)-334(coraz)-334(b)1(arze)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-359(Cho)-28(\\242)-359(raz)-359(m)27(usz\\246)-360(se)-360(da\\242)-359(folg\\246!)-359(T)28(ylam)-359(s)-1(i\\246)-359(pr)1(z)-1(ez)-360(n)1(i\\241)-359(natr)1(u\\252a,)-359(t)28(ylam)-359(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(cie)-1(r)1(pia\\252a,)-333(\\273e)-334(s)-1(w)28(o)-56(j)1(e)-1(j)-333(k)1(rzywdy)-333(ni)1(e)-334(dar)1(uj\\246,)-333(p)-27(\\363kim)-334(\\273yw)28(a!)]TJ 27.879 -13.55 Td[({)-277(A)-278(p)28(y)1(s)-1(ku)1(j!)-277(Pi)1(e)-1(s)-278(cie)-278(ta)-277(pr)1(z)-1(es)-1(zc)-1(ze)-1(k)56(a!)-277({)-278(mru)1(kn)1(\\246)-1(\\252a)-278(stara)-277(dosy\\242)-278(sp)-27(o)-1(k)28(o)-55(jn)1(ie,)-278(za\\261)]TJ -27.879 -13.549 Td[(Jagu)1(\\261)-358(rozc)-1(ze)-1(r)1(wie)-1(n)1(i\\252a)-357(s)-1(i\\246)-357(kiej)-357(bu)1(rak)-357(i)-357(c)28(ho)-28(cia\\273)-358(p)1(ali\\252)-357(j\\241)-357(wst)27(y)1(d,)-357(ale)-357(i)-357(jak)56(a\\261)-358(m\\261c)-1(iw)28(a)]TJ 0 -13.549 Td[(za)27(wzi\\246)-1(t)1(o\\261)-1(\\242)-497(nabi)1(e)-1(ra\\252a)-497(w)-497(s)-1(ercu,)-497(\\273e)-498(coraz)-497(bard)1(z)-1(i)1(e)-1(j)-497(p)-27(o)-28(d)1(nosi\\252a)-497(g\\252o)27(w)28(\\246)-498(i)-497(j)1(akb)28(y)-497(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ek)28(\\363r,)-385(z)-387(r)1(oz)-1(m)28(ys\\252)-1(em)-386(wpiera\\252a)-386(w)-386(n)1(i\\241)-386(sz)-1(yd)1(liw)28(e)-386(o)-28(c)-1(zy)84(,)-386(a)-386(j)1(ud)1(z)-1(\\241cy)-386(p)1(rz)-1(e\\261m)-1(iec)27(h)-385(wi\\252)]TJ 0 -13.549 Td[(si\\246)-334(na)-333(w)28(argac)27(h)1(.)]TJ 27.879 -13.55 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a)-252(wyw)28(ar\\252a)-251(ju)1(\\273)-252(g\\246)-1(b)-27(\\246)-252(ki)1(e)-1(j)-251(wr\\363tn)1(i\\246)-252(i)-251(z)-1(j)1(\\241trzona)-251(do)-251(\\273)-1(y)1(w)27(ego)-252(j)1(e)-1(j)-251(\\261lepiami,)]TJ -27.879 -13.549 Td[(p)-27(om)-1(sto)28(w)27(a\\252a)-333(wyw)27(o)-27(dz\\241c)-334(z)-1(a)-55(jad)1(le)-334(j)1(e)-1(j)-333(p)1(rze)-1(win)28(y)84(.)]TJ 27.879 -13.549 Td[({)-319(Pysku)1(jes)-1(z)-319(b)-28(ele)-320(co;)-319(b)-27(o\\261)-320(sie)-320(op)1(i\\252a)-319(z)-1(\\252o\\261c)-1(i\\241!)-319({)-319(p)1(rze)-1(rw)28(a\\252a)-319(jej)-319(s)-1(t)1(ara)-319({)-319(ale)-320(t)28(w)28(\\363)-56(j)]TJ -27.879 -13.549 Td[(ci\\246)-1(\\273k)28(o)-333(o)-28(dp)-27(o)28(w)-1(i)1(e)-334(pr)1(z)-1(ed)-333(B)-1(ogi)1(e)-1(m)-333(z)-1(a)-333(Jagusin)1(e)-334(niesz)-1(cz)-1(\\246\\261)-1(cie.)]TJ 27.879 -13.549 Td[({)-271(J)1(u\\261c)-1(i,)-270(o)-28(d)1(p)-28(o)28(wie,)-271(b)-27(o)-271(an)1(o)-271(zwi\\363)-28(d\\252)-270(niewino)28(w)28(ate)-271(dziec)-1(i\\241tk)28(o!)-270(Ju)1(\\261)-1(ci,)-270(dzie)-1(ci\\241tk)28(o,)]TJ -27.879 -13.549 Td[(co)-334(z)-334(k)56(a\\273dym)-333(rade)-333(s)-1(zuk)56(a)-333(krzak)28(\\363)28(w)-1(!)]TJ 27.879 -13.55 Td[({)-337(Za)27(wrzyj)1(c)-1(ie)-337(g\\246)-1(b)-27(\\246,)-338(b)-27(o)-337(c)27(h)1(o)-28(c)-1(i)1(e)-1(m)-338(\\261lepa,)-337(ale)-337(jes)-1(zc)-1(ze)-1(c)28(h)-337(z)-1(macam)-338(dr)1(og\\246)-338(d)1(o)-338(w)28(a-)]TJ -27.879 -13.549 Td[(sz)-1(yc)28(h)-333(kud)1(\\252\\363)28(w)-334({)-333(groz)-1(i)1(\\252a)-334(zac)-1(i)1(s)-1(k)56(a)-56(j)1(\\241c)-334(kij)-332(w)-334(gar\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Sp)1(robu)1(jcie!)-334(Tkn)1(ij)-333(me)-334(jeno,)-333(tk)1(nij)1(!)-333({)-334(wrzes)-1(zc)-1(za\\252a)-334(wyzyw)28(a)-56(j\\241co.)]TJ 0 -13.549 Td[({)-312(Hale,)-312(spas\\252a)-312(s)-1(i)1(\\246)-313(n)1(a)-312(c)-1(u)1(dze)-1(j)-311(krzywdzie)-312(i)-312(b)-27(\\246)-1(d)1(z)-1(i)1(e)-313(si\\246)-312(te)-1(r)1(a)-312(c)-1(ze)-1(p)1(ia\\252a)-312(lu)1(dzi)-312(kiej)]TJ -27.879 -13.549 Td[(rze)-1(p)-332(psie)-1(go)-333(ogona.)]TJ 27.879 -13.55 Td[({)-333(W)-333(c)-1(zym)-334(ci\\246)-334(to)-333(uk)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(\\252am)-1(,)-333(w)-333(c)-1(zym?)]TJ 0 -13.549 Td[({)-333(Jak)-333(t)28(w)27(o)-55(jego)-334(wsadz\\241)-334(d)1(o)-334(kr)1(e)-1(min)1(a\\252u,)-333(to)-333(s)-1(i\\246)-333(do)28(wie)-1(sz!)]TJ\nET\nendstream\nendobj\n1987 0 obj <<\n/Type /Page\n/Contents 1988 0 R\n/Resources 1986 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1986 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1991 0 obj <<\n/Length 8883      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(623)]TJ -330.353 -35.866 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a)-278(s)-1(k)28(o)-28(cz)-1(y)1(\\252a)-279(z)-278(pi\\246\\261)-1(ciami,)-278(s)-1(zcz)-1(\\246\\261)-1(ciem)-1(,)-278(co)-279(Han)1(k)56(a)-279(zd\\241\\273y\\252a)-278(j\\241)-278(o)-28(dci\\241)-28(gn)1(\\241\\242)]TJ -27.879 -13.549 Td[(i)-333(os)-1(t)1(ro)-333(p)-28(o)28(ws)-1(ta\\252a)-333(na)-333(obi)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-333(Lob)-28(oga,)-333(k)28(ob)1(ie)-1(t)28(y)84(,)-333(a)-334(to)-27(\\242)-334(k)56(arcz)-1(m\\246)-334(rob)1(icie)-334(z)-334(mo)-56(j)1(e)-1(j)-333(c)28(ha\\252up)29(y)83(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(m)-1(il)1(k\\252y)-385(n)1(a)-385(t)1(o)-385(o)-28(cz)-1(y)1(m)-1(gn)1(ienie,)-385(sapi)1(\\241c)-385(jeno)-384(a)-385(d)1(ysz)-1(\\241c,)-385(Domin)1(ik)28(o)28(w)27(ej)-384(ja\\273e)]TJ -27.879 -13.549 Td[(\\252z)-1(y)-333(p)-27(o)-28(ciek\\252y)-333(s)-1(p)-27(o)-28(d)-333(sz)-1(mat,)-333(j)1(akimi)-333(m)-1(ia\\252a)-333(p)1(rz)-1(ewi\\241zane)-334(o)-28(czy)83(,)-333(i)-333(la\\252y)-333(si\\246)-334(ciur)1(kiem)-334(p)-27(o)]TJ 0 -13.55 Td[(wyn\\246dzni)1(a\\252)-1(ej)-276(t)28(w)28(arzy)83(,)-276(j)1(e)-1(n)1(o)-276(c)-1(o)-276(pi)1(e)-1(r)1(w)-1(sz)-1(a)-276(si\\246)-276(opami\\246)-1(t)1(a\\252)-1(a)-276(i)-276(p)1(rzys)-1(i)1(ad\\252sz)-1(y)-276(w)28(e)-1(stc)27(h)1(n\\246\\252a,)]TJ 0 -13.549 Td[(rozw)27(o)-27(dz\\241c)-334(r\\246c)-1(e:)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu,)-333(b)1(\\241d\\271)-334(mi\\252o\\261c)-1(iw)-333(m)-1(n)1(ie)-334(gr)1(z)-1(es)-1(znej!)]TJ 0 -13.549 Td[(W)84(\\363)-56(jt)1(o)27(w)28(a)-418(wyl)1(e)-1(cia\\252a)-418(z)-417(c)27(ha\\252u)1(p)28(y)-417(kiej)-417(os)-1(zala\\252a,)-417(ale)-418(za)27(wr)1(\\363)-28(c)-1(i)1(w)-1(sz)-1(y)-417(j)1(u\\273)-418(z)-418(d)1(rogi)]TJ -27.879 -13.549 Td[(wrazi\\252a)-334(g\\252o)28(w)28(\\246)-334(pr)1(z)-1(ez)-334(okn)1(o)-334(i)-333(zac)-1(z\\246)-1(\\252a)-333(w)27(o\\252a\\242)-333(do)-333(Hanki:)]TJ 27.879 -13.549 Td[({)-390(M\\363)28(w)-1(i)1(\\246)-391(c)-1(i)1(,)-391(wyp)-27(\\246d\\271)-391(z)-391(c)28(ha\\252up)29(y)-391(te)-390(lakud)1(re!)-390(Wygo\\253)-390(j\\241,)-390(p)-27(\\363ki)-390(jes)-1(zcz)-1(e)-391(p)-27(ora,)]TJ -27.879 -13.55 Td[(ab)28(y\\261)-395(p)-27(ote)-1(m)-395(n)1(ie)-395(p)-28(o\\273a\\252o)27(w)28(a\\252a!)-395(An)1(i)-395(go)-28(d)1(z)-1(in)29(y)-395(ni)1(e)-396(osta)28(wia)-56(j)-394(p)-28(o)-27(d)-395(sw)27(oi)1(m)-396(d)1(ac)27(h)1(e)-1(m,)-395(b)-27(o)]TJ 0 -13.549 Td[(ci\\246)-383(st\\241d)-382(wygryzie)-383(ta)-382(zaraz)-1(a)-382(p)1(ie)-1(k)1(ie)-1(l)1(na!)-382(Radz\\246)-383(ci,)-382(bro\\253)-381(s)-1(i\\246,)-382(Hank)56(a!)-382(Pr)1(z)-1(ez)-383(lit)1(o\\261)-1(ci)]TJ 0 -13.549 Td[(b\\241d)1(\\271)-279(la)-279(n)1(ie)-1(j)-278(i)-278(przez)-280(mi\\252osierdzia!)-278(Ona)-278(jeno)-279(cz)-1(ek)56(a)-279(na)-278(t)28(w)27(o)-55(jego,)-279(ob)1(ac)-1(zys)-1(z,)-279(co)-279(ci)-279(on)1(a)]TJ 0 -13.549 Td[(wystroi!)-383({)-384(pr)1(z)-1(ec)27(h)28(y)1(li\\252a)-384(si\\246)-384(barzej)-384(n)1(a)-384(izb)-28(\\246)-384(i)-383(gro\\273\\241c)-385(p)1(i\\246\\261)-1(ciam)-1(i)-383(Jagu)1(s)-1(i)-383(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252a)]TJ 0 -13.549 Td[(ze)-334(ws)-1(zys)-1(t)1(kie)-1(j)-332(z)-1(\\252o\\261c)-1(i:)]TJ 27.879 -13.55 Td[({)-248(P)29(o)-28(c)-1(ze)-1(k)56(a)-55(j,)-247(t)27(y)-247(pi)1(e)-1(ki)1(e)-1(ln)1(ico)-248(jedn)1(a,)-248(p)-27(o)-28(cz)-1(ek)56(a)-56(j)1(!)-248(Nie)-248(zam)-1(r)1(\\246)-248(s)-1(p)-27(ok)28(o)-56(j)1(nie,)-248(d)1(o)-248(\\261wi\\246)-1(tej)]TJ -27.879 -13.549 Td[(sp)-28(o)28(wiedzi)-301(n)1(ie)-301(p)-27(\\363)-56(j)1(d\\246,)-300(p)-28(\\363k)1(i)-301(si\\246)-301(n)1(ie)-301(d)1(o)-28(cz)-1(ek)55(am,)-300(\\273e)-301(c)-1(i)1(\\246)-301(z)-1(e)-300(w)-1(si)-300(kij)1(am)-1(i)-300(wy\\261w)-1(i)1(e)-1(c\\241!)-300(A)-301(d)1(o)]TJ 0 -13.549 Td[(so\\252)-1(d)1(at\\363)28(w,)-334(suk)28(o)-333(jedn)1(a!)-333(T)83(am)-334(t)28(w)28(o)-56(j)1(e)-334(m)-1(i)1(e)-1(j)1(s)-1(ce)-1(,)-333(\\261w)-1(i)1(\\253ski)-333(p)-28(omio)-27(c)-1(ie,)-333(tam!)]TJ 27.879 -13.549 Td[(I)-333(p)-28(olecia\\252a,)-333(w)-334(izbie)-333(z)-1(rob)1(i\\252o)-333(s)-1(i\\246)-333(c)-1(ic)28(ho)-333(jak)1(b)28(y)-333(w)-334(grob)1(ie.)]TJ 0 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-351(j)1(a\\273)-1(e)-351(s)-1(i)1(\\246)-352(tr)1(z)-1(\\246s)-1(\\252a)-350(o)-28(d)-351(ta)-55(jon)1(e)-1(go)-350(p\\252ac)-1(zu,)-350(Magd)1(a)-351(h)28(u\\261ta\\252a)-351(d)1(z)-1(iec)27(k)28(o,)]TJ -27.879 -13.55 Td[(Hank)56(a)-284(z)-1(ap)1(atrzy\\252a)-284(s)-1(i\\246)-284(w)-285(k)28(omin)-284(s)-1(r)1(o)-28(dze)-285(zam)-1(edy)1(to)28(w)27(an)1(a,)-285(za\\261)-285(Jagu)1(\\261)-1(,)-284(c)27(h)1(o)-28(cia\\273)-285(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(mia\\252a)-359(w)-359(t)28(w)28(arz)-1(y)-358(har)1(do\\261\\242)-360(i)-358(z\\252)-1(y)-358(pr)1(z)-1(e\\261)-1(miec)27(h)-358(na)-358(w)27(argac)28(h,)-358(ale)-359(p)-28(ob)1(iela\\252a)-359(na)-358(p\\252\\363tn)1(o,)]TJ 0 -13.549 Td[(b)-27(o)-279(j\\241)-279(te)-279(ostatnie)-279(s\\252o)27(w)28(a)-279(ugr)1(yz\\252)-1(y)-278(w)-279(s)-1(amo)-279(s)-1(erce)-1(;)-278(p)-28(o)-27(c)-1(zu\\252a,)-279(j)1(akb)28(y)-278(j\\241)-279(n)1(araz)-279(s)-1(to)-279(n)1(o\\273)-1(\\363)28(w)]TJ 0 -13.549 Td[(pr)1(z)-1(ebi)1(\\252)-1(o)-294(i)-295(wsz)-1(ystki)1(e)-296(r)1(an)28(y)-294(s)-1(p)1(\\252yn\\246\\252y)-295(kr)1(wi\\241)-295(se)-1(r)1(dec)-1(zn\\241)-295(i)-294(ws)-1(zystk)56(\\241)-295(mo)-28(c)-1(\\241,)-294(osta)27(wia)-55(j\\241c)]TJ 0 -13.549 Td[(jeno)-299(ni)1(e)-1(op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)29(y)-300(\\273al,)-299(jak)1(i\\261)-300(zgo\\252)-1(a)-299(ni)1(e)-1(cz)-1(\\252o)28(wiek)28(o)27(wy)-299(\\273)-1(al)1(,)-299(\\273)-1(e)-300(c)28(hcia\\252a)-300(b)1(i\\242)-300(g\\252o)28(w)27(\\241)-299(o)]TJ 0 -13.55 Td[(\\261c)-1(ian)1(\\246)-331(i)-330(krzyc)-1(ze\\242)-331(w)-1(n)1(ieb)-28(og\\252osy)83(,)-330(jeno)-330(co)-331(si\\246)-331(pr)1(z)-1(em)-1(og\\252a)-330(i)-330(s)-1(zarpi)1(\\241c)-331(m)-1(atk)28(\\246)-330(z)-1(a)-330(r\\246k)55(a)28(w)]TJ 0 -13.549 Td[(zas)-1(ze)-1(p)1(ta\\252a)-334(gor)1(\\241c)-1(zk)28(o)27(w)28(o:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-1(m)28(y)-334(st\\241d,)-333(matk)28(o!)-333(Cho)-28(d)1(\\271)-1(m)28(y)-333(pr)1(\\246)-1(d)1(k)28(o!)-334(Uciek)55(a)-55(jm)28(y!)]TJ 0 -13.549 Td[({)-371(A)-372(d)1(obr)1(z)-1(e!)-371(c)-1(a\\252ki)1(e)-1(m)-372(j)1(u\\273)-371(os)-1(\\252ab\\252am,)-371(ale)-372(t)28(y)-371(m)28(usis)-1(z)-371(tu)-371(wr\\363)-28(ci\\242)-372(i)-371(p)1(rzy)-372(sw)28(oim)]TJ -27.879 -13.549 Td[(w)28(aro)28(w)27(a\\242)-334(d)1(o)-333(o)-1(statk)56(a.)]TJ 27.879 -13.55 Td[({)-312(Nie)-312(ostan\\246)-312(tuta)-55(j.)-311(T)83(ak)-312(mi)-312(to)-312(wsz)-1(ystk)28(o)-312(ob)1(m)-1(ierz\\252o,)-312(\\273e)-313(j)1(u\\273)-312(d\\252u)1(\\273)-1(ej)-312(n)1(ie)-312(\\261)-1(cie)-1(r)1(-)]TJ -27.879 -13.549 Td[(pi)1(\\246)-1(!)-333(Bo)-28(da)-55(jem)-334(b)28(y)1(\\252)-1(a)-333(n)1(ogi)-334(p)-27(o\\252ama\\252a,)-334(n)1(im)-334(w)28(e)-1(sz\\252)-1(am)-333(tuta)-55(j!)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(c)-1(i)-333(to)-333(\\271)-1(l)1(e)-334(z)-334(nami)-333(b)28(y\\252o,)-333(co?)-334({)-333(s)-1(zepn\\246\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(Gorze)-1(j)-333(n)1(i\\271li)-333(te)-1(m)28(u)-333(psu)-333(n)1(a)-334(\\252a\\253cuc)28(h)28(u,)-333(\\273e)-334(i)-333(w)-334(p)1(iekle)-334(m)28(usi)-333(b)28(y\\242)-334(lepi)1(e)-1(j)1(.)]TJ 0 -13.549 Td[({)-408(Dz)-1(i)1(w)-1(n)1(e)-1(,)-408(co\\261)-409(wytr)1(z)-1(yma\\252a)-408(tak)-408(d\\252u)1(go,)-408(prze)-1(ciek)-408(c)-1(i)1(\\246)-409(ni)1(e)-409(pr)1(z)-1(ywi\\241zyw)28(ali)-408(z)-1(a)]TJ -27.879 -13.549 Td[(ku)1(las)-1(y)84(.)-344(Mog\\252a\\261)-345(se)-345(i\\261\\242)-1(!)-344(Nie)-345(b)-27(\\363)-55(j)-344(s)-1(i\\246,)-344(z)-1(a)-344(nogi)-344(ci\\246)-345(n)1(ie)-345(u\\252ap)1(i\\246)-345(i)-344(pr)1(os)-1(i\\252a)-344(ni)1(e)-345(b)-28(\\246d\\246,)-344(b)28(y\\261)]TJ 0 -13.55 Td[(osta\\252a!...)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(\\363)-56(j)1(d\\246)-333(i)-334(n)1(iec)27(h)-333(w)28(as)-334(ta)-333(z)-1(araza)-333(w)-1(y)1(traci,)-333(kiej\\261ta)-334(t)1(akie!)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)-27(om)-1(stu)1(j,)-333(b)28(ym)-333(c)-1(i)-333(sw)27(oic)28(h)-333(krzywd)-333(ni)1(e)-334(c)-1(i)1(e)-1(p)1(n\\246\\252)-1(a)-333(w)28(e)-334(\\261)-1(l)1(e)-1(p)1(ie)-1(!)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(ju)1(\\273)-334(ws)-1(zystkie)-334(p)1(rze)-1(ciwk)28(o)-333(m)-1(n)1(ie)-1(,)-333(ca\\252a)-334(wie\\261,)-334(wsz)-1(ystki)1(e)-1(!.)1(.)]TJ 0 -13.549 Td[({)-333(\\233yj)-333(p)-27(o)-28(c)-1(zc)-1(i)1(w)-1(i)1(e)-1(,)-333(a)-333(nik)1(to)-334(ci)-333(nie)-333(rzuci)-334(i)-333(marn)1(e)-1(go)-333(s)-1(\\252o)28(w)28(a!)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-55(j,)-333(Jagu)1(\\261)-1(,)-333(d)1(y\\242)-334(Hank)56(a)-333(c)-1(i)-333(n)1(ie)-334(p)1(rze)-1(ciwna.)-333(Cic)27(h)1(o)-56(j)1(!)]TJ 0 -13.549 Td[({)-374(A)-374(ni)1(e)-1(c)28(h)28(ta)-374(i)-374(on)1(a)-374(p)28(yskuj)1(e)-1(!)-374(A)-374(n)1(iec)27(h)28(ta!)-373(Mam)-374(gdzie)-1(\\261)-374(te)-375(szc)-1(ze)-1(k)56(ani)1(a.)-374(C\\363\\273)-1(em)]TJ\nET\nendstream\nendobj\n1990 0 obj <<\n/Type /Page\n/Contents 1991 0 R\n/Resources 1989 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1989 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1994 0 obj <<\n/Length 9762      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(624)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(to)-333(takiego)-333(z)-1(rob)1(i\\252a?)-334(Uk)1(rad\\252am?)-334(Zab)1(i\\252am)-334(k)28(ogo,)-333(c)-1(o?)]TJ 27.879 -13.549 Td[({)-315(Masz)-316(to)-315(jes)-1(zc)-1(ze)-316(\\261m)-1(ia\\252o\\261\\242)-316(p)28(y)1(ta\\242)-1(,)-315(co?)-316({)-315(wyrze)-1(k\\252a)-315(zdumion)1(a)-316(Han)1(k)56(a)-316(sta)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(ni)1(\\241.)-333({)-334(Nie)-333(c)-1(i\\241)-27(gnij)-333(mni)1(e)-334(z)-1(a)-333(j)1(\\246)-1(zyk,)-333(b)28(ym)-333(c)-1(i)-333(cz)-1(ego)-334(n)1(ie)-334(r)1(z)-1(ek\\252a!)]TJ 27.879 -13.549 Td[({)-387(A)-388(m\\363)28(w)27(cie!)-387(A)-388(p)29(ys)-1(k)1(uj)1(c)-1(ie!)-387(z)-1(ar)1(\\363)27(wn)1(o)-388(mi)-387(jedn)1(o!)-387({)-388(wr)1(z)-1(es)-1(zc)-1(za\\252a)-388(coraz)-387(z)-1(ap)1(al-)]TJ -27.879 -13.549 Td[(cz)-1(ywiej,)-434(z\\252o\\261)-1(\\242)-434(s)-1(i\\246)-434(w)-435(n)1(iej)-434(rozs)-1(r)1(o\\273)-1(y\\252a)-434(ki)1(e)-1(j)-434(p)-27(o\\273ar,)-434(ju)1(\\273)-435(b)28(y)1(\\252a)-435(goto)28(w)28(a)-434(na)-434(ws)-1(zystk)28(o,)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-333(n)1(a)-334(n)1(a)-56(j)1(gors)-1(ze)-1(.)]TJ 27.879 -13.549 Td[(Hance)-293(naraz)-293(\\252z)-1(y)-292(z)-1(ala\\252y)-292(o)-28(c)-1(zy)83(,)-292(pami\\246\\242)-294(zdr)1(a)-1(d)-292(An)28(tk)28(o)28(wyc)27(h)-292(tak)-293(b)-27(ole\\261)-1(n)1(ie)-294(wgr)1(y-)]TJ -27.879 -13.549 Td[(z\\252)-1(a)-333(si\\246)-334(w)-333(s)-1(erce)-1(,)-333(\\273e)-334(le)-1(d)1(wie)-334(j)1(u\\273)-334(zab)-28(e\\252k)28(ota\\252a:)]TJ 27.879 -13.549 Td[({)-309(A)-310(co\\261)-310(to)-310(z)-309(m)-1(oim)-309(w)-1(y)1(pra)28(wia\\252a,)-309(c)-1(o?)-309(Je)-1(sz)-1(cz)-1(e)-309(c)-1(i\\246)-310(P)29(an)-309(B)-1(\\363g)-309(z)-1(a)-309(mnie)-310(p)-27(ok)56(arze)-1(,)]TJ -27.879 -13.549 Td[(obaczys)-1(z!..)1(.)-321(Sp)-27(ok)28(o)-56(j)1(u)-321(m)28(u)-321(n)1(ie)-321(da)28(w)28(a\\252)-1(a\\261...)-320(goni\\252a\\261)-321(za)-321(nim)-321(ki)1(e)-1(j)-320(ta)-321(rozc)-1(i)1(e)-1(k)56(ana)-321(suk)56(a..)1(.)]TJ 0 -13.549 Td[(kiej)-333(ta..)1(.)-333({)-334(tc)28(h)28(u)-333(jej)-333(zbrak)1(\\252)-1(o,)-333(tak)-333(si\\246)-334(zani)1(e)-1(s\\252a)-334(sz)-1(lo)-27(c)27(hem.)]TJ 27.879 -13.55 Td[(A)-489(Jagu)1(\\261)-490(spi\\246\\252a)-489(s)-1(i\\246)-489(ni)1(b)28(y)-489(wilk)-489(n)1(apad)1(ni\\246t)28(y)-489(w)-489(bar\\252ogu)1(,)-489(goto)28(wy)-489(ju)1(\\273)-490(dr)1(z)-1(e\\242)]TJ -27.879 -13.549 Td[(k\\252ami,)-447(co)-447(m)27(u)-446(s)-1(i)1(\\246)-448(j)1(e)-1(n)1(o)-447(na)28(wini)1(e)-1(,)-446(niena)28(wi\\261\\242)-448(b)1(uc)27(h)1(n\\246\\252a)-447(jej)-447(d)1(o)-447(g\\252o)27(wy)84(,)-447(a)-447(m\\261)-1(ciw)28(o\\261)-1(\\242)]TJ 0 -13.549 Td[(spr\\246\\273)-1(y)1(\\252a)-371(p)1(az)-1(u)1(ry)84(,)-370(a\\273)-371(sk)28(o)-28(cz)-1(y\\252a)-370(n)1(a)-371(i)1(z)-1(b)-27(\\246)-371(i)1(,)-370(rozw)-1(\\261c)-1(i)1(e)-1(kl)1(ona)-370(do)-370(ostatk)56(a,)-370(j\\246\\252a)-370(c)27(hl)1(as)-1(ta\\242)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(duszon)28(ymi)-333(s)-1(\\252o)28(w)27(ami)-333(kiejb)28(y)-333(t)28(ym)-333(bicze)-1(m)-334(\\261wis)-1(zcz)-1(\\241cym:)]TJ 27.879 -13.549 Td[({)-360(T)84(o)-360(ja)-359(z)-1(a)-359(ni)1(m)-360(lata\\252am,)-360(j)1(a!)-360(Cygan)1(isz)-360(kiej)-360(t)1(e)-1(n)-359(pi)1(e)-1(s!)-360(W)1(s)-1(zysc)-1(y)-359(ano)-359(w)-1(i)1(e)-1(d)1(z)-1(\\241,)]TJ -27.879 -13.55 Td[(jak)-456(si\\246)-456(prze)-1(d)-455(nim)-456(ogania\\252am!)-456(Dy\\242)-456(kiej)-456(piese)-1(k)-456(sk)55(amla\\252)-456(p)-27(o)-28(de)-456(drzwiami,)-456(ab)28(ym)]TJ 0 -13.549 Td[(m)27(u)-339(c)28(ho)-28(cia)-339(trep)-340(sw)27(\\363)-55(j)-339(p)-28(ok)56(aza\\252a!)-340(T)83(o)-339(on)-339(m)-1(e)-340(n)1(iew)27(oli)1(\\252)-1(!)-339(T)83(o)-339(on)-339(m)-1(e)-340(otu)1(m)-1(an)1(i\\252)-340(i)-339(rob)1(i\\252)-340(z)]TJ 0 -13.549 Td[(g\\252up)1(i\\241,)-265(c)-1(o)-265(c)27(h)1(c)-1(ia\\252!)-265(A)-266(t)1(e)-1(ra)-265(p)-27(o)27(wiem)-266(ci)-266(p)1(ra)28(wd\\246,)-266(j)1(e)-1(n)1(o)-266(b)29(y\\261)-266(jej)-265(nie)-266(p)-27(o\\273a\\252o)27(w)28(a\\252a.)-266(A)-265(to)-265(m)-1(e)]TJ 0 -13.549 Td[(mi\\252o)28(w)27(a\\252,)-350(\\273e)-351(j)1(u\\273)-350(ni)1(e)-351(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242!)-350(A)-350(t)28(y\\261)-350(m)27(u)-349(obmierz)-1(\\252a)-350(k)1(ie)-1(j)-349(ten)-350(stary)84(,)-350(ut)28(yt)1(\\252)-1(an)29(y)]TJ 0 -13.549 Td[(\\252ac)27(h)1(,)-425(\\273e)-426(mia\\252)-425(ju)1(\\273)-425(c)27(h)28(ud)1(z)-1(i)1(ak)-425(p)-27(o)-425(grd)1(yk)28(\\246)-426(t)28(w)28(o)-56(j)1(e)-1(go)-425(k)28(o)-27(c)27(han)1(ia,)-425(j)1(a\\273)-1(e)-425(m)27(u)-424(s)-1(i)1(\\246)-426(o)-28(d)1(bi)1(ja\\252o)]TJ 0 -13.55 Td[(kiej)-329(p)-27(o)-329(s)-1(tar)1(ym)-330(sadl)1(e)-1(,)-329(\\273e)-330(jeno)-329(p)1(lu\\252)-329(ws)-1(p)-27(omina)-55(j\\241c)-329(o)-330(t)1(obie.)-329(Na)28(w)27(et)-329(got\\363)27(w)-329(b)28(y\\252)-329(sobie)]TJ 0 -13.549 Td[(zrobi)1(\\242)-419(co)-418(z\\252e)-1(go,)-417(ab)28(yc)28(h)-418(cie)-418(j)1(e)-1(n)1(o)-418(nie)-418(wid)1(z)-1(i)1(e)-1(\\242)-418(wi\\246c)-1(ej)-418(n)1(a)-418(o)-28(czy)83(.)-417(C)-1(h)1(c)-1(i)1(a\\252a\\261)-1(,)-417(to)-418(mas)-1(z)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(d)1(\\246)-1(.)-348(A)-348(zapami\\246ta)-56(j)1(,)-348(co)-349(ci)-348(j)1(e)-1(sz)-1(cz)-1(ek)-348(do\\252o\\273\\246)-1(:)-347(jak)-348(ze)-1(c)28(hc\\246)-1(,)-348(to)-348(\\273e)-1(b)29(y\\261)-349(m)28(u)-348(ca\\252o)27(w)28(a\\252a)]TJ 0 -13.549 Td[(nogi)1(,)-301(k)28(opn)1(ie)-301(c)-1(i\\246,)-301(a)-301(za)-301(m)-1(n)1(\\241)-301(p)-28(ol)1(e)-1(ci)-301(w)-301(c)-1(a\\252y)-300(\\261)-1(wiat!)-301(W)1(ym)-1(i)1(arku)1(j)-301(to)-301(sobie)-301(i)-301(ze)-302(mn\\241)-300(s)-1(i\\246)]TJ 0 -13.549 Td[(ni)1(e)-334(r\\363)28(wna)-55(j,)-333(rozumies)-1(z,)-333(c)-1(o?)]TJ 27.879 -13.55 Td[(W)84(o\\252)-1(a\\252a)-448(zjad)1(liwie,)-448(w\\252)-1(ad)1(na)-448(j)1(u\\273)-448(s)-1(ob)1(\\241)-448(i)-448(b)-28(ez)-449(l)1(\\246)-1(ku)1(,)-448(a)-448(tak)-448(u)1(ro)-28(d)1(na)-448(jak)-447(nigd)1(y)83(.)]TJ -27.879 -13.549 Td[(Na)28(w)27(et)-356(matk)56(a)-356(s)-1(\\252u)1(c)27(ha\\252a)-356(j)1(e)-1(j)-355(z)-357(p)-27(o)-28(d)1(z)-1(iw)28(em)-357(i)-355(s)-1(tr)1(ac)27(hem,)-356(tak)-356(wyn)1(os)-1(i\\252a)-356(si\\246)-356(inn)1(a)-356(jak)56(a\\261,)]TJ 0 -13.549 Td[(zgo\\252)-1(a)-285(ob)-28(ca)-286(i)-285(zaraz)-1(em)-286(tak)-285(jak)28(o\\261)-286(strasz)-1(n)1(a,)-286(z\\252a)-286(i)-285(gro\\271na)-286(k)1(ie)-1(j)-285(ta)-285(c)27(h)1(m)27(ur)1(a)-286(tr)1(z)-1(ask)55(a)-55(j\\241ca)]TJ 0 -13.549 Td[(pi)1(orun)1(ami.)]TJ 27.879 -13.549 Td[(Za\\261)-228(Hank)28(\\246)-228(s)-1(\\252o)28(w)27(a)-228(t)1(e)-229(p)-27(orazi\\252y)-228(j)1(akb)28(y)-228(n)1(a)-228(\\261)-1(mier\\242;)-228(bi)1(\\252y)-228(j\\241)-228(d)1(o)-228(krwie,)-228(smag)-1(a\\252y)-227(b)-28(ez)]TJ -27.879 -13.55 Td[(lit)1(o\\261)-1(ci)-363(ni)-363(mi\\252os)-1(ierd)1(z)-1(i)1(a)-364(i)-363(r)1(oz)-1(gn)1(iata\\252y)-363(kiej)-363(te)-1(go)-363(mize)-1(rn)1(e)-1(go)-363(rob)1(ak)56(a;)-363(w)27(ali)1(\\252)-1(a)-363(si\\246)-1(,)-363(k)1(ie)-1(j)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(o)-224(p)-27(o)-28(d)1(arte)-224(pior)1(un)1(am)-1(i,)-223(b)-28(ez)-225(si\\252)-224(j)1(u\\273)-224(i)-224(b)-28(ez)-224(pami\\246)-1(ci.)-224(Ledwie)-224(ju)1(\\273)-225(p)-27(oredzi\\252a)-224(n)1(abra\\242)]TJ 0 -13.549 Td[(p)-27(o)27(wietrza)-352(zbiela\\252ymi)-352(w)27(ar)1(gam)-1(i)1(,)-352(opad)1(\\252a)-352(na)-352(\\252a)28(w)27(\\246,)-352(a)-352(o)-28(d)-351(te)-1(go)-352(b)-27(olu)-351(to)-352(ws)-1(zys)-1(t)1(k)28(o)-352(s)-1(i\\246)]TJ 0 -13.549 Td[(w)-329(ni)1(e)-1(j)-328(rozs)-1(y)1(p)28(yw)28(a\\252)-1(o)-328(w)-329(m)-1(i)1(a\\252)-1(k)1(i)-329(a)-329(p)1(\\252on)28(y)-329(p)1(ias)-1(ek,)-328(\\273)-1(e)-329(na)28(w)28(e)-1(t)-328(\\252z)-1(y)-328(prze)-1(sta\\252y)-329(ciekn\\241\\242)-329(p)-27(o)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(y)84(,)-255(s)-1(p)-27(op)1(ie)-1(l)1(a\\252)-1(ej)-255(o)-28(d)-254(m)-1(\\246ki,)-255(c)28(ho)-28(cia\\273)-255(c)-1(i\\246\\273)-1(k)1(i,)-255(wz)-1(b)1(urzon)28(y)-255(sz)-1(l)1(o)-28(c)27(h)-255(r)1(oz)-1(r)1(yw)27(a\\252)-255(jej)-255(p)1(iers)-1(i)1(.)]TJ 0 -13.549 Td[(Z)-299(l\\246kiem)-300(p)1(atrza\\252a)-300(p)1(rze)-1(d)-298(s)-1(iebi)1(e)-1(,)-299(k)1(ie)-1(b)29(y)-299(w)-300(j)1(ak)56(\\241\\261)-300(g\\252\\241b)-299(n)1(agle)-300(r)1(oz)-1(w)28(art\\241,)-299(i)-298(dr\\273a\\252a)-299(nib)29(y)]TJ 0 -13.55 Td[(to)-333(\\271)-1(d)1(\\271)-1(b)1(\\252o,)-333(kt\\363re)-334(wiater)-333(\\273e)-1(n)1(ie)-334(na)-333(zatrat\\246...)]TJ 27.879 -13.549 Td[(Jagu)1(\\261)-378(ju)1(\\273)-378(da)28(wno)-377(prze)-1(sta\\252a)-377(i)-378(p)-27(os)-1(z\\252a)-378(z)-377(m)-1(atk)56(\\241)-377(na)-377(s)-1(w)28(o)-56(j)1(\\241)-378(stron)1(\\246)-1(,)-377(Magd)1(a)-378(si\\246)]TJ -27.879 -13.549 Td[(te\\273)-396(wyn)1(ie)-1(s\\252a)-395(nie)-395(mog\\241c)-396(si\\246)-395(z)-396(n)1(i\\241)-395(dogad)1(a\\242)-1(,)-395(n)1(a)28(w)27(et)-395(J\\363z)-1(k)56(a)-395(p)-27(olec)-1(ia\\252a)-395(n)1(ad)-395(sta)28(w)-396(za)]TJ 0 -13.549 Td[(k)56(ac)-1(z\\246)-1(t)1(am)-1(i,)-295(a)-297(on)1(a)-296(w)27(ci\\241\\273)-297(siedzia\\252a)-296(na)-296(jedn)29(ym)-297(miejsc)-1(u)-295(kiej)-296(ta)-296(zm)-1(ar)1(t)27(wia\\252a)-296(p)1(tas)-1(zk)56(a,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(j)-359(w)-1(y)1(bier\\241)-360(p)1(is)-1(k)1(l\\246)-1(t)1(a,)-360(\\273)-1(e)-360(ni)-359(krzyc)-1(ze\\242)-1(,)-360(n)1(i)-360(b)1(roni)1(\\242)-1(,)-360(n)1(i)-360(uciek)56(a\\242)-361(j)1(u\\273)-360(nie)-360(p)-27(ore)-1(d)1(z)-1(i)1(,)-360(a)]TJ 0 -13.55 Td[(jeno)-333(cz)-1(ase)-1(m)-333(z)-1(ab)1(ije)-334(skr)1(z)-1(yd)1(\\252e)-1(m)-333(i)-334(\\273a\\252o\\261)-1(n)1(ie)-334(zapi)1(uk)56(a...)]TJ 27.879 -13.549 Td[(A\\273)-346(P)28(an)-345(Je)-1(zus)-346(zlito)28(w)28(a\\252)-346(s)-1(i\\246)-346(n)1(ad)-346(n)1(i\\241,)-345(da)-56(j)1(\\241c)-346(folg\\246)-346(u)1(m)-1(\\246c)-1(zonej)-345(duszy)83(,)-345(\\273)-1(e)-346(pr)1(z)-1(e-)]TJ\nET\nendstream\nendobj\n1993 0 obj <<\n/Type /Page\n/Contents 1994 0 R\n/Resources 1992 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1979 0 R\n>> endobj\n1992 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n1997 0 obj <<\n/Length 8725      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(625)]TJ -358.232 -35.866 Td[(c)27(k)1(n\\241)28(ws)-1(zy)-307(pad\\252a)-307(pr)1(z)-1(ed)-307(obr)1(az)-1(ami,)-307(b)1(uc)27(h)1(n\\246\\252a)-308(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(ym)-307(p\\252ac)-1(zem)-308(i)-307(o)-28(c)27(h)1(\\014ar)1(o)27(w)28(a\\252a)-307(s)-1(i\\246)]TJ 0 -13.549 Td[(i\\261\\242)-334(do)-333(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wy)84(,)-333(b)28(yle)-334(t)1(o)-334(wsz)-1(ystk)28(o,)-333(c)-1(o)-333(us\\252ysz)-1(a\\252a,)-333(b)28(y\\252o)-333(ni)1(e)-1(p)1(ra)28(wd\\241!)]TJ 27.879 -13.549 Td[(A)-269(d)1(o)-269(Jagu)1(s)-1(i)-268(ni)1(e)-269(c)-1(zu\\252a)-268(na)28(w)27(et)-269(z\\252o\\261)-1(ci,)-268(t)28(ylk)28(o)-269(b)1(ra\\252)-268(j\\241)-269(strac)28(h)-268(prze)-1(d)-268(n)1(i\\241)-269(i)-268(\\273e)-1(gn)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-334(ni)1(b)28(y)-333(przed)-333(z)-1(\\252ym,)-333(dos\\252ysz)-1(a)28(ws)-1(zy)-333(jej)-333(g\\252os)-1(..)1(.)]TJ 27.879 -13.549 Td[(W)84(re)-1(szc)-1(ie)-374(z)-1(ab)1(ra\\252a)-375(si\\246)-375(d)1(o)-375(r)1(ob)-28(ot)28(y)-374(i)-374(w)28(e)-1(zw)-1(y)1(c)-1(za)-56(j)1(one)-375(r)1(\\246)-1(ce)-375(rob)1(i\\252y)-374(pra)28(wie)-375(same)-1(,)]TJ -27.879 -13.55 Td[(gdy)1(\\273)-378(m)27(y\\261lami)-377(b)28(y\\252a)-377(k)55(a)-55(j\\261)-378(d)1(ale)-1(k)28(o,)-377(n)1(a)27(w)28(et)-378(n)1(ie)-378(wiedz\\241c)-1(,)-377(\\273)-1(e)-377(dzie)-1(ci)-377(w)-1(y)1(pro)28(w)28(adzi\\252a)-378(d)1(o)]TJ 0 -13.549 Td[(sadu,)-410(\\273)-1(e)-411(up)1(rz)-1(\\241t)1(n\\246\\252)-1(a)-411(i)1(z)-1(b)-27(\\246)-412(i)-410(na\\252o\\273)-1(y)1(w)-1(szy)-411(jad)1(\\252)-1(em)-411(dw)28(o)-56(j)1(aki)-411(p)-27(\\246)-1(d)1(z)-1(i\\252a)-411(J\\363zk)28(\\246)-1(,)-410(b)28(yc)27(h)-410(je)]TJ 0 -13.549 Td[(pr)1(\\246)-1(d)1(z)-1(ej)-333(p)-27(onies)-1(\\252a)-333(w)-334(p)-27(ole.)]TJ 27.879 -13.549 Td[(A)-361(kiej)-361(osta\\252a)-361(s)-1(ama)-361(i)-361(u)1(s)-1(p)-27(ok)28(oi\\252a)-361(si\\246)-362(n)1(ie)-1(co,)-361(j)1(\\246)-1(\\252a)-361(rozw)27(a\\273a\\242)-361(i)-361(m)-1(edy)1(to)27(w)28(a\\242)-361(nad)]TJ -27.879 -13.549 Td[(k)56(a\\273)-1(d)1(ym)-433(s\\252o)27(w)28(em)-1(.)-432(M\\241d)1(ra)-432(b)28(y\\252a)-432(k)28(obieta)-432(i)-433(d)1(obr)1(a,)-433(to)-432(\\252ac)-1(n)1(o)-432(prze)-1(p)1(u\\261c)-1(i)1(\\252)-1(a)-432(ws)-1(zystkie)]TJ 0 -13.549 Td[(sw)27(o)-55(je)-360(ob)1(razy)-359(i)-359(kr)1(z)-1(ywd)1(y)83(,)-359(al)1(e)-360(zadra\\261ni)1(\\246)-1(tego)-359(am)27(b)1(itu)-359(n)1(ie)-360(p)-27(oredzi\\252a)-359(z)-1(ap)-27(omnie\\242,)-359(\\273)-1(e)]TJ 0 -13.55 Td[(raz)-417(p)-27(o)-417(r)1(az)-417(bi\\252y)-416(na)-416(ni\\241)-416(ognie)-417(i)-416(s)-1(erce)-417(s)-1(i)1(\\246)-418(k)1(urczy\\252o)-417(o)-28(d)-416(m\\246)-1(k)1(i,)-417(a)-416(p)-28(o)-416(g\\252o)27(wie)-417(l)1(ata\\252y)]TJ 0 -13.549 Td[(zam)27(ys\\252y)-333(krw)28(a)27(w)28(e)-1(j)-332(o)-28(dem)-1(st)28(y)83(,)-333(a\\273)-333(w)-334(k)28(o\\253cu)-333(i)-333(to)-333(przem)-1(og\\252a,)-333(b)-27(o)-334(sz)-1(epn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-357(Ju)1(\\261)-1(ci,)-357(\\273e)-358(mi)-357(si\\246)-357(z)-358(n)1(i\\241)-357(nie)-357(r\\363)28(wna\\242)-357(w)-357(uro)-27(dzie)-1(,)-356(tru)1(dno.)-356(Ale)-1(m)-357(m)28(u)-357(\\261lub)1(na)-357(i)]TJ -27.879 -13.549 Td[(matk)56(a)-357(jego)-357(d)1(z)-1(iec)-1(i)1(!)-357({)-357(d)1(uma)-357(j)1(\\241)-357(rozpar)1(\\252)-1(a)-356(i)-357(p)-27(e)-1(wn)1(o\\261)-1(\\242)-357(sie)-1(b)1(ie.)-357({)-357(A)-356(p)-28(ol)1(e)-1(ci)-357(za)-357(n)1(i\\241,)-357(to)-356(i)]TJ 0 -13.549 Td[(p)-27(o)27(wr)1(\\363)-28(c)-1(i)1(!)-395(Przec)-1(iec)27(h)-394(s)-1(i\\246)-395(z)-396(n)1(i\\241)-395(ni)1(e)-396(o\\273e)-1(n)1(i!)-395({)-395(p)-27(o)-28(c)-1(i)1(e)-1(sz)-1(a\\252a)-395(si\\246)-396(gor)1(z)-1(k)28(o,)-395(wygl)1(\\241da)-56(j)1(\\241c)-396(n)1(a)]TJ 0 -13.55 Td[(\\261w)-1(i)1(at.)]TJ 27.879 -13.549 Td[(P)28(o\\252u)1(dni)1(e)-223(si\\246)-223(j)1(u\\273)-223(p)-27(o)-28(d)1(nosi\\252o,)-222(s)-1(\\252o\\253)1(c)-1(e)-223(za)28(wis)-1(\\252o)-222(nad)-221(s)-1(ta)28(w)28(e)-1(m,)-222(up)1(a\\252)-223(si\\246)-223(t)1(ak)-222(w)-1(zm\\363g)-1(\\252,)]TJ -27.879 -13.549 Td[(\\273e)-333(ju\\273)-333(p)1(arzy\\252a)-333(ziem)-1(ia)-332(i)-332(roz)-1(p)1(alon)1(e)-333(p)-28(o)28(wietrze)-334(za)28(wie)-1(w)28(a\\252o)-333(ki)1(e)-1(b)28(y)-332(z)-333(p)1(ie)-1(ca,)-332(lud)1(z)-1(ie)-333(j)1(u\\273)]TJ 0 -13.549 Td[(wracali)-318(z)-318(p)-27(\\363l,)-318(a)-317(o)-28(d)-317(top)-28(ol)1(o)27(w)28(ej)-318(n)1(ie)-1(s\\252y)-318(si\\246)-318(wraz)-318(z)-318(tumanami)-318(k)1(urza)28(wy)-318(p)-27(oryki)1(w)27(an)1(ia)]TJ 0 -13.549 Td[(sp)-28(\\246dzanego)-287(b)28(y)1(d\\252a,)-287(gd)1(y)-287(n)1(araz)-287(Han)1(k)28(\\246)-287(jakb)28(y)-286(tkn)1(\\246)-1(\\252o)-286(jakie\\261)-287(p)-27(os)-1(tan)1(o)27(wieni)1(e)-1(,)-286(ws)-1(p)1(ar\\252a)]TJ 0 -13.55 Td[(si\\246)-402(o)-401(\\261c)-1(ian)1(\\246)-402(i)-401(p)-27(om)27(y\\261la)28(ws)-1(zy)-401(jes)-1(zcz)-1(e)-401(jakie\\261)-402(Zd)1(ro)28(w)27(a\\261)-401(obtar)1(\\252)-1(a)-401(o)-28(czy)83(,)-401(p)1(rz)-1(esz)-1(\\252a)-401(s)-1(i)1(e)-1(\\253)1(,)]TJ 0 -13.549 Td[(ot)28(w)27(or)1(z)-1(y)1(\\252)-1(a)-333(dr)1(z)-1(wi)-333(do)-333(Jagu)1(s)-1(in)1(e)-1(j)-332(iz)-1(b)29(y)-334(i)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(mo)-28(c)-1(n)1(o,)-333(a)-334(ca\\252kiem)-334(sp)-28(ok)28(o)-55(jn)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(Wyn)1(o\\261)-334(m)-1(i)-333(si\\246)-334(zaraz)-334(z)-333(c)27(ha\\252u)1(p)28(y!)]TJ 0 -13.549 Td[(Jagn)1(a)-407(un)1(ie)-1(s\\252a)-407(si\\246)-407(z)-407(\\252)-1(a)28(wy)-406(i)-407(stan\\246\\252y)-407(nap)1(rze)-1(ciw)-407(mierz)-1(\\241c)-407(si\\246)-407(\\261)-1(l)1(e)-1(p)1(iami)-407(pr)1(z)-1(ez)]TJ -27.879 -13.549 Td[(d\\252u)1(g\\241)-385(c)28(h)28(wil\\246,)-385(j)1(a\\273)-1(e)-385(Han)1(k)56(a)-385(cofn\\246\\252a)-385(si\\246)-385(n)1(ie)-1(co)-385(o)-27(d)-384(proga)-384(i)-384(p)-28(o)28(wt\\363rzy\\252a)-385(p)1(rzyc)27(h)1(rzyp-)]TJ 0 -13.55 Td[(ni)1(\\246)-1(t)28(ym)-333(g\\252o)-1(sem)-1(:)]TJ 27.879 -13.549 Td[({)-303(Wy)1(no\\261)-303(m)-1(i)-302(s)-1(i\\246)-303(w)-303(ten)-303(mig,)-303(a)-303(n)1(ie,)-303(to)-303(ci\\246)-303(k)55(a\\273\\246)-303(parob)1(k)28(o)28(w)-1(i)-302(w)-1(y)1(rz)-1(u)1(c)-1(i)1(\\242)-1(..)1(.)-303(W)-303(ten)]TJ -27.879 -13.549 Td[(mig!)-333({)-334(d)1(o)-28(d)1(a)-1(\\252a)-333(ni)1(e)-1(u)1(s)-1(t\\246pl)1(iwie)-1(.)]TJ 27.879 -13.549 Td[(St)1(ara)-291(rzuci\\252a)-291(s)-1(i\\246)-291(do)-291(n)1(iej)-291(pr)1(z)-1(ek\\252ada\\242)-291(i)-291(t\\252umacz)-1(y\\242,)-291(ale)-291(Jagu\\261)-291(jeno)-291(wz)-1(r)1(usz)-1(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(ramion)1(am)-1(i:)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(gad)1(a)-56(jcie)-334(d)1(o)-334(t)1(e)-1(go)-333(p)-28(omiet\\252a!)-333(Wiad)1(om)-1(o,)-333(o)-333(c)-1(o)-333(jej)-333(id)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Wyj)1(\\246)-1(\\252a)-333(ze)-334(s)-1(p)-27(o)-28(d)1(u)-333(s)-1(kr)1(z)-1(y)1(nki)-333(j)1(aki\\261)-334(p)1(apier.)]TJ 0 -13.549 Td[({)-333(O)-333(z)-1(ap)1(is)-334(ci)-334(c)28(ho)-28(d)1(z)-1(i)1(,)-334(o)-333(te)-334(morgi)1(,)-333(a)-334(to)-333(je)-333(w)27(e\\271)-334(sobie)-334(i)-333(n)1(ac)27(hl)1(a)-56(j)-333(si\\246)-334(n)1(imi!)]TJ 0 -13.549 Td[(Rz)-1(ek\\252a)-333(wz)-1(gard)1(liwie,)-333(rzuca)-56(j\\241c)-333(jej)-333(w)-334(t)28(w)28(arz)-334(p)1(apierem)-1(:)]TJ 0 -13.549 Td[({)-333(Ud\\252a)28(w)-334(si\\246)-334(n)1(im)-1(i)-333(c)28(ho)-28(\\242b)28(y)-333(na)-333(\\261m)-1(i)1(e)-1(r\\242!)]TJ 0 -13.549 Td[(I)-278(ni)1(e)-279(b)1(ac)-1(z\\241c)-279(n)1(a)-278(matc)-1(zyne)-278(sprze)-1(ciwy)-278(j)1(\\246)-1(\\252a)-278(\\261piesz)-1(n)1(ie)-279(wi\\241za\\242)-279(t)1(ob)-28(o\\252y)-278(i)-277(w)-1(y)1(nosi\\242)]TJ -27.879 -13.55 Td[(je)-333(w)-334(op)1(\\252)-1(ot)1(ki.)]TJ 27.879 -13.549 Td[(Hank)28(\\246)-309(ze)-1(mgli\\252o,)-308(jakb)29(y)-309(j)1(\\241)-309(kto)-309(tr)1(z)-1(asn\\241\\252)-309(mi\\246dzy)-309(o)-27(c)-1(zy)83(,)-308(ale)-309(pap)1(ie)-1(r)-308(p)-27(o)-28(dn)1(ies)-1(\\252a)-309(i)]TJ -27.879 -13.549 Td[(zagada\\252a)-333(z)-334(p)-28(ogr)1(oz)-1(\\241:)]TJ 27.879 -13.549 Td[({)-270(A)-269(pr)1(\\246)-1(d)1(z)-1(ej,)-269(b)-28(o)-269(c)-1(i)1(\\246)-270(psam)-1(i)-269(wys)-1(zcz)-1(u)1(j\\246!)-270({)-269(d\\252a)28(w)-1(i)1(\\252o)-270(j\\241)-269(z)-1(d)1(umienie,)-269(nie)-270(mog\\252o)-270(si\\246)]TJ -27.879 -13.549 Td[(jej)-287(p)-27(om)-1(i)1(e)-1(\\261c)-1(i)1(\\242)-288(w)-288(g\\252o)28(wie)-1(,)-287(\\273e)-288(to)-287(pr)1(a)27(wd)1(a.)-287(Jak\\273)-1(e,)-287(c)-1(a\\252e)-287(s)-1(ze)-1(\\261\\242)-288(morg\\363)28(w)-288(p)-27(ola)-287(rzuci\\252a)-288(k)1(ie)-1(j)]TJ 0 -13.55 Td[(ten)-303(p)-28(\\246kni)1(\\246)-1(t)28(y)-303(garn)1(e)-1(k!)-303(Jak\\273e)-1(!)-303(M)1(usi)-304(b)28(y)1(\\242)-1(,)-303(co)-304(ma)-304(\\271le)-304(w)-304(g\\252o)28(wie)-1(!)-303({)-303(m)27(y\\261la\\252a)-304(w)28(o)-28(d)1(z)-1(\\241c)-304(za)]TJ 0 -13.549 Td[(ni)1(\\241)-334(o)-27(c)-1(zam)-1(i)1(.)]TJ\nET\nendstream\nendobj\n1996 0 obj <<\n/Type /Page\n/Contents 1997 0 R\n/Resources 1995 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n1995 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2001 0 obj <<\n/Length 8984      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(626)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Jagn)1(a)-468(za\\261,)-467(nie)-467(z)-1(w)28(a\\273a)-56(j\\241c)-467(na)-467(n)1(i\\241,)-467(ju)1(\\273)-468(si\\246)-467(w)-1(zi\\246\\252a)-468(d)1(o)-467(z)-1(d)1(e)-1(j)1(m)-1(o)28(w)28(ania)-467(sw)27(oi)1(c)27(h)]TJ -27.879 -13.549 Td[(obr)1(az)-1(\\363)28(w,)-333(gdy)-333(J\\363zk)56(a)-334(p)1(rz)-1(y)1(le)-1(cia\\252a)-333(z)-334(wrzas)-1(ki)1(e)-1(m:)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)28(or)1(ale)-334(mi)-333(o)-28(dd)1(a)-56(j)1(c)-1(ie,)-333(m)-1(o)-55(je)-333(s)-1(\\241)-333(p)-28(o)-333(matc)-1(e,)-333(mo)-56(je...)]TJ 0 -13.549 Td[(Jagn)1(a)-334(zac)-1(z\\246)-1(\\252a)-333(je)-333(o)-28(dwi\\241zyw)28(a\\242)-334(z)-1(e)-333(s)-1(zyi,)-333(ale)-334(si\\246)-334(n)1(agle)-334(p)-27(o)28(ws)-1(trzyma\\252a.)]TJ 0 -13.549 Td[({)-333(Nie)-1(,)-333(n)1(ie)-334(o)-28(d)1(dam!)-333(Macie)-1(j)-332(m)-1(i)-333(d)1(ali,)-333(to)-333(ju)1(\\273)-334(s)-1(\\241)-333(mo)-56(j)1(e)-1(!)]TJ 0 -13.55 Td[(J\\363zk)55(a)-282(p)-27(o)-28(cz)-1(\\246\\252a)-282(piek\\252o)28(w)27(a\\242,)-282(ja\\273e)-283(Han)1(k)56(a)-283(m)28(usia\\252a)-282(j\\241)-282(skrzycz)-1(e\\242)-1(,)-282(b)29(yc)27(h)-282(d)1(a\\252a)-282(s)-1(p)-27(o-)]TJ -27.879 -13.549 Td[(k)28(\\363)-56(j)1(,)-253(b)-27(o)-253(J)1(a)-1(gu)1(\\261)-253(jakb)29(y)-253(og\\252u)1(c)27(h\\252a)-253(n)1(a)-253(zac)-1(ze)-1(p)1(ki,)-252(a)-253(wyn)1(i\\363s)-1(\\252sz)-1(y)-252(ws)-1(zystk)28(o)-253(s)-1(w)28(o)-56(j)1(e)-253(p)-28(ol)1(e)-1(cia\\252a)]TJ 0 -13.549 Td[(p)-27(o)-334(J\\246dr)1(z)-1(y)1(c)27(ha.)]TJ 27.879 -13.549 Td[(Domini)1(k)28(o)27(w)28(a)-475(nie)-476(p)1(rze)-1(ciwi\\252a)-476(si\\246)-476(j)1(u\\273)-476(n)1(ic)-1(zem)27(u,)-475(lec)-1(z)-475(i)-476(n)1(ie)-476(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-1(a)-475(na)]TJ -27.879 -13.549 Td[(zagadyw)28(ania)-334(Han)1(ki)-334(ni)-334(n)1(a)-335(J\\363zcz)-1(yn)1(e)-335(j)1(az)-1(got)28(y)83(,)-334(d)1(opi)1(e)-1(ro)-334(ki)1(e)-1(j)-334(zabr)1(ali)-334(rze)-1(cz)-1(y)-334(n)1(a)-334(w)27(\\363z,)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(ies)-1(\\252a)-333(s)-1(i\\246)-333(i)-333(w)-1(y)1(rz)-1(ek\\252a)-333(gro\\273\\241c)-334(pi\\246\\261c)-1(i\\241:)]TJ 27.879 -13.55 Td[({)-333(B)-1(y)1(c)27(h)-333(ci\\246)-334(ni)1(e)-334(min\\246\\252o)-334(co)-334(n)1(a)-56(j)1(gorsz)-1(e!)]TJ 0 -13.549 Td[(Hank)56(a)-333(ja\\273e)-334(\\261c)-1(ierp)1(\\252a,)-333(ale)-334(pu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-334(te)-334(s\\252o)28(w)27(a)-333(mim)-1(o)-333(u)1(s)-1(z\\363)27(w)-333(z)-1(a)28(w)28(o\\252a\\252)-1(a:)]TJ 0 -13.549 Td[({)-431(A)-431(pr)1(z)-1(yp)-27(\\246dzi)-431(b)28(yd)1(\\252)-1(o)-431(W)1(ite)-1(k)1(,)-431(to)-431(c)-1(i)-431(t)28(w)28(o)-56(j)1(\\241)-431(kro)28(w)27(\\246)-431(z)-1(agn)1(a)-431(do)-431(c)27(h)1(a\\252up)28(y)84(,)-431(a)-431(p)-28(o)]TJ -27.879 -13.549 Td[(res)-1(zt\\246)-334(n)1(iec)27(h)-333(kto)-333(pr)1(z)-1(yl)1(e)-1(ci)-333(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m,)-333(to)-333(s)-1(i\\246)-333(p)-28(ozgania.)]TJ 27.879 -13.549 Td[(Od)1(e)-1(sz)-1(\\252y)-286(m)-1(i)1(lc)-1(z\\241c)-1(o,)-286(s)-1(k)1(r\\246)-1(ci\\252y)-286(na)-287(d)1(rog\\246)-287(i)-287(sz)-1(\\252y)84(,)-287(z)-287(w)28(olna)-287(ok)1(r\\241\\273a)-56(j\\241c)-287(sta)28(w)-287(s)-1(am)28(ym)]TJ -27.879 -13.55 Td[(jego)-333(brzegie)-1(m,)-333(ja\\273e)-334(si\\246)-334(o)-28(d)1(bij)1(a)-56(j)1(\\241c)-334(w)-334(w)28(o)-28(d)1(z)-1(ie.)]TJ 27.879 -13.549 Td[(Hank)56(a)-349(d)1(\\252)-1(u)1(go)-349(patr)1(z)-1(a\\252a)-349(z)-1(a)-349(n)1(imi)-349(z)-350(jak)56(\\241\\261)-349(dziwn\\241)-349(z)-1(gr)1(yzot\\241)-350(i)-348(m)-1(ar)1(k)28(otno\\261c)-1(i\\241,)-349(a)]TJ -27.879 -13.549 Td[(\\273e)-427(nie)-427(mia\\252a)-427(czas)-1(u)-426(na)-426(rozw)27(a\\273ani)1(a,)-427(b)-27(o)-427(n)1(a)-56(j)1(e)-1(mni)1(c)-1(y)-426(\\261)-1(ci\\241)-28(gal)1(i)-427(z)-427(p)-27(ola,)-426(to)-427(sc)27(h)1(o)27(w)28(a\\252a)]TJ 0 -13.549 Td[(zapis)-303(d)1(o)-303(s)-1(k)1(rz)-1(y)1(nki)-302(p)-27(o)-28(d)-303(k)1(lucz)-1(,)-302(za)27(w)28(ar\\252a)-303(o)-55(jco)28(w)27(\\241)-303(stron)1(\\246)-303(i)-303(zabr)1(a\\252)-1(a)-302(s)-1(i\\246)-303(d)1(o)-303(obi)1(adu)-302(c)-1(a\\252e)]TJ 0 -13.549 Td[(jedn)1(ak)-465(p)1(rzyp)-27(o\\252)-1(u)1(dn)1(ie)-465(c)27(h)1(o)-28(dzi\\252a)-465(stru)1(ta)-465(i)-464(m)-1(il)1(c)-1(z\\241c)-1(a)-464(na)28(w)27(et)-465(n)1(iec)27(h\\246tni)1(e)-466(d)1(a)-56(j)1(\\241c)-465(uc)27(h)1(o)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(p)-28(o)-28(c)28(hlebn)29(ym)-334(s\\252\\363)27(wk)28(om)-334(J)1(agust)27(y)1(nki)1(.)]TJ 27.879 -13.549 Td[({)-332(Dobr)1(z)-1(e\\261)-1(cie)-333(zrob)1(ili!)-332(Ju)1(\\273)-333(d)1(a)27(wn)1(o)-333(t)1(rz)-1(a)-332(j)1(\\241)-333(b)29(y\\252o)-333(wygon)1(i\\242.)-332(Roz)-1(p)1(u\\261c)-1(i\\252a)-332(s)-1(i)1(\\246)-333(kiej)]TJ -27.879 -13.549 Td[(dziad)1(o)27(wski)-243(bi)1(c)-1(z,)-243(b)-28(o)-243(kt)1(o\\273)-244(jej)-243(co)-243(z)-1(rob)1(i)-243(kiej)-243(stara)-243(z)-244(p)1(rob)-27(os)-1(zc)-1(zem)-244(za)-244(p)1(an)-243(b)1(rat!)-243(Dru)1(g\\241)]TJ 0 -13.549 Td[(to)-333(b)28(y)-333(ju)1(\\273)-334(da)28(wno)-333(wykl\\241\\252)-333(z)-334(am)28(b)-28(on)29(y!)]TJ 27.879 -13.549 Td[({)-231(P)28(ewnie,)-231(ju)1(\\261)-1(ci!)-230({)-231(przyt)28(wie)-1(r)1(dza\\252a)-231(o)-28(dsu)28(w)28(a)-56(j)1(\\241c)-232(si\\246)-1(,)-230(ab)28(y)-231(j)1(u\\273)-231(w)-1(i)1(\\246)-1(ce)-1(j)-230(nie)-231(s\\252)-1(u)1(c)27(h)1(a\\242)-1(,)]TJ -27.879 -13.55 Td[(a)-328(gd)1(y)-328(wsz)-1(ysc)-1(y)-327(roze)-1(sz)-1(l)1(i)-328(si\\246)-328(z)-1(n)1(o)28(w)-1(u)-327(d)1(o)-328(rob)-27(ot)28(y)83(,)-327(z)-1(ab)1(ra\\252a)-328(J\\363zk)28(\\246)-328(i)-328(p)-27(os)-1(z\\252y)-328(p)1(le\\242)-329(l)1(e)-1(n)1(,)-328(b)-27(o)]TJ 0 -13.549 Td[(si\\246)-293(miejsc)-1(ami)-292(tak)-292(cz)-1(\\246s)-1(t)1(o)-293(p)1(usz)-1(cza\\252)-1(a)-292(z\\252otuc)28(ha,)-292(j)1(a\\273)-1(e)-292(niekt\\363r)1(e)-293(zagon)28(y)-292(\\273\\363)-1(\\252ci\\252y)-292(si\\246)-293(j)1(u\\273)]TJ 0 -13.549 Td[(z)-334(d)1(ale)-1(k)56(a.)]TJ 27.879 -13.549 Td[(Sk)1(w)27(ap)1(nie)-251(si\\246)-251(wzi\\246)-1(\\252a)-250(do)-250(pi)1(e)-1(leni)1(a,)-251(l)1(e)-1(cz)-251(mim)-1(o)-250(tego)-251(m\\246)-1(czy\\252y)-251(j)1(\\241)-251(p)-27(ogrozy)-250(Domi-)]TJ -27.879 -13.549 Td[(ni)1(k)28(o)27(w)28(ej)-268(i)-267(pr)1(z)-1(ejmo)28(w)27(a\\252y)-267(niem)-1(a\\252y)1(m)-268(l\\246)-1(k)1(ie)-1(m,)-268(a)-267(g\\252\\363)27(wn)1(ie)-268(jedn)1(ak)-268(rozm)27(y)1(\\261)-1(la\\252a,)-267(c)-1(o)-267(An)28(tek)]TJ 0 -13.55 Td[(p)-27(o)27(wie)-333(na)-333(to)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o.)]TJ 27.879 -13.549 Td[({)-480(Jak)-480(m)27(u)-480(p)-27(ok)56(a\\273)-1(\\246)-481(zapi)1(s)-1(,)-480(to)-480(s)-1(i)1(\\246)-481(rozc)27(hm)28(ur)1(z)-1(y)84(.)-480(G\\252up)1(ia!)-480(s)-1(ze)-1(\\261\\242)-481(morg\\363)28(w,)-480(to)-28(\\242)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-334(gos)-1(p)-27(o)-28(d)1(ark)56(a!)-333({)-334(m)28(y\\261)-1(l)1(a\\252a)-334(sp)-28(ogl)1(\\241da)-55(j\\241c)-334(p)-27(o)-333(p)-28(olac)28(h.)]TJ 27.879 -13.549 Td[({)-333(Wiec)-1(ie,)-333(a)-333(do)-333(c)-1(n)1(a)-334(p)1(rze)-1(p)-27(om)-1(n)1(ia\\252y\\261m)27(y)-333(o)-333(t)28(ym)-334(p)1(apierze)-334(o)-333(Grze)-1(l)1(i.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda!)-333(P)1(rze)-1(r)1(yw)27(a)-55(j,)-333(J\\363zia,)-333(a)-334(j)1(a)-333(p)-28(olet\\246)-334(d)1(o)-334(k)1(s)-1(i\\246dza,)-333(on)-333(pr)1(z)-1(ec)-1(zyta.)]TJ 0 -13.549 Td[(Na)28(w)27(et)-266(r)1(ada)-265(b)28(y\\252a,)-265(\\273)-1(e)-266(p)-27(\\363)-56(j)1(dzie)-266(mi\\246dzy)-266(lu)1(dzi,)-265(a)-266(p)1(rze)-1(wie)-266(si\\246)-1(,)-265(co)-266(n)1(a)-266(to)-265(w)-1(szys)-1(tk)28(o)]TJ -27.879 -13.55 Td[(p)-27(o)27(wiad)1(a)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)28(ogar)1(n\\246\\252a)-294(s)-1(i\\246)-294(n)1(ie)-1(co)-294(w)-294(c)27(h)1(a\\252up)1(ie)-1(,)-293(a)-294(wyj\\241)28(ws)-1(zy)-294(p)1(apier)-294(zz)-1(a)-293(obraza)-294(p)-27(os)-1(z\\252a)-294(z)]TJ -27.879 -13.549 Td[(ni)1(m)-353(na)-352(pleban)1(i\\246.)-353(Ni)1(e)-353(z)-1(asta\\252a)-353(j)1(e)-1(d)1(nak)-352(ksi\\246dza,)-353(b)28(y)1(\\252)-353(w)-353(p)-27(olu)-352(p)1(rzy)-353(sw)27(oi)1(c)27(h)-352(na)-55(jemni-)]TJ 0 -13.549 Td[(k)56(ac)27(h)-295(przeryw)28(a)-56(j)1(\\241c)-1(yc)28(h)-296(marc)28(he)-1(w;)-295(do)-55(jrza\\252a)-296(go)-296(ju)1(\\273)-296(z)-297(d)1(ala,)-296(b)-27(o)-296(sto)-56(j)1(a\\252)-296(pra)28(wie)-296(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(rozdzian)28(y)84(,)-366(w)-366(p)-28(or)1(tk)55(ac)28(h)-366(j)1(e)-1(n)1(o)-367(a)-366(w)-366(s\\252)-1(omian)28(y)1(m)-367(k)56(ap)-27(e)-1(lu)1(s)-1(i)1(e)-1(,)-366(al)1(e)-367(bl)1(i\\273)-1(ej)-366(n)1(ie)-367(\\261mia\\252a)-366(p)-28(o-)]TJ 0 -13.55 Td[(dej\\261\\242)-434(ob)1(a)27(wia)-55(j\\241c)-433(s)-1(i\\246,)-433(\\273e)-434(m)27(u)1(s)-1(i)-433(j)1(u\\273)-434(wiedzie\\242)-434(i)-433(jesz)-1(cz)-1(e)-434(got)1(\\363)27(w)-433(j\\241)-433(wykr)1(z)-1(ycz)-1(e\\242)-434(p)1(rzy)]TJ 0 -13.549 Td[(lu)1(dziac)27(h)1(.)-403(Za)28(wr\\363)-28(ci\\252a)-403(wi\\246c)-403(do)-403(m\\252yn)1(arz)-1(a,)-402(kt\\363r)1(e)-1(n)-402(w\\252a\\261)-1(n)1(ie)-403(b)28(y\\252)-403(wraz)-403(z)-403(Mat)1(e)-1(u)1(s)-1(ze)-1(m)]TJ\nET\nendstream\nendobj\n2000 0 obj <<\n/Type /Page\n/Contents 2001 0 R\n/Resources 1999 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n1999 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2004 0 obj <<\n/Length 9597      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(627)]TJ -358.232 -35.866 Td[(pu)1(s)-1(zcz)-1(a\\252)-333(na)-333(pr\\363b)-27(\\246)-334(tar)1(tak.)]TJ 27.879 -13.549 Td[({)-325(Prze)-1(d)-325(c)28(h)28(wil\\241)-325(\\273)-1(on)1(a)-326(mi)-325(op)-28(o)28(wiad)1(a\\252)-1(a,)-325(j)1(ak\\273)-1(e\\261)-1(cie)-326(to)-325(wyku)1(rz)-1(y)1(li)-325(m)-1(aco)-28(c)27(h)1(\\246)-1(!)-325(Ho,)]TJ -27.879 -13.549 Td[(ho,)-346(p)1(lisz)-1(k)56(a)-346(s)-1(i\\246)-346(w)-1(i)1(dzi,)-346(a)-347(ma)-346(jastrz\\246)-1(b)1(ie)-347(pazur)1(y!)-346({)-347(za\\261m)-1(ia\\252)-346(si\\246)-347(bi)1(e)-1(r)1(\\241)-1(c)-346(s)-1(i\\246)-346(do)-346(c)-1(zyta-)]TJ 0 -13.549 Td[(ni)1(a)-396(o)28(w)27(ego)-396(pap)1(ie)-1(r)1(u,)-395(ale)-397(j)1(e)-1(n)1(o)-396(rzuci\\252)-396(oki)1(e)-1(m,)-396(za)27(w)28(o\\252a\\252:)-396({)-396(Z\\252a)-396(n)1(o)27(win)1(a!)-396(Gr)1(z)-1(ela)-396(w)28(as)-1(z)]TJ 0 -13.549 Td[(si\\246)-423(u)1(topi)1(\\252)-1(!)-421(Je)-1(szc)-1(ze)-423(n)1(a)-422(Wielk)56(ano)-28(c!)-422(P)1(isz)-1(\\241,)-422(\\273e)-422(rz)-1(ecz)-1(y)-422(p)-27(o)-422(n)1(im)-422(m)-1(o\\273e)-1(cie)-422(o)-28(debr)1(a\\242)-423(u)]TJ 0 -13.55 Td[(nacze)-1(ln)1(ik)56(a)-334(w)-333(p)-28(o)28(wiec)-1(i)1(e)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-438(Gr)1(z)-1(ela)-438(n)1(ie)-438(\\273)-1(yj)1(e)-1(!)-437(Lab)-28(oga!)-437(T)83(aki)-438(m\\252o)-28(d)1(y)-438(i)-438(zdr)1(\\363)27(w!)-438(A)-437(to)-438(m)27(u)-437(b)28(y\\252o)-438(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(na)-422(dwud)1(z)-1(i)1(e)-1(st)28(y)-423(sz)-1(\\363st)28(y)83(.)-422(Mi)1(a\\252)-423(ju)1(\\273)-423(w)-1(r)1(\\363)-28(ci\\242)-423(w)27(e)-423(\\273niw)28(a.)-422(Utopi\\252)-422(s)-1(i\\246,)-422(w)27(e)-423(w)28(o)-28(dzie!)-423(Jez)-1(u)]TJ 0 -13.549 Td[(mi\\252os)-1(i)1(e)-1(rn)29(y!)-333({)-334(j)1(\\246)-1(k)1(n\\246\\252)-1(a)-333(za\\252am)27(uj)1(\\241c)-334(r\\246ce)-1(,)-333(sro)-28(dze)-334(b)-27(o)28(w)-1(i)1(e)-1(m)-333(s)-1(tr)1(api\\252a)-333(j\\241)-333(ta)-333(w)-1(i)1(adomo\\261)-1(\\242.)]TJ 27.879 -13.549 Td[({)-299(C)-1(o\\261)-299(letk)28(o)-300(w)28(ama)-300(id)1(\\241)-299(s)-1(c)28(hedy)84(,)-300(l)1(e)-1(tk)28(o!)-299({)-299(ozw)27(a\\252)-299(s)-1(i\\246)-299(drwi\\241co)-299(Mateusz)-1(.)-299({)-299(T)83(eraz)]TJ -27.879 -13.549 Td[(jeno)-333(wygo\\253cie)-334(J)1(\\363z)-1(k)28(\\246,)-333(a)-334(j)1(u\\273)-334(wsz)-1(ystk)28(o)-333(b)-28(\\246dzie)-334(w)28(as)-1(ze)-334(a)-333(k)28(o)28(w)27(alo)28(w)28(e)-1(.)1(..)]TJ 27.879 -13.55 Td[({)-366(S)1(k)28(o\\253cz)-1(y\\252e\\261)-366(to)-366(z)-366(T)83(ere)-1(sk)56(\\241,)-366(co)-366(ju)1(\\273)-366(o)-366(Jagu)1(s)-1(i)-365(z)-1(am)28(y\\261)-1(l)1(as)-1(z?)-366({)-366(o)-28(d)1(c)-1(i\\246\\252a)-366(si\\246)-1(,)-365(ja\\273e)]TJ -27.879 -13.549 Td[(m\\252ynar)1(z)-334(gruc)28(hn)1(\\241\\252)-334(\\261m)-1(i)1(e)-1(c)28(hem)-1(,)-333(a)-333(on)-333(c)-1(o\\261)-333(pil)1(nie)-334(j)1(\\241\\252)-334(ma)-56(j)1(dr)1(o)27(w)28(a\\242)-334(k)28(ole)-333(pi\\252y)84(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(a)-334(si\\246)-334(zje\\261)-1(\\242)-334(w)-333(k)56(as)-1(zy)83(,)-333(c)28(h)28(w)27(at)-333(b)1(aba)-333({)-334(p)-27(o)28(wie)-1(d)1(z)-1(ia\\252)-333(za)-334(n)1(i\\241)-333(m)-1(\\252yn)1(arz.)]TJ 0 -13.549 Td[(Wst\\241)-28(p)1(i\\252a)-369(p)-27(o)-369(dr)1(o)-28(dze)-369(do)-369(M)1(agdy)84(,)-369(kt)1(\\363ra)-369(u)1(s)-1(\\252ysz)-1(a)28(ws)-1(zy)-369(n)1(o)28(w)-1(i)1(n\\246)-369(rozp\\252ak)56(a\\252a)-369(si\\246)]TJ -27.879 -13.549 Td[(i)-333(c)27(h)1(lip)1(i\\241c)-334(rze)-1(wli)1(w)-1(i)1(e)-1(,)-333(m\\363)27(wi\\252a)-333(pr)1(z)-1(ez)-334(\\252zy:)]TJ 27.879 -13.55 Td[({)-358(W)84(ola)-357(b)-28(osk)56(a,)-358(moi)-358(d)1(ro)-28(d)1(z)-1(y)84(.)-358(J)1(u\\261c)-1(i,)-357(c)27(h)1(\\252op)-358(j)1(ak)-358(d)1(\\241b,)-357(jak)-357(ma\\252o)-358(kt\\363r)1(e)-1(n)-357(w)-358(Lip)1(-)]TJ -27.879 -13.549 Td[(cac)27(h,)-350(o)-351(d)1(olo)-351(cz)-1(\\252o)28(wiek)28(o)27(w)28(a,)-350(dolo)-350(nies)-1(zc)-1(z\\246s)-1(n)1(a!)-351(Dzi\\261)-351(\\273yjes)-1(z,)-351(a)-350(ju)1(tro)-350(gnij)1(e)-1(sz)-1(.)-350(T)83(o)-351(j)1(u\\273)]TJ 0 -13.549 Td[(Mi)1(c)27(ha\\252)-325(p)-28(o)-55(jedzie)-326(p)-27(o)-325(te)-326(rze)-1(cz)-1(y)-325(p)-27(o)-325(nim,)-325(c)-1(o)-325(ma)-56(j)1(\\241)-326(p)1(rze)-1(p)1(a\\261)-1(\\242.)-325(C)-1(h)29(udziasz)-1(ek,)-325(a)-325(tak)-325(s)-1(i\\246)]TJ 0 -13.549 Td[(dar)1(\\252)-334(d)1(o)-334(d)1(om)27(u)1(!...)]TJ 27.879 -13.549 Td[({)-359(Wsz)-1(y)1(s)-1(tk)28(o)-359(w)-359(b)-27(os)-1(k)1(im)-359(r\\246ku.)-358(A)-359(do)-359(w)28(o)-28(dy)-358(to)-359(z)-1(a)28(wdy)-358(s)-1(zc)-1(z\\246\\261)-1(cia)-359(ni)1(e)-360(mia\\252,)-359(b)1(a-)]TJ -27.879 -13.55 Td[(cz)-1(ycie)-400(to,)-399(jak)-399(si\\246)-400(topi)1(\\252)-400(w)27(e)-400(sta)28(wie)-400(c)-1(o)-399(go)-400(t)1(o)-400(ledwie)-400(K\\252\\241b)-399(wyr)1(ato)27(w)28(a\\252?)-400(Sn)1(ad\\271)-400(j)1(u\\273)]TJ 0 -13.549 Td[(m)27(u)-332(b)28(y\\252o)-333(pisane)-334(zgin)1(\\241\\242)-334(o)-28(d)-333(n)1(ie)-1(j)1(!)]TJ 27.879 -13.549 Td[(Wy\\273ali\\252y)-357(si\\246,)-357(s)-1(p)1(\\252ak)55(a\\252y)-357(i)-356(roz)-1(esz)-1(\\252y)84(,)-357(b)-28(o)-28(\\242)-357(k)56(a\\273)-1(d)1(a)-357(m)-1(ia\\252a)-357(d)1(os)-1(y\\242)-357(s)-1(w)28(oic)27(h)-356(c)-1(o)-27(dzie)-1(n)1(-)]TJ -27.879 -13.549 Td[(n)28(yc)28(h)-333(tur)1(bacji)-333(a)-333(z)-1(ab)1(ie)-1(g\\363)28(w,)-333(z)-1(w\\252asz)-1(cz)-1(a)-333(Hank)56(a.)]TJ 27.879 -13.549 Td[(A)-391(p)-27(o)-391(w)-1(si)-391(w)-391(mig)-391(s)-1(i)1(\\246)-392(r)1(oz)-1(n)1(ie)-1(s\\252y)-391(te)-391(no)28(win)28(y)84(,)-391(\\273)-1(e)-391(s)-1(c)28(ho)-28(d)1(z)-1(\\241c)-391(z)-392(p)-27(\\363l)-391(o)-391(zmie)-1(r)1(z)-1(c)28(h)28(u,)]TJ -27.879 -13.55 Td[(ju)1(\\273)-291(s)-1(ob)1(ie)-292(o)-290(t)28(ym)-291(roz)-1(p)-27(o)28(wiadal)1(i;)-291(j)1(u\\261c)-1(i,)-290(\\273)-1(e)-291(Gr)1(z)-1(eli)-291(sielnie)-291(\\273a\\252o)27(w)28(ano,)-290(c)-1(o)-291(za\\261)-291(do)-291(Jagu)1(s)-1(i)1(,)]TJ 0 -13.549 Td[(wie\\261)-260(si\\246)-259(rozp)-28(o\\252o)28(wi\\252a,)-259(wsz)-1(ystkie)-259(b)-27(o)28(w)-1(i)1(e)-1(m)-259(k)28(obi)1(e)-1(t)28(y)84(,)-259(z)-1(w\\252asz)-1(cz)-1(a)-259(starsze)-1(,)-258(w)-1(zi\\246\\252)-1(y)-258(s)-1(t)1(ron\\246)]TJ 0 -13.549 Td[(Hank)1(i,)-413(z)-1(a)-55(jad)1(le)-414(p)-27(o)28(ws)-1(ta)-55(j\\241c)-413(na)-413(Jagusi\\246,)-413(z)-1(a)-413(kt\\363r)1(\\241,)-413(c)27(h)1(o)-28(c)-1(i)1(a\\273)-414(ni)1(e)-1(\\261m)-1(i)1(a\\252)-1(o,)-412(op)-28(o)28(wiadal)1(i)]TJ 0 -13.549 Td[(si\\246)-334(c)27(h)1(\\252opi,)-333(\\273e)-334(ju)1(\\273)-334(z)-334(tego)-333(m)-1(iejscam)-1(i)-333(p)1(rz)-1(y)1(c)27(ho)-27(dzi\\252o)-334(d)1(o)-334(sw)28(ar\\363)28(w)-1(.)1(..)]TJ 27.879 -13.549 Td[(A)-289(n)1(im)-289(w)-1(i)1(e)-1(cz)-1(\\363r)-288(z)-1(ap)1(ad\\252,)-288(ju\\273)-289(n)1(a)-289(ws)-1(i)-288(h)28(ucz)-1(a\\252o)-289(k)1(ie)-1(j)-288(w)-289(ul)1(u)-289(ku)1(m)27(y)-288(le)-1(cia\\252y)-289(d)1(o)-289(ku)1(m)]TJ -27.879 -13.55 Td[(na)-457(p)-27(ored\\246,)-458(p)-27(oni)1(e)-1(kt)1(\\363re)-458(kr)1(z)-1(yk)56(a\\252y)-457(do)-457(s)-1(i)1(\\246)-458(pr)1(z)-1(ez)-458(p\\252ot)28(y)-457(i)-457(s)-1(ad)1(y)83(,)-457(to)-457(do)-55(j\\241c)-458(kr)1(o)27(wy)-457(w)]TJ 0 -13.549 Td[(op\\252otk)56(ac)28(h)-279(rai)1(\\252y)-279(z)-279(pr)1(z)-1(ec)27(ho)-27(dz\\241c)-1(ymi.)-278(Zm)-1(ierzc)27(h)-278(s)-1(i)1(\\246)-280(czyni\\252)-279(l)1(ub)28(y)84(,)-279(p)1(ac)27(h)1(n\\241cy)-279(b)-27(o)27(wiem)-279(a)]TJ 0 -13.549 Td[(c)27(h)1(\\252o)-28(dn)1(a)28(w)-1(y)84(,)-310(n)1(ie)-1(b)-27(o)-310(wisia\\252o)-310(jes)-1(zcz)-1(e)-310(c)-1(a\\252e)-310(w)-310(bl)1(adym)-310(z\\252)-1(o)-27(c)-1(ie)-310(zac)27(ho)-27(du,)-309(z)-310(p)-28(\\363l)-309(nies)-1(\\252y)-309(s)-1(i\\246)]TJ 0 -13.549 Td[(strzyk)56(ania)-229(k)28(on)1(ik)28(\\363)27(w)-229(i)-229(g\\252osy)-229(pr)1(z)-1(epi\\363r)1(e)-1(k)1(,)-229(a)-229(p)-28(o)-229(ro)28(w)28(ac)27(h)-229(i)-228(bagnac)28(h)-229(se)-1(n)1(nie)-229(n)28(uk)56(a\\252y)-229(\\273ab)28(y)84(.)]TJ 0 -13.549 Td[(Dzie)-1(ci\\253)1(s)-1(ki)1(e)-345(wrza)28(wy)83(,)-343(\\261)-1(p)1(ie)-1(wki)1(,)-344(to)-344(p)-27(oryk)1(i)-344(b)28(y)1(d\\252a,)-344(r)1(\\273)-1(enia,)-343(b)-28(eki,)-343(g\\246)-1(got)28(y)-343(i)-344(tu)1(rk)28(otan)1(ia)]TJ 0 -13.549 Td[(w)28(oz)-1(\\363)28(w)-433(trz\\246)-1(s\\252y)-433(si\\246)-433(nad)-432(ws)-1(i)1(\\241,)-433(za\\261)-433(p)-28(o)-432(drogac)28(h,)-432(nad)-432(s)-1(ta)28(w)28(e)-1(m)-433(i)-432(k)56(a)-56(j)-432(s)-1(i\\246)-433(kt)1(o)-433(z)-433(kim)]TJ 0 -13.55 Td[(ze)-1(tkn)1(\\241\\252,)-287(r)1(a)-56(j)1(c)-1(o)28(w)28(ano)-287(za)28(wz)-1(i\\246c)-1(i)1(e)-287(o)-287(wyp)1(adk)56(ac)27(h)1(,)-287(to)-286(o)-287(t)28(y)1(m)-1(,)-286(z)-287(cz)-1(ym)-286(c)27(h\\252op)1(i)-287(p)-27(o)28(wr\\363)-28(c\\241)-287(o)-28(d)]TJ 0 -13.549 Td[(dziedzica.)]TJ 27.879 -13.549 Td[(Mateusz)-420(wraca)-56(j\\241cy)-419(z)-420(tartaku)-419(n)1(as)-1(\\252uc)28(hiw)28(a\\252)-420(tu)-419(i)-419(o)27(wd)1(z)-1(ie)-420(al)1(e)-420(jeno)-420(spl)1(u)28(w)27(a\\252,)]TJ -27.879 -13.549 Td[(kl\\241\\252)-325(z)-325(cic)27(h)1(a)-325(i)-325(wymija\\252)-325(r)1(oz)-1(gad)1(ane)-325(kum)28(y)83(,)-324(dopi)1(e)-1(r)1(o)-325(p)28(yskuj)1(\\241c)-1(e)-325(pr)1(z)-1(ed)-325(P)1(\\252os)-1(zk)56(am)-1(i)-324(tak)]TJ 0 -13.549 Td[(go)-333(roze)-1(\\271li\\252y)83(,)-333(\\273e)-334(si\\246)-334(j)1(u\\273)-334(wstrzym)-1(a\\242)-333(nie)-333(p)-28(or)1(e)-1(dzi\\252)-333(i)-333(p)-28(o)28(wiedzia\\252)-334(wzbu)1(rzon)28(y:)]TJ 27.879 -13.55 Td[({)-271(Hank)56(a)-272(n)1(ie)-272(mia\\252a)-271(pra)28(w)28(a)-272(j)1(e)-1(j)-271(wygan)1(ia\\242,)-272(n)1(a)-271(s)-1(w)28(oim)-272(sie)-1(d)1(z)-1(i)1(a\\252a.)-272(An)29(tk)28(o)27(w)28(a)-271(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(za)-334(tak)56(\\241)-333(\\261)-1(tu)1(k)28(\\246)-334(dob)1(rze)-334(p)-27(os)-1(iedzie\\242)-334(i)-333(z)-1(ap)1(\\252ac)-1(i)1(\\242)-1(!)]TJ\nET\nendstream\nendobj\n2003 0 obj <<\n/Type /Page\n/Contents 2004 0 R\n/Resources 2002 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n2002 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2007 0 obj <<\n/Length 8277      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(628)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zakrzycz)-1(a\\252a)-333(go)-333(grub)1(a,)-333(roz)-1(cze)-1(rwieni)1(ona)-333(P\\252osz)-1(k)28(o)28(w)28(a:)]TJ 0 -13.549 Td[({)-338(Han)1(k)56(a)-338(gron)28(t)1(u)-338(j)1(e)-1(j)-337(n)1(ie)-338(z)-1(ap)1(ie)-1(r)1(a,)-338(wiad)1(om)-1(o!)-337(Ale)-338(\\273e)-338(An)28(te)-1(k)-337(leda)-337(dzie)-1(\\253)-337(wr\\363)-28(ci,)]TJ -27.879 -13.549 Td[(to)-263(cze)-1(go)-263(i)1(nsz)-1(ego)-263(si\\246)-263(b)-28(o)-55(ja\\252a!)-262(Hale,)-263(u)1(piln)29(uj)1(e)-264(t)1(o)-263(domo)28(w)27(ego)-263(z\\252o)-28(dzieja!)-262(A)-263(mo\\273)-1(e)-263(mia\\252a)]TJ 0 -13.549 Td[(pat)1(rz)-1(e\\242)-334(p)1(rze)-1(z)-334(sitk)28(o,)-333(co?)]TJ 27.879 -13.549 Td[({)-296(I..)1(.)-296(gr)1(a\\252,)-296(a)-296(t)1(ra)28(w)-1(y)-295(si\\246)-296(dzie)-1(r)1(\\273)-1(a\\252,)-295(wie)-1(cie!)-296(G)1(adacie)-1(,)-295(c)-1(o)-295(w)27(ama)-296(\\261lin)1(a)-296(p)1(rz)-1(y)1(nies)-1(i)1(e)-1(,)]TJ -27.879 -13.55 Td[(ale)-334(n)1(ie)-334(ze)-334(spra)28(wiedli)1(w)27(o\\261c)-1(i,)-333(a)-333(jeno)-333(p)1(rz)-1(ez)-334(cz)-1(y)1(s)-1(t\\241)-333(z)-1(azdr)1(o\\261)-1(\\242!)]TJ 27.879 -13.549 Td[(Jakb)29(y)-334(wr)1(az)-1(i\\252)-333(kij)-333(mi\\246dzy)-333(os)-1(y)84(,)-333(tak)-333(s)-1(i\\246)-333(w)-1(szys)-1(tk)1(ie)-334(rzuci\\252y)-333(na)-333(ni)1(e)-1(go.)]TJ 0 -13.549 Td[({)-467(A)-468(cz)-1(ego\\273)-468(to)-467(m)-1(am)28(y)-468(j)1(e)-1(j)-467(zazdro\\261c)-1(i)1(\\242)-1(,)-467(co?)-468(Cz)-1(ego?)-468(\\233e)-468(lata)28(wica)-468(i)-467(t\\252uk)1(,)-468(\\273e)]TJ -27.879 -13.549 Td[(gani)1(ac)-1(ie)-416(za)-416(ni\\241)-416(k)1(ie)-1(j)-415(te)-416(psy)83(,)-415(\\273)-1(e)-416(k)56(a\\273)-1(d)1(y)-416(b)28(y)-416(d)1(o)-416(ni)1(e)-1(j)-415(rad)-416(p)-27(o)-28(d)-415(pi)1(e)-1(rzyn)1(\\246)-1(,)-416(\\273e)-416(w)-1(st)28(yd)-415(i)]TJ 0 -13.549 Td[(obr)1(az)-1(a)-333(b)-27(os)-1(k)56(a)-333(przez)-334(ni\\241)-333(id)1(z)-1(ie)-333(na)-333(c)-1(a\\252\\241)-333(wie)-1(\\261,)-333(c)-1(o?)]TJ 27.879 -13.549 Td[({)-305(Mo\\273e)-306(i)-304(te)-1(go)-305(w)28(am)-306(\\273al,)-305(p)1(ie)-1(s)-305(ta)-305(w)28(as)-306(wyrozumie!)-305(P)28(omiet\\252y)-305(ju)1(c)27(h)28(y)84(,)-305(s)-1(t)1(rac)27(h)-304(im)]TJ -27.879 -13.55 Td[(s\\252)-1(o\\253)1(c)-1(a.)-384(A)-385(b)28(yc)28(h)-385(b)29(y\\252a)-385(kiej)-385(M)1(agda)-385(z)-385(k)56(arcz)-1(m)28(y)-385(i)-385(r)1(obi\\252a)-385(co)-385(na)-55(jgor)1(s)-1(ze)-1(,)-384(to)-385(b)28(y\\261cie)-386(j)1(e)-1(j)]TJ 0 -13.549 Td[(pr)1(z)-1(epu)1(\\261)-1(ci\\252y)84(,)-363(ale)-363(\\273)-1(e)-363(ur)1(o)-28(dn)1(iejsz)-1(a)-363(n)1(ad)-363(wsz)-1(ystkie,)-363(to)-362(k)55(a\\273da)-363(b)29(y)-363(j\\241)-362(z)-364(osobn)1(a)-363(utop)1(i\\252a)]TJ 0 -13.549 Td[(w)-334(\\252y)1(\\273)-1(ce)-334(w)27(o)-27(dy)84(.)]TJ 27.879 -13.549 Td[(Roz)-1(j)1(az)-1(got)1(a\\252)-1(y)-333(si\\246)-334(n)1(ad)-333(nim,)-333(ja\\273e)-334(m)28(usia\\252)-334(u)1(c)-1(i)1(e)-1(k)56(a\\242.)]TJ 0 -13.549 Td[({)-435(\\233eb)28(y)-434(w)27(am,)-435(p)1(s)-1(i)1(e)-1(kr)1(wie)-1(,)-434(p)-27(o)-28(o)-28(dp)1(ada\\252y)-434(j\\246z)-1(or)1(y!)-435({)-434(kl\\241\\252)-434(i)-435(p)1(rz)-1(ec)27(h)1(o)-28(dz\\241c)-435(mim)-1(o)]TJ -27.879 -13.55 Td[(dom)28(u)-318(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-318(za)-56(j)1(rz)-1(a\\252)-318(w)-319(ot)28(w)27(ar)1(te)-319(okna.)-318(W)-318(iz)-1(b)1(ie)-319(si\\246)-319(\\261)-1(wiec)-1(i)1(\\252)-1(o,)-318(Jagu)1(s)-1(i)-318(jedn)1(ak)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(e\\242)-232(n)1(ie)-232(m\\363g\\252,)-231(a)-231(w)27(ej\\261\\242)-232(si\\246)-232(w)28(ago)28(w)27(a\\252,)-231(wi\\246c)-232(w)28(e)-1(stc)27(h)1(n\\241\\252)-231(jeno,)-231(za)27(wr)1(ac)-1(a)-55(j\\241c)-232(k)1(u)-231(s)-1(w)28(o)-56(j)1(e)-1(j)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-1(,)-333(ale)-333(jak)28(o\\261)-334(p)-27(okr\\363t)1(c)-1(e)-334(n)1(atkn)1(\\241\\252)-334(si\\246)-334(n)1(a)-334(W)84(e)-1(r)1(onk)28(\\246,)-334(i)1(d\\241c\\241)-334(d)1(o)-334(siostry)84(.)]TJ 27.879 -13.549 Td[({)-356(Dop)1(ie)-1(r)1(o)-356(c)-1(o)-356(b)29(y\\252am)-357(u)-355(w)27(as.)-356(S)1(tac)27(h)1(o)-356(drzew)27(o)-356(ob)1(robi)1(\\252)-356(i)-356(d\\363\\252)-356(wyk)28(op)1(a\\252,)-356(m)-1(o\\273na)]TJ -27.879 -13.549 Td[(b)28(y)-333(rzn\\241\\242,)-333(kiedy)-333(p)1(rz)-1(y)1(jd)1(z)-1(iec)-1(i)1(e)-1(?)]TJ 27.879 -13.55 Td[({)-433(Kiedy)1(?)-434(A)-433(mo\\273e)-434(n)1(a)-434(\\261wi\\246t)27(y)-432(nigd)1(y)83(.)-433(T)84(ak)-433(m)-1(i)-432(ju\\273)-433(wie)-1(\\261)-433(mie)-1(r)1(z)-1(n)1(ie)-1(,)-432(\\273)-1(e)-433(c)27(heba)]TJ -27.879 -13.549 Td[(pr)1(as)-1(n)1(\\246)-336(w)-1(szys)-1(tk)28(o)-335(o)-336(ziem)-336(i)-336(p)-27(\\363)-56(j)1(d\\246,)-336(k)56(a)-55(j)-336(mn)1(ie)-336(o)-28(c)-1(zy)-335(p)-28(on)1(ie)-1(s\\241)-336({)-335(z)-1(ak)1(rz)-1(y)1(c)-1(za\\252)-336(gni)1(e)-1(wni)1(e)-336(i)]TJ 0 -13.549 Td[(p)-27(ole)-1(cia\\252.)]TJ 27.879 -13.549 Td[({)-289(Dobr)1(z)-1(e)-289(go)-290(cos)-1(i)1(k)-289(ugry)1(z)-1(\\252o,)-289(kiej)-289(si\\246)-290(tak)-289(b)1(z)-1(d)1(ycy!)-289({)-290(m)28(y\\261la\\252a)-289(z)-1(wraca)-56(j)1(\\241c)-290(s)-1(i)1(\\246)-290(do)]TJ -27.879 -13.549 Td[(Boryn)1(\\363)27(w.)]TJ 27.879 -13.55 Td[(Hank)56(a)-375(sprz\\241ta\\252a)-375(ju)1(\\273)-376(p)-27(o)-375(k)28(olac)-1(j)1(i,)-375(ale)-375(z)-1(araz)-375(j\\241)-375(wz)-1(i)1(\\246)-1(\\252a)-375(na)-375(b)-27(ok,)-375(op)-27(o)28(w)-1(i)1(ada)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(ws)-1(zystk)28(o,)-403(jak)-402(b)28(y\\252o.)-403(W)84(e)-1(r)1(onk)56(a)-403(z)-403(roz)-1(m)28(ys\\252e)-1(m)-403(p)-28(omin)1(\\246)-1(\\252a)-403(Jagu)1(s)-1(i)1(n\\241)-403(spra)28(w)28(\\246)-1(,)-403(a)-402(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252a)-334(o)-333(Grzeli:)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(p)-28(omar\\252,)-333(to)-333(w)27(am)-333(jego)-334(cz\\246)-1(\\261\\242)-334(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)-333(d)1(o)-334(d)1(z)-1(i)1(a\\252)-1(u)1(.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(j)1(e)-1(sz)-1(cze)-1(c)27(h)-332(o)-334(t)28(ym)-333(nie)-334(p)-27(om)28(y\\261)-1(l)1(a\\252)-1(am.)]TJ 0 -13.55 Td[({)-330(A)-331(z)-331(t)28(ym,)-330(c)-1(o)-330(dzie)-1(d)1(z)-1(i)1(c)-331(m)27(u)1(s)-1(i)-330(da\\242)-331(za)-331(l)1(as)-1(,)-330(to)-330(p)-28(o)-330(jaki)1(e)-331(p)-28(\\363\\252w\\252\\363)-28(cz)-1(ku)-330(wyp)1(adn)1(ie)]TJ -27.879 -13.549 Td[(na)-346(k)55(a\\273dego,)-347(t)1(ro)-56(j)1(e)-347(w)27(as)-347(jeno!)-346(M\\363)-55(j)-347(Bo\\273)-1(e,)-347(b)-27(ogat)28(ym)-347(to)-347(i)-346(cudza)-347(\\261m)-1(i)1(e)-1(r\\242)-347(n)1(a)-347(pr)1(o\\014t)-346(s)-1(i\\246)]TJ 0 -13.549 Td[(obr)1(ac)-1(a)-333({)-333(w)27(es)-1(tc)28(hn)1(\\246)-1(\\252a)-333(\\273)-1(a\\252o\\261nie.)]TJ 27.879 -13.549 Td[({)-359(Co)-360(mi)-359(tam)-359(b)-28(ogact)28(w)27(o!)-359({)-359(b)1(roni)1(\\252a)-360(si\\246)-360(Han)1(k)56(a,)-359(lec)-1(z)-360(sk)28(oro)-359(si\\246)-360(p)-27(orozc)27(h)1(o)-28(dzili)]TJ -27.879 -13.549 Td[(spa\\242,)-334(wzi\\246\\252)-1(a)-333(rac)28(ho)28(w)27(a\\242)-333(p)-28(o)-333(sw)27(o)-55(jem)27(u)-333(i)-333(skrycie)-334(si\\246)-334(cies)-1(zy\\242)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-334(p)-27(ote)-1(m)-333(kl\\246k)56(a)-56(j\\241c)-333(do)-333(pacie)-1(r)1(z)-1(\\363)28(w)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(z)-334(r)1(e)-1(zygnacj\\241:)]TJ 0 -13.55 Td[({)-273(A)-274(sk)28(oro)-273(ju)1(\\273)-274(p)-27(om)-1(ar)1(\\252)-1(,)-273(to)-273(j)1(u\\273)-274(tak)56(a)-273(b)28(y\\252a)-273(w)27(ola)-273(b)-27(os)-1(k)56(a.)-273({)-273(I)-274(sz)-1(cz)-1(erze)-274(w)28(e)-1(stc)27(h)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(za)-334(j)1(e)-1(go)-333(du)1(s)-1(z\\246)-1(.)]TJ 27.879 -13.549 Td[(Naza)-56(ju)1(trz)-333(k)28(ole)-334(p)-27(o\\252udn)1(ia)-333(w)-1(sze)-1(d)1(\\252)-334(d)1(o)-334(izb)28(y)-333(Jam)28(bro\\273y)83(.)]TJ 0 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e\\261)-1(cie)-334(t)1(o)-334(c)28(ho)-28(d)1(z)-1(il)1(i?)-334({)-333(s)-1(p)29(yta\\252a)-333(roz)-1(p)1(ala)-55(j\\241c)-334(ogie\\253)-333(na)-333(k)28(omini)1(e)-1(.)]TJ 0 -13.549 Td[({)-364(U)-363(Koz\\252\\363)27(w)-363(b)28(y\\252e)-1(m,)-363(dzie)-1(c)28(k)28(o)-364(si\\246)-364(im)-364(op)1(arzy\\252o)-364(n)1(a)-364(\\261)-1(mier\\242.)-364(W)84(o\\252a\\252a)-364(mnie,)-363(ale)]TJ -27.879 -13.55 Td[(tam)-334(j)1(u\\273)-333(jeno)-333(trumn)28(y)-333(p)-27(otrza)-333(i)-334(p)-27(o)-28(c)28(ho)28(wku.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363re\\273)-334(to?)]TJ\nET\nendstream\nendobj\n2006 0 obj <<\n/Type /Page\n/Contents 2007 0 R\n/Resources 2005 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n2005 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2010 0 obj <<\n/Length 5951      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(629)]TJ -330.353 -35.866 Td[({)-466(A)-465(to)-466(mni)1(e)-1(j)1(s)-1(ze)-1(,)-465(c)-1(o)-465(je)-466(na)-465(z)-1(wies)-1(n)1(\\246)-466(przywiez)-1(\\252a)-465(z)-467(W)84(arsia)28(wy)83(.)-465(Wpad)1(\\252o)-466(do)]TJ -27.879 -13.549 Td[(grap)29(y)-334(z)-333(ukr)1(op)-28(em)-334(i)-333(pr)1(a)28(w)-1(i)1(e)-334(s)-1(i)1(\\246)-334(ugoto)28(w)28(a\\252o.)]TJ 27.879 -13.549 Td[({)-333(C)-1(osik)-333(n)1(ie)-334(wiedz)-1(i)1(e)-334(s)-1(i)1(\\246)-334(jej)-333(z)-334(t)28(ymi)-333(z)-1(n)1(a)-56(j)1(dami.)]TJ 0 -13.549 Td[({)-356(A)-355(nie)-356(wiedzie)-1(.)-355(Nie)-356(tr)1(ac)-1(i)-355(ona)-356(n)1(a)-356(t)28(ym,)-356(d)1(a)-56(j)1(\\241)-356(n)1(a)-356(p)-27(o)-28(c)27(h)1(o)27(w)28(e)-1(k)1(!)-356(Ale)-356(n)1(ie)-356(z)-356(t)28(ym)]TJ -27.879 -13.549 Td[(do)-333(w)28(as)-334(pr)1(z)-1(ysz)-1(ed\\252em.)]TJ 27.879 -13.55 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-334(n)1(a)-334(n)1(ie)-1(go)-333(n)1(ie)-1(sp)-27(ok)28(o)-56(jn)1(e)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-459(Wi)1(e)-1(cie,)-459(Domini)1(k)28(o)27(w)28(a)-459(p)-27(o)-56(j)1(e)-1(c)28(ha\\252a)-459(z)-459(Jagusi\\241)-459(d)1(o)-459(s\\241du,)-458(p)-28(on)1(o)-459(sk)55(ar)1(\\273)-1(y)1(\\242)-460(w)28(as)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-333(o)-334(wygn)1(anie)-333(c)-1(\\363rk)1(i...)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(iec)27(h)-333(sk)55(ar)1(\\273)-1(y)84(,)-333(c)-1(o)-333(m)-1(i)-333(ta)-333(zrobi)1(!)]TJ 0 -13.549 Td[({)-435(By\\252y)-435(z)-435(ran)1(a)-435(u)-435(sp)-27(o)27(wiedzi,)-435(a)-434(p)-28(otem)-435(d\\252ugo)-434(radzi\\252y)-435(z)-435(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)1(e)-1(m,)-435(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(o)-28(ds\\252uc)28(hiw)28(a\\252e)-1(m)-317(j)1(u\\261c)-1(i,)-316(a)-317(m\\363)28(wi\\246)-1(,)-316(co)-317(me)-317(jeno)-316(dosz)-1(\\252o)-317(p)1(i\\241te)-317(p)1(rz)-1(ez)-317(dzies)-1(i\\241t)1(e)-1(;)-316(tak)-316(s)-1(i\\246)]TJ 0 -13.55 Td[(na)-333(w)28(as)-334(s)-1(k)56(ar\\273y\\252y)84(,)-333(ja\\273e)-334(pr)1(ob)-28(osz)-1(cz)-334(p)1(i\\246)-1(\\261c)-1(i)1(\\241)-334(wygr)1(a\\273)-1(a\\252.)]TJ 27.879 -13.549 Td[({)-285(K)1(s)-1(i\\241d)1(z)-1(,)-284(a)-285(wsadza)-285(nos)-285(w)-285(cud)1(z)-1(e)-285(spr)1(a)27(wy!)-284({)-285(wyr)1(z)-1(ek\\252a)-285(p)-27(oryw)28(cz)-1(o,)-284(tak)-285(j)1(e)-1(d)1(nak)]TJ -27.879 -13.549 Td[(zgryziona)-453(t\\241)-452(w)-1(iad)1(omo\\261)-1(ci\\241,)-453(\\273e)-454(ca\\252y)-453(dzie\\253)-453(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-453(k)1(ie)-1(j)-452(b\\252\\246dn)1(a,)-453(p)-27(e)-1(\\252n)1(a)-453(trw)28(\\363g)-453(i)]TJ 0 -13.549 Td[(na)-55(jgor)1(s)-1(zyc)27(h)-333(p)1(rzypu)1(s)-1(zc)-1(ze\\253.)]TJ 27.879 -13.549 Td[(O)-333(s)-1(am)28(ym)-334(mrok)1(u)-333(jaki)1(\\261)-334(w)27(\\363z)-333(przystan\\241\\252)-333(pr)1(z)-1(ed)-333(op\\252otk)56(ami.)]TJ 0 -13.55 Td[(Wyl)1(e)-1(cia\\252a)-333(z)-334(c)27(h)1(a)-1(\\252u)1(p)28(y)-333(z)-1(estrac)27(h)1(ana)-333(i)-333(dygo)-27(c)-1(\\241ca,)-333(w)27(\\363)-55(jt)-333(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(na)-333(br)1(yce)-1(.)]TJ 0 -13.549 Td[({)-332(O)-331(Grzeli)-332(j)1(u\\273)-332(wiec)-1(ie!)-332({)-331(z)-1(acz)-1(\\241\\252.)-331({)-332(No,)-331(nies)-1(zc)-1(z\\246\\261)-1(cie)-332(i)-332(t)28(yl)1(a!)-332(Ale)-332(mam)-332(la)-332(w)28(as)]TJ -27.879 -13.549 Td[(i)-333(dob)1(r\\241)-333(no)28(win\\246:)-333(oto)-333(dzis)-1(i)1(a)-56(j)-333(ab)-27(o)-334(n)1(a)-56(j)1(dalej)-333(ju)1(tro)-333(p)-27(o)27(wr)1(\\363)-28(c)-1(i)-333(An)28(t)1(e)-1(k!)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(zw)27(o)-28(d)1(z)-1(i)1(c)-1(ie)-333(m)-1(n)1(ie)-334(ab)28(y)1(?)-334({)-333(nie)-333(\\261)-1(mia\\252a)-333(ju\\273)-333(z)-1(a)28(wie)-1(r)1(z)-1(y)1(\\242)-1(.)]TJ 0 -13.549 Td[({)-333(W)83(\\363)-55(jt)-333(w)27(ama)-333(m)-1(\\363)28(wi,)-333(to)-333(wie)-1(r)1(z)-1(cie!)-334(w)-333(ur)1(z)-1(\\246dzie)-334(mi)-333(p)-28(o)28(wiedzie)-1(l)1(i...)]TJ 0 -13.55 Td[({)-330(T)84(o)-330(i)-329(dob)1(rz)-1(e,)-329(kiej)-329(w)-1(r)1(ac)-1(a,)-329(na)-55(jwi\\246ks)-1(za)-330(p)-27(ora!)-329({)-329(m)-1(\\363)28(wi\\252a)-330(c)28(h\\252o)-28(d)1(no,)-329(jakb)29(y)-330(ca\\252-)]TJ -27.879 -13.549 Td[(kiem)-334(b)-27(ez)-334(rado\\261ci,)-333(a)-334(w)28(\\363)-56(j)1(t)-333(p)-28(ome)-1(d)1(yto)28(w)28(a\\252)-334(cos)-1(ik)-333(i)-333(p)-27(om)-1(\\363)28(wi\\252)-333(wie)-1(l)1(c)-1(e)-334(p)1(rzyjaciels)-1(k)28(o:)]TJ 27.879 -13.549 Td[({)-413(\\231le)-1(\\261c)-1(i)1(e)-414(s)-1(ob)1(ie)-414(p)-27(o)-28(cz)-1(\\246li)-413(z)-414(Jagu)1(s)-1(i\\241!)-413(Ju)1(\\273)-414(na)-413(w)28(as)-414(wnies)-1(\\252a)-413(sk)55(ar)1(g\\246)-1(,)-413(mog\\241)-414(w)28(as)]TJ -27.879 -13.549 Td[(p)-27(ok)55(ar)1(a\\242)-267(za)-266(sam)-1(o)28(w)28(ol\\246)-267(i)-265(gw)27(a\\252t.)-265(Nie)-266(m)-1(ieli\\261cie)-267(p)1(ra)28(w)27(a)-265(jej)-266(ru)1(c)27(h)1(a\\242)-1(,)-265(s)-1(iedzia\\252a)-266(n)1(a)-266(s)-1(w)28(oim.)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-411(to)-410(b)-28(\\246dzie,)-411(j)1(ak)-411(An)29(te)-1(k)-410(wr\\363)-28(ci,)-410(a)-411(w)28(as)-411(ws)-1(ad)1(z)-1(\\241!)-410(Z)-411(cz)-1(y)1(s)-1(tego)-411(p)1(rzyjaciels)-1(t)28(w)28(a)]TJ 0 -13.55 Td[(w)28(am)-355(radz\\246,)-355(za\\252ag\\363)-28(d\\271c)-1(i)1(e)-355(t\\246)-355(s)-1(p)1(ra)28(w)27(\\246!)-354(Z)-1(r)1(obi\\246,)-354(c)-1(o)-354(jeno)-354(b)-28(\\246d\\246)-355(m\\363g\\252,)-355(ab)29(y)-355(sk)56(arg\\246)-355(o)-28(d)1(e)-1(-)]TJ 0 -13.549 Td[(br)1(a\\252y)-333(z)-1(e)-334(s\\241du)1(,)-333(ale)-334(kr)1(z)-1(ywd)1(\\246)-334(m)27(u)1(s)-1(icie)-334(sami)-333(o)-28(drob)1(i\\242.)]TJ 27.879 -13.549 Td[(Hank)56(a)-333(wypr)1(os)-1(to)28(w)28(a\\252)-1(a)-333(si\\246)-334(i)-333(rze)-1(k)1(\\252a)-334(p)1(rosto)-334(z)-333(m)-1(ostu:)]TJ 0 -13.549 Td[({)-333(Kog\\363\\273)-334(to)-333(br)1(onicie,)-334(p)-27(okr)1(z)-1(ywd)1(z)-1(on)1(e)-1(j)-333(cz)-1(y)-333(sw)27(o)-55(jej)-333(k)28(o)-28(c)27(h)1(ani)1(c)-1(y?)]TJ 0 -13.549 Td[(Sy)1(pn)1(\\241\\252)-334(k)28(on)1(iom)-334(taki)1(e)-334(bat)28(y)84(,)-333(ja\\273e)-334(z)-334(mie)-1(j)1(s)-1(ca)-333(p)-28(on)1(ie)-1(s\\252y!)]TJ\nET\nendstream\nendobj\n2009 0 obj <<\n/Type /Page\n/Contents 2010 0 R\n/Resources 2008 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n2008 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2013 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(630)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(39.)]TJ\nET\nendstream\nendobj\n2012 0 obj <<\n/Type /Page\n/Contents 2013 0 R\n/Resources 2011 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 1998 0 R\n>> endobj\n2011 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2016 0 obj <<\n/Length 7758      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(40)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ale)-258(p)1(rze)-1(z)-257(takie)-258(p)1(rze)-1(r\\363\\273ne)-257(a)-258(ci\\246\\273)-1(ki)1(e)-258(pr)1(z)-1(ej\\261c)-1(i)1(a)-258(Han)1(k)55(a)-257(ca\\252kiem)-258(ni)1(e)-258(m)-1(og\\252a)-257(zas)-1(n\\241\\242)-257(te)-1(j)]TJ 0 -13.549 Td[(no)-27(c)-1(y)84(,)-303(a)-304(p)1(rzy)-303(t)27(y)1(m)-304(ci\\246)-1(gi)1(e)-1(m)-303(s)-1(i\\246)-303(jej)-303(w)-1(i)1(dzia\\252o,)-303(\\273)-1(e)-304(s\\252ysz)-1(y)-303(cz)-1(yj)1(e)-1(\\261)-303(kroki)-303(w)-303(op\\252otk)56(ac)27(h)1(,)-303(to)]TJ 0 -13.549 Td[(na)-338(dr)1(o)-28(dze)-1(,)-338(to)-338(na)28(w)27(et)-338(jakb)28(y)-338(p)-27(o)-28(d)-338(s)-1(am\\241)-339(c)28(ha\\252u)1(p\\241.)-338(Nas)-1(\\252u)1(c)27(hi)1(w)27(a\\252a)-339(z)-339(b)1(ij)1(\\241c)-1(ym)-339(serc)-1(em,)]TJ 0 -13.549 Td[(ale)-269(c)-1(a\\252y)-268(dom)-269(s)-1(p)1(a\\252)-269(g\\252\\246)-1(b)-27(ok)28(o,)-269(n)1(a)27(w)28(et)-269(dzie)-1(ci)-269(n)1(ie)-269(m)-1(at)28(yj)1(as)-1(i)1(\\252y)83(,)-269(n)1(o)-28(c)-269(b)28(y\\252a)-269(g\\252uc)28(ha,)-268(c)27(ho)-27(c)-1(ia\\273)]TJ 0 -13.55 Td[(widn)1(a)28(w)27(a,)-343(gwiazdy)-342(z)-1(agl\\241d)1(a\\252y)-343(w)-343(okna)-342(i)-343(niekiedy)-342(p)-28(osz)-1(u)1(mia\\252y)-343(dr)1(z)-1(ew)27(a,)-342(gdy\\273)-343(jak)28(o\\261)]TJ 0 -13.549 Td[(o)-28(d)-333(same)-1(go)-333(p)-28(\\363\\252n)1(o)-28(c)27(k)56(a)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252)-333(s)-1(i)1(\\246)-334(wiate)-1(r)-333(p)1(rze)-1(d)1(m)27(u)1(c)27(h)28(u)1(j\\241c)-334(ki)1(e)-1(j)-333(n)1(iekiej.)]TJ 27.879 -13.549 Td[(W)-392(iz)-1(b)1(ie)-393(b)28(y)1(\\252)-1(o)-392(du)1(s)-1(zno)-392(i)-393(gor)1(\\241c)-1(o,)-392(z)-1(\\252y)-392(fetor)-392(z)-1(alat)28(yw)28(a\\252)-393(o)-27(d)-393(k)56(acz)-1(\\241t)-392(no)-28(cuj)1(\\241c)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-370(\\252\\363\\273)-1(k)56(ami,)-370(ale)-371(Hance)-371(n)1(ie)-371(c)27(h)1(c)-1(ia\\252o)-370(s)-1(i)1(\\246)-371(ot)28(w)27(or)1(z)-1(y\\242)-371(ok)1(na,)-370(\\261)-1(p)1(ik)-370(ju)1(\\273)-371(j\\241)-370(c)-1(a\\252k)1(ie)-1(m)-370(o)-28(d-)]TJ 0 -13.549 Td[(sz)-1(ed\\252,)-423(parzy\\252a)-423(j\\241)-424(p)1(ierzyna)-423(i)-424(p)-27(o)-28(d)1(usz)-1(ki)-423(zda\\252y)-423(s)-1(i\\246)-424(r)1(oz)-1(p)1(alone)-424(k)1(ie)-1(j)-423(b)1(lac)27(h)29(y)83(,)-423(\\273)-1(e)-424(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(ewraca\\252)-1(a)-340(si\\246)-341(z)-341(b)-27(oku)-340(na)-340(b)-27(ok,)-340(c)-1(oraz)-340(barze)-1(j)-340(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(na,)-340(b)-27(o)-28(\\242)-341(te)-341(p)1(rze)-1(r\\363\\273ne)-340(p)-28(o-)]TJ 0 -13.55 Td[(m)27(y)1(\\261)-1(lu)1(nk)1(i)-250(roi)1(\\252)-1(y)-249(si\\246)-250(w)27(e)-250(g\\252o)28(w)-1(i)1(e)-250(kieb)28(y)-250(mro)28(wisk)28(o,)-250(ob)1(\\252)-1(a\\273\\241c)-250(j\\241)-249(c)-1(a\\252\\241)-250(gor)1(\\241c)-1(ymi)-249(p)-28(otami,)-249(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ejm)28(uj)1(\\241c)-308(taki)1(m)-308(d)1(ygote)-1(m,)-307(\\273e)-308(j)1(u\\273)-308(n)1(ie)-307(m)-1(og\\241c)-307(z)-1(ap)1(ano)28(w)27(a\\242)-307(nad)-306(s)-1(tr)1(ac)27(hem)-308(p)-27(orw)28(a\\252a)]TJ 0 -13.549 Td[(si\\246)-360(nagle)-360(z)-360(\\252\\363\\273k)55(a)-359(i)-360(b)-27(os)-1(o,)-359(w)-360(k)28(osz)-1(u)1(li,)-359(a)-360(z)-1(e)-360(siekier\\241)-360(w)-360(gar)1(\\261)-1(ci,)-359(kt\\363ra)-359(s)-1(i\\246)-360(j)1(ak)28(o\\261)-360(s)-1(ama)]TJ 0 -13.549 Td[(na)28(win)1(\\246)-1(\\252a,)-333(p)-27(os)-1(z\\252a)-334(w)-333(p)-28(o)-27(dw)28(\\363rz)-1(e.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(\\242)-1(k)28(o)-343(tam)-343(sto)-56(j)1(a\\252o)-343(na)-342(roz)-1(cie\\273)-344(wyw)28(arte,)-343(al)1(e)-344(wsz)-1(\\246dy)-342(le)-1(\\273a\\252a)-343(n)1(ie)-1(zg\\252\\246)-1(b)1(iona)]TJ -27.879 -13.55 Td[(cic)27(h)1(o\\261)-1(\\242)-486(\\261)-1(p)1(iku)1(.)-486(P)1(ietrek)-486(c)27(h)1(rap)1(a\\252)-486(rozc)-1(i\\241)-27(gni\\246t)28(y)-486(p)-27(o)-28(d)-485(s)-1(t)1(a)-56(jn)1(i\\241,)-485(k)28(onie)-486(gry)1(z)-1(\\252y)-485(obrok)1(i)]TJ 0 -13.549 Td[(p)-27(obrz\\246kuj)1(\\241c)-391(\\252a\\253cuc)27(h)1(am)-1(i)-390(u)1(\\271)-1(d)1(z)-1(ieni)1(c)-1(,)-390(z)-1(a\\261)-390(kro)28(wy)-391(n)1(ie)-391(p)-27(o)28(w)-1(i)1(\\241z)-1(an)1(e)-391(na)-390(no)-28(c)-391(w)-390(ob)-28(or)1(z)-1(e)]TJ 0 -13.549 Td[(p)-27(oroz\\252)-1(azi\\252y)-278(si\\246)-279(w)-278(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(u)1(,)-278(le)-1(\\273a\\252y)-278(pr)1(z)-1(e\\273)-1(u)28(w)28(a)-56(j)1(\\241c)-279(i)-278(glami\\241c)-279(o\\261lin)1(ion)28(ymi)-278(g\\246bu)1(lam)-1(i)1(,)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(z\\241c)-334(ku)-333(n)1(iej)-333(c)-1(i\\246\\273kie,)-334(r)1(ogate)-334(\\252b)28(y)-333(i)-333(c)-1(zarn)1(e)-1(,)-333(n)1(ie)-1(p)-27(o)-55(j\\246te)-334(ga\\252y)-333(\\261)-1(lepi)1(\\363)27(w.)]TJ 27.879 -13.549 Td[(P)28(o)28(wr\\363)-28(ci\\252a)-444(do)-444(\\252\\363\\273k)55(a)-444(i)-443(le)-1(\\273\\241c)-445(z)-444(ot)28(w)27(ar)1(t)27(y)1(m)-1(i)-443(o)-28(c)-1(zam)-1(i)1(,)-444(z)-1(n)1(o)28(w)-1(u)-443(trw)28(o\\273)-1(n)1(ie)-445(n)1(as)-1(\\252u)1(-)]TJ -27.879 -13.55 Td[(c)27(h)1(iw)28(a\\252)-1(a,)-470(gdy)1(\\273)-472(p)1(rzyc)27(h)1(o)-28(dzi\\252y)-471(t)1(akie)-471(c)27(h)28(wil)1(e)-1(,)-470(w)-471(kt\\363ry)1(c)27(h)-470(b)28(y\\252ab)28(y)-470(da\\252a)-471(g\\252o)28(w)27(\\246,)-471(j)1(ak)28(o)]TJ 0 -13.549 Td[(wyra\\271ni)1(e)-334(roznosz)-1(\\241)-333(s)-1(i)1(\\246)-334(jaki)1(e)-1(\\261)-334(g\\252osy)-333(i)-333(g\\252uc)27(h)1(e)-1(,)-333(d)1(ale)-1(k)1(ie)-334(kr)1(oki.)]TJ 27.879 -13.549 Td[({)-267(A)-267(mo\\273)-1(e)-267(w)-268(k)1(t\\363rej\\261)-267(c)27(ha\\252u)1(pie)-267(ni)1(e)-268(\\261pi\\241)-267(i)-266(p)-28(or)1(e)-1(dza)-56(j)1(\\241!)-267({)-267(p)1(r\\363b)-27(o)27(w)28(a\\252a)-267(s)-1(ob)1(ie)-268(wyr)1(o-)]TJ -27.879 -13.549 Td[(zumie)-1(\\242,)-330(lecz)-331(sk)28(oro)-330(jeno)-329(c)27(h)28(yl)1(a)-330(t)27(y)1(la)-330(p)-27(os)-1(zarza\\252)-1(y)-329(okna,)-329(p)-28(o)-28(d)1(ni)1(e)-1(s\\252a)-330(s)-1(i\\246)-330(i)-330(n)1(arzuciws)-1(zy)]TJ 0 -13.549 Td[(An)28(tk)28(o)28(wy)-333(k)28(o\\273)-1(u)1(c)27(h)-333(wysz)-1(\\252a)-333(pr)1(z)-1(ed)-333(dom.)]TJ 27.879 -13.55 Td[(W)-398(gank)1(u)-398(Witk)28(o)28(wy)-399(b)-27(o)-28(ciek)-399(spa\\252)-398(na)-398(jedn)1(e)-1(j)-398(n)1(o)-28(d)1(z)-1(e)-399(i)-398(ze)-399(\\252b)-28(em)-399(p)-27(o)-28(dwin)1(i\\246t)28(ym)]TJ -27.879 -13.549 Td[(p)-27(o)-28(d)-333(skrzyd\\252o,)-333(za\\261)-334(w)-334(op)1(\\252otk)55(ac)28(h)-333(bi)1(e)-1(li)1(\\252)-1(y)-333(si\\246)-334(p)-27(oku)1(lone)-334(stad)1(k)55(a)-333(g\\246s)-1(i.)]TJ 27.879 -13.549 Td[(Cz)-1(u)1(b)28(y)-308(drzew)-309(ju)1(\\273)-309(s)-1(i)1(\\246)-309(w)-1(y)1(pin)1(a\\252y)-309(z)-309(n)1(o)-28(cy)83(,)-308(rosa)-309(k)56(apa\\252a)-308(ob\\014)1(c)-1(ie)-308(z)-309(w)-1(i)1(e)-1(rzc)27(h)1(o\\252k)28(\\363)27(w,)]TJ -27.879 -13.549 Td[(trzepi\\241c)-334(o)-333(li\\261cie)-334(i)-333(tra)28(wy)83(,)-333(za)28(w)-1(i)1(e)-1(w)28(a\\252)-334(r)1(z)-1(e\\271)-1(wy)84(,)-333(krze)-1(p)1(i\\241c)-1(y)-333(c)28(h\\252\\363)-28(d)1(.)]TJ 27.879 -13.549 Td[(Niskie,)-389(sin)1(a)27(w)28(e)-389(opar)1(y)-389(ob)1(tul)1(a\\252)-1(y)-388(p)-27(ola,)-388(z)-389(kt\\363ry)1(c)27(h)-388(jeno)-388(k)55(a)-55(j\\261)-389(n)1(iek)55(a)-55(j)-388(rw)28(a\\252)-1(y)-388(si\\246)]TJ -27.879 -13.55 Td[(co)-334(wy\\273s)-1(ze)-334(d)1(rz)-1(ew)27(a)-333(b)1(uc)27(h)1(a)-56(j)1(\\241c)-334(w)-334(g\\363r)1(\\246)-334(ni)1(b)28(y)-333(te)-334(cz)-1(arn)1(e)-1(,)-333(g\\246s)-1(te)-333(dym)28(y)83(.)]TJ 27.879 -13.549 Td[(St)1(a)27(w)-470(p)-27(ol\\261ni)1(e)-1(w)28(a\\252)-470(jak)-469(to)-470(\\261lep)-28(e,)-470(wielgac)28(hne)-470(ok)28(o)-469(z)-1(asute)-470(p)-27(omrok)56(\\241,)-470(olszo)27(w)28(e)]TJ -27.879 -13.549 Td[(wysady)-433(gw)28(arzy\\252y)-432(nad)-432(nim)-433(cic)27(h)29(u\\261k)28(o)-433(i)-432(trw)28(o\\273)-1(n)1(ie)-1(,)-432(gdy)1(\\273)-434(wsz)-1(ystk)28(o)-433(j)1(e)-1(szc)-1(ze)-433(dok)28(o\\252a)]TJ 358.232 -29.888 Td[(631)]TJ\nET\nendstream\nendobj\n2015 0 obj <<\n/Type /Page\n/Contents 2016 0 R\n/Resources 2014 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2014 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2020 0 obj <<\n/Length 9104      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(632)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(spa\\252o,)-333(z)-1(atop)1(ion)1(e)-334(w)-334(sz)-1(ar)1(ym)-1(,)-333(n)1(ieprze)-1(j)1(rzan)28(ym)-333(m)-1(\\241cie)-334(i)-333(cic)27(h)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Hank)56(a)-440(przysiad\\252a)-440(na)-441(p)1(rzy\\271)-1(b)1(ie)-441(i)-440(przytu)1(liwsz)-1(y)-440(s)-1(i\\246)-441(d)1(o)-441(\\261c)-1(ian)29(y)-441(zadr)1(z)-1(em)-1(a\\252a,)]TJ -27.879 -13.549 Td[(ani)-412(si\\246)-413(t)1(e)-1(go)-412(s)-1(p)-27(o)-28(d)1(z)-1(iew)28(a)-56(j\\241c,)-412(na)-412(jak)1(ie)-413(d)1(obre)-412(par\\246)-412(pacie)-1(r)1(z)-1(\\363)28(w,)-412(b)-28(o)-412(ki)1(e)-1(j)-412(p)1(rze)-1(c)28(kn\\246\\252a,)]TJ 0 -13.549 Td[(no)-27(c)-381(ju\\273)-381(b)28(y)1(\\252a)-381(z)-1(b)1(iela\\252a)-381(do)-380(c)-1(n)1(a)-381(i)-380(na)-381(wsc)27(ho)-27(dzie)-381(rozpala\\252y)-380(s)-1(i\\246)-381(cz)-1(erw)28(one)-381(zorze)-382(j)1(ak)28(o)]TJ 0 -13.549 Td[(te)-334(\\252u)1(n)28(y)-333(dalekie.)]TJ 27.879 -13.55 Td[({)-313(Jak)-313(w)-1(yszli)-313(o)-314(c)28(h\\252o)-28(d)1(z)-1(ie,)-313(to)-314(an)1(i)-313(c)27(h)28(yb)1(i,)-313(c)-1(o)-313(in)1(o)-314(ic)28(h)-313(patr)1(z)-1(e\\242)-1(!)-313({)-313(m)27(y\\261la\\252a)-314(wyzie-)]TJ -27.879 -13.549 Td[(ra)-55(j\\241c)-276(n)1(a)-275(drog\\246,)-275(tak)-275(s)-1(i\\246)-275(c)-1(zu\\252a)-275(s)-1(kr)1(z)-1(epi)1(on\\241)-275(t)28(ym)-276(kr)1(\\363tkim)-276(\\261pi)1(kiem)-1(,)-275(\\273e)-276(ni)1(e)-276(wr\\363)-28(ci\\252a)-276(j)1(u\\273)]TJ 0 -13.549 Td[(do)-322(\\252)-1(\\363\\273k)56(a)-323(i)-323(ab)29(y)-323(\\252ac)-1(n)1(iej)-323(d)1(o)-28(c)-1(zek)55(a\\242)-323(si\\246)-323(s)-1(\\252o\\253ca,)-323(wyn)1(ies)-1(\\252a)-323(d)1(z)-1(iec)-1(i)1(\\253skie)-323(s)-1(zmat)27(y)-322(i)-323(p)-27(os)-1(z\\252a)]TJ 0 -13.549 Td[(je)-333(przepra\\242)-333(w)27(e)-334(sta)28(wie)-1(.)]TJ 27.879 -13.549 Td[(A)-338(dzie\\253)-338(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-338(s)-1(i\\246)-338(c)-1(or)1(az)-339(c)28(h)28(yb)-27(c)-1(iej,)-337(\\273)-1(e)-338(p)-28(okr)1(\\363tc)-1(e)-338(zapia\\252)-338(k)56(a)-56(j)1(\\261)-339(p)1(ie)-1(r)1(ws)-1(zy)-338(k)28(o-)]TJ -27.879 -13.549 Td[(gut)1(,)-401(a)-400(wnet)-401(p)-27(o)-400(nim)-400(j\\246\\252y)-401(t)1(rz)-1(ep)-27(ota\\242)-401(s)-1(k)1(rzyd\\252ami)-400(dru)1(gie)-401(i)-400(pr)1(z)-1(ekrzyki)1(w)27(a\\242)-401(si\\246)-401(r)1(oz)-1(-)]TJ 0 -13.55 Td[(g\\252o\\261)-1(n)1(iej)-390(n)1(a)-390(c)-1(a\\252\\241)-390(wie\\261)-1(,)-390(za\\261)-390(p)-28(otem)-390(z)-1(a\\261piew)27(a\\252y)-389(s)-1(k)28(o)28(wronk)1(i,)-390(ale)-390(jes)-1(zcz)-1(e)-390(z)-391(r)1(z)-1(ad)1(k)55(a,)-389(i)]TJ 0 -13.549 Td[(z)-440(pr)1(z)-1(y)1(z)-1(iemn)28(yc)27(h)-439(mrok)28(\\363)28(w)-440(wy\\252ani)1(a\\252y)-440(si\\246)-440(z)-440(w)28(olna)-439(bielone)-440(\\261cian)28(y)84(,)-440(p)1(\\252ot)27(y)-439(a)-439(puste,)]TJ 0 -13.549 Td[(orosia\\252e)-334(d)1(rogi.)]TJ 27.879 -13.549 Td[(Hank)56(a)-442(p)1(ra\\252a)-442(za)28(w)-1(zi\\246c)-1(ie,)-442(gd)1(y)-442(n)1(araz)-442(k)55(a)-55(j\\261)-442(ni)1(e)-1(d)1(ale)-1(k)28(o)-442(r)1(oz)-1(l)1(e)-1(g\\252y)-442(si\\246)-442(c)-1(i)1(c)27(he)-442(st\\241-)]TJ -27.879 -13.549 Td[(pan)1(ia,)-452(pr)1(z)-1(yw)28(ar\\252a)-452(w)-453(miejsc)-1(u)-452(ki)1(e)-1(j)-452(tr)1(usia,)-452(pil)1(nie)-453(p)1(rze)-1(ziera)-56(j)1(\\241c)-453(dok)28(o\\252a,)-452(jak)1(i\\261)-453(cie)-1(\\253)]TJ 0 -13.55 Td[(pr)1(z)-1(edziera\\252)-333(s)-1(i\\246)-333(z)-334(ob)-28(ej\\261c)-1(i)1(a)-334(Balce)-1(r)1(k)28(o)27(w)28(ej)-333(i)-333(s)-1(u)1(n\\241\\252)-333(c)-1(za)-56(j\\241co)-333(p)-28(o)-27(d)-333(drzew)27(ami.)]TJ 27.879 -13.549 Td[({)-342(Ju)1(\\261)-1(ci,)-341(c)-1(o)-342(o)-28(d)-341(Mar)1(ysi,)-342(ale)-342(kto?)-342({)-341(w)27(a\\273y\\252a)-342(ni)1(e)-343(mog\\241c)-342(rozp)-28(ozna\\242,)-342(gd)1(y\\273)-342(c)-1(ie\\253)]TJ -27.879 -13.549 Td[(pr)1(z)-1(epad)1(\\252)-490(nagle)-490(i)-490(b)-28(ez)-491(\\261lad)1(u.)-490({)-490(T)83(ak)56(a)-490(har)1(na,)-490(tak)56(a)-490(zaduf)1(ana)-490(w)-490(s)-1(w)28(o)-56(j)1(\\241)-490(ur)1(o)-28(d\\246,)-490(a)]TJ 0 -13.549 Td[(pu)1(s)-1(zcz)-1(a)-333(na)-333(no)-27(c)-334(c)27(h)1(\\252)-1(op)1(ak)28(\\363)28(w)-1(!)-333(kt)1(o)-334(b)28(y)-333(si\\246)-334(to)-333(sp)-28(o)-27(dzia\\252!)]TJ 27.879 -13.549 Td[(My)1(\\261)-1(la\\252a)-408(zgors)-1(zona,)-408(sp)-27(os)-1(tr)1(z)-1(ega)-56(j)1(\\241c)-409(z)-1(n)1(o)28(w)-1(u)1(,)-408(\\273)-1(e)-408(m)-1(\\252y)1(narcz)-1(y)1(k)-408(przem)27(yk)56(a)-408(s)-1(i)1(\\246)-409(z)]TJ -27.879 -13.55 Td[(dr)1(ugiego)-333(k)28(o\\253ca)-334(wsi.)]TJ 27.879 -13.549 Td[({)-356(P)29(e)-1(wni)1(kiem)-357(z)-356(k)56(arczm)27(y)84(,)-356(o)-28(d)-355(Magd)1(y!)-355(A)-356(to)-356(j)1(ak)-356(wilk)1(i)-356(t\\252u)1(k)55(\\241)-355(s)-1(i)1(\\246)-357(p)-27(o)-356(n)1(o)-28(cy)83(.)-355(C)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-282(to)-282(wypr)1(a)27(wia!)-281({)-282(w)28(e)-1(stc)27(h)1(n\\246\\252a,)-282(lec)-1(z)-282(j)1(\\241)-282(s)-1(am\\241)-282(p)1(rze)-1(j)1(\\246)-1(\\252y)-282(j)1(akie\\261)-282(c)-1(i\\241)-27(gotki,)-281(gdy\\273)-282(raz)-282(p)-27(o)]TJ 0 -13.549 Td[(raz)-326(pr)1(z)-1(ec)-1(i)1(\\241)-28(ga\\252a)-326(s)-1(i)1(\\246)-327(z)-326(lu)1(b)-28(o\\261ci\\241,)-326(ale)-326(\\273e)-327(w)28(o)-28(d)1(a)-326(b)28(y\\252a)-326(c)27(h)1(\\252o)-28(dn)1(a)28(w)27(a,)-325(to)-326(pr)1(\\246)-1(d)1(k)28(o)-326(pr)1(z)-1(es)-1(z\\252o,)]TJ 0 -13.549 Td[(i)-333(wz)-1(i\\246\\252a)-333(n)28(uci\\242)-334(\\261c)-1(i)1(s)-1(zon)28(ym,)-333(a)-334(t\\246s)-1(k)1(no\\261c)-1(i\\241)-333(n)1(abran)29(ym)-334(g\\252os)-1(em:)]TJ 27.879 -13.55 Td[(Kiedy)-333(r)1(ann)1(e)-334(ws)-1(ta)-55(j\\241)-333(z)-1(or)1(z)-1(e!)]TJ 0 -13.549 Td[(Pi)1(e)-1(\\261\\253)-333(lec)-1(ia\\252a)-333(ni)1(s)-1(k)28(o)-333(p)-28(o)-333(rosie,)-333(w)-1(si\\241k)56(a)-56(j)1(\\241c)-334(w)-333(z)-1(r\\363\\273o)28(wione)-334(\\261witani)1(a.)]TJ 0 -13.549 Td[(P)28(or)1(a)-455(j)1(u\\273)-454(b)28(y\\252a)-454(ws)-1(t)1(a)27(w)28(a\\242)-1(,)-453(p)-28(o)-454(ws)-1(i)-453(z)-1(acz)-1(\\246\\252y)-454(s)-1(i)1(\\246)-455(rozlega\\242)-455(b)1(rz\\246)-1(ki)-454(ot)28(wieran)28(y)1(c)27(h)]TJ -27.879 -13.549 Td[(okien,)-333(k)1(le)-1(k)28(ot)28(y)-333(trep)-27(\\363)27(w)-333(i)-333(pr)1(z)-1(er\\363\\273ne)-334(g\\252osy)83(.)]TJ 27.879 -13.549 Td[(Hank)56(a,)-427(j)1(e)-1(n)1(o)-428(r)1(oz)-1(wies)-1(iwsz)-1(y)-427(p)1(rze)-1(p)1(rane)-427(s)-1(zm)-1(at)28(y)-427(n)1(a)-428(p)1(\\252o)-28(c)-1(i)1(e)-1(,)-427(p)-27(ole)-1(cia\\252a)-427(bu)1(dzi\\242)]TJ -27.879 -13.55 Td[(sw)27(oic)28(h,)-352(ale)-352(tak)-352(b)28(y)1(li)-352(jesz)-1(cz)-1(e)-352(\\261)-1(p)1(ikiem)-352(z)-1(morze)-1(n)1(i,)-352(\\273e)-353(co)-352(kt\\363ra)-352(g\\252o)28(w)27(a)-352(si\\246)-352(uni)1(e)-1(s\\252a,)-352(to)]TJ 0 -13.549 Td[(zaraz)-334(p)1(ada\\252a)-333(c)-1(i\\246\\273)-1(k)28(o,)-333(n)1(ic)-1(zego)-334(n)1(ie)-334(miark)1(uj\\241c.)]TJ 27.879 -13.549 Td[(Ze)-1(\\271li\\252a)-333(si\\246)-334(ni)1(e)-1(ma\\252o,)-333(gdy\\273)-334(P)1(ietrek)-333(krzykn)1(\\241\\252)-334(n)1(a)-334(n)1(i\\241)-334(z)-333(g\\363ry:)]TJ 0 -13.549 Td[({)-333(Psiac)27(h)1(m)-1(a\\242!)-333(P)28(ora)-333(jes)-1(zcz)-1(e,)-333(do)-333(s)-1(\\252o\\253)1(c)-1(a)-333(s)-1(p)1(a\\252)-334(b)-27(\\246d\\246!)-334({)-333(i)-333(ani)-333(si\\246)-334(r)1(usz)-1(y\\252.)]TJ 0 -13.549 Td[(Dzie)-1(ci)-333(te\\273)-334(j\\246\\252y)-333(s)-1(i\\246)-333(m)-1(aza\\242)-1(,)-333(a)-333(J\\363z)-1(k)56(a)-333(s)-1(k)56(ar)1(\\273)-1(y\\252a)-333(s)-1(i)1(\\246)-334(\\273)-1(a\\252o\\261nie:)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-334(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-334(Han)29(u\\261!)-334(D)1(y\\242)-334(dop)1(iero)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(y\\252o\\273y\\252am...)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(c)-1(isz)-1(y)1(\\252a)-311(dzie)-1(ci,)-311(p)-27(o)28(wyp)-28(\\246dza\\252a)-311(dr)1(\\363b)-311(z)-311(c)27(hl)1(e)-1(w)28(\\363)27(w,)-311(a)-310(prze)-1(cz)-1(ek)56(a)28(w)-1(sz)-1(y)-310(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(z)-231(p)1(ac)-1(ierz,)-230(ju\\273)-231(p)1(rze)-1(d)-230(sam)27(y)1(m)-231(ws)-1(c)27(h)1(o)-28(d)1(e)-1(m,)-231(k)1(ie)-1(j)-230(wyn)1(ies)-1(ion)1(e)-231(ni)1(e)-1(b)-27(o)-231(ca\\252kiem)-231(rozgorza\\252o,)]TJ 0 -13.549 Td[(a)-247(sta)28(w)-247(s)-1(cze)-1(rwieni)1(\\252)-247(s)-1(i)1(\\246)-248(o)-27(d)-247(z\\363rz,)-247(n)1(arob)1(i\\252a)-247(taki)1(e)-1(go)-247(p)1(iek\\252a,)-247(j)1(a\\273)-1(e)-247(m)28(usie)-1(l)1(i)-247(si\\246)-247(p)-28(ozwlek)55(a\\242)]TJ 0 -13.549 Td[(z)-342(bar\\252og\\363)28(w.)-342(Wsiad\\252a)-342(te\\273)-343(z)-342(m)-1(i)1(e)-1(j)1(s)-1(ca)-342(na)-342(Wi)1(tk)55(a,)-341(kt\\363ren)-342(\\252azi\\252)-342(z)-1(aspan)28(y)-341(c)-1(o)-28(c)28(ha)-55(j\\241c)-342(s)-1(i\\246)]TJ 0 -13.549 Td[(jeno)-333(o)-333(w)27(\\246g\\252y)-333(i)-333(drap)1(i\\241c)-1(.)]TJ 27.879 -13.55 Td[({)-321(J)1(a)-1(k)-320(ci\\246)-321(c)-1(zym)-321(t)28(w)28(ardy)1(m)-321(z)-1(lej\\246,)-320(to)-321(pr)1(z)-1(ec)27(kn)1(ies)-1(z!)-321(Cze)-1(m)28(u\\261)-321(to,)-320(p)-28(ok)1(rak)28(o)-321(j)1(e)-1(d)1(na,)]TJ -27.879 -13.549 Td[(kr)1(\\363)27(w)-333(nie)-333(p)-28(o)28(wi\\241za\\252)-334(d)1(o)-334(\\273\\252ob)-28(\\363)28(w!)-333(Chce)-1(sz)-334(ab)28(y)-333(se)-334(w)-334(n)1(o)-28(c)-1(y)-333(k)56(a\\252du)1(n)28(y)-333(p)-27(opru)1(\\252y)-333(rogam)-1(i)1(?)]TJ\nET\nendstream\nendobj\n2019 0 obj <<\n/Type /Page\n/Contents 2020 0 R\n/Resources 2018 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2018 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2023 0 obj <<\n/Length 9186      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(633)]TJ -330.353 -35.866 Td[(Od)1(s)-1(zc)-1(ze)-1(k)1(n\\241\\252)-383(cos)-1(ik)1(,)-383(a\\273)-384(sk)28(o)-28(cz)-1(y\\252a)-383(d)1(o)-383(ni)1(e)-1(go,)-383(sz)-1(cz\\246)-1(\\261c)-1(iem,)-383(c)-1(o)-383(n)1(ie)-383(c)-1(ze)-1(k)56(a\\252,)-383(wi\\246c)]TJ -27.879 -13.549 Td[(za)-56(jr)1(z)-1(a)28(ws)-1(zy)-333(do)-333(s)-1(t)1(a)-56(jn)1(i)-333(c)-1(ze)-1(p)1(i\\252a)-333(s)-1(i\\246)-333(Pietrk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Koni)1(e)-334(dzw)27(on)1(i\\241)-333(z)-1(\\246bami)-333(o)-334(p)1(ust)28(y)-333(\\273)-1(\\252\\363b,)-333(a)-333(t)28(y)-333(s)-1(i)1(\\246)-334(w)-1(y)1(le)-1(gu)1(jes)-1(z)-333(do)-333(ws)-1(c)27(h)1(o)-28(d)1(u!)]TJ 0 -13.549 Td[({)-333(Wyd)1(z)-1(ieracie)-334(si\\246)-334(ki)1(e)-1(j)-333(srok)56(a)-333(na)-333(des)-1(zc)-1(z.)-333(Ca\\252)-1(a)-333(wie\\261)-334(s)-1(\\252yszy!)-333({)-334(mru)1(kn\\241\\252.)]TJ 0 -13.549 Td[({)-320(A)-320(n)1(iec)27(h)-319(s)-1(\\252ysz)-1(y!)-319(Niec)27(h)-319(w)-1(i)1(e)-1(d)1(z)-1(\\241;)-319(jaki\\261)-320(to)-320(w)28(a\\252k)28(o\\253)-320(i)-319(pr)1(\\363\\273)-1(n)1(iak!)-320(Cze)-1(k)56(a)-56(j)1(,)-320(wr\\363)-27(c)-1(i)]TJ -27.879 -13.55 Td[(gosp)-28(o)-28(d)1(arz,)-321(t)1(o)-321(ci)-321(d)1(a)-321(r)1(ad\\246)-1(,)-320(ob)1(ac)-1(zysz)-1(!)-320(J\\363z)-1(k)56(a)-320({)-321(zakrzycz)-1(a\\252a)-321(zn\\363)28(w)-321(w)-320(dr)1(ugiej)-320(s)-1(tr)1(onie)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(\\363rza)-408({)-407(krasul)1(a)-408(ma)-408(t)28(w)28(arde)-408(wymion)1(a,)-408(ci\\241)-28(gn)1(ij)-407(mo)-28(cno,)-407(b)28(y\\261)-408(zno)28(wu)-407(p)-28(\\363\\252)-407(m)-1(l)1(e)-1(-)]TJ 0 -13.549 Td[(k)56(a)-370(ni)1(e)-371(osta)28(wi\\252a!)-370(A)-370(\\261pi)1(e)-1(sz)-371(z)-370(u)1(do)-56(j)1(e)-1(m,)-369(na)-370(wsi)-370(ju)1(\\273)-370(w)-1(y)1(gania)-55(j\\241)-370(kr)1(o)28(w)-1(y)1(!)-370(Wit)1(e)-1(k!)-369(bierz)]TJ 0 -13.549 Td[(\\261niad)1(anie)-330(i)-331(wyp)-27(\\246dza)-56(j)1(,)-331(a)-330(p)-27(ogub)-330(mi)-330(o)28(w)27(ce)-1(,)-330(j)1(ak)-330(w)27(cz)-1(or)1(a)-56(j)1(,)-330(to)-331(si\\246)-331(z)-330(tob\\241)-330(rozpr)1(a)27(wi\\246!)-330({)]TJ 0 -13.549 Td[(rozrz\\241dza\\252a)-373(zwija)-55(j\\241c)-372(s)-1(i)1(\\246)-373(sam)-1(a)-372(j)1(ak)-372(fry)1(ga;)-372(kur)1(om)-373(p)-27(o)-28(d)1(rz)-1(u)1(c)-1(i)1(\\252a)-373(p)1(rzygar\\261c)-1(i)1(e)-373(ziarn)1(a,)]TJ 0 -13.549 Td[(\\261w)-1(i)1(niom)-278(kwic)-1(z\\241c)-1(y)1(m)-279(p)-27(o)-28(d)-278(c)27(h)1(a\\252up)1(\\241)-279(wyn)1(ie)-1(s\\252a)-278(c)-1(ebr)1(atk)28(\\246)-279(z)-279(\\273arcie)-1(m,)-278(cie)-1(l\\246ciu)-278(o)-28(d)1(s)-1(ad)1(z)-1(o-)]TJ 0 -13.55 Td[(nem)27(u)-319(o)-28(d)-319(m)-1(atk)1(i)-320(sp)-28(or)1(z)-1(\\241d)1(z)-1(i\\252a)-320(p)1(icie)-1(,)-319(s)-1(yp)1(n\\246\\252a)-320(k)56(as)-1(zy)-320(goto)28(w)27(an)1(e)-1(j)-319(k)56(ac)-1(z\\246)-1(tom)-320(i)-319(w)-1(y)1(gna\\252a)]TJ 0 -13.549 Td[(je)-286(na)-286(s)-1(t)1(a)27(w.)-286(Wi)1(te)-1(k)-286(d)1(os)-1(ta\\252)-286(pi)1(\\246)-1(\\261c)-1(i\\241)-286(za)-287(p)1(lec)-1(y)-286(i)-286(\\261niad)1(anie)-286(do)-286(torb)29(y)83(,)-286(n)1(ie)-287(p)1(rz)-1(ep)-27(om)-1(n)1(ia\\252a)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-343(b)-27(o)-28(\\242)-1(k)56(a,)-343(s)-1(ta)28(wia)-55(j\\241c)-344(m)28(u)-343(w)-344(ganku)-343(\\273e)-1(l)1(e)-1(\\271niak)-343(z)-344(w)28(c)-1(zora)-55(jsz)-1(ymi)-343(z)-1(iemniak)56(ami,)-343(\\273)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)-1(za)-56(j)1(a\\252)-450(s)-1(i\\246,)-449(klek)28(ota\\252,)-450(a)-450(k)1(u\\252)-450(w)-450(n)1(iego)-450(i)-450(wyj)1(ada\\252.)-449(B)-1(y)1(\\252)-1(a)-449(w)-1(sz\\246)-1(d)1(y)83(,)-449(o)-450(ws)-1(zystkim)]TJ 0 -13.549 Td[(pami\\246ta\\252a)-334(i)-333(n)1(a)-334(wsz)-1(y)1(\\242)-1(k)28(o)-333(m)-1(i)1(a\\252a)-334(sp)-28(osobn)1(\\241)-334(r)1(ad\\246.)]TJ 27.879 -13.55 Td[(A)-414(sk)28(oro)-413(Witek)-413(p)-28(ogn)1(a\\252)-414(kro)28(wy)-413(i)-414(o)28(w)28(c)-1(e,)-414(zabr)1(a\\252a)-414(s)-1(i)1(\\246)-414(do)-413(Pietrk)56(a,)-413(nie)-414(mog\\241c)]TJ -27.879 -13.549 Td[(\\261c)-1(ierp)1(ie)-1(\\242,)-333(i\\273)-334(si\\246)-334(w)28(a\\252\\246)-1(sa)-334(b)-27(ez)-334(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Wyrzu\\242)-333(gn\\363)-55(j)-333(z)-334(ob)-28(or)1(y!)-333(kro)28(w)28(om)-334(w)-333(no)-28(cy)-333(gor\\241co)-334(i)-333(t)28(yt\\252a)-55(j\\241)-333(s)-1(i\\246)-333(kiej)-333(\\261)-1(win)1(ie.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-302(w)-1(\\252a\\261nie)-302(c)-1(o)-302(jeno)-302(wyjr)1(z)-1(a\\252o)-302(z)-303(dal)1(e)-1(k)28(o\\261c)-1(i,)-302(ogar)1(nia)-55(j\\241c)-303(\\261wiat)-302(c)-1(ze)-1(r)1(w)27(on)28(y)1(m)-1(,)]TJ -27.879 -13.549 Td[(gor\\241cym)-226(ok)1(ie)-1(m,)-225(gdy)-225(zac)-1(z\\246)-1(\\252y)-225(s)-1(i)1(\\246)-226(s)-1(c)28(ho)-28(d)1(z)-1(i)1(\\242)-226(k)28(om)-1(or)1(nice)-1(,)-225(r)1(obi\\241ce)-226(w)-226(o)-28(d)1(rob)1(ku)-225(z)-1(a)-225(zie)-1(mi\\246)]TJ 0 -13.55 Td[(p)-27(o)-28(d)-333(len)-333(i)-333(z)-1(i)1(e)-1(mniak)1(i.)]TJ 27.879 -13.549 Td[(Zap)-27(\\246)-1(d)1(z)-1(i\\252a)-332(J\\363z)-1(k)28(\\246)-333(d)1(o)-333(obi)1(e)-1(r)1(ania)-332(z)-1(iemniak)28(\\363)28(w,)-333(d)1(a\\252a)-333(p)1(ie)-1(r)1(s)-1(i)-332(dziec)27(ku)-332(i)-332(okrywsz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-334(w)-334(zapask)28(\\246)-334(rzek\\252a:)]TJ 27.879 -13.549 Td[({)-392(Miej)-392(ta)-392(bacz)-1(eni)1(e)-393(na)-392(wsz)-1(ystk)28(o!)-392(A)-392(jakb)29(y)-392(An)28(te)-1(k)-392(wr)1(\\363)-28(c)-1(i)1(\\252)-1(,)-392(d)1(a)-56(j)-392(zna\\242)-392(na)-392(k)56(a-)]TJ -27.879 -13.549 Td[(pu)1(\\261)-1(n)1(iki)1(.)-335(Ch)1(o)-28(d\\271ta,)-334(k)28(obi)1(e)-1(t)28(y)84(,)-334(p)-28(\\363ki)-334(r)1(os)-1(a)-334(a)-334(c)27(h)1(\\252)-1(o)-27(dn)1(ie)-1(j)1(,)-334(ok)28(opiem)27(y)-334(n)1(iec)-1(o)-334(k)56(apust)28(y)83(,)-334(a)-334(o)-28(d)]TJ 0 -13.55 Td[(\\261niad)1(ania)-333(wr\\363)-28(cim)-334(d)1(o)-334(w)28(cz)-1(ora)-55(jsz)-1(ej)-333(rob)-27(ot)28(y)84(.)]TJ 27.879 -13.549 Td[(P)28(o)28(wied\\252a)-397(j)1(e)-397(p)-27(oz)-1(a)-396(m)-1(\\252yn)1(,)-396(na)-396(niskie)-397(\\252\\241k)1(i)-397(i)-396(mokrad)1(\\252a)-397(siw)27(e)-396(jes)-1(zc)-1(ze)-1(k)-396(o)-28(d)-396(r)1(os)-1(y)]TJ -27.879 -13.549 Td[(i)-429(mgie\\252)-429(opad)1(a)-56(j)1(\\241c)-1(yc)28(h.)-428(T)83(or\\014)1(as)-1(te)-429(z)-1(i)1(e)-1(mie)-429(ugi)1(na\\252y)-429(si\\246)-429(p)-27(o)-28(d)-429(n)1(ogam)-1(i)-428(kiej)-428(rz)-1(emie)-1(n)1(ne)]TJ 0 -13.549 Td[(pasy)84(,)-472(z)-1(a\\261)-472(gdzie)-1(n)1(iegdzie)-473(tak)-472(b)29(y\\252o)-472(grz)-1(\\241sk)28(o,)-472(\\273e)-473(m)28(usia\\252y)-472(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\242)-1(,)-472(w)-472(br)1(uzdac)27(h)]TJ 0 -13.549 Td[(g\\252\\246)-1(b)-27(oki)1(c)27(h)-333(ni)1(b)28(y)-333(ro)28(wy)-334(sta\\252y)-333(s)-1(p)1(le\\261)-1(n)1(ia\\252e)-334(w)28(o)-28(dy)84(,)-333(p)-28(okr)1(yte)-334(zielon\\241)-333(rz\\246)-1(s\\241.)]TJ 27.879 -13.55 Td[(Na)-356(k)55(ap)1(u\\261ni)1(s)-1(k)56(ac)27(h)-356(n)1(ie)-357(b)29(y\\252o)-357(j)1(e)-1(sz)-1(cze)-357(nik)28(ogo,)-356(j)1(e)-1(n)1(o)-357(cza)-56(jk)1(i)-356(k)28(o\\252)-1(o)28(w)28(a\\252y)-356(nad)-356(zago-)]TJ -27.879 -13.549 Td[(nami,)-258(a)-259(b)-27(o)-28(\\242ki)-258(c)27(h)1(o)-28(dzi\\252y)-258(kiw)28(a)-56(j)1(\\241c)-1(y)84(,)-259(p)1(iln)1(ie)-259(b)-27(obru)1(j\\241c.)-259(P)29(ac)27(hn)1(ia\\252o)-259(b)1(agnem)-259(i)-258(s)-1(u)1(ro)28(wiz)-1(n)1(\\241)]TJ 0 -13.549 Td[(tatar)1(ak)28(\\363)27(w)-333(a)-334(tr)1(z)-1(cin)1(,)-334(co)-333(p)-28(o)-27(obsiada\\252y)-333(k)28(\\246pami)-334(stare,)-333(z)-1(ap)1(ad\\252e)-334(d)1(o\\252y)-333(torf)1(o)27(w)28(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Pi\\246kn)28(y)-333(cz)-1(as,)-333(ale)-334(wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(na)-333(s)-1(p)1(iek)28(\\246)-334(id)1(z)-1(ie)-334({)-333(ozw)27(a\\252a)-333(s)-1(i)1(\\246)-334(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-333(Dobr)1(z)-1(e,)-333(c)-1(o)-333(wiate)-1(r)-333(p)1(rze)-1(c)28(h\\252adza.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(ran)1(o,)-333(barze)-1(j)-332(on)-333(s)-1(u)1(s)-1(zy)-333(ni\\271li)-333(s\\252)-1(o\\253)1(c)-1(e.)]TJ 0 -13.55 Td[({)-333(Da)27(wn)1(o)-334(n)1(ie)-334(pami\\246ta)-56(j)1(\\241)-334(tak)-333(suc)27(h)1(e)-1(go)-333(lata!)-333({)-334(p)-27(ogady)1(w)27(a\\252y)-333(s)-1(ta)-55(j\\241c)-334(d)1(o)-334(r)1(ob)-28(ot)28(y)]TJ -27.879 -13.549 Td[(na)-333(wyn)1(ie)-1(sion)28(yc)28(h)-333(z)-1(agon)1(ac)27(h)-333(k)56(ap)1(ust)27(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(to)-334(wyr)1(os)-1(\\252a,)-333(ju)1(\\273)-334(si\\246)-334(p)-27(oniekt\\363r)1(e)-334(s)-1(k)1(\\252\\246)-1(b)1(ia)-56(j)1(\\241)-334(n)1(a)-334(g\\252\\363)28(wki.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(b)28(y)-333(j)1(e)-1(n)1(o)-334(n)1(ie)-334(ob)-55(jad)1(\\252y)-333(robaczys)-1(k)56(a.)-333(Su)1(s)-1(za,)-333(to)-333(m)-1(og\\241)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e)-334(r)1(z)-1(u)1(c)-1(i\\242.)]TJ 0 -13.549 Td[({)-333(A)-334(mog\\241.)-333(Na)-333(W)83(oli)-333(ob)1(\\273)-1(ar\\252y)-333(j)1(u\\273)-334(ze)-334(sz)-1(cz)-1(\\246tem)-1(.)]TJ 0 -13.55 Td[({)-333(W)-333(Mo)-28(d)1(licy)-334(za\\261)-334(wysc)27(h\\252a)-333(do)-333(cna,)-333(m)27(u)1(s)-1(i)1(a\\252y)-334(sadzi\\242)-334(n)1(a)-334(n)1(o)28(w)27(o.)]TJ 0 -13.549 Td[(P)28(or)1(e)-1(d)1(z)-1(a\\252y)-250(d)1(z)-1(i)1(abi\\241c)-250(mot)27(y)1(c)-1(zk)55(ami)-250(ziem)-1(i)1(\\246)-251(i)-249(k)28(opiasto)-250(ob)1(s)-1(yp)1(uj)1(\\241c)-251(gr)1(z)-1(\\246dy)84(,)-250(galan)1(-)]TJ\nET\nendstream\nendobj\n2022 0 obj <<\n/Type /Page\n/Contents 2023 0 R\n/Resources 2021 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2021 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2026 0 obj <<\n/Length 8767      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(634)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cie)-355(wyros\\252e)-1(,)-354(ale)-354(i)-354(s)-1(ieln)1(ie)-355(zac)27(h)28(w)28(as)-1(zc)-1(zone,)-354(m)-1(l)1(e)-1(cz)-1(e)-354(b)-28(o)28(wiem)-355(s)-1(z\\252y)-354(w)-355(k)28(olan)1(o,)-354(a)-355(k)56(acz)-1(e)]TJ 0 -13.549 Td[(zie)-1(l)1(a)-334(i)-333(n)1(a)27(w)28(e)-1(t)-333(ost)28(y)-333(pusz)-1(cza\\252)-1(y)-333(si\\246)-334(g\\246s)-1(t)1(o)-334(ki)1(e)-1(j)-333(l)1(as)-1(.)]TJ 27.879 -13.549 Td[({)-355(Cz)-1(ego)-355(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)-355(n)1(ie)-355(s)-1(ieje)-355(ni)-354(p)-28(otr)1(z)-1(ebu)1(je,)-355(to)-355(s)-1(i)1(\\246)-356(b)1(uj)1(nie)-355(ro)-28(d)1(z)-1(i)-355({)-355(zau)28(w)28(a\\273)-1(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(kt\\363r)1(a\\261)-334(otrze)-1(p)1(uj)1(\\241c)-334(z)-1(e)-333(z)-1(iemi)-333(jaki\\261)-333(c)27(h)28(w)28(as)-1(t)-333(wyrw)28(an)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(k)55(a\\273de)-333(z)-1(\\252e!)-333(Grze)-1(c)28(h)28(u)-333(ano)-333(ni)1(kt)-333(nie)-333(p)-28(osie)-1(w)28(a,)-333(a)-333(p)-28(e\\252no)-333(go)-334(n)1(a)-333(\\261)-1(wiec)-1(ie.)]TJ 0 -13.55 Td[({)-305(Bo)-305(p)1(lenn)28(y)1(!)-305(Moi)1(\\261)-1(ciew)-1(y)1(!)-305(p)-27(\\363ki)-304(grz)-1(ec)27(h)29(u,)-304(p)-28(\\363t)28(y)-304(i)-305(cz)-1(\\252o)28(wiek)55(a.)-304(Pr)1(z)-1(ec)-1(i)1(e)-1(c)28(h)-305(p)-27(o)28(wia-)]TJ -27.879 -13.549 Td[(da)-55(j\\241:)-298(b)-27(ez)-299(grze)-1(c)28(h)28(u)-298(n)1(ie)-299(b)28(y)1(\\252)-1(ob)29(y)-298(\\261)-1(miec)27(h)28(u)1(,)-298(alb)-28(o)-298(to:)-298(k)1(ie)-1(j)1(b)28(y)-298(ni)1(e)-299(grze)-1(c)28(h,)-298(to)-298(b)28(y)-298(cz)-1(\\252o)28(wiek)]TJ 0 -13.549 Td[(da)28(wno)-377(zdec)27(h)1(\\252!)-377(P)28(otrze)-1(b)1(n)28(y)-377(m)28(usi)-377(b)28(y\\242)-377(na)-377(co\\261)-1(,)-377(j)1(ak)28(o)-377(i)-377(ten)-377(c)27(h)29(w)27(ast,)-377(b)-27(o)-377(oba)-377(s)-1(t)28(w)28(orzy\\252)]TJ 0 -13.549 Td[(P)28(an)-333(Jezus!)-334({)-333(p)1(ra)28(w)-1(i)1(\\252)-1(a)-333(p)-27(o)-334(sw)28(o)-56(jem)27(u)-332(Jagust)28(ynk)56(a.)]TJ 27.879 -13.549 Td[({)-313(P)29(an)-312(Je)-1(zus)-313(b)29(y)-313(ta)-312(s)-1(t)28(w)28(orzy\\252)-313(z\\252e)-1(!)-312(Ju\\261ci!)-313(Cz\\252o)27(wiek)-312(to)-313(j)1(ak)-313(ta)-312(\\261)-1(win)1(ia,)-312(ws)-1(zy\\242)-1(k)28(o)]TJ -27.879 -13.549 Td[(m)27(u)1(s)-1(i)-333(sw)27(oi)1(m)-334(ry)1(jem)-334(p)-28(omara\\242!)-333({)-333(rz)-1(ek\\252a)-333(s)-1(u)1(ro)28(w)27(o)-333(Han)1(k)55(a,)-333(i\\273)-333(p)-28(omilk)1(\\252)-1(y)84(.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-269(ju)1(\\273)-269(s)-1(i\\246)-269(b)28(y\\252o)-269(wyn)1(ies)-1(\\252o)-269(galan)1(c)-1(i)1(e)-270(i)-268(m)-1(g\\252y)-269(op)1(ad\\252y)-269(d)1(o)-269(znaku)1(,)-269(kiej)-269(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.549 Td[(o)-28(d)1(e)-334(ws)-1(i)-333(zac)-1(z\\246)-1(\\252y)-333(n)1(a)-1(d)1(c)27(h)1(o)-28(dzi\\242)-334(k)28(ob)1(iet)27(y)84(.)]TJ 27.879 -13.549 Td[({)-234(Rob)-27(otnice)-1(!)-233(C)-1(zek)55(a)-55(j\\241,)-234(a\\273)-234(im)-234(rosa)-234(przes)-1(c)27(h)1(ni)1(e)-1(,)-234(\\273e)-1(b)29(y)-234(s)-1(e)-234(ni)1(e)-235(zam)-1(o)-27(c)-1(zy\\242)-235(k)1(ulas\\363)28(w)]TJ -27.879 -13.549 Td[({)-333(s)-1(zydzi\\252a)-333(Hank)56(a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(k)56(a\\273)-1(d)1(y)-333(tak)-333(\\252as)-1(y)-333(na)-333(rob)-27(ot\\246)-334(j)1(ak)28(o)-333(w)-1(y)1(!)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(ni)1(e)-334(k)56(a\\273)-1(d)1(y)-333(tak)-333(m)27(usi)-333(har)1(o)27(w)28(a\\242)-1(,)-333(n)1(ie)-334(k)56(a\\273dy!)-333({)-333(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-333(c)-1(i)1(\\246)-1(\\273k)28(o.)]TJ 0 -13.549 Td[({)-333(W)83(asz)-334(wr\\363)-28(ci,)-333(to)-333(s)-1(e)-333(o)-28(dp)-27(o)-28(cz)-1(n)1(ie)-1(cie.)]TJ 0 -13.549 Td[({)-375(Ju\\273)-376(si\\246)-376(d)1(o)-376(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wskiej)-375(o)-28(c)27(h)1(\\014aro)28(w)28(a\\252am)-376(na)-375(Jani)1(e)-1(lsk)56(\\241,)-376(b)29(yc)27(h)-375(j)1(e)-1(n)1(o)-376(p)-27(o-)]TJ -27.879 -13.549 Td[(wr\\363)-28(ci\\252.)-333(W)83(\\363)-55(jt)-333(ob)1(ie)-1(co)28(w)27(a\\252)-333(go)-334(n)1(a)-334(d)1(z)-1(i)1(s)-1(ia.)]TJ 27.879 -13.549 Td[({)-340(Z)-339(urz\\246du)-339(wie)-1(,)-339(to)-340(m)28(usi)-339(b)28(y\\242)-1(,)-339(co)-340(i)-339(pra)28(wda.)-339(Ale)-340(lato\\261)-340(sp)-27(oro)-340(n)1(aro)-28(d)1(u)-339(w)-1(y)1(bie-)]TJ -27.879 -13.55 Td[(ra)-383(si\\246)-384(d)1(o)-384(Cz\\246)-1(sto)-28(c)27(h)1(o)28(w)-1(y)84(.)-383(Or)1(g)-1(an)1(i\\261c)-1(in)1(a)-383(p)-28(on)1(o)-383(idzie)-384(i)-383(p)-27(o)28(w)-1(i)1(ada\\252a,)-383(c)-1(o)-383(sam)-384(p)1(rob)-27(os)-1(zc)-1(z)]TJ 0 -13.549 Td[(opr)1(o)28(w)27(ad)1(z)-1(i)-333(k)28(ompani)1(\\246)-1(!)]TJ 27.879 -13.549 Td[({)-287(A)-287(kt\\363\\273)-287(m)27(u)-286(to)-287(p)-28(on)1(ies)-1(ie)-287(br)1(z)-1(u)1(c)27(ho!)-286({)-287(z)-1(a\\261m)-1(i)1(a\\252)-1(a)-287(si\\246)-287(Jagust)28(ynk)56(a.)-287({)-287(S)1(am)-288(go)-287(n)1(ie)]TJ -27.879 -13.549 Td[(ud)1(\\271)-1(wign)1(ie)-334(b)-27(ez)-334(t)28(ylac)27(h)1(n)28(y)-333(k)56(arw)28(as)-334(dr)1(ogi.)-333(Obi)1(e)-1(cuj)1(e)-1(,)-333(jak)-333(za)28(w)-1(d)1(y)83(.)]TJ 27.879 -13.549 Td[({)-291(B)-1(y)1(\\252)-1(am)-291(ju)1(\\273)-292(par)1(\\246)-292(razy)-291(z)-292(k)28(om)-1(p)1(ani\\241,)-291(al)1(e)-1(b)28(y)1(m)-292(c)-1(o)-291(rok)1(u)-291(c)27(ho)-27(dzi\\252a)-292({)-291(w)28(e)-1(stc)27(h)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(Fil)1(ipk)56(a)-333(z)-1(za)-333(w)27(o)-28(d)1(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(p)1(r\\363\\273niacz)-1(k)28(\\246)-333(ku\\273den)-333(\\252ak)28(om)27(y)84(.)]TJ 0 -13.549 Td[({)-385(Je)-1(zu!)-384({)-386(ci\\241)-28(gn)1(\\246)-1(\\252a)-385(gor\\241co,)-385(ni)1(e)-386(bacz)-1(\\241c)-385(na)-385(p)1(rz)-1(y)1(c)-1(in)1(ki.)-385({)-385(A)-385(dy)1(\\242)-386(to)-385(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-290(s)-1(zed\\252)-290(do)-290(ni)1(e)-1(b)1(a,)-290(tak)-290(m)27(u)-290(j)1(e)-1(st)-290(w)-291(tej)-290(d)1(ro)-28(d)1(z)-1(e)-291(l)1(e)-1(kk)28(o)-290(i)-290(d)1(obrze.)-290(A)-291(co)-290(s)-1(i\\246)-290(nap)1(atrzy)]TJ 0 -13.549 Td[(\\261w)-1(i)1(ata,)-382(a)-381(c)-1(o)-382(si\\246)-382(nas\\252uc)28(ha,)-381(c)-1(o)-381(s)-1(i\\246)-382(n)1(am)-1(o)-28(d)1(li!)-381(Jeno)-382(p)1(ar\\246)-382(ni)1(e)-1(d)1(z)-1(iel,)-381(a)-382(widzi)-381(s)-1(i\\246)-382(cz)-1(\\252o-)]TJ 0 -13.55 Td[(wiek)28(o)27(wi,)-327(j)1(ak)28(ob)28(y)-327(n)1(a)-328(ca\\252e)-328(r)1(oki)-327(zb)28(y\\252)-327(s)-1(i)1(\\246)-328(bi)1(e)-1(d)-326(a)-328(t)1(urb)1(ac)-1(j)1(i.)-327(Jakb)29(y)-327(s)-1(i\\246)-327(p)-27(ote)-1(m)-327(na)-327(n)1(o)27(w)28(o)]TJ 0 -13.549 Td[(nar)1(o)-28(dzi\\252!)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(to)-333(\\252ask)55(a)-333(b)-27(os)-1(k)56(a)-333(tak)-333(krze)-1(p)1(i!)-333(Ju\\261c)-1(i)-333({)-333(pr)1(z)-1(yt)28(wierd)1(z)-1(a\\252y)-333(ni)1(e)-1(kt)1(\\363re)-1(.)]TJ 0 -13.549 Td[(Od)-477(wsi,)-477(\\261)-1(cie\\273)-1(k)56(\\241)-478(n)1(ad)-477(rze)-1(k)56(\\241,)-477(mi\\246)-1(d)1(z)-1(y)-477(sz)-1(u)28(w)28(arami)-477(a)-478(g\\246st\\241,)-478(m\\252o)-28(d)1(\\241)-478(olszyn\\241,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(em)27(y)1(k)55(a\\252a)-452(si\\246)-453(ku)-451(nim)-452(jak)56(a\\261)-452(dzie)-1(w)28(c)-1(zyn)1(a.)-452(Hank)56(a)-452(pr)1(z)-1(ys\\252oni\\252a)-452(o)-28(czy)-452(o)-28(d)-452(s\\252o\\253ca,)]TJ 0 -13.549 Td[(ale)-368(ni)1(e)-369(mog\\252a)-368(r)1(oz)-1(ez)-1(n)1(a\\242)-1(,)-367(dop)1(ie)-1(r)1(o)-368(z)-368(bli)1(s)-1(k)56(a)-368(p)-27(oz)-1(n)1(a\\252a)-368(J\\363zk)28(\\246)-1(,)-367(kt\\363ra)-367(le)-1(cia\\252a,)-368(j)1(ak)-368(j)1(e)-1(n)1(o)]TJ 0 -13.55 Td[(mog\\252a,)-334(j)1(u\\273)-333(z)-334(dala)-333(kr)1(z)-1(ycz)-1(\\241c)-333(i)-333(w)-1(y)1(trz\\241c)27(ha)-55(j\\241c)-334(r)1(\\246)-1(k)56(ami:)]TJ 27.879 -13.549 Td[({)-333(Han)28(u\\261!)-333(An)28(tek)-333(w)-1(r)1(\\363)-28(c)-1(i)1(li!)-333(Han)28(u)1(\\261)-1(!)]TJ 0 -13.549 Td[(Hank)56(a)-391(pr)1(as)-1(n)1(\\246)-1(\\252a)-391(m)-1(ot)28(yczk)55(\\241)-391(i)-391(p)-28(or)1(w)27(a\\252a)-391(s)-1(i)1(\\246)-392(kiej)-391(ptak)-391(d)1(o)-392(lot)1(u,)-391(ale)-392(si\\246)-392(w)-391(m)-1(ig)]TJ -27.879 -13.549 Td[(opami\\246ta\\252a,)-405(op)1(u\\261c)-1(i)1(\\252a)-405(p)-27(o)-28(dk)56(asan)28(y)-405(w)28(e)-1(\\252n)1(iak)-404(i)-405(c)28(ho)-28(cia)-405(j)1(\\241)-405(p)-27(onosi\\252o,)-405(c)28(ho)-28(cia)-404(s)-1(erce)-405(s)-1(i\\246)]TJ 0 -13.549 Td[(t\\252uk)1(\\252o,)-314(\\273)-1(e)-314(tc)27(h)28(u)-313(br)1(ak)28(o)27(w)28(a\\252o)-314(i)-314(ledwie)-315(p)-27(oredzi\\252a)-314(pr)1(z)-1(em\\363)27(wi\\242,)-314(rze)-1(k)1(\\252a)-314(s)-1(p)-27(ok)28(o)-56(j)1(nie)-314(jakb)29(y)]TJ 0 -13.55 Td[(ni)1(gdy)-333(ni)1(c)-1(:)]TJ 27.879 -13.549 Td[({)-333(R\\363b)-28(cie)-334(tu)-333(same)-1(,)-333(a)-333(na)-333(\\261)-1(n)1(iadan)1(ie)-334(p)1(rzyc)27(h)1(o)-28(d\\271ta)-333(do)-333(c)27(ha\\252u)1(p)28(y)84(.)]TJ\nET\nendstream\nendobj\n2025 0 obj <<\n/Type /Page\n/Contents 2026 0 R\n/Resources 2024 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2024 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2029 0 obj <<\n/Length 8902      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(635)]TJ -330.353 -35.866 Td[(Od)1(e)-1(sz)-1(\\252a)-333(z)-334(w)28(olna,)-333(b)-27(e)-1(z)-333(p)-28(o\\261piec)27(h)29(u,)-333(pr)1(z)-1(ep)28(ytu)1(j\\241c)-334(J\\363zk)28(\\246)-334(o)-333(ws)-1(zystk)28(o.)]TJ 0 -13.549 Td[(Kob)1(ie)-1(t)28(y)-333(p)-27(ogl\\241da\\252y)-333(n)1(a)-334(si\\246,)-333(do)-333(c)-1(n)1(a)-334(strop)1(ione)-333(jej)-333(s)-1(p)-27(ok)28(o)-56(j)1(no\\261c)-1(i)1(\\241.)]TJ 0 -13.549 Td[({)-326(Je)-1(n)1(o)-327(l)1(a)-327(o)-27(c)-1(z\\363)27(w)-326(lu)1(dzkic)27(h)-326(t)1(ak)55(a)-326(sp)-28(ok)28(o)-55(jn)1(a.)-327(\\233eb)28(y)-326(si\\246)-327(n)1(ie)-327(pr)1(z)-1(e\\261)-1(miew)27(al)1(i,)-326(c)-1(o)-326(jej)]TJ -27.879 -13.549 Td[(pi)1(lno)-333(do)-333(c)27(h)1(\\252opa.)-333(Ja)-333(b)28(ym)-333(ta)-334(n)1(ie)-334(wytr)1(z)-1(yma\\252a!)-333({)-334(m\\363)28(wi\\252a)-334(J)1(agust)27(y)1(nk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Ani)-333(ja!)-333(Byc)28(h)-333(s)-1(i\\246)-333(jeno)-333(An)28(tk)28(o)28(wi)-334(n)1(ie)-334(zac)27(h)1(c)-1(ia\\252o)-333(no)28(wyc)27(h)-332(jamor\\363)28(w...)]TJ 0 -13.55 Td[({)-333(Nie)-334(ma)-334(j)1(u\\273)-333(na)-333(p)-28(o)-28(d)1(or\\246dziu)-333(Jagu)1(s)-1(i,)-333(to)-333(mo\\273)-1(e)-333(m)27(u)-333(si\\246)-334(o)-28(d)1(e)-1(c)28(hce)-1(.)]TJ 0 -13.549 Td[({)-333(Moi\\261c)-1(i)1(e)-1(!)-333(Jak)-333(c)27(h)1(\\252opu)-333(zapac)27(h)1(ni)1(e)-334(kiec)27(k)56(a,)-333(to)-333(z)-1(a)-333(ni\\241)-333(w)-334(ca\\252y)-333(\\261)-1(wiat)-333(got\\363)28(w.)]TJ 0 -13.549 Td[({)-251(O)1(j)-250(pra)28(wda,)-250(b)28(yd)1(l\\246)-251(si\\246)-251(nie)-251(t)1(ak)-251(\\252acno)-251(n)1(aro)28(wi)-251(d)1(o)-251(sz)-1(k)28(o)-27(dy)-250(jak)-250(c)27(h)1(\\252)-1(op)-250(n)1(iekt\\363ry)84(...)]TJ 0 -13.549 Td[(Pl)1(ot\\252y)83(,)-307(ledwie)-307(s)-1(i\\246)-307(ju\\273)-307(ruc)28(ha)-55(j\\241c)-308(p)1(rzy)-308(r)1(ob)-28(o)-27(c)-1(ie,)-307(a)-307(Hank)56(a)-308(sz\\252)-1(a)-307(w)28(c)-1(i\\241\\273)-307(jedn)1(ak)28(o)-308(i)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-335(z)-335(rozm)27(ys\\252u)-335(p)-27(ogad)1(uj\\241c)-335(z)-335(nap)-27(otk)56(an)28(ymi,)-335(c)28(ho)-28(cia)-335(i)-334(nie)-335(wiedz)-1(i)1(a\\252a,)-335(c)-1(o)-334(m)-1(\\363)28(wi)-335(n)1(i)]TJ 0 -13.549 Td[(co)-334(o)-28(d)1(p)-27(o)27(wiad)1(a)-56(j)1(\\241,)-334(b)-27(o)-333(w)-334(g\\252o)28(wie)-334(mia\\252a)-333(to)-334(j)1(e)-1(d)1(no,)-333(\\273e)-334(An)28(tek)-333(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-334(i)-333(n)1(a)-334(n)1(i\\241)-333(c)-1(ze)-1(k)56(a.)]TJ 27.879 -13.55 Td[({)-333(I)-334(z)-334(Ro)-27(c)27(hem)-334(p)1(rzys)-1(ze)-1(d)1(\\252?)-334({)-333(p)28(yta\\252a)-333(jedn)1(o)-334(w)-333(k)28(\\363\\252k)28(o.)]TJ 0 -13.549 Td[({)-333(A)-334(z)-333(R)-1(o)-27(c)27(hem!)-333(Dy\\242)-334(ju)1(\\273)-334(w)28(am)-334(m\\363)27(wi\\252am!)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(aki,)-333(co?)-334(Jaki)1(?)]TJ 0 -13.549 Td[({)-265(Wiem)-265(to)-265(jak)1(i?)-265(Przysz)-1(ed\\252)-265(i)-265(zaraz)-265(z)-266(p)1(rogu)-264(p)28(yta:)-265(k)56(a)-55(j)-265(Han)1(k)55(a?)-265(P)28(o)28(wiedzia\\252am)]TJ -27.879 -13.549 Td[(i)-333(z)-1(ar)1(no)-333(w)-334(te)-333(p)-28(\\246dy)-333(p)-27(o)-334(w)28(as,)-334(n)1(o)-333(i)-334(t)28(y)1(la!)]TJ 27.879 -13.55 Td[({)-333(Pyta\\252)-333(o)-333(m)-1(n)1(ie)-1(!)-333(Ni)1(e)-1(c)27(h)-332(c)-1(i)-333(P)28(an)-333(Jezus...)-333(Niec)27(h)-333(ci...)-333({)-333(z)-1(an)1(ies)-1(\\252a)-333(s)-1(i\\246)-333(rado\\261ci\\241.)]TJ 0 -13.549 Td[(Do)-55(jrza\\252a)-393(go)-392(j)1(u\\273)-393(z)-392(dalek)56(a,)-392(s)-1(iedzia\\252)-392(z)-393(Ro)-28(c)27(h)1(e)-1(m)-392(w)-393(gan)1(ku,)-392(a)-392(u)28(wid)1(z)-1(ia)28(wsz)-1(y)-392(j\\241)]TJ -27.879 -13.549 Td[(wysz)-1(ed\\252)-333(napr)1(z)-1(ec)-1(i)1(w)-334(w)-333(op\\252otki.)]TJ 27.879 -13.549 Td[(Sz\\252a)-362(ku)-362(n)1(ie)-1(m)28(u)-362(coraz)-363(w)28(oln)1(ie)-1(j)-361(i)-362(c)-1(oraz)-362(c)-1(i)1(\\246)-1(\\273e)-1(j)1(,)-362(c)27(h)28(yt)1(a)-56(j\\241c)-362(s)-1(i)1(\\246)-363(p)-27(o)-363(d)1(ro)-28(d)1(z)-1(e)-362(p\\252ota,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-402(n)1(ogi)-401(si\\246)-402(p)-27(o)-28(d)-400(ni\\241)-400(gi\\246)-1(\\252y)84(,)-401(br)1(ak)28(o)28(w)27(a\\252o)-401(tc)28(h)28(u,)-401(d)1(usi\\252y)-401(\\252zy)-401(i)-401(w)-401(g\\252o)28(wie)-402(mia\\252a)-401(tak)1(i)]TJ 0 -13.55 Td[(m\\241t,)-333(c)-1(o)-333(ledwie)-334(zdoli)1(\\252a)-334(wyj)1(\\241k)55(a\\242:)]TJ 27.879 -13.549 Td[({)-333(T)27(y\\273e\\261)-334(to!)-333(T)27(y)1(\\273)-1(e\\261)-1(!)-333({)-333(\\252z)-1(y)-333(zala\\252y)-333(re)-1(szt\\246)-334(s)-1(\\252\\363)28(w)-333(nabr)1(an)28(yc)27(h)-332(rado\\261c)-1(i)1(\\241.)]TJ 0 -13.549 Td[({)-255(A)-254(ja,)-254(Han)28(u\\261!)-255(Ja!)-254({)-255(p)1(rzygarn)1(\\241\\252)-255(j\\241)-254(m)-1(o)-28(cno)-254(do)-255(p)1(iersi,)-255(a)-254(przytu)1(la\\252)-255(z)-255(dob)1(ro\\261c)-1(i\\241)]TJ -27.879 -13.549 Td[(i)-256(z)-257(c)-1(a\\252ego)-257(se)-1(r)1(c)-1(a.)-256(Cis)-1(n)1(\\246)-1(\\252a)-256(s)-1(i\\246)-257(t)1(e)-1(\\273)-257(d)1(o)-257(ni)1(e)-1(go)-256(z)-1(go\\252a)-256(ju\\273)-257(b)-27(ez)-257(pami\\246c)-1(i,)-256(a)-256(je)-1(n)1(o)-257(t)1(e)-257(s)-1(zc)-1(z\\246)-1(sne)]TJ 0 -13.549 Td[(\\252z)-1(y)-372(sp\\252yw)28(a\\252y)-373(ciur)1(kiem)-373(p)-27(o)-373(t)28(w)27(ar)1(z)-1(y)-372(z)-1(b)1(lad)1(\\252)-1(ej)-372(i)-373(w)28(argi)-372(si\\246)-373(trz\\246)-1(s\\252y)83(,)-372(da)28(w)28(a\\252a)-373(m)27(u)-372(si\\246)-373(w)]TJ 0 -13.55 Td[(ramion)1(a)-334(wsz)-1(ystk)56(a,)-333(kiej)-333(to)-333(ut\\246s)-1(kn)1(ion)1(e)-334(dzie)-1(ci\\241tk)28(o.)]TJ 27.879 -13.549 Td[(D\\252ugo)-295(nie)-296(p)-27(oredzi\\252a)-296(p)1(rze)-1(m\\363)28(w)-1(i)1(\\242)-1(,)-295(ale)-296(c\\363\\273)-296(to)-296(mog\\252a)-296(rze)-1(c)-296(i)-295(jak)-295(wyp)-27(o)27(wiedzie\\242)-1(,)]TJ -27.879 -13.549 Td[(co)-271(s)-1(i\\246)-271(w)-271(ni)1(e)-1(j)-270(dzia\\252o!)-271(Dy)1(\\242)-272(b)29(y\\252ab)28(y)-271(kl)1(\\246)-1(k)56(a\\252a)-271(pr)1(z)-1(ed)-271(n)1(im,)-271(d)1(y\\242)-272(b)29(y\\252ab)28(y)-271(p)1(ro)-28(c)28(h)28(y)-271(zm)-1(i)1(ata\\252a,)]TJ 0 -13.549 Td[(wi\\246c)-241(j)1(e)-1(n)1(o)-240(ni)1(e)-1(ki)1(e)-1(d)1(y)-240(rw)28(a\\252o)-240(s)-1(i)1(\\246)-241(j)1(e)-1(j)-239(z)-240(piersi)-240(j)1(akie\\261)-241(s\\252o)28(w)27(o,)-239(pada)-55(j\\241c)-240(ki)1(e)-1(j)-239(to)-240(w)28(a\\273)-1(n)1(e)-241(ziarn)1(o)]TJ 0 -13.549 Td[(i)-355(ki)1(e)-1(j)-354(te)-1(n)-354(kwiat)-355(pac)28(hn\\241cy)-355(w)28(e)-1(se)-1(l)1(e)-1(m)-355(i)-355(orosz)-1(on)29(y)-355(krwi\\241)-355(se)-1(r)1(dec)-1(zn\\241,)-355(a)-355(o)-27(c)-1(zy)-355(wie)-1(r)1(ne)-355(i)]TJ 0 -13.55 Td[(o)-28(d)1(dan)1(e)-1(,)-280(o)-28(cz)-1(y)-280(p)-27(e)-1(\\252ne)-280(b)-28(ez)-1(gr)1(anicz)-1(n)1(e)-1(go)-280(mi\\252o)27(w)28(ani)1(a)-281(k\\252ad)1(\\252y)-281(m)28(u)-280(s)-1(i)1(\\246)-281(p)-28(o)-27(d)-281(stop)28(y)-280(ki)1(e)-1(j)-280(p)1(s)-1(y)84(,)]TJ 0 -13.549 Td[(zda)-56(j)1(\\241c)-334(si\\246)-334(na)-333(w)28(ol\\246)-334(j)1(e)-1(go)-333(i)-333(na)-333(jego)-334(\\252ask)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Zm)-1(izero)28(w)27(a\\252a\\261)-334(si\\246,)-334(Han)29(u\\261!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(g\\252ad)1(z)-1(\\241c)-334(j)1(\\241)-334(p)1(ie\\261)-1(ciwie)-334(p)-27(o)-333(t)27(w)28(arzy)83(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(..)1(.)-334(t)28(y)1(lam)-334(pr)1(z)-1(eni)1(e)-1(s\\252a,)-334(t)28(y)1(lam)-334(si\\246)-334(wycz)-1(ek)55(a\\252a.)1(..)]TJ 0 -13.549 Td[({)-333(Zapraco)28(w)27(a\\252a)-333(s)-1(i\\246)-333(k)28(obieta)-333({)-334(ozw)27(a\\252)-333(si\\246)-334(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[({)-488(T)84(o)-488(i)-487(w)-1(y)-487(j)1(e)-1(ste)-1(\\261c)-1(i)1(e)-1(!)-487(Ca\\252kiem)-488(o)-488(w)28(as)-488(pr)1(z)-1(ep)-28(omni)1(a\\252)-1(am!)-487({)-488(j)1(\\246)-1(\\252a)-487(go)-488(wita\\242)-488(i)]TJ -27.879 -13.55 Td[(ca\\252)-1(o)28(w)28(a\\242)-334(p)-27(o)-334(r)1(\\246)-1(k)56(ac)27(h)1(,)-333(on)-333(z)-1(a\\261)-334(r)1(z)-1(ek\\252)-333(\\273)-1(ar)1(tobli)1(w)-1(ie:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(z)-1(iw)28(ota.)-333(Obi)1(e)-1(ca\\252e)-1(m)-333(go)-334(w)28(am)-334(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\261\\242)-1(,)-333(to)-333(go)-333(s)-1(ob)1(ie)-334(mac)-1(ie...)]TJ 0 -13.549 Td[({)-405(A)-406(mam)-1(!)-405(M)1(am)-1(!)-405({)-406(za)28(w)27(o\\252a\\252a)-405(s)-1(ta)-55(j\\241c)-406(w)-405(nag\\252ym)-406(p)-27(o)-28(d)1(z)-1(iwie)-406(p)1(rze)-1(d)-405(An)28(t)1(kiem)-1(,)]TJ -27.879 -13.549 Td[(wybi)1(e)-1(la\\252)-234(b)-27(o)28(w)-1(i)1(e)-1(m,)-234(wydelik)56(atn)1(ia\\252)-234(i)-234(taki)-234(si\\246)-234(w)-1(i)1(dzia\\252)-234(uro)-27(dn)28(y)84(,)-234(mo)-28(c)-1(ar)1(n)28(y)84(,)-234(pa\\253)1(s)-1(ki)1(,)-234(jakb)29(y)]TJ 0 -13.549 Td[(zgo\\252)-1(a)-333(kto)-333(dr)1(ugi,)-333(p)-27(o)-56(j)1(\\241\\242)-334(tego)-334(n)1(ie)-334(mog\\252a.)]TJ 27.879 -13.55 Td[({)-333(Przem)-1(ieni)1(\\252e)-1(m)-334(si\\246)-334(to,)-333(co)-333(tak)-333(p)-28(o)-333(mnie)-334(\\261lepiasz)-1(?)]TJ 0 -13.549 Td[({)-333(Nib)28(y)-333(ni)1(e)-1(,)-333(ale)-334(ca\\252kiem)-334(j)1(e)-1(ste)-1(\\261)-333(jaki)1(\\261)-334(z)-1(go\\252a)-333(in)1(a)-1(k)1(s)-1(zy)83(.)]TJ\nET\nendstream\nendobj\n2028 0 obj <<\n/Type /Page\n/Contents 2029 0 R\n/Resources 2027 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2027 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2032 0 obj <<\n/Length 8653      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(636)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(j,)-333(p)-27(\\363)-56(j)1(d\\246)-333(w)-334(p)-27(ole)-334(do)-333(rob)-27(ot)28(y)84(,)-334(t)1(o)-334(zarn)1(o)-334(b)-27(\\246)-1(d)1(\\246)-334(j)1(ak)-334(p)1(rz\\363)-28(dzi.)]TJ 0 -13.549 Td[(Sk)28(o)-27(c)-1(zy\\252a)-333(naraz)-333(do)-333(iz)-1(b)29(y)-334(p)-27(o)-333(na)-55(jm\\252o)-28(dsz)-1(e)-333(dzie)-1(c)28(k)28(o.)]TJ 0 -13.549 Td[({)-307(Jes)-1(zc)-1(ze)-1(c)28(h)-307(go)-307(n)1(ie)-308(wid)1(z)-1(i)1(a\\252e)-1(\\261!)-307({)-307(w)27(o\\252a\\252a)-307(wyn)1(os)-1(z\\241c)-308(r)1(oz)-1(kr)1(z)-1(y)1(c)-1(zanego)-307(c)27(h\\252op)1(ak)55(a)]TJ -27.879 -13.549 Td[({)-333(p)-28(op)1(atrz)-334(j)1(e)-1(n)1(o,)-333(p)-28(o)-27(dobn)29(y)-333(do)-333(c)-1(i\\246)-333(jak)-333(dwie)-333(krop)1(le)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sieln)28(y)-333(p)1(arob!)-333({)-333(za)27(win)1(\\241\\252)-334(go)-333(w)-334(r)1(\\363g)-334(k)56(ap)-27(ot)28(y)-333(i)-334(p)-27(oh)28(u)1(\\261)-1(t)28(yw)28(a\\252.)]TJ 0 -13.55 Td[({)-238(Ro)-28(c)27(h)1(o)-239(m)28(u)-238(n)1(a)-239(i)1(m)-1(i\\246!)-238(Pi)1(e)-1(tr)1(as)-1(,)-238(a)-238(c)27(h)1(o)-28(d\\271\\273)-1(e)-238(i)-238(t)28(y)-238(do)-238(o)-56(j)1(c)-1(a)-238({)-238(p)-27(o)-28(dsadzi\\252a)-238(s)-1(tar)1(s)-1(ze)-1(go,)]TJ -27.879 -13.549 Td[(\\273e)-402(j\\241\\252)-401(s)-1(i)1(\\246)-402(gramoli\\242)-401(na)-401(o)-56(j)1(c)-1(o)28(w)27(e)-401(k)28(olana)-401(b)-27(e)-1(\\252k)28(o)-28(c\\241c)-402(cos)-1(ik)1(.)-401(An)28(te)-1(k)-401(ob)-55(j)1(\\241\\252)-402(ob)28(y)1(dw)28(\\363)-28(c)27(h)-401(z)]TJ 0 -13.549 Td[(dziwn\\241)-333(cz)-1(u)1(\\252o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-290(R)-1(ob)1(aki)-290(k)28(o)-28(c)27(h)1(ane,)-290(kru)1(s)-1(zyn)28(y)-290(na)-55(jmilsze)-1(!)-290(Jak)-290(to)-291(j)1(u\\273)-291(P)1(ietras)-291(wyr)1(\\363s)-1(\\252,)-290(no,)-290(i)-290(p)-28(o)]TJ -27.879 -13.549 Td[(sw)27(o)-55(jem)27(u)-333(co\\261)-334(ra)-55(jcuj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-495(P)1(rze)-1(cie)-1(,)-494(a)-495(taki)-494(s)-1(p)1(rze)-1(ciwn)28(y)83(,)-494(a)-495(taki)-494(z)-1(m)28(y\\261)-1(l)1(n)28(y)83(,)-494(dor)1(w)-1(i)1(e)-496(si\\246)-495(jeno)-495(b)1(ata,)-495(to)]TJ -27.879 -13.55 Td[(zara)-372(t)1(rz)-1(ask)56(a)-372(i)-371(g\\246s)-1(i)-371(wygani)1(a)-372({)-371(przyku)1(c)-1(n)1(\\246)-1(\\252a)-371(pr)1(z)-1(y)-371(ni)1(c)27(h.)-371({)-371(Pietras,)-371(p)-28(o)28(wiedz:)-372(t)1(ata!)]TJ 0 -13.549 Td[(p)-27(o)27(wiedz.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-410(co)-410(zamam)-1(r)1(ota\\252)-410(i)-409(na)28(w)27(et)-410(j)1(e)-1(sz)-1(cze)-411(wi\\246ce)-1(j)-409(cos)-1(ik)-409(gw)27(ar)1(z)-1(y)1(\\252)-410(p)-28(o)-409(s)-1(w)28(o)-56(j)1(e)-1(m)28(u,)]TJ -27.879 -13.549 Td[(ci\\241)-28(ga)-56(j)1(\\241c)-334(o)-55(jca)-334(za)-334(w\\252osy)83(.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a,)-333(cz)-1(em)27(u)-333(si\\246)-334(to)-333(na)-333(mnie)-333(b)-28(o)-28(czys)-1(z?)-334(Ch)1(o)-28(d\\271\\273)-1(e)-333({)-334(zau)28(w)27(a\\273y\\252.)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(to)-334(\\261mi\\246)-334({)-333(piskn)1(\\246)-1(\\252a)-333(w)-1(st)28(yd)1(liwie.)]TJ 0 -13.549 Td[({)-395(Ch)1(o)-28(d\\271\\273)-1(e,)-394(g\\252)-1(u)1(pi)1(a,)-395(c)27(h)1(o)-28(d)1(\\271)-1(!)-394({)-395(p)1(rz)-1(y)1(garn\\241\\252)-394(j\\241)-394(tkliwie,)-395(p)-27(o)-395(b)1(ratersku.)-394({)-395(T)84(e)-1(ra)]TJ -27.879 -13.549 Td[(ju)1(\\273)-434(m)-1(e)-434(w)28(e)-434(ws)-1(zy\\242)-1(k)1(im)-434(s)-1(\\252u)1(c)27(h)1(a)-56(j)-433(kiej)-433(o)-56(j)1(c)-1(a.)-433(Nie)-434(b)-28(\\363)-55(j)-433(s)-1(i\\246,)-433(s)-1(rogi)-433(la)-433(c)-1(iebi)1(e)-435(n)1(ie)-434(b)-27(\\246)-1(d)1(\\246)-434(i)]TJ 0 -13.549 Td[(kr)1(z)-1(ywd)1(y)-334(o)-27(d)-333(m)-1(n)1(ie)-334(n)1(ie)-334(zaz)-1(n)1(as)-1(z.)]TJ 27.879 -13.549 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-1(a)-333(si\\246)-334(d)1(z)-1(iew)27(cz)-1(y)1(nin)1(a)-334(\\273aln)1(ie)-1(,)-333(wyp)-27(omina)-55(j\\241c)-334(o)-55(jca)-334(i)-333(b)1(rata.)]TJ 0 -13.55 Td[({)-423(Jak)-423(mi)-423(w)27(\\363)-55(jt)-423(p)-27(e)-1(d)1(z)-1(ia\\252)-423(o)-423(jego)-423(\\261)-1(mierc)-1(i)1(,)-423(to)-423(jakb)28(y)-423(me)-424(k)1(to)-424(k)1(\\252onic\\241)-423(z)-1(d)1(z)-1(ieli\\252,)]TJ -27.879 -13.549 Td[(ja\\273e)-343(me)-344(zamro)-28(cz)-1(y)1(\\252)-1(o.)-342(T)83(aki)-342(par)1(ob)-343(k)28(o)-27(c)27(han)29(y)83(,)-342(taki)-342(brat)-342(na)-55(jmilejsz)-1(y)84(.)-343(I)-342(kto)-343(b)29(y)-343(si\\246)-343(to)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)1(z)-1(i)1(a\\252.)-261(Ju)1(\\273)-1(em)-261(s)-1(ob)1(ie)-261(u)1(k\\252ada\\252)-261(w)-260(g\\252o)27(wie,)-261(j)1(ak)-260(s)-1(i\\246)-261(to)-260(gron)28(t)1(e)-1(m)-261(p)-27(o)-28(dzielim,)-260(na)28(w)27(et)-261(j)1(u\\273)]TJ 0 -13.549 Td[(o)-352(k)28(ob)1(iec)-1(ie)-352(l)1(a)-352(n)1(ie)-1(go)-351(m)27(y\\261la\\252em)-352({)-352(wyr)1(z)-1(ek)55(a\\252)-351(c)-1(i)1(c)27(ho,)-351(z)-352(g\\252\\246)-1(b)-27(ok)56(\\241)-352(b)-27(ole\\261)-1(ci\\241,)-351(ja\\273e)-352(Ro)-28(c)27(h)1(o,)]TJ 0 -13.549 Td[(ab)28(y)-333(o)-28(d)1(wr\\363)-28(ci\\242)-334(sm)27(ut)1(ne)-334(m)28(y\\261)-1(l)1(e)-334(o)-28(d)-333(wsz)-1(ystkic)28(h,)-333(za)27(w)28(o\\252a\\252)-334(p)-27(o)-28(d)1(nosz)-1(\\241c)-334(si\\246)-334(z)-333(m)-1(i)1(e)-1(j)1(s)-1(ca:)]TJ 27.879 -13.55 Td[({)-333(Dobr)1(z)-1(e)-334(w)28(am)-334(gad)1(a\\242)-1(,)-333(a)-333(m)-1(n)1(ie)-334(j)1(u\\273)-334(k)1(is)-1(zki)-333(marsz)-1(a)-333(gra)-55(j\\241.)]TJ 0 -13.549 Td[({)-287(Lab)-28(oga,)-287(d)1(o)-288(cna)-287(p)1(rz)-1(ep)-27(om)-1(n)1(ia\\252am.)-288(J)1(\\363z)-1(k)56(a,)-287(\\252ap)-287(no)-287(te)-288(\\273\\363\\252te)-288(k)28(ogu)1(tki.)-287(Cip)1(uc)27(h)1(-)]TJ -27.879 -13.549 Td[(n)28(y!)-411(c)-1(i)1(p,)-412(cip)1(,)-412(cip!)-411(A)-412(m)-1(o\\273e)-412(ja)-55(jk)28(\\363)28(w)-412(prz\\363)-28(d)1(z)-1(i,)-411(c)-1(o?)-412(A)-411(m)-1(o\\273e)-413(c)28(hleba?)-412(\\261wie)-1(\\273y)-412(i)-411(m)-1(as\\252o)]TJ 0 -13.549 Td[(w)28(c)-1(zora)-56(j)1(s)-1(ze!)-428(Ur\\273)-1(n)1(ij)-428(\\252b)29(y)-428(i)-428(s)-1(p)1(arz)-429(wrz\\241tki)1(e)-1(m!)-428(Wnet)-428(je)-428(w)27(am)-428(s)-1(p)1(ra)28(wi\\246)-1(.)-427(T)83(o)-429(gap)1(a)-428(z)-1(e)]TJ 0 -13.549 Td[(mnie,)-333(\\273)-1(eb)28(y)-333(zabac)-1(zy\\242!)]TJ 27.879 -13.55 Td[({)-301(Osta)28(w)-1(,)-300(Ha)-1(n)29(u\\261,)-301(k)28(ogutk)1(i)-301(na)-301(p)-27(ote)-1(m,)-301(a)-301(sp)-28(or)1(z)-1(\\241d)1(\\271)-302(cos)-1(ik)-300(p)-28(o)-301(n)1(as)-1(ze)-1(m)28(u.)-301(T)83(ak)-300(m)-1(i)]TJ -27.879 -13.549 Td[(si\\246)-274(j)1(u\\273)-273(pr)1(z)-1(ejad)1(\\252o)-273(to)-273(mie)-1(sc)27(ki)1(e)-274(j)1(e)-1(d)1(z)-1(eni)1(e)-1(,)-273(co)-273(o)-28(c)28(hotn)1(ie)-274(si\\246d\\246)-273(pr)1(z)-1(ed)-273(misk)56(\\241)-273(z)-1(iemniak)28(\\363)28(w)]TJ 0 -13.549 Td[(z)-334(b)1(arsz)-1(cz)-1(em)-334({)-333(\\261)-1(mia\\252)-333(s)-1(i\\246)-333(w)27(es)-1(o\\252o.)-333({)-333(Je)-1(n)1(o)-333(la)-334(Ro)-27(c)27(ha)-333(zg)-1(ot)1(uj)-333(co)-334(i)1(nsz)-1(ego.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(!)-333(W)1(\\252)-1(a\\261ni)1(e)-334(na)-333(to)-333(s)-1(amo)-333(m)-1(am)-333(s)-1(maki!)]TJ 0 -13.549 Td[(Hank)56(a)-364(rzuci\\252a)-364(s)-1(i\\246)-364(s)-1(zyk)28(o)28(w)27(a\\242,)-364(ale)-365(\\273e)-365(zie)-1(mni)1(aki)-364(ju)1(\\273)-365(par)1(k)28(ota\\252y)-364(w)-365(garn)1(ku,)-364(to)]TJ -27.879 -13.549 Td[(jeno)-333(wyn)1(ie)-1(s\\252a)-334(z)-333(k)28(om)-1(or)1(y)-334(k)1(ie)-1(\\252b)1(as)-1(\\246)-333(do)-333(barszc)-1(zu.)]TJ 27.879 -13.55 Td[({)-336(La)-335(c)-1(i)1(e)-1(b)1(ie)-1(m)-336(osta)28(wi\\252a,)-336(Jan)29(to\\261)-1(.)-335(T)83(o)-336(z)-336(tej)-335(m)-1(acior)1(y)83(,)-335(c)-1(o\\261)-336(to)-335(j\\241)-335(k)55(aza\\252)-336(zas)-1(zlac)27(h)1(-)]TJ -27.879 -13.549 Td[(to)28(w)27(a\\242)-333(przed)-333(Wielk)56(ano)-28(c\\241.)]TJ 27.879 -13.549 Td[({)-266(No,)-265(no,)-265(n)1(ie)-1(zgorsz)-1(e)-266(p)-27(\\246)-1(t)1(o,)-266(ale)-266(d)1(a)-266(B\\363g,)-266(\\273e)-266(je)-266(zm)-1(o\\273em)27(y)84(.)-266(Hale,)-265(R)-1(o)-27(c)27(h)28(u)1(,)-266(a)-265(k)55(a)-55(j\\273e)]TJ -27.879 -13.549 Td[(to)-333(nasz)-1(e)-333(go\\261)-1(ci\\253ce)-1(?)]TJ 27.879 -13.549 Td[(St)1(ary)-416(p)-28(o)-27(dsun)1(\\241\\252)-417(sp)-28(or)1(y)-416(tob)-28(\\363\\252,)-416(z)-417(k)1(t\\363rego)-417(An)29(te)-1(k)-416(j)1(\\241\\252)-417(wyj)1(m)-1(o)28(w)28(a\\242)-417(r\\363\\273no\\261c)-1(i)1(,)-417(a)]TJ -27.879 -13.55 Td[(p)-27(o)-28(da)28(w)28(a\\242)-334(k)56(a\\273)-1(d)1(e)-1(j)-333(z)-334(osobn)1(a.)]TJ 27.879 -13.549 Td[({)-239(Na\\261c)-1(i,)-238(Han)28(u\\261,)-239(to)-239(la)-239(ciebie,)-239(jak)-238(c)-1(i)-239(k)56(a)-55(j)-239(dr)1(oga)-239(w)-1(y)1(pad)1(nie)-239({)-239(p)-28(o)-27(da\\252)-239(jej)-239(w)28(e)-1(\\252n)1(ian\\241)]TJ\nET\nendstream\nendobj\n2031 0 obj <<\n/Type /Page\n/Contents 2032 0 R\n/Resources 2030 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2017 0 R\n>> endobj\n2030 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2035 0 obj <<\n/Length 8812      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(637)]TJ -358.232 -35.866 Td[(c)27(h)29(ust\\246)-1(,)-245(tak)1(usie)-1(\\253)1(k)56(\\241,)-245(jak)56(\\241)-245(m)-1(i)1(a\\252a)-246(or)1(gani\\261cina,)-245(ca\\252kiem)-246(cz)-1(ar)1(na)-245(i)-245(w)-245(c)-1(ze)-1(r)1(w)27(on)1(e)-246(i)-245(zielone)]TJ 0 -13.549 Td[(kr)1(at)27(y)84(.)]TJ 27.879 -13.549 Td[({)-251(La)-250(m)-1(n)1(ie.)-251(\\233e\\261)-252(t)1(o)-251(pami\\246ta\\252,)-251(Jan)29(to\\261)-251({)-251(j\\246kn)1(\\246)-1(\\252a)-251(z)-251(n)1(ie)-1(zg\\252\\246)-1(b)1(ion\\241)-250(wdzi\\246)-1(cz)-1(n)1(o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-407(Ba,)-406(\\273)-1(eb)28(y)-406(nie)-407(Ro)-28(c)28(ho,)-406(to)-407(b)28(ym)-407(b)29(y\\252)-407(zabacz)-1(y\\252,)-406(ale)-407(p)1(rz)-1(y)1(p)-28(omni)1(e)-1(li)-406(i)-406(p)-28(osz)-1(l)1(im)]TJ -27.879 -13.549 Td[(raze)-1(m)-333(wybiera\\242)-334(i)-333(k)1(up)-27(o)27(w)28(a\\242.)]TJ 27.879 -13.55 Td[(A)-328(s)-1(p)-27(oro)-328(naku)1(pi\\252,)-328(gdy)1(\\273)-329(do)-28(d)1(a\\252)-329(\\273oni)1(e)-329(jes)-1(zc)-1(ze)-329(trzew)-1(i)1(ki)-329(i)-328(c)28(h)28(uste)-1(czk)28(\\246)-329(na)-328(g\\252o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(jedw)28(abn)1(\\241,)-287(mo)-28(d)1(r\\241)-287(w)-287(\\273\\363\\252te)-287(kwiatuszki.)-287(J)1(\\363z)-1(ce)-287(da\\252)-287(tak)56(\\241)-287(sam)-1(\\241,)-286(jeno)-286(c)-1(o)-287(zielon\\241,)-286(oraz)]TJ 0 -13.549 Td[(fr)1(yzk)28(\\246)-360(i)-358(par)1(\\246)-360(sz)-1(n)29(urk)28(\\363)28(w)-359(p)1(ac)-1(ior)1(k)28(\\363)28(w)-359(z)-360(d)1(\\252ugac)27(h)1(n\\241)-358(w)-1(st\\246g\\241)-359(do)-358(z)-1(a)28(wi\\241z)-1(y)1(w)27(an)1(ia,)-359(za\\261)-359(la)]TJ 0 -13.549 Td[(dziec)-1(i)-301(p)1(rzywi\\363z)-1(\\252)-301(p)1(ie)-1(r)1(nik)28(\\363)28(w)-301(i)-301(organ)1(ki,)-301(na)28(w)28(e)-1(t)-301(mia\\252)-301(la)-301(k)28(o)28(w)27(alo)28(w)28(e)-1(j)1(,)-301(b)-28(o)-301(cos)-1(i)1(k)-301(o)-28(d\\252o\\273y\\252)]TJ 0 -13.549 Td[(ob)28(win)1(i\\246)-1(t)1(e)-1(go)-333(w)-334(p)1(apier,)-333(a)-333(nie)-333(z)-1(ap)-27(om)-1(n)1(ia\\252)-333(Witk)56(a)-333(ni)-333(te\\273)-334(o)-334(p)1(arob)1(ku.)]TJ 27.879 -13.549 Td[(Ja\\273e)-415(krzykn)1(\\246)-1(\\252y)-414(z)-415(p)-27(o)-28(d)1(z)-1(i)1(w)-1(u)-414(n)1(a)-414(c)-1(oraz)-414(no)28(w)27(e)-414(c)-1(u)1(dn)1(o\\261)-1(ci,)-414(ogl\\241da)-55(j\\241c)-414(je)-415(i)-414(p)1(rzy-)]TJ -27.879 -13.55 Td[(mie)-1(r)1(z)-1(a)-55(j\\241c)-292(z)-291(tak)55(\\241)-291(rad)1(o\\261)-1(ci\\241,)-291(\\273e)-292(Hance)-292(\\252z)-1(y)-291(k)56(apa\\252y)-291(p)-27(o)-291(z)-1(ru)1(mie)-1(n)1(ionej)-291(t)28(w)27(ar)1(z)-1(y)84(,)-291(a)-292(J)1(\\363)-1(zk)56(a)]TJ 0 -13.549 Td[(za)-334(g\\252o)28(w)27(\\246)-333(c)27(h)28(yta\\252a)-333(si\\246)-334(w)-334(p)-27(o)-28(d)1(z)-1(i)1(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(s)-1(i\\246)-333(u\\261m)-1(iec)27(h)1(a\\252)-334(zac)-1(i)1(e)-1(ra)-55(j\\241c)-333(r\\246)-1(ce,)-334(An)29(te)-1(k)-333(za\\261)-334(jeno)-333(p)-27(ogw)-1(i)1(z)-1(d)1(yw)27(a\\252.)]TJ 0 -13.549 Td[({)-487(Zarob)1(ili\\261ta)-487(s)-1(ob)1(ie)-488(n)1(a)-487(go\\261)-1(cini)1(e)-1(c.)-487(Ro)-28(c)27(h)1(o)-487(p)-28(o)28(wiada\\252,)-487(j)1(ak)-487(to)-487(ws)-1(zy\\242k)28(o)-488(sz\\252)-1(o)]TJ -27.879 -13.549 Td[(sk\\252adn)1(ie)-287(w)-287(gosp)-28(o)-28(d)1(arce)-1(.)-286(Da)-55(jcie)-287(no)-286(s)-1(p)-27(ok)28(\\363)-56(j)1(,)-287(n)1(ie)-287(la)-286(dzi\\246k)28(o)27(w)28(a\\253)-286(pr)1(z)-1(ywiez)-1(\\252em)-287({)-286(w)27(o\\252a\\252)]TJ 0 -13.55 Td[(br)1(oni\\241c)-333(s)-1(i\\246,)-333(b)-28(o)-333(rzuci\\252y)-333(si\\246)-334(go)-333(\\261)-1(cisk)55(a\\242)-333(i)-334(ca\\252o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-419(An)1(i)-419(mi)-418(s)-1(i\\246)-419(ki)1(e)-1(j)-418(\\261)-1(n)1(i\\252y)-418(takie)-419(cudn)1(o\\261)-1(ci)-418({)-419(s)-1(zepn\\246\\252a)-419(\\252za)27(w)28(o)-419(Han)1(k)55(a)-418(s)-1(i)1(ada)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(m)-1(ierza\\242)-317(trzew)-1(i)1(ki.)-316({)-316(C)-1(i)1(as)-1(n)1(e)-317(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o,)-317(n)1(ogi)-316(m)-1(i)-316(n)1(abr)1(z)-1(mia\\252y)-316(o)-28(d)-316(b)-27(os)-1(ak)56(a,)-316(ale)-317(n)1(a)]TJ 0 -13.549 Td[(zim)-1(\\246)-333(b)-28(\\246d\\241)-333(w)-334(sam)-334(r)1(az)-1(.)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-431(j)1(\\241\\252)-431(s)-1(i)1(\\246)-432(r)1(oz)-1(p)28(y)1(t)28(yw)27(a\\242)-431(o)-431(wie\\261)-431(i)-431(r)1(\\363\\273)-1(n)1(e)-432(spr)1(a)28(w)-1(y)84(,)-431(op)-27(o)28(wiada\\252a)-431(j)1(e)-1(n)1(o)-431(p)1(i\\241te)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-369(dzies)-1(i\\241te)-369(k)1(rz\\241ta)-56(j\\241c)-369(si\\246)-369(tak)-368(pi)1(lnie)-369(k)28(ol)1(e)-369(jad\\252a,)-368(\\273)-1(e)-369(p)-27(okr)1(\\363tc)-1(e)-369(zas)-1(ta)28(wi\\252a)-368(prze)-1(d)]TJ 0 -13.549 Td[(ni)1(m)-1(i)-389(zie)-1(mn)1(iak)28(\\363)28(w)-390(s)-1(zcz)-1(o)-28(d)1(rze)-390(om)-1(aszc)-1(zon)28(yc)27(h)-389(t)1(\\246)-1(g\\241)-389(m)-1(i)1(c)27(h\\246)-389(i)-390(n)1(ie)-390(mniejsz\\241)-390(b)1(arsz)-1(cz)-1(u)1(,)]TJ 0 -13.549 Td[(w)-334(k)1(t\\363rym)-333(kieb)28(y)-333(k)28(o\\252o)-334(p)1(\\252yw)27(a\\252a)-333(kie\\252basa.)]TJ 27.879 -13.549 Td[(Sk)1(w)27(ap)1(nie)-333(s)-1(i\\246)-333(przypi)1(\\246)-1(li)-333(d)1(o)-334(\\261ni)1(adan)1(ia.)]TJ 0 -13.549 Td[({)-263(T)83(o)-263(mi)-263(dop)1(ie)-1(r)1(o)-263(jad\\252o)-263({)-263(p)-27(okrzykiw)28(a\\252)-263(w)27(es)-1(o\\252o)-263({)-263(ki)1(e)-1(\\252basa)-263(galancie)-263(c)-1(zuj)1(na.)-263(P)28(o)]TJ -27.879 -13.55 Td[(t)28(ym)-299(to)-299(cz)-1(\\252o)28(wiek)-299(p)-27(o)-28(cz)-1(u)1(je)-299(jak)56(\\241\\261)-299(w)27(ag\\246)-299(w)-299(\\273yw)28(o)-28(c)-1(i)1(e)-1(.)-298(A)-299(to)-299(me)-299(pa\\261li)-299(w)-299(t)28(y)1(m)-300(k)1(rem)-1(in)1(ale,)]TJ 0 -13.549 Td[(\\273e)-1(b)28(y)-333(ic)28(h)-333(w)27(ciorn)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Dopiero\\261)-333(to)-334(si\\246,)-334(c)28(h)28(ud)1(z)-1(i)1(aku,)-333(n)1(am)-1(or)1(z)-1(y\\252)-333(g\\252o)-28(dem.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(to)-28(\\242)-333(w)-334(k)28(o\\253cu)-333(ju)1(\\273)-334(n)1(ic)-334(je\\261\\242)-334(nie)-333(m)-1(og\\252em)-1(.)]TJ 0 -13.549 Td[({)-312(P)28(o)28(wiad)1(ali)-312(c)27(h)1(\\252op)28(y)83(,)-311(jak)-311(tam)-313(\\273ywi\\241,)-311(\\273)-1(e)-312(p)-28(on)1(o)-312(pi)1(e)-1(s)-312(jeno)-312(z)-312(g\\252o)-28(d)1(u)-312(c)27(h)29(yc)-1(i)1(\\252b)28(y)-312(si\\246)]TJ -27.879 -13.55 Td[(taki)1(e)-1(go)-333(jad)1(\\252)-1(a,)-333(p)1(ra)28(wda)-333(to?)]TJ 27.879 -13.549 Td[({)-299(J)1(u\\261c)-1(i,)-298(co)-299(pr)1(a)28(w)-1(d)1(a,)-299(al)1(e)-299(na)-55(jgorsz)-1(e,)-298(\\273)-1(e)-299(tr)1(z)-1(a)-298(b)28(y\\252o)-298(s)-1(iedzie\\242)-299(z)-1(a)28(w)28(art)28(y)83(.)-298(P)28(\\363ki)-298(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(zim)-1(n)1(o,)-333(to)-332(jes)-1(zc)-1(ze)-1(,)-332(ale)-333(s)-1(k)28(or)1(o)-333(dogr)1(z)-1(a\\252o)-333(s\\252o\\253ce)-334(i)-332(z)-1(al)1(e)-1(cia\\252o)-333(mi)-333(zie)-1(mi\\241,)-332(to)-333(m)28(y\\261)-1(l)1(a\\252)-1(em,)]TJ 0 -13.549 Td[(co)-464(si\\246)-464(ju)1(\\273)-464(w)-1(\\261c)-1(i)1(e)-1(kn)1(\\246)-1(.)-463(P)28(ac)28(hni)1(a\\252a)-464(mi)-464(w)28(ola)-464(l)1(e)-1(p)1(ie)-1(j)-463(n)1(i\\271li)-464(t)1(a)-464(kie\\252basa.)-464(J)1(u\\273e)-1(m)-464(kr)1(at)28(y)]TJ 0 -13.549 Td[(pr)1(\\363b)-28(o)28(w)28(a\\252)-334(r)1(w)27(a\\242,)-333(jeno)-333(c)-1(o)-333(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(z)-1(i\\252y)84(.)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(co)-333(tam)-334(bi)1(j\\241?)-334({)-333(sp)28(yta\\252a)-333(l\\246kliwie.)]TJ 0 -13.55 Td[({)-296(A)-295(bij)1(\\241!)-296(S)1(\\241)-296(tam)-296(b)-27(o)28(w)-1(i)1(e)-1(m)-296(i)-295(takie)-296(zb)-28(\\363)-55(je,)-296(k)1(t\\363re)-296(ju)1(\\273)-296(z)-296(c)-1(zyste)-1(j)-295(spra)28(wiedli)1(w)27(o\\261c)-1(i)]TJ -27.879 -13.549 Td[(p)-27(o)27(win)1(n)28(y)-414(co)-415(d)1(nia)-414(b)1(ra\\242)-415(ki)1(je.)-414(Mni)1(e)-415(si\\246)-415(ta)-414(ni)1(e)-415(w)27(a\\273ono)-414(tk)1(n\\241\\242)-415(n)1(i)-414(palce)-1(m.)-414(Niec)27(h)28(b)29(y)]TJ 0 -13.549 Td[(ju)1(c)27(h)1(a)-334(spr)1(\\363b)-28(o)28(w)28(a\\252)-334(kt\\363r)1(y)83(,)-333(d)1(a\\252b)28(ym)-334(m)28(u)-333(tabak)1(i,)-333(no!)]TJ 27.879 -13.549 Td[({)-287(J)1(u\\261c)-1(i,)-286(kto)-286(b)28(y)-286(c)-1(i)1(\\246)-287(ta)-287(p)1(rz)-1(em\\363g\\252,)-287(mo)-28(carzu,)-286(kto?)-287({)-286(przy\\261wiadcz)-1(a\\252a)-286(rado\\261ni)1(e)-1(,)]TJ -27.879 -13.549 Td[(wpatr)1(z)-1(on)1(a)-334(w)-333(niego)-333(i)-334(czu)28(w)27(a)-55(j\\241ca)-334(n)1(a)-333(na)-56(j)1(l\\273e)-1(j)1(s)-1(ze)-334(s)-1(k)1(ini)1(e)-1(n)1(ie)-1(.)]TJ 27.879 -13.55 Td[(Ryc)27(h)1(\\252o)-320(si\\246)-320(j)1(e)-1(d)1(nak)-319(u)28(win)1(\\246)-1(li)-319(z)-319(jad\\252em)-320(i)-319(zaraz)-320(p)-27(os)-1(zli)-319(s)-1(p)1(a\\242)-320(do)-319(sto)-28(do\\252y)84(,)-319(k)55(a)-55(j)-319(ju)1(\\273)]TJ -27.879 -13.549 Td[(nan)1(ies)-1(\\252a)-333(im)-334(Han)1(k)55(a)-333(d)1(o)-334(s\\241s)-1(i)1(e)-1(k)56(a)-333(pierzyn)-333(i)-333(p)-28(o)-27(du)1(s)-1(ze)-1(k.)]TJ\nET\nendstream\nendobj\n2034 0 obj <<\n/Type /Page\n/Contents 2035 0 R\n/Resources 2033 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2033 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2039 0 obj <<\n/Length 9068      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(638)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(\\363)-55(jcie)-334(si\\246)-334(Boga,)-333(to)-28(\\242)-334(stopi)1(m)27(y)-333(s)-1(i)1(\\246)-334(na)-333(skw)27(ar)1(ki)-333({)-334(za\\261m)-1(ia\\252)-333(s)-1(i)1(\\246)-334(Ro)-28(c)27(h)1(o.)]TJ 0 -13.549 Td[(Ju)1(\\273)-467(n)1(ie)-467(o)-27(drze)-1(k)1(\\252a,)-466(ale)-467(za)28(w)27(ar)1(\\252s)-1(zy)-466(z)-1(a)-466(n)1(imi)-466(wrota,)-466(wtedy)-466(d)1(opi)1(e)-1(ro)-466(ca\\252kiem)]TJ -27.879 -13.549 Td[(os\\252)-1(ab)1(\\252a)-352(i)-352(u)1(c)-1(iek\\252a)-352(na)-351(ogr\\363)-28(d)-351(do)-352(p)1(ie)-1(l)1(e)-1(n)1(ia)-352(pietru)1(s)-1(zki.)-351(Roz)-1(gl\\241d)1(a\\252a)-352(s)-1(i)1(\\246)-353(c)27(h)29(w)-1(i)1(l\\246)-352(dok)28(o\\252a)]TJ 0 -13.549 Td[(i)-445(b)1(uc)28(hn\\246\\252a)-445(p\\252acz)-1(em.)-445(P\\252ak)56(a\\252a)-445(z)-445(rad)1(o\\261)-1(ci,)-445(p)1(\\252ak)55(a\\252a,)-444(\\273)-1(e)-445(s)-1(\\252o\\253)1(c)-1(e)-445(pr)1(z)-1(y)1(grz)-1(ew)28(a)-1(\\252o)-444(j\\241)-445(w)]TJ 0 -13.549 Td[(pl)1(e)-1(cy)83(,)-338(\\273e)-339(z)-1(ielone)-339(d)1(rze)-1(w)28(a)-339(c)28(h)28(wia\\252y)-339(si\\246)-339(n)1(ad)-339(g\\252o)28(w)28(\\241,)-339(\\273e)-339(ptak)1(i)-339(\\261piew)28(a\\252)-1(y)84(,)-338(\\273)-1(e)-339(p)1(ac)27(hn)1(ia\\252o)]TJ 0 -13.55 Td[(ws)-1(zystk)28(o)-421(i)-420(kwitn\\246\\252o)-421(i)-420(\\273)-1(e)-421(j)1(e)-1(j)-420(b)28(y\\252o)-420(tak)-421(d)1(obrze)-1(,)-420(tak)-420(c)-1(ic)28(ho)-420(i)-421(tak)-420(b\\252ogo)-421(n)1(a)-421(d)1(usz)-1(y)84(,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-333(p)-28(o)-333(tej)-333(\\261)-1(wi\\246tej)-333(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-333(ab)-27(o)-334(i)-333(j)1(e)-1(sz)-1(cze)-334(lepiej.)]TJ 27.879 -13.549 Td[({)-348(\\233e\\261)-349(to)-347(w)-1(sz)-1(y)1(s)-1(tk)28(o)-347(s)-1(p)1(ra)28(w)-1(i)1(\\252)-1(,)-347(m\\363)-56(j)-347(Je)-1(zu!)-347({)-348(j\\246kn\\246\\252a)-348(p)-27(o)-28(dn)1(os)-1(z\\241c)-348(\\252z)-1(a)28(w)27(e)-348(o)-28(cz)-1(y)-347(ku)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)1(u,)-399(w)-400(na)-55(jsz)-1(cz)-1(ersz)-1(ej,)-399(zgo\\252a)-400(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(j)-399(p)-27(o)-28(dzi\\246c)-1(e)-400(za)-400(t)28(yl)1(e)-400(dobr)1(a,)-400(j)1(akie)]TJ 0 -13.549 Td[(j\\241)-333(sp)-28(otk)56(a\\252o.)]TJ 27.879 -13.549 Td[({)-227(I)-227(\\273)-1(e)-228(si\\246)-228(t)1(o)-228(j)1(u\\273)-227(prze)-1(mieni)1(\\252)-1(o!)-227({)-227(wz)-1(d)1(yc)27(h)1(a\\252a)-227(z)-1(d)1(umiona,)-227(sz)-1(cz)-1(\\246sna,)-227(pr)1(a)28(w)-1(ie)-227(wnie-)]TJ -27.879 -13.55 Td[(b)-27(o)27(wzi\\246ta,)-268(\\273e)-269(j)1(u\\273)-268(c)-1(a\\252y)-267(c)-1(zas)-1(,)-267(dop)-27(\\363ki)-268(spal)1(i,)-268(c)28(ho)-28(d)1(z)-1(i\\252a)-268(l)1(e)-1(d)1(w)-1(i)1(e)-269(p)1(rzytomna)-268(ze)-268(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(a.)]TJ 0 -13.549 Td[(Cz)-1(u)29(w)27(a\\252a)-415(n)1(ad)-414(nimi)-414(kiej)-414(k)28(ok)28(os)-1(z)-415(n)1(ad)-415(p)1(iskl\\246tam)-1(i)1(.)-415(W)1(ynies)-1(\\252a)-414(dziec)-1(i)-414(dalek)28(o)-415(w)-414(s)-1(ad)1(,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-374(c)-1(zase)-1(m)-375(n)1(ie)-375(zakrzycz)-1(a\\252y)84(.)-374(Prze)-1(p)-27(\\246dzi\\252a)-375(z)-374(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(a)-374(ws)-1(ze)-1(l)1(k)55(\\241)-374(gadzin)1(\\246)-375(ni)1(e)-375(ba-)]TJ 0 -13.549 Td[(cz)-1(\\241c)-245(na)28(w)28(e)-1(t,)-244(\\273e)-245(\\261)-1(win)1(ie)-245(p)28(ysk)55(a)-55(j\\241)-244(w)27(cz)-1(es)-1(n)1(e)-245(z)-1(i)1(e)-1(mniak)1(i,)-245(a)-244(ku)1(ry)-245(r)1(oz)-1(gr)1(z)-1(ebu)1(j\\241)-245(wsc)27(h)1(o)-28(dz\\241c)-1(e)]TJ 0 -13.549 Td[(og\\363rk)1(i.)-333(Ju\\273)-334(o)-333(ca\\252ym)-334(\\261w)-1(i)1(e)-1(cie)-334(p)1(rz)-1(ep)-27(om)-1(n)1(ia\\252a,)-333(c)-1(i)1(\\246)-1(giem)-334(zaz)-1(iera)-55(j\\241c)-334(d)1(o)-333(\\261)-1(p)1(i\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.55 Td[({)-263(A)-264(d)1(z)-1(i)1(e)-1(\\253)-263(tak)-263(si\\246)-264(pr)1(z)-1(y)1(kro)-263(d\\252u\\273y\\252,)-263(c)-1(o)-263(j)1(u\\273)-264(n)1(ie)-264(mog\\252)-1(a)-263(sobie)-264(p)-27(oredzi\\242.)-263(Prze)-1(sz\\252)-1(o)]TJ -27.879 -13.549 Td[(b)-27(o)27(wiem)-334(\\261)-1(ni)1(adan)1(ie)-1(,)-334(p)1(rze)-1(sz)-1(ed\\252)-334(ob)1(iad,)-334(a)-334(on)1(i)-334(w)27(ci\\241\\273)-335(spal)1(i.)-334(P)28(orozp)-27(\\246)-1(d)1(z)-1(a\\252a)-334(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(do)-413(rob)-27(ot)28(y)83(,)-413(an)1(i)-413(dba)-55(j\\241c,)-413(c)-1(o)-413(s)-1(i)1(\\246)-414(tam)-414(b)-27(e)-1(z)-413(niej)-413(wyrab)1(ia,)-413(s)-1(tr)1(\\363\\273)-1(u)1(j\\241c)-414(j)1(e)-1(n)1(o,)-414(a)-413(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(dr)1(e)-1(p)-27(c\\241c)-334(o)-28(d)-333(sto)-28(do\\252y)-333(d)1(o)-334(c)28(ha\\252up)29(y)83(.)]TJ 27.879 -13.549 Td[(St)1(o)-334(r)1(az)-1(y)-333(wyjmo)28(w)27(a\\252a)-333(go\\261)-1(cin)1(ie)-1(c)-333(przymierza\\242)-1(,)-333(ogl\\241d)1(a\\242)-334(i)-333(w)27(o\\252a\\242.)]TJ 0 -13.55 Td[({)-333(A)-334(k)56(a)-55(j)-333(to)-334(d)1(ru)1(gi)-333(taki)-333(dob)1(ry)-333(i)-333(pami\\246tliwy)83(,)-333(k)56(a)-55(j?)]TJ 0 -13.549 Td[(A\\273)-405(w)-405(k)28(o\\253cu)-405(p)-27(olec)-1(ia\\252a)-405(n)1(a)-405(wie\\261)-406(d)1(o)-405(k)28(obi)1(e)-1(t,)-404(a)-405(k)28(ogo)-405(jeno)-404(dostrz)-1(eg\\252a,)-405(to)-404(m)27(u)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(z)-334(d)1(ala)-333(krzycz)-1(a\\252a:)]TJ 27.879 -13.549 Td[({)-333(Wiec)-1(ie,)-333(a)-333(to)-334(m\\363)-56(j)-332(p)-28(o)28(wr\\363)-28(ci\\252.)-333(\\221p)1(i)-333(s)-1(e)-334(tera)-333(w)-334(sto)-28(d)1(ole.)]TJ 0 -13.549 Td[(I)-363(\\261m)-1(ia\\252y)-362(s)-1(i\\246)-363(jej)-363(o)-27(c)-1(zy)-363(i)-363(t)28(w)28(arz)-363(i)-363(tak)-363(wsz)-1(ystk)56(a)-363(tc)27(h)1(n\\246\\252a)-363(roz)-1(r)1(ado)28(w)28(aniem)-364(i)-362(w)27(e-)]TJ -27.879 -13.55 Td[(se)-1(lem,)-334(j)1(a\\273)-1(e)-333(k)28(obiet)28(y)-333(s)-1(i\\246)-333(dziw)27(o)28(w)28(a\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(Urze)-1(k\\252)-333(j\\241)-333(ten)-333(wis)-1(i)1(e)-1(lec)-334(cz)-1(y)-333(co?)-334(Do)-333(c)-1(n)1(a)-334(zg\\252up)1(ia\\252a.)]TJ 0 -13.549 Td[({)-333(Zarno)-333(si\\246)-334(ona)-333(p)-27(o)-28(cz)-1(n)1(ie)-334(wynosi\\242)-334(a)-333(nos)-333(z)-1(ad)1(z)-1(iera\\242,)-333(obacz)-1(ycie!)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(jeno)-333(An)28(tek)-333(wr\\363)-28(ci)-334(d)1(o)-333(da)28(wnego,)-334(t)1(o)-334(j)1(e)-1(j)-333(r)1(ura)-333(zm)-1(i\\246kn)1(ie)-334({)-333(p)-28(or)1(e)-1(d)1(z)-1(a\\252y)84(.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-356(c)-1(o)-356(nie)-357(s\\252ys)-1(za\\252a)-357(t)28(yc)28(h)-356(p)-28(ogad)1(e)-1(k,)-356(ale)-357(p)1(rzylec)-1(ia)28(ws)-1(zy)-356(do)-356(c)27(ha\\252u)1(p)28(y)-357(wzi\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-284(n)1(a)-284(ostro)-283(do)-283(sp)-28(or)1(z)-1(\\241d)1(z)-1(an)1(ia)-283(s)-1(u)1(te)-1(go)-283(ob)1(iadu)1(,)-283(le)-1(cz)-284(d)1(os)-1(\\252ysz)-1(a)28(wsz)-1(y)-283(g\\246s)-1(i)-283(kr)1(z)-1(ycz\\241c)-1(e)-284(n)1(a)]TJ 0 -13.549 Td[(sta)27(wie)-324(w)-1(y)1(pad\\252a)-324(je)-325(p)1(rzyc)-1(i)1(s)-1(za\\242)-325(k)56(am)-1(i)1(e)-1(n)1(iam)-1(i)1(,)-325(\\273e)-325(ledwie)-325(z)-325(t)1(e)-1(go)-324(k\\252\\363tnia)-324(ni)1(e)-325(wys)-1(z\\252a)-325(z)]TJ 0 -13.549 Td[(m\\252ynar)1(z)-1(o)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-403(c)-1(o)-403(in)1(o)-404(b)29(y\\252a)-404(p)-27(o)-28(d)1(wie)-1(cz)-1(or)1(e)-1(k)-403(p)-27(os\\252)-1(a\\252a)-403(lu)1(dziom)-404(n)1(a)-403(p)-28(ole,)-403(gdy)-403(c)28(h\\252op)28(y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(z\\252y)-410(z)-1(e)-410(s)-1(to)-27(do\\252y)83(.)-409(Narz)-1(\\241d)1(z)-1(i)1(\\252)-1(a)-410(i)1(m)-411(ob)1(iad)-410(p)-27(o)-28(d)-410(d)1(om)-1(em)-410(w)-411(cieniu)-409(i)-410(na)-410(c)27(h)1(\\252o)-28(dzie,)]TJ 0 -13.549 Td[(p)-27(o)-28(da)-55(j\\241c)-445(n)1(a)27(w)28(e)-1(t)-444(gorza\\252k)28(\\246)-445(i)-445(p)1(iw)28(o,)-445(za\\261)-445(na)-444(do)-56(j)1(adk)28(\\246)-445(p)-27(os)-1(t)1(a)27(wi\\252a)-444(z)-445(p)-28(\\363\\252)-445(sitk)56(a)-444(dobr)1(z)-1(e)]TJ 0 -13.55 Td[(\\271ra\\252yc)27(h)-333(wisien,)-333(kt\\363r)1(e)-334(b)28(y\\252a)-333(pr)1(z)-1(yn)1(ies)-1(\\252a)-333(o)-28(d)-333(ksi\\246\\273)-1(ej)-333(gos)-1(p)-27(o)-28(d)1(yni)1(.)]TJ 27.879 -13.549 Td[({)-333(Obi)1(ad)-333(s)-1(u)1(t)28(y)-334(j)1(akb)28(y)-333(n)1(a)-334(w)28(e)-1(se)-1(l)1(u)-333({)-334(\\273arto)28(w)28(a\\252)-334(Ro)-28(c)28(ho.)]TJ 0 -13.549 Td[({)-388(G)1(os)-1(p)-27(o)-28(dar)1(z)-388(w)-1(r)1(\\363)-28(ci\\252,)-388(ma\\252e)-388(to)-388(j)1(e)-1(sz)-1(cz)-1(e)-388(w)28(e)-1(se)-1(l)1(e)-1(?)-388({)-387(o)-28(dp)1(ar\\252a)-388(zwija)-55(j\\241c)-388(si\\246)-388(k)28(ole)]TJ -27.879 -13.549 Td[(ni)1(c)27(h)-333(i)-333(ma\\252o)-334(wiele)-334(sam)-1(a)-333(p)-27(o)-56(j)1(e)-1(d)1(a)-56(j\\241c.)]TJ 27.879 -13.549 Td[(P)28(o)-340(s)-1(k)28(o\\253)1(c)-1(ze)-1(n)1(iu)-340(Ro)-28(c)27(h)1(o)-341(zaraz)-341(p)-27(os)-1(ze)-1(d)1(\\252)-341(n)1(a)-341(wie)-1(\\261)-341(ob)1(iec)-1(u)1(j\\241c)-341(si\\246)-341(na)-340(w)-1(i)1(e)-1(cz)-1(\\363r)1(,)-341(za\\261)]TJ -27.879 -13.55 Td[(ona)-333(sp)28(yta\\252a)-333(nie\\261)-1(miele)-334(m\\246\\273)-1(a:)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(c)-1(esz)-334(to)-333(ob)-28(ejr)1(z)-1(e\\242)-334(gos)-1(p)-27(o)-28(d)1(ark)28(\\246?)]TJ\nET\nendstream\nendobj\n2038 0 obj <<\n/Type /Page\n/Contents 2039 0 R\n/Resources 2037 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2037 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2042 0 obj <<\n/Length 8681      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(639)]TJ -330.353 -35.866 Td[({)-316(A)-317(d)1(obrze!)-317(\\221)1(wi\\246)-1(to)-316(si\\246)-317(ju)1(\\273)-317(sk)28(o\\253cz)-1(y\\252o,)-316(tr)1(z)-1(a)-316(s)-1(i)1(\\246)-317(b)-28(\\246dzie)-317(b)1(ra\\242)-317(d)1(o)-317(r)1(ob)-28(ot)28(y!)-316(M)1(\\363)-56(j)]TJ -27.879 -13.549 Td[(Bo\\273)-1(e,)-333(anim)-333(s)-1(i\\246)-333(s)-1(p)-27(o)-28(dzia\\252,)-333(co)-334(mi)-333(tak)-333(ryc)28(h\\252o)-333(przyj)1(dzie)-334(o)-56(j)1(c)-1(o)28(wizna!)]TJ 27.879 -13.549 Td[(W)84(e)-1(stc)27(h)1(n\\241\\252)-257(i)-257(p)-27(os)-1(ze)-1(d)1(\\252)-257(z)-1(a)-257(n)1(i\\241;)-257(p)-27(o)28(w)-1(i)1(o)-28(d\\252a)-257(go)-257(n)1(a)-56(j)1(pierw)28(e)-1(j)-256(do)-257(sta)-56(j)1(ni,)-256(k)55(a)-55(j)-257(p)1(arsk)55(a\\252y)]TJ -27.879 -13.549 Td[(trzy)-356(k)28(oni)1(e)-1(,)-356(a)-356(w)-357(zagro)-28(d)1(z)-1(ie)-356(kr\\246c)-1(i\\252)-356(si\\246)-357(\\271re)-1(b)1(ak;)-356(p)-27(ote)-1(m)-356(do)-356(pu)1(s)-1(tej)-356(ob)-27(ory)83(,)-356(za\\261)-357(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(p)-27(ote)-1(m)-486(do)-486(sto)-28(d)1(o\\252y)-486(do)-486(tegoro)-28(cz)-1(n)1(e)-1(go)-486(sian)1(a;)-486(z)-1(agl)1(\\241da\\252)-486(na)28(w)28(e)-1(t)-486(d)1(o)-486(c)27(hl)1(e)-1(w)28(\\363)28(w)-487(i)-485(p)-28(o)-28(d)]TJ 0 -13.55 Td[(sz)-1(op)-27(\\246)-1(,)-333(gd)1(z)-1(ie)-333(s)-1(ta\\252y)-333(r\\363\\273ne)-333(narz\\246)-1(d)1(z)-1(i)1(a)-334(i)-333(p)-27(orz\\241dki)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(r)1(yc)-1(zk)28(\\246)-334(tr)1(z)-1(a)-333(b)-28(\\246dzie)-334(p)1(rze)-1(to)-27(c)-1(zy\\242)-334(n)1(a)-334(k)1(le)-1(p)1(isk)28(o)-1(,)-333(b)-27(o)-333(s)-1(i\\246)-333(do)-333(c)-1(n)1(a)-334(r)1(oz)-1(es)-1(c)28(hn)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(r)1(az)-334(pr)1(z)-1(yk)56(azyw)28(a\\252)-1(am)-333(Pietrk)28(o)28(wi?)-333(C)-1(\\363\\273,)-333(kiej)-333(me)-334(nie)-333(s)-1(\\252u)1(c)27(ha\\252.)]TJ 0 -13.549 Td[(Zac)-1(z\\246\\252)-1(a)-370(zw)27(o\\252yw)28(a\\242)-371(p)1(rosi\\246)-1(ta)-370(i)-370(d)1(r\\363b,)-370(sielnie)-370(s)-1(i)1(\\246)-371(pr)1(z)-1(ec)27(h)28(w)28(ala)-56(j)1(\\241c)-371(d)1(u\\273ym)-371(p)1(rzy-)]TJ -27.879 -13.549 Td[(c)27(h)1(o)28(w)-1(k)1(ie)-1(m,)-334(a)-334(kiej)-334(i)-334(to)-334(ob)-28(ejr)1(z)-1(a\\252,)-334(rozp)-27(o)27(wieda\\252a)-334(sz)-1(erok)28(o)-334(o)-335(p)-27(oln)29(yc)27(h)-334(r)1(ob)-28(otac)28(h,)-334(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(co)-259(p)-27(os)-1(ian)1(e)-259(i)-259(wiela)-259(k)56(a\\273dego)-259(z)-259(osobna,)-258(pi)1(lnie)-259(p)1(rzy)-259(t)28(ym)-259(n)1(agl\\241d)1(a)-56(j\\241c)-259(m)28(u)-258(w)-259(o)-28(c)-1(zy)-258(i)-259(wy-)]TJ 0 -13.55 Td[(cz)-1(ekuj)1(\\241c)-1(o,)-353(ale)-354(on)-353(sobie)-354(wsz)-1(y)1(\\242)-1(k)28(o)-353(p)-28(ou)1(k\\252ada\\252)-353(w)-354(g\\252o)27(wie)-354(p)-27(o)-353(p)-28(or)1(z)-1(\\241d)1(ku,)-353(pr)1(z)-1(ep)28(ytu)1(j\\241c)]TJ 0 -13.549 Td[(jeno)-333(o)-333(to)-333(i)-334(o)28(w)28(o,)-333(a)-334(d)1(opiero)-333(w)-334(k)28(o\\253)1(c)-1(u)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-333(Ja\\273)-1(e)-333(u)28(wie)-1(r)1(z)-1(y\\242)-333(trud)1(no,)-333(\\273e)-1(\\261)-333(to)-334(wsz)-1(ystki)1(e)-1(m)28(u)-333(s)-1(ama)-334(u)1(redzi\\252a!)]TJ 0 -13.549 Td[({)-418(La)-418(ciebie)-418(to)-418(b)28(y)1(m)-419(i)-417(w)-1(i)1(\\246)-1(ce)-1(j)-417(z)-1(mog\\252a)-418({)-418(sz)-1(epn)1(\\246)-1(\\252a)-418(gor)1(\\241c)-1(o,)-417(s)-1(tr)1(as)-1(znie)-418(rad)1(a)-418(z)]TJ -27.879 -13.549 Td[(p)-27(o)-28(c)27(h)28(w)28(a\\252y)83(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(h)29(w)27(at)-333(z)-334(ciebie,)-333(Han)28(u\\261,)-333(c)27(h)28(w)28(at!)-333(anim)-333(s)-1(i)1(\\246)-334(s)-1(p)-27(o)-28(d)1(z)-1(ia\\252,)-333(co\\261)-334(tak)56(a.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(o)-333(p)-27(otrza,)-333(to)-334(j)1(u\\261c)-1(i)1(,)-334(co)-333(c)-1(z\\252o)27(wiek)-333(ku)1(las)-1(\\363)28(w)-334(n)1(ie)-334(p)-27(o\\273a\\252)-1(o)28(w)28(a\\252.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252)-384(na)28(w)27(et)-384(sad,)-384(p)-27(e)-1(\\252en)-384(wi\\261ni)-383(ju\\273)-384(pr)1(z)-1(ez)-385(p)-27(\\363\\252)-384(c)-1(zerw)27(on)29(yc)27(h)1(,)-384(i)-384(grz\\246dy)84(,)-384(k)56(a)-56(j)]TJ -27.879 -13.549 Td[(ros\\252y)-333(c)-1(ebu)1(le)-1(,)-333(p)1(ie)-1(t)1(rusz)-1(k)56(a)-333(i)-333(k)56(apu\\261ciane)-334(wysadk)1(i.)]TJ 27.879 -13.549 Td[(W)84(rac)-1(al)1(i)-351(ju)1(\\273)-352(z)-351(p)-28(o)28(wrotem,)-351(gdy)-350(prze)-1(c)28(ho)-28(d)1(z)-1(\\241c)-351(k)28(ole)-351(o)-56(j)1(c)-1(o)28(w)27(ej)-351(stron)29(y)-351(z)-1(a)-55(jr)1(z)-1(a\\252)-351(do)]TJ -27.879 -13.55 Td[(\\261ro)-28(d)1(k)55(a)-333(pr)1(z)-1(ez)-334(wyw)28(arte)-334(okn)1(o.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(to)-333(Jagna?)-334({)-333(lata\\252)-333(zdumion)29(ym)-1(i)-333(o)-27(c)-1(zam)-1(i)-333(p)-27(o)-334(p)1(ustej)-333(iz)-1(b)1(ie.)]TJ 0 -13.549 Td[({)-253(A)-254(k)56(a)-55(j!)-253(u)-253(matki!)-253(Wygn)1(a\\252am)-254(j)1(\\241!)-254({)-253(rzek\\252a)-254(t)28(w)28(ardo,)-253(p)-27(o)-28(d)1(nosz)-1(\\241c)-254(n)1(a)-254(n)1(iego)-254(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[(\\221ci\\241)-28(gn)1(\\241\\252)-486(b)1(rwie,)-485(przedelib)-27(e)-1(r)1(o)27(w)28(a\\252)-486(czas)-486(jaki)1(\\261)-486(i)-485(z)-1(ap)1(ala)-55(j\\241c)-486(p)1(apierosa)-486(r)1(z)-1(u)1(c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-333(j)1(akb)28(y)-333(o)-28(d)-333(n)1(ie)-1(c)28(hce)-1(n)1(ia:)]TJ 27.879 -13.55 Td[({)-333(Dom)-1(i)1(nik)28(o)28(w)28(a)-334(z\\252y)-333(pies)-1(,)-333(n)1(ie)-334(p)1(rz)-1(epu)1(\\261)-1(ci)-333(nam)-333(b)-28(ez)-334(pr)1(e)-1(ce)-1(su.)]TJ 0 -13.549 Td[({)-333(Ju\\273)-334(p)-27(on)1(o)-334(w)28(c)-1(zora)-55(j)-333(lata\\252y)-333(z)-1(e)-333(s)-1(k)56(arg\\241)-333(do)-333(s\\241du.)]TJ 0 -13.549 Td[({)-314(Od)-314(s)-1(k)56(argi)-314(d)1(o)-315(wyrok)1(u)-314(droga)-314(sz)-1(erok)56(a.)-315(Al)1(e)-315(trza)-315(to)-314(b)-27(\\246)-1(d)1(z)-1(ie)-315(wzi\\241\\242)-315(d)1(obrze)-315(na)]TJ -27.879 -13.549 Td[(rozum,)-333(b)28(yc)28(h)-333(nam)-334(n)1(ie)-334(wystroi)1(\\252)-1(a)-333(j)1(akiego)-334(\\014)1(gla.)]TJ 27.879 -13.549 Td[(Op)-27(o)28(w)-1(i)1(ada\\252a,)-349(z)-349(cz)-1(ego)-349(to)-349(wsz)-1(y)1(s)-1(tk)28(o)-349(p)-27(osz)-1(\\252o)-349(i)-348(jak)-348(s)-1(i\\246)-349(sta\\252o,)-349(wiele)-349(ju)1(\\261)-1(ci)-349(p)-27(omi-)]TJ -27.879 -13.55 Td[(ja)-55(j\\241c,)-369(n)1(ie)-369(p)1(rz)-1(ery)1(w)27(a\\252)-369(n)1(i)-369(p)29(yta\\252,)-369(b)1(rwie)-369(j)1(e)-1(n)1(o)-369(marsz)-1(cz)-1(\\241c)-369(i)-368(\\252ys)-1(k)56(a)-55(j\\241c)-369(o)-28(cz)-1(ami,)-368(dop)1(ie)-1(r)1(o)]TJ 0 -13.549 Td[(kiej)-333(m)28(u)-333(z)-1(ap)1(is)-334(p)-27(o)-28(da\\252a,)-333(o\\261m)-1(i)1(a\\252)-334(si\\246)-334(k)56(\\241\\261)-1(l)1(iwie)-1(:)]TJ 27.879 -13.549 Td[({)-333(T)27(yl)1(e)-334(w)27(ar)1(t,)-333(c)-1(o)-333(mo\\273)-1(es)-1(z)-334(z)-333(nim)-333(bie\\273)-1(y)1(\\242)-334(z)-1(a)-333(\\261c)-1(ian)1(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(p)1(rze)-1(ciek)-334(t)1(o)-334(ten)-333(sam)-1(,)-333(co)-334(go)-333(jej)-333(d)1(ali)-333(o)-28(c)-1(i)1(e)-1(c.)]TJ 0 -13.549 Td[({)-433(I)-432(s)-1(toi)-432(w\\252a\\261)-1(n)1(ie)-433(z)-1(\\252aman)28(y)-432(pat)28(yk!)-432(Jakb)29(y)-433(si\\246)-433(o)-28(d)1(pisa\\252a)-433(u)-432(rejen)28(ta,)-432(to)-433(b)28(y)-432(c)-1(o)]TJ -27.879 -13.549 Td[(znacz)-1(y\\252o.)-333(La)-333(\\261)-1(miec)27(h)28(u)-333(go)-333(rzuci\\252a!)]TJ 27.879 -13.55 Td[(Cisn\\241\\252)-333(ramionami,)-333(z)-1(ab)1(ra\\252)-333(Pietru)1(s)-1(i)1(a)-334(n)1(a)-334(r)1(\\246)-1(ce)-334(i)-333(ru)1(s)-1(zy\\252)-333(do)-333(prze\\252)-1(azu.)]TJ 0 -13.549 Td[({)-366(Ob)1(ac)-1(z\\246)-367(p)-27(ola)-366(i)-365(w)-1(r)1(\\363)-28(c)-1(\\246!)-366({)-366(r)1(z)-1(u)1(c)-1(i\\252)-366(za)-366(sie)-1(b)1(ie)-1(,)-365(i\\273)-366(os)-1(ta\\252a,)-366(c)28(ho)-28(cia\\273)-366(dziwnie)-366(pr)1(a-)]TJ -27.879 -13.549 Td[(gn\\246\\252a)-259(z)-260(n)1(im)-260(p)-27(ole\\271)-1(\\242,)-259(on)-259(za\\261)-260(mij)1(a)-56(j)1(\\241c)-260(br)1(\\363g,)-259(ju)1(\\273)-260(o)-28(d)1(no)28(wion)28(y)-259(i)-259(p)-27(e\\252e)-1(n)-259(sian)1(a,)-259(pr)1(z)-1(ygl)1(\\241da\\252)]TJ 0 -13.549 Td[(m)27(u)-332(s)-1(i\\246)-333(s)-1(p)-27(o)-28(d)-333(ok)56(a.)]TJ 27.879 -13.549 Td[({)-308(Mate)-1(u)1(s)-1(z)-308(go)-309(wyp)-27(orz\\241dzi\\252.)-309(S)1(ame)-1(j)-308(s\\252)-1(om)28(y)-308(na)-308(dac)27(h)-308(wyk)1(r\\246)-1(cili)-308(ze)-309(trzy)-309(k)28(op)29(y)-309({)]TJ -27.879 -13.55 Td[(w)28(o\\252)-1(a\\252a)-333(za)-334(n)1(im)-334(sto)-56(j)1(\\241c)-334(na)-333(pr)1(z)-1(e\\252az)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-425(A)-426(d)1(obr)1(z)-1(e,)-426(d)1(obr)1(z)-1(e)-426({)-425(mruk)1(n\\241\\252,)-425(nie)-425(b)28(y\\252)-425(ta)-426(ciek)55(a)28(w)-426(b)-27(ele)-426(cz)-1(ego.)-425(Prze)-1(sze)-1(d)1(\\252)]TJ\nET\nendstream\nendobj\n2041 0 obj <<\n/Type /Page\n/Contents 2042 0 R\n/Resources 2040 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2040 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2045 0 obj <<\n/Length 9234      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(640)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(zie)-1(mni)1(ak)55(ami)-333(i)-333(pu)1(\\261)-1(ci\\252)-333(s)-1(i\\246)-333(m)-1(iedz\\241.)]TJ 27.879 -13.549 Td[(Lato\\261)-236(n)1(a)-235(p)-28(olac)28(h)-235(z)-236(tej)-235(stron)28(y)-235(wsi)-235(b)28(y\\252y)-235(pr)1(a)27(wie)-235(s)-1(ame)-236(ozimin)28(y)-235(i)-235(b)-27(e)-1(z)-235(to)-236(n)1(iew)-1(i)1(e)-1(la)]TJ -27.879 -13.549 Td[(lu)1(dzi)-387(sp)-28(ot)28(y)1(k)55(a\\252)-386(p)-28(o)-386(dro)-27(dze)-1(,)-386(a)-387(z)-387(kim)-387(si\\246)-387(zs)-1(ze)-1(d)1(\\252,)-387(tego)-387(wita\\252)-386(kr\\363tk)28(o)-386(i)-387(p)1(r\\246dk)28(o)-387(p)1(rze)-1(-)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(dzi\\252.)-314(Z)-1(w)28(aln)1(ia\\252)-315(jedn)1(ak)-315(coraz)-315(bar)1(dzie)-1(j)1(,)-315(gd)1(y\\273)-315(Pietru)1(\\261)-316(m)28(u)-315(ci\\241\\273y\\252)-315(i)-315(j)1(ak)28(o\\261)-315(dziwnie)]TJ 0 -13.549 Td[(rozbi)1(e)-1(ra\\252o)-411(go)-411(n)1(agrzane,)-411(c)-1(i)1(c)27(he)-411(p)-27(o)27(wietrze)-1(.)-410(Przysta)28(w)27(a\\252,)-411(to)-411(siad)1(a\\252)-1(,)-410(nie)-411(pr)1(z)-1(es)-1(ta)-55(j\\241c)]TJ 0 -13.55 Td[(ogl\\241d)1(a\\242)-334(pr)1(a)27(wie)-333(k)55(a\\273dego)-333(z)-1(agon)1(a)-334(z)-334(osobn)1(a.)]TJ 27.879 -13.549 Td[({)-240(Ho,)-240(ho!)-240(\\273\\363\\252)-1(to)-27(c)27(ha)-240(d)1(usi)-240(le)-1(n)1(!)-240({)-241(wyk)1(rz)-1(y)1(kn\\241\\252)-240(s)-1(ta)-55(j\\241c)-240(przy)-240(z)-1(agon)1(ac)27(h)-240(n)1(ie)-1(b)1(ies)-1(ki)1(c)27(h)]TJ -27.879 -13.549 Td[(o)-28(d)-247(kwiat)1(\\363)27(w,)-247(ale)-248(g\\246s)-1(to)-247(p)-27(oprzerabi)1(an)28(yc)27(h)-247(\\273\\363\\252c)-1(i)1(z)-1(n)1(am)-1(i)-247({)-247(kup)1(i\\252a)-248(siem)-1(i)1(\\246)-248(z)-1(ap)1(as)-1(ku)1(dzone)]TJ 0 -13.549 Td[(i)-333(ni)1(e)-334(pr)1(z)-1(ew)-1(i)1(a\\252a!)]TJ 27.879 -13.549 Td[(Wstrzyma\\252)-253(s)-1(i\\246)-253(p)-27(ote)-1(m)-253(pr)1(z)-1(y)-252(j\\246c)-1(zm)-1(i)1(e)-1(n)1(iu,)-253(k)1(t\\363ry)-253(b)29(y\\252)-253(m)-1(i)1(z)-1(ern)28(y)-252(i)-253(ju)1(\\273)-254(p)1(rzypalon)29(y)83(,)]TJ -27.879 -13.549 Td[(a)-333(le)-1(d)1(w)27(o)-333(wid)1(n)28(y)-333(s)-1(p)-27(o)-28(d)-333(ost\\363)28(w)-1(,)-333(r)1(umiank)28(\\363)28(w)-333(i)-334(szc)-1(za)27(wi\\363)28(w.)]TJ 27.879 -13.55 Td[({)-314(Na)-314(m)-1(okr)1(o)-315(siali)1(!)-314(Sp)28(y)1(s)-1(k)56(a\\252)-314(rol\\246)-315(k)1(ie)-1(j)-313(\\261)-1(win)1(ia!)-314(A)-314(\\273)-1(eb)28(y)-314(c)-1(i)1(\\246)-1(,)-314(j)1(uc)27(h)1(o;)-314(p)-28(ok)1(r\\246)-1(ci\\252o)-314(z)-1(a)]TJ -27.879 -13.549 Td[(tak)56(\\241)-333(upr)1(a)28(w)27(\\246!)-333(A)-334(j)1(ak)-334(t)1(o)-334(\\261c)-1(i)1(e)-1(rw)28(o)-333(z)-1(b)1(rono)28(w)28(a\\252!)-333(s)-1(am)-334(p)-27(erz)-334(i)-333(k)28(ot)28(yry)1(!)]TJ 27.879 -13.549 Td[(Sp)1(lu)1(n\\241\\252)-314(r)1(oz)-1(e\\271)-1(l)1(on)28(y)-314(i)-313(ws)-1(zed\\252)-314(n)1(a)-314(ogr)1(om)-1(n)28(y)-313(\\252an)-313(\\273)-1(y)1(ta,)-314(co)-314(n)1(ib)28(y)-313(w)27(o)-27(dy)-313(s)-1(p)1(\\252a)27(wion)1(e)]TJ -27.879 -13.549 Td[(w)28(e)-381(s\\252o\\253cu)-380(k)28(oleba\\252y)-380(m)28(u)-380(si\\246)-380(do)-380(n)1(\\363g)-380(bij)1(\\241c)-381(c)28(hrz\\246s)-1(tli)1(w)-1(y)1(m)-1(i,)-379(c)-1(i)1(\\246)-1(\\273kimi)-380(k\\252osam)-1(i.)-379(Roz)-1(-)]TJ 0 -13.549 Td[(rad)1(o)28(w)27(a\\252)-380(si\\246)-381(g\\252\\246b)-28(ok)28(o,)-379(gdy\\273)-380(b)28(y\\252o)-380(p)1(i\\246knie)-380(wyro\\261ni)1(\\246)-1(te,)-380(s\\252)-1(om\\246)-380(m)-1(i)1(a\\252)-1(o)-380(gr)1(ub)1(\\241)-380(i)-380(k\\252osy)]TJ 0 -13.55 Td[(ni)1(b)28(y)-333(bat)28(y)84(.)]TJ 27.879 -13.549 Td[({)-336(Kiej)-336(b)-27(\\363r)-336(idzie!)-336(Ojco)28(w)27(ego)-337(t)1(o)-337(j)1(e)-1(sz)-1(cze)-337(s)-1(i)1(ania!)-336(W)84(e)-337(d)1(w)27(orze)-337(n)1(ie)-337(lepsze)-1(!)-336({)-336(wy-)]TJ -27.879 -13.549 Td[(kr)1(usz)-1(y\\252)-294(k\\252os)-1(,)-294(z)-1(i)1(arno)-294(b)28(y\\252o)-294(doro)-27(dne)-295(i)-294(p)-27(e)-1(\\252n)1(e)-1(,)-294(ale)-295(jesz)-1(cz)-1(e)-295(mi\\246tkie)-295({)-294(z)-1(a)-295(d)1(w)27(a)-294(t)28(ygo)-28(d)1(nie)]TJ 0 -13.549 Td[(cz)-1(as)-334(m)28(u)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(p)-28(o)-28(d)-333(k)28(os\\246!)-334(Byl)1(e)-334(jeno)-333(grad)1(y)-333(nie)-334(zbi)1(\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-487(nad)-486(p)1(s)-1(ze)-1(n)1(ic)-1(\\241)-486(na)-55(jd\\252u)1(\\273)-1(ej)-487(si\\246)-487(cie)-1(sz)-1(y)1(\\252)-487(i)-487(n)1(apasa\\252)-487(o)-28(cz)-1(y)84(,)-487(b)-27(o)-487(c)27(h)1(o)-28(c)-1(i)1(a\\273)-488(sz\\252)-1(a)]TJ -27.879 -13.55 Td[(ni)1(e)-1(r)1(\\363)27(wn)1(o,)-283(k\\252\\246bami)-283(a)-282(z)-1(atok)56(ami,)-283(l)1(e)-1(cz)-284(z)-283(cz)-1(ar)1(nia)28(wyc)27(h)1(,)-283(l)1(\\261)-1(n)1(i\\241c)-1(y)1(c)27(h)-282(pi\\363r)-282(ju)1(\\273)-283(s)-1(i\\246)-283(\\252usk)56(a\\252y)]TJ 0 -13.549 Td[(g\\246s)-1(te)-334(i)-333(wielki)1(e)-334(k\\252os)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-231(Sy)1(pn)1(ie)-232(n)1(iez)-1(gorze)-1(j)1(.)-231(T)83(r)1(z)-1(eba)-231(j)1(e)-1(sz)-1(cz)-1(e)-231(mie)-1(j)1(s)-1(cam)-1(i)-230(przysiec)-1(,)-231(za)-231(bu)1(jn)1(a.)-231(Na)-231(g\\363rce)-1(,)]TJ -27.879 -13.549 Td[(a)-333(nic)-333(j\\241)-333(nie)-333(przypal)1(i\\252o!)-333(C)-1(zyste)-334(z\\252oto)-334(i)1(dzie)-1(!)]TJ 27.879 -13.549 Td[(By\\252)-376(coraz)-376(dal)1(e)-1(j)1(,)-376(ws)-1(p)1(ina)-55(j\\241c)-376(si\\246)-376(z)-376(w)27(ol)1(na)-376(p)-27(o)-28(d)-375(\\252ago)-28(d)1(ne)-376(wz)-1(g\\363rze,)-376(n)1(a)-376(kt\\363r)1(ym)]TJ -27.879 -13.55 Td[(wyrasta\\252a)-256(cz)-1(ar)1(na)-256(\\261c)-1(i)1(ana)-256(b)-27(oru)1(.)-256(W)1(ie)-1(\\261)-256(osta\\252a)-256(za)-256(nim)-256(j)1(akb)28(y)-255(na)-255(s)-1(am)28(ym)-256(dn)1(ie)-1(,)-255(p\\252a)28(wi\\252a)]TJ 0 -13.549 Td[(si\\246)-248(w)-247(sadac)28(h,)-247(a)-247(p)1(rze)-1(z)-247(pr)1(z)-1(erwy)-247(mi\\246dzy)-247(c)27(h)1(a\\252up)1(a)-1(mi)-247(p)-27(ol\\261ni)1(e)-1(w)28(a\\252)-247(s)-1(ta)28(w)-247(lu)1(b)-247(j)1(akie\\261)-248(okn)1(o)]TJ 0 -13.549 Td[(zagra\\252o)-334(w)-333(s)-1(\\252o\\253)1(c)-1(u)1(.)]TJ 27.879 -13.549 Td[(Ka)-55(j\\261)-272(p)-27(o)-28(d)-270(s)-1(m\\246)-1(tar)1(z)-1(em)-272(ci\\246li)-271(k)28(oni)1(c)-1(zyn\\246)-271(i)-271(k)28(os)-1(y)-271(migota\\252y)-271(nad)-270(z)-1(iemi\\241)-271(nib)29(y)-271(te)-272(si-)]TJ -27.879 -13.549 Td[(ne)-267(b)1(\\252)-1(y)1(s)-1(k)56(a)28(wic)-1(e,)-267(gd)1(z)-1(ie)-267(zn\\363)28(w)-267(c)-1(zerwie)-1(n)1(ia\\252y)-267(k)28(ob)1(iec)-1(e)-267(pr)1(z)-1(y)28(o)-28(d)1(z)-1(i)1(e)-1(wy)-267(i)-266(s)-1(tad)1(a)-267(bia\\252y)1(c)27(h)-266(g\\246)-1(si)]TJ 0 -13.55 Td[(pas\\252y)-303(s)-1(i\\246)-303(na)-303(w)27(\\241skic)28(h)-303(ugorac)28(h,)-303(a)-303(z)-1(a)-303(ws)-1(i\\241,)-303(w)-304(zielon)28(yc)28(h)-303(p)-27(o)-1(l)1(ac)27(h)-303(zie)-1(mn)1(iak)28(\\363)28(w)-304(ru)1(c)27(hal)1(i)]TJ 0 -13.549 Td[(si\\246)-323(lu)1(dzie)-323(kiej)-322(mr\\363)28(wki,)-322(z)-1(a\\261)-323(j)1(e)-1(szc)-1(ze)-323(wy\\273)-1(ej,)-322(w)-322(niepr)1(z)-1(ejrzan)28(yc)28(h)-322(dalek)28(o\\261c)-1(iac)28(h)-322(m)-1(a)-55(ja-)]TJ 0 -13.549 Td[(cz)-1(y\\252y)-358(jak)1(ie)-1(\\261)-359(wsie)-1(,)-358(d)1(om)27(y)-358(s)-1(amotne,)-358(drzew)27(a)-358(p)-28(ogar)1(bion)1(e)-359(nad)-358(dr)1(ogam)-1(i)1(,)-359(wielgac)27(h)1(ne)]TJ 0 -13.549 Td[(p)-27(ola)-333(i)-334(wid)1(z)-1(i)1(a\\252y)-334(si\\246)-334(j)1(ak)28(ob)28(y)-333(p)-27(otopion)1(e)-334(w)-334(mo)-28(d)1(ra)28(w)27(ej)-333(i)-333(wrz\\241c)-1(ej)-333(w)27(o)-27(dzie)-1(.)]TJ 27.879 -13.549 Td[(G\\252\\246b)-28(ok)56(a)-329(c)-1(i)1(c)27(ho\\261\\242)-330(sz)-1(\\252a)-329(g\\363r\\241)-329(nad)-329(zie)-1(miami,)-329(rozpal)1(one)-330(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-330(j)1(a\\273)-1(e)-329(\\261)-1(lepi)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(migotem)-1(,)-416(ziej\\241c)-416(takim)-416(skw)27(ar)1(e)-1(m,)-416(\\273e)-417(skr)1(o\\261)-417(t)28(yc)28(h)-416(bi)1(a\\252a)27(wyc)28(h,)-416(r)1(oz)-1(tr)1(z)-1(\\246s)-1(i)1(on)28(yc)27(h)-415(p\\252o-)]TJ 0 -13.55 Td[(mi)-443(j)1(e)-1(n)1(o)-443(n)1(ie)-1(k)1(ie)-1(j)-442(p)1(rze)-1(lec)-1(i)1(a\\252)-443(b)-27(o)-28(c)-1(i)1(e)-1(k)-442(w)27(a\\273\\241c)-443(s)-1(i)1(\\246)-443(c)-1(i\\246\\273)-1(k)28(o)-442(na)-442(om)-1(d)1(la\\252yc)27(h)-442(skrzyd)1(\\252)-1(ac)28(h)-442(i)]TJ 0 -13.549 Td[(zaz)-1(ia)-55(jan)1(e)-334(wron)28(y)-333(pr)1(z)-1(efr)1(un)1(\\246)-1(\\252y)84(.)]TJ 27.879 -13.549 Td[(Sk)28(o)28(wron)1(ki)-378(\\261piew)28(a\\252)-1(y)-377(k)55(a)-55(j\\261)-378(niedo)-55(jr)1(z)-1(an)1(e)-1(,)-378(n)1(ieb)-28(o)-378(wisia\\252o)-378(wys)-1(ok)1(ie)-1(,)-377(rozpalon)1(e)-379(i)]TJ -27.879 -13.549 Td[(cz)-1(yste,)-373(\\273)-1(e)-373(t)28(ylk)28(o)-373(gd)1(z)-1(i)1(e)-1(n)1(ie)-1(gd)1(z)-1(ie)-373(w)28(aro)28(w)27(a\\252a)-373(n)1(a)-373(t)28(yc)27(h)-372(niebieskic)27(h)-372(p)-28(ol)1(ac)27(h)-372(jak)56(a\\261)-374(b)1(ia\\252a)]TJ 0 -13.549 Td[(c)27(h)1(m)27(u)1(rk)56(a,)-333(kieb)28(y)-333(ta)-334(o)28(w)28(c)-1(a)-333(zb\\252\\241k)56(ana.)]TJ 27.879 -13.55 Td[(Za\\261)-431(p)-27(o)-430(z)-1(i)1(e)-1(miac)27(h)-429(barasz)-1(k)28(o)28(w)28(a\\252)-431(suc)28(h)28(y)-430(i)-430(gor\\241cy)-430(wiater)-430(pr)1(z)-1(ew)27(ala)-55(j\\241c)-430(s)-1(i\\246)-430(jak)]TJ -27.879 -13.549 Td[(pi)1(jan)28(y)84(,)-263(c)-1(zas)-1(em)-264(p)-27(o)-28(d)1(ryw)28(a\\252)-264(si\\246)-264(z)-263(prze\\261)-1(wiste)-1(m,)-263(ja\\273e)-264(p)1(\\252)-1(oszy\\252y)-263(s)-1(i\\246)-263(ptaki)1(,)-263(alb)-28(o)-263(gd)1(z)-1(ies)-1(i)1(k)]TJ\nET\nendstream\nendobj\n2044 0 obj <<\n/Type /Page\n/Contents 2045 0 R\n/Resources 2043 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2043 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2048 0 obj <<\n/Length 9157      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(641)]TJ -358.232 -35.866 Td[(pr)1(z)-1(y)1(c)-1(za)-56(j)1(o)-1(n)29(y)-423(buc)28(ha\\252)-423(z)-424(nag\\252a)-423(w)27(e)-424(zb)-27(o\\273)-1(a)-423(i)-424(sk\\252\\246bia\\252)-423(je,)-423(m)-1(\\241ci\\252,)-423(w)-1(zbu)1(rza\\252)-424(d)1(o)-424(d)1(na)-423(i)]TJ 0 -13.549 Td[(pr)1(z)-1(epad)1(a\\252)-411(zno)28(wu)-410(ni)1(e)-411(wiada)-410(k)56(a)-56(j)1(,)-410(a)-410(roz)-1(k)28(ol)1(e)-1(b)1(ane)-411(zagon)28(y)-410(d\\252u)1(go)-410(jes)-1(zc)-1(ze)-411(g\\246dzi\\252y)-410(i)]TJ 0 -13.549 Td[(cic)27(h)28(u)1(\\261)-1(k)28(o,)-333(j)1(akb)28(y)-333(s)-1(i)1(\\246)-334(s)-1(k)56(ar)1(\\273)-1(\\241c)-334(n)1(a)-334(wisusa.)]TJ 27.879 -13.549 Td[(An)28(tek)-333(pr)1(z)-1(ystan\\241\\252)-333(p)-27(o)-28(d)-333(lase)-1(m)-333(na)-333(ugorze)-334(i)-333(zno)28(wu)-333(s)-1(i\\246)-333(oz)-1(gn)1(ie)-1(w)28(a\\252.)]TJ 0 -13.549 Td[({)-247(Jesz)-1(cz)-1(ek)-247(n)1(ie)-247(p)-28(o)-27(doran)29(y!)-247(K)1(onie)-247(sto)-56(j)1(\\241)-247(pr)1(z)-1(ez)-247(rob)-27(ot)28(y)83(,)-246(gn\\363)-55(j)-247(spal)1(a)-247(s)-1(i)1(\\246)-247(na)-247(k)1(upi)1(e)-1(,)]TJ -27.879 -13.55 Td[(a)-365(te)-1(n)-364(ani)-365(si\\246)-366(zatrosz)-1(cz)-1(y)1(!)-365(A)-366(\\273eb)28(y)-365(c)-1(i)1(\\246)-1(!)-365({)-365(z)-1(ak)1(l\\241\\252)-365(rusz)-1(a)-55(j\\241c)-365(p)-28(o)-27(d)-365(b)-28(or)1(e)-1(m)-365(ku)-365(kr)1(z)-1(y)1(\\273)-1(o)28(wi)]TJ 0 -13.549 Td[(na)-333(top)-27(olo)28(w)27(ej)-333(dr)1(o)-28(dze.)]TJ 27.879 -13.549 Td[(Zm\\246)-1(cz)-1(on)28(y)-365(s)-1(i\\246)-366(c)-1(zu\\252,)-366(w)-366(g\\252o)28(wie)-367(m)28(u)-366(sz)-1(u)1(m)-1(ia\\252o)-366(i)-366(k)1(urz)-366(z)-1(ap)1(iera\\252)-366(gard)1(z)-1(iel,)-366(p)1(rzy-)]TJ -27.879 -13.549 Td[(siad\\252)-483(p)-28(o)-28(d)-483(k)1(rz)-1(y)1(\\273)-1(em)-484(w)-484(cieniu)-483(b)1(rz\\363z)-1(ek,)-483(u\\252o\\273)-1(y)1(\\252)-484(na)-483(k)56(ap)-28(o)-27(c)-1(ie)-484(\\261pi)1(\\241c)-1(ego)-484(P)1(ie)-1(t)1(rusia)-483(i)]TJ 0 -13.549 Td[(ob)-27(c)-1(iera)-55(j\\241c)-334(r)1(z)-1(\\246s)-1(i)1(s)-1(t)28(y)-333(p)-27(ot)-334(zapatr)1(z)-1(y)1(\\252)-334(si\\246)-334(w)28(e)-334(\\261)-1(wiat)-333(i)-333(zam)-1(edyt)1(o)27(w)28(a\\252.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-252(sk\\252on)1(i\\252o)-252(si\\246)-252(n)1(ad)-251(b)-28(or)1(y)-252(i)-251(p)1(ie)-1(r)1(w)-1(sze)-252(l\\246)-1(k)1(liw)28(e)-252(c)-1(i)1(e)-1(n)1(ie)-252(wy\\252oni\\252y)-251(sp)-28(o)-27(d)-251(drze)-1(w,)]TJ -27.879 -13.55 Td[(cz)-1(o\\252ga)-56(j)1(\\241c)-492(s)-1(i\\246)-492(ku)-491(z)-1(b)-27(o\\273om)-1(.)-491(B)-1(\\363r)-491(c)-1(osik)-491(gw)27(arzy\\252)-492(z)-492(cic)27(h)1(a)-492(c)-1(zub)1(k)55(ami)-492(p)1(\\252on\\241cymi)-492(w)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(u)1(,)-342(a)-342(g\\246)-1(ste)-343(p)-27(o)-28(dsz)-1(y)1(c)-1(ia)-342(les)-1(zcz)-1(yn)-342(i)-342(osik)-342(tr)1(z)-1(\\246s)-1(\\252y)-342(si\\246)-343(j)1(akb)28(y)-342(w)-343(zimnicy)84(.)-342(Dz)-1(i\\246cio\\252y)]TJ 0 -13.549 Td[(ku)1(\\252y)-258(za)28(w)-1(zi\\246c)-1(i)1(e)-258(i)-257(k)55(a)-55(j\\261)-258(d)1(alek)28(o)-258(skrze)-1(cz)-1(a\\252y)-257(sroki.)-257(Czas)-1(em)-258(mi\\246)-1(d)1(z)-1(y)-257(oms)-1(za\\252ymi)-257(d\\246bami)]TJ 0 -13.549 Td[(zam)-1(igot)1(a\\252)-1(a)-333(\\273o\\252)-1(n)1(a,)-333(jakb)29(y)-333(kto)-333(c)-1(isn\\241\\252)-333(k\\252\\246)-1(b)1(kiem)-334(zwini\\246tej)-333(t\\246)-1(czy)83(.)]TJ 27.879 -13.549 Td[(Ch\\252\\363)-28(d)-365(za)27(wiew)28(a\\252)-366(z)-366(om)-1(r)1(o)-28(c)-1(zon)28(yc)28(h,)-365(c)-1(i)1(c)27(h)28(yc)28(h)-366(g\\252\\246bi)1(n,)-365(t)28(ylk)28(o)-366(k)56(a)-55(j\\261)-366(ni)1(e)-1(k)56(a)-56(j)-365(p)-27(o)-28(dar)1(-)]TJ -27.879 -13.55 Td[(t)28(yc)27(h)-332(s)-1(\\252onec)-1(zn)28(ymi)-333(pazur)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Zalat)28(yw)28(a\\252o)-334(gr)1(z)-1(yb)1(am)-1(i)1(,)-333(\\273)-1(ywic\\241)-333(i)-334(r)1(oz)-1(p)1(ra\\273on)28(ym)-334(b)1(a)-56(j)1(orem)-1(.)]TJ 0 -13.549 Td[(Naraz)-395(j)1(as)-1(tr)1(z)-1(\\241b)-394(wypr)1(ysn\\241\\252)-395(n)1(ad)-395(l)1(as)-1(,)-394(z)-1(ato)-27(c)-1(zy\\252)-395(kr)1(z)-1(y)1(\\273)-1(em)-395(nad)-394(p)-27(olam)-1(i)1(,)-395(w)28(a\\273)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(c)27(h)29(w)-1(i)1(l\\246)-334(i)-333(s)-1(p)1(ad\\252)-333(kiej)-333(pi)1(orun)-333(w)28(e)-334(zb)-28(o\\273a...)]TJ 27.879 -13.549 Td[(An)28(tek)-266(p)-27(orw)28(a\\252)-266(s)-1(i)1(\\246)-267(b)1(roni)1(\\242)-1(,)-266(al)1(e)-267(j)1(u\\273)-266(b)28(y\\252o)-266(za)-266(p)-27(\\363\\271)-1(n)1(o,)-266(p)-27(os)-1(yp)1(a\\252a)-266(s)-1(i)1(\\246)-267(ku)1(rza)28(w)27(a)-266(p)1(i\\363r,)]TJ -27.879 -13.55 Td[(zb)-28(\\363)-55(j)-395(ucie)-1(k\\252,)-395(j\\246kli)1(w)-1(i)1(e)-396(z)-1(akr)1(z)-1(y)1(c)-1(za\\252y)-396(ku)1(rop)1(atki,)-395(a)-396(j)1(aki\\261)-396(za)-56(j\\241cze)-1(k)-395(z)-1(es)-1(t)1(rac)27(h)1(an)28(y)-395(gna\\252)]TJ 0 -13.549 Td[(na)-333(o\\261le)-1(p)1(,)-333(jeno)-333(m)27(u)-333(b)1(iela\\252o)-334(p)-27(o)-28(d)1(ogonie.)]TJ 27.879 -13.549 Td[({)-291(J)1(ak)-291(se)-291(to)-291(wyp)1(atrzy\\252!)-290(Rabu\\261)-291(j)1(uc)28(ha!)-290({)-291(sz)-1(epn)1(\\241\\252)-291(siada)-55(j\\241c)-291(z)-291(p)-27(o)28(wrote)-1(m)-290({)-291(c\\363\\273)-1(,)]TJ -27.879 -13.549 Td[(kiej)-277(i)-277(jastrz\\241b)-277(m)27(usi)-277(s)-1(i)1(\\246)-278(p)-28(o\\273ywi\\242)-278(i)-277(c)27(h)1(o)-28(\\242)-1(b)29(y)-278(ta)-277(glista)-277(na)-56(j)1(m)-1(ar)1(niejsza.)-278(T)83(ak)1(ie)-278(ju)1(\\273)-278(ur)1(z)-1(\\241-)]TJ 0 -13.549 Td[(dzenie)-375(na)-375(\\261wie)-1(cie!)-375({)-375(me)-1(d)1(yto)28(w)28(a\\252)-375(okryw)28(a)-56(j)1(\\241c)-376(P)1(ietrusio)28(w)28(\\241)-375(g\\246)-1(b)1(usi\\246)-1(,)-374(gdy\\273)-375(p)1(s)-1(zc)-1(zo\\252y)]TJ 0 -13.55 Td[(br)1(z)-1(\\246c)-1(za\\252y)-333(nad)-333(n)1(i\\241)-333(z)-1(a)28(wz)-1(i\\246cie)-1(,)-333(a)-333(jak)1(i\\261)-334(k)28(osm)-1(at)28(y)-333(trzmie)-1(l)-333(b)1(ucz)-1(a\\252)-333(nieustan)1(nie.)]TJ 27.879 -13.549 Td[(Sp)-27(omnia\\252)-359(sobie,)-359(jak)-359(to)-359(jesz)-1(cz)-1(ek)-359(nieda)28(wno)-359(wyd)1(z)-1(iera\\252)-359(s)-1(i)1(\\246)-360(na)-359(w)28(ol\\246)-1(,)-359(d)1(o)-359(t)27(y)1(c)27(h)]TJ -27.879 -13.549 Td[(p)-27(\\363l,)-333(jak)-333(m)28(u)-333(to)-334(d)1(usz)-1(a)-333(dziw)-333(nie)-333(usc)27(h\\252a)-333(z)-334(t\\246s)-1(kn)1(icy!)]TJ 27.879 -13.549 Td[({)-468(Wym\\246c)-1(zy\\252y)-468(me)-1(,)-467(\\261)-1(cie)-1(r)1(wy!)-468({)-468(zakl\\241\\252)-468(ni)1(e)-469(ru)1(c)27(h)1(a)-56(j)1(\\241c)-469(si\\246)-468(ju\\273)-468(z)-468(m)-1(iejsca,)-468(b)-28(o)]TJ -27.879 -13.549 Td[(tu)1(\\273)-458(prze)-1(d)-457(n)1(im)-458(z)-458(\\273yta)-457(w)-1(y)1(\\261)-1(ciub)1(ia\\252y)-457(l\\246kliw)28(e)-458(g\\252o)27(wy)-457(pr)1(z)-1(epi\\363r)1(ki)-457(na)28(w)28(o\\252)-1(u)1(j\\241c)-458(si\\246)-458(p)-27(o)]TJ 0 -13.55 Td[(sw)27(o)-55(jem)27(u,)-390(a)-1(l)1(e)-392(w)-391(m)-1(i)1(g)-391(s)-1(i\\246)-391(p)-28(ok)1(ry\\252y)84(,)-391(gdy\\273)-391(c)-1(a\\252a)-391(b)1(anda)-391(wr\\363b)1(lego)-392(n)1(aro)-28(d)1(u)-391(spad)1(\\252a)-392(n)1(a)]TJ 0 -13.549 Td[(br)1(z)-1(ozy)83(,)-307(s)-1(to)-27(c)-1(zy\\252a)-308(si\\246)-308(w)-308(piac)28(h)-308(j)1(az)-1(go)-28(cz\\241c)-309(zapami\\246tale,)-308(t\\252u)1(k)55(\\241c)-308(si\\246)-308(a)-308(bij)1(\\241c)-308(i)-308(sw)27(ar)1(z)-1(\\241c,)]TJ 0 -13.549 Td[(a\\273)-351(\\261c)-1(ic)28(h\\252y)-350(nagl)1(e)-351(przywiera)-55(j\\241c)-351(d)1(o)-351(miejsc)-1(,)-350(jastrz\\241b)-350(z)-1(n)1(o)28(w)-1(u)-350(zak)28(o\\252o)28(w)27(a\\252)-350(i)-351(t)1(ak)-351(n)1(isk)28(o,)]TJ 0 -13.549 Td[(ja\\273e)-334(cie\\253)-333(le)-1(cia\\252)-333(p)-28(o)-333(zagonac)27(h)1(.)]TJ 27.879 -13.549 Td[({)-355(Da\\252)-356(w)28(am)-356(rad)1(\\246)-1(,)-355(p)28(ysk)56(ac)-1(ze)-1(!)-355(Aku)1(ratn)1(ie)-356(b)28(yw)28(a)-356(t)1(akusie\\253k)28(o)-356(z)-355(lud)1(\\271)-1(mi!)-355(Wi\\246c)-1(ej)]TJ -27.879 -13.549 Td[(zrobi)-333(z)-334(n)1(iejedn)28(ym)-333(p)-28(ogr)1(oz)-1(\\241)-333(ni)1(\\271)-1(li)-333(sk)56(am)-1(\\252an)1(ie)-1(m)-333({)-334(r)1(oz)-1(w)28(a\\273)-1(a\\252.)]TJ 27.879 -13.55 Td[(Pl)1(is)-1(zki)-295(si\\246)-296(p)-27(ok)56(az)-1(a\\252y)-295(p)-27(ob)-27(ok)-295(na)-295(dr)1(o)-28(dze)-1(,)-295(t)1(rz)-1(\\246s\\252)-1(y)-295(ogon)1(ami)-295(s)-1(zw)27(end)1(a)-56(j)1(\\241c)-296(si\\246)-296(tak)]TJ -27.879 -13.549 Td[(z)-334(b)1(lisk)55(a,)-333(i)1(\\273)-334(s)-1(k)28(or)1(o)-334(p)-27(oru)1(s)-1(zy\\252)-333(r\\246)-1(k)56(\\241,)-333(o)-28(d)1(lec)-1(ia\\252y)-333(za)-334(r)1(\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(ie)-1(!)-333(M)1(a\\252o)-334(co,)-333(a)-334(b)29(y\\252b)28(ym)-334(k)1(t\\363r\\241)-333(c)27(h)28(yci\\252)-333(la)-333(Pietru)1(s)-1(i)1(a!)]TJ 0 -13.549 Td[(W)84(ron)28(y)-389(wylaz\\252y)-389(z)-390(l)1(as)-1(u)1(,)-389(m)-1(asze)-1(ro)28(w)28(a\\252y)-389(k)28(oleinami)-389(wydziob)1(uj)1(\\241c)-1(,)-389(co)-389(s)-1(i\\246)-389(da\\252o,)]TJ -27.879 -13.549 Td[(ale)-423(p)-28(o)-27(c)-1(zu)28(ws)-1(zy)-423(cz)-1(\\252o)28(wie)-1(k)56(a,)-423(j)1(\\246)-1(\\252y)-423(ostro\\273nie,)-423(z)-423(przekrzywion)28(ymi)-423(\\252bami)-423(zaz)-1(i)1(e)-1(r)1(a\\242)-424(w)]TJ 0 -13.55 Td[(ni)1(e)-1(go)-381(i)-380(ob)-27(c)27(ho)-27(dzi\\242)-1(,)-380(p)-28(o)-27(dsk)55(ak)1(uj)1(\\241c)-382(coraz)-381(bl)1(i\\273)-1(ej,)-380(a)-381(stop)-28(ercz)-1(\\241c)-381(ob)1(m)-1(i)1(e)-1(rz\\252e)-1(,)-380(z)-1(b)-27(\\363)-55(jec)27(kie)]TJ 0 -13.549 Td[(dziob)28(y)84(.)]TJ\nET\nendstream\nendobj\n2047 0 obj <<\n/Type /Page\n/Contents 2048 0 R\n/Resources 2046 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2046 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2051 0 obj <<\n/Length 9639      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(642)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(Nie)-334(p)-27(o\\273)-1(y)1(w)-1(i)1(ta)-334(si\\246)-334(mn\\241)-333({)-333(rzuci\\252)-334(gr)1(ud)1(k)28(\\246)-1(,)-333(uciek\\252y)-333(c)-1(i)1(c)27(ho)-333(jak)-333(z\\252o)-28(dzieje.)]TJ 0 -13.549 Td[(Za\\261)-397(p)-28(otem,)-397(\\273)-1(e)-397(sie)-1(d)1(z)-1(i)1(a\\252)-397(jakb)29(y)-397(w)-397(o)-28(dr)1(\\246)-1(t)28(wieniu)1(,)-397(zapatr)1(z)-1(on)28(y)-396(w)27(e)-397(\\261)-1(wiat)-396(i)-397(ca\\252)-1(\\241)]TJ -27.879 -13.549 Td[(du)1(s)-1(z\\241)-293(z)-1(as\\252uc)27(h)1(an)28(y)-293(w)-294(j)1(e)-1(go)-293(g\\252os)-1(y)84(,)-294(t)1(o)-294(ws)-1(ze)-1(l)1(aki)-293(s)-1(t)28(w)28(\\363r)-293(j\\241\\252)-294(zuc)28(h)28(w)28(ale)-294(c)-1(i)1(\\241)-28(gn\\241\\242)-294(n)1(a)-294(n)1(iego;)]TJ 0 -13.549 Td[(mr\\363)28(wki)-354(\\252az)-1(i)1(\\252)-1(y)-353(m)27(u)-354(p)-27(o)-354(pl)1(e)-1(cac)27(h,)-353(m)-1(ot)28(yl)1(e)-355(raz)-354(p)-27(o)-355(r)1(az)-355(p)1(rzys)-1(i)1(ada\\252y)-354(w)28(e)-355(w\\252os)-1(ac)28(h,)-354(b)-27(o\\273)-1(e)]TJ 0 -13.549 Td[(kr)1(\\363)27(wki)-370(s)-1(zuk)56(a\\252y)-371(cz)-1(ego\\261)-372(p)-27(o)-371(t)28(w)27(ar)1(z)-1(y)84(,)-371(a)-371(zie)-1(l)1(one,)-371(s)-1(p)1(as)-1(\\252e)-371(lisz)-1(k)1(i)-371(pi\\246\\252y)-371(si\\246)-372(skw)28(apn)1(ie)-372(n)1(a)]TJ 0 -13.55 Td[(bu)1(t)28(y)83(,)-300(to)-300(l)1(e)-1(\\261ne)-301(p)1(tasz)-1(ki)-300(cosik)-300(m)27(u)-300(za\\261w)-1(i)1(e)-1(rgol)1(i\\252y)-300(nad)-299(g\\252)-1(o)28(w)28(\\241)-300(i)-300(w)-1(i)1(e)-1(wi\\363r)1(k)55(a)-300(p)1(rz)-1(ewija)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-320(o)-27(d)-319(b)-27(oru)-318(z)-1(ad)1(ar\\252a)-319(ru)1(dy)-319(ogon)1(,)-319(w)28(a\\273)-1(\\241c)-319(s)-1(i)1(\\246)-320(p)1(rz)-1(ez)-319(m)-1(gn)1(ie)-1(n)1(ie,)-319(cz)-1(yb)29(y)-319(nie)-319(c)27(h)29(yc)-1(n)1(\\241\\242)-320(n)1(a)]TJ 0 -13.549 Td[(ni)1(e)-1(go,)-322(al)1(e)-323(on)-321(ani)-322(j)1(u\\273)-322(o)-322(cz)-1(ym)-322(wiedzia\\252,)-322(gr\\241\\273y\\252)-322(si\\246)-323(b)-27(o)28(wie)-1(m)-322(w)-322(c)-1(zym\\261)-1(ci\\261,)-322(co)-322(buc)28(ha-)]TJ 0 -13.549 Td[(\\252o)-398(z)-398(t)28(yc)27(h)-397(z)-1(iem)-398(nieob)-55(j\\246t)28(yc)27(h)1(,)-398(syc)-1(\\241c)-398(m)27(u)-397(du)1(s)-1(z\\246)-398(up)-27(o)-56(j)1(n\\241)-398(i)-397(z)-1(go\\252a)-398(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(\\241)]TJ 0 -13.549 Td[(s\\252)-1(o)-27(dk)28(o\\261c)-1(i\\241.)]TJ 27.879 -13.549 Td[(Zda\\252o)-498(m)27(u)-498(si\\246,)-499(j)1(ak)28(ob)28(y)-498(z)-499(t)28(ym)-499(wiat)1(re)-1(m)-498(przew)27(ala\\252)-498(s)-1(i)1(\\246)-499(p)-28(o)-498(zb)-28(o\\273ac)27(h)1(;)-499(j)1(akb)28(y)]TJ -27.879 -13.55 Td[(p)-27(ol\\261)-1(n)1(iew)27(a\\252)-487(mi\\246)-1(ciu\\261k)56(\\241,)-487(wilgotn)1(\\241)-488(r)1(un)1(i\\241)-488(t)1(ra)28(w)-1(;)-487(j)1(akb)28(y)-487(to)-27(c)-1(zy\\252)-487(s)-1(i\\246)-487(s)-1(tr)1(umieniem)-488(p)-27(o)]TJ 0 -13.549 Td[(wygrzan)28(yc)28(h)-484(piac)28(hac)27(h)-484(skro\\261)-484(\\252)-1(\\241k)-484(p)1(rze)-1(j\\246t)28(yc)27(h)-484(zapac)28(hem)-485(sianok)28(os\\363)27(w;)-484(to)-484(jakb)29(y)-485(z)]TJ 0 -13.549 Td[(pt)1(ak)55(ami)-350(l)1(e)-1(cia\\252)-350(k)56(a)-56(j\\261)-350(wysok)28(o,)-350(g\\363rn)1(ie)-350(nad)-350(\\261wiatem)-351(i)-349(krzyk)56(a\\252)-350(z)-351(mo)-28(c\\241)-350(ni)1(e)-1(p)-27(o)-56(j)1(\\246)-1(t\\241)-350(d)1(o)]TJ 0 -13.549 Td[(s\\252)-1(o\\253)1(c)-1(a;)-459(to)-460(zno)28(wu)-459(jakb)29(y)-460(si\\246)-460(s)-1(t)1(a)27(w)28(a\\252)-460(sz)-1(u)1(m)-1(em)-460(p)-27(\\363l,)-460(k)28(ol)1(e)-1(b)1(aniem)-460(s)-1(i)1(\\246)-460(b)-28(or\\363)28(w,)-459(s)-1(i\\252\\241)-459(i)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(e)-1(m)-378(w)-1(sze)-1(lak)1(ie)-1(go)-378(rostu)-378(i)-378(wsz)-1(ystk)56(\\241)-378(p)-28(ot\\246g\\241)-378(te)-1(j)-377(z)-1(iemi)-378(\\261)-1(wi\\246te)-1(j)1(,)-378(ro)-27(dz)-1(\\241cej)-378(w)-379(\\261pi)1(e)-1(-)]TJ 0 -13.55 Td[(w)28(aniac)28(h)-333(i)-333(w)27(es)-1(elu)1(.)-333(I)-334(sob\\241)-333(s)-1(i)1(\\246)-334(wie)-1(d)1(z)-1(i)1(a\\252,)-333(w)-1(sz)-1(y)1(\\242)-1(ki)1(m)-334(si\\246)-334(wiedz\\241c)-334(z)-1(ar)1(az)-1(em,)-333(b)-28(o)-333(i)-333(t)28(ym,)]TJ 0 -13.549 Td[(co)-374(si\\246)-373(obacz)-1(y)-373(i)-372(p)-28(o)-28(czuje,)-373(cz)-1(ego)-373(s)-1(i\\246)-373(dotk)1(nie)-373(i)-373(c)-1(o)-373(si\\246)-373(w)-1(y)1(roz)-1(u)1(mie)-1(,)-373(al)1(e)-374(i)-373(t)28(ym,)-373(cz)-1(ego)]TJ 0 -13.549 Td[(ni)1(e)-377(s)-1(p)-27(os\\363b)-376(na)28(w)27(et)-376(p)-28(omiark)28(o)28(w)28(a\\242)-1(,)-376(a)-376(c)-1(o)-376(jeno)-376(p)-28(on)1(iekt\\363ra)-376(du)1(s)-1(za)-377(w)-376(go)-28(dzin)1(\\246)-377(\\261)-1(mierci)]TJ 0 -13.549 Td[(pr)1(z)-1(ejr)1(z)-1(y)-330(i)-331(c)-1(o)-330(s)-1(i\\246)-331(w)-331(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(wym)-331(s)-1(ercu)-331(t)28(yl)1(k)28(o)-331(k\\252\\246)-1(b)1(i,)-331(wzbiera)-331(i)-330(p)-28(on)1(os)-1(i)-330(j\\241)-331(w)-331(j)1(ak)55(\\241\\261)]TJ 0 -13.549 Td[(ni)1(e)-1(wiad)1(om)-1(\\241)-244(s)-1(tr)1(on\\246,)-245(i)-244(\\252z)-1(y)-244(s)-1(\\252o)-27(dkie)-245(wycisk)55(a,)-244(i)-244(nieuk)28(o)-55(jon)1(\\241)-245(t\\246s)-1(kn)1(ic\\241)-245(kieb)28(y)-244(k)56(am)-1(ieni)1(e)-1(m)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(w)27(ala.)]TJ 27.879 -13.549 Td[(Sz\\252o)-365(t)1(o)-365(pr)1(z)-1(ez)-365(ni)1(e)-1(go)-364(nib)29(y)-365(c)28(hm)27(u)1(ry)84(,)-365(\\273e)-365(n)1(im)-365(c)-1(o)-364(p)-27(o)-56(j\\241\\252,)-364(j)1(u\\273)-365(in)1(ne)-365(n)1(as)-1(t\\246p)-28(o)28(w)28(a\\252y)83(,)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(n)1(o)27(w)28(e)-334(i)-333(bar)1(z)-1(ej)-333(jes)-1(zcz)-1(e)-334(n)1(iep)-28(o)-55(j\\246te)-1(.)]TJ 27.879 -13.549 Td[(By\\252)-381(n)1(a)-381(j)1(a)27(wie,)-380(a)-381(\\261pik)-380(sypa\\252)-380(m)27(u)-380(w)-381(o)-27(c)-1(zy)-380(m)-1(aki)1(e)-1(m)-381(i)-380(w)28(o)-28(dzi\\252)-381(k)56(a)-55(j\\261)-381(p)-27(onad)-380(d)1(ole)]TJ -27.879 -13.549 Td[(i)-399(stron)1(am)-1(i)-398(z)-1(ac)28(h)28(wyc)-1(e\\253)-398(pro)28(w)28(adzi\\252,)-399(\\273e)-400(j)1(u\\273)-399(w)-399(k)28(o\\253cu)-399(p)-27(o)-28(cz)-1(u)1(\\252)-399(s)-1(i)1(\\246)-400(n)1(ib)28(y)-398(w)-399(c)-1(zas)-400(P)29(o)-28(d-)]TJ 0 -13.55 Td[(ni)1(e)-1(sienia,)-375(kiej)-375(du)1(s)-1(za)-375(gdzie)-1(sik)-375(s)-1(i)1(\\246)-376(wz)-1(n)1(ie)-1(sie)-376(i)-375(p)1(\\252)-1(y)1(nie)-376(k)1(l\\246)-1(cz\\241c)-1(y)-375(na)-375(jak)1(ie)-1(\\261)-376(j)1(ani)1(e)-1(lskie)]TJ 0 -13.549 Td[(ogro)-27(dy)84(,)-334(n)1(a)-333(jakie\\261)-334(n)1(ie)-1(b)1(a)-334(i)-333(r)1(a)-56(j)1(e)-334(p)-28(e\\252ne)-333(s)-1(zc)-1(z\\246)-1(\\261liw)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Kw)28(ard)1(y)-239(b)29(y\\252)-238(prze)-1(ciek)-238(i)-238(do)-238(tkliw)28(o\\261c)-1(i)-238(ni)1(e)-1(sk)28(ory)84(,)-238(ale)-239(w)-238(t)27(y)1(c)27(h)-238(d)1(z)-1(iwn)28(y)1(c)27(h)-238(min)28(u)1(tac)27(h)]TJ -27.879 -13.549 Td[(got\\363)28(w)-362(b)28(y\\252)-361(pa\\261\\242)-363(n)1(a)-362(zie)-1(m,)-361(przywrze)-1(\\242)-362(d)1(o)-362(niej)-361(gor\\241cymi)-362(ustami)-362(i)-361(ob)-28(ejmo)28(w)27(a\\242)-362(ca\\252y)]TJ 0 -13.549 Td[(ten)-333(\\261)-1(wiat)-333(k)28(o)-28(c)28(han)28(y)84(.)]TJ 27.879 -13.55 Td[({)-377(Ni)1(c)-1(,)-376(jeno)-376(m)-1(e)-377(tak)-376(p)-28(o)28(wietrze)-377(rozbiera!)-376({)-377(br)1(oni\\252)-376(s)-1(i\\246)-377(t)1(r\\241c)-377(o)-28(cz)-1(y)-376(ku\\252aki)1(e)-1(m)-377(i)]TJ -27.879 -13.549 Td[(sro\\273)-1(\\241c)-396(brwie,)-396(ale)-397(b)-27(o)-396(to)-397(p)-27(oredzi\\252)-396(s)-1(i\\246)-397(p)1(rze)-1(m\\363)-28(c,)-396(b)-28(o)-396(to)-396(m)-1(\\363g\\252)-396(z)-1(d)1(usi\\242)-397(w)-396(s)-1(ob)1(ie)-397(ku)1(n-)]TJ 0 -13.549 Td[(ten)28(tno\\261\\242,)-334(k)1(t\\363ra)-333(go)-334(p)1(rze)-1(p)1(ala\\252a?)]TJ 27.879 -13.549 Td[(Na)-234(zie)-1(mi)-234(si\\246)-234(b)-28(o)28(wiem)-235(zno)28(wu)-234(p)-27(o)-28(cz)-1(u)1(\\252)-1(,)-233(na)-234(o)-55(jco)27(w)28(e)-1(j)-233(i)-234(p)1(rao)-56(j)1(c)-1(o)28(w)28(e)-1(j)-233(grud)1(z)-1(i)1(,)-234(m)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(sw)27(oimi,)-323(to)-324(i)-323(nie)-324(d)1(z)-1(i)1(w)27(ota,)-323(c)-1(o)-323(rad)1(o)27(w)28(a\\252a)-324(m)28(u)-324(si\\246)-324(du)1(s)-1(za)-324(i)-323(k)56(a\\273)-1(d)1(e)-324(bicie)-324(se)-1(rca)-324(zda\\252o)-323(s)-1(i\\246)]TJ 0 -13.549 Td[(w)28(o\\252)-1(a\\242)-333(na)-333(\\261)-1(wiat)-333(ca\\252)-1(y)-333(mo)-28(cno)-333(i)-333(rad)1(o\\261)-1(n)1(ie)-1(:)]TJ 27.879 -13.55 Td[({)-333(Dy\\242)-334(zno)28(wu)-333(jes)-1(t)1(e)-1(m!)-333(Je)-1(ste)-1(m)-333(i)-333(os)-1(tan)1(\\246)-1(!)]TJ 0 -13.549 Td[(Pr)1(\\246)-1(\\273y\\252)-292(si\\246)-292(w)-292(sobi)1(e)-1(,)-291(got\\363)28(w)-292(d\\271wign\\241\\242)-292(si\\246)-292(na)-291(to)-292(n)1(o)27(w)28(e)-292(\\273yc)-1(i)1(e)-1(,)-291(kt\\363ry)1(m)-292(ju)1(\\273)-293(sze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(o)-28(ciec)-1(,)-368(j)1(akim)-368(przes)-1(z\\252y)-368(dziady)-368(i)-367(prad)1(z)-1(i)1(ady)84(,)-368(i)-368(tak)-368(sam)-1(o)-368(j)1(ak)-368(oni)-368(p)-27(o)-28(c)28(h)28(yla\\252)-368(bar)1(y)83(,)-368(b)29(y)]TJ 0 -13.549 Td[(wz)-1(i)1(\\241\\242)-486(c)-1(i\\246\\273)-1(k)1(i)-486(tr)1(ud)-485(i)-485(p)-28(on)1(ie\\261)-1(\\242)-486(go)-485(nieul\\246kle)-486(i)-485(ni)1(e)-1(stru)1(dze)-1(n)1(ie)-1(,)-485(a\\273)-486(p)-27(\\363ki)-485(Pietru)1(\\261)-486(nie)]TJ 0 -13.549 Td[(zas)-1(t\\241)-28(p)1(i)-333(go)-334(z)-333(k)28(ole)-1(i)1(...)]TJ 27.879 -13.55 Td[({)-282(T)83(ak)-282(j)1(u\\273)-282(b)28(y\\242)-283(m)28(usi!)-282(M)1(\\252)-1(o)-27(dy)-282(p)-27(o)-282(s)-1(t)1(arym,)-282(s)-1(y)1(n)-282(p)-27(o)-282(o)-56(jcu,)-281(a)-282(p)-28(osobn)1(ie)-1(,)-281(a)-283(ci\\246giem)-1(,)]TJ -27.879 -13.549 Td[(dop)-27(\\363ki)-333(Tw)28(o)-56(ja)-333(w)28(ola,)-333(Je)-1(zu)-333(mi\\252os)-1(i)1(e)-1(rn)29(y)-333({)-334(d)1(uma\\252)-334(sur)1(o)27(w)28(o.)]TJ\nET\nendstream\nendobj\n2050 0 obj <<\n/Type /Page\n/Contents 2051 0 R\n/Resources 2049 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2036 0 R\n>> endobj\n2049 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2054 0 obj <<\n/Length 9471      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(643)]TJ -330.353 -35.866 Td[(Wspar)1(\\252)-325(g\\252)-1(o)28(w)28(\\246)-326(n)1(a)-325(r\\246k)56(ac)27(h)-325(i)-324(p)-28(o)-27(c)27(h)28(yl)1(a\\252)-325(nisk)28(o)-325(o)-28(ci\\246)-1(\\273a\\252\\241)-325(g\\252o)28(w)27(\\246,)-325(gdy)1(\\273)-326(n)1(a)28(w)-1(i)1(e)-1(d)1(z)-1(i\\252y)]TJ -27.879 -13.549 Td[(go)-294(ca\\252)-1(\\241)-293(c)-1(i\\273b\\241)-294(p)1(rze)-1(r)1(\\363\\273)-1(n)1(e)-295(m)28(y\\261)-1(l)1(e)-295(i)-294(sp)-27(om)-1(i)1(nani)1(a,)-294(z)-1(a\\261)-294(j)1(aki\\261)-294(g\\252)-1(os)-294(kw)28(ard)1(y)-294(i)-294(k)56(arc\\241c)-1(y)84(,)-294(j)1(ak)]TJ 0 -13.549 Td[(gdy)1(b)28(y)-288(g\\252os)-289(sumienia,)-288(j)1(\\241\\252)-288(m)27(u)-288(p)1(ra)28(wi\\242)-289(sw)28(o)-56(je)-288(gorzkie)-288(i)-288(b)-28(ol)1(e)-1(sne)-288(pra)28(wdy)84(,)-288(pr)1(z)-1(y)1(gi\\241\\252)-288(s)-1(i\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-333(ni)1(m)-334(i)-333(uk)28(or)1(z)-1(y\\252)-333(wyz)-1(n)1(a)-56(j)1(\\241c)-334(si\\246)-334(ze)-334(ws)-1(zys)-1(tk)1(ic)27(h)-333(p)1(rze)-1(win)-333(i)-333(gr)1(z)-1(ec)27(h\\363)28(w...)]TJ 27.879 -13.549 Td[(Ci\\246\\273)-1(k)56(\\241)-418(m)27(u)-417(b)28(y\\252a)-418(ta)-418(sp)-27(o)27(wied\\271)-418(i)-418(zgo\\252a)-418(nie\\252ac)-1(n)29(ym)-419(p)-27(ok)56(a)-56(j)1(anie,)-418(ale)-418(pr)1(z)-1(em\\363g\\252)]TJ -27.879 -13.55 Td[(har)1(do\\261\\242)-1(,)-282(zdu)1(s)-1(i)1(\\252)-283(w)-282(sobie)-282(am)27(b)1(it)-282(i)-282(p)28(yc)28(h\\246)-282(patr)1(z)-1(\\241c)-282(w)-283(ca\\252e)-283(sw)27(o)-55(je)-282(\\273)-1(ycie)-282(nieub)1(\\252agan)28(ymi)]TJ 0 -13.549 Td[(o)-28(cz)-1(ami)-404(opami\\246tania;)-404(k)56(a\\273)-1(d)1(\\241)-405(spr)1(a)28(w)27(\\246)-405(sw)27(o)-55(j\\241)-404(przez)-1(iera\\252)-404(te)-1(r)1(a)-405(d)1(o)-405(d)1(na,)-404(bier\\241c)-405(j)1(\\241)-405(n)1(a)]TJ 0 -13.549 Td[(rozum)-333(i)-333(na)-333(s)-1(rogi)-333(s\\241d.)]TJ 27.879 -13.549 Td[({)-234(G\\252u)1(pi)-233(b)28(y\\252e)-1(m)-234(i)-233(t)28(yla!)-234(Na)-233(\\261)-1(wiec)-1(ie)-234(m)28(usi)-234(i\\261\\242)-235(sw)28(oim)-234(p)-28(or)1(z)-1(\\241d)1(kiem)-1(!)-233(Ju\\261c)-1(i)1(,)-234(m\\241drze)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzieli)-288(o)-27(c)-1(iec)-1(:)-287(jak)-288(wsz)-1(y)1(s)-1(tki)1(e)-289(j)1(ad\\241)-288(w)-288(j)1(e)-1(d)1(n\\241)-288(stron)1(\\246)-1(,)-287(\\271)-1(le)-288(taki)1(e)-1(m)28(u,)-288(k)1(t\\363re)-1(n)-287(z)-288(w)27(oza)]TJ 0 -13.549 Td[(spadn)1(ie,)-362(p)-28(o)-28(d)-361(k)28(o\\252)-1(a)-362(zle)-1(ci!)-362(Kon)1(i)-362(na)-362(piec)27(h)1(ot\\246)-363(si\\246)-363(n)1(ie)-363(zgoni!)-362(\\233e)-363(to)-362(ku)1(\\273)-1(d)1(e)-1(n)-362(cz)-1(\\252o)28(wiek)]TJ 0 -13.55 Td[(m)27(u)1(s)-1(i)-248(ws)-1(zy\\242k)28(o)-249(do)-27(c)27(ho)-27(dzi\\242)-249(s)-1(w)28(oim)-249(rozumem)-1(!)-248(Drogo)-248(niejedn)1(e)-1(m)28(u)-249(wyc)28(ho)-28(d)1(z)-1(i)1(!)-249({)-248(m)27(y\\261la\\252)]TJ 0 -13.549 Td[(sm)27(ut)1(nie)-334(i)-333(cierpk)1(i)-334(p)1(rze)-1(\\261mie)-1(c)28(h)-333(ok)28(oli\\252)-333(m)27(u)-333(w)28(argi.)]TJ 27.879 -13.549 Td[(Z)-333(b)-28(or)1(u)-333(z)-1(acz)-1(\\246\\252y)-333(klek)28(ota\\242)-334(k)28(o\\252atki)-333(a)-333(p)-28(or)1(ykiw)28(ania)-333(ci\\241)-28(gn)1(\\241c)-1(yc)28(h)-333(s)-1(tad)1(.)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(\\363s)-1(\\252)-311(Pietru)1(s)-1(ia)-311(i)-311(ru)1(s)-1(zy\\252)-311(b)-28(ok)1(ie)-1(m)-311(top)-28(ol)1(o)27(w)28(ej)-311(prze)-1(p)1(usz)-1(cza)-56(j\\241c)-311(s)-1(tad)1(a,)-311(id\\241ce)]TJ -27.879 -13.549 Td[(z)-334(le\\261n)28(yc)27(h)-333(p)1(as)-1(t)28(wisk.)]TJ 27.879 -13.55 Td[(Ku)1(rz)-429(si\\246)-429(wz)-1(n)1(os)-1(i)1(\\252)-429(sp)-28(o)-27(d)-428(k)28(op)28(yt)-428(i)-428(bi\\252)-428(p)-28(on)1(ad)-428(top)-27(ole)-429(kiej)-428(c)27(h)1(m)27(u)1(ra,)-428(w)-429(zac)-1(ze)-1(r)1(-)]TJ -27.879 -13.549 Td[(wienion)28(y)1(c)27(h)-383(o)-27(d,)-383(zac)27(h)1(o)-28(du)-382(tumanac)28(h)-383(c)27(h)29(w)-1(i)1(a\\252)-1(y)-382(s)-1(i\\246)-383(rogate,)-383(ci\\246)-1(\\273kie)-383(\\252b)28(y)-383(i)-383(r)1(az)-384(p)-27(o)-383(raz)]TJ 0 -13.549 Td[(sk\\252\\246)-1(b)1(ia\\252y)-353(si\\246)-353(o)28(w)27(ce)-1(,)-352(obgan)1(iane)-353(p)1(rze)-1(z)-353(pi)1(e)-1(ski,)-352(gdy\\273)-353(ci\\246gie)-1(m)-353(si\\246)-353(rw)28(a\\252y)-353(w)-353(p)1(rzydr)1(o\\273)-1(-)]TJ 0 -13.549 Td[(ne)-371(zb)-28(o\\273a,)-371(p)-27(okwik)1(iw)27(a\\252y)-370(\\261)-1(win)1(ie)-371(pra\\273one)-371(b)1(atam)-1(i)1(,)-371(cielaki)-371(z)-371(b)-27(e)-1(k)1(ie)-1(m)-371(sz)-1(u)1(k)56(a\\252y)-371(p)-27(ogu-)]TJ 0 -13.549 Td[(bi)1(on)28(yc)27(h)-423(m)-1(atek;)-424(p)1(aru)-424(p)1(as)-1(tu)1(c)27(h)1(\\363)27(w)-424(jec)27(h)1(a\\252o)-424(na)-424(k)28(oniac)28(h,)-424(a)-424(resz)-1(ta)-424(sz)-1(\\252a)-424(z)-1(e)-424(s)-1(t)1(adami)]TJ 0 -13.55 Td[(trzask)55(a)-55(j\\241c)-328(z)-328(b)1(at\\363)28(w,)-328(gw)28(arz\\241c)-328(a)-327(p)-28(okr)1(z)-1(y)1(kuj)1(\\241c)-1(,)-327(kt\\363r)1(y\\261)-328(za)27(w)28(o)-28(d)1(z)-1(i\\252,)-327(ja\\273e)-328(si\\246)-328(rozlega\\252o.)]TJ 27.879 -13.549 Td[(An)28(tek)-331(osta)28(w)27(a\\252)-330(ju\\273)-331(za)-331(ws)-1(zystkimi,)-330(kiej)-331(go)-330(do)-55(jrza\\252)-331(Wit)1(e)-1(k)-330(i)-331(p)1(rz)-1(y)1(le)-1(cia\\252)-331(ca\\252o-)]TJ -27.879 -13.549 Td[(w)28(a\\242)-334(w)-334(r)1(\\246)-1(k)28(\\246)-334(n)1(a)-334(p)-27(o)28(witani)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(zgorze)-1(j)1(,)-333(widz\\246)-1(,)-333(p)-27(o)-28(dr)1(os)-1(\\252e\\261)-1(!)-333({)-333(oz)-1(w)28(a\\252)-333(s)-1(i\\246)-333(\\252)-1(ask)56(a)27(wie)-333(do)-333(c)27(h)1(\\252)-1(op)-27(ca.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(b)-27(o)-333(ju\\273)-333(te)-334(p)-27(ortki)1(,)-334(com)-334(d)1(os)-1(ta\\252)-333(jesie)-1(n)1(i\\241,)-333(s)-1(\\241)-333(mi)-333(p)-28(o)-333(k)28(olan)1(a.)]TJ 0 -13.55 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(da)-333(c)-1(i)-333(no)28(w)28(e)-334(gosp)-28(o)-28(d)1(yn)1(i,)-333(da!)-333(Ma)-55(j\\241)-333(to)-333(kro)28(wy)-333(c)-1(o)-333(je\\261)-1(\\242?)]TJ 0 -13.549 Td[({)-330(Boga\\242)-330(ta)-330(ma)-55(j\\241,)-329(do)-330(cna)-329(ju)1(\\273)-330(tra)28(w)27(\\246)-330(wyp)1(ali\\252o,)-329(\\273)-1(eb)28(y)-330(i)1(m)-330(gos)-1(p)-27(o)-28(d)1(yni)-329(ni)1(e)-331(p)-27(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(t)28(yk)56(a\\252a)-288(w)-288(ob)-28(or)1(z)-1(e,)-288(to)-288(b)29(y)-288(ca\\252)-1(k)1(ie)-1(m)-288(zgub)1(i\\252y)-288(mle)-1(k)28(o.)-287(Da)-56(j)1(c)-1(i)1(e)-289(mi)-288(P)1(ie)-1(t)1(rusia)-288(p)1(rze)-1(wie\\271)-1(\\242)-288(go)]TJ 0 -13.549 Td[(\\271dzie)-1(b)1(k)28(o)-334(n)1(a)-334(k)28(on)1(iu)-333({)-333(pr)1(os)-1(i\\252.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(j)1(e)-1(sz)-1(cze)-334(s)-1(i\\246)-333(nie)-333(utrzyma)-333(i)-334(zlec)-1(i)1(!)]TJ 0 -13.55 Td[({)-286(A)-286(m)-1(a\\252o)-286(go)-286(to)-287(j)1(u\\273)-286(w)27(ozi\\252e)-1(m)-286(na)-286(\\271r\\363b)-28(ce!)-286(Prze)-1(ciek)-286(trzyma\\252)-287(go)-286(b)-27(\\246)-1(d)1(\\246)-1(,)-286(c)27(h)1(\\252opak)]TJ -27.879 -13.549 Td[(ja\\273e)-380(pisz)-1(czy)-380(do)-379(k)28(onia.)-379({)-380(Zabra\\252)-380(go)-379(i)-380(usadzi\\252)-380(n)1(a)-380(jaki)1(e)-1(j)1(\\261)-381(starej)-379(s)-1(zk)55(ap)1(ie,)-380(wlek)55(\\241ce)-1(j)]TJ 0 -13.549 Td[(si\\246)-448(z)-1(e)-448(\\252b)-27(e)-1(m)-448(op)1(usz)-1(cz)-1(on)28(y)1(m)-1(,)-447(Pi)1(e)-1(tru)1(\\261)-448(c)27(h)28(y)1(c)-1(i\\252)-447(s)-1(i\\246)-448(r)1(\\241c)-1(zynami)-448(gr)1(z)-1(y)1(w)-1(y)84(,)-448(zabi)1(\\252)-448(go\\252ymi)]TJ 0 -13.549 Td[(pi)1(\\246)-1(tami)-333(k)28(o\\253skie)-334(b)-27(oki)-333(a)-333(krzyk)56(a\\252)-333(rado\\261nie.)]TJ 27.879 -13.549 Td[({)-356(Jaki)-355(to)-356(c)27(h)28(w)28(at!)-356(p)1(arob)-27(e)-1(k)-355(m)-1(\\363)-55(j)-356(k)28(o)-28(c)28(han)28(y)1(!)-356({)-356(s)-1(zepn\\241\\252)-356(An)29(te)-1(k)1(,)-356(s)-1(k)1(r\\246)-1(ci\\252)-356(zaraz)-356(w)]TJ -27.879 -13.549 Td[(p)-27(ole)-334(i)-333(mie)-1(d)1(z)-1(ami)-333(dob)1(iera\\252)-334(si\\246)-334(d)1(rogi)-333(b)1(ie)-1(gn)1(\\241c)-1(ej)-333(z)-1(a)-333(sto)-28(do\\252ami.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-361(t)27(y)1(lk)28(o)-361(c)-1(o)-361(z)-1(asz\\252)-1(o)-361(i)-361(ca\\252e)-362(ni)1(e)-1(b)-27(o)-361(s)-1(tan)1(\\246)-1(\\252o)-361(w)27(e)-361(z)-1(\\252o)-28(cie)-362(i)-361(b)1(ledziu\\261kic)27(h)-360(z)-1(iele-)]TJ -27.879 -13.549 Td[(ni)1(ac)27(h,)-420(wiater)-420(usta\\252,)-420(z)-1(b)-27(o\\273)-1(a)-420(zw)-1(i)1(e)-1(si\\252y)-420(o)-28(c)-1(i)1(\\246)-1(\\273a\\252e)-421(k\\252osy)83(,)-420(a)-420(p)-28(o)-420(rosac)27(h)-420(lec)-1(i)1(a\\252y)-421(wsio)28(w)27(e)]TJ 0 -13.549 Td[(wrza)27(wy)-333(i)-333(jak)1(ie)-1(\\261)-333(dalekie)-334(p)1(rzy\\261piewki.)]TJ 27.879 -13.549 Td[(Szed\\252)-476(z)-476(w)28(olna,)-475(j)1(akb)28(y)-475(o)-28(c)-1(i)1(\\246)-1(\\273on)28(y)-475(s)-1(p)-27(om)-1(i)1(nk)56(ami,)-476(gd)1(y\\273)-476(Jagu)1(s)-1(ia)-475(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(m)27(u)-450(na)-451(p)1(ami\\246)-1(\\242,)-451(raz)-451(p)-27(o)-451(raz)-451(widzia\\252)-451(pr)1(z)-1(ed)-451(sob\\241)-451(j)1(e)-1(j)-450(mo)-28(dr)1(e)-452(o)-28(czy)-451(i)-451(l\\261ni)1(\\241c)-1(e)-451(z)-1(\\246b)28(y)84(,)]TJ 0 -13.55 Td[(i)-459(te)-460(c)-1(ze)-1(r)1(w)27(on)1(e)-460(nab)1(rane)-460(w)28(argi)1(,)-460(tc)28(hn)1(\\241c)-1(e)-460(tak)-459(jak)28(o\\261)-460(z)-460(b)1(lisk)56(a)-1(,)-459(j)1(a\\273)-1(e)-460(si\\246)-460(wz)-1(d)1(ryga\\252)-459(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(ta)28(w)28(a\\252)-1(.)-339(Jak)-340(\\273)-1(y)1(w)27(a)-340(m)27(u)-339(s)-1(t)1(a)27(w)28(a\\252a,)-340(pr)1(z)-1(ec)-1(i)1(e)-1(ra\\252)-340(o)-28(czy)-340(o)-28(dgan)1(ia)-56(j)1(\\241c)-341(j)1(\\241)-340(z)-341(p)1(am)-1(i)1(\\246)-1(ci,)-340(ale)]TJ\nET\nendstream\nendobj\n2053 0 obj <<\n/Type /Page\n/Contents 2054 0 R\n/Resources 2052 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2052 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2058 0 obj <<\n/Length 8398      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(644)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(kieb)28(y)-395(n)1(a)-396(p)1(rze)-1(k)28(\\363r)-395(sz\\252)-1(a)-395(p)-27(ob)-28(ok)1(,)-395(biedr)1(o)-396(w)-395(bi)1(e)-1(d)1(ro)-395(jak)-395(n)1(ie)-1(gd)1(y\\261)-396(i)-395(j)1(ak)-395(niegdy)1(\\261)-396(zda\\252o)]TJ 0 -13.549 Td[(si\\246)-334(o)-28(d)-333(n)1(iej)-333(bu)1(c)27(ha\\242)-333(lub)28(y)1(m)-334(\\273)-1(ar)1(e)-1(m,)-333(a\\273)-1(e)-333(krew)-334(u)1(derza\\252)-1(a)-333(m)27(u)-332(do)-333(g\\252o)27(wy)84(.)]TJ 27.879 -13.549 Td[({)-347(A)-346(mo\\273)-1(e)-347(i)-346(dob)1(rze)-1(,)-346(c)-1(o)-346(j\\241)-346(w)-1(y)1(p)-28(\\246dzi\\252a)-347(z)-347(c)28(ha\\252up)29(y!)-346(Kiej)-347(t)1(a)-347(zadra)-346(m)-1(i)-346(u)28(wi\\246z)-1(\\252a,)]TJ -27.879 -13.549 Td[(kiej)-267(t)1(a)-267(b)-28(ol\\241ca)-267(zadra:)-266(Ale)-268(co)-267(b)28(y\\252o,)-266(to)-267(i)-267(ni)1(e)-268(wr\\363)-28(ci)-267({)-267(w)28(e)-1(stc)27(h)1(n\\241\\252)-267(z)-267(dziwnie)-267(\\261c)-1(i\\261ni)1(\\246)-1(t)28(ym)]TJ 0 -13.549 Td[(se)-1(rcem)-1(.)-333({)-333(Nie)-334(sp)-28(os\\363b.)-333({)-333(I)-334(p)1(rostuj)1(\\241c)-334(si\\246)-334(rzuci\\252)-333(os)-1(tr)1(o)-334(sam)-334(sobie:)]TJ 27.879 -13.55 Td[({)-333(Sk)28(o\\253)1(c)-1(zy\\252o)-334(si\\246)-334(p)1(s)-1(i)1(e)-334(w)27(ese)-1(le!)-333({)-334(wsz)-1(ed\\252)-333(ju)1(\\273)-334(w)-334(ob)-27(ej\\261c)-1(ie.)]TJ 0 -13.549 Td[(W)-356(p)-28(o)-27(dw)28(\\363rz)-1(u)-356(gw)28(arn)1(o)-357(b)28(y\\252o)-356(i)-357(l)1(ud)1(nie,)-357(k)1(rz\\241)-1(t)1(ali)-357(si\\246)-357(k)28(ole)-357(wiecz)-1(orn)29(yc)27(h)-356(obr)1(z)-1(\\241d)1(-)]TJ -27.879 -13.549 Td[(k)28(\\363)28(w,)-439(J\\363zk)56(a)-439(kr)1(o)27(wy)-438(doi)1(\\252)-1(a)-438(p)-27(o)-28(d)-438(ob)-28(or)1(\\241)-439(wydziera)-55(j\\241c)-439(si\\246)-439(piskli)1(w)27(\\241)-438(n)28(ut\\241,)-438(za\\261)-439(Hank)56(a)]TJ 0 -13.549 Td[(klu)1(s)-1(k)1(i)-333(z)-1(agn)1(iata\\252a)-334(n)1(a)-334(gan)1(ku)1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-271(prze)-1(r)1(z)-1(ek\\252)-272(cos)-1(i)1(k)-272(d)1(o)-272(P)1(ie)-1(t)1(rk)56(a,)-272(p)-27(o)-56(j)1(\\241c)-1(ego)-272(k)28(on)1(ie,)-272(i)-271(ws)-1(ze)-1(d)1(\\252)-272(ogl\\241d)1(a\\242)-272(o)-56(j)1(c)-1(o)28(w)27(\\241)]TJ -27.879 -13.549 Td[(stron\\246,)-333(pr)1(z)-1(yl)1(e)-1(cia\\252a)-334(za)-333(nim)-333(Hank)56(a.)]TJ 27.879 -13.55 Td[({)-333(T)83(rza)-334(b)-27(\\246dzie)-334(wyp)-27(orz\\241dz)-1(i)1(\\242)-334(i)-333(pr)1(z)-1(enies)-1(i)1(e)-1(m)28(y)-333(s)-1(i\\246)-333(tuta)-55(j.)-333(Jes)-1(t)-333(to)-333(w)27(ap)1(no?)]TJ 0 -13.549 Td[({)-398(Kup)1(i\\252am)-399(j)1(e)-1(szc)-1(ze)-399(w)-399(j)1(armarek,)-398(zaraz)-399(j)1(utro)-398(za)28(w)27(o\\252am)-399(S)1(tac)27(h)1(a,)-398(to)-398(w)-1(y)1(bieli.)]TJ -27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(c)-1(o)-333(na)-333(tej)-333(s)-1(tr)1(onie)-333(b)-28(\\246dzie)-334(n)1(am)-334(sp)-28(osobn)1(iej.)]TJ 27.879 -13.549 Td[(Medy)1(to)27(w)28(a\\252)-333(c)-1(osik)-333(ob)-28(c)28(ho)-28(d)1(z)-1(\\241c)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-334(k)56(\\241t)28(y)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(e\\261)-334(w)-333(p)-28(ol)1(u?)-334({)-333(sp)28(yta\\252a)-333(nie\\261)-1(mia\\252o.)]TJ 0 -13.55 Td[({)-333(B)-1(y)1(\\252)-1(em,)-333(w)-1(sz)-1(y)1(\\242)-1(k)28(o)-333(dob)1(rze)-1(,)-333(Han)28(u)1(\\261)-1(,)-333(\\273e)-334(i)-333(s)-1(am)-333(b)28(ym)-334(l)1(e)-1(p)1(ie)-1(j)-333(n)1(ie)-334(zarz\\241dzi\\252.)]TJ 0 -13.549 Td[(P)28(okr)1(a\\261)-1(n)1(ia\\252a)-333(s)-1(tr)1(as)-1(znie,)-333(rada)-333(p)-27(o)-28(c)27(h)29(w)27(ale.)]TJ 0 -13.549 Td[({)-333(Je)-1(n)1(o)-334(P)1(ietrk)28(o)28(wi)-333(\\261)-1(win)1(ie)-334(pasa\\242)-1(,)-333(a)-333(ni)1(e)-334(rob)1(i\\242)-334(w)-333(groncie!)-333(P)28(aparu)1(c)27(h)1(!)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(to)-333(nie)-333(w)-1(i)1(e)-1(m!)-333(Ju\\273e)-1(m)-333(s)-1(i\\246)-333(na)28(w)27(et)-333(pr)1(z)-1(ew)-1(i)1(adyw)28(a\\252a)-334(o)-333(no)28(w)28(e)-1(go)-333(par)1(obk)56(a.)]TJ 0 -13.549 Td[({)-333(W)83(ez)-1(m\\246)-334(j)1(a)-334(go)-333(w)-334(gar)1(\\261)-1(cie,)-334(a)-333(n)1(ie)-334(p)-27(os)-1(\\252u)1(c)27(ha,)-333(to)-333(wygoni)1(\\246)-334(na)-333(c)-1(ztery)-333(wiatry)1(!)]TJ 0 -13.55 Td[(Chcia\\252a)-304(j)1(e)-1(szc)-1(ze)-304(c)-1(o\\261)-304(p)-27(edzie)-1(\\242,)-303(ale)-304(dziec)-1(i)-303(zakrzycz)-1(a\\252y)-303(i)-303(p)-28(olecia\\252a)-304(d)1(o)-304(n)1(ic)27(h)1(,)-304(za\\261)]TJ -27.879 -13.549 Td[(An)28(tek)-300(r)1(usz)-1(y\\252)-300(w)-300(p)-27(o)-28(dw)28(\\363rze)-300(prze)-1(p)1(atru)1(j\\241c)-300(ws)-1(zys)-1(t)1(k)28(o)-300(bacz)-1(n)1(ie)-1(,)-299(a)-300(tak)-300(suro)28(w)28(o,)-300(\\273e)-301(c)28(ho)-28(\\242)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-371(niekiedy)-371(rzuci\\252)-372(j)1(akie)-372(s)-1(\\252o)28(w)28(o,)-372(a)-372(P)1(ietrk)28(o)28(wi)-372(j)1(a\\273)-1(e)-372(sk)28(\\363ra)-372(cierp\\252a)-371(i)-372(Wi)1(te)-1(k)-371(b)-28(o)-55(j\\241c)]TJ 0 -13.549 Td[(m)27(u)-332(s)-1(i\\246)-333(na)28(wija\\242)-334(n)1(a)-333(o)-28(c)-1(zy)-333(przem)27(yk)56(a\\252)-333(s)-1(i\\246)-333(jeno)-333(z)-334(dal)1(a,)-334(stron)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(J\\363zk)55(a)-333(d)1(oi\\252a)-334(j)1(u\\273)-334(t)1(rz)-1(ec)-1(i)1(\\241)-334(k)1(ro)28(w)27(\\246)-334(\\261pi)1(e)-1(w)28(a)-56(j)1(\\241c)-334(c)-1(or)1(az)-334(rozg\\252o\\261)-1(n)1(ie)-1(j)1(:)]TJ 0 -13.55 Td[(St)1(\\363)-56(j,)-333(siwul)1(o,)-334(st\\363)-55(j!)]TJ 0 -13.549 Td[(Sk)28(op)1(k)28(\\246)-334(mlek)55(a)-333(d\\363)-55(j!)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(si\\246)-334(d)1(rz)-1(esz)-1(,)-333(jak)1(b)28(y)-333(c)-1(i\\246)-333(kto)-333(z)-1(e)-334(sk)28(\\363ry)-333(ob)1(\\252upi)1(a\\252!)-334({)-333(kr)1(z)-1(yk)1(n\\241\\252)-333(na)-333(ni\\241.)]TJ 0 -13.549 Td[(Urw)28(a\\252a)-281(z)-281(n)1(ag\\252a,)-281(al)1(e)-281(\\273)-1(e)-281(b)29(y\\252a)-281(h)1(arda)-280(i)-280(nieust\\246pliw)28(a,)-280(to)-281(za\\261)-1(p)1(iew)27(a\\252a)-280(dalej,)-280(jeno)]TJ -27.879 -13.549 Td[(co)-334(j)1(u\\273)-334(cisz)-1(ej)-333(i)-333(jakb)29(y)-334(l)1(\\246)-1(kl)1(iwie)-1(j)1(:)]TJ 27.879 -13.55 Td[(Kaza\\252a)-334(ci\\246)-334(matk)56(a)-333(prosi\\242,)]TJ 0 -13.549 Td[(\\233e)-1(b)29(y\\261)-334(mlek)55(a)-333(da\\252a)-333(dosy\\242,)]TJ 0 -13.549 Td[(St)1(\\363)-56(j,)-333(siwul)1(o,)-334(st\\363)-55(j!)]TJ 0 -13.549 Td[({)-341(Za)28(w)27(ar)1(\\252ab)28(y\\261)-341(ano)-341(g\\246b)-27(\\246)-1(,)-340(gos)-1(p)-27(o)-28(dar)1(z)-342(w)-341(c)28(ha\\252u)1(pie!)-341({)-341(sk)56(arci\\252a)-341(j\\241)-341(Han)1(k)56(a)-341(d\\271wi-)]TJ -27.879 -13.549 Td[(ga)-56(j)1(\\241c)-334(p)1(ic)-1(i)1(e)-334(la)-333(os)-1(tatn)1(iej)-333(kro)28(wy)-333({)-334(zaraz)-334(t)1(u)-333(b)-28(\\246dzie)-334(p)-27(os)-1(\\252u)1(c)27(h)-333({)-333(do)-27(da\\252a.)]TJ 27.879 -13.549 Td[(Od)1(e)-1(b)1(ra\\252)-333(jej)-333(c)-1(ebr)1(atk)28(\\246)-334(i)-333(s)-1(ta)28(wia)-55(j\\241c)-334(j)1(\\241)-334(k)1(ro)28(w)-1(i)1(e)-334(p)-27(o)27(wiedzia\\252)-333(z)-1(e)-334(\\261mie)-1(c)28(hem)-1(:)]TJ 0 -13.55 Td[({)-333(Drzyj)-333(si\\246)-1(,)-333(J\\363zia,)-333(dr)1(z)-1(yj)1(,)-333(a)-334(t)1(o)-334(sz)-1(cz)-1(u)1(ry)-333(p)1(r\\246)-1(d)1(z)-1(ej)-333(u)1(c)-1(iekn\\241)-333(z)-334(c)28(ha\\252up)29(y)83(..)1(.)]TJ 0 -13.549 Td[({)-419(A)-419(zrob)1(i\\246)-1(,)-418(c)-1(o)-419(mi)-419(si\\246)-420(sp)-27(o)-28(dob)1(a!)-419({)-419(w)28(arkn)1(\\246)-1(\\252a)-419(h)1(arno)-419(i)-418(z)-1(acz)-1(epn)1(ie)-1(,)-418(ale)-419(s)-1(k)28(oro)]TJ -27.879 -13.549 Td[(o)-28(d)1(e)-1(sz)-1(l)1(i,)-333(przycic)27(h)1(\\252a)-334(zaraz,)-333(b)-28(o)-28(cz\\241c)-334(s)-1(i)1(\\246)-334(jeno)-333(na)-333(br)1(ata)-334(i)-333(p)29(yrc)27(h)1(a)-56(j)1(\\241c)-334(nosem)-1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-345(zw)-1(i)1(ja\\252a)-345(s)-1(i\\246)-345(teraz)-346(k)28(ole)-345(\\261)-1(wi\\253)1(,)-345(tak)-345(skw)27(ap)1(nie)-345(dygu)1(j\\241c)-345(c)-1(i\\246\\273kie)-346(ce)-1(b)1(rzyki)]TJ -27.879 -13.549 Td[(z)-334(\\273arcie)-1(m,)-333(ja\\273e)-334(j)1(e)-1(j)-333(p)-27(o\\273)-1(a\\252o)28(w)28(a\\252,)-334(b)-27(o)-333(rze)-1(k\\252:)]TJ 27.879 -13.55 Td[({)-440(Niec)27(h)-439(c)27(h)1(\\252)-1(op)1(aki)-440(zani)1(e)-1(s\\241,)-440(za)-440(c)-1(i\\246\\273k)28(o,)-440(widz\\246)-1(,)-439(na)-440(ciebie!)-440(P)28(o)-27(c)-1(ze)-1(k)56(a)-56(j)1(,)-440(zgo)-28(dz\\246)]TJ -27.879 -13.549 Td[(ci)-353(dziew)-1(k)28(\\246,)-353(b)-27(o)-353(Jagu)1(s)-1(t)28(yn)1(k)55(a)-353(t)28(y)1(la,)-353(ci)-353(p)-27(om)-1(aga,)-352(c)-1(o)-353(ten)-353(p)1(ies)-354(n)1(ap\\252acz)-1(e.)-353(Ka)-55(j\\273e)-354(to)-353(on)1(a)]TJ\nET\nendstream\nendobj\n2057 0 obj <<\n/Type /Page\n/Contents 2058 0 R\n/Resources 2056 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2056 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2061 0 obj <<\n/Length 8589      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(645)]TJ -358.232 -35.866 Td[(dzisia?)]TJ 27.879 -13.549 Td[({)-245(Do)-244(dz)-1(i)1(e)-1(ci)-245(p)-27(olec)-1(ia\\252a,)-244(na)-245(zgo)-28(d)1(\\246)-246(i)1(dzie)-245(z)-246(n)1(iem)-1(i!)-244(Dz)-1(i)1(e)-1(wk)56(a)-245(ju)1(\\261)-1(ci,)-244(c)-1(ob)28(y)-244(s)-1(i)1(\\246)-246(zda\\252a,)]TJ -27.879 -13.549 Td[(jeno)-256(c)-1(o)-256(t)28(ylac)27(h)1(n)28(y)-256(k)28(os)-1(zt.)-257(P)29(ore)-1(d)1(z)-1(i)1(\\252ab)28(ym)-257(sam)-1(a,)-256(ale)-257(jak)-256(k)56(a\\273)-1(es)-1(z...)-256(t)28(w)27(o)-55(ja)-256(w)27(ola.)1(..)-257({)-256(dziw)]TJ 0 -13.549 Td[(go)-273(w)-274(r\\246k)28(\\246)-274(ni)1(e)-274(p)-28(o)-27(c)-1(a\\252o)28(w)27(a\\252a)-273(z)-274(wdzi\\246)-1(czno\\261)-1(ci,)-273(ale)-274(j)1(e)-1(n)1(o)-274(d)1(orzuci\\252a)-274(r)1(ado\\261nie:)-273({)-274(I)-273(g\\241s)-1(k)28(\\363)28(w)]TJ 0 -13.549 Td[(mo\\273)-1(n)1(a)-334(b)29(y)-334(wi\\246c)-1(ej)-333(p)1(rz)-1(y)1(c)27(ho)28(w)28(a\\242)-1(,)-333(a)-333(i)-333(dr)1(ugiego)-334(k)56(armik)56(a)-333(m)-1(i)1(e)-1(\\242)-334(n)1(a)-333(prze)-1(d)1(ani)1(e)-1(!)]TJ 27.879 -13.55 Td[({)-336(Na)-336(gosp)-27(o)-28(dar)1(c)-1(e)-336(s)-1(i)1(e)-1(d)1(lim,)-336(to)-336(i)-335(p)-27(o)-336(gos)-1(p)-27(o)-28(d)1(arsku)-336(tr)1(z)-1(a)-335(nam)-336(p)-27(o)-28(c)-1(zyna\\242,)-336(j)1(ak)-336(to)]TJ -27.879 -13.549 Td[(pr)1(z)-1(\\363)-27(dzi)-334(b)29(yw)27(a\\252o,)-333(za)-334(o)-55(jc\\363)28(w)-1(!)-333({)-333(p)-27(o)27(wiedzia\\252)-333(p)-28(o)-333(d\\252u)1(gim)-334(d)1(e)-1(li)1(b)-28(ero)28(w)28(aniu)1(.)]TJ 27.879 -13.549 Td[(A)-387(p)-27(o)-387(k)28(olacji)-386(wyni\\363s\\252)-387(si\\246)-387(p)-28(o)-28(d)-386(c)27(h)1(a\\252up)-27(\\246)-1(,)-386(gdy)1(\\273)-388(zac)-1(z\\246li)-387(si\\246)-387(s)-1(c)28(ho)-28(d)1(z)-1(i\\242)-387(zna)-55(jom-)]TJ -27.879 -13.549 Td[(k)28(o)28(wie)-334(a)-333(przyj)1(ac)-1(io\\252y)84(,)-333(w)-1(i)1(ta)-56(j)1(\\241c)-334(i)-333(c)-1(i)1(e)-1(sz)-1(\\241c)-334(si\\246)-334(j)1(e)-1(go)-333(p)-27(o)27(wr)1(ote)-1(m.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-231(Mateusz)-231(z)-231(Grze)-1(l)1(\\241,)-231(w)28(\\363)-56(j)1(to)28(w)-1(y)1(m)-231(brat)1(e)-1(m,)-231(p)1(rzys)-1(zed\\252)-231(S)1(tac)27(h)1(o)-231(P\\252osz)-1(k)56(a,)]TJ -27.879 -13.549 Td[(K\\252\\241b)-333(ze)-334(synem)-1(,)-333(stryj)1(e)-1(czn)28(y)-333(Adam)-334(i)-333(d)1(ru)1(g)-1(i)1(e)-1(.)]TJ 27.879 -13.55 Td[({)-333(Wygl\\241d)1(alim)-334(ci\\246)-334(j)1(ak)-333(k)56(ania)-333(des)-1(zcz)-1(u)1(!)-334({)-333(rzek\\252)-334(G)1(rz)-1(ela.)]TJ 0 -13.549 Td[({)-320(A)-321(c\\363\\273)-1(,)-320(trzyma\\252y)-320(m)-1(e)-321(i)-320(tr)1(z)-1(yma\\252y)-320(kiej)-320(w)-1(i)1(lki!)-320(Ani)-320(sp)-28(os\\363b)-320(b)28(y\\252o)-320(s)-1(i)1(\\246)-321(wydr)1(z)-1(e\\242)-1(!)]TJ -27.879 -13.549 Td[(Zas)-1(i)1(e)-1(d)1(li)-310(n)1(a)-310(pr)1(z)-1(y\\271bi)1(e)-311(w)-310(cie)-1(n)1(iu)1(,)-310(jeden)-310(Ro)-27(c)27(ho)-310(siedzia\\252)-310(p)-27(o)-28(d)-310(ok)1(nem)-311(w)28(e)-310(\\261)-1(wietle,)-310(lej\\241-)]TJ 0 -13.549 Td[(cym)-334(si\\246)-334(sz)-1(erok)56(\\241)-334(sm)27(u)1(g\\241)-333(a\\273)-334(w)-334(sad.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-320(b)29(y\\252)-320(c)-1(i)1(c)27(h)28(y)84(,)-320(nagr)1(z)-1(an)29(y)-320(i)-320(sie)-1(l)1(nie)-320(rozgw)-1(i)1(a\\271)-1(d)1(z)-1(ion)29(y)83(,)-319(s)-1(kr)1(o\\261)-321(d)1(rze)-1(w)-320(b\\252ysk)56(a-)]TJ -27.879 -13.55 Td[(\\252y)-420(\\261wiate\\252k)55(a)-419(c)27(ha\\252u)1(p,)-419(s)-1(ta)28(w)-420(mru)1(c)-1(za\\252)-420(n)1(ie)-1(k)1(ie)-1(d)1(y)-420(j)1(akb)28(y)-419(wz)-1(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(,)-419(a)-420(ws)-1(z\\246)-1(d)1(y)-419(p)-28(o)-28(d)]TJ 0 -13.549 Td[(\\261c)-1(ian)1(am)-1(i)-333(p)1(rze)-1(c)27(h)1(\\252adzali)-333(s)-1(i)1(\\246)-334(lu)1(dzie)-1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-333(rozp)28(yt)28(yw)28(a\\252)-334(si\\246)-334(o)-333(r\\363\\273no\\261c)-1(i)1(e)-1(,)-333(gdy)-333(Ro)-28(c)28(ho)-333(m)27(u)-333(p)1(rze)-1(r)1(w)27(a\\252:)]TJ 0 -13.549 Td[({)-480(Wi)1(e)-1(cie)-1(,)-479(nacz)-1(elni)1(k)-480(zap)-28(o)28(wiedzia\\252,)-480(\\273)-1(e)-480(za)-480(dw)28(a)-480(t)28(ygo)-28(d)1(nie)-480(ma)-56(j\\241)-479(s)-1(i\\246)-480(ze)-1(b)1(ra\\242)]TJ -27.879 -13.549 Td[(Lip)-27(c)-1(e)-333(i)-333(uc)27(h)29(w)27(ali\\242)-333(na)-333(s)-1(zk)28(o\\252\\246)-1(!)]TJ 27.879 -13.55 Td[({)-241(Co)-241(n)1(am)-241(do)-241(t)1(e)-1(go,)-240(niec)27(h)-240(s)-1(e)-241(o)-55(jco)28(w)-1(i)1(e)-242(r)1(adz\\241?)-241({)-241(wyrw)28(a\\252)-241(si\\246)-241(P\\252osz)-1(k)56(a,)-241(al)1(e)-241(Grze)-1(la)]TJ -27.879 -13.549 Td[(ws)-1(i)1(ad\\252)-333(na)-333(niego:)]TJ 27.879 -13.549 Td[({)-390(\\212ac)-1(n)1(o)-391(zw)27(ala\\242)-390(na)-390(o)-56(jc\\363)28(w,)-391(a)-390(s)-1(amem)27(u)-390(wylegiw)28(a\\242)-391(s)-1(i)1(\\246)-391(do)-390(g\\363ry)-390(p)-28(\\246p)-27(e)-1(m!)-390(B)-1(ez)]TJ -27.879 -13.549 Td[(to,)-419(c)-1(o)-420(\\273adn)1(e)-1(m)28(u)-420(z)-420(m\\252o)-28(dyc)28(h)-420(n)1(ie)-420(c)27(h)1(c)-1(e)-420(si\\246)-421(g\\252o)28(wy)-420(n)1(icz)-1(ym)-420(p)-27(otur)1(b)-28(o)28(w)28(a\\242)-1(,)-419(to)-420(si\\246)-420(tak)]TJ 0 -13.549 Td[(dob)1(rze)-334(w)28(e)-334(ws)-1(i)-333(dzieje.)]TJ 27.879 -13.55 Td[({)-333(Odp)1(isz)-1(\\241)-333(m)-1(i)-333(gr)1(on)28(t,)-333(to)-333(s)-1(i\\246)-333(k\\252op)-28(ota\\252)-333(b)-27(\\246)-1(d)1(\\246)-1(.)]TJ 0 -13.549 Td[(Zac)-1(z\\246li)-333(s)-1(i\\246)-333(o)-334(to)-333(mo)-28(c)-1(n)1(o)-333(s)-1(p)1(rz)-1(ecz)-1(a\\242,)-333(a\\273)-334(wtr\\241ci\\252)-334(si\\246)-334(An)28(t)1(e)-1(k:)]TJ 0 -13.549 Td[({)-346(Ni)1(e)-346(m)-1(a)-345(c)-1(o,)-345(sz)-1(k)28(o\\252a)-345(w)-346(Lip)-27(c)-1(ac)28(h)-346(p)-27(otr)1(z)-1(ebn)1(a,)-346(j)1(e)-1(n)1(o)-346(n)1(a)-346(tak)56(\\241)-346(n)1(ac)-1(zelnik)28(o)28(w)28(\\241)-346(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(o)27(win)1(no)-333(si\\246)-334(uc)28(h)28(w)27(al)1(a\\242)-334(ani)-333(gr)1(os)-1(ik)56(a.)]TJ 27.879 -13.549 Td[(P)28(op)1(ar\\252)-333(go)-334(Ro)-28(c)28(ho,)-333(s)-1(t)1(ras)-1(z\\241c)-334(ic)28(h)-333(a)-333(p)-28(o)-28(d)1(ma)27(wia)-55(j\\241c)-334(d)1(o)-334(op)-27(oru)1(.)]TJ 0 -13.55 Td[({)-352(Uc)27(h)28(w)28(alicie)-353(p)-27(o)-353(z\\252)-1(ot)1(\\363)27(w)28(c)-1(e,)-352(a)-353(p)-27(otem)-353(k)56(a\\273)-1(\\241)-352(w)27(am)-353(d)1(o)-28(da\\242)-353(p)-27(o)-352(rub)1(lu.)1(..)-352(A)-353(j)1(ak)-353(to)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-415(z)-417(u)1(c)27(h)28(w)28(a\\252\\241)-416(na)-415(dom)-416(la)-415(s)-1(\\241d)1(u,)-415(c)-1(o?)-416(Dob)1(rze)-417(si\\246)-416(p)-27(o)-28(dp)1(a\\261)-1(li)-415(z)-1(a)-415(w)27(asz)-1(e)-416(p)1(ie)-1(n)1(i\\241d)1(z)-1(e.)]TJ 0 -13.549 Td[(Niez)-1(gor)1(s)-1(ze)-334(k)56(a\\252dun)29(y)-333(im)-334(p)-27(oros\\252y!)]TJ 27.879 -13.549 Td[({)-293(Ju)1(\\273)-294(j)1(a)-293(w)-293(t)28(ym,)-293(ab)28(y)-292(gromada)-293(n)1(ie)-294(u)1(c)27(h)28(w)28(ali\\252a)-293({)-292(s)-1(ze)-1(p)1(n\\241\\252)-293(Gr)1(z)-1(ela)-293(p)1(rzys)-1(i)1(ada)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-279(do)-278(Ro)-28(c)28(ha,)-278(kt\\363r)1(e)-1(n)-278(go)-278(wz)-1(ion)-277(na)-278(s)-1(tr)1(on\\246)-279(i)-278(d)1(a)-56(j)1(\\241c)-279(jak)28(o)28(w)28(e)-1(\\261)-279(p)1(ism)-1(a)-278(i)-278(ksi\\241\\273)-1(ecz)-1(ki)-278(cos)-1(i)1(k)]TJ 0 -13.549 Td[(z)-334(cic)27(h)1(a)-334(i)-333(w)28(a\\273)-1(n)1(ie)-334(n)1(aucz)-1(a\\252.)]TJ 27.879 -13.55 Td[(T)83(amc)-1(i)-400(za\\261)-401(p)-27(ogadyw)28(ali)-400(jes)-1(zcz)-1(e)-401(o)-400(t)28(ym)-401(i)-400(o)28(wym,)-401(j)1(e)-1(n)1(o)-400(c)-1(o)-400(jak)28(o\\261)-401(ospal)1(e)-401(i)-400(b)-28(ez)]TJ -27.879 -13.549 Td[(wielkiej)-490(c)27(h)1(\\246)-1(ci,)-490(n)1(a)28(w)27(et)-490(Mateusz)-491(b)28(y)1(\\252)-491(d)1(z)-1(i)1(s)-1(ia)-490(sm)27(u)1(tn)28(y)84(,)-490(m)-1(a\\252o)-490(si\\246)-490(o)-28(dzyw)28(a\\252)-1(,)-489(a)-490(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(bacznie)-334(c)28(ho)-28(d)1(z)-1(i)1(\\252)-334(o)-28(cz)-1(ami)-333(za)-334(An)28(t)1(kiem)-1(.)]TJ 27.879 -13.549 Td[(Mi)1(e)-1(li)-447(s)-1(i)1(\\246)-448(ju)1(\\273)-449(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(i)1(\\242)-1(,)-447(b)-28(o)-27(\\242)-448(trza)-448(b)28(y\\252o)-447(w)-1(r)1(az)-448(z)-1(e)-448(d)1(niem)-448(d\\271wign\\241\\242)-448(si\\246)-448(do)]TJ -27.879 -13.549 Td[(rob)-27(ot)28(y)83(,)-356(kiej)-356(pr)1(z)-1(yl)1(e)-1(cia\\252)-357(k)28(o)28(w)27(al)-356(sk)55(ar)1(\\273)-1(\\241c,)-357(\\273e)-357(dop)1(ie)-1(r)1(o)-357(p)1(rzyjec)27(ha\\252)-356(z)-1(e)-357(d)1(w)27(or)1(a,)-357(i)-356(kl\\241\\252)-357(n)1(a)]TJ 0 -13.55 Td[(wie\\261)-334(i)-333(na)-333(ws)-1(zys)-1(tk)1(ic)27(h)1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(to)-333(w)27(as)-333(z)-1(n)1(o)27(wu)-333(u)1(k)55(\\241si\\252o?)-333({)-334(sp)28(yta\\252a)-333(Hank)56(a)-333(w)-1(y)1(z)-1(iera)-55(j\\241c)-334(ok)1(nem)-1(.)]TJ\nET\nendstream\nendobj\n2060 0 obj <<\n/Type /Page\n/Contents 2061 0 R\n/Resources 2059 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2059 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2064 0 obj <<\n/Length 9027      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(646)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-250(A)-249(c)-1(o?)-250(wst)27(y)1(d)-250(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242,)-250(ale)-250(tr)1(\\241b)28(y)-250(s\\241)-250(n)1(as)-1(ze)-251(c)28(h\\252op)28(y)84(,)-250(i)-249(t)28(yla!)-249(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-250(z)-250(ni)1(m)-1(i)]TJ -27.879 -13.549 Td[(jak)-392(z)-393(l)1(ud)1(\\271)-1(mi,)-392(jak)-392(z)-393(gosp)-28(o)-27(darzami,)-392(a)-393(te)-392(kiej)-392(pastuc)27(h)29(y)-393(o)-27(d)-392(g\\246)-1(si!)-392(Ju\\273)-392(s)-1(i\\246)-392(ugo)-28(d)1(z)-1(il)1(i)]TJ 0 -13.549 Td[(z)-426(dzie)-1(d)1(z)-1(i)1(c)-1(em)-1(,)-425(ju)1(\\273)-427(wsz)-1(y)1(s)-1(cy)-426(b)28(yl)1(i)-426(za)-426(jedn)28(y)1(m)-1(,)-425(a)-426(kiej)-426(p)1(rzys)-1(z\\252o)-426(si\\246)-426(p)-28(o)-28(d)1(pi)1(s)-1(yw)28(a\\242)-1(,)-425(to)]TJ 0 -13.549 Td[(jeden)-341(d)1(rap)1(ie)-342(si\\246)-341(p)-28(o)-341(\\252b)1(ie)-342(i)-341(mru)1(c)-1(zy:)-341({)-341(a)-341(j)1(a)-341(w)-1(i)1(e)-1(m!)-341(dr)1(ugi)-341(p)-27(o)28(wie)-1(d)1(a:)-341(bab)29(y)-341(s)-1(i)1(\\246)-342(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(p)-27(oredz\\246)-1(;)-486(za\\261)-487(tr)1(z)-1(ec)-1(i)-485(z)-1(acz)-1(y)1(na)-486(sk)55(am\\252a\\242)-1(,)-485(ab)28(yc)27(h)-485(m)27(u)-485(jes)-1(zc)-1(ze)-487(d)1(o\\252o\\273)-1(y\\242)-486(t\\246)-486(przyleg\\252\\241)]TJ 0 -13.55 Td[(\\252\\241c)-1(zk)28(\\246.)-324(I)-324(zr\\363b)-323(c)-1(o)-324(z)-324(taki)1(m)-1(i.)-323(Dz)-1(i)1(e)-1(d)1(z)-1(ic)-324(tak)-323(s)-1(i\\246)-324(zagniew)27(a\\252,)-323(\\273)-1(e)-324(ani)-323(ju)1(\\273)-325(c)28(hce)-325(s\\252uc)28(ha\\242)-324(o)]TJ 0 -13.549 Td[(zgo)-28(dzie,)-344(a)-344(na)28(w)27(et)-344(pr)1(z)-1(yk)56(aza\\252)-344(nie)-344(dop)1(usz)-1(cz)-1(a\\242)-344(lip)-27(e)-1(c)28(kiego)-345(b)29(yd\\252a)-344(n)1(a)-345(l)1(e)-1(\\261ne)-344(pa\\261nik)1(i,)-344(a)]TJ 0 -13.549 Td[(kto)-333(wp)-28(\\246dzi,)-333(f)1(an)28(to)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(St)1(rw)27(o\\273yli)-305(s)-1(i\\246)-306(t\\241)-306(ni)1(e)-1(sp)-28(o)-27(dzian\\241)-306(n)1(o)28(w)-1(i)1(n\\241)-306(kln)1(\\241c)-307(win)1(n)28(yc)28(h)-306(a)-306(sw)27(arz\\241c)-307(si\\246)-306(m)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(sob\\241)-333(c)-1(or)1(az)-334(z)-1(a)28(wz)-1(i)1(\\246)-1(ciej,)-333(gdy)-333(Mat)1(e)-1(u)1(s)-1(z)-334(ozw)27(a\\252)-333(si\\246)-334(sm)27(ut)1(nie:)]TJ 27.879 -13.549 Td[({)-358(Wszy\\242)-1(k)28(o)-358(b)-27(ez)-359(to,)-357(c)-1(o)-357(nar\\363)-27(d)-358(p)-27(ob\\252\\241k)56(an)28(y)-357(i)-358(z)-1(g\\252u)1(pia\\252y)-357(kiej)-358(b)1(aran)28(y)84(,)-358(a)-358(n)1(ie)-358(m)-1(a)]TJ -27.879 -13.55 Td[(go)-333(k)28(om)27(u)-333(p)1(rzywie)-1(\\261\\242)-334(do)-333(rozum)28(u!)]TJ 27.879 -13.549 Td[({)-333(Ma\\252o)-333(to)-334(j)1(e)-1(sz)-1(cze)-334(Mic)28(ha\\252)-333(s)-1(i\\246)-333(nat\\252umacz)-1(y)-333(k)56(a\\273)-1(d)1(e)-1(m)28(u?)]TJ 0 -13.549 Td[({)-353(C)-1(o)-353(tam)-353(Mic)27(h)1(a\\252!)-353(Z)-1(a)-353(sw)27(oim)-353(pr)1(o\\014tem)-354(gani)1(a)-354(i)-353(z)-354(d)1(w)27(or)1(e)-1(m)-353(trzym)-1(a,)-353(to)-353(ju)1(\\261)-1(ci,)]TJ -27.879 -13.549 Td[(co)-334(m)28(u)-333(nar)1(\\363)-28(d)-333(ni)1(e)-334(z)-1(a)28(wierz)-1(a.)-333(S)1(\\252uc)27(h)1(a)-56(j)1(\\241,)-333(ale)-334(za)-334(n)1(im)-334(n)1(ie)-334(p)-27(\\363)-28(d\\241.)1(..)]TJ 27.879 -13.549 Td[(P)28(or)1(w)27(a\\252)-419(si\\246)-419(k)28(o)28(w)27(al,)-418(gor\\241co)-419(pr)1(z)-1(edsta)28(w)-1(i)1(a)-56(j\\241c,)-419(j)1(ak)28(o)-419(t)28(ylk)28(o)-418(c)27(ho)-27(dzi)-419(m)27(u)-418(o)-419(d)1(obro)]TJ -27.879 -13.55 Td[(ws)-1(i)1(,)-334(j)1(ak)28(o)-333(jes)-1(zc)-1(ze)-334(dok)1(\\252)-1(ad)1(a)-333(s)-1(w)28(o)-56(j)1(e)-1(go,)-333(b)28(yc)28(h)-333(jeno)-333(t\\246)-334(zgo)-28(d\\246)-333(przepro)28(w)28(adzi\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(\\233e)-1(b)28(y)1(\\261)-334(w)-334(k)28(o\\261c)-1(i)1(e)-1(le)-333(przysi\\246)-1(ga\\252,)-333(a)-333(te)-1(\\273)-333(c)-1(i)-333(n)1(ie)-334(u)28(wierz\\241)-334(mru)1(kn\\241\\252)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(No,)-333(to)-334(n)1(iec)27(h)-333(kto)-333(dr)1(ugi)-333(sprob)1(uj)1(e)-1(,)-333(ob)1(ac)-1(zym)27(y)84(,)-333(c)-1(zy)-333(p)-28(or)1(e)-1(d)1(z)-1(i!)-333({)-333(w)28(o\\252)-1(a\\252.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(kto)-333(d)1(rugi)-333(m)28(usi)-334(si\\246)-334(zabr)1(a\\242)-334(do)-333(tego.)]TJ 0 -13.549 Td[({)-333(Ale)-334(kto?)-333(Mo\\273e)-334(ksi\\241dz)-333(alb)-28(o)-333(m\\252ynar)1(z)-1(?)-333({)-334(r)1(oz)-1(lega\\252y)-333(s)-1(i\\246)-333(s)-1(zydl)1(iw)27(e)-333(g\\252os)-1(y)84(.)]TJ 0 -13.55 Td[({)-341(Kto?)-342(An)29(te)-1(k)-341(Boryn)1(a!)-342(A)-341(j)1(akb)28(y)-341(i)-341(on)-341(nie)-342(p)1(rzywi\\363)-28(d)1(\\252)-342(ws)-1(i)-341(d)1(o)-342(r)1(oz)-1(u)1(m)27(u,)-341(to)-341(ju)1(\\273)]TJ -27.879 -13.549 Td[(trza)-333(w)-1(y)1(pi\\241\\242)-333(plec)-1(y)-333(n)1(a)-334(ca\\252y)-333(jen)28(te)-1(r)1(e)-1(s...)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(ja?)-333(Kt\\363\\273)-334(to)-333(me)-334(p)-28(os\\252uc)28(ha,)-333(c)-1(o?)-333({)-333(j\\241k)56(a\\252)-334(zmie)-1(sz)-1(an)29(y)83(.)]TJ 0 -13.549 Td[({)-333(Masz)-334(rozum,)-333(pierwsz)-1(y\\261)-334(t)1(e)-1(raz)-333(w)27(e)-334(wsi,)-333(to)-333(c)-1(i\\246)-333(w)-1(szys)-1(tk)1(ie)-334(p)-27(os)-1(\\252u)1(c)27(ha)-55(j\\241.)]TJ 0 -13.549 Td[({)-408(Pr)1(a)27(wd)1(a!)-408(Ju\\261c)-1(i!)-408(T)28(y)-408(jeden!)-408(M)1(y)-408(p)-28(\\363)-55(jd)1(z)-1(iem)-409(za)-408(tob\\241!)-408({)-408(m\\363)27(wil)1(i)-409(skw)28(apli)1(w)-1(i)1(e)-1(,)]TJ -27.879 -13.55 Td[(ale)-282(k)28(o)28(w)28(alo)28(wi)-282(b)29(y\\252o)-282(t)1(o)-282(cos)-1(ik)-281(n)1(ie)-282(n)1(a)-282(r)1(\\246)-1(k)28(\\246,)-281(b)-28(o)-281(zakr\\246c)-1(i\\252)-281(si\\246)-282(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-281(sku)1(ba\\252)-281(w)27(\\241sy)]TJ 0 -13.549 Td[(i)-333(z)-1(a\\261mia\\252)-334(si\\246)-334(zjad)1(liwie,)-333(s)-1(k)28(or)1(o)-334(An)28(t)1(e)-1(k)-333(p)-27(o)27(wiedzia\\252:)]TJ 27.879 -13.549 Td[({)-331(P)1(rze)-1(ciek)-331(ni)1(e)-331(\\261)-1(wi\\246c)-1(i)-330(garnk)1(i)-331(lepi)1(\\241,)-331(mog\\246)-331(i)-331(j)1(a)-331(p)-27(oprob)-27(o)28(w)27(a\\242,)-331(p)-27(oredzim)28(y)-331(se)-332(o)]TJ -27.879 -13.549 Td[(t)28(ym)-334(k)1(t\\363rego)-334(d)1(nia.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246li)-363(s)-1(i\\246)-363(rozc)27(ho)-27(dz)-1(i)1(\\242)-1(,)-363(ale)-363(jes)-1(zc)-1(ze)-364(k)56(a\\273)-1(d)1(e)-1(n)-363(z)-363(os)-1(ob)1(na)-363(bra\\252)-363(go)-363(na)-363(s)-1(tr)1(on\\246)-364(n)1(a-)]TJ -27.879 -13.55 Td[(ma)27(wia\\242,)-333(pr)1(z)-1(y)28(ob)1(ie)-1(cuj)1(\\241c)-334(p)-27(\\363)-56(j)1(\\261)-1(\\242)-334(za)-333(nim,)-333(z)-1(a\\261)-333(K\\252\\241b)-333(m)27(u)-333(r)1(z)-1(ek\\252:)]TJ 27.879 -13.549 Td[({)-294(Nad)-293(nar)1(o)-28(dem)-294(z)-1(a)28(wdy)-293(m)27(u)1(s)-1(i)-293(kto\\261)-294(g\\363ro)28(w)28(a\\242)-1(,)-293(c)-1(o)-294(ma)-294(r)1(oz)-1(u)1(m)-294(i)-294(mo)-28(c,)-294(i)-293(p)-28(o)-28(czc)-1(iw)28(e)]TJ -27.879 -13.549 Td[(bacze)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(oredzi,)-333(jak)-333(p)-27(otrza,)-333(i)-333(kij)1(e)-1(m)-334(ziob)1(ra)-333(z)-1(mac)-1(a\\242!)-333({)-333(z)-1(a\\261m)-1(ia\\252)-333(si\\246)-334(Mateusz.)]TJ 0 -13.549 Td[(Roz)-1(esz)-1(li)-290(si\\246,)-290(os)-1(ta\\252)-290(jeno)-290(p)-27(o)-28(d)-290(ok)1(nem)-291(An)28(tek)-290(z)-291(k)28(o)28(w)28(ale)-1(m,)-290(b)-27(o)-290(R)-1(o)-27(c)27(ho)-290(kl)1(\\246)-1(cz)-1(a\\252)-290(na)]TJ -27.879 -13.549 Td[(gank)1(u)-333(z)-1(atop)1(ion)28(y)-333(w)-333(pacie)-1(r)1(z)-1(ac)28(h.)]TJ 27.879 -13.55 Td[(D\\252ugo)-282(delib)-27(ero)28(w)27(al)1(i)-283(w)-282(g\\252\\246)-1(b)-27(okiej)-282(c)-1(i)1(c)27(ho\\261ci.)-282(\\233)-1(e)-282(s)-1(\\252yc)28(ha\\242)-283(b)28(y)1(\\252)-1(o)-282(j)1(e)-1(n)1(o)-283(Han)1(k)28(\\246)-283(krz\\241-)]TJ -27.879 -13.549 Td[(ta)-55(j\\241c\\241)-366(si\\246)-366(p)-28(o)-365(izbie;)-366(strzep)28(yw)28(a\\252)-1(a)-365(p)-27(o)-1(\\261cie)-1(l)1(e)-1(,)-365(ob\\252\\363)-28(cz)-1(\\241c)-366(w)-365(c)-1(zyste)-366(p)-28(osz)-1(ewki,)-365(to)-366(m)28(y\\252a)]TJ 0 -13.549 Td[(si\\246)-348(d\\252u)1(go)-348(j)1(akb)28(y)-347(na)-347(j)1(akie)-348(wielkie)-347(\\261)-1(wi\\246to,)-347(a)-348(p)-27(otem)-348(rozc)-1(ze)-1(suj)1(\\241c)-348(w\\252os)-1(y)-347(p)-27(o)-28(d)-347(okn)1(e)-1(m)]TJ 0 -13.549 Td[(wyzie)-1(r)1(a\\252a)-458(na)-458(n)1(ic)27(h)-457(c)-1(or)1(az)-459(n)1(ie)-1(cierpl)1(iwie)-1(j)1(,)-458(p)1(ilni)1(e)-459(n)1(adsta)28(w)-1(i)1(a)-56(j)1(\\241c)-459(u)1(s)-1(z\\363)27(w,)-457(gdy)-458(k)28(o)28(w)28(al)]TJ 0 -13.549 Td[(zac)-1(z\\241\\252)-353(m)27(u)-352(cic)27(h)1(o)-353(o)-28(d)1(radza\\242)-1(,)-352(ab)28(y)-352(s)-1(p)1(ra)28(wy)-353(p)-27(oniec)27(h)1(a\\252,)-353(gd)1(y\\273)-353(z)-354(c)28(h\\252op)1(am)-1(i)-352(nie)-353(tr)1(a\\014)-353(d)1(o)]TJ 0 -13.55 Td[(\\252adu)1(,)-333(a)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-334(j)1(e)-1(st)-333(m)27(u)-333(p)1(rze)-1(ciwn)28(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(p)1(ra)28(wda!)-333(p)-27(or\\246c)-1(zy\\252)-334(za)-333(nim)-333(w)-334(s\\241dzie)-1(!)-333({)-333(rzuci\\252a)-333(prze)-1(z)-333(okno.)]TJ\nET\nendstream\nendobj\n2063 0 obj <<\n/Type /Page\n/Contents 2064 0 R\n/Resources 2062 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2062 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2067 0 obj <<\n/Length 2504      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(647)]TJ -330.353 -35.866 Td[({)-333(Kiej)-333(lepiej)-333(wie)-1(cie,)-333(to)-334(m\\363)28(wm)27(y)-333(o)-333(c)-1(zym)-334(d)1(rugi)1(m)-1(..)1(.)-333({)-334(z\\252y)-333(b)28(y\\252)-333(jak)-333(pi)1(e)-1(s.)]TJ 0 -13.549 Td[(An)28(tek)-333(p)-28(o)28(wsta\\252)-334(p)1(rz)-1(eci\\241)-28(ga)-56(j)1(\\241c)-334(si\\246)-334(se)-1(n)1(nie.)]TJ 0 -13.549 Td[({)-323(T)83(o)-323(c)-1(i)-323(j)1(e)-1(n)1(o)-324(r)1(z)-1(ekn)1(\\246)-324(na)-323(ostatku)1(:)-323(pu\\261c)-1(i)1(li)-323(c)-1(i)1(\\246)-324(jeno)-323(d)1(o)-324(spr)1(a)28(w)-1(y)84(,)-323(pr)1(a)27(wd)1(a?)-324(zwi\\241-)]TJ -27.879 -13.549 Td[(\\273e)-1(sz)-334(s)-1(i)1(\\246)-334(w)-334(cud)1(z)-1(e)-334(j)1(e)-1(n)29(te)-1(r)1(e)-1(sa,)-333(a)-334(wies)-1(z)-333(to,)-333(jak)-333(ci\\246)-334(z)-1(as\\241dz\\241?...)]TJ 27.879 -13.549 Td[(An)28(tek)-384(p)1(rz)-1(y)1(s)-1(iad)1(\\252)-384(z)-385(p)-27(o)28(w)-1(r)1(ote)-1(m)-384(i)-384(tak)-383(s)-1(i\\246)-384(sro)-28(d)1(z)-1(e)-384(z)-1(ame)-1(d)1(yto)28(w)27(a\\252,)-383(\\273)-1(e)-384(k)28(o)27(w)28(al)-384(n)1(ie)]TJ -27.879 -13.55 Td[(do)-27(c)-1(ze)-1(k)56(a)28(ws)-1(zy)-333(s)-1(i\\246)-333(o)-28(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(d)1(o)-333(dom)27(u)1(.)]TJ 27.879 -13.549 Td[(Hank)56(a)-257(k)1(r\\246)-1(ci\\252a)-257(si\\246)-257(k)28(ole)-257(okna,)-256(raz)-257(p)-28(o)-257(r)1(az)-258(wygl)1(\\241da)-55(j\\241c)-257(na)-257(n)1(ie)-1(go,)-256(nie)-257(d)1(os)-1(\\252ysz)-1(a\\252,)]TJ -27.879 -13.549 Td[(\\273e)-334(oz)-1(w)28(a\\252a)-334(si\\246)-334(w)-333(k)28(o\\253cu)-333(l\\246kliwie)-333(a)-334(p)1(rosz)-1(\\241co:)]TJ 27.879 -13.549 Td[({)-333(P)28(\\363)-28(d)1(z)-1(i,)-333(Jan)29(to\\261)-1(,)-333(p)-27(ora)-333(s)-1(p)1(a\\242)-1(..)1(.)-333(Utrud)1(z)-1(i)1(\\252e)-1(\\261)-334(si\\246)-334(d)1(z)-1(isia)-333(ni)1(e)-1(ma\\252o...)]TJ 0 -13.549 Td[({)-333(Id\\246,)-334(Han)29(u\\261,)-333(id\\246...)-333({)-333(p)-28(o)-27(dnosi\\252)-333(s)-1(i)1(\\246)-334(o)-28(ci\\246)-1(\\273ale.)]TJ 0 -13.549 Td[(J\\246\\252a)-334(si\\246)-334(p)1(r\\246dk)28(o)-333(roz)-1(d)1(z)-1(i)1(e)-1(w)28(a\\242)-334(sz)-1(ep)-28(c\\241c)-334(p)1(ac)-1(ierz)-334(r)1(oz)-1(tr)1(z)-1(\\246s)-1(i)1(on)28(ymi)-333(w)27(argami.)]TJ 0 -13.55 Td[({)-327(A)-328(jak)-327(me)-328(z)-1(as\\241dz\\241)-327(na)-328(S)1(yb)-27(e)-1(r)1(i\\246)-1(,)-327(to)-327(c)-1(o?)-327({)-328(m)28(y\\261)-1(l)1(a\\252)-328(fr)1(as)-1(ob)1(liwie,)-328(w)28(c)27(h)1(o)-28(dz\\241c)-328(do)]TJ -27.879 -13.549 Td[(izb)28(y)84(.)]TJ\nET\nendstream\nendobj\n2066 0 obj <<\n/Type /Page\n/Contents 2067 0 R\n/Resources 2065 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2065 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2070 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(648)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(40.)]TJ\nET\nendstream\nendobj\n2069 0 obj <<\n/Type /Page\n/Contents 2070 0 R\n/Resources 2068 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2055 0 R\n>> endobj\n2068 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2073 0 obj <<\n/Length 6776      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(41)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-429(Pi)1(e)-1(tr)1(e)-1(k,)-429(p)1(rzyni)1(e)-1(\\261)-429(no)-429(d)1(re)-1(w)28(ek)-429({)-429(krzykn)1(\\246)-1(\\252a)-429(s)-1(p)1(rze)-1(d)-428(dom)28(u)-429(Hank)56(a,)-429(r)1(oz)-1(mam\\252)-1(an)1(a)]TJ 0 -13.549 Td[(b)28(y\\252a)-333(ca\\252)-1(k)1(ie)-1(m)-333(i)-333(om)-1(\\241cz)-1(on)1(a)-334(p)1(rzy)-333(w)-1(y)1(rabi)1(aniu)-333(c)28(hleba.)]TJ 27.879 -13.549 Td[(W)-380(szaba\\261niku)-379(h)28(u)1(c)-1(za\\252)-380(ju)1(\\273)-380(t\\246)-1(gi)-379(ogie)-1(\\253)1(,)-380(p)1(rze)-1(gar)1(nia\\252a)-380(go)-380(r)1(az)-380(p)-28(o)-380(r)1(az)-380(i)-380(lec)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(obt)1(ac)-1(za\\242)-369(b)-28(o)-28(c)28(hn)28(y)-368(i)-369(wyn)1(os)-1(i)1(\\242)-369(je)-369(w)-369(ganek,)-368(na)-368(de)-1(sk)28(\\246)-369(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-369(wysta)27(wion)1(\\241)-369(w)-369(s\\252o\\253-)]TJ 0 -13.55 Td[(cu,)-353(b)28(y)1(c)27(h)-352(pr\\246dze)-1(j)-352(ros\\252y)83(.)-352(Z)-1(wij)1(a\\252a)-353(s)-1(i)1(\\246)-354(siarcz)-1(y)1(\\261)-1(cie)-1(,)-352(gdy\\273)-353(cias)-1(to)-352(pra)28(wie)-353(ju)1(\\273)-354(ki)1(pia\\252o)-353(z)]TJ 0 -13.549 Td[(wielkiej)-333(dzie\\273)-1(y)84(,)-333(przy)28(okry)1(te)-1(j)-333(p)1(ierzyn\\241.)]TJ 27.879 -13.549 Td[({)-333(J\\363z)-1(k)56(a,)-333(dor)1(z)-1(u)1(\\242)-334(do)-333(pi)1(e)-1(ca,)-333(b)-28(o)-333(trzon)-333(j)1(e)-1(sz)-1(cz)-1(ek)-333(c)-1(zarn)1(ia)28(w)-1(y)1(!)]TJ 0 -13.549 Td[(Ale)-436(J\\363zki)-435(nie)-436(b)29(y\\252o,)-436(a)-435(Pietrek)-435(te)-1(\\273)-436(si\\246)-436(ni)1(e)-436(kw)27(ap)1(i\\252)-436(z)-436(p)-27(os\\252)-1(u)1(c)27(h)1(e)-1(m,)-435(nak\\252ad)1(a\\252)]TJ -27.879 -13.549 Td[(w)-378(p)-28(o)-27(dw)28(\\363rzu)-378(gn)1(\\363)-56(j,)-377(oklepu)1(j\\241c)-378(c)-1(zub)1(at)27(y)-377(w)27(\\363z,)-378(b)28(y)1(c)27(h)-378(si\\246)-378(ni)1(e)-379(roztrz\\246s)-1(a\\252)-378(p)-27(o)-378(dr)1(o)-28(dze)-1(,)-377(i)]TJ 0 -13.549 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-327(p)-27(oredza\\252)-326(ze)-327(\\261lep)28(ym)-326(dziad)1(e)-1(m,)-326(kt)1(\\363re)-1(n)-325(p)-27(o)-28(d)-325(s)-1(to)-28(d)1(o\\252\\241)-326(wykr\\246ca\\252)-326(p)-28(o)28(wr\\363s\\252a.)]TJ 27.879 -13.55 Td[(P)28(op)-27(o\\252ud)1(nio)28(w)28(e)-276(s)-1(\\252o\\253ce)-276(tak)-275(jes)-1(zc)-1(ze)-276(pr)1(z)-1(yp)1(iek)55(a\\252o,)-275(\\273e)-276(\\261)-1(cian)28(y)-275(p)-28(op)1(usz)-1(cz)-1(a\\252y)-275(\\273ywi-)]TJ -27.879 -13.549 Td[(c\\241,)-255(par)1(z)-1(y\\252a)-255(ziem)-1(i)1(a)-255(i)-255(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(e)-255(pr)1(a\\273)-1(y\\252o)-255(k)1(ie)-1(j)-254(\\273ywym)-255(ogniem,)-255(\\273)-1(e)-255(j)1(u\\273)-255(ru)1(c)27(ha\\242)-255(si\\246)-255(b)28(y\\252o)]TJ 0 -13.549 Td[(ci\\246)-1(\\273k)28(o.)-336(Muc)28(h)28(y)-336(jeno)-336(kr\\246c)-1(i)1(\\252)-1(y)-336(si\\246)-337(z)-337(b)1(rz)-1(\\246kiem)-337(n)1(ad)-336(w)27(oze)-1(m)-337(i)-336(k)28(on)1(ie)-337(dziw)-337(n)1(ie)-337(p)-27(orw)28(a\\252y)]TJ 0 -13.549 Td[(p)-27(os)-1(tr)1(onk)28(\\363)28(w)-334(i)-333(n)1(\\363g)-334(n)1(ie)-334(p)-27(o\\252am)-1(a\\252y)-333(sz)-1(ar)1(pi\\241c)-334(si\\246)-334(i)-333(ogan)1(ia)-56(j)1(\\241c)-334(o)-28(d)-333(u)1(k)56(\\241s)-1(ze)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(Nad)-483(p)-27(o)-28(dw)28(\\363rze)-1(m)-484(wisia\\252a)-484(se)-1(n)1(na,)-483(pr)1(z)-1(ygn)1(iata)-55(j\\241ca)-484(spiek)56(a,)-484(p)1(rze)-1(j\\246ta)-483(os)-1(tr)1(ym)]TJ -27.879 -13.55 Td[(zapac)27(h)1(e)-1(m)-441(gn)1(o)-56(ju)1(,)-441(\\273e)-441(na)28(w)27(et)-441(p)1(taki)-441(w)-441(sadzie)-441(p)-28(o)-27(c)-1(ic)28(h\\252y)84(,)-441(ku)1(ry)-441(l)1(e)-1(\\273a\\252y)-441(p)-27(o)-28(d)-440(p\\252otami)]TJ 0 -13.549 Td[(kieb)28(y)-384(n)1(ie)-1(\\273yw)28(e)-1(,)-384(a)-384(pr)1(os)-1(iak)1(i)-384(z)-385(p)-27(o)-56(j)1(\\246)-1(kiw)28(ani)1(e)-1(m)-384(rozw)27(ala\\252y)-384(si\\246)-385(w)-384(b\\252o)-28(cie)-385(p)-27(o)-28(d)-384(stu)1(dni)1(\\241,)]TJ 0 -13.549 Td[(gdy)-333(n)1(araz)-334(d)1(z)-1(iad)-332(z)-1(acz)-1(\\241\\252)-333(s)-1(r)1(ogo)-334(k)1(ic)27(h)1(a\\242)-1(,)-333(b)-27(o)27(wiem)-334(z)-334(ob)-27(ory)-333(za)28(w)-1(i)1(a\\252o)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(barze)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(zdr)1(o)27(wie)-333(w)27(ama,)-333(dziadk)1(u!)]TJ 0 -13.549 Td[({)-372(Nie)-373(z)-372(try)1(bul)1(arza)-373(wieje,)-372(ni)1(e)-1(,)-372(a)-372(c)27(h)1(o)-28(cie)-1(m)-372(i)-372(tego)-372(z)-1(wycz)-1(a)-55(jn)28(y)84(,)-372(ale)-372(z)-1(a)28(wie)-1(r)1(c)-1(i)1(\\252)-1(o)]TJ -27.879 -13.55 Td[(w)-334(n)1(os)-1(i)1(e)-334(gorze)-1(j)-333(tab)1(aki.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(c)-1(ze)-1(go)-333(zw)-1(ycza)-56(jn)29(y)83(,)-333(to)-333(m)27(u)-333(smakuj)1(e)-1(!)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(,)-333(c\\363\\273)-334(to,)-333(\\252a)-56(j)1(no)-333(jeno)-333(wyw)28(\\241c)27(h)28(u)1(j\\246)-334(p)-27(o)-333(\\261)-1(wiec)-1(ie!..)1(.)]TJ 0 -13.549 Td[({)-435(Rz)-1(ek\\252e)-1(m,)-435(b)-27(o)-436(mi)-435(s)-1(i\\246)-435(przyb)1(ac)-1(zy\\252o,)-435(c)-1(o)-435(tak)-435(mi)-435(p)-28(edzia\\252)-436(m\\363)-55(j)-435(dziad\\271k)56(a)-436(w)28(e)]TJ -27.879 -13.549 Td[(w)28(o)-56(jsku)1(,)-333(kie)-1(j)-332(m)-1(e)-334(p)1(rzy)-333(ucz)-1(eniu)-332(pierws)-1(zy)-333(raz)-334(spr)1(a\\252)-334(p)-27(o)-333(p)28(ysku..)1(.)]TJ 27.879 -13.55 Td[({)-333(I)-334(wzw)-1(y)1(c)-1(zai\\252e)-1(\\261)-333(s)-1(i\\246)-334(d)1(o)-333(te)-1(go,)-333(co?)-334(Hi!)-333(h)1(i!)-333(hi!)1(...)]TJ 0 -13.549 Td[({)-239(Hal)1(e)-1(,)-238(b)-28(oga\\242)-239(t)1(a,)-239(ki)1(e)-1(j)-238(ry)1(c)27(h\\252o)-238(s)-1(p)1(rzykrzy\\252a)-239(mi)-238(s)-1(i\\246)-239(t)1(ak)55(a)-238(nau)1(k)55(a,)-238(\\273e)-239(przycapi\\252em)]TJ -27.879 -13.549 Td[(\\261c)-1(ierw)28(\\246)-278(w)-278(jaki)1(m)-1(\\261)-278(k)56(\\241c)-1(i)1(e)-279(i)-277(tak)-277(m)27(u)-277(p)28(ysk)-278(wyr)1(yc)27(h)28(t)1(o)27(w)28(a\\252e)-1(m,)-278(j)1(a\\273)-1(e)-278(spu)1(c)27(hn)1(\\241\\252)-278(n)1(ib)28(y)-277(bani)1(a.)]TJ 0 -13.549 Td[(Ju)1(\\273)-334(m)-1(e)-333(p)-28(otem)-334(n)1(ie)-334(b)1(ija\\252..)1(.)]TJ 27.879 -13.549 Td[({)-333(D\\252ugo\\261)-334(to)-333(s\\252u\\273)-1(y)1(\\252?)]TJ 0 -13.55 Td[({)-475(A)-475(ca\\252e)-476(p)1(i\\246\\242)-476(rok)28(\\363)28(w!)-475(Ni)1(e)-476(b)28(y)1(\\252)-1(o)-475(si\\246)-475(c)-1(zym)-475(wyku)1(pi\\242,)-475(to)-475(i)-474(m)27(usia\\252em)-476(r)1(u\\273ie)]TJ -27.879 -13.549 Td[(d\\271wiga\\242.)-452(Jeno)-451(z)-1(r)1(az)-1(u)1(,)-452(p)-27(\\363kim)-451(b)28(y\\252)-452(g\\252u)1(pi,)-451(to)-451(p)-28(ot)28(yr)1(a\\252)-452(mn\\241,)-451(kto)-451(c)27(hcia\\252,)-451(i)-452(b)1(iedym)]TJ 0 -13.549 Td[(si\\246)-360(n)1(a)-56(j)1(ad\\252,)-359(ale)-359(k)56(am)-1(r)1(at)28(y)-359(m)-1(e)-359(nau)1(c)-1(zy\\252y)84(,)-359(\\273)-1(e)-359(jak)-358(c)-1(ze)-1(go)-359(b)1(rak)28(o)28(w)27(a\\252o,)-359(t)1(o\\261)-1(w)28(a)-359(z)-1(w)28(oro)28(w)27(al)1(i)]TJ 358.232 -29.888 Td[(649)]TJ\nET\nendstream\nendobj\n2072 0 obj <<\n/Type /Page\n/Contents 2073 0 R\n/Resources 2071 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2071 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2077 0 obj <<\n/Length 8388      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(650)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ab)-27(o)-482(da\\252a)-482(j)1(e)-1(d)1(na)-481(dzie)-1(u)1(c)27(h)1(a,)-482(s)-1(\\252u)1(\\273)-1(an)1(k)56(a,)-482(b)-27(om)-482(obiec)-1(a\\252)-482(si\\246)-482(z)-482(ni\\241)-481(o\\273)-1(eni\\242!)-482(A)-481(jak)-481(m)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-1(y)1(w)27(a\\252y)-333(o)-28(d)-333(k)56(artoszk)28(\\363)27(w,)-333(jak)-333(si\\246)-334(\\261mia\\252y)-333(z)-334(m)-1(o)-55(jej)-333(mo)27(wy)-333(i)-333(nasz)-1(ego)-333(pacie)-1(r)1(z)-1(a.)1(..)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(ogani)1(n)28(y)-333(z)-1(ap)-27(o)28(wie)-1(tr)1(z)-1(on)1(e)-1(,)-333(\\261m)-1(i)1(a\\252)-1(y)-333(si\\246)-334(z)-333(pacie)-1(r)1(z)-1(a.)]TJ 0 -13.549 Td[({)-333(T)83(om)-334(k)56(a\\273)-1(d)1(e)-1(m)28(u)-333(z)-334(osobn)1(a)-334(p)-27(omac)-1(a\\252)-333(\\273)-1(ebr)1(a)-334(i)-333(p)-27(oniec)27(h)1(a\\252y!)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(taki)1(\\261)-334(to)-333(m)-1(o)-27(c)-1(arz!)]TJ 0 -13.55 Td[({)-260(M)1(o)-28(c)-1(ar)1(z)-1(,)-259(ni)1(e)-260(m)-1(o)-28(carz;)-260(al)1(e)-260(trze)-1(m)-260(rad)1(\\246)-260(dam!)-260({)-259(pr)1(z)-1(ec)27(h)28(w)28(ala\\252)-260(si\\246)-260(z)-260(u\\261m)-1(i)1(e)-1(c)28(hem)-1(.)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\252)-1(e\\261)-334(to)-333(na)-333(w)28(o)-56(j)1(nie,)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Ja\\273)-1(e,)-333(pr)1(z)-1(ec)-1(iem)-334(z)-333(T)83(urk)56(ami)-333(w)27(o)-55(jo)28(w)27(a\\252.)-333(P)28(ok)28(or)1(z)-1(y)1(lim)-334(i)1(c)27(h)-333(do)-333(cna!)]TJ 0 -13.549 Td[({)-333(Pietrek,)-333(k)56(a)-56(j)1(\\273)-1(e)-334(t)1(o)-334(d)1(rze)-1(w)28(o?)-334({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252a)-333(zno)28(wu)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(A)-334(tam,)-333(k)56(a)-56(j)-333(b)29(y\\252o)-334(p)1(rz\\363)-28(dzi!)-333({)-333(o)-28(db)1(urk)1(n\\241\\252)-333(p)-28(o)-27(d)-333(nose)-1(m.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(gosp)-28(o)-27(dyn)1(i)-333(c)-1(i\\246)-333(w)27(o\\252a)-333({)-334(u)1(p)-28(omin)1(a\\252)-334(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241cy)-333(dz)-1(i)1(ad.)]TJ 0 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(w)27(o\\252a,)-333(a)-333(ju)1(\\261)-1(ci,)-333(mo\\273)-1(e)-334(j)1(e)-1(sz)-1(cze)-1(k)-333(statki)-333(m)27(y)1(\\252)-334(b)-27(\\246)-1(d)1(\\246)-1(!)]TJ 0 -13.549 Td[({)-333(G\\252uc)28(h)28(y\\261)-334(cz)-1(y)-333(co?)-334({)-333(wrzas)-1(n)1(\\246)-1(\\252a)-333(w)-1(y)1(biega)-56(j)1(\\241c)-334(pr)1(z)-1(ed)-333(dom.)]TJ 0 -13.549 Td[({)-333(W)-333(piec)-1(u)-333(p)1(ali\\252)-333(ni)1(e)-334(b)-28(\\246d\\246,)-333(nie)-333(do)-333(te)-1(gom)-333(s)-1(i)1(\\246)-334(go)-28(dzi\\252!)-333({)-333(o)-28(dkr)1(z)-1(y)1(kn\\241\\252.)]TJ 0 -13.549 Td[(Wyw)28(ar\\252a)-333(na)-333(ni)1(e)-1(go)-333(g\\246)-1(b)-27(\\246)-334(p)-27(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u.)]TJ 0 -13.549 Td[(Ale)-459(p)1(arob)-458(bar)1(dzo)-459(h)1(ardo)-458(o)-28(d)1(s)-1(zc)-1(ze)-1(k)1(iw)27(a\\252,)-458(ani)-458(m)27(y)1(\\261)-1(l\\241c)-458(p)-28(os\\252uc)27(h)1(a\\242)-1(,)-458(a)-458(kiej)-459(go)]TJ -27.879 -13.55 Td[(jak)1(im\\261)-334(s)-1(\\252o)28(w)28(e)-1(m)-334(b)1(arze)-1(j)-333(d)1(o)-56(j)1(e)-1(n)1(a,)-333(w)-1(r)1(az)-1(i\\252)-333(wid\\252y)-333(w)-333(gn\\363)-56(j)-332(i)-334(za)28(w)27(o\\252a\\252)-333(z)-1(e)-333(z)-1(\\252o\\261c)-1(i\\241:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(z)-334(Jagu)1(s)-1(i)1(\\241)-334(macie)-334(spra)28(w)28(\\246)-1(,)-333(ni)1(e)-334(wygoni)1(c)-1(ie)-333(m)-1(e)-334(k)1(rzykiem)-1(.)]TJ 0 -13.549 Td[({)-483(Obaczys)-1(z,)-483(c)-1(o)-483(ci)-483(z)-1(r)1(obi\\246!)-483(P)28(opami\\246tasz)-1(!)-483({)-483(grozi\\252a)-483(dotkn)1(i\\246ta)-484(d)1(o)-483(\\273)-1(yw)28(e)-1(go)]TJ -27.879 -13.549 Td[(i)-473(ju)1(\\273)-474(roze)-1(\\271lona)-473(tak)-473(z)-1(wij)1(a\\252a)-474(si\\246)-474(k)28(ole)-473(c)27(hl)1(e)-1(b)1(a,)-474(j)1(a\\273)-1(e)-474(t)1(uman)-473(m)-1(\\241k)1(i)-474(zap)-27(e)-1(\\252ni)1(\\252)-474(izb)-27(\\246)-474(i)]TJ 0 -13.549 Td[(bu)1(c)27(h)1(a\\252)-312(prze)-1(z)-312(okn)1(a.)-312(Mamrota\\252a)-312(jeno)-312(n)1(a)-312(z)-1(u)1(c)27(h)28(w)28(alca)-312(w)-1(y)1(nosz)-1(\\241c)-312(c)27(hl)1(e)-1(b)28(y)-311(w)-313(gan)1(e)-1(k)1(,)-312(to)]TJ 0 -13.55 Td[(dor)1(z)-1(u)1(c)-1(a)-55(j\\241c)-401(d)1(re)-1(w)28(ek)-401(do)-400(pieca)-401(alb)-27(o)-401(i)-400(w)-1(y)1(z)-1(iera)-55(j\\241c)-401(za)-401(dzie\\242)-1(mi.)-400(Str)1(udzona)-400(ju)1(\\273)-401(b)28(y\\252a)]TJ 0 -13.549 Td[(z)-452(pr)1(ac)-1(y)-451(i)-452(spieki,)-451(b)-28(o)-452(w)-452(i)1(z)-1(b)1(ie)-452(gor\\241c)-452(ja\\273e)-453(d)1(usi\\252,)-452(a)-451(w)-452(s)-1(ieni)1(ac)27(h,)-451(k)56(a)-56(j)-451(s)-1(i\\246)-452(b)1(uzo)27(w)28(a\\252o)]TJ 0 -13.549 Td[(w)-402(s)-1(zaba\\261ni)1(ku,)-401(te)-1(\\273)-402(ledwie)-402(o)-28(d)1(z)-1(ip)1(n\\241\\252,)-401(\\273)-1(e)-402(pr)1(z)-1(y)-402(t)28(y)1(m)-403(i)-401(m)27(u)1(c)27(h)28(y)84(,)-402(o)-28(d)-401(kt\\363r)1(yc)27(h)-401(roi\\252y)-401(s)-1(i\\246)]TJ 0 -13.549 Td[(\\261c)-1(ian)29(y)83(,)-445(b)1(rz)-1(\\246cz)-1(a\\252y)-445(ni)1(e)-1(u)1(s)-1(tan)1(nie)-445(i)-445(c)-1(i)1(\\246)-1(\\252y)-445(wielc)-1(e)-445(doku)1(c)-1(zliwie,)-445(to)-445(pr)1(a)27(wie)-445(z)-446(p)1(\\252ac)-1(ze)-1(m)]TJ 0 -13.549 Td[(ogani)1(a\\252a)-246(s)-1(i)1(\\246)-246(ga\\252)-1(\\246zi\\241)-246(i)-245(tak)-246(j)1(u\\273)-246(b)28(y)1(\\252)-1(a)-245(s)-1(p)-27(o)-28(cona)-245(i)-246(rozdr)1(a\\273)-1(n)1(iona,)-245(\\273e)-247(r)1(obi\\252a)-245(c)-1(or)1(az)-247(w)28(oln)1(ie)-1(j)]TJ 0 -13.55 Td[(i)-333(ni)1(e)-1(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(W\\252a\\261nie)-304(os)-1(tatn)1(i)-304(nab)1(ier)-304(c)-1(iasta)-304(wygni)1(ata\\252)-1(a,)-304(gd)1(y)-304(Pi)1(e)-1(tr)1(e)-1(k)-304(wyj)1(e)-1(c)27(h)1(a\\252)-304(z)-305(p)-27(o)-28(dw)28(\\363-)]TJ -27.879 -13.549 Td[(rza.)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(j,)-333(d)1(am)-334(ci)-333(p)-28(o)-28(d)1(wie)-1(cz)-1(or)1(e)-1(k)1(!)]TJ 0 -13.549 Td[({)-333(Prr)1(r!)-333(A)-333(z)-1(j)1(e)-1(m,)-333(niezgorz)-1(ej)-333(ju)1(\\273)-334(mi)-333(kru)1(c)-1(zy)-333(w)-334(b)1(rz)-1(u)1(c)27(h)28(u)-332(p)-28(o)-333(obiedzie.)]TJ 0 -13.55 Td[({)-333(Ma\\252o)-333(to)-334(ci)-333(b)28(y\\252o?)]TJ 0 -13.549 Td[({)-333(I...)-333(p\\252on)1(e)-334(jad)1(\\252o,)-333(to)-334(p)1(rze)-1(latu)1(je)-333(prze)-1(z)-333(\\273)-1(yw)28(ot)-333(kiej)-333(b)-27(e)-1(z)-334(sito.)]TJ 0 -13.549 Td[({)-380(P\\252one!)-380(w)-1(i)1(dzis)-1(z)-381(go!)-380(C\\363\\273)-381(to,)-380(m)-1(i)1(\\246)-1(so)-381(b)-27(\\246d\\246)-381(ci)-381(d)1(a)28(w)27(a\\252a?)-381(S)1(am)-1(a)-380(p)-27(o)-381(k)56(\\241tac)27(h)-380(te\\273)]TJ -27.879 -13.549 Td[(ni)1(e)-414(c)28(hlam)-413(k)1(ie)-1(\\252b)1(as)-1(y)84(.)-413(Dr)1(ugie)-413(n)1(a)-413(pr)1(z)-1(edn)1(\\363)27(wku)-412(i)-412(te)-1(go)-413(n)1(ie)-413(ma)-56(j\\241.)-412(Ob)1(ac)-1(z)-413(no,)-412(jak)-412(to)]TJ 0 -13.549 Td[(\\273yj\\241)-333(k)28(omorni)1(c)-1(y)84(.)]TJ 27.879 -13.549 Td[(P)28(osta)28(w)-1(i)1(\\252a)-334(w)-333(ganku)-333(d)1(z)-1(i)1(e)-1(\\273k)28(\\246)-334(z)-1(siad)1(\\252e)-1(go)-333(m)-1(l)1(e)-1(k)56(a)-333(i)-333(b)-28(o)-28(c)28(hen.)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252)-422(\\252ak)28(omie)-422(d)1(o)-421(jad\\252a)-421(i)-421(z)-422(w)28(olna)-421(si\\246)-422(n)1(adzie)-1(w)28(a\\252)-422(p)-27(o)-28(d)1(rzuca)-56(j)1(\\241c)-422(niekiej)]TJ -27.879 -13.549 Td[(glon)1(ki)-354(c)27(h)1(le)-1(b)1(a)-355(b)-27(o)-28(\\242k)28(o)28(w)-1(i)1(,)-354(kt\\363ren)-354(pr)1(z)-1(ygr)1(a)-56(j)1(da\\252)-354(s)-1(i\\246)-354(z)-1(e)-355(sadu)-353(i)-355(w)28(aro)28(w)28(a\\252)-355(p)1(rzy)-355(n)1(im)-355(k)1(ie)-1(j)]TJ 0 -13.549 Td[(pi)1(e)-1(s.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)29(ud)1(e)-1(,)-333(sam)-1(a)-333(s)-1(erw)28(atk)56(a)-334({)-333(mrucza\\252)-334(p)-27(o)-28(dj)1(ad\\252sz)-1(y)-333(j)1(u\\273)-334(n)1(ie)-1(co.)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(b)28(y\\261)-334(c)28(hcia\\252)-333(s)-1(ame)-1(j)-333(\\261mie)-1(tan)29(y)83(,)-333(p)-27(o)-28(cz)-1(ek)55(a)-55(j.)]TJ 0 -13.55 Td[(Za\\261)-334(ki)1(e)-1(j)-333(si\\246)-334(n)1(a\\252o\\273)-1(y\\252)-333(do)-333(s)-1(y)1(ta)-334(i)-333(b)1(ra\\252)-333(z)-1(a)-333(lejce)-1(,)-333(d)1(orz)-1(u)1(c)-1(i)1(\\252)-1(a)-333(u)1(s)-1(zc)-1(zypl)1(iwie)-1(:)]TJ 0 -13.549 Td[({)-296(Zg\\363)-28(d\\271)-297(si\\246)-297(d)1(o)-297(J)1(agusi,)-296(ona)-296(c)-1(i)-296(t\\252u)1(\\261)-1(cie)-1(j)-296(b)-27(\\246dzie)-297(d)1(a)27(w)28(a\\252a.)-296({)-297(P)28(ewnie,)-296(b)-27(o)-297(p)-27(\\363ki)-296(tu)]TJ\nET\nendstream\nendobj\n2076 0 obj <<\n/Type /Page\n/Contents 2077 0 R\n/Resources 2075 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2075 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2080 0 obj <<\n/Length 8592      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(651)]TJ -358.232 -35.866 Td[(ona)-394(b)28(y\\252a)-395(gosp)-28(o)-28(d)1(yn)1(i\\241,)-395(n)1(ikto)-395(g\\252o)-28(d)1(e)-1(m)-395(n)1(ie)-396(p)1(rzymie)-1(r)1(a\\252)-395({)-395(z)-1(aci\\241\\252)-395(k)28(on)1(ie)-395(batem)-1(,)-394(w)27(\\363z)]TJ 0 -13.549 Td[(ws)-1(p)1(ar\\252)-333(ramie)-1(n)1(iem)-334(i)-333(ru)1(s)-1(zy\\252.)]TJ 27.879 -13.549 Td[(Utra\\014)1(\\252)-334(j)1(\\241)-333(w)-334(s\\252)-1(ab)1(izn\\246,)-334(al)1(e)-334(ni)1(m)-334(s)-1(i)1(\\246)-334(z)-1(ebr)1(a\\252a)-334(o)-27(dp)-27(o)27(wiedzie\\242)-1(,)-333(o)-28(d)1(jec)27(h)1(a\\252)-1(.)]TJ 0 -13.549 Td[(Jask)28(\\363\\252ki)-427(za\\261)-1(wiegota\\252y)-427(p)-27(o)-28(d)-426(s)-1(t)1(rz)-1(ec)27(h)1(\\241)-427(i)-426(s)-1(tad)1(o)-427(go\\252\\246)-1(b)1(i)-427(op)1(ad\\252o)-427(z)-427(gru)1(c)27(h)1(aniem)]TJ -27.879 -13.549 Td[(na)-325(gan)1(e)-1(k,)-325(a)-325(kiej)-325(je)-325(s)-1(p)-27(\\246dz)-1(a\\252a,)-325(d)1(os)-1(ze)-1(d)1(\\252)-326(j)1(\\241)-325(z)-1(e)-326(sadu)-325(j)1(aki\\261)-325(kwik,)-325(z)-1(l)1(\\246)-1(k\\252a)-325(si\\246)-1(,)-325(\\273e)-326(\\261w)-1(i)1(nie)]TJ 0 -13.55 Td[(p)28(yszc)-1(z\\241)-334(p)-27(o)-333(c)-1(ebu)1(li,)-333(ale)-334(n)1(a)-334(szc)-1(z\\246)-1(\\261c)-1(i)1(e)-334(to)-333(jeno)-333(s)-1(\\241sie)-1(d)1(z)-1(k)56(a)-333(mac)-1(ior)1(a)-334(r)1(y\\252a)-334(si\\246)-334(p)-27(o)-28(d)-333(p)1(\\252ot.)]TJ 27.879 -13.549 Td[({)-333(Ws)-1(ad)1(\\271)-334(j)1(e)-1(n)1(o)-334(r)1(yj,)-333(a)-333(s)-1(p)28(y)1(s)-1(zc)-1(z,)-333(to)-333(ju\\273)-333(ja)-333(c)-1(i)1(\\246)-334(pr)1(z)-1(yr)1(yc)27(h)28(tu)1(j\\246.)]TJ 0 -13.549 Td[(A)-353(ledwie)-354(wzi\\246\\252)-1(a)-353(si\\246)-354(zno)28(wu)-353(d)1(o)-353(rob)-27(ot)27(y)84(,)-353(kiej)-353(b)-27(o)-28(cie)-1(k)-352(h)28(ycn\\241\\252)-353(na)-353(ganek,)-353(p)1(rzy-)]TJ -27.879 -13.549 Td[(cz)-1(ai\\252)-268(si\\246)-268(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-268(i)-268(p)-27(opatr)1(z)-1(ywsz)-1(y)-267(to)-268(jedn)28(y)1(m)-1(,)-267(to)-268(dr)1(ugim)-268(okiem,)-268(j\\241\\252)-268(k)1(u\\242)-268(w)-268(b)-28(o)-27(c)27(hn)29(y)]TJ 0 -13.549 Td[(\\252yk)56(a)-56(j)1(\\241c)-334(cias)-1(to)-333(wielkimi)-333(k)56(a)27(w)28(a\\252am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Wyp)1(ad\\252a)-333(na)-333(ni)1(e)-1(go)-333(z)-334(wrzas)-1(ki)1(e)-1(m.)]TJ 0 -13.55 Td[(Ucie)-1(k)56(a\\252)-323(z)-324(wyc)-1(i)1(\\241)-28(gni\\246t)28(ym)-324(d)1(z)-1(i)1(ob)-28(em)-324(r)1(o)-1(b)1(i\\241c)-324(gw)28(a\\252to)28(w)-1(n)1(ie)-324(gar)1(dzie)-1(l)1(e)-1(m,)-323(a)-324(k)1(ie)-1(j)-323(go)]TJ -27.879 -13.549 Td[(ju)1(\\273)-343(dogan)1(ia\\252a,)-342(b)28(yc)27(h)-342(zdzieli\\242)-343(d)1(re)-1(wn)1(e)-1(m,)-342(p)-28(o)-28(d)1(e)-1(r)1(w)27(a\\252)-342(s)-1(i\\246)-343(i)-342(f)1(run)1(\\241\\252)-343(n)1(a)-343(sto)-28(do\\252\\246)-343(i)-342(d)1(\\252)-1(u)1(go)]TJ 0 -13.549 Td[(tam)-334(sto)-55(ja\\252)-334(k)1(le)-1(k)28(o)-27(c)-1(\\241c)-334(a)-333(wycie)-1(r)1(a)-56(j)1(\\241c)-334(dzi\\363b)-333(o)-333(k)56(ale)-1(n)1(ic\\246)-1(.)]TJ 27.879 -13.549 Td[({)-259(Cz)-1(ek)56(a)-56(j,)-258(z)-1(\\252o)-28(d)1(z)-1(ieju)1(,)-259(j)1(e)-1(sz)-1(cz)-1(e)-259(ja)-259(ci)-259(kul)1(as)-1(y)-259(p)-27(op)1(rz)-1(etr\\241cam)-259({)-260(gr)1(oz)-1(i)1(\\252)-1(a)-259(ob)1(tac)-1(za)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(na)-333(n)1(o)27(w)28(o)-333(p)-28(o)-28(d)1(z)-1(i)1(ura)28(wion)1(e)-334(b)-28(o)-27(c)27(henk)1(i.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(le)-1(cia\\252a)-333(J\\363z)-1(k)56(a,)-333(wi\\246)-1(c)-333(na)-333(niej)-333(ws)-1(zystk)28(o)-333(s)-1(i\\246)-333(s)-1(kr)1(upi)1(\\252o.)]TJ 0 -13.549 Td[({)-377(Ka)-55(j)-376(s)-1(i\\246)-377(to)-377(n)1(os)-1(i)1(s)-1(z?)-377(Ci\\246)-1(gi)1(e)-1(m)-377(gani)1(as)-1(z)-377(jak)-376(k)28(ot)-377(z)-377(p)-27(\\246)-1(c)27(h)1(e)-1(r)1(z)-1(em!)-377(P)28(o)28(wiem)-378(An)29(t-)]TJ -27.879 -13.549 Td[(k)28(o)28(wi,)-333(jak)56(a\\261)-334(to)-333(rob)-27(otna!)-333(Wy)1(garni)1(a)-56(j)-333(z)-334(p)1(iec)-1(a,)-333(a)-333(\\273)-1(yw)28(o!)]TJ 27.879 -13.549 Td[({)-415(By\\252am)-415(j)1(e)-1(n)1(o)-415(u)-414(P\\252osz)-1(k)28(o)28(w)28(e)-1(j)-414(Kasi.)-414(Wsz)-1(ystki)1(e)-415(w)-415(p)-28(ol)1(u,)-414(a)-415(c)27(h)29(ud)1(z)-1(in)1(ie)-415(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(w)28(o)-28(dy)-333(n)1(ie)-334(ma)-334(kt)1(o)-334(p)-27(o)-28(d)1(a\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(\\363\\273)-333(to)-334(j)1(e)-1(j)1(,)-333(c)27(h)1(o)-1(r)1(a?)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ikiem)-334(o\\261pica,)-333(b)-28(o)-333(cz)-1(erw)28(ona)-333(i)-333(rozpalon)1(a)-334(ki)1(e)-1(j)-333(ogi)1(e)-1(\\253)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rzyni)1(e)-1(\\261)-334(ze)-334(sob\\241)-333(c)27(hor)1(ob)-28(\\246,)-333(to)-333(c)-1(i\\246)-333(dam)-334(d)1(o)-333(\\261)-1(p)1(itala.)]TJ 0 -13.549 Td[({)-345(Ju)1(\\261)-1(ci,)-345(b)-27(om)-345(to)-345(j)1(u\\273)-345(pr)1(z)-1(y)-344(jednej)-344(c)27(hor)1(e)-1(j)-344(s)-1(i)1(adyw)28(a\\252a!)-345(Nie)-345(baczyc)-1(i)1(e)-1(,)-345(j)1(ak)28(e)-1(m)-345(to)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-301(w)28(as)-302(du)1(lc)-1(zy\\252a,)-301(kiej\\261c)-1(i)1(e)-302(le\\273)-1(eli)-301(w)-302(p)-27(o\\252ogu.)-301({)-302(I)-301(ju)1(\\273)-302(tra)-55(jk)28(ota\\252a)-301(dalej)-301(p)-27(o)-302(sw)27(o)-55(jem)27(u)1(,)]TJ 0 -13.55 Td[(sp)-28(\\246dza)-56(j)1(\\241c)-334(m)27(u)1(c)27(h)28(y)-333(z)-334(ciasta)-334(i)-333(b)1(ier\\241c)-334(si\\246)-334(d)1(o)-334(wygarn)1(ian)1(ia)-334(w)28(\\246gli)-333(z)-334(pi)1(e)-1(ca.)]TJ 27.879 -13.549 Td[({)-333(T)83(rza)-334(b)-27(\\246dzie)-334(lu)1(dziom)-334(p)-27(onie\\261\\242)-334(p)-28(o)-27(dwiec)-1(zorek)-333({)-334(p)1(rz)-1(erw)28(a\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-333(Zaraz)-334(p)-27(olet\\246)-1(.)-333(Usm)-1(a\\273y\\242)-334(to)-333(ja)-55(jk)28(\\363)28(w)-333(An)28(tk)28(o)28(w)-1(i)1(?)]TJ 0 -13.549 Td[({)-333(A)-334(u)1(s)-1(ma\\273,)-334(j)1(e)-1(n)1(o)-334(s\\252oni)1(n\\241)-333(nie)-333(s)-1(zafu)1(j.)]TJ 0 -13.549 Td[({)-333(\\233a\\252)-1(u)1(jec)-1(i)1(e)-334(to?)]TJ 0 -13.55 Td[({)-333(Za\\261)-1(b)28(y)84(.)-333(Ale)-334(co)-334(za)-333(t\\252usto,)-333(to)-334(mo\\273e)-334(b)28(y\\242)-334(i)-333(An)29(tk)28(o)27(wi)-333(ni)1(e)-1(zdr)1(o)27(w)28(o.)]TJ 0 -13.549 Td[(Dzie)-1(u)1(s)-1(ze)-425(c)27(h)1(c)-1(ia\\252o)-424(s)-1(i\\246)-425(lec)-1(i)1(e)-1(\\242,)-425(to)-424(w)-425(m)-1(i)1(g)-425(u)28(win)1(\\246)-1(\\252a)-425(si\\246)-425(z)-425(rob)-27(ot\\241)-425(i)-424(nim)-425(Han)1(k)55(a)]TJ -27.879 -13.549 Td[(zale)-1(p)1(i\\252a)-251(pi)1(e)-1(c,)-251(zabra\\252a)-251(tr)1(o)-56(j)1(e)-252(d)1(w)27(o)-55(jak)28(\\363)28(w)-251(z)-252(mlekiem)-1(,)-250(c)27(hl)1(e)-1(b)28(y)-250(w)27(e)-251(far)1(tusz)-1(ek)-251(i)-250(p)-28(olecia\\252a.)]TJ 27.879 -13.549 Td[({)-378(Sp)-27(o)-56(j)1(rzyj)-378(ta)-378(n)1(a)-379(p)1(\\252\\363tno,)-378(cz)-1(y)-377(w)-1(ysc)27(h)1(\\252o,)-378(a)-378(z)-379(p)-27(o)27(wr)1(ote)-1(m)-378(p)-28(omo)-28(cz)-1(,)-378(j)1(e)-1(sz)-1(cze)-379(do)]TJ -27.879 -13.549 Td[(zac)27(ho)-27(du)-418(prze)-1(sc)27(h)1(nie)-419({)-419(za)28(w)27(o\\252a\\252a)-419(okn)1(e)-1(m,)-419(ale)-419(J\\363zk)56(a)-419(ju)1(\\273)-420(b)29(y\\252a)-419(z)-1(a)-418(prze)-1(\\252aze)-1(m,)-419(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(pi)1(e)-1(snec)-1(zk)56(a)-334(lecia\\252a)-334(za)-333(ni\\241)-333(i)-333(z)-1(e)-333(\\273)-1(yta)-333(mign\\246\\252a)-334(k)1(ie)-1(j)-332(niekiej)-333(k)28(onop)1(iasta)-334(g\\252o)28(wina.)]TJ 27.879 -13.55 Td[(Na)-255(p)-28(o)-28(d)1(or\\363)28(w)28(c)-1(e)-256(p)-27(o)-28(d)-255(lase)-1(m)-255(k)28(om)-1(or)1(nice)-256(rozrzuca\\252y)-256(gn)1(\\363)-56(j)1(,)-256(j)1(aki)-255(Pietrek)-255(do)28(w)28(oz)-1(i\\252,)]TJ -27.879 -13.549 Td[(a)-333(przy)28(ory)1(w)27(a\\252)-333(An)28(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(\\233e)-354(za\\261)-353(z)-1(iemia)-353(glin)1(ias)-1(t)1(a,)-353(m)-1(i)1(m)-1(o)-353(n)1(ieda)28(wnego)-353(z)-1(b)1(rono)28(w)28(ania,)-352(b)28(y\\252a)-353(s)-1(p)1(iec)-1(zona)-353(i)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(da,)-287(to)-288(skib)28(y)-287(\\252upa\\252y)-287(s)-1(i)1(\\246)-289(n)1(ib)28(y)-287(s)-1(k)56(a\\252y)84(,)-288(a)-288(k)28(on)1(ie)-288(c)-1(i\\241)-27(gn\\246\\252y)-288(p\\252u)1(g)-288(z)-288(takim)-288(wysi\\252kiem,)]TJ 0 -13.549 Td[(ja\\273e)-334(r)1(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(p)-28(ostron)1(ki.)]TJ 27.879 -13.55 Td[(An)28(tek,)-355(jakb)28(y)-355(wro\\261ni\\246t)28(y)-356(w)-356(imad\\252a,)-355(ora\\252)-356(za)28(w)-1(zi\\246c)-1(ie)-356(zap)-28(omn)1(ia)28(w)-1(sz)-1(y)-355(o)-356(ca\\252ym)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(,)-235(c)-1(zas)-1(em)-237(c)28(hlasta\\252)-236(bi)1(c)-1(ze)-1(m)-236(p)-27(o)-236(k)28(o\\253skic)27(h)-235(p)-28(or)1(tk)56(ac)27(h,)-235(a)-236(c)-1(z\\246)-1(\\261c)-1(i)1(e)-1(j)-235(jeno)-236(cm)-1(ok)56(ani)1(e)-1(m)]TJ\nET\nendstream\nendobj\n2079 0 obj <<\n/Type /Page\n/Contents 2080 0 R\n/Resources 2078 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2078 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2083 0 obj <<\n/Length 8944      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(652)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(je)-392(przyn)1(agla\\252,)-392(gdy\\273)-392(do)-392(c)-1(n)1(a)-392(usta)27(w)28(a\\252y)83(,)-392(r)1(ob)-28(ota)-392(b)-27(o)28(w)-1(i)1(e)-1(m)-393(b)29(y\\252a)-392(c)-1(i\\246\\273)-1(k)56(a)-392(i)-392(z)-1(n)1(o)-56(j)1(na,)-392(ale)]TJ 0 -13.549 Td[(kw)28(ard)1(\\241)-435(i)-435(czujn)1(\\241)-435(r)1(\\246)-1(k)56(\\241)-435(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-435(p\\252u)1(g)-435(i)-434(r\\273)-1(n)1(\\241\\252)-435(skib)-27(\\246)-435(z)-1(a)-434(s)-1(ki)1(b\\241,)-434(k\\252ad\\241c)-435(p)-27(os)-1(ob)1(nie)]TJ 0 -13.549 Td[(sz)-1(erokie,)-333(pr)1(os)-1(te)-333(z)-1(agon)28(y)84(,)-333(b)-28(o)-27(\\242)-334(rola)-333(sz)-1(\\252a)-333(p)-28(o)-27(d)-333(psz)-1(enic\\246)-1(.)]TJ 27.879 -13.549 Td[(W)84(ron)28(y)-292(\\252azi\\252y)-292(b)1(ru)1(z)-1(d)1(am)-1(i)-291(w)-1(yd)1(z)-1(i)1(obu)1(j\\241c)-292(glist)28(y)83(,)-292(za\\261)-292(gniad)1(y)-292(\\271rebiec)-1(,)-291(s)-1(zc)-1(zypi)1(\\241c)-1(y)]TJ -27.879 -13.549 Td[(tra)28(w)28(\\246)-397(p)-27(o)-396(m)-1(i\\246dzy)84(,)-396(rw)27(a\\252)-396(si\\246)-397(r)1(az)-397(p)-27(o)-397(r)1(az)-397(do)-396(kl)1(ac)-1(zy)-396(\\252ak)28(om)-1(ie,)-396(si\\246)-1(ga)-55(j\\241c)-396(m)-1(atcz)-1(y)1(n)28(yc)27(h)]TJ 0 -13.55 Td[(wymion.)]TJ 27.879 -13.549 Td[({)-402(Co)-401(m)27(u)-401(si\\246)-402(to)-402(p)1(rzyp)-27(om)-1(in)1(a,)-401(c)-1(yco\\253)-401(jeden)-401({)-402(mru)1(kn\\241\\252)-401(An)28(te)-1(k)-401(\\261m)-1(i)1(ga)-56(j\\241c)-402(go)]TJ -27.879 -13.549 Td[(p)-27(o)-344(k)1(ulasac)27(h)1(,)-343(\\273)-1(e)-343(z)-1(ad)1(ar\\252)-343(ogona)-343(i)-343(s)-1(k)28(o)-27(c)-1(zy\\252)-343(w)-344(b)-27(ok,)-343(on)-343(za\\261)-344(or)1(a\\252)-344(d)1(alej)-343(c)-1(i)1(e)-1(r)1(pliwie,)-343(t)28(yle)]TJ 0 -13.549 Td[(jeno)-340(p)1(rze)-1(r)1(yw)27(a)-55(j\\241c)-340(s)-1(kw)28(arn)1(\\241)-340(c)-1(ic)28(ho\\261\\242)-1(,)-340(co)-340(s)-1(i)1(\\246)-341(ta)-340(n)1(ie)-1(k)56(a)-55(j)-340(oz)-1(w)28(a\\252)-340(do)-340(k)28(ob)1(ie)-1(t,)-339(ale)-341(tak)-340(j)1(u\\273)]TJ 0 -13.549 Td[(b)28(y\\252)-333(um\\246c)-1(zon)28(y)-333(pr)1(ac)-1(\\241)-333(i)-333(s)-1(p)1(ie)-1(k)28(ot)1(\\241,)-334(\\273e)-334(sk)28(oro)-333(Pietrek)-333(nad)1(jec)27(ha\\252,)-333(kr)1(z)-1(y)1(kn\\241\\252)-333(w)-334(z\\252o\\261)-1(ci:)]TJ 27.879 -13.549 Td[({)-333(Kobi)1(e)-1(t)28(y)-333(c)-1(zek)55(a)-55(j\\241,)-333(a)-333(t)28(y)-334(wlecz)-1(es)-1(z)-334(si\\246)-334(k)1(ie)-1(b)29(y)-333(s)-1(zm)-1(aciarz!)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(d)1(roga)-333(c)-1(i)1(\\246)-1(\\273k)56(a)-334(i)-333(k)28(o\\253)-333(ledwie)-333(ju\\273)-333(kul)1(as)-1(ami)-333(ruc)28(ha.)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(o)-333(c)-1(\\363\\273e)-1(\\261)-333(t)27(y)1(la)-333(c)-1(zas)-1(u)-333(sto)-56(j)1(a\\252)-334(p)-27(o)-28(d)-333(l)1(as)-1(em)-1(?)-333(Wid)1(z)-1(ia\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-1(cie)-334(ob)1(ac)-1(zy\\242)-1(,)-333(p)1(ias)-1(k)1(ie)-1(m)-333(kiej)-333(k)28(ot)-333(nie)-333(z)-1(agarn)1(iam.)]TJ 0 -13.549 Td[({)-333(Pysk)56(ac)-1(z)-334(\\261cie)-1(r)1(w)27(a.)-333(Wi)1(o)-1(,)-333(stare,)-333(wio!)]TJ 0 -13.549 Td[(Ale)-383(k)28(onie)-383(usta)28(w)27(a\\252y)-383(coraz)-383(bar)1(z)-1(ej,)-383(ca\\252e)-384(j)1(u\\273)-383(okry)1(te)-384(p)1(ian\\241,)-383(a)-383(i)-382(jem)27(u,)-382(c)27(ho)-27(c)-1(ia)]TJ -27.879 -13.55 Td[(b)28(y\\252)-372(r)1(oz)-1(dzian)28(y)-371(do)-372(bi)1(a)-1(\\252y)1(c)27(h)-372(p)-27(ortek)-372(i)-372(k)28(osz)-1(u)1(li,)-372(p)-27(ot)-372(te)-1(\\273)-372(z)-1(al)1(e)-1(w)28(a\\252)-373(t)28(w)28(arz)-372(i)-372(r\\246)-1(ce)-373(md)1(la\\252y)]TJ 0 -13.549 Td[(o)-28(d)-333(p)1(racy)83(,)-333(\\273e)-334(do)-55(jr)1(z)-1(a)28(ws)-1(zy)-333(J\\363z)-1(k)28(\\246)-334(za)28(w)27(o\\252a\\252)-333(rad)1(o\\261)-1(n)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(W)-333(s)-1(am)-334(czas)-334(pr)1(z)-1(ysz)-1(\\252a\\261,)-333(a)-334(to)-333(ostatni)1(\\241)-334(p)1(ar\\241)-333(dygu)1(jem)27(y)84(.)]TJ 0 -13.549 Td[(Do)-28(ci\\241)-28(gn)1(\\241\\252)-490(s)-1(k)1(ib)-28(\\246)-490(p)-27(o)-28(d)-490(b)-27(\\363r,)-489(k)28(onie)-490(wy\\252o\\273)-1(y)1(\\252)-490(i)-490(rozkie\\252z)-1(n)1(a)28(w)-1(sz)-1(y)-489(je)-490(pu)1(\\261)-1(ci\\252)-490(na)]TJ -27.879 -13.549 Td[(tra)28(wiast\\241,)-466(p)-27(o)-28(d)1(le\\261)-1(n)1(\\241)-466(dr)1(og\\246)-1(,)-465(a)-466(sam)-466(rzuci\\252)-466(si\\246)-466(w)-466(cie)-1(\\253)-465(n)1(a)-466(kr)1(a)-56(j)1(u)-466(l)1(as)-1(u)-465(i)-465(kiej)-466(wil)1(k)]TJ 0 -13.55 Td[(zg\\252)-1(o)-27(dn)1(ia\\252y)-333(w)-1(y)1(jada\\252)-333(z)-334(d)1(w)27(o)-55(jak)28(\\363)28(w,)-334(a)-333(J\\363zk)56(a)-334(j)1(\\246)-1(\\252a)-333(m)27(u)-333(tr)1(a)-56(j)1(k)28(ota\\242)-334(nad)-333(u)1(s)-1(zami.)]TJ 27.879 -13.549 Td[({)-434(Osta)28(w)-434(me)-1(,)-433(nie)-434(cie)-1(k)56(a)28(wym)-434(t)28(w)27(oi)1(c)27(h)-433(no)28(winek)-434({)-434(w)28(ark)1(n\\241\\252)-434(gn)1(ie)-1(wn)1(ie)-1(,)-433(\\273)-1(e)-434(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(sz)-1(cz)-1(ekn\\246\\252a)-333(gniewnie)-334(i)-333(p)-27(olec)-1(ia\\252a)-333(w)-334(l)1(as)-334(na)-333(jago)-27(dy)84(.)]TJ 27.879 -13.549 Td[(B\\363r)-484(s)-1(t)1(o)-56(ja\\252)-484(cic)27(h)28(y)84(,)-484(rozpr)1(a\\273)-1(on)28(y)84(,)-484(p)1(ac)27(hn)1(\\241c)-1(y)-484(i)-484(k)1(ie)-1(b)29(y)-484(\\271)-1(d)1(z)-1(iebk)28(o)-484(p)1(rzymg)-1(l)1(a\\252y)-484(w)]TJ -27.879 -13.549 Td[(s\\252)-1(on)1(e)-1(cznej)-494(ul)1(e)-1(wie,)-494(\\273)-1(e)-494(jeno)-494(n)1(iekiedy)-494(zaru)1(c)27(ha\\252y)-494(si\\246)-494(c)-1(ic)28(h)28(u\\261k)28(o)-494(zie)-1(lon)1(e)-495(p)-27(o)-28(d)1(s)-1(zycia)]TJ 0 -13.55 Td[(i)-464(z)-464(g\\252\\246bin)-463(bu)1(c)27(h)1(a\\252)-464(c)-1(i\\241)-27(g)-464(pr)1(z)-1(ej\\246t)28(y)-464(\\273)-1(y)1(w)-1(i)1(c)-1(\\241)-464(ab)-27(o)-464(i)-463(jaki)1(e)-1(\\261)-464(p)-28(ob)1(\\252\\241k)56(ane)-464(g\\252os)-1(y)-463(i)-464(pt)1(as)-1(ie)]TJ 0 -13.549 Td[(\\261piew)27(an)1(ia.)]TJ 27.879 -13.549 Td[(An)28(tek)-470(r)1(oz)-1(ci\\241)-28(gn)1(\\241\\252)-470(s)-1(i\\246)-470(na)-469(tra)28(wie)-470(i)-470(ku)1(rz)-1(y)1(\\252)-470(pap)1(ie)-1(r)1(os)-1(a,)-469(ale)-471(j)1(akb)28(y)-469(przez)-471(co-)]TJ -27.879 -13.549 Td[(raz)-346(g\\252)-1(\\246bsz)-1(\\241)-346(mg\\252\\246)-347(widzia\\252)-346(dzie)-1(d)1(z)-1(i)1(c)-1(a)-346(s)-1(k)56(acz)-1(\\241ce)-1(go)-346(na)-346(k)28(oni)1(u)-346(p)-28(o)-346(p)-27(o)-28(dleskic)27(h)-346(p)-27(olac)28(h)-346(i)]TJ 0 -13.549 Td[(jak)1(ic)27(h)1(\\261)-334(lu)1(dzi)-334(z)-333(t)28(yk)55(ami.)]TJ 27.879 -13.55 Td[(Wielgac)28(hne)-235(c)28(ho)-55(jary)1(;)-235(ki)1(e)-1(b)28(y)-234(z)-235(mie)-1(d)1(z)-1(i)-234(wyku)1(te)-1(,)-234(wynosi\\252y)-235(si\\246)-235(n)1(ad)-235(n)1(im)-235(rzuca)-56(j)1(ac)]TJ -27.879 -13.549 Td[(p)-27(o)-237(o)-28(czac)27(h)-236(c)27(h)28(wiejn)29(y)-237(i)-236(morz\\241c)-1(y)-236(\\261)-1(p)1(iki)1(e)-1(m)-237(cie\\253.)-236(Ju\\273)-237(si\\246)-237(b)29(y\\252)-237(ca\\252kiem)-237(z)-1(ap)1(ad\\252)-236(w)-237(cic)27(h)1(o\\261)-1(\\242,)]TJ 0 -13.549 Td[(gdy)-333(zatur)1(k)28(ota\\252)-334(j)1(aki\\261)-334(w)28(\\363z.)]TJ 27.879 -13.549 Td[({)-447(Organ)1(ist\\363)28(w)-448(p)1(arob)-27(e)-1(k)-447(n)1(a)-447(tartak)-447(w)28(oz)-1(i,)-446(ju\\261ci)-447({)-447(p)-28(om)28(y\\261)-1(l)1(a\\252)-448(u)1(nosz)-1(\\241c)-447(c)-1(i)1(\\246)-1(\\273k)55(\\241)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\246)-235(i)-234(op)1(ad\\252)-234(z)-235(p)-27(o)27(wr)1(ote)-1(m,)-234(ale)-235(j)1(u\\273)-235(n)1(ie)-235(zas)-1(n)1(\\241\\252,)-235(gd)1(y\\273)-235(k)1(tos)-1(ik)-234(wyr)1(z)-1(ek\\252:)-234({)-235(P)29(o)-28(c)27(h)28(w)28(alon)28(y)1(!)]TJ 27.879 -13.549 Td[(Komorn)1(ic)-1(e)-285(wyc)27(h)1(o)-28(dzi\\252y)-285(p)-27(os)-1(ob)1(nie)-285(z)-286(l)1(as)-1(u)-284(z)-286(br)1(z)-1(emionami)-285(dr)1(z)-1(ew)27(a)-285(n)1(a)-285(plec)-1(ac)28(h,)]TJ -27.879 -13.55 Td[(za\\261)-334(w)-334(k)28(o\\253)1(c)-1(u)-333(wlek\\252a)-333(s)-1(i\\246)-333(Jagust)28(ynk)56(a,)-333(z)-1(gar)1(bion)1(a)-334(p)-27(o)-28(d)-333(ci\\246\\273)-1(ar)1(e)-1(m)-333(pra)28(wie)-334(d)1(o)-334(ziem)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Odp)-27(o)-28(cz)-1(n)1(ijcie,)-333(a)-334(to)-333(w)28(am)-1(a)-333(ju)1(\\273)-334(o)-28(cz)-1(y)-333(n)1(a)-334(wierzc)27(h)-333(wy\\252a\\273\\241.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-334(wp)-27(o)-28(dl)1(e)-1(,)-333(ws)-1(p)1(iera)-56(j)1(\\241c)-334(br)1(z)-1(emi\\246)-334(o)-333(drzew)27(o)-333(i)-333(le)-1(d)1(wie)-334(zipi\\241c.)]TJ 0 -13.549 Td[({)-333(Nie)-334(la)-333(w)28(as)-334(tak)56(a)-334(r)1(ob)-28(ota)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(e)-333(w)-1(sp)-27(\\363\\252)-1(czucie)-1(m.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(ju)1(\\273)-334(c)-1(a\\252ki)1(e)-1(m)-334(op)1(ad\\252am)-333(z)-1(e)-334(si\\252.)]TJ 0 -13.55 Td[({)-400(Pi)1(e)-1(tr)1(e)-1(k,)-400(a)-400(g\\246\\261)-1(ciej)-400(ku)1(pki,)-399(g\\246)-1(\\261c)-1(iej!)-400({)-400(k)1(rz)-1(y)1(kn\\241\\252)-400(do)-400(p)1(arobk)56(a.)-400({)-400(Cz)-1(em)27(u)1(\\273)-401(to)]TJ -27.879 -13.549 Td[(w)28(a)-56(ju)-332(nie)-334(wyr)1(\\246)-1(cz)-1(\\241?)]TJ\nET\nendstream\nendobj\n2082 0 obj <<\n/Type /Page\n/Contents 2083 0 R\n/Resources 2081 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2081 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2086 0 obj <<\n/Length 8902      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(653)]TJ -330.353 -35.866 Td[(Jeno)-333(s)-1(i)1(\\246)-334(s)-1(k)1(rz)-1(y)1(w)-1(i)1(\\252)-1(a)-333(o)-28(d)1(wrac)-1(a)-55(j\\241c)-333(z)-1(acz)-1(erwienion)1(e)-1(,)-333(b)-27(\\363lne)-333(o)-28(c)-1(zy)84(.)]TJ 0 -13.549 Td[({)-333(T)83(ak)28(e)-1(\\261c)-1(i)1(e)-334(jak)28(o\\261)-334(zmi\\246)-1(k)1(li,)-333(\\273e)-334(ani)-333(w)28(as)-334(tera)-333(p)-28(ozna\\242.)]TJ 0 -13.549 Td[({)-235(I)-234(krze)-1(mie\\253)-234(pu\\261ci)-235(p)-27(o)-28(d)-234(m)-1(\\252otem)-235({)-235(j)1(\\246)-1(k)1(n\\246\\252)-1(a)-234(z)-1(wies)-1(za)-56(j)1(\\241c)-235(g\\252o)27(w)28(\\246)-235({)-235(b)1(ie)-1(d)1(a)-235(c)28(h)28(yb)-27(c)-1(iej)]TJ -27.879 -13.549 Td[(pr)1(z)-1(e\\271)-1(r)1(e)-334(cz)-1(\\252o)28(w)-1(i)1(e)-1(k)56(a)-333(ni\\271li)-333(rd)1(z)-1(a)-333(\\273e)-1(lazo.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(\\246)-1(\\273ki)-333(lato\\261)-334(p)1(rze)-1(d)1(n\\363)28(w)27(ek)-333(na)28(w)28(e)-1(t)-333(la)-333(gos)-1(p)-27(o)-28(d)1(arzy)83(.)]TJ 0 -13.55 Td[({)-333(Kto)-333(m)-1(a)-333(jeno)-333(lebio)-27(d\\246)-334(z)-333(otr\\246bami,)-333(te)-1(m)28(u)-333(ni)1(e)-334(p)-28(ot)1(rz)-1(a)-333(m\\363)28(w)-1(i)1(\\242)-334(o)-334(b)1(iedzie)-1(.)]TJ 0 -13.549 Td[({)-450(B)-1(\\363)-55(jcie)-451(si\\246)-451(Boga,)-451(d)1(y\\242)-451(p)1(rzyjd)1(\\271)-1(cie)-1(\\273)-450(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m,)-450(a)-451(zna)-55(jdzie)-451(si\\246)-451(j)1(e)-1(sz)-1(cze)-451(w)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-334(jak)1(i)-334(k)28(or)1(c)-1(zyk)-333(zie)-1(mni)1(ak)28(\\363)27(w.)-333(Od)1(robi)1(c)-1(ie)-333(w)27(e)-334(\\273ni)1(w)27(a.)]TJ 27.879 -13.549 Td[(Zap\\252ak)56(a\\252a)-333(rz)-1(ewliwie,)-333(nie)-334(mog\\241c)-334(wyk)1(rz)-1(t)1(usi\\242)-334(tego)-334(s\\252o)27(w)28(a)-333(p)-28(o)-27(dzi\\246)-1(k)1(i.)]TJ 0 -13.549 Td[({)-333(A)-334(mo\\273e)-334(ta)-333(i)-334(co)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333(n)1(a)-56(j)1(dzie)-334(Han)1(k)55(a)-333({)-333(do)-28(d)1(a\\252)-334(z)-334(d)1(obr)1(o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-460(\\233eb)28(y)-459(nie)-460(Han)1(k)55(a,)-459(to)-460(b)29(y\\261)-1(w)28(a)-460(j)1(u\\273)-460(b)28(y)1(li)-460(p)-27(ozdyc)28(hali)-459({)-460(zas)-1(ze)-1(p)1(ta\\252a)-460(\\252za)27(w)28(o.)-460({)]TJ -27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-281(co)-281(o)-28(d)1(rob)1(i\\246)-1(,)-280(kiedy)-280(jeno)-280(b)-28(\\246dzie)-281(p)-27(otrza.)-281(I)-281(n)1(ie)-281(z)-1(a)-280(s)-1(i)1(e)-1(b)1(ie)-281(m)-1(\\363)28(wi\\246.)-281(B\\363g)-281(ci)-281(zap\\252a\\242!)]TJ 0 -13.549 Td[(C\\363\\273)-452(t)1(a)-451(ja,)-451(t)1(e)-1(n)-450(\\261)-1(mie\\242)-452(j)1(e)-1(n)1(o,)-451(co)-451(s)-1(i)1(\\246)-452(go)-451(t)1(re)-1(p)-27(em)-452(n)1(as)-1(t)1(\\246)-1(p)1(uje,)-451(an)1(i)-451(wiedz\\241c)-452(o)-451(t)28(y)1(m)-1(,)-450(i)]TJ 0 -13.549 Td[(do)-360(g\\252o)-28(d)1(u)-360(ni)1(e)-1(zgorze)-1(j)-360(wzwyc)-1(za)-56(j)1(onam,)-360(ale)-360(jak)-360(te)-361(mo)-55(je)-361(r)1(obaki)-360(k)28(o)-27(c)27(han)1(e)-361(zapisk)56(a)-56(j)1(\\241:)]TJ 0 -13.549 Td[(bab)1(ul)1(u,)-396(j)1(e)-1(\\261\\242)-1(!)-395(a)-396(ni)1(e)-397(ma)-396(cz)-1(ym)-396(zatk)56(a\\242)-397(g\\252o)-28(d)1(n)28(yc)28(h)-396(b)1(rz)-1(u)1(c)27(h)1(\\363)27(w,)-395(to)-396(p)-28(o)28(wiedam,)-396(cob)28(ym)]TJ 0 -13.549 Td[(se)-371(te)-370(ku)1(lasy)-370(o)-28(d)1(r\\241b)1(a\\252)-1(a)-369(ab)-28(o)-369(i)-370(z)-370(tego)-370(o\\252tarza)-370(z)-1(d)1(ar\\252a)-370(i)-369(p)-28(on)1(ies)-1(\\252a)-370(d)1(o)-370(\\233yd)1(a,)-370(b)28(yc)28(h)-369(s)-1(i\\246)]TJ 0 -13.55 Td[(jeno)-333(n)1(a)-56(jad)1(\\252y)83(.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(zno)28(wuj)-332(s)-1(iedzicie)-334(z)-334(d)1(z)-1(ie\\242m)-1(i?)]TJ 0 -13.549 Td[({)-423(Mat)1(k)55(am)-423(pr)1(z)-1(ec)-1(i)1(e)-1(k.)-422(Osta)27(wi\\246)-423(to)-423(sam)27(yc)28(h)-423(w)-423(tak)1(ie)-1(j)-422(bi)1(e)-1(d)1(z)-1(ie!)-423(A)-423(l)1(ato\\261)-424(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(ws)-1(zystk)28(o)-475(z\\252e)-475(z)-1(w)28(ali\\252o)-474(s)-1(i)1(\\246)-475(na)-474(nic)28(h.)-474(Kro)28(w)28(a)-475(im)-474(pad)1(\\252)-1(a,)-474(zie)-1(mn)1(iaki)-474(z)-1(gn)1(i\\252y)83(,)-474(\\273e)-475(trza)]TJ 0 -13.549 Td[(b)28(y\\252o)-375(ku)1(p)-28(o)28(w)28(a\\242)-376(d)1(o)-376(sadzenia,)-375(wiater)-375(ob)1(ali\\252)-375(s)-1(to)-27(do\\252\\246)-1(,)-374(a)-376(d)1(o)-375(te)-1(go)-375(syno)28(w)28(a)-375(p)-28(o)-375(ro)-27(dac)27(h)]TJ 0 -13.55 Td[(ostatnic)28(h)-333(c)-1(i)1(\\246)-1(giem)-334(c)28(horze)-1(j)1(e)-334(i)-333(ws)-1(zy\\242k)28(o)-334(osta\\252o)-334(n)1(a)-333(te)-1(j)-333(b)-27(oskiej)-333(Opatr)1(z)-1(n)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(b)-27(o)-333(W)83(o)-55(jtk)28(o)28(wi)-333(jeno)-333(gorza\\252k)55(a)-333(pac)28(hn)1(ie)-334(i)-333(pi)1(lno)-333(do)-333(k)56(arcz)-1(m)28(y)83(.)]TJ 0 -13.549 Td[({)-288(Z)-288(bi)1(e)-1(d)1(y)-288(s)-1(i\\246)-288(ni)1(e)-1(ki)1(e)-1(j)-287(napi)1(ja\\252,)-288(z)-288(c)-1(zyste)-1(j)-287(biedy)84(,)-288(ale)-288(jak)-288(d)1(os)-1(t)1(a\\252)-289(w)-288(b)-27(oru)-287(rob)-27(ot\\246)-1(,)]TJ -27.879 -13.549 Td[(to)-434(ani)-434(j)1(u\\273)-435(za)-56(j)1(rzy)-435(d)1(o)-434(\\233)-1(y)1(da,)-434(ni)1(e)-1(c)27(h)-433(dru)1(gie)-435(za\\261)-1(wiad)1(c)-1(z\\241)-434({)-435(b)1(roni)1(\\252a)-435(syna)-434(gor\\241co.)-434({)]TJ 0 -13.549 Td[(Bie)-1(d)1(o)-28(cie)-366(to)-366(ku)1(\\273)-1(d)1(e)-1(n)-365(kielisz)-1(ek)-365(p)-28(oli)1(c)-1(z\\241!)-366(P)28(of)1(olgo)28(w)27(a\\252)-365(s)-1(e)-366(Jez)-1(u)1(s)-1(icz)-1(ek)-366(w)28(e)-366(z)-1(\\252o\\261c)-1(i)-365(p)-27(ofol-)]TJ 0 -13.55 Td[(go)28(w)27(a\\252,)-428(n)1(o,)-428(\\273e)-1(b)29(y)-428(s)-1(i)1(\\246)-429(tak)-427(z)-1(a)28(wz)-1(i)1(\\241\\242)-429(n)1(a)-428(jedn)1(e)-1(go)-428(g\\252u)1(piego)-428(c)27(h)1(\\252)-1(op)1(a.)-428(I)-428(za)-428(c)-1(o?)-428(C\\363\\273)-428(to)]TJ 0 -13.549 Td[(z\\252)-1(ego)-333(z)-1(r)1(obi\\252?)-334({)-333(mam)-1(r)1(ota\\252a)-334(p)-27(o)-28(d)1(nosz)-1(\\241c)-333(w)-334(ni)1(e)-1(b)-27(o)-334(gr)1(o\\271)-1(n)1(e)-1(,)-333(p)28(y)1(ta)-56(j)1(\\241c)-1(e)-334(o)-27(c)-1(zy)83(.)]TJ 27.879 -13.549 Td[({)-333(Ma\\252o\\261)-1(cie)-334(t)1(o)-334(n)1(a)-334(n)1(ic)27(h)-333(p)-27(oms)-1(to)28(w)28(ali?)-333({)-334(r)1(z)-1(ek\\252)-334(z)-333(nacis)-1(k)1(ie)-1(m.)]TJ 0 -13.549 Td[({)-245(Hale,)-245(wys\\252uc)27(h)1(a\\252b)28(y)-245(to)-244(Je)-1(zus)-245(g\\252up)1(ie)-1(go)-244(s)-1(zc)-1(ze)-1(k)56(an)1(ia!)-245(Ju)1(\\261)-1(ci)-245({)-245(al)1(e)-246(d)1(o)-28(da\\252a)-245(j)1(akb)28(y)]TJ -27.879 -13.549 Td[(trw)28(o\\273niej)-295(i)-294(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-1(j)-294({)-295(ki)1(e)-1(j)-294(matk)55(a)-294(na)28(w)27(et)-295(wyk)1(lina)-294(dzie)-1(ci,)-294(to)-295(i)-295(t)1(ak)-295(w)-295(se)-1(rcu)-294(nie)]TJ 0 -13.55 Td[(pr)1(agnie)-333(im)-334(kr)1(z)-1(ywd)1(y)83(.)-333(W)84(e)-334(z)-1(\\252o\\261c)-1(i)-333(to)-333(i)-333(oz\\363r)-333(nie)-334(p)-27(o\\261c)-1(i.)-333(Jak)1(\\273)-1(e...)]TJ 27.879 -13.549 Td[({)-333(Wyp)1(u\\261c)-1(i\\252)-333(to)-333(ju\\273)-333(W)83(o)-55(jtek)-333(\\252\\241k)28(\\246)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-312(M\\252ynar)1(z)-313(pr)1(z)-1(yn)1(os)-1(i)1(\\252)-313(n)1(a)-313(n)1(i\\241)-313(ca\\252e)-313(t)28(ysi\\241c)-313(z\\252)-1(ot)28(yc)28(h,)-312(ale)-313(j)1(a)-313(wzbr)1(oni\\252am,)-312(b)-28(o)-312(jak)]TJ -27.879 -13.549 Td[(tem)27(u)-341(wilk)28(o)28(wi)-342(wp)1(a)-1(d)1(ni)1(e)-342(c)-1(o)-342(w)-341(pazury)84(,)-341(to)-342(m)28(u)-342(j)1(u\\273)-342(sam)-342(z)-1(\\252y)-341(ni)1(e)-343(wyr)1(wie)-1(.)-341(A)-342(mo\\273e)-342(s)-1(i\\246)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-334(t)1(ra\\014)-333(kto)-333(dr)1(ugi)-333(z)-334(p)1(ie)-1(n)1(i\\246dzm)-1(i)1(?)]TJ 27.879 -13.549 Td[({)-405(\\221li)1(c)-1(zna)-405(\\252\\241k)56(a,)-406(j)1(ak)-405(ame)-1(n)-405(tak)-405(p)-27(ew)-1(n)1(e)-406(dw)28(a)-405(p)-28(ok)28(osy)-405(w)-406(r)1(ok)-405(\\273)-1(eb)28(ym)-405(tak)-405(m)-1(i)1(a\\252)]TJ -27.879 -13.55 Td[(grosz)-334(zapa\\261n)28(y!)-333({)-333(w)27(es)-1(tc)28(hn)1(\\241\\252)-334(ob)1(lizuj\\241c)-333(s)-1(i\\246)-333(kiej)-333(k)28(ot)-334(d)1(o)-333(m)-1(lek)56(a.)]TJ 27.879 -13.549 Td[({)-379(Ju\\273)-379(i)-379(Maciej)-379(c)27(h)1(c)-1(i)1(e)-1(li)-378(j\\241)-379(ku)1(p)-28(o)28(w)28(a\\242)-1(,)-379(\\273e)-380(to)-379(r)1(yc)27(h)28(t)28(yk)-378(przylega)-379(do)-379(Jagu)1(s)-1(in)1(e)-1(go)]TJ -27.879 -13.549 Td[(p)-27(ola.)]TJ 27.879 -13.549 Td[(Drgn)1(\\241\\252)-325(na)-325(to)-325(imi\\246)-1(,)-324(le)-1(cz)-326(d)1(opiero)-325(w)-325(jaki)1(e)-1(\\261)-326(Zd)1(ro)28(w)27(a\\261)-325(z)-1(ap)29(yta\\252)-325(nib)29(y)-325(niec)27(h)1(c)-1(\\241cy)83(,)]TJ -27.879 -13.549 Td[(wlek)55(\\241c)-333(o)-28(c)-1(zam)-1(i)-333(p)-27(o)-333(p)-28(ol)1(ac)27(h,)-333(d)1(ale)-1(k)28(o.)]TJ 27.879 -13.55 Td[({)-333(C)-1(o)-333(si\\246)-334(to)-333(wyrab)1(ia)-334(u)-332(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)1(?)]TJ 0 -13.549 Td[(Ale)-418(p)1(rze)-1(j)1(rza\\252)-1(a)-417(go)-417(w)-418(lot,)-417(p)1(rz)-1(e\\261m)-1(iec)27(h)-417(j)1(e)-1(n)1(o)-418(wion)1(\\241\\252)-418(p)-27(o)-417(z)-1(wi\\246d\\252yc)28(h)-417(w)27(argac)28(h,)]TJ\nET\nendstream\nendobj\n2085 0 obj <<\n/Type /Page\n/Contents 2086 0 R\n/Resources 2084 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2084 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2089 0 obj <<\n/Length 9264      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(654)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozjar)1(z)-1(y\\252y)-333(si\\246)-334(o)-28(czy)-334(i)-333(p)1(rzys)-1(u)1(n\\241)28(ws)-1(zy)-333(s)-1(i)1(\\246)-334(j\\246\\252a)-334(m\\363)28(wi\\242)-334(b)-27(ole)-1(j)1(\\241c)-1(o:)]TJ 27.879 -13.549 Td[({)-388(A)-387(c)-1(o!)-387(Pi)1(e)-1(k\\252o)-387(tam)-388(i)-388(t)28(yl)1(a.)-388(W)-387(c)27(h)1(a\\252)-1(u)1(pi)1(e)-388(kiej)-388(p)-27(o)-388(p)-27(o)-28(c)28(ho)28(wku,)-387(ja\\273e)-388(m)-1(r)1(oz)-1(i)-387(o)-28(d)]TJ -27.879 -13.549 Td[(sm)27(ut)1(ku,)-338(a)-339(p)-27(o)-28(ciec)27(h)28(y)-338(z)-1(n)1(ik)56(\\241d)-338(ni)-338(p)-28(or)1(atun)1(ku!)-338(Jeno)-338(o)-28(c)-1(zy)-338(w)-1(y)1(p\\252aku)1(j\\241)-339(i)-338(b)-27(os)-1(k)1(ie)-1(go)-338(z)-1(mi-)]TJ 0 -13.549 Td[(\\252o)28(w)27(an)1(ia)-333(c)-1(ze)-1(k)56(a)-56(j)1(\\241!)-333(A)-334(j)1(u\\273)-334(n)1(a)-56(j)1(bar)1(z)-1(ej)-333(Jagusia..)1(.)]TJ 27.879 -13.549 Td[(I)-495(kieb)28(y)-495(pr)1(z)-1(\\246dz\\246)-496(rozsn)28(u)28(w)28(a)-1(\\252a)-495(r\\363\\273no\\261cie)-496(o)-495(Jagusin)28(yc)28(h)-495(sm)27(utk)56(ac)28(h,)-495(\\273alac)27(h)-495(i)]TJ -27.879 -13.55 Td[(opu)1(s)-1(zcz)-1(eniu)1(.)-332(M\\363)28(wi\\252a)-332(gor)1(\\241c)-1(o,)-332(p)1(rzyp)-27(o)-28(c)27(h)1(le)-1(b)1(ia)-55(j\\241c)-332(m)27(u)-331(s)-1(i\\246)-332(i)-331(jakb)28(y)-331(c)-1(i)1(\\241)-28(gn\\241c)-332(za)-332(j\\246z)-1(yk)1(,)]TJ 0 -13.549 Td[(ale)-346(m)-1(i)1(lc)-1(za\\252)-346(up)1(arc)-1(i)1(e)-1(,)-346(gd)1(y\\273)-346(z)-347(nag\\252a)-346(r)1(oz)-1(p)1(ar\\252a)-346(go)-346(tak)55(a)-346(\\273r\\241ca)-346(t\\246)-1(skn)1(ic)-1(a,)-345(ja\\273)-1(e)-346(si\\246)-347(ca\\252y)]TJ 0 -13.549 Td[(rozdy)1(gota\\252.)]TJ 27.879 -13.549 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-289(c)-1(o)-290(p)-27(o)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-290(J\\363z)-1(k)56(a)-290(n)1(ios)-1(\\241c)-290(z)-290(p)-28(\\363\\252)-290(zapaski)-290(cze)-1(rn)1(ic,)-290(nasyp)1(a\\252)-1(a)-289(m)27(u)]TJ -27.879 -13.549 Td[(jag\\363)-27(d)-333(w)-334(k)56(ap)-27(e)-1(lu)1(s)-1(z)-333(i)-334(zebra)28(ws)-1(zy)-333(dw)28(o)-56(j)1(aki)-333(p)-27(obieg\\252a)-334(w)-333(dyr)1(dy)-333(ku)-333(c)28(ha\\252up)1(ie.)]TJ 27.879 -13.549 Td[(A)-332(Jagu)1(s)-1(t)28(yn)1(k)55(a)-332(n)1(ie)-332(do)-28(cz)-1(ek)56(a)28(w)-1(sz)-1(y)-331(s)-1(i\\246)-332(o)-28(d)-331(niego)-332(ani)-331(s)-1(\\252o)28(w)27(a)-332(o)-27(dp)-27(o)27(wiedzi)-332(j)1(\\246)-1(\\252a)-332(si\\246)]TJ -27.879 -13.55 Td[(d\\271wiga\\242)-334(st\\246)-1(k)56(a)-55(j\\241cy)83(.)]TJ 27.879 -13.549 Td[({)-333(P)28(oni)1(e)-1(c)27(h)1(a)-56(j)1(c)-1(i)1(e)-1(!)-333(Pi)1(e)-1(tr)1(e)-1(k,)-333(zabierz)-333(ic)27(h)-333(n)1(a)-334(w)28(\\363z)-1(!)-333({)-333(rozk)56(az)-1(a\\252)-333(kr\\363tk)28(o.)]TJ 0 -13.549 Td[(Ch)28(yci\\252)-444(si\\246)-444(z)-1(n)1(o)27(wu)-443(p\\252u)1(ga)-444(i)-444(j)1(aki\\261)-444(c)-1(zas)-444(c)-1(ierp)1(liwie)-444(kr)1(a)-56(ja\\252)-443(s)-1(p)1(ie)-1(cz)-1(on)1(\\241,)-444(t)28(w)28(ard\\241)]TJ -27.879 -13.549 Td[(zie)-1(mi\\246,)-333(p)1(rz)-1(y)1(gina\\252)-333(si\\246)-333(w)-333(jarzmie)-333(kiej)-333(w)28(\\363\\252,)-333(da)28(w)28(a\\252)-333(s)-1(i\\246)-333(ws)-1(zyste)-1(k)-332(te)-1(j)-332(pr)1(ac)-1(y)84(,)-333(ale)-333(i)-332(tak)]TJ 0 -13.549 Td[(ni)1(e)-334(z)-1(d)1(usi\\252)-333(t\\246)-1(skn)1(ic)-1(y)84(.)]TJ 27.879 -13.55 Td[(Ju)1(\\273)-281(m)27(u)-280(si\\246)-281(d\\252u)1(\\273)-1(y\\252)-280(dzie\\253,)-280(\\273)-1(e)-281(r)1(az)-281(p)-28(o)-280(raz)-281(sp)-27(oz)-1(iera\\252)-280(na)-280(s)-1(\\252o\\253ce)-281(i)-280(niecie)-1(r)1(pli)1(w)-1(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(ami)-440(m)-1(i)1(e)-1(r)1(z)-1(y\\252)-440(p)-28(ol)1(e)-1(,)-440(sp)-28(or)1(y)-441(k)56(a)28(w)27(a\\252)-440(le\\273)-1(a\\252)-440(jes)-1(zc)-1(ze)-441(do)-440(zaorani)1(a.)-441(Ju)1(rzy\\252)-441(si\\246)-441(te\\273)-441(w)]TJ 0 -13.549 Td[(sobie)-415(coraz)-415(bar)1(z)-1(ej)-415(i)-414(ni)1(e)-415(w)-1(i)1(ada)-415(l)1(ac)-1(ze)-1(go)-414(pra\\252)-414(k)28(onie,)-415(a)-414(os)-1(tr)1(o)-415(krzyk)56(a\\252)-415(n)1(a)-415(k)28(obi)1(e)-1(t)28(y)84(,)]TJ 0 -13.549 Td[(b)28(yc)28(h)-348(si\\246)-348(pr)1(\\246)-1(d)1(z)-1(ej)-348(r)1(uc)28(ha\\252y!)-347(T)83(ak)-348(go)-348(j)1(u\\273)-348(c)-1(osik)-347(p)-28(on)1(os)-1(i)1(\\252)-1(o,)-347(\\273)-1(e)-348(ledwie)-348(\\261c)-1(ierp)1(ia\\252,)-348(i)-347(takie)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(le)-365(k)1(\\252)-1(\\246bi)1(\\252y)-365(si\\246)-365(p)-28(o)-364(g\\252o)27(wie)-365(i)-364(pr)1(z)-1(y\\242mie)-1(w)28(a\\252y)-365(o)-27(c)-1(zy)83(,)-364(\\273)-1(e)-365(coraz)-365(c)-1(z\\246\\261)-1(cie)-1(j)-364(p)1(\\252ug)-365(m)28(u)-364(s)-1(i\\246)]TJ 0 -13.55 Td[(w)-336(r)1(\\246)-1(k)56(ac)27(h)-335(c)28(h)28(yb)-27(ota\\252)-336(zadziera)-55(j\\241c)-336(o)-335(k)55(amieni)1(e)-1(,)-335(z)-1(a\\261)-335(p)-28(o)-27(d)-335(las)-1(em)-336(tak)-335(si\\246)-336(b)28(y\\252)-335(z)-1(ar)1(y\\252)-335(p)-28(o)-28(d)]TJ 0 -13.549 Td[(jak)1(i\\261)-334(k)28(orze\\253,)-333(a\\273)-334(kr)1(\\363)-56(j)-333(si\\246)-334(ob)-27(e)-1(r)1(w)27(a\\252.)]TJ 27.879 -13.549 Td[(Nie)-490(b)29(y\\252o)-490(sp)-27(os)-1(ob)1(u)-489(dalej)-489(ora\\242,)-489(zabra\\252)-489(wi\\246)-1(c)-489(p\\252ug)-489(n)1(a)-490(sanice)-490(i)-489(za\\252o\\273)-1(ywsz)-1(y)]TJ -27.879 -13.549 Td[(w)28(a\\252)-1(ac)28(ha)-333(p)-27(o)-56(jec)27(h)1(a\\252)-334(d)1(o)-334(d)1(om)-334(p)-27(o)-334(n)1(o)28(w)-1(y)84(.)]TJ 27.879 -13.549 Td[(W)-257(c)27(ha\\252u)1(pie)-258(b)28(y)1(\\252)-1(o)-257(pu)1(s)-1(to)-258(i)-257(ws)-1(zystk)28(o)-258(le\\273)-1(a\\252o)-258(r)1(oz)-1(b)1(abran)1(e)-258(i)-258(zam)-1(\\241czone,)-258(a)-258(Han)1(k)55(a)]TJ -27.879 -13.55 Td[(k\\252\\363)-28(ci\\252a)-333(s)-1(i\\246)-333(z)-334(kim\\261)-334(w)-333(s)-1(ad)1(z)-1(ie.)]TJ 27.879 -13.549 Td[({)-273(P)28(ap)1(aruc)28(h!)-273(Na)-273(spr)1(z)-1(ec)-1(zki)-273(to)-273(czas)-274(ma!)-273({)-273(mrucza\\252)-274(i)1(d\\241c)-273(w)-274(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e,)-273(ale)-273(tam)]TJ -27.879 -13.549 Td[(ze)-1(\\271li\\252)-370(s)-1(i)1(\\246)-371(b)1(arze)-1(j)1(,)-370(gdy\\273)-370(i)-370(ten)-370(dr)1(ugi)-370(p)1(\\252ug,)-370(k)1(t\\363ren)-370(wyc)-1(i)1(\\241)-28(gn\\241\\252)-370(sp)-28(o)-27(d)-370(sz)-1(op)28(y)84(,)-370(zar\\363)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(b)28(y\\252)-384(d)1(o)-385(n)1(icz)-1(ego.)-384(D\\252ugo)-384(k)28(o\\252o)-384(niego)-384(ma)-56(jstro)28(w)28(a\\252)-385(coraz)-384(niecie)-1(r)1(pli)1(w)-1(iej,)-383(nas\\252)-1(u)1(c)27(h)28(u)1(j\\241c)]TJ 0 -13.549 Td[(k\\252\\363tn)1(i,)-333(b)-28(o)-333(Hank)56(a)-333(ju)1(\\273)-334(wykr)1(z)-1(yk)1(iw)27(a\\252a)-333(rozw\\261)-1(cie)-1(k)1(lona:)]TJ 27.879 -13.55 Td[({)-242(Zap\\252a\\242)-242(s)-1(zk)28(o)-28(dy)84(,)-242(to)-242(ci)-242(mac)-1(i)1(or\\246)-243(wyp)1(usz)-1(cz)-1(\\246,)-242(a)-242(n)1(ie)-1(,)-241(to)-242(p)-28(o)-27(dam)-242(do)-242(s\\241du!)-241(Zap\\252a\\242)]TJ -27.879 -13.549 Td[(za)-243(p\\252\\363tn)1(o,)-243(co)-243(mi)-242(je)-243(zw)-1(i)1(e)-1(sn\\241)-242(p)-28(o)-28(d)1(ar\\252a)-242(na)-243(b)1(ielnik)1(u,)-242(i)-243(za)-243(te)-243(sp)28(ysk)56(ane)-243(zie)-1(mn)1(iaki.)-242(Mam)]TJ 0 -13.549 Td[(\\261w)-1(i)1(adk)28(\\363)28(w)-391(n)1(a)-391(wsz)-1(ystk)28(o!)-390(Wid)1(z)-1(i)1(s)-1(z)-391(j)1(\\241,)-390(jak)56(a)-390(m)-1(\\241d)1(ra,)-390(b)-27(\\246)-1(d)1(z)-1(ie)-390(s)-1(e)-391(\\261wini)1(e)-391(wypasa\\252a)-391(n)1(a)]TJ 0 -13.549 Td[(moim!)-437(Nie)-437(d)1(aruj)1(\\246)-437(s)-1(w)28(o)-56(j)1(e)-1(go!)-436(A)-437(n)1(a)-437(dr)1(ugi)-436(raz)-437(to)-437(t)28(w)28(o)-56(j)1(e)-1(j)-436(mac)-1(ior)1(z)-1(e)-437(i)-436(tobie)-437(ku)1(lasy)]TJ 0 -13.549 Td[(p)-27(oprzetr\\241cam)-1(!)-305({)-305(jazgota\\252a)-305(z)-1(a)-55(jadl)1(e)-1(,)-305(\\273e)-306(za\\261)-306(i)-305(s)-1(\\241siad)1(k)55(a)-305(d)1(\\252u\\273n\\241)-305(nie)-305(os)-1(ta)28(w)28(a\\252a,)-305(to)-306(j)1(u\\273)]TJ 0 -13.549 Td[(k\\252\\363)-28(ci\\252y)-333(s)-1(i)1(\\246)-334(na)-333(z)-1(ab)-27(\\363)-55(j,)-333(wytrz\\241c)27(h)1(a)-56(j)1(\\241c)-334(do)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ez)-334(p\\252ot)28(y)-333(zac)-1(i\\261ni)1(\\246)-1(t)28(ymi)-333(pi\\246\\261c)-1(iami.)]TJ 27.879 -13.55 Td[({)-223(Hank)56(a!)-223({)-223(krzykn)1(\\241\\252)-224(zak\\252ada)-55(j\\241c)-223(s)-1(e)-223(p\\252ug)-223(na)-223(r)1(am)-1(ion)1(a.)-223(Pr)1(z)-1(yl)1(e)-1(cia\\252a)-223(roz)-1(wr)1(z)-1(es)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(an)1(a)-334(i)-333(rozcz)-1(ap)1(ie)-1(r)1(z)-1(on)1(a)-334(ki)1(e)-1(j)-333(k)28(ok)28(osz)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(wyd)1(z)-1(ierasz)-334(si\\246)-1(,)-333(j)1(a\\273)-1(e)-334(n)1(a)-334(ca\\252\\241)-333(w)-1(i)1(e)-1(\\261)-334(s\\252yc)27(h)1(a\\242)-1(!)]TJ 0 -13.549 Td[({)-434(Sw)27(o)-55(jego)-435(b)1(ron)1(i\\246)-1(!)-434(Jak\\273e,)-435(p)-27(oz)-1(w)28(ol\\246)-435(to,)-434(b)28(y)1(c)27(h)-434(m)-1(i)-434(cud)1(z)-1(e)-435(\\261winie)-435(p)29(ys)-1(k)56(a\\252y)-434(p)-28(o)]TJ -27.879 -13.549 Td[(zagonac)27(h)1(!)-381(T)28(yla)-380(s)-1(zk)28(o)-28(dy)-380(rob)1(i\\241,)-381(to)-380(m)-1(am)-381(b)28(y)1(\\242)-381(c)-1(ic)28(ho?)-381(Niedo)-27(c)-1(ze)-1(k)56(ani)1(e)-1(,)-380(nie)-381(d)1(aruj)1(\\246)-1(!)-380({)]TJ 0 -13.55 Td[(wykr)1(z)-1(yk)1(iw)27(a\\252a,)-333(ja\\273e)-334(p)1(rze)-1(rw)28(a\\252)-333(jej)-333(os)-1(tr)1(o:)]TJ 27.879 -13.549 Td[({)-333(Ogarn)1(ij)-333(si\\246)-1(,)-333(a)-333(to)-333(w)-1(y)1(gl\\241dasz)-334(kiej)-333(n)1(ie)-1(b)-27(oskie)-334(st)28(w)27(orzenie!)]TJ\nET\nendstream\nendobj\n2088 0 obj <<\n/Type /Page\n/Contents 2089 0 R\n/Resources 2087 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2074 0 R\n>> endobj\n2087 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2092 0 obj <<\n/Length 8495      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(655)]TJ -330.353 -35.866 Td[({)-333(Hale)-1(,)-333(d)1(o)-334(r)1(ob)-28(ot)28(y)-333(b)-27(\\246)-1(d)1(\\246)-334(si\\246)-334(pr)1(z)-1(y)1(biera\\252a)-333(kiej)-333(do)-333(k)28(o\\261)-1(cio\\252a,)-333(ju)1(\\261)-1(ci.)]TJ 0 -13.549 Td[(P)28(op)1(atrzy\\252)-239(na)-238(ni\\241)-239(wzgard)1(liwie,)-239(b)-27(o)-28(\\242)-239(w)-1(y)1(gl\\241da\\252a,)-238(jakb)28(y)-238(j\\241)-238(kto)-239(wyci\\241)-28(gn\\241\\252)-238(s)-1(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(\\252\\363\\273)-1(k)56(a,)-333(i)-333(rzuciws)-1(zy)-333(ramionami)-333(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(Ko)28(w)28(al)-301(b)28(y)1(\\252)-301(pr)1(z)-1(y)-300(rob)-27(o)-28(c)-1(i)1(e)-1(;)-300(ju)1(\\273)-302(z)-301(d)1(ala)-301(sz)-1(cz\\246)-1(k)56(a\\252y)-301(b)1(rz\\246)-1(kl)1(iw)27(e,)-301(mo)-28(cne)-301(g\\252osy)-301(m\\252o-)]TJ -27.879 -13.549 Td[(t\\363)28(w,)-435(a)-436(w)-435(ku)1(\\271)-1(n)1(i)-435(h)28(ucz)-1(a\\252)-435(ogie\\253)-435(i)-435(b)28(y\\252o)-435(gor\\241co)-435(kiej)-435(w)-436(p)1(ie)-1(k)1(le)-1(.)-435(M)1(ic)27(h)1(a\\252)-436(w\\252a\\261nie)-435(b)28(y\\252)]TJ 0 -13.55 Td[(o)-28(d)1(ku)28(w)28(a\\252)-388(z)-387(p)-28(omo)-28(cni)1(kiem)-388(j)1(akie\\261)-388(gru)1(bac)27(h)1(ne)-387(s)-1(ztab)28(y)84(,)-387(p)-27(ot)-388(m)28(u)-387(zalew)27(a\\252)-387(t)28(w)27(ar)1(z)-388(u)1(m)-1(o-)]TJ 0 -13.549 Td[(ru)1(s)-1(an)1(\\241,)-333(ale)-334(ku)1(\\252)-334(n)1(ie)-1(stru)1(dze)-1(n)1(ie)-334(i)-333(j)1(akb)28(y)-333(z)-334(za)-56(j)1(ad\\252o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-333(Kom)27(u)1(\\273)-334(to)-333(takie)-334(sielne)-333(os)-1(ie?)]TJ 0 -13.549 Td[({)-333(Do)-334(P)1(\\252os)-1(zk)28(o)28(w)27(ego)-334(w)28(oz)-1(a!)-333(B\\246dzie)-334(w)28(oz)-1(i\\252)-333(na)-333(tart)1(ak!)]TJ 0 -13.549 Td[(An)28(tek)-333(pr)1(z)-1(ysiad\\252)-333(na)-333(p)1(rogu)-333(skr\\246c)-1(a)-55(j\\241c)-334(sobi)1(e)-334(pap)1(ie)-1(r)1(os)-1(a.)]TJ 0 -13.549 Td[(M\\252ot)28(y)-250(w)27(ci\\241\\273)-251(b)1(i\\252y)-250(z)-1(a)-55(jad)1(le)-1(,)-250(tr)1(z)-1(ask)55(a)-55(j\\241c)-251(n)1(ieustann)1(ie)-251(raz,)-250(dw)28(a,)-251(r)1(az)-1(,)-250(d)1(w)27(a,)-250(i)-250(c)-1(ze)-1(r)1(-)]TJ -27.879 -13.55 Td[(w)28(one)-372(\\273)-1(elazo)-372(b)1(ite)-372(z)-1(e)-372(wsz)-1(ystkiej)-371(mo)-28(c)-1(y)-371(rob)1(i\\252o)-372(si\\246)-372(p)-28(o)28(w)28(olne)-372(k)1(ie)-1(b)29(y)-372(ciasto,)-372(u)1(gniatal)1(i)]TJ 0 -13.549 Td[(go)-333(te)-1(\\273)-333(na)-333(s)-1(w)28(o)-56(j)1(\\241)-334(p)-27(otrze)-1(b)-27(\\246,)-333(ja\\273e)-334(c)-1(a\\252a)-333(ku)1(\\271)-1(n)1(ia)-334(d)1(ygota\\252a.)]TJ 27.879 -13.549 Td[({)-433(Nie)-434(c)28(hcia\\252b)28(y\\261)-434(t)1(o)-434(w)28(oz)-1(i)1(\\242)-1(?)-433({)-434(r)1(z)-1(ek\\252)-433(Mic)28(ha\\252)-433(w)-1(sadza)-56(j)1(\\241c)-434(\\273e)-1(lazo)-433(w)-434(ogn)1(is)-1(k)28(o)-433(i)]TJ -27.879 -13.549 Td[(p)-27(oruc)28(h)28(uj)1(\\241c)-334(mie)-1(c)28(hem)-1(.)]TJ 27.879 -13.549 Td[({)-261(A)-261(b)-27(o)-261(to)-261(m)-1(e)-261(m\\252)-1(y)1(narz)-261(dop)1(u\\261c)-1(i)1(,)-261(p)-28(on)1(o)-28(\\242)-261(w)-1(zion)-261(w)28(o\\273e)-1(n)1(ie)-262(n)1(a)-261(s)-1(p)-27(\\363\\252k)28(\\246)-262(z)-261(organ)1(is)-1(t\\241)]TJ -27.879 -13.55 Td[(i)-333(z)-1(e)-333(\\233ydami)-333(jes)-1(t)-333(za)-334(p)1(an)-333(br)1(at.)]TJ 27.879 -13.549 Td[({)-424(Kon)1(ie)-424(m)-1(asz)-1(,)-423(p)-28(or)1(z)-1(\\241d)1(e)-1(k)-423(w)-1(sz)-1(y)1(s)-1(tek)-424(goto)28(wy)83(,)-423(a)-424(par)1(ob)-424(j)1(e)-1(n)1(o)-424(s)-1(i\\246)-424(w)28(a\\252)-1(\\246sa)-424(k)28(ole)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)28(y)84(.)-333(Nie)-1(zgorze)-1(j)-332(p\\252ac)-1(\\241)-333({)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(z)-1(ac)28(h\\246tliwie.)]TJ 27.879 -13.549 Td[({)-283(Ju)1(\\261)-1(ci,)-283(co)-283(przyd)1(a\\252)-1(b)29(y)-283(s)-1(i)1(\\246)-284(j)1(aki\\261)-283(gros)-1(z)-283(na)-283(\\273ni)1(w)27(o,)-283(al)1(e)-284(c\\363\\273)-1(,)-283(m\\252yn)1(arz)-1(a)-283(p)1(rze)-1(ciec)27(h)]TJ -27.879 -13.549 Td[(o)-333(p)-28(omo)-28(c)-334(p)1(rosi\\252)-334(n)1(ie)-334(b)-27(\\246d\\246.)]TJ 27.879 -13.55 Td[({)-333(T)83(rza)-334(b)29(y)-334(ci)-333(p)-27(om)-1(\\363)28(wi\\242)-334(z)-334(k)1(up)-27(c)-1(ami.)]TJ 0 -13.549 Td[({)-333(Ab)-28(o)-333(to)-333(je)-334(znam!)-333(By\\261)-334(to)-333(c)27(h)1(c)-1(ia\\252)-333(ws)-1(ta)28(wi\\242)-334(si\\246)-334(za)-334(mn)1(\\241!)]TJ 0 -13.549 Td[({)-333(Kiej)-333(pr)1(os)-1(isz)-1(,)-333(to)-333(p)-27(om)-1(\\363)28(wi\\246,)-333(jes)-1(zc)-1(ze)-334(dzisia)-333(do)-333(nic)28(h)-333(p)-28(ol)1(e)-1(t\\246.)]TJ 0 -13.549 Td[(An)28(tek)-338(c)-1(of)1(n\\241\\252)-339(si\\246)-339(p)1(r\\246)-1(d)1(k)28(o)-339(p)1(rze)-1(d)-338(ku)1(\\271)-1(n)1(i\\246)-1(,)-338(gd)1(y\\273)-339(z)-1(n)1(o)28(w)-1(u)1(j)-338(z)-1(agr)1(a\\252)-1(y)-338(m\\252ot)28(y)-339(i)-338(iskry)]TJ -27.879 -13.549 Td[(sypn)1(\\246)-1(\\252y)-333(si\\246)-334(des)-1(zcz)-1(em)-334(ogni)1(s)-1(t)28(ym)-333(i)-333(parz\\241c)-1(y)1(m)-1(.)]TJ 27.879 -13.55 Td[({)-333(Zaraz)-334(p)1(rz)-1(y)1(jd)1(\\246)-1(,)-333(obacz)-1(\\246)-333(jeno,)-333(jak)1(ie)-334(to)-333(dr)1(z)-1(ew)27(o)-333(z)-1(w)28(o\\273\\241.)]TJ 0 -13.549 Td[(I)-342(na)-342(tar)1(taku)-342(r)1(ob)-28(ot)1(a)-342(w)-1(r)1(z)-1(a\\252a)-342(kiej)-342(w)-342(u)1(lu,)-341(trac)-1(zk)56(a)-342(ju)1(\\273)-343(sz)-1(\\252a)-342(b)-27(e)-1(z)-342(pr)1(z)-1(erwy)83(,)-341(pi\\252y)]TJ -27.879 -13.549 Td[(z)-357(g\\252uc)28(h)28(ym)-357(zgrzytem)-357(pr)1(z)-1(e\\273)-1(era\\252y)-356(d\\252u)1(gac)27(hn)1(e)-357(klo)-28(ce,)-357(a)-356(w)27(o)-27(da)-356(z)-357(krzykiem)-357(w)28(ali\\252a)-356(s)-1(i\\246)]TJ 0 -13.549 Td[(z)-468(k)28(\\363\\252)-467(w)-468(r)1(z)-1(ek)28(\\246)-468(i)-467(s)-1(p)1(ie)-1(n)1(ion)1(a,)-468(zmordo)28(w)28(ana,)-467(goto)28(w)27(a\\252a)-467(si\\246)-468(b)-27(e)-1(\\252k)28(otli)1(w)-1(i)1(e)-468(w)-468(ciasn)28(yc)27(h)]TJ 0 -13.549 Td[(br)1(z)-1(egac)27(h)1(.)-297(Z)-297(w)28(oz\\363)27(w)-296(z)-1(w)28(alali)-296(c)27(ho)-55(jar)1(y)83(,)-296(ledwie)-297(okrzes)-1(an)1(e)-298(z)-297(ga\\252\\246z)-1(i)1(,)-297(a\\273)-297(zie)-1(mia)-296(j\\246c)-1(za\\252a,)]TJ 0 -13.55 Td[(za\\261)-334(s)-1(ze)-1(\\261ciu)-333(c)27(h)1(\\252)-1(op)1(a)-333(ob)-28(cies)-1(yw)28(a\\252o)-334(j)1(e)-334(d)1(o)-334(k)56(an)28(tu)1(,)-333(a)-334(d)1(rugi)1(e)-334(wynosi\\252y)-333(des)-1(k)1(i)-333(na)-333(s)-1(\\252o\\253ce.)]TJ 27.879 -13.549 Td[(Mateusz)-318(p)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-318(ca\\252\\241)-318(f)1(abr)1(yk)28(\\246)-1(,)-317(\\273e)-318(co)-318(tr)1(o)-28(c)27(h)1(\\246)-318(wida\\242)-317(go)-318(b)29(y\\252o)-318(w)-317(in)1(nej)-317(s)-1(tr)1(o-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(,)-333(d)1(z)-1(ielni)1(e)-334(z)-1(wij)1(a\\252)-334(si\\246)-334(r)1(z)-1(\\241d)1(z)-1(\\241c)-333(i)-334(b)1(ac)-1(zni)1(e)-334(ws)-1(zys)-1(t)1(kiego)-334(d)1(ogl\\241da)-55(j\\241c.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(w)-1(i)1(tali)-333(s)-1(i)1(\\246)-334(przyj)1(ac)-1(ielsk)28(o.)]TJ 0 -13.549 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(to)-333(B)-1(art)1(e)-1(k?)-333({)-334(p)29(yta\\252)-333(An)28(te)-1(k)-333(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(p)-27(o)-334(lu)1(dziac)27(h)1(.)]TJ 0 -13.549 Td[({)-333(Zm)-1(ierzi\\252y)-333(m)27(u)-333(si\\246)-334(Li)1(p)-28(ce)-334(i)-333(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252)-333(z)-1(a)-333(wiatrem.)]TJ 0 -13.55 Td[({)-359(\\233e)-360(t)1(o)-359(p)-28(on)1(ie)-1(k)1(t\\363ryc)28(h)-359(tak)-359(ci\\246gie)-1(m)-359(telepie)-359(p)-28(o)-359(\\261wiec)-1(ie!)-359(Rob)-27(ot)27(y)-358(w)-1(i)1(da\\242)-359(m)-1(asz)]TJ -27.879 -13.549 Td[(na)-333(d)1(\\252)-1(u)1(go,)-333(t)28(ylac)27(h)1(na)-333(dr)1(z)-1(ew)27(a!)]TJ 27.879 -13.549 Td[({)-278(A)-277(c)27(h)29(w)27(aci)-278(n)1(a)-278(j)1(aki)-277(rok)-277(ab)-28(o)-277(i)-277(d\\252u\\273e)-1(j)1(.)-277(Jak)-278(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-278(u)1(go)-28(dzi)-277(s)-1(i)1(\\246)-278(z)-1(e)-278(ws)-1(zystkimi,)]TJ -27.879 -13.549 Td[(to)-333(z)-334(p)-27(\\363\\252)-334(b)-27(oru)-333(wytn)1(ie)-334(i)-333(p)1(rz)-1(eda.)]TJ 27.879 -13.549 Td[({)-333(Na)-334(P)29(o)-28(dlesiu)-333(z)-1(n)1(o)28(w)-1(u)1(j)-333(dzisia)-56(j)-333(r)1(oz)-1(mierza)-56(j)1(\\241)-334(ziem)-1(i\\246.)]TJ 0 -13.55 Td[({)-398(Bo)-398(ju)1(\\273)-399(co)-398(dn)1(ia)-398(z)-1(g\\252asz)-1(a)-398(si\\246)-398(ktos)-1(i)1(k)-398(do)-398(zgo)-28(d)1(y!)-398(Baran)28(y)-398(j)1(uc)28(h)28(y)83(,)-397(nie)-398(c)27(h)1(c)-1(ia\\252y)]TJ -27.879 -13.549 Td[(ci\\246)-446(s\\252uc)27(h)1(a\\242)-1(,)-445(\\273e)-1(b)29(y)-445(gromad\\241)-445(s)-1(i)1(\\246)-446(ugo)-27(dzi\\242)-1(,)-445(to)-445(d)1(z)-1(iedzic)-446(d)1(a)-445(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-445(a)-445(te)-1(r)1(a)-446(r)1(obi\\241)-445(w)]TJ\nET\nendstream\nendobj\n2091 0 obj <<\n/Type /Page\n/Contents 2092 0 R\n/Resources 2090 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2090 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2096 0 obj <<\n/Length 8081      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(656)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(p)-27(o)-56(j)1(e)-1(d)1(ynk)28(\\246,)-333(c)-1(ic)28(hacz)-1(em)-1(,)-333(b)29(yle)-334(p)1(r\\246dze)-1(j)1(.)]TJ 27.879 -13.549 Td[({)-467(Niekt\\363ren)-467(cz)-1(\\252o)28(wiek)-467(to)-467(jak)-467(ten)-467(osie\\252:)-467(c)27(hces)-1(z,)-467(b)28(yc)28(h)-467(ru)1(s)-1(zy\\252)-467(nap)1(rz\\363)-28(d,)-467(to)]TJ -27.879 -13.549 Td[(ci\\241)-28(ga)-56(j)-311(go)-312(z)-1(a)-312(ogon)1(!)-312(P)28(e)-1(wn)1(ie)-313(co)-312(bar)1(an)28(y)83(,)-312(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-312(obr)1(yw)27(a)-312(k)56(a\\273dem)27(u)-312(co\\261)-313(n)1(iec)-1(o\\261,)-312(b)-28(o)-312(z)]TJ 0 -13.549 Td[(osobna)-333(si\\246)-334(go)-28(d)1(z)-1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Odebr)1(a\\252e)-1(\\261)-334(to)-333(j)1(u\\273)-334(sw)27(o)-55(je)-334(gr)1(on)28(ta?)]TJ 0 -13.55 Td[({)-302(Jes)-1(zc)-1(ze)-1(k)-301(nie)-302(wys)-1(zed\\252)-302(c)-1(zas)-303(p)-27(o)-302(\\261m)-1(i)1(e)-1(rci)-302(o)-55(jco)27(w)28(ej)-302(i)-302(n)1(ie)-303(mo\\273na)-302(rob)1(i\\242)-302(dzia\\252\\363)27(w,)]TJ -27.879 -13.549 Td[(alem)-334(se)-334(ju)1(\\273)-334(up)1(atrzy\\252)-333(p)-28(ole.)]TJ 27.879 -13.549 Td[(Za)-278(r)1(z)-1(ek)56(\\241)-278(p)-27(omi\\246)-1(d)1(z)-1(y)-277(olc)28(hami)-278(mign)1(\\246)-1(\\252a)-277(jak)56(a\\261)-278(t)28(w)27(ar)1(z)-1(,)-277(zda\\252o)-278(m)28(u)-277(s)-1(i)1(\\246)-1(,)-277(\\273e)-278(to)-278(Jagu)1(-)]TJ -27.879 -13.549 Td[(sia,)-369(w)-1(i)1(\\246)-1(c)-370(c)28(ho)-28(cia\\273)-370(p)-27(ogady)1(w)27(a\\252,)-369(ale)-370(j)1(u\\273)-370(coraz)-369(nies)-1(p)-27(ok)28(o)-56(j)1(niej)-369(lata\\252)-369(o)-28(cz)-1(ami)-369(p)-28(o)-369(g\\241sz)-1(-)]TJ 0 -13.549 Td[(cz)-1(ac)27(h)-332(nadr)1(z)-1(ec)-1(zn)28(yc)28(h.)]TJ 27.879 -13.549 Td[({)-342(T)83(aki)-342(gor\\241c,)-343(t)1(rz)-1(a)-342(si\\246)-343(i\\261\\242)-343(wyk)56(\\241)-28(pa\\242)-342({)-343(rzek\\252)-343(wres)-1(zcie)-343(i)-342(p)-28(osze)-1(d)1(\\252)-343(w)-343(d)1(\\363\\252)-343(r)1(z)-1(eki,)]TJ -27.879 -13.55 Td[(ni)1(b)28(y)-480(to)-480(wybiera)-55(j\\241c)-480(s)-1(p)-27(os)-1(ob)1(ne)-480(m)-1(iejsc)-1(e,)-480(ale)-480(s)-1(k)28(oro)-480(go)-480(skry\\252y)-480(d)1(rze)-1(w)28(a,)-480(pu)1(\\261)-1(ci\\252)-480(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(\\246)-1(d)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(\\273)-1(e)-333(ona)-333(to)-334(b)29(y\\252a.)-333(Sz\\252)-1(a)-333(z)-334(mot)28(ycz)-1(k)56(\\241)-333(do)-333(k)56(apust)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Jagusia!)-333({)-333(z)-1(a)28(w)27(o\\252a\\252)-333(z)-1(r)1(\\363)27(wn)1(a)27(wsz)-1(y)-333(si\\246)-334(z)-334(n)1(i\\241.)]TJ 0 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252a)-346(si\\246)-346(bacz)-1(n)1(ie)-346(i)-346(r)1(oz)-1(ez)-1(n)1(a)28(w)-1(szy)-346(g\\252os)-346(i)-345(jego)-346(t)28(w)27(ar)1(z)-1(,)-345(wyc)27(h)28(y)1(la)-56(j)1(\\241c)-1(\\241)-345(s)-1(i\\246)-346(ze)]TJ -27.879 -13.55 Td[(sz)-1(u)28(w)28(ar\\363)28(w,)-241(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-241(tr)1(w)27(o\\273nie,)-241(n)1(ie)-242(wiedz\\241c)-241(z)-1(go\\252a,)-241(co)-241(p)-27(o)-28(c)-1(z\\241\\242)-1(,)-240(b)-28(ezradn)1(a)-241(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(i)-333(s)-1(p)1(\\252os)-1(zona.)]TJ 27.879 -13.549 Td[({)-468(Nie)-468(p)-27(o)-1(zna)-55(jes)-1(z)-468(me)-469(to?)-468({)-468(sz)-1(epn)1(\\241\\252)-468(gor\\241co,)-468(pr)1(obuj)1(\\241c)-469(p)1(rze)-1(j)1(\\261)-1(\\242)-468(do)-468(n)1(iej)-468(na)]TJ -27.879 -13.549 Td[(dr)1(ug\\241)-393(s)-1(tr)1(on\\246.)-394(Ale)-394(rzek)55(a)-393(w)-394(t)28(ym)-394(mie)-1(j)1(s)-1(cu)-393(b)28(y\\252a)-394(g\\252\\246b)-28(ok)56(a,)-393(c)27(ho)-27(\\242)-394(w)27(\\241sk)55(a)-393(z)-1(al)1(e)-1(d)1(w)-1(i)1(e)-395(n)1(a)]TJ 0 -13.549 Td[(jak)1(ie)-1(\\261)-333(par\\246)-333(krok)28(\\363)28(w.)]TJ 27.879 -13.55 Td[({)-316(Jak\\273e)-1(,)-316(ni)1(e)-317(p)-28(ozna\\252ab)28(y)1(m)-317(ci\\246)-317(to?)-317({)-316(ogl\\241d)1(a\\252a)-317(si\\246)-317(l\\246kli)1(w)-1(i)1(e)-317(z)-1(a)-316(s)-1(i)1(e)-1(b)1(ie)-317(n)1(a)-317(k)56(apu)1(-)]TJ -27.879 -13.549 Td[(\\261nisk)28(o,)-333(k)55(a)-55(j)-333(cz)-1(erwie)-1(n)1(ia\\252y)-333(jak)1(ie)-1(\\261)-333(k)28(obiet)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e)-333(s)-1(i\\246)-333(to)-334(k)1(ryj)1(e)-1(sz)-1(,)-333(\\273e)-334(ani)-333(sp)-28(osobu)-333(ci\\246)-334(u)29(w)-1(i)1(dzie)-1(\\242?)]TJ 0 -13.549 Td[({)-333(Ka)-56(j)1(?)-334(Wy)1(gna\\252a)-333(m)-1(e)-334(t)28(w)28(o)-56(j)1(a)-334(z)-333(c)27(ha\\252u)1(p)28(y)84(,)-334(t)1(o)-334(siedz\\246)-334(u)-333(matki...)]TJ 0 -13.549 Td[({)-391(Dy)1(\\242)-392(i)-390(o)-391(t)28(ym)-391(r)1(ad)-391(b)28(y)1(m)-391(z)-392(t)1(o)-1(b)1(\\241)-391(p)-27(om\\363)27(wi\\252.)-390(Wyj)1(d\\271,)-391(Jagn)1(o,)-391(wiec)-1(zorkiem)-391(z)-1(a)]TJ -27.879 -13.55 Td[(sm)-1(\\246tarz.)-333(P)28(o)28(w)-1(i)1(e)-1(m)-334(ci)-333(c)-1(osik,)-333(p)1(rzyjd)1(\\271)-1(!)-333({)-333(pr)1(os)-1(i\\252)-333(gor\\241co.)]TJ 27.879 -13.549 Td[({)-233(Hale,)-233(\\273e)-1(b)29(y)-233(me)-234(k)1(to)-233(jes)-1(zcz)-1(e)-233(obacz)-1(y)1(\\252)-1(!)-232(Dosy\\242)-234(mam)-233(ju)1(\\273)-233(z)-1(a)-233(d)1(a)27(wn)1(e)-1(..)1(.)-233({)-233(o)-28(d)1(rze)-1(k)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(do.)-395(Al)1(e)-396(tak)-395(moles)-1(to)28(w)28(a\\252)-1(,)-394(tak)-395(s)-1(k)56(amla\\252,)-395(\\273e)-396(skrusza\\252)-1(o)-395(j)1(e)-1(j)-394(s)-1(erce)-1(,)-395(zac)-1(zyn)1(a\\252o)-396(j)1(e)-1(j)]TJ 0 -13.549 Td[(b)28(y\\242)-333(\\273)-1(al.)]TJ 27.879 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(mi)-333(to)-334(n)1(o)28(w)27(ego)-334(p)-27(o)28(wie)-1(sz)-1(?)-333(p)-27(o)-334(c\\363\\273)-334(to)-333(m)-1(e)-333(w)27(o\\252asz)-1(?)]TJ 0 -13.55 Td[({)-333(C)-1(zym)-333(c)-1(i)-333(to)-333(ju)1(\\273)-334(taki)-333(ca\\252)-1(k)1(ie)-1(m)-333(c)-1(u)1(dzy)83(,)-333(Jagu)1(\\261)-1(?)]TJ 0 -13.549 Td[({)-333(Nie)-334(cud)1(z)-1(y)84(,)-333(ale)-334(i)-333(ni)1(e)-334(s)-1(w)28(\\363)-56(j)1(!)-333(Nie)-334(w)-334(g\\252o)28(wie)-334(mi)-333(takie)-333(rze)-1(cz)-1(y)84(...)]TJ 0 -13.549 Td[({)-458(Je)-1(n)1(o)-458(przyj)1(d\\271,)-458(a)-459(n)1(ie)-459(p)-27(o\\273)-1(a\\252u)1(jes)-1(z.)-458(Bo)-56(jasz)-459(si\\246)-459(za)-458(s)-1(m\\246)-1(tar)1(z)-1(,)-458(to)-458(p)1(rz)-1(y)1(jd)1(\\271)-459(z)-1(a)]TJ -27.879 -13.549 Td[(ksi\\246\\273)-1(y)-333(sad,)-333(ni)1(e)-334(bacz)-1(ysz)-334(to)-333(k)56(a)-56(j)1(?)-334(Nie)-333(bacz)-1(ysz)-1(,)-333(Jagu)1(\\261)-1(?..)1(.)]TJ 27.879 -13.549 Td[(Ja\\273e)-334(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252a)-334(g\\252o)28(w)27(\\246,)-333(takie)-333(p\\241sy)-334(n)1(a)-333(ni\\241)-333(ud)1(e)-1(r)1(z)-1(y\\252y)84(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(p)1(le)-1(\\242,)-333(dy\\242)-333(m)-1(i)-333(ws)-1(t)28(y)1(dno.)1(..)-333({)-334(zes)-1(roma\\252a)-333(s)-1(i\\246)-333(w)-1(i)1(e)-1(lce)-1(.)]TJ 0 -13.55 Td[({)-333(Przyj)1(d\\271,)-333(Jagu\\261,)-333(c)27(ho)-28(\\242b)28(y)-333(d)1(o)-334(p)-27(\\363\\252no)-28(c)28(k)56(a)-334(cz)-1(ek)56(a\\252)-334(b)-27(\\246)-1(d)1(\\246)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(p)-27(o)-28(cz)-1(ek)56(a)-56(j)1(...)-333({)-333(o)-28(dwr\\363)-27(c)-1(i\\252a)-333(s)-1(i)1(\\246)-334(nagl)1(e)-334(i)-333(p)-28(ol)1(e)-1(cia\\252a)-334(n)1(a)-334(k)56(ap)1(u\\261nisk)28(o.)]TJ 0 -13.549 Td[(P)28(atr)1(z)-1(y\\252)-374(z)-1(a)-375(n)1(i\\241)-375(\\252ak)28(omie)-375(i)-374(prze)-1(j)1(\\246)-1(\\252y)-374(go)-375(tak)1(ie)-375(lub)-27(o\\261)-1(cie)-375(i)-374(takie)-375(p\\252omia)-374(w)-1(zbu)1(-)]TJ -27.879 -13.549 Td[(rzy\\252y)-348(k)1(rew)-1(,)-347(\\273)-1(e)-348(got\\363)28(w)-348(b)28(y\\252)-347(le)-1(cie\\242)-348(z)-1(a)-348(n)1(i\\241)-348(i)-347(bra\\242)-348(j)1(\\241)-348(c)27(h)1(o)-28(\\242b)28(y)-348(n)1(a)-348(o)-28(cz)-1(ac)28(h)-348(wsz)-1(ystkic)28(h..)1(.)]TJ 0 -13.549 Td[(Ledwie)-334(si\\246)-334(j)1(u\\273)-334(p)-27(ohamo)28(w)27(a\\252.)]TJ 27.879 -13.55 Td[({)-268(Nic,)-267(jeno)-268(ta)-267(s)-1(p)1(ie)-1(k)56(a)-268(tak)-267(me)-269(r)1(oz)-1(ebr)1(a\\252)-1(a!)-267({)-268(p)-27(om)27(y)1(\\261)-1(la\\252)-268(r)1(oz)-1(d)1(z)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-269(si\\246)-268(s)-1(p)1(ies)-1(z-)]TJ -27.879 -13.549 Td[(ni)1(e)-334(do)-333(k)56(\\241)-28(pi)1(e)-1(li)1(.)]TJ\nET\nendstream\nendobj\n2095 0 obj <<\n/Type /Page\n/Contents 2096 0 R\n/Resources 2094 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2094 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2099 0 obj <<\n/Length 8073      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(657)]TJ -330.353 -35.866 Td[(Pr)1(z)-1(ec)27(h)1(\\252o)-28(dzi\\252)-333(s)-1(i\\246)-334(gal)1(ancie)-334(i)-333(j\\241\\252)-333(delib)-27(ero)28(w)27(a\\242)-333(nad)-333(sob\\241.)]TJ 0 -13.549 Td[({)-333(\\233e)-334(to)-333(c)-1(z\\252o)27(wiek)-333(s)-1(\\252ab)28(y)-333(ki)1(e)-1(j)-333(ten)-333(p)1(a\\271)-1(d)1(z)-1(ierz,)-333(b)-28(ele)-334(co)-334(go)-333(p)-27(oniesie)-1(.)1(..)]TJ 0 -13.549 Td[(Wst)28(yd)-420(m)27(u)-420(si\\246)-421(z)-1(r)1(obi\\252o,)-420(roze)-1(j)1(rza\\252)-421(si\\246)-1(,)-420(c)-1(zy)-420(ab)28(y)-420(go)-421(kto)-420(z)-421(ni\\241)-420(nie)-421(wid)1(z)-1(i)1(a\\252,)-421(i)]TJ -27.879 -13.549 Td[(usiln)1(ie)-334(r)1(oz)-1(w)28(a\\273)-1(a\\252)-333(ws)-1(zys)-1(t)1(k)28(o,)-334(co)-333(m)27(u)-333(o)-333(ni)1(e)-1(j)-333(p)-27(o)28(w)-1(i)1(adali.)]TJ 27.879 -13.549 Td[({)-432(T)83(ak)56(a\\261)-432(to)-432(t)28(y)84(,)-432(j)1(ag\\363)-28(d)1(k)28(o,)-432(tak)56(a!)-431({)-432(m)27(y\\261la\\252)-432(ze)-432(wz)-1(gar)1(d\\241)-432(i)-431(jakb)29(y)-432(z)-432(\\273ale)-1(m,)-431(ale)]TJ -27.879 -13.55 Td[(nar)1(az)-439(pr)1(z)-1(ystan\\241\\252)-438(p)-28(o)-27(d)-438(jakim\\261)-439(d)1(rz)-1(ew)28(e)-1(m)-439(i)-438(sto)-56(j)1(a\\252)-439(z)-439(pr)1(z)-1(yw)28(art)28(ymi)-438(p)-28(o)28(wiek)56(am)-1(i,)-438(b)-27(o)]TJ 0 -13.549 Td[(ja)28(wi\\252a)-333(m)27(u)-333(si\\246)-334(n)1(a)-334(o)-27(c)-1(zac)27(h)-333(w)-333(c)-1(a\\252ej)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(cud)1(no\\261c)-1(i.)]TJ 27.879 -13.549 Td[({)-361(Cheba)-360(takiej)-361(d)1(ru)1(gie)-1(j)-360(ni)1(e)-362(ma)-361(n)1(a)-361(ws)-1(zystkim)-361(\\261)-1(wiecie)-1(!)-360({)-361(j\\246kn)1(\\241\\252)-361(i)-361(strasz)-1(n)1(ie)]TJ -27.879 -13.549 Td[(zapragn)1(\\241\\252)-336(jes)-1(zcz)-1(e)-336(raz)-336(j\\241)-335(widzie\\242)-1(,)-335(jes)-1(zc)-1(ze)-336(raz)-336(ogarn\\241\\242)-336(r)1(am)-1(ion)1(ami,)-336(p)1(rzyc)-1(i)1(s)-1(n)1(\\241\\242)-337(d)1(o)]TJ 0 -13.549 Td[(se)-1(rca)-359(i)-360(n)1(api)1(\\242)-360(s)-1(i\\246)-359(z)-360(t)28(yc)27(h)-359(w)28(arg)-359(c)-1(ze)-1(r)1(w)27(on)29(yc)27(h)1(,)-360(p)1(i\\242)-360(n)1(a)-360(u)1(m)-1(\\363r)-359(ten)-359(mi\\363)-28(d)-359(s\\252o)-28(dk)1(i,)-359(pi\\242)-360(d)1(o)]TJ 0 -13.549 Td[(dn)1(a...)]TJ 27.879 -13.55 Td[({)-432(Jeno)-432(ten)-432(ostatni)-431(razik,)-432(Jagu)1(s)-1(i)1(u!)-432(ten)-432(ostatn)1(i!)-432({)-432(sz)-1(epta\\252)-432(b)1(\\252)-1(agal)1(nie,)-432(j)1(ak-)]TJ -27.879 -13.549 Td[(b)28(y)-460(do)-460(niej.)-460(D\\252ugo)-460(p)-27(ote)-1(m)-461(p)1(rze)-1(cie)-1(r)1(a\\252)-461(o)-28(cz)-1(y)-460(w)28(o)-28(dz\\241c)-461(ni)1(m)-1(i)-460(p)-28(o)-460(dr)1(z)-1(ew)27(ac)28(h,)-460(nim)-460(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252)-381(i)-382(p)-27(os)-1(ze)-1(d)1(\\252)-382(d)1(o)-382(ku)1(\\271)-1(n)1(i.)-381(Mic)28(ha\\252)-382(b)29(y\\252)-382(sam)-382(i)-382(w\\252a\\261nie)-382(j)1(u\\273)-382(si\\246)-382(zabiera\\252)-382(d)1(o)]TJ 0 -13.549 Td[(p\\252u)1(ga.)]TJ 27.879 -13.549 Td[({)-333(A)-334(strzyma)-334(t)28(w)28(\\363)-56(j)-333(w)28(\\363z)-334(taki)1(e)-334(c)-1(i)1(\\246)-1(\\273ary?)-333({)-334(sp)28(yt)1(a\\252)-1(.)]TJ 0 -13.55 Td[({)-333(B)-1(y)1(le)-1(m)-333(jeno)-333(m)-1(i)1(a\\252)-334(co)-334(k)1(\\252)-1(a\\261\\242...)]TJ 0 -13.549 Td[({)-333(Kiej)-333(obiecuj\\246,)-333(to)-333(jakb)28(y)1(\\261)-334(ju)1(\\273)-334(mia\\252)-334(n)1(a)-333(w)27(ozie)-1(.)]TJ 0 -13.549 Td[(An)28(tek)-333(j\\241\\252)-333(pisa\\242)-334(kr)1(e)-1(d)1(\\241)-334(n)1(a)-334(d)1(rzwiac)27(h)-333(i)-333(rac)28(ho)28(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(sz)-1(cze)-1(k)-333(do)-333(\\273niw)-333(z)-1(ar)1(obi\\252b)28(y)1(m)-334(z)-1(e)-333(trzys)-1(t)1(a)-334(z\\252ot)27(y)1(c)27(h!)1({)-334(r)1(z)-1(ek\\252)-333(rado\\261ni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Akur)1(atnie)-333(m)-1(ia\\252b)29(y\\261)-334(na)-333(spra)28(w)28(\\246)-334({)-333(oz)-1(w)28(a\\252)-334(si\\246)-334(k)28(o)28(w)28(al)-334(o)-27(d)-333(niec)27(h)1(c)-1(eni)1(a.)]TJ 0 -13.55 Td[(An)28(tek)-333(s)-1(c)28(hm)28(urzy\\252)-333(s)-1(i\\246)-333(nagle)-334(i)-333(o)-27(c)-1(zy)-333(z)-1(a\\261w)-1(i)1(e)-1(ci\\252y)-333(m)27(u)-333(p)-27(on)28(u)1(ro.)]TJ 0 -13.549 Td[({)-429(Zm)-1(or)1(a)-429(ta)-429(m)-1(o)-55(ja)-429(spra)28(w)28(a,)-429(c)-1(o)-429(j)1(\\241)-429(w)-1(sp)-27(om)-1(n)1(\\246)-1(,)-429(t)1(o)-430(mi)-429(wsz)-1(y\\242k)28(o)-429(z)-430(r)1(\\241k)-429(le)-1(ci,)-429(\\273e)]TJ -27.879 -13.549 Td[(na)28(w)28(e)-1(t)-333(\\273y\\242)-334(si\\246)-334(o)-28(d)1(e)-1(c)28(hcie)-1(w)28(a...)]TJ 27.879 -13.549 Td[({)-489(Nie)-489(dziw)27(ot)1(a,)-489(jeno)-489(to)-489(me)-490(zas)-1(tan)1(a)28(w)-1(i)1(a,)-489(\\273)-1(e)-489(s)-1(i)1(\\246)-490(za)-489(nij)1(akim)-489(p)-28(or)1(atun)1(kiem)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-334(n)1(ie)-334(r)1(oz)-1(gl\\241d)1(as)-1(z.)]TJ 27.879 -13.55 Td[({)-333(A)-334(c\\363\\273)-334(to)-333(p)-27(ore)-1(d)1(z)-1(\\246?)]TJ 0 -13.549 Td[({)-361(T)83(rze)-1(b)1(a)-362(b)29(y)-361(jedn)1(ak)-361(c)-1(o\\261)-362(zrob)1(i\\242)-1(!)-361(J)1(ak\\273)-1(e,)-361(da\\242)-361(s)-1(i\\246)-361(to)-361(p)-28(o)-28(d)-360(n\\363\\273,)-361(kiej)-361(te)-1(n)-360(c)-1(ielak)]TJ -27.879 -13.549 Td[(rze)-1(zak)28(o)28(wi?)]TJ 27.879 -13.549 Td[({)-333(G\\252o)28(w)27(\\241)-333(m)27(u)1(ru)-333(n)1(ie)-334(pr)1(z)-1(ebi)1(j\\246!)-334({)-333(w)28(e)-1(stc)27(h)1(n\\241\\252)-333(b)-28(ole\\261nie.)]TJ 0 -13.549 Td[(Mi)1(c)27(ha\\252)-436(ku)1(\\252)-437(zno)28(wu)-436(z)-437(za)-56(j)1(ad\\252o\\261)-1(ci\\241,)-436(za\\261)-437(An)28(tek)-436(p)-28(ogr)1(\\241\\273)-1(y\\252)-436(si\\246)-437(w)-436(niep)-28(ok)28(o)-55(j\\241ce)]TJ -27.879 -13.55 Td[(i)-404(strac)27(h)1(liw)28(e)-405(d)1(umania)-404(i)-404(taki)1(e)-405(m)27(y)1(\\261)-1(le)-404(go)-404(na)28(wie)-1(d)1(z)-1(a\\252y)84(,)-404(ja\\273e)-405(mieni\\252)-404(s)-1(i)1(\\246)-405(na)-404(t)28(w)28(arzy)-404(i)]TJ 0 -13.549 Td[(zryw)28(a\\252)-271(si\\246)-271(z)-271(m)-1(i)1(e)-1(j)1(s)-1(ca,)-270(b)-28(ez)-1(r)1(adni)1(e)-271(lata)-56(j)1(\\241c)-271(o)-28(cz)-1(ami)-270(p)-28(o)-270(\\261)-1(wiec)-1(i)1(e)-1(,)-270(ale)-271(sz)-1(w)28(agiere)-1(k)-270(d)1(a\\252)-271(m)27(u)]TJ 0 -13.549 Td[(si\\246)-334(d\\252u)1(go)-334(t)1(rapi\\242)-333(s)-1(zpieguj)1(\\241c)-334(go)-333(jeno)-333(c)27(h)28(y)1(trymi)-333(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)-333(a\\273)-334(w)-334(k)28(o\\253)1(c)-1(u)-333(r)1(z)-1(ek\\252)-334(cic)28(ho:)]TJ 27.879 -13.549 Td[({)-333(Ka\\271)-1(mir)1(z)-334(z)-334(Mo)-27(dlicy)-333(umia\\252)-333(s)-1(e)-333(p)-28(or)1(e)-1(d)1(z)-1(i\\242...)]TJ 0 -13.549 Td[({)-333(T)83(e)-1(n)1(,)-333(c)-1(o)-333(to)-333(ucie)-1(k)1(\\252)-334(d)1(o)-334(Hame)-1(r)1(yki?)]TJ 0 -13.549 Td[({)-333(A)-334(ten)-333(sam)-1(!)-333(M\\241d)1(rala,)-333(j)1(uc)28(ha,)-333(pr)1(z)-1(ew)27(\\241c)28(ha\\252)-333(pism)-1(o)-333(n)1(os)-1(em)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(o)-333(m)27(u)-333(to)-333(do)28(wied\\252y)84(,)-334(\\273e)-334(zabi\\252)-333(tego)-334(stra\\273ni)1(k)55(a?)]TJ 0 -13.549 Td[({)-333(Nie)-334(cz)-1(ek)56(a\\252)-1(,)-333(j)1(a\\273)-1(e)-334(m)28(u)-333(do)28(wied\\241!)-333(Nie)-333(g\\252)-1(u)1(pi)-333(zgni\\242)-333(w)-334(kr)1(e)-1(minal)1(e)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(\\212ac)-1(n)1(o)-334(m)28(u)-333(b)28(y\\252o,)-333(k)56(a)28(w)27(aler.)]TJ 0 -13.549 Td[({)-362(Ratuj)1(e)-363(si\\246,)-362(kt\\363ren)-362(m)28(usi.)-362(Ja)-362(ci\\246)-363(ta)-362(d)1(o)-362(nicz)-1(eg\\363)-56(j)-361(nie)-362(nama)28(w)-1(i)1(am)-1(,)-362(ab)29(y\\261)-363(n)1(ie)]TJ -27.879 -13.549 Td[(p)-27(om)27(y\\261la\\252,)-417(\\273)-1(e)-418(mam)-418(w)-418(t)28(ym)-418(c)-1(osik)-417(s)-1(w)28(o)-56(j)1(e)-1(go)-417(na)-418(wid)1(oku,)-417(a)-418(j)1(e)-1(n)1(o)-418(p)-27(o)28(w)-1(i)1(e)-1(d)1(am)-1(,)-417(jak)-417(to)]TJ 0 -13.55 Td[(w)-342(pr)1(z)-1(yp)1(adku)-341(rob)1(i\\252y)-342(d)1(rugi)1(e)-1(.)-342(Jak)-341(c)-1(i)-341(s)-1(i\\246)-342(\\273ywnie)-342(p)-28(o)-27(dob)1(a,)-342(tak)-342(zr\\363b)1(.)-342(W)83(o)-55(jtek)-342(Ga)-55(jd)1(a)]TJ 0 -13.549 Td[(z)-392(W)84(olicy)-391(te\\273)-392(ano)-391(wr\\363)-27(c)-1(i\\252)-391(z)-392(k)1(rem)-1(in)1(a\\252u)-391(w)-391(s)-1(ame)-392(\\261wi\\241tki.)-391(C\\363\\273,)-391(dzies)-1(i\\246\\242)-392(r)1(ok)28(\\363)27(w)-391(to)-28(\\242)]TJ\nET\nendstream\nendobj\n2098 0 obj <<\n/Type /Page\n/Contents 2099 0 R\n/Resources 2097 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2097 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2102 0 obj <<\n/Length 9238      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(658)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(jesz)-1(cz)-1(ek)-333(nie)-333(\\273)-1(ycie,)-333(m)-1(o\\273na)-333(pr)1(z)-1(etrzyma\\242)-1(..)1(.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(si\\246)-1(\\242)-333(rok)28(\\363)28(w,)-334(J)1(e)-1(zus)-334(k)28(o)-28(c)28(han)28(y)1(!)-333({)-334(j)1(\\246)-1(kn)1(\\241\\252)-334(c)28(h)28(yta)-55(j\\241c)-334(si\\246)-334(za)-333(g\\252)-1(o)28(w)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(t)28(yl)1(e)-334(o)-28(d)1(s)-1(iedzia\\252)-333(w)-334(ci\\246)-1(\\273kic)28(h)-333(rob)-27(otac)27(h)1(,)-333(ju\\261ci,)-333(c)-1(o)-333(k)56(arw)28(a)-1(s)-333(c)-1(zas)-1(u)1(.)]TJ 0 -13.549 Td[({)-328(Wsz)-1(y)1(s)-1(tk)28(o)-328(got\\363)28(w)28(e)-1(m)-328(pr)1(z)-1(enie\\261\\242)-1(,)-328(b)-27(ele)-329(j)1(e)-1(n)1(o)-328(nie)-328(sie)-1(d)1(z)-1(eni)1(e)-1(.)-328(Jezus!)-328(s)-1(i)1(e)-1(d)1(z)-1(ia\\252em)]TJ -27.879 -13.549 Td[(te)-334(p)1(ar\\246)-334(mies)-1(i)1(\\246)-1(cy)83(,)-333(a)-333(ju)1(\\273)-334(m)-1(e)-333(s)-1(i\\246)-333(du)1(r)-333(c)27(h)28(yta\\252.)1(..)]TJ 27.879 -13.55 Td[({)-333(A)-334(za)-333(trzy)-334(n)1(iedzie)-1(l)1(e)-334(b)28(y\\252b)28(y)1(\\261)-334(ju)1(\\273)-334(z)-1(a)-333(morzam)-1(i)1(,)-334(n)1(iec)27(h)-333(Jan)1(kiel)-334(p)-27(o)28(wie)-1(.)1(..)]TJ 0 -13.549 Td[({)-348(S)1(trasz)-1(n)1(ie)-349(d)1(alek)28(o!)-348(Jak)-348(to)-347(i\\261)-1(\\242,)-348(wsz)-1(y\\242k)28(o)-348(cie)-1(p)1(n\\241\\242,)-348(osta)28(w)-1(i)1(\\242)-349(d)1(om)-1(,)-347(dzie)-1(ci,)-348(zie-)]TJ -27.879 -13.549 Td[(mi\\246)-1(,)-333(wie\\261)-334(i)-333(w)-334(t)28(y)1(li)-333(\\261)-1(wiat,)-333(n)1(a)-334(za)28(w)-1(d)1(y!)-333({)-333(Z)-1(gr)1(oz)-1(a)-333(go)-333(prze)-1(j)1(\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[({)-333(T)27(yl)1(a)-334(p)-27(osz)-1(\\252o)-333(dob)1(ro)28(w)27(oln)1(ie)-334(i)-333(an)1(i)-334(k)28(om)28(u)-333(w)-334(g\\252o)28(wie)-334(wraca\\242)-334(d)1(o)-334(t)28(yc)28(h)-333(ra)-55(j\\363)28(w.)]TJ 0 -13.549 Td[({)-333(A)-334(mni)1(e)-334(na)28(w)28(e)-1(t)-333(p)-27(om)27(y\\261le\\242)-334(o)-334(t)28(y)1(m)-334(s)-1(t)1(ras)-1(zno!)]TJ 0 -13.549 Td[({)-331(Ju)1(\\261)-1(ci)-331(ale)-331(obacz)-332(W)84(o)-56(j)1(tk)56(a)-331(i)-331(p)-27(os)-1(\\252u)1(c)27(ha)-55(j,)-330(c)-1(o)-331(r)1(oz)-1(p)-27(o)28(w)-1(iad)1(a)-331(o)-331(t)28(ym)-331(kreminal)1(e)-1(,)-331(to)]TJ -27.879 -13.55 Td[(ci\\246)-415(jes)-1(zc)-1(ze)-1(k)-414(bar)1(z)-1(ej)-414(z)-1(af)1(rasuje!)-414(Jak\\273e)-1(,)-414(c)27(h\\252op)-414(ma)-415(n)1(ie)-1(sp)-27(e)-1(\\252na)-414(c)-1(zterdzie\\261)-1(ci)-415(r)1(ok)28(\\363)27(w,)-414(a)]TJ 0 -13.549 Td[(do)-336(cna)-336(ju)1(\\273)-337(p)-27(os)-1(i)1(w)-1(i)1(a\\252)-337(i)-336(zgarbacia\\252,)-336(\\273yw)27(\\241)-336(kr)1(w)-1(i)1(\\241)-337(p)1(luj)1(e)-337(i)-336(ku)1(lasam)-1(i)-336(ledwie)-336(p)-28(o)28(w\\252\\363)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[(Jeno)-279(patr)1(z)-1(e\\242)-1(,)-279(j)1(ak)-279(p)-28(\\363)-55(jd)1(z)-1(ie)-279(na)-279(ksi\\246)-1(\\273\\241)-279(ob)-28(or)1(\\246)-1(.)-279(Ale)-279(p)-28(o)-279(c)-1(o)-279(ci)-279(gada\\242,)-279(m)-1(asz)-280(sw)27(\\363)-55(j)-279(rozum,)]TJ 0 -13.549 Td[(to)-333(s)-1(i)1(\\246)-334(jego)-334(p)-27(os\\252uc)27(h)1(a)-56(j)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252)-485(w)-486(p)-27(or\\246)-1(,)-485(zm)-1(i)1(ark)28(o)28(w)27(a)28(ws)-1(zy)83(,)-485(\\273e)-486(ju)1(\\273)-486(w)-486(n)1(im)-486(p)-27(os)-1(ia\\252)-485(ni)1(e)-1(p)-27(ok)28(\\363)-56(j)1(,)-486(wi\\246c)]TJ -27.879 -13.55 Td[(res)-1(zt\\246)-377(zos)-1(ta)28(wi\\252)-377(cz)-1(aso)28(w)-1(i)1(,)-377(skrycie)-377(si\\246)-377(jeno)-377(cies)-1(z\\241c)-377(z)-377(plon)1(\\363)28(w)-1(,)-376(jaki)1(e)-377(s)-1(p)-27(o)-28(dziew)27(a\\252)-376(s)-1(i\\246)]TJ 0 -13.549 Td[(ze)-1(b)1(ra\\242)-1(.)-333(Al)1(e)-334(s)-1(k)28(o\\253)1(c)-1(zyws)-1(zy)-333(p\\252u)1(g)-334(ozw)27(a\\252)-333(s)-1(i)1(\\246)-334(w)27(eso\\252)-1(o:)]TJ 27.879 -13.549 Td[({)-490(P)29(ole)-1(t\\246)-490(tera)-489(do)-490(k)1(up)-27(c)-1(\\363)28(w,)-490(a)-489(w)27(\\363z)-490(gotu)1(j)-490(n)1(a)-490(j)1(utr)1(o,)-490(b)-27(o)-490(w)28(oz)-1(i\\252)-489(b)-28(\\246dzies)-1(z.)-490(O)]TJ -27.879 -13.549 Td[(spra)28(wie)-409(n)1(ie)-409(m)27(y)1(\\261)-1(l,)-408(n)1(ie)-409(w)27(ar)1(to)-409(se)-409(p)1(s)-1(u)1(\\242)-409(g\\252)-1(o)28(wy)84(,)-409(to)-408(ano)-408(b)-27(\\246)-1(d)1(z)-1(ie,)-408(c)-1(o)-408(b)-28(\\246dzie)-409(i)-408(co)-409(B\\363g)]TJ 0 -13.549 Td[(mi\\252os)-1(i)1(e)-1(rn)29(y)-333(p)-28(ozw)27(oli)1(.)-333(Przyj)1(d\\246)-334(d)1(o)-334(ci\\246)-334(wiec)-1(zorem.)]TJ 27.879 -13.55 Td[(Ale)-224(An)28(t)1(e)-1(k)-223(ni)1(e)-224(z)-1(ap)-27(om)-1(n)1(ia\\252)-224(t)1(ak)-224(zaraz;)-224(p)-27(o\\252kn)1(\\241\\252)-224(te)-224(j)1(e)-1(go)-223(przyj)1(ac)-1(ielskie)-224(p)-27(o)28(w)-1(i)1(adki)]TJ -27.879 -13.549 Td[(kiej)-291(ry)1(ba)-291(przyn)1(\\246)-1(t\\246)-292(i)-291(d)1(\\252a)27(wi\\252)-291(s)-1(i)1(\\246)-292(ni\\241,)-291(d)1(ar\\252o)-292(m)28(u)-291(ano)-291(w)28(\\241trob)-27(\\246)-1(,)-291(ja\\273e)-292(ledwie)-291(s)-1(i\\246)-292(r)1(uc)28(ha\\252)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(groz\\241)-333(m)-1(\\246c)-1(z\\241c)-1(y)1(c)27(h)-333(p)-27(om)27(y\\261lu)1(nk)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-286(Dzies)-1(i\\246\\242)-286(rok)28(\\363)28(w!)-286(Dzies)-1(i\\246\\242)-286(rok)28(\\363)28(w)-286({)-286(sz)-1(epta\\252)-285(niekiedy)84(,)-286(d)1(r\\246t)27(wiej\\241c)-286(w)-286(strac)28(h)28(u:)]TJ 0 -13.549 Td[(Mr)1(ok)-371(ju)1(\\273)-372(zapad)1(a)-1(\\252,)-371(l)1(ud)1(z)-1(ie)-371(\\261)-1(ci\\241)-28(gal)1(i)-371(z)-372(p)-27(\\363l,)-371(w)-371(ob)-28(ej\\261c)-1(i)1(u)-371(p)-27(o)-28(dn)1(i\\363s\\252)-372(si\\246)-372(n)1(iem)-1(a\\252y)]TJ -27.879 -13.55 Td[(rejw)28(ac)27(h)1(,)-445(gdy\\273)-445(Witek)-445(p)1(rzygna\\252)-445(stado,)-445(a)-445(k)28(ob)1(ie)-1(t)28(y)-445(k)1(r\\246c)-1(i\\252y)-445(si\\246)-445(k)28(ole)-446(u)1(do)-55(j\\363)28(w)-445(i)-445(ob-)]TJ 0 -13.549 Td[(rz\\241dk)28(\\363)28(w,)-314(z)-1(a\\261)-314(na)-314(w)-1(si)-314(ja\\273e)-315(si\\246)-315(tr)1(z)-1(\\246s)-1(\\252o)-314(o)-28(d)-314(p)1(rze)-1(d)1(w)-1(i)1(e)-1(cz)-1(or)1(n)28(yc)27(h)-314(p)-27(ogw)28(ar\\363)28(w)-315(i)-314(wrzas)-1(k)28(\\363)28(w)]TJ 0 -13.549 Td[(dziec)-1(i)1(,)-334(k)56(\\241)-28(p)1(i\\241cyc)27(h)-333(si\\246)-334(w)28(e)-334(sta)27(wie.)]TJ 27.879 -13.549 Td[(An)28(tek)-482(wyci\\241)-28(gn)1(\\241\\252)-482(w)27(\\363z)-482(za)-482(s)-1(to)-27(do\\252\\246)-1(,)-481(ab)28(y)-482(go)-481(przyry)1(c)27(h)28(to)28(w)28(a\\242)-483(i)-481(opatr)1(z)-1(y\\242)-482(na)]TJ -27.879 -13.549 Td[(ju)1(tro,)-468(ale)-469(wnet)-469(o)-27(dec)27(hcia\\252o)-469(m)28(u)-468(s)-1(i\\246)-469(wsz)-1(y)1(s)-1(tki)1(e)-1(go,)-468(\\273)-1(e)-469(j)1(e)-1(n)1(o)-469(kr)1(z)-1(yk)1(n\\241\\252)-469(n)1(a)-469(P)1(ie)-1(t)1(rk)56(a,)]TJ 0 -13.55 Td[(p)-27(o)-56(j)1(\\241c)-1(ego)-334(k)28(on)1(ie)-334(p)-27(o)-28(d)-333(stud)1(ni\\241:)]TJ 27.879 -13.549 Td[({)-333(Nas)-1(maru)1(j)-333(w)27(\\363z)-333(i)-334(wyp)-27(orz\\241d\\271,)-333(b)-28(\\246dzies)-1(z)-333(o)-28(d)-333(ju)1(tra)-333(w)27(ozi\\252)-333(na)-333(tartak)1(.)]TJ 0 -13.549 Td[(P)28(ar)1(ob)-333(z)-1(akl)1(\\241\\252)-334(siarcz)-1(y)1(\\261)-1(cie)-1(.)-333(Ni)1(e)-334(s)-1(z\\252a)-334(m)28(u)-333(w)-334(smak)-333(tak)55(a)-333(rob)-27(ota.)]TJ 0 -13.549 Td[({)-306(Za)28(w)-1(r)1(z)-1(y)1(j)-306(g\\246)-1(b)-27(\\246)-306(i)-306(r\\363b)1(,)-306(c)-1(o)-306(ci)-306(k)56(a\\273)-1(\\241!)-306(Han)29(u\\261,)-306(da)-55(j)-306(tr)1(z)-1(y)-306(miark)1(i)-306(o)28(w)-1(sa)-306(na)-306(ob)1(rok,)-306(a)]TJ -27.879 -13.549 Td[(k)28(oni)1(c)-1(zyn)28(y)-333(p)1(rz)-1(y)1(nie\\261)-334(im)-333(z)-334(p)-28(ol)1(a,)-333(Pietrek,)-333(ni)1(e)-1(c)27(h)-333(se)-334(p)-27(o)-28(d)1(jedz\\241...)]TJ 27.879 -13.549 Td[(Hank)56(a)-275(p)1(r\\363b)-27(o)28(w)27(a\\252a)-275(go)-275(rozp)28(yt)28(y)1(w)27(a\\242,)-275(ale)-275(c)-1(osik)-275(j)1(e)-1(n)1(o)-275(mruk)1(n\\241\\252)-275(i)-275(p)-27(okr)1(\\246)-1(ciws)-1(zy)-275(si\\246)]TJ -27.879 -13.55 Td[(p)-27(o)-290(ob)-28(ej\\261c)-1(i)1(u)-290(p)-27(os)-1(ze)-1(d)1(\\252)-290(do)-290(Mateusz)-1(a,)-289(z)-291(kt\\363r)1(ym)-290(te)-1(r)1(az)-291(\\273y\\252)-290(w)-291(wielki)1(m)-291(p)1(rz)-1(y)1(jacie)-1(l)1(s)-1(t)28(wie.)]TJ 27.879 -13.549 Td[(Mateusz)-406(t)28(yl)1(e)-406(c)-1(o)-405(j)1(e)-1(n)1(o)-406(b)29(y\\252)-405(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-406(z)-405(rob)-27(ot)27(y)-405(i)-405(w\\252a\\261nie)-405(c)27(hl)1(ipa\\252)-405(p)-27(o)-28(d)-405(c)27(h)1(a\\252up\\241)]TJ -27.879 -13.549 Td[(zs)-1(iad)1(\\252e)-334(mle)-1(k)28(o)-333(la)-333(o)-28(c)27(h)1(\\252o)-28(dy)84(.)]TJ 27.879 -13.549 Td[(Sk)56(\\241d)1(c)-1(i\\261,)-333(jak)1(b)28(y)-333(z)-1(e)-334(sadu)1(,)-333(s)-1(\\241cz)-1(y)1(\\252)-1(o)-333(si\\246)-334(cic)27(h)1(e)-1(,)-333(\\273a\\252os)-1(n)1(e)-334(p\\252ak)56(anie.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(tam)-334(t)1(ak)-334(skwiercz)-1(y?)]TJ 0 -13.55 Td[({)-319(A)-320(Nastusia.)-319(Urw)28(ani)1(e)-320(g\\252o)27(wy)-319(mam)-320(z)-320(t)28(ymi)-319(jamorami)-319(z)-1(ap)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-320(ju)1(\\273)-320(wy-)]TJ -27.879 -13.549 Td[(sz)-1(\\252y)84(,)-363(\\261lub)-362(ma)-363(b)29(y\\242)-363(w)-363(n)1(ie)-1(d)1(z)-1(i)1(e)-1(l\\246,)-362(a)-363(Domini)1(k)28(o)27(w)28(a)-363(w)28(cz)-1(ora)-55(j)-362(z)-1(ap)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-362(pr)1(z)-1(ez)-363(s)-1(o\\252-)]TJ\nET\nendstream\nendobj\n2101 0 obj <<\n/Type /Page\n/Contents 2102 0 R\n/Resources 2100 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2100 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2105 0 obj <<\n/Length 8928      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(659)]TJ -358.232 -35.866 Td[(t)28(ysa,)-367(j)1(ak)28(o)-366(gos)-1(p)-27(o)-28(dar)1(k)55(a)-366(n)1(a)-367(n)1(i\\241)-367(zapi)1(s)-1(an)1(a)-367(i)-366(S)1(z)-1(ymk)28(o)28(wi)-367(n)1(ie)-367(u)1(dzie)-1(l)1(i)-367(an)1(i)-366(z)-1(agon)1(a,)-366(i)-367(d)1(o)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)28(y)-333(go)-333(nie)-333(pu)1(\\261)-1(ci.)-333(I)-334(\\261wi\\246)-1(cie)-334(t)1(o)-334(zrob)1(i,)-333(z)-1(n)1(am)-334(ja)-333(dob)1(rze)-334(to)-333(s)-1(ob)1(ac)-1(ze)-334(n)1(as)-1(ienie.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(na)-333(to)-333(Szym)-1(ek?)]TJ 0 -13.549 Td[({)-428(A)-428(co,)-428(j)1(ak)-428(usiad)1(\\252)-428(w)-429(sadzie)-428(ran)1(o,)-428(tak)-428(i)-427(dot\\241d)-427(tam)-428(s)-1(iedzi)-428(ki)1(e)-1(j)-427(te)-1(n)-427(s)-1(\\252u)1(p,)]TJ -27.879 -13.549 Td[(\\273e)-364(n)1(a)28(w)27(et)-363(Nastusi)-363(n)1(ie)-363(o)-28(dp)-27(o)28(w)-1(i)1(ada.)-362(Ju\\273)-363(s)-1(i)1(\\246)-363(na)28(w)27(et)-363(b)-27(o)-56(j)1(am)-1(,)-362(\\273)-1(eb)28(y)-362(m)27(u)-362(s)-1(i)1(\\246)-364(r)1(oz)-1(u)1(m)-363(nie)]TJ 0 -13.55 Td[(p)-27(opsu\\252.)]TJ 27.879 -13.549 Td[({)-414(S)1(z)-1(ymek!)-414({)-414(k)1(rz)-1(y)1(kn\\241\\252)-414(w)-414(sad)-413({)-414(a)-414(p)-27(\\363)-28(dzi)-414(n)1(o)-414(do)-414(n)1(as)-414(przysz)-1(ed\\252)-414(Boryn)1(a,)-414(to)]TJ -27.879 -13.549 Td[(mo\\273)-1(e)-334(ci)-333(c)-1(o)-333(p)-27(oredzi...)]TJ 27.879 -13.549 Td[(Zja)28(wi\\252)-336(si\\246)-336(p)-27(o)-336(j)1(akiej\\261)-336(min)28(ucie)-336(i)-335(usiad\\252)-335(na)-335(przy\\271bie)-336(n)1(ie)-336(wita)-56(j)1(\\241c)-336(s)-1(i)1(\\246)-336(z)-337(n)1(iki)1(m)-1(.)]TJ -27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-421(co)-421(c)27(h)1(\\252opak)-420(do)-421(cna)-420(b)28(y\\252)-421(zm)-1(i)1(z)-1(ero)28(w)27(an)29(y)-421(i)-421(wysc)27(h)1(ni\\246t)28(y)-421(k)1(ie)-1(b)29(y)-421(ta)-421(osin)1(o)27(w)28(a)-421(d)1(e)-1(-)]TJ 0 -13.549 Td[(sk)55(a;)-386(j)1(e)-1(d)1(ne)-387(o)-27(c)-1(zy)-386(m)27(u)-386(gor)1(z)-1(a\\252y)84(,)-386(z)-1(a\\261)-387(w)-386(wyc)27(h)28(u)1(dzonej)-386(t)28(w)28(arz)-1(y)-386(tai)1(\\252o)-387(si\\246)-387(j)1(akie\\261)-387(t)28(w)28(arde)]TJ 0 -13.55 Td[(p)-27(os)-1(tan)1(o)28(w)-1(i)1(e)-1(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(c\\363\\273)-1(e\\261)-334(u)1(m)27(y\\261li\\252?)-334({)-333(p)28(y)1(ta\\252)-334(\\252ago)-28(d)1(nie)-333(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(co,)-333(\\273)-1(e)-333(w)27(ez)-1(m\\246)-334(sie)-1(k)1(ie)-1(r)1(\\246)-334(i)-333(z)-1(ak)56(atr)1(upi)1(\\246)-334(j\\241)-333(kiej)-333(p)1(s)-1(a.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(i\\261)-1(!)-333(b)1(a)-56(j)1(anie)-333(os)-1(ta)28(w)-334(d)1(o)-333(k)55(ar)1(c)-1(zm)27(y)84(.)]TJ 0 -13.549 Td[({)-350(Jak)-350(B\\363g)-351(n)1(a)-351(n)1(iebie,)-350(tak)-350(j\\241)-350(zak)56(atrup)1(i\\246.)-350(C)-1(\\363\\273)-350(m)-1(i)-350(to)-350(osta)-56(j)1(e)-1(,)-350(co?)-351(G)1(ron)28(tu)-349(m)-1(i)]TJ -27.879 -13.55 Td[(p)-27(o)-354(o)-56(jcac)27(h)-353(z)-1(ap)1(ie)-1(r)1(a,)-354(z)-355(c)28(ha\\252up)29(y)-354(m)-1(e)-354(goni)1(,)-354(s)-1(p)1(\\252at)27(y)-353(nie)-354(da)-55(je,)-354(to)-354(c)-1(\\363\\273)-354(p)-28(o)-27(c)-1(zn\\246?)-355(K)1(a)-56(j)-354(si\\246,)]TJ 0 -13.549 Td[(sie)-1(r)1(ota,)-249(p)-27(o)-28(dziej\\246,)-249(k)56(a)-56(j)1(?)-249(I)-249(\\273)-1(eb)28(y)-249(t)1(o)-249(m)-1(e)-249(ro)-27(dzona)-249(matk)56(a)-249(tak)-249(kr)1(z)-1(y)1(w)-1(d)1(z)-1(i)1(\\252)-1(a!)-248({)-249(j\\246kn)1(\\241\\252)-249(o)-28(c)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ra)-55(j\\241c)-356(r\\246)-1(k)56(a)28(w)28(e)-1(m)-356(\\252)-1(zy)84(,)-356(ale)-357(n)1(araz)-357(p)-27(orw)28(a\\252)-356(s)-1(i\\246)-356(i)-356(z)-1(ak)1(rz)-1(y)1(c)-1(za\\252:)-356({)-356(Nie)-357(d)1(aruj)1(\\246)-1(,)-356(p)1(s)-1(i)1(ac)27(hma\\242,)]TJ 0 -13.549 Td[(sw)27(o)-55(jego,)-334(\\273eb)28(ym)-334(mia\\252)-333(z)-1(a)-333(to)-333(z)-1(gn)1(i\\242)-334(w)-333(krem)-1(i)1(nale,)-333(a)-334(n)1(ie)-334(d)1(aruj)1(\\246)-1(!)]TJ 27.879 -13.549 Td[(Usp)-28(ok)28(oil)1(i)-315(go)-315(na)-315(t)28(yl)1(a,)-315(co)-315(przymilk\\252)-315(i)-314(s)-1(iedzia\\252)-315(c)27(h)1(m)27(u)1(rn)28(y)84(,)-315(a)-315(tak)-315(n)1(as)-1(r)1(o\\273)-1(on)28(y)84(,)-315(\\273e)]TJ -27.879 -13.55 Td[(na)28(w)28(e)-1(t)-366(n)1(ie)-367(o)-28(d)1(p)-28(o)28(wiada\\252)-366(na)-366(Nastusine)-366(\\252z)-1(a)28(w)27(e)-366(s)-1(ze)-1(p)1(t)28(y)83(.)-366(On)1(i)-366(z)-1(a\\261)-367(d)1(e)-1(l)1(ib)-27(e)-1(ro)28(w)28(ali,)-366(jak)-366(b)29(y)]TJ 0 -13.549 Td[(m)27(u)-415(p)-27(om)-1(\\363)-27(c)-1(,)-415(ale)-416(c)-1(\\363\\273,)-416(k)1(ie)-1(j)-415(ni)1(c)-417(z)-416(tego)-416(n)1(ie)-416(w)-1(y)1(c)27(ho)-27(dzi\\252o,)-416(n)1(ie)-416(b)28(y\\252o)-416(b)-27(o)28(w)-1(i)1(e)-1(m)-416(sp)-28(osobu)]TJ 0 -13.549 Td[(na)-468(Domin)1(ik)28(o)28(w)27(\\241.)-468(A\\273)-469(d)1(opi)1(e)-1(ro)-468(Nastk)56(a)-469(o)-27(dci\\241)-28(gn\\241)28(wsz)-1(y)-468(n)1(a)-469(stron)1(\\246)-469(br)1(ata)-468(c)-1(osik)-468(m)27(u)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\252o\\273)-1(y)1(\\252)-1(a.)]TJ 27.879 -13.549 Td[({)-263(Kob)1(ie)-1(ta)-263(i)-262(nalaz\\252a)-263(m)-1(\\241d)1(r\\241)-263(rad)1(\\246)-1(!)-262({)-264(za)28(w)27(o\\252a\\252)-263(rad)1(o\\261)-1(n)1(ie)-263(w)-1(r)1(ac)-1(a)-55(j\\241c)-263(p)-28(o)-28(d)-262(c)27(h)1(a\\252up)-27(\\246)-1(.)]TJ -27.879 -13.55 Td[({)-269(A)-269(to)-269(p)-28(o)28(wieda,)-269(b)28(yc)28(h)-269(ku)1(pi\\242)-269(o)-28(d)-269(d)1(z)-1(iedzica)-269(na)-269(P)28(o)-28(d)1(le)-1(siu)-268(z)-1(e)-270(sze)-1(\\261\\242)-270(morg\\363)28(w)-270(n)1(a)-269(s)-1(p)1(\\252at)27(y)1(!)]TJ 0 -13.549 Td[(Co,)-269(dob)1(ra)-269(rad)1(a?)-270(A)-269(matce)-270(mo\\273)-1(n)1(a)-270(b)-27(\\246dzie)-270(p)-27(ok)56(az)-1(a\\242)-269(s)-1(tar)1(\\241)-269(pani)1(\\241,)-269(niec)27(h)-268(s)-1(i\\246)-269(w\\261)-1(cie)-1(k)1(nie)]TJ 0 -13.549 Td[(ze)-334(z)-1(\\252o\\261c)-1(i)1(...)]TJ 27.879 -13.549 Td[({)-333(Rada)-333(ju)1(\\261)-1(ci)-333(dobr)1(a)-334(j)1(ak)-333(k)55(a\\273da)-333(rad)1(a,)-333(jeno)-333(gdzie)-334(p)1(ie)-1(n)1(i\\241d)1(z)-1(e?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(Nas)-1(tu)1(s)-1(i)1(a)-334(ma)-333(s)-1(w)28(o)-56(je)-333(t)28(ys)-1(i)1(\\241c)-334(z)-1(\\252ot)28(yc)28(h,)-333(na)-333(zadatek)-333(c)27(h)28(w)28(ac)-1(i.)1(..)]TJ 0 -13.55 Td[({)-333(A)-334(k)56(a)-55(j\\273e)-334(to)-333(jes)-1(zc)-1(ze)-334(c)27(h)1(a\\252upa,)-333(l)1(e)-1(w)28(e)-1(n)28(t)1(arz)-1(,)-333(p)-27(orz\\241dki)1(,)-333(z)-1(asie)-1(wy?)]TJ 0 -13.549 Td[({)-424(Ka)-55(j?)-424(A)-424(tu)1(!)-424(A)-424(t)1(u!)-424({)-424(wr)1(z)-1(asn\\241\\252)-424(n)1(araz)-424(Szym)-1(ek)-424(wysk)56(akuj)1(\\241c)-425(p)1(rze)-1(d)-423(ni)1(c)27(h)-424(a)]TJ -27.879 -13.549 Td[(trz\\241c)27(h)1(a)-56(j)1(\\241c)-334(z)-1(aci\\261ni\\246t)28(ymi)-333(gar\\261)-1(ciami..)1(.)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(s)-1(i\\246)-333(to)-334(m\\363)28(wi,)-333(ale)-334(cz)-1(y)-333(u)1(re)-1(d)1(z)-1(i)1(s)-1(z?)-334({)-333(mruk)1(n\\241\\252)-334(An)29(te)-1(k)-333(n)1(ie)-1(d)1(o)28(w)-1(i)1(e)-1(r)1(z)-1(a)-55(j\\241co.)]TJ 0 -13.549 Td[({)-333(Da)-56(j)1(c)-1(ie)-333(m)-1(i)-333(j)1(e)-1(n)1(o)-334(ziem)-1(i\\246,)-333(a)-333(obacz)-1(ycie,)-333(da)-56(j)1(c)-1(i)1(e)-1(!)-333({)-333(z)-1(akr)1(z)-1(y)1(c)-1(za\\252)-334(z)-334(mo)-28(c\\241.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(n)1(ie)-334(ma)-333(s)-1(i\\246)-333(c)-1(o)-333(g\\252o)27(wi\\242,)-333(a)-333(jeno)-333(i\\261)-1(\\242)-333(do)-333(dziedzic)-1(a)-333(i)-333(kup)-27(o)28(w)27(a\\242!)]TJ 0 -13.55 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(j,)-333(An)29(te)-1(k,)-333(zaraz,)-333(niec)27(h)-333(n)1(o)-334(se)-334(ws)-1(zy\\242k)28(o)-334(w)-333(m)27(y\\261lac)28(h)-333(u\\252o\\273\\246)-1(..)1(.)]TJ 0 -13.549 Td[({)-261(Ob)1(ac)-1(zyc)-1(i)1(e)-1(,)-261(j)1(ak)-261(sobie)-261(rad)1(\\246)-262(da)28(w)28(a\\252)-261(b)-28(\\246d\\246!)-261({)-261(gada\\252)-261(p)1(r\\246dk)28(o)-261(Szyme)-1(k)1(.)-261({)-261(A)-261(kto)-261(u)]TJ -27.879 -13.549 Td[(matki)-282(ora\\252?)-282(Kto)-282(sia\\252?)-282(Kto)-282(z)-1(b)1(iera\\252?)-282(Dy\\242)-283(j)1(e)-1(n)1(o)-282(ja)-282(sam)-1(!)-281(A)-282(\\271)-1(le)-282(to)-282(w)-282(roli)-282(r)1(obi\\252em)-1(,)-281(c)-1(o?)]TJ 0 -13.549 Td[(W)84(a\\252)-1(k)28(o\\253)-372(to)-373(jes)-1(tem,)-373(c)-1(o?)-373(Niec)27(h)-373(ca\\252a)-374(wie\\261)-374(p)-27(o)28(wie)-1(,)-373(n)1(iec)27(h)-373(matk)56(a)-373(z)-1(a\\261wiarcz)-1(y!)-372(Da)-56(j)1(c)-1(ie)]TJ 0 -13.549 Td[(mi)-299(j)1(e)-1(n)1(o)-299(gr)1(un)28(t,)-298(sp)-28(om\\363\\273c)-1(ie,)-298(br)1(at)27(y)-298(ro)-27(dzone,)-299(a)-298(to)-298(ju)1(\\273)-299(w)27(ama)-299(za)-299(t)1(o)-299(d)1(o)-299(\\261m)-1(i)1(e)-1(rci)-298(s)-1(i\\246)-298(nie)]TJ 0 -13.55 Td[(o)-28(d)1(s)-1(\\252u)1(\\273)-1(\\246.)-368(P)28(om\\363\\273)-1(cie,)-368(lu)1(dzie)-368(k)28(o)-28(c)27(h)1(ane,)-368(p)-27(om)-1(\\363\\273c)-1(i)1(e)-1(!)-367({)-368(w)27(o\\252a\\252)-368(\\261m)-1(i)1(e)-1(j)1(\\241c)-369(si\\246)-368(i)-368(p)1(\\252ac)-1(z\\241c)-369(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(emian,)-333(zgo\\252)-1(a)-333(j)1(akb)28(y)-333(pi)1(jan)28(y)-333(rad)1(os)-1(n)1(\\241)-334(n)1(adziej\\241.)]TJ\nET\nendstream\nendobj\n2104 0 obj <<\n/Type /Page\n/Contents 2105 0 R\n/Resources 2103 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2103 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2108 0 obj <<\n/Length 9188      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(660)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(A)-353(kiej)-354(si\\246)-354(\\271dziebk)28(o)-354(u)1(s)-1(p)-27(ok)28(oi\\252,)-353(z)-1(acz\\246)-1(li)-353(j)1(u\\273)-354(ws)-1(p)-27(\\363ln)1(ie)-354(rozw)27(a\\273a\\242)-354(i)-353(delib)-27(e)-1(r)1(o)27(w)28(a\\242)]TJ -27.879 -13.549 Td[(nad)-332(t)27(y)1(m)-1(i)-333(zam)27(ys\\252am)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(y)1(c)27(h)-333(si\\246)-334(jeno)-333(d)1(z)-1(iedzic)-334(zgo)-28(dzi\\252)-333(na)-333(s)-1(p)1(\\252at)28(y!)-333({)-334(w)28(es)-1(tc)28(hn\\246\\252a)-334(Nastk)56(a.)]TJ 0 -13.549 Td[({)-333(P)28(or\\246c)-1(zym)28(y)-334(z)-333(Mateusz)-1(em)-1(,)-333(to)-333(widzi)-333(mi)-334(si\\246,)-333(c)-1(o)-333(i)-333(da.)]TJ 0 -13.549 Td[(Nastusia)-333(ja\\273e)-334(go)-334(c)28(hcia\\252a)-334(ca\\252o)28(w)27(a\\242)-334(p)-27(o)-333(r\\246k)55(ac)28(h)-333(z)-1(a)-333(t)28(yla)-333(d)1(obro\\261c)-1(i)1(.)]TJ 0 -13.55 Td[({)-476(Za\\273yw)27(a\\252em)-476(ni)1(e)-1(zgors)-1(zej)-476(b)1(iedy)84(,)-476(to)-476(wiem,)-476(jak)-475(dr)1(ugim)-476(smakuj)1(e)-1(!)-475({)-476(rze)-1(k)1(\\252)]TJ -27.879 -13.549 Td[(cic)27(h)1(o,)-342(p)-27(o)28(ws)-1(ta)-55(j\\241c)-342(d)1(o)-341(o)-28(dej\\261c)-1(i)1(a,)-342(b)-27(o)-341(s)-1(i)1(\\246)-342(ju)1(\\273)-342(b)28(y\\252o)-341(c)-1(a\\252ki)1(e)-1(m)-341(z)-1(mro)-28(cz)-1(a\\252o)-341(nad)-340(z)-1(iemiam)-1(i)1(,)]TJ 0 -13.549 Td[(jeno)-333(co)-334(n)1(ieb)-28(o)-333(b)28(y\\252o)-333(jes)-1(zc)-1(ze)-334(j)1(as)-1(n)1(e)-334(i)-333(z)-1(or)1(z)-1(e)-334(d)1(opal)1(a\\252)-1(y)-333(si\\246)-334(n)1(a)-334(zac)27(h)1(o)-28(dzie.)]TJ 27.879 -13.549 Td[(An)28(tek)-450(sta\\252)-451(cz)-1(as)-450(jak)1(i\\261)-451(n)1(ad)-450(s)-1(t)1(a)27(w)28(e)-1(m)-450(w)27(agu)1(j\\241c)-450(s)-1(i)1(\\246)-451(w)-450(s)-1(ob)1(ie)-1(,)-450(w)-450(kt\\363r)1(\\241)-451(stron)1(\\246)]TJ -27.879 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-1(,)-333(lecz)-334(p)-28(o)-333(c)27(h)29(w)-1(i)1(li)-333(ruszy\\252)-334(k)1(u)-333(domo)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[(Szed\\252)-312(j)1(e)-1(d)1(nak)-311(z)-312(w)28(olna)-311(kieb)28(y)-311(p)-28(o)-28(d)-311(p)1(rzym)27(u)1(s)-1(em)-1(,)-311(p)1(rzys)-1(ta)-55(j\\241c)-312(co)-312(tr)1(o)-28(c)27(h)1(a)-312(ze)-312(z)-1(n)1(a-)]TJ -27.879 -13.55 Td[(jom)28(ymi,)-334(na)-334(d)1(rogac)27(h)-334(b)-27(o)28(wie)-1(m)-334(b)28(y\\252o)-334(p)-27(e)-1(\\252no)-334(lu)1(dzi,)-334(w)28(a\\252)-1(\\246sa)-56(j\\241cyc)27(h)-333(s)-1(i\\246)-334(gadzin)-334(i)-334(d)1(z)-1(iec)-1(i)1(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(\\261)-1(p)1(ie)-1(wki)-390(trz\\246)-1(s\\252y)-391(s)-1(i)1(\\246)-392(p)-27(o)-391(op\\252otk)56(ac)27(h)1(,)-391(k)56(a)-56(j)1(\\261)-392(zakr)1(z)-1(ycz)-1(a\\252y)-390(prze)-1(p)1(\\252os)-1(zone)-391(g\\246)-1(si,)-390(p)-28(o)-28(d)]TJ 0 -13.549 Td[(m\\252ynem)-436(wrze)-1(szc)-1(za\\252y)-435(k)55(\\241)-27(pi\\241ce)-436(si\\246)-436(c)28(h\\252opak)1(i,)-435(jak)1(ie)-1(\\261)-435(kum)28(y)-435(k\\252\\363)-28(ci\\252y)-435(s)-1(i)1(\\246)-436(p)-27(o)-436(d)1(ru)1(gie)-1(j)]TJ 0 -13.549 Td[(stroni)1(e)-359(sta)27(wu)1(,)-358(jakb)29(y)-359(p)1(rze)-1(d)-357(B)-1(alcerk)56(am)-1(i)1(,)-358(a)-359(p)1(rze)-1(n)1(ikli)1(w)-1(y)-358(g\\252os)-359(p)1(isz)-1(cz)-1(a\\252ki)-358(p)1(rze)-1(wier-)]TJ 0 -13.549 Td[(ca\\252)-334(u)1(s)-1(zy)83(.)]TJ 27.879 -13.55 Td[(Cho)-28(cia\\273)-354(An)28(t)1(k)28(o)27(wi)-353(nie)-354(b)29(y\\252o)-354(p)1(ilno)-353(i)-353(rad)-353(pr)1(z)-1(ysta)28(w)27(a\\252)-353(na)-353(dro)-28(d)1(z)-1(e)-354(a)-353(z)-354(b)-27(e)-1(le)-354(k)1(im)]TJ -27.879 -13.549 Td[(p)-27(ogadyw)28(a\\252,)-238(to)-238(w)-238(k)28(o\\253)1(c)-1(u)-237(s)-1(tan)1(\\241\\252)-238(pr)1(z)-1(ed)-238(sw)27(o)-55(j\\241)-238(c)28(ha\\252up)1(\\241.)-238(Ok)1(na)-238(sta\\252y)-238(wyw)28(arte)-238(i)-238(o\\261w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(tlon)1(e)-1(,)-357(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-357(p)1(\\252)-1(ak)56(a\\252o)-357(p)-27(o)-28(d)-357(\\261c)-1(ian)1(\\241,)-357(z)-1(a\\261)-357(z)-358(p)-27(o)-28(dw)28(\\363rza)-358(r)1(oz)-1(l)1(e)-1(ga\\252)-357(s)-1(i)1(\\246)-358(wrz)-1(askli)1(w)-1(y)-357(g\\252os)]TJ 0 -13.549 Td[(Hank)1(i,)-333(a)-334(k)1(ie)-1(j)-332(niekiej)-333(jazgotliw)28(e)-334(o)-28(d)1(s)-1(zc)-1(zekiw)28(anie)-334(J\\363zki.)]TJ 27.879 -13.549 Td[(Za)28(w)27(ah)1(a\\252)-424(si\\246)-424(zno)28(wu,)-423(ale)-424(ki)1(e)-1(j)-423(\\212ap)1(a)-424(zas)-1(k)28(omla\\252)-423(pr)1(z)-1(y)-423(ni)1(m)-424(i)-423(j\\241\\252)-423(w)-1(y)1(s)-1(k)56(akiw)28(a\\242)]TJ -27.879 -13.55 Td[(z)-459(rad)1(o\\261)-1(ci,)-459(k)28(op)1(n\\241\\252)-458(go)-459(w)-459(nag\\252ym)-459(gn)1(iew)-1(i)1(e)-459(i)-459(za)27(wr\\363)-27(c)-1(i\\252)-458(z)-459(p)-28(o)28(wrotem)-459(na)-459(wie\\261.)-459(Do-)]TJ 0 -13.549 Td[(pad)1(\\252)-411(d)1(r\\363\\273ki)-410(prob)-27(osz)-1(cz)-1(o)28(ws)-1(k)1(ie)-1(j)1(,)-410(prze)-1(mkn)1(\\241\\252)-411(si\\246)-411(k)28(ole)-411(or)1(ganist\\363)28(w)-411(tak)-410(c)-1(i)1(c)27(ho,)-410(\\273e)-411(go)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-287(p)1(s)-1(y)-287(ni)1(e)-288(p)-27(o)-28(c)-1(zu\\252y)84(,)-287(i)-287(w)-1(sun)1(\\241\\252)-288(si\\246)-288(p)-27(o)-28(d)-287(k)1(s)-1(i\\246\\273)-1(y)-287(sad,)-287(zaraz)-288(p)1(rzy)-287(s)-1(ze)-1(r)1(okiej)-287(m)-1(i)1(e)-1(d)1(z)-1(y)84(,)]TJ 0 -13.549 Td[(dziel\\241ce)-1(j)-333(K\\252\\246b)-27(o)27(w)28(\\241)-334(ziem)-1(i)1(\\246)-334(o)-28(d)-333(ksi\\246\\273)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(Nakr)1(y\\252)-334(go)-333(g\\252\\246)-1(b)-27(oki)-333(cie)-1(\\253)-332(drze)-1(w)-333(galan)1(c)-1(ie)-333(roz)-1(r)1(o\\261)-1(n)1(i\\246t)27(y)1(c)27(h.)]TJ 0 -13.55 Td[(Ksi\\246\\273)-1(yco)28(w)-1(y)-469(s)-1(i)1(e)-1(rp)-469(z)-1(a)28(wis\\252)-470(ju)1(\\273)-471(b)29(y\\252)-470(na)-470(p)-27(o)-28(cie)-1(mn)1(ia\\252ym)-470(niebi)1(e)-471(i)-470(gwiazdy)-469(j\\246-)]TJ -27.879 -13.549 Td[(\\252y)-402(s)-1(i\\246)-402(roz)-1(j)1(arza\\242)-403(c)-1(or)1(az)-403(migotliwiej;)-402(wiec)-1(z\\363r)-402(c)-1(zyni)1(\\252)-403(si\\246)-403(rosist)27(y)-402(a)-402(s)-1(i)1(lnie)-402(nagrzan)28(y)84(,)]TJ 0 -13.549 Td[(pr)1(a)28(w)-1(d)1(z)-1(i)1(w)-1(i)1(e)-292(l)1(ato)27(wy)84(.)-291(P)1(rze)-1(p)1(i\\363rki)-290(w)27(o\\252a\\252y)-290(z)-1(e)-291(zb)-28(\\363\\273,)-291(o)-28(d)-290(\\252\\241k)-290(dalekic)27(h)-290(lecia\\252y)-291(gru)1(baskie)]TJ 0 -13.549 Td[(p)-27(oh)28(uk)1(iw)27(an)1(ia)-354(b)1(\\241k)28(\\363)27(w,)-353(z)-1(a\\261)-354(nad)-353(p)-27(olami)-354(wis)-1(i)1(a\\252a)-354(tak)56(a)-354(rozpac)28(hni)1(ona)-354(cic)27(h)1(o\\261)-1(\\242,)-354(j)1(a\\273)-1(e)-354(w)]TJ 0 -13.549 Td[(g\\252o)28(w)-1(i)1(e)-334(s)-1(i)1(\\246)-334(m\\241c)-1(i\\252o.)]TJ 27.879 -13.55 Td[(Ale)-334(J)1(agusia)-334(j)1(ak)28(o\\261)-334(n)1(ie)-334(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252a.)]TJ 0 -13.549 Td[(Natomiast)-252(o)-253(j)1(akie\\261)-253(p)-27(\\363\\252)-252(s)-1(ta)-55(jan)1(ia)-252(o)-28(d)-252(An)29(tk)55(a)-252(p)-27(o)-252(m)-1(i)1(e)-1(d)1(z)-1(y)-252(space)-1(r)1(o)28(w)27(a\\252)-252(pr)1(ob)-28(osz)-1(cz)]TJ -27.879 -13.549 Td[(w)-461(bia\\252ym)-461(oblec)-1(zeniu)-461(i)-461(z)-461(go\\252)-1(\\241)-461(g\\252o)28(w)27(\\241,)-461(tak)-461(p)-27(ogr\\241\\273on)28(y)-461(w)-461(o)-28(dma)28(w)-1(i)1(aniu)-461(p)1(ac)-1(i)1(e)-1(r)1(z)-1(y)84(,)]TJ 0 -13.549 Td[(i\\273)-436(jakb)28(y)-436(n)1(ie)-437(wid)1(z)-1(ia\\252,)-436(co)-436(jego)-437(k)28(on)1(ie,)-436(pas)-1(\\241ce)-437(si\\246)-437(n)1(a)-436(c)27(h)28(u)1(dym,)-436(wytart)28(ym)-436(ugor)1(z)-1(e,)]TJ 0 -13.549 Td[(pr)1(z)-1(es)-1(z\\252y)-447(miedz\\246)-448(i)-446(\\252ak)28(om)-1(ie)-447(w\\273)-1(era\\252y)-447(si\\246)-447(w)-447(K\\252\\246)-1(b)-27(o)28(w)27(\\241)-446(k)28(onicz)-1(y)1(n\\246,)-447(kt\\363r)1(a)-447(nib)29(y)-447(b)-27(\\363r)]TJ 0 -13.549 Td[(cz)-1(erni)1(a\\252a)-334(span)1(iale)-334(wyr)1(o\\261)-1(n)1(i\\246)-1(ta)-333(i)-333(p)-27(okryt)1(a)-334(kwiatem.)]TJ 27.879 -13.55 Td[(Ksi\\241dz)-255(c)-1(i)1(\\246)-1(giem)-255(c)27(ho)-27(dzi\\252)-255(m)-1(amro)-28(c\\241c)-256(p)1(ac)-1(i)1(e)-1(r)1(z)-1(e,)-255(p)-28(o)-255(gwiazdac)28(h)-255(w\\252\\363)-28(c)-1(zy\\252)-255(o)-28(cz)-1(ami,)]TJ -27.879 -13.549 Td[(a)-360(niekiej)-360(pr)1(z)-1(y)1(s)-1(ta)28(w)27(a\\252,)-360(p)1(iln)1(ie)-361(nas\\252uc)28(h)28(uj)1(\\241c)-1(,)-360(i)-360(gd)1(y)-361(si\\246)-361(j)1(e)-1(n)1(o)-361(r)1(usz)-1(y)1(\\252)-1(o)-360(co)-361(n)1(ieb\\241d\\271)-360(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(p)-27(o)-28(d)-333(ws)-1(i)1(\\241,)-334(za)28(wrac)-1(a\\252)-333(s)-1(p)1(ies)-1(znie,)-333(gderz\\241c)-334(ni)1(b)28(y)-333(gniewnie)-333(na)-333(k)28(onie.)]TJ 27.879 -13.549 Td[({)-433(A)-433(gdzie)-1(\\273e)-1(\\261)-433(to)-433(p)-28(olaz\\252,)-433(s)-1(i)1(w)-1(y)1(?)-434(W)-433(K\\252\\246b)-28(o)28(w)28(\\241)-433(k)28(onicz)-1(y)1(n\\246,)-434(co?)-433(Widzicie)-434(ic)28(h,)]TJ -27.879 -13.549 Td[(jak)1(ie)-407(to)-407(\\252a)-56(j)1(dusy!)-406(Smakuj)1(e)-408(w)28(am)-407(c)-1(u)1(dze)-1(,)-406(c)-1(o?)-407(A)-407(b)1(ate)-1(m)-407(c)28(hce)-1(ta)-407(p)-27(o)-407(p)-27(ortk)56(ac)27(h)1(?)-407(No,)]TJ 0 -13.55 Td[(m\\363)27(wi\\246,)-333(batem!)-333({)-334(p)-27(ogra\\273a\\252)-334(wielce)-334(s)-1(r)1(ogo.)]TJ 27.879 -13.549 Td[(Ale)-378(k)28(on)1(isk)55(a)-377(tak)-377(s)-1(macz)-1(n)1(ie)-378(c)27(h)1(ru)1(pa\\252y)83(,)-377(j)1(a\\273)-1(e)-378(k)1(s)-1(i\\246dzu)-377(z)-1(b)1(rak\\252o)-377(se)-1(rca)-377(na)-377(w)-1(y)1(p)-28(\\246-)]TJ\nET\nendstream\nendobj\n2107 0 obj <<\n/Type /Page\n/Contents 2108 0 R\n/Resources 2106 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2093 0 R\n>> endobj\n2106 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2111 0 obj <<\n/Length 8934      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(661)]TJ -358.232 -35.866 Td[(dzenie)-334(ze)-334(sz)-1(k)28(o)-28(d)1(y)83(,)-333(wi\\246c)-334(j)1(e)-1(n)1(o)-334(r)1(oz)-1(gl\\241d)1(a\\252)-334(si\\246)-334(a)-333(pr)1(a)27(wi\\252)-333(z)-334(cic)27(h)1(a:)]TJ 27.879 -13.549 Td[({)-297(No)-296(\\273)-1(r)1(e)-1(j)-296(j)1(e)-1(d)1(e)-1(n)-296(dr)1(ugi,)-296(\\273rej...)-296(j)1(u\\273)-297(si\\246)-297(z)-1(a)-296(to)-297(zm\\363)27(wi)-296(jaki)-296(pacior)1(e)-1(k)-296(z)-1(a)-296(K\\252\\246)-1(b)-27(o)28(w)27(\\241)]TJ -27.879 -13.549 Td[(du)1(s)-1(z\\246)-322(alb)-27(o)-322(i)-321(w)-1(y)1(nagro)-27(dzi)-322(cz)-1(ym)-322(sz)-1(k)28(o)-27(d\\246!)-322(Nygu)1(s)-1(y)84(,)-321(jak)-321(s)-1(i\\246)-322(to)-321(przyp)1(ina)-55(j\\241)-322(d)1(o)-322(\\261wie)-1(\\273e)-1(j)]TJ 0 -13.549 Td[(k)28(oni)1(c)-1(zyn)28(y!)]TJ 27.879 -13.549 Td[(I)-286(z)-1(n)1(o)27(wu)-286(c)28(ho)-28(d)1(z)-1(i)1(\\252)-287(tam)-286(i)-286(z)-287(na)28(wrotem,)-286(pacie)-1(r)1(z)-1(e)-286(m)-1(\\363)28(wi\\252)-286(i)-286(s)-1(tr)1(\\363\\273)-1(o)28(w)27(a\\252)-286(an)1(i)-287(si\\246)-286(s)-1(p)-27(o-)]TJ -27.879 -13.55 Td[(dziew)27(a)-55(j\\241c,)-313(jak)28(o)-313(An)28(tek)-313(patrzy)-313(w)-314(n)1(iego,)-313(s)-1(\\252uc)28(ha)-313(i)-313(z)-314(coraz)-314(wi\\246ksz)-1(\\241)-313(niesp)-28(ok)28(o)-55(jn)1(o\\261)-1(ci\\241)]TJ 0 -13.549 Td[(wycz)-1(ekuj)1(e)-334(na)-333(Jagu)1(s)-1(i\\246.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(z\\252o)-410(tak)-409(z)-410(par)1(\\246)-410(dobr)1(yc)27(h)-409(p)1(ac)-1(ierz\\363)28(w)-1(,)-409(gdy)-409(nar)1(az)-410(An)28(tk)28(o)28(w)-1(i)-409(p)1(rz)-1(y)1(s)-1(z\\252o)-410(na)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(l)-333(p)-27(o)-28(dej\\261\\242)-334(d)1(o)-334(n)1(ie)-1(go)-333(a)-333(wyz)-1(n)1(a\\242)-334(si\\246)-334(ze)-334(s)-1(w)28(oic)27(h)-333(f)1(rasun)1(k)28(\\363)27(w.)]TJ 27.879 -13.549 Td[({)-398(T)83(aki)-398(nau)1(c)-1(zon)28(y)83(,)-398(to)-398(mo\\273)-1(e)-399(p)1(r\\246dze)-1(j)-398(n)1(a)-56(j)1(dzie)-399(jak)56(\\241)-398(rad)1(\\246)-1(!)-398({)-398(roz)-1(w)28(a\\273a\\252)-399(cofa)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-286(c)-1(i)1(e)-1(n)1(iami)-286(p)-27(o)-28(d)-285(sto)-28(d)1(o\\252\\246)-286(i)-286(d)1(opi)1(e)-1(ro)-285(za)-286(w)28(\\246)-1(g\\252em)-286(\\261m)-1(ia\\252o)-285(wys)-1(zed\\252)-285(na)-285(m)-1(iedz\\246)-286(i)-285(g\\252o\\261)-1(n)1(o)]TJ 0 -13.55 Td[(zac)27(hr)1(z)-1(\\241k)56(a\\252.)]TJ 27.879 -13.549 Td[(A)-333(ks)-1(i)1(\\241dz)-334(p)-27(os\\252)-1(y)1(s)-1(za)27(wsz)-1(y)84(,)-333(\\273)-1(e)-333(kto\\261)-334(n)1(adc)27(h)1(o)-28(dzi,)-333(zakrzyc)-1(za\\252)-333(na)-333(k)28(onie:)]TJ 0 -13.549 Td[({)-251(S)1(z)-1(k)28(o)-27(dn)1(iki)-250(paskud)1(ne!)-251(T)83(o)-250(ani)-250(z)-251(o)-28(cz)-1(\\363)28(w)-251(spu)1(\\261)-1(ci\\242,)-251(zaraz)-251(w)-251(cud)1(z)-1(e)-251(j)1(ak)-251(te)-251(\\261wini)1(e)-1(!)]TJ -27.879 -13.549 Td[(Wi\\261ta)-333(k)56(as)-1(ztan!)-333({)-333(I)-334(u)1(nies)-1(\\252sz)-1(y)-333(u)1(bieru)-333(wyp)-27(\\246dza\\252)-334(j)1(e)-334(z)-334(p)-27(o\\261)-1(p)1(ie)-1(c)28(hem)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(or)1(yna!)-333(Jak)-333(si\\246)-334(mas)-1(z?)-334({)-333(w)28(o\\252)-1(a\\252)-333(rozp)-27(oz)-1(n)1(a)27(wsz)-1(y)-333(go)-333(z)-334(bl)1(is)-1(k)56(a.)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(sz)-1(u)1(k)56(am)-334(dob)1(ro)-28(d)1(z)-1(ieja,)-333(b)29(y\\252e)-1(m)-333(ju\\273)-333(na)-333(pleban)1(ii.)]TJ 0 -13.549 Td[({)-376(A)-377(wysze)-1(d)1(\\252)-1(em)-377(zm\\363)27(wi\\242)-376(pacie)-1(r)1(z)-1(e)-377(i)-376(p)1(rzypi)1(lno)28(w)28(a\\242)-377(k)28(onisk)28(\\363)28(w,)-377(b)-27(o)-376(W)83(al)1(e)-1(k)-376(p)-27(o-)]TJ -27.879 -13.549 Td[(lec)-1(i)1(a\\252)-380(do)-379(dw)28(oru)1(.)-380(Ale)-380(t)1(a)-1(k)1(ie)-380(z)-1(n)1(aro)28(wione)-380(szk)28(o)-28(dn)1(iki,)-379(\\273e)-380(niec)27(h)-379(B\\363g)-380(b)1(roni)1(,)-380(r)1(ady)-379(nie)]TJ 0 -13.549 Td[(mog\\246)-365(s)-1(ob)1(ie)-365(da\\242)-365(z)-365(nimi.)-364(P)28(atr)1(z)-1(,)-364(jak)-364(s)-1(i\\246)-365(K)1(\\252)-1(\\246b)-27(o)27(wi)-364(w)-1(y)1(s)-1(yp)1(a\\252o)-365(k)28(on)1(ic)-1(zyn)28(y)84(,)-365(j)1(ak)-365(b)-27(\\363r!)-364(Z)]TJ 0 -13.549 Td[(mo)-56(j)1(e)-1(go)-445(n)1(as)-1(ieni)1(a...)-445(Za)-444(to)-445(m)-1(o)-55(j\\241)-444(tak)-445(wymrozi\\252o,)-445(\\273e)-446(zos)-1(t)1(a\\252)-445(s)-1(i\\246)-445(t)28(ylk)28(o)-444(rumian)1(e)-1(k)-444(i)]TJ 0 -13.55 Td[(ost)27(y)1(!{)-372(w)28(e)-1(stc)27(h)1(n\\241\\252)-372(\\273a\\252)-1(o\\261ni)1(e)-373(p)1(rzys)-1(i)1(ada)-55(j\\241c)-372(na)-372(k)56(amie)-1(n)1(iu)-371({)-372(Si)1(ada)-56(j)1(\\273)-1(e,)-372(to)-371(s)-1(ob)1(ie)-372(p)-28(oga-)]TJ 0 -13.549 Td[(dam)28(y!)-333(\\221l)1(ic)-1(zna)-333(p)-27(ora!)-333(Za)-334(j)1(akie)-333(trzy)-334(t)28(y)1(go)-28(dn)1(ie)-334(zadzw)27(on)1(i\\241)-334(k)28(osy!)-333(No,)-333(m\\363)27(wi\\246)-333(c)-1(i!)1(...)]TJ 27.879 -13.549 Td[(An)28(tek)-375(p)1(rzysiad\\252)-375(wp)-27(o)-28(dl)1(e)-375(i)-375(zac)-1(z\\241\\252)-375(z)-375(w)27(ol)1(na)-375(r)1(oz)-1(p)-27(o)28(wiada\\242,)-375(z)-375(cz)-1(y)1(m)-375(b)28(y\\252)-375(p)1(rzy-)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252.)-427(Pr)1(ob)-28(osz)-1(cz)-428(s)-1(\\252u)1(c)27(h)1(a\\252)-428(u)28(w)28(a\\273)-1(n)1(ie,)-428(tab)1(ak)28(\\246)-428(za\\273)-1(yw)28(a\\252)-428(i)-427(n)1(a)-428(k)28(on)1(ie)-428(krzycz)-1(a\\252)-427(raz)-428(p)-27(o)]TJ 0 -13.549 Td[(raz,)-333(kic)28(ha)-56(j)1(\\241c)-334(pr)1(z)-1(y)-333(t)28(ym)-333(s)-1(iar)1(c)-1(zy\\261c)-1(ie)]TJ 27.879 -13.55 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(!)-333(\\221l)1(e)-1(p)28(y)1(\\261)-1(,)-333(\\273e)-334(c)-1(u)1(dze)-1(?)-333(Wid)1(z)-1(isz)-334(j)1(e)-1(,)-333(\\261w)-1(i)1(\\253tu)1(c)27(h)28(y)-333(znaro)28(wion)1(e)-1(!.)1(..)]TJ 0 -13.549 Td[(An)28(tk)28(o)28(wi)-333(s)-1(z\\252o)-334(j)1(ak)28(o\\261)-334(ni)1(e)-1(sp)-28(or)1(o,)-333(z)-1(a)-55(j\\241ki)1(w)27(a\\252)-333(s)-1(i\\246)-333(i)-333(pl\\241ta\\252.)]TJ 0 -13.549 Td[({)-240(Wid)1(z)-1(\\246,)-240(\\273)-1(e)-241(ci)-240(c)-1(o\\261)-240(c)-1(i\\246\\273kie)-1(go)-240(d)1(ole)-1(ga.)-240(W)1(yz)-1(n)1(a)-56(j)-240(si\\246)-241(sz)-1(cze)-1(rze)-1(,)-240(t)1(o)-241(ci)-240(ul\\273y)83(,)-240(wyzna)-55(j!)]TJ -27.879 -13.549 Td[(Pr)1(z)-1(ed)-349(kim\\273)-1(e)-350(d)1(usz)-1(\\246)-350(wy\\273alisz)-1(,)-349(jak)-349(nie)-350(p)1(rz)-1(ed)-349(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-1(?)-349({)-350(P)28(og\\252adzi\\252)-350(go)-349(p)-28(o)-349(g\\252o)27(wie)]TJ 0 -13.549 Td[(i)-301(u)1(c)-1(z\\246)-1(sto)28(w)27(a\\252)-300(tabak)56(\\241,)-301(\\273e)-301(An)28(te)-1(k)-300(nab)1(ra)28(ws)-1(zy)-301(\\261m)-1(i)1(a)-1(\\252o\\261c)-1(i)-300(rozp)-28(o)28(wiedzia\\252)-301(m)27(u)-300(ws)-1(zystkie)]TJ 0 -13.55 Td[(sw)27(o)-55(je)-334(f)1(rasunk)1(i.)]TJ 27.879 -13.549 Td[(Ksi\\241dz)-333(d\\252ugo)-333(w)28(a\\273)-1(y\\252)-333(jego)-333(s)-1(\\252o)28(w)27(a,)-333(wzdyc)28(ha\\252)-333(i)-334(w)-333(k)28(o\\253cu)-333(rze)-1(k)1(\\252)-1(:)]TJ 0 -13.549 Td[({)-325(Ja)-325(b)28(ym)-325(c)-1(i)-325(za)-325(b)-28(or)1(o)27(w)28(ego)-326(n)1(az)-1(n)1(ac)-1(zy\\252)-325(p)-27(okut\\246)-325(k)28(o\\261)-1(cieln\\241:)-325(sta)28(w)27(a\\252e\\261)-326(w)-325(o)-56(j)1(c)-1(o)28(w)27(ej)]TJ -27.879 -13.549 Td[(obr)1(onie,)-399(a)-400(\\273e)-400(b)28(y)1(\\252)-400(\\252a)-56(j)1(du)1(s)-400(i)-399(luter,)-399(to)-399(ni)1(e)-1(wielk)56(a)-400(sta\\252a)-400(si\\246)-400(szk)28(o)-28(da!)-399(Ale)-400(s\\241dy)-399(ci)-399(nie)]TJ 0 -13.549 Td[(dar)1(uj)1(\\241.)-445(Na)-55(jmni)1(e)-1(j)-444(p)-27(os)-1(i)1(e)-1(d)1(z)-1(isz)-445(ze)-445(c)-1(ztery)-444(lata!)-444(I)-444(c)-1(o)-444(c)-1(i)-444(tu)-444(r)1(adzi\\242)-1(?)-444(M\\363)-55(j)-444(B)-1(o\\273e)-1(,)-444(i)-444(w)]TJ 0 -13.549 Td[(Ame)-1(r)1(yc)-1(e)-362(lud)1(z)-1(ie)-362(\\273)-1(y)1(j\\241,)-362(i)-362(z)-363(k)1(rymina\\252u)-362(t)1(e)-1(\\273)-363(wr)1(ac)-1(a)-55(j\\241.)-362(Ale)-362(je)-1(d)1(no)-362(z\\252e)-363(i)-362(dr)1(ugie)-362(te)-1(\\273)-362(nie)]TJ 0 -13.55 Td[(lepsz)-1(e.)]TJ 27.879 -13.549 Td[(By\\252)-338(z)-1(a)-337(t)27(y)1(m)-1(,)-337(\\273)-1(eb)28(y)-338(An)29(te)-1(k)-337(ucie)-1(k)56(a\\252)-338(c)27(h)1(o)-28(\\242b)28(y)-338(j)1(utro,)-337(to)-338(zno)28(wu)-338(rad)1(z)-1(i)1(\\252)-338(p)-28(ozos)-1(t)1(a\\242)-339(i)]TJ -27.879 -13.549 Td[(o)-28(d)1(s)-1(iedzie\\242)-334(k)56(ar\\246,)-334(a)-333(n)1(a)-334(ostatku)-333(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(Je)-1(d)1(no,)-333(co)-334(p)-27(ew)-1(n)1(a:)-333(z)-1(d)1(a\\242)-334(s)-1(i)1(\\246)-334(na)-333(Op)1(atrzno\\261\\242)-334(i)-333(c)-1(ze)-1(k)56(a\\242)-334(zm)-1(i)1(\\252o)27(w)28(ani)1(a)-334(Bo\\273)-1(ego.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(i)-333(w)28(e)-1(zm\\241)-334(me)-334(w)-334(d)1(yb)1(ki,)-333(w)-334(S)1(ybi)1(r)-333(p)-28(ogn)1(a)-56(j)1(\\241...)]TJ 0 -13.55 Td[({)-333(Wielu)-333(jedn)1(ak)-333(p)-28(o)28(wraca,)-333(s)-1(am)-333(z)-1(n)1(a\\252)-1(em)-334(n)1(iejednego...)]TJ 0 -13.549 Td[({)-348(Ju\\261c)-1(i,)-348(j)1(e)-1(n)1(o)-349(co)-349(to)-348(p)-27(o)-349(latac)28(h)-348(z)-1(astan\\246)-349(w)-348(c)27(h)1(a\\252)-1(u)1(pi)1(e)-1(,)-348(c)-1(o?)-348(A)-349(b)-27(o)-349(t)1(o)-349(k)28(ob)1(ie)-1(ta)-348(da)]TJ\nET\nendstream\nendobj\n2110 0 obj <<\n/Type /Page\n/Contents 2111 0 R\n/Resources 2109 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2109 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2115 0 obj <<\n/Length 8888      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(662)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(sam)-1(a)-333(rad)1(\\246)-1(?)-333(Zm)-1(ar)1(n)28(uj)1(e)-334(s)-1(i)1(\\246)-334(ws)-1(zys)-1(t)1(k)28(o!{)-334(sze)-1(p)1(ta\\252)-334(b)-27(e)-1(zrad)1(nie.)]TJ 27.879 -13.549 Td[({)-274(Z)-274(d)1(usz)-1(y)-274(se)-1(r)1(c)-1(a)-274(r)1(ad)-274(b)28(y)1(m)-275(ci)-274(p)-27(om\\363g)-1(\\252,)-273(ale)-275(c\\363\\273)-274(ja)-274(mog\\246)-1(.)1(..)-274(Cz)-1(ek)56(a)-56(j)1(,)-274(ms)-1(z\\246)-275(\\261wi\\246)-1(t\\241)]TJ -27.879 -13.549 Td[(o)-28(d)1(pra)28(wi\\246)-413(do)-413(Przem)-1(ieni)1(e)-1(n)1(ia)-413(P)28(a\\253skiego)-413(na)-413(t)28(w)27(o)-55(j\\241)-413(in)28(tencj\\246.)-413(Zap)-28(\\246d\\271)-413(m)-1(i)-413(k)28(on)1(ie)-414(d)1(o)]TJ 0 -13.549 Td[(sta)-56(j)1(ni,)-333(p)-27(\\363\\271)-1(n)1(o!)-333(No,)-334(m\\363)28(wi\\246)-334({)-333(c)-1(i)1(,)-334(p)-27(\\363\\271no,)-333(cz)-1(as)-334(spa\\242!)]TJ 27.879 -13.549 Td[(An)28(tek)-441(tak)-442(b)29(y\\252)-442(p)1(rz)-1(ej\\246t)28(y)-441(turb)1(ac)-1(j)1(am)-1(i)1(,)-442(\\273e)-442(wys)-1(zed\\252s)-1(zy)-441(z)-442(ks)-1(i)1(\\246)-1(\\273e)-1(go)-441(p)-28(o)-27(dw)28(\\363rz)-1(a)]TJ -27.879 -13.55 Td[(dop)1(iero)-333(przyp)-27(omnia\\252)-333(s)-1(ob)1(ie)-334(Jagu)1(s)-1(i\\246)-333(i)-333(s)-1(p)1(ie)-1(sz)-1(n)1(ie)-334(d)1(o)-334(n)1(iej)-333(p)-28(ol)1(e)-1(cia\\252.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-333(c)-1(o)-333(ju)1(\\273)-334(cz)-1(ek)56(a\\252)-1(a)-333(skulon)1(a)-333(p)-28(o)-28(d)-332(s)-1(to)-28(d)1(o\\252\\241.)]TJ 0 -13.549 Td[({)-333(C)-1(zek)55(a\\252am)-333(i)-334(cze)-1(k)56(a\\252am)-1(!)]TJ 0 -13.549 Td[(G\\252os)-334(mia\\252a)-333(jakb)29(y)-333(s)-1(c)27(h)1(ryp)1(ni)1(\\246)-1(t)28(y)28(o)-28(d)-333(r)1(os)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Mog\\252e)-1(m)-333(s)-1(i)1(\\246)-334(to)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(u)-333(wym\\363)28(w)-1(i)1(\\242)-1(?)-333({)-334(Chcia\\252)-333(j\\241)-333(ob)-55(j\\241\\242,)-333(o)-28(dep)-28(c)28(hn)1(\\246)-1(\\252a)-333(go.)]TJ 0 -13.549 Td[({)-333(Nie)-334(\\014)1(gle)-334(mi)-333(ta)-334(w)-333(g\\252o)27(wie,)-333(nie)-333(c)-1(ec)27(k)56(ani)1(a!)]TJ 0 -13.55 Td[({)-333(Dy\\242)-334(ci\\246)-334(ca\\252kiem)-334(ni)1(e)-334(p)-27(o)-1(zna)-55(j\\246!)-333({)-334(Czu\\252)-333(s)-1(i)1(\\246)-334(dotk)1(ni\\246t)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Jak)56(\\241\\261)-334(m)-1(e)-333(os)-1(ta)28(wi\\252,)-333(taku)1(s)-1(ie\\253k)56(\\241)-333(i)-333(jes)-1(tem...)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(iep)-28(o)-28(d)1(obn)1(a)-334(d)1(o)-333(s)-1(i\\246...)-333({)-333(Pr)1(z)-1(ysun)1(\\241\\252)-334(si\\246)-334(b)1(li\\273e)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(zafraso)28(w)27(a\\252e\\261)-334(si\\246)-334(o)-333(m)-1(n)1(ie)-334(b)-27(e)-1(z)-333(t)27(y)1(la)-333(c)-1(zas)-1(u)1(,)-333(a)-334(teraz)-334(si\\246)-334(d)1(z)-1(i)1(w)-1(u)1(jes)-1(z?)]TJ 0 -13.549 Td[({)-333(\\233e)-334(ju)1(\\273)-334(i)-333(bar)1(z)-1(ej)-333(nie)-333(s)-1(p)-27(os)-1(\\363b)1(,)-333(ale)-334(mog\\252e)-1(m)-333(to)-334(p)1(rzylec)-1(ie\\242)-334(d)1(o)-334(ci\\246,)-334(co?)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(a)-334(osta\\252am)-334(j)1(e)-1(n)1(o)-334(z)-333(trup)-27(em)-334(a)-333(z)-1(e)-334(zgry)1(z)-1(otami!)-333({)-333(Zatrz)-1(\\246s\\252)-1(a)-333(si\\246)-334(z)-334(zimna.)]TJ 0 -13.549 Td[({)-250(I)-250(an)1(i)-250(c)-1(i)-249(w)-250(g\\252)-1(o)28(wie)-250(p)-28(osta\\252o)-250(za)-56(jr)1(z)-1(e\\242)-250(do)-250(mnie,)-250(co)-250(insze)-1(go)-250(mia\\252a\\261)-250(w)-251(m)28(y\\261lac)27(h)1(!...)]TJ 0 -13.549 Td[({)-333(C)-1(zek)55(a\\252e\\261)-334(to)-333(m)-1(e,)-333(Jan)28(to\\261,)-333(c)-1(ze)-1(k)56(a\\252e\\261)-1(?)-333({)-334(wyj)1(\\241k)55(a\\252a)-333(ni)1(e)-1(d)1(o)27(wierza)-56(j)1(\\241c)-1(o.)]TJ 0 -13.549 Td[({)-327(I)-327(jak)-327(jesz)-1(cz)-1(e!)-327(A)-327(to)-328(k)1(ie)-1(j)-326(te)-1(n)-326(g\\252)-1(u)1(pi)-327(co)-327(dn)1(ia)-327(w)-1(i)1(s)-1(ia\\252em)-328(u)-326(krat)28(y)-327(i)-327(o)-28(cz)-1(y)-327(wyp)1(a-)]TJ -27.879 -13.549 Td[(try)1(w)27(a\\252em)-334(za)-334(tob)1(\\241,)-333(i)-334(co)-333(dn)1(ia)-334(ci\\246)-334(cze)-1(k)56(a\\252e)-1(m!)-333({)-333(Nag\\252)-1(y)-333(\\273al)-333(nim)-333(z)-1(atr)1(z)-1(\\241s\\252.)]TJ 27.879 -13.55 Td[({)-265(Jez)-1(u)-264(k)28(o)-28(c)27(h)1(an)28(y!)-265(A)-265(tak)-264(m)-1(e)-265(s)-1(k)1(l\\241\\252e)-1(\\261)-265(tam)-266(za)-265(br)1(ogiem)-1(!)-265(A)-265(t)1(aki\\261)-265(prz\\363)-28(d)1(z)-1(i)-265(b)28(y)1(\\252)-265(z)-1(\\252y!)]TJ -27.879 -13.549 Td[(A)-263(kiej)-263(ci\\246)-264(b)1(rali)1(,)-263(to)-264(an)1(i\\261)-263(s)-1(p)-27(o)-56(j)1(rz)-1(a\\252)-263(n)1(a)-264(mn)1(ie)-1(,)-263(an)1(i\\261)-264(p)1(rze)-1(m\\363)28(w)-1(i)1(\\252...)-263(Dob)1(rz)-1(e)-263(bacz)-1(\\246,)-263(mia\\252e)-1(\\261)]TJ 0 -13.549 Td[(to)-335(d)1(o)-1(b)1(re)-335(s)-1(\\252o)28(w)28(o)-336(l)1(a)-335(w)-1(szys)-1(tk)1(ic)27(h)1(,)-335(na)28(w)28(e)-1(t)-335(la)-335(p)1(s)-1(a,)-335(j)1(e)-1(n)1(o)-335(ni)1(e)-336(la)-335(mni)1(e)-1(!)-335(T)83(o)-335(j)1(u\\273)-335(m)27(y\\261la\\252am,)]TJ 0 -13.549 Td[(\\273e)-334(s)-1(i)1(\\246)-334(w\\261)-1(cie)-1(k)1(n\\246!)]TJ 27.879 -13.549 Td[({)-492(Nie)-492(m)-1(i)1(a\\252)-1(em)-492(z)-1(\\252o\\261c)-1(i)-492(d)1(o)-492(c)-1(i\\246,)-492(Jagu)1(\\261)-1(,)-492(n)1(ie.)-492(Ale)-492(jak)-492(si\\246)-493(d)1(usz)-1(a)-492(cz)-1(\\252o)28(wiek)28(o)27(wi)]TJ -27.879 -13.55 Td[(zapiec)-1(ze)-334(w)-333(z)-1(gry)1(z)-1(o)-28(cie,)-333(to)-334(b)29(y)-334(i)-333(siebie,)-333(i)-333(w)-1(szys)-1(tek)-333(\\261)-1(wiat)-333(wytr)1(ac)-1(i\\252..)1(.)]TJ 27.879 -13.549 Td[(Mi)1(lc)-1(ze)-1(l)1(i)-325(sto)-56(j)1(\\241c)-326(tu)1(\\273)-326(p)1(rzy)-325(sobie,)-325(bi)1(e)-1(d)1(ro)-325(w)-325(bi)1(e)-1(d)1(ro.)-325(Ksi\\246\\273)-1(y)1(c)-326(\\261wie)-1(ci\\252)-325(im)-325(pr)1(os)-1(to)]TJ -27.879 -13.549 Td[(w)-366(t)28(w)28(arze)-1(.)-365(Dysz)-1(eli)-365(c)-1(i)1(\\246)-1(\\273k)28(o,)-365(s)-1(zarpan)1(i)-365(gryz\\241c)-1(ymi)-365(s)-1(p)-27(omink)56(ami,)-365(o)-28(cz)-1(y)-365(im)-366(p)1(\\252yw)27(a\\252y)-365(w)]TJ 0 -13.549 Td[(zakrze)-1(p)1(\\252yc)27(h)-333(\\252zac)27(h)-333(\\273al\\363)28(w)-334(i)-333(ud)1(r\\246ki.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(tak)-333(to)-333(me)-334(kiedy\\261)-333(w)-1(i)1(ta\\252a\\261)-1(!)-333({)-333(rze)-1(k\\252)-333(s)-1(m)28(utn)1(ie.)]TJ 0 -13.55 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-1(a)-333(si\\246)-334(n)1(agle)-334(i)-333(rze)-1(wliwie)-333(kiej)-333(dziec)-1(i\\241tk)28(o.)]TJ 0 -13.549 Td[({)-305(Jak\\273)-1(e)-306(ci\\246)-306(to)-305(mam)-306(wita\\242)-1(,)-305(j)1(ak?)-306(Ma\\252o\\261)-306(t)1(o)-306(me)-306(ju)1(\\273)-306(p)-28(ok)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(\\252)-306(i)-305(s)-1(p)-27(oni)1(e)-1(wie-)]TJ -27.879 -13.549 Td[(ra\\252,)-333(\\273e)-334(tera)-333(lud)1(z)-1(ie)-333(patrz\\241)-333(na)-333(m)-1(n)1(ie)-334(k)1(ie)-1(j)-333(n)1(a)-333(te)-1(go)-333(psa...)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(ci\\246)-334(sp)-27(oniewie)-1(r)1(a\\252e)-1(m?)-334(T)83(o)-333(pr)1(z)-1(ez)-1(e)-333(m)-1(n)1(ie?)-334({)-333(Gni)1(e)-1(w)-333(go)-334(p)1(rze)-1(j)1(\\241\\252)-1(.)]TJ 0 -13.549 Td[({)-288(A)-288(p)1(rz)-1(ez)-288(c)-1(iebi)1(e)-1(!)-288(P)1(rze)-1(z)-288(c)-1(i)1(e)-1(b)1(ie)-289(wygn)1(a\\252a)-288(m)-1(e)-288(z)-288(c)27(ha\\252u)1(p)28(y)-288(ta)-288(\\015)1(\\241dr)1(a,)-288(to)-288(\\261)-1(wi\\253)1(s)-1(k)1(ie)]TJ -27.879 -13.549 Td[(p)-27(om)-1(i)1(e)-1(t\\252o!)-333(Pr)1(z)-1(ez)-334(cie)-1(b)1(ie)-334(p)-27(os)-1(z\\252am)-334(n)1(a)-334(p)-27(o\\261m)-1(iec)27(h)-333(ca\\252e)-1(j)-333(wsi...)]TJ 27.879 -13.55 Td[({)-263(A)-263(w)28(\\363)-56(j)1(ta)-263(to)-263(j)1(u\\273)-263(ni)1(e)-264(b)1(ac)-1(zysz)-1(?)-263(a)-263(d)1(ru)1(gic)27(h)1(,)-263(c)-1(o?)-263({)-262(buc)28(hn)1(\\241\\252)-263(gro\\271nie.)-263({)-263(W)1(s)-1(zy\\242)-1(k)28(o)]TJ -27.879 -13.549 Td[(b)-27(e)-1(z)-310(cie)-1(b)1(ie!)-310(Wsz)-1(y)1(\\242)-1(k)28(o!)-309({)-310(s)-1(ze)-1(p)1(ta\\252a)-310(coraz)-310(bar)1(dzie)-1(j)-309(roz\\273)-1(al)1(ona.)-309({)-310(A)-310(cz)-1(em)27(u)1(\\261)-311(me)-310(do)-309(s)-1(i\\246)]TJ 0 -13.549 Td[(zniew)27(ol)1(i\\252)-351(jak)-351(tego)-351(p)1(s)-1(a?)-351(Mia\\252e\\261)-352(p)1(rze)-1(cie\\273)-352(sw)27(o)-55(j\\241)-351(k)28(ob)1(ie)-1(t)1(\\246)-1(.)-351(G)1(\\252upi)1(a)-351(b)28(y\\252am,)-351(a)-351(t)28(y\\261)-351(m)-1(e)]TJ 0 -13.549 Td[(tak)-414(op)-28(\\246ta\\252,)-415(co)-415(j)1(u\\273)-415(\\261w)-1(i)1(ata)-415(Bo\\273)-1(ego)-415(za)-415(tob\\241)-414(nie)-415(wid)1(z)-1(i)1(a\\252)-1(am!)-414(I)-415(c)-1(zem)27(u\\261)-415(me)-415(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(osta)27(wi\\252)-333(sam)-1(\\241,)-333(na)-333(p)1(as)-1(t)28(w)28(\\246)-1(?)]TJ 27.879 -13.55 Td[(Ale)-334(i)-333(on)-333(p)-27(orw)28(an)28(y)-333(\\273alam)-1(i)-333(zas)-1(y)1(c)-1(za\\252)-334(p)1(rze)-1(z)-334(zaci\\261)-1(n)1(i\\246te)-334(z)-1(\\246b)28(y:)]TJ 0 -13.549 Td[({)-417(T)83(o)-417(ja)-417(c)-1(i)-417(k)56(aza\\252)-1(em)-418(osta\\242)-418(mo)-56(j)1(\\241)-417(m)-1(aco)-28(c)27(h)1(\\241?)-418(Ja)-417(ci\\246)-418(te\\273)-418(p)-27(e)-1(wni)1(e)-418(ni)1(e)-1(w)28(oli\\252em)-1(,)]TJ\nET\nendstream\nendobj\n2114 0 obj <<\n/Type /Page\n/Contents 2115 0 R\n/Resources 2113 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2113 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2118 0 obj <<\n/Length 9138      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(663)]TJ -358.232 -35.866 Td[(b)28(y\\261)-333(s)-1(i\\246)-333(t\\252uk\\252a)-333(z)-334(k)56(a\\273)-1(d)1(ym,)-333(kto)-333(jeno)-333(c)27(hcia\\252,)-333(c)-1(o?)]TJ 27.879 -13.549 Td[(-.T)83(o)-320(p)-27(o)-319(c)-1(o\\261)-320(mi)-320(n)1(ie)-320(wz)-1(b)1(ron)1(i\\252?)-320(By\\261)-320(m)-1(e)-320(mi\\252o)28(w)27(a\\252,)-319(to)-319(b)28(y\\261)-320(me)-320(nie)-320(d)1(a\\252)-320(na)-319(w)27(ol)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-278(osta)28(wi\\252b)28(y\\261)-277(m)-1(e)-277(sam)-1(ej,)-276(a)-277(jeno)-277(strzeg\\252)-277(prze)-1(d)-276(z\\252\\241)-277(przygo)-28(d)1(\\241,)-277(j)1(ak)-277(to,)-277(d)1(ru)1(gie)-277(robi)1(\\241!)]TJ 0 -13.549 Td[({)-388(s)-1(k)56(ar\\273y\\252a)-388(s)-1(i\\246)-389(b)-27(ole\\261)-1(n)1(ie)-389(i)-388(tak)-388(p)-27(e)-1(\\252n)1(a)-389(n)1(ie)-1(zg\\252\\246)-1(b)1(ionego)-388(\\273)-1(alu)1(,)-388(\\273)-1(e)-389(j)1(u\\273)-389(n)1(ie)-389(p)-27(oredzi\\252)-388(s)-1(i\\246)]TJ 0 -13.549 Td[(br)1(oni\\242.)-333(Odp)1(ad\\252y)-333(go)-333(ws)-1(zys)-1(t)1(kie)-334(z\\252o\\261)-1(cie,)-334(a)-333(se)-1(rce)-334(si\\246)-334(r)1(oz)-1(d)1(ygota\\252o)-334(k)28(o)-27(c)27(han)1(iem)-1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-55(j,)-333(Jagu)1(\\261)-1(,)-333(cic)27(h)1(o)-56(j)1(,)-334(d)1(z)-1(i)1(e)-1(ci\\241tk)28(o!)-333({)-333(s)-1(ze)-1(p)1(ta\\252)-334(z)-333(tkliw)28(o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-322(I)-322(tak)56(a)-322(k)1(rz)-1(y)1(w)-1(d)1(a)-322(mi)-322(si\\246)-322(s)-1(ta\\252a,)-321(to)-322(i)-322(t)28(y)-321(p)-28(o)28(wsta)-56(j)1(e)-1(sz)-323(n)1(a)-322(mnie)-322(j)1(ak)-322(ws)-1(zystkie,)-322(i)]TJ -27.879 -13.549 Td[(t)28(y)83(,)-333(i)-333(t)28(y!)-333({)-333(s)-1(zlo)-28(c)28(ha\\252a)-333(w)-1(spi)1(e)-1(r)1(a)-56(j\\241c)-333(g\\252o)27(w)28(\\246)-334(o)-333(s)-1(to)-27(do\\252\\246)-1(.)]TJ 27.879 -13.549 Td[(Usadzi\\252)-242(j)1(\\241)-242(p)1(rzy)-242(sobi)1(e)-242(na)-241(m)-1(i)1(e)-1(d)1(z)-1(y)-241(i)-241(j\\241\\252)-241(pr)1(z)-1(ygar)1(nia\\242)-242(d)1(o)-241(s)-1(erca)-242(a)-241(tuli)1(\\242)-1(,)-241(a)-241(g\\252as)-1(k)56(a\\242)]TJ -27.879 -13.549 Td[(p)-27(o)-442(w\\252os)-1(ac)28(h)-442(i)-441(ob)-27(c)-1(i)1(e)-1(ra)-55(j\\241c)-442(j)1(e)-1(j)-441(t)28(w)28(arz)-442(z)-1(ap)1(\\252ak)55(an)1(\\241,)-441(c)-1(a\\252o)28(w)27(a\\252)-441(jej)-442(w)28(argi)-441(roztrz\\246)-1(sion)1(e)-442(i)]TJ 0 -13.549 Td[(te)-380(o)-27(c)-1(zy)-379(z)-1(alan)1(e)-380(gorzkimi)-379(\\252z)-1(ami,)-379(te)-380(k)28(o)-27(c)27(han)1(e)-380(a)-379(tak)-379(pr)1(z)-1(es)-1(m)28(ucone)-380(o)-27(c)-1(zy)83(.)-379(P)1(ie)-1(\\261c)-1(i)1(\\252)-380(j)1(\\241,)]TJ 0 -13.55 Td[(pr)1(z)-1(y)1(ho\\252ub)1(ia\\252)-242(i)-241(s)-1(p)-27(ok)28(oi\\252,)-241(jak)-241(jeno)-241(p)-28(or)1(e)-1(d)1(z)-1(i)1(\\252)-1(,)-241(\\273e)-242(ju\\273)-242(p)1(\\252ak)56(a\\252)-1(a)-241(c)-1(or)1(az)-242(c)-1(isze)-1(j)-241(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra)-55(j\\241c)]TJ 0 -13.549 Td[(do\\253)-337(i)-338(z)-339(tak)56(\\241)-339(d)1(uf)1(no\\261c)-1(i)1(\\241)-339(u)28(wiesi\\252a)-339(m)28(u)-338(si\\246)-339(na)-338(sz)-1(y)1(i)-339(a)-338(k\\252ad)1(\\252a)-339(g\\252o)28(w)28(\\246)-339(na)-338(jego)-338(piersiac)27(h)]TJ 0 -13.549 Td[(jak)1(b)28(y)-260(n)1(a)-261(t)28(y)1(m)-261(matcz)-1(yn)29(ym)-261(serc)-1(u)1(,)-260(k)56(a)-56(j)-259(tak)-260(lu)1(b)-28(o)-260(j)1(e)-1(st)-260(wyp\\252aki)1(w)27(a\\242)-260(ws)-1(zys)-1(t)1(kie)-260(b)-28(ole\\261)-1(cie)]TJ 0 -13.549 Td[(a)-333(s)-1(m)28(utki)1(...)]TJ 27.879 -13.549 Td[(Ale)-346(An)28(tk)28(o)28(w)-1(i)-345(ju\\273)-346(s)-1(i)1(\\246)-347(m\\241c)-1(i\\252o)-346(w)-346(g\\252o)27(wie,)-346(b)-27(o)-347(t)1(akie)-347(l)1(ub)-27(o\\261)-1(cie)-347(b)1(i\\252y)-346(o)-28(d)-345(niej)-346(i)-346(tak)]TJ -27.879 -13.55 Td[(go)-394(rozpr)1(a\\273)-1(a\\252o)-394(j)1(e)-1(j)-393(c)-1(i)1(e)-1(p)1(\\252)-1(o,)-393(\\273)-1(e)-394(coraz)-395(za)-56(j)1(adl)1(e)-1(j)-393(c)-1(a\\252o)28(w)27(a\\252)-394(i)-393(c)-1(or)1(az)-395(mo)-28(cniej)-394(ogar)1(nia\\252)-394(j)1(\\241)]TJ 0 -13.549 Td[(sob\\241...)]TJ 27.879 -13.549 Td[(Zrazu)-339(ani)-339(m)-1(iar)1(k)28(o)27(w)28(a\\252a,)-340(d)1(o)-340(cz)-1(ego)-340(id)1(z)-1(i)1(e)-340(i)-340(co)-340(si\\246)-340(z)-340(ni\\241)-340(wyr)1(abia.)-339(Dop)1(ie)-1(r)1(o)-340(kiej)]TJ -27.879 -13.549 Td[(si\\246)-318(j)1(u\\273)-317(c)-1(a\\252ki)1(e)-1(m)-317(p)-28(o)-27(c)-1(zu\\252a)-317(w)-317(jego)-317(m)-1(o)-27(c)-1(y)-317(i)-316(kiej)-317(j\\241\\252)-317(r)1(oz)-1(gn)1(iata\\242)-317(je)-1(j)-316(w)27(ar)1(gi)-317(rozpal)1(on)28(ymi)]TJ 0 -13.549 Td[(ca\\252)-1(u)1(nk)56(ami,)-333(z)-1(acz)-1(\\246\\252a)-333(s)-1(i\\246)-333(s)-1(zarpa\\242)-333(a)-334(p)1(rosi\\242)-334(l\\246kliwie,)-333(pr)1(a)27(wie)-333(z)-334(p\\252acz)-1(em:)]TJ 27.879 -13.55 Td[({)-333(Pu)1(\\261)-1(\\242)-334(me,)-334(J)1(an)28(to\\261)-1(!)-333(P)1(u\\261\\242)-1(!)-333(Lob)-27(oga,)-333(b)-28(o)-333(b)-27(e)-1(d)1(e)-334(krzycz)-1(e\\242)-1(!)]TJ 0 -13.549 Td[(Ale)-322(mog\\252a)-322(si\\246)-322(to)-321(ju)1(\\273)-322(wydr)1(z)-1(e\\242)-322(s)-1(mok)28(o)28(wi,)-321(kiej)-321(\\261)-1(cisk)55(a\\252,)-321(ja\\273e)-322(tc)27(h)29(u)-321(brak)28(o)28(w)28(a\\252o)-322(i)]TJ -27.879 -13.549 Td[(ca\\252)-1(\\241)-333(p)1(rz)-1(ejmo)28(w)27(a\\252)-333(w)27(ar)-333(i)-333(d)1(ygotan)1(ia.)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(atni)-333(raz)-333(p)-28(ozw)27(\\363l,)-333(ostatn)1(i!)-333({)-334(sk)56(am)-1(l)1(a\\252)-334(ledwie)-334(j)1(u\\273)-333(z)-1(ip)1(i\\241c.)]TJ 0 -13.549 Td[(A\\273)-350(\\261w)-1(i)1(at)-350(si\\246)-350(z)-350(ni)1(\\241)-350(zakr\\246c)-1(i\\252)-349(i)-349(p)-28(olec)-1(i)1(a\\252a)-350(j)1(a)-1(k)1(b)28(y)-349(na)-349(dno)-349(jak)28(o)28(w)28(e)-1(go\\261)-350(r)1(a)-56(ju)1(,)-349(a)-350(on)]TJ -27.879 -13.55 Td[(j\\241)-406(wz)-1(i)1(on,)-406(jak)-406(to)-406(kiedy\\261)-406(bra\\252,)-406(zapami\\246)-1(t)1(ale)-1(,)-406(p)1(rz)-1(ez)-407(lu)1(b\\241)-406(mo)-28(c)-407(k)28(o)-28(c)27(h)1(ani)1(a,)-407(i)-406(d)1(a)27(w)28(a\\252a)]TJ 0 -13.549 Td[(m)27(u)-314(si\\246)-315(te\\273)-315(jak)-314(kiedy)1(\\261)-1(,)-314(w)-315(s\\252o)-28(dk)1(ie)-1(j)-314(u)1(dr\\246ce)-315(niem)-1(o)-27(c)-1(y)84(,)-314(na)-315(n)1(iez)-1(mierzone)-315(sz)-1(cz)-1(\\246\\261)-1(cie,)-315(n)1(a)]TJ 0 -13.549 Td[(\\261m)-1(ier\\242)-333(s)-1(am\\241...)]TJ 27.879 -13.549 Td[(Jak)-333(kiedy)1(\\261)-1(,)-333(m\\363)-56(j)-333(Jez)-1(u)1(!)-333(Jak)-333(da)28(wniej!)-333(Jak)-333(za)28(w)-1(d)1(y!)]TJ 0 -13.549 Td[(No)-28(c)-410(s)-1(ta\\252a)-410(rozgwia\\273d\\273ona,)-410(ksi\\246\\273)-1(yc)-410(wis)-1(i)1(a\\252)-411(wysok)28(o)-410(w)-410(p)-28(\\363\\252)-410(n)1(ie)-1(b)1(a;)-410(nagr)1(z)-1(an)1(e)-1(,)]TJ -27.879 -13.55 Td[(rozpac)28(hn)1(ione)-428(p)-28(o)28(wietrze)-429(ob)1(tula\\252o)-428(p)-27(ola)-428(p)-27(o\\261)-1(p)1(ione)-428(w)-428(niezg\\252)-1(\\246bi)1(onej)-428(cic)27(h)1(o\\261)-1(ci;)-428(ca\\252y)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at)-236(le\\273)-1(a\\252)-236(b)-27(ez)-237(tc)28(h)28(u)-235(w)-236(up)-27(o)-56(j)1(n)28(ym)-236(za)-1(p)-27(omnieni)1(u)-236(i)-235(w)-236(s)-1(\\252o)-28(d)1(kiej)-235(pies)-1(zc)-1(zo)-28(cie)-236(niepami\\246c)-1(i)1(.)]TJ 27.879 -13.549 Td[(A)-337(i)-337(w)-337(ni)1(c)27(h)-337(n)1(ie)-338(b)29(y\\252o)-337(ju)1(\\273)-338(p)-27(om)-1(i)1(ark)28(o)28(w)27(an)1(ia)-337(o)-337(ni)1(c)-1(zym,)-337(nic,)-337(kr)1(om)-1(i)1(e)-338(ogn)1(ia)-337(i)-337(bu)1(-)]TJ -27.879 -13.549 Td[(rzy)83(,)-411(i)-412(n)1(ic,)-412(kromie)-412(wiec)-1(znie)-412(\\273\\241dn)1(e)-1(j)-411(i)-412(wiec)-1(zni)1(e)-413(n)1(ienasyc)-1(on)1(e)-1(j)-411(t\\246s)-1(kn)1(icy)83(.)-411(Jak)-412(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(usc)27(h)1(ni\\246ta)-327(drze)-1(win)1(a)-328(o\\273eni)-327(s)-1(i)1(\\246)-328(z)-328(pieru)1(nem)-328(i)-327(buc)28(hn)1(ie)-328(w)-328(n)1(ieb)-28(o)-327(p\\252omie)-1(n)1(iami,)-327(\\273)-1(e)-328(j)1(u\\273)]TJ 0 -13.549 Td[(wraz)-399(gin)1(\\241)-399(h)28(ucz\\241c)-400(w)28(e)-1(seln\\241)-399(p)1(ie\\261)-1(\\253)-398(z)-1(at)1(rat)28(y)83(,)-398(tak)-399(i)-398(oni)-398(przepadal)1(i)-399(w)-399(j)1(akic)27(h)1(\\261)-399(niena-)]TJ 0 -13.55 Td[(syc)-1(on)29(yc)27(h)-357(\\273)-1(arac)28(h.)-358(O)1(\\273)-1(y\\252y)-358(w)-358(n)1(ic)27(h)-357(da)28(wne)-358(m)-1(i)1(\\252)-1(o\\261cie)-359(i)-357(z)-1(w)28(ar\\252y)-358(si\\246)-359(strzela)-56(j)1(\\241c)-359(b)1(uj)1(n)28(ym,)]TJ 0 -13.549 Td[(rad)1(os)-1(n)29(ym)-301(ogn)1(ie)-1(m)-300(na)-300(to)-300(j)1(e)-1(d)1(no)-300(mgnienie)-300(z)-1(ap)1(am)-1(i)1(\\246)-1(tan)1(ia,)-300(na)-300(t\\246)-300(jedn)1(\\241)-301(t)28(y)1(lk)28(o)-300(m)-1(i)1(n)28(ut\\246)]TJ 0 -13.549 Td[(ostatniej)-333(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Bo)-469(kiej)-469(zno)28(wu)-469(siedli)-468(przy)-469(sobi)1(e)-1(,)-469(j)1(u\\273)-469(im)-469(tak)-469(cos)-1(i)1(k)-469(omro)-28(cz)-1(y\\252o)-469(d)1(usz)-1(e,)-469(\\273e)]TJ -27.879 -13.549 Td[(sp)-28(ozierali)-311(n)1(a)-311(s)-1(i\\246)-311(trw)28(o\\273nie,)-311(uk)1(radk)1(ie)-1(m,)-311(r)1(oz)-1(b)1(ie)-1(ga)-55(j\\241c)-311(s)-1(i)1(\\246)-312(o)-28(cz)-1(ami)-311(ki)1(e)-1(b)28(y)-310(z)-1(e)-311(ws)-1(t)28(yd)1(e)-1(m)]TJ 0 -13.55 Td[(i)-333(\\273)-1(al)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Na)-414(darmo)-414(s)-1(zuk)56(a\\252)-414(w)27(argami)-414(jej)-414(w)28(arg)-414(g\\252)-1(o)-27(dn)28(y)1(c)27(h)-414(ca\\252)-1(u)1(nk)28(\\363)28(w,)-414(jak)-414(kiedy)1(\\261)-1(:)-414(o)-28(d)1(-)]TJ\nET\nendstream\nendobj\n2117 0 obj <<\n/Type /Page\n/Contents 2118 0 R\n/Resources 2116 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2116 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2121 0 obj <<\n/Length 8234      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(664)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(wraca\\252a)-334(si\\246)-334(z)-334(n)1(iec)27(h\\246ci\\241.)]TJ 27.879 -13.549 Td[(Na)-277(darmo)-277(s)-1(ze)-1(p)1(ta\\252)-278(p)1(rze)-1(zwis)-1(k)56(a)-277(c)-1(o)-277(na)-55(js\\252o)-28(dsze)-1(;)-277(ni)1(e)-278(o)-28(dp)-27(o)28(wiada\\252a,)-277(p)1(ilni)1(e)-278(z)-1(ap)1(a-)]TJ -27.879 -13.549 Td[(trzona)-265(w)-266(k)1(s)-1(i\\246\\273)-1(y)1(c)-1(;)-265(wi\\246c)-266(bu)1(rz)-1(y)1(\\252)-266(si\\246)-266(w)-266(sobi)1(e)-266(i)-266(c)28(h\\252\\363)-28(d)1(\\252,)-266(p)1(rze)-1(j)1(\\246)-1(t)28(y)-265(dziwn\\241)-265(mark)28(otn)1(o\\261)-1(ci\\241)]TJ 0 -13.549 Td[(i)-333(\\273)-1(al)1(am)-1(i)1(.)]TJ 27.879 -13.549 Td[(Si)1(e)-1(d)1(z)-1(ieli,)-321(nie)-322(wiedz\\241c)-323(j)1(u\\273,)-322(co)-322(m\\363)27(wi\\242,)-322(n)1(ie)-1(cierp)1(liwi\\241c)-322(s)-1(i\\246)-322(j)1(e)-1(n)1(o)-322(a)-322(wyc)-1(zekuj)1(\\241c)-1(,)]TJ -27.879 -13.55 Td[(kt\\363r)1(e)-334(s)-1(i)1(\\246)-334(pi)1(e)-1(rw)28(ej)-333(rusz)-1(y)-333(i)-333(p)-27(\\363)-56(j)1(dzie)-334(sobie)-333(precz)-1(.)]TJ 27.879 -13.549 Td[(A)-460(w)-461(Jagusi)-460(jakb)28(y)-460(ju)1(\\273)-461(ws)-1(zystk)28(o)-461(wygas\\252)-1(o)-460(z)-1(e)-461(szc)-1(z\\246)-1(tem)-461(i)-460(roz)-1(syp)1(a\\252o)-461(s)-1(i)1(\\246)-461(w)]TJ -27.879 -13.549 Td[(p)-27(opi\\363\\252,)-333(b)-27(o)-334(ozw)28(a\\252)-1(a)-333(si\\246)-334(z)-334(p)1(rzyta)-56(j)1(on\\241)-333(z)-1(\\252o\\261c)-1(i)1(\\241:)]TJ 27.879 -13.549 Td[({)-333(Ale)-1(\\261)-333(m)-1(e)-333(z)-1(n)1(ie)-1(w)28(oli\\252,)-333(kiej)-333(ten)-333(z)-1(b)-27(\\363)-55(j,)-333(no!)]TJ 0 -13.549 Td[({)-352(Ni)1(e)-352(m)-1(o)-55(ja\\261)-352(to,)-351(Jagu)1(\\261)-1(,)-351(nie)-352(mo)-55(ja?)-352({)-351(C)-1(h)1(c)-1(i)1(a\\252)-352(j\\241)-351(pr)1(z)-1(ygar)1(n\\241\\242,)-352(o)-27(dep)-28(c)28(hn)1(\\246)-1(\\252a)-352(go)]TJ -27.879 -13.549 Td[(gw)28(a\\252)-1(t)1(o)27(wn)1(ie)-1(.)]TJ 27.879 -13.55 Td[({)-333(Anim)-333(t)28(w)27(o)-55(ja,)-333(ani)1(m)-334(ni)1(c)-1(zyja,)-333(rozumies)-1(z?)-334(Ni)1(c)-1(zyja!)]TJ 0 -13.549 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-1(a)-264(si\\246)-265(zno)28(wu,)-264(ale)-264(ju)1(\\273)-265(jej)-264(n)1(ie)-265(sp)-28(ok)28(oi)1(\\252)-265(n)1(i)-264(utu)1(la\\252,)-264(le)-1(cz)-265(p)-27(o)-264(jaki)1(m)-265(cz)-1(asie)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiedzia\\252)-333(w)27(a\\273n)28(ym)-333(g\\252)-1(osem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261,)-333(p)-28(osz)-1(\\252ab)29(y\\261)-334(ze)-334(m)-1(n)1(\\241)-334(w)28(e)-334(\\261wiat?)]TJ 0 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e)-333(to?)-334({)-333(p)-28(o)-27(dn)1(ie)-1(s\\252a)-334(n)1(a)-334(n)1(iego)-334(zap\\252ak)56(ane)-333(o)-28(c)-1(zy)84(.)]TJ 0 -13.55 Td[({)-333(A)-334(c)28(ho)-28(\\242b)28(y)-333(do)-333(sam)-1(ej)-333(Hame)-1(ry)1(ki!)-333(P)28(osz)-1(\\252ab)28(y)1(\\261)-334(z)-1(a)-333(mn\\241,)-333(Jagu)1(\\261)-1(?)]TJ 0 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(to)-333(p)-27(o)-28(c)-1(zni)1(e)-1(sz)-334(z)-1(e)-333(s)-1(w)28(o)-56(j)1(\\241)-334(k)28(ob)1(ie)-1(t)1(\\241?)]TJ 0 -13.549 Td[(Ze)-1(r)1(w)27(a\\252)-333(s)-1(i)1(\\246)-1(,)-333(ki)1(e)-1(b)28(y)-333(go)-333(kto)-333(bicze)-1(m)-334(t)1(rz)-1(asn\\241\\252.)]TJ 0 -13.549 Td[({)-333(Pra)28(wd\\246)-333(p)28(ytam!)-333(T)83(ru)1(tk)28(\\246)-334(to)-333(jej)-333(z)-1(ad)1(as)-1(z)-333(c)-1(zy)-333(c)-1(o?)]TJ 0 -13.549 Td[(P)28(o)-28(c)28(h)28(wyci\\252)-342(j)1(\\241)-341(w)-1(p)-27(\\363\\252,)-341(pr)1(z)-1(ygar)1(n\\241\\252)-341(krze)-1(p)1(k)28(o)-342(i)-341(ca\\252uj)1(\\241c)-342(nami\\246tni)1(e)-342(p)-27(o)-342(ca\\252e)-1(j)-341(t)28(w)28(a-)]TJ -27.879 -13.55 Td[(rzy)-472(j\\241\\252)-472(p)1(ros)-1(i)1(\\242)-473(a)-472(mole)-1(sto)28(w)27(a\\242,)-472(b)28(yc)28(h)-472(z)-473(n)1(im)-472(jec)27(ha\\252a)-472(w)28(e)-473(\\261w)-1(i)1(at,)-472(k)55(a)-55(j)-472(b)28(y)-472(j)1(u\\273)-472(os)-1(tal)1(i)]TJ 0 -13.549 Td[(raze)-1(m)-354(i)-353(na)-354(za)28(w)-1(sz)-1(e.)-354(S)1(p)-28(or)1(o)-354(c)-1(zasu)-354(m\\363)28(w)-1(i)1(\\252)-354(o)-354(s)-1(w)28(oic)27(h)-353(zam)27(ys\\252ac)27(h)-353(i)-354(nad)1(z)-1(i)1(e)-1(j)1(ac)27(h,)-353(c)-1(ze)-1(p)1(i\\252)]TJ 0 -13.549 Td[(si\\246)-421(b)-27(o)28(wie)-1(m)-420(nagl)1(e)-421(tej)-420(m)28(y\\261le)-421(u)1(c)-1(i)1(e)-1(k)56(ani)1(a)-420(z)-421(n)1(i\\241)-420(kiej)-420(p)1(ijan)29(y)-420(p\\252ota)-420(i)-419(kiej)-420(pi)1(jan)28(y)-419(te)-1(\\273)]TJ 0 -13.549 Td[(pl)1(\\363t\\252,)-333(ogarni)1(\\246)-1(t)28(y)-333(gor\\241czk)28(o)27(wym)-333(wz)-1(b)1(urze)-1(n)1(iem)-1(.)-333(W)1(ys)-1(\\252u)1(c)27(ha\\252a)-333(ws)-1(zystkiego)-333(do)-333(k)28(o\\253ca)]TJ 0 -13.549 Td[(i)-333(o)-28(d)1(rz)-1(ek\\252a)-333(z)-334(pr)1(z)-1(ek)56(\\241s)-1(em)-1(:)]TJ 27.879 -13.55 Td[({)-433(Z)-1(n)1(iew)27(oli)1(\\252e)-1(\\261)-434(me)-434(do)-433(grze)-1(c)28(h)28(u,)-433(to)-433(roz)-1(u)1(mie)-1(sz)-1(,)-433(com)-434(ju)1(\\273)-434(do)-433(c)-1(n)1(a)-434(zg\\252up)1(ia\\252a)-434(i)]TJ -27.879 -13.549 Td[(u)28(wierz\\246)-334(c)-1(i)-333(w)-333(b)-28(ele)-334(b)1(z)-1(d)1(ur)1(y)83(..)1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(i\\246ga\\252)-240(na)-240(ws)-1(zys)-1(t)1(k)28(o,)-240(jak)28(o)-240(\\261)-1(wi\\246t\\241)-240(pr)1(a)27(wd)1(\\246)-241(p)-27(o)27(wieda;)-240(n)1(ie)-240(c)27(hcia\\252a)-240(ju)1(\\273)-241(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a\\242)-334(i)-333(wyrw)28(a)27(wsz)-1(y)-333(si\\246)-334(z)-334(j)1(e)-1(go)-333(r\\241k)-333(sz)-1(epn)1(\\246)-1(\\252a:)]TJ 27.879 -13.549 Td[({)-359(Ani)-359(mi)-359(s)-1(i\\246)-359(\\261)-1(n)1(i)-359(ucie)-1(k)56(a\\242)-360(z)-359(tob\\241.)-359(P)28(o)-359(c)-1(o?)-359(Ab)-27(o)-360(mi)-359(to)-359(\\271)-1(le)-359(s)-1(ame)-1(j)1(?)-360({)-359(Ob)1(tuli)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334(zapask)55(\\241)-333(rozgl\\241da)-55(j\\241c)-333(s)-1(i\\246)-333(u)28(w)27(a\\273ni)1(e)-1(.{)-333(P)28(\\363\\271no,)-333(m)28(us)-1(z\\246)-334(j)1(u\\273)-334(b)1(ie\\273)-1(y\\242!)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e)-333(c)-1(i)-333(pi)1(lno,)-333(n)1(ikto)-333(pr)1(z)-1(ec)-1(iek)-333(z)-334(c)27(h)1(a\\252up)28(y)-333(za)-333(tob\\241)-333(nie)-333(patrzy?)]TJ 0 -13.549 Td[({)-333(Ale)-334(n)1(a)-334(ciebie)-334(p)-27(ora.)-333(Ju)1(\\273)-334(tam)-334(Han)1(k)56(a)-334(p)1(ierz)-1(y)1(n\\246)-334(wietrzy)-333(a)-334(wzdyc)28(ha..)1(.)]TJ 0 -13.549 Td[(Roz)-1(\\273ar\\252)-333(s)-1(i)1(\\246)-334(na)-333(te)-334(s\\252o)28(w)27(a)-333(kiej)-333(pies)-334(i)-333(sykn)1(\\241\\252)-334(u)1(r\\241)-28(gli)1(w)-1(i)1(e)-1(:)]TJ 0 -13.549 Td[({)-333(Ja)-334(ci)-333(ni)1(e)-334(wyp)-28(omin)1(am)-1(,)-333(kt)1(o)-334(tam)-333(na)-333(c)-1(i)1(e)-1(b)1(ie)-334(p)-27(o)-334(k)56(arcz)-1(mac)27(h)-332(w)-1(y)1(c)-1(ze)-1(ku)1(je...)]TJ 0 -13.549 Td[({)-382(A)-382(jakb)28(y)1(\\261)-383(wiedzia\\252,)-382(c)-1(o)-382(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-382(got\\363)28(w)-382(c)-1(ze)-1(k)56(a\\242)-383(c)28(ho)-28(\\242b)28(y)-382(d)1(o)-383(s\\252o\\253ca,)-382(jakb)29(y\\261)]TJ -27.879 -13.55 Td[(wiedzia\\252!)-263(S)1(ielnie\\261)-263(zaduf)1(an)28(y)-262(w)-263(sie)-1(b)1(ie)-263(i)-262(rozumie)-1(sz,)-263(co)-263(j)1(e)-1(n)1(o)-263(t)28(y)-262(jeden)-262(jes)-1(te\\261)-1(!)-262({)-262(gada\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(e\\261)-1(miec)27(h)1(a)-56(j)1(\\241c)-334(s)-1(i\\246)-333(z)-1(j)1(adli)1(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(le\\242)-1(,)-333(c)28(ho)-28(\\242b)28(y)-333(na)28(w)28(e)-1(t)-333(do)-333(\\233yd)1(a,)-333(le)-1(\\242!)-333({)-334(wyk)1(rztusi\\252.)]TJ 0 -13.549 Td[(Ale)-324(si\\246)-324(nie)-324(r)1(usz)-1(y\\252a)-323(z)-324(m)-1(i)1(e)-1(j)1(s)-1(ca;)-324(j)1(e)-1(sz)-1(cz)-1(e)-324(stali)-323(pr)1(z)-1(y)-323(s)-1(ob)1(ie)-324(dysz\\241c)-325(j)1(e)-1(n)1(o)-324(ci\\246\\273)-1(k)28(o)-324(a)]TJ -27.879 -13.549 Td[(p)-27(ogl\\241da)-55(j\\241c)-333(na)-332(s)-1(i\\246)-333(r)1(oz)-1(sro\\273on)28(ymi)-333(\\261le)-1(p)1(iami,)-333(a)-332(kieb)28(y)-333(szuk)56(a)-56(j)1(\\241c)-334(w)-333(sobi)1(e)-333(t)27(y)1(c)27(h)-332(jaki)1(c)27(h\\261)]TJ 0 -13.55 Td[(s\\252)-1(\\363)28(w)-333(na)-55(jbar)1(z)-1(ej)-333(b)-27(ol\\241c)-1(y)1(c)27(h.)]TJ 27.879 -13.549 Td[({)-333(Mia\\252e\\261)-334(c)-1(o\\261)-333(p)-28(edzie\\242)-1(,)-333(to)-333(m)-1(i)-333(r)1(z)-1(ekni)1(j,)-333(b)-27(o)-334(wi\\246c)-1(ej)-333(j)1(u\\273)-334(d)1(o)-334(ci\\246)-334(n)1(ie)-334(wyj)1(d\\246...)]TJ\nET\nendstream\nendobj\n2120 0 obj <<\n/Type /Page\n/Contents 2121 0 R\n/Resources 2119 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2119 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2124 0 obj <<\n/Length 9461      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(665)]TJ -330.353 -35.866 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(nie)-334(b)-27(\\246d\\246)-334(si\\246)-334(wyw)28(o\\252yw)27(a\\252,)-333(n)1(ie)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(c)27(h)1(o)-28(\\242b)28(y\\261)-334(mi)-333(na)28(w)27(et)-333(u)-333(n\\363g)-333(sk)55(amla\\252,)-333(to)-333(nie)-333(w)-1(y)1(jd\\246.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(czas)-1(u)-333(ci)-333(nie)-334(starczy)83(,)-333(do)-333(t)28(ylu)-332(m)27(usisz)-334(co)-334(n)1(o)-28(c)-334(wyc)27(h)1(o)-28(dzi\\242...)]TJ 0 -13.549 Td[({)-333(A)-334(\\273e)-1(b)29(y\\261)-334(sk)55(ap)1(ia\\252)-333(kiej)-333(te)-1(n)-333(p)1(ies)-1(!)-333({)-333(s)-1(k)28(o)-27(c)-1(zy\\252a)-334(w)-333(p)-28(ol)1(a)-334(n)1(a)-334(p)1(rze)-1(\\252a)-55(j.)]TJ 0 -13.549 Td[(Nie)-484(p)-28(ogon)1(i\\252)-484(jedn)1(ak)-484(ni)-483(na)28(w)27(et)-484(za)27(w)28(o\\252a\\252)-484(z)-1(a)-484(n)1(i\\241,)-484(wid)1(z)-1(\\241c,)-484(jak)-483(le)-1(cia\\252a)-484(pr)1(z)-1(ez)]TJ -27.879 -13.55 Td[(zagon)28(y)-319(kiej)-318(c)-1(ie\\253)-319(i)-318(prze)-1(p)1(ad\\252a)-319(p)-27(o)-28(d)-318(s)-1(ad)1(am)-1(i)1(;)-319(pr)1(z)-1(ec)-1(iera\\252)-319(t)28(yl)1(k)28(o)-319(o)-28(c)-1(zy)-319(ki)1(e)-1(b)28(y)-318(z)-1(e)-319(\\261)-1(p)1(iku)-318(a)]TJ 0 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a\\252)-334(mark)28(otn)1(ie.)]TJ 27.879 -13.549 Td[({)-333(Zg\\252)-1(u)1(pi)1(a\\252)-1(em)-334(j)1(u\\273)-334(d)1(o)-334(cna!)-333(Jezu,)-333(dok)56(\\241d)-333(to)-333(bab)1(a)-334(mo\\273e)-334(z)-1(ap)1(ro)28(w)28(adzi\\242)-1(.)]TJ 0 -13.549 Td[(By\\252o)-423(m)27(u)-423(cz)-1(ego\\261)-424(d)1(z)-1(i)1(w)-1(n)1(ie)-424(wst)28(yd,)-423(gd)1(y)-423(wraca\\252)-424(d)1(o)-423(c)27(ha\\252u)1(p)28(y;)-423(n)1(ie)-424(m\\363g\\252)-423(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(dar)1(o)28(w)27(a\\242)-334(tego,)-333(c)-1(o)-333(si\\246)-334(sta\\252o,)-334(i)-333(sro)-28(d)1(z)-1(e)-333(s)-1(i\\246)-333(t)28(ym)-334(gry)1(z)-1(\\252)-333(i)-333(m)-1(\\246c)-1(zy\\252.)]TJ 27.879 -13.549 Td[(P)28(o\\261c)-1(i)1(e)-1(l)-282(goto)28(w)28(a)-282(ju\\273)-282(c)-1(zek)55(a\\252a)-282(n)1(a)-283(n)1(iego)-282(w)-283(sadzie,)-282(w)-283(p)-27(\\363\\252k)28(os)-1(zk)56(ac)27(h)1(,)-282(gdy\\273)-282(w)-283(i)1(z)-1(b)1(ie)]TJ -27.879 -13.55 Td[(ni)1(e)-334(s)-1(p)-27(os\\363b)-333(b)28(y\\252o)-333(w)-1(y)1(s)-1(p)1(a\\242)-334(z)-334(p)-27(o)28(w)27(o)-28(d)1(u)-333(gor\\241ca)-334(i)-333(m)28(uc)27(h)1(.)]TJ 27.879 -13.549 Td[(Ale)-435(n)1(ie)-435(zas)-1(n)1(\\241\\252;)-434(le)-1(\\273a\\252)-435(wp)1(atrzon)28(y)-434(w)-435(d)1(ale)-1(k)1(ie)-435(migot)28(y)-434(gw)-1(i)1(az)-1(d)-434(i)-434(n)1(as)-1(\\252uc)28(h)28(uj)1(\\241c)]TJ -27.879 -13.549 Td[(cic)27(h)28(y)1(c)27(h)-333(st\\241)-28(pa\\253)-333(n)1(o)-28(cy)-334(r)1(oz)-1(w)28(a\\273)-1(a\\252)-333(se)-334(o)-334(J)1(agusi.)]TJ 27.879 -13.549 Td[({)-362(Ni)-361(z)-362(ni\\241,)-361(ni)-361(prze)-1(z)-362(n)1(ie)-1(j)1(!)-362(A)-361(\\273)-1(eb)28(y\\261!)-362({)-362(zakl\\241\\252)-361(z)-363(cic)27(h)1(a)-362(i)-361(w)-1(zdy)1(c)27(ha\\252)-361(\\273)-1(a\\252o\\261nie,)-362(i)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ewraca\\252)-362(si\\246)-362(z)-362(b)-27(oku)-360(na)-361(b)-28(ok)1(,)-361(i)-361(o)-28(drzuca\\252)-361(pierzyn\\246)-361(s)-1(ta)28(wia)-55(j\\241c)-362(n)1(ogi)-361(na)-361(c)27(h)1(\\252o)-28(dn)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(orosia\\252ej)-406(tra)28(wie)-1(,)-406(al)1(e)-407(\\261)-1(p)1(ik)-406(ni)1(e)-407(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-407(i)-406(m)28(y\\261)-1(l)1(e)-407(o)-406(niej)-406(ni)1(e)-407(usta)28(w)27(a\\252y)-406(n)1(i)-406(na)-406(to)]TJ 0 -13.549 Td[(o)-28(cz)-1(y)1(m)-1(gn)1(ie)-1(n)1(ie.)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(\\261)-379(dzie)-1(c)28(k)28(o)-380(zap\\252ak)56(a\\252o)-379(w)-380(c)28(ha\\252up)1(ie)-380(i)-379(zamam)-1(r)1(ota\\252a)-380(cos)-1(i)1(k)-379(Hank)56(a;)-379(un)1(i\\363s\\252)]TJ -27.879 -13.549 Td[(g\\252o)28(w)27(\\246,)-319(ale)-319(p)-27(o)-319(c)27(h)28(wili)-318(przycic)27(h)1(\\252o)-319(i)-319(z)-1(n)1(o)28(w)-1(u)-318(opad)1(\\252y)-319(go)-319(delib)-27(eracje)-319(i)-319(s)-1(z\\252y)-319(p)1(rz)-1(ez)-319(niego)]TJ 0 -13.549 Td[(kiej)-392(te)-394(wio\\261ni)1(ane,)-393(p)1(ac)27(hn)1(\\241c)-1(e)-393(zw)-1(i)1(e)-1(wy)-393(k)28(ol)1(e)-1(b)1(i\\241c)-1(e)-393(d)1(usz)-1(\\246)-393(s)-1(\\252o)-28(d)1(kimi)-393(sp)-27(om)-1(i)1(nk)56(am)-1(i)1(;)-393(ale)]TJ 0 -13.55 Td[(ju)1(\\273)-350(si\\246)-349(im)-350(n)1(ie)-349(da\\252)-349(w)-349(niew)27(ol\\246,)-349(a)-349(n)1(a)-350(spr)1(z)-1(ec)-1(i)1(w)-1(,)-348(roz)-1(gl)1(\\241da\\252)-349(s)-1(i)1(\\246)-350(w)-349(ni)1(c)27(h)-349(tr)1(z)-1(e\\271)-1(w)28(o,)-349(\\273e)-350(w)]TJ 0 -13.549 Td[(k)28(o\\253cu)-332(pr)1(z)-1(ysze)-1(d)1(\\252)-333(do)-332(tego,)-333(co)-333(sobi)1(e)-333(rze)-1(k\\252)-332(uro)-27(c)-1(zy\\261c)-1(ie,)-332(jakb)28(y)-332(n)1(a)-333(\\261w)-1(i)1(\\246)-1(tej)-332(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)1(:)]TJ 27.879 -13.549 Td[({)-381(Raz)-382(tem)27(u)-381(m)28(usi)-382(b)29(y\\242)-382(k)28(on)1(ie)-1(c!)-381(Wst)28(yd)-381(to)-381(i)-381(grze)-1(c)27(h)1(!)-381(Co)-382(b)29(y)-382(t)1(o)-382(zno)28(wu)-381(lu)1(dzie)]TJ -27.879 -13.549 Td[(p)-27(e)-1(d)1(z)-1(ieli!)-333(Dy)1(\\242)-334(o)-28(cie)-1(c)-333(dzie)-1(ciom)-334(j)1(e)-1(stem)-334(i)-333(gos)-1(p)-27(o)-28(d)1(arz!)-334(M)1(usi)-333(b)28(y\\242)-334(k)28(on)1(iec)-1(.)]TJ 27.879 -13.549 Td[(P)28(ostana)28(wia\\252,)-333(ale)-334(b)28(y)1(\\252o)-334(m)28(u)-333(jej)-333(\\273)-1(al)1(,)-333(nieop)-28(o)28(wiedziani)1(e)-334(\\273)-1(al)1(.)]TJ 0 -13.55 Td[({)-255(Niec)27(h)-254(s)-1(e)-255(jeno)-254(c)-1(z\\252o)27(wiek)-255(raz)-255(j)1(e)-1(d)1(e)-1(n)-254(p)-28(of)1(olguj)1(e)-1(,)-254(a)-255(ju)1(\\273)-256(si\\246)-255(tak)-255(p)-27(oku)1(m)-1(a)-255(ze)-255(z)-1(\\252em)-1(,)]TJ -27.879 -13.549 Td[(co)-334(go)-333(i)-333(\\261)-1(mier\\242)-334(n)1(ie)-334(rozdzieli!)-333({)-333(m)-1(edy)1(to)28(w)27(a\\252)-333(gorz)-1(k)28(o)-333(i)-333(g\\363rn)1(ie.)]TJ 27.879 -13.549 Td[(\\221wit)-333(si\\246)-334(ju)1(\\273)-334(rob)1(i\\252,)-334(ca\\252e)-334(ni)1(e)-1(b)-27(o)-334(p)1(rzy)28(o)-28(dziew)27(a\\252o)-333(s)-1(i\\246)-334(k)1(ie)-1(b)29(y)-334(w)-333(te)-334(z)-1(gr)1(z)-1(ebn)1(e)-334(gz)-1(\\252o,)]TJ -27.879 -13.549 Td[(ale)-238(An)28(tek)-238(jes)-1(zc)-1(ze)-238(nie)-238(s)-1(p)1(a\\252,)-238(z)-1(a\\261)-238(kiej)-238(b)1(ia\\252y)-238(dzie\\253)-238(j)1(\\241\\252)-239(m)28(u)-238(zaz)-1(i)1(e)-1(r)1(a\\242)-239(w)-238(o)-28(cz)-1(y)84(,)-238(pr)1(z)-1(yl)1(e)-1(cia\\252a)]TJ 0 -13.549 Td[(go)-241(bu)1(dzi\\242)-242(Han)1(k)55(a.)-240(P)28(o)-28(dn)1(i\\363s\\252)-242(n)1(a)-241(ni\\241)-241(sc)27(hm)28(ur)1(z)-1(on)1(\\241)-242(t)28(w)28(arz,)-241(lec)-1(z)-241(taki)-241(dziwni)1(e)-242(b)28(y\\252)-241(la)-241(n)1(ie)-1(j)]TJ 0 -13.55 Td[(dob)1(ry)84(,)-307(\\273e)-307(sk)28(oro)-306(m)27(u)-306(op)-27(o)27(wiedzia\\252a,)-306(z)-307(c)-1(zym)-307(to)-306(w)27(czora)-56(j)-306(p)1(rzyc)27(h)1(o)-28(dzi\\252)-307(k)28(o)28(w)28(al)-306(p)-28(\\363\\271n)28(ym)]TJ 0 -13.549 Td[(wiec)-1(zorem)-1(,)-333(p)-27(og\\252as)-1(k)56(a\\252)-334(j)1(\\241)-333(p)-28(o)-333(ni)1(e)-334(ucz)-1(es)-1(an)29(yc)27(h)-333(w\\252os)-1(ac)28(h.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(s)-1(i)1(\\246)-334(ud)1(a\\252o)-334(ze)-334(z)-1(w)28(\\363zk)55(\\241,)-333(to)-333(ci)-334(j)1(u\\273)-333(c)-1(osik)-333(kup)1(i\\246)-334(n)1(a)-334(j)1(armarku)1(.)]TJ 0 -13.549 Td[(Roz)-1(r)1(ado)28(w)28(a\\252)-1(a)-360(si\\246)-360(tak)56(\\241)-360(\\252as)-1(k)56(\\241)-360(i)-359(dalej\\273e)-361(moles)-1(to)28(w)28(a\\242)-1(,)-359(ab)28(y)-360(te\\273)-361(k)1(up)1(i\\242)-361(oszklon\\241)]TJ -27.879 -13.549 Td[(sz)-1(af)1(\\246)-334(na)-333(talerze)-1(,)-333(jak)56(\\241)-333(mia\\252y)-333(organi)1(s)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[({)-298(P)28(okr)1(\\363tc)-1(e)-298(to)-298(s)-1(e)-298(z)-1(am)28(y\\261)-1(l)1(is)-1(z)-298(o)-298(dw)28(ors)-1(k)1(ie)-1(j)-297(k)56(anapi)1(e)-1(!)-298({)-298(za\\261)-1(mia\\252)-298(s)-1(i)1(\\246)-1(,)-298(p)1(rzy)28(obiec)-1(u)1(-)]TJ -27.879 -13.55 Td[(j\\241c)-374(j)1(e)-1(d)1(nak,)-373(c)-1(o)-374(j)1(e)-1(n)1(o)-374(pr)1(os)-1(i\\252a,)-373(i)-374(ws)-1(ta\\252)-374(p)1(r\\246dk)28(o,)-373(rob)-27(ota)-374(b)-28(o)28(wiem)-374(c)-1(ze)-1(k)56(a\\252a)-374(i)-374(tr)1(z)-1(a)-373(b)28(y\\252o)]TJ 0 -13.549 Td[(k)56(ark)-333(p)-27(o)-28(da\\242)-334(w)-333(jar)1(z)-1(mo)-333(i)-334(ci\\241)-28(gn)1(\\241\\242)-334(j)1(ak)-334(co)-333(dn)1(ia.)]TJ 27.879 -13.549 Td[(Roz)-1(m\\363)28(wi\\252)-293(s)-1(i\\246)-293(jes)-1(zcz)-1(e)-293(z)-294(k)28(o)28(w)27(al)1(e)-1(m)-293(i)-293(z)-1(ar)1(az)-294(p)-27(o)-293(\\261)-1(n)1(iadan)1(iu)-293(P)1(ietrk)56(a)-293(w)-1(y)1(pra)28(wi\\252)-293(do)]TJ -27.879 -13.549 Td[(w)28(o\\273)-1(enia)-333(gno)-55(ju)1(,)-333(a)-334(sam)-334(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-333(w)-334(par)1(\\246)-334(k)28(oni)-333(d)1(o)-334(l)1(as)-1(u)1(.)]TJ 27.879 -13.549 Td[(W)-318(p)-27(or\\246bi)1(e)-319(j)1(a\\273)-1(e)-318(h)28(u)1(c)-1(za\\252o)-318(o)-28(d)-317(rob)-27(ot)27(y)1(;)-318(sp)-28(or)1(o)-318(nar)1(o)-28(du)-317(kr\\246c)-1(i)1(\\252o)-318(s)-1(i\\246)-318(p)1(rzy)-318(obr)1(\\363b)-28(ce)]TJ -27.879 -13.55 Td[(dr)1(z)-1(ew)27(a)-248(naci\\246te)-1(go)-248(zim)-1(\\241,)-248(\\273e)-249(kieb)28(y)-248(to)-248(nieustann)1(e)-249(ku)1(c)-1(ie)-248(dzi\\246)-1(cio\\252\\363)28(w,)-249(t)1(ak)-249(r)1(oz)-1(lega\\252o)-248(s)-1(i\\246)]TJ 0 -13.549 Td[(bi)1(c)-1(ie)-346(s)-1(i)1(e)-1(ki)1(e)-1(r)-346(i)-346(tr)1(z)-1(es)-1(zc)-1(ze)-1(n)1(ie)-347(p)1(i\\252;)-346(za\\261)-347(w)-347(b)1(uj)1(n)28(yc)28(h)-346(tra)28(w)28(ac)27(h)-346(p)-27(or\\246b)28(y)-346(pas\\252y)-346(s)-1(i)1(\\246)-347(lip)-27(ec)27(kie)]TJ\nET\nendstream\nendobj\n2123 0 obj <<\n/Type /Page\n/Contents 2124 0 R\n/Resources 2122 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2122 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2127 0 obj <<\n/Length 9326      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(666)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(stada)-333(i)-333(dymi\\252y)-333(ogni)1(s)-1(k)56(a.)]TJ 27.879 -13.549 Td[(Sp)-27(omnia\\252,)-340(c)-1(o)-341(si\\246)-341(tu)-341(k)1(ie)-1(d)1(y\\261)-341(w)-1(y)1(rabi)1(a\\252o,)-341(i)-341(p)-27(okiw)28(a\\252)-341(g\\252o)28(w)27(\\241)-341(wid)1(z)-1(\\241c,)-341(jak)-340(to)-341(ju)1(\\273)]TJ -27.879 -13.549 Td[(zgo)-28(dn)1(ie)-334(rob)1(i\\241)-333(raze)-1(m)-334(Li)1(p)-28(cz)-1(ak)1(i)-333(z)-334(rze)-1(p)-27(e)-1(c)28(k)56(\\241)-334(sz)-1(l)1(ac)27(h)28(t\\241)-333(i)-333(dru)1(gimi.)]TJ 27.879 -13.549 Td[({)-326(Bieda)-326(ic)28(h)-326(d)1(opr)1(o)27(w)28(adzi\\252a)-326(d)1(o)-326(rozum)27(u)1(.)-326(I)-326(p)-27(otrza)-326(to)-326(b)29(y\\252o)-326(ws)-1(zystkiego,)-326(co?)-327({)]TJ -27.879 -13.549 Td[(wyrze)-1(k)1(\\252)-334(d)1(o)-334(F)1(ilip)1(a,)-334(syn)1(a)-334(Jagu)1(s)-1(t)28(y)1(nki,)-333(ok)1(rz)-1(esuj\\241ce)-1(go)-333(c)27(h)1(o)-56(j)1(ary)84(.)]TJ 27.879 -13.55 Td[({)-446(A)-445(kto)-446(tem)27(u)-445(b)28(y\\252)-445(w)-1(in)1(o)28(w)27(at)28(y)84(,)-446(j)1(ak)-446(ni)1(e)-447(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-446(a)-446(gosp)-27(o)-28(dar)1(z)-1(e!)-446({)-446(mru)1(kn)1(\\241\\252)]TJ -27.879 -13.549 Td[(p)-27(on)28(ur)1(o)-334(c)28(h\\252op,)-333(n)1(ie)-334(p)1(rz)-1(esta)-56(j)1(\\241c)-334(obr)1(\\241b)28(yw)28(a\\242)-334(ga\\252\\246)-1(zi.)]TJ 27.879 -13.549 Td[({)-333(Ale)-334(mo\\273)-1(e)-333(ju\\273)-333(na)-55(jbar)1(z)-1(ej)-333(z)-1(\\252o\\261c)-1(i)1(e)-334(i)-333(g\\252up)1(ie)-334(p)-27(o)-28(dj)1(ud)1(z)-1(an)1(ia.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(tan)1(\\241\\252)-385(w)-385(m)-1(i)1(e)-1(j)1(s)-1(cu,)-384(k)55(a)-55(j)-384(b)28(y\\252)-385(zak)55(at)1(rup)1(i\\252)-385(b)-27(oro)28(w)27(ego,)-385(i)-384(tak)-385(go)-384(c)-1(osik)-385(z\\252e)-1(go)]TJ -27.879 -13.549 Td[(spar\\252o)-333(p)-27(o)-28(d)-333(pi)1(e)-1(rsiami,)-333(ja\\273e)-334(zakl\\241\\252:)]TJ 27.879 -13.549 Td[({)-450(\\221)1(c)-1(i)1(e)-1(rw)28(a,)-449(prze)-1(z)-450(n)1(iego)-450(c)-1(a\\252a)-449(m)-1(o)-55(ja)-449(m)-1(ar)1(nacyja!)-449(B)-1(y)1(m)-450(p)-28(or)1(e)-1(d)1(z)-1(i\\252,)-449(to)-450(b)28(y)1(m)-450(c)-1(i)]TJ -27.879 -13.55 Td[(jesz)-1(cz)-1(ek)-333(do\\252o\\273y\\252!)-334({)-333(splu)1(n\\241\\252)-333(i)-333(w)-1(zi\\241\\252)-333(s)-1(i)1(\\246)-334(do)-333(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[(I)-337(j)1(u\\273)-337(ca\\252e)-337(dn)1(ie)-337(w)28(oz)-1(i\\252)-336(na)-336(tartak)1(,)-337(p)1(rzypi)1(na)-56(j)1(\\241c)-337(si\\246)-337(do)-336(pr)1(ac)-1(y)-336(z)-337(tak)56(\\241)-337(zapami\\246-)]TJ -27.879 -13.549 Td[(ta\\252o\\261c)-1(i\\241,)-333(jak)1(b)28(y)-333(s)-1(i\\246)-333(c)27(hcia\\252)-334(zarob)1(i\\242)-334(n)1(a)-334(\\261m)-1(ier\\242,)-333(le)-1(cz)-334(mimo)-334(tego)-334(n)1(ie)-334(zabi\\252)-333(pami\\246c)-1(i)-333(o)]TJ 0 -13.549 Td[(Jagu)1(s)-1(i)-333(ani)-333(o)-333(tej)-333(s)-1(p)1(ra)28(wie)-334(ni)1(e)-1(sz)-1(cz)-1(\\246snej)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-330(dn)1(ia)-330(p)-27(o)27(wiedzia\\252)-330(m)28(u)-330(M)1(ate)-1(u)1(s)-1(z,)-330(\\273e)-331(ku)1(pi)1(li)-330(gru)1(n)28(t)-330(n)1(a)-330(P)28(o)-28(d)1(le)-1(siu)1(,)-330(dzie-)]TJ -27.879 -13.55 Td[(dzic)-304(da\\252)-304(n)1(a)-304(s)-1(p)1(\\252)-1(at)1(\\246)-305(i)-304(j)1(e)-1(sz)-1(cze)-305(p)1(rz)-1(y)28(ob)1(iec)-1(a\\252)-304(zrzyn\\363)28(w)-304(i)-304(\\252at,)-304(za\\261)-305(\\261lu)1(b)-304(Nastusi)-304(o)-28(d)1(\\252)-1(o\\273yli)1(,)]TJ 0 -13.549 Td[(p)-27(\\363ki)-333(Szyme)-1(k)-333(j)1(a)-1(k)28(o)-333(tak)28(o)-333(s)-1(i)1(\\246)-334(ni)1(e)-334(z)-1(agosp)-27(o)-28(dar)1(uje.)]TJ 27.879 -13.549 Td[(Co)-399(go)-399(ta)-399(ob)-27(c)27(ho)-27(dzi\\252o)-399(c)-1(u)1(dze)-1(,)-399(ma\\252o)-399(to)-399(jesz)-1(cz)-1(e)-399(m)-1(i)1(a\\252)-399(s)-1(w)28(oic)27(h)-398(tur)1(bacji?)-399(A)-399(do)]TJ -27.879 -13.549 Td[(tego)-240(k)28(o)28(w)28(al)-240(j)1(u\\273)-240(p)1(ra)28(wie)-240(co)-28(dzienni)1(e)-240(i)-239(na)-239(r\\363\\273ne)-240(sp)-28(osob)28(y)-239(s)-1(t)1(ras)-1(zy\\252)-239(go)-240(spr)1(a)27(w)28(\\241)-240(i)-239(z)-240(w)28(oln)1(a,)]TJ 0 -13.549 Td[(ostro\\273nie,)-328(a)-328(wielc)-1(e)-328(c)27(h)29(ytrze)-329(n)1(ap)-27(om)27(yk)56(a\\252,)-328(\\273e)-329(gd)1(yb)28(y)-327(m)27(u)-327(b)28(y\\252o)-328(pi)1(lno)-328(p)-27(otrza,)-328(to)-328(t)1(e)-1(n)-327(i)]TJ 0 -13.55 Td[(\\363)28(w)-334(d)1(a\\252b)28(y)-333(pieni)1(\\246)-1(dzy)84(...)]TJ 27.879 -13.549 Td[(An)28(tek)-344(ju)1(\\273)-345(sto)-344(razy)-344(got\\363)28(w)-345(b)29(y\\252)-345(p)1(rasn\\241\\242)-344(w)-1(szys)-1(tk)28(o)-344(i)-344(u)1(c)-1(i)1(e)-1(k)56(a\\242)-1(,)-343(ale)-345(co)-344(s)-1(p)-27(o)-56(j)1(rza\\252)]TJ -27.879 -13.549 Td[(na)-313(w)-1(i)1(e)-1(\\261)-314(i)-314(co)-314(sobie)-314(wz)-1(i\\241\\252)-313(w)-315(m)28(y\\261le)-1(,)-313(jak)28(o)-314(p)-27(\\363)-55(jdzie)-314(s)-1(t)1(\\241d)-314(n)1(a)-314(z)-1(a)28(ws)-1(ze,)-314(to)-314(go)-314(tak)1(i)-314(strac)27(h)]TJ 0 -13.549 Td[(ogarn)1(ia\\252,)-333(i\\273)-334(w)28(ola\\252b)28(y)-333(kry)1(m)-1(i)1(na\\252,)-333(w)27(ol)1(a\\252)-1(b)29(y)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(na)-55(jgor)1(s)-1(ze)-1(,)-333(b)-27(e)-1(l)1(e)-334(nie)-333(to.)]TJ 27.879 -13.549 Td[(Ale)-334(i)-333(o)-333(kr)1(ym)-1(i)1(nale)-333(m)27(y\\261la\\252)-334(z)-333(rozpacz)-1(\\241)-333(w)-334(d)1(usz)-1(y)84(.)]TJ 0 -13.55 Td[(Wi\\246c)-291(z)-291(t)1(e)-1(go)-290(b)-28(o)-55(jo)28(w)28(ania)-290(ze)-291(s)-1(ob)1(\\241)-290(z)-1(mize)-1(ro)28(w)28(a\\252)-291(si\\246,)-290(z)-1(gorzkn)1(ia\\252)-291(i)-290(sta\\252)-290(s)-1(i\\246)-290(w)-291(c)27(h)1(a-)]TJ -27.879 -13.549 Td[(\\252up)1(ie)-271(srogi)-270(a)-270(n)1(iew)-1(yr)1(oz)-1(u)1(m)-1(i)1(a\\252y)83(.)-270(Han)1(k)55(a)-270(w)-270(g\\252o)28(w)27(\\246)-270(z)-1(ac)28(ho)-28(d)1(z)-1(i\\252a,)-270(n)1(a)-270(darmo)-270(pr)1(\\363bu)1(j\\241c)-270(s)-1(i\\246)]TJ 0 -13.549 Td[(wywiedzie)-1(\\242,)-315(c)-1(o)-315(m)27(u)-314(s)-1(i\\246)-315(s)-1(ta\\252o.)-315(Na)28(w)27(et)-315(z)-1(r)1(az)-1(u)-315(p)-27(o)-28(d)1(e)-1(j)1(rz)-1(ew)28(a\\252)-1(a,)-315(j)1(ak)28(o)-316(zno)28(wu)-315(spik)1(n\\241\\252)-315(s)-1(i\\246)]TJ 0 -13.549 Td[(z)-291(Jagu)1(s)-1(i\\241;)-290(ale)-291(co)-291(ok)28(o)-290(m)-1(i)1(a\\252a)-291(b)28(ystre,)-290(a)-291(o)-28(d)1(pasiona)-290(Jagust)28(yn)1(k)55(a)-290(te)-1(\\273)-291(za)-290(nimi)-290(patrza\\252a)]TJ 0 -13.549 Td[(i)-391(d)1(rugi)1(e)-392(p)-27(ot)28(wie)-1(r)1(dzali,)-391(\\273e)-391(w)-1(y)1(ra\\271)-1(n)1(ie)-391(s)-1(tr)1(oni\\241)-391(o)-27(d)-391(sie)-1(b)1(ie)-391(i)-391(ni)1(k)55(a)-55(j)-391(si\\246)-391(nie)-391(s)-1(c)28(ho)-28(d)1(z)-1(\\241,)-390(to)]TJ 0 -13.55 Td[(si\\246)-328(j)1(u\\273)-327(usp)-27(ok)28(oi\\252a)-327(z)-328(t)1(e)-1(j)-326(s)-1(tr)1(on)28(y)83(.)-326(C)-1(\\363\\273)-327(z)-327(te)-1(go,)-326(\\273)-1(e)-327(m)27(u)-326(s)-1(\\252u)1(\\273)-1(y\\252a)-327(j)1(ak)-327(mog\\252a)-327(na)-55(jwierni)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(\\273e)-307(ju)1(\\273)-307(jad)1(\\252o)-307(mia\\252)-306(w)-1(y)1(bran)1(e)-307(i)-306(na)-306(p)-27(or\\246,)-306(w)-307(c)27(h)1(a\\252up)1(ie)-307(o)-28(c)28(h\\246)-1(d)1(o\\273)-1(n)29(y)-306(p)-28(or)1(z)-1(\\241d)1(e)-1(k,)-306(\\273e)-307(gosp)-28(o-)]TJ 0 -13.549 Td[(dar)1(k)56(a)-366(s)-1(z\\252a)-366(jak)-366(n)1(a)-56(j)1(le)-1(p)1(iej,)-366(k)1(ie)-1(j)-365(c)-1(i)1(\\246)-1(giem)-366(b)28(y\\252)-366(z\\252)-1(y)84(,)-366(c)28(hm)27(u)1(rn)28(y)84(,)-366(o)-366(b)-27(ele)-367(co)-366(p)-27(oniewie)-1(r)1(a\\252)-366(i)]TJ 0 -13.549 Td[(dob)1(rego)-334(s\\252o)28(w)27(a)-333(jej)-333(ni)1(e)-334(da)28(w)28(a\\252)-1(.)]TJ 27.879 -13.549 Td[(A)-240(ju\\273)-241(b)29(y\\252o)-241(n)1(a)-56(jci\\246\\273)-1(ej,)-240(kiedy)-240(c)27(h)1(o)-28(dzi\\252)-240(c)-1(ic)28(h)28(y)83(,)-240(strapi)1(on)28(y)83(,)-240(sm)27(u)1(tn)28(y)-240(kiej)-241(n)1(o)-28(c)-241(jesie)-1(n)1(-)]TJ -27.879 -13.549 Td[(na)-349(i)-350(an)1(i)-350(si\\246)-350(gniew)27(a\\252,)-349(ani)-349(up)1(rzykrza\\252,)-350(a)-350(j)1(e)-1(n)1(o)-350(ci\\246)-1(\\273k)28(o)-350(wzdyc)28(ha\\252)-350(i)-349(na)-350(ca\\252e)-350(w)-1(i)1(e)-1(cz)-1(or)1(y)]TJ 0 -13.55 Td[(sz)-1(ed\\252)-333(do)-333(k)56(arc)-1(zm)27(y)-333(p)1(i\\242)-334(ze)-334(z)-1(n)1(a)-56(j)1(om)-1(k)56(ami.)]TJ 27.879 -13.549 Td[(Py)1(ta\\242)-463(ot)28(w)28(arcie)-462(nie)-462(mia\\252a)-462(\\261)-1(mia\\252o\\261c)-1(i,)-461(a)-462(Ro)-28(c)27(h)1(o)-462(kl\\241\\252)-462(si\\246,)-462(\\273)-1(e)-462(te\\273)-463(n)1(ie)-462(wie)-463(o)]TJ -27.879 -13.549 Td[(ni)1(c)-1(zym,)-482(c)-1(o)-482(m)-1(og\\252o)-482(b)28(y\\242)-482(pra)28(wd\\241,)-482(gd)1(y\\273)-483(stary)-482(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252)-483(teraz)-482(jeno)-482(na)-482(no)-28(c,)-482(a)]TJ 0 -13.549 Td[(ca\\252)-1(e)-446(d)1(nie)-446(w)28(\\246)-1(d)1(ro)28(w)27(a\\252)-445(p)-28(o)-446(ok)28(ol)1(ic)-1(y)-445(z)-1(e)-446(sw)27(oi)1(m)-1(i)-445(ks)-1(i)1(\\241\\273)-1(ec)-1(zk)56(am)-1(i)1(,)-446(a)-446(n)1(aucz)-1(a)-55(j\\241c)-446(p)-27(ob)-28(o\\273ne)]TJ 0 -13.549 Td[(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(a)-350(d)1(o)-350(Serca)-350(Jezuso)27(w)28(e)-1(go,)-349(kt\\363r)1(e)-1(go)-349(ur)1(z)-1(\\246dy)-349(wz)-1(b)1(rani)1(a\\252)-1(y)-349(o)-28(d)1(pr)1(a)27(w)28(o)28(w)27(a\\242)-350(p)-27(o)]TJ 0 -13.55 Td[(k)28(o\\261c)-1(io\\252ac)28(h.)]TJ 27.879 -13.549 Td[(A\\273)-484(kt\\363r)1(e)-1(go\\261)-484(wiec)-1(zora,)-483(kiedy)-483(sie)-1(d)1(z)-1(i)1(e)-1(li)-483(j)1(e)-1(sz)-1(cz)-1(e)-484(w)-483(iz)-1(b)1(ie)-484(p)1(rz)-1(y)-483(misk)55(ac)28(h,)-483(b)-28(o)]TJ\nET\nendstream\nendobj\n2126 0 obj <<\n/Type /Page\n/Contents 2127 0 R\n/Resources 2125 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2112 0 R\n>> endobj\n2125 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2130 0 obj <<\n/Length 7625      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(667)]TJ -358.232 -35.866 Td[(wiater)-421(si\\246)-421(b)28(y\\252)-421(ze)-1(rw)28(a\\252)-421(p)-27(o)-421(z)-1(ac)28(ho)-28(d)1(z)-1(i)1(e)-1(,)-421(p)1(s)-1(y)-420(c)-1(a\\252\\241)-421(h)29(urm\\241)-421(zas)-1(zc)-1(ze)-1(k)56(a\\252y)-421(n)1(ad)-421(sta)28(w)27(em.)]TJ 0 -13.549 Td[(Ro)-28(c)27(h)1(o)-333(p)-28(o\\252o\\273y\\252)-334(\\252y\\273k)28(\\246)-334(p)1(iln)1(ie)-334(nas\\252uc)28(h)28(uj)1(\\241c)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kto\\261)-334(ob)-27(c)-1(y)1(!)-333(T)83(rz)-1(a)-333(wyj)1(rz)-1(e\\242.)]TJ 0 -13.549 Td[(A)-333(t)28(yla)-333(c)-1(o)-333(jeno)-333(wys)-1(zed\\252,)-333(p)-28(o)28(wr\\363)-27(c)-1(i\\252)-333(bl)1(ady)-333(i)-333(rze)-1(k\\252)-333(pr)1(\\246)-1(d)1(k)28(o:)]TJ 0 -13.549 Td[({)-333(P)28(a\\252as)-1(ze)-334(b)1(rz)-1(\\246cz)-1(\\241)-333(na)-333(dr)1(o)-28(dze)-1(!)-333(Jak)1(b)28(y)-333(p)28(yta\\252y)84(,)-333(na)-333(w)-1(si)-333(jes)-1(tem!)]TJ 0 -13.55 Td[(Sk)28(o)-27(c)-1(zy\\252)-333(w)-334(sad)-333(i)-334(zgin)1(\\241\\252.)]TJ 0 -13.549 Td[(An)28(tek)-446(zbl)1(ad\\252)-446(\\261mie)-1(r)1(te)-1(l)1(nie)-446(i)-445(s)-1(k)28(o)-27(c)-1(zy\\252)-446(n)1(a)-446(r\\363)28(wne)-446(n)1(ogi.)-446(P)1(s)-1(y)-445(ju)1(\\273)-446(do)-27(c)-1(iera\\252y)-445(w)]TJ -27.879 -13.549 Td[(op\\252otk)56(ac)28(h,)-333(na)-333(gank)1(u)-333(rozle)-1(g\\252y)-333(si\\246)-334(ci\\246)-1(\\273kie)-333(s)-1(t\\241)-28(p)1(ani)1(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(to)-333(ju\\273)-333(p)-28(o)-333(mnie?)-334({)-333(j\\246kn)1(\\241\\252)-334(w)-333(trw)28(o)-28(dze)-1(.)]TJ 0 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-333(jakb)28(y)-333(zm)-1(ar)1(t)28(w)-1(i)1(e)-1(li)-333(u)1(jr)1(z)-1(a)28(ws)-1(zy)-333(na)-333(pr)1(o)-1(gu)-332(s)-1(tr)1(a\\273)-1(n)1(ik)28(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(An)28(tek)-367(ni)1(e)-368(m\\363g\\252)-367(s)-1(i\\246)-367(p)-28(or)1(usz)-1(y)1(\\242)-1(,)-367(a)-367(j)1(e)-1(n)1(o)-367(lata\\252)-367(o)-28(c)-1(zyma)-367(p)-28(o)-367(wyw)28(art)28(yc)28(h)-367(okn)1(ac)27(h)]TJ -27.879 -13.55 Td[(i)-423(d)1(rz)-1(wiac)28(h.)-423(S)1(z)-1(cz\\246)-1(\\261c)-1(iem,)-423(c)-1(o)-423(Han)1(k)56(a)-424(ca\\252kiem)-423(przytomnie)-423(zaprasz)-1(a\\252a)-423(ic)28(h)-423(siedzie)-1(\\242)]TJ 0 -13.549 Td[(p)-27(o)-28(dsu)28(w)28(a)-56(j)1(\\241c)-334(\\252a)27(w)28(\\246)-1(.)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(ec)-1(znie)-334(si\\246)-334(pr)1(z)-1(y)1(w)-1(i)1(tali,)-333(tak)-334(si\\246)-334(zaraz)-1(em)-334(pr)1(z)-1(y)1(m)-1(a)28(wia)-56(j)1(\\241c)-334(o)-334(k)28(olacj\\246,)-334(\\273e)-334(m)27(u)1(-)]TJ -27.879 -13.549 Td[(sia\\252a)-334(i)1(m)-334(nasm)-1(a\\273y\\242)-334(j)1(a)-56(j)1(e)-1(cz)-1(n)1(icy)83(.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e)-333(tak)-333(p)-28(\\363\\271no?)-333({)-334(zap)28(yta\\252)-333(wres)-1(zc)-1(ie)-333(An)28(tek.)]TJ 0 -13.55 Td[({)-363(P)28(o)-363(s\\252u\\273bi)1(e)-1(!)-363(D)1(z)-1(ie\\252o)-363(u)-363(n)1(as)-363(niem)-1(a\\252e!)-363({)-363(o)-28(d)1(rze)-1(k)1(\\252)-363(s)-1(tar)1(s)-1(zy)-363(w)28(o)-28(dz\\241c)-364(o)-27(c)-1(zam)-1(i)-362(p)-28(o)]TJ -27.879 -13.549 Td[(ze)-1(b)1(ran)28(yc)28(h)-333(w)-334(izbi)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-492(P)29(e)-1(wni)1(e)-492(z)-1(a)-491(z)-1(\\252o)-28(d)1(z)-1(iejami?)-491({)-492(dor)1(z)-1(u)1(c)-1(i\\252)-491(An)28(tek)-492(\\261mie)-1(l)1(e)-1(j)1(,)-492(wyn)1(os)-1(z\\241c)-492(\\015ac)27(h)1(\\246)-492(z)]TJ -27.879 -13.549 Td[(k)28(omory)84(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(za)-334(z\\252o)-28(d)1(z)-1(iejami,)-333(i)-333(z)-1(a)-333(d)1(rugi)1(m)-1(!)-333(P)1(rz)-1(epi)1(jcie)-334(d)1(o)-334(n)1(as)-1(,)-333(gosp)-28(o)-28(d)1(arzu!)]TJ 0 -13.55 Td[(Napi)1(\\252)-334(si\\246)-334(z)-334(n)1(imi.)-333(Pr)1(z)-1(yp)1(i\\246li)-333(s)-1(i\\246)-333(do)-333(ja)-55(jec)-1(znicy)84(,)-334(j)1(a\\273)-1(e)-333(\\252)-1(y)1(\\273)-1(ki)-333(d)1(z)-1(w)28(oni)1(\\252)-1(y)84(.)]TJ 0 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-333(s)-1(iedzieli)-333(c)-1(ic)28(h)28(u\\261k)28(o)-333(kiej)-333(te)-334(p)1(rz)-1(y)1(trw)28(o\\273)-1(on)1(e)-334(tru)1(s)-1(ie.)]TJ 0 -13.549 Td[(St)1(ra\\273)-1(n)1(icy)-484(wymietli)-483(m)-1(i)1(s)-1(k)28(\\246)-484(d)1(o)-484(cz)-1(ysta,)-483(pr)1(z)-1(epil)1(i)-484(j)1(e)-1(sz)-1(cz)-1(e)-484(gor)1(z)-1(a\\252k)56(\\241)-484(i)-483(starsz)-1(y)]TJ -27.879 -13.549 Td[(ob)-27(c)-1(iera)-55(j\\241c)-334(w)28(\\241s)-1(y)-333(r)1(z)-1(ek\\252)-333(uro)-27(c)-1(zy\\261)-1(cie:)]TJ 27.879 -13.549 Td[({)-333(Da)28(w)-1(n)1(o)-334(w)28(as)-334(wyp)1(u\\261c)-1(il)1(i)-334(z)-333(tur)1(m)27(y)84(,)-334(a?)]TJ 0 -13.55 Td[({)-333(Nib)28(y)-333(to)-333(pan)-333(starsz)-1(y)-333(n)1(ie)-334(wiedz\\241!)]TJ 0 -13.549 Td[(Roz)-1(d)1(ygota\\252)-333(s)-1(i)1(\\246)-334(\\271)-1(d)1(z)-1(iebk)28(o.)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(\\273)-334(to)-333(Ro)-28(c)27(h)1(o?)-334({)-333(sp)28(yta\\252)-333(nagle)-333(s)-1(tar)1(s)-1(zy)83(.)]TJ 0 -13.549 Td[({)-333(Kt\\363ren)-333(Ro)-28(c)27(h)1(o?)-334({)-333(z)-1(r)1(oz)-1(u)1(m)-1(i)1(a\\252)-334(w)-333(m)-1(i)1(g)-334(i)-333(znacz)-1(n)1(ie)-334(si\\246)-334(usp)-27(ok)28(oi\\252.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(d)1(obno)-333(u)-333(w)28(as)-334(\\273)-1(y)1(je)-334(k)56(ak)28(o)-55(j)-333(to)-334(Ro)-27(c)27(ho?)]TJ 0 -13.55 Td[({)-270(A)-269(mo\\273)-1(e)-270(p)1(an)-270(starsz)-1(y)-269(m\\363)28(w)-1(i)1(\\241)-270(o)-270(t)28(ym)-269(dziadku)1(,)-269(c)-1(o)-270(t)1(o)-270(c)27(h)1(o)-28(dzi)-269(p)-28(o)-269(w)-1(si?)-270(P)1(ra)28(wda,)]TJ -27.879 -13.549 Td[(dy)1(\\242)-334(go)-333(R)-1(o)-27(c)27(hem)-334(w)28(o\\252a)-56(j)1(\\241!)]TJ 27.879 -13.549 Td[(St)1(ra\\273)-1(n)1(ik)-333(rzuci\\252)-333(s)-1(i\\246)-333(niec)-1(i)1(e)-1(rp)1(liwie)-333(i)-334(r)1(z)-1(ek\\252)-333(gro\\271)-1(n)1(ie:)]TJ 0 -13.549 Td[({)-333(Nie)-334(r\\363b)-27(cie)-334(sz)-1(u)1(te)-1(k,)-333(p)1(rze)-1(cie\\273)-334(m)-1(i)1(e)-1(sz)-1(k)56(a)-333(u)-333(w)27(as,)-333(wiadomo!)]TJ 0 -13.549 Td[({)-481(P)28(ew)-1(n)1(ie,)-481(c)-1(o)-481(ni)1(e)-1(r)1(az)-482(s)-1(i)1(e)-1(d)1(z)-1(ia\\252)-481(u)-481(n)1(as)-1(,)-481(al)1(e)-482(sie)-1(d)1(z)-1(i)1(a\\252)-482(i)-481(u)-480(dru)1(gic)27(h)1(.)-481(Pr)1(os)-1(zaln)28(y)]TJ -27.879 -13.549 Td[(dziad)1(e)-1(k,)-436(to)-436(k)56(a)-56(j)-435(m)27(u)-436(p)-27(opad)1(nie,)-436(tam)-437(i)-436(n)1(a)-436(no)-28(c)-436(g\\252)-1(o)28(w)28(\\246)-437(p)1(rz)-1(y)1(tuli)1(.)-436(Dz)-1(i\\261)-436(w)-437(c)28(ha\\252up)1(ie,)]TJ 0 -13.55 Td[(in)1(dzie)-1(j)-317(w)-319(ob)-27(\\363rce)-1(,)-318(a)-318(niekiedy)-318(i)-318(p)1(rosto)-319(p)-27(o)-28(d)1(e)-319(p\\252otem.)-319(C\\363\\273)-319(t)1(o)-319(p)1(an)-318(s)-1(t)1(ars)-1(zy)-318(up)1(atrzy\\252)]TJ 0 -13.549 Td[(se)-334(na)-333(ni)1(e)-1(go?)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(c)-1(\\363\\273)-334(b)29(y)83(,)-333(n)1(ic)-1(,)-333(p)-27(o)-334(zna)-55(jomo\\261c)-1(i)-333(p)28(yt)1(am)-1(..)1(.)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ciwy)-333(c)-1(z\\252o)27(wiek,)-333(w)28(o)-28(dy)-333(n)1(ik)28(om)27(u)-333(n)1(ie)-334(zam)-1(\\241ci)-333({)-334(wtr)1(\\241c)-1(i\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(Nu)1(,)-333(m)28(y)-333(z)-1(n)1(am)27(y)84(,)-333(k)1(to)-333(on)-332(taki,)-332(z)-1(nam)28(y!)-332({)-333(m)-1(r)1(ukn)1(\\241\\252)-333(znacz)-1(\\241co,)-333(pr)1(\\363bu)1(j\\241c)-333(r\\363\\273-)]TJ -27.879 -13.55 Td[(n)28(ymi)-369(s)-1(p)-27(os)-1(ob)1(ami)-370(wyp)28(y)1(t)27(y)1(w)27(a\\242)-370(o)-369(niego.)-370(Na)28(w)28(e)-1(t)-369(ju)1(\\273)-371(t)1(abak)56(\\241)-370(cz)-1(\\246s)-1(to)28(w)28(a\\252,)-370(ale)-370(wsz)-1(y)1(s)-1(cy)]TJ 0 -13.549 Td[(tak)-290(gadal)1(i)-291(ci\\246gie)-1(m)-290(jedn)1(o)-291(w)-291(k)28(\\363\\252k)28(o,)-290(\\273e)-291(nie)-290(m)-1(og\\241c)-291(n)1(icz)-1(ego)-291(p)1(rze)-1(w)28(\\241c)27(ha\\242)-290(p)-28(o)-28(d)1(ni)1(\\363s)-1(\\252)-290(s)-1(i\\246)]TJ\nET\nendstream\nendobj\n2129 0 obj <<\n/Type /Page\n/Contents 2130 0 R\n/Resources 2128 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2128 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2134 0 obj <<\n/Length 5321      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(668)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(41.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(z)-334(\\252a)28(wy)-333(z)-1(e)-334(z\\252o\\261)-1(ci\\241:)-333({)-333(A)-334(j)1(a)-334(m\\363)28(wi\\246)-1(,)-333(\\273e)-334(mie)-1(szk)55(a)-333(u)-333(w)28(as)-334(w)-334(c)28(ha\\252up)1(ie!)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iek)-333(go)-334(w)-333(kies)-1(ze\\253)-333(nie)-334(sc)27(h)1(o)28(w)27(a\\252em)-1(!)-333({)-333(o)-28(db)1(ur)1(kn\\241\\252)-333(An)28(tek.)]TJ 0 -13.549 Td[({)-395(Ja)-395(tu)-394(p)-28(o)-395(s\\252u\\273bie,)-395(p)-27(onima)-56(j)1(c)-1(i)1(e)-1(,)-395(Boryn)1(a!)-395({)-395(cis)-1(n)1(\\241\\252)-395(s)-1(i\\246)-395(gro\\271nie)-395(s)-1(t)1(ars)-1(zy)84(,)-395(ale)]TJ -27.879 -13.549 Td[(jak)28(o\\261)-299(si\\246)-299(ud)1(obr)1(uc)27(h)1(a\\252)-299(d)1(os)-1(ta)28(ws)-1(zy)-299(n)1(a)-299(d)1(rog\\246)-299(me)-1(n)1(del)-299(j)1(a)-56(jk)28(\\363)28(w)-299(i)-298(s)-1(p)-27(or\\241)-298(os)-1(e\\252k)28(\\246)-299(\\261)-1(wie\\273)-1(ego)]TJ 0 -13.549 Td[(mas)-1(\\252a.)]TJ 27.879 -13.55 Td[(Wit)1(e)-1(k)-245(p)-27(os)-1(ze)-1(d)1(\\252)-246(za)-246(n)1(im)-1(i)-245(tr)1(op)-245(w)-246(trop)1(,)-245(roz)-1(p)-27(o)28(wiada)-55(j\\241c)-246(p)-27(otem)-1(,)-245(j)1(ak)28(o)-246(ws)-1(t\\246p)-27(o)27(w)28(ali)]TJ -27.879 -13.549 Td[(do)-272(so\\252t)28(ys)-1(a)-272(i)-272(p)1(r\\363b)-27(o)28(w)27(ali)-272(zazie)-1(r)1(a\\242)-273(d)1(o)-273(p)-27(oni)1(e)-1(kt)1(\\363ryc)27(h)-271(okien)-272(j)1(e)-1(sz)-1(cz)-1(e)-272(o\\261)-1(wietlon)28(y)1(c)27(h,)-272(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(co)-289(p)1(ie)-1(ski)-288(tak)-288(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(a\\252y)84(,)-288(\\273)-1(e)-288(nie)-289(p)-27(oredziwsz)-1(y)-288(ni)1(k)55(a)-55(j)-288(za)-56(jr)1(z)-1(e\\242)-289(kr)1(yjomo,)-288(z)-289(n)1(ic)-1(zym)]TJ 0 -13.549 Td[(o)-28(d)1(e)-1(sz)-1(l)1(i.)]TJ 27.879 -13.549 Td[(Ale)-359(to)-358(z)-1(d)1(arze)-1(n)1(ie)-359(tak)-358(jak)28(o\\261)-359(d)1(z)-1(i)1(w)-1(n)1(ie)-359(roze)-1(b)1(ra\\252o)-358(An)28(tk)56(a,)-359(\\273e)-359(sk)28(oro)-359(j)1(e)-1(n)1(o)-359(zos)-1(t)1(a\\252)]TJ -27.879 -13.549 Td[(sam)-334(na)-333(sam)-334(z)-334(\\273on\\241,)-333(z)-1(acz\\241\\252)-334(si\\246)-334(wyzna)28(w)27(a\\242)-333(z)-334(utr)1(apie\\253.)]TJ 27.879 -13.55 Td[(S\\252u)1(c)27(h)1(a\\252)-1(a)-234(z)-236(b)1(ij)1(\\241c)-1(ym)-235(se)-1(r)1(c)-1(em)-1(,)-234(u)28(w)28(a\\273)-1(n)1(ie)-1(,)-234(ni)1(e)-236(p)1(rze)-1(p)1(usz)-1(cz)-1(a)-55(j\\241c)-235(ani)-234(jedn)1(e)-1(go)-235(s\\252o)28(w)27(a,)]TJ -27.879 -13.549 Td[(dop)1(iero)-344(kiej)-344(w)-344(k)28(o\\253cu)-344(zap)-28(o)28(wiedzia\\252,)-344(jak)28(o)-344(im)-344(ju)1(\\273)-345(n)1(ic)-345(n)1(ie)-345(p)-27(ozos)-1(ta)-55(je,)-344(jeno)-344(pr)1(z)-1(eda\\242)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-344(i)-343(u)1(c)-1(iek)56(a\\242)-344(w)28(e)-344(\\261)-1(wiat,)-343(c)28(ho)-28(\\242b)28(y)-343(do)-343(Hame)-1(r)1(yki,)-343(stan\\246\\252a)-344(p)1(rze)-1(d)-343(n)1(im)-344(p)-27(obl)1(ad\\252a)]TJ 0 -13.549 Td[(kieb)28(y)-333(\\261c)-1(ian)1(a.)]TJ 27.879 -13.549 Td[({)-299(Nie)-299(p)-28(\\363)-28(d)1(\\246)-300(i)-299(d)1(z)-1(i)1(e)-1(ci)-299(na)-299(zatrat\\246)-299(nie)-299(p)-28(ozw)27(ol)1(\\246)-1(!)-299({)-299(wyrzek\\252a)-300(gr)1(o\\271)-1(n)1(ie)-300({)-299(n)1(ie)-300(p)-27(\\363)-28(d)1(\\246)-1(!)]TJ -27.879 -13.55 Td[(A)-351(jak)-351(m)-1(n)1(ie)-352(p)1(rzyniew)28(olisz)-1(,)-351(to)-351(s)-1(iekier\\241)-351(\\252b)28(y)-351(dzie)-1(ciom)-352(p)-27(orozbi)1(jam,)-351(a)-352(sam)-1(a)-351(c)27(h)1(o)-28(\\242)-1(b)29(y)]TJ 0 -13.549 Td[(do)-303(s)-1(tu)1(dn)1(i!)-303(Pra)28(wd\\246)-304(m\\363)28(wi\\246)-1(,)-303(tak)-303(m)-1(i)-303(P)28(ani)1(e)-304(B)-1(o\\273e)-1(,)-303(dop)-27(om\\363\\273)-1(!)-303(Zapami\\246ta)-56(j)-303(to)-304(sobi)1(e)-1(!)-303({)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(a\\252a)-333(kl\\246k)56(a)-56(j)1(\\241c)-334(pr)1(z)-1(ed)-333(obr)1(az)-1(ami)-333(jakb)29(y)-334(d)1(o)-333(uro)-28(czys)-1(tej)-333(p)1(rz)-1(y)1(s)-1(i\\246gi.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(j!)-333(Dy)1(\\242)-334(jeno)-333(tak)-333(m)-1(\\363)28(wi\\246!)]TJ 0 -13.549 Td[(Wyt)1(c)27(hn)1(\\246)-1(\\252a)-333(ni)1(e)-1(co)-334(i)-333(r)1(z)-1(ek\\252a)-334(cisz)-1(ej,)-333(ledwie)-333(ju\\273)-333(\\252z)-1(y)-333(p)-27(o)27(wstrzym)27(u)1(j\\241c:)]TJ 0 -13.55 Td[({)-374(Odsiedzis)-1(z)-374(s)-1(w)28(o)-56(j)1(e)-375(i)-374(wr\\363)-28(cis)-1(z!)-374(Nie)-375(b)-27(\\363)-56(j)-374(si\\246,)-374(dam)-375(se)-375(r)1(ad\\246...)-374(nie)-374(uron)1(i\\246)-375(ci)-374(ni)]TJ -27.879 -13.549 Td[(zagona,)-322(jes)-1(zc)-1(ze)-323(me)-323(ni)1(e)-323(z)-1(n)1(as)-1(z...)-322(n)1(ie)-323(p)-27(opu)1(s)-1(zc)-1(z\\246)-323(z)-323(p)1(az)-1(u)1(r\\363)28(w.)-323(P)29(an)-322(Je)-1(zus)-323(p)-27(omo\\273)-1(e,)-322(to)]TJ 0 -13.549 Td[(i)-333(taki)-333(d)1(opust)-333(ud)1(\\271)-1(wign)1(\\246)-334({)-334(p)1(\\252ak)56(a\\252)-1(a)-333(cic)27(h)1(o.)]TJ 27.879 -13.549 Td[(Medy)1(to)27(w)28(a\\252)-333(d\\252ugo)-333(i)-333(w)-334(k)28(o\\253)1(c)-1(u)-333(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(:)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(b)-27(edzie)-1(,)-333(co)-333(B)-1(\\363g)-333(da!)-333(T)83(r)1(z)-1(a)-333(p)-28(o)-27(c)-1(ze)-1(k)56(a\\242)-334(n)1(a)-334(spr)1(a)28(w)27(\\246.)]TJ 0 -13.55 Td[(\\233e)-334(n)1(a)-334(n)1(ic)-334(si\\246)-334(zda\\252y)-333(c)27(h)28(y)1(tre)-334(k)28(o)28(w)28(alo)28(w)27(e)-334(zabi)1(e)-1(gi.)]TJ\nET\nendstream\nendobj\n2133 0 obj <<\n/Type /Page\n/Contents 2134 0 R\n/Resources 2132 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2132 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2137 0 obj <<\n/Length 6619      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(42)]TJ/F17 10.909 Tf 0 -73.325 Td[({)-368(Uw)28(al)-368(s)-1(i)1(\\246)-369(j)1(u\\273)-368(raz)-368(i)-368(nie)-368(pr)1(z)-1(es)-1(zk)56(adza)-56(j)1(!)-368({)-368(mruk)1(n\\241\\252)-368(z)-1(gn)1(iew)27(an)28(y)-367(Mateusz)-369(p)1(rze)-1(wra-)]TJ 0 -13.549 Td[(ca)-56(j\\241c)-333(s)-1(i\\246)-333(na)-333(dru)1(gi)-333(b)-28(ok)1(.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-277(przyw)28(ar\\252)-278(na)-277(c)27(h)28(wil\\246,)-278(a)-278(sk)28(oro)-278(tam)28(te)-1(n)-277(z)-1(n)1(o)28(w)-1(u)-277(z)-1(ac)28(hr)1(apa\\252,)-278(j)1(\\241\\252)-279(si\\246)-278(c)-1(i)1(c)27(ho)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ebi)1(e)-1(ra\\242)-351(z)-1(e)-351(s)-1(\\241siek)56(a,)-351(gdy\\273)-351(m)27(u)-350(s)-1(i\\246)-351(pr)1(z)-1(ywid)1(z)-1(i)1(a\\252)-1(o,)-350(jak)28(o)-351(do)-351(sto)-28(d)1(o\\252y)83(,)-351(k)56(a)-56(j)-350(s)-1(p)1(ali,)-351(j)1(u\\273)]TJ 0 -13.55 Td[(si\\246)-334(wdziera)-56(j)1(\\241)-334(m\\241t)28(y)-333(pierwsz)-1(yc)28(h)-333(\\261)-1(wit)1(a\\253.)]TJ 27.879 -13.549 Td[(Omac)27(ki)1(e)-1(m)-408(zbi)1(e)-1(ra\\252)-407(p)-28(o)-407(klepi)1(s)-1(ku)-407(n)1(arz\\246)-1(d)1(z)-1(ia,)-407(jesz)-1(cz)-1(e)-408(w)28(c)-1(zora)-55(j)-407(nagoto)28(w)28(ane)-1(,)-407(i)]TJ -27.879 -13.549 Td[(tak)-350(si\\246)-351(\\261pies)-1(zy\\252,)-350(\\273)-1(e)-350(m)27(u)-350(raz)-350(p)-28(o)-350(raz)-350(c)-1(osik)-350(lec)-1(ia\\252o)-350(z)-351(r\\241k)-350(z)-350(prze)-1(r)1(a\\271)-1(l)1(iwym)-351(b)1(rz)-1(\\246kiem,)]TJ 0 -13.549 Td[(ja\\273e)-334(M)1(ate)-1(u)1(s)-1(z)-334(k)1(l\\241\\252)-334(p)1(rze)-1(z)-334(\\261pi)1(k.)]TJ 27.879 -13.549 Td[(Ale)-302(nad)-302(ziem)-1(i)1(am)-1(i)-302(l)1(e)-1(\\273a\\252y)-302(jes)-1(zc)-1(ze)-303(ciem)-1(n)1(ic)-1(e,)-302(j)1(e)-1(n)1(o)-303(gwiazdy)-301(b)28(y\\252y)-302(ju)1(\\273)-303(b)1(lada)28(w)28(e)-1(,)]TJ -27.879 -13.549 Td[(na)-356(ws)-1(c)28(ho)-28(d)1(ni)1(e)-1(j)-356(stron)1(ie)-357(\\271dzie)-1(b)1(k)28(o)-356(s)-1(i\\246)-356(przez)-1(iera\\252o)-356(i)-356(pierwsz)-1(e)-357(k)1(ury)-356(b)1(i\\252y)-356(s)-1(k)1(rz)-1(y)1(d\\252ami)]TJ 0 -13.55 Td[(kr)1(z)-1(yk)56(a)-55(j\\241c)-334(zac)27(hr)1(ypl)1(e)-1(.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-240(z)-1(ebr)1(a\\252)-241(w)-241(tac)-1(zki,)-241(co)-241(j)1(e)-1(n)1(o)-241(m)-1(i)1(a\\252)-1(,)-240(i)-241(skrad)1(a)-56(j)1(\\241c)-242(si\\246)-241(c)-1(ic)28(h)28(u\\261k)28(o)-241(k)28(ole)-241(c)27(h)1(a\\252up)28(y)]TJ -27.879 -13.549 Td[(wydosta\\252)-333(s)-1(i\\246)-333(nad)-333(sta)28(w)-1(.)]TJ 27.879 -13.549 Td[(Wie\\261)-254(s)-1(p)1(a\\252a)-254(ki)1(e)-1(j)-253(zabita,)-253(na)28(w)28(e)-1(t)-253(pies)-254(nie)-254(zasz)-1(cz)-1(ek)56(a)-1(\\252,)-253(a)-254(w)-253(c)-1(ic)28(ho\\261c)-1(i)-253(s)-1(\\252yc)28(ha\\242)-254(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(jeno)-333(b)1(ulgotan)1(ie)-334(w)28(o)-28(dy)-333(p)1(rze)-1(cis)-1(k)56(a)-55(j\\241ce)-1(j)-333(si\\246)-334(p)1(rze)-1(z)-334(zapu)1(s)-1(zc)-1(zone)-333(s)-1(ta)28(wid)1(\\252)-1(a)-333(m\\252yna.)]TJ 27.879 -13.55 Td[(Na)-430(drogac)28(h,)-430(pr)1(z)-1(ycienion)29(yc)27(h)-430(sadami,)-430(b)28(y\\252o)-430(jes)-1(zc)-1(ze)-431(tak)-430(c)-1(i)1(e)-1(mno,)-430(\\273e)-431(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(\\261)-325(n)1(ie)-1(k)56(a)-55(j)-324(zam)-1(a)-55(jacz)-1(y\\252a)-324(b)1(ielona)-324(\\261c)-1(i)1(ana,)-324(za\\261)-325(sta)28(w)-324(t)27(y)1(la)-324(jeno)-324(p)1(rze)-1(ziera\\252)-324(z)-325(n)1(o)-28(c)-1(y)84(,)-324(co)]TJ 0 -13.549 Td[(t)28(ym)-334(l)1(\\261)-1(n)1(ie)-1(n)1(iem)-334(o)-28(d)1(bij)1(a)-56(j)1(\\241c)-1(yc)28(h)-333(s)-1(i)1(\\246)-334(gwiaz)-1(d)1(.)]TJ 27.879 -13.549 Td[(Ale)-283(do)-28(c)28(ho)-28(d)1(z)-1(\\241c)-283(m)-1(atcz)-1(y)1(nej)-283(c)27(h)1(a\\252up)28(y)-283(zw)27(oln)1(i\\252)-283(krok)1(u,)-283(pi)1(lni)1(e)-284(nas\\252uc)28(h)28(uj)1(\\241c)-1(,)-283(gd)1(y\\273)]TJ -27.879 -13.549 Td[(w)-334(op)1(\\252otk)56(ac)27(h)-333(jak)1(b)28(y)-333(ktosik)-333(c)27(h)1(o)-28(dzi\\252)-333(z)-334(c)-1(i)1(c)27(h)28(ym)-333(a)-334(n)1(ie)-1(u)1(s)-1(t)1(a)-56(j\\241cym)-333(m)-1(amrotem.)]TJ 27.879 -13.55 Td[({)-333(Kto)-333(tam)-1(?)-333({)-333(p)-28(os\\252ys)-1(za\\252)-334(n)1(araz)-334(g\\252os)-333(m)-1(atk)1(i.)]TJ 0 -13.549 Td[(Zdr)1(\\246)-1(t)28(wia\\252)-299(i)-299(sta\\252)-299(z)-299(z)-1(ap)1(art)28(ym)-299(o)-28(d)1(de)-1(c)28(hem)-1(,)-298(nie)-299(\\261m)-1(i)1(e)-1(j)1(\\241c)-300(si\\246)-299(p)-28(or)1(usz)-1(y\\242,)-299(za\\261)-300(stara)]TJ -27.879 -13.549 Td[(ni)1(e)-334(do)-27(c)-1(ze)-1(k)56(a)28(w)-1(szy)-334(si\\246)-334(o)-27(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i)-333(zno)28(wu)-333(j\\246\\252a)-334(c)27(h)1(o)-28(d)1(z)-1(i\\242.)]TJ 27.879 -13.549 Td[(Wid)1(z)-1(i)1(a\\252)-429(j)1(\\241)-429(k)1(ie)-1(b)29(y)-428(c)-1(ie\\253)-428(sn)28(uj)1(\\241c)-1(\\241)-428(si\\246)-429(p)-27(o)-28(d)1(drze)-1(w)28(ami;)-428(mac)-1(a\\252a)-428(s)-1(ob)1(ie)-429(d)1(rog\\246)-429(k)1(i-)]TJ -27.879 -13.549 Td[(jaszkiem)-334(i)-333(c)27(ho)-27(dzi\\252a)-334(o)-27(dma)28(w)-1(i)1(a)-56(j\\241c)-333(p)-28(\\363\\252g\\252ose)-1(m)-334(l)1(itani)1(\\246)-1(.)]TJ 27.879 -13.55 Td[({)-314(T\\252uk)56(\\241)-314(s)-1(i)1(\\246)-315(p)-27(o)-314(no)-28(cy)-314(ki)1(e)-1(j)-313(Marek)-314(p)-27(o)-314(piekle)-314({)-314(p)-28(om)28(y\\261la\\252,)-314(ale)-314(w)27(es)-1(tc)28(hn)1(\\241\\252)-315(j)1(ak)28(o\\261)]TJ -27.879 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-295(i)-294(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o,)-294(strac)28(hliwie)-294(pr)1(z)-1(em)-1(kn)1(\\241\\252)-294(s)-1(i\\246)-294(dalej.)-294({)-294(Gr)1(yz)-1(i)1(e)-295(ic)28(h)-294(m)-1(o)-55(ja)-294(kr)1(z)-1(ywd)1(a!)]TJ 0 -13.549 Td[(Gr)1(yz)-1(i)1(e)-1(!{)-401(p)-27(o)28(wt\\363rzy\\252)-401(z)-402(g\\252\\246b)-28(ok)56(\\241)-401(u)1(c)-1(iec)27(h)1(\\241,)-401(wyc)27(h)1(o)-28(dz\\241c)-401(na)-401(sz)-1(erok)56(\\241,)-401(wyb)-27(ois)-1(t\\241)-400(drog\\246)]TJ 0 -13.549 Td[(za)-315(m\\252ynem)-315(i)-314(nar)1(az)-315(p)-28(ogn)1(a\\252,)-314(jakb)28(y)-314(go)-314(c)-1(osik)-314(p)-27(op)-28(\\246dza\\252o,)-314(nie)-315(b)1(ac)-1(z\\241c)-315(ju)1(\\273)-315(na)-314(do\\252y)-314(n)1(i)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(e)-1(n)1(ie)-1(.)]TJ 27.879 -13.55 Td[(Wstrzyma\\252)-404(s)-1(i)1(\\246)-404(dop)1(ie)-1(r)1(o)-404(p)-27(o)-28(d)-403(krzy\\273e)-1(m,)-404(n)1(a)-404(r)1(oz)-1(sta)-56(j)1(ac)27(h)-403(dr)1(\\363g)-404(p)-27(o)-28(dl)1(e)-1(skic)27(h)1(.)-403(Z)-1(a)]TJ -27.879 -13.549 Td[(cie)-1(mno)-429(b)29(y\\252o)-429(jes)-1(zc)-1(ze)-429(s)-1(ta)28(w)28(a\\242)-430(d)1(o)-429(rob)-27(ot)28(y)83(,)-429(wi\\246c)-429(s)-1(e)-429(przysiad\\252)-429(p)-27(o)-28(d)-428(\\014gu)1(r\\241)-429(o)-28(d)1(z)-1(ip)1(n\\241\\242)]TJ 0 -13.549 Td[(ni)1(e)-1(co)-334(i)-333(p)-27(o)-28(cz)-1(ek)56(a\\242)-1(.)]TJ 358.232 -29.888 Td[(669)]TJ\nET\nendstream\nendobj\n2136 0 obj <<\n/Type /Page\n/Contents 2137 0 R\n/Resources 2135 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2135 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2140 0 obj <<\n/Length 10034     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(670)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-268(Z\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(s)-1(k)56(a)-268(go)-27(dzina,)-267(ni)1(e)-269(sp)-27(os)-1(\\363b)-267(rozez)-1(n)1(a\\242)-269(zagona)-267(o)-28(d)-267(b)-27(oru)-267({)-268(mru)1(c)-1(za\\252)-268(br)1(o-)]TJ -27.879 -13.549 Td[(dz\\241c)-383(o)-28(cz)-1(yma)-383(p)-27(o)-383(\\261wie)-1(cie.)-383(P)29(ola)-383(sta\\252y)-383(j)1(e)-1(sz)-1(cz)-1(e)-383(p)-27(otopi)1(one)-383(w)-383(rozmro)28(w)-1(i)1(on)28(yc)27(h)-382(ciem)-1(-)]TJ 0 -13.549 Td[(no\\261ciac)27(h)1(,)-334(al)1(e)-334(na)-333(ni)1(e)-1(b)1(ie)-334(ju)1(\\273)-334(si\\246)-334(coraz)-334(b)1(arze)-1(j)-333(j)1(arzy\\252y)-334(z\\252o)-28(cis)-1(t)1(e)-334(s)-1(m)28(ugi)-333(\\261w)-1(i)1(tania.)]TJ 27.879 -13.549 Td[(D\\252u\\273y\\252)-427(m)27(u)-427(si\\246)-428(c)-1(zas,)-428(\\273e)-428(j\\241\\252)-427(s)-1(i\\246)-427(pacie)-1(r)1(z)-1(a,)-427(ale)-428(co)-428(j)1(e)-1(n)1(o)-428(tkn)1(\\241\\252)-428(r)1(\\246)-1(k)56(\\241)-428(or)1(os)-1(i)1(a\\252)-1(ej)]TJ -27.879 -13.549 Td[(zie)-1(mi,)-379(to)-379(gub)1(i\\252)-380(s\\252o)28(w)27(a)-379(i)-379(s)-1(p)-27(om)-1(i)1(na\\252)-379(s)-1(e)-380(z)-379(lub)-27(o\\261)-1(ci\\241,)-379(jak)28(o)-379(ju)1(\\273)-380(id)1(z)-1(i)1(e)-380(na)-379(s)-1(w)28(o)-56(j)1(e)-1(,)-379(n)1(a)-380(go-)]TJ 0 -13.55 Td[(sp)-28(o)-28(d)1(ark)28(\\246.)]TJ 27.879 -13.549 Td[({)-340(Mam)-340(c)-1(i)1(\\246)-341(i)-340(n)1(ie)-341(p)-27(opu)1(s)-1(zc)-1(z\\246)-341({)-340(m)28(y\\261la\\252)-340(hard)1(o,)-340(rad)1(o\\261)-1(n)1(ie)-341(i)-340(z)-340(ni)1(e)-1(zm)-1(i)1(e)-1(rn)1(\\241)-340(z)-1(ap)1(a-)]TJ -27.879 -13.549 Td[(mi\\246)-1(t)1(a\\252)-1(o\\261ci\\241)-289(k)28(o)-28(c)28(han)1(ia)-289(w\\273e)-1(r)1(a\\252)-289(si\\246)-289(rozgorza\\252ym)-1(i)-288(\\261lepiami)-288(w)-289(s)-1(k)28(o\\252tu)1(ni)1(o)-1(n)1(e)-289(p)-27(o)-28(d)-288(lase)-1(m)]TJ 0 -13.549 Td[(cie)-1(mno\\261cie)-1(,)-333(k)56(a)-56(j)-332(ju\\273)-333(c)-1(ze)-1(k)56(a\\252y)-333(na)-333(ni)1(e)-1(go)-333(te)-334(sz)-1(e\\261)-1(\\242)-333(m)-1(org\\363)28(w)-333(kup)1(ione)-333(o)-28(d)-333(dziedzica.)]TJ 27.879 -13.549 Td[({)-302(Przygarn)1(\\246)-303(ja)-302(w)27(as,)-302(s)-1(i)1(e)-1(rot)28(y)-302(k)28(o)-28(c)28(hane,)-302(i)-302(nie)-303(op)1(usz)-1(cz)-1(\\246,)-302(p)-28(\\363k)1(i)-303(\\273ycia!)-302({)-303(mam)-1(r)1(o-)]TJ -27.879 -13.549 Td[(ta\\252)-349(\\261c)-1(i\\241)-27(ga)-56(j)1(\\241c)-350(k)28(o\\273uc)27(h)-348(na)-348(roz)-1(mamlane)-349(pi)1(e)-1(r)1(s)-1(i,)-348(b)-28(o)-349(go)-348(b)28(y\\252)-349(c)27(h)1(\\252\\363)-28(d)-349(\\271dziebk)28(o)-349(p)1(rze)-1(j)1(m)-1(o-)]TJ 0 -13.55 Td[(w)28(a\\252)-1(,)-377(i)-377(ws)-1(p)1(ar\\252sz)-1(y)-377(s)-1(i)1(\\246)-378(w)-378(kr)1(z)-1(y\\273)-377(plec)-1(ami,)-377(zapatrzon)28(y)-377(w)-378(\\261witani)1(a)-378(zac)27(hr)1(apa\\252)-377(ryc)28(h\\252o)]TJ 0 -13.549 Td[(zm)-1(or)1(z)-1(on)28(y)-333(\\261pik)1(ie)-1(m.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-307(p)-27(ola)-306(sz)-1(ar)1(z)-1(a\\252y)-306(ki)1(e)-1(j)-305(w)27(o)-27(dy)-306(sz)-1(erok)28(o)-306(r)1(oz)-1(lan)1(e)-1(,)-305(a)-306(s)-1(iw)28(e)-306(o)-28(d)-306(r)1(os)-1(y)-305(z)-1(b)-27(o\\273)-1(a)-306(tr)1(\\241c)-1(a\\252y)]TJ -27.879 -13.549 Td[(go)-333(rozruc)28(han)28(y)1(m)-1(i)-333(k\\252osam)-1(i)1(,)-334(gd)1(y)-333(z)-1(erw)28(a\\252)-334(si\\246)-334(n)1(a)-334(n)1(ogi.)]TJ 27.879 -13.549 Td[({)-372(Dzie\\253)-372(ki)1(e)-1(j)-371(w)27(\\363\\252,)-372(p)-27(ora)-372(n)1(a)-372(rob)-27(ot\\246)-372({)-372(s)-1(ze)-1(p)1(n\\241\\252)-372(p)1(rze)-1(ci\\241)-28(ga)-55(j\\241c)-372(k)28(o\\261)-1(cie)-372(i)-372(kl\\246kn)1(\\241\\252)]TJ -27.879 -13.55 Td[(p)-27(o)-28(d)-304(krzy\\273e)-1(m)-305(do)-304(pacierz)-1(a,)-304(ale)-305(ni)1(e)-305(trze)-1(p)1(a\\252)-305(na)-305(p)29(ytel,)-305(j)1(ak)-305(to)-304(z)-1(a)28(wdy)-304(robi)1(\\252,)-305(b)-27(e)-1(l)1(e)-306(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(zb)28(y\\242,)-424(a)-424(du)1(\\273)-1(o)-423(na)28(wz)-1(d)1(yc)27(h)1(a\\242)-1(,)-424(a)-423(w)-424(piersi)-424(si\\246)-425(n)1(agrzm)-1(o)-27(c)-1(i\\242)-424(i)-424(t)28(y)1(la)-424(si\\246)-425(n)1(a\\273)-1(egna\\242,)-424(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(ku)1(las)-323(zdr\\246t)28(wie)-1(j)1(e)-1(:)-322(d)1(z)-1(isia)-55(j)-322(b)28(y\\252o)-323(i)1(nacz)-1(ej,)-322(a)-322(w)-1(sp)-27(om)-1(o\\273e)-1(n)1(ie)-323(b)-27(o)28(w)-1(i)1(e)-1(m)-323(P)29(a\\253skie)-323(zab\\252aga\\252)]TJ 0 -13.549 Td[(rze)-1(wli)1(w)-1(i)1(e)-312(i)-312(t)1(ak)-312(ze)-312(ws)-1(zystkiej)-311(duszy)83(,)-311(ja\\273e)-312(m)27(u)-311(\\252zy)-312(p)-27(o)-28(ciek\\252y)83(,)-311(i)-311(ob)-28(ejm)28(uj)1(\\241c)-312(Je)-1(zuso)28(w)27(e)]TJ 0 -13.549 Td[(n\\363\\273ki)-301(z)-1(ask)55(amla\\252)-302(wp)1(atrzon)28(y)-302(wiern)28(ymi)-302(\\261lepiami)-301(w)-303(J)1(e)-1(go)-302(t)28(w)28(arz)-302(um\\246)-1(cz)-1(on)1(\\241)-302(i)-302(\\261wi\\246t\\241:)]TJ 27.879 -13.55 Td[({)-463(D)1(op)-28(om\\363\\273)-1(,)-462(Jez)-1(u)-462(mi\\252osie)-1(r)1(n)28(y!)-462(Ro)-28(dzona)-462(m)-1(a\\242)-463(me)-463(u)1(krzywdzi\\252a,)-463(T)83(ob)1(ie)-463(si\\246)]TJ -27.879 -13.549 Td[(jeno)-365(o)-28(dd)1(a)27(w)28(am,)-366(sie)-1(r)1(ota!)-366(p)-27(om\\363\\273)-1(!)-365(Dy\\242)-1(,)-365(kiej)-366(t)1(e)-1(n)-365(os)-1(tatn)1(i,)-366(n)1(a)-366(ci\\246)-1(\\273ki)-365(w)-1(y)1(rob)-27(e)-1(k)-365(s)-1(ta)-55(j\\246!)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-483(c)-1(om)-484(gr)1(z)-1(es)-1(zn)28(y)84(,)-484(al)1(e)-484(m)-1(e)-484(sp)-27(om)-1(\\363\\273,)-483(P)28(anie)-484(mi\\252osiern)28(y)84(,)-484(t)1(o)-484(ju)1(\\273)-484(na)-483(ms)-1(z\\246)-484(dam)]TJ 0 -13.549 Td[(ab)-27(o)-408(i)-408(n)1(a)-408(dwie!)-408(\\221wiec)-408(naku)1(pi\\246,)-408(a)-408(j)1(ak)-408(si\\246)-408(dor)1(obi\\246,)-408(to)-408(n)1(a)28(w)27(et)-408(bal)1(dac)27(h)-407(s)-1(p)1(ra)28(wi\\246)-1(!)-407({)]TJ 0 -13.549 Td[(pr)1(os)-1(i)1(\\252)-345(i)-344(pr)1(z)-1(y)28(ob)1(iec)-1(yw)28(a\\252,)-344(s)-1(erdecz)-1(n)1(ie)-345(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra)-55(j\\241c)-344(w)27(argami)-344(do)-344(kr)1(z)-1(y\\273a,)-344(obsz)-1(ed\\252)-344(go)]TJ 0 -13.55 Td[(na)-243(k)28(olan)1(ac)27(h)1(,)-243(uca\\252o)27(w)28(a\\252)-243(p)-28(ok)28(or)1(nie)-243(z)-1(iemi\\246)-244(i)-243(ws)-1(t)1(a\\252)-244(wielce)-244(s)-1(k)1(rze)-1(p)1(ion)28(y)-243(i)-243(du)1(fn)29(y)-243(w)-244(sie)-1(b)1(ie.)]TJ 27.879 -13.549 Td[(I)-357(m)-1(o)-27(c)-1(n)28(y)1(m)-358(si\\246)-358(p)-27(o)-28(cz)-1(u)1(\\252,)-357(i)-357(goto)27(wym)-357(ju)1(\\273)-358(n)1(a)-358(wsz)-1(ystk)28(o,)-357(i)-357(tak)-357(d)1(obr)1(e)-1(j)-357(m)28(y\\261le)-1(,)-357(\\273e)]TJ -27.879 -13.549 Td[(uj)1(\\241)28(w)-1(szy)-455(c)-1(i)1(\\246)-1(\\273kie)-455(tac)-1(zki)-455(p)-27(c)27(h)1(a\\252)-455(je)-455(kiej)-455(p)1(i\\363rk)28(o,)-455(h)1(ard)1(o)-455(to)-28(cz)-1(\\241c)-455(o)-28(c)-1(zami)-455(p)-27(o)-455(Lip)-27(c)-1(ac)27(h)]TJ 0 -13.549 Td[(le\\273)-1(\\241cyc)27(h)-345(n)1(i\\273)-1(ej,)-345(a)-346(ca\\252)-1(y)1(c)27(h)-345(jes)-1(zc)-1(ze)-346(w)27(e)-346(mg\\252ac)27(h,)-345(z)-346(kt\\363ry)1(c)27(h)-345(jeno)-346(k)28(o\\261c)-1(i)1(e)-1(ln)1(a)-346(wie\\273)-1(a)-346(b)1(i\\252a)]TJ 0 -13.549 Td[(wysok)28(o,)-334(gr)1(a)-56(j)1(\\241c)-334(w)-334(zorzac)27(h)-333(p)-27(oz)-1(\\252o)-28(cist)28(ym)-334(kr)1(z)-1(y)1(\\273)-1(em)-1(.)]TJ 27.879 -13.55 Td[({)-293(O)1(bacz)-1(ycie!)-293(Hej!)-292(obacz)-1(ycie!)-293({)-292(krzyk)56(a\\252)-293(rad)1(o\\261)-1(n)1(ie)-1(,)-292(w)28(c)27(ho)-27(dz\\241c)-294(n)1(a)-293(sw)27(o)-55(je)-293(gron)1(-)]TJ -27.879 -13.549 Td[(ta.)-335(Le\\273a\\252)-1(y)-334(tu\\273)-335(p)-27(o)-28(d)-335(l)1(as)-1(em)-1(,)-334(jedn)28(y)1(m)-336(b)-27(oki)1(e)-1(m)-335(pr)1(z)-1(yw)28(arte)-335(d)1(o)-335(p)-28(\\363l)-334(lip)-27(e)-1(c)28(kic)27(h)1(,)-335(ale)-335(Bo\\273)-1(e)]TJ 0 -13.549 Td[(si\\246)-292(zm)-1(i)1(\\252)-1(u)1(j,)-291(co)-291(to)-291(b)28(y\\252y)-291(za)-291(g)-1(r)1(on)28(ta!)-291(Ka)28(w)28(a\\252)-292(d)1(z)-1(i)1(kiego)-292(u)1(goru)1(,)-291(p)-28(e\\252e)-1(n)-290(do\\252\\363)28(w)-292(p)-27(o)-291(c)-1(egielni)1(,)]TJ 0 -13.549 Td[(sz)-1(u)1(tro)28(wis)-1(k)-355(i)-355(k)56(am)-1(ion)1(e)-1(k)-355(ob)1(ros\\252)-1(y)1(c)27(h)-355(cie)-1(r)1(niami.)-355(Dzie)-1(w)28(ann)29(y)83(,)-355(psi)-355(rumian)1(e)-1(k)-355(i)-355(k)28(o\\253skie)]TJ 0 -13.549 Td[(sz)-1(cz)-1(a)28(wie)-422(b)1(uj)1(nie)-421(s)-1(i\\246)-421(pleni)1(\\252)-1(y)-420(p)-28(o)-421(wz)-1(g\\363r)1(k)55(ac)28(h,)-421(a)-421(k)56(a)-56(j)-421(n)1(iek)55(a)-55(j)-421(z)-422(tr)1(ud)1(e)-1(m)-421(w)-1(y)1(nosi\\252a)-421(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(okr\\246c)-1(on)1(a)-285(sos)-1(enk)56(a,)-284(to)-285(k)28(\\246pa)-285(ol)1(c)27(h)-284(lub)-284(j)1(a\\252)-1(o)28(w)28(c)-1(\\363)28(w,)-285(za\\261)-285(p)-27(o)-285(do\\252k)56(ac)27(h)-284(i)-284(m)-1(\\252ak)56(ac)27(h)-284(sito)28(wia)]TJ 0 -13.55 Td[(i)-317(trzc)-1(in)29(y)-318(b)1(urzy\\252y)-317(s)-1(i)1(\\246)-319(k)1(ie)-1(j)-317(m\\252o)-28(d)1(e)-319(b)-27(ory)84(.)-317(S\\252o)28(w)27(em,)-318(zie)-1(mia)-317(b)28(y\\252a)-318(t)1(ak)55(a,)-317(co)-318(pi)1(e)-1(s)-318(b)28(y)-317(nad)]TJ 0 -13.549 Td[(ni)1(\\241)-334(zap\\252ak)56(a\\252,)-333(\\273)-1(e)-334(n)1(a)28(w)27(et)-333(s)-1(am)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(o)-28(dr)1(adza\\252,)-334(al)1(e)-334(c)27(h)1(\\252)-1(op)1(ak)-333(s)-1(i)1(\\246)-334(up)1(ar\\252:)]TJ 27.879 -13.549 Td[({)-333(W)-333(s)-1(am)-334(r)1(az)-334(la)-333(mnie!)-333(Ure)-1(d)1(z)-1(\\246)-333(i)-333(takiej!)]TJ 0 -13.549 Td[(I)-353(Mateusz)-354(go)-353(o)-28(dw)28(o)-28(d)1(z)-1(i\\252,)-353(ze)-354(strac)27(h)1(e)-1(m)-353(s)-1(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-354(na)-353(to)-353(dziki)1(e)-354(wywie)-1(i)1(s)-1(k)28(o,)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)-333(j)1(e)-1(n)1(o)-334(p)1(ie)-1(ski)-333(folw)28(arcz)-1(n)1(e)-334(o)-28(d)1(pra)28(wia\\252y)-333(s)-1(w)28(o)-56(j)1(e)-334(w)27(es)-1(ela,)-333(ale)-334(S)1(z)-1(yme)-1(k)-333(ci\\246gie)-1(m)-334(p)1(ra)28(wi\\252)]TJ 0 -13.55 Td[(sw)27(o)-55(je,)-334(a)-333(w)-333(k)28(o\\253cu)-333(t)27(w)28(ard)1(o)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(Rz)-1(ek\\252e)-1(m!)-333(Ka\\273da)-333(z)-1(iemia)-333(dobr)1(a,)-333(jak)-333(si\\246)-334(jej)-333(cz)-1(\\252o)28(wie)-1(k)-333(d)1(o\\252o\\273)-1(y!)]TJ\nET\nendstream\nendobj\n2139 0 obj <<\n/Type /Page\n/Contents 2140 0 R\n/Resources 2138 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2138 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2143 0 obj <<\n/Length 9059      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(671)]TJ -330.353 -35.866 Td[(I)-226(wz)-1(i\\241\\252)-226(j)1(\\241,)-226(b)-28(o)-226(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-226(s)-1(p)1(rze)-1(d)1(a\\252)-226(tanio,)-226(p)-27(o)-226(sz)-1(e\\261)-1(\\242dzie)-1(si\\241t)-226(r)1(ubl)1(i)-226(mo)-1(r)1(g\\246)-1(,)-225(i)-226(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)28(ob)1(iec)-1(a\\252)-333(p)-28(omo)-28(c)-334(w)-333(dr)1(z)-1(ew)-1(i)1(e)-334(i)-333(r\\363\\273no\\261c)-1(iac)28(h.)]TJ 27.879 -13.549 Td[({)-242(Hale,)-242(co)-242(b)28(y)1(m)-243(ta)-241(nie)-242(mia\\252)-242(p)-27(oredzi\\242)-1(!)-241({)-242(wykrzykn)1(\\241\\252)-242(obl)1(atuj)1(\\241c)-243(j)1(\\241)-242(rozgorza\\252y-)]TJ -27.879 -13.549 Td[(mi)-317(o)-28(cz)-1(y)1(m)-1(a)-317(i)-316(z)-1(\\252o\\273yws)-1(zy)-317(tacz)-1(k)1(i)-317(n)1(a)-317(m)-1(i)1(e)-1(d)1(z)-1(y)-317(j)1(\\241\\252)-317(ob)-27(c)27(ho)-27(dzi\\242)-317(s)-1(w)28(o)-56(j)1(e)-318(gr)1(anice)-1(,)-316(z)-1(n)1(ac)-1(zone)]TJ 0 -13.549 Td[(na)28(wt)28(yk)56(an)28(ymi)-333(ga\\252\\246)-1(ziami.)]TJ 27.879 -13.55 Td[(Cho)-28(d)1(z)-1(i)1(\\252)-377(z)-377(w)27(ol)1(na)-377(i)-376(w)-377(taki)1(e)-1(j)-376(cic)27(h)1(e)-1(j)-376(a)-377(g\\252\\246b)-28(ok)1(ie)-1(j)-376(rad)1(o\\261)-1(ci,)-376(ja\\273e)-377(s)-1(erce)-377(bi\\252o)-376(m)27(u)]TJ -27.879 -13.549 Td[(kiej)-281(m\\252otem)-282(i)-280(gardziel)-281(z)-1(at)28(y)1(k)55(a\\252o.)-281(Ch)1(o)-28(dzi\\252)-281(uk)1(\\252ada)-56(j)1(\\241c)-282(sobi)1(e)-282(w)-281(g\\252o)28(w)-1(i)1(e)-282(p)-27(o)-281(p)-27(orz\\241dku)1(,)]TJ 0 -13.549 Td[(co)-448(rob)1(i\\242)-448(i)-448(o)-28(d)-447(cz)-1(ego)-448(z)-1(aczyna\\242.)-448(P)1(rze)-1(cie)-1(\\273)-448(to)-447(m)-1(ia\\252)-447(robi)1(\\242)-449(l)1(a)-448(s)-1(i)1(e)-1(b)1(ie)-1(,)-447(la)-448(Nastusi,)-447(la)]TJ 0 -13.549 Td[(pr)1(z)-1(v)1(s)-1(z\\252e)-1(go)-293(r)1(o)-28(du)-292(P)28(acz)-1(esi\\363)28(w)-1(,)-292(to)-293(si\\246)-293(tak)-292(b)28(y\\252)-293(spr)1(\\246)-1(\\273y\\252)-293(w)-293(mo)-28(cy)-293(i)-292(s)-1(r)1(ogiej)-293(o)-27(c)27(ho)-27(c)-1(ie,)-293(j)1(ak)28(o)]TJ 0 -13.549 Td[(ten)-333(g\\252o)-28(dn)29(y)-334(wil)1(k,)-333(gdy)-333(pr)1(z)-1(y)1(c)27(h)28(wyci)-333(baran)1(a)-334(i)-333(d)1(orwie)-334(si\\246)-334(\\273yw)28(e)-1(go)-333(m)-1(i)1(\\246)-1(sa.)]TJ 27.879 -13.549 Td[(I)-333(obsz)-1(ed\\252sz)-1(y)-333(ca\\252)-1(e)-333(p)-28(ole)-333(j\\241\\252)-333(rozw)27(a\\273nie)-333(w)-1(y)1(biera\\242)-334(miejsc)-1(e)-334(p)-27(o)-28(d)-333(c)28(ha\\252u)1(p)-28(\\246.)]TJ 0 -13.55 Td[({)-475(Ryc)28(h)28(t)28(yk)-475(n)1(a)-56(jl)1(e)-1(p)1(s)-1(ze)-1(,)-474(w)-1(i)1(e)-1(\\261)-475(nap)1(rze)-1(ciw)-475(i)-475(b)-27(\\363r)-475(p)-27(o)-28(d)-474(b)-28(ok)1(ie)-1(m,)-475(\\252acniej)-475(b)-27(\\246dzie)]TJ -27.879 -13.549 Td[(o)-413(d)1(rze)-1(w)28(o)-413(i)-412(c)-1(isze)-1(j)-412(na)-412(z)-1(im\\246)-413({)-413(r)1(oz)-1(w)28(a\\273)-1(a\\252)-412(i)-413(oznacz)-1(ywsz)-1(y)-412(k)56(am)-1(i)1(e)-1(n)1(iam)-1(i)-412(cz)-1(tery)-412(w)27(\\246g\\252y)]TJ 0 -13.549 Td[(\\261c)-1(iepn)1(\\241\\252)-415(k)28(o\\273)-1(u)1(c)27(h,)-415(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-415(s)-1(i\\246)-415(i)-415(splu)1(n\\241)28(ws)-1(zy)-415(w)-415(gar\\261c)-1(ie)-415(wz)-1(i\\241\\252)-415(si\\246)-416(d)1(o)-415(r\\363)28(wnan)1(ia)]TJ 0 -13.549 Td[(zie)-1(mi)-333(a)-333(k)55(ar)1(c)-1(zun)1(k)28(\\363)27(w.)]TJ 27.879 -13.549 Td[(Dzie)-1(\\253)-287(s)-1(i\\246)-288(ju\\273)-288(b)28(y\\252)-288(p)-28(o)-27(dn)1(i\\363s)-1(\\252)-288(z)-1(\\252o)-27(c)-1(ist)28(y)83(,)-288(o)-28(d)-287(w)-1(si)-288(lec)-1(ia\\252y)-288(p)-27(oryk)1(iw)27(an)1(ia)-288(s)-1(tad)-287(w)-1(y)1(p)-28(\\246-)]TJ -27.879 -13.55 Td[(dzan)28(yc)28(h)-264(na)-264(pasz)-1(\\246,)-264(s)-1(k)1(rzypia\\252y)-264(\\273ura)28(wie,)-264(lud)1(z)-1(i)1(e)-265(wyc)27(h)1(o)-28(dzili)-264(do)-264(rob)-27(ot)28(y)84(,)-265(t)1(urk)28(ota\\252y)-264(p)-27(o)]TJ 0 -13.549 Td[(dr)1(ogac)27(h)-359(w)27(ozy)-360(i)-360(ni)1(e)-1(s\\252y)-360(s)-1(i)1(\\246)-361(p)1(rze)-1(r\\363\\273ne)-360(g\\252os)-1(y)-359(w)-1(r)1(az)-361(z)-360(lec)-1(iu)1(\\261)-1(ki)1(m)-361(wiaterk)1(ie)-1(m,)-360(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(zas)-1(wyw)28(oli\\252)-442(w)27(e)-443(zb)-27(o\\273)-1(ac)27(h)1(,)-442(ws)-1(zys)-1(t)1(k)28(o)-443(sz)-1(\\252o)-442(jak)-442(co)-443(d)1(nia,)-442(t)28(yl)1(k)28(o)-443(S)1(z)-1(y)1(m)-1(ek,)-442(ni)1(e)-443(bacz)-1(\\241c)]TJ 0 -13.549 Td[(na)-311(n)1(ic,)-311(jakb)29(y)-311(s)-1(i)1(\\246)-312(zapami\\246ta\\252)-311(w)-312(p)1(racy)83(,)-311(n)1(iekiedy)-311(j)1(e)-1(n)1(o)-311(prosto)28(w)27(a\\252)-311(gr)1(z)-1(b)1(ie)-1(t,)-310(o)-28(dzipi)1(a\\252,)]TJ 0 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(r)1(a\\252)-381(o)-28(c)-1(zy)-380(z)-1(alan)1(e)-381(p)-28(otem)-381(i)-381(zno)28(wu)-380(przyp)1(ina\\252)-381(si\\246)-381(d)1(o)-381(z)-1(i)1(e)-1(mi)-381(k)1(ie)-1(b)29(y)-381(ta)-381(p)1(ij)1(a)27(wk)56(a)]TJ 0 -13.55 Td[(ni)1(e)-1(n)1(as)-1(ycona,)-294(m)-1(amro)-27(c)-1(z\\241c)-296(ci\\246gie)-1(m)-295(w)28(e)-1(d)1(le)-296(sw)27(ego)-295(zw)-1(y)1(c)-1(za)-56(j)1(u)-295(d)1(o)-295(k)55(a\\273dej)-295(r)1(z)-1(ec)-1(zy)83(,)-294(jakb)29(y)]TJ 0 -13.549 Td[(do)-333(cz)-1(ego\\261)-334(\\273yw)27(ego.)]TJ 27.879 -13.549 Td[(J\\241\\252)-333(s)-1(i\\246)-333(b)28(y\\252)-333(w)-1(\\252a\\261nie)-333(w)-1(y)1(w)27(a\\273ania)-333(wielgac)27(h)1(nego)-334(k)56(amie)-1(n)1(ia)-333(i)-333(pra)28(wi\\252:)]TJ 0 -13.549 Td[({)-333(Wyle\\273)-1(a\\252e\\261)-334(si\\246)-1(,)-333(o)-28(d)1(p)-27(o)-28(c)-1(z\\241\\252e)-1(\\261,)-333(to)-333(m)-1(i)-333(teraz)-334(mo\\273)-1(esz)-334(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-334(p)-28(o)-27(deprze\\242)-1(.)]TJ 0 -13.549 Td[(A)-333(w)-1(y)1(c)-1(in)1(a)-56(j)1(\\241c)-334(kr)1(z)-1(e)-334(tar)1(nin)29(y)83(,)-333(m\\363)27(wi\\252)-333(ze)-334(s)-1(zyd)1(liwym)-334(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)27(h)1(e)-1(m:)]TJ 0 -13.55 Td[({)-420(Nie)-421(br)1(o\\253)-420(s)-1(i)1(\\246)-1(,)-420(g\\252up)1(ie!)-421(m)28(y\\261li,)-420(c)-1(o)-420(mi)-420(s)-1(i\\246)-420(oprze)-1(!)-420(Hale!)-420(os)-1(t)1(a)27(wie)-420(c)-1(i\\246)-421(t)1(o,)-421(b)29(y\\261)]TJ -27.879 -13.549 Td[(p)-27(ortki)-333(ozdzie)-1(r)1(a\\252o,)-333(c)-1(o?)]TJ 27.879 -13.549 Td[(Za\\261)-334(d)1(o)-334(k)56(amionek)-333(o)-28(dwiec)-1(zn)28(yc)28(h)-333(rze)-1(k)1(\\252)-1(:)]TJ 0 -13.549 Td[({)-424(I)-425(w)28(as)-425(r)1(usz)-1(\\246,)-424(c)-1(i\\246\\273)-1(k)28(o)-424(gn)1(ie)-1(\\261\\242)-425(si\\246)-425(n)1(a)-425(k)1(upi)1(e)-1(!)-424(Bru)1(k)-425(z)-424(w)27(a)-55(ju)-424(wyr)1(yc)27(h)28(t)1(uj\\246)-424(k)28(ole)]TJ -27.879 -13.549 Td[(ob)-27(ory)84(,)-334(j)1(ak)-333(u)-333(B)-1(or)1(yn\\363)28(w!)]TJ 27.879 -13.55 Td[(A)-332(n)1(ie)-1(k)1(ie)-1(d)1(y)-332(n)1(abiera)-55(j\\241c)-332(o)-28(dd)1(e)-1(c)28(h)28(u)-331(ogarni)1(a\\252)-332(s)-1(w)28(o)-56(j)1(\\241)-332(z)-1(i)1(e)-1(mi\\246)-332(m)-1(i)1(\\252uj\\241cymi)-332(o)-28(czam)-1(i)]TJ -27.879 -13.549 Td[(a)-333(s)-1(ze)-1(p)1(ta\\252)-334(gor)1(\\241c)-1(o:)]TJ 27.879 -13.549 Td[({)-333(Mo)-56(j)1(a\\261)-334(t)28(y!)-333(Mo)-55(ja!)-333(Nik)1(to)-334(mi)-333(c)-1(i)1(\\246)-334(ni)1(e)-334(wydr)1(z)-1(e!)]TJ 0 -13.549 Td[(I)-334(w)-1(sp)-27(\\363\\252c)-1(zuj\\241c)-334(te)-1(j)-333(biedo)-27(c)-1(ie)-334(z)-1(ac)27(h)29(w)27(asz)-1(cz)-1(on)1(e)-1(j)1(,)-334(p\\252on)1(e)-1(j)1(,)-334(nieur)1(o)-28(dza)-56(j)1(nej)-334(i)-334(opu)1(s)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(on)1(e)-1(j)1(,)-334(d)1(o)-28(da)28(w)28(a\\252)-334(p)1(ies)-1(zc)-1(zotliwie)-333(kieb)28(y)-333(do)-333(dzie)-1(ci\\241tk)56(a:)]TJ 27.879 -13.549 Td[({)-444(P)28(o)-28(cz)-1(ek)56(a)-56(j)-444(\\271dzie)-1(b)1(k)28(o,)-444(s)-1(ieroto,)-444(u)1(pr)1(a)27(wi\\246)-444(c)-1(i\\246,)-444(nap)1(as)-1(\\246,)-444(w)-1(y)1(c)-1(ec)27(k)56(am)-1(,)-444(\\273e)-445(ro)-27(dzi\\242)]TJ -27.879 -13.55 Td[(b)-27(\\246)-1(d)1(z)-1(iesz)-334(jak)-333(i)-333(dr)1(ugie.)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(dogo)-28(d)1(z)-1(\\246)-334(ci,)-333(d)1(ogo)-28(dz\\246)-1(.)]TJ 27.879 -13.549 Td[(S\\252o\\253)1(c)-1(e)-333(s)-1(i\\246)-333(p)-28(o)-28(d)1(nies\\252)-1(o)-333(n)1(a)-334(p)-27(ola)-333(i)-333(z)-1(a\\261wie)-1(ci\\252o)-333(m)27(u)-333(p)1(ros)-1(t)1(o)-334(w)-333(o)-28(c)-1(zy)84(.)]TJ 0 -13.549 Td[({)-443(P)28(ani)1(e)-444(B)-1(o\\273e)-444(zap\\252a\\242!)-444({)-443(wyrzek\\252)-444(p)1(rzym)-1(r)1(u\\273a)-56(j)1(\\241c)-444(o)-28(cz)-1(y)84(.)-443({)-444(Na)-443(gor\\241c)-444(zno)28(wu)]TJ -27.879 -13.549 Td[(id)1(z)-1(ie)-333(i)-333(s)-1(u)1(s)-1(ze)-334({)-334(d)1(o)-28(d)1(a\\252)-1(,)-333(b)-27(o)-333(w)-1(y)1(nosi\\252o)-334(si\\246)-334(sro)-27(dz)-1(e)-333(rozc)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ione.)]TJ 27.879 -13.549 Td[(P)28(okr)1(\\363tc)-1(e)-385(oz)-1(w)28(a\\252)-1(a)-385(si\\246)-386(i)-385(s)-1(ygn)1(atur)1(k)56(a)-386(na)-385(k)28(o\\261c)-1(iele,)-386(a)-385(nad)-385(l)1(ip)-28(ec)27(k)1(im)-1(i)-385(k)28(omin)1(am)-1(i)]TJ -27.879 -13.55 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(y)-333(si\\246)-334(z)-334(w)28(oln)1(a)-334(mo)-28(d)1(ra)28(w)27(e)-333(s)-1(\\252up)29(y)-333(dym\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-422(P)28(o)-28(d)1(jad)1(\\252)-1(b)29(y\\261)-423(se)-423(tera,)-422(gosp)-27(o)-28(dar)1(z)-1(u)1(,)-422(c)-1(o?)-422({)-422(przyci\\241)-28(gn)1(\\241\\252)-423(p)1(as)-1(a)-422({)-422(j)1(e)-1(n)1(o)-423(ci)-422(ju)1(\\273)]TJ\nET\nendstream\nendobj\n2142 0 obj <<\n/Type /Page\n/Contents 2143 0 R\n/Resources 2141 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2141 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2146 0 obj <<\n/Length 8647      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(672)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(matk)56(a)-334(d)1(w)27(o)-55(jak)28(\\363)28(w)-334(n)1(ie)-334(p)1(rz)-1(y)1(nies)-1(\\241,)-333(n)1(ie)-334({)-333(w)27(estc)27(hn)1(\\241\\252)-334(sm)27(u)1(tni)1(e)-1(.)]TJ 27.879 -13.549 Td[(I)-316(n)1(a)-316(p)-28(o)-27(dles)-1(k)1(ic)27(h)-315(rolac)28(h)-316(zaroi\\252o)-316(si\\246)-316(o)-28(d)-315(lu)1(dzi,)-316(sta)28(w)27(ali)1(,)-316(jak)-315(i)-316(on)1(,)-316(d)1(o)-316(rob)-27(ot)28(y)-316(na)]TJ -27.879 -13.549 Td[(co)-367(d)1(opiero)-366(nab)29(yt)28(yc)27(h)-366(ziem)-1(i)1(ac)27(h;)-366(d)1(o)-56(j)1(rza\\252)-367(S)1(tac)27(ha)-366(P)1(\\252)-1(oszk)28(\\246)-1(,)-366(orz\\241c)-1(ego)-366(w)-367(p)1(ar\\246)-367(t\\246gic)27(h)]TJ 0 -13.549 Td[(k)28(oni)1(.)]TJ 27.879 -13.549 Td[({)-333(M\\363)-56(j)-332(Je)-1(zu,)-333(ki)1(e)-1(d)1(y)-334(t)1(o)-334(d)1(as)-1(z)-334(c)28(ho)-28(\\242b)28(y)-333(jedn)1(e)-1(go)-333({)-333(p)-28(om)28(y\\261la\\252.)]TJ 0 -13.55 Td[(W)84(ac)27(hn)1(ik)-368(J)1(\\363z)-1(ef)-368(zw)27(ozi\\252)-368(k)56(amie)-1(n)1(ie)-368(na)-367(fun)1(dame)-1(n)29(ta)-368(c)27(h)1(a\\252up)28(y)84(,)-368(K)1(\\252)-1(\\241b)-367(ze)-369(syn)1(am)-1(i)]TJ -27.879 -13.549 Td[(ok)28(op)28(yw)28(a\\252)-273(r)1(o)27(w)28(em)-273(s)-1(w)28(o)-56(j)1(\\241)-273(ziem)-1(i\\246,)-272(a)-273(Gr)1(z)-1(ela,)-272(w)27(\\363)-55(jt\\363)28(w)-273(b)1(rat,)-272(pr)1(z)-1(y)-272(s)-1(am)28(ym)-273(k)1(rz)-1(y)1(z)-1(ie)-273(n)1(ade)]TJ 0 -13.549 Td[(dr)1(og\\241)-334(co\\261)-334(d)1(\\252ugo)-333(roz)-1(mierza\\252)-334(t)28(yk)56(\\241.)]TJ 27.879 -13.549 Td[({)-333(Miejsc)-1(e)-333(jakb)28(y)-333(wyb)1(rane)-333(p)-28(o)-27(d)-333(k)55(ar)1(c)-1(zm\\246)-334({)-334(zau)28(w)28(a\\273)-1(y)1(\\252)-334(S)1(z)-1(yme)-1(k)1(.)]TJ 0 -13.549 Td[(Gr)1(z)-1(ela)-246(oznacz)-1(y)1(w)-1(sz)-1(y)-245(k)28(o\\252k)56(am)-1(i)-245(wym)-1(i)1(e)-1(r)1(z)-1(on)28(y)-245(pl)1(ac)-247(p)1(rzys)-1(zed\\252)-246(z)-246(p)-27(oz)-1(d)1(ro)28(wie)-1(n)1(iem)-1(.)]TJ 0 -13.549 Td[({)-333(Ho,)-333(ho!)-333(rob)1(is)-1(z,)-333(widz\\246)-1(,)-333(za)-334(d)1(z)-1(i)1(e)-1(si\\246c)-1(iu)1(!)-333({)-334(p)-27(o)-28(d)1(z)-1(iw)-333(mia\\252)-334(w)-333(o)-28(c)-1(zac)27(h)1(.)]TJ 0 -13.55 Td[({)-353(A)-353(b)-27(o)-353(mi)-353(to)-353(n)1(ie)-353(p)-28(otr)1(z)-1(a?)-353(C\\363\\273)-354(t)1(o)-353(m)-1(am?)-353(Jedne)-353(p)-27(ortki)-352(a)-353(te)-353(go\\252)-1(e)-353(p)1(az)-1(u)1(ry!)-353({)]TJ -27.879 -13.549 Td[(mruk)1(n\\241\\252)-333(nie)-333(o)-28(dr)1(yw)27(a)-55(j\\241c)-334(r)1(\\241k)-333(o)-28(d)-333(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(ela)-381(p)-28(or)1(adzi\\252)-381(m)27(u)-381(to)-381(i)-381(o)28(w)28(o)-382(i)-381(wr)1(\\363)-28(c)-1(i)1(\\252)-382(d)1(o)-381(s)-1(w)28(o)-56(j)1(e)-1(go,)-381(a)-381(p)-27(o)-382(n)1(im)-381(z)-1(ac)27(h)1(o)-28(d)1(z)-1(i\\252y)-381(i)]TJ -27.879 -13.549 Td[(dr)1(ugie,)-310(kto)-310(z)-310(dobr)1(ym)-311(s\\252o)28(w)27(em)-1(,)-310(k)1(to)-310(na)-310(p)-27(og)-1(w)28(ar\\246,)-310(a)-310(kto)-310(jeno)-310(wyku)1(rzy\\242)-311(p)1(apierosa)-310(i)]TJ 0 -13.549 Td[(z\\246)-1(b)-27(\\363)28(w)-277(nasz)-1(cz)-1(erzy\\242,)-277(ale)-277(S)1(z)-1(y)1(m)-1(ek,)-276(o)-28(dp)-27(o)28(wiada\\252)-276(c)-1(oraz)-277(n)1(iec)-1(ierp)1(liwiej,)-276(\\273)-1(e)-277(j)1(u\\273)-277(w)-277(k)28(o\\253)1(c)-1(u)]TJ 0 -13.55 Td[(ostro)-333(krzykn)1(\\241\\252)-334(n)1(a)-334(P)1(rycz)-1(k)56(a:)]TJ 27.879 -13.549 Td[({)-333(Robi\\252b)28(y)1(\\261)-334(s)-1(w)28(o)-56(j)1(e)-334(i)-333(dr)1(ugim)-333(nie)-334(p)1(rze)-1(sz)-1(k)56(ad)1(z)-1(a\\252!)-333(\\221wi\\241t)1(ki)-333(s)-1(e)-334(j)1(uc)28(h)28(y)-333(robi)1(\\241!)]TJ 0 -13.549 Td[(I)-333(os)-1(ta\\252)-333(s)-1(am,)-333(b)-27(o)-334(go)-333(ju)1(\\273)-334(omijali)1(.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-454(p)-27(o)-28(dn)1(os)-1(i)1(\\252o)-454(s)-1(i\\246)-454(coraz)-454(wy\\273)-1(ej,)-453(wis)-1(i)1(a\\252)-1(o)-453(ju)1(\\273)-455(n)1(ad)-454(k)28(o\\261cio\\252e)-1(m,)-454(n)1(ie)-1(s\\252o)-454(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)-27(o)28(w)-1(strzymanie)-268(zalew)27(a)-55(j\\241c)-268(\\261w)-1(i)1(at)-268(\\261le)-1(p)1(i\\241c)-1(\\241)-267(jasno\\261c)-1(i)1(\\241)-268(i)-268(\\273arem,)-268(wiater)-268(si\\246)-268(b)28(y\\252)-267(k)55(a)-55(j\\261)]TJ 0 -13.55 Td[(zadzia\\252,)-333(\\273)-1(e)-333(ju\\273)-333(gor\\241c)-334(b)-27(ez)-334(pr)1(z)-1(es)-1(zk)28(o)-28(d)1(y)-334(ogar)1(nia\\252)-333(zie)-1(mi\\246)-333(rozm)-1(igotan)1(\\241)-333(przys\\252on\\241,)-333(w)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(j)-333(zb)-27(o\\273)-1(a)-333(p\\252a)28(wi\\252y)-333(s)-1(i\\246)-333(kieb)28(y)-333(w)-334(t)28(ym)-333(roz)-1(b)-27(e\\252tan)28(ym,)-333(c)-1(ic)28(h)28(u\\261kim)-333(w)-1(r)1(z)-1(\\241tk)1(u.)]TJ 27.879 -13.549 Td[({)-372(Mn)1(ie)-372(ta)-372(ryc)28(h\\252o)-372(n)1(ie)-372(s)-1(p)-27(\\246)-1(d)1(z)-1(i)1(s)-1(z)-372({)-372(rze)-1(k\\252)-372(j)1(akb)28(y)-371(prze)-1(ciw)-372(s\\252o\\253cu)-372(i)-372(d)1(o)-56(j)1(rza)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(Nastusi\\246)-333(z)-1(e)-333(\\261ni)1(adani)1(e)-1(m)-333(wysz)-1(ed\\252)-332(napr)1(z)-1(ec)-1(i)1(w)-1(,)-332(\\252ap)-27(c)-1(zywie)-333(z)-1(ab)1(iera)-56(j)1(\\241c)-333(s)-1(i)1(\\246)-334(d)1(o)-333(d)1(w)27(o)-55(ja-)]TJ 0 -13.549 Td[(k)28(\\363)28(w.)]TJ 27.879 -13.55 Td[(Nastusia)-333(jak)28(o\\261)-334(mark)28(otn)1(ie)-334(sp)-28(oziera\\252a)-333(p)-28(o)-333(p)-27(olac)27(h)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(s)-1(i\\246)-333(to)-334(co)-333(uro)-27(dzi)-334(n)1(a)-333(takic)27(h)-332(z)-1(d)1(z)-1(iar)1(ac)27(h)-333(i)-333(mokrad)1(\\252)-1(ac)28(h!)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystk)28(o)-333(s)-1(i\\246)-333(uro)-27(dz)-1(i)1(,)-333(obacz)-1(ysz)-1(,)-333(co)-333(i)-334(p)1(s)-1(zenic\\246)-334(mia\\252a)-334(b)-27(\\246dzie)-1(sz)-334(n)1(a)-334(p)1(lac)27(ki)1(.)]TJ 0 -13.549 Td[({)-333(C)-1(zek)55(a)-55(j)-333(tatk)56(a)-333(latk)56(a,)-334(j)1(ak)-333(k)28(ob)28(y\\252\\246)-334(wil)1(c)-1(y)-333(zjedz\\241.)]TJ 0 -13.549 Td[({)-409(Ni)1(e)-409(z)-1(j)1(e)-1(d)1(z)-1(\\241,)-408(Nas)-1(tu)1(\\261)-1(!)-408(Gr)1(on)28(t)-409(j)1(e)-1(st,)-408(to)-409(i)-408(\\252ac)-1(n)1(ie)-1(j)-408(p)1(rze)-1(cz)-1(ek)56(a\\242)-1(,)-408(dy\\242)-409(ca\\252e)-409(s)-1(ze)-1(\\261\\242)]TJ -27.879 -13.55 Td[(morg\\363)28(w)-334(n)1(as)-1(ze)-334({)-333(pra)28(wi\\252)-333(p)-28(o)-55(jeda)-55(j\\241c)-334(z)-333(p)-28(o\\261piec)27(h)1(e)-1(m.)]TJ 27.879 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)1(o)-334(ziem)-1(i)-333(p)-27(e)-1(wni)1(e)-334(ugr)1(yz)-1(i)1(e)-1(!)-333(A)-333(jak)-333(to)-333(pr)1(z)-1(ez)-1(i)1(m)27(uj)1(e)-1(m)28(y?)]TJ 0 -13.549 Td[({)-334(M)1(o)-56(j)1(a)-334(w)-334(t)28(ym)-334(g\\252o)28(w)27(a,)-333(nie)-334(tu)1(rbu)1(j)-333(s)-1(i\\246!)-334(O)-333(ws)-1(zy\\242kim)-334(delib)-27(ero)28(w)27(a\\252em)-334(i)-334(ws)-1(zy\\242-)]TJ -27.879 -13.549 Td[(kiem)27(u)-353(n)1(a)-56(jd)1(\\246)-354(z)-1(ar)1(ad\\246!)-354({)-354(O)1(dsun)1(\\241\\252)-354(pu)1(s)-1(te)-354(d)1(w)27(o)-55(jaki,)-353(pr)1(z)-1(ec)-1(i)1(\\241)-28(gn\\241\\252)-354(k)28(o\\261cie)-354(i)-354(p)-27(o)28(w)-1(i)1(\\363)-28(d\\252)-354(j)1(\\241)]TJ 0 -13.549 Td[(p)-27(ok)55(azuj)1(\\241c)-334(i)-333(t\\252umacz)-1(\\241c.)]TJ 27.879 -13.549 Td[({)-333(W)-333(t)27(y)1(m)-334(mie)-1(j)1(s)-1(cu)-333(stanie)-333(c)27(ha\\252u)1(pa!)-333({)-333(z)-1(a)28(w)28(o\\252)-1(a\\252)-333(rad)1(o\\261)-1(n)1(ie)-1(.)]TJ 0 -13.55 Td[({)-333(Stan)1(ie)-1(!)-333(Z)-333(b\\252ota)-333(j\\241)-333(p)-27(e)-1(wni)1(e)-334(ul)1(e)-1(p)1(is)-1(z)-333(kiej)-333(jask)28(\\363\\252k)55(a!)]TJ 0 -13.549 Td[({)-312(A)-312(z)-313(dr)1(z)-1(ew)27(a)-312(i)-312(ga\\252\\246)-1(zi,)-312(i)-312(z)-312(glin)28(y)84(,)-312(i)-312(z)-313(p)1(ias)-1(ku)1(,)-312(i)-312(z)-313(cz)-1(ego)-312(s)-1(i\\246)-312(jeno)-312(da,)-312(b)-27(ele)-313(t)28(ylk)28(o)]TJ -27.879 -13.549 Td[(w)-334(n)1(iej)-333(pr)1(z)-1(etrzym)-1(a\\242)-333(z)-334(jak)1(i\\261)-334(ro)-27(c)-1(ze)-1(k,)-333(p)-27(\\363ki)-333(si\\246)-334(n)1(ie)-334(ws)-1(p)-27(omo\\273)-1(em)27(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Sieln)28(y)-333(d)1(w)27(\\363r)1(,)-334(wid)1(z)-1(\\246,)-333(z)-1(am)28(y\\261las)-1(z!)-333({)-334(w)28(ark)1(n\\246\\252)-1(a)-333(n)1(ie)-1(c)28(h\\246tnie.)]TJ 0 -13.549 Td[({)-333(W)83(ol\\246)-333(w)-334(b)1(udzie)-334(n)1(i\\271li)-333(u)-333(k)28(ogo)-334(n)1(a)-333(k)28(om)-1(or)1(n)28(ym.)]TJ 0 -13.55 Td[({)-466(M)1(\\363)27(wi\\252a)-465(P\\252os)-1(zk)28(o)28(w)27(a,)-465(\\273)-1(eb)28(y)-465(s)-1(i\\246)-466(d)1(o)-466(nic)28(h)-465(s)-1(p)1(ro)28(w)27(ad)1(z)-1(i\\242)-466(n)1(a)-466(pr)1(z)-1(ez)-1(i)1(m)-1(o)28(w)28(anie,)-466(i)]TJ -27.879 -13.549 Td[(sam)-1(a)-333(s)-1(i)1(\\246)-334(o)-28(c)27(h)1(\\014ar)1(o)27(w)28(a\\252a)-334(d)1(a\\242)-334(n)1(am)-334(izb)-28(\\246,)-333(z)-334(dob)1(rego)-334(serc)-1(a.)]TJ\nET\nendstream\nendobj\n2145 0 obj <<\n/Type /Page\n/Contents 2146 0 R\n/Resources 2144 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2131 0 R\n>> endobj\n2144 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2149 0 obj <<\n/Length 9009      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(673)]TJ -330.353 -35.866 Td[({)-301(Z)-302(d)1(obr)1(e)-1(go)-301(se)-1(rca.)-301(A)-301(ju)1(\\261)-1(ci,)-301(p)-27(e)-1(wni)1(kiem)-302(c)27(h)1(c)-1(e)-301(z)-1(r)1(obi\\242)-301(na)-301(z)-1(\\252o\\261\\242)-302(matce)-1(,)-301(d)1(y\\242)-302(si\\246)]TJ -27.879 -13.549 Td[(\\273r\\241)-391(z)-1(e)-392(sob\\241)-391(kiej)-391(te)-392(p)1(s)-1(y)84(.)-391(T)83(orb)1(a)-392(zap)-28(o)28(wietrzona,)-391(ni)1(e)-392(p)-27(otrze)-1(b)1(uj\\246)-391(jej)-391(dob)1(ro\\261)-1(ci.)-391(Nie)]TJ 0 -13.549 Td[(b)-27(\\363)-56(j)-256(si\\246,)-256(Nas)-1(tu)1(\\261)-1(,)-256(wyry)1(c)27(h)28(tu)1(j\\246)-257(ci)-256(tak)56(\\241)-256(c)27(ha\\252u)1(p)-28(\\246,)-256(\\273)-1(e)-256(i)-256(okno)-256(b)-27(\\246)-1(d)1(z)-1(ie,)-256(i)-256(k)28(om)-1(i)1(n,)-256(i)-256(ws)-1(zy\\242k)28(o,)]TJ 0 -13.549 Td[(co)-360(ino)-360(p)-27(otrza.)-360(Ob)1(ac)-1(zysz)-1(,)-360(\\273e)-360(jak)-360(amen)28(t)-360(w)-360(pacie)-1(r)1(z)-1(u)1(,)-360(tak)-360(za)-360(trzy)-360(n)1(ie)-1(d)1(z)-1(i)1(e)-1(le)-360(stanie)]TJ 0 -13.549 Td[(goto)28(w)27(a,)-333(\\273e)-1(b)29(ym)-334(se)-334(mia\\252)-334(k)1(ulasy)-333(urob)1(i\\242,)-333(a)-334(stanie.)]TJ 27.879 -13.55 Td[({)-333(Hale)-1(,)-333(sam)-334(to)-333(p)-27(e)-1(wni)1(e)-334(p)-28(osta)28(wis)-1(z!)]TJ 0 -13.549 Td[({)-333(Mateusz)-334(mi)-334(p)-27(omo\\273)-1(e,)-333(przy)28(obi)1(e)-1(ca\\252!)]TJ 0 -13.549 Td[({)-333(Nie)-334(d)1(a\\252)-1(ab)29(y)-333(to)-334(matk)56(a)-334(j)1(akiego)-333(w)-1(sp)-27(om)-1(o\\273e)-1(n)1(ia?)-334({)-333(p)-27(o)27(wiedzia\\252a)-333(l\\246kliwie.)]TJ 0 -13.549 Td[({)-237(\\233e)-1(b)28(y)1(m)-238(s)-1(k)56(ap)1(ia\\252,)-237(a)-238(p)1(rosi\\252)-238(i)1(c)27(h)-237(n)1(ie)-238(b)-27(\\246)-1(d)1(\\246)-1(!)-237({)-237(wykrzykn)1(\\241\\252,)-237(ale)-238(widz\\241c,)-238(co)-237(jes)-1(zc)-1(ze)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej)-302(p)-27(osm)27(ut)1(nia\\252a,)-302(wielce)-303(si\\246)-302(s)-1(f)1(raso)27(w)28(a\\252)-302(i)-302(ki)1(e)-1(j)-301(przysiedli)-302(p)-27(o)-28(d)-301(\\273)-1(y)1(te)-1(m,)-302(j)1(\\241\\252)-302(j\\246kliwie)]TJ 0 -13.549 Td[(t\\252umacz)-1(y\\242:)]TJ 27.879 -13.55 Td[({)-333(A)-334(mog\\246)-334(to,)-333(Nastu\\261?)-334(Jak)1(\\273)-1(e,)-333(w)-1(y)1(gna\\252a)-333(m)-1(e)-334(i)-333(n)1(a)-334(ciebie)-333(p)-28(oms)-1(t)1(uje.)]TJ 0 -13.549 Td[({)-355(M\\363)-56(j)-354(B)-1(o\\273e)-1(,)-355(\\273e)-1(b)29(y)-355(c)27(ho)-27(\\242)-356(jak)56(\\241)-355(kro)28(win)1(\\246)-356(dal)1(i,)-355(a)-356(t)1(o)-356(j)1(ak)-355(te)-356(n)1(a)-56(jgor)1(s)-1(ze)-356(d)1(z)-1(iad)1(aki,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-334(n)1(ic)-1(ze)-1(go,)-333(j)1(a\\273)-1(e)-334(strac)28(h)-333(p)-27(om)27(y\\261le\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\246dzie)-334(i)-333(kr)1(o)28(w)27(a,)-333(Nas)-1(t)1(u\\261,)-334(b)-27(\\246dzie)-1(,)-333(j)1(u\\273e)-1(m)-333(s)-1(e)-334(j)1(e)-1(d)1(n\\241)-333(up)1(atrzy\\252.)]TJ 0 -13.549 Td[({)-325(Bo)-325(to)-325(ani)-324(c)27(ha\\252u)1(p)28(y)84(,)-325(ani)-324(b)28(ydl)1(\\241tk)56(a,)-325(ani)-324(nic!)-325({)-325(zap\\252ak)56(a\\252a)-325(pr)1(z)-1(ytu)1(la)-55(j\\241c)-325(s)-1(i\\246)-325(do)]TJ -27.879 -13.55 Td[(ni)1(e)-1(go,)-305(ob)-27(cie)-1(r)1(a\\252)-306(j)1(e)-1(j)-304(o)-28(cz)-1(y)84(,)-305(g\\252as)-1(k)56(a\\252)-305(p)-28(o)-305(g\\252o)28(wini)1(e)-1(,)-305(al)1(e)-306(\\273e)-306(i)-305(j)1(e)-1(m)28(u)-305(rob)1(i\\252o)-305(s)-1(i\\246)-305(\\273a\\252)-1(o\\261ni)1(e)-1(,)-305(co)]TJ 0 -13.549 Td[(dziw)-375(s)-1(am)-375(ni)1(e)-376(b)-27(e)-1(kn)1(\\241\\252,)-375(to)-375(p)-28(or)1(w)27(a\\252)-375(si\\246)-376(n)1(a)-375(nogi,)-375(c)28(h)28(yci\\252)-375(z)-1(a)-375(\\252opat)1(\\246)-376(i)-375(kr)1(z)-1(yk)1(n\\241\\252)-375(jakb)29(y)]TJ 0 -13.549 Td[(sro)-28(d)1(z)-1(e)-334(zgniew)28(an)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363)-55(j)-333(s)-1(i)1(\\246)-334(Boga,)-334(k)28(ob)1(ieto,)-333(t)27(y)1(lac)27(h)1(na)-333(rob)-27(ot)28(y)83(,)-333(a)-333(t)28(y)-334(j)1(e)-1(n)1(o)-333(w)-1(y)1(rz)-1(ek)56(as)-1(z?)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(s\\252a)-334(si\\246,)-334(p)-27(e\\252)-1(n)1(a)-333(c)-1(i\\246\\273)-1(k)1(ic)27(h)-333(tu)1(rb)1(ac)-1(j)1(i)-333(a)-334(tr)1(os)-1(k)-333(ni)1(e)-1(ma\\252yc)27(h)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(je\\261li)-333(z)-334(g\\252o)-28(du)-333(n)1(ie)-334(p)-27(omrze)-1(m,)-333(to)-334(n)1(as)-334(wilk)1(i)-334(zjedz\\241)-333(na)-333(t)28(ym)-334(wywieis)-1(k)1(u.)]TJ 0 -13.549 Td[(Roz)-1(gn)1(iew)27(a\\252)-333(s)-1(i)1(\\246)-334(na)-333(dob)1(re)-334(i)-333(b)1(ie)-1(r)1(\\241c)-334(s)-1(i)1(\\246)-334(do)-333(rob)-27(ot)28(y)-333(rze)-1(k\\252)-333(t)28(w)27(ar)1(do:)]TJ 0 -13.549 Td[({)-333(Masz)-334(bu)1(c)-1(ze)-1(\\242)-333(i)-334(p)1(le\\261)-1(\\242)-334(b)-27(ele)-334(co,)-334(t)1(o)-334(lepi)1(e)-1(j)-333(osta\\253)-333(se)-334(w)-334(c)28(ha\\252up)1(ie.)]TJ 0 -13.549 Td[(Chcia\\252a)-333(s)-1(i\\246)-333(przygarn)1(\\241\\242)-334(do)-333(n)1(ie)-1(go)-333(i)-333(ud)1(obr)1(uc)27(h)1(a\\242)-1(,)-333(ale)-333(j\\241)-333(o)-28(dep)-27(c)27(hn)1(\\241\\252.)]TJ 0 -13.549 Td[({)-353(Hale,)-353(p)-27(ora)-353(tera)-353(n)1(a)-353(jamory)84(,)-353(j)1(u\\261c)-1(i!)-352({)-353(da\\252)-353(si\\246)-353(jednak)-352(ug\\252ask)55(a\\242,)-353(c)28(ho)-28(\\242)-353(s)-1(i)1(\\246)-354(ta)]TJ -27.879 -13.55 Td[(jesz)-1(cz)-1(e)-334(sierdzi\\252)-333(na)-333(bab)1(ie)-334(gad)1(anie,)-333(\\273)-1(e)-333(o)-28(des)-1(z\\252a)-334(sp)-27(ok)28(o)-56(jn)1(a)-333(i)-334(n)1(a)28(w)27(et)-333(w)27(es)-1(o\\252a.)]TJ 27.879 -13.549 Td[({)-500(Lob)-27(oga!)-499(Dy\\242)-500(i)-500(k)28(ob)1(ieta)-500(cz)-1(\\252o)28(wie)-1(k)1(,)-500(a)-499(p)-28(o)-499(c)-1(z\\252o)27(wiecz)-1(em)27(u)-499(ni)1(e)-501(wyr)1(oz)-1(u)1(m)-1(i)1(e)-1(.)]TJ -27.879 -13.549 Td[(P\\252acz)-1(e)-371(jeno)-371(a)-371(lamen)28(t)28(y)83(,)-371(samo)-371(z)-372(ni)1(e)-1(b)1(a)-371(nie)-371(s)-1(p)1(adn)1(ie)-1(,)-371(j)1(ak)-371(si\\246)-372(ku)1(lasam)-1(i)-370(nie)-371(w)-1(y)1(robi)1(.)]TJ 0 -13.549 Td[(Kieb)28(y)-333(te)-334(d)1(z)-1(i)1(e)-1(ci,)-333(to)-333(\\261)-1(miec)27(h,)-333(to)-333(p\\252acz)-1(,)-333(to)-333(z\\252)-1(o\\261cie)-334(i)-333(wyrze)-1(k)56(an)1(ia!)-333(Lob)-28(oga!)]TJ 27.879 -13.549 Td[(Mamrota\\252)-311(przyp)1(ina)-55(j\\241c)-312(si\\246)-312(do)-311(rob)-27(ot)28(y)83(,)-311(\\273)-1(e)-312(wn)1(e)-1(t)-311(z)-1(ap)-27(omnia\\252)-311(o)-312(ca\\252)-1(y)1(m)-312(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[(I)-340(j)1(u\\273)-340(t)1(ak)-340(p)1(raco)27(w)28(a\\252)-340(d)1(z)-1(i)1(e)-1(\\253)-339(w)-340(d)1(z)-1(i)1(e)-1(\\253)1(,)-340(o)-339(pi)1(e)-1(rwsz)-1(y)1(m)-340(\\261)-1(wicie)-340(si\\246)-340(zryw)28(a\\252)-340(i)-339(wraca\\252)]TJ -27.879 -13.549 Td[(p)-27(\\363\\271)-1(n)28(y)1(m)-314(wie)-1(czore)-1(m,)-313(\\273e)-314(c)-1(z\\246)-1(sto)-313(g\\246)-1(b)29(y)-314(n)1(ie)-314(ozw)27(ar)1(\\252)-314(d)1(o)-314(n)1(ik)28(ogo)-313(prze)-1(z)-313(c)-1(a\\252y)-313(dzie\\253,)-313(j)1(ad\\252o)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nosi\\252a)-393(m)27(u)-392(T)83(e)-1(r)1(e)-1(sk)55(a)-393(al)1(b)-28(o)-393(k)1(to)-393(dr)1(ugi,)-393(gd)1(y\\273)-393(Nas)-1(tu)1(s)-1(i)1(a)-393(o)-28(dr)1(abia\\252a)-393(p)1(rz)-1(y)-392(ksi\\246)-1(\\273yc)27(h)]TJ 0 -13.549 Td[(zie)-1(mni)1(ak)55(ac)28(h.)]TJ 27.879 -13.549 Td[(Zrazu)-360(z)-1(agl)1(\\241da\\252)-361(d)1(o)-361(n)1(iego)-361(ten)-360(i)-360(\\363)27(w,)-360(ale)-361(\\273e)-361(ni)1(e)-1(rad)-360(b)29(y\\252)-361(p)-27(ogw)27(ar)1(om)-1(,)-360(to)-360(jeno)-360(z)]TJ -27.879 -13.549 Td[(dal)1(a)-334(p)-27(ogl\\241d)1(ali)-333(dziwuj)1(\\241c)-334(s)-1(i)1(\\246)-334(jego)-334(n)1(ies)-1(tr)1(ud)1(z)-1(onej)-333(p)1(rac)-1(y)84(.)]TJ 27.879 -13.55 Td[({)-333(Kw)27(ar)1(da)-333(ju)1(c)27(h)1(a)-1(!)-333(K)1(to)-334(b)29(y)-334(si\\246)-334(t)1(o)-334(b)28(y)1(\\252)-334(sp)-28(o)-27(dzia\\252)-334({)-333(mruk)1(n\\241\\252)-333(K\\252\\241b.)]TJ 0 -13.549 Td[({)-452(A)-451(b)-28(o)-451(to)-452(n)1(ie)-452(Dom)-1(i)1(nik)28(o)28(w)28(e)-453(n)1(as)-1(i)1(e)-1(n)1(ie)-1(!)-451({)-452(wykr)1(z)-1(y)1(kn\\241\\252)-452(ze)-452(\\261)-1(miec)27(h)1(e)-1(m)-452(ktosik)]TJ -27.879 -13.549 Td[(dr)1(ugi,)-333(al)1(e)-334(Grze)-1(l)1(a,)-333(kt\\363ren)-333(go)-334(o)-27(d)-333(s)-1(amego)-334(p)-27(o)-28(cz)-1(\\241tk)1(u)-333(pil)1(nie)-334(ob)1(s)-1(erw)28(o)28(w)27(a\\252,)-333(rze)-1(k)1(\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(\\273e)-334(h)1(a)-1(r)1(uj)1(e)-334(kiej)-333(w)28(\\363\\252)-1(,)-333(al)1(e)-334(trza)-334(b)29(y)-333(m)27(u)-333(\\271dzie)-1(b)1(k)28(o)-334(u)1(l\\273y\\242)-1(.)]TJ 0 -13.549 Td[({)-292(Ju\\261c)-1(i)1(,)-292(s)-1(am)-292(nie)-292(urad)1(z)-1(i)1(,)-292(trza)-293(b)29(y)83(,)-292(w)28(art)-292(te)-1(go!)-292({)-292(p)1(rzyt)28(w)-1(i)1(e)-1(r)1(dz)-1(al)1(i,)-292(jeno)-292(co)-293(n)1(ikto)]TJ -27.879 -13.55 Td[(si\\246)-334(ni)1(e)-334(p)-27(okw)27(ap)1(i\\252)-334(n)1(a)-333(pierws)-1(zego,)-334(wycze)-1(ku)1(j\\241c,)-333(ja\\273e)-334(s)-1(am)-333(p)-28(op)1(rosi.)]TJ 27.879 -13.549 Td[(Ale)-287(S)1(z)-1(y)1(m)-1(ek)-287(n)1(ie)-287(p)1(rosi\\252,)-287(an)1(i)-286(m)27(u)-286(to)-286(w)-287(g\\252o)28(w)-1(i)1(e)-287(p)-28(osta\\252o,)-286(w)-1(i)1(\\246)-1(c)-287(te\\273)-287(kt\\363r)1(e)-1(go\\261)-287(d)1(nia)]TJ\nET\nendstream\nendobj\n2148 0 obj <<\n/Type /Page\n/Contents 2149 0 R\n/Resources 2147 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2147 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2153 0 obj <<\n/Length 9089      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(674)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(sro)-28(d)1(z)-1(e)-334(si\\246)-334(zdu)1(m)-1(i)1(a\\252)-334(d)1(o)-56(jr)1(z)-1(a)28(ws)-1(zy)-333(jak)1(i\\261)-334(w)28(\\363z)-334(jad)1(\\241c)-1(y)-333(ku)-333(n)1(iem)27(u.)]TJ 27.879 -13.549 Td[(J\\246drzyc)28(h)-333(p)-28(o)28(w)28(oz)-1(i\\252)-333(i)-333(ju)1(\\273)-334(z)-334(d)1(ala)-334(k)1(rzyc)-1(za\\252)-334(w)28(es)-1(o\\252o:)]TJ 0 -13.549 Td[({)-333(P)28(ok)56(a\\273)-1(,)-333(k)56(a)-56(j)-333(mam)-334(p)-27(o)-28(d)1(oryw)28(a\\242)-1(!)-333(Dy)1(\\242)-334(to)-333(ja!)]TJ 0 -13.549 Td[(Szyme)-1(k)-333(d)1(opiero)-333(p)-27(o)-334(d)1(\\252ugiej)-333(c)27(h)28(wil)1(i)-333(u)28(wie)-1(r)1(z)-1(y\\252)-333(o)-28(cz)-1(om.)]TJ 0 -13.549 Td[({)-333(\\233e)-1(\\261)-334(si\\246)-334(to)-333(w)28(a\\273)-1(y\\252,)-333(n)1(o,)-333(s)-1(pi)1(e)-1(r)1(\\241)-334(ci\\246,)-334(c)28(h)28(ud)1(z)-1(i)1(aku,)-333(ob)1(ac)-1(zysz)-1(.)]TJ 0 -13.55 Td[({)-333(A)-334(n)1(iec)27(h)28(ta!)-333(a)-333(jak)-333(me)-334(spier\\241,)-333(to)-333(ju)1(\\273)-334(c)-1(a\\252ki)1(e)-1(m)-333(do)-333(c)-1(iebi)1(e)-334(pr)1(z)-1(ystan\\246.)]TJ 0 -13.549 Td[({)-333(I)-334(sam)-1(e\\261)-334(to)-333(um)28(y\\261li\\252)-333(m)-1(i)-333(p)-27(om)-1(aga\\242?)]TJ 0 -13.549 Td[({)-341(A)-341(sam)-1(!)-340(Da)28(w)-1(n)1(o)-341(c)27(h)1(c)-1(i)1(a\\252)-1(em,)-341(jenom)-341(si\\246)-341(b)-28(o)-55(ja\\252,)-341(p)1(iln)1(o)27(w)28(ali)-340(m)-1(e)-341(i)-341(zrazu)-341(Jagu)1(s)-1(ia)]TJ -27.879 -13.549 Td[(te\\273)-410(o)-28(dr)1(adza\\252a)-410({)-409(rozp)-28(o)28(wiad)1(a\\252)-410(sz)-1(erok)28(o,)-409(bier\\241c)-409(s)-1(i\\246)-410(d)1(o)-410(r)1(ob)-28(ot)28(y)84(,)-409(\\273)-1(e)-410(j)1(u\\273)-410(r)1(az)-1(em)-410(oral)1(i)]TJ 0 -13.549 Td[(ca\\252)-1(y)-333(d)1(z)-1(i)1(e)-1(\\253)1(,)-334(a)-333(o)-28(d)1(je\\273)-1(d)1(\\273)-1(a)-55(j\\241c)-334(ob)1(iec)-1(a\\252)-333(przyj)1(e)-1(c)28(ha\\242)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(i)-334(n)1(az)-1(a)-55(ju)1(trz.)]TJ 27.879 -13.549 Td[(I)-269(p)1(rzyjec)27(h)1(a\\252)-269(r\\363)28(wno)-268(z)-1(e)-269(s\\252o\\253ce)-1(m,)-269(a)-268(Szyme)-1(k)-268(z)-1(ar)1(az)-269(obacz)-1(y\\252)-268(jego)-269(p)-27(oliki)-268(\\271dzie)-1(b)1(-)]TJ -27.879 -13.55 Td[(k)28(o)-333(p)-28(osin)1(ione,)-333(ale)-334(sp)28(yta\\252)-333(s)-1(i\\246)-333(dop)1(ie)-1(r)1(o)-334(p)1(rze)-1(d)-333(wiec)-1(zorem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Sil)1(ne)-334(p)1(ie)-1(k)1(\\252o)-334(ci)-333(z)-1(r)1(obili)1(?)]TJ 0 -13.549 Td[({)-450(I..)1(.)-450(\\261le)-1(p)1(i,)-449(to)-450(im)-450(n)1(ie)-1(\\252acno)-449(m)-1(e)-450(zm)-1(aca\\242)-1(,)-449(a)-450(sam)-450(przec)-1(iek)-450(p)-27(o)-28(d)-449(pazur)1(y)-450(n)1(ie)]TJ -27.879 -13.549 Td[(wlez)-1(\\246)-334({)-333(p)-27(o)27(wiad)1(a\\252)-334(j)1(ak)28(o\\261)-334(mark)28(otn)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(Jagn)1(a)-333(c)-1(i\\246)-333(nie)-334(wyd)1(a\\252a?)]TJ 0 -13.55 Td[({)-333(Jagusia)-333(przec)-1(iek)-333(nie)-333(s)-1(toi)-333(n)1(am)-334(na)-333(zdrad)1(z)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-328(P)28(\\363ki)-328(jej)-328(cos)-1(ik)-328(d)1(o)-329(\\252b)1(a)-329(n)1(ie)-329(strze)-1(l)1(i,)-328(kto)-328(to)-329(wyr)1(oz)-1(u)1(m)-1(i)1(e)-329(k)28(obiet)28(y!)-328({)-328(w)27(es)-1(tc)28(hn)1(\\241\\252)]TJ -27.879 -13.549 Td[(\\273a\\252)-1(o\\261ni)1(e)-334(i)-333(wz)-1(b)1(roni\\252)-333(m)27(u)-332(w)-1(i)1(\\246)-1(ce)-1(j)-333(p)1(rzyje\\273)-1(d)1(\\273)-1(a\\242.)]TJ 27.879 -13.549 Td[({)-333(Sam)-334(se)-334(j)1(u\\273)-334(d)1(am)-334(rad)1(\\246)-1(,)-333(p)-27(omo\\273)-1(es)-1(z)-334(mi)-333(p)-27(\\363\\271)-1(n)1(ie)-1(j)-332(przy)-333(s)-1(i)1(e)-1(w)28(ac)27(h.)]TJ 0 -13.549 Td[(I)-269(z)-1(n)1(o)27(wu)-269(osta\\252)-270(sam,)-270(i)-269(r)1(obi\\252)-269(niestrud)1(z)-1(eni)1(e)-270(kiej)-269(ten)-269(k)28(o\\253)-269(w)-270(kieracie,)-269(nie)-270(b)1(ac)-1(z\\241c)]TJ -27.879 -13.55 Td[(na)-387(u)1(tru)1(dze)-1(n)1(ie)-387(ni)-387(n)1(a)-387(\\273)-1(ar)1(,)-387(dn)1(ie)-387(b)-28(o)28(wiem)-388(sz)-1(\\252y)-386(takie)-387(gor\\241ce)-1(,)-387(r)1(oz)-1(p)1(ra\\273one)-387(a)-387(du)1(s)-1(zne,)]TJ 0 -13.549 Td[(\\273e)-328(ziem)-1(i)1(a)-327(p)-28(\\246k)56(a\\252a,)-327(w)28(o)-28(dy)-326(wys)-1(y)1(c)27(ha\\252y)84(,)-327(tr)1(a)27(wy)-326(\\273)-1(\\363\\252k\\252y)84(,)-327(a)-327(zb)-27(o\\273)-1(a)-327(sta\\252y)-327(l)1(e)-1(d)1(w)-1(i)1(e)-328(j)1(u\\273)-327(\\273yw)27(e)]TJ 0 -13.549 Td[(w)-340(o)28(w)27(ej)-339(piekieln)1(e)-1(j)-339(p)-27(o\\273)-1(o)-28(d)1(z)-1(e,)-340(p)-27(ola)-339(robi)1(\\252y)-340(si\\246)-340(pu)1(s)-1(te)-340(i)-339(g\\252uc)27(h)1(e)-1(,)-339(gdy)1(\\273)-341(n)1(ie)-340(sp)-28(os\\363b)-339(b)28(y\\252o)]TJ 0 -13.549 Td[(wytrzyma\\242)-428(przy)-427(rob)-27(o)-28(c)-1(i)1(e)-1(,)-427(prosto)-428(\\273ywy)-428(ogi)1(e)-1(\\253)-427(la\\252)-428(si\\246)-428(z)-428(nieba)-427(i)-428(s\\252o\\253ce)-428(w)-1(y)1(\\273)-1(era\\252o)]TJ 0 -13.549 Td[(\\261le)-1(p)1(ie.)-314(Zbiela\\252e)-1(,)-313(m)-1(\\246tne)-314(nieb)-27(o)-314(w)-1(i)1(s)-1(ia\\252o)-314(ki)1(e)-1(b)28(y)-313(ta)-314(ognista,)-314(rozdr)1(gana)-314(p)1(\\252)-1(ac)28(h)28(ta,)-314(ob)1(tu-)]TJ 0 -13.55 Td[(la)-55(j\\241ca)-388(ws)-1(zystk)56(\\241)-388(z)-1(i)1(e)-1(mi\\246)-388(tak)56(\\241)-388(spiek)56(\\241,)-388(\\273e)-388(ni)-387(wiate)-1(r)-387(si\\246)-388(p)-28(or)1(usz)-1(y)1(\\252)-1(,)-387(ni)-387(zaruc)28(ha\\252y)-387(s)-1(i\\246)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(a,)-341(n)1(i)-341(ptak)-341(z)-1(a\\261pi)1(e)-1(w)28(a\\252)-342(leb)-27(o)-342(g\\252os)-342(l)1(udzki)-341(si\\246)-342(k)56(a)-56(j)-341(ze)-1(r)1(w)27(a\\252,)-341(a)-342(co)-341(dni)1(a)-342(j)1(e)-1(d)1(nak)28(o)-341(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(c)28(ho)-28(d)1(u)-333(na)-333(zac)27(h\\363)-27(d)-333(w)27(\\246dro)28(w)28(a\\252o)-334(s\\252o\\253ce)-334(sie)-1(j)1(\\241c)-334(ni)1(e)-1(u)1(b\\252agani)1(e)-334(ogie\\253)-333(i)-333(p)-28(osuc)28(h\\246.)]TJ 27.879 -13.549 Td[(A)-345(i)-344(Szyme)-1(k)-345(co)-345(d)1(nia)-344(jednak)28(o)-344(s)-1(ta)28(w)28(a\\252)-345(do)-345(r)1(ob)-28(ot)28(y)84(,)-345(n)1(ie)-345(da)-56(j)1(\\241c)-345(s)-1(i\\246)-345(sp)-28(\\246dzi\\242)-345(up)1(a-)]TJ -27.879 -13.549 Td[(\\252om,)-346(\\273)-1(e)-346(na)28(w)28(e)-1(t)-346(j)1(u\\273)-346(no)-27(c)-1(e)-346(przes)-1(yp)1(ia\\252)-346(na)-346(p)-27(olu)1(,)-346(b)-27(e)-1(le)-346(jeno)-346(czas)-1(u)-345(nie)-346(m)-1(i)1(tr\\246\\273)-1(y\\242,)-346(a\\273)-346(go)]TJ 0 -13.55 Td[(Mateusz)-334(h)1(am)-1(o)28(w)28(a\\252)-334(w)-333(onej)-333(z)-1(a)-55(jad)1(\\252)-1(o\\261ci,)-333(ale)-334(m)28(u)-333(rze)-1(k\\252)-333(kr\\363tk)28(o:)]TJ 27.879 -13.549 Td[({)-333(W)-333(niedziel\\246)-334(se)-334(o)-28(dp)-27(o)-28(cz)-1(n)1(\\246)-1(!)]TJ 0 -13.549 Td[(Jak)28(o\\273)-317(w)-317(s)-1(ob)-27(ot\\246)-317(w)-1(i)1(e)-1(cz)-1(or)1(e)-1(m)-317(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-317(do)-317(c)28(ha\\252up)29(y)83(,)-317(al)1(e)-318(tak)-316(pr)1(z)-1(em)-1(or)1(do)28(w)27(an)29(y)83(,)]TJ -27.879 -13.549 Td[(i\\273)-451(zas)-1(n)1(\\241\\252)-451(p)1(rz)-1(y)-450(mis)-1(ce,)-451(a)-450(naza)-56(j)1(utrz)-451(spa\\252)-450(pra)28(wie)-451(ca\\252y)-451(d)1(z)-1(i)1(e)-1(\\253,)-450(b)-27(o)-451(d)1(opiero)-450(na)-450(o)-28(d-)]TJ 0 -13.549 Td[(wiec)-1(ze)-1(r)1(z)-1(u)-387(zwl\\363k\\252)-387(si\\246)-388(b)29(y\\252)-387(z)-388(b)1(ar\\252ogu)-387(i)-387(p)1(rzybr)1(a)28(w)-1(sz)-1(y)-386(s)-1(i\\246)-387(o)-28(d)1(\\261)-1(wi\\246tnie)-387(z)-1(asiad)1(\\252)-387(prze)-1(d)]TJ 0 -13.549 Td[(k)28(opi)1(as)-1(t)28(ymi)-254(mic)27(h)1(am)-1(i)1(;)-254(c)27(ho)-27(dzi\\252y)-254(te)-1(\\273)-254(k)28(ole)-255(n)1(ie)-1(go)-254(k)28(ob)1(ie)-1(t)28(y)-254(k)1(ie)-1(b)29(y)-254(k)28(ole)-255(tej)-254(w)28(a\\273)-1(n)1(e)-1(j)-254(osob)28(y)84(,)]TJ 0 -13.55 Td[(cz)-1(\\246s)-1(to)-365(d)1(ok\\252ada)-55(j\\241c)-366(i)-365(b)1(ac)-1(z\\241c)-366(n)1(a)-366(k)56(a\\273de)-365(s)-1(ki)1(nienie,)-365(on)-365(za\\261)-1(,)-365(n)1(a\\252o\\273)-1(ywsz)-1(y)-365(si\\246)-365(do)-365(s)-1(y)1(ta,)]TJ 0 -13.549 Td[(pasa)-333(p)-28(op)1(u\\261c)-1(i)1(\\252)-1(,)-333(k)28(o\\261c)-1(i)-333(r)1(oz)-1(p)1(ros)-1(t)1(o)27(w)28(a\\252)-334(i)-333(h)29(ukn)1(\\241\\252)-334(w)28(e)-1(so\\252o:)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\363g)-333(zap\\252a\\242)-1(,)-333(matk)28(o!)-333(A)-333(te)-1(r)1(a)-334(c)28(ho)-28(d)1(\\271)-1(ma)-333(s)-1(i\\246)-333(\\271)-1(d)1(z)-1(iebk)28(o)-333(p)-27(o)27(w)28(e)-1(seli\\242!)]TJ 0 -13.549 Td[(I)-333(rusz)-1(y)1(\\252)-334(z)-334(Nastu)1(s)-1(i\\241)-333(do)-333(k)56(arcz)-1(m)28(y)83(,)-333(a)-333(z)-1(a)-333(ni)1(m)-1(i)-333(M)1(ate)-1(u)1(s)-1(z)-334(z)-333(T)83(e)-1(r)1(e)-1(sk)55(\\241.)]TJ 0 -13.549 Td[(\\233yd)-420(k\\252ania\\252)-421(m)28(u)-421(si\\246)-421(w)-421(pas,)-421(gorza\\252k)28(\\246)-421(s)-1(ta)28(wia\\252)-421(b)-27(e)-1(z)-421(w)27(o\\252an)1(ia)-421(i)-421(gosp)-27(o)-28(dar)1(z)-1(em)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ez)-1(y)1(w)27(a\\252,)-320(z)-322(cz)-1(ego)-321(S)1(z)-1(ymek)-321(n)1(ie)-1(ma\\252o)-321(si\\246)-321(pu)1(s)-1(zy\\252)-321(i)-320(p)-28(o)-28(d)1(piwsz)-1(y)-320(s)-1(e)-321(galan)1(c)-1(i)1(e)-1(,)-320(dar\\252)-320(s)-1(i\\246)]TJ 0 -13.549 Td[(mi\\246)-1(d)1(z)-1(y)-333(n)1(a)-56(j)1(pierws)-1(ze)-334(i)-333(sw)27(o)-55(je)-334(o)-333(ws)-1(zy\\242kim)-334(p)-27(o)28(wie)-1(d)1(a\\252.)]TJ\nET\nendstream\nendobj\n2152 0 obj <<\n/Type /Page\n/Contents 2153 0 R\n/Resources 2151 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2151 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2156 0 obj <<\n/Length 9049      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(675)]TJ -330.353 -35.866 Td[(W)-251(k)56(arcz)-1(mie)-251(b)28(y\\252o)-251(lud)1(no)-251(i)-251(m)28(uzyk)56(a)-252(p)1(rzygryw)28(a\\252a)-251(la)-251(w)-1(i)1(\\246)-1(ksze)-1(j)-251(o)-27(c)27(hot)28(y)84(,)-251(ale)-252(n)1(ikto)]TJ -27.879 -13.549 Td[(si\\246)-321(jes)-1(zc)-1(ze)-321(nie)-321(b)1(ra\\252)-321(d)1(o)-321(ta\\253)1(c)-1(\\363)28(w,)-321(a)-321(j)1(e)-1(n)1(o)-321(p)1(rze)-1(p)1(ijali)-320(do)-320(s)-1(i)1(\\246)-1(,)-320(biad)1(ol\\241c)-321(na)-320(gor\\241c)-1(,)-320(to)-321(n)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(edn)1(\\363)28(w)27(ek,)-333(jak)-333(to)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(w)-333(k)55(ar)1(c)-1(zmie)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(z\\252y)-325(n)1(a)28(w)27(et)-325(Boryn)29(y)-325(z)-324(k)28(o)27(w)28(alami,)-324(ale)-325(p)-27(o)27(wiedl)1(i)-325(si\\246)-325(d)1(o)-325(alk)1(ie)-1(r)1(z)-1(a)-324(i)-324(m)27(u)1(s)-1(i)-324(c)-1(o)]TJ -27.879 -13.549 Td[(se)-334(niezgorz)-1(ej)-333(u\\273yw)28(ali,)-333(b)-27(o)-334(\\233y)1(d)-333(raz)-334(p)-27(o)-333(raz)-334(nosi\\252)-333(im)-334(gor)1(z)-1(a\\252k)28(\\246)-334(a)-333(pi)1(w)27(o.)]TJ 27.879 -13.55 Td[({)-330(An)28(tek)-330(patrzy)-330(dzisia)-330(w)-331(sw)27(o)-55(j\\241)-330(k)28(obi)1(e)-1(t\\246)-331(k)1(ie)-1(b)29(y)-330(gapa)-330(w)-331(gn)1(at,)-330(\\273)-1(e)-330(na)28(w)27(et)-330(c)-1(z\\252o-)]TJ -27.879 -13.549 Td[(wiek)55(a)-384(n)1(ie)-384(p)-28(ozna)-55(je)-384({)-384(w)-1(y)1(rz)-1(ek)56(a\\252)-384(m)-1(ar)1(k)28(otnie)-384(Jam)27(b)1(ro\\273,)-384(na)-384(d)1(armo)-384(z)-1(aziera)-55(j\\241c)-384(do)-384(al-)]TJ 0 -13.549 Td[(kierza,)-333(s)-1(k)56(\\241d)-333(si\\246)-334(roznosi\\252y)-333(br)1(z)-1(\\246kli)1(w)27(e,)-333(lub)-27(e)-334(g\\252os)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-359(Bo)-359(m)28(u)-358(le)-1(p)1(s)-1(zy)-358(s)-1(w)28(\\363)-56(j)-358(trep)-358(ni\\271li)-358(bu)1(c)-1(iar)1(y)83(,)-358(c)-1(o)-358(na)-359(k)56(a\\273dy)-358(kul)1(as)-359(id\\241)-358({)-359(rze)-1(k)1(\\252a)-359(z)]TJ -27.879 -13.549 Td[(pr)1(z)-1(e\\261)-1(miec)27(h)1(e)-1(m)-334(J)1(agust)27(y)1(nk)56(a.)]TJ 27.879 -13.549 Td[({)-276(Ale)-276(w)-277(tak)1(ic)27(h)-276(n)1(\\363g)-276(s)-1(e)-276(c)-1(z\\252o)27(wiek)-276(n)1(ie)-277(u)1(raz)-1(i)1(!)-276({)-276(dorzuci\\252)-276(ktosik,)-276(a)-276(ca\\252a)-276(k)55(ar)1(c)-1(zm)-1(a)]TJ -27.879 -13.55 Td[(gru)1(c)27(h)1(n\\246\\252)-1(a)-333(\\261m)-1(iec)27(h)1(e)-1(m)-333(rozumie)-1(j)1(\\241c)-1(,)-333(co)-333(Jagusi\\246)-334(ma)-56(j)1(\\241)-334(n)1(a)-334(m)28(y\\261lac)27(h)1(.)]TJ 27.879 -13.549 Td[(Jeno)-368(Szyme)-1(k)-368(si\\246)-369(ni)1(e)-369(\\261)-1(mia\\252,)-368(b)-27(o)-369(u)1(\\252apiwsz)-1(y)-368(J\\246dr)1(z)-1(yc)28(ha)-368(z)-1(a)-368(s)-1(zyj)1(\\246)-369(c)-1(a\\252o)28(w)28(a\\252)-369(go,)]TJ -27.879 -13.549 Td[(a)-333(pra)28(wi\\252)-333(dob)1(rz)-1(e)-333(ju)1(\\273)-334(nap)1(i\\252ym)-334(g\\252ose)-1(m:)]TJ 27.879 -13.549 Td[({)-333(S\\252uc)28(ha\\242)-334(me)-334(p)-27(o)28(w)-1(i)1(niene\\261)-1(,)-333(p)-27(omiarku)1(j)-333(jeno,)-333(kt)1(o)-334(d)1(o)-334(ci\\246)-334(m\\363)28(wi.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(wiem)-1(,)-333(j)1(u\\261c)-1(i.)1(..)-333(jeno)-333(matula)-333(pr)1(z)-1(y)1(k)55(azali)-333({)-333(j\\241k)56(a\\252)-334(p)1(\\252ac)-1(zliwie.)]TJ 0 -13.55 Td[({)-333(C)-1(o)-333(tam)-333(m)-1(atu)1(la!)-333(m)-1(n)1(ie)-334(si\\246)-334(p)-27(os\\252)-1(u)1(c)27(h)-333(n)1(ale\\273)-1(y)84(,)-333(go)-1(sp)-27(o)-28(dar)1(z)-334(jes)-1(t)1(e)-1(m.)]TJ 0 -13.549 Td[(Mu)1(z)-1(y)1(k)55(an)29(t)27(y)-447(wyrzn\\246\\252y)-447(c)27(ho)-27(dzonego,)-448(p)-27(o)-28(d)1(ni\\363s\\252)-448(si\\246)-448(wrzas)-1(k)1(,)-448(r)1(ypn)1(\\246)-1(\\252y)-447(ob)-27(c)-1(asy)83(,)]TJ -27.879 -13.549 Td[(zas)-1(k)28(o)28(wyc)-1(za\\252y)-282(dyl)1(e)-1(,)-282(z)-1(a\\261pi)1(e)-1(w)28(a\\252y)-283(p)1(iosnec)-1(zki,)-282(zakr\\246c)-1(i\\252y)-282(si\\246)-283(p)1(ary)83(,)-282(to)-282(i)-282(Szyme)-1(k)-282(u\\252ap)1(i\\252)]TJ 0 -13.549 Td[(wp)-28(\\363\\252)-363(Nastusi\\246,)-363(k)55(ap)-27(ot\\246)-363(roz)-1(p)1(u\\261c)-1(i)1(\\252)-1(,)-362(c)-1(zap)-28(\\246)-363(z)-1(b)1(akiero)28(w)27(a\\252,)-363(d)1(a)-363(dana)-363(gr)1(uc)27(h)1(n\\241\\252,)-363(wysfo-)]TJ 0 -13.549 Td[(ro)28(w)28(a\\252)-411(si\\246)-411(na)-410(pi)1(e)-1(rwsz)-1(ego)-411(i)-410(n)1(a)-56(j)1(g\\252)-1(o\\261ni)1(e)-1(j)-410(kr)1(z)-1(yk)56(a\\252,)-410(na)-55(jzapami\\246tale)-1(j)-410(b)1(i\\252)-410(w)-411(p)-27(o)-28(d\\252og\\246,)]TJ 0 -13.55 Td[(na)-55(jostrze)-1(j)-286(za)27(wraca\\252)-287(i)-286(to)-28(c)-1(zy\\252)-287(si\\246)-287(bu)1(jn)1(ie)-1(,)-286(w)27(eso\\252)-1(o,)-286(rozg\\252o\\261)-1(n)1(ie)-1(,)-286(kiej)-287(t)1(e)-1(n)-286(p)-28(ot)1(ok)-287(nab)1(ra-)]TJ 0 -13.549 Td[(n)28(y)-333(zw)-1(i)1(e)-1(sno)28(w)27(\\241)-333(mo)-28(c\\241.)]TJ 27.879 -13.549 Td[(Ale)-246(kiej)-246(pr)1(z)-1(eta\\253co)28(w)27(a\\252)-246(raz)-246(i)-246(d)1(rugi)1(,)-246(da\\252)-246(s)-1(i)1(\\246)-247(k)28(ob)1(ie)-1(tom)-246(wywie\\261)-1(\\242)-246(z)-247(k)56(arcz)-1(m)28(y)-246(i)-246(ju)1(\\273)]TJ -27.879 -13.549 Td[(galan)1(c)-1(ie)-294(p)1(rze)-1(tr)1(z)-1(e\\271)-1(wion)29(y)-294(siedzia\\252)-294(z)-294(n)1(imi)-294(p)-27(o)-28(d)-293(c)27(h)1(a\\252up)1(\\241,)-294(p)1(rzylaz\\252a)-294(te\\273)-294(Jagust)28(ynk)56(a)-293(i)]TJ 0 -13.549 Td[(tak)-267(s)-1(e)-268(wraz)-268(p)-27(ogadyw)28(ali,)-267(b)-27(o)-268(c)27(h)1(o)-28(c)-1(i)1(a\\273)-268(p)-28(\\363\\271no)-267(b)28(y\\252o)-268(i)-267(Szyme)-1(k)-267(z)-1(b)1(iera\\252)-268(si\\246)-268(do)-267(p)-28(o)28(wrotu)1(,)]TJ 0 -13.55 Td[(ale)-408(b)28(y\\252o)-408(m)27(u)-408(j)1(ak)28(o\\261)-409(ni)1(e)-1(sp)-28(or)1(o,)-408(o)-28(c)-1(i)1(\\241)-28(ga\\252)-409(si\\246,)-408(z)-1(w\\252\\363)-28(cz)-1(y)1(\\252)-1(;)-408(d)1(o)-408(Nas)-1(tki)-408(si\\246)-409(p)1(rzygarn)1(ia\\252)-408(i)]TJ 0 -13.549 Td[(cz)-1(ego\\261)-334(wz)-1(d)1(yc)27(h)1(a\\252)-1(,)-333(j)1(a\\273)-1(e)-333(m)-1(atk)56(a)-333(rze)-1(k\\252a:)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a\\253)-333(w)-334(sto)-28(dol)1(e)-1(,)-333(k)56(a)-56(j)-333(ta)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(sz)-334(s)-1(i)1(\\246)-334(t\\252uk)1(\\252)-334(p)-27(o)-334(n)1(o)-28(cy)83(.)]TJ 0 -13.549 Td[({)-333(Kiedy)-333(p)-27(o\\261)-1(cie)-1(l)1(e)-334(ma)-334(j)1(u\\273)-334(tam,)-333(w)-334(b)1(ud)1(z)-1(i)1(e)-334({)-334(t)1(\\252)-1(u)1(m)-1(aczy\\252a)-334(Nastusia.)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(go)-333(pu)1(\\261)-1(\\242)-334(p)-27(o)-28(d)-333(sw)27(o)-55(j\\241)-333(pi)1(e)-1(r)1(z)-1(yn)1(\\246)-1(,)-333(Nastu\\261)-333({)-334(ozw)27(a\\252a)-333(s)-1(i)1(\\246)-334(Jagust)28(ynk)56(a.)]TJ 0 -13.55 Td[({)-333(C)-1(o)-333(w)28(am)-334(te\\273)-334(w)-334(g\\252o)28(wie)-1(!)-333(Hal)1(e)-1(,)-333(jesz)-1(cz)-1(e)-334(cze)-1(go!)-333({)-333(bron)1(i\\252a)-333(s)-1(i\\246)-333(z)-1(es)-1(r)1(om)-1(an)1(a.)]TJ 0 -13.549 Td[({)-449(Dy\\242)-450(t)1(o)-450(t)28(w)28(\\363)-56(j)-449(c)28(h\\252op!)-449(\\233e)-449(ta)-449(\\271)-1(d)1(z)-1(iebk)28(o)-449(p)1(rz)-1(\\363)-27(dzi,)-449(nim)-449(ksi\\241dz)-449(p)-28(o\\261wi\\246)-1(ci,)-449(n)1(ie)]TJ -27.879 -13.549 Td[(grze)-1(c)28(h,)-333(a)-333(c)27(h)1(\\252)-1(op)1(ak)-333(haru)1(je)-333(kieb)28(y)-333(w)27(\\363\\252,)-333(to)-333(m)27(u)-333(si\\246)-334(n)1(ale)-1(\\273y)-333(nad)1(gro)-28(d)1(a.)]TJ 27.879 -13.549 Td[({)-270(\\221)1(w)-1(i)1(\\246)-1(ta)-270(p)1(ra)28(wda!)-270(Nastu)1(\\261)-1(!)-270(Nastu)1(\\261)-1(!)-270({)-269(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-270(kiej)-270(wil)1(k)-270(do)-270(d)1(z)-1(i)1(e)-1(w)28(c)-1(zyn)28(y)84(,)-270(p)1(rzy-)]TJ -27.879 -13.549 Td[(capi\\252)-333(j\\241)-333(k)56(a)-56(j\\261)-333(w)-334(sadzie)-334(i)-333(ni)1(e)-334(p)-27(opuszc)-1(za)-56(j)1(\\241c)-334(z)-334(gar\\261c)-1(i)1(,)-334(ca\\252o)28(w)27(a\\252)-333(i)-333(s)-1(k)56(amla\\252:)]TJ 27.879 -13.549 Td[({)-333(Wygon)1(is)-1(z)-333(m)-1(e)-334(to,)-333(Nastu\\261?)-334(wygon)1(isz)-1(,)-333(n)1(a)-56(jmilsza,)-334(w)-333(tak)56(\\241)-334(n)1(o)-28(c?)]TJ 0 -13.55 Td[(Matk)56(a)-235(nalaz\\252a)-236(se)-236(jak)56(\\241\\261)-236(spra)28(w)28(\\246)-236(w)-236(sie)-1(n)1(i,)-235(a)-236(Jagu)1(s)-1(t)28(yn)1(k)56(a)-236(rzek\\252a)-236(n)1(a)-236(o)-28(d)1(c)27(ho)-27(dn)28(y)1(m)-1(:)]TJ 0 -13.549 Td[({)-400(Ni)1(e)-400(br)1(o\\253)-400(m)28(u,)-399(Nastu\\261!)-400(M)1(a\\252o)-400(d)1(obrego)-400(n)1(a)-400(\\261wie)-1(cie,)-400(a)-399(zdarzy)-399(s)-1(i\\246)-400(k)1(ie)-1(b)29(y)-400(to)]TJ -27.879 -13.549 Td[(ziarn)1(o)-334(\\261lep)-28(ej)-333(kur)1(z)-1(e,)-333(to)-333(je)-334(z)-334(p)1(az)-1(u)1(r\\363)28(w)-334(n)1(ie)-334(p)-27(opu)1(s)-1(zc)-1(za)-56(j)1(ta.)]TJ 27.879 -13.549 Td[(Roz)-1(min)1(\\246)-1(\\252a)-323(si\\246)-323(w)-323(op)1(\\252)-1(ot)1(k)55(ac)28(h)-323(z)-323(Mat)1(e)-1(u)1(s)-1(ze)-1(m,)-323(k)1(t\\363ren,)-322(do)-56(j)1(rza)27(wsz)-1(y)-322(pr)1(z)-1(ez)-323(okno,)]TJ -27.879 -13.549 Td[(co)-334(si\\246)-334(w)-333(iz)-1(b)1(ie)-334(\\261wi\\246)-1(ci,)-333(kr)1(z)-1(yk)1(n\\241\\252)-333(do)-333(Szymk)55(a:)]TJ 27.879 -13.55 Td[({)-333(Na)-334(t)28(w)28(oim)-334(miejsc)-1(u)-333(j)1(u\\273)-334(b)29(ym)-334(to)-333(da)28(wno)-333(zrobi)1(\\252!)]TJ 0 -13.549 Td[(I)-333(p)-28(ogwizdu)1(j\\241c)-334(l)1(e)-1(cia\\252)-334(n)1(a)-334(wie\\261)-334(sz)-1(u)1(k)56(a\\242)-334(uciec)27(h)28(y)84(.)]TJ\nET\nendstream\nendobj\n2155 0 obj <<\n/Type /Page\n/Contents 2156 0 R\n/Resources 2154 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2154 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2159 0 obj <<\n/Length 9019      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(676)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ale)-354(naza)-56(ju)1(trz)-354(o)-355(\\261witan)1(iu)-354(Szyme)-1(k)-354(stan)1(\\241\\252)-355(n)1(a)-355(r)1(ob)-28(ot)1(\\246)-355(jak)-354(za)28(w)-1(d)1(y)-354(i)-354(pr)1(ac)-1(o)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(ni)1(e)-1(stru)1(dze)-1(n)1(ie)-1(,)-408(t)28(ylk)28(o)-409(ki)1(e)-1(d)1(y)-409(m)28(u)-409(Nastu\\261)-409(pr)1(z)-1(yn)1(ies)-1(\\252a)-409(\\261niad)1(ani)1(e)-1(,)-409(t)1(o)-409(\\252ak)28(om)-1(iej)-408(s)-1(i\\246ga\\252)]TJ 0 -13.549 Td[(jej)-333(w)28(arg)-333(c)-1(ze)-1(r)1(w)27(on)28(y)1(c)27(h)-333(ni)1(\\271)-1(li)-333(d)1(w)27(o)-55(jak)28(\\363)28(w.)]TJ 27.879 -13.549 Td[({)-376(A)-375(z)-1(d)1(rad\\271)-376(me)-376(ino,)-375(to)-376(ci)-376(\\252eb)-376(wrz\\241tki)1(e)-1(m)-376(ob)1(le)-1(j)1(\\246)-376({)-376(grozi\\252a)-376(wpiera)-55(j\\241c)-376(si\\246)-376(w)]TJ -27.879 -13.549 Td[(ni)1(e)-1(go.)]TJ 27.879 -13.55 Td[({)-395(M)1(o)-56(j)1(a\\261)-1(,)-394(Nas)-1(tu)1(\\261)-1(.)1(..)-394(s)-1(ama\\261)-395(m)-1(i)-394(si\\246)-395(da\\252a...)-394(j)1(u\\273)-395(c)-1(i)1(\\246)-395(nie)-395(p)-27(opu)1(s)-1(zc)-1(z\\246)-395({)-395(b)-27(e\\252)-1(k)28(ot)1(a\\252)]TJ -27.879 -13.549 Td[(gor\\241co)-333(i)-334(zazie)-1(r)1(a)-56(j)1(\\241c)-334(jej)-333(w)-334(o)-28(czy)-334(d)1(o)-28(d)1(a\\252)-334(cis)-1(zej:)-333({)-333(C)-1(h)1(\\252opak)-333(m)27(u)1(s)-1(i)-333(b)28(y)1(\\242)-334(pi)1(e)-1(rwsz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-351(G)1(\\252upi)1(\\261)-1(!)-350(Hale)-1(,)-350(jak)1(ie)-351(m)27(u)-350(to)-351(zb)-27(e)-1(rezie)-1(\\253)1(s)-1(t)28(w)28(a)-351(w)28(e)-351(\\252)-1(b)1(ie!)-351({)-350(o)-28(dep)-28(c)28(hn)1(\\246)-1(\\252a)-351(go)-350(i)-351(za-)]TJ -27.879 -13.549 Td[(p\\252on)1(iona)-463(u)1(c)-1(iek\\252a,)-463(gdy)1(\\273)-464(ni)1(e)-1(d)1(ale)-1(czk)28(o)-464(u)1(k)55(aza\\252)-463(s)-1(i\\246)-463(pan)-463(J)1(ac)-1(ek,)-463(fa)-55(jec)-1(zk)28(\\246)-464(se)-464(ku)1(rzy\\252,)]TJ 0 -13.549 Td[(skrzypk)1(i)-390(\\261cis)-1(k)56(a\\252)-389(p)-28(o)-28(d)-388(pac)27(h)1(\\241)-390(i)-389(p)-27(o)-28(c)28(h)28(w)27(ali)1(w)-1(szy)-390(Boga)-389(rozp)28(yt)28(yw)28(a\\252)-390(o)-389(r\\363\\273no\\261c)-1(i)1(e)-1(.)-389(Szy-)]TJ 0 -13.549 Td[(me)-1(k)-396(rad)-396(pr)1(z)-1(ec)27(h)28(w)28(ala\\252)-397(si\\246)-397(z)-397(tego,)-397(co)-397(to)-396(ju)1(\\273)-397(dok)28(on)1(a\\252)-1(,)-396(i)-396(z)-397(nag\\252a)-397(on)1(iem)-1(ia\\252)-396(i)-397(\\261lepie)]TJ 0 -13.55 Td[(wyba\\252u)1(s)-1(zy\\252,)-482(b)-28(o)-482(pan)-482(Jace)-1(k)-482(skrzyp)1(ki)-483(o)-27(d\\252o\\273y\\252,)-483(k)56(ap)-27(ot\\246)-483(\\261c)-1(iepn)1(\\241\\252)-483(i)-482(z)-1(ab)1(ra\\252)-482(s)-1(i\\246)-483(d)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(erab)1(iani)1(a)-334(gli)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-333(j)1(a\\273)-1(e)-333(\\252)-1(op)1(at\\246)-334(wyp)1(u\\261c)-1(i\\252)-333(i)-333(g\\246)-1(b)-27(\\246)-334(r)1(oz)-1(d)1(z)-1(ia)28(wi\\252.)]TJ 0 -13.549 Td[({)-333(C)-1(zeg\\363\\273)-334(s)-1(i)1(\\246)-334(dziwuj)1(e)-1(sz)-1(,)-333(h)1(\\246)-1(?)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(?)-333(to)-334(p)1(an)-333(Jace)-1(k)-333(b)-27(\\246)-1(d)1(\\241)-334(ze)-334(mn\\241)-333(rob)1(ili?)]TJ 0 -13.55 Td[({)-333(A)-334(b)-27(\\246d\\246,)-334(p)-27(omog\\246)-334(ci)-334(p)1(rzy)-333(c)27(ha\\252u)1(pie,)-333(m)27(y\\261lisz,)-334(\\273e)-334(n)1(ie)-334(p)-27(oradz\\246?)-334(Zobacz)-1(y)1(s)-1(z.)]TJ 0 -13.549 Td[(I)-422(robi)1(li)-422(ju)1(\\273)-423(w)27(e)-423(d)1(w)27(\\363)-27(c)27(h,)-422(wpr)1(a)28(w)-1(d)1(z)-1(i)1(e)-423(s)-1(tar)1(y)-422(w)-1(i)1(e)-1(lk)1(ie)-1(j)-422(mo)-28(cy)-422(nie)-423(mia\\252)-422(i)-422(c)27(h\\252op)1(-)]TJ -27.879 -13.549 Td[(skiej)-480(rob)-27(o)-28(cie)-481(b)28(y)1(\\252)-481(n)1(iez)-1(wycz)-1(a)-55(jn)28(y)84(,)-480(ale)-481(mia\\252)-480(taki)1(e)-481(pr)1(z)-1(em)27(y\\261ln)1(e)-481(sp)-28(osob)28(y)84(,)-480(\\273)-1(e)-480(praca)]TJ 0 -13.549 Td[(sz)-1(\\252a)-432(z)-1(n)1(ac)-1(zni)1(e)-433(pr)1(\\246)-1(d)1(z)-1(ej)-432(i)-432(s)-1(k)1(\\252adni)1(e)-1(j)1(.)-432(Ju\\261c)-1(i,)-432(co)-432(Szyme)-1(k)-432(skw)28(apliwie)-432(s)-1(\\252u)1(c)27(ha\\252)-432(go)-432(w)27(e)]TJ 0 -13.549 Td[(ws)-1(zystkim,)-333(m)-1(r)1(ucz)-1(\\241c)-334(j)1(e)-1(n)1(o)-333(kiej)-333(niekiej:)]TJ 27.879 -13.55 Td[({)-333(Lob)-28(oga,)-333(tego)-333(jes)-1(zc)-1(ze)-334(ni)1(e)-334(b)28(yw)28(a\\252o)-334(n)1(a)-334(\\261wiec)-1(ie...)-333(\\233eb)28(y)-333(dzie)-1(d)1(z)-1(i)1(c)-1(..)1(.)]TJ 0 -13.549 Td[(P)28(an)-406(Jac)-1(ek)-407(j)1(e)-1(n)1(o)-407(s)-1(i\\246)-407(pr)1(z)-1(e\\261)-1(miec)27(h)1(a\\252)-408(i)-406(j\\241\\252)-407(p)-27(ogadyw)28(a\\242)-408(o)-407(t)1(akic)27(h)-406(r\\363\\273no\\261c)-1(iac)28(h)-407(i)]TJ -27.879 -13.549 Td[(taki)1(e)-248(c)-1(u)1(de\\253k)56(a)-247(pra)28(wi\\252)-247(o)-248(\\261wie)-1(cie,)-247(ja\\273e)-248(Szyme)-1(k)-247(d)1(z)-1(iw)-247(m)27(u)-247(d)1(o)-248(n)1(\\363g)-248(n)1(ie)-248(p)1(ad\\252)-247(w)-248(p)-27(o)-28(dzi\\246c)-1(e)]TJ 0 -13.549 Td[(a)-376(zdu)1(m)-1(i)1(e)-1(n)1(iu,)-375(jeno)-376(co)-376(n)1(ie)-376(m)-1(i)1(a\\252)-376(\\261)-1(mia\\252o\\261c)-1(i,)-375(ale)-376(wie)-1(czore)-1(m)-376(p)-27(olec)-1(i)1(a\\252)-376(rozp)-28(o)28(wiedzie)-1(\\242)]TJ 0 -13.549 Td[(o)-333(w)-1(szys)-1(tk)1(im)-334(Nastusi.)]TJ 27.879 -13.55 Td[({)-314(M)1(\\363)28(w)-1(i)1(li,)-313(c)-1(o)-313(g\\252)-1(u)1(pa)28(wy)83(,)-313(a)-313(on)-314(ci)-313(kiej)-314(t)1(e)-1(n)-313(ksi\\241dz)-314(n)1(a)-56(j)1(m)-1(\\241d)1(rze)-1(j)1(s)-1(zy!)-313({)-314(zak)28(o\\253cz)-1(y\\252.)]TJ 0 -13.549 Td[({)-357(Dru)1(gi)-357(m\\241drze)-358(p)-27(o)28(wie)-1(d)1(a)-357(i)-357(g\\252up)1(io)-357(robi)1(!)-357(Ju\\261c)-1(i)1(,)-357(\\273)-1(eb)28(y)-357(mia\\252)-357(dob)1(ry)-357(r)1(oz)-1(u)1(m)-1(,)-357(to)]TJ -27.879 -13.549 Td[(b)28(y)-333(ci)-333(m)-1(o\\273e)-334(p)-27(om)-1(aga\\252,)-333(co?)-334(Alb)-27(o)-333(pasa\\252)-1(b)29(y)-333(W)83(eroncz)-1(y)1(ne)-334(k)1(ro)28(w)-1(y)1(?)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda,)-333(\\273e)-334(tego)-334(an)1(i)-333(s)-1(p)-27(os)-1(\\363b)-332(w)-1(y)1(m)-1(iar)1(k)28(o)28(w)27(a\\242!)]TJ 0 -13.549 Td[({)-333(Nic)-1(,)-333(j)1(e)-1(n)1(o)-334(m)28(u)-333(si\\246)-334(w)-334(g\\252o)28(wie)-334(p)-27(opsu\\252o.)]TJ 0 -13.55 Td[({)-333(Ale)-334(te\\273)-334(lepsz)-1(ego)-333(c)-1(z\\252o)27(wiek)56(a)-334(n)1(ie)-334(n)1(ale)-1(\\271\\242)-334(n)1(a)-334(\\261wie)-1(cie.)]TJ 0 -13.549 Td[(I)-264(b)28(y\\252)-264(m)27(u)-264(n)1(ie)-1(zmie)-1(r)1(nie)-264(w)-1(d)1(z)-1(i)1(\\246)-1(cz)-1(n)29(y)-265(za)-264(t\\246)-265(dob)1(ro)-28(\\242,)-264(ale)-265(c)28(ho)-28(cia\\273)-265(r)1(az)-1(em)-265(p)1(rac)-1(o)28(w)28(ali,)]TJ -27.879 -13.549 Td[(z)-271(j)1(e)-1(d)1(n)28(yc)27(h)-269(dw)28(o)-56(jak)28(\\363)28(w)-270(jedli)1(,)-270(a)-271(p)-27(o)-28(d)-270(j)1(e)-1(d)1(n)28(ym)-270(k)28(o\\273)-1(u)1(c)27(hem)-271(sypi)1(ali,)-270(to)-270(jedn)1(ak)-270(nij)1(ak)28(o\\261)-271(m)27(u)]TJ 0 -13.549 Td[(si\\246)-334(b)28(y\\252o)-333(z)-334(n)1(im)-334(p)-27(o)-28(du)1(fal)1(e)-1(j)-333(sto)28(w)27(ar)1(z)-1(ysz)-1(a\\242.)]TJ 27.879 -13.549 Td[({)-222(Za)27(wd)1(y\\242)-223(to)-222(d)1(z)-1(iedzico)27(wy)-222(gatu)1(nek)-222({)-223(m)28(y\\261la\\252)-222(z)-223(g\\252\\246)-1(b)-27(okim)-222(u)28(w)28(a\\273)-1(an)1(ie)-1(m)-222(i)-222(wdzi\\246)-1(cz)-1(-)]TJ -27.879 -13.549 Td[(no\\261ci\\241,)-470(b)-27(o)-470(pr)1(z)-1(y)-469(jego)-470(p)-28(omo)-28(cy)-470(c)27(h)1(a\\252up)1(ina)-470(r)1(os)-1(\\252a)-470(k)1(ie)-1(b)29(y)-470(na)-469(dro\\273d\\273ac)27(h)1(,)-470(za\\261)-471(ki)1(e)-1(d)1(y)]TJ 0 -13.55 Td[(Mateusz)-399(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-399(z)-399(p)-27(om)-1(o)-27(c)-1(\\241,)-398(a)-399(K\\252\\246b)-27(o)27(wy)-398(Adam)-399(n)1(a)28(w)-1(i)1(\\363z)-1(\\252)-399(z)-399(b)-27(oru)1(,)-398(c)-1(o)-398(b)28(y\\252o)-399(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(p)-27(otrza;)-314(to)-314(b)1(ud)1(a)-314(s)-1(tan)1(\\246)-1(\\252a)-313(tak)55(a)-313(galan)28(ta,)-313(ja\\273e)-315(j)1(\\241)-314(b)28(y\\252o)-314(wid)1(a\\242)-314(z)-315(Li)1(piec)-1(.)-313(Mateusz)-315(p)1(ra-)]TJ 0 -13.549 Td[(wie)-362(ca\\252)-1(y)-361(t)28(yd)1(z)-1(ie\\253)-361(har)1(o)27(w)28(a\\252)-362(sielni)1(e)-1(,)-361(dr)1(ugic)28(h)-362(p)-27(ogan)1(ia)-56(j)1(\\241c)-1(,)-361(i)-361(kiej)-361(s)-1(k)28(o\\253czyli)-361(w)-362(sob)-28(ot\\246)]TJ 0 -13.549 Td[(p)-27(o)-334(p)-27(o\\252ud)1(niu)1(,)-333(z)-1(ielon)1(\\241)-334(wiec)27(h)1(\\246)-334(z)-1(at)1(kn\\241\\252)-333(na)-333(k)28(ominie)-333(i)-334(p)-27(olec)-1(i)1(a\\252)-334(d)1(o)-334(sw)27(o)-55(jej)-333(rob)-27(ot)28(y)83(.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-408(j)1(e)-1(szc)-1(ze)-409(wybi)1(e)-1(la\\252)-408(izb)-28(\\246)-408(a)-409(u)1(pr)1(z)-1(\\241ta\\252)-408(wi\\363ry)-408(i)-408(\\261m)-1(i)1(e)-1(cie,)-408(z)-1(a\\261)-409(p)1(an)-408(Jace)-1(k)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)1(bra\\252)-333(s)-1(i)1(\\246)-1(,)-333(skrzypk)1(i)-334(wzi\\241\\252)-333(p)-28(o)-28(d)-332(pac)27(h)1(\\246)-334(i)-333(rze)-1(k\\252)-333(ze)-334(\\261)-1(miec)27(h)1(e)-1(m:)]TJ 27.879 -13.549 Td[({)-333(Gni)1(az)-1(d)1(k)28(o)-334(goto)28(w)28(e)-1(,)-333(n)1(as)-1(ad)1(\\271)-1(\\273e)-334(s)-1(ob)1(ie)-334(k)28(ok)28(osz)-1(.)1(..)]TJ\nET\nendstream\nendobj\n2158 0 obj <<\n/Type /Page\n/Contents 2159 0 R\n/Resources 2157 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2157 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2162 0 obj <<\n/Length 9591      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(677)]TJ -330.353 -35.866 Td[({)-333(Dy\\242)-334(j)1(utr)1(o)-334(\\261lub)-333(p)-27(o)-333(niesz)-1(p)-27(orac)27(h)-332({)-334(r)1(z)-1(u)1(c)-1(i\\252)-333(m)27(u)-333(si\\246)-334(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)27(a\\242.)]TJ 0 -13.549 Td[({)-374(Nie)-374(robi)1(\\252)-1(em)-374(z)-1(a)-374(d)1(armo!)-374(Jak)-374(mnie)-374(z)-1(e)-374(ws)-1(i)-374(wyp)-27(\\246)-1(d)1(z)-1(\\241,)-373(to)-374(przyj)1(d\\246)-374(do)-374(c)-1(i)1(e)-1(b)1(ie)]TJ -27.879 -13.549 Td[(na)-333(k)28(omorne)-333({)-334(f)1(a)-56(j)1(e)-1(cz)-1(k)28(\\246)-333(z)-1(ap)1(ali\\252)-333(i)-334(p)-27(olaz\\252)-334(w)-333(s)-1(tr)1(on\\246)-334(l)1(as)-1(u)1(.)]TJ 27.879 -13.549 Td[(A)-433(Szym)-1(ek,)-433(c)27(h)1(o)-28(c)-1(i)1(a\\273)-434(w)-1(sz)-1(y)1(s)-1(tk)28(o)-433(p)-28(ok)28(o\\253)1(c)-1(zy\\252,)-433(\\252az)-1(i\\252)-433(jes)-1(zc)-1(ze)-434(c)-1(ze)-1(go\\261,)-433(przec)-1(i\\241)-27(ga\\252)]TJ -27.879 -13.549 Td[(strud)1(z)-1(on)1(e)-334(k)28(o\\261c)-1(ie)-333(i)-334(p)1(atrzy\\252)-333(na)-333(c)27(h)1(a\\252)-1(u)1(p)-27(\\246)-334(z)-334(ni)1(e)-1(sp)-28(o)-27(dzie)-1(w)28(an\\241)-333(uciec)27(h)1(\\241.)]TJ 27.879 -13.55 Td[({)-333(Mo)-55(ja!)-333(Ju\\261ci,)-333(c)-1(o)-333(mo)-56(j)1(a!)-333({)-334(gad)1(a\\252)-334(i)-333(j)1(akb)28(y)-333(n)1(ie)-334(wierz\\241)-1(c)-333(o)-28(cz)-1(om)-333(dot)28(yk)56(a\\252)-334(\\261cian,)]TJ -27.879 -13.549 Td[(ob)-27(c)27(ho)-27(dzi\\252)-230(dok)28(o\\252a)-230(i)-230(zagl\\241d)1(a\\252)-231(p)1(rze)-1(z)-230(okn)1(o)-230(w)27(ci\\241)-28(ga)-55(j\\241c)-230(z)-231(lu)1(b)-27(o\\261)-1(ci\\241)-230(s)-1(k)1(is)-1(\\252y)-229(z)-1(ap)1(ac)27(h)-230(w)28(apn)1(a)]TJ 0 -13.549 Td[(i)-333(s)-1(u)1(ro)28(w)28(e)-1(j)-333(gli)1(n)28(y)83(,)-333(\\273e)-334(dop)1(iero)-333(o)-334(zmie)-1(r)1(z)-1(c)28(h)28(u)-333(ru)1(s)-1(zy\\252)-334(d)1(o)-333(w)-1(si)-333(s)-1(zyk)28(o)28(w)27(a\\242)-333(s)-1(i\\246)-333(na)-333(ju)1(tro.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-422(co)-423(j)1(u\\273)-422(w)-1(szys)-1(tk)1(ie)-423(wiedzia\\252y)-422(o)-422(\\261)-1(l)1(ub)1(ie)-1(,)-422(wi\\246c)-423(i)-421(Dom)-1(in)1(ik)28(o)28(w)27(ej)-422(d)1(onies\\252)-1(a)]TJ -27.879 -13.549 Td[(kt\\363r)1(a\\261)-334(z)-334(s\\241s)-1(iad)1(e)-1(k)1(,)-334(al)1(e)-334(s)-1(t)1(ara)-333(uda\\252a,)-333(i\\273)-333(nie)-334(miar)1(kuj)1(e)-1(,)-333(o)-333(c)-1(zym)-333(p)-28(o)28(wieda)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[(Za\\261)-363(naza)-56(j)1(utr)1(z)-364(w)-362(niedziel\\246)-363(ju)1(\\273)-364(o)-27(d)-363(w)28(cz)-1(es)-1(n)1(e)-1(go)-362(rana)-362(Jagusia)-363(r)1(az)-363(p)-28(o)-362(raz)-363(wy-)]TJ -27.879 -13.55 Td[(m)27(y)1(k)55(a\\252a)-411(s)-1(i\\246)-412(z)-412(c)28(ha\\252u)1(p)28(y)-412(ze)-412(sp)-28(ory)1(m)-1(i)-411(tob)-27(o\\252am)-1(i)1(,)-412(cic)27(h)1(ac)-1(ze)-1(m,)-411(przez)-412(ogro)-28(d)1(y)83(,)-411(dygu)1(j\\241c)]TJ 0 -13.549 Td[(je)-402(do)-402(Nas)-1(t)1(usi,)-402(lec)-1(z)-403(stara,)-402(c)28(ho)-28(cia\\273)-403(d)1(obr)1(z)-1(e)-402(c)-1(zu\\252a,)-402(co)-403(si\\246)-403(wyr)1(abia,)-402(n)1(ie)-403(p)1(rze)-1(ciwi\\252a)]TJ 0 -13.549 Td[(si\\246)-345(ni)1(c)-1(ze)-1(m)28(u,)-344(\\252az)-1(i)1(\\252a)-345(j)1(e)-1(n)1(o)-345(milcz)-1(\\241ca)-344(i)-345(t)1(ak)-345(c)28(hm)28(urn)1(a,)-344(c)-1(o)-344(J\\246drzyc)27(h)-343(dopi)1(e)-1(ro)-344(p)-27(o)-345(sumie)]TJ 0 -13.549 Td[(o\\261m)-1(ieli\\252)-333(si\\246)-334(do)-333(ni)1(e)-1(j)-333(p)1(rzys)-1(t)1(\\241)-28(pi\\242.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(j)1(u\\273)-334(p)-27(\\363)-28(d)1(\\246)-1(,)-333(matulu)1(!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(t)1(rz)-1(y)1(m)-1(a)-55(j\\241c)-334(si\\246)-334(z)-333(dalek)56(a,)-334(ostro\\273ni)1(e)-1(.)]TJ 0 -13.55 Td[({)-333(Koni)1(e)-334(b)28(y\\261)-334(l)1(e)-1(p)1(ie)-1(j)-333(wygn)1(a\\252)-334(n)1(a)-333(k)28(onicz)-1(y)1(s)-1(k)28(o..)1(.)]TJ 0 -13.549 Td[({)-333(Dz)-1(i)1(s)-1(ia)-333(Szymk)28(o)28(w)27(e)-334(w)28(e)-1(sele)-1(,)-333(n)1(ie)-334(wiec)-1(ie)-333(to...)]TJ 0 -13.549 Td[({)-420(Ch)28(w)28(a\\252a)-420(Bogu,)-420(co)-420(n)1(ie)-420(t)27(w)28(o)-56(j)1(e)-1(!)-419({)-420(za\\261)-1(mia\\252a)-420(si\\246)-420(ur)1(\\241)-28(gliwie.)-420({)-420(A)-419(s)-1(p)1(ij)-419(s)-1(i\\246,)-420(to)]TJ -27.879 -13.549 Td[(obaczys)-1(z,)-324(c)-1(o)-324(ci)-324(z)-1(rob)1(i\\246!)-324({)-325(p)-27(ogrozi\\252a)-324(z)-1(e)-325(z\\252o\\261)-1(ci\\241)-324(i)-324(kiej)-324(c)27(h)1(\\252opak)-324(wz)-1(i)1(\\241\\252)-325(si\\246)-325(p)1(rzybiera\\242)]TJ 0 -13.549 Td[(o)-28(d)1(\\261)-1(wi\\246tni)1(e)-1(;)-333(p)-27(o)27(wlek\\252a)-333(s)-1(i\\246)-333(k)55(a)-55(j\\261)-333(na)-333(w)-1(i)1(e)-1(\\261.)]TJ 27.879 -13.55 Td[({)-342(A)-343(spij)1(\\246)-343(si\\246)-1(,)-342(n)1(a)-343(z\\252o\\261)-1(\\242)-343(si\\246)-343(spi)1(j\\246!)-343({)-342(mam)-1(r)1(ota\\252)-343(b)1(ie)-1(gn)1(\\241\\242)-343(pr)1(z)-1(ez)-343(wie\\261)-343(do)-342(Mate-)]TJ -27.879 -13.549 Td[(uszo)27(w)28(e)-1(j)-283(c)28(ha\\252up)29(y)83(,)-283(ryc)28(h)28(t)28(yk)-283(ju)1(\\273)-284(wyc)27(h)1(o)-28(dzili)-283(do)-283(k)28(o\\261)-1(cio\\252a,)-283(jeno)-283(\\273)-1(e)-284(cic)27(h)1(o,)-283(b)-28(ez)-284(\\261)-1(p)1(iew)27(a\\253)1(,)]TJ 0 -13.549 Td[(b)-27(e)-1(z)-335(kr)1(z)-1(y)1(k)28(\\363)27(w)-334(i)-335(b)-27(e)-1(z)-335(m)28(uzyki)1(.)-335(\\221)1(lub)-334(si\\246)-335(te\\273)-335(o)-28(db)29(y\\252)-335(ca\\252kiem)-335(biedn)1(ie)-335(pr)1(z)-1(y)-334(dw)28(\\363)-28(c)28(h)-335(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cac)27(h,)-420(\\273)-1(e)-421(Nastusia)-421(r)1(oz)-1(p)1(\\252ak)55(a\\252a)-421(si\\246)-421(rzew)-1(l)1(iw)-1(i)1(e)-1(,)-420(a)-421(Szyme)-1(k)-420(bzdy)1(c)-1(zy\\252)-421(si\\246)-421(c)-1(ze)-1(go\\261)]TJ 0 -13.549 Td[(i)-443(h)1(ard)1(o,)-443(zac)-1(ze)-1(p)1(liwie)-443(pat)1(rz)-1(y)1(\\252)-443(w)-443(lud)1(z)-1(i)-442(i)-443(p)-27(o)-443(p)1(ust)28(ym)-443(k)28(o\\261)-1(ciele)-1(.)-442(Szc)-1(z\\246\\261)-1(cie)-1(m,)-442(c)-1(o)-443(n)1(a)]TJ 0 -13.55 Td[(wyc)27(h)1(o)-28(dn)29(ym)-315(organ)1(is)-1(t)1(a)-315(zagra\\252)-315(tak)-314(sk)28(o)-28(c)-1(zni)1(e)-1(,)-314(ja\\273e)-315(nogi)-314(z)-1(ad)1(ryga\\252y)84(,)-315(i)-314(sta\\252o)-315(si\\246)-315(jak)28(o\\261)]TJ 0 -13.549 Td[(ra\\271ni)1(e)-1(j)-333(i)-333(w)28(e)-1(se)-1(lej)-333(n)1(a)-334(d)1(usz)-1(ac)28(h.)]TJ 27.879 -13.549 Td[(Jagu)1(\\261)-296(zaraz)-296(p)-27(o)-295(\\261)-1(l)1(ubi)1(e)-296(wr\\363)-28(ci\\252a)-295(do)-295(matki)1(,)-295(a)-295(jeno)-295(p)-27(\\363\\271)-1(n)1(ie)-1(j)-294(z)-1(agl\\241d)1(a\\252a)-295(niekiedy)]TJ -27.879 -13.549 Td[(do)-357(w)28(e)-1(se)-1(l)1(nik)28(\\363)28(w,)-357(b)-28(o)-357(Mateusz)-358(zagra\\252)-357(na)-357(s)-1(k)1(rzypicy)83(,)-357(P)1(ietrek)-357(B)-1(or)1(yn\\363)28(w)-358(p)1(rzywt\\363rzy\\252)]TJ 0 -13.549 Td[(na)-317(\\015ec)-1(ik)1(u,)-317(a)-318(ktosik)-318(sro)-28(d)1(z)-1(e)-318(p)1(rzyb)-28(\\246bn)1(ia\\252,)-317(\\273)-1(e)-318(z)-1(at)1(a\\253co)27(w)28(ali)-317(w)-318(c)-1(iasnej)-317(iz)-1(b)1(ie,)-318(a)-318(p)-27(oni)1(e)-1(-)]TJ 0 -13.55 Td[(kt\\363r)1(e)-1(,)-373(co)-373(o)-28(c)27(h)1(otniejsze)-1(,)-373(to)-373(p)1(ros)-1(t)1(o)-374(p)1(rze)-1(d)-372(c)27(ha\\252u)1(p\\241)-373(mi\\246)-1(d)1(z)-1(y)-373(sto\\252ami,)-373(k)56(a)-56(j)-373(si\\246)-373(p)-28(or)1(oz)-1(-)]TJ 0 -13.549 Td[(sadzali)-395(go)-27(do)28(wnicy)-395(j)1(e)-1(d)1(z)-1(\\241c,)-394(prze)-1(p)1(ij)1(a)-56(j\\241c)-395(a)-394(gw)27(ar)1(z)-1(\\241c)-395(z)-395(cic)27(h)1(a,)-395(\\273e)-395(to)-395(n)1(ijak)28(o)-394(b)28(y\\252o)-395(si\\246)]TJ 0 -13.549 Td[(wydziera\\242)-334(za)-334(d)1(ni)1(a)-334(i)-333(p)-27(o)-334(t)1(rz)-1(e\\271w)27(em)27(u)1(.)]TJ 27.879 -13.549 Td[(Szyme)-1(k)-319(c)-1(i)1(\\246)-1(giem)-320(\\252az)-1(i\\252)-320(za)-320(\\273on\\241,)-319(w)-320(k)55(\\241t)28(y)-319(j\\241)-320(ci\\241)-28(ga\\252,)-320(a)-319(tak)-320(siarcz)-1(y)1(\\261)-1(cie)-320(c)-1(a\\252o)28(w)27(a\\252,)]TJ -27.879 -13.549 Td[(ja\\273e)-334(p)1(rze)-1(kp)1(iw)27(al)1(i)-333(z)-334(niego,)-333(a)-333(Jam)27(b)1(ro\\273)-334(rzek\\252)-334(p)-27(os)-1(\\246pn)1(ie:)]TJ 27.879 -13.549 Td[({)-356(Cies)-1(z)-356(s)-1(i)1(\\246)-1(,)-356(cz)-1(\\252o)28(wieku,)-355(dzis)-1(i)1(a,)-356(b)-27(o)-356(jut)1(ro)-356(zap\\252ac)-1(zes)-1(z!)-356({)-356(i)-356(gon)1(i\\252)-356(\\261)-1(l)1(e)-1(p)1(iam)-1(i)-355(kie-)]TJ -27.879 -13.55 Td[(lisze)-1(k.)]TJ 27.879 -13.549 Td[(Co)-273(pr)1(a)27(wd)1(a,)-273(to)-273(i)-273(o)-28(c)28(hot)28(y)-273(wielki)1(e)-1(j)-272(nie)-273(b)28(y\\252o,)-272(i)-273(na)-273(wi\\246ksz)-1(\\241)-273(zaba)28(w)28(\\246)-274(si\\246)-273(nie)-273(z)-1(an)1(o-)]TJ -27.879 -13.549 Td[(si\\252o,)-379(gdy)1(\\273)-380(n)1(ie)-1(j)1(e)-1(d)1(ni)1(,)-379(p)-27(o)-28(dj)1(ad\\252sz)-1(y)-379(\\271dziebk)28(o)-379(i)-378(p)-28(osiedzia)28(w)-1(sz)-1(y)-378(ob)28(ycz)-1(a)-55(jn)1(ie)-380(czas)-380(j)1(aki\\261,)]TJ 0 -13.549 Td[(gdy)-315(s\\252o\\253ce)-316(zas)-1(z\\252o)-315(i)-315(nieb)-28(o)-315(stan\\246\\252o)-315(w)-316(ogn)1(iac)27(h)-315(z\\363rz,)-315(j\\246li)-315(si\\246)-316(j)1(u\\273)-316(zbi)1(e)-1(ra\\242)-315(do)-315(dom\\363)28(w.)]TJ 0 -13.549 Td[(T)28(ylk)28(o)-428(jeden)-428(M)1(ate)-1(u)1(s)-1(z)-428(sro)-28(d)1(z)-1(e)-428(s)-1(i\\246)-428(rozo)-28(c)27(h)1(o)-28(ci\\252,)-428(gra\\252,)-428(p)1(rzy\\261piewyw)27(a\\252,)-428(d)1(z)-1(i)1(e)-1(u)1(c)27(h)28(y)-428(d)1(o)]TJ 0 -13.55 Td[(ta\\253)1(c)-1(\\363)28(w)-371(niew)28(oli\\252,)-371(gor)1(z)-1(a\\252k)56(\\241)-371(c)-1(z\\246)-1(sto)28(w)27(a\\252,)-370(a)-371(s)-1(k)28(or)1(o)-371(s)-1(i)1(\\246)-372(p)-27(ok)56(az)-1(a\\252a)-371(Jagu)1(s)-1(i)1(a,)-371(s)-1(i)1(e)-1(ln)1(ie)-371(s)-1(i)1(\\246)-372(z)]TJ 0 -13.549 Td[(ni)1(\\241)-370(sto)28(w)27(ar)1(z)-1(ysz)-1(a\\252,)-369(w)-369(o)-28(c)-1(zy)-369(z)-1(aziera\\252)-370(i)-369(z)-369(c)-1(ic)28(ha,)-369(gor\\241co)-370(cos)-1(i)1(k)-369(pra)28(wi\\252,)-369(nie)-369(bacz)-1(\\241c)-370(n)1(a)]TJ\nET\nendstream\nendobj\n2161 0 obj <<\n/Type /Page\n/Contents 2162 0 R\n/Resources 2160 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2160 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2165 0 obj <<\n/Length 9482      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(678)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(rozjar)1(z)-1(on)1(e)-334(\\252z)-1(ami)-333(o)-28(cz)-1(y)-333(T)83(eres)-1(ki)-333(str\\363\\273uj)1(\\241c)-1(e)-334(n)1(ieo)-28(dst\\246)-1(p)1(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Jagu)1(\\261)-323(nie)-322(s)-1(tr)1(oni\\252a)-322(o)-28(d)-322(ni)1(e)-1(go,)-322(b)-27(o)-323(n)1(i)-322(j\\241)-322(z)-1(i\\246bi)1(\\252,)-323(n)1(i)-322(parzy\\252,)-322(s\\252)-1(u)1(c)27(h)1(a\\252a)-323(cie)-1(r)1(pli)1(w)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(zw)27(a\\273a)-56(j)1(\\241c)-448(j)1(e)-1(n)1(o)-447(p)1(iln)1(ie)-1(,)-446(cz)-1(y)-446(nie)-447(n)1(adc)27(h)1(o)-28(d)1(z)-1(\\241)-447(An)29(tk)28(o)28(w)-1(i)1(e)-1(,)-446(z)-447(kt\\363rymi)-446(z)-1(a)-446(nic)-447(sp)-28(ot)1(k)55(a\\242)]TJ 0 -13.549 Td[(si\\246)-366(n)1(ie)-366(c)28(hcia\\252a)-365(Na)-365(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(,)-365(n)1(ie)-366(p)1(rzysz)-1(li)1(,)-365(nie)-365(b)28(y\\252o)-365(te\\273)-366(\\273adn)1(e)-1(go)-365(z)-366(wi\\246ksz)-1(y)1(c)27(h)-365(go-)]TJ 0 -13.549 Td[(sp)-28(o)-28(d)1(arzy)83(,)-315(c)27(ho)-27(c)-1(ia\\273)-316(zapr)1(os)-1(in)1(om)-316(nie)-316(o)-28(d)1(m)-1(\\363)28(wili,)-315(a)-316(ws)-1(p)-27(omog\\246)-317(n)1(a)-316(w)28(e)-1(se)-1(le,)-316(j)1(ak)-316(to)-315(b)28(y\\252o)]TJ 0 -13.55 Td[(zw)-1(y)1(c)-1(za)-56(j)1(nie,)-275(pr)1(z)-1(ys\\252ali,)-275(wi\\246c)-276(sk)28(oro)-275(ktosik)-275(o)-275(t)28(ym)-276(wsp)-28(omni)1(a\\252)-1(,)-275(J)1(agust)27(y)1(nk)56(a)-275(w)-1(y)1(krzyk-)]TJ 0 -13.549 Td[(n\\246\\252a)-333(p)-28(o)-333(s)-1(w)28(o)-56(j)1(e)-1(m)28(u:)]TJ 27.879 -13.549 Td[({)-489(\\233e)-1(b)29(y)-489(ta)-489(s)-1(mak)28(\\363)28(w)-489(nagoto)28(w)27(al)1(i,)-489(a)-489(zapac)27(h)1(nia\\252a)-489(ku)1(fa)-489(ok)28(o)28(witki)1(,)-489(to)-489(b)28(y)-489(si\\246)]TJ -27.879 -13.549 Td[(kij)1(e)-1(m)-342(ni)1(e)-343(op)-27(\\246)-1(d)1(z)-1(i)1(\\252)-343(o)-27(d)-342(na)-55(jp)1(ie)-1(r)1(ws)-1(zyc)27(h)1(,)-342(ale)-343(n)1(a)-342(dar)1(m)-1(o)-342(n)1(ie)-343(l)1(ubi)1(\\241)-342(brzuc)28(h\\363)28(w)-342(trz\\241c)27(ha\\242)]TJ 0 -13.549 Td[(i)-333(s)-1(u)1(c)27(h)28(y)1(m)-1(i)-333(ozorami)-333(m)-1(le\\242.)]TJ 27.879 -13.549 Td[(\\233e)-376(za\\261)-376(ju)1(\\273)-376(b)28(y\\252a)-376(\\271dziebk)28(o)-375(nap)1(ita,)-375(to)-376(d)1(o)-56(j)1(rza)27(wsz)-1(y)-375(Ja\\261k)55(a)-375(Pr)1(z)-1(ewrotnego,)-375(jak)]TJ -27.879 -13.55 Td[(k)56(a)-56(j)1(\\261)-341(w)-340(k)56(\\241cie)-340(w)-1(zdy)1(c)27(ha\\252)-340(\\273a\\252o\\261)-1(l)1(iwie)-1(,)-339(nos)-340(uciera\\252)-340(i)-339(og\\252)-1(u)1(pi)1(a\\252)-1(y)1(m)-1(i)-339(o)-28(cz)-1(ami)-340(sp)-28(oziera\\252)-340(w)]TJ 0 -13.549 Td[(Nastusi\\246)-1(,)-333(p)-27(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252a)-333(go)-334(d)1(o)-334(n)1(iej)-333(la)-333(prze\\261)-1(miec)27(h\\363)28(w.)]TJ 27.879 -13.549 Td[({)-392(P)28(ot)1(a\\253cuj)-391(z)-393(n)1(i\\241,)-392(u)1(\\273)-1(y)1(j)-392(se)-392(c)27(ho)-27(\\242)-393(t)28(yl)1(a,)-392(kiej)-391(c)-1(i)-391(m)-1(atk)56(a)-392(wzbron)1(ili)-391(\\273)-1(eniaczki,)-392(a)]TJ -27.879 -13.549 Td[(zabiega)-56(j)-435(k)28(ole)-436(niej,)-435(m)-1(o\\273e)-436(c)-1(i)-435(c)-1(o)-436(z)-436(\\252as)-1(k)1(i)-436(ud)1(z)-1(i)1(e)-1(li)1(,)-436(ma)-436(c)27(h)1(\\252opa,)-436(to)-435(ju\\273)-436(j)1(e)-1(j)-435(z)-1(ar)1(\\363)27(wn)1(o,)]TJ 0 -13.549 Td[(jeden)-333(cz)-1(y)-333(wi\\246c)-1(ej.)]TJ 27.879 -13.55 Td[(I)-383(wygady)1(w)27(a\\252a)-383(taki)1(e)-384(tr)1(e)-1(f)1(no\\261c)-1(i,)-382(ja\\273e)-384(u)1(s)-1(zy)-383(wi\\246)-1(d)1(\\252y)83(,)-382(z)-1(a\\261)-383(kiedy)-383(i)-383(J)1(am)27(br)1(o\\273)-384(d)1(o-)]TJ -27.879 -13.549 Td[(rw)28(a\\252)-444(s)-1(i\\246)-444(kielisz)-1(k)56(a)-444(i)-444(j\\241\\252)-444(p)-27(o)-444(s)-1(w)28(o)-56(j)1(e)-1(m)28(u)-444(g\\246)-1(b)-27(\\246)-444(roz)-1(p)1(usz)-1(cz)-1(a\\242,)-444(to)-444(ju)1(\\273)-445(ob)-27(o)-56(j)1(e)-445(r)1(e)-1(j)-444(wiedl)1(i)]TJ 0 -13.549 Td[(p)28(ysku)1(j\\241c)-339(d)1(o)-339(\\261mie)-1(c)28(h)28(u,)-338(a\\273e)-339(si\\246)-339(tr)1(z)-1(\\246s)-1(\\252y)-338(ws)-1(zystkie)-338(k)55(a\\252d)1(un)28(y)-338(an)1(i)-338(s)-1(i\\246)-338(s)-1(p)-27(os)-1(t)1(rz)-1(ega)-56(j)1(\\241c)-339(w)]TJ 0 -13.549 Td[(onej)-333(zaba)28(wie)-1(,)-333(j)1(ak)-333(im)-334(p)1(rz)-1(esz)-1(\\252a)-333(ta)-334(k)1(r\\363tk)56(a)-333(no)-28(c.)]TJ 27.879 -13.549 Td[(\\233e)-265(w)-264(mig)-264(osta\\252)-264(z)-265(ob)-27(c)-1(yc)28(h)-264(j)1(e)-1(n)1(o)-264(Jam)27(b)1(ro\\273)-265(s\\241cz)-1(\\241cy)-264(\\015ac)28(h)28(y)-264(do)-264(suc)28(ha,)-264(za\\261)-265(m\\252o)-28(d)1(z)-1(i)]TJ -27.879 -13.55 Td[(p)-27(os)-1(tan)1(o)28(w)-1(i)1(li)-274(zaraz)-274(pr)1(z)-1(enie\\261)-1(\\242)-274(si\\246)-274(na)-274(sw)28(o)-56(je,)-274(M)1(ate)-1(u)1(s)-1(z)-274(p)1(rz)-1(y)1(niew)27(al)1(a\\252)-274(do)-274(p)-27(ozos)-1(tan)1(ia)-274(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-301(na)-300(jak)1(i\\261)-301(cz)-1(as,)-300(ale)-301(Szyme)-1(k)-300(si\\246)-301(u)1(par\\252,)-300(k)28(oni)1(a)-301(p)-27(o\\273yc)-1(zy\\252)-300(o)-28(d)-300(K\\252\\246ba,)-300(s)-1(k)1(rz)-1(y)1(nie)]TJ 0 -13.549 Td[(a)-292(p)-28(o\\261cie)-1(l)1(e)-293(i)-292(s)-1(tat)1(ki)-292(up)1(ak)28(o)27(w)28(a\\252)-292(na)-292(w)27(ozie,)-292(Nas)-1(tu)1(s)-1(i)1(\\246)-293(z)-293(p)1(arad\\241)-292(u)1(s)-1(ad)1(z)-1(i\\252,)-292(matce)-293(pad)1(\\252)-293(d)1(o)]TJ 0 -13.549 Td[(n\\363g,)-365(sz)-1(w)28(agra)-365(uca\\252o)27(w)28(a\\252,)-365(famie)-1(l)1(ian)28(tor)1(n)-365(p)-28(ok\\252on)1(i\\252)-366(si\\246)-366(w)-365(pas,)-366(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-366(si\\246)-1(,)-365(k)28(on)1(ia)]TJ 0 -13.549 Td[(\\261m)-1(ign)1(\\241\\252)-334(i)-333(r)1(usz)-1(y\\252,)-333(a)-333(p)-28(ob)-27(ok)-333(sz)-1(li)-333(o)-28(d)1(pr)1(o)27(w)28(adza)-56(j)1(\\241c)-1(y)84(.)]TJ 27.879 -13.55 Td[(I)-417(wiedl)1(i)-417(si\\246)-417(w)-417(milcz)-1(eni)1(u,)-416(w)-1(\\252a\\261nie)-417(s\\252o\\253ce)-417(c)-1(o)-416(jeno)-416(b)28(y\\252o)-417(si\\246)-417(p)-27(ok)56(az)-1(a\\252o,)-416(p)-28(ola)]TJ -27.879 -13.549 Td[(stan\\246\\252y)-250(w)-251(r)1(o)-1(ziskrzan)28(yc)28(h)-250(rosac)27(h)-250(i)-250(p)1(tasic)27(h)-250(\\261pi)1(e)-1(w)28(aniac)28(h,)-250(zaruc)28(ha\\252y)-250(si\\246)-251(ci\\246\\273)-1(ki)1(e)-251(k\\252osy)]TJ 0 -13.549 Td[(i)-395(w)-1(sz)-1(y)1(s)-1(tk)1(im)-396(\\261)-1(wiatem)-396(b)1(uc)27(h)1(n\\246\\252a)-396(w)28(e)-1(se)-1(ln)1(a)-396(r)1(ado\\261\\242)-397(d)1(ni)1(a,)-396(co)-396(j)1(ak)-396(ten)-395(\\261)-1(wi\\246t)28(y)-396(p)1(ac)-1(ierz)]TJ 0 -13.549 Td[(wion\\241\\252)-333(z)-334(k)56(a\\273dego)-334(\\271d\\271b\\252a)-333(i)-333(unosi\\252)-333(s)-1(i)1(\\246)-334(wraz)-334(ku)-333(n)1(iebu)-333(j)1(as)-1(n)1(e)-1(m)28(u.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-263(za)-263(m\\252ynem,)-263(gd)1(y)-263(d)1(w)27(a)-262(b)-28(o)-27(\\242)-1(ki)-262(j)1(\\246)-1(\\252y)-262(k)28(o\\252o)27(w)28(a\\242)-263(wys)-1(ok)28(o)-262(nad)-262(n)1(imi,)-263(ozw)28(a\\252)-1(a)]TJ -27.879 -13.55 Td[(si\\246)-334(matk)56(a)-334(strze)-1(p)1(uj)1(\\241c)-334(palcami:)]TJ 27.879 -13.549 Td[({)-333(Na)-334(p)1(s)-1(a)-333(ur)1(ok!)-333(Dobr)1(a)-334(wr\\363\\273ba,)-333(b)-27(\\246d\\241)-333(s)-1(i\\246)-333(w)27(ama)-333(dzie)-1(ci)-333(darzy\\242.)]TJ 0 -13.549 Td[(Nastusia)-321(\\271)-1(d)1(z)-1(iebk)28(o)-321(p)-27(o)-28(cz)-1(erwieni\\252a)-321(si\\246)-1(,)-321(a)-321(S)1(z)-1(ymek,)-321(ws)-1(p)1(ie)-1(r)1(a)-56(j)1(\\241c)-322(w)28(\\363z)-322(na)-321(wyb)-27(o-)]TJ -27.879 -13.549 Td[(jac)28(h,)-333(zagw)-1(i)1(z)-1(d)1(a\\252)-334(zuc)27(h)29(w)27(ale)-333(i)-333(hard)1(o)-334(p)-27(oto)-28(czy\\252)-334(\\261lepiami.)]TJ 27.879 -13.549 Td[(Za\\261)-383(ki)1(e)-1(j)-382(j)1(u\\273)-382(s)-1(ami)-382(os)-1(tal)1(i,)-382(Nas)-1(t)1(usia)-382(roz)-1(ejr)1(z)-1(a)28(ws)-1(zy)-382(s)-1(i)1(\\246)-383(p)-27(o)-383(sw)28(oim)-383(n)1(o)27(wym)-382(go-)]TJ -27.879 -13.549 Td[(sp)-28(o)-28(d)1(arst)28(w)-1(i)1(e)-334(rozp\\252ak)56(a\\252a)-334(si\\246)-334(\\273a\\252o\\261)-1(n)1(ie,)-334(a\\273)-333(Szyme)-1(k)-333(krzykn)1(\\241\\252:)]TJ 27.879 -13.55 Td[({)-358(Ni)1(e)-358(bucz,)-358(g\\252up)1(ia!)-357(Dru)1(gie)-358(i)-358(t)28(yl)1(a)-358(ni)1(e)-358(m)-1(a)-55(j\\241!)-357(Je)-1(szc)-1(ze)-358(c)-1(i)-357(b)-28(\\246d\\241)-357(z)-1(azdr)1(o\\261)-1(ci\\252y)-358({)]TJ -27.879 -13.549 Td[(do)-27(da\\252,)-381(a)-382(\\273e)-383(b)29(y\\252)-382(wielce)-383(stru)1(dzon)28(y)-381(i)-382(n)1(iec)-1(o)-381(napi)1(t)27(y)84(,)-381(u)28(w)27(al)1(i\\252)-382(si\\246)-382(w)-382(k)56(\\241c)-1(i)1(e)-382(na)-382(s\\252om)-1(i)1(e)-382(i)]TJ 0 -13.549 Td[(wnet)-386(z)-1(ac)28(hr)1(a)-1(p)1(a\\252,)-386(a)-386(ona)-386(zasiad\\252a)-386(p)-27(o)-28(d)-386(\\261c)-1(i)1(an\\241)-386(i)-386(p)-27(op\\252aki)1(w)27(a\\252a)-386(sp)-28(oziera)-56(j)1(\\241c)-387(n)1(a)-386(bia\\252e)]TJ 0 -13.549 Td[(\\261c)-1(ian)29(y)-334(Li)1(piec)-1(,)-333(wid)1(ne)-334(ze)-334(sad\\363)28(w.)]TJ 27.879 -13.549 Td[(I)-385(n)1(ie)-1(r)1(az)-386(j)1(e)-1(sz)-1(cz)-1(e)-385(p)1(\\252)-1(ak)56(a\\252a)-385(n)1(a)-385(s)-1(w)28(o)-56(j)1(\\241)-385(bi)1(e)-1(d)1(\\246)-1(,)-385(j)1(e)-1(n)1(o)-385(co)-385(ju)1(\\273)-386(coraz)-385(rzadzie)-1(j)1(,)-385(gd)1(y\\273)]TJ -27.879 -13.55 Td[(wie\\261)-293(jakb)28(y)-292(si\\246)-293(z)-1(m\\363)28(wi\\252a)-293(na)-292(ic)27(h)-292(wsp)-28(omo\\273)-1(eni)1(e)-1(.)-292(Na)-56(j)1(pierw)28(e)-1(j)-292(p)1(rzys)-1(z\\252a)-293(K\\252\\246b)-28(o)28(w)28(a)-293(z)-293(k)28(o-)]TJ 0 -13.549 Td[(k)28(osz)-1(k)56(\\241)-262(p)-27(o)-28(d)-261(p)1(ac)27(h\\241)-261(i)-261(s)-1(tad)1(e)-1(m)-262(k)1(urcz\\241te)-1(k)-261(w)-262(k)28(osz)-1(y)1(ku)-261(i)-262(snad)1(\\271)-262(dob)1(ry)-261(z)-1(r)1(obi\\252a)-261(p)-28(o)-27(c)-1(z\\241te)-1(k)1(,)]TJ\nET\nendstream\nendobj\n2164 0 obj <<\n/Type /Page\n/Contents 2165 0 R\n/Resources 2163 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2150 0 R\n>> endobj\n2163 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2168 0 obj <<\n/Length 2324      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(679)]TJ -358.232 -35.866 Td[(b)-27(o)-345(pr)1(a)27(wie)-345(k)56(a\\273)-1(d)1(e)-1(go)-344(dn)1(ia)-345(z)-1(agl)1(\\241da\\252a)-345(d)1(o)-345(ni)1(e)-1(j)-344(kt\\363ra\\261)-345(z)-345(gos)-1(p)-27(o)-28(d)1(y\\253,)-344(a)-345(ni)1(e)-346(z)-345(p)1(r\\363\\273)-1(n)29(ymi)]TJ 0 -13.549 Td[(r\\246k)56(am)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-333(Lud)1(z)-1(ie)-333(k)28(o)-28(c)27(h)1(ane)-1(,)-333(a)-333(cz)-1(ym\\273e)-334(s)-1(i)1(\\246)-334(ja)-333(w)27(am)-333(o)-28(ds\\252u\\273\\246)-334({)-333(s)-1(ze)-1(p)1(ta\\252a)-334(wzru)1(s)-1(zona.)]TJ 0 -13.549 Td[({)-333(A)-334(c)28(ho)-28(\\242b)28(y)-333(dob)1(rym)-333(s)-1(\\252o)28(w)27(em)-334({)-333(o)-28(d)1(par\\252a)-333(Si)1(k)28(orzyna)-333(da)-55(j\\241c)-334(j)1(e)-1(j)-333(k)56(a)28(w)28(a\\252)-334(p)1(\\252)-1(\\363t)1(na.)]TJ 0 -13.549 Td[(Jak)-378(si\\246)-379(d)1(orobisz,)-378(to)-379(o)-27(ddasz)-379(b)1(ie)-1(d)1(ni)1(e)-1(j)1(s)-1(zym)-379({)-378(do)-27(da\\252a)-378(rozs)-1(ap)1(ana)-378(P\\252osz)-1(k)28(o)28(w)27(a)]TJ -27.879 -13.55 Td[(wyci\\241)-28(ga)-56(j)1(\\241c)-334(sp)-28(o)-28(d)-332(z)-1(ap)1(as)-1(ki)-333(n)1(ie)-1(zgorsz)-1(y)-333(k)56(a)28(w)27(a\\252)-333(s)-1(\\252on)1(in)28(y)84(.)]TJ 27.879 -13.549 Td[(I)-369(nani)1(e)-1(\\261li)-369(jej)-369(t)28(yla,)-369(\\273e)-370(m)-1(og\\252o)-369(starcz)-1(y\\242)-370(n)1(a)-369(d\\252ugo,)-369(a)-369(kt\\363rego\\261)-370(zm)-1(i)1(e)-1(rzc)27(h)29(u)-369(Ja-)]TJ -27.879 -13.549 Td[(sie)-1(k)-313(p)1(rzywi\\363)-28(d\\252)-313(im)-313(s)-1(w)28(o)-56(j)1(e)-1(go)-313(Kru)1(c)-1(zk)56(a)-314(i)-313(u)29(w)-1(i)1(\\241z)-1(a)28(ws)-1(zy)-313(go)-314(p)-27(o)-28(d)-313(c)28(ha\\252up)1(\\241)-313(ucie)-1(k)56(a\\252)-313(jakb)29(y)]TJ 0 -13.549 Td[(opar)1(z)-1(on)29(y)83(.)]TJ 27.879 -13.549 Td[(\\221mial)1(i)-429(si\\246)-429(ni)1(e)-1(ma\\252o)-429(rozp)-27(o)27(wiad)1(a)-56(j)1(\\241c)-429(o)-429(t)28(ym)-429(Jagu)1(s)-1(t)28(yn)1(c)-1(e)-429(wraca)-56(j)1(\\241c)-1(ej)-428(z)-429(b)-28(or)1(u,)]TJ -27.879 -13.549 Td[(stara)-333(s)-1(kr)1(z)-1(ywi\\252a)-333(si\\246)-334(wz)-1(gar)1(dli)1(w)-1(i)1(e)-334(i)-333(rze)-1(k\\252a:)]TJ 27.879 -13.55 Td[({)-296(W)-295(przyp)-27(o\\252udn)1(ie)-296(z)-1(b)1(iera\\252)-296(la)-296(ci\\246,)-296(Nas)-1(t)1(u\\261,)-296(jag\\363)-27(dki,)-295(ale)-296(m)-1(atk)56(a)-296(m)28(u)-296(o)-27(debra\\252a.)]TJ\nET\nendstream\nendobj\n2167 0 obj <<\n/Type /Page\n/Contents 2168 0 R\n/Resources 2166 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2166 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2172 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(680)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(42.)]TJ\nET\nendstream\nendobj\n2171 0 obj <<\n/Type /Page\n/Contents 2172 0 R\n/Resources 2170 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2170 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2175 0 obj <<\n/Length 6653      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(43)]TJ/F17 10.909 Tf 0 -73.325 Td[(P)28(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252a)-419(d)1(o)-419(Boryn)1(\\363)27(w)-419(n)1(ies)-1(\\241c)-419(c)-1(ze)-1(r)1(w)27(on)29(yc)27(h)-418(jag\\363)-28(d)-418(la)-419(J\\363zki,)-418(a)-419(\\273)-1(e)-419(w\\252a\\261)-1(n)1(ie)-419(Han-)]TJ 0 -13.549 Td[(k)56(a)-451(doi\\252a)-451(kr)1(o)27(wy)-451(p)1(rze)-1(d)-451(c)28(ha\\252u)1(p\\241,)-451(pr)1(z)-1(y)1(s)-1(iad)1(\\252a)-451(p)-28(ob)-27(ok)-451(na)-451(p)1(rzy\\271)-1(b)1(ie,)-451(rozp)-28(o)28(wiada)-55(j\\241c)]TJ 0 -13.549 Td[(sz)-1(erok)28(o,)-333(jak)-333(to)-333(Nas)-1(t)1(usi\\246)-334(ob)-27(darza)-56(j)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(n)1(a)-334(z\\252o\\261)-1(\\242)-333(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-333(to)-333(rob)1(i\\241)-333({)-334(zak)28(o\\253cz)-1(y)1(\\252)-1(a.)]TJ 0 -13.55 Td[({)-333(Nas)-1(tce)-334(to)-333(z)-1(ar)1(\\363)27(wn)1(o,)-333(ale)-334(trza)-333(b)28(y)-333(i)-333(m)-1(n)1(ie)-334(co)-334(p)-27(oni)1(e)-1(\\261\\242)-334({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(Han)1(k)56(a.)]TJ 0 -13.549 Td[({)-371(Nary)1(c)27(h)28(tu)1(jcie,)-371(to)-371(zanies)-1(\\246)-371({)-371(n)1(as)-1(tr)1(\\246)-1(cz)-1(a\\252a)-371(si\\246)-371(s)-1(k)1(w)27(ap)1(nie,)-371(gd)1(y)-371(z)-371(iz)-1(b)29(y)-371(rozleg\\252)]TJ -27.879 -13.549 Td[(si\\246)-334(s\\252)-1(ab)29(y)83(,)-333(pr)1(os)-1(z\\241c)-1(y)-333(g\\252os)-334(J)1(\\363z)-1(ki)1(:)]TJ 27.879 -13.549 Td[({)-440(Han)28(u\\261,)-440(da)-55(jcie)-441(j)1(e)-1(j)-440(mo)-56(j)1(\\241)-441(maciork)28(\\246!)-440(Zam)-1(r)1(\\246)-441(p)-28(ewnik)1(ie)-1(m,)-440(to)-440(Nas)-1(tu)1(\\261)-441(za)-441(to)]TJ -27.879 -13.549 Td[(zm)-1(\\363)28(wi)-333(z)-1(a)-333(mnie)-334(j)1(aki)-333(pacierz.)]TJ 27.879 -13.549 Td[(T)83(ra\\014)1(\\252o)-371(to)-371(Hance)-372(d)1(o)-371(m)27(y)1(\\261)-1(li)1(,)-371(b)-28(o)-371(zaraz)-371(k)56(az)-1(a\\252a)-371(Wi)1(tk)28(o)27(wi)-371(wzi\\241\\242)-371(prosi\\246)-371(na)-371(p)-27(o-)]TJ -27.879 -13.55 Td[(stronek)-333(i)-333(p)-28(ogn)1(a\\242)-334(do)-333(Nastusi,)-333(gdy)1(\\273)-334(i\\261\\242)-334(s)-1(ame)-1(j)-332(c)-1(ze)-1(go\\261)-334(si\\246)-334(w)28(ago)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[({)-349(Wit)1(e)-1(k,)-348(p)-28(o)28(wiedz)-349(ino,)-349(co)-349(ta)-349(mac)-1(ior)1(k)56(a)-349(o)-28(de)-349(m)-1(n)1(ie!)-349(A)-349(ni)1(e)-1(c)27(h)-348(pr)1(z)-1(yl)1(e)-1(ci)-349(ry)1(c)27(h\\252o,)]TJ -27.879 -13.549 Td[(b)-27(o)-449(j)1(a)-449(si\\246)-449(ju)1(\\273)-449(ruc)28(ha\\242)-449(n)1(ie)-449(p)-27(ore)-1(d)1(z)-1(\\246!)-448({)-449(zas)-1(k)56(ar\\273y\\252a)-448(s)-1(i\\246)-449(b)-27(ole\\261)-1(n)1(ie)-1(,)-448(c)28(horza\\252o)-449(b)-27(o)28(w)-1(i)1(e)-1(m)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(ac)-1(t)28(w)28(o)-254(o)-28(d)-253(t)28(ygo)-27(dni)1(a,)-254(l)1(e)-1(\\273a\\252a)-254(p)-27(o)-254(d)1(rugi)1(e)-1(j)-253(stron)1(ie)-254(c)27(h)1(a\\252)-1(u)1(p)28(y)-253(s)-1(p)1(uc)28(hni)1(\\246)-1(ta,)-253(w)-254(gor)1(\\241c)-1(zc)-1(e)]TJ 0 -13.549 Td[(i)-385(ca\\252a)-385(ob)28(w)27(al)1(ona)-385(kr)1(os)-1(tami,)-385(zrazu)-385(wyn)1(os)-1(i)1(li)-385(j\\241)-384(na)-385(dzie\\253)-385(d)1(o)-385(s)-1(ad)1(u)-385(p)-27(o)-28(d)-385(d)1(rze)-1(w)28(a,)-385(b)-27(o)]TJ 0 -13.55 Td[(sk)55(amla\\252a)-333(o)-334(to)-333(\\273a\\252o\\261)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-390(c)-1(\\363\\273,)-390(kiej)-390(si\\246)-390(tak)-390(p)-27(ogars)-1(za\\252o,)-390(\\273e)-391(Jagu)1(s)-1(t)28(yn)1(k)55(a)-390(wzbron)1(i\\252a)-390(j\\241)-390(wyn)1(os)-1(i\\242)-390(na)]TJ -27.879 -13.549 Td[(p)-27(o)27(wietrze.)]TJ 27.879 -13.549 Td[({)-289(M)1(usis)-1(z)-289(le\\273)-1(e\\242)-289(p)-28(o)-288(c)-1(iem)-1(k)1(u,)-288(b)-28(o)-289(w)-289(s\\252o\\253cu)-289(wsz)-1(y)1(s)-1(tki)1(e)-290(k)1(ros)-1(t)28(y)-288(pad)1(n\\241)-289(n)1(a)-289(w)27(\\241t)1(pia.)]TJ 0 -13.549 Td[(I)-233(l)1(e)-1(\\273a\\252a)-233(sam)-1(ot)1(nie)-233(w)-232(przy\\242m)-1(ion)1(e)-1(j)-232(i)1(z)-1(b)1(ie)-233(p)-27(o)-56(j\\246ku)1(j\\241c)-233(j)1(e)-1(n)1(o)-233(i)-232(s)-1(k)56(ar\\273\\241c)-233(si\\246)-233(c)-1(i)1(c)27(h)28(u)1(\\261)-1(k)28(o,)]TJ -27.879 -13.55 Td[(\\273e)-458(ni)1(e)-458(dop)1(usz)-1(cz)-1(a)-55(j\\241)-457(do)-457(n)1(ie)-1(j)-456(dzie)-1(ci)-457(ni)-457(\\273adn)1(e)-1(j)-456(z)-458(pr)1(z)-1(yj)1(ac)-1(i)1(\\363\\252)-1(ek,)-457(gd)1(y\\273)-458(Jagu)1(s)-1(t)28(yn)1(k)56(a,)]TJ 0 -13.549 Td[(ma)-56(j)1(\\241c)-1(a)-333(j\\241)-333(w)-334(op)1(ie)-1(ce,)-334(k)1(ijasz)-1(k)1(ie)-1(m)-333(o)-28(dgan)1(ia\\252a)-333(k)55(a\\273dego.)]TJ 27.879 -13.549 Td[(A)-397(t)1(e)-1(raz,)-396(s)-1(k)28(oro)-396(ugw)28(arzy\\252a)-397(si\\246)-397(z)-397(Hank)56(\\241,)-396(p)-28(o)-28(d)1(e)-1(tk)1(n\\246\\252a)-397(c)27(h)1(orej)-397(j)1(ag\\363)-28(d)-396(i)-397(wzi\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-387(do)-386(w)-1(y)1(gniatan)1(ia)-387(ma\\261c)-1(i)-386(z)-387(c)-1(zyste)-1(j)-386(gr)1(yc)-1(zanej)-386(m)-1(\\241k)1(i)-387(zarob)1(ionej)-386(ob\\014)1(c)-1(ie)-387(\\261wie)-1(\\273ym)]TJ 0 -13.549 Td[(ni)1(e)-1(solon)28(ym)-337(mas)-1(\\252em)-337(i)-337(sam)27(ymi)-336(\\273)-1(\\363\\252tk)56(ami,)-337(ob)28(w)28(ali\\252a)-337(n)1(i\\241)-337(gr)1(ub)-27(o)-337(t)28(w)27(ar)1(z)-337(i)-337(sz)-1(yj)1(\\246)-337(J\\363z)-1(ki)1(,)]TJ 0 -13.55 Td[(a)-381(na)-381(to)-381(nak\\252ad)1(\\252a)-382(mokry)1(c)27(h)-381(sz)-1(mat,)-381(dziew)27(cz)-1(y)1(na)-381(c)-1(ierp)1(liwie)-382(p)-27(o)-28(d)1(da)28(w)28(a\\252)-1(a)-381(si\\246)-382(lek)28(om,)]TJ 0 -13.549 Td[(jeno)-333(tr)1(w)27(o\\273nie)-334(r)1(oz)-1(p)29(ytuj)1(\\241c)-1(:)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(dziob)-27(\\363)27(w)-333(na)-333(p)-27(olik)56(ac)27(h)1(?)]TJ 0 -13.549 Td[({)-333(Nie)-334(zdrap)1(uj)1(,)-333(to)-334(p)1(rze)-1(j)1(dzie)-334(ci)-333(b)-28(ez)-334(znaku)1(,)-333(jak)-333(Nas)-1(tu)1(s)-1(i)1(.)]TJ 0 -13.549 Td[({)-445(Kiej)-445(t)1(ak)-445(s)-1(w)28(\\246)-1(d)1(z)-1(i)1(,)-445(m)-1(\\363)-55(j)-445(Jezu!)-445(T)83(o)-445(mi)-445(j)1(u\\273)-445(le)-1(p)1(iej)-445(pr)1(z)-1(y)1(w)-1(i)1(\\241\\273)-1(cie)-446(r)1(\\246)-1(ce)-1(,)-444(b)-28(o)-445(n)1(ie)]TJ -27.879 -13.55 Td[(wytrzymam)-1(!)-306({)-306(pr)1(os)-1(i\\252a)-306(\\252z)-1(a)28(w)27(o,)-306(ledwie)-307(wstrzym)27(u)1(j\\241c)-307(si\\246)-307(o)-28(d)-306(d)1(arcia)-307(sk)28(\\363ry)84(,)-306(s)-1(tar)1(a)-307(wy-)]TJ 0 -13.549 Td[(mrucza\\252)-1(a)-410(nad)-410(ni)1(\\241)-411(jak)56(\\241\\261)-411(z)-1(amo)28(w)27(\\246,)-410(ok)55(ad)1(z)-1(i)1(\\252)-1(a)-410(w)-1(y)1(s)-1(u)1(s)-1(zon)28(ym)-411(r)1(oz)-1(c)27(h)1(o)-28(dn)1(iki)1(e)-1(m)-411(i)-410(przy-)]TJ 0 -13.549 Td[(wi\\241za)27(wsz)-1(y)-333(jej)-333(r\\246ce)-334(do)-333(b)-27(ok)28(\\363)27(w)-333(o)-28(desz)-1(\\252a)-333(do)-333(rob)-27(ot)28(y)83(.)]TJ 358.232 -29.888 Td[(681)]TJ\nET\nendstream\nendobj\n2174 0 obj <<\n/Type /Page\n/Contents 2175 0 R\n/Resources 2173 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2173 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2178 0 obj <<\n/Length 9407      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(682)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(43.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(J\\363zk)55(a)-418(le)-1(\\273a\\252a)-419(c)-1(i)1(c)27(ho,)-418(z)-1(as\\252uc)27(h)1(ana)-419(w)-419(b)1(rz\\246)-1(ki)-418(m)27(u)1(c)27(h)-419(i)-418(w)-419(te)-1(n)-418(dziwn)28(y)-419(sz)-1(u)1(m,)-419(c)-1(o)]TJ -27.879 -13.549 Td[(si\\246)-339(jej)-339(ci\\246)-1(gi)1(e)-1(m)-339(p)1(rz)-1(ew)28(ala\\252)-339(p)-28(o)-338(g\\252o)27(wie,)-339(s\\252ys)-1(za\\252a)-339(j)1(ak)-339(pr)1(z)-1(ez)-339(s)-1(en,)-339(\\273e)-339(niekiedy)-338(ktosik)-339(z)]TJ 0 -13.549 Td[(domo)28(wyc)27(h)-321(zagl\\241d)1(a\\252)-322(d)1(o)-322(n)1(ie)-1(j)-320(i)-321(o)-28(dc)28(ho)-28(d)1(z)-1(i\\252)-321(b)-27(e)-1(z)-322(s\\252o)28(w)27(a,)-321(to)-321(si\\246)-322(jej)-321(wid)1(z)-1(ia\\252o,)-321(\\273e)-322(ci\\246)-1(\\273kie)]TJ 0 -13.549 Td[(o)-28(d)-455(ru)1(m)-1(ian)29(yc)27(h)-455(jab)1(\\252)-1(u)1(s)-1(zek)-456(ga\\252\\246)-1(zie)-456(z)-1(wisa)-56(j)1(\\241)-456(nad)-455(ni\\241)-456(tak)-455(nisk)28(o,)-456(a)-456(on)1(a)-456(pr\\363\\273no)-455(s)-1(i\\246)]TJ 0 -13.549 Td[(zryw)28(a)-246(i)-246(dosi\\246)-1(gn)1(\\241\\242)-247(ic)28(h)-246(ni)1(e)-247(p)-27(oredzi,)-246(to)-246(z)-1(n)1(o)28(w)-1(u)1(,)-246(\\273)-1(e)-246(o)28(w)-1(i)1(e)-1(cz)-1(ki)-246(cisn\\241)-246(si\\246)-247(d)1(ok)28(o\\252a)-247(z)-246(jaki)1(m)-1(\\261)]TJ 0 -13.55 Td[(\\273a\\252)-1(osn)28(ym)-333(b)-28(ekiem,)-334(al)1(e)-334(s)-1(k)28(or)1(o)-334(W)1(itek)-334(wsun)1(\\241\\252)-334(si\\246)-334(d)1(o)-334(izb)28(y)84(,)-333(z)-1(ar)1(az)-334(go)-334(r)1(oz)-1(ez)-1(n)1(a\\252a.)]TJ 27.879 -13.549 Td[({)-333(Zap)-28(\\246dzi\\252e)-1(\\261)-333(m)-1(aciork)28(\\246?)-334(C\\363\\273)-334(p)-27(edzia\\252a)-334(Nastusia?)]TJ 0 -13.549 Td[({)-333(T)83(ak)56(a)-334(b)28(y)1(\\252a)-334(r)1(ada)-333(prosiak)28(o)28(wi,)-333(\\273)-1(e)-333(dziw)-334(go)-333(w)-334(ogon)-333(n)1(ie)-334(ca\\252o)28(w)27(a\\252a.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(isz)-334(go,)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(s)-1(i\\246)-333(z)-334(Nas)-1(tu)1(s)-1(i)-333(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a\\252!)]TJ 0 -13.549 Td[({)-333(Pra)28(wd\\246)-333(m)-1(\\363)28(wi\\246!)-333(I)-334(k)56(az)-1(a\\252a)-333(p)-27(e)-1(d)1(z)-1(ie\\242)-1(,)-333(co)-333(jut)1(ro)-333(do)-333(c)-1(i\\246)-333(przylec)-1(i)1(.)]TJ 0 -13.549 Td[(Zac)-1(z\\246\\252)-1(a)-333(si\\246)-334(n)1(agle)-334(rzuca\\242)-334(na)-333(\\252\\363\\273ku)-333(i)-333(trw)28(o\\273)-1(n)1(ie)-334(w)28(o\\252a\\242)-1(:)]TJ 0 -13.55 Td[({)-333(Odp)-27(\\246d\\271)-334(j)1(e)-1(,)-333(b)-27(o)-334(me)-334(zatratu)1(j\\241,)-333(o)-28(d)1(p)-28(\\246d\\271!)-333(Bas)-1(iu)1(c)27(h)1(n)28(y!)-333(B)-1(a\\261!)-333(Ba\\261)-1(!)]TJ 0 -13.549 Td[(I)-326(jakb)29(y)-326(z)-1(asn\\246\\252a,)-326(tak)-326(le\\273)-1(a\\252a)-326(s)-1(p)-27(ok)28(o)-55(jni)1(e)-1(,)-326(Wi)1(te)-1(k)-326(o)-27(dsz)-1(ed\\252,)-326(ale)-326(z)-1(agl\\241d)1(a\\252)-326(do)-326(niej)]TJ -27.879 -13.549 Td[(co)-334(tr)1(o)-28(c)27(h)1(\\246)-1(.)-333(S)1(p)28(yta\\252a)-333(go)-334(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie:)]TJ 27.879 -13.549 Td[({)-333(C)-1(zy)-333(to)-333(ju)1(\\273)-334(p)-28(o\\252edn)1(ie?)]TJ 0 -13.549 Td[({)-333(Kole)-334(p)-27(\\363\\252no)-27(c)27(k)56(a)-334(b)29(y\\242)-334(m)27(u)1(s)-1(i)1(,)-334(wsz)-1(y)1(s)-1(tki)1(e)-334(\\261)-1(p)1(i\\241.)]TJ 0 -13.55 Td[({)-277(Pra)28(wda,)-277(ciem)-1(n)1(o!)-277(Wybi)1(e)-1(r)1(z)-278(wr\\363ble)-277(s)-1(p)-27(o)-28(d)-277(k)56(alenicy)83(,)-277(p)1(isz)-1(cz)-1(\\241)-277(jak)-277(wyp)1(ie)-1(r)1(z)-1(on)1(e)-1(!)]TJ 0 -13.549 Td[(J\\241\\252)-291(c)-1(osik)-291(rozp)-27(o)27(wiad)1(a\\242)-292(o)-291(gni)1(az)-1(dac)28(h,)-291(gd)1(y)-291(z)-1(akr)1(z)-1(y)1(c)-1(za\\252)-1(a)-291(u)1(s)-1(i\\252u)1(j\\241c)-291(s)-1(i\\246)-291(p)-28(o)-28(d)1(ni)1(e)-1(\\261\\242)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-334(s)-1(i)1(w)-1(u)1(la!)-333(Witek,)-333(ni)1(e)-334(pu)1(s)-1(zc)-1(za)-56(j)-332(w)-334(sz)-1(k)28(o)-28(d)1(\\246)-1(,)-333(b)-27(o)-333(c)-1(i\\246)-334(o)-27(c)-1(iec)-334(spier\\241!)]TJ 0 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-334(r)1(az)-1(u)-333(k)56(aza\\252a)-334(m)28(u)-333(bli)1(\\273)-1(ej)-333(pr)1(z)-1(ysi\\241\\261\\242)-334(i)-333(s)-1(zeptem)-334(rozp)-28(o)28(wiad)1(a\\252a:)]TJ 0 -13.549 Td[({)-444(Hank)56(a)-444(m)-1(i)-444(wz)-1(b)1(ran)1(ia)-445(n)1(a)-445(w)28(es)-1(ele)-445(Nastusi,)-444(ale)-445(n)1(a)-445(z\\252o\\261)-1(\\242)-445(p)-27(\\363)-28(d)1(\\246)-445(i)-444(pr)1(z)-1(yb)1(ier\\246)]TJ -27.879 -13.55 Td[(si\\246)-453(w)-452(mo)-28(d)1(ry)-452(gor)1(s)-1(et)-452(i)-452(w)-452(t)1(\\246)-453(ki)1(e)-1(c)28(k)28(\\246)-1(,)-452(com)-452(to)-452(w)-452(ni)1(e)-1(j)-451(b)28(y\\252a)-452(n)1(a)-452(o)-28(dp)1(u\\261c)-1(i)1(e)-1(.)-451(Oc)-1(zy)-452(za)]TJ 0 -13.549 Td[(mn\\241)-459(wyp)1(atrz\\241,)-459(zobacz)-1(y)1(s)-1(z!)-459(Wi)1(te)-1(k,)-458(nar)1(w)-1(i)1(j)-459(mi)-459(j)1(ab\\252ek,)-459(n)1(iec)27(h)-458(c)-1(i\\246)-459(in)1(o)-459(Han)1(k)55(a)-458(nie)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)27(h)28(wyci!)-419(Ju)1(\\261)-1(ci,)-419(\\273e)-420(jeno)-419(z)-419(par)1(obk)56(am)-1(i)-419(b)-27(\\246d\\246)-419(ta\\253co)27(w)28(a\\252a!)-419({)-419(pr)1(z)-1(ymil)1(k\\252a)-419(nagle)-419(i)]TJ 0 -13.549 Td[(zas)-1(n)1(\\246)-1(\\252a,)-356(za\\261)-356(Witek)-356(j)1(u\\273)-356(ca\\252ym)-1(i)-355(go)-28(d)1(z)-1(in)1(ami)-356(pr)1(z)-1(y)-355(niej)-355(s)-1(i)1(adyw)28(a\\252,)-356(ga\\252\\246z)-1(i\\241)-355(bron)1(i\\252)-356(o)-28(d)]TJ 0 -13.549 Td[(m)27(u)1(c)27(h)-366(i)-366(w)27(o)-28(d)1(y)-366(p)-28(o)-28(d)1(a)28(w)27(a\\252,)-366(c)-1(zu)28(w)28(a)-56(j\\241c)-367(n)1(ad)-366(ni\\241)-366(kiej)-366(k)28(ok)28(os)-1(z,)-367(b)-27(o)-367(Han)1(k)56(a)-367(osta)27(wi\\252a)-366(go)-367(w)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)1(ie)-334(do)-333(p)-27(om)-1(o)-27(c)-1(y)84(,)-333(a)-334(b)28(y)1(d\\252o)-333(pasa\\252)-334(za)-334(n)1(iego)-334(wraz)-333(z)-1(e)-334(sw)27(oi)1(m)-334(K\\252\\246b)-28(\\363)28(w)-333(Mac)-1(i)1(u\\261.)]TJ 27.879 -13.549 Td[(Zrazu)-342(pr)1(z)-1(yk)1(rzy\\252o)-343(si\\246)-343(c)28(h\\252opak)28(o)28(wi)-342(z)-1(a)-342(lase)-1(m)-342(i)-342(s)-1(w)28(a)27(w)28(ol\\241,)-342(ale)-342(tak)-343(go)-342(strasz)-1(n)1(ie)]TJ -27.879 -13.549 Td[(roz\\273)-1(al)1(i\\252a)-322(J\\363zina)-321(c)27(hor)1(oba,)-321(\\273)-1(e)-322(r)1(ad)-322(b)29(y\\252)-322(jej)-321(nieba)-321(przyc)28(h)28(yli\\242)-322(i)-321(c)-1(i)1(\\246)-1(giem)-322(jeno)-321(przem)27(y-)]TJ 0 -13.549 Td[(\\261liw)28(a\\252)-1(,)-333(cz)-1(y)1(m)-334(b)28(y)-333(j)1(\\241)-334(zaba)28(wi\\242)-334(i)-333(pr)1(z)-1(y)1(w)-1(i)1(e)-1(\\261\\242)-334(do)-333(\\261m)-1(iec)27(h)29(u.)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-334(d)1(ni)1(a)-334(p)1(rzyni\\363s\\252)-334(ca\\252e)-334(stadk)28(o)-333(m\\252)-1(o)-27(dyc)28(h)-333(kur)1(opatek.)]TJ 0 -13.55 Td[(J\\363zia,)-333(p)-28(og\\252ad)1(\\271)-334(pt)1(as)-1(zki,)-333(to)-333(c)-1(i)-333(zapiu)1(k)56(a)-56(j\\241,)-333(p)-27(og\\252ad\\271.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(mam)-334(to)-333(c)-1(zym)-334({)-333(j\\246kn)1(\\246)-1(\\252a)-333(un)1(os)-1(z\\241c)-334(g\\252o)28(w)27(\\246.)]TJ 0 -13.549 Td[(I)-331(gdy)-331(o)-28(d)1(wi\\241z)-1(a\\252)-331(jej)-331(r)1(\\246)-1(ce)-1(,)-331(wz)-1(i)1(\\246)-1(\\252a)-331(trze)-1(p)-27(o)-28(cz)-1(\\241ce)-332(si\\246)-332(p)1(tasz)-1(ki)-331(w)-331(z)-1(d)1(r\\246t)28(w)-1(i)1(a\\252)-1(e,)-331(b)-27(e)-1(z-)]TJ -27.879 -13.549 Td[(silne)-333(d\\252oni)1(e)-334(c)-1(i)1(s)-1(n)1(\\241c)-334(je)-334(d)1(o)-333(t)27(w)28(arzy)-333(i)-333(o)-28(c)-1(z\\363)28(w.)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(s)-1(i\\246)-333(w)-334(n)1(ic)27(h)-333(d)1(usz)-1(a)-333(t\\252ucz)-1(e,)-333(tak)-333(s)-1(i)1(\\246)-334(b)-28(o)-55(ja)-55(j\\241,)-333(b)1(ie)-1(d)1(ot)28(y!)-333(Pu)1(\\261)-1(\\242)-334(j)1(e)-1(,)-333(Wi)1(te)-1(k)1(!)]TJ 0 -13.549 Td[({)-333(Sam)-334(wyt)1(ropi)1(\\252)-1(em)-334(i)-333(b)-27(\\246)-1(d)1(\\246)-334(to)-333(pu)1(s)-1(zc)-1(za\\252)-334({)-333(b)1(roni)1(\\252)-334(si\\246)-1(,)-333(ale)-333(je)-334(wyp)1(u\\261c)-1(i)1(\\252)-1(.)]TJ 0 -13.55 Td[(A)-305(z)-1(n)1(o)27(wu)-305(ki)1(e)-1(d)1(y\\261)-306(pr)1(z)-1(yn)1(i\\363s\\252)-306(m\\252o)-28(dego)-306(za)-56(j)1(\\241c)-1(zk)56(a)-306(i)-305(trzyma)-56(j)1(\\241c)-306(go)-306(za)-306(u)1(s)-1(zy)-305(p)-28(osa-)]TJ -27.879 -13.549 Td[(dzi\\252)-333(pr)1(z)-1(ed)-333(ni\\241)-333(n)1(a)-334(p)1(ie)-1(r)1(z)-1(yn)1(ie.)]TJ 27.879 -13.549 Td[({)-333(T)83(ru)1(s)-1(ia)-333(k)28(o)-28(c)28(hana,)-333(tr)1(usiuc)28(hn)1(a,)-334(o)-27(d)-333(m)-1(at)1(uli)-333(ci\\246)-334(wz)-1(i)1(e)-1(n)1(i,)-333(s)-1(ieroto,)-333(o)-27(d)-333(m)-1(atu)1(li.)]TJ 0 -13.549 Td[(Szepta\\252a)-268(cis)-1(n)1(\\241c)-268(go)-268(do)-268(p)1(iers)-1(i)-267(kiej)-268(d)1(z)-1(i)1(e)-1(ci\\241tk)28(o,)-268(a)-267(g\\252)-1(aszc)-1(z\\241c)-269(i)1(,)-268(up)1(ies)-1(zc)-1(za)-56(j)1(\\241c)-1(,)-267(ale)]TJ -27.879 -13.549 Td[(za)-56(j\\241c)-291(b)-27(e)-1(k)1(n\\241\\252)-291(j)1(akb)28(y)-291(r)1(oz)-1(d)1(z)-1(i)1(e)-1(ran)29(y)-291(i)-291(wyr)1(w)27(a\\252)-291(si\\246)-291(z)-291(r\\241k,)-290(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-291(do)-291(sieni)-290(w)-291(c)-1(a\\252e)-291(s)-1(tad)1(o)]TJ 0 -13.55 Td[(ku)1(r,)-410(\\273)-1(e)-410(rozpierzc)27(h\\252y)-410(si\\246)-411(ze)-411(s)-1(r)1(ogim)-411(wrzaskiem)-1(,)-410(b)1(uc)27(h)1(n\\241\\252)-410(na)-410(ganek)-410(i)-410(prze)-1(z)-410(\\212ap)-28(\\246)]TJ 0 -13.549 Td[(dr)1(z)-1(emi\\241c)-1(ego)-342(w)-342(s)-1(ieni)-341(rymn\\241\\252)-342(d)1(o)-343(sadu)1(,)-342(p)1(ie)-1(s)-342(p)-27(ogna\\252,)-342(a)-342(za)-342(nimi)-342(Wit)1(e)-1(k)-342(z)-342(krzyki)1(e)-1(m)]TJ\nET\nendstream\nendobj\n2177 0 obj <<\n/Type /Page\n/Contents 2178 0 R\n/Resources 2176 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2176 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2181 0 obj <<\n/Length 9796      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(683)]TJ -358.232 -35.866 Td[(ni)1(e)-1(ma\\252ym,)-246(z)-246(cz)-1(ego)-246(u)1(c)-1(zyni)1(\\252)-246(s)-1(i)1(\\246)-246(taki)-245(harmid)1(e)-1(r,)-245(j)1(a\\273)-1(e)-246(Hank)56(a)-245(przylec)-1(i)1(a\\252a)-246(z)-246(p)-27(o)-28(dw)28(\\363rza,)]TJ 0 -13.549 Td[(za\\261)-334(J\\363z)-1(k)56(a)-333(\\261)-1(mia\\252a)-333(s)-1(i)1(\\246)-334(do)-333(rozpu)1(ku.)]TJ 27.879 -13.549 Td[({)-333(Mo\\273e)-334(go)-334(p)1(ies)-334(z)-1(\\252ap)1(a\\252,)-334(co?)-334({)-333(p)28(y)1(ta\\252a)-334(p)-27(otem)-334(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-334(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie.)]TJ 0 -13.549 Td[({)-326(A)-326(j)1(u\\261c)-1(i)1(,)-326(obacz)-1(y)1(\\252)-326(m)27(u)-325(jeno)-326(p)-27(o)-28(d)1(ogonie,)-326(za)-56(j)1(\\241c)-327(wp)1(ad\\252)-326(w)28(e)-327(zb)-27(o\\273)-1(e,)-326(jak)-325(k)56(am)-1(ie\\253)]TJ -27.879 -13.549 Td[(w)28(e)-334(w)27(o)-27(d\\246,)-334(t)1(\\246)-1(gi)-333(wywijacz)-1(!)-333(Ni)1(e)-334(m)-1(ar)1(k)28(o)-28(\\242)-334(si\\246,)-334(J)1(\\363z)-1(ia,)-333(p)1(rz)-1(y)1(nies)-1(\\246)-333(c)-1(i)-333(co)-334(d)1(ru)1(gie)-1(go.)]TJ 27.879 -13.55 Td[(I)-493(znosi\\252,)-493(co)-493(jeno)-493(m\\363g\\252:)-493(to)-492(prze)-1(p)1(i\\363rk)1(i)-493(j)1(a)-1(k)1(b)28(y)-493(z\\252ote)-1(m)-493(op)1(r\\363sz)-1(one,)-493(t)1(o)-493(je\\273)-1(a,)]TJ -27.879 -13.549 Td[(to)-378(osw)27(o)-55(jon)1(\\241)-378(w)-1(i)1(e)-1(wi\\363rk)28(\\246,)-378(k)1(t\\363ra)-378(strasz)-1(n)1(ie)-379(d)1(o)-378(\\261)-1(miec)27(h)28(u)-377(s)-1(k)56(ak)56(a\\252a)-378(p)-27(o)-378(iz)-1(b)1(ie,)-378(to)-378(m\\252o)-28(de)]TJ 0 -13.549 Td[(jask)28(\\363\\252ki,)-260(tak)-260(\\273a\\252o\\261)-1(n)1(ie)-261(p)1(iu)1(k)55(a)-55(j\\241ce)-1(,)-260(\\273e)-261(stare)-260(z)-261(kr)1(z)-1(yk)1(ie)-1(m)-260(wdzie)-1(r)1(a\\252y)-260(s)-1(i\\246)-260(do)-260(izb)28(y)84(,)-260(a\\273)-261(m)27(u)]TJ 0 -13.549 Td[(J\\363zk)55(a)-341(k)56(az)-1(a\\252a)-341(o)-28(d)1(da\\242,)-342(t)1(o)-342(in)1(s)-1(ze)-342(r\\363\\273no\\261cie)-1(,)-341(n)1(ie)-342(sp)-28(omin)1(a)-56(j\\241c)-341(ju)1(\\273)-1(,)-341(c)-1(o)-341(j)1(ab\\252e)-1(k)-341(i)-341(gru)1(s)-1(zek)]TJ 0 -13.549 Td[(nan)1(os)-1(i)1(\\252)-370(t)28(yla,)-369(i)1(le)-370(mogli)-369(z)-1(j)1(e)-1(\\261\\242)-370(kry)1(jomo)-370(p)1(rze)-1(d)-369(starsz)-1(y)1(m)-1(i)1(,)-370(al)1(e)-370(ju)1(\\273)-370(j\\241)-369(to)-369(nie)-369(ba)28(wi\\252o,)]TJ 0 -13.549 Td[(b)-27(o)-334(cz)-1(\\246sto)-334(p)1(atrza\\252a,)-334(j)1(akb)28(y)-333(n)1(ie)-334(miark)1(uj\\241c,)-333(i)-333(o)-28(dwraca\\252a)-333(s)-1(i\\246)-333(z)-1(n)28(u)1(\\273)-1(on)1(a)-334(i)-333(n)1(ie)-1(c)28(h\\246tna.)]TJ 27.879 -13.55 Td[({)-448(Nie)-449(c)28(hc\\246)-1(,)-448(p)1(rzyni)1(e)-1(\\261)-448(c)-1(o)-448(no)28(w)28(e)-1(go!)-448({)-448(mat)28(yjasi\\252a)-448(o)-28(d)1(w)-1(r)1(ac)-1(a)-55(j\\241c)-448(o)-28(c)-1(zy)-448(i)-448(na)28(w)28(e)-1(t)]TJ -27.879 -13.549 Td[(ni)1(e)-376(p)1(atrz\\241c)-376(n)1(a)-375(b)-27(o)-28(\\242)-1(k)56(a,)-375(k)1(t\\363ren)-375(si\\246)-376(gr)1(a)-56(j)1(da\\252)-375(p)-27(o)-375(izbie,)-375(ku)1(\\252)-375(p)-28(o)-375(wsz)-1(y)1(s)-1(tki)1(c)27(h)-374(garnk)56(ac)27(h)]TJ 0 -13.549 Td[(i)-418(na)-419(d)1(armo)-419(pr)1(z)-1(y)1(c)-1(za)-56(j)1(a\\252)-419(s)-1(i)1(\\246)-420(p)-27(o)-28(d)-418(d)1(rz)-1(wiami)-418(na)-419(\\212ap)-27(\\246,)-419(d)1(opiero)-419(k)1(ie)-1(j)-418(p)-27(e)-1(wn)1(e)-1(go)-418(raz)-1(u)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ni\\363s\\252)-334(j)1(e)-1(j)-333(\\273yw)28(\\241)-334(\\273o\\252n\\246,)-333(rozc)27(hm)28(ur)1(z)-1(y\\252a)-333(s)-1(i)1(\\246)-334(nieco.)]TJ 27.879 -13.549 Td[({)-333(Je)-1(zu)-333(k)28(o)-28(c)28(han)28(y)84(,)-333(a)-334(to)-333(\\261licz)-1(n)1(o\\261)-1(ci,)-333(kieb)28(y)-333(malo)28(w)27(an)1(ie)-1(!)]TJ 0 -13.55 Td[({)-333(A)-334(p)1(iln)28(u)1(j)-333(si\\246)-1(,)-333(b)28(y)1(c)27(h)-333(ci\\246)-334(w)-334(n)1(os)-334(n)1(ie)-334(dziob)1(n\\246\\252a,)-334(z\\252a)-334(k)1(ie)-1(j)-332(pies)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(n)1(a)27(w)28(e)-1(t)-333(si\\246)-334(n)1(ie)-334(rwie)-333(ucie)-1(k)56(a\\242,)-333(os)-1(w)28(o)-56(j)1(ona)-333(c)-1(zy)-333(c)-1(o?)]TJ 0 -13.549 Td[({)-333(Skr)1(z)-1(yd)1(\\252a)-334(ma)-333(i)-333(kulasy)-333(s)-1(p)-27(\\246tane,)-333(a)-334(\\261lepie)-333(z)-1(ala\\252em)-334(jej)-333(sm)-1(o\\252\\241.)]TJ 0 -13.549 Td[(Ba)27(wil)1(i)-340(si\\246)-340(ptaki)1(e)-1(m)-340(cz)-1(as)-340(jaki)1(\\261)-1(,)-339(ale)-340(\\273)-1(o\\252na)-339(w)27(ci\\241\\273)-340(b)28(y\\252a)-340(n)1(ie)-1(r)1(uc)28(homa)-340(i)-340(sm)27(u)1(tna,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(c)27(h)1(c)-1(ia\\252a)-333(je\\261)-1(\\242)-333(i)-333(z)-1(d)1(e)-1(c)27(h)1(\\252a)-334(k)1(u)-333(wie)-1(l)1(kiem)27(u)-333(strapi)1(e)-1(n)1(iu)-333(ca\\252)-1(ego)-333(dom)28(u.)]TJ 27.879 -13.55 Td[(I)-333(tak)-333(im)-334(sc)27(ho)-27(dzi\\252y)-333(dni)1(e)-1(.)]TJ 0 -13.549 Td[(A)-407(na)-407(\\261)-1(wiec)-1(ie)-408(ci\\246giem)-408(pra\\273y\\252o,)-407(z)-1(a\\261)-408(czym)-408(bl)1(i\\273)-1(ej)-407(ku)-407(\\273niw)28(om)-1(,)-407(t)28(ym)-408(j)1(e)-1(szc)-1(ze)-1(k)]TJ -27.879 -13.549 Td[(bar)1(z)-1(ej)-259(w)-1(zmaga\\252a)-260(s)-1(i)1(\\246)-260(s)-1(p)1(ie)-1(k)28(ota,)-259(\\273)-1(e)-260(j)1(u\\273)-260(w)-260(d)1(z)-1(i)1(e)-1(\\253)-259(ni)1(e)-261(sp)-27(os)-1(\\363b)-259(si\\246)-260(b)28(y\\252o)-260(p)-27(ok)56(az)-1(a\\242)-260(w)-260(p)-27(olu)1(,)]TJ 0 -13.549 Td[(a)-351(n)1(o)-28(ce)-351(te)-1(\\273)-351(n)1(ie)-351(pr)1(z)-1(yn)1(os)-1(i)1(\\252y)-351(o)-28(c)28(h\\252o)-28(d)1(y)83(,)-350(s)-1(z\\252y)-350(b)-28(o)28(wiem)-351(du)1(s)-1(zne)-351(i)-350(nagrzane,)-350(\\273)-1(e)-351(n)1(a)27(w)28(et)-351(w)]TJ 0 -13.549 Td[(sadac)27(h)-374(nie)-375(mo\\273)-1(n)1(a)-375(b)28(y\\252o)-375(wyspa\\242)-375(z)-376(gor)1(\\241c)-1(a,)-374(prosto)-375(kl)1(\\246)-1(sk)55(a)-375(w)28(ali\\252a)-375(si\\246)-375(na)-375(wie\\261)-1(,)-374(tra-)]TJ 0 -13.55 Td[(wy)-342(ju)1(\\273)-343(tak)-342(wypal)1(i\\252o,)-342(\\273)-1(e)-342(b)28(yd)1(\\252)-1(o)-342(g\\252o)-28(d)1(ne)-343(wr)1(ac)-1(a\\252o)-342(z)-343(p)1(a\\261)-1(n)1(ik)28(\\363)27(w)-342(i)-342(ry)1(c)-1(za\\252o)-343(w)-342(ob)-27(orac)27(h)1(,)]TJ 0 -13.549 Td[(zie)-1(mni)1(aki)-277(w)-1(i)1(\\246)-1(d)1(\\252)-1(y)84(,)-277(z)-1(a)28(wi\\241za\\252y)-278(si\\246)-278(ki)1(e)-1(b)28(y)-277(or)1(z)-1(es)-1(zki)-277(i)-277(tak)-278(osta\\252y)84(,)-278(p)1(rzypal)1(one)-278(o)28(ws)-1(y)-277(led-)]TJ 0 -13.549 Td[(wie)-305(o)-28(dr)1(os)-1(\\252y)-305(o)-28(d)-304(zie)-1(mi,)-305(j)1(\\246)-1(czm)-1(ion)1(a)-305(p)-27(o\\273)-1(\\363\\252k\\252y)84(,)-305(z)-1(a\\261)-305(\\273yta)-305(s)-1(c)28(h\\252y)-305(p)1(rze)-1(d)-304(c)-1(zas)-1(em,)-305(bi)1(e)-1(lej\\241c)]TJ 0 -13.549 Td[(p\\252on)1(n)28(ymi)-269(k\\252osam)-1(i)1(.)-269(T)83(rap)1(ili)-269(si\\246)-270(t)28(ym)-269(n)1(ie)-1(ma\\252o,)-269(ze)-270(sm)27(ut)1(na)28(w)27(\\241)-269(n)1(adzie)-1(j)1(\\241)-269(s)-1(p)-27(ozie)-1(r)1(a)-56(j)1(\\241c)-270(w)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(n)-309(zac)27(h)1(\\363)-28(d,)-309(czy)-310(n)1(ie)-310(i)1(dzie)-310(n)1(a)-310(o)-27(dmian\\246,)-309(ale)-310(n)1(ieb)-28(o)-309(w)28(c)-1(i\\241\\273)-309(b)28(y\\252o)-309(b)-28(ez)-310(c)27(h)1(m)27(u)1(r)-309(i)-309(c)-1(a\\252e)]TJ 0 -13.55 Td[(jak)1(b)28(y)-303(w)-304(szklanej,)-303(b)1(ia\\252a)28(w)27(ej)-303(p)-27(o\\273)-1(o)-27(dze)-1(,)-303(a)-303(s)-1(\\252o\\253)1(c)-1(e)-303(z)-1(ac)28(ho)-28(d)1(z)-1(i\\252o)-303(cz)-1(yste)-304(i)-302(b)28(y)-303(na)-55(jl\\273e)-1(j)1(s)-1(zym)]TJ 0 -13.549 Td[(ob\\252o)-27(c)-1(zkiem)-334(ni)1(e)-334(pr)1(z)-1(y\\242mione.)]TJ 27.879 -13.549 Td[(Niejeden)-421(j)1(u\\273)-421(s)-1(k)56(am)-1(l)1(a\\252)-421(s)-1(erdecz)-1(n)1(ie)-422(p)1(rze)-1(d)-421(ob)1(razam)-1(i)-420(do)-421(Pr)1(z)-1(emie)-1(n)1(ienia)-421(P)28(a\\253)1(-)]TJ -27.879 -13.549 Td[(skiego,)-390(nic)-390(jedn)1(ak)-390(ni)1(e)-391(p)-27(om)-1(aga\\252o,)-390(p)-27(ola)-390(mgla\\252y)-390(coraz)-391(b)1(arze)-1(j)1(,)-390(u)28(wi\\246d\\252y)84(,)-390(a)-390(niedo)-55(j-)]TJ 0 -13.549 Td[(rza\\252y)-447(o)28(w)28(o)-28(c)-447(opad)1(a\\252)-447(z)-447(drzew)-1(,)-446(s)-1(t)1(udn)1(ie)-447(wys)-1(y)1(c)27(ha\\252y)84(,)-447(a)-446(na)28(w)28(e)-1(t)-447(w)-446(s)-1(ta)28(wie)-447(ub)29(y\\252o)-447(t)28(yle)]TJ 0 -13.549 Td[(w)28(o)-28(dy)84(,)-310(co)-310(tartak)-309(nie)-310(m\\363g\\252)-310(ju)1(\\273)-311(r)1(obi\\242)-310(i)-310(m\\252yn)-309(r\\363)28(wnie\\273)-310(s)-1(ta\\252)-310(za)28(w)27(art)28(y)-309(na)-310(g\\252u)1(c)27(ho,)-309(wi\\246)-1(c)]TJ 0 -13.55 Td[(nar)1(\\363)-28(d)-237(przywiedzion)28(y)-237(do)-238(r)1(oz)-1(p)1(ac)-1(zy)-238(z\\252)-1(o\\273y\\252)-238(si\\246)-238(na)-237(w)27(ot)28(yw)28(\\246)-238(z)-239(wysta)28(w)-1(i)1(e)-1(n)1(ie)-1(m,)-237(na)-238(kt)1(\\363r\\241)]TJ 0 -13.549 Td[(ze)-1(b)1(ra\\252a)-334(si\\246)-334(ca\\252a)-334(wie\\261.)]TJ 27.879 -13.549 Td[(A)-260(mo)-28(d)1(lili)-259(si\\246)-260(tak)-260(gor)1(\\241c)-1(o)-260(i)-259(ze)-261(wsz)-1(y)1(s)-1(tki)1(e)-1(go)-259(s)-1(erca,)-260(co)-260(i)-259(k)55(amie\\253)-259(b)28(y)-260(si\\246)-260(ul)1(ito)28(w)27(a\\252.)]TJ 0 -13.549 Td[(I)-432(s)-1(n)1(ad\\271)-433(P)29(an)-432(Je)-1(zus)-432(p)-28(of)1(olgo)28(w)27(a\\252)-432(s)-1(w)28(e)-1(m)28(u)-432(mi\\252os)-1(i)1(e)-1(rd)1(z)-1(i)1(u,)-432(c)27(h)1(o)-28(cia\\273)-433(b)-27(o)27(wiem)-433(n)1(a-)]TJ -27.879 -13.549 Td[(za)-56(ju)1(trz)-458(zrob)1(i\\252o)-458(si\\246)-458(tak)-457(gor\\241co,)-457(z)-1(n)1(o)-56(jn)1(ie,)-458(d)1(usz)-1(n)1(o)-458(i)-457(par)1(no,)-457(ja\\273e)-458(pt)1(ac)-1(t)28(w)28(o)-458(p)1(ada\\252o)]TJ 0 -13.55 Td[(ze)-1(mglone,)-306(kro)28(wy)-306(\\273)-1(a\\252o\\261ni)1(e)-307(rycz)-1(a\\252y)-306(p)-27(o)-306(pa\\261nik)56(ac)27(h)1(,)-306(k)28(onie)-306(nie)-306(c)27(hcia\\252y)-306(wyc)27(h)1(o)-28(dzi\\242)-307(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at,)-370(a)-369(lu)1(dzie,)-370(p)1(rze)-1(m\\246)-1(cze)-1(n)1(i)-370(d)1(o)-369(os)-1(tatk)56(a,)-369(b)-27(e)-1(z)-370(si\\252,)-369(tu\\252ali)-369(si\\246)-370(p)-27(o)-369(s)-1(p)1(ie)-1(k)1(\\252)-1(y)1(c)27(h)-369(sadac)27(h)]TJ\nET\nendstream\nendobj\n2180 0 obj <<\n/Type /Page\n/Contents 2181 0 R\n/Resources 2179 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2179 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2184 0 obj <<\n/Length 9662      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(684)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(43.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(o)-56(j)1(\\241c)-253(si\\246)-252(wyjr)1(z)-1(e\\242)-252(c)27(ho)-27(\\242)-1(b)28(y)-251(do)-252(ogr)1(o)-28(du)1(,)-252(al)1(e)-253(j)1(ak)28(o\\261)-252(w)-252(s)-1(amo)-252(pr)1(z)-1(yp)-27(o\\252ud)1(ni)1(e)-1(,)-251(gdy)-252(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(k)28(o)-328(z)-1(d)1(a\\252)-1(o)-328(si\\246)-329(ju)1(\\273)-329(pu)1(s)-1(zc)-1(za\\242)-329(ostatni\\241)-328(par)1(\\246)-329(w)-329(t)28(ym)-328(bia\\252ym,)-328(rozm)-1(igot)1(an)28(ym)-329(wrz\\241tku)1(,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(\\242)-1(mi\\252o)-249(s)-1(i\\246)-249(nagl)1(e)-250(s)-1(\\252o\\253)1(c)-1(e)-249(i)-249(z)-1(m\\246tnia\\252o,)-249(k)1(ie)-1(b)29(y)-249(w)27(e\\253)-249(kto)-249(rzuci\\252)-249(pr)1(z)-1(y)1(gar\\261)-1(ci\\241)-249(p)-27(opio\\252u)1(,)]TJ 0 -13.549 Td[(a)-238(p)-27(okr)1(\\363tc)-1(e)-238(zah)28(u)1(c)-1(za\\252o)-238(k)56(a)-56(j)1(\\261)-238(w)-1(y)1(s)-1(ok)28(o,)-237(jak)28(ob)28(y)-237(stado)-237(ptact)28(w)27(a)-237(w)-1(i)1(e)-1(lgac)28(hn)28(y)1(m)-1(i)-237(skrzyd\\252a-)]TJ 0 -13.549 Td[(mi,)-316(a)-317(nap)-27(\\246c)-1(znia\\252e)-317(sino\\261ci\\241)-317(c)28(hm)27(u)1(ry)-316(nad)1(c)-1(i)1(\\241)-28(ga\\252y)-317(ze)-317(ws)-1(zys)-1(t)1(kic)27(h)-316(stron)1(,)-317(op)1(usz)-1(cz)-1(a)-55(j\\241c)]TJ 0 -13.55 Td[(si\\246)-334(coraz)-334(n)1(i\\273)-1(ej)-333(i)-333(gro\\271niej.)]TJ 27.879 -13.549 Td[(St)1(rac)27(h)-333(wion)1(\\241\\252,)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(pr)1(z)-1(ycic)28(h\\252o)-333(i)-334(stan)1(\\246)-1(\\252o)-333(w)-334(p)1(rz)-1(y)1(ta)-56(j)1(on)28(ym)-334(d)1(ygo)-28(cie.)]TJ 0 -13.549 Td[(Zah)28(u)1(rk)28(ota\\252y)-358(dalekie)-359(gr)1(z)-1(mot)28(y)83(,)-358(z)-1(erw)28(a\\252)-359(si\\246)-359(kr)1(\\363tki)-358(w)-1(i)1(atr,)-358(p)-28(o)-358(dr)1(ogac)27(h)-358(wz)-1(n)1(io-)]TJ -27.879 -13.549 Td[(s\\252)-1(y)-391(si\\246)-392(s)-1(k)1(\\252)-1(\\246bi)1(one)-392(tu)1(m)-1(an)29(y)83(,)-391(s)-1(\\252o\\253)1(c)-1(e)-392(rozla\\252o)-391(s)-1(i\\246)-392(k)1(ie)-1(b)28(y)-391(\\273\\363\\252tk)28(o)-392(w)-392(p)1(ias)-1(k)1(u,)-391(\\261)-1(ciem)-1(n)1(ia\\252o)]TJ 0 -13.549 Td[(rap)1(te)-1(m)-278(i)-277(na)-277(niebi)1(e)-279(zaroi\\252y)-277(s)-1(i)1(\\246)-278(ro)-56(j)1(e)-278(b\\252ysk)55(a)28(wic,)-278(j)1(akb)28(y)-277(kto)-278(zamigota\\252)-278(ogni)1(s)-1(t)28(ymi)-277(p)-28(o-)]TJ 0 -13.549 Td[(stronk)56(ami;)-307(i)-307(p)1(ie)-1(r)1(ws)-1(zy)-307(pior)1(un)-306(trzas)-1(n)1(\\241\\252)-308(k)56(a)-56(j)1(\\261)-308(b)1(lisk)28(o,)-307(ja\\273e)-308(l)1(udzie)-307(p)-28(o)28(wybi)1(e)-1(gali)-306(prze)-1(d)]TJ 0 -13.55 Td[(c)27(h)1(a\\252up)28(y)84(.)]TJ 27.879 -13.549 Td[(Naraz)-268(s)-1(k)28(ot\\252o)28(w)28(a\\252o)-269(si\\246)-268(w)-1(szys)-1(tk)28(o)-268(d)1(o)-268(dn)1(a,)-268(s)-1(\\252o\\253)1(c)-1(e)-268(z)-1(gas\\252o,)-268(ucz)-1(yn)1(i\\252)-268(s)-1(i)1(\\246)-269(d)1(z)-1(ik)1(i)-268(m)-1(\\241t)]TJ -27.879 -13.549 Td[(i)-279(r)1(oz)-1(sz)-1(al)1(a\\252)-1(a)-278(s)-1(i\\246)-279(tak)56(a)-279(za)27(wieru)1(c)27(h)1(a,)-279(\\273)-1(e)-279(w)-279(sk)28(o\\252)-1(t)1(uni)1(on)28(yc)27(h)-278(mrok)56(ac)27(h)-278(la\\252y)-279(si\\246)-279(jeno)-279(stru)1(gi)]TJ 0 -13.549 Td[(o\\261le)-1(p)1(ia)-56(j)1(\\241c)-1(y)1(c)27(h)-288(jasno\\261c)-1(i,)-288(bi\\252y)-288(pior)1(un)28(y)84(,)-289(gr)1(z)-1(mot)28(y)-289(p)1(rze)-1(w)28(ala\\252y)-289(si\\246)-289(p)-28(o)-288(niebi)1(e)-1(,)-288(s)-1(zumia\\252a)]TJ 0 -13.549 Td[(ul)1(e)-1(w)28(a)-334(i)-333(j)1(\\246)-1(cz)-1(a\\252y)-333(wic)28(hry)-333(i)-333(dr)1(z)-1(ew)27(a.)]TJ 27.879 -13.55 Td[(Pi)1(orun)29(y)-393(ju)1(\\273)-394(b)1(i\\252y)-393(j)1(e)-1(d)1(e)-1(n)-392(z)-1(a)-393(d)1(rugi)1(m)-1(,)-392(ja\\273e)-394(o)-28(cz)-1(y)-392(\\261)-1(lepi)1(\\252o,)-393(i)-393(spada\\252a)-393(u)1(lew)27(a,)-393(\\273e)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(ata)-334(n)1(ie)-334(mo\\273)-1(n)1(a)-333(b)28(y\\252o)-334(d)1(o)-56(j)1(rze)-1(\\242,)-333(z)-1(a\\261)-334(stron)1(ami)-334(p)-27(osz)-1(\\252y)-333(grad)1(y)83(.)]TJ 27.879 -13.549 Td[(Burza)-383(trw)28(a\\252a)-384(mo\\273e)-384(z)-384(go)-28(d)1(z)-1(i)1(n\\246,)-383(a\\273)-384(z)-1(b)-27(o\\273a)-384(si\\246)-383(p)-28(ok\\252ad)1(\\252y)-383(i)-383(drogami)-383(p)-27(o)-28(c)-1(i)1(e)-1(k\\252y)]TJ -27.879 -13.549 Td[(ca\\252)-1(e)-273(rze)-1(ki)-273(spi)1(e)-1(n)1(ionej)-273(w)28(o)-28(dy)84(,)-273(a)-273(c)-1(o)-273(pr)1(z)-1(es)-1(ta\\252o)-273(n)1(a)-274(c)28(h)28(wil\\246)-274(i)-273(zacz)-1(yn)1(a\\252o)-274(si\\246)-273(w)-1(y)1(ja\\261nia\\242,)-273(to)]TJ 0 -13.549 Td[(zno)28(wu)-286(gr)1(z)-1(mia\\252o,)-286(j)1(akb)28(y)-285(t)28(ys)-1(i\\241ce)-286(w)27(oz\\363)28(w)-286(p)-28(\\246dzi\\252o)-286(p)-27(o)-286(zm)-1(ar)1(z)-1(\\252ej)-286(gr)1(ud)1(z)-1(i,)-285(i)-286(n)1(o)27(wy)-285(des)-1(zc)-1(z)]TJ 0 -13.55 Td[(la\\252)-333(jak)-333(z)-334(ce)-1(b)1(ra.)]TJ 27.879 -13.549 Td[(Z)-443(trw)28(og\\241)-444(wyzierano)-443(na)-443(\\261w)-1(i)1(at,)-443(tu)-443(i)-443(o)27(wd)1(z)-1(ie)-443(ju\\273)-443(p)-28(ozapal)1(ano)-443(lampki)-443(\\261pie-)]TJ -27.879 -13.549 Td[(w)28(a)-56(j\\241c:)-442(\\377)-55(P)28(o)-28(d)-442(Tw)28(o)-56(j\\241)-442(ob)1(ron)1(\\246)-1(\",)-442(gd)1(z)-1(ie)-442(z)-1(n)1(\\363)28(w)-443(p)-27(o)28(w)-1(y)1(nosz)-1(on)1(o)-442(na)-442(pr)1(z)-1(y\\271b)28(y)-442(ob)1(razy)-442(la)]TJ 0 -13.549 Td[(obr)1(on)28(y)-301(pr)1(z)-1(ed)-301(nies)-1(zcz)-1(\\246\\261)-1(ciem)-1(,)-301(ale)-302(d)1(z)-1(i\\246ki)-301(Bogu)-301(bu)1(rz)-1(a)-301(pr)1(z)-1(ec)27(h)1(o)-28(dzi\\252a)-301(nie)-302(wyr)1(z)-1(\\241d)1(z)-1(iw-)]TJ 0 -13.549 Td[(sz)-1(y)-287(wi\\246)-1(k)1(s)-1(zyc)27(h)-287(sz)-1(k)28(\\363)-28(d)1(,)-287(dopi)1(e)-1(r)1(o)-288(kiej)-287(s)-1(i)1(\\246)-288(ju)1(\\273)-288(pra)28(wie)-288(d)1(o)-288(cna)-287(usp)-28(ok)28(oi\\252o)-287(i)-288(p)1(ada\\252)-287(des)-1(zc)-1(z)]TJ 0 -13.55 Td[(coraz)-329(dr)1(obn)1(ie)-1(j)1(s)-1(zy)83(,)-328(z)-329(j)1(akiej\\261)-329(ostatni)1(e)-1(j)-328(c)27(h)1(m)27(u)1(ry)-328(z)-1(wies)-1(za)-56(j)1(\\241c)-1(ej)-328(s)-1(i)1(\\246)-329(nad)-328(ws)-1(i)1(\\241)-329(trzasn\\241\\252)]TJ 0 -13.549 Td[(pi)1(orun)-332(w)-334(sto)-28(do\\252\\246)-334(w)28(\\363)-56(j)1(to)28(w)27(\\241.)]TJ 27.879 -13.549 Td[(Buc)27(h)1(n\\246\\252y)-449(p)1(\\252om)-1(i)1(e)-1(n)1(ie)-449(a)-449(d)1(ym)27(y)-448(i)-448(w)-449(mig)-449(ca\\252a)-449(sto)-28(d)1(o\\252a)-449(stan\\246\\252a)-449(w)-449(ogn)1(iu,)-448(na)]TJ -27.879 -13.549 Td[(ws)-1(i)-499(ze)-1(r)1(w)27(a\\252)-499(s)-1(i)1(\\246)-500(s)-1(t)1(rac)27(h)1(liwy)-499(wrz)-1(ask)-499(i)-499(kto)-499(jeno)-499(m\\363g\\252,)-499(le)-1(cia\\252)-499(do)-499(p)-28(o\\273aru)1(,)-499(ale)-500(an)1(i)]TJ 0 -13.549 Td[(mo)27(wy)-417(b)28(y\\252o)-418(o)-417(rato)28(w)28(aniu)1(,)-418(p)1(ali\\252a)-418(si\\246)-418(o)-28(d)-417(g\\363ry)-417(do)-417(do\\252u)-417(kieb)28(y)-418(t)1(a)-418(ku)1(pa)-418(zw)27(al)1(on)28(yc)27(h)]TJ 0 -13.55 Td[(sz)-1(cz)-1(ap)1(,)-307(t)1(o)-307(An)28(tek)-306(z)-307(Mateusz)-1(em)-307(i)-306(dru)1(gie)-307(b)1(roni)1(li)-306(jeno)-306(z)-1(a)28(wz)-1(i\\246cie)-307(Koz\\252)-1(o)28(w)28(e)-1(j)-306(c)28(ha\\252up)29(y)]TJ 0 -13.549 Td[(i)-371(i)1(nsz)-1(yc)28(h)-371(b)1(ud)1(ynk)28(\\363)28(w;)-371(szc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(m,)-371(co)-371(ni)1(e)-372(b)1(rak)28(o)28(w)28(a\\252)-1(o)-370(w)27(o)-28(d)1(y)-371(i)-370(b\\252ota)-371(n)1(a)-371(d)1(ro)-28(d)1(z)-1(e,)-371(b)-27(o)]TJ 0 -13.549 Td[(ju)1(\\273)-467(p)-28(on)1(ie)-1(k)1(t\\363re)-467(dac)28(h)28(y)-467(zac)-1(zyn)1(a\\252)-1(y)-466(s)-1(i)1(\\246)-468(k)1(urzy\\242)-467(i)-467(g\\246s)-1(to)-466(le)-1(cia\\252y)-467(skry)-466(na)-467(n)1(a)-56(j)1(bli)1(\\273)-1(sz)-1(e)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(\\261)-1(cia.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)1(a)-403(d)1(om)-1(a)-402(nie)-402(b)28(y\\252o,)-402(p)-28(o)-55(jec)27(h)1(a\\252)-403(b)28(y\\252)-402(jes)-1(zc)-1(ze)-403(ran)1(o)-403(d)1(o)-403(gmin)29(y)83(,)-402(z)-1(a\\261)-402(w)27(\\363)-55(jto)28(w)27(a)]TJ -27.879 -13.549 Td[(sro)-28(d)1(z)-1(e)-362(lam)-1(en)28(to)28(w)28(a\\252)-1(a)-362(b)1(iega)-56(j\\241c)-362(dok)28(o\\252a)-362(kiej)-362(ta)-362(r)1(oz)-1(gd)1(ak)55(an)1(a)-362(k)28(ok)28(os)-1(z;)-362(wi\\246)-1(c)-362(kiedy)-362(j)1(u\\273)]TJ 0 -13.55 Td[(min\\246\\252o)-325(ni)1(e)-1(b)-27(e)-1(zpiecz)-1(e\\253st)28(w)27(o)-325(i)-324(z)-1(acz)-1(yn)1(ali)-325(si\\246)-325(rozc)27(ho)-27(dzi\\242)-1(,)-324(pr)1(z)-1(ysun)1(\\246)-1(\\252a)-325(si\\246)-325(do)-325(n)1(ie)-1(j)-324(Ko-)]TJ 0 -13.549 Td[(z\\252)-1(o)28(w)28(a)-334(i)-333(u)1(j\\241)28(ws)-1(zy)-333(s)-1(i\\246)-333(p)-28(o)-27(d)-333(b)-28(ok)1(i)-334(zakr)1(z)-1(ycz)-1(a\\252a)-333(ur)1(\\241)-28(gliwie:)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(isz)-1(,)-333(d)1(a\\252)-334(ci)-333(P)28(an)-333(Jez)-1(u)1(s)-334(rad)1(\\246)-1(,)-333(p)1(ani)-333(w)27(\\363)-55(jto)28(w)28(a,)-333(da\\252!)-333(Za)-334(mo)-56(j)1(\\241)-333(krzywd\\246!)]TJ 0 -13.549 Td[(I)-244(b)28(y)1(\\252)-1(ob)29(y)-244(dosz)-1(\\252o)-244(d)1(o)-244(bi)1(tki,)-244(gd)1(y\\273)-244(w)27(\\363)-55(jto)28(w)28(a)-244(s)-1(k)28(o)-27(c)-1(zy\\252a)-244(do)-244(n)1(iej)-244(z)-244(pazurami,)-243(le)-1(d)1(wie)]TJ -27.879 -13.549 Td[(An)28(tek)-222(z)-1(d)1(\\241\\273)-1(y\\252)-222(je)-223(rozdzieli\\242)-223(i)-222(tak)-223(p)1(rzy)-223(t)28(y)1(m)-223(s)-1(kr)1(z)-1(ycza\\252)-223(Koz\\252o)27(w)28(\\241,)-222(\\273)-1(e)-223(kiej)-222(pi)1(e)-1(s)-223(k)28(op)1(ni\\246t)28(y)]TJ 0 -13.55 Td[(wr\\363)-28(ci\\252a)-333(p)-28(o)-27(d)-333(s)-1(w)28(o)-56(j)1(\\241)-334(c)28(ha\\252up)-27(\\246)-334(w)28(arcz)-1(\\241c)-334(j)1(e)-1(n)1(o)-333(a)-334(d)1(os)-1(zc)-1(ze)-1(k)1(uj\\241c:)]TJ 27.879 -13.549 Td[({)-333(Dm)-1(i)1(j)-333(s)-1(i)1(\\246)-1(,)-333(pan)1(i)-333(w)27(\\363)-55(jto)28(w)28(o,)-334(d)1(mij,)-333(o)-28(d)1(bij)1(\\246)-334(j)1(a)-334(ci)-333(s)-1(w)28(o)-56(j)1(e)-334(z)-334(pr)1(e)-1(ce)-1(n)29(te)-1(m.)]TJ\nET\nendstream\nendobj\n2183 0 obj <<\n/Type /Page\n/Contents 2184 0 R\n/Resources 2182 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2169 0 R\n>> endobj\n2182 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2187 0 obj <<\n/Length 9961      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(685)]TJ -330.353 -35.866 Td[(Ale)-339(ni)1(kto)-339(j)1(e)-1(j)-338(nie)-339(s\\252uc)27(h)1(a\\252,)-339(sto)-28(d)1(o\\252)-1(a)-338(s)-1(i\\246)-339(d)1(opali\\252a,)-338(pr)1(z)-1(yw)28(alil)1(i)-339(b\\252otem)-339(dymi\\241ce)]TJ -27.879 -13.549 Td[(si\\246)-354(z)-1(gli)1(s)-1(zc)-1(za)-354(i)-353(p)-28(or)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(il)1(i)-354(si\\246)-354(do)-354(d)1(om\\363)27(w,)-353(os)-1(ta\\252a)-354(j)1(e)-1(n)1(o)-354(w)28(\\363)-56(j)1(to)28(w)27(a)-354(b)1(iadol)1(\\241c)-354(prze)-1(d)]TJ 0 -13.549 Td[(An)28(tk)1(ie)-1(m,)-269(kt\\363ry)-269(wys\\252uc)28(ha\\252)-270(cierp)1(liwie,)-270(co)-269(m)-1(\\363g\\252,)-269(na)-269(resz)-1(t\\246)-270(mac)27(h)1(n\\241\\252)-269(r\\246k)55(\\241)-269(i)-269(p)-27(os)-1(ze)-1(d)1(\\252.)]TJ 27.879 -13.549 Td[(Burza)-322(s)-1(i)1(\\246)-323(ju)1(\\273)-323(p)1(rze)-1(to)-27(c)-1(zy\\252a)-322(na)-322(b)-27(ory)-322(i)-322(lasy)83(,)-322(p)-27(ok)56(az)-1(a\\252o)-322(si\\246)-323(s\\252o\\253ce)-1(,)-322(p)-27(o)-322(mo)-28(dr)1(ym)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)1(ie)-244(przec)-1(i\\241)-27(ga\\252)-1(y)-243(s)-1(t)1(ada)-244(b)1(ia\\252yc)27(h)-243(c)27(h)1(m)27(u)1(r,)-243(z)-1(a\\261piew)27(a\\252y)-243(ptak)1(i,)-244(p)-27(o)28(wie)-1(tr)1(z)-1(e)-244(b)28(y)1(\\252)-1(o)-243(rze)-1(\\271w)27(e)]TJ 0 -13.55 Td[(i)-333(c)27(h)1(\\252o)-28(dn)1(a)27(w)28(e,)-334(l)1(udzie)-334(za\\261)-334(wyc)28(ho)-28(d)1(z)-1(il)1(i)-333(s)-1(p)1(usz)-1(cz)-1(a\\242)-334(w)28(o)-28(d)1(y)-334(i)-333(r)1(\\363)27(wn)1(a\\242)-334(wyrwy)84(.)]TJ 27.879 -13.549 Td[(An)28(tek)-378(p)1(ra)28(w)-1(i)1(e)-379(p)1(rze)-1(d)-377(s)-1(am\\241)-378(c)27(h)1(a\\252)-1(u)1(p\\241)-378(n)1(atkn)1(\\241\\252)-379(si\\246)-378(niesp)-28(o)-28(d)1(z)-1(i)1(anie)-378(na)-378(Jagu)1(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(sz)-1(\\252a)-477(z)-478(k)28(os)-1(zykiem)-478(i)-477(mot)28(yc)-1(zk)56(\\241,)-477(p)-28(ozdr)1(o)27(wi\\252)-477(j\\241)-477(s)-1(k)1(w)27(ap)1(nie,)-477(ale)-478(sp)-28(o)-55(jrza\\252a)-478(wil)1(c)-1(zymi)]TJ 0 -13.549 Td[(\\261le)-1(p)1(iami)-333(i)-334(p)1(rze)-1(sz)-1(\\252a)-333(b)-27(e)-1(z)-334(s\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[({)-334(Cie)-1(,)-334(j)1(ak)55(a)-334(h)1(arna!)-334({)-334(mru)1(kn\\241\\252)-334(rozgniew)27(an)29(y)-334(i)-334(s)-1(p)-27(os)-1(tr)1(z)-1(eg\\252s)-1(zy)-334(J\\363zk)28(\\246)-335(w)-335(op)1(\\252ot-)]TJ -27.879 -13.549 Td[(k)56(ac)27(h)-333(p)-27(o)28(w)-1(sta\\252)-333(na)-333(ni\\241)-333(srogo,)-333(\\273)-1(e)-333(\\252)-1(azi)-333(p)-27(o)-334(wilgo)-27(c)-1(i.)]TJ 27.879 -13.55 Td[(Dzie)-1(w)28(cz)-1(yn)1(ie)-313(b)-28(o)28(wiem)-314(b)29(y\\252o)-313(o)-313(t)28(yle)-313(lepiej,)-312(\\273)-1(e)-313(mog\\252)-1(a)-312(c)-1(a\\252e)-313(dn)1(ie)-314(l)1(e)-1(\\273e)-1(\\242)-313(w)-313(s)-1(ad)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(kr)1(os)-1(t)28(y)-471(s)-1(i\\246)-472(j)1(u\\273)-472(p)-27(o)-28(d)1(goi\\252y)-472(gal)1(anc)-1(i)1(e)-472(i)-472(p)1(rzys)-1(c)28(h\\252y)84(,)-472(n)1(ie)-472(os)-1(t)1(a)27(wia)-55(j\\241c)-472(\\273adn)28(y)1(c)27(h)-471(\\261)-1(l)1(ad\\363)28(w,)]TJ 0 -13.549 Td[(tote\\273)-329(jeno)-328(u)1(krad)1(kiem)-329(Jagust)28(yn)1(k)55(a)-328(sm)-1(ar)1(o)27(w)28(a\\252a)-328(j\\241)-328(m)-1(a\\261c)-1(i)1(\\241,)-328(gdy\\273)-328(Han)28(usia)-328(krzywi\\252a)]TJ 0 -13.549 Td[(si\\246)-334(na)-333(wielki)-333(rozc)27(h)1(\\363)-28(d)-333(mas)-1(\\252a)-333(i)-333(ja)-56(j)1(e)-1(k)1(.)]TJ 27.879 -13.549 Td[(I)-498(le)-1(\\273a\\252a)-499(se)-499(tak)-498(dobr)1(z)-1(ej\\241c)-499(z)-499(w)28(olna)-498(i)-498(pra)28(wie)-499(sam)-1(i)1(utk)56(a)-499(d)1(nie)-499(ca\\252e)-1(,)-498(Wi)1(te)-1(k)]TJ -27.879 -13.55 Td[(b)-27(o)27(wiem)-389(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-390(d)1(o)-389(kr\\363)28(w,)-389(cz)-1(ase)-1(m)-389(jeno)-389(p)1(rzylec)-1(ia\\252a)-389(kt\\363r)1(a)-389(przyj)1(ac)-1(i\\363\\252k)56(a)-389(na)-389(k)1(r\\363tk)56(\\241)]TJ 0 -13.549 Td[(p)-27(ogw)27(ar)1(\\246)-1(,)-300(to)-301(Ro)-28(c)27(h)1(o)-301(p)-27(os)-1(iedzia\\252)-301(j)1(ak)56(\\241)-301(c)27(h)28(wil)1(\\246)-1(,)-300(to)-301(stara)-301(Jagata)-300(rozp)-28(o)28(wiedzia\\252a)-301(jedn)1(o)]TJ 0 -13.549 Td[(i)-350(t)1(o)-350(s)-1(amo:)-349(jak)28(o)-350(z)-350(p)-27(e)-1(wno\\261ci\\241)-350(zam)-1(r)1(z)-1(e)-350(w)28(e)-351(\\273ni)1(w)27(a)-350(w)-350(K)1(\\252\\246)-1(b)-27(o)27(w)28(ej)-350(i)1(z)-1(b)1(ie)-350(i)-350(p)-27(o)-350(gosp)-28(o)-28(d)1(ar-)]TJ 0 -13.549 Td[(sku;)-309(a)-310(g\\252\\363)28(wnie)-309(prze)-1(sta)28(w)27(a\\252a)-309(z)-310(\\212ap\\241)-309(nieo)-28(d)1(s)-1(t\\246pn)1(ie)-310(w)28(aruj)1(\\241c)-1(ym)-309(i)-310(z)-310(b)-27(o)-28(\\242kiem)-1(,)-309(kt)1(\\363)-1(r)1(e)-1(n)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252)-334(n)1(a)-334(w)28(o\\252anie,)-333(i)-333(z)-334(pt)1(ak)55(ami,)-333(co)-334(si\\246)-334(b)28(y)1(\\252y)-334(zlat)28(yw)28(a\\252y)-333(do)-333(kru)1(s)-1(zyn)-333(c)27(h)1(leba.)]TJ 27.879 -13.55 Td[(Kt\\363r)1(e)-1(go\\261)-376(d)1(nia,)-375(gdy)-375(w)-376(c)27(h)1(a\\252)-1(u)1(pi)1(e)-377(n)1(ie)-376(b)28(y\\252o)-375(nik)28(ogo,)-375(z)-1(a)-55(jr)1(z)-1(a\\252a)-376(d)1(o)-376(n)1(ie)-1(j)-375(Jagu)1(s)-1(ia)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(nosz)-1(\\241c)-343(c)-1(a\\252\\241)-342(gar\\261\\242)-344(k)56(ar)1(m)-1(elk)28(\\363)28(w,)-343(ale)-343(n)1(im)-343(J\\363z)-1(k)56(a)-342(z)-1(d)1(\\241\\273)-1(y\\252a)-343(d)1(z)-1(i)1(\\246)-1(k)28(o)28(w)28(a\\242)-1(,)-342(rozle)-1(g\\252)-342(s)-1(i\\246)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-334(g\\252os)-334(Hank)1(i,)-333(a)-334(Jagn)1(a)-333(pierzc)27(hn)1(\\246)-1(\\252a)-333(sp\\252os)-1(zona.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(c)-1(i)-333(j)-333(b)-27(\\246dzie)-334(na)-333(zdro)28(wie!)-333({)-334(za)28(w)27(o\\252a\\252a)-333(przez)-334(p\\252ot)-333(i)-333(z)-1(n)1(ikn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[(Lec)-1(ia\\252a)-333(do)-333(br)1(ata)-334(n)1(ios\\241c)-334(m)27(u)-333(cosik)-333(w)-334(zanad)1(rz)-1(u)1(.)]TJ 0 -13.55 Td[(Zas)-1(t)1(a\\252)-1(a)-279(Nas)-1(tu)1(s)-1(i\\246)-280(p)1(rz)-1(y)-279(kro)28(wie)-280(c)27(h)1(lip)1(a)-56(j\\241cej)-280(z)-280(c)-1(ebr)1(atki,)-279(Szymon)-280(sta)28(w)-1(i)1(a\\252)-280(jak)56(\\241\\261)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(bud)1(\\363)28(w)-1(k)28(\\246)-333(i)-334(sielni)1(e)-334(gwiz)-1(d)1(a\\252.)]TJ 27.879 -13.549 Td[({)-333(Macie)-334(ju)1(\\273)-334(kr)1(o)27(w)28(\\246)-1(?)-333({)-333(z)-1(d)1(umia\\252a)-334(si\\246)-334(n)1(iez)-1(mierni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(mam)27(y)1(!)-333(C)-1(o,)-333(n)1(ie)-334(\\261licz)-1(n)1(a?)-334({)-333(m)-1(\\363)28(wi\\252a)-333(z)-334(p)28(yc)28(h\\241)-333(Nas)-1(tu)1(s)-1(i)1(a.)]TJ 0 -13.549 Td[({)-333(Sieln)1(a)-334(kr)1(o)28(w)27(a,)-333(m)27(u)1(s)-1(i)-333(b)28(y)1(\\242)-334(z)-334(d)1(w)27(orskic)28(h,)-333(ki)1(e)-1(d)1(y)-334(k)1(upi)1(li\\261ta?)]TJ 0 -13.55 Td[({)-301(Ju)1(\\261)-1(ci,)-301(co)-301(kro)28(w)28(a)-301(nasz)-1(a,)-300(c)27(ho)-27(\\242)-302(n)1(ie)-301(kup)-27(o)28(w)27(ali)1(m)-1(!)-300(Jak)-301(ci)-301(ws)-1(zystk)28(o)-301(rozp)-28(o)28(wiem)-1(,)]TJ -27.879 -13.549 Td[(to)-307(si\\246)-308(z\\252api)1(e)-1(sz)-308(za)-307(g\\252o)27(w)28(\\246)-307(i)-307(ni)1(e)-308(d)1(as)-1(z)-307(w)-1(i)1(ary!)-307(A)-307(t)1(o)-307(w)27(cz)-1(or)1(a)-56(j)-306(jak)28(o\\261)-307(na)-307(\\261w)-1(i)1(taniu)-306(p)-28(o)-27(c)-1(zu-)]TJ 0 -13.549 Td[(\\252am,)-313(\\273e)-313(c)-1(osik)-312(tak)-313(si\\246)-313(c)-1(o)-27(c)27(ha)-312(o)-313(w)28(\\246)-1(gie\\252,)-312(ja\\273e)-314(si\\246)-313(b)1(uda)-312(z)-1(atr)1(z)-1(\\246s)-1(\\252a,)-312(m)27(y)1(\\261)-1(l\\246)-313(sobie,)-312(p)-28(\\246dz\\241)]TJ 0 -13.549 Td[(na)-260(p)1(a\\261)-1(n)1(iki)-259(i)-260(\\261)-1(win)1(ia)-260(j)1(a)-1(k)56(a\\261)-260(p)-27(o)-28(des)-1(z\\252a)-260(wytrze)-1(\\242)-260(s)-1(i)1(\\246)-261(z)-260(b\\252ota.)-260(P)1(rzy\\252o\\273)-1(y)1(\\252am)-261(si\\246)-260(i)-260(jes)-1(zcz)-1(ek)]TJ 0 -13.549 Td[(ni)1(e)-346(usn\\246\\252am)-1(,)-345(a)-345(tu)-345(zno)28(wu)-345(cos)-1(ik)-345(p)-27(oryk)1(uj)1(e)-346(z)-346(cic)27(h)1(a.)-345(Wyc)27(h)1(o)-28(dz\\246,)-346(p)1(atrz\\246)-1(,)-345(k)1(ro)28(w)27(a)-345(s)-1(t)1(oi)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(w)-1(i)1(\\241z)-1(ana)-340(d)1(o)-340(dr)1(z)-1(wi,)-340(k\\252ak)-339(k)28(onicz)-1(yn)29(y)-340(le\\273)-1(y)-340(p)1(rze)-1(d)-339(ni\\241,)-340(wymion)1(a)-340(m)-1(a)-340(w)28(e)-1(zbr)1(ane)-340(i)]TJ 0 -13.55 Td[(wyci\\241)-28(ga)-305(d)1(o)-305(m)-1(n)1(ie)-305(g\\246)-1(b)1(ul\\246.)-305(P)1(rze)-1(tar)1(\\252am)-306(o)-27(c)-1(zy)83(,)-304(b)-28(o)-305(mi)-305(si\\246)-305(z)-1(d)1(a\\252o,)-305(\\273e)-306(mn)1(ie)-306(j)1(e)-1(szc)-1(ze)-306(\\261pi)1(k)]TJ 0 -13.549 Td[(mro)-28(cz)-1(y)84(,)-382(ale)-383(n)1(ie,)-382(\\273)-1(yw)28(a)-382(kro)28(w)28(a)-382(s)-1(toi,)-382(p)-27(ory)1(kuj)1(e)-383(i)-382(li)1(\\273)-1(e)-383(me)-383(p)-27(o)-382(pal)1(c)-1(ac)27(h)1(.)-382(Ju\\261ci,)-382(b)28(y\\252am)]TJ 0 -13.549 Td[(p)-27(e)-1(wna,)-260(\\273)-1(e)-261(si\\246)-261(o)-28(db)1(i\\252a)-261(o)-28(d)-260(s)-1(tad)1(a,)-261(S)1(z)-1(ymek)-261(te\\273)-262(p)-27(o)28(wiada:)-260(z)-1(araz)-261(tu)-260(p)-27(o)-261(ni\\241)-261(p)1(rzylec)-1(\\241!)-260(T)83(o)]TJ 0 -13.549 Td[(mnie)-345(j)1(e)-1(n)1(o)-345(k)28(orci\\252o,)-344(\\273)-1(e)-345(b)28(y)1(\\252)-1(a)-344(pr)1(z)-1(ywi\\241zana.)-344(Jak\\273e)-1(,)-344(sam)-1(a)-344(s)-1(i\\246)-345(p)1(rze)-1(ciek)-345(n)1(a)-345(p)-27(os)-1(tr)1(onek)]TJ 0 -13.549 Td[(ni)1(e)-350(w)-1(zi\\246\\252)-1(a.)-349(Ale)-350(p)1(rz)-1(esz)-1(\\252o)-350(p)-27(o\\252ud)1(nie)-350(i)-349(nik)1(to)-350(p)-27(o)-350(ni)1(\\241)-350(ni)1(e)-350(przysz)-1(ed\\252,)-349(w)-1(y)1(doi\\252am,)-350(\\273e)-1(b)29(y)]TJ 0 -13.55 Td[(jej)-255(ul)1(\\273)-1(y\\242,)-255(b)-28(o)-255(ju)1(\\273)-256(m)-1(l)1(e)-1(k)28(o)-255(gub)1(i\\252a)-256(z)-256(cyc)27(k)28(\\363)28(w.)-255(Przes)-1(ze)-1(d)1(\\252)-256(wiec)-1(z\\363r,)-255(pr)1(z)-1(es)-1(z\\252a)-256(i)-255(no)-27(c)-1(,)-255(rozp)28(y-)]TJ 0 -13.549 Td[(t)28(yw)28(a\\252am)-292(s)-1(i)1(\\246)-292(na)-291(ws)-1(i)1(,)-292(p)29(yta\\252am)-292(n)1(a)27(w)28(e)-1(t)-291(d)1(w)27(or)1(s)-1(ki)1(e)-1(go)-291(paste)-1(r)1(z)-1(a,)-291(n)1(ikto)-291(ni)1(e)-292(s)-1(\\252ysza\\252)-1(,)-291(\\273e)-1(b)29(y)]TJ\nET\nendstream\nendobj\n2186 0 obj <<\n/Type /Page\n/Contents 2187 0 R\n/Resources 2185 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2185 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2191 0 obj <<\n/Length 9372      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(686)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(43.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(k)28(om)27(u)-386(kr)1(o)27(w)28(a)-387(zgin\\246\\252a.)-387(S)1(tary)-386(K\\252\\241b)-387(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-386(\\273)-1(e)-387(to)-386(m)-1(o\\273e)-388(b)29(y\\242)-387(jak)56(a\\261)-387(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(s)-1(k)56(a)]TJ 0 -13.549 Td[(spra)28(w)28(a)-364(i)-364(lepi)1(e)-1(j)-363(kro)28(w)28(\\246)-364(z)-1(apr)1(o)28(w)27(ad)1(z)-1(i\\242)-364(d)1(o)-364(k)56(a)-1(n)1(c)-1(elar)1(ii!)-364(\\233al)-363(m)-1(i)-363(ju)1(\\261)-1(ci)-364(b)28(y)1(\\252o,)-364(ale)-364(tru)1(dn)1(o,)]TJ 0 -13.549 Td[(w)-334(p)1(rzyp)-27(o\\252udn)1(ie)-334(p)1(rzyc)27(h)1(o)-28(dzi)-333(Ro)-28(c)27(h)1(o)-334(i)-333(m\\363)28(w)-1(i)1(:)]TJ 27.879 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ciw)28(a\\261)-334(i)-333(p)-28(otr)1(z)-1(ebn)1(ic)27(k)56(a,)-333(to)-333(c)-1(i\\246)-333(P)28(an)-333(Jez)-1(u)1(s)-334(kro)28(w)28(\\241)-334(p)-27(ob)1(\\252)-1(ogos\\252a)28(w)-1(i)1(\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(k)1(ro)28(wy)-334(p)-27(ew)-1(n)1(ie)-334(z)-334(n)1(ieba)-333(s)-1(p)1(ada)-55(j\\241,)-333(na)28(w)28(e)-1(t)-333(g\\252up)1(i)-333(nie)-333(u)28(wie)-1(r)1(z)-1(y)84(.)]TJ 0 -13.55 Td[(O\\261m)-1(i)1(a\\252)-334(si\\246)-334(n)1(a)-334(to)-333(i)-333(na)-333(o)-28(d)1(c)27(ho)-27(dn)28(y)1(m)-334(p)-27(o)27(wieda:)]TJ 0 -13.549 Td[({)-333(Kro)28(w)28(a)-334(w)28(as)-1(za,)-333(nie)-333(b)-28(\\363)-55(jcie)-334(si\\246)-1(,)-333(n)1(ikt)-333(jej)-333(w)28(am)-334(ni)1(e)-334(o)-28(d)1(bierze)-1(!)]TJ 0 -13.549 Td[(Zrozumia\\252am,)-317(co)-317(o)-28(d)-316(niego,)-317(p)1(ad\\252am)-317(m)27(u)-316(do)-317(n)1(\\363g)-317(dzi\\246k)28(o)28(w)27(a\\242,)-317(ale)-317(si\\246)-318(wyr)1(w)27(a\\252.)]TJ 0 -13.549 Td[({)-280(A)-280(j)1(ak)-280(sp)-28(otk)56(acie)-280(pana)-279(Jac)27(k)56(a)-280({)-280(p)-27(o)27(wieda)-280(z)-280(p)1(rz)-1(e\\261m)-1(iec)27(h)1(e)-1(m)-280({)-280(to)-280(m)28(u)-280(za)-280(kr)1(o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-334(dzi\\246kuj)1(c)-1(i)1(e)-1(,)-333(b)-27(o)-334(w)28(as)-334(jesz)-1(cz)-1(e)-334(k)1(ijem)-334(p)1(rze)-1(leje,)-333(nie)-333(lub)1(i)-333(dzi\\246)-1(k)28(o)28(w)28(a\\253!)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(n)1(ib)28(y)-333(p)1(an)-333(Jac)-1(ek)-333(da\\252)-333(w)27(am)-333(kro)28(w)28(\\246)-1(!)]TJ 0 -13.55 Td[({)-333(Za\\261)-1(b)28(y)-333(si\\246)-334(n)1(alaz)-1(\\252)-333(kto)-333(dr)1(ugi)-333(taki)-333(p)-27(o)-28(cz)-1(ciwy)-333(la)-333(biedn)1(e)-1(go)-333(nar)1(o)-28(du)1(!)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(d)1(a\\252)-334(p)1(rze)-1(ciek)-334(S)1(tac)27(h)1(o)27(wi)-333(d)1(rz)-1(ew)28(a)-334(n)1(a)-334(c)28(ha\\252up)-27(\\246)-334(i)-333(t)28(yla)-333(ws)-1(p)-27(omaga!)]TJ 0 -13.549 Td[({)-333(\\221wi\\246t)28(y)-334(p)1(rosto)-333(c)-1(z\\252o)27(wiek,)-333(\\273)-1(e)-333(ju)1(\\273)-334(c)-1(o)-333(dn)1(ia)-333(pacierz)-334(za)-334(n)1(ieg)-1(o)-333(m\\363)28(w)-1(i)1(\\246)-1(!)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(le)-334(ci)-334(j)1(e)-1(n)1(o)-333(kto)-333(nie)-334(wyp)1(ro)28(w)27(ad)1(z)-1(i)1(\\252)-334(b)28(y)1(dl\\241tk)56(a.)]TJ 0 -13.549 Td[({)-398(Co)-398(mielib)28(y)-397(m)-1(i)-397(ukr)1(a\\261)-1(\\242)-398(kro)28(w)28(\\246)-1(!)-397(Je)-1(zu,)-397(ady)-397(b)28(ym)-398(\\261)-1(l)1(e)-1(p)1(ie)-398(w)-1(y)1(dar\\252a,)-397(ady)-398(b)29(ym)]TJ -27.879 -13.55 Td[(w)-410(c)-1(a\\252y)-410(\\261)-1(wiat)-410(p)-27(osz)-1(\\252a)-410(z)-1(a)-410(ni)1(\\241!)-410(P)28(an)-410(Jez)-1(u)1(s)-411(ni)1(e)-411(p)-27(oz)-1(w)28(oli)-410(na)-410(tak)56(\\241)-410(krzywd\\246!)-410(Do)-410(iz)-1(b)29(y)]TJ 0 -13.549 Td[(wpr)1(o)27(w)28(adz\\246)-422(j\\241)-421(n)1(a)-422(n)1(o)-28(c)-1(,)-421(p)-27(\\363ki)-421(Szyme)-1(k)-421(n)1(ie)-422(wystroi)-421(ob)-27(\\363rki.)-421(Ja\\261k)28(o)28(w)-1(y)-421(Kr)1(ucz)-1(ek)-421(te)-1(\\273)]TJ 0 -13.549 Td[(dop)1(iln)29(uje)-317(b)28(y)1(dl\\241tk)56(a!)-317(M)1(o)-56(j)1(a)-317(p)-28(o)-27(c)-1(iec)27(h)1(a)-317(k)28(o)-28(c)27(h)1(ana,)-316(m)-1(o)-55(ja)-317(n)1(a)-56(j)1(m)-1(i)1(le)-1(j)1(s)-1(za!)-317({)-317(sz)-1(ept)1(a\\252)-1(a)-316(ob)-28(ej-)]TJ 0 -13.549 Td[(m)27(u)1(j\\241c)-257(j)1(\\241)-257(z)-1(a)-256(s)-1(zyj\\246)-257(i)-256(c)-1(a\\252uj)1(\\241c)-257(p)-28(o)-256(g\\246)-1(b)1(ule,)-257(j)1(a\\273)-1(e)-257(kr)1(o)27(w)28(a)-257(za)-56(j)1(\\246)-1(cz)-1(a\\252a,)-256(pies)-257(j\\241\\252)-257(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(a\\242)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(n)1(ie,)-334(k)1(ury)-333(si\\246)-334(r)1(oz)-1(gd)1(ak)55(a\\252y)-333(ze)-1(strasz)-1(on)1(e)-1(,)-333(a)-333(Szyme)-1(k)-333(gwizda\\252)-333(c)-1(or)1(az)-334(g\\252o\\261)-1(n)1(ie)-1(j)1(.)]TJ 27.879 -13.55 Td[({)-469(W)1(idn)1(o)-469(z)-469(tego,)-469(co)-469(w)28(am)-469(P)28(an)-468(Jez)-1(u)1(s)-469(b\\252ogos)-1(\\252a)28(wi!)-468({)-469(w)28(e)-1(stc)27(h)1(n\\246\\252a)-469(Jagusia,)]TJ -27.879 -13.549 Td[(jak)1(b)28(y)-360(z)-361(cic)27(h)28(y)1(m)-361(\\273)-1(al)1(e)-1(m,)-360(przygl\\241d)1(a)-56(j)1(\\241c)-361(si\\246)-361(u)28(w)28(a\\273)-1(n)1(iej)-360(ob)-28(o)-55(jgu)1(.)-361(W)1(ydal)1(i)-361(si\\246)-361(j)1(e)-1(j)-359(nie)-361(d)1(o)]TJ 0 -13.549 Td[(p)-27(oz)-1(n)1(ania)-276(p)1(rze)-1(mienieni)1(,)-276(zw)-1(\\252asz)-1(cz)-1(a)-275(Szyme)-1(k)-276(n)1(a)-56(j)1(bar)1(z)-1(ej)-276(j)1(\\241)-276(z)-1(astan)1(a)27(wia\\252,)-275(dy\\242)-276(go)-276(zna-)]TJ 0 -13.549 Td[(\\252a)-276(kiej)-276(ni)1(e)-1(d)1(o)-56(j)1(d\\246,)-276(kt\\363ren)-276(trzec)27(h)-276(zlicz)-1(y\\242)-276(ni)1(e)-277(p)-27(ore)-1(d)1(z)-1(i)1(\\252,)-276(w)-277(c)28(ha\\252up)1(ie)-277(b)29(y\\252)-277(p)-27(op)28(y)1(c)27(had)1(\\252e)-1(m)]TJ 0 -13.549 Td[(i)-392(p)-27(omiata\\252)-392(n)1(im)-1(,)-391(kto)-392(j)1(e)-1(n)1(o)-392(c)27(h)1(c)-1(i)1(a)-1(\\252,)-391(z)-1(a\\261)-392(teraz)-392(ja)28(wi\\252)-392(ci\\246)-392(c)-1(a\\252kiem)-392(dr)1(ugim,)-392(p)-27(o)-28(cz)-1(y)1(na\\252)]TJ 0 -13.55 Td[(sobie)-334(p)1(rze)-1(m)28(y\\261lnie,)-333(nosi\\252)-333(s)-1(i\\246)-333(go)-28(dn)1(ie)-334(i)-333(pr)1(a)28(w)-1(i)1(\\252)-334(ki)1(e)-1(b)28(y)-333(m\\241dr)1(ala.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363re\\273)-334(to)-333(w)27(asze)-334(p)-28(ol)1(e)-1(?)-333({)-334(sp)28(yta\\252a)-333(p)-27(o)-334(d)1(\\252ugic)28(h)-333(rozw)27(a\\273aniac)28(h.)]TJ 0 -13.549 Td[(Nastusia)-333(j\\246\\252)-1(a)-333(p)-27(ok)56(az)-1(yw)28(a\\242)-334(p)-27(o)27(wieda)-55(j\\241c;)-333(gdzie)-334(b)-27(\\246)-1(d)1(\\241)-333(c)-1(o)-333(s)-1(ieli.)]TJ 0 -13.549 Td[({)-333(A)-334(sk)56(\\241d\\273e)-334(to)-333(w)27(e\\271)-1(mie)-334(n)1(as)-1(i)1(e)-1(n)1(ia?)]TJ 0 -13.549 Td[({)-333(Szyme)-1(k)-333(p)-27(o)27(wiedzia\\252,)-333(c)-1(o)-333(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-333(to)-333(m)27(u)1(s)-1(i)-333(b)28(y)1(\\242)-1(,)-333(na)-333(d)1(arm)-1(o)-333(s\\252o)27(w)28(a)-333(nie)-334(p)1(u\\261c)-1(i)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(r)1(at)-334(m\\363)-55(j,)-333(a)-333(s)-1(\\252uc)28(ham)-334(k)1(ie)-1(b)29(y)-333(z)-1(go\\252a)-333(o)-334(ob)-27(cym)-1(.)]TJ 0 -13.549 Td[({)-300(A)-301(tak)1(i)-301(p)-27(o)-28(cz)-1(ciwy)84(,)-301(tak)1(i)-300(z)-1(m)28(y\\261)-1(ln)29(y)-300(i)-301(tak)1(i)-300(rob)-27(otn)28(y)83(,)-300(\\273e)-301(c)27(h)29(yba)-300(dr)1(ugiego)-301(tak)1(ie)-1(go)]TJ -27.879 -13.549 Td[(ni)1(e)-334(ma)-334(n)1(a)-334(\\261wie)-1(cie)-334({)-333(wyzna)28(w)27(a\\252a)-333(z)-334(gor\\241co\\261c)-1(i\\241)-333(Nastusia.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-334({)-333(p)-28(o)28(wt\\363rzy\\252a)-333(s)-1(m)28(utn)1(ie)-334({)-333(c)-1(zyj)1(e)-1(\\273)-334(te)-333(ok)28(op)-28(co)28(w)27(an)1(e)-334(role?)]TJ 0 -13.549 Td[({)-320(An)28(tk)56(a)-320(B)-1(or)1(yn)28(y!)-320(Nie)-320(robi)1(\\241)-321(n)1(a)-321(n)1(ic)27(h)1(,)-320(b)-28(o)-320(p)-27(ono)-320(cz)-1(ek)55(a)-55(j\\241)-320(dzia\\252\\363)28(w)-321(p)-27(o)-320(Macie)-1(j)1(u.)]TJ 0 -13.549 Td[({)-333(B)-1(\\246dzie)-334(tego)-333(z)-334(p)-27(\\363\\252)-1(w\\252\\363)-28(cz)-1(ek,)-333(no!)-333(W)1(ie)-1(d)1(z)-1(i)1(e)-334(s)-1(i)1(\\246)-334(im)-334(n)1(iez)-1(gorze)-1(j)1(.)]TJ 0 -13.55 Td[({)-327(A)-328(n)1(iec)27(h)-327(im)-327(P)28(an)-327(Jez)-1(u)1(s)-328(d)1(a)-328(z)-327(dzie)-1(si\\246\\242)-328(razy)-327(s)-1(zc)-1(zo)-28(d)1(rz)-1(ej,)-327(to)-27(\\242)-328(An)28(tek)-327(z)-1(ar)1(\\246)-1(cz)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(u)-333(d)1(z)-1(iedzica)-334(za)-333(nas)-1(z)-333(grun)29(t,)-333(a)-334(i)-333(w)-333(niejedn)29(ym)-334(n)1(as)-334(ws)-1(p)-27(om)-1(\\363g\\252.)]TJ 27.879 -13.549 Td[({)-333(An)28(tek)-334(wzi\\241\\252)-333(s)-1(i\\246)-333(z)-1(a)-333(Szymkiem)-1(!)-333({)-333(a\\273)-334(pr)1(z)-1(y)1(s)-1(tan)1(\\246)-1(\\252a)-333(z)-1(e)-334(zdu)1(mie)-1(n)1(ia.)]TJ 0 -13.549 Td[({)-308(Hank)56(a)-308(te\\273)-309(n)1(ie)-309(gor)1(s)-1(za)-308(o)-28(d)-308(n)1(iego,)-308(da\\252a)-308(mi)-308(mac)-1(ior)1(k)28(\\246)-1(,)-308(p)1(rosi\\246)-309(t)1(o)-308(jes)-1(zc)-1(ze)-1(k,)-307(ale)]TJ -27.879 -13.549 Td[(b)-27(\\246)-1(d)1(z)-1(ie)-333(z)-334(ni)1(e)-1(go)-333(p)-28(o)-27(c)-1(iec)27(h)1(a,)-333(b)-28(o)-333(id)1(z)-1(ie)-333(z)-334(plenn)1(e)-1(go)-333(gatu)1(nku)1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(u)1(de\\253k)56(a)-333(pr)1(a)27(wisz)-1(,)-333(Han)1(k)55(a)-333(d)1(a\\252)-1(a)-333(ci)-333(m)-1(aciork)28(\\246,)-333(pr)1(os)-1(to)-333(nie)-333(do)-333(wiary)84(.)]TJ 0 -13.549 Td[(W)84(r\\363)-28(ci\\252y)-433(p)-27(o)-28(d)-432(c)27(h)1(a\\252up)-27(\\246)-433(i)-433(J)1(agus)-1(i)1(a)-433(wysup)1(\\252)-1(a)28(wsz)-1(y)-432(z)-433(c)27(h)28(u)1(s)-1(tec)-1(zki)-432(dzies)-1(i\\246\\242)-433(ru)1(bli)]TJ\nET\nendstream\nendobj\n2190 0 obj <<\n/Type /Page\n/Contents 2191 0 R\n/Resources 2189 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2189 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2194 0 obj <<\n/Length 8433      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(687)]TJ -358.232 -35.866 Td[(w)28(e)-1(tkn)1(\\246)-1(\\252a)-333(je)-333(w)-334(r\\246k)28(\\246)-334(Nastusi.)]TJ 27.879 -13.549 Td[({)-318(W)84(e)-1(\\271)-318(te)-319(p)1(ar\\246)-318(grosz)-1(y)84(,)-318(ni)1(e)-319(mog\\252am)-319(p)1(rz\\363)-28(dzi,)-318(b)-27(o)-318(mi)-318(\\233yd)-318(za)-318(g\\241ski)-318(ni)1(e)-319(o)-28(d)1(da\\252.)]TJ 0 -13.549 Td[(Dzi\\246)-1(k)28(o)28(w)28(ali)-333(jej)-333(z)-1(e)-333(w)-1(szys)-1(tk)1(ie)-1(go)-333(se)-1(r)1(c)-1(a,)-333(wi\\246c)-334(im)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(na)-333(o)-28(d)1(c)27(h)1(o)-28(dn)28(y)1(m)-1(:)]TJ 0 -13.549 Td[({)-333(P)28(o)-28(cz)-1(ek)56(a)-56(jt)1(a,)-334(u)1(dob)1(ruc)28(ha)-333(s)-1(i)1(\\246)-334(matk)55(a,)-333(to)-333(w)28(am)-334(jes)-1(zcz)-1(e)-334(co\\261)-334(n)1(ie)-1(co\\261)-334(u)1(dzie)-1(l)1(i.)]TJ 0 -13.549 Td[({)-393(Ni)1(e)-394(p)-27(otrzebuj)1(\\246)-1(,)-392(ni)1(e)-1(c)28(h)-393(se)-393(m)-1(o)-55(j\\241)-392(krzywd\\241)-393(t)1(rumn\\246)-393(wy\\261c)-1(i)1(e)-1(li)1(!)-393({)-393(wyb)1(uc)28(hn)1(\\241\\252)]TJ -27.879 -13.55 Td[(Szyme)-1(k)-333(tak)-333(n)1(agle)-334(i)-333(z)-334(tak)56(\\241)-333(z)-1(ap)1(am)-1(i)1(\\246)-1(ta\\252o\\261c)-1(i\\241,)-333(\\273e)-334(j)1(u\\273)-334(o)-28(d)1(e)-1(sz\\252)-1(a)-333(b)-27(e)-1(z)-333(s)-1(\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[(W)84(rac)-1(a\\252a)-333(do)-333(d)1(om)27(u)-333(sro)-28(d)1(z)-1(e)-334(zadu)1(m)-1(an)1(a,)-333(s)-1(m)28(utn)1(a)-334(i)-333(j)1(ak)55(a\\261)-333(rozt\\246)-1(skni)1(ona.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(a)-334(co?)-334(t)1(e)-1(n)-333(b)1(adyl)-333(suc)27(h)29(y)83(,)-333(o)-333(kt\\363ren)-333(n)1(ikto)-333(nie)-333(s)-1(toi)-333({)-333(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-333(s)-1(i)1(e)-1(r)1(o)-28(c)-1(o.)]TJ 0 -13.549 Td[(Ka)-55(j\\261)-356(w)-355(p)-27(\\363\\252)-356(d)1(rogi)-355(sp)-28(otk)56(a\\252a)-355(Mateusz)-1(a,)-355(lecia\\252)-356(d)1(o)-355(s)-1(iostry)84(,)-355(ale)-356(za)28(w)-1(r)1(\\363)-28(ci\\252)-356(z)-355(ni\\241)]TJ -27.879 -13.549 Td[(i)-333(u)28(w)28(a\\273)-1(n)1(ie)-334(s\\252)-1(u)1(c)27(h)1(a\\252)-334(r)1(oz)-1(p)-27(o)28(w)-1(i)1(adani)1(a)-334(o)-333(Szymk)56(ac)27(h.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(ws)-1(zystkim)-333(tak)-333(dobr)1(z)-1(e)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(jeno)-333(c)27(h)1(m)27(u)1(rni)1(e)-1(.)]TJ 0 -13.55 Td[(Nie)-224(s)-1(z\\252a)-225(i)1(m)-225(r)1(oz)-1(mo)27(w)28(a,)-224(on)-224(cz)-1(ego\\261)-225(wzdyc)28(ha\\252)-224(dr)1(api\\241c)-224(s)-1(i)1(\\246)-225(fr)1(as)-1(ob)1(liwie)-225(p)-27(o)-224(g\\252o)28(w)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(a)-333(Jagusia)-333(z)-1(ap)1(atrzy\\252a)-334(si\\246)-334(n)1(a)-334(Li)1(p)-28(ce)-1(,)-333(ca\\252e)-334(w)-334(\\252u)1(nac)27(h)-332(z)-1(ac)27(h)1(o)-28(d)1(u.)]TJ 27.879 -13.549 Td[({)-333(He)-1(j)1(,)-333(duszno)-333(te)-1(\\273)-334(n)1(a)-333(t)27(y)1(m)-334(\\261w)-1(i)1(e)-1(cie)-334(i)-333(cias)-1(n)1(o)-334({)-333(rzek\\252)-334(j)1(akb)28(y)-333(do)-333(sie)-1(b)1(ie.)]TJ 0 -13.549 Td[(Za)-56(j)1(rza\\252a)-334(m)28(u)-333(p)28(yta)-55(j\\241co)-334(w)-333(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(c)-1(i)-333(to?)-333(krzywis)-1(z)-333(s)-1(i\\246)-333(kieb)28(y)-333(p)-28(o)-333(o)-28(cc)-1(i)1(e)-1(.)]TJ 0 -13.55 Td[(J\\241\\252)-343(wyrze)-1(k)56(a\\242,)-343(jak)28(o)-343(m)28(u)-343(s)-1(i)1(\\246)-344(mierz)-1(i)-342(\\273)-1(ycie)-343(i)-343(wie)-1(\\261,)-343(i)-343(ws)-1(zystk)28(o,)-343(i)-343(\\273e)-344(p)-27(e)-1(wn)1(ikiem)]TJ -27.879 -13.549 Td[(p)-27(\\363)-56(j)1(dzie)-334(w)28(e)-334(\\261)-1(wiat,)-333(gd)1(z)-1(ie)-333(go)-334(o)-27(c)-1(zy)-333(p)-28(on)1(ios)-1(\\241.)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(si\\246)-334(o\\273e\\253,)-333(a)-333(m)-1(ia\\252)-333(b)-27(\\246)-1(d)1(z)-1(ies)-1(z)-333(o)-28(dmian)1(\\246)-334({)-333(\\273)-1(art)1(o)27(w)28(a\\252a.)]TJ 0 -13.549 Td[({)-368(\\233e)-1(b)29(y)-368(to)-368(me)-369(c)28(hcia\\252a,)-368(kt\\363r)1(\\241)-368(m)-1(am)-368(w)-368(m)27(y\\261lac)27(h)-367({)-368(z)-1(a)-55(jr)1(z)-1(a\\252)-368(j)1(e)-1(j)-367(w)-369(o)-27(c)-1(zy)-368(natar)1(-)]TJ -27.879 -13.549 Td[(cz)-1(ywie,)-333(o)-28(dwr\\363)-27(c)-1(i\\252a)-333(g\\252o)28(w)27(\\246)-334(n)1(iec)27(h\\246tn)1(a)-334(j)1(ak)28(o\\261)-334(i)-333(w)-1(r)1(az)-334(p)-27(om)-1(i)1(e)-1(sz)-1(an)1(a.)]TJ 27.879 -13.55 Td[({)-333(Sp)28(y)1(ta)-56(j)-333(si\\246)-334(j)1(e)-1(j)1(!)-334(K)1(a\\273)-1(d)1(a)-334(za)-333(c)-1(ie)-333(p)-28(\\363)-55(jd)1(z)-1(ie,)-333(a)-334(n)1(iejedna)-333(j)1(u\\273)-334(wygl\\241d)1(a)-333(s)-1(w)28(at\\363)28(w)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(ak)-333(o)-28(dm\\363)28(wi!)-333(Ws)-1(t)28(yd)-332(b)-28(\\246dzie)-334(i)-333(zgryzota.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(p)-27(o\\261le)-1(sz)-334(z)-334(w)28(\\363)-28(d)1(k)55(\\241)-333(do)-333(in)1(s)-1(ze)-1(j)1(.)]TJ 0 -13.549 Td[({)-333(Ja)-334(n)1(ie)-334(z)-333(takic)27(h)1(,)-333(up)1(atrzy\\252e)-1(m)-333(s)-1(e)-334(j)1(e)-1(d)1(n\\241,)-333(to)-333(me)-334(do)-333(dr)1(ugiej)-333(ni)1(e)-334(bierze)-1(.)]TJ 0 -13.549 Td[({)-272(Ch\\252opu)-271(to)-272(k)55(a\\273da)-272(j)1(e)-1(d)1(nak)28(o)-272(pac)28(hn)1(ie)-273(i)-272(z)-272(k)55(a\\273d\\241)-272(r)1(ad)-272(b)28(y)-272(p)1(rzyj\\261\\242)-273(d)1(o)-273(p)-27(ou)1(fa\\252o\\261)-1(ci.)]TJ 0 -13.55 Td[(Nie)-334(b)1(ron)1(i\\252)-334(si\\246,)-333(a)-334(j)1(e)-1(n)1(o)-334(zac)-1(z\\241\\252)-333(z)-334(inn)1(e)-1(j)-332(b)-28(ec)-1(zki.)]TJ 0 -13.549 Td[({)-295(Wies)-1(z,)-295(Jagu)1(\\261)-1(,)-295(a)-295(to)-295(c)27(h)1(\\252opaki)-295(cz)-1(ek)56(a)-56(j)1(\\241)-296(j)1(e)-1(n)1(o)-295(p)-28(or)1(y)83(,)-295(\\273e)-1(b)29(y)-295(do)-295(c)-1(i)1(\\246)-296(s\\252)-1(a\\242)-295(z)-296(w)28(\\363)-28(dk)56(\\241.)]TJ 0 -13.549 Td[({)-356(Niec)27(h)-355(s)-1(e)-356(s)-1(ami)-356(wyc)28(hla)-55(j\\241,)-355(nie)-356(p)-27(\\363)-28(d\\246)-356(z)-1(a)-355(\\273)-1(adn)1(e)-1(go!)-355({)-356(wyrze)-1(k)1(\\252)-1(a)-356(z)-356(mo)-28(c\\241,)-356(ja\\273e)]TJ -27.879 -13.549 Td[(si\\246)-394(zas)-1(tan)1(o)27(wi\\252,)-393(a)-393(s)-1(zc)-1(zerz)-1(e)-393(p)-28(o)28(wiedzia\\252a,)-393(gdy\\273)-394(\\273aden)-393(n)1(ie)-394(widzia\\252)-393(s)-1(i\\246)-393(jej)-393(m)-1(i)1(ls)-1(zym)]TJ 0 -13.549 Td[(nad)-332(dru)1(gie)-1(go,)-333(j)1(u\\261c)-1(i)-333(kr)1(om)-1(i)1(e)-334(Jasia,)-333(ale)-334(Jasio...)]TJ 27.879 -13.55 Td[(W)84(e)-1(stc)27(h)1(n\\246\\252)-1(a)-314(ci\\246\\273)-1(k)28(o,)-314(z)-314(lub)-27(o\\261c)-1(i\\241)-314(o)-27(dd)1(a)-56(j\\241c)-314(s)-1(i)1(\\246)-315(sp)-28(omin)1(k)28(om)-315(o)-314(n)1(im)-1(,)-313(\\273)-1(e)-314(Mateusz)-1(,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(mog\\241c)-334(s)-1(i\\246)-333(dogad)1(a\\242)-1(,)-333(za)27(wr\\363)-27(c)-1(i\\252)-333(z)-334(p)-27(o)28(w)-1(r)1(ote)-1(m)-333(do)-333(s)-1(i)1(os)-1(tr)1(y)83(.)]TJ 27.879 -13.549 Td[(On)1(a)-334(za\\261)-334(wlek)55(\\241c)-333(l\\246)-1(k)1(liwymi)-333(o)-28(c)-1(zami)-334(p)-27(o)-333(\\261)-1(wiec)-1(i)1(e)-334(p)-28(om)28(y\\261la\\252a:)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(on)-333(tam)-333(te)-1(r)1(az)-334(p)-28(or)1(abia,)-333(co?)]TJ 0 -13.549 Td[(Zatarga\\252a)-333(s)-1(i)1(\\246)-334(gw)27(a\\252to)28(wni)1(e)-1(,)-333(ktosik)-333(j\\241)-333(ob)-55(j\\241\\252)-333(znienac)27(k)56(a)-333(i)-333(pr)1(z)-1(ycisk)55(a\\252.)]TJ 0 -13.549 Td[({)-333(Nie)-334(u)1(c)-1(iec)-1(zes)-1(z)-334(mi)-333(te)-1(r)1(az)-334({)-333(s)-1(ze)-1(p)1(ta\\252)-334(n)1(ami\\246)-1(tn)1(ie)-334(w)28(\\363)-56(j)1(t.)]TJ 0 -13.55 Td[(Wyr)1(w)27(a\\252a)-333(m)27(u)-333(si\\246)-334(z)-333(pazur\\363)28(w)-333(roz)-1(z\\252os)-1(zcz)-1(on)1(a.)]TJ 0 -13.549 Td[({)-495(Jes)-1(zc)-1(zek)-495(raz)-495(me)-496(tk)1(niec)-1(i)1(e)-1(,)-495(t)1(o)-495(w)27(am)-495(\\261le)-1(p)1(ie)-495(wydr)1(api\\246)-495(i)-495(tak)1(ie)-1(go)-495(n)1(arob)1(i\\246)]TJ -27.879 -13.549 Td[(pi)1(e)-1(k\\252a,)-333(j)1(a\\273)-1(e)-334(si\\246)-334(ca\\252a)-334(wie\\261)-334(zlec)-1(i.)]TJ 27.879 -13.549 Td[({)-307(Cic)27(h)1(o)-56(j,)-307(J)1(agu\\261,)-307(dy\\242)-307(go\\261)-1(ci\\253ca)-307(c)-1(i)-307(p)1(rzywioz)-1(\\252em)-308({)-307(i)-307(wt)28(yk)56(a\\252)-308(j)1(e)-1(j)-306(w)-308(r)1(\\246)-1(ce)-308(k)28(oral)1(e)-1(.)]TJ 0 -13.549 Td[({)-378(Wsad\\271c)-1(ie)-378(je)-378(s)-1(ob)1(ie)-379(gd)1(z)-1(i)1(e)-1(\\261,)-378(s)-1(to)-55(j\\246)-378(o)-378(w)27(asz)-1(e)-378(p)-28(o)-28(d)1(aru)1(nki)-378(co)-378(o)-378(te)-1(n)-377(pat)28(yk)-378(z\\252a-)]TJ -27.879 -13.55 Td[(man)28(y!)]TJ 27.879 -13.549 Td[({)-333(Jagusiu,)-333(co)-333(t)27(y)-333(wyr)1(abiasz)-1(,)-333(co)-334({)-333(j)1(\\241k)55(a\\252)-333(z)-1(d)1(umion)28(y)84(.)]TJ\nET\nendstream\nendobj\n2193 0 obj <<\n/Type /Page\n/Contents 2194 0 R\n/Resources 2192 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2192 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2197 0 obj <<\n/Length 9548      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(688)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(43.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(A)-334(to,)-333(\\273e)-1(\\261cie)-334(\\261w)-1(i)1(\\253tu)1(c)27(h)-333(i)-333(t)28(yla!)-333(I)-333(ani)-333(w)27(a\\273cie)-334(si\\246)-334(mnie)-333(c)-1(ze)-1(p)1(ia\\242)-1(.)]TJ 0 -13.549 Td[(Od)1(bieg\\252a)-390(go)-389(rozsro\\273)-1(on)1(a)-390(i)-389(k)1(ie)-1(j)-389(b)1(ur)1(z)-1(a)-389(wpad\\252a)-389(do)-389(c)27(h)1(a\\252up)28(y)84(,)-389(matk)55(a)-389(obi)1(e)-1(r)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(zie)-1(mni)1(aki,)-347(a)-347(J)1(\\246)-1(d)1(rz)-1(y)1(c)27(h)-346(doi\\252)-347(kr)1(o)27(wy)-346(w)-348(op)1(\\252otk)56(ac)27(h,)-346(z)-1(ab)1(ra\\252a)-347(si\\246)-348(wi\\246c)-347(\\273)-1(w)28(a)27(w)28(o)-347(d)1(o)-347(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(cz)-1(orn)29(yc)27(h)-322(obrz\\241dk)28(\\363)28(w,)-323(ale)-323(trz\\246)-1(s\\252a)-323(s)-1(i)1(\\246)-324(ze)-324(z\\252o\\261)-1(ci)-323(i)-323(n)1(ie)-323(m)-1(og\\241c)-323(s)-1(i\\246)-323(usp)-27(ok)28(oi\\242)-1(,)-322(s)-1(k)28(or)1(o)-323(s)-1(i\\246)]TJ 0 -13.549 Td[(jeno)-333(\\261c)-1(iemnia\\252o,)-333(ze)-1(b)1(ra\\252a)-334(si\\246)-334(zno)28(wu)-333(b)1(ie)-1(\\273y\\242.)]TJ 27.879 -13.55 Td[({)-333(Za)-56(jr)1(z)-1(\\246)-333(do)-333(organi)1(s)-1(t\\363)28(w)-333({)-334(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-333(matc)-1(e.)]TJ 0 -13.549 Td[(Cz)-1(\\246s)-1(t)1(o)-321(t)1(am)-321(teraz)-320(c)27(ho)-27(dzi\\252a,)-320(w)-1(y)1(s)-1(\\252u)1(guj\\241c)-320(s)-1(i)1(\\246)-321(im)-320(na)-320(r)1(\\363\\273)-1(n)1(e)-321(sp)-28(osob)28(y)83(,)-319(ab)28(y)-320(c)27(h)1(o)-28(\\242)]TJ -27.879 -13.549 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(p)-28(os\\252ys)-1(ze)-1(\\242)-333(jaki)1(e)-334(s)-1(\\252o)28(w)28(a)-334(o)-333(Jasiu.)]TJ 27.879 -13.549 Td[(Lec)-1(ia\\252a)-392(te\\273)-393(s)-1(p)1(ragn)1(iona)-392(o)-393(n)1(im)-393(wie\\261c)-1(i,)-392(a)-392(z)-393(j)1(ak)55(\\241\\261)-392(c)-1(ic)28(h\\241)-392(nad)1(z)-1(iej\\241)-392(us\\252ysz)-1(enia)]TJ -27.879 -13.549 Td[(dzisia)-56(j)-332(c)-1(ze)-1(go\\261)-334(n)1(o)28(w)27(ego.)]TJ 27.879 -13.549 Td[(I)-437(p)-28(ok)1(r\\363tce)-438(z)-1(a)-55(jar)1(z)-1(y\\252y)-437(si\\246)-438(w)-437(mrok)56(ac)27(h)-437(o\\261wie)-1(tl)1(one)-438(ok)1(na)-437(Jas)-1(i)1(o)27(w)28(ego)-438(p)-27(ok)28(o)-56(j)1(u,)]TJ -27.879 -13.55 Td[(k)56(a)-56(j)-384(teraz)-385(Mic)28(ha\\252)-385(p)1(is)-1(a\\252)-385(cosik)-385(p)-27(o)-28(d)-384(wis)-1(z\\241c)-1(\\241)-384(lamp\\241,)-385(za\\261)-385(organ)1(is)-1(t)28(y)-384(s)-1(iedzia\\252y)-384(prze)-1(d)]TJ 0 -13.549 Td[(domem)-334(na)-333(c)27(h)1(\\252o)-28(dzie.)]TJ 27.879 -13.549 Td[({)-285(Jasio)-285(przyj)1(e)-1(\\273d\\273a)-286(j)1(utr)1(o)-285(p)-28(o)-285(p)-27(o\\252udn)1(iu)1(!)-285({)-286(p)1(rzywita\\252a)-285(j\\241)-285(organ)1(i\\261c)-1(in)1(a)-285(no)28(win\\241,)]TJ -27.879 -13.549 Td[(o)-28(d)-343(kt\\363rej)-344(dziw)-344(tru)1(p)-28(em)-345(n)1(ie)-345(p)1(ad\\252a,)-344(n)1(ogi)-344(s)-1(i)1(\\246)-345(p)-27(o)-28(d)-344(n)1(i\\241)-344(ugi\\246\\252y)83(,)-344(se)-1(r)1(c)-1(e)-344(z)-1(ak)28(ot\\252o)28(w)28(a\\252)-1(o)-344(a\\273)]TJ 0 -13.549 Td[(do)-361(utr)1(at)27(y)-361(tc)27(h)29(u,)-361(c)-1(a\\252a)-362(stan\\246\\252a)-362(w)-362(ogn)1(iac)27(h)-361(i)-362(d)1(ygo)-28(cie,)-362(\\273e)-363(p)-27(osie)-1(d)1(z)-1(i)1(a)27(wsz)-1(y)-361(la)-362(n)1(ie)-1(znak)1(i)]TJ 0 -13.55 Td[(jak)56(\\241\\261)-334(c)28(h)28(wil\\246,)-333(ucie)-1(k)1(\\252)-1(a)-333(j)1(akb)28(y)-333(goni)1(ona,)-333(a\\273)-334(k)56(a)-56(j)1(\\261)-334(na)-333(top)-27(olo)28(w)27(\\241,)-333(p)-27(o)-28(d)-333(las...)]TJ 27.879 -13.549 Td[({)-370(Jez)-1(u)1(s)-371(m\\363)-55(j)-370(k)28(o)-28(c)28(han)28(y!)-369({)-370(bu)1(c)27(h)1(n\\246\\252)-1(a)-369(dzi\\246)-1(k)28(cz)-1(y)1(nni)1(e)-1(,)-369(w)-1(y)1(c)-1(i\\241)-27(ga)-56(j\\241c)-370(r\\246ce)-1(,)-370(\\252zy)-370(p)-27(o-)]TJ -27.879 -13.549 Td[(cie)-1(k)1(\\252)-1(y)-351(jej)-352(z)-352(o)-28(cz)-1(\\363)28(w)-352(i)-352(t)1(ak)-352(si\\246)-353(w)-352(n)1(iej)-352(roz\\261piew)27(a\\252a)-352(r)1(ado\\261\\242)-1(,)-351(\\273)-1(e)-352(c)27(h)1(c)-1(ia\\252o)-352(si\\246)-352(jej)-351(\\261)-1(mia\\242)-352(i)]TJ 0 -13.549 Td[(kr)1(z)-1(ycz)-1(e\\242,)-319(i)-319(k)56(a)-56(j)1(\\261)-320(lec)-1(i)1(e)-1(\\242,)-319(i)-319(ca\\252o)27(w)28(a\\242)-319(te)-320(d)1(rz)-1(ew)28(a,)-319(i)-319(tu)1(li\\242)-319(s)-1(i\\246)-319(do)-319(t)28(yc)28(h)-319(p)-27(\\363l)-319(p)-27(o\\261)-1(p)1(ion)28(yc)28(h)-319(w)]TJ 0 -13.549 Td[(ksi\\246\\273)-1(yco)28(w)27(ej)-333(p)-27(o\\261)-1(wiacie)-1(.)]TJ 27.879 -13.55 Td[({)-249(Jasio)-249(pr)1(z)-1(yj)1(e)-1(\\273d\\273a,)-249(pr)1(z)-1(y)1(je\\273)-1(d)1(\\273)-1(a)-249({)-249(s)-1(zepta\\252a)-249(ni)1(e)-1(ki)1(e)-1(d)1(y)83(,)-249(p)-27(oryw)28(a)-56(j)1(\\241c)-250(si\\246)-249(nagle)-249(jak)]TJ -27.879 -13.549 Td[(pt)1(ak)-395(i)-395(le)-1(cia\\252a,)-395(p)-27(orw)28(ana)-395(ws)-1(zystk)55(\\241)-395(mo)-28(c\\241)-396(o)-27(c)-1(ze)-1(k)1(iw)27(a\\253)-394(i)-395(t\\246)-1(skni)1(c)-1(,)-395(j)1(ak)28(ob)28(y)-395(nap)1(rze)-1(ciw)]TJ 0 -13.549 Td[(dol)1(i)-333(s)-1(w)28(o)-56(j)1(e)-1(j)-333(i)-333(n)1(ie)-1(op)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(m)28(u)-333(sz)-1(cz)-1(\\246\\261)-1(ciu)1(.)]TJ 27.879 -13.549 Td[(By\\252)-380(j)1(u\\273)-380(p)-27(\\363\\271)-1(n)29(y)-380(wiec)-1(z\\363r,)-379(kiej)-379(s)-1(i)1(\\246)-380(z)-1(n)1(alaz)-1(\\252a)-379(z)-380(p)-28(o)28(wrotem)-1(,)-379(w)-380(ok)1(nac)27(h)-379(b)28(y)1(\\252o)-380(ju)1(\\273)]TJ -27.879 -13.549 Td[(cie)-1(mno,)-320(\\261wie)-1(ci\\252o)-320(s)-1(i\\246)-321(t)28(y)1(lk)28(o)-321(u)-320(Boryn)1(\\363)28(w)-1(,)-320(k)56(a)-56(j)-320(si\\246)-321(ze)-1(b)1(ra\\252o)-320(s)-1(p)-27(oro)-320(nar)1(o)-28(du)1(,)-321(i)-320(p)-27(os)-1(z\\252a)-321(d)1(o)]TJ 0 -13.55 Td[(dom)28(u)-333(cz)-1(ek)55(a\\242)-333(te)-1(go)-333(ju)1(tra)-333(i)-333(\\261)-1(n)1(i\\242)-334(o)-333(Jasio)28(w)-1(y)1(m)-334(p)-27(o)27(wro)-27(c)-1(ie.)]TJ 27.879 -13.549 Td[(Ale)-227(na)-227(d)1(armo)-227(s)-1(i\\246)-227(pr)1(z)-1(ewrac)-1(a\\252a)-227(z)-227(b)-27(oku)-227(n)1(a)-227(b)-28(ok)1(,)-227(wi\\246)-1(c)-227(s)-1(k)28(or)1(o)-227(m)-1(at)1(k)55(a)-227(zac)27(h)1(rapa\\252a,)]TJ -27.879 -13.549 Td[(p)-27(o)-28(dn)1(ies)-1(\\252a)-354(s)-1(i\\246)-355(cic)27(h)29(u\\261k)28(o)-355(i)-354(pr)1(z)-1(y)28(ok)1(ryws)-1(zy)-354(s)-1(i\\246)-354(w)-355(z)-1(ap)1(as)-1(k)28(\\246)-354(s)-1(iad)1(\\252a)-355(p)-27(o)-28(d)-354(domem)-355(c)-1(zek)55(a\\242)]TJ 0 -13.549 Td[(sn)28(u)-333(alb)-27(o)-334(\\261witan)1(ia.)]TJ 27.879 -13.549 Td[(W)-377(c)28(ha\\252up)1(ie)-377(B)-1(or)1(yn\\363)28(w,)-377(za)-377(s)-1(ta)28(w)28(e)-1(m,)-377(\\261wie)-1(ci\\252o)-377(si\\246)-378(j)1(e)-1(szc)-1(ze)-378(p)-27(o)-377(jedn)1(e)-1(j)-376(stroni)1(e)-378(i)]TJ -27.879 -13.55 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(s)-1(z\\252y)-334(stam)27(t)1(\\241d)-333(\\261)-1(cisz)-1(on)1(e)-334(o)-28(dg\\252osy)-333(rozm)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(Wp)1(atrzy\\252a)-328(s)-1(i\\246)-328(z)-1(r)1(az)-1(u)-328(w)-328(dr)1(\\273)-1(\\241ce)-329(n)1(a)-329(w)28(o)-28(d)1(z)-1(ie)-328(o)-28(db)1(laski)-328(\\261)-1(wiat)1(\\252)-1(a)-328(i)-328(zap)-28(omn)1(ia\\252a)-329(o)]TJ -27.879 -13.549 Td[(ws)-1(zystkim)-367(gr\\241\\273\\241c)-367(s)-1(i\\246)-367(w)-367(mg\\252a)27(wyc)28(h)-367(i)-366(roz)-1(migotan)29(yc)27(h)-366(du)1(m)-1(an)1(iac)27(h)1(,)-367(co)-367(j\\241)-367(op)1(rz\\246)-1(d)1(\\252y)]TJ 0 -13.549 Td[(kiej)-300(pa)-55(j\\246c)-1(zyn)28(y)-300(i)-301(wraz)-301(p)-27(oni)1(e)-1(s\\252y)-301(w)-301(j)1(aki\\261)-301(cic)27(h)28(y)-300(p)-27(o)-28(dwiec)-1(z\\363r,)-300(s)-1(cz)-1(erwienion)29(y)-301(o)-28(d)-300(z\\363rz,)]TJ 0 -13.549 Td[(w)28(e)-334(ws)-1(zys)-1(t)1(e)-1(k)-333(\\261w)-1(i)1(a)-1(t)-333(n)1(ie)-1(u)1(k)28(o)-56(j)1(onej)-333(t\\246s)-1(kn)1(icy)83(.)]TJ 27.879 -13.549 Td[(Ksi\\246\\273)-1(yc)-372(ju)1(\\273)-373(b)28(y)1(\\252)-373(zas)-1(ze)-1(d)1(\\252,)-372(p\\252o)28(wy)-372(mrok)-372(obtu)1(la\\252)-372(p)-27(ola,)-372(gwiaz)-1(d)1(y)-372(\\261)-1(wieci\\252y)-372(wy-)]TJ -27.879 -13.55 Td[(sok)28(o)-316(i)-314(niekiej)-315(spad)1(a\\252)-1(a)-315(k)1(t\\363ra\\261)-316(z)-315(tak)56(\\241)-315(c)27(h)28(y\\273o\\261c)-1(i\\241)-315(i)-315(tak)-314(gdzie)-1(\\261)-315(s)-1(tr)1(as)-1(zni)1(e)-316(dal)1(e)-1(k)28(o,)-315(j)1(a\\273)-1(e)]TJ 0 -13.549 Td[(dec)27(h)-332(w)-333(piersiac)27(h)-332(z)-1(ap)1(iera\\252o)-333(i)-333(mr\\363z)-333(prze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252)-333(k)28(o\\261)-1(ci;)-333(n)1(ie)-1(k)1(ie)-1(d)1(y)-333(n)1(agrz)-1(an)29(y)-333(lec)-1(iu)1(\\261)-1(k)1(i)]TJ 0 -13.549 Td[(p)-27(o)27(wiew)-349(m)27(u)1(s)-1(k)56(a\\252)-349(pi)1(e)-1(\\261c)-1(iwie)-349(kieb)28(y)-349(te)-349(umi\\252o)28(w)28(ane)-349(r\\246)-1(ce,)-349(a)-349(c)-1(zas)-1(em)-349(z)-350(p)-27(\\363l)-349(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-349(s)-1(i\\246)]TJ 0 -13.549 Td[(up)1(aln)28(y)84(,)-398(rozpac)28(hn)1(ion)28(y)-398(wzdyc)27(h)-397(i)-398(p)1(rz)-1(ejmo)28(w)27(a\\252)-398(se)-1(r)1(c)-1(e,)-398(ja\\273e)-399(si\\246)-398(pr\\246\\273y\\252a)-398(rozw)-1(i)1(e)-1(ra)-55(j\\241c)]TJ 0 -13.549 Td[(ramion)1(a.)-359(T)83(o)-360(siedzia\\252a)-360(w)-359(du)1(m)-1(an)1(iu)-359(jeno)-359(ws)-1(zystk)56(a)-360(i)-359(w)-359(c)-1(zuciu)-359(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(j)]TJ 0 -13.55 Td[(s\\252)-1(o)-27(dk)28(o\\261c)-1(i,)-318(jak)-318(p)-27(\\246)-1(d)1(,)-319(k)1(t\\363ren)-319(si\\246)-319(p)1(r\\246\\273)-1(y)-318(i)-319(wzbiera)-318(w)-319(s)-1(ob)1(ie...)-318(a)-319(n)1(o)-28(c)-319(s)-1(t\\241)-27(pa\\252a)-319(p)1(rze)-1(z)-319(n)1(i\\241)]TJ 0 -13.549 Td[(cic)27(h)1(o)-334(i)-333(ostro\\273nie,)-333(jakb)29(y)-334(n)1(ie)-334(c)28(hc\\241c)-334(p\\252osz)-1(y)1(\\242)-334(c)-1(z\\252o)28(w)-1(iecz)-1(ego)-334(sz)-1(cz\\246)-1(\\261c)-1(ia.)]TJ\nET\nendstream\nendobj\n2196 0 obj <<\n/Type /Page\n/Contents 2197 0 R\n/Resources 2195 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2195 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2200 0 obj <<\n/Length 4155      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(689)]TJ -330.353 -35.866 Td[(U)-365(Boryn)1(\\363)27(w)-365(ci\\246)-1(gi)1(e)-1(m)-365(s)-1(i)1(\\246)-366(\\261w)-1(i)1(e)-1(ci\\252o)-365(i)-365(na)-365(d)1(ro)-28(d)1(z)-1(e)-365(s)-1(tr)1(\\363\\273)-1(o)28(w)28(a\\252)-366(cz)-1(u)1(jn)1(ie)-365(Witek,)-365(b)28(y)]TJ -27.879 -13.549 Td[(kto\\261)-365(niepr)1(os)-1(zon)28(y)-365(ni)1(e)-366(p)-27(o)-28(ds\\252uc)28(ha\\252,)-365(gdy)1(\\273)-366(ze)-1(sz)-1(li)-365(si\\246)-365(na)-365(c)-1(i)1(c)27(h\\241,)-365(p)1(rzyjaciels)-1(k)56(\\241)-365(n)1(arad\\246)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-466(j)1(utr)1(z)-1(ejsz)-1(y)1(m)-467(ze)-1(b)1(ran)1(ie)-1(m)-466(w)-466(k)56(ance)-1(lar)1(ii,)-466(n)1(a)-466(kt\\363r)1(e)-467(wzyw)27(a\\252)-466(w)28(\\363)-56(j)1(t)-466(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(gosp)-28(o)-28(d)1(arzy)-333(lip)-27(e)-1(c)28(kic)27(h)1(.)]TJ 27.879 -13.549 Td[(W)-306(i)1(z)-1(b)1(ie)-307(b)29(y\\252o)-306(c)-1(i)1(e)-1(mna)28(w)28(o,)-306(jak)1(i\\261)-307(ogar)1(e)-1(k)-305(s)-1(\\252ab)-27(o)-306(s)-1(i)1(\\246)-307(\\242m)-1(i)1(\\252)-306(na)-306(ok)56(api)1(e)-1(,)-306(\\273e)-306(jeno)-306(p)-27(o-)]TJ -27.879 -13.55 Td[(ni)1(e)-1(kt)1(\\363re)-243(g\\252o)28(wy)-242(mo\\273)-1(n)1(a)-243(b)29(y\\252o)-242(roze)-1(zna\\242)-242(w)-243(g\\246s)-1(t)28(wie,)-242(z)-1(esz)-1(\\252o)-242(s)-1(i)1(\\246)-243(b)-27(o)28(w)-1(i)1(e)-1(m)-242(z)-1(e)-242(dw)28(adzie\\261)-1(cia)]TJ 0 -13.549 Td[(c)27(h)1(\\252opa,)-333(ws)-1(zysc)-1(y)84(,)-333(kt\\363rzy)-333(trzymali)-333(z)-334(An)28(tki)1(e)-1(m)-334(i)-333(G)1(rze)-1(l\\241:)]TJ 27.879 -13.549 Td[({)-394(Ro)-28(c)27(h)1(o,)-395(siedz\\241c)-1(y)-394(k)56(a)-56(j)1(\\261)-395(w)-395(mrok)1(u,)-394(t\\252umac)-1(zy\\252)-394(s)-1(ze)-1(r)1(ok)28(o,)-394(c)-1(o)-394(b)28(y)-394(to)-394(w)-1(y)1(s)-1(z\\252o)-395(la)]TJ -27.879 -13.549 Td[(ws)-1(i)1(,)-311(je\\273)-1(eli)-311(si\\246)-311(z)-1(go)-27(dz\\241)-311(na)-311(p)-27(os)-1(t)1(a)27(wieni)1(e)-312(sz)-1(k)28(o\\252y)-311(w)-311(Li)1(p)-28(cac)27(h;)-310(a)-311(p)-27(ote)-1(m)-311(Gr)1(z)-1(ela)-311(nau)1(c)-1(za\\252)]TJ 0 -13.549 Td[(k)56(a\\273)-1(d)1(e)-1(go)-333(z)-334(osobn)1(a,)-334(co)-333(m)-1(a)-333(p)-27(o)27(wiedzie\\242)-334(nacze)-1(ln)1(ik)28(o)28(w)-1(i)-333(i)-333(j)1(ak)-333(g\\252)-1(oso)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(D\\252ugo)-270(w)-270(n)1(o)-28(c)-271(r)1(adzili,)-269(b)-28(o)-28(\\242)-270(ni)1(e)-271(ob)-27(e)-1(sz\\252)-1(o)-270(si\\246)-270(b)-28(ez)-271(k)1(\\252\\363tni)-270(a)-270(spr)1(z)-1(ec)-1(iwie\\253st)28(w,)-270(ale)-270(w)]TJ -27.879 -13.55 Td[(k)28(o\\253cu)-260(z)-1(go)-28(d)1(z)-1(i)1(li)-261(si\\246)-261(na)-261(j)1(e)-1(d)1(no)-261(i)-260(ni)1(m)-262(za\\261w)-1(i)1(ta\\252)-1(o,)-260(roze)-1(sz)-1(l)1(i)-261(si\\246)-261(\\261)-1(p)1(ie)-1(sz)-1(n)1(ie,)-261(gd)1(y\\273)-261(naza)-56(ju)1(trz)]TJ 0 -13.549 Td[(trza)-333(b)28(y\\252o)-333(do\\261\\242)-334(w)27(cz)-1(e\\261nie)-334(wyr)1(usz)-1(a\\242.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-338(Jagusia)-338(zos)-1(ta\\252a)-338(j)1(e)-1(sz)-1(cz)-1(e)-338(na)-338(p)1(rzy\\271)-1(b)1(ie,)-338(jakb)29(y)-338(ju)1(\\273)-339(d)1(o)-338(c)-1(n)1(a)-338(z)-1(agu)1(bion)1(a)-338(w)]TJ -27.879 -13.549 Td[(du)1(maniac)28(h)-376(i)-376(no)-28(cy)84(,)-376(s)-1(iedzia\\252a)-376(\\261)-1(l)1(e)-1(p)1(a)-377(i)-375(g)-1(\\252u)1(c)27(h)1(a)-377(n)1(a)-376(w)-1(szys)-1(tk)28(o,)-376(sze)-1(p)-27(c)-1(\\241c)-376(jeno)-376(ni)1(e)-1(ki)1(e)-1(d)1(y)]TJ 0 -13.549 Td[(ni)1(b)28(y)-333(te)-334(gor\\241ce)-334(s\\252o)27(w)28(a)-333(nies)-1(k)28(o\\253)1(c)-1(zonego)-333(pacie)-1(r)1(z)-1(a:)]TJ 27.879 -13.55 Td[({)-333(Przyj)1(e)-1(d)1(z)-1(ie,)-333(pr)1(z)-1(yj)1(e)-1(d)1(z)-1(i)1(e)-1(!)]TJ 0 -13.549 Td[(I)-342(k)1(\\252)-1(on)1(i\\252a)-342(si\\246)-342(b)-27(e)-1(zw)27(ol)1(nie,)-342(j)1(akb)28(y)-341(nad)-341(j)1(utr)1(e)-1(m,)-342(j)1(akb)28(y)-341(c)27(h)1(c)-1(\\241c)-342(d)1(o)-56(j)1(rz)-1(e\\242,)-342(co)-342(la)-341(niej)]TJ -27.879 -13.549 Td[(ni)1(e)-1(sie)-423(te)-1(n)-422(\\261)-1(wit)-423(sz)-1(ar)1(z)-1(ej\\241cy)-423(nad)-422(z)-1(i)1(e)-1(mi\\241,)-423(z)-423(l\\246kiem)-424(a)-423(r)1(ado\\261c)-1(i\\241)-423(d)1(a)-56(j)1(\\241c)-424(si\\246)-423(te)-1(m)28(u,)-423(co)]TJ 0 -13.549 Td[(mia\\252o)-334(si\\246)-334(sta\\242.)]TJ\nET\nendstream\nendobj\n2199 0 obj <<\n/Type /Page\n/Contents 2200 0 R\n/Resources 2198 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2198 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2203 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(690)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(43.)]TJ\nET\nendstream\nendobj\n2202 0 obj <<\n/Type /Page\n/Contents 2203 0 R\n/Resources 2201 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2188 0 R\n>> endobj\n2201 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2206 0 obj <<\n/Length 7250      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(44)]TJ/F17 10.909 Tf 0 -73.325 Td[(Pr)1(z)-1(y)1(p)-28(o\\252ud)1(ni)1(e)-367(d)1(o)-28(c)27(h)1(o)-28(dzi\\252o,)-366(skw)27(ar)-365(c)-1(zyni)1(\\252)-367(si\\246)-366(c)-1(oraz)-366(wi\\246)-1(k)1(s)-1(zy)-366(i)-366(n)1(ar\\363)-28(d)-366(j)1(u\\273)-366(s)-1(i)1(\\246)-367(ws)-1(zy-)]TJ 0 -13.549 Td[(ste)-1(k)-392(zgromadzi\\252)-393(p)1(rze)-1(d)-392(k)56(an)1(c)-1(elari\\241,)-392(a)-392(nacz)-1(eln)1(ik)56(a)-393(j)1(e)-1(sz)-1(cze)-393(nie)-392(b)28(y\\252o.)-392(Pi)1(s)-1(arz)-392(raz)-393(p)-27(o)]TJ 0 -13.549 Td[(raz)-373(wyc)28(ho)-28(d)1(z)-1(i\\252)-372(na)-373(p)1(r\\363g)-372(i)-373(p)1(rz)-1(y)1(s)-1(\\252on)1(iws)-1(zy)-373(d)1(\\252oni\\241)-372(o)-28(c)-1(zy)-372(w)-1(yziera\\252)-373(n)1(a)-373(sz)-1(erok)56(\\241)-373(d)1(rog\\246,)]TJ 0 -13.55 Td[(obsadzon\\241)-355(p)-27(okrzywion)28(y)1(m)-1(i)-355(wierzbami,)-355(ale)-355(tam)-356(si\\246)-356(j)1(e)-1(n)1(o)-355(l\\261)-1(n)1(i\\252y)-355(k)56(a\\252u\\273e)-1(,)-355(osta\\252e)-356(p)-27(o)]TJ 0 -13.549 Td[(w)28(c)-1(zora)-56(j)1(s)-1(zej)-287(ulewie)-1(,)-287(to)-28(czy\\252)-288(si\\246)-288(z)-288(w)28(olna)-287(jak)1(i\\261)-288(zap)-28(\\363\\271nion)29(y)-288(w)28(\\363z)-288(i)-287(k)56(a)-56(j)1(\\261)-288(niek)56(a)-56(j)-287(mi\\246dzy)]TJ 0 -13.549 Td[(dr)1(z)-1(ew)27(ami)-333(z)-1(ab)1(iela\\252a)-334(c)28(h\\252op)1(s)-1(k)56(a)-333(k)55(ap)-27(ota.)]TJ 27.879 -13.549 Td[(Gr)1(om)-1(ad)1(a)-399(cz)-1(ek)56(a\\252a)-399(cierpl)1(iwie)-1(,)-398(a)-398(t)28(ylk)28(o)-398(jeden)-398(w)27(\\363)-55(jt)-398(lata\\252)-398(kiej)-398(opar)1(z)-1(on)28(y)84(,)-398(wy-)]TJ -27.879 -13.549 Td[(gl\\241d)1(a\\252)-306(n)1(a)-305(drog\\246)-305(i)-305(c)-1(or)1(az)-306(g\\252o\\261)-1(n)1(ie)-1(j)-304(przyn)1(agla\\252)-305(c)27(h\\252op)-27(\\363)28(w)-306(zas)-1(y)1(puj)1(\\241c)-1(y)1(c)27(h)-305(wyr)1(w)-1(y)-305(i)-305(d)1(o\\252y)]TJ 0 -13.549 Td[(na)-333(p)1(lac)-1(u)-333(p)1(rze)-1(d)-333(k)56(an)1(c)-1(elari\\241.)]TJ 27.879 -13.55 Td[({)-333(Pr\\246dzej,)-333(c)27(h)1(\\252op)-28(cy!)-333(Lab)-28(oga,)-333(\\273e)-1(b)29(y)-333(jeno)-333(z)-1(d)1(\\241\\273)-1(y\\242,)-333(nim)-333(nad)1(jedzie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ie)-334(p)-27(opu)1(\\261)-1(\\242c)-1(i)1(e)-334(jeno)-333(z)-1(e)-333(s)-1(tr)1(ac)27(h)28(u)-333({)-333(ozw)27(a\\252)-333(s)-1(i\\246)-333(z)-334(kup)29(y)-333(jaki\\261)-333(g\\252os)-1(.)]TJ 0 -13.549 Td[({)-333(Ruc)27(h)1(a)-56(j)1(ta)-334(si\\246,)-333(lud)1(z)-1(ie!)-333(Ja)-333(tu)-333(p)-27(o)-334(u)1(rz\\246)-1(d)1(z)-1(ie,)-333(nie)-333(p)-28(or)1(a)-334(n)1(a)-334(p)1(rze)-1(kp)1(in)1(ki.)]TJ 0 -13.549 Td[({)-333(W)83(\\363)-55(jcie)-1(,)-333(a)-333(to)-333(jeno)-333(B)-1(oga)-333(si\\246)-334(b)-27(\\363)-56(j)1(c)-1(ie)-333({)-334(za\\261)-1(mia\\252)-333(s)-1(i)1(\\246)-334(kt\\363ry)1(\\261)-334(z)-334(rzep)-28(ec)27(ki)1(c)27(h.)]TJ 0 -13.549 Td[({)-310(A)-310(kt)1(\\363re)-1(n)-309(jesz)-1(cz)-1(e)-310(p)28(ysk)-310(wywrze)-1(,)-309(do)-310(k)28(ozy)-310(k)56(a\\273\\246)-311(wsadzi\\242)-311({)-309(z)-1(akr)1(z)-1(ycza\\252)-310(s)-1(rogo)]TJ -27.879 -13.55 Td[(w)28(\\363)-56(jt)-263(i)-263(p)-27(olec)-1(i)1(a\\252)-264(wyj)1(rze)-1(\\242)-263(z)-1(e)-264(sm\\246)-1(tar)1(z)-1(a,)-263(\\273e)-264(to)-263(le\\273)-1(a\\252)-263(n)1(a)-264(wzg\\363rku)1(,)-263(do)-263(kt\\363r)1(e)-1(go)-263(sz)-1(cz)-1(yt)1(e)-1(m)]TJ 0 -13.549 Td[(b)28(y\\252a)-333(pr)1(z)-1(yw)28(arta)-333(k)56(ance)-1(l)1(aria.)]TJ 27.879 -13.549 Td[(Wielgac)28(hne,)-287(pr)1(a)27(wiecz)-1(n)1(e)-288(dr)1(z)-1(ew)27(a)-287(wyn)1(os)-1(i\\252y)-287(si\\246)-288(n)1(ad)-287(ni)1(\\241,)-287(k)28(o\\261)-1(cie)-1(l)1(na)-287(wie)-1(\\273a)-287(s)-1(za-)]TJ -27.879 -13.549 Td[(rza\\252a)-298(s)-1(kr)1(o\\261)-299(ga\\252\\246)-1(zi,)-298(za\\261)-299(cz)-1(arn)1(e)-299(r)1(a)-1(mion)1(a)-298(krzy\\273)-1(\\363)28(w)-298(wyc)27(h)28(y)1(la\\252y)-298(s)-1(i\\246)-298(s)-1(p)-27(oz)-1(a)-298(k)56(amie)-1(n)1(nego)]TJ 0 -13.549 Td[(ogro)-27(dze)-1(n)1(ia)-334(n)1(a)-334(d)1(ac)27(h)28(y)-333(i)-333(d)1(rog\\246)-334(wio)-28(d)1(\\241c)-1(\\241)-333(p)1(rz)-1(ez)-334(wie\\261)-1(.)]TJ 27.879 -13.55 Td[(W)84(\\363)-56(jt)-352(n)1(ie)-353(wypat)1(rz)-1(y)1(w)-1(szy)-353(n)1(icz)-1(ego)-353(p)-27(osta)27(wi\\252)-352(pr)1(z)-1(y)-352(lu)1(dziac)27(h)-352(j)1(e)-1(d)1(nego)-353(ze)-353(so\\252t)28(y-)]TJ -27.879 -13.549 Td[(s\\363)27(w,)-384(a)-385(sam)-385(ws)-1(ze)-1(d)1(\\252)-385(d)1(o)-385(k)56(ance)-1(l)1(arii,)-384(k)56(a)-56(j)-384(ci\\246)-1(gi)1(e)-1(m)-385(k)1(to\\261)-385(w)27(c)28(ho)-28(d)1(z)-1(i\\252)-384(i)-385(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(,)-384(\\273e)-385(to)]TJ 0 -13.549 Td[(pi)1(s)-1(ar)1(z)-367(c)-1(o)-366(tro)-27(c)27(h\\246)-366(wyw)27(o\\252yw)28(a\\252)-366(kt\\363rego\\261)-367(z)-367(gosp)-28(o)-27(darzy)84(,)-367(z)-366(c)-1(ic)28(ha)-366(pr)1(z)-1(y)1(p)-28(omina)-55(j\\241c)-366(z)-1(a-)]TJ 0 -13.549 Td[(leg\\252e)-305(p)-27(o)-28(d)1(atki,)-303(nie)-304(zap\\252acon\\241)-304(sk\\252adk)28(\\246)-304(n)1(a)-304(s)-1(\\241d)-303(alb)-27(o)-304(j)1(e)-1(sz)-1(cz)-1(e)-304(i)-303(c)-1(o\\261)-304(lepsz)-1(ego)-304(Ju)1(\\261)-1(ci,)-304(co)]TJ 0 -13.549 Td[(ta)-360(n)1(ik)28(om)28(u)-360(n)1(ie)-360(s)-1(z\\252y)-360(w)-359(s)-1(mak)-360(t)1(a)-1(k)1(ie)-360(wyp)-28(omin)1(ki,)-359(ale)-360(s\\252)-1(u)1(c)27(h)1(ali)-360(wzdyc)28(ha)-55(j\\241cy)83(,)-359(b)-28(o)-359(c)-1(\\363\\273)]TJ 0 -13.55 Td[(b)28(y\\252o)-373(r)1(obi\\242)-373(teraz)-373(na)-373(ci\\246\\273)-1(ki)1(m)-374(p)1(rze)-1(d)1(n\\363)28(wku?)-373(Mogl)1(i)-373(to)-373(p)1(\\252ac)-1(i\\242,)-373(ki)1(e)-1(j)-372(niejedn)1(e)-1(m)28(u)-373(j)1(u\\273)]TJ 0 -13.549 Td[(i)-359(na)-359(s)-1(\\363l)-359(n)1(ie)-360(s)-1(t)1(arc)-1(zy\\252o,)-359(to)-359(m)27(u)-359(si\\246)-360(jeno)-359(w)-360(p)1(as)-360(k\\252ani)1(ali,)-359(jak)1(i)-360(tak)1(i)-360(n)1(a)28(w)27(et)-360(go)-359(w)-360(r)1(\\246)-1(k)28(\\246)]TJ 0 -13.549 Td[(ca\\252)-1(o)28(w)28(a\\252,)-255(za\\261)-255(p)-27(oniekt\\363r)1(y)-255(i)-254(t\\246)-255(ostatni)1(\\241)-255(z\\252ot\\363)28(w)27(cz)-1(yn)1(\\246)-255(w)-255(n)1(adsta)28(w)-1(i)1(on\\241)-254(gar\\261)-1(\\242)-254(w)-1(t)28(yk)56(a\\252,)-254(a)]TJ 0 -13.549 Td[(ws)-1(zystkie)-278(jedn)1(ak)28(o)-278(s)-1(k)56(amla\\252y)-278(o)-278(p)-27(o)-28(c)-1(zek)55(an)1(ie)-278(do)-278(\\273niw)-278(lu)1(b)-278(d)1(o)-278(na)-55(jb)1(li\\273s)-1(ze)-1(go)-278(j)1(armarku)1(.)]TJ 27.879 -13.549 Td[(Z)-275(p)1(isarza)-275(c)27(h)29(ytra)-274(b)28(y\\252a)-274(s)-1(ztuk)56(a)-274(i)-275(p)1(rze)-1(m\\241dr)1(z)-1(a\\252a,)-274(\\252up)1(i\\252)-275(te\\273)-275(n)1(ar\\363)-28(d)-274(ze)-275(s)-1(k)28(\\363r)1(y)83(,)-274(ja\\273e)]TJ -27.879 -13.55 Td[(trzes)-1(zc)-1(za\\252o,)-246(nib)29(y)-246(to)-246(ws)-1(zystk)28(o)-246(obiec)-1(y)1(w)27(a\\252,)-246(a)-246(k)28(ogo)-246(strac)28(ha\\252)-246(s)-1(t)1(ra\\273)-1(n)1(ik)56(ami,)-246(k)28(om)27(u)-245(bak)28(\\246)]TJ 0 -13.549 Td[(w)-263(o)-27(c)-1(zy)-263(\\261wiec)-1(i\\252,)-262(z)-263(ki)1(m)-263(b)28(y\\252)-262(z)-1(a)-262(pan)-262(b)1(rat,)-262(a)-263(o)-27(d)-262(k)55(a\\273dego)-263(cosik)-262(w)-1(y)1(c)-1(ygan)1(i\\252,)-262(to)-263(o)28(ws)-1(a)-262(m)27(u)]TJ 0 -13.549 Td[(zbrak)1(\\252)-1(o,)-291(t)1(o)-292(p)-27(otr)1(z)-1(a)-291(b)28(y\\252o)-291(m\\252o)-28(dy)1(c)27(h)-291(g\\241se)-1(k)-291(l)1(a)-291(nacz)-1(elni)1(k)55(a,)-291(to)-291(p)1(rzyma)27(wia\\252)-291(si\\246)-292(o)-291(s\\252om)-1(\\246)]TJ 358.232 -29.888 Td[(691)]TJ\nET\nendstream\nendobj\n2205 0 obj <<\n/Type /Page\n/Contents 2206 0 R\n/Resources 2204 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2204 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2210 0 obj <<\n/Length 9317      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(692)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(na)-259(p)-28(o)28(wr\\363s\\252a,)-260(\\273e)-260(rad)1(z)-1(i)-259(nierad)1(z)-1(i)-259(pr)1(z)-1(y)28(ob)1(ie)-1(cali,)-259(c)-1(o)-259(jeno)-259(c)27(hcia\\252,)-259(on)-260(za\\261)-260(na)-259(o)-28(dc)28(ho)-28(d)1(n)28(ym)]TJ 0 -13.549 Td[(br)1(a\\252)-334(co)-333(z)-1(n)1(a)-56(jomsz)-1(yc)28(h)-333(na)-333(s)-1(t)1(ron\\246)-333(i)-334(r)1(adzi\\252)-333(im)-334(n)1(ib)28(y)-333(to)-333(z)-334(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lst)28(w)27(a:)]TJ 27.879 -13.549 Td[({)-283(A)-283(uc)27(h)29(w)27(alcie)-284(n)1(a)-283(s)-1(zk)28(o\\252\\246)-1(,)-283(b)-27(o)-284(j)1(ak)-283(s)-1(i)1(\\246)-284(b)-27(\\246)-1(d)1(z)-1(iec)-1(i)1(e)-284(sprze)-1(czali,)-283(to)-283(nacz)-1(eln)1(ik)-283(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(si\\246)-276(rozgni)1(e)-1(w)28(a\\242)-276(i)-275(got\\363)28(w)-276(w)28(am)-276(jes)-1(zc)-1(ze)-276(p)-27(opsu\\242)-275(z)-1(go)-28(d)1(\\246)-276(z)-276(d)1(z)-1(iedzice)-1(m)-275(o)-276(las)-275({)-276(p)1(rze)-1(strze)-1(-)]TJ 0 -13.549 Td[(ga\\252)-333(lip)-27(e)-1(c)28(kic)27(h)-333(l)1(ud)1(z)-1(i.)]TJ 27.879 -13.55 Td[({)-333(Jak\\273e)-334(to,)-333(z)-1(go)-27(d\\246)-334(r)1(obim)-334(z)-333(dob)1(re)-1(j)-332(w)27(oli)1(!)-334({)-333(zdu)1(m)-1(ia\\252)-333(si\\246)-334(P\\252osz)-1(k)56(a.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(al)1(e)-334(nie)-333(w)-1(i)1(e)-1(cie)-334(to:)-333(p)1(an)-333(z)-334(pan)1(e)-1(m)-333(z)-1(n)1(a)-334(si\\246,)-333(a)-334(c)28(h\\252opu)-333(zas)-1(i)1(\\246)-1(.)]TJ 0 -13.549 Td[(P\\252osz)-1(k)56(a)-441(o)-28(d)1(s)-1(zed\\252)-441(wielc)-1(e)-441(s)-1(f)1(raso)28(w)27(an)28(y)84(,)-441(p)1(is)-1(ar)1(z)-442(za\\261)-442(d)1(alej)-441(wyw)28(o\\252yw)27(a\\252)-441(l)1(udzi,)-441(a)]TJ -27.879 -13.549 Td[(coraz)-305(t)1(o)-304(z)-305(d)1(rugi)1(c)27(h)-304(wsi,)-304(k)56(a\\273)-1(d)1(e)-1(go)-304(strasz\\241c)-305(cz)-1(ym)-304(in)1(n)28(ym,)-304(a)-304(d)1(o)-304(jednego)-304(ni)1(e)-1(w)28(ol\\241c,)-304(\\273)-1(e)]TJ 0 -13.549 Td[(w)-334(mig)-333(si\\246)-334(o)-333(t)28(ym)-334(rozni)1(e)-1(s\\252o)-334(mi\\246dzy)-333(gromad\\241.)]TJ 27.879 -13.549 Td[(A)-371(n)1(iem)-1(a\\252a)-371(k)1(upa)-370(\\273)-1(ebr)1(a\\252)-1(a)-370(s)-1(i\\246)-371(n)1(aro)-28(d)1(u,)-370(z)-1(es)-1(z\\252o)-371(si\\246)-371(b)-28(o)28(wiem)-372(p)1(rze)-1(sz)-1(\\252o)-370(dwie\\261)-1(cie)]TJ -27.879 -13.55 Td[(c)27(h)1(\\252opa,)-313(k)1(t\\363rzy)-313(z)-1(r)1(az)-1(u)-312(s)-1(to)-55(jali)-312(ws)-1(iami,)-313(sw)28(o)-56(jak)1(i)-313(pr)1(z)-1(y)-313(sw)28(o)-56(jak)56(ac)28(h,)-313(\\273e)-314(\\252acno)-313(r)1(oz)-1(ez)-1(n)1(a\\252,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-373(s\\241)-373(z)-372(Lipi)1(e)-1(c,)-372(kt\\363r)1(e)-373(z)-373(M)1(o)-28(dl)1(ic)-1(y)84(,)-372(a)-372(kt\\363re)-372(z)-373(P)1(rzy\\252\\246)-1(k)56(a)-372(lub)-371(z)-373(Rze)-1(p)-27(e)-1(k)1(,)-372(b)-28(o)-372(k)56(a\\273)-1(d)1(a)]TJ 0 -13.549 Td[(wie\\261)-459(znacz)-1(y\\252a)-458(si\\246)-458(jensz)-1(ymi)-458(u)1(bierami,)-458(al)1(e)-459(sk)28(oro)-458(si\\246)-459(j)1(e)-1(n)1(o)-458(roze)-1(sz)-1(\\252o,)-458(j)1(ak)28(o)-458(trze)-1(b)1(a)]TJ 0 -13.549 Td[(g\\252os)-1(o)28(w)28(a\\242)-374(na)-373(sz)-1(k)28(o\\252\\246)-1(,)-373(gd)1(y\\273)-374(tak)-373(c)27(h)1(c)-1(e)-373(s)-1(am)-374(n)1(ac)-1(ze)-1(l)1(nik)1(,)-374(j)1(\\246)-1(l)1(i)-374(si\\246)-374(mies)-1(za\\242)-1(,)-373(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(i\\242)]TJ 0 -13.549 Td[(z)-311(kup)28(y)-310(do)-311(ku)1(p)28(y)-311(i)-311(sto)28(w)27(ar)1(z)-1(ysz)-1(a\\242)-311(w)28(e)-1(d)1(le)-312(u)1(p)-28(o)-27(dob)28(y)84(,)-311(\\273e)-312(t)28(ylk)28(o)-311(j)1(e)-1(d)1(na)-311(rzep)-28(ec)27(k)56(a)-311(s)-1(zlac)28(h)28(ta)]TJ 0 -13.55 Td[(trzyma\\252a)-399(si\\246)-399(z)-399(osobn)1(a,)-398(z)-1(ad)1(z)-1(ierzy\\261c)-1(ie)-398(a)-399(h)1(ardo)-398(sp)-28(oziera)-56(j)1(\\241c)-399(na)-398(c)27(h)1(\\252op)-28(\\363)28(w,)-398(c)27(ho)-27(\\242)-399(to)]TJ 0 -13.549 Td[(bi)1(e)-1(d)1(ota)-457(b)28(y\\252a)-457(tak)56(a,)-456(\\273)-1(e)-457(jak)-456(s)-1(i\\246)-457(z)-457(nic)28(h)-457(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(ali,)-456(trze)-1(c)27(h)-456(wypad)1(a\\252o)-457(na)-457(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(kr)1(o)27(wi)-420(ogon)-421(r)1(e)-1(sz)-1(ta)-420(z)-1(a\\261)-421(nar)1(o)-28(du)1(,)-421(spl)1(\\241tana)-421(k)1(ie)-1(j)-420(gro)-27(c)27(ho)28(win)28(y)84(,)-421(p)-27(oroztrz\\241s)-1(a\\252a)-420(s)-1(i\\246)-421(p)-27(o)]TJ 0 -13.549 Td[(pl)1(ac)-1(u)1(,)-333(s)-1(p)-27(oro)-333(c)27(h)1(roni\\252o)-333(si\\246)-334(w)-334(cieniu)-332(s)-1(m\\246)-1(tar)1(z)-1(a)-333(i)-333(pr)1(z)-1(yw)28(oz)-1(ac)28(h.)]TJ 27.879 -13.549 Td[(G\\252\\363)28(wnie)-438(c)-1(i)1(s)-1(n)1(\\246)-1(li)-437(s)-1(i\\246)-438(p)-27(o)-28(d)-438(wielk)56(\\241)-438(k)56(arc)-1(zm\\246)-1(,)-438(sto)-55(j\\241c\\241)-438(napr)1(z)-1(ec)-1(i)1(w)-439(k)56(an)1(c)-1(elaru)-437(w)]TJ -27.879 -13.55 Td[(k)28(\\246pie)-466(dr)1(z)-1(ew)-466(jak)28(ob)28(y)-465(w)-466(t)28(ym)-466(ga)-56(j)1(u)-466(cienist)28(ym,)-466(tam)-466(s)-1(i)1(\\246)-467(n)1(a)-56(j)1(s)-1(kw)28(apn)1(iej)-466(ci\\273bi\\241c,)-466(b)-27(o)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(cia\\273)-418(c)27(h)1(\\252)-1(o)-27(dna)28(wy)-417(w)-1(i)1(ate)-1(r)-417(n)1(ie)-1(zgorze)-1(j)-417(k)28(oleba\\252)-417(p)-28(olami,)-417(spiek)56(a)-418(jedn)1(ak)-418(p)-27(o)-28(d)1(nosi\\252a)]TJ 0 -13.549 Td[(si\\246)-325(okr)1(utec)-1(zna,)-324(d)1(ogrze)-1(w)28(a\\252o,)-324(\\273)-1(e)-325(j)1(u\\273)-324(niejeden)-324(ledwie)-324(z)-1(ip)1(ia\\252)-324(i)-324(w)-325(p)1(iwie)-325(sz)-1(ed\\252)-324(sz)-1(u)1(k)55(a\\242)]TJ 0 -13.549 Td[(o)-28(c)28(h\\252o)-28(d)1(y)83(.)-492(Be)-1(z)-492(to)-492(i)-492(k)56(arcz)-1(ma)-492(b)28(y\\252a)-492(p)1(rz)-1(ep)-27(e)-1(\\252ni)1(ona,)-492(i)-492(p)-27(o)-28(d)-491(drzew)27(ami)-492(s)-1(t)1(ali)-492(ku)1(pami)]TJ 0 -13.549 Td[(gw)28(arz)-1(\\241c)-430(z)-431(cic)27(h)1(a)-431(i)-430(d)1(e)-1(l)1(ib)-28(eru)1(j\\241c)-431(n)1(ad)-430(o)28(w)27(\\241)-430(n)1(o)27(win)1(\\241,)-430(wraz)-431(le\\273)-431(d)1(a)-56(j)1(\\241c)-431(pi)1(lne)-430(bacz)-1(enie)]TJ 0 -13.55 Td[(na)-390(k)55(an)1(c)-1(elari)1(\\246)-392(i)-390(na)-391(p)1(is)-1(ar)1(z)-1(o)28(w)28(e)-392(mies)-1(zk)56(anie)-391(p)-27(o)-391(dru)1(giej)-391(stron)1(ie)-392(d)1(om)27(u)1(,)-391(k)56(a)-56(j)-390(rw)28(e)-1(tes)-391(i)]TJ 0 -13.549 Td[(kr)1(\\246)-1(tan)1(ina)-333(b)28(y\\252y)-333(coraz)-334(wi\\246ksz)-1(e.)]TJ 27.879 -13.549 Td[(Od)-333(cz)-1(asu)-333(d)1(o)-334(cz)-1(asu)-333(pi)1(s)-1(arzo)28(w)27(a)-333(wyt)28(yk)56(a\\252a)-334(ok)1(nem)-334(spa\\261n\\241)-333(g\\246)-1(b)-27(\\246)-334(i)-333(krzycz)-1(a\\252a:)]TJ 0 -13.549 Td[({)-333(\\221p)1(ie)-1(sz)-334(si\\246)-1(,)-333(M)1(agda!)-333(A)-333(\\273)-1(eb)28(y\\261)-334(k)1(ulasy)-333(p)-28(o\\252ama\\252a,)-333(t\\252umoku)-333(jeden!)]TJ 0 -13.549 Td[(Dzie)-1(wk)56(a)-401(pr)1(z)-1(elat)28(yw)28(a\\252)-1(a)-401(co)-401(tro)-28(c)28(h\\246)-401(przez)-402(p)-27(ok)28(o)-56(je,)-401(j)1(a\\273)-1(e)-401(dud)1(ni)1(a\\252)-1(o)-401(i)-401(b)1(rz\\246)-1(cz)-1(a\\252y)]TJ -27.879 -13.55 Td[(sz)-1(yb)29(y)83(,)-435(jak)1(ie)-1(\\261)-436(d)1(z)-1(i)1(e)-1(c)27(k)28(o)-435(j\\246\\252o)-436(si\\246)-436(wyd)1(z)-1(iera\\242)-436(wn)1(ie)-1(b)-27(og\\252osy)83(,)-435(k)56(a)-56(j)1(\\261)-436(z)-1(a)-435(dome)-1(m)-435(gdak)56(a\\252y)]TJ 0 -13.549 Td[(wystrasz)-1(on)1(e)-476(ku)1(ry)83(,)-475(a)-475(zz)-1(i)1(a)-56(jan)29(y)-475(s)-1(t\\363)-55(jk)56(a)-475(j\\241\\252)-475(gani)1(a\\242)-476(ku)1(rc)-1(z\\241tk)56(a)-475(rozpierzc)27(ha)-55(j\\241ce)-476(p)-27(o)]TJ 0 -13.549 Td[(zb)-28(o\\273ac)27(h)-333(i)-333(d)1(ro)-28(d)1(z)-1(e.)]TJ 27.879 -13.549 Td[({)-333(Wid)1(z)-1(i)-333(mi)-333(s)-1(i\\246,)-333(c)-1(o)-333(b)-27(\\246)-1(d)1(\\241)-334(u)1(gas)-1(zc)-1(zali)-333(nacze)-1(ln)1(ik)56(a)-334({)-333(rzek\\252)-334(kt)1(\\363ry\\261.)]TJ 0 -13.549 Td[({)-333(P)28(ono)-333(w)28(c)-1(zora)-56(j)-332(pisarz)-334(p)1(rzywi\\363z)-1(\\252)-333(c)-1(a\\252y)-333(p)-27(\\363\\252k)28(os)-1(ze)-1(k)-333(n)1(apitk)28(\\363)28(w.)]TJ 0 -13.549 Td[({)-333(Sc)27(h)1(la)-55(j\\241)-333(s)-1(i\\246)-333(jak)-333(\\252oni)1(.)]TJ 0 -13.55 Td[({)-300(Ab)-28(o)-300(to)-300(nie)-300(m)-1(og\\241,)-300(ma\\252o)-301(to)-300(im)-300(nar\\363)-27(d)-300(s)-1(k\\252ad)1(a)-301(p)-27(o)-28(d)1(atk)28(\\363)28(w)-1(,)-300(a)-300(pr)1(z)-1(ec)-1(i)1(e)-1(c)27(h)-300(n)1(ikto)]TJ -27.879 -13.549 Td[(im)-333(na)-333(r\\246c)-1(e)-334(n)1(ie)-334(p)1(atrzy)-334({)-333(wyrzek\\252)-334(M)1(ate)-1(u)1(s)-1(z,)-333(ale)-334(ktosik)-333(zakrzycz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta,)-333(stra\\273ni)1(ki)-333(ano)-333(przysz)-1(\\252y)84(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(w)-1(i)1(lki)-333(si\\246)-334(w\\252\\363)-28(c)-1(z\\241,)-333(\\273)-1(e)-333(ni)-333(p)-27(om)-1(iar)1(k)28(o)28(w)27(a\\242,)-333(kiedy)-333(i)-333(kt\\363r\\246dy)84(.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(hli)-433(jedn)1(ak)-433(trw)28(o)-1(\\273ni)1(e)-1(,)-433(gdy)1(\\273)-434(s)-1(tr)1(a\\273)-1(n)1(ic)-1(y)-433(zas)-1(iedl)1(i)-434(p)-27(o)-28(d)-433(k)56(ance)-1(lar)1(i\\241,)-433(oto-)]TJ -27.879 -13.55 Td[(cz)-1(eni)-304(pr)1(z)-1(ez)-305(ku)1(p)-28(\\246)-305(l)1(udzi,)-304(mi\\246)-1(d)1(z)-1(y)-304(k)1(t\\363rymi)-304(b)28(y\\252)-304(w)27(\\363)-55(jt,)-304(m\\252)-1(y)1(narz,)-304(a)-305(n)1(iec)-1(o)-304(z)-305(dal)1(a)-305(kr)1(\\246)-1(ci\\252)]TJ 0 -13.549 Td[(si\\246)-334(k)28(o)28(w)27(al)-333(p)1(iln)1(ie)-334(nas\\252uc)28(h)28(uj)1(\\241c)-1(y)84(.)]TJ\nET\nendstream\nendobj\n2209 0 obj <<\n/Type /Page\n/Contents 2210 0 R\n/Resources 2208 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2208 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2213 0 obj <<\n/Length 9157      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(693)]TJ -330.353 -35.866 Td[({)-333(M\\252yn)1(arz)-334(si\\246)-334(\\252as)-1(i)-333(k)1(ie)-1(b)29(y)-334(t)1(e)-1(n)-333(g\\252o)-28(d)1(n)28(y)-333(pi)1(e)-1(s!)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(go)-333(s)-1(i\\246)-333(b)-28(o)-55(j\\241,)-333(ten)-333(m)27(u)-333(n)1(a)-56(j)1(m)-1(i)1(le)-1(j)1(s)-1(zy!)]TJ 0 -13.549 Td[({)-397(K)1(ie)-1(j)-396(s\\241)-397(stra\\273ni)1(ki,)-396(to)-397(n)1(ac)-1(zelnik)56(a)-396(ino)-396(patr)1(z)-1(e\\242)-1(!)-396({)-396(z)-1(a)28(w)27(o\\252a\\252)-396(Grze)-1(l)1(a,)-397(w)28(\\363)-56(j)1(t\\363)28(w)]TJ -27.879 -13.549 Td[(br)1(at,)-346(i)-346(o)-28(dsz)-1(ed\\252)-346(na)-346(stron)1(\\246)-1(,)-346(k)56(a)-56(j)-346(sta\\252)-346(An)28(tek,)-346(Mateusz)-1(,)-346(K\\252\\241b)-346(i)-346(S)1(tac)27(h)1(o)-347(P)1(\\252os)-1(zk)56(a,)-347(p)-27(o-)]TJ 0 -13.549 Td[(redziws)-1(zy)-436(ze)-436(s)-1(ob)1(\\241,)-436(rozes)-1(zli)-436(si\\246)-436(mi\\246)-1(d)1(z)-1(y)-435(\\252ud)1(z)-1(i)-435(pra)28(wi\\241c)-436(im)-436(cos)-1(ik)-435(a)-436(pr)1(z)-1(ek\\252ada)-55(j\\241c)]TJ 0 -13.55 Td[(co\\261)-432(w)28(a\\273)-1(n)1(e)-1(go,)-430(\\273e)-432(s\\252uc)28(hali)-430(w)-431(wie)-1(l)1(kiej)-431(cic)27(h)1(o\\261)-1(ci,)-430(t)28(ylk)28(o)-431(n)1(iekie)-1(d)1(y)-431(co)-431(tam)-431(k)1(to\\261)-431(w)27(es)-1(-)]TJ 0 -13.549 Td[(tc)27(h)1(n\\241\\252,)-347(p)-27(o)-28(d)1(rapa\\252)-347(si\\246)-348(f)1(rasobli)1(w)-1(i)1(e)-348(alb)-27(o)-347(s)-1(tr)1(z)-1(y)1(gn\\241\\252)-347(\\261)-1(lepi)1(am)-1(i)1(,)-347(ku)-347(stra\\273nik)28(om)-347(ku)1(pi\\241c)]TJ 0 -13.549 Td[(si\\246)-334(zaraz)-1(em)-334(coraz)-334(cia\\261niej.)]TJ 27.879 -13.549 Td[(An)28(tek,)-362(ws)-1(p)1(art)28(y)-362(plec)-1(ami)-362(o)-362(w)27(\\246gie)-1(\\252)-362(k)56(arcz)-1(m)28(y)83(,)-362(gada\\252)-362(kr\\363tk)28(o,)-362(mo)-28(cno)-362(i)-362(jak)28(ob)28(y)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(k)55(azuj)1(\\241c)-1(o,)-422(z)-1(a\\261)-423(w)-423(d)1(ru)1(gie)-1(j)-422(ku)1(pie)-423(p)-27(o)-28(d)-422(dr)1(z)-1(ew)27(ami)-422(Mate)-1(u)1(s)-1(z)-423(p)1(ra)28(wi\\252)-423(z)-423(pr)1(z)-1(ekp)1(in-)]TJ 0 -13.549 Td[(k)56(am)-1(i)1(,)-449(j)1(a\\273)-1(e)-449(o\\261)-1(mia\\252)-449(si\\246)-449(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)1(,)-449(a)-449(w)-449(tr)1(z)-1(ec)-1(i)1(e)-1(j)-448(gromadzie)-449(przy)-449(sm\\246)-1(tar)1(z)-1(u)-448(Gr)1(z)-1(ela)]TJ 0 -13.55 Td[(pr)1(z)-1(ema)27(wia\\252)-377(tak)-376(m)-1(\\241d)1(rze)-378(j)1(ak)28(ob)28(y)-377(z)-377(ot)28(w)27(ar)1(te)-1(j)-376(ks)-1(i)1(\\241\\273)-1(ki)-376(c)-1(zyta\\252,)-377(\\273e)-377(c)-1(i\\246\\273)-1(k)28(o)-377(b)29(y\\252o)-377(wyro-)]TJ 0 -13.549 Td[(zumie)-1(\\242.)]TJ 27.879 -13.549 Td[(A)-390(wsz)-1(y)1(s)-1(cy)-390(tr)1(z)-1(ej)-389(przyn)1(ie)-1(w)28(alali)-389(do)-389(jedn)1(e)-1(go:)-389(ab)28(y)-389(nie)-390(s\\252uc)27(h)1(a\\242)-390(nacz)-1(elni)1(k)55(a)-389(ni)]TJ -27.879 -13.549 Td[(t)28(yc)27(h)1(,)-333(kt\\363re)-333(z)-334(ur)1(z)-1(\\246dami)-333(z)-1(a)28(wdy)-333(tr)1(z)-1(yma)-56(j)1(\\241,)-333(i)-333(s)-1(zk)28(o\\252y)-334(n)1(ie)-334(u)1(c)27(h)28(w)28(ala\\242.)]TJ 27.879 -13.549 Td[(Nar\\363)-27(d)-470(p)1(rzys)-1(\\252u)1(c)27(h)1(iw)27(a\\252)-469(s)-1(i\\246)-470(w)-469(s)-1(ku)1(pieni)1(u)-470(k)28(ol)1(e)-1(b)1(i\\241c)-470(s)-1(i)1(\\246)-470(to)-470(w)-470(t\\246,)-469(to)-470(w)-470(d)1(rug\\241)]TJ -27.879 -13.55 Td[(stron\\246,)-333(w\\252a)-1(\\261ni)1(e)-334(jak)28(o)-333(ten)-333(b)-28(\\363r)1(,)-333(kiej)-333(z)-1(amietliwy)-333(wiater)-333(p)-28(o)28(wieje.)]TJ 27.879 -13.549 Td[(Nikt)1(o)-270(g\\252os)-1(u)-269(n)1(ie)-270(z)-1(ab)1(ie)-1(r)1(a\\252,)-270(ki)1(w)27(ali)-269(jeno)-269(pr)1(z)-1(ytak)1(uj)1(\\241c)-1(o)-270(g\\252o)28(w)28(am)-1(i)1(,)-270(gd)1(y\\273)-270(na)-55(jg\\252up)1(-)]TJ -27.879 -13.549 Td[(sz)-1(y)-240(roz)-1(u)1(m)-1(i)1(a\\252,)-241(jak)28(o)-240(z)-242(n)1(o)28(w)27(ej)-241(sz)-1(k)28(o\\252y)-240(t)28(yla)-241(j)1(e)-1(n)1(o)-241(b)-27(\\246)-1(d)1(z)-1(ie)-241(p)-27(o)-28(c)-1(i)1(e)-1(c)28(h)28(y;)-241(co)-241(k)56(a\\273\\241)-241(na)-241(n)1(i\\241)-241(p)1(\\252ac)-1(i\\242)]TJ 0 -13.549 Td[(no)28(w)28(e)-334(p)-27(o)-28(datk)1(i,)-333(a)-334(d)1(o)-334(t)1(e)-1(go)-333(nik)28(om)28(u)-333(si\\246)-334(ni)1(e)-334(\\261)-1(p)1(ies)-1(zy\\252o.)]TJ 27.879 -13.549 Td[(Niep)-28(ok)28(\\363)-55(j)-514(j)1(e)-1(d)1(nak)-514(ogar)1(nia\\252)-514(gromad\\246,)-514(p)1(rz)-1(es)-1(t)1(\\246)-1(p)-27(o)28(w)27(ali)-514(z)-514(nogi)-513(na)-514(nog\\246,)-514(j\\246li)]TJ -27.879 -13.55 Td[(c)27(h)1(rz\\241k)55(a\\242)-333(a)-334(p)-27(ok)56(as)-1(\\252yw)28(a\\242)-1(,)-333(a)-333(ni)1(kt)-333(jes)-1(zc)-1(ze)-334(n)1(ie)-334(wie)-1(d)1(z)-1(i)1(a\\252,)-334(co)-333(p)-28(o)-27(c)-1(z\\241\\242)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-313(m\\241dr)1(z)-1(e)-313(p)1(ra)28(w)-1(i)1(\\252)-313(Gr)1(z)-1(ela,)-313(p)1(rosto)-313(d)1(o)-313(s)-1(erca)-313(tr)1(a\\014a\\252)-313(An)29(te)-1(k,)-312(ale)-313(i)-312(s)-1(tr)1(ac)27(h)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-333(si\\246)-334(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\242)-334(nacz)-1(eln)1(ik)28(o)28(w)-1(i)-333(a)-333(z)-1(ad)1(z)-1(i)1(e)-1(r)1(a\\242)-334(z)-334(ur)1(z)-1(\\246dami.)]TJ 27.879 -13.549 Td[(Jeden)-364(ogl)1(\\241)-1(d)1(a\\252)-364(si\\246)-364(na)-364(d)1(rugi)1(e)-1(go,)-363(k)55(a\\273den)-363(s)-1(i\\246)-364(g\\252o)28(w)-1(i)1(\\252)-364(z)-364(os)-1(ob)1(na,)-364(za\\261)-364(w)-1(szys)-1(tk)1(ie)]TJ -27.879 -13.549 Td[(obzierali)-346(s)-1(i)1(\\246)-348(n)1(a)-347(b)-27(ogatsz)-1(yc)28(h,)-346(ale)-347(m)-1(\\252yn)1(arz)-347(i)-346(c)-1(o)-346(na)-56(j)1(pi)1(e)-1(rwsi)-347(z)-347(d)1(rugi)1(c)27(h)-346(w)-1(si)-346(trzym)-1(al)1(i)]TJ 0 -13.55 Td[(si\\246)-334(jak)28(o\\261)-333(na)-333(ub)-27(o)-28(cz)-1(u)1(,)-334(sto)-55(j\\241c)-334(j)1(akb)28(y)-333(z)-334(r)1(oz)-1(m)28(ys)-1(\\252em)-334(na)-333(o)-28(cz)-1(ac)28(h)-333(s)-1(t)1(ra\\273)-1(n)1(ik)28(\\363)28(w)-334(i)-333(p)1(is)-1(ar)1(z)-1(a.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(s)-1(zed\\252)-333(do)-333(nic)28(h)-333(An)28(tek)-334(z)-333(prze\\252)-1(o\\273eniem)-1(,)-333(al)1(e)-334(m)-1(\\252yn)1(arz)-334(o)-27(db)1(urk)1(n\\241\\252:)]TJ 0 -13.549 Td[({)-265(Kto)-265(ma)-265(roz)-1(u)1(m,)-265(te)-1(n)-264(s)-1(am)-265(wie)-1(,)-265(j)1(ak)-265(ma)-266(g\\252oso)28(w)27(a\\242)-265({)-265(i)-265(o)-28(dwr\\363)-27(c)-1(i\\252)-265(si\\246)-266(d)1(o)-265(k)28(o)27(w)28(ala,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(n)-473(pr)1(z)-1(y\\261wiarcz)-1(a\\252)-474(wsz)-1(ystki)1(m)-1(,)-473(ale)-474(kr\\246c)-1(i\\252)-474(si\\246)-474(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-474(m)-1(i\\246dzy)-474(gr)1(om)-1(ad)1(\\241)]TJ 0 -13.549 Td[(pr)1(z)-1(ew)27(\\241c)28(h)28(uj)1(\\241c)-1(,)-413(c)-1(o)-413(s)-1(i\\246)-414(\\261w)-1(i)1(\\246)-1(ci,)-414(a)-413(do)-414(p)1(is)-1(ar)1(z)-1(a)-413(z)-1(ac)27(h)1(o)-28(d)1(z)-1(i\\252,)-413(z)-415(m\\252yn)1(arz)-1(em)-414(p)-27(ogadyw)28(a\\252;)]TJ 0 -13.55 Td[(Gr)1(z)-1(el\\246)-361(cz)-1(\\246s)-1(to)28(w)28(a\\252)-361(t)28(ytu)1(niem)-361(i)-360(tak)-360(s)-1(i\\246)-361(tai)1(\\252)-361(ze)-361(s)-1(w)28(oimi)-361(zam)27(y)1(s)-1(\\252ami,)-360(\\273)-1(e)-361(d)1(o)-361(k)28(o\\253)1(c)-1(a)-360(nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(wiadomo,)-333(z)-1(a)-333(ki)1(m)-334(trzyma.)]TJ 27.879 -13.549 Td[(Ale)-378(wi\\246)-1(k)1(s)-1(zo\\261)-1(\\242)-378(ju)1(\\273)-379(si\\246)-378(s)-1(k\\252an)1(ia\\252a)-378(g\\252os)-1(o)28(w)28(a\\242)-379(p)1(rze)-1(ciw)-378(s)-1(zk)28(ole,)-378(rozs)-1(yp)1(ali)-378(si\\246)-378(p)-28(o)]TJ -27.879 -13.549 Td[(pl)1(ac)-1(u)-275(i)-276(ni)1(e)-277(b)1(ac)-1(z\\241c)-277(n)1(a)-276(pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(o)27(wy)-276(skw)28(ar)-276(p)-27(oredzali)-276(coraz)-276(gw)27(ar)1(niej)-276(i)-275(hard)1(z)-1(i)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(gdy)-333(p)1(isarz)-334(za)27(w)28(o\\252a\\252)-334(p)1(rze)-1(z)-334(ok)1(no:)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)-27(\\363)-56(j)1(d\\271)-333(no)-333(tu)-333(kt\\363ry)1(!)]TJ 0 -13.55 Td[(Nikt)-333(si\\246)-334(j)1(e)-1(d)1(nak)-333(ni)1(e)-334(p)-28(or)1(usz)-1(y)1(\\252)-1(,)-333(j)1(akb)28(y)-333(n)1(ie)-334(dos\\252ysz)-1(eli.)]TJ 0 -13.549 Td[({)-327(Niec)27(h)-326(no)-327(k)1(t\\363ry)-327(sk)28(o)-28(cz)-1(y)-326(do)-327(d)1(w)27(or)1(u)-327(p)-27(o)-327(ry)1(b)28(y)83(,)-326(m)-1(i)1(e)-1(li)-326(rano)-326(jes)-1(zc)-1(ze)-327(przys\\252a\\242)-1(,)-327(a)]TJ -27.879 -13.549 Td[(jak)28(o\\261)-333(nie)-333(przysy\\252a)-56(j)1(\\241!)-334(T)28(ylk)28(o)-333(p)1(r\\246)-1(d)1(z)-1(ej!)-333({)-333(grzm)-1(i)1(a\\252)-334(r)1(oz)-1(k)56(az)-1(u)1(j\\241co.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(p)1(rz)-1(y)1(s)-1(zlim)-334(t)1(u)-333(na)-333(p)-28(os\\252ugi)-333({)-333(oz)-1(w)28(a\\252)-333(s)-1(i\\246)-333(jaki\\261)-333(hard)1(y)-333(g\\252os)-1(.)]TJ 0 -13.549 Td[({)-322(Niec)27(h)-321(s)-1(am)-322(lec)-1(i,)-321(\\273)-1(al)-321(m)27(u)-321(prze)-1(t)1(rz)-1(\\241sn\\241\\242)-322(k)56(a\\252du)1(na)-322({)-322(za\\261)-1(mia\\252)-322(si\\246)-323(k)1(t\\363ry\\261,)-322(\\273e)-323(to)]TJ -27.879 -13.55 Td[(pi)1(s)-1(ar)1(z)-334(m)-1(i)1(a\\252)-334(b)1(rz)-1(u)1(c)27(h)1(o)-334(k)1(ie)-1(j)-333(b)-27(\\246b)-28(en.)]TJ 27.879 -13.549 Td[(Pi)1(s)-1(ar)1(z)-312(j)1(e)-1(no)-311(zakl\\241\\252,)-310(a)-312(p)-27(o)-311(c)27(h)29(w)-1(i)1(li)-311(wysz)-1(ed\\252)-311(w)28(\\363)-56(jt)-310(o)-28(d)-311(p)-27(o)-28(dw)28(\\363rza,)-311(p)1(rz)-1(ebr)1(a\\252)-311(s)-1(i\\246)-311(z)-1(a)]TJ\nET\nendstream\nendobj\n2212 0 obj <<\n/Type /Page\n/Contents 2213 0 R\n/Resources 2211 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2211 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2216 0 obj <<\n/Length 9457      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(694)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(k)56(arcz)-1(m\\246)-334(i)-333(p)-27(ogna\\252)-333(t)28(y\\252am)-1(i)-333(ws)-1(i)-333(k)1(u)-333(dw)28(oro)28(wi.)]TJ 27.879 -13.549 Td[({)-333(Dz)-1(i)1(e)-1(ci)-333(pani)-333(p)1(isarz)-1(o)28(w)28(e)-1(j)-333(p)1(rze)-1(win)1(\\241\\252)-334(i)-333(ob)1(tar\\252,)-333(to)-333(s)-1(i\\246)-333(\\271)-1(dziebk)28(o)-333(pr)1(z)-1(ewie)-1(tr)1(z)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)1(ani)-333(p)1(is)-1(ar)1(z)-1(o)28(w)28(a)-334(n)1(ie)-334(lu)1(bi)-333(taki)1(c)27(h)-333(f)1(e)-1(tor)1(\\363)27(w)-333(na)-333(p)-27(ok)27(o)-55(jac)28(h.)]TJ 0 -13.549 Td[({)-333(P)28(okr\\363t)1(c)-1(e)-334(to)-333(i)-333(p)-27(orce)-1(n)1(e)-1(le)-334(wyn)1(os)-1(i)1(\\242)-334(m)27(u)-333(k)56(a\\273\\241)-334({)-333(p)1(rz)-1(ekp)1(iw)27(al)1(i.)]TJ 0 -13.549 Td[({)-346(Hale,)-346(\\273e)-347(to)-346(d)1(z)-1(i)1(e)-1(d)1(z)-1(ica)-346(jes)-1(zcz)-1(e)-346(nie)-346(wida\\242)-346({)-346(dziw)28(o)28(w)27(a\\252)-346(si\\246)-347(k)1(t\\363ry\\261,)-346(ale)-346(na)-346(to)]TJ -27.879 -13.55 Td[(rze)-1(k)1(\\252)-334(k)28(o)28(w)28(al)-334(z)-333(c)27(h)28(yt)1(rym)-334(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)28(hem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(g\\252u)1(pi)-333(si\\246)-334(p)-27(ok)56(az)-1(yw)28(a\\242)-1(!)]TJ 0 -13.549 Td[(Sp)-27(o)-55(jrze)-1(l)1(i)-333(na)-333(niego)-333(p)28(yta)-56(j)1(\\241c)-1(o.)]TJ 0 -13.549 Td[({)-312(Ju)1(\\261)-1(ci,)-311(kto)-312(m)28(u)-312(k)56(a\\273e)-312(z)-1(ad)1(z)-1(iera\\242)-312(z)-312(nacz)-1(eln)1(ikiem)-1(,)-311(a)-312(p)1(rze)-1(cie)-1(\\273)-312(za)-312(sz)-1(k)28(o\\252\\241)-312(g\\252oso-)]TJ -27.879 -13.549 Td[(w)28(a\\242)-334(nie)-333(b)-28(\\246dzie,)-333(m)-1(a\\252o)-333(b)28(y)-333(to)-333(m)27(usia\\252)-333(p\\252acie)-334(n)1(a)-334(n)1(i\\241!)-333(M\\241dr)1(ala!)]TJ 27.879 -13.549 Td[({)-255(Ale)-255(t)28(y)83(,)-255(M)1(ic)27(h)1(a\\252,)-255(z)-256(n)1(am)-1(i)-254(trzymas)-1(z,)-255(c)-1(o?)-255({)-255(p)1(rz)-1(y)1(tar\\252)-255(go)-255(nat)1(arc)-1(zywie)-255(Mateusz)-1(.)]TJ 0 -13.55 Td[(Ko)28(w)28(al)-223(s)-1(kr)1(\\246)-1(ci\\252)-223(s)-1(i)1(\\246)-224(kiej)-223(p)1(rzydeptan)1(a)-223(glista)-223(i)-223(o)-28(dmru)1(kn\\241)28(wsz)-1(y)-223(cos)-1(ik)-222(j\\241\\252)-223(s)-1(i\\246)-223(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(cis)-1(k)56(a\\242)-389(do)-389(m\\252yn)1(arza,)-389(kt\\363r)1(e)-1(n)-388(pr)1(z)-1(yst\\241)-28(p)1(i\\252)-389(do)-388(c)27(h\\252op)-27(\\363)28(w)-389(i)-389(m\\363)28(w)-1(i)1(\\252)-389(do)-389(starego)-389(P\\252osz)-1(k)1(i)]TJ 0 -13.549 Td[(g\\252o\\261)-1(n)1(o,)-333(b)28(y)-333(i)-333(dr)1(ugie)-334(s\\252ysz)-1(a\\252y:)]TJ 27.879 -13.549 Td[({)-439(A)-438(ja)-438(w)27(am)-439(r)1(adz\\246)-1(,)-438(g\\252os)-1(u)1(jcie,)-439(j)1(ak)-439(c)28(hc\\241)-439(ur)1(z)-1(\\246dy)84(.)-438(Sz)-1(k)28(o\\252a)-438(p)-28(ot)1(rz)-1(ebn)1(a)-439(i)-438(\\273)-1(eb)28(y)]TJ -27.879 -13.549 Td[(b)28(y\\252a)-415(n)1(a)-56(jgor)1(s)-1(za,)-415(to)-415(b)-28(\\246dzie)-415(le)-1(p)1(s)-1(za)-415(o)-28(d)-415(\\273adn)1(e)-1(j)1(.)-415(A)-416(o)-415(j)1(akiej)-415(z)-1(am)28(y\\261lac)-1(i)1(e)-1(,)-415(n)1(ie)-416(d)1(adz\\241.)]TJ 0 -13.55 Td[(T)83(ru)1(dn)1(o,)-395(g\\252)-1(o)28(w)28(\\241)-396(m)28(ur)1(u)-395(nie)-395(prze)-1(b)-27(o)-28(d)1(z)-1(i)1(e)-1(.)-395(Nie)-396(ze)-1(c)28(hce)-1(cie)-396(u)1(c)27(h)28(w)28(ali\\242,)-395(to)-396(i)-395(b)-27(e)-1(z)-395(w)27(asz)-1(ego)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(z)-1(w)28(ole)-1(\\253)1(s)-1(t)28(w)28(a)-333(p)-28(osta)28(w)-1(i)1(\\241.)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(n)1(ie)-334(d)1(am)27(y)-333(p)1(ieni\\246dzy)83(,)-332(to)-333(z)-1(a)-333(c\\363\\273)-334(p)-27(os)-1(ta)28(wi\\241?)-333({)-333(oz)-1(w)28(a\\252)-333(s)-1(i\\246)-333(kt\\363r)1(y\\261)-334(z)-333(kup)29(y)83(.)]TJ 0 -13.549 Td[({)-477(G)1(\\252up)1(i\\261)-1(!)-476(Sami)-476(w)27(ez)-1(m\\241,)-476(a)-477(n)1(ie)-477(dasz)-477(z)-477(dob)1(rej)-476(w)27(oli)1(,)-477(to)-476(c)-1(i)-476(ostatni)1(\\241)-477(kr)1(o)27(w)28(\\246)]TJ -27.879 -13.549 Td[(sprze)-1(d)1(adz\\241)-303(i)-302(j)1(e)-1(sz)-1(cz)-1(e)-303(d)1(o)-303(k)28(ozy)-302(p)-28(\\363)-55(jd)1(z)-1(iesz)-303(z)-1(a)-302(op)-28(\\363r)1(!)-303(Rozumies)-1(z!)-302(T)83(o)-303(n)1(ie)-303(z)-303(d)1(z)-1(iedzice)-1(m)]TJ 0 -13.55 Td[(spra)28(w)28(a)-267({)-267(zw)-1(r)1(\\363)-28(c)-1(i)1(\\252)-267(s)-1(i)1(\\246)-268(d)1(o)-267(Lip)-27(c)-1(zak)28(\\363)28(w)-267({)-267(z)-267(nacz)-1(elni)1(kiem)-268(n)1(ie)-267(m)-1(a)-266(\\273)-1(ar)1(t\\363)27(w.)-266(M\\363)28(w)-1(i)1(\\246)-268(w)28(am,)]TJ 0 -13.549 Td[(r\\363b)-27(cie)-1(,)-333(co)-334(k)56(a\\273\\241,)-333(i)-334(d)1(z)-1(i)1(\\246)-1(ku)1(jcie)-334(Bogu,)-333(\\273e)-334(n)1(ie)-334(jest)-334(gor)1(z)-1(ej)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(t)27(wierd)1(z)-1(al)1(i)-293(m)27(u)-293(tak)-293(sam)-1(o)-293(m)28(y\\261)-1(l)1(\\241c)-1(e,)-293(z)-1(a\\261)-293(s)-1(tar)1(y)-293(P\\252os)-1(zk)56(a)-293(p)-28(o)-293(d\\252u)1(gim)-294(r)1(oz)-1(w)28(a-)]TJ -27.879 -13.549 Td[(\\273aniu)-333(wyr)1(z)-1(ek\\252)-333(nies)-1(p)-27(o)-28(d)1(z)-1(ian)1(ie:)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wd\\246)-333(m)-1(\\363)28(wicie)-1(,)-333(a)-333(Ro)-28(c)27(h)1(o)-334(n)1(ar\\363)-28(d)-332(z)-1(b)1(a\\252)-1(am)28(uci\\252)-333(i)-333(do)-333(z)-1(gu)1(b)28(y)-333(p)-28(op)29(yc)27(h)1(a.)]TJ 0 -13.55 Td[(A)-333(na)-333(to)-333(w)-1(y)1(s)-1(t\\241)-28(p)1(i\\252)-333(jaki\\261)-333(gos)-1(p)-27(o)-28(d)1(arz)-334(z)-334(P)1(rzy\\252\\246)-1(k)56(a)-333(i)-333(p)-28(o)28(wiedzia\\252)-334(g\\252o\\261no:)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(Ro)-28(c)27(h)1(o)-333(z)-334(pan)1(am)-1(i)-333(tr)1(z)-1(yma)-333(i)-333(late)-1(go)-333(p)-27(o)-28(dj)1(ud)1(z)-1(a)-333(pr)1(z)-1(ec)-1(i)1(w)-334(ur)1(z)-1(\\246dom!)]TJ 0 -13.549 Td[(Zakrzycz)-1(eli)-415(go)-416(ze)-416(ws)-1(zystkic)28(h)-415(s)-1(tr)1(on,)-415(ale)-416(c)28(h\\252op)-415(s)-1(i)1(\\246)-416(nie)-415(ul\\246kn\\241\\252)-415(i)-415(s)-1(k)28(or)1(o)-416(si\\246)]TJ -27.879 -13.549 Td[(jeno)-333(p)1(rz)-1(y)1(c)-1(iszy\\252o,)-334(zno)28(wuj)-332(g\\252)-1(os)-333(p)-28(o)-27(dni)1(\\363s)-1(\\252.)]TJ 27.879 -13.549 Td[({)-307(A)-307(g\\252up)1(ie)-308(m)28(u)-307(p)-27(om)-1(aga)-55(j\\241!)-307(r)1(z)-1(ek\\252e)-1(m!)-307({)-307(p)-27(oto)-28(cz)-1(y\\252)-307(m\\241dr)1(ymi)-307(o)-28(c)-1(zami)-307({)-307(a)-307(k)28(om)27(u)]TJ -27.879 -13.55 Td[(to)-296(ni)1(e)-297(w)-297(smak,)-296(niec)27(h)-295(s)-1(tan)1(ie)-1(,)-296(t)1(o)-297(m)28(u)-296(w)-297(o)-27(c)-1(zy)-296(pr)1(z)-1(ywt\\363r)1(z)-1(\\246,)-296(g\\252upi)1(e)-1(!)-296(Bo)-296(nie)-296(w)-1(i)1(e)-1(d)1(z)-1(\\241,)-296(i\\273)]TJ 0 -13.549 Td[(za)27(wd)1(y)-286(tak)-286(b)28(y\\252o,)-285(\\273)-1(e)-286(pan)1(o)27(wie)-286(s)-1(i)1(\\246)-287(b)1(un)28(tu)1(j\\241,)-286(n)1(ar\\363)-28(d)-285(ju)1(dz\\241,)-286(do)-286(n)1(ie)-1(szc)-1(z\\246)-1(\\261c)-1(i)1(a)-286(pro)28(w)28(adz\\241,)]TJ 0 -13.549 Td[(ale)-244(j)1(ak)-244(p)1(rz)-1(y)1(jd)1(z)-1(ie)-244(za)-244(to)-243(p\\252ac)-1(i)1(\\242)-1(,)-243(to)-244(kt)1(o)-244(p\\252aci?)-244(c)28(h\\252opi!)-243(A)-243(jak)-243(w)27(am)-244(k)28(ozak)28(\\363)27(w)-243(p)-28(o)-243(w)-1(siac)27(h)]TJ 0 -13.549 Td[(zakw)27(ateru)1(j\\241,)-382(to)-382(kto)-383(b)-27(\\246dzie)-383(br)1(a\\252)-383(bat)28(y)1(?)-383(kto)-382(b)-28(\\246dzie)-383(cie)-1(r)1(pia\\252?)-382(k)28(ogo)-383(d)1(o)-383(kr)1(e)-1(min)1(a\\252)-1(u)]TJ 0 -13.549 Td[(p)-27(o)27(wlek)56(\\241?)-399(A)-398(jeno)-398(w)28(as)-1(,)-398(c)27(h)1(\\252op)-28(\\363)28(w!)-398(P)28(an)1(o)27(wie)-398(s)-1(i\\246)-398(z)-1(a)-398(w)27(ami)-398(ni)1(e)-399(up)-27(omn\\241,)-398(ni)1(e)-1(,)-398(wyp)1(r\\241)]TJ 0 -13.549 Td[(si\\246)-334(ws)-1(zystkiego)-334(k)1(ie)-1(j)-333(j)1(ud)1(as)-1(ze)-334(i)-333(jesz)-1(cz)-1(e)-334(starszyz)-1(n)1(\\246)-334(b)-27(\\246)-1(d)1(\\241)-334(u)1(gas)-1(zc)-1(zali)-333(p)-27(o)-334(d)1(w)27(or)1(ac)27(h.)]TJ 27.879 -13.55 Td[({)-333(B)-1(o)-333(co)-334(im)-333(ta)-333(nar\\363)-27(d)-333(z)-1(n)1(ac)-1(zy)83(,)-333(t)28(yla,)-333(\\273e)-1(b)29(y)-333(z)-1(a)-333(nic)28(h)-333(gnat)28(y)-333(wyci\\241)-28(ga\\252.)]TJ 0 -13.549 Td[({)-322(A)-322(\\273)-1(eb)28(y)-322(mogli,)-322(to)-322(b)28(y)-321(jut)1(ro)-322(wr\\363)-28(cili)-322(p)1(a\\253sz)-1(cz)-1(yzn\\246!)-322({)-322(p)-27(o)-28(dn)1(ie)-1(s\\252y)-322(s)-1(i)1(\\246)-323(w)28(o\\252ania.)]TJ 0 -13.549 Td[({)-311(G)1(rze)-1(la)-310(p)-27(o)27(wieda)-310({)-311(zac)-1(z\\241\\252)-311(zno)28(wu)-310({)-311(ni)1(e)-1(c)28(h)-311(u)1(c)-1(z\\241)-311(p)-27(o)-310(nasz)-1(em)27(u)1(,)-311(a)-310(nie)-311(c)28(hc\\241,)-311(to)]TJ -27.879 -13.549 Td[(ni)1(e)-265(u)1(c)27(h)28(w)28(ala\\242)-264(s)-1(zk)28(o\\252y)83(,)-263(ni)1(e)-265(d)1(a)27(w)28(a\\242)-264(ani)-263(gros)-1(za,)-264(p)1(rze)-1(ciwi\\242)-264(s)-1(i)1(\\246)-1(,)-263(a)-264(ju)1(\\261)-1(ci,)-264(t)28(yl)1(k)28(o)-264(par)1(obk)28(o)28(wi)]TJ 0 -13.549 Td[(\\252ac)-1(n)1(o)-422(k)1(rzykn\\241\\242)-421(na)-422(gosp)-27(o)-28(dar)1(z)-1(a:)-421(rob)1(i\\252)-422(n)1(ie)-422(b)-27(\\246)-1(d)1(\\246)-1(,)-421(ca\\252uj)-421(me)-422(gdzie\\261)-1(,)-421(i)-421(ucie)-1(c)-421(prze)-1(d)]TJ 0 -13.55 Td[(sk)55(ar)1(c)-1(eniem.)-328(A)-1(l)1(e)-329(nar)1(\\363)-28(d)-328(ni)1(e)-329(uciekni)1(e)-329(i)-328(z)-1(a)-328(bu)1(n)28(t)-328(kij)1(e)-329(wz)-1(i\\241\\242)-328(w)27(e\\271)-1(mie,)-329(b)-27(o)-328(nik)1(to)-329(d)1(ru)1(gi)]TJ 0 -13.549 Td[(pl)1(e)-1(c\\363)28(w)-278(za)-278(n)1(iego)-277(nie)-277(p)-28(o)-28(d)1(s)-1(t)1(a)27(wi.)1(..)-277(T)83(o)-277(w)27(ama)-277(m)-1(\\363)28(wi\\246,)-277(taniej)-277(w)28(am)-278(wyp)1(adn)1(ie)-278(p)-27(os)-1(t)1(a)27(wi\\242)]TJ\nET\nendstream\nendobj\n2215 0 obj <<\n/Type /Page\n/Contents 2216 0 R\n/Resources 2214 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2214 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2219 0 obj <<\n/Length 9513      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(695)]TJ -358.232 -35.866 Td[(sz)-1(k)28(o\\252\\246)-304(ni\\271li)-303(prze)-1(ciwi\\242)-304(si\\246)-304(urz\\246)-1(d)1(om.)-304(A)-304(\\273e)-304(p)-28(o)-304(n)1(as)-1(zem)27(u)-303(nie)-304(n)1(aucz)-1(a)-55(j\\241,)-304(p)1(ra)28(wda,)-303(ale)-304(i)]TJ 0 -13.549 Td[(tak)-300(na)-301(Ru)1(s)-1(k)28(\\363)28(w)-301(nas)-301(ni)1(e)-302(p)1(rze)-1(r)1(obi\\241,)-300(b)-28(o)-27(\\242)-302(\\273aden)-300(pacie)-1(r)1(z)-1(a)-301(n)1(i)-301(mi\\246dzy)-301(sob\\241)-301(n)1(ie)-301(b)-27(\\246)-1(d)1(z)-1(ie)]TJ 0 -13.549 Td[(m\\363)27(wi\\252)-409(i)1(nacz)-1(ej,)-409(a)-408(jeno)-409(j)1(ak)-409(go)-409(matk)55(a)-408(nauczy\\252a!)-409(Za\\261)-409(na)-409(ostatku)-408(to)-409(w)27(am)-409(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(rze)-1(k)1(n\\246:)-307(s)-1(w)28(o)-56(j)1(\\241)-308(an)1(o)-308(stron)1(\\246)-308(trzyma)-56(j)1(m)27(y!)-307(A)-307(dr)1(\\241)-308(si\\246)-308(mi\\246dzy)-307(s)-1(ob)1(\\241)-308(p)1(ano)28(wie,)-308(n)1(ie)-308(n)1(as)-1(za)]TJ 0 -13.549 Td[(spra)28(w)28(a,)-467(n)1(iec)27(h)-466(si\\246)-467(ta)-466(k\\252y\\271ni\\241)-466(i)-466(z)-1(agr)1(yz)-1(a)-55(j\\241,)-466(taki)1(e)-467(nam)-466(brat)28(y)-466(jedn)1(e)-467(i)-466(dr)1(ugie,)-466(\\273)-1(e)]TJ 0 -13.55 Td[(ni)1(e)-1(c)28(h)28(ta)-333(ic)27(h)-333(mor\\363)28(wk)55(a)-333(n)1(ie)-334(mini)1(e)-1(.)]TJ 27.879 -13.549 Td[(Zw)27(ar)1(li)-257(si\\246)-257(k)28(ole)-257(niego)-257(g\\246s)-1(t)28(w)28(\\241)-257(i)-257(zakrzyc)-1(zeli)-257(ki)1(e)-1(j)-256(na)-257(w\\261c)-1(iek\\252ego)-257(psa,)-257(n)1(a)-257(pr\\363\\273no)]TJ -27.879 -13.549 Td[(m\\252ynar)1(z)-233(bra\\252)-232(go)-233(w)-233(ob)1(ron)1(\\246)-1(,)-232(na)-232(pr)1(\\363\\273)-1(n)1(o)-233(i)-232(p)-28(on)1(iekt\\363re)-233(za)-233(n)1(im)-233(si\\246)-233(uj)1(mo)27(w)28(a\\252y)83(.)-232(Gr)1(z)-1(elo)28(w)27(e)]TJ 0 -13.549 Td[(stronn)1(iki)-331(j)1(u\\273)-332(m)28(u)-331(z)-1(acz)-1(\\246\\252y)-331(pi\\246\\261)-1(ciami)-331(w)-1(y)1(trz\\241c)27(ha\\242,)-331(\\273)-1(e)-332(mo\\273e)-332(b)28(y)-331(i)-331(do)-331(c)-1(ze)-1(go)-331(gorsz)-1(ego)]TJ 0 -13.549 Td[(dosz\\252)-1(o,)-333(ale)-333(s)-1(tar)1(y)-333(Pry)1(c)-1(ze)-1(k)-333(zakrzycz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-333(Str)1(a\\273)-1(n)1(iki)-333(s)-1(\\252u)1(c)27(ha)-55(j\\241!)]TJ 0 -13.55 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252o)-333(nagle,)-333(a)-334(stary)-333(wyst\\241)-28(p)1(i\\252)-334(i)-333(j)1(\\241\\252)-334(p)1(ra)28(w)-1(i)1(e)-334(gni)1(e)-1(wni)1(e)-1(:)]TJ 0 -13.549 Td[({)-344(\\221wi\\246t\\241)-345(p)1(ra)28(wd\\246)-345(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(,)-344(sw)27(o)-55(jego)-344(dobr)1(a)-345(p)1(atrzm)27(y!)-344(Cic)28(ho)-55(jta,)-344(hal)1(e)-1(,)-344(p)-27(o-)]TJ -27.879 -13.549 Td[(wiedzia\\252e)-1(\\261)-331(sw)27(o)-55(je,)-331(to)-330(da)-56(j)-330(i)-330(dru)1(giem)27(u)-330(rze)-1(c)-331(sw)27(o)-55(je!)-331(Wy)1(dzie)-1(r)1(a)-56(j)1(\\241)-331(s)-1(i)1(\\246)-331(i)-331(m)27(y)1(\\261)-1(l\\241,)-330(co)-331(na)-55(j-)]TJ 0 -13.549 Td[(wi\\246ks)-1(ze)-310(g\\252o)28(w)27(acze)-1(!)-309(Ju)1(\\261)-1(ci,)-309(\\273e)-1(b)28(y)-309(j)1(e)-1(n)1(o)-309(w)-310(kr)1(z)-1(y)1(ku)-309(b)28(y\\252)-309(r)1(oz)-1(u)1(m)-1(,)-309(to)-309(b)-27(e)-1(l)1(e)-310(p)28(ysk)56(ac)-1(z)-309(m)-1(i)1(a\\252)-1(b)29(y)]TJ 0 -13.549 Td[(go)-381(wi\\246c)-1(ej)-381(n)1(i\\271)-1(l)1(i)-381(s)-1(am)-381(p)1(rob)-27(os)-1(zc)-1(z!)-381(P)1(rz)-1(e\\261m)-1(iew)27(a)-55(jta)-380(s)-1(i\\246,)-381(j)1(uc)27(h)29(y)83(,)-381(a)-381(j)1(a)-381(w)28(am)-382(r)1(z)-1(ekn\\246,)-381(j)1(ak)]TJ 0 -13.55 Td[(b)28(yw)28(a\\252o)-300(p)-27(o)-28(d)-300(te)-300(rok)1(i,)-300(ki)1(e)-1(j)-299(s)-1(i\\246)-300(to)-300(p)1(ano)28(wie)-301(b)1(un)29(to)27(w)28(a\\252y;)-300(d)1(obr)1(z)-1(e)-300(bacz)-1(\\246,)-300(j)1(ak)-300(nas)-300(tu)1(m)-1(a-)]TJ 0 -13.549 Td[(ni)1(\\252y)-271(a)-270(p)1(rzys)-1(i)1(\\246)-1(ga\\252y)84(,)-271(\\273e)-271(j)1(ak)-270(P)28(olsk)56(a)-271(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)-270(to)-270(i)-270(w)28(ol\\246)-271(n)1(am)-271(dad)1(z)-1(\\241,)-270(i)-270(gr)1(on)28(ta)-270(z)-271(lasam)-1(i)1(,)-270(i)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o!)-296(Ob)1(iec)-1(yw)28(a\\252y)83(,)-295(m\\363)27(wi\\252y)84(,)-296(a)-296(k)1(to)-296(dr)1(ugi)-295(da\\252,)-296(co)-296(tera)-296(mam)28(y)83(,)-295(i)-296(j)1(e)-1(sz)-1(cz)-1(ek)-296(m)28(usia\\252)]TJ 0 -13.549 Td[(ic)28(h)-267(p)-27(ok)56(ara\\242,)-267(co)-267(n)1(ie)-267(c)27(h)1(c)-1(ia\\252y)-266(w)-267(n)1(ic)-1(zym)-267(u)1(l\\273)-1(y)1(\\242)-267(naro)-27(do)28(wi!)-266(S\\252uc)28(ha)-56(j)1(ta)-267(p)1(an\\363)28(w,)-266(kiedy\\261ta)]TJ 0 -13.549 Td[(g\\252up)1(ie,)-371(ale)-372(mn)1(ie)-372(n)1(a)-371(plewy)-371(nie)-371(w)27(e\\271m)-1(ie,)-371(wiem)-372(j)1(a,)-371(co)-372(znaczy)-371(ta)-371(ic)27(h)-370(P)28(olsk)56(a:)-371(\\273)-1(e)-371(to)]TJ 0 -13.55 Td[(jeno)-333(b)1(at)-334(n)1(a)-334(n)1(as)-1(ze)-334(p)1(le)-1(cy)83(,)-333(p)1(a\\253sz)-1(cz)-1(y)1(z)-1(n)1(a)-334(i)-333(u)1(c)-1(iemi\\246)-1(\\273e)-1(n)1(ie!)-333(Je)-1(sz)-1(cz)-1(e)-333(m)-1(e...)]TJ 27.879 -13.549 Td[({)-333(A)-334(d)1(a)-56(j)1(\\273)-1(e)-334(m)28(u)-333(ta)-333(kt\\363ry)-333(w)-333(p)28(ysk,)-333(niec)27(h)-333(p)1(rze)-1(stani)1(e)-334({)-334(wyr)1(w)27(a\\252)-333(s)-1(i)1(\\246)-334(jak)1(i\\261)-334(g\\252os)-1(.)]TJ 0 -13.549 Td[({)-376(A)-376(t)1(e)-1(ra)-375({)-376(c)-1(i)1(\\241)-28(gn\\241\\252)-376(d)1(ale)-1(j)-375({)-376(j)1(a)-376(taki)-375(s)-1(am)-376(pan)-375(j)1(ak)-376(in)1(ni,)-375(pra)28(w)28(o)-376(sw)27(o)-55(je)-376(m)-1(am)-376(i)]TJ -27.879 -13.549 Td[(ni)1(kt)-333(m)-1(e)-333(palce)-1(m)-333(tkn\\241\\242)-333(nie)-334(\\261mie)-1(!)-333(T)83(am)-333(m)-1(i)-333(P)28(ol)1(s)-1(k)56(a,)-333(k)56(a)-56(j)-333(mi)-333(dob)1(rze)-1(,)-333(k)56(a)-56(j)-333(mam...)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(erw)28(a\\252y)-333(m)27(u)-333(sz)-1(yd)1(liw)28(e)-334(g\\252os)-1(y)84(,)-333(bi)1(j\\241ce)-334(z)-1(e)-333(w)-1(sz)-1(y)1(s)-1(tki)1(c)27(h)-333(stron)-333(n)1(ib)28(y)-333(grad)1(e)-1(m:)]TJ 0 -13.55 Td[({)-333(\\221win)1(ia)-334(t)1(e)-1(\\273)-334(p)-27(okwiku)1(je)-334(z)-333(kun)29(te)-1(n)28(t)1(no\\261c)-1(i,)-333(a)-333(c)27(h)28(w)28(ali)-333(se)-334(c)27(h)1(liw)-334(i)-333(p)-27(e\\252)-1(n)1(e)-334(k)28(ory)1(to!)]TJ 0 -13.549 Td[({)-333(I)-334(za)-334(t)1(o)-334(p)1(rzyk)56(a)-1(r)1(m)-1(i)1(anie)-333(dostanie)-333(pa\\252\\241)-333(w)-334(\\252e)-1(b)-332(i)-334(n)1(o\\273)-1(em)-334(p)-27(o)-333(gardzieli!)]TJ 0 -13.549 Td[({)-333(W)-333(jarmarek)-333(s)-1(p)1(ra\\252)-333(go)-334(stra\\273nik)1(,)-333(to)-334(p)-27(o)28(wie)-1(d)1(a,)-333(\\273)-1(e)-334(n)1(ikto)-333(go)-333(tkn\\241\\242)-333(nie)-333(\\261)-1(mie.)]TJ 0 -13.549 Td[({)-333(Plec)-1(i)1(e)-1(,)-333(a)-333(t)28(yle)-334(miark)1(uj)1(e)-1(,)-333(co)-334(ten)-333(k)28(o\\253ski)-333(ogon!)]TJ 0 -13.549 Td[({)-333(Sieln)28(y)-333(p)1(an,)-333(ma)-334(w)28(ol\\246,)-334(j)1(u\\261c)-1(i)1(,)-333(w)-1(sz)-1(y)-333(go)-333(sam)-1(e)-334(n)1(ies)-1(\\241)-333(p)-28(o)28(w)28(olno\\261ci!)]TJ 0 -13.55 Td[({)-333(Ryc)27(h)28(t)28(yk)-333(i)-333(wiec)27(hcie)-334(z)-333(bu)1(t\\363)27(w)-333(tak)-333(s)-1(amo)-333(b)28(y)-333(nau)1(c)-1(za\\252y!)]TJ 0 -13.549 Td[({)-260(K)1(ury)-259(z)-1(maca\\242)-260(nie)-260(p)-27(oredzi,)-259(a)-260(b)-27(\\246)-1(d)1(z)-1(ie)-260(tu)-259(wyst\\246)-1(p)-27(o)28(w)27(a\\252!)-259(Gn)1(o)-56(jek)-259(juc)28(ha!)-259(B)-1(ar)1(an!)]TJ 0 -13.549 Td[(St)1(ary)-333(z)-1(e\\271)-1(l)1(i\\252)-334(si\\246)-334(sro)-28(d)1(z)-1(e,)-333(ale)-334(j)1(e)-1(n)1(o)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252:)]TJ 0 -13.549 Td[({)-333(\\221cie)-1(r)1(wy!)-333(Ju\\273)-334(n)1(a)28(w)27(et)-334(siwyc)28(h)-333(w)-1(\\252os\\363)28(w)-334(n)1(ie)-334(p)-27(os)-1(zan)28(uj)1(\\241!)]TJ 0 -13.549 Td[({)-333(A)-334(to)-333(i)-333(k)56(a\\273)-1(d)1(\\241)-334(siw)28(\\241)-334(k)28(ob)29(y\\252\\246)-334(trza)-333(b)28(y)-333(u)28(w)27(a\\273a\\242)-334(j)1(e)-1(n)1(o)-334(za)-334(t)1(o,)-334(co)-333(s)-1(iw)28(a,)-333(h\\246?)]TJ 0 -13.549 Td[(Gr)1(uc)27(h)1(n\\246\\252y)-389(\\261m)-1(i)1(e)-1(c)28(h)28(y)-389(i)-388(wraz)-389(z)-1(acz\\246)-1(li)-388(s)-1(i)1(\\246)-389(o)-28(dwraca\\242)-389(p)-28(o)-27(dn)1(os)-1(z\\241c)-389(o)-28(c)-1(zy)-389(n)1(a)-389(d)1(ac)27(h)]TJ -27.879 -13.55 Td[(k)56(ance)-1(l)1(arii,)-333(k)56(a)-56(j)-333(wlaz\\252)-333(s)-1(t\\363)-55(jk)56(a)-333(i)-334(c)28(h)28(yciws)-1(zy)-333(s)-1(i\\246)-333(k)28(om)-1(i)1(na)-333(patr)1(z)-1(y\\252)-333(w)-334(d)1(al.)]TJ 27.879 -13.549 Td[({)-248(J\\363ze)-1(k,)-247(a)-248(z)-1(amkni)1(j)-248(g\\246b)-28(\\246,)-248(b)-27(o)-248(c)-1(i)-247(jes)-1(zc)-1(ze)-249(co)-248(wle)-1(ci!)-248({)-248(k)1(rzyc)-1(ze)-1(l)1(i)-248(z)-249(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)28(hem)-1(,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-334(c)-1(a\\252e)-333(s)-1(tad)1(o)-334(go\\252\\246bi)-333(k)28(o\\252o)28(w)27(a\\252o)-333(nad)-333(n)1(im,)-334(al)1(e)-334(on)-333(nar)1(az)-334(za)27(wrzes)-1(zc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(Je)-1(d)1(z)-1(i)1(e)-1(!)-333(Jedzie)-1(!)-333(Ju)1(\\273)-334(na)-333(skr\\246c)-1(i)1(e)-334(z)-334(Pr)1(z)-1(y)1(\\252)-1(\\246ku)1(!)]TJ 0 -13.549 Td[(Gr)1(om)-1(ad)1(a)-325(j\\246\\252a)-325(si\\246)-325(\\261)-1(ci\\241)-28(ga\\242)-325(p)-28(o)-27(d)-325(d)1(om)-325(i)-325(zw)-1(i)1(e)-1(r)1(a\\242)-326(coraz)-325(g\\246\\261)-1(cie)-1(j)1(,)-325(cierpl)1(iwie)-325(s)-1(p)-27(o-)]TJ -27.879 -13.55 Td[(zie)-1(r)1(a)-56(j)1(\\241c)-334(na)-333(pu)1(s)-1(t\\241)-333(jesz)-1(cz)-1(e)-334(d)1(rog\\246.)]TJ 27.879 -13.549 Td[(Ryc)27(h)29(t)28(yk)-439(i)-438(s)-1(\\252o\\253ce)-439(pr)1(z)-1(eto)-28(cz)-1(y\\252o)-439(si\\246)-439(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)28(o)-439(na)-439(b)-27(ok,)-438(z)-1(a)-438(k)55(al)1(e)-1(ni)1(c)-1(\\246,)-439(\\273e)-439(s)-1(p)-27(o)-28(d)]TJ\nET\nendstream\nendobj\n2218 0 obj <<\n/Type /Page\n/Contents 2219 0 R\n/Resources 2217 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2217 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2222 0 obj <<\n/Length 9254      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(696)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(ok)56(apu)-342(wysu)28(w)27(a\\252)-342(s)-1(i\\246)-343(coraz)-343(wi\\246ksz)-1(y)-342(c)-1(i)1(e)-1(\\253)1(,)-343(w)-343(k)1(t\\363rym)-343(u)1(s)-1(ta)28(wili)-342(st\\363\\252)-343(nak)1(ryt)28(y)-342(z)-1(ielon)1(o,)]TJ 0 -13.549 Td[(z)-360(krzy\\273e)-1(m)-360(w)-360(p)-27(o\\261)-1(r)1(o)-28(dk)1(u.)-360(Ru)1(dy)84(,)-360(p)1(uco\\252o)27(w)28(at)28(y)-360(p)-27(omo)-28(c)-1(n)1(ik)-360(wyn)1(os)-1(i)1(\\252)-360(pap)1(ie)-1(r)1(y)-360(n)1(a)-360(s)-1(t)1(\\363\\252)-360(i)]TJ 0 -13.549 Td[(ci\\246)-1(gi)1(e)-1(m)-334(cosik)-333(w)-334(n)1(os)-1(ie)-334(ma)-55(jstro)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[(Pi)1(s)-1(ar)1(z)-395(j\\241\\252)-394(s)-1(i\\246)-394(na)-394(gw)27(a\\252t)-394(pr)1(z)-1(ebiera\\242)-394(w)-395(\\261)-1(wi\\241t)1(e)-1(cz)-1(n)28(y)-394(u)1(bier,)-394(a)-394(w)-395(ca\\252ym)-395(d)1(om)27(u)]TJ -27.879 -13.549 Td[(zno)28(wu)-414(p)-28(o)-28(d)1(ni)1(e)-1(s\\252y)-415(si\\246)-415(wrzas)-1(k)1(i)-415(p)1(isarz)-1(o)28(w)28(e)-1(j)1(,)-415(b)1(rz\\246)-1(k)-414(talerz\\363)28(w)-1(,)-414(ru)1(mor)-415(p)1(rze)-1(su)28(w)28(an)28(yc)27(h)]TJ 0 -13.55 Td[(sprz\\246)-1(t)1(\\363)27(w)-418(i)-418(b)1(ie)-1(gan)1(ina,)-417(z)-1(a\\261)-418(w)-419(j)1(akie\\261)-419(Zdr)1(o)28(w)27(a\\261)-418(z)-1(j)1(a)27(wi\\252)-418(si\\246)-419(i)-417(w)27(\\363)-55(jt.)-418(S)1(tan\\241\\252)-418(w)-418(progu)]TJ 0 -13.549 Td[(cz)-1(erw)28(on)28(y)-341(jak)-341(b)1(ur)1(ak)-341(i)-341(s)-1(p)-27(o)-28(con)28(y)84(,)-341(le)-1(d)1(wie)-342(zipi)1(\\241c)-1(y)84(,)-341(ale)-341(ju\\273)-341(w)-341(\\252)-1(a\\253)1(c)-1(u)1(c)27(h)28(u)1(,)-341(i)-341(p)-27(o)27(wl\\363k)1(\\252s)-1(zy)]TJ 0 -13.549 Td[(\\261le)-1(p)1(iami)-333(p)-28(o)-333(gromadzie)-334(zakrzycz)-1(a\\252)-333(s)-1(r)1(ogo:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-333(tam,)-333(lud)1(z)-1(i)1(e)-1(,)-333(d)1(y\\242)-334(to)-333(nie)-333(k)55(ar)1(c)-1(zm)-1(a!)]TJ 0 -13.549 Td[({)-333(Pietrze)-1(,)-333(a)-333(c)27(h)1(o)-28(d\\271cie)-334(in)1(o,)-334(cosik)-333(w)27(ama)-333(rz)-1(ekn)1(\\246)-1(!)-333({)-333(z)-1(a)28(w)28(o\\252a\\252)-334(do)-333(n)1(ie)-1(go)-333(K\\252\\241b)1(.)]TJ 0 -13.549 Td[({)-308(Hale,)-308(ni)1(e)-309(ma)-308(tu)-308(\\273adn)1(e)-1(go)-308(P)1(ie)-1(t)1(ra,)-308(a)-308(j)1(e)-1(n)1(o)-308(urz\\246)-1(d)1(nik)1(!)-308({)-308(o)-28(d)1(bur)1(kn\\241\\252)-308(wyn)1(io\\261)-1(l)1(e)-1(.)]TJ 0 -13.55 Td[(Wzi\\246li)-332(n)1(a)-332(ozory)-332(to)-331(p)-28(o)28(wiedze)-1(n)1(ie)-1(,)-331(ja\\273e)-332(s)-1(i)1(\\246)-333(k)56(a\\252du)1(n)28(y)-331(z)-1(atr)1(z)-1(\\246s)-1(\\252y)-331(z)-333(u)1(c)-1(i)1(e)-1(c)28(h)28(y)83(,)-331(gdy)]TJ -27.879 -13.549 Td[(nar)1(az)-334(w)28(\\363)-56(jt)-333(zakrzycz)-1(a\\252)-333(uro)-27(c)-1(zy\\261c)-1(ie:)]TJ 27.879 -13.549 Td[({)-333(Roz)-1(st\\241)-28(pt)1(a)-334(si\\246,)-334(l)1(ud)1(z)-1(ie!)-333(Nac)-1(ze)-1(l)1(nik!)]TJ 0 -13.549 Td[(Jak)28(o\\273)-450(p)-27(o)27(w)28(\\363z)-450(uk)56(aza\\252)-450(si\\246)-450(na)-450(d)1(ro)-28(d)1(z)-1(e)-450(i)-449(p)-27(o)-28(dsk)56(akuj)1(\\241c)-450(na)-450(wyb)-27(o)-55(jac)27(h)-449(zakr\\246c)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(k)56(ance)-1(l)1(ari\\241.)]TJ 27.879 -13.55 Td[(Nacz)-1(elni)1(k)-321(p)-27(o)-28(d)1(ni\\363s\\252)-321(r)1(\\246)-1(k)28(\\246)-320(do)-320(c)-1(zo\\252a,)-321(c)28(h\\252op)1(i)-321(p)-27(ozdejmo)27(w)28(ali)-320(k)56(ap)-27(e)-1(lu)1(s)-1(ze)-1(,)-320(zaleg\\252)-1(o)]TJ -27.879 -13.549 Td[(milcz)-1(enie,)-311(w)28(\\363)-56(j)1(t)-311(z)-311(pi)1(s)-1(ar)1(z)-1(em)-311(przypad)1(li)-310(w)-1(y)1(s)-1(ad)1(z)-1(a\\242)-311(go)-311(z)-311(p)-27(o)27(w)28(oz)-1(u)1(,)-311(a)-310(s)-1(tr)1(a\\273)-1(n)1(ic)-1(y)-310(s)-1(tan)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)-333(d)1(rzw)-1(i)1(ac)27(h)-333(wypr)1(os)-1(to)28(w)28(ani)-333(kieb)28(y)-333(ki)1(je.)]TJ 27.879 -13.549 Td[(Nacz)-1(elni)1(k)-342(da\\252)-342(si\\246)-342(wys)-1(ad)1(z)-1(i)1(\\242)-343(i)-341(roze)-1(b)1(ra\\242)-342(z)-343(b)1(ia\\252e)-1(go)-341(oblec)-1(ze)-1(n)1(ia)-342(i)-341(o)-28(dwr\\363)-27(c)-1(iwsz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-490(p)-27(o)27(w\\252\\363k\\252)-489(o)-28(cz)-1(ami)-489(p)-28(o)-489(gromadzie,)-490(p)1(rzyg\\252adzi\\252)-490(\\273\\363\\252ta)28(w)27(\\241)-489(br)1(\\363)-28(dk)28(\\246,)-489(nasro\\273y\\252)-490(si\\246,)]TJ 0 -13.55 Td[(kiwn)1(\\241\\252)-282(g\\252o)28(w)27(\\241)-281(i)-281(ws)-1(ze)-1(d)1(\\252)-282(d)1(o)-282(mies)-1(zk)55(an)1(ia,)-281(k)56(a)-56(j)-281(go)-281(z)-1(ap)1(rasz)-1(a\\252)-281(pisarz)-282(w)-281(pa\\252\\241k)-281(pr)1(z)-1(ygi)1(\\246)-1(t)28(y)84(.)]TJ 27.879 -13.549 Td[(P)28(o)28(w)28(\\363z)-297(o)-28(d)1(jec)27(h)1(a\\252)-1(,)-295(c)27(h\\252op)1(i)-296(z)-1(n)1(o)28(w)-1(u)-295(s)-1(i)1(\\246)-297(zw)27(ar)1(li)-296(dok)28(o\\252a)-296(sto\\252u)-296(r)1(oz)-1(u)1(m)-1(i)1(e)-1(j)1(\\241c)-1(,)-296(i\\273)-296(zaraz)]TJ -27.879 -13.549 Td[(rozp)-27(o)-28(c)-1(zni)1(e)-358(s)-1(i)1(\\246)-358(z)-1(ebr)1(anie,)-357(ale)-357(prze)-1(sz\\252)-1(o)-357(d)1(obre)-357(Zdro)28(w)28(a\\261)-1(,)-357(p)1(rze)-1(sz)-1(ed\\252)-357(m)-1(o\\273e)-358(i)-357(ca\\252y)-357(pa-)]TJ 0 -13.549 Td[(cie)-1(r)1(z)-1(,)-373(a)-373(nacz)-1(elni)1(k)-374(si\\246)-374(n)1(ie)-374(p)-27(ok)56(az)-1(yw)28(a\\252,)-373(jeno)-373(z)-374(pisarzo)28(w)-1(y)1(c)27(h)-373(p)-27(ok)28(o)-56(j)1(\\363)27(w)-373(roznosi\\252y)-373(s)-1(i\\246)]TJ 0 -13.549 Td[(br)1(z)-1(\\246ki)-333(sz)-1(k\\252a,)-333(\\261m)-1(iec)27(h)29(y)-334(i)-333(j)1(akie\\261)-334(sm)-1(aki)-333(wierc\\241c)-1(e)-333(w)-334(nozdr)1(z)-1(ac)28(h.)]TJ 27.879 -13.55 Td[(A)-414(\\273)-1(e)-415(mierzi\\252o)-415(si\\246)-415(ju)1(\\273)-415(c)-1(ze)-1(k)56(an)1(ie)-415(i)-414(s)-1(\\252o\\253)1(c)-1(e)-415(p)1(rz)-1(y)1(piek)56(a\\252o)-415(coraz)-415(bar)1(z)-1(ej,)-414(to)-414(jaki)]TJ -27.879 -13.549 Td[(taki)-333(j)1(\\241\\252)-334(si\\246)-334(c)28(h)28(y\\252kiem)-334(p)1(rz)-1(ebi)1(e)-1(r)1(a\\242)-334(ku)-333(k)56(arcz)-1(mie,)-333(a\\273)-334(w)27(\\363)-55(jt)-333(zakrzyc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(roz\\252az)-1(i)1(\\242)-334(s)-1(i)1(\\246)-1(!)-333(A)-333(kt\\363rego)-333(z)-1(b)1(rakn)1(ie)-1(,)-333(ten)-333(si\\246)-334(zapisz)-1(e)-334(d)1(o)-333(s)-1(ztraf)1(u...)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-303(co)-303(s)-1(i)1(\\246)-304(j)1(e)-1(sz)-1(cz)-1(ek)-303(ws)-1(t)1(rz)-1(y)1(m)-1(al)1(i)-303(kln)1(\\241c)-304(j)1(e)-1(n)1(o)-303(c)-1(or)1(az)-304(siarcz)-1(y)1(\\261)-1(ciej)-303(a)-303(ni)1(e)-1(cierpl)1(i-)]TJ -27.879 -13.549 Td[(wie)-334(sp)-28(oziera)-55(j\\241c)-334(n)1(a)-334(p)1(is)-1(ar)1(z)-1(o)28(w)28(e)-334(okn)1(a,)-334(b)-27(o)-333(kto\\261)-334(j)1(e)-334(pr)1(z)-1(ymkn)1(\\241\\252)-334(ze)-334(\\261ro)-28(d)1(k)55(a)-333(i)-333(zas)-1(\\252oni)1(\\252)-1(.)]TJ 27.879 -13.55 Td[({)-333(Ws)-1(t)28(y)1(dz\\241)-334(si\\246)-334(c)28(hla\\242)-334(n)1(a)-334(o)-27(c)-1(zac)27(h)1(!)]TJ 0 -13.549 Td[({)-368(Lepi)1(e)-1(j)1(,)-368(b)-27(o)-368(k)56(a\\273)-1(d)1(e)-1(n)-367(j)1(e)-1(n)1(o)-368(grd)1(yk)56(\\241)-368(rob)1(i,)-367(a)-368(p)-27(o)-368(pr)1(\\363\\273)-1(n)1(ic)-1(y)-367(\\261link)28(\\246)-368(\\252yk)56(a!)-367({)-368(p)-27(oga-)]TJ -27.879 -13.549 Td[(dy)1(w)27(ali)1(.)]TJ 27.879 -13.549 Td[(Z)-284(ar)1(e)-1(sz)-1(t)1(u,)-283(s)-1(to)-55(j\\241ce)-1(go)-283(w)-284(r)1(z)-1(\\241d)-283(z)-284(k)56(ance)-1(l)1(ari\\241,)-283(wyrw)28(a\\252)-284(si\\246)-284(\\273a\\252os)-1(n)28(y)-283(i)-283(d\\252u)1(gi)-284(b)-27(e)-1(k)1(,)-284(a)]TJ -27.879 -13.549 Td[(p)-27(o)-325(c)27(h)28(wil)1(i)-325(wylaz\\252)-325(s)-1(t\\363)-55(jk)56(a)-325(ci\\241)-28(gn\\241c)-325(na)-324(p)-28(ostron)1(ku)-325(sp)-27(ore)-1(go)-324(c)-1(io\\252k)56(a,)-325(k)1(t\\363re)-1(n)-324(si\\246)-326(op)1(iera\\252)]TJ 0 -13.549 Td[(ze)-309(ws)-1(zystkiej)-308(mo)-28(cy)83(,)-308(al)1(e)-309(n)1(araz)-309(gr)1(z)-1(motn)1(\\241\\252)-309(go)-308(\\252b)-27(e)-1(m,)-308(j)1(a\\273)-1(e)-308(c)27(h)1(\\252op)-308(rymn)1(\\241\\252)-309(n)1(a)-308(z)-1(i)1(e)-1(mi\\246,)]TJ 0 -13.55 Td[(zadar\\252)-333(ogona)-333(i)-333(p)-28(ogn)1(a\\252,)-333(ino)-333(si\\246)-334(za)-334(n)1(im)-334(zakur)1(z)-1(y\\252o.)]TJ 27.879 -13.549 Td[({)-333(\\212apa)-55(j)-333(z)-1(\\252o)-28(d)1(z)-1(i)1(e)-1(j)1(a!)-334(\\212ap)1(a)-56(j)1(!)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(osyp)-333(m)27(u)-333(soli)-333(na)-333(ogon)1(,)-334(t)1(o)-334(si\\246)-334(wr\\363)-27(c)-1(i!)]TJ 0 -13.549 Td[({)-333(Jaki)-333(to)-333(z)-1(u)1(c)27(h)28(w)28(a\\252y)83(,)-333(uciek\\252)-333(z)-334(k)28(oz)-1(y)-333(i)-333(j)1(e)-1(sz)-1(cz)-1(ek)-333(ogon)-333(z)-1(ad)1(ar\\252)-333(na)-333(pan)1(a)-334(w)28(\\363)-56(j)1(ta!)]TJ 0 -13.549 Td[(Dogad)1(yw)27(al)1(i)-269(pr)1(z)-1(ekpi)1(w)27(a)-55(j\\241c)-269(s)-1(i)1(\\246)-270(ze)-269(s)-1(t\\363)-55(jk)1(i,)-269(kt\\363r)1(e)-1(n)-268(gani)1(a\\252)-269(z)-1(a)-268(c)-1(io\\252ki)1(e)-1(m)-269(i)-269(d)1(opi)1(e)-1(ro)]TJ -27.879 -13.55 Td[(pr)1(z)-1(y)-432(p)-27(omo)-28(c)-1(y)-432(so\\252t)28(ys)-1(\\363)28(w)-432(nap)-27(\\246)-1(d)1(z)-1(i)1(\\252)-433(go)-432(w)-432(p)-28(o)-28(d)1(w)27(\\363r)1(z)-1(e.)-432(A)-432(jes)-1(zc)-1(ze)-433(n)1(ie)-433(o)-28(d)1(z)-1(i)1(pn\\246li,)-432(k)1(ie)-1(j)]TJ 0 -13.549 Td[(w)28(\\363)-56(jt)-333(p)1(rzyk)56(az)-1(a\\252)-333(wz)-1(i\\241\\242)-333(s)-1(i\\246)-333(do)-333(wymiatani)1(a)-334(ar)1(e)-1(sz)-1(tu)-332(i)-333(s)-1(am)-334(d)1(ogl\\241d)1(a\\252)-1(,)-333(p)1(ili\\252)-333(i)-333(n)1(ie)-1(ma\\252o)]TJ\nET\nendstream\nendobj\n2221 0 obj <<\n/Type /Page\n/Contents 2222 0 R\n/Resources 2220 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2207 0 R\n>> endobj\n2220 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2225 0 obj <<\n/Length 9175      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(697)]TJ -358.232 -35.866 Td[(p)-27(om)-1(aga\\252)-333(b)-28(o)-55(ja)-55(j\\241c)-334(si\\246,)-333(b)28(yc)27(h)-332(s)-1(i\\246)-333(c)-1(zas)-1(em)-334(n)1(ie)-334(z)-1(ac)28(hcia\\252o)-333(tam)-334(za)-56(jr)1(z)-1(e\\242)-334(n)1(ac)-1(ze)-1(ln)1(ik)28(o)28(wi.)]TJ 27.879 -13.549 Td[({)-333(W)83(\\363)-55(jcie)-1(,)-333(a)-333(trza)-333(w)-1(y)1(k)55(ad)1(z)-1(i)1(\\242)-1(,)-333(b)28(yc)28(h)-333(ni)1(e)-334(z)-1(w)28(\\241c)27(h)1(a\\252,)-334(co)-333(to)-334(b)29(y\\252)-334(za)-333(are)-1(sztan)28(t.)]TJ 0 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)1(c)-1(ie)-333(s)-1(i\\246,)-333(p)-28(o)-333(gorza\\252c)-1(e)-333(do)-333(c)-1(n)1(a)-334(straci)-333(wiate)-1(r)1(.)]TJ 0 -13.549 Td[(Rz)-1(u)1(c)-1(a\\252)-408(kto)-408(n)1(ie)-1(k)1(to)-409(j)1(akie)-408(s)-1(\\252o)28(w)27(o)-408(k)28(ol\\241ce)-1(,)-408(j)1(a\\273)-1(e)-408(w)27(\\363)-55(jt)-408(b\\252y)1(s)-1(k)56(a\\252)-408(\\261)-1(lepiami)-408(a)-408(z)-1(\\246b)28(y)]TJ -27.879 -13.549 Td[(zac)-1(in)1(a\\252,)-273(al)1(e)-273(w)-273(k)28(o\\253)1(c)-1(u)-272(zbr)1(z)-1(yd)1(\\252y)-272(im)-273(n)1(a)27(w)28(e)-1(t)-272(p)1(rz)-1(ekp)1(ink)1(i,)-272(a)-273(tak)-272(d)1(okucz)-1(y)1(\\252)-1(o)-272(cz)-1(ek)56(anie)-273(n)1(a)]TJ 0 -13.55 Td[(s\\252)-1(o\\253)1(c)-1(u)-299(i)-299(g\\252\\363)-28(d)1(,)-300(\\273e)-300(c)-1(a\\252\\241)-299(h)28(u)1(rm\\241)-300(ru)1(s)-1(zyli)-299(p)-27(o)-28(d)-299(dr)1(z)-1(ew)27(a,)-299(ni)1(e)-300(bacz)-1(\\241c)-300(n)1(a)-300(w)28(\\363)-56(j)1(to)28(w)27(e)-300(zak)56(az)-1(y)84(,)]TJ 0 -13.549 Td[(kt\\363r)1(e)-1(m)28(u)-333(jeno)-333(Grzela)-334(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-1(:)]TJ 27.879 -13.549 Td[({)-266(Hale,)-265(nar\\363)-28(d)-265(to)-265(p)-28(ewnie)-266(pi)1(e)-1(s,)-266(n)1(ie)-266(pr)1(z)-1(yj)1(dzie)-266(c)-1(i)-265(do)-266(n)1(ogi,)-265(c)27(ho)-27(\\242)-1(b)28(y)1(\\261)-267(k)1(rzyc)-1(za\\252)-266(do)]TJ -27.879 -13.549 Td[(wiec)-1(zora!)-367({)-367(i)-367(r)1(ad,)-367(i)1(\\273)-368(ze)-1(sz)-1(li)-366(z)-1(e)-367(s)-1(tr)1(a\\273)-1(n)1(ik)28(o)28(wyc)27(h)-367(o)-27(c)-1(z\\363)28(w)-1(,)-366(j\\241\\252)-367(z)-1(n)1(o)28(w)-1(u)-366(kr\\246c)-1(i)1(\\242)-368(si\\246)-367(w)-1(\\261r\\363)-28(d)]TJ 0 -13.549 Td[(lu)1(dzi)-333(przyp)-27(om)-1(i)1(na)-56(j)1(\\241c)-334(k)56(a\\273)-1(d)1(e)-1(m)28(u)-333(z)-334(osobn)1(a,)-333(jak)-333(m)-1(a)-333(g\\252oso)27(w)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-353(Jeno)-353(s)-1(i)1(\\246)-354(ni)1(e)-354(b)-27(\\363)-56(j)1(ta!)-353({)-353(do)-28(d)1(a)28(w)27(a\\252)-353({)-353(pr)1(a)27(w)28(o)-353(z)-1(a)-353(n)1(am)-1(i!)-352(C)-1(o)-353(u)1(c)27(h)28(w)28(alim)28(y)83(,)-353(b)-27(\\246)-1(d)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.55 Td[(a)-333(c)-1(ze)-1(go)-333(ni)1(e)-334(c)27(h)1(c)-1(e)-334(gr)1(om)-1(ad)1(a,)-333(nik)1(to)-334(j)1(\\241)-334(d)1(o)-333(te)-1(go)-333(nie)-333(przym)28(usi.)]TJ 27.879 -13.549 Td[(Ale)-365(n)1(ie)-365(z)-1(d)1(\\241\\273)-1(y)1(li)-364(s)-1(i\\246)-365(j)1(e)-1(sz)-1(cz)-1(e)-365(l)1(ud)1(z)-1(ie)-365(p)-27(orozk\\252ada\\242)-365(w)-364(c)-1(ieni)1(ac)27(h)-364(ni)-364(pr)1(z)-1(egry\\271\\242)-365(c)-1(o)]TJ -27.879 -13.549 Td[(ni)1(e)-1(b)1(\\241d\\271,)-333(gdy)-333(s)-1(o\\252t)28(ysi)-333(j\\246li)-333(na)28(w)28(o\\252yw)27(a\\242,)-333(a)-334(w)28(\\363)-56(j)1(t)-333(przylec)-1(i)1(a\\252)-334(z)-334(k)1(rzykiem)-1(:)]TJ 27.879 -13.549 Td[({)-333(Nac)-1(ze)-1(l)1(nik)-333(wyc)27(h)1(o)-28(dzi!)-333(Cho)-27(d\\271ta)-334(p)1(r\\246dze)-1(j)1(!)-333(z)-1(acz)-1(yn)1(am)27(y!)]TJ 0 -13.549 Td[({)-293(Na)28(w)28(\\241c)27(ha\\252)-293(si\\246)-293(d)1(o)-1(b)1(rego)-293(j)1(ad\\252a,)-293(to)-292(go)-293(p)-27(onosi!)-293(Nama)-293(n)1(ie)-293(pil)1(no!)-293(Ni)1(e)-1(c)28(h)-293(p)-27(o)-28(cz)-1(e-)]TJ -27.879 -13.55 Td[(k)56(a!)]TJ 27.879 -13.549 Td[(Mamrotal)1(i)-333(gniew)-1(n)1(ie,)-333(z)-1(b)1(ie)-1(r)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(o)-28(ci\\246)-1(\\273ale)-334(p)1(rze)-1(d)-333(k)56(ancelari\\241.)]TJ 0 -13.549 Td[(So\\252t)28(ysi)-483(s)-1(tan)1(\\246)-1(l)1(i)-484(n)1(a)-484(cz)-1(ele)-484(sw)27(oic)28(h)-483(ws)-1(i,)-483(za\\261)-484(w)27(\\363)-55(jt)-483(z)-1(asiad\\252)-483(z)-1(a)-483(s)-1(t)1(o\\252)-1(em,)-484(ma)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(p)-27(ob)-28(ok)-269(p)1(isarzo)27(w)28(e)-1(go)-269(p)-27(omo)-28(cnik)56(a,)-269(kt\\363r)1(e)-1(n)-268(pr)1(z)-1(ed\\252ub)1(uj)1(\\241c)-270(w)-269(nosie)-269(gw)-1(i)1(z)-1(d)1(a\\252)-269(na)-269(go\\252\\246)-1(b)1(ie,)]TJ 0 -13.549 Td[(co)-283(z)-1(es)-1(tr)1(ac)27(han)1(e)-284(gw)28(arem)-283(p)-28(or)1(w)27(a\\252y)-283(si\\246)-283(z)-284(d)1(ac)27(h)28(u)-282(kr\\241\\273\\241c)-284(r)1(oz)-1(tr)1(z)-1(ep)-28(ot)1(an\\241)-283(b)1(ia\\252\\241)-283(c)27(hm)28(ur)1(\\241.)]TJ 27.879 -13.55 Td[({)-301(M)1(o\\252c)-1(zat!)-301({)-300(z)-1(akr)1(z)-1(yk)1(n\\241\\252)-301(n)1(araz)-301(jeden)-300(z)-1(e)-301(stra\\273nik)28(\\363)28(w)-301(p)1(r\\246\\273)-1(\\241cyc)27(h)-300(si\\246)-301(u)-301(p)1(roga.)]TJ 0 -13.549 Td[(Wsz)-1(y)1(s)-1(tki)1(e)-433(o)-28(cz)-1(y)-431(z)-1(wr\\363)-28(ci\\252y)-432(si\\246)-433(n)1(a)-432(dr)1(z)-1(wi,)-432(ale)-432(wys)-1(zed\\252)-432(z)-433(n)1(ic)27(h)-431(jeno)-432(pi)1(s)-1(arz)-432(z)]TJ -27.879 -13.549 Td[(pap)1(ierem)-334(w)-334(r)1(\\246)-1(ku)-333(i)-333(w)28(c)-1(i)1(s)-1(n)1(\\241\\252)-334(si\\246)-334(za)-334(st\\363\\252.)]TJ 27.879 -13.549 Td[(W)84(\\363)-56(jt)-333(zatrz\\241s)-1(\\252)-333(dzw)27(on)1(kiem)-334(i)-333(rze)-1(k)1(\\252)-334(u)1(ro)-28(cz)-1(y)1(\\261)-1(cie)-1(:)]TJ 0 -13.549 Td[({)-281(Zac)-1(zynam)28(y)83(,)-281(lu)1(dzie)-282(k)28(o)-28(c)28(han)1(e)-1(!)-281(Cic)27(h)1(o)-282(tam,)-281(Mo)-27(dlicz)-1(ak)1(i!)-281(P)28(an)-281(se)-1(kr)1(e)-1(tar)1(z)-282(pr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(cz)-1(yta)-319(ni)1(b)28(y)-319(o)-320(tej)-319(sz)-1(k)28(ole!)-319(A)-320(s\\252uc)28(ha)-55(jta)-319(pil)1(nie,)-319(b)28(yc)27(h)-318(k)55(a\\273den)-319(wyrozumia\\252,)-319(o)-320(co)-319(idzie!)]TJ 27.879 -13.549 Td[(Pi)1(s)-1(ar)1(z)-334(z)-1(a\\252o\\273y\\252)-333(o)-1(k)1(ular)1(y)-333(i)-334(zacz)-1(\\241\\252)-333(c)-1(zyta\\242)-334(z)-333(w)27(oln)1(a)-334(i)-333(wyr)1(a\\271)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[(Cz)-1(y)1(ta\\252)-334(j)1(u\\273)-334(mo\\273)-1(e)-333(z)-334(pacierz)-334(w\\261r\\363)-28(d)-333(zup)-27(e)-1(\\252n)1(e)-1(j)-333(cic)28(ho\\261)-1(ci,)-333(gd)1(y)-334(k)1(tos)-1(i)1(k)-334(wr)1(z)-1(asn\\241\\252:)]TJ 0 -13.549 Td[({)-333(Kiej)-333(nie)-333(rozumie)-1(m)28(y!)]TJ 0 -13.549 Td[({)-333(C)-1(zyta\\242)-333(p)-28(o)-333(nasz)-1(em)27(u)1(!)-333(Nie)-334(rozumiem)27(y)1(!)-334({)-333(ze)-1(r)1(w)27(a\\252y)-333(s)-1(i)1(\\246)-334(m)-1(n)1(ogie)-334(g\\252osy)83(.)]TJ 0 -13.55 Td[(St)1(ra\\273)-1(n)1(icy)-333(j\\246li)-333(s)-1(i\\246)-333(piln)1(ie)-334(r)1(oz)-1(gl\\241d)1(a\\242)-334(w)-333(gromadz)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Pi)1(s)-1(ar)1(z)-334(s)-1(i)1(\\246)-334(s)-1(k)1(rz)-1(y)1(w)-1(i)1(\\252)-1(,)-333(al)1(e)-334(ju)1(\\273)-334(c)-1(zyta\\252)-333(pr)1(z)-1(ek\\252ada)-55(j\\241c)-334(n)1(a)-334(p)-27(olskie.)]TJ 0 -13.549 Td[(Zrob)1(i\\252o)-347(si\\246)-347(c)-1(i)1(c)27(ho,)-346(s\\252uc)27(h)1(ali)-346(w)-347(s)-1(k)1(upi)1(e)-1(n)1(iu,)-346(rozw)27(a\\273a)-56(j)1(\\241c)-347(k)56(a\\273)-1(d)1(e)-347(s)-1(\\252o)28(w)27(o)-346(i)-347(p)1(atrz\\241c)]TJ -27.879 -13.549 Td[(si\\246)-334(w)-334(n)1(iego)-334(ki)1(e)-1(b)28(y)-333(w)-333(obr)1(az)-1(.)]TJ 27.879 -13.549 Td[(Pi)1(s)-1(ar)1(z)-334(c)-1(i)1(\\241)-28(gn\\241\\252)-333(p)-28(o)28(w)28(oli:)]TJ 0 -13.549 Td[({)-394(.)1(..jak)28(o)-393(pr)1(z)-1(yk)56(azano)-393(p)-28(osta)28(w)-1(i)1(\\242)-394(s)-1(zk)28(o\\252\\246)-394(w)-394(Lip)-27(c)-1(ac)27(h)1(,)-393(kt\\363rab)28(y)-393(b)28(y\\252a)-393(i)-394(d)1(la)-394(M)1(o-)]TJ -27.879 -13.55 Td[(dl)1(ic)-1(y)84(,)-333(Pr)1(z)-1(y\\252\\246k)56(a,)-334(Rze)-1(p)-27(ek)-333(i)-334(d)1(ru)1(gic)27(h)-333(p)-27(omniejsz)-1(y)1(c)27(h)-333(ws)-1(i)1(:)]TJ 27.879 -13.549 Td[(P)28(otem)-228(d)1(\\252)-1(u)1(go)-228(wyw)28(o)-28(d)1(z)-1(i\\252,)-227(jak)1(i)-228(t)1(o)-228(z)-228(tego)-228(b)-27(\\246dzie)-228(pr)1(o\\014t,)-227(j)1(akie)-228(to)-227(dob)1(ro)-28(d)1(z)-1(iejst)28(w)27(o)]TJ -27.879 -13.549 Td[(o\\261w)-1(i)1(ata,)-405(j)1(ak)-404(to)-405(u)1(rz\\246)-1(d)1(y)-405(j)1(e)-1(n)1(o)-405(m)28(y\\261l\\241)-404(dzie)-1(\\253)-404(i)-404(n)1(o)-28(c)-1(,)-404(b)28(y)1(c)27(h)-404(t)28(ylk)28(o)-404(nar)1(o)-28(do)28(wi)-404(przyj)1(\\261)-1(\\242)-405(z)]TJ 0 -13.549 Td[(p)-27(om)-1(o)-27(c)-1(\\241,)-298(b)28(yc)27(h)-298(go)-299(wspiera\\242,)-299(o\\261w)-1(i)1(e)-1(ca\\242)-299(i)-299(br)1(oni\\242)-299(p)1(rze)-1(d)-298(z)-1(\\252em)-1(.)-298(Za\\261)-299(w)-299(k)28(o\\253cu)-299(wyli)1(c)-1(za\\252,)]TJ 0 -13.549 Td[(ile)-273(p)-27(otrza)-273(n)1(a)-273(pl)1(ac)-274(z)-273(p)-27(olem)-1(,)-272(ile)-273(n)1(a)-273(s)-1(am)-273(b)1(ud)1(ynek)-273(i)-272(na)-272(c)-1(a\\252e)-273(utr)1(z)-1(y)1(m)-1(an)1(ie)-273(s)-1(zk)28(o\\252y)-273(wraz)]TJ 0 -13.55 Td[(z)-313(n)1(aucz)-1(ycielem)-1(,)-312(i)-312(\\273e)-313(na)-312(to)-312(ws)-1(zystk)28(o)-313(tr)1(z)-1(eba)-312(b)-27(\\246)-1(d)1(z)-1(ie)-312(uc)27(h)29(w)27(ali)1(\\242)-313(do)-27(datk)28(o)28(wy)-312(p)-28(o)-27(datek)]TJ 0 -13.549 Td[(p)-27(o)-236(dw)28(adzie)-1(\\261c)-1(i)1(a)-236(k)28(opiejek)-236(z)-236(m)-1(or)1(gi.)-236(Umilk\\252,)-236(p)1(rze)-1(tar)1(\\252)-236(okular)1(y)-236(i)-236(rzek\\252)-236(jakb)28(y)-235(do)-236(sie)-1(b)1(ie:)]TJ\nET\nendstream\nendobj\n2224 0 obj <<\n/Type /Page\n/Contents 2225 0 R\n/Resources 2223 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2223 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2229 0 obj <<\n/Length 8804      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(698)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-398(P)28(an)-398(n)1(ac)-1(ze)-1(l)1(nik)-398(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-398(\\273e)-399(j)1(ak)-398(dz)-1(i)1(s)-1(ia)-55(j)-398(u)1(c)27(h)28(w)28(alicie)-1(,)-398(t)1(o)-399(p)-27(oz)-1(w)28(oli)-398(zac)-1(z\\241\\242)]TJ -27.879 -13.549 Td[(bu)1(do)28(w)28(\\246)-334(jes)-1(zcz)-1(e)-334(w)-333(t)28(ym)-334(rok)1(u,)-333(a)-333(na)-333(pr)1(z)-1(ysz)-1(\\252\\241)-333(jesie)-1(\\253)-333(d)1(z)-1(i)1(e)-1(ci)-333(ju\\273)-333(p)-28(\\363)-55(jd)1(\\241)-334(d)1(o)-334(szk)28(o\\252)-1(y)84(.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zy\\252,)-423(ale)-424(nikt)-423(s)-1(i)1(\\246)-425(n)1(ie)-424(o)-28(dezw)27(a\\252,)-424(k)56(a\\273den)-424(co\\261)-424(w)27(a\\273y\\252)-424(w)-424(sobie,)-424(k)1(ul\\241c)-424(si\\246)]TJ -27.879 -13.549 Td[(jeno,)-333(j)1(akb)28(y)-333(p)-27(o)-28(d)-333(ci\\246)-1(\\273arem)-334(n)1(o)27(w)28(e)-1(go)-333(p)-27(o)-28(dat)1(ku,)-333(a\\273)-334(d)1(opiero)-333(w)27(\\363)-55(jt)-333(si\\246)-334(ozw)27(a\\252:)]TJ 27.879 -13.549 Td[({)-333(S\\252ysz)-1(eli\\261c)-1(i)1(e)-334(dob)1(rze)-1(,)-333(co)-334(p)1(an)-333(s)-1(ekretarz)-333(przec)-1(zyta\\252?)]TJ 0 -13.55 Td[({)-333(S\\252ysz)-1(elim!)-333(Ju\\261cik,)-333(pr)1(z)-1(ec)-1(iek)-333(ni)1(e)-334(g\\252usim!)-334({)-333(ozw)27(ali)-333(si\\246)-334(tu)-333(i)-333(o)28(wdzie.)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(t\\363ren)-333(m)-1(a)-333(pr)1(z)-1(ec)-1(i)1(w)-334(tem)27(u)1(,)-334(n)1(iec)27(h)-333(wyst\\241)-28(pi)1(,)-333(a)-334(sw)27(o)-55(je)-334(r)1(z)-1(ekni)1(e)-1(.)]TJ 0 -13.549 Td[(J\\246li)-345(si\\246)-345(tr\\241ca\\242)-346(\\252ok)28(ciami,)-345(wyp)28(y)1(c)27(ha\\242)-345(n)1(aprz\\363)-28(d)1(,)-345(dr)1(apa\\242,)-345(sp)-28(oziera\\242)-345(na)-345(si\\246)-345(i)-345(na)]TJ -27.879 -13.549 Td[(starsz)-1(yc)28(h,)-333(lec)-1(z)-333(nikto)-333(n)1(ie)-334(mia\\252)-334(\\261mia\\252o\\261)-1(ci)-333(wyryw)28(a\\242)-334(si\\246)-334(pi)1(e)-1(r)1(w)-1(sz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Kiej)-333(tak,)-333(uc)28(h)28(w)28(alm)27(y)-333(pr)1(\\246)-1(d)1(k)28(o)-334(p)-27(o)-28(d)1(ate)-1(k)-333(i)-333(d)1(o)-334(d)1(om)27(u)1(!)-333({)-334(zaprop)-27(on)1(o)27(w)28(a\\252)-334(w)28(\\363)-56(j)1(t.)]TJ 0 -13.549 Td[({)-355(Wi\\246c)-356(c\\363\\273)-1(,)-355(wsz)-1(yscy)-355(jednog\\252o\\261ni)1(e)-356(z)-1(gad)1(z)-1(acie)-355(s)-1(i\\246?)-355({)-356(zap)28(yta\\252)-355(u)1(ro)-28(cz)-1(y\\261cie)-356(p)1(i-)]TJ -27.879 -13.55 Td[(sarz)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(!)-333(Ni)1(e)-334(c)27(h)1(c)-1(em)27(y!)-333(Nie!)-333({)-334(wr)1(z)-1(asn\\241\\252)-333(Grze)-1(l)1(a)-334(i)-333(za)-334(n)1(im)-334(k)1(ilku)1(dzie)-1(si\\246c)-1(i)1(u.)]TJ 0 -13.549 Td[({)-328(Nie)-329(p)-27(otrza)-329(n)1(am)-329(takiej)-328(s)-1(zk)28(o\\252y!)-328(Nie)-329(c)27(h)1(c)-1(em)27(y)1(!)-329(D)1(os)-1(y\\242)-329(j)1(u\\273)-329(mam)28(y)-329(p)-27(o)-28(d)1(atk)28(\\363)27(w!)]TJ -27.879 -13.549 Td[(Nie!)-333({)-334(w)28(o\\252ano)-333(ju)1(\\273)-334(ze)-334(w)-1(szys)-1(tk)1(ic)27(h)-333(stron)1(,)-333(a)-334(coraz)-334(\\261mie)-1(l)1(e)-1(j)1(,)-334(g\\252o\\261ni)1(e)-1(j)-333(i)-333(h)1(ardziej.)]TJ 27.879 -13.549 Td[(Na)-480(ten)-480(wrzas)-1(k)-479(w)-1(y)1(s)-1(ze)-1(d)1(\\252)-480(nacz)-1(elni)1(k)-480(i)-480(stan\\241\\252)-480(w)-480(pr)1(ogu,)-480(p)1(rzycic)27(h)1(li)-480(na)-480(j)1(e)-1(go)]TJ -27.879 -13.55 Td[(widok)1(,)-333(a)-334(on)-333(p)-27(oskub)1(a\\252)-334(b)1(r\\363)-28(d)1(k)28(\\246)-334(i)-333(rze)-1(k\\252)-333(wie)-1(l)1(c)-1(e)-334(\\252ask)56(a)27(wie:)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(s)-1(i\\246)-333(m)-1(acie,)-333(gos)-1(p)-27(o)-28(dar)1(z)-1(e?)]TJ 0 -13.549 Td[({)-224(B\\363g)-224(zap\\252a\\242!)-224({)-224(o)-28(d)1(par)1(li)-224(p)1(ierws)-1(i)-223(z)-225(b)1(rze)-1(ga)-223(k)28(ole)-1(b)1(i\\241c)-224(s)-1(i)1(\\246)-225(p)-27(o)-28(d)-223(nap)-27(orem)-224(gromady)]TJ -27.879 -13.549 Td[(p)-27(c)27(ha)-55(j\\241ce)-1(j)-363(si\\246)-364(napr)1(z)-1(\\363)-27(d,)-364(ab)29(y)-364(p)-27(os)-1(\\252u)1(c)27(ha\\242)-364(n)1(ac)-1(ze)-1(ln)1(ik)56(a,)-364(k)1(t\\363ren)-364(wspart)28(y)-363(o)-364(fu)1(tryn)1(\\246)-364(j\\241\\252)]TJ 0 -13.549 Td[(cos)-1(ik)-333(m\\363)28(w)-1(i)1(\\242)-334(p)-27(o)-334(sw)27(o)-55(jem)27(u)1(,)-334(al)1(e)-334(m)27(u)-333(si\\246)-334(ci\\246giem)-334(o)-28(d)1(b)-28(ekiw)28(a\\252o.)]TJ 27.879 -13.55 Td[(St)1(ra\\273)-1(n)1(icy)-333(s)-1(k)28(o)-28(cz)-1(y)1(li)-333(w)-334(n)1(ar\\363)-28(d)-333(i)-333(d)1(ale)-1(j)1(\\273)-1(e)-333(w)27(o\\252a\\242:)]TJ 0 -13.549 Td[({)-333(Szapki)-333(d)1(o\\252o)-56(j!)-333(sz)-1(ap)1(ki!)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(zed\\252)-333(\\261)-1(cie)-1(r)1(w)27(o)-333(i)-333(ni)1(e)-334(pl\\241cz)-334(si\\246)-334(p)-27(o)-28(d)-333(n)1(ogam)-1(i!)-333({)-333(zakl\\241\\252)-334(k)1(to\\261)-334(na)-333(n)1(ic)27(h)1(.)]TJ 0 -13.549 Td[(A)-333(nacz)-1(elni)1(k,)-333(c)27(h)1(o)-28(\\242)-334(pr)1(a)28(w)-1(i\\252)-333(s\\252)-1(o)-27(dziu\\261k)28(o,)-333(s)-1(k)28(o\\253)1(c)-1(zy\\252)-333(nak)56(az)-1(u)1(j\\241co)-334(i)-333(p)-27(o)-333(p)-28(ol)1(s)-1(ku)1(:)]TJ 0 -13.549 Td[({)-333(Uc)27(h)28(w)28(alcie)-334(zaraz)-334(p)-27(o)-28(datek,)-333(b)-27(o)-334(n)1(ie)-334(mam)-334(cz)-1(asu.)]TJ 0 -13.55 Td[(I)-415(srogo)-415(pat)1(rz)-1(a\\252)-415(w)-415(t)28(w)28(arze)-1(,)-415(strac)28(h)-415(p)1(rze)-1(j)1(\\241\\252)-415(niejedn)1(e)-1(go,)-414(t\\252um)-415(s)-1(i)1(\\246)-416(zak)28(o\\252ys)-1(a\\252,)]TJ -27.879 -13.549 Td[(p)-27(os)-1(z\\252y)-333(trw)28(o\\273)-1(n)1(e)-334(i)-333(\\261)-1(cis)-1(zone)-333(s)-1(ze)-1(p)1(t)28(y)83(.)]TJ 27.879 -13.549 Td[({)-389(No)-390(co,)-389(g\\252os)-1(u)1(jem)27(y)-389(na)-389(sz)-1(k)28(o\\252\\246?)-390(M\\363)28(w)28(c)-1(ie,)-389(P\\252osz)-1(k)56(a!)-389(Jak\\273e)-390(zrobim?...)-389(Ka)-55(j\\273e)]TJ -27.879 -13.549 Td[(to)-333(Grze)-1(l)1(a?)-334(P)1(rz)-1(y)1(k)55(azuj)1(e)-334(g\\252oso)27(w)28(a\\242)-1(:)-333(G)1(\\252)-1(osuj)1(m)27(y)84(,)-333(lud)1(z)-1(i)1(e)-1(,)-333(g\\252os)-1(u)1(jm)28(y!)]TJ 27.879 -13.549 Td[(W)84(rz)-1(a\\252o)-333(coraz)-334(g\\252o\\261niej;)-333(gdy)-333(G)1(rze)-1(la)-333(wys)-1(t)1(\\241)-28(pi\\252)-333(i)-333(p)-27(o)27(wiedzia\\252)-333(\\261)-1(mia\\252o:)]TJ 0 -13.55 Td[({)-333(Na)-334(tak)56(\\241)-333(s)-1(zk)28(o\\252\\246)-334(n)1(ie)-334(uc)28(h)28(w)27(al)1(im)27(y)-333(an)1(i)-333(gros)-1(za.)]TJ 0 -13.549 Td[({)-333(Nie)-334(u)1(c)27(h)28(w)28(alim)28(y!)-333(Nie)-334(c)27(h)1(c)-1(em)27(y)1(!)-334({)-333(ws)-1(p)1(ar\\252o)-333(go)-334(ze)-334(sto)-333(krzyk)28(\\363)28(w)-1(.)]TJ 0 -13.549 Td[(Nacz)-1(elni)1(k)-334(zmarsz)-1(cz)-1(y\\252)-333(s)-1(i)1(\\246)-334(gro\\271nie.)]TJ 0 -13.549 Td[(W)84(\\363)-56(jt)-432(s)-1(t)1(ruc)28(hla\\252,)-432(a)-433(p)1(is)-1(ar)1(z)-1(o)28(wi)-433(j)1(a\\273)-1(e)-433(spad)1(\\252y)-433(z)-433(n)1(os)-1(a)-432(okul)1(a)-1(r)1(y)83(,)-432(jeno)-432(Grzela)-433(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-391(strw)28(o\\273)-1(y\\252,)-390(wpar)1(\\252)-391(w)-390(ni)1(e)-1(go)-390(har)1(de)-390(\\261)-1(lepi)1(e)-391(c)27(h)1(c)-1(\\241c)-390(jes)-1(zc)-1(ze)-391(cos)-1(i)1(k)-390(do)-28(d)1(a\\242)-1(,)-390(gd)1(y)-390(s)-1(tar)1(y)]TJ 0 -13.549 Td[(P\\252osz)-1(k)56(a)-333(wys)-1(t)1(\\241)-28(pi\\252)-333(i)-333(s)-1(k)1(\\252)-1(on)1(iws)-1(zy)-333(s)-1(i)1(\\246)-334(ni)1(s)-1(k)28(o)-333(z)-1(acz)-1(\\241\\252)-333(p)-27(ok)28(orni)1(e)-1(:)]TJ 27.879 -13.55 Td[({)-297(Dop)1(rasz)-1(am)-297(s)-1(i)1(\\246)-298(\\252aski)-297(wielmo\\273)-1(n)1(e)-1(go)-297(n)1(ac)-1(ze)-1(l)1(nik)56(a,)-297(co)-297(rzekn\\246,)-297(j)1(ak)28(o)-297(to)-297(p)-27(o)-297(s)-1(w)28(o-)]TJ -27.879 -13.549 Td[(jem)27(u)-315(miark)1(uj)1(\\246)-1(:)-315(s)-1(zk)28(o\\252\\246)-316(ju\\261c)-1(i)1(\\242)-316(uc)27(h)29(w)27(ali)1(\\242)-317(u)1(c)27(h)28(w)28(alim,)-315(ale)-316(widzi)-316(si\\246)-316(nama,)-315(c)-1(o)-315(z)-1(a)-316(d)1(u\\273o)]TJ 0 -13.549 Td[(z\\252)-1(ot)28(y)-416(i)-416(gr)1(os)-1(zy)-416(dzies)-1(i\\246\\242)-417(z)-416(m)-1(or)1(gi.)-416(Cz)-1(asy)-416(te)-1(r)1(az)-417(ci\\246)-1(\\273kie)-416(i)-416(o)-416(gros)-1(z)-416(tru)1(dno!)-415(T)83(o)-417(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(em)-334(r)1(z)-1(ec)-1(.)]TJ 27.879 -13.549 Td[(Nacz)-1(elni)1(k)-441(n)1(ie)-441(o)-28(d)1(p)-28(o)28(wiedzia\\252)-441(zatopi)1(o)-1(n)29(y)-441(w)-440(jak)28(o)28(wyc)27(h)1(\\261)-441(du)1(m)-1(an)1(iac)27(h)1(,)-441(\\273e)-441(jeno)]TJ -27.879 -13.55 Td[(kiej)-359(n)1(ie)-1(k)1(ie)-1(j)-359(k)1(iwn\\241\\252)-359(g\\252)-1(o)28(w)28(\\241)-360(j)1(akb)28(y)-359(p)1(rz)-1(y)1(takuj)1(\\241c)-1(o)-359(i)-359(o)-28(cz)-1(y)-359(p)1(rz)-1(ecie)-1(r)1(a\\252,)-360(wi\\246c)-360(o\\261m)-1(i)1(e)-1(lon)29(y)]TJ 0 -13.549 Td[(t)28(ym)-284(w)27(\\363)-55(jt)-283(s)-1(iar)1(c)-1(zy\\261)-1(cie)-284(pr)1(z)-1(em)-1(a)28(wia\\252)-284(za)-284(s)-1(zk)28(o\\252\\241;)-284(p)-27(o)-284(ni)1(m)-285(i)-283(jego)-284(k)56(am)-1(rat)28(y)-283(par\\252y)-283(do)-284(tego)]TJ\nET\nendstream\nendobj\n2228 0 obj <<\n/Type /Page\n/Contents 2229 0 R\n/Resources 2227 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2227 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2232 0 obj <<\n/Length 8881      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(699)]TJ -358.232 -35.866 Td[(sam)-1(ego,)-481(m\\252ynar)1(z)-481(z)-1(a\\261)-481(p)28(ysk)28(o)28(w)27(a\\252)-481(n)1(a)-56(j)1(\\273)-1(ar)1(liwie)-1(j)1(,)-481(n)1(ie)-481(z)-1(w)28(a\\273a)-56(j\\241c)-481(n)1(a)-481(os)-1(t)1(re)-481(przycink)1(i)]TJ 0 -13.549 Td[(Gr)1(z)-1(elo)28(w)-1(y)1(c)27(h)-333(stron)1(nik)28(\\363)28(w,)-333(a\\273)-334(wre)-1(szc)-1(ie)-333(z)-1(gn)1(ie)-1(w)28(an)28(y)-333(Gr)1(z)-1(ela)-333(z)-1(a)28(w)27(o\\252a\\252:)]TJ 27.879 -13.549 Td[({)-430(Prze)-1(l)1(e)-1(w)28(am)27(y)-430(jeno)-430(z)-431(pu)1(s)-1(t)1(e)-1(go)-430(w)-431(pr)1(\\363\\273)-1(n)1(e)-431({)-431(i)-430(up)1(atrzyws)-1(zy)-430(s)-1(p)-27(os)-1(ob)1(n\\241)-430(p)-27(or\\246)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(t\\241)-28(p)1(i\\252)-333(i)-334(\\261mia\\252o)-334(sp)28(yt)1(a\\252)-1(:)]TJ 27.879 -13.549 Td[({)-333(A)-334(n)1(ib)28(y)-333(j)1(ak)55(a)-333(to)-333(m)-1(a)-333(b)28(y\\242)-333(ta)-334(n)1(o)28(w)27(a)-333(s)-1(zk)28(o\\252a?)]TJ 0 -13.55 Td[({)-333(Jak)-333(i)-333(w)-1(sz)-1(y)1(s)-1(tki)1(e)-1(!)-333({)-333(wyrze)-1(k\\252)-333(ot)28(wie)-1(r)1(a)-56(j)1(\\241c)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(m)28(y)-333(akur)1(atnie)-333(takiej)-333(ni)1(e)-334(p)-28(ot)1(rz)-1(ebu)1(jem)27(y)1(!)]TJ 0 -13.549 Td[({)-333(Na)-334(sw)27(o)-55(j\\241)-333(uc)28(h)28(w)28(alim)-334(i)-333(p)-27(\\363\\252)-334(r)1(ub)1(la)-334(z)-333(m)-1(or)1(gi,)-333(a)-334(n)1(a)-333(insz)-1(\\241)-333(ni)-333(sz)-1(el\\241)-28(ga.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(n)1(am)-334(tak)56(a)-334(sz)-1(k)28(o\\252a,)-333(mo)-56(j)1(e)-334(uczy\\252y)-333(s)-1(i\\246)-333(b)-28(ez)-334(trzy)-333(roki)1(,)-334(a)-333(te\\273)-334(ni)-333(b)-27(e,)-334(n)1(i)-333(m)-1(e.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(s)-1(ze)-1(j)1(,)-333(lud)1(z)-1(i)1(e)-1(,)-333(c)-1(i)1(s)-1(ze)-1(j)1(!)]TJ 0 -13.549 Td[({)-333(Roz)-1(b)1(ryk)56(a\\252y)-333(s)-1(i\\246)-333(baran)29(y)83(,)-333(a)-333(w)-1(i)1(lk)-333(jeno)-333(patr)1(z)-1(e\\242)-1(,)-333(j)1(ak)-333(s)-1(k)28(o)-28(cz)-1(y)-333(n)1(a)-334(stad)1(o.)]TJ 0 -13.55 Td[({)-333(Pysk)56(ac)-1(ze)-334(ju)1(c)27(h)28(y)84(,)-333(no)28(w)28(\\241)-334(b)1(ie)-1(d)1(\\246)-334(wyp)28(y)1(s)-1(ku)1(j\\241)-333(la)-333(ws)-1(zys)-1(tk)1(ic)27(h)1(.)]TJ 0 -13.549 Td[(P)28(okr)1(z)-1(y)1(kiw)28(ali)-363(jeden)-363(p)1(rze)-1(z)-363(dr)1(ugiego,)-363(\\273e)-364(u)1(c)-1(zyn)1(i\\252)-363(s)-1(i\\246)-363(srogi)-363(gw)28(ar,)-363(k)56(a\\273den)-363(b)-27(o-)]TJ -27.879 -13.549 Td[(wiem)-275(do)28(w)28(o)-28(dzi\\252)-274(s)-1(w)28(o)-56(j)1(e)-1(go)-274(i)-274(przepiera\\252)-274(dru)1(gic)27(h)1(,)-274(rozgrz)-1(ew)28(ali)-274(s)-1(i\\246)-274(c)-1(oraz)-274(barzej,)-274(rozbil)1(i)]TJ 0 -13.549 Td[(si\\246)-265(na)-264(ku)1(p)28(y)-264(i)-264(w)-1(sz)-1(\\246dy)-264(za)28(w)-1(r)1(z)-1(a\\252y)-264(s)-1(p)-27(ory)-264(a)-264(k\\252\\363tn)1(ie)-1(,)-264(zw)-1(\\252asz)-1(cza)-265(Gr)1(z)-1(elo)28(w)27(e)-264(s)-1(tr)1(onni)1(ki)-264(p)28(y-)]TJ 0 -13.549 Td[(sk)28(o)27(w)28(a\\252y)-336(na)-55(jg\\252o\\261)-1(n)1(iej)-336(i)-336(na)-55(jza)27(wzi\\246)-1(ciej,)-336(p)-27(o)28(w)-1(sta)-56(j)1(\\241c)-337(pr)1(z)-1(ec)-1(i)1(w)-337(sz)-1(k)28(ole.)-336(Na)-336(pr\\363\\273no)-336(w)28(\\363)-56(jt)1(,)]TJ 0 -13.55 Td[(m\\252ynar)1(z)-314(i)-312(gosp)-28(o)-28(d)1(arze)-313(z)-313(dru)1(gic)27(h)-312(ws)-1(i)-312(pr)1(z)-1(ek\\252adal)1(i,)-313(p)1(rosili,)-312(a)-313(n)1(a)28(w)27(et)-313(i)-312(s)-1(tr)1(ac)27(hal)1(i)-313(B\\363g)]TJ 0 -13.549 Td[(wie)-298(c)-1(zym,)-298(wi\\246ksz)-1(o\\261\\242)-298(s)-1(r)1(o\\273)-1(y\\252a)-297(s)-1(i\\246)-298(coraz)-298(zuc)27(h)29(w)27(alej,)-297(wygadu)1(j\\241c,)-298(co)-298(j)1(e)-1(n)1(o)-298(k)28(om)28(u)-298(\\261lin)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nies)-1(\\252a.)]TJ 27.879 -13.549 Td[(Za\\261)-282(nacz)-1(eln)1(ik)-282(siedzia\\252,)-281(jakb)28(y)-281(n)1(ie)-282(s)-1(\\252ysz)-1(\\241c)-282(n)1(icz)-1(ego,)-282(sze)-1(p)1(ta\\252)-282(c)-1(osik)-281(z)-282(pi)1(s)-1(arzem)-1(,)]TJ -27.879 -13.549 Td[(da)-55(j\\241c)-282(s)-1(i\\246)-282(im)-282(w)-1(y)1(gada\\242)-283(d)1(o)-282(w)27(oli)1(,)-282(a)-282(kiej)-282(m)27(u)-281(s)-1(i\\246)-282(widzia\\252o,)-282(c)-1(o)-282(ma)-56(j)1(\\241)-282(ju)1(\\273)-283(dosy\\242)-282(p\\252onego)]TJ 0 -13.55 Td[(sz)-1(cz)-1(ek)56(ania,)-333(k)56(az)-1(a\\252)-333(z)-1(ad)1(z)-1(w)28(oni)1(\\242)-334(w)27(\\363)-55(jto)28(wi.)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho)-333(tam!)-333(c)-1(i)1(c)27(ho!)-333(s\\252uc)27(h)1(a\\242)-1(!)-333({)-333(s)-1(p)-27(ok)28(oil)1(i)-334(so\\252t)28(ys)-1(i)1(.)]TJ 0 -13.549 Td[(A)-333(nim)-333(s)-1(i\\246)-333(do)-333(c)-1(n)1(a)-334(p)1(rzyc)-1(i)1(s)-1(zy\\252o,)-333(rozle)-1(g\\252)-333(si\\246)-334(jego)-333(g\\252)-1(os)-333(rozk)55(azuj)1(\\241c)-1(y)1(:)]TJ 0 -13.549 Td[({)-333(Szk)28(o\\252a)-334(b)28(y)1(\\242)-334(m)27(u)1(s)-1(i,)-333(r)1(oz)-1(u)1(m)-1(i)1(e)-1(cie)-1(!)-333(S)1(\\252uc)27(h)1(a\\242)-334(i)-333(rob)1(i\\242)-1(,)-333(co)-333(w)27(am)-334(k)56(a\\273\\241!)]TJ 0 -13.549 Td[(Sr)1(ogo)-334(p)1(rze)-1(m\\363)28(wi\\252,)-334(j)1(e)-1(n)1(o)-333(c)-1(o)-333(s)-1(i)1(\\246)-334(nie)-333(ul\\246kli)1(,)-334(a)-333(K\\252\\241b)-333(c)28(hlasn\\241\\252)-333(na)-333(o)-28(d)1(le)-1(w:)]TJ 0 -13.55 Td[({)-305(Nie)-305(pr)1(z)-1(yk)56(azujem)-305(nik)28(om)28(u)-305(c)28(ho)-28(d)1(z)-1(i\\242)-305(na)-305(\\252b)1(ie)-1(,)-304(to)-305(niec)27(h)1(\\273)-1(e)-305(i)-305(nama)-305(p)-27(oz)-1(w)28(ol\\241)-305(si\\246)]TJ -27.879 -13.549 Td[(ru)1(c)27(h)1(a\\242)-1(,)-333(jak)-333(k)28(om)28(u)-333(wyros\\252y)-334(k)1(ulasy)83(.)]TJ 27.879 -13.549 Td[({)-333(Za)27(wrzyj)1(c)-1(ie)-333(g\\246)-1(b)-27(\\246)-1(!)-333(Cic)28(ho,)-333(psiekrwie!)-333({)-334(k)1(l\\241\\252)-334(w)28(\\363)-56(j)1(t,)-333(na)-333(dar)1(m)-1(o)-333(dzw)27(on)1(i\\241c.)]TJ 0 -13.549 Td[({)-374(Co)-374(rze)-1(k)1(\\252e)-1(m,)-374(to)-374(p)1(rzywt\\363rz\\246)-1(,)-373(\\273)-1(e)-374(w)-374(nasz)-1(ej)-374(szk)28(ole)-375(m)28(usz)-1(\\241)-373(s)-1(i\\246)-374(u)1(c)-1(zy\\242)-374(p)-28(o)-374(n)1(a-)]TJ -27.879 -13.549 Td[(sz)-1(em)27(u)1(.)]TJ 27.879 -13.55 Td[({)-234(K)1(arpi)1(e)-1(n)1(k)28(o!)-234(Iw)28(ano)28(w!)-233({)-234(ry)1(kn\\241\\252)-233(na)-234(stra\\273ni)1(k)28(\\363)27(w,)-233(s)-1(t)1(o)-56(j\\241cyc)28(h)-233(w)-234(p)-28(o\\261ro)-27(dku)-233(ci\\273)-1(b)29(y)83(,)]TJ -27.879 -13.549 Td[(ale)-334(c)28(h\\252op)1(i)-334(w)-333(m)-1(i)1(g)-334(i)1(c)27(h)-333(\\261c)-1(isn\\246li)-333(mi\\246)-1(d)1(z)-1(y)-333(sob\\241,)-333(a)-333(ktosik)-333(im)-334(sz)-1(epn)1(\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(jeno)-333(kt\\363r)1(e)-1(n)-333(tk)1(nie)-334(k)28(ogo.)1(..)-333(nas)-334(t)1(u)-333(z)-1(e)-334(t)1(rz)-1(y)1(s)-1(tu)1(...)-333(miarku)1(jcie...)]TJ 0 -13.549 Td[(I)-245(w)-1(r)1(az)-246(s)-1(i)1(\\246)-246(rozs)-1(t\\241)-28(p)1(ili)-245(cz)-1(yn)1(i\\241c)-246(w)28(olne)-246(p)1(rze)-1(j)1(\\261)-1(cie,)-246(a)-245(t\\252o)-28(cz)-1(\\241c)-246(si\\246)-246(za)-246(n)1(imi)-246(p)1(rze)-1(d)-245(n)1(a-)]TJ -27.879 -13.549 Td[(cz)-1(elni)1(k)55(a)-314(z)-315(g\\252)-1(u)1(c)27(h)1(\\241,)-315(r)1(oz)-1(j)1(usz)-1(on)1(\\241)-315(wrza)27(w)28(\\241,)-314(przysapuj)1(\\241c)-315(jeno,)-314(a)-315(kl)1(n\\241c)-315(i)-314(w)-1(y)1(trz\\241c)27(ha)-55(j\\241c)]TJ 0 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(am)-1(i,)-333(za\\261)-334(raz)-333(p)-28(o)-333(raz)-334(k)1(to\\261)-334(wyry)1(w)27(a\\252)-333(s)-1(i\\246)-333(z)-334(kup)29(y)-333(z)-334(oz)-1(or)1(e)-1(m:)]TJ 27.879 -13.55 Td[({)-333(Ka\\273)-1(d)1(e)-334(st)28(w)27(orze)-1(n)1(ie)-334(ma)-333(s)-1(w)28(\\363)-56(j)-333(g\\252os,)-333(a)-334(j)1(e)-1(n)1(o)-334(n)1(am)-334(p)1(rz)-1(y)1(k)55(azuj)1(\\241)-333(m)-1(ie\\242)-334(cud)1(z)-1(y)84(.)]TJ 0 -13.549 Td[({)-288(I)-289(ci\\246gie)-1(m)-288(przyk)56(az)-1(y)84(,)-288(a)-288(t)27(y)84(,)-288(c)27(h)1(\\252opie,)-288(s)-1(\\252uc)28(ha)-55(j,)-288(p\\252a\\242)-288(i)-289(czapk)56(\\241)-289(ziem)-1(i)1(\\246)-289(z)-1(amiata)-55(j.)]TJ 0 -13.549 Td[({)-333(P)28(okr\\363t)1(c)-1(e)-334(to)-333(b)-27(e)-1(z)-334(p)-27(ozw)27(ole\\253st)28(w)27(a)-333(n)1(ie)-334(pu)1(s)-1(zcz)-1(\\241)-333(i)-333(z)-1(a)-333(s)-1(to)-27(do\\252\\246.)]TJ 0 -13.549 Td[({)-349(Ki)1(e)-1(j)-348(takie)-349(wielmo\\273)-1(n)1(e)-1(,)-348(to)-349(ni)1(e)-1(c)27(h)-348(pr)1(z)-1(y)1(k)55(a\\273\\241)-349(\\261w)-1(i)1(niom,)-349(b)29(yc)27(h)-348(z)-1(a\\261pi)1(e)-1(w)28(a\\252y)-349(kiej)]TJ -27.879 -13.549 Td[(sk)28(o)27(wron)1(ki!)-333({)-333(h)28(uk)1(n\\241\\252)-333(An)28(tek,)-333(z)-1(atr)1(z)-1(\\246s)-1(\\252y)-333(si\\246)-334(\\261m)-1(iec)27(h)29(y)83(,)-333(a)-333(on)-333(w)27(o\\252a\\252)-333(rozju)1(s)-1(zon)28(y:)]TJ 27.879 -13.55 Td[({)-333(Alb)-27(o)-334(n)1(ie)-1(c)28(h)-333(im)-334(g\\246\\261)-334(zarycz)-1(y)84(.)-333(Jak)-333(to)-333(z)-1(rob)1(i\\241,)-333(to)-333(uc)27(h)29(w)27(ali)1(m)-334(sz)-1(k)28(o\\252\\246.)]TJ 0 -13.549 Td[({)-333(Ka\\273)-1(\\241)-333(p)-27(o)-28(dat)1(ki,)-333(p\\252acim;)-334(k)56(a\\273\\241)-334(r)1(e)-1(k)1(ruta,)-333(d)1(a)-56(j)1(e)-1(m,)-333(ale)-334(w)28(ara)-333(o)-28(d.)1(..)]TJ\nET\nendstream\nendobj\n2231 0 obj <<\n/Type /Page\n/Contents 2232 0 R\n/Resources 2230 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2230 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2235 0 obj <<\n/Length 8206      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(700)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-280(Cic)27(h)1(o)-28(cie)-1(,)-279(K\\252\\246)-1(b)1(ie)-1(.)-279(Sam)-280(Na)-56(j)1(ja\\261niejszy)-280(Cys)-1(ar)1(z)-281(n)1(ada\\252)-280(usta)28(w)27(\\246)-280(i)-280(tam)-280(stoi)-280(kiej)]TJ -27.879 -13.549 Td[(w)28(\\363\\252)-1(,)-376(co)-376(s)-1(zk)28(o\\252y)-377(i)-376(s\\241dy)-376(ma)-56(j)1(\\241)-377(b)29(y\\242)-377(p)-27(o)-377(p)-27(olsku)1(!)-377(T)84(ak)-377(p)1(rzyk)56(az)-1(a\\252)-376(s)-1(am)-376(Cys)-1(ar)1(z)-1(,)-376(to)-376(jego)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a\\242)-334(b)-27(\\246)-1(d)1(z)-1(iem!)-334(wrzes)-1(zc)-1(za\\252)-334(An)29(te)-1(k.)]TJ 27.879 -13.549 Td[({)-333(T)27(y)-333(kto)-333(tak)28(o)-55(j?)-333({)-334(sp)28(yta\\252)-333(nacz)-1(eln)1(ik)-333(w)-1(p)1(iera)-56(j)1(\\241c)-334(w)-333(niego)-334(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[(Zadr)1(\\273)-1(a\\252,)-333(ale)-334(r)1(z)-1(ek\\252)-333(\\261)-1(mia\\252o)-333(w)-1(sk)56(az)-1(u)1(j\\241c)-334(p)1(apiery)84(,)-333(le\\273)-1(\\241ce)-334(na)-333(s)-1(t)1(ole)-1(:)]TJ 0 -13.55 Td[({)-333(T)83(am)-334(stoi)-333(nap)1(is)-1(an)1(e)-1(.)-333(Nie)-333(s)-1(rok)56(a)-333(me)-334(z)-1(gu)1(bi\\252a)-333({)-333(do)-28(d)1(a\\252)-334(zuc)28(h)28(w)27(al)1(e)-1(.)]TJ 0 -13.549 Td[(Nacz)-1(elni)1(k)-428(p)-28(ogad)1(a\\252)-428(c)-1(osik)-428(z)-428(pi)1(s)-1(ar)1(z)-1(em)-1(,)-427(a)-428(te)-1(n)-427(p)-28(ok)1(r\\363tce)-429(og\\252osi\\252:)-428(jak)28(o)-428(An)29(to-)]TJ -27.879 -13.549 Td[(ni)-380(Boryn)1(a,)-381(p)-27(oz)-1(osta)-56(j)1(\\241c)-1(y)-380(p)-27(o)-28(d)-381(\\261ledzt)28(w)27(em)-381(k)56(arn)28(ym,)-381(n)1(ie)-381(ma)-381(pr)1(a)27(w)28(a)-381(b)1(ra\\242)-381(ud)1(z)-1(ia\\252u)-380(w)]TJ 0 -13.549 Td[(ze)-1(b)1(rani)1(u)-333(gm)-1(i)1(nn)28(ym.)]TJ 27.879 -13.549 Td[(An)28(tek)-459(p)-27(o)-28(c)-1(zerwie)-1(n)1(ia\\252)-459(z)-460(gn)1(iew)-1(u)1(,)-459(lec)-1(z)-459(nim)-459(si\\246)-460(ze)-1(b)1(ra\\252)-459(na)-459(s\\252o)28(w)27(o,)-459(n)1(ac)-1(ze)-1(l)1(nik)]TJ -27.879 -13.549 Td[(wrzas)-1(n)1(\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(P)28(os)-1(zo\\252)-333(w)27(on)1(!)-334({)-333(i)-333(ws)-1(k)56(aza\\252)-334(go)-333(o)-28(cz)-1(ami)-333(s)-1(tr)1(a\\273)-1(n)1(ik)28(om.)]TJ 0 -13.549 Td[({)-224(Ni)1(e)-224(uc)28(h)28(w)27(ala)-55(jta,)-223(c)27(h)1(\\252op)-28(cy!)-223(pr)1(a)27(w)28(o)-223(z)-1(a)-223(nami!)-223(nie)-224(b)-27(\\363)-56(j)1(ta)-224(si\\246)-224(n)1(ic)-1(ze)-1(go!)-223({)-223(krzykn)1(\\241\\252)]TJ -27.879 -13.549 Td[(zuc)27(h)29(w)27(ale)-333(An)28(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(I)-327(o)-27(dsz)-1(ed\\252)-327(w)28(oln)1(o)-327(ku)-326(wsi,)-327(sp)-27(oz)-1(iera)-55(j\\241c)-327(n)1(a)-327(stra\\273nik)28(\\363)28(w)-327(k)1(ie)-1(j)-326(wilk)-326(n)1(a)-327(k)28(ond)1(le,)-327(\\273e)]TJ -27.879 -13.549 Td[(osta)27(w)28(ali)-333(coraz)-334(d)1(ale)-1(j)1(.)]TJ 27.879 -13.55 Td[(Ale)-281(w)-280(gromadzie)-281(z)-1(agot)1(o)27(w)28(a\\252o)-281(si\\246)-281(z)-281(n)1(ag\\252a)-281(kieb)28(y)-280(w)-281(t)28(ym)-280(k)28(otle)-1(,)-280(wsz)-1(ysc)-1(y)-280(n)1(araz)]TJ -27.879 -13.549 Td[(zac)-1(z\\246)-1(li)-399(pra)28(wi\\242,)-400(krzycz)-1(e\\242)-401(i)-400(sprzec)-1(za\\242)-401(si\\246)-401(za)-56(j)1(adle,)-400(\\273)-1(e)-400(ju)1(\\273)-401(n)1(ie)-401(d)1(os)-1(\\252ysz)-1(a\\252)-400(n)1(ik)28(ogo,)-400(a)]TJ 0 -13.549 Td[(jeno)-349(p)-28(o)-55(jedy)1(ncz)-1(e)-350(s\\252)-1(o)28(w)28(a)-350(kl)1(\\241t)27(w,)-349(p)-28(ogr)1(\\363z)-350(i)-350(p)1(rz)-1(ekp)1(iw)27(a\\253)-349(lat)1(a\\252)-1(y)-349(nad)-349(g\\252o)28(w)27(ami)-349(kiej)-350(k)56(a-)]TJ 0 -13.549 Td[(mie)-1(n)1(ie.)-259(Jakb)28(y)-259(ic)28(h)-259(z\\252y)-259(op)-28(\\246ta\\252,)-259(tak)-259(si\\246)-260(wyd)1(z)-1(ierali)-259(zapal)1(c)-1(zywie,)-259(a)-260(n)1(ikto)-259(n)1(ie)-260(p)-27(oredzi\\252)]TJ 0 -13.549 Td[(wyrozumie\\242)-1(,)-333(sk)56(\\241d)-333(to)-334(p)1(rzys)-1(z\\252o)-333(i)-334(l)1(ac)-1(ze)-1(go?)]TJ 27.879 -13.55 Td[(Sp)1(ierali)-309(si\\246)-310(o)-309(sz)-1(k)28(o\\252\\246,)-310(o)-309(An)28(t)1(k)55(a,)-309(o)-309(w)28(c)-1(zora)-56(j)1(s)-1(zy)-309(desz)-1(cz)-1(,)-309(kto)-309(ze)-1(sz)-1(\\252or)1(o)-28(c)-1(zne)-309(s)-1(zk)28(o-)]TJ -27.879 -13.549 Td[(dy)-439(p)1(rzyp)-27(om)-1(in)1(a\\252)-440(s\\241siado)28(wi,)-439(kto)-439(fol)1(g\\246)-440(jeno)-439(da)28(w)28(a\\252)-440(w)28(\\241trob)1(ie)-1(,)-439(k)1(to)-440(za\\261)-440(la)-439(sam)-1(ego)]TJ 0 -13.549 Td[(sprze)-1(ciwu)-313(si\\246)-313(k\\252y\\271ni\\252,)-312(\\273)-1(e)-313(p)-28(o)28(ws)-1(t)1(a\\252)-314(t)1(aki)-313(m\\246)-1(t,)-312(taki)-313(wrzas)-1(k)-312(i)-313(z)-1(amies)-1(zani)1(e)-1(,)-313(co)-313(si\\246)-314(j)1(u\\273)]TJ 0 -13.549 Td[(widzia\\252o,)-295(j)1(ak)28(o)-295(leda)-295(c)27(h)29(w)-1(i)1(la)-295(w)27(ezm)-1(\\241)-295(si\\246)-295(z)-1(a)-295(\\252b)28(y)-294(i)-295(orzydl)1(a.)-295(Pr)1(\\363b)-28(o)28(w)28(a\\252)-295(s)-1(p)-27(ok)28(oi\\242)-295(Grze)-1(l)1(a,)]TJ 0 -13.549 Td[(pr)1(\\363b)-28(o)28(w)28(ali)-404(dru)1(gie,)-405(n)1(ie)-405(przem)-1(ogli)-404(j)1(e)-1(d)1(nak)-404(op)-28(\\246tania.)-404(W)84(\\363)-56(j)1(t)-405(dzw)28(oni\\252,)-404(ja\\273e)-405(m)27(u)-404(dr)1(\\246)-1(-)]TJ 0 -13.55 Td[(t)28(wia\\252y)-372(k)1(ulasy)83(,)-371(pr)1(z)-1(yw)28(o\\252uj)1(\\241c)-372(do)-371(p)-28(orz\\241dk)1(u,)-371(i)-372(tak)28(o\\273)-372(n)1(a)-372(d)1(armo.)-372(Ki)1(e)-1(j)-371(te)-372(rozju)1(s)-1(zone)]TJ 0 -13.549 Td[(in)1(dory)-333(sk)56(ak)55(a\\252y)-333(sobie)-333(do)-333(o)-28(c)-1(z\\363)28(w,)-334(\\261lep)-28(e)-333(ju)1(\\273)-334(i)-333(g\\252uc)27(h)1(e)-334(na)-333(ws)-1(zystk)28(o.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-390(kt\\363r)1(y\\261)-390(ze)-390(s)-1(o\\252t)28(ys\\363)27(w)-389(j\\241\\252)-390(w)28(ali\\242)-390(k)1(ijem)-390(w)-390(p)1(ust\\241)-390(b)-27(e)-1(cz)-1(k)28(\\246,)-389(s)-1(to)-55(j\\241c\\241)-390(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(ok)56(ap)-28(em,)-323(j)1(a\\273)-1(e)-323(za)-1(h)29(ucz)-1(a\\252a)-323(k)1(ie)-1(j)-322(b)-27(\\246)-1(b)-27(en,)-323(wtedy)-322(lud)1(z)-1(i)1(e)-323(oprzytomnieli)-322(nieco,)-323(\\261c)-1(isz)-1(a)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-334(na)28(wza)-56(jem.)]TJ 27.879 -13.55 Td[(Nacz)-1(elni)1(k)-334(n)1(ie)-334(mog\\241c)-334(si\\246)-334(d)1(o)-28(c)-1(ze)-1(k)56(a\\242)-334(cic)28(ho\\261c)-1(i,)-333(zakrzycz)-1(a\\252)-333(z)-1(gn)1(ie)-1(w)28(an)28(y:)]TJ 0 -13.549 Td[({)-292(Cic)28(ho)-291(tam)-1(!)-291(Dosy\\242)-292(tej)-292(n)1(arad)1(y!)-292(M)1(ilcz)-1(e\\242)-1(,)-291(kiedy)-291(j)1(a)-292(m\\363)27(wi\\246,)-291(i)-292(s\\252uc)27(h)1(a\\242)-1(.)-291(Szk)28(o\\252\\246)]TJ -27.879 -13.549 Td[(uc)28(h)28(w)28(alc)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(\\221cic)28(h\\252o,)-390(jakb)29(y)-390(m)-1(aki)1(e)-1(m)-390(p)-28(osia\\252,)-390(s)-1(tr)1(ac)27(h)-390(p)1(ad\\252)-390(na)-390(ws)-1(zys)-1(tk)1(ie)-1(,)-390(mr\\363z)-390(prze)-1(sze)-1(d)1(\\252)]TJ -27.879 -13.549 Td[(k)28(o\\261c)-1(i,)-370(\\273e)-371(s)-1(tali)-370(j)1(akb)28(y)-370(p)-28(o)-27(dr\\246t)28(wie)-1(l)1(i)-371(sp)-27(o)-1(ziera)-55(j\\241c)-371(p)-27(o)-371(sobie)-371(n)1(iem)-1(o)-370(i)-371(b)-27(ez)-1(r)1(adni)1(e)-1(,)-370(ani)-370(w)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(lac)28(h)-394(p)-27(os)-1(ta\\252y)-394(spr)1(z)-1(ec)-1(i)1(w)-1(y)84(,)-394(gd)1(y\\273)-395(on)-393(s)-1(ta\\252)-394(gro\\271ni)1(e)-1(,)-394(to)-27(c)-1(z\\241c)-395(o)-28(czam)-1(i)-394(p)-27(o)-394(wyl\\246k\\252yc)27(h)]TJ 0 -13.55 Td[(t)28(w)27(ar)1(z)-1(ac)28(h.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(iad)1(\\252)-373(zno)28(wu,)-372(a)-373(w)27(\\363)-55(jt,)-372(m\\252ynar)1(z)-374(i)-372(d)1(rugie)-373(r)1(z)-1(u)1(c)-1(i)1(li)-373(si\\246)-373(mi\\246)-1(d)1(z)-1(y)-372(lu)1(dzi)-373(p)1(rzy-)]TJ -27.879 -13.549 Td[(ni)1(e)-1(w)28(ala\\242)-334(d)1(o)-334(p)-27(os\\252)-1(u)1(s)-1(ze)-1(\\253)1(s)-1(t)28(w)28(a)-333(i)-334(strac)28(ha\\242.)]TJ 27.879 -13.549 Td[({)-333(G\\252os)-1(o)28(w)28(a\\242)-334(z)-1(a)-333(sz)-1(k)28(o\\252\\241,)-333(g\\252os)-1(o)28(w)28(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(Mo\\273e)-334(b)28(y\\242)-334(\\271le.)-333(S\\252ysz)-1(eli\\261ta?)]TJ 0 -13.55 Td[(Pi)1(s)-1(ar)1(z)-334(t)28(ymc)-1(zas)-1(em)-334(spra)28(wdza\\252)-334(ob)-27(ec)-1(n)28(y)1(c)27(h,)-333(\\273e)-334(ci)-333(tro)-28(c)28(h\\246)-334(kto\\261)-333(o)-28(dk)1(rz)-1(y)1(kiw)28(a\\252:)]TJ 0 -13.549 Td[({)-333(Je)-1(st!)-333(Jes)-1(t!)]TJ\nET\nendstream\nendobj\n2234 0 obj <<\n/Type /Page\n/Contents 2235 0 R\n/Resources 2233 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2233 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2238 0 obj <<\n/Length 8679      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(701)]TJ -330.353 -35.866 Td[(Za\\261)-334(p)-27(o)-334(spr)1(a)28(w)-1(d)1(z)-1(eniu)-332(w)27(\\363)-55(jt)-333(wlaz)-1(\\252)-333(na)-333(sto\\252e)-1(k)-333(i)-333(z)-1(ak)28(omendero)28(w)28(a\\252:)]TJ 0 -13.549 Td[({)-333(Kto)-333(z)-1(a)-333(s)-1(zk)28(o\\252\\241,)-333(niec)27(h)-333(p)1(rze)-1(j)1(dzie)-334(n)1(a)-334(p)1(ra)28(w)27(\\241)-333(stron\\246)-333(i)-334(p)-27(o)-28(d)1(niesie)-334(r\\246k)28(\\246)-1(.)]TJ 0 -13.549 Td[(Sp)-27(oro)-410(przes)-1(z\\252o,)-411(ale)-411(du)1(\\273)-1(o)-410(wi\\246)-1(ce)-1(j)-410(n)1(aro)-28(d)1(u)-411(osta\\252o)-411(na)-410(m)-1(i)1(e)-1(j)1(s)-1(cu,)-410(nacz)-1(elni)1(k)-411(si\\246)]TJ -27.879 -13.549 Td[(zm)-1(ar)1(s)-1(zc)-1(zy\\252)-334(i)-333(p)1(rzyk)56(az)-1(a\\252,)-333(ab)28(y)-333(la)-333(spra)28(wiedliw)28(o\\261c)-1(i)-333(g\\252os)-1(o)28(w)28(ali)-333(imienni)1(e)-1(.)]TJ 27.879 -13.549 Td[(St)1(rapi)1(\\252)-326(si\\246)-325(t)28(ym)-326(G)1(rze)-1(la,)-325(d)1(obr)1(z)-1(e)-325(rozumiej\\241c,)-325(\\273)-1(e)-325(s)-1(k)28(or)1(o)-325(k)55(a\\273den)-325(z)-325(os)-1(ob)1(na)-325(p)-27(\\363)-56(j)1(-)]TJ -27.879 -13.55 Td[(dzie)-334(g\\252oso)28(w)27(a\\242;)-333(to)-334(n)1(ie)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(\\261)-1(mia\\252)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ec)-1(iwi\\242.)]TJ 27.879 -13.549 Td[(Ale)-434(ju)1(\\273)-435(n)1(ie)-435(b)28(y)1(\\252o)-435(n)1(ij)1(akiej)-434(z)-1(ar)1(ady)84(.)-434(P)28(omo)-28(cnik)-434(zac)-1(z\\241\\252)-434(wyw)27(o\\252yw)28(a\\242)-434(i)-434(k)55(a\\273den)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252)-257(k)28(olej\\241,)-257(p)-27(os)-1(ob)1(ni)1(e)-1(,)-257(a)-257(p)1(is)-1(ar)1(z)-258(p)1(rz)-1(y)-256(nazw)-1(i)1(s)-1(ku)-256(z)-1(n)1(ac)-1(zy\\252)-257(kres)-1(k)28(\\246,)-257(je\\261li)-257(b)28(y\\252)-257(za)-257(s)-1(zk)28(o\\252\\241,)]TJ 0 -13.549 Td[(lu)1(b)-333(rob)1(i\\252)-334(kr)1(z)-1(y)1(\\273)-1(yk)1(,)-334(gd)1(y)-333(s)-1(i)1(\\246)-334(jej)-333(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\252)-1(.)]TJ 27.879 -13.549 Td[(D\\252ugo)-333(si\\246)-334(wlek\\252o,)-333(gdy\\273)-334(l)1(ud)1(z)-1(i)-333(b)28(y\\252o)-333(c)27(h)1(m)-1(ar)1(a,)-333(le)-1(cz)-334(w)-333(k)28(o\\253cu)-333(og\\252os)-1(il)1(i:)]TJ 0 -13.549 Td[({)-333(Dwie)-1(\\261c)-1(i)1(e)-334(g\\252os)-1(\\363)28(w)-334(za)-333(s)-1(zk)28(o\\252\\241,)-333(os)-1(iemdzie)-1(si\\241t)-333(pr)1(z)-1(ec)-1(iw.)]TJ 0 -13.55 Td[(Gr)1(z)-1(elo)28(w)-1(i)-333(p)-27(o)-28(d)1(nie\\261)-1(l)1(i)-333(w)-1(r)1(z)-1(ask.)]TJ 0 -13.549 Td[({)-333(Na)-334(n)1(o)28(w)27(o)-333(g\\252os)-1(o)28(w)28(a)-1(\\242!)-333(os)-1(zuk)56(ali)1(!)]TJ 0 -13.549 Td[({)-308(Ja)-308(m\\363)27(wi\\252em)-1(:)-307(nie,)-308(a)-308(p)-27(os)-1(ta)28(wi\\252)-308(mi)-308(kres)-1(k)28(\\246!)-308({)-308(wydziera\\252)-308(s)-1(i)1(\\246)-309(kt\\363r)1(y\\261,)-308(a)-308(z)-1(a)-308(n)1(im)]TJ -27.879 -13.549 Td[(wielu)-333(\\261)-1(wiar)1(c)-1(zy\\252o)-333(to)-334(samo;)-334(za\\261)-334(gor)1(\\246)-1(tsi)-333(j\\246li)-333(s)-1(i\\246)-333(s)-1(kr)1(z)-1(y)1(kiw)28(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(d)1(a\\242)-1(,)-333(p)-27(o)-28(dr)1(z)-1(e\\242)-334(pap)1(iery)83(,)-333(p)-27(o)-28(d)1(rze)-1(\\242!)]TJ 0 -13.55 Td[(Szcz)-1(\\246\\261)-1(ciem)-1(,)-508(co)-508(dw)28(ors)-1(k)1(i)-508(p)-28(o)28(w)28(\\363z)-509(za)-56(je\\273)-1(d)1(\\273)-1(a\\252)-508(p)1(rz)-1(ed)-508(k)56(ancelari\\246,)-508(wi\\246)-1(c)-508(lud)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(c)27(h)1(c)-1(\\241c)-436(nie)-437(c)28(hc\\241c)-1(,)-436(m)28(usie)-1(l)1(i)-436(s)-1(i\\246)-436(p)-28(o)-27(o)-28(dsu)28(w)28(a\\242)-437(na)-436(b)-27(oki,)-436(za\\261)-437(nacz)-1(eln)1(ik)-436(przec)-1(zyta)28(ws)-1(zy)]TJ 0 -13.549 Td[(list,)-333(jak)1(i)-333(m)27(u)-333(p)-27(o)-28(da\\252)-333(lok)56(a)-56(j)1(,)-333(oz)-1(n)1(a)-56(j)1(m)-1(i\\252)-333(ur)1(o)-28(cz)-1(y\\261c)-1(i)1(e)-1(:)]TJ 27.879 -13.549 Td[({)-333(T)83(ak,)-333(bar)1(dzo)-334(d)1(obrze,)-334(szk)28(o\\252)-1(a)-333(w)-333(Lip)-28(cac)27(h)-333(b)-27(\\246dzie)-1(.)]TJ 0 -13.549 Td[(Ju)1(\\261)-1(ci,)-424(co)-424(nik)1(to)-424(i)-424(p)1(ary)-424(z)-424(g\\246)-1(b)29(y)-424(nie)-424(p)1(u\\261)-1(ci\\252,)-424(stali)-423(kiej)-424(m)28(ur)-424(p)1(atrz\\241c)-425(w)-424(n)1(ie)-1(go)]TJ -27.879 -13.55 Td[(sp)-28(ok)28(o)-55(jn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(pi)1(s)-1(a\\252)-333(jaki)1(e)-1(\\261)-334(p)1(apiery)84(,)-333(w)-1(siad)1(\\252)-334(d)1(o)-334(p)-27(o)28(w)27(ozu)-333(i)-333(ru)1(s)-1(zy\\252.)]TJ 0 -13.549 Td[(K\\252an)1(iali)-345(m)27(u)-345(si\\246)-345(p)-28(ok)28(or)1(nie,)-345(ani)-345(sp)-28(o)-55(jrza\\252)-345(na)-345(k)28(ogo,)-345(ni)-345(kiwn)1(\\241\\252)-346(g\\252o)28(w)27(\\241,)-345(a)-345(p)-27(oga-)]TJ -27.879 -13.549 Td[(da)28(wsz)-1(y)-230(j)1(e)-1(sz)-1(cz)-1(e)-230(z)-1(e)-230(s)-1(tr)1(a\\273)-1(n)1(ik)56(am)-1(i,)-229(s)-1(kr)1(\\246)-1(ci\\252)-230(na)-230(b)-27(o)-28(c)-1(zn\\241)-230(d)1(rog\\246)-231(ku)-229(m)-1(o)-27(dli)1(c)27(kiem)27(u)-229(dw)28(oro)28(w)-1(i)1(.)]TJ 27.879 -13.549 Td[(P)28(atr)1(z)-1(yl)1(i)-333(z)-1(a)-333(nim)-333(c)-1(zas)-334(jak)1(i\\261)-334(w)-333(m)-1(il)1(c)-1(ze)-1(n)1(iu,)-333(a\\273)-333(kt\\363ry\\261)-333(z)-334(Grzelo)28(w)-1(yc)28(h)-333(rze)-1(k)1(\\252)-1(:)]TJ 0 -13.55 Td[({)-302(Jagni\\241tk)28(o,)-302(d)1(o)-303(ran)29(y)-303(go)-302(pr)1(z)-1(y\\252\\363\\273,)-302(a)-303(ni)1(e)-303(s)-1(p)-27(o)-28(d)1(z)-1(iejes)-1(z)-302(s)-1(i\\246,)-302(jak)-302(ud)1(rze)-303(c)-1(i\\246)-303(k)1(\\252am)-1(i)]TJ -27.879 -13.549 Td[(gorze)-1(j)-332(w)-1(i)1(lk)55(a)-333(i)-333(w)28(e)-1(\\271m)-1(i)1(e)-334(p)-28(o)-27(d)-333(k)28(op)28(yta.)]TJ 27.879 -13.549 Td[({)-333(A)-334(cz)-1(y)1(m)-1(\\273e)-334(b)28(y)-333(to)-333(g\\252up)1(ic)27(h)-333(tr)1(z)-1(y)1(m)-1(ali)1(,)-333(jak)-333(ni)1(e)-334(p)-28(ogr)1(oz)-1(\\241?)]TJ 0 -13.549 Td[(Gr)1(z)-1(ela)-333(jeno)-333(w)27(es)-1(tc)28(hn)1(\\241\\252,)-334(sp)-27(o)-56(j)1(rz)-1(a\\252)-333(p)-27(o)-334(gr)1(om)-1(ad)1(z)-1(ie)-333(i)-333(s)-1(ze)-1(p)1(n\\241\\252)-333(c)-1(ic)28(ho:)]TJ 0 -13.549 Td[({)-333(Przegralim)-333(dzis)-1(i)1(a,)-334(t)1(rud)1(no,)-333(n)1(ar\\363)-28(d)-333(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-334(w)28(ez)-1(wycz)-1(a)-55(jon)28(y)-333(d)1(o)-334(op)-27(oru)1(.)]TJ 0 -13.55 Td[({)-333(B)-1(o)-55(ja)-333(s)-1(i)1(\\246)-334(b)-27(e)-1(le)-333(c)-1(ze)-1(go,)-333(to)-333(i)-333(nie\\252at)28(w)27(o)-333(s)-1(i)1(\\246)-334(w)27(ezw)-1(y)1(c)-1(zai.)]TJ 0 -13.549 Td[({)-333(Moi\\261c)-1(i)1(e)-1(wy)83(,)-333(a)-333(jak)1(i)-334(t)1(o)-334(cz)-1(\\252o)28(wiek,)-333(na)28(w)27(et)-333(pr)1(a)27(w)28(o)-333(m)-1(a)-333(s)-1(e)-333(z)-1(a)-333(nic.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(p)1(rze)-1(ciek)-334(p)1(ra)28(w)28(o)-334(p)1(is)-1(al)1(i)-333(la)-334(n)1(as)-1(,)-333(a)-333(ni)1(e)-334(la)-333(s)-1(iebi)1(e)-1(.)]TJ 0 -13.549 Td[(Jaki)1(\\261)-334(c)27(h)1(\\252)-1(op)-332(z)-334(Przy\\252\\246k)55(a)-333(p)-27(o)-28(dsze)-1(d)1(\\252)-334(sk)55(ar)1(\\273)-1(\\241c)-333(s)-1(i\\246)-333(prze)-1(d)-333(G)1(rze)-1(l\\241:)]TJ 0 -13.549 Td[({)-319(Chcia\\252e)-1(m)-319(z)-320(w)28(ami,)-319(ale)-319(jak)-319(me)-320(p)1(rze)-1(\\261w)-1(i)1(dro)28(w)28(a\\252)-320(\\261lepiami,)-319(t)1(om)-320(j)1(\\246)-1(zyk)56(a)-319(z)-1(ap)-27(o-)]TJ -27.879 -13.549 Td[(mnia\\252)-333(i)-333(pisarz)-334(zapi)1(s)-1(a\\252,)-333(jak)-333(m)28(u)-333(s)-1(i)1(\\246)-334(s)-1(p)-27(o)-28(d)1(oba\\252o.)]TJ 27.879 -13.55 Td[({)-333(T)27(yl)1(a)-334(b)29(y\\252o)-334(osz)-1(u)1(k)56(a\\253st)27(w)28(a,)-333(\\273)-1(e)-333(m)-1(o\\273na)-333(b)28(y)-333(zas)-1(k)56(ar\\273y\\242)-334(u)1(c)27(h)28(w)28(a\\252\\246)-1(.)]TJ 0 -13.549 Td[({)-329(Ch)1(o)-28(d\\271ta)-329(d)1(o)-329(k)56(arcz)-1(m)28(y)83(.)-328(Nie)-1(c)28(h)28(ta)-329(siarczys)-1(te)-329(zat\\252uk)56(\\241)-329({)-328(z)-1(akl)1(\\241\\252)-329(Mateusz)-329(i)-329(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(wr\\363)-28(ciws)-1(zy)-365(si\\246)-365(do)-365(gr)1(om)-1(ad)1(y)-365(zakrzyc)-1(za\\252:)-365({)-365(Wi)1(e)-1(cie,)-365(lu)1(dzie)-1(,)-364(c)-1(ze)-1(go)-365(w)28(ama)-365(nacz)-1(elni)1(k)]TJ 0 -13.549 Td[(zap)-28(omni)1(a\\252)-464(p)-28(o)28(wiedzie\\242)-1(?)-464(A)-463(tego,)-464(\\273e)-1(\\261ta)-464(k)1(und)1(le)-464(i)-463(bar)1(an)28(y)83(.)-463(I)-464(d)1(obr)1(z)-1(e)-464(zap\\252acita)-464(za)]TJ 0 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(h,)-333(ale)-333(niec)27(h)-333(w)28(as)-334(\\252up)1(i\\241)-333(z)-1(e)-334(sk)28(\\363ry)84(,)-333(kiej\\261ta)-334(g\\252u)1(pie.)]TJ 27.879 -13.55 Td[(Zac)-1(z\\246li)-461(si\\246)-461(o)-28(d)1(c)-1(i)1(na\\242,)-461(k)1(to\\261)-461(na)28(w)28(e)-1(t)-460(p)28(ysk)-461(wyw)28(ar\\252)-460(na)-461(n)1(iego,)-461(l)1(e)-1(cz)-461(z)-1(milk)1(li,)-460(b)-28(o)]TJ -27.879 -13.549 Td[(jak)56(a\\261)-334(\\273yd)1(o)27(wsk)55(a)-333(b)1(ryk)56(a)-333(prze)-1(j)1(e)-1(\\273d\\273a\\252a,)-333(w)-334(kt\\363r)1(e)-1(j)-333(siedzia\\252)-333(Jas)-1(io)-333(organ)1(ist\\363)27(w.)]TJ\nET\nendstream\nendobj\n2237 0 obj <<\n/Type /Page\n/Contents 2238 0 R\n/Resources 2236 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2236 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2241 0 obj <<\n/Length 2157      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(702)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(44.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Oto)-27(c)-1(zyli)-391(go)-391(Lip)-27(cz)-1(aki)1(,)-391(a)-391(Grze)-1(l)1(a)-392(r)1(oz)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-391(o)-391(ws)-1(zystkim.)-391(Jasio)-391(wys)-1(\\252u)1(-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252,)-333(p)-28(ogad)1(a\\252)-334(o)-333(t)28(ym)-334(i)-333(o)28(wym)-334(i)-333(k)56(az)-1(a\\252)-333(jec)27(h)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[(Wsz)-1(y)1(s)-1(cy)-333(z)-1(a\\261)-334(p)-27(osz)-1(li)-333(d)1(o)-334(k)56(arcz)-1(m)28(y)-333(i)-333(p)-28(o)-333(dr)1(ugim)-333(kielisz)-1(k)1(u)-333(Mateusz)-334(h)28(uk)1(n\\241\\252:)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(a)-334(w)28(am)-334(p)-27(o)28(wie)-1(d)1(am)-1(,)-333(\\273e)-334(ws)-1(zystkiem)27(u)-333(win)1(ien)-333(w)27(\\363)-55(jt)-333(i)-333(m)-1(\\252yn)1(arz.)]TJ 0 -13.549 Td[({)-237(P)1(ra)28(w)-1(d)1(a,)-237(n)1(a)-56(jwi\\246ce)-1(j)-236(nama)28(w)-1(ial)1(i)-237(a)-237(strasz)-1(yl)1(i)-237({)-237(pr)1(z)-1(y)1(\\261)-1(wiarcz)-1(y)1(\\252)-237(Stac)28(ho)-237(P\\252osz)-1(k)56(a.)]TJ 0 -13.55 Td[({)-333(A)-334(\\273e)-334(n)1(ac)-1(ze)-1(ln)1(ik)-333(grozi\\252,)-333(to)-333(jakb)28(y)-333(wiedzia\\252)-333(ju)1(\\273)-334(o)-334(Ro)-27(c)27(h)28(u)-333({)-333(kto\\261)-334(sz)-1(ept)1(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(nie)-333(w)-1(i)1(e)-1(,)-333(to)-333(m)27(u)-333(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(\\241.)-333(Zna)-55(jd)1(\\241)-334(si\\246)-334(t)1(akie!)]TJ 0 -13.549 Td[({)-333(Ka)-56(j)-333(stra\\273ni)1(ki?)-333({)-334(zap)28(yta\\252)-333(Grzela)-334(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(nie.)]TJ 0 -13.549 Td[({)-333(P)28(os)-1(zli)-333(j)1(akb)28(y)-333(w)-334(stron)1(\\246)-334(Lip)1(ie)-1(c.)]TJ 0 -13.549 Td[(Gr)1(z)-1(ela)-291(zakr\\246ci\\252)-291(si\\246)-291(p)-28(o)-290(k)55(ar)1(c)-1(zmie)-291(i)-291(an)1(i)-291(sp)-27(os)-1(tr)1(z)-1(egli,)-290(jak)-290(s)-1(i\\246)-291(wyn)1(i\\363s\\252)-291(i)-291(sze)-1(d)1(\\252)-291(ku)]TJ -27.879 -13.549 Td[(ws)-1(i)-333(miedzam)-1(i)-333(r)1(oz)-1(gl\\241d)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(pil)1(nie)-333(dok)28(o\\252a.)]TJ\nET\nendstream\nendobj\n2240 0 obj <<\n/Type /Page\n/Contents 2241 0 R\n/Resources 2239 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2226 0 R\n>> endobj\n2239 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2244 0 obj <<\n/Length 7192      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(45)]TJ/F17 10.909 Tf 0 -73.325 Td[(An)28(tek)-366(obzie)-1(r)1(a\\252)-367(si\\246)-367(za)-366(g)-1(r)1(om)-1(ad)1(\\241)-366(kieb)28(y)-366(te)-1(n)-366(k)28(ot)-366(o)-28(d)1(p)-28(\\246dzon)28(y)-366(o)-28(d)-366(miski,)-366(a)-366(rozw)27(a\\273a\\252,)]TJ 0 -13.549 Td[(cz)-1(yb)29(y)-384(n)1(ie)-384(z)-1(a)28(wr\\363)-27(c)-1(i\\242,)-383(le)-1(cz)-384(widz\\241c)-384(nast\\246puj)1(\\241c)-1(y)1(c)27(h)-383(s)-1(t)1(ra\\273)-1(n)1(ik)28(\\363)28(w)-384(p)-27(o)28(w)-1(zi\\241\\252)-384(n)1(agle)-384(j)1(ak)55(\\241\\261)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(l,)-296(b)-28(o)-297(wy\\252ama\\252)-297(p)-27(o)-297(dro)-27(dze)-298(sp)-28(or)1(\\241)-297(ga\\252\\241\\271)-298(i)-296(w)-1(spar)1(\\252s)-1(zy)-297(si\\246)-298(o)-297(p)1(\\252ot)-297(obstru)1(giw)28(a\\252)-1(,)-296(pa-)]TJ 0 -13.549 Td[(suj\\241c)-304(do)-304(r\\246ki)-304(a)-305(zw)28(a\\273)-1(a)-55(j\\241c)-305(n)1(a)-305(b)1(ur)1(k)28(\\363)27(w,)-304(kt\\363r)1(z)-1(y)-304(c)27(h)1(o)-28(cia\\273)-305(sz)-1(li)-304(j)1(ak)-304(m)-1(ogl)1(i)-305(n)1(a)-56(j)1(p)-28(o)28(w)28(olni)1(e)-1(j)1(,)]TJ 0 -13.55 Td[(zr\\363)28(w)-1(n)1(ali)-333(si\\246)-334(z)-334(n)1(im)-334(p)-27(okr\\363tce.)]TJ 27.879 -13.549 Td[({)-333(Ka)-56(j)1(\\273)-1(e)-333(to)-334(p)1(an)-333(s)-1(tar)1(s)-1(zy)83(,)-333(n)1(a)-334(p)1(rze)-1(\\261pi)1(e)-1(gi?)-333({)-334(zagada\\252)-333(ur)1(\\241)-28(gliwie.)]TJ 0 -13.549 Td[({)-333(P)28(o)-333(s)-1(\\252u\\273bi)1(e)-1(,)-333(pan)1(ie)-334(gosp)-27(o)-28(dar)1(z)-1(u)1(,)-334(a)-333(mo\\273)-1(e)-333(nam)-334(w)-333(jedn)1(\\241)-334(stron)1(\\246)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(Rad)-333(b)28(ym)-334(z)-333(duszy)83(,)-333(ale)-334(wid)1(z)-1(i)-333(mi)-333(s)-1(i)1(\\246)-1(,)-333(co)-334(n)1(am)-334(k)56(a)-56(j)-333(i)1(ndziej)-333(dr)1(ogi)-333(w)-1(y)1(padn)1(\\241.)]TJ 0 -13.549 Td[(Roz)-1(ejr)1(z)-1(a\\252)-403(si\\246)-404(p)1(r\\246)-1(d)1(k)28(o,)-403(na)-403(d)1(ro)-28(d)1(z)-1(e)-404(n)1(i)-403(\\273yw)27(ej)-403(d)1(usz)-1(y)84(,)-403(jeno)-403(c)-1(o)-403(k)56(ancelaria)-403(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(jesz)-1(cz)-1(e)-417(za)-417(b)1(lisk)28(o,)-417(wi\\246c)-417(ruszy\\252)-417(z)-417(ni)1(m)-1(i)-416(trzyma)-56(j)1(\\241c)-417(s)-1(i\\246)-417(k)28(ol)1(e)-417(p\\252ota)-417(i)-416(pi)1(lni)1(e)-417(bacz)-1(\\241c,)]TJ 0 -13.55 Td[(b)28(yc)28(h)-333(go)-333(z)-334(nag\\252a)-333(nie)-333(obsk)28(o)-28(c)-1(zyli)1(.)]TJ 27.879 -13.549 Td[(Zmiark)28(o)28(w)27(a\\252)-327(si\\246)-327(s)-1(t)1(ars)-1(zy)-327(i)-326(dalej\\273e)-327(p)-28(ogad)1(yw)28(a\\242)-328(z)-327(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(lst)28(w)27(a)-326(i)-327(sro)-28(d)1(z)-1(e)-327(wy-)]TJ -27.879 -13.549 Td[(rze)-1(k)56(a\\242,)-333(jak)28(o)-333(o)-28(d)-333(sam)-1(ego)-334(r)1(ana)-333(jes)-1(zcz)-1(e)-334(n)1(ic)-334(n)1(ie)-334(mia\\252)-334(w)-333(g\\246)-1(b)1(ie.)]TJ 27.879 -13.549 Td[({)-311(Nacze)-1(ln)1(ik)28(o)28(wi)-311(p)1(is)-1(ar)1(z)-311(nie)-310(\\273)-1(a\\252o)28(w)27(a\\252,)-310(to)-311(p)-27(ew)-1(n)1(iki)1(e)-1(m)-311(i)-310(la)-310(pan)1(a)-311(starsz)-1(ego)-311(osta-)]TJ -27.879 -13.549 Td[(wi\\252)-313(j)1(akie)-313(o)-28(c)28(h\\252ap)28(y)84(.)-313(Na)-312(w)-1(siac)27(h)-312(p)1(rze)-1(cie)-1(k)-312(sm)-1(ak)28(\\363)28(w)-313(n)1(ie)-313(p)-28(osta)28(w)-1(i)1(\\241;)-313(c\\363\\273)-1(,)-312(klu)1(s)-1(k)1(i)-313(a)-312(k)55(ap)1(u-)]TJ 0 -13.55 Td[(sta)-370(nie)-370(la)-369(takic)27(h)-369(p)1(an\\363)28(w)-370({)-370(pr)1(z)-1(ekpi)1(w)27(a\\252)-370(z)-370(rozm)27(ys\\252e)-1(m,)-369(ja\\273)-1(e)-370(m\\252o)-28(dszy)83(,)-370(sieln)28(y)-369(parob)]TJ 0 -13.549 Td[(o)-333(rozlatan)28(yc)28(h)-333(\\261)-1(lepi)1(ac)27(h,)-333(cos)-1(i)1(k)-333(z)-1(amam)-1(r)1(ota\\252,)-333(ale)-334(starsz)-1(y)-333(ni)1(e)-334(p)-27(opu\\261ci\\252)-334(n)1(i)-333(s)-1(\\252o)28(w)27(a.)]TJ 27.879 -13.549 Td[(An)28(tek)-370(s)-1(i)1(\\246)-371(jeno)-370(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)27(h)1(a\\252)-370(w)-1(y)1(c)-1(i\\241)-27(ga)-56(j\\241c)-370(c)-1(or)1(az)-371(lepi)1(e)-1(j)-370(k)1(ulasy)83(,)-370(\\273e)-371(l)1(e)-1(d)1(w)-1(ie)-370(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-262(nad)1(\\241)-1(\\273yli)1(,)-262(n)1(ie)-262(bacz)-1(\\241c)-262(j)1(u\\273)-262(na)-261(w)-1(y)1(b)-28(o)-55(je)-262(n)1(i)-262(k)56(a\\252u\\273e)-262(w)-1(i)1(e)-1(\\261)-262(b)28(y\\252a)-261(pu)1(s)-1(ta,)-261(jakb)29(y)-262(wymar-)]TJ 0 -13.549 Td[(\\252a,)-283(i)-282(s)-1(\\252o\\253ce)-283(tak)-283(doskwiera\\252o,)-283(\\273e)-284(j)1(e)-1(n)1(o)-283(ni)1(e)-1(ki)1(e)-1(d)1(y)-283(co)-283(ta)-283(kto\\261)-283(wyjr)1(z)-1(a\\252)-283(za)-283(nimi)-283(l)1(ub)-282(k)55(a)-55(j\\261)]TJ 0 -13.55 Td[(w)-424(cie)-1(n)1(iac)27(h)-423(zabiela\\252y)-423(dzie)-1(ci\\253)1(s)-1(ki)1(e)-425(g\\252o)28(win)28(y)84(,)-424(a)-423(t)28(ylk)28(o)-424(j)1(e)-1(d)1(ne)-424(p)1(ie)-1(ski)-423(pr)1(z)-1(epro)28(w)28(adza\\252y)]TJ 0 -13.549 Td[(ic)28(h)-333(w)-1(i)1(e)-1(r)1(nie)-334(z)-333(niem)-1(a\\252y)1(m)-334(jazgotem)-334(i)-333(do)-28(cierani)1(e)-1(m.)]TJ 27.879 -13.549 Td[(St)1(ars)-1(zy)-384(z)-1(aku)1(rzy\\252)-385(p)1(apierosa)-385(i)-384(s)-1(tr)1(z)-1(yk)1(n\\241)28(ws)-1(zy)-385(p)1(rze)-1(z)-385(z\\246)-1(b)28(y)-384(j\\241\\252)-384(s)-1(i\\246)-385(u)1(\\273)-1(al)1(a\\242)-1(,)-384(jak)]TJ -27.879 -13.549 Td[(to)-333(on)-333(ni)1(e)-334(z)-1(azna)-333(ni)1(gdy)-333(s)-1(p)-27(ok)28(o)-55(jnej)-333(n)1(o)-28(c)-1(y)-333(n)1(i)-334(d)1(ni)1(a,)-334(b)-27(o)-333(c)-1(i)1(\\246)-1(giem)-334(s\\252u\\273ba)-333(i)-333(s)-1(\\252u)1(\\273)-1(ba.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(co)-333(nie\\252ac)-1(n)1(o)-334(tera)-333(wyc)-1(i)1(\\241)-28(gn\\241\\242)-333(c)27(ho)-27(\\242)-1(b)28(y)-333(co)-334(n)1(ieb\\241d\\271)-333(o)-28(d)-333(c)27(h)1(\\252op)-28(\\363)28(w...)]TJ 0 -13.55 Td[(St)1(ra\\273)-1(n)1(ik)-426(jeno)-426(z)-1(ak)1(l\\241\\252)-427(si\\246ga)-56(j)1(\\241c)-427(ja\\273e)-427(do)-426(m)-1(aci,)-426(ale)-427(An)29(te)-1(k,)-426(\\273e)-427(m)27(u)-426(si\\246)-427(to)-426(ju)1(\\273)]TJ -27.879 -13.549 Td[(zm)-1(ierzi\\252y)-333(te)-334(kl)1(ucz)-1(enia,)-333(\\261c)-1(i)1(s)-1(n)1(\\241\\252)-334(mo)-28(cniej)-333(kij)1(as)-1(ze)-1(k)-333(i)-333(rzek\\252)-334(ca\\252kiem)-334(zac)-1(ze)-1(p)1(nie:)]TJ 27.879 -13.549 Td[({)-402(P)1(ra)28(w)-1(d)1(\\246)-403(p)-27(o)28(wie)-1(m,)-402(a)-401(to)-402(z)-403(w)28(as)-1(zej)-402(s\\252)-1(u)1(\\273)-1(b)29(y)-402(t)28(yla)-402(j)1(e)-1(n)1(o)-402(jes)-1(t)-401(pro\\014)1(tu,)-401(c)-1(o)-402(si\\246)-402(p)-28(o)]TJ -27.879 -13.549 Td[(ws)-1(i)1(ac)27(h)-333(naszc)-1(ze)-1(k)56(a)-56(j)1(\\241)-334(p)1(ies)-1(ki)1(,)-333(a)-334(j)1(aki)-333(taki)-333(zb)-28(\\246dzie)-334(ostatni)1(e)-1(j)-333(z\\252ot\\363)28(w)-1(k)1(i.)]TJ 27.879 -13.549 Td[(I)-360(to)-360(jes)-1(zc)-1(ze)-361(starszy)-360(\\261)-1(cierpi)1(a\\252)-1(,)-359(c)27(ho)-27(c)-1(ia\\273)-360(ju)1(\\273)-361(p)-27(oz)-1(ielenia\\252)-360(ze)-361(z\\252o\\261)-1(ci,)-360(a)-360(za)-361(p)1(a\\252a-)]TJ -27.879 -13.55 Td[(sz)-1(em)-263(mac)-1(a\\252,)-262(ale)-263(d)1(opi)1(e)-1(ro)-262(ki)1(e)-1(j)-262(d)1(os)-1(zli)-262(os)-1(t)1(atniej)-262(c)27(h)1(a\\252up)28(y)84(,)-262(rzuci\\252)-263(si\\246)-263(z)-262(nag\\252a)-262(na)-262(An)28(tk)56(a)]TJ 0 -13.549 Td[(i)-333(krzykn)1(\\241\\252)-334(k)56(amrato)28(wi:)]TJ 27.879 -13.549 Td[({)-333(B)-1(i)1(e)-1(rz)-333(go!)]TJ 330.353 -29.888 Td[(703)]TJ\nET\nendstream\nendobj\n2243 0 obj <<\n/Type /Page\n/Contents 2244 0 R\n/Resources 2242 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2242 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2248 0 obj <<\n/Length 10016     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(704)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(\\231le)-452(si\\246)-452(j)1(e)-1(d)1(nak)-451(wyb)1(rali,)-451(b)-27(o)-451(nim)-451(p)-28(or)1(e)-1(d)1(z)-1(il)1(i)-451(go)-452(p)1(rzytrzyma\\242)-452(o)-28(d)1(c)-1(iepn)1(\\241\\252)-452(i)1(c)27(h)]TJ -27.879 -13.549 Td[(pr)1(e)-1(cz)-441(kiej)-440(k)28(ond)1(le,)-441(u)1(s)-1(k)28(o)-27(c)-1(zy\\252)-441(w)-440(b)-28(ok)-440(p)-27(o)-28(d)-440(c)27(h)1(a\\252up)-27(\\246)-1(,)-440(wysz)-1(cz)-1(erzy\\252)-440(z)-1(\\246b)28(y)-440(kiej)-440(w)-1(i)1(lk)-440(i)]TJ 0 -13.549 Td[(trz\\241c)27(h)1(a)-56(j)1(\\241c)-334(kij)1(e)-1(m)-333(z)-1(a)28(wrza\\252)-334(p)1(rz)-1(y)1(du)1(s)-1(zon)28(ym,)-333(ury)1(w)27(an)28(y)1(m)-334(g\\252os)-1(em:)]TJ 27.879 -13.549 Td[({)-261(Id)1(\\271)-1(cie)-261(s)-1(w)28(o)-56(j)1(\\241)-261(d)1(rog\\241...)-260(ze)-261(m)-1(n)1(\\241)-261(ni)1(e)-261(w)-1(y)1(grac)-1(i)1(e)-1(..)1(.)-261(n)1(ie)-261(dam)-261(si\\246)-261(i)-261(czte)-1(r)1(e)-1(m...)-260(a)-261(k\\252y)]TJ -27.879 -13.549 Td[(p)-27(o)27(wyb)1(ij)1(am)-296(kiej)-295(psom.)-296(Cze)-1(go)-295(c)27(h)1(c)-1(ec)-1(i)1(e)-296(o)-28(de)-295(m)-1(n)1(ie)-1(?..)1(.)-295(w)-296(ni)1(c)-1(zym)-296(n)1(ie)-296(wino)28(w)28(at)28(ym...)-295(A)]TJ 0 -13.55 Td[(sz)-1(u)1(k)55(acie)-395(bit)1(ki,)-395(d)1(obrze...)-395(zam\\363)27(wta)-395(se)-396(j)1(e)-1(n)1(o)-395(pr)1(z)-1(\\363)-27(dzi)-395(p)-27(o)-28(dw)28(o)-28(dy)-394(na)-395(sw)27(o)-55(je)-395(k)28(o\\261)-1(ci..)1(.A)]TJ 0 -13.549 Td[(p)-27(o)-28(dejd)1(\\271)-347(k)1(t\\363ry)-346(i)-346(t)1(knij)-345(me)-347(j)1(e)-1(n)1(o,)-346(s)-1(p)1(r\\363b)1(uj!)-345({)-346(z)-1(akr)1(z)-1(y)1(c)-1(za\\252)-346(w)-1(y)1(gra\\273)-1(a)-55(j\\241c)-346(kij)1(e)-1(m)-346(i)-346(got\\363)28(w)]TJ 0 -13.549 Td[(ju)1(\\273)-334(c)27(h)1(o)-28(\\242b)28(y)-333(do)-333(z)-1(ab)1(ij)1(a)-1(n)1(ia.)]TJ 27.879 -13.549 Td[(St)1(ra\\273)-1(n)1(icy)-353(s)-1(tan)1(\\246)-1(l)1(i)-354(k)1(ie)-1(j)-352(w)-1(r)1(yci,)-353(gdy\\273)-353(c)27(h)1(\\252)-1(op)-352(b)28(y\\252)-353(ogromn)28(y)83(,)-353(r)1(oz)-1(w\\261c)-1(ieklon)29(y)-353(i)-353(kij)]TJ -27.879 -13.549 Td[(ja\\273e)-250(m)28(u)-249(w)28(arc)-1(za\\252)-249(w)-250(gar)1(\\261)-1(ciac)27(h)1(,)-249(w)-1(i)1(\\246)-1(c)-250(starszy)-249(w)-1(i)1(dz\\241c)-1(,)-249(\\273e)-250(to)-249(nie)-249(pr)1(z)-1(ele)-1(wki)1(,)-249(s)-1(p)1(rob)-27(o)27(w)28(a\\252)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-334(ob)1(r\\363)-28(ci\\242)-334(w)-333(\\273)-1(ar)1(t.)]TJ 27.879 -13.55 Td[({)-250(Ha!)-250(ha!)-249(s)-1(\\252a)28(wno,)-250(a)-250(to)-250(si\\246)-251(n)1(am)-251(u)1(da\\252a)-250(s)-1(zutk)56(a!)-250({)-250(i)-250(tr)1(z)-1(y)1(m)-1(a)-55(j\\241c)-251(si\\246)-250(z)-1(a)-250(b)-27(oki,)-250(n)1(ib)28(y)]TJ -27.879 -13.549 Td[(to)-332(o)-28(d)-332(\\261m)-1(iec)27(h)29(u,)-332(z)-1(a)28(wr\\363)-28(ci\\252)-332(z)-333(p)-28(o)28(wrotem,)-333(al)1(e)-333(usz)-1(ed\\252sz)-1(y)-332(ki)1(lk)56(ana\\261c)-1(ie)-332(krok)28(\\363)28(w)-333(p)-27(ogrozi\\252)]TJ 0 -13.549 Td[(m)27(u)-332(pi\\246\\261)-1(ci\\241)-333(i)-333(z)-1(go\\252a)-333(ju)1(\\273)-334(inacze)-1(j)-333(za)28(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252:)]TJ 27.879 -13.549 Td[({)-333(My)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e)-334(zobacz)-1(y)1(m)-1(,)-333(p)1(anie)-334(gosp)-27(o)-28(dar)1(z)-1(u)1(,)-333(i)-334(p)-27(ogadam)28(y)83(.)]TJ 0 -13.549 Td[({)-394(A)-395(n)1(iec)27(h)-394(c)-1(i)1(e)-395(ta)-394(prz\\363)-28(d)1(z)-1(i)-394(zaraz)-1(a)-394(sp)-28(otk)56(a!)-394({)-394(o)-28(dkr)1(z)-1(y)1(kn\\241\\252)-394(na)-394(o)-28(dl)1(e)-1(w.)-394({)-395(Hal)1(e)-1(,)]TJ -27.879 -13.55 Td[(strac)27(h)-359(go)-359(spar\\252,)-359(to)-359(s)-1(i)1(\\246)-360(\\273)-1(ar)1(te)-1(m)-359(w)-1(y)1(kr\\246c)-1(a,)-359(p)-27(ogadam)-360(i)-359(j)1(a)-360(z)-360(t)1(ob\\241,)-359(niec)27(h)-359(n)1(o)-360(ci\\246)-360(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(k)56(a)-56(j)-333(zdy)1(bi\\246)-334(n)1(a)-333(os)-1(obn)1(o\\261)-1(ci)-333({)-333(m)-1(r)1(ucz)-1(a\\252)-333(bacz)-1(\\241c,)-333(p)-28(\\363k)1(i)-334(m)28(u)-333(z)-334(o)-28(cz)-1(\\363)28(w)-333(nie)-333(z)-1(es)-1(zli.)]TJ 27.879 -13.549 Td[({)-332(T)83(am)28(ten)-332(p)-27(osz)-1(cz)-1(u)1(\\252)-332(na)-331(m)-1(n)1(ie,)-332(g\\252u)1(pi,)-331(m)27(y\\261la\\252,)-331(c)-1(o)-331(m)-1(e)-332(w)28(e)-1(zm\\241)-332(kiej)-331(psy)-332(za)-56(j)1(\\241c)-1(a.)]TJ -27.879 -13.549 Td[(T)83(o)-430(za)-430(m\\363)-56(j)-429(op)-28(\\363r)1(,)-430(ju)1(\\261)-1(ci,)-430(p)1(ra)28(wda)-430(m)28(u)-430(n)1(ie)-430(w)-431(smak)-430({)-430(rozm)27(y)1(\\261)-1(la\\252)-430(i)-429(dosz)-1(ed\\252sz)-1(y)-429(p)-28(o)-28(d)]TJ 0 -13.549 Td[(dw)28(orski)-366(ogr\\363)-27(d,)-366(k)56(a)27(w)28(a\\252)-366(z)-1(a)-366(ws)-1(i\\241,)-366(p)1(rz)-1(y)1(s)-1(iad)1(\\252)-367(w)-366(c)-1(i)1(e)-1(n)1(iu,)-366(ab)28(y)1(c)27(h)-366(o)-28(d)1(p)-28(o)-27(c)-1(z\\241\\242)-367(ni)1(e)-1(co,)-366(gdy\\273)]TJ 0 -13.55 Td[(trz\\241s\\252)-334(si\\246)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(c)-1(a\\252y)-333(i)-333(s)-1(p)-27(otni)1(a\\252)-334(ki)1(e)-1(j)-333(m)28(ysz)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ez)-492(dr)1(e)-1(wni)1(ane)-492(ogro)-27(dze)-1(n)1(ie)-492(widn)1(ia\\252)-492(b)1(ia\\252y)-491(dw)28(\\363)-1(r)1(,)-491(s)-1(to)-55(j\\241cy)-492(w)-491(w)-1(yn)1(ios\\252ym)]TJ -27.879 -13.549 Td[(zaga)-56(ju)-253(mo)-28(d)1(rze)-1(wi,)-253(p)-28(o)28(wywieran)1(e)-254(okna)-253(c)-1(ze)-1(r)1(nia\\252y)-253(kiej)-253(jam)28(y)83(,)-253(a)-253(na)-254(s\\252up)1(iast)27(y)1(m)-254(ganku)]TJ 0 -13.549 Td[(sie)-1(d)1(z)-1(i)1(a\\252)-1(o)-394(jaki)1(e)-1(\\261)-395(p)1(a\\253st)28(w)27(o)-395(i)-394(snad)1(\\271)-396(p)1(rzy)-395(j)1(adl)1(e)-1(,)-394(b)-28(o)-394(s)-1(\\252u)1(\\273)-1(b)1(a)-395(ci\\246)-1(gi)1(e)-1(m)-395(si\\246)-395(kr\\246ci\\252a)-395(k)28(ole)]TJ 0 -13.549 Td[(ni)1(c)27(h,)-333(sz)-1(cz\\246)-1(k)56(a\\252y)-333(s)-1(tatk)1(i,)-333(a)-334(n)1(iekiedy)-333(d\\252u)1(gi,)-333(w)27(es)-1(o\\252y)-333(\\261m)-1(i)1(e)-1(c)27(h)-332(do)-28(c)28(ho)-28(d)1(z)-1(i\\252.)]TJ 27.879 -13.55 Td[({)-257(T)83(ak)1(im)-257(niezgorz)-1(ej!)-256(Jedz\\241,)-257(pi)1(j\\241)-257(i)-256(z)-1(ar)1(\\363)28(w)-1(n)1(o)-257(im)-257(ws)-1(zystk)28(o)-257({)-257(m)28(y\\261la\\252)-257(dob)1(iera)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-334(do)-333(c)27(h)1(leba)-333(z)-1(e)-333(s)-1(ere)-1(m,)-333(jak)1(i)-333(m)27(u)-333(b)28(y)1(\\252)-1(a)-333(Han)1(k)55(a)-333(w)28(e)-1(tkn)1(\\246)-1(\\252a)-333(w)-334(k)1(ie)-1(sz)-1(e\\253.)]TJ 27.879 -13.549 Td[(P)28(o)-55(jad)1(a\\252)-292(w)28(o)-28(d)1(z)-1(\\241c)-291(o)-28(cz)-1(ami)-291(p)-27(o)-291(wie)-1(l)1(gac)27(hn)29(yc)27(h)-290(lip)1(ac)27(h)-291(b)1(rze)-1(\\273\\241c)-1(y)1(c)27(h)-291(d)1(rog\\246)-291(i)-291(ca\\252)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(w)28(e)-275(kwiatac)27(h)-274(i)-274(p)1(s)-1(zc)-1(zeln)28(ym)-274(brz\\246)-1(k)1(u,)-274(s)-1(\\252o)-27(dki,)-274(spr)1(a\\273)-1(on)28(y)-274(w)-274(s)-1(\\252o\\253)1(c)-1(u)-274(zapac)28(h)-274(przejmo)27(w)28(a\\252)]TJ 0 -13.549 Td[(go)-330(lub)-27(o\\261)-1(ci\\241;)-330(k)56(a)-56(j)1(\\261)-331(z)-1(e)-331(sadza)28(w)-1(k)1(i)-331(zakw)28(ak)55(a\\252a)-330(k)56(ac)-1(zk)56(a)-331(i)-330(rozc)27(ho)-27(dzi\\252o)-331(si\\246)-331(se)-1(n)1(ne)-331(n)28(u)1(k)56(anie)]TJ 0 -13.55 Td[(\\273ab,)-273(z)-275(g\\241szc)-1(z\\363)27(w)-273(trz\\246)-1(s\\252y)-274(si\\246)-274(c)-1(i)1(c)27(h)28(u)1(\\261)-1(ki)1(e)-275(p)-27(og\\252oski)-274(st)28(w)27(or)1(z)-1(e\\253)-273(prze)-1(r)1(\\363\\273)-1(n)29(yc)27(h,)-273(a)-274(n)1(a)-274(p)-27(olac)27(h)]TJ 0 -13.549 Td[(m)27(u)1(z)-1(y)1(k)55(a)-281(k)28(oni)1(k)28(\\363)27(w)-281(p)-28(o)-28(d)1(nosi\\252a)-282(si\\246)-282(raz)-282(p)-27(o)-281(raz)-282(i)-281(przycic)27(h)1(a\\252a,)-282(ale)-282(p)-27(o)-281(jakim\\261)-282(cz)-1(asie)-282(j\\246\\252o)]TJ 0 -13.549 Td[(ws)-1(zystk)28(o)-467(g\\252u)1(c)27(hn)1(\\241\\242)-1(,)-466(jak)1(b)28(y)-467(zalan)1(e)-467(s)-1(\\252on)1(e)-1(cz)-1(n)28(y)1(m)-467(ukr)1(op)-28(em.)-467(\\221)1(w)-1(i)1(at)-467(on)1(ie)-1(mia\\252,)-466(a)-467(co)]TJ 0 -13.549 Td[(jeno)-384(b)28(y\\252o)-385(\\273yw)27(e,)-385(p)1(rzytai\\252o)-385(si\\246)-385(w)-386(cieniac)28(h)-385(p)1(rze)-1(d)-384(p)-28(o\\273og\\241,)-385(\\273e)-385(t)27(y)1(lk)28(o)-385(jedn)1(e)-385(jask)28(\\363\\252)-1(k)1(i)]TJ 0 -13.549 Td[(\\261m)-1(iga\\252y)-333(n)1(ie)-1(u)1(s)-1(tan)1(ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(p)-28(o\\252u)1(dni)1(e)-263(ki)1(pia\\252o)-262(j)1(u\\273)-262(takim)-262(w)27(ar)1(e)-1(m,)-262(\\273e)-263(o)-28(cz)-1(y)-261(b)-28(ola\\252y)-262(o)-27(d)-262(b)1(las)-1(k)28(\\363)28(w)-262(i)-262(spieki,)]TJ -27.879 -13.55 Td[(na)28(w)28(e)-1(t)-299(cienie)-299(par)1(z)-1(y)1(\\252)-1(y)84(,)-299(ostatni)1(e)-300(k)56(a\\252u\\273e)-300(wysc)27(h)1(\\252y)83(,)-299(a)-299(d)1(o)-299(te)-1(go)-299(o)-27(d)-299(zb)-28(\\363\\273)-299(pr)1(a)27(wie)-299(do)-55(jr)1(z)-1(a-)]TJ 0 -13.549 Td[(\\252yc)27(h)-332(i)-334(ze)-334(spiecz)-1(on)28(yc)28(h)-333(ugor)1(\\363)27(w)-333(p)-27(o)-28(c)-1(i)1(\\241)-28(ga\\252o)-334(n)1(iekiedy)-333(jakb)29(y)-333(z)-334(wyw)27(ar)1(te)-1(go)-333(pi)1(e)-1(ca.)]TJ 27.879 -13.549 Td[(An)28(tek)-312(wyt)1(c)27(hn)1(\\241)28(w)-1(sz)-1(y)-311(galan)1(c)-1(ie)-312(r)1(usz)-1(y\\252)-311(ra\\271no)-312(k)1(u)-312(l)1(as)-1(om)-312(n)1(iedalekim,)-312(al)1(e)-312(s)-1(k)28(oro)]TJ -27.879 -13.549 Td[(si\\246)-294(wysun)1(\\241\\252)-294(z)-293(c)-1(ieni)1(\\363)27(w)-293(na)-293(d)1(rog\\246)-294(zatopi)1(on\\241)-293(w)-293(s)-1(\\252o\\253cu,)-293(j)1(a\\273)-1(e)-293(go)-293(c)-1(iar)1(ki)-293(pr)1(z)-1(es)-1(z\\252y)83(,)-293(i)-293(j)1(u\\273)]TJ 0 -13.549 Td[(sz)-1(ed\\252)-311(jak)1(b)28(y)-311(pr)1(z)-1(ez)-312(wr)1(z)-1(\\241ce)-1(,)-311(b)1(ia\\252a)28(w)27(e)-311(p\\252omienie.)-311(Ze)-1(wl\\363k)1(\\252)-312(k)56(ap)-27(ot\\246,)-311(lec)-1(z)-311(i)-311(tak)-311(k)28(osz)-1(u)1(la)]TJ 0 -13.55 Td[(m)27(u)-386(pr)1(z)-1(y)1(w)-1(i)1(e)-1(ra\\252a)-387(d)1(o)-387(sp)-28(otn)1(ia\\252yc)27(h)-386(b)-27(ok)28(\\363)27(w)-387(n)1(ib)28(y)-386(rozpalon)1(a)-387(blac)28(ha,)-386(z)-1(ez)-1(u)1(\\252)-387(i)-387(b)1(uciary)84(,)]TJ 0 -13.549 Td[(grz\\246)-1(zn\\241c)-333(w)-334(p)1(ias)-1(ku)-332(jakb)28(y)-333(w)-333(t)28(ym)-334(gor)1(\\241c)-1(ym)-333(p)-28(op)1(ie)-1(l)1(e)-1(.)]TJ\nET\nendstream\nendobj\n2247 0 obj <<\n/Type /Page\n/Contents 2248 0 R\n/Resources 2246 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2246 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2251 0 obj <<\n/Length 9961      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(705)]TJ -330.353 -35.866 Td[(P)28(okr)1(\\246)-1(cone)-500(br)1(z)-1(ez)-1(i)1(nki)-499(s)-1(to)-55(j\\241ce)-501(k)56(a)-55(j)-500(n)1(ie)-1(k)56(a)-55(j)-500(n)1(ie)-501(d)1(a)28(w)27(a\\252y)-500(j)1(e)-1(sz)-1(cze)-501(cienia,)-499(\\273)-1(yta)]TJ -27.879 -13.549 Td[(c)27(h)29(yli\\252y)-333(nad)-333(d)1(rog\\241)-333(c)-1(i)1(\\246)-1(\\273arn)1(e)-334(k\\252os)-1(y)-333(i)-333(p)-27(o\\261)-1(l)1(e)-1(p)1(\\252)-1(e)-333(w)-334(\\273arac)27(h)-333(k)1(w)-1(i)1(at)28(y)-334(zwisa\\252)-1(y)-333(p)-27(omdla\\252e.)]TJ 27.879 -13.549 Td[(Upal)1(na)-286(c)-1(ic)28(ho\\261\\242)-287(le)-1(\\273a\\252a)-287(w)-286(p)-28(o)28(wietrzu,)-286(a)-287(n)1(ik)56(a)-56(j)-286(ni)1(e)-287(do)-55(jrza\\252)-287(cz)-1(\\252o)28(wiek)55(a)-286(ni)-286(ptak)56(a,)]TJ -27.879 -13.549 Td[(ni)-277(\\273)-1(ad)1(nego)-278(s)-1(t)28(w)28(orze)-1(n)1(ia)-278(i)-278(n)1(ik)56(a)-56(j)-277(nie)-278(z)-1(ad)1(rga\\252)-278(listek)-278(ni)-277(tra)28(wk)55(a)-277(c)27(ho)-28(\\242b)28(y)-277(na)-56(j)1(marni)1(e)-1(jsza,)]TJ 0 -13.549 Td[(jak)1(b)28(y)-463(w)-463(on\\241)-463(go)-28(d)1(z)-1(i)1(n\\246)-463(P)28(o\\252ud)1(nica)-463(z)-1(w)28(ali\\252a)-463(si\\246)-464(n)1(a)-463(\\261)-1(wiat)-463(i)-462(w)-1(ysysa\\252a)-463(s)-1(p)1(ie)-1(czon)28(ymi)]TJ 0 -13.55 Td[(w)28(argami)-334(wsz)-1(ystk)56(\\241)-333(m)-1(o)-28(c)-333(z)-1(e)-334(ziem)-1(i)-333(omgla\\252ej.)]TJ 27.879 -13.549 Td[(An)28(tek)-305(s)-1(ze)-1(d)1(\\252)-306(coraz)-306(w)28(olni)1(e)-1(j)1(,)-306(r)1(oz)-1(m)28(y\\261)-1(l)1(a)-56(j\\241c)-305(o)-306(ze)-1(b)1(rani)1(u,)-305(\\273)-1(e)-306(r)1(az)-306(w)-306(raz)-305(p)-28(or)1(yw)27(a\\252y)]TJ -27.879 -13.549 Td[(go)-333(z)-1(\\252o\\261c)-1(ie,)-333(to)-333(\\261)-1(miec)27(h)-333(spiera\\252,)-333(to)-333(przejmo)27(w)28(a\\252o)-334(zni)1(e)-1(c)28(h\\246c)-1(enie.)]TJ 27.879 -13.549 Td[({)-377(I)-378(p)-27(orad)1(\\271)-378(co)-377(z)-378(takiemi!)-377(B)-1(ele)-377(s)-1(tr)1(a\\273)-1(n)1(ik)55(a)-377(si\\246)-378(u)1(l\\246kn\\241..)1(.)-377(jakb)29(y)-378(i)1(m)-378(p)1(rz)-1(y)1(k)55(azali)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(ha\\242)-427(n)1(ac)-1(zelnik)28(o)28(w)28(e)-1(go)-426(bu)1(ta,)-426(to)-427(b)28(y)-426(go)-426(i)-426(s)-1(\\252u)1(c)27(hal)1(i.)-426(B)-1(aran)29(y)83(,)-426(ju)1(c)27(h)28(y)84(,)-426(bar)1(an)28(y!)-426({)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(la\\252)-478(z)-479(p)-28(oli)1(to)28(w)27(an)1(ie)-1(m)-479(i)-478(z\\252)-1(o\\261ci\\241.)-479({)-478(Pra)28(wda,)-478(\\273e)-479(k)55(a\\273dem)27(u)-478(\\271le)-1(,)-478(k)56(a\\273)-1(d)1(e)-1(n)-478(wij)1(e)-479(s)-1(i\\246)]TJ 0 -13.55 Td[(kieb)28(y)-416(n)1(adeptan)29(y)-416(pisk)28(orz)-416(i)-416(k)56(a\\273)-1(d)1(e)-1(n)-415(ledwie)-416(ju\\273)-416(z)-416(biedy)-416(zip)1(ie)-1(,)-415(to)-416(gdzie)-416(im)-417(si\\246)-416(ta)]TJ 0 -13.549 Td[(k\\252op)-27(ota\\242)-377(o)-376(takie)-376(s)-1(p)1(ra)28(w)-1(y)84(.)-376(Nar\\363)-28(d)-375(c)-1(iemn)28(y)-376(i)-376(z)-1(ab)1(ie)-1(d)1(z)-1(on)29(y)83(,)-376(to)-376(na)28(w)28(e)-1(t)-376(i)-376(ni)1(e)-377(m)-1(i)1(arku)1(je,)]TJ 0 -13.549 Td[(co)-334(m)28(u)-333(p)-28(ot)1(rz)-1(a)-333({)-333(z)-1(af)1(raso)27(w)28(a\\252)-334(si\\246)-334(wielce)-334(za)-334(wsz)-1(ystkic)28(h)-333(i)-333(s)-1(erd)1(e)-1(cz)-1(n)1(ie)-334(zatrosk)55(a\\252.)]TJ 27.879 -13.549 Td[({)-333(C)-1(z\\252o)28(w)-1(i)1(e)-1(k)-333(to)-333(jak)-333(\\261w)-1(i)1(nia,)-333(n)1(ie)-1(\\252acno)-333(m)27(u)-332(ryj)1(a)-334(u)1(nie\\261)-1(\\242)-333(do)-333(s)-1(\\252o\\253)1(c)-1(a.)]TJ 0 -13.549 Td[(G\\252o)28(wi\\252)-299(si\\246)-299(i)-299(wz)-1(d)1(yc)27(h)1(a\\252,)-299(a)-299(t)28(y)1(la)-299(m)27(u)-298(j)1(e)-1(n)1(o)-299(pr)1(z)-1(ysz)-1(\\252o)-298(z)-300(t)28(y)1(c)27(h)-298(roz)-1(w)28(a\\273a\\253)-299(i)-298(tur)1(bacji,)]TJ -27.879 -13.55 Td[(\\273e)-334(p)-28(o)-27(c)-1(zu\\252,)-333(jak)28(o)-333(i)-333(jem)27(u)-333(j)1(e)-1(st)-333(\\271)-1(l)1(e)-1(,)-333(a)-333(m)-1(o\\273e)-334(n)1(a)27(w)28(e)-1(t)-333(gorzej)-333(ni\\271li)-333(dr)1(ugim.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-333(jeno)-333(t)28(ym)-333(dobr)1(z)-1(e,)-333(kt\\363re)-333(o)-334(n)1(ic)-1(zym)-333(nie)-334(ma)-56(j)1(\\241)-333(p)-28(om)28(y\\261)-1(l)1(e)-1(n)1(ia!)]TJ 0 -13.549 Td[(Mac)28(hn)1(\\241\\252)-466(r)1(\\246)-1(k)56(\\241)-465(i)-465(sz)-1(ed\\252)-465(tak)-465(sro)-28(d)1(z)-1(e)-465(z)-1(ad)1(e)-1(l)1(ib)-28(ero)28(w)28(an)28(y)83(,)-464(\\273)-1(e)-465(om)-1(al)-465(n)1(ie)-465(w)-1(l)1(az)-1(\\252)-465(na)]TJ -27.879 -13.549 Td[(\\233yd)1(a)-334(sz)-1(mac)-1(i)1(arza,)-334(siedz\\241c)-1(ego)-333(p)-28(o)-28(d)-332(z)-1(b)-27(o\\273)-1(em.)]TJ 27.879 -13.549 Td[({)-333(Us)-1(tal)1(i\\261)-1(cie,)-333(ju\\261c)-1(i)1(,)-333(taki)-333(gor\\241c)-334({)-333(ozw)27(a\\252)-333(s)-1(i\\246)-333(pierws)-1(zy)-333(pr)1(z)-1(ysta)-55(j\\241c)-334(n)1(ie)-1(co.)]TJ 0 -13.55 Td[({)-453(T)84(o)-453(j)1(e)-1(st)-453(p)1(ie)-1(c,)-452(to)-453(j)1(e)-1(st)-453(b)-27(oskie)-453(sk)55(ar)1(anie,)-452(a)-453(n)1(ie)-453(gor\\241c)-453({)-452(w)-1(y)1(bu)1(c)27(hn)1(\\241\\252)-453(\\233yd)-452(i)]TJ -27.879 -13.549 Td[(p)-27(o)27(wsta)28(w)-1(szy)83(,)-395(z)-1(a\\252o\\273y\\252)-396(szle)-1(j)1(e)-396(na)-395(s)-1(t)1(a)-1(r)1(y)83(,)-395(p)1(rz)-1(y)1(garbi)1(on)28(y)-395(k)55(ar)1(k,)-395(przyp)1(i\\241\\252)-396(si\\246)-396(d)1(o)-396(tacz)-1(k)1(i)]TJ 0 -13.549 Td[(ni)1(b)28(y)-326(pij)1(a)28(w)-1(k)56(a,)-326(p)-27(c)27(ha)-55(j\\241c)-327(j)1(\\241)-327(p)1(rze)-1(d)-326(sob\\241)-326(z)-327(ni)1(e)-1(zm)-1(i)1(e)-1(rn)29(ym)-327(wysi\\252kiem)-1(,)-326(gd)1(y\\273)-327(b)28(y\\252a)-326(na\\252a-)]TJ 0 -13.549 Td[(do)28(w)28(ana)-343(w)27(ork)56(ami)-343(ga\\252)-1(gan)1(\\363)28(w)-344(i)-344(d)1(rew)-1(n)1(ian)28(y)1(m)-1(i)-343(pu)1(d\\252ami,)-343(a)-344(na)-343(nic)28(h)-343(s)-1(ta\\252)-343(jes)-1(zc)-1(ze)-344(k)28(os)-1(z)]TJ 0 -13.549 Td[(ja)-55(j)-311(i)-311(klat)1(k)55(a)-311(z)-312(k)1(urcz\\246)-1(tami,)-311(za\\261)-312(w)-312(d)1(o)-28(d)1(atku)-311(dr)1(oga)-311(b)28(y\\252a)-311(piasz)-1(czys)-1(ta)-311(i)-311(srogi)-311(up)1(a\\252,)-311(to)]TJ 0 -13.55 Td[(c)27(h)1(o)-28(cia\\273)-271(si\\246)-271(wyd)1(z)-1(iera\\252)-270(z)-1(e)-270(s)-1(i)1(\\252)-271(d)1(o)-271(ostatk)56(a)-270(i)-270(s)-1(zarp)1(a\\252)-1(,)-270(a)-270(co)-270(tro)-28(c)28(h\\246)-271(m)28(usia\\252)-270(o)-28(dp)-27(o)-28(cz)-1(y)1(w)27(a\\242.)]TJ 27.879 -13.549 Td[({)-286(Nuc)27(h)1(im;)-287(t)28(y)-286(s)-1(i)1(\\246)-287(s)-1(p)-27(\\363\\271nisz)-287(na)-286(s)-1(zab)-27(e)-1(s!)-287({)-286(up)-27(omina\\252)-286(s)-1(i\\246)-287(p)1(\\252ac)-1(zliwie.)-286({)-287(Nu)1(c)27(hi)1(m)-1(,)]TJ -27.879 -13.549 Td[(t)28(y)-298(p)-27(c)27(h)1(a)-56(j,)-297(t)28(y)-298(jes)-1(te\\261)-299(mo)-28(cn)28(y)-298(j)1(ak)-298(ku)1(\\253!)-298({)-298(mamrota\\252)-298(z)-1(ac)28(h\\246tliwie.)-298({)-298(Nu)1(c)27(hi)1(m)-1(,)-298(n)29(u,)-298(r)1(az)-1(..)1(.)]TJ 0 -13.549 Td[(dw)28(a...)-354(trzy)83(..)1(.)-355({)-355(i)-355(rzuca\\252)-355(s)-1(i\\246)-355(na)-355(tacz)-1(k)28(\\246)-355(z)-356(k)1(rz)-1(y)1(kiem)-356(r)1(oz)-1(p)1(ac)-1(zy)83(,)-355(p)-27(c)27(h)1(a\\252)-355(j\\241)-355(ki)1(lk)56(ana\\261)-1(cie)]TJ 0 -13.549 Td[(kr)1(ok)28(\\363)27(w)-333(i)-333(z)-1(n)1(o)27(wu)-333(sta)28(w)27(a\\252.)]TJ 27.879 -13.55 Td[(An)28(tek)-333(s)-1(k)1(in\\241\\252)-333(m)27(u)-333(g\\252o)28(w)27(\\241)-333(i)-333(pr)1(z)-1(es)-1(zed\\252,)-333(ale)-334(\\233yd)-333(za)28(w)27(o\\252a\\252)-333(b\\252agaln)1(ie)-1(:)]TJ 0 -13.549 Td[({)-314(P)28(om\\363\\273)-1(cie,)-314(pan)1(ie)-315(gosp)-27(o)-28(dar)1(z)-1(u)1(,)-314(dob)1(rz)-1(e)-314(zap\\252ac)-1(\\246,)-314(j)1(u\\273)-315(n)1(ie)-314(m)-1(og\\246,)-314(ju)1(\\273)-315(ca\\252kiem)]TJ -27.879 -13.549 Td[(ni)1(e)-334(mog\\246)-334({)-334(op)1(ad\\252)-333(na)-333(tacz)-1(ki)1(,)-334(b)1(lad)1(y)-334(k)1(ie)-1(j)-332(trup)-333(i)-333(l)1(e)-1(d)1(w)-1(i)1(e)-334(dysz\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[(An)28(tek)-289(z)-1(a)28(wr\\363)-28(ci\\252)-289(b)-27(e)-1(z)-290(s\\252o)28(w)27(a,)-289(zw)27(ali)1(\\252)-290(n)1(a)-289(tac)-1(zki)-289(k)56(ap)-28(ot\\246)-289(i)-289(bu)1(t)28(y)83(,)-289(u)1(j\\241\\252)-289(je)-290(k)1(rz)-1(epk)28(o)-289(i)]TJ -27.879 -13.549 Td[(p)-27(c)27(ha\\252)-335(tak)-335(w)28(artk)28(o,)-334(ja\\273)-1(e)-335(k)28(o\\252o)-335(z)-1(ap)1(is)-1(zcz)-1(a\\252o)-335(i)-335(ku)1(rz)-336(si\\246)-335(p)-28(o)-27(dni)1(\\363s)-1(\\252.)-335(\\233yd)-334(drept)1(a\\252)-336(p)-27(ob)-27(ok)]TJ 0 -13.549 Td[(\\252api)1(\\241c)-334(p)-28(o)28(wietrze)-334(z)-1(ad)1(ysz)-1(an)1(\\241)-334(p)1(iers)-1(i)1(\\241)-334(i)-333(gad)1(a\\252)-334(zac)27(h\\246tli)1(w)-1(i)1(e)-1(:)]TJ 27.879 -13.55 Td[({)-244(T)27(y)1(lk)28(o)-244(do)-244(lasu,)-244(tam)-244(dob)1(ra)-244(dr)1(oga,)-244(ju)1(\\273)-245(n)1(ie)-1(d)1(alek)28(o,)-244(dam)-244(w)27(am)-244(c)-1(a\\252\\241)-244(dzies)-1(i)1(\\241tk)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-267(Wsad\\271)-267(s)-1(e)-267(j\\241)-267(w)-267(nos!)-267(G\\252u)1(pi,)-267(sto)-55(j\\246)-267(to)-267(o)-267(t)27(w)28(o)-56(j)1(\\241)-267(dzies)-1(i\\241tk)28(\\246!)-267(No,)-267(j)1(ak)-267(to)-267(te)-267(\\233ydy)]TJ -27.879 -13.549 Td[(m)27(y)1(\\261)-1(l\\241,)-333(\\273e)-334(ws)-1(zystk)28(o)-334(n)1(a)-333(\\261)-1(wiec)-1(ie)-333(jeno)-333(z)-1(a)-333(pi)1(e)-1(n)1(i\\241dze)-1(.)]TJ 27.879 -13.549 Td[({)-458(Nie)-459(gn)1(ie)-1(w)28(a)-56(j)1(c)-1(i)1(e)-459(si\\246)-1(,)-458(to)-458(j)1(a)-459(d)1(am)-459(\\261licz)-1(n)1(e)-459(ku)1(ras)-1(k)1(i)-458(la)-458(dzie)-1(ci,)-458(n)1(ie)-1(?)-458(to)-458(m)-1(o\\273e)]TJ -27.879 -13.549 Td[(ni)1(c)-1(i,)-341(ig\\252y)83(,)-341(jak)1(ie)-343(wst\\241\\273)-1(k)1(i?)-342(Nie!)-342(Mo\\273e)-342(b)28(y\\242)-342(bu)1(\\252)-1(k)1(i,)-342(k)56(armelki,)-341(obarzank)1(i)-342(alb)-27(o)-342(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.55 Td[(co?)-429(Ja)-428(mam)-429(wsz)-1(ystk)28(o.)-428(A)-428(mo\\273)-1(e)-429(p)1(an)-428(gosp)-28(o)-27(darz)-428(kup)1(i)-428(pacz)-1(k)28(\\246)-428(t)28(ytun)1(iu)1(?)-429(A)-428(mo\\273)-1(e)]TJ 0 -13.549 Td[(da\\242)-402(kie)-1(l)1(is)-1(zek)-403(f)1(a)-56(j)1(nej)-402(gorza\\252)-1(k)1(i?)-403(Ja)-402(m)-1(am)-402(dla)-402(s)-1(i)1(e)-1(b)1(ie)-1(,)-402(ale)-403(p)-27(o)-402(z)-1(n)1(a)-56(jomo\\261c)-1(i.)-402(Na)-402(m)-1(o)-55(je)]TJ\nET\nendstream\nendobj\n2250 0 obj <<\n/Type /Page\n/Contents 2251 0 R\n/Resources 2249 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2249 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2254 0 obj <<\n/Length 9194      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(706)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(sumie)-1(n)1(ie,)-333(t)27(y)1(lk)28(o)-333(p)-28(o)-333(z)-1(n)1(a)-56(j)1(om)-1(o\\261c)-1(i)1(!)]TJ 27.879 -13.549 Td[(Zak)56(as)-1(\\252a\\252)-287(s)-1(i)1(\\246)-1(,)-287(j)1(a\\273)-1(e)-287(m)27(u)-287(\\261lepie)-287(na)-287(wie)-1(r)1(z)-1(c)28(h)-287(wylaz\\252)-1(y)84(,)-287(a)-287(kiej)-287(An)28(tek)-287(zw)27(oln)1(i\\252)-287(niec)-1(o)]TJ -27.879 -13.549 Td[(kr)1(oku,)-333(c)27(h)29(yc)-1(i)1(\\252)-334(si\\246)-334(tacz)-1(ek)-333(i)-333(w)-1(l)1(\\363k\\252)-334(si\\246)-334(p)-27(ogl\\241d)1(a)-56(j)1(\\241c)-334(na\\253)-333(\\252za)28(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\246dzie)-334(d)1(obr)1(y)-334(u)1(ro)-28(d)1(z)-1(a)-55(j,)-333(\\273yto)-333(ju)1(\\273)-334(s)-1(p)1(ad\\252o)-333({)-334(zacz)-1(\\241\\252)-333(z)-334(in)1(ne)-1(j)-332(b)-28(ec)-1(zki.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(ak)-333(nie)-333(uro)-27(dzi,)-333(te)-1(\\273)-333(m)-1(n)1(ie)-1(j)-333(p)1(\\252ac)-1(\\241.)-333(Za)28(wdy)-333(na)-333(strat\\246)-334(gosp)-27(o)-28(dar)1(z)-1(om.)]TJ 0 -13.55 Td[({)-333(Pi\\246kn)28(y)-333(cz)-1(as)-333(da\\252)-333(P)28(an)-333(B)-1(\\363g,)-333(ziarn)1(o)-333(ju\\273)-333(s)-1(u)1(c)27(he)-333({)-334(k)1(rusz)-1(y)1(\\252)-334(k\\252osy)-333(i)-333(p)-28(o)-55(jad)1(a\\252)-1(.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(t)1(ak)-334(se)-334(f)1(olguj)1(e)-334(P)28(an)-333(Jez)-1(u)1(s)-1(,)-333(co)-333(ju\\273)-333(j\\246c)-1(zm)-1(i)1(ona)-333(pr)1(z)-1(epad\\252y)84(.)]TJ 0 -13.549 Td[(P)28(ogad)1(yw)27(al)1(i)-359(z)-360(w)27(ol)1(na)-359(o)-360(t)28(ym)-359(i)-359(o)27(wym,)-359(a\\273)-360(ze)-1(sz)-1(\\252o)-359(na)-359(ze)-1(b)1(rani)1(e)-1(,)-359(o)-359(kt\\363ry)1(m)-360(\\233yd)]TJ -27.879 -13.549 Td[(wiedzia\\252,)-333(b)-28(o)-333(rze)-1(k)1(\\252)-334(rozgl\\241d)1(a)-56(j\\241c)-333(s)-1(i\\246)-333(trw)28(o\\273)-1(li)1(w)-1(i)1(e)-334(dok)28(o\\252a:)]TJ 27.879 -13.549 Td[({)-401(Wiecie)-1(,)-400(jes)-1(zc)-1(ze)-402(zim\\241)-401(nacz)-1(elni)1(k)-401(z)-1(r)1(obi\\252)-401(k)28(on)28(t)1(rakt)-401(z)-401(jedn)28(y)1(m)-402(ma)-56(j)1(s)-1(tr)1(e)-1(m)-401(na)]TJ -27.879 -13.549 Td[(p)-27(os)-1(ta)28(wienie)-333(s)-1(zk)28(o\\252y)-334(w)-333(Lip)-27(c)-1(ac)28(h.)-333(M\\363)-55(j)-333(z)-1(i)1(\\246)-1(\\242)-334(i)1(m)-334(fak)1(toro)28(w)27(a\\252.)]TJ 27.879 -13.55 Td[({)-333(Je)-1(sz)-1(cze)-334(z)-1(i)1(m)-1(\\241?)-333(Przed)-333(uc)27(h)29(w)27(a\\252\\241?)-334(Co)-333(wy)-333(te)-1(\\273)-334(p)-27(o)28(wiadacie?)]TJ 0 -13.549 Td[({)-497(Mo\\273e)-498(si\\246)-498(mia\\252)-497(p)28(yta\\242)-497(o)-497(p)-28(ozw)27(ol)1(e)-1(n)1(ie)-1(?)-497(Cz)-1(y)-497(t)1(o)-498(on)-496(nie)-497(dziedzic)-498(n)1(a)-498(sw)28(\\363)-56(j)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiat)1(?)]TJ 27.879 -13.549 Td[(An)28(tek)-373(j)1(\\241\\252)-373(rozp)28(yt)28(y)1(w)27(a\\242,)-373(gd)1(y\\273)-373(\\233yd)-372(wie)-1(d)1(z)-1(ia\\252)-372(r\\363\\273ne)-373(cie)-1(k)56(a)28(w)27(e)-373(r)1(z)-1(ec)-1(zy)-373(i)-372(rad)-372(o)-28(d)1(-)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiad)1(a\\252,)-333(z)-1(a\\261)-334(w)-333(k)28(o\\253cu)-333(rze)-1(k)1(\\252)-334(p)-27(ob\\252a\\273liwie:)]TJ 27.879 -13.55 Td[({)-404(T)83(ak)-403(m)27(u)1(s)-1(i)-403(b)28(y\\242.)-404(G)1(os)-1(p)-27(o)-28(dar)1(z)-404(\\273)-1(yj)1(e)-404(z)-405(tej)-403(z)-1(i)1(e)-1(mie)-1(,)-403(ku)1(piec)-404(z)-405(h)1(and)1(lu,)-403(dziedzic)]TJ -27.879 -13.549 Td[(z)-369(folw)28(ark)1(u;)-369(k)1(s)-1(i\\241d)1(z)-369(z)-370(p)1(ara\\014)1(i,)-369(a)-369(u)1(rz\\246)-1(d)1(nik)-368(z)-1(e)-369(wsz)-1(ystkic)28(h.)-368(T)83(ak)-369(m)28(usi)-369(b)28(y\\242)-369(i)-368(tak)-369(j)1(e)-1(st)]TJ 0 -13.549 Td[(dob)1(rze)-1(,)-333(b)-27(o)-333(k)55(a\\273dy)-333(p)-27(otrze)-1(b)1(uj)1(e)-334(tro)-27(c)27(h\\246)-333(\\273)-1(y\\242.)-333(Cz)-1(y)-333(ni)1(e)-1(p)1(ra)28(w)-1(d)1(a?)]TJ 27.879 -13.549 Td[({)-292(Wid)1(z)-1(i)-292(mi)-292(s)-1(i\\246,)-292(c)-1(o)-292(n)1(ie)-293(o)-292(to)-292(idzie,)-293(ab)29(y)-292(jeden)-292(dru)1(giego)-293(\\252u)1(pi\\252)-292(z)-1(e)-292(s)-1(k)28(\\363r)1(y)83(,)-292(a)-292(jeno,)]TJ -27.879 -13.549 Td[(b)28(yc)28(h)-333(k)56(a\\273)-1(d)1(e)-1(n)-333(\\273y\\252)-333(s)-1(p)1(ra)28(w)-1(i)1(e)-1(d)1(liwie,)-333(jak)-333(P)28(an)-333(B\\363g)-333(przyk)56(az)-1(a\\252.)]TJ 27.879 -13.55 Td[({)-333(C)-1(o)-333(n)1(a)-334(to)-333(p)-27(oradzi\\242?)-334(k)56(a\\273)-1(d)1(y)-333(\\273)-1(y)1(je,)-334(j)1(ak)-333(m)-1(o\\273e.)]TJ 0 -13.549 Td[({)-333(Ja)-334(wiem,)-333(\\273)-1(e)-334(k)56(a\\273dy)-333(s)-1(ob)1(ie)-334(r)1(z)-1(epk)28(\\246)-334(skr)1(obie,)-333(ale)-334(i)-333(b)-27(e)-1(z)-334(to)-333(j)1(e)-1(st)-334(\\271le.)]TJ 0 -13.549 Td[(\\233yd)-333(j)1(e)-1(n)1(o)-334(g\\252o)28(w)28(\\241)-334(p)-27(okiw)28(a\\252,)-333(ale)-334(sw)27(o)-55(je)-334(m)28(y\\261)-1(l)1(a\\252.)]TJ 0 -13.549 Td[(Dosz)-1(li)-285(w\\252a\\261)-1(n)1(ie)-286(lasu)-285(i)-286(t)28(w)28(ard)1(s)-1(ze)-1(j)-285(d)1(rogi,)-285(An)28(tek)-286(o)-27(dsta)28(w)-1(i)1(\\252)-286(tacz)-1(ki)1(,)-286(ku)1(pi)1(\\252)-286(za)-286(ca\\252)-1(\\241)]TJ -27.879 -13.549 Td[(z\\252)-1(ot)1(\\363)27(wk)28(\\246)-334(cuk)1(ie)-1(r)1(k)28(\\363)27(w)-333(la)-333(dzie)-1(ci,)-333(a)-333(kiej)-333(m)27(u)-333(\\233y)1(d)-333(j\\241\\252)-333(dzi\\246)-1(k)28(o)28(w)28(a\\242)-1(,)-333(b)1(urk)1(n\\241\\252:)]TJ 27.879 -13.55 Td[({)-333(G\\252up)1(i\\261)-1(,)-333(p)-27(omog\\252e)-1(m)-334(ci,)-333(b)-27(o)-334(mi)-333(si\\246)-334(tak)-333(s)-1(p)-27(o)-28(d)1(oba\\252o.)]TJ 0 -13.549 Td[(Rusz)-1(y)1(\\252)-405(os)-1(t)1(ro)-405(ku)-404(Li)1(p)-28(com)-1(,)-404(b\\252ogi)-404(c)27(h)1(\\252\\363)-28(d)-404(go)-405(ogarn)1(\\241\\252,)-405(r)1(oz)-1(\\252o\\273ys)-1(te)-405(d)1(rze)-1(w)28(a)-405(tak)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252ani)1(a\\252y)-288(d)1(rog\\246,)-288(\\273e)-288(j)1(e)-1(n)1(o)-288(\\261ro)-28(d)1(kiem)-288(widn)1(ia\\252)-288(p)1(as)-288(ni)1(e)-1(b)1(a,)-288(za\\261)-288(p)-27(o)-288(ziem)-1(i)-287(skrzy\\252a)-287(s)-1(i\\246)]TJ 0 -13.549 Td[(rozmigotana)-242(rze)-1(k)56(a)-242(s)-1(\\252o\\253)1(c)-1(a.)-242(B\\363r)-242(b)28(y\\252)-242(stary)-242(i)-242(wyni)1(os)-1(\\252y)84(,)-243(d)1(\\246)-1(b)29(y)83(,)-242(sos)-1(n)29(y)-243(i)-242(b)1(rzoz)-1(y)-242(t\\252o)-28(czy\\252y)]TJ 0 -13.549 Td[(si\\246)-294(g\\246)-1(st\\241,)-294(p)-27(omies)-1(zan\\241)-294(ci\\273b\\241,)-293(a)-294(do\\252em)-294(tul)1(i\\252)-294(si\\246)-294(do)-293(grub)1(ac)27(hn)29(yc)27(h)-293(pn)1(i)-294(d)1(rob)1(n)28(y)-294(n)1(ar\\363)-28(d)]TJ 0 -13.55 Td[(les)-1(zc)-1(zyn)1(,)-379(osik,)-378(ja\\252o)28(w)28(c)-1(\\363)28(w)-379(i)-378(grab)-27(\\363)27(w,)-378(z)-1(a\\261)-379(miejsc)-1(ami)-378(\\261)-1(wierk)28(o)28(w)27(e)-379(zaga)-56(j)1(e)-379(rozp)28(yc)27(h)1(a\\252y)]TJ 0 -13.549 Td[(si\\246)-334(har)1(do,)-333(p)1(n\\241c)-334(si\\246)-334(c)27(h)1(c)-1(i)1(w)-1(i)1(e)-334(ku)-333(s\\252o\\253cu.)]TJ 27.879 -13.549 Td[(Na)-291(d)1(ro)-28(d)1(z)-1(e)-291(j)1(e)-1(sz)-1(cz)-1(e)-291(g\\246s)-1(to)-290(p)-28(o\\252yskiw)28(a\\252y)-291(k)56(a\\252u\\273e)-291(p)-28(o)-290(w)27(cz)-1(or)1(a)-56(jsze)-1(j)-290(bu)1(rzy)-291(i)-290(w)27(ala\\252y)]TJ -27.879 -13.549 Td[(si\\246)-435(p)-28(o\\252amane)-434(w)-1(ierzc)27(h)1(o\\252y)-435(i)-434(ga\\252\\246)-1(zie,)-435(a)-434(k)56(a)-56(j)-434(n)1(ie)-1(k)56(a)-55(j)-435(sm)27(u)1(k\\252a)-435(d)1(rze)-1(win)1(a,)-434(w)-1(yr)1(w)27(an)1(a)-435(z)]TJ 0 -13.549 Td[(k)28(orze)-1(n)1(iami)-498(zale)-1(ga\\252a)-498(w)-498(p)-27(oprzek)-498(kiej)-498(tr)1(up)1(.)-498(Cic)27(h)28(u)1(\\261)-1(k)28(o)-498(b)29(y\\252o,)-498(rze)-1(\\271w)28(o)-498(i)-498(mro)-28(cz)-1(n)1(o,)]TJ 0 -13.549 Td[(pac)28(hn)1(ia\\252o)-484(pl)1(e)-1(\\261ni\\241)-483(a)-484(grzyb)-27(e)-1(m,)-484(d)1(rze)-1(w)28(a)-484(s)-1(to)-55(ja\\252y)-483(b)-28(ez)-484(ruc)28(h)28(u)-483(jakb)28(y)-483(z)-1(ap)1(atrzone)-484(w)]TJ 0 -13.55 Td[(ni)1(e)-1(b)-27(o,)-261(a)-261(p)1(rz)-1(ez)-262(zw)28(arte)-261(k)28(oron)28(y)-261(j)1(e)-1(n)1(o)-261(gdzie)-1(n)1(iegdzie)-262(p)1(rze)-1(d)1(z)-1(i)1(e)-1(ra\\252o)-261(si\\246)-261(s)-1(\\252o\\253ce,)-261(p)-28(e\\252z)-1(a)-55(j\\241c)]TJ 0 -13.549 Td[(ni)1(b)28(y)-368(te)-368(z)-1(\\252o)-28(ciste)-368(pa)-56(j)1(\\241ki)-368(p)-27(o)-368(mc)27(hac)28(h,)-368(p)-27(o)-368(cz)-1(erw)28(on)28(yc)27(h)-367(jag\\363)-27(dk)56(ac)27(h)1(,)-368(rozs)-1(yp)1(an)28(yc)28(h)-368(j)1(ak)]TJ 0 -13.549 Td[(st\\246)-1(\\273a\\252e)-334(krop)1(le)-334(kr)1(wi,)-333(p)-28(o)-333(tra)28(w)28(ac)27(h)-333(b)1(lady)1(c)27(h.)]TJ 27.879 -13.549 Td[(An)28(tk)56(a)-350(t)1(ak)-350(rozebra\\252)-349(c)27(h\\252\\363)-28(d)-349(i)-349(g\\252\\246)-1(b)-27(oki)-349(s)-1(p)-27(ok)28(\\363)-56(j)-349(lasu,)-349(\\273)-1(e)-350(p)1(rzys)-1(i)1(ad\\252s)-1(zy)-349(k)55(a)-55(j\\261)-350(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(em)-310(zadr)1(z)-1(em)-1(a\\252)-309(s)-1(i)1(\\246)-310(ni)1(e)-1(c)27(h)1(c)-1(\\241cy)84(.)-310(P)1(rze)-1(b)1(ud)1(z)-1(i\\252)-309(go)-309(dopi)1(e)-1(r)1(o)-310(k)28(o\\253)1(s)-1(ki)-309(tu)1(p)-28(ot)-309(i)-309(p)1(ars)-1(k)56(a-)]TJ 0 -13.55 Td[(ni)1(e)-1(,)-410(a)-410(do)-56(j)1(rza)27(wsz)-1(y)-410(d)1(z)-1(iedzica)-411(j)1(ad\\241ce)-1(go)-410(k)28(onn)1(o)-411(p)-27(o)-28(dsze)-1(d)1(\\252)-411(do)-410(ni)1(e)-1(go.)-410(Pr)1(z)-1(ywit)1(ali)-410(s)-1(i\\246)]TJ 0 -13.549 Td[(zw)-1(y)1(c)-1(za)-56(j)1(nie,)-333(p)-28(o)-333(s)-1(\\241siedzku.)]TJ\nET\nendstream\nendobj\n2253 0 obj <<\n/Type /Page\n/Contents 2254 0 R\n/Resources 2252 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2252 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2257 0 obj <<\n/Length 9060      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(707)]TJ -330.353 -35.866 Td[({)-333(Ale)-1(\\273)-333(to)-334(p)1(iec)-1(ze)-1(,)-333(co?)-334({)-333(z)-1(agad)1(a\\252)-334(d)1(z)-1(i)1(e)-1(d)1(z)-1(ic)-333(g\\252)-1(aszc)-1(z\\241c)-334(niesp)-28(ok)28(o)-55(jn)1(\\241)-334(kl)1(ac)-1(z)]TJ 0 -13.549 Td[({)-333(A)-334(d)1(opiek)56(a,)-333(z)-1(a)-333(jaki)-333(t)28(yd)1(z)-1(i)1(e)-1(\\253)-333(tr)1(z)-1(a)-333(b)-27(\\246)-1(d)1(z)-1(ie)-333(w)-1(y)1(c)27(ho)-27(dzi\\242)-334(z)-334(k)28(os\\241.)]TJ 0 -13.549 Td[({)-333(Na)-334(M)1(o)-28(dl)1(ic)27(ki)1(e)-1(m)-334(k)1(\\252)-1(ad)1(\\241)-333(ju\\273)-333(\\273)-1(yt)1(o)-334(a\\273)-334(mi\\252o.)]TJ 0 -13.549 Td[({)-333(T)83(am)-334(p)1(iac)27(h)28(y)84(,)-333(ale)-334(lato\\261)-333(w)-1(sz\\246)-1(d)1(y)-334(\\273ni)1(w)27(a)-333(ryc)28(hlejsze)-1(.)]TJ 0 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-346(zap)28(yta\\252)-345(go)-345(o)-346(zebran)1(ie)-346(w)-345(k)56(ance)-1(lar)1(ii,)-345(a)-345(u)1(s)-1(\\252ysz)-1(a)28(ws)-1(zy)-345(ws)-1(zystk)28(o,)-345(jak)]TJ -27.879 -13.55 Td[(si\\246)-334(o)-28(d)1(b)28(yw)28(a\\252)-1(o,)-333(j)1(a\\273)-1(e)-333(o)-28(c)-1(zy)-333(s)-1(ze)-1(r)1(ok)28(o)-334(ot)28(w)28(orzy\\252)-333(z)-1(e)-334(zdu)1(m)-1(i)1(e)-1(n)1(ia.)]TJ 27.879 -13.549 Td[({)-333(I)-334(wy\\261c)-1(i)1(e)-334(s)-1(i)1(\\246)-334(tak)-333(g\\252o\\261)-1(n)1(o,)-334(ot)28(w)28(arcie)-334(o)-333(p)-27(ols)-1(k)56(\\241)-333(s)-1(zk)28(o\\252\\246)-334(up)-27(ominal)1(i?)]TJ 0 -13.549 Td[({)-333(Rz)-1(ek\\252e)-1(m,)-333(pr)1(z)-1(ec)-1(iek)-333(ni)1(e)-334(rob)1(i\\246)-334(z)-334(g\\246b)28(y)-333(c)27(h)1(ole)-1(wy)84(.)]TJ 0 -13.549 Td[({)-333(A)-334(\\273e)-1(\\261cie)-334(si\\246)-334(to)-333(w)27(a\\273yli)-333(z)-334(t)28(ym)-333(wys)-1(t\\241)-27(pi\\242)-333(przy)-333(nacz)-1(elni)1(ku,)-333(n)1(o,)-333(no!)]TJ 0 -13.549 Td[({)-333(W)-333(usta)27(wie)-333(s)-1(toi)-333(o)-333(t)28(ym)-334(j)1(ak)-333(w)27(\\363\\252,)-333(to)-333(pra)28(w)28(o)-334(mia\\252em)-1(.)]TJ 0 -13.549 Td[({)-333(Ale)-334(sk)55(\\241d)-332(w)27(am)-334(p)1(rzys)-1(z\\252o)-333(do)-333(g\\252o)27(wy)-333(up)-27(omina\\242)-333(s)-1(i\\246)-333(o)-334(p)-27(olsk)55(\\241)-333(sz)-1(k)28(o\\252\\246?)]TJ 0 -13.55 Td[({)-333(Sk)56(\\241d!)-333(P)1(rze)-1(cie)-1(\\261ma)-334(P)28(ol)1(aki,)-333(a)-333(nie)-333(Nie)-1(mcy)-334(czy)-334(to)-333(j)1(akie)-334(d)1(rugi)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(w)28(as)-334(tak)-333(nam\\363)28(w)-1(i)1(\\252)-1(?)-333({)-333(p)28(yta\\252)-333(c)-1(isze)-1(j)-333(p)-27(o)-28(c)27(h)29(yla)-56(j)1(\\241c)-334(si\\246)-334(ku)-333(n)1(iem)27(u)1(.)]TJ 0 -13.549 Td[({)-283(Dz)-1(i)1(e)-1(ci)-283(te)-1(\\273)-283(i)-283(b)-28(ez)-284(n)1(aucz)-1(yciela)-283(przyc)28(ho)-28(d)1(z)-1(\\241)-283(do)-283(rozum)28(u)-283({)-283(o)-28(d)1(rz)-1(ek\\252)-283(wykr\\246tni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(\\246,)-333(\\273)-1(e)-334(Ro)-28(c)28(h)-333(nie)-333(na)-333(pr)1(\\363\\273)-1(n)1(o)-334(kr)1(\\246)-1(ci)-333(s)-1(i)1(\\246)-334(p)-28(o)-333(ws)-1(i)1(ac)27(h)-333({)-333(c)-1(i\\241)-27(gn\\241\\252)-333(tak)-333(s)-1(amo.)]TJ 0 -13.549 Td[({)-333(A)-334(w)28(e)-1(sp)-27(\\363\\252)-334(z)-334(p)1(ano)28(wym)-334(stry)1(jasz)-1(ki)1(e)-1(m,)-333(jak)-333(mog\\241,)-334(t)1(ak)-334(n)1(ar\\363)-28(d)-332(naucza)-56(j\\241.)]TJ 0 -13.55 Td[(Wtr)1(\\241c)-1(i\\252)-284(z)-286(n)1(ac)-1(i)1(s)-1(ki)1(e)-1(m,)-285(p)1(atrz\\241c)-286(m)28(u)-284(b)28(ystro)-285(w)-285(o)-28(czy)83(,)-284(dzie)-1(d)1(z)-1(i)1(c)-286(zakr\\246ci\\252)-285(s)-1(i)1(\\246)-286(j)1(ak)28(o\\261)]TJ -27.879 -13.549 Td[(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-1(,)-412(zagadu)1(j\\241c)-413(o)-412(c)-1(zym)-413(in)1(n)28(ym,)-413(al)1(e)-413(An)28(te)-1(k)-412(z)-413(r)1(oz)-1(m)28(ys)-1(\\252em)-413(wrac)-1(a\\252)-412(do)-412(te)-1(j)]TJ 0 -13.549 Td[(spra)28(wy)-479(i)-478(do)-479(r)1(\\363\\273)-1(n)28(y)1(c)27(h)-478(c)27(h\\252op)1(s)-1(k)1(ic)27(h)-478(b)-28(ol)1(\\241c)-1(ze)-1(k,)-478(wyrze)-1(k)56(a)-55(j\\241c)-479(c)-1(i\\246giem)-479(na)-479(ciem)-1(n)1(ot\\246)-479(i)]TJ 0 -13.549 Td[(opu)1(s)-1(zcz)-1(enie,)-333(w)-334(j)1(akim)-334(n)1(ar\\363)-28(d)-333(\\273yj)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-344(A)-343(b)-28(o)-343(nik)28(ogo)-343(nie)-344(s\\252uc)27(h)1(a)-56(j)1(\\241!)-344(Wi)1(e)-1(m)-344(p)1(rze)-1(cie)-1(\\273,)-343(jak)-343(ks)-1(i\\246\\273a)-344(pr)1(ac)-1(u)1(j\\241)-344(n)1(ad)-343(nimi,)]TJ -27.879 -13.55 Td[(jak)-333(n)1(a)28(w)27(o\\252uj)1(\\241)-334(d)1(o)-333(pracy)83(,)-333(al)1(e)-334(to)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(gro)-28(c)28(h)-333(na)-333(\\261c)-1(ian)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Hale)-1(,)-333(k)56(azaniem)-334(t)28(yle)-333(p)-28(omo\\273e)-334(c)-1(o)-333(umar\\252em)27(u)-333(k)56(ad)1(z)-1(id)1(\\252e)-1(m.)]TJ 0 -13.549 Td[({)-301(Wi)1(\\246)-1(c)-301(c)-1(zym\\273)-1(e?)-301(Zm)-1(\\241d)1(rz)-1(a\\252e\\261)-1(,)-300(widz\\246)-1(,)-300(w)-302(k)1(rymin)1(ale)-302({)-301(r)1(z)-1(u)1(c)-1(i)1(\\252)-301(z)-302(p)1(rz)-1(ek)56(\\241s)-1(em,)-301(a\\273)]TJ -27.879 -13.549 Td[(An)28(tek)-333(p)-28(o)-27(c)-1(ze)-1(r)1(w)-1(i)1(e)-1(n)1(ia\\252,)-333(\\252)-1(y)1(pn)1(\\241\\252)-334(\\261le)-1(p)1(iami,)-333(ale)-334(o)-28(d)1(rze)-1(k)1(\\252)-334(sp)-28(ok)28(o)-55(jn)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(A)-334(zm\\241drza\\252e)-1(m,)-333(b)-28(o)-333(wiem)-1(,)-333(\\273e)-334(ws)-1(zystkiem)27(u)-333(z\\252e)-1(m)28(u)-333(winn)1(i)-333(pano)28(wie.)]TJ 0 -13.55 Td[({)-333(Dub)28(y)-333(smalone)-334(p)1(lec)-1(ies)-1(z,)-333(a)-333(c)-1(\\363\\273)-334(ci)-333(to)-333(z)-1(\\252ego)-334(zrobi)1(li?)]TJ 0 -13.549 Td[({)-462(A)-461(to,)-461(\\273)-1(e)-462(za)-462(p)-27(ols)-1(k)1(ic)27(h)-461(c)-1(zas\\363)27(w)-462(t)28(y)1(le)-462(jeno)-462(d)1(bal)1(i)-462(o)-462(n)1(ar\\363)-28(d)1(,)-462(\\273eb)28(y)-462(go)-461(batem)]TJ -27.879 -13.549 Td[(p)-27(op)-28(\\246dza\\242)-318(i)-317(cie)-1(mi\\246\\273)-1(y)1(\\242)-1(,)-317(a)-317(sam)-1(i)-317(se)-318(tak)-317(b)1(alo)28(w)27(ali)1(,)-317(ja\\273e)-318(i)-317(pr)1(z)-1(ebalo)28(w)28(ali)-317(c)-1(a\\252y)-317(n)1(ar\\363)-28(d)1(,)-317(\\273)-1(e)]TJ 0 -13.549 Td[(tera)-333(w)-1(szys)-1(tk)28(o)-333(trza)-333(z)-1(acz)-1(y)1(na\\242)-334(o)-28(d)-332(p)-28(o)-28(cz\\241tku,)-333(n)1(a)-334(n)1(o)27(w)28(o.)]TJ 27.879 -13.549 Td[(Dzie)-1(d)1(z)-1(i)1(c)-1(,)-333(\\273e)-334(to)-333(b)28(y\\252)-333(pr\\246dk)1(i,)-333(oz)-1(gn)1(ie)-1(w)28(a\\252)-333(s)-1(i\\246)-333(i)-334(k)1(rz)-1(y)1(kn\\241\\252:)]TJ 0 -13.55 Td[({)-335(A)-336(w)28(ara)-335(c)-1(i,)-335(c)28(hamie)-336(j)1(e)-1(d)1(e)-1(n)1(,)-336(d)1(o)-336(tego,)-335(c)-1(o)-335(pan)1(o)28(w)-1(i)1(e)-336(rob)1(ili,)-335(pi)1(ln)28(u)1(j)-335(le)-1(p)1(iej)-335(gno)-55(ju)]TJ -27.879 -13.549 Td[(i)-333(wide\\252,)-333(roz)-1(u)1(mie)-1(sz)-1(!)-333(A)-333(j\\246zyk)-333(trzyma)-56(j)-333(za)-334(z\\246)-1(b)1(am)-1(i)1(,)-333(b)28(y)-333(c)-1(i)-333(go)-333(nie)-333(przyci\\246li!)]TJ 27.879 -13.549 Td[(\\221wisn\\241\\252)-333(sz)-1(p)1(ic)-1(r)1(ut\\241)-333(i)-333(p)-28(ogn)1(a\\252,)-333(ja\\273e)-334(w)-334(kl)1(ac)-1(zy)-333(z)-1(agra\\252a)-333(w)28(\\241troba.)]TJ 0 -13.549 Td[(An)28(tek)-333(z)-1(a\\261)-333(p)-28(osz)-1(ed\\252)-333(w)-334(sw)27(o)-55(j\\241)-333(s)-1(t)1(ron\\246,)-333(a)-334(r)1(\\363)28(w)-1(n)1(ie\\273)-334(z)-1(\\252y)-333(i)-333(wz)-1(b)1(urzon)28(y)84(.)]TJ 0 -13.549 Td[({)-383(P)1(s)-1(ie)-383(n)1(as)-1(ieni)1(e)-1(!)-382({)-383(mam)-1(r)1(ota\\252)-383(gni)1(e)-1(wni)1(e)-1(.)-382({)-383(Ja\\261)-1(n)1(ie)-383(pan)29(y)83(,)-382(psie)-1(k)1(rwie)-1(!)-382(Jak)-382(m)27(u)]TJ -27.879 -13.549 Td[(b)28(y\\252o)-439(p)-27(otrza)-440(c)28(h\\252opskiej)-439(\\252aski,)-439(to)-439(z)-440(k)56(a\\273)-1(d)1(ym)-439(s)-1(i\\246)-439(brata\\252.)-439(\\221)1(c)-1(ierw)28(o!)-439(Sam)-439(niew)27(ar)1(t)-439(i)]TJ 0 -13.55 Td[(ws)-1(zy)-426(p)1(iec)-1(zonej,)-425(a)-426(d)1(rugi)1(c)27(h)-425(pr)1(z)-1(ez)-1(yw)28(a)-426(o)-27(d)-426(c)28(ham\\363)28(w)-1(!)-425({)-426(sro\\273y\\252)-426(si\\246)-426(k)28(opi)1(\\241c)-426(z)-1(e)-426(z\\252o\\261)-1(ci)]TJ 0 -13.549 Td[(m)27(u)1(c)27(h)1(ary)-333(s)-1(to)-55(j\\241ce)-334(m)28(u)-333(na)-333(dr)1(o)-28(dze)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-447(wyc)27(h)1(o)-28(dzi\\252)-446(z)-447(lasu)-446(na)-446(top)-27(olo)28(w)27(\\241,)-446(gd)1(y)-446(naraz)-446(p)-28(os\\252ys)-1(za\\252)-446(jakb)28(y)-446(zna)-55(jome)]TJ -27.879 -13.549 Td[(g\\252os)-1(y)84(,)-279(rozejrza\\252)-279(s)-1(i\\246)-279(u)28(w)28(a\\273)-1(n)1(ie)-1(:)-278(p)-28(o)-28(d)-278(krzy\\273e)-1(m)-279(tul)1(i\\252a)-279(s)-1(i\\246)-279(w)-279(c)-1(ieniu)-278(br)1(z)-1(\\363ze)-1(k)-279(j)1(ak)56(a\\261)-280(b)1(ryk)56(a)]TJ 0 -13.549 Td[(zakur)1(z)-1(on)1(a,)-334(za\\261)-334(n)1(a)-334(kr)1(a)-56(j)1(u)-333(b)-28(or)1(u)-333(s)-1(t)1(a\\252)-334(Jasio)-333(organi)1(s)-1(t\\363)28(w)-334(z)-333(Jagusi\\241.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(etar\\252)-413(o)-28(czy)83(,)-413(ca\\252kiem)-414(p)-27(ew)-1(n)29(y)83(,)-412(jak)28(o)-413(m)27(u)-412(s)-1(i)1(\\246)-414(p)1(rzywidzia\\252o,)-413(ale)-413(ni)1(e)-1(,)-413(sto)-55(jali)]TJ -27.879 -13.549 Td[(zale)-1(d)1(wie)-244(o)-243(ki)1(lk)56(ana\\261c)-1(ie)-243(krok)28(\\363)28(w)-243(o)-28(d)-243(n)1(iego,)-243(z)-1(ap)1(atrze)-1(n)1(i)-243(w)-244(siebie)-243(i)-243(dziwni)1(e)-244(roze\\261)-1(miani)1(.)]TJ\nET\nendstream\nendobj\n2256 0 obj <<\n/Type /Page\n/Contents 2257 0 R\n/Resources 2255 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2255 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2260 0 obj <<\n/Length 9341      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(708)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Zdziwi\\252)-334(s)-1(i\\246)-334(niema\\252)-1(o)-334(nasta)28(wia)-56(j)1(\\241c)-335(pr)1(z)-1(y)-334(t)28(ym)-334(usz)-1(y)84(,)-334(ale)-335(c)27(h)1(o)-28(cia\\273)-335(s\\252)-1(y)1(s)-1(za\\252)-335(g\\252osy)83(,)]TJ -27.879 -13.549 Td[(ni)1(e)-334(m\\363g\\252)-334(j)1(e)-1(d)1(nak)-333(z)-1(\\252o\\273y\\242)-334(i)-333(wymiark)28(o)28(w)28(a\\242)-334(ani)-333(j)1(e)-1(d)1(nego)-334(s\\252o)27(w)28(a.)]TJ 27.879 -13.549 Td[({)-232(W)83(r)1(ac)-1(a\\252a)-232(z)-233(b)-27(oru)1(,)-233(on)-231(jec)27(ha\\252)-232(i)-232(sp)-28(otk)56(ali)-232(si\\246)-233({)-232(p)-27(om)27(y\\261la\\252,)-232(ale)-233(w)-232(t)28(ym)-233(o)-27(c)-1(zymgnie-)]TJ -27.879 -13.549 Td[(ni)1(u)-367(uk)56(\\241si\\252o)-368(go)-367(cos)-1(ik)-367(w)-367(s)-1(erce)-1(,)-367(sp)-28(os\\246)-1(p)1(nia\\252)-367(i)-367(g\\252uc)28(he,)-368(k)28(ol)1(\\241c)-1(e)-368(p)-27(o)-28(d)1(e)-1(j)1(rze)-1(n)1(ie)-368(zatarga\\252o)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-334(w)27(e)-333(w)27(\\241tp)1(iac)27(h)1(.)]TJ 27.879 -13.55 Td[({)-403(Nic)-404(d)1(ru)1(gie)-1(go,)-403(j)1(e)-1(n)1(o)-403(s)-1(i\\246)-403(z)-1(m\\363)28(wili!)-403({)-403(lec)-1(z)-403(do)-55(jrza)28(w)-1(szy)-403(Jas)-1(io)28(w)28(e)-404(ksi\\246\\273)-1(e)-403(oble-)]TJ -27.879 -13.549 Td[(cz)-1(enie)-394(i)-393(jego)-394(t)28(w)28(arz)-394(tak)56(\\241)-394(j)1(ak)55(\\241\\261)-394(\\261wi\\246t\\241,)-394(u)1(s)-1(p)-27(ok)28(oi\\252)-394(si\\246)-394(o)-28(d)1(e)-1(tc)28(hn)1(\\241)27(wsz)-1(y)-393(z)-394(ni)1(e)-1(zm)-1(i)1(e)-1(rn)1(\\241)]TJ 0 -13.549 Td[(ul)1(g\\241,)-285(nie)-286(p)-27(oredzi\\252)-285(s)-1(e)-285(je)-1(n)1(o)-285(w)-1(y)1(roz)-1(u)1(mie)-1(\\242)-285(Jagusi,)-285(dlacze)-1(go)-285(s)-1(i\\246)-285(tak)-285(b)28(y\\252a)-285(w)-1(y)1(s)-1(tr)1(oi\\252a)-286(d)1(o)]TJ 0 -13.549 Td[(b)-27(oru?)-299(i)-298(c)-1(zem)27(u)-298(tak)-299(mo)-28(d)1(rz)-1(a\\252y)-298(jej)-299(\\261lepie)-299(r)1(oz)-1(iskrzone?)-299(cz)-1(em)27(u)-298(jej)-299(t)1(ak)-299(lata\\252y)-298(c)-1(ze)-1(r)1(w)27(o-)]TJ 0 -13.549 Td[(ne)-313(w)27(ar)1(gi,)-313(a)-313(bi)1(\\252o)-314(o)-27(d)-313(ni)1(e)-1(j)-312(tak)55(\\241)-313(r)1(ado\\261c)-1(i\\241?)-313(Ob)1(ie)-1(ga\\252)-313(j)1(\\241)-313(w)-1(i)1(lc)-1(zymi,)-313(g\\252o)-28(d)1(n)28(ymi)-313(\\261)-1(l)1(e)-1(p)1(iam)-1(i)1(,)]TJ 0 -13.549 Td[(gdy)-298(wypi)1(na)-56(j)1(\\241c)-299(s)-1(i\\246)-299(n)1(aprz\\363)-28(d)-298(wz)-1(d)1(\\246)-1(t)28(ymi)-299(p)1(ie)-1(r)1(s)-1(i)1(am)-1(i)-298(p)-28(o)-27(da)28(w)27(a\\252a)-299(k)1(r\\363bk)28(\\246,)-299(z)-299(kt\\363r)1(e)-1(j)-298(Jasio)]TJ 0 -13.55 Td[(wybi)1(e)-1(r)1(a\\252)-334(j)1(ago)-28(dy)84(,)-333(s)-1(am)-334(j)1(ad\\252)-333(i)-333(jej)-333(wt)28(yk)56(a\\252)-334(d)1(o)-334(u)1(s)-1(t.)1(..)]TJ 27.879 -13.549 Td[({)-346(P)1(ra)28(w)-1(i)1(e)-347(k)1(s)-1(i\\241d)1(z)-1(,)-345(a)-346(c)27(h)1(c)-1(e)-346(m)27(u)-345(s)-1(i)1(\\246)-347(zaba)28(wia\\242)-346(kiej)-346(d)1(z)-1(i)1(e)-1(ciak)-346({)-346(sz)-1(epn)1(\\241\\252)-346(z)-346(p)-28(oli)1(to-)]TJ -27.879 -13.549 Td[(w)28(aniem)-296(i)-296(w)28(artk)28(o)-296(r)1(usz)-1(y\\252)-295(ku)-295(domo)27(wi)-295(m)-1(iar)1(kuj)1(\\241c)-296(s)-1(ob)1(ie)-296(p)-28(o)-295(s)-1(\\252o\\253)1(c)-1(u,)-295(jak)28(o)-295(m)27(u)1(s)-1(ia\\252o)-296(j)1(u\\273)]TJ 0 -13.549 Td[(b)28(y\\242)-333(k)28(ole)-334(p)-27(o)-28(dwiecz)-1(ork)56(a.)]TJ 27.879 -13.549 Td[({)-326(P)28(\\363ki)-326(nie)-327(t)1(kn\\246)-327(tej)-326(z)-1(ad)1(ry)84(,)-327(p)-27(\\363t)28(y)-326(i)-327(n)1(ie)-327(b)-27(oli!)-326({)-326(m)27(y\\261la\\252)-327(o)-326(Jagusi.)-326({)-327(A)-326(jak)-326(to)-326(w)]TJ -27.879 -13.55 Td[(ni)1(e)-1(go)-333(\\252ak)28(om)-1(i)1(e)-334(patr)1(z)-1(a\\252a;)-333(dziw)-333(go)-334(n)1(ie)-334(zjad)1(\\252a.)-334(A)-333(ni)1(e)-1(c)28(h)28(ta,)-333(a)-334(n)1(iec)27(h)28(ta.)1(..)]TJ 27.879 -13.549 Td[(Pr)1(\\363\\273)-1(n)1(o)-334(si\\246)-334(j)1(e)-1(d)1(nak)-333(otr)1(z)-1(\\241c)27(h)1(a\\252,)-333(z)-1(ad)1(ra)-333(i)-333(tak)-333(dolega\\252a)-334(m)28(u)-333(do)-333(\\273)-1(y)1(w)27(ego.)]TJ 0 -13.549 Td[({)-363(A)-363(o)-28(de)-363(m)-1(n)1(ie)-364(to)-363(u)1(c)-1(iek)56(a)-56(j)-363(k)1(ie)-1(b)29(y)-364(o)-27(d)-363(tej)-363(z)-1(ar)1(az)-1(y)84(.)-363(Ju\\261c)-1(i)1(,)-363(no)28(w)27(e)-363(s)-1(i)1(tk)28(o)-364(n)1(a)-363(k)28(o\\252)-1(ek,)]TJ -27.879 -13.549 Td[(sz)-1(cz)-1(\\246\\261)-1(ciem)-1(,)-281(c)-1(o)-282(z)-282(Jas)-1(i)1(e)-1(m)-282(nic)-282(ni)1(e)-283(wsk)28(\\363ra)-282({)-282(rozj\\241tr)1(z)-1(a\\252)-282(si\\246)-282(c)-1(oraz)-282(bar)1(z)-1(ej)-282({)-282(p)-27(oni)1(e)-1(kt)1(\\363ra)]TJ 0 -13.549 Td[(to)-333(jak)-333(suk)56(a,)-333(p)-28(ol)1(e)-1(ci)-333(z)-1(a)-333(k)56(a\\273)-1(d)1(ym)-1(,)-333(k)1(to)-334(zagwiz)-1(d)1(a.)]TJ 27.879 -13.55 Td[(Lec)-1(ia\\252)-403(pr\\246dk)28(o,)-403(ale)-404(n)1(ie)-404(p)-28(or)1(e)-1(d)1(z)-1(i)1(\\252)-404(z)-1(gu)1(bi\\242)-404(t)28(y)1(c)27(h)-403(gorzkic)27(h)-403(wsp)-28(omin)1(k)28(\\363)27(w,)-403(jacy\\261)]TJ -27.879 -13.549 Td[(lu)1(dzie)-449(go)-449(w)-1(y)1(m)-1(ij)1(ali,)-448(ani)-449(sp)-27(os)-1(tr)1(z)-1(eg\\252)-449(k)28(ogo;)-449(usp)-27(ok)28(oi\\252)-449(s)-1(i)1(\\246)-450(d)1(opiero)-449(p)-27(o)-28(d)-448(ws)-1(i\\241,)-448(gdy\\273)]TJ 0 -13.549 Td[(do)-55(jr)1(z)-1(a\\252)-291(organ)1(i\\261c)-1(in)1(\\246)-292(siedz\\241c)-1(\\241)-291(n)1(ad)-291(ro)28(w)28(e)-1(m)-291(z)-292(p)-27(o\\253)1(c)-1(zo)-28(c)27(h)1(\\241)-291(w)-292(r)1(\\246)-1(k)1(u,)-291(n)1(a)-56(jm\\252o)-28(d)1(s)-1(zy)-291(tarza\\252)]TJ 0 -13.549 Td[(si\\246)-444(pr)1(z)-1(ed)-444(n)1(i\\241)-443(w)-444(piasku)1(,)-444(a)-443(s)-1(tad)1(k)28(o)-444(p)-27(o)-28(dsku)1(ban)28(yc)28(h)-443(g\\246)-1(si)-444(sz)-1(czypa\\252o)-444(t)1(ra)28(w)27(\\246)-444(mi\\246dzy)]TJ 0 -13.549 Td[(top)-27(olami.)]TJ 27.879 -13.55 Td[({)-278(A\\273)-278(tu)1(ta)-56(j)-277(p)1(a)-1(n)1(i)-278(za)28(w)27(\\246dr)1(o)27(w)28(a\\252a)-278(z)-278(g\\246s)-1(iami?)-278({)-277(przystan\\241\\252)-277(ob)-28(ciera)-56(j)1(\\241c)-278(s)-1(p)-27(otni)1(a\\252)-1(\\241)]TJ -27.879 -13.549 Td[(t)28(w)27(ar)1(z)-1(.)]TJ 27.879 -13.549 Td[({)-333(Wysz)-1(\\252am)-334(n)1(apr)1(z)-1(ec)-1(i)1(w)-334(Jasia,)-333(t)28(ylk)28(o)-333(go)-334(p)1(atrze)-1(\\242,)-333(jak)-333(nad)1(jedzie.)]TJ 0 -13.549 Td[({)-333(Dy\\242)-334(in)1(o)-333(c)-1(o)-333(wym)-1(i)1(n\\241\\252e)-1(m)-333(go)-334(p)-27(o)-28(d)-333(l)1(as)-1(em)-1(.)]TJ 0 -13.549 Td[({)-334(Jasia!)-334(to)-333(ju\\273)-334(jedzie?)-334({)-334(z)-1(ak)1(rz)-1(y)1(c)-1(za\\252a)-334(z)-1(r)1(yw)27(a)-55(j\\241c)-334(s)-1(i)1(\\246)-335(n)1(a)-334(nogi)1(.)-334({)-334(Pi)1(lusie,)-334(pi)1(lu,)]TJ -27.879 -13.55 Td[(pi)1(lu)-233(a)-234(gd)1(z)-1(i)1(e)-1(,)-233(s)-1(zk)28(o)-28(d)1(niki)1(,)-234(a)-233(gdzie?)-234({)-233(w)-1(r)1(z)-1(asn\\246\\252a,)-234(b)-27(o)-233(g\\246)-1(si)-234(j)1(ak)28(o\\261)-234(ni)1(e)-1(sp)-28(o)-28(d)1(z)-1(i)1(anie)-234(d)1(opad)1(\\252y)]TJ 0 -13.549 Td[(do)-333(\\273yta)-333(s)-1(to)-55(j\\241ce)-1(go)-333(nad)-333(d)1(rog\\241)-333(i)-333(wz)-1(ien)28(y)-333(je)-333(z)-1(a)-55(jad)1(le)-334(m\\252)-1(\\363)-27(c)-1(i\\242.)]TJ 27.879 -13.549 Td[({)-333(B)-1(r)1(yk)56(a)-334(sta\\252a)-333(p)-28(o)-28(d)-332(\\014gur)1(\\241,)-333(z)-1(a\\261)-334(on)-333(r)1(oz)-1(ma)28(wia\\252)-334(se)-334(z)-334(j)1(ak)55(\\241\\261)-333(k)28(obiet\\241.)]TJ 0 -13.549 Td[({)-272(P)28(ew)-1(n)1(ie)-272(s)-1(p)-27(otk)56(a\\252)-273(zna)-55(jom\\241)-272(i)-272(p)-28(ogad)1(a)-56(j)1(\\241.)-272(T)83(o)-272(on)-272(tu)-271(z)-1(araz)-272(nad)1(jedzie.)-272(P)28(o)-28(cz)-1(ciw)27(a)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252op)-28(cz)-1(y)1(na,)-414(on)-414(na)28(w)27(et)-415(ob)-27(ce)-1(go)-414(psa)-415(n)1(ie)-415(przepu\\261ci)-415(b)-27(e)-1(z)-415(p)-27(og\\252ask)55(an)1(ia.)-414(A)-415(kt\\363r)1(\\241\\273)-415(to)]TJ 0 -13.549 Td[(sp)-28(otk)56(a\\252?)]TJ 27.879 -13.55 Td[({)-495(Nie)-496(roze)-1(zna\\252em)-496(dob)1(rze)-1(;)-495(ale)-496(zda\\252o)-495(m)-1(i)-495(si\\246,)-496(co)-496(J)1(agusi\\246)-496({)-496(a)-495(widz\\241c,)-496(\\273e)]TJ -27.879 -13.549 Td[(stara)-271(skrzywi\\252a)-271(s)-1(i\\246)-271(jak)28(o\\261)-271(ni)1(e)-1(c)28(h\\246tnie,)-271(dor)1(z)-1(u)1(c)-1(i)1(\\252)-272(ze)-271(z)-1(n)1(ac)-1(z\\241c)-1(ym)-271(pr)1(z)-1(e\\261)-1(miec)27(h)1(e)-1(m:)-271({)-271(Nie)]TJ 0 -13.549 Td[(roze)-1(zna\\252em,)-334(b)-27(o)-333(z)-1(es)-1(zli)-333(mi)-333(z)-334(o)-28(cz)-1(\\363)28(w)-334(k)56(a)-55(j\\261)-334(w)-333(z)-1(aga)-55(je...)-333(p)-27(e)-1(wni)1(kiem)-334(pr)1(z)-1(ed)-333(gor\\241ce)-1(m...)]TJ 27.879 -13.549 Td[({)-333(\\221wi\\246c)-1(i)-333(P)28(a\\253)1(s)-1(cy!)-333(co)-334(te\\273)-334(w)28(am)-334(w)-334(g\\252o)28(wie,)-334(J)1(as)-1(io)-333(zada)28(w)27(a\\252b)28(y)-333(si\\246)-334(z)-334(t)1(ak)55(\\241.)1(..)]TJ 0 -13.549 Td[({)-333(T)83(ak)56(a)-334(d)1(obra)-333(j)1(ak)-334(d)1(ru)1(gie)-1(,)-333(a)-333(mo\\273)-1(e)-334(i)-333(lepsza!)-334({)-333(rozgni)1(e)-1(w)28(a\\252)-334(si\\246)-334(sro)-28(d)1(z)-1(e.)]TJ 0 -13.55 Td[(Or)1(gani\\261c)-1(i)1(na)-290(c)27(h)28(yb)-27(cie)-1(j)-289(z)-1(aru)1(c)27(h)1(a\\252)-1(a)-290(d)1(rutami)-290(wpatr)1(uj)1(\\241c)-291(s)-1(i)1(\\246)-291(jak)28(o\\261)-291(p)1(iln)1(ie)-291(w)-290(p)-28(o\\253)1(-)]TJ -27.879 -13.549 Td[(cz)-1(o)-28(c)28(h\\246.)-333({)-332(A)-332(\\273)-1(eb)28(y)-332(c)-1(i)-332(oz\\363r)-332(o)-28(dj)1(\\246)-1(\\252o,)-332(pl)1(e)-1(ciuc)28(h)28(u)-332(jeden)-332({)-332(m)27(y\\261la\\252a)-332(g)-1(\\252\\246b)-27(ok)28(o)-333(d)1(otkni)1(\\246)-1(ta)-332({)]TJ\nET\nendstream\nendobj\n2259 0 obj <<\n/Type /Page\n/Contents 2260 0 R\n/Resources 2258 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2245 0 R\n>> endobj\n2258 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2263 0 obj <<\n/Length 9367      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(709)]TJ -358.232 -35.866 Td[(Jasio)-390(mia\\252b)28(y)-390(z)-390(tak)56(\\241)-390(dziew)27(\\241..)1(.)-390(pr)1(a)28(w)-1(i)1(e)-391(j)1(u\\273)-390(ksi\\241dz...)-389({)-390(Ale)-390(s)-1(i\\246)-390(jej)-389(s)-1(p)-27(om)-1(n)1(ia\\252y)-390(r)1(\\363\\273)-1(-)]TJ 0 -13.549 Td[(ne)-329(ks)-1(i)1(\\246)-1(\\273o)27(wskie)-330(h)1(is)-1(t)1(orie)-330(i)-329(ogarn)1(\\241\\252)-330(j)1(\\241)-330(n)1(ie)-1(p)-27(ok)28(\\363)-56(j)1(,)-329(p)-28(oskrob)1(a\\252a)-330(si\\246)-330(d)1(rutem)-330(p)-27(o)-330(g\\252o)28(wie,)]TJ 0 -13.549 Td[(p)-27(os)-1(tan)1(a)28(w)-1(ia)-55(j\\241c)-431(r)1(oz)-1(p)28(y)1(ta\\242)-432(si\\246)-431(obsze)-1(rn)1(iej,)-430(le)-1(cz)-431(An)28(tk)56(a)-431(j)1(u\\273)-431(nie)-431(b)28(y)1(\\252o,)-431(nat)1(om)-1(iast)-431(n)1(a)]TJ 0 -13.549 Td[(dr)1(o)-28(dze)-312(o)-27(d)-311(lasu)-311(p)-27(o)-28(d)1(ni\\363s\\252)-311(s)-1(i\\246)-311(tuman)-310(kurza)28(wy)-311(i)-311(to)-28(cz)-1(y)1(\\252)-312(si\\246)-311(ku)-311(n)1(iej)-311(coraz)-312(p)1(r\\246dze)-1(j)1(,)-311(a)]TJ 0 -13.549 Td[(ni)1(e)-334(wys)-1(z\\252o)-334(i)-333(Zd)1(ro)28(w)27(a\\261,)-333(ju)1(\\273)-334(Jasio)-334(\\261cis)-1(k)56(a\\252)-333(j\\241)-333(z)-334(c)-1(a\\252ej)-333(mo)-28(c)-1(y)-333(i)-333(sk)56(am)-1(la\\252)-333(se)-1(rd)1(e)-1(cz)-1(n)1(ie:)]TJ 27.879 -13.55 Td[({)-333(Mam)27(u)1(s)-1(i)1(u)-333(k)28(o)-28(c)27(h)1(ana!)-333(Mam)28(usiu!)]TJ 0 -13.549 Td[({)-349(\\221)1(w)-1(i)1(\\246)-1(ci)-349(P)28(a\\253)1(s)-1(cy!)-348(Ady)-348(m)-1(n)1(ie)-349(ud)1(usis)-1(z!)-349(P)1(u\\261\\242)-1(,)-348(s)-1(moku)1(,)-349(p)1(u\\261\\242)-1(!)-348({)-349(i)-349(ki)1(e)-1(d)1(y)-349(p)1(u\\261c)-1(i\\252,)]TJ -27.879 -13.549 Td[(sam)-1(a)-333(wz)-1(i\\246\\252a)-334(go)-333(\\261c)-1(isk)56(a\\242)-1(,)-333(ca\\252o)27(w)28(a\\242)-334(a)-333(w)27(o)-27(dzi\\242)-334(p)-27(o)-334(n)1(im)-334(r)1(oz)-1(k)28(o)-28(c)28(han)28(y)1(m)-1(i)-333(o)-28(czym)-1(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(ci\\246)-334(wyc)27(h)29(udzili)1(,)-333(kru)1(s)-1(zyno!)-333(T)83(ak)1(i\\261)-334(bl)1(ady)84(,)-334(syn)1(ac)-1(zku!)-333(T)83(ak)1(i\\261)-334(mize)-1(rn)29(y!)]TJ 0 -13.549 Td[({)-488(Roso\\252y)-488(na)-487(\\261)-1(wi\\246c)-1(on)1(e)-1(j)-487(w)27(o)-27(dzie)-488(nie)-488(pas\\241!)-488({)-487(\\261)-1(mia\\252)-488(si\\246)-488(p)-28(oh)29(u\\261tuj)1(\\241c)-489(b)1(rata,)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(n)-333(j)1(a\\273)-1(e)-334(p)1(isz)-1(cz)-1(a\\252)-333(z)-334(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.55 Td[({)-310(Ni)1(e)-311(b)-27(\\363)-55(j)-310(si\\246,)-310(j)1(u\\273)-310(ja)-309(c)-1(i)1(\\246)-311(o)-27(dp)1(as)-1(\\246)-310({)-310(sz)-1(ept)1(a\\252)-1(a)-309(g\\252adz\\241c)-310(go)-310(pi)1(e)-1(\\261c)-1(iwie)-310(p)-27(o)-310(t)28(w)28(arzy)83(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(j)1(e)-1(d)1(\\271)-1(m)28(y)83(,)-333(mam)27(u)1(s)-1(i)1(u,)-333(pr)1(\\246)-1(d)1(z)-1(ej)-333(b)-27(\\246)-1(d)1(z)-1(iem)27(y)-333(w)-333(dom)27(u)]TJ 0 -13.549 Td[({)-393(A)-394(g\\246s)-1(i)1(?)-394(\\221)1(w)-1(i)1(\\246)-1(ci)-394(P)29(a\\253sc)-1(y)84(,)-393(z)-1(n)1(o)27(wu)-393(w)-393(s)-1(zk)28(o)-28(dzie!)-393(Sk)28(o)-28(cz)-1(y)1(\\252)-394(wygan)1(ia\\242)-1(,)-393(gd)1(y\\273)-394(si\\246)]TJ -27.879 -13.549 Td[(b)28(y\\252y)-324(d)1(orw)28(a\\252y)-324(\\273)-1(y)1(ta)-324(\\252)-1(u)1(s)-1(k)56(a)-55(j\\241c)-324(k\\252os)-1(y)-324(a\\273)-324(mi\\252o,)-324(p)-28(ot)1(e)-1(m)-324(brat)1(a)-324(us)-1(ad)1(z)-1(i)1(\\252)-324(w)-325(b)1(ryce)-325(i)-324(zap)-27(\\246)-1(-)]TJ 0 -13.549 Td[(dza)-56(j)1(\\241c)-334(p)1(rz)-1(ed)-333(sob\\241)-333(g\\246)-1(si)-333(s)-1(ze)-1(d)1(\\252)-334(\\261ro)-28(d)1(kiem)-334(d)1(rogi)-333(rozp)-28(o)28(wiad)1(a)-56(j\\241c)-333(o)-334(p)-27(o)-28(d)1(r\\363\\273y)83(.)]TJ 27.879 -13.55 Td[({)-333(P)28(atrz)-333(no,)-333(jak)-333(si\\246)-334(b)-27(\\246)-1(b)-27(en)-333(umaz)-1(a\\252!)-333({)-333(z)-1(au)29(w)27(a\\273y\\252a)-334(wsk)55(azuj)1(\\241c)-334(n)1(a)-334(ma\\252e)-1(go.)]TJ 0 -13.549 Td[({)-247(Dob)1(ra\\252)-247(si\\246)-247(do)-246(m)-1(oi)1(c)27(h)-246(jag\\363)-28(d)1(.)-247(J)1(e)-1(d)1(z)-1(,)-246(Stasiu,)-246(jedz!)-247(S)1(p)-27(otk)55(a\\252em)-247(w)-247(les)-1(ie)-247(Jagu)1(s)-1(i)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(wraca\\252a)-334(z)-334(j)1(ag\\363)-28(d)-333(i)-333(tro)-27(c)27(h\\246)-333(m)-1(i)-333(u)1(s)-1(yp)1(a\\252a...)-333({)-333(z)-1(r)1(umie)-1(n)1(i\\252)-333(s)-1(i\\246)-333(w)-1(st)28(yd)1(liwie.)]TJ 27.879 -13.549 Td[({)-333(W\\252a\\261)-1(n)1(ie)-334(p)1(rze)-1(d)-333(c)27(h)29(w)-1(i)1(l\\241)-333(m)-1(\\363)28(wi\\252)-333(m)-1(i)-333(Boryn)1(a,)-333(\\273)-1(e)-334(w)28(as)-334(sp)-28(otk)56(a\\252..)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(wid)1(z)-1(ia\\252em)-334(go,)-333(m)27(u)1(s)-1(i)1(a\\252)-334(gd)1(z)-1(ie\\261)-334(b)-27(okiem)-334(p)1(rz)-1(ec)27(h)1(o)-28(dzi\\242.)]TJ 0 -13.55 Td[({)-345(Mo)-56(j)1(e)-346(dziec)27(k)28(o,)-345(na)-345(ws)-1(i)-345(lu)1(dzie)-346(widz\\241)-346(p)1(rze)-1(z)-346(\\261c)-1(i)1(an)28(y)-345(na)28(w)27(et)-345(i)-346(t)1(o,)-346(cz)-1(ego)-345(w)27(cale)]TJ -27.879 -13.549 Td[(ni)1(e)-334(b)28(y\\252o!)-333({)-333(w)-1(y)1(rze)-1(k\\252a)-333(z)-334(n)1(ac)-1(iskiem,)-334(spu)1(s)-1(zc)-1(za)-56(j)1(\\241c)-334(o)-28(cz)-1(y)-333(n)1(a)-334(r)1(oz)-1(migotan)1(e)-334(dr)1(ut)28(y)84(.)]TJ 27.879 -13.549 Td[(Jasio)-318(jak)1(b)28(y)-318(ni)1(e)-319(zrozumia\\252,)-318(gd)1(y\\273)-319(d)1(o)-56(j)1(rza)27(wsz)-1(y)-317(s)-1(tad)1(o)-318(go\\252\\246)-1(b)1(i)-318(lec)-1(\\241ce)-319(n)1(isk)28(o)-318(nad)]TJ -27.879 -13.549 Td[(zb)-28(o\\273am)-1(i)1(,)-333(\\261)-1(mign\\241\\252)-333(z)-1(a)-333(n)1(im)-1(i)-333(k)56(amieniem)-334(i)-333(z)-1(a)28(w)28(o\\252a\\252)-334(w)28(e)-1(so\\252o:)]TJ 27.879 -13.549 Td[({)-333(Zaraz)-334(p)-27(oz)-1(n)1(a\\242)-334(p)-27(o)-334(wyp)1(as)-1(ion)29(yc)27(h)-333(b)1(rzuc)27(h)1(ac)27(h)1(,)-333(\\273)-1(e)-334(to)-333(pr)1(ob)-28(oszc)-1(zo)27(wskie...)]TJ 0 -13.55 Td[({)-411(C)-1(i)1(c)27(ho,)-411(J)1(a)-1(siu)1(,)-411(jes)-1(zc)-1(ze)-412(kto)-411(u)1(s)-1(\\252ysz)-1(y)1(!)-412({)-411(sk)56(arc)-1(i)1(\\252)-1(a)-411(go)-411(\\252ago)-28(dn)1(ie,)-411(roz)-1(marza)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(si\\246)-336(m)28(y\\261)-1(l)1(e)-1(n)1(ie)-1(m,)-335(j)1(ak)-335(to)-335(on)-335(zos)-1(tan)1(ie)-336(k)1(ie)-1(d)1(y\\261)-336(p)1(rob)-27(os)-1(zcz)-1(em)-1(,)-335(a)-335(on)1(a)-335(usi\\246)-1(d)1(z)-1(i)1(e)-336(p)1(rz)-1(y)-335(n)1(im)]TJ 0 -13.549 Td[(na)-333(stare)-334(l)1(a)-1(t)1(a)-334(d)1(o\\273)-1(yw)28(a\\242)-334(d)1(ni)-333(sw)27(oic)28(h)-333(w)-334(sp)-28(ok)28(o)-55(ju)-333(i)-333(sz)-1(cz)-1(\\246\\261liw)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(ie)-1(d)1(y\\273)-334(to)-333(F)83(elek)-333(przyj)1(e)-1(d)1(z)-1(ie)-333(na)-333(w)27(ak)56(acje?)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(mama)-334(n)1(ie)-334(wie,)-333(\\273)-1(e)-334(go)-333(aresz)-1(to)28(w)28(ali?)]TJ 0 -13.55 Td[({)-494(\\221wi\\246c)-1(i)-493(P)28(a\\253sc)-1(y!)-493(Are)-1(szto)27(w)28(an)28(y!)-493(i)-494(c)-1(\\363\\273)-494(to)-494(z)-1(b)1(roi\\252?)-494(A)-494(z)-1(a)28(ws)-1(ze)-495(m\\363)28(wi\\252am)-1(,)-494(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ep)-27(o)27(wiad)1(a\\252am)-1(,)-311(\\273)-1(e)-312(\\271le)-312(s)-1(k)28(o\\253)1(c)-1(zy!)-311(T)83(aki)-311(\\252)-1(a)-55(jd)1(us,)-312(w)-312(sam)-312(raz)-312(b)28(y)1(\\252)-1(o)-311(m)27(u)-311(i\\261\\242)-312(na)-312(j)1(akiego)]TJ 0 -13.549 Td[(pi)1(s)-1(ar)1(k)55(a,)-483(ale)-484(m)-1(\\252y)1(narzom)-484(z)-1(ac)28(hcia\\252o)-484(si\\246)-484(z)-1(r)1(obi\\242)-484(z)-484(ni)1(e)-1(go)-484(d)1(oktora!)-483(A)-484(tak)-483(s)-1(i)1(\\246)-484(nim)]TJ 0 -13.549 Td[(p)28(ysznili)1(,)-293(tak)-293(n)1(os)-1(y)-292(z)-1(ad)1(z)-1(i)1(e)-1(ral)1(i,)-293(a)-293(teraz)-293(synek)-293(w)-293(kry)1(m)-1(i)1(nale,)-293(ma)-56(j)1(\\241)-293(p)-28(o)-27(c)-1(iec)27(h)1(\\246)-1(!)-292({)-293(a\\273)-294(si\\246)]TJ 0 -13.549 Td[(trz\\246s)-1(\\252a)-333(z)-334(jaki)1(e)-1(j)1(\\261)-334(m\\261)-1(ciw)27(ej)-333(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[({)-333(Ale)-1(\\273)-333(to)-334(zup)-27(e\\252)-1(n)1(ie)-334(co)-333(inn)1(e)-1(go,)-333(sie)-1(d)1(z)-1(i)-333(w)-333(c)-1(y)1(tadeli.)]TJ 0 -13.55 Td[({)-333(W)-333(c)-1(ytad)1(e)-1(l)1(i,)-333(a)-334(to)-333(m)28(usi)-334(b)29(y\\242)-334(co\\261)-334(p)-27(olit)28(ycz)-1(n)1(e)-1(go?)-333({)-334(zni\\273y\\252a)-333(g\\252os)-1(.)]TJ 0 -13.549 Td[(Jasio)-249(nie)-249(umia\\252)-249(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242)-249(c)-1(zy)-249(te)-1(\\273)-249(ni)1(e)-250(c)27(h)1(c)-1(ia\\252,)-249(za\\261)-250(on)1(a)-249(s)-1(ze)-1(p)1(n\\246\\252a)-250(t)1(rw)27(o\\273ni)1(e)-1(:)]TJ 0 -13.549 Td[({)-333(Mo)-56(j)1(a)-333(kru)1(s)-1(zyno,)-333(t)28(ylk)28(o)-333(t)28(y)-333(ni)1(e)-334(m)-1(i)1(e)-1(sz)-1(a)-55(j)-333(s)-1(i)1(\\246)-334(do)-333(ni)1(c)-1(ze)-1(go.)]TJ 0 -13.549 Td[({)-333(U)-334(n)1(as)-334(na)28(w)28(e)-1(t)-333(m\\363)27(wi\\242)-333(nie)-333(w)27(oln)1(o)-334(o)-333(taki)1(c)27(h)-333(rzec)-1(zac)27(h,)-333(zaraz)-334(b)29(y)-334(wyp)-27(\\246dzili.)]TJ 0 -13.549 Td[({)-354(A)-353(w)-1(i)1(dzis)-1(z!)-354(W)1(yp)-27(\\246)-1(d)1(z)-1(il)1(ib)28(y)-354(ci\\246)-354(i)-353(nie)-354(zos)-1(ta\\252b)28(y)1(\\261)-354(ks)-1(i\\246dzem)-1(!)-353(Ady)-353(b)28(ym)-354(u)1(m)-1(ar)1(\\252)-1(a)]TJ -27.879 -13.55 Td[(ze)-334(ws)-1(t)28(yd)1(u)-333(i)-333(z)-1(gry)1(z)-1(ot)28(y!)-333(Bo\\273)-1(e)-333(m)-1(\\363)-55(j,)-333(zm)-1(i)1(\\252)-1(u)1(j)-333(s)-1(i)1(\\246)-334(nad)-333(n)1(ami!)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(c)28(h)-333(s)-1(i)1(\\246)-334(mam)-1(a)-333(o)-334(mn)1(ie)-334(ni)1(e)-334(b)-27(oi.)]TJ\nET\nendstream\nendobj\n2262 0 obj <<\n/Type /Page\n/Contents 2263 0 R\n/Resources 2261 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2261 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2267 0 obj <<\n/Length 9957      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(710)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-406(P)1(rze)-1(cie)-1(\\273)-406(r)1(oz)-1(u)1(m)-1(i)1(e)-1(sz)-1(,)-405(jak)-405(haru)1(jem)27(y)-405(i)-406(zabiegam)27(y)84(,)-406(ab)29(y)-406(c)27(h)1(o)-28(cia\\273)-406(w)27(am)-406(b)28(y)1(\\252)-1(o)]TJ -27.879 -13.549 Td[(tro)-27(c)27(h\\246)-223(lepi)1(e)-1(j)1(.)-223(Sam)-223(wies)-1(z,)-223(j)1(ak)-223(ci\\246\\273)-1(k)28(o,)-222(t)28(yle)-223(nas)-223(w)-223(dom)28(u,)-222(a)-223(pr)1(z)-1(yc)28(ho)-28(d)1(y)-223(coraz)-223(mniejsz)-1(e)]TJ 0 -13.549 Td[(i)-451(\\273)-1(eb)28(y)-451(n)1(ie)-452(te)-452(t)1(ro)-28(c)27(h)1(\\246)-452(zie)-1(mi,)-451(to)-451(b)28(y\\261m)27(y)-451(p)1(rzy)-451(nasz)-1(ym)-451(prob)-27(osz)-1(cz)-1(u)-451(m)28(usieli)-451(nieraz)]TJ 0 -13.549 Td[(g\\252o)-28(d)1(e)-1(m)-344(pr)1(z)-1(ymiera\\242.)-344(Wiesz)-1(,)-344(p)1(rob)-27(os)-1(zcz)-345(si\\246)-344(te)-1(r)1(az)-345(sam)-344(go)-28(dzi)-344(z)-344(c)27(h)1(\\252)-1(op)1(am)-1(i)-343(o)-344(\\261)-1(l)1(ub)28(y)-343(i)]TJ 0 -13.549 Td[(p)-27(ogrze)-1(b)28(y)84(,)-362(s)-1(am,)-362(s)-1(\\252ysz)-1(an)1(e)-363(to)-362(rze)-1(cz)-1(y!)-362(p)-27(o)28(w)-1(i)1(ada,)-362(\\273)-1(e)-362(o)-56(jciec)-363(z)-363(lu)1(dzi)-362(z)-1(d)1(z)-1(iera\\252!)-362(Jaki)-362(mi)]TJ 0 -13.55 Td[(dob)1(ro)-28(d)1(z)-1(i)1(e)-1(j)-333(z)-333(c)-1(u)1(dze)-1(j)-333(ki)1(e)-1(sz)-1(eni.)]TJ 27.879 -13.549 Td[({)-333(A)-334(b)-27(o)-333(nap)1(ra)28(w)-1(d)1(\\246)-334(zdzie)-1(r)1(a\\252!)-334({)-333(wykr)1(z)-1(tu)1(s)-1(i)1(\\252)-334(n)1(ie)-1(\\261mia\\252o.)]TJ 0 -13.549 Td[({)-294(C)-1(o)-294(t)28(y!)-294(Na)-294(o)-56(j)1(c)-1(a)-294(b)-28(\\246dzies)-1(z)-295(p)-27(o)28(ws)-1(ta)28(w)28(a\\252?)-295(na)-294(ro)-27(dzonego)-295(o)-55(jca!)-295(A)-294(j)1(e)-1(\\261li)-294(z)-1(d)1(z)-1(iera\\252,)]TJ -27.879 -13.549 Td[(to)-322(dla)-322(k)28(ogo?)-323(Pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-323(n)1(ie)-323(dl)1(a)-323(sie)-1(b)1(ie,)-323(a)-322(t)28(ylk)28(o)-323(d)1(la)-322(w)27(as,)-323(d)1(la)-322(c)-1(iebie,)-322(na)-322(t)28(w)27(o)-55(j\\241)-323(n)1(auk)28(\\246)]TJ 0 -13.549 Td[({)-333(z)-1(ask)56(ar\\273)-1(y)1(\\252a)-334(si\\246)-334(b)-27(ole\\261)-1(n)1(ie)-1(.)]TJ 27.879 -13.549 Td[(Jasio)-236(z)-1(acz\\241\\252)-237(j)1(\\241)-236(pr)1(z)-1(epr)1(as)-1(za\\242)-1(,)-236(al)1(e)-237(m)28(u)-236(pr)1(z)-1(erw)28(a\\252o)-236(jaki)1(e)-1(\\261)-236(jazgotliw)28(e)-237(d)1(z)-1(w)28(onieni)1(e)-1(,)]TJ -27.879 -13.55 Td[(p\\252y)1(n\\241ce)-334(gdzie\\261)-334(o)-28(d)-333(sta)27(wu)1(.)]TJ 27.879 -13.549 Td[({)-333(S\\252ysz)-1(y)-333(mama?)-334(p)-27(e)-1(wni)1(e)-334(ksi\\241dz)-334(i)1(dzie)-334(d)1(o)-334(c)28(horego)-333(z)-334(P)28(anem)-334(Jez)-1(u)1(s)-1(em.)]TJ 0 -13.549 Td[({)-311(Pr\\246dze)-1(j)-311(to)-311(dzw)28(o)-1(n)1(i\\241)-311(na)-311(psz)-1(cz)-1(o\\252y)84(,)-312(\\273eb)28(y)-312(n)1(ie)-312(u)1(c)-1(iek\\252y)84(,)-312(m)28(usia\\252y)-311(s)-1(i\\246)-312(wyr)1(oi\\242)-312(na)]TJ -27.879 -13.549 Td[(pl)1(e)-1(b)1(anii)1(.)-334(P)1(rob)-27(os)-1(zc)-1(z)-333(w)-1(i)1(\\246)-1(ce)-1(j)-333(t)1(e)-1(raz)-333(pil)1(n)28(uj)1(e)-334(s)-1(w)28(o)-56(j)1(e)-1(go)-333(b)28(yk)56(a)-333(i)-333(pasieki)-333(ni\\271li)-333(k)28(o\\261c)-1(io\\252a.)]TJ 27.879 -13.549 Td[(Do)-28(c)28(ho)-28(d)1(z)-1(i)1(li)-225(w)-1(\\252a\\261nie)-226(sm\\246)-1(tar)1(z)-1(a,)-225(gdy)-225(n)1(araz)-226(sypn)1(\\241\\252)-226(si\\246)-226(na)-225(ni)1(c)27(h)-225(br)1(z)-1(\\246kliwy)-225(sz)-1(u)1(m)-1(,)]TJ -27.879 -13.55 Td[(\\273e)-334(Jas)-1(i)1(o)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(z)-1(d)1(\\241\\273)-1(y\\252)-333(kr)1(z)-1(yk)1(n\\241\\242)-334(n)1(a)-334(f)1(ur)1(m)-1(an)1(a:)]TJ 27.879 -13.549 Td[({)-333(Psz)-1(cz)-1(o\\252y!)-333(tr)1(z)-1(y)1(m)-1(a)-55(jcie)-334(k)28(oni)1(e)-1(,)-333(b)-27(o)-334(si\\246)-334(sp\\252osz)-1(\\241.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-444(n)1(ad)-443(p)1(lac)-1(em)-444(k)28(o\\261c)-1(i)1(e)-1(ln)29(ym)-444(h)28(u)1(c)-1(za\\252)-443(ogromn)28(y)-443(r\\363)-55(j,)-443(ni)1(\\363s)-1(\\252)-443(s)-1(i)1(\\246)-444(g\\363r\\241)-443(kieb)28(y)]TJ -27.879 -13.549 Td[(rozbr)1(z)-1(\\246c)-1(zana)-282(c)27(hm)28(ur)1(a,)-283(k)28(o\\252o)28(w)27(a\\252)-282(up)1(atru)1(j\\241c)-283(s)-1(p)-27(osobn)1(e)-1(go)-283(miejsc)-1(a,)-282(to)-282(z)-1(n)1(i\\273)-1(a\\252)-282(s)-1(i\\246)-283(p)1(rze)-1(-)]TJ 0 -13.549 Td[(p\\252y)1(w)27(a)-55(j\\241c)-270(m)-1(i\\246dzy)-270(d)1(rz)-1(ew)28(am)-1(i,)-269(a)-270(z)-1(a)-270(n)1(im)-271(l)1(e)-1(cia\\252)-270(ksi\\241dz)-270(w)-270(p)-28(or)1(tk)56(ac)27(h)-270(j)1(e)-1(n)1(o)-270(i)-270(k)28(os)-1(zul)1(i,)-270(b)-27(e)-1(z)]TJ 0 -13.55 Td[(k)56(ap)-28(elu)1(s)-1(za,)-252(zaz)-1(i)1(a)-56(j)1(an)28(y)-252(i)-251(ni)1(e)-1(u)1(s)-1(tan)1(nie)-252(mac)27(h)1(a)-56(j)1(\\241c)-1(y)-251(krop)1(id\\252em,)-252(za\\261)-252(Jam)27(b)1(ro\\273)-252(s)-1(k)1(rada)-55(j\\241c)]TJ 0 -13.549 Td[(si\\246)-269(b)-27(ok)56(am)-1(i)1(,)-268(w)-269(cieniac)28(h,)-268(p)1(rzydzw)27(an)1(ia\\252)-268(z)-1(a)-55(jad)1(le)-269(i)-268(wr)1(z)-1(es)-1(zc)-1(za\\252;)-268(obi)1(e)-1(gli)-268(p)1(lac)-268(par\\246)-268(razy)]TJ 0 -13.549 Td[(ni)1(e)-384(zw)27(al)1(nia)-55(j\\241c)-383(ani)-383(n)1(a)-383(c)27(h)28(wil)1(\\246)-1(,)-383(gd)1(y\\273)-383(psz)-1(cz)-1(o\\252y)-383(op)1(ada\\252y)-383(coraz)-383(ni\\273e)-1(j)1(,)-383(j)1(akb)28(y)-383(zam)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(rza)-56(j)1(\\241c)-377(op)1(a\\261)-1(\\242)-377(n)1(a)-376(kt\\363ry)-376(z)-376(dom\\363)28(w)-1(,)-376(\\273e)-377(j)1(u\\273)-377(d)1(z)-1(i)1(e)-1(ci)-376(pierzc)27(h)1(a\\252y)-376(s)-1(p)-27(o)-28(d)-376(\\261c)-1(i)1(an,)-376(ale)-376(naraz)]TJ 0 -13.549 Td[(p)-27(o)-28(derw)28(a\\252y)-394(si\\246)-394(\\271dzie)-1(b)1(k)28(o)-394(i)-393(sz)-1(\\252y)-393(pr)1(os)-1(to)-393(na)-393(Jas)-1(io)28(w)28(\\241)-394(b)1(ryk)28(\\246;)-393(w)-1(r)1(z)-1(asn\\246\\252a)-394(organ)1(i\\261c)-1(in)1(a)]TJ 0 -13.55 Td[(i)-363(zadar)1(\\252s)-1(zy)-363(ki)1(e)-1(c)28(k)28(\\246)-364(n)1(a)-363(g\\252o)28(w)27(\\246)-363(p)1(rz)-1(y)1(c)-1(u)1(p\\252a)-363(k)56(a)-56(j)1(\\261)-363(w)-363(ro)28(wie)-1(,)-362(k)28(onie)-363(zac)-1(z\\246)-1(\\252y)-362(s)-1(i)1(\\246)-364(r)1(w)27(a\\242,)-363(a\\273)]TJ 0 -13.549 Td[(fu)1(rman)-277(sk)28(o)-28(cz)-1(y\\252)-277(zakry\\242)-277(im)-277(\\261)-1(l)1(e)-1(p)1(ie)-1(,)-277(g\\246si)-277(s)-1(i)1(\\246)-278(rozlec)-1(ia\\252y)84(,)-277(a)-277(jeno)-277(Jasiu)-276(s)-1(ta\\252)-277(sp)-28(ok)28(o)-55(jn)1(ie)-278(z)]TJ 0 -13.549 Td[(zadart\\241)-314(g\\252o)28(w)28(\\241,)-314(r\\363)-55(j)-314(zakr\\246c)-1(i\\252)-314(z)-314(nag\\252a)-314(tu)1(\\273)-315(n)1(ad)-314(ni)1(m)-315(i)-314(p)-27(osz)-1(ed\\252)-314(p)1(ros)-1(t)1(o)-315(n)1(a)-314(dzw)27(on)1(ni)1(c)-1(\\246.)]TJ 27.879 -13.549 Td[({)-254(W)84(o)-28(dy!)-253({)-254(rykn)1(\\241\\252)-254(pr)1(ob)-28(osz)-1(cz)-255(p)1(usz)-1(cza)-56(j\\241c)-254(si\\246)-255(w)-254(cw)27(a\\252)-254(za)-254(nimi,)-254(d)1(opad)1(\\252)-254(z)-255(b)1(lisk)55(a)]TJ -27.879 -13.549 Td[(i)-358(tak)-358(je)-358(s)-1(k)1(ropi)1(\\252)-1(,)-358(\\273e)-359(n)1(ie)-359(mog\\241c)-359(j)1(u\\273)-359(r)1(uc)27(h)1(a\\242)-359(p)1(rze)-1(mi\\246)-1(k)1(\\252ym)-1(i)-358(skr)1(z)-1(yd)1(\\252am)-1(i)1(,)-359(zacz)-1(\\246\\252y)-358(s)-1(i\\246)]TJ 0 -13.55 Td[(osadza\\242)-334(w)-334(d)1(z)-1(w)28(onn)1(ic)-1(zn)28(ym)-333(okni)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-325(Jam)28(br)1(o\\273)-1(!)-324(dr)1(abin)1(a,)-325(sitk)28(o,)-324(a)-325(pr)1(\\246)-1(d)1(z)-1(ej,)-324(b)-28(o)-324(uciekn\\241!)-324(Rusz)-1(a)-55(j)-325(si\\246,)-325(k)1(ulasie!)-325(Jak)]TJ -27.879 -13.549 Td[(si\\246)-223(m)-1(asz,)-223(Jasiu,)-222(zr\\363b)-222(no)-222(ognia)-222(w)-223(try)1(bu)1(larzu,)-222(trze)-1(b)1(a)-223(j)1(e)-223(p)-28(o)-28(d)1(ku)1(rz)-1(y)1(\\242)-1(,)-222(to)-223(si\\246)-223(u)1(s)-1(p)-27(ok)28(o)-56(j)1(\\241!)]TJ 0 -13.549 Td[({)-457(wrzes)-1(zc)-1(za\\252)-457(z)-1(gor)1(\\241c)-1(zk)28(o)28(w)27(an)28(y)84(,)-456(nie)-457(p)1(rz)-1(es)-1(t)1(a)-56(j\\241c)-457(skrap)1(ia\\242)-457(opad)1(a)-56(j)1(\\241c)-1(ego)-457(ro)-55(ju)1(,)-457(a)-456(nie)]TJ 0 -13.549 Td[(up)1(\\252yn\\246\\252o)-274(i)-274(Zdr)1(o)28(w)27(a\\261,)-274(dr)1(abin)1(a)-274(s)-1(ta\\252a)-274(p)-27(o)-28(d)-273(dzw)27(on)1(nic\\241,)-274(Jam)28(br)1(o\\273)-275(p)1(rz)-1(y)1(dzw)27(an)1(ia\\252,)-274(Jasio)]TJ 0 -13.549 Td[(dy)1(m)-1(i)1(\\252)-431(z)-432(tr)1(ybu)1(larza)-431(ni)1(b)28(y)-431(z)-431(k)28(om)-1(i)1(na,)-431(za\\261)-431(ks)-1(i)1(\\241dz)-431(pi\\241\\252)-431(si\\246)-431(w)-431(g)-1(\\363r)1(\\246)-432(i)-430(dosi\\246gn\\241)28(ws)-1(zy)]TJ 0 -13.55 Td[(pszc)-1(z\\363\\252)-334(gme)-1(r)1(a\\252)-334(mi\\246dzy)-333(nimi)-333(wys)-1(zuk)1(uj\\241c)-333(m)-1(atk)1(i.)]TJ 27.879 -13.549 Td[({)-387(Jes)-1(t!)-386(C)-1(h)29(w)27(a\\252a)-387(Bogu,)-387(j)1(u\\273)-387(ni)1(e)-388(u)1(c)-1(iekn)1(\\241!)-387(P)28(o)-28(d)1(kur)1(z)-1(,)-386(Jas)-1(iu)1(,)-387(o)-28(d)-386(s)-1(p)-27(o)-28(d)1(u,)-387(b)-27(o)-387(si\\246)]TJ -27.879 -13.549 Td[(roz\\252a\\273)-1(\\241!)-433({)-433(rozk)56(az)-1(yw)28(a\\252)-433(z)-1(gar)1(nia)-55(j\\241c)-434(go\\252ymi)-433(r\\246k)56(am)-1(i)-433(p)1(s)-1(zcz)-1(o\\252y;)-433(n)1(ic)-434(si\\246)-434(b)-27(o)28(w)-1(i)1(e)-1(m)-433(nie)]TJ 0 -13.549 Td[(b)-27(o)-56(j)1(a\\252)-1(,)-400(c)27(h)1(o)-28(c)-1(i)1(a\\273)-402(ob)1(s)-1(iad)1(\\252y)-401(m)28(u)-401(g\\252o)28(w)27(\\246)-401(i)-400(\\252)-1(azi\\252y)-401(p)-27(o)-401(t)28(w)28(arzy)83(,)-401(j)1(e)-1(n)1(o)-401(p)-27(ogadu)1(j\\241c)-401(c)-1(osik)-401(d)1(o)]TJ 0 -13.549 Td[(ni)1(c)27(h)-333(zbiera\\252)-333(je)-334(d)1(o)-334(sitk)56(a)-333(i)-333(z)-1(b)1(ie)-1(r)1(a\\252,)-333(gdy\\273)-334(r)1(\\363)-56(j)-333(b)29(y\\252)-334(ogr)1(om)-1(n)28(y)84(.)]TJ 27.879 -13.55 Td[({)-316(Uw)27(a\\273a\\242!)-316(bu)1(rz)-1(\\241)-316(si\\246,)-316(mog\\241)-317(ci\\241\\242!)-316({)-316(os)-1(t)1(rz)-1(ega\\252)-316(s)-1(c)28(ho)-28(d)1(z)-1(\\241c)-316(z)-317(d)1(rabi)1(n)28(y)83(,)-315(oto)-28(c)-1(zon)28(y)]TJ -27.879 -13.549 Td[(ca\\252)-1(\\241)-437(c)27(h)1(m)-1(ar)1(\\241)-438(wiru)1(j\\241c\\241)-438(nad)-437(n)1(im)-438(z)-438(br)1(z)-1(\\246kiem)-438(i)-438(sz)-1(u)1(m)-1(em,)-438(a)-437(z)-1(es)-1(ze)-1(d)1(\\252s)-1(zy)-438(n)1(a)-438(zie)-1(mi\\246)]TJ\nET\nendstream\nendobj\n2266 0 obj <<\n/Type /Page\n/Contents 2267 0 R\n/Resources 2265 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2265 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2270 0 obj <<\n/Length 9928      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(711)]TJ -358.232 -35.866 Td[(p)-27(oni\\363s\\252)-483(sito)-482(przed)-483(sob\\241)-482(tak)-482(w)27(a\\273ni)1(e)-483(i)-483(u)1(ro)-28(cz)-1(y)1(\\261)-1(cie)-483(kieb)28(y)-482(t\\246)-483(monstran)1(c)-1(j)1(\\246)-1(,)-482(Jasio)]TJ 0 -13.549 Td[(go)-347(ok)55(ad)1(z)-1(a\\252)-347(k)28(o\\252ys)-1(z\\241c)-348(tr)1(ybu)1(larze)-1(m,)-347(Jam)27(b)1(ro\\273)-348(d)1(z)-1(w)28(oni)1(\\252)-348(p)-27(okrap)1(ia)-56(j)1(\\241c)-348(raz)-348(p)-27(o)-347(raz)-348(i)-347(w)]TJ 0 -13.549 Td[(taki)1(e)-1(j)-425(an)1(o)-425(pro)-27(c)-1(es)-1(j)1(i)-425(w)27(al)1(ili)-425(do)-425(p)1(as)-1(ieki)-425(za)-425(pleban)1(i\\241,)-425(k)56(a)-56(j)-424(w)-426(osobn)28(y)1(m)-426(zagro)-28(d)1(z)-1(eniu)]TJ 0 -13.549 Td[(sta\\252o)-334(ki)1(lk)56(adzie)-1(si\\241t)-333(ul)1(i)-334(r)1(oz)-1(b)1(rz\\246)-1(cz)-1(an)29(yc)27(h)1(,)-334(j)1(akb)28(y)-333(w)-333(k)55(a\\273dy)1(m)-334(s)-1(i)1(\\246)-334(roi\\252o.)]TJ 27.879 -13.549 Td[(A)-352(k)1(ie)-1(d)1(y)-352(k)1(s)-1(i\\241d)1(z)-352(z)-1(a)-55(j\\241\\252)-352(si\\246)-352(obsadzani)1(e)-1(m)-352(pszc)-1(z\\363\\252,)-352(Jasio,)-351(dobr)1(z)-1(e)-352(j)1(u\\273)-352(g\\252o)-28(dn)29(y)-352(i)]TJ -27.879 -13.55 Td[(ut)1(rud)1(z)-1(on)29(y)83(,)-333(wys)-1(u)1(n\\241\\252)-333(s)-1(i)1(\\246)-334(c)-1(i)1(c)27(hacze)-1(m)-334(d)1(o)-333(dom)27(u)1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-390(c)-1(o)-390(u)1(c)-1(iesz)-1(yl)1(i)-390(s)-1(i\\246)-390(nim)-390(niezm)-1(iern)1(ie,)-390(a)-391(co)-390(tam)-391(b)29(y\\252o)-391(p)1(isk)28(\\363)27(w,)-390(ca\\252o)27(w)28(a\\253)-390(i)]TJ -27.879 -13.549 Td[(p)28(yt)1(a\\253,)-342(tego)-342(i)-342(nie)-342(wyp)-27(o)27(wiedzie\\242)-1(,)-342(za\\261)-343(sk)28(oro)-342(p)1(rz)-1(esz)-1(\\252a)-342(pi)1(e)-1(rwsz)-1(a)-342(r)1(ado\\261\\242)-1(,)-342(u)1(s)-1(ad)1(z)-1(il)1(i)-342(go)]TJ 0 -13.549 Td[(za)-308(s)-1(to\\252em)-309(i)-308(d)1(alej\\273e)-309(znosi\\242)-309(p)1(rze)-1(r)1(\\363\\273)-1(n)1(e)-309(sm)-1(ak)1(i)-308(a)-308(p)-28(o)-27(dt)28(yk)56(a\\242,)-308(a)-308(m)-1(ol)1(e)-1(sto)28(w)27(a\\242)-308(i)-308(z)-1(ac)28(h\\246c)-1(a\\242)]TJ 0 -13.549 Td[(do)-308(jad\\252a,)-308(ja\\273e)-310(ca\\252y)-309(dom)-309(si\\246)-309(trz\\241s)-1(\\252)-309(o)-28(d)-308(wrzas)-1(k)28(\\363)28(w)-309(i)-309(b)1(ie)-1(gan)1(in)28(y;)-308(gdy\\273)-309(ws)-1(zysc)-1(y)-308(naraz)]TJ 0 -13.549 Td[(pr)1(agn\\246li)-271(m)27(u)-271(u)1(s)-1(\\252u\\273y\\242)-272(i)-271(b)28(y)1(\\242)-272(jak)-271(na)-55(jb)1(li\\273e)-1(j)1(.)-272(W)1(\\252)-1(a\\261ni)1(e)-272(na)-271(taki)-271(rejw)28(ac)27(h)-271(wpad)1(\\252)-272(zz)-1(i)1(a)-56(jan)29(y)]TJ 0 -13.55 Td[(Gr)1(z)-1(ela,)-394(w)28(\\363)-56(j)1(t\\363)28(w)-394(br)1(at,)-394(r)1(oz)-1(p)28(y)1(tuj)1(\\241c)-394(s)-1(i\\246)-394(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie,)-394(cz)-1(y)-393(ni)1(e)-394(w)-1(i)1(dzie)-1(li)-393(Ro)-28(c)27(h)1(a?)-394(Ale)]TJ 0 -13.549 Td[(ni)1(kt)-333(go)-334(n)1(ie)-334(wid)1(z)-1(ia\\252)-333(na)-333(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-480(Ni)1(e)-480(m)-1(og\\246)-480(go)-480(n)1(ik)56(a)-56(j)-479(n)1(ale)-1(\\271\\242)-480({)-480(wyr)1(z)-1(ek)55(a\\252)-479(frasobl)1(iwie)-480(i)-480(n)1(ie)-480(wda)-55(j\\241c)-480(si\\246)-480(w)]TJ -27.879 -13.549 Td[(rozmo)27(wy)-301(p)-27(olec)-1(ia\\252)-301(dal)1(e)-1(j)-301(szuk)56(a\\242)-302(p)-27(o)-301(c)27(ha\\252u)1(pac)28(h,)-301(a)-301(z)-1(ar)1(az)-302(p)-27(o)-301(jego)-302(o)-27(dej\\261c)-1(iu)-300(z)-1(a)28(w)28(o\\252)-1(an)1(o)]TJ 0 -13.549 Td[(Jasia)-333(na)-333(pleban)1(i\\246)-1(.)-333(O)1(c)-1(i\\241)-27(ga\\252)-334(si\\246)-1(,)-333(zw\\252\\363)-28(c)-1(zy\\252,)-333(ale)-334(i\\261\\242)-334(m)28(usia\\252.)]TJ 27.879 -13.55 Td[(Pr)1(ob)-28(oszc)-1(z)-293(cze)-1(k)56(a\\252)-292(w)-293(gan)1(ku)-292(p)1(rz)-1(y)-292(p)-27(o)-28(d)1(wie)-1(cz)-1(or)1(ku,)-292(wyca\\252o)28(w)27(a\\252)-292(go)-292(p)-28(o)-292(o)-55(jco)27(wsku)]TJ -27.879 -13.549 Td[(i)-333(usadziws)-1(zy)-333(pr)1(z)-1(y)-333(sobie)-334(r)1(z)-1(ek\\252)-333(w)-1(i)1(e)-1(lce)-334(\\252ask)55(a)28(wie:)]TJ 27.879 -13.549 Td[({)-408(R)-1(ad)-408(j)1(e)-1(stem)-1(,)-408(\\273)-1(e\\261)-409(p)1(rz)-1(y)1(jec)27(ha\\252,)-408(b)-27(\\246)-1(d)1(\\246)-409(m)-1(i)1(a\\252)-409(z)-409(kim)-408(o)-28(dma)28(w)-1(i)1(a\\242)-409(br)1(e)-1(wiarz!)-408(Ale)]TJ -27.879 -13.549 Td[(wies)-1(z,)-441(ile)-442(mam)-442(tegoro)-28(cz)-1(n)29(yc)27(h)-441(r)1(o)-56(j)1(\\363)27(w?)-441(Pi\\246tna\\261c)-1(i)1(e)-1(!)-441(A)-441(m)-1(o)-27(c)-1(n)1(e)-1(,)-441(j)1(ak)-442(stare,)-441(ju)1(\\273)-442(ni)1(e)-1(-)]TJ 0 -13.549 Td[(kt\\363r)1(e)-329(zarobi\\252y)-328(mio)-28(d)1(e)-1(m)-328(p)-27(o)-329(\\242wie)-1(r)1(\\242)-329(ul)1(a!)-328(Wyroi)1(\\252o)-329(si\\246)-329(wi\\246c)-1(ej,)-328(Am)28(br)1(o\\273)-1(em)27(u)-328(k)56(aza\\252e)-1(m)]TJ 0 -13.55 Td[(pi)1(lno)28(w)28(a\\242)-330(p)1(as)-1(ieki,)-329(al)1(e)-330(u)1(s)-1(n\\246\\252a)-329(tr\\241b)1(a,)-329(i)-329(psz)-1(cz\\363\\252)-1(k)1(i)-329(\\014u)1(t...)-329(n)1(a)-329(b)-28(or)1(y)-329(i)-329(lasy)83(.)-329(A)-329(j)1(e)-1(d)1(e)-1(n)-328(r\\363)-56(j)]TJ 0 -13.549 Td[(uk)1(rad\\252)-307(m)-1(i)-307(m\\252)-1(y)1(narz!)-307(No,)-308(m\\363)28(w)-1(i)1(\\246)-308(c)-1(i,)-307(\\273e)-309(u)1(krad)1(\\252!)-308(Uciek\\252y)-308(n)1(a)-308(j)1(e)-1(go)-307(grusz)-1(\\246,)-307(z)-1(ab)1(ra\\252)-308(j)1(ak)]TJ 0 -13.549 Td[(sw)27(o)-55(je)-299(i)-299(an)1(i)-299(c)28(hcia\\252)-299(s)-1(\\252u)1(c)27(h)1(a\\242)-300(o)-298(o)-28(dd)1(aniu)1(!)-299(Z\\252y)-298(o)-299(b)28(yk)56(a,)-298(to)-299(m\\261)-1(ci)-299(si\\246)-299(na)-298(m)-1(n)1(ie)-1(,)-298(jak)-298(mo\\273)-1(e,)]TJ 0 -13.549 Td[(rab)1(u\\261)-263(j)1(e)-1(d)1(e)-1(n)1(.)-262(S\\252ysz)-1(a\\252e\\261)-263(to)-263(j)1(u\\273)-263(o)-262(F)83(elku)1(?)-263(T)83(e)-263(ga\\252gan)29(y)-263(to)-262(tn)1(\\241)-263(j)1(ak)-263(osy)83(,)-262(a)-262(s)-1(i)1(o!)-263({)-262(z)-1(a)-55(j\\246c)-1(za\\252)]TJ 0 -13.549 Td[(op)-27(\\246)-1(d)1(z)-1(a)-55(j\\241c)-334(si\\246)-334(c)28(h)28(uste)-1(czk)55(\\241)-333(o)-28(d)-333(m)28(uc)28(h,)-333(pad)1(a)-56(j)1(ac)-1(yc)28(h)-333(m)27(u)-333(ci\\246gie)-1(m)-333(na)-333(\\252ysin\\246.)]TJ 27.879 -13.55 Td[({)-333(T)27(yl)1(k)28(o)-334(t)28(yl)1(e)-1(,)-333(\\273e)-334(s)-1(i)1(e)-1(d)1(z)-1(i)-333(w)-334(cytad)1(e)-1(l)1(i.)]TJ 0 -13.549 Td[({)-397(\\233eb)28(y)-396(s)-1(i)1(\\246)-397(c)27(ho)-27(\\242)-397(na)-396(t)28(ym)-397(s)-1(k)28(o\\253)1(c)-1(zy\\252o!)-396(Doigra\\252)-396(s)-1(i)1(\\246)-1(,)-396(c)-1(o?)-396(A)-397(m\\363)28(w)-1(i)1(\\252)-1(em,)-397(a)-396(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(k\\252ad)1(a\\252)-1(em,)-386(ni)1(e)-387(s\\252uc)28(ha\\252)-386(osie)-1(\\252)-386(j)1(e)-1(d)1(e)-1(n)-385(i)-386(ma)-386(teraz)-386(bal)1(!)-386(Star)1(y)-386(ry)1(fa)-386(i)-385(bu)1(fon,)-385(ale)-386(F)83(elk)56(a)]TJ 0 -13.549 Td[(sz)-1(k)28(o)-28(d)1(a,)-329(z)-1(d)1(oln)1(a)-330(sze)-1(lma,)-329(p)-27(o)-329(\\252ac)-1(in)1(ie)-330(u)1(mie)-330(eksp)-28(edit)1(e)-1(,)-329(\\273e)-330(i)-329(b)1(iskup)-328(le)-1(p)1(iej)-329(ni)1(e)-330(p)-27(otra\\014)1(.)]TJ 0 -13.549 Td[(C\\363\\273)-1(,)-462(kiedy)-462(w)27(e)-463(\\252b)1(ie)-463(pstro)-462(i)-463(d)1(ale)-1(j)1(\\273)-1(e)-463(wyb)1(ie)-1(r)1(a\\242)-463(s)-1(i)1(\\246)-464(z)-463(mot)28(yk)56(\\241)-463(n)1(a)-463(s\\252)-1(o\\253)1(c)-1(e...)-462(A)-462(p)-28(o-)]TJ 0 -13.55 Td[(wiedziano:)-356(jak\\273e)-357(to..)1(.)-357(ah)1(a!)-357(cz)-1(ego)-357(n)1(ie)-357(w)28(olno,)-356(ni)1(e)-357(rusz,)-357(a)-356(c)-1(o)-356(z)-1(ak)56(azane,)-357(ob)-27(c)27(h)1(o)-28(d\\271)-357(z)]TJ 0 -13.549 Td[(dal)1(e)-1(k)56(a.)-413(P)28(ok)28(orn)1(e)-414(c)-1(i)1(e)-1(l\\246)-413(dwie)-414(matki)-413(ss)-1(ie...)-413(tak)1(...)-413({)-414(ci\\241)-28(gn)1(\\241\\252)-414(cisz)-1(ej)-413(i)-413(ju)1(\\273)-414(c)-1(or)1(az)-414(s)-1(\\252a-)]TJ 0 -13.549 Td[(bi)1(e)-1(j)1(,)-412(op)-27(\\246dza)-56(j\\241c)-412(si\\246)-412(p)1(rze)-1(d)-411(m)27(u)1(c)27(h)1(am)-1(i)1(.)-412({)-411(Zapami\\246)-1(t)1(a)-56(j)-411(to)-412(sobi)1(e)-1(,)-411(Jasiu!)-411(No,)-411(m)-1(\\363)28(wi\\246,)]TJ 0 -13.549 Td[(zapami\\246)-1(t)1(a)-56(j!)-344({)-344(zwie)-1(si\\252)-344(g\\252o)28(w)27(\\246)-344(z)-1(ap)1(ada)-56(j)1(\\241c)-345(w)-344(g\\252\\246)-1(b)-27(oki)-344(f)1(ote)-1(l)1(,)-344(ale)-345(gd)1(y)-344(Jasio)-344(p)-28(o)28(ws)-1(t)1(a\\252)-345(z)]TJ 0 -13.549 Td[(kr)1(z)-1(es)-1(\\252a,)-338(ot)28(w)27(or)1(z)-1(y\\252)-338(o)-28(c)-1(zy)-338(i)-339(zamam)-1(r)1(ota\\252:)-339({)-338(Zm)-1(\\246c)-1(zy\\252y)-338(m)-1(n)1(ie)-339(p)1(s)-1(zc)-1(z\\363\\252ki!)-338(A)-339(p)1(rzyc)27(h)1(o)-28(d\\271)]TJ 0 -13.549 Td[(wiec)-1(zorami)-429(n)1(a)-429(br)1(e)-1(wiar)1(z)-1(.)-428(Ale)-429(u)28(w)28(a\\273)-1(a)-55(j)-428(na)-429(siebie)-429(i)-428(ni)1(e)-430(sp)-27(ouf)1(ala)-56(j)-428(si\\246)-429(\\273)-429(c)27(h\\252op)1(am)-1(i)1(,)]TJ 0 -13.55 Td[(b)-27(o)-450(kto)-449(s)-1(i)1(\\246)-450(z)-1(ad)1(a)-450(z)-450(p)1(le)-1(w)28(ami,)-450(t)1(e)-1(go)-449(\\261)-1(win)1(ie)-450(z)-1(j)1(e)-1(d)1(z)-1(\\241!)-449(No,)-449(m)-1(\\363)28(wi\\246,)-450(zjedz\\241)-450(i)-449(basta!)-449({)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252)-334(\\252ysin\\246)-333(c)27(h)28(u)1(s)-1(tk)56(\\241)-333(i)-333(z)-1(ac)28(hrap)1(a\\252)-334(j)1(u\\273)-334(n)1(a)-334(d)1(obr)1(e)-1(.)]TJ 27.879 -13.549 Td[(Sn)1(ad\\271)-344(tak)-344(sam)-1(o)-344(m)28(y\\261la\\252)-344(organ)1(is)-1(ta,)-343(alb)-27(o)27(wiem)-344(kiedy)-344(p)1(arob)-27(e)-1(k)-344(wyp)1(ro)28(w)28(adza\\252)]TJ -27.879 -13.549 Td[(k)28(oni)1(e)-334(na)-333(past)28(wis)-1(k)28(o)-333(i)-333(Jasio)-334(sk)28(o)-28(cz)-1(y)1(\\252)-334(n)1(a)-334(j)1(e)-1(d)1(nego,)-334(stary)-333(zakrzycz)-1(a\\252:)]TJ 27.879 -13.549 Td[({)-370(Zl)1(e)-1(\\271)-370(mi)-370(zaraz!)-370(Ni)1(e)-370(pasuj)1(e)-1(,)-369(\\273)-1(eb)28(y)-369(ks)-1(i)1(\\241dz)-370(j)1(e)-1(\\271dzi\\252)-370(n)1(a)-370(oklep)-369(i)-369(z)-1(ada)28(w)28(a\\252)-370(si\\246)-370(z)]TJ -27.879 -13.55 Td[(pastu)1(c)27(hami!)]TJ 27.879 -13.549 Td[(St)1(ras)-1(zni)1(e)-230(c)27(hcia\\252o)-229(m)27(u)-229(s)-1(i)1(\\246)-230(jec)27(ha\\242,)-229(ale)-230(z)-1(l)1(az)-1(\\252)-230(j)1(ak)-229(niep)28(ysz)-1(n)29(y)-230(i)-229(p)-27(oniew)27(a\\273)-230(mrok)-229(ju)1(\\273)]TJ\nET\nendstream\nendobj\n2269 0 obj <<\n/Type /Page\n/Contents 2270 0 R\n/Resources 2268 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2268 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2273 0 obj <<\n/Length 9905      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(712)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(zapada\\252,)-313(p)-27(os)-1(zed\\252)-313(z)-1(a)-313(ogro)-28(d)1(y)-313(o)-28(dm\\363)28(wi\\242)-314(wiec)-1(zorn)1(e)-314(pacierz)-1(e,)-313(ale)-314(m\\363g\\252)-313(s)-1(i\\246)-313(to)-314(zebra\\242)]TJ 0 -13.549 Td[(w)-450(s)-1(ob)1(ie)-1(,)-450(k)1(ie)-1(d)1(y)-450(jak)56(a\\261)-451(d)1(z)-1(i)1(e)-1(u)1(s)-1(zyna)-450(p)1(ie)-1(snecz)-1(k)56(a)-450(dzw)27(on)1(i\\252a)-450(gdzie)-1(\\261)-450(niedal)1(e)-1(k)28(o)-450(i)-450(bab)29(y)]TJ 0 -13.549 Td[(ra)-55(jco)28(w)27(a\\252y)-332(w)-332(jaki)1(m)-1(\\261)-332(s)-1(ad)1(z)-1(i)1(e)-1(,)-332(\\273e)-333(k)56(a\\273de)-333(s\\252o)28(w)27(o)-332(lec)-1(i)1(a\\252o)-333(p)-27(o)-332(rosie,)-332(i)-332(wrze)-1(sz)-1(cz)-1(a\\252y)-332(d)1(z)-1(i)1(e)-1(ci)]TJ 0 -13.549 Td[(k)56(\\241)-28(pi)1(\\241c)-1(e)-411(s)-1(i)1(\\246)-412(w)-411(s)-1(ta)28(wie,)-411(k)56(a)-56(j)1(\\261)-412(zn\\363)28(w)-411(\\261)-1(miec)27(h)28(y)-411(si\\246)-411(z)-1(atr)1(z)-1(\\246s)-1(\\252y)84(,)-411(to)-411(ryk)1(i)-411(kr\\363)28(w,)-411(to)-411(ksi\\246\\273)-1(e)]TJ 0 -13.549 Td[(p)-27(e)-1(r)1(licz)-1(ki)-318(dar)1(\\252y)-319(si\\246)-319(p)1(rze)-1(n)1(ikliwie)-319(i)-318(ca\\252a)-319(wie\\261)-319(h)28(ucz)-1(a\\252a)-318(pr)1(z)-1(er\\363\\273n)28(ymi)-319(p)-27(og\\252os)-1(ami)-318(nib)29(y)]TJ 0 -13.55 Td[(ten)-315(u)1(l)-315(r)1(oz)-1(b)1(rz\\246)-1(cz)-1(an)29(y)83(,)-314(\\273)-1(e)-315(ci\\246)-1(gi)1(e)-1(m)-315(m)28(u)-315(si\\246)-315(m)27(y)1(li\\252o,)-314(a)-315(gdy)-314(nar)1(e)-1(sz)-1(cie)-315(uc)28(h)28(wyc)-1(i)1(\\252)-315(w)27(\\241t)1(e)-1(k)-314(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(kl\\246kn\\241)28(ws)-1(zy)-293(p)-28(o)-27(d)-293(\\273)-1(y)1(te)-1(m)-293(wtopi\\252)-293(rozm)-1(o)-27(dlon)1(e)-294(o)-28(cz)-1(y)-293(w)-293(to)-293(ni)1(e)-1(b)-27(o)-294(r)1(oz)-1(gwia\\273d\\273one)-293(i)]TJ 0 -13.549 Td[(p)-27(oni\\363s\\252)-232(d)1(usz)-1(\\246)-232(k)56(a)-55(j\\261)-232(w)-232(za\\261)-1(wiat)28(y)84(,)-231(bu)1(c)27(hn)1(\\246)-1(\\252y)-231(o)-28(d)-231(ws)-1(i)-231(taki)1(e)-232(pr)1(z)-1(era\\271liw)28(e)-232(krzyki,)-231(lamen)28(ta)]TJ 0 -13.549 Td[(i)-333(pr)1(z)-1(eklin)1(ani)1(a,)-334(\\273e)-334(p)-27(olec)-1(ia\\252)-333(ku)-333(d)1(om)-1(o)28(wi)-333(wys)-1(tr)1(as)-1(zon)28(y)-333(wie)-1(l)1(c)-1(e)-334(i)-333(n)1(ies)-1(p)-27(ok)28(o)-56(j)1(n)28(y)83(.)]TJ 27.879 -13.549 Td[(Matk)56(a)-333(w\\252a\\261)-1(n)1(ie)-334(wysz)-1(\\252a)-333(go)-334(w)28(o\\252a\\242)-334(na)-333(k)28(olacj\\246.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(si\\246)-334(tam)-333(s)-1(ta\\252o?)-333(B)-1(ij)1(\\241)-334(si\\246)-334(czy)-334(co?)]TJ 0 -13.55 Td[({)-444(J\\363ze)-1(f)-443(W)83(ac)28(hn)1(ik)-444(wr\\363)-28(ci\\252)-444(z)-444(k)56(ance)-1(lar)1(ii)-444(tr)1(o)-28(c)27(h)1(\\246)-445(p)1(ijan)29(y)-444(i)-444(p)-27(obi)1(\\252)-444(s)-1(i\\246)-444(ze)-445(sw)27(o)-55(j\\241.)]TJ -27.879 -13.549 Td[(Da)28(wno)-301(s)-1(i)1(\\246)-302(ju)1(\\273)-302(b)1(abie)-301(nale\\273)-1(a\\252a)-301(p)-27(orz\\241dn)1(a)-302(f)1(ryc\\363)28(w)-1(k)56(a.)-301(Nie)-301(b)-28(\\363)-55(j)-301(si\\246)-1(,)-301(n)1(ic)-302(j)1(e)-1(j)-300(nie)-301(b)-28(\\246dzie.)]TJ 27.879 -13.549 Td[({)-333(Ale)-1(\\273)-333(krzycz)-1(y)84(,)-333(jakb)28(y)-333(j)1(\\241)-334(ze)-334(sk)28(\\363ry)-333(ob)-27(dzie)-1(r)1(a\\252.)]TJ 0 -13.549 Td[({)-314(Zwyc)-1(za)-56(j)1(ne)-314(bab)1(s)-1(ki)1(e)-315(wrzas)-1(k)1(i,)-314(\\273e)-1(b)28(y)-314(j)1(\\241)-314(pr)1(a\\252)-315(k)1(ijem,)-314(tob)28(y)-314(b)28(y)1(\\252)-1(a)-314(cic)28(ho!)-314(Od)1(bij)1(e)]TJ -27.879 -13.549 Td[(m)27(u)-332(ona)-333(ju)1(tro)-333(z)-1(a)-333(s)-1(w)28(o)-56(j)1(e)-1(,)-333(o)-28(d)1(bi)1(je!)-334(Ch)1(o)-28(d\\271,)-333(kru)1(s)-1(zyn)1(o,)-334(b)-27(o)-333(k)28(olac)-1(j)1(a)-333(prze)-1(st)28(ygn)1(ie)-1(.)]TJ 27.879 -13.55 Td[(Ledwie)-263(tkn)1(\\241\\252)-263(jad)1(\\252a)-263(i)-262(c)-1(zuj)1(\\241c)-264(si\\246)-263(wielc)-1(e)-263(zdr)1(o\\273)-1(on)28(y)84(,)-262(z)-1(araz)-263(p)-27(o\\252o\\273)-1(y)1(\\252)-263(s)-1(i)1(\\246)-263(s)-1(p)1(a\\242)-1(.)-262(Ale)]TJ -27.879 -13.549 Td[(ran)1(o,)-271(j)1(ak)-270(t)27(y)1(lk)28(o)-271(s\\252o\\253ce)-271(z)-1(a\\261wiec)-1(i\\252o,)-270(ju)1(\\273)-271(b)28(y\\252)-270(na)-271(n)1(ogac)27(h)1(.)-271(O)1(blec)-1(i)1(a\\252)-271(p)-27(ole)-1(,)-270(p)1(rz)-1(y)1(ni\\363s\\252)-271(k)28(o-)]TJ 0 -13.549 Td[(ni)1(om)-287(k)28(onicz)-1(y)1(n)28(y)83(,)-286(p)-27(o)-28(dr)1(a\\273)-1(n)1(i\\252)-287(ksi\\246\\273)-1(e)-287(in)1(dor)1(y)83(,)-286(ja\\273e)-287(s)-1(i\\246)-287(r)1(oz)-1(b)1(ulgota\\252y)84(,)-286(przywita\\252)-287(p)1(ies)-1(ki)1(,)]TJ 0 -13.549 Td[(\\273e)-431(dziw)-431(\\252a\\253)1(c)-1(u)1(c)27(h\\363)28(w)-431(n)1(ie)-431(p)-27(oz)-1(r)1(yw)27(a\\252y)-430(z)-431(rad)1(o\\261)-1(ci,)-430(sypn)1(\\241\\252)-431(ziarn)1(a)-431(go\\252\\246biom,)-430(p)-28(om\\363g\\252)]TJ 0 -13.549 Td[(m\\252o)-28(dsz)-1(em)27(u)-304(wyp)-27(\\246)-1(d)1(z)-1(a\\242)-305(kro)28(wy)83(,)-304(nar)1(\\241ba\\252)-305(d)1(rz)-1(ew)28(a)-305(z)-1(a)-305(M)1(ic)27(h)1(a\\252a,)-305(sp)-28(enetro)28(w)28(a\\252)-305(w)-305(s)-1(ad)1(z)-1(ie)]TJ 0 -13.55 Td[(do)-55(jr)1(z)-1(ew)27(a)-55(j\\241ce)-236(m)-1(a\\252gorzatki)1(,)-236(p)-27(o\\014glo)28(w)28(a\\252)-236(z)-1(e)-236(\\271rebakiem)-236(i)-236(b)29(y\\252)-236(ws)-1(z\\246)-1(d)1(y)-236(i)-235(ws)-1(zystk)28(o)-236(wita\\252)]TJ 0 -13.549 Td[(ca\\252)-1(u)1(j\\241cymi)-307(o)-27(c)-1(zam)-1(i)1(,)-307(j)1(ak)-307(p)1(rzyjacio\\252y)-306(s)-1(erdecz)-1(n)1(e)-1(,)-306(jak)-306(br)1(at)28(y)-307(r)1(o)-28(dzone,)-307(n)1(a)28(w)27(et)-307(te)-307(mal-)]TJ 0 -13.549 Td[(wy)-300(os)-1(yp)1(ane)-301(k)1(w)-1(i)1(ate)-1(m,)-300(na)28(w)27(et)-300(te)-301(pr)1(os)-1(i\\246ta)-300(grze)-1(j)1(\\241c)-1(e)-301(si\\246)-301(n)1(a)-301(s\\252o\\253cu,)-300(na)28(w)28(e)-1(t)-300(p)-27(okrzywy)]TJ 0 -13.549 Td[(i)-402(c)28(h)28(w)27(ast)28(y;)-401(przyta)-55(jone)-402(p)-27(o)-28(d)-401(p\\252otami,)-402(a\\273)-402(matk)56(a)-402(biega)-56(j)1(\\241c)-1(a)-401(z)-1(a)-402(n)1(im)-402(rozk)28(o)-28(c)27(h)1(an)28(ymi)]TJ 0 -13.549 Td[(sp)-28(o)-55(jrzeniami)-333(s)-1(ze)-1(p)1(ta\\252a)-334(z)-333(p)-28(ob)1(\\252a\\273)-1(li)1(w)-1(y)1(m)-334(u\\261mie)-1(c)28(hem)-1(:)]TJ 27.879 -13.55 Td[({)-333(W)83(ar)1(iac)-1(i)1(e)-334(jeden!)-333(w)28(ariacie)-1(!)]TJ 0 -13.549 Td[(A)-331(on)-330(sn)28(u\\252)-331(si\\246)-331(i)-330(promienia\\252)-330(jak)28(o)-331(ten)-330(dzie)-1(\\253)-330(li)1(p)-28(co)28(w)-1(y)84(,)-331(j)1(as)-1(n)29(y)83(,)-330(roze)-1(\\261m)-1(i)1(an)28(y)83(,)-330(roz-)]TJ -27.879 -13.549 Td[(s\\252)-1(on)1(e)-1(cznion)28(y)84(,)-408(w)27(ez)-1(b)1(ran)28(y)-408(c)-1(i)1(e)-1(p)1(\\252e)-1(m)-409(i)-408(ogarn)1(ia)-56(j)1(\\241c)-1(y)-408(ws)-1(zyste)-1(k)-408(\\261)-1(wiat)-408(du)1(s)-1(z\\241)-409(mi\\252u)1(j\\241c\\241,)]TJ 0 -13.549 Td[(ale)-334(sk)28(oro)-333(zadzw)27(on)1(i\\252a)-334(sygnat)1(urk)56(a,)-333(rzuci\\252)-333(w)-1(szys)-1(tk)28(o)-333(i)-333(p)-27(ole)-1(cia\\252)-333(do)-333(k)28(o\\261)-1(cio\\252a.)]TJ 27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(z)-359(wysz)-1(ed\\252)-358(z)-359(w)27(ot)28(yw)28(\\241,)-358(p)-28(op)1(rze)-1(d)1(z)-1(a\\252)-359(go)-358(Jasio)-359(w)-358(no)28(w)27(ej)-358(k)28(om)-1(\\273y)84(,)-359(p)1(rzy-)]TJ -27.879 -13.55 Td[(br)1(anej)-285(\\261wie)-1(\\273o)-285(cz)-1(erw)28(o)-1(n)29(ymi)-285(ws)-1(t\\246gami,)-285(organ)29(y)-285(z)-1(agr)1(a\\252y)-285(pr)1(z)-1(ebieran)1(\\241,)-285(h)28(u)1(kliw)28(\\241)-285(n)28(u)1(t\\241,)]TJ 0 -13.549 Td[(z)-393(c)27(h)1(\\363ru)-392(p)-28(o)-27(dn)1(i\\363s)-1(\\252)-393(si\\246)-393(gru)1(bac)28(hn)28(y)-392(g\\252os)-1(,)-392(o)-28(d)-392(kt\\363rego)-393(zadr)1(ga\\252y)-393(\\261w)-1(i)1(at\\252a,)-393(ki)1(lk)56(ana\\261c)-1(ie)]TJ 0 -13.549 Td[(os\\363b)-333(przykl)1(\\246)-1(k\\252o)-333(pr)1(z)-1(ed)-333(o\\252tarze)-1(m)-333({)-334(i)-333(zac)-1(z\\246)-1(\\252o)-333(si\\246)-334(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o.)]TJ 27.879 -13.549 Td[(Jasio,)-369(c)27(h)1(o)-28(c)-1(i)1(a\\273)-370(s)-1(\\252u)1(\\273)-1(y\\252)-369(do)-369(ms)-1(zy)83(,)-369(a)-369(w)-370(p)1(rze)-1(rw)28(ac)27(h)-369(\\273arli)1(w)-1(i)1(e)-370(s)-1(i)1(\\246)-370(mo)-28(dli)1(\\252,)-370(j)1(e)-1(d)1(nak)]TJ -27.879 -13.549 Td[(dostrzeg\\252)-232(Jagusi\\246)-232(kl\\246c)-1(z\\241c)-1(\\241)-231(niec)-1(o)-231(z)-233(b)-27(oku)-231(i)-232(co)-232(p)-27(o)-28(d)1(ni\\363s\\252)-232(g\\252o)28(w)27(\\246,)-232(to)-232(wid)1(z)-1(i)1(a\\252)-232(jej)-232(mo)-28(d)1(re,)]TJ 0 -13.549 Td[(b\\252y)1(s)-1(zc)-1(z\\241c)-1(e)-353(o)-28(cz)-1(y)-353(wlepi)1(one)-353(w)-353(s)-1(iebi)1(e)-354(i)-353(j)1(aki\\261)-353(pr)1(z)-1(yta)-55(jon)29(y)-353(u\\261m)-1(i)1(e)-1(c)28(h)-353(n)1(a)-353(roz)-1(c)28(h)28(ylon)29(yc)27(h)1(,)]TJ 0 -13.55 Td[(cz)-1(erw)28(on)28(yc)27(h)-333(w)28(argac)28(h.)]TJ 27.879 -13.549 Td[(Zaraz)-405(p)-28(o)-405(k)28(o\\261cie)-1(l)1(e)-406(zabra\\252)-405(go)-405(ksi\\241d)1(z)-406(n)1(a)-405(pleban)1(i\\246)-406(i)-404(z)-1(asadzi\\252)-405(do)-405(p)1(is)-1(an)1(ia,)-405(\\273e)]TJ -27.879 -13.549 Td[(dop)1(iero)-333(p)-28(o)-333(p)-27(o\\252udn)1(iu)-333(wyrw)28(a\\252)-333(s)-1(i\\246)-333(na)-333(w)-1(i)1(e)-1(\\261)-334(o)-27(dwiedza\\242)-334(z)-1(n)1(a)-56(j)1(om)-1(k)28(\\363)28(w.)]TJ 27.879 -13.549 Td[(Na)-56(j)1(pi)1(e)-1(rw)-264(z)-1(asz)-1(ed\\252)-265(d)1(o)-265(K)1(\\252)-1(\\246b)-27(\\363)27(w,)-264(gdy\\273)-265(siedzie)-1(l)1(i)-265(n)1(a)-56(j)1(bli\\273ej,)-264(prze)-1(z)-265(d)1(r\\363\\273k)28(\\246)-265(jeno,)-264(w)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-314(j)1(e)-1(d)1(nak)-313(n)1(ie)-314(zasta\\252)-313(nik)28(ogo,)-313(a)-313(t)28(yl)1(k)28(o)-313(w)-314(sieniac)28(h,)-313(wyw)28(art)28(yc)28(h)-313(na)-313(p)1(rze)-1(strza\\252,)]TJ 0 -13.55 Td[(cos)-1(ik)-333(zaru)1(s)-1(za\\252o)-334(si\\246)-334(w)-333(k)55(\\241cie,)-333(a)-334(j)1(aki\\261)-334(g\\252os)-334(zac)27(h)1(ryp)1(ia\\252:)]TJ 27.879 -13.549 Td[({)-374(Dy)1(\\242)-374(to)-374(j)1(a,)-374(Jagata!)-373({)-374(u)1(nies)-1(\\252a)-373(s)-1(i\\246)-374(r)1(oz)-1(k\\252ad)1(a)-56(j)1(\\241c)-374(r\\246)-1(ce)-374(z)-1(e)-374(zdu)1(m)-1(i)1(e)-1(n)1(ia)-374({)-373(Je)-1(zu,)]TJ\nET\nendstream\nendobj\n2272 0 obj <<\n/Type /Page\n/Contents 2273 0 R\n/Resources 2271 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2271 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2276 0 obj <<\n/Length 9612      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(713)]TJ -358.232 -35.866 Td[(pan)-332(Jas)-1(io!)]TJ 27.879 -13.549 Td[({)-372(Le)-1(\\273c)-1(ie)-372(s)-1(p)-27(ok)28(o)-56(j)1(nie.)-372(Chorzy\\261c)-1(ie,)-372(c)-1(o?)-372({)-373(p)28(y)1(ta\\252)-373(tr)1(os)-1(kl)1(iwie)-373(i)-372(pr)1(z)-1(ysun)1(\\241)28(w)-1(sz)-1(y)-372(se)]TJ -27.879 -13.549 Td[(pi)1(e)-1(n)1(ie)-1(k)-333(p)1(rzys)-1(i)1(ad\\252)-333(blisk)28(o,)-333(ledwie)-334(r)1(oz)-1(p)-27(oz)-1(n)1(a)-56(j)1(\\241c)-334(jej)-333(t)28(w)27(ar)1(z)-334(wysc)27(hn)1(i\\246t\\241)-334(k)1(ie)-1(j)-333(ziem)-1(i)1(a.)]TJ 27.879 -13.549 Td[({)-294(Jeno)-293(ju\\273)-294(P)28(a\\253)1(s)-1(k)1(ie)-1(go)-293(m)-1(i\\252osierdzia)-294(cz)-1(ek)56(am)-294({)-294(g\\252os)-294(jej)-294(zabrzmia\\252)-294(ur)1(o)-28(cz)-1(y\\261c)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to)-334(w)28(am)-334(j)1(e)-1(st?)]TJ 0 -13.55 Td[({)-233(A)-234(n)1(ic)-1(,)-233(\\261m)-1(i)1(e)-1(r\\242)-233(s)-1(e)-234(w)28(e)-234(mnie)-234(r)1(o\\261)-1(n)1(ie)-234(i)-233(na)-233(\\273)-1(n)1(iw)27(o)-233(c)-1(zek)55(a)-233(K\\252\\246b)28(y)-233(m)-1(e)-234(an)1(o)-234(p)1(rzytul)1(i\\252y)83(,)]TJ -27.879 -13.549 Td[(b)28(ym)-372(se)-372(u)-371(nic)28(h)-372(p)-27(omar\\252a,)-372(t)1(o)-372(pacierz)-372(m)-1(\\363)28(wi\\246)-372(i)-371(w)-1(y)1(gl\\241dam)-372(cierpl)1(iwie)-372(onej)-372(go)-27(dzin)28(y)84(,)]TJ 0 -13.549 Td[(kiej)-333(k)28(ostuc)27(h)1(a)-333(z)-1(ap)1(uk)56(a)-334(i)-333(p)-27(o)28(wie)-1(:)-333(p)-27(\\363)-28(d)1(z)-1(i,)-333(d)1(usz)-1(o)-333(um\\246)-1(czona.)]TJ 27.879 -13.549 Td[({)-333(C)-1(zem)27(u\\273)-333(do)-333(izb)28(y)-333(w)27(as)-334(n)1(ie)-334(p)1(rze)-1(n)1(ios)-1(\\241?)]TJ 0 -13.549 Td[({)-372(Hale)-1(,)-372(p)-27(\\363ki)-372(ni)1(e)-373(p)-27(ora,)-372(to)-373(co)-372(ta)-373(b)-27(ede)-373(i)1(m)-373(z)-1(ab)1(iera\\252a)-373(miejsc)-1(e...)-372(i)-372(tak)-372(cie)-1(l)1(ak)55(a)]TJ -27.879 -13.549 Td[(m)27(u)1(s)-1(i)1(a\\252y)-501(ze)-501(sie)-1(n)1(i)-500(w)-1(y)1(pro)28(w)28(adzi\\242)-1(.)-500(Ale)-500(m)-1(i)-500(pr)1(z)-1(y)28(ob)1(iec)-1(a\\252y)84(,)-501(\\273e)-501(na)-500(t\\246)-501(ostatni)1(\\241)-501(mo)-56(j)1(\\241)]TJ 0 -13.55 Td[(go)-28(d)1(z)-1(in)1(\\246)-435(to)-435(me)-436(p)1(rze)-1(n)1(ios\\241)-435(do)-435(i)1(z)-1(b)28(y)84(,)-435(n)1(a)-435(\\252\\363\\273k)28(o)-435(p)-28(o)-27(d)-435(ob)1(razy)83(,)-434(i)-435(\\261wie)-1(c\\246)-435(m)-1(i)-434(z)-1(ap)1(al\\241...)1(i)]TJ 0 -13.549 Td[(ksi\\246dza)-337(s)-1(p)1(ro)28(w)28(adz\\241...)-336(a)-337(p)-27(ote)-1(m)-336(w)27(e)-337(\\261w)-1(i)1(\\241te)-1(cz)-1(n)1(e)-337(s)-1(zmat)27(y)-336(me)-337(przy)28(obl)1(e)-1(k)56(\\241)-337(i)-336(p)-27(o)-28(c)27(h)1(o)28(w)27(ek)]TJ 0 -13.549 Td[(spra)28(wi\\241)-261(gosp)-27(o)-28(dar)1(s)-1(ki)1(.)-261(Ju)1(\\261)-1(ci,)-261(d)1(a\\252am)-261(na)-261(wsz)-1(ystk)28(o...)-260(a)-261(lu)1(dzie)-261(p)-27(o)-28(c)-1(zc)-1(i)1(w)27(e)-261(sie)-1(r)1(ot)28(y)-261(mo\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-389(u)1(krzywdz\\241.)-388(Ni)1(e)-1(d)1(\\252)-1(u)1(go)-388(p)1(rz)-1(ecie)-1(k)-387(b)-28(ede)-388(im)-388(tu)-387(za)27(w)28(ala\\242,)-388(ni)1(e)-1(..)1(.)-388(i)-387(przy)-388(\\261wiadk)56(ac)27(h)]TJ 0 -13.549 Td[(mi)-333(przy)28(obieca\\252)-1(y)84(,)-333(pr)1(z)-1(y)-333(\\261w)-1(i)1(adk)56(ac)27(h)1(.)]TJ 27.879 -13.55 Td[({)-333(A)-334(n)1(ie)-334(p)1(rzykrzy)-333(s)-1(i\\246)-333(w)27(am)-333(s)-1(ame)-1(j)1(?)-334({)-333(g\\252os)-334(m)27(u)-332(nas)-1(i)1(\\241k\\252)-334(\\273a\\252o\\261)-1(ci\\241)-333(i)-333(\\252z)-1(ami.)]TJ 0 -13.549 Td[({)-329(Ca\\252kiem)-330(mi)-329(dob)1(rze)-1(,)-329(p)1(aniczku.)-329(A)-329(ma\\252o)-329(to)-329(\\261)-1(wiata)-329(d)1(o)-56(j)1(rz\\246)-330(se)-330(pr)1(z)-1(ez)-330(d)1(rzw)-1(i)1(?)]TJ -27.879 -13.549 Td[(kto)-405(p)1(rze)-1(j)1(dzie)-406(d)1(rog\\241,)-405(kt)1(o)-406(gd)1(z)-1(i)1(e)-1(sik)-405(zagada,)-405(k)1(to)-405(i)-405(z)-1(a)-55(jrzy)84(,)-405(kto)-405(na)28(w)28(e)-1(t)-405(r)1(z)-1(u)1(c)-1(i)-405(t)1(o)-406(p)-27(o-)]TJ 0 -13.549 Td[(cz)-1(ciw)27(e)-428(s\\252o)27(w)28(o,)-427(\\273)-1(e)-428(jak)1(b)28(ym)-428(se)-429(p)-27(o)-428(wsi)-428(w)28(\\246)-1(d)1(ro)28(w)27(a\\252a.)-427(A)-428(p)-27(\\363)-56(j)1(d\\241)-428(wsz)-1(y)1(s)-1(tki)1(e)-429(d)1(o)-428(r)1(ob)-28(ot)28(y)84(,)]TJ 0 -13.549 Td[(to)-345(k)28(ok)28(oszki)-345(p)-27(ogrze)-1(b)1(i\\241)-345(w)-344(\\261)-1(miec)-1(iac)28(h,)-344(gadzina)-344(p)-28(o)-27(c)27(hr)1(z)-1(\\241k)56(a)-345(za)-345(\\261c)-1(i)1(an\\241,)-344(pies)-1(k)1(i)-345(za)-56(j)1(rz\\241,)]TJ 0 -13.55 Td[(wr\\363b)1(le)-446(wpad)1(n\\241)-445(do)-445(sieni,)-445(s\\252o\\253ce)-446(\\271dzie)-1(b)1(k)28(o)-445(p)-28(o\\261wie)-1(ci)-445(pr)1(z)-1(ed)-445(zac)27(ho)-27(dem)-1(,)-445(a)-445(n)1(ie)-1(k)1(ie)-1(j)]TJ 0 -13.549 Td[(wisus)-360(j)1(aki)-359(c)-1(iepn)1(ie)-360(p)-27(e)-1(cyn)1(\\241)-360(i)-359(dzion)1(e)-1(k)-359(zle)-1(ci,)-359(ani)-359(si\\246)-360(cz)-1(\\252o)28(wie)-1(k)-359(sp)-28(o)-27(dzie)-1(j)1(e)-1(.)-359(A)-359(no)-28(cami)]TJ 0 -13.549 Td[(te\\273)-334(do)-333(mnie)-334(p)1(rzyc)27(h)1(o)-28(dz\\241,)-333(ju)1(\\261)-1(ci..)1(.)-334(a)-333(n)1(ie)-1(j)1(e)-1(d)1(ne...)]TJ 27.879 -13.549 Td[({)-263(Kt\\363\\273)-264(t)1(aki?)-263(kto?)-264({)-263(za)-56(j)1(rz)-1(a\\252)-263(z)-264(b)1(lisk)56(a)-264(w)-263(jej)-263(ot)28(w)28(arte,)-263(a)-264(j)1(akb)28(y)-263(n)1(ie)-1(wid)1(z)-1(\\241ce)-264(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[({)-388(A)-389(te)-389(mo)-55(je,)-389(co)-389(si\\246)-389(i)1(m)-389(ju)1(\\273)-389(da)28(wno)-388(p)-28(omar\\252o,)-388(a)-388(te)-389(p)-27(o)27(win)1(o)28(w)27(ate)-389(i)-388(zna)-55(jome)-1(.)]TJ -27.879 -13.55 Td[(Pr)1(a)28(w)-1(d)1(\\246)-381(m\\363)28(wi\\246)-1(,)-379(pan)1(ic)-1(zku)1(,)-380(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(\\241.)1(..)-380(A)-380(ki)1(e)-1(d)1(y\\261)-380({)-380(s)-1(ze)-1(p)1(ta\\252a)-380(z)-381(u)1(\\261)-1(miec)27(h)1(e)-1(m)-380(ni)1(e)-1(-)]TJ 0 -13.549 Td[(op)-27(o)27(wiedzian)1(e)-1(go)-345(sz)-1(cz\\246)-1(\\261c)-1(ia)-344(i)-345(s)-1(\\252o)-27(dycz)-1(y)-344({)-345(to)-345(pr)1(z)-1(y)1(s)-1(z\\252a)-345(do)-345(mni)1(e)-346(P)29(a)-1(n)1(ienk)56(a)-345(i)-345(p)-27(o)28(wie)-1(d)1(a)]TJ 0 -13.549 Td[(cic)27(h)28(u)1(\\261)-1(k)28(o:)-345(\\377)-56(Le\\273)-347(se)-1(,)-345(Jagato,)-346(P)28(an)-345(Jez)-1(u)1(s)-347(ci\\246)-346(wynagr)1(o)-28(dzi!..)1(.\")-346(Sama)-346(Cz\\246)-1(sto)-28(c)27(h)1(o)28(w)-1(sk)56(a,)]TJ 0 -13.549 Td[(zaraz)-354(p)-27(ozna\\252am...)-353(w)-353(k)28(or)1(onie)-353(ano)-353(b)29(y\\252a,)-353(w)-353(p\\252asz)-1(cz)-1(u)1(,)-353(a)-353(ca\\252a)-353(w)27(e)-353(z)-1(\\252o)-27(c)-1(ie)-353(i)-353(k)28(or)1(alac)27(h)1(.)]TJ 0 -13.549 Td[(P)28(og\\252ad)1(z)-1(i\\252a)-336(me)-336(p)-28(o)-335(g\\252o)27(wie)-336(i)-336(r)1(z)-1(ek\\252a:)-336(\\377)-55(Nie)-336(b)-28(\\363)-55(j)-335(s)-1(i\\246,)-336(sieroto,)-335(g)-1(osp)-27(o)-28(dy)1(ni\\241)-336(se)-336(b)-28(\\246dzies)-1(z)]TJ 0 -13.55 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(\\241)-333(n)1(a)-334(n)1(ie)-1(b)1(ies)-1(ki)1(m)-334(dw)28(orze)-1(,)-333(p)1(ani\\241)-333(se)-334(b)-28(\\246dzies)-1(z,)-333(dzie)-1(d)1(z)-1(i)1(c)-1(zk)56(\\241...\")]TJ 27.879 -13.549 Td[(I)-394(tak)-394(se)-395(ga)28(w)27(or)1(z)-1(y\\252a)-394(staru)1(c)27(ha)-394(k)1(ie)-1(j)-393(ta)-394(z)-1(asypi)1(a)-56(j\\241ca)-394(ptaszk)55(a,)-394(za\\261)-395(J)1(as)-1(io)-394(p)1(rzy-)]TJ -27.879 -13.549 Td[(c)27(h)29(ylon)28(y)-370(nad)-370(n)1(i\\241)-371(s\\252uc)28(ha\\252)-371(i)-370(p)1(atrza\\252)-371(kieb)28(y)-370(w)-371(jak)56(\\241\\261)-371(n)1(ie)-1(o)-27(dgad)1(nion)1(\\241)-371(g\\252\\241b,)-370(k)56(a)-56(j)-370(cos)-1(i)1(k)]TJ 0 -13.549 Td[(ta)-55(jnego)-374(b)1(ul)1(go)-28(c)-1(e)-374(i)-373(gada,)-373(i)-373(b\\252ysk)56(a,)-374(i)-373(co\\261)-374(takiego)-374(si\\246)-374(dzieje,)-374(cz)-1(ego)-374(j)1(u\\273)-374(zgo\\252a)-374(cz)-1(\\252o-)]TJ 0 -13.549 Td[(wiec)-1(zy)-353(rozum)-353(n)1(ie)-353(rozbierze)-1(.)-352(Zrob)1(i\\252o)-353(m)27(u)-352(si\\246)-353(jak)28(o\\261)-353(strasz)-1(n)1(ie)-1(,)-352(ale)-353(ni)1(e)-353(p)-28(or)1(e)-1(d)1(z)-1(i\\252)-353(si\\246)]TJ 0 -13.549 Td[(o)-28(d)1(e)-1(r)1(w)27(a\\242)-395(o)-28(d)-395(tej)-395(kr)1(usz)-1(yn)29(y)-395(lud)1(z)-1(k)1(ie)-1(j)1(,)-395(o)-28(d)-395(t)1(e)-1(go)-395(ze)-1(tla\\252ego)-395(\\271)-1(d)1(\\271)-1(b)1(\\252a,)-395(c)-1(o)-395(d)1(rga)-56(j)1(\\241c)-1(,)-395(k)1(ie)-1(b)29(y)]TJ 0 -13.55 Td[(ten)-257(promie\\253)-257(gas)-1(n)1(\\241c)-1(y)-257(w)-258(mroku)1(,)-258(j)1(e)-1(sz)-1(cze)-258(s)-1(e)-258(\\261ni\\252)-257(o)-258(dn)1(iac)27(h)-257(n)1(o)28(w)27(ego)-258(\\273yw)27(ot)1(a.)-258(P)1(ie)-1(r)1(ws)-1(zy)]TJ 0 -13.549 Td[(raz)-269(w)-269(\\273yc)-1(i)1(u)-269(tak)-268(z)-269(blisk)56(a)-269(za)-56(jr)1(z)-1(a\\252)-269(w)-269(cz\\252)-1(o)28(wiec)-1(z\\241,)-269(n)1(ie)-1(u)1(b\\252agan)1(\\241)-269(dol)1(\\246)-1(,)-268(to)-269(i)-269(n)1(ie)-269(dziw)28(ota,)]TJ 0 -13.549 Td[(\\273e)-317(pr)1(z)-1(ej\\241\\252)-316(go)-316(lu)1(t)28(y)-316(s)-1(tr)1(ac)27(h)1(,)-316(\\273)-1(a\\252o\\261\\242)-317(\\261c)-1(isn\\246\\252a)-316(du)1(s)-1(z\\246)-1(,)-316(\\252zy)-316(zatopi\\252y)-316(o)-27(c)-1(zy)83(,)-316(wsp)-28(\\363\\252cz)-1(u)1(j\\241ca)]TJ 0 -13.549 Td[(lit)1(o\\261)-1(\\242)-323(p)1(rzygi\\246\\252a)-322(go)-323(d)1(o)-322(z)-1(iemi,)-322(a)-322(gor\\241ca,)-322(proszalna)-322(mo)-28(dl)1(it)28(w)27(a)-322(sam)-1(a)-322(si\\246)-323(j)1(u\\273)-322(rw)28(a\\252)-1(a)-322(z)]TJ 0 -13.549 Td[(w)28(arg)-333(roz)-1(t)1(rz)-1(\\246s)-1(i)1(on)28(yc)27(h)1(.)]TJ 27.879 -13.55 Td[(St)1(ara)-333(prze)-1(c)28(kn\\246\\252a)-334(si\\246)-334(i)-333(u)1(nosz)-1(\\241c)-333(g\\252)-1(o)28(w)28(\\246)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(w)-334(zac)27(h)28(wycie)-1(:)]TJ 0 -13.549 Td[({)-333(Janio\\252)-333(pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(y)1(!)-333(ks)-1(i)1(\\246)-1(\\273yc)-1(zek)-334(m\\363)-55(j)-333(s)-1(erdecz)-1(n)28(y)1(!)]TJ\nET\nendstream\nendobj\n2275 0 obj <<\n/Type /Page\n/Contents 2276 0 R\n/Resources 2274 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2274 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2279 0 obj <<\n/Length 9900      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(714)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(On)-376(z)-1(a\\261)-377(p)-27(ote)-1(m)-377(d)1(\\252ugo)-377(sta\\252)-377(p)-28(o)-27(d)-377(j)1(ak)56(\\241)-1(\\261)-377(\\261c)-1(i)1(an\\241)-377(grzej\\241c)-377(s)-1(i\\246)-377(w)-377(s\\252o\\253cu)-377(i)-377(cies)-1(z\\241c)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)-333(t)28(ym)-333(dn)1(ie)-1(m)-333(jasn)28(ym)-334(i)-333(\\273ycie)-1(m,)-333(jak)1(ie)-334(wrza\\252o)-334(d)1(ok)28(o\\252)-1(a.)]TJ 27.879 -13.549 Td[(Bo)-334(i)-333(c\\363\\273)-1(,)-333(\\273e)-334(tam)-334(j)1(ak)56(a\\261)-334(du)1(s)-1(za)-334(cz\\252)-1(o)28(wiek)28(o)28(w)27(a)-333(s)-1(k)56(amla\\252a)-333(w)-334(pazur)1(ac)27(h)-333(\\261m)-1(i)1(e)-1(rci.)]TJ 0 -13.549 Td[(S\\252o\\253)1(c)-1(e)-391(nie)-391(przes)-1(ta\\252o)-391(\\261)-1(wieci\\242)-1(,)-391(sz)-1(u)1(mia\\252y)-391(z)-1(b)-27(o\\273)-1(a,)-391(b)1(ia\\252e)-392(c)28(hm)28(ury)-391(p)1(rze)-1(p)1(\\252yw)27(a\\252y)]TJ -27.879 -13.549 Td[(wysok)28(o,)-388(w)-1(y)1(s)-1(ok)28(o,)-388(d)1(z)-1(i)1(e)-1(ci)-388(ba)28(wi\\252y)-388(si\\246)-389(p)-27(o)-388(d)1(rogac)27(h)1(,)-388(ru)1(m)-1(ieni)1(\\252y)-388(s)-1(i\\246)-388(p)-27(o)-388(s)-1(ad)1(ac)27(h)-388(j)1(ab\\252k)56(a)]TJ 0 -13.55 Td[(do)-55(jr)1(z)-1(ew)27(a)-55(j\\241ce)-1(,)-273(w)-273(ku)1(\\271)-1(n)1(i)-273(bi\\252y)-273(m\\252ot)27(y)84(,)-273(ja\\273e)-274(r)1(oz)-1(lega\\252o)-273(s)-1(i\\246)-273(na)-273(ca\\252)-1(\\241)-273(wie\\261)-1(,)-273(k)1(to\\261)-274(w)28(\\363z)-274(ryc)28(h-)]TJ 0 -13.549 Td[(to)28(w)27(a\\252,)-233(kto\\261)-235(k)28(os\\246)-234(naku)28(w)28(a\\252)-234(s)-1(p)-27(osobi\\241c)-234(s)-1(i)1(\\246)-235(d)1(o)-234(\\273)-1(n)1(iw,)-234(pac)28(hni)1(a\\252)-235(c)28(hleb)-234(\\261wie\\273)-1(o)-234(u)1(piec)-1(zon)28(y)84(,)]TJ 0 -13.549 Td[(ra)-55(jco)28(w)27(a\\252y)-394(k)28(obiet)28(y)83(,)-394(c)27(h)28(u)1(s)-1(t)28(y)-394(s)-1(u)1(s)-1(zy\\252y)-394(s)-1(i)1(\\246)-396(p)-27(o)-394(p\\252otac)27(h)1(,)-395(r)1(usz)-1(ali)-394(si\\246)-395(p)-28(o)-394(p)-27(olac)27(h)-394(i)-394(ob)-28(ej-)]TJ 0 -13.549 Td[(\\261c)-1(iac)28(h,)-335(j)1(ak)28(o)-335(dn)1(ia)-335(b)28(y\\252o,)-334(jak)-335(za)28(w)-1(d)1(y)83(,)-334(gm)-1(era\\252)-335(si\\246)-336(r)1(\\363)-56(j)-334(lud)1(z)-1(ki)-334(w)-1(\\261r\\363)-27(d)-335(tr)1(o)-1(sk)-335(i)-334(z)-1(ab)1(ie)-1(g\\363)28(w)]TJ 0 -13.549 Td[(ani)-333(n)1(a)28(w)27(et)-334(m)28(y\\261l\\241c)-1(,)-333(kt)1(o)-334(tam)-333(pierwsz)-1(y)-333(sto)-28(c)-1(zy)-333(s)-1(i)1(\\246)-334(z)-334(br)1(z)-1(ega.)]TJ 27.879 -13.549 Td[(Za\\261)-1(b)29(y)-333(ta)-334(k)28(om)28(u)-333(pr)1(z)-1(ysz\\252)-1(o)-333(co)-334(z)-334(t)1(e)-1(go.)]TJ 0 -13.55 Td[(Wi\\246c)-334(i)-333(Jasio)-333(pr\\246dk)28(o)-333(si\\246)-334(otrz\\241sn\\241\\252)-333(z)-1(e)-334(sm)27(u)1(tku)-333(i)-333(p)-27(os)-1(ze)-1(d)1(\\252)-334(n)1(a)-334(wie\\261.)]TJ 0 -13.549 Td[(P)28(osiedzia\\252)-387(cz)-1(as)-387(jak)1(i\\261)-387(przy)-386(Mateusz)-1(u)1(,)-387(kt\\363r)1(e)-1(n)-386(St)1(ac)27(ho)28(w)28(\\241)-387(c)27(h)1(a\\252up)-27(\\246)-387(w)-1(y)1(c)-1(i\\241)-27(ga\\252)]TJ -27.879 -13.549 Td[(ju)1(\\273)-381(d)1(o)-380(zr\\246)-1(b)1(u;)-379(p)-28(osta\\252)-380(nad)-379(s)-1(ta)28(w)28(e)-1(m)-380(z)-380(P\\252os)-1(zk)28(o)28(w)27(\\241)-380(b)1(iel\\241c)-1(\\241)-380(p)1(\\252\\363tno;)-380(o)-27(dwiedzi\\252)-380(c)27(h)1(or\\241)]TJ 0 -13.549 Td[(J\\363zk)28(\\246)-1(;)-351(nas\\252uc)28(ha\\252)-351(s)-1(i\\246)-352(wyr)1(z)-1(ek)56(a\\253)-351(w)27(\\363)-55(jto)28(w)28(e)-1(j)1(;)-352(p)1(rzyjr)1(z)-1(a\\252)-351(s)-1(i\\246)-351(w)-352(ku)1(\\271)-1(n)1(i,)-351(jak)-351(k)28(o)28(w)27(al)-351(s)-1(t)1(ali\\252)]TJ 0 -13.549 Td[(k)28(osy)-500(i)-499(n)1(ac)-1(in)1(a\\252)-500(ostrza)-500(sierp)-27(\\363)28(w)-1(;)-499(za)-56(j)1(rz)-1(a\\252)-499(i)-499(na)-499(ogro)-28(d)1(y)83(,)-499(k)56(a)-56(j)-499(p)1(raco)27(w)28(a\\252o)-500(n)1(a)-56(j)1(wi\\246)-1(ce)-1(j)]TJ 0 -13.55 Td[(dzieuc)28(h)-225(i)-225(k)28(o)-1(b)1(iet,)-225(a)-226(wsz)-1(\\246dy)-225(wielc)-1(e)-225(b)28(yli)-225(m)28(u)-225(radzi,)-225(wita)-55(j\\241c)-226(p)1(rzyjaciels)-1(k)28(o)-225(i)-225(patr)1(z)-1(\\241c)-226(n)1(a)]TJ 0 -13.549 Td[(ni)1(e)-1(go)-323(z)-324(n)1(ie)-1(ma\\252\\241)-323(du)1(m)-1(\\241:)-323(b)-27(o)-28(\\242)-324(li)1(p)-28(ec)27(ki)1(e)-324(to)-323(b)28(y\\252o)-323(dzie)-1(c)28(k)28(o,)-323(w)-1(i)1(\\246)-1(c)-323(jakb)28(y)-323(w)-323(krewie)-1(\\253)1(s)-1(t)28(wie)]TJ 0 -13.549 Td[(ze)-334(ws)-1(zys)-1(t)1(kimi.)]TJ 27.879 -13.549 Td[(A)-485(dop)1(ie)-1(r)1(o)-486(n)1(a)-486(sam)27(y)1(m)-486(os)-1(t)1(a)-1(t)1(ku)-485(ws)-1(t\\241)-27(pi\\252)-485(do)-485(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)1(;)-486(stara)-485(sie)-1(d)1(z)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ed)-333(domem)-334(i)-333(pr)1(z)-1(\\246d\\252a)-333(w)27(e\\252n\\246,)-333(dziwi\\252)-334(si\\246)-334(tem)27(u)1(,)-333(gdy\\273)-333(o)-28(c)-1(zy)-333(m)-1(i)1(a\\252a)-334(p)1(rze)-1(wi\\241zane.)]TJ 27.879 -13.55 Td[({)-374(P)28(al)1(c)-1(ami)-374(zmac)-1(am)-374(i)-374(t)1(e)-1(\\273)-374(wie)-1(m,)-373(jak)56(a)-374(ni)1(tk)56(a,)-374(cie)-1(n)1(k)56(a)-374(c)-1(zy)-374(ogr)1(ub)1(nia)-374({)-373(t\\252uma-)]TJ -27.879 -13.549 Td[(cz)-1(y\\252a)-399(i)-400(bar)1(dzo)-400(u)1(c)-1(ies)-1(zona)-399(z)-400(jego)-400(o)-28(d)1(w)-1(i)1(e)-1(d)1(z)-1(in)1(,)-400(za)28(w)27(o\\252a\\252a)-400(n)1(a)-400(Jagu)1(s)-1(i\\246)-400(za)-56(j)1(\\246)-1(t\\241)-399(k)55(a)-55(j\\261)-400(w)]TJ 0 -13.549 Td[(p)-27(o)-28(dw)28(\\363rzu.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(le)-1(cia\\252a)-353(z)-1(araz,)-353(niec)-1(o)-353(in)1(o)-354(r)1(oz)-1(d)1(z)-1(ian)1(a,)-353(b)-28(o)-353(t)28(ylk)28(o)-353(w)27(e)-354(w)28(e)-1(\\252n)1(iaku)-353(i)-353(w)-354(k)28(osz)-1(u)1(li,)]TJ -27.879 -13.549 Td[(ale)-387(do)-55(jrza)28(w)-1(szy)-387(Jas)-1(ia)-387(p)1(rzys)-1(\\252on)1(i\\252a)-387(piersi)-387(r\\246k)56(am)-1(i)-387(i)-387(scz)-1(erwieniws)-1(zy)-387(si\\246)-388(k)1(ie)-1(j)-386(w)-1(i)1(\\261)-1(n)1(ia)]TJ 0 -13.55 Td[(uciek\\252a)-333(do)-333(c)27(ha\\252u)1(p)28(y)83(.)]TJ 27.879 -13.549 Td[({)-333(Jagu\\261,)-333(a)-334(wyn)1(ie\\261)-334(no)-333(m)-1(l)1(e)-1(k)56(a,)-333(to)-333(m)-1(o\\273e)-334(p)1(an)-333(Jas)-1(i)1(o)-334(si\\246)-334(p)1(rz)-1(ec)27(h)1(\\252o)-28(dzi!)]TJ 0 -13.549 Td[(Wyn)1(ies)-1(\\252a)-315(p)-27(okr)1(\\363tc)-1(e)-315(p)-27(e)-1(\\252n)1(\\241)-315(doi)1(nk)28(\\246)-315(i)-315(gar)1(n)28(usz)-1(ek,)-314(pr)1(z)-1(yb)1(rana)-314(ju)1(\\273)-315(w)-315(c)27(h)28(u)1(s)-1(tec)-1(zk)28(\\246)]TJ -27.879 -13.549 Td[(na)-265(g\\252o)28(w)-1(i)1(e)-1(,)-265(lec)-1(z)-266(tak)-265(jak)28(o\\261)-266(zes)-1(roman)1(a,)-266(\\273e)-266(kiej)-265(w)-1(zi\\246\\252a)-266(n)1(ale)-1(w)28(a\\242)-266(mle)-1(k)28(o,)-265(r\\246c)-1(e)-265(jej)-266(l)1(ata\\252y)]TJ 0 -13.549 Td[(i)-333(bl)1(ad\\252a,)-333(to)-333(c)-1(ze)-1(r)1(w)-1(ieni)1(\\252a)-334(si\\246)-334(n)1(a)-334(p)1(rze)-1(mian)1(,)-334(n)1(ie)-334(\\261m)-1(i)1(e)-1(j)1(\\241c)-334(p)-27(o)-28(dn)1(ie)-1(\\261\\242)-334(o)-28(cz\\363)27(w.)]TJ 27.879 -13.55 Td[(I)-444(c)-1(a\\252y)-444(cz)-1(as)-444(nie)-444(o)-28(d)1(e)-1(zw)27(a\\252a)-444(s)-1(i)1(\\246)-445(d)1(o)-445(n)1(iego)-445(an)1(i)-444(s)-1(\\252o)28(w)28(a)-445(i)-443(dopi)1(e)-1(ro)-444(k)1(ie)-1(j)-443(p)-28(osz)-1(ed\\252,)]TJ -27.879 -13.549 Td[(o)-28(d)1(pro)28(w)28(adzi\\252a)-333(go)-334(n)1(a)-334(d)1(rog\\246,)-334(p)1(atrz\\241c)-334(za)-334(n)1(im,)-333(p)-28(\\363ki)-333(j)1(e)-1(j)-333(z)-333(o)-28(c)-1(z\\363)28(w)-334(n)1(ie)-334(zgin\\241\\252.)]TJ 27.879 -13.549 Td[(Niewyp)-28(o)28(wiedziani)1(e)-225(p)1(ar\\252o)-224(j\\241)-224(cos)-1(i)1(k)-224(z)-1(a)-224(n)1(im)-224(i)-224(tak)-224(strasz)-1(n)1(ie)-224(p)-28(on)1(os)-1(i\\252o,)-223(\\273)-1(e)-224(ab)28(y)-224(si\\246)]TJ -27.879 -13.549 Td[(ni)1(e)-269(da\\242)-268(p)-28(ok)1(usi\\242)-1(,)-268(wp)1(ad\\252a)-268(do)-268(sadu,)-268(c)28(h)28(yci\\252a)-268(s)-1(i\\246)-268(obu)1(r\\241cz)-269(jak)1(ie)-1(go\\261)-268(drzew)27(a)-268(i)-268(pr)1(z)-1(yt)1(ula-)]TJ 0 -13.549 Td[(j\\241c)-224(s)-1(i)1(\\246)-225(do)-224(n)1(ie)-1(go)-224(stan\\246\\252a)-225(b)-27(ez)-225(tc)27(h)29(u)-224(pr)1(a)27(wie)-224(i)-224(przytomno\\261ci,)-224(nakr)1(yta,)-224(ni)1(b)28(y)-224(p\\252asz)-1(cz)-1(em,)]TJ 0 -13.549 Td[(ga\\252\\246)-1(ziami,)-269(zw)-1(is\\252ymi)-269(o)-28(d)-269(jab)1(\\252e)-1(k)1(;)-270(sta\\252a)-269(z)-270(pr)1(z)-1(yw)28(art)28(ymi)-269(p)-27(o)27(wiek)56(am)-1(i,)-269(z)-269(u\\261m)-1(iec)27(h)1(e)-1(m)-269(z)-1(a-)]TJ 0 -13.55 Td[(ta)-55(jon)28(ym)-310(w)-311(k)56(\\241tac)27(h)-310(w)28(a)-1(r)1(g,)-310(p)-28(e\\252na)-310(s)-1(zc)-1(z\\246)-1(\\261liw)28(o\\261)-1(ci,)-310(a)-311(zaraze)-1(m)-311(l)1(\\246)-1(ku)1(,)-310(i)-311(p)-27(e\\252)-1(n)1(a)-311(j)1(ak)28(o)28(w)-1(y)1(c)27(h\\261)]TJ 0 -13.549 Td[(\\252e)-1(z)-388(s\\252o)-28(dk)1(ic)27(h)-387(i)-388(l)1(ub)-27(e)-1(go)-388(d)1(ygotu)1(,)-388(j)1(ak)-388(wte)-1(d)1(y)83(,)-387(kiej)-387(patrza\\252a)-388(n)1(a)-388(niego)-388(p)1(rze)-1(z)-388(okn)1(o,)-388(w)]TJ 0 -13.549 Td[(tam)28(t\\241)-334(n)1(o)-28(c)-334(wio\\261nian)1(\\241.)]TJ 27.879 -13.549 Td[(Ale)-450(i)-449(Jas)-1(i)1(a)-450(jakb)29(y)-450(ci\\241)-28(gn)1(\\246)-1(\\252o)-450(za)-450(n)1(i\\241,)-450(b)-27(o)-450(c)28(ho)-28(cia\\273)-450(b)-27(e)-1(zw)27(ol)1(nie,)-450(a)-449(z)-1(agl\\241d)1(a\\252)-450(do)]TJ -27.879 -13.549 Td[(ni)1(c)27(h)-360(ni)1(e)-1(ki)1(e)-1(d)1(y)-361(n)1(a)-361(kr)1(\\363tk)55(\\241)-360(c)27(h)28(wil)1(\\246)-361(i)-361(o)-28(d)1(c)27(h)1(o)-28(dzi\\252)-361(d)1(z)-1(i)1(w)-1(n)1(ie)-361(rozrad)1(o)27(w)28(an)28(y)84(,)-361(a)-360(ju)1(\\273)-361(c)-1(o)-360(dn)1(ia)]TJ 0 -13.55 Td[(widy)1(w)27(a\\252)-281(j)1(\\241)-281(w)-281(k)28(o\\261c)-1(iele,)-281(k)1(l\\246)-1(cz)-1(a\\252a)-280(z)-1(a)28(wdy)-280(przez)-282(ca\\252\\241)-281(ms)-1(z\\246)-1(,)-280(a)-281(tak)-280(wie)-1(l)1(c)-1(e)-281(rozmo)-28(dlon)1(a)]TJ 0 -13.549 Td[(i)-259(j)1(akb)28(y)-259(wni)1(e)-1(b)-27(o)28(w)-1(zi\\246ta,)-259(\\273e)-260(sp)-28(ogl\\241d)1(a\\252)-259(na)-259(ni)1(\\241)-259(z)-1(e)-259(s)-1(\\252o)-28(d)1(kim)-259(wz)-1(ru)1(s)-1(zeniem)-1(,)-258(op)-28(o)28(wiada)-55(j\\241c)]TJ\nET\nendstream\nendobj\n2278 0 obj <<\n/Type /Page\n/Contents 2279 0 R\n/Resources 2277 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2264 0 R\n>> endobj\n2277 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2282 0 obj <<\n/Length 8701      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(715)]TJ -358.232 -35.866 Td[(kiedy)1(\\261)-334(o)-333(je)-1(j)-332(p)-28(ob)-27(o\\273)-1(n)1(o\\261)-1(ci:)]TJ 27.879 -13.549 Td[(Matk)56(a)-333(t)28(ylk)28(o)-333(wz)-1(ru)1(s)-1(zy\\252a)-333(ramionami.)]TJ 0 -13.549 Td[({)-333(Ma)-333(z)-1(a)-333(c)-1(o)-333(p)1(rz)-1(epr)1(as)-1(za\\242)-334(P)28(an)1(a)-334(Boga,)-333(ma...)]TJ 0 -13.549 Td[(Jasio)-464(mia\\252)-463(dusz\\246)-464(c)-1(zys)-1(t)1(\\241)-464(kieb)28(y)-463(te)-1(n)-463(n)1(a)-56(j)1(bielsz)-1(y)-463(kwiat,)-463(to)-464(i)-463(n)1(ie)-464(z)-1(r)1(oz)-1(u)1(m)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(t)27(y)1(ku,)-387(a)-388(\\273e)-388(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252a)-388(d)1(o)-388(ni)1(c)27(h,)-387(\\273e)-388(j\\241)-387(w)-1(sz)-1(y)1(s)-1(cy)-388(w)-387(dom)28(u)-387(lub)1(ili,)-387(\\273e)-388(w)-1(i)1(dzia\\252,)]TJ 0 -13.55 Td[(jak)56(a)-276(b)28(y\\252a)-276(p)-27(ob)-28(o\\273na,)-275(tom)27(u)-276(an)1(i)-276(p)-28(osta\\252o)-276(w)-277(g\\252o)28(wie)-277(j)1(akie)-276(nieb\\241d)1(\\271)-277(p)-27(os)-1(\\241d)1(z)-1(eni)1(e)-1(;)-276(zdziwi\\252)]TJ 0 -13.549 Td[(si\\246)-334(t)28(ylk)28(o)-333(teraz)-1(,)-333(\\273e)-334(o)-28(d)-333(j)1(e)-1(go)-333(p)1(rz)-1(y)1(jazdu)-333(n)1(ie)-334(b)28(y\\252a)-333(jesz)-1(cz)-1(e)-334(an)1(i)-333(razu.)]TJ 27.879 -13.549 Td[({)-299(W)1(\\252a\\261)-1(n)1(ie)-299(p)-28(os\\252a\\252am)-299(p)-27(o)-299(ni)1(\\241,)-299(b)-27(o)-298(m)-1(am)-299(d)1(u\\273o)-299(d)1(o)-299(p)1(ras)-1(o)28(w)28(ania)-298({)-299(o)-27(drze)-1(k)1(\\252a)-299(mat-)]TJ -27.879 -13.549 Td[(k)56(a.)]TJ 27.879 -13.549 Td[(I)-333(przysz)-1(\\252a)-333(wkr\\363tce)-334(tak)-333(wys)-1(t)1(ro)-56(j)1(ona,)-333(\\273e)-334(Jasio)-334(a\\273)-333(s)-1(i\\246)-333(z)-1(d)1(umia\\252.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to,)-333(idziec)-1(ie)-333(na)-333(w)27(es)-1(ele?)]TJ 0 -13.55 Td[({)-333(A)-334(mo\\273e)-334(pr)1(z)-1(ys\\252ali)-333(do)-333(w)27(as)-333(z)-334(w)27(\\363)-27(dk)56(\\241?)-334({)-333(zapisz)-1(cz)-1(a\\252a)-333(kt\\363r)1(a\\261)-334(z)-334(dziew)27(cz)-1(y)1(n.)]TJ 0 -13.549 Td[({)-291(Za\\261b)28(y)-290(ta)-291(k)1(to)-291(\\261m)-1(i)1(a\\252,)-291(d)1(y\\242)-291(b)28(ym)-291(go)-290(pr)1(z)-1(ep)-28(\\246dzi\\252a)-290(na)-290(c)-1(zte)-1(r)1(y)-291(wiatr)1(y!)-290({)-291(o\\261m)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-334(kr)1(a\\261)-1(n)1(ie)-1(j)1(\\241c)-334(kieb)28(y)-333(r\\363\\273a,)-333(\\273)-1(e)-333(to)-334(wsz)-1(yscy)-334(n)1(a)-334(n)1(i\\241)-333(patr)1(z)-1(eli.)]TJ 27.879 -13.549 Td[(St)1(ara)-470(zap)-28(\\246dzi\\252a)-470(j)1(\\241)-470(zaraz)-470(do)-469(pr)1(as)-1(o)28(w)27(an)1(ia,)-469(p)-28(ol)1(e)-1(cia\\252y)-470(za)-470(n)1(i\\241)-470(or)1(gani\\261c)-1(i)1(anki)]TJ -27.879 -13.549 Td[(wraz)-293(z)-292(Jas)-1(i)1(e)-1(m)-292(i)-292(tak)-292(s)-1(i)1(\\246)-293(im)-292(w)-1(k)1(r\\363tce)-293(zrobi)1(\\252)-1(o)-292(w)28(e)-1(so\\252o,)-292(tak)-292(gru)1(c)27(hal)1(i)-292(\\261)-1(miec)27(hem)-293(z)-292(b)-27(e)-1(le)]TJ 0 -13.55 Td[(g\\252up)1(s)-1(t)28(w)28(a)-334(i)-333(wrze)-1(szc)-1(ze)-1(li)1(,)-333(ja\\273e)-334(organ)1(i\\261)-1(cin)1(a)-334(m)28(usia\\252a)-334(p)1(rzyk)56(arca\\242)-1(:)]TJ 27.879 -13.549 Td[({)-453(Cic)27(h)1(o)-28(cie)-1(,)-452(s)-1(r)1(oki!)-453(Jasiu)1(,)-453(id)1(\\271)-454(lepi)1(e)-1(j)-452(do)-453(ogro)-27(du)1(,)-453(ni)1(e)-454(wyp)1(ada)-453(ci)-453(tu)-452(s)-1(u)1(s)-1(zy\\242)]TJ -27.879 -13.549 Td[(z\\246)-1(b)-27(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[(T)83(o)-272(rad)-272(nierad)-272(wzi\\241\\252)-273(ksi\\241\\273k)28(\\246)-273(i)-273(p)-27(o)28(wl\\363k\\252)-273(si\\246)-273(j)1(ak)-273(zwykle)-273(w)-272(p)-28(ole,)-272(i)-273(t)1(am)-273(k)55(a)-55(j\\261)-273(d)1(a-)]TJ -27.879 -13.549 Td[(lek)28(o)-270(z)-1(a)-270(wsi\\241,)-270(n)1(a)-270(mie)-1(d)1(z)-1(ac)28(h,)-270(p)-27(o)-28(d)-269(gru)1(s)-1(zam)-1(i)1(,)-270(na)-270(gr)1(anicz)-1(n)29(yc)27(h)-269(k)28(op)-28(cac)27(h)1(,)-270(p)1(rz)-1(esiadyw)28(a\\252)]TJ 0 -13.55 Td[(zag\\252)-1(\\246bi)1(on)28(y)-333(w)27(cz)-1(y)1(taniu)-333(al)1(b)-28(o)-333(jeno)-333(se)-334(me)-1(d)1(ytuj)1(\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Ale)-279(Jagu)1(s)-1(ia)-279(d)1(obr)1(z)-1(e)-279(ju)1(\\273)-279(z)-1(n)1(a\\252a)-279(te)-279(s)-1(amotne)-279(sc)27(hr)1(onisk)56(a,)-279(d)1(obrze)-279(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a,)-278(k)56(a)-56(j)]TJ -27.879 -13.549 Td[(go)-443(szuk)56(a\\242)-443(ut\\246s)-1(k)1(nion)29(ym)-1(i)-442(o)-28(cz)-1(ami,)-442(k)56(a)-56(j)-442(si\\246)-443(ni)1(e)-1(\\261\\242)-443(do)-442(niego)-443(c)28(ho)-28(\\242b)28(y)-442(jeno)-442(t\\241)-443(m)28(y\\261l\\241)]TJ 0 -13.549 Td[(rad)1(os)-1(n)1(\\241;)-378(kr)1(\\241\\273)-1(y)1(\\252)-1(a)-377(b)-28(o)28(wiem)-378(k)28(ole)-378(niego)-378(ki)1(e)-1(b)28(y)-377(ten)-378(mot)28(yl)-377(w)-378(kr\\246gu)-377(\\261)-1(wiat\\252a)-378(i)-377(kr)1(\\241\\273)-1(y\\242)]TJ 0 -13.549 Td[(m)27(u)1(s)-1(i)1(a\\252a,)-424(par)1(\\252)-1(o)-423(j\\241)-424(za)-424(nim)-424(n)1(ie)-1(p)-27(o)28(ws)-1(tr)1(z)-1(ymani)1(e)-425(i)-423(w)-1(l)1(e)-1(k\\252o)-424(tak)-423(niepr)1(z)-1(epar)1(c)-1(ie,)-424(\\273e)-425(si\\246)]TJ 0 -13.55 Td[(ju)1(\\273)-483(d)1(a\\252a)-482(b)-28(ez)-482(pami\\246)-1(ci)-482(n)1(a)-482(w)27(ol\\246)-482(tej)-482(j)1(akiej\\261)-482(lub)-27(e)-1(j)-481(mo)-28(c)-1(y)84(,)-482(d)1(a\\252)-1(a)-481(s)-1(i\\246)-482(jak)1(b)28(y)-482(w)28(o)-28(dom)]TJ 0 -13.549 Td[(spienion)29(ym)-1(,)-422(co)-423(j\\241)-422(p)-28(on)1(os)-1(i)1(\\252)-1(y)-422(w)-423(jak)28(o)28(w)28(e)-1(\\261)-423(wy\\261nion)1(e)-423(\\261)-1(wiat)28(y)-422(s)-1(zc)-1(z\\246)-1(\\261liw)28(o\\261c)-1(i,)-422(da\\252a)-423(si\\246)]TJ 0 -13.549 Td[(ws)-1(zystk)56(\\241)-323(dusz\\241)-323(i)-323(s)-1(erce)-1(m,)-323(an)1(i)-323(na)28(w)28(e)-1(t)-322(m)27(y\\261l\\241c,)-323(na)-323(j)1(aki)-323(b)1(rze)-1(g)-323(j)1(\\241)-323(w)-1(y)1(nies)-1(\\241)-323(n)1(i)-323(n)1(a)-323(jak)56(\\241)]TJ 0 -13.549 Td[(dol)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(I)-317(c)-1(zy)-317(s)-1(i)1(\\246)-318(p)-27(\\363\\271)-1(n)1(\\241)-318(n)1(o)-28(c\\241)-318(k)1(\\252ad\\252a)-317(do)-317(s)-1(n)29(u,)-317(cz)-1(y)-317(si\\246)-318(r)1(anki)1(e)-1(m)-317(z)-1(r)1(yw)27(a\\252a)-317(z)-318(p)-27(o\\261c)-1(ieli,)-317(to)]TJ -27.879 -13.55 Td[(za)27(wd)1(y)-334(j)1(e)-1(d)1(n)28(ym)-333(pacie)-1(r)1(z)-1(em)-334(d)1(ygota\\252o)-334(j)1(e)-1(j)-332(s)-1(erc)-1(e:)]TJ 27.879 -13.549 Td[({)-333(Obacz)-1(\\246)-333(go)-334(zno)28(wu!)-333(ob)1(ac)-1(z\\246)-1(!)]TJ 0 -13.549 Td[(A)-284(nieraz,)-284(kiedy)-284(kl\\246c)-1(za\\252a)-285(p)1(rze)-1(d)-284(o\\252tar)1(z)-1(em)-285(i)-284(ks)-1(i)1(\\241dz)-285(wysz)-1(ed\\252)-284(z)-1(e)-284(m)-1(sz)-1(\\241,)-284(i)-284(z)-1(agr)1(a-)]TJ -27.879 -13.549 Td[(\\252y)-404(p)1(rz)-1(ejm)28(uj)1(\\241c)-1(\\241)-404(n)29(ut\\241)-404(organ)29(y)83(,)-403(i)-404(wion\\246\\252y)-404(k)56(adzie)-1(l)1(ne)-404(dym)28(y)83(,)-403(i)-404(roztrz\\246)-1(s\\252y)-404(si\\246)-405(gor)1(\\241c)-1(e)]TJ 0 -13.549 Td[(sz)-1(ept)28(y)-429(pacierz)-1(y)84(,)-429(i)-429(kiedy)-429(zapatrzy\\252a)-429(s)-1(i)1(\\246)-430(rozm)-1(o)-27(dlon)28(y)1(m)-1(i)-429(o)-28(cz)-1(ami)-429(w)-430(J)1(as)-1(ia,)-429(kt)1(\\363re)-1(n)]TJ 0 -13.549 Td[(bi)1(a\\252o)-312(pr)1(z)-1(yb)1(ran)28(y)84(,)-312(sm)27(u)1(k\\252y)83(,)-311(\\261)-1(l)1(ic)-1(zn)28(y)84(,)-312(ze)-312(z)-1(\\252o\\273on)28(ymi)-312(r)1(\\246)-1(k)56(ami)-312(sn)28(u\\252)-312(si\\246)-312(w)-312(t)28(yc)28(h)-312(d)1(ymac)27(h)-311(i)]TJ 0 -13.55 Td[(k)28(olor)1(ac)27(h,)-305(jakie)-306(b)1(i\\252y)-306(z)-306(okien,)-306(t)1(o)-306(s)-1(i\\246)-306(j)1(e)-1(j)-305(w)-1(i)1(dzia\\252o,)-306(co)-306(\\273)-1(y)1(w)-1(y)-305(jan)1(io\\252)-306(z)-1(es)-1(t)1(\\241)-28(pi\\252)-306(z)-306(ob)1(raz)-1(u)]TJ 0 -13.549 Td[(i)-367(oto)-368(p)1(\\252yni)1(e)-368(ku)-367(ni)1(e)-1(j)-367(ze)-368(s)-1(\\252o)-28(d)1(kim)-367(prze)-1(\\261mie)-1(c)28(hem)-1(.)1(..)-367(idzie...)-367(\\273)-1(e)-368(r)1(a)-56(j)1(e)-368(ot)28(w)-1(i)1(e)-1(r)1(a\\252)-1(y)-367(si\\246)-368(w)]TJ 0 -13.549 Td[(jej)-331(d)1(usz)-1(y)84(,)-331(pad)1(a\\252a)-332(n)1(a)-331(t)28(w)27(arz)-331(w)-332(p)1(ro)-28(c)28(h,)-331(p)1(rzywie)-1(r)1(a)-56(j)1(\\241c)-332(w)27(ar)1(gam)-1(i)-330(do)-331(m)-1(i)1(e)-1(j)1(s)-1(c,)-331(k)56(a)-56(j)-331(p)1(rze)-1(-)]TJ 0 -13.549 Td[(sz)-1(\\252y)-366(jego)-367(stop)28(y)83(,)-366(i)-366(p)-28(or)1(w)27(an)1(a)-367(zac)27(h)28(wyce)-1(n)1(iem)-1(,)-366(\\261piew)27(a\\252a)-366(w)-1(sz)-1(y)1(s)-1(tk)56(\\241)-366(m)-1(o)-28(c\\241)-367(cz\\252)-1(o)28(wiec)-1(ze)-1(j)]TJ 0 -13.549 Td[(sz)-1(cz)-1(\\246\\261)-1(l)1(iw)27(o\\261c)-1(i)1(:)]TJ 27.879 -13.55 Td[({)-333(\\221wi\\246t)28(y!)-333(\\221wi\\246t)27(y)1(!)-333(\\221wi\\246t)27(y)1(!)]TJ 0 -13.549 Td[(A)-425(n)1(ieraz)-425(i)-425(msz)-1(a)-425(si\\246)-425(sk)28(o\\253cz)-1(y\\252a,)-424(i)-425(lu)1(dzie)-425(si\\246)-425(p)-28(or)1(oz)-1(c)27(h)1(o)-28(d)1(z)-1(il)1(i,)-425(i)-424(Jam)27(b)1(ro\\273)-425(ju)1(\\273)]TJ\nET\nendstream\nendobj\n2281 0 obj <<\n/Type /Page\n/Contents 2282 0 R\n/Resources 2280 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2280 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2286 0 obj <<\n/Length 9724      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(716)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(w)-417(pust)28(ym)-417(k)28(o\\261)-1(ciele)-418(p)1(rz)-1(edzw)28(ania\\252)-417(klu)1(c)-1(zami,)-417(a)-417(ona)-417(jes)-1(zcz)-1(e)-418(k)1(l\\246)-1(cza\\252)-1(a,)-417(zapat)1(rz)-1(on)1(a)]TJ 0 -13.549 Td[(w)-430(pu)1(s)-1(te)-430(p)-27(o)-430(Jasiu)-429(m)-1(iejsce)-1(,)-430(r)1(oz)-1(mo)-28(d)1(lona)-430(p)1(rze)-1(n)1(a)-56(j)1(\\261)-1(wi\\246ts)-1(z\\241)-430(cic)27(h)1(o\\261)-1(ci\\241)-430(u)1(p)-28(o)-55(jenia,)-429(t\\241)]TJ 0 -13.549 Td[(rad)1(o\\261)-1(ci\\241)-398(nab)1(rzm)-1(i)1(a\\252\\241)-399(d)1(o)-398(b)-27(\\363lu,)-398(t)28(ymi)-398(j)1(e)-1(n)1(o)-398(\\252)-1(zami,)-398(co)-398(jej)-398(s)-1(ame)-398(s)-1(p)1(\\252)-1(y)1(w)27(a\\252y)-398(z)-398(o)-28(cz)-1(\\363)28(w,)]TJ 0 -13.549 Td[(kiej)-333(ziarn)1(a)-334(p)-27(e\\252)-1(n)1(e)-1(,)-333(w)28(a\\273)-1(k)1(ie)-334(i)-333(pr)1(z)-1(ec)-1(zyste)-1(.)]TJ 27.879 -13.549 Td[(\\233e)-334(ju\\273)-334(d)1(nie)-334(b)28(y\\252y)-334(d)1(la)-334(n)1(ie)-1(j)-333(jak)28(o)-333(te)-335(ci\\241)-28(g\\252e)-334(\\261)-1(wi\\246ta,)-334(j)1(ak)28(o)-334(te)-334(uro)-27(c)-1(zyste)-335(o)-28(d)1(pu)1(s)-1(t)28(y)]TJ -27.879 -13.55 Td[(w)-380(nieustann)1(e)-1(j)-379(rado\\261c)-1(i)-379(nab)-27(o\\273)-1(e\\253st)28(w)27(a,)-380(j)1(akie)-381(si\\246)-380(c)-1(i\\246giem)-381(o)-28(d)1(pr)1(a)27(wia\\252o)-380(w)-380(jej,)-380(d)1(usz)-1(y)84(,)]TJ 0 -13.549 Td[(b)-27(o)-325(k)1(ie)-1(d)1(y)-324(wyjr)1(z)-1(a\\252a)-324(w)-325(p)-27(ole,)-324(to)-324(dzw)27(on)1(i\\252y)-324(jej)-324(t)28(ym)-324(s)-1(am)28(ym)-325(d)1(o)-56(jr)1(z)-1(a\\252e)-324(k\\252os)-1(y)84(,)-324(dzw)27(on)1(i\\252a)]TJ 0 -13.549 Td[(spiec)-1(zona)-263(zie)-1(mia,)-263(d)1(z)-1(w)28(oni)1(\\252)-1(y)-262(s)-1(ad)1(y)-263(przygi\\246te)-264(p)-27(o)-28(d)-262(c)-1(i\\246\\273)-1(ar)1(e)-1(m)-263(o)28(w)27(o)-28(c\\363)28(w)-1(,)-262(dzw)27(oni)1(\\252y)-263(b)-28(or)1(y)]TJ 0 -13.549 Td[(dal)1(e)-1(ki)1(e)-406(i)-404(te)-406(w)28(\\246)-1(d)1(ru)1(j\\241ce)-406(c)28(hm)28(ury)84(,)-405(i)-404(ta)-405(przena)-56(j)1(\\261)-1(wi\\246tsz)-1(a)-405(h)1(os)-1(ti)1(a)-405(s)-1(\\252o\\253)1(c)-1(a,)-405(wyn)1(ies)-1(ion)1(a)]TJ 0 -13.549 Td[(nad)-461(\\261wiatem)-1(,)-461(a)-462(wsz)-1(ystk)28(o)-461(\\261)-1(p)1(ie)-1(w)28(a\\252o)-462(wraz)-462(z)-462(j)1(e)-1(j)-461(d)1(usz)-1(\\241)-461(jeden)-461(nieb)-27(os)-1(i\\246\\273)-1(n)29(y)-462(h)29(ym)-1(n)]TJ 0 -13.549 Td[(dzi\\246k)28(c)-1(zyn)1(ie)-1(n)1(ia)-333(i)-333(rado\\261c)-1(i)1(:)]TJ 27.879 -13.55 Td[({)-333(\\221wi\\246t)28(y!)-333(\\221wi\\246t)28(y!)-333(\\221wi\\246t)27(y)1(!)]TJ 0 -13.549 Td[(Hej,)-333(jak)1(i)-334(t)1(o)-334(\\261wiat)-333(\\261)-1(li)1(c)-1(zn)28(y)83(,)-333(ki)1(e)-1(j)-333(si\\246)-334(n)1(a\\253)-333(patr)1(z)-1(\\241)-333(rozmi\\252o)27(w)28(ane)-333(o)-28(c)-1(zy!)]TJ 0 -13.549 Td[(A)-250(jak)1(i)-250(to)-250(c)-1(z\\252o)27(wiek)-250(mo)-28(c)-1(en)-250(w)-250(onej)-250(\\261wi\\246)-1(tej)-250(go)-28(d)1(z)-1(i)1(nie!)-250(Z)-250(B)-1(ogi)1(e)-1(m)-250(b)28(y)-250(si\\246)-251(zm)-1(aga\\252,)]TJ -27.879 -13.549 Td[(\\261m)-1(ierci)-382(b)28(y)-382(s)-1(i\\246)-382(nie)-383(d)1(a\\252,)-382(na)28(w)27(et)-382(doli)-382(b)28(y)-382(si\\246)-383(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\252.)-383(\\233ycie)-383(m)28(u)-382(jedn)29(ym)-383(w)28(e)-1(se)-1(lem,)]TJ 0 -13.549 Td[(a)-474(br)1(ate)-1(m)-474(c)27(h)1(o)-28(\\242)-1(b)29(y)-474(i)-474(te)-1(n)-473(s)-1(t)28(w)28(\\363r)-474(na)-55(jmarn)1(ie)-1(j)1(s)-1(zy!)-474(P)1(rz)-1(ed)-474(k)56(a\\273dym)-474(dn)1(ie)-1(m)-474(b)28(y)-474(kl)1(\\246)-1(k)56(a\\252)]TJ 0 -13.55 Td[(w)-410(p)-27(o)-28(d)1(z)-1(i\\246ce)-1(,)-409(k)56(a\\273)-1(d)1(e)-1(j)-409(n)1(o)-28(c)-1(y)-409(b)29(y)-410(b)1(\\252ogos)-1(\\252a)28(wi\\252)-410(i)-409(n)1(a)-410(k)56(a\\273)-1(d)1(ym)-410(miejsc)-1(u)-409(wsz)-1(ystek)-409(b)28(y)-409(s)-1(i\\246)]TJ 0 -13.549 Td[(rozda)28(w)28(a\\252)-446(m)-1(i)1(\\246)-1(d)1(z)-1(y)-445(bli)1(\\271)-1(n)1(ie)-1(,)-445(a)-446(b)-27(ogac)-1(ze)-1(m)-446(osta)-56(j)1(e)-1(,)-445(a)-446(ci\\246)-1(gi)1(e)-1(m)-446(m)28(u)-446(j)1(e)-1(sz)-1(cze)-447(p)1(rzyb)28(yw)28(a)]TJ 0 -13.549 Td[(mo)-28(c)-1(y)84(,)-333(k)28(o)-28(c)27(h)1(ani)1(a)-334(i)-333(d)1(ni)-333(bar)1(z)-1(ej)-333(c)-1(u)1(dn)28(y)1(c)27(h.)]TJ 27.879 -13.549 Td[(\\221wiat)1(am)-1(i)-429(du)1(s)-1(za)-430(si\\246)-430(jego)-430(nosi,)-429(g\\363rni)1(e)-431(w)28(e)-430(gwiaz)-1(d)1(y)-430(p)1(atrzy)-430(z)-430(b)1(lisk)55(a,)-429(nieba)]TJ -27.879 -13.549 Td[(zuc)27(h)29(w)27(ale)-291(s)-1(i)1(\\246)-1(ga,)-291(o)-291(wiec)-1(znej)-291(\\261ni)-290(s)-1(zc)-1(z\\246)-1(\\261liw)28(o\\261c)-1(i,)-290(b)-28(o)-291(si\\246)-291(jej)-291(widzi,)-291(\\273e)-292(n)1(ie)-291(m)-1(a)-291(j)1(u\\273)-291(kres)-1(u)]TJ 0 -13.55 Td[(ni)-333(zap)-27(ory)-333(la)-333(jej)-333(m)-1(o)-27(c)-1(y)-333(i)-333(k)28(o)-28(c)27(h)1(ani)1(a.)]TJ 27.879 -13.549 Td[(T)83(ak)-333(si\\246)-334(to)-333(i)-333(Jagusi)-333(w)-1(i)1(dzia\\252o)-334(w)-333(t\\246)-334(p)-27(or\\246)-334(mi\\252o)28(w)27(an)1(ia.)]TJ 0 -13.549 Td[(Dn)1(ie)-351(s)-1(z\\252y)-350(z)-1(wycz)-1(a)-55(jn)1(e)-1(,)-350(dn)1(ie)-351(zno)-55(jn)28(yc)28(h)-350(pr)1(z)-1(ygoto)28(w)28(a\\253)-350(do)-350(\\273)-1(n)1(iw,)-351(a)-350(ona)-350(u)28(wij)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-394(p)1(rzy)-393(rob)-27(otac)27(h)-393(r)1(oz)-1(\\261pi)1(e)-1(w)28(ana)-393(ni)1(b)28(y)-393(sk)27(o)28(wron)1(e)-1(k)1(,)-393(nies)-1(t)1(rud)1(z)-1(eni)1(e)-394(rad)1(os)-1(n)1(a)-393(i)-393(w)27(es)-1(el-)]TJ 0 -13.549 Td[(ni)1(e)-355(rozkwit\\252a,)-354(k)1(ie)-1(b)29(y)-354(ta)-354(r\\363\\273a)-355(w)-354(j)1(e)-1(j)-354(ogr)1(\\363)-28(dk)1(u,)-354(ki)1(e)-1(b)28(y)-353(te)-355(malwy)-354(s)-1(m)28(uk)1(\\252)-1(a)-354(i)-354(k)1(ie)-1(b)29(y)-354(te)-1(n)]TJ 0 -13.55 Td[(kwiat)-318(na)-318(B)-1(o\\273ym)-319(zagonie)-319(n)1(a)-56(j)1(\\261)-1(li)1(c)-1(zniejsz)-1(a)-318(i)-319(t)1(a)-1(k)-318(ci\\241)-28(gn)1(\\241c)-1(a)-319(o)-27(c)-1(zy)83(,)-318(tak)-318(w)27(ab)1(i\\241c)-1(a)-318(jar)1(z)-1(\\241-)]TJ 0 -13.549 Td[(cym)-1(i)-331(\\261)-1(l)1(e)-1(p)1(iami,)-332(tak)-331(c)-1(i)1(\\246)-1(giem)-332(roze)-1(\\261miana,)-331(\\273)-1(e)-332(na)28(w)28(e)-1(t)-331(s)-1(tar)1(z)-1(y)-331(c)27(h)1(o)-28(dzili)-331(z)-1(a)-331(ni\\241)-332(o)-27(c)-1(zam)-1(i)1(,)]TJ 0 -13.549 Td[(za\\261)-356(p)1(arob)-27(c)-1(y)-355(zac)-1(z\\246)-1(l)1(i)-355(s)-1(i)1(\\246)-356(zno)28(wu)-355(k)28(ole)-355(ni)1(e)-1(j)-354(kr\\246c)-1(i\\242)-355(i)-355(wzdyc)28(ha)-56(j)1(\\241c)-1(y)-354(w)-1(y)1(s)-1(ta)28(w)28(a\\242)-356(p)-27(o)-28(d)-355(j)1(e)-1(j)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(\\241,)-334(al)1(e)-334(o)-28(d)1(pra)28(wia\\252a)-333(k)55(a\\273dego.)]TJ 27.879 -13.549 Td[({)-320(\\233e)-1(b)28(y)1(\\261)-321(na)28(w)28(e)-1(t)-320(wrosn\\241\\252)-320(w)-321(ziem)-1(i)1(\\246)-1(,)-320(to)-320(i)-320(tak)-320(n)1(ic)-1(zego)-321(n)1(ie)-321(wystoisz)-321({)-320(s)-1(zyd)1(z)-1(i\\252a.)]TJ 0 -13.55 Td[({)-322(Z)-322(ku)1(\\273)-1(d)1(e)-1(go)-322(si\\246)-322(ju)1(\\273)-323(p)1(rze)-1(\\261m)-1(i)1(e)-1(w)28(a!)-322(A)-322(h)1(arna)-322(k)1(ie)-1(b)29(y)-322(dziedzic)-1(zk)56(a!)-322({)-322(sk)55(ar)1(\\273)-1(y)1(li)-322(si\\246)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-277(M)1(ate)-1(u)1(s)-1(zu,)-277(k)1(t\\363ry)-277(jeno)-277(w)28(e)-1(stc)27(h)1(n\\241\\252)-277(\\273a\\252)-1(o\\261ni)1(e)-1(,)-277(gd)1(y\\273)-278(n)1(a)27(w)28(et)-278(on)-276(t)28(yla)-277(jeno)-277(ws)-1(k)28(\\363r)1(a\\252,)]TJ 0 -13.549 Td[(co)-482(m\\363g\\252)-482(n)1(ie)-1(k)56(a)-55(j)-481(o)-482(zm)-1(ierzc)27(h)28(u)-481(p)-27(ogad)1(yw)27(a\\242)-482(z)-482(D)1(om)-1(in)1(ik)28(o)28(w)27(\\241)-481(a)-482(p)1(atrze)-1(\\242)-482(za)-481(Jagusi\\241)]TJ 0 -13.549 Td[(zw)-1(i)1(ja)-56(j)1(\\241c)-1(\\241)-398(s)-1(i\\246)-399(p)-27(o)-399(izbi)1(e)-400(i)-398(s)-1(\\252u)1(c)27(ha\\242)-399(j)1(e)-1(j)-398(pr)1(z)-1(e\\261)-1(p)1(iew)27(ek.)-399(P)29(atrza\\252)-399(te)-1(\\273)-399(i)-398(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252)-398(tak)]TJ 0 -13.549 Td[(gor\\241co,)-316(\\273e)-316(o)-28(dc)28(ho)-28(d)1(z)-1(i\\252)-316(coraz)-316(c)27(h)1(m)27(u)1(rn)1(ie)-1(j)1(s)-1(zy)-316(i)-315(c)-1(or)1(a)-1(z)-316(cz)-1(\\246\\261)-1(ciej)-316(zagl\\241d)1(a\\252)-316(do)-316(k)56(arcz)-1(m)28(y)83(,)-315(a)]TJ 0 -13.549 Td[(p)-27(ote)-1(m)-335(w)-334(c)27(ha\\252u)1(pie)-335(wyp)1(ra)28(w)-1(i)1(a\\252)-335(r\\363\\273ne)-335(b)1(rew)27(erie.)-335(Ju)1(\\261)-1(ci,)-334(c)-1(o)-334(ju)1(\\273)-335(na)-56(j)1(bar)1(z)-1(ej)-334(dosta)27(w)28(a\\252o)]TJ 0 -13.55 Td[(si\\246)-407(T)83(eres)-1(ce)-1(,)-406(\\273e)-407(j)1(u\\273)-407(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-406(ledwie)-406(\\273)-1(y)1(w)27(a)-406(z)-1(e)-406(z)-1(gr)1(yz)-1(ot)28(y)84(,)-406(tote\\273)-407(s)-1(p)-27(otk)56(a)28(ws)-1(zy)-406(kiedy\\261)]TJ 0 -13.549 Td[(Jagu)1(s)-1(i\\246)-333(o)-28(dwr\\363)-27(c)-1(i\\252a)-333(s)-1(i)1(\\246)-334(o)-28(d)-333(n)1(ie)-1(j)-333(p)1(lec)-1(ami)-333(i)-333(s)-1(p)1(lun)1(\\246)-1(\\252a.)]TJ 27.879 -13.549 Td[(Ale)-334(J)1(agusia,)-333(z)-1(ap)1(atrzona)-333(k)55(a)-55(j\\261)-333(prze)-1(d)-332(s)-1(i\\246,)-333(pr)1(z)-1(es)-1(z\\252a)-334(n)1(a)28(w)27(et)-334(j)1(e)-1(j)-333(n)1(ie)-334(wid)1(z)-1(\\241c.)]TJ 0 -13.549 Td[(T)83(eres)-1(k)56(a)-333(roz)-1(gn)1(iew)27(an)1(a)-334(zwr\\363)-28(ci\\252a)-334(si\\246)-334(d)1(o)-333(dzie)-1(u)1(c)27(h)1(,)-334(p)1(ier\\241cyc)27(h)-333(n)1(ad)-333(s)-1(ta)28(w)28(e)-1(m.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(ia\\252y\\261cie)-1(,)-333(j)1(ak)-333(s)-1(i\\246)-334(t)1(o)-334(p)1(a)27(wi!)-333(A)-333(to)-333(pr)1(z)-1(ejd)1(z)-1(ie)-333(i)-334(an)1(i)-333(ju)1(\\273)-334(s)-1(p)-27(o)-56(j)1(rzy)-333(na)-333(k)28(ogo.)]TJ 0 -13.55 Td[({)-333(A)-334(wystro)-55(jon)1(a)-334(j)1(akb)28(y)-333(na)-333(o)-28(d)1(pu)1(s)-1(t.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(do)-333(sam)-1(ego)-333(p)-28(o\\252edni)1(a)-334(p)1(rze)-1(siadu)1(je)-333(przy)-333(c)-1(ze)-1(sani)1(u.)]TJ\nET\nendstream\nendobj\n2285 0 obj <<\n/Type /Page\n/Contents 2286 0 R\n/Resources 2284 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2284 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2289 0 obj <<\n/Length 9468      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(717)]TJ -330.353 -35.866 Td[({)-278(I)-278(c)-1(i\\246giem)-279(se)-279(ku)1(pu)1(je)-278(w)-1(st\\246gi)-278(a)-278(s)-1(tr)1(oiki)-278({)-278(dogad)1(yw)28(a\\252)-1(y)-277(z)-1(a)28(wis)-1(t)1(nie,)-278(b)-28(o)-278(zn\\363)28(w)-278(o)-28(d)]TJ -27.879 -13.549 Td[(jak)1(ie)-1(go\\261)-319(c)-1(zas)-1(u)1(,)-319(ni)1(e)-1(c)28(h)-319(s)-1(i)1(\\246)-320(jeno)-319(p)-27(ok)56(az)-1(a\\252a)-319(n)1(a)-320(wsi,)-319(c)27(h)1(o)-28(dzi\\252y)-319(za)-319(ni\\241)-319(b)1(abie)-319(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)]TJ 0 -13.549 Td[(ostre)-385(ki)1(e)-1(j)-384(p)1(az)-1(u)1(ry)-384(i)-384(j)1(ado)28(wite)-385(ki)1(e)-1(b)28(y)-384(\\273mije.)-384(B)-1(r)1(a\\252y)-384(j\\241)-384(te)-1(\\273)-384(na)-384(oz)-1(or)1(y)-384(przy)-384(leda)-384(s)-1(p)-27(o-)]TJ 0 -13.549 Td[(sobno\\261ci,)-333(a)-332(nico)28(w)27(a\\252y)84(,)-333(\\273e)-333(niec)27(h)-332(B\\363g)-333(b)1(roni)1(,)-333(n)1(ie)-333(m)-1(og\\252y)-332(jej)-332(b)-28(o)28(wiem)-333(dar)1(o)27(w)28(a\\242)-1(,)-332(\\273e)-334(si\\246)]TJ 0 -13.549 Td[(stroi\\252a)-305(jak)-304(\\273)-1(ad)1(na)-305(i)-305(\\273e)-306(b)29(y\\252a)-305(p)-28(on)1(ad)-305(wsz)-1(ystkie)-305(ur)1(o)-28(dn)1(iejsz)-1(a,)-305(\\273e)-1(b)29(y)-305(ju)1(\\273)-306(n)1(ie)-305(s)-1(p)-27(om)-1(i)1(na\\242,)]TJ 0 -13.55 Td[(co)-334(wyp)1(ra)28(wia\\252a)-334(z)-334(c)28(h\\252op)1(am)-1(i.)]TJ 27.879 -13.549 Td[({)-333(Wyn)1(os)-1(i)-333(si\\246)-334(nad)-333(d)1(ru)1(gie)-1(,)-333(j)1(a\\273)-1(e)-333(trud)1(no)-333(\\261c)-1(ierp)1(ie)-1(\\242!)]TJ 0 -13.549 Td[({)-333(I)-334(p)1(rzys)-1(tr)1(a)-56(j)1(a)-334(si\\246)-334(ki)1(e)-1(b)28(y)-333(d)1(z)-1(i)1(e)-1(d)1(z)-1(icz)-1(k)56(a)-333(i)-333(s)-1(k)56(\\241d)-333(to)-333(na)-333(to)-333(bierze)-1(!)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(a)-333(z)-1(a)-333(c\\363\\273)-334(to)-334(w)28(\\363)-56(j)1(t)-333(m)-1(a)-333(u)-333(n)1(ie)-1(j)-333(\\252aski?)]TJ 0 -13.549 Td[({)-298(P)28(o)28(w)-1(i)1(ada)-55(j\\241,)-298(jak)28(o)-298(i)-298(An)28(tek)-298(nie)-298(s)-1(k)56(\\241)-28(p)1(i)-298({)-299(p)1(rze)-1(p)-27(o)28(w)-1(i)1(ada\\252y)-298(s)-1(e)-298(na)-298(uc)28(ho)-298(gos)-1(p)-27(o)-28(d)1(y-)]TJ -27.879 -13.549 Td[(ni)1(e)-334(z)-1(ebr)1(a)28(w)-1(sz)-1(y)-333(si\\246)-334(w)-333(op\\252otk)56(ac)27(h)-333(P)1(\\252os)-1(zk)28(o)28(w)27(ej.)]TJ 27.879 -13.55 Td[({)-317(An)28(t)1(e)-1(k)-316(dba)-316(t)27(y)1(la)-317(o)-317(n)1(i\\241,)-317(co)-317(p)1(ie)-1(s)-317(o)-317(p)1(i\\241t\\241)-317(n)1(og\\246)-317({)-317(wtr\\241ci\\252a)-317(Jagust)28(ynk)56(a)-317({)-316(tam)]TJ -27.879 -13.549 Td[(jest)-258(w)-258(p)1(rz)-1(y)1(go)-28(dzie)-258(kto\\261)-258(d)1(ru)1(gi!)-258({)-257(z)-1(a\\261mia\\252a)-258(si\\246)-258(tak)-258(d)1(om)27(y\\261ln)1(ie)-1(,)-257(\\273e)-258(j\\246\\252)-1(y)-257(j\\241)-257(mole)-1(sto)28(w)27(a\\242)]TJ 0 -13.549 Td[(na)-333(ws)-1(zystkie)-334(\\261wi\\246to\\261)-1(ci,)-333(ale)-334(si\\246)-334(n)1(ie)-334(wygad)1(a\\252)-1(a,)-333(j)1(e)-1(n)1(o)-334(i)1(m)-334(w)-334(k)28(o\\253)1(c)-1(u)-332(rz)-1(ek\\252a)-333(:)]TJ 27.879 -13.549 Td[({)-333(Ja)-334(t)1(o)-334(p)1(lot\\363)28(w)-334(n)1(ie)-334(roznosz)-1(\\246.)-333(Macie)-334(o)-28(czy)83(,)-333(to)-333(wypatr)1(z)-1(cie)-334(sam)-1(e.)]TJ 0 -13.549 Td[(Jak)28(o\\273)-367(o)-28(d)-367(tej)-367(c)27(h)29(w)-1(i)1(li)-367(sto)-367(par)-367(\\261lepi\\363)28(w)-367(jes)-1(zc)-1(ze)-368(zacie)-1(k)1(le)-1(j)-366(p)-28(osz)-1(\\252o)-367(n)1(a)-367(prze)-1(\\261pi)1(e)-1(gi)]TJ -27.879 -13.55 Td[(trop)-332(w)-334(trop)-333(za)-333(Jagusi\\241,)-333(kiej)-333(te)-334(go\\253)1(c)-1(ze)-334(za)-334(za)-56(j)1(\\241c)-1(zkiem)-1(.)]TJ 27.879 -13.549 Td[(Ale)-363(Jagusia,)-363(c)27(h)1(o)-28(cia\\273)-364(n)1(a)-364(k)56(a\\273dym)-363(krok)1(u)-363(s)-1(p)-27(ot)28(yk)56(a\\252a)-363(te)-364(p)1(rzyc)-1(za)-56(j)1(one,)-363(s)-1(tr)1(\\363\\273)-1(u)1(-)]TJ -27.879 -13.549 Td[(j\\241ce)-338(\\261)-1(lepi)1(e)-1(,)-337(nie)-338(dom)28(y\\261)-1(l)1(a\\252a)-338(s)-1(i\\246)-338(n)1(ic)-1(ze)-1(go;)-337(c)-1(o)-338(j)1(\\241)-338(tam)-338(z)-1(r)1(e)-1(sz)-1(t)1(\\241)-338(ob)-28(c)28(ho)-28(d)1(z)-1(i)1(\\252)-1(o;)-337(kiej)-338(mog\\252a)]TJ 0 -13.549 Td[(w)-334(k)56(a\\273dej)-333(p)-27(o)-1(r)1(z)-1(e)-333(obacz)-1(y\\242)-333(Jas)-1(ia)-333(i)-333(top)1(i\\242)-334(si\\246)-334(w)-334(j)1(e)-1(go)-333(o)-28(cz)-1(ac)28(h)-333(na)-333(\\261)-1(mier\\242.)]TJ 27.879 -13.549 Td[(Na)-263(or)1(ganist\\363)28(wk)28(\\246)-264(zagl\\241d)1(a\\252a)-263(pr)1(a)27(wie)-263(j)1(u\\273)-263(co)-263(dn)1(ia)-263(i)-262(za)27(wd)1(y)-263(w)-263(tak)1(im)-263(c)-1(zas)-1(i)1(e)-1(,)-262(gdy)]TJ -27.879 -13.55 Td[(Jasio)-377(b)28(y)1(\\252)-377(w)-377(dom)27(u)1(,)-377(\\273e)-377(nieraz)-377(kiej)-376(z)-1(asiada\\252)-377(z)-377(b)1(lisk)55(a)-376(i)-377(kiej)-376(p)-28(o)-27(c)-1(zu\\252a)-377(n)1(a)-377(s)-1(ob)1(ie)-377(jego)]TJ 0 -13.549 Td[(sp)-28(o)-55(jrzenie,)-382(to)-382(d)1(z)-1(iw)-382(n)1(ie)-383(omdl)1(e)-1(w)28(a\\252a)-382(z)-383(lu)1(b)-27(o\\261)-1(ci,)-382(ob)1(le)-1(w)28(a\\252)-382(j\\241)-382(w)28(ar,)-382(n)1(ogi)-382(si\\246)-383(tr)1(z)-1(\\246s)-1(\\252y)-381(i)]TJ 0 -13.549 Td[(se)-1(rce)-282(\\252)-1(omota\\252o)-282(ki)1(e)-1(b)28(y)-281(m)-1(\\252otem)-1(,)-281(z)-1(a\\261)-282(ind)1(z)-1(i)1(e)-1(j)1(,)-282(gdy)-281(w)-283(d)1(ru)1(gim)-283(p)-27(ok)28(o)-55(ju)-282(n)1(aucz)-1(a\\252)-282(siostry)84(,)]TJ 0 -13.549 Td[(to)-222(ja\\273e)-223(dec)27(h)-222(p)1(rzyta)-56(j)1(a\\252a)-223(zas)-1(\\252u)1(c)27(h)1(ana)-222(w)-223(jego)-222(g\\252)-1(osie)-223(n)1(ib)28(y)-222(w)-222(t)27(y)1(m)-223(s)-1(\\252o)-27(dkim)-222(dzw)27(on)1(ieniu)1(,)]TJ 0 -13.549 Td[(a\\273)-334(or)1(gani\\261c)-1(in)1(a)-333(s)-1(p)-27(os)-1(tr)1(z)-1(eg\\252a:)]TJ 27.879 -13.55 Td[({)-333(C)-1(o)-333(tak)-333(p)1(ilni)1(e)-334(nas\\252uc)27(h)29(uj)1(e)-1(cie)-1(?)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(pan)-332(Jas)-1(io)-333(tak)-333(pr)1(a)28(w)-1(i)-333(n)1(aucz)-1(n)1(ie)-1(,)-333(\\273e)-334(n)1(ic)-1(ze)-1(go)-333(ni)1(e)-334(p)-27(ore)-1(d)1(z)-1(\\246)-333(w)-1(y)1(rozumie)-1(\\242!)]TJ 0 -13.549 Td[({)-366(Chcie)-1(l)1(ib)28(y\\261c)-1(i)1(e)-1(!)-366({)-366(za\\261)-1(mia\\252a)-366(si\\246)-367(p)-27(ob\\252a\\273liwie.)-366({)-366(Ab)-27(o)-367(t)1(o)-366(w)-367(ma\\252yc)27(h)-365(s)-1(zk)28(o\\252ac)27(h)]TJ -27.879 -13.549 Td[(si\\246)-336(u)1(c)-1(zy)-335(przyr)1(z)-1(u)1(c)-1(i\\252a)-335(z)-336(d)1(um\\241,)-335(wda)-55(j\\241c)-336(si\\246)-335(w)-336(sz)-1(erok)56(\\241)-335(p)-28(oga)28(w)28(\\246)-1(d)1(k)28(\\246)-336(o)-335(s)-1(y)1(n)28(u,)-335(l)1(ubi)1(\\252a)-336(j)1(\\241)]TJ 0 -13.549 Td[(b)-27(o)27(wiem)-421(i)-421(r)1(ada)-421(zapr)1(as)-1(za\\252a,)-421(\\273e)-422(t)1(o)-421(Jagusia)-421(c)28(h\\246tna)-421(b)29(y\\252a)-421(do)-420(p)-28(omo)-28(cy)-421(p)1(rzy)-421(k)56(a\\273)-1(d)1(e)-1(j)]TJ 0 -13.55 Td[(rob)-27(o)-28(cie,)-280(a)-280(p)1(rzy)-280(t)28(ym)-279(c)-1(z\\246)-1(sto)-280(g\\246s)-1(to)-279(i)-280(p)1(rzynosi\\252a)-280(co)-280(n)1(ieb\\241d\\271;)-279(to)-280(gru)1(s)-1(ze)-1(k)1(,)-280(to)-279(jag\\363)-28(d)1(e)-1(k)1(,)]TJ 0 -13.549 Td[(to)-333(na)28(w)28(e)-1(t)-333(ni)1(e)-1(kiej)-333(i)-333(ose)-1(\\252k)28(\\246)-334(\\261wie)-1(\\273e)-1(go)-333(mas)-1(\\252a.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-388(wys\\252uc)27(h)1(iw)28(a\\252a)-389(za)28(wdy)-388(t)28(yc)28(h)-388(op)-27(o)27(wiad)1(a\\253)-388(z)-388(jedn)1(ak)55(\\241)-388(\\273arli)1(w)27(o\\261c)-1(i\\241,)-387(le)-1(cz)]TJ -27.879 -13.549 Td[(sk)28(oro)-408(Jasio)-407(ru)1(s)-1(zy\\252)-408(si\\246)-408(z)-408(d)1(om)27(u)1(,)-408(i)-407(ona)-407(\\261pies)-1(zy\\252a)-408(si\\246)-408(n)1(ib)28(y)-407(to)-407(do)-407(m)-1(atk)1(i;)-407(s)-1(tr)1(as)-1(znie)]TJ 0 -13.549 Td[(b)-27(o)27(wiem)-327(lu)1(bia\\252a)-326(nagl\\241d)1(a\\242)-327(z)-1(a)-327(n)1(im)-327(z)-327(d)1(ale)-1(k)56(a)-327(i)-326(ni)1(e)-1(r)1(az)-328(p)1(rzycz)-1(a)-55(jona)-326(w)27(e)-327(zb)-28(o\\273u)-326(lub)-326(za)]TJ 0 -13.549 Td[(jak)1(im\\261)-426(drzew)27(em)-426(pat)1(rz)-1(a\\252a)-425(w)-426(n)1(iego)-426(d)1(\\252ugo)-425(i)-426(z)-425(tak)56(\\241)-426(tk)1(liw)28(o\\261)-1(ci\\241,)-425(\\273)-1(e)-426(n)1(ie)-426(mog\\252a)-425(s)-1(i\\246)]TJ 0 -13.55 Td[(p)-27(o)27(wstrzyma\\242)-334(o)-28(d)-333(p)1(\\252)-1(aczu.)]TJ 27.879 -13.549 Td[(Ale)-450(ju\\273)-450(na)-55(jmilsz)-1(e)-450(b)28(y\\252y)-450(la)-450(n)1(ie)-1(j)-449(te)-451(k)1(r\\363tkie,)-450(nagr)1(z)-1(an)1(e)-1(,)-450(j)1(as)-1(n)1(e)-451(n)1(o)-28(c)-1(e,)-450(\\273e)-451(kiej)]TJ -27.879 -13.549 Td[(jeno)-384(matk)56(a)-385(zas)-1(n)1(\\246)-1(\\252a,)-384(wynosi\\252a)-384(p)-28(o\\261c)-1(i)1(e)-1(l)-384(do)-384(sa)-1(d)1(u)-384(i)-384(le\\273)-1(\\241c)-385(n)1(a)-385(wznak,)-384(zapatrzona)-384(w)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o)-288(migo)-27(c)-1(\\241ce)-288(pr)1(z)-1(ez)-288(ga\\252\\246)-1(zie,)-287(z)-1(apad)1(a\\252a)-288(w)-287(jaki)1(e)-1(\\261)-288(p)1(rze)-1(n)1(a)-56(j)1(s)-1(\\252o)-28(d)1(s)-1(ze)-288(ni)1(e)-1(zm)-1(i)1(e)-1(r)1(z)-1(on)1(o\\261)-1(ci)]TJ 0 -13.549 Td[(marze)-1(n)1(ia.)-305(Up)1(aln)1(e)-305(w)-1(i)1(e)-1(wy)-304(no)-28(cy)-304(m)27(u)1(s)-1(k)56(a\\252y)-304(j\\241)-304(p)-28(o)-304(t)28(w)27(ar)1(z)-1(y)84(,)-305(gwiazdy)-304(zagl\\241da\\252y)-304(w)-305(o)-27(c)-1(zy)]TJ 0 -13.55 Td[(sz)-1(erok)28(o)-371(ot)27(w)28(arte,)-371(nab)1(rane)-371(z)-1(ap)1(ac)27(hami)-371(g\\252os)-1(y)-371(cie)-1(mni)1(c)-1(,)-371(g\\252os)-1(y)-371(p)-27(e\\252)-1(n)1(e)-372(ni)1(e)-1(p)-27(ok)28(o)-56(j)1(\\241c)-1(ego)]TJ 0 -13.549 Td[(\\273aru)-398(i)-398(lu)1(b)-28(o\\261c)-1(i)1(,)-398(z)-1(ad)1(ys)-1(zane)-398(s)-1(ze)-1(p)1(t)28(y)-398(li\\261c)-1(i,)-398(senne,)-398(ur)1(yw)28(ane)-399(sz)-1(mery)-398(s)-1(t)28(w)28(orze)-1(\\253)1(,)-398(jakb)29(y)]TJ\nET\nendstream\nendobj\n2288 0 obj <<\n/Type /Page\n/Contents 2289 0 R\n/Resources 2287 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2287 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2292 0 obj <<\n/Length 8929      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(718)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(st\\252umione)-408(w)28(e)-1(stc)27(hn)1(ienia,)-407(jakb)29(y)-408(w)27(o\\252an)1(ia,)-408(id)1(\\241c)-1(e)-408(k)56(a)-56(j)1(\\261)-409(sp)-27(o)-28(d)-408(ziem)-1(i)1(,)-408(jakb)29(y)-408(c)27(h)1(ic)27(h)1(ot)28(y)]TJ 0 -13.549 Td[(strw)28(o\\273)-1(on)1(e)-1(,)-394(la\\252y)-395(si\\246)-395(w)-395(n)1(i\\241)-395(d)1(z)-1(i)1(w)-1(n)1(\\241)-395(m)28(uzyk)56(\\241)-395(i)-394(prze)-1(j)1(mo)27(w)28(a\\252y)-395(w)28(arem)-1(,)-394(d)1(ygote)-1(m,)-394(z)-1(a-)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(a\\252)-1(y)-300(dec)27(h)-300(i)-300(pr)1(\\246)-1(\\273y\\252y)-301(w)-300(takic)27(h)-300(ci\\241)-28(gotk)56(ac)27(h)1(,)-301(\\273e)-301(stac)-1(za\\252a)-301(si\\246)-301(na)-300(c)27(h\\252o)-28(d)1(ne,)-301(or)1(os)-1(zone)]TJ 0 -13.549 Td[(tra)28(wy)84(,)-429(p)1(ada)-55(j\\241c)-429(ci\\246)-1(\\273k)28(o)-429(j)1(ak)-428(o)27(w)28(o)-28(c)-429(d)1(os)-1(ta\\252y)84(...)-428(i)-428(le)-1(\\273a\\252a)-429(b)-27(e)-1(zw\\252adni)1(e)-429(w)27(ez)-1(b)1(ran)1(a)-429(j)1(ak)55(\\241\\261)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(t\\241,)-344(ro)-28(d)1(n\\241)-345(mo)-28(c\\241,)-345(ni)1(b)28(y)-345(te)-345(p)-27(ola)-345(do)-55(jr)1(z)-1(ew)27(a)-55(j\\241ce)-1(,)-344(nib)28(y)-344(te)-345(ga\\252\\246)-1(zie)-345(o)27(w)28(o)-28(ce)-1(m)-345(ci\\246)-1(\\273ar-)]TJ 0 -13.55 Td[(ne,)-380(n)1(ib)28(y)-379(te)-1(n)-379(\\252an)-379(\\271)-1(r)1(a)-1(\\252ej)-379(psz)-1(enicy)83(,)-379(got\\363)28(w)-380(s)-1(i)1(\\246)-381(d)1(a\\242)-380(s)-1(ierp)-27(om)-1(,)-379(ptak)28(om)-380(cz)-1(y)-379(wic)27(h)1(rom,)]TJ 0 -13.549 Td[(b)-27(o)-334(j)1(u\\273)-334(n)1(a)-333(k)55(a\\273d\\241)-333(dol)1(\\246)-334(z)-1(ar)1(\\363)27(wn)1(o)-334(t\\246sknie)-333(c)-1(ze)-1(k)56(a)-55(j\\241cy)83(.)]TJ 27.879 -13.549 Td[(T)83(aki)1(e)-257(t)1(o)-256(mia\\252a)-256(Jagusia)-255(te)-257(k)1(r\\363tki)1(e)-1(,)-255(nagrzane,)-256(j)1(as)-1(n)1(e)-256(no)-28(ce)-256(i)-256(tak)1(ie)-256(to)-256(te)-256(skw)27(ar)1(-)]TJ -27.879 -13.549 Td[(ne,)-333(rozpr)1(a\\273)-1(on)1(e)-334(dn)1(ie)-334(lip)-27(co)27(w)28(e,)-334(\\273e)-334(mij)1(a\\252)-1(y)-333(k)1(ie)-1(b)29(y)-334(sen)-333(s)-1(\\252o)-28(d)1(ki,)-333(ci\\246)-1(gi)1(e)-1(m)-334(p)1(ragn)1(ion)28(y)84(.)]TJ 27.879 -13.549 Td[(Cho)-28(d)1(z)-1(i)1(\\252a)-368(te\\273)-368(j)1(ak)-367(w)27(e)-368(\\261ni)1(e)-1(,)-367(ledwie)-367(ju\\273)-367(m)-1(i)1(arku)1(j\\241c,)-367(kiedy)-367(b)28(y\\252)-367(dzie\\253,)-367(a)-367(kiedy)]TJ -27.879 -13.549 Td[(no)-27(c)-1(.)]TJ 27.879 -13.55 Td[(Domini)1(k)28(o)27(w)28(a)-454(c)-1(zu\\252a,)-454(\\273)-1(e)-455(si\\246)-455(z)-455(n)1(i\\241)-454(w)-1(y)1(rabi)1(a)-455(cos)-1(ik)-454(d)1(z)-1(iwn)1(e)-1(go,)-454(ale)-455(n)1(ie)-455(mog\\252)-1(a)]TJ -27.879 -13.549 Td[(wyrozumie\\242)-1(,)-333(wi\\246c)-334(t)28(ylk)28(o)-333(s)-1(i)1(\\246)-334(rad)1(o)27(w)28(a\\252a)-333(jej)-333(nies)-1(p)-27(o)-28(d)1(z)-1(ian)1(e)-1(j)-332(i)-334(\\273arl)1(iw)27(ej)-333(p)-27(ob)-28(o\\273no\\261c)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-251(P)28(o)28(wiem)-252(ci,)-251(J)1(agu\\261,)-251(\\273)-1(e)-251(kto)-251(z)-251(Bogie)-1(m,)-251(z)-251(t)28(ym)-251(B\\363g!)-251({)-251(p)-27(o)27(wtar)1(z)-1(a\\252a)-251(z)-251(dob)1(ro\\261)-1(ci\\241.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia)-337(j)1(e)-1(n)1(o)-337(s)-1(i)1(\\246)-338(u)1(\\261)-1(miec)27(ha\\252a,)-336(p)-28(e\\252na)-337(cic)27(h)1(e)-1(j)1(,)-337(p)-27(ok)28(orn)1(e)-1(j)-336(s)-1(zc)-1(z\\246)-1(\\261liw)28(o\\261)-1(ci)-337(a)-337(cz)-1(ek)56(a-)]TJ -27.879 -13.549 Td[(ni)1(a.)]TJ 27.879 -13.55 Td[(I)-284(kt\\363r)1(e)-1(go\\261)-284(dn)1(ia)-284(c)-1(a\\252ki)1(e)-1(m)-284(ni)1(e)-1(c)27(h)1(c)-1(\\241cy)-284(n)1(atkn\\246\\252a)-284(s)-1(i)1(\\246)-285(n)1(a)-284(Jas)-1(ia,)-283(s)-1(iedzia\\252)-284(p)-27(o)-28(d)-284(k)28(op)1(-)]TJ -27.879 -13.549 Td[(ce)-1(m)-306(gran)1(icz)-1(n)28(y)1(m)-306(z)-307(k)1(s)-1(i\\241\\273k)56(\\241)-306(w)-306(r\\246ku)1(,)-306(n)1(ie)-306(m)-1(og\\252a)-305(s)-1(i\\246)-306(j)1(u\\273)-306(cofn\\241\\242)-306(i)-305(s)-1(tan)1(\\246)-1(\\252a)-305(przed)-306(n)1(im,)]TJ 0 -13.549 Td[(okr)1(yta)-333(rumie\\253ce)-1(m)-333(i)-334(mo)-28(cno)-333(ze)-1(sromana.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(w)-1(y)-333(tu)-332(robi)1(c)-1(ie?)]TJ 0 -13.549 Td[(J\\241k)56(a\\252a)-334(si\\246)-334(strw)28(o\\273ona,)-333(c)-1(zy)-333(ab)28(y)-333(s)-1(i)1(\\246)-334(c)-1(zego)-334(n)1(ie)-334(d)1(om)27(y\\261la,)]TJ 0 -13.55 Td[({)-333(Siad)1(a)-56(j)1(c)-1(ie,)-333(widz\\246)-1(,)-333(\\273e)-1(\\261c)-1(i)1(e)-334(s)-1(i)1(\\246)-334(z)-1(m\\246c)-1(zyli.)]TJ 0 -13.549 Td[(W)84(ago)27(w)28(a\\252a)-334(s)-1(i)1(\\246)-335(n)1(ie)-335(wiedz\\241c)-1(,)-333(c)-1(o)-334(p)-27(o)-28(cz)-1(\\241\\242,)-334(p)-27(o)-28(c)-1(i)1(\\241)-28(gn\\241\\252)-334(j)1(\\241)-334(z)-1(a)-334(r\\246k)28(\\246,)-334(\\273)-1(e)-334(pr)1(z)-1(ysiad)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(p)-27(ob)-28(ok)1(,)-334(\\261pi)1(e)-1(sz)-1(n)1(ie)-334(c)27(h)1(o)28(w)27(a)-55(j\\241c)-334(b)-27(ose)-334(nogi)-333(p)-27(o)-28(d)-333(w)28(e)-1(\\252n)1(iak.)]TJ 27.879 -13.549 Td[(Ale)-334(i)-333(Jasio)-333(b)28(y\\252)-333(z)-1(mies)-1(zan)28(y)84(,)-333(roz)-1(gl)1(\\241da\\252)-333(s)-1(i\\246)-333(jak)28(o\\261)-334(b)-27(ez)-1(rad)1(nie)-333(dok)28(o\\252a.)]TJ 0 -13.549 Td[(Pu)1(s)-1(t)1(o)-375(b)29(y\\252o)-375(n)1(a)-374(p)-28(ol)1(ac)27(h,)-374(li)1(p)-28(ec)27(ki)1(e)-375(dac)28(h)28(y)-374(i)-374(sady)-374(wynosi\\252y)-374(si\\246)-375(ze)-375(zb)-28(\\363\\273)-374(jak)28(ob)28(y)]TJ -27.879 -13.55 Td[(wysp)28(y)-406(dal)1(e)-1(ki)1(e)-1(,)-406(wiater)-406(\\271dzie)-1(b)1(k)28(o)-406(prze)-1(gar)1(nia\\252)-406(k\\252osami,)-406(pac)28(hni)1(a\\252o)-407(r)1(oz)-1(gr)1(z)-1(an)1(\\241)-406(m)-1(a-)]TJ 0 -13.549 Td[(cie)-1(r)1(z)-1(an)1(k)55(\\241)-333(i)-333(\\273yte)-1(m,)-333(jak)1(i\\261)-334(pt)1(ak)-334(p)1(rze)-1(l)1(e)-1(cia\\252)-334(n)1(ad)-333(ni)1(m)-1(i.)]TJ 27.879 -13.549 Td[({)-333(Str)1(as)-1(znie)-333(dzis)-1(i)1(a)-56(j)-333(gor\\241co!)-333({)-334(zau)28(w)28(a\\273)-1(y)1(\\252)-1(,)-333(ab)29(y)-334(j)1(e)-1(n)1(o)-333(z)-1(acz)-1(\\241\\242.)]TJ 0 -13.549 Td[({)-402(I)-401(w)27(cz)-1(or)1(a)-56(j)-401(pr)1(z)-1(yp)1(iek)55(a\\252o)-402(n)1(iez)-1(gor)1(z)-1(ej!)-401({)-402(c)27(h)29(yc)-1(i)1(\\252)-402(j\\241)-402(za)-402(gar)1(dzie)-1(l)-401(jak)1(i\\261)-402(radosn)28(y)]TJ -27.879 -13.549 Td[(l\\246k,)-333(\\273)-1(e)-333(le)-1(d)1(wie)-334(mog\\252a)-334(p)1(rze)-1(m\\363)28(w)-1(i)1(\\242)-1(.)]TJ 27.879 -13.55 Td[({)-333(Lada)-333(dzie\\253)-333(z)-1(acz)-1(n)1(\\241)-334(si\\246)-334(\\273ni)1(w)27(a.)]TJ 0 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(.)1(..)-333(ju)1(\\261)-1(ci...)-333({)-333(pr)1(z)-1(yt)28(wierd)1(z)-1(a\\252a)-333(wle)-1(p)1(ia)-56(j)1(\\241c)-334(w)-333(niego)-334(ci\\246\\273)-1(ki)1(e)-334(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[(U\\261m)-1(iec)27(h)1(n\\241\\252)-333(s)-1(i)1(\\246)-334(i)-333(s)-1(p)1(r\\363b)-27(o)27(w)28(a\\252)-334(m\\363)28(wi\\242)-334(sw)27(ob)-27(o)-28(d)1(nie,)-333(pra)28(wie)-334(\\273artem:)]TJ 0 -13.549 Td[({)-333(Jagusia)-333(to)-334(co)-333(dzie)-1(\\253)-333(\\252ad)1(niejsza...)]TJ 0 -13.549 Td[({)-271(Ka)-56(j)-270(m)-1(i)-271(tam)-271(do)-271(\\252adn)1(o\\261)-1(ci!)-271({)-271(stan\\246\\252a)-272(w)-271(p\\241sac)27(h)1(,)-271(p)-28(o)-27(c)-1(iemnia\\252e)-272(o)-27(c)-1(zy)-271(bu)1(c)27(hn)1(\\246)-1(\\252y)]TJ -27.879 -13.549 Td[(p\\252omieniami,)-333(a)-333(w)27(ar)1(gi)-333(z)-1(ad)1(rga\\252y)-333(w)-334(p)1(rz)-1(y)1(ta)-56(j)1(on)28(ym)-334(p)1(rze)-1(\\261m)-1(i)1(e)-1(c)28(h)28(u)-333(rad)1(o\\261)-1(ci.)]TJ 27.879 -13.55 Td[({)-333(I)-334(n)1(apra)28(wd\\246)-333(Jagusia)-333(nie)-334(c)28(hce)-334(i\\261\\242)-334(za)-334(m\\241\\273)-1(?)]TJ 0 -13.549 Td[({)-333(Ani)-333(mi)-333(s)-1(i\\246)-333(\\261)-1(n)1(i,)-333(ab)-28(o)-333(mi)-334(t)1(o)-334(\\271le)-334(sam)-1(ej!)]TJ 0 -13.549 Td[({)-333(I)-334(\\273aden)-333(s)-1(i)1(\\246)-334(w)27(am)-333(nie)-333(p)-28(o)-28(d)1(oba,)-333(co?)-334({)-333(nab)1(iera\\252)-334(coraz)-333(w)-1(i\\246ce)-1(j)-333(\\261m)-1(i)1(a\\252o\\261)-1(ci.)]TJ 0 -13.549 Td[({)-288(\\233aden,)-288(n)1(ie)-288(\\273)-1(ad)1(e)-1(n)1(!)-288({)-288(trz\\246)-1(s\\252a)-288(g\\252o)27(w)28(\\241)-288(patr)1(z)-1(\\241c)-288(w)-288(niego)-288(rozm)-1(ar)1(z)-1(on)28(y)1(m)-1(i)-288(s\\252o)-28(dk)28(o)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(ami,)-308(n)1(ac)27(h)28(y)1(li\\252)-308(s)-1(i)1(\\246)-309(i)-308(za)-56(j)1(rza\\252)-308(g\\252)-1(\\246b)-27(ok)28(o)-308(w)-309(t)1(e)-309(mo)-28(dr)1(e)-309(p)1(rze)-1(p)1(a\\261)-1(cie)-1(;)-307(m)-1(o)-28(d)1(lit)28(w)28(\\246)-309(mia\\252a)-308(w)]TJ 0 -13.55 Td[(sp)-28(o)-55(jrzeniu)1(,)-359(na)-55(jg\\252\\246bsz)-1(\\241)-359(i)-358(na)-55(js\\252o)-28(dsz)-1(\\241,)-358(i)-359(n)1(a)-56(jd)1(uf)1(niejsz\\241,)-359(\\273)-1(ar)1(liwy)-359(k)1(rz)-1(y)1(k)-359(se)-1(rca)-359(r)1(w)27(\\241cy)]TJ 0 -13.549 Td[(si\\246)-450(w)-450(cz)-1(as)-450(P)28(o)-27(dn)1(ie)-1(sienia.)-449(Du)1(s)-1(za)-450(si\\246)-450(w)-450(n)1(iej)-450(t)1(rz)-1(ep)-27(ota\\252a)-450(ki)1(e)-1(j)-449(te)-450(skry)-449(s\\252)-1(o\\253)1(c)-1(a)-449(nad)]TJ\nET\nendstream\nendobj\n2291 0 obj <<\n/Type /Page\n/Contents 2292 0 R\n/Resources 2290 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2290 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2295 0 obj <<\n/Length 9122      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(719)]TJ -358.232 -35.866 Td[(p)-27(olami,)-333(kiej)-333(ptak)-333(roz\\261piew)27(an)29(y)-334(wysok)28(o)-333(nad)-333(zie)-1(mi\\241.)]TJ 27.879 -13.549 Td[(Cofn)1(\\241\\252)-334(si\\246)-334(j)1(ak)28(o\\261)-334(dziwnie)-333(nies)-1(p)-27(ok)28(o)-55(jni)1(e)-1(,)-333(p)1(rz)-1(etar\\252)-333(o)-28(cz)-1(y)-333(i)-333(ws)-1(ta\\252.)]TJ 0 -13.549 Td[({)-324(Musz\\246)-325(ju)1(\\273)-325(i\\261\\242)-325(do)-324(d)1(om)27(u)1(!)-325({)-324(skin)1(\\241\\252)-325(g\\252o)28(w)27(\\241)-324(n)1(a)-325(p)-27(o\\273)-1(egnan)1(ie)-325(i)-324(p)-27(osz)-1(ed\\252)-324(s)-1(ze)-1(r)1(ok)55(\\241)]TJ -27.879 -13.549 Td[(mie)-1(d)1(z)-1(\\241)-321(k)1(u)-321(ws)-1(i)-321(cz)-1(y)1(ta)-56(j)1(\\241c)-322(ki)1(e)-1(j)-320(niekiej)-321(ksi\\241\\273k)28(\\246)-1(,)-321(to)-321(b)1(\\252\\241dz\\241c)-322(o)-28(cz)-1(ami,)-321(al)1(e)-322(w)-321(jaki)1(\\261)-322(cz)-1(as)]TJ 0 -13.549 Td[(ob)-27(e)-1(j)1(rza\\252)-334(si\\246)-334(i)-333(pr)1(z)-1(ystan)1(\\241\\252)-1(.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-333(sz)-1(\\252a)-333(z)-1(a)-333(nim)-333(o)-334(p)1(ar\\246)-334(k)1(rok)28(\\363)28(w.)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(i)-333(mnie)-334(t)1(\\246)-1(dy)-333(n)1(a)-56(j)1(bli)1(\\273)-1(ej)-333({)-334(t)1(\\252)-1(u)1(mac)-1(zy\\252a)-334(si\\246)-334(j)1(ak)28(o\\261)-334(sp\\252os)-1(zona)]TJ 0 -13.549 Td[({)-445(T)83(o)-445(p)-27(\\363)-56(jd)1(\\271)-1(m)28(y)-445(raze)-1(m)-445({)-445(m)-1(r)1(ukn)1(\\241\\252,)-445(ni)1(e)-446(bar)1(dzo)-445(rad)-445(z)-445(to)28(w)27(arzyst)28(w)27(a,)-445(wlepi)1(\\252)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(y)-333(w)-333(ks)-1(i)1(\\241\\273)-1(k)28(\\246)-334(i)-333(z)-334(w)28(oln)1(a)-334(i)1(d\\241c)-334(cz)-1(y)1(ta\\252)-334(se)-334(p)-27(\\363\\252)-1(g\\252ose)-1(m.)]TJ 27.879 -13.549 Td[({)-333(O)-333(c)-1(zym)-334(to)-333(nap)1(isane?)-334({)-333(s)-1(p)28(y)1(ta\\252a)-334(l)1(\\246)-1(kl)1(iwie)-1(,)-333(zaz)-1(iera)-55(j\\241c)-334(w)-333(k)56(art)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Jak)-333(c)27(hcec)-1(ie,)-333(to)-334(w)28(am)-334(tr)1(o)-28(c)27(h)1(\\246)-334(p)-27(o)-28(c)-1(zytam.)]TJ 0 -13.55 Td[(\\233e)-352(aku)1(ratn)1(ie)-352(ni)1(e)-1(d)1(ale)-1(cz)-1(k)28(o)-351(mie)-1(d)1(z)-1(y)-351(sta\\252o)-352(r)1(oz)-1(\\252o\\273ys)-1(te)-351(drze)-1(w)28(o,)-351(to)-352(p)1(rzysiad\\252)-351(w)]TJ -27.879 -13.549 Td[(cie)-1(n)1(iu)-399(i)-400(zac)-1(z\\241\\252)-400(cz)-1(y)1(ta\\242)-1(,)-399(Jagusia)-400(k)1(ucn\\246\\252)-1(a)-399(nap)1(rze)-1(ciw)-400(i)-399(w)-1(spar)1(\\252s)-1(zy)-400(b)1(ro)-28(d)1(\\246)-400(na)-400(p)1(i\\246\\261)-1(ci)]TJ 0 -13.549 Td[(zas)-1(\\252uc)28(ha\\252a)-333(s)-1(i\\246)-333(c)-1(a\\252\\241)-333(du)1(s)-1(z\\241,)-333(nie)-333(s)-1(p)1(usz)-1(cz)-1(a)-55(j\\241c)-334(z)-334(n)1(iego)-334(o)-27(c)-1(z\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-334(s)-1(i)1(\\246)-334(w)27(am)-333(p)-28(o)-28(d)1(oba?)-333({)-334(r)1(z)-1(u)1(c)-1(i)1(\\252)-334(p)-27(o)-334(c)28(h)28(wili,)-333(u)1(nosz)-1(\\241c)-334(g\\252o)28(w)28(\\246)-1(.)]TJ 0 -13.549 Td[(Scze)-1(rwieni)1(\\252a)-334(si\\246)-334(i)-333(uciek)56(a)-56(j\\241c)-333(z)-334(o)-28(cz)-1(ami)-333(b\\241kn)1(\\246)-1(\\252a)-333(ws)-1(t)28(yd)1(liwie:)]TJ 0 -13.55 Td[({)-333(B)-1(o)-333(ja)-333(wiem)-1(.)1(..)-333(T)83(o)-334(n)1(ie)-334(o)-333(kr\\363l)1(ac)27(h)-333(h)1(is)-1(tor)1(ia,)-333(c)-1(o?)]TJ 0 -13.549 Td[(Jeno)-402(si\\246)-402(s)-1(k)1(rzywi\\252)-402(i)-402(wzi\\241\\252)-402(zno)28(w)-1(u)-401(cz)-1(yt)1(a\\242)-1(,)-401(ale)-402(ju\\273)-402(w)28(olno,)-401(wyra\\271nie)-402(i)-401(s)-1(\\252o)28(w)27(o)]TJ -27.879 -13.549 Td[(p)-27(o)-311(s\\252o)27(wie:)-311(o)-310(p)-27(olac)27(h)-310(i)-310(z)-1(b)-27(o\\273)-1(ac)28(h)-310(c)-1(zyta\\252,)-310(o)-311(jak)1(im\\261)-311(dw)28(orz)-1(e,)-310(s)-1(to)-55(j\\241cym)-311(w)28(e)-311(brzoz)-1(o)28(wym)]TJ 0 -13.549 Td[(ga)-56(j)1(u,)-276(j)1(akb)28(y)-276(o)-276(dzie)-1(d)1(z)-1(i)1(c)-1(o)28(wym)-277(syn)28(u)1(,)-276(kt\\363ren)-276(do)-276(d)1(om)-277(wr\\363)-28(ci\\252,)-276(i)-276(o)-277(d)1(w)27(or)1(s)-1(k)1(ie)-1(j)-276(p)1(ani)1(e)-1(n)1(c)-1(e,)]TJ 0 -13.549 Td[(co)-417(sie)-1(d)1(z)-1(i)1(a\\252a)-417(se)-417(z)-417(d)1(z)-1(ie\\242)-1(mi)-416(na)-416(ogro)-27(dzie)-1(.)1(..)-416(A)-417(wsz)-1(y\\242k)28(o)-416(b)28(y\\252o)-416(utr)1(a)-1(\\014)1(one)-416(do)-416(w)-1(i)1(e)-1(r)1(s)-1(za,)]TJ 0 -13.55 Td[(ry)1(c)27(h)28(t)28(yk)-236(kieb)28(y)-237(w)-237(t)28(yc)28(h)-237(p)-27(ob)-27(o\\273)-1(n)28(y)1(c)27(h)-236(\\261)-1(p)1(ie)-1(w)28(ani)1(ac)27(h,)-236(jakb)29(y)-237(j)1(e)-238(k)1(to)-237(wyp)-27(om)-1(in)1(a\\252)-237(z)-237(am)27(b)-27(on)28(y)84(,)]TJ 0 -13.549 Td[(\\273e)-334(nieraz)-333(c)27(hcia\\252o)-333(s)-1(i\\246)-333(jej)-333(w)27(es)-1(tc)28(hn)1(\\241\\242)-1(,)-333(p)1(rz)-1(e\\273e)-1(gna\\242)-333(i)-333(z)-1(ap)1(\\252)-1(ak)56(a\\242,)-333(tak)-333(s)-1(z\\252o)-334(d)1(o)-334(serc)-1(a.)]TJ 27.879 -13.549 Td[(Ale)-381(strasz)-1(n)1(ie)-381(gor\\241co)-380(b)28(y\\252o)-381(w)-380(t)28(ym)-381(zac)-1(isz)-1(u)1(,)-380(k)55(a)-55(j)-380(s)-1(i)1(e)-1(d)1(z)-1(ieli,)-380(kr)1(\\246)-1(giem)-381(sta\\252a)-381(g\\246-)]TJ -27.879 -13.549 Td[(sta)-330(\\261c)-1(i)1(ana)-329(\\273)-1(yt)1(a)-330(p)1(rze)-1(p)1(le)-1(cion)1(a)-330(mo)-28(dr)1(akiem)-1(,)-329(wycz)-1(k)56(\\241)-329(i)-329(pac)27(h)1(n\\241cym)-330(p)-27(o)28(w)27(o)-55(jem,)-330(\\273e)-330(an)1(i)]TJ 0 -13.549 Td[(jeden)-338(p)-27(o)28(w)-1(iew)-339(n)1(ie)-339(p)1(rze)-1(c)28(h\\252adza\\252,)-338(a)-339(j)1(e)-1(n)1(o)-339(w)-338(te)-1(j)-337(upal)1(nej)-338(c)-1(i)1(c)27(ho\\261c)-1(i)-338(sypa\\252)-338(si\\246)-339(ni)1(e)-1(ki)1(e)-1(d)1(y)]TJ 0 -13.55 Td[(c)27(h)1(rz\\246)-1(st)-442(ob)28(wis\\252yc)27(h)-441(k\\252os)-1(\\363)28(w,)-442(cz)-1(ase)-1(m)-442(wr\\363b)1(le)-442(z)-1(a\\242w)-1(i)1(e)-1(r)1(k)55(a\\252y)-441(w)-1(\\261r\\363)-28(d)-441(ga\\252\\246)-1(zi,)-441(bzykn\\246\\252a)]TJ 0 -13.549 Td[(pr)1(z)-1(elatu)1(j\\241ca)-399(psz)-1(cz)-1(o\\252a)-399(i)-399(d)1(z)-1(w)28(oni)1(\\252)-399(Jas)-1(io)28(wy)-399(g\\252os,)-399(w)27(ezbran)29(y)-399(dziwn\\241)-399(s\\252o)-28(dy)1(c)-1(z\\241,)-399(lec)-1(z)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia,)-438(c)27(ho)-27(c)-1(ia\\273)-439(wpat)1(rz)-1(on)1(a)-439(b)28(y\\252a)-438(w)-439(niego)-439(jak)1(b)28(y)-439(w)-439(ten)-439(ob)1(raz)-439(na)-55(j\\261licz)-1(n)1(iejsz)-1(y)-438(i)]TJ 0 -13.549 Td[(ni)1(e)-323(s)-1(tr)1(ac)-1(i\\252a)-322(ani)-322(jedn)1(e)-1(go)-322(s)-1(\\252o)28(w)27(a,)-322(ki)1(w)-1(n)1(\\246)-1(\\252a)-322(s)-1(i\\246)-323(r)1(az)-323(i)-323(d)1(ru)1(gi,)-322(b)-28(o)-322(j\\241)-322(roz)-1(b)1(iera\\252o)-323(gor)1(\\241c)-1(o)-322(i)]TJ 0 -13.549 Td[(morzy\\252)-334(\\261pik)1(,)-333(\\273)-1(e)-334(l)1(e)-1(d)1(w)-1(i)1(e)-334(ju)1(\\273)-334(mog\\252)-1(a)-333(wytr)1(z)-1(yma\\242)-1(.)]TJ 27.879 -13.55 Td[(Na)-333(s)-1(zc)-1(z\\246)-1(\\261cie)-1(,)-333(p)1(rz)-1(erw)28(a\\252)-334(czytani)1(e)-334(i)-333(z)-1(a)-55(jrza\\252)-333(jej)-333(g\\252)-1(\\246b)-27(ok)28(o)-334(w)-333(o)-28(cz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Pra)28(wda,)-333(j)1(akie)-334(\\261licz)-1(n)1(e)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(\\261)-1(li)1(c)-1(zno\\261c)-1(i.)1(..)-333(jakb)29(ym)-334(tego)-333(k)55(azani)1(a)-334(s\\252uc)27(h)1(a\\252a.)]TJ 0 -13.549 Td[(Ja\\273e)-487(o)-28(czy)-486(m)27(u)-485(roz)-1(b)1(\\252ys\\252)-1(y)84(,)-486(a)-486(n)1(a)-486(t)27(w)28(arz)-486(wys)-1(t)1(\\241)-28(pi\\252y)-486(k)28(ol)1(ory)84(,)-486(gdy)-486(zac)-1(z\\241\\252)-486(roz-)]TJ -27.879 -13.549 Td[(p)-27(o)27(wiad)1(a\\242)-1(,)-421(c)-1(zyta)-55(j\\241c)-422(raz)-422(j)1(e)-1(sz)-1(cz)-1(e)-422(te)-422(miejsc)-1(a,)-421(k)55(a)-55(j)-421(b)28(y\\252o)-422(o)-422(p)-27(olac)28(h)-422(i)-421(lasac)27(h,)-421(ale)-422(m)27(u)]TJ 0 -13.549 Td[(pr)1(z)-1(erw)28(a\\252a:)]TJ 27.879 -13.55 Td[({)-344(P)1(rze)-1(ciek)-344(i)-343(d)1(z)-1(iec)27(k)28(o)-343(w)-1(i)1(e)-1(,)-343(c)-1(o)-343(w)-344(b)-27(orac)28(h)-344(r)1(os)-1(n)1(\\241)-344(d)1(rze)-1(w)28(a,)-344(w)-343(rze)-1(k)56(ac)27(h)-343(j)1(e)-1(st)-344(w)28(o)-28(da)]TJ -27.879 -13.549 Td[(i)-333(s)-1(i)1(e)-1(j)1(\\241)-334(n)1(a)-334(p)-27(olac)28(h,)-333(to)-333(p)-28(o)-333(co)-334(ta)-333(dr)1(uk)28(o)28(w)28(a\\242)-334(o)-334(t)28(ym)-333(ws)-1(zy\\242)-1(k)1(im?)-1(.)1(..)]TJ 27.879 -13.549 Td[(Jasio)-333(a\\273)-334(s)-1(i)1(\\246)-334(c)-1(of)1(n\\241\\252)-333(z)-1(e)-334(zdu)1(mie)-1(n)1(ia.)]TJ 0 -13.549 Td[({)-334(M)1(nie)-334(to)-333(s)-1(i\\246)-334(j)1(e)-1(n)1(o)-334(sp)-28(o)-27(doba)-55(j\\241)-333(takie)-334(hi)1(s)-1(tor)1(ie)-334(o)-334(kr)1(\\363lac)27(h)1(,)-334(o)-333(s)-1(mok)56(ac)27(h)-333(alb)-27(o)-334(i)-334(o)]TJ -27.879 -13.549 Td[(strac)27(h)1(ac)27(h)1(,)-350(co)-349(to)-350(j)1(ak)-349(s)-1(i\\246)-349(o)-350(n)1(ic)27(h)-349(s\\252uc)28(ha,)-349(to)-349(ja\\273e)-350(mr\\363)28(w)-1(k)1(i)-349(c)-1(z\\252o)27(wiek)56(a)-350(ob)1(\\252a\\273)-1(\\241)-349(i)-349(jakb)29(y)]TJ 0 -13.55 Td[(zarz)-1(ewia)-322(nasu\\252)-322(d)1(o)-322(pi)1(e)-1(r)1(s)-1(i.)-321(Jak)-322(Ro)-28(c)27(h)1(o)-322(ni)1(e)-1(r)1(az)-323(p)-27(o)28(w)-1(i)1(e)-1(d)1(a)-56(j\\241)-321(takie)-322(histori)1(e)-1(,)-322(t)1(o)-322(b)28(ym)-322(go)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(a\\252a)-334(d)1(z)-1(ie\\253)-333(i)-333(no)-27(c)-1(.)-333(A)-333(c)-1(zy)-333(pan)-333(Jasio)-333(m)-1(a)-333(o)-333(t)28(ym)-334(ksi\\241\\273ki?)]TJ\nET\nendstream\nendobj\n2294 0 obj <<\n/Type /Page\n/Contents 2295 0 R\n/Resources 2293 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2293 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2298 0 obj <<\n/Length 4813      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(720)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(45.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-264(A)-264(k)1(t\\363\\273)-264(b)28(y)-264(cz)-1(y)1(ta\\252)-264(takie)-264(ba)-55(jd)1(y!)-264({)-263(buc)28(hn)1(\\241\\252)-264(wz)-1(gard)1(liwie,)-264(g\\252\\246b)-28(ok)28(o)-263(z)-1(gorsz)-1(on)29(y)83(.)]TJ 0 -13.549 Td[({)-333(B)-1(a)-55(jd)1(y!)-333(Hale,)-334(p)1(rze)-1(ciek)-334(Ro)-27(c)27(ho)-333(cz)-1(yta\\252)-333(o)-333(t)28(ym)-334(i)-333(z)-334(d)1(ruk)28(o)28(w)28(anego.)]TJ 0 -13.549 Td[({)-333(G\\252up)1(s)-1(t)28(w)28(a)-334(w)28(am)-334(cz)-1(y)1(ta\\252)-334(i)-333(sam)-1(e)-333(c)-1(yga\\253)1(s)-1(t)28(w)28(a!)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(to)-333(b)28(y)-333(s)-1(e)-333(ino)-333(la)-333(c)-1(y)1(ga\\253st)27(w)28(a)-333(um)28(y\\261)-1(l)1(ali)-333(takie)-334(cud)1(e)-1(\\253)1(k)56(a?)-1(.)1(..)]TJ 0 -13.549 Td[({)-333(A)-334(tak)1(,)-333(w)-1(sz)-1(y)1(s)-1(tk)28(o)-333(ba)-55(jki)-333(a)-333(zm)27(y\\261lenia.)]TJ 0 -13.55 Td[({)-333(T)83(o)-334(n)1(iepra)28(wda)-333(i)-333(o)-333(p)-28(o\\252u)1(dni)1(c)-1(ac)28(h,)-333(i)-333(o)-334(smok)55(ac)28(h?)-333({)-334(p)29(yta\\252a)-334(coraz)-334(\\273a\\252o\\261)-1(n)1(iej.)]TJ 0 -13.549 Td[({)-333(Nie)-1(p)1(ra)28(wda,)-333(m\\363)28(w)-1(i)1(\\246)-334(w)27(am)-333(prze)-1(cie\\273)-1(!)-333({)-333(o)-28(d)1(p)-28(o)28(wiada\\252)-333(zniec)-1(i)1(e)-1(rp)1(liwion)28(y)84(.)]TJ 0 -13.549 Td[({)-357(T)83(o)-357(i)-357(o)-357(t)28(ym)-357(te)-1(\\273)-357(ni)1(e)-1(p)1(ra)28(w)-1(d)1(a,)-357(jak)-356(to)-357(P)28(an)-357(Jez)-1(u)1(s)-358(w)28(\\246)-1(d)1(ro)28(w)28(a\\252)-358(ze)-358(\\261wi\\246)-1(t)28(y)1(m)-358(P)1(io-)]TJ -27.879 -13.549 Td[(trem,)-333(c)-1(o?...)]TJ 27.879 -13.549 Td[(Nie)-397(zd\\241\\273y\\252)-397(o)-28(d)1(rze)-1(c,)-397(b)-27(o)-397(n)1(agle)-397(jak)1(b)28(y)-397(wyr)1(os)-1(\\252a)-396(s)-1(p)-27(o)-28(d)-396(z)-1(i)1(e)-1(mi)-397(K)1(oz)-1(\\252o)28(w)27(a)-396(i)-397(sta)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)-333(n)1(ic)27(h)-333(p)1(atrza\\252a)-334(n)1(a\\261)-1(miec)27(hl)1(iwymi)-334(\\261lepiami.)]TJ 27.879 -13.55 Td[({)-333(A)-334(to)-333(p)1(ana)-333(Jas)-1(i)1(a)-334(sz)-1(u)1(k)56(a)-56(j\\241)-333(p)-27(o)-334(ca\\252e)-1(j)-333(wsi)-333({)-334(r)1(z)-1(ek\\252a)-333(s)-1(\\252o)-28(d)1(z)-1(iu)1(\\261)-1(k)28(o.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(s)-1(i\\246)-333(tam)-334(sta\\252o?)]TJ 0 -13.549 Td[({)-333(Ja\\273)-1(e)-333(trzy)-334(b)1(ryk)1(i)-333(z)-1(ian)1(dar\\363)28(w)-333(przyj)1(e)-1(c)28(ha\\252o)-333(na)-333(pleban)1(i\\246)-1(.)]TJ 0 -13.549 Td[(Ze)-1(r)1(w)27(a\\252)-333(s)-1(i)1(\\246)-334(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)-334(i)-333(p)-27(ole)-1(cia\\252)-333(pra)28(wie)-334(w)-333(dy)1(rdy)84(.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia)-333(te\\273)-334(p)-27(os)-1(z\\252a)-334(ku)-332(w)-1(si,)-333(ale)-334(d)1(z)-1(i)1(w)-1(n)1(ie)-334(cz)-1(ego\\261)-334(mark)28(otn)1(a.)]TJ 0 -13.55 Td[({)-344(P)28(ewniki)1(e)-1(m)-344(pr)1(z)-1(erw)27(a\\252am)-344(w)28(a)-56(ju)-343(pacierz)-1(e,)-344(co?)-345({)-344(sykn)1(\\246)-1(\\252a)-344(Koz\\252o)28(w)27(a)-344(id)1(\\241c)-345(p)-27(o-)]TJ -27.879 -13.549 Td[(b)-27(ok.)]TJ 27.879 -13.549 Td[({)-261(Za\\261)-1(b)28(y)-261(ta)-261(p)1(ac)-1(ierze)-1(!)-261(Czyta\\252)-261(m)-1(i)-261(z)-261(ks)-1(i)1(\\241\\273)-1(ki)-261(tak)1(ie)-262(h)1(is)-1(tor)1(ie,)-262(u)1(\\252o\\273)-1(on)1(e)-262(d)1(o)-262(wiersz)-1(a.)]TJ 0 -13.549 Td[({)-370(C)-1(i)1(e)-1(..)1(.)-371(a)-370(ja)-370(m)-1(i)1(ark)28(o)28(w)27(a\\252am)-371(ca\\252kiem)-371(co)-371(d)1(rugi)1(e)-1(go.)-370(Organ)1(i\\261c)-1(in)1(a)-371(p)-27(c)27(h)1(n\\246\\252a)-371(me)]TJ -27.879 -13.549 Td[(go)-451(s)-1(zuk)56(a\\242...)-451(l)1(e)-1(c\\246)-452(w)-451(t\\246)-452(stron)1(\\246)-1(,)-450(roz)-1(gl)1(\\241dam)-451(s)-1(i\\246...)-450(pusto..)1(.)-451(tkn\\246\\252o)-451(m)-1(e)-451(cos)-1(ik,)-450(b)28(yc)27(h)]TJ 0 -13.55 Td[(za)-56(jr)1(z)-1(e\\242)-375(p)-27(o)-28(d)-373(gru)1(s)-1(zk)28(\\246)-1(..)1(.)-374(patr)1(z)-1(\\246...)-373(s)-1(iedz\\241)-374(se)-375(j)1(akie\\261)-375(tu)1(rk)56(a)28(w)27(ec)-1(zki..)1(.)-374(ga)28(w)27(or)1(z)-1(\\241..)1(.)-374(Ju\\261c)-1(i)1(,)]TJ 0 -13.549 Td[(mie)-1(j)1(s)-1(ce)-334(sp)-28(osobn)1(e)-1(.)1(..)-333(z)-334(dal)1(a)-334(o)-28(d)-332(lud)1(z)-1(ki)1(c)27(h)-333(o)-28(cz)-1(\\363)28(w...)-333(j)1(u\\261c)-1(i.)1(..)]TJ 27.879 -13.549 Td[({)-379(\\233)-1(eb)28(y)-379(w)28(am)-380(te)-1(n)-379(p)1(as)-1(k)1(udn)29(y)-380(oz\\363r)-379(p)-27(okr\\246c)-1(i\\252o)-379({)-380(b)1(uc)28(hn\\246\\252a)-380(wyr)1(yw)28(a)-56(j\\241c)-380(si\\246)-380(n)1(a-)]TJ -27.879 -13.549 Td[(pr)1(z)-1(\\363)-27(d.)]TJ 27.879 -13.549 Td[({)-333(I)-334(b)-27(\\246)-1(d)1(z)-1(i)1(e)-334(c)-1(i)1(e)-334(mia\\252)-334(k)1(to)-334(r)1(oz)-1(grzes)-1(zy\\242)-1(!)-333({)-333(kr)1(z)-1(yk)1(n\\246\\252)-1(a)-333(za)-334(n)1(i\\241)-333(ur\\241)-27(gliwie.)]TJ\nET\nendstream\nendobj\n2297 0 obj <<\n/Type /Page\n/Contents 2298 0 R\n/Resources 2296 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2283 0 R\n>> endobj\n2296 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2301 0 obj <<\n/Length 6405      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(46)]TJ/F17 10.909 Tf 0 -73.325 Td[(Jagu)1(s)-1(ia)-308(zaraz)-309(n)1(a)-309(wst\\246)-1(p)1(ie)-309(p)-27(omiark)28(o)28(w)28(a\\252)-1(a,)-308(\\273e)-309(n)1(a)-309(wsi)-308(dzie)-1(j)1(e)-309(si\\246)-309(cos)-1(i)1(k)-308(w)27(a\\273nego,)-308(psy)]TJ 0 -13.549 Td[(jak)28(o\\261)-274(z)-1(a)-55(jadl)1(e)-1(j)-274(n)1(as)-1(zc)-1(zekiw)28(a\\252)-1(y)-274(w)-274(ob)-28(ej\\261c)-1(i)1(ac)27(h,)-274(d)1(z)-1(i)1(e)-1(ci)-274(kry\\252y)-274(si\\246)-275(p)-27(o)-275(sadac)28(h)-274(wyz)-1(i)1(e)-1(ra)-55(j\\241c)]TJ 0 -13.549 Td[(jeno)-262(zz)-1(a)-262(dr)1(z)-1(ew)-263(i)-262(p)1(\\252ot\\363)28(w)-1(,)-262(l)1(ud)1(z)-1(ie)-262(ju\\273)-262(\\261)-1(ci\\241)-28(gal)1(i)-262(z)-263(p)-27(\\363l,)-262(c)27(h)1(o)-28(c)-1(ia\\273)-262(s)-1(\\252o\\253)1(c)-1(e)-262(b)28(y\\252o)-262(jes)-1(zc)-1(ze)-263(wy-)]TJ 0 -13.549 Td[(sok)28(o,)-290(gdzie\\261)-291(zn\\363)28(w)-290(zbiera\\252y)-289(s)-1(i\\246)-290(ra)-55(jcuj)1(\\241c)-1(e)-290(cic)27(h)1(o)-290(k)28(obiet)28(y)83(,)-289(a)-290(na)-289(w)-1(sz)-1(y)1(s)-1(tk)1(ic)27(h)-289(t)28(w)27(ar)1(z)-1(ac)27(h)]TJ 0 -13.55 Td[(widn)1(ia\\252)-333(s)-1(rogi)-333(n)1(iep)-28(ok)28(\\363)-55(j)-333(i)-333(w)-1(szys)-1(tk)1(ie)-334(o)-28(cz)-1(y)-333(p)-27(e)-1(\\252n)1(e)-334(b)28(y\\252y)-333(l\\246ku)-333(i)-333(o)-28(cze)-1(ki)1(w)27(a\\253.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(si\\246)-334(to)-333(wyrab)1(ia?)-334({)-333(s)-1(p)29(yta\\252a)-333(B)-1(alcerk)28(\\363)28(w)-1(n)29(y)83(,)-333(wygl\\241d)1(a)-56(j)1(\\241c)-1(ej)-333(z)-1(za)-333(w)27(\\246g\\252a.)]TJ 0 -13.549 Td[({)-333(Nie)-334(wiem)-1(,)-333(to)-28(\\242)-333(p)-28(on)1(o)-334(w)28(o)-56(j)1(s)-1(k)28(o)-333(id)1(z)-1(i)1(e)-334(o)-28(d)-333(b)-27(oru)1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(Mari)1(a!)-334(w)28(o)-56(j)1(s)-1(k)28(o!)-333({)-333(nogi)-333(si\\246)-334(p)-27(o)-28(d)-333(n)1(i\\241)-333(ugi\\246\\252y)-333(z)-1(e)-334(strac)28(h)28(u.)]TJ 0 -13.549 Td[({)-405(A)-406(K\\252\\246biak)-405(co)-406(in)1(o)-406(m\\363)28(wi\\252,)-406(\\273e)-406(k)28(ozaki)-405(c)-1(i\\241)-27(gn\\241)-406(o)-27(d)-405(W)83(oli)-405({)-405(dorzuci\\252a)-405(le)-1(c\\241c)-1(a)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(\\261)-334(Pr)1(yc)-1(zk)28(\\363)28(w)-1(n)1(a.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-338(pr)1(z)-1(y\\261pi)1(e)-1(sz)-1(y)1(\\252)-1(a)-338(kr)1(oku,)-338(w)-339(n)1(iem)-1(a\\252ej)-338(ju)1(\\273)-339(trw)28(o)-28(dze)-339(dop)1(ada)-55(j\\241c)-339(c)28(ha\\252up)29(y)83(,)]TJ -27.879 -13.549 Td[(matk)56(a)-334(siedz)-1(i)1(a\\252a)-334(w)-333(progu)-332(z)-334(k)56(\\241dzie)-1(l)1(\\241,)-334(a)-333(p)1(rz)-1(y)-333(n)1(ie)-1(j)-332(par\\246)-333(roz)-1(gad)1(an)28(yc)28(h)-333(k)28(obiet.)]TJ 27.879 -13.549 Td[({)-254(Wid)1(z)-1(ia\\252am)-254(jak)-254(w)27(as,)-254(s)-1(i)1(e)-1(d)1(z)-1(\\241)-254(w)-255(gan)1(ku,)-254(a)-254(starsz)-1(e)-255(u)-254(p)1(rob)-27(os)-1(zcz)-1(a)-254(na)-254(p)-27(ok)28(o)-56(jac)28(h.)]TJ 0 -13.549 Td[({)-333(A)-334(p)-27(o)-333(w)27(\\363)-55(jta)-333(p)-27(os)-1(\\252ali)-333(Mi)1(c)27(ha\\252a)-333(organ)1(is)-1(t)1(\\363)27(w.)]TJ 0 -13.549 Td[({)-410(P)28(o)-410(w)28(\\363)-56(j)1(ta!)-410(M)1(oi\\261)-1(ciewy)83(,)-410(t)1(o)-410(nie)-410(pr)1(z)-1(elew)-1(k)1(i.)-410(Ho,)-409(ho,)-410(wyj)1(d\\241)-410(z)-410(tego)-410(histori)1(e)-1(,)]TJ -27.879 -13.55 Td[(wyjd)1(\\241...)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(jeno)-333(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252y)-333(\\261)-1(ci\\241)-28(ga\\242)-333(p)-28(o)-27(datki)1(.)]TJ 0 -13.549 Td[({)-326(Hale,)-326(to)-326(b)28(y)-325(ja\\273e)-327(w)-326(t)28(yla)-326(n)1(aro)-28(d)1(u)-326(p)1(rz)-1(y)1(je\\273)-1(d)1(\\273)-1(a\\252y)84(,)-326(c)-1(o?)-326(Mu)1(s)-1(i)-325(b)28(y\\242)-326(c)-1(o)-326(d)1(rugi)1(e)-1(go.)]TJ 0 -13.549 Td[({)-362(P)28(ewnie,)-362(ale)-362(nic)-362(dob)1(rego)-362(z)-363(tego)-362(nie)-362(wyjd)1(z)-1(i)1(e)-1(,)-362(ob)1(ac)-1(zycie)-1(,)-361(s)-1(p)-27(om)-1(n)1(icie)-363(mo)-56(j)1(e)]TJ -27.879 -13.549 Td[(s\\252)-1(o)28(w)28(a.)]TJ 27.879 -13.55 Td[({)-290(T)83(o)-290(j)1(a)-290(w)28(am)-290(rz)-1(ekn)1(\\246)-1(,)-289(p)-28(o)-290(co)-290(p)1(rz)-1(y)1(jec)27(ha\\252y)-289({)-290(z)-1(acz\\246)-1(\\252a)-290(Jagu)1(s)-1(t)28(yn)1(k)56(a)-290(pr)1(z)-1(yst\\246puj)1(\\241c)]TJ -27.879 -13.549 Td[(do)-333(n)1(ic)27(h)1(.)]TJ 27.879 -13.549 Td[(Zbi)1(\\252)-1(y)-333(si\\246)-334(w)-333(kup)-27(\\246)-334(i)-333(ki)1(e)-1(j)-333(g\\246s)-1(i)-333(p)-27(o)28(w)-1(y)1(c)-1(i\\241)-27(ga\\252y)-334(szyje)-334(n)1(as)-1(\\252u)1(c)27(h)28(u)1(j\\241c)-334(z)-333(c)27(hciw)28(o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[({)-467(A)-467(t)1(o)-467(b)-28(\\246d\\241)-466(w)27(as)-467(z)-1(ap)1(isyw)27(a\\252y)-466(do)-467(w)28(o)-56(j)1(s)-1(k)56(a)-467({)-467(za\\261)-1(mia\\252a)-467(si\\246)-467(s)-1(k)1(rze)-1(kli)1(w)-1(i)1(e)-1(,)-466(ale)]TJ -27.879 -13.549 Td[(\\273adna)-333(n)1(ie)-334(za)27(wt\\363rzy\\252a,)-333(t)28(ylk)28(o)-333(Domini)1(k)28(o)27(w)28(a)-333(rz)-1(ek\\252a)-333(z)-334(pr)1(z)-1(ek)56(\\241s)-1(em)-1(:)]TJ 27.879 -13.55 Td[({)-333(C)-1(i)1(\\246)-1(giem)-334(si\\246)-334(w)28(as)-334(trzyma)-56(j)1(\\241)-334(p)1(s)-1(i)1(e)-334(\\014gl)1(e)-1(.)]TJ 0 -13.549 Td[({)-297(A)-298(b)-27(o)-297(z)-298(ig\\252y)-297(rob)1(ita)-298(wid)1(\\252y!)-297(Wsz)-1(ystkie)-297(dziw)-298(z\\246)-1(b)-27(\\363)28(w)-298(n)1(ie)-298(p)-27(ogub)1(i\\241)-298(ze)-298(strac)28(h)28(u,)]TJ -27.879 -13.549 Td[(a)-333(k)55(a\\273da)-333(b)28(y)-333(rad)1(a)-333(jakiej)-333(p)1(rz)-1(y)1(go)-28(dzie.)-333(Wielk)55(a)-333(mi)-333(rze)-1(cz)-334(z)-1(i)1(and)1(ary)83(.)]TJ 27.879 -13.549 Td[(P\\252osz)-1(k)28(o)28(w)28(a)-313(wto)-28(cz)-1(y\\252a)-313(sw)27(\\363)-55(j)-313(spa\\261n)28(y)-312(k)55(a\\252d)1(un)-312(w)-313(op\\252otki)-312(i)-313(dal)1(e)-1(j)1(\\273)-1(e)-313(rozp)-28(o)28(wiad)1(a\\242)-1(,)]TJ -27.879 -13.549 Td[(jak)-333(to)-333(j)1(\\241)-334(zaraz)-334(cos)-1(i)1(k)-334(t)1(kn\\246\\252o,)-333(kiej)-333(do)-55(jrza\\252a)-334(b)1(ryk)1(i,)-333(jak)-333(to..)1(.)]TJ 27.879 -13.55 Td[({)-333(C)-1(i)1(c)27(ho)-55(jta!)-333(An)1(o)-334(G)1(rze)-1(la)-333(z)-334(w)28(\\363)-56(j)1(te)-1(m)-333(le)-1(c\\241)-333(na)-333(pleban)1(i\\246.)]TJ 0 -13.549 Td[(P)28(on)1(ie)-1(s\\252y)-333(o)-28(cz)-1(y)-333(na)-333(dr)1(ug\\241)-333(s)-1(t)1(ron\\246)-333(s)-1(ta)28(wu,)-333(p)1(rz)-1(epr)1(o)27(w)28(adza)-56(j)1(\\241c)-334(id)1(\\241c)-1(y)1(c)27(h.)]TJ 0 -13.549 Td[({)-333(C)-1(i)1(e)-1(,)-333(to)-333(i)-333(Grze)-1(l)1(\\246)-334(w)27(o\\252a)-55(j\\241.)]TJ 330.353 -29.888 Td[(721)]TJ\nET\nendstream\nendobj\n2300 0 obj <<\n/Type /Page\n/Contents 2301 0 R\n/Resources 2299 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2299 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2305 0 obj <<\n/Length 8983      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(722)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(46.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Ale)-459(ni)1(e)-460(zgad\\252y)84(,)-459(b)-27(o)-459(Grzela)-459(pu)1(\\261)-1(ci\\252)-459(b)1(rata)-459(nap)1(rz\\363)-28(d,)-458(a)-459(s)-1(am)-459(ob)-27(e)-1(j)1(rza\\252)-459(br)1(yki,)]TJ -27.879 -13.549 Td[(sto)-56(j)1(\\241c)-1(e)-469(p)1(rze)-1(d)-468(p)1(lebani)1(\\241,)-468(w)-1(y)1(p)28(yta\\252)-468(fu)1(rman\\363)28(w,)-468(przyj)1(rz)-1(a\\252)-468(si\\246)-469(\\273and)1(armo)-1(m)-468(s)-1(i)1(e)-1(d)1(z)-1(\\241-)]TJ 0 -13.549 Td[(cym)-323(w)-322(gank)1(u)-322(i)-322(jak)28(o\\261)-322(mo)-28(c)-1(n)1(o)-322(z)-1(an)1(ie)-1(p)-27(ok)28(o)-56(j)1(on)28(y)-322(p)-27(olec)-1(ia\\252)-322(d)1(o)-323(M)1(ate)-1(u)1(s)-1(za)-322(z)-1(a)-55(j\\246te)-1(go)-322(p)1(rzy)]TJ 0 -13.549 Td[(St)1(ac)27(ho)28(w)28(e)-1(j)-394(c)27(h)1(a\\252up)1(ie)-1(;)-394(w\\252a\\261)-1(n)1(ie)-395(b)28(y\\252)-395(siedzia\\252)-395(okr)1(akiem)-395(na)-394(z)-1(r\\246bi)1(e)-395(z)-1(acina)-55(j\\241c)-395(\\252uzy)-394(la)]TJ 0 -13.549 Td[(osadze)-1(n)1(ia)-334(k)1(rokwi.)]TJ 27.879 -13.55 Td[({)-333(Nie)-334(o)-28(d)1(jec)27(h)1(a\\252)-1(y)-333(j)1(e)-1(sz)-1(cze)-1(?)-334({)-333(p)28(y)1(ta\\252)-334(n)1(ie)-334(p)1(rz)-1(esta)-56(j)1(\\241c)-334(r\\241b)1(a\\242)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(n)1(ie,)-334(t)1(o)-334(j)1(e)-1(n)1(o)-334(b)1(ieda,)-333(\\273)-1(e)-333(nie)-334(wiad)1(a,)-333(p)-28(o)-333(co)-334(p)1(rzyjec)27(h)1(a\\252y)83(.)]TJ 0 -13.549 Td[({)-333(I)-334(w)-333(t)28(ym)-334(si\\246)-334(cos)-1(ik)-333(tai)-333(n)1(ie)-1(d)1(obr)1(e)-1(go!)-333({)-333(z)-1(a)-55(j\\241k)56(a\\252)-333(s)-1(tar)1(y)-334(Byli)1(c)-1(a.)]TJ 0 -13.549 Td[({)-254(A)-254(m)-1(o\\273e)-255(o)-254(z)-1(ebr)1(anie!)-254(Nac)-1(ze)-1(l)1(nik)-254(si\\246)-255(wygra\\273a\\252,)-254(a)-255(stra\\273ni)1(ki)-254(ju)1(\\273)-255(si\\246)-255(tu)-254(i)-254(o)28(wdzie)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ewiady)1(w)27(a\\252y)84(,)-334(k)1(to)-334(Li)1(p)-28(ce)-334(bu)1(n)28(tu)1(je)-334({)-333(rze)-1(k)1(\\252)-334(M)1(ate)-1(u)1(s)-1(z)-334(ze)-1(su)28(w)28(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(na)-333(zie)-1(mi\\246.)]TJ 27.879 -13.549 Td[({)-490(T)83(o)-490(b)28(y)-490(ry)1(c)27(h)28(t)28(yk)-490(wyp)1(ada\\252o,)-490(\\273e)-491(pr)1(z)-1(yj)1(e)-1(c)28(ha\\252y)-490(p)-27(o)-490(m)-1(n)1(ie)-1(!)-489({)-491(sz)-1(epn)1(\\241\\252)-490(Grze)-1(la)]TJ -27.879 -13.55 Td[(rozgl\\241d)1(a)-56(j\\241c)-333(s)-1(i\\246)-333(nies)-1(p)-27(ok)28(o)-56(j)1(ni)1(e)-1(,)-333(pr)1(z)-1(y)1(blad)1(\\252)-334(i)-333(ci\\246)-1(\\273k)28(o)-333(robi)1(\\252)-334(p)1(ie)-1(r)1(s)-1(iami.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mni)1(e)-334(s)-1(i)1(\\246)-334(widzi,)-333(co)-334(p)1(r\\246)-1(d)1(z)-1(ej)-333(b)28(y)-333(p)-27(o)-333(R)-1(o)-27(c)27(ha!)-333({)-333(zau)28(w)27(a\\273y\\252)-333(Stac)27(h)1(o.)]TJ 0 -13.549 Td[({)-256(Pra)28(wda,)-256(p)1(rze)-1(ciek)-257(si\\246)-257(j)1(u\\273)-257(o)-256(n)1(ie)-1(go)-256(pr)1(z)-1(ep)28(yt)28(yw)28(ali!)-256(\\233e)-257(mi)-256(to)-256(na)28(w)27(et)-256(w)-257(m)28(y\\261)-1(l)1(ac)27(h)]TJ -27.879 -13.549 Td[(ni)1(e)-334(p)-27(os)-1(ta\\252o!)-333({)-333(o)-28(detc)27(h)1(n\\241\\252)-333(z)-334(ul)1(g\\241,)-334(l)1(e)-1(cz)-334(sro)-28(d)1(z)-1(e)-334(zatrosk)56(an)28(y)-333(o)-334(n)1(iego,)-334(r)1(z)-1(ek\\252)-333(s)-1(m)28(utn)1(ie)-1(:)]TJ 27.879 -13.549 Td[({)-333(Ani)-333(c)27(h)29(ybi;)-333(\\273e)-334(j)1(e)-1(\\261li)-333(m)-1(a)-55(j\\241)-333(k)28(ogo)-333(w)-1(zi\\241\\242,)-333(to)-334(t)28(yl)1(k)28(o)-334(Ro)-28(c)28(ha!)]TJ 0 -13.55 Td[({)-303(Jak)1(\\273)-1(e,)-303(mo\\273)-1(em)27(y)-302(go)-303(to)-302(da\\242,)-303(co?)-303(Ro)-28(dzonego)-303(o)-55(jca,)-303(co?)-303({)-303(kr)1(z)-1(ycza\\252)-303(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(n)1(ie)-334(sp)-28(os\\363b)-333(si\\246)-334(im)-333(prze)-1(ciwi\\242,)-333(ani)-333(mo)27(wy)-333(o)-333(t)28(ym...)]TJ 0 -13.549 Td[({)-333(Nie)-1(c)28(h)28(b)28(y)-333(si\\246)-334(k)56(a)-56(j)-333(sc)27(h)1(o)28(w)27(a\\252,)-333(trza)-334(go)-333(p)1(rz)-1(estrze)-1(c,)-333(ju\\261ci...)-333(j\\241k)56(a\\252)-333(B)-1(y)1(lica.)]TJ 0 -13.549 Td[({)-385(A)-385(m)-1(o\\273e)-386(to)-385(co)-385(dru)1(giego,)-385(m)-1(o\\273e)-386(to)-385(z)-386(w)28(\\363)-56(j)1(tem)-386(spra)28(w)28(a)-386({)-385(wtr\\241ci\\252)-385(ni)1(e)-1(\\261m)-1(i)1(a\\252)-1(o)]TJ -27.879 -13.549 Td[(St)1(ac)27(ho.)]TJ 27.879 -13.55 Td[({)-307(Na)-308(ws)-1(zelki)-307(pr)1(z)-1(yp)1(adek)-307(le)-1(c\\246)-308(go)-307(prze)-1(strze)-1(c!)-307({)-308(za)28(w)27(o\\252a\\252)-307(Grze)-1(la)-307(i)-307(bu)1(c)27(hn)1(\\241\\252)-308(w)28(e)]TJ -27.879 -13.549 Td[(zb)-28(o\\273a,)-333(przebiera)-55(j\\241c)-334(si\\246)-334(ogro)-27(dami)-333(do)-333(B)-1(or)1(yn\\363)28(w.)]TJ 27.879 -13.549 Td[(An)28(tek)-348(siedzia\\252)-348(w)-348(ganku)-347(naku)29(w)27(a)-55(j\\241c)-348(s)-1(i)1(e)-1(rp)29(y)-348(na)-347(k)28(o)27(w)28(ade\\252ku)-348(i)-347(p)-28(or)1(w)27(a\\252)-348(si\\246)-348(s)-1(tr)1(-)]TJ -27.879 -13.549 Td[(w)28(o\\273)-1(on)28(y)84(,)-333(do)28(wiedzia)28(w)-1(sz)-1(y)-333(si\\246,)-334(o)-333(co)-334(i)1(dzie)-1(.)]TJ 27.879 -13.549 Td[({)-333(W\\252a\\261)-1(n)1(ie,)-334(co)-333(jeno)-333(przysz)-1(l)1(i.)-333(Ro)-28(c)27(h)28(u)1(,)-333(a)-334(c)28(ho)-28(d)1(\\271)-1(cie)-334(n)1(o)-334(d)1(o)-333(nas)-1(!)-333({)-333(kr)1(z)-1(yk)1(n\\241\\252.)]TJ 0 -13.55 Td[({)-344(Co)-344(si\\246)-344(s)-1(t)1(a\\252)-1(o?)-343({)-344(p)28(yta\\252)-344(stary)-343(wy\\261)-1(ciu)1(bia)-55(j\\241c)-344(g\\252o)28(w)27(\\246)-344(p)1(rz)-1(ez)-344(okno,)-343(ale)-344(ni)1(m)-344(m)27(u)]TJ -27.879 -13.549 Td[(rze)-1(k)1(li,)-333(pr)1(z)-1(y)1(le)-1(cia\\252)-333(s)-1(ro)-27(dze)-334(z)-1(azia)-55(jan)28(y)-333(M)1(ic)27(h)1(a\\252)-334(organ)1(ist\\363)27(w.)]TJ 27.879 -13.549 Td[({)-333(Wiec)-1(ie,)-333(a)-333(to)-334(d)1(o)-334(w)28(as,)-334(An)29(toni,)-333(w)28(al\\241)-333(\\273)-1(an)1(darm)28(y!)-333(Ju)1(\\273)-334(s)-1(\\241)-333(nad)-333(sta)28(w)27(em...)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(p)-27(o)-333(m)-1(n)1(ie!)-333({)-334(j)1(\\246)-1(kn)1(\\241\\252)-334(Ro)-28(c)28(ho)-333(z)-1(wiesz)-1(a)-55(j\\241c)-334(sm)27(u)1(tnie)-333(g\\252o)27(w)28(\\246)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(zus,)-333(Mari)1(a!)-333({)-334(kr)1(z)-1(yk)1(n\\246\\252a)-334(Han)1(k)55(a)-333(sta)-56(j)1(\\241c)-334(w)-334(p)1(rogu)-333(i)-333(ud)1(e)-1(r)1(z)-1(y)1(\\252)-1(a)-333(w)-333(p\\252ac)-1(z.)]TJ 0 -13.55 Td[({)-333(C)-1(i)1(c)27(ho!)-333(T)83(r)1(z)-1(a)-333(zaradzi\\242)-334(j)1(ak)28(o\\261)-334({)-333(s)-1(ze)-1(p)1(ta\\252)-334(An)29(te)-1(k)-333(t\\246\\273)-1(\\241c)-333(m)27(y\\261l\\241.)]TJ 0 -13.549 Td[({)-369(S)1(krzykn)1(\\246)-370(wie\\261)-370(i)-368(nie)-369(dam)28(y)-369(w)28(as)-1(,)-368(Ro)-28(c)27(h)28(u)1(!)-369({)-369(sro\\273y\\252)-369(s)-1(i)1(\\246)-370(M)1(ic)27(h)1(a\\252)-1(,)-368(w)-1(y)1(\\252am)27(uj)1(\\241c)]TJ -27.879 -13.549 Td[(sie)-1(l)1(n\\241)-333(ga\\252\\241\\271)-334(i)-333(gro\\271)-1(n)1(ie)-334(to)-27(c)-1(z\\241c)-334(o)-28(cz)-1(ami.)]TJ 27.879 -13.549 Td[({)-356(Nie)-356(ba)-56(j)1(du)1(rz!)-356(Ro)-28(c)27(h)28(u)1(,)-356(z)-1(a)-356(b)1(r\\363g)-356(i)-356(w)-356(\\273)-1(yt)1(a,)-356(pr\\246dzej)-356(in)1(o!)-356(Przyw)28(aruj)1(c)-1(i)1(e)-357(k)56(a)-56(j)-355(w)]TJ -27.879 -13.549 Td[(br)1(u\\271dzie,)-334(p)-27(\\363ki)-333(w)28(as)-334(ni)1(e)-334(z)-1(a)28(w)28(o\\252am)-1(.)-333(A)-333(c)27(h)28(y)1(bk)28(o,)-333(b)28(yc)28(h)-333(nie)-333(nadesz)-1(li)1(...)]TJ 27.879 -13.549 Td[(Ro)-28(c)27(h)1(o)-341(zakr)1(\\246)-1(ci\\252)-341(si\\246)-341(p)-27(o)-341(i)1(z)-1(b)1(ie)-1(,)-340(cisn\\241\\252)-341(j)1(akie\\261)-341(pap)1(iery)-340(J\\363z)-1(ce)-341(le\\273)-1(\\241cej)-340(na)-340(\\252)-1(\\363\\273ku)-340(i)]TJ -27.879 -13.55 Td[(zas)-1(ze)-1(p)1(ta\\252:)]TJ 27.879 -13.549 Td[({)-333(Sc)27(h)1(o)28(w)27(a)-55(j)-333(p)-28(o)-27(d)-333(s)-1(i)1(e)-1(b)1(ie)-1(,)-333(a)-333(nie)-333(w)-1(y)1(da)-55(j!)]TJ 0 -13.549 Td[(I)-347(j)1(ak)-347(b)28(y\\252,)-346(b)-28(ez)-347(c)-1(zapki)-346(a)-347(k)56(ap)-27(ot)27(y)84(,)-347(r)1(z)-1(u)1(c)-1(i)1(\\252)-347(s)-1(i\\246)-347(w)-347(sad)-347(i)-346(pr)1(z)-1(epad)1(\\252)-347(jak)-347(k)56(amie\\253)-347(w)28(e)]TJ -27.879 -13.549 Td[(w)28(o)-28(dzie,)-334(\\273e)-334(j)1(e)-1(n)1(o)-334(k)56(a)-56(j)1(\\261)-334(za)-334(b)1(rogiem)-334(zaru)1(c)27(ha\\252o)-333(s)-1(i)1(\\246)-334(\\273)-1(y)1(to.)]TJ 27.879 -13.549 Td[({)-392(Odejd)1(\\271)-1(,)-392(G)1(rze)-1(la!)-392(Han)1(k)56(a,)-392(do)-392(s)-1(w)28(o)-56(j)1(e)-1(j)-391(rob)-27(ot)27(y)1(!)-392(Uc)-1(iek)56(a)-56(j)1(,)-392(Mic)28(ha\\252,)-392(i)-392(ani)-392(mru)1(-)]TJ -27.879 -13.55 Td[(mru!)-341({)-342(r)1(oz)-1(k)56(azyw)27(a\\252)-341(An)28(tek)-342(zas)-1(i)1(ada)-56(j)1(\\241c)-342(do)-341(pr)1(z)-1(erw)27(an)1(e)-1(j)-341(r)1(ob)-28(ot)28(y)-341(i)-341(j\\241\\252)-342(zno)28(wu)-341(nacina\\242)]TJ 0 -13.549 Td[(sie)-1(r)1(p)-355(tak)-356(r)1(\\363)28(w)-1(n)1(iu\\261k)28(o)-355(i)-356(sp)-28(ok)28(o)-55(jn)1(ie)-356(j)1(ak)-356(p)1(rz\\363)-28(dzi,)-355(t)28(ylk)28(o)-355(\\273)-1(e)-356(co)-356(tr)1(o)-28(c)27(h)1(\\246)-356(p)-28(o)-27(dn)1(os)-1(i\\252)-355(os)-1(tr)1(z)-1(e)]TJ\nET\nendstream\nendobj\n2304 0 obj <<\n/Type /Page\n/Contents 2305 0 R\n/Resources 2303 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2303 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2308 0 obj <<\n/Length 8082      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(723)]TJ -358.232 -35.866 Td[(p)-27(o)-28(d)-339(\\261w)-1(i)1(a)-1(t)1(\\252)-1(o,)-339(a)-339(strzyg\\252)-340(\\261lepiami)-339(na)-339(ws)-1(zystkie)-340(stron)29(y)83(,)-339(gdy)1(\\273)-340(nasz)-1(cz)-1(ekiw)28(ani)1(a)-340(p)1(s)-1(\\363)28(w)]TJ 0 -13.549 Td[(b)28(y\\252y)-395(coraz)-395(bli)1(\\273)-1(sz)-1(e,)-395(i)-395(wnet)-395(rozleg\\252y)-395(s)-1(i)1(\\246)-396(ci\\246)-1(\\273kie)-395(s)-1(t\\241)-27(pan)1(ia,)-395(br)1(z)-1(\\246ki)-395(p)1(a\\252as)-1(z\\363)27(w)-395(i)-395(r)1(oz)-1(-)]TJ 0 -13.549 Td[(mo)27(wy)84(...)]TJ 27.879 -13.549 Td[(Zat\\252uk)1(\\252)-1(o)-462(m)28(u)-462(s)-1(erce)-463(i)-462(z)-1(ad)1(ygota\\252y)-462(r\\246c)-1(e,)-462(ale)-463(ci\\241\\252)-462(r\\363)28(wno,)-462(aku)1(ratn)1(ie)-1(,)-462(r)1(az)-463(z)-1(a)]TJ -27.879 -13.549 Td[(raze)-1(m,)-333(ni)1(e)-334(o)-28(dr)1(yw)28(a)-56(j\\241c)-333(o)-28(c)-1(z\\363)28(w,)-334(a\\273)-333(dop)1(ie)-1(r)1(o)-334(k)1(ie)-1(j)-333(p)1(rze)-1(d)-333(n)1(im)-334(stan\\246li.)]TJ 27.879 -13.55 Td[({)-333(Ro)-28(c)27(h)1(o)-334(d)1(om)-1(a?)-333({)-334(p)29(yta\\252)-334(w)28(\\363)-56(j)1(t,)-333(wie)-1(l)1(c)-1(e)-334(zal\\246kni)1(on)28(y)83(.)]TJ 0 -13.549 Td[(An)28(tek)-333(obr)1(z)-1(u)1(c)-1(i\\252)-333(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(iem)-334(c)-1(a\\252\\241)-333(ku)1(p)-28(\\246)-333(i)-334(o)-27(drze)-1(k)1(\\252)-334(w)28(olno:)]TJ 0 -13.549 Td[({)-333(Musi)-333(b)28(y\\242)-333(na)-333(w)-1(si,)-333(b)-27(o)-334(n)1(ie)-334(wid)1(z)-1(ia\\252em)-334(go)-333(o)-28(d)-333(r)1(a)-1(n)1(a.)]TJ 0 -13.549 Td[({)-333(Ot)28(w)27(or)1(z)-1(y\\242!)-333({)-333(roz)-1(k)56(aza\\252)-334(gr)1(z)-1(mi\\241co)-334(j)1(aki\\261)-334(starsz)-1(y)84(.)]TJ 0 -13.549 Td[({)-333(Przec)-1(iek)-333(wyw)27(ar)1(te)-1(!)-333({)-333(o)-28(db)1(ur)1(kn\\241\\252)-333(An)28(tek)-333(d\\271w)-1(i)1(ga)-56(j\\241c)-333(s)-1(i\\246)-333(z)-334(\\252a)28(w)-1(y)84(.)]TJ 0 -13.549 Td[(Urz\\246)-1(d)1(ni)1(k)-370(wraz)-371(z)-370(\\273and)1(armam)-1(i)-370(wsz)-1(ed\\252)-370(d)1(o)-370(c)27(ha\\252u)1(p)28(y)84(,)-370(z)-1(a\\261)-370(stra\\273nicy)-370(rozlec)-1(ieli)]TJ -27.879 -13.55 Td[(si\\246)-334(pi)1(lno)28(w)28(a\\242)-334(s)-1(ad)1(u)-333(i)-333(ob)-28(ej\\261cia.)]TJ 27.879 -13.549 Td[(Na)-246(d)1(ro)-28(d)1(z)-1(e)-246(ze)-1(b)1(ra\\252o)-246(si\\246)-246(ju)1(\\273)-246(z)-246(p)-28(\\363\\252)-245(w)-1(si,)-245(przygl\\241d)1(a)-56(j)1(\\241c)-246(s)-1(i\\246)-246(w)-246(mil)1(c)-1(ze)-1(n)1(iu,)-245(jak)-245(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(trz\\241sali)-280(dom)-280(ki)1(e)-1(b)28(y)-279(k)28(op)-28(\\246)-280(s)-1(i)1(ana.)-280(An)29(te)-1(k)-280(m)28(usia\\252)-280(im)-280(ws)-1(zystk)28(o)-280(p)-28(ok)56(azyw)27(a\\242)-280(i)-280(ot)28(wiera\\242,)]TJ 0 -13.549 Td[(a)-333(Hank)56(a)-333(s)-1(iedzia\\252a)-333(p)-28(o)-28(d)-332(oknem)-334(z)-334(d)1(z)-1(i)1(e)-1(c)27(k)1(ie)-1(m)-333(przy)-333(pi)1(e)-1(rsi.)]TJ 27.879 -13.549 Td[(Ju)1(\\261)-1(ci,)-282(co)-283(sz)-1(u)1(k)56(ali)-282(na)-282(d)1(armo,)-282(ale)-282(tak)-282(p)-28(enetro)28(w)28(ali)-282(ws)-1(z\\246)-1(d)1(y)-282(ni)1(e)-283(pr)1(z)-1(epu)1(s)-1(zc)-1(za)-56(j)1(\\241c)]TJ -27.879 -13.55 Td[(zgo\\252)-1(a)-333(n)1(ic)-1(ze)-1(m)28(u,)-333(\\273e)-334(na)28(w)28(e)-1(t)-333(kt\\363r)1(y\\261)-334(za)-56(j)1(rz)-1(a\\252)-333(p)-27(o)-28(d)-333(\\252\\363\\273)-1(k)56(a.)]TJ 27.879 -13.549 Td[({)-333(A)-334(siedzi)-333(tam)-334(i)-333(w\\252)-1(a\\261ni)1(e)-334(c)-1(zek)55(a)-333(na)-333(w)28(a)-56(j)1(u!)-333({)-333(m)-1(r)1(ukn)1(\\246)-1(\\252a.)]TJ 0 -13.549 Td[(St)1(ars)-1(zy)-298(do)-56(j)1(rza\\252)-299(na)-298(s)-1(tol)1(e)-299(jakie\\261)-299(ksi\\241\\273)-1(ec)-1(zki)-298(pr)1(z)-1(yci\\261ni\\246te)-299(P)28(asyjk)56(\\241,)-298(s)-1(k)28(o)-28(czy\\252)-299(do)]TJ -27.879 -13.549 Td[(ni)1(c)27(h)-333(ki)1(e)-1(j)-333(r)1(y\\261)-334(i)-333(j\\241\\252)-333(je)-334(p)1(iln)1(ie)-334(p)1(rze)-1(gl\\241d)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-333(Sk)56(\\241d)-333(je)-333(m)-1(acie?)]TJ 0 -13.55 Td[({)-333(Musi)-333(b)28(y\\242,)-333(c)-1(o)-333(Ro)-28(c)27(h)1(o)-334(j)1(e)-334(p)-27(o\\252o\\273)-1(y\\252,)-333(to)-333(se)-334(i)-333(le)-1(\\273\\241.)]TJ 0 -13.549 Td[({)-333(B)-1(or)1(yno)28(w)28(a)-334(n)1(ie)-1(gr)1(am)-1(ot)1(na!)-333({)-333(t\\252umac)-1(zy\\252)-333(w)27(\\363)-55(jt.)]TJ 0 -13.549 Td[({)-333(Kto)-333(z)-334(w)27(as)-333(umie)-334(cz)-1(yt)1(a\\242)-1(?)]TJ 0 -13.549 Td[({)-338(A)-338(\\273)-1(ad)1(ne,)-338(tak)-338(nas)-339(u)1(c)-1(zyli)-338(w)28(e)-339(sz)-1(k)28(ol)1(e)-1(,)-338(\\273e)-339(tera)-338(nik)1(to)-339(n)1(ie)-339(r)1(oz)-1(b)1(ierz)-1(e)-338(na)28(w)28(e)-1(t)-338(na)]TJ -27.879 -13.549 Td[(ksi\\241\\273c)-1(e)-334(d)1(o)-334(n)1(ab)-28(o\\273e\\253st)27(w)28(a!)-333({)-333(o)-28(dp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-333(An)28(tek.)]TJ 27.879 -13.55 Td[(St)1(ars)-1(zy)-333(o)-28(d)1(da\\252)-334(k)1(s)-1(i\\241\\273ec)-1(zki)-333(dr)1(ugiem)27(u)-333(i)-333(r)1(usz)-1(y\\252)-333(na)-333(dr)1(ug\\241)-333(s)-1(tr)1(on\\246)-334(d)1(om)27(u)1(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(to,)-333(c)27(hor)1(a?)-334({)-333(p)-28(o)-27(dsz)-1(ed\\252)-333(nieco)-334(d)1(o)-334(J\\363zki.)]TJ 0 -13.549 Td[({)-333(A)-334(j)1(u\\261c)-1(i)1(,)-334(j)1(u\\273)-333(o)-28(d)-333(par)1(u)-333(niedziel)-333(le)-1(\\273y)-333(na)-333(os)-1(p)-27(\\246.)]TJ 0 -13.549 Td[(Urz\\246)-1(d)1(ni)1(k)-334(\\261pi)1(e)-1(sz)-1(n)1(ie)-334(cofn)1(\\241\\252)-334(si\\246)-334(d)1(o)-334(sieni.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(w)-333(tej)-333(iz)-1(b)1(ie)-334(mies)-1(zk)56(a\\252)-1(?)-333({)-333(w)-1(y)1(p)28(yt)28(yw)28(a\\252)-334(w)28(\\363)-56(j)1(ta.)]TJ 0 -13.55 Td[({)-333(I)-334(w)-333(te)-1(j)1(,)-333(i)-333(k)55(a)-55(j)-333(m)27(u)-333(p)-27(opad)1(\\252o,)-333(z)-1(wycz)-1(a)-55(jn)1(ie)-334(j)1(ak)-334(d)1(z)-1(i)1(ad.)]TJ 0 -13.549 Td[(Pr)1(z)-1(ejr)1(z)-1(eli)-340(ws)-1(zystkie)-340(k)56(\\241t)28(y)83(,)-340(sz)-1(u)1(k)56(a)-56(j)1(\\241c)-341(na)28(w)28(e)-1(t)-340(za)-340(obr)1(az)-1(ami,)-340(J\\363zk)56(a)-340(c)27(h)1(o)-28(dzi\\252a)-340(z)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-1(i)-369(rozpal)1(on)28(ymi)-369(o)-28(c)-1(zami,)-369(a)-370(tak)-369(r)1(oz)-1(d)1(ygotana)-369(ze)-370(s)-1(tr)1(ac)27(h)28(u)1(,)-369(\\273)-1(e)-370(gd)1(y)-369(kt\\363ry)1(\\261)-370(z)-1(b)1(li\\273y\\252)]TJ 0 -13.549 Td[(si\\246)-334(do)-333(n)1(ie)-1(j)1(,)-333(z)-1(askrze)-1(cz)-1(a\\252a)-333(ni)1(e)-1(p)1(rzytomnie:)]TJ 27.879 -13.549 Td[({)-333(Sc)27(h)1(o)28(w)27(a\\252am)-334(go)-333(p)-27(e)-1(wni)1(e)-334(p)-27(o)-28(d)-333(s)-1(i)1(e)-1(b)1(ie)-1(,)-333(co?)-334(S)1(z)-1(u)1(k)56(a)-56(jcie!...)]TJ 0 -13.549 Td[(A)-293(kiedy)-292(s)-1(k)28(o\\253)1(c)-1(zyli,)-292(An)28(tek)-293(pr)1(z)-1(yst\\241)-28(p)1(i\\252)-293(do)-293(starsz)-1(ego)-293(i)-293(k\\252an)1(ia)-56(j)1(\\241c)-294(m)28(u)-293(si\\246)-293(w)-294(p)1(as)]TJ -27.879 -13.55 Td[(zap)28(yta\\252)-333(p)-28(ok)28(or)1(n)28(ym)-334(g\\252ose)-1(m:)]TJ 27.879 -13.549 Td[({)-333(Dopr)1(as)-1(zam)-334(si\\246)-1(,)-333(cz)-1(y)-333(to)-333(Ro)-28(c)27(h)1(o)-334(zrob)1(i\\252)-333(jakie)-333(z)-1(\\252o)-28(d)1(z)-1(iejst)28(w)27(o?..)1(.)]TJ 0 -13.549 Td[(Urz\\246)-1(d)1(ni)1(k)-334(za)-56(j)1(rza\\252)-334(m)28(u)-333(jak)28(o\\261)-334(z)-333(bli)1(s)-1(k)56(a)-333(w)-334(t)28(w)27(ar)1(z)-334(i)-333(rze)-1(k\\252)-333(z)-334(n)1(ac)-1(iskiem:)]TJ 0 -13.549 Td[({)-333(A)-334(wyd)1(a)-334(si\\246,)-333(\\273)-1(e)-334(go)-333(uk)1(ryw)28(as)-1(z,)-333(to)-333(ju\\273)-333(raze)-1(m)-334(p)-27(o)28(w)27(\\246dr)1(uj)1(e)-1(cie)-1(,)-333(s\\252ysz)-1(ysz)-1(!)1(...)]TJ 0 -13.549 Td[({)-320(Dy\\242)-320(s)-1(\\252ysz\\246)-1(;)-320(j)1(e)-1(n)1(o)-320(nie)-320(p)-28(or)1(e)-1(d)1(z)-1(\\246)-320(wym)-1(i)1(ark)28(o)28(w)27(a\\242,)-320(o)-320(co)-321(spr)1(a)28(w)27(a!)-320({)-320(p)-27(o)-28(d)1(rapa\\252)-320(si\\246)]TJ -27.879 -13.55 Td[(fr)1(as)-1(ob)1(liwie,)-333(urz\\246)-1(d)1(ni)1(k)-334(sp)-27(o)-56(j)1(rz)-1(a\\252)-333(ostro)-333(i)-333(p)-28(on)1(i\\363s)-1(\\252)-333(s)-1(i)1(\\246)-334(na)-333(wie\\261)-1(.)]TJ 27.879 -13.549 Td[(Cho)-28(d)1(z)-1(i)1(li)-277(j)1(e)-1(sz)-1(cze)-278(p)-27(o)-277(r)1(\\363\\273)-1(n)28(y)1(c)27(h)-276(c)27(ha\\252u)1(pac)27(h)1(,)-277(zagl\\241d)1(ali)-277(tu)-276(i)-276(o)27(wd)1(z)-1(ie,)-277(p)1(rze)-1(p)28(y)1(tuj)1(\\241c)-1(,)]TJ\nET\nendstream\nendobj\n2307 0 obj <<\n/Type /Page\n/Contents 2308 0 R\n/Resources 2306 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2306 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2311 0 obj <<\n/Length 8977      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(724)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(46.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(k)28(ogo)-318(si\\246)-318(jeno)-317(da\\252o,)-317(\\273)-1(e)-318(j)1(u\\273)-318(s)-1(\\252o\\253)1(c)-1(e)-318(zas)-1(z\\252o)-318(i)-317(drogi)-317(z)-1(ap)-27(c)27(h)1(a\\252y)-318(si\\246)-318(stadami)-318(p)-27(\\246dzon)28(ymi)]TJ 0 -13.549 Td[(z)-334(p)1(as)-1(t)28(wisk,)-333(gdy)-333(o)-28(d)1(jec)27(hal)1(i)-333(nic)-334(n)1(ie)-334(wsk)28(\\363ra)28(ws)-1(zy)83(.)]TJ 27.879 -13.549 Td[(Wie\\261)-254(o)-28(d)1(e)-1(tc)28(hn\\246\\252a)-254(i)-253(naraz)-254(p)1(rze)-1(m\\363)28(w)-1(i)1(li)-254(wsz)-1(yscy)83(,)-253(k)55(a\\273den)-253(b)-28(o)28(wiem)-254(roz)-1(p)-27(o)28(wiada\\252,)]TJ -27.879 -13.549 Td[(jak)1(,)-235(to)-234(s)-1(zuk)56(ali)-234(u)-234(K\\252\\246b)-28(\\363)28(w,)-235(j)1(ak)-234(u)-235(G)1(rze)-1(li)1(,)-235(j)1(ak)-235(u)-234(M)1(ate)-1(u)1(s)-1(za,)-235(i)-234(k)56(a\\273)-1(d)1(e)-1(n)-234(wid)1(z)-1(i)1(a\\252)-235(na)-55(jlepi)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(i)-333(na)-55(jmni)1(e)-1(j)-333(si\\246)-334(b)-27(o)-56(j)1(a\\252,)-334(i)-333(n)1(a)-56(j)1(barzej)-333(im)-334(d)1(opiek)56(a\\252.)]TJ 27.879 -13.55 Td[(Ja\\273)-334(An)29(te)-1(k,)-333(k)1(ie)-1(d)1(y)-333(ju)1(\\273)-334(os)-1(tal)1(i)-334(sami,)-333(rze)-1(k\\252)-333(cic)27(h)1(o)-334(d)1(o)-334(Han)1(ki:)]TJ 0 -13.549 Td[({)-333(Sp)1(ra)28(w)27(a)-333(widz\\246)-334(tak)56(a,)-333(c)-1(o)-333(ju)1(\\273)-334(n)1(ie)-334(sp)-28(os\\363b)-333(trzyma\\242)-334(go)-333(w)-334(c)27(h)1(a\\252up)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Jak\\273e)-1(,)-333(wyp)-27(\\246)-1(d)1(z)-1(isz)-334(go!)-333(taki)-333(\\261wi\\246)-1(t)28(y)-333(cz)-1(\\252o)28(wie)-1(k)1(,)-333(taki)-333(dob)1(ro)-28(d)1(z)-1(iej!)]TJ 0 -13.549 Td[({)-276(A)-277(\\273e)-1(b)29(y)-277(to)-276(w)28(c)-1(i\\363r)1(no\\261c)-1(i!)-276({)-276(z)-1(ak)1(l\\241\\252,)-277(n)1(ie)-277(wiedz\\241c)-277(ju)1(\\273)-1(,)-276(co)-277(p)-27(o)-28(cz)-1(\\241\\242,)-276(s)-1(zc)-1(z\\246)-1(\\261c)-1(i)1(e)-1(m,)-276(i\\273)]TJ -27.879 -13.549 Td[(p)-27(okr\\363tce)-273(p)1(rz)-1(y)1(le)-1(cia\\252)-272(Grzela)-272(z)-273(Mateusz)-1(em)-273(i)-272(\\273e)-1(b)29(y)-272(c)-1(osik)-272(p)-28(ewnego)-272(urad)1(z)-1(i\\242,)-272(zam)-1(kn)1(\\246)-1(l)1(i)]TJ 0 -13.549 Td[(si\\246)-334(w)-334(sto)-28(d)1(ole,)-334(gd)1(y\\273)-334(d)1(o)-334(c)28(ha\\252up)29(y)-333(c)-1(i\\246giem)-334(kto\\261)-333(w)-1(p)1(ada\\252)-333(na)-333(wywiady)84(.)]TJ 27.879 -13.55 Td[(Mr)1(ok)-325(j)1(u\\273)-324(do)-324(c)-1(n)1(a)-325(p)1(rz)-1(y)1(s)-1(\\252on)1(i\\252)-325(\\261wiat,)-324(Hank)56(a)-324(p)-28(o)-28(d)1(oi\\252a)-324(kro)28(wy)-325(i)-324(P)1(ie)-1(t)1(re)-1(k)-324(p)1(rzyje-)]TJ -27.879 -13.549 Td[(c)27(h)1(a\\252)-303(z)-303(b)-27(oru,)-302(ki)1(e)-1(j)-302(dop)1(iero)-303(wysz)-1(l)1(i;)-302(An)28(te)-1(k)-302(wz)-1(i)1(\\241\\252)-303(z)-1(ar)1(az)-303(ryc)28(h)28(to)28(w)27(a\\242)-303(b)1(ryk)28(\\246,)-303(za\\261)-303(Gr)1(z)-1(ela)]TJ 0 -13.549 Td[(z)-334(M)1(ate)-1(u)1(s)-1(ze)-1(m,)-333(la)-333(z)-1(am)28(ydl)1(e)-1(n)1(ia)-334(o)-27(c)-1(z\\363)28(w)-1(,)-333(p)-27(os)-1(zli)-333(sz)-1(u)1(k)55(a\\242)-333(R)-1(o)-27(c)27(ha)-333(p)-27(o)-334(c)28(ha\\252u)1(pac)27(h)1(.)]TJ 27.879 -13.549 Td[(Dziw)27(o)28(w)28(ali)-256(s)-1(i\\246)-257(t)1(e)-1(m)28(u,)-256(b)-28(o)-28(\\242)-257(k)56(a\\273den)-256(b)28(y\\252b)28(y)-256(pr)1(z)-1(ysi\\241)-28(g\\252,)-256(jak)28(o)-256(s)-1(i)1(e)-1(d)1(z)-1(i)-256(s)-1(c)28(ho)28(w)27(an)29(y)-257(k)56(a)-56(j)1(\\261)]TJ -27.879 -13.549 Td[(u)-333(Boryn)29(y)83(.)]TJ 27.879 -13.55 Td[({)-298(Zaraz)-298(p)-28(o)-298(ob)1(ie)-1(d)1(z)-1(i)1(e)-299(gd)1(z)-1(ies)-1(i)1(k)-298(s)-1(i)1(\\246)-299(zap)-28(o)-27(dzia\\252)-298(i)-298(ani)-298(s\\252yc)27(h)28(u)1(!)-298({)-298(rozg\\252as)-1(zali)-298(p)1(rzy-)]TJ -27.879 -13.549 Td[(jaciele.)]TJ 27.879 -13.549 Td[({)-333(Ma)-333(s)-1(zc)-1(z\\246)-1(\\261cie)-1(,)-333(j)1(u\\273)-334(b)29(y)-334(se)-334(an)1(o)-334(w)-333(dyb)1(k)56(ac)27(h)-333(w)28(\\246)-1(d)1(ro)28(w)27(a\\252!)]TJ 0 -13.549 Td[(I)-283(w)-283(mig)-283(s)-1(i)1(\\246)-284(r)1(oz)-1(n)1(ie)-1(s\\252o,)-283(j)1(ak)-283(c)27(h)1(c)-1(ieli,)-282(\\273)-1(e)-283(Ro)-28(c)27(h)1(a)-283(ju)1(\\273)-284(o)-27(d)-283(p)-27(o\\252ud)1(nia)-283(n)1(ie)-283(m)-1(a)-283(w)28(e)-283(w)-1(si.)]TJ 0 -13.549 Td[({)-333(Przew)27(\\241c)27(h)1(a\\252)-334(i)-333(zwia\\252,)-333(k)55(a)-55(j)-333(pi)1(e)-1(p)1(rz)-334(ro\\261ni)1(e)-1(!)-333({)-333(p)-28(ogad)1(yw)28(ali)-333(radzi.)]TJ 0 -13.55 Td[({)-333(Nie)-1(c)28(h)-333(jeno)-333(ni)1(e)-334(p)-27(o)27(wraca)-333(w)-1(i)1(\\246)-1(ce)-1(j)1(,)-333(nic)-334(t)1(a)-334(p)-27(o)-333(nim!)-333({)-334(r)1(z)-1(ek\\252)-333(s)-1(tar)1(y)-334(P)1(\\252os)-1(zk)56(a.)]TJ 0 -13.549 Td[({)-332(Pr)1(z)-1(es)-1(zk)56(adza)-332(w)27(ama?)-333(A)-332(mo\\273)-1(e)-332(w)27(as)-332(uk)1(rz)-1(y)1(w)-1(d)1(z)-1(i)1(\\252)-1(,)-331(c)-1(o?)-332({)-332(z)-1(a)28(w)28(arc)-1(za\\252)-332(Mateusz)-1(.)]TJ 0 -13.549 Td[({)-258(A)-259(ma\\252o)-259(to)-258(nar)1(obi\\252)-258(m)-1(\\241tu)1(?)-259(Ma\\252o)-258(to)-259(w)28(as)-259(nab)1(un)29(to)27(w)28(a\\252?)-259(Jes)-1(zc)-1(zek)-259(p)1(rze)-1(z)-259(n)1(ie)-1(go)]TJ -27.879 -13.549 Td[(ca\\252)-1(a)-333(wie\\261)-334(ucierpi)1(...)]TJ 27.879 -13.549 Td[({)-333(T)83(o)-334(go)-333(z\\252ap)-28(cie)-334(i)-333(wyd)1(a)-56(jcie!)]TJ 0 -13.55 Td[({)-333(\\233e)-1(b)28(y)1(\\261)-1(ta)-333(mie)-1(l)1(i)-334(r)1(oz)-1(u)1(m)-1(,)-333(to)-333(b)28(y)-333(go)-333(ju)1(\\273)-334(da)28(wno)-333(mie)-1(l)1(i...)]TJ 0 -13.549 Td[(Sk)1(l\\241\\252)-386(go)-386(M)1(a)-1(t)1(e)-1(u)1(s)-1(z)-386(i)-386(c)28(hcia\\252)-386(p)-27(obi\\242,)-386(ledwie)-386(ic)28(h)-386(r)1(oz)-1(d)1(z)-1(ielil)1(i,)-386(wi\\246c)-386(jeno)-386(m)28(u)-386(n)1(a-)]TJ -27.879 -13.549 Td[(wytrz\\241c)27(h)1(a\\252)-361(pi\\246\\261)-1(ci\\241,)-361(n)1(as)-1(ob)1(ac)-1(zy\\252)-361(i)-361(o)-28(d)1(s)-1(ze)-1(d)1(\\252,)-361(a)-361(\\273)-1(e)-361(ju)1(\\273)-362(b)29(y\\252o)-361(do)-361(cna)-361(p)-27(o)-28(c)-1(i)1(e)-1(mni)1(a\\252)-1(o)-361(n)1(a)]TJ 0 -13.549 Td[(\\261w)-1(i)1(e)-1(cie)-1(,)-333(to)-333(i)-333(nar)1(\\363)-28(d)-333(p)-27(orozc)27(ho)-27(dzi\\252)-334(si\\246)-334(p)-27(o)-333(c)27(ha\\252u)1(pac)27(h)1(.)]TJ 27.879 -13.549 Td[(Na)-261(to)-260(w)-1(\\252a\\261nie)-261(cz)-1(ek)56(a\\252)-261(An)28(tek,)-261(b)-27(o)-261(sk)28(oro)-261(j)1(e)-1(n)1(o)-261(dr)1(ogi)-261(opu)1(s)-1(tosza\\252)-1(y)-260(i)-261(l)1(udzie)-261(z)-1(asie-)]TJ -27.879 -13.55 Td[(dl)1(i)-229(p)1(rze)-1(d)-228(wie)-1(cz)-1(erzami,)-229(a)-228(p)-28(o)-228(w)-1(si)-229(r)1(oz)-1(wia\\252y)-228(s)-1(i\\246)-229(zapac)28(h)28(y)-229(sma\\273)-1(on)1(e)-1(j)-228(s)-1(\\252on)1(in)28(y)84(,)-229(skrzyb)-27(ot)28(y)]TJ 0 -13.549 Td[(\\252y\\273e)-1(k)-303(i)-303(cic)27(h)1(e)-304(p)-27(ogw)27(ar)1(y)-303(przy)-303(mis)-1(k)56(ac)28(h,)-303(p)1(rz)-1(y)1(pro)28(w)28(adzi\\252)-303(R)-1(o)-27(c)27(ha)-303(n)1(a)-303(J\\363z)-1(in)1(\\241)-303(s)-1(tr)1(on\\246,)-303(nie)]TJ 0 -13.549 Td[(p)-27(oz)-1(w)28(ala)-56(j)1(\\241c)-334(rozni)1(e)-1(ca\\242)-334(ogni)1(a.)]TJ 27.879 -13.549 Td[(St)1(ary)-350(p)1(rze)-1(gr)1(yz)-1(\\252)-349(nap)1(r\\246)-1(d)1(c)-1(e)-350(co\\261)-350(niec)-1(o\\261,)-349(p)-28(ozbiera\\252,)-349(c)-1(o)-349(m)-1(i)1(a\\252)-350(s)-1(w)28(o)-56(j)1(e)-1(go,)-349(i)-350(j)1(\\241\\252)-350(si\\246)]TJ -27.879 -13.549 Td[(\\273e)-1(gn)1(a\\242)-459(z)-458(k)28(ob)1(ie)-1(tami.)-457(Hank)56(a)-458(p)1(ad\\252a)-458(m)28(u)-458(d)1(o)-458(n)1(\\363g,)-458(a)-458(J\\363zk)56(a)-458(bu)1(c)27(h)1(n\\246\\252a)-458(s)-1(k)28(oml\\241cym,)]TJ 0 -13.549 Td[(rze)-1(wli)1(w)-1(y)1(m)-334(p\\252acz)-1(em.)]TJ 27.879 -13.55 Td[({)-304(Z)-1(osta\\253)1(c)-1(ie)-305(z)-305(Bogiem,)-305(mo\\273e)-305(s)-1(i\\246)-304(jes)-1(zc)-1(ze)-305(z)-1(ob)1(ac)-1(zym)28(y!)-304({)-305(sz)-1(epta\\252)-304(\\252z)-1(a)28(w)27(o,)-304(p)1(rzy-)]TJ -27.879 -13.549 Td[(cis)-1(k)56(a)-55(j\\241c)-307(j)1(e)-307(do)-306(p)1(ie)-1(r)1(s)-1(i)-306(a)-306(c)-1(a\\252u)1(j\\241c)-307(p)-27(o)-306(g\\252o)27(win)1(ac)27(h)-306(k)1(ie)-1(j)-305(te)-1(n)-306(o)-27(c)-1(iec)-307(r)1(o)-28(dzon)28(y)83(,)-306(al)1(e)-307(\\273)-1(e)-306(An)28(tek)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(nagla\\252,)-318(to)-319(p)-27(ob\\252ogos\\252a)28(w)-1(i)1(w)-1(sz)-1(y)-318(j)1(e)-1(sz)-1(cz)-1(e)-319(d)1(z)-1(i)1(e)-1(ciom)-319(i)-318(domo)28(w)-1(i)-318(p)1(rz)-1(e\\273e)-1(gn)1(a\\252)-319(s)-1(i)1(\\246)-319(i)-319(r)1(u-)]TJ 0 -13.549 Td[(sz)-1(y\\252)-333(da)-333(pr)1(z)-1(e\\252az)-1(u)-333(p)-27(o)-28(d)-333(b)1(r\\363g.)]TJ 27.879 -13.549 Td[({)-333(Koni)1(e)-334(z)-1(acz)-1(ek)56(a)-56(j)1(\\241)-334(u)-333(S)1(z)-1(y)1(m)-1(k)56(a)-333(na)-333(P)28(o)-28(d)1(le)-1(siu)1(,)-333(a)-334(M)1(ate)-1(u)1(s)-1(z)-334(w)28(as)-334(p)-27(o)28(w)-1(i)1(e)-1(zie)-1(.)]TJ 0 -13.55 Td[({)-333(Musz\\246)-334(jes)-1(zc)-1(ze)-334(za)-56(j)1(rze)-1(\\242)-334(d)1(o)-334(k)28(ogo\\261)-333(na)-333(w)-1(si..)1(.)-333(Gdzie)-334(si\\246)-334(sp)-28(ot)1(k)55(am)28(y?...)]TJ 0 -13.549 Td[({)-333(Przy)-333(\\014gu)1(rze)-334(p)-27(o)-28(d)-333(b)-27(o)-1(r)1(e)-1(m,)-333(z)-1(ar)1(no)-333(tam)-334(p)-27(o)-28(ci\\241)-28(gn)1(ie)-1(m)28(y)83(.)1(..)]TJ\nET\nendstream\nendobj\n2310 0 obj <<\n/Type /Page\n/Contents 2311 0 R\n/Resources 2309 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2309 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2314 0 obj <<\n/Length 8403      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(725)]TJ -330.353 -35.866 Td[({)-333(A)-334(d)1(obr)1(z)-1(e,)-333(b)-28(o)-333(z)-334(Gr)1(z)-1(el\\241)-333(m)-1(am)-333(jes)-1(zc)-1(ze)-334(du)1(\\273)-1(o)-333(d)1(o)-334(p)-27(om\\363)27(wieni)1(a.)]TJ 0 -13.549 Td[(I)-333(prze)-1(p)1(ad\\252)-333(w)-334(mrok)56(ac)27(h)1(,)-333(\\273)-1(e)-334(n)1(a)28(w)27(et)-333(krok)28(\\363)28(w)-334(n)1(ie)-334(b)28(y)1(\\252)-1(o)-333(s\\252yc)27(h)1(a\\242)-1(.)]TJ 0 -13.549 Td[(An)28(tek)-364(z)-1(ap)1(rz\\241)-28(g\\252)-365(k)28(on)1(ie,)-364(w)-1(\\252o\\273y\\252)-364(w)-365(br)1(yk)28(\\246)-365(j)1(ak)55(\\241\\261)-364(\\242)-1(wiar)1(tk)28(\\246)-365(\\273yta)-364(i)-365(w)28(orek)-364(z)-1(i)1(e)-1(m-)]TJ -27.879 -13.549 Td[(ni)1(ak)28(\\363)27(w,)-333(p)-27(ogada\\252)-333(c)-1(osik)-333(d\\252u)1(go)-334(z)-333(Witki)1(e)-1(m)-334(n)1(a)-334(stron)1(ie)-334(i)-333(r)1(z)-1(ek\\252)-334(g\\252o\\261no:)]TJ 27.879 -13.549 Td[({)-333(Witek,)-333(z)-1(ap)1(ro)28(w)27(ad)1(\\271)-334(k)28(on)1(ie)-334(do)-333(S)1(z)-1(ymk)56(a)-334(n)1(a)-333(P)28(o)-28(dl)1(e)-1(sie)-334(i)-333(wraca)-56(j)1(!)-334(Rozumies)-1(z?)]TJ 0 -13.55 Td[(Ch\\252op)1(ak)-260(jeno)-260(b\\252y)1(s)-1(n)1(\\241)-1(\\252)-260(\\261lepiami,)-260(d)1(orw)28(a\\252)-261(si\\246)-260(k)28(oni)-260(i)-260(r)1(usz)-1(y\\252)-260(z)-260(k)28(op)28(yta)-260(tak)-260(ostro,)]TJ -27.879 -13.549 Td[(ja\\273e)-334(An)28(t)1(e)-1(k)-333(z)-1(a)-333(n)1(im)-334(kr)1(z)-1(yk)1(n\\241\\252:)]TJ 27.879 -13.549 Td[({)-333(W)83(oln)1(iej,)-333(b)-27(o)-334(mi,)-333(ju)1(c)27(h)1(o,)-333(s)-1(zk)55(ap)29(y)-333(z)-1(mord)1(ujesz)-1(!)]TJ 0 -13.549 Td[(T)28(ym)-1(czas)-1(em)-414(z)-1(a\\261)-414(Ro)-28(c)27(h)1(o)-414(pr)1(z)-1(ebr)1(a\\252)-414(s)-1(i\\246)-414(c)28(h)28(y\\252kiem)-414(do)-414(D)1(om)-1(in)1(ik)28(o)28(w)27(ej,)-413(k)56(a)-56(j)-413(m)-1(i)1(a\\252)]TJ -27.879 -13.549 Td[(jak)1(ie)-1(\\261)-333(rze)-1(cz)-1(y)84(,)-333(i)-334(zamkn\\241\\252)-333(s)-1(i)1(\\246)-334(w)-334(al)1(kierz)-1(u)1(.)]TJ 27.879 -13.549 Td[(J\\246drzyc)28(h)-264(pi)1(lno)28(w)28(a\\252)-265(n)1(a)-264(dr)1(o)-28(dze)-1(,)-264(J)1(agusia)-264(c)-1(i\\246giem)-265(wyziera\\252a)-264(w)-264(o)-1(p)1(\\252otki,)-263(a)-265(stara)]TJ -27.879 -13.55 Td[(sie)-1(d)1(z)-1(\\241c)-333(w)-334(izbie)-333(nas\\252)-1(u)1(c)27(h)1(iw)27(a\\252a)-333(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie.)]TJ 27.879 -13.549 Td[(Wysz\\252)-1(o)-434(d)1(obre)-434(par)1(\\246)-435(pacierz\\363)27(w,)-434(n)1(im)-435(wysze)-1(d)1(\\252)-1(,)-433(p)-28(ogad)1(a\\252)-435(j)1(e)-1(sz)-1(cze)-435(na)-434(stron)1(ie)]TJ -27.879 -13.549 Td[(z)-387(Domin)1(ik)28(o)28(w)27(\\241)-386(i)-386(z)-1(ar)1(z)-1(u)1(c)-1(i)1(w)-1(sz)-1(y)-386(t)1(ob)-28(o\\252)-386(na)-386(pl)1(e)-1(cy)-386(c)27(hcia\\252)-386(i\\261\\242)-1(,)-386(ale)-386(Jagusia)-386(nap)1(ar\\252a)-386(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(onie\\261)-1(\\242)-379(z)-1(a)-379(n)1(im)-379(c)27(ho)-27(\\242)-1(b)28(y)-379(d)1(o)-379(b)-28(or)1(u.)-379(Ni)1(e)-380(sprze)-1(ciwia\\252)-379(si\\246)-380(tem)27(u)-378(i)-379(p)-27(o\\273)-1(egna)28(ws)-1(zy)-379(s)-1(t)1(ar\\241)]TJ 0 -13.549 Td[(ru)1(s)-1(zyli)-333(p)1(rz)-1(ez)-334(sad)-333(na)-333(p)-27(ola.)]TJ 27.879 -13.55 Td[(Szli)-333(miedzam)-1(i)-333(z)-334(w)28(olna,)-333(ostro\\273ni)1(e)-334(i)-333(w)-334(milcz)-1(eni)1(u.)]TJ 0 -13.549 Td[(No)-28(c)-301(b)29(y\\252a)-301(wid)1(na)-300(i)-301(sielni)1(e)-301(rozis)-1(k)1(rz)-1(on)1(a)-301(gwiazdami,)-300(p)-27(o\\261)-1(p)1(ione)-301(ziem)-1(i)1(e)-301(le)-1(\\273a\\252y)-300(w)]TJ -27.879 -13.549 Td[(cic)27(h)1(o\\261)-1(ciac)27(h)1(,)-334(t)28(y)1(lk)28(o)-334(k)56(a)-55(j\\261)-334(n)1(a)-334(wsi)-333(uj)1(ada\\252)-333(pies)-1(..)1(.)]TJ 27.879 -13.549 Td[(Dosi\\246)-1(gal)1(i)-333(ju\\273)-333(b)-28(or)1(\\363)27(w,)-333(gdy)-333(Ro)-28(c)28(ho)-333(pr)1(z)-1(ystan)1(\\241\\252)-334(i)-333(wz)-1(i\\241\\252)-333(j\\241)-333(za)-334(r)1(\\246)-1(k)28(\\246.)]TJ 0 -13.549 Td[({)-333(Jagu\\261!)-333({)-334(sz)-1(epn)1(\\241\\252)-334(d)1(obr)1(otliwie)-334({)-333(p)-27(os)-1(\\252u)1(c)27(ha)-55(j)-333(mnie)-334(u)29(w)27(a\\273nie.)]TJ 0 -13.55 Td[(S\\252u)1(c)27(h)1(a\\252)-1(a)-333(p)1(ilni)1(e)-1(,)-333(rozdy)1(gotana)-333(jaki)1(m)-1(\\261)-333(z)-1(\\252ym)-334(p)1(rze)-1(cz)-1(u)1(c)-1(i)1(e)-1(m.)]TJ 0 -13.549 Td[(Pr)1(a)28(w)-1(i)1(\\252)-459(kieb)28(y)-458(ksi\\241dz)-459(n)1(a)-459(sp)-28(o)28(wiedzi,)-458(w)-1(y)1(p)-28(omin)1(a)-56(j)1(\\241)-1(c)-458(jej)-459(An)29(tk)56(a,)-459(w)28(\\363)-56(j)1(ta)-459(i)-458(ju)1(\\273)]TJ -27.879 -13.549 Td[(na)-55(jb)1(arze)-1(j)-450(J)1(as)-1(ia!)-450(P)1(rosi\\252)-450(i)-450(z)-1(akl)1(ina\\252)-450(na)-450(wsz)-1(ystki)1(e)-451(\\261)-1(wi\\246to\\261c)-1(i,)-450(b)29(y)-450(s)-1(i)1(\\246)-451(opami\\246ta\\252a)-450(i)]TJ 0 -13.549 Td[(zac)-1(z\\246)-1(\\252a)-333(\\273)-1(y)1(\\242)-334(inacz)-1(ej!)]TJ 27.879 -13.549 Td[(Od)1(w)-1(r)1(\\363)-28(ci\\252a)-299(z)-1(es)-1(r)1(om)-1(an)1(\\241)-299(t)27(w)28(arz,)-299(obl)1(a\\252y)-299(j\\241)-299(p)1(al\\241c)-1(e)-299(ognie)-299(ws)-1(t)28(yd)1(u,)-299(a)-299(se)-1(r)1(c)-1(e)-299(s)-1(p)1(i\\246\\252)-1(o)]TJ -27.879 -13.55 Td[(si\\246)-334(m\\246)-1(k)56(\\241,)-333(ale)-334(ki)1(e)-1(j)-333(sp)-27(om)-1(n)1(ia\\252)-334(J)1(as)-1(ia,)-333(p)-27(o)-28(d)1(nies)-1(\\252a)-333(har)1(do)-333(g\\252o)27(w)28(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(A)-334(c\\363\\273)-334(to)-333(z)-1(\\252ego)-334(z)-333(nim)-333(w)-1(y)1(rabi)1(am)-1(,)-333(co?)]TJ 0 -13.549 Td[(J\\241\\252)-397(wyw)28(o)-28(d)1(z)-1(i\\242)-397(p)-27(o)-397(sw)28(o)-56(jem)27(u)1(,)-396(a)-397(pr)1(z)-1(edsta)28(w)-1(i)1(a\\242)-397(\\252ago)-28(dn)1(ie)-1(,)-396(n)1(a)-397(jak)1(ie)-397(to)-397(p)-27(oku)1(s)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-334(da)-55(j\\241)-333(i)-333(do)-333(jak)1(ie)-1(go)-333(to)-333(grze)-1(c)28(h)28(u)-333(i)-333(z)-1(gor)1(s)-1(ze)-1(n)1(ia)-333(m)-1(o\\273e)-334(ic)28(h)-333(z)-1(\\252y)-333(dop)1(ro)28(w)28(adzi\\242)-1(.)1(..)]TJ 27.879 -13.549 Td[(Nie)-341(s)-1(\\252u)1(c)27(h)1(a\\252)-1(a,)-340(wz)-1(dy)1(c)27(ha)-55(j\\241c)-341(jeno)-340(i)-341(ni)1(e)-1(s\\241c)-342(si\\246)-341(m)27(y\\261lami)-341(d)1(o)-341(Jas)-1(i)1(a,)-341(\\273)-1(e)-341(j)1(u\\273)-341(s)-1(ame)]TJ -27.879 -13.55 Td[(w)28(argi)-333(l\\261ni\\241ce)-334(i)-333(nab)1(rane)-333(krwi\\241)-333(s)-1(zepta\\252y)-333(s)-1(\\252o)-28(d)1(k)28(o,)-333(gor\\241co)-334(i)-333(zapami\\246tale:)]TJ 27.879 -13.549 Td[({)-284(Jasiu!)-283(Jas)-1(i)1(u!)-284({)-284(A)-284(r)1(oz)-1(j)1(arzone)-284(o)-28(c)-1(zy)-284(r)1(w)27(a\\252y)-284(si\\246)-284(gdzie)-1(sik)-284(k)1(ie)-1(b)29(y)-284(ptak)1(i)-284(rad)1(o\\261)-1(n)1(ie)]TJ -27.879 -13.549 Td[(roz\\261)-1(p)1(iew)27(an)1(e)-334(i)-333(kr\\241\\273y\\252y)-333(nad)-333(j)1(e)-1(go)-333(g\\252o)28(w)27(\\241)-333(na)-55(jmilejsz)-1(\\241.)1(..)]TJ 27.879 -13.549 Td[({)-300(Dy\\242)-300(b)28(ym)-300(p)-27(os)-1(z\\252a)-300(z)-1(a)-299(nim)-300(w)27(e)-300(ws)-1(zyste)-1(k)-299(\\261)-1(wiat!)-299({)-300(w)-1(y)1(rw)28(a\\252)-1(o)-299(s)-1(i\\246)-300(jej)-300(b)-27(ez)-1(w)28(olni)1(e)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-334(Ro)-28(c)27(h)1(o)-334(zadr)1(\\273)-1(a\\252,)-333(s)-1(p)-27(o)-55(jrza\\252)-334(w)-333(jej)-333(o)-28(cz)-1(y)-333(sz)-1(erok)28(o)-333(ot)28(w)27(ar)1(te)-334(i)-333(z)-1(amilk)1(\\252.)]TJ 27.879 -13.549 Td[(Na)-333(s)-1(kr)1(a)-56(j)1(u)-333(b)-28(or)1(u)-333(p)-28(o)-27(d)-333(krzy\\273e)-1(m)-333(z)-1(ab)1(ie)-1(l)1(a\\252)-1(y)-333(j)1(akb)28(y)-333(k)56(ap)-28(ot)28(y)84(.)]TJ 0 -13.55 Td[({)-333(Kto)-333(tam)-1(?)-333({)-333(w)-1(strzyma\\252)-334(si\\246)-334(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie.)]TJ 0 -13.549 Td[({)-333(Je)-1(ste\\261)-1(ma!)-333(Sw)28(oi!)]TJ 0 -13.549 Td[({)-411(Nogi)-410(m)-1(i)-410(s)-1(i\\246)-411(j)1(u\\273)-411(pl)1(\\241c)-1(z\\241,)-411(\\273e)-412(o)-27(dp)-27(o)-28(c)-1(zn\\246)-411(n)1(ie)-1(co)-411({)-411(r)1(z)-1(ek\\252)-411(rozs)-1(i)1(ada)-55(j\\241c)-411(m)-1(i)1(\\246)-1(d)1(z)-1(y)]TJ -27.879 -13.549 Td[(ni)1(m)-1(i)1(.)-282(Jagu)1(s)-1(ia)-281(z)-1(w)28(ali\\252a)-281(tob)-28(o\\252)-281(i)-282(p)1(rzys)-1(iad)1(\\252a)-282(n)1(ie)-1(co)-282(z)-282(b)-27(oku)1(,)-282(p)-27(o)-28(d)-281(krzy\\273e)-1(m,)-281(w)-282(g\\252\\246)-1(b)-27(okim)]TJ 0 -13.549 Td[(cie)-1(n)1(iu)-333(b)1(rz)-1(\\363z.)]TJ 27.879 -13.55 Td[({)-333(\\233e)-1(b)28(y)1(\\261)-1(cie)-334(in)1(o)-334(n)1(ie)-334(mieli)-333(jaki)1(c)27(h)-333(n)1(o)27(wyc)28(h)-333(k\\252op)-27(ot\\363)27(w..)1(.)]TJ 0 -13.549 Td[({)-333(I...)-333(gorsz)-1(e,)-333(\\273)-1(e)-333(a)-1(n)1(o)-333(idziec)-1(ie)-333(ju\\273)-333(o)-28(d)-333(nas!)-333({)-333(p)-28(o)28(wiedz)-1(i)1(a\\252)-334(An)28(t)1(e)-1(k.)]TJ\nET\nendstream\nendobj\n2313 0 obj <<\n/Type /Page\n/Contents 2314 0 R\n/Resources 2312 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2312 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2317 0 obj <<\n/Length 9208      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(726)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(46.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(B)-1(y)1(\\242)-334(m)-1(o\\273e,)-334(i)1(\\273)-334(kiedy)1(\\261)-334(p)-28(o)28(wr\\363)-28(c\\246,)-334(b)29(y\\242)-334(mo\\273)-1(e!..)1(.)]TJ 0 -13.549 Td[({)-333(P)1(s)-1(i)1(e)-1(kr)1(w)-1(i)1(e)-1(,)-332(\\273)-1(eb)28(y)-333(cz\\252)-1(o)28(wiek)56(a)-333(goni\\242)-333(j)1(ak)-333(tego)-333(psa)-333(ze)-1(p)1(s)-1(u)1(te)-1(go!)-332({)-333(b)1(uc)27(h)1(n\\241\\252)-333(M)1(a-)]TJ -27.879 -13.549 Td[(teusz)-1(.)]TJ 27.879 -13.549 Td[({)-333(I)-334(za)-334(co,)-333(m\\363)-56(j)-333(Bo\\273)-1(e,)-333(z)-1(a)-333(co?)-334({)-333(j\\246kn\\241\\252)-333(Grze)-1(l)1(a.)]TJ 0 -13.549 Td[({)-333(\\233e)-334(c)27(h)1(c)-1(\\246)-334(p)1(ra)28(wdy)-333(i)-333(s)-1(p)1(ra)28(wie)-1(d)1(liw)28(o\\261)-1(ci)-333(la)-333(nar)1(o)-28(du)1(!)-333({)-334(ozw)27(a\\252)-333(s)-1(i)1(\\246)-334(ur)1(o)-28(c)-1(zy\\261c)-1(ie)]TJ 0 -13.55 Td[({)-333(Ka\\273)-1(d)1(e)-1(m)28(u)-333(jest)-334(n)1(a)-334(\\261wiec)-1(ie)-334(\\271le,)-333(ale)-334(j)1(u\\273)-334(n)1(a)-56(j)1(gorz)-1(ej)-333(spra)28(wiedli)1(w)27(em)27(u)1(.)]TJ 0 -13.549 Td[({)-333(Nie)-334(mart)28(w)-334(si\\246,)-333(Grze)-1(l)1(a,)-334(p)1(rze)-1(mieni)-333(si\\246)-334(jesz)-1(cz)-1(e)-334(n)1(a)-333(dobr)1(e)-1(,)-333(p)1(rze)-1(mieni..)1(.)]TJ 0 -13.549 Td[({)-250(T)83(ak)-250(s)-1(e)-251(i)-250(miark)1(uj)1(\\246)-1(,)-250(b)-27(o)-251(ci\\246\\273)-1(k)28(o)-250(b)28(y)-250(p)-27(om)27(y\\261le\\242)-1(,)-250(\\273e)-251(w)-1(szys)-1(tk)1(ie)-251(zabiegi)-250(na)-250(dar)1(m)-1(o.)]TJ 0 -13.549 Td[({)-406(Cz)-1(ek)56(a)-56(j)-405(tatk)56(a)-406(latk)56(a,)-406(jak)-405(k)28(ob)28(y\\252\\246)-406(w)-1(i)1(lc)-1(y)-405(z)-1(j)1(e)-1(d)1(z)-1(\\241!)-406({)-406(w)28(e)-1(stc)27(h)1(n\\241\\252)-406(An)28(t)1(e)-1(k,)-405(w)-1(p)1(a-)]TJ -27.879 -13.549 Td[(trzon)28(y)-333(w)-333(c)-1(ieni)1(e)-1(,)-333(k)56(a)-56(j)-333(m)28(u)-333(biela\\252a)-333(Jagusin)1(a)-334(g\\246bu)1(s)-1(ia.)]TJ 27.879 -13.549 Td[({)-293(P)28(o)28(wiad)1(am)-294(w)28(am,)-293(\\273e)-294(kt)1(o)-293(c)27(h)28(w)28(as)-1(t)28(y)-292(w)-1(y)1(ryw)28(a)-293(i)-293(p)-27(os)-1(i)1(e)-1(w)28(a)-293(dob)1(rym)-293(ziarn)1(e)-1(m,)-293(ten)]TJ -27.879 -13.55 Td[(zbiera\\252)-333(b)-28(\\246dzie)-334(w)-333(c)-1(zas)-334(\\273niwn)28(y!)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(ak)-333(nie)-333(obro)-27(dzi?)-334(P)1(rz)-1(ecie)-1(k)-333(i)-333(to)-333(s)-1(i)1(\\246)-334(pr)1(z)-1(ygo)-27(dzi,)-333(nie?)]TJ 0 -13.549 Td[({)-333(T)83(ak,)-333(ale)-334(k)56(a\\273dy)-333(sie)-1(j)1(e)-334(z)-334(wiar\\241,)-333(\\273e)-334(w)-333(dw)28(\\363)-56(jn)1(as)-1(\\363b)-332(m)27(u)-333(zaplon)28(u)1(je.)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(c)28(hcia\\252b)28(y)-333(si\\246)-334(to)-333(kto)-333(m)-1(ozoli\\242)-333(na)-333(darmo!)]TJ 0 -13.549 Td[(Zadu)1(m)-1(al)1(i)-333(s)-1(i\\246)-333(g\\252)-1(\\246b)-27(ok)28(o)-334(n)1(ad)-333(t)28(ymi)-334(r)1(z)-1(ec)-1(zami.)]TJ 0 -13.55 Td[(Wiat)1(e)-1(r)-371(p)-28(o)28(wia\\252,)-372(zas)-1(ze)-1(l)1(e)-1(\\261c)-1(i)1(\\252)-1(y)-371(nad)-371(ni)1(m)-1(i)-371(brzoz)-1(y)84(,)-372(zas)-1(zumia\\252)-372(g\\252u)1(c)27(ho)-371(b)-28(\\363r)-371(i)-372(p)-27(o-)]TJ -27.879 -13.549 Td[(lami)-305(p)-27(os)-1(ze)-1(d)1(\\252)-305(c)27(h)1(rz)-1(\\246stliwy)-305(sz)-1(me)-1(r)-304(z)-1(b)-27(\\363\\273.)-305(Ksi\\246)-1(\\273yc)-305(wyp\\252yn)1(\\241\\252)-305(i)-305(lec)-1(ia\\252)-305(p)-27(o)-305(n)1(ie)-1(b)1(ie,)-305(jakb)29(y)]TJ 0 -13.549 Td[(ul)1(ic)-1(\\241)-292(bia\\252yc)28(h)-293(c)28(hm)28(ur)-292(p)-28(osto\\273)-1(on)29(yc)27(h)-292(rz\\246)-1(d)1(am)-1(i)1(,)-293(dr)1(z)-1(ew)27(a)-292(rzuci\\252y)-293(cie)-1(n)1(ie)-293(pr)1(z)-1(es)-1(ian)1(e)-293(\\261)-1(wia-)]TJ 0 -13.549 Td[(t\\252em)-1(,)-284(le)-1(l)1(ki)-285(cic)27(h)28(y)1(m)-1(,)-284(kr\\246t)28(ym)-285(lotem)-286(p)1(rze)-1(wij)1(a\\252y)-285(s)-1(i)1(\\246)-286(n)1(ad)-285(i)1(c)27(h)-285(g\\252o)28(w)28(am)-1(i)1(,)-285(a)-285(jak)1(i\\261)-285(s)-1(m)28(utek)]TJ 0 -13.549 Td[(pr)1(z)-1(ejmo)28(w)27(a\\252)-333(s)-1(erca.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-333(zap\\252ak)56(a\\252a)-334(cic)27(h)28(u)1(\\261)-1(k)28(o,)-333(n)1(ie)-334(wiad)1(om)-1(o)-333(lacz)-1(ego.)]TJ 0 -13.549 Td[({)-333(C)-1(o)-333(ci)-333(to,)-333(c)-1(o?)-333({)-334(p)28(y)1(ta\\252)-334(d)1(obrot)1(liwie)-334(Ro)-28(c)28(ho)-333(g\\252adz\\241c)-334(j\\241)-333(p)-27(o)-334(g\\252o)28(wie)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(to)-334(wiem,)-333(m)-1(ar)1(k)28(o)-1(t)1(no)-333(m)-1(i)-333(j)1(ak)28(o\\261)-1(..)1(.)]TJ 0 -13.549 Td[(Ale)-281(i)-281(w)-1(sz)-1(y)1(s)-1(tk)1(im)-282(b)28(y)1(\\252o)-282(mark)28(otn)1(o)-281(i)-281(jak)56(a\\261)-282(\\273a\\252o\\261)-1(\\242)-282(r)1(oz)-1(p)1(iera\\252a)-281(dusz)-1(e,)-281(\\273e)-282(s)-1(i)1(e)-1(d)1(z)-1(ieli)]TJ -27.879 -13.549 Td[(oso)27(wial)1(i,)-316(p)-27(o)27(wi\\246d\\252ymi)-316(o)-27(c)-1(zam)-1(i)-315(ogarni)1(a)-56(j\\241c)-316(Ro)-28(c)27(h)1(a,)-316(kt\\363r)1(e)-1(n)-315(s)-1(i\\246)-316(im)-316(te)-1(r)1(az)-317(wid)1(z)-1(i)1(a\\252)-317(k)1(ie)-1(j)]TJ 0 -13.55 Td[(ten)-456(\\261w)-1(i)1(\\246)-1(t)28(y)-456(P)28(a\\253)1(s)-1(k)1(i.)-456(S)1(ie)-1(d)1(z)-1(i)1(a\\252)-457(p)-27(o)-28(d)-455(krzy\\273e)-1(m,)-456(z)-456(kt\\363rego)-456(c)-1(i\\246\\273k)28(o)-456(ob)28(wis)-1(\\252y)-456(Ch)1(rystus)]TJ 0 -13.549 Td[(jak)1(b)28(y)-420(b)1(\\252ogos)-1(\\252a)28(wi\\252)-420(okr)1(w)27(a)28(wion)28(ymi)-419(r\\246c)-1(ami)-420(j)1(e)-1(go)-419(s)-1(i)1(w)27(ej,)-419(um\\246)-1(cz)-1(on)1(e)-1(j)-419(g\\252o)28(wie)-1(,)-419(on)-419(z)-1(a\\261)]TJ 0 -13.549 Td[(j\\241\\252)-333(m\\363)27(wi\\242)-333(g\\252os)-1(em)-334(p)-27(e)-1(\\252n)28(ym)-333(du)1(fn)1(o\\261)-1(ci:)]TJ 27.879 -13.549 Td[({)-253(A)-253(o)-253(m)-1(n)1(ie)-254(si\\246)-253(nie)-253(trw)28(\\363\\273)-1(cie,)-253(kru)1(s)-1(zynam)-253(t)28(ylk)28(o,)-253(j)1(e)-1(d)1(no)-253(\\271d\\271b\\252o)-253(z)-254(b)1(uj)1(neg)-1(o)-253(p)-27(ola,)]TJ -27.879 -13.549 Td[(w)28(e)-1(zm)-1(\\241)-344(m)-1(i\\246)-345(i)-344(z)-1(agu)1(bi\\241,)-344(to)-345(i)-344(c)-1(\\363\\273,)-345(ki)1(e)-1(d)1(y)-345(takic)28(h)-345(zostanie)-345(j)1(e)-1(sz)-1(cz)-1(e)-345(wiela)-345(i)-344(k)55(a\\273den)-344(tak)]TJ 0 -13.55 Td[(sam)-1(o)-393(got\\363)28(w)-394(d)1(a\\242)-394(\\273)-1(y)1(w)27(ot)-393(dl)1(a)-394(spr)1(a)27(wy)84(...)-393(A)-393(pr)1(z)-1(yj)1(dzie)-394(p)-27(ora,)-393(\\273e)-394(ja)28(wi)-393(si\\246)-394(ic)28(h)-393(t)28(ys)-1(i)1(\\241c)-1(e,)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(jd\\241)-264(z)-265(mias)-1(t)1(,)-265(p)1(rzyjd)1(\\241)-265(z)-265(c)28(ha\\252up)1(,)-265(p)1(rzyjd)1(\\241)-265(ze)-265(dw)28(or\\363)28(w)-265(i)-264(t)28(ym)-265(ci\\241)-28(gi)1(e)-1(m)-265(n)1(ie)-1(p)1(rze)-1(r)1(w)27(a-)]TJ 0 -13.549 Td[(n)28(ym)-299(p)-27(o\\252o\\273)-1(\\241)-299(g\\252o)28(w)-1(y)-298(s)-1(w)28(o)-56(j)1(e)-1(,)-299(d)1(adz\\241)-299(krew)-300(sw)28(o)-56(j\\241)-299(i)-298(padn)1(\\241)-299(jeden)-299(za)-299(dru)1(gim,)-299(s)-1(to\\273\\241c)-299(s)-1(i\\246)]TJ 0 -13.549 Td[(jak)-314(t)1(e)-315(k)56(am)-1(ieni)1(e)-1(,)-314(a\\273)-314(p)-28(\\363ki)-314(si\\246)-315(z)-314(nic)28(h)-314(ni)1(e)-315(wyni)1(e)-1(sie)-315(\\363)28(w)-314(\\261)-1(wi\\246t)28(y)83(,)-314(u)1(t\\246)-1(skni)1(on)28(y)-314(Ko\\261c)-1(i\\363\\252..)1(.)]TJ 0 -13.549 Td[(A)-315(m)-1(\\363)28(wi\\246)-316(w)28(am)-1(,)-315(\\273e)-316(stanie)-316(i)-315(tr)1(w)27(a\\252)-315(b)-28(\\246dzie)-316(p)-27(o)-315(w)-1(i)1(e)-1(k)-315(wiek)28(\\363)27(w,)-315(i)-315(ju)1(\\273)-316(go)-316(\\273adn)1(a)-316(z\\252a)-316(mo)-28(c)]TJ 0 -13.549 Td[(ni)1(e)-334(pr)1(z)-1(ez)-1(wyci\\246\\273)-1(y)84(,)-333(b)-28(o)-333(wyro\\261nie)-333(z)-334(o)-28(c)27(h)1(\\014ar)1(nej)-333(krwie)-333(i)-334(mi\\252o)28(w)27(an)1(ia..)1(.)]TJ 27.879 -13.55 Td[(I)-249(op)-27(o)27(wiad)1(a\\252)-249(s)-1(zerok)28(o,)-249(j)1(ak)-249(to)-249(ni)-248(jedn)1(a)-249(krop)1(la)-249(krwi,)-248(ni)-249(\\252za)-249(jedn)1(a,)-249(ni)-248(\\273)-1(ad)1(e)-1(n)-248(wy-)]TJ -27.879 -13.549 Td[(si\\252e)-1(k)-270(nie)-271(p)1(rze)-1(p)1(ada)-271(n)1(a)-271(d)1(armo,)-271(j)1(ak)-271(to)-270(c)-1(i\\241)-27(gie)-1(m,)-270(kieb)28(y)-271(t)1(e)-272(zb)-27(o\\273)-1(a)-270(na)-271(ziem)-1(i)-270(na)28(w)28(o\\273)-1(on)1(e)-1(j)1(,)]TJ 0 -13.549 Td[(ro)-27(dz\\241)-360(si\\246)-359(no)28(w)27(e)-359(bro\\253)1(c)-1(e,)-359(no)28(w)28(e)-360(si\\252y)83(,)-359(n)1(o)28(w)27(e)-359(o)-28(c)27(h)1(\\014ary)84(,)-359(a\\273)-360(n)1(adejd)1(z)-1(ie)-359(\\363)27(w)-359(d)1(z)-1(ie\\253)-359(\\261w)-1(i)1(\\246)-1(t)28(y)84(,)]TJ 0 -13.549 Td[(dzie\\253)-333(z)-1(mart)28(wyc)28(h)28(ws)-1(tan)1(ia,)-333(dzie\\253)-333(pra)28(wdy)-333(i)-333(spr)1(a)27(wiedli)1(w)27(o\\261c)-1(i)-333(la)-333(ca\\252e)-1(go)-333(nar)1(o)-28(du)1(...)]TJ 27.879 -13.549 Td[(M\\363)28(wi\\252)-512(gor\\241co,)-512(a)-511(c)27(h)28(wilami)-512(tak)-511(g\\363rn)1(ie)-1(,)-511(\\273)-1(e)-512(ni)1(e)-513(sp)-27(os)-1(\\363b)-511(b)28(y\\252o)-512(wyrozumie\\242)]TJ -27.879 -13.55 Td[(ws)-1(zystkiego,)-430(ale)-430(pr)1(z)-1(ej\\241\\252)-430(ic)28(h)-430(\\261w)-1(i)1(\\246)-1(t)28(y)-430(ogi)1(e)-1(\\253)1(,)-430(s)-1(erca)-430(s)-1(p)1(r\\246\\273)-1(y\\252y)-429(s)-1(i\\246)-430(un)1(ies)-1(ieni)1(e)-1(m)-430(i)-430(ta-)]TJ 0 -13.549 Td[(k)56(\\241)-334(wiar)1(\\241,)-333(m)-1(o)-27(c)-1(\\241)-333(i)-333(pragn)1(ieniem)-1(,)-333(j)1(a\\273)-1(e)-333(An)28(te)-1(k)-333(za)28(w)27(o\\252a\\252:)]TJ\nET\nendstream\nendobj\n2316 0 obj <<\n/Type /Page\n/Contents 2317 0 R\n/Resources 2315 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2302 0 R\n>> endobj\n2315 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2320 0 obj <<\n/Length 8845      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(727)]TJ -330.353 -35.866 Td[({)-333(Je)-1(zu.)1(..)-333(pro)28(w)28(ad\\271c)-1(ie)-333(jeno..)1(.)-334(a)-333(c)27(h)1(o)-28(\\242b)28(y)-333(na)-333(\\261)-1(mier\\242)-334(p)-27(\\363)-28(d)1(\\246)-1(,)-333(p)-27(\\363)-28(d\\246...)]TJ 0 -13.549 Td[({)-333(Ws)-1(zystkie)-333(p)-28(\\363)-55(jdziem)27(y)84(,)-333(a)-334(co)-333(s)-1(tan)1(ie)-334(n)1(a)-334(za)28(w)27(ad)1(z)-1(ie)-334({)-333(stratu)1(jem)-1(!)]TJ 0 -13.549 Td[({)-333(A)-334(k)1(to)-334(si\\246)-334(n)1(am)-334(sprze)-1(ciwi,)-333(kto)-333(n)1(as)-334(pr)1(z)-1(em)-1(o\\273e)-1(?)-333(Niec)27(h)-333(jeno)-333(sprob)1(uj)1(e)-1(.)1(..)]TJ 0 -13.549 Td[(Wyb)1(uc)28(hn)1(\\246)-1(li)-396(j)1(e)-1(d)1(e)-1(n)-395(p)-27(o)-396(dru)1(gim,)-396(a)-396(c)-1(or)1(az)-397(zapami\\246talej,)-396(a\\273)-396(m)27(u)1(s)-1(ia\\252)-396(ic)28(h)-396(p)1(rzy-)]TJ -27.879 -13.549 Td[(cis)-1(za\\242)-343(i)-342(przysun)1(\\241)27(wsz)-1(y)-342(s)-1(i)1(\\246)-343(jes)-1(zc)-1(ze)-343(bl)1(i\\273)-1(ej)-342(z)-1(acz\\241\\252)-343(nau)1(c)-1(za\\242)-1(,)-342(j)1(aki)-342(to)-343(b)-27(\\246)-1(d)1(z)-1(i)1(e)-343(\\363)27(w)-342(dzie)-1(\\253)]TJ 0 -13.55 Td[(up)1(ragn)1(ion)28(y)-333(i)-333(c)-1(o)-333(im)-333(trze)-1(b)1(a)-334(r)1(obi\\242,)-333(ab)28(y)-333(go)-334(p)1(rzy\\261)-1(p)1(ies)-1(zy\\242...)]TJ 27.879 -13.549 Td[(M\\363)28(wi\\252)-498(tak)-498(w)28(a\\273)-1(k)1(ie)-498(i)-498(z)-1(go\\252a)-498(n)1(ie)-1(sp)-27(o)-28(dzian)1(e)-499(rzec)-1(zy)83(,)-498(\\273e)-498(s)-1(\\252u)1(c)27(hali)-497(z)-499(zapar)1(t)28(ym)]TJ -27.879 -13.549 Td[(tc)27(h)1(e)-1(m,)-371(z)-371(trw)28(og\\241)-372(i)-370(rado\\261c)-1(i)1(\\241)-371(z)-1(araze)-1(m,)-371(p)1(rzyjm)28(uj)1(\\241c)-372(k)56(a\\273)-1(d)1(e)-372(j)1(e)-1(go)-371(s\\252)-1(o)28(w)28(o)-371(z)-372(d)1(re)-1(szc)-1(ze)-1(m)]TJ 0 -13.549 Td[(wiary)-259(serdec)-1(znej,)-258(jak)28(o)-259(b)28(y)-259(t\\246)-259(k)28(om)27(u)1(ni\\246)-259(pr)1(z)-1(ena)-55(j\\261w)-1(i)1(\\246)-1(tsz)-1(\\241.)1(..)-259(Nieb)-28(o)-259(i)1(m)-260(b)-27(o)28(w)-1(i)1(e)-1(m)-259(ot)28(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(ra\\252,)-349(ra)-55(je)-350(p)-27(ok)56(az)-1(y)1(w)27(a\\252,)-349(\\273)-1(e)-349(dusz)-1(e)-349(im)-350(p)-27(okl\\246k)56(a\\252)-1(y)-349(w)-349(z)-1(ac)27(h)29(w)-1(y)1(c)-1(eniu)1(,)-349(o)-28(c)-1(zy)-349(widzia\\252y)-349(c)-1(u)1(d-)]TJ 0 -13.549 Td[(no\\261ci)-380(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(,)-379(a)-380(se)-1(r)1(c)-1(a)-380(si\\246)-380(pas\\252y)-380(j)1(anielskim,)-380(p)1(rze)-1(s\\252o)-28(dk)1(im)-380(\\261)-1(p)1(ie)-1(w)28(ani)1(e)-1(m)]TJ 0 -13.55 Td[(nad)1(z)-1(i)1(e)-1(i.)1(..)]TJ 27.879 -13.549 Td[({)-235(W)83(e)-236(w)28(as)-1(zej)-235(to)-236(mo)-28(cy)83(,)-235(ab)28(y)-235(si\\246)-236(tak)-235(sta\\252o!)-236({)-235(z)-1(ak)28(o\\253)1(c)-1(zy\\252)-235(niema\\252)-1(o)-235(j)1(u\\273)-236(u)1(trud)1(z)-1(on)29(y)83(.)]TJ -27.879 -13.549 Td[(Ksi\\246\\273)-1(yc)-441(sc)27(ho)28(w)28(a\\252)-441(s)-1(i)1(\\246)-442(za)-441(c)27(h)1(m)27(u)1(r\\246,)-441(p)-27(os)-1(zarza\\252)-1(o)-440(nieb)-28(o)-440(i)-441(zm)-1(\\246tni)1(a\\252)-1(y)-440(p)-27(ola,)-441(b)-27(\\363r)-441(cos)-1(i)1(k)]TJ 0 -13.549 Td[(zagada\\252)-367(z)-367(c)-1(i)1(c)27(ha)-366(i)-367(trw)28(o\\273)-1(n)1(ie)-367(z)-1(ac)28(hr)1(z)-1(\\246\\261)-1(ci\\252y)-367(zb)-28(o\\273a,)-367(i)-366(k)56(a)-56(j\\261)-367(o)-28(d)-366(ws)-1(i)-366(dalekic)28(h)-367(n)1(ies)-1(\\252y)-367(si\\246)]TJ 0 -13.549 Td[(psie)-419(n)1(as)-1(zc)-1(ze)-1(k)1(iw)27(an)1(ia,)-418(oni)-418(z)-1(a\\261)-418(s)-1(iedzieli)-418(niem)-1(i)1(,)-419(d)1(z)-1(i)1(w)-1(n)1(ie)-419(cis)-1(i)1(,)-419(j)1(e)-1(sz)-1(cz)-1(e)-419(zas\\252)-1(u)1(c)27(h)1(ani)-418(a)]TJ 0 -13.55 Td[(jak)1(b)28(y)-333(opici)-333(jego)-334(s\\252o)28(w)27(ami)-333(i)-333(tak)-333(jak)28(o\\261)-334(u)1(ro)-28(cz)-1(y)1(\\261)-1(ci)-333(jakb)28(y)-333(p)-27(o)-333(w)-1(i)1(e)-1(lk)1(ie)-1(j)-332(przysi\\246)-1(d)1(z)-1(e.)]TJ 27.879 -13.549 Td[({)-307(Czas)-308(mi)-307(j)1(u\\273)-307(o)-28(d)1(e)-1(j)1(\\261)-1(\\242!)-307({)-306(rz)-1(ek\\252)-307(p)-27(o)28(ws)-1(ta)-55(j\\241c)-307(i)-307(b)1(ra\\252)-307(k)56(a\\273dego)-307(w)-307(ramiona,)-306(\\261)-1(cisk)56(a\\252)]TJ -27.879 -13.549 Td[(i)-481(ca\\252o)27(w)28(a\\252)-481(na)-481(p)-27(o\\273e)-1(gn)1(anie.)-481(Dziw)-481(s)-1(i)1(\\246)-482(n)1(ie)-481(p)-28(op)1(\\252ak)55(ali)-480(z)-482(\\273alu)1(,)-481(on)-481(za\\261)-481(przykl)1(\\246)-1(kn)1(\\241\\252,)]TJ 0 -13.549 Td[(o)-28(d)1(m)-1(\\363)28(wi\\252)-355(kr)1(\\363tk)56(\\241)-355(mo)-28(dli)1(t)28(w)27(\\246)-355(i)-354(pad\\252)-354(na)-355(t)28(w)28(arz,)-355(i)-354(z)-1(ap)1(\\252)-1(ak)56(a\\252)-355(ob)-27(ejm)28(uj\\241c)-355(ziem)-1(i\\246)-355(r)1(\\246)-1(k)56(ami)]TJ 0 -13.549 Td[(kieb)28(y)-333(t\\246)-334(ma\\242)-334(\\273e)-1(gn)1(an\\241)-333(na)-333(za)27(wsz)-1(e.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-333(ja\\273e)-334(si\\246)-334(zanies)-1(\\252a)-333(sz)-1(lo)-27(c)27(han)1(iem)-1(,)-333(c)27(h)1(\\252op)28(y)-333(ukr)1(adki)1(e)-1(m)-333(w)-1(y)1(c)-1(ierali)-333(o)-27(c)-1(zy)83(.)]TJ 0 -13.549 Td[(I)-333(z)-1(araz)-333(s)-1(i\\246)-333(roze)-1(sz)-1(li)1(.)]TJ 0 -13.549 Td[(Do)-271(wsi)-271(wraca\\252)-271(t)28(ylk)28(o)-271(An)29(te)-1(k)-270(z)-271(Jagusi\\241,)-271(t)1(am)-1(ci)-271(za\\261)-271(prze)-1(p)1(adl)1(i)-271(k)56(a)-56(j)1(\\261)-272(p)-27(o)-28(d)-270(b)-27(orem)-1(.)]TJ 0 -13.549 Td[({)-317(A)-318(n)1(ie)-318(m\\363)27(w\\273e)-318(pr)1(z)-1(ed)-317(ni)1(kim)-318(o)-317(t)28(ym,)-318(co\\261)-318(s\\252ys)-1(za\\252a!)-317({)-318(r)1(z)-1(ek\\252)-318(p)-27(o)-317(d\\252ugi)1(e)-1(j)-317(c)28(h)28(wili.)]TJ 0 -13.549 Td[({)-333(C)-1(zy)-333(to)-333(ja)-333(latam)-334(z)-333(no)28(winami)-333(p)-28(o)-333(c)27(h)1(a\\252up)1(ac)27(h!)-333({)-333(w)27(ar)1(kn\\246\\252a)-333(gniewnie.)]TJ 0 -13.55 Td[({)-333(A)-334(j)1(u\\273)-334(n)1(iec)27(h)-333(B\\363g)-334(b)1(ron)1(i,)-333(\\273)-1(eb)28(y)-333(s)-1(i)1(\\246)-334(w)27(\\363)-55(jt)-333(d)1(o)27(wiedzia\\252)-333({)-334(u)1(p)-28(omin)1(a\\252)-334(sur)1(o)27(w)28(o.)]TJ 0 -13.549 Td[(Nie)-330(o)-28(dr)1(z)-1(ek\\252a,)-330(pr)1(z)-1(y\\261pi)1(e)-1(sz)-1(a)-55(j\\241c)-331(j)1(e)-1(n)1(o)-330(kroku)1(,)-330(ale)-330(nie)-330(da\\252)-330(s)-1(i)1(\\246)-331(wypr)1(z)-1(edzi\\242,)-330(trzy-)]TJ -27.879 -13.549 Td[(ma\\252)-334(si\\246)-334(p)-27(ob)-28(ok)-333(zaz)-1(i)1(e)-1(r)1(a)-56(j\\241c)-333(raz)-334(p)-27(o)-333(raz)-334(w)-333(jej)-333(t)27(w)28(arz)-333(z)-1(ap)1(\\252)-1(ak)56(an)1(\\241)-334(i)-333(gn)1(ie)-1(wn)1(\\241...)]TJ 27.879 -13.549 Td[(Ksi\\246\\273)-1(yc)-369(z)-1(n)1(o)27(wu)-368(z)-1(a\\261w)-1(i)1(e)-1(ci\\252)-369(i)-369(wis)-1(i)1(a\\252)-370(p)1(rosto)-369(nad)-369(d)1(rog\\241,)-369(\\273e)-370(sz)-1(l)1(i)-369(jak)28(ob)28(y)-369(t\\241)-369(sre-)]TJ -27.879 -13.549 Td[(br)1(z)-1(y)1(s)-1(t\\241)-268(m)-1(i)1(e)-1(d)1(z)-1(\\241)-268(obr)1(z)-1(e\\273)-1(on)1(\\241)-269(p)-27(okr\\246tn)28(y)1(m)-1(i)-268(cie)-1(n)1(iami)-269(d)1(rze)-1(w,)-268(nar)1(az)-269(z)-1(ad)1(rga\\252o)-268(m)27(u)-268(se)-1(r)1(c)-1(e,)]TJ 0 -13.55 Td[(t\\246s)-1(kn)1(ica)-235(wyci\\241)-28(gn)1(\\246)-1(\\252a)-234(nienasycone)-235(ramion)1(a,)-235(p)1(rzysun\\241\\252)-234(s)-1(i)1(\\246)-235(\\271)-1(d)1(z)-1(iebk)28(o,)-234(b)1(li\\273e)-1(j)1(,)-235(t)1(ak)-235(b)1(li-)]TJ 0 -13.549 Td[(sk)28(o,)-333(\\273)-1(e)-333(jeno)-333(si\\246)-1(gn)1(\\241\\242)-334(r)1(\\246)-1(k)56(\\241)-333(i)-333(p)1(rz)-1(y)1(c)-1(i\\241)-27(gn\\241\\242)-333(j\\241)-333(do)-333(siebie,)-333(ale)-333(nie)-333(s)-1(i)1(\\246)-1(gn)1(\\241\\252)-1(,)-332(z)-1(b)1(rak\\252o)-333(m)27(u)]TJ 0 -13.549 Td[(b)-27(o)27(wiem)-442(\\261m)-1(i)1(a\\252)-1(o\\261c)-1(i)-441(i)-441(p)-27(o)27(wstrzym)27(yw)28(a\\252o)-442(j)1(e)-1(j)-441(za)28(w)-1(zi\\246te)-1(,)-441(wz)-1(gar)1(dli)1(w)27(e)-442(milcz)-1(enie,)-441(w)-1(i)1(\\246)-1(c)]TJ 0 -13.549 Td[(jeno)-333(rzek\\252)-334(z)-334(p)1(rze)-1(k)56(\\241se)-1(m:)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(le)-1(cisz)-1(,)-333(j)1(akb)28(y\\261)-334(c)28(hcia\\252a)-333(ucie)-1(c)-333(prze)-1(d)1(e)-334(mn\\241..)1(.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(o)-333(pra)28(wda!)-333(Ob)1(ac)-1(zy)-333(nas)-333(kto)-333(i)-334(got)1(o)27(w)28(e)-334(n)1(o)27(w)28(e)-334(pl)1(otki.)]TJ 0 -13.55 Td[({)-333(Alb)-27(o)-334(ci)-333(\\261)-1(p)1(ie)-1(szno)-333(do)-333(k)28(ogo)-334(d)1(ru)1(gie)-1(go!)]TJ 0 -13.549 Td[({)-333(Ju\\261c)-1(i)1(,)-334(ab)-27(o)-333(m)-1(i)-333(to)-333(ni)1(e)-334(w)27(ol)1(no!)-333(Ab)-27(om)-334(to)-333(nie)-333(w)-1(d)1(o)28(w)27(a!)]TJ 0 -13.549 Td[({)-306(Wid)1(z)-1(\\246,)-306(co)-306(nie)-306(d)1(arm)-1(o)-305(p)-28(o)28(wiada)-55(j\\241,)-305(\\273)-1(e)-306(kieruj)1(e)-1(sz)-306(s)-1(i\\246)-306(na)-306(k)1(s)-1(i\\246\\273)-1(\\241)-306(gosp)-27(o)-28(dy)1(ni\\246...)]TJ 0 -13.549 Td[(P)28(or)1(w)27(a\\252a)-299(si\\246)-299(j)1(ak)-299(wic)28(her)-299(i)-298(\\252zy)-299(p)-27(otrz\\246)-1(s\\252y)-298(s)-1(i\\246)-299(j)1(e)-1(j)-298(z)-299(o)-27(c)-1(z\\363)27(w)-298(rz\\246)-1(sis)-1(t)28(y)1(m)-1(i,)-298(p)1(al\\241c)-1(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(strugami.)]TJ\nET\nendstream\nendobj\n2319 0 obj <<\n/Type /Page\n/Contents 2320 0 R\n/Resources 2318 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2318 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2324 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(728)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(46.)]TJ\nET\nendstream\nendobj\n2323 0 obj <<\n/Type /Page\n/Contents 2324 0 R\n/Resources 2322 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2322 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2327 0 obj <<\n/Length 7001      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(47)]TJ/F17 10.909 Tf 0 -73.325 Td[(Ju)1(\\273)-491(s)-1(tr)1(onami,)-490(na)-490(piask)56(ac)27(h)-490(i)-490(l\\273)-1(ejszyc)27(h)-490(gru)1(n)28(tac)28(h)-490(w)-1(yc)28(ho)-28(d)1(z)-1(on)1(o)-491(ze)-491(sie)-1(r)1(p)-28(em,)-491(j)1(u\\273)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-222(k)56(a)-56(j)-222(n)1(iek)55(a)-55(j)-222(p)-28(o)-222(wy\\273niac)28(h)-222(b\\252ysk)56(a\\252)-1(y)-222(k)28(osy)83(,)-222(ale)-222(w)27(e)-223(wsiac)27(h)1(,)-222(gdzie)-223(b)28(y\\252y)-222(mo)-28(cniejsz)-1(e)]TJ 0 -13.549 Td[(zie)-1(mie,)-251(dop)1(iero)-251(imano)-251(si\\246)-251(pr)1(z)-1(ygot)1(o)27(w)28(a\\253)-251(i)-250(\\273)-1(n)1(iw)27(a)-250(le)-1(d)1(a)-251(dzie\\253)-251(mia\\252y)-251(si\\246)-251(roz)-1(p)-27(o)-28(cz)-1(y)1(na\\242.)]TJ 27.879 -13.55 Td[(Wi\\246c)-248(i)-248(w)-248(Lip)-27(c)-1(ac)27(h)1(,)-248(j)1(ak)28(o\\261)-249(w)-248(par)1(\\246)-249(d)1(ni)-247(p)-28(o)-248(u)1(c)-1(iecz)-1(ce)-249(Ro)-28(c)28(ha,)-248(j)1(\\246)-1(t)1(o)-248(s)-1(i\\246)-248(ostro)-248(sp)-28(oso-)]TJ -27.879 -13.549 Td[(bi)1(\\242)-293(d)1(o)-292(\\273niw)28(a,)-292(r)1(yc)27(h)28(to)28(w)28(ano)-292(n)1(a)-292(gw)28(a\\252)-1(t)-291(drab)1(in)28(y)-291(i)-292(mo)-28(cz)-1(on)1(o)-292(w)27(e)-292(sta)28(w)-1(i)1(e)-293(w)28(oz)-1(y)-291(c)-1(o)-291(barze)-1(j)]TJ 0 -13.549 Td[(roze)-1(sc)27(h)1(ni\\246te,)-360(opr)1(z)-1(\\241tan)1(o)-360(s)-1(t)1(o)-28(do\\252y)84(,)-360(\\273)-1(e)-360(j)1(u\\273)-360(s)-1(to)-55(ja\\252y)-360(wyw)28(arte)-360(na)-359(prze)-1(strza\\252,)-360(gd)1(z)-1(ie)-360(w)]TJ 0 -13.549 Td[(cie)-1(n)1(iac)27(h)-437(s)-1(ad)1(\\363)28(w)-438(w)-1(y)1(kr\\246c)-1(an)1(o)-438(p)-28(o)28(wr\\363s\\252a,)-438(za\\261)-439(p)1(ra)28(wie)-438(p)-28(o)-28(d)-437(k)56(a\\273)-1(d)1(\\241)-438(c)27(h)1(a\\252up)1(\\241)-438(brz\\241k)56(a\\252y)]TJ 0 -13.549 Td[(rozklep)28(yw)28(ane)-300(k)28(os)-1(y)84(,)-300(k)28(obiet)28(y)-300(z)-1(wij)1(a\\252y)-300(s)-1(i)1(\\246)-301(pr)1(z)-1(y)-300(p)1(iec)-1(ze)-1(n)1(iu)-300(c)27(h)1(leb)-28(\\363)28(w)-300(i)-300(s)-1(p)-27(os)-1(ob)1(ieniu)-299(z)-1(a-)]TJ 0 -13.549 Td[(pas\\363)28(w,)-443(a)-443(z)-444(tego)-443(ws)-1(zystkiego)-443(z)-1(r)1(obi\\252o)-443(si\\246)-443(t)27(y)1(lac)27(h)1(na)-443(skrz\\246)-1(tu)-442(i)-443(rw)28(ete)-1(s\\363)28(w)-1(,)-442(\\273)-1(e)-443(wie)-1(\\261)]TJ 0 -13.55 Td[(wygl\\241d)1(a\\252a)-334(j)1(akb)28(y)-333(pr)1(z)-1(ed)-333(jak)1(im)-1(\\261)-333(w)-1(i)1(e)-1(lk)1(im)-334(\\261w)-1(i)1(\\246)-1(tem.)]TJ 27.879 -13.549 Td[(A)-438(\\273e)-439(p)1(rzy)-438(t)28(ym)-438(z)-1(j)1(e)-1(c)28(ha\\252o)-438(s)-1(i)1(\\246)-439(z)-438(dr)1(ugic)28(h)-438(ws)-1(i)-437(s)-1(p)-27(oro)-438(n)1(aro)-28(d)1(u,)-438(to)-438(n)1(a)-438(dr)1(ogac)27(h)]TJ -27.879 -13.549 Td[(i)-395(p)-27(o)-28(d)-394(m)-1(\\252y)1(nem)-396(wrza\\252o)-395(kieb)28(y)-394(na)-395(j)1(armarku)1(,)-395(g\\252\\363)28(w)-1(n)1(ie)-395(b)-28(o)28(wiem)-396(\\261ci\\241)-28(gali)-394(z)-1(e)-395(z)-1(b)-27(o\\273e)-1(m)]TJ 0 -13.549 Td[(do)-358(miele)-1(n)1(ia,)-358(ale)-359(j)1(akb)28(y)-358(n)1(a)-359(u)1(trap)1(ienie,)-358(tak)-358(m)-1(a\\252o)-358(b)28(y)1(\\252)-1(o)-358(w)28(o)-28(dy)84(,)-358(\\273)-1(e)-358(robi)1(\\252)-359(t)28(yl)1(k)28(o)-359(j)1(e)-1(d)1(e)-1(n)]TJ 0 -13.549 Td[(ganek,)-390(a)-390(i)-390(to)-390(z)-1(al)1(e)-1(d)1(w)-1(i)1(e)-391(si\\246)-391(ru)1(c)27(h)1(a)-56(j)1(\\241c)-1(,)-390(cz)-1(ek)56(ali)-390(jedn)1(ak)-390(c)-1(ierp)1(liwie)-390(s)-1(w)28(o)-56(j)1(e)-1(j)-390(k)28(ol)1(e)-1(i,)-390(b)-27(o)-28(\\242)]TJ 0 -13.55 Td[(k)56(a\\273)-1(d)1(e)-1(n)-333(c)28(hcia\\252)-334(zem)-1(le\\242)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(na)-333(\\273)-1(n)1(iw)28(a.)]TJ 27.879 -13.549 Td[(Niem)-1(a\\252o)-236(te\\273)-237(c)-1(i)1(s)-1(n)1(\\246)-1(\\252o)-236(s)-1(i)1(\\246)-237(do)-236(m\\252ynar)1(z)-1(o)28(w)27(ego)-236(dom)28(u)-236(kup)-27(o)28(w)27(a\\242)-236(m)-1(\\241k)28(\\246,)-236(k)56(as)-1(ze)-237(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(r\\363\\273ne,)-333(a)-334(n)1(a)28(w)27(et)-334(i)-333(p)-27(o)-333(c)27(hl)1(e)-1(b)-333(goto)28(wy)84(.)]TJ 27.879 -13.549 Td[(M\\252yn)1(arz)-298(le\\273)-1(a\\252)-298(c)27(h)1(ory)84(,)-298(ale)-298(snad\\271)-298(n)1(ic)-299(si\\246)-298(ni)1(e)-299(d)1(z)-1(ia\\252o)-298(b)-27(ez)-299(j)1(e)-1(go)-298(p)1(rzyz)-1(w)28(ole\\253st)28(w)27(a,)]TJ -27.879 -13.549 Td[(gdy)1(\\273)-334(krzykn)1(\\241\\252)-334(d)1(o)-334(\\273on)28(y)-333(sie)-1(d)1(z)-1(\\241cej)-333(na)-333(dw)28(orze)-1(,)-333(p)-27(o)-28(d)-333(wyw)28(art)28(ym)-334(ok)1(nem)-1(:)]TJ 27.879 -13.55 Td[({)-269(A)-269(r)1(z)-1(ep)-28(ec)27(ki)1(m)-270(n)1(ie)-269(da)28(w)27(a)-55(j)-269(an)1(i)-269(za)-269(grosz)-1(,)-268(pro)28(w)28(adzali)-269(sw)27(o)-55(je)-269(kro)28(wy)-269(d)1(o)-269(ksi\\246)-1(\\273e)-1(go)]TJ -27.879 -13.549 Td[(b)28(yk)56(a,)-333(to)-333(niec)27(h)1(\\273)-1(e)-333(im)-334(p)1(rob)-27(os)-1(zc)-1(z)-334(zab)-27(orguj)1(e)-334(i)-333(c)-1(o)-333(in)1(nego.)]TJ 27.879 -13.549 Td[(I)-333(ni)1(e)-334(p)-27(om)-1(og\\252y)-333(\\273adn)1(e)-334(p)1(ro\\261b)28(y)-333(n)1(i)-333(s)-1(k)56(am\\252ania,)-332(na)-333(dar)1(m)-1(o)-333(te\\273)-333(w)-1(sta)28(w)-1(i)1(a\\252a)-333(s)-1(i\\246)-333(z)-1(a)]TJ -27.879 -13.549 Td[(bi)1(e)-1(d)1(niejsz)-1(y)1(m)-1(i)-425(zac)-1(i)1(\\241\\252)-426(si\\246)-425(i)-425(\\273)-1(ad)1(nem)27(u,)-425(k)1(t\\363ren)-425(in)1(o)-426(w)28(o)-28(d)1(z)-1(i\\252)-425(kr)1(o)27(w)28(\\246)-426(n)1(a)-425(pleban)1(i\\246,)-425(nie)]TJ 0 -13.549 Td[(p)-27(oz)-1(w)28(oli\\252)-333(z)-1(b)-27(orgo)28(w)28(a\\242)-334(ani)-333(p)-27(\\363\\252)-334(k)1(w)27(art)28(y)-333(m\\241ki.)]TJ 27.879 -13.55 Td[({)-333(Sp)-27(o)-28(dob)1(a\\252)-334(i)1(m)-334(s)-1(i)1(\\246)-334(ksi\\246)-1(\\273y)-333(b)28(yk)1(,)-334(t)1(o)-334(n)1(ie)-1(c)28(h)-333(go)-333(s)-1(ob)1(ie)-334(do)-55(j\\241!)-333({)-333(wykrzyki)1(w)27(a\\252.)]TJ 0 -13.549 Td[(M\\252yn)1(arzo)28(w)27(a,)-365(te\\273)-366(j)1(ak)28(o\\261)-366(k)1(w)27(\\246k)56(a)-56(j\\241ca,)-365(sp\\252ak)56(ana)-365(i)-365(z)-365(ob)28(wi\\241zan\\241)-365(t)28(w)28(arz)-1(\\241,)-364(w)-1(zru)1(-)]TJ -27.879 -13.549 Td[(sz)-1(a\\252a)-333(ramionami,)-333(ale)-334(j)1(ak)-333(m)-1(og\\252a,)-333(u)1(krad)1(kiem)-334(z)-1(b)-27(orgo)28(w)28(a\\252a)-334(n)1(iejednem)27(u)1(.)]TJ 27.879 -13.549 Td[(Nadesz)-1(\\252a)-333(K\\252\\246)-1(b)-27(o)28(w)27(a)-333(pr)1(os)-1(z\\241c)-334(o)-333(p)-28(\\363\\252)-333(\\242)-1(wiar)1(tki)-333(jagl)1(anej)-333(k)55(aszy)83(.)]TJ 0 -13.549 Td[({)-333(P\\252acic)-1(i)1(e)-334(z)-1(ar)1(az)-1(,)-333(to)-333(bierzc)-1(i)1(e)-1(,)-333(ale)-333(na)-333(b)-28(\\363r)1(g)-334(n)1(ie)-334(d)1(am)-334(ani)-333(ziarn)1(k)56(a...)]TJ 0 -13.55 Td[(Zafr)1(as)-1(o)28(w)28(a\\252)-1(a)-333(si\\246)-334(wielc)-1(e,)-333(b)-28(o)-333(j)1(u\\261c)-1(i,)-333(\\273e)-334(pr)1(z)-1(y)1(s)-1(z\\252a)-334(b)-27(e)-1(z)-333(pieni\\246dzy)84(.)]TJ 0 -13.549 Td[({)-333(T)83(om)-1(ek)-333(z)-334(n)1(im)-334(trzyma)-333(z)-1(a)-333(jedn)1(o,)-333(to)-334(n)1(iec)27(ha)-55(j)-333(up)1(rosi)-334(o)-333(k)56(as)-1(z\\246.)]TJ 0 -13.549 Td[(Ob)1(razi\\252a)-334(si\\246)-334(i)-333(rzek\\252a)-334(wyzyw)28(a)-56(j)1(\\241c)-1(o:)]TJ 330.353 -29.888 Td[(729)]TJ\nET\nendstream\nendobj\n2326 0 obj <<\n/Type /Page\n/Contents 2327 0 R\n/Resources 2325 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2325 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2330 0 obj <<\n/Length 8529      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(730)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(47.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-352(Ju\\261c)-1(i,)-352(co)-353(tr)1(z)-1(yma)-352(z)-353(ks)-1(i)1(\\246)-1(d)1(z)-1(em)-353(i)-352(trzym)-1(a\\252)-352(b)-27(\\246)-1(d)1(z)-1(ie,)-352(ale)-353(tut)1(a)-56(j)-352(ju)1(\\273)-353(wi\\246)-1(cej)-353(j)1(e)-1(go)]TJ -27.879 -13.549 Td[(noga)-333(n)1(ie)-334(p)-27(os)-1(toi)1(.)]TJ 27.879 -13.549 Td[({)-333(Ma\\252a)-333(s)-1(zk)28(o)-28(da,)-333(kr)1(\\363tki)-333(\\273)-1(al)1(!)-333(Spr)1(obu)1(jcie)-334(mle\\242)-334(gdzie)-334(in)1(dziej.)]TJ 0 -13.549 Td[(Od)1(e)-1(sz)-1(\\252a)-384(w)-1(i)1(e)-1(lce)-385(s)-1(k)1(\\252)-1(op)-27(otan)1(a,)-385(b)-27(o)-385(w)-385(d)1(om)27(u)-384(ni)1(e)-385(b)28(y\\252o)-385(j)1(u\\273)-385(an)1(i)-385(grosza,)-385(lec)-1(z)-385(n)1(a-)]TJ -27.879 -13.549 Td[(tkn)1(\\241)28(w)-1(sz)-1(y)-407(s)-1(i\\246)-408(na)-407(k)28(o)27(w)28(alo)28(w)27(\\241,)-407(s)-1(iedz\\241c\\241)-408(prze)-1(d)-407(z)-1(a)28(w)28(art\\241)-408(ku)1(\\271)-1(n)1(i\\241,)-408(r)1(oz)-1(\\273ali\\252a)-408(si\\246)-408(prze)-1(d)]TJ 0 -13.55 Td[(ni)1(\\241)-334(i)-333(zap\\252ak)56(a\\252a)-334(n)1(a)-334(m\\252yn)1(arza.)]TJ 27.879 -13.549 Td[(Ale)-334(k)28(o)28(w)28(alo)28(w)27(a)-333(ozw)27(a\\252a)-333(s)-1(i\\246)-333(z)-334(pr)1(z)-1(e\\261)-1(miec)27(hem:)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(w)28(am)-334(j)1(e)-1(n)1(o)-334(r)1(z)-1(ekn)1(\\246)-1(,)-333(co)-334(j)1(u\\273)-334(n)1(ie)-1(d)1(\\252ugie)-333(to)-334(j)1(e)-1(go)-333(p)1(ano)28(w)27(an)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(Hale)-1(,)-333(a)-333(kt\\363\\273)-333(to)-334(d)1(a)-334(r)1(ad\\246)-334(tak)1(ie)-1(m)28(u)-333(b)-27(ogac)-1(zo)28(w)-1(i)1(,)-334(k)1(to?)]TJ 0 -13.549 Td[({)-333(Jak)-333(m)27(u)-333(wiatr)1(ak)-333(p)-28(osta)28(w)-1(i)1(\\241)-334(p)-27(o)-28(d)-333(b)-27(okiem,)-334(t)1(o)-334(m)28(u)-333(i)-333(rad\\246)-333(dadz\\241.)]TJ 0 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a)-334(j)1(a\\273)-1(e)-333(o)-28(c)-1(zy)-333(wytrze)-1(sz)-1(cz)-1(y)1(\\252a)-334(ze)-334(zdumieni)1(a.)]TJ 0 -13.55 Td[({)-315(A)-315(m)-1(\\363)-55(j)-315(wiatrak)-315(p)-27(osta)28(w)-1(i)1(.)-315(C)-1(o)-315(in)1(o)-315(p)-28(osz)-1(ed\\252)-315(z)-316(M)1(ate)-1(u)1(s)-1(ze)-1(m)-315(do)-315(b)-27(oru)-315(wyb)1(iera\\242)]TJ -27.879 -13.549 Td[(dr)1(z)-1(ew)27(o,)-333(n)1(a)-334(P)29(o)-28(dl)1(e)-1(siu)-333(b)-27(\\246)-1(d)1(\\241)-334(sta)28(w)-1(i)1(a\\242)-334(k)28(ole)-334(\\014)1(gur)1(y)83(.)]TJ 27.879 -13.549 Td[({)-308(Cie...)-307(Mic)28(ha\\252)-308(sta)28(w)-1(i)1(a)-308(wiatrak)1(,)-308(\\261m)-1(ierci)-308(b)29(ym)-308(s)-1(i\\246)-308(p)1(r\\246dze)-1(j)-307(s)-1(p)-27(o)-28(d)1(z)-1(i)1(a\\252)-1(a,)-307(no,)-307(no.)]TJ -27.879 -13.549 Td[(Ale)-334(d)1(obr)1(z)-1(e)-334(t)1(ak)-334(t)1(e)-1(m)27(u)-332(z)-1(d)1(z)-1(ieru)1(s)-1(o)28(wi,)-333(ni)1(e)-1(c)27(h)-332(m)27(u)-333(k)56(a\\252du)1(n)-333(s)-1(p)1(adn)1(ie)-1(.)]TJ 27.879 -13.549 Td[(T)83(ak)-260(j)1(e)-1(j)-259(ul\\273y\\252o,)-260(\\273e)-261(\\261pi)1(e)-1(sz)-1(n)1(ie)-1(j)-259(s)-1(z\\252a)-260(ku)-259(domo)27(wi,)-259(ale)-261(d)1(o)-56(j)1(rza)27(wsz)-1(y)-260(Han)1(k)28(\\246)-261(p)1(ier\\241c)-1(\\241)]TJ -27.879 -13.55 Td[(p)-27(o)-28(d)-333(c)27(h)1(a\\252up)1(\\241)-334(wst\\241)-28(pi\\252a)-333(p)-27(o)-28(dzieli\\242)-334(si\\246)-334(t\\241)-333(n)1(ie)-1(sp)-27(o)-28(dzian\\241)-333(no)28(win)1(\\241.)]TJ 27.879 -13.549 Td[(An)28(tek)-333(m)-1(a)-55(jd)1(ro)28(w)27(a\\252)-333(cos)-1(ik)-333(k)28(ole)-333(w)27(oza)-334(i)-333(p)-27(os)-1(\\252y)1(s)-1(za)27(wsz)-1(y)-333(r)1(oz)-1(mo)27(w)28(\\246)-334(r)1(z)-1(ek\\252:)]TJ 0 -13.549 Td[({)-279(P)1(ra)28(wd\\246)-279(w)27(am)-279(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252a)-279(M)1(agda,)-278(k)28(o)27(w)28(al)-279(j)1(u\\273)-279(ku)1(pi\\252)-279(o)-27(d)-279(d)1(z)-1(i)1(e)-1(d)1(z)-1(ica)-279(dw)28(adzie-)]TJ -27.879 -13.549 Td[(\\261c)-1(ia)-377(morg\\363)28(w)-378(n)1(a)-377(P)28(o)-28(d)1(le)-1(siu)1(,)-377(z)-1(ar)1(az)-378(pr)1(z)-1(y)-377(\\014)1(gurze,)-377(i)-377(tam)-378(wysta)28(w)-1(i)-377(wiat)1(rak!)-377(M\\252y)1(narz)]TJ 0 -13.549 Td[(si\\246)-372(w\\261c)-1(i)1(e)-1(kn)1(ie)-371(z)-1(e)-371(z)-1(\\252o\\261c)-1(i)1(,)-371(ale)-371(ni)1(e)-1(c)27(h)-370(m)27(u)-370(ru)1(ra)-371(zmi\\246)-1(kn)1(ie!)-371(T)83(ak)-370(s)-1(i\\246)-371(ju)1(\\273)-371(w)-1(sz)-1(y)1(s)-1(tk)1(im)-371(da\\252)]TJ 0 -13.55 Td[(w)28(e)-334(z)-1(n)1(aki,)-333(\\273e)-334(ni)1(kto)-334(go)-333(n)1(ie)-334(p)-27(o\\273)-1(a\\252u)1(je.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(wiec)-1(ie)-333(to)-334(n)1(icz)-1(ego)-334(o)-333(Ro)-28(c)27(h)29(u?)]TJ 0 -13.549 Td[({)-333(Nic)-334(a)-333(nic)-333({)-334(o)-27(dwr\\363)-28(ci\\252)-333(s)-1(i\\246)-333(o)-28(d)-333(ni)1(e)-1(j)-333(j)1(ak)28(o\\261)-334(\\261)-1(p)1(ies)-1(znie.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(d)1(z)-1(i)1(w)-1(n)1(e)-1(,)-333(tr)1(z)-1(ec)-1(i)-333(d)1(z)-1(ie\\253)-333(i)-333(ni)1(e)-334(wiada,)-333(co)-334(si\\246)-334(z)-333(nim)-333(w)-1(y)1(rabi)1(a.)]TJ 0 -13.549 Td[({)-471(Prze)-1(ciek)-471(nieraz)-472(j)1(u\\273)-472(tak)-471(b)28(yw)28(a\\252o,)-471(\\273)-1(e)-472(p)-27(osz)-1(ed\\252)-471(k)55(a)-55(j\\261,)-471(a)-472(p)-27(ote)-1(m)-471(z)-1(n)1(o)27(wu)-471(si\\246)]TJ -27.879 -13.55 Td[(zja)28(wi\\252.)]TJ 27.879 -13.549 Td[({)-333(Kt\\363\\273)-334(to)-333(o)-28(d)-333(w)28(as)-334(id)1(z)-1(ie)-333(do)-333(Cz)-1(\\246s)-1(to)-27(c)27(ho)28(wy?)-333({)-334(zagadn)1(\\246)-1(\\252a)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-333(A)-334(i)1(dzie)-334(mo)-56(j)1(a)-334(Jewk)55(a)-333(z)-334(M)1(ac)-1(iu)1(s)-1(i)1(e)-1(m.)-333(Lato\\261)-334(ma\\252o)-334(wiela)-333(s)-1(i\\246)-333(z)-1(e)-334(wsi)-333(w)-1(y)1(biera.)]TJ 0 -13.549 Td[({)-333(I)-334(j)1(a)-334(p)-27(\\363)-56(j)1(d\\246,)-333(w\\252)-1(a\\261ni)1(e)-334(pr)1(z)-1(epieram)-333(na)-333(drog\\246)-333(c)-1(o)-333(l\\273e)-1(j)1(s)-1(ze)-334(sz)-1(mat)28(y)83(.)]TJ 0 -13.549 Td[({)-333(Ale)-334(p)-27(ono)-333(z)-334(d)1(rugi)1(c)27(h)-333(ws)-1(i)-333(to)-333(s)-1(p)-27(oro)-333(si\\246)-334(sz)-1(yk)1(uj)1(e)-1(.)]TJ 0 -13.55 Td[({)-336(S)1(p)-28(osobn)1(\\241)-336(p)-27(or\\246)-336(s)-1(e)-336(wyb)1(ra\\252y)83(,)-335(na)-336(n)1(a)-56(j)1(wi\\246)-1(k)1(s)-1(z\\241)-336(rob)-27(ot\\246)-336({)-336(mruk)1(n\\241\\252)-336(An)28(tek,)-335(ale)]TJ -27.879 -13.549 Td[(\\273onie)-334(si\\246)-334(n)1(ie)-334(p)1(rze)-1(ciwi\\252)-334(wiedz\\241c)-334(o)-28(d)-332(da)28(wna,)-333(na)-333(jak)56(\\241)-333(to)-333(in)28(tencj\\246)-334(si\\246)-334(o)-27(c)27(h\\014)1(aro)28(w)27(a\\252a.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246\\252)-1(y)-333(se)-334(rozp)-27(o)27(wiad)1(a\\242)-334(r\\363\\273no\\261c)-1(i)1(e)-1(,)-333(gd)1(y)-334(wp)1(ad\\252a)-333(Jagust)28(ynk)56(a.)]TJ 0 -13.549 Td[({)-456(Wiec)-1(i)1(e)-457({)-456(wrz)-1(esz)-1(cz)-1(a\\252a)-456({)-456(a)-456(to)-456(m)-1(o\\273e)-457(p)1(rz)-1(ed)-456(go)-28(d)1(z)-1(i)1(n\\241)-456(pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-457(z)-456(w)27(o)-55(jsk)55(a)]TJ -27.879 -13.549 Td[(Jasie)-1(k)1(!)]TJ 27.879 -13.549 Td[({)-333(T)83(e)-1(r)1(e)-1(ski)-333(c)27(h)1(\\252op!)-333(A)-333(dy\\242)-334(p)-27(o)28(wiada\\252a,)-333(co)-334(wraca)-333(dopi)1(e)-1(r)1(o)-334(n)1(a)-334(k)28(op)1(ania.)]TJ 0 -13.55 Td[({)-230(Co)-230(in)1(om)-230(go)-230(widzia\\252a,)-229(ga)-1(l)1(ancie)-230(k)28(o\\252o)-230(niego)-230(i)-229(okru)1(tnie)-230(st\\246)-1(skn)1(ion)28(y)-230(d)1(o)-230(sw)27(oic)28(h.)]TJ 0 -13.549 Td[({)-333(Dobr)1(y)-334(b)29(y\\252)-334(c)28(h\\252op)1(,)-334(al)1(e)-334(z)-1(a)28(wz)-1(i)1(\\246)-1(t)28(y)84(.)-333(T)83(e)-1(r)1(e)-1(sk)55(a)-333(d)1(om)-1(a?)]TJ 0 -13.549 Td[({)-333(Rw)-1(i)1(e)-334(len)-333(u)-333(pr)1(ob)-28(osz)-1(cz)-1(a)-333(i)-333(jes)-1(zcz)-1(e)-334(n)1(ie)-334(wie,)-333(c)-1(o)-333(j\\241)-333(w)-334(d)1(om)27(u)-333(cz)-1(ek)56(a.)]TJ 0 -13.549 Td[({)-333(Zno)28(wu)-333(z)-1(ak)28(ot\\252u)1(je)-334(si\\246)-334(w)-333(Lip)-27(c)-1(ac)27(h)1(,)-333(pr)1(z)-1(ec)-1(iek)-333(m)27(u)-333(zarn)1(o)-334(p)-27(o)28(wie)-1(d)1(z)-1(\\241!)]TJ 0 -13.549 Td[(An)28(tek)-372(s)-1(\\252u)1(c)27(ha\\252)-372(u)28(w)28(a\\273)-1(n)1(ie)-1(,)-372(gd)1(y\\273)-373(mo)-28(c)-1(n)1(o)-372(go)-373(za)-56(j)1(\\246)-1(\\252a)-372(no)28(wina,)-372(lec)-1(z)-372(s)-1(i\\246)-372(nie)-373(o)-27(dzy-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-1(,)-377(za\\261)-379(Han)1(k)56(a)-378(z)-378(K\\252\\246)-1(b)-27(o)28(w)27(\\241)-377(s)-1(zc)-1(zerz)-1(e)-378(u)1(b)-28(ol)1(e)-1(w)28(a)-56(j)1(\\241c)-379(n)1(ad)-377(T)83(e)-1(r)1(e)-1(sk)56(\\241)-378(j\\246\\252y)-378(p)1(rze)-1(wid)1(yw)27(a\\242)]TJ 0 -13.549 Td[(na)-55(jgor)1(s)-1(ze)-334(la)-333(ni)1(e)-1(j)-333(rzec)-1(zy)83(,)-333(a\\273)-334(i)1(m)-334(pr)1(z)-1(erw)28(a\\252a)-334(Jagu)1(s)-1(t)28(yn)1(k)56(a:)]TJ\nET\nendstream\nendobj\n2329 0 obj <<\n/Type /Page\n/Contents 2330 0 R\n/Resources 2328 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2328 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2333 0 obj <<\n/Length 9297      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(731)]TJ -330.353 -35.866 Td[({)-230(P)1(s)-1(u)-229(n)1(a)-230(bu)1(d\\246)-230(tak)56(a)-230(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)28(o\\261)-1(\\242!)-230(Hale,)-229(p)-28(\\363)-55(jd)1(z)-1(ie)-230(se)-230(taki)-229(c)-1(io\\252ek)-230(n)1(a)-230(ca\\252e)-230(roki)]TJ -27.879 -13.549 Td[(w)28(e)-273(\\261w)-1(i)1(at,)-272(k)28(ob)1(ie)-1(t\\246)-272(osta)27(wi)-271(s)-1(am\\241,)-272(a)-272(p)-27(ote)-1(m,)-272(j)1(ak)-272(si\\246)-273(n)1(ieb)-28(o)-27(dze)-273(co)-272(pr)1(z)-1(ygo)-27(dz)-1(i)1(,)-272(to)-272(got\\363)28(w)]TJ 0 -13.549 Td[(j\\241)-335(c)27(ho)-27(\\242)-337(i)-335(z)-1(ak)56(atru)1(pi)1(\\242)-1(!)-335(A)-336(w)-1(szys)-1(tk)1(ie)-336(te)-1(\\273)-336(bi)1(j)-336(zabij)-335(n)1(a)-336(ni\\241!)-335(Ka)-56(j)1(\\273)-1(e)-336(ta)-336(spr)1(a)28(w)-1(i)1(e)-1(d)1(liw)27(o\\261\\242!)]TJ 0 -13.549 Td[(Ch\\252op)-480(to)-480(se)-481(m)-1(o\\273e)-481(u)1(\\273)-1(yw)28(a\\242)-481(j)1(ak)-480(na)-480(psim)-481(w)28(e)-1(selu)-480(i)-480(nik)1(to)-481(m)28(u)-480(za)-481(to)-480(ni)1(e)-481(rze)-1(k)1(nie)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-246(marn)1(e)-1(go)-246(s\\252)-1(o)28(w)28(a.)-246(Do)-246(c)-1(n)1(a)-247(g\\252u)1(pie)-246(urz\\241dzenie)-246(na)-246(\\261)-1(wiec)-1(i)1(e)-1(!)-246(Jak)1(\\273)-1(e,)-246(to)-246(k)28(obieta)-246(nie)]TJ 0 -13.55 Td[(\\273ywy)-335(cz)-1(\\252o)28(wiek,)-334(to)-335(z)-334(drewna)-334(w)-1(y)1(s)-1(tr)1(ugana)-334(cz)-1(y)-334(co?)-335(Ale)-335(ki)1(e)-1(j)-334(j)1(u\\273)-335(m)28(usi)-334(o)-28(dp)-27(o)28(w)-1(i)1(ada\\242,)]TJ 0 -13.549 Td[(to)-367(ni)1(e)-1(c)28(h\\273e)-368(i)-367(gac)27(h)-366(z)-1(ar)1(\\363)27(wn)1(o)-367(p\\252ac)-1(i)1(,)-367(pr)1(z)-1(ec)-1(iek)-367(p)-27(os)-1(p)-27(\\363ln)1(ie)-368(gr)1(z)-1(es)-1(zyli)1(.)-367(C)-1(zem)27(u\\273)-367(to)-367(jem)27(u)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-333(uciec)27(ha,)-333(a)-333(la)-333(ni)1(e)-1(j)-333(sam)-1(o)-333(p)1(\\252)-1(ak)56(an)1(ie)-1(,)-333(co?)]TJ 27.879 -13.549 Td[({)-347(M)1(oi\\261)-1(ciewy)83(,)-346(tak)-347(j)1(u\\273)-347(p)-27(os)-1(t)1(ano)28(w)-1(i)1(one)-347(o)-28(d)-346(wiek)-347(wiek)56(a,)-347(to)-346(os)-1(tan)1(ie)-1(!)-346({)-347(sze)-1(p)1(n\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(K\\252\\246b)-28(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-389(O)1(s)-1(tan)1(ie)-1(,)-388(\\273e)-1(b)28(y)-388(si\\246)-389(nar)1(\\363)-28(d)-388(m)-1(ar)1(no)28(w)27(a\\252,)-388(a)-389(z\\252y)-389(cies)-1(zy\\252,)-389(al)1(e)-389(ja)-389(t)1(o)-389(b)28(ym)-389(p)-27(osta-)]TJ -27.879 -13.55 Td[(no)28(wi\\252a)-317(inacz)-1(ej:)-317(wz)-1(i)1(on)-317(kt\\363ren)-317(c)-1(u)1(dz\\241)-318(k)28(ob)1(iet\\246)-1(,)-317(to)-317(niec)27(h)1(\\273)-1(e)-318(se)-318(j\\241)-317(osta)27(wi)-317(na)-317(za)27(wdy)84(,)-317(a)]TJ 0 -13.549 Td[(ni)1(e)-334(z)-1(ec)27(h)1(c)-1(e,)-333(b)-28(o)-333(m)27(u)-332(ju\\273)-333(no)28(w)27(a)-333(lepi)1(e)-1(j)-333(zas)-1(mak)28(o)28(w)27(a\\252a,)-333(kij)1(e)-1(m)-333(\\261)-1(cierw)28(\\246)-334(i)-333(do)-333(kremina\\252u!)]TJ 27.879 -13.549 Td[(An)28(tek)-333(roze)-1(\\261m)-1(i)1(a\\252)-334(si\\246)-334(z)-334(j)1(e)-1(j)-333(zapal)1(c)-1(zyw)28(o\\261)-1(ci,)-333(s)-1(k)28(o)-27(c)-1(zy\\252a)-334(k)1(u)-333(niem)27(u)-333(z)-333(w)-1(r)1(z)-1(askiem.)]TJ 0 -13.549 Td[({)-485(La)-485(w)28(as)-486(to)-485(in)1(o)-485(w)27(ar)1(te)-486(\\261mie)-1(c)28(h)28(u,)-485(co?)-485(Zb)-28(\\363)-55(je)-485(z)-1(ap)-27(o)28(wie)-1(tr)1(z)-1(on)1(e)-1(,)-485(k)56(a\\273da)-485(w)28(am)]TJ -27.879 -13.549 Td[(na)-55(jmilejsza)-1(,)-333(p)-27(\\363ki)-333(j)1(e)-1(j)-333(n)1(ie)-334(d)1(os)-1(tan)1(ie)-1(t)1(a.)-334(A)-333(p)-27(ote)-1(m)-333(jes)-1(zc)-1(ze)-334(si\\246)-334(p)1(rz)-1(ekp)1(iw)27(a)-55(j\\241!)]TJ 27.879 -13.55 Td[({)-333(Wyd)1(z)-1(ieracie)-334(si\\246)-334(j)1(ak)-334(srok)56(a)-333(na)-333(pl)1(uc)27(h)1(\\246)-1(!)-333({)-333(rzuci\\252)-334(n)1(iec)27(h\\246tn)1(ie)-1(.)]TJ 0 -13.549 Td[(P)28(olecia\\252a)-334(n)1(a)-334(wie\\261)-334(i)-333(pr)1(z)-1(y)1(s)-1(z\\252a)-334(d)1(opiero)-333(nad)-333(wiec)-1(zorem,)-334(al)1(e)-334(s)-1(r)1(o)-28(dze)-334(sp\\252ak)56(ana.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(s)-1(i\\246)-333(to)-334(w)28(a)-56(j)1(u)-333(pr)1(z)-1(ygo)-27(dzi\\252o?)-334({)-333(s)-1(p)29(yta\\252a)-333(nies)-1(p)-27(ok)28(o)-56(j)1(nie)-333(Hank)56(a.)]TJ 0 -13.549 Td[({)-371(A)-371(c)-1(o,)-371(n)1(api\\252am)-371(s)-1(i\\246)-371(c)-1(z\\252o)27(wiecz)-1(ego)-372(b)-27(\\363lu)-370(i)-371(ja\\273e)-372(m)-1(n)1(ie)-372(zamgli\\252o)-371({)-371(roz)-1(p)1(\\252ak)56(a\\252)-1(a)]TJ -27.879 -13.549 Td[(si\\246)-335(i)-334(j\\246\\252a)-335(m\\363)28(w)-1(i)1(\\242)-335(pr)1(z)-1(ez)-335(\\252z)-1(y)-334(i)-334(sz)-1(lo)-27(c)27(han)1(ia)-334({)-335(wiec)-1(i)1(e)-1(,)-334(a)-334(to)-335(K)1(oz)-1(\\252o)28(w)27(a)-334(wz)-1(i\\246\\252a)-335(J)1(a\\261)-1(k)56(a)-334(p)-28(o)-28(d)]TJ 0 -13.55 Td[(sw)27(o)-55(j\\241)-333(opiek)28(\\246)-334(i)-333(ju)1(\\273)-334(m)27(u)-332(w)-1(sz)-1(y)1(\\242)-1(k)28(o)-333(wy\\261)-1(p)1(iew)27(a\\252a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(ta,)-333(to)-333(dr)1(uga)-333(b)28(y)-333(m)27(u)-333(p)-27(edzia\\252a,)-333(takie)-334(r)1(z)-1(ec)-1(zy)-333(s)-1(i\\246)-333(nie)-333(z)-1(agu)1(bi\\241.)]TJ 0 -13.549 Td[({)-322(M\\363)28(w)-1(i)1(\\246)-323(w)27(am,)-322(\\273)-1(e)-322(c)-1(osik)-322(s)-1(tr)1(as)-1(znego)-323(wzbiera)-322(w)-323(i)1(c)27(h)-322(c)27(h)1(a\\252upi)1(e)-1(!)-322(P)28(ol)1(e)-1(cia\\252am)-323(do)]TJ -27.879 -13.549 Td[(ni)1(c)27(h,)-424(n)1(ie)-425(b)28(y\\252o)-424(nik)28(ogo.)-424(Zagl\\241d)1(am)-425(teraz)-1(,)-424(siedz\\241)-425(ob)-27(o)-56(j)1(e)-425(i)-425(p)1(\\252ac)-1(z\\241,)-424(na)-424(s)-1(tol)1(e)-425(p)-28(or)1(oz)-1(-)]TJ 0 -13.549 Td[(k\\252ad)1(ane)-411(p)-27(o)-28(dar)1(un)1(ki,)-410(jaki)1(e)-411(jej)-410(przyn)1(i\\363s)-1(\\252.)-410(Jez)-1(u)1(,)-410(ja\\273e)-411(m)-1(r)1(\\363z)-411(m)-1(n)1(ie)-411(p)1(rz)-1(ej\\241\\252,)-410(j)1(akb)28(ym)]TJ 0 -13.55 Td[(za)-56(jr)1(z)-1(a\\252a)-296(do)-296(gr)1(obu)1(.)-296(Nie)-297(m\\363)28(wi\\241)-296(do)-296(s)-1(i)1(\\246)-1(,)-296(j)1(e)-1(n)1(o)-296(p\\252acz)-1(\\241.)-296(Mat)1(e)-1(u)1(s)-1(zo)27(w)28(a)-296(matk)55(a)-296(r)1(oz)-1(p)-27(o)28(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(dzia\\252a)-333(m)-1(i)1(,)-334(j)1(ak)-333(to)-333(b)28(y\\252o,)-333(a\\273)-1(e)-333(m)-1(i)-333(w\\252os)-1(y)-333(p)-27(o)28(w)-1(sta\\252y)-333(na)-333(g\\252o)28(w)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(wiec)-1(ie,)-333(ws)-1(p)-27(om)-1(i)1(na\\252)-333(Mateusz)-1(a?)-333({)-334(zagadn)1(\\241\\252)-334(n)1(ie)-1(sp)-27(ok)28(o)-56(j)1(nie)-334(An)29(te)-1(k)1(.)]TJ 0 -13.549 Td[({)-393(P)28(oms)-1(tu)1(je)-393(na)-393(niego,)-393(\\273e)-394(ni)1(e)-1(c)27(h)-392(B)-1(\\363g)-393(b)1(roni)1(!)-393(Jas)-1(iek)-393(m)27(u)-392(te)-1(go)-393(n)1(ie)-394(p)1(rz)-1(epu)1(\\261)-1(ci,)]TJ -27.879 -13.549 Td[(ni)1(e)-1(!)]TJ 27.879 -13.55 Td[({)-256(Nie)-257(b)-27(\\363)-56(j)1(c)-1(ie)-256(s)-1(i\\246,)-256(Mateusz)-257(go)-256(s)-1(k)56(amla\\252)-257(o)-256(\\252ask)28(\\246)-257(nie)-256(b)-28(\\246dzie)-257({)-256(o)-28(d)1(rz)-1(u)1(c)-1(i)1(\\252)-257(gn)1(ie)-1(wn)1(ie)]TJ -27.879 -13.549 Td[(i)-333(ni)1(e)-334(s)-1(\\252u)1(c)27(ha)-55(j\\241c)-334(wi\\246ce)-1(j)-333(p)-27(olec)-1(ia\\252)-333(na)-333(P)28(o)-27(dles)-1(i)1(e)-334(przes)-1(tr)1(z)-1(ec)-334(pr)1(z)-1(yj)1(ac)-1(i)1(e)-1(la.)]TJ 27.879 -13.549 Td[(Nalaz\\252)-435(go)-435(dop)1(iero)-435(u)-434(Szym)-1(k)28(\\363)28(w,)-435(siedzia\\252)-435(z)-435(Nas)-1(tu)1(s)-1(i\\241)-434(p)-28(o)-28(d)-434(\\261c)-1(ian)1(\\241)-435(i)-435(cos)-1(i)1(k)-435(z)]TJ -27.879 -13.549 Td[(cic)27(h)1(a)-329(se)-329(r)1(e)-1(d)1(z)-1(il)1(i,)-328(wyw)27(o\\252a\\252)-328(go)-328(z)-1(ar)1(az)-329(i)-328(ki)1(e)-1(j)-328(o)-27(des)-1(zli)-328(sp)-28(or)1(y)-328(k)55(a)28(w)28(a\\252)-328(drogi,)-327(op)-28(o)28(wiedzia\\252.)]TJ 27.879 -13.549 Td[(Mateusz)-334(a\\273)-334(si\\246)-334(zac)27(h)1(\\252ys)-1(n)1(\\241\\252)-334(i)-333(zac)-1(z\\241\\252)-334(k)1(l\\241\\242)-1(.)]TJ 0 -13.549 Td[({)-333(A)-334(\\273e)-1(b)29(y)-333(to)-334(siarcz)-1(y)1(s)-1(te)-333(pior)1(un)28(y)-333(spali)1(\\252)-1(y)-333(tak)56(\\241)-333(no)28(win\\246!)]TJ 0 -13.55 Td[(W)84(rac)-1(al)1(i)-333(do)-333(w)-1(si,)-333(Mateusz)-334(si\\246)-334(kr)1(z)-1(y)1(w)-1(i)1(\\252)-334(i)-333(jak)28(o\\261)-333(b)-28(ole\\261nie)-334(i)-333(ci\\246\\273)-1(k)28(o)-333(wz)-1(d)1(yc)27(h)1(a\\252.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(\\246,)-333(c)-1(o)-333(c)-1(i)-333(mark)28(otn)1(o)-334(i)-333(\\273al)-333({)-334(wtr)1(\\241c)-1(i\\252)-333(os)-1(t)1(ro\\273)-1(n)1(ie)-334(An)28(t)1(e)-1(k.)]TJ 0 -13.549 Td[({)-430(Z)-1(a\\261b)28(ym)-430(ta)-431(\\273a\\252o)27(w)28(a\\252,)-430(ju\\273)-430(m)-1(i)-430(k)28(o\\261c)-1(i\\241)-430(w)-431(gard)1(le)-431(stan\\246\\252a.)-431(Co)-430(insz)-1(ego)-430(m)-1(n)1(ie)]TJ -27.879 -13.549 Td[(trap)1(i.)]TJ 27.879 -13.549 Td[(An)28(tek)-333(s)-1(i)1(\\246)-334(z)-1(d)1(umia\\252,)-333(ale)-334(n)1(ijak)28(o\\261)-333(b)28(y\\252o)-333(s)-1(i\\246)-333(roz)-1(p)29(yt)28(yw)27(a\\242.)]TJ 0 -13.55 Td[({)-230(Cz)-1(asu)-230(b)28(y)-230(ni)1(e)-231(c)27(h)29(w)27(aci\\252o,)-230(\\273)-1(eb)28(ym)-230(m)-1(i)1(a\\252)-231(k)56(a\\273dej)-230(\\273)-1(a\\252o)28(w)27(a\\242!)-230(Wp)1(ad\\252a)-230(m)-1(i)-230(w)-230(pazur)1(y)83(,)]TJ -27.879 -13.549 Td[(to)-365(i)-365(wzionem,)-365(k)56(a\\273)-1(d)1(y)-365(b)28(y)-365(zrob)1(i\\252)-365(to)-365(sam)-1(o!)-364(Nie)-366(b)-27(\\363)-55(j)-365(si\\246)-1(,)-364(u\\273y\\252e)-1(m)-365(jak)-364(pies)-365(w)-366(stu)1(dni)1(,)]TJ\nET\nendstream\nendobj\n2332 0 obj <<\n/Type /Page\n/Contents 2333 0 R\n/Resources 2331 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2331 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2336 0 obj <<\n/Length 8850      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(732)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(47.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(o)-441(c)-1(om)-441(s)-1(i)1(\\246)-442(m)27(u)1(s)-1(i)1(a\\252)-442(n)1(as)-1(\\252u)1(c)27(h)1(a\\242)-442(b)-27(e)-1(k)28(\\363)28(w)-441(i)-441(wyrze)-1(k)56(a\\253,)-440(to)-441(s)-1(tar)1(c)-1(zy\\252ob)28(y)-441(la)-441(d)1(z)-1(i)1(e)-1(si\\246)-1(ciu)1(.)]TJ 0 -13.549 Td[(Ucie)-1(k)56(a\\252em)-1(,)-452(to)-452(kieb)28(y)-452(cie)-1(\\253)-451(s)-1(z\\252a)-453(za)-452(m)-1(n)1(\\241.)-452(Nie)-1(c)28(h\\273e)-453(i)-452(Jasie)-1(k)-452(si\\246)-453(n)1(i\\241)-452(nacie)-1(szy)83(.)-452(Nie)]TJ 0 -13.549 Td[(k)28(o)-28(c)28(hani)1(e)-334(mi)-334(w)-333(g\\252o)28(w)-1(i)1(e)-1(,)-333(a)-333(jeno)-333(c)-1(a\\252ki)1(e)-1(m)-334(co)-333(dru)1(giego.)]TJ 27.879 -13.549 Td[({)-333(P)28(e)-1(wn)1(ie)-1(,)-333(\\273e)-334(p)-27(ora)-333(b)28(y)-333(c)-1(i)-333(si\\246)-334(\\273e)-1(n)1(i\\242.)]TJ 0 -13.549 Td[({)-333(W\\252a\\261)-1(n)1(ie)-334(i)-333(Nastk)56(a)-334(m\\363)28(w)-1(i)1(\\252)-1(a)-333(mi)-333(to)-334(samo.)]TJ 0 -13.55 Td[({)-333(Dz)-1(i)1(e)-1(u)1(c)27(h)-333(w)28(e)-334(ws)-1(i)-333(jak)-333(maku)1(,)-334(n)1(ietru)1(dno)-333(wyb)1(ra\\242)-1(.)]TJ 0 -13.549 Td[({)-224(Ju\\273)-225(mam)-225(z)-225(d)1(a)27(wien)-224(da)28(wna)-224(c)-1(osik)-224(up)1(atrzonego)-225({)-224(wyrw)28(a\\252o)-225(m)28(u)-224(s)-1(i\\246)-225(b)-27(ez)-1(w)28(olni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(me)-334(p)1(ro\\261)-334(w)-333(dziew)27(os\\252\\246)-1(b)28(y)-333(i)-333(spra)28(wia)-55(j)-333(w)27(es)-1(ele)-334(c)28(ho)-28(\\242b)28(y)-333(zaraz)-334(p)-27(o)-334(\\273ni)1(w)27(ac)27(h)1(.)]TJ 0 -13.549 Td[(Nie)-435(p)-28(osz\\252)-1(o)-435(m)28(u)-435(to)-435(w)-435(sm)-1(ak,)-434(b)-28(o)-435(skrzywi\\252)-435(s)-1(i)1(\\246)-436(i)-435(zagada\\252)-435(zno)28(wu)-435(o)-435(Ja\\261ku,)-435(a)]TJ -27.879 -13.549 Td[(wywiedzia)28(w)-1(sz)-1(y)-381(si\\246)-382(ws)-1(zystkiego,)-382(j)1(\\241\\252)-382(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\242)-382(o)-381(Szymk)28(o)27(w)28(e)-1(j)-381(gosp)-27(o)-28(dar)1(c)-1(e)-382(wy-)]TJ 0 -13.549 Td[(zna)-56(j)1(\\241c)-391(pr)1(z)-1(y)-390(t)28(ym)-391(ni)1(b)28(y)-390(to)-391(n)1(ie)-1(c)28(hc\\241c)-1(y)84(,)-391(\\273e)-391(J\\246drzyc)27(h)-390(m\\363)28(wi\\252)-391(Nastusi)-391(p)-27(o)-28(d)-390(se)-1(kr)1(e)-1(tem,)]TJ 0 -13.55 Td[(jak)28(o)-333(Domin)1(ik)28(o)28(w)27(a)-333(m)-1(a)-333(p)-27(o)-28(da\\242)-333(do)-333(s)-1(\\241d)1(u)-333(o)-334(gr)1(un)28(t)-333(Jagu)1(s)-1(i)-333(p)-27(o)-334(M)1(ac)-1(i)1(e)-1(j)1(u.)]TJ 27.879 -13.549 Td[({)-315(Ocie)-1(c)-315(z)-1(ap)1(isali,)-315(to)-315(j)1(e)-1(j)-314(nikt)1(o)-316(n)1(ie)-315(z)-1(ap)1(ie)-1(r)1(a,)-315(ju)1(\\261)-1(ci,)-315(\\273e)-316(sam)-1(ej)-315(ziem)-1(i)-315(n)1(ie)-316(o)-27(dd)1(am)-1(,)]TJ -27.879 -13.549 Td[(ale)-334(\\261wi\\246c)-1(ie)-333(z)-1(ap)1(\\252)-1(ac\\246,)-334(co)-333(w)27(art)1(a!)-334(K)1(\\252\\363tnica)-333(c)27(hce)-334(si\\246)-334(j)1(e)-1(j)-333(p)1(ro)-28(ce)-1(s\\363)28(w)-1(!)]TJ 27.879 -13.549 Td[({)-333(Pra)28(wda)-333(to,)-333(\\273e)-334(Jagusia)-333(z)-1(ap)1(is)-334(o)-28(d)1(da\\252a)-333(Hance)-1(?)-333({)-333(p)28(yta\\252)-333(os)-1(tr)1(o\\273)-1(n)1(ie)-1(.)]TJ 0 -13.549 Td[({)-333(C)-1(\\363\\273)-333(z)-334(tego,)-334(k)1(ie)-1(j)-332(nie)-334(o)-27(dpi)1(s)-1(a\\252a)-333(s)-1(i)1(\\246)-334(u)-333(rejen)28(ta.)]TJ 0 -13.55 Td[(Mateusz)-313(j)1(ak)28(o\\261)-313(p)-27(o)27(w)28(es)-1(ela\\252)-313(i)-312(n)1(ie)-313(mog\\241c)-313(si\\246)-313(j)1(u\\273)-313(p)-27(o)28(ws)-1(tr)1(z)-1(yma\\242)-313(zatr\\241ca\\252)-313(w)-312(roz-)]TJ -27.879 -13.549 Td[(mo)27(wie)-333(raz)-334(p)-27(o)-333(raz)-334(o)-333(Jagusi\\246,)-334(sielni)1(e)-334(j\\241)-333(sobie)-334(c)28(h)28(w)28(al\\241c)-1(.)]TJ 27.879 -13.549 Td[(An)28(tek)-333(p)-28(omiar)1(k)28(o)27(w)28(a)28(ws)-1(zy)83(,)-333(o)-333(c)-1(o)-333(m)27(u)-333(i)1(dzie)-1(,)-333(r)1(z)-1(ek\\252)-333(s)-1(zydl)1(iwie)-1(:)]TJ 0 -13.549 Td[({)-333(S\\252ysz)-1(a\\252e\\261)-1(,)-333(co)-334(t)1(o)-334(zno)28(wu)-333(o)-334(n)1(iej)-333(wygadu)1(j\\241?)]TJ 0 -13.549 Td[({)-333(B)-1(ab)29(y)-334(za)28(wdy)-333(\\252atki)-333(jej)-333(pr)1(z)-1(y)1(pin)1(a\\252y)83(.)]TJ 0 -13.55 Td[({)-333(Za)-334(Jasiem)-334(organ)1(ist\\363)27(w)-333(lata)-333(p)-28(on)1(o)-333(kiej)-333(s)-1(u)1(k)55(a)-333({)-333(do)-28(d)1(a\\252)-334(z)-333(roz)-1(m)28(ys\\252e)-1(m.)]TJ 0 -13.549 Td[({)-333(Wid)1(z)-1(ia\\252e\\261)-334(to?)-333({)-334(r)1(oz)-1(cz)-1(erwieni\\252)-333(s)-1(i)1(\\246)-334(z)-334(gni)1(e)-1(wu.)]TJ 0 -13.549 Td[({)-360(Na)-360(pr)1(z)-1(e\\261)-1(p)1(ie)-1(gi)-359(z)-1(a)-360(ni)1(\\241)-361(n)1(ie)-360(c)27(ho)-27(dz\\246)-1(,)-360(b)-27(o)-360(m)-1(e)-360(ni)-360(p)1(arzy)83(,)-360(n)1(i)-360(z)-1(i)1(\\246)-1(b)1(i,)-360(ale)-360(s)-1(\\241,)-360(kt)1(\\363re)]TJ -27.879 -13.549 Td[(widu)1(j\\241)-333(co)-334(d)1(nia,)-333(j)1(ak)-334(si\\246)-334(sc)27(h)1(o)-28(dzi)-333(w)-334(b)-27(oru)-333(z)-333(Jas)-1(i)1(e)-1(m,)-333(to)-334(p)-27(o)-333(m)-1(i)1(e)-1(d)1(z)-1(ac)27(h)1(...)]TJ 27.879 -13.549 Td[({)-333(Sp)1(ra\\242)-334(j)1(e)-1(d)1(n\\241)-333(i)-333(dru)1(g\\241,)-333(to)-334(b)29(y)-334(wn)1(e)-1(t)-333(pr)1(z)-1(es)-1(t)1(a\\252)-1(y)-333(p)1(lotk)28(o)28(w)27(a\\242.)]TJ 0 -13.55 Td[({)-436(Sp)1(robu)1(j,)-436(mo\\273)-1(e)-436(s)-1(i\\246)-436(wys)-1(tr)1(as)-1(z\\241)-436(i)-437(p)1(rze)-1(stan\\241!)-436({)-436(m\\363)28(w)-1(i)1(\\252)-437(z)-437(w)28(oln)1(a,)-436(z)-1(atar)1(ga\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(m)-389(nag\\252a,)-388(s)-1(tr)1(as)-1(znie)-389(szarpi)1(\\241c)-1(a)-389(zazdro\\261\\242)-389(o)-389(Jagu)1(s)-1(i)1(\\246)-1(,)-388(a)-389(j)1(u\\273)-389(te)-389(m)28(y\\261)-1(l)1(e)-1(,)-388(\\273)-1(e)-389(M)1(ate)-1(u)1(s)-1(z)]TJ 0 -13.549 Td[(mo\\273)-1(e)-334(si\\246)-334(z)-333(ni\\241)-333(o\\273e)-1(ni)1(\\242)-1(,)-333(k)56(\\241s)-1(a\\252y)-333(go)-333(kieb)28(y)-333(rozw\\261)-1(cieklone)-333(psy)83(.)]TJ 27.879 -13.549 Td[(Nie)-297(o)-28(d)1(p)-28(o)28(wiad)1(a\\252)-297(na)-296(jego)-297(z)-1(acze)-1(p)1(ne)-297(i)-297(cz\\246)-1(sto)-297(pr)1(z)-1(y)1(kre)-297(s\\252)-1(o)28(w)28(a,)-297(b)29(yc)27(h)-296(s)-1(i)1(\\246)-298(j)1(e)-1(n)1(o)-297(n)1(ie)]TJ -27.879 -13.549 Td[(wyda\\242)-303(z)-1(e)-303(s)-1(w)28(o)-56(j)1(\\241)-303(m)-1(\\246k)56(\\241,)-303(ale)-303(na)-303(rozs)-1(tan)1(iu)-303(n)1(ie)-304(p)-27(oredzi\\252)-303(si\\246)-304(j)1(u\\273)-303(w)-1(strzyma\\242)-304(i)-303(r)1(z)-1(ek\\252)-303(z)-1(e)]TJ 0 -13.55 Td[(z\\252)-1(y)1(m)-334(pr)1(z)-1(e\\261)-1(miec)27(h)1(e)-1(m)-334(:)]TJ 27.879 -13.549 Td[({)-333(A)-334(k)1(t\\363ren)-333(s)-1(i\\246)-333(z)-334(ni)1(\\241)-334(o\\273e)-1(n)1(i,)-333(s)-1(p)-27(oro)-333(sz)-1(w)28(agr\\363)28(w)-334(mia\\252)-333(b)-28(\\246dzie...)]TJ 0 -13.549 Td[(Roz)-1(esz)-1(li)-333(si\\246)-334(d)1(os)-1(y\\242)-333(oz)-1(i\\246bl)1(e)-1(.)]TJ 0 -13.549 Td[(Mateusz,)-334(o)-27(dsz)-1(ed\\252sz)-1(y)-333(par)1(\\246)-334(kr)1(ok)28(\\363)27(w,)-333(roze)-1(\\261mia\\252)-334(si\\246)-334(cic)27(h)1(o)-333(i)-334(p)-27(om)28(y\\261)-1(l)1(a\\252)-1(:)]TJ 0 -13.549 Td[({)-332(Mu)1(s)-1(i)-332(go)-332(tr)1(z)-1(y)1(m)-1(a\\242)-332(z)-333(d)1(ale)-1(k)56(a,)-332(to)-332(si\\246)-332(na)-332(ni)1(\\241)-332(\\271)-1(li)-331(a)-332(p)28(yskuj)1(e)-1(.)-332(A)-332(n)1(ie)-1(c)28(h)28(ta)-332(se)-333(lata)]TJ -27.879 -13.549 Td[(za)-334(Jasiem)-1(,)-333(tak)1(i)-334(d)1(z)-1(i)1(e)-1(ciuc)28(h.)-333(Barze)-1(j)-333(j)1(\\241)-334(tam)-333(c)-1(i)1(\\241)-28(gnie)-333(ks)-1(i)1(\\241dz)-334(n)1(i\\271)-1(l)1(i)-333(c)27(h\\252op)1(ak.)]TJ 27.879 -13.55 Td[(Roz)-1(m)28(y\\261la\\252)-305(p)-27(ob\\252a\\273liwie,)-305(b)-27(o)-305(wywiedzia)28(ws)-1(zy)-305(si\\246)-305(o)-28(d)-304(An)28(tk)56(a)-305(co)-305(d)1(o)-305(tego)-305(zapisu)]TJ -27.879 -13.549 Td[(p)-27(o)-431(Macieju,)-430(ju)1(\\273)-431(s)-1(tan)1(o)28(w)27(cz)-1(o)-430(um)27(y)1(\\261)-1(li)1(\\252)-431(s)-1(i)1(\\246)-432(z)-431(n)1(i\\241)-431(o\\273e)-1(n)1(i\\242.)-431(Zw)27(ol)1(ni\\252)-430(kroku)-430(i)-430(roz)-1(l)1(ic)-1(za\\252)]TJ 0 -13.549 Td[(se)-353(w)-353(m)28(y\\261)-1(l)1(ac)27(h,)-352(p)-27(o)-352(ile)-353(to)-352(tr)1(z)-1(a)-352(b)28(y)-352(m)27(u)-351(s)-1(p)1(\\252)-1(aca\\242)-353(J\\246dr)1(z)-1(yc)28(ha)-352(i)-352(Szymk)55(a,)-352(b)29(yc)27(h)-352(sam)-1(em)27(u)]TJ 0 -13.549 Td[(osta\\242)-334(na)-333(gosp)-28(o)-28(d)1(arce)-1(,)-333(n)1(a)-334(ca\\252yc)27(h)-333(d)1(wudzies)-1(tu)-332(m)-1(orgac)28(h.)]TJ 27.879 -13.549 Td[({)-333(Star)1(a)-334(p)1(rzykra,)-333(j)1(u\\261c)-1(i,)-333(ale)-333(przec)-1(iek)-333(nie)-333(b)-28(\\246dzie)-334(wiek)28(o)28(w)27(a\\252a.)]TJ 0 -13.55 Td[(Sp)-27(omnia\\252y)-333(m)28(u)-333(s)-1(i)1(\\246)-334(Jagusine)-333(s)-1(p)1(ra)28(wki,)-333(to)-333(go)-334(\\271dziebk)28(o)-333(rozfraso)28(w)27(a\\252o.)]TJ 0 -13.549 Td[({)-453(Co)-453(b)29(y\\252o,)-453(to)-452(nie)-453(j)1(e)-1(st,)-453(a)-452(z)-1(ec)27(hce)-453(s)-1(i)1(\\246)-454(j)1(e)-1(j)-452(n)1(o)27(wyc)28(h)-453(\\014)1(gl\\363)28(w,)-453(to)-453(z)-453(n)1(iej)-453(r)1(yc)27(h)1(\\252)-1(o)]TJ\nET\nendstream\nendobj\n2335 0 obj <<\n/Type /Page\n/Contents 2336 0 R\n/Resources 2334 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2321 0 R\n>> endobj\n2334 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2339 0 obj <<\n/Length 9258      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(733)]TJ -358.232 -35.866 Td[(wytrz\\246s)-1(\\246.)]TJ 27.879 -13.549 Td[(W)-333(op\\252otk)56(ac)27(h)-333(p)1(rze)-1(d)-333(c)28(ha\\252u)1(p\\241)-333(c)-1(ze)-1(k)56(a\\252a)-333(na)-333(niego)-333(m)-1(atk)56(a.)]TJ 0 -13.549 Td[({)-333(Jas)-1(i)1(e)-1(k)-333(wr\\363)-28(ci\\252)-333({)-334(sz)-1(epta\\252a)-333(zatrw)28(o\\273)-1(on)1(a)-334({)-333(ju)1(\\273)-334(m)27(u)-333(o)-333(t)28(ym)-333(p)-28(o)28(wiedzie)-1(l)1(i.)]TJ 0 -13.549 Td[({)-333(T)83(o)-334(i)-333(l)1(e)-1(p)1(ie)-1(j)1(,)-333(nie)-334(b)-27(\\246dzie)-334(p)-27(otrza)-334(si\\246)-334(o)-27(c)-1(ygan)1(ia\\242.)]TJ 0 -13.549 Td[({)-333(T)83(e)-1(r)1(e)-1(sk)56(a)-334(p)1(rzylat)28(yw)28(a\\252)-1(a)-333(j)1(u\\273)-334(p)1(ar\\246)-334(r)1(az)-1(y)84(,)-333(groz)-1(i)1(,)-333(\\273)-1(e)-334(si\\246)-334(u)1(topi.)1(..)-333(\\273)-1(e)-333(nie...)]TJ 0 -13.55 Td[({)-436(P)28(e)-1(wni)1(e)-1(,)-436(co)-437(goto)28(w)27(a)-436(to)-436(z)-1(rob)1(i\\242,)-437(p)-27(ew)-1(n)1(ie)-437({)-436(s)-1(ze)-1(p)1(n\\241\\252)-436(w)-1(y)1(s)-1(traszon)28(y)-436(i)-437(tak)-436(si\\246)]TJ -27.879 -13.549 Td[(t)28(ym)-404(sro)-27(dz)-1(e)-403(z)-1(amart)28(wi\\252,)-403(\\273)-1(e)-403(z)-1(asiad\\252sz)-1(y)-403(w)-403(progu)-402(do)-403(k)28(olac)-1(j)1(i)-403(nie)-403(m)-1(\\363g\\252)-403(je\\261)-1(\\242,)-403(a)-404(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(nad)1(s)-1(\\252u)1(c)27(h)1(iw)27(a\\252)-277(o)-28(d)-277(Ja\\261k)28(o)27(w)28(ego)-278(sadu)1(,)-278(\\273e)-278(to)-277(s)-1(i)1(e)-1(d)1(z)-1(ieli)-277(t)28(ylk)28(o)-277(pr)1(z)-1(ez)-278(mie)-1(d)1(z)-1(\\246.)-277(Przejmo)27(w)28(a\\252)]TJ 0 -13.549 Td[(go)-299(c)-1(or)1(az)-300(wi\\246ks)-1(zy)-299(ni)1(e)-1(sp)-28(ok)28(\\363)-55(j,)-299(o)-27(dsun\\241\\252)-299(misk)28(\\246)-300(i)-299(ku)1(rz\\241c)-300(pap)1(ierosa)-300(za)-299(pap)1(ie)-1(r)1(os)-1(em)-300(n)1(a)]TJ 0 -13.549 Td[(dar)1(m)-1(o)-311(bar)1(o)27(w)28(a\\252)-312(si\\246)-312(z)-312(d)1(ygotem)-312(trw)28(ogi,)-311(na)-311(dar)1(m)-1(o)-311(kl\\241\\252)-311(s)-1(iebi)1(e)-312(i)-312(wsz)-1(y)1(s)-1(tki)1(e)-312(k)28(obiet)28(y)-311(i)]TJ 0 -13.549 Td[(na)-266(darmo)-267(c)28(hcia\\252)-267(c)-1(a\\252\\241)-267(spr)1(a)28(w)27(\\246)-267(obr)1(\\363)-28(c)-1(i)1(\\242)-268(w)-267(p)1(rze)-1(kp)1(ink)1(i,)-267(b)-27(o)-267(strac)27(h)-266(o)-267(T)83(eres)-1(k)28(\\246)-267(rozrasta\\252)]TJ 0 -13.55 Td[(si\\246)-466(w)-466(n)1(im)-466(coraz)-466(b)1(arze)-1(j)-465(i)-465(dr)1(\\246)-1(cz)-1(y)1(\\252)-466(ju)1(\\273)-466(n)1(ie)-466(do)-465(wytrzymania.)-465(Ju)1(\\273)-466(par)1(\\246)-466(razy)-465(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-1(,)-358(ab)28(y)-358(i\\261)-1(\\242)-359(k)56(a)-56(j)1(\\261)-359(na)-359(wie\\261)-359(m)-1(i)1(\\246)-1(d)1(z)-1(y)-358(lud)1(z)-1(i)1(,)-359(ale)-359(osta)28(w)27(a\\252)-359(wycz)-1(eku)1(j\\241c)-359(ni)1(e)-360(wiad)1(a)]TJ 0 -13.549 Td[(na)-333(co.)]TJ 27.879 -13.549 Td[(No)-28(c)-386(si\\246)-386(ju)1(\\273)-386(z)-1(r)1(obi\\252a,)-385(gdy)-385(nar)1(az)-386(p)-28(os\\252ysz)-1(a\\252,)-385(jaki)1(e)-1(\\261)-386(kr)1(oki,)-385(a)-386(n)1(im)-386(roze)-1(zna\\252,)-385(z)]TJ -27.879 -13.549 Td[(kt\\363r)1(e)-1(j)-333(stron)28(y)-333(n)1(adc)28(ho)-28(d)1(z)-1(\\241,)-333(j)1(u\\273)-334(T)83(eres)-1(k)56(a)-333(w)-1(i)1(s)-1(ia\\252a)-333(m)27(u)-332(na)-333(s)-1(zyi.)]TJ 27.879 -13.55 Td[({)-333(Ratuj)1(,)-334(M)1(ate)-1(u)1(s)-1(z!)-333(Je)-1(zu,)-333(tak)-333(cz)-1(ek)56(a\\252am)-334(na)-333(ci\\246)-1(,)-333(tak)-333(wygl\\241d)1(a\\252am)-1(.)]TJ 0 -13.549 Td[(Usadzi\\252)-350(j\\241)-350(p)-28(ob)-27(ok,)-350(l)1(e)-1(cz)-351(cis)-1(n)1(\\246)-1(\\252a)-350(m)28(u)-350(si\\246)-351(d)1(o)-351(p)1(iersi)-350(kiej)-350(dziec)-1(i\\241t)1(k)28(o)-351(i)-350(p)1(rze)-1(z)-350(\\252z)-1(y)]TJ -27.879 -13.549 Td[(lej\\241ce)-334(si\\246)-334(ciurk)1(ie)-1(m,)-333(pr)1(z)-1(ez)-334(m\\246)-1(k)28(\\246)-333(i)-334(r)1(oz)-1(p)1(ac)-1(z)-333(s)-1(ze)-1(p)1(ta\\252a:)]TJ 27.879 -13.549 Td[({)-404(P)28(o)28(wiedzia\\252y)-404(m)28(u)-404(o)-403(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(!)-403(\\221mierci)-404(b)28(ym)-404(si\\246)-404(b)28(y\\252a)-404(p)1(r\\246dze)-1(j)-403(s)-1(p)-27(o)-28(d)1(z)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(\\271)-1(li)-350(jego)-351(p)-27(o)28(w)-1(r)1(otu.)-350(By\\252am)-351(u)-351(k)1(s)-1(i\\246\\273e)-1(go)-351(l)1(n)28(u.)1(..)-351(p)1(rzylatu)1(je)-351(kt\\363r)1(a\\261)-352(i)-350(p)-27(o)27(wiad)1(a...)-350(dziw)]TJ 0 -13.55 Td[(tru)1(p)-27(e)-1(m)-410(n)1(ie)-410(pad)1(\\252)-1(am..)1(.)-410(sz)-1(\\252am)-410(j)1(ak)-410(n)1(a)-410(\\261)-1(mier\\242...)-409(nie)-410(b)29(y\\252o)-410(ci\\246)-410(doma...)-409(p)-27(os)-1(z\\252)-1(am)-409(c)-1(i\\246)]TJ 0 -13.549 Td[(sz)-1(u)1(k)55(a\\242...)-367(nie)-368(b)28(y\\252o)-368(ci\\246)-369(w)28(e)-368(w)-1(si..)1(.)-368(k)28(o\\252o)27(w)28(a\\252am)-368(z)-369(go)-28(d)1(z)-1(i)1(n\\246,)-368(ale)-368(m)27(u)1(s)-1(ia\\252am)-368(i\\261\\242)-1(..)1(.)-368(w)27(c)28(ho-)]TJ 0 -13.549 Td[(dz\\246)-449(do)-448(c)27(h)1(a\\252up)28(y)84(...)-448(a)-449(on)-448(stoi)-448(na)-449(\\261ro)-27(dku)-448(b)1(lady)-448(kiej)-448(\\261)-1(cian)1(a...)-448(s)-1(k)28(o)-28(cz)-1(y)1(\\252)-449(do)-448(mnie)-449(z)]TJ 0 -13.549 Td[(pi)1(\\246)-1(\\261c)-1(i)1(am)-1(i.)1(..o)-333(pra)28(wd\\246)-333(p)28(yta..)1(.)-333(o)-334(p)1(ra)28(wd\\246...)]TJ 27.879 -13.549 Td[(Mateusz)-334(j)1(a\\273)-1(e)-334(si\\246)-334(zatrz\\241s)-1(\\252)-333(i)-333(ob)-27(c)-1(iera\\252)-333(z)-334(t)28(w)27(ar)1(z)-1(y)-333(zimn)28(y)83(,)-333(lo)-27(do)28(w)27(at)28(y)-333(p)-27(ot.)]TJ 0 -13.55 Td[({)-329(Wyzna\\252am)-329(s)-1(i)1(\\246)-330(pr)1(z)-1(ed)-329(n)1(im...)-329(n)1(a)-330(n)1(ic)-329(ju)1(\\273)-330(b)28(y)-329(si\\246)-329(z)-1(d)1(a\\252)-1(y)-328(c)-1(yga\\253)1(s)-1(t)28(w)28(a...)-329(T)83(op)-27(ora)]TJ -27.879 -13.549 Td[(c)27(h)29(yc)-1(i)1(\\252)-346(na)-345(m)-1(n)1(ie...)-345(m)27(y\\261la\\252am,)-346(\\273e)-346(j)1(u\\273)-346(k)28(oni)1(e)-1(c,)-346(i)-345(p)1(ie)-1(r)1(w)-1(sza)-346(m)27(u)-345(r)1(z)-1(ek\\252am:)-346(\\377)-55(Zabij)1(!)-346(u)1(l\\273y)]TJ 0 -13.549 Td[(nam)-369(ob)-27(o)-55(jgu!)1(\")-369(Ale)-369(me)-369(nie)-369(tkn)1(\\241\\252)-369(n)1(a)27(w)28(e)-1(t)-368(pal)1(c)-1(em)-1(!)-368(Je)-1(n)1(o)-369(p)-27(opatr)1(z)-1(y)1(\\252)-369(w)27(e)-369(mni)1(e)-1(,)-368(przy-)]TJ 0 -13.549 Td[(siad\\252)-394(p)-28(o)-27(d)-394(oknem)-395(i)-394(zap\\252ak)56(a\\252!...)-394(Jez)-1(u)-394(mi\\252o\\261c)-1(iwy)84(,)-394(\\273)-1(eb)28(y)-394(me)-395(c)27(ho)-27(c)-1(ia\\273)-394(s)-1(p)1(ra\\252,)-394(s)-1(k)28(op)1(a\\252,)]TJ 0 -13.549 Td[(sp)-28(on)1(ie)-1(wiera\\252,)-408(l)1(\\273)-1(ej)-408(b)29(y)-408(mi)-408(b)28(y\\252o,)-408(l)1(\\273)-1(ej,)-407(a)-408(on)-408(siedzi)-408(i)-408(p)1(\\252)-1(acze)-1(!)-408(I)-408(c\\363\\273)-408(ja)-408(teraz)-408(p)-27(o)-28(c)-1(zn\\246)]TJ 0 -13.55 Td[(ni)1(e)-1(sz)-1(cz)-1(\\246sna,)-391(c)-1(o?)-392(k)56(a)-55(j)-392(si\\246)-392(p)-27(o)-28(dziej\\246!)-392(Ratu)1(j)-391(m)-1(e,)-392(b)-27(o)-392(si\\246)-392(r)1(z)-1(u)1(c)-1(\\246)-392(do)-391(s)-1(t)1(udn)1(i)-392(al)1(b)-28(o)-391(s)-1(e)-392(co)]TJ 0 -13.549 Td[(z\\252)-1(ego)-333(z)-1(r)1(obi\\246,)-333(ratuj)1(!)-333({)-334(wr)1(z)-1(asn\\246\\252a)-334(p)1(ada)-55(j\\241c)-334(m)28(u)-333(do)-333(n\\363g.)]TJ 27.879 -13.549 Td[({)-333(C)-1(\\363\\273)-333(ja)-333(c)-1(i)-333(p)-27(oredz\\246)-1(,)-333(sie)-1(r)1(oto,)-333(c)-1(o?)-333({)-334(j)1(\\241k)56(a\\252)-334(b)-27(e)-1(zrad)1(nie.)]TJ 0 -13.549 Td[(Ze)-1(r)1(w)27(a\\252a)-333(s)-1(i)1(\\246)-334(nagle)-333(z)-334(dziki)1(m)-334(w)27(ar)1(k)28(ote)-1(m)-333(gniewnego)-334(sz)-1(al)1(e)-1(\\253)1(s)-1(t)28(w)28(a.)]TJ 0 -13.549 Td[({)-331(T)83(o)-331(p)-27(o)-331(c)-1(o\\261)-331(m)-1(e)-331(br)1(a\\252?)-332(p)-27(o)-331(c)-1(o\\261)-331(me)-332(stumani\\252?)-331(p)-27(o)-331(c)-1(o\\261)-331(m)-1(e)-331(pr)1(z)-1(ywi\\363)-27(d\\252)-331(do)-331(gr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(c)27(h)29(u?)]TJ 27.879 -13.55 Td[({)-333(C)-1(a\\252a)-333(wie\\261)-334(tu)-333(si\\246)-334(z)-1(l)1(e)-1(ci,)-333(c)-1(i)1(c)27(ho)-55(j!)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(pad\\252a)-440(m)27(u)-439(z)-1(n)1(o)27(wu)-440(d)1(o)-441(p)1(iers)-1(i)1(,)-440(ob)-56(j)1(\\246)-1(\\252a)-440(s)-1(ob)1(\\241)-440(i)-440(p)-28(okr)1(yw)27(a)-55(j\\241c)-440(p)-28(o)-28(ca\\252un)1(k)56(am)-1(i)]TJ -27.879 -13.549 Td[(zas)-1(k)56(amla\\252a)-334(ca\\252\\241)-334(mo)-28(c\\241)-334(strac)28(h)28(u,)-333(mi\\252o)28(w)27(an)1(ia)-333(i)-333(roz)-1(p)1(ac)-1(zy:)]TJ 27.879 -13.549 Td[({)-399(O)-398(m\\363)-56(j)-398(j)1(e)-1(d)1(yn)28(y)84(,)-399(o)-398(m)-1(\\363)-55(j)-398(w)-1(y)1(bran)29(y)-399(z)-399(t)28(ysi\\241ca,)-399(zabi)1(j)-398(m)-1(e,)-399(a)-398(ni)1(e)-399(o)-28(dp)-27(\\246)-1(d)1(z)-1(a)-55(j)-398(o)-28(d)]TJ -27.879 -13.549 Td[(sie)-1(b)1(ie!)-265(Mi\\252u)1(jes)-1(z)-265(to)-265(m)-1(e,)-265(co?)-265(Mi\\252uj)1(e)-1(sz)-1(?)-265(Dy)1(\\242)-266(me)-266(u)1(tul)-264(te)-1(n)-264(os)-1(tatn)1(i)-265(razik,)-264(dy\\242)-265(m)-1(e)-265(w)27(e\\271,)]TJ 0 -13.55 Td[(ogarn)1(ij)-361(s)-1(ob)1(\\241)-362(i)-361(n)1(ie)-362(da)-55(j)-361(na)-361(m)-1(\\246k)28(\\246,)-362(n)1(ie)-362(d)1(a)-56(j)-361(p\\252ak)56(ani)1(a,)-362(n)1(ie)-362(d)1(a)-56(j)-361(zatrace)-1(n)1(ia!)-361(Je)-1(d)1(ynego)]TJ 0 -13.549 Td[(ci\\246)-306(mam)-306(n)1(a)-306(wsz)-1(y\\242kim)-305(\\261)-1(wiec)-1(i)1(e)-1(,)-305(j)1(e)-1(d)1(ynego...)-305(Ino)-305(me)-306(osta)28(w)-306(p)1(rz)-1(y)-305(sobi)1(e)-1(,)-305(a)-305(s)-1(\\252u)1(\\273)-1(y\\252a)-305(ci)]TJ\nET\nendstream\nendobj\n2338 0 obj <<\n/Type /Page\n/Contents 2339 0 R\n/Resources 2337 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2337 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2343 0 obj <<\n/Length 9673      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(734)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(47.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(b)-27(\\246)-1(d)1(\\246)-334(z)-1(a)-333(tego)-334(p)1(s)-1(a)-333(wiernego,)-333(z)-1(a)-333(t\\246)-334(ostatn)1(i\\241)-334(d)1(z)-1(i)1(e)-1(wk)28(\\246!)]TJ 27.879 -13.549 Td[(J\\246c)-1(za\\252a)-334(r)1(z)-1(ewliwymi)-333(s)-1(\\252o)28(w)-1(y)84(,)-333(rw)28(an)28(ymi)-333(z)-1(e)-333(s)-1(ame)-1(go)-333(dn)1(a)-333(udr)1(\\246)-1(cz)-1(on)1(e)-1(j)-333(d)1(usz)-1(y)84(.)]TJ 0 -13.549 Td[(A)-296(Mateusz)-297(w)-1(i)1(\\252)-297(s)-1(i)1(\\246)-297(jakb)29(y)-297(w)-296(kles)-1(zc)-1(zac)27(h)-296(i)-296(jak)-296(m\\363g\\252)-1(,)-296(wykr)1(\\246)-1(ca\\252)-297(si\\246)-297(o)-28(d)-296(stano)28(w-)]TJ -27.879 -13.549 Td[(cz)-1(ej)-300(o)-28(d)1(p)-27(o)27(wiedzi)-300(zb)28(yw)28(a)-56(j)1(\\241c)-301(j)1(\\241)-300(c)-1(a\\252u)1(nk)56(ami)-300(a)-300(pr)1(z)-1(y)1(g\\252)-1(ask)56(aniem)-300(i)-300(pr)1(z)-1(y)1(takuj)1(\\241c)-301(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(kiem)27(u)1(,)-304(co)-304(jeno)-303(c)27(hcia\\252a,)-304(r)1(oz)-1(gl\\241d)1(a\\252)-304(s)-1(i)1(\\246)-305(tr)1(w)27(o\\273ni)1(e)-1(j)-303(i)-304(ni)1(e)-1(cierpl)1(iwie)-1(j)1(,)-304(gd)1(y\\273)-305(m)28(u)-303(s)-1(i\\246)-304(u)28(wi-)]TJ 0 -13.55 Td[(dzia\\252o,)-333(\\273e)-334(Jas)-1(i)1(e)-1(k)-333(sie)-1(d)1(z)-1(i)-333(n)1(a)-334(p)1(rze)-1(\\252azie)-1(.)]TJ 27.879 -13.549 Td[(Ale)-286(w)-287(jak)1(ie)-1(j)1(\\261)-287(min)28(u)1(c)-1(ie)-286(T)83(e)-1(r)1(e)-1(sk)56(a)-287(p)1(rze)-1(j)1(rz)-1(a)28(wsz)-1(y)-286(pr)1(a)28(w)-1(d)1(\\246)-287(do)-286(d)1(na)-286(o)-28(dep)-27(c)27(hn)1(\\241\\252a)-287(go)]TJ -27.879 -13.549 Td[(o)-28(d)-333(siebie)-333(i)-334(zakr)1(z)-1(ycz)-1(a\\252a,)-333(b)1(ij\\241c)-334(s\\252o)28(w)27(ami)-333(kieb)28(y)-333(bi)1(c)-1(ze)-1(m:)]TJ 27.879 -13.549 Td[({)-373(Cygan)1(is)-1(z)-373(jak)-372(pies!)-373(Za)28(w)-1(d)1(y\\261)-373(m)-1(e)-373(o)-28(cygani)1(a\\252)-1(!)-372(Ju\\273)-373(me)-374(teraz)-373(ni)1(e)-374(zwie)-1(d)1(z)-1(i)1(e)-1(sz)-1(!)]TJ -27.879 -13.549 Td[(St)1(rac)27(h)-366(ci)-366(Ja\\261)-1(k)28(o)28(w)28(e)-1(go)-366(kij)1(a,)-367(t)1(o)-367(si\\246)-367(wijesz)-367(kiej)-366(ta)-367(p)1(rzydept)1(ana)-366(glista!)-367(A)-366(j)1(a)-367(m)28(u)-366(z)-1(a-)]TJ 0 -13.549 Td[(wierz)-1(y)1(\\252am)-279(j)1(ak)-278(k)28(om)27(u)-277(na)-55(jlepsze)-1(m)28(u!)-278(M)1(\\363)-56(j)-278(Bo\\273e)-1(,)-277(m)-1(\\363)-55(j)-278(Bo\\273)-1(e!)-278(A)-278(Jasiek)-278(taki)-277(p)-28(o)-28(czc)-1(iwy)84(,)]TJ 0 -13.55 Td[(na)28(wi\\363z\\252)-407(mi)-406(p)-27(o)-28(d)1(arun)1(k)28(\\363)27(w,)-406(n)1(igdy)-406(mi)-406(n)1(ie)-407(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ia\\252)-406(marn)1(e)-1(go)-406(s)-1(\\252o)28(w)28(a)-406(i)-406(ja)-406(m)27(u)-405(tak)]TJ 0 -13.549 Td[(o)-28(d)1(p\\252aci\\252am)-1(.)-442(I)-443(taki)1(e)-1(m)28(u)-443(p)1(rze)-1(n)1(ie)-1(wiercy)-443(za)28(w)-1(i)1(e)-1(rzy\\252am,)-443(tak)1(ie)-1(m)28(u)-442(z)-1(b)-27(\\363)-56(j)1(o)27(wi!)-442(takiem)27(u)]TJ 0 -13.549 Td[(psu!)-303(Id\\271)-304(se)-305(za)-304(Jagu)1(s)-1(i\\241!)-303({)-304(za)27(wr)1(z)-1(es)-1(zc)-1(za\\252a)-304(pr)1(z)-1(ysk)56(akuj)1(\\241c)-304(do)-304(n)1(iego)-304(z)-304(pi\\246\\261)-1(ciami)-304({)-304(i)1(d\\271,)]TJ 0 -13.549 Td[(i)-333(ni)1(e)-1(c)27(h)-332(w)27(as)-334(p)-27(o\\273e)-1(n)1(i)-334(h)29(yc)-1(el,)-333(pasuj)1(e)-1(t)1(a)-334(d)1(o)-334(siebie,)-333(laku)1(dra)-333(i)-333(z)-1(\\252o)-27(dzie)-1(j)1(.)]TJ 27.879 -13.549 Td[(P)28(ad)1(\\252a)-334(n)1(a)-334(ziem)-1(i)1(\\246)-334(z)-1(an)1(os)-1(z\\241c)-334(si\\246)-334(strasz)-1(n)28(y)1(m)-1(,)-333(ob)1(\\252)-1(\\241k)56(an)28(y)1(m)-334(p\\252acz)-1(em.)]TJ 0 -13.55 Td[(Mateusz)-426(sta\\252)-425(nad)-425(n)1(i\\241,)-425(n)1(ie)-426(wiedz\\241c)-1(,)-425(co)-425(p)-28(o)-27(c)-1(z\\241\\242)-1(,)-425(matk)56(a)-425(c)27(hl)1(ipa\\252a)-425(k)56(a)-56(j)1(\\261)-426(p)-27(o)-28(d)]TJ -27.879 -13.549 Td[(\\261c)-1(ian)1(\\241,)-498(gd)1(y)-498(wysze)-1(d)1(\\252)-498(z)-1(e)-498(sadu)-497(Jasiek)-498(i)-497(pr)1(z)-1(yst\\241)-28(p)1(iws)-1(zy)-498(d)1(o)-498(\\273on)28(y)-497(j\\241\\252)-498(j)1(e)-1(j)-497(sz)-1(epta\\242)]TJ 0 -13.549 Td[(tkl)1(iw)27(e,)-333(pr)1(z)-1(es)-1(i\\241k)1(\\252)-1(e)-333(\\252z)-1(ami,)-333(a)-333(p)-28(e\\252ne)-334(d)1(obr)1(o\\261)-1(ci)-333(s)-1(\\252o)28(w)27(a:)]TJ 27.879 -13.549 Td[({)-353(C)-1(h)1(o)-28(d)1(\\271)-354(do)-353(dom,)-353(c)27(h)1(o)-28(d\\271,)-353(s)-1(ieroto.)-353(Ni)1(e)-354(b)-28(\\363)-55(j)-353(s)-1(i)1(\\246)-1(,)-353(n)1(ie)-354(uk)1(rzywdz\\246)-354(c)-1(i)1(\\246)-1(,)-353(mas)-1(z)-354(t)28(y)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(d)1(os)-1(y\\242)-333(z)-1(a)-333(s)-1(w)28(o)-56(j)1(e)-1(,)-333(c)27(h)1(o)-28(d)1(\\271)-1(,)-333(\\273ono...)]TJ 27.879 -13.55 Td[(Wzi\\241\\252)-333(j\\241)-333(na)-333(r\\246c)-1(e)-334(i)-333(p)1(rze)-1(n)1(i\\363s)-1(\\252sz)-1(y)-333(n)1(a)-334(p)1(rze)-1(\\252az)-334(k)1(rz)-1(y)1(kn\\241\\252)-333(do)-333(Mateusz)-1(a:)]TJ 0 -13.549 Td[({)-332(P)28(\\363kim)-332(\\273yw)-1(,)-331(to)-333(ci)-332(jej)-332(kr)1(z)-1(y)1(w)-1(d)1(y)-332(nie)-332(dar)1(uj\\246,)-332(tak)-332(mi)-332(dop)-27(om\\363\\273)-1(,)-332(P)28(an)1(ie)-333(Bo\\273e)-1(!)]TJ 0 -13.549 Td[(Mateusz)-305(m)-1(i)1(lc)-1(za\\252,)-305(d)1(usi\\252)-305(go)-305(wst)27(y)1(d)-305(i)-304(z)-1(al)1(e)-1(w)28(a\\252)-305(m)27(u)-304(s)-1(erce)-305(tak)56(\\241)-305(gorzk)28(o\\261)-1(ci\\241)-305(i)-304(tak)55(\\241)]TJ -27.879 -13.549 Td[(do)-55(jm)28(uj)1(\\241c)-1(\\241)-333(ud)1(r\\246k)55(\\241,)-333(\\273e)-334(p)-27(oni\\363s\\252)-334(si\\246)-334(d)1(o)-333(k)55(ar)1(c)-1(zm)27(y)-333(i)-333(pi)1(\\252)-334(p)1(rz)-1(ez)-334(ca\\252\\241)-334(n)1(o)-28(c.)]TJ 27.879 -13.549 Td[(Ca\\252a)-359(h)1(istoria)-358(migiem)-359(si\\246)-359(r)1(oz)-1(n)1(ie)-1(s\\252a)-359(p)-27(o)-358(ws)-1(i,)-358(a)-358(ku)-357(niem)-1(a\\252em)27(u)-358(p)-27(o)-28(d)1(z)-1(i)1(w)27(o)28(wi,)-358(z)]TJ -27.879 -13.55 Td[(wielkim)-333(te)-1(\\273)-334(u)29(w)27(a\\273aniem)-334(r)1(oz)-1(p)-27(o)28(w)-1(i)1(adali)-333(o)-333(Ja\\261)-1(k)28(o)28(wym)-334(p)-27(ost\\241)-28(pi)1(e)-1(n)1(iu.)]TJ 27.879 -13.549 Td[({)-346(Ze)-347(\\261wiec)-1(\\241)-346(n)1(ie)-347(n)1(a)-56(j)1(dzie)-347(tak)1(ie)-1(go)-346(d)1(ru)1(gie)-1(go)-346({)-346(m\\363)28(wi\\252y)-346(rozrze)-1(wni)1(one)-346(k)28(obiet)28(y)83(,)]TJ -27.879 -13.549 Td[(sro)-28(d)1(z)-1(e)-334(p)1(rzy)-333(t)27(y)1(m)-334(p)-27(o)27(wsta)-56(j)1(\\241c)-334(na)-333(T)83(eres)-1(k)28(\\246,)-333(ale)-334(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(zapalcz)-1(y)1(w)-1(i)1(e)-334(br)1(oni\\252a.)]TJ 27.879 -13.549 Td[({)-326(T)83(eres)-1(k)56(a)-326(n)1(iew)-1(i)1(no)28(w)27(ata!)-325({)-326(wrze)-1(szc)-1(za\\252a)-326(p)-28(o)-325(r\\363\\273n)28(yc)27(h)-325(op\\252otk)56(ac)28(h,)-325(k)55(a)-55(j)-326(j)1(e)-1(n)1(o)-326(p)-27(o-)]TJ -27.879 -13.549 Td[(s\\252)-1(y)1(s)-1(za\\252a,)-441(\\273e)-441(bier\\241)-440(j\\241)-440(na)-441(ozory)-440({)-441(sm)-1(ar)1(kul)-440(to)-440(b)28(y\\252)-441(j)1(e)-1(sz)-1(cz)-1(e,)-440(kiej)-441(J)1(a\\261)-1(k)56(a)-441(wzie)-1(n)1(i)-441(d)1(o)]TJ 0 -13.55 Td[(w)28(o)-56(jsk)56(a,)-405(osta\\252a)-405(sam)-1(a)-404(jedn)1(a,)-405(n)1(a)28(w)27(et)-405(p)1(rz)-1(ez)-405(dziec)27(k)56(a,)-405(to)-404(i)-405(n)1(ie)-405(dziw)28(ota,)-405(co)-405(b)-27(ez)-405(t)27(y)1(la)]TJ 0 -13.549 Td[(rok)28(\\363)28(w)-352(z)-1(acni\\252o)-352(si\\246)-353(j)1(e)-1(j)-352(za)-352(c)27(h\\252op)-27(em)-1(.)-352(\\233adn)1(a)-352(b)28(y)-352(ni)1(e)-353(pr)1(z)-1(etrzyma\\252)-1(a)-352(tak)1(ie)-1(go)-352(p)-27(os)-1(tu)1(.)-352(A)]TJ 0 -13.549 Td[(Mateusz)-360(zwie)-1(tr)1(z)-1(y)1(\\252)-360(ki)1(e)-1(j)-359(p)1(ies)-360(i)-359(dal)1(e)-1(j)1(\\273)-1(e)-360(b)1(ak)28(\\246)-360(\\261w)-1(i)1(e)-1(ci\\242,)-360(cud)1(e)-1(\\253)1(k)56(a)-360(p)1(ra)28(wi\\242,)-360(n)1(a)-359(m)27(u)1(z)-1(yk)28(\\246)]TJ 0 -13.549 Td[(pr)1(o)28(w)27(ad)1(z)-1(i\\242,)-333(ja\\273e)-334(i)-333(g\\252up)1(i\\241)-334(zdu)1(rzy\\252.)]TJ 27.879 -13.549 Td[({)-333(Ze)-334(to)-333(nie)-334(ma)-333(s)-1(\\241d)1(u)-333(na)-333(takic)28(h)-333(z)-1(w)28(o)-28(d)1(z)-1(icieli)-333({)-333(w)27(es)-1(tc)28(hn)1(\\246)-1(\\252a)-333(kt\\363ra\\261.)]TJ 0 -13.549 Td[({)-333(\\212e)-1(b)-333(m)28(u)-333(ju)1(\\273)-334(lenieje,)-333(a)-334(za)-333(k)28(obietami)-333(jes)-1(zc)-1(ze)-334(ci\\241)-28(gni)1(e)-1(.)]TJ 0 -13.55 Td[({)-231(Ka)28(w)27(alersk)56(a)-232(sierota,)-231(to)-231(k)55(a)-55(j\\273e)-232(si\\246)-232(p)-27(o\\273)-1(y)1(w)-1(i)1(,)-232(j)1(ak)-231(nie)-231(z)-232(c)-1(u)1(dze)-1(go)-231({)-231(kpi)1(li)-231(parob)-27(cy)83(.)]TJ 0 -13.549 Td[({)-305(M)1(ate)-1(u)1(s)-1(z)-305(te\\273)-305(niewino)28(w)28(at)28(y)83(,)-304(nie)-305(wiec)-1(ie)-305(to,)-304(\\273)-1(e)-305(j)1(ak)-305(sucz)-1(k)56(a)-305(n)1(ie)-305(da,)-304(to)-305(i)-304(pi)1(e)-1(se)-1(k)]TJ -27.879 -13.549 Td[(ni)1(e)-334(w)27(e\\271m)-1(ie!)-333({)-333(z)-1(a\\261m)-1(ia\\252)-333(si\\246)-334(St)1(ac)27(ho)-333(P\\252osz)-1(k)56(a)-333(i)-333(dziw)-334(go)-333(za)-334(to)-333(ni)1(e)-334(p)-27(obi\\252y)84(.)]TJ 27.879 -13.549 Td[(Ale)-253(wnet)-253(p)1(rze)-1(stali)-252(o)-253(t)28(ym)-253(delib)-27(ero)28(w)27(a\\242,)-253(gd)1(y\\273)-253(\\273)-1(n)1(iw)28(a)-253(b)28(y\\252y)-252(z)-1(a)-252(pase)-1(m,)-253(d)1(nie)-253(sz)-1(\\252y)]TJ -27.879 -13.549 Td[(wybr)1(ane,)-246(suc)28(he)-246(i)-245(upal)1(ne,)-246(p)-27(o)-246(wzg\\363rk)56(ac)27(h)-245(\\273)-1(y)1(ta)-246(jak)1(b)28(y)-246(si\\246)-246(p)1(ros)-1(i)1(\\252y)-246(o)-246(k)28(osy)84(,)-246(a)-246(j)1(\\246)-1(czm)-1(ion)1(a)]TJ 0 -13.55 Td[(ju)1(\\273)-360(d)1(o)-28(c)27(h)1(o)-28(dzi\\252y)83(,)-359(t)1(o)-360(co)-359(dni)1(a)-360(k)1(tos)-1(i)1(k)-360(wyc)28(ho)-28(d)1(z)-1(i)1(\\252)-360(p)-27(enetro)28(w)27(a\\242)-359(p)-28(ola,)-359(za\\261)-360(b)-27(ogatsz)-1(e)-360(j)1(u\\273)]TJ 0 -13.549 Td[(si\\246)-334(ogl\\241d)1(ali)-333(z)-1(a)-333(na)-55(jem)-1(n)1(iki)1(e)-1(m.)]TJ\nET\nendstream\nendobj\n2342 0 obj <<\n/Type /Page\n/Contents 2343 0 R\n/Resources 2341 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2341 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2346 0 obj <<\n/Length 10012     \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(735)]TJ -330.353 -35.866 Td[(Za\\261)-338(na)-338(p)1(ie)-1(r)1(w)-1(sze)-1(go)-338(r)1(usz)-1(y\\252)-338(or)1(ganista,)-338(wywi\\363)-27(d\\252s)-1(zy)-338(d)1(o)-338(\\273niw)28(a)-338(kil)1(k)55(an)1(a\\261)-1(cie)-338(k)28(o-)]TJ -27.879 -13.549 Td[(bi)1(e)-1(t,)-323(s)-1(t)1(an\\246\\252)-1(a)-323(do)-323(s)-1(ierp)1(a)-324(na)28(w)28(e)-1(t)-323(s)-1(ama)-324(or)1(gani\\261c)-1(i)1(na,)-323(w)-1(zi\\246\\252y)-324(\\273\\241\\242)-324(i)-324(c\\363rki)1(,)-324(a)-323(s)-1(tary)-323(mia\\252)]TJ 0 -13.549 Td[(nad)-368(w)-1(sz)-1(y)1(s)-1(tki)1(m)-370(cz)-1(u)28(w)28(a)-56(j)1(\\241c)-1(e)-369(o)-1(k)28(o.)-369(Jasio)-369(pr)1(z)-1(yl)1(e)-1(cia\\252)-370(d)1(opi)1(e)-1(ro)-369(p)-27(o)-370(msz)-1(y)-369(i)-369(ni)1(e)-1(d)1(\\252)-1(u)1(go)-370(si\\246)]TJ 0 -13.549 Td[(cie)-1(sz)-1(y)1(\\252)-320(\\273)-1(n)1(iw)28(am)-1(i)1(,)-320(b)-27(o)-320(sk)28(oro)-320(j)1(e)-1(n)1(o)-320(p)-27(o)-28(dn)1(ies)-1(\\252a)-320(si\\246)-320(p)1(rz)-1(y)1(p)-28(o\\252u)1(dn)1(io)28(w)27(a)-320(spi)1(e)-1(k)56(a,)-319(w)-1(y)1(p)-28(\\246dzi\\252a)]TJ 0 -13.549 Td[(go)-333(m)-1(atk)56(a,)-333(\\273e)-1(b)28(y)-333(se)-334(g\\252o)28(w)-1(y)-333(n)1(ie)-334(p)1(rze)-1(p)1(ali\\252)-333(na)-333(s)-1(\\252o\\253cu.)]TJ 27.879 -13.55 Td[({)-333(P)28(os)-1(zuk)56(a)-333(s)-1(e)-333(c)-1(ieni)1(a)-334(u)-333(Jagu)1(s)-1(i)1(,)-333(w)-334(to)-333(m)27(u)-333(gr)1(a)-56(j)-333({)-333(w)27(ar)1(kn\\246\\252a)-334(za)-333(nim)-333(Koz)-1(\\252o)28(w)28(a.)]TJ 0 -13.549 Td[(W)-378(dom)28(u)-378(jedn)1(ak)-379(b)29(y\\252o)-379(m)28(u)-378(gor\\241c)-1(o,)-378(n)28(u)1(dn)1(ie)-379(i)-378(m)27(u)1(c)27(h)28(y)-378(tak)-378(c)-1(i)1(\\246)-1(\\252y)-378(z)-1(ap)1(ami\\246)-1(tal)1(e)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-352(w)-1(y)1(bra\\252)-351(s)-1(i)1(\\246)-352(na)-351(wie)-1(\\261)-352(i)-351(p)1(rze)-1(c)27(h)1(o)-28(d)1(z)-1(\\241c)-352(k)28(o\\252o)-351(K\\252\\246)-1(b)-27(\\363)28(w)-352(d)1(os)-1(\\252ysz)-1(a\\252)-351(jaki)1(e)-1(\\261)-352(p)1(rzydu)1(s)-1(zone)]TJ 0 -13.549 Td[(j\\246ki,)-333(r)1(oz)-1(c)28(ho)-28(d)1(z)-1(\\241ce)-334(s)-1(i)1(\\246)-334(z)-334(wyw)28(artej)-333(na)-333(rozc)-1(i)1(e)-1(\\273)-334(c)28(ha\\252up)29(y)83(.)]TJ 27.879 -13.549 Td[(Jagata)-396(le\\273)-1(a\\252a)-396(w)-396(s)-1(i)1(e)-1(n)1(iac)27(h)-396(p)-27(o)-28(d)-395(progi)1(e)-1(m,)-396(w)-396(iz)-1(b)1(ie)-397(b)29(y\\252o)-396(pu)1(s)-1(to,)-396(ca\\252y)-396(b)-28(o)28(wiem)]TJ -27.879 -13.549 Td[(dom)-333(p)-28(osze)-1(d\\252)-333(do)-333(\\273niw)28(a.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(eni)1(\\363s)-1(\\252)-418(j)1(\\241)-418(d)1(o)-418(i)1(z)-1(b)28(y)84(,)-417(p)-28(o\\252o\\273y\\252)-418(n)1(a)-418(\\252\\363\\273k)28(o,)-418(n)1(ap)-28(oi)1(\\252)-418(i)-417(tak)-417(c)-1(u)1(c)-1(i\\252,)-417(ja\\273e)-418(pr)1(z)-1(ysz\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(co)-334(d)1(o)-333(s)-1(iebie)-333(i)-333(ot)27(w)28(orzy\\252a)-333(z)-1(a\\252za)27(wion)1(e)-334(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Dy\\242)-334(j)1(u\\273)-334(k)28(o\\253)1(c)-1(z\\246)-1(,)-333(p)1(anicz)-1(k)1(u)-333({)-334(u)1(\\261)-1(miec)27(h)1(n\\246\\252a)-334(si\\246)-334(ki)1(e)-1(j)-333(r)1(oz)-1(b)1(udzone)-333(dzie)-1(c)28(k)28(o.)]TJ 0 -13.549 Td[(Chcia\\252)-333(z)-1(araz)-333(bie\\273)-1(y)1(\\242)-334(p)-28(o)-333(ksi\\246dza,)-333(przytr)1(z)-1(yma\\252a)-334(go)-333(za)-334(sutan)1(n\\246.)]TJ 0 -13.549 Td[({)-314(P)28(anienk)56(a)-314(m)-1(i)-314(d)1(z)-1(isia)-314(rze)-1(k\\252a:)-314(\\377Gotu)1(j)-314(s)-1(i)1(\\246)-315(na)-314(ju)1(tro,)-314(du)1(s)-1(zo)-315(u)1(m\\246)-1(cz)-1(on)1(a!\")-315(M)1(am)]TJ -27.879 -13.55 Td[(cz)-1(as)-319(j)1(e)-1(sz)-1(cz)-1(e,)-318(pan)1(icz)-1(ku)1(!)-318(Jutr)1(o...)-318(dzi\\246ki)-318(c)-1(i)1(,)-319(Bo\\273e)-319(mi\\252os)-1(iern)29(y)83(,)-318(dzi\\246ki!)-318({)-318(j\\241k)56(a\\252a)-319(coraz)]TJ 0 -13.549 Td[(s\\252)-1(ab)1(iej,)-266(p)1(rz)-1(e\\261m)-1(iec)27(h)-265(z)-1(atli)1(\\252)-267(si\\246)-266(na)-266(jej)-266(w)28(argac)27(h)1(,)-266(z)-1(\\252o\\273y\\252a)-266(r\\246c)-1(e)-266(i)-266(z)-1(ap)1(atrzona)-266(k)56(a)-56(j)1(\\261)-1(,)-266(w)-266(ja-)]TJ 0 -13.549 Td[(k)28(o)28(w)27(e\\261)-263(dalek)28(o\\261)-1(ci,)-262(z)-1(ap)1(ad\\252a)-263(j)1(akb)28(y)-262(w)-263(g\\252\\246)-1(b)-27(ok)56(\\241)-263(d)1(usz)-1(n)1(\\241)-263(mo)-28(dli)1(t)28(w)27(\\246,)-263(a)-263(J)1(as)-1(io,)-262(rozumiej\\241c,)]TJ 0 -13.549 Td[(co)-334(j)1(u\\273)-334(zac)-1(z\\246\\252)-1(o)-333(si\\246)-334(k)28(onan)1(ie,)-333(p)-28(olecia\\252)-334(zw)27(o\\252yw)28(a\\242)-334(K\\252\\246b)-27(\\363)27(w.)]TJ 27.879 -13.549 Td[(Za)-56(j)1(rza\\252)-357(do)-356(niej)-356(dop)1(iero)-357(p)-27(o)-357(p)-27(o\\252ud)1(niu)1(,)-356(le)-1(\\273a\\252a)-357(w)-357(\\252\\363\\273ku)-356(ca\\252)-1(k)1(ie)-1(m)-357(p)1(rzytomna,)]TJ -27.879 -13.55 Td[(skrzynk)56(a)-304(s)-1(ta\\252a)-304(przy)-304(niej)-304(na)-304(\\252a)28(w)-1(i)1(e)-1(,)-304(wyjmo)28(w)27(a\\252a)-304(z)-305(ni)1(e)-1(j)-304(st)27(y)1(gn\\241cymi)-305(r)1(\\246)-1(k)56(ami)-305(wsz)-1(y)1(s)-1(t-)]TJ 0 -13.549 Td[(k)28(o,)-279(c)-1(o)-279(se)-280(b)28(y\\252a)-279(nagot)1(o)27(w)28(a\\252a)-280(n)1(a)-279(t\\246)-280(p)-27(or\\246)-280(ostatni)1(\\241;)-279(c)-1(zys)-1(t\\241)-279(p)1(\\252ac)27(h)28(t\\246)-280(p)-27(o)-28(d)-279(siebie)-279(i)-279(\\261)-1(wie\\273)-1(e)]TJ 0 -13.549 Td[(obl)1(e)-1(cz)-1(eni)1(e)-387(n)1(a)-386(p)-27(o\\261)-1(ciele)-1(,)-385(w)27(o)-27(d\\246)-386(\\261)-1(wi\\246c)-1(on)1(\\241,)-386(ca\\252kiem)-386(jes)-1(zc)-1(ze)-386(dob)1(re)-386(krop)1(id\\252o)-385(i)-386(sp)-28(or)1(y)]TJ 0 -13.549 Td[(k)56(a)28(w)27(a\\252)-265(gromn)1(ic)-1(y)84(,)-265(i)-264(obrazek)-265(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wskiej)-265(d)1(o)-265(r\\246ki,)-529(no)28(w)28(\\241)-265(k)28(os)-1(zul\\246,)-265(sut)28(y)-264(w)27(e\\252niak)1(,)]TJ 0 -13.549 Td[(cz)-1(ep)-28(ek)-319(bu)1(jni)1(e)-320(ur)1(urk)28(o)28(w)28(an)28(y)-319(nad)-319(cz)-1(o\\252em,)-320(wr)1(az)-320(z)-320(c)27(h)28(u)1(s)-1(t)1(\\241)-320(d)1(o)-320(za)28(w)-1(i)1(\\241z)-1(an)1(ia,)-319(i)-319(z)-1(u)1(p)-28(e\\252nie)]TJ 0 -13.55 Td[(no)28(w)28(e)-368(tr)1(z)-1(ew)-1(i)1(ki,)-367(ws)-1(zy\\242k)28(o)-367(\\261)-1(miertelne)-367(w)-1(i)1(ano,)-367(u)1(\\273)-1(ebran)1(e)-368(p)1(rze)-1(z)-368(ca\\252e)-368(\\273ycie)-1(,)-367(r)1(oz)-1(\\252o\\273y\\252a)]TJ 0 -13.549 Td[(k)28(o\\252o)-271(s)-1(i)1(e)-1(b)1(ie)-1(,)-270(c)-1(iesz)-1(\\241c)-271(s)-1(i\\246)-271(k)56(a\\273)-1(d)1(\\241)-271(rze)-1(cz)-1(\\241)-271(i)-270(c)27(h)28(w)28(al\\241c)-272(p)1(rze)-1(d)-270(k)28(obietami,)-271(za\\261)-272(cz)-1(ep)-27(e)-1(k)-271(n)1(a)28(w)27(et)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(m)-1(ierzy\\252a)-333(i)-334(p)1(rze)-1(j)1(rza)27(wsz)-1(y)-333(si\\246)-334(w)-333(lusterku)-333(sz)-1(epn)1(\\246)-1(\\252a)-333(wie)-1(l)1(c)-1(e)-334(sz)-1(cz\\246)-1(\\261liw)28(a:)]TJ 27.879 -13.549 Td[({)-333(B)-1(\\246dzie)-334(gal)1(anc)-1(i)1(e)-1(,)-333(n)1(a)-334(sieln\\241)-333(gos)-1(p)-27(o)-28(d)1(yni)1(\\246)-334(patr)1(z)-1(\\246.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(k)55(aza\\252a,)-333(b)28(yc)27(h)-333(j)1(\\241)-333(w)-334(te)-334(sk)56(arb)28(y)-333(p)1(rz)-1(y)1(s)-1(tr)1(oili)-333(ju)1(tro,)-333(zaraz)-334(o)-28(d)-332(s)-1(ame)-1(go)-333(ran)1(a.)]TJ 0 -13.55 Td[(Ju)1(\\261)-1(ci,)-261(c)-1(o)-261(n)1(ikto)-261(s)-1(i)1(\\246)-262(jej)-261(n)1(ie)-262(sprze)-1(ciwi\\252,)-261(c)27(h)1(o)-28(dzili)-261(k)28(ol)1(e)-262(ni)1(e)-1(j)-261(n)1(a)-261(palcac)27(h,)-261(u)1(mila)-56(j)1(\\241c)]TJ -27.879 -13.549 Td[(jej)-333(te)-334(ostatn)1(ie)-334(c)27(h)29(w)-1(i)1(le)-1(,)-333(j)1(ak)-333(jeno)-333(p)-28(or)1(e)-1(d)1(z)-1(il)1(i.)]TJ 27.879 -13.549 Td[(Jasio)-388(p)1(rze)-1(sie)-1(d)1(z)-1(i)1(a\\252)-388(pr)1(z)-1(y)-387(niej)-387(do)-388(zmie)-1(r)1(z)-1(c)28(h)28(u)-387(c)-1(zyta)-56(j)1(\\241c)-388(w)-388(g\\252os)-388(m)-1(o)-28(d)1(lit)28(wy)84(,)-388(p)-27(o-)]TJ -27.879 -13.549 Td[(wtarza\\252a)-334(a)-333(ni)1(m)-1(,)-333(zas)-1(yp)1(ia)-55(j\\241c)-334(co)-334(c)28(h)28(wila)-333(z)-334(j)1(akim\\261)-334(lec)-1(iu)1(\\261)-1(k)1(im)-334(p)-27(o\\261)-1(miec)27(h)1(e)-1(m.)]TJ 27.879 -13.549 Td[(A)-349(gd)1(y)-348(z)-1(asiadal)1(i)-349(d)1(o)-349(wiec)-1(ze)-1(r)1(z)-1(y)84(,)-348(z)-1(ap)1(ragn\\246\\252a)-349(j)1(a)-56(j)1(e)-1(cz)-1(n)1(ic)-1(y)84(,)-348(ju)1(\\261)-1(ci,)-348(\\273)-1(e)-349(j)1(e)-1(n)1(o)-349(d)1(z)-1(iob)1(-)]TJ -27.879 -13.549 Td[(n\\246\\252a)-412(raz)-413(i)-412(dr)1(ugi,)-412(o)-27(dsu)28(w)27(a)-55(j\\241c)-413(j)1(ad\\252o)-412(o)-28(d)-412(r)1(az)-1(u)1(,)-413(i)-412(j)1(u\\273)-413(ca\\252y)-412(wie)-1(cz)-1(\\363r)-412(l)1(e)-1(\\273a\\252a)-413(cic)27(h)29(u\\261k)28(o,)]TJ 0 -13.55 Td[(dop)1(iero)-333(kiedy)-333(z)-1(ab)1(ierali)-333(si\\246)-334(d)1(o)-334(span)1(ia,)-333(przyw)28(o\\252a\\252a)-334(T)83(omk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(b)-27(\\363)-56(j)-333(si\\246,)-333(nie)-334(b)-27(\\246d\\246)-334(ci)-333(z)-1(a)28(w)28(adza\\252)-1(a)-333(d)1(\\252)-1(u)1(go,)-333(nie)-333({)-334(wyr)1(z)-1(ek\\252a)-334(l)1(\\246)-1(kl)1(iwie)-1(.)]TJ 0 -13.549 Td[(Na)-244(d)1(rugi)-243(dzie)-1(\\253)-243(z)-244(rana)-244(p)1(rzybr)1(ali)-244(j)1(\\241,)-244(jak)-243(pr)1(z)-1(yk)56(aza\\252a,)-244(p)-27(o\\252)-1(o\\273yli)-243(j\\241)-244(n)1(a)-244(K\\252\\246)-1(b)-27(o)28(w)27(ej)]TJ -27.879 -13.549 Td[(\\252\\363\\273)-1(k)28(o,)-466(a)-467(n)1(a)-467(j)1(e)-1(j)-466(w\\252as)-1(n)1(e)-1(j)-466(p)-27(o\\261)-1(cieli,)-466(s)-1(ama)-467(p)1(iln)1(o)28(w)27(a\\252a,)-466(\\273)-1(eb)28(y)-466(w)-1(sz)-1(y)1(s)-1(tk)28(o)-466(b)28(y\\252o)-467(j)1(ak)-466(s)-1(i\\246)]TJ 0 -13.549 Td[(pat)1(rz)-1(y)84(,)-428(s)-1(ama)-428(s)-1(tr)1(z)-1(ep)28(yw)28(a\\252a)-429(d)1(r\\273\\241c)-429(c)27(h)29(ud\\241)-428(p)1(ie)-1(r)1(z)-1(y)1(n\\246,)-429(sama)-429(n)1(ala\\252a)-428(w)27(o)-28(d)1(y)-428(\\261)-1(wi\\246c)-1(on)1(e)-1(j)]TJ 0 -13.55 Td[(na)-440(tal)1(e)-1(r)1(z)-441(i)-440(p)-27(o\\252o\\273)-1(y\\252a)-440(n)1(a)-440(nim)-440(krop)1(id\\252o,)-440(a)-440(sp)-27(e)-1(n)1(e)-1(tr)1(o)27(w)28(a)28(w)-1(sz)-1(y)84(,)-440(\\273e)-441(j)1(u\\273)-440(jes)-1(t,)-440(j)1(ak)-440(b)28(y\\242)]TJ 0 -13.549 Td[(p)-27(o)27(win)1(no)-333(w)-334(tak)56(\\241)-333(go)-28(d)1(z)-1(in)1(\\246)-334(u)-333(gosp)-28(o)-27(darzy)83(,)-333(p)-27(opr)1(os)-1(i\\252a)-333(o)-333(ks)-1(i)1(\\246)-1(d)1(z)-1(a.)]TJ\nET\nendstream\nendobj\n2345 0 obj <<\n/Type /Page\n/Contents 2346 0 R\n/Resources 2344 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2344 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2349 0 obj <<\n/Length 9379      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(736)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(47.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(Pr)1(z)-1(y)1(s)-1(ze)-1(d)1(\\252)-302(z)-302(P)28(anem)-302(Jez)-1(u)1(s)-1(em)-1(,)-301(pr)1(z)-1(ygot)1(o)27(w)28(a\\252)-302(j)1(\\241)-302(na)-301(t\\246)-302(drog\\246)-302(ostatni)1(\\241)-302(i)-302(zalec)-1(i)1(\\252)]TJ -27.879 -13.549 Td[(Jasio)28(w)-1(i)-333(p)-27(ozos)-1(ta\\242)-334(d)1(o)-334(k)28(o\\253)1(c)-1(a,)-333(\\273e)-334(to)-333(jem)27(u)-333(same)-1(m)28(u)-333(gdzie)-1(sik)-333(si\\246)-334(\\261pies)-1(zy\\252o.)]TJ 27.879 -13.549 Td[(Jasio)-261(z)-1(asiad\\252)-261(pr)1(z)-1(y)-261(n)1(iej)-261(i)-261(c)-1(zyta\\252)-261(s)-1(e)-261(p)-28(o)-261(cic)27(h)28(u)-260(z)-262(br)1(e)-1(wiarza,)-261(K\\252\\246b)-28(o)28(wie)-262(te\\273)-262(ostali)]TJ -27.879 -13.549 Td[(w)-335(d)1(om)27(u)1(,)-334(a)-335(wkr)1(\\363tc)-1(e)-335(p)1(rzylec)-1(i)1(a\\252)-1(a)-334(Jagu)1(s)-1(ia,)-334(p)1(rzyw)27(ar)1(o)27(w)28(a)28(ws)-1(zy)-334(k)55(a)-55(j\\261)-335(w)-334(k)56(\\241c)-1(ie)-334(c)-1(ic)28(h)28(u\\261k)28(o)]TJ 0 -13.549 Td[(ni)1(b)28(y)-376(tr)1(usia.)-376(W)-376(izbi)1(e)-377(j)1(e)-1(n)1(o)-376(m)27(u)1(c)27(h)28(y)-376(b)1(rz\\246)-1(cz)-1(a\\252y)84(,)-376(gdy)1(\\273)-377(lu)1(dzie)-376(s)-1(n)28(u)1(li)-376(si\\246)-376(b)-28(ez)-377(g\\252osu)-376(j)1(ak)]TJ 0 -13.55 Td[(cie)-1(n)1(ie,)-299(tr)1(w)27(o\\273nie)-299(j)1(e)-1(n)1(o)-299(sp)-28(oziera)-56(j)1(\\241c)-299(na)-299(J)1(agat\\246)-1(..)1(.)-299(Le\\273)-1(a\\252a)-298(z)-300(r)1(\\363\\273)-1(a\\253)1(c)-1(em)-299(w)-299(r\\246ku)1(,)-299(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(ca\\252)-1(k)1(ie)-1(m)-490(przytomnie)-491(\\273egna)-56(j)1(\\241c)-491(s)-1(i)1(\\246)-491(z)-491(k)55(a\\273dy)1(m)-1(,)-490(kto)-490(ino)-490(z)-1(a)-55(jr)1(z)-1(a\\252)-491(d)1(o)-491(c)28(ha\\252up)29(y)83(,)-490(z)-1(a\\261)]TJ 0 -13.549 Td[(p)-27(oniekt\\363r)1(ym)-279(d)1(z)-1(ieciom)-1(,)-278(cisn\\241cym)-279(si\\246)-278(w)-279(sie)-1(n)1(iac)27(h)-277(i)-278(p)-28(o)-27(d)-278(okn)1(e)-1(m,)-278(rozda)28(w)27(a\\252a)-278(p)-27(o)-278(par\\246)]TJ 0 -13.549 Td[(grosz)-1(y)1(:)]TJ 27.879 -13.549 Td[({)-333(Na\\261)-1(ci,)-333(a)-333(z)-1(m\\363)28(w)-334(pacior)1(e)-1(k)-333(z)-1(a)-333(Jagat\\246!)-333({)-334(sze)-1(p)1(ta\\252a)-334(z)-334(l)1(ub)-27(o\\261)-1(ci\\241.)]TJ 0 -13.549 Td[(A)-333(p)-28(otem)-334(j)1(u\\273)-334(ca\\252e)-334(go)-28(d)1(z)-1(i)1(n)28(y)-333(nie)-334(o)-27(dzyw)27(a\\252a)-333(si\\246)-334(do)-333(n)1(ik)28(ogo.)]TJ 0 -13.55 Td[(I)-342(l)1(e)-1(\\273a\\252a)-342(s)-1(e)-342(go)-27(dn)1(ie)-1(,)-341(p)-27(o)-342(gosp)-28(o)-28(d)1(arsku,)-341(na)-341(\\252\\363\\273)-1(k)1(u)-342(i)-341(p)-27(o)-28(d)-341(obrazami,)-341(jak)-341(s)-1(e)-342(b)28(y)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(roi)1(\\252)-1(a)-465(przez)-467(ca\\252e)-466(\\273)-1(ycie.)-466(Le\\273)-1(a\\252a)-466(p)-27(e\\252na)-466(cic)27(h)1(e)-1(j)-465(d)1(um)27(y)-465(i)-466(n)1(ieop)-28(o)28(wiedzianej)-466(szc)-1(z\\246)-1(\\261li-)]TJ 0 -13.549 Td[(w)28(o\\261)-1(ci,)-419(rad)1(os)-1(n)1(e)-420(\\252zy)-419(s)-1(i)1(w)-1(i)1(\\252)-1(y)-418(s)-1(i\\246)-419(w)-420(j)1(e)-1(j)-418(o)-28(cz)-1(ac)27(h)1(.)-419(P)28(oru)1(c)27(h)1(iw)27(a\\252a)-419(cos)-1(i)1(k)-419(w)27(ar)1(gam)-1(i,)-418(b\\252ogo)]TJ 0 -13.549 Td[(u\\261mie)-1(c)28(hn)1(i\\246)-1(t)1(a)-295(i)-294(z)-1(ap)1(atrz)-1(on)1(a)-295(p)1(rze)-1(z)-295(okn)1(o)-295(w)-295(n)1(ieb)-28(o)-294(g\\252)-1(\\246b)-27(okie,)-295(w)-295(p)-27(ola)-294(nieob)-55(j\\246te)-1(,)-294(gd)1(z)-1(ie)]TJ 0 -13.549 Td[(ju)1(\\273)-315(k)55(a)-55(j)-315(n)1(iek)55(a)-55(j)-314(b\\252ysk)55(a\\252y)-314(z)-316(b)1(rz\\246)-1(k)1(ie)-1(m)-315(k)28(osy)-315(i)-314(k\\252ad\\252y)-315(si\\246)-315(\\271)-1(r)1(a\\252e)-1(,)-314(c)-1(i\\246\\273)-1(k)1(ie)-315(\\273)-1(yt)1(a)-1(,)-314(w)-315(jak)1(ie)-1(\\261)]TJ 0 -13.55 Td[(dal)1(e)-1(,)-333(wid)1(ne)-334(j)1(e)-1(n)1(o)-334(j)1(e)-1(j)-333(d)1(usz)-1(y)-333(zam)-1(i)1(e)-1(r)1(a)-56(j\\241cej.)]TJ 27.879 -13.549 Td[(Ale)-353(w)-354(j)1(akiej\\261)-353(m)-1(in)29(ucie)-1(,)-352(gdy)-353(d)1(z)-1(ie\\253)-353(mia\\252)-353(s)-1(i)1(\\246)-354(ju)1(\\273)-354(ku)-352(s)-1(c)28(h)28(y\\252k)28(o)28(wi,)-353(a)-353(iz)-1(b)-27(\\246)-353(z)-1(ala\\252y)]TJ -27.879 -13.549 Td[(cz)-1(erw)28(one)-436(z)-1(orze)-436(z)-1(ac)27(h)1(o)-28(d)1(u,)-436(wstrz\\241s)-1(n\\246\\252a)-436(s)-1(i)1(\\246)-437(gw)28(a\\252to)28(w)-1(n)1(ie,)-436(usiad\\252a)-436(i)-435(w)-1(y)1(c)-1(i\\241)-27(gn\\241)28(ws)-1(zy)]TJ 0 -13.549 Td[(r\\246c)-1(e)-333(z)-1(a)28(w)28(o\\252)-1(a\\252a)-333(mo)-28(c)-1(n)29(ym)-1(,)-333(a)-333(jak)28(ob)29(y)-333(c)-1(u)1(dzym)-334(g\\252ose)-1(m:)]TJ 27.879 -13.549 Td[({)-333(P)28(ora)-333(ju)1(\\273)-334(na)-333(mnie,)-333(p)-27(ora.)]TJ 0 -13.55 Td[(I)-333(pad\\252a)-333(wz)-1(n)1(ak.)]TJ 0 -13.549 Td[(W)-422(izbie)-423(zrob)1(i\\252o)-423(si\\246)-423(strasz)-1(n)1(o,)-422(bu)1(c)27(hn)1(\\246)-1(\\252y)-422(p\\252acz)-1(e,)-422(p)-28(op)1(rzykl\\246k)56(ali)-422(k)28(ole)-423(\\252\\363\\273)-1(k)56(a,)]TJ -27.879 -13.549 Td[(Jasio)-287(j\\241\\252)-287(cz)-1(y)1(ta\\242)-288(mo)-28(d)1(lit)28(w)28(\\246)-288(za)-287(k)28(ona)-55(j\\241cyc)27(h)1(,)-287(K\\252\\246b)-28(o)28(w)28(a)-287(z)-1(ap)1(ali\\252a)-287(gromni)1(c)-1(\\246,)-287(u)1(m)-1(iera)-55(j\\241-)]TJ 0 -13.549 Td[(ca)-304(p)-28(o)28(wtarza\\252a)-304(z)-1(a)-304(Jasiem)-1(,)-303(ale)-304(c)-1(oraz)-304(s\\252)-1(ab)1(iej,)-304(coraz)-304(c)-1(i)1(s)-1(ze)-1(j)1(,)-304(c)-1(or)1(az)-305(b)-27(e\\252k)28(otliwiej,)-304(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(jej)-428(gas)-1(\\252y)-429(n)1(ib)28(y)-428(te)-1(n)-428(dzie\\253)-429(letn)1(i)-429(z)-1(n)1(o)-56(j)1(am)-1(i)-428(utr)1(ud)1(z)-1(on)28(y)84(,)-429(t)28(w)28(arz)-429(gr\\241\\273y\\252a)-429(s)-1(i)1(\\246)-430(w)-429(tu)1(m)-1(an)]TJ 0 -13.55 Td[(wiec)-1(znego)-334(zmie)-1(r)1(z)-1(c)28(h)28(u,)-333(wypu)1(\\261)-1(ci\\252a)-333(gromnic\\246)-334(i)-333(sk)28(ona\\252a.)]TJ 27.879 -13.549 Td[(I)-363(p)-27(omar\\252a)-363(se)-363(ta)-362(dziad\\363)28(wk)55(a)-362(kieb)28(y)-362(na)-55(jp)1(ie)-1(r)1(w)-1(sza)-363(w)28(e)-363(w)-1(si,)-362(a)-363(Jam)28(br)1(o\\273)-1(,)-362(kt\\363ren)]TJ -27.879 -13.549 Td[(aku)1(ratn)1(ie)-382(z)-1(d)1(\\241\\273)-1(y)1(\\252)-382(na)-381(s)-1(am)-382(k)28(on)1(iec)-1(,)-381(z)-1(a)28(w)28(ar\\252)-382(j)1(e)-1(j)-381(o)-28(czy)83(,)-381(s)-1(am)-382(J)1(as)-1(io)-381(z)-1(m\\363)28(wi\\252)-382(za)-382(n)1(i\\241)-382(go-)]TJ 0 -13.549 Td[(r\\241cy)-363(pacierz)-364(i)-363(c)-1(a\\252a)-363(wie\\261)-364(pr)1(z)-1(yc)28(ho)-28(d)1(z)-1(i)1(\\252)-1(a)-363(si\\246)-364(mo)-28(dl)1(i\\242)-364(pr)1(z)-1(y)-363(j)1(e)-1(j)-363(zw\\252)-1(ok)56(ac)28(h,)-363(p)-27(op\\252ak)56(a\\242)-364(a)]TJ 0 -13.549 Td[(zaz)-1(d)1(ro\\261)-1(n)1(ie)-334(si\\246)-334(d)1(z)-1(i)1(w)27(o)28(w)27(a\\242)-333(s)-1(zc)-1(z\\246)-1(\\261liw)28(e)-1(j)-332(\\261)-1(mierc)-1(i)-333(i)-333(lekki)1(e)-1(m)28(u)-333(s)-1(k)28(on)1(aniu)1(.)]TJ 27.879 -13.55 Td[(T)28(ylk)28(o)-257(Jasia,)-256(s)-1(k)28(or)1(o)-257(z)-1(a)-55(jr)1(z)-1(a\\252)-257(w)-256(jej)-257(mart)28(w)28(e)-257(o)-28(c)-1(zy)-257(i)-256(w)-257(t\\246)-257(st\\246)-1(\\273a\\252\\241)-257(n)1(a)-257(gru)1(d\\246)-257(t)28(w)27(ar)1(z)-1(,)]TJ -27.879 -13.549 Td[(p)-27(oradl)1(on\\241)-342(pazur)1(am)-1(i)-341(\\261)-1(mierc)-1(i)1(,)-342(z)-1(atr)1(z)-1(\\241s\\252)-342(taki)-342(strac)27(h)1(,)-342(\\273e)-343(uciek\\252)-342(do)-342(d)1(om)27(u,)-341(rzuc)-1(i)1(\\252)-342(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(\\252\\363\\273k)28(o,)-334(w)28(cis)-1(n)1(\\241\\252)-334(g\\252o)28(w)27(\\246)-333(w)-334(p)-27(o)-28(du)1(s)-1(zki)-333(i)-333(zap\\252ak)56(a\\252.)]TJ 27.879 -13.549 Td[(P)28(olecia\\252a)-425(wnet)-425(z)-1(a)-425(n)1(im)-425(Jagusia)-425(i)-425(c)28(ho)-28(cia\\273)-425(s)-1(ama)-425(b)28(y)1(\\252)-1(a)-424(p)-28(e\\252na)-425(p)1(rz)-1(era\\273e)-1(n)1(ia)-425(i)]TJ -27.879 -13.549 Td[(\\273a\\252)-1(o\\261ci,)-364(j\\246\\252a)-365(go)-364(usp)-27(ok)55(a)-55(ja\\242)-364(i)-364(ob)-28(ciera\\242)-365(m)28(u)-364(t)28(w)27(ar)1(z)-365(z)-1(ap)1(\\252ak)55(an)1(\\241.)-364(Pr)1(z)-1(ytu)1(li\\252)-364(si\\246)-365(do)-364(n)1(ie)-1(j)]TJ 0 -13.549 Td[(kieb)28(y)-345(d)1(o)-345(m)-1(at)1(ki,)-345(k\\252ad)1(\\252)-346(r)1(oz)-1(b)-27(ola\\252\\241)-345(g\\252o)28(w)27(\\246)-345(na)-345(j)1(e)-1(j)-344(piersiac)27(h)1(,)-345(ob)-28(ejmo)28(w)27(a\\252)-345(j)1(\\241)-345(z)-1(asz)-1(yj)1(\\246)-1(,)-344(i)]TJ 0 -13.55 Td[(ja\\273e)-334(si\\246)-334(zanosz)-1(\\241c)-333(s)-1(zlo)-28(c)27(h)1(aniem,)-333(s)-1(k)56(ar\\273y\\252)-333(s)-1(i\\246)-333(rz)-1(ewliwie:)]TJ 27.879 -13.549 Td[({)-333(B)-1(o\\273e)-334(m\\363)-56(j)1(,)-333(jakie)-333(to)-334(strasz)-1(n)1(e)-1(,)-333(j)1(akie)-334(t)1(o)-334(okr)1(opn)1(e)-1(!.)1(..)]TJ 0 -13.549 Td[(W)84(e)-1(sz)-1(\\252a)-333(na)-333(to)-333(organi)1(\\261)-1(cina,)-333(zobacz)-1(y)1(\\252)-1(a)-333(i)-333(srogi)-333(gniew)-334(n)1(i\\241)-333(z)-1(atar)1(ga\\252.)]TJ 0 -13.549 Td[({)-373(Co)-373(si\\246)-373(tu)-372(dzie)-1(j)1(e)-1(!)-372({)-373(p)-27(os)-1(t\\241)-27(pi\\252a)-373(n)1(a)-373(\\261ro)-28(d)1(e)-1(k)-372(iz)-1(b)29(y)-373(i)-372(z)-1(asycz)-1(a\\252a,)-373(l)1(e)-1(d)1(w)-1(i)1(e)-374(si\\246)-373(ju)1(\\273)]TJ -27.879 -13.549 Td[(ham)28(uj)1(\\241c)-1(:)]TJ 27.879 -13.55 Td[({)-375(Wi)1(dzis)-1(z)-375(j\\241,)-374(jak)56(a)-375(mi)-375(c)-1(zu\\252a)-375(op)1(iekun)1(k)56(a,)-375(s)-1(zk)28(o)-28(d)1(a)-375(t)28(ylk)28(o,)-375(\\273e)-376(J)1(as)-1(io)-375(j)1(u\\273)-375(ni)1(a\\253ki)]TJ -27.879 -13.549 Td[(ni)1(e)-334(p)-27(otrze)-1(b)1(uje)-333(i)-334(sam)-334(sobi)1(e)-334(p)-28(or)1(adzi)-333(nos)-334(ob)-27(etrze)-1(\\242!)]TJ\nET\nendstream\nendobj\n2348 0 obj <<\n/Type /Page\n/Contents 2349 0 R\n/Resources 2347 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2347 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2352 0 obj <<\n/Length 3071      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(737)]TJ -330.353 -35.866 Td[(Jagu)1(s)-1(ia)-450(p)-27(o)-28(d)1(nies)-1(\\252a)-450(n)1(a)-450(ni)1(\\241)-450(z)-1(ap)1(\\252ak)55(an)1(e)-451(o)-27(c)-1(zy)-450(i)-450(d)1(ygo)-28(c\\241c)-450(w)-451(zal\\246kni)1(e)-1(n)1(iu,)-449(j\\246\\252)-1(a)]TJ -27.879 -13.549 Td[(rozp)-27(o)27(wiad)1(a\\242)-286(o)-286(\\261m)-1(i)1(e)-1(r)1(c)-1(i)-285(s)-1(tar)1(e)-1(j)1(,)-286(J)1(as)-1(io)-285(te\\273)-286(rz)-1(u)1(c)-1(i)1(\\252)-286(si\\246)-286(s)-1(k)1(w)27(ap)1(nie,)-286(t)1(\\252)-1(u)1(mac)-1(z\\241c)-286(m)-1(atce,)-286(co)]TJ 0 -13.549 Td[(m)27(u)-380(si\\246)-381(to)-381(p)1(rz)-1(y)1(go)-28(dzi\\252o,)-381(al)1(e)-382(or)1(gani\\261cina,)-380(s)-1(n)1(ad\\271)-381(ju)1(\\273)-381(dobr)1(z)-1(e)-381(p)1(rz)-1(\\363)-27(dzi)-381(p)-27(o)-28(d)1(b)-28(ec)27(h)28(tan)1(a)]TJ 0 -13.549 Td[(pr)1(z)-1(ez)-334(ku)1(m)27(y)84(,)-333(w)-1(y)1(w)27(ar\\252a)-333(na)-333(n)1(ie)-1(go)-333(g\\246b)-28(\\246:)]TJ 27.879 -13.549 Td[({)-333(G\\252up)1(i\\261)-334(j)1(ak)-334(ciel\\246!)-334(Ni)1(e)-334(o)-28(d)1(z)-1(yw)28(a)-56(j)-333(si\\246)-334(l)1(e)-1(p)1(ie)-1(j)1(,)-333(b)28(y\\261)-334(i)-333(t)28(y)-333(cz)-1(ego)-334(n)1(ie)-334(ob)-27(e)-1(r)1(w)27(a\\252!)]TJ 0 -13.55 Td[(Sk)28(o)-27(c)-1(zy\\252a)-279(nar)1(az)-280(d)1(o)-279(dr)1(z)-1(wi,)-279(wyw)28(ar\\252a)-279(j)1(e)-280(n)1(a)-279(rozc)-1(ie\\273)-280(i)-278(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252a)-279(d)1(o)-279(Jagusi:)]TJ 0 -13.549 Td[({)-362(A)-362(t)28(y)-362(si\\246)-362(w)-1(y)1(no\\261,)-362(i)-362(\\273e)-1(b)28(y)-361(tuta)-55(j)-362(n)1(ie)-363(p)-27(osta\\252a)-362(w)-1(i)1(\\246)-1(ce)-1(j)-361(t)28(w)27(o)-55(ja)-362(noga,)-361(b)-28(o)-362(ci\\246)-362(wy-)]TJ -27.879 -13.549 Td[(sz)-1(cz)-1(u)1(j\\246!)]TJ 27.879 -13.549 Td[({)-367(C)-1(\\363\\273em)-368(to)-367(wino)28(w)28(ata,)-367(c)-1(o?)-367({)-368(j)1(\\241k)56(a\\252)-1(a,)-367(zgo\\252a)-367(ju\\273)-367(niepr)1(z)-1(yt)1(om)-1(n)1(a)-368(ze)-368(ws)-1(t)28(y)1(du)-367(i)]TJ -27.879 -13.549 Td[(b)-27(ole)-1(\\261ci.)]TJ 27.879 -13.549 Td[({)-344(P)29(os)-1(z\\252a)-344(pr)1(e)-1(cz)-344(i)-343(w)-344(te)-1(j)-343(min)28(u)1(c)-1(i)1(e)-1(,)-343(b)-28(o)-343(k)56(a\\273)-1(\\246)-344(p)1(s)-1(y)-343(p)-28(ospu)1(s)-1(zc)-1(za\\242!)-344(Ju)1(\\273)-344(ja)-343(nie)-344(b)-27(\\246)-1(d)1(\\246)]TJ -27.879 -13.55 Td[(p\\252ak)56(a\\252a)-399(prze)-1(z)-399(c)-1(iebi)1(e)-1(,)-399(jak)-399(Han)1(k)55(a)-399(alb)-27(o)-400(w)28(\\363)-56(j)1(to)28(w)27(a!)-399(Ja)-399(c)-1(i)1(\\246)-400(nau)1(c)-1(z\\246)-400(jamor\\363)28(w,)-399(m)-1(a\\252p)-27(o)]TJ 0 -13.549 Td[(jedn)1(a,)-333(ju)1(\\273)-334(t)28(y)-333(m)-1(n)1(ie)-334(p)-27(opami\\246tas)-1(z,)-333(t\\252umoku!)-333({)-333(dar)1(\\252a)-334(si\\246)-334(n)1(a)-334(ca\\252y)-333(g\\252os)-1(.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-333(bu)1(c)27(h)1(n\\246\\252)-1(a)-333(p)1(\\252)-1(acze)-1(m,)-333(w)-1(y)1(pad)1(\\252)-1(a)-333(p)1(rz)-1(ed)-333(dom)-333(i)-333(p)-28(ogn)1(a\\252a)-334(w)-333(c)-1(a\\252y)-333(\\261w)-1(i)1(at.)]TJ 0 -13.549 Td[(A)-333(Jas)-1(i)1(o)-334(stan\\241\\252)-333(jakb)29(y)-333(ra\\273)-1(on)29(y)-333(pior)1(unem.)]TJ\nET\nendstream\nendobj\n2351 0 obj <<\n/Type /Page\n/Contents 2352 0 R\n/Resources 2350 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2350 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2355 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(738)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(47.)]TJ\nET\nendstream\nendobj\n2354 0 obj <<\n/Type /Page\n/Contents 2355 0 R\n/Resources 2353 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2340 0 R\n>> endobj\n2353 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2358 0 obj <<\n/Length 6773      \n>>\nstream\n1 0 0 1 87.94 628.42 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(48)]TJ/F17 10.909 Tf 0 -73.325 Td[(Naraz)-333(p)-28(orw)28(a\\252)-333(s)-1(i\\246)-333(z)-1(a)-333(ni\\241)-333(lec)-1(i)1(e)-1(\\242.)]TJ 27.879 -13.549 Td[({)-333(A)-334(to)-333(gd)1(z)-1(ie?)-334({)-333(w)27(ar)1(kn\\246\\252a)-333(gro\\271)-1(n)1(ie)-334(matk)56(a)-333(z)-1(ap)1(ie)-1(r)1(a)-56(j\\241c)-333(m)27(u)-333(sob\\241)-333(dr)1(z)-1(wi.)]TJ 0 -13.549 Td[({)-255(Dlacz)-1(ego)-256(j)1(\\241)-255(m)-1(ama)-255(w)-1(y)1(p)-28(\\246dzi\\252a,)-255(z)-1(a)-255(co?)-256(\\233e)-256(b)29(y\\252a)-256(d)1(la)-255(mnie)-256(t)1(ak)55(a)-255(p)-27(o)-28(cz)-1(ciw)27(a!)-255(T)83(o)]TJ -27.879 -13.549 Td[(ni)1(e)-1(spr)1(a)27(wiedli)1(w)-1(i)1(e)-1(,)-241(ja)-241(na)-241(to)-242(n)1(ie)-242(p)-28(ozw)28(ol\\246)-1(!)-241(C\\363\\273)-242(ona)-242(zrob)1(i\\252a)-242(z\\252e)-1(go?)-242(co?)-242({)-241(w)-1(y)1(krzykiw)28(a\\252)]TJ 0 -13.55 Td[(gor\\241cz)-1(k)28(o)28(w)28(o,)-333(w)-1(y)1(dzie)-1(r)1(a)-56(j)1(\\241c)-334(s)-1(i)1(\\246)-334(z)-334(t)28(w)27(ar)1(dyc)28(h)-333(r\\241k)-333(matc)-1(zyn)28(y)1(c)27(h)]TJ 27.879 -13.549 Td[({)-290(Us)-1(i)1(\\241d\\271)-291(sp)-27(ok)28(o)-56(jn)1(ie,)-290(b)-28(o)-290(za)27(w)28(o\\252am)-291(o)-55(jca...)-290(Za)-290(c)-1(o?)-290(Zaraz)-290(c)-1(i)-290(p)-27(o)28(w)-1(i)1(e)-1(m:)-290(mas)-1(z)-291(b)29(y\\242)]TJ -27.879 -13.549 Td[(ksi\\246dze)-1(m,)-452(to)-452(nie)-452(c)27(hc\\246,)-452(ab)28(y\\261)-453(p)-27(o)-28(d)-451(m)-1(oim)-452(dac)28(hem)-453(sp)-28(osobi)1(\\252)-453(sobie)-452(k)28(o)-28(c)27(h)1(anic\\246,)-452(nie)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(\\246)-385(do\\273y\\242)-385(takiego)-385(w)-1(st)28(yd)1(u)-385(i)-385(h)1(a\\253b)28(y)84(,)-385(\\273e)-1(b)28(y)-384(c)-1(i\\246)-385(lu)1(dzie)-386(wyt)28(yk)56(ali)-384(palcam)-1(i)1(!)-385(Dlatego)]TJ 0 -13.549 Td[(j\\241)-333(wyp)-27(\\246)-1(d)1(z)-1(i\\252am,)-333(rozumies)-1(z)-334(t)1(e)-1(raz?)]TJ 27.879 -13.549 Td[({)-256(W)-255(imi\\246)-256(Ojca)-256(i)-255(Sy)1(na!)-256(Co)-255(m)-1(ama)-256(m\\363)28(w)-1(i)1(!)-256({)-256(j)1(\\246)-1(k)1(n\\241\\252)-256(w)-256(n)1(a)-56(j)1(g\\252\\246)-1(b)1(s)-1(zym)-256(obu)1(rze)-1(n)1(iu.)]TJ 0 -13.55 Td[({)-488(M\\363)28(wi\\246)-489(to,)-488(c)-1(o)-488(wiem)-1(!)-488(Ju)1(\\261)-1(ci,)-488(wie)-1(d)1(z)-1(i)1(a\\252am)-1(,)-488(\\273e)-489(j\\241)-488(sp)-28(ot)28(yk)56(asz)-489(tu)-488(i)-488(\\363)28(w)-1(d)1(z)-1(i)1(e)-1(,)]TJ -27.879 -13.549 Td[(ale)-364(B\\363g)-363(m)-1(i)-363(\\261wiadk)1(ie)-1(m,)-363(jak)28(o)-363(ci\\246)-364(n)1(ie)-364(p)-27(o)-28(dejr)1(z)-1(ew)27(a\\252am)-363(o)-364(n)1(ic)-364(zdr)1(o\\273)-1(n)1(e)-1(go!)-363(My)1(\\261)-1(la\\252am)]TJ 0 -13.549 Td[(sobie)-298(za)28(w)-1(sze)-1(,)-297(\\273e)-298(s)-1(k)28(or)1(o)-298(m\\363)-56(j)-297(syn)-297(n)1(os)-1(i)-297(k)56(ap\\252a\\253)1(s)-1(k)56(\\241)-297(s)-1(u)1(kienk)28(\\246,)-298(t)1(o)-298(splami\\242)-298(si\\246)-298(j)1(e)-1(j)-296(nigd)1(y)]TJ 0 -13.549 Td[(ni)1(e)-403(p)-28(o)28(w)28(a\\273)-1(y!)-402(Ad)1(y)-403(b)29(ym)-403(ci\\246)-403(pr)1(z)-1(ekl\\246\\252a)-403(na)-402(wieki)-403(i)-402(wyd)1(ar\\252a)-403(ze)-403(se)-1(rca,)-402(c)27(ho)-27(\\242)-1(b)28(y)-402(wraz)]TJ 0 -13.549 Td[(p)-27(\\246)-1(kn)1(\\241\\242)-446(m)-1(i)1(a\\252o...)-445({)-446(Ocz)-1(y)-445(jej)-445(z)-1(ap)1(\\252on\\246\\252)-1(y)-445(tak)56(\\241)-446(\\261wi\\246)-1(t)1(\\241)-446(z)-1(gr)1(oz)-1(\\241)-445(i)-446(n)1(ieub\\252agan)1(ie)-1(m,)-445(\\273)-1(e)]TJ 0 -13.55 Td[(Jasio)-387(zdr)1(\\246)-1(t)28(wia\\252)-387(ze)-387(strac)27(h)29(u.)-386({)-387(Dop)1(iero)-387(K)1(oz)-1(\\252o)28(w)27(a)-386(ot)28(w)27(or)1(z)-1(y\\252a)-386(mi)-387(o)-28(czy)83(,)-386(a)-387(teraz)-387(j)1(u\\273)]TJ 0 -13.549 Td[(sam)-1(a)-333(z)-1(ob)1(ac)-1(zy\\252am,)-333(do)-333(c)-1(ze)-1(go)-333(c)27(h)1(c)-1(i)1(a\\252)-1(a)-333(ci\\246)-334(p)1(rz)-1(y)1(w)-1(i)1(e)-1(\\261\\242)-334(ta)-333(s)-1(u)1(k)55(a.)1(..)]TJ 27.879 -13.549 Td[(Roz)-1(p)1(\\252ak)56(a\\252)-331(s)-1(i)1(\\246)-331(\\273)-1(a\\252o\\261nie)-330(i)-331(w\\261r\\363)-28(d)-330(sz)-1(lo)-27(c)27(ha\\253)-330(i)-330(sk)55(ar)1(g)-331(n)1(a)-331(te)-330(okropn)1(e)-331(p)-27(os)-1(\\241d)1(z)-1(enia)]TJ -27.879 -13.549 Td[(z)-453(tak)56(\\241)-453(sz)-1(cz)-1(ero\\261c)-1(i\\241)-452(op)-28(o)28(wiedzia\\252)-453(wsz)-1(ystkie)-453(sp)-27(ot)27(y)1(k)55(an)1(ia,)-452(\\273)-1(e)-453(ca\\252)-1(k)1(ie)-1(m)-453(za)28(wie)-1(r)1(z)-1(y\\252a)-452(i)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(garn\\241)28(ws)-1(zy)-333(go)-334(d)1(o)-333(piersi)-333(j\\246\\252)-1(a)-333(m)28(u)-333(ob)-28(ciera\\242)-334(\\252zy)-334(a)-333(u)1(s)-1(p)-27(ok)56(a)-56(ja\\242.)]TJ 27.879 -13.55 Td[({)-421(Nie)-421(dziw)-421(si\\246)-1(,)-420(\\273)-1(e)-421(zl\\246)-1(k)1(\\252)-1(am)-421(si\\246)-421(o)-421(c)-1(i)1(e)-1(b)1(ie)-1(,)-420(pr)1(z)-1(ec)-1(ie\\273)-421(to)-421(\\252a)-56(j)1(du)1(s)-422(n)1(a)-56(j)1(gors)-1(zy)-421(w)28(e)]TJ -27.879 -13.549 Td[(ws)-1(i)1(..)]TJ 27.879 -13.549 Td[({)-333(Jagusia!)-333(Na)-56(j)1(gorsz)-1(y)-333(w)28(e)-334(ws)-1(i!)-333({)-333(Nie)-334(wierzy\\252)-333(w)-1(\\252asn)28(ym)-334(u)1(s)-1(zom.)]TJ 0 -13.549 Td[({)-333(Ws)-1(t)28(y)1(d)-333(m)-1(i)1(,)-334(al)1(e)-334(dla)-333(t)28(w)28(o)-56(jego)-333(dob)1(ra)-333(m)27(usz\\246)-334(c)-1(i)-333(wsz)-1(ystk)28(o)-333(roz)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)1(e)-1(\\242:)]TJ 0 -13.549 Td[(I)-484(op)-27(o)27(wiedzia\\252a)-484(o)-484(ni)1(e)-1(j)-484(p)1(rze)-1(r)1(\\363\\273)-1(n)1(e)-485(h)1(is)-1(tor)1(ie)-1(,)-483(nie)-484(s)-1(zc)-1(z\\246dz\\241c)-485(na)-484(d)1(ok\\252adk)28(\\246)-484(ni)]TJ -27.879 -13.55 Td[(pl)1(ot\\363)28(w)-1(,)-333(an)1(i)-334(t)1(e)-1(\\273)-334(n)1(a)-56(j)1(rozm)-1(ait)1(s)-1(zyc)27(h)-333(wym)28(ys\\252)-1(\\363)28(w.)]TJ 27.879 -13.549 Td[(Jasio)28(w)-1(i)-305(w\\252os)-1(y)-305(p)-27(o)28(w)-1(sta\\252y)-305(na)-305(g\\252)-1(o)28(wie,)-305(ja\\273e)-306(s)-1(i\\246)-306(p)-27(orw)28(a\\252)-306(z)-305(m)-1(iejsca)-306(i)-305(z)-1(ak)1(rz)-1(y)1(kn\\241\\252:)]TJ 0 -13.549 Td[({)-298(T)83(o)-298(niepr)1(a)28(w)-1(d)1(a,)-298(ni)1(gdy)-298(ni)1(e)-299(u)28(wierz\\246)-1(,)-298(\\273e)-1(b)29(y)-298(Jagusia)-298(b)28(y\\252a)-298(tak)56(a)-298(p)-28(o)-27(d\\252a,)-298(n)1(igdy)84(...)]TJ 0 -13.549 Td[({)-333(Matk)56(a)-333(c)-1(i)-333(to)-333(m)-1(\\363)28(wi,)-333(rozumies)-1(z?)-334(Z)-333(pal)1(c)-1(a)-333(s)-1(ob)1(ie)-334(tego)-334(n)1(ie)-334(wyss)-1(a\\252am.)]TJ 0 -13.549 Td[({)-400(B)-1(a)-55(jki)1(,)-401(n)1(ic)-401(wi\\246c)-1(ej!)-400(Pr)1(z)-1(ec)-1(i)1(e)-1(\\273)-401(to)-400(b)28(y\\252ob)28(y)-400(strasz)-1(n)1(e)-1(!)-400({)-400(z)-1(a\\252ama\\252)-401(rozpacz)-1(l)1(iwie)]TJ -27.879 -13.55 Td[(r\\246c)-1(e.)]TJ 27.879 -13.549 Td[({)-333(A)-334(cz)-1(em)27(u)1(\\273)-334(j)1(\\241)-334(b)1(roni)1(s)-1(z)-334(tak)-333(za)28(w)-1(zi\\246c)-1(i)1(e)-1(,)-333(co?)]TJ 0 -13.549 Td[({)-333(B)-1(r)1(oni\\246)-333(k)55(a\\273dego)-334(n)1(iew)-1(i)1(nn)1(e)-1(go,)-333(k)56(a\\273)-1(d)1(e)-1(go.)]TJ 330.353 -29.888 Td[(739)]TJ\nET\nendstream\nendobj\n2357 0 obj <<\n/Type /Page\n/Contents 2358 0 R\n/Resources 2356 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2356 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2362 0 obj <<\n/Length 9832      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(740)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(48.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(G\\252up)1(i\\261)-334(j)1(ak)-334(b)1(aran)1(.)-333({)-334(Rozgniew)27(a\\252a)-333(si\\246)-1(,)-333(d)1(otkni)1(\\246)-1(ta)-333(s)-1(r)1(o)-28(dze)-334(j)1(e)-1(go)-333(ni)1(e)-1(wiar\\241.)]TJ 0 -13.549 Td[({)-426(Jak)-425(m)-1(ama)-426(u)28(w)28(a\\273)-1(a.)-425(Ale)-427(j)1(e)-1(\\273e)-1(l)1(i)-426(Jagu)1(s)-1(ia)-426(tak)56(a)-426(n)1(a)-56(j)1(gors)-1(za,)-426(to)-425(c)-1(ze)-1(m)28(u)-426(mam)-1(a)]TJ -27.879 -13.549 Td[(p)-27(oz)-1(w)28(ala\\252a)-289(j)1(e)-1(j)-288(p)1(rzyc)27(h)1(o)-28(dzi\\242)-289(do)-288(nas?)-289({)-288(Z)-1(ap)-27(erz)-1(y)1(\\252)-289(si\\246)-289(z)-1(ap)1(alcz)-1(ywie)-289(k)1(ie)-1(j)-288(m\\252o)-28(dy)-288(k)28(ogu)1(t.)]TJ 27.879 -13.549 Td[({)-411(Ni)1(e)-411(b)-28(\\246d\\246)-411(si\\246)-411(t\\252umacz)-1(y\\252a)-410(pr)1(z)-1(ed)-410(tob\\241,)-410(kiedy\\261)-411(tak)1(i)-411(g\\252u)1(pi,)-410(\\273e)-412(n)1(icz)-1(ego)-411(n)1(ie)]TJ -27.879 -13.549 Td[(rozumies)-1(z,)-402(ale)-403(c)-1(i)-402(zap)-28(o)28(wiad)1(am)-1(:)-402(trzyma)-56(j)-402(si\\246)-403(o)-28(d)-402(n)1(ie)-1(j)-402(z)-403(d)1(alek)55(a,)-402(b)-27(o)-403(j)1(ak)-403(w)28(as)-403(gd)1(z)-1(ie)]TJ 0 -13.55 Td[(raze)-1(m)-398(przyd)1(ybi\\246,)-398(to)-399(c)28(ho)-28(cia\\273b)28(y)-399(p)1(rzy)-399(ca\\252e)-1(j)-398(wsi,)-398(a)-399(spra)28(wi\\246)-399(j)1(e)-1(j)-398(tak)56(\\241)-399(f)1(ryc\\363)28(wk)28(\\246)-1(,)-398(\\273)-1(e)]TJ 0 -13.549 Td[(mnie)-333(p)-28(op)1(am)-1(i)1(\\246)-1(ta)-333(z)-334(ru)1(s)-1(k)1(i)-334(mies)-1(i)1(\\241c)-1(!)-333(A)-333(i)-333(tobie)-333(m)-1(o\\273e)-334(si\\246)-334(pr)1(z)-1(y)-333(t)28(ym)-333(c)-1(o)-333(ob)-27(e)-1(rw)28(a\\242...)]TJ 27.879 -13.549 Td[(Od)1(e)-1(sz)-1(\\252a)-333(trzas)-1(k)56(a)-55(j\\241c)-334(d)1(rzw)-1(i)1(am)-1(i)-333(ze)-334(z)-1(\\252o\\261c)-1(i)1(.)]TJ 0 -13.549 Td[(A)-382(J)1(as)-1(io,)-381(na)28(w)28(e)-1(t)-381(ni)1(e)-382(roz)-1(u)1(m)-1(i)1(e)-1(j)1(\\241c)-1(,)-381(c)-1(zem)27(u)-381(go)-382(tak)-381(ob)-27(c)27(ho)-27(dzi)-382(Jagu)1(s)-1(i)1(na)-382(os\\252a)28(w)27(a,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(e\\273)-1(u)29(w)27(a\\252)-411(matcz)-1(yn)1(e)-411(s)-1(\\252o)28(w)27(a)-410(nib)28(y)-410(te)-411(k)28(olcz)-1(ate)-411(ost)27(y)84(,)-411(d)1(\\252a)28(w)-1(i)1(\\252)-411(s)-1(i\\246)-411(n)1(imi,)-411(syc\\241c)-412(d)1(usz)-1(\\246)]TJ 0 -13.549 Td[(ic)28(h)-333(pio\\252u)1(no)28(w)27(\\241)-333(gorzk)28(o\\261)-1(ci\\241.)]TJ 27.879 -13.55 Td[({)-434(T)83(o\\261)-434(t)28(y)-434(tak)56(a,)-434(Jagu)1(\\261)-1(!)-433(T)83(o\\261)-435(t)28(y)-433(tak)56(a!)-434({)-434(s)-1(k)56(ar)1(\\273)-1(y\\252)-434(si\\246)-434(z)-435(\\273a\\252os)-1(n)29(ym)-434(w)-1(y)1(rz)-1(u)1(tem)-1(,)]TJ -27.879 -13.549 Td[(\\273e)-480(gd)1(yb)28(y)-478(s)-1(i)1(\\246)-480(b)29(y\\252a)-479(w)-479(tej)-478(c)27(h)28(wili)-478(z)-1(j)1(a)28(w)-1(i)1(\\252)-1(a,)-478(o)-28(d)1(w)-1(r)1(\\363)-28(c)-1(i)1(\\252b)28(y)-479(si\\246)-479(o)-28(d)-478(ni)1(e)-1(j)-478(z)-1(e)-479(wzgard\\241)-478(i)]TJ 0 -13.549 Td[(gni)1(e)-1(w)28(e)-1(m.)-311(Alb)-27(o)-311(to)-312(m\\363g\\252)-311(s)-1(p)-27(o)-28(dziew)27(a\\242)-311(s)-1(i\\246)-311(c)-1(ze)-1(go\\261)-311(p)-28(o)-28(d)1(obn)1(e)-1(go?)-311(\\233e)-312(na)28(w)28(e)-1(t)-311(w)-311(m)27(y\\261lac)27(h)]TJ 0 -13.549 Td[(ni)1(e)-265(p)-28(osta\\252y)-264(m)27(u)-264(taki)1(e)-265(s)-1(tr)1(as)-1(zne)-265(r)1(z)-1(ec)-1(zy)83(.)-264(Roz)-1(w)28(a\\273a\\252)-265(je)-265(j)1(e)-1(d)1(nak)-264(z)-265(coraz)-265(wi\\246ks)-1(z\\241)-265(u)1(dr)1(\\246)-1(k)56(\\241)]TJ 0 -13.549 Td[(i)-391(j)1(u\\273)-391(s)-1(t)1(o)-391(raz)-1(y)-390(s)-1(i)1(\\246)-392(zryw)28(a\\252,)-391(ab)28(y)-390(do)-391(n)1(ie)-1(j)-390(bie\\273y\\242)-1(,)-390(ab)28(y)-391(stan\\241\\242)-391(do)-391(o)-27(c)-1(z\\363)28(w)-392(i)-390(rzuci\\242)-392(j)1(e)-1(j)]TJ 0 -13.55 Td[(w)-405(t)28(w)28(arz)-405(t\\246)-405(c)-1(a\\252\\241)-404(litan)1(i\\246)-405(grze)-1(c)28(h\\363)28(w...)-404(Nie)-1(c)28(h)-404(p)-28(os\\252ys)-1(zy)83(,)-404(co)-405(m\\363)27(wi\\241)-404(o)-405(n)1(ie)-1(j)1(,)-405(i)-404(ni)1(e)-1(c)28(ha)-56(j)]TJ 0 -13.549 Td[(si\\246)-404(wypr)1(z)-1(e,)-404(j)1(e)-1(\\273e)-1(l)1(i)-404(mo\\273)-1(e...)-403(Niec)27(h)-403(g\\252o\\261)-1(n)1(o)-404(p)-27(o)28(w)-1(i)1(e)-1(:)-403(niepr)1(a)28(w)-1(d)1(a!)-404(D)1(uma\\252)-404(gor\\241cz)-1(k)28(o)28(w)28(o,)]TJ 0 -13.549 Td[(ale)-379(c)-1(or)1(az)-380(g\\252\\246)-1(b)1(iej)-379(wierz)-1(y)1(\\252)-380(w)-379(j)1(e)-1(j)-379(n)1(iew)-1(i)1(nn)1(o\\261)-1(\\242)-379(i)-379(ogarni)1(a\\252)-380(go)-379(\\273al,)-379(i)-379(wsta)28(w)27(a\\252a)-379(w)-379(nim)]TJ 0 -13.549 Td[(cic)27(h)1(a)-327(t\\246s)-1(kn)1(ota,)-326(i)-327(b)1(ud)1(z)-1(i\\252y)-326(s)-1(i)1(\\246)-327(jaki)1(e)-1(\\261)-327(s\\252)-1(o)-27(dki)1(e)-1(,)-326(rad)1(os)-1(n)1(e)-327(przyp)-27(om)-1(n)1(ienia)-326(s)-1(p)-27(ot)28(yk)56(a\\253,)-326(a)]TJ 0 -13.549 Td[(jak)1(i\\261)-388(s\\252onec)-1(zn)28(y)-387(tu)1(m)-1(an)-386(niep)-27(o)-56(j\\246tej)-387(rozk)28(os)-1(zy)-387(pr)1(z)-1(y)1(s)-1(\\252oni)1(\\252)-388(m)28(u)-387(o)-28(czy)-387(i)-387(s)-1(erce)-388(d)1(r\\246)-1(czy\\252,)]TJ 0 -13.55 Td[(\\273e)-334(nar)1(az)-334(s)-1(i)1(\\246)-334(z)-1(erw)28(a\\252)-334(i)-333(zac)-1(z\\241\\252)-334(k)1(rz)-1(y)1(c)-1(ze)-1(\\242)-333(jakb)28(y)-333(d)1(o)-334(wsz)-1(ystki)1(e)-1(go)-333(\\261)-1(wiata:)]TJ 27.879 -13.549 Td[({)-333(Nie)-1(p)1(ra)28(wda!)-333(n)1(ie)-1(p)1(ra)28(wda!)-333(ni)1(e)-1(p)1(ra)28(w)-1(d)1(a!)]TJ 0 -13.549 Td[(Ale)-383(p)1(rzy)-382(k)28(olac)-1(j)1(i)-382(upar)1(c)-1(i)1(e)-383(patr)1(z)-1(y\\252)-382(w)-383(talerz,)-382(un)1(ik)56(a)-56(j)1(\\241c)-383(m)-1(atczyn)28(yc)28(h)-382(o)-28(c)-1(z\\363)28(w)-1(,)-382(i)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(cia\\273)-359(m)-1(\\363)28(wion)1(o)-359(o)-358(\\261)-1(mierci)-359(Jagat)28(y)84(,)-358(nie)-359(wtr)1(\\241c)-1(a\\252)-359(si\\246)-359(d)1(o)-359(r)1(oz)-1(mo)28(w)-1(y)84(,)-358(a)-359(j)1(e)-1(n)1(o)-359(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.549 Td[(mat)28(yjasi\\252,)-278(pr)1(z)-1(ebiera\\252)-278(w)-278(jadl)1(e)-1(,)-278(spr)1(z)-1(ec)-1(iwia\\252)-278(si\\246)-279(siostrom)-279(wyr)1(z)-1(ek)56(a\\252)-279(n)1(a)-278(gor\\241c)-279(w)-278(izbie)]TJ 0 -13.55 Td[(i)-305(s)-1(k)28(oro)-305(t)28(ylk)28(o)-306(spr)1(z)-1(\\241tn)1(\\246)-1(l)1(i)-306(mis)-1(k)1(i,)-306(p)-27(on)1(i\\363s)-1(\\252)-306(si\\246)-306(n)1(a)-306(pl)1(e)-1(b)1(ani\\246)-306({)-306(p)1(rob)-27(os)-1(zc)-1(z)-306(siedzia\\252)-306(se)-307(n)1(a)]TJ 0 -13.549 Td[(gank)1(u)-284(z)-284(f)1(a)-56(j)1(\\241)-284(w)-284(z\\246)-1(b)1(ac)27(h)-283(i)-284(cos)-1(i)1(k)-284(p)1(iln)1(ie)-284(p)-28(ogad)1(yw)27(a\\252)-283(z)-284(Jam)27(b)1(ro\\273)-1(em,)-284(ob)1(s)-1(ze)-1(d)1(\\252)-284(ic)28(h)-284(z)-284(d)1(ala)]TJ 0 -13.549 Td[(i)-333(s)-1(p)1(ac)-1(eru)1(j\\241c)-334(k)56(a)-55(j\\261)-334(p)-27(o)-28(d)-333(d)1(rze)-1(win)1(am)-1(i)-333(f)1(ras)-1(ob)1(liwie)-333(m)-1(edyto)28(w)28(a\\252.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(to)-333(i)-334(p)1(ra)28(wda!)-333(Mama)-333(b)28(y)-333(s)-1(ob)1(ie)-334(tego)-333(nie)-334(st)28(w)27(or)1(z)-1(y\\252a.)]TJ 0 -13.549 Td[(Z)-227(ok)1(ie)-1(n)-226(p)1(le)-1(b)1(anii)-226(la\\252y)-226(s)-1(i\\246)-227(sm)27(u)1(gi)-227(\\261w)-1(i)1(at\\252a)-227(na)-226(klom)28(b,)-226(gdzie)-227(baraszk)28(o)27(w)28(a\\252y)-227(p)1(ie)-1(ski)]TJ -27.879 -13.55 Td[(w)28(arc)-1(z\\241c)-334(n)1(a)-334(si\\246)-334(p)1(rzyjaciels)-1(k)28(o,)-333(a)-333(z)-334(gan)1(ku)-333(roznosi\\252)-334(si\\246)-334(gr)1(ub)1(ac)27(hn)29(y)-333(g\\252)-1(os.)]TJ 27.879 -13.549 Td[({)-333(A)-334(j)1(\\246)-1(cz)-1(mie\\253)-333(na)-333(\\221)1(w)-1(i)1(\\253s)-1(k)1(im)-334(Do\\252ku)-332(ob)-28(ejr)1(z)-1(a\\252e\\261)-1(?)]TJ 0 -13.549 Td[({)-333(S\\252oma)-334(j)1(e)-1(sz)-1(cze)-334(\\271)-1(d)1(z)-1(i)1(e)-1(b)1(k)27(o)-333(zie)-1(l)1(ona,)-333(ale)-334(ziar)1(no)-333(ju)1(\\273)-334(kiej)-333(piepr)1(z)-1(.)]TJ 0 -13.549 Td[({)-417(T)83(rza)-418(b)29(y)-417(c)-1(i)-417(j)1(utro)-417(p)1(rz)-1(ewietrzy\\242)-418(orn)1(at)28(y)83(,)-417(n)1(a)-418(n)1(ic)-418(sple\\261niej\\241.)-417(Kom\\273\\246)-418(i)-417(alb)28(y)]TJ -27.879 -13.549 Td[(zanie\\261)-272(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)1(,)-272(n)1(ie)-1(c)28(h)-272(J)1(agusia)-272(u)1(pierze)-1(.)-271(Ale)-272(kto)-272(t)1(o)-272(b)28(y\\252)-271(p)-28(o)-272(p)-27(o\\252ud)1(ni)1(u)-272(z)-272(kr)1(o)28(w)27(\\241?)]TJ 27.879 -13.549 Td[({)-421(Kt\\363ry)1(\\261)-422(z)-422(Mo)-28(d)1(licy)83(.)-421(M)1(\\252)-1(y)1(narz)-421(s)-1(p)-27(otk)56(a\\252)-422(go)-421(na)-421(mo\\261)-1(cie)-422(i)-421(pr)1(\\363b)-28(o)28(w)28(a\\252)-422(p)1(rz)-1(eci\\241-)]TJ -27.879 -13.55 Td[(gn\\241\\242)-343(do)-343(s)-1(w)28(o)-56(j)1(e)-1(go)-343(b)28(yk)56(a,)-343(obiec)-1(y)1(w)27(a\\252)-343(go)-344(n)1(a)27(w)28(e)-1(t)-343(d)1(opu\\261ci\\242)-344(z)-1(a)-343(dar)1(m)-1(o,)-343(ale)-343(c)27(h\\252op)-343(w)28(ola\\252)]TJ 0 -13.549 Td[(nasze)-1(go..)1(.)]TJ 27.879 -13.549 Td[({)-290(Ma)-291(r)1(oz)-1(u)1(m)-1(,)-290(za)-291(r)1(ub)1(la)-291(b)-27(\\246dzie)-291(mia\\252)-291(p)1(ro\\014t)-290(n)1(a)-291(ca\\252e)-291(\\273)-1(ycie,)-290(przyn)1(a)-56(jmn)1(ie)-1(j)-290(k)1(r\\363)28(w)]TJ -27.879 -13.549 Td[(si\\246)-334(do)-27(c)27(ho)28(w)28(a.)-333(Nie)-334(wies)-1(z,)-333(K\\252\\246)-1(b)28(y)-333(wyp)1(ra)28(wi\\241)-333(to)-334(p)-27(ogrze)-1(b)-333(J)1(agac)-1(ie?)]TJ 27.879 -13.549 Td[({)-333(Przec)-1(iek)-333(os)-1(ta)28(wi\\252a)-333(na)-333(p)-28(o)-27(c)27(ho)28(w)28(e)-1(k)-333(ca\\252e)-334(dzies)-1(i\\246\\242)-334(z\\252ot)28(yc)27(h.)]TJ 0 -13.55 Td[({)-414(P)28(o)-28(c)27(h)1(o)27(w)28(a)-414(s)-1(i\\246)-415(j)1(\\241)-415(z)-415(p)1(arad)1(\\241)-415(jak)-414(gosp)-28(o)-27(dyn)1(i\\246)-1(.)-414(A)-414(p)-28(o)28(wiedz)-415(tam)-415(b)1(rac)28(kim,)-415(\\273e)]TJ -27.879 -13.549 Td[(w)28(os)-1(ku)-332(im)-333(spr)1(z)-1(edam,)-333(n)1(iec)27(h)-332(s)-1(ob)1(ie)-333(t)28(ylk)28(o)-333(d)1(okup)1(i\\241)-333(b)1(lic)28(ho)28(w)27(an)1(e)-1(go.)-332(Jut)1(ro)-333(M)1(ic)27(h)1(a\\252)-333(ob-)]TJ\nET\nendstream\nendobj\n2361 0 obj <<\n/Type /Page\n/Contents 2362 0 R\n/Resources 2360 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2360 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2365 0 obj <<\n/Length 9274      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(741)]TJ -358.232 -35.866 Td[(rz\\241dzi)-231(w)-231(k)28(o\\261)-1(ciele)-1(,)-231(a)-231(t)28(y)-231(i)1(d\\271)-231(z)-232(lu)1(d\\271m)-1(i)-231(d)1(o)-231(\\273)-1(n)1(iw)28(a)-232(i)-230(p)-28(ogan)1(ia)-56(j)1(,)-231(bar)1(om)-1(etr)-231(j)1(aki\\261)-231(niep)-28(ewn)28(y)84(,)]TJ 0 -13.549 Td[(mo\\273)-1(e)-334(b)29(y\\242)-334(bu)1(rza!)-333(Kiedy\\273)-333(to)-334(si\\246)-334(zbi)1(e)-1(ra)-333(k)28(ompan)1(ia)-334(d)1(o)-333(C)-1(z\\246)-1(sto)-28(c)28(ho)28(wy?)]TJ 27.879 -13.549 Td[({)-333(W)83(ot)28(yw)28(\\246)-334(zam)-1(\\363)28(wi\\252y)-333(na)-333(c)-1(zw)28(artek,)-333(to)-334(j)1(u\\261c)-1(i)1(,)-333(z)-1(araz)-333(p)-28(o)-333(ms)-1(zy)-333(rusz)-1(\\241.)1(..)]TJ 0 -13.549 Td[(Jasia)-292(dr)1(a\\273)-1(n)1(i\\252a)-292(n)1(ie)-1(co)-292(ta)-292(r)1(oz)-1(mo)28(w)27(a,)-291(o)-28(dsz)-1(ed\\252)-292(d)1(alej)-292(a\\273)-292(p)-27(o)-28(d)-292(n)1(iski)-292(p)1(le)-1(cion)28(y)-291(p\\252ot,)]TJ -27.879 -13.549 Td[(dziel\\241cy)-285(sad)-284(o)-28(d)-283(pasie)-1(k)1(i,)-284(na)-284(w)28(\\241s)-1(k)56(\\241,)-284(z)-1(ar)1(os)-1(\\252\\241)-284(dr)1(\\363\\273)-1(k)28(\\246)-285(i)-284(spacero)28(w)27(a\\252)-284(tr\\241ca)-56(j)1(\\241c)-285(ni)1(e)-1(ki)1(e)-1(d)1(y)]TJ 0 -13.55 Td[(g\\252o)28(w)27(\\241)-333(w)-334(ob)29(w)-1(is\\252e)-1(,)-333(ci\\246\\273)-1(ki)1(e)-334(o)-28(d)-333(j)1(ab\\252ek)-334(ga\\252\\246z)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-429(b)28(y)1(\\252)-430(n)1(agrzan)28(y)-429(i)-429(du)1(s)-1(zn)28(y)84(,)-429(pac)27(h)1(ni)1(a\\252)-430(mi\\363)-28(d)1(,)-429(i)-429(\\273)-1(y)1(to)-430(sk)28(osz)-1(on)1(e)-430(k)56(a)-56(j)1(\\261)-430(z)-1(a)]TJ -27.879 -13.549 Td[(ogro)-27(dami,)-461(p)-28(o)28(wietrze)-462(b)28(y\\252o)-461(ci\\246)-1(\\273kie,)-461(pr)1(z)-1(ej\\246te)-462(spiek)55(\\241,)-461(b)1(ielone)-461(pni)1(e)-462(ma)-56(jacz)-1(y)1(\\252y)83(.)-461(w)]TJ 0 -13.549 Td[(mrok)56(ac)27(h)-314(n)1(ib)28(y)-314(gz\\252a)-314(p)-28(or)1(oz)-1(wies)-1(zane)-314(do)-314(p)1(rze)-1(sc)27(hn)1(i\\246c)-1(ia,)-313(k)55(a)-55(j\\261)-314(nad)-314(sta)28(w)27(em)-314(nasz)-1(cz)-1(eki-)]TJ 0 -13.549 Td[(w)28(a\\252)-1(y)-336(p)1(s)-1(y)-336(wie)-1(l)1(c)-1(e)-337(sw)27(ar)1(liwie,)-337(a)-336(o)-28(d)-336(K\\252\\246)-1(b)-27(\\363)28(w)-337(b)1(uc)27(h)1(a\\252y)-337(n)1(iekiej)-336(\\273)-1(a\\252obn)1(e)-1(,)-336(j)1(\\246)-1(kli)1(w)27(e)-337(za)28(w)27(o-)]TJ 0 -13.549 Td[(dzenia.)]TJ 27.879 -13.55 Td[(Jasio,)-304(s)-1(t)1(rud)1(z)-1(on)29(y)-304(w)-1(r)1(e)-1(sz)-1(cie)-305(d)1(e)-1(l)1(ib)-28(eracjami,)-304(za)28(w)-1(r)1(\\363)-28(c)-1(i)1(\\252)-305(j)1(u\\273)-304(ku)-304(domo)28(wi,)-304(gdy)-304(n)1(a-)]TJ -27.879 -13.549 Td[(raz)-333(p)-28(os\\252ys)-1(za\\252)-334(j)1(akb)28(y)-333(z)-334(p)1(as)-1(i)1(e)-1(ki)-333(j)1(akie\\261)-334(pr)1(z)-1(yd)1(usz)-1(on)1(e)-1(,)-333(gor)1(\\241c)-1(e)-334(sze)-1(p)1(t)27(y)84(.)]TJ 27.879 -13.549 Td[(Nie)-334(d)1(o)-56(j)1(rza\\252)-334(n)1(ik)28(ogo,)-333(ale)-334(p)1(rz)-1(y)1(s)-1(tan)1(\\241\\252)-334(i)-333(s\\252uc)27(h)1(a\\252)-334(z)-333(z)-1(ap)1(art)28(ym)-334(tc)28(hem)-1(.)]TJ 0 -13.549 Td[({)-333(...b)29(y\\261)-334(skis\\252)-1(.)1(..)-333(pu)1(\\261)-1(\\242)-334(me,)-334(p)1(u\\261\\242)-1(,)-333(b)-27(o)-333(b)-28(\\246d\\246)-333(krzyc)-1(ze)-1(\\242!..)1(.)]TJ 0 -13.549 Td[({)-333(...g\\252u)1(pia.)1(..)-333(C)-1(ze)-1(go)-333(si\\246)-334(wyd)1(z)-1(ierasz)-1(?)-333(Krzywdy)-333(ci)-333(to)-334(c)28(hc\\246)-1(,)-333(kr)1(z)-1(ywd)1(y?...)]TJ 0 -13.55 Td[({)-333(...j)1(e)-1(sz)-1(cze)-334(kto)-333(p)-28(os\\252ysz)-1(y)84(.)-333(Lab)-28(oga,)-333(d)1(y\\242)-334(mi)-333(z)-1(iob)1(ra)-333(z)-1(gn)1(ie)-1(cies)-1(z...)-333(p)1(u\\261\\242)-1(..)1(.)]TJ 0 -13.549 Td[(Pi)1(e)-1(tr)1(e)-1(k)-372(Boryn)1(\\363)27(w)-372(i)-372(ks)-1(i)1(\\246)-1(\\273a)-373(M)1(aryn)1(a!)-372(R)-1(ozp)-27(oz)-1(n)1(a\\252)-373(ic)28(h)-372(p)-28(o)-372(g\\252os)-1(ac)28(h)-372(i)-372(o)-28(dsz)-1(ed\\252)-372(z)]TJ -27.879 -13.549 Td[(u\\261mie)-1(c)28(hem)-1(,)-439(l)1(e)-1(cz)-440(p)-27(o)-440(p)1(aru)-439(kr)1(ok)55(ac)28(h)-439(z)-1(a)28(wr\\363)-27(c)-1(i\\252)-439(na)-439(da)28(wne)-439(m)-1(i)1(e)-1(j)1(s)-1(ce)-440(i)-439(nas\\252uc)27(h)1(iw)28(a\\252)-440(z)]TJ 0 -13.549 Td[(dziwni)1(e)-282(b)1(ij\\241cym)-281(s)-1(erce)-1(m.)-281(G\\246s)-1(te)-281(krze)-282(i)1(c)27(h)-281(p)1(rzys)-1(\\252an)1(ia\\252y)-281(i)-281(cie)-1(mni)1(c)-1(a,)-281(n)1(ie)-282(sp)-27(os)-1(\\363b)-280(b)28(y\\252o)]TJ 0 -13.549 Td[(roze)-1(zna\\242,)-320(al)1(e)-321(coraz)-320(wyra\\271niej)-320(s\\252ysz)-1(a\\252)-320(kr)1(\\363tkie,)-320(r)1(w)27(an)1(e)-321(i)-319(w)27(arem)-320(kip)1(i\\241c)-1(e)-320(s\\252o)27(w)28(a,)-320(b)1(u-)]TJ 0 -13.55 Td[(c)27(h)1(a\\252y)-281(kiej)-281(p\\252omie)-1(n)1(ie,)-281(a)-282(n)1(iekiedy)-281(pr)1(z)-1(ez)-282(d\\252u)1(gie)-282(c)28(h)28(wile)-282(wrza\\252y)-281(gor\\241cz)-1(k)28(o)28(w)27(e,)-281(dy)1(s)-1(z\\241c)-1(e)]TJ 0 -13.549 Td[(o)-28(d)1(dec)27(h)28(y)-333(i)-333(sz)-1(amotania.)]TJ 27.879 -13.549 Td[({)-322(...tak)1(usie)-1(\\253)1(k)56(\\241,)-323(j)1(ak)-322(m)-1(a)-322(Jagusia,)-322(ob)1(ac)-1(zys)-1(z...)-322(in)1(o)-323(mi)-322(ni)1(e)-323(br)1(o\\253,)-322(Mary)1(\\261)-1(,)-322(in)1(o...)]TJ 0 -13.549 Td[({)-333(...zarn)1(o)-334(ci)-333(z)-1(a)28(wierz)-1(\\246...)-333(b)-27(o)-333(ja)-333(to)-333(tak)55(a.)1(..)-333(lob)-27(oga,)-334(d)1(a)-56(j)1(\\273)-1(e)-333(o)-28(dzipn)1(\\241\\242)-1(.)1(..)]TJ 0 -13.549 Td[(Zas)-1(zele)-1(\\261c)-1(i)1(a\\252y)-461(gw)27(a\\252to)28(wnie)-461(kr)1(z)-1(aki)1(,)-461(c)-1(o\\261)-461(c)-1(i)1(\\246)-1(\\273k)28(o)-461(z)-1(w)28(ali\\252o)-461(si\\246)-462(n)1(a)-461(z)-1(i)1(e)-1(m,)-461(ale)-461(p)-28(o)]TJ -27.879 -13.55 Td[(c)27(h)29(w)-1(i)1(li)-226(zatrz\\246)-1(s\\252y)-226(s)-1(i)1(\\246)-1(,)-226(i)-225(z)-1(n)1(o)28(w)-1(u)-225(kr\\363t)1(kie)-1(,)-225(rozpalon)1(e)-227(sz)-1(ept)28(y)84(,)-226(\\261c)-1(i)1(s)-1(zone)-226(\\261)-1(miec)27(h)28(y)-225(i)-226(c)-1(a\\252u)1(nki)1(.)]TJ 27.879 -13.549 Td[({)-239(...)1(\\273)-1(e)-239(ju)1(\\273)-240(i)-239(n)1(ie)-239(s)-1(ip)1(iam,)-239(a)-239(ino)-239(ci\\246giem)-240(o)-239(tob)1(ie)-1(,)-238(Mary)1(\\261)-1(..)1(.)-239(o)-239(tobie,)-239(n)1(a)-56(j)1(m)-1(il)1(e)-1(j)1(s)-1(za...)]TJ 0 -13.549 Td[({)-268(..)1(.k)56(a\\273)-1(d)1(e)-1(j)-267(pra)28(wisz)-268(to)-268(s)-1(amo...)-267(c)-1(ze)-1(k)56(a\\252am)-268(c)-1(i)1(\\246)-269(d)1(o)-268(p)-27(\\363\\252no)-28(c)28(k)55(a.)1(..)-268(u)-267(dr)1(ugiej)-268(b)29(y\\252e)-1(\\261...)]TJ 0 -13.549 Td[(Jasio)-357(j)1(akb)28(y)-356(z)-357(n)1(ag\\252a)-357(og\\252u)1(c)27(h\\252)-356(i)-356(z)-1(atr)1(z)-1(\\241s\\252)-357(si\\246)-357(ki)1(e)-1(b)28(y)-356(osik)56(a.)-357(W)1(iater)-356(p)-28(osz)-1(ed\\252)-356(p)-28(o)]TJ -27.879 -13.549 Td[(sadzie)-1(,)-441(zaru)1(c)27(h)1(a\\252)-1(y)-440(s)-1(i\\246)-441(dr)1(z)-1(ew)27(a)-441(i)-441(zagw)27(ar)1(z)-1(y\\252y)-440(c)-1(ic)28(h)28(u\\261k)28(o)-441(kieb)28(y)-441(w)28(e)-442(\\261pik)1(u,)-441(z)-441(pasie)-1(k)1(i)]TJ 0 -13.55 Td[(za)27(wia\\252y)-377(takie)-377(m)-1(io)-27(dn)1(e)-378(z)-1(ap)1(ac)27(h)28(y)84(,)-378(j)1(a\\273)-1(e)-377(go)-378(spar\\252o)-377(p)-28(o)-27(d)-377(piersiami,)-377(a)-378(o)-28(cz)-1(y)-377(n)1(ala\\252y)-377(s)-1(i\\246)]TJ 0 -13.549 Td[(\\252z)-1(ami,)-295(pr)1(z)-1(ej\\241\\252)-295(go)-296(jak)1(i\\261)-296(dy)1(gotliwy)-296(w)28(ar)-295(i)-296(cosik)-296(t)1(ak)-296(lu)1(b)-27(e)-1(go)-296(j)1(\\246)-1(\\252o)-295(ud)1(r\\246c)-1(za\\242)-1(,)-295(\\273)-1(e)-296(i)1(no)-296(si\\246)]TJ 0 -13.549 Td[(raz)-333(p)-28(o)-333(raz)-334(p)1(rze)-1(ci\\241)-28(ga\\252)-333(a)-334(wzdyc)28(ha\\252.)]TJ 27.879 -13.549 Td[({)-333(...t)28(yl)1(a)-334(mi)-333(do)-333(ni)1(e)-1(j)1(,)-334(co)-333(do)-333(t)28(yc)27(h)-333(gwiazd\\363)28(w...)-333(Jasia)-333(s)-1(e)-334(t)1(e)-1(ra)-333(n)1(am)-1(\\363)28(wi\\252a...)]TJ 0 -13.549 Td[(Op)1(rzytomnia\\252,)-313(w)27(cisn\\241\\252)-313(s)-1(i\\246)-314(w)-313(p\\252ot)-313(i)-314(n)1(as)-1(\\252u)1(c)27(hi)1(w)27(a\\252)-313(c)-1(or)1(az)-314(s)-1(il)1(niej)-313(rozdygotan)29(y)83(.)]TJ 0 -13.549 Td[({)-226(...p)1(ra)28(wda..)1(.)-226(c)-1(o)-226(n)1(o)-28(c)-227(wyc)27(h)1(o)-28(d)1(z)-1(i)-226(d)1(o)-227(n)1(iego...)-226(Koz\\252o)28(w)27(a)-226(pr)1(z)-1(yd)1(yb)1(a\\252)-1(a)-226(ic)28(h)-226(w)-226(le)-1(sie...)]TJ 0 -13.55 Td[(\\221wiat)-241(s)-1(i)1(\\246)-243(z)-242(ni)1(m)-242(z)-1(akr)1(\\246)-1(ci\\252)-242(i)-242(r)1(oz)-1(ciem)-1(n)1(ia\\252o)-242(m)27(u)-241(w)-242(o)-28(cz)-1(ac)28(h,)-241(le)-1(d)1(wie)-242(s)-1(i\\246)-242(ju)1(\\273)-242(trzyma\\252)]TJ -27.879 -13.549 Td[(na)-313(nogac)28(h,)-313(a)-314(tam)-314(w)-313(g\\241s)-1(zc)-1(zac)27(h)-313(w)28(c)-1(i\\241\\273)-314(mlask)56(a\\252)-1(y)-313(d)1(ra\\273)-1(n)1(i\\241co)-314(ca\\252unk)1(i,)-313(prze)-1(\\261mie)-1(c)28(h)28(y)-313(i)]TJ 0 -13.549 Td[(sz)-1(ept)28(y)84(...)]TJ 27.879 -13.549 Td[({)-333(...to)-333(ci)-333(\\252)-1(eb)-333(wrz\\241tkiem)-334(op)1(arz)-1(\\246)-333(kieb)28(y)-333(te)-1(m)28(u)-333(psu.)1(..)]TJ 0 -13.549 Td[({)-333(...i)1(no)-333(te)-1(n)-333(r)1(az)-1(ik)1(,)-333(na)-56(j)1(milejsz)-1(a..)1(.)-334(d)1(y\\242)-334(ci\\246)-334(n)1(ie)-334(u)1(krzywdz\\246)-1(..)1(.)-333(obacz)-1(ysz)-1(.)1(..)]TJ 0 -13.55 Td[({)-333(...P)1(ietru\\261,)-333(lob)-27(oga,)-333(Pietru)1(\\261)-1(..)1(.)]TJ 0 -13.549 Td[(Jasio)-282(o)-27(dsk)28(o)-28(c)-1(zy\\252)-282(i)-281(uciek)56(a\\252)-282(ni)1(b)28(y)-282(wiatr)1(,)-282(r)1(oz)-1(d)1(z)-1(i)1(e)-1(ra)-55(j\\241c)-282(sutan)1(n\\246)-282(o)-281(krzaki,)-281(wpad)1(\\252)]TJ\nET\nendstream\nendobj\n2364 0 obj <<\n/Type /Page\n/Contents 2365 0 R\n/Resources 2363 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2363 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2368 0 obj <<\n/Length 9912      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(742)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(48.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(do)-337(dom)28(u)-337(cz)-1(erw)28(o)-1(n)29(y)-337(jak)-337(bu)1(rak,)-337(obl)1(an)28(y)-337(p)-28(otem)-338(i)-337(zgor\\241cz)-1(k)28(o)28(w)27(an)29(y)83(,)-337(sz)-1(cz)-1(\\246\\261)-1(ciem)-338(ni)1(kto)]TJ 0 -13.549 Td[(ni)1(e)-384(zwr\\363)-28(ci\\252)-383(na)-383(n)1(ie)-1(go)-383(u)29(w)27(agi.)-383(M)1(atk)56(a)-383(s)-1(iedzia\\252a)-383(p)1(rz)-1(ed)-383(k)28(omin)1(e)-1(m)-383(z)-384(k)56(\\241d)1(z)-1(iel\\241)-383(i)-383(p)1(rz\\246)-1(-)]TJ 0 -13.549 Td[(d\\252a)-454(\\261)-1(p)1(iew)27(a)-55(j\\241c)-455(z)-455(cic)27(h)1(a:)-455(\\377)28(Wsz)-1(y)1(s)-1(tki)1(e)-455(nasz)-1(e)-455(d)1(z)-1(i)1(e)-1(n)1(ne)-455(spra)28(wy\",)-454(s)-1(i)1(os)-1(tr)1(y)-455(wt\\363ro)28(w)28(a\\252y)]TJ 0 -13.549 Td[(cie)-1(n)1(iu\\261k)28(o)-333(wraz)-334(z)-334(M)1(ic)27(h)1(a\\252e)-1(m,)-333(kt\\363r)1(e)-1(n)-333(p)1(uco)27(w)28(a\\252)-333(k)28(o\\261)-1(cielne)-333(lic)27(h)29(tarze)-1(,)-333(o)-56(j)1(c)-1(i)1(e)-1(c)-333(ju\\273)-333(s)-1(p)1(a\\252.)]TJ 27.879 -13.549 Td[(Jasio)-392(za)28(w)27(ar)1(\\252)-392(s)-1(i)1(\\246)-392(w)-392(s)-1(w)28(oim)-392(p)-27(ok)28(o)-56(j)1(u)-392(i)-391(zabra\\252)-391(s)-1(i\\246)-392(d)1(o)-392(b)1(rew)-1(i)1(arz)-1(a,)-391(ale)-392(c\\363\\273)-1(,)-391(kiej)]TJ -27.879 -13.55 Td[(c)27(h)1(o)-28(cia\\273)-247(up)1(arcie)-247(p)-27(o)27(wtar)1(z)-1(a\\252)-246(\\252)-1(aci\\253)1(s)-1(ki)1(e)-247(s)-1(\\252o)28(w)28(a,)-247(to)-246(i)-246(tak)-246(c)-1(i\\246giem)-247(s)-1(\\252y)1(s)-1(za\\252)-247(tam)28(te)-247(s)-1(zept)28(y)-246(i)]TJ 0 -13.549 Td[(tam)28(te)-231(ca\\252un)1(ki,)-230(\\273e)-230(w)-230(k)28(o)-1(\\253)1(c)-1(u)-229(spar\\252)-230(cz)-1(o\\252o)-230(n)1(a)-230(ksi\\241\\273c)-1(e)-230(i)-230(d)1(a\\252)-230(s)-1(i\\246)-230(ju)1(\\273)-231(p)-27(on)1(ie)-1(w)28(oli)-230(j)1(ak)28(o)28(w)-1(y)1(m)-1(\\261)]TJ 0 -13.549 Td[(m)27(y)1(\\261)-1(lom,)-333(kieb)28(y)-333(t)28(ym)-334(wic)28(hr)1(om)-334(pal)1(\\241c)-1(ym.)]TJ 27.879 -13.549 Td[({)-419(Wi\\246c)-420(to)-419(tak?)-420({)-419(du)1(m)-1(a\\252)-419(z)-420(coraz)-420(wi\\246ks)-1(z\\241)-419(z)-1(gr)1(oz)-1(\\241)-419(i)-419(w)-1(r)1(az)-420(z)-420(jak)1(im\\261)-420(lub)29(ym)]TJ -27.879 -13.549 Td[(dr)1(e)-1(sz)-1(cze)-1(m)-292({)-291(Wi\\246c)-292(to)-292(tak!)-291({)-292(p)-27(o)28(wt\\363rzy\\252)-292(nar)1(az)-292(g\\252o\\261)-1(n)1(o,)-292(i)-291(c)27(h)1(c)-1(\\241c)-292(si\\246)-292(o)-28(d)1(e)-1(rw)28(a\\242)-292(o)-28(d)-291(t)28(yc)27(h)]TJ 0 -13.549 Td[(obmierz\\252yc)27(h)-333(m)28(y\\261le)-1(\\253)1(,)-333(w)-1(zi\\241\\252)-333(brewiarz)-333(p)-28(o)-28(d)-332(pac)27(h)1(\\246)-334(i)-333(p)-28(osze)-1(d)1(\\252)-334(d)1(o)-334(matki.)]TJ 27.879 -13.55 Td[({)-333(Zm)-1(\\363)28(wi\\246)-334(p)1(ac)-1(ierz)-333(przy)-333(Jagac)-1(i)1(e)-334({)-334(wyr)1(z)-1(ek\\252)-333(c)-1(ic)28(ho)-333(i)-333(p)-28(ok)28(or)1(nie.)]TJ 0 -13.549 Td[({)-333(A)-334(i)1(d\\271,)-334(syn)28(u)1(,)-333(pr)1(z)-1(yj)1(d\\246)-334(p)-27(\\363\\271niej)-333(p)-27(o)-334(ciebie.)-333({)-334(S)1(p)-28(o)-55(jr)1(z)-1(a\\252a)-333(bard)1(z)-1(o)-333(mi\\252o\\261)-1(ciwie.)]TJ 0 -13.549 Td[(W)-272(c)27(ha\\252u)1(pie)-273(K)1(\\252)-1(\\246b)-27(\\363)27(w)-272(nie)-273(b)28(y)1(\\252)-1(o)-272(ju)1(\\273)-273(pra)28(wie)-273(ni)1(k)28(ogo,)-273(t)28(yl)1(k)28(o)-273(jeden)-272(Jam)27(b)1(ro\\273)-273(c)-1(osik)]TJ -27.879 -13.549 Td[(tam)-308(m)-1(amrot)1(a\\252)-309(z)-308(ksi\\241\\273ki)-308(pr)1(z)-1(y)-307(z)-1(mar\\252e)-1(j)1(,)-308(kt\\363r)1(a)-308(le\\273)-1(a\\252a)-308(nak)1(ryta)-308(p)1(\\252ac)27(h)28(t\\241;)-307(na)-308(p)-27(or\\246c)-1(zy)]TJ 0 -13.549 Td[(\\252\\363\\273)-1(k)56(a)-303(tli)1(\\252)-1(a)-303(si\\246)-304(gr)1(om)-1(n)1(ic)-1(a)-303(zatkn)1(i\\246)-1(ta)-303(w)-303(dzban)28(u)1(s)-1(ze)-1(k)1(,)-303(przez)-304(wyw)27(ar)1(te)-304(okn)1(a)-303(z)-1(agl\\241d)1(a\\252y)]TJ 0 -13.55 Td[(ga\\252\\246)-1(zie)-290(p)-27(e\\252ne)-290(j)1(ab\\252e)-1(k)1(,)-289(no)-28(c)-290(r)1(oz)-1(i)1(s)-1(kr)1(z)-1(on)1(a)-290(gwiazdami,)-289(a)-289(kiej)-289(niekiej)-289(ws)-1(ad)1(z)-1(a\\252)-289(z)-1(d)1(umio-)]TJ 0 -13.549 Td[(n\\241)-333(t)28(w)28(arz)-334(j)1(aki\\261)-334(zap)-28(\\363\\271ni)1(on)28(y)-333(przec)27(ho)-27(dzie)-1(\\253)1(,)-333(w)-334(sie)-1(n)1(iac)27(h)-333(w)28(arcz)-1(a\\252y)-333(ci\\246gie)-1(m)-333(pies)-1(k)1(i.)]TJ 27.879 -13.549 Td[(Jasio)-352(pr)1(z)-1(y)1(kl\\246)-1(k)1(n\\241\\252)-352(p)-27(o)-28(d)-352(\\261wiat\\252em)-353(i)-351(tak)-352(si\\246)-353(b)29(y\\252)-352(gor\\241co)-352(o)-28(dd)1(a\\252)-352(pacierz)-1(om,)-352(\\273e)]TJ -27.879 -13.549 Td[(ani)-386(w)-1(i)1(e)-1(d)1(z)-1(ia\\252,)-387(k)1(ie)-1(j)-386(Jam)27(b)1(ro\\273)-387(p)-28(ok)1(usz)-1(t)28(yk)56(a\\252)-387(do)-387(d)1(om)-1(,)-386(K\\252\\246)-1(b)28(y)-386(p)-28(ok\\252ad)1(\\252y)-387(s)-1(i)1(\\246)-388(spa\\242)-387(k)55(a)-55(j\\261)]TJ 0 -13.549 Td[(w)-334(sadzie)-334(i)-333(zapi)1(a\\252)-1(y)-333(p)1(ie)-1(r)1(ws)-1(ze)-334(ku)1(ry)83(,)-333(sz)-1(cz\\246)-1(\\261c)-1(iem,)-333(c)-1(o)-333(m)-1(atk)56(a)-333(o)-333(nim)-333(nie)-334(zap)-27(om)-1(n)1(ia\\252a.)]TJ 27.879 -13.55 Td[(Ale)-231(c\\363\\273,)-230(kie)-1(j)-229(\\261)-1(p)1(ik)-230(pr)1(a)27(wie)-230(s)-1(i\\246)-230(go)-231(n)1(ie)-231(ima\\252,)-230(b)-28(o)-230(co)-231(j)1(e)-1(n)1(o)-230(z)-1(acz)-1(yn)1(a\\252o)-231(go)-230(morzy\\242)-1(,)-230(to)]TJ -27.879 -13.549 Td[(zja)28(wia\\252a)-234(si\\246)-234(p)1(rze)-1(d)-232(nim)-233(Jagusia)-233(nib)28(y)-233(\\273yw)28(a,)-233(\\273)-1(e)-233(z)-1(ry)1(w)27(a\\252)-233(s)-1(i)1(\\246)-234(z)-234(p)-27(o\\261)-1(cieli,)-233(p)1(rz)-1(ecie)-1(r)1(a\\252)-234(o)-27(c)-1(zy)]TJ 0 -13.549 Td[(i)-314(r)1(oz)-1(gl\\241d)1(a\\252)-314(s)-1(i\\246)-314(wys)-1(tr)1(as)-1(zon)28(y)84(,)-314(ju)1(\\261)-1(ci,)-314(co)-314(nie)-314(b)28(y\\252o)-314(n)1(ik)28(ogo,)-314(ca\\252)-1(y)-313(dom)-314(le)-1(\\273a\\252)-314(p)-27(ogr\\241\\273)-1(on)29(y)]TJ 0 -13.549 Td[(w)-334(t)28(w)28(ard)1(ym)-334(\\261nie,)-333(a)-334(z)-333(dru)1(giej)-333(izb)28(y)-333(rozle)-1(ga\\252o)-333(s)-1(i)1(\\246)-334(o)-56(j)1(c)-1(o)28(w)28(e)-334(c)27(h)1(rapan)1(ie.)]TJ 27.879 -13.549 Td[({)-357(T)83(o)-357(m)-1(o\\273e)-358(on)1(a)-358(d)1(latego...)-357({)-357(Zam)27(y\\261li\\252)-357(sp)-28(omin)1(a)-56(j\\241c)-357(jej)-357(gor\\241ce)-358(ca\\252unk)1(i,)-357(o)-28(cz)-1(y)]TJ -27.879 -13.55 Td[(rozjar)1(z)-1(on)1(e)-364(i)-364(d)1(r\\273\\241c)-1(y)-363(g\\252os)-1(:)-363({)-364(A)-363(ja)-364(m)28(y\\261la\\252e)-1(m!)-363({)-364(Zatrz\\241s)-1(\\252)-363(s)-1(i\\246)-364(ze)-364(ws)-1(t)28(yd)1(u,)-363(z)-1(es)-1(k)28(o)-27(c)-1(zy\\252)]TJ 0 -13.549 Td[(z)-363(\\252\\363\\273)-1(k)56(a,)-363(ot)28(w)28(orzy\\252)-363(okno)-362(i)-363(pr)1(z)-1(ysiad)1(\\252)-1(szy)-363(w)-363(nim,)-363(d)1(o)-363(sam)-1(ego)-363(\\261)-1(wit)1(ania)-363(medyto)28(w)28(a\\252)-363(i)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(a\\252)-334(si\\246)-334(z)-334(mimo)28(w)27(oln)29(yc)27(h)-333(p)1(rze)-1(win)-333(i)-333(p)-27(oku)1(s)-1(ze)-1(\\253)1(.)]TJ 27.879 -13.549 Td[(Za\\261)-408(ran)1(o)-408(pr)1(z)-1(y)-407(ms)-1(zy)-408(n)1(ie)-408(\\261)-1(mia\\252)-407(na)28(w)27(et)-408(p)-27(o)-28(d)1(nie\\261)-1(\\242)-408(o)-27(c)-1(z\\363)27(w)-407(na)-408(l)1(ud)1(z)-1(i)-407(ni)-407(s)-1(i)1(\\246)-409(r)1(o-)]TJ -27.879 -13.549 Td[(ze)-1(j)1(rz)-1(e\\242)-410(p)-27(o)-409(k)28(o\\261)-1(cie)-1(l)1(e)-1(,)-409(ale)-409(t)27(y)1(m)-410(gor\\246c)-1(ej)-409(mo)-28(dl)1(i\\252)-410(si\\246)-410(za)-409(Jagusi\\246)-1(,)-409(b)-27(o)-409(ju)1(\\273)-410(b)28(y\\252)-409(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.55 Td[(u)28(wierzy\\252)-459(w)-458(jej)-458(strasz)-1(n)1(e)-459(pr)1(z)-1(ewin)28(y)84(,)-458(nie)-458(p)-28(or)1(e)-1(d)1(z)-1(i\\252)-458(t)28(ylk)28(o)-458(w)-458(s)-1(ob)1(ie)-459(zbu)1(dz)-1(i)1(\\242)-459(do)-458(n)1(ie)-1(j)]TJ 0 -13.549 Td[(gni)1(e)-1(wu)-333(i)-333(o)-28(d)1(razy)83(.)]TJ 27.879 -13.549 Td[({)-254(Co)-254(ci)-254(j)1(e)-1(st?)-254(Wzdyc)28(ha\\252e\\261)-1(,)-253(\\273)-1(e)-254(dziw)-254(n)1(ie)-254(p)-28(ogas\\252y)-254(\\261w)-1(i)1(e)-1(ce)-1(!)-253({)-254(p)28(yta\\252)-253(go)-254(pr)1(ob)-28(osz)-1(cz)]TJ -27.879 -13.549 Td[(w)-334(zakr)1(ys)-1(ti)1(i.)]TJ 27.879 -13.549 Td[({)-333(T)83(ak)-333(m)-1(n)1(ie)-334(p)1(arzy)-334(sutan)1(na!)-333({)-333(z)-1(ask)56(ar\\273y\\252)-334(si\\246)-334(o)-27(dwraca)-56(j)1(\\241c)-334(pr)1(\\246)-1(d)1(k)28(o)-334(t)28(w)28(arz.)]TJ 0 -13.549 Td[({)-333(Jak)-333(s)-1(i\\246)-333(przyzwyc)-1(zaisz)-1(,)-333(to)-333(b)-28(\\246dzies)-1(z)-333(j\\241)-333(nosi\\252)-334(n)1(ib)28(y)-333(d)1(rug\\241)-333(sk)28(\\363r\\246)-1(.)]TJ 0 -13.55 Td[(Jasio)-284(p)-27(o)-28(ca\\252o)27(w)28(a\\252)-284(go)-283(w)-284(r)1(\\246)-1(k)28(\\246)-284(i)-283(p)-27(os)-1(ze)-1(d)1(\\252)-284(na)-283(\\261)-1(n)1(iad)1(anie)-284(p)1(rze)-1(cie)-1(r)1(a)-56(j)1(\\241c)-284(s)-1(i)1(\\246)-284(c)-1(ieni)1(am)-1(i)]TJ -27.879 -13.549 Td[(nad)-298(sta)27(w)28(em)-1(,)-298(gdy\\273)-299(s)-1(\\252o\\253)1(c)-1(e)-299(pr)1(a\\273)-1(y)1(\\252)-1(o)-298(ju\\273)-299(n)1(ie)-299(do)-299(wytr)1(z)-1(ymani)1(a,)-299(i)-299(n)1(atk)56(a\\252)-299(s)-1(i\\246)-299(n)1(a)-299(ksi\\246)-1(\\273\\241)]TJ 0 -13.549 Td[(Mar)1(yn\\246,)-333(c)-1(i)1(\\241)-28(gn\\246\\252a)-334(za)-334(gr)1(z)-1(y)1(w)27(\\246)-334(\\261lep)-28(ego)-333(k)28(onia)-333(i)-333(z)-1(a)28(w)28(o)-28(dzi\\252a)-333(w)-1(r)1(z)-1(askliwie.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(p)-28(omni)1(e)-1(n)1(ia)-334(\\271gn\\246\\252y)-333(go)-334(n)1(ib)28(y)-333(sz)-1(yd)1(\\252e)-1(m,)-333(i\\273)-334(p)1(rzys)-1(t\\241)-27(pi\\252)-333(do)-333(ni)1(e)-1(j)-333(ze)-1(\\271lon)28(y)84(.)]TJ 0 -13.549 Td[({)-361(Z)-362(cze)-1(g\\363\\273)-362(t)1(o)-362(M)1(arysia)-361(tak)-361(s)-1(i)1(\\246)-362(c)-1(i)1(e)-1(sz)-1(y?)-361({)-361(patr)1(z)-1(a\\252)-361(w)-362(n)1(i\\241)-361(z)-362(ws)-1(t)28(y)1(dliw)28(\\241)-361(c)-1(iek)56(a-)]TJ -27.879 -13.55 Td[(w)28(o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-399(A)-399(b)-27(o)-399(mi)-399(w)28(e)-1(so\\252o!)-399({)-399(za\\261)-1(mia\\252a)-399(si\\246,)-399(ja\\273e)-399(z)-1(agra\\252y)-398(jej)-399(b)1(ia\\252e)-400(z\\246b)28(y)83(,)-398(s)-1(zarp)1(n\\246\\252)-1(a)]TJ\nET\nendstream\nendobj\n2367 0 obj <<\n/Type /Page\n/Contents 2368 0 R\n/Resources 2366 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2366 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2371 0 obj <<\n/Length 9827      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(743)]TJ -358.232 -35.866 Td[(k)28(oni)1(a)-334(i)-333(wy\\261piewyw)27(a\\252a)-333(jesz)-1(cz)-1(e)-334(r)1(oz)-1(g\\252o\\261niej.)]TJ 27.879 -13.549 Td[({)-337(P)28(o)-336(w)27(cz)-1(or)1(a)-56(j)1(s)-1(zym)-337(tak)56(a)-337(w)27(es)-1(o\\252a!)-336({)-337(Od)1(w)-1(r)1(\\363)-28(ci\\252)-337(s)-1(i)1(\\246)-338(p)1(r\\246dk)28(o,)-336(gdy\\273)-337(sp)-28(o)-28(d)-336(u)1(gi\\246)-1(tej)]TJ -27.879 -13.549 Td[(wysok)28(o)-397(ki)1(e)-1(c)28(ki)-396(b\\252ysk)56(a\\252)-1(y)-396(j)1(e)-1(j)-395(bia\\252e)-397(p)-27(o)-28(d)1(k)28(olania,)-396(r)1(oz)-1(\\252o\\273y\\252)-396(b)-28(ez)-1(r)1(adn)1(ie)-397(r\\246c)-1(e)-396(i)-396(w)-1(st\\241)-28(p)1(i\\252)]TJ 0 -13.549 Td[(do)-399(K)1(\\252)-1(\\246b)-27(\\363)27(w.)-399(Jagat)1(a)-400(l)1(e)-1(\\273a\\252a)-399(ju\\273)-399(z)-400(ca\\252\\241)-399(par)1(ad\\241)-399(na)-399(\\261ro)-28(d)1(ku)-399(i)1(z)-1(b)28(y)84(,)-399(p)1(rz)-1(y)1(bran)1(a)-399(w)-399(o)-28(d-)]TJ 0 -13.549 Td[(\\261w)-1(i)1(\\246)-1(tn)1(e)-400(s)-1(zat)28(y)83(,)-399(w)-400(cze)-1(p)-27(c)-1(u)-399(o)-399(sut)28(ym)-400(b)1(ia\\252ym)-400(zbu)1(rze)-1(n)1(iu)-399(nad)-399(cz)-1(o\\252em,)-400(w)-399(paciork)56(ac)27(h)]TJ 0 -13.55 Td[(na)-297(s)-1(zyi,)-297(w)-298(no)28(wym)-298(w)28(e)-1(\\252n)1(iaku)-297(w)-298(trze)-1(wik)56(ac)27(h)1(,)-298(za\\261c)-1(ib)1(ni\\246t)28(yc)27(h)-297(n)1(a)-298(c)-1(zerw)27(on)1(e)-298(s)-1(zn)28(u)1(ro)28(w)27(a-)]TJ 0 -13.549 Td[(d\\252a;)-289(t)28(w)28(arz)-289(m)-1(i)1(a\\252)-1(a)-289(k)1(ie)-1(b)29(y)-289(o)-28(dl)1(an\\241)-289(z)-289(blic)28(ho)28(w)28(anego)-290(w)28(osku,)-289(a)-289(d)1(z)-1(i)1(w)-1(n)1(ie)-290(r)1(oz)-1(r)1(ado)28(w)27(an)1(\\241,)-289(w)]TJ 0 -13.549 Td[(ze)-1(sz)-1(t)28(ywn)1(ia\\252yc)27(h)-369(pal)1(c)-1(ac)28(h)-370(tk)1(w)-1(i)1(\\252)-370(krzyw)28(o)-370(ob)1(raz)-1(i)1(k,)-370(d)1(wie)-370(\\261)-1(wiece)-371(p)1(ali\\252y)-369(s)-1(i)1(\\246)-371(p)-27(ob)-27(ok)-370(j)1(e)-1(j)]TJ 0 -13.549 Td[(g\\252o)28(w)-1(y)84(,)-332(Jagust)28(ynk)56(a)-333(o)-27(dgani)1(a\\252a)-333(m)27(u)1(c)27(h)28(y)-332(wielk)56(\\241)-333(ga\\252\\246)-1(zi\\241,)-332(ja\\252o)28(w)27(co)28(w)-1(y)-332(d)1(ym)-333(c)-1(i)1(\\241)-28(gn\\241\\252)-332(s)-1(i\\246)]TJ 0 -13.549 Td[(z)-331(k)28(omin)1(a)-330(i)-330(rozw\\252)-1(\\363)-27(c)-1(zy\\252)-330(p)-28(o)-330(ca\\252e)-1(j)-329(izbie,)-330(c)-1(o)-330(t)1(ro)-28(c)27(h)1(\\246)-331(k)1(to)-330(w)27(c)28(ho)-28(d)1(z)-1(i\\252)-330(zm)-1(\\363)28(wi\\242)-330(pacie)-1(r)1(z)-331(za)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(os)-1(zcz)-1(k)28(\\246,)-334(a)-333(ki)1(lk)28(oro)-333(dziec)-1(i)-333(pl)1(\\241ta\\252o)-334(si\\246)-334(p)-27(o)-28(d)-333(\\261c)-1(i)1(anami.)]TJ 27.879 -13.55 Td[(Jasio)-333(jak)28(o\\261)-334(tr)1(w)27(o\\273nie)-333(roz)-1(gl)1(\\241da\\252)-333(s)-1(i\\246)-333(p)-28(o)-333(mro)-28(cz)-1(n)1(e)-1(j)-333(c)28(ha\\252up)1(ie.)]TJ 0 -13.549 Td[({)-460(K)1(\\252)-1(\\246b)28(y)-459(p)-28(o)-55(jec)27(h)1(a\\252y)-460(d)1(o)-460(mias)-1(t)1(a)-460({)-460(zas)-1(ze)-1(p)1(ta\\252a)-460(m)28(u)-459(Jagust)28(ynk)56(a.)-459({)-460(Osta)28(w)-1(i)1(\\252)-1(a)]TJ -27.879 -13.549 Td[(im)-304(s)-1(p)-27(oro,)-304(t)1(o)-304(m)27(usz\\241)-305(si\\246)-304(w)-1(y)1(pu)1(c)-1(zy\\242)-305(n)1(a)-304(p)-28(o)-27(c)27(ho)28(w)28(e)-1(k,)-303(krewniacz)-1(k)56(a)-304(pr)1(z)-1(ec)-1(i)1(e)-1(k!)-303(Eksp)-28(or)1(ta)]TJ 0 -13.549 Td[(dop)1(iero)-333(b)-28(\\246dzie)-334(wiec)-1(zorki)1(e)-1(m,)-333(b)-28(o)-333(Mat)1(e)-1(u)1(s)-1(z)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(nie)-333(z)-1(d)1(\\241\\273)-1(y\\252)-333(z)-334(tr)1(umn\\241..)1(.)]TJ 27.879 -13.549 Td[(Zadu)1(c)27(h)-268(b)28(y\\252)-269(w)-269(izbi)1(e)-270(i)-268(tak)55(\\241)-268(trw)28(og\\241)-269(pr)1(z)-1(ejmo)27(w)28(a\\252a)-269(go)-269(ta)-269(\\273\\363\\252ta,)-269(zni)1(e)-1(ru)1(c)27(h)1(om)-1(i)1(a\\252)-1(a)]TJ -27.879 -13.55 Td[(w)-295(prze\\261)-1(miec)27(h)-295(t)28(w)28(arz)-295(umar\\252e)-1(j)1(,)-295(\\273e)-296(jeno)-295(si\\246)-295(prze\\273)-1(egna\\252)-295(i)-295(wysz)-1(ed\\252)-295(sp)-28(ot)28(yk)56(a)-55(j\\241c)-296(si\\246)-295(tu\\273)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-391(progi)1(e)-1(m)-392(ok)28(o)-391(w)-392(ok)28(o)-392(z)-392(Jagu)1(s)-1(i)1(\\241,)-392(sz)-1(\\252a)-391(z)-392(m)-1(atk)56(\\241)-392(i)-391(u)1(jrza)28(w)-1(szy)-392(go)-391(przystan\\246\\252a,)]TJ 0 -13.549 Td[(ale)-304(prze)-1(sze)-1(d)1(\\252)-305(b)-27(e)-1(z)-304(s)-1(\\252o)28(w)28(a,)-304(na)28(w)27(et)-304(B)-1(oga)-304(n)1(ie)-305(p)-27(o)-28(c)27(h)29(w)27(ali)1(\\252,)-304(dopi)1(e)-1(r)1(o)-305(z)-304(op\\252otk)28(\\363)28(w)-305(ob)-27(ejrza\\252)]TJ 0 -13.549 Td[(si\\246)-417(na)-416(ni\\241)-416(b)-28(ez)-1(w)28(oln)1(ie)-1(,)-416(jesz)-1(cz)-1(e)-417(sto)-56(j)1(a\\252a)-417(w)-417(miejsc)-1(u)-416(wpatr)1(z)-1(on)1(a)-417(w)-417(n)1(iego)-417(sm)27(ut)1(n)28(ymi)]TJ 0 -13.549 Td[(o)-28(cz)-1(ami.)]TJ 27.879 -13.55 Td[(W)-333(dom)28(u)-333(ni)1(e)-334(c)27(h)1(c)-1(ia\\252)-333(je\\261)-1(\\242)-333(\\261)-1(n)1(iadan)1(ia,)-333(wyrze)-1(k)56(a)-56(j)1(\\241c)-334(na)-333(srogi)-333(b)-27(\\363l)-334(g\\252o)28(wy)83(.)]TJ 0 -13.549 Td[({)-333(Przejd\\271)-333(s)-1(i\\246)-333(tro)-28(c)28(h\\246,)-334(mo\\273e)-334(pr)1(z)-1(es)-1(tan)1(ie)-334({)-333(rad)1(z)-1(i)1(\\252)-1(a)-333(m)27(u)-332(m)-1(atk)56(a.)]TJ 0 -13.549 Td[({)-333(A)-334(gd)1(z)-1(i)1(e)-1(\\273)-334(p)-27(\\363)-56(j)1(d\\246?)-334(\\233eb)28(y)-333(m)-1(ama)-333(z)-1(ar)1(az)-334(m)27(y)1(\\261)-1(la\\252a)-333(B\\363)-1(g)-333(wie)-334(co!)]TJ 0 -13.549 Td[({)-333(Jas)-1(i)1(u,)-333(c)-1(o)-333(t)28(y)-333(wygadu)1(jes)-1(z!)]TJ 0 -13.549 Td[({)-418(P)1(rze)-1(cie)-1(\\273)-418(mama)-418(nie)-418(p)-27(ozw)27(ala)-417(m)-1(i)-417(s)-1(i\\246)-418(r)1(usz)-1(y\\242)-418(z)-418(dom)28(u!)-417(Pr)1(z)-1(ec)-1(ie\\273)-418(to)-418(mam)-1(a)]TJ -27.879 -13.55 Td[(zabron)1(i\\252a)-345(mi)-345(na)28(w)28(e)-1(t)-344(roz)-1(ma)28(wia\\242)-345(z)-346(lu)1(d\\271mi!)-345(P)1(rz)-1(ecie)-1(\\273...)-344({)-345(M\\261c)-1(i\\252)-345(si\\246)-345(wie)-1(l)1(c)-1(e)-345(rozdr)1(a\\273)-1(-)]TJ 0 -13.549 Td[(ni)1(on)28(y)83(.)-286(A)-287(s)-1(k)28(o\\253)1(c)-1(zy\\252o)-287(si\\246)-288(n)1(a)-287(t)28(ym,)-287(\\273)-1(e)-287(m)27(u)-286(ob)28(wi\\241za\\252a)-287(g\\252)-1(o)28(w)28(\\246)-288(szm)-1(at\\241)-287(skrop)1(ion\\241)-286(o)-28(c)-1(tem,)]TJ 0 -13.549 Td[(u\\252o\\273y\\252a)-347(go)-346(s)-1(p)1(a\\242)-347(w)-347(c)-1(i)1(e)-1(mn)28(ym)-347(p)-27(ok)28(o)-56(j)1(u)-346(i)-347(p)1(rz)-1(egna)28(wsz)-1(y)-346(dzie)-1(ci)-346(na)-347(p)-27(o)-28(d)1(w)27(\\363r)1(z)-1(e)-347(cz)-1(u)28(w)28(a\\252a)]TJ 0 -13.549 Td[(nad)-332(nim)-333(kie)-1(j)-332(k)28(ok)28(os)-1(z,)-333(p)-28(\\363ki)-333(si\\246)-334(d)1(obr)1(z)-1(e)-334(n)1(ie)-334(wyspa\\252)-333(i)-333(nie)-334(p)-27(o)-28(d)1(jad)1(\\252)-334(j)1(ak)-333(s)-1(i\\246)-334(p)1(atrzy)83(.)]TJ 27.879 -13.549 Td[({)-312(A)-312(teraz)-313(i)1(d\\271)-312(s)-1(i\\246)-312(pr)1(z)-1(ej\\261\\242)-1(,)-311(id\\271)-312(na)-312(top)-27(olo)28(w)27(\\241,)-311(tam)-313(wi\\246ksz)-1(y)-312(cie\\253)-312(i)-312(c)28(h\\252o)-28(d)1(niej.)-312({)]TJ -27.879 -13.55 Td[(Nic)-251(s)-1(i)1(\\246)-252(n)1(ie)-251(o)-28(dez)-1(w)28(a\\252,)-251(ale)-251(cz)-1(u)1(j\\241c,)-251(\\273e)-252(matk)56(a)-251(pi)1(lni)1(e)-252(za)-251(ni)1(m)-252(n)1(agl\\241da\\252a,)-250(na)-251(z\\252o\\261)-1(\\242)-251(jej)-250(p)-28(o-)]TJ 0 -13.549 Td[(sz)-1(ed\\252)-300(ca\\252kiem)-300(w)-300(dr)1(ug\\241)-300(stron)1(\\246)-1(;)-299(w\\252)-1(\\363)-27(c)-1(zy\\252)-300(si\\246)-300(p)-28(o)-299(ws)-1(i,)-299(patr)1(z)-1(y)1(\\252)-300(na)-300(k)28(o)28(w)28(ali)-299(grz)-1(mi\\241cyc)27(h)]TJ 0 -13.549 Td[(m\\252otam)-1(i)1(,)-369(za)-56(j)1(rz)-1(a\\252)-368(do)-368(m)-1(\\252yn)1(a,)-369(\\252azi\\252)-369(p)-27(o)-369(ogr)1(o)-28(dac)28(h,)-368(s)-1(k)1(w)27(ap)1(nie)-369(zaz)-1(iera)-55(j\\241c)-369(n)1(a)-369(ln)1(is)-1(k)56(a)-368(i)]TJ 0 -13.549 Td[(ws)-1(z\\246)-1(d)1(y)83(,)-248(k)55(a)-55(j)-249(si\\246)-250(i)1(no)-249(cz)-1(erwieni\\252y)-249(k)28(ob)1(ie)-1(ce)-250(p)1(rzy)28(o)-28(dziewy)83(,)-249(p)-27(os)-1(i)1(e)-1(d)1(z)-1(ia\\252)-249(z)-249(pan)1(e)-1(m)-249(Jac)27(ki)1(e)-1(m)]TJ 0 -13.549 Td[(pas\\241cym)-370(na)-369(j)1(akiej\\261)-370(miedzy)-370(W)84(eroncz)-1(y)1(ne)-370(k)1(ro)28(w)-1(y)84(,)-369(nap)1(i\\252)-370(si\\246)-370(mlek)56(a)-370(u)-369(S)1(z)-1(y)1(m)-1(k)28(\\363)28(w)-370(n)1(a)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(les)-1(iu)-387(i)-387(wr\\363)-28(ci\\252)-388(d)1(o)-388(wsi)-388(d)1(opiero)-387(na)-387(s)-1(am)28(ym)-388(zm)-1(ierzc)27(h)28(u)1(,)-387(nie)-388(n)1(ap)-28(otk)56(a)28(ws)-1(zy)-387(nik)56(a)-56(j)]TJ 0 -13.55 Td[(Jagu)1(s)-1(i.)]TJ 27.879 -13.549 Td[(Zobacz)-1(y)1(\\252)-337(j)1(\\241)-337(d)1(opiero)-336(n)1(a)-1(za)-56(j)1(utr)1(z)-337(n)1(a)-337(p)-27(ogrze)-1(b)1(ie)-337(Jagat)28(y)84(,)-336(tak)-336(patr)1(z)-1(a\\252a)-336(w)-337(n)1(ie)-1(go)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ez)-370(ca\\252)-1(e)-369(nab)-27(o\\273)-1(e\\253st)28(w)27(o,)-369(j)1(a\\273)-1(e)-370(l)1(ite)-1(r)1(y)-369(s)-1(k)56(ak)56(a\\252y)-370(m)28(u)-369(w)-370(o)-27(c)-1(zac)27(h)-369(i)-369(m)27(y)1(li\\252)-370(si\\246)-370(w)-369(\\261)-1(p)1(iew)27(a-)]TJ 0 -13.549 Td[(ni)1(ac)27(h,)-421(a)-422(kiej)-422(cia\\252o)-422(p)1(ro)28(w)27(ad)1(z)-1(il)1(i)-422(na)-422(sm\\246)-1(tar)1(z)-1(,)-422(t)1(o)-422(nie)-422(bacz\\241c)-423(n)1(a)-422(gro\\271ne)-422(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)]TJ 0 -13.549 Td[(organ)1(i\\261c)-1(in)29(y)83(,)-339(sz)-1(\\252a)-339(p)1(ra)28(w)-1(i)1(e)-340(p)-27(ob)-28(ok)-338(niego,)-339(\\273)-1(e)-339(nas\\252uc)28(h)28(uj)1(\\241c)-340(j)1(e)-1(j)-339(\\273a\\252o\\261)-1(l)1(iwyc)27(h)-338(w)-1(zdy)1(c)27(h\\363)28(w)]TJ 0 -13.55 Td[(top)1(nia\\252)-333(w)-334(sobie)-333(kieb)28(y)-333(\\261)-1(n)1(ie)-1(g)-333(p)-27(o)-28(d)-333(t)28(ym)-333(z)-1(wies)-1(n)1(o)27(wym)-333(s)-1(\\252o\\253)1(c)-1(em)-1(.)]TJ 27.879 -13.549 Td[(Za\\261)-397(ki)1(e)-1(d)1(y)-396(trumn\\246)-396(s)-1(p)1(usz)-1(cz)-1(al)1(i)-396(do)-396(do\\252u)-396(i)-396(wyb)1(uc)27(h)1(n\\246\\252y)-396(lam)-1(en)28(ta,)-396(p)-27(os)-1(\\252y)1(s)-1(za\\252)-397(i)]TJ\nET\nendstream\nendobj\n2370 0 obj <<\n/Type /Page\n/Contents 2371 0 R\n/Resources 2369 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2369 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2374 0 obj <<\n/Length 9643      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(744)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(48.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(jej)-272(p\\252acz)-273(rze)-1(wliwy)84(,)-273(al)1(e)-273(z)-1(r)1(oz)-1(u)1(m)-1(ia\\252,)-272(c)-1(o)-272(ni)1(e)-273(p)-28(o)-272(umar\\252ej)-273(t)1(ak)-273(sz)-1(l)1(o)-28(c)27(h)1(a,)-273(a)-272(jeno)-272(z)-273(c)-1(i\\246\\273)-1(k)1(ie)-1(j)]TJ 0 -13.549 Td[(ud)1(r\\246ki)-333(z)-1(b)-27(ola\\252ego,)-333(p)-28(okr)1(z)-1(y)1(w)-1(d)1(z)-1(on)1(e)-1(go)-333(se)-1(rca.)]TJ 27.879 -13.549 Td[({)-409(Mu)1(s)-1(z\\246)-409(s)-1(i\\246)-409(z)-409(ni\\241)-409(r)1(oz)-1(m\\363)28(w)-1(i)1(\\242)-1(.)-409({)-409(P)29(os)-1(tan)1(o)28(w)-1(i)1(\\252)-410(wr)1(ac)-1(a)-55(j\\241c)-409(z)-410(p)-27(ogrze)-1(b)1(u,)-409(al)1(e)-410(n)1(ie)]TJ -27.879 -13.549 Td[(m\\363g\\252)-270(si\\246)-270(pr\\246dk)28(o)-269(wydosta\\242)-270(na)-269(w)27(ol)1(\\246)-1(,)-269(gdy\\273)-270(zarn)1(o)-270(z)-270(p)-27(o\\252udn)1(ia)-269(z)-1(acz)-1(\\246li)-269(s)-1(i\\246)-270(zje\\273)-1(d)1(\\273)-1(a\\242)-270(d)1(o)]TJ 0 -13.549 Td[(Lip)1(ie)-1(c)-241(lu)1(dzie)-241(z)-241(dalszyc)27(h)-240(ws)-1(i,)-240(a)-241(na)28(w)28(e)-1(t)-240(i)-241(z)-241(dr)1(ugic)28(h)-240(para\\014)1(i)-241(n)1(a)-241(ju)1(trze)-1(j)1(s)-1(z\\241)-241(p)1(ie)-1(l)1(grz)-1(y)1(m)-1(k)28(\\246)]TJ 0 -13.55 Td[(do)-298(Cz\\246)-1(sto)-28(c)28(ho)28(wy)-298(Kompan)1(ia)-298(m)-1(i)1(a\\252a)-298(w)-1(y)1(j\\261\\242)-299(r)1(ankiem,)-298(z)-1(ar)1(az)-299(p)-27(o)-298(sole)-1(n)1(nej)-298(w)28(ot)28(ywie)-1(,)-297(to)]TJ 0 -13.549 Td[(si\\246)-325(z)-324(w)27(ol)1(na)-324(\\261c)-1(i\\241)-27(gali)-324(n)1(ap)-28(e\\252nia)-55(j\\241c)-324(drogi)-323(nad)-323(s)-1(ta)28(w)28(e)-1(m)-324(w)27(ozami)-324(a)-324(gw)27(ar)1(e)-1(m,)-324(sp)-28(or)1(o)-324(te)-1(\\273)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(c)27(ho)-27(dzi\\252o)-457(n)1(a)-457(pl)1(e)-1(b)1(ani\\246,)-457(\\273e)-457(Jasio)-457(m)28(usia\\252)-457(siedzie)-1(\\242)-457(i)-456(za\\252)-1(at)28(wia\\242)-457(za)-457(p)1(rob)-27(os)-1(zc)-1(za)]TJ 0 -13.549 Td[(pr)1(z)-1(er\\363\\273ne)-323(s)-1(p)1(ra)28(wy)83(,)-323(al)1(e)-324(j)1(ak)28(o\\261)-324(p)-27(o)-28(d)-322(s)-1(am)-323(wie)-1(cz\\363r)-323(up)1(atrzyws)-1(zy)-323(sp)-28(osobn)1(\\241)-323(p)-27(or\\246)-324(wzi\\241\\252)]TJ 0 -13.549 Td[(ksi\\241\\273k)28(\\246)-396(i)-395(niep)-28(ostrze\\273)-1(enie)-395(w)-1(yn)1(i\\363s\\252)-396(si\\246)-396(n)1(a)-396(miedz\\246)-396(z)-1(a)-395(sto)-28(do\\252ami,)-395(p)-27(o)-28(d)-395(gru)1(s)-1(z\\246)-1(,)-395(k)56(a)-56(j)]TJ 0 -13.549 Td[(ni)1(e)-1(r)1(az)-334(s)-1(i)1(adyw)28(ali)-333(wraz)-334(z)-334(Jagu)1(s)-1(i)1(\\241.)]TJ 27.879 -13.55 Td[(Ju)1(\\261)-1(ci,)-312(c)-1(o)-312(ani)-312(tk)1(n\\241\\252)-312(o)-28(c)-1(zami)-312(ks)-1(i)1(\\241\\273)-1(ki)1(,)-313(a)-312(cis)-1(n)1(\\241\\252)-313(j)1(\\241)-312(k)55(a)-55(j\\261)-313(w)-312(tra)28(w)28(\\246)-313(i)-312(roze)-1(j)1(rza)27(wsz)-1(y)]TJ -27.879 -13.549 Td[(si\\246)-378(p)-27(o)-377(p)-27(olac)27(h)-376(s)-1(k)28(o)-28(czy\\252)-377(w)-378(\\273yta)-377(i)-377(c)28(h)28(y\\252ki)1(e)-1(m,)-377(pr)1(a)28(w)-1(i)1(e)-378(n)1(a)-377(c)-1(zw)27(orak)56(ac)28(h,)-377(p)1(rze)-1(b)1(ie)-1(r)1(a\\252)-377(s)-1(i\\246)]TJ 0 -13.549 Td[(na)-333(ogro)-27(dy)-333(Domini)1(k)28(o)27(w)28(e)-1(j)1(.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-387(w\\252a\\261nie)-387(p)-27(o)-28(db)1(ie)-1(r)1(a\\252a)-387(z)-1(iemniak)1(i)-387(ani)-386(s)-1(i\\246)-387(sp)-28(o)-28(d)1(z)-1(i)1(e)-1(w)28(a)-56(j)1(\\241c)-1(,)-387(\\273e)-387(ktosik)-387(na)]TJ -27.879 -13.549 Td[(ni)1(\\241)-387(p)1(atrzy)83(,)-386(raz)-387(p)-27(o)-387(r)1(az)-387(b)-28(o)28(wiem)-387(pr)1(os)-1(to)28(w)28(a\\252a)-387(si\\246)-387(o)-28(ci\\246)-1(\\273ale)-387(i)-386(ws)-1(p)1(arta)-386(na)-386(m)-1(ot)28(yczc)-1(e,)]TJ 0 -13.55 Td[(p)-27(o)27(w\\252\\363)-28(cz)-1(\\241c)-333(s)-1(m)28(utn)28(y)1(m)-1(i)-333(o)-28(cz)-1(ami)-333(p)-27(o)-334(\\261wie)-1(cie,)-333(w)-1(zdy)1(c)27(ha\\252a)-333(d\\252u)1(go)-334(i)-333(ci\\246\\273)-1(k)28(o.)]TJ 27.879 -13.549 Td[({)-333(Jagusia!)-333({)-333(z)-1(a)28(w)27(o\\252a\\252)-333(l\\246kliwie.)]TJ 0 -13.549 Td[(P)28(ob)1(lad\\252a)-421(na)-421(p)1(\\252)-1(\\363tn)1(o)-421(i)-421(s)-1(tan)1(\\246)-1(\\252a)-421(kiej)-421(wryta,)-421(zaledwie)-422(j)1(u\\273)-422(wierz\\241c)-422(w\\252as)-1(n)29(ym)]TJ -27.879 -13.549 Td[(o)-28(cz)-1(om,)-305(tc)27(h)28(u)-305(j)1(e)-1(j)-305(b)1(rak\\252o)-305(i)-306(\\261cis)-1(n)1(\\246)-1(\\252o)-305(p)-28(o)-27(d)-306(p)1(iersiam)-1(i)1(,)-306(al)1(e)-306(patr)1(z)-1(a\\252a)-305(w)-306(niego)-305(kieb)28(y)-306(w)-305(to)]TJ 0 -13.549 Td[(cudn)1(e)-249(z)-1(wid)1(z)-1(enie,)-249(a)-249(s\\252o)-28(dk)1(i)-249(pr)1(z)-1(e\\261)-1(miec)27(h)-248(z)-1(atli)1(\\252)-249(s)-1(i\\246)-249(n)1(a)-249(s)-1(p)1(\\241s)-1(o)28(wia\\252yc)27(h)-248(z)-249(nag\\252a)-249(w)28(argac)27(h)1(,)]TJ 0 -13.55 Td[(rozmigota\\252)-334(si\\246)-334(p)1(\\252om)-1(i)1(e)-1(n)1(iam)-1(i)-333(i)-333(wyb)1(uc)27(h)1(n\\241\\252)-333(kiej)-333(s)-1(\\252o\\253)1(c)-1(e.)]TJ 27.879 -13.549 Td[(Jasio)28(w)-1(i)-291(r\\363)28(w)-1(n)1(ie\\273)-293(r)1(oz)-1(j)1(arz)-1(y)1(\\252y)-292(s)-1(i\\246)-292(o)-28(cz)-1(y)-292(i)-291(m)-1(i)1(o)-28(dy)-292(zala\\252y)-292(se)-1(r)1(c)-1(e,)-292(ni)1(e)-293(da\\252)-292(se)-293(j)1(e)-1(d)1(nak)]TJ -27.879 -13.549 Td[(fol)1(gi,)-333(m)-1(i)1(lc)-1(za\\252,)-333(a)-334(j)1(e)-1(n)1(o)-334(p)1(rzysiad\\252)-333(na)-333(z)-1(agon)1(ie)-334(i)-333(p)1(atrza\\252)-334(w)-333(ni\\241)-333(z)-334(d)1(z)-1(iwn)1(\\241)-334(lu)1(b)-27(o\\261)-1(ci\\241.)]TJ 27.879 -13.549 Td[({)-333(B)-1(o)-55(ja\\252am)-334(si\\246,)-333(c)-1(o)-333(pan)1(a)-334(Jasia)-333(ju)1(\\273)-334(ni)1(gdy)-333(ni)1(e)-334(obacz)-1(\\246...)]TJ 0 -13.549 Td[(Kieb)28(y)-265(p)1(ac)27(h)1(n\\241cy)-265(wiater)-265(z)-1(a)28(wia\\252)-265(z)-265(\\252\\241k)-265(i)-265(u)1(derz)-1(y)1(\\252)-265(w)-266(n)1(iego,)-265(ja\\273e)-266(p)-27(o)-28(c)28(h)28(yli)1(\\252)-266(g\\252o)28(w)28(\\246)-1(,)]TJ -27.879 -13.55 Td[(tak)-333(m)27(u)-332(te)-1(n)-333(g\\252os)-334(r)1(oz)-1(d)1(z)-1(w)28(ania\\252)-333(si\\246)-334(w)-334(d)1(usz)-1(y)-333(p)1(ra)28(wie)-334(ni)1(e)-1(p)-27(o)-56(j)1(\\246)-1(t\\241)-333(sz)-1(cz)-1(\\246\\261)-1(l)1(iw)27(o\\261ci\\241.)]TJ 27.879 -13.549 Td[({)-333(A)-334(p)1(rze)-1(d)-333(K)1(\\252)-1(\\246bami,)-333(w)28(c)-1(zora)-55(j,)-333(to)-333(pan)-333(Jasio)-333(ani)-333(sp)-28(o)-55(jrza\\252...)]TJ 0 -13.549 Td[(St)1(o)-56(ja\\252a)-309(pr)1(z)-1(ed)-309(ni)1(m)-310(s)-1(p)1(\\252onion)1(a)-309(kieb)28(y)-309(te)-1(n)-309(k)1(ie)-1(r)1(z)-310(r\\363\\273an)28(y)84(,)-310(k)1(ie)-1(b)29(y)-309(te)-1(n)-309(j)1(ab\\252oni)1(o)27(wy)]TJ -27.879 -13.549 Td[(kwiat,)-405(mdl)1(e)-1(j)1(\\241c)-1(y)-405(w)-405(s)-1(k)1(w)27(arze)-406(t)1(\\246)-1(skni)1(c)-1(y)84(,)-405(\\261)-1(li)1(c)-1(zno\\261c)-1(i)-405(p)-27(e\\252)-1(n)1(a)-405(i)-405(z)-1(go\\252a)-405(jak)1(ie)-1(m)28(u\\261)-405(c)-1(u)1(do)28(wi)]TJ 0 -13.549 Td[(p)-27(o)-28(dob)1(na.)]TJ 27.879 -13.55 Td[({)-333(A)-334(to)-333(d)1(z)-1(iw)-333(m)-1(i)-333(se)-1(r)1(c)-1(e)-333(nie)-334(p)-27(\\246k\\252o!)-333(A)-334(to)-333(dziw)-333(m)-1(e)-333(roz)-1(u)1(m)-334(n)1(ie)-334(o)-28(d)1(s)-1(ze)-1(d)1(\\252.)]TJ 0 -13.549 Td[(\\212zy)-243(b\\252ysn\\246\\252y)-243(j)1(e)-1(j)-242(u)-243(rz\\246)-1(s)-243(pr)1(z)-1(y)1(s)-1(\\252ani)1(a)-56(j)1(\\241c)-244(n)1(ib)28(y)-243(d)1(iame)-1(n)28(tami)-243(mo)-28(d)1(re)-243(nieba)-243(o)-27(c)-1(z\\363)27(w.)]TJ 0 -13.549 Td[({)-333(Jagusia!)-333({)-333(w)-1(y)1(rw)27(a\\252o)-333(m)27(u)-333(si\\246)-334(k)56(a)-55(j\\261)-334(sp)-27(o)-28(d)-333(s)-1(amego)-334(se)-1(r)1(c)-1(a.)]TJ 0 -13.549 Td[(Pr)1(z)-1(y)1(kl\\246k\\252a)-426(w)-425(bru)1(\\271)-1(d)1(z)-1(i)1(e)-426(i)-425(c)-1(isn\\241c)-425(m)27(u)-425(si\\246)-426(do)-425(k)28(olan)-425(wp)1(ie)-1(r)1(a\\252a)-426(w)-425(niego)-426(o)-27(c)-1(zy)83(,)]TJ -27.879 -13.549 Td[(pr)1(z)-1(epa\\261c)-1(i)-369(ogniste,)-370(o)-28(cz)-1(y)-369(m)-1(o)-27(dre)-370(jak)-369(nieb)-27(o)-370(i)-370(j)1(ak)-370(ni)1(e)-1(b)-27(o)-370(ni)1(e)-1(zg\\252\\246)-1(b)1(ione,)-370(o)-28(czy)-370(up)-27(o)-56(j)1(ne)]TJ 0 -13.549 Td[(ni)1(b)28(y)-282(ca\\252un)1(ki)-282(i)-281(nib)28(y)-281(pr)1(z)-1(ygar)1(ni\\246c)-1(i)1(a)-282(r\\241k)-282(u)1(mi\\252o)27(w)28(an)28(yc)28(h,)-281(o)-28(c)-1(zy)-282(p)-27(oku)1(s)-1(ze)-1(\\253)-281(i)-282(n)1(ie)-1(win)1(nego)]TJ 0 -13.55 Td[(dziec)-1(i)1(\\253st)27(w)28(a)-333(z)-1(ar)1(az)-1(em)-1(.)]TJ 27.879 -13.549 Td[(Wstrz\\241s)-1(n)1(\\241\\252)-321(si\\246)-321(gw)28(a\\252)-1(t)1(o)27(wn)1(ie)-321(i)-320(jakb)29(y)-321(si\\246)-321(b)1(roni)1(\\241c)-321(przed)-320(c)-1(zarami)-321(zac)-1(z\\241\\252)-321(ostro)]TJ -27.879 -13.549 Td[(wyma)27(wia\\242)-380(ws)-1(zystkie)-380(jej)-379(grze)-1(c)27(h)29(y)83(,)-379(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(,)-379(jaki)1(e)-381(m)28(u)-380(b)29(y\\252a)-380(p)-27(o)27(wiedzia\\252a)-380(matk)56(a.)]TJ 0 -13.549 Td[(Pi)1(\\252a)-386(k)56(a\\273)-1(d)1(e)-386(s)-1(\\252o)28(w)27(o)-385(ni)1(e)-386(s)-1(p)1(usz)-1(cz)-1(a)-55(j\\241c)-386(z)-386(n)1(ie)-1(go)-385(o)-28(c)-1(z\\363)28(w,)-386(ale)-386(ma\\252o)-386(wiele)-386(p)-27(oredzi\\252a)-386(wy-)]TJ 0 -13.549 Td[(miark)28(o)28(w)28(a\\242)-1(,)-433(wie)-1(d)1(z)-1(i)1(a\\252)-1(a)-433(b)-27(o)27(wiem)-434(t)28(ylk)28(o)-433(jedn)1(o,)-434(\\273e)-434(oto)-433(s)-1(iedzi)-433(przed)-433(ni\\241)-433(te)-1(n)-433(p)-27(onad)]TJ 0 -13.55 Td[(ws)-1(zystk)28(o)-402(w)-1(y)1(bran)29(y)83(,)-402(\\273e)-403(se)-403(cos)-1(i)1(k)-402(ga)27(w)28(orzy)83(,)-401(\\273)-1(e)-402(o)-28(c)-1(zy)-402(m)27(u)-401(s)-1(i\\246)-402(jar)1(z)-1(\\241,)-402(a)-402(on)1(a)-402(kl\\246c)-1(zy)-402(s)-1(e)]TJ 0 -13.549 Td[(pr)1(z)-1(ed)-283(nim)-283(kieb)28(y)-283(prze)-1(d)-283(t)28(ym)-283(\\261)-1(wi\\241tk)1(ie)-1(m)-284(i)-283(mo)-28(dl)1(i)-284(si\\246)-284(n)1(ie)-1(zg\\252\\246)-1(b)1(ion)1(\\241)-284(wiar\\241)-283(mi\\252o)27(w)28(ani)1(a.)]TJ\nET\nendstream\nendobj\n2373 0 obj <<\n/Type /Page\n/Contents 2374 0 R\n/Resources 2372 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2359 0 R\n>> endobj\n2372 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2377 0 obj <<\n/Length 9253      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(745)]TJ -330.353 -35.866 Td[({)-270(P)29(o)27(wiedz,)-270(J)1(agu\\261,)-270(\\273e)-270(to)-270(ws)-1(zystk)28(o)-270(n)1(ie)-1(p)1(ra)28(wda?)-270(p)-27(o)28(wie)-1(d)1(z)-1(!)-269({)-270(n)1(alega\\252)-270(pr)1(os)-1(z\\241c)-1(o.)]TJ 0 -13.549 Td[({)-315(Ni)1(e)-1(pr)1(a)28(w)-1(d)1(a!)-315(Ni)1(e)-1(p)1(ra)28(w)-1(d)1(a!)-315({)-314(przyt)28(wierdzi\\252a)-315(z)-315(tak)56(\\241)-315(sz)-1(cze)-1(ro\\261ci\\241,)-315(\\273e)-315(u)28(wie)-1(r)1(z)-1(y)1(\\252)]TJ -27.879 -13.549 Td[(o)-28(d)-289(razu,)-289(u)28(wierz)-1(y)1(\\242)-290(m)27(usia\\252,)-289(a)-290(ona)-289(s)-1(p)1(ar\\252a)-290(si\\246,)-290(p)1(ie)-1(r)1(s)-1(iami)-289(o)-290(jego)-290(k)28(ol)1(ana)-290(i)-289(z)-1(at)1(on\\241)28(w)-1(szy)]TJ 0 -13.549 Td[(m)27(u)-227(w)-228(o)-28(cz)-1(ac)27(h)-227(wyz)-1(n)1(a)28(w)27(a\\252a)-228(si\\246)-228(c)-1(ic)28(h)28(u\\261k)28(o)-228(ze)-229(sw)27(ego)-228(mi\\252o)27(w)28(ani)1(a...)-228(Jak)1(b)28(y)-228(n)1(a)-228(\\261)-1(wi\\246te)-1(j)-227(sp)-28(o-)]TJ 0 -13.549 Td[(wiedzi)-281(ot)28(w)28(ar\\252a)-280(pr)1(z)-1(ed)-280(ni)1(m)-281(du)1(s)-1(z\\246)-281(n)1(a)-281(\\261c)-1(i)1(e)-1(\\273a)-56(j)1(,)-280(rzuci\\252a)-281(m)28(u)-280(j\\241)-280(p)-27(o)-28(d)-280(n)1(ogi)-280(kiej)-280(z)-1(b)1(\\252\\241k)55(an)1(\\241)]TJ 0 -13.55 Td[(pt)1(as)-1(zk)28(\\246)-346(i)-345(m)-1(o)-27(dlit)1(e)-1(wn\\241,)-345(gor\\241c\\241)-345(pro\\261b\\241)-345(da)28(w)28(a\\252a)-346(si\\246)-346(wsz)-1(ystk)56(a)-346(n)1(a)-346(j)1(e)-1(go)-345(zm)-1(i)1(\\252)-1(o)28(w)28(anie)-345(i)]TJ 0 -13.549 Td[(na)-333(j)1(e)-1(go)-333(w)27(ol\\246)-333(i)-333(niew)27(ol)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Jasio)-284(rozdygota\\252)-284(si\\246)-285(ki)1(e)-1(j)-283(liste)-1(k)-284(wstrz\\241s)-1(an)28(y)-284(gw)28(a\\252to)28(w)-1(n)1(\\241)-284(na)28(w)28(a\\252)-1(n)1(ic\\241,)-284(c)27(hcia\\252)-284(j\\241)]TJ -27.879 -13.549 Td[(o)-28(d)1(e)-1(p)-27(c)27(h)1(n\\241\\242)-334(i)-333(u)1(c)-1(iek)56(a\\242)-1(,)-333(ale)-333(jeno)-333(s)-1(ze)-1(p)1(ta\\252)-334(omdl)1(a\\252ym)-1(,)-333(n)1(ieprzytomn)28(ym)-333(g\\252o)-1(sem)-1(:)]TJ 27.879 -13.549 Td[({)-333(C)-1(i)1(c)27(ho,)-333(Jagu)1(\\261)-1(,)-333(tak)-333(n)1(ie)-334(mo\\273)-1(n)1(a,)-333(grze)-1(c)27(h)1(,)-333(c)-1(i)1(c)27(ho!)]TJ 0 -13.549 Td[(A\\273)-435(umilk)1(\\252a,)-435(ca\\252kiem)-435(w)-1(y)1(z)-1(b)28(y)1(ta)-435(ze)-435(s)-1(i\\252,)-434(m)-1(i)1(lc)-1(zeli)-435(j)1(u\\273)-435(ob)-27(o)-56(j)1(e)-435(un)1(ik)56(a)-56(j\\241c)-435(sw)27(oi)1(c)27(h)]TJ -27.879 -13.55 Td[(o)-28(cz)-1(\\363)28(w,)-345(a)-344(w)-1(r)1(az)-346(cisn\\241c)-345(si\\246)-345(do)-345(siebie)-345(tak)-344(z)-346(b)1(lisk)56(a,)-345(\\273e)-346(s\\252ysz)-1(eli)-345(b)1(icie)-345(s)-1(erc)-345(w\\252as)-1(n)28(y)1(c)27(h)-344(i)]TJ 0 -13.549 Td[(cic)27(h)1(e)-1(,)-272(p)1(al\\241ce)-273(d)1(yc)27(h)1(ania,)-271(b)28(y\\252o)-272(im)-272(strasz)-1(n)1(ie)-272(dobr)1(z)-1(e)-272(i)-272(r)1(ado\\261nie,)-272(ob)-27(o)-56(j)1(gu)-272(\\252zy)-272(sp\\252yw)28(a\\252y)]TJ 0 -13.549 Td[(p)-27(o)-308(zblad)1(\\252yc)27(h)-307(t)28(w)27(ar)1(z)-1(ac)28(h,)-307(ob)-28(o)-55(jgu)-307(\\261m)-1(i)1(a\\252y)-308(si\\246)-308(cz)-1(erw)27(on)1(e)-308(w)27(ar)1(gi,)-307(a)-308(d)1(usz)-1(e)-308(ki)1(e)-1(b)28(y)-307(w)-308(cz)-1(as)]TJ 0 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(sie)-1(n)1(ia)-223(b)29(y\\252y)-223(zatopi)1(one)-223(w)-223(jak)56(\\241\\261)-223(na)-55(j\\261wi\\246)-1(t)1(s)-1(z\\241)-223(cic)27(h)1(o\\261)-1(\\242)-223(i)-223(t)1(a)-56(jn)1(i\\246)-223(ja\\261ni)1(e)-1(j)1(\\241c)-1(\\241)-222(gdz)-1(i)1(e)-1(\\261)]TJ 0 -13.549 Td[(na)-333(wysok)28(o\\261)-1(ciac)27(h)-333(i)-333(u)1(nosi\\252y)-333(s)-1(i\\246)-333(jes)-1(zc)-1(ze)-334(wy\\273e)-1(j)1(,)-334(p)-27(on)1(ad)-333(\\261)-1(wiat)28(y)84(.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-499(ju)1(\\273)-500(zas)-1(z\\252o)-499(i)-499(z)-1(i)1(e)-1(mia)-499(s)-1(p)1(\\252yn\\246\\252a)-499(z)-1(or)1(z)-1(ami)-499(kieb)28(y)-499(t)1(\\241,)-499(ros\\241)-500(p)-27(oz\\252o)-28(c)-1(i)1(s)-1(t\\241,)]TJ -27.879 -13.549 Td[(ws)-1(zystk)28(o)-325(przycic)27(h)1(\\252)-1(o,)-324(w)-1(sz)-1(y)1(s)-1(tk)28(o)-325(pr)1(z)-1(y)1(tai\\252o)-325(dec)27(h)-325(ws)-1(zystk)28(o)-325(kieb)28(y)-325(z)-1(mart)28(wia\\252o)-325(w)-325(z)-1(a-)]TJ 0 -13.549 Td[(s\\252)-1(u)1(c)27(h)1(aniu)-346(d)1(z)-1(w)28(on\\363)28(w,)-347(co)-347(zabi\\252y)-346(na)-346(Anio\\252)-346(P)28(a\\253ski,)-346(i)-347(wsz)-1(ystk)28(o)-347(j)1(akb)28(y)-346(si\\246)-347(z)-1(amo)-28(d)1(li\\252o)]TJ 0 -13.549 Td[(cic)27(h)28(y)1(m)-322(dzi\\246)-1(k)28(cz)-1(y)1(nn)28(y)1(m)-322(pacie)-1(r)1(z)-1(em)-322(z)-1(a)-321(\\261)-1(wi\\246t\\241)-321(\\252)-1(ask)28(\\246)-322(dn)1(ia)-322(o)-27(debran)1(e)-1(go.)-321(P)28(osz)-1(l)1(i)-322(w)-321(p)-28(o-)]TJ 0 -13.549 Td[(la,)-363(zas)-1(y)1(pane)-363(p)28(y\\252em)-364(z\\363rz)-1(,)-363(szli)-363(jaki)1(m)-1(i\\261)-363(m)-1(i)1(e)-1(d)1(z)-1(ami)-363(p)-27(e)-1(\\252n)28(ymi)-363(kwiat\\363)28(w,)-363(ws)-1(kr)1(o\\261)-364(zb)-28(\\363\\273)]TJ 0 -13.55 Td[(do)-55(jr)1(z)-1(a\\252yc)28(h,)-319(w)-1(l)1(e)-1(k)56(\\241c)-320(r\\246k)56(am)-1(i)-319(p)-27(o)-320(k\\252osac)27(h,)-319(zw)-1(i)1(s)-1(a)-55(j\\241cyc)27(h)-319(im)-320(d)1(o)-320(k)28(olan)1(,)-320(sz)-1(l)1(i)-320(w)-320(\\252u)1(n)28(y)-319(z)-1(a-)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(du)-344(wpatr)1(z)-1(eni,)-344(w)-345(s)-1(ze)-1(r)1(okie,)-345(z\\252o)-28(c)-1(i)1(s)-1(te)-345(pr)1(z)-1(epa\\261c)-1(i)1(e)-346(n)1(ieba)-345(i)-344(z)-346(n)1(ie)-1(b)-27(em)-345(w)-346(d)1(usz)-1(ac)28(h,)-344(i)]TJ 0 -13.549 Td[(z)-334(n)1(ie)-1(b)-27(em)-334(w)-334(o)-27(c)-1(zac)27(h,)-333(i)-333(j)1(akb)28(y)-333(w)-334(n)1(iebia\\253)1(s)-1(k)1(ic)27(h)-333(ot\\246c)-1(zac)27(h)-333(n)1(ad)-333(g\\252o)28(w)27(ami.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-355(msz)-1(a)-354(s)-1(i)1(\\246)-355(w)-355(n)1(ic)27(h)-354(o)-27(dpr)1(a)28(w)-1(i)1(a\\252)-1(a,)-354(tak)-354(p)-27(e)-1(\\252n)1(i)-354(b)28(yli)-354(\\261wi\\246)-1(tego)-354(nab)-27(o\\273)-1(e\\253st)28(w)27(a,)]TJ -27.879 -13.549 Td[(tak)-398(dusze)-400(i)1(m)-400(k)1(l\\246)-1(cza\\252)-1(y)-398(w)-399(z)-1(ac)28(h)28(wyce)-1(n)1(iu)-399(i)-398(tak)-399(i)1(m)-399(\\261)-1(p)1(ie)-1(w)28(a\\252y)-399(wni)1(e)-1(b)-27(o)28(w)-1(zi\\246te)-399(s)-1(erca)-399(o)]TJ 0 -13.55 Td[(\\252as)-1(ce)-334(P)28(a\\253)1(s)-1(k)1(ie)-1(j)1(,)-333(t)28(ylk)28(o)-333(im)-334(j)1(e)-1(d)1(n)28(ym)-334(ob)-55(j)1(a)28(w)-1(i)1(o)-1(n)1(e)-1(j)-332(w)-334(tej)-333(go)-28(dzin)1(ie)-334(\\273yw)27(ot)1(a.)]TJ 27.879 -13.549 Td[(Ni)-311(s)-1(\\252o)28(w)28(a)-312(n)1(ie)-312(p)1(rze)-1(m\\363)28(w)-1(i)1(li)-311(wi\\246)-1(ce)-1(j)-310(do)-311(s)-1(i)1(e)-1(b)1(ie)-1(,)-311(n)1(i)-311(jedn)1(e)-1(go)-311(s)-1(\\252o)28(w)28(a,)-311(t)27(y)1(lk)28(o)-311(niekiedy)]TJ -27.879 -13.549 Td[(kr)1(z)-1(y\\273o)28(w)27(a\\252y)-301(si\\246)-302(ic)28(h)-301(s)-1(p)-27(o)-56(j)1(rze)-1(n)1(ia)-301(jak)-301(b\\252y)1(s)-1(k)56(a)28(w)-1(i)1(c)-1(e,)-301(c)-1(a\\252ki)1(e)-1(m)-302(j)1(u\\273)-301(p)-28(ost\\246)-1(p)1(\\252e)-302(o)-28(d)-301(w\\252asn)28(yc)27(h)]TJ 0 -13.549 Td[(\\273ar\\363)28(w)-334(i)-333(ni)1(c)-334(o)-334(sobi)1(e)-334(ni)1(e)-334(wie)-1(d)1(z)-1(\\241ce)-1(.)]TJ 27.879 -13.549 Td[(Nie)-440(wiedzie)-1(l)1(i)-440(r\\363)28(wni)1(e)-1(\\273,)-440(\\273e)-440(\\261)-1(p)1(ie)-1(w)28(a)-56(j)1(\\241)-440(jak)56(\\241\\261)-440(pi)1(e)-1(\\261\\253,)-439(c)-1(o)-439(s)-1(i\\246)-440(z)-440(ni)1(c)27(h)-439(b)28(y\\252a)-440(sam)-1(a)]TJ -27.879 -13.55 Td[(zro)-28(d)1(z)-1(i\\252a)-364(i)-363(kieb)28(y)-364(p)1(tak)-364(r)1(oz)-1(\\261wie)-1(r)1(gotan)28(y)-364(l)1(e)-1(cia\\252a)-364(n)1(ad)-364(omro)-28(cz)-1(on)1(e)-364(p)-28(ol)1(a,)-364(w)28(e)-365(wsz)-1(ystek)]TJ 0 -13.549 Td[(\\261w)-1(i)1(at.)]TJ 27.879 -13.549 Td[(Nie)-334(wiedzieli)-333(na)28(w)28(e)-1(t,)-333(k)56(a)-56(j)-333(s\\241)-333(i)-333(dok)56(\\241d)-333(id)1(\\241,)-334(i)-333(p)-27(o)-333(c)-1(o?)]TJ 0 -13.549 Td[(Nagle)-334(i)-333(k)56(a)-55(j\\261)-334(z)-334(b)1(lisk)56(a)-334(r)1(un\\241\\252)-333(im)-333(nad)-333(g\\252o)28(wy)-334(t)28(w)28(ard)1(y)-334(i)-333(suc)28(h)28(y)-333(g\\252os)-1(:)]TJ 0 -13.549 Td[({)-333(Jas)-1(i)1(u,)-333(do)-333(dom)28(u!)]TJ 0 -13.549 Td[(Wyt)1(rz)-1(e\\271w)-1(i)1(a\\252)-294(w)-294(t)28(ym)-294(o)-27(c)-1(zymgnieniu)1(;)-293(b)28(yli)-293(na)-293(top)-27(olo)28(w)27(ej,)-293(a)-294(matk)56(a)-294(sto)-55(ja\\252a)-294(tu)1(\\273)]TJ -27.879 -13.55 Td[(pr)1(z)-1(ed)-389(n)1(imi)-389(z)-390(gr)1(o\\271)-1(n)1(\\241)-389(i)-389(niepr)1(z)-1(eb\\252agan)1(\\241)-389(t)28(w)27(arz\\241)-389({)-389(j\\241\\252)-389(cos)-1(i)1(k)-389(b\\241k)56(a\\242)-390(i)-388(ple\\261)-1(\\242)-389(trzy)-389(p)-27(o)]TJ 0 -13.549 Td[(trzy)84(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(h)1(o)-28(d)1(\\271)-334(do)-333(dom)28(u!)]TJ 0 -13.549 Td[(Wzi\\246\\252)-1(a)-451(go)-451(z)-1(a)-451(r\\246k)28(\\246)-452(i)-451(gniew)-1(n)1(ie)-452(p)-27(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252a)-451(z)-1(a)-451(s)-1(ob)1(\\241,)-451(da\\252)-452(si\\246)-452(b)-27(ez)-452(op)-28(or)1(u,)-451(z)]TJ -27.879 -13.549 Td[(p)-27(ok)28(or\\241...)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-353(s)-1(z\\252a)-354(z)-1(a)-354(n)1(imi)-354(j)1(akb)28(y)-353(urze)-1(cz)-1(on)1(a,)-354(gd)1(y)-354(n)1(araz)-354(organ)1(i\\261)-1(cina)-353(p)-28(o)-27(dni)1(e)-1(s\\252a)-354(z)]TJ -27.879 -13.549 Td[(dr)1(ogi)-333(k)55(amie\\253)-333(i)-333(c)-1(i)1(s)-1(n)1(\\246)-1(\\252a)-333(w)-334(n)1(i\\241)-334(ze)-334(strasz)-1(n)1(\\241)-334(za)28(w)-1(zi\\246to\\261)-1(ci\\241.)]TJ\nET\nendstream\nendobj\n2376 0 obj <<\n/Type /Page\n/Contents 2377 0 R\n/Resources 2375 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2375 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2381 0 obj <<\n/Length 9771      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(746)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(48.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[({)-333(P)28(os)-1(z\\252a)-333(prec)-1(z!)-333(A)-333(do)-333(bu)1(dy)83(,)-333(t)28(y)-333(suk)28(o!)-333({)-333(z)-1(akr)1(z)-1(y)1(c)-1(za\\252a)-334(wzg)-1(ar)1(dli)1(w)-1(i)1(e)-1(.)]TJ 0 -13.549 Td[(Jagu)1(s)-1(ia)-260(ob)-27(e)-1(j)1(rz)-1(a\\252a)-260(s)-1(i)1(\\246)-261(dok)28(o\\252a,)-260(c)-1(a\\252ki)1(e)-1(m)-261(n)1(ie)-261(miark)1(uj\\241c,)-260(o)-261(k)28(ogo)-260(tam)27(tej)-260(c)27(h)1(o)-28(dzi,)]TJ -27.879 -13.549 Td[(ale)-468(gd)1(y)-468(j)1(e)-1(j)-467(znik)1(n\\246li)-468(z)-468(o)-27(c)-1(z\\363)27(w,)-467(d\\252u)1(go)-468(si\\246)-468(pl\\241ta\\252a)-467(p)-28(o)-467(dr)1(ogac)27(h,)-467(a)-468(p)-27(otem)-1(,)-467(gdy)-467(w)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ie)-334(p)-27(os)-1(zli)-333(s)-1(p)1(a\\242)-1(,)-333(siedzia\\252a)-334(p)-27(o)-28(d)-333(\\261c)-1(i)1(an\\241)-333(do)-333(bi)1(a\\252)-1(ego)-333(rana.)]TJ 27.879 -13.549 Td[(Go)-27(dzin)28(y)-434(sz)-1(\\252y)-433(z)-1(a)-434(go)-28(d)1(z)-1(i)1(nami,)-434(p)1(ia\\252y)-434(k)28(ok)28(ot)28(y)83(,)-433(r\\273a\\252)-1(y)-433(k)28(onie)-434(pr)1(z)-1(y)-433(w)27(ozac)27(h)-433(nad)]TJ -27.879 -13.55 Td[(sta)27(w)28(em)-1(,)-304(rob)1(i\\252)-305(si\\246)-305(\\261wit,)-304(w)-1(i)1(e)-1(\\261)-305(zac)-1(zyn)1(a\\252a)-305(ws)-1(ta)28(w)28(a\\242)-1(,)-304(b)1(rali)-304(w)27(o)-27(d\\246)-305(ze)-305(s)-1(ta)28(wu,)-304(wyp)-27(\\246)-1(d)1(z)-1(al)1(i)]TJ 0 -13.549 Td[(b)28(yd)1(\\252o)-352(n)1(a)-352(past)28(w)-1(i)1(s)-1(k)56(a,)-351(kto)-352(j)1(u\\273)-352(wyc)27(h)1(o)-28(dzi\\252)-352(n)1(a)-352(rob)-27(ot\\246,)-352(gd)1(z)-1(i)1(e)-353(j)1(u\\273)-352(tr)1(a)-56(jk)28(ot)1(a\\252)-1(y)-351(k)28(obi)1(e)-1(t)28(y)84(,)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-357(dziec)-1(i)-356(p)-27(op\\252ak)1(iw)27(a\\252y)-356(mat)28(yja\\261ni)1(e)-1(,)-356(a)-356(ona)-356(w)28(c)-1(i\\241\\273)-356(s)-1(i)1(e)-1(dzia\\252a)-356(na)-356(j)1(e)-1(d)1(n)28(ym)-357(miejsc)-1(u)-355(i)]TJ 0 -13.549 Td[(z)-307(ot)28(w)27(ar)1(t)27(y)1(m)-1(i)-306(o)-28(cz)-1(ami)-307(\\261ni\\252a)-307(n)1(a)-307(j)1(a)27(wie)-307(o)-307(Jasiu)-306({)-307(\\273e)-308(cos)-1(i)1(k)-307(z)-307(ni)1(m)-308(r)1(oz)-1(ma)28(w)-1(i)1(a,)-307(\\273e)-308(p)1(atrz\\241)]TJ 0 -13.549 Td[(na)-403(si\\246)-403(tak)-403(z)-404(b)1(lisk)56(a,)-403(ja\\273e)-404(j)1(\\241)-404(ogar)1(nia\\252y)-403(s\\252o)-28(d)1(kie)-404(ogn)1(ie,)-403(\\273)-1(e)-403(id\\241)-403(k)56(a)-55(j\\261)-403(i)-403(\\261)-1(p)1(ie)-1(w)28(a)-56(j)1(\\241)-403(c)-1(o\\261)]TJ 0 -13.549 Td[(taki)1(e)-1(go,)-333(cz)-1(ego)-334(n)1(ie)-334(p)-27(oredzi\\252a)-334(sobi)1(e)-334(pr)1(z)-1(yp)-27(omnie\\242)-334({)-333(i)-333(tak)-333(c)-1(i\\246giem)-334(j)1(e)-1(d)1(no)-333(w)-334(k)28(\\363\\252k)28(o.)]TJ 27.879 -13.55 Td[(Matk)56(a)-317(z)-1(b)1(ud)1(z)-1(i\\252a)-317(j\\241)-318(z)-318(t)28(yc)28(h)-317(c)-1(u)1(dn)28(y)1(c)27(h)-317(z)-1(wid)1(z)-1(e\\253,)-317(a)-318(g\\252\\363)28(wnie)-318(Han)1(k)56(a,)-318(kt)1(\\363ra)-318(p)1(rzy-)]TJ -27.879 -13.549 Td[(sz)-1(\\252a)-338(ju)1(\\273)-338(przysz)-1(yk)28(o)28(w)28(ana)-338(d)1(o)-338(drogi)-337(i)-338(c)27(h)1(o)-28(c)-1(i)1(a\\273)-339(n)1(ie\\261)-1(mia\\252o,)-338(p)1(ie)-1(r)1(w)-1(sz)-1(a)-337(w)-1(y)1(c)-1(i\\241)-27(gn\\246\\252)-1(a)-338(r)1(\\246)-1(k)28(\\246)]TJ 0 -13.549 Td[(na)-333(zgo)-28(d\\246.)]TJ 27.879 -13.549 Td[({)-303(Do)-302(Cz)-1(\\246s)-1(to)-27(c)27(ho)28(wy)-303(i)1(d\\246,)-303(to)-302(m)-1(i)-302(daru)1(jec)-1(i)1(e)-1(,)-302(c)-1(om)-303(ta)-302(przec)-1(iw)-303(w)28(a)-56(j)1(u)-302(z)-1(grzes)-1(zy\\252a...)]TJ 0 -13.549 Td[({)-428(B\\363g)-428(zap\\252a\\242)-428(za)-428(dob)1(re)-428(s)-1(\\252o)28(w)28(a,)-428(ale)-428(co)-428(kr)1(z)-1(ywd)1(a,)-428(to)-427(krzywda!)-427({)-428(mruk)1(n\\246\\252)-1(a)]TJ -27.879 -13.55 Td[(stara.)]TJ 27.879 -13.549 Td[({)-333(Nie)-334(ru)1(c)27(h)1(a)-56(j)1(m)27(y)-333(tego!)-334(P)1(rosz)-1(\\246)-334(w)28(as)-334(ze)-334(sz)-1(cz)-1(erego)-334(se)-1(r)1(c)-1(a,)-333(b)28(y)1(\\261)-1(cie)-334(mi)-333(o)-28(dp)1(u\\261c)-1(i)1(\\252)-1(y)84(.)]TJ 0 -13.549 Td[({)-298(Z\\252o\\261c)-1(i)-297(ju)1(\\273)-298(do)-297(w)27(as)-298(w)-298(se)-1(r)1(c)-1(u)-297(ni)1(e)-298(c)27(ho)28(w)28(am)-298({)-298(w)28(e)-1(stc)27(h)1(n\\246\\252a)-298(ci\\246)-1(\\273k)28(o)-298(Domin)1(ik)28(o)28(w)27(a.)]TJ 0 -13.549 Td[({)-394(Ani)-393(ja!)-394(c)27(h)1(o)-28(cie)-1(m)-394(ni)1(e)-1(ma\\252o)-394(przec)-1(ierp)1(ia\\252a!)-394({)-394(wyrze)-1(k\\252a)-394(p)-27(o)28(w)27(a\\273nie)-394(Jagu)1(s)-1(ia)-394(i)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\252ysz)-1(a)28(wsz)-1(y)-333(sygnatu)1(rk)28(\\246)-334(p)-27(os)-1(z\\252a)-333(s)-1(i\\246)-333(przyb)1(ie)-1(r)1(a\\242)-334(do)-333(k)28(o\\261)-1(cio\\252a.)]TJ 27.879 -13.55 Td[({)-382(Wiec)-1(i)1(e)-1(,)-382(a)-382(to)-382(Jasio)-382(organi)1(s)-1(t\\363)28(w)-382(idzie)-383(z)-382(k)28(om)-1(p)1(ani\\241)-382({)-382(ozw)27(a\\252a)-382(s)-1(i)1(\\246)-383(p)-27(o)-383(c)28(h)28(wili)]TJ -27.879 -13.549 Td[(Hank)56(a.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-333(p)-27(os)-1(\\252ysz)-1(a)28(wsz)-1(y)-333(no)28(win)1(\\246)-334(wypad)1(\\252a)-334(z)-334(c)28(ha\\252u)1(p)28(y)-333(na)-333(p)-28(\\363\\252)-333(ub)1(ran)1(a.)]TJ 0 -13.549 Td[({)-227(Co)-227(in)1(o)-227(sam)-1(a)-226(organi)1(\\261)-1(cina)-226(m)-1(i)-226(p)-28(o)28(wiedzia\\252a,)-227(j)1(ak)28(o)-227(k)28(oniecz)-1(n)1(ie)-227(napar)1(\\252)-227(s)-1(i)1(\\246)-228(i)1(\\261)-1(\\242)-227(do)]TJ -27.879 -13.549 Td[(Cz)-1(\\246s)-1(t)1(o)-28(c)27(h)1(o)27(wy!)-305(Ra\\271niej)-305(b)-27(\\246dzie)-306(n)1(am)-1(a)-305(w)28(\\246)-1(d)1(ro)28(w)27(a\\242)-305(z)-306(ksi\\246\\273)-1(yk)1(ie)-1(m)-305(i)-305(h)1(o)-1(n)1(orn)1(ie)-1(j)1(!)-305(Osta)-56(j)1(ta)]TJ 0 -13.55 Td[(z)-351(Bogie)-1(m.)-350({)-351(P)28(o\\273e)-1(gn)1(a\\252)-1(a)-350(s)-1(i)1(\\246)-352(p)1(rzyjacielsk)28(o)-351(i)-351(p)-27(osz)-1(\\252a)-351(d)1(o)-351(k)28(o\\261c)-1(io\\252a)-350(rozp)-28(o)28(wiada)-55(j\\241c)-351(p)-27(o)]TJ 0 -13.549 Td[(dr)1(o)-28(dze)-404(n)1(o)28(w)-1(i)1(n\\246,)-403(ju\\261ci,)-403(c)-1(o)-403(si\\246)-404(j)1(e)-1(j)-402(dziw)27(o)28(w)28(ali,)-403(t)28(ylk)28(o)-403(Jagu)1(s)-1(t)28(yn)1(k)56(a)-404(p)-27(okr)1(\\246)-1(ci\\252a)-403(g\\252)-1(o)28(w)28(\\241)-403(i)]TJ 0 -13.549 Td[(rze)-1(k)1(\\252a)-334(cic)27(h)1(o:)]TJ 27.879 -13.549 Td[({)-333(W)-333(t)27(y)1(m)-334(co\\261)-334(jes)-1(t!)-333(Ju)1(\\273)-334(on)-333(ta)-333(z)-334(d)1(obrej)-333(w)28(oli)-333(nie)-333(idzie,)-334(n)1(ie...)]TJ 0 -13.549 Td[(Ale)-325(ni)1(e)-326(p)-27(ora)-325(b)28(y)1(\\252a)-325(na)-325(d)1(\\252)-1(u)1(\\273)-1(sze)-326(wyw)28(o)-28(dy)84(,)-325(b)-27(o)-325(z)-325(p)-28(\\363\\252)-325(ws)-1(i)-324(z)-1(ebr)1(a\\252o)-325(s)-1(i\\246)-325(w)-325(k)28(o\\261)-1(ciele)]TJ -27.879 -13.55 Td[(i)-333(ksi\\241dz)-333(ju\\273)-333(w)-1(y)1(c)27(ho)-27(dzi\\252)-334(z)-333(w)27(ot)28(yw)28(\\241,)-333(o)-28(dp)1(ra)28(wian\\241)-333(na)-333(in)28(t)1(e)-1(n)1(c)-1(j)1(\\246)-334(pielgr)1(z)-1(ymki.)]TJ 27.879 -13.549 Td[(Jasio)-449(s)-1(\\252u)1(\\273)-1(y\\252)-449(do)-449(ms)-1(zy)-449(jak)-449(co)-449(dn)1(ia,)-449(jeno)-449(dzisia)-449(t)28(w)27(ar)1(z)-450(mia\\252)-450(cos)-1(i)1(k)-449(bledsz)-1(\\241)]TJ -27.879 -13.549 Td[(i)-425(d)1(z)-1(i)1(w)-1(n)1(ie)-425(z)-1(b)-27(ola\\252\\241,)-425(za\\261)-426(o)-27(c)-1(zy)-425(p)-27(o)-28(dsini)1(a\\252e)-426(i,)-424(jes)-1(zc)-1(ze)-425(s)-1(zkliste)-425(o)-28(d)-425(\\252ez)-1(,)-424(\\273)-1(e)-425(jak)28(ob)28(y)-424(w)27(e)]TJ 0 -13.549 Td[(mg\\252ac)27(h)-313(m)-1(a)-55(jacz)-1(y\\252)-314(m)28(u)-313(c)-1(a\\252y)-314(k)28(o\\261ci\\363\\252,)-314(T)83(eres)-1(k)56(a,)-314(l)1(e)-1(\\273\\241c)-1(a)-314(k)1(rzy\\273)-1(em)-314(przez)-315(ca\\252e)-314(nab)-27(o\\273)-1(e\\253-)]TJ 0 -13.549 Td[(st)27(w)28(o,)-285(w)-1(y)1(s)-1(tr)1(ac)27(han)1(e)-286(o)-28(cz)-1(y)-285(Jagusi,)-285(matk)55(a,)-285(siedz)-1(\\241ca)-285(w)-286(dw)28(orskiej)-285(\\252)-1(a)28(w)28(c)-1(e,)-285(i)-286(te)-286(p)1(rzyst\\246)-1(-)]TJ 0 -13.549 Td[(pu)1(j\\241ce)-365(do)-365(k)28(om)28(un)1(ii)-365(w)28(\\246dro)28(wnik)1(i)-365({)-365(j)1(ak)-365(p)1(rze)-1(z)-365(mg\\252\\246)-366(wid)1(z)-1(i)1(a\\252,)-365(pr)1(z)-1(ez)-365(te)-365(\\252z)-1(y)-364(z)-1(aledwie)]TJ 0 -13.55 Td[(p)-27(o)27(wstrzym)27(y)1(w)27(an)1(e)-1(,)-236(prze)-1(z)-237(\\273a\\252o\\261)-1(\\242)-237(s)-1(zarp)1(i\\241c)-1(\\241)-236(m)27(u)-236(s)-1(erce)-238(i)-236(przez)-238(ten)-236(\\261)-1(mierteln)28(y)-237(sm)27(u)1(te)-1(k)1(.)]TJ 27.879 -13.549 Td[(Pr)1(ob)-28(oszc)-1(z)-372(o)-28(d)-371(o\\252tarza)-372(\\273egna\\252)-372(o)-27(dc)27(h)1(o)-28(dz\\241cyc)27(h,)-371(a)-371(kiej)-372(si\\246)-372(wyw)28(alili)-371(pr)1(z)-1(ed)-371(k)28(o-)]TJ -27.879 -13.549 Td[(\\261c)-1(i\\363\\252,)-488(s)-1(kr)1(opi\\252)-488(ic)27(h)-488(w)27(o)-28(d)1(\\241)-489(\\261w)-1(i)1(\\246)-1(con\\241)-489(i)-488(p)-27(ob\\252ogos)-1(\\252a)28(wi\\252,)-489(p)-27(o)-28(d)1(nie\\261)-1(l)1(i)-489(zaraz)-489(c)27(h)1(or\\241)-28(giew,)]TJ 0 -13.549 Td[(kr)1(z)-1(y\\273)-333(b\\252ysz)-1(cz)-1(a\\252)-333(na)-333(c)-1(zele)-1(,)-333(kt)1(os)-1(ik)-333(za\\261)-1(p)1(iew)27(a\\252)-333(i)-333(k)27(omp)1(ania)-333(ru)1(s)-1(zy\\252a)-333(w)-334(dal)1(e)-1(k)56(\\241)-333(drog\\246.)]TJ 27.879 -13.549 Td[(Z)-408(Lip)1(ie)-1(c)-408(s)-1(z\\252y:)-408(Han)1(k)55(a,)-408(M)1(arysia)-408(Balc)-1(erk)28(\\363)28(wna,)-408(K)1(\\252)-1(\\246b)-27(o)27(w)28(a)-408(z)-409(c\\363rk)56(\\241,)-408(Gr)1(z)-1(ela)-408(z)]TJ -27.879 -13.55 Td[(kr)1(z)-1(yw)28(\\241)-291(g\\246)-1(b\\241,)-291(T)83(eres)-1(k)56(a)-291(z)-292(m\\246)-1(\\273e)-1(m,)-291(kt\\363r)1(e)-292(s)-1(i)1(\\246)-292(o)-28(c)27(h)1(\\014aro)28(w)28(a\\252y)-291(prze)-1(z)-291(c)-1(a\\252\\241)-291(drog\\246)-291(nie)-291(bra\\242)]TJ 0 -13.549 Td[(do)-373(u)1(s)-1(t)-373(n)1(ic)-374(gor)1(\\241c)-1(ego,)-373(i)-373(par)1(\\246)-374(k)28(omorni)1(c)-1(,)-373(al)1(e)-374(wraz)-374(z)-373(lu)1(d\\271m)-1(i)-373(z)-373(dru)1(gic)27(h)-372(w)-1(si)-373(ze)-1(b)1(ra\\252o)]TJ\nET\nendstream\nendobj\n2380 0 obj <<\n/Type /Page\n/Contents 2381 0 R\n/Resources 2379 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2379 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2384 0 obj <<\n/Length 6397      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(747)]TJ -358.232 -35.866 Td[(si\\246)-334(ze)-334(s)-1(to)-333(nar)1(o)-28(du)1(.)]TJ 27.879 -13.549 Td[(Od)1(pro)28(w)28(adza\\252a)-267(ic)27(h)-266(c)-1(a\\252a)-267(wie\\261,)-267(za\\261)-268(w)28(oz)-1(y)-266(z)-1(a)28(w)28(alone)-267(tob)-27(o\\252am)-1(i)-266(s)-1(z\\252y)-267(na)-266(z)-1(a)-55(jdac)28(h.)]TJ -27.879 -13.549 Td[(Ale)-437(m)-1(imo)-437(w)27(cze)-1(snej)-437(go)-28(d)1(z)-1(in)29(y)-437(upa\\252)-437(si\\246)-438(j)1(u\\273)-437(w)-1(zmaga\\252)-1(,)-437(s\\252o\\253ce)-438(\\261lepi\\252o)-437(o)-28(cz)-1(y)-437(i)-437(k)1(urz)]TJ 0 -13.549 Td[(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-334(si\\246)-334(tu)1(m)-1(an)1(am)-1(i)1(,)-334(\\273e)-334(sz)-1(l)1(i)-334(j)1(akb)28(y)-333(w)-333(t)27(y)1(c)27(h)-333(sz)-1(ar)1(yc)27(h)1(,)-334(d)1(usz)-1(\\241cyc)28(h)-333(ob\\252ok)56(ac)27(h.)]TJ 27.879 -13.549 Td[(Jagu)1(s)-1(ia)-256(s)-1(z\\252a)-257(z)-256(m)-1(atk)56(\\241)-256(i)-256(z)-257(dr)1(ugimi,)-256(b)28(y\\252a)-256(s)-1(tr)1(as)-1(zni)1(e)-257(z)-1(mize)-1(r)1(o)27(w)28(ana,)-256(tr)1(z)-1(\\246s)-1(\\252a)-256(s)-1(i\\246)-256(w)]TJ -27.879 -13.55 Td[(sobie)-278(z)-278(\\273a\\252o\\261)-1(ci,)-277(a)-278(\\252yk)56(a)-55(j\\241c)-278(gorzkie,)-277(s)-1(iero)-28(ce)-278(\\252zy)-278(p)1(atrzy\\252a)-278(w)-278(J)1(as)-1(ia)-277(kieb)28(y)-277(w)-278(to)-277(s)-1(\\252o\\253ce,)]TJ 0 -13.549 Td[(ju)1(\\261)-1(ci,)-295(co)-295(z)-296(d)1(ala,)-295(b)-27(o)-296(or)1(gani\\261cina)-295(z)-296(d)1(z)-1(i)1(e)-1(\\242m)-1(i)-294(nie)-295(opu)1(s)-1(zc)-1(za\\252a)-296(go)-295(an)1(i)-295(na)-295(c)28(h)28(wil\\246,)-295(\\273)-1(e)-295(nie)]TJ 0 -13.549 Td[(b)28(y\\252o)-333(sp)-28(osobu)-333(p)1(rze)-1(m\\363)28(w)-1(i)1(\\242)-334(do)-333(ni)1(e)-1(go)-333(ni)-333(n)1(a)27(w)28(e)-1(t)-333(stan\\241\\242)-334(m)28(u)-333(w)-334(o)-27(c)-1(zac)27(h)1(.)]TJ 27.879 -13.549 Td[(Mateusz)-412(m\\363)28(wi\\252)-411(c)-1(osik)-411(d)1(o)-411(niej,)-410(to)-411(m)-1(atk)56(a,)-411(to)-411(d)1(ru)1(gie)-1(,)-410(c)-1(\\363\\273,)-411(kiej)-411(t)28(yl)1(k)28(o)-411(jedno)]TJ -27.879 -13.549 Td[(wiedzia\\252a,)-322(\\273)-1(e)-322(Jasio)-322(n)1(a)-322(z)-1(a)28(ws)-1(ze)-323(o)-27(dc)27(h)1(o)-28(d)1(z)-1(i,)-321(\\273)-1(e)-322(ju)1(\\273)-323(go)-322(n)1(igd)1(y)-322(ni)1(e)-323(zobacz)-1(y)84(,)-322(p)1(rz)-1(eni)1(gdy)84(.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)-291(\\014gu)1(r\\241)-292(n)1(a)-292(P)28(o)-28(d)1(les)-1(iu)-291(p)-27(o\\273)-1(egnali)-291(k)28(om)-1(p)1(ani\\246,)-292(k)1(t\\363ra)-292(zaraz)-292(p)-28(o)-27(c)-1(i\\241)-27(gn\\246\\252)-1(a)-291(dalej,)]TJ -27.879 -13.55 Td[(w\\261)-1(r)1(\\363)-28(d)-318(\\261)-1(p)1(iew)27(a\\253)-318(o)-28(d)1(dala)-55(j\\241c)-319(si\\246)-319(coraz)-319(bar)1(z)-1(ej,)-318(a\\273)-319(i)-318(z)-1(gin)1(\\246)-1(\\252a)-318(c)-1(a\\252k)1(ie)-1(m)-319(z)-319(o)-27(c)-1(z\\363)28(w)-1(,)-318(a)-318(t)27(y)1(lk)28(o)]TJ 0 -13.549 Td[(k)56(a)-56(j)1(\\261)-334(w)-334(r)1(oz)-1(s\\252onec)-1(znion)29(yc)27(h)-333(d)1(alac)27(h)1(,)-333(nad)-333(d)1(rogam)-1(i)1(,)-333(p)-28(o)-28(d)1(nosi\\252y)-333(s)-1(i)1(\\246)-334(k\\252\\246b)28(y)-333(kur)1(z)-1(a)28(wy)83(.)]TJ 27.879 -13.549 Td[({)-362(Lacze)-1(go?)-362(l)1(ac)-1(ze)-1(go?)-362({)-361(j\\246c)-1(za\\252a)-362(wlek)56(\\241c)-362(s)-1(i\\246)-361(nib)28(y)-361(tr)1(up)-361(z)-1(a)-361(p)-27(o)27(wraca)-56(j)1(\\241c)-1(y)1(m)-1(i)-361(do)]TJ -27.879 -13.549 Td[(ws)-1(i)1(.)]TJ 27.879 -13.549 Td[({)-355(P)28(adn)1(\\246)-356(i)-356(zamr\\246!)-356({)-355(m)27(y\\261la\\252a)-355(c)-1(zuj)1(\\241c)-356(w)-356(sobie)-356(j)1(akb)28(y)-355(p)-27(o)-28(c)-1(zyn)1(anie)-356(si\\246)-356(\\261m)-1(i)1(e)-1(rci,)]TJ -27.879 -13.55 Td[(sz)-1(\\252a)-409(coraz)-409(w)27(oln)1(ie)-1(j)-408(i)-409(ci\\246\\273)-1(ej,)-409(wyzb)28(yta)-408(z)-1(e)-409(s)-1(i\\252)-409(skw)28(arem)-1(,)-408(z)-1(m\\246)-1(cz)-1(eni)1(e)-1(m)-409(i)-409(t\\241)-409(strasz)-1(n)1(\\241)]TJ 0 -13.549 Td[(ud)1(r\\246k)56(\\241.)]TJ 27.879 -13.549 Td[({)-451(I)-450(c)-1(\\363\\273)-451(j)1(a)-451(teraz)-451(p)-27(o)-28(cz)-1(n)1(\\246)-1(,)-450(c)-1(o?)-450({)-451(p)28(yt)1(a\\252)-1(a,)-450(zapatrzona)-450(w)-451(ten)-450(dzie)-1(\\253)-450(d)1(z)-1(iwn)1(ie)]TJ -27.879 -13.549 Td[(pu)1(s)-1(t)28(y)-333(i)-333(b)-27(ole)-1(\\261ni)1(e)-334(\\261)-1(l)1(e)-1(p)1(i\\241c)-1(y)84(.)]TJ 27.879 -13.549 Td[(Cz)-1(ek)56(a\\252a)-372(z)-371(up)1(ragni)1(e)-1(n)1(ie)-1(m)-371(no)-28(cy)-371(i)-371(c)-1(i)1(c)27(ho\\261ci,)-371(ale)-372(i)-371(n)1(o)-28(c)-372(n)1(ie)-372(p)1(rzyni)1(e)-1(s\\252a)-372(j)1(e)-1(j)-370(folgi)]TJ -27.879 -13.55 Td[(ni)-392(uk)28(o)-55(ju,)-392(t\\252uk\\252a)-393(si\\246)-393(do)-393(sam)-1(ego)-393(\\261)-1(witan)1(ia)-393(k)28(ole)-393(c)27(h)1(a\\252up)28(y)84(,)-393(sz)-1(\\252a)-393(n)1(a)-393(drogi)1(,)-393(p)-28(ol)1(e)-1(cia\\252a)]TJ 0 -13.549 Td[(na)28(w)28(e)-1(t)-410(n)1(a)-410(P)28(o)-28(d)1(le)-1(sie)-410(p)-28(o)-28(d)-409(\\014gu)1(r\\246)-1(,)-409(k)55(a)-55(j)-410(ostatni)-410(r)1(az)-411(wid)1(z)-1(ia\\252a)-410(Jasia,)-410(i)-410(zapi)1(e)-1(k\\252ymi)-410(o)-28(d)]TJ 0 -13.549 Td[(m\\246)-1(ki)-246(o)-28(cz)-1(ami)-246(s)-1(zuk)56(a\\252a)-247(n)1(a)-247(sz)-1(eroki)1(e)-1(j)1(,)-247(p)1(ias)-1(zcz)-1(ystej)-247(d)1(ro)-28(d)1(z)-1(e)-247(j)1(akb)28(y)-246(\\261)-1(l)1(ad\\363)28(w)-247(j)1(e)-1(go)-246(krok)28(\\363)28(w,)]TJ 0 -13.549 Td[(c)27(h)1(o)-28(\\242b)28(y)-333(c)-1(ieni)1(a)-334(p)-27(o)-333(nim,)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)-334(t)1(e)-1(j)-333(gr)1(udk)1(i)-333(z)-1(iem)-1(i)-333(tk)1(ni\\246tej)-333(przez)-334(niego.)]TJ 27.879 -13.549 Td[(Nie)-295(b)28(y\\252o,)-295(n)1(ie)-295(b)28(y\\252o)-295(la)-295(n)1(ie)-1(j)-294(ni)1(c)-296(i)-295(n)1(ik)56(a)-56(j)1(,)-295(ni)1(e)-296(b)28(y)1(\\252o)-295(ju\\273)-295(zm)-1(i\\252o)28(w)28(ania)-295(i)-294(p)-28(or)1(atun)1(ku.)]TJ 0 -13.55 Td[(Zabr)1(ak\\252o)-266(jej)-265(w)-267(k)28(o\\253)1(c)-1(u)-265(n)1(a)27(w)28(e)-1(t)-265(\\252e)-1(z,)-266(zabite)-266(sm)27(u)1(tkiem)-266(i)-266(rozpacz)-1(\\241,)-265(o)-28(cz)-1(y)-266(\\261wiec)-1(i\\252y)]TJ -27.879 -13.549 Td[(kiej)-333(stud)1(nie)-334(n)1(iez)-1(g\\252\\246bion)1(e)-1(j)-333(b)-27(ole\\261)-1(ci.)]TJ 27.879 -13.549 Td[(A)-282(t)28(yl)1(k)28(o)-282(ni)1(e)-1(ki)1(e)-1(j)1(,)-282(pr)1(z)-1(y)-281(pacierz)-1(u)1(,)-282(zryw)28(a\\252a)-282(si\\246)-282(z)-1(e)-282(spiek\\252yc)28(h)-282(w)28(arg)-282(\\273a\\252os)-1(n)1(a)-282(sk)55(ar)1(-)]TJ -27.879 -13.549 Td[(ga.)]TJ 27.879 -13.549 Td[({)-333(I)-334(za)-334(co)-333(to)-334(wsz)-1(y)1(s)-1(tk)28(o,)-333(m\\363)-56(j)-333(Bo\\273)-1(e,)-333(z)-1(a)-333(co?)]TJ\nET\nendstream\nendobj\n2383 0 obj <<\n/Type /Page\n/Contents 2384 0 R\n/Resources 2382 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2382 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2387 0 obj <<\n/Length 121       \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(748)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(48.)]TJ\nET\nendstream\nendobj\n2386 0 obj <<\n/Type /Page\n/Contents 2387 0 R\n/Resources 2385 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2385 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2390 0 obj <<\n/Length 7243      \n>>\nstream\n1 0 0 1 87.94 614.871 cm\nBT\n/F31 14.346 Tf 0 0 Td[(Rozdzi)1(a\\252)-375(49)]TJ/F17 10.909 Tf 0 -73.325 Td[(U)-273(Domini)1(k)28(o)27(w)28(e)-1(j)-272(z)-1(r)1(obi\\252o)-273(si\\246)-274(j)1(u\\273)-274(zgo\\252a)-273(nie)-273(do)-273(wytrzymani)1(a,)-273(Jagusia)-273(b)-28(o)28(wiem)-274(\\252azi\\252a)]TJ 0 -13.549 Td[(kiej)-418(n)1(ie)-1(p)1(rzytomna)-418(i)-418(o)-419(Bo\\273)-1(y)1(m)-419(\\261)-1(wiecie)-419(ni)1(e)-419(wie)-1(d)1(z)-1(\\241ca,)-418(J\\246)-1(d)1(rzyc)27(h)-418(t)1(e)-1(\\273)-419(j)1(e)-1(n)1(o)-419(zb)28(yw)28(a\\252)]TJ 0 -13.549 Td[(rob)-27(ot)28(y)83(,)-446(coraz)-447(cz\\246)-1(\\261c)-1(iej)-446(p)1(rz)-1(esiadu)1(j\\241c)-447(u)-445(Szym)-1(k)28(\\363)28(w,)-446(a)-446(w)-447(gosp)-28(o)-28(d)1(arst)28(w)-1(i)1(e)-447(c)-1(zyn)1(i\\252)-447(si\\246)]TJ 0 -13.55 Td[(taki)-455(upad)1(e)-1(k)-455(i)-456(opu)1(s)-1(zc)-1(zenie,)-456(\\273e)-457(n)1(ie)-1(r)1(az)-457(n)1(ie)-457(wyd)1(o)-56(j)1(one)-456(kro)28(wy)-456(p)-27(\\246)-1(d)1(z)-1(i)1(li)-456(na)-455(pa\\261)-1(n)1(iki)1(,)]TJ 0 -13.549 Td[(\\261w)-1(i)1(nie)-376(kwic)-1(za\\252y)-376(z)-377(g\\252o)-28(d)1(u)-376(i)-376(k)28(oni)1(e)-377(ob)1(gryza\\252)-1(y)-375(drab)1(in)28(y)-376(r)1(\\273)-1(\\241c)-377(p)1(rzy)-376(pu)1(s)-1(t)28(yc)28(h)-376(\\273\\252)-1(ob)1(ac)27(h)1(,)]TJ 0 -13.549 Td[(b)-27(o)-28(\\242)-484(staran)1(ie)-483(p)-28(or)1(e)-1(d)1(z)-1(i\\252a)-483(zarad)1(z)-1(i\\242)-483(ws)-1(zystkiem)27(u)1(,)-483(jes)-1(zcz)-1(ek)-483(ona)-483(u)1(t)28(yk)56(a\\252a)-483(o)-483(kij)1(u,)-483(z)]TJ 0 -13.549 Td[(pr)1(z)-1(ewi\\241z)-1(an)29(ym)-1(i)-396(o)-28(czam)-1(i,)-396(n)1(a)-397(p)-27(\\363\\252)-397(\\261le)-1(p)1(a,)-396(to)-397(i)-396(ni)1(e)-397(dziw)27(ota,)-396(co)-397(g\\252o)28(w)27(a)-396(jej)-396(p)-28(\\246k)56(a\\252a)-397(o)-28(d)]TJ 0 -13.549 Td[(tu)1(rbacji)1(.)]TJ 27.879 -13.549 Td[(Bo)-383(i)-383(j)1(ak\\273)-1(e:)-383(gn)1(\\363)-56(j)-382(p)-28(o)-27(d)-383(p)1(s)-1(ze)-1(n)1(ic)-1(\\246)-383(wysyc)27(h)1(a\\252)-383(w)-383(p)-28(olu)1(,)-383(a)-383(n)1(ie)-383(m)-1(i)1(a\\252)-383(go)-383(kto)-383(p)1(rzy-)]TJ -27.879 -13.55 Td[(ora\\242,)-403(len)-403(s)-1(i\\246)-403(ju\\273)-403(prosi\\252)-403(o)-404(wyr)1(yw)27(an)1(ie,)-403(z)-1(iemniaki)-403(zda\\252ob)28(y)-403(si\\246)-404(j)1(e)-1(sz)-1(cz)-1(e)-403(raz)-404(op)1(le)-1(\\242)-403(i)]TJ 0 -13.549 Td[(osypa\\242,)-324(b)1(rak)28(o)28(w)27(a\\252o)-324(d)1(rew)-324(na)-324(op)1(a\\252,)-324(p)-27(orz\\241dek)-324(gosp)-28(o)-28(d)1(arski)-324(n)1(isz)-1(cz)-1(a\\252,)-323(\\273)-1(n)1(iw)27(a)-323(b)28(y\\252y)-324(za)]TJ 0 -13.549 Td[(pasem)-1(,)-428(rob)-27(ot)28(y)-428(s)-1(t)1(arc)-1(zy\\252o)-428(c)27(h)1(o)-28(\\242)-1(b)29(y)-429(i)-428(n)1(a)-429(d)1(z)-1(i)1(e)-1(si\\246\\242)-429(r\\241k,)-428(a)-428(tu)-428(sz)-1(\\252o,)-428(ki)1(e)-1(b)28(y)-428(kt)1(o)-429(w)-428(no-)]TJ 0 -13.549 Td[(sie)-407(p)-27(o)-28(d)1(\\252)-1(u)1(b)28(yw)28(a\\252.)-406(Pr)1(z)-1(yn)1(a)-56(j)1(\\246)-1(\\252a)-406(n)1(a)27(w)28(e)-1(t)-405(k)27(omorn)1(ic\\246)-1(,)-406(sama)-406(te)-1(\\273)-406(z)-1(ab)1(ie)-1(ga\\252a,)-406(j)1(ak)-406(mog\\252a,)]TJ 0 -13.549 Td[(i)-364(dziec)-1(i)-364(p)-28(\\246dzi\\252a)-364(do)-364(rob)-27(ot)28(y)83(,)-364(ale)-365(Jagu)1(s)-1(ia)-364(b)28(y\\252a)-364(jak)1(b)28(y)-364(g\\252)-1(u)1(c)27(h)1(a)-365(n)1(a)-365(ws)-1(zy\\242kie)-365(p)1(ro\\261b)28(y)-364(i)]TJ 0 -13.55 Td[(pr)1(z)-1(ek\\252adan)1(ia,)-333(z)-1(a\\261)-333(J\\246)-1(d)1(rzyc)27(h)-333(n)1(a)-334(j)1(ak)56(\\241\\261)-334(p)-27(og)-1(r)1(oz)-1(\\246)-333(o)-28(db)1(urk)1(n\\241\\252)-333(hard)1(o:)]TJ 27.879 -13.549 Td[({)-326(Bo)-326(ciepn)1(\\246)-326(w)-1(sz)-1(y)1(\\242)-1(k)28(o)-325(i)-326(p)-27(\\363)-56(j)1(d\\246)-326(se)-326(w)27(e)-326(\\261w)-1(i)1(at!)-326(W)1(yp)-28(\\246dzili)1(\\261)-1(cie)-326(Szymk)56(a,)-326(to)-325(s)-1(ob)1(ie)]TJ -27.879 -13.549 Td[(tera)-380(s)-1(ami)-380(r\\363b)-27(c)-1(i)1(e)-1(!)-380(Jem)27(u)-380(ta)-380(n)1(ie)-381(cni)-380(si\\246)-381(za)-381(w)28(am)-1(i)1(,)-380(c)27(ha\\252u)1(p)-28(\\246)-380(m)-1(a,)-380(gr)1(os)-1(z)-381(ma,)-380(k)28(obi)1(e)-1(t\\246)]TJ 0 -13.549 Td[(ma,)-348(kr)1(o)27(w)28(\\246)-348(m)-1(a)-348(i)-347(gos)-1(p)-27(o)-28(d)1(arz)-348(c)-1(a\\252\\241)-348(g\\246b\\241.)-347({)-348(Py)1(s)-1(k)28(o)28(w)27(a\\252)-348(p)1(rze)-1(m)28(y\\261lnie,)-348(tr)1(z)-1(y)1(m)-1(a)-55(j\\241c)-348(s)-1(i)1(\\246)-349(z)]TJ 0 -13.549 Td[(dal)1(a.)]TJ 27.879 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(co)-333(te)-1(n)-333(zb)-27(\\363)-56(j)-333(p)-27(oredzi\\252)-334(zarad)1(nie)-333(w)-1(szys)-1(tk)1(ie)-1(m)28(u!)-333({)-333(w)27(es)-1(t)1(c)27(hn)1(\\246)-1(\\252a)-333(c)-1(i)1(\\246)-1(\\273k)28(o.)]TJ 0 -13.549 Td[({)-333(A)-334(b)-27(oga\\242,)-334(\\273e)-334(u)1(re)-1(d)1(z)-1(i)-333(wsz)-1(y\\242kiem)27(u)1(,)-333(na)28(w)28(e)-1(t)-333(Nas)-1(t)1(us)-1(i)1(a)-334(si\\246)-334(d)1(z)-1(i)1(w)-1(u)1(je!)]TJ 0 -13.549 Td[({)-333(T)83(rza)-334(b)29(y)-334(k)28(ogo)-333(pr)1(z)-1(y)1(na)-56(j)1(\\241\\242)-334(ab)-27(o)-334(i)-333(zgo)-28(d)1(z)-1(i\\242)-333(parob)1(k)55(a)-333(m)28(y\\261)-1(l)1(a\\252)-1(a)-333(g\\252o\\261no.)]TJ 0 -13.549 Td[(J\\246drzyc)28(h)-333(p)-28(o)-27(drap)1(a\\252)-334(si\\246)-334(i)-333(rzek\\252)-334(n)1(ie\\261)-1(mia\\252o:)]TJ 0 -13.549 Td[({)-311(H)-1(al)1(e)-1(,)-311(sz)-1(u)1(k)55(a\\242)-312(ob)-27(ce)-1(go,)-311(kiej)-311(Szyme)-1(k)-311(goto)28(wy)83(..)1(.)-312(\\273e)-1(b)29(y)-312(m)28(u)-311(ino)-311(rze)-1(c)-312(to)-311(s\\252)-1(o)28(w)28(o...)]TJ 0 -13.55 Td[({)-339(G)1(\\252)-1(u)1(pi)1(\\261)-1(!)-338(Nie)-339(w)-1(y)1(c)-1(i\\241)-27(ga)-56(j)-338(s)-1(zyj)1(\\241,)-339(kiej)-338(do)-339(ci\\246)-339(ni)1(e)-339(pij)1(\\241!)-339({)-339(w)28(ark)1(n\\246\\252)-1(a)-338(i)-339(sro)-28(d)1(z)-1(e)-339(si\\246)]TJ -27.879 -13.549 Td[(t)28(ym)-331(zgry)1(z)-1(\\252a,)-330(\\273)-1(e)-330(tak)-330(c)-1(zy)-330(o)27(w)28(ak,)-330(a)-330(trza)-330(b)-28(\\246dzie)-331(u)1(s)-1(t\\241)-27(pi\\242)-331(i)-330(j)1(ak)56(\\241\\261)-331(z)-1(go)-27(d\\246)-331(z)-330(nim)-330(z)-1(rob)1(i\\242.)]TJ 27.879 -13.549 Td[(Jedn)1(ak)-281(n)1(a)-56(j)1(barze)-1(j)-280(mart)28(wi\\252a)-280(s)-1(i)1(\\246)-281(o)-281(Jagu)1(s)-1(i\\246,)-280(na)-280(dar)1(m)-1(o)-280(b)-28(o)28(wiem)-281(pr)1(\\363b)-28(o)28(w)28(a\\252a)-281(si\\246)]TJ -27.879 -13.549 Td[(wywiedzie)-1(\\242,)-373(c)-1(o)-373(jej)-373(jes)-1(t.)-373(J\\246dr)1(z)-1(yc)28(h)-373(te)-1(\\273)-373(nie)-374(wiedzia\\252,)-373(a)-374(k)1(um)-374(n)1(ie)-374(\\261m)-1(ia\\252a)-373(s)-1(i)1(\\246)-374(wyp)28(y-)]TJ 0 -13.549 Td[(t)28(yw)28(a\\242)-1(,)-346(b)29(yc)27(h)-346(za)-346(wie)-1(l)1(e)-347(n)1(ie)-347(d)1(o\\252o\\273)-1(y\\252y)84(.)-346(Pr)1(z)-1(ez)-347(ca\\252e)-347(te)-346(trzy)-346(dn)1(i,)-346(p)-27(o)-346(wyj\\261c)-1(iu)-345(k)28(ompani)1(i)]TJ 0 -13.55 Td[(do)-283(Cz\\246)-1(sto)-28(c)28(ho)28(wy)83(,)-283(b)1(\\252\\241k)55(a\\252a)-283(si\\246)-283(w)-283(prze)-1(r)1(\\363\\273)-1(n)29(yc)27(h)-282(dom)27(y)1(s)-1(\\252ac)27(h)-282(kieb)28(y)-283(w)-283(tej)-283(u)1(pr)1(z)-1(yk)1(rz)-1(on)1(e)-1(j)]TJ 0 -13.549 Td[(\\242m)-1(ie,)-417(ja\\273)-418(dop)1(iero)-418(w)-417(s)-1(ob)-27(ot\\246)-418(p)-27(o)-418(p)-27(o\\252)-1(u)1(dn)1(iu)-417(dop)1(ro)28(w)27(ad)1(z)-1(on)1(a)-418(j)1(u\\273)-418(d)1(o)-418(os)-1(t)1(atk)55(a)-417(wz)-1(i\\246\\252a)]TJ 0 -13.549 Td[(sie)-1(l)1(nego)-334(k)56(ac)-1(zora)-333(p)-27(o)-28(d)-333(pac)28(h\\246)-334(i)-333(p)-27(osz)-1(\\252a)-333(na)-333(pleban)1(i\\246.)]TJ 358.232 -29.888 Td[(749)]TJ\nET\nendstream\nendobj\n2389 0 obj <<\n/Type /Page\n/Contents 2390 0 R\n/Resources 2388 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2388 0 obj <<\n/Font << /F31 22 0 R /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2393 0 obj <<\n/Length 9040      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(750)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(W)84(r\\363)-28(ci\\252a)-359(nad)-358(w)-1(i)1(e)-1(cz)-1(orem)-359(z)-1(b)1(urzona,)-358(kiej)-359(ta)-359(no)-27(c)-360(j)1(e)-1(sie)-1(n)1(na,)-359(sp\\252ak)56(an)1(a)-360(i)-358(c)-1(i\\246\\273)-1(k)28(o)]TJ -27.879 -13.549 Td[(wz)-1(d)1(yc)27(h)1(a)-56(j)1(\\241c)-1(a,)-493(nie)-494(o)-28(dzyw)28(a\\252a)-494(s)-1(i)1(\\246)-495(d)1(o)-494(nik)28(ogo,)-493(a\\273)-495(p)-27(o)-494(k)28(olacji)1(,)-494(kiej)-494(osta\\252a)-494(sam)-1(a)-494(z)]TJ 0 -13.549 Td[(Jagu)1(s)-1(i\\241,)-333(p)1(rzyw)27(ar)1(\\252a)-334(d)1(rz)-1(wi)-333(d)1(o)-334(sieni)-333(i)-333(rze)-1(k\\252a:)]TJ 27.879 -13.549 Td[({)-333(A)-334(wies)-1(z,)-333(c)-1(o)-333(rozp)-27(o)27(wiad)1(a)-56(j)1(\\241)-334(o)-333(tob)1(ie)-334(i)-333(Jasiu?)]TJ 0 -13.549 Td[({)-339(Nie)-339(c)-1(iek)56(a)27(w)28(am)-339(plot\\363)28(w!)-339({)-339(o)-28(dr)1(z)-1(ek\\252a)-339(ni)1(e)-1(c)27(h)1(\\246)-1(t)1(nie,)-339(p)-27(o)-28(dn)1(os)-1(z\\241c)-340(zgor\\241cz)-1(k)28(o)28(w)27(an)1(e)]TJ -27.879 -13.55 Td[(o)-28(cz)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-499(Ciek)56(a)27(w)28(a\\261)-499(c)-1(zy)-499(n)1(ie)-1(,)-498(a)-499(p)-27(o)28(w)-1(i)1(nna\\261)-499(wiedzie\\242)-1(,)-498(\\273)-1(e)-499(pr)1(z)-1(ed)-499(l)1(ud)1(\\271)-1(mi)-499(n)1(ic)-499(s)-1(i\\246)-499(n)1(ie)]TJ -27.879 -13.549 Td[(uc)28(ho)28(w)28(a!)-387(A)-386(kto)-386(c)-1(i)1(c)27(ho)-386(rob)1(i,)-386(o)-387(t)28(ym)-386(g\\252)-1(o\\261no)-386(m\\363)27(wi\\241!)-386(A)-386(o)-387(tob)1(ie)-387(wygad)1(uj\\241,)-386(\\273e)-387(ni)1(e)-1(c)27(h)]TJ 0 -13.549 Td[(B\\363g)-334(b)1(ron)1(i!)]TJ 27.879 -13.549 Td[(Roz)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252a)-238(sz)-1(erok)28(o,)-237(cz)-1(ego)-238(si\\246)-238(d)1(o)27(wiedzia\\252a)-237(o)-28(d)-237(pr)1(ob)-28(osz)-1(cza)-238(i)-237(organ)1(ist\\363)27(w.)]TJ 0 -13.549 Td[({)-360(Zaraz)-361(w)-360(no)-28(cy)-360(z)-1(r)1(obi\\252y)-360(nad)-360(n)1(im)-361(s\\241d,)-360(or)1(ganista)-360(z)-1(er\\273n\\241\\252)-360(m)27(u)-360(sk)28(\\363r\\246,)-361(k)1(s)-1(i\\241d)1(z)]TJ -27.879 -13.55 Td[(sw)27(o)-55(je,)-286(cybu)1(c)27(h)1(e)-1(m)-286(d)1(o\\252o\\273)-1(y\\252)-285(i)-285(b)28(yc)27(h)-285(u)1(s)-1(tr)1(z)-1(ec)-286(pr)1(z)-1(ed)-285(tob\\241,)-285(wypr)1(a)27(wil)1(i)-286(go)-285(do)-285(C)-1(z\\246s)-1(to)-28(c)28(ho-)]TJ 0 -13.549 Td[(wy)83(.)-333(S)1(\\252ys)-1(zysz)-334(to?)-334(P)29(om)-1(iar)1(kuj)1(\\273)-1(e,)-333(c)-1(o\\261)-333(narob)1(i\\252a!)-333({)-333(krzykn\\246\\252a)-333(gro\\271)-1(n)1(ie.)]TJ 27.879 -13.549 Td[({)-435(Jez)-1(u)1(s)-436(M)1(aria!)-435(Bi\\252y)-435(go!)-434(Jas)-1(i)1(a)-435(bi\\252y!)-434({)-435(z)-1(erw)28(a\\252)-1(a)-434(s)-1(i\\246)-435(goto)28(w)27(a)-435(l)1(e)-1(cie)-1(\\242)-435(na)-435(j)1(e)-1(go)]TJ -27.879 -13.549 Td[(obr)1(on\\246,)-333(ale)-334(j)1(e)-1(n)1(o)-334(zakrzycz)-1(a\\252a)-333(przez)-334(z)-1(aci\\261ni\\246te)-334(z\\246)-1(b)29(y:)]TJ 27.879 -13.549 Td[({)-375(A)-375(\\273e)-1(b)29(y)-375(im)-375(kul)1(as)-1(y)-375(p)-27(o)-28(o)-27(dpad)1(a\\252y)83(,)-374(\\273)-1(eb)28(y)-375(ic)28(h)-375(n)1(ie)-375(os)-1(zc)-1(z\\246)-1(d)1(z)-1(i)1(\\252)-1(a)-375(zaraza!)-375({)-375(I)-375(za-)]TJ -27.879 -13.55 Td[(p\\252ak)56(a\\252a,)-424(z)-424(z)-1(acz)-1(erwienion)29(yc)27(h)-424(o)-27(c)-1(z\\363)28(w)-425(p)-27(ola\\252y)-424(si\\246)-425(stru)1(gi)-424(gorzkic)28(h)-424(\\252e)-1(z,)-424(a)-424(ws)-1(zystkie)]TJ 0 -13.549 Td[(ran)29(y)-334(d)1(usz)-1(y)-333(sp\\252yn)1(\\246)-1(\\252y)-333(j)1(akb)28(y)-333(t\\241)-333(\\273)-1(yw)28(\\241,)-333(s)-1(erd)1(e)-1(cz)-1(n)1(\\241)-334(k)1(rwi\\241.)]TJ 27.879 -13.549 Td[(Ale)-325(Domin)1(ik)28(o)28(w)27(a)-324(ni)1(e)-325(bacz)-1(\\241c)-325(n)1(a)-325(t)1(o)-325(j)1(\\246)-1(\\252a)-324(j\\241)-324(bi\\242,)-324(nib)29(y)-325(k)1(ijem)-1(,)-324(p)1(rzyp)-28(omin)1(k)56(am)-1(i)]TJ -27.879 -13.549 Td[(ws)-1(zystkic)28(h)-382(p)1(rze)-1(win)-381(i)-381(grze)-1(c)28(h\\363)28(w,)-382(n)1(ie)-382(dar)1(o)27(w)28(a\\252a)-382(an)1(i)-382(j)1(e)-1(d)1(nego,)-382(wyp)-27(omina)-55(j\\241c,)-382(co)-382(j)1(\\241)]TJ 0 -13.549 Td[(t)28(ylk)28(o)-333(\\273ar\\252o)-334(o)-27(d)-333(da)28(wie)-1(n)-332(da)28(wna)-333(i)-333(nad)-333(cz)-1(ym)-333(s)-1(r)1(o)-28(dze)-334(b)-27(ola\\252a.)]TJ 27.879 -13.55 Td[({)-287(T)83(o)-287(m)27(u)1(s)-1(i)-287(si\\246)-288(j)1(u\\273)-288(r)1(az)-288(sk)28(o\\253cz)-1(y\\242,)-287(rozumies)-1(z!)-287(T)83(ak)-287(c)-1(i)-287(j)1(u\\273)-287(dalej)-287(\\273y\\242)-288(ni)1(e)-288(sp)-28(os\\363b!)]TJ -27.879 -13.549 Td[({)-344(kr)1(z)-1(ycza\\252)-1(a)-343(c)-1(oraz)-344(za)28(w)-1(zi\\246c)-1(iej,)-343(c)27(h)1(o)-28(c)-1(ia\\273)-344(p)1(al\\241c)-1(e)-344(\\252zy)-344(c)-1(i)1(e)-1(k\\252y)-343(jej)-344(sp)-27(o)-28(d)-344(sz)-1(mat)-344(p)1(rze)-1(wi\\241-)]TJ 0 -13.549 Td[(zuj\\241cyc)28(h)-269(o)-28(cz)-1(y)84(.)-269({)-269(\\233eb)28(y)-269(ci\\246)-269(m)-1(ieli)-269(za)-269(n)1(a)-56(jgor)1(s)-1(z\\241,)-269(\\273e)-1(b)28(y)-268(c)-1(i\\246)-269(j)1(u\\273)-269(w)-1(y)1(t)27(y)1(k)55(al)1(i)-269(pal)1(c)-1(ami!)-269(T)83(ak)1(i)]TJ 0 -13.549 Td[(ws)-1(t)28(yd)-332(na)-333(m)-1(o)-55(je)-334(stare)-333(lata,)-333(taki)-333(ws)-1(t)28(yd)1(,)-333(m)-1(\\363)-55(j)-333(Jez)-1(u)-333({)-333(j\\246c)-1(za\\252a)-333(roz)-1(p)1(ac)-1(zliwie.)]TJ 27.879 -13.549 Td[({)-333(I)-334(wy\\261c)-1(i)1(e)-334(p)-28(on)1(o)-333(z)-1(a)-333(m)-1(\\252o)-28(d)1(u)-333(b)28(yl)1(i)-333(nie)-334(l)1(e)-1(p)1(s)-1(i!)-333({)-333(trzasn\\246\\252)-1(a)-333(j\\241)-333(z\\252ym)-334(s\\252o)27(w)28(e)-1(m.)]TJ 0 -13.55 Td[(St)1(ara)-333(tak)-333(s)-1(i\\246)-333(z)-1(an)1(ie)-1(s\\252a)-334(gn)1(iew)27(em)-1(,)-333(\\273e)-334(ledwie)-334(j)1(u\\273)-333(w)-1(y)1(b)-28(e\\252k)28(ota\\252a:)]TJ 0 -13.549 Td[({)-333(C)-1(h)1(o)-28(\\242b)28(y)-333(\\261)-1(wi\\246tem)27(u,)-333(a)-333(ni)1(e)-334(pr)1(z)-1(epu)1(s)-1(zc)-1(z\\241!)]TJ 0 -13.549 Td[(Nie)-296(\\261)-1(mia\\252a)-296(ju)1(\\273)-297(s)-1(i)1(\\246)-297(wi\\246c)-1(ej)-296(past)28(wi\\242)-297(n)1(ad)-296(ni\\241,)-296(za\\261)-297(Jagu)1(s)-1(i)1(a)-297(wzi\\246)-1(\\252a)-296(si\\246)-297(p)1(raso)27(w)28(a\\242)]TJ -27.879 -13.549 Td[(jak)1(ie)-1(\\261)-293(f)1(ryzki)-293(n)1(a)-293(ju)1(tro;)-292(w)-1(i)1(e)-1(cz)-1(\\363r)-292(s)-1(ze)-1(d)1(\\252)-293(wie)-1(j)1(n)28(y)84(,)-293(sz)-1(u)1(m)-1(ia\\252y)-292(drzew)27(a,)-293(p)-27(o)-293(n)1(ie)-1(b)1(ie,)-293(za)27(w)28(alo-)]TJ 0 -13.549 Td[(n)28(ym)-295(d)1(robn)29(ymi)-295(c)27(h)1(m)27(u)1(rami,)-295(lec)-1(i)1(a\\252)-295(ks)-1(i)1(\\246)-1(\\273yc,)-295(k)56(a)-56(j)1(\\261)-296(n)1(a)-295(ws)-1(i)-294(\\261)-1(p)1(ie)-1(w)28(a\\252y)-295(d)1(z)-1(ieuc)28(h)28(y)83(,)-294(a)-295(jak)1(ie)-1(\\261)]TJ 0 -13.55 Td[(skrzypk)1(i)-334(r)1(z)-1(\\246p)-27(oli\\252y)-333(dry)1(gliw)28(\\241)-334(wielce)-334(n)28(u)1(t\\241.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(ed)-333(okn)1(am)-1(i)-333(r)1(oz)-1(leg\\252)-334(si\\246)-334(g\\252os)-334(p)1(rze)-1(c)28(ho)-28(d)1(z)-1(\\241ce)-1(j)-332(w)27(\\363)-55(jto)28(w)27(ej:)]TJ 0 -13.549 Td[({)-333(Jak)-333(w)27(cz)-1(or)1(a)-56(j)-333(p)-27(o)-56(j)1(e)-1(c)28(ha\\252)-333(do)-333(k)55(an)1(c)-1(elar)1(ii,)-333(tak)-333(i)-333(pr)1(z)-1(epad\\252.)1(..)]TJ 0 -13.549 Td[({)-250(P)29(o)-56(jec)27(h)1(a\\252)-250(z)-250(pi)1(s)-1(arzem)-250(do)-250(p)-27(o)28(wiatu)-249(jes)-1(zc)-1(ze)-250(w)27(cz)-1(or)1(a)-56(j)-249(na)-249(no)-28(c.)-250(P)29(o)27(wiad)1(a\\252)-250(so\\252t)27(y)1(s)-1(,)]TJ -27.879 -13.549 Td[(jak)28(o)-333(w)28(e)-1(zw)27(a\\252)-333(ic)27(h)-332(do)-333(s)-1(iebi)1(e)-334(nacz)-1(eln)1(ik)-333({)-334(o)-27(dp)-27(o)27(wiad)1(a\\252)-334(M)1(ate)-1(u)1(s)-1(z.)]TJ 27.879 -13.549 Td[(Gd)1(y)-333(prze)-1(szli,)-333(s)-1(t)1(ara)-333(o)-28(dez)-1(w)28(a\\252a)-334(si\\246)-334(zno)28(wu,)-333(ale)-333(ju)1(\\273)-334(\\252ago)-28(dn)1(iej:)]TJ 0 -13.55 Td[({)-333(C)-1(zem)27(u)-333(to)-333(pr)1(z)-1(ep)-28(\\246dzi\\252a\\261)-334(z)-334(c)28(ha\\252u)1(p)28(y)-333(Mateusz)-1(a?)]TJ 0 -13.549 Td[({)-333(B)-1(o)-333(mi)-333(obmie)-1(r)1(z)-1(\\252)-333(i)-333(p)-28(o)-333(co)-334(tu)-333(b)-27(\\246dzie)-334(wysiady)1(w)27(a\\252!)-333(Nie)-334(sz)-1(u)1(k)56(am)-334(s)-1(e)-333(c)27(h\\252op)1(a!)]TJ 0 -13.549 Td[({)-308(Czas)-308(b)28(y)-307(c)-1(i)-307(ju)1(\\273)-308(b)28(y\\252o)-307(ob)-28(ejr)1(z)-1(e\\242)-308(s)-1(i)1(\\246)-308(z)-1(a)-307(kt\\363rym,)-307(c)-1(zas)-1(!)-307(Zaraz)-308(b)29(y)-308(i)-307(lu)1(dzie)-308(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(stali)-303(c)-1(i\\246)-303(napasto)28(w)27(a\\242!)-303(C)-1(h)1(o)-28(\\242b)28(y)-303(i)-304(M)1(ate)-1(u)1(s)-1(z,)-303(te)-1(\\273)-303(nie)-304(d)1(o)-304(p)-27(ogard)1(z)-1(enia,)-303(c)28(h\\252op)-303(z)-1(m)28(y\\261ln)28(y)84(,)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zciwy)83(..)1(.)]TJ 27.879 -13.55 Td[(D\\252ugo)-480(si\\246)-481(nad)-480(n)1(im)-481(rozw)28(o)-28(dzi\\252a)-481(i)-480(wielc)-1(e)-480(z)-1(ac)27(h)1(\\246)-1(tl)1(iwie)-1(,)-480(ale)-480(Jagusia)-481(si\\246)-481(n)1(ie)]TJ -27.879 -13.549 Td[(o)-28(d)1(e)-1(zw)27(a\\252a)-402(an)1(i)-402(s)-1(\\252\\363)28(w)27(ec)-1(zkiem,)-402(z)-1(a)-55(j\\246ta)-402(rob)-27(ot\\241)-402(i)-402(s)-1(w)28(oimi)-402(s)-1(t)1(rapi)1(e)-1(ni)1(am)-1(i)1(,)-402(\\273)-1(e)-402(s)-1(tar)1(a)-402(da\\252a)]TJ\nET\nendstream\nendobj\n2392 0 obj <<\n/Type /Page\n/Contents 2393 0 R\n/Resources 2391 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2378 0 R\n>> endobj\n2391 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2396 0 obj <<\n/Length 9073      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(751)]TJ -358.232 -35.866 Td[(sp)-28(ok)28(\\363)-55(j)-412(i)-412(wzi\\246)-1(\\252a)-412(si\\246)-412(do)-412(r)1(\\363\\273)-1(a\\253)1(c)-1(a.)-412(Na)-412(d)1(w)27(or)1(z)-1(e)-412(p)-27(o)-28(c)-1(i)1(c)27(h\\252y)-412(j)1(u\\273)-412(g\\252os)-1(y)84(,)-412(t)28(ylk)28(o)-411(drze)-1(win)29(y)]TJ 0 -13.549 Td[(sz)-1(arp)1(a\\252y)-342(s)-1(i)1(\\246)-343(z)-342(w)-1(i)1(atrem)-343(i)-342(m\\252yn)-341(turk)28(ot)1(a\\252)-1(,)-341(no)-28(c)-342(b)28(y\\252a)-342(p)-27(\\363\\271)-1(n)1(a,)-342(ksi\\246)-1(\\273yc)-342(jakb)29(y)-342(c)-1(a\\252ki)1(e)-1(m)]TJ 0 -13.549 Td[(zaton\\241\\252)-340(w)-340(z)-1(w)28(a\\252ac)27(h)1(,)-340(\\273)-1(e)-340(jeno)-340(k)56(a)-55(j\\261)-340(niek)56(a)-56(j)-339(\\261)-1(wiec)-1(i\\252y)-339(obrze)-1(\\273a)-340(c)27(h)1(m)27(u)1(r)-340(i)-340(wyd)1(z)-1(iera\\252y)-339(s)-1(i\\246)]TJ 0 -13.549 Td[(snop)28(y)-333(b)1(rz)-1(ask)28(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-329(Jagu\\261,)-329(trza)-329(c)-1(i)-329(j)1(utr)1(o)-330(d)1(o)-329(s)-1(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(i.)-329(L\\273e)-1(j)-328(c)-1(i)-329(b)-27(\\246dzie)-1(,)-329(j)1(ak)-329(z)-1(b)-27(\\246dzie)-1(sz)-330(si\\246)-330(gr)1(z)-1(e-)]TJ -27.879 -13.55 Td[(c)27(h)1(\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-333(C)-1(o)-333(mi)-333(tam)-1(,)-333(n)1(ie)-334(p)-27(\\363)-56(j)1(d\\246!)]TJ 0 -13.549 Td[({)-333(Nie)-334(c)27(h)1(c)-1(esz)-334(do)-333(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)1(!)-334({)-333(A\\273)-334(g\\252os)-334(j)1(e)-1(j)-332(s)-1(c)27(h)1(ryp)1(n\\241\\252)-333(z)-1(e)-333(z)-1(grozy)84(,)]TJ 0 -13.549 Td[({)-245(A)-245(nie.)-245(Ksi\\241d)1(z)-246(do)-245(k)56(ary)-245(t)1(o)-246(sk)28(ory)84(,)-245(ale)-245(z)-246(p)-27(om)-1(o)-27(c)-1(\\241)-245(to)-245(si\\246)-246(n)1(ik)28(om)27(u)-244(nie)-245(p)-28(ok)1(w)27(ap)1(i...)]TJ 0 -13.549 Td[({)-432(Cic)27(h)1(o,)-432(\\273)-1(eb)28(y)-432(c)-1(i)1(\\246)-433(P)28(an)-431(Je)-1(zus)-432(nie)-432(s)-1(k)56(ara\\252)-432(z)-1(a)-432(tak)1(ie)-433(grzes)-1(zne)-433(gad)1(ani)1(e)-1(!)-432(A)-432(ja)]TJ -27.879 -13.549 Td[(ci)-482(m\\363)28(w)-1(i)1(\\246)-1(,)-481(do)-481(s)-1(p)-27(o)28(wie)-1(d)1(z)-1(i)-481(id)1(\\271)-1(,)-481(p)-28(ok)1(utu)1(j)-481(i)-482(Boga)-482(p)1(ro\\261,)-482(to)-481(c)-1(i)-481(si\\246)-482(jes)-1(zcz)-1(e)-482(ws)-1(zystk)28(o)]TJ 0 -13.55 Td[(pr)1(z)-1(emie)-1(n)1(i)-333(na)-333(dob)1(re)-1(.)]TJ 27.879 -13.549 Td[({)-339(A)-338(m)-1(a\\252o)-338(to)-339(mam)-339(p)-27(okut)28(y)84(,)-339(co?)-339(A)-339(c\\363\\273)-1(em)-339(to)-339(zgrze)-1(szy\\252a?)-339(Za)-339(co?)-339(T)83(o)-339(p)-27(e)-1(wn)1(ie)]TJ -27.879 -13.549 Td[(za)-346(mo)-56(je)-346(k)28(o)-27(c)27(han)1(ie)-346(i)-346(za)-346(mo)-56(j)1(e)-346(c)-1(i)1(e)-1(rp)1(ienia)-345(tak)56(a)-346(mnie)-346(sp)-28(ot)28(yk)56(a)-345(nadgr)1(o)-28(da,)-345(c)-1(o?)-345(Z)-1(e)-346(j)1(u\\273)]TJ 0 -13.549 Td[(co)-334(n)1(a)-56(j)1(gors)-1(ze)-334(w)28(e)-334(\\261)-1(wiecie)-1(,)-333(to)-333(mnie)-333(s)-1(p)-27(otk)56(a\\252o!)-334({)-333(sk)55(ar)1(\\273)-1(y\\252a)-333(si\\246)-334(\\273a\\252)-1(o\\261ni)1(e)-1(.)]TJ 27.879 -13.549 Td[(Nie)-404(prze)-1(czu)28(w)27(a\\252a)-404(na)28(w)28(e)-1(t)-404(b)1(ie)-1(d)1(ul)1(a,)-404(\\273)-1(e)-405(spad)1(ni)1(e)-405(na)-404(n)1(i\\241)-404(jes)-1(zc)-1(ze)-405(cos)-1(ik)-404(gor)1(s)-1(ze)-405(i)]TJ -27.879 -13.55 Td[(bar)1(dziej)-333(nies)-1(p)-27(o)-28(d)1(z)-1(ian)1(e)-1(,)-333(i)-333(b)1(ardziej)-333(ni)1(e)-1(spra)28(wiedli)1(w)27(e.)]TJ 27.879 -13.549 Td[(Naza)-56(ju)1(trz)-286(b)-28(o)28(wiem)-1(,)-286(w)-286(niedziel\\246)-1(,)-286(p)1(rze)-1(d)-286(sum\\241)-286(gruc)28(hn)1(\\246)-1(\\252a)-286(p)-28(o)-286(ws)-1(i)-286(wie\\261\\242)-1(,)-286(zgo\\252)-1(a)]TJ -27.879 -13.549 Td[(ni)1(e)-1(p)-27(o)-28(d)1(obna)-333(do)-333(wiary)84(,)-333(\\273)-1(e)-333(w)27(\\363)-55(jta)-333(ares)-1(zto)28(w)27(ali)-333(za)-333(brak)-333(p)1(ie)-1(n)1(i\\246dzy)-333(w)-334(k)56(as)-1(i)1(e)-334(gm)-1(i)1(nnej.)]TJ 27.879 -13.549 Td[(Nie)-354(s)-1(p)-27(os\\363b)-354(b)28(y\\252o)-354(zrazu)-354(u)29(w)-1(i)1(e)-1(rzy\\242,)-354(i)-354(c)28(ho)-28(cia\\273)-354(pra)28(wie)-354(z)-355(k)56(a\\273d\\241)-354(go)-28(d)1(z)-1(i)1(n\\241)-354(ktosik)]TJ -27.879 -13.549 Td[(pr)1(z)-1(y)1(lat)28(yw)27(a\\252)-322(z)-322(no)28(w)28(\\241)-322(i)-322(coraz)-322(gorsz)-1(\\241)-322(p)1(rzyk\\252adk)56(\\241,)-322(j)1(e)-1(sz)-1(cze)-323(n)1(ie)-322(brali)-321(te)-1(go)-321(z)-1(b)28(y)1(tnio)-322(d)1(o)]TJ 0 -13.55 Td[(se)-1(rca.)]TJ 27.879 -13.549 Td[({)-390(Pr)1(\\363\\273)-1(n)1(iaki)-390(wym)27(y)1(\\261)-1(l\\241)-390(se)-391(co)-391(n)1(ieb\\241d)1(\\271)-391(i)-390(roztrz\\241s)-1(a)-55(j\\241)-390(se)-391(la)-390(zaba)28(wy!)-390({)-390(m)-1(\\363)28(wili)]TJ -27.879 -13.549 Td[(p)-27(o)27(w)28(a\\273niejsi.)]TJ 27.879 -13.549 Td[(Ale)-287(u)28(wierzono,)-286(gdy)-286(k)28(o)27(w)28(al)-287(wr\\363)-27(c)-1(i\\252)-286(z)-288(miasta)-287(i)-286(ws)-1(zys)-1(tk)28(o)-286(c)-1(o)-286(do)-287(s\\252o)28(w)27(a)-287(p)-27(ot)28(wie)-1(r)1(-)]TJ -27.879 -13.549 Td[(dzi\\252,)-333(a)-333(Janki)1(e)-1(l)-333(w)-334(p)-27(o\\252ud)1(ni)1(e)-334(p)-28(o)28(wiedzia\\252)-333(do)-333(c)-1(a\\252ej)-333(gromady:)]TJ 27.879 -13.55 Td[({)-354(Wsz)-1(ystk)28(o)-354(pr)1(a)28(w)-1(d)1(a!)-354(W)-354(k)56(as)-1(i)1(e)-355(br)1(akuj)1(e)-355(p)1(i\\246\\242)-355(t)28(ysi\\246)-1(cy)84(,)-354(z)-1(ab)1(ie)-1(r)1(\\241)-354(m)27(u)-353(z)-1(a)-354(to)-354(ca\\252)-1(\\241)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(ark)28(\\246,)-333(a)-334(j)1(ak)-333(b)-28(\\246dzie)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(m)-1(a\\252o,)-333(Lip)-27(c)-1(e)-333(m)27(u)1(s)-1(z\\241)-334(za)-333(niego)-334(d)1(op\\252aci\\242!)]TJ 27.879 -13.549 Td[(Wzbu)1(rzy\\252o)-416(to)-416(w)-1(szys)-1(tk)1(ic)27(h)1(,)-416(\\273)-1(e)-416(ni)1(e)-1(c)28(h)-416(B\\363g)-416(bron)1(i,)-416(j)1(ak\\273)-1(e,)-416(b)1(ie)-1(d)1(a)-416(ws)-1(z\\246)-1(d)1(y)-416(ja\\273e)]TJ -27.879 -13.549 Td[(pi)1(s)-1(zc)-1(zy)83(,)-237(d)1(o)-237(garnk)56(a)-237(ni)1(e)-238(ma)-237(c)-1(o)-237(w\\252o\\273)-1(y\\242,)-237(ni)1(e)-1(j)1(e)-1(d)1(e)-1(n)-237(si\\246)-237(z)-1(ap)-27(o\\273)-1(yczy\\252,)-237(ab)28(y)-237(jeno)-237(d)1(o)-28(c)-1(i)1(\\241)-28(gn\\241\\242)]TJ 0 -13.549 Td[(do)-406(\\273niw,)-406(a)-406(tu)-406(pr)1(z)-1(y)1(jdzie)-406(p\\252ac)-1(i)1(\\242)-407(z)-1(a)-406(z\\252o)-28(dzieja!)-406(T)83(ego)-407(b)29(y\\252a)-407(j)1(u\\273)-406(z)-1(a)-406(wie)-1(l)1(a)-407(n)1(a)-407(l)1(ud)1(z)-1(k)56(\\241)]TJ 0 -13.55 Td[(cie)-1(r)1(pli)1(w)27(o\\261\\242)-1(,)-379(to)-380(i)-380(n)1(ie)-380(dziw)27(ota,)-379(\\273)-1(e)-380(ca\\252a)-380(w)-1(i)1(e)-1(\\261)-380(jak)1(b)28(y)-380(si\\246)-380(w)-1(\\261cie)-1(k)1(\\252)-1(a)-379(z)-1(e)-380(z)-1(\\252o\\261c)-1(i)1(,)-380(kl\\241t)28(wy)84(,)]TJ 0 -13.549 Td[(p)-27(ogrozy)-334(i)-333(wyzwis)-1(k)56(a)-333(p)-28(osyp)1(a\\252y)-334(si\\246)-334(k)1(ie)-1(b)29(y)-334(k)56(amienie:)]TJ 27.879 -13.549 Td[({)-333(A)-334(\\273e)-1(b)29(y\\261)-1(,)-333(\\261c)-1(i)1(e)-1(r)1(w)27(o,)-333(s)-1(k)56(ap)1(ia\\252)-334(j)1(ak)-333(te)-1(n)-332(pies)-1(!)]TJ 0 -13.549 Td[({)-333(Nie)-334(tr)1(z)-1(yma\\252e)-1(m)-333(z)-334(ni)1(m)-334(s)-1(p)-27(\\363\\252ki,)-333(to)-333(i)-333(p\\252aci\\252)-333(z)-1(a)-333(niego)-333(nie)-333(b)-28(\\246d\\246.)]TJ 0 -13.549 Td[({)-492(An)1(i)-492(ja!)-491(Balo)28(w)27(a\\252)-492(si\\246)-1(,)-491(u\\273yw)28(a\\252,)-492(a)-492(t)28(y)-492(cierp)-491(z)-1(a)-492(cud)1(z)-1(e!)-492({)-491(p)-28(ogad)1(yw)27(al)1(i)-492(tak)]TJ -27.879 -13.549 Td[(sfraso)28(w)27(an)1(i,)-333(ja\\273e)-334(ni)1(e)-1(j)1(e)-1(d)1(nem)27(u)-333(p)1(\\252)-1(ak)56(a\\242)-334(si\\246)-334(c)28(hcia\\252o)-334(z)-333(m)-1(ar)1(k)28(otno\\261c)-1(i)1(.)]TJ 27.879 -13.55 Td[({)-383(D)1(a)27(wn)1(o)-383(mia\\252e)-1(m)-383(ok)28(o)-382(na)-382(niego)-383(i)-382(m\\363)27(wi\\252em,)-383(d)1(o)-383(cz)-1(ego)-383(to)-382(idzie,)-383(p)1(rze)-1(k\\252ad)1(a-)]TJ -27.879 -13.549 Td[(\\252e)-1(m,)-386(ni)1(e)-387(s\\252)-1(u)1(c)27(h)1(ali\\261ta)-387(i)-386(t)1(e)-1(ra)-386(mata)-386(bal!)-386({)-386(dogad)1(yw)28(a\\252)-387(z)-386(roz)-1(m)28(ys\\252e)-1(m)-387(stary)-386(P)1(\\252os)-1(zk)56(a,)]TJ 0 -13.549 Td[(p)-27(om)-1(aga\\252a)-333(m)27(u)-333(P)1(\\252os)-1(zk)28(o)28(w)27(a)-333(rozp)-28(o)28(wiad)1(a)-56(j\\241c)-333(kto)-333(ino)-333(c)27(h)1(c)-1(ia\\252)-333(s\\252)-1(u)1(c)27(h)1(a\\242)-1(.)]TJ 27.879 -13.549 Td[({)-260(Wiec)-1(i)1(e)-1(,)-260(An)28(tek)-260(j)1(u\\273)-261(wyr)1(ac)27(ho)28(w)28(a\\252,)-260(c)-1(o)-260(na)-260(wsp)-28(omo\\273)-1(eni)1(e)-261(p)1(ana)-260(w)27(\\363)-55(jta)-260(zap\\252acim)]TJ -27.879 -13.549 Td[(p)-27(o)-334(tr)1(z)-1(y)-333(r)1(ubl)1(e)-334(z)-334(morgi,)-333(ale)-333(z)-1(a)-333(takiego)-333(przyjaciela)-333(nie)-333(\\273)-1(al)-333(i)-333(p)-27(o)-334(d)1(z)-1(iesi\\246)-1(\\242...)]TJ 27.879 -13.55 Td[(I)-278(tak)-278(t)1(e)-279(wiad)1(om)-1(o\\261c)-1(i)-277(przygn)1(\\246)-1(b)1(i\\252y)-278(lu)1(dzi,)-278(\\273e)-279(ma\\252o)-278(wie)-1(l)1(a)-278(p)-28(osz)-1(\\252o)-278(d)1(o)-278(k)28(o\\261)-1(cio\\252a,)-278(a)]TJ -27.879 -13.549 Td[(jeno)-280(radzili)-280(u\\273ala)-55(j\\241c)-281(s)-1(i)1(\\246)-282(p)-27(osp)-28(\\363l)1(nie,)-281(\\273e)-281(p)-28(e\\252no)-281(b)29(y\\252o)-281(w)-281(op)1(\\252)-1(ot)1(k)55(ac)28(h,)-280(prze)-1(d)-280(c)28(ha\\252up)1(am)-1(i)1(,)]TJ\nET\nendstream\nendobj\n2395 0 obj <<\n/Type /Page\n/Contents 2396 0 R\n/Resources 2394 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2394 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2400 0 obj <<\n/Length 9280      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(752)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(a)-343(zw\\252)-1(aszc)-1(za)-343(nad)-342(sta)28(w)27(em)-1(,)-342(na)-343(p)1(r\\363\\273no)-343(si\\246)-343(pr)1(z)-1(y)-342(t)28(ym)-343(g\\252o)28(w)-1(i\\241c,)-342(k)55(a)-55(j)-343(zadzia\\252)-343(t)28(yl)1(ac)27(hn)1(a)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)84(.)]TJ 27.879 -13.549 Td[({)-333(Musieli)-333(go)-333(p)-28(o)-28(d)1(e)-1(b)1(ra\\242,)-333(nie)-334(sp)-27(os)-1(\\363b)1(,)-333(ab)28(y)-333(t)28(yla)-333(s)-1(am)-333(jeden)-333(z)-1(marn)1(o)27(w)28(a\\252.)]TJ 0 -13.549 Td[({)-333(Pisarzo)28(w)-1(i)-333(za)28(w)-1(i)1(e)-1(rza\\252,)-333(a)-334(wiad)1(om)-1(o,)-333(j)1(akie)-334(t)1(o)-334(zi\\363\\252k)28(o!)]TJ 0 -13.549 Td[({)-472(Szk)28(o)-28(da)-472(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)56(a,)-472(nama)-473(j)1(u\\261c)-1(i)-472(zrob)1(i\\252)-473(kr)1(z)-1(y)1(w)-1(d)1(\\246)-1(,)-472(ale)-472(s)-1(ob)1(ie)-473(na)-55(jgor)1(s)-1(z\\241!)-473({)]TJ -27.879 -13.55 Td[(m\\363)27(wil)1(i)-311(p)-27(oniekt\\363r)1(z)-1(y)-310(c)-1(o)-311(statec)-1(zniejsi,)-310(a)-311(na)-310(to)-311(wrazi\\252a)-311(mi\\246)-1(d)1(z)-1(y)-310(nic)28(h)-311(t)1(\\252)-1(u)1(s)-1(t)1(e)-312(b)1(rzuc)27(h)1(o)]TJ 0 -13.549 Td[(P\\252osz)-1(k)28(o)28(w)28(a)-334(i)-333(d)1(alej\\273e)-334(nib)29(y)-334(t)1(o)-334(\\273a\\252uj)1(\\241c)-1(o)-333(wyrze)-1(k)56(a\\242)-334(i)-333(trze\\242)-334(s)-1(u)1(c)27(h)1(e)-334(\\261)-1(l)1(e)-1(p)1(ie)-1(.)]TJ 27.879 -13.549 Td[({)-350(A)-351(mni)1(e)-351(\\273)-1(al)-350(w)28(\\363)-56(j)1(to)28(w)27(ej!)-350(Bie)-1(d)1(na)-350(k)28(obi)1(e)-1(ta,)-350(p)1(ani\\241)-350(s)-1(e)-350(b)28(y\\252a)-350(i)-351(n)1(os)-351(zadzie)-1(r)1(a\\252a,)-351(a)]TJ -27.879 -13.549 Td[(teraz)-244(co!)-244(Cha\\252u)1(p)-28(\\246)-244(w)28(e)-1(zm\\241,)-244(gr)1(un)28(t)-243(przedadz\\241)-244(i)-243(na)-243(k)28(omorne)-244(p)-27(\\363)-56(j)1(\\261)-1(\\242)-244(p)-27(\\363)-56(j)1(dzie)-244(c)27(h)29(udzin)1(a,)]TJ 0 -13.549 Td[(na)-333(wyrob)-27(ek.)-333(I)-334(\\273e)-1(b)29(y)-334(se)-334(c)28(ho)-28(cia\\273)-334(u)1(\\273)-1(y\\252a!)]TJ 27.879 -13.549 Td[({)-252(A)-253(ma\\252o)-253(t)1(o)-253(j)1(e)-1(sz)-1(cz)-1(e)-253(wysmak)28(o)27(w)28(a\\252a)-253(d)1(obr)1(e)-1(go!)-252({)-252(w)-1(r)1(z)-1(asn\\246\\252a)-253(Koz\\252o)28(w)27(a)-252(wt\\363ruj)1(\\241c)]TJ -27.879 -13.55 Td[(gor\\241co,)-261(j)1(e)-1(n)1(o)-261(n)1(a)-261(d)1(rugi)-260(sp)-28(os\\363b)-260({)-261(u\\273yw)28(a\\252y)-261(se)-261(\\261)-1(cierwy)-261(ki)1(e)-1(b)28(y)-260(j)1(akie)-261(dziedzic)-1(e.)-260(C)-1(o)-260(dn)1(ia)]TJ 0 -13.549 Td[(jad)1(\\252y)-329(mi\\246s)-1(o!)-328(W)83(\\363)-55(jto)28(w)28(a)-329(p)-28(\\363\\252)-328(garc)-1(zk)56(a)-329(c)-1(u)1(kru)-328(k\\252ad)1(\\252a)-329(s)-1(e)-329(d)1(o)-329(k)56(a)27(wy)84(,)-329(a)-329(cz)-1(y)1(s)-1(t)28(y)-328(harak)-328(pil)1(i)]TJ 0 -13.549 Td[(sz)-1(kl)1(ank)56(am)-1(i)1(!)-249(Wid)1(z)-1(ia\\252am,)-249(jak)-249(zw)27(ozi\\252)-249(z)-250(miasta)-249(p)-28(\\363\\252k)28(osz)-1(k)1(i)-249(prze)-1(r)1(\\363\\273)-1(n)29(yc)27(h)-249(p)1(rzys)-1(mak)28(\\363)28(w.)]TJ 0 -13.549 Td[(A)-333(z)-334(c)-1(zeg\\363\\273)-334(to)-333(im)-334(b)1(rz)-1(u)1(c)27(h)28(y)-333(sp)-28(\\246cz)-1(n)1(ia\\252y)83(,)-333(p)1(rz)-1(ecie)-1(\\273)-333(nie)-334(z)-333(p)-28(ostu!)]TJ 27.879 -13.549 Td[(S\\252u)1(c)27(h)1(ali)-358(r)1(oz)-1(w)28(a\\273)-1(n)1(ie,)-358(c)28(ho)-28(\\242)-358(w)-358(k)28(o\\253)1(c)-1(u)-357(p)1(let\\252a)-358(ju)1(\\273)-358(trzy)-357(p)-28(o)-357(trzy)83(,)-357(ale)-358(dop)1(iero)-358(or)1(-)]TJ -27.879 -13.55 Td[(gani)1(\\261)-1(cina)-357(tra\\014)1(\\252a)-358(ws)-1(zystkim)-358(d)1(o)-358(se)-1(r)1(c)-1(a,)-357(nal)1(az)-1(\\252a)-358(si\\246)-358(n)1(a)-358(ws)-1(i)-357(ni)1(b)28(y)-357(to)-358(p)1(rz)-1(y)1(pad)1(kiem)-358(i)]TJ 0 -13.549 Td[(p)-27(os)-1(\\252u)1(c)27(ha)28(ws)-1(zy)-333(rozm)-1(\\363)28(w)-333(rz)-1(ek\\252a)-333(o)-28(d)-333(n)1(ie)-1(c)28(hce)-1(n)1(ia:)]TJ 27.879 -13.549 Td[({)-333(Jak)-333(to,)-333(to)-334(n)1(ie)-334(wiec)-1(i)1(e)-1(,)-333(na)-333(co)-334(w)28(\\363)-56(j)1(t)-333(w)-1(y)1(da\\252)-333(t)27(y)1(le)-334(p)1(ie)-1(n)1(i\\246)-1(d)1(z)-1(y)1(?)]TJ 0 -13.549 Td[(J\\246li)-333(s)-1(i)1(\\246)-334(c)-1(i)1(s)-1(n)1(\\241\\242)-334(dok)28(o\\252a)-333(i)-333(p)28(yta\\242)-334(n)1(iew)27(ol\\241c)-333(j\\241)-333(do)-333(o)-28(dp)-27(o)28(wie)-1(d)1(z)-1(i)1(.)]TJ 0 -13.549 Td[({)-333(Str)1(ac)-1(i\\252)-333(na)-333(Jagu)1(s)-1(i\\246,)-333(w)-1(i)1(adomo.)]TJ 0 -13.55 Td[(T)83(ego)-334(si\\246)-334(n)1(ie)-334(sp)-28(o)-27(dzie)-1(w)28(ano,)-333(wi\\246c)-334(jeno)-333(w)-333(z)-1(d)1(umie)-1(n)1(iu)-333(sp)-28(ozierali)-333(p)-27(o)-334(sobi)1(e)-1(.)]TJ 0 -13.549 Td[({)-435(Ju\\273)-435(c)-1(a\\252a)-435(par)1(a\\014a)-435(m\\363)27(wi)-435(o)-435(t)28(ym)-435(o)-28(d)-435(wiosn)28(y!)-435(Ja)-435(w)28(am)-436(n)1(ie)-436(rozp)-27(o)27(wiem,)-435(ale)]TJ -27.879 -13.549 Td[(sp)28(yta)-55(jcie)-334(si\\246)-334(k)28(ogo)-333(b\\241d\\271,)-333(c)27(h)1(o)-28(\\242)-1(b)29(y)-333(z)-334(Mo)-28(d)1(licy)83(,)-333(a)-333(do)28(wiec)-1(ie)-333(s)-1(i\\246)-333(c)-1(a\\252ej)-333(pra)28(wdy)1(!)]TJ 27.879 -13.549 Td[(I)-333(o)-28(des)-1(z\\252a)-333(jakb)28(y)-333(n)1(ie)-334(c)28(hc\\241c)-334(si\\246)-334(zdrad)1(z)-1(i)1(\\242)-1(,)-333(ale)-333(bab)28(y)-333(j)1(e)-1(j)-333(n)1(ie)-334(p)1(u\\261c)-1(i)1(\\252y)83(,)-333(pr)1(z)-1(y)1(par\\252y)]TJ -27.879 -13.549 Td[(k)56(a)-56(j)1(\\261)-230(do)-229(p\\252ota,)-229(tak)-229(moles)-1(to)28(w)28(a\\252y)83(,)-229(\\273e)-230(z)-1(acz\\246)-1(\\252a)-229(im)-230(r)1(oz)-1(p)-27(o)28(w)-1(i)1(ada\\242)-230(n)1(a)-230(n)1(ib)28(y)-229(p)-27(o)-28(d)-229(se)-1(kr)1(e)-1(tem:)]TJ 0 -13.55 Td[(jak)1(ie)-277(to)-276(w)27(\\363)-55(jt)-276(p)1(rz)-1(y)1(w)27(ozi\\252)-276(dla)-276(Jagusi)-276(pi)1(e)-1(sz)-1(tr)1(z)-1(on)1(ki)-276(z)-1(e)-276(s)-1(zc)-1(ze)-1(r)1(e)-1(go)-276(z\\252)-1(ota,)-276(a)-276(j)1(akie)-277(c)28(h)28(ust)28(y)]TJ 0 -13.549 Td[(jedw)28(abn)1(e)-1(,)-272(a)-273(j)1(a)-1(k)1(ie)-273(p\\252\\363tn)1(a)-273(c)-1(i)1(e)-1(n)1(iu\\261kie,)-273(a)-273(j)1(akie)-273(k)28(oral)1(e)-1(,)-272(a)-273(ile)-273(to)-273(j)1(e)-1(j)-272(nad)1(a)28(w)27(a\\252)-273(goto)28(wyc)27(h)]TJ 0 -13.549 Td[(pi)1(e)-1(n)1(i\\246)-1(d)1(z)-1(y)1(!)-284(Ju\\261c)-1(i,)-284(co)-284(c)-1(y)1(ga)-1(n)1(i\\252a,)-284(ja\\273e)-285(si\\246)-285(k)1(urzy\\252o,)-284(ale)-285(\\261wi\\246c)-1(ie)-284(u)28(wie)-1(r)1(z)-1(y)1(\\252)-1(y)84(,)-284(t)28(ylk)28(o)-284(jedn)1(a)]TJ 0 -13.549 Td[(Jagu)1(s)-1(t)28(yn)1(k)55(a)-333(ozw)27(a\\252a)-333(s)-1(i\\246)-333(gniewnie:)]TJ 27.879 -13.549 Td[({)-333(Klitu)1(\\261)-334(b)1(a)-56(jd)1(u\\261,)-333(m)-1(\\363)-27(dl)-333(s)-1(i)1(\\246)-334(z)-1(a)-333(n)1(am)-1(i.)-333(W)1(idzia\\252a)-333(to)-334(p)1(ani?)]TJ 0 -13.55 Td[({)-392(A)-392(widzia\\252am)-392(i)-392(m)-1(og\\246)-392(pr)1(z)-1(y)1(s)-1(i\\246gn\\241\\242)-392(na)28(w)28(e)-1(t)-392(w)-392(k)28(o\\261)-1(ciele)-1(,)-391(\\273)-1(e)-392(dla)-392(n)1(iej)-392(uk)1(rad\\252,)]TJ -27.879 -13.549 Td[(dl)1(a)-365(n)1(ie)-1(j)1(,)-364(a)-365(mo\\273)-1(e)-364(go)-365(n)1(a)27(w)28(et)-365(n)1(am)-1(\\363)28(wi\\252a!)-364(Ho,)-364(ho,)-364(goto)28(w)27(a)-364(ona)-364(na)-364(ws)-1(zystk)28(o,)-365(n)1(ic)-365(d)1(la)]TJ 0 -13.549 Td[(ni)1(e)-1(j)-304(nie)-305(m)-1(a)-305(\\261wi\\246)-1(tego,)-305(b)-27(e)-1(z)-305(ws)-1(t)28(yd)1(u)-305(ju)1(\\273)-306(i)-304(s)-1(u)1(m)-1(ieni)1(a!)-305(Jak)-305(ta)-305(rozc)-1(i)1(e)-1(k)56(ana)-305(suk)56(a)-305(lata)-305(p)-27(o)]TJ 0 -13.549 Td[(ws)-1(i)1(,)-293(a)-293(roznosi)-293(j)1(e)-1(n)1(o)-293(z)-1(gor)1(s)-1(ze)-1(n)1(ie)-293(i)-293(n)1(ie)-1(szc)-1(z\\246)-1(\\261c)-1(ie.)-293(Na)28(w)28(e)-1(t)-292(m)-1(o)-55(jego)-293(Jas)-1(i)1(a)-293(z)-1(wie\\261)-1(\\242)-293(c)28(hcia\\252a,)]TJ 0 -13.549 Td[(c)27(h)1(\\252opiec)-307(niewinn)29(y)-307(j)1(ak)-307(d)1(z)-1(iec)27(k)28(o,)-306(to)-307(u)1(c)-1(i)1(e)-1(k\\252)-306(o)-28(d)-306(niej)-306(i)-307(wsz)-1(ystk)28(o)-307(mi)-306(op)-28(o)28(wiedzia\\252!)-307(Czy)]TJ 0 -13.549 Td[(to)-233(nie)-234(zgroza,)-233(ks)-1(i)1(\\246)-1(d)1(z)-1(u)-233(na)28(w)28(e)-1(t)-233(ni)1(e)-234(da)-55(je)-234(sp)-28(ok)28(o)-55(ju)1(!)-234({)-233(gada\\252a)-233(pr)1(\\246)-1(d)1(k)28(o,)-234(l)1(e)-1(d)1(w)-1(ie)-233(ju\\273)-233(dysz)-1(\\241c)]TJ 0 -13.55 Td[(o)-28(d)-333(z\\252o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Jakb)29(y)-340(is)-1(k)1(ra)-340(pad)1(\\252)-1(a)-340(n)1(a)-340(pro)-27(c)27(h)28(y)84(,)-340(tak)-340(bu)1(c)27(hn)1(\\246)-1(\\252y)-340(n)1(araz)-340(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-341(d)1(a)27(wn)1(e)-341(ur)1(az)-1(y)]TJ -27.879 -13.549 Td[(do)-337(J)1(agus)-1(i)1(,)-337(ws)-1(zystkie)-337(z)-1(azdro\\261cie)-338(i)-336(gniew)-1(y)84(,)-337(i)-337(n)1(iena)28(wi\\261)-1(cie;)-337(j\\246\\252y)-337(wyp)-27(om)-1(in)1(a\\242)-1(,)-336(c)-1(o)-337(in)1(o)]TJ 0 -13.549 Td[(kt\\363r)1(a)-346(mia\\252a)-346(n)1(a)-346(w)28(\\241tpiac)28(h,)-345(\\273)-1(e)-346(p)-27(o)-28(d)1(ni\\363s\\252)-346(si\\246)-346(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)29(y)-346(wrzas)-1(k)1(.)-346(K)1(rz)-1(y)1(c)-1(za\\252y)]TJ 0 -13.549 Td[(jedn)1(a)-333(prze)-1(z)-333(dru)1(g\\241)-334(i)-333(coraz)-334(zapami\\246talej.)]TJ 27.879 -13.55 Td[({)-333(Ze)-334(to)-333(tak)55(\\241)-333(\\261w)-1(i)1(\\246)-1(ta)-333(zie)-1(mia)-333(nosi!)]TJ 0 -13.549 Td[({)-333(A)-334(p)1(rze)-1(z)-334(k)28(ogo)-333(p)-27(om)-1(ar)1(\\252)-334(M)1(ac)-1(iej?)-333(Wsp)-28(omni)1(jcie)-334(jeno)-333(sobie!)]TJ\nET\nendstream\nendobj\n2399 0 obj <<\n/Type /Page\n/Contents 2400 0 R\n/Resources 2398 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2398 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2403 0 obj <<\n/Length 9135      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(753)]TJ -330.353 -35.866 Td[({)-333(C)-1(a\\252ej)-333(ws)-1(i)-333(p)1(rz)-1(y)1(jd)1(z)-1(ie)-333(p)-28(oku)1(to)28(w)27(a\\242)-333(z)-1(a)-333(tak)56(\\241)-334(zap)-27(o)27(wietrzon\\241!)]TJ 0 -13.549 Td[({)-237(I)-236(na)28(w)28(e)-1(t)-236(ksi\\246)-1(d)1(z)-1(a)-236(c)27(h)1(c)-1(ia\\252a)-236(przywie\\261)-1(\\242)-237(d)1(o)-237(gr)1(z)-1(ec)27(h)28(u)1(!)-237(Jezu,)-236(b\\241d)1(\\271)-237(nam)-237(mi\\252o\\261)-1(ciwy!)]TJ 0 -13.549 Td[({)-333(A)-334(wiela)-333(to)-333(ju\\273)-333(b)28(y\\252o)-333(prze)-1(z)-333(ni\\241)-333(pi)1(jat)28(yk,)-333(sw)27(ar)1(\\363)27(w)-333(a)-333(obrazy)-333(b)-28(oskiej!)]TJ 0 -13.549 Td[({)-333(Zak)55(a\\252a)-333(c)-1(a\\252ej)-333(ws)-1(i!)-333(Ju)1(\\273)-334(p)1(rz)-1(ez)-334(n)1(i\\241)-333(Lip)-28(ce)-334(wyt)28(yk)56(a)-56(j)1(\\241)-333(palcam)-1(i)1(!)]TJ 0 -13.549 Td[({)-333(Moro)28(w)28(e)-334(p)-27(o)27(wietrze)-334(ni)1(e)-334(gorsz)-1(e)-333(ni\\271li)-333(tak)56(a)-334(zaraza.)]TJ 0 -13.55 Td[({)-438(P)29(\\363ki)-437(tak)55(a)-437(jes)-1(t)-437(w)28(e)-438(w)-1(si,)-437(p)-27(ot\\241d)-437(c)-1(i\\241)-27(gle)-438(b)-28(\\246dzie)-438(gr)1(z)-1(ec)27(h,)-437(rozpu)1(s)-1(ta)-437(i)-437(z)-1(\\252o,)-437(b)-28(o)]TJ -27.879 -13.549 Td[(dzisia)-56(j)-332(w)27(\\363)-55(jt)-333(ukr)1(ad\\252)-333(dla)-333(ni)1(e)-1(j)1(,)-333(a)-334(j)1(utr)1(o)-334(zrobi)-333(to)-333(sam)-1(o)-333(dr)1(ugi!)]TJ 27.879 -13.549 Td[({)-333(Kij)1(am)-1(i)-333(zat\\252uc)-334(i)-333(\\261c)-1(ierw)28(o)-333(rz)-1(u)1(c)-1(i)1(\\242)-334(psom!)]TJ 0 -13.549 Td[({)-333(Wygn)1(a\\242)-334(j\\241)-333(z)-1(e)-333(w)-1(si,)-333(wyp)-27(\\246)-1(d)1(z)-1(i\\242)-333(na)-333(b)-28(or)1(y)-333(i)-333(las)-1(y)84(,)-333(kiej)-333(t\\246)-334(zaraz\\246)-1(!)]TJ 0 -13.549 Td[({)-305(Wy)1(p)-28(\\246dzi\\242!)-305(Jedyn)1(a)-305(rad)1(a!)-305(W)1(yp)-28(\\246dzi\\242!)-305({)-304(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252y)-304(rozs)-1(ro\\273one,)-305(got)1(o)27(w)28(e)]TJ -27.879 -13.549 Td[(ju)1(\\273)-334(n)1(a)-334(wsz)-1(ystk)28(o)-333(i)-334(z)-333(namo)28(w)-1(y)-333(or)1(gani\\261c)-1(i)1(n)28(y)-333(p)-28(o)-28(ci\\241)-28(gn)1(\\246)-1(\\252y)-333(d)1(o)-334(w)28(\\363)-56(j)1(to)28(w)27(ej.)]TJ 27.879 -13.55 Td[(Wysz\\252)-1(a)-434(do)-435(ni)1(c)27(h,)-434(z)-1(ap)1(uc)28(hni)1(\\246)-1(ta)-435(o)-27(d)-435(p)1(\\252)-1(aczu,)-435(a)-435(t)1(ak)-435(z)-1(b)1(iedzona,)-435(tak)-434(niesz)-1(cz)-1(\\246-)]TJ -27.879 -13.549 Td[(\\261liw)28(a)-400(i)-400(r)1(oz)-1(lamen)28(to)28(w)27(an)1(a,)-400(\\273e)-400(w)-1(zi\\246\\252y)-400(j)1(\\241)-400(\\261)-1(cisk)55(a\\242)-400(p)1(\\252ac)-1(z\\241c)-400(nad)-399(ni\\241)-399(i)-400(u)1(\\273)-1(ala)-55(j\\241c)-400(si\\246)-400(z)-1(e)]TJ 0 -13.549 Td[(ws)-1(zystkiego)-334(se)-1(r)1(c)-1(a.)]TJ 27.879 -13.549 Td[(Dop)1(ie)-1(r)1(o)-334(p)-27(o)-333(jakim\\261)-334(cz)-1(asie)-334(or)1(gani\\261cina)-333(ws)-1(p)-27(omnia\\252a)-333(jej)-333(o)-334(J)1(agusi.)]TJ 0 -13.549 Td[({)-341(\\221wi\\246ta)-341(p)1(ra)28(wda!)-341(On)1(a)-341(ws)-1(zystkiem)27(u)-340(w)-1(i)1(no)28(w)27(ata,)-340(ona)-341({)-341(zalame)-1(n)29(to)27(w)28(a\\252a)-341(roz-)]TJ -27.879 -13.55 Td[(pacznie.)-464({)-464(T)83(en)-464(t\\252uk)-463(s)-1(obaczy)83(,)-464(ta)-464(p)1(iekielnica!)-464(A)-464(\\273e)-1(b)29(y\\261)-465(zdec)27(h)1(\\252)-1(a)-464(p)-27(o)-28(d)-463(p\\252otem)-465(za)]TJ 0 -13.549 Td[(mo)-56(j)1(\\241)-293(k)1(rzywd\\246,)-292(a)-292(\\273)-1(eb)28(y)-292(ci\\246)-293(r)1(obaki)-291(roz)-1(t)1(o)-28(c)-1(zy\\252y)-292(za)-292(m)-1(\\363)-55(j)-292(ws)-1(t)28(y)1(d,)-292(za)-292(m)-1(o)-55(je)-292(niesz)-1(cz)-1(\\246\\261)-1(cie!)]TJ 0 -13.549 Td[({)-333(pad)1(\\252)-1(a)-333(k)56(a)-56(j)1(\\261)-334(na)-333(\\252a)28(w)27(\\246)-334(t)1(arz)-1(a)-55(j\\241c)-333(s)-1(i\\246)-333(w)-334(ni)1(e)-1(wyp)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ian)1(e)-1(j)-333(m\\246c)-1(e)-334(i)-333(sz)-1(l)1(o)-28(c)27(h)1(aniu)1(.)]TJ 27.879 -13.549 Td[(Nap\\252ak)56(a\\252y)-254(si\\246)-254(nad)-253(n)1(i\\241)-254(do)-253(w)27(oli)1(,)-254(n)1(a)-1(b)1(iedzi\\252y)-254(i)-253(roze)-1(sz)-1(\\252y)-253(s)-1(i\\246)-254(d)1(o)-254(dom)28(u,)-253(b)-28(o)-254(s\\252o\\253ce)]TJ -27.879 -13.549 Td[(k\\252on)1(i\\252o)-352(si\\246)-352(j)1(u\\273)-352(k)1(u)-351(z)-1(ac)28(ho)-28(d)1(o)28(w)-1(i)1(.)-352(O)1(s)-1(ta\\252a)-351(t)28(ylk)28(o)-351(organ)1(i\\261)-1(cin)1(a)-352(i)-351(zam)-1(k)1(n\\241)28(ws)-1(zy)-351(s)-1(i\\246)-351(z)-352(ni)1(\\241,)]TJ 0 -13.55 Td[(cos)-1(ik)-447(w)28(a\\273)-1(n)1(e)-1(go)-447(ur)1(adzi\\252y)83(,)-447(gdy)1(\\273)-448(jes)-1(zc)-1(ze)-448(p)1(rze)-1(d)-447(zm)-1(i)1(e)-1(rzc)27(h)1(e)-1(m)-447(p)-28(olecia\\252y)-448(n)1(a)-448(wie\\261)-448(p)-27(o)]TJ 0 -13.549 Td[(c)27(h)1(a\\252up)1(ac)27(h,)-333(rozp)-27(o)-28(c)-1(zyn)1(a)-56(j)1(\\241c)-334(jak)56(\\241\\261)-334(cic)27(h)1(\\241)-334(i)-333(ta)-55(jn)1(\\241)-334(r)1(ob)-28(ot\\246.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(y)1(s)-1(ta\\252y)-289(d)1(o)-289(nic)28(h)-289(P\\252osz)-1(k)1(i,)-289(pr)1(z)-1(yn)1(iew)27(oli)1(\\252y)-289(jes)-1(zc)-1(ze)-290(n)1(iekt\\363ryc)28(h)-289(i)-289(p)-27(os)-1(zli)-289(r)1(az)-1(em)]TJ -27.879 -13.549 Td[(do)-333(p)1(rob)-27(os)-1(zc)-1(za,)-333(w)-1(y)1(s)-1(\\252uc)28(ha\\252)-333(ws)-1(zys)-1(t)1(kiego,)-334(al)1(e)-334(roz\\252o\\273)-1(y\\252)-333(r\\246c)-1(e)-333(i)-334(za)28(w)27(o\\252a\\252:)]TJ 27.879 -13.549 Td[({)-362(Nie)-363(mie)-1(sz)-1(am)-362(s)-1(i\\246)-362(do)-362(nicz)-1(ego,)-362(r\\363b)-27(c)-1(ie,)-362(c)-1(o)-362(c)27(h)1(c)-1(ec)-1(i)1(e)-1(,)-362(ja)-362(ni)1(e)-363(w)-1(i)1(e)-1(m)-363(o)-362(ni)1(c)-1(zym)-363(i)]TJ -27.879 -13.55 Td[(ju)1(tro)-333(z)-334(r)1(ana)-333(jad\\246)-333(do)-333(\\233arno)28(w)28(a)-334(n)1(a)-333(c)-1(a\\252y)-333(dzie\\253!)]TJ 27.879 -13.549 Td[(Wiecz)-1(\\363r)-237(ucz)-1(y)1(ni\\252)-237(s)-1(i\\246)-238(wielce)-238(s)-1(w)28(arli)1(w)-1(y)84(,)-237(p)-28(e\\252e)-1(n)-237(n)1(arad,)-237(sprze)-1(cze)-1(k)-237(i)-238(t)1(a)-56(jemnicz)-1(y)1(c)27(h)]TJ -27.879 -13.549 Td[(sz)-1(ept\\363)28(w,)-273(a)-273(gdy)-273(j)1(u\\273)-273(c)-1(i)1(e)-1(mna)-273(n)1(o)-28(c)-274(zapad)1(\\252a,)-273(ws)-1(zys)-1(cy)-273(zm)-1(\\363)28(wieni)-273(ze)-1(sz)-1(l)1(i)-273(s)-1(i)1(\\246)-274(do)-273(k)56(ar)1(c)-1(zm)27(y)84(,)]TJ 0 -13.549 Td[(i)-398(u)1(gas)-1(zc)-1(zani)-398(p)1(rze)-1(z)-398(organi)1(s)-1(t\\363)28(w,)-398(j\\246li)-398(zno)28(wu)-398(r)1(adzi\\242)-399(i)-398(d)1(e)-1(l)1(ib)-27(e)-1(ro)28(w)28(a\\242)-1(.)-398(A)-398(zes)-1(zli)-398(si\\246)-399(co)]TJ 0 -13.549 Td[(na)-55(jp)1(ierws)-1(i)-455(gosp)-27(o)-28(dar)1(z)-1(e)-455(i)-455(p)1(ra)28(wie)-456(wsz)-1(ystki)1(e)-456(\\273e)-1(n)1(iate)-455(k)28(obiet)28(y)-455(i)-455(u)1(rad)1(z)-1(ali)-454(ju)1(\\273)-456(d)1(o\\261)-1(\\242)]TJ 0 -13.55 Td[(d\\252u)1(go,)-333(gdy)-333(P\\252osz)-1(k)28(o)28(w)28(a)-334(zakrzycz)-1(a\\252a:)]TJ 27.879 -13.549 Td[({)-286(A)-287(k)56(a)-56(j)1(\\273)-1(e)-287(t)1(o)-287(An)28(tek)-286(B)-1(or)1(yna?)-286(C)-1(a\\252a)-286(wie)-1(\\261)-287(si\\246)-287(ze)-1(b)1(ra\\252a,)-286(on)-286(pierwsz)-1(y)-286(w)-287(Lip)-27(cac)27(h)]TJ -27.879 -13.549 Td[(gosp)-28(o)-28(d)1(arz,)-333(to)-334(p)1(rze)-1(z)-334(n)1(iego)-334(n)1(ie)-334(mo\\273)-1(n)1(a)-333(radzi\\242,)-334(b)-27(\\246dzie)-334(n)1(ie)-1(w)28(a\\273)-1(n)1(e)-1(.)]TJ 27.879 -13.549 Td[({)-322(P)1(ra)28(wda,)-321(p)-28(os\\252a\\242)-322(p)-28(o)-321(niego!)-322(M)1(usi)-322(p)1(rz)-1(y)1(j\\261\\242)-1(!)-321(B)-1(ez)-322(ni)1(e)-1(go)-322(n)1(ie)-322(mo\\273)-1(n)1(a!)-322({)-322(wr)1(z)-1(es)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(eli.)]TJ 27.879 -13.549 Td[({)-333(A)-334(mo\\273e)-334(b)-28(\\246dzie)-334(j)1(e)-1(j)-333(b)1(ron)1(i\\252,)-333(kto)-333(w)-1(i)1(e)-1(?)-333({)-334(sz)-1(epn)1(\\246)-1(\\252a)-333(kt\\363r)1(a\\261)-1(.)]TJ 0 -13.55 Td[({)-333(\\221mia\\252b)28(y)-333(to)-333(c)-1(a\\252ej)-333(ws)-1(i)-333(si\\246)-334(pr)1(z)-1(ec)-1(i)1(w)-1(i)1(\\242)-1(!)-333(Ki)1(e)-1(j)-333(ws)-1(zystkie,)-333(to)-333(w)-1(sz)-1(y)1(s)-1(tk)1(ie)-1(!)]TJ 0 -13.549 Td[(Kop)1(n\\241\\252)-333(s)-1(i\\246)-333(p)-28(o)-333(ni)1(e)-1(go)-333(s)-1(o\\252t)28(ys)-333(i)-334(z)-333(\\252\\363\\273)-1(k)56(a)-333(m)27(usia\\252)-333(\\261)-1(ci\\241)-28(ga\\242,)-333(b)-28(o)-333(ju)1(\\273)-334(b)28(y)1(\\252)-334(spa\\252.)]TJ 0 -13.549 Td[({)-474(M)1(usicie)-474(i\\261\\242)-474(i)-474(p)-27(o)28(w)-1(i)1(e)-1(d)1(z)-1(ie\\242)-474(sw)27(o)-55(je!)-474(A)-473(nie)-474(p)-27(\\363)-55(jdziec)-1(i)1(e)-1(,)-473(to)-474(p)-27(o)28(wie)-1(d)1(z)-1(\\241,)-473(co)-474(j\\241)]TJ -27.879 -13.549 Td[(os\\252)-1(an)1(iacie)-456(i)-454(pr)1(z)-1(ec)-1(iwk)28(o)-455(gr)1(om)-1(ad)1(z)-1(i)1(e)-456(n)1(a)-455(s)-1(p)1(rze)-1(ciw)-455(idziec)-1(i)1(e)-1(!)-455(Bab)28(y)-454(w)27(am)-455(ni)1(e)-456(d)1(aruj)1(\\241)]TJ 0 -13.549 Td[(da)28(wn)28(yc)28(h)-333(grze)-1(c)28(h\\363)28(w.)-334(Ch)1(o)-28(d\\271c)-1(i)1(e)-1(\\273,)-333(raz)-334(tr)1(z)-1(eba)-333(z)-334(t)28(ym)-334(sk)28(o\\253czy\\242)-1(.)]TJ 27.879 -13.55 Td[(I)-333(p)-28(osz)-1(ed\\252,)-333(c)27(h)1(o)-28(cia\\273)-334(z)-334(ci\\246\\273)-1(ki)1(m)-334(s)-1(erce)-1(m,)-333(b)-27(o)-334(i)1(\\261)-1(\\242)-334(m)28(usia\\252.)]TJ 0 -13.549 Td[(Kar)1(c)-1(zm)-1(a)-385(b)28(y\\252a)-385(jak)1(b)28(y)-385(nab)1(ita,)-385(\\273)-1(e)-385(trud)1(no)-385(ju)1(\\273)-386(b)28(y)1(\\252)-1(o)-385(pal)1(e)-1(c)-386(wr)1(az)-1(i\\242,)-385(i)-385(w)-1(r)1(z)-1(a\\252o)-385(z)]TJ\nET\nendstream\nendobj\n2402 0 obj <<\n/Type /Page\n/Contents 2403 0 R\n/Resources 2401 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2401 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2406 0 obj <<\n/Length 10206     \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(754)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(cic)27(h)1(a,)-334(gd)1(y\\273)-334(or)1(ganista)-333(s)-1(to)-55(ja\\252)-333(w)-1(\\252a\\261ni)1(e)-334(na)-333(\\252a)28(w)-1(i)1(e)-334(i)-333(pra)28(wi\\252)-333(nib)29(y)-334(t)1(o)-334(k)56(azanie.)]TJ 27.879 -13.549 Td[({)-304(...)-304(i)-304(dr)1(ugiego)-304(s)-1(p)-27(os)-1(ob)1(u)-304(ni)1(e)-305(ma!)-304(Wie\\261)-305(to)-304(jak)-304(ten)-304(dom,)-304(niec)27(h)-304(j)1(e)-1(d)1(e)-1(n)-303(z)-1(\\252o)-28(d)1(z)-1(iej)]TJ -27.879 -13.549 Td[(wyjmie)-329(s)-1(p)-27(o)-28(d)-328(niego)-329(przycies)-1(i\\246,)-329(ni)1(e)-1(c)28(h)-329(dr)1(ugi)-329(z\\252ak)28(om)-1(i)-329(si\\246)-329(na)-329(b)-27(e)-1(lk)1(i,)-329(a)-329(trzec)-1(iem)27(u)-328(z)-1(a-)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(e)-275(s)-1(i)1(\\246)-276(wyj\\241\\242)-275(k)56(a)27(w)28(a\\252)-275(\\261)-1(cian)28(y)84(,)-275(to)-275(w)-276(k)28(o\\253)1(c)-1(u)-274(c)27(h)1(a\\252)-1(u)1(pa)-275(si\\246)-276(zw)27(al)1(i)-275(i)-275(na)-275(\\261m)-1(i)1(e)-1(r\\242)-275(ws)-1(zystkic)27(h)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(gniec)-1(i)1(e)-1(!)-296(Wymiar)1(kuj)1(c)-1(i)1(e)-297(to)-296(s)-1(ob)1(ie)-297(dob)1(rze)-1(!)-296(A)-296(ni)1(e)-1(c)28(h\\273e)-297(tu)-296(k)56(a\\273)-1(d)1(e)-1(m)28(u)-296(b)-27(\\246)-1(d)1(z)-1(ie)-296(w)27(oln)1(o)]TJ 0 -13.55 Td[(kr)1(a\\261)-1(\\242,)-366(roz)-1(b)1(ij)1(a)-1(\\242,)-366(krzywdzi\\242,)-366(rozpust\\246)-367(cz)-1(y)1(ni\\242,)-366(to)-367(i)-366(c\\363\\273)-367(si\\246)-367(stanie)-367(ze)-367(wsi\\241?)-367(P)28(o)28(wia-)]TJ 0 -13.549 Td[(dam)-371(w)27(am,)-371(nie)-372(wie\\261)-372(to)-371(ju)1(\\273)-372(b)-27(\\246)-1(d)1(z)-1(ie,)-371(a)-372(j)1(e)-1(n)1(o)-372(ten)-371(c)27(h)1(le)-1(w)-371(diab)-27(els)-1(k)1(i,)-371(a)-372(h)1(a\\253b)1(a)-372(i)-371(ws)-1(t)28(yd)]TJ 0 -13.549 Td[(la)-405(p)-28(o)-28(czc)-1(iwyc)28(h!)-405(\\233)-1(e)-406(omij)1(a\\242)-407(j)1(\\241)-406(b)-27(\\246)-1(d)1(\\241)-406(z)-406(dal)1(e)-1(k)56(a)-406(i)-405(\\273)-1(egna\\242)-406(si\\246)-406(na)-405(jej)-406(p)1(rzyp)-27(om)-1(n)1(ie)-1(n)1(ie.)]TJ 0 -13.549 Td[(Ale)-304(m\\363)28(w)-1(i)1(\\246)-304(w)27(am,)-303(\\273)-1(e)-304(p)1(r\\246dze)-1(j)-303(cz)-1(y)-303(p)-27(\\363\\271)-1(n)1(ie)-1(j)-303(k)56(ara)-303(b)-27(os)-1(k)56(a)-304(n)1(a)-304(tak)56(\\241)-303(w)-1(i)1(e)-1(\\261)-304(spa\\261\\242)-304(m)27(u)1(s)-1(i,)-303(j)1(ak)]TJ 0 -13.549 Td[(spad\\252a)-334(na)-334(o)28(w)28(\\241)-335(S)1(o)-28(dom\\246)-335(i)-334(Gomor\\246!)-334(Sp)1(adn)1(ie)-335(i)-334(ws)-1(zystkic)28(h)-334(w)-1(y)1(traci,)-334(b)-28(o)-334(wsz)-1(ysc)-1(y)-334(s\\241)]TJ 0 -13.549 Td[(zar\\363)28(w)-1(n)1(o)-338(winn)1(i,)-338(tak)-337(c)-1(i,)-337(kt\\363rzy)-338(\\271le)-339(r)1(obi\\241,)-337(jak)-338(i)-337(c)-1(i,)-337(kt\\363rzy)-338(p)-27(oz)-1(w)28(ala)-55(j\\241)-338(rozrasta\\242)-338(s)-1(i\\246)]TJ 0 -13.55 Td[(z\\252)-1(em)27(u)1(!)-342(Pi)1(s)-1(mo)-342(\\261)-1(wi\\246te)-343(nas)-342(p)-28(ou)1(c)-1(za:)-342(je\\261li)-342(z)-1(gor)1(s)-1(zy)-342(c)-1(i\\246)-342(r\\246k)55(a)-342(t)28(w)28(o)-56(j)1(a,)-343(o)-27(detnij)-341(j\\241,)-342(a)-342(je\\261)-1(l)1(i)]TJ 0 -13.549 Td[(zgrz)-1(esz)-1(y\\252o)-289(ok)28(o,)-288(wy\\252up)-288(je)-289(i)-289(ci\\261nij)-288(psom!)-289(Jagu)1(s)-1(ia,)-288(m)-1(\\363)28(wi\\246)-289(w)27(am,)-289(t)1(o)-289(gorsz)-1(a)-289(o)-27(d)-289(moru)1(,)]TJ 0 -13.549 Td[(gorsz)-1(a)-328(o)-28(d)-327(z)-1(arazy)84(,)-329(b)-27(o)-328(s)-1(i)1(e)-1(j)1(e)-329(z)-1(gor)1(s)-1(ze)-1(n)1(ie,)-328(grz)-1(esz)-1(y)-328(pr)1(z)-1(ec)-1(i)1(w)-329(ws)-1(zystkim)-328(przyk)56(azaniom)]TJ 0 -13.549 Td[(i)-342(\\261)-1(ci\\241)-28(ga)-343(n)1(a)-343(wie\\261)-343(gniew)-343(Bo\\273)-1(y)-342(i)-343(j)1(e)-1(go)-342(s)-1(tr)1(as)-1(zn\\241)-342(p)-28(oms)-1(t\\246!)-342(Wyp)-27(\\246)-1(d)1(\\271)-1(ta)-342(j\\241,)-342(p)-28(\\363k)1(i)-343(j)1(e)-1(sz)-1(cz)-1(e)]TJ 0 -13.549 Td[(cz)-1(as!)-445(Ju)1(\\273)-445(s)-1(i)1(\\246)-445(prze)-1(b)1(ra\\252a)-445(miar)1(k)55(a)-444(jej)-444(grze)-1(c)27(h)1(\\363)28(w)-445(i)-445(p)1(rzysz)-1(ed\\252)-445(cz)-1(as)-445(n)1(a)-445(p)-27(ok)56(arani)1(e)-1(!)-444({)]TJ 0 -13.55 Td[(ry)1(c)-1(za\\252)-334(ki)1(e)-1(j)-333(b)29(yk,)-333(ja\\273e)-334(m)27(u)-332(o)-28(c)-1(zy)-333(wy\\252az)-1(i\\252y)-333(z)-334(r)1(oz)-1(cz)-1(erwienion)1(e)-1(j)-332(t)27(w)28(arzy)83(.)]TJ 27.879 -13.549 Td[({)-291(Ju\\261c)-1(i)1(!)-292(P)29(ora!)-291(Nar\\363)-28(d)-290(m)-1(o)-28(cen)-291(jes)-1(t)-291(k)56(ara\\242)-292(i)-291(mo)-28(ce)-1(n)-291(wyn)1(adgrad)1(z)-1(a\\242!)-291(Wygn)1(a\\242)-292(j\\241)]TJ -27.879 -13.549 Td[(ze)-334(ws)-1(i!)-333(Wy)1(gna\\242!)-333({)-334(wrze)-1(sz)-1(cze)-1(li)-333(coraz)-334(g\\252o\\261niej.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(i)1(\\252)-359(j)1(e)-1(sz)-1(cz)-1(e)-359(G)1(rze)-1(la,)-358(w)28(\\363)-56(j)1(t\\363)28(w)-359(br)1(at,)-358(prze)-1(ma)28(wia\\252)-359(stary)-358(P)1(\\252os)-1(zk)55(a,)-358(p)28(y)1(s)-1(k)28(o)28(w)28(a\\252)]TJ -27.879 -13.549 Td[(Gu)1(lbas,)-306(ale)-307(m)-1(a\\252o)-306(kto)-307(s\\252uc)28(ha\\252,)-306(b)-28(o)-306(ju\\273)-307(wsz)-1(yscy)-307(wraz)-307(m\\363)28(w)-1(i)1(li.)-306(Organ)1(i\\261)-1(cin)1(a)-307(ci\\246)-1(gi)1(e)-1(m)]TJ 0 -13.55 Td[(rozp)-27(o)27(wiad)1(a\\252a,)-256(jak)-256(to)-256(b)28(y)1(\\252)-1(o)-256(z)-256(Jas)-1(i)1(e)-1(m,)-256(w)27(\\363)-55(jto)28(w)28(a)-257(t)1(e)-1(\\273)-256(s)-1(w)28(o)-56(j)1(e)-257(krzywdy)-256(k)56(a\\273dem)27(u)-256(w)-256(u)1(s)-1(zy)]TJ 0 -13.549 Td[(k\\252ad)1(\\252)-1(a,)-333(a)-333(i)-333(dr)1(ugie)-334(p)-27(of)1(olgo)28(w)27(a\\252y)-333(s)-1(e)-333(niez)-1(gor)1(z)-1(ej,)-333(\\273e)-334(ju)1(\\273)-334(wrza\\252o)-334(ki)1(e)-1(j)-333(n)1(a)-334(j)1(armarku)1(.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-331(An)29(te)-1(k)-330(s)-1(i\\246)-331(n)1(ie)-331(o)-28(dzyw)28(a\\252,)-331(sto)-56(j)1(a\\252)-331(pr)1(z)-1(y)-330(s)-1(zynk)1(w)27(asie)-331(c)27(h)1(m)27(ur)1(n)28(y)-331(k)1(ie)-1(j)-330(n)1(o)-28(c)-1(,)-330(z)]TJ -27.879 -13.549 Td[(zac)-1(i\\246t)28(ymi)-356(z\\246)-1(b)1(am)-1(i)1(,)-356(p)-27(oblad)1(\\252y)-356(o)-28(d)-355(m\\246)-1(k)1(i,)-356(a)-355(przyc)27(h)1(o)-28(d)1(z)-1(i\\252y)-355(na)-356(n)1(iego)-356(takie)-356(min)28(u)1(t)28(y)83(,)-355(\\273)-1(e)]TJ 0 -13.549 Td[(c)27(h)1(c)-1(i)1(a\\252)-1(o)-294(m)28(u)-294(si\\246)-295(c)28(h)28(yc)-1(i)1(\\242)-295(\\252a)28(w)27(\\246)-294(i)-294(pr)1(a\\242)-295(ni)1(\\241)-295(t)1(e)-295(ws)-1(zystkie)-294(roz)-1(wr)1(z)-1(es)-1(zc)-1(zone)-294(p)28(yski,)-294(a)-294(ob)-27(c)-1(a-)]TJ 0 -13.55 Td[(sam)-1(i)-374(trat)1(o)27(w)28(a\\242)-375(kiej)-374(to)-374(paskud)1(ne)-375(r)1(obact)27(w)28(o)-375(i)-374(tak)-374(m)28(u)-374(s)-1(i\\246)-375(j)1(u\\273)-375(wsz)-1(ystk)28(o)-374(z)-1(mierzi\\252o,)]TJ 0 -13.549 Td[(i\\273)-334(p)1(i\\252)-333(kielisz)-1(ek)-333(p)-28(o)-333(kielisz)-1(k)1(u,)-333(a)-333(s)-1(p)1(lu)28(w)28(a\\252)-334(j)1(e)-1(n)1(o)-334(i)-333(kl)1(\\241\\252)-334(cic)27(h)1(o.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(s)-1(zed\\252)-333(do\\253)-333(P)1(\\252)-1(oszk)55(a)-333(i)-333(g\\252o\\261)-1(n)1(o)-334(n)1(a)-334(ca\\252\\241)-333(k)55(ar)1(c)-1(zm)-1(\\246)-333(z)-1(ap)28(y)1(ta\\252:)]TJ 0 -13.549 Td[({)-467(Ju\\273)-468(ws)-1(zystkie)-468(zgo)-28(d)1(z)-1(i\\252y)-467(s)-1(i)1(\\246)-468(na)-467(jedn)1(o)-1(,)-467(\\273e)-468(Jagusi\\246)-468(tr)1(z)-1(a)-467(w)-1(y)1(gna\\242)-468(ze)-468(w)-1(si.)]TJ -27.879 -13.549 Td[(Rz)-1(ekn)1(ij)-333(i)-333(t)28(y)-333(s)-1(w)28(o)-56(j)1(e)-1(,)-333(An)28(ton)1(i.)]TJ 27.879 -13.55 Td[(Pr)1(z)-1(y)1(c)-1(ic)28(h\\252o)-491(n)1(agle)-491(w)-491(k)56(arc)-1(zmie)-1(,)-490(ws)-1(zystkie)-491(o)-28(cz)-1(y)-490(w)-1(l)1(e)-1(p)1(i\\252y)-491(si\\246)-491(w)-491(ni)1(e)-1(go,)-490(b)28(yli)]TJ -27.879 -13.549 Td[(pr)1(a)28(w)-1(i)1(e)-318(p)-28(ewni,)-317(\\273)-1(e)-317(s)-1(i\\246)-318(spr)1(z)-1(ec)-1(i)1(w)-1(i)1(,)-318(ale)-317(on)-318(o)-27(dsapn)1(\\241\\252)-1(,)-317(wyp)1(ros)-1(t)1(o)27(w)28(a\\252)-318(si\\246)-318(i)-317(rze)-1(k\\252)-317(g\\252o\\261)-1(n)1(o:)]TJ 27.879 -13.549 Td[({)-375(W)-374(gromadzie)-375(\\273)-1(y)1(j\\246,)-375(to)-374(i)-375(z)-375(gromad\\241)-374(trzymam)-1(!)-374(Chce)-1(ta)-374(j\\241)-375(wyp)-27(\\246)-1(d)1(z)-1(i)1(\\242)-1(,)-374(wy-)]TJ -27.879 -13.549 Td[(p)-27(\\246)-1(d)1(\\271)-1(ta;)-333(a)-333(c)27(h)1(c)-1(eta)-334(se)-334(j)1(\\241)-334(p)-27(osadzi\\242)-334(na)-333(o\\252tarzu,)-333(p)-27(os)-1(ad)1(\\271)-1(t)1(a!)-334(Zar)1(\\363)27(wn)1(o)-334(mi)-333(jedn)1(o!)]TJ 27.879 -13.549 Td[(Od)1(s)-1(u)1(n\\241\\252)-333(r\\246k)55(\\241)-333(zale)-1(ga)-55(j\\241cyc)27(h)-333(m)28(u)-333(dr)1(og\\246)-334(i)-333(wys)-1(ze)-1(d)1(\\252)-334(n)1(ie)-334(p)1(atrz\\241c)-334(na)-333(ni)1(k)28(ogo.)]TJ 0 -13.549 Td[(D\\252ugo)-352(j)1(e)-1(sz)-1(cz)-1(e)-352(p)-28(o)-352(j)1(e)-1(go)-352(wyj)1(\\261)-1(ciu)-352(rad)1(z)-1(i)1(li,)-352(p)1(ra)28(w)-1(i)1(e)-353(do)-352(sam)-1(ego)-352(\\261)-1(wit)1(ania,)-352(a)-352(ran)1(-)]TJ -27.879 -13.55 Td[(kiem)-334(wiedzieli)-333(ju)1(\\273)-334(ws)-1(zys)-1(cy)84(,)-334(\\273e)-334(p)-27(os)-1(t)1(ano)28(wiono)-333(wyp)-28(\\246dzi\\242)-334(ze)-334(wsi)-334(J)1(agusi\\246)-1(.)]TJ 27.879 -13.549 Td[(Ma\\252o)-317(kto)-317(sta)28(w)27(a\\252)-317(w)-317(jej)-317(ob)1(roni)1(e)-1(,)-317(b)-27(o)-317(k)56(a\\273)-1(d)1(e)-1(go)-317(zakrzycz)-1(eli,)-317(t)28(yl)1(k)28(o)-318(j)1(e)-1(d)1(e)-1(n)-316(Mate-)]TJ -27.879 -13.549 Td[(usz)-295(n)1(ie)-295(ul)1(\\241k\\252s)-1(zy)-294(s)-1(i\\246)-294(nik)28(ogo)-294(kl\\241\\252)-294(ws)-1(zystkic)27(h)-294(w)-294(o)-28(cz)-1(y)-294(i)-294(p)-27(om)-1(sto)28(w)27(a\\252)-294(c)-1(a\\252\\241)-294(wie)-1(\\261,)-294(\\273)-1(e)-295(j)1(u\\273)]TJ 0 -13.549 Td[(rozw\\261)-1(cieklon)28(y)-333(do)-333(ostatk)56(a,)-333(p)-28(olecia\\252)-334(sz)-1(u)1(k)56(a\\242)-334(ratu)1(nku)-333(u)-332(An)28(tk)56(a.)]TJ 27.879 -13.549 Td[({)-333(Wies)-1(z)-334(o)-333(Jagu)1(s)-1(i?)-333({)-333(blad)1(y)-334(b)29(y\\252)-334(k)1(ie)-1(j)-332(trup)-332(i)-334(ca\\252y)-333(dygota\\252.)]TJ 0 -13.55 Td[({)-333(A)-334(wiem,)-334(p)1(ra)28(w)28(o)-334(za)-334(n)1(imi!)-333({)-334(r)1(z)-1(ek\\252)-333(kr\\363tk)28(o,)-333(m)28(yj\\241c)-333(s)-1(i\\246)-334(p)-27(o)-28(d)-333(stu)1(dni)1(\\241.)]TJ 0 -13.549 Td[({)-224(\\233e)-1(b)28(y)-224(i)1(c)27(h)-224(m\\363r)-224(z)-225(tak)1(im)-225(p)1(ra)28(w)27(em!)-224(T)83(o)-225(r)1(ob)-28(ot)1(a)-225(or)1(ganist\\363)28(w!)-224(Jak\\273)-1(e,)-224(dop)1(u\\261c)-1(i)1(m)-225(do)]TJ\nET\nendstream\nendobj\n2405 0 obj <<\n/Type /Page\n/Contents 2406 0 R\n/Resources 2404 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2404 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2409 0 obj <<\n/Length 9712      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(755)]TJ -358.232 -35.866 Td[(taki)1(e)-1(j)-285(nies)-1(p)1(ra)28(wiedliw)28(o\\261c)-1(i!)-285(C)-1(\\363\\273)-286(to)-285(k)28(om)27(u)-285(z)-1(a)28(wini)1(\\252)-1(a?)-286(A)-285(o)-286(c)-1(o)-285(j\\241)-286(win)1(i\\241,)-286(to)-285(niepr)1(a)27(wd)1(a,)]TJ 0 -13.549 Td[(cz)-1(yste)-302(c)-1(yga\\253)1(s)-1(t)28(w)28(o!)-302(Jez)-1(u)1(,)-302(\\273e)-1(b)29(y)-302(si\\246)-303(w)28(a\\273yli)-302(wygan)1(ia\\242)-302(c)-1(z\\252o)27(wiek)56(a)-302(jak)-301(te)-1(go)-301(w)-1(\\261c)-1(i)1(e)-1(k\\252ego)]TJ 0 -13.549 Td[(psa.)-333(Nie)-334(sp)-28(os\\363b,)-333(\\273e)-1(b)29(y)-333(to)-334(mia\\252o)-333(b)28(y\\242!)]TJ 27.879 -13.549 Td[({)-333(Sp)1(rz)-1(eciwis)-1(z)-333(s)-1(i\\246)-334(t)1(o)-334(ca\\252e)-1(j)-333(gr)1(om)-1(ad)1(z)-1(i)1(e)-1(?)]TJ 0 -13.549 Td[({)-333(Rz)-1(ek\\252e)-1(\\261,)-333(jakb)29(y\\261)-334(z)-334(n)1(imi)-334(t)1(rz)-1(y)1(m)-1(a\\252)-333({)-333(z)-1(a)28(w)27(ar)1(c)-1(za\\252)-334(z)-333(gro\\271)-1(n)29(ym)-334(wyr)1(z)-1(u)1(te)-1(m.)]TJ 0 -13.55 Td[({)-333(Z)-334(n)1(ikim)-333(nie)-333(trz)-1(y)1(m)-1(am,)-333(ale)-334(i)-333(t)28(yl)1(a)-334(mi)-333(do)-333(ni)1(e)-1(j,)-333(co)-333(do)-333(te)-1(go)-333(k)56(am)-1(i)1(e)-1(n)1(ia.)]TJ 0 -13.549 Td[({)-497(Ratuj)1(,)-497(An)28(tek,)-497(p)-27(orad\\271)-497(c)-1(o)-497(n)1(ie)-1(b)1(\\241d\\271.)-497(Lab)-27(oga,)-497(ju)1(\\273)-498(mi)-497(s)-1(i\\246)-497(w)27(e)-497(\\252bie)-497(m)-1(\\241ci!)]TJ -27.879 -13.549 Td[(p)-27(om)-1(i)1(arkuj)-498(in)1(o,)-499(c\\363\\273)-500(on)1(a)-499(p)-28(o)-27(c)-1(znie,)-499(k)56(a)-56(j)-498(s)-1(i)1(\\246)-500(p)-27(o)-28(d)1(z)-1(ieje?)-499(A)-499(p)1(s)-1(iekrwie,)-499(zb)-28(\\363)-55(je,)-499(wilk)1(i)]TJ 0 -13.549 Td[(jedn)1(e)-1(.)-333(S)1(ie)-1(k)1(ie)-1(r)1(\\246)-334(c)27(h)29(yba)-333(c)27(h)28(y)1(c)-1(\\246)-334(i)-333(b)-27(\\246d\\246)-334(r)1(\\241ba\\252,)-333(a)-334(n)1(ie)-334(d)1(opu)1(s)-1(zc)-1(z\\246)-1(,)-333(n)1(ie)-334(d)1(opuszc)-1(z\\246)-1(!)]TJ 27.879 -13.549 Td[({)-333(Nic)-334(ci)-333(nie)-334(p)-27(omog\\246)-1(.)-333(P)28(ostano)28(wili)1(,)-333(to)-334(c\\363\\273)-334(znacz)-1(y)-333(jeden)-333(sprzec)-1(iw,)-333(ni)1(c)-1(.)]TJ 0 -13.549 Td[({)-333(Masz)-334(do)-333(ni)1(e)-1(j)-333(z\\252o\\261)-1(\\242!)-333({)-334(za)28(w)-1(r)1(z)-1(es)-1(zc)-1(za\\252)-333(nies)-1(p)-27(o)-28(d)1(z)-1(ian)1(ie.)]TJ 0 -13.55 Td[({)-428(M)1(am)-428(z)-1(\\252o\\261\\242)-429(czy)-428(ni)1(e)-1(,)-427(nic)-428(k)28(om)28(u)-428(d)1(o)-428(tego)-428({)-428(p)-27(o)28(wie)-1(d)1(z)-1(i)1(a\\252)-428(s)-1(u)1(ro)28(w)27(o)-427(i)-428(wspart)28(y)]TJ -27.879 -13.549 Td[(o)-473(stud)1(ni\\246)-473(zapatrzy\\252)-473(si\\246)-473(k)56(a)-56(j\\261)-473(d)1(ale)-1(k)28(o.)-472(B)-1(ol)1(e)-1(sn)28(ym)-473(k\\252\\246b)-28(em)-473(z)-1(wi\\252y)-473(si\\246)-473(w)-473(ni)1(m)-474(j)1(e)-1(n)1(o)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ta)-56(j)1(one)-441(a)-440(wiec)-1(znie)-440(c)-1(zuj)1(ne)-440(m)-1(i\\252o)28(w)28(ania)-440(i)-440(zaz)-1(d)1(ro\\261c)-1(ie,)-440(\\273)-1(e)-440(c)27(h)28(wia\\252)-440(si\\246)-441(w)-440(s)-1(ob)1(ie)-441(z)]TJ 0 -13.549 Td[(p)-27(o)-56(j)1(\\246)-1(ki)1(e)-1(m)-334(n)1(ib)28(y)-333(d)1(rz)-1(ew)28(o)-334(tar)1(gane)-334(p)1(rze)-1(z)-334(wic)28(h)28(ur)1(\\246)-1(.)]TJ 27.879 -13.549 Td[(Ob)-27(e)-1(j)1(rza\\252)-432(s)-1(i\\246)-432(nar)1(az)-1(,)-432(M)1(ate)-1(u)1(s)-1(za)-432(ju)1(\\273)-433(ni)1(e)-433(b)28(y)1(\\252)-1(o,)-431(a)-433(wie\\261)-433(wyd)1(a\\252a)-432(m)27(u)-432(si\\246)-432(jak)56(a\\261)]TJ -27.879 -13.55 Td[(ob)-27(c)-1(a)-333(i)-333(dziwnie)-333(przykr)1(a,)-333(i)-334(strasznie)-334(r)1(oz)-1(wrze)-1(szc)-1(zana.)]TJ 27.879 -13.549 Td[(Pr)1(a)28(w)-1(d)1(a,)-473(co)-473(i)-472(te)-1(n)-472(d)1(z)-1(ie\\253)-472(pami\\246tn)28(y)-473(tak)1(\\273)-1(e)-473(b)28(y)1(\\252)-473(jaki)1(\\261)-473(niez)-1(wycz)-1(a)-55(jn)28(y)84(.)-472(S\\252o\\253ce)]TJ -27.879 -13.549 Td[(wlek\\252o)-446(s)-1(i)1(\\246)-447(b)1(lad)1(e)-447(i)-445(jakb)29(y)-446(ob)1(rz)-1(\\246k\\252e,)-446(d)1(usz)-1(n)1(o)-446(b)28(y\\252o)-446(n)1(a)-446(\\261w)-1(i)1(e)-1(cie)-446(i)-446(strasz)-1(n)1(ie)-446(gor\\241co,)]TJ 0 -13.549 Td[(ni)1(e)-1(b)-27(o)-354(wis)-1(i)1(a\\252o)-354(nisk)28(o,)-354(za)28(w)27(alon)1(e)-355(p)1(as)-1(k)1(udn)29(ymi)-354(c)27(h)1(m)27(u)1(rz)-1(y)1(s)-1(k)56(ami,)-354(wiater)-354(zryw)28(a\\252)-354(s)-1(i)1(\\246)-355(co)]TJ 0 -13.549 Td[(c)27(h)29(w)-1(i)1(la)-452(i)-451(zamiata\\252,)-451(a)-452(n)1(ad)-451(dr)1(ogam)-1(i)-451(p)-27(o)-28(d)1(nosi\\252y)-451(s)-1(i\\246)-451(k\\252\\246)-1(b)28(y)-451(k)1(urza)28(w)-1(y)84(,)-451(mia\\252o)-452(si\\246)-452(n)1(a)]TJ 0 -13.55 Td[(bu)1(rz\\246)-1(,)-333(k)56(a)-56(j)1(\\261)-334(nad)-332(b)-28(or)1(am)-1(i)-333(j)1(akb)28(y)-333(s)-1(i)1(\\246)-334(\\252ysk)55(a\\252o.)]TJ 27.879 -13.549 Td[(Za\\261)-384(mi\\246)-1(d)1(z)-1(y)-383(lu)1(d\\271m)-1(i)-383(j)1(u\\273)-384(si\\246)-384(s)-1(r)1(o\\273)-1(y)1(\\252)-1(a)-383(s)-1(i)1(e)-1(ln)1(a)-384(za)28(w)-1(i)1(e)-1(r)1(uc)27(h)1(a,)-383(latali)-383(p)-28(o)-383(ws)-1(i)-383(kieb)28(y)]TJ -27.879 -13.549 Td[(p)-27(os)-1(zaleli,)-393(k\\252\\363tni)1(e)-394(w)-1(r)1(z)-1(a\\252y)-393(p)-28(o)-393(ws)-1(zystkic)27(h)-393(c)28(ha\\252up)1(ac)27(h)1(,)-394(j)1(akie\\261)-394(bab)29(y)-394(p)-27(obi)1(\\252)-1(y)-393(si\\246)-394(nad)]TJ 0 -13.549 Td[(sta)27(w)28(em)-1(,)-426(psy)-427(u)1(jad)1(a\\252)-1(y)-426(b)-27(e)-1(zustann)1(ie,)-427(pr)1(a)28(w)-1(i)1(e)-428(n)1(ikt)-426(nie)-427(wysz)-1(ed\\252)-426(w)-427(p)-28(ol)1(e)-428(d)1(o)-427(r)1(ob)-28(ot)28(y)84(,)]TJ 0 -13.549 Td[(b)28(yd)1(\\252o)-276(ni)1(e)-277(wyp)-27(\\246)-1(d)1(z)-1(on)1(e)-276(na)-276(p)1(as)-1(z\\246)-277(r)1(ycz)-1(a\\252o)-276(p)-27(o)-276(ob)-27(orac)27(h)1(,)-276(n)1(a)27(w)28(e)-1(t)-275(m)-1(sz)-1(y)-275(te)-1(go)-275(dni)1(a)-276(ksi\\241dz)]TJ 0 -13.55 Td[(ni)1(e)-410(o)-28(d)1(pra)28(wi\\252)-409(i)-409(wyjec)27(h)1(a\\252)-410(r)1(\\363)28(w)-1(n)1(o)-409(z)-1(e)-410(\\261witem)-1(,)-409(zam\\246)-1(t)-409(p)-27(o)-28(dn)1(i\\363s\\252)-410(si\\246)-410(coraz)-409(w)-1(i)1(\\246)-1(kszy)-409(i)]TJ 0 -13.549 Td[(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(o\\261)-1(\\242)-334(r)1(os)-1(\\252a)-333(z)-334(min)28(u)1(t)28(y)-334(n)1(a)-333(m)-1(in)29(ut\\246.)]TJ 27.879 -13.549 Td[(An)28(tek)-383(d)1(o)-56(jr)1(z)-1(a)28(ws)-1(zy)84(,)-383(\\273)-1(e)-383(w)-383(organ)1(is)-1(t)1(o)27(wyc)28(h)-383(op)1(\\252otk)55(ac)28(h)-383(zbiera)-383(si\\246)-383(c)-1(or)1(az)-384(wi\\246c)-1(ej)]TJ -27.879 -13.549 Td[(nar)1(o)-28(du)1(,)-333(wz)-1(i\\241\\252)-333(k)28(os)-1(\\246)-333(na)-333(rami\\246)-334(i)-333(\\261pies)-1(zni)1(e)-334(p)-28(osz)-1(ed\\252)-333(w)-334(p)-27(ole)-333(p)-28(o)-28(d)-332(las)-1(.)]TJ 27.879 -13.549 Td[(Pr)1(z)-1(es)-1(zk)56(adza\\252)-381(m)27(u)-380(wiatr)-380(pl\\241cz\\241c)-382(zb)-27(o\\273)-1(e)-381(i)-381(b)1(ij)1(\\241c)-382(p)1(iaskiem)-381(w)-381(o)-28(c)-1(zy)83(,)-380(ale)-381(wpar)1(\\252)]TJ -27.879 -13.55 Td[(si\\246)-334(w)-334(zagon)-333(i)-333(j\\241\\252)-333(s)-1(i)1(e)-1(c,)-333(s)-1(p)-27(ok)28(o)-56(j)1(nie)-333(nas\\252uc)27(h)29(uj\\241c)-333(z)-1(arazem)-334(dal)1(e)-1(ki)1(c)27(h)-333(gw)28(ar\\363)28(w)-1(.)]TJ 27.879 -13.549 Td[({)-373(Mo\\273e)-374(to)-373(j)1(u\\273)-373({)-373(przem)-1(kn)1(\\246)-1(\\252o)-373(m)28(u)-373(nar)1(az)-374(p)1(rze)-1(z)-373(g\\252)-1(o)28(w)28(\\246)-1(,)-372(s)-1(erce)-374(zat\\252uk\\252o)-373(kieb)28(y)]TJ -27.879 -13.549 Td[(m\\252ote)-1(m,)-314(gniew)-314(nim)-314(z)-1(atar)1(ga\\252)-315(i)-314(r)1(oz)-1(p)1(r\\246)-1(\\273y\\252)-314(grzbiet,)-314(ju)1(\\273)-315(mia\\252)-314(rzuci\\242)-315(k)28(os\\246)-315(i)-314(lec)-1(i)1(e)-1(\\242)-315(n)1(a)]TJ 0 -13.549 Td[(ratu)1(nek,)-333(ale)-334(op)1(am)-1(i)1(\\246)-1(ta\\252)-333(s)-1(i)1(\\246)-334(jes)-1(zcz)-1(e)-334(w)-333(p)-28(or)1(\\246)-1(.)]TJ 27.879 -13.549 Td[({)-333(Kto)-333(z)-1(a)28(wini)1(\\252,)-334(n)1(iec)27(h)-333(w)28(e)-1(\\271m)-1(i)1(e)-334(k)56(ar\\246)-1(.)-333(A)-333(ni)1(e)-1(c)28(h)28(ta,)-333(a)-334(n)1(iec)27(h)28(ta.)]TJ 0 -13.549 Td[(\\233yta)-374(z)-375(c)27(h)1(rz)-1(\\246ste)-1(m)-375(k)1(\\252)-1(on)1(i\\252y)-374(m)27(u)-374(si\\246)-375(do)-374(n\\363g)-374(i)-374(bi\\252y)-374(w)-375(ni)1(e)-1(go)-374(nib)29(y)-375(r)1(oz)-1(k)28(oleban)1(e)]TJ -27.879 -13.55 Td[(w)28(o)-28(dy)84(,)-423(wiater)-422(rozw)-1(i)1(e)-1(w)28(a\\252)-423(m)27(u)-422(w\\252os)-1(y)-422(i)-422(s)-1(u)1(s)-1(zy\\252)-423(t)28(w)28(arz)-423(sp)-28(otn)1(ia\\252\\241)-423(z)-423(m\\246)-1(k)1(i,)-423(o)-27(c)-1(zy)-423(p)1(ra-)]TJ 0 -13.549 Td[(wie)-357(n)1(ic)-356(nie)-356(w)-1(i)1(dzia\\252y)83(,)-356(j)1(akb)28(y)-356(j)1(u\\273)-356(w)-1(sz)-1(y)1(s)-1(tek)-356(b)28(y\\252)-356(tam,)-356(p)1(rz)-1(y)-356(J)1(agusi,)-356(\\273)-1(e)-356(t)28(ylk)28(o)-356(t)28(w)28(arde)]TJ 0 -13.549 Td[(pr)1(z)-1(y)1(ucz)-1(on)1(e)-334(r\\246c)-1(e)-334(same)-334(w)27(o)-27(dzi\\252y)-333(k)28(os)-1(\\246)-334(k)1(\\252)-1(ad)1(\\241c)-334(p)-27(ok)28(os)-334(z)-1(a)-333(p)-27(ok)28(os)-1(em.)]TJ 27.879 -13.549 Td[(Wiat)1(r)-333(przyn)1(i\\363s)-1(\\252)-333(o)-28(d)-333(ws)-1(i)-333(j)1(aki\\261)-334(d)1(\\252ugi,)-333(p)1(rze)-1(ci\\241)-28(g\\252y)-333(krzyk.)]TJ 0 -13.549 Td[(Rz)-1(u)1(c)-1(i)1(\\252)-288(k)28(os)-1(\\246)-288(i)-288(p)1(rzys)-1(i)1(ad\\252)-288(p)-27(o)-28(d)-288(\\273ytn)1(i\\241)-288(\\261c)-1(ian)1(\\241,)-288(j)1(akb)28(y)-288(si\\246)-288(wpar\\252)-288(w)-288(ziem)-1(i\\246,)-288(j)1(akb)28(y)]TJ -27.879 -13.55 Td[(si\\246)-395(jej)-394(cz)-1(epi\\252)-394(c)-1(a\\252\\241)-394(mo)-28(c)-1(\\241,)-394(za\\261)-395(c)-1(a\\252y)-394(si\\246)-395(j)1(e)-1(j)-394(u)1(j\\241\\252)-394(jakb)28(y)-394(w)-394(\\273)-1(elaz)-1(n)1(e)-395(p)1(az)-1(u)1(ry)-394(i)-394(z)-1(d)1(z)-1(ier-)]TJ 0 -13.549 Td[(\\273y\\252,)-385(i)-384(nie)-385(d)1(a\\252)-385(si\\246)-1(,)-384(c)27(h)1(o)-28(c)-1(i)1(a\\273)-385(o)-28(c)-1(zy)-385(l)1(ata\\252y)-385(n)1(ad)-385(wsi\\241)-385(n)1(ib)28(y)-384(os)-1(zala\\252e)-385(ptak)1(i,)-385(c)28(ho)-28(\\242)-385(se)-1(r)1(c)-1(e)]TJ\nET\nendstream\nendobj\n2408 0 obj <<\n/Type /Page\n/Contents 2409 0 R\n/Resources 2407 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2407 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2412 0 obj <<\n/Length 9387      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(756)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(skwie)-1(r)1(c)-1(za\\252o)-300(z)-300(tr)1(w)27(ogi,)-299(c)27(h)1(o)-28(\\242)-300(tr)1(z)-1(\\241s\\252)-300(si\\246)-300(i)-299(dygota\\252)-299(z)-300(niesp)-28(ok)28(o)-55(ju)1(.)-300({)-299(Wsz)-1(y\\242k)28(o)-300(m)28(usi)-299(i\\261)-1(\\242)]TJ 0 -13.549 Td[(p)-27(o)-353(s)-1(w)28(o)-56(j)1(e)-1(m)28(u,)-353(wsz)-1(y)1(\\242)-1(k)28(o.)-353(T)84(rz)-1(a)-352(ora\\242)-1(,)-352(b)28(y)-353(sia\\242,)-353(trza)-353(sia\\242)-1(,)-352(b)28(y)-353(zbiera\\242,)-353(a)-353(co)-353(jeno)-353(p)1(rze)-1(-)]TJ 0 -13.549 Td[(sz)-1(k)56(adza,)-319(trza)-319(wypleni)1(\\242)-320(ki)1(e)-1(j)-319(z\\252y)-319(c)27(h)28(w)28(ast)-319({)-320(m\\363)28(wi\\252)-319(w)-320(n)1(im)-320(j)1(aki\\261)-319(s)-1(u)1(ro)28(wy)83(,)-319(p)1(ra)28(wie)-1(cz)-1(n)29(y)]TJ 0 -13.549 Td[(g\\252os)-334(j)1(akb)28(y)-333(tej)-333(z)-1(iemie)-334(i)-333(t)28(yc)27(h)-333(l)1(ud)1(z)-1(ki)1(c)27(h)-333(sie)-1(d)1(lisk.)]TJ 27.879 -13.549 Td[(Bun)28(to)28(w)28(a\\252)-334(si\\246)-334(j)1(e)-1(sz)-1(cze)-1(,)-333(ale)-334(j)1(u\\273)-334(s\\252uc)28(ha\\252)-333(c)-1(or)1(az)-334(p)-28(ok)28(or)1(niej.)]TJ 0 -13.55 Td[({)-333(Ju\\261c)-1(i)1(,)-334(\\273e)-334(k)56(a\\273dy)-333(ma)-334(p)1(ra)28(w)27(o)-333(br)1(oni\\242)-333(s)-1(i\\246)-333(prze)-1(d)-332(w)-1(i)1(lk)56(am)-1(i,)-333(k)56(a\\273dy)84(.)]TJ 0 -13.549 Td[(Ch)28(yci\\252y)-285(go)-284(jakie\\261)-285(os)-1(tat)1(nie)-285(\\273a\\252)-1(o\\261cie)-285(i)-285(m)27(y)1(\\261)-1(li)1(,)-285(ki)1(e)-1(j)-284(lut)1(e)-286(k)56(\\241\\261liw)28(e)-286(wic)28(hr)1(y)83(,)-284(o)27(wia\\252y)]TJ -27.879 -13.549 Td[(go)-333(m)-1(r)1(o)-28(c)-1(zn)28(ym)-333(tumanem)-334(p)-27(onosz)-1(\\241c)-333(z)-334(mie)-1(j)1(s)-1(ca.)]TJ 27.879 -13.549 Td[(P)28(or)1(w)27(a\\252)-251(si\\246)-252(n)1(a)-251(nogi)1(,)-251(naostrzy\\252)-251(k)28(os\\246)-252(ose)-1(\\252k)56(\\241,)-251(p)1(rze)-1(\\273e)-1(gn)1(a\\252)-251(s)-1(i\\246,)-251(spl)1(un\\241\\252)-251(w)-251(gar)1(\\261)-1(cie)]TJ -27.879 -13.549 Td[(i)-262(j)1(\\241\\252)-262(s)-1(i)1(\\246)-263(d)1(o)-262(rob)-27(ot)28(y)83(,)-261(w)27(al\\241c)-262(p)-27(ok)28(os)-263(za)-262(p)-27(ok)28(os)-1(em)-263(z)-262(tak)56(\\241)-262(zapami\\246)-1(t)1(a\\252)-1(o\\261ci\\241,)-262(j)1(a\\273)-1(e)-262(\\261)-1(wista\\252o)]TJ 0 -13.549 Td[(p\\252y)1(tkie)-334(ostrze)-334(k)28(osy)-334(i)-333(p)-27(o)-56(j)1(\\246)-1(k)1(iw)27(a\\252y)-333(\\261c)-1(i)1(an)28(y)-333(\\273)-1(yt)1(a.)]TJ 27.879 -13.55 Td[(A)-410(t)28(y)1(m)-1(cz)-1(ase)-1(m)-410(n)1(a)-410(wsi)-410(n)1(as)-1(ta\\252)-410(strasz)-1(n)29(y)-410(cz)-1(as)-410(s\\241du)-409(i)-409(k)55(ar)1(y)83(,)-409(\\273)-1(e)-410(j)1(u\\273)-410(i)-409(nie)-410(op)-27(o-)]TJ -27.879 -13.549 Td[(wiedzie)-1(\\242,)-426(c)-1(o)-426(si\\246)-427(tam)-427(wyr)1(abia\\252o.)-426(Jak)28(ob)29(y)-427(d)1(ur)-426(ogar)1(n\\241\\252)-426(Lip)-27(c)-1(e,)-426(a)-427(l)1(udzie)-427(zgo\\252a)-426(s)-1(i\\246)]TJ 0 -13.549 Td[(p)-27(o)27(w\\261c)-1(i)1(e)-1(k)56(ali,)-455(b)-28(o)-456(co)-456(jeno)-456(b)28(y)1(\\252)-1(o)-456(r)1(oz)-1(w)28(a\\273)-1(n)1(iejsz)-1(e,)-456(p)-27(oz)-1(am)28(yk)56(a\\252)-1(o)-456(si\\246)-456(w)-457(c)28(ha\\252u)1(pac)27(h)-455(lub)]TJ 0 -13.549 Td[(uciek\\252o)-406(n)1(a)-406(p)-27(ola,)-405(za\\261)-406(re)-1(szta,)-406(p)-27(ozbieran)1(a)-406(n)1(ad)-405(s)-1(ta)28(w)28(e)-1(m)-406(w)-405(gromady)-405(i)-406(j)1(akb)28(y)-405(op)1(ita)]TJ 0 -13.549 Td[(z\\252)-1(o\\261ci\\241,)-303(wrz)-1(a\\252a)-303(coraz)-304(zapalczywie)-1(j)-302(jur)1(z)-1(\\241c)-303(s)-1(i\\246)-303(na)28(wz)-1(a)-55(jem)-304(kr)1(z)-1(yk)56(ami,)-303(\\273e)-304(ju)1(\\273)-304(k)56(a\\273)-1(d)1(e)-1(n)]TJ 0 -13.55 Td[(si\\246)-401(wyd)1(z)-1(i)1(e)-1(r)1(a\\252)-1(,)-399(k)56(a\\273)-1(den)-399(p)-28(oms)-1(t)1(o)27(w)28(a\\252,)-400(k)56(a\\273)-1(d)1(e)-1(n)-399(si\\246)-401(sro\\273y\\252)-400(wraz,)-400(cz)-1(yn)1(i\\241c)-400(przera\\271)-1(l)1(iwy)]TJ 0 -13.549 Td[(w)28(ark)28(ot,)-333(p)-27(o)-28(dob)1(ie)-1(n)-333(d)1(alekim)-334(i)-333(gr)1(o\\271)-1(n)28(y)1(m)-334(grzmotom)-1(.)]TJ 27.879 -13.549 Td[(I)-287(w)-287(jaki)1(e)-1(j)1(\\261)-288(min)28(u)1(c)-1(ie)-287(c)-1(a\\252a)-287(wie\\261)-288(r)1(usz)-1(y\\252a)-287(d)1(o)-287(Dom)-1(i)1(nik)28(o)28(w)28(e)-1(j)-286(kieb)28(y)-287(ten)-287(w)28(e)-1(zbran)29(y)83(,)]TJ -27.879 -13.549 Td[(sz)-1(u)1(m)-1(i\\241cy)-488(p)-27(otok,)-487(wie)-1(d)1(\\252a)-488(organ)1(i\\261)-1(cin)1(a)-488(z)-488(w)27(\\363)-55(jto)28(w)27(\\241,)-487(a)-488(za)-488(ni)1(m)-1(i)-487(prze)-1(p)29(yc)27(h)1(a\\252o)-488(s)-1(i)1(\\246)-489(z)]TJ 0 -13.549 Td[(ry)1(kiem)-334(c)-1(a\\252e)-333(roz)-1(j)1(usz)-1(on)1(e)-334(stado.)]TJ 27.879 -13.55 Td[(Wd)1(arli)-462(s)-1(i)1(\\246)-463(do)-462(c)27(ha\\252u)1(p)28(y)-462(kiej)-463(b)1(ur)1(z)-1(a,)-462(ja\\273e)-463(z)-1(ad)1(ygota\\252y)-462(\\261)-1(cian)28(y)84(,)-463(D)1(om)-1(in)1(ik)28(o)28(w)27(a)]TJ -27.879 -13.549 Td[(zas)-1(t\\241)-28(p)1(i\\252a)-490(dr)1(og\\246)-1(,)-490(to)-490(j)1(\\241)-491(strato)28(w)28(ali,)-490(J\\246dr)1(z)-1(yc)28(h)-490(sk)28(o)-28(c)-1(zy\\252)-490(br)1(oni\\242)-490(i)-490(w)-491(o)-28(czym)-1(gn)1(ienie)]TJ 0 -13.549 Td[(zrobi)1(li)-345(z)-346(nim)-345(to)-346(samo,)-345(w)-1(r)1(e)-1(sz)-1(cie)-346(M)1(ate)-1(u)1(s)-1(z)-346(c)28(hcia\\252)-346(i)1(c)27(h)-345(p)-27(o)28(w)-1(strzyma\\242)-346(pr)1(z)-1(ed)-345(k)28(omor\\241)]TJ 0 -13.549 Td[(i)-327(c)28(ho)-28(cia\\273)-327(pr)1(a\\252)-327(dr\\241)-27(gie)-1(m,)-327(c)28(ho)-28(cia\\273)-327(br)1(oni\\252)-327(ca\\252\\241)-327(mo)-28(c)-1(\\241,)-326(ale)-327(nie)-327(wysz)-1(\\252o)-327(i)-326(Z)-1(d)1(ro)28(w)28(a\\261)-1(,)-327(j)1(u\\273)]TJ 0 -13.549 Td[(le\\273)-1(a\\252)-333(k)56(a)-56(j)1(\\261)-334(p)-28(o)-27(d)-333(\\261)-1(cian\\241)-333(z)-334(r)1(oz)-1(b)1(it)28(ym)-334(\\252b)-27(e)-1(m)-333(i)-333(niepr)1(z)-1(ytomn)28(y)84(.)]TJ 27.879 -13.55 Td[(Jagu)1(s)-1(ia)-401(b)28(y\\252a)-401(z)-1(ap)1(a)-1(r)1(ta)-402(w)-401(alkierzu,)-401(a)-402(ki)1(e)-1(j)-401(wyrw)28(ali)-401(dr)1(z)-1(wi,)-401(s)-1(ta\\252a)-401(przytu)1(lona)]TJ -27.879 -13.549 Td[(do)-385(\\261c)-1(i)1(an)28(y)-385(i)-385(ni)1(e)-386(b)1(roni)1(\\252)-1(a)-385(si\\246,)-385(nie)-385(wyda\\252a)-385(na)28(w)28(e)-1(t)-385(g\\252osu,)-385(b)1(lada)-385(b)28(y)1(\\252a)-386(k)1(ie)-1(j)-384(tru)1(p,)-385(a)-385(w)]TJ 0 -13.549 Td[(o)-28(cz)-1(ac)28(h)-333(s)-1(ze)-1(r)1(ok)28(o)-334(r)1(oz)-1(w)28(art)28(yc)28(h)-333(gorza\\252)-1(o)-333(p)-27(on)28(ur)1(e)-334(p\\252omi\\246)-334(gr)1(oz)-1(y)-333(i)-333(\\261m)-1(ierci.)]TJ 27.879 -13.549 Td[(St)1(o)-299(r\\241k)-298(wyc)-1(i)1(\\241)-28(gn\\246\\252o)-299(si\\246)-299(p)-28(o)-298(ni\\241,)-298(s)-1(t)1(o)-299(r\\241k)-298(g\\252o)-28(dn)29(ym)-1(i)1(,)-299(c)28(hciwym)-1(i)-298(pazur)1(am)-1(i)-298(c)27(h)29(y-)]TJ -27.879 -13.549 Td[(ci\\252o)-465(j)1(\\241)-465(ze)-465(w)-1(szys)-1(tk)1(ic)27(h)-464(stron)1(,)-465(wyr)1(w)27(a\\252o)-464(nib)28(y)-464(ki)1(e)-1(rz)-465(p)1(\\252ytk)28(o)-464(w)-1(r)1(o\\261)-1(n)1(i\\246)-1(t)28(y)-464(w)-465(ziem)-1(i)1(\\246)-465(i)]TJ 0 -13.55 Td[(p)-27(o)27(wlek\\252o)-333(w)-334(op)1(\\252otki.)]TJ 27.879 -13.549 Td[({)-333(Zw)-1(i)1(\\241z)-1(a\\242)-334(j)1(\\241,)-333(w)-1(y)1(rwie)-334(si\\246)-334(j)1(e)-1(sz)-1(cz)-1(e)-333(i)-334(u)1(c)-1(i)1(e)-1(kn)1(ie)-334({)-333(rozrz\\241dzi\\252a)-334(w)28(\\363)-56(j)1(to)28(w)27(a.)]TJ 0 -13.549 Td[(Na)-255(dro)-27(dze)-256(s)-1(ta\\252)-255(ju)1(\\273)-256(goto)28(w)-1(y)-255(w)28(\\363z)-1(,)-255(na\\252o\\273on)28(y)-255(\\261)-1(wi\\253)1(s)-1(k)1(im)-256(na)28(w)28(oz)-1(em)-256(p)-27(o)-256(wr\\246b)28(y)-255(de-)]TJ -27.879 -13.549 Td[(se)-1(k)-298(i)-297(z)-1(ap)1(rz)-1(\\246\\273on)28(y)-298(w)27(e)-298(dwie)-298(cz)-1(arn)1(e)-299(k)1(ro)28(wy)83(,)-298(r)1(z)-1(u)1(c)-1(il)1(i)-298(j\\241)-298(n)1(a)-298(gn\\363)-55(j)-298(zw)-1(i)1(\\241z)-1(an)1(\\241)-298(nib)28(y)-297(baran)1(a)]TJ 0 -13.549 Td[(i)-339(r)1(usz)-1(y)1(li)-339(w\\261r\\363)-28(d)-338(piekieln)1(e)-1(go)-339(zam\\246)-1(tu)1(;)-339(u)1(r\\241)-28(gli)1(w)27(e)-339(wyz)-1(wisk)56(a,)-339(\\261m)-1(i)1(e)-1(c)27(h)29(y)-339(i)-338(prze)-1(k)1(le)-1(\\253)1(s)-1(t)28(w)28(a)]TJ 0 -13.549 Td[(p)-27(os)-1(yp)1(a\\252y)-333(s)-1(i\\246)-333(na)-333(ni\\241)-333(kiej)-333(grad)-332(p)-28(o)-333(s)-1(t)1(okro)-28(\\242)-333(z)-1(abi)1(ja)-55(j\\241cy)]TJ 27.879 -13.55 Td[(Ale)-334(p)1(rze)-1(d)-333(k)28(o\\261cio\\252e)-1(m)-334(ca\\252y)-333(p)-28(o)-27(c)27(h\\363)-27(d)-333(pr)1(z)-1(ystan\\241\\252.)]TJ 0 -13.549 Td[({)-343(T)83(r)1(z)-1(a)-343(j)1(\\241)-343(z)-1(ewle)-1(c)-343(d)1(o)-343(naga)-343(i)-342(p)-28(o)-28(d)-342(kr)1(uc)27(h)29(t\\241)-343(wys)-1(i)1(e)-1(c)-343(r\\363zgam)-1(i)1(!)-343({)-343(kr)1(z)-1(yk)1(n\\246\\252)-1(a)-342(Ko-)]TJ -27.879 -13.549 Td[(z\\252)-1(o)28(w)28(a.)]TJ 27.879 -13.549 Td[({)-291(Za)28(wdy)-290(takie)-291(b)1(ili)-290(p)-28(o)-27(d)-291(k)28(o\\261c)-1(i)1(o\\252e)-1(m!)-291(Do)-290(pierwsz)-1(ej)-291(k)1(rwi,)-290(bierzta)-291(j)1(\\241!)-291({)-291(wr)1(z)-1(es)-1(z-)]TJ -27.879 -13.549 Td[(cz)-1(a\\252y)84(.)]TJ 27.879 -13.55 Td[(Na)-308(s)-1(zc)-1(z\\246\\261)-1(cie)-1(,)-308(b)1(rama)-308(s)-1(m\\246)-1(tar)1(z)-1(a)-308(b)28(y)1(\\252)-1(a)-308(za)28(w)27(arta,)-308(za\\261)-309(w)28(e)-309(f)1(urt)1(c)-1(e)-309(sto)-56(j)1(a\\252)-308(Jam)27(b)1(ro\\273)]TJ -27.879 -13.549 Td[(z)-334(p)1(rob)-27(os)-1(zc)-1(zo)28(w)-1(sk)56(\\241)-334(strze)-1(l)1(b\\241)-333(w)-334(r)1(\\246)-1(ku)-333(i)-333(sk)28(oro)-333(s)-1(i)1(\\246)-334(ws)-1(tr)1(z)-1(ymali,)-333(r)1(ykn)1(\\241\\252)-334(z)-334(ca\\252e)-1(j)-333(p)1(iers)-1(i)1(:)]TJ\nET\nendstream\nendobj\n2411 0 obj <<\n/Type /Page\n/Contents 2412 0 R\n/Resources 2410 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2397 0 R\n>> endobj\n2410 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2415 0 obj <<\n/Length 8568      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(757)]TJ -330.353 -35.866 Td[({)-430(Kt)1(o)-430(s)-1(i)1(\\246)-431(p)-27(o)28(w)27(a\\273y)-430(w)28(e)-1(j)1(\\261)-1(\\242)-430(n)1(a)-430(k)28(o\\261)-1(cielne,)-430(zas)-1(t)1(rz)-1(el\\246,)-430(j)1(ak)-430(mi)-430(B\\363g)-430(mi\\252y)83(.)-429(Ubij)1(\\246)]TJ -27.879 -13.549 Td[(jak)-355(psa)-356({)-356(grozi\\252)-356(i)-356(t)1(ak)-356(jak)28(o\\261)-356(s)-1(t)1(ras)-1(zni)1(e)-357(p)1(atrza\\252)-356(gotuj)1(\\241c)-357(b)1(ro\\253)-355(jakb)29(y)-356(do)-355(s)-1(tr)1(z)-1(a\\252u,)-355(\\273)-1(e)]TJ 0 -13.549 Td[(p)-27(oniec)27(h)1(a)27(wsz)-1(y)-333(zam)-1(i)1(aru)-333(ru)1(s)-1(zyli)-333(d)1(ale)-1(j)-332(na)-333(top)-28(ol)1(o)27(w)28(\\241.)]TJ 27.879 -13.549 Td[(Zac)-1(z\\246li)-255(n)1(a)27(w)28(e)-1(t)-254(p)-28(o\\261pi)1(e)-1(sz)-1(a\\242,)-255(gd)1(y\\273)-255(bur)1(z)-1(a)-254(m)-1(og\\252a)-255(wyb)1(uc)27(h)1(n\\241\\242)-255(leda)-255(c)28(h)28(wila,)-254(nieb)-28(o)]TJ -27.879 -13.549 Td[(p)-27(os)-1(\\246pn)1(ia\\252o)-232(coraz)-232(barzej,)-232(wiat)1(e)-1(r)-231(bi\\252)-231(w)-232(top)-28(ol)1(e)-1(,)-231(ja\\273e)-233(si\\246)-232(p)-27(ok\\252ada\\252y)84(,)-232(ku)1(rza)27(w)28(a)-232(zryw)28(a\\252a)]TJ 0 -13.55 Td[(si\\246)-334(sp)-28(o)-28(d)-332(n\\363g)-333(z)-1(asypu)1(j\\241c)-334(o)-27(c)-1(zy)-333(i)-333(s)-1(tr)1(onami)-333(h)28(urk)28(ot)1(a\\252)-1(y)-333(gr)1(z)-1(mot)28(y)83(.)]TJ 27.879 -13.549 Td[({)-473(P)28(ogania)-55(j,)-473(Pi)1(e)-1(tr)1(e)-1(k,)-473(p)1(r\\246)-1(d)1(z)-1(ej)-473({)-474(p)1(rzynagl)1(ali)-473(roz)-1(gl)1(\\241da)-55(j\\241c)-474(si\\246)-474(ni)1(e)-1(sp)-28(ok)28(o)-55(jn)1(ie)]TJ -27.879 -13.549 Td[(p)-27(o)-371(ni)1(e)-1(b)1(ie)-1(,)-370(pr)1(z)-1(y)1(c)-1(ic)28(hli)-370(jak)28(o\\261,)-370(s)-1(zli)-371(b)-27(ez)-1(\\252ad)1(nie)-371(b)-27(ok)56(am)-1(i)-370(dr)1(ogi,)-371(b)-27(o)-371(\\261ro)-27(dkiem)-371(b)28(y\\252)-370(s)-1(r)1(ogi)]TJ 0 -13.549 Td[(pi)1(as)-1(ek,)-431(\\273)-1(e)-432(t)28(yl)1(k)28(o)-432(n)1(ie)-1(k)1(ie)-1(d)1(y)-431(c)-1(o)-431(tam)-432(kt\\363r)1(a\\261)-432(z)-1(a)28(wz)-1(i)1(\\246)-1(tsz)-1(a)-431(dop)1(ad\\252sz)-1(y)-431(w)27(ozu)-431(ul)1(\\273)-1(y\\252a)-431(s)-1(e)]TJ 0 -13.549 Td[(p)-27(okrzyku)1(j\\241c)-334(za)-56(j)1(adle:)]TJ 27.879 -13.549 Td[({)-333(T)27(y)-333(\\261w)-1(i)1(nio!)-333(t)28(y)-333(t\\252umoku)1(!)-333(A)-334(d)1(o)-334(so\\252dat\\363)28(w,)-333(\\252a)-56(jd)1(usie)-334(zap)-27(o)27(wietrzon)28(y!)]TJ 0 -13.55 Td[({)-413(U\\273yw)27(a\\252a\\261,)-413(to)-413(na\\273rej)-413(si\\246)-414(t)1(e)-1(raz)-413(ws)-1(t)28(yd)1(u,)-413(p)-27(osm)-1(ak)1(uj)-413(zgryzot)28(y!)-413({)-413(d)1(ar\\252y)-413(si\\246)]TJ -27.879 -13.549 Td[(nad)-332(ni\\241.)]TJ 27.879 -13.549 Td[(Pi)1(e)-1(tr)1(e)-1(k,)-482(parob)-27(ek)-483(Boryn)1(\\363)27(w,)-483(k)1(t\\363ren)-483(p)-27(o)28(w)27(ozi\\252,)-483(b)-27(o)-483(\\273)-1(ad)1(e)-1(n)-482(dr)1(ugi)-483(n)1(ie)-483(c)27(h)1(c)-1(ia\\252,)]TJ -27.879 -13.549 Td[(sz)-1(ed\\252)-459(przy)-459(w)27(ozie,)-460(smaga\\252)-460(kr)1(o)27(wy)84(,)-459(a)-460(sk)28(oro)-459(jeno)-459(upat)1(rz)-1(y)1(\\252)-460(p)-27(or\\246,)-460(sze)-1(p)1(ta\\252)-460(d)1(o)-460(n)1(ie)-1(j)]TJ 0 -13.549 Td[(lit)1(o\\261)-1(n)1(ie)-1(:)]TJ 27.879 -13.55 Td[({)-333(Ju\\273)-334(n)1(iedalec)-1(zk)28(o...)-333(p)-27(oms)-1(t)28(y)-333(z)-1(a)-333(tak)56(\\241)-333(krzywd\\246...)-333(\\261c)-1(ierp)-27(c)-1(i)1(e)-334(in)1(o...)]TJ 0 -13.549 Td[(Za\\261)-336(Jagu)1(s)-1(ia)-335(w)-335(p)-28(ostron)1(k)56(ac)27(h,)-335(n)1(a)-336(gn)1(o)-56(j)1(u,)-335(zbita)-335(d)1(o)-336(k)1(rwi,)-335(w)-336(p)-27(orw)28(an)28(ym)-335(o)-28(dzie-)]TJ -27.879 -13.549 Td[(ni)1(u,)-378(p)-28(oh)1(a\\253b)1(iona)-378(na)-378(w)-1(i)1(e)-1(ki)1(,)-379(skrzywdzona)-378(p)-28(on)1(ad)-378(c)-1(z\\252o)27(wiec)-1(ze)-379(wyrozumienie)-379(i)-378(ni)1(e)-1(-)]TJ 0 -13.549 Td[(sz)-1(cz)-1(\\246s)-1(n)1(a)-418(p)-28(on)1(ad)-418(wsz)-1(ystk)28(o,)-418(l)1(e)-1(\\273a\\252a)-418(jakb)28(y)-417(ju)1(\\273)-419(n)1(ie)-419(s\\252ysz)-1(\\241c)-418(ni)-418(cz)-1(u)1(j\\241c,)-418(co)-418(s)-1(i\\246)-418(d)1(z)-1(ieje)]TJ 0 -13.549 Td[(dok)28(o\\252a,)-358(t)28(ylk)28(o)-359(\\273yw)28(e)-360(\\252zy)-359(n)1(ieustann)1(\\241)-359(s)-1(tr)1(ug\\241)-359(ciek\\252y)-359(p)-27(o)-359(j)1(e)-1(j)-358(t)28(w)27(ar)1(z)-1(y)-358(p)-28(osin)1(iac)-1(zonej,)-358(a)]TJ 0 -13.55 Td[(ni)1(e)-1(ki)1(e)-1(d)1(y)-333(w)-1(znies\\252)-1(a)-333(si\\246)-334(p)1(ie)-1(r)1(\\261)-334(ni)1(b)28(y)-333(w)-334(t)28(ym)-333(krzyku)-333(sk)55(amieni)1(a\\252)-1(y)1(m)-1(.)]TJ 27.879 -13.549 Td[({)-369(P)1(r\\246)-1(d)1(z)-1(ej,)-368(Pietrek!)-368(pr\\246dze)-1(j)1(!)-369({)-369(w)28(o\\252ali)-369(coraz)-369(cz)-1(\\246\\261)-1(ciej,)-369(r)1(os)-1(\\252a)-369(w)-369(n)1(ic)27(h)-368(b)-28(o)28(wiem)]TJ -27.879 -13.549 Td[(ni)1(e)-1(cierpl)1(iw)27(o\\261\\242)-1(,)-380(jakb)29(y)-381(op)1(am)-1(i\\246tan)1(ie)-1(,)-380(\\273)-1(e)-381(j)1(u\\273)-381(pr)1(a)27(wie)-381(w)-381(d)1(yrd)1(y)-381(d)1(os)-1(i\\246gli)-380(grani)1(c)-1(zn)28(yc)27(h)]TJ 0 -13.549 Td[(k)28(op)-27(c)-1(\\363)28(w)-334(p)-27(o)-28(d)-333(sam)27(y)1(m)-334(lase)-1(m.)]TJ 27.879 -13.549 Td[(P)28(o)-28(d)1(ni)1(e)-1(\\261li)-272(des)-1(k)1(i)-272(w)27(oza)-272(i)-272(wraz)-273(z)-272(gno)-55(jem)-273(j)1(ak)-272(to)-272(\\261)-1(cie)-1(r)1(w)27(o)-272(ob)1(m)-1(i)1(e)-1(rz\\252e)-273(r)1(z)-1(u)1(c)-1(il)1(i,)-272(ja\\273e)]TJ -27.879 -13.55 Td[(zie)-1(mia)-333(p)-27(o)-28(d)-333(ni\\241)-333(j)1(\\246)-1(kn)1(\\246)-1(\\252a,)-333(p)1(ad\\252a)-333(w)-1(znak)-333(i)-333(na)28(w)28(e)-1(t)-333(si\\246)-334(n)1(ie)-334(p)-27(oruszy\\252a.)]TJ 27.879 -13.549 Td[(Dop)1(ad\\252a)-333(jej)-333(w)27(\\363)-55(jto)28(w)27(a)-333(i)-333(k)28(opn)1(\\241)28(w)-1(szy)-334(n)1(og\\241)-333(z)-1(a)28(wrze)-1(sz)-1(cz)-1(a\\252a:)]TJ 0 -13.549 Td[({)-283(A)-284(wr\\363)-28(cisz)-284(do)-283(ws)-1(i,)-283(to)-283(c)-1(i\\246)-283(z)-1(asz)-1(cz)-1(u)1(jem)27(y)-283(psami!)-283({)-284(p)-27(o)-28(dn)1(ies)-1(\\252a)-283(jak)56(\\241\\261)-284(gru)1(d\\246)-284(cz)-1(y)]TJ -27.879 -13.549 Td[(k)56(am)-1(i)1(e)-1(\\253)-333(i)-333(grzmotn\\246\\252a)-334(w)-333(ni\\241)-333(z)-334(ca\\252e)-1(j)-333(si\\252y)-333({)-333(z)-1(a)-333(krzywd\\246)-333(m)-1(oic)28(h)-333(dziec)-1(i!)]TJ 27.879 -13.549 Td[({)-333(Za)-334(wst)27(y)1(d)-333(c)-1(a\\252ej)-333(ws)-1(i!)-333({)-333(bi)1(\\252)-1(a)-333(j)1(\\241)-334(d)1(ruga.)]TJ 0 -13.55 Td[({)-333(B)-1(y)1(\\261)-334(s)-1(cz)-1(ez\\252)-1(a)-333(n)1(a)-334(wieki!)]TJ 0 -13.549 Td[({)-333(B)-1(y)-333(ci\\246)-334(\\261wi\\246)-1(ta)-333(zie)-1(mia)-333(wyrzuci\\252a!)]TJ 0 -13.549 Td[({)-333(B)-1(y)1(\\261)-334(z)-1(d)1(e)-1(c)28(h\\252a)-333(z)-334(g\\252o)-28(du)-333(i)-333(p)1(ragn)1(ie)-1(n)1(ia!)]TJ 0 -13.549 Td[(Bi\\252y)-309(w)-310(ni)1(\\241)-310(g\\252osy)83(,)-309(gru)1(dy)-309(zie)-1(mi,)-309(k)56(am)-1(i)1(e)-1(n)1(ie)-310(i)-309(pr)1(z)-1(ygar)1(\\261)-1(cie)-310(p)1(iac)27(h)28(u)1(,)-309(a)-310(on)1(a)-310(le\\273a\\252)-1(a)]TJ -27.879 -13.549 Td[(kiej)-333(k\\252o)-28(d)1(a,)-333(z)-1(ap)1(atrzona)-333(jeno)-333(w)-334(r)1(oz)-1(k)28(oleban)1(e)-334(nad)-332(s)-1(ob)1(\\241)-334(d)1(rze)-1(w)28(a.)]TJ 27.879 -13.549 Td[(Sp)-27(o)-28(c)28(hm)28(urn)1(ia\\252o)-334(n)1(agle)-334(n)1(a)-334(\\261wiec)-1(ie,)-333(z)-1(acz)-1(\\241\\252)-333(pad)1(a\\242)-334(desz)-1(cz)-334(gru)1(b)28(y)-333(i)-333(rz\\246)-1(sis)-1(t)28(y)84(.)]TJ 0 -13.55 Td[(Pi)1(e)-1(tr)1(e)-1(k)-279(z)-281(w)28(oze)-1(m)-280(co)-1(sik)-279(s)-1(i\\246)-280(zam)-1(ar)1(ud)1(z)-1(i\\252,)-279(\\273)-1(e)-280(j)1(u\\273)-280(nie)-280(cz)-1(ek)56(a)-56(j\\241c)-280(n)1(a)-280(ni)1(e)-1(go)-280(wracali)]TJ -27.879 -13.549 Td[(ku)1(pami,)-290(a)-290(jak)28(o\\261)-290(dziwni)1(e)-291(cic)27(h)1(o,)-290(ale)-290(gdz)-1(i)1(e)-1(\\261)-290(w)-291(p)-27(o\\252o)28(wie)-291(d)1(rogi)-290(sp)-28(ot)1(k)55(ali)-289(Dom)-1(i)1(nik)28(o)28(w)28(\\241,)]TJ 0 -13.549 Td[(sz)-1(\\252a)-323(okrw)28(a)28(w)-1(i)1(ona)-323(w)-324(p)-27(otargan)1(e)-1(j)-322(o)-28(dzie\\273)-1(y)84(,)-323(z)-1(asz)-1(l)1(o)-28(c)27(h)1(ana)-323(i)-323(z)-324(tru)1(dem)-324(maca)-56(j\\241ca)-323(kij)1(e)-1(m)]TJ 0 -13.549 Td[(dr)1(og\\246)-1(,)-333(a)-333(gdy)-333(p)-27(om)-1(i)1(ark)28(o)28(w)27(a\\252a,)-333(kto)-333(j)1(\\241)-334(wymija,)-333(wyb)1(uc)28(hn\\246\\252a)-333(s)-1(tr)1(as)-1(zn)28(ym)-334(g\\252ose)-1(m:)]TJ 27.879 -13.549 Td[({)-484(A)-484(\\273e)-1(b)28(y)-483(w)27(as)-484(m)-1(\\363r)1(!)-484(A)-484(\\273)-1(eb)28(y)-484(w)28(as)-485(zaraza!)-484(A)-484(\\273e)-1(b)28(y)-483(w)27(as)-484(ogie)-1(\\253)-483(i)-484(w)28(o)-28(da)-484(n)1(ie)]TJ -27.879 -13.55 Td[(sz)-1(cz)-1(\\246dzi\\252y!)]TJ 27.879 -13.549 Td[(Ka\\273den)-333(jeno)-333(g\\252o)28(w)27(\\246)-334(wtu)1(li\\252)-333(w)-334(ramion)1(a)-334(i)-333(u)1(c)-1(i)1(e)-1(k)56(a\\252)-334(ze)-1(strac)28(han)28(y)84(.)]TJ\nET\nendstream\nendobj\n2414 0 obj <<\n/Type /Page\n/Contents 2415 0 R\n/Resources 2413 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2416 0 R\n>> endobj\n2413 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2419 0 obj <<\n/Length 9622      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(758)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -265.049 -35.866 Td[(A)-333(ona)-333(wie)-1(l)1(kimi)-333(krok)56(am)-1(i)-333(p)-27(obi)1(e)-1(g\\252a)-333(na)-333(ratu)1(nek)-333(Jagusi.)]TJ 0 -13.549 Td[(Burza)-337(r)1(oz)-1(sro\\273y\\252a)-337(si\\246)-337(j)1(u\\273)-337(n)1(a)-337(dob)1(re,)-337(n)1(ieb)-28(o)-336(p)-28(osin)1(ia\\252o)-337(ki)1(e)-1(j)-336(w)28(\\241trob)1(a,)-337(ku)1(rz)-337(za-)]TJ -27.879 -13.549 Td[(k)28(ot\\252o)28(w)27(a\\252)-365(wielgac)27(h)1(n)28(ymi)-365(k\\252\\246bami,)-365(top)-27(ole)-365(z)-366(j)1(akim\\261)-366(sz)-1(l)1(o)-28(c)27(h)1(aniem)-366(i)-364(krzykiem)-365(przy-)]TJ 0 -13.549 Td[(gin)1(a\\252y)-353(s)-1(i\\246)-353(do)-353(zie)-1(mi,)-353(za)28(wy\\252y)-353(w)-1(i)1(atry)-353(i)-353(j)1(\\246)-1(\\252y)-353(coraz)-353(z)-1(ap)1(am)-1(i\\246talej)-353(w)28(ali\\242)-353(s)-1(i\\246)-353(na)-353(zb)-28(o\\273a)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(z)-1(c)27(h)1(a)-56(j)1(\\241c)-1(e)-444(w)28(e)-444(ws)-1(zys)-1(t)1(kie)-444(s)-1(t)1(ron)28(y)-443(i)-444(r)1(yc)-1(z\\241c)-444(kiej)-443(b)28(yki)-443(zjuszone,)-444(r)1(ypn)1(\\246)-1(\\252y)-443(w)-444(lasy)]TJ 0 -13.55 Td[(zw)27(art)1(e)-1(,)-333(rozc)27(h)28(y)1(b)-28(otan)1(e)-334(i)-333(wnieb)-27(og\\252)-1(osy)-333(s)-1(zumi\\241ce)-1(.)]TJ 27.879 -13.549 Td[(Gr)1(z)-1(mot)28(y)-285(j)1(u\\273)-285(sz\\252)-1(y)-284(za)-285(gr)1(z)-1(motam)-1(i)-284(p)1(rze)-1(w)28(ala)-56(j)1(\\241c)-285(s)-1(i)1(\\246)-285(z)-285(h)28(ur)1(k)28(ote)-1(m)-284(w)-1(skro\\261)-285(ca\\252e)-1(go)]TJ -27.879 -13.549 Td[(\\261w)-1(i)1(ata,)-333(ja\\273e)-334(z)-1(i)1(e)-1(mia)-333(dygota\\252a)-333(i)-333(c)27(h)1(a\\252)-1(u)1(p)28(y)-333(si\\246)-334(trz\\246s)-1(\\252y)83(.)]TJ 27.879 -13.549 Td[(Zwite)-223(k)28(o\\252tu)1(n)28(y)-222(mie)-1(d)1(z)-1(i)1(anogran)1(ato)28(w)-1(y)1(c)27(h)-222(c)28(hm)27(u)1(r)-222(zw)-1(i)1(e)-1(si\\252y)-222(nisk)28(o)-222(s)-1(p)-27(\\246)-1(cznia\\252e)-223(op)1(u-)]TJ -27.879 -13.549 Td[(c)27(h)1(\\252e)-428(k)56(a\\252du)1(n)28(y)-427(i)-427(c)-1(or)1(az)-428(to)-427(kt\\363ra\\261)-427(s)-1(i)1(\\246)-428(rozp)-28(\\246k\\252a,)-427(trzask)55(a\\252)-427(pi)1(e)-1(r)1(un)-427(i)-427(b)1(uc)27(h)1(a\\252y)-427(p)-28(otok)1(i)]TJ 0 -13.549 Td[(o\\261le)-1(p)1(ia)-56(j)1(\\241c)-1(ej)-333(j)1(as)-1(n)1(o\\261)-1(ci.)]TJ 27.879 -13.55 Td[(Niekiedy)-333(sypa\\252)-333(rzadki)-333(gr)1(ad)-333(trze)-1(sz)-1(cz)-1(\\241c)-333(p)-28(o)-333(li\\261ciac)27(h)-333(i)-333(ga\\252\\246)-1(ziac)28(h.)]TJ 0 -13.549 Td[(A)-387(w)-387(sinej)-386(\\242)-1(mie)-387(dn)1(ia,)-387(k)1(urza)28(wy)-387(i)-387(gr)1(ad\\363)28(w)-387(targa\\252y)-386(s)-1(i\\246)-387(r)1(oz)-1(p)1(ac)-1(zliwie)-387(dr)1(z)-1(ew)27(a,)]TJ -27.879 -13.549 Td[(kr)1(z)-1(aki)-307(i)-307(z)-1(b)-27(o\\273)-1(a)-307(jakb)29(y)-308(rwi\\241c)-308(si\\246)-308(d)1(o)-308(uciec)-1(zki,)-307(ale)-308(bi)1(te)-308(w)-1(i)1(c)27(h)28(u)1(r\\241)-308(ze)-308(ws)-1(zystkic)27(h)-307(stron)1(,)]TJ 0 -13.549 Td[(\\261le)-1(p)1(ione)-389(p)1(ioru)1(nami,)-389(ob)1(\\252\\241k)55(an)1(e)-389(h)28(uki)1(e)-1(m,)-389(k)1(r\\246)-1(ci\\252y)-388(s)-1(i\\246)-389(jeno)-388(i)-389(sz)-1(ar)1(pa\\252y)-389(z)-389(dziki)1(m)-389(p)-28(o-)]TJ 0 -13.549 Td[(\\261w)-1(i)1(s)-1(tem)-1(,)-269(a)-270(k)56(a)-55(j\\261)-270(z)-270(wysok)55(a,)-269(pr)1(z)-1(ez)-270(c)27(hm)28(ur)1(y)83(,)-269(c)-1(i)1(e)-1(mnic\\246)-270(i)-269(roz)-1(wiej\\246)-270(p)1(rze)-1(l)1(at)27(y)1(w)27(a\\252y)-269(m)-1(o)-27(dre)]TJ 0 -13.55 Td[(\\252ysk)55(a)28(wice)-1(,)-415(lec)-1(i)1(a\\252)-1(y)-415(n)1(ib)28(y)-415(s)-1(t)1(ado)-415(w)27(\\246\\273)-1(\\363)28(w)-416(ogn)1(is)-1(t)28(y)1(c)27(h,)-415(lec)-1(i)1(a\\252y)-416(wyr)1(w)27(an)1(e)-416(s)-1(k)56(\\241d\\261ci\\261)-416(i)-415(nie)]TJ 0 -13.549 Td[(wiadomo)-281(k)56(a)-56(j)-280(c)-1(isk)56(ane,)-281(lec)-1(ia\\252y)-281(migotl)1(iw)27(e)-281(a)-281(z)-1(agu)1(bion)1(e)-1(,)-280(o\\261)-1(lepi)1(a)-56(j\\241ce)-281(w)-1(sz)-1(y)1(s)-1(tek)-281(\\261w)-1(i)1(at,)]TJ 0 -13.549 Td[(a)-308(\\261)-1(l)1(e)-1(p)-27(e)-309(i)-307(niem)-1(e)-308(kiej)-308(d)1(ola)-308(c)-1(z\\252o)28(w)-1(i)1(e)-1(k)28(o)28(w)28(a.)-308(I)-308(trw)27(a\\252o)-308(tak)-307(z)-309(pr)1(z)-1(erw)28(am)-1(i)-307(do)-308(sam)-1(ego)-308(w)-1(i)1(e)-1(-)]TJ 0 -13.549 Td[(cz)-1(ora,)-327(d)1(opiero)-327(na)-327(s)-1(am)28(ym)-328(zm)-1(i)1(e)-1(r)1(z)-1(c)27(h)29(u)-327(c)-1(a\\252kiem)-328(si\\246)-328(u)1(s)-1(p)-27(ok)28(oi\\252o)-328(i)-327(p)1(rzys)-1(z\\252a)-328(n)1(o)-28(c)-328(cic)27(h)1(a,)]TJ 0 -13.549 Td[(cie)-1(mna)-333(i)-333(c)27(h)1(\\252o)-28(dn)1(a)28(w)27(a.)]TJ 27.879 -13.55 Td[(A)-480(naza)-56(j)1(utrz)-480(dz)-1(i)1(e)-1(\\253)-480(p)-27(o)-28(d)1(ni\\363s\\252)-481(si\\246)-481(bar)1(dzo)-481(cud)1(n)28(y)83(,)-480(n)1(ie)-1(b)-27(o)-480(b)28(y\\252o)-481(b)-27(ez)-481(c)27(hm)28(ur)-480(i)]TJ -27.879 -13.549 Td[(mo)-28(dr)1(z)-1(a\\252o)-345(k)1(ie)-1(j)-344(op)1(\\252uk)56(ane,)-345(ziem)-1(i)1(a)-345(p)-27(ol\\261)-1(n)1(iew)27(a\\252a)-345(r)1(os)-1(ami,)-344(\\261)-1(p)1(ie)-1(w)28(a\\252y)-345(r)1(ado\\261nie)-345(p)1(taki,)-344(a)]TJ 0 -13.549 Td[(ws)-1(ze)-1(l)1(aki)-333(s)-1(t)28(w)28(\\363r)-333(p\\252a)28(wi\\252)-334(si\\246)-334(z)-333(lub)-27(o\\261)-1(ci\\241)-333(w)-334(r)1(z)-1(e\\271)-1(wym,)-333(pac)28(hn\\241cym)-333(p)-28(o)28(wietrzu.)]TJ 27.879 -13.549 Td[(Za\\261)-287(w)-286(Lip)-27(cac)27(h)-286(wr\\363)-27(c)-1(i\\252o)-286(wsz)-1(ystk)28(o)-286(do)-286(d)1(a)28(w)-1(n)1(e)-1(go,)-285(ale)-287(sk)28(oro)-286(j)1(e)-1(n)1(o)-286(s)-1(\\252o\\253ce)-286(w)-1(y)1(nie-)]TJ -27.879 -13.549 Td[(s\\252)-1(o)-335(s)-1(i\\246)-336(n)1(a)-336(par)1(\\246)-337(c)28(h\\252opa,)-335(to)-336(j)1(akb)28(y)-336(zm\\363)27(wieni)-335(ws)-1(zys)-1(cy)-336(zacz)-1(\\246li)-336(wyc)28(ho)-28(d)1(z)-1(i\\242)-336(d)1(o)-336(\\273)-1(n)1(iw)28(a,)]TJ 0 -13.55 Td[(\\273e)-320(an)1(o)-319(z)-320(k)56(a\\273dej)-319(c)28(ha\\252up)29(y)-319(ru)1(s)-1(zali)-319(ca\\252\\241)-319(gromad\\241,)-318(z)-320(k)56(a\\273dej)-319(c)27(h)1(a\\252up)28(y)-318(b\\252ysk)56(a\\252)-1(y)-318(s)-1(i)1(e)-1(rp)29(y)]TJ 0 -13.549 Td[(i)-333(k)28(os)-1(y)84(,)-333(z)-334(k)56(a\\273)-1(d)1(e)-1(go)-333(ob)-27(e)-1(j)1(\\261)-1(cia)-333(w)-1(y)1(tac)-1(za\\252y)-333(s)-1(i\\246)-333(w)27(ozy)-333(na)-333(m)-1(i)1(e)-1(d)1(z)-1(e)-334(i)-333(p)-27(oln)1(e)-334(dr)1(o\\273)-1(yn)29(y)83(.)]TJ 27.879 -13.549 Td[(A)-364(kiej)-364(sygn)1(aturk)56(a)-364(za\\261)-1(wiegota\\252a)-364(na)-364(k)28(o\\261c)-1(iele,)-364(ju)1(\\273)-365(k)56(a\\273)-1(d)1(e)-1(n)-363(s)-1(t)1(o)-56(ja\\252)-364(goto)28(wy)-364(na)]TJ -27.879 -13.549 Td[(sw)27(oim)-450(zagonie)-450(i)-450(p)-27(os)-1(\\252y)1(s)-1(za)27(wsz)-1(y)-449(dzw)27(on)1(ie)-1(n)1(ie,)-450(a)-450(jak)-449(p)-28(on)1(iekt\\363rzy)-450(n)1(a)-450(c)-1(o)-450(b)1(li\\273s)-1(zyc)27(h)]TJ 0 -13.549 Td[(p)-27(olac)27(h)-427(i)-427(prze)-1(j)1(m)27(u)1(j\\241ce)-428(grani)1(e)-429(or)1(gan\\363)28(w,)-428(j)1(\\246)-1(l)1(i)-428(o)-28(d)1(m)-1(a)28(wia\\242)-428(pacierze)-1(,)-427(kto)-428(p)1(rzykl\\246k)56(a\\252,)]TJ 0 -13.55 Td[(kto)-364(n)1(a)28(w)27(et)-364(m)-1(o)-27(dli\\252)-364(si\\246)-364(w)-365(g\\252os,)-364(kto)-364(j)1(e)-1(n)1(o)-364(w)-1(zdy)1(c)27(ha\\252)-364(p)-27(ob)-28(o\\273ni)1(e)-365(n)1(abiera)-55(j\\241c)-364(przy)-364(t)28(ym)]TJ 0 -13.549 Td[(tc)27(h)29(u)-278(i)-277(mo)-28(c)-1(y)84(,)-278(a)-277(k)55(a\\273den)-277(s)-1(i)1(\\246)-279(\\273e)-1(gn)1(a\\252,)-278(w)-278(gar)1(\\261)-1(cie)-278(s)-1(p)1(lu)28(w)28(a\\252,)-278(n)1(ogam)-1(i)-277(krze)-1(p)1(k)28(o)-278(w)-278(zagon)-277(s)-1(i\\246)]TJ 0 -13.549 Td[(wpiera\\252,)-318(pr)1(z)-1(ygi)1(na\\252)-319(grzbi)1(e)-1(t)-318(i)-319(\\273arli)1(w)-1(i)1(e)-320(i)1(m)-1(a)-55(j\\241c)-319(si\\246)-319(s)-1(i)1(e)-1(rp)1(a)-319(cz)-1(y)-318(k)28(os)-1(y)-318(z)-1(aczyna\\252)-319(r)1(z)-1(n)1(\\241\\242)-319(i)]TJ 0 -13.549 Td[(k)28(osi\\242)-1(.)]TJ 27.879 -13.549 Td[(Wielk)56(a,)-364(u)1(ro)-28(czys)-1(ta.)-363(c)-1(i)1(c)27(ho\\261\\242)-364(przej\\246\\252)-1(a)-363(\\273)-1(n)1(iwne)-364(p)-27(ola,)-364(zrob)1(i\\252o)-364(s)-1(i)1(\\246)-365(j)1(akb)28(y)-363(\\261)-1(wi\\246te)]TJ -27.879 -13.549 Td[(nab)-27(o\\273e)-1(\\253)1(s)-1(t)28(w)28(o)-334(zno)-55(jn)1(e)-1(j)1(,)-334(n)1(ieustann)1(e)-1(j)-333(i)-333(o)28(w)28(o)-28(c)-1(n)1(e)-1(j)-333(p)1(racy)83(.)]TJ 27.879 -13.55 Td[(S\\252o\\253)1(c)-1(e)-245(p)-27(o)-28(d)1(nosi\\252o)-245(si\\246)-245(c)-1(or)1(az)-245(w)-1(y)1(\\273)-1(ej,)-244(s)-1(k)1(w)27(ar)-244(wz)-1(maga\\252)-245(si\\246)-245(z)-245(go)-28(dzin)28(y)-244(na)-244(go)-28(dzin)1(\\246)-1(,)]TJ -27.879 -13.549 Td[(ogni)1(s)-1(te)-292(bl)1(as)-1(ki)-291(z)-1(al)1(e)-1(w)28(a\\252y)-292(p)-27(ola)-292(i)-292(\\273ni)1(w)-1(n)29(y)-292(d)1(z)-1(ie\\253)-292(p)-27(oto)-28(czy\\252)-292(s)-1(i)1(\\246)-293(k)1(ie)-1(j)-291(to)-292(p)1(s)-1(ze)-1(n)1(icz)-1(n)1(e)-293(z\\252oto)]TJ 0 -13.549 Td[(i)-333(dzw)27(on)1(i\\252)-333(kiej)-333(z)-1(\\252otem)-334(ci\\246)-1(\\273kim,)-333(\\271ra\\252ym)-334(ziarn)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Wie\\261)-261(osta\\252a)-260(pu)1(s)-1(ta)-260(i)-260(j)1(akb)28(y)-260(wymarta,)-260(c)27(h)1(a\\252up)28(y)-259(b)28(y\\252y)-260(p)-27(oz)-1(a)28(wie)-1(r)1(ane,)-260(ba)-260(ws)-1(zyst-)]TJ -27.879 -13.549 Td[(k)28(o,)-259(c)-1(o)-259(jeno)-259(\\273)-1(y\\252o)-259(i)-260(mog\\252o)-260(si\\246)-260(d\\271wign\\241\\242)-260(z)-260(miejsc)-1(a,)-259(ru)1(s)-1(za\\252o)-260(d)1(o)-260(\\273niw,)-259(\\273)-1(e)-260(n)1(a)27(w)28(et)-260(d)1(z)-1(iec)-1(i)1(,)]TJ 0 -13.55 Td[(na)28(w)28(e)-1(t)-319(stare)-320(i)-319(sc)27(hor)1(z)-1(a\\252e,)-319(na)28(w)27(et)-319(pies)-1(k)1(i)-320(r)1(w)27(a\\252y)-319(si\\246)-320(z)-320(p)-27(os)-1(t)1(ronk)28(\\363)28(w)-320(i)-319(ci\\241)-28(gn)1(\\246)-1(\\252y)-319(o)-28(d)-319(op)1(u-)]TJ 0 -13.549 Td[(stos)-1(za\\252yc)27(h)-333(d)1(om)-1(ost)28(w)-334(za)-334(n)1(aro)-28(d)1(e)-1(m.)]TJ\nET\nendstream\nendobj\n2418 0 obj <<\n/Type /Page\n/Contents 2419 0 R\n/Resources 2417 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2416 0 R\n>> endobj\n2417 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2422 0 obj <<\n/Length 9909      \n>>\nstream\n1 0 0 1 446.172 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(759)]TJ -330.353 -35.866 Td[(\\233e)-267(j)1(u\\273)-266(na)-266(ws)-1(zystkic)27(h)-265(p)-28(ol)1(ac)27(h,)-265(jak)-266(jeno)-266(b)29(y\\252o)-266(m)-1(o\\273na)-266(si\\246)-1(gn)1(\\241\\242)-267(oki)1(e)-1(m,)-266(w)-266(s)-1(tr)1(as)-1(z-)]TJ -27.879 -13.549 Td[(liwym)-309(skw)28(arz)-1(e,)-309(w\\261r\\363)-28(d)-308(z)-1(b)-27(\\363\\273)-309(z)-1(\\252ota)28(wyc)27(h)1(,)-309(w)-309(rozmigotan)28(ym)-309(i)-308(\\261)-1(lepi)1(\\241c)-1(ym)-309(p)-27(o)28(w)-1(i)1(e)-1(tr)1(z)-1(u)1(,)]TJ 0 -13.549 Td[(o)-28(d)-369(\\261)-1(witu)-369(do)-370(p)-28(\\363\\271nego)-370(wie)-1(czora)-370(p)-28(o\\252y)1(s)-1(ki)1(w)27(a\\252y)-370(sie)-1(r)1(p)28(y)-370(i)-370(k)28(osy)83(,)-370(b)1(iela\\252y)-370(k)28(os)-1(zul)1(e)-1(,)-370(cz)-1(er-)]TJ 0 -13.549 Td[(wienia\\252y)-280(w)27(e\\252niak)1(i,)-280(gm)-1(erali)-280(si\\246)-281(ni)1(e)-1(stru)1(dze)-1(n)1(ie)-281(lu)1(dzie)-281(i)-280(s)-1(z\\252a)-281(cic)27(h)1(a,)-280(w)-1(y)1(t\\246)-1(\\273ona)-280(rob)-27(ota)]TJ 0 -13.549 Td[(i)-315(nik)1(to)-316(si\\246)-316(j)1(u\\273)-316(n)1(ie)-316(leni)1(\\252)-1(,)-315(n)1(a)-316(som)-1(siad)1(\\363)27(w)-315(nie)-315(ogl\\241da\\252,)-315(o)-315(nicz)-1(y)1(m)-316(dr)1(ugim)-316(n)1(ie)-316(m)28(y\\261la\\252,)]TJ 0 -13.55 Td[(a)-333(jeno)-333(pr)1(z)-1(ygi\\246t)28(y)-333(nad)-333(zagonem)-334(ki)1(e)-1(j)-333(w)28(\\363\\252,)-333(w)-334(p)-27(o)-28(c)-1(i)1(e)-334(c)-1(zo\\252a)-333(praco)28(w)27(a\\252.)]TJ 27.879 -13.549 Td[(T)28(ylk)28(o)-438(jedn)1(e)-439(p)-27(ola)-438(Domini)1(k)28(o)27(w)28(ej)-438(sto)-56(ja\\252y)-437(opusz)-1(czone)-438(i)-438(jakb)29(y)-438(z)-1(ap)-27(omnian)1(e)-1(;)]TJ -27.879 -13.549 Td[(ziarn)1(o)-283(si\\246)-283(ju)1(\\273)-283(s)-1(yp)1(a\\252o)-283(z)-283(k\\252os\\363)28(w)-1(,)-282(zb)-28(o\\273a)-283(md)1(la\\252y)-283(o)-27(d)-283(suszy)83(,)-282(a)-283(n)1(ikto)-282(s)-1(i\\246)-283(t)1(am)-283(na)28(w)27(et)-282(nie)]TJ 0 -13.549 Td[(p)-27(ok)55(aza\\252,)-349(z)-350(l)1(\\246)-1(kl)1(iwym)-350(sm)27(u)1(tkiem)-349(o)-28(dwracano)-349(o)-27(d)-349(ni)1(c)27(h)-349(o)-28(czy)83(,)-349(n)1(ie)-1(j)1(e)-1(d)1(e)-1(n)-348(ju)1(\\273)-350(wzdyc)28(ha\\252)]TJ 0 -13.549 Td[(nad)-348(ni)1(m)-1(i,)-348(niejeden)-348(drap)1(a\\252)-349(s)-1(i)1(\\246)-350(f)1(ras)-1(ob)1(liwie,)-349(ogl\\241d)1(a\\252)-349(trw)28(o\\273)-1(n)1(ie)-349(na)-349(d)1(rugi)1(c)27(h)-348(i)-349(p)-27(ote)-1(m)]TJ 0 -13.549 Td[(jesz)-1(cz)-1(e)-371(s)-1(kw)28(apn)1(iej)-371(pr)1(z)-1(yp)1(in)1(a\\252)-372(si\\246)-372(d)1(o)-371(rob)-27(ot)28(y)83(,)-371(n)1(ie)-372(p)-27(ora)-371(b)28(y)1(\\252a)-372(d)1(e)-1(l)1(ib)-27(e)-1(ro)28(w)28(a\\242)-372(n)1(ad)-371(tak)56(\\241)]TJ 0 -13.55 Td[(marnacj\\241)-333(i)-333(up)1(adki)1(e)-1(m.)]TJ 27.879 -13.549 Td[(Alb)-27(o)28(w)-1(i)1(e)-1(m)-298(te)-299(\\273niwne)-298(dn)1(ie)-299(to)-27(c)-1(zy\\252y)-298(s)-1(i\\246)-298(ju)1(\\273)-299(kiej)-298(k)28(o\\252a)-298(rozm)-1(i)1(gotane)-299(z\\252o)-28(cis)-1(t)28(y)1(m)-1(i)]TJ -27.879 -13.549 Td[(sz)-1(p)1(ryc)27(h)1(ami)-326(s)-1(\\252o\\253)1(c)-1(a)-326(i)-325(prze)-1(c)28(ho)-28(d)1(z)-1(i)1(\\252y)-326(jedn)1(e)-327(za)-326(dr)1(ugimi,)-325(a)-326(c)-1(or)1(az)-327(c)28(h)28(yb)-27(c)-1(iej,)-325(i)-326(zar\\363)28(w)-1(n)1(o)]TJ 0 -13.549 Td[(zno)-56(j)1(ne,)-333(i)-333(z)-1(ar\\363)28(wno)-333(ci\\246)-1(\\273kim)-333(a)-334(r)1(adosn)28(ym)-333(trud)1(om)-334(o)-28(d)1(dan)1(e)-1(.)]TJ 27.879 -13.549 Td[(A)-311(wkr\\363tce)-312(p)-27(o)-311(p)1(aru)-311(d)1(niac)28(h,)-311(\\273e)-312(czas)-312(b)28(y\\252)-311(wyb)1(ran)28(y)-311(i)-310(p)-28(ogo)-27(dy)-311(ci\\246)-1(gi)1(e)-1(m)-311(dop)1(isy-)]TJ -27.879 -13.55 Td[(w)28(a\\252)-1(y)84(,)-263(to)-262(w)-1(zi\\246li)-263(p)-27(o\\273)-1(\\246te)-263(z)-1(b)-27(o\\273)-1(a)-262(w)-1(i)1(\\241z)-1(a\\242)-263(w)-263(grub)1(ac)27(h)1(ne)-263(s)-1(n)1(op)28(y)84(,)-263(usta)28(wia\\242)-264(j)1(e)-263(na)-263(zagonac)27(h)]TJ 0 -13.549 Td[(me)-1(n)1(dlami,)-333(a)-333(z)-334(w)27(ol)1(na)-333(pr)1(z)-1(ew)27(ozi\\242)-334(d)1(o)-334(Li)1(piec)-1(.)]TJ 27.879 -13.549 Td[(\\233e)-392(j)1(u\\273)-391(b)-28(ez)-392(p)1(rze)-1(r)1(w)-1(y)-390(to)-28(c)-1(zy\\252y)-391(si\\246)-392(ci\\246\\273)-1(k)1(ie)-1(,)-391(n)1(as)-1(t)1(ros)-1(zone)-391(w)27(ozy;)-391(t)1(o)-28(c)-1(zy\\252y)-391(si\\246)-392(ze)]TJ -27.879 -13.549 Td[(ws)-1(zystkic)28(h)-233(p)-28(\\363l)1(,)-233(w)-1(sz)-1(y)1(s)-1(tk)1(im)-1(i)-233(d)1(ro\\273ynami)-233(i)-233(d)1(o)-234(wsz)-1(ystkic)28(h)-233(na)-233(\\261c)-1(i)1(e)-1(\\273a)-56(j)-233(p)-27(o)28(wywie)-1(r)1(an)28(yc)27(h)]TJ 0 -13.549 Td[(sto)-28(d\\363\\252,)-280(j)1(ak)28(ob)28(y)-280(syp)1(kim)-280(z)-1(\\252otem)-281(n)1(abr)1(ane)-280(fale)-280(rozla\\252y)-280(si\\246)-280(p)-28(o)-280(d)1(rogac)27(h)1(,)-280(p)-27(o)-28(dw)28(orcac)27(h)-279(i)]TJ 0 -13.55 Td[(klepi)1(s)-1(k)56(ac)27(h)1(,)-242(trz\\246)-1(s\\252y)-242(si\\246)-243(n)1(a)28(w)27(et)-242(nad)-241(s)-1(ta)28(w,)-242(na)28(w)28(e)-1(t)-242(u)-241(drzew)-243(n)1(ad)-242(d)1(rogami)-242(w)-1(i)1(s)-1(ia\\252y)-241(z)-1(\\252ote,)]TJ 0 -13.549 Td[(s\\252)-1(omian)1(e)-332(b)1(ro)-28(d)1(y)83(,)-331(a)-331(wsz)-1(y)1(s)-1(tek)-331(\\261w)-1(i)1(a)-1(t)-330(roz)-1(p)1(ac)27(h)1(nia\\252)-331(si\\246)-331(przywi\\246d\\252\\241)-331(s)-1(\\252om\\241,)-331(tr)1(a)27(w)28(ami)-331(a)]TJ 0 -13.549 Td[(m\\252o)-28(dym)-333(z)-1(iar)1(nem)-1(.)]TJ 27.879 -13.549 Td[(Ju)1(\\273)-250(gdzie)-1(n)1(iegdzie)-250(p)-27(o)-250(sto)-28(d)1(o\\252)-1(ac)28(h)-249(bi\\252y)-249(ce)-1(p)28(y)84(,)-249(s)-1(p)1(ies)-1(znie)-250(m\\252\\363)-28(c\\241c)-1(e)-250(n)1(a)-249(c)27(hl)1(e)-1(b)1(.)-250(A)-249(na)]TJ -27.879 -13.549 Td[(pr)1(z)-1(es)-1(t)1(ronn)28(y)1(c)27(h,)-275(pu)1(s)-1(tosz)-1(ej\\241cyc)28(h)-276(p)-27(olac)27(h)1(,)-276(na)-275(z)-1(\\252ota)28(wyc)27(h)-275(r\\273ys)-1(k)56(ac)27(h)1(,)-276(stada)-276(g\\246s)-1(i)-275(b)-28(ob)1(ro-)]TJ 0 -13.55 Td[(w)28(a\\252)-1(y)-373(c)27(h)1(c)-1(iwie)-374(za)-374(k\\252os)-1(ami,)-373(pas\\252)-1(y)-373(s)-1(i)1(\\246)-375(ca\\252e)-375(zgon)28(y)-373(o)27(wiec)-374(i)-374(kr\\363)28(w,)-374(k)56(a)-55(j)-374(n)1(ie)-1(k)56(a)-55(j)-374(d)1(ymi\\252y)]TJ 0 -13.549 Td[(pi)1(e)-1(r)1(w)-1(sz)-1(e)-429(ognie,)-429(a)-430(j)1(u\\273)-430(p)-27(o)-429(c)-1(a\\252yc)28(h)-429(dn)1(iac)27(h)-429(r)1(oz)-1(g\\252asz)-1(a\\252y)-429(s)-1(i)1(\\246)-430(dzieusz)-1(yn)1(e)-430(p)1(rz)-1(y)1(\\261)-1(p)1(ie)-1(w-)]TJ 0 -13.549 Td[(ki,)-396(w)-1(r)1(z)-1(aski)-397(rad)1(os)-1(n)1(e)-1(,)-397(n)1(a)28(w)27(o\\252yw)28(ani)1(a,)-397(tur)1(k)28(ot)27(y)-397(w)28(oz\\363)27(w)-397(i)-397(j)1(a\\261)-1(n)1(ia\\252y)-397(opalon)1(e)-1(,)-396(s)-1(zc)-1(z\\246)-1(sne)]TJ 0 -13.549 Td[(t)28(w)27(ar)1(z)-1(e)-333(lud)1(z)-1(i.)]TJ 27.879 -13.549 Td[(I)-345(ni)1(e)-346(p)-27(o\\252o\\273)-1(yl)1(i)-345(jes)-1(zcz)-1(e)-345(\\273)-1(yt)1(a,)-345(to)-345(ju)1(\\273)-346(p)-27(o)-345(g\\363rk)56(ac)28(h)-345(o)28(ws)-1(y)-345(sk)56(am)-1(l)1(a\\252)-1(y)-344(s)-1(i\\246)-345(o)-345(k)28(osy)83(,)-345(a)]TJ -27.879 -13.55 Td[(j\\246cz)-1(miona)-264(d)1(o)-56(j)1(rze)-1(w)28(a\\252y)-264(pra)28(wie)-264(na)-264(o)-28(cz)-1(ac)28(h,)-264(a)-264(p)1(s)-1(ze)-1(n)1(ice)-265(coraz)-265(z\\252o)-28(ci\\261)-1(ciej)-264(rd)1(z)-1(a)28(wia\\252y)84(,)-264(\\273)-1(e)]TJ 0 -13.549 Td[(ni)1(e)-264(b)28(y)1(\\252)-1(o)-263(czas)-1(u)-262(o)-28(dzipn)1(\\241\\242)-264(n)1(i)-263(na)28(w)28(e)-1(t)-263(p)-27(o)-28(d)1(je\\261)-1(\\242)-263(jak)28(o)-263(tak)28(o,)-263(al)1(e)-264(mimo)-263(te)-1(j)-262(c)-1(i)1(\\246)-1(\\273kiej)-263(p)1(rac)-1(y)-262(i)]TJ 0 -13.549 Td[(taki)1(e)-1(go)-292(utr)1(udzenia,)-292(i\\273)-293(n)1(iejeden)-292(z)-1(asypi)1(a\\252)-293(n)1(ad)-292(m)-1(isk)56(\\241)-293(wiec)-1(zorami,)-292(kiej)-292(p)-27(o\\261)-1(ci\\241)-28(gali)-292(z)]TJ 0 -13.549 Td[(p)-27(\\363l,)-270(Lip)-27(ce)-271(j)1(a\\273)-1(e)-270(s)-1(i)1(\\246)-271(tr)1(z)-1(\\246s)-1(\\252y)-269(o)-28(d)-270(wrza)28(wy)-270(rad)1(os)-1(n)1(e)-1(j)1(,)-270(\\261m)-1(iec)27(h)1(\\363)27(w,)-269(roz)-1(p)-27(o)28(wiada\\253)1(,)-270(\\261piew)27(a\\253)]TJ 0 -13.549 Td[(a)-333(m)27(u)1(z)-1(yk)1(i.)]TJ 27.879 -13.549 Td[(Sk)28(o\\253)1(c)-1(zy\\252)-225(s)-1(i)1(\\246)-226(b)-27(o)27(wiem)-226(p)1(rze)-1(d)1(n\\363)28(w)28(e)-1(k,)-225(sto)-28(d)1(o\\252y)-225(b)28(y\\252y)-225(p)-27(e)-1(\\252ne,)-225(zb)-28(o\\273e)-226(sypa\\252o)-225(ni)1(e)-1(zgo-)]TJ -27.879 -13.55 Td[(rze)-1(j)-321(i)-322(k)56(a\\273)-1(d)1(e)-1(n)1(,)-322(c)27(ho)-27(\\242)-1(b)28(y)-321(na)-56(j)1(bi)1(e)-1(d)1(niejsz)-1(y)84(,)-322(har)1(do)-322(p)-27(o)-28(dn)1(os)-1(i)1(\\252)-323(g\\252o)28(w)27(\\246,)-322(z)-322(duf)1(no\\261c)-1(i)1(\\241)-322(patrza\\252)]TJ 0 -13.549 Td[(w)-334(j)1(utr)1(o)-334(i)-333(r)1(oi\\252)-334(se)-334(j)1(ak)28(o)27(w)28(e)-1(\\261)-333(z)-334(da)28(wien)-333(da)28(wna)-333(up)1(ragni)1(one)-334(sz)-1(cz\\246)-1(\\261liw)28(o\\261)-1(ci.)]TJ 27.879 -13.549 Td[(Kt\\363r)1(e)-1(go\\261)-313(z)-314(tak)1(ic)27(h)-312(\\273)-1(n)1(iwn)28(yc)27(h)1(,)-313(z\\252ot)28(yc)27(h)-312(dni)1(,)-313(kiej)-313(j)1(u\\273)-313(z)-1(w)28(ozili)-313(j)1(\\246)-1(cz)-1(mion)1(a,)-313(pr)1(z)-1(e-)]TJ -27.879 -13.549 Td[(c)27(h)1(o)-28(dzi\\252)-422(p)1(rze)-1(z)-422(wie)-1(\\261)-422(\\261le)-1(p)28(y)-421(dziad,)-421(w)27(o)-27(dzon)28(y)-422(p)1(rz)-1(ez)-422(pies)-1(k)56(a,)-421(le)-1(cz)-422(m)-1(imo)-422(spieki)-421(nik)56(a)-56(j)]TJ 0 -13.549 Td[(ni)1(e)-397(ws)-1(t\\241)-28(p)1(i\\252,)-396(s)-1(p)1(ies)-1(zy\\252)-397(si\\246)-397(b)-27(o)28(wie)-1(m)-396(na)-396(P)28(o)-28(d)1(le)-1(sie.)-396(C)-1(i)1(\\246)-1(\\273k)28(o)-397(m)28(u)-396(b)28(y\\252o)-396(d\\271w)-1(i)1(ga\\242)-397(s)-1(p)1(a\\261)-1(n)29(y)]TJ 0 -13.55 Td[(br)1(z)-1(u)1(c)27(h)-247(i)-248(p)-27(okr\\246c)-1(on)1(e)-248(kul)1(as)-1(y)84(,)-248(to)-248(wl\\363k)1(\\252)-248(s)-1(i\\246)-248(z)-248(w)28(olna)-248(i)-247(c)-1(i)1(\\246)-1(giem)-248(p)-28(o)-27(c)-1(i\\241)-27(ga\\252)-248(nose)-1(m,)-248(u)1(s)-1(zami)]TJ 0 -13.549 Td[(cz)-1(u)1(jni)1(e)-321(s)-1(tr)1(z)-1(yg\\252)-320(i)-320(przysta)-56(j)1(\\241c)-321(pr)1(z)-1(y)-320(\\273)-1(n)1(iwiarzac)27(h)-320(Boga)-320(c)27(h)28(w)28(ali\\252,)-320(tabak)56(\\241)-320(c)-1(z\\246)-1(sto)28(w)27(a\\252,)-320(a)]TJ\nET\nendstream\nendobj\n2421 0 obj <<\n/Type /Page\n/Contents 2422 0 R\n/Resources 2420 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2416 0 R\n>> endobj\n2420 0 obj <<\n/Font << /F17 16 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2425 0 obj <<\n/Length 7754      \n>>\nstream\n1 0 0 1 131.776 740.002 cm\nBT\n/F17 10.909 Tf 0 0 Td[(760)]TJ/F29 10.909 Tf 292.928 0 Td[(R)28(OZDZIA\\212)-334(49.)]TJ/F17 10.909 Tf -292.928 -35.866 Td[(kiej)-358(m)28(u)-358(jak)1(i)-359(gr)1(os)-1(z)-358(k)55(ap)1(n\\241\\252)-358(ni)1(e)-1(sp)-28(o)-27(dzianie,)-358(pacierze)-359(mam)-1(r)1(ota\\252,)-358(ale)-359(i)-358(p)1(rz)-1(em)27(y)1(\\261)-1(ln)1(ie,)]TJ 0 -13.549 Td[(o)-28(d)-333(n)1(iec)27(hce)-1(n)1(ia)-333(z)-1(agad)1(yw)27(a\\252)-333(o)-333(Jagusi\\246)-334(i)-333(li)1(p)-28(ec)27(ki)1(e)-334(s)-1(p)1(ra)28(wy)83(.)]TJ 27.879 -13.549 Td[(Niewie)-1(l)1(a)-245(si\\246)-244(jedn)1(ak)-244(wywie)-1(d)1(z)-1(i)1(a\\252)-1(,)-243(b)-28(o)-244(go)-244(cz)-1(ym)-244(ni)1(e)-1(b)1(\\241d\\271)-244(i)-244(niec)27(h)1(\\246)-1(tl)1(iwie)-245(zb)28(yw)28(ali.)]TJ 0 -13.549 Td[(Dop)1(ie)-1(r)1(o)-381(n)1(a)-381(P)28(o)-27(dles)-1(i)1(u,)-380(kiej)-380(pr)1(z)-1(ysiad)1(\\252)-381(p)-27(o)-28(d)-380(\\014gu)1(r\\241)-380(o)-28(dzip)1(n\\241\\242)-381(n)1(ie)-1(co,)-380(nap)-27(otk)56(a\\252)]TJ -27.879 -13.549 Td[(go)-333(Mateusz)-1(,)-333(ry)1(c)27(h)28(tu)1(j\\241cy)-333(niedalecz)-1(k)28(o)-333(dr)1(z)-1(ew)27(o)-333(na)-333(k)28(o)28(w)27(alo)28(wy)-333(wiatrak)1(.)]TJ 27.879 -13.55 Td[({)-333(P)28(ok)56(a\\273)-1(cie)-334(mi)-333(dr)1(og\\246)-334(do)-333(Szymk)28(\\363)27(w!)-333({)-333(pr)1(os)-1(i\\252)-333(dziad)-333(d)1(\\271)-1(wiga)-55(j\\241c)-334(si\\246)-334(n)1(a)-334(k)1(ule.)]TJ 0 -13.549 Td[({)-418(Nie)-418(za\\273)-1(y)1(jec)-1(ie)-418(u)-417(ni)1(c)27(h)-417(w)-1(y)1(w)27(cz)-1(asu!)-417(T)83(am)-418(jeno)-418(p)1(\\252ac)-1(z)-418(i)-417(z)-1(gry)1(z)-1(ota!)-417({)-418(sz)-1(epn)1(\\241\\252)]TJ -27.879 -13.549 Td[(Mateusz.)]TJ 27.879 -13.549 Td[({)-333(Jagusia)-333(c)27(hor)1(a)-334(j)1(e)-1(szc)-1(ze)-1(?)-333(P)28(o)28(w)-1(i)1(ada\\252y)83(,)-333(j)1(ak)28(o)-334(si\\246)-334(j)1(e)-1(j)-332(c)-1(osik)-333(w)-334(g\\252o)28(wie)-334(p)-27(opsu\\252o...)]TJ 0 -13.549 Td[({)-329(Niepr)1(a)27(wd)1(a,)-329(le\\273)-1(y)-329(j)1(e)-1(d)1(nak)-328(c)-1(i\\246giem)-330(i)-328(m)-1(a\\252o)-329(wiele)-329(o)-329(B)-1(o\\273ym)-329(\\261)-1(wiec)-1(i)1(e)-330(p)1(am)-1(i)1(\\246)-1(ta!)]TJ -27.879 -13.549 Td[(Kamie\\253)-333(b)28(y)-333(s)-1(i)1(\\246)-334(nad)-333(n)1(i\\241)-333(z)-1(li)1(to)28(w)27(a\\252!)-333(O)-333(lud)1(z)-1(i)1(e)-1(,)-333(lu)1(dzie)-1(!)]TJ 27.879 -13.55 Td[({)-271(\\233e)-1(b)28(y)-271(tak)-271(zatraci\\242)-272(du)1(s)-1(z\\246)-272(c)28(hrze)-1(\\261c)-1(i)1(ja\\253)1(s)-1(k)56(\\241!)-271(Ale)-272(stara)-271(p)-28(on)1(o)-272(sk)56(ar\\273y)-271(c)-1(a\\252\\241)-271(w)-1(i)1(e)-1(\\261?)]TJ 0 -13.549 Td[({)-333(Nic)-334(n)1(ie)-334(ws)-1(k)28(\\363r)1(a!)-333(Ws)-1(zystkie)-334(p)-27(ostano)28(wi\\252y)83(,)-333(ca\\252\\241)-334(gr)1(om)-1(ad)1(\\241,)-333(pra)28(w)28(o)-334(ma)-56(j)1(\\241...)]TJ 0 -13.549 Td[({)-333(Str)1(as)-1(zna)-333(rze)-1(cz)-334(gni)1(e)-1(w)-333(c)-1(a\\252ego)-334(n)1(aro)-28(d)1(u,)-333(strasz)-1(n)1(a!)-334({)-333(Ja\\273e)-334(s)-1(i)1(\\246)-334(ws)-1(tr)1(z)-1(\\241s\\252.)]TJ 0 -13.549 Td[({)-254(J)1(u\\261)-1(ci,)-253(ale)-254(g\\252up)1(ia)-254(i)-253(z\\252)-1(a,)-253(i)-253(nies)-1(p)1(ra)28(wie)-1(d)1(liw)28(a!)-254({)-253(wybu)1(c)27(hn)1(\\241\\252)-254(M)1(ate)-1(u)1(s)-1(z)-254(i)-253(p)-28(o)-27(dpr)1(o-)]TJ -27.879 -13.549 Td[(w)28(adziws)-1(zy)-274(go)-274(p)-28(o)-28(d)-273(c)27(ha\\252u)1(p)-28(\\246)-274(s)-1(am)-274(z)-1(a)-55(jr)1(z)-1(a\\252)-274(do)-274(\\261ro)-28(d)1(k)56(a,)-274(ale)-275(r)1(yc)27(h)1(\\252)-1(o)-274(wysz)-1(ed\\252)-274(ob)-27(c)-1(i)1(e)-1(ra)-55(j\\241c)]TJ 0 -13.55 Td[(uk)1(radk)1(ie)-1(m)-366(\\252zy)83(.)-365(Nas)-1(tu)1(s)-1(i)1(a)-366(pr)1(z)-1(\\246d\\252a)-366(l)1(e)-1(n)-365(p)-27(o)-28(d)-366(\\261cian\\241,)-365(dziad)-365(przysiad\\252)-365(p)-28(ob)-27(oki)-365(w)-1(y)1(j\\241\\252)]TJ 0 -13.549 Td[(ni)1(e)-1(b)1(ie)-1(sk)56(\\241)-334(\\015)1(as)-1(zk)28(\\246.)]TJ 27.879 -13.549 Td[({)-338(W)1(ie)-1(cie,)-338(t)1(rz)-1(a)-337(t\\241)-337(w)27(o)-28(d)1(\\241)-338(p)-27(okrop)1(i\\242)-338(Jagu)1(s)-1(i\\246)-338(t)1(rz)-1(y)-337(razy)-337(na)-337(dzie)-1(\\253)-337(i)-337(naciera\\242)-338(jej)]TJ -27.879 -13.549 Td[(cie)-1(mi\\246,)-262(a)-262(do)-262(t)28(ygo)-28(d)1(ni)1(a)-263(j)1(akb)28(y)-262(r)1(\\246)-1(k)56(\\241)-262(o)-28(d)1(j\\241\\252!)-262(Da\\252y)-262(mi)-262(t\\246)-263(w)28(o)-28(d)1(\\246)-263(zak)28(onn)1(ic)-1(e)-262(w)-263(P)1(rzyro)28(wie.)]TJ 27.879 -13.549 Td[({)-418(B)-1(\\363g)-418(w)28(am)-419(zap\\252a\\242!)-418(Dwie)-419(n)1(ie)-1(d)1(z)-1(i)1(e)-1(le)-418(ju)1(\\273)-419(pr)1(z)-1(es)-1(z\\252o,)-418(a)-418(ona)-418(c)-1(i)1(\\246)-1(giem)-419(l)1(e)-1(\\273y)-418(b)-28(ez)]TJ -27.879 -13.55 Td[(pami\\246c)-1(i)1(,)-333(c)-1(zas)-1(ami)-333(jeno)-333(rwie)-334(si\\246)-334(k)56(a)-55(j\\261)-334(u)1(c)-1(iek)56(a\\242)-1(,)-333(lamen)28(tuj)1(e)-334(i)-333(Jasia)-334(p)1(rzyzyw)27(a.)]TJ 27.879 -13.549 Td[({)-333(Jak\\273e)-334(Dominik)28(o)28(w)28(a?)]TJ 0 -13.549 Td[({)-313(A)-313(te)-1(\\273)-313(kiej)-313(tru)1(p,)-313(j)1(e)-1(n)1(o)-313(przy)-313(ni)1(e)-1(j)-313(p)1(rze)-1(siad)1(uje.)-313(Nie)-313(p)-28(o)-28(ci\\241)-28(gn)1(\\241)-313(oni)-313(d)1(\\252ugo,)-313(ni)1(e)-1(.)]TJ 0 -13.549 Td[({)-333(Je)-1(zu,)-333(co)-334(si\\246)-334(marn)29(uj)1(e)-334(naro)-27(du)1(,)-334(J)1(e)-1(zu!)-333(A)-333(k)55(a)-55(j\\273e)-334(to)-333(Szyme)-1(k?)]TJ 0 -13.549 Td[({)-402(W)-402(Lip)-27(c)-1(ac)28(h)-402(s)-1(i)1(e)-1(d)1(z)-1(i,)-402(p)1(rze)-1(cie)-1(k)-402(wsz)-1(y)1(\\242)-1(k)28(o)-402(na)-402(jego)-402(g\\252o)27(wie,)-402(b)-27(o)-403(j)1(a)-402(m)27(usz\\246)-403(pr)1(z)-1(y)]TJ -27.879 -13.55 Td[(obu)-332(s)-1(tr)1(\\363\\273)-1(o)28(w)27(a\\242.)]TJ 27.879 -13.549 Td[(W)84(e)-1(tkn)1(\\246)-1(\\252a)-333(m)27(u)-332(w)-334(gar\\261\\242)-334(ca\\252)-1(\\241)-333(d)1(z)-1(ies)-1(i)1(\\241tk)28(\\246)-1(,)-333(ale)-333(dziad)-333(wz)-1(i)1(\\241)-1(\\242)-333(nie)-333(c)27(hcia\\252.)]TJ 0 -13.549 Td[({)-428(Z)-428(dob)1(re)-1(go)-428(se)-1(r)1(c)-1(a)-428(la)-428(n)1(ie)-1(j)-427(przyn)1(ios)-1(\\252em)-429(i)-428(j)1(e)-1(sz)-1(cze)-429(jak)1(i)-428(paciorek)-428(do\\252o\\273\\246)-429(do)]TJ -27.879 -13.549 Td[(Pr)1(z)-1(emie)-1(n)1(ienia)-254(P)28(a\\253skiego!)-254(Dobr)1(a)-255(b)28(y)1(\\252)-1(a)-254(la)-254(biedn)29(yc)27(h)-254(j)1(ak)-255(ma\\252o)-255(k)1(to)-255(d)1(rugi)-254(n)1(a)-255(\\261wie)-1(cie,)]TJ 0 -13.549 Td[(p)-27(o)-28(c)-1(zciw)27(a.)]TJ 27.879 -13.55 Td[({)-416(Pr)1(a)27(wd)1(a,)-416(c)-1(o)-416(mia\\252a)-417(d)1(obr)1(e)-417(se)-1(rce,)-416(pra)28(wda!)-416(A)-416(mo\\273)-1(e)-416(to)-416(i)-416(b)-28(ez)-417(to)-416(m)28(usi)-416(t)27(y)1(le)]TJ -27.879 -13.549 Td[(pr)1(z)-1(ec)-1(i)1(e)-1(r)1(pie\\242)-1(!)-333({)-333(s)-1(ze)-1(p)1(n\\246\\252a)-334(wlek)56(\\241c)-334(sm)27(ut)1(n)28(ymi)-333(o)-28(c)-1(zam)-1(i)-333(p)-27(o)-333(\\261)-1(wiec)-1(i)1(e)-1(.)]TJ 27.879 -13.549 Td[(Od)-255(Lipi)1(e)-1(c)-256(roznos)-1(i)1(\\252o)-256(s)-1(i\\246)-256(dzw)27(on)1(ienie)-256(na)-256(An)1(io\\252)-256(P)28(a\\253ski,)-255(a)-256(niekiedy)-256(d)1(o)-28(c)27(h)1(o)-28(d)1(z)-1(i\\252y)]TJ -27.879 -13.549 Td[(tu)1(rk)28(ot)28(y)-392(w)28(oz\\363)27(w,)-391(s)-1(zc)-1(z\\246)-1(k)1(i)-392(n)1(aos)-1(tr)1(z)-1(an)29(yc)27(h)-391(k)28(os)-392(i)-391(dalekie,)-392(d)1(alekie)-392(\\261piew)27(an)1(ia,)-391(z)-1(\\252o)-28(cista)]TJ 0 -13.549 Td[(ku)1(rza)27(w)28(a)-333(z)-1(ac)27(h)1(o)-28(d)1(u)-333(przys\\252ania\\242)-334(j)1(\\246)-1(\\252a)-333(ca\\252)-1(\\241)-333(wie\\261)-334(i)-333(p)-28(ol)1(a)-334(wsz)-1(ystkie,)-333(i)-333(lasy)83(.)]TJ 27.879 -13.549 Td[(Dziad)-244(p)-27(o)-28(d)1(ni\\363s\\252)-244(si\\246)-1(,)-243(s)-1(p)-27(\\246dz)-1(i)1(\\252)-244(psa,)-244(p)-27(opr)1(a)27(wi\\252)-244(tor)1(e)-1(b)-27(ek)-244(i)-244(wspar\\252sz)-1(y)-243(s)-1(i\\246)-244(n)1(a)-244(kul)1(ac)27(h)]TJ -27.879 -13.55 Td[(rze)-1(k)1(\\252:)]TJ 27.879 -13.549 Td[({)-333(Os)-1(t)1(a\\253cie)-334(z)-334(Bogiem)-1(,)-333(lu)1(dzie)-334(k)28(o)-28(c)28(han)1(e)-1(.)]TJ\nET\nendstream\nendobj\n2424 0 obj <<\n/Type /Page\n/Contents 2425 0 R\n/Resources 2423 0 R\n/MediaBox [0 0 595.276 841.89]\n/Parent 2416 0 R\n>> endobj\n2423 0 obj <<\n/Font << /F17 16 0 R /F29 31 0 R >>\n/ProcSet [ /PDF /Text ]\n>> endobj\n2426 0 obj <<\n/Type /Encoding\n/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/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/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/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/endash/emdash/hungarumlaut/tilde/dieresis 128/.notdef 129/Aogonek/Cacute 131/.notdef 134/Eogonek 135/.notdef 138/Lslash/Nacute 140/.notdef 145/Sacute 146/.notdef 153/Zacute 154/.notdef 155/Zdotaccent 156/.notdef 161/aogonek/cacute 163/.notdef 166/eogonek 167/.notdef 170/lslash/nacute 172/.notdef 174/guillemotleft/guillemotright 176/.notdef 177/sacute 178/.notdef 185/zacute 186/.notdef 187/zdotaccent 188/.notdef 211/Oacute 212/.notdef 243/oacute 244/.notdef 255/quotedblbase]\n>> endobj\n30 0 obj <<\n/Length1 1525\n/Length2 6508\n/Length3 544\n/Length 8577      \n>>\nstream\n%!PS-AdobeFont-1.0: PLSlanted10-Italic 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 34027\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 694 194 0\n%%EndComments\nFontDirectory/PLSlanted10-Italic known{/PLSlanted10-Italic findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLSlanted10-Italic)readonly def\n/FamilyName(PLSlanted10)readonly def\n/Weight(Normal)readonly def\n/isFixedPitch false def\n/ItalicAngle -9.46262 def\n/UnderlinePosition -146 def\n/UnderlineThickness 40 def\nend readonly def\n/FontName /ANQCVN+PLSlanted10-Italic def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 46 /period put\ndup 48 /zero put\ndup 49 /one put\ndup 50 /two put\ndup 51 /three put\ndup 52 /four put\ndup 53 /five put\ndup 54 /six put\ndup 55 /seven put\ndup 56 /eight put\ndup 57 /nine put\ndup 65 /A put\ndup 67 /C put\ndup 68 /D put\ndup 69 /E put\ndup 73 /I put\ndup 79 /O put\ndup 80 /P put\ndup 82 /R put\ndup 83 /S put\ndup 84 /T put\ndup 90 /Z put\ndup 138 /Lslash put\ndup 145 /Sacute put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-72 -260 1133 918}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0013\u000f6 ywTExӄ~ϧg_\u0002cE4ϰ]>m\b~\u0015;4H\u0019\fSHiT\u0004,\u0007vb̺> }qW\u001bW\u001f\u0010\u00044J\u0013۰M\u0006\u001f\b\u0003Qt&Q\u0018mcRj\u001f\u0006\tYT\u0015\u001e\u001c/E$Kt*[E,3\r\u0014WG*IҔ\u0001X[ڲ\u0011T0<l&zabmU\u0018a\rW\u0005`E-\n\u000bχHql\u0003\u0000`A\u001b\u001eVߒu\u0005n#BN]\n3`a\u0015%o|GT{Y \u001d\u0015r:\u001b8$B v&c\u0004к(N\u0012q^;I;4eᮔIxňX+ٓ\u001eQ)\u000e\u0016'\u000e}!ƹ~:F0@yҍA\"H\u0006\u0017ND>l\u001fl\u0010v\\\u00142؈KXNqo)\"{j\u000f-И7HT:QTv\t\u0016a+n}:qUӛw\u0019wa7fJл\u0000\u0018[󚺠\u0013^QHJ΂\u0002ਲ਼/|f\f\u0018An#`\rC\u0019롚\u000fn{\\5؊c\u0005M#|\u0007A 饕T\u001b@\u000b?v\u000bm\r,Hup\u001b;{\u0004/z@\b\u0015_JO-\u0016ik3&\f:ɭ\u0011$|xvzj\\PD4,po\u001dA\u0010\"pE2:TL_wPF\u001b\u001eN`>\b8\u0007#\u001bS.\u001b\u0016٠\u001d=\u0015\";\u0003i|拀o%^#\u0006\tD5N\t8\u00078.e\u0017܆z;\u0015'ic狥Ϙ\u0012~hHMD2ZW❤q>|\u0004\u0018݇k|}Ѫ\f\u0011p~j鐰.8\fZ&H\u0005\u0001-x;~l+\u0003լM$An܋\";~d̐}\u0018޼~uO,?\u0017<\u0019aû\u0004VP)p^(B\u0011K,^6I\\s{˫\u0015\u0011Ѵe\u0002\u0003\b)󢋮\u0014\u0016IE&-\"f\bu\u0013~\u0000iR^mϦ^:\u0014\u001fЉz4MLJ{V\u0001w^rc?TQį\u0005&f2Ʋ\u0018udzX\u001c\u0006\u0017)[(\u001a\b<c\u001e\u000fY@}\u00033'\u001d}\u001aH\u001eܰݡ\b2՗nc4\u0000Uk;.b\u0006\u001a,IX\u001bOeG^>E\u000e'|=1W~zw~n<\u000fވ\u0006-G\u0003&\u0002!>0vȦ,\u001f @Ja/1:˲m\u0016\u0014J\u0002s\u0000=ĳH\r\t\u0016\u00165#vv\\n\u000bki\u000f\u0017kEn_c yp=\u0000b\u0011\u0010R\r!o\n|\u00071m\bg\u0011e\u0006\u001d__Ï+V8I1V0\u001a'x\u0001\u0018Aސ`\u0017f\u001c\t\u001d2-?5{Dk\u0013Ȉ\u000eaߓ\u0000cZ}2\u0019\u001b0\u0002\u0013K>\u000b\u0003ow\u001d[ǀT[laR\u0016p\u0017\"$\n%8fb\u0019\u001e\u0005T\u000bB\"\u0019\u0003d=j\u0006\nWQ؆\\eK\f?`At\u0000,%\u0007HQk\rhQV'\nSn]#mF\u00121!\u0015.#^.\u0017m:7a\fk/_f1\u001bV.·Xn\u0003ɜOrn][$KO4{\u0018hX\bwͰ0'\u0002>\fٵ\u001av_\u001a\u0018^B6N`oFo\u0000%g4IыQ&NY?b[ñ].q|+\u000f PdiHƽ.\u001c\u001fB~/Iܴ\u001fM>:4\u0006\u0016\u0014D\u0007r|E(&=8})X x\u0019#\u000b\u0018iM\u0013\u0016Ctn9+Q6<8Kڢ)o~_QHlESn]qL\u0006'ִcclQ!l?vy7%\u001bpӵU|#q\n\u0000V\u0018hG;\u0018\u0000K8^;p{+˨CVY]9HW&\u001bq\t@S\u001e-` )O~\u0001F\u0015\u0003>|'K(`Wܷ\u000eMp\".a\u0000\u0013F\u0001\u000e\u0003\u0013\u0018/\u0010syR(.<NY\u0017\u0017I\u0003\u000b\u000f}d\u0003N,/u\u0004Ky |ɤ%YwV\\jU<|$X{\u0018P?<fc.\u001bb\u001f:D\u001cEX$,\u0012\u0014e\u0011~\u0013/\u00051\u0003'\u0016G\u0013;\u0010Sb\u0011]t:~\u001e-[\u0001k\u0016\u001d).w[gvO\u000fPlH\u0010GLp\u0015֦U~М-0n\\<th\\5@\\~<mm[ϛ!\u0005WxN*\u00000{\"X\u0017+eP\u000e?*&c\u0000ОiAݺ\u001deC\u0015\u000e8]y<{N\u0015&\u001e(%M\u0005{v2oN^)R\u0010nL)N}\u001ci{\u001f\u001d`\u0005y\n\tW\tI\u0004u\u001f'\u001clV7(j\u0002@-0\u0012Jnrg 3Uu~؞ƻ7\u001dN!]~j;\u00071[@M?kuOnY9C\"%ClIDv\u001d9¨*{쫯s\b1_B\\{$(a9<o!ysb\u0011>HF&0T-V6R\u0019OA \bu%ִ\u0014\u0016bE'r;ŗ\u0019l\u0005 .&9o<gJ[# dA1a\u0019e̡!č\u0001＀ӉZ.\u0014\u0001:A\u000f\u0012(Ū\u0000u\u0011D4[zr4\u000e\u0005\u0012h|*ųOF3A\u000b\u000eq\biL\u001eѲ7vYUcyg;Ω\u0011\u001cHjD틈\u001b%D\u0015:\u001aڭ9x7VT\u0002\\-xћ6*k'\rOC\u0017vi\u0018\r\u000fRh~\n\u0016kș%V6\u001btVp\u0000]̨H9Cg\u0014#\b9@\u001e,ۅUWx\u0014H;.3n7\u0017B`XLR?#\bX-\u0018|٣\r\u0015\"\u0018OU\u0014\u0001[\u0019Xµr$KwOnVQ;:W\t\u001a\u0000td\u00153d\u0019\u0010WCݪ\u0016ȣeH\u001d\u001fXẕ\u001d\u0011[\r'cz\u0014aLƅ\u000e\u0001aϼ@0ޱ0)\u0006ʾk\u001ca<'U$JNҔe\u000fMdtኳ3+oa48ꚥF\u001b;\\#3p[țIE,y\u001b\u0011\fvsWe\u001bs>\u0017H6\u0002O\u0005MxGi(ye\u0015\b-\u0014ֽw\u000e\u0015)\u0001͝Fk\\\u0019ξsDl\u0011~1b\u0018ꜹ7-F\u0005\u000b4g\u0019?B^8C\u001aw.$g$d2r4鑂I$VG7;Z\u0004j\u0010y8<\\@\u000b.vxa\t*\t#jE\\H狤\b{-\u001c$a\u0017ݗ\u000b0Nn,uF\f\u001e %\u0013\u0014|f2%>J!@\u0002\u00001&=~qT8~\u000f\"\u0019\u0000c_+`&\u001erMunQ\u0013F\u000e?\"'зP\u0013\u0011P4\"[N-܃(_ܱ\u001eϣ\u000eEŴq|;۟Ѳf*mgj|2+@nԊ(D\u0016|\u0003(:\u0018d|\u0015\u001d@\u000b~4q]F[]?ZwﯧXgQO\u0012X)T.hk\\QǴYus_LH8SL8k'\u0007\u00036O\rhMl\\Z|K)z1ӈq@~\u001bFOmҜXLtx?G\u0016уrb\u0011Z\u0001Rb|SH\\<y\u0017\u0018>ʓ\u000f\u00028-NHJ\u0012ʏ\t\u000bx\u0001d\u000fϊ!h-|\u00189vM\bԩ҃˂V0\u0015=\u001e+\u000bXY\u0004lpR\b\u0014@tV_zC9=\u00027\u001cQ7\u0010R/i\b2\u0000d\u000bCRI%l\u0004'([\u0010ZvfZ@Tiil.Iaڸ?]T\u001e\b\u0007m\r\u000fty྽ׅ\u001cw3\u0001ػup\u0007mޤbs\tG_\u001aE\rXpg]%\u0003ه&N๠,V\\\boD\u0016Y,릔;D8\u001f\u0010ki\rbi\u0003kÛX)\u0001>M'\u0017SشoǓ6\u0006q62\u0013h\u0012Oy'!.bk\u0019\u0001C}dt\u000b\u0011$ode>^P*Պ\u000bE\u001f\u000fJ^9akF\u0012H:Z<KA1\u001aa&Z\\\u0019f\f.kyS\tysE\u0012G\u000f^rM\u0001\u001e\u001a\u0013+\u0007@Eekp4j\u0005+u]Mu%g6U\u0001\u0005 \u001a=\u0006\u0003<v\u0007jl3\fJ,F*\u001dXy\u0017\u001f\u0013Gvd;Ӭ.>zɥ\u001a\u0006\u0014x{y\u001dԵ\u000e;Q˓GVi:$1. Cމ>ҙL>\u000b\b0ymlr%ԯ7V\t8J%F=\u0016\u001a]\u001eߨ\u0011,M;\\\u001dP=>wBB'&^?Ȗs^\f}\u0016D9\u0000z\u001f_J\ruEc\u0001jU\u0012\u001d\u0011dȿAm]Po\u0012\bVÑ<$\u0010{\ng\"#yꎢ^փO\u0000׹ہz0C]\u000fT\u0019j^V2zZQ\u0017t\u0012]/YIЅБbdme]$\\PP(\u0013Po3\u0011\u0018xr\u0018!\u0005\r=A\u0012\u0005A\u0011EpH\\@f\u0002`\u0016E\u0016 T뉤E+T;\r\u0007FQ-)~U2`8tk Q\u00127\u0014\u001b_O[VUDŚ4ߤl`1Zb&\bDYã<\fso\u000e\u0004W1A\bȉ%Q\u0001(\u0006;:R\b\u0006\tU\u0004i\u0003rBVQR\njL&!PK`6C\u000e\u0011`f,rtu\u0001\u0011\u0007\u0010rO?S>\u00026wd/f`d5]\nhE>N\u001bϏ%\u0007\u0006>L1׋EmM'\u0012\nE\u0006\u0013E\u0011*Z]&S1\u0016\u0011\u0010\u0017\u00021z6Q\u000e越\naΒ|=#j\u0005zA\u001aXztx)\u0010m8d\u001aCN\u0006\u0003?i\u0010\u0004\u00152wo圵%\u000e3BBӍiEuMB\u0005'{FsY\u0006\u0011\u000eȐw%H\u001c\u0006sJ\u0014'\u0014G\u00138!&\u0003wT\u001etoa\n\n/\u0000A|~jxQ\u000bi\u0002\u0003Acl9VuG|\u0007Ë`\r~W\u00143XzDnh\u0016s?*\u0011\bDo\u0001\u0006/\u001f\u001bԳ\u0015m\u0012\u0014T\u0013goV3ԍs\u001e\rgeÔKKb\u0004\u0007\b\u0015EI>\u0002؏׷Z\u0019F1\"\u001eD@!|k\\ʺT-2ãb-(F,z\u001f\u001c\u0017,+Qe\u000f\u001c@@X\u0002>\u0003ᅗơ+qNX`89BR\u0004\u0001\u0001q*Q C\u001c#\u001b;n$=-v \u0005z?5d\u0001u\u0014P$\u0018R\rD\"4';\u000e5βpA\u0004\u000e8\u000e㸬R[\u00034RV\u0003jۛDlpiO\u0006[Q\u0005s\u001a|+S\u0017&{v:@\u0016{Ѓmqxide\u001bnw8G卮ñ\u00053Bh\u001d\u0014\u0017\"ռS\u0002\u0010U?8.E!\u0015v*U\"o) g~\"\u000eaŜәϱIHa8J\u000f\u0011>85Il\u000b*J@XCأAwhS\f\u00185U:F$\u0015\r)ĵ\u001a.?B-NIP\u000fw\\GU;e,.foY\u0018\u001fK\fd(\u001asCW2&\u0016ȪDP\u0005\u0000$˱fu\fyx>\r\u0018Wpo2C5\u001eTV\u001d8\u0011^\u001cF\u0002K%K\u0004F9:̓wE̵\r?.J&K:\u001d\u001d'[Z}q+\u0006\b\u001aQ:`*}[\u00170\u0004k\u000f_\rWɆ;čl $gO͚;P\"\u0012\u0018\u001296\u0010\u0018D\u0016c;W\tv\u0004\u0013s2<l7\u001byo\u001eV\u000fU$\t#fuV|{e#/\n\u000eV\u0016h<Fŝ#u\u0010ZO?Ԡϖp~P83\u001dxg]X^\byl1ȯ\u0013̊Pf\u0003\u0004\u0000WEJ0\u0005[wP<aQgc\tjk\u0003v#jbBMO\u000e<:\\UQ(\u0018G\u000f?!]?.DB#`\u0003[vn:ac3-n/_YDtj\u0013rqɶ{^ezԻ_-{-P\u0002h95\u0012W\u0015;E S\fR#D>8&%ºt\"/\b\f\u0000;M/tQQH!\u0000uDXOHjDYs;\"bu\u0012[r@$8qwBPʩ\u0015\u0017\u000e.ݐ7%|lm\u001d\u0006%D6)\u000b=\bMRt\u001a\u0017Fw'a \u0005_\u0016*CVO/$F\u0016[(eJ\u0001@1\u001eQ\u00100٦I=\u001c&Uu\u001e60\u0003PH(]SӸ].;\"U,G`\u0005o=Pi\u001c~0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n31 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 46\n/LastChar 145\n/Widths 2427 0 R\n/BaseFont /ANQCVN+PLSlanted10-Italic\n/FontDescriptor 29 0 R\n>> endobj\n29 0 obj <<\n/Ascent 689\n/CapHeight 689\n/Descent -194\n/FontName /ANQCVN+PLSlanted10-Italic\n/ItalicAngle -9\n/StemV 79\n/XHeight 431\n/FontBBox [-72 -260 1133 918]\n/Flags 4\n/CharSet (/period/zero/one/two/three/four/five/six/seven/eight/nine/A/C/D/E/I/O/P/R/S/T/Z/Lslash/Sacute)\n/FontFile 30 0 R\n>> endobj\n2427 0 obj\n[278 0 500 500 500 500 500 500 500 500 500 500 0 0 0 0 0 0 0 750 0 722 764 681 0 0 0 361 0 0 0 0 0 778 681 0 736 556 722 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 625 0 0 0 0 0 0 556 ]\nendobj\n24 0 obj <<\n/Length1 1281\n/Length2 3874\n/Length3 544\n/Length 5699      \n>>\nstream\n%!PS-AdobeFont-1.0: PLRoman10-Bold 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 31190\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 694 194 0\n%%EndComments\nFontDirectory/PLRoman10-Bold known{/PLRoman10-Bold findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLRoman10-Bold)readonly def\n/FamilyName(PLRoman10)readonly def\n/Weight(Bold)readonly def\n/isFixedPitch false def\n/ItalicAngle 0 def\n/UnderlinePosition -146 def\n/UnderlineThickness 60 def\nend readonly def\n/FontName /ZNFCMG+PLRoman10-Bold def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 48 /zero put\ndup 49 /one put\ndup 50 /two put\ndup 51 /three put\ndup 52 /four put\ndup 53 /five put\ndup 54 /six put\ndup 55 /seven put\ndup 56 /eight put\ndup 57 /nine put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-56 -250 1164 916}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0010Z%ҭ#α\bZ]GvxGSO\u001aYTQ\u0012w\u0017A%ruQ;P|\u0013#C\u0018O\u0019҆\u0015aNoF-\\Vz\u0001W/\u0004'ڔaGaԜSJYfԝCKjgN\u0015Qo\u0006]u_m>\u0000mk\u001c>EW\u0003Vu^xKe:\u0015j\u0014cꟆ)[\u0006M\u000f\\IEa\u0003_#vgf\u001f:\u0019B7d-\u0018)D)cN.\u001e\nxlSR\u001b#ZA\u001do0{n/3f1_+^&᧫J!vi\u000bT;\u0019\u00157cܭ>D\u0002Dp^\r\u0007\u0017\n\u0006.U9'w\u001d\u0000BR\u0017\u0016\bJ\b3\u001f*nS\u0005Zh\u001aUQIih-k#\u00100܆Co$Nc&\b\u0002Ss\u0013\u0018Aj1\u001cಂ맞hx59U6~卦\u00192J{\u0000`ށ'>,zDY2Kz2~7\u0014C\u000b\u0003CVz\u0011\u0019Wװ\u000f_$lZ\t/V$?GTN{?h~ \u0003M.E\u0006'7\u0019X\u0016Ԏ\u0017\\qu\u0005(\u0018(\fcBFg\u0000/-o@p˂0JZ-d=thn\rr\u0002'p\\gQ\u001a@r(V\n\u0014UP7=øY2\u0003\u0006l\"99T\u000f;ꥀGmڢsc,`Db\u00121\u0016h~\u0013/\u001b\b\u000bf\u0006\u0011I&ytRK2Pf\u001b<\u000e\u000b]4n\u0014Ǿi\u00140\u0002oۭTfz`hm\u001eyK) #\t\u0000!^M\u000bkS&f\"rQW(\u0001\u0003Ὡ\u001a~Yehwrhg-=c\"#e5FP=\u001bNx6T\t܃s\u001bfCB\u000f\u001ea!xW7\u001aRC&_`Y\u000eˑKǮn\u001d(\u0018nȀ\u0002ɒ-W{\u000f=Mqq\u00118\u000f>\u0010ȽG\u0002,1c v*JTj!-\rRGi[\\\u000bV5v{/fq\u00131\u001bf\u001eL&\u001bY[*bgKECK\u0001f\f?\u0003\f;\u0018٩\u0000=z/\"g1bb2{O]oa\u0003 N]~sN\u0002`F;AJv\u0002\u0001E0\u0007A:{`pC\u001e(+&u'XK^\u0016tڵIs*\u0006;\u000fuT,Jw-Fo\u001a^\u0010>J\u0015\r\f\u0019HVsT\u001c!JModk|\u0019\t*W\u0010\u00135*Gv9?G}6e9\nۡ7ӳ\n(y3x\u0004\u0014@,\u0007\u0018Ø\u000e\u0015d[_(cMjMHYEEےW\u0014$[\u00108DǢ'2,x>\bh\t\u000b\u0002k3h\u0004؏\u000e\f2\u00163jv<\u0013xV?M$\u001bP\rf,E\u0000[ːg:s\u0005\u001f$sWPjb<6\u0006\u000b%Co\u001eU==\u0000;;=£DWe[?8~\u001fcWJJ\u000e\u001f.vQ$DDLXX\u001c\u000b|\u0014~,è\u00063\u0017ow]l/6Oܿ(\u0004\u001eW'mHc=!2IhD\u0011/P\"p\t\r=yϵN,S|LH-bH+g{\u0017qʠ\u0003\u0011Z\u0004S)}e΂\fkD;ƣ\u0006u<|ngSt>-&S.Q\r\u0005\u001bT(\nXX\u00191\rBAju\u0006\u001a.5qC\b\u000b6nS\u0016\u000bj\u001dR< Yѩ\u001bNɖ~ld3\u0002\fR\u0005Ove\u0019\u0001kP\\-_m/qb4i\u0017Љri\u0018nېMad\u00100^29W\u0006@oCRý\u0002\u001f/ҭ'\u0015M\u0016\u000bz\u001fʂ38+Q6nx?gK6\u001f\u001dQR\u0001\u001f\u0003hM\"5\u0010\f\b?z(vwfmp\u000eca'\u0003&Ki%\u0000Kځ\u001e\f~v.6/\u001a2\b\u001e\u001a&\u0010\u0005[]wL\f^*5\u0014S*#z*;\u001a:\u0017\u000biab}uk5.$kX{\u0000hwP+4\u0012\u000fM\u0017r\u001eۀ\t_6\u0013Έ\u0010\u0000CLy֛0\u001f!\u0010}\u001aGѪjJ?dv\u001a\ffc\ry\u0013R\fP$\u0017\u0018\u000f|vZt~#\u0011Nƒ$\u0003;($\u000f^\u0000UUc>iwAGg!UA\u001fv\u001d\u0007\u000e#\u0014EF_fF\u0005LY\n\u001a/a\"n\u001e\u0003Yjn9\fD%KjEVw\u000e\u0015|Cl2'+E\u000e\f\b \r1* 2Og\"@vL5Kz;|9;\u0019M\f&ӥ\u0016Ӝ\u00140\u0004Po؏G߈ˈP%\u0004i.\u0019E\u0016oޅ\b\u0017Im\u000e\u0014辛\u0004\u001a\ru>q$+]q;:FVt_MK\u001d?\u0007<!\u000bC,N!,M\u0014lIXyVtNx\u001a}pk\u0018w6\u0001F\r\r\u0013&k\u0003lF\u0005\u0018Kѽid\b$\u0017\u0003;mu{L\u0010L1N=_Z\rƤ͙%/\u0004GaYũ@Ze\u0013ٌ\u0012\u0004ɝt!\u001b\u0003\u0000\u0010#\u001e1\u001dl~w\u0016~pѽ\u0004WrQ] \b@y\u0004s\u001cl85[\u00034bVL͝\u0000|\u0005la$ϖ\u0014+\\Xe6}%\u0015A6O?\u0003y>Poӣ\u001bz\tF&\u0002\u0014_V<\u001f\\\u000f.?q\u000fǿe\f}-XqUƤU\u000e?Aފƀ[\"=\u001cM\u0002WGh\u001e/sʝKd\u000e,gW=u~O)tP\bg\u0003|A\u0002P\u0016G={j6O#q;Ox\u00159_MJ0qsr\fNn~(]]\u0018q;RL0\u0014ju\u0014L\u00145\u0006_LuNѬi\fvRC{-;\u0014I\u001b$v2¿\u000bK\u0018i\u0017gW\u0003ġ6\"%;'AlC\u0004^\b.z&e\u0016#\f_Lc\u001a\u0019bssQb2\u0015\u0014\\<(1W\u000fw\u0002 f~Gs_n\u0000Mr2g\u001dK֨q;[:\u001eW]\u000bJ\u0015r\u0000j/yL\u000bKȮ6[\u00015\fܱ\u0000qo\u0005;Ez^z\u001e%\nt[`͓Vn \f\u0011\u0000+*P2ܳh\u0013&r'\u0019Y(dt]uْ\u0012\u0015TLjf\u0013j\u00002'\u001eg\u001dD&5M\u0001w+Zw\u0013\u00151aP_b\u0006.dhL*G%\bY%\u0007m\u0012Ea\t\u0015\u0011`\b&-|!\u0005kT~.C\u0003\u0014\u001bËː\u0006W_\u0000v~/ںf\f\u001a\rGӜ,iVn&F;%#m,]jrY\tGJoWtb.\u0012Z\\(\u0018p7:XyY_\u001cҔ/\u000fsp.xri%V^āl\u001b%8\u0017n\u001ea\"\u0001,fA!\u000b=+\t\u000bx\rS^߃g+~d\u001c\u0003B%YmC5\u0017\u0000n˩\u0003g7\u0016\u001bIx{c\u0019 Q\u0018#\u001eġ;%;\u0016Y\rH;*_\t9C-!\u001e\"突PXia\u0017'&\u0017$,\u0018%(QFTnv?\u001fFD\u0018\u0018\r8to\u0007\tq{a-\u000f\u000fv p}gx/Q\tb:egDdȜ1\u0005GOuIWgun\n\u0015(x\b\u0014%sT\u000fVb4bUh'\b-MbXV56W'\u0003]\u001a\u0004\u0016eZă\u0017Y\u0007]J=\r!\u0005?\u001bu \u0000\u0006Z\u001e]A+0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n25 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 48\n/LastChar 57\n/Widths 2428 0 R\n/BaseFont /ZNFCMG+PLRoman10-Bold\n/FontDescriptor 23 0 R\n>> endobj\n23 0 obj <<\n/Ascent 694\n/CapHeight 686\n/Descent -194\n/FontName /ZNFCMG+PLRoman10-Bold\n/ItalicAngle 0\n/StemV 114\n/XHeight 444\n/FontBBox [-56 -250 1164 916]\n/Flags 4\n/CharSet (/zero/one/two/three/four/five/six/seven/eight/nine)\n/FontFile 24 0 R\n>> endobj\n2428 0 obj\n[575 575 575 575 575 575 575 575 575 575 ]\nendobj\n21 0 obj <<\n/Length1 1825\n/Length2 8730\n/Length3 544\n/Length 11099     \n>>\nstream\n%!PS-AdobeFont-1.0: PLRoman12-Bold 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 30818\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 833 233 0\n%%EndComments\nFontDirectory/PLRoman12-Bold known{/PLRoman12-Bold findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLRoman12-Bold)readonly def\n/FamilyName(PLRoman12)readonly def\n/Weight(Bold)readonly def\n/isFixedPitch false def\n/ItalicAngle 0 def\n/UnderlinePosition -175 def\n/UnderlineThickness 66 def\nend readonly def\n/FontName /TYZJNN+PLRoman12-Bold def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 48 /zero put\ndup 49 /one put\ndup 50 /two put\ndup 51 /three put\ndup 52 /four put\ndup 53 /five put\ndup 54 /six put\ndup 55 /seven put\ndup 56 /eight put\ndup 57 /nine put\ndup 65 /A put\ndup 67 /C put\ndup 69 /E put\ndup 73 /I put\ndup 74 /J put\ndup 76 /L put\ndup 77 /M put\ndup 78 /N put\ndup 79 /O put\ndup 82 /R put\ndup 83 /S put\ndup 84 /T put\ndup 86 /V put\ndup 87 /W put\ndup 90 /Z put\ndup 97 /a put\ndup 99 /c put\ndup 100 /d put\ndup 101 /e put\ndup 105 /i put\ndup 109 /m put\ndup 110 /n put\ndup 111 /o put\ndup 112 /p put\ndup 114 /r put\ndup 115 /s put\ndup 116 /t put\ndup 122 /z put\ndup 130 /Cacute put\ndup 134 /Eogonek put\ndup 139 /Nacute put\ndup 145 /Sacute put\ndup 170 /lslash put\ndup 171 /nacute put\ndup 177 /sacute put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-64 -262 1150 937}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0010Y\u0013Kj2!8O#Gf\u0003/3Вˑ+'\u001c\u0007B\ru\u0019׈4l.yS\f\u001a\\tHTo\nԤC\u0014\u000eP輰53o#l۵@\u001b\u0015_s_DBz(Ub)],\u0000d65\u001b\"ZcPqt`]\u0001ėHrҠIx\u0012\u0015Stp\u0011#D9EO~Y0LI\u0002HD~n\u000fF\u001e9\u0007\u0007l\"v\u001eEj\f#9\u0000l\u0006VNq4\u000b\u0011'0?f\\\u0005bm\reH4z>/b\u0000\u0007I=\u0012\u001b\u001c.\u001c\u0001uH\u0010s\u0006\u0000\u000fu$W$\u001a1)86ômf\u0019l\u0018\u0017f\u001d\nEhy4Ԣ\"W{e\rsOg&Xۂ ^`F\u000b*\u0010lm1Q\u0002+һ\u001ds+fsgyyR\u0018\tf1>\u000e Gd~\u0004B\u0006V{Չp3zT(23\u000fV\u0013?<2?[G\"hDRQ<.<c\u0019ޱa\u001fJ]sE솑^!\u000e7ArC<RQjR\u0013\\<h\u0004\u0018\u001eN%\u0005L*i.\u001e2\u0007G\u0007\u0011*c\u0007\u0011\t\u001f\r}3\u001ft@)CP+\u0000Z\u00058'!nk\u0000\u00154}DإE\u0017\u0011\u00038\u001d?ݻ<2I6\u0016c\u0011>l\u000bpV[\u0012a\u001a)9DG\u00032SO㞸Ln=F-zJ>q\u0017\u0010\u0007~\u0005z\u001850\u001dXdg5g\u0000\u000e\u0007P9\"O*9$\u0016yYoH*u\u0004`iJGA׮%҆2\"\u0011D\u0012W\u0012e1=5| \u000by!뎥8!(:\u0006\u000e\u0002%}jZzrE)F\u0002\u0004̚$,c!j\nZ\"[>dKh\fcz\u0000GL4\u0010DsNlh`~(K4\u0012h\u0001\fӁ#{\u001awE3y=\u0007\u001af{8%%м\n\u000bdIq\\\u001c+A6\u000e Ě\"\u0004\u0011:p\u001e\u00072Jl4ç\u0004ЦP\u0005*D\u0006m&Bv_;qvۨ\u0017YNuA\u001d\t \u000b1g#!(ZU\u000e|8\u0007G\u001f.Fl\u0019@Z=;z\u0010y\u0014dHp2=\u000fj$\u0016\u0011H\u000e\u001c\u0002Su\t9\"\u0017r1i\u001eȣǡ\u000f?\u000b˘H/\u0012GHE}C=U`\u001fXo=\tIZ\r\u0019y))V_\u001d\u0003Ǚ|t:L.\u0018[ZeM~\u0006bt!2D\u0019\"6\u001f\"iU%L)w\u00181:\u0018ܕ4X=\u0002)y)\\ixɂ5U\u0007_J؋\u0019ٕO\u001e\u0007]laX/4\u001eW\rK\u0013!vaoPO\u0014ݒ\u001dc)ȷΏ\u0011\u000b8~\u0001-\u001fa\u0017\u0002ZJ\u0012r(+oH\u0003q\u0013&?M6T\u0003fbwb#C+EMG\u0001\u0005DK\u000f\"r|~)d9d\u001f--\b\u0011+ol!\u000eW\b~4\u0017ADrܸd&.xel\u00178jWN0o蹌\n2`\u000e\tMc 4Ӟ=Us~\u0010!S\b5(S#Yb\u0005H-\u001cszZfoB\u0018Hq~nqϞ:wY#{RUV\\/o\u000eǚUt.;\u001es\u0003Z\u0005Xbg{\u0012ӊx 0\u00125\u0015\u001f  1{/\n%\u0005M=kcY]Ȇ\u000f\bT,O)Vm3wSVڎ\u0011]ßA\"0aZg;=[$\u000e\u0014՛fY߁z\u000b6٪\u0005}X\u0011\",\u001f\u0018xRgŇ#QtDܔ-ri|\u0010@Pe\u0000$\u0005[>*C\u000fF\u0003=۟x\b<$}Dp\u0006Lbě#xW)..>;Hڎ\u0005C=\u0017\u0015Lߡȃ\u001fʍ.-\u0015F\u0007f\r@\u001f\f+v\u0007.yBn[0]Q(3TJg\u000fvy\u0002\u0010\u0013,\u0005l7ևdc\f\f&\u0014\toCW\u0017 An\u001bK\bȺ+uYsW,P\u001b\u0013\u0002H>7\u0011K#W]\t0M\\ps(u2KMvn\u001e\u001e\\oj\u0013]?\b,\u0004\u0017L-9j\u001blZ)|\u0016\u0005'\r>\u00194Tj(i\u0012Ġ\u001f1\u001cWu\u001d\u0004\"~$'߻װη1ĳ\"\u0013C\u000bj\u001b;H|\u0013\rY\n=j!`T?4p߶{#\f 1\u000b>AL#PkB\n\u0011GVOz0\bJRn\u0004.fE#cжAtf\u0013G\u0003\u0014\u0006\"Ǉ\n!\\\u0006ʧ<\u001cT40uOcXFC[,g\u0006`\u000f\u0014̣(~#0i5dd!%\u0000}I4\u0018i:\u0012G2W͋2O\u001f)sU1T/qͿP:\u0007P\u0002pB*hm \u0012f9pD}s\u001aB\u001ee\f}\u0013\u001fIvRV\u001b\u0005^+\u0007}T`k\u001aX\u001fӑ\u0000çb߀윎^%r$\u001b@hG^́S:vl&`\f͍$3q\u0007xDEǟn\u0016^י-\u000eH>\f`o\"IP8\r\u0000$/>o^_\u0005?Ha\u0015$geXRü|^?ɏ{&\b\u0015&g#q޹apGﾉ;\u0014\"$u\u001e\fL=/\u001dRhR\u000bՁ)ا-\u0016\u0003gГ\u000e\u0017\\pџ}Nv*Z)=OA\u0016\u0016%p|\\s\u001e(5Yf$\f\u001f$)\tB\u0005\"(\u0018+\u000be5\u001ah,Mk\u0019W_\u0005&&\u0005?K\u00030d!ga(oG%֘a#\u0000E\u0015\u001c4\u000fq'\u00106F1Q\u0018\rz{\bY1O-lʬ<7Ta٫N4K57\u000f]a\u0005K!\u001c!&\u0018Kv4R\u0017\n1@خrճqT)v\u001bIxr\u001c\tnu\u0018T<=c\u001c8wOEO2BDk\b`\u0015!\be,\"#=.\u0012H-go{\u0005|>\u0012Δ\u0003fu~qY \u0016RoN\u0013 \u0010\"-.\u0004ϵvot~<\u001c,\u0015B-\u0002T77\"x͉BZƩ.\u0003Tɕ\u0011SBS\bI]քVm\u000bCuޮ/v\u0001cØb\nCE%;h_B1\u00115\u0013\u0006;y˕e-\u00105-r}\u001d0āH:M ,:%\u0002\u0012co\u001aB}H\u0005\u0004Y-\u0001t&ZG|\u0006\u0018\u001fVz̢Z\u0001ބ\"\u000fe\u0013.FU \u000e&KTs\u001c^\u0010\u0005򛁰@%:ZgaPclLa\u0015\n mŝh*f\u0016\u0011JTȬ{J[\u0016\u0005\r\u0010\u001b&*b\u001d\u000fƞ\u001c1\u0018o\u001a8\u001d*H^\u0014ѝ\u0019\fo\u001d?1\u001bc\u0002*ؑ\u001eB\u000eдa@]U\u0012h\u0013%ʄ7\u0018\\\u0007#59Y1LULkNR&prK_i2\"\nr,'F@l~vHo<a}w\u0002wxgn+}mׂZlV\u00049I̎\u001ae\u000f)jDBy{331澴\u000byjoO&G\\%9SZh7qC/\u0007\";U\u0005\u000e]q(\u000e\rL!\u0013*.W/fBCݏo@4ƶ_<CfU\u0014\b\u0000!\u0018YTJ\u00027$\u001d\u0002&\u001d}\u0000p+\u0019{\u0011ᰪf^>\n\n!W݆qԔ\"#\u0011ꋒ\u001fG<pZV4Εh|QP\u001ay5tn²zM\u000e\u0002̞l.^47D\fkPU~W\u000b\n<*(I\u0017OB(N~\u0016\u000er\u0014,a|\u0016=\u0010vшpazg;wO6\u0001i?t'i\u0016\u0007\u001d\u0012nZQ'Ȗ\u0015W1aA`BN߿Qn\u000eti-84\rRf\u0005l\r\tV&Tk$\tYW\u0016=p^1+\u0013\u0002;^\u0018t,Sd'Ba\u000e$n^\u0018?\u001c\nO\u001cUwrdp\u000fU\u0006:¤]\u000e7Y_Vp4|4b\u0018,\u000f<6C]I\u0002ǳ\u0003\u001fě\u0019.Sĕ\\īҌFYv[Ӂa\u001c:\u0000`䰞\u001b(\u000eKA\u0000bJ6̌Rӹ)p\u0016l\bkKS@ڒkn\u0015}:\n>HYѐw\u0006IK[ovRy\u0003\u0006Muv3L'C\n\u000b1YBE!\u0000Tbl^`}TLG%xYuyQE\u000fІ~<2U!\thx\u0017ŜC)B{&o\b\u001a()8a\u0002m\u001a;\u0014e\\ӒSx\b\u001a\u0014Od_\nbĈ\\?\r%\f#Gَ!4\u000bfjVE9\u001e9\u001f7!ΰ\f4'\u000f?\u0012Èݿ6_S_2!O`lB\u000b\u0016s\u001d\u0019~|/O-旤5eǖ\u00181>Q/`r}R3Jj*;ߖ|E(\\\u0010(;GfM߫\u0006o\u0011˿L\u001ce\u0019!Qܽ-3Rd<I׹\u0019\u001cMN\rYsdA%+qP7HIM\u001a\r\u0013_:p`AT!p4\u001b˔2V4\r?\u001fLZW\u0003;C\u001aLG:\r\u0010yoб\u0013<oy)0\u0007OB\u0007\u001ffHA9\u0012Za\f*Kts\u001d9\u0003HjH\u0002_d\u0017$'#ïD_[YwgQ$=\u0017)AK]A߅\u0002Q\u001fL\u000bg=n+\u000e%+\u0005@-i. H6\rGDn\u001bu\u001aB^V~<sqG\u001c\u001a\u0017l@\u000e5@cJ^R\u0007j6_4\u001e]w_>\u00011e\t%}\u0016\u0006/#;Z,_\u000b!z%/Qӽ~\bpZH/!?.܍g'J}P\u0007*\u000f\u0007TN7\u0014N\u001bMu\u001f\u000b\u0006:°W1qW\u001c**-] \n݁f\u0011\u001ab\u000b-9\u0018pU3\u0005ȓ7(Qw\nh9ƧذA24w\u0000\u000f\u0001v\u0016w]#i!\u00052o!yx$\u0019FKHݽu<c\u0007\u0005\u0018jյ\u0015\u00031rsh\u000e\u0018%\u001f:\u001a\u001dq8\u0002 v{\u0019,\u001c\u000eeB\u0010\t\u0003xY\u0001\f\u001do\u0007\f&q\u001a\u0010\u000b\byKw)fR<W-!vE\u001c(\u000bT+!2o\u0001D\rJ3.\f44\u0005t%D\\6q\fV\u001fD&\u001b\n\u001azQ\u0013L\u0003\u001fv\u0014\u000fX\u00133K6~ꈹ&\u001bCTP-\u0006J,G-eŵ\b;f|O!\u001a,HIQ\u0012̭0^\u0006\r4s$o-F\u0005P;>\u001a#.(v5ag;{3qa5Q\u000e^Y,\u0014,]D'\u0006zdk\u0013eߌhxw+o\u00041oc0g\u001b>(w\u0005蔅0Knӄ73\u0018/F_2sd0Q\u0004\u001e\t)3C\nXeȽ\u0003sZӥT=6V\f#Ue\u0013PZ\u0017ӆ`_R\u0001\u000bC6C_\\Ik\u0017\u0003X\u0000b5u-pA\u0004\u0018\u0016%Uֆ\\(\u001dWL\u0011?e.N=c<w\u001bկV8i+A*·n\u0019n)\u000b\u0019\u001e`\u0018tșk\n\u0016idv.߳![xݙؿ1W^30EZ#Qva\";\u0012?(di`j\u00116?\u001aU}6\u0019jtX\u0012_ZEf\u0012O͓AU\u0005V\u001f_\u0012\b)W3\u0013-}Zw?\u0007܄\u00054\u001fI\u001ei0-T\tJ\u000b⋮dԻ\u0013\"\u001b Q&7bs˖1dIqēq\u0002\u0003^;X,?+&ExoKj:\u0019a/=eTCxq\u001eK_P+\\\u0016\u00043=܇\t`\u001a\u00131`{ç^|\tbΣ\u0007\u001aϪ<\\8\tK?܄uUr\u0016/nF\u001e|\u0005(mp4b+pxW\t^ˊq<% \u0016\u0007V\u001e[\u0002T(\u000f!);45\r\u0002t\u001dĚ![\u0015,P9|[Xq\u0010,\rΉY۞bʔ`Uv|nz\u000e;}z>jښ}T\u0003*\u0004[QR]Kxrk\u0001Cj`pE\u000e5_g/\"^\u000b)\u001bzST)\u0016\u0011prߤP\u000eG9w\u0000\u001a\u0002\u0005h+;\\kFD\u0017)6\u0000ݨ0\u0015j\"q@ڇs@QwS=c\u000fbZ\u0018(\u000bn\u0011\"w\u001a[\u0013rW8^\tba!+SNYI)?\u001e\u001f \b\f{*Q\"&\t \u001b\rʖYHHJeҧ={$,,=\\Xj;gB\u001d*v\u0002\"ڱV\u0011\u000ftI\u0003\u0004#Դ׭u^\u0013Y=`&IEg\u0014ҍ:\u000eKF(r:7Bwho\n\u0014+-ڷ)dbz>ΩiXCd^\u0004}T\r\u000f#R\r\u001f\u001d\u001cm\u001d#,\u0003\u0004b} Ѣy\u0001$\tr\u000eFanmi1l\u0015] I.a&\u0012VvQ{l&\u0013u\"f\u000e5Աk\u0007cW\u001d\u0018]ĭƚ\u0017\u0012⩼\u000eB>>b=J\u0011և?Xugh\u0007dXM\u0000H9ʈu\\\u0011\u001eD\tGa--[9{9U\u0001q\u0004W\u0007U\u0015jQBd}TG\u00148~SBujSHyh#Q~-y\u0013Oq1ڮxB/N\u0003F.&I,胋\u00198,2n8X\u0003\u00030%\r!}o|qoݯ}}+miR\u0012a`\u0010578iTʋm#<\u0012M\\\t<\r72j%\u0003ːV`Q\u000e8e\u0005 n@@vii\u000fʓF#uT:E󆐶\u0019\rȩaq4-Kx\u0003n~zYf\u001c2ϕ1JhN$ te\u0001p\u001a\u0007925|Gh=Ѻz'9\u0018?E\u001e\u0015976i.*y A\u0018g\f\u0003;G0%`Dj.->*,\u0014\u000bXULqeJbr\u0003kvhG#D%\"s?\u0004LԿ\u00106\n̐K.^-^\u0011uc\u001c=ڊe\u0011|Afjxj\u000bK^qaW*xk\u0013.(ݽܘD\u0016\u0002R^)nT[r\u0013)/ո\u001b7g|\u001c\u0010)\u0003[\u0016\u0014)6W\u0002\u0000\u000ei\u0018J\u0013H\"L\u001ecR#$Dp&bΤ\u00111[u&ypv\t2\u0015\u000eܑnsR߄ոS\u0005NkJf\u001bysy\u0014uD\u0004RHmŲ\u0004\tKج^\u001f\u001cG\u0002t\u0000\u000e|~D>l'pO\u001c.|1\u000f߈Ʈ`i!i\u0005Pta\u000fs%\"T\u001a\u000f:(ܦǖek:ޣ wT b&n\u001a͵^jF/-iG\rq+\u0010&\n\u000eS\u0002ՃmO\u0003\u000ew/X{\u0012;,\u0011\u001bC)Q'\u0014Ƽ☾5i럚Py ~S /JU@\u0016\u0011\u001e7c#\u001f̬3ܕN?R\u000f\u0003NT\u000b\u0005p+-\u0017|hkNz4Ywh\u001a'of\u001ay\u0014滥\u0001\u0003U\u000e\u0014dg<4\\4O䈑7\u001d0\u0016˗\u0013F?+lѪO>6\"F+\u0011suIA@\u0019s\u0001\u0000P\u0017\n3C\t\u0019o\n?%\u0004L,'qhx[K\nǝ(`\u00101߱\u001d˕柦r{wg&Uz\u0001N\u0002\u0015BЙXhoztم6L\f(s\u001e \u001auo$P]WW\u0010V\u0010\u001cj\u0019۲9,g4u\u0016\u000eƵ\u001ewlE[ŏgM\u000eoO\u0013bc\u000b\u0001y\u000fQs\u0004b,ʨ~\u001c_)H\u0016Pg`\u0014ÒA\u000b1ƕ'r.\u0018\r-7xT`\u0015R\u0005b,1\u0019~\u001e!=\u0012#ؠ\u001a[0\u001bNa&\u0007y\t\u001c\u00112Y(\ffdwےH8ǯ0'?J\u001d_Tj;p\u001b{R\fђ\u001e\bX_,\u0010@ir\u0017ԤY+\r\u0003sV{;D\u00047dK\u00064\u0013\u0018\u0005<0\u0011U[z)\u001as\u0005h\u0013y\u001f¥5\u0006Pt\f`<\u0018\u0011\n}\u0006qN'en׈$L*L\u0000b\u000e\u0006\fj\u0005t7UGsi\fR#\u000f\u0004\u0002\u00071\u0004[x\u0012g\u0013\u000705(ќYt\\moDl\r/}&e\u0019p.П*\u0002Z<+3G&R񋑎Sh,g\bq \u0001Mbx\t_gQ8oWͲ\b\u0012-4,T\u001a\u0013mM'\u000f9ucН{-\nZ\u0017dJGÛió\u0004ޠ^ͷ2jZT[ڟN0c\u0011\u0014\u0013\u0000*\\-(ͨ6\u0019#N \u0014\u0010-RxW/H\u00103ղ\t\u001f\u001c\u0013?\u0005/\u0017ƈy\u001bXվEC5N\u0007.u<̘\u00172*\u0013\u001cߊys\u000e32_Pȡzr4#]DƪH\rP\rI\u0001h\u001af5p̞n\u001a@N'\u00170o\u0017\u0007t\nI`\b睂;\u000fsM\rǢ\u0005ɼ\u0001``\u0003h\u0013P}6]Di2>^\u0017BN\u001d\u0014dq4:De\u001fJ\u000f c3*,j2x\u001fb8\bM2!f7\\MRrVj+f%u*j/\u0012\u0002\u001cNgSpB\t\u0016+\u001d\u0002\u001cuGs3\u00152Bsg׈\u001c\u001c\u0011qPBO%ao\u0002J\u0012\u001b*^ϦjX\\\nggmg\u0019x09QdN!K0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n22 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 48\n/LastChar 177\n/Widths 2429 0 R\n/BaseFont /TYZJNN+PLRoman12-Bold\n/FontDescriptor 20 0 R\n>> endobj\n20 0 obj <<\n/Ascent 694\n/CapHeight 686\n/Descent -194\n/FontName /TYZJNN+PLRoman12-Bold\n/ItalicAngle 0\n/StemV 109\n/XHeight 444\n/FontBBox [-64 -262 1150 937]\n/Flags 4\n/CharSet (/zero/one/two/three/four/five/six/seven/eight/nine/A/C/E/I/J/L/M/N/O/R/S/T/V/W/Z/a/c/d/e/i/m/n/o/p/r/s/t/z/Cacute/Eogonek/Nacute/Sacute/lslash/nacute/sacute)\n/FontFile 21 0 R\n>> endobj\n2429 0 obj\n[563 563 563 563 563 563 563 563 563 563 0 0 0 0 0 0 0 850 0 813 0 738 0 0 0 419 581 0 676 1067 880 845 0 0 839 625 782 0 850 1162 0 0 688 0 0 0 0 0 0 547 0 500 625 513 0 0 0 313 0 0 0 938 625 563 625 0 459 444 438 0 0 0 0 0 500 0 0 0 0 0 0 0 813 0 0 0 738 0 0 0 0 880 0 0 0 0 0 625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 378 625 0 0 0 0 0 444 ]\nendobj\n15 0 obj <<\n/Length1 2599\n/Length2 14297\n/Length3 544\n/Length 17440     \n>>\nstream\n%!PS-AdobeFont-1.0: PLRoman10-Regular 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 31776\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 694 194 0\n%%EndComments\nFontDirectory/PLRoman10-Regular known{/PLRoman10-Regular findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLRoman10-Regular)readonly def\n/FamilyName(PLRoman10)readonly def\n/Weight(Normal)readonly def\n/isFixedPitch false def\n/ItalicAngle 0 def\n/UnderlinePosition -146 def\n/UnderlineThickness 40 def\nend readonly def\n/FontName /ZHTYTM+PLRoman10-Regular def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 12 /fi put\ndup 13 /fl put\ndup 33 /exclam put\ndup 34 /quotedblright put\ndup 39 /quoteright put\ndup 40 /parenleft put\ndup 41 /parenright put\ndup 44 /comma put\ndup 45 /hyphen put\ndup 46 /period put\ndup 48 /zero put\ndup 49 /one put\ndup 50 /two put\ndup 51 /three put\ndup 52 /four put\ndup 53 /five put\ndup 54 /six put\ndup 55 /seven put\ndup 56 /eight put\ndup 57 /nine put\ndup 58 /colon put\ndup 59 /semicolon put\ndup 63 /question put\ndup 65 /A put\ndup 66 /B put\ndup 67 /C put\ndup 68 /D put\ndup 69 /E put\ndup 70 /F put\ndup 71 /G put\ndup 72 /H put\ndup 73 /I put\ndup 74 /J put\ndup 75 /K put\ndup 76 /L put\ndup 77 /M put\ndup 78 /N put\ndup 79 /O put\ndup 80 /P put\ndup 82 /R put\ndup 83 /S put\ndup 84 /T put\ndup 85 /U put\ndup 87 /W put\ndup 90 /Z put\ndup 97 /a put\ndup 98 /b put\ndup 99 /c put\ndup 100 /d put\ndup 101 /e put\ndup 102 /f put\ndup 103 /g put\ndup 104 /h put\ndup 105 /i put\ndup 106 /j put\ndup 107 /k put\ndup 108 /l put\ndup 109 /m put\ndup 110 /n put\ndup 111 /o put\ndup 112 /p put\ndup 114 /r put\ndup 115 /s put\ndup 116 /t put\ndup 117 /u put\ndup 118 /v put\ndup 119 /w put\ndup 121 /y put\ndup 122 /z put\ndup 123 /endash put\ndup 124 /emdash put\ndup 130 /Cacute put\ndup 138 /Lslash put\ndup 145 /Sacute put\ndup 153 /Zacute put\ndup 155 /Zdotaccent put\ndup 161 /aogonek put\ndup 162 /cacute put\ndup 166 /eogonek put\ndup 170 /lslash put\ndup 171 /nacute put\ndup 177 /sacute put\ndup 185 /zacute put\ndup 187 /zdotaccent put\ndup 211 /Oacute put\ndup 243 /oacute put\ndup 255 /quotedblbase put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-40 -250 1009 912}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0013\u000f6 ywTExӄ~ϧg_\u0002cE4ϰ]>m\b~\u0015;4H\u0019\fSHiT\u0004,\u0007vb̺> }qW\u001bW\u001f\u0010\u00044J\u0013۰M\u0006\u001f\b\u0003Qt&Q\u0018mcRj\u001f\u0006\bvZ\u0000k\u0011W,fb\u0010) *\u001bH]/¤\u001cI@)Y\u001az\u0003M(56\u0019G\u0016\u0019\u0004x_|,ӻp#F\u0010o>3@eݏ_0B\t7\u001d7$vƚm\u001aV\u001cL䋚\u00100\u0011\u000bt\u0016a)\u000e&iE\u0007v\u0000=\u001cN\u0001쨔aٯY^z,2]R\u000b\u0012\u001e\u0011q,\u0005\u001a\u0006nL\u0017H\n-\tyJ\\\\y\u001a4\u001ag\u001f=\u0014\u001fSȶr_1\u0000Pȕ9.a+d\u0006\tGڦddk\tfܹOzͲ&\u0016OC/WFcɒ&@僵;Eop\u00107\u001eњq$M\u001cgڼ|GS+K{CЌ\u000eqf|SeBݹ|ho#\b\u001ahF&|ZQQ=XǶ\u0015Qv\u0006Jj\",\u00055Iw{ɸ\u0002M@\u001f{_3\f@\u001296Cmg2\u000fgƍ޸jPrb\u0003<\b\u0018!4*/#k\u0017C\u0010\u0003\t\u0017@J'n1\n0]8x^4i\u0015\bA\u00106t\u0012q\u0000c$q\u00173:׎m\u001brgd!\u000b\u0000'Gc\u000fl7.=@\u001di9\u001eUY\rQ+̄Yk/\u0007\u001b?oW\u001dKvO\u001c\rI'\u001b兛}`-!*:ǀ.UIި\u001d}Qů?=-YR0Z\u0015\u0011\n\u0003\u0017IK>=NC**;\u0011T5\u001a\u0015\u0003\u0001Y=\u0000da|I>m\u001dHXJ\u001eEt\u0005L/Bh\u0005#\u001dt< H\u0011\u000bz=4n3Ū[!sc\u0004n\f-5,\u0013P\u001b\u00194dt)(\u000eyR/7\u000f^gѵ?cI$3τ頑~,ec3\u0001s)^e|\u001a\"kgR>@\u001eI%\u0006%m$]䙐QW\u000f)aJ}0kҋcm<D?\u0016mN9nb!7؂Uా>Rͷy\u0003+Nѹ^z5D!Z\u001dLD⪱\u001f%1MF\u0017\rKB$l1{+ٱ|\u0006\u0002X>Z\u000fk\u0017M`v\r\r/=\u000b\u000b׭#\\\u0001ZoAE}<qX\u001b`/\rI=\u001b\u000fD[\u0002r\u000e=\u001a\"ŧWg8LHlO8&U1\u0012\u0002ܠ1\u0006d][\u0004\trF]+H\u0010\u001f.\u000egd|\u0004&㰧s\u0005\u0005*f\u001eOv<d\fPo/á47\u0016قn[\u0019(\u0016\u000fLbd4yS4?͘q{1K^69XI;\fLSqҚ^{6:Ǵacb4dq'\u0010\b?\u0015*vR4\u0016#`9\u0000B%/\b߀A~F?AT.\u001aJ$:4\u0000|?8\u0011\n3\u000f\rH<!ʐ\u0007o)IHxЬL\nJ\u00176\f\u001dd|ilv\u0017\u001ba\u001cn(F\u0004\u001f\b\u000e\u0000i:E4+\u0006\u000eX \u000e6,\u0002V\\UIY\u001c\u0016v\u001e\u0005S\u0016rcH\u001ad]3e\f9r?I\u0007@ε?ӕ9o<Pi.DE\u0016b^]OB^Yւ\u00066\u0018D641$\u0019eiH\u0018rR\u0013\u0002i>\u001c;\u0011>(O\u0017\u0013Q/؎Q#Xe0\fߕyJt#P\u0014Oz\u001a\u0015(1\u0010K?\u0016nDWDW\u001f\u0019Yޘ\u00011琏\u0016\b\u000fy{UȞ?):U\\Y+wZ$k]\u001f9\u001f\u000b\u0017\u0006\u000b\u0012 \u0016e5K\u0015UZ<,ivx\u0006M\u0005bj3\u0019\r.#(ե\u0000(RK\r\\1v>4-갍β\u0011Z\u001b~XU\u000f~H'olB\u0019hjv\t\u0006\u001fd\t\u0002jAl\u000b|%\bj\\5WN\u0018ӘO3f}\u0004\u0003\u000e\"\f]\u0013P?.*\u0007\u0013kmol1\u0017S\u000es\u0015\u001d\\\u0001\bXKNh-r^2c>\u0013o܋t\u0018Tڻ_;2o)9Ŀ3kѹ$px{UW\fcsDuU\u0012\u001c\u000bApl1ge\u0000:snOb 5\u0017$UWz`\u0010\u0006kB\u0019HG{p[oɠP#U=\u001d)j\u0016?\nEyA:\u00000]Hɴ`sThN\u0018oGؗW֗RˡP4_@V1{\bv[YpSöYv\u0001N_?,9+Ʋ\u0006\u0004\u0004\u0012!\u0013%>$7 ,(Yo\u0007\u001f&\u0006VA[\t|8;u\u0014\u00145\u0014\u0004T64N plpsʯUE\u001bJBIIk\u0017L\u001c.(ZcBv\u0006џ\u0005@űÀX\u0012+\u0015\u001fB<\u0019\u001b%̀۹B&Rc\u0013\\ \u00169k#\bӿ⏅\u0001S`0\u0012_u=-9\u0011k7b5\u0010J?#\u0018ɖ\u0002{\"wgvpcd#P\u0000ջ\u0010s(=\r\u0007\u001dOfHK5]\u0001͵X|｟\u0000<\u0016\rپw\u00023\u001c2\u0004\u0016#@\t`QkdRl\u0005\\\"b]\u001fL\u0016cN\u0013\u0012rx4Ta\u0012j=qKI>&Lvxv#LX\u000fv\u000e]CO\u0005ֶi1AO,ܳ^lSVK[;i͜w\u0018J9#\u0018|٣\rh,z\u0005z:\u001f<P\f.\r!\u00060\u00076jNTxWAew#oӣEt0D\u001b\u000ejlq1Q.8\u0016IgtG9}N9\u0001\u0019\u0013Y\u0000\u0004;d7\u0002}\u0001\u00064q 7c \u001a@\"\u0018`^{ɔ\u0010:m.\u001eS=$/\u000eз.FΜ\u000b\n\u001b3\noJ?5\u000f#&\u001b\rfɐU4E| ~Ԧ\u0000\u0011\u0013\u0016\u0003G\u0004%l@X4u09*`j=\u0011W$+NC\n>teb\u0012c\fο\u0000t\u0005_\t*Mr<Q:Y\u0005ۊ\u0014b*\b\fΥH>Нv\t*\u0018ӣGZ\tNHB\u0016o$\u0015!\u00033#\u0002\u0000\u0001b\u000b?y\u0012u\u0000P\"ë\u001fpu7DT|^S\u0014\t;B{3S v\u0016\r\u0007svί\u0015\u0004\fّHx:peSrW$&?BdLnX5!n \u0018U\n\u0002kd7\t\tZbiva\u0011wJ\u001fk\u000e;\u0006\u0010njfCN\"<JX\u000bK(T\u0000cOy=Ｎr\t.\u0013\u000b\u000f-NF\u0013\u0013\u0003$s7M`mf>\t\\#EYB,,\u001f\u0018cģd\b,ESY\\\u0007L~nSkk\u001e~2X\u0013u.\u00196\u0017p6O\t類\u000bUѷ%lyX[čʽ\u0011D\u0016>\r_\u0005U;\u0019c;\"?>09aY_!\u0012!(,9}vT%\r}]a9\u001bӨ\u0015JY\u0010zԨY\u0014Ut\u001b:\u0000P\u0017{/m '\u0015D$稝-aP4byZ|a\nw\u001aw3:\u0005̀\"\b͌ysa~R۹,\u0002.\u0014\u000f*(\ffߝ?\u0001N-D~\u0014@'#=fU5!:cq~(\fdF0QI9el6|\u0015\n\fGM\u0013\u001eK,@TR<\bOA|\u0015l\tPS\u001d\u001a'\u000f3[Zt;\\xAӟb0\u001c{K.c2/ĝKYΏhl:6=\u000e).8\u0013b\u0001\u0012\f\u000bj߀x\u000e\n\"\u001b,U_*cC](f}`j\"\u0013?fO6\u0004͗N*\u0010F\u000b8Jt/k^g\u0003U5r\u0006!䔇\u0004P\u0002\u0001\u0006oʭݺu\f\u000b'\r<\u0018~]d\u0007?Jm\u001d\u000fS]\tK4\\<2T7\u001c\u0011\u0001'xHojvX6\u0006A\"BKͳU,k\"0/HDhtB&)CJ\u0016Ĕu'WG{\u0004L&:<Lt袉1HFF)%ea\u0016V$g9k&\u001ap\u001c++lXlhix˳F\f\u0010c\u0002fh\u0010e\u0005sl<I\u0003cx\u0006j~~ 5D?W\u0005ᨱJXO~t-Eh6$Mue\bsmN/ep\u0017mR.vOv7\u001ba?!'\u0011\\t\u0016'XJ\u000b\u0017\u0017k\u0002%`$ۓ2-ܾ]|\u000e$0\u000es\u0016\u001b\u001f\u001fCiH7\u00134\u001epVF%l{\u0017]6\u0003c\\\u001c@(+=7\u00199Tt\u0005=\u000b9\u0018_\r\u0014\u0004\\cq_[p\u0006,i\u000bYM'Lж7SHS`)f:C\u0003uTL\boLsw\u001eqx⫟+\u0011Rs9B\u001d1C\u0012jvdg0\u0005\u001e\u0010Y埛՚\u0013\u0006|=q.\"3 Ј\u0018mk\u001c\u00178r7\u0013]-Qb~+aH\u001fxMb?ZE![R7\t3\u0014\u0004\u001ao\u0015/Io\u00028?Hxj(# )R7\u00172hp\u001cBS(oNy+{>\u00037\u001aepv#&.\u001e4\u0014\b#!a0UC,tl|,\r;ՐLGz\u0018\u000fw0F;y'\u0001c7f(F,5t\u001f\u001bZ,\u001d\\:O|\t-78\b-R.!\fs~D\u00122\u0018p\b\u0013W\u001f5Ne h\u00054)$\u0002I< .\u001c\u0015\u001c$ąe[Sh\u0013yDD\u000b\u0010l$*\f$n+F\u001be\"\u001d =\u0015]\u0001\u001d\u001fX\u000fϷ`]%9\r\tL:\nrZ7z@\u001b\u0000\u001bZ\nV\u0000,Zz\u0001:\u001bj\fЊuk\u0003\u000b\u0004\u0013mFLhO\u001f\u000f\u0007w>\u001ft*)\f5\u0000*͊?@\u0012mDB8̙\u0003s1\u00147\u001b6Y\u0003øQT0x\u001bՔp'caS3\u00175I(|+ \u00013+SfSr?:$RT~R\u0011ן\u0017Yè\u0001\u0004\u000b\\K,i%CԂ]<DgNz/\u001dZ}׀++)\u0010ßb8oI\"\\D4f}\u001e..\f\u0002U\u000e<!C\u0007؍4xr+\u00141`\u00169:XЪ\u001aGfX:{\\\u00150\u0018ת]b}0\b\bҺ<\n\u001b?g\u0006cUld-P[F@IJ\u001f\b:\u0012KHvy`cuF \u001f\u0016\u000e3/Tnڀe~J\t\\\u001d9RZJ\u0017 z<ȉ^\n!\u0015qU\u001d\u0015.d\u000eP/Wx\u001f\u0018\u001cb-6\u001e4?}Vxj-\u0001].\u000fK\u0015I\u0016\u0013.\u0019\u0004Ib+\u0005Qcja׿\u001bY֘xr!\u0014>Q2\u0019\u0018l\u0016f-goz\u000fWwB+#\u0006\u000f$R7U9lo5'?%\\񺆍§\"\u0002\u001d2EMACo\"D(hK0<^}*Rfc\u0002(ܼ\nhu5@\u0015oWw^VV;²Tz\u0007ؽr(d?SP\u001eۥFy\u0017e=t!J\bһ\u000ezg!^S\u0012Of\u001e\u0013׮MА\u001cήPXRQcoQ3\u0013UF\u0014\u0006FJXkA|\u000b2&K\u0015/,/^xߚ9A\tw]g\u0010d\u0005\tP1L\u0012Y\u0005g\n\u0000\u001d\u0018aWGM\u0019SZ\u000f˄<N\u0017}|15\u000fv\u0010c|}C>\u000bH.BF\b\"c\u0001\u001f\r\u000f<|<y\u0006}QҕtR\u001f/9r\u0015Edc\fr*q\u001f\u0003V#JyޞF[l\u0013ALj*\u0015# \"P>>EqB\u001f'\u0007@=>a!̝:ec\u0004HS\u001afmHtAD\u0002\u0013'@\u001c'2k|pwhy$i\nN?ʥM֪\u000b^x\u001e1\u0019C\u0014\u001e\u0002\bW6\u0001q4\u0018va\\\u001a\u001e\u0006>L?j# L4\u0007FU\u000f󂇖xVS\u0012\u001eH[MW;46\\t\bQ9WL3weF?w#\u0010\u000fz\u0013}@\u0019tnP\u0018r\u0015JtATw\u000e\u0016<\u0005#\u001cnjMEe\u001e\u0002\u001aTʗ7I{\u0003mᭈ-׭_ƺ=f$\\\u0015,thav{|ጝxS&pf #LN肹-\u0001?X-Cu\u0019g\u001c\r}\fSp]ar .e\u0014\bc\u001fk:\u0015\u0019%\t'\u001a\f*y\u0017A\u0001\u001d\u001bm\u001eA\u0017AO1W2NE\na\u0004Ρ?ՠ*\u00156\"\u0000QK-F<2g)w=MؒiFG\rn\fN\u0006\"H\u0015nt\u00169F]㿆#\u001fZP\u001d'\u0019\u0018fC\f[=EDWWA<Px'9(QQY\u0001*\r4KG\"?[WDFUL:\u001c9i\u000eobQ\u001e\u0015\u0007kxj<Biu`ɷTiA\t>@8~\u0014b.+E)m\u001c5ZsaU^E.*!^>'&\u0003 j*\u0007aB4\fGռt67\r\bBGn?uq3g_f\bϊ(\u0006]֊ZM@\tSoNU$\u0002(S.OI\\µ:6J\u0015Es;'\u00119x\b<+6\u001e#dG!E\u0014S\u0015>rg\u0018E~/\u0004TӜW\u0006\\}\"6j\u000e\u0000\u0001Mg\f\u0004a;ޭ\r\u001f\u0019F\u001a\f\u000bhPi܅frLD|BT`;W+3\u001e5Tix\u001091F\u0014a\t4?͑4G/3P\u0001\u001e49-`E^KLW5F\u0007\b\u0010d\u0014A\r(y2x[T\u001b1㭽[@\u0003Wúq\u0005,X\u0011A\u0011\u0002Jx5)rc!D>^@Tq;\u0017ٹb\rC'\t(l@[4E\u0003/03D\u0010\b\u0019\b3S|qt\u001bqP\fSR\u0011)d\u0011MlNXgR\u0016K\nLRh\u000e\r[TmOٚ;P_f$0ĺ\u0001\u0007-Gݍs(<1\u0001aއˑ!\n+SHF+QWqo6\u0017!c&\f\u0005x>Xc\u001a愩V9#j\u0004\fFY9c@\r\u000fdODKU$2u:\u0016}\\+8Ȱ$,\u0005U\r,mn\u000f37尙\u001cfa\u000f\u0013b\u0012ٲڍ\u0012ܓ\u0013=BM\u0010\t\tԏJli~[\u000611Y| cj\u0019\u001a\u0015My_\u0003GN>!r6\u000eo\u0010;BP\u0007$\u0006%n\u001a26\f\u0014\f?\u000f^5r*b\u001d]+;=ȴM&Z\u0005ȉR'R\\U\u0002j9\u001bYCX8\u001d</۳O\u0019DQ\u0014]h\u0011DIy,i5#?q~A,1\u001c7Qi >z\u0003%5R\u0015`C\u0001d\u0019\u0002QQ_O}.\u00061\u0001#\u0007F;?\u0013л)(\u001e58.>K\u000b\u0014|Bz$K\u0006ȓ:\u0012\t\u0004_\u0013v\u0011?㚊I6jD\u000e\\,mM.|L`fV\u0005i-\u0006|F&N\u000fUP:F3\u0019Q^\u0003)A\u0005\u0014vl\t\u0001fC4~\u001501dڀK\u0013\r4h؞Jjq\u0000A\u00043q\u001d\n3GP.UŎֱ4lC8#gT9\u001fanv8ť2z6֜60h'0.-W܋.\u0010d\u001c\u001b4L\u0002\\@(&)Irx\u0002`?\u001a\"\u000f\"d\u0007-jI\u0012,~0},\u001ba#{%Ml[FS[\u0003ͱDw\u0006\u001fMKn\u0019\u001fOuΣl\u0002u\\kT.\u001fLȴ\"Y\n˝\u0002\u0011}\nH\r\u0003TZ\u000eqz\u0003I~\u001fXU(\u001dE)8JZH:XK>\u0014s\u000e߇\u00184\u0006w2Qzq;\b*\n]|yfT\u001c\u0018т^'C\u0015\u0016\u001e\u0001\u0000u^Tw5\u0003UJ&eJqb)\r\u0005M%H\t\u000f.C\u001a\u0001&EߗՍW\b\u000bf\t!nmVA\u0007P(b9iЩ\u0014mVj*;-f7fB\f\u0006jQ\u0015Xkv]\u0000n\u0014muI}yѨ$7Hl\r`sxAT\u001eY%1?\u0015zU^H;\u0003\u001be\u0010U=a?\rg/\u0000\u0000t\u001dpI\t\u0014i\t6wֆ[z\u0006Y\u0003\u0005ln\u0002\u0004\u0006Tծ?F#,U\u0000/^DTa\u001b^{zG5SX\u0015u&\u0019s `Fq/{$-La.Ӄ\nrqX\tSk\u0002yj.\u0018ǀy֧4eLV\u001231l!7h$?hpLhJ!U\u0013V\u001e\u0006\u0005\u0016\\\u0006\u001e\\?oq!\u00027\u0018#gRyG|lX׾ni\u0006\u0011\u00032f0*\u0007\u0019\u0012(b\u0002\u0004j\u0013.yûNĠ\u0013,\u000fl\u0001\u000e\u0001\u0016r씮o\u001e e\u000efVHZ.lxn\u000b\u001dgM3rŸ\u0006}\u0010\u0014uSџ\u0005\u0004\u000b&A\u000b:TmS!\u000btִM|{{`ǾhJc\u0000갃\fM7\u0018/k$\u0014\f\u001db#\u001e`Fk*%v\u0004\u0006:\u0002Tr\u0000R@\u001e+US6Vc?b}[\u001bXF~(yi0\u000b1ݬ:IW\r_d|\u0005ac\u001fErJ& |C%^qb\r06Y\u001d\u0018z}=\u0017WCo#P_e\u0013\u001cy[Ē\u0006\u0002j\u001c5Җ]\u0003J\b`\u001e\u001eaPH:\u0016\u0007\u0001|9\rM3lRDbX/\u0006$%u\u00049aRtOgu\u0013\u00016yW\bj\u001bF\u001cUKrv\u000f\u000e^y6`p\u001df5o};߀ڶ_\u0012\tb\u0000z\t_#*>\u0002#[\u0005XF\u0000s]C.?O(\u0011\u000f\"n^˾\u000e\u001dlkZS9'9u!n\u0003Np#|O%\fO`WH\rTtslU߇) VN:)MS!\u00141\u000b`xQ,~lvFie:\u0004%\u0007#7 ٽl\u0004[S\u0015\u001aAM\u0013q\u0018èZڳM^^y\u0000%\u000f\u001a}j+k\u000f+iy;&8雌(\u0002\u001d>\u000fE\u000fChB3D(;&\u0017\u00127G_s'\u001f$(R;P>\u0012X\u0006F6\u0000?]\\\u0013\u0019U\f\u0001ܴҦm@9?OIP\u0011¼\u000eE\u001d?$K;͎GmY\u001bS\u001eQ\u0002\u0013.Y~$\u0014f\u001f8\u001d\f\u0004?2\u0015|pWy\u0010%6݋{\u001f̿G,\n\u0014Vq7M\u001b\t\u0010\u001bY\\L\u001f(&n-쁨oG3=\u0010\u000f#O\r4PąC\u000edh{/=.6\\eR]\u0016\u0015r\u000e1o\u001bbڐQ`\u0011DV'*=\u0011LYH\u0006t'\u0001%\u000b\u001fεp+C\nQ\u0003on#q\u0014Rhż4I$Oz\u0002(GX1/9*\u0002HA_\u000b_\\\u001b.d\u001dN$e\u0015NN2;׽Φ\bKҟ$A\bbQ먹ʝk/\\ܨ=7V\u0001\u000eq!\u001euFo.o\\t&=Y$+XYSqރ(J6Z=mrYYE.R#B?.uq4Ĩ\u001f`fM\u0002\n\u0004(xHd@\u0016ҟ;䎦\u001dG\"fa\u0002z[l#\\:xDFWQQ#,\u001bt<JuN_myxmӑ\u0018\u0017\u000b%|o d\u001a\u0015Kȋ.=uPzTk\u000f&|q&gT\b+:F\u000f˭\u000fOx\u0011'~&Un$@π=Ŭ>?\u001d^'+.aSBMo\n잊=\u0006S\u0014\u0001\u0003\u0001Q+\u0017jʀz(\u0010P\u0019%CՀ̾-Ny\u000b7\u000bTѐe?pS_\u0007E@.\u0006v\u001a\u0019x59$\u001d\rAFU\u001e\u0018K5&p+(4w\u0007#Ĕ|\u001d\u0019\u0001рX\u0001zLҴ{y\nAd*}\u0013{t\u0003' /og3u4\u001d]di\u001f\u001cKRa:?\f.\u0011JoDO6_6lFMC^@M`S``ݴC\b?\u0013\u000eƘ\u0005ULɢ3̕E\b\u001cD\u0015)\u0013\"Rd\u001b΍c\u000fq^3V.o4}pF{Py#=dK b\u0018[Ihc\u0002eJ\u000b\t\u0000&T*]q?kћtI\"$g$\u0000\u0005X@d`\u0012mcV\u00107Ky3xt\u0016u->L]\r6\u001a_Ft?Gg\u0015-*\u000fc:X\u001f뮇\u0001S$F\u0019}/\u0011?d\u0003?^^#\u001ctٝ\u0010%}иSk&K\u0014\u0010IE\u0001+8BwKP\u001cW܌6|\r%MC\u0011\u0015\"e_͘E#'E\u0006\u00115\u0000Ju\u0002\u0011pT8V+\u001eU\r>}}\u0015M7f^\u0017x\u0006\u0004\u0007(ouA{ЫUCP*~O\u001c`BT}\u000fH\u00180BڹDe|\f\u0004{S\u001e@r?`_w]tk\u0019/\u0002x\u001f#:'^\u001aZ)\u0018ؤT\u001b\u0003\u0007}\tˣ&9/\u0012>\"t3q\u0018$3Yb\u000f\u0004=\u0004Q23V\u001fg\u0014Rȃ{p\rgCy|:\u0001\u0015p\u0002/^-\u0000Va3\u001aw5^z\u0016\u0014%+}\u00028sm=5ق9\u000b\fT\u001e\u0002?\u0006V=aF[g\u0007\u0018\u001aԱ\u0006r'L\u0014\u0004;n$}\n\u0007{\\@MbEQ\r\u000f5]%O\u0018\u0018\bơ*<[\u0013yF-\u001a\u0006\u0006\u001b\f\u000ex#Jnkyz\u0010*wl(ux=P\u001afc_\nXY^w\u0019njz`\u001b(O\u0003)C\u0019v\\D\u0012E\u0003r\u0014,1p\u0018uB =FYA}dj~7.ݺH4h?\u0005K\n?E\u0011ӹvEK\"zsQ\u0010\u0003p!)1Eqhd<#o\u0016qjLo:1g0?gcUV\u00028Ql^AI7<׻>2\tm;Q+-n#D\u001cه\"g!3r|Y\n;_l\u0003s\u00054WE;(<605\u0001uō\u0017G\u0019ޔX_f\u0015~v\u0019\u0006@\u0001LC\u0005\u001e\u0014\u001fF\u001bUŘbe.)g(\f\u000f^\u0007hk?+\u0010`\u0007HތyĔ\u001cXݓ1DB\u0005%\u0014`6x\t\u0003`>\u0007z|#eT^|\u0013#\u001b\u0001Lwex{\f\u0003\u0002\u0007uH52P!p\u0013Uû`\u0007\u001a6(-#^벺X9\u001bdF=*.)KA\u0013'$Է_YMo#Vbeo\b\u001c\u0003{3t\u0015\u001605oWI\u0014\u0002c\u0006\u0016ytt\r (zYnم\u0018d6$\"SY}\u0012Gy\u000esᔲ0\u0005\u001a/w_%\t|r\u0001dKq􃝪Zvg\\w\u001eXW\u0000mweAP\u0004\u001d\u0003L|mA0Tɫ_ޓw@t];97c>\u000esUX;ݸf;sSM\n`%YKSFE\u000bm<*!+i[b849\u0000,ٳ@T\u0010\u0006\u001e5^;zt2[`U\nkq9}c\u0013R l^:\u000b\u0011TL>\u001f\u001d(ߵ,5\u001a\b0\u0016Է{r-'IY\u00101oMds',k\u0004T+h'\u0010}Ę?7.\u00069\"\u001c7UϒUA\\i*Q6\f[x\"1 rv4tZq\u0005c\\J.%K3/hS:]\u0002wF\b:JHc甇p0aJgP))\u0017q&+w3pL\"O\b|[82g\u000e.=,\u001e\no\u0000Uq<-⃆K7|hd\u000bijԊRn,\u001dכ\u001d}Jb3\u0014\u001fǟ\u0018$y\u0010_F\u001c\nxT\u001cE\u0012 Hmŵ7\u001d\u0017?\u0002:\bw,\u001fh\u0005P=\u000b(|\u0000g\u001a+>\u001aķ\n\"\u00116V^Y*\u00182\u001a%INׁ]Tai11\u0012iMP\u0007Џ\u0002\u0017\u0018\r_̼+[\u0000\u001a\u000f?56+7W>Z.LĮ|\rn\u001d\u0017yX\r&}\n\u0014.\nHHzI]\u0010?ZR\u0016j84\n\u0002\u000eFfWg\u0010#\\\u0019g\u0014\u001bz\u0001]leY\fsy\u0015PaCFZ;]bc\u0006P~k#\u001a)L\u000746)h\t\\98GW47/\r;>w;$x`y3D1XQO,SӳNf\u0015\tdמH\n𣘇lN~\u0017(\u0006:u\u0012i\u0012\u0013{\u001fE\"\u0015\u00106[~ނ^r\u001d5\u0003SkeD@6F&\u000bYU\u001f{$\u0000}ӥkͭ6Z >Ѵ|!r80Bs;5rG~Ea,=\u0004|)gV\u0018N|\u0012z\u000f\u000e7\t\u00105|6'\u001c\u0016X#H$G\u0013\u0018g(o\u0003P\u0007\fې^\u0019l\u0003ϵ\u0006h\u0006t\u0013kdJ4\tOi\u000e:Ϡ\u001f \u0004 \b\u001fp?&\u0018\u0013J?=T2Y[/\rcS4I__ݵ\u001c&Y)k֚qT/i;+\u0017II\u0005\u0011B#M6ǁ\u000bxy\u0019쩴رĩ\u0001Amz'\u0013\u0002}nѺ%\u0014\u001e\\6.)?ݰ$=+R3#_or\fmB)FK\u00168O{_;\u0012V=2\u001f\u00077\u0019Ͽo%L\u0010\u0018K֍Vr,\u001e\u001e 7krI\u0013\u000e`\bCA&<L$\u000f4k\u0019~'\bq\b 0j]ƽG\u0017i,h\u001dKd\u001b#\u0010e<H_)r\u0006;|\u001e}[+\u001cC\u001cXmc\u0002>\u0002~\u0015h\f\r\u0011Fuh?\u0014;Fv\u0005zQ<ޚ&e&]ng-x*J\u0010:7\u0017\u0011I0\u001eF+P0\u001fό\u000eA1+\u00165Na?tԬ`U9kgwT\" @\u0019k\u000f\u0017l\u0013\u001cc\u0018g ESYo\t:Ü}4R<䒋\u001a\u0004UQ([\u0014]ToT<%a<QwSZ;\b70Ay浖\u000f\u0012Fm\u0005W&zEYC1\nWM^g\\&\u0014.\u001a\r\u001dD\u0000¬\u00010`4{q\ts\u0007צ\r<^aɵp0Z#2\b\u0016+\rX34Aס-\u001a\u0011\u000b7eC5w\u001ff*)^30|gr񇤜D\u0017 #\u0016q\u001fa-\u0012!q\u0003\u0013G1\f.*$~I\u001aۑ_㫆2:D\u0004/A%\u0000\u001f\u0010\u0017;\\`\u0003eG(M\u0016#NDVE͑[J\u001dH\u000f~\u000eøBH\u0016\u000b4lZ\u001f&e\u000e\u0002X\b2I^7|\u000e%-+\u001b'E@Gn;L\u00021\u0019\u001c΄YL\u0015d^>l9wjO\u000e-PljH\u001699)EA'EOX\u0002ܚh:)o\u0005nY|Y\u000fU^{t\u0007\u0003\u001d\u0000E?:rA\u0005d|}sψ >\\X\u001aʰv3~\u0012ScLvFH'4\u000f\u001f\f1\u0003\u001fFD\u0017۔vhWW<Tܦ\u001b%7zj\u0003x\rU\u0013\u0012&T&{I=7\u0001\u0000SEN\u0016\u001a-!3źPS+\u0005\"P\u0015`Z\u001d8D\u0005|-Y5皵d*-uxE\r*\u001f/e\u001c\u0001[\u001b:7\u0018GL\u0019\u0011\u0013y\u0011h\u0002R\u0006ʪ(XDl\u0017_kx5#M\u0000:'P\u001f\u0013|j ry@1r\u00161.r\u0018'up ۱c{\u001f֭?ws`A=\u0007?\\ωt.ىѠm*ps[d^z\u001e'*KwbyY,+\u0005\u0002u\u0002k\u0005$f]\t&ML<\u001b\u0000S{!CD?p\bM-;\u001aڰ&{(Z5B\n\u00038&G6\u000f=Ǚ\u0007H8NAqZ\u0007\u0014}X\u0011Š\u0004\u0012\u0000\u0019\u001d\u0010`c-^|fgq6L\u0004Dj])t\u0007x\u001eN\u0017\u001de;|\u0017\u00129wIi\u0004)5E,\u000eS/i%\u0003\u0018Iի\u0013s&Β\u00173Tg>\n[~(\u0014\u000bۘ\u000fA!\\排I*R0L\u001a\u0012<\u0016b\u00150000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n16 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 12\n/LastChar 255\n/Widths 2430 0 R\n/BaseFont /ZHTYTM+PLRoman10-Regular\n/FontDescriptor 14 0 R\n>> endobj\n14 0 obj <<\n/Ascent 689\n/CapHeight 689\n/Descent -194\n/FontName /ZHTYTM+PLRoman10-Regular\n/ItalicAngle 0\n/StemV 69\n/XHeight 431\n/FontBBox [-40 -250 1009 912]\n/Flags 4\n/CharSet (/fi/fl/exclam/quotedblright/quoteright/parenleft/parenright/comma/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/W/Z/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/y/z/endash/emdash/Cacute/Lslash/Sacute/Zacute/Zdotaccent/aogonek/cacute/eogonek/lslash/nacute/sacute/zacute/zdotaccent/Oacute/oacute/quotedblbase)\n/FontFile 15 0 R\n>> endobj\n2430 0 obj\n[556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 500 0 0 0 0 278 389 389 0 0 278 333 278 0 500 500 500 500 500 500 500 500 500 500 278 278 0 0 0 472 0 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 0 736 556 722 750 0 1028 0 0 611 0 0 0 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 0 392 394 389 556 528 722 0 528 444 500 1000 0 0 0 0 0 722 0 0 0 0 0 0 0 625 0 0 0 0 0 0 556 0 0 0 0 0 0 0 611 0 611 0 0 0 0 0 500 444 0 0 0 444 0 0 0 336 556 0 0 0 0 0 394 0 0 0 0 0 0 0 444 0 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 500 ]\nendobj\n8 0 obj <<\n/Length1 1301\n/Length2 4562\n/Length3 544\n/Length 6407      \n>>\nstream\n%!PS-AdobeFont-1.0: PLRoman12-Regular 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 31595\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 833 233 0\n%%EndComments\nFontDirectory/PLRoman12-Regular known{/PLRoman12-Regular findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLRoman12-Regular)readonly def\n/FamilyName(PLRoman12)readonly def\n/Weight(Normal)readonly def\n/isFixedPitch false def\n/ItalicAngle 0 def\n/UnderlinePosition -175 def\n/UnderlineThickness 44 def\nend readonly def\n/FontName /IQUUMV+PLRoman12-Regular def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 65 /A put\ndup 68 /D put\ndup 69 /E put\ndup 77 /M put\ndup 78 /N put\ndup 79 /O put\ndup 82 /R put\ndup 83 /S put\ndup 84 /T put\ndup 87 /W put\ndup 89 /Y put\ndup 138 /Lslash put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-44 -261 998 919}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0013n\u0016o\u0002\u0001\u0003\\A\u001cH+߀a\u0018cCx$W>`76}JL9L'wL&fI?a\u0003VSC>؈\n\u0014ί\u0012я\u000eT$3䈥x\u0010\u0001rv̸\u00174fTAA[kέ~\u0012\u0018Jǌ7//\bn\r\u0007\u001fZ(S%XalZ=I.#664bVǔ˙c;W1z\u0007>\u001f0t\u000fe\u000eqyMtf\u0013*\u0011b)4yP|-\u0013\u000f\u000fX\u0014xɕ%.A;P,?\u001dYn\u0005\u0019:\r\fH?\u0005ѸswU=/&@)\u0010_!\u001bqh\u001f\u0000\u0011\u0017,F\u000e}7z\bKf}xɽ\u0003/O.ٗ\u0001FR)LJNR\u0011U^/`8j\u0015W\u0005UR(lk;]JϬd\u0002]\u0016\u0005jZG\u0010\u00120\t\u0006f\"s\f&\f\t(Qe{,[\u001bfCj޽tEh(֢*Aw\u001a\u0010Y\u0005K\u001d\"\u0007\"A$,Р$\\f?\u00182F7pHĊ^?+Q\u001b[\u0004H\u000bs\tk\u0001@\u0002\u0007\u0011\u001a\u0016ap2'TU{e\t)y\u0016k\u0014\u0014D\u0010D\u0014\u001cr)\u001e\u0015a\u001c54nQs#l#MT)`\u0006`_\u0012b76\rb%_6 \u0016\u0006vޑ\n3;~ї\u001ej\u000e\u0010K:ef(I5ʽ3\u001aKD\u0013\u001b\u0012\u000f>Ky\u001b0:fP+\u0011_3df\u0004\u0016?r3R偗/㣃JLSh҉{G\\$\u0001B4^\u0010?p\u001a/ Q\u00060V\n x#,( \u0013M\u0001k\u0001r\u0003Z\u0004wD>zM@m4x_\u0003=[r\\֪\u001co=hVF\nCgTp\u001f#9\u001d;@nYl\u0015Tg\\ꔦ8'\u001bI9s*R6C\u001a\u000fdE%j\u0015\u0003GRw4\u00008\"$_\u001c\u0014+[޺'H\u0004t1\n\u0018Sk\u0018yru\u0019\u0019H\u0010cSY_g\u001b\u0005f\t\u0010~\u001d42\u0000OWrb]f\t~d |9\u0014y`\u001eY~I\u0010u̝_dh:\u0018\u0005RH`N6Wv\u0006mox\u0001\u001a{1#r\u0016܃E4XWc>s\u0011\r2)J͚#3Ǿz8>\u0000?׍\no\u0012@0^A\u0004\u00117\r.F6\u0007LZRs\u001f\u0006{m\u000b\\\u0005N܌z'W@ky\u0006iv1\u0006رm\n\u0015ؤ4s#b6\tO\u001f\u0014\u001fF\u0000M,|\b\u0017$S&2+ēAva(󊙜g*իaJ\nSԇjk\u00170\r&8<\u001c]yxX78p>4\"k-\u0004vqO&Oɨ;\u000f\"\u001ek%tk\u000eZJ\u0010:\u0018`6ӋPŎ䙲3\u0012.X\u0000\\.ul\f~N\\s\tuX͌5OgL\u000e5DNw7dY\u0018.-)Dqm;?\u0017.\u0011Q\u0001W\u0011MwV\u001f6\u001cϗtgrਘըg\u0000ېdJ:*4Ӟm5E\u001a/+!w\u00134䇏\\\b\be E\u0017j\u001e/q+F[F\u0015H%ɲj*\b@\"d\u0005reXʟRqjsqnJ\u000f*\f<>D\u00079\u001deSwCDELFw/gb\u0011׆\u001aC\u0017fF2\u0019kj֟\f{\u0002z4r\u001e\u0014&\u001eM\u00029\u001cg\u000e[Bhyl]\u0016\u001d\u0003B\u0015\b\u0012\u000erA%&4[M?i\u000b%,QDE2vޚob\bP%sc{pE9c7x\t\nH˞\u000e[\u001a\u0006F 7\u001d\\ˏ\u0000_L \u0016d=wpn\u0004\u0007V 0㊮FK\u000fo\"J,\" {\"gR\u001d!11s=\b5p `4pSR\u0011\"żo\u001ff\u000e)aAנ\u001dq\u00132X\u001c vs-PR\u0007d4r\u0014Tm~\u0005x2\u0005\n/=7ѽ_\u0005<fsT\u0013+\"\u000f¹?\u0017#EC9cu\u0003/М.8չ^\u000f,OQ\u000e=?DA\fJs|n{\u000fQ\u000f릃4+0l6E\u0010$2mض \f\u001d3qS^\u0006<\u0011L\u0018@\u0002%q\u0003ܕC3\u0000b\u001d0!U\u0016\u000b\u0017\u0010wq\b[*Y޶63\u001eTA-3mq\u0010;&\f\b\u001aw%ͿBom;{[J\u001b|T r^lD|7R54D+';{\u0000h\u000b)\u0016m3\u0002.?\n^[UBޠMH\u0007\u0010ipe2*\u0019\u0013z^e3\u0012Kn\u001dSԡ,\u0014Wβs*P\rPj\u001c)cpvJ>a\u0018UTu̗'Ln\\d>S鱯c,I\u00121)\u0000RkA!\u0017{\u001c\fA]G\u0017\u0012CVKܗ/! \u001cc\u0014PJ2\bz\u0003\r:Օz\\B\u0019\u0006yH4aQ30>CZWJvVȵxdU\u0000-\rĚ*ں\u001eZGsv@\u000174:T\u0005\u0016c\u0006gq>QuBRY]I+pXqMr\u0018j\u0014+gpm\u00069~HGmN|\u000f[jg]\u0005\u001bc\u001e3\u0017\u0015\u001aC:\u001fI\u0013` /,%\u0007ȰћI\u0003\u0011\u0015\t1IzC\u0003TH\u0019\u000b}ۙ\\EYԲ\nZ\u0013ZpU\u0019fxXŃE\u0011\u001f_D!cq\r{M'\f0V,YB:\u001b}\u001bQj,92\u0016DBЌB\u00046UpۃU\u000f\u0003$W\"\u001a\u0010l$\r6A\u0019B\b\u0015!<\u0019T-^9e\u0010p\u0001\u001bR4da>RtَO+#Gny\u0016r'\u0019>\u001eb@]t#WjR=3l#̈Tz\u0019\u00153b?``8pX7#\u001533Q\u0012\b90r<\bkپjjgA'\u0011S|ͱ\fV^\f\u0010\b-]/vy+W\u0011)bT3d%\f8\u0017_{oU\bw\u001c\u0003w?u\n:$F*\t暳fM\u00146Ocrg]\u0016$Fc'i\u0003Q=6\u001cHX̱{&_77\u0000E\u001bfY#w}\u0011~ٌOGXY_\fm-HZ/mY׏(UIv\u0011-: Z+N˨4ŷWVٚ$Ҹ(cg{\u001c'\u0012.ZzɎN \u000e\u001b^جh*y>x97eLT#۱/ޣDF,(Yo\u0007\u001f@\n\u000eM\r\u0001\u001dX'юCO`bMP%!\u0002Pr[,,:\u0018V\u001bE\u001aճ\\x4\u00020iUFnd\u001b]\u0015Gb\u0013;\u0011y\u0014jw|7&AEu\u0006J\u0005eFi\u000f?]6?\u001eg_W]1\u0010mT в^eM9~ي\r9\u000f-ߎ;3Zl\u001c:q4A\u0007ΝI:B_瑡a5y{[ʸ\u000f,\u0001\u001eg}P\u0004C<ΈIP\u00079\")r̕xB\\\u0013iò[\u001f\"\t\u0000\u0005y)3R\u0013}XeT\u001d9CIۉ<~ڃ\fydk?\u0000 ǩ\u00028Y\f$~_/n\u0019)[0@V3TU\u0016֞\u001dF\fI55\"\u0004O\u00146ҟcbl*luM{x|k\u000bq9YV[D;U͹,]d0¾\u0014vqCH\u00035zr)碿C^nt\u0005|?-\u001eL\u00067\u0016_h?5T\u0015L{I|ʈ\u001d\u0014#\n`r0)zK\u001a$x~چF>\ty\u001cR\u0014HlR\u001d21um\u0002(nȣ|p\u0004]\r\u0018+9AYysMr\u0001WXEUz\u00062{\u0006n\u0010;\u0000\r`Ɵ'V#DΌb\u000bd:͡P\u001dk\u0012\"\u0016\u0014Xl\u0013CE\u0005iqµͅ\b\u0006\u0000[_\u001d\u0016*\u0003 \"\u0018b}\u0019hi\u0014nUh|\u0016fa4ۇ:<Vï88>l\u001bh<\u0019Tg20\u000e\u0002P\u0019AK@\u00022\u00007/%OYר\u0011r\u0016ð3=z.i纓\u000en;<nċ\u000f5m\b|nR/JZ-j>)~cp]@ZwK0[Y7\f\b\u000eO\r.\\X\u0018ء(0{\u0015\u0011^[\u0015B$L5\u001aBL&-\rkZɭ\u0005be%ɓ)]m\u001cj0.\u000fsbJ\n\u000fSP9\u0007\u0011Q#P\u0016ۃ\u0015ZHGr8o4IO!(4\\#4Q\r.\\{I|ʈιvc\u0002OCG᷏6a\"j\u00142H؁N^{J1{&K/\u000epE=)[N-}Gk!w\u0011|nYBJg;2bOIiNfux\u0006\u0005fmT$gw)^z>@^aD\u00128>}M0\b\u000eK2T;ZǮ?\u0001;66{\u00140\"ѴF\\{\tokYF1W$<Qbz\u0003>ME\u0018\u0005<<-j$0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n9 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 65\n/LastChar 138\n/Widths 2431 0 R\n/BaseFont /IQUUMV+PLRoman12-Regular\n/FontDescriptor 7 0 R\n>> endobj\n7 0 obj <<\n/Ascent 689\n/CapHeight 689\n/Descent -194\n/FontName /IQUUMV+PLRoman12-Regular\n/ItalicAngle 0\n/StemV 65\n/XHeight 431\n/FontBBox [-44 -261 998 919]\n/Flags 4\n/CharSet (/A/D/E/M/N/O/R/S/T/W/Y/Lslash)\n/FontFile 8 0 R\n>> endobj\n2431 0 obj\n[734 0 0 748 666 0 0 0 0 0 0 0 897 734 762 0 0 721 544 707 0 0 1006 0 734 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 612 ]\nendobj\n5 0 obj <<\n/Length1 1218\n/Length2 3390\n/Length3 544\n/Length 5152      \n>>\nstream\n%!PS-AdobeFont-1.0: PLRoman17-Regular 1.11\n%%CreationDate: Thu Apr 13 18:00:00 2000\n%%VMusage: 1024 31500\n% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997\n% ADL: 1200 336 0\n%%EndComments\nFontDirectory/PLRoman17-Regular known{/PLRoman17-Regular findfont dup/UniqueID known{dup\n/UniqueID get 0 eq exch/FontType get 1 eq and}{pop false}ifelse\n{save true}{false}ifelse}{false}ifelse\n17 dict begin\n/FontInfo 13 dict dup begin\n/version(1.11)readonly def\n/Notice(Copyright (C) 1997 American Mathematical Society. All Rights Reserved. Adaptacja PL JMN 1997)readonly def\n/FullName(PLRoman17-Regular)readonly def\n/FamilyName(PLRoman17)readonly def\n/Weight(Normal)readonly def\n/isFixedPitch false def\n/ItalicAngle 0 def\n/UnderlinePosition -252 def\n/UnderlineThickness 60 def\nend readonly def\n/FontName /IYDXIY+PLRoman17-Regular def\n/Encoding 256 array\n0 1 255 {1 index exch /.notdef put} for\ndup 67 /C put\ndup 72 /H put\ndup 73 /I put\ndup 79 /O put\ndup 80 /P put\ndup 138 /Lslash put\nreadonly def\n/PaintType 0 def\n/FontType 1 def\n/StrokeWidth 0 def\n/FontMatrix[0.001 0 0 0.001 0 0]readonly def\n%/UniqueID 0 def\n/FontBBox{-43 -260 955 915}readonly def\ncurrentdict end\ncurrentfile eexec\noc;j~EЪ\u0005%9.\u0016>XJ\u0004ٚм\u001b\u0018D\"e?&oLH:]~nX%\u0015l޹dQ@a~M~\u001b\u000eEA˟V.UM؀\")JY4қ\u001e UC92\u0011\"\\ܡ\u0005w1\u0014rl\u0012x\u0010\u001a\u001bн\u0001t\u0014aA*`\u0016J\u0006p\u0010]X\u0010Nno\u0017Uw\u001f>R\u0011e3l\"\\(,-)k:8\u001ci\u000b5T>I1a\u001f\f2\u001eR˔\"A|\u0010Xl0Uc)T] \u0014\u0001g\bh+\f\bˠ>\u0006\u0003[f!\u0004iݸy\u0001ev\u001aEag\u0011yת\u0018\u0005\u0019l#\u0015;\u001bL/&(ՓA(p_2e*eQAEsI\u001a\u001bbSOK8\u0015XN89\t=@=\u001f-\r7`_ ]USΛ\u001at\u001fr\\\u0004ѷ1\"\u000fثCFyʖ\u0002P[\u0018t I\u0001m.\u0006\u0006\u000e*q`7gy\u001d\u0017Lϐv\u0010\u0002\u0005xr\u0006z]^\u0002yj\u0006<g4&msgvO@,C\u001aNg({hC\u001ctcn&E^>\u0003|ZTw\u0012ǽ8\rqcp~۪!\u001b_\u001b\\̾%<\u0010\u0004\u0003~\u0006DJM\u0002\u0019HA\n=.\n\u0001g$p* 4\\\u0014>p<$f=\u00038<#oki\u0019*!\u0005wM⽯|u\u0010v1T[0##3QUzX\u0010t@A]δfgLXբ!_%w\"Be!_۾+\u000f\"ގ'lT\u001e\\%J<9V]҉p?n?rf\nVMFK5ǎ!>\u0017)/^~K\u0011'\r6NIE\"t\u0015P9vyv-\u001d%;\u0002\u000et&\u001eUp@OR\u0002(ٝ\u0012eu\u0006Ex({\u0000\u0017\u0014E7)~ \u000b\u0014`\u0000e^?8FD\nLA,Bjc6V[$&1}x}愳ta_N'Ji\u0015G,D\"d\u0005re^\u0016hhid\u0015j'\u0005M=kcY{yb[C.٪\u0007@K&*?2)W)^\u001dLϜ\u001d1\u0007W]3.eL\u00078∪-lg\u0012F\u0006f)=&ԍlFX\tk4): \\К#B;\u0016\u0016?7\f#y\u000e$dJnBgP[Yʞb\u0002vcQ,[Z}\u001aO.\u00120`p`45\t\u000f\u001ef\u0016E<\b\r0\u000foCOܳ'\u001cʘ!c\u0007\u0016\u0010Xݗ઼\tѶJ\u0016B\u0010r5\fczܡ\u0006|fIO t93\u001fkc\u0010\u0002|'J\u001dћIRZK\blF«+utuo/,qoGp_D@\u0004\b:bfjpQ2Q\u0010̓\u0011o֔x\u0007J;\n\u001fU\u0001^R;Zsi\tC(SO\nOa\u0014\u001e(~r%SU9IK(!ևA6q#\u0010,\u001cnc+\u00015A\f\u000b\u0003gv\u0001W\"n뛘aTgss5i ;l[n!\u0001\u001cRDԽX}/L}|/gzkg>\u0001*c^\u0006\u0011SFw9CzRP^EP+T~\u0018mԧYm]\u001b\u001f \u001d*IM$5F\u000e[\u001aQ6,\u001d޴orYm}EQt\u0017X9O&3\u0017 (I\u0014\u001a\u001f_\u0002[\u0011\u0010>\u0004,!GgQ|\u0005\u0014\b:x]Ȕ\u0004h\n\rʓ\u0014n\bǎIbG<\u0005P\u0002\u0016\u000b,7AE==:$ٮKr00([\tVVʁOw]-ֿ)J\u0007WcC\u0001i\u001aj(\\\u001e\bx\u0013p\\؍\u000eqb\u000eTuUg\u0004\u001e>JL\u00021\\9\u000e<a\u001f|43\u0006CGEZ]G\u0003\u001f\"]I\u0014oaq,$\u0000k\u001a\u0018ms/+nEx\u0015V/\u001d\u0000\bڻZk.\u0006\u0012!\"\u0014\u0010!qC*\u001aZR\u0003\u001fЅ\u0003^\u001fBi%:QlX}jB\u0007U;ΐJ$Ė@5rnh42\u0012\u0016L\bBݎj-&\u0003f};؃\u0011r9zg}2HrftT\u000fљ\u00182s'\fS@\"XD\u001b\u0010\u0001\u0007Xƾua\n\u0006=m\u0006+ڰ\f@ƕ<\u0007\u001e\u00167C\u001c\f#rvW6\u0011\u0001\u0003-\u000e\"|\u0000+_w]?6\\xE$^#xDq|K7G\u000eM\u0002\u000fgrVu\u00070ǫ4m\u000b}R\u0012NA\u0013\u0000E;ޝA(|(vX7h\u0002\u0015l\u0006}ܶg\u001a%E\u0016#<x>tHQ0QlE\u000e\u0015,\u0006|HPN+a҃L;q⚪jS\u000e\u000f_>\u0015Kɐ'$\u0011\u0012\u0012؏\r\u0018Zlp:gOGGn@i4U/\tIHv)L?:mьDͨ~EDa#R\u0015;~\u0017+\u001b\u001550Vn%Y4\nHkb6SGNPo\u0006;\u0014*;p8Ҭ}\u001eJ{\u00024ŕTdO.>Gcd\f&`\u0017mSh\u0019m|s}W>#E5{\u000198'ԉ\\#> BFwhR\u000eٝ\u0011ٻ9\b5YcÐiq㳍ob\u0004gU\u0011HY[Qpg\r\u000bZ&\u0007ɣe\u0015W'2\u0001\\+)\f\u001bL^}n.)\u00123(67p}\u0002\u000f|\r\u0001<\u00061T\u0006=\u001en@3,Ii/L\u001aAk{֧.7\u0007h\u0007\u000b\u001fU%DFY٨8q\u0001\u000fe\u001c\u0007ݕ/o\u0012\u0016ߖEO\r;\u0006=\fuFdU(hӟa-T\fIְk?{\u0015]E\u001f1닢Oq\f}Y~R$\"hL\u001c\u000f\u0012q[+\u00006Za*\u0015cTT>:\rN\u001e\u000f\u0018Ͽ\\:\u0014Bz\b27\u0001\u0001l`<\u0001\u001dWװ\u000f_$l\u001b@\rC˱@Q\u0003m\f+\u001c,b\u001e=\u0007+VG!G\u000fF\u0012\u0002tXj\u001fLpCSտPY^)\u0014G<\fU\u0019\u000ba\u0000ARF\u0006\f\u001a֐lUܻ,(p\u001a[1A\u0014\u0017a\t\fݸoϰ~ә\u0007\u001b\u001cix>\u0012\u0002\"\u0010~\u0005Q4s/\u0003\u0004xvh/\u0005Rk\u001cR\ffO(/En,0;?,!Im\u0007Qٶ)u\u0015oֻ3qK\b4\u0014µ~?_\u0014(W}ȊCH\u0002M$*Dm\u0006Oaͫ_߳B\u00053\u00018q\u001d\u000eS~I\t&FY\u001bbP\u0000\u0012\tMgIg}Qx\b&\u0002Xl&\u0014Z\u0002̌(\rgJ+ԙ\u0014BPR\u0013+R\u0004\u0013ǜ\u0016#$yMn鵇ꛠF=T.9u9-6斊:\u001ea\\F\b!d>0|3B82o\u001aA@\u0018\r[0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\n0000000000000000000000000000000000000000000000000000000000000000\ncleartomark\n{restore}if\nendstream\nendobj\n6 0 obj <<\n/Type /Font\n/Subtype /Type1\n/Encoding 2426 0 R\n/FirstChar 67\n/LastChar 138\n/Widths 2432 0 R\n/BaseFont /IYDXIY+PLRoman17-Regular\n/FontDescriptor 4 0 R\n>> endobj\n4 0 obj <<\n/Ascent 689\n/CapHeight 689\n/Descent -195\n/FontName /IYDXIY+PLRoman17-Regular\n/ItalicAngle 0\n/StemV 53\n/XHeight 431\n/FontBBox [-43 -260 955 915]\n/Flags 4\n/CharSet (/C/H/I/O/P/Lslash)\n/FontFile 5 0 R\n>> endobj\n2432 0 obj\n[668 0 0 0 0 693 328 0 0 0 0 0 720 628 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 ]\nendobj\n10 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [2 0 R 12 0 R 18 0 R 27 0 R 33 0 R 36 0 R]\n>> endobj\n41 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [39 0 R 43 0 R 46 0 R 49 0 R 52 0 R 55 0 R]\n>> endobj\n60 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [58 0 R 62 0 R 65 0 R 68 0 R 71 0 R 74 0 R]\n>> endobj\n79 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [77 0 R 81 0 R 84 0 R 87 0 R 90 0 R 93 0 R]\n>> endobj\n98 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [96 0 R 100 0 R 103 0 R 106 0 R 109 0 R 112 0 R]\n>> endobj\n117 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2433 0 R\n/Kids [115 0 R 119 0 R 122 0 R 125 0 R 128 0 R 131 0 R]\n>> endobj\n136 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [134 0 R 138 0 R 141 0 R 144 0 R 147 0 R 150 0 R]\n>> endobj\n155 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [153 0 R 157 0 R 160 0 R 163 0 R 166 0 R 169 0 R]\n>> endobj\n174 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [172 0 R 176 0 R 179 0 R 182 0 R 185 0 R 188 0 R]\n>> endobj\n193 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [191 0 R 195 0 R 198 0 R 201 0 R 204 0 R 207 0 R]\n>> endobj\n212 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [210 0 R 214 0 R 217 0 R 220 0 R 223 0 R 226 0 R]\n>> endobj\n231 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2434 0 R\n/Kids [229 0 R 233 0 R 236 0 R 239 0 R 242 0 R 245 0 R]\n>> endobj\n250 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [248 0 R 252 0 R 255 0 R 258 0 R 261 0 R 264 0 R]\n>> endobj\n269 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [267 0 R 271 0 R 274 0 R 277 0 R 280 0 R 283 0 R]\n>> endobj\n288 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [286 0 R 290 0 R 293 0 R 296 0 R 299 0 R 302 0 R]\n>> endobj\n307 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [305 0 R 309 0 R 312 0 R 315 0 R 318 0 R 321 0 R]\n>> endobj\n326 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [324 0 R 328 0 R 331 0 R 334 0 R 337 0 R 340 0 R]\n>> endobj\n345 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2435 0 R\n/Kids [343 0 R 347 0 R 350 0 R 353 0 R 356 0 R 359 0 R]\n>> endobj\n364 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [362 0 R 366 0 R 369 0 R 372 0 R 375 0 R 378 0 R]\n>> endobj\n383 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [381 0 R 385 0 R 388 0 R 391 0 R 394 0 R 397 0 R]\n>> endobj\n402 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [400 0 R 404 0 R 407 0 R 410 0 R 413 0 R 416 0 R]\n>> endobj\n421 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [419 0 R 423 0 R 426 0 R 429 0 R 432 0 R 435 0 R]\n>> endobj\n440 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [438 0 R 442 0 R 445 0 R 448 0 R 451 0 R 454 0 R]\n>> endobj\n459 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2436 0 R\n/Kids [457 0 R 461 0 R 464 0 R 467 0 R 470 0 R 473 0 R]\n>> endobj\n478 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [476 0 R 480 0 R 483 0 R 486 0 R 489 0 R 492 0 R]\n>> endobj\n497 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [495 0 R 499 0 R 502 0 R 505 0 R 508 0 R 511 0 R]\n>> endobj\n516 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [514 0 R 518 0 R 521 0 R 524 0 R 527 0 R 530 0 R]\n>> endobj\n535 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [533 0 R 537 0 R 540 0 R 543 0 R 546 0 R 549 0 R]\n>> endobj\n554 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [552 0 R 556 0 R 559 0 R 562 0 R 565 0 R 568 0 R]\n>> endobj\n573 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2437 0 R\n/Kids [571 0 R 575 0 R 578 0 R 581 0 R 584 0 R 587 0 R]\n>> endobj\n592 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [590 0 R 594 0 R 597 0 R 600 0 R 603 0 R 606 0 R]\n>> endobj\n611 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [609 0 R 613 0 R 616 0 R 619 0 R 622 0 R 625 0 R]\n>> endobj\n630 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [628 0 R 632 0 R 635 0 R 638 0 R 641 0 R 644 0 R]\n>> endobj\n649 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [647 0 R 651 0 R 654 0 R 657 0 R 660 0 R 663 0 R]\n>> endobj\n668 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [666 0 R 670 0 R 673 0 R 676 0 R 679 0 R 682 0 R]\n>> endobj\n687 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2438 0 R\n/Kids [685 0 R 689 0 R 692 0 R 695 0 R 698 0 R 701 0 R]\n>> endobj\n706 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [704 0 R 708 0 R 711 0 R 714 0 R 717 0 R 720 0 R]\n>> endobj\n725 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [723 0 R 727 0 R 730 0 R 733 0 R 736 0 R 739 0 R]\n>> endobj\n744 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [742 0 R 746 0 R 749 0 R 752 0 R 755 0 R 758 0 R]\n>> endobj\n763 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [761 0 R 765 0 R 768 0 R 771 0 R 774 0 R 777 0 R]\n>> endobj\n782 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [780 0 R 784 0 R 787 0 R 790 0 R 793 0 R 796 0 R]\n>> endobj\n801 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2439 0 R\n/Kids [799 0 R 803 0 R 806 0 R 809 0 R 812 0 R 815 0 R]\n>> endobj\n820 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [818 0 R 822 0 R 825 0 R 828 0 R 831 0 R 834 0 R]\n>> endobj\n839 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [837 0 R 841 0 R 844 0 R 847 0 R 850 0 R 853 0 R]\n>> endobj\n858 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [856 0 R 860 0 R 863 0 R 866 0 R 869 0 R 872 0 R]\n>> endobj\n877 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [875 0 R 879 0 R 882 0 R 885 0 R 888 0 R 891 0 R]\n>> endobj\n896 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [894 0 R 898 0 R 901 0 R 904 0 R 907 0 R 910 0 R]\n>> endobj\n915 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2440 0 R\n/Kids [913 0 R 917 0 R 920 0 R 923 0 R 926 0 R 929 0 R]\n>> endobj\n934 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [932 0 R 936 0 R 939 0 R 942 0 R 945 0 R 948 0 R]\n>> endobj\n953 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [951 0 R 955 0 R 958 0 R 961 0 R 964 0 R 967 0 R]\n>> endobj\n972 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [970 0 R 974 0 R 977 0 R 980 0 R 983 0 R 986 0 R]\n>> endobj\n991 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [989 0 R 993 0 R 996 0 R 999 0 R 1002 0 R 1005 0 R]\n>> endobj\n1010 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [1008 0 R 1012 0 R 1015 0 R 1018 0 R 1021 0 R 1024 0 R]\n>> endobj\n1029 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2441 0 R\n/Kids [1027 0 R 1031 0 R 1034 0 R 1037 0 R 1040 0 R 1043 0 R]\n>> endobj\n1048 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1046 0 R 1050 0 R 1053 0 R 1056 0 R 1059 0 R 1062 0 R]\n>> endobj\n1067 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1065 0 R 1069 0 R 1072 0 R 1075 0 R 1078 0 R 1081 0 R]\n>> endobj\n1086 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1084 0 R 1088 0 R 1091 0 R 1094 0 R 1097 0 R 1100 0 R]\n>> endobj\n1105 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1103 0 R 1107 0 R 1110 0 R 1113 0 R 1116 0 R 1119 0 R]\n>> endobj\n1124 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1122 0 R 1126 0 R 1129 0 R 1132 0 R 1135 0 R 1138 0 R]\n>> endobj\n1143 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2442 0 R\n/Kids [1141 0 R 1145 0 R 1148 0 R 1151 0 R 1154 0 R 1157 0 R]\n>> endobj\n1162 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1160 0 R 1164 0 R 1167 0 R 1170 0 R 1173 0 R 1176 0 R]\n>> endobj\n1181 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1179 0 R 1183 0 R 1186 0 R 1189 0 R 1192 0 R 1195 0 R]\n>> endobj\n1200 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1198 0 R 1202 0 R 1205 0 R 1208 0 R 1211 0 R 1214 0 R]\n>> endobj\n1219 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1217 0 R 1221 0 R 1224 0 R 1227 0 R 1230 0 R 1233 0 R]\n>> endobj\n1238 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1236 0 R 1240 0 R 1243 0 R 1246 0 R 1249 0 R 1252 0 R]\n>> endobj\n1257 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2443 0 R\n/Kids [1255 0 R 1259 0 R 1262 0 R 1265 0 R 1268 0 R 1271 0 R]\n>> endobj\n1276 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1274 0 R 1278 0 R 1281 0 R 1284 0 R 1287 0 R 1290 0 R]\n>> endobj\n1295 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1293 0 R 1297 0 R 1300 0 R 1303 0 R 1306 0 R 1309 0 R]\n>> endobj\n1314 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1312 0 R 1316 0 R 1319 0 R 1322 0 R 1325 0 R 1328 0 R]\n>> endobj\n1333 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1331 0 R 1335 0 R 1338 0 R 1341 0 R 1344 0 R 1347 0 R]\n>> endobj\n1352 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1350 0 R 1354 0 R 1357 0 R 1360 0 R 1363 0 R 1366 0 R]\n>> endobj\n1371 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2444 0 R\n/Kids [1369 0 R 1373 0 R 1376 0 R 1379 0 R 1382 0 R 1385 0 R]\n>> endobj\n1390 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1388 0 R 1392 0 R 1395 0 R 1398 0 R 1401 0 R 1404 0 R]\n>> endobj\n1409 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1407 0 R 1411 0 R 1414 0 R 1417 0 R 1420 0 R 1423 0 R]\n>> endobj\n1428 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1426 0 R 1430 0 R 1433 0 R 1436 0 R 1439 0 R 1442 0 R]\n>> endobj\n1447 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1445 0 R 1449 0 R 1452 0 R 1455 0 R 1458 0 R 1461 0 R]\n>> endobj\n1466 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1464 0 R 1468 0 R 1471 0 R 1474 0 R 1477 0 R 1480 0 R]\n>> endobj\n1485 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2445 0 R\n/Kids [1483 0 R 1487 0 R 1490 0 R 1493 0 R 1496 0 R 1499 0 R]\n>> endobj\n1504 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1502 0 R 1506 0 R 1509 0 R 1512 0 R 1515 0 R 1518 0 R]\n>> endobj\n1523 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1521 0 R 1525 0 R 1528 0 R 1531 0 R 1534 0 R 1537 0 R]\n>> endobj\n1542 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1540 0 R 1544 0 R 1547 0 R 1550 0 R 1553 0 R 1556 0 R]\n>> endobj\n1561 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1559 0 R 1563 0 R 1566 0 R 1569 0 R 1572 0 R 1575 0 R]\n>> endobj\n1580 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1578 0 R 1582 0 R 1585 0 R 1588 0 R 1591 0 R 1594 0 R]\n>> endobj\n1599 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2446 0 R\n/Kids [1597 0 R 1601 0 R 1604 0 R 1607 0 R 1610 0 R 1613 0 R]\n>> endobj\n1618 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1616 0 R 1620 0 R 1623 0 R 1626 0 R 1629 0 R 1632 0 R]\n>> endobj\n1637 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1635 0 R 1639 0 R 1642 0 R 1645 0 R 1648 0 R 1651 0 R]\n>> endobj\n1656 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1654 0 R 1658 0 R 1661 0 R 1664 0 R 1667 0 R 1670 0 R]\n>> endobj\n1675 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1673 0 R 1677 0 R 1680 0 R 1683 0 R 1686 0 R 1689 0 R]\n>> endobj\n1694 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1692 0 R 1696 0 R 1699 0 R 1702 0 R 1705 0 R 1708 0 R]\n>> endobj\n1713 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2447 0 R\n/Kids [1711 0 R 1715 0 R 1718 0 R 1721 0 R 1724 0 R 1727 0 R]\n>> endobj\n1732 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1730 0 R 1734 0 R 1737 0 R 1740 0 R 1743 0 R 1746 0 R]\n>> endobj\n1751 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1749 0 R 1753 0 R 1756 0 R 1759 0 R 1762 0 R 1765 0 R]\n>> endobj\n1770 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1768 0 R 1772 0 R 1775 0 R 1778 0 R 1781 0 R 1784 0 R]\n>> endobj\n1789 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1787 0 R 1791 0 R 1794 0 R 1797 0 R 1800 0 R 1803 0 R]\n>> endobj\n1808 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1806 0 R 1810 0 R 1813 0 R 1816 0 R 1819 0 R 1822 0 R]\n>> endobj\n1827 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2448 0 R\n/Kids [1825 0 R 1829 0 R 1832 0 R 1835 0 R 1838 0 R 1841 0 R]\n>> endobj\n1846 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1844 0 R 1848 0 R 1851 0 R 1854 0 R 1857 0 R 1860 0 R]\n>> endobj\n1865 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1863 0 R 1867 0 R 1870 0 R 1873 0 R 1876 0 R 1879 0 R]\n>> endobj\n1884 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1882 0 R 1886 0 R 1889 0 R 1892 0 R 1895 0 R 1898 0 R]\n>> endobj\n1903 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1901 0 R 1905 0 R 1908 0 R 1911 0 R 1914 0 R 1917 0 R]\n>> endobj\n1922 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1920 0 R 1924 0 R 1927 0 R 1930 0 R 1933 0 R 1936 0 R]\n>> endobj\n1941 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2449 0 R\n/Kids [1939 0 R 1943 0 R 1946 0 R 1949 0 R 1952 0 R 1955 0 R]\n>> endobj\n1960 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [1958 0 R 1962 0 R 1965 0 R 1968 0 R 1971 0 R 1974 0 R]\n>> endobj\n1979 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [1977 0 R 1981 0 R 1984 0 R 1987 0 R 1990 0 R 1993 0 R]\n>> endobj\n1998 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [1996 0 R 2000 0 R 2003 0 R 2006 0 R 2009 0 R 2012 0 R]\n>> endobj\n2017 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [2015 0 R 2019 0 R 2022 0 R 2025 0 R 2028 0 R 2031 0 R]\n>> endobj\n2036 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [2034 0 R 2038 0 R 2041 0 R 2044 0 R 2047 0 R 2050 0 R]\n>> endobj\n2055 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2450 0 R\n/Kids [2053 0 R 2057 0 R 2060 0 R 2063 0 R 2066 0 R 2069 0 R]\n>> endobj\n2074 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2072 0 R 2076 0 R 2079 0 R 2082 0 R 2085 0 R 2088 0 R]\n>> endobj\n2093 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2091 0 R 2095 0 R 2098 0 R 2101 0 R 2104 0 R 2107 0 R]\n>> endobj\n2112 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2110 0 R 2114 0 R 2117 0 R 2120 0 R 2123 0 R 2126 0 R]\n>> endobj\n2131 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2129 0 R 2133 0 R 2136 0 R 2139 0 R 2142 0 R 2145 0 R]\n>> endobj\n2150 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2148 0 R 2152 0 R 2155 0 R 2158 0 R 2161 0 R 2164 0 R]\n>> endobj\n2169 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2451 0 R\n/Kids [2167 0 R 2171 0 R 2174 0 R 2177 0 R 2180 0 R 2183 0 R]\n>> endobj\n2188 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2186 0 R 2190 0 R 2193 0 R 2196 0 R 2199 0 R 2202 0 R]\n>> endobj\n2207 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2205 0 R 2209 0 R 2212 0 R 2215 0 R 2218 0 R 2221 0 R]\n>> endobj\n2226 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2224 0 R 2228 0 R 2231 0 R 2234 0 R 2237 0 R 2240 0 R]\n>> endobj\n2245 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2243 0 R 2247 0 R 2250 0 R 2253 0 R 2256 0 R 2259 0 R]\n>> endobj\n2264 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2262 0 R 2266 0 R 2269 0 R 2272 0 R 2275 0 R 2278 0 R]\n>> endobj\n2283 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2452 0 R\n/Kids [2281 0 R 2285 0 R 2288 0 R 2291 0 R 2294 0 R 2297 0 R]\n>> endobj\n2302 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2300 0 R 2304 0 R 2307 0 R 2310 0 R 2313 0 R 2316 0 R]\n>> endobj\n2321 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2319 0 R 2323 0 R 2326 0 R 2329 0 R 2332 0 R 2335 0 R]\n>> endobj\n2340 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2338 0 R 2342 0 R 2345 0 R 2348 0 R 2351 0 R 2354 0 R]\n>> endobj\n2359 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2357 0 R 2361 0 R 2364 0 R 2367 0 R 2370 0 R 2373 0 R]\n>> endobj\n2378 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2376 0 R 2380 0 R 2383 0 R 2386 0 R 2389 0 R 2392 0 R]\n>> endobj\n2397 0 obj <<\n/Type /Pages\n/Count 6\n/Parent 2453 0 R\n/Kids [2395 0 R 2399 0 R 2402 0 R 2405 0 R 2408 0 R 2411 0 R]\n>> endobj\n2416 0 obj <<\n/Type /Pages\n/Count 4\n/Parent 2454 0 R\n/Kids [2414 0 R 2418 0 R 2421 0 R 2424 0 R]\n>> endobj\n2433 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [10 0 R 41 0 R 60 0 R 79 0 R 98 0 R 117 0 R]\n>> endobj\n2434 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [136 0 R 155 0 R 174 0 R 193 0 R 212 0 R 231 0 R]\n>> endobj\n2435 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [250 0 R 269 0 R 288 0 R 307 0 R 326 0 R 345 0 R]\n>> endobj\n2436 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [364 0 R 383 0 R 402 0 R 421 0 R 440 0 R 459 0 R]\n>> endobj\n2437 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [478 0 R 497 0 R 516 0 R 535 0 R 554 0 R 573 0 R]\n>> endobj\n2438 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2455 0 R\n/Kids [592 0 R 611 0 R 630 0 R 649 0 R 668 0 R 687 0 R]\n>> endobj\n2439 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [706 0 R 725 0 R 744 0 R 763 0 R 782 0 R 801 0 R]\n>> endobj\n2440 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [820 0 R 839 0 R 858 0 R 877 0 R 896 0 R 915 0 R]\n>> endobj\n2441 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [934 0 R 953 0 R 972 0 R 991 0 R 1010 0 R 1029 0 R]\n>> endobj\n2442 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [1048 0 R 1067 0 R 1086 0 R 1105 0 R 1124 0 R 1143 0 R]\n>> endobj\n2443 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [1162 0 R 1181 0 R 1200 0 R 1219 0 R 1238 0 R 1257 0 R]\n>> endobj\n2444 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2456 0 R\n/Kids [1276 0 R 1295 0 R 1314 0 R 1333 0 R 1352 0 R 1371 0 R]\n>> endobj\n2445 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1390 0 R 1409 0 R 1428 0 R 1447 0 R 1466 0 R 1485 0 R]\n>> endobj\n2446 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1504 0 R 1523 0 R 1542 0 R 1561 0 R 1580 0 R 1599 0 R]\n>> endobj\n2447 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1618 0 R 1637 0 R 1656 0 R 1675 0 R 1694 0 R 1713 0 R]\n>> endobj\n2448 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1732 0 R 1751 0 R 1770 0 R 1789 0 R 1808 0 R 1827 0 R]\n>> endobj\n2449 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1846 0 R 1865 0 R 1884 0 R 1903 0 R 1922 0 R 1941 0 R]\n>> endobj\n2450 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2457 0 R\n/Kids [1960 0 R 1979 0 R 1998 0 R 2017 0 R 2036 0 R 2055 0 R]\n>> endobj\n2451 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2458 0 R\n/Kids [2074 0 R 2093 0 R 2112 0 R 2131 0 R 2150 0 R 2169 0 R]\n>> endobj\n2452 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2458 0 R\n/Kids [2188 0 R 2207 0 R 2226 0 R 2245 0 R 2264 0 R 2283 0 R]\n>> endobj\n2453 0 obj <<\n/Type /Pages\n/Count 36\n/Parent 2458 0 R\n/Kids [2302 0 R 2321 0 R 2340 0 R 2359 0 R 2378 0 R 2397 0 R]\n>> endobj\n2454 0 obj <<\n/Type /Pages\n/Count 4\n/Parent 2458 0 R\n/Kids [2416 0 R]\n>> endobj\n2455 0 obj <<\n/Type /Pages\n/Count 216\n/Parent 2459 0 R\n/Kids [2433 0 R 2434 0 R 2435 0 R 2436 0 R 2437 0 R 2438 0 R]\n>> endobj\n2456 0 obj <<\n/Type /Pages\n/Count 216\n/Parent 2459 0 R\n/Kids [2439 0 R 2440 0 R 2441 0 R 2442 0 R 2443 0 R 2444 0 R]\n>> endobj\n2457 0 obj <<\n/Type /Pages\n/Count 216\n/Parent 2459 0 R\n/Kids [2445 0 R 2446 0 R 2447 0 R 2448 0 R 2449 0 R 2450 0 R]\n>> endobj\n2458 0 obj <<\n/Type /Pages\n/Count 112\n/Parent 2459 0 R\n/Kids [2451 0 R 2452 0 R 2453 0 R 2454 0 R]\n>> endobj\n2459 0 obj <<\n/Type /Pages\n/Count 760\n/Kids [2455 0 R 2456 0 R 2457 0 R 2458 0 R]\n>> endobj\n2460 0 obj <<\n/Type /Catalog\n/Pages 2459 0 R\n>> endobj\n2461 0 obj <<\n/Producer (pdfTeX-0.14h)\n/Creator (TeX)\n/CreationDate (D:20020402234000)\n>> endobj\nxref\n0 2462\n0000000000 65535 f \n0000000331 00000 n \n0000000219 00000 n \n0000000009 00000 n \n0006558608 00000 n \n0006553187 00000 n \n0006558437 00000 n \n0006552762 00000 n \n0006546086 00000 n \n0006552591 00000 n \n0006559004 00000 n \n0000000645 00000 n \n0000000530 00000 n \n0000000410 00000 n \n0006544808 00000 n \n0006527095 00000 n \n0006544635 00000 n \n0000001711 00000 n \n0000001596 00000 n \n0000000715 00000 n \n0006526363 00000 n \n0006514995 00000 n \n0006526193 00000 n \n0006514681 00000 n \n0006508714 00000 n \n0006514512 00000 n \n0000002962 00000 n \n0000002847 00000 n \n0000001805 00000 n \n0006508145 00000 n \n0006499295 00000 n \n0006507971 00000 n \n0000003729 00000 n \n0000003614 00000 n \n0000003068 00000 n \n0000004113 00000 n \n0000003998 00000 n \n0000003823 00000 n \n0000004489 00000 n \n0000004374 00000 n \n0000004195 00000 n \n0006559114 00000 n \n0000004732 00000 n \n0000004617 00000 n \n0000004559 00000 n \n0000011720 00000 n \n0000011605 00000 n \n0000004772 00000 n \n0000021831 00000 n \n0000021716 00000 n \n0000011802 00000 n \n0000031474 00000 n \n0000031359 00000 n \n0000021913 00000 n \n0000040136 00000 n \n0000040021 00000 n \n0000031544 00000 n \n0000049027 00000 n \n0000048912 00000 n \n0000040218 00000 n \n0006559225 00000 n \n0000057544 00000 n \n0000057429 00000 n \n0000049097 00000 n \n0000066151 00000 n \n0000066036 00000 n \n0000057626 00000 n \n0000067261 00000 n \n0000067146 00000 n \n0000066221 00000 n \n0000074331 00000 n \n0000074216 00000 n \n0000067343 00000 n \n0000083917 00000 n \n0000083802 00000 n \n0000074413 00000 n \n0000093485 00000 n \n0000093370 00000 n \n0000083999 00000 n \n0006559336 00000 n \n0000102992 00000 n \n0000102877 00000 n \n0000093555 00000 n \n0000111952 00000 n \n0000111837 00000 n \n0000103074 00000 n \n0000121357 00000 n \n0000121242 00000 n \n0000112022 00000 n \n0000129816 00000 n \n0000129701 00000 n \n0000121439 00000 n \n0000138374 00000 n \n0000138259 00000 n \n0000129886 00000 n \n0000147633 00000 n \n0000147518 00000 n \n0000138456 00000 n \n0006559447 00000 n \n0000155953 00000 n \n0000155836 00000 n \n0000147703 00000 n \n0000165648 00000 n \n0000165530 00000 n \n0000156035 00000 n \n0000175443 00000 n \n0000175325 00000 n \n0000165719 00000 n \n0000182804 00000 n \n0000182686 00000 n \n0000175526 00000 n \n0000192956 00000 n \n0000192838 00000 n \n0000182887 00000 n \n0000202243 00000 n \n0000202124 00000 n \n0000193039 00000 n \n0006559563 00000 n \n0000212009 00000 n \n0000211890 00000 n \n0000202314 00000 n \n0000222225 00000 n \n0000222106 00000 n \n0000212092 00000 n \n0000231461 00000 n \n0000231342 00000 n \n0000222296 00000 n \n0000240142 00000 n \n0000240023 00000 n \n0000231544 00000 n \n0000247954 00000 n \n0000247835 00000 n \n0000240213 00000 n \n0000256446 00000 n \n0000256327 00000 n \n0000248037 00000 n \n0006559681 00000 n \n0000266766 00000 n \n0000266647 00000 n \n0000256517 00000 n \n0000276576 00000 n \n0000276457 00000 n \n0000266849 00000 n \n0000285732 00000 n \n0000285613 00000 n \n0000276647 00000 n \n0000294588 00000 n \n0000294469 00000 n \n0000285815 00000 n \n0000303849 00000 n \n0000303730 00000 n \n0000294659 00000 n \n0000312335 00000 n \n0000312216 00000 n \n0000303932 00000 n \n0006559799 00000 n \n0000320678 00000 n \n0000320559 00000 n \n0000312406 00000 n \n0000326753 00000 n \n0000326634 00000 n \n0000320761 00000 n \n0000336771 00000 n \n0000336652 00000 n \n0000326836 00000 n \n0000347121 00000 n \n0000347002 00000 n \n0000336854 00000 n \n0000357718 00000 n \n0000357599 00000 n \n0000347192 00000 n \n0000367641 00000 n \n0000367522 00000 n \n0000357801 00000 n \n0006559917 00000 n \n0000376629 00000 n \n0000376510 00000 n \n0000367712 00000 n \n0000385755 00000 n \n0000385636 00000 n \n0000376712 00000 n \n0000394352 00000 n \n0000394233 00000 n \n0000385826 00000 n \n0000404073 00000 n \n0000403954 00000 n \n0000394435 00000 n \n0000412609 00000 n \n0000412490 00000 n \n0000404144 00000 n \n0000421831 00000 n \n0000421712 00000 n \n0000412692 00000 n \n0006560035 00000 n \n0000432011 00000 n \n0000431892 00000 n \n0000421902 00000 n \n0000441249 00000 n \n0000441130 00000 n \n0000432094 00000 n \n0000450051 00000 n \n0000449932 00000 n \n0000441320 00000 n \n0000457138 00000 n \n0000457019 00000 n \n0000450134 00000 n \n0000466938 00000 n \n0000466819 00000 n \n0000457221 00000 n \n0000476549 00000 n \n0000476430 00000 n \n0000467021 00000 n \n0006560153 00000 n \n0000486196 00000 n \n0000486077 00000 n \n0000476620 00000 n \n0000496198 00000 n \n0000496079 00000 n \n0000486279 00000 n \n0000504683 00000 n \n0000504564 00000 n \n0000496269 00000 n \n0000513783 00000 n \n0000513664 00000 n \n0000504766 00000 n \n0000523699 00000 n \n0000523580 00000 n \n0000513854 00000 n \n0000532817 00000 n \n0000532698 00000 n \n0000523782 00000 n \n0006560271 00000 n \n0000541868 00000 n \n0000541749 00000 n \n0000532888 00000 n \n0000549981 00000 n \n0000549862 00000 n \n0000541951 00000 n \n0000558968 00000 n \n0000558849 00000 n \n0000550052 00000 n \n0000567602 00000 n \n0000567483 00000 n \n0000559051 00000 n \n0000575973 00000 n \n0000575854 00000 n \n0000567673 00000 n \n0000584570 00000 n \n0000584451 00000 n \n0000576056 00000 n \n0006560389 00000 n \n0000592532 00000 n \n0000592413 00000 n \n0000584641 00000 n \n0000600836 00000 n \n0000600717 00000 n \n0000592615 00000 n \n0000604015 00000 n \n0000603896 00000 n \n0000600907 00000 n \n0000610960 00000 n \n0000610841 00000 n \n0000604098 00000 n \n0000620293 00000 n \n0000620174 00000 n \n0000611043 00000 n \n0000628957 00000 n \n0000628838 00000 n \n0000620376 00000 n \n0006560507 00000 n \n0000637419 00000 n \n0000637300 00000 n \n0000629028 00000 n \n0000646488 00000 n \n0000646369 00000 n \n0000637502 00000 n \n0000654260 00000 n \n0000654141 00000 n \n0000646559 00000 n \n0000661750 00000 n \n0000661631 00000 n \n0000654343 00000 n \n0000671646 00000 n \n0000671527 00000 n \n0000661821 00000 n \n0000676766 00000 n \n0000676647 00000 n \n0000671729 00000 n \n0006560625 00000 n \n0000677134 00000 n \n0000677015 00000 n \n0000676837 00000 n \n0000684889 00000 n \n0000684770 00000 n \n0000677217 00000 n \n0000694567 00000 n \n0000694448 00000 n \n0000684972 00000 n \n0000703981 00000 n \n0000703862 00000 n \n0000694650 00000 n \n0000712854 00000 n \n0000712735 00000 n \n0000704052 00000 n \n0000722157 00000 n \n0000722038 00000 n \n0000712937 00000 n \n0006560743 00000 n \n0000731090 00000 n \n0000730971 00000 n \n0000722228 00000 n \n0000740610 00000 n \n0000740491 00000 n \n0000731173 00000 n \n0000749719 00000 n \n0000749600 00000 n \n0000740681 00000 n \n0000759244 00000 n \n0000759125 00000 n \n0000749802 00000 n \n0000768715 00000 n \n0000768596 00000 n \n0000759315 00000 n \n0000777555 00000 n \n0000777436 00000 n \n0000768798 00000 n \n0006560861 00000 n \n0000785883 00000 n \n0000785764 00000 n \n0000777626 00000 n \n0000793028 00000 n \n0000792909 00000 n \n0000785966 00000 n \n0000793397 00000 n \n0000793278 00000 n \n0000793099 00000 n \n0000800239 00000 n \n0000800120 00000 n \n0000793480 00000 n \n0000809934 00000 n \n0000809815 00000 n \n0000800322 00000 n \n0000818915 00000 n \n0000818796 00000 n \n0000810017 00000 n \n0006560979 00000 n \n0000826836 00000 n \n0000826717 00000 n \n0000818986 00000 n \n0000835109 00000 n \n0000834990 00000 n \n0000826919 00000 n \n0000845049 00000 n \n0000844930 00000 n \n0000835180 00000 n \n0000853615 00000 n \n0000853496 00000 n \n0000845132 00000 n \n0000862757 00000 n \n0000862638 00000 n \n0000853686 00000 n \n0000871407 00000 n \n0000871288 00000 n \n0000862840 00000 n \n0006561097 00000 n \n0000872368 00000 n \n0000872249 00000 n \n0000871478 00000 n \n0000879114 00000 n \n0000878995 00000 n \n0000872451 00000 n \n0000889047 00000 n \n0000888928 00000 n \n0000879197 00000 n \n0000897822 00000 n \n0000897703 00000 n \n0000889130 00000 n \n0000907606 00000 n \n0000907487 00000 n \n0000897893 00000 n \n0000917153 00000 n \n0000917034 00000 n \n0000907689 00000 n \n0006561215 00000 n \n0000926739 00000 n \n0000926620 00000 n \n0000917224 00000 n \n0000936434 00000 n \n0000936315 00000 n \n0000926822 00000 n \n0000945697 00000 n \n0000945578 00000 n \n0000936505 00000 n \n0000952443 00000 n \n0000952324 00000 n \n0000945780 00000 n \n0000961238 00000 n \n0000961119 00000 n \n0000952526 00000 n \n0000970101 00000 n \n0000969982 00000 n \n0000961321 00000 n \n0006561333 00000 n \n0000977869 00000 n \n0000977750 00000 n \n0000970172 00000 n \n0000986906 00000 n \n0000986787 00000 n \n0000977952 00000 n \n0000996153 00000 n \n0000996034 00000 n \n0000986977 00000 n \n0001006243 00000 n \n0001006124 00000 n \n0000996236 00000 n \n0001016064 00000 n \n0001015945 00000 n \n0001006314 00000 n \n0001025675 00000 n \n0001025556 00000 n \n0001016147 00000 n \n0006561451 00000 n \n0001035800 00000 n \n0001035681 00000 n \n0001025746 00000 n \n0001043651 00000 n \n0001043532 00000 n \n0001035883 00000 n \n0001053267 00000 n \n0001053148 00000 n \n0001043722 00000 n \n0001063249 00000 n \n0001063130 00000 n \n0001053350 00000 n \n0001072891 00000 n \n0001072772 00000 n \n0001063320 00000 n \n0001075776 00000 n \n0001075657 00000 n \n0001072974 00000 n \n0006561569 00000 n \n0001076146 00000 n \n0001076027 00000 n \n0001075847 00000 n \n0001083542 00000 n \n0001083423 00000 n \n0001076229 00000 n \n0001092676 00000 n \n0001092557 00000 n \n0001083625 00000 n \n0001102549 00000 n \n0001102430 00000 n \n0001092759 00000 n \n0001112679 00000 n \n0001112560 00000 n \n0001102620 00000 n \n0001121982 00000 n \n0001121863 00000 n \n0001112762 00000 n \n0006561687 00000 n \n0001131386 00000 n \n0001131267 00000 n \n0001122053 00000 n \n0001140948 00000 n \n0001140829 00000 n \n0001131469 00000 n \n0001150321 00000 n \n0001150202 00000 n \n0001141019 00000 n \n0001159791 00000 n \n0001159672 00000 n \n0001150404 00000 n \n0001168891 00000 n \n0001168772 00000 n \n0001159862 00000 n \n0001177893 00000 n \n0001177774 00000 n \n0001168974 00000 n \n0006561805 00000 n \n0001185964 00000 n \n0001185845 00000 n \n0001177964 00000 n \n0001194671 00000 n \n0001194552 00000 n \n0001186047 00000 n \n0001204413 00000 n \n0001204294 00000 n \n0001194742 00000 n \n0001214191 00000 n \n0001214072 00000 n \n0001204496 00000 n \n0001223077 00000 n \n0001222958 00000 n \n0001214262 00000 n \n0001233042 00000 n \n0001232923 00000 n \n0001223160 00000 n \n0006561923 00000 n \n0001243550 00000 n \n0001243431 00000 n \n0001233113 00000 n \n0001253740 00000 n \n0001253621 00000 n \n0001243633 00000 n \n0001258860 00000 n \n0001258741 00000 n \n0001253811 00000 n \n0001265810 00000 n \n0001265691 00000 n \n0001258943 00000 n \n0001274068 00000 n \n0001273949 00000 n \n0001265893 00000 n \n0001282642 00000 n \n0001282523 00000 n \n0001274151 00000 n \n0006562041 00000 n \n0001292227 00000 n \n0001292108 00000 n \n0001282713 00000 n \n0001301047 00000 n \n0001300928 00000 n \n0001292310 00000 n \n0001309575 00000 n \n0001309456 00000 n \n0001301118 00000 n \n0001319221 00000 n \n0001319102 00000 n \n0001309658 00000 n \n0001327643 00000 n \n0001327524 00000 n \n0001319292 00000 n \n0001335996 00000 n \n0001335877 00000 n \n0001327726 00000 n \n0006562159 00000 n \n0001344546 00000 n \n0001344427 00000 n \n0001336067 00000 n \n0001354178 00000 n \n0001354059 00000 n \n0001344629 00000 n \n0001363421 00000 n \n0001363302 00000 n \n0001354249 00000 n \n0001372043 00000 n \n0001371924 00000 n \n0001363504 00000 n \n0001381133 00000 n \n0001381014 00000 n \n0001372114 00000 n \n0001388775 00000 n \n0001388656 00000 n \n0001381216 00000 n \n0006562277 00000 n \n0001389145 00000 n \n0001389026 00000 n \n0001388846 00000 n \n0001389525 00000 n \n0001389406 00000 n \n0001389228 00000 n \n0001389774 00000 n \n0001389655 00000 n \n0001389596 00000 n \n0001396864 00000 n \n0001396745 00000 n \n0001389815 00000 n \n0001407100 00000 n \n0001406981 00000 n \n0001396947 00000 n \n0001417616 00000 n \n0001417497 00000 n \n0001407183 00000 n \n0006562395 00000 n \n0001427797 00000 n \n0001427678 00000 n \n0001417687 00000 n \n0001437696 00000 n \n0001437577 00000 n \n0001427880 00000 n \n0001447748 00000 n \n0001447629 00000 n \n0001437767 00000 n \n0001457911 00000 n \n0001457792 00000 n \n0001447831 00000 n \n0001468828 00000 n \n0001468709 00000 n \n0001457982 00000 n \n0001478741 00000 n \n0001478622 00000 n \n0001468911 00000 n \n0006562513 00000 n \n0001488223 00000 n \n0001488104 00000 n \n0001478812 00000 n \n0001497566 00000 n \n0001497447 00000 n \n0001488306 00000 n \n0001506588 00000 n \n0001506469 00000 n \n0001497637 00000 n \n0001516612 00000 n \n0001516493 00000 n \n0001506671 00000 n \n0001522981 00000 n \n0001522862 00000 n \n0001516683 00000 n \n0001530602 00000 n \n0001530483 00000 n \n0001523064 00000 n \n0006562631 00000 n \n0001540158 00000 n \n0001540039 00000 n \n0001530685 00000 n \n0001549837 00000 n \n0001549718 00000 n \n0001540241 00000 n \n0001559689 00000 n \n0001559570 00000 n \n0001549908 00000 n \n0001568723 00000 n \n0001568604 00000 n \n0001559772 00000 n \n0001577873 00000 n \n0001577754 00000 n \n0001568794 00000 n \n0001586673 00000 n \n0001586554 00000 n \n0001577956 00000 n \n0006562749 00000 n \n0001594423 00000 n \n0001594304 00000 n \n0001586744 00000 n \n0001603038 00000 n \n0001602919 00000 n \n0001594506 00000 n \n0001613177 00000 n \n0001613058 00000 n \n0001603109 00000 n \n0001621775 00000 n \n0001621656 00000 n \n0001613260 00000 n \n0001630012 00000 n \n0001629893 00000 n \n0001621846 00000 n \n0001637069 00000 n \n0001636950 00000 n \n0001630095 00000 n \n0006562867 00000 n \n0001647064 00000 n \n0001646945 00000 n \n0001637152 00000 n \n0001657441 00000 n \n0001657322 00000 n \n0001647147 00000 n \n0001667281 00000 n \n0001667162 00000 n \n0001657512 00000 n \n0001676967 00000 n \n0001676848 00000 n \n0001667364 00000 n \n0001685636 00000 n \n0001685517 00000 n \n0001677038 00000 n \n0001694517 00000 n \n0001694398 00000 n \n0001685719 00000 n \n0006562985 00000 n \n0001705018 00000 n \n0001704899 00000 n \n0001694588 00000 n \n0001715220 00000 n \n0001715101 00000 n \n0001705101 00000 n \n0001724431 00000 n \n0001724312 00000 n \n0001715291 00000 n \n0001733868 00000 n \n0001733749 00000 n \n0001724514 00000 n \n0001743999 00000 n \n0001743880 00000 n \n0001733939 00000 n \n0001750052 00000 n \n0001749933 00000 n \n0001744082 00000 n \n0006563103 00000 n \n0001750422 00000 n \n0001750303 00000 n \n0001750123 00000 n \n0001758351 00000 n \n0001758232 00000 n \n0001750505 00000 n \n0001768707 00000 n \n0001768588 00000 n \n0001758434 00000 n \n0001778002 00000 n \n0001777883 00000 n \n0001768790 00000 n \n0001787271 00000 n \n0001787152 00000 n \n0001778073 00000 n \n0001797740 00000 n \n0001797621 00000 n \n0001787354 00000 n \n0006563221 00000 n \n0001806516 00000 n \n0001806397 00000 n \n0001797811 00000 n \n0001816365 00000 n \n0001816246 00000 n \n0001806599 00000 n \n0001825485 00000 n \n0001825366 00000 n \n0001816436 00000 n \n0001835395 00000 n \n0001835276 00000 n \n0001825568 00000 n \n0001844589 00000 n \n0001844470 00000 n \n0001835466 00000 n \n0001853843 00000 n \n0001853724 00000 n \n0001844672 00000 n \n0006563339 00000 n \n0001863735 00000 n \n0001863616 00000 n \n0001853914 00000 n \n0001872439 00000 n \n0001872320 00000 n \n0001863818 00000 n \n0001882707 00000 n \n0001882588 00000 n \n0001872510 00000 n \n0001892312 00000 n \n0001892193 00000 n \n0001882790 00000 n \n0001900682 00000 n \n0001900563 00000 n \n0001892383 00000 n \n0001908929 00000 n \n0001908810 00000 n \n0001900765 00000 n \n0006563457 00000 n \n0001918760 00000 n \n0001918641 00000 n \n0001909012 00000 n \n0001927788 00000 n \n0001927669 00000 n \n0001918843 00000 n \n0001936808 00000 n \n0001936689 00000 n \n0001927859 00000 n \n0001945715 00000 n \n0001945596 00000 n \n0001936891 00000 n \n0001956129 00000 n \n0001956010 00000 n \n0001945786 00000 n \n0001965795 00000 n \n0001965676 00000 n \n0001956212 00000 n \n0006563575 00000 n \n0001974792 00000 n \n0001974673 00000 n \n0001965866 00000 n \n0001982671 00000 n \n0001982552 00000 n \n0001974875 00000 n \n0001987602 00000 n \n0001987483 00000 n \n0001982742 00000 n \n0001993602 00000 n \n0001993483 00000 n \n0001987685 00000 n \n0002001858 00000 n \n0002001739 00000 n \n0001993685 00000 n \n0002010157 00000 n \n0002010038 00000 n \n0002001941 00000 n \n0006563693 00000 n \n0002018689 00000 n \n0002018570 00000 n \n0002010228 00000 n \n0002027540 00000 n \n0002027421 00000 n \n0002018772 00000 n \n0002037207 00000 n \n0002037088 00000 n \n0002027611 00000 n \n0002046450 00000 n \n0002046331 00000 n \n0002037290 00000 n \n0002055311 00000 n \n0002055192 00000 n \n0002046521 00000 n \n0002064893 00000 n \n0002064774 00000 n \n0002055394 00000 n \n0006563811 00000 n \n0002074215 00000 n \n0002074096 00000 n \n0002064964 00000 n \n0002083295 00000 n \n0002083176 00000 n \n0002074298 00000 n \n0002092392 00000 n \n0002092273 00000 n \n0002083366 00000 n \n0002095660 00000 n \n0002095541 00000 n \n0002092475 00000 n \n0002096030 00000 n \n0002095911 00000 n \n0002095731 00000 n \n0002103607 00000 n \n0002103488 00000 n \n0002096113 00000 n \n0006563929 00000 n \n0002114112 00000 n \n0002113993 00000 n \n0002103690 00000 n \n0002124054 00000 n \n0002123935 00000 n \n0002114195 00000 n \n0002133526 00000 n \n0002133407 00000 n \n0002124125 00000 n \n0002142823 00000 n \n0002142704 00000 n \n0002133609 00000 n \n0002151641 00000 n \n0002151522 00000 n \n0002142894 00000 n \n0002161598 00000 n \n0002161479 00000 n \n0002151724 00000 n \n0006564047 00000 n \n0002169968 00000 n \n0002169849 00000 n \n0002161669 00000 n \n0002178278 00000 n \n0002178159 00000 n \n0002170051 00000 n \n0002188603 00000 n \n0002188484 00000 n \n0002178349 00000 n \n0002198676 00000 n \n0002198557 00000 n \n0002188686 00000 n \n0002209149 00000 n \n0002209030 00000 n \n0002198747 00000 n \n0002219215 00000 n \n0002219096 00000 n \n0002209232 00000 n \n0006564165 00000 n \n0002226816 00000 n \n0002226697 00000 n \n0002219286 00000 n \n0002234144 00000 n \n0002234025 00000 n \n0002226899 00000 n \n0002245016 00000 n \n0002244897 00000 n \n0002234227 00000 n \n0002254351 00000 n \n0002254232 00000 n \n0002245099 00000 n \n0002264021 00000 n \n0002263902 00000 n \n0002254422 00000 n \n0002273681 00000 n \n0002273562 00000 n \n0002264104 00000 n \n0006564283 00000 n \n0002283761 00000 n \n0002283642 00000 n \n0002273752 00000 n \n0002293177 00000 n \n0002293058 00000 n \n0002283844 00000 n \n0002302880 00000 n \n0002302761 00000 n \n0002293248 00000 n \n0002312246 00000 n \n0002312127 00000 n \n0002302963 00000 n \n0002322187 00000 n \n0002322068 00000 n \n0002312317 00000 n \n0002332305 00000 n \n0002332186 00000 n \n0002322270 00000 n \n0006564401 00000 n \n0002341475 00000 n \n0002341356 00000 n \n0002332376 00000 n \n0002350455 00000 n \n0002350336 00000 n \n0002341558 00000 n \n0002356809 00000 n \n0002356690 00000 n \n0002350526 00000 n \n0002364503 00000 n \n0002364384 00000 n \n0002356892 00000 n \n0002373944 00000 n \n0002373825 00000 n \n0002364586 00000 n \n0002383696 00000 n \n0002383577 00000 n \n0002374027 00000 n \n0006564519 00000 n \n0002393850 00000 n \n0002393731 00000 n \n0002383767 00000 n \n0002403163 00000 n \n0002403044 00000 n \n0002393933 00000 n \n0002413722 00000 n \n0002413603 00000 n \n0002403234 00000 n \n0002423599 00000 n \n0002423480 00000 n \n0002413805 00000 n \n0002432895 00000 n \n0002432776 00000 n \n0002423670 00000 n \n0002442078 00000 n \n0002441959 00000 n \n0002432978 00000 n \n0006564637 00000 n \n0002451251 00000 n \n0002451132 00000 n \n0002442149 00000 n \n0002451908 00000 n \n0002451789 00000 n \n0002451334 00000 n \n0002452278 00000 n \n0002452159 00000 n \n0002451979 00000 n \n0002460331 00000 n \n0002460212 00000 n \n0002452361 00000 n \n0002469851 00000 n \n0002469732 00000 n \n0002460414 00000 n \n0002478902 00000 n \n0002478783 00000 n \n0002469934 00000 n \n0006564755 00000 n \n0002488637 00000 n \n0002488518 00000 n \n0002478973 00000 n \n0002498628 00000 n \n0002498509 00000 n \n0002488720 00000 n \n0002509408 00000 n \n0002509289 00000 n \n0002498699 00000 n \n0002518811 00000 n \n0002518692 00000 n \n0002509491 00000 n \n0002529090 00000 n \n0002528971 00000 n \n0002518882 00000 n \n0002538577 00000 n \n0002538458 00000 n \n0002529173 00000 n \n0006564873 00000 n \n0002548027 00000 n \n0002547908 00000 n \n0002538648 00000 n \n0002557136 00000 n \n0002557017 00000 n \n0002548110 00000 n \n0002565723 00000 n \n0002565604 00000 n \n0002557207 00000 n \n0002575049 00000 n \n0002574930 00000 n \n0002565806 00000 n \n0002580876 00000 n \n0002580757 00000 n \n0002575120 00000 n \n0002588163 00000 n \n0002588044 00000 n \n0002580959 00000 n \n0006564991 00000 n \n0002597295 00000 n \n0002597176 00000 n \n0002588246 00000 n \n0002606099 00000 n \n0002605980 00000 n \n0002597378 00000 n \n0002615341 00000 n \n0002615221 00000 n \n0002606170 00000 n \n0002624234 00000 n \n0002624112 00000 n \n0002615424 00000 n \n0002633720 00000 n \n0002633598 00000 n \n0002624306 00000 n \n0002638354 00000 n \n0002638231 00000 n \n0002633804 00000 n \n0006565111 00000 n \n0002638730 00000 n \n0002638607 00000 n \n0002638426 00000 n \n0002646113 00000 n \n0002645990 00000 n \n0002638814 00000 n \n0002654559 00000 n \n0002654436 00000 n \n0002646197 00000 n \n0002664048 00000 n \n0002663925 00000 n \n0002654643 00000 n \n0002674175 00000 n \n0002674052 00000 n \n0002664120 00000 n \n0002684199 00000 n \n0002684076 00000 n \n0002674259 00000 n \n0006565236 00000 n \n0002694072 00000 n \n0002693949 00000 n \n0002684271 00000 n \n0002703750 00000 n \n0002703627 00000 n \n0002694156 00000 n \n0002713734 00000 n \n0002713611 00000 n \n0002703822 00000 n \n0002724098 00000 n \n0002723975 00000 n \n0002713818 00000 n \n0002733501 00000 n \n0002733378 00000 n \n0002724170 00000 n \n0002743799 00000 n \n0002743676 00000 n \n0002733585 00000 n \n0006565361 00000 n \n0002753719 00000 n \n0002753596 00000 n \n0002743871 00000 n \n0002764381 00000 n \n0002764258 00000 n \n0002753803 00000 n \n0002773914 00000 n \n0002773791 00000 n \n0002764453 00000 n \n0002781701 00000 n \n0002781578 00000 n \n0002773998 00000 n \n0002782077 00000 n \n0002781954 00000 n \n0002781773 00000 n \n0002789948 00000 n \n0002789825 00000 n \n0002782161 00000 n \n0006565486 00000 n \n0002800667 00000 n \n0002800544 00000 n \n0002790032 00000 n \n0002811004 00000 n \n0002810881 00000 n \n0002800751 00000 n \n0002821158 00000 n \n0002821035 00000 n \n0002811076 00000 n \n0002830845 00000 n \n0002830722 00000 n \n0002821242 00000 n \n0002841875 00000 n \n0002841752 00000 n \n0002830917 00000 n \n0002852517 00000 n \n0002852394 00000 n \n0002841959 00000 n \n0006565611 00000 n \n0002861707 00000 n \n0002861584 00000 n \n0002852589 00000 n \n0002871855 00000 n \n0002871732 00000 n \n0002861791 00000 n \n0002881766 00000 n \n0002881643 00000 n \n0002871927 00000 n \n0002892034 00000 n \n0002891911 00000 n \n0002881850 00000 n \n0002901502 00000 n \n0002901379 00000 n \n0002892106 00000 n \n0002911213 00000 n \n0002911090 00000 n \n0002901586 00000 n \n0006565736 00000 n \n0002920714 00000 n \n0002920591 00000 n \n0002911285 00000 n \n0002930084 00000 n \n0002929961 00000 n \n0002920798 00000 n \n0002940186 00000 n \n0002940063 00000 n \n0002930156 00000 n \n0002949567 00000 n \n0002949444 00000 n \n0002940270 00000 n \n0002959854 00000 n \n0002959731 00000 n \n0002949639 00000 n \n0002970163 00000 n \n0002970040 00000 n \n0002959938 00000 n \n0006565861 00000 n \n0002979832 00000 n \n0002979709 00000 n \n0002970235 00000 n \n0002984088 00000 n \n0002983965 00000 n \n0002979916 00000 n \n0002984464 00000 n \n0002984341 00000 n \n0002984160 00000 n \n0002984857 00000 n \n0002984734 00000 n \n0002984548 00000 n \n0002985112 00000 n \n0002984989 00000 n \n0002984929 00000 n \n0002992141 00000 n \n0002992018 00000 n \n0002985154 00000 n \n0006565986 00000 n \n0003002001 00000 n \n0003001878 00000 n \n0002992225 00000 n \n0003012484 00000 n \n0003012361 00000 n \n0003002085 00000 n \n0003023291 00000 n \n0003023168 00000 n \n0003012556 00000 n \n0003033384 00000 n \n0003033261 00000 n \n0003023375 00000 n \n0003043331 00000 n \n0003043208 00000 n \n0003033456 00000 n \n0003052796 00000 n \n0003052673 00000 n \n0003043415 00000 n \n0006566111 00000 n \n0003061896 00000 n \n0003061773 00000 n \n0003052868 00000 n \n0003071001 00000 n \n0003070878 00000 n \n0003061980 00000 n \n0003080674 00000 n \n0003080551 00000 n \n0003071073 00000 n \n0003089833 00000 n \n0003089710 00000 n \n0003080758 00000 n \n0003099774 00000 n \n0003099651 00000 n \n0003089905 00000 n \n0003108095 00000 n \n0003107972 00000 n \n0003099858 00000 n \n0006566236 00000 n \n0003117956 00000 n \n0003117833 00000 n \n0003108167 00000 n \n0003122252 00000 n \n0003122129 00000 n \n0003118040 00000 n \n0003122628 00000 n \n0003122505 00000 n \n0003122324 00000 n \n0003130040 00000 n \n0003129917 00000 n \n0003122712 00000 n \n0003139084 00000 n \n0003138961 00000 n \n0003130124 00000 n \n0003148425 00000 n \n0003148302 00000 n \n0003139168 00000 n \n0006566361 00000 n \n0003157914 00000 n \n0003157791 00000 n \n0003148497 00000 n \n0003167441 00000 n \n0003167318 00000 n \n0003157998 00000 n \n0003177464 00000 n \n0003177341 00000 n \n0003167513 00000 n \n0003186784 00000 n \n0003186661 00000 n \n0003177548 00000 n \n0003196462 00000 n \n0003196339 00000 n \n0003186856 00000 n \n0003206173 00000 n \n0003206050 00000 n \n0003196546 00000 n \n0006566486 00000 n \n0003215283 00000 n \n0003215160 00000 n \n0003206245 00000 n \n0003223964 00000 n \n0003223841 00000 n \n0003215367 00000 n \n0003233194 00000 n \n0003233071 00000 n \n0003224036 00000 n \n0003242886 00000 n \n0003242763 00000 n \n0003233278 00000 n \n0003251517 00000 n \n0003251394 00000 n \n0003242958 00000 n \n0003261072 00000 n \n0003260949 00000 n \n0003251601 00000 n \n0006566611 00000 n \n0003269110 00000 n \n0003268987 00000 n \n0003261144 00000 n \n0003277703 00000 n \n0003277580 00000 n \n0003269194 00000 n \n0003281756 00000 n \n0003281633 00000 n \n0003277775 00000 n \n0003289546 00000 n \n0003289423 00000 n \n0003281840 00000 n \n0003298742 00000 n \n0003298619 00000 n \n0003289630 00000 n \n0003307877 00000 n \n0003307754 00000 n \n0003298826 00000 n \n0006566736 00000 n \n0003317623 00000 n \n0003317500 00000 n \n0003307949 00000 n \n0003327084 00000 n \n0003326961 00000 n \n0003317707 00000 n \n0003336477 00000 n \n0003336354 00000 n \n0003327156 00000 n \n0003344547 00000 n \n0003344424 00000 n \n0003336561 00000 n \n0003352774 00000 n \n0003352651 00000 n \n0003344619 00000 n \n0003361797 00000 n \n0003361674 00000 n \n0003352858 00000 n \n0006566861 00000 n \n0003371217 00000 n \n0003371094 00000 n \n0003361869 00000 n \n0003380102 00000 n \n0003379979 00000 n \n0003371301 00000 n \n0003389606 00000 n \n0003389483 00000 n \n0003380174 00000 n \n0003398784 00000 n \n0003398661 00000 n \n0003389690 00000 n \n0003408371 00000 n \n0003408248 00000 n \n0003398856 00000 n \n0003418137 00000 n \n0003418014 00000 n \n0003408455 00000 n \n0006566986 00000 n \n0003427051 00000 n \n0003426928 00000 n \n0003418209 00000 n \n0003436767 00000 n \n0003436644 00000 n \n0003427135 00000 n \n0003438931 00000 n \n0003438808 00000 n \n0003436839 00000 n \n0003446849 00000 n \n0003446726 00000 n \n0003439015 00000 n \n0003457191 00000 n \n0003457068 00000 n \n0003446933 00000 n \n0003466200 00000 n \n0003466077 00000 n \n0003457275 00000 n \n0006567111 00000 n \n0003475220 00000 n \n0003475097 00000 n \n0003466272 00000 n \n0003485014 00000 n \n0003484891 00000 n \n0003475304 00000 n \n0003494748 00000 n \n0003494625 00000 n \n0003485086 00000 n \n0003504888 00000 n \n0003504765 00000 n \n0003494832 00000 n \n0003514576 00000 n \n0003514453 00000 n \n0003504960 00000 n \n0003523895 00000 n \n0003523772 00000 n \n0003514660 00000 n \n0006567236 00000 n \n0003533195 00000 n \n0003533072 00000 n \n0003523967 00000 n \n0003542614 00000 n \n0003542491 00000 n \n0003533279 00000 n \n0003551646 00000 n \n0003551523 00000 n \n0003542686 00000 n \n0003560828 00000 n \n0003560705 00000 n \n0003551730 00000 n \n0003569665 00000 n \n0003569542 00000 n \n0003560900 00000 n \n0003578714 00000 n \n0003578591 00000 n \n0003569749 00000 n \n0006567361 00000 n \n0003588425 00000 n \n0003588302 00000 n \n0003578786 00000 n \n0003597951 00000 n \n0003597828 00000 n \n0003588509 00000 n \n0003607923 00000 n \n0003607800 00000 n \n0003598023 00000 n \n0003617981 00000 n \n0003617858 00000 n \n0003608007 00000 n \n0003627238 00000 n \n0003627115 00000 n \n0003618053 00000 n \n0003630080 00000 n \n0003629957 00000 n \n0003627322 00000 n \n0006567486 00000 n \n0003630456 00000 n \n0003630333 00000 n \n0003630152 00000 n \n0003637935 00000 n \n0003637812 00000 n \n0003630540 00000 n \n0003648149 00000 n \n0003648026 00000 n \n0003638019 00000 n \n0003658703 00000 n \n0003658580 00000 n \n0003648233 00000 n \n0003668433 00000 n \n0003668310 00000 n \n0003658775 00000 n \n0003678382 00000 n \n0003678259 00000 n \n0003668517 00000 n \n0006567611 00000 n \n0003687723 00000 n \n0003687600 00000 n \n0003678454 00000 n \n0003697356 00000 n \n0003697233 00000 n \n0003687807 00000 n \n0003706314 00000 n \n0003706191 00000 n \n0003697428 00000 n \n0003715638 00000 n \n0003715515 00000 n \n0003706398 00000 n \n0003724543 00000 n \n0003724420 00000 n \n0003715710 00000 n \n0003732993 00000 n \n0003732870 00000 n \n0003724627 00000 n \n0006567736 00000 n \n0003742784 00000 n \n0003742661 00000 n \n0003733065 00000 n \n0003752974 00000 n \n0003752851 00000 n \n0003742868 00000 n \n0003763226 00000 n \n0003763103 00000 n \n0003753046 00000 n \n0003772486 00000 n \n0003772363 00000 n \n0003763310 00000 n \n0003781222 00000 n \n0003781099 00000 n \n0003772558 00000 n \n0003790746 00000 n \n0003790623 00000 n \n0003781306 00000 n \n0006567861 00000 n \n0003800115 00000 n \n0003799992 00000 n \n0003790818 00000 n \n0003809906 00000 n \n0003809783 00000 n \n0003800199 00000 n \n0003820177 00000 n \n0003820054 00000 n \n0003809978 00000 n \n0003828575 00000 n \n0003828452 00000 n \n0003820261 00000 n \n0003838136 00000 n \n0003838013 00000 n \n0003828647 00000 n \n0003847645 00000 n \n0003847522 00000 n \n0003838220 00000 n \n0006567986 00000 n \n0003854023 00000 n \n0003853900 00000 n \n0003847717 00000 n \n0003860433 00000 n \n0003860310 00000 n \n0003854107 00000 n \n0003869608 00000 n \n0003869485 00000 n \n0003860517 00000 n \n0003878147 00000 n \n0003878024 00000 n \n0003869692 00000 n \n0003886939 00000 n \n0003886816 00000 n \n0003878219 00000 n \n0003895658 00000 n \n0003895535 00000 n \n0003887023 00000 n \n0006568111 00000 n \n0003904975 00000 n \n0003904852 00000 n \n0003895730 00000 n \n0003914320 00000 n \n0003914197 00000 n \n0003905059 00000 n \n0003924573 00000 n \n0003924450 00000 n \n0003914392 00000 n \n0003934793 00000 n \n0003934670 00000 n \n0003924657 00000 n \n0003943973 00000 n \n0003943850 00000 n \n0003934865 00000 n \n0003953238 00000 n \n0003953115 00000 n \n0003944057 00000 n \n0006568236 00000 n \n0003962314 00000 n \n0003962191 00000 n \n0003953310 00000 n \n0003971736 00000 n \n0003971613 00000 n \n0003962398 00000 n \n0003981935 00000 n \n0003981812 00000 n \n0003971808 00000 n \n0003990841 00000 n \n0003990718 00000 n \n0003982019 00000 n \n0004001456 00000 n \n0004001333 00000 n \n0003990913 00000 n \n0004011002 00000 n \n0004010879 00000 n \n0004001540 00000 n \n0006568361 00000 n \n0004020929 00000 n \n0004020806 00000 n \n0004011074 00000 n \n0004030719 00000 n \n0004030596 00000 n \n0004021013 00000 n \n0004040101 00000 n \n0004039978 00000 n \n0004030791 00000 n \n0004041510 00000 n \n0004041387 00000 n \n0004040185 00000 n \n0004041886 00000 n \n0004041763 00000 n \n0004041582 00000 n \n0004048633 00000 n \n0004048510 00000 n \n0004041970 00000 n \n0006568486 00000 n \n0004057531 00000 n \n0004057408 00000 n \n0004048717 00000 n \n0004067120 00000 n \n0004066997 00000 n \n0004057615 00000 n \n0004076048 00000 n \n0004075925 00000 n \n0004067192 00000 n \n0004085690 00000 n \n0004085567 00000 n \n0004076132 00000 n \n0004094587 00000 n \n0004094464 00000 n \n0004085762 00000 n \n0004104390 00000 n \n0004104267 00000 n \n0004094671 00000 n \n0006568611 00000 n \n0004113083 00000 n \n0004112960 00000 n \n0004104462 00000 n \n0004123340 00000 n \n0004123217 00000 n \n0004113167 00000 n \n0004131833 00000 n \n0004131710 00000 n \n0004123412 00000 n \n0004140783 00000 n \n0004140660 00000 n \n0004131917 00000 n \n0004150929 00000 n \n0004150806 00000 n \n0004140855 00000 n \n0004160405 00000 n \n0004160282 00000 n \n0004151013 00000 n \n0006568736 00000 n \n0004170109 00000 n \n0004169986 00000 n \n0004160477 00000 n \n0004179737 00000 n \n0004179614 00000 n \n0004170193 00000 n \n0004189447 00000 n \n0004189324 00000 n \n0004179809 00000 n \n0004198711 00000 n \n0004198588 00000 n \n0004189531 00000 n \n0004208671 00000 n \n0004208548 00000 n \n0004198783 00000 n \n0004218699 00000 n \n0004218576 00000 n \n0004208755 00000 n \n0006568861 00000 n \n0004229623 00000 n \n0004229500 00000 n \n0004218771 00000 n \n0004238807 00000 n \n0004238684 00000 n \n0004229707 00000 n \n0004248203 00000 n \n0004248080 00000 n \n0004238879 00000 n \n0004257478 00000 n \n0004257355 00000 n \n0004248287 00000 n \n0004263754 00000 n \n0004263631 00000 n \n0004257550 00000 n \n0004271503 00000 n \n0004271380 00000 n \n0004263838 00000 n \n0006568986 00000 n \n0004281582 00000 n \n0004281459 00000 n \n0004271587 00000 n \n0004290914 00000 n \n0004290791 00000 n \n0004281666 00000 n \n0004300219 00000 n \n0004300096 00000 n \n0004290986 00000 n \n0004308810 00000 n \n0004308687 00000 n \n0004300303 00000 n \n0004319052 00000 n \n0004318929 00000 n \n0004308882 00000 n \n0004328466 00000 n \n0004328343 00000 n \n0004319136 00000 n \n0006569111 00000 n \n0004338209 00000 n \n0004338086 00000 n \n0004328538 00000 n \n0004346929 00000 n \n0004346806 00000 n \n0004338293 00000 n \n0004356493 00000 n \n0004356370 00000 n \n0004347001 00000 n \n0004365737 00000 n \n0004365614 00000 n \n0004356577 00000 n \n0004374874 00000 n \n0004374751 00000 n \n0004365809 00000 n \n0004383204 00000 n \n0004383081 00000 n \n0004374958 00000 n \n0006569236 00000 n \n0004392456 00000 n \n0004392333 00000 n \n0004383276 00000 n \n0004401807 00000 n \n0004401684 00000 n \n0004392540 00000 n \n0004411391 00000 n \n0004411268 00000 n \n0004401879 00000 n \n0004419728 00000 n \n0004419605 00000 n \n0004411475 00000 n \n0004428294 00000 n \n0004428171 00000 n \n0004419800 00000 n \n0004437634 00000 n \n0004437511 00000 n \n0004428378 00000 n \n0006569361 00000 n \n0004447078 00000 n \n0004446955 00000 n \n0004437706 00000 n \n0004457059 00000 n \n0004456936 00000 n \n0004447162 00000 n \n0004466501 00000 n \n0004466378 00000 n \n0004457131 00000 n \n0004476356 00000 n \n0004476233 00000 n \n0004466585 00000 n \n0004484478 00000 n \n0004484355 00000 n \n0004476428 00000 n \n0004493923 00000 n \n0004493800 00000 n \n0004484562 00000 n \n0006569486 00000 n \n0004499188 00000 n \n0004499065 00000 n \n0004493995 00000 n \n0004506401 00000 n \n0004506278 00000 n \n0004499272 00000 n \n0004515181 00000 n \n0004515058 00000 n \n0004506485 00000 n \n0004524270 00000 n \n0004524147 00000 n \n0004515265 00000 n \n0004533254 00000 n \n0004533131 00000 n \n0004524342 00000 n \n0004543191 00000 n \n0004543068 00000 n \n0004533338 00000 n \n0006569611 00000 n \n0004552331 00000 n \n0004552208 00000 n \n0004543263 00000 n \n0004561921 00000 n \n0004561798 00000 n \n0004552415 00000 n \n0004571340 00000 n \n0004571217 00000 n \n0004561993 00000 n \n0004580535 00000 n \n0004580412 00000 n \n0004571424 00000 n \n0004590474 00000 n \n0004590351 00000 n \n0004580607 00000 n \n0004600454 00000 n \n0004600331 00000 n \n0004590558 00000 n \n0006569736 00000 n \n0004610294 00000 n \n0004610171 00000 n \n0004600526 00000 n \n0004619377 00000 n \n0004619254 00000 n \n0004610378 00000 n \n0004628850 00000 n \n0004628727 00000 n \n0004619449 00000 n \n0004637907 00000 n \n0004637784 00000 n \n0004628934 00000 n \n0004647047 00000 n \n0004646924 00000 n \n0004637979 00000 n \n0004656738 00000 n \n0004656615 00000 n \n0004647131 00000 n \n0006569861 00000 n \n0004665824 00000 n \n0004665701 00000 n \n0004656810 00000 n \n0004670076 00000 n \n0004669953 00000 n \n0004665908 00000 n \n0004670452 00000 n \n0004670329 00000 n \n0004670148 00000 n \n0004677756 00000 n \n0004677633 00000 n \n0004670536 00000 n \n0004687826 00000 n \n0004687703 00000 n \n0004677840 00000 n \n0004697857 00000 n \n0004697734 00000 n \n0004687910 00000 n \n0006569986 00000 n \n0004706184 00000 n \n0004706061 00000 n \n0004697929 00000 n \n0004715726 00000 n \n0004715603 00000 n \n0004706268 00000 n \n0004724502 00000 n \n0004724379 00000 n \n0004715798 00000 n \n0004733944 00000 n \n0004733821 00000 n \n0004724586 00000 n \n0004743296 00000 n \n0004743173 00000 n \n0004734016 00000 n \n0004752165 00000 n \n0004752042 00000 n \n0004743380 00000 n \n0006570111 00000 n \n0004761146 00000 n \n0004761023 00000 n \n0004752237 00000 n \n0004770588 00000 n \n0004770465 00000 n \n0004761230 00000 n \n0004780132 00000 n \n0004780009 00000 n \n0004770660 00000 n \n0004789374 00000 n \n0004789251 00000 n \n0004780216 00000 n \n0004798474 00000 n \n0004798351 00000 n \n0004789446 00000 n \n0004807933 00000 n \n0004807810 00000 n \n0004798558 00000 n \n0006570236 00000 n \n0004811700 00000 n \n0004811577 00000 n \n0004808005 00000 n \n0004818377 00000 n \n0004818254 00000 n \n0004811784 00000 n \n0004827960 00000 n \n0004827837 00000 n \n0004818461 00000 n \n0004837637 00000 n \n0004837514 00000 n \n0004828044 00000 n \n0004846762 00000 n \n0004846639 00000 n \n0004837709 00000 n \n0004856563 00000 n \n0004856440 00000 n \n0004846846 00000 n \n0006570361 00000 n \n0004865682 00000 n \n0004865559 00000 n \n0004856635 00000 n \n0004875157 00000 n \n0004875034 00000 n \n0004865766 00000 n \n0004885087 00000 n \n0004884964 00000 n \n0004875229 00000 n \n0004894135 00000 n \n0004894012 00000 n \n0004885171 00000 n \n0004904362 00000 n \n0004904239 00000 n \n0004894207 00000 n \n0004911652 00000 n \n0004911529 00000 n \n0004904446 00000 n \n0006570486 00000 n \n0004912028 00000 n \n0004911905 00000 n \n0004911724 00000 n \n0004912413 00000 n \n0004912290 00000 n \n0004912112 00000 n \n0004912668 00000 n \n0004912545 00000 n \n0004912485 00000 n \n0004919457 00000 n \n0004919334 00000 n \n0004912710 00000 n \n0004928268 00000 n \n0004928145 00000 n \n0004919541 00000 n \n0004937324 00000 n \n0004937201 00000 n \n0004928352 00000 n \n0006570611 00000 n \n0004946551 00000 n \n0004946428 00000 n \n0004937396 00000 n \n0004956268 00000 n \n0004956145 00000 n \n0004946635 00000 n \n0004965977 00000 n \n0004965854 00000 n \n0004956340 00000 n \n0004975999 00000 n \n0004975876 00000 n \n0004966061 00000 n \n0004985183 00000 n \n0004985060 00000 n \n0004976071 00000 n \n0004994502 00000 n \n0004994379 00000 n \n0004985267 00000 n \n0006570736 00000 n \n0005004827 00000 n \n0005004704 00000 n \n0004994574 00000 n \n0005014123 00000 n \n0005014000 00000 n \n0005004911 00000 n \n0005022820 00000 n \n0005022697 00000 n \n0005014195 00000 n \n0005031945 00000 n \n0005031822 00000 n \n0005022904 00000 n \n0005041485 00000 n \n0005041362 00000 n \n0005032017 00000 n \n0005050477 00000 n \n0005050354 00000 n \n0005041569 00000 n \n0006570861 00000 n \n0005060199 00000 n \n0005060076 00000 n \n0005050549 00000 n \n0005068824 00000 n \n0005068701 00000 n \n0005060283 00000 n \n0005078503 00000 n \n0005078380 00000 n \n0005068896 00000 n \n0005088148 00000 n \n0005088025 00000 n \n0005078587 00000 n \n0005097401 00000 n \n0005097278 00000 n \n0005088220 00000 n \n0005106690 00000 n \n0005106567 00000 n \n0005097485 00000 n \n0006570986 00000 n \n0005107336 00000 n \n0005107213 00000 n \n0005106762 00000 n \n0005114490 00000 n \n0005114367 00000 n \n0005107420 00000 n \n0005124781 00000 n \n0005124658 00000 n \n0005114574 00000 n \n0005134867 00000 n \n0005134744 00000 n \n0005124865 00000 n \n0005144283 00000 n \n0005144160 00000 n \n0005134939 00000 n \n0005152118 00000 n \n0005151995 00000 n \n0005144367 00000 n \n0006571111 00000 n \n0005160854 00000 n \n0005160731 00000 n \n0005152190 00000 n \n0005169870 00000 n \n0005169747 00000 n \n0005160938 00000 n \n0005178665 00000 n \n0005178542 00000 n \n0005169942 00000 n \n0005188320 00000 n \n0005188197 00000 n \n0005178749 00000 n \n0005196658 00000 n \n0005196535 00000 n \n0005188392 00000 n \n0005205650 00000 n \n0005205527 00000 n \n0005196742 00000 n \n0006571236 00000 n \n0005215094 00000 n \n0005214971 00000 n \n0005205722 00000 n \n0005223470 00000 n \n0005223347 00000 n \n0005215178 00000 n \n0005232184 00000 n \n0005232061 00000 n \n0005223542 00000 n \n0005240607 00000 n \n0005240484 00000 n \n0005232268 00000 n \n0005250340 00000 n \n0005250217 00000 n \n0005240679 00000 n \n0005259670 00000 n \n0005259547 00000 n \n0005250424 00000 n \n0006571361 00000 n \n0005269178 00000 n \n0005269055 00000 n \n0005259742 00000 n \n0005278722 00000 n \n0005278599 00000 n \n0005269262 00000 n \n0005279432 00000 n \n0005279309 00000 n \n0005278794 00000 n \n0005286362 00000 n \n0005286239 00000 n \n0005279516 00000 n \n0005295882 00000 n \n0005295759 00000 n \n0005286446 00000 n \n0005304143 00000 n \n0005304020 00000 n \n0005295966 00000 n \n0006571486 00000 n \n0005312569 00000 n \n0005312446 00000 n \n0005304215 00000 n \n0005321307 00000 n \n0005321184 00000 n \n0005312653 00000 n \n0005329637 00000 n \n0005329514 00000 n \n0005321379 00000 n \n0005338787 00000 n \n0005338664 00000 n \n0005329721 00000 n \n0005348804 00000 n \n0005348681 00000 n \n0005338859 00000 n \n0005357796 00000 n \n0005357673 00000 n \n0005348888 00000 n \n0006571611 00000 n \n0005367035 00000 n \n0005366912 00000 n \n0005357868 00000 n \n0005376899 00000 n \n0005376776 00000 n \n0005367119 00000 n \n0005385431 00000 n \n0005385308 00000 n \n0005376971 00000 n \n0005391649 00000 n \n0005391526 00000 n \n0005385515 00000 n \n0005392025 00000 n \n0005391902 00000 n \n0005391721 00000 n \n0005400050 00000 n \n0005399927 00000 n \n0005392109 00000 n \n0006571736 00000 n \n0005409421 00000 n \n0005409298 00000 n \n0005400134 00000 n \n0005418874 00000 n \n0005418751 00000 n \n0005409505 00000 n \n0005427896 00000 n \n0005427773 00000 n \n0005418946 00000 n \n0005437065 00000 n \n0005436942 00000 n \n0005427980 00000 n \n0005445973 00000 n \n0005445850 00000 n \n0005437137 00000 n \n0005455052 00000 n \n0005454929 00000 n \n0005446057 00000 n \n0006571861 00000 n \n0005464375 00000 n \n0005464252 00000 n \n0005455124 00000 n \n0005473323 00000 n \n0005473200 00000 n \n0005464459 00000 n \n0005482812 00000 n \n0005482689 00000 n \n0005473395 00000 n \n0005492236 00000 n \n0005492113 00000 n \n0005482896 00000 n \n0005502130 00000 n \n0005502007 00000 n \n0005492308 00000 n \n0005511868 00000 n \n0005511745 00000 n \n0005502214 00000 n \n0006571986 00000 n \n0005520521 00000 n \n0005520398 00000 n \n0005511940 00000 n \n0005529377 00000 n \n0005529254 00000 n \n0005520605 00000 n \n0005538659 00000 n \n0005538536 00000 n \n0005529449 00000 n \n0005541430 00000 n \n0005541307 00000 n \n0005538743 00000 n \n0005541806 00000 n \n0005541683 00000 n \n0005541502 00000 n \n0005548849 00000 n \n0005548726 00000 n \n0005541890 00000 n \n0006572111 00000 n \n0005557504 00000 n \n0005557381 00000 n \n0005548933 00000 n \n0005566363 00000 n \n0005566240 00000 n \n0005557588 00000 n \n0005575562 00000 n \n0005575439 00000 n \n0005566435 00000 n \n0005584731 00000 n \n0005584608 00000 n \n0005575646 00000 n \n0005594250 00000 n \n0005594127 00000 n \n0005584803 00000 n \n0005603012 00000 n \n0005602889 00000 n \n0005594334 00000 n \n0006572236 00000 n \n0005611348 00000 n \n0005611225 00000 n \n0005603084 00000 n \n0005619688 00000 n \n0005619565 00000 n \n0005611432 00000 n \n0005629181 00000 n \n0005629058 00000 n \n0005619760 00000 n \n0005638376 00000 n \n0005638253 00000 n \n0005629265 00000 n \n0005647819 00000 n \n0005647696 00000 n \n0005638448 00000 n \n0005657020 00000 n \n0005656897 00000 n \n0005647903 00000 n \n0006572361 00000 n \n0005666163 00000 n \n0005666040 00000 n \n0005657092 00000 n \n0005675568 00000 n \n0005675445 00000 n \n0005666247 00000 n \n0005684057 00000 n \n0005683934 00000 n \n0005675640 00000 n \n0005693785 00000 n \n0005693662 00000 n \n0005684141 00000 n \n0005703366 00000 n \n0005703243 00000 n \n0005693857 00000 n \n0005711258 00000 n \n0005711135 00000 n \n0005703450 00000 n \n0006572486 00000 n \n0005716834 00000 n \n0005716711 00000 n \n0005711330 00000 n \n0005723720 00000 n \n0005723597 00000 n \n0005716918 00000 n \n0005734021 00000 n \n0005733898 00000 n \n0005723804 00000 n \n0005743347 00000 n \n0005743224 00000 n \n0005734105 00000 n \n0005752249 00000 n \n0005752126 00000 n \n0005743419 00000 n \n0005761525 00000 n \n0005761402 00000 n \n0005752333 00000 n \n0006572611 00000 n \n0005770869 00000 n \n0005770746 00000 n \n0005761597 00000 n \n0005780185 00000 n \n0005780062 00000 n \n0005770953 00000 n \n0005789459 00000 n \n0005789336 00000 n \n0005780257 00000 n \n0005799317 00000 n \n0005799194 00000 n \n0005789543 00000 n \n0005809054 00000 n \n0005808931 00000 n \n0005799389 00000 n \n0005811645 00000 n \n0005811522 00000 n \n0005809138 00000 n \n0006572736 00000 n \n0005812021 00000 n \n0005811898 00000 n \n0005811717 00000 n \n0005818941 00000 n \n0005818818 00000 n \n0005812105 00000 n \n0005828615 00000 n \n0005828492 00000 n \n0005819025 00000 n \n0005838678 00000 n \n0005838555 00000 n \n0005828699 00000 n \n0005848595 00000 n \n0005848472 00000 n \n0005838750 00000 n \n0005858823 00000 n \n0005858700 00000 n \n0005848679 00000 n \n0006572861 00000 n \n0005868450 00000 n \n0005868327 00000 n \n0005858895 00000 n \n0005877150 00000 n \n0005877027 00000 n \n0005868534 00000 n \n0005886953 00000 n \n0005886830 00000 n \n0005877222 00000 n \n0005891375 00000 n \n0005891252 00000 n \n0005887037 00000 n \n0005891751 00000 n \n0005891628 00000 n \n0005891447 00000 n \n0005899268 00000 n \n0005899145 00000 n \n0005891835 00000 n \n0006572986 00000 n \n0005908852 00000 n \n0005908729 00000 n \n0005899352 00000 n \n0005918276 00000 n \n0005918153 00000 n \n0005908936 00000 n \n0005927988 00000 n \n0005927865 00000 n \n0005918348 00000 n \n0005937768 00000 n \n0005937645 00000 n \n0005928072 00000 n \n0005947277 00000 n \n0005947154 00000 n \n0005937840 00000 n \n0005956719 00000 n \n0005956596 00000 n \n0005947361 00000 n \n0006573111 00000 n \n0005965778 00000 n \n0005965655 00000 n \n0005956791 00000 n \n0005974926 00000 n \n0005974803 00000 n \n0005965862 00000 n \n0005983387 00000 n \n0005983264 00000 n \n0005974998 00000 n \n0005992333 00000 n \n0005992210 00000 n \n0005983471 00000 n \n0005994745 00000 n \n0005994622 00000 n \n0005992405 00000 n \n0006002204 00000 n \n0006002081 00000 n \n0005994829 00000 n \n0006573236 00000 n \n0006012487 00000 n \n0006012364 00000 n \n0006002288 00000 n \n0006022715 00000 n \n0006022592 00000 n \n0006012571 00000 n \n0006032164 00000 n \n0006032041 00000 n \n0006022787 00000 n \n0006041491 00000 n \n0006041368 00000 n \n0006032248 00000 n \n0006051087 00000 n \n0006050964 00000 n \n0006041563 00000 n \n0006060721 00000 n \n0006060598 00000 n \n0006051171 00000 n \n0006573361 00000 n \n0006070933 00000 n \n0006070810 00000 n \n0006060793 00000 n \n0006081128 00000 n \n0006081005 00000 n \n0006071017 00000 n \n0006091288 00000 n \n0006091165 00000 n \n0006081200 00000 n \n0006101167 00000 n \n0006101044 00000 n \n0006091372 00000 n \n0006111322 00000 n \n0006111199 00000 n \n0006101239 00000 n \n0006120290 00000 n \n0006120167 00000 n \n0006111406 00000 n \n0006573486 00000 n \n0006130269 00000 n \n0006130146 00000 n \n0006120362 00000 n \n0006140004 00000 n \n0006139881 00000 n \n0006130353 00000 n \n0006149188 00000 n \n0006149065 00000 n \n0006140076 00000 n \n0006158577 00000 n \n0006158454 00000 n \n0006149272 00000 n \n0006163645 00000 n \n0006163522 00000 n \n0006158649 00000 n \n0006170317 00000 n \n0006170194 00000 n \n0006163729 00000 n \n0006573611 00000 n \n0006179567 00000 n \n0006179444 00000 n \n0006170401 00000 n \n0006187916 00000 n \n0006187793 00000 n \n0006179651 00000 n \n0006197148 00000 n \n0006197025 00000 n \n0006187988 00000 n \n0006205818 00000 n \n0006205695 00000 n \n0006197232 00000 n \n0006215281 00000 n \n0006215158 00000 n \n0006205890 00000 n \n0006224393 00000 n \n0006224270 00000 n \n0006215365 00000 n \n0006573736 00000 n \n0006224769 00000 n \n0006224646 00000 n \n0006224465 00000 n \n0006232037 00000 n \n0006231914 00000 n \n0006224853 00000 n \n0006240833 00000 n \n0006240710 00000 n \n0006232121 00000 n \n0006250397 00000 n \n0006250274 00000 n \n0006240917 00000 n \n0006259502 00000 n \n0006259379 00000 n \n0006250469 00000 n \n0006269027 00000 n \n0006268904 00000 n \n0006259586 00000 n \n0006573861 00000 n \n0006278955 00000 n \n0006278832 00000 n \n0006269099 00000 n \n0006289234 00000 n \n0006289111 00000 n \n0006279039 00000 n \n0006298868 00000 n \n0006298745 00000 n \n0006289306 00000 n \n0006302206 00000 n \n0006302083 00000 n \n0006298952 00000 n \n0006302582 00000 n \n0006302459 00000 n \n0006302278 00000 n \n0006309622 00000 n \n0006309499 00000 n \n0006302666 00000 n \n0006573986 00000 n \n0006319721 00000 n \n0006319598 00000 n \n0006309706 00000 n \n0006329262 00000 n \n0006329139 00000 n \n0006319805 00000 n \n0006339429 00000 n \n0006339306 00000 n \n0006329334 00000 n \n0006349523 00000 n \n0006349400 00000 n \n0006339513 00000 n \n0006359421 00000 n \n0006359298 00000 n \n0006349595 00000 n \n0006368941 00000 n \n0006368818 00000 n \n0006359505 00000 n \n0006574111 00000 n \n0006378967 00000 n \n0006378844 00000 n \n0006369013 00000 n \n0006385631 00000 n \n0006385508 00000 n \n0006379051 00000 n \n0006386007 00000 n \n0006385884 00000 n \n0006385703 00000 n \n0006393517 00000 n \n0006393394 00000 n \n0006386091 00000 n \n0006402824 00000 n \n0006402701 00000 n \n0006393601 00000 n \n0006412164 00000 n \n0006412041 00000 n \n0006402908 00000 n \n0006574236 00000 n \n0006421699 00000 n \n0006421576 00000 n \n0006412236 00000 n \n0006431101 00000 n \n0006430978 00000 n \n0006421783 00000 n \n0006441562 00000 n \n0006441439 00000 n \n0006431173 00000 n \n0006451541 00000 n \n0006451418 00000 n \n0006441646 00000 n \n0006461183 00000 n \n0006461060 00000 n \n0006451613 00000 n \n0006470018 00000 n \n0006469895 00000 n \n0006461267 00000 n \n0006574361 00000 n \n0006479895 00000 n \n0006479772 00000 n \n0006470090 00000 n \n0006490071 00000 n \n0006489948 00000 n \n0006479979 00000 n \n0006498080 00000 n \n0006497957 00000 n \n0006490143 00000 n \n0006498164 00000 n \n0006508445 00000 n \n0006514934 00000 n \n0006526722 00000 n \n0006545401 00000 n \n0006552993 00000 n \n0006558827 00000 n \n0006574468 00000 n \n0006574583 00000 n \n0006574703 00000 n \n0006574823 00000 n \n0006574943 00000 n \n0006575063 00000 n \n0006575183 00000 n \n0006575303 00000 n \n0006575423 00000 n \n0006575545 00000 n \n0006575671 00000 n \n0006575797 00000 n \n0006575923 00000 n \n0006576049 00000 n \n0006576175 00000 n \n0006576301 00000 n \n0006576427 00000 n \n0006576553 00000 n \n0006576679 00000 n \n0006576805 00000 n \n0006576931 00000 n \n0006577057 00000 n \n0006577137 00000 n \n0006577264 00000 n \n0006577391 00000 n \n0006577518 00000 n \n0006577627 00000 n \n0006577719 00000 n \n0006577774 00000 n \ntrailer\n<<\n/Size 2462\n/Root 2460 0 R\n/Info 2461 0 R\n>>\nstartxref\n6577871\n%%EOF\n"
  },
  {
    "path": "testdata/urls.10K",
    "content": "http://ftp.sektornet.dk/tucows/herdwin0904.html\nhttp://209.143.244.16/directory/us/nd/fargo/insurance/automotive.html\nhttp://bellona.itworld.com:8080/cwi/reprint/0,1926,NAV63-128-1357-1367_STO46538,00.html\nhttp://www.legis.state.ia.us/usr/ns-home/docs/GA/76GA/Session.2/SJournal/01600/01644.html\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showFolder/100001/1211898\nhttp://www.burstnet.com/ads/ad7826a-map.cgi/271412263\nhttp://topcu.tucows.com/winme/adnload/137036_30095.html\nhttp://topcu.tucows.com/winme/adnload/145034_49120.html\nhttp://link.fastpartner.com/do/session/600342/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bitconomy.php\nhttp://www.retrobytes.org/classiccmp/9911/msg01245.html\nhttp://www.localbusiness.com/Story/Print/0,1197,DFW_196102,00.html\nhttp://bbs.kh.edu.tw/treasure/childhood/M.962620586.A/M.966031025.A/M.966031098.A.html\nhttp://www.hig.se/(accessed,clientname,return)/~jackson/roxen/testform.html\nhttp://www.ipclub.ru:8102/cgi-bin/linkmaker/linklist-view.cgi?owner=elvis&Sector=434\nhttp://www.dulux.co.uk/UKRETAIL:229853034:DFinity.1QJiP4jMofi7bof\nhttp://www.dominionpost.com/cgi-bin/redirect.exe/85288\nhttp://br.egroups.com/message/anedotas/3988\nhttp://www.ing.iac.es/~cfg/group_notes/texinfo/spec/file$_must$_exist_$28appendfile$29.html\nhttp://hurweb01.hurriyetim.com.tr/hur/turk/99/06/22/yasam/14yas.htm\nhttp://www3.plala.or.jp/shinchi/niltuki/mai0416.htm\nhttp://www3.plala.or.jp/shinchi/niltuki/mai0420.htm\nhttp://213.36.119.69/do/session/152968/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml\nhttp://www.meristation.es/Trucos/s/starcraft_brood.htm\nhttp://www.meristation.es/Trucos/trainer/train_star_war.htm\nhttp://www.askme.com/cat/ShowCategory_3104_an_9.htm\nhttp://mozilla.org/newlayout/testcases/css/sec542cm.htm\nhttp://ampec.ampec.it/ted/box04/page36.htm\nhttp://ampec.ampec.it/ted/box04/page39.htm\nhttp://ampec.ampec.it/ted/box04/page42.htm\nhttp://ampec.ampec.it/ted/box04/page58.htm\nhttp://ampec.ampec.it/ted/box04/page62.htm\nhttp://www.businesswire.com/webbox/bw.080300/202160192.htm\nhttp://www.businesswire.com/webbox/bw.062700/201790580.htm\nhttp://www.businesswire.com/webbox/bw.040300/200940796.htm\nhttp://retailer.gocollect.com/do/session/1912606/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1\nhttp://retailer.gocollect.com/do/session/1912606/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?ivy::116.html\nhttp://www.spiral.at/Katalog/Artikel/6150331/\nhttp://www.spiral.at/Katalog/Artikel/6150390/\nhttp://www.spiral.at/Katalog/Artikel/6150411/\nhttp://bbs.msquare.or.kr/list.bbs/writer/Soohah/8.html\nhttp://www.eskimo.com/~wesn/waflyfishers/msg03537.html\nhttp://denniscares.mp2.homes.com/content/glossary.html?Letter=A\nhttp://library.bangor.ac.uk/search/aChandler,+Peter,+1936-/achandler+peter+1936/-5,-1,0,B/bibandlinks&F=achandler+raymond+1888+1959&5,,6\nhttp://www.kimkihong.pe.kr/\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/199/1998/6/0/1323673/\nhttp://musictz.com/user/fernman.html\nhttp://tucows.concepts.nl/winnt/adnload/1381_28803.html\nhttp://www.mirror.kiev.ua:8083/paper/2000/03/1251/text/03-06-6.htm\nhttp://ring.crl.go.jp/pub/linux/debian/debian-jp/dists/stable/non-free/binary-arm/x11/?N=D\nhttp://news.novgorod.ru/news/2000/4/23/2/9\nhttp://www.egroups.com/dir/World/Deutsch/Gesellschaft/Bildung/Schule?st=167\nhttp://www.egroups.com/group/abitur98\nhttp://genforum.genealogy.com/cgi-genforum/forums/casey.cgi?1477\nhttp://www.tvstore.com/browse/TV/BOXERSHO/s.UtRroVXF\nhttp://www.tvstore.com/browse/TV/COLLECTI/s.UtRroVXF\nhttp://www.tvstore.com/browse/TV/EARRINGS/s.UtRroVXF\nhttp://polygraph.ircache.net:8181/text/m90/http_-2ewp.aliant.com/attivita.htm\nhttp://rosebay.1000pages.com/ceclgt12.htm\nhttp://www02.u-page.so-net.ne.jp/sb3/mizo/home/sub1/link2/?M=A\nhttp://community.webshots.com/photo/5827455/5827535oqdRLPNiek\nhttp://troy.lib.sfu.ca/search/dbiology+periodicals/dbiology+periodicals/19,-1,0,B/frameset&F=dbiology+religious+aspects&1,1\nhttp://213.36.119.69/do/session/152973/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/special/alitalia.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/linux/math/computers/tunes.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/linux/math/lit/hasard.html\nhttp://www.elop.de/l0-1011-xx-3006-top.html\nhttp://britanica.com/bcom/eb/article/idxref/0/0,5716,364643,00.html\nhttp://britanica.com/bcom/eb/article/7/0,5716,28557+1+28108,00.html\nhttp://www.geocrawler.com/archives/3/3174/2000/5/50/3724502/\nhttp://www.geocrawler.com/archives/3/3174/2000/5/50/3699557/\nhttp://www.geocrawler.com/archives/3/3174/2000/5/50/3689003/\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/net/slirp/files/\nhttp://www.duluxvalentine.com/FRANCE:219793321:DFinity.1QJiP4jmPgUaedp\nhttp://mundo.ole.es/ocio/articulo/html/oci4270.htm\nhttp://www.maasvlakte-cam.nl/webcams/43/etna__italy/1999/08/29/01:28:02.html\nhttp://www.chinabyte.com/staticpages/builder/builder_course_next/HIPR/builder_course_next_219_HIPR.html\nhttp://www.prospects2.csu.ac.uk/servlet/postgrad.TcAssess?pgid=9634\nhttp://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/SPP/?N=D\nhttp://www.egroups.com/message/WDT/7751\nhttp://pub8.ezboard.com/fapricotyarn.unsubscribeUnregisteredToTopic?topicID=4.topic\nhttp://support.tandy.com/support_audio/doc9/9679.htm\nhttp://megalink.tucows.com/winme/preview/74862.html\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/199/1996/2/0/2460450/\nhttp://www.monaco.gouv.mc/dataweb/gouvmc.nsf/(NewsActu)/d28eaee29b3287d4c1256905004e1ef1!OpenDocument&ExpandSection=10.3,10.4,7,9,4,6\nhttp://www.fao.org/montes/foda/wforcong/PUBLI/V2/T8S/1-3.HTM\nhttp://library.cuhk.edu.hk/search*chi/a蔡淙霖,+1965-/a%7B215572%7D%7B214758%7D%7B215f60%7D+1965/-5,-1,0,B/browse\nhttp://www.nrk.no/finnmark/x31_12_97/nyh6.htm\nhttp://www.dailyrush.dk/stories/129/comments/pages/1\nhttp://home.wanadoo.nl/pieter.heres/nedbaskteam/nbt/Web%20Album%20nbt%20spelers/page3.htm\nhttp://members.tripod.co.jp/masa_selfish/?M=A\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/misc/lile/patches/Attic/?sortby=date\nhttp://www.chaos.dk/sexriddle/z/l/x/y/m/\nhttp://www.chaos.dk/sexriddle/z/l/x/y/p/\nhttp://users.sexyboards.com/amandaslut/messages/17.html\nhttp://pub11.ezboard.com/fusscroatiastartrekanimators.showAddTopicScreenFromWeb\nhttp://retailer.gocollect.com/do/session/1912610/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-current/misc/boxes/pkg-comment\nhttp://www.ce-europe2.philips.com/do/session/80299/vsid/1034/tid/1034/cid/28533/mid/1020/rid/1021/chid/1024/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkZHbjbHrolLmbkKmefLifmLpkZHljlKmoaLl0/url/http://www.eu.microsoft.com/windows/ie_intl/es/\nhttp://www.peopledaily.co.jp/199904/26/newfiles/col_990426001084_tyxw.html\nhttp://www.peopledaily.co.jp/199904/26/newfiles/col_990426001087_tyxw.html\nhttp://iraustralia.com/listco/hk/swire/profile.htm\nhttp://jefferson.village.virginia.edu/wax/slow/english/3pix/BRight2/1/1a5a15a1.html\nhttp://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=35.16&Count=30&Expand=37\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380772/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry1.asp\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/B1U/B1R/A3S/A4R/C2U/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/B1U/B1R/A3S/A4R/C2S/\nhttp://www.quia.com/email.cgi?7106&fc\nhttp://www.mirror.edu.cn/res/sunsite/pub/academic/agriculture/sustainable_agriculture/news+mail-archives/6/\nhttp://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/Beholder/CVSROOT/config?only_with_tag=MAIN\nhttp://collection.nlc-bnc.ca/100/201/300/info_tabac/html/1998/bull21/poumon.html\nhttp://www.erotism.com/sweetlostcherry/g3.htm\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/SharewareMusicMachine/MusicSoftware1/96457\nhttp://members.tripod.com/~tonarcos/paginas/Nancy1.html\nhttp://www.gbnf.com/genealog2/stout/html/d0024/I2144.HTM\nhttp://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/deskutils/cbb/\nhttp://www.hri.org/docs//statedep/95-09-13.std.html\nhttp://ftp.univie.ac.at/packages/tex/macros/latex//contrib/supported/eurofont/adobeuro/readme.txt\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/showNextUnseen/fol/100001/1513138\nhttp://tucows.ipv.pt/winnt/adnload/1891_28712.html\nhttp://www.tucsonweekly.com/tw/02-09-95/danehy.htm\nhttp://message/artefactphil/87?expand=1\nhttp://www.kiarchive.ru:8091/pub/FreeBSD/FreeBSD-current/src/gnu/Makefile/\nhttp://retailer.gocollect.com/do/session/1912644/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp\nhttp://retailer.gocollect.com/do/session/1912644/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp\nhttp://park.org:8888/Cdrom/TheNot/Mail/NotPark/msg00070.html\nhttp://citeseer.nj.nec.com/cachedpage/67611/1\nhttp://citeseer.nj.nec.com/cidcontext/1053642\nhttp://www.3w-buecher.de/GiacamanGeorge/GiacamanGeorge0745312381.htm\nhttp://au.yahoo.com/Regional/U_S__States/Colorado/Cities/Littleton/Real_Estate/Agencies/\nhttp://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=21,28,29,32,22\nhttp://hem.fyristorg.com/bfo/gagarin/WWW.SAMIRADIO.ORG/svenska/sport-sv.html\nhttp://www.chaos.dk/sexriddle/e/n/q/v/m/\nhttp://www.hig.se/(formoutput,remove_cookie,sort,sql,sqlquery)/~jackson/roxen/\nhttp://129.142.8.149/ds/it/isodocs/122400/12240011/12240000117900/\nhttp://129.142.8.149/ds/it/isodocs/122400/12240011/12240000116400/\nhttp://129.142.8.149/ds/it/isodocs/122400/12240011/12240000116200/\nhttp://129.142.8.149/ds/it/isodocs/122400/12240011/12240000113100/\nhttp://129.142.8.149/ds/it/isodocs/122400/12240011/12240000110800/\nhttp://koi.www.citycat.ru/funny/fido/2000_10/07.html\nhttp://koi.www.citycat.ru/funny/fido/2000_10/09.html\nhttp://www.hig.se/(countdown,debug,header,if,return)/~jackson/roxen/\nhttp://www.findtravel.to/search_engine_directory/north_america_usa_canada/united_states/michigan/_travel_guides/\nhttp://mediate.magicbutton.net/do/session/625534/vsid/3255/tid/3255/cid/87978/mid/2008/rid/2157/chid/2581/url/http://www1.getmapping.com/competition/index.cfm\nhttp://mediate.magicbutton.net/do/session/625534/vsid/3255/tid/3255/cid/87978/mid/2008/rid/2157/chid/2581/url/http://www1.getmapping.com/aboutus/partners2.cfm\nhttp://www.petropages.com/products/p9827.htm\nhttp://www.egroups.com/login.cgi?login_target=%2Fmessage%2Fspynews%2F54\nhttp://health.sx.zj.cn/Treatment/SuperGuide/2000-3-8/4716.htm\nhttp://www.nease.net/~qin/chardware.htm\nhttp://www.argos.asso.fr/bourges/pratiq/emploi/texte/anpesud.htm\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-current/www/p5-Apache-Session/?S=A\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959425847/Catalog/1000046\nhttp://retailer.gocollect.com/do/session/1912628/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1\nhttp://yp.gates96.com/1/10/21/73.html\nhttp://yp.gates96.com/1/10/21/95.html\nhttp://yp.gates96.com/1/10/22/21.html\nhttp://yp.gates96.com/1/10/22/31.html\nhttp://yp.gates96.com/1/10/22/52.html\nhttp://yp.gates96.com/1/10/22/76.html\nhttp://yp.gates96.com/1/10/22/79.html\nhttp://yp.gates96.com/1/10/23/57.html\nhttp://yp.gates96.com/1/10/23/73.html\nhttp://yp.gates96.com/1/10/25/20.html\nhttp://yp.gates96.com/1/10/25/46.html\nhttp://yp.gates96.com/1/10/25/87.html\nhttp://yp.gates96.com/1/10/26/76.html\nhttp://yp.gates96.com/1/10/26/84.html\nhttp://yp.gates96.com/1/10/27/67.html\nhttp://yp.gates96.com/1/10/28/70.html\nhttp://yp.gates96.com/1/10/28/91.html\nhttp://live.excite.com/lifestyle/politics_and_society/countries/asia/uzbekistan/guides_and_reference/\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/367/114176//C/1825519/0////25/S/MLTPAI\nhttp://mai.flora.org/forum/5322\nhttp://mai.flora.org/forum/5318\nhttp://www.brickshelf.com/scans/0000/0715/0715-03.html\nhttp://www.brickshelf.com/scans/0000/0715/0715-12.html\nhttp://www.brickshelf.com/scans/0000/0715/0715-21.html\nhttp://www.msb.malmo.se/search*swe/dManikyr/dmanikyr/-5,-1,0,B/frameset&F=dmani&1,1\nhttp://message/cinematik/2441?expand=1\nhttp://message/cinematik/2447?expand=1\nhttp://www.jamba.de/KNet/_KNet-Rco8j1-WDd-137sh/showInfo-special1.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-Rco8j1-WDd-137ss/showInfo-hilfe.de/node.0/cde7f1uou\nhttp://acmepet.petsmart.com/canine/breeds/labrador/bboard/messages/5245.html\nhttp://acmepet.petsmart.com/canine/breeds/labrador/bboard/messages/5226.html\nhttp://config.tucows.com/winnt/adnload/67680_29009.html\nhttp://config.tucows.com/winnt/adnload/55386_29005.html\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/knotes/Attic/renamedlg.cpp?r1=1.7&only_with_tag=MAIN\nhttp://www.imagestation.com/member/?name=Twiggy5&c=1\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=3&vsid=700&session=131981&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHljbLqleHqjiLlel5jblKqlmLkeq5j1\nhttp://community.webshots.com/photo/1921549/2334169DWEIWPyCoH\nhttp://www.fogdog.com/cedroID/ssd3040183158605/nav/stores/skateboarding/\nhttp://www.fogdog.com/cedroID/ssd3040183158605/content/fan/subway_series/\nhttp://www.fogdog.com/cedroID/ssd3040183158605/boutique/ashworth/\nhttp://www.fogdog.com/cedroID/ssd3040183158605/customer_service/our_partners.html\nhttp://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/media_center/AAAksrACwAAACCOAAl\nhttp://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/talktous/AAAksrACwAAACCOAAl\nhttp://arabia.com/jordan/article/print/1,5130,3048|Life,00.html\nhttp://198.3.99.101/reference/politics_and_govt/humor/games/\nhttp://www.pocketbible.co.kr/old/Leviticus/Leviticus24/Leviticus24-14.htm\nhttp://www.ozon.ru/detail.cfm/ent=5&id=12&txt=1\nhttp://www.ozon.ru/detail.cfm/ent=2&id=2141\nhttp://www.chaos.dk/sexriddle/m/t/i/t/j/\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/5VhIq3rCy0eiHAzs1LOyTswNBIR33Wxc8NtFBCnYVNlrV5p9laRchaQrPWdU7-F739tsfX-p5-IA-j1rTm1YLCRAwn1FAriW9Ps21GP6CvyIL7YFYjLtOcez03i6Q9Xw3LRDtJY2CIzGQuZp-sH_-s_D66j9\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/lKhIoWbn-weE729M1n0JT8Ina4qOfm_FI2ROg8RdrrVu5kq_AK_urPMHafLCMwWCiOLuc8OIIHCFnJaCfz2LSrURBHFjDJP1fBO0X58Y28opSv0qVXWAKYtub7NbCIIWMbE_ldcypBmh\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/PbhIoduIKw3faQWbBTWSK5aq7Y-nGqcvK3flLaTRo02t7k7GMY8rPlupJIheD8869wCXUAer4VimzyYa25qUx7ef2l2VdMR9i_p-pJ5gg2S6ZcP-G6RuPfdDS3TEsJNXGVsOTs1rA605\nhttp://www.linux.com/networking/network/development/web_server/performance/?printable=yes\nhttp://www.linux.com/networking/network/development/web_server/performance/IBM/\nhttp://sunsite.icm.edu.pl/Linux/Documentation/HOWTO/mini/IP-Subnetworking-3.html\nhttp://dreamcity.gaiax.com/www/dreamcity/m/s/musou/frame.html\nhttp://guardian.co.uk/Widgets/Read_It_Later/TR/1,4694,4043922,00.html\nhttp://www.gpul.org/ftp/os/infinite/?M=A\nhttp://www.gpul.org/ftp/os/infinite/infinite_OS.txt\nhttp://retailer.gocollect.com/do/session/1912666/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/exclusives.asp\nhttp://yp.gates96.com/13/77/10/66.html\nhttp://yp.gates96.com/13/77/10/91.html\nhttp://yp.gates96.com/13/77/11/82.html\nhttp://yp.gates96.com/13/77/12/17.html\nhttp://yp.gates96.com/13/77/13/68.html\nhttp://yp.gates96.com/13/77/13/80.html\nhttp://yp.gates96.com/13/77/16/3.html\nhttp://yp.gates96.com/13/77/16/17.html\nhttp://yp.gates96.com/13/77/16/49.html\nhttp://yp.gates96.com/13/77/17/8.html\nhttp://yp.gates96.com/13/77/18/4.html\nhttp://yp.gates96.com/13/77/18/61.html\nhttp://yp.gates96.com/13/77/18/71.html\nhttp://yp.gates96.com/13/77/19/3.html\nhttp://yp.gates96.com/13/77/19/24.html\nhttp://yp.gates96.com/13/77/19/48.html\nhttp://yp.gates96.com/13/77/19/98.html\nhttp://yp.gates96.com/13/77/19/99.html\nhttp://scsinternet.tucows.com/winnt/mail95.html\nhttp://tolm.terrashare.com/45.htm\nhttp://news.dreamwiz.com/news/08/20001030/kukmin/200010301903081903261.html\nhttp://www.tccomputers.com/cgi-bin/bp/1463655603/services/info/tci.htm\nhttp://www.tccomputers.com/cgi-bin/bp/1463655603/services/csc/csc.htm\nhttp://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-6-2r.htm\nhttp://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-3-2r.htm\nhttp://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-18-2r.htm\nhttp://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-1r.htm\nhttp://www.123bestphonerates.com/q/001p/vn/vR85aEOIaY.htm\nhttp://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST5VQ.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST7VQ.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST11VQ.html\nhttp://www.elsur.cl/archivo/marzo2000/13marzo2000/elsur/deportes/ind3.php3\nhttp://home.no.net/fristart/kvasir816/\nhttp://www.fun7.de/party/cafe_europa/_vti_cnf/?D=A\nhttp://www.users.yun.co.jp/cgi-bin/moriq/pigeon/pigeon.cgi/%C5%E7%BA%AC%B8%A9.%C2%E7%B8%B6%B7%B4%C2%E7%C5%EC%C4%AE?c=e\nhttp://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.expired.com/html/service.html\nhttp://home.t-online.de/home/mtc.hannover/head1655833.htm\nhttp://moneycentral.msn.com/investor/invsub/insider/Details.asp?Pval=1&Symbol=MKSI\nhttp://www.sohu.com/Regional/hunan/City_County/Yiyang/Firms/Food_Beverage/\nhttp://www.kulturkreis-rhein-lahn.de/lauer/fax.htm\nhttp://ustlib.ust.hk/search*chi/aporter+bill+1943/aporter+bill+1943/7,-1,0,B/browse\nhttp://www.brio.de/BRIO.catalog/39fe2f3708fb3c8e2740d472aa7806d5/UserTemplate/2\nhttp://www.brio.de/BRIO.catalog/39fe2f3708fb3c8e2740d472aa7806d5/UserTemplate/6\nhttp://rcsl.auto.inha.ac.kr/~treeman/Documents/HOWTO/Keyboard-and-Console-HOWTO-19.html\nhttp://www.etoys.com/cat/toy/category/construction/brio_builder_system/1\nhttp://www.kxmd.com/now/story/0,1597,194790-295,00.shtml\nhttp://www.ferien-immobilien.de/DominikanischeRep/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/IIM-Teil/Startseite/froben.htm\nhttp://hiv.medscape.com/LWW/SMD/1999/v21.n03/smd2103.01.html\nhttp://www.egroups.com/message/dk-jaws/530\nhttp://no.egroups.com/message/daemon-news-announce/12\nhttp://ring.toyama-ix.net/archives/text/elisp/jaist/yamaoka/apel/00_THIS_DIRECTORY_WILL_NOT_BE_UPDATED_UNTIL_2000-10-26\nhttp://pub12.ezboard.com/ftibesataxg1637tibes.subscribeUnregisteredToTopic?topicID=7.topic\nhttp://ustlib.ust.hk/search*chi/ali+huan+1827+1891/ali+huan+1827+1891/-5,-1,0,E/frameset&F=ali+huan&4,,0\nhttp://ustlib.ust.hk/search*chi/ali+huan+1827+1891/ali+huan+1827+1891/-5,-1,0,E/frameset&F=ali+huang+1895&1,,0\nhttp://www.digitalcity.com/cincinnati/sports/log.dci?league=NCF&team=NNF\nhttp://ftp.nacamar.de/pub/debian/dists/potato/main/disks-m68k/2.2.16-2000-07-14/mac/images-1.44/?D=A\nhttp://www.academyfloral.com/state/arboo/flowers/thanksabunchbouquet2.html\nhttp://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/peacelink-scuola/2015003604/view/8\nhttp://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/pkgsrc/lang/smalltalk/files/?S=A\nhttp://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/pkgsrc/lang/smalltalk/files/patch-sum\nhttp://carriage.de/Schoner/Sammlungen/literature/collections/literature/modelle/\nhttp://www.buybuddy.com/sleuth/27/1/11001/1692/\nhttp://193.120.14.241/pub/languages/perl/CPAN/src/5.0/devel/\nhttp://lastminutetravel.bedandbreakfast.com/bbc/p208900.asp\nhttp://chat.sportsline.com/u/wire/stories/0,1169,2957692_59,00.html\nhttp://acad.uis.edu/sas/qc/q-index.htm\nhttp://acad.uis.edu/sas/qc/s-index.htm\nhttp://library.cuhk.edu.hk/search*chi/aPan,+Zhuonan./apan+zhuonan/-5,1,1,B/frameset&F=apan+zhichang+1956&1,1,\nhttp://www.linux.com/networking/network/install/tools/updates/new/\nhttp://www.linux.com/networking/network/install/tools/updates/Standards/\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=13,31,5,11,26\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=23,31,5,11,26\nhttp://www.mfa.no/fin/norsk/publ/stprp/006005-991562/index-hov017-b-n-a.html\nhttp://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/DBEAZLEY/?N=D\nhttp://fi.egroups.com/messages/infoespo/6?expand=1\nhttp://ibc.cn.net/2000/0718/it-1message.html\nhttp://www.shaggysguide.com/conhtml/adnload/51647_1809.html\nhttp://www.shaggysguide.com/conhtml/adnload/51657_5567.html\nhttp://www.shaggysguide.com/conhtml/adnload/74370_17872.html\nhttp://www.shaggysguide.com/conhtml/adnload/78469_19520.html\nhttp://www.shaggysguide.com/conhtml/adnload/78940_19788.html\nhttp://www.backflip.com/members/jhferrara/5171381/page=1/sort=1/linkspp=10\nhttp://www.amcity.com/philadelphia/stories/1998/08/24/newscolumn3.html?t=printable\nhttp://www.rge.com/pub/tex/biblio/bibtex/ms-dos/demel/?N=D\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/67841000005885200000309700000064451/Giveaways.wo/257820000054451/2.0.0.6.0/3/Webobjects1\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-gds.desy.de:8080/zeitpl/zpl.htm\nhttp://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?chudtvlogic&msg=1596\nhttp://retailer.gocollect.com/do/session/1912639/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www.jpc-music.com/5590216.htm\nhttp://huntingfishing.tripod.com/sturgeonmain.htm\nhttp://polygraph.ircache.net:8181/wwwboard/prodev/seminar/fast/http_-2www.centennialcc.org/bps.html\nhttp://www.chaos.dk/sexriddle/s/t/c/x/l/\nhttp://www.chaos.dk/sexriddle/s/t/c/x/z/\nhttp://es.egroups.com/messages/plato-meno/1285\nhttp://tonggu-gch.ed.seoul.kr/home/2grade/2-10/981001/hang.htm\nhttp://sjsulib1.sjsu.edu:81/search/dreligion/-5,-1,0,E/exact&dreligion+libraries&1,3\nhttp://www.generation-formation.fr/chiffrec.htm---o21zAo0UPwo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqHSezTHkekydMfeZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbd.htm\nhttp://www.generation-formation.fr/dicoguid/diclogin.htm---o21zAo0UPwo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqureds5cezwhlezMpDeH7vGebI1yoKkfMd4vmMAxaAooKkfMd4u5xdfb7rmdfbT.htm\nhttp://www.hollywoodonline.com/asplocal/mgvideoad.asp?rushhour-video-holdon-mov\nhttp://www.ifg.uni-kiel.de/doc-clients/kdelibs-doc/html/kdeui/full-list-KRestrictedLine.html\nhttp://www.3w-sciencefiction.de/ShapiroLarry/ShapiroLarry0760306729.htm\nhttp://202.96.140.98/js/wenge/\nhttp://www.great-cyber-mall.com/SelectCompany.asp?CityID=230&CatID=19\nhttp://www.great-cyber-mall.com/SelectCompany.asp?CityID=230&CatID=34\nhttp://www.amazon.com.hk/exec/obidos/tg/stores/browse/-/books/13361/\nhttp://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=99&Count=50&Collapse=116\nhttp://www.pbase.com/image/35702/small\nhttp://www.infoscape.com.cn:8171/nf/0010/21/nfzy2104.htm\nhttp://dell.excite.com/photo/topic/weather/national/19\nhttp://www.linux.com/networking/network/network/firewall/microsoft/government/\nhttp://www.gasex.com/gay.photo/gay.penis.pics.html\nhttp://hausarbeiten.de/cgi-bin/superDBinters.pl/archiv/geschichte/gesch-stedinger.shtml\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/http_-2www.exploreuw.com/cards/ssoenews.html\nhttp://www.fogdog.com/cedroID/ssd3040183137325/cgi-bin/MyFogdog\nhttp://www.fogdog.com/cedroID/ssd3040183137325/cgi-bin/CedroCommerce?func=EditBasket\nhttp://www.fogdog.com/cedroID/ssd3040183137325/nav/stores/cycling/\nhttp://www.fogdog.com/cedroID/ssd3040183137325/nav/stores/snowboarding/\nhttp://tucows.wanadoo.nl/win2k/organ2k_license.html\nhttp://tucows.wanadoo.nl/win2k/preview/59164.html\nhttp://windows.tucows.com/preview/001-009-005-005C.html\nhttp://anekdotwall.boom.ru/car/html/75.htm\nhttp://tucows.concepts.nl/win2k/clipb2k_size.html\nhttp://tucows.concepts.nl/win2k/adnload/37291_29917.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cricrila&l=pt\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cricrilava&l=pt\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/1AR/A2S/A3S/A3D/D1S/\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_ngqyjt_ngqyjt.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_rtnucb_tyciyrg.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_kiektgt_fpwif.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_rjdbc_rjdbc.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_xsygo_xsygo.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_bovqcy_mkaqta.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_lgbrnl_psnjjt.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_lgbrnl_ybvfp.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_vermn_xmxmm.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_keojvu_faoex.html\nhttp://info-china.hypermart.net/enterprise/company/messages/25.html\nhttp://ring.yamanashi.ac.jp/pub/linux/debian/debian-jp/dists/potato/non-US/contrib/binary-m68k/Release\nhttp://www.amigos.com/cgi-bin/w3com/pws/ffe/R7RIRASjZ5ATyRjNyXQBbwzK4LLK-rhgzZEBqJsLaR1cdnaeB7LT1xORWRg6aQmLxO7QWLEpsdjuf2ZqAnUO1IKpfrRctaIMYIzMNy1DSb7dp8_5z39WdF7oxbKUAByA\nhttp://indigotrem1.chemie.uni-mainz.de/~manng001/Filme/S/SexLuegenundVideo.html\nhttp://se.egroups.com/message/hur/387\nhttp://www.ilmessaggero.it/hermes/19990111/07_MARCHE/MARCHE_REGIONE/DUE.htm\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/quizz/misc/colorart/lit/pushkin.html\nhttp://www.amzn.com/exec/obidos/ts/artist-glance/201040/ref=pm_dp_ln_m_6/\nhttp://tucows.netpower.no/winme/adnload/138674_29970.html\nhttp://www.chaos.dk/sexriddle/z/d/q/p/c/\nhttp://www.chaos.dk/sexriddle/z/d/q/p/u/\nhttp://sv.pachinkovillage.co.jp/catalog/DinoVaderB/3.html\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/B1,a,1f,6,6,3a,3a,,5,,1f,5,\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=deflazioneranno&l=it\nhttp://polygraph.ircache.net:8181/company/html/http_-2www.io.com/~kinnaman/pchealth/f-agents.html\nhttp://polygraph.ircache.net:8181/company/html/http_-2www.io.com/~kinnaman/pchealth/f-leisureworld.html\nhttp://ftp.univie.ac.at/packages/perl/modules/by-module/Tie/ILYAZ/cperl-mode/rms-emacs-20.2-patch-narrow-buffer+dirfiles\nhttp://www.expressindia.com/ie/daily/19991126/ige26097p.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/ELINKEINO-+JA+YRITYSTOIMINTA/yritt%E4jyys/lukio/oppimateriaali/itseopiskelu/\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=36,23,11,33,18\nhttp://www.trib.com/scjournal/ARC/1996/MAR/3_24_96/marines.html\nhttp://www.slac.stanford.edu/BFROOT/www/Computing/Programming/QA/QaBetaTools/6.7.5a/SunOS5/?S=D\nhttp://pokemonplant.tripod.com/150yellow.html\nhttp://ftp.debian.org/dists/potato/contrib/binary-all/devel/?N=D\nhttp://sunsite.org.uk/packages/tcl/Collections/ftp.neosoft.com/sorted/packages-8.0/print/frink/1.2p35/\nhttp://library.bangor.ac.uk/search/m304.6+LIN/m304.6+lin/-5,-1,0,B/frameset&F=m304.6+jos&1,1\nhttp://members.tripod.lycos.nl/janninksweg145/huis.htm\nhttp://www.uib.no/People/mihtr/PS01/PS01_219.htm\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327602/eus329879/\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327602/eus327608/\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|39P02|972959512|Communications|user|0|1,0,0,1\nhttp://www.bluefreds.f9.co.uk/vote2.html\nhttp://www.hri.org/docs//statedep/1999/99-05-07.std.html\nhttp://polygraph.ircache.net:8181/http_-2www.hblinfo.com/f_snowbuddies.html\nhttp://mediate.magicbutton.net/do/session/625565/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/products.cfm\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=692&session=131975&mid=1000&rid=1060&cid=37051&chid=1702&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5\nhttp://digilander.iol.it/net4free/spedia.htm\nhttp://totalsports.aol.com/stats/bbo/mlb/20000425/col.at.mon.prvw.html\nhttp://210.178.135.1/netbbs/Bbs.cgi/nhic32042/qry/pno/0/zka/B2-kB2Zk/qqatt/^\nhttp://cikkek.lezlisoft.com/kikelet/spiritualitas/spirit3v9.shtml\nhttp://www.wingateinns.com/ctg/cgi-bin/Wingate/aarp/AAAksrACwAAACCPAAl\nhttp://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB1848.html\nhttp://sunsite.uakom.sk/tucows/adnload/69390_28371.html\nhttp://sunsite.uakom.sk/tucows/preview/77630.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~0,3\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~9,6\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~21,0\nhttp://sirac.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/jdk1.2.2/docs/api/java/security/\nhttp://polygraph.ircache.net:8181/getting_started/http_-2www.microsoft.com/powered/radio/email_pal/email_pal.htm\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/net/tund/?M=A\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/net/tund/?D=A\nhttp://library.bangor.ac.uk/search/tNursing+times+clinical+monographs+&%2359%3B+no.+51/tnursing+times+clinical+monographs+no+++51/-17,-1,0,B/browse\nhttp://library.bangor.ac.uk/search/tNursing+times+clinical+monographs+&%2359%3B+no.+51/tnursing+times+clinical+monographs+no+++51/-5,-1,0,B/frameset&F=tnursing+times+complementary+therapy&1,1\nhttp://ftp.chg.ru/pub/FreeBSD/doc/en_US.ISO_8859-1/articles/programming-tools/\nhttp://polygraph.ircache.net:8181/getting_started/http_-2www.microsoft.com/powered/bomb/bomb.htm\nhttp://linux.tucows.inwind.it/conhtml/adnload/8523_5414.html\nhttp://www.magicvillage.de/magicvillage/KonferenzPlaza/fbs/%2328835852?NextInThread\nhttp://www.shopworks.com/samplers/index.cfm/action/cart/userid/0009CECE-2EE1-19FE-9038010B0A0ADCF2\nhttp://dailynews.sina.com/newsCenter/taiwan/udn/2000/1021/2051701_b5.html\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/khexedit/pics/Attic/?hideattic=1&sortby=date\nhttp://moviestore.zap2it.com/browse/MOVIES/BOWL/s.zchC6lsi\nhttp://moviestore.zap2it.com/browse/MOVIES/MUSIC/s.zchC6lsi\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d13/b12,c,1f,18,18,,13,,1f,13,17,,1f,17,\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d14/b12,c,1f,18,18,,13,,1f,13,17,,1f,17,\nhttp://209.50.251.176/~bb/\nhttp://tucows.energy.it/winnt/adnload/59163_30035.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=circundara&l=pt\nhttp://vishvesha.tripod.com/4/068d.htm\nhttp://www.hot.ee/timbsy/kass_files/pildikogu.html\nhttp://www3.newstimes.com/archive99/jan2599/rga.htm\nhttp://pub11.ezboard.com/fmarjoriesdmboardpostyourdmpedigreeshere.showMessage?topicID=21.topic\nhttp://www.geocities.com/Heartland/Plains/4825/bennyn.html\nhttp://citeseer.nj.nec.com/site/115145\nhttp://www.techsupplies.com/sleuth/17/1/40406/254200/\nhttp://ccmnet.xj.cei.gov.cn/10/b10/b1007/99-05-02/a5-02.asp\nhttp://206.251.18.85/FEATURES/home_improvement/1999/10/01/fall_lawncare3.html\nhttp://www.dulux.co.uk/UKRETAIL:1355333640:DFinity.1QJiP4jmPgimjKlA\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=131985&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=131985&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL\nhttp://www.berliner-morgenpost.de/bm/inhalt/990928/berlin/story14.html\nhttp://gb.toget.com.tw/article/printer_tool/19990825_3210_p1.html\nhttp://sbtr42.sbsusa.com/ncsamples/base1.htm\nhttp://halflife02.opasia.dk/cs3stats/players/_AMNeSIA_.html\nhttp://mediate.magicbutton.net/do/session/625570/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/basket.cfm\nhttp://mediate.magicbutton.net/do/session/625570/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/viewer.cfm\nhttp://www.citythek.de/erfurt/rheinhyp/fsinhalt.htm\nhttp://my.egroups.com/group/mall-komputer\nhttp://www-bd.cricket.org/link_to_database/ARCHIVE/1997-98/PAK_IN_RSA/PAK_IN_RSA_JAN-APR1998_PAK-SQUAD.html\nhttp://www-bd.cricket.org/link_to_database/GROUNDS/RSA/ST-GEORGE_PARK_PT-ELIZ/\nhttp://www-bd.cricket.org/link_to_database/ARCHIVE/1997-98/PAK_IN_RSA/PAK_RSA_T3_06-10MAR1998_ET_MR.html\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Gemeinsam/MarketingStrategie/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://www.online.kokusai.co.jp/Qa/V0043459/wrd/G800/qa/\nhttp://iland.tucows.com/win2k/adnload/59229_29990.html\nhttp://iland.tucows.com/win2k/preview/144411.html\nhttp://iland.tucows.com/win2k/adnload/38173_29963.html\nhttp://www.arm.com/sitearchitek/armtech.ns4/8ab0ea422fba51238025691f00399e13/9cb09cb360a967848025691f004e28b2!OpenDocument&ExpandSection=6,13,12,-1\nhttp://ftp.uni-mannheim.de/languages/perl/CPAN/modules/by-authors/id/JMURPHY/?N=D\nhttp://proam.golfonline.com/tours/2000/hooters/silversprings/scores2.html\nhttp://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/grdc/\nhttp://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/pom/\nhttp://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/Makefile\nhttp://www.artex.firenze.it/_qualitart/articoli/zoom/03651.htm\nhttp://www.chaos.dk/sexriddle/m/k/v/b/p/\nhttp://www.chaos.dk/sexriddle/m/k/v/b/s/\nhttp://www.chaos.dk/sexriddle/t/j/d/n/n/\nhttp://www.daysinn.com/ctg/cgi-bin/DaysInn/media_center/AAAksrACwAAACCQAAM\nhttp://tukela.heha.net/ys/ll/boyuan.htm\nhttp://tukela.heha.net/ys/ll/jinciming.htm\nhttp://genforum.genealogy.com/ai/messages/4299.html\nhttp://genforum.genealogy.com/ai/messages/4221.html\nhttp://genforum.genealogy.com/ai/messages/4225.html\nhttp://www.linkclub.or.jp/~sticky/index1/diary/1999/199906.html\nhttp://ww.egroups.com/subscribe/lexingtonkystrapon\nhttp://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/About.htm\nhttp://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/motifsg41.htm\nhttp://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/motifsg43.htm\nhttp://hakuba-net.gr.jp/guide/rest/spa_each/spa_2.html\nhttp://yp.gates96.com/6/16/40/22.html\nhttp://yp.gates96.com/6/16/40/44.html\nhttp://yp.gates96.com/6/16/40/50.html\nhttp://yp.gates96.com/6/16/40/69.html\nhttp://yp.gates96.com/6/16/40/83.html\nhttp://yp.gates96.com/6/16/41/49.html\nhttp://yp.gates96.com/6/16/41/50.html\nhttp://yp.gates96.com/6/16/41/67.html\nhttp://yp.gates96.com/6/16/42/15.html\nhttp://yp.gates96.com/6/16/42/51.html\nhttp://yp.gates96.com/6/16/42/56.html\nhttp://yp.gates96.com/6/16/43/8.html\nhttp://yp.gates96.com/6/16/43/69.html\nhttp://yp.gates96.com/6/16/43/71.html\nhttp://yp.gates96.com/6/16/44/11.html\nhttp://yp.gates96.com/6/16/44/51.html\nhttp://yp.gates96.com/6/16/45/20.html\nhttp://yp.gates96.com/6/16/45/43.html\nhttp://yp.gates96.com/6/16/46/12.html\nhttp://yp.gates96.com/6/16/46/25.html\nhttp://yp.gates96.com/6/16/46/64.html\nhttp://yp.gates96.com/6/16/47/42.html\nhttp://yp.gates96.com/6/16/47/80.html\nhttp://yp.gates96.com/6/16/48/54.html\nhttp://yp.gates96.com/6/16/48/85.html\nhttp://yp.gates96.com/6/16/49/51.html\nhttp://yp.gates96.com/6/16/49/62.html\nhttp://assgay.com/main.html?fuck.cock.gaysex\nhttp://ring.yamanashi.ac.jp/pub/linux/linuxppc/contrib/software/System_Environment/Libraries/?S=A\nhttp://computalynx.tucows.com/winme/adnload/138681_29976.html\nhttp://computalynx.tucows.com/winme/adnload/138706_29992.html\nhttp://computalynx.tucows.com/winme/adnload/138690_29990.html\nhttp://computalynx.tucows.com/winme/adnload/138694_29981.html\nhttp://iceberg.adhomeworld.com/cgi-win/redirect.exe/851857198\nhttp://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php\nhttp://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php\nhttp://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm\nhttp://www.linux.com/networking/network/applications/hardware/device/development/\nhttp://www.linux.com/networking/network/applications/hardware/device/Corel/\nhttp://www.linux.com/networking/network/applications/hardware/device/?kw_offset=50\nhttp://ftp.gigabell.net/debian/dists/unstable/main/binary-m68k/sound/?M=A\nhttp://no.egroups.com/message/slfxpzur/36\nhttp://no.egroups.com/message/slfxpzur/38\nhttp://nuance.dhs.org/lbo-talk/0004/2286.html\nhttp://www.jamba.de/KNet/_KNet-XEk8j1-ADd-136sq/showInfo-datenschutz.de/node.0/cde7f1uou\nhttp://yp.gates96.com/2/37/60/0.html\nhttp://yp.gates96.com/2/37/60/13.html\nhttp://yp.gates96.com/2/37/61/24.html\nhttp://yp.gates96.com/2/37/61/66.html\nhttp://yp.gates96.com/2/37/62/5.html\nhttp://yp.gates96.com/2/37/62/31.html\nhttp://yp.gates96.com/2/37/63/31.html\nhttp://yp.gates96.com/2/37/63/43.html\nhttp://yp.gates96.com/2/37/63/48.html\nhttp://yp.gates96.com/2/37/63/60.html\nhttp://yp.gates96.com/2/37/63/88.html\nhttp://yp.gates96.com/2/37/64/62.html\nhttp://yp.gates96.com/2/37/64/74.html\nhttp://yp.gates96.com/2/37/65/0.html\nhttp://yp.gates96.com/2/37/66/20.html\nhttp://yp.gates96.com/2/37/67/41.html\nhttp://yp.gates96.com/2/37/68/2.html\nhttp://yp.gates96.com/2/37/68/50.html\nhttp://yp.gates96.com/2/37/69/15.html\nhttp://yp.gates96.com/2/37/69/41.html\nhttp://yp.gates96.com/2/37/69/47.html\nhttp://yp.gates96.com/2/37/69/60.html\nhttp://yp.gates96.com/2/37/69/75.html\nhttp://yp.gates96.com/2/37/69/76.html\nhttp://gettosdownloads.subportal.com/sn/Palm_Pilot/Games/12428.html\nhttp://news.novgorod.ru/read/65/2000/10/27/10/49\nhttp://www.schwan.de/links-biografie.html\nhttp://www.fogdog.com/cedroID/ssd3040183124617/cgi-bin/MyFogdog\nhttp://www.nrk.no/finnmark/x27_6_97/nyh9.htm\nhttp://www.aelita.net/products/news/services/sitemap/~archive/Download_redirect/company/Copyright.htm\nhttp://www.staroriental.net/nav/soeg_c/ihf,aol,n15,149,TVB香港小姐2000.html\nhttp://members.xoom.com/agent187/politics.htm\nhttp://sunsite.org.uk/public/packages/perl/collections/cis.ufl/comp.lang.perl.announce/1998-03/724\nhttp://www.thestateofcolorado.com/gcecommercialsales.html\nhttp://ftp.du.se/pub/redhat/rawhide/sparc/RedHat/RPMS/?M=A\nhttp://www.linux.com/networking/network/community/trade_show/magazine/open_source/\nhttp://www.linux.com/networking/network/community/trade_show/magazine/Slashdot/\nhttp://www.linux.com/networking/network/community/trade_show/magazine/investors/\nhttp://scifi.emerchandise.com/browse/TV/PIN/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/DILBERT/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/DR.KATZ/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/FRIENDS/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/FUTURAMA/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/LOIS-CLARK/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/SPEEDRACER/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/THUNDERCATS/_/b.TV/s.KkOtzPMn\nhttp://scifi.emerchandise.com/browse/WCW/_/b.TV/s.KkOtzPMn\nhttp://www.railion.de/home/db_reise_touristik/region/bremen/db_rt_firmenreisedienst_reisezentrum_hb.shtml\nhttp://pegasus.infor.kanazawa-it.ac.jp/~hara/bsd4.1-release/D/N_GETFLAG_NET.html\nhttp://yp.gates96.com/5/54/20/19.html\nhttp://yp.gates96.com/5/54/21/5.html\nhttp://yp.gates96.com/5/54/21/42.html\nhttp://yp.gates96.com/5/54/21/60.html\nhttp://yp.gates96.com/5/54/21/69.html\nhttp://yp.gates96.com/5/54/21/81.html\nhttp://yp.gates96.com/5/54/21/96.html\nhttp://yp.gates96.com/5/54/22/6.html\nhttp://yp.gates96.com/5/54/22/29.html\nhttp://yp.gates96.com/5/54/22/33.html\nhttp://yp.gates96.com/5/54/22/64.html\nhttp://yp.gates96.com/5/54/22/83.html\nhttp://yp.gates96.com/5/54/22/94.html\nhttp://yp.gates96.com/5/54/22/98.html\nhttp://yp.gates96.com/5/54/23/17.html\nhttp://yp.gates96.com/5/54/23/41.html\nhttp://yp.gates96.com/5/54/24/2.html\nhttp://yp.gates96.com/5/54/24/5.html\nhttp://yp.gates96.com/5/54/24/9.html\nhttp://yp.gates96.com/5/54/24/90.html\nhttp://yp.gates96.com/5/54/25/89.html\nhttp://yp.gates96.com/5/54/26/41.html\nhttp://yp.gates96.com/5/54/27/83.html\nhttp://yp.gates96.com/6/59/21/52.html\nhttp://yp.gates96.com/6/59/22/63.html\nhttp://yp.gates96.com/6/59/23/37.html\nhttp://yp.gates96.com/6/59/23/95.html\nhttp://yp.gates96.com/6/59/24/3.html\nhttp://yp.gates96.com/6/59/24/9.html\nhttp://yp.gates96.com/6/59/25/26.html\nhttp://yp.gates96.com/6/59/25/55.html\nhttp://yp.gates96.com/6/59/25/84.html\nhttp://yp.gates96.com/6/59/25/94.html\nhttp://yp.gates96.com/6/59/26/53.html\nhttp://yp.gates96.com/6/59/26/73.html\nhttp://yp.gates96.com/6/59/27/15.html\nhttp://yp.gates96.com/6/59/27/29.html\nhttp://yp.gates96.com/6/59/27/49.html\nhttp://yp.gates96.com/6/59/27/97.html\nhttp://yp.gates96.com/6/59/28/31.html\nhttp://yp.gates96.com/6/59/28/32.html\nhttp://yp.gates96.com/6/59/28/39.html\nhttp://yp.gates96.com/6/59/28/98.html\nhttp://yp.gates96.com/6/59/29/22.html\nhttp://yp.gates96.com/6/59/29/83.html\nhttp://www.gbnf.com/genealogy/royal92/html/d0016/I1249.HTM\nhttp://www.gbnf.com/genealogy/royal92/html/d0018/I734.HTM\nhttp://hifichoice.co.uk/archive/perl/193_printreview.htm\nhttp://hifichoice.co.uk/archive/perl/313_printreview.htm\nhttp://www.highwired.net/Paper/UniversalNav/Redirect/0,5314,2623-7802,00.html\nhttp://www.mrlinux.notrix.de/\nhttp://www.ucalgary.ca/UofC/faculties/medicine/CHS/nhrdb/area/anat/fr.htm\nhttp://home.pchome.com.tw/tv/pili0614/xing-sh/capric/capric47.htm\nhttp://home.pchome.com.tw/tv/pili0614/xing-sh/capric/capric21.htm\nhttp://home.pchome.com.tw/tv/pili0614/xing-sh/capric/caf26.htm\nhttp://user.chollian.net/~pleiad7s/josun/3-37.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=233&discrim=81,3,15\nhttp://mediate.magicbutton.net/do/session/625571/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/aboutus/index.cfm\nhttp://www.telecombrokers.com/q/001p/atn8/2aS9DLAZRXc.htm\nhttp://www.telecomrefunds.com/q/001p/atn8/4SeFiiXvs2A.htm\nhttp://soho.nascom.nasa.gov/solarsoft/soho/lasco/lasco/data_anal/data/9701/?M=A\nhttp://members.xoom.com/mindnare\nhttp://people.freenet.de/TheChamp/nachhilfe.htm\nhttp://people.freenet.de/TheChamp/cheats.htm\nhttp://www.zinezone.com/movies/1,4003,1040-23080,00.html\nhttp://kulichki-win.rambler.ru/moshkow/TURIZM/kutsajo6.txt_with-icons.html\nhttp://www.linux.com/networking/network/release/availability/hardware/?printable=yes\nhttp://www.linux.com/networking/network/release/availability/hardware/applications/\nhttp://www.shopworks.com/flmp/index.cfm/action/cart/userid/000D1850-2F00-19FE-9038010B0A0ADCF2\nhttp://shrike.depaul.edu/~afranz/multimedia/?S=A\nhttp://totalsports.net/news/20001014/bbo/mlb/sea/001014.0024.html\nhttp://totalsports.net/news/20001009/bbo/mlb/sea/001009.0039.html\nhttp://totalsports.net/news/20001006/bbo/mlb/sea/001006.0354.html\nhttp://cometweb01.comet.co.uk/do!session=131986&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1\nhttp://html.tucows.ciaoweb.it/adnload/berglincondlbind.html\nhttp://www.tiscover.com/1Root/Interessante_Region/127151/sportfreizeit/m_sportfreizeit.wm_sport_freibad..1.html\nhttp://f24.parsimony.net/forum54080/messages/97.htm\nhttp://f24.parsimony.net/forum54080/messages/68.htm\nhttp://www.amulation.com/md-l-archive/199702/msg00210.html\nhttp://netpower.tucows.com/winnt/adnload/2821_29573.html\nhttp://kutschen.de/Schoner/Info-d/literature/collections/collections/Geschichte/\nhttp://webtools.myschoolonline.com/page/0,1871,0-353-38-44534,00.html\nhttp://www.linux.com/networking/network/help/hardware/open_source/GNOME/\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=12,25,26,17,24\nhttp://retailer.gocollect.com/do/session/1912664/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/exclusives.asp\nhttp://retailer.gocollect.com/do/session/1912665/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp\nhttp://ring.nihon-u.ac.jp/pub/doc/jpnic/members/WORLDNET/members.txt\nhttp://www.123webagent.com/q/001p/atn8/zImXxARDSm.htm\nhttp://www.tu-chemnitz.de/~jflo/DOSDemos/cost_b.txt\nhttp://yp.gates96.com/5/54/27/97.html\nhttp://yp.gates96.com/5/54/28/23.html\nhttp://yp.gates96.com/5/54/29/33.html\nhttp://yp.gates96.com/5/54/29/64.html\nhttp://rex.skyline.net/html/Medical_Equipment.html?224,software,equipment,agriculture,science\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd434602591\nhttp://www.dispatch.co.za/1998/05/29/business/BA.HTM\nhttp://www.dispatch.co.za/1998/05/29/business/JSE.HTM\nhttp://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp\nhttp://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp\nhttp://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp\nhttp://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=8,9,3,6,1,11,13\nhttp://retailer.gocollect.com/do/session/1912620/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/gifts/gift_floor.asp\nhttp://genforum.genealogy.com/ga/messages/4583.html\nhttp://genforum.genealogy.com/ga/messages/4582.html\nhttp://genforum.genealogy.com/ga/messages/4570.html\nhttp://genforum.genealogy.com/ga/messages/4561.html\nhttp://genforum.genealogy.com/ga/messages/5575.html\nhttp://ftp.gnu.org/software/sather/ICSI_Sather/whoswho.html\nhttp://dk.egroups.com/group/GHSBasketball\nhttp://dk.egroups.com/group/lovebasket\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/10/131276//V/1820145/0////25/S/MLTPAID\nhttp://www.qth.net/archive/packfr/200009/20000921.html\nhttp://213.36.119.69/do/session/152975/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/preparer/sante.htm\nhttp://ftp.lip6.fr/pub8/FreeBSD/FreeBSD-current/ports/emulators/mtools/\nhttp://ftp.lip6.fr/pub8/FreeBSD/FreeBSD-current/ports/emulators/sim6811/\nhttp://fyi.cnn.com/ASIANOW/asiaweek/97/0328/aa7.html\nhttp://pub21.ezboard.com/fbeauxbatonfrm32.showMessage?topicID=6.topic\nhttp://www.tente.de/us/produkte/produkteigenschaften/aa000001609.htm\nhttp://www.tente.de/us/produkte/produkteigenschaften/aa000001630.htm\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/net/rboot/?N=D\nhttp://www.geocities.co.jp/Technopolis-Mars/3952/link.html\nhttp://saleonall.com/cat/software/reference/5112/969434/advanced-search.html\nhttp://www.jazzbude.de/EddieLockjawDavis/B000026F24.htm\nhttp://www6.freeweb.ne.jp/art/iftaka/art/\nhttp://www.canit.se/(ftp,irc,k15,www)/support/kontakt.html\nhttp://www.mirror.edu.cn/res/sunsite/pub/academic/chemistry/iupac/Download/publications/pac/special/0199/\nhttp://cinemabilia.de/details/katnr/234764/\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.infolane.com/dallas.htm\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/crafty-open-medium/pkg-comment\nhttp://uk.dir.yahoo.com/Education/Primary_and_Secondary/Schools/Middle_Schools/By_Region/U_S__States/Virginia/Complete_List/\nhttp://yp.gates96.com/6/2/10/13.html\nhttp://yp.gates96.com/6/2/10/41.html\nhttp://yp.gates96.com/6/2/10/83.html\nhttp://yp.gates96.com/6/2/11/51.html\nhttp://yp.gates96.com/6/2/11/89.html\nhttp://yp.gates96.com/6/2/12/22.html\nhttp://yp.gates96.com/6/2/12/58.html\nhttp://yp.gates96.com/6/2/12/62.html\nhttp://yp.gates96.com/6/2/12/79.html\nhttp://yp.gates96.com/6/2/13/19.html\nhttp://yp.gates96.com/6/2/13/51.html\nhttp://yp.gates96.com/6/2/13/64.html\nhttp://yp.gates96.com/6/2/14/75.html\nhttp://yp.gates96.com/6/2/15/91.html\nhttp://yp.gates96.com/6/2/16/83.html\nhttp://yp.gates96.com/6/2/18/15.html\nhttp://yp.gates96.com/6/2/18/54.html\nhttp://yp.gates96.com/6/2/19/35.html\nhttp://yp.gates96.com/6/2/19/68.html\nhttp://yp.gates96.com/6/2/19/75.html\nhttp://yp.gates96.com/6/2/19/82.html\nhttp://yp.gates96.com/6/2/19/87.html\nhttp://www.chaos.dk/sexriddle/z/w/c/b/v/\nhttp://itcareers.careercast.com/texis/it/itjs/+bwwBmeg5986wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rmeHdwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/+3wwBmeV6D86euhwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rmeidwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/+iwwBmeiWD86zwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rme3dwwwBrmeZpwww/jobpage.html\nhttp://sanming.ebigchina.com/\nhttp://www.bestinfo.net.cn/bsti_kjxn/gn/guoneifagui/17hebei3.htm\nhttp://www.detroitfreepress.com/photos/umgallery/g8/g8.1.htm\nhttp://www.detroitfreepress.com/photos/umgallery/g8/g8.3.htm\nhttp://xgll.soyou.edu.cn/item/2000-04-07/43733.html43733.html\nhttp://se.egroups.com/message/bunyan/903\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/p%E4ij%E4t-h%E4meen+koulutuskonserni/tietokannat/kirjastot/viitetietokannat/\nhttp://channel.nytimes.com/2000/05/19/technology/\nhttp://www.ycwb.com.cn/gb/2000/04/15/jrzk/jrms/5.html\nhttp://no.egroups.com/message/healthdigest/97\nhttp://no.egroups.com/message/healthdigest/119\nhttp://www.securitiestimes.com.cn/199909/10/ssgs_19990910007_xw.html\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.dohistory.org/interests/i_teaching.html\nhttp://www.buybuddy.com/sleuth/27/1/11009/518452/\nhttp://www.buybuddy.com/sleuth/27/1/11001/518452/\nhttp://www.buybuddy.com/sleuth/27/1/11004/518452/\nhttp://ring.omp.ad.jp/archives/text/CTAN/fonts/metrics/tools/?D=A\nhttp://www.jamba.de/KNet/_KNet-CIq8j1-hEd-138qo/showInfo-special1.de/node.0/cde7f1uou\nhttp://cafe4.daum.net/Cafe-bin/Bbs.cgi/sdfamilypds/qry/zka/B2-kBI7p/qqatt/^\nhttp://www.insurequotes.com/oh3/1AB2.html\nhttp://www.egroups.com/login.cgi?login_target=%2Fmessage%2FWHKPNews%2F190\nhttp://www.linux.com/networking/network/performance/reliability/linux/?printable=yes\nhttp://preview.egroups.com/message/tattoos88/32\nhttp://ring.shibaura-it.ac.jp/archives/NetBSD/packages/1.5/cobalt/math/\nhttp://ring.shibaura-it.ac.jp/archives/NetBSD/packages/1.5/cobalt/sysutils/\nhttp://in.us.biz.yahoo.com/z/a/p/prgx/prgx_f0149933.html\nhttp://www.backflip.org/members/robeeena/6484057\nhttp://www.accesslasvegas.com/shared/health/adam/ency/article/003481res.html\nhttp://library.cuhk.edu.hk/search*chi/dAir+--+Pollution+--+China+--+Hong+Kong./dair+pollution+china+hong+kong/-17,1,1,B/frameset&F=dair+pilots+united+states+biography&7,,7\nhttp://innopac.lib.tsinghua.edu.cn:2082/search*chi/cTM-62+C288/ctm-62+c288/-5,-1,,B/browse\nhttp://www.nd.edu/~rarebook/coins/bnl-mg/BNL-index-B/BNL-index-BU/BNL-index-bursley.html\nhttp://home.kimo.com.tw/lcl566/布告欄.htm\nhttp://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1005/www.northampton.ac.uk/stu/commdev/chap.htm\nhttp://www.peopledaily.co.jp/199905/11/newfiles/col_990511001040_zyxw.html\nhttp://missuniverse.studiostore.com/browse/PAGEANTS/CAP/s.pJicQfVY\nhttp://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_drivers_misc_parport_procfs.c.html\nhttp://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_drivers_sound_es1370.c.html\nhttp://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_include_asm-arm_arch-vnc_system.h.html\nhttp://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_include_asm-arm_dec21285.h.html\nhttp://www.gbnf.com/genealog2/dezarn/html/d0004/I1071.HTM\nhttp://dogbert.wu-wien.ac.at/UniverCD/cc/td/doc/product/access/acs_mod/cis4000/4000/c4000him/22693/\nhttp://www.uralweb.ru:8081/stats/who\nhttp://www.rrz.uni-hamburg.de/biologie/b_online/kegg/kegg/db/ligand/cpdhtm/C04881.html\nhttp://www.la.digitalcity.com/fortwaynein/health/conditions.dci?condition=badbreath\nhttp://ibelong.digitalcity.com/uticaarea/guygirlmidwest/main.dci?page=guyssept2000\nhttp://moviestore.zap2it.com/browse/MOVIES/JACKET/s.jNIqMaLO\nhttp://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=applescript\nhttp://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=prolog\nhttp://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=samba\nhttp://209.52.189.2/discussions.cfm/3031/1757-1776\nhttp://209.52.189.2/discussions.cfm/3031/757-776\nhttp://209.52.189.2/discussions.cfm/3031/57-76\nhttp://itcareers.careercast.com/texis/it/itjs/+DwwBmeOWD86OwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewVtqDhdGMwBodDanDtoDnnGaoDBntGwBodDaMwDwtnMnDBanDBnGpGo5na5nGVnG5anLpnGonDqnaDnBidGAa5O5BnMawppcoqwBodDaMFqhTfR20DzmeitwwwpBme2WD86e1xwww5rmenDwwwBrmeZpwww/morelike.html\nhttp://volunteersolutions.org/austin/volunteer/opp/one_100634_printer_detailed.html\nhttp://www.changeyourhome.net/PropertiesToLet/WithamLet/LOO606/pages/DCP_0421_JPG.htm\nhttp://www.users.qwest.net/~eagletac/\nhttp://www.motorradversand.de/cgi-bin/bekleidung/integralhelm/NG94G933/beurteilung.htm\nhttp://stol.list.ru/catalog/25440.html\nhttp://stol.list.ru/catalog/25301.html\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959436300/Club/start/1000000\nhttp://www.gohamptonroads.com/sportsticker/events/06-12/0447.CWS.FSUTEXCURRENT.html\nhttp://genforum.genealogy.com/merriman/messages/228.html\nhttp://genforum.genealogy.com/merriman/messages/223.html\nhttp://genforum.genealogy.com/merriman/messages/163.html\nhttp://genforum.genealogy.com/merriman/messages/495.html\nhttp://genforum.genealogy.com/merriman/messages/232.html\nhttp://genforum.genealogy.com/merriman/messages/351.html\nhttp://genforum.genealogy.com/merriman/messages/324.html\nhttp://genforum.genealogy.com/merriman/messages/510.html\nhttp://genforum.genealogy.com/merriman/messages/57.html\nhttp://genforum.genealogy.com/merriman/messages/12.html\nhttp://genforum.genealogy.com/merriman/messages/263.html\nhttp://genforum.genealogy.com/merriman/messages/15.html\nhttp://retailer.gocollect.com/do/session/1912656/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53832/eus53833/eus328722/eus129553/eus129564/\nhttp://cma.arabia.com:8008/jordan/article/print/arabic/0,5195,3750,00.html\nhttp://webhome.ai-lab.fh-furtwangen.de/for_local_use_only/CD-TMFUMV/daten/mathema/01121m/?N=D\nhttp://store1.europe.yahoo.com/brink2/2000000141305.html\nhttp://www.contractorresource.com/Vermont/Westford/Architects.shtml\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/3d-service/Top-Darlehens-Konditionen/Startseite/Gemeinsam/versicherungen/gebaeude/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://free.polbox.pl/p/pphromar/OFERTA.htm\nhttp://www.burstnet.com/ads/ad5788a-map.cgi/tr00010005_12\nhttp://www.private-immobilien-boerse.de/ungarn/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Immolink/3d-service/IIM-Teil/Startseite/froben.htm\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/lahti/toisen+asteen+koulutus/ammattikorkeakoulut/\nhttp://www.geomag.com/pirates/html/4books.html\nhttp://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/559420000049560000009753100000548302/main.wo/7016200000448302/0/-/prime\nhttp://www.adventurecentre.com/Framesets/intrside/csh.htm\nhttp://mitglied.tripod.de/vox0/negrostodos/de_sexo_dobles.html\nhttp://www.sasinstitute.com/offices/asiapacific/taiwan/whatsnew/art1999/art091601.html\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/gdb/sim/ppc/Attic/ppc-opcode-complex?only_with_tag=HEAD\nhttp://www.yorosiku.net:8080/-_-http://www.suntory.co.jp/eco/what.html\nhttp://www.yorosiku.net:8080/-_-http://www.suntory.co.jp/culture/birds/welcome.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/misc/unitest/lit/pushkin.html\nhttp://sunsite.uakom.sk/tucows/adnload/69291_28346.html\nhttp://members.tripod.com/yamabito2/gardening_000416_0502_n22.htm\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380775/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp\nhttp://www.onsemi.com.cn/pub/prod/0,1193,products1_Disty_order=MC100H642FNR2,00.html\nhttp://perso.wanadoo.fr/michel.brunel/Infographie/content/contacts.htm\nhttp://mindit.netmind.com/proxy/http://www.film.com/RGI/FC.(/watch/broadband.jhtml).def...RGI//reviews/features/mow/blairwitch2.jhtml\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex09/gv197/?N=D\nhttp://www-d0.fnal.gov/d0dist/dist/releases/test/l3fmuo_unpack/rcp/?N=D\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/44dc495cc7534894862566fe00127751!OpenDocument&ExpandSection=7,10,4,9\nhttp://www.zdnet.com/gamespot/filters/printerfriendly/0,10855,2531809-95,00.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/el%25C3%2583%25C2%25A4kelaitokset/vakuutuslaitokset/rahoitus/el%E4kerahastot/\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/fthteavfo2-96.html\nhttp://polygraph.ircache.net:8181/http_-2ESPN.SportsZone.com/nfl/mall/http_-2www.excite.com/http_-2www.exploreuw.com/cards/\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cosido&l=pt\nhttp://fazmali.bigsmart.com/mall/allinone/comparison_chart_new.html\nhttp://sunsite.ualberta.ca/pub/Mirror/gnu/etc/ORDERS\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00347.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00363.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00482.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00483.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00499.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00508.html\nhttp://www.bumppo.net/lists/realbasic-dr/1998/12/msg00518.html\nhttp://it.sports.yahoo.com/000911/90/of8m.html\nhttp://ftp.support.compaq.com/public/dunix/v3.2g/TruCluster_V1.0/?M=A\nhttp://ftp.support.compaq.com/public/dunix/v3.2g/TruCluster_V1.0/ReleaseNotes.pdf\nhttp://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/e3cb86464a9f805a002564ac0039422d!OpenDocument&ExpandSection=5,1,9\nhttp://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/e3cb86464a9f805a002564ac0039422d!OpenDocument&ExpandSection=6,1,9\nhttp://polygraph.ircache.net:8181/Keyboards/http_-2www.sky.net/~robertf/http_-2domino.findyn.com/fdi.nsf/http_-2home.netscape.com/\nhttp://www.nv.cc.va.us/home/jakim\nhttp://itcareers.careercast.com/texis/it/itjs/+nwwBmJe0B-deVmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaDnBidGAoDta5O5BnM5amo5BGox1BnmanDtoDnnGaMw55wqr15nBB5a51ppdGBamnVncdpaBn5BaMFqhTfR20DzmeQtwwwpBme-WD86eyxwww5rmesdwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+MwwBme7WD86JwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaDnBidGAoDta5O5BnM5amo5BGox1BnmanDtoDnnGaMw55wqr15nBB5a51ppdGBamnVncdpaBn5BaMFqhTfR20DzmeQtwwwpBme-WD86eyxwww5rme4dwwwBrmeZpwww/jobpage.html\nhttp://my.dreamwiz.com/hideyu/couple/couplemain.htm\nhttp://www.noras.bizland.com/top_pages/top_gen_1.htm\nhttp://www.nomade.fr/catm6/entreprises_economi/electricite_electro/electricite/composants_fournitu/index5.shtml\nhttp://www.staroriental.net/nav/soeg_c/ihf,aeb,s0,363,黎明.html\nhttp://online.excite.de/lifestyle/katalog/27990\nhttp://www.linux.com/networking/network/performance/install/news/Linux/\nhttp://www.linux.com/networking/network/performance/install/news/kernel/\nhttp://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Shandong/Cities_and_Towns/He_Zhe/Government/\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/ReadAdverData/2000-10-29/12/972792271154.txt\nhttp://independent-sun-01.whoc.theplanet.co.uk/news/Sport/Football/Bradford/ipswich221000.shtml\nhttp://www.emis.de/journals/EJDE/Monographs/Volumes/Monographs/1996/05-Hetzer/Hetzer-tex\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/arch/arm/def-configs/assabet?only_with_tag=LINUX-2_4_0-test1\nhttp://www.nrk.no/finnmark/x22_8_96/arkivet/\nhttp://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/?S=A\nhttp://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/_Dedicated.txt\nhttp://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/_Mods.txt\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/bugsx/?N=D\nhttp://ring.yamanashi.ac.jp/archives/NetBSD/packages/1.4.1/sparc/databases/\nhttp://citeseer.nj.nec.com/cidcontext/260967\nhttp://members.tripod.co.jp/jojo6251/sasamineHP.htm\nhttp://www.segodnya.ru/w3s.nsf/Archive/2000_96_life_vrez_noname2.html\nhttp://www.citybrasil.com.br/rs/ivora/cidadefala.htm\nhttp://web62.com/engl/fashion/pompoes/nav.htm\nhttp://www.jufo.com/netcenter/house/item/bglz/477_lmt.html\nhttp://gatekeeper.dec.com/pub/BSD/FreeBSD/FreeBSD-current/src/gnu/libexec/uucp/uupick/\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/lelandsystems.stanford.edu/announce/pubsw/\nhttp://www.schleuse.de/maschine/World/Deutsch/Kultur/Literatur/Autoren_und_Autorinnen/D/Dominik,_Hans/\nhttp://www.elsur.cl/archivo/mayo2000/8mayo2000/elsur/espectaculos/ind2.php3\nhttp://www.jpc-neuheiten.de/2881737.htm\nhttp://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,creaccess,gaestebuch,hilfe,hilfeallgemein,individualverkehr,kultur,onlineservice,schnellübersicht,sense,veranstaltungen,verkehr,von)/_fort/html/themen/computer/soft/links/softquad.htm\nhttp://bbs.syu.ac.kr/NetBBS/Bbs.dll/groupbbs031/rcm/zka/B2-kB23m/qqo/004A/qqatt/^\nhttp://www.city-map.de/city/print/nl/Niedersachsen/Osterholz/actueel_&_nieuw/onroerendgoed_&_woningen/k012700681.html\nhttp://members.tripod.com/sultana_2/thiskindalife.htm\nhttp://members.tripod.com/sultana_2/thisthing.htm\nhttp://members.tripod.com/sultana_2/believeinthis.html\nhttp://tulips.ntu.edu.tw/search*chi/m586.47+4412/m586.47+4412/-5,-1,0,B/frameset&F=m586.48+0146&1,1\nhttp://btp1da.phy.uni-bayreuth.de/ftp/pub/FreeBSD/ports/www/linbot/?S=A\nhttp://pub6.ezboard.com/fbiblediscussionandsharingparableorversesharing.subscribeUnregisteredToTopic?topicID=113.topic\nhttp://www.cs.rit.edu/usr/local/pub/atk/course_descr/481.dir/?M=A\nhttp://neptune.guestworld.com/gear/gateway.cfm?action=manage&owner=Nickdays\nhttp://retailer.gocollect.com/do/session/1912673/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp\nhttp://tucows.minorisa.es/adnload/001-006-009-001.html\nhttp://www.cwi.nl/~jack/spunk/texts/pubs/sekhmet/8/sp001225.txt\nhttp://homepage.yesky.com/33554432/36700160/103524.htm\nhttp://cvs.php.net/viewcvs.cgi/php3/functions/gd.c?annotate=1.65&sortby=log\nhttp://www.genexchange.com/deathreg.cfm?state=nc&county=pasquotank\nhttp://www.genexchange.com/schoolreg.cfm?state=nc&county=pasquotank\nhttp://www.tagnet.org/uva/Eventos/Emergencia99/Fotos/FotosOccidente01.htm\nhttp://itcareers.careercast.com/texis/it/itjs/+CwwBmue0B-dswwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6nmoBGnaqdGpdGwBodDa5oBnaoDqc1mnanLqnca15naGn31oGnma5Aocc5awqqd1DBoDtamn5oGwxcnaMFqhTfR20Dzme9twwwpBme+6D865www5rmesDwwwBrmeRdwww/jobpage.html\nhttp://retailer.gocollect.com/do/session/1912638/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://kulichki-win.rambler.ru/inkwell/bio/zitinsk.htm\nhttp://www.thestateofcolorado.com/e1tatpiercing.html\nhttp://www.pc-schulmusik.purespace.de/seminar/START.HTM\nhttp://www.feeler.nl/rubrieken/index.xml/818004059\nhttp://ftp.dartmouth.edu/~mcb/faculty/fiering.html\nhttp://ustlib.ust.hk/search*chi/cHD30.28+.C56+1995/chd+++30.28+c56+1995/-17,-1,0,E/2browse\nhttp://herndon1.sdrdc.com/cgi-bin/com_detail/C00325258/\nhttp://www.linux.com/networking/network/industry/press_release/linuxworld/Linux/\nhttp://mindit.netmind.com/proxy/http://www.abc.net.au/children/bananas/dreamtime/page1.htm\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959860700/Catalog/1000188\nhttp://207.87.5.36/pc/news/saa7108/\nhttp://musicalproducts.asiaep.com/muspro5a.htm\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A1U/1AL/A1S/A2S/C1L/\nhttp://www.cjga.com/JamMoviesCanadianO/obsessed.html\nhttp://www.symantec.se/region/jp/support/mac/utiliti/num352/num352up.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=catapultaras&l=pt\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=catapultai&l=pt\nhttp://no.egroups.com/group/Chenzhou-families\nhttp://www.teenplatinum.com/barelylegal/anal-sexass/young-adultbest-friends/hardaction/slutsnude/red-toenail-polishfoot-fetish/toenail-polish.html\nhttp://beatles.sonicnet.com/allmusic/ai_links.jhtml?ai_id=1000\nhttp://www.luecos.de/wow/art/fu_satir_30142.html\nhttp://nw1.newsweek.com/nw-srv/inetguide/iguide_4505343.html\nhttp://www.si.uniovi.es/mirror/squid/mail-archive/squid-users/200002/0637.html\nhttp://sunsite.compapp.dcu.ie/pub/perl/modules/by-category/08_User_Interfaces/Tk/NI-S/Tk402.004.readme\nhttp://www.amzn.com/exec/obidos/tg/feature/-/44435/\nhttp://www.amzn.com/exec/obidos/tg/feature/-/2869/\nhttp://www.hanter21.co.kr/NetBBS/Bbs.dll/dhliter02/lst/qqeq/1/zka/B2-kBINo/qqo/PRMY\nhttp://www.linux.com/networking/network/help/email/web/security/\nhttp://www.linux.com/networking/network/help/email/web/Slackware/\nhttp://www.linux.com/networking/network/help/email/web/e-commerce/\nhttp://www.linux.com/networking/network/help/email/web/release/\nhttp://debian.tod.net/debian/dists/stable/contrib/binary-all/web/?S=A\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-current/devel/fastcrc/pkg-descr\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B3S/B1S/C1U/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B3S/B1S/C1D/\nhttp://rex.skyline.net/html/Metalurgy.html?266,supplies,hobbies,painting,arts\nhttp://infoseek.wunderground.com/geo/BigtempBannerPromo/US/CO/Cortez.html\nhttp://www.kaernten.at/1Root/Kontinent/6/Staat/7/Bundesland/17/Ort/820/Pension/304806/Homepage/h_homepage...1.html\nhttp://dellnet.excite.de/nachrichten/katalog/6663\nhttp://www.users.skynet.be/eloymarc/infomobil2/sobeen13.htm\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/hXRIA9gT9KNJakAdbkyW2SaEFRyXAJCa2tpUDiYF1BHxbpYG0_go-roWL4XPWFopknXRvCQG4gmCQLNceomD4GJpJ4hvR4eYeQbgN2CFeSPhxakPczINPvttFOQK3IDjjmYz66jR\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/_cRIZWRepq55uG8fC8ijlWOJrkBzrY7AXdlxz7fhosBeDRNPqhpYFY3uMBgWodvLAPXL2sPRQ7GqKF66xzHYxHZISDRz4dfZjEKnEShXdRFhDxBcOPx4ufr7uXHA0sNvRvMq6Z1j\nhttp://polygraph.ircache.net:8181/health/http_-2cyril.com/http_-2www.americanexpress.com/corp/consumerinfo/privacy/privacystatement.shtml\nhttp://polygraph.ircache.net:8181/health/http_-2cyril.com/arch.html\nhttp://www.villager.com/ctg/cgi-bin/Villager/home/AAAksrACwAAACCOAAI\nhttp://www.medoc-ias.u-psud.fr:81/synoptic/gif/950829/?D=A\nhttp://members.tripod.lycos.nl/unlimited_pagez/pld2.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1996/01/25/FEATURES0VQ.html\nhttp://members.tripod.com/rebelstrange/buxoms.html\nhttp://fi.egroups.com/message/TEZKo/3\nhttp://www.yamato.jp.ibm.com/servers/eserver/xseries/about/availa.html\nhttp://polygraph.ircache.net:8181/NetworkInfo/http_-2www.thepetsupply.com/3d/web.html\nhttp://polygraph.ircache.net:8181/NetworkInfo/http_-2www.thepetsupply.com/3d/http_-2www.sccsi.com/welcome.html\nhttp://www.luf.org/wiki/edit/GIG/GenericCodingTerm\nhttp://208.178.109.85/msgshow.cfm/msgboard=822531545582878&msg=50215618980084&page=1&idDispSub=-1\nhttp://mercury.spaceports.com/~xenical/diet-food.html\nhttp://de.news.yahoo.com/991202/3/echc.html\nhttp://web.tiscalinet.it/ipsiang/uviafede/tertulli.html\nhttp://www.brio.de/BRIO.catalog/39fdb8820423a4d82740d472aa780733/Customer/Register\nhttp://rainforest.parentsplace.com/dialog/thread.pl/bradley2/16/2.html?dir=prevResponse\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/folderFrame/100012/0/def/1208103\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Inserieren/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/unfall/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://www.planetit.com/techcenters/docs/internet_&_intranet/news/PIT20000630S0024/threads?comment_status=on\nhttp://ftp.eq.uc.pt/software/unix/Linux/redhat/redhat-6.2/doc/HOWTOS/localization/Hellenic-HOWTO-html/Hellenic-HOWTO-8.html\nhttp://help.sap.com/saphelp_45b/helpdata/de/20/7be8341545ab06e10000009b38f83b/applet.htm\nhttp://www.imagestation.com/member/?name=RonnyClas6&c=1\nhttp://www.egroups.com/messages/cmass-syd-talk/1170\nhttp://bellsouth-cl.tucows.com/winnt/xwinservernt_size.html\nhttp://ftp.surfnet.nl/os/FreeBSD/cdrom/development/FreeBSD-CVS/ports/mail/youbin/patches/home.html\nhttp://chat.bigchurch.com/cgi-bin/w3com/pws/bc/PDhIf1s64yA1us4SS1FzmCsroIgpwrmcmdaKEhvT295b5JjMxs9ttaP_gpBzDbn5VR9hkgTaiz3efTGjRK64ORbhJMs0Q8ONiYshBhnFHdkQjl3uSSwZim5B5Layd_SDwYDTVgHM659c\nhttp://www.starshop.co.uk/Masson-Andre/Masson-Andre-Soleil-3200802.html\nhttp://www.21hk.com/book/wx1/wx/zpj/h/huanzhulouzhu/shushan/4/\nhttp://www.dietrich-computer.de/creativegrafik.htm\nhttp://forum.kf.kommorg.no/forum/agenda21/dispatch.cgi/disk_1/showFolder/100005/9206559\nhttp://mindit.netmind.com/proxy/http://abc.net.au/rn/schedule/wed.htm\nhttp://www.fogdog.com/cedroID/ssd3040183156802/nav/stores/adventure_travel/\nhttp://www.fogdog.com/cedroID/ssd3040183156802/nav/stores/tennis/\nhttp://link.fastpartner.com/do/session/600349/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php\nhttp://members2.clubphoto.com/luisf216501/TAMARINDO/icons.phtml\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380795/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/brocdesign.asp\nhttp://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=3,7,14,5,13,4,12\nhttp://www.chaos.dk/sexriddle/d/l/t/i/a/\nhttp://www.crutchfield.com/S-s7BJxKzNmKr/shop/\nhttp://www.crutchfield.com/cgi-bin/S-s7BJxKzNmKr/email.asp?sid=S-s7BJxKzNmKr\nhttp://tucows.interbaun.com/winme/adnload/137104_47064.html\nhttp://iland.tucows.com/win2k/adnload/73990_29810.html\nhttp://ftp.uk.debian.org/debian/dists/woody/contrib/binary-alpha/text/?M=A\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|10P02|972959526|Warm===and===Dry|user|0|1,0,0,1\nhttp://pub14.ezboard.com/fjavagateforum69255multibasicboard\nhttp://www.xrefer.com/entry/317621\nhttp://library.cuhk.edu.hk/search*chi/aChen,+Jih-peng./achen+jih+peng/-5,-1,0,B/frameset&F=achen+jie+qi&1,1\nhttp://library.cuhk.edu.hk/search*chi/aChen,+Jih-peng./achen+jih+peng/-5,-1,0,B/exact&F=achen+jih+hsin&1,2\nhttp://yp.gates96.com/5/50/60/53.html\nhttp://yp.gates96.com/5/50/60/98.html\nhttp://yp.gates96.com/5/50/61/14.html\nhttp://yp.gates96.com/5/50/61/60.html\nhttp://yp.gates96.com/5/50/62/0.html\nhttp://yp.gates96.com/5/50/63/12.html\nhttp://yp.gates96.com/5/50/63/14.html\nhttp://yp.gates96.com/5/50/63/51.html\nhttp://yp.gates96.com/5/50/63/52.html\nhttp://yp.gates96.com/5/50/64/2.html\nhttp://yp.gates96.com/5/50/64/31.html\nhttp://yp.gates96.com/5/50/65/36.html\nhttp://yp.gates96.com/5/50/65/44.html\nhttp://yp.gates96.com/5/50/65/58.html\nhttp://yp.gates96.com/5/50/65/78.html\nhttp://yp.gates96.com/5/50/66/33.html\nhttp://yp.gates96.com/5/50/66/38.html\nhttp://yp.gates96.com/5/50/67/3.html\nhttp://yp.gates96.com/5/50/67/83.html\nhttp://yp.gates96.com/5/50/68/40.html\nhttp://yp.gates96.com/5/50/69/2.html\nhttp://yp.gates96.com/5/50/69/36.html\nhttp://yp.gates96.com/5/50/69/49.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cochichastes&l=pt\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cochicharam&l=pt\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380791/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp.com/cposupport/fr/?CTRYcod=FR\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380791/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://pub22.ezboard.com/fworldofmugenfrm2.showMessage?topicID=131.topic&index=1\nhttp://pub23.ezboard.com/fmugenshowdownfrm8.showMessage?topicID=36.topic&index=1\nhttp://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11203_135680_85724,00.html\nhttp://www.jamba.de/KNet/_KNet-KBq8j1-gEd-138pd/showInfo-special1.de/node.0/cde7f1uou\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_050/rcw_41_50_650.txt\nhttp://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/31/Ort/234/Ferienpaket/20120/Homepage/buchen...1.html\nhttp://family.go.com/Categories/Features/family_2000_02/kidv/kidv0200resourceiii/\nhttp://www.online.kokusai.co.jp/Service/V0043469/wrd/G200/service/service.html\nhttp://www.linux.com/networking/network/help/hardware/website/ISP/\nhttp://store1.europe.yahoo.com/I/freemans_1592_58696403\nhttp://202.99.23.195/BIG5/channel5/745/20000427/51173.html\nhttp://www-usa10.cricket.org/link_to_database/GROUNDS/WI/ALBION/ALBION_SPORTS_COMPLEX_00772/\nhttp://www16.freeweb.ne.jp/computer/taka34/\nhttp://books.hyperlink.co.uk/bookinfo/Caught_in_a_Tornado/Ross/James_R./155553192X\nhttp://ftp.uni-stuttgart.de/pub/security/unix/SSLapps/doc/?S=A\nhttp://www.moviestarpages.com/rebecca_romijn-stamos/picture05.htm\nhttp://html.tucows.ciaoweb.it/adnload/001-009-008-022.html\nhttp://html.tucows.ciaoweb.it/adnload/001-009-008-019.html\nhttp://www.brio.de/BRIO.catalog/39fe2f4306cb75f4273fd472aa780708/UserTemplate/2\nhttp://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=92&Count=50&Expand=170\nhttp://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2home.netscape.com/home/http_-2www.bildhome.com/plantationhomes/bale1500.htm\nhttp://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2home.netscape.com/home/http_-2www.bildhome.com/plantationhomes/bale8000.htm\nhttp://writer.heha.net/poetics/90_poetics.htm\nhttp://yp.gates96.com/5/55/20/98.html\nhttp://yp.gates96.com/5/55/21/17.html\nhttp://yp.gates96.com/5/55/21/75.html\nhttp://yp.gates96.com/5/55/22/2.html\nhttp://yp.gates96.com/5/55/22/22.html\nhttp://yp.gates96.com/5/55/22/92.html\nhttp://yp.gates96.com/5/55/23/11.html\nhttp://yp.gates96.com/5/55/23/46.html\nhttp://yp.gates96.com/5/55/23/66.html\nhttp://yp.gates96.com/5/55/23/90.html\nhttp://yp.gates96.com/5/55/24/2.html\nhttp://yp.gates96.com/5/55/24/83.html\nhttp://yp.gates96.com/5/55/24/85.html\nhttp://yp.gates96.com/5/55/25/62.html\nhttp://yp.gates96.com/5/55/26/38.html\nhttp://yp.gates96.com/5/55/26/48.html\nhttp://yp.gates96.com/5/55/28/5.html\nhttp://yp.gates96.com/5/55/28/77.html\nhttp://yp.gates96.com/5/55/29/14.html\nhttp://yp.gates96.com/6/50/40/47.html\nhttp://yp.gates96.com/6/50/40/60.html\nhttp://yp.gates96.com/6/50/40/62.html\nhttp://yp.gates96.com/6/50/41/81.html\nhttp://yp.gates96.com/6/50/41/83.html\nhttp://yp.gates96.com/6/50/42/58.html\nhttp://yp.gates96.com/6/50/42/90.html\nhttp://yp.gates96.com/6/50/42/93.html\nhttp://yp.gates96.com/6/50/43/29.html\nhttp://yp.gates96.com/6/50/43/79.html\nhttp://yp.gates96.com/6/50/43/85.html\nhttp://yp.gates96.com/6/50/44/40.html\nhttp://yp.gates96.com/6/50/44/76.html\nhttp://yp.gates96.com/6/50/44/81.html\nhttp://yp.gates96.com/6/50/45/15.html\nhttp://yp.gates96.com/6/50/45/52.html\nhttp://yp.gates96.com/6/50/46/15.html\nhttp://yp.gates96.com/6/50/46/19.html\nhttp://yp.gates96.com/6/50/46/92.html\nhttp://yp.gates96.com/6/50/47/2.html\nhttp://yp.gates96.com/6/50/47/7.html\nhttp://yp.gates96.com/6/50/47/33.html\nhttp://yp.gates96.com/6/50/49/29.html\nhttp://yp.gates96.com/6/50/49/36.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/wRtIx3JBCL5wVzA1pIKradbm9z4Oo2BbPRx_FVh-j4UyLzjojbipsV0nsuM2iF9RxJ1jG2C4LUy3YP5pJl7qDqPdnqV765l2x5hJ0fIUUJuWLaccxO0svbclJ4-alyBQj6Y5dO8YdURyhf9q05q8mJ25FlvF62sm\nhttp://213.36.119.69/do/session/152980/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml\nhttp://yp.gates96.com/6/2/20/11.html\nhttp://yp.gates96.com/6/2/21/12.html\nhttp://yp.gates96.com/6/2/21/51.html\nhttp://yp.gates96.com/6/2/21/56.html\nhttp://yp.gates96.com/6/2/22/8.html\nhttp://yp.gates96.com/6/2/22/38.html\nhttp://yp.gates96.com/6/2/22/65.html\nhttp://yp.gates96.com/6/2/23/14.html\nhttp://yp.gates96.com/6/2/23/50.html\nhttp://yp.gates96.com/6/2/23/57.html\nhttp://yp.gates96.com/6/2/23/75.html\nhttp://yp.gates96.com/6/2/24/15.html\nhttp://yp.gates96.com/6/2/24/31.html\nhttp://yp.gates96.com/6/2/24/43.html\nhttp://yp.gates96.com/6/2/24/70.html\nhttp://yp.gates96.com/6/2/24/87.html\nhttp://yp.gates96.com/6/2/25/22.html\nhttp://yp.gates96.com/6/2/25/53.html\nhttp://yp.gates96.com/6/2/25/90.html\nhttp://yp.gates96.com/6/2/26/25.html\nhttp://yp.gates96.com/6/2/26/26.html\nhttp://yp.gates96.com/6/2/26/45.html\nhttp://yp.gates96.com/6/2/26/76.html\nhttp://yp.gates96.com/6/2/27/34.html\nhttp://yp.gates96.com/6/2/28/1.html\nhttp://yp.gates96.com/6/2/28/25.html\nhttp://yp.gates96.com/6/2/29/2.html\nhttp://yp.gates96.com/6/2/29/31.html\nhttp://yp.gates96.com/6/2/29/57.html\nhttp://yp.gates96.com/6/2/29/74.html\nhttp://archive.bitcon.no/tucows//winme/preview/136862.html\nhttp://archive.bitcon.no/tucows//winme/preview/138371.html\nhttp://archive.bitcon.no/tucows//winme/preview/137011.html\nhttp://archive.bitcon.no/tucows//winme/preview/137897.html\nhttp://archive.bitcon.no/tucows//winme/preview/138157.html\nhttp://www.ngmag.com/books/reference/0792275667.html\nhttp://socrates.berkeley.edu:4231/pth.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/lit/multiple.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/lit/god.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/misc/colorart/\nhttp://retailer.gocollect.com/do/session/1912687/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380807/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/creative/entry.asp\nhttp://home.swipnet.se/~w-29806/Tab/Guitar/Svenska/h/Jakob%20Hellman/VACKERT_.TXT\nhttp://jupiter.u-3mrs.fr/~msc41www/releves/16860204.HTM\nhttp://citeseer.nj.nec.com/cidcontext/1003669\nhttp://citeseer.nj.nec.com/cidcontext/1003675\nhttp://citeseer.nj.nec.com/cidcontext/1003676\nhttp://www.escribe.com/religion/nondualitysalon/m10801.html\nhttp://www.escribe.com/religion/nondualitysalon/m10824.html\nhttp://www.tvstore.com/browse/TV/PATCH/s.bCooTxTe\nhttp://digilander.iol.it/lorciao/computer.htm\nhttp://yosemite.epa.gov/r9/sfund/overview.nsf/ef81e03b0f6bcdb28825650f005dc4c1/1d8f2e36da9dc1de8825660b007ee696?OpenDocument&ExpandSection=-1,-8,-4\nhttp://cn.egroups.com/post/ukr_liga?act=reply&messageNum=40\nhttp://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/048720000079262000002260000000798302/Session_Expired_Page.wo/6144200000698302/0/-/prime\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=coadjuvaram&l=pt\nhttp://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/LW132|972959517|Liming_&_Patinating|user|0|0,0,1,1\nhttp://www.angelfire.com/va/boogiescamp\nhttp://www.kyotei.or.jp/JLC/VS/19/991209/0212.htm\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380800/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp\nhttp://www.city-map.nl/city/map/en/Niedersachsen/Landkreis_Cuxhaven/customers/Dr.rer.nat._Büro_für_Erdwiss.Untersuchungen_Udo_Lade/contact.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=consternais&l=pt\nhttp://muenchen.bda.de/freizeitparks/gastbuch/gaestebuch003.html\nhttp://www.linux.com/networking/network/industry/growth/editing/SAP/\nhttp://www.linux.com/networking/network/industry/growth/editing/mobile/\nhttp://lists.omnipotent.net/qmail/199909/msg00892.html\nhttp://lists.omnipotent.net/qmail/199909/msg00952.html\nhttp://lists.omnipotent.net/qmail/199909/msg00964.html\nhttp://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/ports/msdos/old/?N=D\nhttp://www3.buch-per-sms.de/faq.jsp$ID=To7697mC5277111659640048At0.5320036065114109\nhttp://www3.buch-per-sms.de/wir_ueber_uns.jsp$ID=To7697mC5277111659640048At0.5337056452821441\nhttp://tradersdirectory.com/channel/jobs/insurance/insurance_policy_clerk/b.2166.g.2360.html\nhttp://www.mapion.co.jp/custom/nikkei/admi/13/13119/takashimadaira/7chome/27/\nhttp://www.dispatch.co.za/1998/02/19/easterncape/MARCHANC.HTM\nhttp://www.techsupplies.com/sleuth/33/1/10703/523434/\nhttp://fi.egroups.com/message/911dispatchers/171\nhttp://polygraph.ircache.net:8181/services/define/toast/congress2000/http_-2www.sportfish.net/fish.htm\nhttp://polygraph.ircache.net:8181/services/define/toast/congress2000/MS.htm\nhttp://polygraph.ircache.net:8181/services/define/toast/congress2000/http_-2leader.linkexchange.com/1/X171400/clicklogo\nhttp://polygraph.ircache.net:8181/services/define/toast/congress2000/cfiref.htm\nhttp://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,daham,hilfe,individualverkehr,kultur,literatur,veranstaltungen,verkehr)/_fort/html/themen/aktuell/events/events.htm#regional\nhttp://dellnet.excite.de/computer/katalog/7054\nhttp://read.cnread.net/cnread1/ztxs/b/baitian/lmss/006.htm\nhttp://www-d0.fnal.gov/d0dist/dist/releases/psim01.02.00/l2utils/GNUmakefile\nhttp://www.allgemeine-immobilien-boerse.de/Frankreich/Verkauf/Private-IB/Startseite/Gemeinsam/erreichenPartner/Gemeinsam/Inserieren/Allgemeine-IB/\nhttp://wish.themes.tucows.com/adnload/14495.html\nhttp://wish.themes.tucows.com/preview/14494.html\nhttp://wish.themes.tucows.com/preview/78220.html\nhttp://www.uwm.edu/IMT/Computing/sasdoc8/sashtml/af/z0230835.htm\nhttp://www.bdnet.com/Taiga/H/Fulu/fiche_serie.htm\nhttp://se.egroups.com/message/clippingts/14?source=1\nhttp://adelaida.net/music/texts/trex_s1.html\nhttp://archive.bitcon.no/pub/cica/handheld/desktop/\nhttp://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/disclaimers/AAAksrACwAAACCMAAC\nhttp://ftp.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/language/ethiopia/ethtex/lj_fonts/?N=D\nhttp://sirac.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/jdk1.3/docs/guide/jdbc/spec/jdbc-spec.frame16.html\nhttp://www.linux.com/networking/network/release/press_release/competition/web/\nhttp://www.linux.com/networking/network/release/press_release/competition/internet/\nhttp://www.linux.com/networking/network/release/press_release/competition/HTTP/\nhttp://hughes.tucows.com/win2k/share2k_size.html\nhttp://icq.planetout.com/popcornq/movienews/98/10/23/money/careers\nhttp://go3.163.com/_NTES/~cntop07/files/k20808/zengby-k201/zengby-k201-09.html\nhttp://uunetnl.pda.tucows.com/palm/pqa_news_license.html\nhttp://uunetnl.pda.tucows.com/palm/preview/54359.html\nhttp://uunetnl.pda.tucows.com/palm/preview/58637.html\nhttp://uunetnl.pda.tucows.com/palm/adnload/72726_21807.html\nhttp://uunetnl.pda.tucows.com/palm/adnload/62079_21796.html\nhttp://uunetnl.pda.tucows.com/palm/preview/33674.html\nhttp://uunetnl.pda.tucows.com/palm/preview/33501.html\nhttp://uunetnl.pda.tucows.com/palm/adnload/52518_21780.html\nhttp://ftp.dei.uc.pt/pub/net/ip/trace/traffic/?N=D\nhttp://dreamgallery.simplenet.com/lobby/yrestless/sets/26/yrz19.htm\nhttp://sanqin.net/wenyuan/gudian/fengshen/a/fengshen24.html\nhttp://windows.tucows.com/preview/001-010-005-007C.html\nhttp://windows.tucows.com/preview/001-010-005-004C.html\nhttp://proshikanet.tucows.com/win2k/preview/37883.html\nhttp://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/182.html\nhttp://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/84.html\nhttp://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/82.html\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,19,34,20,29\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=36,19,34,20,29\nhttp://www.ne.jp/asahi/kume-kume/kume/photogellery/zoo/nihon_saru/html/nihon_saru04.html\nhttp://www.ne.jp/asahi/kume-kume/kume/photogellery/zoo/nihon_saru/html/nihon_saru05.html\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/showNextUnseen/fol/100001/2443194\nhttp://www.chaos.dk/sexriddle/t/r/p/c/p/\nhttp://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol007.htm\nhttp://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol024.htm\nhttp://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol025.htm\nhttp://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol030.htm\nhttp://debian.linux.org.tw/debian/dists/Debian2.1r4/non-free/binary-alpha/oldlibs/?N=D\nhttp://www.tamil.net/list/2000-04/nav00304.html\nhttp://www.2pl.com/b/se/to/1/01/05/v2/1010500263-7.htm\nhttp://www.2pl.com/b/se/to/1/01/05/v2/1010500263-8.htm\nhttp://www.mirror.ac.uk/sites/ftp.microsoft.com/deskapps/powerpt/KB/Q129/5/\nhttp://www.gbnf.com/genealogy/royal92/html/d0028/I307.HTM\nhttp://www-linux.gsi.de/linux-doc/libqt2/examples/qfd/?M=A\nhttp://www.arm.com/sitearchitek/support.ns4/html/sdt_debug!OpenDocument&ExpandSection=24,6,37,7\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/kab/kab_kab1importer.h?sortby=log&only_with_tag=KDE_2_0_RELEASE\nhttp://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/bielefeld/Verkauf/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Private-IB/Gemeinsam/erreichenPartner/email3d.htm\nhttp://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/bielefeld/Verkauf/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Private-IB/3d-service/info.htm\nhttp://satlink.tucows.com/winme/htmleditme_rating.html\nhttp://satlink.tucows.com/winme/adnload/137630_29066.html\nhttp://satlink.tucows.com/winme/adnload/137653_29087.html\nhttp://yp.gates96.com/5/55/40/63.html\nhttp://yp.gates96.com/5/55/40/93.html\nhttp://yp.gates96.com/5/55/41/8.html\nhttp://yp.gates96.com/5/55/41/27.html\nhttp://yp.gates96.com/5/55/41/93.html\nhttp://yp.gates96.com/5/55/42/1.html\nhttp://yp.gates96.com/5/55/42/65.html\nhttp://yp.gates96.com/5/55/43/15.html\nhttp://yp.gates96.com/5/55/43/26.html\nhttp://yp.gates96.com/5/55/43/94.html\nhttp://yp.gates96.com/5/55/44/70.html\nhttp://yp.gates96.com/5/55/44/83.html\nhttp://yp.gates96.com/5/55/45/17.html\nhttp://yp.gates96.com/5/55/46/3.html\nhttp://yp.gates96.com/5/55/46/39.html\nhttp://yp.gates96.com/5/55/46/43.html\nhttp://yp.gates96.com/5/55/47/18.html\nhttp://yp.gates96.com/5/55/48/23.html\nhttp://yp.gates96.com/5/55/48/40.html\nhttp://yp.gates96.com/5/55/48/72.html\nhttp://yp.gates96.com/5/55/48/93.html\nhttp://yp.gates96.com/5/55/49/7.html\nhttp://yp.gates96.com/5/55/49/8.html\nhttp://yp.gates96.com/5/55/49/20.html\nhttp://yp.gates96.com/5/55/49/37.html\nhttp://yp.gates96.com/5/55/49/49.html\nhttp://yp.gates96.com/5/55/49/60.html\nhttp://yp.gates96.com/5/55/49/69.html\nhttp://www.ramtron.com/pages/visiters.htm\nhttp://genforum.genealogy.com/cgi-genforum/forums/oh/wayne.cgi?56\nhttp://freebsd.ntu.edu.tw/perl/modules/by-module/DB_File/STAS/?N=D\nhttp://sunsite.org.uk/public/usenet/news-faqs/alt.answers/us-visa-faq/?D=A\nhttp://circumstance.co.kr/www.globalvillage.com/support/software.html\nhttp://mediate.magicbutton.net/do/session/625589/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html\nhttp://itcareers.careercast.com/texis/it/itjs/+9wwBmev6D86wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGPndhBiwGna5O5BnManDtoDnnGamnVncdpoDtaBn5Baw1BdMwBodDaGn31oGnma5Aocc5anLpnGonDqnaGnwcaMFqhTfR20DzmeTtwwwpBm3eP0-dmwww5rmehDwwwBrmeZpwww/morelike.html\nhttp://library.bangor.ac.uk/search/dProtestant+churches+--+New+York+(State)+--+History+--+19th+century/dprotestant+churches+new+york+state+history+++19th+century/-17,-1,0,B/frameset&F=dprotestant+churches+england+history+++16th+century&2,,3\nhttp://augustachronicle.com/stories/021299/fea_223-4914.000.shtml\nhttp://dreamcity.gaiax.com/www/dreamcity/k/n/kint/menu.html\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceMallCategories-BBC709D6_97E3_3D628A3FC67830F4FB7BD0E0AC833504\nhttp://www.mirror.kiev.ua:8082/paper/2000/07/1251/text/07-09-1.htm\nhttp://www.burstnet.com/ads/ad7826a-map.cgi/1025131450\nhttp://link.fastpartner.com/do/session/600341/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/se/\nhttp://topcu.tucows.com/winme/adnload/137966_29370.html\nhttp://topcu.tucows.com/winme/adnload/137990_29378.html\nhttp://itcareers.careercast.com/texis/it/itjs/+9wwBmeS+D86swwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rmedDwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/+DwwBmeoWD86eDqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rmeqDwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+QwwBme4+D86qxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rm+mwwBrmeZpwww/jobpage.html\nhttp://wwwbackup.trinler.net/anleitungen/manual/mod/mod_dll.html\nhttp://wwwbackup.trinler.net/anleitungen/manual/mod/mod_log_agent.html\nhttp://as400bks.rochester.ibm.com/pubs/html/as400/v4r5/ic2962/info/RZAIENETDOTDATA.HTM\nhttp://www.gov.ie/educ/000928.htm\nhttp://www.gov.ie/educ/speech/000928.htm\nhttp://pub3.ezboard.com/utaela.showPublicProfile?language=EN\nhttp://genforum.genealogy.com/cody/messages/700.html\nhttp://genforum.genealogy.com/cody/messages/525.html\nhttp://genforum.genealogy.com/cody/messages/494.html\nhttp://genforum.genealogy.com/cody/messages/447.html\nhttp://ftp.surfnet.nl/os/FreeBSD/cdrom/development/FreeBSD-CVS/ports/editors/psgml-emacs/files/home.html\nhttp://www.mic.hr/PGBURZA:135556\nhttp://pub8.ezboard.com/fthecompanionswebboardfrm19\nhttp://pub8.ezboard.com/fthecompanionswebboardarchive\nhttp://gallery2.simplenet.com/lobby/main/videocaps/ghoffman/precious/ghsp36.htm\nhttp://www.symantec.ru/avcenter/venc/data/unashamed.html\nhttp://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=7000\nhttp://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=1685\nhttp://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=5358\nhttp://rex.skyline.net/navigate.cgi?reading,retail,hobbies,painting,arts\nhttp://rex.skyline.net/navigate.cgi?forsale,retail,hobbies,painting,arts\nhttp://pds.nchu.edu.tw/cpatch/ftp/cuteftp/?S=A\nhttp://www.tel.de/s/M/MCFIT.htm\nhttp://zeus.uni-trier.de/~ley/db/indices/a-tree/s/Stevenson:Allan.html\nhttp://www.alsapresse.com/jdj/00/07/14/SA/article_16.html\nhttp://link.fastpartner.com/do/session/600359/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php\nhttp://link.fastpartner.com/do/session/600359/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/index.php\nhttp://news.dreamwiz.com/news_lg/04/20001025/joins/200010251653041653193.html\nhttp://news.dreamwiz.com/news_lg/04/20001025/joins/200010250820040820583.html\nhttp://windows.tucows.com/winnt/adnload/71593_30161.html\nhttp://213.36.119.69/do/session/152979/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/encheres/\nhttp://213.36.119.69/do/session/152979/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/IT_IT/\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showNextUnseen/fol/100012/1220541\nhttp://bigpanda.net/46/alphabetical.html\nhttp://bigpanda.net/46/io.html\nhttp://fi.egroups.com/message/puzzles/547\nhttp://theaceshow.com/drawinglinda.html\nhttp://theaceshow.com/drawingsketch.html\nhttp://ftp.jp.debian.org/debian/dists/woody/main/binary-all/news/?D=A\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A2L/1AS/B3U/B4L/C2S/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A2L/1AS/B3U/B4L/C4D/\nhttp://in.egroups.com/message/islaam/3\nhttp://in.egroups.com/message/islaam/29\nhttp://ustlib.ust.hk/search*chi/a%7B233e68%7D%7B215976%7D%7B213e2e%7D/a%7B233e68%7D%7B215976%7D%7B213e2e%7D/-5,-1,0,B/browse\nhttp://yp.gates96.com/13/8/20/68.html\nhttp://yp.gates96.com/13/8/21/25.html\nhttp://yp.gates96.com/13/8/21/32.html\nhttp://yp.gates96.com/13/8/21/49.html\nhttp://yp.gates96.com/13/8/21/63.html\nhttp://yp.gates96.com/13/8/21/88.html\nhttp://yp.gates96.com/13/8/22/2.html\nhttp://yp.gates96.com/13/8/22/10.html\nhttp://yp.gates96.com/13/8/22/67.html\nhttp://yp.gates96.com/13/8/22/79.html\nhttp://yp.gates96.com/13/8/23/19.html\nhttp://yp.gates96.com/13/8/23/31.html\nhttp://yp.gates96.com/13/8/25/64.html\nhttp://yp.gates96.com/13/8/25/68.html\nhttp://yp.gates96.com/13/8/25/73.html\nhttp://yp.gates96.com/13/8/26/6.html\nhttp://yp.gates96.com/13/8/26/11.html\nhttp://yp.gates96.com/13/8/26/12.html\nhttp://yp.gates96.com/13/8/26/39.html\nhttp://yp.gates96.com/13/8/26/54.html\nhttp://yp.gates96.com/13/8/26/55.html\nhttp://yp.gates96.com/13/8/26/82.html\nhttp://yp.gates96.com/13/8/27/89.html\nhttp://yp.gates96.com/13/8/28/22.html\nhttp://yp.gates96.com/13/8/28/61.html\nhttp://yp.gates96.com/13/8/29/13.html\nhttp://yp.gates96.com/13/8/29/33.html\nhttp://yp.gates96.com/13/8/29/83.html\nhttp://www.private-immobilien-boerse.de/baden-wuertemberg/ostalb-kreis/Verkauf/Versteigerungen-IB/Startseite/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm\nhttp://www2.so-net.ne.jp/mc/columns/nakama/1112/\nhttp://ring.shibaura-it.ac.jp/archives/pack/x68/personal/tokei/00_index.txt\nhttp://yp.gates96.com/5/32/0/0.html\nhttp://yp.gates96.com/5/32/0/99.html\nhttp://yp.gates96.com/5/32/1/92.html\nhttp://yp.gates96.com/5/32/1/93.html\nhttp://yp.gates96.com/5/32/3/68.html\nhttp://yp.gates96.com/5/32/4/21.html\nhttp://yp.gates96.com/5/32/4/72.html\nhttp://yp.gates96.com/5/32/5/87.html\nhttp://yp.gates96.com/5/32/6/64.html\nhttp://yp.gates96.com/5/32/7/25.html\nhttp://yp.gates96.com/5/32/7/32.html\nhttp://yp.gates96.com/5/32/7/44.html\nhttp://yp.gates96.com/5/32/7/68.html\nhttp://yp.gates96.com/5/32/7/78.html\nhttp://yp.gates96.com/5/32/8/40.html\nhttp://yp.gates96.com/5/32/8/59.html\nhttp://yp.gates96.com/5/32/8/90.html\nhttp://yp.gates96.com/5/32/8/95.html\nhttp://yp.gates96.com/5/32/9/3.html\nhttp://yp.gates96.com/5/32/9/54.html\nhttp://yp.gates96.com/5/32/9/62.html\nhttp://yp.gates96.com/5/32/9/77.html\nhttp://tucows.soneraplaza.nl/winme/preview/138260.html\nhttp://www.cnnews.com/maya/finance/cjsy/gncj/item/2000_07/206341.shtml\nhttp://212.31.0.37/hur/turk/98/09/23/dunya/02dun.htm\nhttp://212.31.0.37/hur/turk/98/09/12/dunya/01dun.htm\nhttp://ftp.cwi.nl/ftp/mdr/LOCKED/\nhttp://ftp.cwi.nl/ftp/mdr/PICH/\nhttp://www.ncte.org/lists/ncte-talk/jan2000/msg02008.html\nhttp://www.russ.ru/forums/prav-dir/conf2/695_r.htm\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex05/mjp97/?D=A\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380786/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp\nhttp://www.flapjack.de/main/2ndHP/jangl43637.htm\nhttp://195.166.55.201/vfg-uk/HTML/P145232.HTM\nhttp://www.greenleaves.com/bookcat/gb_0689826788.html\nhttp://webraft.its.unimelb.edu.au/730452/students/sgm/pub/\nhttp://ring.omp.ad.jp/pub/NetBSD/packages/pkgsrc/print/teTeX-share/files/\nhttp://ww.egroups.com/subscribe/wtcjk_purnawirawan\nhttp://167.8.29.14/life/travel/ski/skinj.htm\nhttp://www.nrk.no/finnmark/x26_5_97/fastesid/abonn.htm\nhttp://www.brio.de/BRIO.catalog/39fe2f41050aa9b82741d472aa7806dd/UserTemplate/6\nhttp://207.25.71.143/golf/news/2000/04/18/heintz/\nhttp://weekends.worldres.com/script/gen_review.asp?hotel_id=4291&n=1231\nhttp://www.netitor.com/photos/schools/bc/sport/m-footbl/auto_pdf/weekly-release-082800.pdf\nhttp://www.3w-sciencefiction.de/SmytheRH/SmytheRH0785808744.htm\nhttp://www.zdnet.com/gamespot/stories/screens/0,10865,2617426-32,00.html\nhttp://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Root-RAID-HOWTO/t1450.html\nhttp://webusers.siba.fi/doc/texmf/latex/ms/?M=A\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/1AS/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/D1U/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/D3S/\nhttp://thaigate.rd.nacsis.ac.jp/ftp/thaisoft/nectec/linux.tle/6.01/Mandrake/?S=D\nhttp://www-ind5.cricket.org/link_to_database/ARCHIVE/2000-01/AUS_LOCAL/GRADE/NSW/SCA/WOMEN/SCA-WOMEN_2000-01_FIXTURES.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=abbratend&l=de\nhttp://www.webvillage.org/mBEDJPsite/html/downloadplugins.html\nhttp://www.gov.karelia.ru:8081/gov/Karelia/658/8.html\nhttp://www.private-immobilien-boerse.de/bayern/ingolstadt/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Inserieren/Gemeinsam/erreichenPartner/Ferien-IB/Startseite/\nhttp://pillsonline.00go.com/lowfatdiet/lifetime_fitness.htm\nhttp://tecfa2.unige.ch/guides/java/examples/JavaClassLibExamples/io/FileReader/Main.class\nhttp://www.burstnet.com/ads/ad7826a-map.cgi/1933336291\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/Hong%2520Kong/aasia/talous/pika-+ja+perustilastoja/\nhttp://home.tiscalinet.be/oaseidstad/vonk/optop2000.html\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=19,36,22,32,23\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=29,36,22,32,23\nhttp://cn.egroups.com/messages/virtualaccess/194\nhttp://jerken.grida.no/nor/soeno97/ozone/frames/pressure.htm\nhttp://online.excite.de/erotik/katalog/6213\nhttp://online.excite.de/erotik/katalog/6187\nhttp://online.excite.de/erotik/katalog/6221\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=28,7,35,25,13\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=31,7,35,25,13\nhttp://genforum.genealogy.com/cgi-genforum/forums/loughlin.cgi?11\nhttp://freesoftware.missouri.edu/pub/CPAN/authors/id/J/JS/JSWARTZ/?D=A\nhttp://link.fastpartner.com/do/session/600360/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/fastpartner.php\nhttp://www.jobvillage.com/channel/jobs/sciences/life_sciences/soil_plant_scientist/b.1041.g.251.html\nhttp://ftp.debian.org/dists/Debian2.2r0/non-free/binary-sparc/mail/?D=A\nhttp://generalstore.everdream.com/kore/catalog/Office_Supplies/General_Office_Supplies/Tape_Flags/Arrow/GRP-US6663/product.html\nhttp://www.hig.se/(date,if,set,tablify,user)/~jackson/roxen/\nhttp://www.hig.se/(date,if,language,set,tablify)/~jackson/roxen/\nhttp://www.cyber-pages.com/0prog/classifieds_display.cgi?oakland=WEMP=0\nhttp://202.84.17.6/csnews/articles/141_18691.htm\nhttp://202.84.17.6/csnews/articles/142_18526.htm\nhttp://ftp.dti.ad.jp/pub/FreeBSD/FreeBSD-current/www/es/releases/1.1.5/\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=9&discrim=247,207,129\nhttp://ftp.up.pt/Linux/debian/dists/unstable/main/disks-i386/?M=A\nhttp://www.unterhaltungs-cd.de/HillJonny/B000025087.htm\nhttp://filebox.vt.edu/users/aneal/excess/_fpclass/\nhttp://www.jamba.de/KNet/_KNet-JOt8j1-OEd-139q0/showInfo-presse.de/node.0/cde7f1uou\nhttp://www.tercera.cl/diario/1997/12/05/win.html\nhttp://yp.gates96.com/14/88/20/8.html\nhttp://yp.gates96.com/14/88/20/13.html\nhttp://yp.gates96.com/14/88/22/30.html\nhttp://yp.gates96.com/14/88/25/28.html\nhttp://yp.gates96.com/14/88/25/65.html\nhttp://yp.gates96.com/14/88/26/3.html\nhttp://bsdweb.pasta.cs.uit.no/bsdweb.cgi/~checkout~/pkgsrc/math/grace/pkg/\nhttp://ftp.tokyonet.ad.jp/pub/Linux/debian-jp/dists/unstable-jp/contrib/binary-m68k/math/?S=A\nhttp://my.dreamwiz.com/piramos/lan.htm\nhttp://pub8.ezboard.com/fselfreliantlivingfrm16.showMessage?topicID=11.topic\nhttp://pub8.ezboard.com/fselfreliantlivingfrm16.showMessage?topicID=4.topic\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380798/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/vacationcards.asp\nhttp://systemlogic.neoseeker.com/Companies/productportfolios/NEC_Interchannel/?sortby=sections\nhttp://www.houses-apartment-rentals.com/Virginia/city_search_criteria.asp?state=VA&City=DALHART\nhttp://www.wcbcourses.com/wcb2/schools/MERCED/merced/dhauser/2/forums/forum2/messages/17.html\nhttp://www.wcbcourses.com/wcb2/schools/MERCED/merced/dhauser/2/forums/forum2/messages/10.html\nhttp://beautifulsavers.subportal.com/sn/Shell_and_Desktop/Quick_Shutdown_Tools/2702.html\nhttp://polygraph.ircache.net:8181/getting_started/http_-2www.lucent.com/micro/K56flex/http_-2home.netscape.com/comprod/mirror/http_-2www.wtcsf.org/mall/http_-2www.cdnow.com/http_-2www.microsoft.com/msoffice/publicaffairs.html\nhttp://polygraph.ircache.net:8181/getting_started/http_-2www.lucent.com/micro/K56flex/http_-2home.netscape.com/comprod/mirror/http_-2www.wtcsf.org/mall/http_-2www.cdnow.com/http_-2www.microsoft.com/msoffice/videobroadcast/\nhttp://www.yagoo.co.kr/stats/pitching.asp?Mlbmanid=JESPEN7599\nhttp://www.4hotfantasy.com/acommon/guests/python4.html\nhttp://boerseninfos.ksk-tut.de/dynamic/ak/adhoc/news/519000-20000316-150811.html\nhttp://boerseninfos.ksk-tut.de/dynamic/ak/adhoc/news/519000-19991025-082814.html\nhttp://cn.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Zhejiang/Cities_and_Towns/Li_Hsua/Business/Companies/Books/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380810/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://kuyper.calvin.edu/fathers2/NPNF1-01/npnf1-01-12.htm\nhttp://library.bangor.ac.uk/search/dModernism+(Literature)/dmodernism+literature/-5,-1,0,E/2browse\nhttp://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/SHORT/410519/1/\nhttp://pub1.ezboard.com/fflashboard1flashjunkiestalk.showAddReplyScreenFromWeb?topicID=190.topic&index=2\nhttp://www.inforiese.de/db_cargo/typ_b_files/db_cargo_cargo_ansprechpartner.shtml\nhttp://www.gbnf.com/genealogy/dehart/html/d0005/I985.HTM\nhttp://btclickfam.excite.co.uk/directory/categories/670199\nhttp://www.worldmedicus.com/servlet/Controller/$7008040516620000.sj_viewc/\nhttp://www.worldmedicus.com/servlet/Controller/$7008040528250000.sj/\nhttp://207.25.71.143/features/galleries/then_and_now/belinsky/belinsky01_lg_01.html\nhttp://wiem.onet.pl/wiem/002c66.html\nhttp://www.peopledaily.com.cn/GB/paper40/544/58242.html\nhttp://www.uihealthcare.com////PatientsVisitors/MedMuseum/CenturyOfCaring/UniversityHospitals/05Quarantine.html\nhttp://se.egroups.com/login.cgi?login_target=%2Fmessages%2Fwotccglist%2F333\nhttp://se.egroups.com/message/wotccglist/334\nhttp://se.egroups.com/message/wotccglist/350\nhttp://se.egroups.com/message/wotccglist/358\nhttp://www.msn.expedia.co.uk/wg/North_America/United_States/P30131.asp\nhttp://www.uol.com.br/cinemaonline/starwars\nhttp://www.perotech.ch/d/securedb/html/listtopic.php?7396\nhttp://moviestore.zap2it.com/browse/X-FILES/POSTCARD/s.goFzN1Lb\nhttp://zeus.uni-trier.de/~ley/db/indices/a-tree/m/Morgoev:Vladimir_K=.html\nhttp://www.3w-buecher.de/GilliesRobertJ/GilliesRobertJ0122839803.htm\nhttp://www.buybuddy.com/sleuth/27/1/11002/6637/\nhttp://ftp.uk.debian.org/debian/dists/unstable/contrib/binary-powerpc/oldlibs/?D=A\nhttp://no.egroups.com/login.cgi?login_target=%2Fgroup%2Fwww.members.xoom.com%2FLibertyFlame\nhttp://www.aelita.net/products/support/sitemap/Reg/QuoteRegister/news/company/Copyright.htm\nhttp://www.aelita.net/products/support/sitemap/Reg/QuoteRegister/news/services/default.htm\nhttp://www.amateurplatinum.com/spankingfantasy/fertiletrophy-wife/hot-hardcore-fuckinglongest/red-toenail-polishfeet-fucking-/vietnamesewomen/chinesechi/womenpetite.html\nhttp://www.amateurplatinum.com/spankingfantasy/fertiletrophy-wife/hot-hardcore-fuckinglongest/red-toenail-polishfeet-fucking-/vietnamesewomen/fuckinghard/actionsmacking.html\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?fikes::26.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/music/midi/\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/computers/callcc.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/misc/colorart/\nhttp://www.musiciansfriend.com/ex/ds/live/001030182726064208037002434823\nhttp://www.musiciansfriend.com/ex/ds/home/funzone/001030182726064208037002434823?doc=doc,postcard.html\nhttp://www.musiciansfriend.com/ex/ds/home/platinum/001030182726064208037002434823?g,home.platinum.html\nhttp://www.musiciansfriend.com/ex/ds/home/articles/001030182726064208037002434823?dbase=gw,gwmain.html\nhttp://www.musiciansfriend.com/ex/ds/home/articles/001030182726064208037002434823?dbase=info,privacy.html\nhttp://preview.egroups.com/dir/Business/Training_and_Schools/Management_Training/Consultants?st=4\nhttp://hammer.prohosting.com/~nieting/html1216/lmtf015.htm\nhttp://planetfreebies.subportal.com/sn/Information_Management/Misc__Information_Databases/12835.html\nhttp://dada.linuxberg.com/kdehtml/adnload/61589_33448.html\nhttp://www.wlu.ca/~wwwregi/95-96/cal/ucourses/GM/GM151.html\nhttp://walkabout.tucows.com/win2k/adnload/61015_28629.html\nhttp://www.1001e.net/02/qbt/09.htm\nhttp://se.egroups.com/post/webfaaa?act=reply&messageNum=3\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/keats.admin.virginia.edu/asbestos/home.html\nhttp://www.hotelboulevard.com/fr/riviera/standard/htmlf752567459c6d803842381c50e94fd9f/sessionLang/ANG/gettingstarted.html\nhttp://ring.omp.ad.jp/pub/NetBSD/packages/pkgsrc/print/transfig/?N=D\nhttp://citeseer.nj.nec.com/cidcontext/2339336\nhttp://www.uk.multimap.com/p/browse.cgi?pc=LS287DR\nhttp://topcu.linux.tucows.com/x11html/adnload/46019_3809.html\nhttp://www.mon.de/nr/stuemges\nhttp://www.tamil.net/list/1998-10/msg00212.html\nhttp://retailer.gocollect.com/do/session/1912682/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/terms_and_conditions.asp\nhttp://pl.php.net/manual/nl/function.pfpro-version.php\nhttp://members.tripod.co.jp/millenium/top.html\nhttp://community.webshots.com/photo/4331085/4331572GooaFzYUAJ\nhttp://community.webshots.com/photo/4331085/4331589oKrBmsJbga\nhttp://community.webshots.com/photo/4331085/4331620zgfyMLoSjs\nhttp://www.utdallas.edu/~chansen/text/qabbala9.html\nhttp://www.jobvillage.com/channel/jobs/installation_repair/safety_equipment/fire_alarm/b.2283.g.3516.html\nhttp://www.geocities.com/Area51/Chamber/8750/DoesKitEverTalkAboutTheSubjectOnHand.html\nhttp://www.geocities.com/Area51/Chamber/8750/TheMotherofAllMissleBoats.html\nhttp://www.geocities.com/Area51/Chamber/8750/Tomahawk2.html\nhttp://www.thecitizennews.com/main/archive-000628/thecitizennews/citizen.html\nhttp://links2go.publiweb.com/expert/topic/Mp3_Hardware\nhttp://webhelp.promovacances.net/S02/BL/BEGYP/SAI00512024/cal.htm?d=1013\nhttp://205.161.150.96/cgi-bin/c2k/title_talent.html&id=143786&title_star=DOMINICK\nhttp://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/stable/non-free-jp/binary-all/net/?S=A\nhttp://wow-online.vhm.de/Wirtschaft/Unternehmen/Versicherungen/Versicherungsgesellschaften/Signal_Versicherung.html\nhttp://www.linux.com/networking/network/firewall/web/communications/?kw_offset=50\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_28b/chapter_056/rcw_28b_56_090.txt\nhttp://pub12.ezboard.com/flalaland96545listeningbooth.showMessage?topicID=74.topic\nhttp://www.fogdog.com/cedroID/ssd3040183156032/crs/pw__/wld/fogdog_sports/lee_sport/fan_memorabilia/apparel/new_york_yanke_2000_ameri_leagu_champ_tee_shi.html\nhttp://www.fogdog.com/cedroID/ssd3040183156032/nav/stores/adventure_travel/\nhttp://www.hoovers.com/travel/cityguide/detailed/0,3368,46_119158,00.html\nhttp://user.chollian.net/~mlsc/\nhttp://www.158china.com/data/stock/fundowner/default.asp?stck_cd=0548\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380803/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/createbroch.asp\nhttp://rcsl.auto.inha.ac.kr/~treeman/Documents/HOWTO/Consultants-HOWTO-3.html\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056427&area=&ID=483330\nhttp://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/http_-2www.netscape.com/download/http_-2www.microsoft.com/ie/http_-2207.91.150.20/links.html\nhttp://www.multicosm.com/facade/www.adobe.com/support/techguides/printpublishing/scanning/psscanning01b.html\nhttp://yp.gates96.com/0/50/10/62.html\nhttp://yp.gates96.com/0/50/10/95.html\nhttp://yp.gates96.com/0/50/11/1.html\nhttp://yp.gates96.com/0/50/11/18.html\nhttp://yp.gates96.com/0/50/11/49.html\nhttp://yp.gates96.com/0/50/12/55.html\nhttp://yp.gates96.com/0/50/13/48.html\nhttp://yp.gates96.com/0/50/13/96.html\nhttp://yp.gates96.com/0/50/14/15.html\nhttp://yp.gates96.com/0/50/14/73.html\nhttp://yp.gates96.com/0/50/15/50.html\nhttp://yp.gates96.com/0/50/15/80.html\nhttp://yp.gates96.com/0/50/16/1.html\nhttp://yp.gates96.com/0/50/16/8.html\nhttp://yp.gates96.com/0/50/17/50.html\nhttp://yp.gates96.com/0/50/17/71.html\nhttp://yp.gates96.com/0/50/18/25.html\nhttp://yp.gates96.com/0/50/18/73.html\nhttp://yp.gates96.com/0/50/18/82.html\nhttp://yp.gates96.com/0/50/18/84.html\nhttp://yp.gates96.com/0/50/18/90.html\nhttp://cisne.sim.ucm.es/search*spi/dBallets+--+Gran+BretaÃÂ±a+--+Discos+compactos/dballets+gran+bretan~aa+discos+compactos/-29,-1,0,B/browse\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20005025/-17,-1,0,B/browse\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A4R/B1D/A3S/\nhttp://php.nic.fi/manual/html/function.cpdf-open.html\nhttp://php.nic.fi/manual/html/function.cpdf-fill.html\nhttp://php.nic.fi/manual/html/function.cpdf-setrgbcolor-fill.html\nhttp://www.classiccmp.org/mail-archive/classiccmp/1998-04/1426.html\nhttp://text.csn.ul.ie/~danny/tabs/p/proclaimers/?N=D\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/branches/3.0-stable/ports/japanese/zangband/?N=D\nhttp://augustachronicle.com/stories/100197/spo_fishing.html\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=10,8,9,5\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/pics.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/lit/ldvelh.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/misc/unitest/\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/branches/3.0-stable/ports/japanese/ptex-pkfonts360/?N=D\nhttp://www.2pl.com/b/ru/fi/1/24/06/b1/1240601249-11023.htm\nhttp://galaxy.einet.net/galaxy/Community/United-States/States/Minnesota/Cities-and-Regions/Winona/Education/K--12/Middle/Public.html\nhttp://www.hotelboulevard.com/fr/paris/standard/htmlc866e5cecf73322551f00b0108eb84bc/sessionLang/ANG/prov/browse/cp/75001/resultatSearch.html\nhttp://btp1da.phy.uni-bayreuth.de/ftp/pub/FreeBSD/ports/japanese/dvipsk-vflib/pkg-descr\nhttp://32548news.subportal.com/sn/Utilities/Misc__Encryption_Utilities/\nhttp://www.hongen.com/proedu/hext/zxks/dxyw/html/dxy62804.htm\nhttp://www.users.globalnet.co.uk/~roy/InternetTree/WC01/WC01_226.htm\nhttp://www2.msstate.edu/~eaddy/famtread/html/nti07339.htm\nhttp://www.trackinfo.com/trakdocs/hound/ca/RESULTS/ARCHIVE/1996/0996/GRCA19S.HTM\nhttp://www.idg.net/crd_essential_110984.html\nhttp://www.zdnet.de//news/artikel/2000/09/06015-wc.html\nhttp://www.secinfo.com/d114Cu.52.htm\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327527/eus331435/\nhttp://enjoy100.com.cn/200005/23/\nhttp://link.fastpartner.com/do/session/600348/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mediatransfer.php\nhttp://www.chaos.dk/sexriddle/t/z/p/b/b/\nhttp://www.brio.de/BRIO.catalog/39fe2f4106ca8ce0273fd472aa7806ff/UserTemplate/6\nhttp://link.fastpartner.com/do/session/600352/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/robinhus.php\nhttp://link.fastpartner.com/do/session/600352/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/index.php\nhttp://www.underground-online.com/companyfinder/filters/products/0,9996,1793-101,00.html\nhttp://mediate.magicbutton.net/do/session/625588/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/viewer.cfm\nhttp://aol.digitalcity.com/houston/recreation/event.dci?eid=6452\nhttp://www.linux.com.hk/mirror/ldp/LDP/LG/issue10/lg_bytes10.html\nhttp://www.linux.com.hk/mirror/ldp/LDP/LG/issue10/issue10.txt\nhttp://www.beauty.net.cn/main/japanese/mie.htm\nhttp://www.allgemeine-immobilien-boerse.de/kanada/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Ferien-IB/Startseite/Private-IB/Startseite/Default.htm\nhttp://www.kodak.co.uk/US/en/corp/store/catalog/Product.jhtml?PRODID=2113&CATID=2234\nhttp://opac.lib.ntnu.edu.tw/search*chi/f373+017/f373+017/-5,-1,,B/browse\nhttp://ftp.du.se/disk3/mandrake/7.1/Mandrake/mdkinst/etc/pcmcia/?M=A\nhttp://www.teenplatinum.com/barelylegal/anal-sexass/taismall/almond-skinned/{gaylink}\nhttp://194.128.65.4/pa/cm199697/cmhansrd/vo970318/debtext/70318-11.htm\nhttp://netlondon.hotelbook.com/live/photos/19368\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/folderFrame/100205/0/author/1243894\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,login/discussion_id,2/xid,5474/yid,3022999\nhttp://polygraph.ircache.net:8181/environment_energy/heritage/http_-2www.apache.org/\nhttp://plat.debian.or.jp/debian/dists/unstable/main/binary-alpha/math/?D=A\nhttp://home.hiwaay.net/~bjacobs/genealogy/laster/html/d0054/g0000038.html\nhttp://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1005/www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1037/www.northampton.ac.uk/lrs/Information/refword.html\nhttp://ustlib.ust.hk/search*chi/cPL1275+.F426+1991/cpl+1275+f426+1991/-5,1,1,E/frameset&F=cpl+1273+y36+1982&1,1,\nhttp://stormix.com/en/resources/packages/tex/devel/debmake\nhttp://stormix.com/en/resources/packages/tex/devel/doc++\nhttp://stormix.com/en/resources/packages/tex/devel/ftnchek\nhttp://stormix.com/en/resources/packages/tex/devel/libnet0-dev\nhttp://stormix.com/en/resources/packages/tex/devel/libobgtk-dev\nhttp://stormix.com/en/resources/packages/tex/devel/netatalk-dev\nhttp://stormix.com/en/resources/packages/tex/devel/pact-base\nhttp://stormix.com/en/resources/packages/tex/devel/scalapack1-mpich\nhttp://members.tripod.co.jp/sugisaka/?M=A\nhttp://www.szinfo.com/book/wai/no/fa/h/hongyuhei/011.htm\nhttp://www.szinfo.com/book/wai/no/fa/h/hongyuhei/054.htm\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/listUnseen/fol/100205/20,0/1230074\nhttp://www.crutchfield.com/cgi-bin/S-p5rPnwuC0SA/Auto.asp\nhttp://www.abb.co.uk/global/seapr/SEAPR035.NSF/viewUNID/f79b6db19a951ce0c125697300319a41!OpenDocument&ExpandSection=6,4,8,5\nhttp://freebsd.ntu.edu.tw/perl/authors/id/A/AO/AOCINAR/?S=A\nhttp://www.gaymencam.com/elke.html\nhttp://www.linux.com/networking/network/industry/new/web_server/website/\nhttp://www.tccomputers.com/cgi-bin/bp/1899758621/products/removeabledrives/removeabledrives.htm\nhttp://www.tccomputers.com/cgi-bin/bp/1899758621/store/showcart.html\nhttp://www.highwired.net/Guidance/Section/0,1860,1779-27626,00.html\nhttp://gd.cnread.net/cnread1/net/zpj/r/repinsky/005.htm\nhttp://www.amateurplatinum.com/tubal-ligationmilk/pregnanttubal-ligation/off-the-ragnipples/jizz-dribbling-cumshotscumming/{amateurlink}\nhttp://home.dqt.com.cn/~why/wenzhang/ckpajq/.htm\nhttp://ftp.fi.debian.org/debian/dists/woody/non-free/binary-all/doc/?D=A\nhttp://www.linux.com/networking/network/website/hardware/howto/Linuxcare/\nhttp://www.linux.com/networking/network/website/hardware/howto/sales/\nhttp://shn.webmd.com/printing/asset/adam_imagepage_8626\nhttp://www.geocities.co.jp/Outdoors/2127/bangai_makuyama.html\nhttp://www2.to/souhey\nhttp://www.hotelboulevard.com/fr/paris/standard/html73b90b9d262d517e98c9d779b3b09b7a/sessionLang/ANG/prov/browse/cp/75017/resultatSearch.html\nhttp://perso.wanadoo.fr/olivier.leieber/page22.html\nhttp://www.computer-networking.de/studenten/dv_labor/onlinebuecher/apache/sections.html\nhttp://saejong.pufs.ac.kr/~cilim/homepage/link.html\nhttp://cafe3.daum.net/Cafe-bin/Bbs.cgi/hopepds/qry/zka/B2-kCYFp/qqatt/^\nhttp://www3.newstimes.com/archive99/jun1899/lch.htm\nhttp://www.7thlevel.com/python/cwot/demo/\nhttp://www.paidmania.com/getpaid/signup/100/4632\nhttp://yp.gates96.com/12/14/0/31.html\nhttp://yp.gates96.com/12/14/0/43.html\nhttp://yp.gates96.com/12/14/0/60.html\nhttp://yp.gates96.com/12/14/1/18.html\nhttp://yp.gates96.com/12/14/1/44.html\nhttp://yp.gates96.com/12/14/1/64.html\nhttp://yp.gates96.com/12/14/1/82.html\nhttp://yp.gates96.com/12/14/2/84.html\nhttp://yp.gates96.com/12/14/3/61.html\nhttp://yp.gates96.com/12/14/4/65.html\nhttp://yp.gates96.com/12/14/5/24.html\nhttp://yp.gates96.com/12/14/5/49.html\nhttp://yp.gates96.com/12/14/5/60.html\nhttp://yp.gates96.com/12/14/5/62.html\nhttp://yp.gates96.com/12/14/6/20.html\nhttp://yp.gates96.com/12/14/6/51.html\nhttp://yp.gates96.com/12/14/7/28.html\nhttp://yp.gates96.com/12/14/7/85.html\nhttp://yp.gates96.com/12/14/7/93.html\nhttp://planet.gaiax.com/home/kito/main\nhttp://www.svt.se/falun/packat/program/603/images/1rep/?D=A\nhttp://volunteersolutions.org/swt/volunteer/opp/one_151124_printer_detailed.html\nhttp://fyi.cnn.com/ASIANOW/asiaweek/97/1003/nat1.html\nhttp://www.farhi.org/ps09/ps09_233.htm\nhttp://yp.gates96.com/6/8/30/27.html\nhttp://biz.yahoo.com/apf/000929/tire_death_7.html\nhttp://www.studentadvantage.gamers.com/game/135583\nhttp://www.studentadvantage.gamers.com/game/45759\nhttp://yp.gates96.com/6/8/30/44.html\nhttp://yp.gates96.com/6/8/30/50.html\nhttp://yp.gates96.com/6/8/30/72.html\nhttp://yp.gates96.com/6/8/30/86.html\nhttp://yp.gates96.com/6/8/30/89.html\nhttp://yp.gates96.com/6/8/31/78.html\nhttp://yp.gates96.com/6/8/31/88.html\nhttp://yp.gates96.com/6/8/32/3.html\nhttp://yp.gates96.com/6/8/32/24.html\nhttp://yp.gates96.com/6/8/32/34.html\nhttp://yp.gates96.com/6/8/33/14.html\nhttp://yp.gates96.com/6/8/33/42.html\nhttp://yp.gates96.com/6/8/33/75.html\nhttp://yp.gates96.com/6/8/34/32.html\nhttp://yp.gates96.com/6/8/34/97.html\nhttp://yp.gates96.com/6/8/35/53.html\nhttp://yp.gates96.com/6/8/35/98.html\nhttp://yp.gates96.com/6/8/36/74.html\nhttp://yp.gates96.com/6/8/36/99.html\nhttp://yp.gates96.com/6/8/38/92.html\nhttp://yp.gates96.com/6/8/38/97.html\nhttp://yp.gates96.com/6/8/39/45.html\nhttp://yp.gates96.com/6/8/39/69.html\nhttp://tour.stanford.edu/tour/29.0/gMlPb\nhttp://idl.tucows.com/winme/adnload/138396_30343.html\nhttp://idl.tucows.com/winme/adnload/138395_29743.html\nhttp://web.singnet.com.sg/~tay7012i/family.htm\nhttp://www.chaos.dk/sexriddle/p/f/g/j/o/\nhttp://lcweb2.loc.gov/ll/llnt/070/?S=A\nhttp://lcweb2.loc.gov/ll/llnt/070/0100/\nhttp://www.crosswinds.net/~lucifern/\nhttp://pub14.ezboard.com/fblazinofdablazinestdabattledome.subscribeUnregisteredToTopic?topicID=190.topic\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/quizz/programs/unlambda/misc/peanuts.html\nhttp://members.se.tripod.de/svdata/inglis/sida2.htm\nhttp://www.fogdog.com/cedroID/ssd3040183217284/crs/hp/nav/stores/golf/\nhttp://198.103.152.100/search*frc/tOperations+guide+to+ZIM/toperations+guide+to+zim/-17,-1,0,E/2browse\nhttp://herndon1.sdrdc.com/cgi-bin/com_detail/C00186353\nhttp://www.j2ee.com/products/javamail/javadocs/javax/mail/Flags.html\nhttp://www.j2ee.com/products/javamail/javadocs/javax/mail/Header.html\nhttp://www.intellicast.com/Sail/World/UnitedStates/FourCorners/Arizona/LakeMeadCanyon/LocalWinds/d1_18/\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?guill::871.html\nhttp://in.egroups.com/message/ucc-medicine/9\nhttp://in.egroups.com/message/ucc-medicine/14\nhttp://www-uk3.cricket.org/link_to_database/PLAYERS/WOMEN/AUS/WILSON_B_02011221/index.NSW-WOMEN.html\nhttp://ftp.du.se/disk4/FreeBSD/FreeBSD-current/www/ja/releases/?M=A\nhttp://www.citythek.de/koeln/eduscho/fsinhalt.htm\nhttp://198.103.152.100/search*frc/cCA1+MPY30+97C31/cca1+mpy30+97c31/-5,-1,,E/browse\nhttp://ftp.nsysu.edu.tw/Linux/RedHat/doc/en/HOWTOS/localization/Serbian/?N=D\nhttp://mk158.tripod.co.jp/old/praga1/do/bio.html\nhttp://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=FOOTER/AAMSZ=468x60/ACC_RANDOM=449975866078\nhttp://members.tripod.co.jp/Primrose/honeydcolumn3.html\nhttp://911codes.com/games/platform/n64/sect/div/cont/list_cheat/spray/y/id/0000009564/gid/0000003291/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/\nhttp://iqseek.shop.goto.com/compperiph/monfol/mon/search/detail.jhtml?MANUF=ViewSonic&MODEL=E790\nhttp://iqseek.shop.goto.com/compperiph/monfol/mon/search/detail.jhtml?MANUF=ViewSonic&MODEL=GA655\nhttp://plat.debian.or.jp/debian/dists/stable/main/binary-powerpc/shells/?M=A\nhttp://retailer.gocollect.com/do/session/1912686/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp\nhttp://vvv.geocities.co.jp/Playtown-Yoyo/5287/\nhttp://vvv.geocities.co.jp/Playtown-Yoyo/5714/\nhttp://vvv.geocities.co.jp/Playtown-Yoyo/5750/\nhttp://genforum.genealogy.com/cgi-genforum/forums/charpia.cgi?3\nhttp://www.amateurplatinum.com/tubal-ligationmilk/plus-sizecoushin-for-the-pushin/best-friendsjail-bait/vietnamese/ac/dclubrication/bisexualelbow-grease.html\nhttp://library.bangor.ac.uk/search/tContemporary+psychology+series/tcontemporary+psychology+series/-17,-1,0,B/2exact&F=tcontemporary+problems+in+geography&1,4\nhttp://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/calreco/VERSION?only_with_tag=p05-br\nhttp://www.158china.com/news/2000/08/21/52747.htm\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031009.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031106.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031208.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031507.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx032406.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx032902.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx041501.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx041611.txt\nhttp://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx1.txt\nhttp://wuarchive.wustl.edu/edu/math/software/multi-platform/SLATEC/G/G2/G2H/G2H2/sbols/\nhttp://www.loststars.net/story4/ab200-2.html\nhttp://www.indian-express.com/ie/daily/19981219/35350564.html\nhttp://www.indian-express.com/ie/daily/19981219/35351234.html\nhttp://www.homestead.com/jennyb/pets.html\nhttp://www.allgemeine-immobilien-boerse.de/kanada/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Versteigerungen-IB/Startseite/Gemeinsam/suche.htm\nhttp://www.sankei.co.jp/databox/paper/9808/06/paper/today/sports/soccer/06soc002.htm\nhttp://rex.skyline.net/navigate.cgi?history,collectibles,recreation,sculpture,arts\nhttp://tjohoo.se/sport/snowboard/2.php3\nhttp://www.du-et.net/prof/n/nkaworu.html\nhttp://www.iwon.com/home/movies/movies_summary_page/0,13160,383543,00.html\nhttp://www.iwon.com/home/movies/movies_summary_page/0,13160,481885,00.html\nhttp://www.iwon.com/home/movies/movies_summary_page/0,13160,372508,00.html\nhttp://pub13.ezboard.com/fvisualbasicexplorergettingstarted.emailToFriend?topicID=861.topic\nhttp://www.fogdog.com/cedroID/ssd3040183158417/customer_service/\nhttp://www.fogdog.com/cedroID/ssd3040183158417/cgi-bin/CedroCommerce?func=EditBasket\nhttp://www.fogdog.com/cedroID/ssd3040183158417/nav/products/cycling/1y/software/\nhttp://www.niwl.se/wais/new/28/28189.htm\nhttp://retailer.gocollect.com/do/session/1912674/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2R/A2U/B3R/A1U/Resign/\nhttp://www.sofitware.com/books/sci05/0471969664.html\nhttp://www.genome.wustl.edu:8021/gsc1/est/zebrafish_reports/old_rank_reports/zebrafish.rank.990322\nhttp://www.genome.wustl.edu:8021/gsc1/est/zebrafish_reports/old_rank_reports/zebrafish.rank.991004\nhttp://www.farhi.org/ps01/ps01_015.htm\nhttp://www-usa10.cricket.org/link_to_database/ARCHIVE/WORLD_CUPS/WC99/STATS/BY_TEAM/SL/WC99_BOWL_BEST_INNS_SR_SL.html\nhttp://www.online.kokusai.co.jp/Stock_corner/V0043480/wrd/G500/stock_corner/stock_corner.html\nhttp://www.online.kokusai.co.jp/Mmf_corner/V0043480/mmf_corner/mmf_corner/url\nhttp://mediate.magicbutton.net/do/session/625604/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cust.html\nhttp://www.malaysia.net/lists/sangkancil/1999-05/frm00449.html\nhttp://www.bigstar.com/contest/index.cfm/4ae093fg371d8ddg3?fa=contest\nhttp://www.bigstar.com/tv/index.cfm/4ae093fg371d8ddg3\nhttp://linux.tucows.dia.dk/gnomehtml/adnload/49933_5879.html\nhttp://dc.web.aol.com/roanoke/health/directories.dci?type=professionals\nhttp://dc.web.aol.com/roanoke/health/categories.dci?category=fitnessdiet\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux/drivers/isdn/icn/Makefile?only_with_tag=davem-cvs-merge\nhttp://dennou-h.gfd-dennou.org/arch/cc-env.old/db/?M=A\nhttp://www.envy.nu/wildcats/gare.html\nhttp://www.envy.nu/wildcats/horst.html\nhttp://www.linux.com/networking/network/release/performance/updates/Netscape/\nhttp://ftpsearch.belnet.be/pub/os/linux/Linux-sunsite.unc/distributions/ultra/Users-Guide/?S=A\nhttp://www.chaos.dk/sexriddle/n/f/p/g/a/\nhttp://pub24.ezboard.com/fphilosophersstonefrm7.showAddTopicScreenFromWeb\nhttp://pub24.ezboard.com/fphilosophersstonefrm7.showMessage?topicID=10.topic\nhttp://www.yorosiku.net:8080/-_-http://www2.biglobe.ne.jp/~animenet/jan222/note/bbs2.html\nhttp://www.web-chart.com/Detail.htm?s=2568&c=229\nhttp://www.brio.de/BRIO.catalog/39fe2f5009021d362740d472aa780645/UserTemplate/8\nhttp://www.service911.com/egghead/step/0,2743,10+55+157+24348+17295_2,00.html\nhttp://home.pchome.com.tw/computer/judy7777/fast-7.htm\nhttp://big5.peopledaily.com.cn/zdxw/11/20000126/200001261111.html\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31792/lst/qqo/012D\nhttp://sunsite.org.uk/public/usenet/news-faqs/alt.answers/paranormal/faq\nhttp://newsone.net/nnr/listl/alt.bbs.elebbs/1\nhttp://ourworld.compuserve.com/homepages/hallg/mg_vor.htm\nhttp://www.world001.com/forum/yue/1573.html\nhttp://www.greenleaves.com/bookcat/gb_1567112730.html\nhttp://quotidiano.monrif.net/chan/motori:1119539:/2000/10/30:\nhttp://quotidiano.monrif.net/chan/motori:926303:/2000/10/30:\nhttp://quotidiano.monrif.net/chan/motori:944719:/2000/10/30:\nhttp://home.online.tj.cn/~madgoe/subtitle/nt/nt363.htm\nhttp://home.online.tj.cn/~madgoe/subtitle/nt/nt352.htm\nhttp://home.online.tj.cn/~madgoe/subtitle/nt/nt343.htm\nhttp://home.online.tj.cn/~madgoe/subtitle/nt/nt327.htm\nhttp://home.online.tj.cn/~madgoe/subtitle/nt/nt320.htm\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vincze\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=ving\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vinrye\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vinzy\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=violinist\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=Violin\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=vione\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=viper0669\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/1.html?embed=-1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/6.html?outline=1&embed=1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/9.html?outline=-1&embed=1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/20.html?outline=3&embed=1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/21.html?outline=-1&embed=1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/23.html?outline=1&embed=1\nhttp://www.missouri.edu/HyperNews/get/writery/poetry/38.html?outline=1&embed=1\nhttp://fi.egroups.com/messages/Avon3DayBoston/5\nhttp://www.online.kokusai.co.jp/Demo/V0043481/wrd/G400/demo/\nhttp://www.jamba.de/KNet/_KNet-TQt8j1-PEd-139qr/showInfo-werbung.de/node.0/cde7f1uou\nhttp://computalynx.tucows.com/winnt/adnload/73435_29524.html\nhttp://www.intellicast.com/Golf/World/UnitedStates/Northwest/Oregon/OregonDunes/THUNDERcast/d2_06/\nhttp://202.105.55.146/h0/news/200009/20/jty7.htm\nhttp://pda.tucows.edisontel.com/newton/newtsfiction_size.html\nhttp://pda.tucows.edisontel.com/newton/adnload/33238_19961.html\nhttp://hem.fyristorg.com/lottaleman/LLfar/1_2942.htm\nhttp://www.norrblom.com/..\\hund\\1996\\s2665496.htm\nhttp://www.ferien-immobilien.de/niedersachsen/weserbergland/Verkauf/Gemeinsam/MarketingStrategie/Allgemeine-IB/Gemeinsam/Super-Zins-Konditionen/Private-IB/Startseite/Default.htm\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=14,18,11,9,15,8\nhttp://dennou-h.gfd-dennou.org/arch/cc-env.old/xtop/TEBIKI.top.rs590\nhttp://www.amzn.com/exec/obidos/search-handle-url/index=vhs&field-director=Jim%20Stenstrum/\nhttp://www.amzn.com/exec/obidos/tg/browse/-/169237/\nhttp://www.flora.org/flora.oclug/old-6088\nhttp://www.msn.expedia.co.uk/wg/Images/P24601.htm\nhttp://www.asahi-net.or.jp/~ei2h-kdu/photos/rail/sanin/amarube3.html\nhttp://au.yahoo.com/Business_and_Economy/Shopping_and_Services/Health/Providers/By_Region/U_S__States/Montana/Complete_List/\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,118,Electric+Wave+Girl+1998.html\nhttp://www.hig.se/(accessed,formoutput,referrer,smallcaps,sqlquery)/~jackson/roxen/\nhttp://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=VAC\nhttp://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=GAA\nhttp://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=AAB\nhttp://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=AAF\nhttp://newnova.tucows.com/preview/60922.html\nhttp://www-d0.fnal.gov/d0dist/dist/releases/test/l3fsmtcluster/rcp/?S=A\nhttp://www.cs.rit.edu/~ats/inferno/man/html/proto8.htm\nhttp://dandini.cranfield.ac.uk/vl=-39835473/cl=140/nw=1/rpsv/cw/web/nw1/browse.htm\nhttp://homepage.mac.com/nanameneko/job/architecture-oriented/OHP/Why/why_05.html\nhttp://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/CaribbeanStud/?M=A\nhttp://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/CaribbeanStud/distinfo\nhttp://ads3.zdnet.com/c/g=r734&c=a53975&idx=2000.10.30.21.30.24/www.zdnet.com/downloads/stories/info/0,,000FDG,.html\nhttp://yp.gates96.com/6/57/80/89.html\nhttp://yp.gates96.com/6/57/81/42.html\nhttp://yp.gates96.com/6/57/81/66.html\nhttp://yp.gates96.com/6/57/82/16.html\nhttp://yp.gates96.com/6/57/82/61.html\nhttp://yp.gates96.com/6/57/83/37.html\nhttp://yp.gates96.com/6/57/83/54.html\nhttp://yp.gates96.com/6/57/84/14.html\nhttp://yp.gates96.com/6/57/85/7.html\nhttp://yp.gates96.com/6/57/85/24.html\nhttp://yp.gates96.com/6/57/85/35.html\nhttp://yp.gates96.com/6/57/85/64.html\nhttp://yp.gates96.com/6/57/86/80.html\nhttp://yp.gates96.com/6/57/86/96.html\nhttp://yp.gates96.com/6/57/87/15.html\nhttp://yp.gates96.com/6/57/89/2.html\nhttp://yp.gates96.com/6/57/89/95.html\nhttp://www.oncology.com/v2_MainFrame/1,1614,_12|00332|00_21|002|00_04|0039|00_38|00188,00.html\nhttp://library.bangor.ac.uk/search/aEllis,+Gail/aellis+gail/-5,-1,0,B/exact&F=aellis+griffith+1844+1913&1,9\nhttp://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-2/debian/dists/unstable/contrib/source/mail/?S=A\nhttp://itcareers.careercast.com/texis/it/itjs/+SwwBmeYKD86e8hwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhPndhBiwGna5O5BnManDtoDnnGamn5otDamnVncdpaGnwcaBoMnaoDhdGMwBodDaDnBidGAanLpnGonDqnaMFqhTfR20Dzme4twwwpBmex_D86ejxwww5rme6dwwwBrmeZpwww/morelike.html\nhttp://esatnet.tucows.com/winnt/adnload/31316_29136.html\nhttp://home.c2i.net/w-225961/steinare/brosjyre.htm\nhttp://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/FIND-ACC/0860271\nhttp://www.chaos.dk/sexriddle/v/c/w/d/r/\nhttp://www9.hmv.co.uk:5555/do/session/1347760/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d135_sd0_pt0.html\nhttp://tagesanzeiger.ch/archiv/99november/991122/79295.HTM\nhttp://www.pacifictech.com.cn/pcsoftware/sj/jq/00803.htm\nhttp://www.pacifictech.com.cn/pcsoftware/sj/jq/00430b.htm\nhttp://www.pacifictech.com.cn/pcsoftware/zl/syjq/dmtgj/old/tuxing/3d/20000131.html\nhttp://www.building.com/communities/texis/db/go/+DexVFdeKmYnwrmwxerJOwrmwx3exmww/profile.html\nhttp://my.egroups.com/message/mathies/43?source=1\nhttp://www.brio.de/BRIO.catalog/39fe2f5706df064c273fd472aa78067c/UserTemplate/6\nhttp://www.brio.de/BRIO.catalog/39fe2f5706df064c273fd472aa78067c/UserTemplate/9\nhttp://www.egroups.com/messages/GollyBeenz/44\nhttp://www.buybuddy.com/sleuth/15/1/1020507/495848/\nhttp://www.brio.de/BRIO.catalog/39fe2f41010c308a2742d472aa7806a7/UserTemplate/5\nhttp://www.ferien-immobilien.de/hessen/bad-hersfeld/Verkauf/IIM-Teil/Startseite/Private-IB/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm\nhttp://www.ferien-immobilien.de/hessen/bad-hersfeld/Verkauf/IIM-Teil/Startseite/Private-IB/Allgemeine-IB/Gemeinsam/impressum.htm\nhttp://beetle.marion.ohio-state.edu/Bratt2000/D0029/I10769.html\nhttp://members.tripod.lycos.co.kr/RAINBOR/?D=A\nhttp://www.eos.ncsu.edu/eos/info/bae/bae324_info/\nhttp://www.chez.com/mousis/vg/aqui/pages/0006.htm\nhttp://search.chollian.net/cgi-bin/filter.cgi?cid=2052&p=1\nhttp://channel.nytimes.com/1998/03/15/technology/cybertimes/eurobytes/\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=13,4,2,7,11\nhttp://uk.dir.yahoo.com/Regional/Countries/Mexico/States/Baja_California/Cities/Ensenada/Travel_and_Transportation/Accommodation/Caravan_Parks_and_Campgrounds/\nhttp://ring.toyama-ix.net/archives/mac/info-mac/inet/_Mail/_Eudora/\nhttp://sport.voila.fr/it/calcio/euro2000/teams/por/squad/nunogomes.html\nhttp://idefix-41.cs.kuleuven.ac.be/~henk/DPS/\nhttp://library.bangor.ac.uk/search/dLaw+--+Study+and+teaching+--+Great+Britain/dlaw+study+and+teaching+great+britain/-5,-1,0,B/buttonframe&F=dlaw+study+and+teaching+great+britain&7,,7\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959440822/Catalog/1000002\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959440822/Catalog/1000062\nhttp://ring.shibaura-it.ac.jp/archives/FreeBSD-PC98/dists/4.0-RELEASE/XF86336/PC98-Servers/?N=D\nhttp://www.uq.edu.au/site-index/index.phtml?site_tree_data=1,91,95,203,338,344,2,6,182,148\nhttp://www.uq.edu.au/site-index/index.phtml?site_tree_data=1,91,95,203,338,344,2,6,182,163\nhttp://www.xmission.com/(apocalypse,art,caffiene,geek,misc,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,people,places,shopping,stuffiuse,toys)/~bill/links.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=confinarias&l=pt\nhttp://www.xmission.com/(apocalypse,art,caffiene,cuseeme,geek,misc,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,privacy,stuffiuse,toys)/~bill/links.html\nhttp://www.gigclub.co.jp/tanigawa/tanigawa/980915/menu.html\nhttp://www.3w-sciencefiction.de/SmithWilliamK/SmithWilliamK0126528756.htm\nhttp://w3c1.inria.fr/Mobile/posdep/Presentations/Mogid/sld014.htm\nhttp://members.tripod.co.jp/view_i/p.html\nhttp://202.99.23.245/zdxw/11/20000317/200003171117.html\nhttp://www.jpc-music.com/7334085.htm\nhttp://library.bangor.ac.uk/search/aLibrary+Association/alibrary+association/-5,-1,0,B/buttonframe&F=alibrary+association&2,,64\nhttp://www.sf.digitalcity.com/puntagordafl/sports/team.dci?league=FSL&team=CHA\nhttp://www.sf.digitalcity.com/puntagordafl/sports/team.dci?league=FSL&team=LAK\nhttp://brain.brent.gov.uk/__802564ff0045d739.nsf/vWebAllPagesByLocsSrvd!OpenView&Start=33&Count=60&Collapse=45\nhttp://www.nypost.com/news/933.htm\nhttp://www.nypost.com/business/979.htm\nhttp://www.nypost.com/living/951.htm\nhttp://www.computer-networking.de/studenten/cn_intern/bauer/jobst/k07-graphik-gui/controls/swing/\nhttp://194.55.30.33/albanian/tema_gjermane/67823.html\nhttp://194.55.30.33/albanian/tema_gjermane/65962.html\nhttp://yp.gates96.com/14/85/10/12.html\nhttp://yp.gates96.com/14/85/11/98.html\nhttp://yp.gates96.com/14/85/12/24.html\nhttp://yp.gates96.com/14/85/13/57.html\nhttp://yp.gates96.com/14/85/14/92.html\nhttp://yp.gates96.com/14/85/16/37.html\nhttp://yp.gates96.com/14/85/16/51.html\nhttp://yp.gates96.com/14/85/16/78.html\nhttp://yp.gates96.com/14/85/17/38.html\nhttp://yp.gates96.com/14/85/17/48.html\nhttp://yp.gates96.com/14/85/17/91.html\nhttp://yp.gates96.com/14/85/19/35.html\nhttp://yp.gates96.com/14/85/19/88.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/deppen.cgi?3\nhttp://www.ferien-immobilien.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/Private-IB/Startseite/Gemeinsam/Inserieren/Versteigerungen-IB/Startseite/Ferien-IB/Startseite/\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/51800\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/53510\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/52600\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/50510\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/50400\nhttp://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/http_-2www.netscape.com/download/http_-2www.microsoft.com/ie/http_-2207.91.150.20/http_-2www.updowntowner.org/julyjamm/headliners.html\nhttp://www.ccurrents.com/magazine/national/1702/nets31702.html\nhttp://adept.subportal.com/sn/Themes/Vehicle_Themes/5090.html\nhttp://www.fogdog.com/cedroID/ssd3040183211390/nav/products/outlet/1a/fishing/\nhttp://www.linux.com/networking/network/communications/article/unix/sales/\nhttp://fyi.cnn.com/content/US/9902/25/germans.death.penalty.ap/\nhttp://fyi.cnn.com/US/9902/09/monk.execute.ap.02/\nhttp://fyi.cnn.com/WORLD/asiapcf/9902/06/PM-Philippines-DeathPena.ap/\nhttp://pub11.ezboard.com/ucivik.showPublicProfile\nhttp://playboy.software.net/PKIN005896/prod.htm\nhttp://www.linux.com/networking/network/help/free/performance/install/\nhttp://www.linux.com/networking/network/help/free/performance/X/\nhttp://se.egroups.com/message/ghost_tales/1490\nhttp://niteowl.userfriendly.net/linux/RPM/rawhide/1.0/i386/usr_src_linux-2.4.0_include_Tree.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=coexistissem&l=pt\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/21_HADM.HTM\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/25_HADM.HTM\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/86_HADM.HTM\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/88_HADM.HTM\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/90_HADM.HTM\nhttp://promed.univ-rennes1.fr/cerf/ico_an/IDRE/HADM6.HTM\nhttp://www.estrelladigital.es/000814/articulos/economia/correos.htm\nhttp://itcareers.careercast.com/texis/it/itjs/+awwBme4CD86LxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewPPnBwpcnaqdGpdGwBnaoDhdGMwBodDahoDma5BdGnaq15BdMnGa5nGVoqnaqdDBwqBamo5BGox1BodDaMwDwtnMnDBaMFqrIRE7P0IDzme_xwwwpBmHe0B-deaqwww5rmsmwwBrme7Dwww/morelike.html\nhttp://yp.gates96.com/3/79/50/30.html\nhttp://yp.gates96.com/3/79/50/54.html\nhttp://yp.gates96.com/3/79/51/1.html\nhttp://yp.gates96.com/3/79/51/11.html\nhttp://yp.gates96.com/3/79/51/80.html\nhttp://yp.gates96.com/3/79/52/27.html\nhttp://yp.gates96.com/3/79/52/81.html\nhttp://yp.gates96.com/3/79/53/81.html\nhttp://yp.gates96.com/3/79/54/0.html\nhttp://yp.gates96.com/3/79/54/31.html\nhttp://yp.gates96.com/3/79/55/74.html\nhttp://yp.gates96.com/3/79/55/78.html\nhttp://yp.gates96.com/3/79/56/72.html\nhttp://yp.gates96.com/3/79/57/0.html\nhttp://yp.gates96.com/3/79/58/27.html\nhttp://yp.gates96.com/3/79/58/31.html\nhttp://yp.gates96.com/3/79/58/48.html\nhttp://yp.gates96.com/3/79/58/76.html\nhttp://yp.gates96.com/3/79/58/99.html\nhttp://yp.gates96.com/3/79/59/27.html\nhttp://yp.gates96.com/3/79/59/32.html\nhttp://yp.gates96.com/3/79/59/49.html\nhttp://yp.gates96.com/3/79/59/81.html\nhttp://yp.gates96.com/3/79/59/83.html\nhttp://startribune.atevo.com/misc/print_article/0,3869,4504302,00.html\nhttp://browse.carnaby.com/home/showcase/6/381/2078/A0638120780000EA01.html\nhttp://www.checkout.com/music/earmail/form/1,7650,325272-1761567,00.html\nhttp://ring.shibaura-it.ac.jp/archives/doc/jpnic/minutes/committee/200007/shiryou-4-1.txt\nhttp://www.secinfo.com/d1ZMQs.51h.htm\nhttp://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/AtlantisPBEM/CVSROOT/modules?only_with_tag=MAIN\nhttp://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/AtlantisPBEM/CVSROOT/modules?only_with_tag=HEAD\nhttp://ftp.bitcon.no/tucows/adnload/4961_28325.html\nhttp://yp.gates96.com/3/37/0/21.html\nhttp://yp.gates96.com/3/37/0/29.html\nhttp://yp.gates96.com/3/37/0/80.html\nhttp://yp.gates96.com/3/37/0/87.html\nhttp://yp.gates96.com/3/37/1/9.html\nhttp://yp.gates96.com/3/37/2/83.html\nhttp://yp.gates96.com/3/37/2/92.html\nhttp://yp.gates96.com/3/37/3/26.html\nhttp://yp.gates96.com/3/37/4/9.html\nhttp://yp.gates96.com/3/37/4/29.html\nhttp://yp.gates96.com/3/37/5/31.html\nhttp://yp.gates96.com/3/37/5/49.html\nhttp://yp.gates96.com/3/37/5/51.html\nhttp://yp.gates96.com/3/37/5/63.html\nhttp://yp.gates96.com/3/37/5/95.html\nhttp://yp.gates96.com/3/37/6/0.html\nhttp://yp.gates96.com/3/37/6/4.html\nhttp://yp.gates96.com/3/37/7/22.html\nhttp://yp.gates96.com/3/37/8/10.html\nhttp://yp.gates96.com/3/37/8/50.html\nhttp://yp.gates96.com/3/37/8/92.html\nhttp://yp.gates96.com/3/37/9/46.html\nhttp://ftp.digex.net/debian/dists/woody/contrib/binary-sh/libs/?N=D\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=4,15,12,16\nhttp://in.egroups.com/group/bbw-uk\nhttp://home.swipnet.se/~w-20817/\nhttp://shop.puretec.de/kunden/19867293/detailansicht_Aku1025B.html\nhttp://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Sommerliche_Gemusegerichte/sommerliche_gemusegerichte_2.html\nhttp://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Kohl/kohl_4.html\nhttp://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Kohl/kohl_11.html\nhttp://www.chinainvest.com.cn/C/Showdetail/20359.html\nhttp://tucows.sp-plus.nl/winme/preview/141310.html\nhttp://www.al-hujjat.grid9.net/gnomehtml/ent_enhance_rating.html\nhttp://www.warmbloods.net/breeding/_vti_bin/shtml.dll/disc123_post.htm?1260\nhttp://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/net/ruby-snmp/Makefile\nhttp://basil.cs.uwp.edu/Documentation/java/jdk/docs/guide/sound/prog_guide/chapter3.fm.html\nhttp://tucows.1web.it/winme/preview/75525.html\nhttp://uk-wire.ukinvest.com/articles/200009180701200586R.html\nhttp://www.ozon.ru/detail.cfm/ent=33&id=953&add2navigator=1&txt=1\nhttp://cometweb01.comet.co.uk/do!session=131984&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1\nhttp://community.webshots.com/photo/3922869/3923445TSuTSQIWpD\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959447434/Catalog/1000040\nhttp://www.tvstore.com/browse/TV/NIGHTSHI/s.nXZNPRgQ\nhttp://www.tvstore.com/browse/TV/COMIC/s.nXZNPRgQ\nhttp://www.xmwb.sh.cn/xmwb/19981016/GB/13389^8101623.htm\nhttp://helios.nlib.ee/search*est/tThe+threshold+series/tthreshold+series/-5,-1,0,B/frameset&F=tthrillers&1,1\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=23,9,7,18\nhttp://ftp.bitcon.no/pub/windowsce/epoc/desktop5.htm\nhttp://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Multicast-HOWTO/t1595.html\nhttp://ftp.rge.com/pub/X/XFree86/3.3.3.1/untarred/xc/programs/Xserver/\nhttp://ftp.rge.com/pub/X/XFree86/3.3.3.1/untarred/xc/programs/xwud/\nhttp://syix.tucows.com/win2k/adnload/73370_29328.html\nhttp://yp.gates96.com/0/54/80/40.html\nhttp://yp.gates96.com/0/54/80/56.html\nhttp://yp.gates96.com/0/54/80/61.html\nhttp://yp.gates96.com/0/54/80/79.html\nhttp://yp.gates96.com/0/54/81/11.html\nhttp://yp.gates96.com/0/54/81/25.html\nhttp://yp.gates96.com/0/54/81/58.html\nhttp://yp.gates96.com/0/54/82/48.html\nhttp://yp.gates96.com/0/54/82/75.html\nhttp://yp.gates96.com/0/54/83/0.html\nhttp://yp.gates96.com/0/54/84/12.html\nhttp://yp.gates96.com/0/54/84/67.html\nhttp://yp.gates96.com/0/54/85/47.html\nhttp://yp.gates96.com/0/54/85/59.html\nhttp://yp.gates96.com/0/54/86/52.html\nhttp://yp.gates96.com/0/54/86/55.html\nhttp://yp.gates96.com/0/54/86/79.html\nhttp://yp.gates96.com/0/54/86/87.html\nhttp://yp.gates96.com/0/54/87/12.html\nhttp://yp.gates96.com/0/54/87/81.html\nhttp://yp.gates96.com/0/54/88/97.html\nhttp://yp.gates96.com/0/54/89/90.html\nhttp://www.yorosiku.net:8080/-_-http://liinwww.ira.uka.de/bibliography/Distributed/SIGCOMM.94.html\nhttp://news.pchome.com.tw/ftv/health/20000915/\nhttp://www.emis.de/journals/EJDE/Volumes/Volumes/Monographs/1998/05/?N=D\nhttp://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|5706|3|1|159040|photo_id|4022,00.html\nhttp://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|5706|3|1|159040|photo_id|4020,00.html\nhttp://lhcbsoft.web.cern.ch/LHCbSoft/simmuon/v1/mgr/CVS/Root\nhttp://tucows.soneraplaza.nl/winme/adnload/137454_28942.html\nhttp://www.borland.nl/techpubs/jbuilder/jbuilder3/ui/wclass.html\nhttp://fi.egroups.com/links/dssf\nhttp://www.homestead.com/jcv2000/MBoard.html\nhttp://careershop.resumeshotgun.com/directory/italy/sardegna/o.10.p.4408.html\nhttp://www.hantsnet.co.uk/istcclr/cch32751.html\nhttp://www.hantsnet.co.uk/istcclr/cch16729.html\nhttp://www.hantsnet.co.uk/istcclr/cch03788.html\nhttp://www.hantsnet.co.uk/istcclr/cch05491.html\nhttp://www.hantsnet.co.uk/istcclr/cchr0418.html\nhttp://www.hantsnet.co.uk/istcclr/cchh2289.html\nhttp://www.hantsnet.co.uk/istcclr/cchh2074.html\nhttp://www.hantsnet.co.uk/istcclr/cch30426.html\nhttp://www.hantsnet.co.uk/istcclr/cch11726.html\nhttp://www.hantsnet.co.uk/istcclr/cch03858.html\nhttp://www.hantsnet.co.uk/istcclr/cche0920.html\nhttp://www.hantsnet.co.uk/istcclr/cch34768.html\nhttp://www.hantsnet.co.uk/istcclr/cchc2067.html\nhttp://www.hantsnet.co.uk/istcclr/cche1085.html\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/53771000000443000000339400000065451/v2tvindex.wo/614720000055451/1.14/3/Webobjects1\nhttp://www.sternonline.de/magazin/fotogalerie/hinz/index5.html\nhttp://www.envy.nu/Sing.html\nhttp://employment.subportal.com/sn/Themes/\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7002120&area=&ID=483332\nhttp://wlink.tucows.com/winme/adnload/137847_29260.html\nhttp://tucows.computalynx.net/winnt/adnload/71633_28766.html\nhttp://ftp.up.pt/Linux/debian/dists/stable/main/disks-m68k/?M=A\nhttp://lcweb2.loc.gov/ll/llnt/009/0000/\nhttp://www.magma.ca/~denisd/africa/day02.html\nhttp://www.magma.ca/~denisd/africa/day16.html\nhttp://content.health.msn.com/message_board_author/802072\nhttp://ep.com/js/about/c0/189455\nhttp://ep.com/js/about/c0/154005\nhttp://www.realbig.com/miata/miata/1999-12/2340.html\nhttp://www.multimap.com/wi/33738.htm\nhttp://www.multimap.com/wi/148724.htm\nhttp://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/3d-service/Gemeinsam/versicherungen/lebensversicherung/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/MarketingStrategie/Strategie.htm\nhttp://link.fastpartner.com/do/session/600347/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm\nhttp://pub16.ezboard.com/fisnforumsfrm16.subscribeUnregisteredToTopic?topicID=731.topic\nhttp://freesoftware.subportal.com/sn/Business/Application_Add-ins/726.html\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/deskutils/genius/files/?sortby=date\nhttp://www.madein.nnov.ru/stat/index.phtml?cid=418&t=3\nhttp://citeseer.nj.nec.com/correct/294145\nhttp://www.phillips.semiconductors.com/pip/PCF5001H\nhttp://www.tvstore.com/browse/TV/BANK/s.Vaphccqs\nhttp://www.tvstore.com/browse/TV/SCRIPT/s.Vaphccqs\nhttp://www.tvstore.com/aboutus/s.Vaphccqs\nhttp://www.fogdog.com/cedroID/ssd3040183205929/nav/products/featured_brands/3b/arm_warmers/\nhttp://orders.mkn.co.uk/bear/steiff/classic/order/now.en$NOK?what-e=1\nhttp://www.crutchfield.com/S-jtpRS1P7vRY/help/\nhttp://www06.u-page.so-net.ne.jp/tb3/y-miyu/azure/kodatour.htm\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/japanese/escpf/distinfo\nhttp://no.egroups.com/subscribe/Theater_plays\nhttp://www.equipe.fr/Football/FootballFicheJoueur8954_0.html\nhttp://www.equipe.fr/Football/FootballFicheJoueur6039_0.html\nhttp://www.pmdc.org.uk/dogsdb/p00/P00133.HTM\nhttp://ip.tosp.co.jp/i.asp?i=nononatti3\nhttp://tucows.wlink.com.np/adnload/144221_48889.html\nhttp://store.yahoo.co.jp/I/naturum_1590_147867488\nhttp://providenet.office.tucows.com/adnload/77414_41755.html\nhttp://providenet.office.tucows.com/adnload/73011_41097.html\nhttp://www.goldersgreen.londonengland.co.uk/medicalequipmentrentalandleasing.htm\nhttp://www.online.kokusai.co.jp/Mmf_corner/V0043462/mmf_corner/mmf_corner/url\nhttp://www.qth.net/archive/packrats/200008/20000804.html\nhttp://www.expage.com/buffykat11nelly\nhttp://dk.egroups.com/login.cgi?login_target=%2Fmessages%2Fbbs_people\nhttp://dk.egroups.com/message/bbs_people/23\nhttp://www.linux.com/networking/network/technology/free/development/learning/\nhttp://www.chaos.dk/sexriddle/r/x/z/t/l/\nhttp://www.opensecrets.org/lobbyists/98profiles/5918.htm\nhttp://www.cbs.sportsline.com/u/football/nfl/kids/players/3418.htm\nhttp://www.cbs.sportsline.com/u/football/nfl/kids/players/3868.htm\nhttp://www.cbs.sportsline.com/u/football/nfl/kids/players/133268.htm\nhttp://www.hig.se/(apre,clientname,countdown,language,set_cookie)/~jackson/roxen/\nhttp://www.platogmbh.de/plato/home.nsf/c81870434660ba41c125652a0029a47a/fb7566ed772f8580c12566f00036ac59!OpenDocument&ExpandSection=4,8,11,12\nhttp://www.fogdog.com/cedroID/ssd3040183211315/nav/products/featured_brands/2m/kick_sprint_boards/\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2458960\nhttp://www.jamba.de/KNet/_KNet-ONt8j1-NEd-139p9/showInfo-jobs.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-ONt8j1-NEd-139pf/browse.de/node.0/cdzqggtyb\nhttp://iland.tucows.com/win2k/adnload/38318_29882.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~04880',00.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~35840',00.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~90237',00.html\nhttp://sunsite.org.uk/public/usenet/news.answers/alt.answers/self-impr-faq/part1\nhttp://ftp.bitcon.no/pub/simtelnet/win95/fileutl/?S=A\nhttp://totalsports.aol.com/stats/bbo/mlb/20000517/bal.at.ana.game.html\nhttp://au.yahoo.com/Regional/U_S__States/Virginia/Counties_and_Regions/Henrico_County/Business_and_Shopping/Shopping_and_Services/Travel/\nhttp://ftp.up.pt/Linux/debian/dists/unstable/main/binary-all/math/\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=10,17,13,14\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/japanese/vfghostscript/Makefile\nhttp://polygraph.ircache.net:8181/yp/User_Contribs/http_-2home.netscape.com/comprod/mirror/\nhttp://www.emis.de/journals/EJDE/Volumes/Monographs/Volumes/1998/26/?S=A\nhttp://www.smartshop.com/cgi-bin/main.cgi?c=314&a=contactus\nhttp://213.36.119.69/do/session/152986/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/BE_NL/\nhttp://www.outdoorwire.com/lists/dirt/200009/msg01273.html\nhttp://chicagocow.com/top/1,1419,M-Metromix-Home-Carryout!InputReview-9757--0,00.html\nhttp://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/659920000022582000008720100000129302/main.wo/9193100000029302/4/-/prime\nhttp://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292493.htm\nhttp://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292495.htm\nhttp://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292496.htm\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/jlhIVflnBPgWmpC4eFAjXlk3QXcFhcK-b9D_cbZyHLtTP5aigpMrgot7TKiIhNzg8y23_mmQAn7GVTQsvALIGIvJI8RFNXRZDuyGCzJ8JFs6ysbZfjgM3ik0nyIt5yhT_ujQhRI-42lzAOeb666j\nhttp://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959588--\nhttp://www.intellicast.com/Golf/World/UnitedStates/MidAtlantic/Virginia/RoyalNewKentGC/LocalWinds/d1_12/\nhttp://gbchinese.yahoo.com/headlines/001028/sports/ycwb/ycba28c003txttyxw00102800.html\nhttp://gbchinese.yahoo.com/headlines/001028/sports/ycwb/ycba28c004txttyxw00102800.html\nhttp://mx.php.net/manual/hu/language.references.unset.php\nhttp://www.cbtravelguide.com/north_america/united_states/info_2.htm?sortby=city\nhttp://www.intellicast.com/Sail/World/UnitedStates/Northwest/Idaho/Targhee/LocalWinds/d1_03/\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-current/devel/libgii/distinfo\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/816/149599//C/1826373/0////25/S/MLTPAI\nhttp://willsmith.sonicnet.com/events/jay_z/index_sonicnet.jhtml\nhttp://tucows.soneraplaza.nl/winme/tucowsme_license.html\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/usr.sbin/fdcontrol/Makefile?only_with_tag=MAIN\nhttp://www.kurit.com/ip/a5iu/dungeon/showsw1.html\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13118/minamisenju/3chome/index-30.html\nhttp://yp.gates96.com/3/2/10/4.html\nhttp://yp.gates96.com/3/2/10/19.html\nhttp://yp.gates96.com/3/2/10/48.html\nhttp://yp.gates96.com/3/2/10/52.html\nhttp://yp.gates96.com/3/2/10/82.html\nhttp://yp.gates96.com/3/2/11/10.html\nhttp://yp.gates96.com/3/2/11/13.html\nhttp://yp.gates96.com/3/2/13/31.html\nhttp://yp.gates96.com/3/2/13/41.html\nhttp://yp.gates96.com/3/2/13/43.html\nhttp://yp.gates96.com/3/2/14/3.html\nhttp://yp.gates96.com/3/2/14/19.html\nhttp://yp.gates96.com/3/2/15/54.html\nhttp://yp.gates96.com/3/2/15/72.html\nhttp://yp.gates96.com/3/2/16/84.html\nhttp://yp.gates96.com/3/2/17/22.html\nhttp://yp.gates96.com/3/2/17/61.html\nhttp://yp.gates96.com/3/2/18/1.html\nhttp://yp.gates96.com/3/2/18/41.html\nhttp://yp.gates96.com/3/2/18/58.html\nhttp://yp.gates96.com/3/2/19/56.html\nhttp://yp.gates96.com/3/2/19/79.html\nhttp://www.stas.net/lonlywtrsoul/minesweeper/ms.html\nhttp://ksu.freeyellow.com/\nhttp://www.genome.wustl.edu:8021/gsc10/est/yt/yt69/\nhttp://www.genome.wustl.edu:8021/gsc10/est/yt/yt82/\nhttp://www.winsite.com/info/pc/win95/miscutil/cutty10.exe/downltop.html\nhttp://habenix.uni-muenster.de/Rektorat/Forschungsberichte-1997-1998/fo05bbe03.htm\nhttp://www.jobvillage.com/channel/jobs/installation_repair/bicycle/g.3370.html\nhttp://www.mordkommission.de/ratgeber/praxis/service/broschueren/40504/\nhttp://www.aelita.net/products/news/solutions/sitemap/company/library/default.htm\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=acejet\nhttp://cgi1.washingtonpost.com/wp-dyn/metro/va/alexandria/\nhttp://www.linux.com/networking/network/applications/interface/linux/distro/\nhttp://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=69\nhttp://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=72\nhttp://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=87\nhttp://genforum.genealogy.com/cgi-genforum/forums/youngs.cgi?26\nhttp://www.tvstore.com/browse/TV/CAP/s.IRspZRIy\nhttp://210.178.135.1/netbbs/Bbs.cgi/nhic30592/qry/zka/B2-kB2-p/pno/0/qqo/012A/qqatt/^\nhttp://home.sol.no/~leskjerv/aner/12063.htm\nhttp://pub6.ezboard.com/fwatckkeepersgeneralwatchkeeperdiscussion?page=5\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/folderFrame/100217/0/def/1210456\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/xosmulti/?S=A\nhttp://opac.lib.rpi.edu/search/ddata+processing+english+language+style/7,-1,0,B/browse\nhttp://yp.gates96.com/7/40/0/5.html\nhttp://yp.gates96.com/7/40/0/33.html\nhttp://yp.gates96.com/7/40/1/27.html\nhttp://yp.gates96.com/7/40/3/25.html\nhttp://yp.gates96.com/7/40/3/36.html\nhttp://yp.gates96.com/7/40/4/67.html\nhttp://yp.gates96.com/7/40/4/77.html\nhttp://yp.gates96.com/7/40/6/28.html\nhttp://yp.gates96.com/7/40/6/49.html\nhttp://yp.gates96.com/7/40/6/89.html\nhttp://yp.gates96.com/7/40/7/21.html\nhttp://yp.gates96.com/7/40/9/24.html\nhttp://indonesian.wunderground.com/geo/GizmoTempBigPromo/global/stations/07434.html\nhttp://www.teenplatinum.com/barelylegal/anal-sexass/legsred-toenail-polish/swallowspit/submissiondiscipline/maledomspanking/hardcorebondage.html\nhttp://cgi.cnnsi.com/basketball/college/women/scoreboards/aeast/2000/10/18/\nhttp://cgi.cnnsi.com/basketball/college/women/scoreboards/aeast/2000/10/16/\nhttp://bellona.itworld.com:8080/cwi/Printer_Friendly_Version/frame/0,1212,NAV63-128-1357-1367_STO48482-,00.html\nhttp://cdrwww.who.int/fsf/ehec.pdf\nhttp://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Jiangxi/Cities_and_Towns/Nanchang/Real_Estate/\nhttp://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Jiangxi/Cities_and_Towns/Nanchang/Society_and_Culture/\nhttp://www.camden-industrial.com/supply/webSession/shopper/CI972959657-31048/store/dept-8\nhttp://www.msb.malmo.se/search*swe/mQdfm/mqdfm/-5,-1,0,E/2browse\nhttp://tagesanzeiger.ch/archiv/96september/960903/213235.htm\nhttp://yp.gates96.com/3/7/20/3.html\nhttp://yp.gates96.com/3/7/20/28.html\nhttp://yp.gates96.com/3/7/20/42.html\nhttp://yp.gates96.com/3/7/21/5.html\nhttp://yp.gates96.com/3/7/21/61.html\nhttp://yp.gates96.com/3/7/22/18.html\nhttp://yp.gates96.com/3/7/22/20.html\nhttp://yp.gates96.com/3/7/22/24.html\nhttp://yp.gates96.com/3/7/23/33.html\nhttp://yp.gates96.com/3/7/23/49.html\nhttp://yp.gates96.com/3/7/23/57.html\nhttp://yp.gates96.com/3/7/24/22.html\nhttp://yp.gates96.com/3/7/24/23.html\nhttp://yp.gates96.com/3/7/24/27.html\nhttp://yp.gates96.com/3/7/24/36.html\nhttp://yp.gates96.com/3/7/24/45.html\nhttp://yp.gates96.com/3/7/25/98.html\nhttp://yp.gates96.com/3/7/26/56.html\nhttp://yp.gates96.com/3/7/26/77.html\nhttp://yp.gates96.com/3/7/26/94.html\nhttp://yp.gates96.com/3/7/27/10.html\nhttp://yp.gates96.com/3/7/27/17.html\nhttp://yp.gates96.com/3/7/27/61.html\nhttp://yp.gates96.com/3/7/27/73.html\nhttp://yp.gates96.com/3/7/27/81.html\nhttp://yp.gates96.com/3/7/27/82.html\nhttp://yp.gates96.com/3/7/27/87.html\nhttp://yp.gates96.com/3/7/28/48.html\nhttp://yp.gates96.com/3/7/29/1.html\nhttp://yp.gates96.com/3/7/29/8.html\nhttp://yp.gates96.com/3/7/29/32.html\nhttp://www.crit.org/http://www-mel.nrlmry.navy.mil/%ff:words:(MEL-is-a-sponsored-distributed-environmental-data-access-system-which-allows-users-to-search-for-browse-and-retrieve-environmental-data-from-distributed-sources)\nhttp://www.crit.org/http://crit.org/pub/radiks.net/jwoods/%ff:words:jwoods-radiks-net-(A-More-Graceful-Transition)-An-expanded-definition\nhttp://shn.webmd.com/roundtable_reply/802056\nhttp://shn.webmd.com/roundtable_author/802056\nhttp://bbs.bianca.com/mforums/e/expounder/posts/2000_Jan_09/3067/3073.html\nhttp://www.spaindustry.com/ita/geosearch/navarra/navarra/ESLAVA.html\nhttp://www.backflip.org/members/rj2nagle/4643211\nhttp://www.backflip.org/members/rj2nagle/7211888\nhttp://www.backflip.org/members/rj2nagle/5066953\nhttp://www.backflip.org/members/rj2nagle/5346740\nhttp://www.backflip.org/members/rj2nagle/5382951\nhttp://www.linux.com/networking/network/performance/help/va_linux_systems/server/\nhttp://www.secinfo.com/d178s.ad.htm\nhttp://www.secinfo.com/d178s.9d.htm\nhttp://www.secinfo.com/d178s.8b.htm\nhttp://www.secinfo.com/d178s.8y.htm\nhttp://iceberg.adhomeworld.com/cgi-win/redirect.exe/1153874888\nhttp://tmxy.363.net/refer-e.htm\nhttp://www.narodnaobroda.sk/20000210/10_007.html\nhttp://retailer.gocollect.com/do/session/1912712/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp\nhttp://retailer.gocollect.com/do/session/1912712/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/halloween/halloween.asp\nhttp://www.larevista.elmundo.es/documentos/secciones/ciencia.html\nhttp://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/brightnet/?M=A\nhttp://www.5a8.com/book/zt/zpj/k/kelisidi/wanshenjie/006.htm\nhttp://www.5a8.com/book/zt/zpj/k/kelisidi/wanshenjie/019.htm\nhttp://www.northwoods.bigsmart.com/mall/cat_automotive.cfm?drop_menu=yes\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_220.txt\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_364.txt\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_400.txt\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_630.txt\nhttp://bsd.tucows.mol.com/x11html/adnload/69206_8129.html\nhttp://ldp.teihal.gr/LDP/LG/issue22/notes-mode.html\nhttp://ldp.teihal.gr/LDP/LG/issue22/haters.html\nhttp://members.nbci.com/design_res/software_ftp.htm\nhttp://www.nativeamerican-jewelry.com/necklace53.htm\nhttp://members.theglobe.com/pamile/Pamela0004.html\nhttp://webtools.familyeducation.com/whatworks/item/front/0,2551,22-9696-7350-1099-49655,00.html\nhttp://wwws.br-online.de/geld/boerse/970909/072001.html\nhttp://212.31.0.37/fix98/75yil/1938.htm\nhttp://212.31.0.37/fix98/75yil/1950.htm\nhttp://212.31.0.37/fix98/75yil/26ekl.htm\nhttp://212.31.0.37/fix98/75yil/28ekl.htm\nhttp://212.31.0.37/fix98/75yil/38ekl.htm\nhttp://212.31.0.37/fix98/75yil/67ekl.htm\nhttp://212.31.0.37/fix98/75yil/92ekl.htm\nhttp://212.31.0.37/fix98/75yil/15ekl.htm\nhttp://www.insurequotes.com/wa2/71J2.html\nhttp://cn.egroups.com/message/csreye/112\nhttp://ring.crl.go.jp/archives/lang/perl/CPAN/authors/id/J/JA/JARIAALTO/?D=A\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s31/ch027.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s31/ch056.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s31/ch043.html\nhttp://202.99.23.245/huadong/199905/25/no_4.html\nhttp://www.linux.com/networking/network/industry/training/services/business/\nhttp://www.writtenbyme.com/articles/849308468.shtml\nhttp://members.tripod.com/TroupeLynx/index_m.htm\nhttp://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/https_-2www.truste.org/validate/http_-2www.ziplink.net/~ralphb/newsroom/http_-2www.travelsc.com/industry/home.html\nhttp://ftp.bitcon.no/pub/tucows/preview/1095.html\nhttp://ftp.bitcon.no/pub/tucows/preview/870.html\nhttp://ftp.bitcon.no/pub/tucows/preview/144675.html\nhttp://ftp.bitcon.no/pub/tucows/preview/144869.html\nhttp://ftp.bitcon.no/pub/tucows/preview/31162.html\nhttp://ftp.bitcon.no/pub/tucows/preview/7724.html\nhttp://ftp.bitcon.no/pub/tucows/preview/2691.html\nhttp://ftp.bitcon.no/pub/tucows/preview/72841.html\nhttp://ftp.bitcon.no/pub/tucows/preview/72185.html\nhttp://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/company_profile/AAAksrACwAAABtvAAX\nhttp://search.excaliburfilms.com/moviepgs/goodbadanddirty.htm?currency=NOK&stock=8377V1\nhttp://search.excaliburfilms.com/moviepgs/goodbadanddirty.htm?currency=FRF&stock=8377V1\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?torian::44.html\nhttp://retailer.gocollect.com/do/session/1912702/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/newintros.asp\nhttp://www.retrobytes.org/classiccmp/9911/msg00941.html\nhttp://ftp.support.compaq.com/public/dunix/v3.2d-1/dce/?S=A\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=CoyoteChief\nhttp://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=cpatch\nhttp://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=cpegasus\nhttp://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/483ed12afec2b31d002564ac0039427a!OpenDocument&ExpandSection=7,6,5\nhttp://www.luecos.de/wow/art/mu_newsc_12080.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/misc/lit/programs/simple/pages_new.html\nhttp://library.cuhk.edu.hk/search*chi/aChen,+Hui-fen./achen+hui+fen/31,-1,0,E/frameset&F=achen+hung&4,,0\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-82-art-2.html\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-82-art-21.html\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-82-art-45.html\nhttp://caller-times.com/1999/june/26/today/national/2447.html\nhttp://cafe5.daum.net/Cafe-bin/Bbs.cgi/vision20pds/lst/qqeq/1/zka/B2-kB2Np\nhttp://www.crutchfield.com/S-q8jdM6hvouc/sales.html\nhttp://www.crutchfield.com/S-q8jdM6hvouc/cgi-bin/Catalog.asp?sid=S-q8jdM6hvouc\nhttp://www.crutchfield.com/S-q8jdM6hvouc/copyright.html\nhttp://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023149,00.html\nhttp://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023162,00.html\nhttp://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023220,00.html\nhttp://www.tnonline.com/archives/news/2000weeklies/09.20/pocono/pocono/police.html\nhttp://retailer.gocollect.com/do/session/1912688/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp\nhttp://ftp.fas.org/irp/world/iraq/hadi/\nhttp://rusf.ru/kb/stories/kogda_chapaev_ne_utonul/text.htm\nhttp://ring.yamanashi.ac.jp/pub/FreeBSD-PC98/dists/4.1-RELEASE/packages/chinese/?M=A\nhttp://www3.buch-per-sms.de/anmeldung0.jsp$ID=To7737mC4935289641883087At0.9095524774481786\nhttp://www3.buch-per-sms.de/impressum.jsp$ID=To7737mC4935289641883087At0.9104482951702283\nhttp://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/contents/\nhttp://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/pay3/\nhttp://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/xdev2/\nhttp://www.mlbworldseries.com/u/baseball/mlb/players/moreplayer_7649.htm\nhttp://www.rismedia.com/consumer/27/5192/\nhttp://www.rismedia.com/consumer/27/18760/\nhttp://library.cuhk.edu.hk/search*chi/aZhang,+Wei-Yuan./azhang+wei+yuan/-5,-1,0,B/browse\nhttp://itcareers.careercast.com/texis/it/itjs/+XwwBmeSFy86xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rmepdwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+zwwBmerEy86e+xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rmeADwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/++wwBmex8286xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rm6mwwBrmeZpwww/jobpage.html\nhttp://archive.soccerage.com/s/de/09/b2445.html\nhttp://archive.soccerage.com/s/de/09/b2408.html\nhttp://archive.soccerage.com/s/de/09/b2272.html\nhttp://archive.soccerage.com/s/de/09/b2256.html\nhttp://archive.soccerage.com/s/de/09/b2249.html\nhttp://archive.soccerage.com/s/de/09/b2245.html\nhttp://archive.soccerage.com/s/de/09/b2246.html\nhttp://archive.soccerage.com/s/de/09/b2237.html\nhttp://archive.soccerage.com/s/de/09/b2207.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/wickham.cgi?296\nhttp://ftpsearch.belnet.be/packages/CPAN/authors/id/N/NE/NEDKONZ/?S=A\nhttp://www.cheatscape.com/amiga/a/game53cindex_1.htm\nhttp://www.best.com/~radko/lounge/messages/3572.html\nhttp://www.best.com/~radko/lounge/messages/3542.html\nhttp://www.best.com/~radko/lounge/messages/3563.html\nhttp://www.best.com/~radko/lounge/messages/3502.html\nhttp://www.best.com/~radko/lounge/messages/3431.html\nhttp://user.tninet.se/~lrg243i/leo2.htm\nhttp://www.pocketbible.co.kr/new/hebrews/hebrews07/hebrews7-5.htm\nhttp://www.pocketbible.co.kr/new/hebrews/hebrews07/hebrews7-10.htm\nhttp://members.tripod.co.jp/sugart/?D=A\nhttp://www.linux.com/networking/network/industry/growth/new/server/\nhttp://kdecvs.stud.fh-heilbronn.de/cvsweb/kdegames/kspaceduel/sprites/?hideattic=0&sortby=log\nhttp://karate.list.ru/catalog/10621.html\nhttp://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,hilfe,individualverkehr,kultur,mix,nuernberg,sense,software,verkehr)/_fort/html/themen/aktuell/verkehr.htm\nhttp://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,hilfe,individualverkehr,kultur,mix,nuernberg,sense,software,verkehr)/_fort/html/themen/aktuell/fahrzeug/fahrzeug.htm\nhttp://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,creaccess,hilfe,individualverkehr,kultur,mix,nuernberg,schnellübersicht,sense,software,verkehr,von)/_fort/html/themen/hilfe/getall.htm\nhttp://polygraph.ircache.net:8181/http_-2www.infolane.com/http_-2www.neosoft.com/~nitemoon/technical/http_-2www2.davidweekleyhomes.com/advancedproj.html\nhttp://wow-online.vhm.de/Regional/Sri_Lanka/Nachrichten.html\nhttp://www.bell.bellnet.com/suchen/sport/rodeo.html\nhttp://netway.pda.tucows.com/palm/adnload/67796_21902.html\nhttp://netway.pda.tucows.com/palm/preview/48544.html\nhttp://netway.pda.tucows.com/palm/adnload/139037_47478.html\nhttp://netway.pda.tucows.com/palm/adnload/73256_21914.html\nhttp://netway.pda.tucows.com/palm/adnload/71930_21910.html\nhttp://netway.pda.tucows.com/palm/adnload/136499_47294.html\nhttp://netway.pda.tucows.com/palm/adnload/77938_21926.html\nhttp://wap.jamba.de/KNet/_KNet-g_v8j1-4Fd-13aaq/browse.de/node.0/cde7f2elw\nhttp://www.oreilly.com/medical/autism/news/research.html\nhttp://www.geocities.co.jp/HeartLand-Namiki/5523/kopen.html\nhttp://br-online.de/wissenschaft/wimfs/tm/tm9611/tt9611ol.htm\nhttp://retailer.gocollect.com/do/session/1912709/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/preorder.asp\nhttp://rac.co.kr/www.avm.de/\nhttp://rac.co.kr/www.aztech.com.sg/\nhttp://rac.co.kr/www.simple.com.au/drivers.htm\nhttp://www.egroups.com/messages/Wrestlings2ndComing/263\nhttp://mediate.magicbutton.net/do/session/625584/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/index.cfm\nhttp://ben.aspads.net/ex/c/643/874990125\nhttp://www.hri.org/docs//statedep/1998/98-05-26.std.html\nhttp://member1.shangdu.net/home2/longing/byzs/036.htm\nhttp://web.tiscalinet.it/informacitta/n2Maggio2000/n2Maggio2000/Pagine/P16.htm\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959455723/Catalog/11000155\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959455723/Basket/View/1000038\nhttp://student.monterey.edu/sz/troxellphillipju/campus/\nhttp://readers.thevines.com/leaf/AA0000401329/45///&act=24-1-11&bref=1601\nhttp://caller-times.com/1999/september/30/today/business/750.html\nhttp://www.online.kokusai.co.jp/Mmf_corner/V0043482/mmf_corner/mmf_corner/url\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,33,21,19,32\nhttp://jupiter.u-3mrs.fr/~msc41www/GRATXT/PD6483.HTM\nhttp://webtools.familyeducation.com/whatworks/item/front/0,2551,1-9696-7765-539-51377,00.html\nhttp://parallel.fh-bielefeld.de/ti/vorlesung/sp/jdk_doc/java/text/class-use/FieldPosition.html\nhttp://cinemabilia.de/details/katnr/239509/\nhttp://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/xgolgo/pkg-comment\nhttp://yp.gates96.com/13/2/50/12.html\nhttp://yp.gates96.com/13/2/50/68.html\nhttp://yp.gates96.com/13/2/52/56.html\nhttp://yp.gates96.com/13/2/53/71.html\nhttp://yp.gates96.com/13/2/54/13.html\nhttp://yp.gates96.com/13/2/54/21.html\nhttp://yp.gates96.com/13/2/54/43.html\nhttp://yp.gates96.com/13/2/54/52.html\nhttp://yp.gates96.com/13/2/54/94.html\nhttp://yp.gates96.com/13/2/55/25.html\nhttp://yp.gates96.com/13/2/55/57.html\nhttp://yp.gates96.com/13/2/56/95.html\nhttp://yp.gates96.com/13/2/57/24.html\nhttp://yp.gates96.com/13/2/57/34.html\nhttp://yp.gates96.com/13/2/57/35.html\nhttp://yp.gates96.com/13/2/57/64.html\nhttp://yp.gates96.com/13/2/58/92.html\nhttp://yp.gates96.com/13/2/59/2.html\nhttp://yp.gates96.com/13/2/59/31.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/RLhI7rcI1D4JxQFT7-3mEP5SJK8AVzq_FCHTmPD4oB4tzM54LVISOGr6gaW80TieiLj3vEEhfqMBuYuDKIQXk3pROAhdckz6dDnbPsi72aC9ZSsK2o3j3J8YlLpw-uOtcBIEsA4ZZATUNj1D6atp66I4\nhttp://www.dulux.co.uk/UKRETAIL:1938649915:DFinity.1QJiP4jRabmkmb\nhttp://www.dulux.co.uk/UKRETAIL:1938649915:DFinity.1QJiP4jMomdoclfieh\nhttp://www.egroups.com/messages/raite-dvd/1442\nhttp://www3.newstimes.com/archive2000/jun28/bzd.htm\nhttp://yp.gates96.com/2/75/20/35.html\nhttp://yp.gates96.com/2/75/20/42.html\nhttp://yp.gates96.com/2/75/20/48.html\nhttp://yp.gates96.com/2/75/21/28.html\nhttp://yp.gates96.com/2/75/21/88.html\nhttp://yp.gates96.com/2/75/21/91.html\nhttp://yp.gates96.com/2/75/21/93.html\nhttp://yp.gates96.com/2/75/21/96.html\nhttp://yp.gates96.com/2/75/22/23.html\nhttp://yp.gates96.com/2/75/23/50.html\nhttp://yp.gates96.com/2/75/24/13.html\nhttp://yp.gates96.com/2/75/24/47.html\nhttp://yp.gates96.com/2/75/24/90.html\nhttp://yp.gates96.com/2/75/25/33.html\nhttp://yp.gates96.com/2/75/25/46.html\nhttp://yp.gates96.com/2/75/25/84.html\nhttp://yp.gates96.com/2/75/26/37.html\nhttp://yp.gates96.com/2/75/26/40.html\nhttp://yp.gates96.com/2/75/27/30.html\nhttp://yp.gates96.com/2/75/27/66.html\nhttp://yp.gates96.com/2/75/27/81.html\nhttp://yp.gates96.com/2/75/28/34.html\nhttp://yp.gates96.com/2/75/28/55.html\nhttp://yp.gates96.com/2/75/29/12.html\nhttp://yp.gates96.com/2/75/29/19.html\nhttp://yp.gates96.com/2/75/29/45.html\nhttp://yp.gates96.com/2/75/29/56.html\nhttp://yp.gates96.com/2/75/29/86.html\nhttp://yp.gates96.com/2/75/29/99.html\nhttp://cn.egroups.com/message/agribusiness1/31\nhttp://biblio.cesga.es:81/search*gag/jLugo+(Provincia).+Mapas+topogrÃÂÃÂ¡ficos.+[1890%3F]/jlugo+provincia+mapas+topograficos+1890/31,-1,0,B/browse\nhttp://bbs.lineone.net/news/uknews/msg01030.html\nhttp://bbs.lineone.net/news/uknews/msg01047.html\nhttp://bbs.lineone.net/news/uknews/msg01026.html\nhttp://bbs.lineone.net/news/uknews/msg00976.html\nhttp://bbs.lineone.net/news/uknews/msg00960.html\nhttp://bbs.lineone.net/news/uknews/msg00952.html\nhttp://idl.tucows.com/winnt/adnload/1380_28802.html\nhttp://retailer.gocollect.com/do/session/1912681/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/christmas/holiday_shoppe.asp\nhttp://www1.zdnet.co.uk/software/fstore/A/9/000BA9.html\nhttp://polygraph.ircache.net:8181/home/http_-2www.tauchbali.com/SERV.HTM\nhttp://channel.nytimes.com/1998/05/01/technology/cybertimes/artsatlarge/\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports/japanese/linux-netscape47-communicator/?D=A\nhttp://www9.hmv.co.uk:5555/do/session/1347757/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/hiddenframe.html\nhttp://www9.hmv.co.uk:5555/do/session/1347757/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/logoframe.html\nhttp://www-usa9.cricket.org/link_to_database/ARCHIVE/1999-2000/WI_IN_NZ/ARTICLES/\nhttp://www-usa9.cricket.org/link_to_database/ARCHIVE/1999-2000/WI_IN_NZ/SCORECARDS/\nhttp://a228.g.akamai.net/7/228/289/55d96730f1ea56/news.indiainfo.com/2000/08/13/floods.html\nhttp://caller-times.com/1999/august/08/today/texas_me/4241.html\nhttp://ftp.uni-bremen.de/pub/doc/news.answers/movies/winona-ryder-faq/part3\nhttp://www.globalsources.com/gsol/owa/website.gold/GP3/8801728414/HOME.HTM\nhttp://eds.kse.or.kr/jaemoo/jipyo_e/k_grp/E01683.htm\nhttp://eds.kse.or.kr/jaemoo/jipyo_e/i_grp/E01116.htm\nhttp://eds.kse.or.kr/jaemoo/jipyo_e/i_grp/E01126.htm\nhttp://eds.kse.or.kr/jaemoo/jipyo_e/d_grp/E00366.htm\nhttp://eds.kse.or.kr/jaemoo/jipyo_e/h_grp/E00929.htm\nhttp://www.jobvillage.com/channel/jobs/cleaning/pruner/g.1276.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380817/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp\nhttp://gamingplace.zeelandnet.nl/poker_rating.html\nhttp://no.egroups.com/message/DVD-Info/111\nhttp://www.relax.ch/static/it/lazurigo/mercatodellavoro/oben.html\nhttp://internet.exit.de/mees-online/left_geld.html\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959658-31049/store/dept-5/department/dept-5/item/footwear\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959658-31049/store/dept-5/department/dept-5/item/52550\nhttp://www11.cplaza.ne.jp/babyweb/bbs/bdnmp01/no16/61N.html\nhttp://www.daimi.au.dk/dIntProg/java/jdk1.2.2/docs/api/javax/swing/plaf/basic/BasicScrollBarUI.ArrowButtonListener.html\nhttp://www.daimi.au.dk/dIntProg/java/jdk1.2.2/docs/api/javax/swing/plaf/basic/BasicScrollBarUI.ModelListener.html\nhttp://www.angelfire.com/nc/Percosolation/POSDerisions.html\nhttp://yp.gates96.com/3/4/40/80.html\nhttp://yp.gates96.com/3/4/41/23.html\nhttp://yp.gates96.com/3/4/41/24.html\nhttp://yp.gates96.com/3/4/41/37.html\nhttp://yp.gates96.com/3/4/41/90.html\nhttp://yp.gates96.com/3/4/42/26.html\nhttp://yp.gates96.com/3/4/42/71.html\nhttp://yp.gates96.com/3/4/42/90.html\nhttp://yp.gates96.com/3/4/44/44.html\nhttp://yp.gates96.com/3/4/45/52.html\nhttp://yp.gates96.com/3/4/45/75.html\nhttp://yp.gates96.com/3/4/45/77.html\nhttp://yp.gates96.com/3/4/46/0.html\nhttp://yp.gates96.com/3/4/46/85.html\nhttp://yp.gates96.com/3/4/47/19.html\nhttp://yp.gates96.com/3/4/47/20.html\nhttp://yp.gates96.com/3/4/47/23.html\nhttp://yp.gates96.com/3/4/47/72.html\nhttp://yp.gates96.com/3/4/48/4.html\nhttp://yp.gates96.com/3/4/48/16.html\nhttp://yp.gates96.com/3/4/48/45.html\nhttp://yp.gates96.com/3/4/48/51.html\nhttp://yp.gates96.com/3/4/49/16.html\nhttp://ftpsearch.belnet.be/pub/mirror/sunsite.cnlab-switch.ch/mirror/harvest/contrib/Example-Customizations/?S=A\nhttp://pub9.ezboard.com/fgaprforeignrelationdepartment.showAddTopicScreenFromWeb\nhttp://pub9.ezboard.com/fgaprforeignrelationdepartment.showMessage?topicID=4.topic\nhttp://www.asstr.org/nifty/gay/authoritarian/adonis-brotherhood/adonis-brotherhood-3\nhttp://www.brio.de/BRIO.catalog/39fe2f4c06d41844273fd472aa7806a9/UserTemplate/8\nhttp://itcareers.careercast.com/texis/it/itjs/+HwwBmeH_D86aqwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6nxqdDdMoqax15oDn55a5BwhhawDwcO5o5aqd5Ban5BoMwBoDtaGo5Aa5nGVoqnaADdicnmtnaBddc5aMFqhTfR20DzmenxwwwpBmeWWD86exhwww5rmeWcwwwBrmeZpwww/jobpage.html\nhttp://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.updowntowner.org/julyjamm/frmain.htm\nhttp://213.36.119.69/do/session/152987/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/spectacles/\nhttp://www.jobvillage.com/channel/jobs/health_care/physician/anesthesiologist/b.9467.g.1575.html\nhttp://www.private-immobilien-boerse.de/friesland/verkauf/IIM-Teil/Startseite/Gemeinsam/Super-Zins-Konditionen/Gemeinsam/Inserieren/Gemeinsam/MarketingStrategie/inhalt.htm\nhttp://se.egroups.com/message/yemdiscussion/38\nhttp://se.egroups.com/message/yemdiscussion/45\nhttp://home.bip.net/kerstin.hjelm/Stamtavla%20Z-kullen.html\nhttp://mediate.magicbutton.net/do/session/625616/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-abou.html\nhttp://members.tripod.lycos.co.kr/KWEN3607/?S=A\nhttp://cpan.clix.pt/authors/id/B/BP/BPOWERS/String-StringLib-1.02.readme\nhttp://www.gbnf.com/genealogy/bookout/html/d0001/I3283.HTM\nhttp://m4.findmail.com/group/Opera2Developers\nhttp://m4.findmail.com/group/acctworks\nhttp://retailer.gocollect.com/do/session/1912690/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1\nhttp://retailer.gocollect.com/do/session/1912690/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp\nhttp://platsbanken.amv.se/kap/text/47/001023,170030,140912,11,1276051947.shtml\nhttp://www.gamespot.com/features/dunesg/dune6a.html\nhttp://tucows.iquest.net/winme/preview/138053.html\nhttp://tucows.iquest.net/winme/preview/137529.html\nhttp://tucows.iquest.net/winme/preview/138641.html\nhttp://archive.soccerage.com/s/pt/09/03721.html\nhttp://archive.soccerage.com/s/pt/09/07102.html\nhttp://www10.nytimes.com/library/national/science/health/021500hth-women-diabetes.html\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.phy.bnl.gov/e949/e949_update.txt\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13105/otsuka/3chome/index-7.html\nhttp://go18.163.com/_NTES/~starseeker/gin/saga/gin01/gin0100.htm\nhttp://village.infoweb.ne.jp/~fvgg8450/t91.html\nhttp://clickahouse.mp2.homes.com/content/articles/locks.html\nhttp://findmail.com/messages/studentdoctor/354\nhttp://ldp.mirror.nettuno.it/Linux/LDP/LDP/lkmpg/node3.html\nhttp://ldp.mirror.nettuno.it/Linux/LDP/LDP/lkmpg/node13.html\nhttp://fi.egroups.com/group/sandycove\nhttp://www.fogdog.com/cedroID/ssd3040183219992/boutique/nike/\nhttp://www.fogdog.com/cedroID/ssd3040183219992/boutique/harbinger/\nhttp://www.fogdog.com/cedroID/ssd3040183219992/customer_service/employment.html\nhttp://www.genoma.de/shop/736a8b4b4c331e80f780899842a4b0b4/99/b\nhttp://sjsulib1.sjsu.edu:81/search/tbraille+transcription+project+of+santa+clara+county+inc/-5,-1,1,B/frameset&tbook+reviews+in+the+humanities&1,1,\nhttp://students.washington.edu/emgall/eng481/final/\nhttp://www.vc-graz.ac.at/ilct/ffe_349_99.htm\nhttp://www.vc-graz.ac.at/ilct/ffe_372_00.htm\nhttp://www.vc-graz.ac.at/ilct/ffe_375_00.htm\nhttp://www.escribe.com/computing/virtcom/m452.html\nhttp://members.tripod.com/~TreasureIsland/welcom/e.htm\nhttp://augustachronicle.com/stories/022699/obi_038-5494.001.shtml\nhttp://augustachronicle.com/stories/022699/obi_038-5477.001.shtml\nhttp://ring.edogawa-u.ac.jp/archives/X/opengroup/R6.5.1/xc/lib/Imakefile\nhttp://www.elop.de/d0-1015-2044-3001-top.html\nhttp://www.ibiblio.org/pub/languages/java/blackdown.org/JDK-1.1.7/i386/glibc/v1a/?S=D\nhttp://www.linux.com/networking/network/enterprise/integration/management/Linux/\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13221/matsuyama/2chome/index-7.html\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13221/matsuyama/2chome/index-12.html\nhttp://ftp.sunet.se/pub/FreeBSD/ports/ports/japanese/tcl76/Makefile\nhttp://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Consultants-HOWTO/t19977.html\nhttp://www.irishnews.com/archive2000/06072000/sportuk1.html\nhttp://allmacintosh.ii.net/adnload/71893.html\nhttp://allmacintosh.ii.net/adnload/70339.html\nhttp://www.museumshops.co.uk/Bonnefoit-Alain/Bonnefoit-Alain-Die-Schoene-mit-dem-Pelz-3000062.html\nhttp://www.timesoc.com/editions/orange/20001030/t000103758.html\nhttp://www.musiciansfriend.com/ex/ds/bv/001030182803064208037039434033\nhttp://www.beneteau-owners.com/library.nsf/Library+By+System!OpenView&Start=41.4&Count=45&Expand=49\nhttp://www.musiciansfriend.com/ex/search/guitar/001030182759064208037059215342?FIND=BABX&q=c\nhttp://www.musiciansfriend.com/ex/search/guitar/001030182759064208037059215342?FIND=ASAX&q=c\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/showNextUnseen/fol/100001/2467632\nhttp://tucows.wish.net/winme/adnload/137243_28721.html\nhttp://yp.gates96.com/3/71/10/71.html\nhttp://yp.gates96.com/3/71/11/12.html\nhttp://yp.gates96.com/3/71/11/27.html\nhttp://yp.gates96.com/3/71/11/34.html\nhttp://yp.gates96.com/3/71/11/40.html\nhttp://yp.gates96.com/3/71/11/62.html\nhttp://yp.gates96.com/3/71/11/78.html\nhttp://yp.gates96.com/3/71/12/70.html\nhttp://yp.gates96.com/3/71/13/34.html\nhttp://yp.gates96.com/3/71/13/38.html\nhttp://yp.gates96.com/3/71/13/82.html\nhttp://yp.gates96.com/3/71/14/94.html\nhttp://yp.gates96.com/3/71/15/0.html\nhttp://yp.gates96.com/3/71/15/88.html\nhttp://yp.gates96.com/3/71/17/28.html\nhttp://yp.gates96.com/3/71/17/85.html\nhttp://yp.gates96.com/3/71/18/37.html\nhttp://yp.gates96.com/3/71/18/69.html\nhttp://yp.gates96.com/3/71/19/55.html\nhttp://www.kodak.ca/US/en/corp/jobs/samplingMechanicalProds.shtml\nhttp://ring.crl.go.jp/archives/lang/perl/CPAN/authors/id/G/GR/GRICHTER/HTML-Embperl-1.3b4.readme\nhttp://www7.freeweb.ne.jp/photo/lystra/a/n_aikawa.html\nhttp://www.imagesofengland.org.uk/31/73/317339.htm\nhttp://webraft.its.unimelb.edu.au/110080/students/ojb/pub/?D=A\nhttp://pub.chinaccm.com/13/news/200010/31/155751.asp\nhttp://pub.chinaccm.com/13/news/200010/21/162140.asp\nhttp://go18.163.com/_NTES/~chen0580/y25.htm\nhttp://pub17.ezboard.com/fcometalkfreetalk.showMessage?topicID=15.topic\nhttp://pub17.ezboard.com/fcometalkfreetalk.showMessage?topicID=6.topic\nhttp://mediate.magicbutton.net/do/session/625593/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-tips.html\nhttp://213.36.119.69/do/session/152982/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/wap/lancement.html\nhttp://wap.jamba.de/KNet/_KNet-Drs8j1-yEd-1395x/showInfo-presse.de/node.0/cde7f1uou\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=choramingar&l=pt\nhttp://www.amcity.com/philadelphia/stories/1998/11/09/story5.html?t=email_story\nhttp://www.mic.hr/PGMARKET:553666\nhttp://cn.egroups.com/messages/KristinChenoweth/2280\nhttp://quest7.proteome.com/databases/YPD/PombePD/SPAC343.03.html\nhttp://www.engines.org.uk/white/fld19/\nhttp://www.engines.org.uk/white/fld27/\nhttp://se.egroups.com/subscribe/plusgothswap\nhttp://www.headlight.com/invoice_process/1,1074,adpa-4049-2423-69-718,00.html\nhttp://www.findarticles.com/cf_0/m4PRN/1999_Nov_3/57153314/p1/article.jhtml\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2480022\nhttp://archive.soccerage.com/s/it/06/10903.html\nhttp://innopac.lib.tsinghua.edu.cn/search*chi/dProduction+engineering/dproduction+engineering/-5,-1,0,B/browse\nhttp://www.consource.com/communities/profile_categories/1759/1510\nhttp://column.daum.net/Column-bin/Bbs.cgi/thinkaboutrbs/new/zka/B2-kB2Np\nhttp://wwws.br-online.de/geld/boerse/960301/0730.html\nhttp://www.2pl.com/asp/tools/fili1.asp?sp=ro&fi=pppp0003zi\nhttp://www.proviser.co.uk/regional/towns/alford/property_prices/compare_current_prices/terraced.html\nhttp://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0utt0cZX5qkXLjbzKMfaLblpLbom0bos0bom04M4Lbom0miXLvboLp1\nhttp://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0uqo0cZX5qkXLjbzKG3pLibo0miX5mqlLmpbKomb0osb0oml1odXLkfpLbopL\nhttp://www.geocities.co.jp/Milano/8578/profile.html\nhttp://ftp.dti.ad.jp/pub/XFree86/3.3.3/binaries/NetBSD-1.2/Servers/?N=D\nhttp://ftp.dti.ad.jp/pub/XFree86/3.3.3/binaries/NetBSD-1.2/Servers/?D=A\nhttp://www.best.com/~radko/lounge/messages/3742.html\nhttp://www.best.com/~radko/lounge/messages/3711.html\nhttp://www.best.com/~radko/lounge/messages/3619.html\nhttp://www.linux.com/networking/network/help/email/business/RuleSpace/\nhttp://www.financialexpress.com/fe/daily/20000918/fco17026.html\nhttp://209.67.27.70/comics/dilbert/scott/dawn/pg19.html\nhttp://209.67.27.70/comics/dilbert/scott/dawn/pg22.html\nhttp://flamingo.promote.ru/href.pl?fct_051\nhttp://pda.saa.net/palm/adnload/34404_22152.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/q6tIzhLNlKeaaMXYVAPJiOq7V33Ul08VcQoPAomjWMQzOxA0cR6_kRLx42D4nA_uumPVc2DRZtv6CVpWQCyNUgVZQ2P9F7bqqvcf_5WqCdUM7UIRKBdjb9lTbrCrrl5_jZ6cQsstJDqry3XrFI0toILqSCSm66j2\nhttp://www.home.ch/~spaw9012/ps11/ps11_003.htm\nhttp://help.sap.com/saphelp_45b/helpdata/de/1c/e464b20437d1118b3f0060b03ca329/frameset.htm\nhttp://abc.ru/cgi-bin/get_firminfo.pl?firm=comsys\nhttp://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1749-art-28.html\nhttp://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1749-art-32.html\nhttp://admin.afiliando.com/do/session/189435/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/pesquisa/jutherC.asp?id_categoria=57&id_tipo=C\nhttp://admin.afiliando.com/do/session/189435/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/extra/talk_to_sub.asp\nhttp://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsn0mvm0cZX5qkXLjbzKGelLkbpL\nhttp://yp.gates96.com/3/39/30/1.html\nhttp://yp.gates96.com/3/39/30/53.html\nhttp://yp.gates96.com/3/39/31/22.html\nhttp://yp.gates96.com/3/39/32/0.html\nhttp://yp.gates96.com/3/39/32/39.html\nhttp://yp.gates96.com/3/39/32/41.html\nhttp://yp.gates96.com/3/39/32/45.html\nhttp://yp.gates96.com/3/39/32/97.html\nhttp://yp.gates96.com/3/39/34/39.html\nhttp://yp.gates96.com/3/39/34/50.html\nhttp://yp.gates96.com/3/39/34/68.html\nhttp://yp.gates96.com/3/39/34/72.html\nhttp://yp.gates96.com/3/39/35/14.html\nhttp://yp.gates96.com/3/39/35/84.html\nhttp://yp.gates96.com/3/39/36/3.html\nhttp://yp.gates96.com/3/39/36/19.html\nhttp://yp.gates96.com/3/39/36/20.html\nhttp://yp.gates96.com/3/39/36/84.html\nhttp://yp.gates96.com/3/39/36/88.html\nhttp://yp.gates96.com/3/39/37/37.html\nhttp://yp.gates96.com/3/39/38/60.html\nhttp://yp.gates96.com/3/39/38/63.html\nhttp://yp.gates96.com/3/39/39/52.html\nhttp://yp.gates96.com/3/39/39/56.html\nhttp://yp.gates96.com/3/39/39/58.html\nhttp://yp.gates96.com/3/39/39/63.html\nhttp://yp.gates96.com/13/9/80/14.html\nhttp://yp.gates96.com/13/9/80/92.html\nhttp://yp.gates96.com/13/9/81/23.html\nhttp://yp.gates96.com/13/9/81/47.html\nhttp://yp.gates96.com/13/9/82/45.html\nhttp://yp.gates96.com/13/9/82/59.html\nhttp://yp.gates96.com/13/9/82/65.html\nhttp://yp.gates96.com/13/9/82/71.html\nhttp://yp.gates96.com/13/9/82/77.html\nhttp://yp.gates96.com/13/9/83/86.html\nhttp://yp.gates96.com/13/9/83/88.html\nhttp://yp.gates96.com/13/9/84/4.html\nhttp://yp.gates96.com/13/9/84/28.html\nhttp://yp.gates96.com/13/9/84/77.html\nhttp://yp.gates96.com/13/9/85/34.html\nhttp://yp.gates96.com/13/9/85/59.html\nhttp://yp.gates96.com/13/9/86/22.html\nhttp://yp.gates96.com/13/9/86/28.html\nhttp://yp.gates96.com/13/9/86/30.html\nhttp://yp.gates96.com/13/9/86/37.html\nhttp://yp.gates96.com/13/9/86/85.html\nhttp://yp.gates96.com/13/9/87/1.html\nhttp://yp.gates96.com/13/9/87/2.html\nhttp://yp.gates96.com/13/9/88/58.html\nhttp://yp.gates96.com/13/9/89/17.html\nhttp://yp.gates96.com/13/9/89/49.html\nhttp://yp.gates96.com/13/9/89/51.html\nhttp://yp.gates96.com/13/9/89/64.html\nhttp://yp.gates96.com/13/9/89/69.html\nhttp://yp.gates96.com/13/9/89/79.html\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483337&chr=D\nhttp://ngi.tucows.com/win2k/adnload/37473_28857.html\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=1,4,21,7,17\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=2,4,21,7,17\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=15,4,21,7,17\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=16,4,21,7,17\nhttp://www.susi.de/cgi-bin/order/segelzentrum-kagerer/c134-5021905270003,de\nhttp://www.egroups.com/messages/iraq-l/9973\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=29,24,30,11\nhttp://www.etoys.com/prod/book/51604361\nhttp://link.fastpartner.com/do/session/600358/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/itjobbank.php\nhttp://link.fastpartner.com/do/session/600358/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/shopnett.php\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/devel/mips64orion-rtems-objc/?S=A\nhttp://www-uk5.cricket.org/link_to_database/NATIONAL/ENG/FC_TEAMS/SOMERSET/STATS/CAREER/SOMERSET_CAREER_J.html\nhttp://www.linux.com/networking/network/performance/install/distro/industry/\nhttp://www.linux.com/networking/network/performance/install/distro/tools/\nhttp://www.linux.com/networking/network/performance/install/distro/enterprise/\nhttp://mx.php.net/manual/de/language.basic-syntax.php\nhttp://mx.php.net/manual/fr/language.basic-syntax.php\nhttp://moviestore.zap2it.com/browse/MOVIES/SCRIPT/s.UxBwM3db\nhttp://www.armouries.org.uk/bjarni/introduction.htm\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/C/CT/CTWETEN/?D=A\nhttp://atlanta.webmd.com/related_results/1/25/article/1738.50204\nhttp://www.ccnet.com/tzimmer/?M=A\nhttp://go2.163.com/~xinhua/\nhttp://www.ualberta.ca/FTP/OpenBSD/src/regress/lib/libc/_setjmp/CVS/Root\nhttp://www.dqt.com.cn/wymb/military/jinyong/金庸全集.htm\nhttp://www.hole.kommune.no/hole/journweb.nsf/7e180336094ef23a412568cd004a5093/2fd09f96f20814cac12568e300443d50!Navigate&To=Next\nhttp://classifieds.alberta.com/js/mi/c16000/b16000/n15/858640.html\nhttp://classifieds.alberta.com/js/mi/c16000/b16000/n15/861013.html\nhttp://homepages.go.com/homepages/b/n/g/bngholo/\nhttp://www.aelita.net/products/news/library/support/Reg/Subscribe/library/default.htm\nhttp://www.chaos.dk/sexriddle/j/a/b/s/e/\nhttp://www.chaos.dk/sexriddle/j/a/b/s/t/\nhttp://213.36.119.69/do/session/152985/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/contact/info-publicite.html\nhttp://www.indian-express.com/fe/daily/19990807/corporate.html\nhttp://web.cln.com/archives/atlanta/newsstand/atl100795/1316.htm\nhttp://web.cln.com/archives/atlanta/newsstand/atl100795/1317.htm\nhttp://plaza.gaiax.com/www/plaza/k/n/kenta/friends.html\nhttp://polygraph.ircache.net:8181/docs/eudora/http_-2www.kentuckylake.com/rates/http_-2www.hubbell-wiring.com/NEMA/admin/additional.html\nhttp://gd.cnread.net/cnread1/wxxs/d/dongfangying/pljc/015.htm\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/versicherungen/unfall/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm\nhttp://www.linux.com/networking/network/help/free/red_hat/competition/\nhttp://www.linux.com/networking/network/help/free/red_hat/development/\nhttp://www.linux.com/networking/network/help/free/red_hat/SuSE/\nhttp://search.chollian.net/d/%b1%e2%be%f7,%c8%b8%bb%e7/%b0%e1%c8%a5/%c5%e4%c5%bb%bf%fe%b5%f9%bc%ad%ba%f1%bd%ba/16.html\nhttp://no.egroups.com/message/plowshares/840\nhttp://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1872-art-13.html\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/versicherungen/lebensversicherung/Top-Darlehens-Konditionen/Gemeinsam/versicherungen/unfall/anforderungsformular.htm\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380819/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/main/respect/\nhttp://www-rn.informatik.uni-bremen.de/home/ftp/pub/linux/redhat/updates/6.2EE/i586/\nhttp://archive.soccerage.com/s/es/09/12718.html\nhttp://www.intel.es/kr/hangul/pressroom/archive/releases/dp990218.htm\nhttp://www.intel.es/kr/hangul/pressroom/archive/releases/dp990105.htm\nhttp://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/Linux/sunsite.unc.edu/distributions/caldera/eServer/updates/2.3/021/RPMS/\nhttp://library.bangor.ac.uk/search/aMatis,+James+H/amatis+james+h/-5,-1,0,B/browse\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/html/http_-2www.sharkyextreme.com/hardware/hercules_tnt/\nhttp://ring.nihon-u.ac.jp/archives/pack/win95/net/fee/?N=D\nhttp://dbc.copystar.com.tw/bcbchat/199804/msg03730.htm\nhttp://dbc.copystar.com.tw/bcbchat/199804/msg03761.htm\nhttp://dbc.copystar.com.tw/bcbchat/199804/msg03787.htm\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/grevenbroich/Verkauf/Gemeinsam/Super-Zins-Konditionen/Exklusiv-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/IIMMitglieder.htm\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/grevenbroich/Verkauf/Gemeinsam/Super-Zins-Konditionen/Exklusiv-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/vertriebspartner.htm\nhttp://pd.shiseido.co.jp/s9604tub/html_00/win00051.htm\nhttp://solaris.license.virginia.edu/os_product_patches/patches/5.7/107094-04/SUNWdtbas/pkgmap\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959470432/Catalog/11000034\nhttp://www.sportinggreen.com/news/20001007/fbo/fbc/aar/001007.0607.html\nhttp://www-x500-1.uni-giessen.de:8890/Lcn%3dBelloch%20Belloch%5c,%20Juana%20Maria,ou%3dFacultad%20de%20Medicina%20y%20Odontologia,o%3dUniversidad%20de%20Valencia,c%3dES\nhttp://retailer.gocollect.com/do/session/1912723/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp\nhttp://www.jufo.com/netcenter/chemistry/item/000904/16888.htm\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d29/b14,8,1f,1d,1d,,19,,1f,19,\nhttp://www.2pl.com/b/ru/to/1/24/16/v2/1241600107-8.htm\nhttp://ring.htcn.ne.jp/pub/text/CTAN/fonts/metrics/polish/plpsfont/?D=A\nhttp://config.tucows.com/winme/adnload/26398_28890.html\nhttp://ocean.ntou.edu.tw/search*chi/aRadojcic,+Riko,+jt.+auth./aradojcic+riko/-5,-1,0,B/frameset&F=aradomsky+nellie+a&1,1\nhttp://www.intellicast.com/Sail/World/UnitedStates/Northwest/Montana/Beaverhead/LocalWinds/d1_09/\nhttp://www.bild.de/service/archiv/2000/mar/31/sport/coulthard/coulthard.html\nhttp://ustlib.ust.hk/search*chi/a%7B215a36%7D%7B213246%7D%7B215e42%7D+1926/a{215a36}{213246}{215e42}+1926/-5,-1,0,B/frameset&F=a{215a36}{213230}{214e70}&1,1\nhttp://mediate.magicbutton.net/do/session/625620/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html\nhttp://mediate.magicbutton.net/do/session/625620/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-corp.html\nhttp://www.amateurplatinum.com/mouthlicking/eunuchhershey-highway/bad-girlsubmission/petitebeauties/actionno-boundaries/fellatiogoing-down-on/give-headcock-suckers.html\nhttp://www.brd.net/brd-cgi/brd_dkameras/filmscanner_fotodrucker/FZ00F0EF/beurteilung/ci=972751646.htm\nhttp://www.niwl.se/WAIS/31607/31607073.htm\nhttp://www.magicvillage.de/Login/magicvillage/magiclife/Lucullus/%2328706045/Reply\nhttp://polygraph.ircache.net:8181/consumer/rel_meet_main.html\nhttp://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/Linux/sunsite.unc.edu/distributions/debian/dists/potato/non-free/binary-i386/x11/\nhttp://www.great-cyber-mall.com/SelectCompany.asp?CityID=67&CatID=5\nhttp://www.great-cyber-mall.com/SelectCompany.asp?CityID=67&CatID=50\nhttp://rainforest.parentsplace.com/dialog/get/bradley2/39/1/1.html?embed=2\nhttp://www.users.yun.co.jp/cgi-bin/moriq/pigeon/pigeon.cgi/DataSet.after_post?c=e\nhttp://www.chaos.dk/sexriddle/n/f/p/x/x/\nhttp://www.amcity.com/dayton/stories/2000/03/20/smallb1.html?t=email_story\nhttp://www.linux.com/networking/network/industry/web_server/windows_nt/Red_Hat/\nhttp://www.du-et.net/cgi/mail.cgi?NickName=naiki\nhttp://gameboyz.com/g/demos_p1_c41_lV_w2.html\nhttp://intelinfo.subportal.com/sn/Games/Strategy_Games/9289.html\nhttp://home.kimo.com.tw/maso-kid/index2.html\nhttp://citeseer.nj.nec.com/nrelated/1377121/289677\nhttp://citeseer.nj.nec.com/nrelated/0/289677\nhttp://ccar.ust.hk/~dataop/rs_ocean_cd/WVS/wvsplus/wvs003m/bat/q/h/lf/\nhttp://home.baoding.cn.net/~tjhlove/dzrwy/l11.htm\nhttp://home.baoding.cn.net/~tjhlove/dzrwy/l23.htm\nhttp://208.178.109.85/msgshow.cfm/msgboard=129014524422386&msg=3558983275052&page=1&idDispSub=-1\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=4,9,33,27,35\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=29,9,33,27,35\nhttp://config.tucows.com/win2k/adnload/76944_30007.html\nhttp://www1.zdnet.com/zdnn/stories/news/0,4586,1021147,00.html\nhttp://www.fogdog.com/cedroID/ssd3040183236187/nav/stores/snowboarding/\nhttp://www.fogdog.com/cedroID/ssd3040183236187/nav/stores/institutional/\nhttp://debian.linux.org.tw/debian/dists/sid/main/disks-powerpc/current/source/?M=A\nhttp://satftp.soest.hawaii.edu/dlr/slides/ql21176.html\nhttp://www.linux.com/networking/network/industry/new/help/internet/\nhttp://www.linux.com/networking/network/industry/new/help/growth/\nhttp://flint.freethemes.com/skins/winamp/preview/46994.html\nhttp://flint.freethemes.com/skins/winamp/preview/24628.html\nhttp://flint.freethemes.com/skins/winamp/preview/25113.html\nhttp://flint.freethemes.com/skins/winamp/preview/24645.html\nhttp://flint.freethemes.com/skins/winamp/preview/25319.html\nhttp://flint.freethemes.com/skins/winamp/preview/25017.html\nhttp://flint.freethemes.com/skins/winamp/preview/26154.html\nhttp://flint.freethemes.com/skins/winamp/preview/24669.html\nhttp://flint.freethemes.com/skins/winamp/preview/24674.html\nhttp://flint.freethemes.com/skins/winamp/preview/69522.html\nhttp://flint.freethemes.com/skins/winamp/preview/58805.html\nhttp://flint.freethemes.com/skins/winamp/preview/71909.html\nhttp://flint.freethemes.com/skins/winamp/preview/24389.html\nhttp://flint.freethemes.com/skins/winamp/preview/25052.html\nhttp://flint.freethemes.com/skins/winamp/preview/77185.html\nhttp://flint.freethemes.com/skins/winamp/preview/56733.html\nhttp://flint.freethemes.com/skins/winamp/preview/24736.html\nhttp://flint.freethemes.com/skins/winamp/preview/24408.html\nhttp://flint.freethemes.com/skins/winamp/preview/24744.html\nhttp://flint.freethemes.com/skins/winamp/preview/24424.html\nhttp://flint.freethemes.com/skins/winamp/preview/25075.html\nhttp://flint.freethemes.com/skins/winamp/preview/71807.html\nhttp://nomade.fr/cat/informatique_tele/informatique/progiciels_logiciel/utilitaires/communication\nhttp://pub9.ezboard.com/umetalman5566.showPublicProfile?language=EN\nhttp://archiv.leo.org/pub/comp/usenet/comp.binaries.atari.st/texinfo31/texif31b.zoo/\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d13/b261,4,d,,be,d,\nhttp://citeseer.nj.nec.com/cidcontext/608466\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/strategia/kansainv%E4listyminen/ulkomaankauppa/kansainv%E4linen+kauppa/\nhttp://cms.letsmusic.com/directory/search/albuminfo/1,1125,af0127818000000,00.asp\nhttp://www.musiciansfriend.com/ex/ds/other/001030182805064208037054818832\nhttp://www.musiciansfriend.com/ex/search/other/001030182805064208037054818832?FIND=IBAX&q=c\nhttp://www.mapion.co.jp/custom/tv/admi/13/13106/kuramae/3chome/19/\nhttp://dblab.comeng.chungnam.ac.kr/~dolphin//db/journals/ac/ac11.html\nhttp://archive.soccerage.com/s/de/09/c4816.html\nhttp://archive.soccerage.com/s/de/09/c4698.html\nhttp://archive.soccerage.com/s/de/09/c4664.html\nhttp://archive.soccerage.com/s/de/09/c4463.html\nhttp://archive.soccerage.com/s/de/09/c4423.html\nhttp://archive.soccerage.com/s/de/09/c4422.html\nhttp://workingfamilies.digitalcity.com/tampabay/penpals/browse.dci?cat=teens&sort=f\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/Inserieren/Startseite/Gemeinsam/immolink/Top-Darlehens-Konditionen/Gemeinsam/versicherungen/unfall/anforderungsformular.htm\nhttp://www.samba.org/cgi-bin/cvsweb/gnokii/xgnokii/docs/help/en_US/windows/main/?sortby=log\nhttp://www.accesslasvegas.com/shared/health/adam/ency/article/002669sym.html\nhttp://www.egroups.com/message/gaywrestle/33\nhttp://lfs.cyf-kr.edu.pl:8888/3Lcn%3dDirectory%20Manager,%20o%3dSPRITEL,%20c%3dES\nhttp://www.acfas.ca/congres/congres66/S10.htm\nhttp://hansard.www.act.gov.au/2000/week02/423.htm\nhttp://207.25.71.142/cycling/2000/tour_de_france/stages/4/\nhttp://207.25.71.142/cycling/2000/tour_de_france/news/2000/07/20/pantani_reflects\nhttp://207.25.71.142/cycling/2000/tour_de_france/news/2000/07/19/driver_charged/\nhttp://207.25.71.142/POLL/results/1142011.html\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=6,14,27,22\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=29,14,27,22\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380816/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380816/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/products/entry.asp\nhttp://ads.carltononline.com/accipiter/adclick/site=purejamba/area=jamba.home_page/AAMSZ=POPUP/ACC_RANDOM=972959547609\nhttp://retailer.gocollect.com/do/session/1912714/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp\nhttp://208.178.101.41/news/1998/12/10newsd.html\nhttp://208.178.101.41/news/1998/03/05news.html\nhttp://208.178.101.41/news/1998/03/03news.html\nhttp://208.178.101.41/news/1998/01/09news.html\nhttp://hff.shunde.net/mobile/radio2000.163.net/radio2000.163.html\nhttp://hff.shunde.net/mobile/www.tohome.net/www.tohome.html\nhttp://www.egroups.com/login.cgi?login_target=%2Fmessages%2FShayrs%2F31\nhttp://moviestore.zap2it.com/browse/MOVIES/BANK/s.bsk4qCBs\nhttp://moviestore.zap2it.com/browse/MOVIES/STATION/s.bsk4qCBs\nhttp://moviestore.zap2it.com/browse/MOVIES/VIDEO/s.bsk4qCBs\nhttp://ftp.fi.debian.org/debian/dists/unstable/contrib/source/x11/?N=D\nhttp://link.fastpartner.com/do/session/600364/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm\nhttp://pub16.ezboard.com/uprieni.showPublicProfile\nhttp://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-servers/XFree86-4-FontServer/\nhttp://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-servers/XttXF98srv-NKVNEC/\nhttp://www.generation-formation.fr/services/adrutils/GUIDES/CCI.HTM---o21zAo0UaWo0Ol9A074fo65iyfmKlze8SUeecTAseLvI5ehw7se7NeCfeZJPAPfVbNyqgBecVktePbBxehwwlezc9fAb0vyApuRtAhGqGdisSLdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbu.htm\nhttp://www.generation-formation.fr/services/adrutils/GUIDES/DRIRE.HTM---o21zAo0UaWo0Ol9A074fo65iyfmKlze8SUeecTAseLvI5ehw7se7NeCfeZJPAPfVbNyqgBecVktePbBxehwwlezc9fAb0vyApuRudNnJpo1XCjdRsR3djaPfdNjfcdRsR3djakUApvGdhcmdfbv.htm\nhttp://198.103.152.100/search*frc/aMayer,+Anita/amayer+anita/-5,-1,0,B/frameset&F=amaybank+j+e&1,1\nhttp://198.103.152.100/search*frc/aMayer,+Anita/amayer+anita/-5,-1,0,B/2exact&F=amaycunich+ann&1,3\nhttp://kobenhavn.icepage.se/hilfe/XFree86/3.9.18/DECtga2.html\nhttp://itcareers.careercast.com/texis/it/itjs/+YwwBmeJf5C6wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyhw1Bdmn5AanLnq1BoVnawmMoDo5BGwBoVnazdxamnpwGBMnDBaGnpdGB5a5BdGnaqddGmoDwBnanMwoca5Aocc5aMFqoEuRZy0IQDzmeJqwwwpBmeBFZ86mwww5rmehpwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+cwwBmetKD86eMmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyhw1Bdmn5AanLnq1BoVnawmMoDo5BGwBoVnazdxamnpwGBMnDBaGnpdGB5a5BdGnaqddGmoDwBnanMwoca5Aocc5aMFqoEuRZy0IQDzmeJqwwwpBmeBFZ86mwww5rmeODwwwBrmeZpwww/morelike.html\nhttp://bbs.syu.ac.kr/NetBBS/Bbs.dll/scbbs008/rcm/zka/B2-kB27p/qqo/005A/qqatt/^\nhttp://musicmabey.subportal.com/sn/Themes/Misc__Themes/\nhttp://www.intel.it/eBusiness/pdf/prod/ia64/SAS_IA-64_Paper.pdf\nhttp://elflife.bigpanda.net/2866/io.html\nhttp://www.excelsior.com.mx/9609/960911/nac11.html\nhttp://www.allgemeine-immobilien-boerse.de/ungarn/verkauf/Private-IB/Ferien-IB/Startseite/Allgemeine-IB/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm\nhttp://www.allgemeine-immobilien-boerse.de/ungarn/verkauf/Private-IB/Ferien-IB/Startseite/Allgemeine-IB/Gemeinsam/geschaeftsbedingungen.htm\nhttp://www.wingateinns.com/ctg/cgi-bin/Wingate/look_over/AAAksrACwAAACCPAAT\nhttp://my.netian.com/~rakyun/?N=D\nhttp://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/gebaeude/Gemeinsam/immolink/Top-Darlehens-Konditionen/Gemeinsam/Inserieren/Gemeinsam/suche.htm\nhttp://www.mirror.kiev.ua:8083/paper/2000/04/1251/text/04-07-5.htm\nhttp://ring.toyama-u.ac.jp/archives/NetBSD/packages/1.4.2/sun3/?N=D\nhttp://ring.toyama-u.ac.jp/archives/NetBSD/packages/1.4.2/sun3/lang/\nhttp://www.vstore.com/vstorecomputers/8store/\nhttp://indiadirectory.indiatimes.com/webdirectory/1514pg1.htm\nhttp://indiadirectory.indiatimes.com/webdirectory/1513pg1.htm\nhttp://www.online.kokusai.co.jp/Map/V0002508/wrd/G400/demo/\nhttp://www.gamespot.com.au/features/everquest_gg/creatures1.html\nhttp://www.jxi.gov.cn/yw-ty001.nsf/view!OpenView&Start=38.11&Count=30&Expand=40\nhttp://www.jxi.gov.cn/yw-ty001.nsf/view!OpenView&Start=38.11&Count=30&Expand=42\nhttp://yp.gates96.com/6/0/40/22.html\nhttp://yp.gates96.com/6/0/40/85.html\nhttp://yp.gates96.com/6/0/41/26.html\nhttp://yp.gates96.com/6/0/41/94.html\nhttp://yp.gates96.com/6/0/42/50.html\nhttp://yp.gates96.com/6/0/43/30.html\nhttp://yp.gates96.com/6/0/43/76.html\nhttp://yp.gates96.com/6/0/44/43.html\nhttp://yp.gates96.com/6/0/44/61.html\nhttp://yp.gates96.com/6/0/44/99.html\nhttp://yp.gates96.com/6/0/45/37.html\nhttp://yp.gates96.com/6/0/45/84.html\nhttp://yp.gates96.com/6/0/47/33.html\nhttp://yp.gates96.com/6/0/47/43.html\nhttp://yp.gates96.com/6/0/47/54.html\nhttp://yp.gates96.com/6/0/48/30.html\nhttp://yp.gates96.com/6/0/48/47.html\nhttp://yp.gates96.com/6/0/49/5.html\nhttp://hammer.prohosting.com/~kobeweb/cgi-bin/nagaya/nagaya.cgi?room=036&action=mente\nhttp://www.petropages.com/kproduct/k4267p.htm\nhttp://webraft.its.unimelb.edu.au/536029/students/plam/pub/?M=A\nhttp://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/Fawd001.htm\nhttp://www.caijing.yesky.com/33554432/36700160/122010.htm\nhttp://yp.gates96.com/14/85/0/7.html\nhttp://yp.gates96.com/14/85/2/86.html\nhttp://yp.gates96.com/14/85/3/90.html\nhttp://yp.gates96.com/14/85/6/37.html\nhttp://yp.gates96.com/14/85/8/82.html\nhttp://yp.gates96.com/14/85/8/88.html\nhttp://cn.egroups.com/messages/Toledo_Storm/228\nhttp://mediate.magicbutton.net/do/session/625598/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cart.html\nhttp://rainforest.parentsplace.com/dialog/thread.pl/bradley2/10/2.html?dir=prevResponse\nhttp://tvstore.zap2it.com/browse/TV/JACKET/s.CmMildAx\nhttp://tvstore.zap2it.com/browse/TV/CLOCK/s.CmMildAx\nhttp://findmail.com/post/studentdoctor?act=forward&messageNum=2315\nhttp://www.chaos.dk/sexriddle/d/j/l/a/y/\nhttp://gandalf.neark.org/pub/distributions/OpenBSD/src/gnu/egcs/libstdc++/testsuite/libstdc++.tests/?D=A\nhttp://gd.cnread.net/cnread1/net/zpj/s/shenfang/004.htm\nhttp://www.imagesignworks.com/vinylmasksforacidetching/index.nhtml\nhttp://209.249.170.32/stores/dir/bycat/Holiday_and_Seasonal/Christmas.shtml\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867726/Catalog/1000107\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867726/Catalog/1000108\nhttp://www.linux.com/networking/network/applications/interface/microsoft/IBM/\nhttp://www.linux.com/networking/network/applications/interface/microsoft/Corel/\nhttp://www.linux.com/networking/network/applications/interface/microsoft/?kw_offset=50\nhttp://www.tiefbau-suhl.de/Leistung/Stuetzmauern/stuetzmauern2.htm\nhttp://providenet.tucows.com/win2k/adnload/38394_29124.html\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/index.opentext.net/weather/detail.cgi?us-dc\nhttp://iceberg.adhomeworld.com/cgi-win/redirect.exe/2133549064\nhttp://www.dc.digitalcity.com/charlestonwvarea/announce/main.dci?page=letusknow\nhttp://members.tripod.co.jp/yoshihiro_2/yotete.html\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/immolink/Startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/\nhttp://ftp.debian.org/dists/Debian2.2r0/non-free/binary-arm/web/?N=D\nhttp://www.complete-skier.co.uk/resorts/survey/submit.asp?ResortID=1755\nhttp://members.tripod.com/~BHS_CC/boys_times_1997.html\nhttp://fi.egroups.com/post/mens-health?act=forward&messageNum=11\nhttp://nomade.fr/cat/famille_sante/sante/medecine_pratique/medecine_generale/\nhttp://home.att.net/~mlbvault/mac8.htm\nhttp://mirror.nucba.ac.jp/mirror/Perl/authors/id/ROSCH/String-ShellQuote-1.00.readme\nhttp://www.nrk.no/finnmark/x12_9_96/nyh6.htm\nhttp://ftp.debian.org/dists/Debian2.2r0/non-free/binary-m68k/editors/?N=D\nhttp://134.84.160.1/infoserv/lists/nih-image/archives/nih-image-9702/0141.html\nhttp://www.philly.digitalcity.com/saintjosephmo/penpals/browse.dci?cat=seniors&sort=m\nhttp://www.idg.net/crd_percent_19960.html\nhttp://204.202.130.51/playerfile/profile/mark_karcher.html\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959692-31077/store/dept-5/department/dept-5/item/52800\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959692-31077/store/dept-5/department/dept-5/item/52900\nhttp://www.online.kokusai.co.jp/Service/V0043510/wrd/G200/service/service.html\nhttp://www.service911.com/mvu/step/0,2632,1+13+139+23899+17191_4,00.html\nhttp://216.34.146.180/141000afp/14worl21.htm\nhttp://www.chaos.dk/sexriddle/t/p/v/r/i/\nhttp://www.chaos.dk/sexriddle/t/p/v/r/x/\nhttp://www.ualberta.ca/FTP/Mirror/debian/dists/potato-proposed-updates/eruby_0.0.9-1potato1_arm.changes\nhttp://www.hbdaily.com.cn/scznb/20000622/BIG5/scznb^1104^16^Zn16014.htm\nhttp://www.linux.com/networking/network/administrator/internet/ftp/install/\nhttp://bsdweb.pasta.cs.uit.no/bsdweb.cgi/xsrc/xc/lib/Xt/PassivGrab.c?sortby=author\nhttp://bsdweb.pasta.cs.uit.no/bsdweb.cgi/xsrc/xc/lib/Xt/ConstrainP.h?sortby=author\nhttp://www.jamba.de/KNet/_KNet-EAA8j1-vFd-13b95/browse.de/node.0/cdel3j591\nhttp://vvv.geocities.co.jp/SiliconValley-SanJose/5688/sn-3.html\nhttp://vvv.geocities.co.jp/SiliconValley-SanJose/5688/n.html\nhttp://www.amel.net/english/computer/games/b/X0006_Backstab__.html\nhttp://www.amel.net/english/computer/games/b/X0059_Bumper_Ships_1.1.html\nhttp://retailer.gocollect.com/do/session/1912693/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp\nhttp://www.hig.se/(apre,formoutput,modified,set,set_cookie)/~jackson/roxen/\nhttp://yp.gates96.com/3/73/80/18.html\nhttp://yp.gates96.com/3/73/81/27.html\nhttp://yp.gates96.com/3/73/81/48.html\nhttp://yp.gates96.com/3/73/81/58.html\nhttp://yp.gates96.com/3/73/82/38.html\nhttp://yp.gates96.com/3/73/83/30.html\nhttp://yp.gates96.com/3/73/83/43.html\nhttp://yp.gates96.com/3/73/83/49.html\nhttp://yp.gates96.com/3/73/83/52.html\nhttp://yp.gates96.com/3/73/84/33.html\nhttp://yp.gates96.com/3/73/84/75.html\nhttp://yp.gates96.com/3/73/85/2.html\nhttp://yp.gates96.com/3/73/85/44.html\nhttp://yp.gates96.com/3/73/85/70.html\nhttp://yp.gates96.com/3/73/86/37.html\nhttp://yp.gates96.com/3/73/86/59.html\nhttp://yp.gates96.com/3/73/87/97.html\nhttp://yp.gates96.com/3/73/87/99.html\nhttp://yp.gates96.com/3/73/88/58.html\nhttp://yp.gates96.com/3/73/88/63.html\nhttp://yp.gates96.com/3/73/88/97.html\nhttp://yp.gates96.com/3/73/89/31.html\nhttp://yp.gates96.com/3/73/89/40.html\nhttp://deseretbook.com/products/4108132/stock-38.html\nhttp://workingfamilies.digitalcity.com/madison/search/\nhttp://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-sparc/current/?D=A\nhttp://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-sparc/current/base-contents.txt\nhttp://www.wizardsoftheweb.com/news/183.shtml\nhttp://mathematics.fiz-karlsruhe.de/stn/whyonline/why_0367.html\nhttp://www.nrk.no/finnmark/x27_11_98/nyh3.htm\nhttp://rex.skyline.net/navigate.cgi?computers,agriculture,nature,agriculture,computers\nhttp://www.secinfo.com/d1ZG7r.78.htm\nhttp://www.secinfo.com/d1ZG7r.74.htm\nhttp://www.freesoftware.com.cn/python.org.cn/doc/essays/ppt/hp-training/tsld051.htm\nhttp://www.nrk.no/finnmark/x28_5_96/nyh1.htm\nhttp://www.areteoutdoors.com/channel/snow/downhilling/b.354.g.2944.html\nhttp://www.areteoutdoors.com/channel/snow/downhilling/b.357.g.2944.html\nhttp://www.mywebmd.net/roundtable_message/662348\nhttp://lovers-lane.porncity.net/216/\nhttp://myhome.thrunet.com/~estefe/seng/sen18.htm\nhttp://myhome.thrunet.com/~estefe/seng/sen42.htm\nhttp://myhome.thrunet.com/~estefe/seng/sen52.htm\nhttp://myhome.thrunet.com/~estefe/seng/sen73.htm\nhttp://no.egroups.com/login.cgi?login_target=%2Fmessages%2Fenglish-zone\nhttp://www.uzp.gov.pl/biulety/1998/100/100_1327.html\nhttp://www.uzp.gov.pl/biulety/1998/100/100_1341.html\nhttp://www.uzp.gov.pl/biulety/1998/100/100_1372.html\nhttp://www.uzp.gov.pl/biulety/1998/100/100_1377.html\nhttp://www.uzp.gov.pl/biulety/1998/100/100_1428.html\nhttp://www.hotelboulevard.com/fr/riviera/standard/html40f8403856d2fa84c9080a860b7608ba/sessionLang/ANG/prov/browse/lstLieu[0]/Saint-Tropez/resultatSearch.html\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/speeches/Pages/funds/portfolio.html\nhttp://www9.hmv.co.uk:5555/do/session/1347778/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d40_sd0_pt0.html\nhttp://edc.uni-augsburg.de/doc/susehilf/pak/paket_doinst_insure.html\nhttp://www.schlagerplatten.de/NewmanJimmyC/B000009PXU.htm\nhttp://cn.egroups.com/message/pro92/604\nhttp://wwws.br-online.de/geld/boerse/980107/190001.html\nhttp://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-3.html\nhttp://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-46.html\nhttp://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-105.html\nhttp://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-111.html\nhttp://newsone.net/nnr/prep/maus.soziales.recht\nhttp://www.mapion.co.jp/custom/tv/admi/14/14131/yako/3chome/1/\nhttp://info.verwaltung.uni-freiburg.de/doc/packages/qt/html/qpicture-members.html\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959870915/ContentView/1000091/1/1200207\nhttp://tour.stanford.edu/cgi/locate2.prl/135.5/jltA\nhttp://mapquest.digitalcity.com/daytonarea/salaries/main.dci?page=admin\nhttp://linuxberg.zeelandnet.nl/x11html/adnload/9146_6809.html\nhttp://medwebplus.com/subject/Alternative%20and%20Complementary%20Medicine/Population/Lists%20of%20Internet%20Resources?^ftc=240&^cc=ftc\nhttp://ftp.du.se/disk0/slackware/slackware-current/contrib/ham/login/package_descriptions\nhttp://yp.gates96.com/12/56/70/0.html\nhttp://yp.gates96.com/12/56/70/14.html\nhttp://yp.gates96.com/12/56/70/62.html\nhttp://yp.gates96.com/12/56/71/19.html\nhttp://yp.gates96.com/12/56/71/38.html\nhttp://yp.gates96.com/12/56/71/46.html\nhttp://yp.gates96.com/12/56/72/49.html\nhttp://yp.gates96.com/12/56/72/78.html\nhttp://yp.gates96.com/12/56/72/91.html\nhttp://yp.gates96.com/12/56/73/18.html\nhttp://yp.gates96.com/12/56/73/52.html\nhttp://yp.gates96.com/12/56/74/15.html\nhttp://yp.gates96.com/12/56/74/54.html\nhttp://yp.gates96.com/12/56/74/79.html\nhttp://yp.gates96.com/12/56/75/28.html\nhttp://yp.gates96.com/12/56/75/68.html\nhttp://yp.gates96.com/12/56/75/71.html\nhttp://yp.gates96.com/12/56/75/76.html\nhttp://yp.gates96.com/12/56/75/88.html\nhttp://yp.gates96.com/12/56/75/94.html\nhttp://yp.gates96.com/12/56/76/27.html\nhttp://yp.gates96.com/12/56/76/57.html\nhttp://yp.gates96.com/12/56/76/73.html\nhttp://yp.gates96.com/12/56/77/60.html\nhttp://yp.gates96.com/12/56/78/3.html\nhttp://yp.gates96.com/12/56/78/45.html\nhttp://yp.gates96.com/12/56/78/64.html\nhttp://yp.gates96.com/12/56/78/86.html\nhttp://yp.gates96.com/12/56/78/91.html\nhttp://yp.gates96.com/12/56/78/95.html\nhttp://yp.gates96.com/12/56/79/39.html\nhttp://yp.gates96.com/12/56/79/75.html\nhttp://www.alldata.com/TSB/19/831915CS.html\nhttp://polygraph.ircache.net:8181/iisadmin/libraries/http_-2www.travelsc.com/welcome_v3/form1.html\nhttp://majordomo.cgu.edu/cgi-bin/lwgate/NEMAI/archives/nemai.archive.0003/Date/article-9.html\nhttp://home.tiscalinet.be/fysinet/studententips/tipsVanStudentenNicolas/sld007.htm\nhttp://www4.netease.com/~abac/writting/zpnr/xw.htm\nhttp://64.209.212.162/learnlots/step/0,2891,47+75+26299+10981_5,00.html\nhttp://www.adcentral.com/cgi-bin/w3com/pws/adsites/KLhIZjY9X9xD5moK2JGI9yyxCV4tsONpzxjYyzP1Uq5ZFTlQAg3Wd-d9dlZbdFK8g3p8_O5GT8q_tKPHmrHXekF-PEpGmxPO69EhQYYR0fwhi_k2GqJa7eAy8n4PQUv0fLw2IIBwNP_qQkQpWEvx666v\nhttp://www.nrc.nl/W2/Nieuws/1998/08/01/\nhttp://online.excite.de/unterhaltung/katalog/38320\nhttp://202.167.121.158/ebooks/jetro/tra1-1-1.html\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/tp94/Blur.readme\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=11,14,12,26\nhttp://www.intellicast.com/Ski/World/UnitedStates/Northeast/NewYork/WingedFootGCWest/WindChill/d1_12/\nhttp://yp.gates96.com/10/17/80/25.html\nhttp://yp.gates96.com/10/17/80/66.html\nhttp://yp.gates96.com/10/17/80/92.html\nhttp://yp.gates96.com/10/17/82/56.html\nhttp://yp.gates96.com/10/17/82/80.html\nhttp://yp.gates96.com/10/17/83/48.html\nhttp://yp.gates96.com/10/17/83/71.html\nhttp://yp.gates96.com/10/17/83/85.html\nhttp://yp.gates96.com/10/17/84/9.html\nhttp://yp.gates96.com/10/17/84/20.html\nhttp://yp.gates96.com/10/17/84/56.html\nhttp://yp.gates96.com/10/17/84/63.html\nhttp://yp.gates96.com/10/17/85/88.html\nhttp://yp.gates96.com/10/17/86/4.html\nhttp://yp.gates96.com/10/17/86/43.html\nhttp://yp.gates96.com/10/17/86/45.html\nhttp://yp.gates96.com/10/17/86/89.html\nhttp://yp.gates96.com/10/17/86/97.html\nhttp://yp.gates96.com/10/17/87/2.html\nhttp://yp.gates96.com/10/17/87/46.html\nhttp://yp.gates96.com/10/17/88/0.html\nhttp://yp.gates96.com/10/17/89/21.html\nhttp://yp.gates96.com/10/17/89/83.html\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.w3.org/International/O-URL-and-ident\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(9,6)+21,0+3,0\nhttp://polygraph.ircache.net:8181/http_-2www.hystuff.com/nrc.htm\nhttp://jproxy.uol.es/jproxy/http://www.ocregister.com/beaches/capistrano\nhttp://www1.zdnet.com/companyfinder/filters/products/0,9996,38071-58,00.html\nhttp://www.ftp.uni-erlangen.de/pub/mirrors/_other/afterstep.foo.net/AfterStep/binaries/?M=A\nhttp://www.genome.wustl.edu:8021/gsc10/mouse/up/?D=A\nhttp://www.genome.wustl.edu:8021/gsc10/mouse/up/up24/\nhttp://rotten-tomatoes.com/movies/browse/1074473/reviews.php?view=reviews.source\nhttp://www.virtual-impact-mktg.com/fx110001.htm\nhttp://genforum.genealogy.com/hagen/messages/164.html\nhttp://genforum.genealogy.com/hagen/messages/111.html\nhttp://genforum.genealogy.com/hagen/messages/7.html\nhttp://genforum.genealogy.com/hagen/messages/271.html\nhttp://genforum.genealogy.com/hagen/messages/40.html\nhttp://nt.mortgage101.com/partner-scripts/1024.asp?p=cashsolutions\nhttp://nt.mortgage101.com/partner-scripts/1026.asp?p=cashsolutions\nhttp://library.cuhk.edu.hk/search*chi/t龍情三地+%26%2359%3B+[3]/t%7B21632b%7D%7B213e5b%7D%7B213024%7D%7B213779%7D++++3/-5,-1,0,B/browse\nhttp://ftp.net.uni-c.dk/pub/linux/redhat/redhat-6.2/sparc/misc/src/anaconda/isys/?S=A\nhttp://ftp.net.uni-c.dk/pub/linux/redhat/redhat-6.2/sparc/misc/src/anaconda/isys/modutils/\nhttp://cobrand.altrec.com/shop/detail/8273/30\nhttp://pegasus.infor.kanazawa-it.ac.jp/~hatlab/kaga/docs/jdk1.3-beta_api/jdk1.3/docs/api/java/lang/class-use/ClassFormatError.html\nhttp://bci.tucows.com/winnt/adnload/58788_28761.html\nhttp://www.buybuddy.com/sleuth/33/1/1020503/300/\nhttp://203.116.23.91/computer/pages2/it120800e.html\nhttp://203.116.23.91/special/newspapers/2000/pages4/computer030700.html\nhttp://203.116.23.91/computer/pages1/software131197.html\nhttp://dic.empas.com/show.tsp/?q=anarchically&f=B\nhttp://noodle.tigris.org/source/browse/subversion/subversion/libsvn_vcdiff/tests/target0.txt\nhttp://www.dbservicestore.de/home/db_reise_touristik/angebote/db_rt_gat_muenster.shtml\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=2&discrim=16,237,275\nhttp://www.narodnaobroda.sk/20000926/06_006.html\nhttp://mandijin.chinamarket.com.cn/C/Showdetail_company/22591.html\nhttp://202.167.121.158/ebooks/jetro/t6.html\nhttp://a228.g.akamai.net/7/228/289/dd50406be5fc91/news.indiainfo.com/2000/08/17/world-index.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=disaminerei&l=it\nhttp://polygraph.ircache.net:8181/http_-2www.eastnebr.net/html/conversions.htm\nhttp://www.secinfo.com/d2wVq.7ar.htm\nhttp://www.secinfo.com/d2wVq.7B5.htm\nhttp://www.secinfo.com/d2wVq.6cd.htm\nhttp://www.secinfo.com/d2wVq.59x.htm\nhttp://www.jamba.de/KNet/_KNet-xdz8j1-mFd-13b2b/browse.de/node.0/cenv0b09a\nhttp://213.36.119.69/do/session/152991/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html\nhttp://www.dailyexcelsior.com/99sep30/edit.htm\nhttp://www.dailyexcelsior.com/99sep30/sports.htm\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/misc/misc/music/lit/quizz/computers/netwars.html\nhttp://cometweb01.comet.co.uk/do!session=132020&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380832/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp\nhttp://208.216.182.15/exec/obidos/ASIN/0516206443/qid=972959559/sr=1-22/\nhttp://fi.egroups.com/messages/alau/2350\nhttp://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033631\nhttp://pds.nchu.edu.tw/cpatch/ftp/ftpctrl/?N=D\nhttp://www.brio.de/BRIO.catalog/39fe2f5606def942273fd472aa7806e2/UserTemplate/5\nhttp://ep.com/js/mi/c7246/b0/832275.html\nhttp://ep.com/js/mi/c7246/b0/837505.html\nhttp://ep.com/js/mi/c7246/b0/764046.html\nhttp://www.fogdog.com/cedroID/ssd3040183223072/nav/products/nhl/pittsburgh_penguins/fan/gender/autographed_pucks/\nhttp://netway.pda.tucows.com/palm/preview/33567.html\nhttp://netway.pda.tucows.com/palm/preview/34007.html\nhttp://cometweb01.comet.co.uk/do!session=132006&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0\nhttp://www.udn.com.tw/ARCHIVE/2000/08/04/DOMESTIC/YUNLIN/587058.htm\nhttp://www.linux.com/networking/network/support/web/news/services/\nhttp://www.linux.com/networking/network/support/web/news/website/\nhttp://www.linux.com/networking/network/support/web/news/business/\nhttp://ads.carltononline.com/accipiter/adclick/site=purejamba/area=jamba.home_page/AAMSZ=IAB_FULL_BANNER//ACC_RANDOM=972959548213\nhttp://www-x500-1.uni-giessen.de:8890/Lcn%3dConsuelo%20Alvarez,ou%3dDpto.%20Fisiologia%20y%20Biologia%20Animal,o%3dUniversidad%20de%20Sevilla,c%3dES\nhttp://www.chaos.dk/sexriddle/b/q/v/y/n/\nhttp://www.cs.kuleuven.ac.be/~java/docs/tutorial/uiswing/converting/example-1dot1/ListDemo.html\nhttp://golfonline.comfluent.net/cgi.pan$player&lpga82&Debbie_Raso&lpga?golfstats\nhttp://acetoys.com/cgi-bin/exec/modify_cart_button=1&cart_id=1999923.7130.303&page=/tystore/htmlfiles/eden/dw.html\nhttp://www.bigchurch.com/cgi-bin/w3com/pws/bc/y1hIyNzn0Bl2XX5GzG9wVnUEhWD8GTd-XbpDm6aNI4ZMGTnV_YsP2OjB0RrwLpDbJub1pKlzEMrInSQi9hRM-Rz4WNq8C1vKJ9STiU9leUD_a3PBVh-7OMZDzJtyEBAXTehiRqme6jBR\nhttp://www.bigchurch.com/cgi-bin/w3com/pws/bc/mChIR_iy1798J8x9InaTkzOfisuwH2hv2KUj0e64IQ9CeS327muTnTo70bT5YC4YznUddEOY5WdX70keIPRlsQibJtG6uzZtaaPmL58O5zJ0z_2PkJNxmBS5dj5-gWoeBgE0zaSvCbi66Grq\nhttp://wap.jamba.de/KNet/_KNet-8qB8j1-FFd-13blo/browse.de/node.0/cde7f2elw\nhttp://collection.nlc-bnc.ca/100/201/300/info_tabac/html/1997/bull7/fdacarol.html\nhttp://pub17.ezboard.com/fzhaostempleofenlightenmentzhaosforum.showMessage?topicID=116.topic\nhttp://www.home.ch/~spaw4360/HOWTO_fr/Ethernet-HOWTO-5.html\nhttp://www.chaos.dk/sexriddle/s/g/n/y/j/\nhttp://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/https_-2www.truste.org/validate/page3.html\nhttp://marketbiz.subportal.com/sn/Themes/Sports_Themes/288.html\nhttp://www.chinaccm.com/04/news/200004/20/120305.asp\nhttp://www.american.webtourist.net/travel/northamerica/usa/lagunabeach/bwlagunareefinn.htm\nhttp://elib.zib.de/pub/visual/avs/mirror/imperial/new/?S=A\nhttp://www.burstnet.com/ads/ad7826a-map.cgi/969206790\nhttp://yp.gates96.com/14/82/10/81.html\nhttp://yp.gates96.com/14/82/12/82.html\nhttp://yp.gates96.com/14/82/13/55.html\nhttp://yp.gates96.com/14/82/14/27.html\nhttp://yp.gates96.com/14/82/14/31.html\nhttp://yp.gates96.com/14/82/15/52.html\nhttp://yp.gates96.com/14/82/17/16.html\nhttp://yp.gates96.com/14/82/17/93.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/P2hI5ODQEZ1-vIl-agOzeOeNg4wShDlZrsCbdT5YZ3TrprEU4rb4NnnDXiGmf5cX3dh8ltMer04TMDd3q-cE5Mne85eH57ltxsi4ZQfER6vkktoaaYlS9JFTzylmCJZ2_PAT9uu2oWvIjgMzt9toyeuV\nhttp://www.mirror.ac.uk/sites/ftp.microsoft.com/deskapps/powerpt/KB/Q226/7/\nhttp://mirror.nucba.ac.jp/mirror/Perl/authors/id/MIKEKING/?M=A\nhttp://lists.insecure.org/linux-kernel/2000/Jun/4357.html\nhttp://www.nlc-bnc.ca/indexmus-bin/resultsum/m=0/e=0/h=25/p=1/f=AU/t=Siroir,+Maryse+Angrignon\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?leavy::19.html\nhttp://www.egroups.com/message/malaysiakini/219\nhttp://wuarchive.wustl.edu/graphics/mirrors/ftp.povray.org/.3/netlib/ode/rksuite/?S=A\nhttp://www.earthsystems.org/list/greenyes/jan2000/1999-2/0858.html\nhttp://pp3.shef.ac.uk:4040/search=browse/dn=countryName%3DGB%40organizationName%3DUniversity+of+Sheffield%40organizationalUnitName%3DAutomatic+Control+and+Systems+Engineering%40commonName%3DI+D+Durkacz\nhttp://cobrand.altrec.com/shop/detail/6133/15/sizing\nhttp://cobrand.altrec.com/shop/detail/5624/17/write\nhttp://members.theglobe.com/inwardpath/history.htm\nhttp://findmail.com/post/studentdoctor?act=reply&messageNum=5168\nhttp://www.service911.com/everythingtele/step/0,2675,3+26057+24201+16394_0,00.html\nhttp://www.linux.com/networking/network/free/release/development/mysql/\nhttp://www.nbip.com.cn/books/xdwx/Hongyan/hongyan14.html\nhttp://ftp.jp.debian.org/debian-non-US/dists/sid/non-US/non-free/binary-hurd-i386/?N=D\nhttp://homepage.swissonline.ch/chico_logo/www.Link008\nhttp://homepage.swissonline.ch/chico_logo/www.Link009\nhttp://citeseer.nj.nec.com/cidcontext/3719857\nhttp://itcareers.careercast.com/texis/it/itjs/+CwwBme3AT+6e-xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXnmoBGnamwBwxw5naBnqrDdcdtOaOnwGaMdDBramwOaqmwBwamn5otDamnVncdpoDtanDtoDnnGoDtaMFqhTfR20DzmebmwwwpBme3AT+6ekxwww5rmeXdwwwBrmeZpwww/jobpage.html\nhttp://www.amazon.com.hk/exec/obidos/tg/stores/detail/-/pro-tools/B0000224UB/customer-reviews/ref=th_hp_rs_2_6/\nhttp://www.ard-buffet.de/buffet/teledoktor/1998/02/16/\nhttp://pub19.ezboard.com/fmissionimplausiblewhatpeoplearesaying.emailToFriend?topicID=41.topic\nhttp://no.egroups.com/message/NikonCoolPix/211\nhttp://www.gasex.com/free.gay.sex/gay.men.dick.dicks.html\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/showFolder/100001/1255931\nhttp://www.uni-duesseldorf.de/ftp/ftp/pf/s/yagirc-0.65.6/?N=D\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/uIhI1DhpdvAdxVFONIJuaNcvtSTejSMmZIBgOwsZamHFS4JpS3i6VWNOSb8LsLcmqmG0gp2hs1YjuScHwXmociV5L_3_fCYngafHC4CIYDuKoI-rOZldw1RU5K3jOfh5d3PxatRmmHqB662F\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/elax176954/eus53832/eus155852/eus53907/eus62316/\nhttp://www.magictraders.com/cgi-bin/ubb/ubbmisc.cgi?action=getbio&UserName=Ammo187\nhttp://fi.egroups.com/login.cgi?login_target=%2Fgroup%2Fweirdchicks\nhttp://www.accesslasvegas.com/shared/health/adam/ency/article/000589.images.html\nhttp://pp3.shef.ac.uk:4040/search=browse/dn=countryName%3DGB%40organizationName%3DAberdeen+University%40organizationalUnitName%3DGeneral+Practice%40commonName%3DMorrison+S\nhttp://worldres.lycos.com/script/gen_amen.asp?hotel_id=2252&n=2089\nhttp://tulips.ntu.edu.tw/search*chi/dSymbolism+in+fairy+tales/dsymbolism+in+fairy+tales/-5,-1,0,B/browse\nhttp://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-clocks/pclock/\nhttp://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-clocks/xtimer/\nhttp://polygraph.ircache.net:8181/cgi-win/lincoln/$cgi4wpro.exe/http_-2www.k56.com/http_-2www.webexplorer.net/c/SHLFFREZ.HTM\nhttp://www.ecs.soton.ac.uk/~seg7/private/contact.html\nhttp://wiem.onet.pl/wiem/00de68-s.html\nhttp://lcweb2.loc.gov/ll/llnt/008/?M=A\nhttp://www.alladvantage.com/pressroom.asp?refid=CBI-463\nhttp://herndon1.sdrdc.com/cgi-bin/ind_detail/FERRELL|PORTER|FORT+WORTH|TX|76107|SINGLE+SERVER+COMMUNICATIONS/\nhttp://herndon1.sdrdc.com/cgi-bin/ind_detail/HARRIS|WILLIAM|FAIRFAX|VA|22031|HARRIS+AND+ASSOCIATES/\nhttp://herndon1.sdrdc.com/cgi-bin/ind_detail/HUTCHER|LARRY|NEW+YORK|NY|10023|DAVIDOFF+AND+MALITO/\nhttp://herndon1.sdrdc.com/cgi-bin/ind_detail/ISIKOFF|NATHAN+R|WASHINGTON|DC|20007|CAREY-WINSTON+CO/\nhttp://www.linux.com/networking/network/communications/security/wireless/protocol/\nhttp://www.linux.com/networking/network/communications/security/wireless/technology/\nhttp://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp\nhttp://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp\nhttp://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www9.hmv.co.uk:5555/do/session/1347779/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/hiddenframe.html\nhttp://pub9.ezboard.com/fwestlifedublinmessageboardwestlifemessageboard.showMessage?topicID=8.topic\nhttp://no.egroups.com/subscribe/hardzero\nhttp://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/index.php\nhttp://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php\nhttp://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bitconomy.php\nhttp://www.hello.co.jp/~daichi2/\nhttp://bbs.nsysu.edu.tw/txtVersion/treasure/ChiaYi/M.937783175.A/M.959916136.M.html\nhttp://chat.hani.co.kr/NetBBS/Bbs.dll/chosun21/lst/qqeq/1/zka/B2-kB2Bp/qqo/PRMY\nhttp://www.gartenfachmarkt.de/haus/schleifen/so.htm\nhttp://links2go.publiweb.com/topic/US_Department_of_Agriculture\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=14,15,6,36,22\nhttp://www.linux.com/networking/network/new/hardware/open_source/operating_system/\nhttp://www.linux.com/networking/network/new/hardware/open_source/availability/\nhttp://tokyo.cool.ne.jp/pure0101/Oblivion_dust.html\nhttp://www.digitaldrucke.de/(aktuell,computer,gaestebuch,hilfe,hilfeallgemein,individualverkehr,kultur,onlineservice,peripherie,sense,veranstaltungen,verkehr)/_fort/html/themen/computer/hard/links/mitsu.htm\nhttp://www.gbnf.com/genealogy/jenkins/html/d0097/I4129.HTM\nhttp://www.geocities.co.jp/Outdoors-River/1625/hakuba0502.htm\nhttp://ftp.fi.debian.org/OpenBSD/src/regress/share/man/\nhttp://www3.buch-per-sms.de/angemeldet.jsp$ID=To7767mC050667397857644736At0.8818825373175998\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=15,25,16,27\nhttp://debian.tod.net/debian/dists/sid/main/binary-sparc/electronics/?D=A\nhttp://hs1.takeoff.ne.jp/~hatuse/\nhttp://polygraph.ircache.net:8181/Keyboards/http_-2www.sky.net/~robertf/handson/engine.html\nhttp://www.gbnf.com/genealogy/jenkins/html/d0005/I3818.HTM\nhttp://sepwww.stanford.edu/oldreports/sep67/old_src/jon/extend/junk.listing\nhttp://www.kol.net/~calldj/cyberstar/map/dw25a.htm\nhttp://citeseer.nj.nec.com/cidcontext/1297195\nhttp://citeseer.nj.nec.com/cidcontext/1297207\nhttp://books.hyperlink.co.uk/xt2/Peace_Verses_War/Cole/Derek/0722329539\nhttp://www.spousehouse.com/\nhttp://futures.homeway.com.cn/lbi-html/news/special/zhzt/jdht/twparty/zhengfu94652.shtml\nhttp://www.yorosiku.net:8080/-_-http://www.zdnet.co.jp/zdii/interviews/interviews.html\nhttp://library.cwu.edu/search/aIdaho+State+University/aidaho+state+university/-5,-1,0,E/frameset&F=aidaho+state+university&2,,0\nhttp://pelit.saunalahti.fi/.1/tucows/preview/68721.html\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=34,20,30,36,32\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=146,t=972959487953431)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=185,t=972959487953431)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,explode=763,forum=7,t=972959487953431)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=870,t=972959487953431)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=890,t=972959487953431)/forums/show.html\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d3/b34,8,1,,1f,1,65,,1f,65,\nhttp://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v4.0x/lp2/bst320/kit/\nhttp://cafe3.daum.net/Cafe-bin/Bbs.cgi/harukypds/rnw/zka/B2-kB2Zq\nhttp://www.digitaldrucke.de/(computer,hilfe)/_fort/html/themen/computer/hard/links/escom.htm\nhttp://www2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d6stdb_\nhttp://www2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d4stdc_\nhttp://www.shopworks.com/index.cfm/action/specials/userid/00029735-2E1C-19FE-AF65010C0A0A8CF2\nhttp://www.shopworks.com/index.cfm/action/search/userid/00029735-2E1C-19FE-AF65010C0A0A8CF2\nhttp://www.helpnow.net.cn/helpnow/hardware/bbs/cpu/?D=A\nhttp://books.hyperlink.co.uk/xt1/Light_My_Fire/Manzarek/Ray/0099280655\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/src/crypto/heimdal/appl/ftp/ftp/?sortby=author\nhttp://tucows.interbaun.com/winme/adnload/5147_28523.html\nhttp://tucows.interbaun.com/winme/adnload/137019_28530.html\nhttp://moviestore.zap2it.com/browse/MOVIES/COLLECTI/s.NedNjpDf\nhttp://moviestore.zap2it.com/browse/MOVIES/STRAW/s.NedNjpDf\nhttp://www.online.kokusai.co.jp/Words/V0043505/wrd/G700/words/kana_main.html\nhttp://www.mirror.edu.cn/res/sunsite/pub/X11/contrib/window_managers/gwm/patches/gwm_patch_1.8a_001\nhttp://www.musicblvd.com/cgi-bin/tw/270242907922133_20_hip\nhttp://www.cowo.de/archiv/1991/21/9121c045.html\nhttp://www.russ.ru:8080/netcult/nevod/19990827-pr.html\nhttp://usol.linux.tucows.com/x11html/preview/26680.html\nhttp://usol.linux.tucows.com/x11html/preview/10385.html\nhttp://yp.gates96.com/7/22/20/54.html\nhttp://yp.gates96.com/7/22/20/67.html\nhttp://yp.gates96.com/7/22/20/71.html\nhttp://yp.gates96.com/7/22/22/26.html\nhttp://yp.gates96.com/7/22/22/55.html\nhttp://yp.gates96.com/7/22/22/74.html\nhttp://yp.gates96.com/7/22/22/94.html\nhttp://yp.gates96.com/7/22/23/38.html\nhttp://yp.gates96.com/7/22/23/59.html\nhttp://yp.gates96.com/7/22/24/43.html\nhttp://yp.gates96.com/7/22/24/60.html\nhttp://yp.gates96.com/7/22/24/64.html\nhttp://yp.gates96.com/7/22/24/66.html\nhttp://yp.gates96.com/7/22/24/72.html\nhttp://yp.gates96.com/7/22/24/85.html\nhttp://yp.gates96.com/7/22/26/11.html\nhttp://yp.gates96.com/7/22/26/69.html\nhttp://yp.gates96.com/7/22/27/3.html\nhttp://yp.gates96.com/7/22/27/11.html\nhttp://yp.gates96.com/7/22/27/22.html\nhttp://yp.gates96.com/7/22/27/48.html\nhttp://yp.gates96.com/7/22/27/69.html\nhttp://yp.gates96.com/7/22/28/13.html\nhttp://yp.gates96.com/7/22/28/30.html\nhttp://yp.gates96.com/7/22/29/39.html\nhttp://yp.gates96.com/7/22/29/58.html\nhttp://www.allgemeine-immobilien-boerse.de/frankfurt/verkauf/Gemeinsam/Super-Zins-Konditionen/Private-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm\nhttp://cobrand.altrec.com/shop/detail/8470/9/description\nhttp://oa-nett.no/0/73/90/2.html\nhttp://www.nordi.no/~steinsk/\nhttp://www02.geocities.co.jp/Stylish/6692/\nhttp://no.egroups.com/login.cgi?login_target=%2Fmessages%2Fsan-diego-tango\nhttp://no.egroups.com/message/san-diego-tango/390\nhttp://www.jamba.de/KNet/_KNet-m_C8j1-PFd-13bt7/showInfo-special1.de/node.0/cenv0b09a\nhttp://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/immolink/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Startseite/Gemeinsam/versicherungen/gebaeude/Startseite/froben.htm\nhttp://it.egroups.com/post/pimnews-homeworker?act=reply&messageNum=661\nhttp://members.es.tripod.de/remoto/t2/p3b.htm\nhttp://no.egroups.com/post/Translat2000?act=reply&messageNum=530\nhttp://www.opengroup.com/pabooks/081/0816631352.shtml\nhttp://www6.freeweb.ne.jp/feminine/ki18/portrait10/p21.htm\nhttp://genforum.genealogy.com/cgi-genforum/forums/cantrell.cgi?2117\nhttp://www9.hmv.co.uk:5555/do/session/1347769/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d30_sd0_pt0.html\nhttp://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/http_-2www.scruz.net/~dvb/cam.html\nhttp://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/~logan/\nhttp://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/http_-2hits.omino.com/\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://epidem13.plantsci.cam.ac.uk/~js/glossary/course-glossary.html\nhttp://www.hellefors.se/ulf/akno/alla/p0349c5e1e.html\nhttp://home.no.net/islamnor/had.sira.html\nhttp://www.gutenberg2000.de/immerman/muenchim/muen1171.htm\nhttp://www.gutenberg2000.de/immerman/muenchim/muen3091.htm\nhttp://www.gutenberg2000.de/immerman/muenchim/muen7011.htm\nhttp://www.sikhnet.com/sikhnet/music.nsf/by%20Shabad!OpenView&Start=30&Count=20&Expand=2\nhttp://www.proteome.com/databases/PombePD/reports/SPCC613.01.html\nhttp://www.midwestvanlines.com/oh/indexC.html\nhttp://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/stable/contrib/binary-arm/electronics/?S=A\nhttp://members.tripod.com/~infolog/Genhouses/Chap12.htm\nhttp://www.4positiveimages.com/4positiveimages/1998693855/UserTemplate/2\nhttp://www.greenleaves.com/bookcat/gb_096855900X.html\nhttp://www-rn.informatik.uni-bremen.de/home/X11R6/xc/doc/hardcopy/test/?M=A\nhttp://rex.skyline.net/html/Shipping_of_Goods.html?48,airplanes,transportation,collectibles,transportation\nhttp://rex.skyline.net/html/Automobile_Classified_Listings.html?59,airplanes,transportation,collectibles,transportation\nhttp://www.admin.co.martin.fl.us/GOVT/depts/cas/corresp/2000/cas00l.133.html\nhttp://www.admin.co.martin.fl.us/GOVT/depts/cas/corresp/2000/cas00l.126.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380834/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hpstore.hewlett-packard.fr/gp\nhttp://link.fastpartner.com/do/session/600367/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/no/\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-library.lbl.gov/photo/gallery/\nhttp://dogbert.wu-wien.ac.at/UniverCD/cc/td/doc/product/core/cis12012/bfrcfig/4334acps/?M=A\nhttp://ftp.uni-stuttgart.de/pub/tex/nonfree/support/latexdraw/doc/ltdmanual.html.g/node10.html\nhttp://se.egroups.com/message/911dispatchers/718\nhttp://ftp.eecs.umich.edu/.1/people/jfr/Pinata_Book/?D=A\nhttp://community.bigchalk.com/servlet/schools_ProcServ/DBPAGE=cge&GID=66001000660906746080215398&PG=66001000660906746080492039\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=16,27,29,4\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=22,27,29,4\nhttp://pds.nchu.edu.tw/cpatch/ftp/dap/cdap_4002.txt\nhttp://pds.nchu.edu.tw/cpatch/ftp/dap/source/\nhttp://kuyper.calvin.edu/fathers2/ANF-03/anf03-22.htm\nhttp://kuyper.calvin.edu/fathers2/ANF-03/anf03-27.htm\nhttp://blisty.internet.cz/1250/9908/19990813a.html\nhttp://ring.shibaura-it.ac.jp/archives/doc/jpnic/minutes/committee/200008/shiryou-2-8-2.txt\nhttp://194.128.65.4/pa/cm199697/cmhansrd/vo970306/text/70306w14.htm\nhttp://www.mortgagemag.com/guide/c096/c096573.htm\nhttp://link.fastpartner.com/do/session/600369/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php\nhttp://link.fastpartner.com/do/session/600369/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php\nhttp://cometweb01.comet.co.uk/do!session=132008&vsid=692&tid=20&cid=37051&mid=1000&rid=1060&chid=1702&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0\nhttp://www.vh.org///////Patients/IHB/FamilyPractice/AFP/November1994/HormoneReplacement.html\nhttp://ftp.sunet.se/pub/unix/OpenBSD/distfiles/md5/74892a6ae002937d011d3e1102269b7f/?M=A\nhttp://www.pcdads.com/pressroom/archive/releases/cn112999.htm\nhttp://www.pcdads.com/pressroom/archive/releases/Fe90199a.htm\nhttp://www.pcdads.com/pressroom/archive/releases/Cn042199.htm\nhttp://www.cheap-cds.com/surf/order/017172\nhttp://www.hani.co.kr/ECONOMY/data/9909/day09/print/p00909060.html\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/MarketingStrategie/Startseite/Gemeinsam/Inserieren/Gemeinsam/Gemeinsam/versicherungen/unfall/anforderungsformular.htm\nhttp://www.sj-rmall.com/Mall/Catalog/Product/ASP/product-id/57419/store-id/1000400121.html\nhttp://www.travelodge.com/ctg/cgi-bin/Travelodge/home/AAAksrACwAAABvTAAd\nhttp://ctc.org.cn/ctc2/news/internet/develop/news0322-6.htm\nhttp://www.schlagertempel.de/FallbachTrio/B000025MBP.htm\nhttp://www.fogdog.com/cedroID/ssd3040183238127/nav/products/nike/1b/all/10.html\nhttp://www.fogdog.com/cedroID/ssd3040183238127/customer_service/security_policy.html\nhttp://in.egroups.com/login.cgi?login_target=%2Fgroup%2Fradiotutorium\nhttp://yp.gates96.com/7/87/70/43.html\nhttp://yp.gates96.com/7/87/70/61.html\nhttp://yp.gates96.com/7/87/71/85.html\nhttp://yp.gates96.com/7/87/72/75.html\nhttp://yp.gates96.com/7/87/73/1.html\nhttp://yp.gates96.com/7/87/73/5.html\nhttp://yp.gates96.com/7/87/73/60.html\nhttp://yp.gates96.com/7/87/74/34.html\nhttp://yp.gates96.com/7/87/75/9.html\nhttp://yp.gates96.com/7/87/75/50.html\nhttp://yp.gates96.com/7/87/75/92.html\nhttp://yp.gates96.com/7/87/76/2.html\nhttp://yp.gates96.com/7/87/76/59.html\nhttp://yp.gates96.com/7/87/76/92.html\nhttp://yp.gates96.com/7/87/78/30.html\nhttp://yp.gates96.com/7/87/78/32.html\nhttp://yp.gates96.com/7/87/78/75.html\nhttp://yp.gates96.com/7/87/78/85.html\nhttp://yp.gates96.com/7/87/78/93.html\nhttp://yp.gates96.com/7/87/79/30.html\nhttp://yp.gates96.com/7/87/79/50.html\nhttp://yp.gates96.com/7/87/79/71.html\nhttp://yp.gates96.com/7/87/79/85.html\nhttp://interhotel.com/luxembourg/es/hoteles/45691.html\nhttp://interhotel.com/luxembourg/es/hoteles/73094.html\nhttp://bart.kullen.rwth-aachen.de/~quake3/Html_log/471_chat.html\nhttp://search.yam.com.tw/en/search/rec/travel/domest/resorts/miaolir/\nhttp://www.narodnaobroda.sk/19991009/23_006.html\nhttp://news.china.com/zh_cn/social/1007/20001027/7624.html\nhttp://www.fila.com.br/\nhttp://www.jobvillage.com/channel/jobs/health_care/female_health/b.3122.g.2360.html\nhttp://online.excite.de/bildung/katalog/35461\nhttp://deportes.ole.com/ocio/articulo/articulo.cfm?ID=OCI8055\nhttp://yp.gates96.com/3/36/90/2.html\nhttp://yp.gates96.com/3/36/90/37.html\nhttp://yp.gates96.com/3/36/90/55.html\nhttp://yp.gates96.com/3/36/90/79.html\nhttp://yp.gates96.com/3/36/91/7.html\nhttp://yp.gates96.com/3/36/92/59.html\nhttp://yp.gates96.com/3/36/92/95.html\nhttp://yp.gates96.com/3/36/93/76.html\nhttp://yp.gates96.com/3/36/93/88.html\nhttp://yp.gates96.com/3/36/94/41.html\nhttp://yp.gates96.com/3/36/94/64.html\nhttp://yp.gates96.com/3/36/95/16.html\nhttp://yp.gates96.com/3/36/95/33.html\nhttp://yp.gates96.com/3/36/95/39.html\nhttp://yp.gates96.com/3/36/96/36.html\nhttp://yp.gates96.com/3/36/96/53.html\nhttp://yp.gates96.com/3/36/99/30.html\nhttp://yp.gates96.com/3/36/99/73.html\nhttp://download.sourceforge.net/mirrors/turbolinux/turbolinux-cn/pub/turbolinux/updates/TLC3.0.2/?S=D\nhttp://www.jobvillage.com/channel/jobs/administrative/mrd/courier/b.4728.g.3366.html\nhttp://www.jobvillage.com/channel/jobs/administrative/mrd/shipping_clerk/b.4713.g.3366.html\nhttp://quote.fool.com/simple.asp?symbols=NS\nhttp://itcareers.careercast.com/texis/it/itjs/+NwwBmeIXD86dxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaqdMp1BnGadpnGwBodD5aMw55wqr15nBB5aqdGpdGwBnahoDwDqowcaMwocaBn5BoDtapGdxcnMaMFqhTfR20DzmetmwwwpBme_9D86eYmwww5rme1DwwwBrmeZpwww/jobpage.html\nhttp://www.shopworks.com/index.cfm/action/info/userid/00066256-1160-19FE-A703010D0A0A8CF2\nhttp://isbn.nu/0716723212/fatbrain\nhttp://isbn.nu/0716723212/amazon.ceo.html\nhttp://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/www/p5-URI/?N=D\nhttp://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/preparer/sante.htm\nhttp://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html\nhttp://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/DE_DE/\nhttp://www.linux.com/networking/network/support/open_source/investors/consulting/\nhttp://www.linux.com/networking/network/support/open_source/investors/research/\nhttp://sunsite.uakom.sk/doc/FAQ/alt-sex/fetish-fashion/?S=A\nhttp://sunsite.uakom.sk/doc/FAQ/alt-sex/fetish-fashion/?D=A\nhttp://phnet.tucows.com/winme/preview/75994.html\nhttp://www.fivedoves.com/letters/june99/trish67.htm\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,8571/yid,4064381\nhttp://pub24.ezboard.com/fnightmagicfrm1.showMessage?topicID=3.topic\nhttp://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=53.28&Count=30&Expand=54\nhttp://www.linux.com/networking/network/communications/management/windows_nt/website/\nhttp://www.linux.com/networking/network/communications/management/windows_nt/?kw_offset=50\nhttp://www.epinions.com/cmd-review-593A-C9BAC2B-3987B6DC-prod1\nhttp://www.bande-dessinee.org/bd/bd02.nsf/InterDescenaristes!OpenView&Start=1&Count=50&Collapse=51\nhttp://www.business-partner.ch/static/fr/pourlesfirmes/lesgrandesentreprises/whateveryouwant/solutionsspecifiquesalabranche/transport/main.html\nhttp://ads.carltononline.com/accipiter/adclick/site=purejamba/area=JAMBA.HOME_PAGE/AAMSZ=KSJAMBA//ACC_RANDOM=972959547161\nhttp://expert.cc.purdue.edu/~yoko/simpsons/front.html\nhttp://dailynews.sina.com.cn/society/2000-06-14/97332.html\nhttp://ftp.dti.ad.jp/pub/Linux/debian-jp/dists/potato/main/binary-all/editors/?M=A\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041124.1.5608817466\nhttp://www9.hmv.co.uk:5555/do/session/1347791/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d100_sd0_pt0.html\nhttp://www.jobvillage.com/channel/jobs/health_care/pharmaceutical/pharmacist/b.3231.g.1267.html\nhttp://yp.gates96.com/11/24/80/12.html\nhttp://yp.gates96.com/11/24/80/18.html\nhttp://yp.gates96.com/11/24/80/84.html\nhttp://yp.gates96.com/11/24/80/90.html\nhttp://yp.gates96.com/11/24/81/6.html\nhttp://yp.gates96.com/11/24/81/9.html\nhttp://yp.gates96.com/11/24/81/54.html\nhttp://yp.gates96.com/11/24/81/74.html\nhttp://yp.gates96.com/11/24/81/98.html\nhttp://yp.gates96.com/11/24/82/17.html\nhttp://yp.gates96.com/11/24/82/96.html\nhttp://yp.gates96.com/11/24/83/54.html\nhttp://yp.gates96.com/11/24/83/58.html\nhttp://yp.gates96.com/11/24/84/44.html\nhttp://yp.gates96.com/11/24/84/52.html\nhttp://yp.gates96.com/11/24/84/63.html\nhttp://yp.gates96.com/11/24/85/35.html\nhttp://yp.gates96.com/11/24/85/77.html\nhttp://yp.gates96.com/11/24/85/78.html\nhttp://yp.gates96.com/11/24/87/15.html\nhttp://yp.gates96.com/11/24/87/77.html\nhttp://yp.gates96.com/11/24/88/0.html\nhttp://yp.gates96.com/11/24/88/63.html\nhttp://yp.gates96.com/11/24/89/93.html\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/listUnseen/fol/100001/20,0/2498053\nhttp://www.zeenzone.com/movies/1,4003,1040-21565,00.html\nhttp://www.zeenzone.com/movies/1,4003,1040-99354,00.html\nhttp://www.zeenzone.com/movies/1,4003,1040-109493,00.html\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/author/627181\nhttp://moshkow.rsl.ru/alt/MORUA/letters.txt\nhttp://members.tripod.co.jp/muttley2000/?M=A\nhttp://www.shopworks.com/index.cfm/action/specials/userid/000A8C31-2EFD-19FE-9038010B0A0ADCF2\nhttp://www.bookhome.net/xiandangdai/other1/chunjiang/006.html\nhttp://www.bookhome.net/xiandangdai/other1/chunjiang/013.html\nhttp://www.dailyrush.dk/clans/145\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/auto/0210/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/brandenburg/0011/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0077/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0009/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0111/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0117/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0014/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/sport/0018/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/sport/0158/\nhttp://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/tv/0209/\nhttp://www.multicosm.com/facade/www.contigo.com/\nhttp://www.boston.digitalcity.com/cincinnati/health/conditions.dci?condition=sids\nhttp://www.onlineathens.com/1998/041498/0414.a2zbriefs.html\nhttp://ist.linux.tucows.com/conhtml/adnload/52224_1782.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/-2hIv4VApV7948YHO6tPdd62dgSdHSwg0xTrLhYidK4__IjhefvQTQrwpTMkkPdR5C5XRGbdA57_pJIxtMRvHJmrtjKdnzn_di6Er9p9vwIk1rLYwssqdvQbgeNAvSgd2M1a7O5NWleCth4ETxMfqPQS\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/VwhIXbmwUfG9PK362Tf07_xy8BQY7YBwNspFlCmPD_syQhuUcYEAU2eNoW3Liccn5fOj3JHbx2nCG9Tkl-PZwI9bR0uW5_3bO8O3kRwFm2Sp0E8MBNqJ9FvuLKt4pS_X3qzA8sbHcygn7lFrBe9ZZqi565Rs\nhttp://www.crutchfield.com/cgi-bin/S-5ILchLS19Z9/auto.asp\nhttp://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/7cdda9dbc7e2b2bb002564ac00393b48!OpenDocument&ExpandSection=1,7,6\nhttp://opac.lib.ntnu.edu.tw/search*chi/m92+R627/m92+r627/-5,-1,0,B/buttonframe&F=m92+r449m&1,1\nhttp://www03.u-page.so-net.ne.jp/fc4/kazumasa/tdl/side2/side2.html\nhttp://launchbase.com/Home/Personal_Organization/communication/information/Bank_Rates_&_Info.htm\nhttp://launchbase.com/Home/Personal_Organization/communication/entertainment/Sports.htm\nhttp://launchbase.com/Home/Personal_Organization/communication/shopping/Flowers.htm\nhttp://launchbase.com/Home/Personal_Organization/communication/shopping/Pro-Audio.htm\nhttp://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959587--\nhttp://channel.nytimes.com/1998/10/15/technology/\nhttp://www.la.gunma-u.ac.jp/S97/thtml/m/kiso/41808.html\nhttp://www1.ocn.ne.jp/~yaiba/_private/kobanasi/tyouhen/haraguroido/noroi.htm\nhttp://www.duluxvalentine.com/FRANCE:1161209847:DFinity.1QJiP4jmPgipihoa\nhttp://fi.egroups.com/messages/mediamalle-letter/6\nhttp://personal.wol.com.cn/lxz20a/gp13.htm\nhttp://eclat.gaiax.com/www/eclat/y/k/yoko_mama/main.html\nhttp://eclat.gaiax.com/www/eclat/y/k/yoko_mama/bbs.html\nhttp://findmail.com/login.cgi?login_target=%2Fgroup%2Fohsama-iroiro\nhttp://www.fogdog.com/cedroID/ssd3040183248487/crs/po__/wld/fogdog_sports/superfeet/outdoor/footwear/green_hi-profile.html\nhttp://www.fogdog.com/cedroID/ssd3040183248487/nav/stores/baseball/\nhttp://www.fogdog.com/cedroID/ssd3040183248487/nav/stores/winter_sports/\nhttp://www.consource.com/members/signup/signup_temp_user.html?tAccountID=561\nhttp://213.36.119.69/do/session/152994/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/voit.htm\nhttp://213.36.119.69/do/session/152994/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/BE_NL/\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?r1=1.62&sortby=rev\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?annotate=1.53&sortby=rev\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?r1=1.46&sortby=rev\nhttp://www.aelita.net/products/solutions/sitemap/Reg/QuoteRegister/solutions/products/default.htm\nhttp://sunsite.org.uk/public/public/packages/pine/docs/?S=A\nhttp://sunsite.org.uk/public/public/packages/pine/docs/QandA.txt\nhttp://www.sfc.keio.ac.jp/~s98008na/miniproject/0.html\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867760/Catalog/1000023\nhttp://www.msn.expedia.co.uk/wg/Africa/Mauritius/P39048.asp\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/rakennesuunnittelu/talonrakennus/rakennukset/ohjeet/\nhttp://www.ericsson.cl/education/centers/dtmexic.shtml\nhttp://ftp.gigabell.net/debian/dists/Debian2.2r0/main/binary-powerpc/web/?S=A\nhttp://dirs.educationamerica.net/Colorado/Localities/C/Colorado_Springs/News_and_Media/Television/\nhttp://polygraph.ircache.net:8181/services/define/jeff/http_-2web01.hq.cyberserv.com/ryanhomes/http_-2www.travelsc.com/cgi-bin/news/NewsList.cfm?ID=1\nhttp://salinas2000.com/index.cfm/r/960/a/95.htm\nhttp://213.36.119.69/do/session/152988/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml\nhttp://213.36.119.69/do/session/152988/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/connaitre/questions-reponses.htm\nhttp://ftp.cpan.org/src/5.0/sperl-2000-08-05/?D=A\nhttp://virtualpubliclibrary.com/hallofanima/moresports/JOELOUIS.ORG//hallofanima/music/\nhttp://x500.rz.uni-karlsruhe.de:8000/Lcn%3dMonika%20Vogel,%20ou%3dPersonalabteilung,%20ou%3dUniversitaetsleitung%20und%20-verwaltung,%20o%3dUniversitaet%20Konstanz,%20c%3dDE\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/korean/pine/files/patch-ai?only_with_tag=RELEASE_2_2_2\nhttp://ftp.ring.gr.jp/archives/XFree86/4.0.1/binaries/Linux-ix86-glibc21/RELNOTES\nhttp://homepage1.nifty.com/SAKURAISANS/itoshi.html\nhttp://www.expage.com/savetucker\nhttp://ring.edogawa-u.ac.jp/archives/pack/os2/prog/rexx/?N=D\nhttp://www.saarreisen.de/rueckel-reisen/fluege-buchen/barbados/reise-ibiza.htm\nhttp://debian.linux.org.tw/debian/dists/sid/contrib/binary-powerpc/interpreters/?S=A\nhttp://ricoh.co.jp/rtoss/School/other/other/lotus_syo/pg7.html\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus52213/eus52841/eus236353/eus591199/eus937052/\nhttp://www.mapion.co.jp/custom/AOL/admi/23/23101/higashiyamatori/4chome/index-17.html\nhttp://stocks.tradingcharts.com/stocks/charts/swti-bb/w/javachart\nhttp://ftp.univ-lyon1.fr/gnu/Manuals/diffutils-2.7/html_chapter/diff_15.html\nhttp://www.elfoco.com/EL_Foco/CDA/PrintPage/1,2171,2_53_28444,00.html\nhttp://www.debian.org.cn/Bugs/db/61/61000.html\nhttp://www.debian.org.cn/Bugs/db/66/66591.html\nhttp://www.debian.org.cn/Bugs/db/57/57112.html\nhttp://www.gxrb.com.cn/26/tbzl.htm\nhttp://opac.lib.rpi.edu/search/dyosemite+national+park+water+resources+development+research+california/-5,-1,0,E/2browse\nhttp://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/src/usr.sbin/dhcp/client/scripts/openbsd\nhttp://attach1.egroups.com/attach/1087162/28/gs-108=71=1087162/10-1-10-160/application=octet-stream/IntOrganist.htm\nhttp://www.brainerddispatch.com/stories/071299/obi_0712990015.shtml\nhttp://webusers.siba.fi/doc/HOWTO/en-html/Multi-Disk-HOWTO-27.html\nhttp://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1667-art-30.html\nhttp://www4.ocn.ne.jp/~l-tommy/C1024.html\nhttp://pub13.ezboard.com/fsequelossavannasoftwaredevelopment.showMessage?topicID=74.topic\nhttp://pub13.ezboard.com/fsequelossavannasoftwaredevelopment.showMessage?topicID=109.topic\nhttp://www.z-plus.de/freizeit/kino/galerie/unhold/kritikdpa.html\nhttp://www.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/515/Privatvermieter/326225/Homepage/m_homepage...2.html\nhttp://wap.jamba.de/KNet/_KNet-NKE8j1-2Gd-13c6l/showInfo-wir.de/node.0/cde7f1uou\nhttp://www.refdag.nl/kl/990706kl02.html\nhttp://www.ferien-immobilien.de/nordrhein-Westfalen/soest/Verkauf/Versteigerungen-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Versteigerungen-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm\nhttp://caller-times.com/1999/september/18/today/local_sp/78.html\nhttp://link.fastpartner.com/do/session/600350/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php\nhttp://providenet.tukids.tucows.com/mac/9-12/adnload/11899_25711.html\nhttp://providenet.tukids.tucows.com/mac/9-12/adnload/51475_24795.html\nhttp://fivestar.subportal.com/sn/Network_and_Internet/Dial-up_Networking_Dialers/11735.html\nhttp://www.kenley.londonengland.co.uk/newspaperandmagazinepublishers.htm\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~C~013800~07790',00.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~C~013800~54357',00.html\nhttp://ftp1.support.compaq.com/public/vms/vax/v6.0/sls/2.6/?M=A\nhttp://cpan.clix.pt/authors/id/I/IL/ILYAM/Mail-CheckUser-0.15.readme\nhttp://www.maasvlakte-cam.nl/webcams/23/stavanger__norway/2000/10/12/?D=A\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/music/midi/computers/quizz/lit/arnheim.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/music/midi/computers/quizz/misc/colorart/\nhttp://www.taftp.com/A555D3/WebDir.nsf/MBC!OpenView&Start=89.2&Count=30&Expand=106\nhttp://jundavid.subportal.com/sn/Shell_and_Desktop/Animal_Cursors/11879.html\nhttp://www.netitor.com/photos/schools/ucla/sports/m-wpolo/98-99action/?M=A\nhttp://cpan.nitco.com/modules/by-module/Devel/MSCHWERN/Class-DBI-0.03.readme\nhttp://cpan.nitco.com/modules/by-module/Devel/MSCHWERN/Text-Metaphone-0.02.readme\nhttp://www.digitaldrucke.de/(aktuell,computer,gaestebuch,kino,literatur,nuernberg,rundfunk,sense,veranstaltungen,zeitschriften)/_fort/html/themen/kultur/literat/links/bin.htm\nhttp://194.128.65.4/pa/cm199899/cmhansrd/vo990727/text/90727w01.htm\nhttp://194.128.65.4/pa/cm199899/cmhansrd/vo990727/text/90727w15.htm\nhttp://213.36.119.69/do/session/152989/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/misc/quizz/lit/misc/cv.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/misc/quizz/lit/misc/lit/larme.html\nhttp://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=6,7,3,5,1,8,11\nhttp://www.identer.co.kr/삶의여유/데이트정보/데이트정보/\nhttp://allmacintosh.arrakis.es/adnload/54801.html\nhttp://link.fastpartner.com/do/session/600380/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/brleksaker.php\nhttp://link.fastpartner.com/do/session/600380/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php\nhttp://icm.html.tucows.com/adnload/001-009-003-014.html\nhttp://www.rakuten.co.jp/coffee/forum/forum-w.cgi?p=131&url=coffee\nhttp://jxi.gov.cn/yw-cj001.nsf/6770fc9e7685796c482568c70008a30a!OpenView&Start=69&Count=30&Expand=70\nhttp://jxi.gov.cn/yw-cj001.nsf/6770fc9e7685796c482568c70008a30a!OpenView&Start=69&Count=30&Expand=72\nhttp://freehomepage.taconet.com.tw/This/is/taconet/top_hosts//tsyang/test9g.htm\nhttp://www11.cplaza.ne.jp/babyweb/bbs/bdnm01/no33/130N.html\nhttp://library.cuhk.edu.hk/search*chi/a憪���/a{213972}{213230}/-5,-1,0,B/frameset&F=a{213972}{213233}{215b34}&1,1\nhttp://library.cuhk.edu.hk/search*chi/a憪���/a{213972}{213230}/-5,-1,0,B/frameset&F=a{213972}{21323e}{213165}+1947&1,1\nhttp://library.cuhk.edu.hk/search*chi/a撱嗅ˊ,+904-975./a{213d32}{213877}++904++975/-5,-1,0,B/frameset&F=a{213d32}{213a67}{213779}{213455}+china+{215f7a}{213579}{213966}{21363e}{21435a}+{214241}{213c37}&1,1\nhttp://www.online.kokusai.co.jp/Service/V0043539/wrd/G200/service/service.html\nhttp://quote.morningstar.com/Quote.html?ticker=GASFX\nhttp://uoi.linux.tucows.com/x11html/adnload/9826_7194.html\nhttp://dk.egroups.com/post/batoco?act=forward&messageNum=2017\nhttp://www.chaos.dk/sexriddle/b/h/l/o/h/\nhttp://www.picktips.com/category-1031-1174_1171_1170-4_3_2\nhttp://www.schmunzelecke.de/pic18.htm\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand20.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand25.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand30.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chimag16.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chimag26.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chlight3.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chspec34.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chspec35.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chview15.html\nhttp://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chvolvi5.html\nhttp://www.t-onlien.de/dtag/mail/kontaktseite/1,3606,160,00.html\nhttp://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_wdsmcn_wdsmcn.html\nhttp://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_mrlinl_tcincn.html\nhttp://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_caouny_hixlcy.html\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=20,9,13,16\nhttp://www.crn.com/sections/BreakingNews/breakingnews.asp?ArticleID=5760\nhttp://dennou-h.ees.hokudai.ac.jp/library/Linux/debian-jp/dists/hamm/main-jp/binary-all/tex/?M=A\nhttp://www.cmyk21.com/photo1-3.htm\nhttp://www.cs.ruu.nl/mirror/CPAN/modules/by-category/14_Security_and_Encryption/User/ILYAZ/images/?N=D\nhttp://www.egroups.com/login.cgi?login_target=%2Fmessage%2FFloodsystems%2F45\nhttp://www.mirnet.org/ccsi/nisorgs/ukraine/kyiv/renaisnc.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=231&discrim=2,125,10\nhttp://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/BRADAPP/PodParser-1.17.readme\nhttp://www.amzn.com.ref.digital-price.com/redir/amzn.com/prods/0553373730\nhttp://library.cwu.edu/search/dGermany+--+Politics+and+government+--+1918-1933/dgermany+politics+and+government+1918+1933/-5,-1,0,B/marc&F=dgermany+politics+and+government+1918+1933+bibliography&1,1,\nhttp://www.multicosm.com/facade/www.unisys.com/partners/default.asp?cn=su\nhttp://enjoy100.com.cn/200006/08/sssh/sssh_ssjp.html\nhttp://enjoy100.com.cn/200006/08/yskj/b_s_big3_f.jpg.html\nhttp://www.hoops.ne.jp/~zuikaku/photo2000/0811/rie11.html\nhttp://pub23.ezboard.com/fiolaniy2kmessageboardfrm1.showMessage?topicID=66.topic\nhttp://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/ULPFR/Wais-2.301.readme\nhttp://www3.newstimes.com/archive99/mar1199/spg.htm\nhttp://ftp1.support.compaq.com/public/vms/axp/v6.2-1h2/dsnlink/2.2/dsnlinkd022.CVRLET_TXT\nhttp://ftp.nacamar.de/pub/redhat/cpan/6.2/CPAN-archive/doc/manual/html/pod/perldsc.html\nhttp://ftp.nacamar.de/pub/redhat/cpan/6.2/CPAN-archive/doc/manual/html/pod/perlfaq5.html\nhttp://info.cs.unitn.it/sdb/de/html/keylist.SOFTWARE.html\nhttp://www.online.kokusai.co.jp/Mmf_corner/V0043545/mmf_corner/mmf_corner/url\nhttp://www.office.com/global/0,2724,66-15915,FF.html\nhttp://polygraph.ircache.net:8181/home/ISO9001.htm\nhttp://www.allgemeine-immobilien-boerse.de/niedersachsen/emsland/Verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/hilfe.htm\nhttp://launchbase.com/Health/Home_Health/communication/information/Science.htm\nhttp://library.cwu.edu/search/aLockyer,+Norman,+Sir,+1836-1920/alockyer+norman+sir+1836+1920/-17,-1,0,B/frameset&F=alockwood+victoria+s+1953&1,1\nhttp://bbs.kcm.co.kr/NetBBS/Bbs.dll/chbod05/lst/qqa/r/qqo/004D/zka/B2-kCYFl\nhttp://www.egroups.com/post/bhagavad_gita?act=forward&messageNum=101\nhttp://carriage.de/Schoner/Literatur/info-e/Geschichte/modelle/\nhttp://carriage.de/Schoner/Literatur/info-e/Geschichte/history/\nhttp://carriage.de/Schoner/Literatur/info-e/Geschichte/literature/\nhttp://wwwftp.ciril.fr/pub/linux/kernel///people/andrea/kernels\nhttp://www.inctechnology.com/guide/item/0,7462,AGD6_GDE79,00.html\nhttp://live.sportsline.com/u/basketball/college/teams/injuries/VATECH.htm\nhttp://www-1.cisco.com/univercd/cc/td/doc/product/lan/28201900/1928v67x/28icg67x/28icpref.pdf\nhttp://www.hitlist.com/music/presult/003948.php3\nhttp://ip.tosp.co.jp/Eki/TosiE000.asp?I=Jerryfish\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(20,0)-16,0-9,2\nhttp://www.bigchurch.com/cgi-bin/w3com/pws/bc/RLhIotYxW-B0bt7seq4d876RzKIuJDYbydJP1qooxhzSKDVca77BUHQv6tsO2JdNpkx837SBl7FHRIEy00rmcLBk9Y1kQEmni0_YSk5mrym8WALtovIPQU_vlEtiMcNswNyh9z6CjU-2oS2uurrk666t\nhttp://www.secinfo.com/d2wVq.7hv.htm\nhttp://www.secinfo.com/d2wVq.6yd.htm\nhttp://www.secinfo.com/d2wVq.6Y5.htm\nhttp://www.secinfo.com/d2wVq.5gf.htm\nhttp://www.secinfo.com/d2wVq.5hp.htm\nhttp://www.secinfo.com/d2wVq.5y4.htm\nhttp://ring.htcn.ne.jp/pub/text/CTAN/graphics/psfig/unsupported/macdemo/macfigs/?N=D\nhttp://ring.htcn.ne.jp/pub/text/CTAN/graphics/psfig/unsupported/macdemo/macfigs/?M=A\nhttp://books.hyperlink.co.uk/xt2/Drakelow_Unearthed/Stokes/Paul/0904015408\nhttp://www.homestead.com/rebeccah/files/\nhttp://sunsite.compapp.dcu.ie/pub/linux/redhat/redhat-6.1/alpha/usr/share/locale/ga_IE/LC_TIME\nhttp://www.gbnf.com/genealogy/rockwel4/html/d0037/I2684.HTM\nhttp://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/aindex18.html\nhttp://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/aindex12.html\nhttp://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/atg05.html\nhttp://shn.webmd.net/content/article/1700.50808\nhttp://home.clara.net/cornell/woodcraft/spring2000/contents.htm\nhttp://dic.empas.com/show.tsp/EDACITY\nhttp://www.sanxia.net/beauty/Eriimai/417.htm\nhttp://www.judds-resort.com/judds/Lake-Winni-pike-lodge/97menu/fallphoto/playground/boat/photo/12.html\nhttp://www.judds-resort.com/judds/Lake-Winni-pike-lodge/97menu/fallphoto/playground/boat/fallphoto/2.html\nhttp://imageserver2.tibetart.com:8087/fif=fpxbuddhistreverse/56.fpx&init=0.0,0.0,1.0,1.0&rect=0.0,0.25,0.5,0.75&wid=1443&hei=400&lng=en_US&enablePastMaxZoom=OFF&page=image.html&obj=uv,1.0&cmd=W\nhttp://www.jamba.nl/KNet/_KNet-krE8j1-KC4-pv5y/showInfo-hilfe.nl/node.0/ce6u2jadf\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/011639.1.3372173854\nhttp://community.webshots.com/photo/441160/441363\nhttp://www.kaos.dk/sexriddle/x/n/d/x/b/\nhttp://isbn.nu/088730866X/chapters\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1992-93/AUS_LOCAL/MMC/WA_NSW_MMC_11OCT1992.html\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1991-92/AUS_LOCAL/FAI/WA_TAS_FAI_11OCT1991.html\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1991-92/AUS_LOCAL/FAI/WA_QLD_FAI-SEMI_19OCT1991.html\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1980S/1987-88/AUS_LOCAL/MDC/WA_SOA_MDC_06MAR1988.html\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1980S/1981-82/AUS_LOCAL/MDC/QLD_WA_MDC_08NOV1981.html\nhttp://www.chaos.dk/sexriddle/x/k/l/y/h/\nhttp://tucows.teihal.gr/winnt/preview/6004.html\nhttp://tucows.teihal.gr/winnt/preview/5986.html\nhttp://tucows.teihal.gr/winnt/preview/71328.html\nhttp://tucows.teihal.gr/winnt/preview/2757.html\nhttp://www.medoc-ias.u-psud.fr:81/synoptic/gif/950724/?N=D\nhttp://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=18,7,21,20,4\nhttp://members.xoom.fr/logart/Anciens/Liste25/Selection_Navlist25.html\nhttp://polygraph.ircache.net:8181/http_-2www.arthritis.org/http_-2pathfinder.com/si/swimsuit/swim97/terms2.html\nhttp://polygraph.ircache.net:8181/http_-2www.arthritis.org/http_-2pathfinder.com/si/swimsuit/swim97/products2.html\nhttp://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-m68k/current/doc/\nhttp://findmail.com/dir/Arts/Writing/Fan_Fiction?st=1943\nhttp://www.telecombroker.com/q/001p/tgcb/4izQYz7mc.htm\nhttp://www.free-phone.com/q/001p/tgcb/ItMd2D3jdEM.htm\nhttp://www.123bestlongdistance.com/q/001p/tgcb/msN54jfl4mE.htm\nhttp://www.netitor.com/photos/schools/nw/sport/w-baskbl/97action/?S=A\nhttp://excite.de/katalog/katalog/33823\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/music/midi/lit/misc/unitest/programs/\nhttp://yp.gates96.com/14/43/40/9.html\nhttp://yp.gates96.com/14/43/40/43.html\nhttp://yp.gates96.com/14/43/40/82.html\nhttp://yp.gates96.com/14/43/40/85.html\nhttp://yp.gates96.com/14/43/41/6.html\nhttp://yp.gates96.com/14/43/41/18.html\nhttp://yp.gates96.com/14/43/41/44.html\nhttp://yp.gates96.com/14/43/41/96.html\nhttp://yp.gates96.com/14/43/42/12.html\nhttp://yp.gates96.com/14/43/46/38.html\nhttp://yp.gates96.com/14/43/46/66.html\nhttp://yp.gates96.com/14/43/46/68.html\nhttp://yp.gates96.com/14/43/47/4.html\nhttp://yp.gates96.com/14/43/47/37.html\nhttp://yp.gates96.com/14/43/47/64.html\nhttp://yp.gates96.com/14/43/47/68.html\nhttp://yp.gates96.com/14/43/47/70.html\nhttp://yp.gates96.com/14/43/48/68.html\nhttp://yp.gates96.com/14/43/48/69.html\nhttp://yp.gates96.com/14/43/49/7.html\nhttp://yp.gates96.com/14/43/49/36.html\nhttp://yp.gates96.com/14/43/49/37.html\nhttp://yp.gates96.com/14/43/49/52.html\nhttp://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/5P005|972959562|Accessories|user|0|1,0,0,1\nhttp://school.educities.org/card/judy180.html\nhttp://207.138.41.133/message/the-voice1/123\nhttp://207.138.41.133/message/the-voice1/124\nhttp://www-d0.fnal.gov/d0dist/dist/releases/p05.00.00/muo_analyze/?S=A\nhttp://sjsulib1.sjsu.edu:81/search/cernest+haberkern+director/-5,-1,0,B/frameset&cgeorge+miller+director&1,1\nhttp://ring.nii.ac.jp/pub/pack/x68/net/00_index.txt\nhttp://pub24.ezboard.com/fdoyoustillneedtoventfrm43.showMessage?topicID=19.topic\nhttp://pub24.ezboard.com/fdoyoustillneedtoventfrm43.showMessage?topicID=15.topic\nhttp://ukinvest.ukwire.com/articles/200007200700261473O.html\nhttp://www.brd.net/brd-cgi/brd_multimedia/lautsprecher/LZ7460LK/ci=972822952.htm\nhttp://my.netian.com/~haeng14/tatler_july6.htm\nhttp://genforum.genealogy.com/cgi-genforum/forums/anderton.cgi?122\nhttp://www.excelsior.com.mx/0001/000125/for03.html\nhttp://www.jobvillage.com/channel/jobs/sciences/b.9070.g.1675.html\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/contact.html?annotate=1.19&sortby=author\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/contact.html?r1=1.12&sortby=author\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1998-99/jmc1/labs/Ex06/skw98/?N=D\nhttp://www.jamba.de/KNet/_KNet-fNw8j1-6Fd-13acp/browse.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-fNw8j1-6Fd-13act/browse.de/node.0/cdel3j591\nhttp://www.nedstat.nl/cgi-bin/viewstat?name=mrbertmat\nhttp://no.egroups.com/message/acessibilidade/1092\nhttp://no.egroups.com/message/acessibilidade/1099\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|38P08A|972959552|Communications|user|0|1,0,0,1\nhttp://213.36.119.69/do/session/152990/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/spectacles/\nhttp://213.36.119.69/do/session/152990/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/CA_EN/\nhttp://wiki2.parsimony.net/wiki2954/\nhttp://www.f2.parsimony.net/forum2954/messages/214.htm\nhttp://www.f2.parsimony.net/forum2954/messages/181.htm\nhttp://www.f2.parsimony.net/forum2954/messages/292.htm\nhttp://www.f2.parsimony.net/forum2954/messages/115.htm\nhttp://www.f2.parsimony.net/forum2954/messages/290.htm\nhttp://www.f2.parsimony.net/forum2954/messages/54.htm\nhttp://home.pchome.com.tw/cool/162203/wunew15.htm\nhttp://hem.fyristorg.com/lottaleman/LLfar/1_6721.htm\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/011628.1.4596216338\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380833/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp\nhttp://www.outdoorwire.com/content/lists/dirt/200007/msg00127.html?{LoadingFrameset}\nhttp://adept.subportal.com/sn/Programming/ActiveX/11674.html\nhttp://www.staroriental.net/nav/soeg/ihf,aog,s0,10,Lam+Hei-Lui.html\nhttp://www-d0.fnal.gov/d0dist/dist/releases/p05.00.01/man/?N=D\nhttp://members.tripod.com/bluti/PSX/V/VACUUM.HTM\nhttp://connexus.tucows.com/winme/adnload/138384_29728.html\nhttp://wwwtios.cs.utwente.nl/archive/wilyfans/msg00265.html\nhttp://custom.clubnet.zeelandnet.nl/eckhardt/myself.htm\nhttp://ftp.tokyonet.ad.jp/pub/Linux/debian/dists/potato/contrib/binary-arm/otherosfs/?D=A\nhttp://www.amcity.com/charlotte/stories/1997/07/07/daily4.html?t=email_story\nhttp://www.generation-formation.fr/chiffrec.htm---o21zAo0UbDo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqHSezTHkekydMfeZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbi.htm\nhttp://tv.thevines.com/leaf/AA0000369140/2\nhttp://kuyper.calvin.edu/fathers2/NPNF2-02/Npnf2-02-06.htm\nhttp://www.intellicast.com/Ski/World/UnitedStates/Southeast/Florida/FortWaltonBeach/TEMPcast/d0_12/\nhttp://stevebarnes.studiostore.com/aboutus/b.EMERCH/s.P01EBK2I\nhttp://student.monterey.edu/Students_N-R/richterheidil/private/\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s30/ch052.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s30/ch027.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s30/ch077.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s30/ch092.html\nhttp://soneraplaza.tucows.com/winme/adnload/137026_28536.html\nhttp://www.egroups.com/post/realtyindia\nhttp://www.kita.or.kr/untpdc/incubator/zwe/tphar/ZIMB0037.htm\nhttp://citeseer.nj.nec.com/nrelated/126165/187254\nhttp://citeseer.nj.nec.com/cachedpage/187254/1\nhttp://citeseer.nj.nec.com/cidcontext/2417551\nhttp://yp.gates96.com/13/6/1/36.html\nhttp://yp.gates96.com/13/6/1/61.html\nhttp://yp.gates96.com/13/6/1/83.html\nhttp://yp.gates96.com/13/6/1/91.html\nhttp://yp.gates96.com/13/6/3/39.html\nhttp://yp.gates96.com/13/6/3/45.html\nhttp://yp.gates96.com/13/6/3/65.html\nhttp://yp.gates96.com/13/6/4/46.html\nhttp://yp.gates96.com/13/6/4/57.html\nhttp://yp.gates96.com/13/6/5/44.html\nhttp://yp.gates96.com/13/6/6/21.html\nhttp://yp.gates96.com/13/6/6/42.html\nhttp://yp.gates96.com/13/6/7/0.html\nhttp://yp.gates96.com/13/6/7/30.html\nhttp://yp.gates96.com/13/6/7/69.html\nhttp://yp.gates96.com/13/6/7/82.html\nhttp://yp.gates96.com/13/6/8/5.html\nhttp://yp.gates96.com/13/6/8/98.html\nhttp://yp.gates96.com/13/6/9/45.html\nhttp://home.wanadoo.nl/hockeyclub.nieuwegein/Teams/Dames/Dames_IV/body_dames_iv.html\nhttp://pub3.ezboard.com/fthe4thdimensiongeneralinsanity.subscribeUnregisteredToTopic?topicID=38.topic\nhttp://pub3.ezboard.com/fthe4thdimensiongeneralinsanity.unsubscribeUnregisteredToTopic?topicID=38.topic\nhttp://moviestore.zap2it.com/help_shipping/s.hXCLyc56\nhttp://www.geocities.co.jp/Outdoors/2363/typoon1.html\nhttp://ua.php.net/manual/it/function.pg-numrows.php\nhttp://kidneyfailure.shn.net/roundtable_reply/727640\nhttp://itcareers.careercast.com/texis/it/itjs/+HwwBmje0B-deZqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyPxGwproqamn5otDnGaoDm15BGowcamn5otDapGdm1qBamnVncdpa5dhBiwGna5BGwBnton5ah1DqBodDanD51GnaMFqnFZI0DzmzwwwpBmje0B-deZqwww5rmeZpwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+lwwBmex6D86egqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyPxGwproqamn5otDnGaoDm15BGowcamn5otDapGdm1qBamnVncdpa5dhBiwGna5BGwBnton5ah1DqBodDanD51GnaMFqnFZI0DzmzwwwpBmje0B-deZqwww5rmeacwwwBrmeZpwww/morelike.html\nhttp://pub23.ezboard.com/fhardoverclockfrm1.showAddReplyScreenFromWeb?topicID=43.topic&index=3\nhttp://www.adquest3d.com/content.cfm?BRD=1578&PAG=63\nhttp://pelit.saunalahti.fi/.1/tucows/adnload/51_28438.html\nhttp://pelit.saunalahti.fi/.1/tucows/preview/70307.html\nhttp://www.maillist.com.tw/maillist/publicboard_newform.pl?maillist_id=softuse\nhttp://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody/non-free-jp/binary-alpha/news/?M=A\nhttp://ustlib.ust.hk/search*chi/amarcot+bruce+g/amarcot+bruce+g/-5,-1,0,B/frameset&F=amarcotty+michael+1931&1,1\nhttp://wine.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/support/rtf2tex/?M=A\nhttp://netchief.tucows.com/winme/preview/75911.html\nhttp://yp.gates96.com/4/57/60/83.html\nhttp://yp.gates96.com/4/57/60/99.html\nhttp://yp.gates96.com/4/57/62/17.html\nhttp://yp.gates96.com/4/57/62/88.html\nhttp://yp.gates96.com/4/57/63/9.html\nhttp://yp.gates96.com/4/57/63/39.html\nhttp://yp.gates96.com/4/57/63/64.html\nhttp://yp.gates96.com/4/57/64/33.html\nhttp://yp.gates96.com/4/57/65/41.html\nhttp://yp.gates96.com/4/57/65/70.html\nhttp://yp.gates96.com/4/57/66/18.html\nhttp://yp.gates96.com/4/57/66/56.html\nhttp://yp.gates96.com/4/57/66/61.html\nhttp://yp.gates96.com/4/57/66/94.html\nhttp://yp.gates96.com/4/57/67/0.html\nhttp://yp.gates96.com/4/57/67/63.html\nhttp://yp.gates96.com/4/57/67/85.html\nhttp://yp.gates96.com/4/57/69/1.html\nhttp://yp.gates96.com/4/57/69/56.html\nhttp://citeseer.nj.nec.com/cs?q=dbnum%3D1,DID%3D9262,qtype%3Dsamesite:\nhttp://citeseer.nj.nec.com/cidcontext/163444\nhttp://www.amazon.com.au/exec/obidos/change-style/tg/stores/detail/-/books/0873995562/e-mail-friend/\nhttp://www.sdinfonet.com.cn/411/24/411249999.htm\nhttp://pub14.ezboard.com/fallpodsgotoroswellsayhello.threadControl?topicID=17.topic\nhttp://in.egroups.com/message/sexualidades-noticias/14\nhttp://in.egroups.com/message/sexualidades-noticias/37\nhttp://library.cuhk.edu.hk/search*chi/dChinese+literature+--+20th+century+--+Periodicals/dchinese+literature+++20th+century+periodicals/-5,-1,0,B/frameset&F=dchinese+literature+++20th+century+periodicals&26,,188\nhttp://www.3w-zeitschriften.de/EyreLinda/EyreLinda1582380570.htm\nhttp://cometweb01.comet.co.uk/do!session=132027&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0\nhttp://retailer.gocollect.com/do/session/1912774/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp\nhttp://providenet.games.tucows.com/adnload/71993_40744.html\nhttp://www.geocities.co.jp/playtown-Toys/6366/bbsp.html\nhttp://www.hnby.com.cn/docroot/jzrb/200001/19/km01/19031711.htm\nhttp://213.36.119.69/do/session/152997/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/IT_IT/\nhttp://www.jamba.de/KNet/_KNet-p7t8j1-FEd-139gj/showInfo-datenschutz.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-p7t8j1-FEd-139gn/browse.de/node.0/cdzqggtyb\nhttp://www.paidmania.com/getpaid/signup/42/2518\nhttp://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1679-art-13.html\nhttp://jproxy.uol.es/jproxy/http://jama.ama-assn.org/issues/current/related/joc00479.html\nhttp://www.mirror.kiev.ua:8082/paper/2000/11/1251/text/11-08-2.htm\nhttp://my.netian.com/~eco71/wzmain.html\nhttp://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/HT206|972959540|Deluxe_Dividers|user|0|0,0,1,1\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/1AR/A3R/B3D/A4R/A4S/\nhttp://www.linux.com/networking/network/network/development/project/growth/\nhttp://www.linux.com/networking/network/development/project/growth/sales/\nhttp://www.icopyright.com/1.1653.134616\nhttp://retailer.gocollect.com/do/session/1912718/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp\nhttp://www.dw-tv.de/indonesia/sari_pers/19793.html\nhttp://freethemes.netc.pt/skins/icq/preview/44470.html\nhttp://freethemes.netc.pt/skins/icq/adnload/26145.html\nhttp://freethemes.netc.pt/skins/icq/preview/52524.html\nhttp://freethemes.netc.pt/skins/icq/adnload/52040.html\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=7,18,9,16\nhttp://golfonline.comfluent.net/cgi.pan$player&pga93&John_Morse&pga?golfstats\nhttp://wai.camera.it/_presidenti/003.htm\nhttp://www.pcmagazine.de/produkte/artikel/komp/200003/mainboards01_00-wc.html\nhttp://www.pcmagazine.de/produkte/artikel/komp/199908/asus_00-wc.html\nhttp://se.sslug.dk/emailarkiv/locale/2000_09/msg00053.html\nhttp://se.sslug.dk/emailarkiv/locale/2000_09/msg00057.html\nhttp://se.sslug.dk/emailarkiv/locale/2000_09/msg00115.html\nhttp://www.brio.de/BRIO.catalog/39fe2f7406fad828273fd472aa7806ff/UserTemplate/8\nhttp://link.fastpartner.com/do/session/600389/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php\nhttp://www.shopworks.com/grizzlygulch/index.cfm/action/search/userid/000B40E3-1177-19FE-A703010D0A0A8CF2\nhttp://www.shopworks.com/grizzlygulch/index.cfm/action/product/prodid/0001AF94-3FC3-19E7-A703010D0A0A8CF2/userid/000B40E3-1177-19FE-A703010D0A0A8CF2\nhttp://spiritwolf52.subportal.com/sn/Web_Authoring/Misc__Programming_Tools/2670.html\nhttp://www.chaos.dk/sexriddle/o/g/j/h/t/\nhttp://link.fastpartner.com/do/session/600394/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/learn/\nhttp://opac.lib.rpi.edu/search/dpolitical+corruption+united+states/-5,-1,0,B/frameset&dpolitical+corruption+united+states&7,,22\nhttp://cnnsi.com/baseball/mlb/news/2000/01/28/\nhttp://amrr.com/agents/contact.html?Agents_id=3707\nhttp://www.dulux.co.uk/UKRETAIL:1489107816:DFinity.1QJiP4jMomdkbEc\nhttp://www.geocities.com/SiliconValley/Screen/9059/\nhttp://www.nrk.no/finnmark/x17_4_96/nyh4.htm\nhttp://in.egroups.com/message/islaam/288\nhttp://www.incestpornstories.com/knocked-upepisiotomy/fertileoff-the-rag/one-night-standlubrication/japaneseslanted-eyes/{storieslink}\nhttp://kuyper.calvin.edu/fathers2/ANF-04/anf04-30.htm\nhttp://wuarchive.wustl.edu/systems/unix/NetBSD/NetBSD-release/src/sys/arch/sun3/stand/bootxx/\nhttp://polygraph.ircache.net:8181/services/define/noframes/http_-2www.microsoft.com/ie/download/http_-2www.microsoft.com/infoserv/about.html\nhttp://pub23.ezboard.com/fferion80369frm4.showMessage?topicID=192.topic\nhttp://pub23.ezboard.com/fferion80369frm4.showMessage?topicID=182.topic\nhttp://www.cs.ruu.nl/mirror/CPAN/authors/id/N/NO/?S=A\nhttp://yp.gates96.com/1/40/30/16.html\nhttp://yp.gates96.com/1/40/30/72.html\nhttp://yp.gates96.com/1/40/30/99.html\nhttp://yp.gates96.com/1/40/31/25.html\nhttp://yp.gates96.com/1/40/31/42.html\nhttp://yp.gates96.com/1/40/31/54.html\nhttp://yp.gates96.com/1/40/31/61.html\nhttp://yp.gates96.com/1/40/31/95.html\nhttp://yp.gates96.com/1/40/32/39.html\nhttp://yp.gates96.com/1/40/32/88.html\nhttp://yp.gates96.com/1/40/32/92.html\nhttp://yp.gates96.com/1/40/33/33.html\nhttp://yp.gates96.com/1/40/34/24.html\nhttp://yp.gates96.com/1/40/34/51.html\nhttp://yp.gates96.com/1/40/34/62.html\nhttp://yp.gates96.com/1/40/34/72.html\nhttp://yp.gates96.com/1/40/35/38.html\nhttp://yp.gates96.com/1/40/36/80.html\nhttp://yp.gates96.com/1/40/36/98.html\nhttp://yp.gates96.com/1/40/37/35.html\nhttp://yp.gates96.com/1/40/37/89.html\nhttp://yp.gates96.com/1/40/38/13.html\nhttp://yp.gates96.com/1/40/38/67.html\nhttp://yp.gates96.com/1/40/39/8.html\nhttp://yp.gates96.com/1/40/39/11.html\nhttp://yp.gates96.com/1/40/39/42.html\nhttp://netway.pda.tucows.com/palm/preview/33466.html\nhttp://netway.pda.tucows.com/palm/preview/70276.html\nhttp://netway.pda.tucows.com/palm/adnload/76963_22012.html\nhttp://netway.pda.tucows.com/palm/preview/33676.html\nhttp://www.private-immobilien-boerse.de/berlin-immobilien/verkauf/Private-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Immolink/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm\nhttp://www.ne.jp/asahi/matinami/gallery/mati/hokkaido/hakodate/ph_l011.html\nhttp://www.findarticles.com/cf_0/m0EKF/14_46/61415465/p1/article.jhtml\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B1L/B4S/A1S/\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=1,21,16,5\nhttp://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=18,21,16,5\nhttp://ddb.libnet.kulib.kyoto-u.ac.jp/exhibit/fl3/image/fl3lhf/fl3lh0344.html\nhttp://www.trnonline.com/archives/2000archives/04072000/sports/26732.shtml\nhttp://www.linux.com/networking/network/new/press_release/management/editor/\nhttp://www.linux.com/networking/network/new/press_release/management/experiences/\nhttp://jundavid.subportal.com/sn/Business/Misc__Phone_Tools/index3.html\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,9,23,14,19\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/mirroring.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/legendes/\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/lit/laurent.txt\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/misc/colorart/\nhttp://www.lz.gs.cninfo.net/news/shenghuo/messages/361.html\nhttp://www.egroups.com/messages/skarmflyg/683\nhttp://www.egroups.com/message/skarmflyg/675\nhttp://www.egroups.com/message/skarmflyg/681\nhttp://www.genoma.de/shop/0d79e8c12cc42ea8242eafc8a0c5586a/99/b\nhttp://travelocity-dest.excite.com/Vacations/Reviews/Cruise/Submit/1,2586,0_228__,00.html\nhttp://www02.geocities.co.jp/HeartLand-Sakura/1068/history.html\nhttp://www.streetprices.com/Electronics/Computer_Software_PC/Programming/MAKE+DIGITAL/sortproductbyhighprice/SP275945.html\nhttp://www.streetprices.com/Electronics/Computer_Software_PC/Programming/MAKE+DIGITAL/sortproductbyhighprice/SP246217.html\nhttp://www.emerchandise.com/help_privacy/b.TV%20SATNIGHTLIVE/s.BOkfj8Vk\nhttp://ftp.ccu.edu.tw/pub/documents/faq/mail/setup/?S=A\nhttp://iceberg.adhomeworld.com/cgi-win/redirect.exe/304063772\nhttp://pdacentral.zeelandnet.nl/rim/email_license.htm\nhttp://pdacentral.zeelandnet.nl/rim/adnload/139471_47673.html\nhttp://www.loisirs.ch/tfhglx/17/ltxeld.html\nhttp://au.yahoo.com/Business_and_Economy/Shopping_and_Services/Health/Providers/By_Region/U_S__States/Mississippi/Cities/\nhttp://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/15P02A|972959527|Helmet|user|0|1,0,0,0\nhttp://news.dreamwiz.com/news_lg/04/20001030/yonhap/200010301014041007292.html\nhttp://news.dreamwiz.com/news_lg/04/20001028/yonhap/\nhttp://pds.nchu.edu.tw/cpatch/ftp/ftpnav/?D=A\nhttp://members.tripod.lycos.co.kr/BONGBAE/?N=D\nhttp://www9.hmv.co.uk:5555/do/session/1347758/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d50_sd0_pt0.html\nhttp://itcareers.careercast.com/texis/it/itjs/+xwwBmeHWD86YwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDhmoBGnaqdGpdGwBodDarGo5awDwcO5Baiw5roDtBdDaGn31n5BaGn31oGnmamnVncdpar1MwDaGn5d1Gqn5aMFqhTfR20DzmehrwwwpBmefWD86mwww5rmeddwwwBrmeZpwww/morelike.html\nhttp://www.3w-buecher.de/GibbonsRob/GibbonsRob1572152214.htm\nhttp://sennka.hoops.livedoor.com/%91%90%8a%a0%93%fa%98a%81%f4.htm\nhttp://www.uni-duesseldorf.de/ftp/ftp/pf/s/netscape-v451/?S=A\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/0nhIQeA1Kelaujy0pUaBOo2AAoNruJ7MPpvxwl5qu-YeCeEn6SDc5vURHb5rk8dZP84c_4bSWkIDaPe8dCV5mfxj4LA69UDbXc_J2Z-eZg7dURZLZinceqCXYFUYC4pqT29R1BQKpdPvHP0APgIYRhQG\nhttp://208.178.109.85/msgshow.cfm/msgboard=4779506785434&msg=80064825094809&page=1&idDispSub=-1\nhttp://interbox.tucows.com/preview/61367.html\nhttp://www.crutchfield.com/cgi-bin/S-CI62JsDkHYX/viewcart.asp\nhttp://www.hig.se/(aconf,formoutput,if,modified,set_cookie)/~jackson/roxen/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/1AR/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/C1R/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/B4L/\nhttp://www.haikou.hi.cn/pandect/nj/n96ei3.htm\nhttp://se.egroups.com/message/dailydreamers/36\nhttp://sunsite.org.uk/Mirrors/ftp.cdrom.com/pub/linux/slackware/contrib/contrib-sources/gcc-2.7.2.3/\nhttp://hp-partner.whowhere.lycos.com/hp/excite/Online_Communities/Angelfire/wi/index9.html\nhttp://www.cse.unsw.edu.au/archives/linux/redhat/beta/?M=A\nhttp://www.webcrawler.com/entertainment/music/artists_and_genres/folk_and_acoustic/artists_s/simon_and_garfunkel/garfunkel_art/interviews/\nhttp://www.russ.ru:8081/journal/media/98-05-21/telen0.htm\nhttp://www.chaos.dk/sexriddle/x/r/k/o/w/\nhttp://www.jt.com.br/noticias/98/06/22/sd2.htm\nhttp://retailer.gocollect.com/do/session/1912734/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/gifts/gift_floor.asp\nhttp://www.ualberta.ca/CNS/RESEARCH/Software/SAS/gis/z0782606.htm\nhttp://www.sentientnet.com/univercd/cc/td/doc/product/rtrmgmt/bluelist/cwblue21/cwbwsug/features.htm\nhttp://pub5.ezboard.com/fthekojiroestrogenbrigadeconsolegaming.threadControl?topicID=16.topic\nhttp://www.zjrs.zei.gov.cn/economy/text/policy/LHB/LHBA0909.TXT\nhttp://seascape.tucows.com/winnt/adnload/2060_29646.html\nhttp://seascape.tucows.com/winnt/adnload/2063_29648.html\nhttp://seascape.tucows.com/winnt/adnload/2066_29651.html\nhttp://ben.aspads.net/ex/c/641/517693268\nhttp://yp.gates96.com/7/63/80/20.html\nhttp://yp.gates96.com/7/63/80/22.html\nhttp://yp.gates96.com/7/63/80/80.html\nhttp://yp.gates96.com/7/63/80/87.html\nhttp://yp.gates96.com/7/63/81/50.html\nhttp://yp.gates96.com/7/63/81/77.html\nhttp://yp.gates96.com/7/63/81/79.html\nhttp://yp.gates96.com/7/63/81/91.html\nhttp://yp.gates96.com/7/63/82/36.html\nhttp://yp.gates96.com/7/63/82/73.html\nhttp://yp.gates96.com/7/63/84/6.html\nhttp://yp.gates96.com/7/63/84/91.html\nhttp://yp.gates96.com/7/63/85/30.html\nhttp://yp.gates96.com/7/63/85/57.html\nhttp://yp.gates96.com/7/63/85/98.html\nhttp://yp.gates96.com/7/63/89/13.html\nhttp://yp.gates96.com/7/63/89/20.html\nhttp://yp.gates96.com/7/63/89/32.html\nhttp://yp.gates96.com/7/63/89/65.html\nhttp://www.rarf.riken.go.jp/archives/tex-archive/macros/latex//contrib/supported/linguex/?M=A\nhttp://members.tripod.com/shelly34/shellyphotos/page12.html\nhttp://ftp.nsysu.edu.tw/Unix/Perl/modules/by-category/23_Miscellaneous_Modules/Bundle/PlRPC-0.2003.readme\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380827/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/vacationcards.asp\nhttp://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2ee3005fd9642740d47540f806e1/IconBar\nhttp://home.sprynet.com/~keithco/london.htm\nhttp://earth.collectingnation.com/cgi-bin/bn/post.mod/aupn?B=cna&R=48\nhttp://earth.collectingnation.com/cgi-bin/bn/post.mod/aupn?B=cna&R=38\nhttp://www.realize.com/am747b81.htm,qt=e784fe2f=2a38a234-e-1adebfb-80000000-0-0-3--\nhttp://www.opengroup.com/dfbooks/009/0091856140.shtml\nhttp://www.egroups.org/message/fotografya/216\nhttp://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-errno.html\nhttp://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-hits.html\nhttp://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-wait.html\nhttp://www.catholicstore.com/search/index.cfm/FuseAction/detailSearch/SKU/17311/category/Bo/subCategory/G/subject/1\nhttp://www.cc.ntut.edu.tw/~584ce040/anne-1.htm\nhttp://www.intervoz.com.ar/2000/09/23/sociedad_n11.htm\nhttp://pub22.ezboard.com/frecipegoldminesharearecipe.showAddReplyScreenFromWeb?topicID=4.topic\nhttp://opencity.kulichki.ru/moshkow/PROZA/LIPSKEROV/okno.txt\nhttp://www.tccomputers.com/cgi-bin/bp/1021890426/products/modems/modems.htm\nhttp://www.tccomputers.com/cgi-bin/bp/1021890426/services/sitemap.htm\nhttp://library.bangor.ac.uk/search/dCrystallography+--+Periodicals/dcrystallography+periodicals/-5,-1,0,B/frameset&F=dcrystallography+mathematical&8,,9\nhttp://music.excite.ca/artist/-264813\nhttp://www.gameboyz.com/g/review_465_p4_n3.html\nhttp://library.cwu.edu/search/aCarande,+Robert/acarande+robert/-5,-1,0,B/2exact&F=acarande+robert&1,2\nhttp://www.townstuff.com/search.cfm?directory=1040&town=285\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/graphics/png/files/patch-aa?only_with_tag=RELEASE_2_2_7\nhttp://www.amcity.com/columbus/stories/1997/07/07/focus6.html?t=email_story\nhttp://retailer.gocollect.com/do/session/1912716/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s12/ch034.html\nhttp://ds.dial.pipex.com/town/drive/kch36/select/s12/ch118.html\nhttp://www.dbring.de/160/16005-09.html\nhttp://198.103.152.100/search*frc/lHQ+769+E3614/lhq++769+e3614/7,-1,0,B/frameset&F=lhq++777.4+d47&1,1\nhttp://yp.gates96.com/7/27/70/14.html\nhttp://yp.gates96.com/7/27/70/27.html\nhttp://yp.gates96.com/7/27/70/35.html\nhttp://yp.gates96.com/7/27/70/37.html\nhttp://yp.gates96.com/7/27/70/62.html\nhttp://yp.gates96.com/7/27/71/38.html\nhttp://yp.gates96.com/7/27/71/80.html\nhttp://yp.gates96.com/7/27/72/62.html\nhttp://yp.gates96.com/7/27/72/80.html\nhttp://yp.gates96.com/7/27/73/10.html\nhttp://yp.gates96.com/7/27/73/61.html\nhttp://yp.gates96.com/7/27/73/78.html\nhttp://yp.gates96.com/7/27/74/7.html\nhttp://yp.gates96.com/7/27/74/16.html\nhttp://yp.gates96.com/7/27/75/62.html\nhttp://yp.gates96.com/7/27/76/90.html\nhttp://yp.gates96.com/7/27/77/7.html\nhttp://yp.gates96.com/7/27/77/92.html\nhttp://yp.gates96.com/7/27/78/21.html\nhttp://yp.gates96.com/7/27/79/21.html\nhttp://yp.gates96.com/7/27/79/57.html\nhttp://yp.gates96.com/7/27/79/96.html\nhttp://moviestore.zap2it.com/help/b.STARWARSSAGA%20STARWARS-ROJ/s.nrF6V2sr\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=8,27,13,5\nhttp://newspaper.swww.com.cn/1999/cdwb/199912/26/html/1003.html\nhttp://newspaper.swww.com.cn/1999/cdwb/199912/26/html/1008.html\nhttp://iworld.freethemes.com/adnload/77752.html\nhttp://iworld.freethemes.com/adnload/15251.html\nhttp://iworld.freethemes.com/adnload/54697.html\nhttp://iworld.freethemes.com/adnload/15232.html\nhttp://www.fogdog.com/cedroID/ssd3040183238457/nav/products/ice_hockey/1d/gear_accessories/\nhttp://www.ftp.uni-erlangen.de/pub/Linux/DEBIAN/dists/Debian2.2r0/main/binary-m68k/doc/\nhttp://www.ftp.uni-erlangen.de/pub/Linux/DEBIAN/dists/Debian2.2r0/main/binary-m68k/sound/\nhttp://library.cwu.edu/search/aThimbleby,+Harold/athimbleby+harold/-5,-1,0,B/exact&F=athilde+jean&1,2\nhttp://www5.pconline.com.cn/pcedu/soft/doc/001024/2.htm\nhttp://member.nifty.ne.jp/kaito-mist/nifty5.htm\nhttp://www.cc.yamaguchi-u.ac.jp/~archive/doc/jdk1.2.2/docs/api/java/awt/image/BandedSampleModel.html\nhttp://www.sandiego.digitalcity.com/honolulu/arts/occurrence.dci?ecid=75\nhttp://ubahn.exit.de/ffm/pic/pp/?S=A\nhttp://www.visiobroker.com/opcvm/details/4/43591.html\nhttp://www.visiobroker.com/opcvm/details/9/9765.html\nhttp://ring.toyama-ix.net/archives/linux/debian/debian-jp/dists/woody-towns/?M=A\nhttp://www.asahi-net.or.jp/~ZI3H-KWRZ/lawylegalaid.html\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/195/1999/7/0/\nhttp://www.buybuddy.com/sleuth/27/1/1060103/490578/\nhttp://java.javasoft.com/products/jdk/1.2/ja/docs/ja/api/java/awt/image/BandedSampleModel.html\nhttp://mitglied.tripod.de/~HTTC/mannschaften/3LigaGr1_0001.htm\nhttp://opac.lib.rpi.edu/search/anightingale+peggy+1942/-5,-1,0,B/browse\nhttp://ftp.unina.it/pub/Amiga/NetBSD/NetBSD-current/pkgsrc/editors/ssam/files/\nhttp://kikakusvr3.city.yokohama.jp/y/j/e25/ktt/ktt.html\nhttp://members.spree.com/entertainment/juskickit/http//members.spree.com/sports/comicus1\nhttp://www.butuanon.tsx.org/\nhttp://archive.soccerage.com/s/de/07/05375.html\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1995/10/0/859255/\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1995/10/50\nhttp://polygraph.ircache.net:8181/http_-2www.soniajekums.com/docs/Http_-2ua.battle-zone.com/html/html/on_line.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380855/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/T/TO/TOSTI/vstadaf-0.01.readme\nhttp://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1633/Subject/article-16.html\nhttp://www.realize.com/p25581.htm,qt=e784fe2f=2a38a234-7-da710e-0-0-0-1--\nhttp://www.realize.com/am947681.htm,qt=e784fe2f=2a38a234-7-da6e1d-80000000-0-0-3--\nhttp://www.realize.com/am2c3a81.htm,qt=e784fe2f=2a38a234-7-da6e1d-80000000-0-0-3--\nhttp://www.realize.com/amd15381.htm,qt=e784fe2f=2a38a234-7-da6e1d-1-84-0-3--\nhttp://link.fastpartner.com/do/session/600403/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php\nhttp://home.freeuk.net/lyne/work.htm\nhttp://www.gotocity.com/local/2/us/AZ/p/85643/people/\nhttp://www.service911.com/egghead/step/0,2743,6+33+121+25440+18092_4,00.html\nhttp://www.jamba.de/KNet/_KNet-irv8j1-WEd-139z7/showInfo-werbung.de/node.0/cenv0b09a\nhttp://ustlib.ust.hk/search*chi/dbeijing+mandarin+dialects+china+slang/dbeijing+mandarin+dialects+china+slang/-5,1,1,B/frameset&F=dbeijing+mayors+china+fiction&1,1,\nhttp://www.linux.org.tw/~chester/xlib/GC/convenience-functions/XSetGraphicsExposures.html\nhttp://www.linux.org.tw/~chester/xlib/graphics/font-metrics/XUnloadFont.html\nhttp://www.chaos.dk/sexriddle/c/f/j/u/c/\nhttp://www.chaos.dk/sexriddle/c/f/j/u/q/\nhttp://www.bornloser.com/comics/committed/archive/committed-20001027.html\nhttp://tulips.ntu.edu.tw/search*chi/dDeath+lc/ddeath+lc/-17,-1,0,E/frameset&F=ddeath+in+adolescence+abstracts&1,,0\nhttp://hem.fyristorg.com/lottaleman/LLfar/1_6955.htm\nhttp://preview.egroups.com/post/scoresheet-talk?act=reply&messageNum=7013\nhttp://209.52.189.2/profile.cfm/TimmyJ\nhttp://archive.soccerage.com/s/pt/37/04816.html\nhttp://pub16.ezboard.com/fleftbehindmessageboardfellowshiphall.showMessage?topicID=456.topic&index=16\nhttp://www.2pl.com/asp/tools/fili1.asp?sp=se&fi=pppp0005s8\nhttp://link.fastpartner.com/do/session/600382/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdenetwork/kppp/Rules/Poland/?only_with_tag=MAIN\nhttp://genforum.genealogy.com/cgi-genforum/forums/flippin.cgi?30\nhttp://pub.chinaccm.com/23/news/200010/28/114339.asp\nhttp://pub.chinaccm.com/23/news/200010/27/134259.asp\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=21,9,14,35,15\nhttp://gamesearcher.com/games/pc/returnofphantom-cheatsfaqs.html\nhttp://ua.php.net/manual/es/function.pg-errormessage.php\nhttp://findmail.com/group/prairydog\nhttp://www.loria.fr/projets/dilib/DILIB_ROOT/SYSTEMS/Linux/Dilib/Data/NLM/MedLine/\nhttp://www.daysinn.com/ctg/cgi-bin/DaysInn/programs/AAAksrACwAAACEaAAQ\nhttp://www.leo.org/leoclick/35dd60550f1ba90ed5bb7952eebae0d3+L+1__\nhttp://members.fortunecity.com/abbalink/songs/lyrics/wg.htm\nhttp://chat.sportsline.com/u/football/nfl/xword/answers/091500.htm\nhttp://210.173.172.13/entertainments/sports/sydney/kanrenkiji/0924/0925m096-500.html\nhttp://210.173.172.13/entertainments/sports/sydney/kanrenkiji/0924/0925m094-500.html\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/Gemeinsam/Inserieren/3d-service/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/Gemeinsam/Inserieren/3d-service/Gemeinsam/IIMMitglieder.htm\nhttp://www.realize.com/amcf7781.htm,qt=e784fe2f=2a38a234-4-7cf2ef-80000000-0-0-3--\nhttp://family.go.com/Categories/Features/family_1998_12/penn/penn128urban/\nhttp://www.loria.fr/projets/dilib/DILIB_ROOT/ApplicationsTest/Dilib/newBD/Prog/?N=D\nhttp://www.loisirs.ch/xfeoav/7/kqbmsh.html\nhttp://tucows.tu-graz.ac.at/herdwin0807.html\nhttp://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/gtr_htf/dat/?sortby=log\nhttp://www.buybuddy.com/sleuth/17/1/2006/32619/\nhttp://www.aelita.net/products/Reg/QuoteRegister/products/library/products/company/Privacy.htm\nhttp://www.refdag.nl/bui/990803bui08.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,6-14,0+0,2\nhttp://www.aelita.net/products/services/support/sitemap/news/solutions/default.htm\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=26,5,30,16,12\nhttp://www.ericsson.cl/gsmpro/contact.shtml\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maheuitu/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mangoo333/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maomizhijia/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/masaki_hamada/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maxiaofei/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maz0503/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/menghuanboy/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/michealshen/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mike717/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mikeshang_2/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mingyueyaze/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mm3/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mnbv89/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/morsia/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/move/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mslug/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/msshi/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/muwei/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/my1799/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mychat2000/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/myesky/\nhttp://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mzlzq/\nhttp://www.ring.gr.jp/pub/linux/Vine/VineSeed/alpha/mnt/source/sbin/loader\nhttp://www.nrk.no/finnmark/x8_5_96/nyh7.htm\nhttp://202.99.23.245/rmrb/200001/27/no_txb_6.html\nhttp://www-d0.fnal.gov/d0dist/dist/releases/test/smt_hit/test/?N=D\nhttp://www-d0.fnal.gov/d0dist/dist/releases/test/smt_hit/test/LIBRARIES\nhttp://jupiter.u-3mrs.fr/~msc41www/releves/13440405.HTM\nhttp://ftp.univie.ac.at/packages/perl/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/CGI/ANDK/Apache-correct_headers.readme.html\nhttp://www.linux.com/networking/network/networking/free/windows_nt/distro/\nhttp://www.linux.com/networking/network/networking/free/windows_nt/tip/\nhttp://australia-holiday-guide.com/Englisch/Queensland_1/QLD_Furher_North_1/qld_further_north_1.html\nhttp://australia-holiday-guide.com/Englisch/Queensland_1/QLD_Great_Barrier_Reef_1/qld_great_barrier_reef_1.html\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Ayrton.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Deadline_1.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/DiamondPPC.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Gravity2_inv.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/HJB-BCFix.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/ImpPos.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Nat-AutF.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/PSB-Desperado2.readme\nhttp://ftp.uni-paderborn.de/aminet/aminet/demo/aga/PSB-PUK_final.readme\nhttp://genforum.genealogy.com/cgi-genforum/forums/kilroy.cgi?34\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?kilroy::34.html\nhttp://content.health.msn.com/ef/message/803324/content.health.msn.com%2fmessage_board_message%2f803324/803324\nhttp://de.excite.de/gesundheit/katalog/6107\nhttp://de.excite.de/gesundheit/katalog/4909\nhttp://de.excite.de/gesundheit/katalog/5941\nhttp://de.excite.de/gesundheit/katalog/4924\nhttp://de.excite.de/gesundheit/katalog/5898\nhttp://de.excite.de/gesundheit/katalog/4949\nhttp://de.excite.de/gesundheit/katalog/5987\nhttp://de.excite.de/gesundheit/katalog/5855\nhttp://de.excite.de/gesundheit/katalog/39862\nhttp://de.excite.de/gesundheit/katalog/5852\nhttp://de.excite.de/gesundheit/katalog/5645\nhttp://de.excite.de/gesundheit/katalog/6078\nhttp://de.excite.de/gesundheit/katalog/5834\nhttp://yp.gates96.com/11/26/80/31.html\nhttp://yp.gates96.com/11/26/80/47.html\nhttp://yp.gates96.com/11/26/80/91.html\nhttp://yp.gates96.com/11/26/81/61.html\nhttp://yp.gates96.com/11/26/81/86.html\nhttp://yp.gates96.com/11/26/82/37.html\nhttp://yp.gates96.com/11/26/82/49.html\nhttp://yp.gates96.com/11/26/83/38.html\nhttp://yp.gates96.com/11/26/83/52.html\nhttp://yp.gates96.com/11/26/83/58.html\nhttp://yp.gates96.com/11/26/83/84.html\nhttp://yp.gates96.com/11/26/84/0.html\nhttp://yp.gates96.com/11/26/84/59.html\nhttp://yp.gates96.com/11/26/84/75.html\nhttp://yp.gates96.com/11/26/84/99.html\nhttp://yp.gates96.com/11/26/85/37.html\nhttp://yp.gates96.com/11/26/85/63.html\nhttp://yp.gates96.com/11/26/85/78.html\nhttp://yp.gates96.com/11/26/86/36.html\nhttp://yp.gates96.com/11/26/86/40.html\nhttp://yp.gates96.com/11/26/87/66.html\nhttp://yp.gates96.com/11/26/87/87.html\nhttp://yp.gates96.com/11/26/89/7.html\nhttp://yp.gates96.com/11/26/89/21.html\nhttp://yp.gates96.com/11/26/89/38.html\nhttp://providenet.tukids.tucows.com/mac/9-12/macspell912_license.html\nhttp://providenet.tukids.tucows.com/mac/9-12/adnload/25805_25780.html\nhttp://www04.u-page.so-net.ne.jp/zb3/eiji-m/dog6.htm\nhttp://school.educities.org/card/jou0731.html\nhttp://school.educities.org/card/ke234.html\nhttp://school.educities.org/card/aaaaaqqqqqqq.html\nhttp://school.educities.org/card/cso.html\nhttp://school.educities.org/card/g40203.html\nhttp://school.educities.org/card/h123915388.html\nhttp://school.educities.org/card/k1084211.html\nhttp://www.cigar-pipe.de/SP/dhuc3112.htm\nhttp://www.newquestcity.com/cities/MA///news/3675.htm\nhttp://caowei_814.home.chinaren.com//wenxue/wenxue-mood/love147.htm\nhttp://www.amulation.com/md-l-archive/199805/msg00065.html\nhttp://in.egroups.com/messages/conventions/51?viscount=-30\nhttp://yp.gates96.com/11/63/20/4.html\nhttp://yp.gates96.com/11/63/20/21.html\nhttp://yp.gates96.com/11/63/20/51.html\nhttp://yp.gates96.com/11/63/21/29.html\nhttp://yp.gates96.com/11/63/21/41.html\nhttp://yp.gates96.com/11/63/21/74.html\nhttp://yp.gates96.com/11/63/22/4.html\nhttp://yp.gates96.com/11/63/22/29.html\nhttp://yp.gates96.com/11/63/22/80.html\nhttp://yp.gates96.com/11/63/22/86.html\nhttp://yp.gates96.com/11/63/23/7.html\nhttp://yp.gates96.com/11/63/23/24.html\nhttp://yp.gates96.com/11/63/23/39.html\nhttp://yp.gates96.com/11/63/24/1.html\nhttp://yp.gates96.com/11/63/25/35.html\nhttp://yp.gates96.com/11/63/25/78.html\nhttp://yp.gates96.com/11/63/25/83.html\nhttp://yp.gates96.com/11/63/26/37.html\nhttp://yp.gates96.com/11/63/27/3.html\nhttp://yp.gates96.com/11/63/27/9.html\nhttp://yp.gates96.com/11/63/27/14.html\nhttp://yp.gates96.com/11/63/28/16.html\nhttp://yp.gates96.com/11/63/28/26.html\nhttp://yp.gates96.com/11/63/28/54.html\nhttp://yp.gates96.com/11/63/28/55.html\nhttp://yp.gates96.com/11/63/29/13.html\nhttp://yp.gates96.com/11/63/29/64.html\nhttp://yp.gates96.com/11/63/29/69.html\nhttp://spaceports.tucows.com/winnt/httpservernt_license.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380848/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://incrediblegolfsavings.subportal.com/sn/Games/Simulation_Games/11310.html\nhttp://incrediblegolfsavings.subportal.com/sn/Games/Simulation_Games/12064.html\nhttp://www.linux.com/networking/linux/industry/gnu/operating_system/Corel/\nhttp://www.linux.com/networking/linux/industry/gnu/operating_system/Updates/\nhttp://www.fogdog.com/cedroID/ssd3040183307418/womens/\nhttp://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/casual_sunglasses/\nhttp://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/hockey_skates/\nhttp://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/sweatshirts_fleece/\nhttp://www.fogdog.com/cedroID/ssd3040183307418/crs/nvCZ/wld/fogdog_sports/nike/football/equipment/500r_series_football.html\nhttp://www.seoul.co.kr/dmaeil/199908/0820j015.htm\nhttp://www-trn.bards.ru/Lobanovskiy/part13.htm\nhttp://www-trn.bards.ru/Vahnuk/part27.htm\nhttp://www-trn.bards.ru/Vetrova_Svetlana/part9.htm\nhttp://www-trn.bards.ru/Tretiyakov/part22.htm\nhttp://www-trn.bards.ru/Okoudjava/part202.htm\nhttp://www-trn.bards.ru/Panyushkin/part100.htm\nhttp://www-trn.bards.ru/Gorodnicky/part287.htm\nhttp://yumemi.ne.jp/bbs/ky/view/f/forum9/1_jpbshj_vvvzil.html\nhttp://yumemi.ne.jp/bbs/ky/view/f/forum9/1_xxosis_czhmrb.html\nhttp://yumemi.ne.jp/bbs/ky/view/f/forum9/1_yikriy_qjvins.html\nhttp://www.peopledaily.co.jp/shch/199907/28/newfiles/D103.html\nhttp://legalminds.lp.findlaw.com/list/newlawbooks-l/frm00336.html\nhttp://tucows.sp-plus.nl/winme/phoneme.html\nhttp://ustlib.ust.hk/search*chi/dalcoholic+beverages+china/dalcoholic+beverages+china/7,-1,0,E/2browse\nhttp://ustlib.ust.hk/search*chi/dalcoholic+beverages+china/dalcoholic+beverages+china/-5,-1,0,E/frameset&F=dalcoholic+beverages+great+britain&1,,0\nhttp://www.canit.se/(k10,k13,k16,k6)/support/faq/faq.html\nhttp://aecjobbank.com/texis/script/jobbank/+Owwrmwxeri2wBV6evNVpwwwF6eWYqkwwwn6eXmcOwwwn6ekmyjwwwn6eULpOwwqn6eUCBZwwwn6e22QuwwwefPY9GepmwwmeiP46eczdwwmeOTB6eXhzwwwnmBVve89AHwwxeY44Ie-pxwww+vejWRhwwxealYTeXjzwwwhvep9q9wwwxveoA6kwwqe0PYieqFzwwwv6eFRFrwwwt6eSGxDwwwetNY1e8drwwqeT53Amwww0h7mwww1tzmwwweb-3qmwwww/jobdirectory.html\nhttp://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html\nhttp://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d30_sd0_pt0.html\nhttp://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d70_sd0_pt0.html\nhttp://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d90_sd0_pt0.html\nhttp://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d120_sd0_pt0.html\nhttp://www.hbdaily.com.cn/hbrb/20000622/BIG5/hbrb^18323^12^0622h016.htm\nhttp://excite.de/immobilien/katalog/6877\nhttp://excite.de/immobilien/katalog/7012\nhttp://www.globalmart.com/housewares/appliances/household/irons/blackanddecker/S680.htm\nhttp://mediate.magicbutton.net/do/session/625631/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html\nhttp://ddb.libnet.kulib.kyoto-u.ac.jp/exhibit/mt3/image/mt3shf/mt3sh0192.html\nhttp://us.parsimony.net/forum26166/messages/410.htm\nhttp://linux.tnc.edu.tw/CPAN/authors/id/A/AZ/AZEMGI/?M=A\nhttp://linux.tnc.edu.tw/CPAN/authors/id/A/AZ/AZEMGI/CHECKSUMS\nhttp://launchbase.com/Shopping/Visual_Arts/communication/entertainment/Pictures_&_Images.htm\nhttp://launchbase.com/Shopping/Visual_Arts/communication/shopping/Gifts.htm\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/music/midi/lit/lit/quizz/quizz1.html\nhttp://home02.wxs.nl/~nash0002/amber-94.htm\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/52400\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/52550\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/50900\nhttp://gnu.archive.sunet.se/software/sather/ICSI_Sather/Documentation/Compiler/CompilerBrowser/shortflat-FLIST{_}.html\nhttp://mailman.real-time.com/rte-crossfire/1992/Dec/mail1.html\nhttp://de.nedstat.net/viewstat.asp?name=larsen\nhttp://ftp.ring.gr.jp/archives/pc/gnu-win32/latest/man/?S=A\nhttp://src.openresources.com/debian/src/graphics/HTML/D/S_ISSOCK.html\nhttp://www.perotech.ch/d/securedb/html/listtopic.php?4277\nhttp://web.health.aol.thriveonline.oxygen.com/medical/library/article/003558res.html\nhttp://cn.egroups.com/message/Website_Warez/346\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd510213891\nhttp://ring.nii.ac.jp/pub/pack/x68/personal/calendar/\nhttp://www.zeal.com/Government/U_S__Government/State___Local_Governments/South_Carolina/Politics/Elections/State_wide/\nhttp://ftp.unina.it/pub/TeX/macros/latex209/contrib/manual/?S=A\nhttp://www.perotech.ch/d/securedb/html/listtopic.php?5376\nhttp://polygraph.ircache.net:8181/lci/https_-2ssl.galaxy-net.net/jazzee/http_-2www.microsoft.com/truetype/fontpack/win.htm\nhttp://python.konbib.nl/dutchess.ned/83/00/info-1592.html\nhttp://www.excite.com/lifestyle/cultures_and_groups/world_cultures/regions/north_america/ethnic_communities/african_american/history/military_history/\nhttp://www.bluemonutain.com/engy/david/CHI1-educk.html\nhttp://www.bluemonutain.com/engy/susie/CHI1-edaddog.html\nhttp://cn.egroups.com/messages/childhoodepilepsy/3349\nhttp://cn.egroups.com/messages/childhoodepilepsy/648\nhttp://cn.egroups.com/messages/childhoodepilepsy/1189\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.swnebr.net/~cambridg/http_-2www.bikininet.com/climate.htm\nhttp://www.annuairefrancais.com/54/France/I/INTERNET/Fournisseurs-d'acces/Fournisseurs-d\nhttp://polygraph.ircache.net:8181/http_-2www.monarchcom.net/http_-2www.netscape.com/comprod/mirror/http_-2bible.gospelcom.net/http_-2www.rehablinks.com/ptlinks.htm\nhttp://findmail.com/message/studentdoctor/4312?source=1\nhttp://mediate.magicbutton.net/do/session/625624/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cart.html\nhttp://ring.htcn.ne.jp/archives/lang/perl/CPAN/authors/id/P/PG/?M=A\nhttp://www.buybuddy.com/sleuth/33/1/10601/526343/\nhttp://www1.zdnet.com/products/stories/reviews/0,4161,2470142,00.html\nhttp://www1.zdnet.com/companyfinder/filters/products/0,9996,2256-82,00.html\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdeutils/ark/doc/en/Attic/index-2.html?only_with_tag=MAIN\nhttp://tv.thevines.com/leaf/AA0000364048/45///&act=24-1-11&bref=1601\nhttp://link.fastpartner.com/do/session/600384/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php\nhttp://www.excite.com/lifestyle/politics_and_society/community_and_cultures/world_cultures/diaspora/jewish/judaism/congregations/humanistic_judaism/\nhttp://biblio.cesga.es:81/search*gag/aXove,+XosÃÂÃÂ©/axove+xose/7,-1,0,B/frameset&F=axuntanza&1,,3\nhttp://biblio.cesga.es:81/search*gag/aXove,+XosÃÂÃÂ©/axove+xose/7,-1,0,B/frameset&F=axuntanza&3,,3\nhttp://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/36\nhttp://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/37\nhttp://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/35\nhttp://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/21\nhttp://www.tiroler-adler.com/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/691/Homepage/f_homepage...1.html\nhttp://yp.gates96.com/4/52/90/87.html\nhttp://yp.gates96.com/4/52/90/95.html\nhttp://yp.gates96.com/4/52/91/4.html\nhttp://yp.gates96.com/4/52/91/39.html\nhttp://yp.gates96.com/4/52/91/42.html\nhttp://yp.gates96.com/4/52/92/33.html\nhttp://yp.gates96.com/4/52/92/93.html\nhttp://yp.gates96.com/4/52/93/6.html\nhttp://yp.gates96.com/4/52/93/98.html\nhttp://yp.gates96.com/4/52/94/8.html\nhttp://yp.gates96.com/4/52/94/14.html\nhttp://yp.gates96.com/4/52/95/92.html\nhttp://yp.gates96.com/4/52/96/16.html\nhttp://yp.gates96.com/4/52/96/32.html\nhttp://yp.gates96.com/4/52/96/72.html\nhttp://yp.gates96.com/4/52/96/90.html\nhttp://yp.gates96.com/4/52/97/1.html\nhttp://yp.gates96.com/4/52/97/53.html\nhttp://yp.gates96.com/4/52/98/34.html\nhttp://yp.gates96.com/4/52/98/84.html\nhttp://yp.gates96.com/4/52/98/97.html\nhttp://yp.gates96.com/4/52/99/55.html\nhttp://yp.gates96.com/4/52/99/68.html\nhttp://yp.gates96.com/14/40/10/3.html\nhttp://yp.gates96.com/14/40/10/86.html\nhttp://yp.gates96.com/14/40/11/53.html\nhttp://yp.gates96.com/14/40/12/74.html\nhttp://yp.gates96.com/14/40/13/11.html\nhttp://yp.gates96.com/14/40/13/34.html\nhttp://yp.gates96.com/14/40/13/45.html\nhttp://yp.gates96.com/14/40/13/79.html\nhttp://yp.gates96.com/14/40/14/3.html\nhttp://yp.gates96.com/14/40/14/6.html\nhttp://yp.gates96.com/14/40/14/25.html\nhttp://yp.gates96.com/14/40/14/84.html\nhttp://yp.gates96.com/14/40/14/88.html\nhttp://yp.gates96.com/14/40/15/39.html\nhttp://yp.gates96.com/14/40/15/40.html\nhttp://yp.gates96.com/14/40/16/64.html\nhttp://yp.gates96.com/14/40/16/92.html\nhttp://yp.gates96.com/14/40/17/69.html\nhttp://yp.gates96.com/14/40/18/42.html\nhttp://yp.gates96.com/14/40/18/82.html\nhttp://yp.gates96.com/14/40/19/36.html\nhttp://www.4positiveimages.com/4positiveimages/727410225/IconBar\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,login/discussion_id,2/xid,6559/yid,6157439\nhttp://www.secinfo.com/dSU5m.74.htm\nhttp://www.secinfo.com/dSU5m.7v.htm\nhttp://www.secinfo.com/dSU5m.6y.htm\nhttp://www.secinfo.com/dSU5m.5c.htm\nhttp://linux.softhouse.com.cn/linux/knowledge/tech/qs/linux5.htm\nhttp://linux.softhouse.com.cn/linux/knowledge/tech/qs/linux10.htm\nhttp://freesoftware.subportal.com/sn/Programming/Visual_Basic_Components_H-P/993.html\nhttp://dk.egroups.com/message/NGHILUAN/2881\nhttp://dk.egroups.com/message/NGHILUAN/2889\nhttp://www.cga.state.ct.us/ps98/cbs/H/hj-0084.htm\nhttp://apple.excite.com/entertainment/music/artists_and_genres/jazz/new_world_jazz/afro_cuban/\nhttp://www.euronet.nl/users/hiroshi/ksweb/interest.htm\nhttp://library.bangor.ac.uk/search/aMollica,+Anthony/amollica+anthony/-5,-1,0,B/browse\nhttp://www.fogdog.com/cedroID/ssd3040183308040/nav/products/featured_brands/14t/all/\nhttp://www.brio.de/BRIO.catalog/39fe2f8d0912d4962740d472aa780701/UserTemplate/9\nhttp://www.hig.se/(accessed,autoformat,referrer,sqloutput,tablify)/~jackson/roxen/\nhttp://www.newstimescybermall.com/Mall/Catalog/Product/ASP/product-id/206059/store-id/1000010991.html\nhttp://www6.163.com/news/p-item/0,1587,economy_1916,00.html\nhttp://ftp.uni-stuttgart.de/pub/systems/sgi/graphics/lib/?D=A\nhttp://preview.egroups.com/message/abdou3/152\nhttp://ch.php.net/manual/it/function.pg-loimport.php\nhttp://yp.gates96.com/1/94/30/39.html\nhttp://yp.gates96.com/1/94/30/78.html\nhttp://yp.gates96.com/1/94/31/11.html\nhttp://yp.gates96.com/1/94/31/72.html\nhttp://yp.gates96.com/1/94/31/85.html\nhttp://yp.gates96.com/1/94/32/25.html\nhttp://yp.gates96.com/1/94/32/45.html\nhttp://yp.gates96.com/1/94/32/74.html\nhttp://yp.gates96.com/1/94/33/20.html\nhttp://yp.gates96.com/1/94/33/68.html\nhttp://yp.gates96.com/1/94/34/92.html\nhttp://yp.gates96.com/1/94/35/1.html\nhttp://yp.gates96.com/1/94/35/50.html\nhttp://yp.gates96.com/1/94/35/60.html\nhttp://yp.gates96.com/1/94/37/0.html\nhttp://yp.gates96.com/1/94/37/46.html\nhttp://yp.gates96.com/1/94/37/47.html\nhttp://yp.gates96.com/1/94/37/61.html\nhttp://yp.gates96.com/1/94/38/19.html\nhttp://yp.gates96.com/1/94/39/49.html\nhttp://yp.gates96.com/1/94/39/57.html\nhttp://www.gartenfachmarkt.de/beratung_garten/duengen_und_kompostieren/anlage_und_vorarbeiten/fertig.htm\nhttp://support.dell.com/docs/storage/4955r/en/Hw/setup.htm\nhttp://www.hig.se/(clientname,header,sort,sqlquery,sqltable)/~jackson/roxen/\nhttp://www.mic.hr/PGBURZA:423870\nhttp://www.mic.hr/PGNEWS:423870\nhttp://members.tripod.com/Tess_Tom/my_photoalbum/page12.html\nhttp://legalminds.lp.findlaw.com/list/courtinterp-spanish/nav05815.html\nhttp://www.fogdog.com/cedroID/ssd3040183239698/crs/pn__/wld/fogdog_sports/pearl_izumi/road_cycling/apparel/classic_vest.html\nhttp://www.fogdog.com/cedroID/ssd3040183239698/nav/stores/wakeboarding/\nhttp://troy.lib.sfu.ca/search/slogos/slogos/-5,-1,0,E/frameset&F=slogistics+and+transportation+review&1,,0\nhttp://themes.tucows.dia.dk/skins/icq/preview/54718.html\nhttp://php.nic.fi/manual/html/function.shm_open.html\nhttp://ftp.fi.debian.org/debian/dists/woody/non-free/binary-m68k/misc/?S=A\nhttp://www.csupomona.edu/reference/java/jdk1.2/docs/api/org/omg/CORBA/class-use/CompletionStatus.html\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A1D/C1R/A1D/B1R/\nhttp://www.uni-duesseldorf.de/ftp/ftp/software/opt/cpio-2.4.2/?M=A\nhttp://ep.com/js/about/c9079/b0/250918.html\nhttp://polygraph.ircache.net:8181/busi/html/http_-2www.dirtsports.com/index.html-ssi\nhttp://www.chabadlibrary.org/ecatalog/EC06/EC06232.HTM\nhttp://chat.hani.co.kr/NetBBS/Bbs.dll/brief/lst/qqa/f/qqo/PRMY/zka/B23qB2Bm\nhttp://209.207.239.212/bkindex/c1047/f1128.html\nhttp://tv.thevines.com/leaf/AA0000364429/4/1\nhttp://tv.thevines.com/leaf/AA0000364429/4//&order_by=WORST\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=12,17,20,5,16\nhttp://yp.gates96.com/4/4/40/22.html\nhttp://yp.gates96.com/4/4/40/29.html\nhttp://yp.gates96.com/4/4/41/11.html\nhttp://yp.gates96.com/4/4/42/0.html\nhttp://yp.gates96.com/4/4/42/27.html\nhttp://yp.gates96.com/4/4/42/89.html\nhttp://yp.gates96.com/4/4/42/99.html\nhttp://yp.gates96.com/4/4/43/40.html\nhttp://yp.gates96.com/4/4/43/69.html\nhttp://yp.gates96.com/4/4/43/85.html\nhttp://yp.gates96.com/4/4/44/27.html\nhttp://yp.gates96.com/4/4/44/28.html\nhttp://yp.gates96.com/4/4/44/36.html\nhttp://yp.gates96.com/4/4/44/86.html\nhttp://yp.gates96.com/4/4/45/76.html\nhttp://yp.gates96.com/4/4/45/82.html\nhttp://yp.gates96.com/4/4/45/86.html\nhttp://yp.gates96.com/4/4/46/61.html\nhttp://yp.gates96.com/4/4/47/1.html\nhttp://yp.gates96.com/4/4/47/41.html\nhttp://yp.gates96.com/4/4/47/42.html\nhttp://yp.gates96.com/4/4/48/66.html\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/misc/geekcode/pkg-descr?only_with_tag=RELEASE_3_4_0\nhttp://perso.wanadoo.fr/genealogie.aubert.jm/geweb/ff100.htm\nhttp://www.securitiestimes.com.cn/199904/29/data/newfiles/0060080.htm\nhttp://autos.yahoo.co.jp/ucar/m1015/k10152012199906/g21/a101520120210248821003520208199906.html\nhttp://dg.galaxy.com/galaxy/Community/United-States/States/Connecticut/Cities-and-Regions/Guilford/Education/K--12/Middle.html\nhttp://carriage.de/Schoner/info-e/literature/collections/models/\nhttp://www.amcity.com/orlando/stories/1998/06/29/weekinbiz.html?t=email_story\nhttp://www.icopyright.com/1.1655.94549\nhttp://biblio.cesga.es:81/search*gag/dMicrosoft+Visual+BASIC+(Archivo+de+ordenador)/dmicrosoft+visual+basic+archivo+de+ordenador/-5,1,1,B/frameset&F=dmicrosoft+project+archivo+de+ordenador&1,1,\nhttp://www.jamba.de/KNet/_KNet-AzI8j1-tGd-13d56/browse.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-AzI8j1-tGd-13d5e/browse.de/node.0/cde7f1uou\nhttp://www.ioppublishing.com/PEL/help/article/ja30010l2/refs/?topic=refs\nhttp://members.tripod.lycos.co.kr/uuujsh/?N=D\nhttp://www.wlu.ca/~wwwregi/95-96/cal/ucourses/CP/CP417.html\nhttp://books.hyperlink.co.uk/bookinfo/Essential_Papers_on_Messianic_Movements_and_Personalities_in_Jewish_History/0814779433\nhttp://generalstore.everdream.com/kore/catalog/Office_Supplies/Furniture_&_Accessories/File_Cabinets/Vertical/GRP-US747/product.html\nhttp://satlink.tucows.com/winnt/adnload/54136_29678.html\nhttp://dc.web.aol.com/myrtlebeacharea/penpals/browse.dci?cat=twenties&sort=m\nhttp://itcareers.careercast.com/texis/it/itjs/+nwwBme4WD86e4rwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDthDo5O5apGdtGwMaBGnDBdDaqd1DBGon5aoDqc1moDtax15oDn55amnVncdpoDta5dc1BodD5adppdGB1DoBon5aqdMpnBoBoVnaMFqtuNfIjIDzmYqwwpBme68D86eihwww5rmerdwwwBrmeZpwww/jobpage.html\nhttp://ring.yamanashi.ac.jp/pub/linux/debian/debian-jp/dists/hamm-jp/hamm/disks-i386/current/base14-3.bin.2.0.11.2-i386\nhttp://www.ibm.co.jp/pc/thinkpad/pt110/look110.html\nhttp://retailer.gocollect.com/do/session/1912720/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp\nhttp://www-rn.informatik.uni-bremen.de/home/X11R6/xc/doc/hardcopy/XProtocol/?N=D\nhttp://cafe3.daum.net/Cafe-bin/bbsList?bbsgrp=SIXTEEN&bbscode=SIXTEENbbs\nhttp://allmacintosh.arrakis.es/adnload/12140.html\nhttp://allmacintosh.arrakis.es/adnload/2476.html\nhttp://www.msb.malmo.se/search*swe/dSkÃÂ¶nlitteratur/dskz~cnlitteratur/-5,-1,0,B/2exact&F=dskz~cnliteratur&1,2\nhttp://tucows.syix.com/winme/preview/137803.html\nhttp://pages.prodigy.net/patotoole/musicman/page6.htm\nhttp://yp.gates96.com/14/43/0/39.html\nhttp://yp.gates96.com/14/43/0/78.html\nhttp://yp.gates96.com/14/43/0/79.html\nhttp://yp.gates96.com/14/43/0/99.html\nhttp://yp.gates96.com/14/43/1/3.html\nhttp://yp.gates96.com/14/43/1/57.html\nhttp://yp.gates96.com/14/43/1/86.html\nhttp://yp.gates96.com/14/43/2/74.html\nhttp://yp.gates96.com/14/43/2/80.html\nhttp://yp.gates96.com/14/43/3/2.html\nhttp://yp.gates96.com/14/43/3/97.html\nhttp://yp.gates96.com/14/43/3/99.html\nhttp://yp.gates96.com/14/43/4/37.html\nhttp://yp.gates96.com/14/43/4/51.html\nhttp://yp.gates96.com/14/43/4/72.html\nhttp://yp.gates96.com/14/43/6/4.html\nhttp://yp.gates96.com/14/43/7/20.html\nhttp://yp.gates96.com/14/43/7/39.html\nhttp://yp.gates96.com/14/43/7/45.html\nhttp://yp.gates96.com/14/43/9/41.html\nhttp://yp.gates96.com/14/43/9/58.html\nhttp://yp.gates96.com/14/43/9/60.html\nhttp://ftp.support.compaq.com/public/dunix/v3.2g/ASE_V1.3/ReleaseNotes.htm\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/mchI1k9vDw6DGJ19bljzJPwhHhJYxAcnAIKgudPEJtzjiTWMWT4U-YMr4m-AccPn7sEIqMzfFTZnQEQBZNx-lh8DEr_c1F3DXpcc4PzhALzHJ76GytRWNCSauwtfVocYmy_RKsP-H9T-UhQgoc9_uexBhD4a\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/IqtI3V1hdRxfYW_4AHOzeXZkuTzyKfveVl4qdYM_2WFldvLDKFgK8SvYa0mSlrWDVodDERGv2jvb2dEN1-mRmY3TBKURFCsqneanb8BNMBeBfqmSnBYuou5RMCmHxXCedHy3TQnL51n3TYbg5exYBWl9FJTcQEIJt2wyyrfB66jP\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/Hk1ILVbQbFwze5TrhlBima0MylJ0gTqcnVeTbMTcn7Gy5GkelYKhUQ7m8P8_K3IkOWfIWbpGOJEuHqJLX5jY_7ygFevbtkNXPvb1yztdy9qzCTsCJvS5uaHN3cZd0LtuoMX3lX7d_-L_PrwRXSfTE3TNvWl-RHiY4Xmxk1fXhD_uwwjDvC7DDsxz66j6\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/T41IiB449vZ7nrOl2Z_klJHCHQZhigz52e9YVMztVI-K01klBYQrw4VmiKN8JDs9xaeMSWopQs1euSbr6BAiyuqpbSFiiVWObVmWHv031jtdQ1y93wnHhx8PkbrA4hkNhjTPs2mUhBF9wIAJSPCYLkf6W7mCB8ObikqLTuIwBfRtSgMK4Hz9e7Bp\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/CI1IlJNaoNrBcwJYSEcjLyxBnpQHK3wpRPeCR_0u07GznNXQ3Ug57ciOqlfXKlYM1HbRfcvrF5s214yaEHiIizneyWrbSEW_xal49NjQDbWj6R2nEZvDQdDMQEMoTuQlSetyUwMidLBmJJ5v5w9m066en6Yxuzt3RkGIyoHKaVmXgVIYD2Fc40eA\nhttp://www.secinfo.com/dSm4r.997.htm\nhttp://www.secinfo.com/dSm4r.68c.htm\nhttp://www.secinfo.com/dSm4r.69c.htm\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/modules/by-module/MD5/GAAS/HTML-Parser-3.04.readme\nhttp://polygraph.ircache.net:8181/Game+Controllers/http_-2www.real-e-video.com/price-abuse.html\nhttp://ecomonly.shop.goto.com/z/netadp/search/matches.jhtml?MANUF=Linksys\nhttp://ecomonly.shop.goto.com/z/netadp/search/matches.jhtml?MANUF=Madge\nhttp://freesoftware.subportal.com/sn/Web_Authoring/Misc__Programming_Tools/3100.html\nhttp://www.sam.hi-ho.ne.jp/m-saka/stepwgn/himeji/6scene/\nhttp://ftp.unina.it/pub/Unix/linux/SuSE/ftp.suse.com/projects/3d/kernel/?N=D\nhttp://www.ld.com/cbd/archive/1999/08(August)/10-Aug-1999/61awd001.htm\nhttp://www.ld.com/cbd/archive/1999/08(August)/10-Aug-1999/61awd004.htm\nhttp://statweb.byu.edu/sasdoc/sashtml/stat/chap2/sect5.htm\nhttp://www.diogenes.de/4DACTION/web_rd_aut_show_authorlist/ID=483367&chr=F\nhttp://web1.localbusiness.com/Story/Email/1,1198,RDU_461041,00.html\nhttp://www.clientwire.com/A55697/tmr.nsf/vwApprovedResumesbyDate!OpenView&Start=55&Count=50&Collapse=48\nhttp://cpan.nitco.com/modules/by-module/Mail/JWIED/SNMP-Monitor-0.1011.readme\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,16,10\nhttp://www6.compaq.com/products/quickspecs/10135_na/10135_na.PDF\nhttp://www.suk2.com/user/777/20001012.html\nhttp://www.jamba.de/KNet/_KNet-vAy8j1-iFd-13az6/browse.de/node.0/cde7f2elw\nhttp://www.imagesofengland.org.uk/41/69/416915.htm\nhttp://ocean.ntou.edu.tw/search*chi/aLaplante,+Phillip+A./alaplante+phillip+a/7,-1,0,B/frameset&F=alappe+frances+moore&1,,2\nhttp://ocean.ntou.edu.tw/search*chi/aLaplante,+Phillip+A./alaplante+phillip+a/7,-1,0,B/frameset&F=alappe+frances+moore&2,,2\nhttp://wap.jamba.de/KNet/_KNet-6Fz8j1-oFd-13b3x/admLogin.de/node.0/cde7f1uou\nhttp://yp.gates96.com/14/49/20/26.html\nhttp://yp.gates96.com/14/49/20/37.html\nhttp://yp.gates96.com/14/49/20/39.html\nhttp://yp.gates96.com/14/49/20/86.html\nhttp://yp.gates96.com/14/49/20/94.html\nhttp://yp.gates96.com/14/49/20/97.html\nhttp://yp.gates96.com/14/49/21/19.html\nhttp://yp.gates96.com/14/49/21/43.html\nhttp://yp.gates96.com/14/49/21/68.html\nhttp://yp.gates96.com/14/49/21/78.html\nhttp://yp.gates96.com/14/49/24/6.html\nhttp://yp.gates96.com/14/49/24/62.html\nhttp://yp.gates96.com/14/49/24/77.html\nhttp://yp.gates96.com/14/49/24/83.html\nhttp://yp.gates96.com/14/49/25/30.html\nhttp://yp.gates96.com/14/49/25/41.html\nhttp://yp.gates96.com/14/49/26/17.html\nhttp://yp.gates96.com/14/49/26/53.html\nhttp://yp.gates96.com/14/49/27/21.html\nhttp://yp.gates96.com/14/49/27/27.html\nhttp://yp.gates96.com/14/49/27/45.html\nhttp://yp.gates96.com/14/49/27/65.html\nhttp://yp.gates96.com/14/49/28/71.html\nhttp://www.boston.digitalcity.com/orangecounty/entertainment/article.dci?aid=1293&start=10\nhttp://tucows.allnet.it/winme/adnload/143-006-005-021.html\nhttp://tucows.allnet.it/winme/adnload/143-006-005-030.html\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A1D/C1R/A2D/A1U/\nhttp://www.crosswinds.net/~klinnia/DragonsDomain/Nest/nest.htm\nhttp://mirrors.valueclick.com/backup.pause/modules/by-category/99_Not_In_Modulelist/Memoize/?S=A\nhttp://www.tgw.com/EJr.5ajd/customer/category/product.html?SUBCATEGORY_ID=557\nhttp://www.sohu.com/business_economy/Company/Computer_Internet/Network_System/Network/\nhttp://china-water.51.net/oicq/oicq_down.htm\nhttp://ftp.lip6.fr/pub/FreeBSD/development/FreeBSD-CVS/ports/math/plplot/patches/Attic/patch-ac,v\nhttp://library.cuhk.edu.hk/search*chi/cHC427.92.C59/chc++427.92+c59/-5,-1,,E/browse\nhttp://yp.gates96.com/4/8/60/2.html\nhttp://yp.gates96.com/4/8/60/19.html\nhttp://yp.gates96.com/4/8/62/9.html\nhttp://yp.gates96.com/4/8/62/23.html\nhttp://yp.gates96.com/4/8/62/59.html\nhttp://yp.gates96.com/4/8/63/26.html\nhttp://yp.gates96.com/4/8/63/41.html\nhttp://yp.gates96.com/4/8/64/48.html\nhttp://yp.gates96.com/4/8/65/0.html\nhttp://yp.gates96.com/4/8/65/42.html\nhttp://yp.gates96.com/4/8/66/13.html\nhttp://yp.gates96.com/4/8/66/88.html\nhttp://yp.gates96.com/4/8/67/23.html\nhttp://yp.gates96.com/4/8/67/51.html\nhttp://yp.gates96.com/4/8/68/11.html\nhttp://yp.gates96.com/4/8/68/16.html\nhttp://yp.gates96.com/4/8/68/78.html\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/CehIaxpSN7cGOeOUjXx_FtrylkakPWisW0DYq0MYmHwGxLBo7shB2XGSeXyvbnsBzHMJTZtmYOUK-XaaAW0Yh88wTY-Mms-hxw67Xaw8WMk3-vUJ4sXm4U7yIGdiN9XoPOqfnODrkqXYztjU6Var\nhttp://www.brd.net/brd-cgi/brd_netzwerk?mailto&router&BZ85G0IL\nhttp://power.luneng.com/power/library/jxgcs/jxgc99/jxgc9912/991204.htm\nhttp://www.egroups.com/messages/Creative_Teaching/72?viscount=-30\nhttp://www.egroups.com/message/Creative_Teaching/85\nhttp://ftp.eecs.umich.edu/.1/people/elta/cusm-Javajae-elta/?D=A\nhttp://polygraph.ircache.net:8181/cagliari/WHOWOULD.HTM\nhttp://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/33/Ort/1564/Homepage/h_homepage...2.html\nhttp://t-online.de/computer/haupt/intcoh87.htm\nhttp://prodigy-sports.excite.com/ncaab/news/025uwire1\nhttp://wwwold.ifi.uni-klu.ac.at/Manuals/jdk1.1b3/docs/guide/awt/designspec/graphics/imagescale.html\nhttp://www.taconet.com.tw/a6983/\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13107/higashimukojima/3chome/index-3.html\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13107/higashimukojima/3chome/index-13.html\nhttp://caller-times.com/autoconv/kickoff98/kickoff30.html\nhttp://www.incestpornstories.com/bisexualbisexual/big-bonedmen/beautiesslanted-eyes/plus-sizeoverweight/{teenlink}\nhttp://qcardsccg.safeshopper.com/8/359.htm?923\nhttp://qcardsccg.safeshopper.com/8/429.htm?923\nhttp://qcardsccg.safeshopper.com/8/433.htm?923\nhttp://lib1.nippon-foundation.or.jp/1997/0486/contents/011.htm\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceOrderStatusOverview-BBC709F1_97EF_F357031944376B6D965FDC23BED4C6F4\nhttp://in.egroups.com/subscribe/muovimallit\nhttp://multichat.de/fp/talk/cb-funk/4.htm\nhttp://multichat.de/fp/talk/cb-funk/5.htm\nhttp://www.jamba.de/KNet/_KNet-zfB8j1-EFd-13bkr/browse.de/node.0/cde7f2elw\nhttp://www.jamba.de/KNet/_KNet-zfB8j1-EFd-13bl7/showInfo-jobs.de/node.0/cenv0b09a\nhttp://152.80.49.210/PUBLIC/WXMAP/GLOBAL/AVN/2000103000/avn.prp.00-36.swasia.htm\nhttp://retailer.gocollect.com/do/session/1912741/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp\nhttp://retailer.gocollect.com/do/session/1912741/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2\nhttp://www.fogdog.com/cedroID/ssd3040183248168/nav/products/winter_sports/1b/shell_jackets/\nhttp://www.fogdog.com/cedroID/ssd3040183248168/nav/products/featured_brands/3c/all/\nhttp://kutschen.de/Schoner/literature/Sammlungen/modelle/collections/\nhttp://el-mundo.es/1999/06/04/television/04N0121.html\nhttp://bitwise.tucows.com/win2k/htmlval2k_license.html\nhttp://bbs.ee.ntu.edu.tw/boards/Saturn/3/7/12/5.html\nhttp://ustlib.ust.hk/search*chi/deconomic+conditions+cameroon+to+1960/deconomic+conditions+cameroon+to+1960/-5,-1,0,B/browse\nhttp://excite.de/kunst/katalog/865\nhttp://www2.hindustantimes.com/ht/nonfram/280498/detFRO07.htm\nhttp://yp.gates96.com/11/69/0/60.html\nhttp://yp.gates96.com/11/69/1/60.html\nhttp://yp.gates96.com/11/69/1/72.html\nhttp://yp.gates96.com/11/69/2/80.html\nhttp://yp.gates96.com/11/69/3/7.html\nhttp://yp.gates96.com/11/69/3/54.html\nhttp://yp.gates96.com/11/69/3/66.html\nhttp://yp.gates96.com/11/69/3/90.html\nhttp://yp.gates96.com/11/69/3/91.html\nhttp://yp.gates96.com/11/69/4/13.html\nhttp://yp.gates96.com/11/69/4/18.html\nhttp://yp.gates96.com/11/69/4/26.html\nhttp://yp.gates96.com/11/69/4/70.html\nhttp://yp.gates96.com/11/69/5/45.html\nhttp://yp.gates96.com/11/69/5/77.html\nhttp://yp.gates96.com/11/69/6/10.html\nhttp://yp.gates96.com/11/69/6/80.html\nhttp://yp.gates96.com/11/69/7/43.html\nhttp://yp.gates96.com/11/69/7/76.html\nhttp://yp.gates96.com/11/69/8/17.html\nhttp://yp.gates96.com/11/69/8/33.html\nhttp://yp.gates96.com/11/69/8/98.html\nhttp://yp.gates96.com/11/69/9/3.html\nhttp://yp.gates96.com/11/69/9/41.html\nhttp://yp.gates96.com/11/69/9/92.html\nhttp://store.peoplestour.com/kore/catalog/Music/R&B/G_by_artist/104757/product.html\nhttp://free.prohosting.com/~seikyo/speak2.htm\nhttp://pub.chinaccm.com/12/news/200009/16/160724.asp\nhttp://pub.chinaccm.com/12/news/200008/11/155448.asp\nhttp://www.fogdog.com/cedroID/ssd3040183305379/nav/products/featured_brands/12r/spa_products/\nhttp://itcareers.careercast.com/texis/it/itjs/+EwwBmev6D86ebtwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDacnwmaADdicnmtnaMwDwtnMnDBanDtoDnnGaMw55wqr15nBB5aqwpB1GnaoDhdGMwBodDaBnqrDdcdton5aMFqhTfR20DzmewrwwwpBmGeP0-dmwww5rmeNDwwwBrmeZpwww/jobpage.html\nhttp://www.outdoorwire.com/content/lists/dirt/200004/msg00354.html?{LoadingFrameset}\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=5&discrim=186,22,8\nhttp://www.teleparc.com/sports/funski/02/03.htm\nhttp://cn.egroups.com/post/safrica_bridge?act=reply&messageNum=43\nhttp://www.dfae.diplomatie.gouv.fr/culture/france/cinema/documentaires/recherche/francais/ethique.html\nhttp://ring.toyama-ix.net/archives/mac/info-mac/_Communication/ctb/?D=A\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959528284/Catalog/11000155\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959528284/Catalog/2000019\nhttp://cometweb01.comet.co.uk/do!session=132005&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLljX5fkkKaotHlob5mloLq1\nhttp://cometweb01.comet.co.uk/do!session=132005&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0uts0cZX5qkXLjbzKKbiLbsfLpflLkp5\nhttp://www.ualberta.ca/CNS/RESEARCH/Software/SAS/cms/zfor-hex.htm\nhttp://www.ualberta.ca/CNS/RESEARCH/Software/SAS/os390/zlibname.htm\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?hanrahan::175.html\nhttp://library.bangor.ac.uk/search/dAIDS+(Disease)+--+Risk+factors+--+Psychological+aspects+--+Periodicals/daids+disease+risk+factors+psychological+aspects+periodicals/-5,1,1,B/frameset&F=daids+disease+research&1,1,\nhttp://www.rismedia.com/consumer/27/12194/\nhttp://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=39&Count=50&Expand=38\nhttp://www.etoys.com/prod/toy/53097261\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/J6tI5danl1CaEvxOmyBVl8pzyaGqhs1RWIGq0aJ2_fwvzv4y9T7bHlxQKPzsrhMRN5HEI_Y9ZKrSvboCZvKhdwPPYK2klPp0EqNMO7Mb8fDTcz6xykQv8YQCQ2dy_iLZjbXwrknXqcH32HVSXAq7iUr4yIVG66IK\nhttp://www.amcity.com/jacksonville/stories/1999/11/22/daily16.html?t=printable\nhttp://moviestore.zap2it.com/browse/MOVIES/BOXERSHO/s.F0FWmEHm\nhttp://moviestore.zap2it.com/browse/MOVIES/SHIRT/s.F0FWmEHm\nhttp://moviestore.zap2it.com/browse/MOVIES/TIE/s.F0FWmEHm\nhttp://moviestore.zap2it.com/browse/MOVIES/WATCH/s.F0FWmEHm\nhttp://yp.gates96.com/11/25/30/0.html\nhttp://yp.gates96.com/11/25/30/47.html\nhttp://yp.gates96.com/11/25/31/87.html\nhttp://yp.gates96.com/11/25/32/3.html\nhttp://yp.gates96.com/11/25/32/61.html\nhttp://yp.gates96.com/11/25/32/97.html\nhttp://yp.gates96.com/11/25/33/6.html\nhttp://yp.gates96.com/11/25/33/81.html\nhttp://yp.gates96.com/11/25/33/83.html\nhttp://yp.gates96.com/11/25/34/10.html\nhttp://yp.gates96.com/11/25/34/35.html\nhttp://yp.gates96.com/11/25/34/88.html\nhttp://yp.gates96.com/11/25/34/90.html\nhttp://yp.gates96.com/11/25/35/95.html\nhttp://yp.gates96.com/11/25/36/19.html\nhttp://yp.gates96.com/11/25/36/98.html\nhttp://yp.gates96.com/11/25/37/61.html\nhttp://yp.gates96.com/11/25/37/74.html\nhttp://yp.gates96.com/11/25/38/2.html\nhttp://yp.gates96.com/11/25/38/62.html\nhttp://yp.gates96.com/11/25/39/1.html\nhttp://yp.gates96.com/11/25/39/25.html\nhttp://yp.gates96.com/11/25/39/85.html\nhttp://yp.gates96.com/11/25/39/95.html\nhttp://www.linux.com/networking/network/industry/server/community/Red_Hat/\nhttp://www.linux.com/networking/network/industry/server/community/Slashdot/\nhttp://www.linux.com/networking/network/industry/server/community/growth/\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/modules/by-category/16_Server_and_Daemon_Utilities/Server/DRUOSO/Server-FastPL-1.0.0.readme\nhttp://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/parallel/clusterit/pkg/DESCR\nhttp://dk.egroups.com/login.cgi?login_target=%2Fgroup%2FGravesrus\nhttp://www.maxfunds.com/MF1000.nsf/FUNDanalysisPrint/FGOAX\nhttp://www.gbnf.com/genealog2/brothers/html/d0065/I12666.HTM\nhttp://office.net/benelux/nld/downloadcatalog/dldpowerpoint.asp\nhttp://yam.com/en/rand/ent/music/minfo/\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/Collect_DB_Advers2/2000-09-28/23/?N=D\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=22,11,35\nhttp://dk.egroups.com/messages/lafz/6\nhttp://www.online.kokusai.co.jp/Words/V0043555/wrd/G700/words/kana_main.html\nhttp://adelaida.net/music/texts/pink75.html\nhttp://support.tandy.com/support_audio/doc40/40914.htm\nhttp://www.nutritionblvd.com/426162.html\nhttp://www.nutritionblvd.com/426121.html\nhttp://www.nutritionblvd.com/426117.html\nhttp://www.fogdog.com/cedroID/ssd3040183301450/boutique/aaron_chang/\nhttp://www.fogdog.com/cedroID/ssd3040183301450/boutique/moving_comfort/\nhttp://www.fogdog.com/cedroID/ssd3040183301450/fly/\nhttp://in.egroups.com/login.cgi?login_target=%2Fmessage%2Finfogiappone%2F81\nhttp://in.egroups.com/post/infogiappone?act=reply&messageNum=81\nhttp://cn.egroups.com/message/1800list/5416\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.slac.stanford.edu/grp/arb/tn/arbvol1/ARDB011.pdf\nhttp://crrstv.tucows.com/winnt/adnload/135146_46908.html\nhttp://syix.tucows.com/win2k/adnload/61785_28334.html\nhttp://ftp.ccu.edu.tw/pub/language/tcl/sorted/packages-7.6/sound/xmpeg_0.5/\nhttp://www.eos.ncsu.edu/linux/LDP/LDP/khg/HyperNews/get/fs/fs/3.html\nhttp://polygraph.ircache.net:8181/http_-2www.tvguide.com/sports/football/http_-2home.netscape.com/http_-2www.premaonline.com/http_-2www.ionet.net/~burndragon/form1.html\nhttp://se.egroups.com/group/MyLuminaGoezBoom\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_show_author/a_id=7056553&tmpl=AUT_00&ID=483371\nhttp://www3.newstimes.com/archive97/apr0497/tvg.htm\nhttp://dic.empas.com/show.tsp/?q=edger&f=B\nhttp://www.brio.de/BRIO.catalog/39fe2f570905fb6a2740d472aa7806aa/UserTemplate/2\nhttp://itcareers.careercast.com/texis/it/itjs/+uwwBme7WD86eYtwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDaoDhdGMwBodDa5nq1GoBOanDtoDnnGaiw5roDtBdDanDBnGpGo5naGn31oGnmawGqroBnqB1Gna5O5BnM5aMFqhTfR20DzmehrwwwpBmeZWD86Nwww5rmekdwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/+pwwBmet5986twwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDaoDhdGMwBodDa5nq1GoBOanDtoDnnGaiw5roDtBdDanDBnGpGo5naGn31oGnmawGqroBnqB1Gna5O5BnM5aMFqhTfR20DzmehrwwwpBmeZWD86Nwww5rmekdwwwBrmeZpwww/morelike.html\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/180/132317//C/1825784/0////25/S/MLTPAI\nhttp://www.stanford.edu/~sevls/files/?M=D\nhttp://library.bangor.ac.uk/search/dSystem+analysis+--+Periodicals/dsystem+analysis+periodicals/-17,-1,0,B/browse\nhttp://mirror.ox.ac.uk/Mirrors/ftp.redhat.com/roughcuts/m68k/misc/src/install/pci-probing/CVS/\nhttp://yp.gates96.com/0/13/10/17.html\nhttp://yp.gates96.com/0/13/11/26.html\nhttp://yp.gates96.com/0/13/12/20.html\nhttp://yp.gates96.com/0/13/12/24.html\nhttp://yp.gates96.com/0/13/12/49.html\nhttp://yp.gates96.com/0/13/13/22.html\nhttp://yp.gates96.com/0/13/13/80.html\nhttp://yp.gates96.com/0/13/15/8.html\nhttp://yp.gates96.com/0/13/16/4.html\nhttp://yp.gates96.com/0/13/16/18.html\nhttp://yp.gates96.com/0/13/16/64.html\nhttp://yp.gates96.com/0/13/17/15.html\nhttp://yp.gates96.com/0/13/18/11.html\nhttp://yp.gates96.com/0/13/18/18.html\nhttp://yp.gates96.com/0/13/19/5.html\nhttp://yp.gates96.com/0/13/19/22.html\nhttp://yp.gates96.com/0/13/19/60.html\nhttp://library.cuhk.edu.hk/search*chi/aYen-shou,+Shih,+904-975./ayen+shou+shih++904++975/-5,-1,0,E/2browse\nhttp://china.sydney2000.com/StaticNews/2000-07-29/News372a86.htm\nhttp://www.fujian-window.com/Fujian_w/news/mzrb1/20000724/3_1.html\nhttp://www.fujian-window.com/Fujian_w/news/mzrb1/20000724/3_2.html\nhttp://legalminds.lp.findlaw.com/list/law-lib/nav07807.html\nhttp://ftp.fi.debian.org/debian/dists/woody/contrib/binary-sparc/tex/?N=D\nhttp://community.webshots.com/photo/3635718/3636284GcTotmmONR\nhttp://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=23,24,25,17,10\nhttp://spaindustry.com/por/exp/911.html\nhttp://niagara.tucows.com/winme/preview/10464.html\nhttp://niagara.tucows.com/winme/adnload/138750_30032.html\nhttp://niagara.tucows.com/winme/adnload/138743_30025.html\nhttp://niagara.tucows.com/winme/adnload/138740_30023.html\nhttp://retailer.gocollect.com/do/session/1912780/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/advanced_search.asp\nhttp://preview.egroups.com/messages/UKMatrix\nhttp://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fhecates_news%2F21\nhttp://pub.chinaccm.com/02/news/200005/31/133146.asp\nhttp://pub.chinaccm.com/02/news/200005/31/133212.asp\nhttp://localhost/test,\nhttp://kuyper.calvin.edu/fathers2/ANF-02/anf02-25.htm\nhttp://kuyper.calvin.edu/fathers2/ANF-02/anf02-56.htm\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/990910.cle.AT.cws.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/990915.nym.AT.col.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/990919.cws.AT.tor.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/990926.hou.AT.mil.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/991003.nyy.AT.tam.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/991006.bos.AT.cle.box.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/ALscores.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/CAT.ROS.pit.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/NYY.CLE.pit.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/mlb.ARI.recap.html\nhttp://totalsports.aol.com/stats/bbo/mlb/mlb/mlb.atl.vs.hou.stat.html\nhttp://www.jpc-music.com/2241771.htm\nhttp://sunsite.org.uk/packages/TeX/uk-tex/macros/latex/contrib/supported/europs/?M=A\nhttp://mitglied.tripod.de/blueblood/forum.html\nhttp://kuyper.calvin.edu/fathers2/NPNF1-06/npnf1-06-92.htm\nhttp://garbage.sonicnet.com/classical/features/Thomas,_Tilson/060500/index04.jhtml\nhttp://dk.egroups.com/post/danish?act=forward&messageNum=6\nhttp://www.bornloser.com/comics/peanuts/f_profiles/html/f4b1.html\nhttp://www.online.kokusai.co.jp/Home/V0043517/wrd/G100/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380823/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/\nhttp://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/Startseite/Top-Darlehens-Konditionen/Gemeinsam/erreichenPartner/email3d.htm\nhttp://sunsite.org.uk/public/pub/Mirrors/ftp.hpc.uh.edu/pub/?D=A\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?tillery::418.html\nhttp://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/MSCHWARTZ/?M=A\nhttp://montxsuz.all-hotels.com/usa/massachusetts/plymouth_e1.htm\nhttp://montxsuz.all-hotels.com/usa/massachusetts/brewster_e1.htm\nhttp://montxsuz.all-hotels.com/usa/massachusetts/edgartown_e1.htm\nhttp://montxsuz.all-hotels.com/usa/massachusetts/north_dartmouth_e1.htm\nhttp://montxsuz.all-hotels.com/usa/massachusetts/washington_e1.htm\nhttp://romeo.univ-savoie.fr/winnt/adnload/51179_28892.html\nhttp://www.dispatch.co.za/1998/12/02/sport/FALDO.HTM\nhttp://www.dispatch.co.za/1998/12/02/sport/RACE2.HTM\nhttp://store1.europe.yahoo.com/brink2/2000074707407.html\nhttp://www34.yahoo.co.jp/horse/1999/tokyo/0530/result_08.html\nhttp://members.tripod.co.jp/suiha_izumi/gallery-taikoubou-.htm\nhttp://linuxberg.vol.at/gnomehtml/adnload/020-008-002-004_6145.html\nhttp://books.hyperlink.com/bookdetails/Nuclear_Power_Plants_Worldwide/0810388804\nhttp://www.hudecek.de/gen/gen57.htm\nhttp://www.hudecek.de/gen/gen61.htm\nhttp://unofficial.capital.edu/students/kralph/\nhttp://web6.peopledaily.com.cn/gjjrb/200004/home.htm\nhttp://www.gov.hk/hkma/eng/public/sccr/toc.htm\nhttp://www4.50megs.com/johnphil29/86week3injury.htm\nhttp://www4.50megs.com/johnphil29/86week3loupitlog.htm\nhttp://naver22.juniornaver.co.kr/Entertainment_and_Arts/Performing_Arts/Theater/Musical/\nhttp://198.103.152.100/search*frc/dInfrastructure+(Economics)+--+Canada/dinfrastructure+economics+canada/-5,-1,0,B/frameset&F=dinfrastructure+economics&3,,0\nhttp://198.103.152.100/search*frc/dInfrastructure+(Economics)+--+Canada/dinfrastructure+economics+canada/-5,-1,0,B/frameset&F=dinfrastructure+economics&5,,0\nhttp://www.playgirl.dk/oncampus/feature/collegemovies/06.html\nhttp://www.linux.com/networking/support/red_hat/internet/consumer/growth/\nhttp://www.linux.com/networking/support/red_hat/internet/consumer/mainstream/\nhttp://no.egroups.com/message/tengu-l/224\nhttp://no.egroups.com/message/tengu-l/229\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_24\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_22\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_16\nhttp://sunsite.informatik.rwth-aachen.de/LinuxArchives/slackware/slackware/source/a/e2fsprog/?M=A\nhttp://bbs.syu.ac.kr/NetBBS/Bbs.dll/ipspds018/lst/qqa/f/qqo/008A/zka/B2-kB2-p\nhttp://stulchik.list.ru/catalog/13346.html\nhttp://katalog.wp.pl/www/Biznes_i_Ekonomia/Firmy_Podzial_wg_Branz/Elektrotechnika_i_Energetyka/index25.html\nhttp://www.fogdog.com/cedroID/ssd3040183313356/nav/stores/tennis/\nhttp://www.fogdog.com/cedroID/ssd3040183313356/customer_service/shop_by_catalog.html\nhttp://193.207.57.3/cgi-win/hiweb.exe/a2/d13/b4,4,1f,4,4,,\nhttp://ring.omp.ad.jp/archives/lang/perl/CPAN/modules/by-authors/id/JPRIT/Envy-2.45.readme\nhttp://193.207.57.3/cgi-win/hiweb.exe/a2/d1342/b4,4,1f,e,e,,\nhttp://library.wuhee.edu.cn/dzsy/military/china/army/002.htm\nhttp://library.wuhee.edu.cn/dzsy/military/china/army/006.htm\nhttp://library.wuhee.edu.cn/dzsy/military/china/army/059.htm\nhttp://library.wuhee.edu.cn/dzsy/military/china/army/095.htm\nhttp://polygraph.ircache.net:8181/http_-2www.geocities.com/TimesSquare/Maze/2075/http_-2www.yahoo.com/Science/Engineering/Mechanical_Engineering/corporate.htm\nhttp://198.103.152.100/search*frc/aGundavaram,+Shishir/agundavaram+shishir/-17,-1,0,B/frameset&F=aguirdham+maureen&1,1\nhttp://findmail.com/message/geewhiz/21\nhttp://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/19P02|972959597|Luggage|user|0|1,0,0,1\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|19P03|972959597|Luggage|user|0|1,0,0,1\nhttp://nme.com/AST/Discussion_Groups/CDA/Message_Search/1,1105,37_92-0-0-7,00.html\nhttp://namviet.subportal.com/sn/Programming/Visual_Basic_Components_H-P/5638.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4963.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4810.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4735.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/3294.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/3329.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4689.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4646.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4582.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4587.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4154.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4607.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4600.html\nhttp://www2.so-net.ne.jp/cinet/board/log/200001/messages/4571.html\nhttp://www.gotocity.com/local/2/us/KS/g/67455/shopping/\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13115/ogikubo/1chome/index-1.html\nhttp://www.mapion.co.jp/custom/AOL/admi/13/13115/ogikubo/1chome/index-21.html\nhttp://neuro-www.mgh.harvard.edu/forum_2/ChronicPainF/Capornottocapthatisthe.html\nhttp://www.yagoo.co.kr/stats/pitching.asp?Mlbmanid=MIGDEL7299\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=50&discrim=165,233,7\nhttp://www.mirror.edu.cn/res/sunsite/pub/academic/literature/book-reviews/1994/8-August/?N=D\nhttp://www.ferien-immobilien.de/ungarn/verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Gemeinsam/vertriebspartner.htm\nhttp://www.ferien-immobilien.de/ungarn/verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Gemeinsam/feedback.html\nhttp://www.bjd.com.cn/BJWB/20000401/GB/BJWB^10199^1^01W136.htm\nhttp://pluto.beseen.com/boardroom/u/49766/\nhttp://amadeus.siba.fi/doc/bitchx/documentation/color.txt\nhttp://www.ealingcommon.londonengland.co.uk/pensions.htm\nhttp://pub8.ezboard.com/fthecriticalpoetsmessageboartheartofcritiquing.showMessage?topicID=11.topic&index=13\nhttp://pub8.ezboard.com/fthecriticalpoetsmessageboareverythingelse.showMessage?topicID=223.topic&index=10\nhttp://www.endocrine.ru/Meln_09_10_00/_vti_bin/shtml.exe/meln_post.htm?79\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,0+9,3-12,0+18,0\nhttp://www.jobvillage.com/channel/jobs/media_communication/b.9255.g.1733.html\nhttp://www.teenplatinum.com/barelylegal/no-boundarieshardcore/flashingbarely-legal/sweatingendurance/cuntamateur/chinesepetite/bootygay-bar/lubricationfellatio.html\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/001222.1.5246799112\nhttp://src.openresources.com/debian/src/utils/HTML/R/change_cur_jutil.html\nhttp://genforum.genealogy.com/caudill/messages/389.html\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959928076/Catalog/1000003\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959928076/ContentView/1000188/1/1201981\nhttp://www.marketingtool.com/contribute/webfirm/b.435.r.2416.html\nhttp://dell.excite.co.jp/member_encounters/mailing_list/ml_for_women\nhttp://www.angeredsgymn.se/doc/sdb/en/html/keylist.SIGNSET.html\nhttp://map.ipc.co.jp/asp/onmap/r/new/g-27/f-525628/\nhttp://www.jpc-music.com/2549026.htm\nhttp://www.egroups.com/message/nandscarolina/324?source=1\nhttp://www.jpc-music.com/2226499.htm\nhttp://www.jpc-music.com/2226480.htm\nhttp://tucows.bigskysoft.com/winnt/miscaudiont_rating.html\nhttp://tucows.bigskysoft.com/winnt/adnload/69355_28370.html\nhttp://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=115.23&Count=50&Expand=130\nhttp://personal.atl.bellsouth.net/mia/a/j/ajcubas/\nhttp://yp.gates96.com/7/49/21/96.html\nhttp://yp.gates96.com/7/49/22/39.html\nhttp://yp.gates96.com/7/49/22/60.html\nhttp://yp.gates96.com/7/49/22/70.html\nhttp://yp.gates96.com/7/49/22/75.html\nhttp://yp.gates96.com/7/49/23/8.html\nhttp://yp.gates96.com/7/49/23/30.html\nhttp://yp.gates96.com/7/49/23/43.html\nhttp://yp.gates96.com/7/49/24/7.html\nhttp://yp.gates96.com/7/49/24/8.html\nhttp://yp.gates96.com/7/49/24/27.html\nhttp://yp.gates96.com/7/49/24/49.html\nhttp://yp.gates96.com/7/49/25/92.html\nhttp://yp.gates96.com/7/49/26/56.html\nhttp://yp.gates96.com/7/49/26/77.html\nhttp://yp.gates96.com/7/49/28/23.html\nhttp://yp.gates96.com/7/49/28/34.html\nhttp://yp.gates96.com/7/49/29/56.html\nhttp://yp.gates96.com/7/49/29/60.html\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|38P08B|972959501|Communications|user|0|1,0,0,1\nhttp://193.207.57.3/cgi-win/hiweb.exe/a2/d170/b9,4,1f,1c,1c,,\nhttp://wuarchive.wustl.edu/systems/linux/replay/debian/dists/unstable/non-US/binary-hurd-i386/?M=D\nhttp://www.private-immobilien-boerse.de/friesland/verkauf/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Allgemeine-IB/Startseite/Exklusiv-IB/Startseite/\nhttp://citeseer.nj.nec.com/update/269184\nhttp://citeseer.nj.nec.com/cidcontext/3266491\nhttp://citeseer.nj.nec.com/cidcontext/3266502\nhttp://genforum.genealogy.com/cgi-genforum/forums/hinkle.cgi?786\nhttp://eagle.synet.edu.cn/mirror/www.wisc.edu/grad/catalog/cals/biometry.html\nhttp://cisne.sim.ucm.es/search*spi/cCDR7(035)TRA/ccdr7(035)tra/-5,-1,0,B/frameset&F=ccdr7(058)may&1,1\nhttp://www.wfg-rhein-lahn.de/goldenes-fass/schrott2.htm\nhttp://www.jamba.nl/KNet/_KNet-6Aw8j1-pC4-ptt0/browse.nl/node.0/cdn40t70v\nhttp://www.dcc.ufmg.br/Entnet/estrem/tsld018.htm\nhttp://sites.uol.com.br/knaumann/DorstnerDrahtwerke.html\nhttp://64.209.212.162/learnlots/step/0,2891,9+47+95+23413+12412_0,00.html\nhttp://www.on-semiconductor.com/pub/prod/0,1824,productsm_ProductSummary_BasePartNumber=LM337A,00.html\nhttp://jxi.gov.cn/yw-gn001.nsf/view!OpenView&Start=39.19&Count=30&Expand=53\nhttp://systemlogic.neoseeker.com/Games/Products/PC/dropship/dropship_reviews.html\nhttp://link.fastpartner.com/do/session/600373/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php\nhttp://www.bsv.ch/ch/d/sr/0_211_222_1/a10.html\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/contact.netscape.com/contact\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/entertainment.netscape.com/entertainment/\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/games.netscape.com/computing/games/features/\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/home.netscape.com/finance/taxes/\nhttp://link.fastpartner.com/do/session/600379/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/brleksaker.php\nhttp://itcareers.careercast.com/texis/it/itjs/+TwwBmeOWD86eDhwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewPXwotoBwcaqconDBahoDwDqnaqddGmoDwBdGaqdMpwDon5aBnwMax1mtnBoDtaMwoDBnDwDqnapGdqn55n5aGn51MnaMFqryfHfREIDzmUwwwpBme+9D86Exww5rme7dwwwBrmeZpwww/jobpage.html\nhttp://fi.egroups.com/message/handebol_aaagm/5?source=1\nhttp://www.crutchfield.com/cgi-bin/S-SHC3792E7De/viewcart.asp\nhttp://www.links2go.org/more/www.asle.umn.edu/\nhttp://yp.gates96.com/7/69/10/58.html\nhttp://yp.gates96.com/7/69/10/64.html\nhttp://yp.gates96.com/7/69/10/76.html\nhttp://yp.gates96.com/7/69/10/91.html\nhttp://yp.gates96.com/7/69/11/31.html\nhttp://yp.gates96.com/7/69/11/67.html\nhttp://yp.gates96.com/7/69/11/70.html\nhttp://yp.gates96.com/7/69/11/88.html\nhttp://yp.gates96.com/7/69/11/96.html\nhttp://yp.gates96.com/7/69/12/25.html\nhttp://yp.gates96.com/7/69/12/29.html\nhttp://yp.gates96.com/7/69/12/61.html\nhttp://yp.gates96.com/7/69/12/65.html\nhttp://yp.gates96.com/7/69/12/73.html\nhttp://yp.gates96.com/7/69/13/30.html\nhttp://yp.gates96.com/7/69/13/36.html\nhttp://yp.gates96.com/7/69/14/8.html\nhttp://yp.gates96.com/7/69/14/32.html\nhttp://yp.gates96.com/7/69/14/54.html\nhttp://yp.gates96.com/7/69/14/62.html\nhttp://yp.gates96.com/7/69/14/83.html\nhttp://yp.gates96.com/7/69/15/34.html\nhttp://yp.gates96.com/7/69/15/87.html\nhttp://yp.gates96.com/7/69/16/18.html\nhttp://yp.gates96.com/7/69/17/5.html\nhttp://yp.gates96.com/7/69/17/22.html\nhttp://yp.gates96.com/7/69/17/44.html\nhttp://yp.gates96.com/7/69/17/86.html\nhttp://yp.gates96.com/7/69/17/88.html\nhttp://yp.gates96.com/7/69/18/16.html\nhttp://yp.gates96.com/7/69/18/83.html\nhttp://yp.gates96.com/7/69/18/88.html\nhttp://yp.gates96.com/7/69/19/0.html\nhttp://yp.gates96.com/7/69/19/1.html\nhttp://yp.gates96.com/7/69/19/97.html\nhttp://213.36.119.69/do/session/152995/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html\nhttp://www.egroups.com/post/sikhstudent?act=forward&messageNum=77\nhttp://ca.yahoo.com/Regional/U_S__States/Wisconsin/Metropolitan_Areas/Milwaukee_Metro/Business_and_Shopping/Shopping_and_Services/Food_and_Drink/Beverages/\nhttp://www.aelita.net/products/services/library/~archive/Download_redirect/company/news/default.htm\nhttp://mindex.tucows.com/winme/preview/430.html\nhttp://coda.nctu.edu.tw/vendors/DBMaker/DBMaker/driver/PHP/?S=A\nhttp://www.streetprices.com/Electronics/Computer_Hardware_PC/Switches/Monitor/MAKE+BELKIN+COMPONENTS/sortproductbydesc/SP151043.html\nhttp://wynnsystems.com/y9I_5aVd/careerlink.html\nhttp://www.volny.cz/alik/akordy/zizen.htm\nhttp://www.houses-apartment-listings.com/Michigan/city_search_criteria.asp?state=MI&City=CHAMPION\nhttp://pub9.ezboard.com/fpyro1394pyro1394.showAddReplyScreenFromWeb?topicID=345.topic\nhttp://www.maastrek.de/maas/01851471b455eff5cd01/1/0/1\nhttp://beta.mkn.co.uk/wine/order/champ2?what-mnw9=1\nhttp://beta.mkn.co.uk/wine/order/champ2?what-mnw14=1\nhttp://sunsite.org.uk/public/pub/packages/andrew/auis-6.3/overhead/\nhttp://www.ferien-immobilien.de/Spanien/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Exklusiv-IB/Startseite/Gemeinsam/geschaeftsbedingungen.htm\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A2S/A3S/1AL/A2D/A1S/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A2S/A3S/1AL/A2D/C2S/\nhttp://tv.thevines.com/leaf/AA0000369148/3/1\nhttp://tv.thevines.com/leaf/AA0000369148/37/0/&favorite[join]=yes\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showFolder/100001/1304571\nhttp://freebsd.ntu.edu.tw/perl/modules/by-module/FileCache/ILYAZ/?D=A\nhttp://www.highwired.net/Sport/Player/0,2291,2037-46698,00.html\nhttp://www.nl.sco.com/unixware/adminguide/qs-11-32.html\nhttp://www.online.kokusai.co.jp/Service/V0043502/wrd/G200/service/service.html\nhttp://www.realize.com/ambe7581.htm,qt=e784fe2f=2a38a234-14-26557ed-80000000-0-0-3--\nhttp://www.realize.com/am9a7d81.htm,qt=e784fe2f=2a38a234-14-26557ed-80000000-0-0-3--\nhttp://www.geocities.co.jp/Colosseum/7952/dragon3.html\nhttp://uk.dir.clubs.yahoo.com/Entertainment___Arts/Magic/~other/~White_Pages/2.html\nhttp://yp.gates96.com/13/9/60/95.html\nhttp://yp.gates96.com/13/9/60/97.html\nhttp://yp.gates96.com/13/9/61/12.html\nhttp://yp.gates96.com/13/9/61/42.html\nhttp://yp.gates96.com/13/9/61/52.html\nhttp://yp.gates96.com/13/9/62/13.html\nhttp://yp.gates96.com/13/9/62/19.html\nhttp://yp.gates96.com/13/9/62/32.html\nhttp://yp.gates96.com/13/9/62/44.html\nhttp://yp.gates96.com/13/9/62/75.html\nhttp://yp.gates96.com/13/9/63/71.html\nhttp://yp.gates96.com/13/9/63/89.html\nhttp://yp.gates96.com/13/9/64/16.html\nhttp://yp.gates96.com/13/9/64/64.html\nhttp://yp.gates96.com/13/9/64/83.html\nhttp://yp.gates96.com/13/9/65/15.html\nhttp://yp.gates96.com/13/9/65/39.html\nhttp://yp.gates96.com/13/9/65/81.html\nhttp://yp.gates96.com/13/9/66/19.html\nhttp://yp.gates96.com/13/9/66/51.html\nhttp://yp.gates96.com/13/9/67/72.html\nhttp://yp.gates96.com/13/9/67/75.html\nhttp://yp.gates96.com/13/9/67/93.html\nhttp://yp.gates96.com/13/9/67/94.html\nhttp://yp.gates96.com/13/9/68/9.html\nhttp://yp.gates96.com/13/9/68/14.html\nhttp://yp.gates96.com/13/9/68/23.html\nhttp://yp.gates96.com/13/9/68/39.html\nhttp://yp.gates96.com/13/9/68/68.html\nhttp://yp.gates96.com/13/9/69/22.html\nhttp://yp.gates96.com/13/9/69/62.html\nhttp://shop.intouch.de/cgi-bin/Eternit-Shop/1678827467/IconBar\nhttp://www.jango.com/home_and_garden/outdoor_and_garden/gardening/outdoor_furniture/miscellaneous/?num=1&prod=7\nhttp://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/SHERWOOD/CHECKSUMS\nhttp://www.acad.polyu.edu.hk/spkg/sas8/sasdoc/hrddoc/indfiles/57263.htm\nhttp://ftp.te.fcu.edu.tw/cpatch/system/mbm/source/?D=A\nhttp://web1.localbusiness.com/Story/0,1118,SAN_11751,00.html\nhttp://www.amulation.com/md-l-archive/199902/msg00357.html\nhttp://ads3.zdnet.com/c/g=r1517&c=a53585&camp=c13878&idx=2000.10.30.21.32.11/www.sega.com/seganet\nhttp://pub.chinaccm.com/23/news/200009/30/111206.asp\nhttp://www.online.kokusai.co.jp/Service/V0043534/wrd/G200/service/service.html\nhttp://www.buybuddy.com/sleuth/27/1/1060204/2992/\nhttp://www.friend4life.com/foreign-affair/infopage/info12655.htm\nhttp://www.friend4life.com/women/info7867.htm\nhttp://www.friend4life.com/women/info11637.htm\nhttp://www.chabadlibrary.org/ecatalog/EC07/EC07328.HTM\nhttp://tulips.ntu.edu.tw/search*chi/cJC311+S275+1992/cjc++311+s275+1992/7,-1,0,E/2browse\nhttp://stationradio.subportal.com/sn/Network_and_Internet/Misc__Networking_Tools/866.html\nhttp://www.canlii.org/ca/regu/sor88-278/sec2.html\nhttp://www.rottentomato.com/movies/titles/traffic/click.php?review=1\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=4,26,16,35,15\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,169,Electric+Wave+Girl+1998.html\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,176,Electric+Wave+Girl+1998.html\nhttp://www.teenplatinum.com/barelylegal/bellyovary/parkingjail-bait/oral-sexoral-sex/big-bonedmen/sex/main.html\nhttp://troy.lib.sfu.ca/search/snewsinc/snewsinc/-5,1,1,B/frameset&F=snewsbrief&1,,2\nhttp://biblio.cesga.es:81/search*gag/dL&oacute%3Bpez+de+Medina,+Juan/dlopez+de+medina+juan/-5,-1,0,B/frameset&F=dlopez+de+ayala+pedro+critica+e+interpretacion&1,,2\nhttp://proxy.rmcnet.fr/udsp68/commissions.htm\nhttp://proxy.rmcnet.fr/udsp68/csp_colmar.htm\nhttp://yp.gates96.com/4/0/70/88.html\nhttp://yp.gates96.com/4/0/71/51.html\nhttp://yp.gates96.com/4/0/71/57.html\nhttp://yp.gates96.com/4/0/71/84.html\nhttp://yp.gates96.com/4/0/71/85.html\nhttp://yp.gates96.com/4/0/72/84.html\nhttp://yp.gates96.com/4/0/72/94.html\nhttp://yp.gates96.com/4/0/73/15.html\nhttp://yp.gates96.com/4/0/73/92.html\nhttp://yp.gates96.com/4/0/74/96.html\nhttp://yp.gates96.com/4/0/75/23.html\nhttp://yp.gates96.com/4/0/75/94.html\nhttp://yp.gates96.com/4/0/76/41.html\nhttp://yp.gates96.com/4/0/76/82.html\nhttp://yp.gates96.com/4/0/77/64.html\nhttp://yp.gates96.com/4/0/78/93.html\nhttp://yp.gates96.com/4/0/79/72.html\nhttp://yp.gates96.com/4/0/79/82.html\nhttp://fi.egroups.com/message/morehealth/13?source=1\nhttp://cn.egroups.com/message/Multicultural/489\nhttp://cn.egroups.com/message/Multicultural/495\nhttp://cn.egroups.com/message/Multicultural/497\nhttp://yp.gates96.com/4/1/60/54.html\nhttp://yp.gates96.com/4/1/60/69.html\nhttp://yp.gates96.com/4/1/61/83.html\nhttp://yp.gates96.com/4/1/62/68.html\nhttp://yp.gates96.com/4/1/63/13.html\nhttp://yp.gates96.com/4/1/63/42.html\nhttp://yp.gates96.com/4/1/63/61.html\nhttp://yp.gates96.com/4/1/63/73.html\nhttp://yp.gates96.com/4/1/64/15.html\nhttp://yp.gates96.com/4/1/64/49.html\nhttp://yp.gates96.com/4/1/64/54.html\nhttp://yp.gates96.com/4/1/65/19.html\nhttp://yp.gates96.com/4/1/65/26.html\nhttp://yp.gates96.com/4/1/65/69.html\nhttp://yp.gates96.com/4/1/65/98.html\nhttp://yp.gates96.com/4/1/66/57.html\nhttp://yp.gates96.com/4/1/66/62.html\nhttp://yp.gates96.com/4/1/66/79.html\nhttp://yp.gates96.com/4/1/66/86.html\nhttp://yp.gates96.com/4/1/66/88.html\nhttp://yp.gates96.com/4/1/67/6.html\nhttp://yp.gates96.com/4/1/67/49.html\nhttp://yp.gates96.com/4/1/67/76.html\nhttp://yp.gates96.com/4/1/67/78.html\nhttp://yp.gates96.com/4/1/68/57.html\nhttp://yp.gates96.com/4/1/69/10.html\nhttp://yp.gates96.com/4/1/69/47.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=blich&l=de\nhttp://www.secinfo.com/d17xw.53m.htm\nhttp://www.cs.unm.edu/sheppard-bin/igmdesc.cgi/n=shep/I1475\nhttp://home.pchome.com.tw/computer/54915491/data/data2.htm\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/author/3910318\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=215&discrim=164,80,165\nhttp://library.bangor.ac.uk/search/cHN582+.R45+1991/chn++582+r45+1991/-5,-1,0,B/bibandlinks&F=chn++573+h313&1,1\nhttp://mai.flora.org/forum/new-2110\nhttp://www.tucows.telia.no/winnt/adnload/68747_30295.html\nhttp://www.tucows.telia.no/winnt/adnload/135780_47081.html\nhttp://www.annotate.net/html/Annotate_Directory/Top/Regional/North_America/United_States/Louisiana/Localities/C/Coushatta\nhttp://wine.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/support/mctex/?D=A\nhttp://pub21.ezboard.com/ujaletheadmin.showPublicProfile?language=EN\nhttp://ftp.lip6.fr/pub11/NetBSD/NetBSD-current/src/usr.sbin/quot/Makefile\nhttp://www.hrdc.gc.ca/socpol/cfs/bulletins/jan97/man_f.shtml\nhttp://www.loveme.com/infopage/info23899.htm\nhttp://polygraph.ircache.net:8181/http_-2www.fsa.org/MutareMap.asp\nhttp://www.sdrt.com.cn/tiyuzhichuang/wangqiu/mingxingdangan/4/gelafu.htm\nhttp://home.netvigator.com/~raympoon/digital7.htm\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/3d-service/Top-Darlehens-Konditionen/Startseite/Gemeinsam/immolink/Startseite/froben.htm\nhttp://www.hum.auc.dk/~magnus/MHonArc/NTSEC/frm00999.html\nhttp://www.hum.auc.dk/~magnus/MHonArc/NTSEC/frm09255.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380849/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp\nhttp://genforum.genealogy.com/cgi-genforum/forums/skeen.cgi?265\nhttp://wiem.onet.pl/wiem/00f59f.html\nhttp://www2.ipc.pku.edu.cn/scop/data/scop.1.007.033.001.002.000.html\nhttp://splitrock.themes.tucows.com/cursors/adnload/15789.html\nhttp://splitrock.themes.tucows.com/cursors/adnload/15884.html\nhttp://www.cpami.gov.tw/ymsnp/animal/insect/34654text.htm\nhttp://lateline.muzi.net/ll/fanti/89027.shtml\nhttp://www.hig.se/(accessed,comment,date,header,quote)/~jackson/roxen/\nhttp://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/README\nhttp://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/etc/\nhttp://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/lib/\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/http_-2www.microsoft.com/ntserver/http_-2www.netscape.com/comprod/mirror/http_-2gateway.olympcfunding.com/products.html\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/http_-2www.microsoft.com/ntserver/http_-2www.netscape.com/comprod/mirror/http_-2gateway.olympcfunding.com/products/\nhttp://f7.parsimony.net/forum9177/messages/638.htm\nhttp://f7.parsimony.net/forum9177/messages/594.htm\nhttp://japan.medscape.com/medscape/HIV/journal/1998/v04.n03/expert1098/expert1098.html\nhttp://golfonline.comfluent.net/cgi.pan$advsts&Dicky_Pride&102&lwfth&pga?golfstats\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=93&discrim=5,200,183\nhttp://girls.4gee.com/japan/azumi_kawashima/big_page/0023.htm\nhttp://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4899.g.37.html\nhttp://www.chaos.dk/sexriddle/b/o/q/p/\nhttp://www.osiris.978.org/~brianr/mirrors/olga/cowpie/m/mellencamp_john/?N=D\nhttp://www.jpc-music.com/1695294.htm\nhttp://sunsite.org.uk/packages/TeX/uk-tex/macros/latex/contrib/supported/t-angles/?D=A\nhttp://www.shopworks.com/index.cfm/action/info/userid/000B34B5-2F17-19FE-9038010B0A0ADCF2\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Top-Darlehens-Konditionen/Gemeinsam/Startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Inserieren/onlineInserieren.htm\nhttp://www.idgnet.com/crd_playstation_254384.html\nhttp://www.3wbooks.de/BauerGunter/BauerGunter3406402798.htm\nhttp://library.cwu.edu/search/dSports+--+Washington+(State)+--+Periodicals/dsports+washington+state+periodicals/-5,-1,0,B/request&F=dsports+university+of+michigan&1,,2\nhttp://www.aelita.net/products/library/sitemap/Reg/Subscribe/sitemap/Reg/QuoteRegister/Default.htm\nhttp://topcu.tucows.com/winme/preview/76604.html\nhttp://tonet.com.cn/zhuanyejihua/kaoshijihua/ligonglei/dianzizhuanyezhuanke.htm\nhttp://tonet.com.cn/zhuanyejihua/kaoshijihua/falv2001.htm\nhttp://tonet.com.cn/zhuanyejihua/kaoshijihua/caijinglei/gongshangqiyeguanlibenke.htm\nhttp://ftp.univ-lyon1.fr/faq/by-name/cats-faq/breeds/american-curl\nhttp://www.videos-erotism.com/xhuge/1/hardMid3.html\nhttp://www.zope.org/Wikis/DevSite/Projects/CoreSessionTracking/WikiWikiWeb/map\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/74461000003304200000112720000087451/Labels.wo/603110000077451/2.0.0.5.0/3/Webobjects1\nhttp://books.hyperlink.co.uk/bookinfo/Willa_Cathers_Transforming_Vision/Brienzo/Gary_W./0945636660\nhttp://ftp.darenet.dk/tucows/winme/adnload/137112_28604.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/TEKNIIKKA/korkeakoulukirjastot/yliopisto-+ja+korkeakoulukirjastot/insin%F6%F6rit/kirjastot/\nhttp://www.pokers.com/asp/sp-asp/_/SZ--2/PD--10017288/posters.htm\nhttp://itcareers.careercast.com/texis/it/itjs/+RwwBmelXD86elmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhXwotoBwcaMnmowamoGnqBdGaDntdBowBodD5aqconDBaMwGAnBoDtapd5oBodDaMwDwtnainxawqqd1DBaMFqryfHfREIDzmbwwwpBmezWD86Wwww5rme9cwwwBrmeZpwww/jobpage.html\nhttp://berlin-charlottenburg.de/deutsch/politik/ma/062.htm\nhttp://www.ericsson.cl/cables/protection/index.shtml\nhttp://209.207.239.212/bkindex/c1007/f1401.html\nhttp://209.207.239.212/bkindex/c1007/f1418.html\nhttp://www.neoseeker.com/forums/index.php?function=edit_message&messageid=1037\nhttp://www.neoseeker.com/forums/index.php?function=edit_message&messageid=1199\nhttp://www.geocities.co.jp/SweetHome-Green/3692/PROFILE.HTML\nhttp://www.geocities.co.jp/SweetHome-Green/3692/MELINDEX.HTML\nhttp://myhome.naver.com/bora1234/photo.html\nhttp://www.magicvillage.de/magicvillage/computercenter/Grafik%20%26%20Layout/Software/Macintosh/Hotline/PowerBooks/\nhttp://student.monterey.edu/nr/panditharatnesha/world/\nhttp://in.egroups.com/message/Michelles__Miracles/657\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/001248.1.5492769465\nhttp://republika.pl/raduczulu/counter.html\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd378258019\nhttp://www.8848.net/fjnews/200007/0728/2000072811393979.htm\nhttp://www.chaos.dk/sexriddle/m/n/x/t/\nhttp://www.maastrek.de/maas/01eea86f59dac641c053/1/0/4\nhttp://yp.gates96.com/14/79/82/8.html\nhttp://yp.gates96.com/14/79/82/95.html\nhttp://yp.gates96.com/14/79/82/98.html\nhttp://yp.gates96.com/14/79/83/10.html\nhttp://yp.gates96.com/14/79/83/16.html\nhttp://yp.gates96.com/14/79/83/48.html\nhttp://yp.gates96.com/14/79/84/4.html\nhttp://yp.gates96.com/14/79/84/96.html\nhttp://yp.gates96.com/14/79/85/34.html\nhttp://yp.gates96.com/14/79/85/96.html\nhttp://yp.gates96.com/14/79/86/9.html\nhttp://yp.gates96.com/14/79/86/11.html\nhttp://yp.gates96.com/14/79/86/28.html\nhttp://yp.gates96.com/14/79/86/32.html\nhttp://yp.gates96.com/14/79/86/86.html\nhttp://yp.gates96.com/14/79/86/96.html\nhttp://yp.gates96.com/14/79/87/96.html\nhttp://yp.gates96.com/14/79/88/38.html\nhttp://yp.gates96.com/14/79/88/74.html\nhttp://yp.gates96.com/14/79/88/95.html\nhttp://yp.gates96.com/14/79/89/57.html\nhttp://autos.yahoo.co.jp/ucar/m1010/k10102006199904/g24/a101020060240158710008510205199904_4.html\nhttp://www02.geocities.co.jp/HeartLand-Keyaki/7483/\nhttp://online.excite.de/wirtschaft/katalog/32476\nhttp://www9.hmv.co.uk:5555/do/session/1347777/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/Top_Navigation_Bar/top_navbar.html\nhttp://www9.hmv.co.uk:5555/do/session/1347777/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d90_sd0_pt0.html\nhttp://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=5&Count=30&Collapse=54\nhttp://users.ai-lab.fh-furtwangen.de/for_local_use_only/CD-TMFUMV/daten/beisp/05321/?D=A\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/011629.1.0871727476\nhttp://www.fogdog.com/cedroID/ssd3040183241146/cgi-bin/MyFogdog\nhttp://www.3w-geschichte.de/OReillyJamesT/OReillyJamesT0471287237.htm\nhttp://www.annotate.net/html/Annotate_Directory/Top/Arts/Movies/Titles/W/World_According_to_Garp,The/\nhttp://dandini.cranfield.ac.uk/vl=-39536559/cl=151/nw=1/rpsv/cw/web/nw1/bargen.htm\nhttp://cgi.superonline.com/cgi-bin/sworld43/thread.pl/forums/sworld43/oss2000/45.html?dir=nextResponse\nhttp://cgi.superonline.com/cgi-bin/sworld43/get/forums/sworld43/oss2000/45.html?admin\nhttp://dogbert.bizit.net/debian/dists/unstable/non-US/non-free/binary-sparc/?M=A\nhttp://ftp.eecs.umich.edu/debian/dists/potato/main/binary-i386/misc/?D=A\nhttp://fi.egroups.com/message/girlscouting/3383\nhttp://dk.egroups.com/group/scaleauto\nhttp://members.tripod.lycos.co.kr/SM4/paper.htm\nhttp://www.jamba.nl/KNet/_KNet-BqE8j1-JC4-pv4w/browse.nl/node.0/cde7f2elw\nhttp://yp.gates96.com/4/6/10/47.html\nhttp://yp.gates96.com/4/6/10/52.html\nhttp://yp.gates96.com/4/6/10/96.html\nhttp://yp.gates96.com/4/6/11/25.html\nhttp://yp.gates96.com/4/6/11/61.html\nhttp://yp.gates96.com/4/6/11/67.html\nhttp://yp.gates96.com/4/6/11/93.html\nhttp://yp.gates96.com/4/6/12/11.html\nhttp://yp.gates96.com/4/6/12/28.html\nhttp://yp.gates96.com/4/6/12/66.html\nhttp://yp.gates96.com/4/6/12/81.html\nhttp://yp.gates96.com/4/6/12/93.html\nhttp://yp.gates96.com/4/6/13/86.html\nhttp://yp.gates96.com/4/6/13/94.html\nhttp://yp.gates96.com/4/6/14/17.html\nhttp://yp.gates96.com/4/6/14/76.html\nhttp://yp.gates96.com/4/6/15/61.html\nhttp://yp.gates96.com/4/6/16/47.html\nhttp://yp.gates96.com/4/6/16/71.html\nhttp://yp.gates96.com/4/6/17/62.html\nhttp://yp.gates96.com/4/6/18/1.html\nhttp://yp.gates96.com/4/6/18/24.html\nhttp://yp.gates96.com/4/6/18/28.html\nhttp://158.169.50.70/eur-lex/it/lif/dat/1994/it_294D1217_09.html\nhttp://158.169.50.70/eur-lex/it/lif/dat/1995/it_295D0928_02.html\nhttp://158.169.50.70/eur-lex/it/lif/dat/1997/it_297D0904_03.html\nhttp://www.irishnews.com/k_archive/181299/local4.html\nhttp://www.irishnews.com/k_archive/181299/local14.html\nhttp://www.irishnews.com/k_archive/181299/local16.html\nhttp://uk.dir.yahoo.com/Regional/U_S__States/North_Carolina/Cities/Charlotte/Business_and_Shopping/Business_to_Business/Manufacturing/Casting__Moulding__and_Machining/\nhttp://www.uwec.edu/Academic/English/Projects/VonHaden/\nhttp://www.playease.com/et/beauty/img/jijinglian/jjl054.htm\nhttp://www.digitaldrucke.de/(aktuell,für,marktplatz,metamorphose,raum,sense)/_fort/html/themen/kultur/digital/digital.htm\nhttp://pub6.ezboard.com/fzfreesubmissiondirectoryplacestosubmitforfree.showMessage?topicID=35.topic\nhttp://pub6.ezboard.com/fzfreesubmissiondirectoryplacestosubmitforfree.showMessage?topicID=12.topic\nhttp://www.emerchandise.com/browse/DISNEY/TOY/b.FAVORITES%20COMICS%20CARTOONS%20DISNEY/s.CgJlPxcV\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/showNextUnseen/fol/100001/1302769\nhttp://911codes.com/games/platform/gameboy/sect/div/cont/list_cheat/spray/y/id/0000010187/gid/0000003974/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/\nhttp://library.bangor.ac.uk/search/dPolice+regulations+--+Great+Britain/dpolice+regulations+great+britain/7,-1,0,E/frameset&F=dpolice+social+work+great+britain+congresses&1,1\nhttp://www02.u-page.so-net.ne.jp/ta2/grosh/Training/Training9.html\nhttp://ring.shibaura-it.ac.jp/archives/linux/RedHat/redhat/code/i18n/trans/?D=A\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=15,35,22,28,26\nhttp://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/graphics/ruby-gl/?S=A\nhttp://www.academyfloral.com/state/aliro/flowers/birthdaybouquet1.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/ammattikorkeakoulut/p%E4ij%E4t-h%E4meen+koulutuskonserni/kirjastot/\nhttp://www.jpc-music.com/1409509.htm\nhttp://chat.sportsline.com/u/ce/feature/0,1518,2565545_56,00.html\nhttp://chat.sportsline.com/u/ce/feature/0,1518,1675610_56,00.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380831/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hpstore.hewlett-packard.fr/gp\nhttp://209.207.239.212/bkindex/c1016/f1419.html\nhttp://209.207.239.212/bkindex/c1016/f1424.html\nhttp://www.sports.aol.fr/Jo/Perec_2.html\nhttp://www.citybrazil.com.br/go/smiguelaraguaia/transporte.htm\nhttp://www.fileamerica.com/states/texas/local/cameron/ptax.html\nhttp://www.angelfire.com/nv/bellea\nhttp://school.educities.org/card/a4711862.html\nhttp://school.educities.org/card/a60902.html\nhttp://school.educities.org/card/amy60630.html\nhttp://school.educities.org/card/aney1.html\nhttp://school.educities.org/card/christinelee.html\nhttp://school.educities.org/card/grace3721.html\nhttp://school.educities.org/card/jj1245j.html\nhttp://school.educities.org/card/jyik.html\nhttp://school.educities.org/card/k3813813.html\nhttp://school.educities.org/card/k78780606.html\nhttp://school.educities.org/card/kitty1snoopy.html\nhttp://school.educities.org/card/landy1.html\nhttp://school.educities.org/card/m0522.html\nhttp://school.educities.org/card/mark747.html\nhttp://school.educities.org/card/okdh.html\nhttp://school.educities.org/card/poppybaby.html\nhttp://school.educities.org/card/ry21.html\nhttp://www.secinfo.com/dvtBm.7a.htm\nhttp://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/HT206|972959537|Deluxe_Dividers|user|0|0,0,1,1\nhttp://in.egroups.com/post/book-readers?act=forward&messageNum=3829\nhttp://www.nacion.co.cr/ln_ee/2000/enero/31/mundo10.html\nhttp://www.bigstar.com/news/sb/index.cfm/4ae0978g371d907g1?fa=today\nhttp://www.bigstar.com/cs/index.cfm/4ae0978g371d907g1?fa=privacy\nhttp://v2.bdnet.com/I/Cailleaux/I/Cannabissimo/fiche_serie.htm\nhttp://ftp.darenet.dk/tucows/winnt/adnload/12475_29978.html\nhttp://ftp.darenet.dk/tucows/winnt/adnload/1879_29966.html\nhttp://www.canit.se/(h1,k15,mail,unix,www)/support/\nhttp://byron17.home.chinaren.com/lit/novle/maio.htm\nhttp://www.emerchandise.com/browse/PAGEANTS/MUG/b.FAVORITES%20PAGEANTS/s.Q8q0znEj\nhttp://stulchik.list.ru/catalog/10310.html\nhttp://stulchik.list.ru/catalog/10967.2.html\nhttp://dada.tucows.com/adnload/70717_30131.html\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/alpha/7677890\nhttp://webraft.its.unimelb.edu.au/196024/students/cabong/pub/?M=A\nhttp://www.crutchfield.com/S-fFFHlZKyKNq/shop/\nhttp://www.earthsystems.org/gopher/seacnet/announce97-08-03-14/1994/aug94/94-08-25-18:%20Violence%20in%20Indian%20Country%20Over%20Waste\nhttp://www.brio.de/BRIO.catalog/39fdb65f08c44c28273fd472aa7806e3/UserTemplate/10\nhttp://www.qsl.net/hj3ufa\nhttp://www-jl.jl.cninfo.net/jlweb/book/wxtd/gu_long/chuliuxiang/bat/009.htm\nhttp://www.intel.fr/support/netport/pro/21402.htm\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957423999/957522544/Catalog/1375/001\nhttp://www01.u-page.so-net.ne.jp/qc4/sam-ft/gallerycraftspace.html\nhttp://rpmfind.net/linux/RPM/mandrake/usr_src_linux-2.2.16_pcmcia-cs-3.1.14_doc_Tree.html\nhttp://www.chrisgraef.de/chg/webdesigner_medien.html\nhttp://www.opengroup.com/trbooks/186/1864501634.shtml\nhttp://moviestore.zap2it.com/shopcart/s.1GUFVsoF\nhttp://moviestore.zap2it.com/browse/MOVIES/ACTIONFI/s.1GUFVsoF\nhttp://moviestore.zap2it.com/browse/MOVIES/PUPPET/s.1GUFVsoF\nhttp://ocean.ntou.edu.tw/search*chi/m387.224+M178t/m387.224+m178+t/-5,-1,0,E/buttonframe&F=m387.224+m178+m&1,,0\nhttp://www.egroups.com/message/BalletBuds/25\nhttp://link.fastpartner.com/do/session/600375/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-27.html\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-42.html\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-45.html\nhttp://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-46.html\nhttp://www2.ipc.pku.edu.cn/scop/rsgen.cgi?pd=3nla\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959900763/Catalog/1000006\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959900763/Catalog/1000031\nhttp://fi.egroups.com/message/gailporter/199\nhttp://fi.egroups.com/message/gailporter/222\nhttp://www.egroups.com/messages/X-Air_Ultralight_Aircraft/359\nhttp://dia.tucows.com/winme/adnload/136838_28375.html\nhttp://dia.tucows.com/winme/adnload/136846_28383.html\nhttp://www.letsmusic.co.kr/directory/weblink/weblink_list/1,1011,100000000186810,00.html\nhttp://www.smcworld.com/smcworld/bp/large/0744_2_1611_2_1611b.html\nhttp://news.pchome.com.tw/ettoday/entertainment/20001028/index-20001028155543020439.html\nhttp://www2.stas.net/lostlane/J.html\nhttp://allmacintosh.arrakis.es/utilsmac_rating.html\nhttp://novel.hichinese.net/zt/zpj/k/kelisidi/kill/008.htm\nhttp://194.174.50.23/cgi-bin/FisRun/InsertExhibitorIntoNotebook/1/interpack99/d/2891\nhttp://www.loisirs.ch/jifmuf/14/roedrz.html\nhttp://www.linux.com/networking/server/business/operating_system/learning/consumer/\nhttp://dandini.cranfield.ac.uk/vl=-39685335/cl=158/nw=1/rpsv/cw/www/faqs.htm\nhttp://blisty.internet.cz/1250/9901/19990108a.html\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,247,Electric+Wave+Girl+1998.html\nhttp://www.multimania.com/excave/vicking.html\nhttp://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=5,14,21,12\nhttp://www.secinfo.com/dWXc8.bz.htm\nhttp://www.secinfo.com/dWXc8.9d.htm\nhttp://bbs.ee.ntu.edu.tw/boards/RomanceNovel/11/2/9/2/\nhttp://ftp.nacamar.de/pub/NetBSD/packages/1.4/amiga/emulators/?M=A\nhttp://no.egroups.com/subscribe/windows98\nhttp://ftp.dei.uc.pt/pub/netscape/communicator/english/4.76/unix/unsupported/linux20_libc5/?D=A\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.gsb.stanford.edu/sloan/sloan_fellows.html\nhttp://apple.excite.com/entertainment/music/artists_and_genres/alternative_rock/grunge/stone_temple_pilots/merchandise/\nhttp://home.sprynet.com/~tales/asw2.html\nhttp://fi.egroups.com/post/audiovision?act=reply&messageNum=145\nhttp://www.zema.ru/post/forum/komi_respublika/usinsk/messages/712\nhttp://opac.lib.rpi.edu/search/ddesert+ecology/-5,-1,0,B/browse\nhttp://www.arm.com/sitearchitek/support.ns4/html/sdt_debug!OpenDocument&ExpandSection=6,32,7,5\nhttp://www.linux.com/networking/network/technology/security/community/open_source/\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=9,33,15,36,22\nhttp://isbn.nu/0505523892/borders\nhttp://www.informika.ru/text/database/geom/Draw/ris/ris34_1.htm\nhttp://caselaw.lp.findlaw.com/casecode/uscodes/42/chapters/77/subchapters/iii/parts/h/sections/section_6374_notes.html\nhttp://www.cyd.com.cn/zqb/19991104/GB/9672^Q805.htm\nhttp://providenet.tukids.tucows.com/win95nt/9-12/adnload/132963_46167.html\nhttp://www.chaos.dk/sexriddle/e/o/g/k/i/\nhttp://www2.brent.gov.uk/planning.nsf/013459d30f2ad00680256623005fcc0a/8af30b42469a1215802568720046524a!OpenDocument&ExpandSection=16,13,11,9,15\nhttp://jje.subportal.com/sn/Multimedia_and_Graphics/MPEG_Audio_Players_and_Editors/9126.html\nhttp://www.ropnet.ru/HyperNews/edit-response.pl/case/2856.html\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959508447/Catalog/1000045\nhttp://itcareers.careercast.com/texis/it/itjs/+rwwBmeO9D86MwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDXnnqrDoqwcaiGoBnapd5oBodDaxw5nmamdq1MnDBwBodDawppcoqwBodD5a15naM15BapGdm1qBodDawxcnaMFqtPfRRZNDzme8xwwwpBme7WD86eLrwww5rm-mwwBrmeZpwww/jobpage.html\nhttp://www.iucr.ac.uk/iucr-top/journalsonline/iucr-top/cif/software/hiccup/prods/?M=A\nhttp://lists.omnipotent.net/mysql/199707/msg00381.html\nhttp://www.yescall.co.kr/kyungheein/\nhttp://minyos.its.rmit.edu.au/~s9763278/sparks/sparks.html\nhttp://www.movieguide.com/pressroom/events/nbcpresstour/festival_nbcpresstour9.html\nhttp://www.gamers.net/game/190940/reviews\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,198,Electric+Wave+Girl+1998.html\nhttp://marysz.freeservers.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/6616/\nhttp://subversion.tigris.org/source/browse/subversion/subversion/libsvn_delta/delta.h?annotate=1.34&sortby=rev\nhttp://subversion.tigris.org/source/browse/subversion/subversion/libsvn_delta/delta.h?annotate=1.28&sortby=rev\nhttp://sunsite.org.uk/public/public/packages/WWW/spinner/?D=A\nhttp://sunsite.org.uk/public/public/packages/WWW/spinner/untared/\nhttp://www.realbig.com/miata/miata/1998-01/1635.html\nhttp://cky.8k.com/cgi-bin/framed/1359/info/jess.html\nhttp://cky.8k.com/cgi-bin/framed/1359/info/bran.html\nhttp://www.loisirs.ch/jifmuf/10/bhcqud.html\nhttp://naver22.jrnaver.co.kr/Entertainment_and_Arts/Design_Arts/Architecture/Organizations/\nhttp://www.zing.com/member/?name=birchpole&c=1\nhttp://student.monterey.edu/nr/porrasjohnny/campus/\nhttp://ftp.lip6.fr/pub/FreeBSD/development/FreeBSD-CVS/ports/misc/peq/files/patch-ab,v\nhttp://www.multimania.com/lesoir2/news/sept99/quake4.htm\nhttp://www.multimania.com/lesoir2/news/sept99/2309-12.txt\nhttp://www.multimania.com/lesoir2/news/sept99/0609-06.txt\nhttp://www.multimania.com/lesoir2/news/sept99/1309-13.txt\nhttp://homepage1.nifty.com/shiraishi/school/school2.htm\nhttp://ring.htcn.ne.jp/pub/NetBSD/NetBSD-current/pkgsrc/mbone/sdr/pkg/PLIST\nhttp://www.chaos.dk/sexriddle/m/c/z/b/\nhttp://www.chaos.dk/sexriddle/m/c/z/p/\nhttp://map.ipc.co.jp/asp/onmap/r/new/g-26/f-523824/\nhttp://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959650--\nhttp://novel.hichinese.net/xd/gt/zpj/l/liangfengyi/jingrong/010.htm\nhttp://www.tvstore.com/browse/TV/MAGNET/s.l03qOWiP\nhttp://www.tvstore.com/browse/TV/KEYCHAIN/s.l03qOWiP\nhttp://www.gbnf.com/genealog2/burt/html/d0002/I1199.HTM\nhttp://www.gbnf.com/genealog2/burt/html/d0006/I1187.HTM\nhttp://www.gbnf.com/genealog2/burt/html/d0004/I1521.HTM\nhttp://src.openresources.com/debian/src/graphics/HTML/R/HVcreate.html\nhttp://yomama.tgm.ac.at/doc/susehilf/gnu/vip/Changing.html\nhttp://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/sysutils/gmc/pkg/\nhttp://news.fm365.com/zonghe/20001009/156610.htm\nhttp://homepage1.nifty.com/tojo/shin13.htm\nhttp://www.sf.digitalcity.com/naplesfl/personals/browse.dci?cat=wsw&sort=t\nhttp://plat.debian.or.jp/debian/dists/woody/non-free/binary-hppa/otherosfs/?M=A\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/databases/gdbm/distinfo?only_with_tag=RELEASE_4_1_0\nhttp://bbs.csie.ntu.edu.tw/txt/Emprisenovel/ebooks/mystery/alisanderla/wsyz/013.txt\nhttp://www.legis.state.ia.us/GA/78GA/Legislation/SCR/00000/SCR00018/?M=D\nhttp://www.mapion.co.jp/custom/AOL/admi/23/23104/kaminagoya/2chome/index-2.html\nhttp://ciscom.cnet.com/hardware/member/entry/0,10285,0-1069-419-1544825,00.html\nhttp://wow-online.vhm.de/Regional/Grossbritannien/Kunst.html\nhttp://www.cs.rit.edu/~hpb/Man/_Man_Openwin_html/html2/sigaction.2.html\nhttp://in.egroups.com/message/talksigncreate/287\nhttp://rainforest.parentsplace.com/dialog/thread.pl/newclubfoot8/19.html?dir=nextThread\nhttp://ftp.jp.debian.org/debian-non-US/dists/potato/non-US/main/binary-arm/?N=D\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baumelte&l=de\nhttp://www.chaos.dk/sexriddle/i/f/p/k/h/\nhttp://unionsoft.narod.ru/3d/anatomy/pages/head1.htm\nhttp://src.openresources.com/debian/src/electronics/acs_021.orig/acs-021.orig/\nhttp://www.mapion.co.jp/custom/AOL/admi/23/23111/takagicho/2chome/index-45.html\nhttp://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/unstable/contrib-jp/binary-m68k/tex/?N=D\nhttp://rapidus.tucows.com/winnt/adnload/54123_28460.html\nhttp://193.207.119.193/MV/gazzette_ufficiali/303-99/8.htm\nhttp://www.emerchandise.com/help_security/b.TV%20FRASIER/s.LoO0xS99\nhttp://gpul.org/ftp/os/linux/cd-images/other/ISO/suse/?M=A\nhttp://opac.lib.rpi.edu/search/arush+sean+c/-17,-1,0,E/frameset&arush+homer+f&1,,0\nhttp://genforum.genealogy.com/cgi-genforum/forums/griffin.cgi?3823\nhttp://www.leo.org/leoclick/dce2b1c893db6a8193428ecad9ecd878+L+1__\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=55&discrim=178,230,174\nhttp://www.msb.malmo.se/search*swe/aKling,+Rolf/akling+rolf/7,-1,0,B/browse\nhttp://retailer.gocollect.com/do/session/1912785/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp\nhttp://st3.yahoo.co.jp/nihondo/k4932828003023.html\nhttp://webtools.familyeducation.com/whatworks/review/front/0,2562,1-10641-2316_-7233-3,00.html\nhttp://www.bretagne-online.com/telegram/htdocs/archive/1997/19970618/sommaire/stpoldeleon.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=234&discrim=235,230,183\nhttp://www.yagoo.co.kr/stats/batting.asp?Mlbmanid=HAMPAT7709\nhttp://www.linux.com/networking/network/new/website/suse/SAP/\nhttp://www.linux.com/networking/network/new/website/suse/security/\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.cdc.gov/ncidod/dpd/parasiticpathways/drinkingwater.htm\nhttp://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/post\nhttp://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/450\nhttp://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/607\nhttp://dangerous.co.kr/www.sony.co.jp/ProductsPark/Consumer/Peripheral/MDData/page6.html\nhttp://www2.sega.co.jp/bbs/article/s/sports/47/xvwixh/jlvcgk.html\nhttp://troy.lib.sfu.ca/search/alondon+mathematical+society/alondon+mathematical+society/-5,-1,0,B/frameset&F=alondon+m+c+s&2,,3\nhttp://pub14.ezboard.com/fbrlproductionsfrm10.showAddTopicScreenFromWeb\nhttp://rex.skyline.net/html/Computers_-_Monitors.html?16,computers,radio,electronics,communication\nhttp://rex.skyline.net/html/Software_-_Developers.html?20,computers,radio,electronics,communication\nhttp://ftp.cwi.nl/static/publications/reports/abs/MAS-R9815.html\nhttp://www.jt.com.br/noticias/98/09/28/sd2.htm\nhttp://www.kentuckyconnect.com/heraldleader/news/080899/sportsdocs/08chuck.htm\nhttp://pix.egroups.com/post/ipe?act=forward&messageNum=5302\nhttp://tulips.ntu.edu.tw/search*chi/cHT392+Un3/cht++392+un3/-5,-1,,B/browse\nhttp://magazines.sina.com/gourmet/contents/199912/199912-006_3_gb.html\nhttp://collection.nlc-bnc.ca/100/201/300/january/2000/00-06-05/sanctuary.html\nhttp://collection.nlc-bnc.ca/100/201/300/january/2000/00-06-05/blue1.html\nhttp://www.vorlesungen.uni-osnabrueck.de/informatik/pt/code/DiagramPalettes/Components.dpalette2/Image45\nhttp://www.vorlesungen.uni-osnabrueck.de/informatik/pt/code/DiagramPalettes/Components.dpalette2/Image5\nhttp://playsite.top263.net/software/hh-13.htm\nhttp://www.dispatch.co.za/1998/12/21/sport/MISS.HTM\nhttp://www.allhealth.com/parentsplace/send/0,3288,14-844-1-fertility-INFERTILITY,00.html\nhttp://www.tucows.telia.no/win2k/preview/37705.html\nhttp://www.peopledaily.co.jp/9803/09/current/newfiles/j1020.html\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1320/001\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1321/001\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1328/001\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1350/001\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1359/001\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/ProductView/26897\nhttp://www.uftree.com/UFT/WebPages/Don_MacFarlane/FEB99/d1/i0001285.htm\nhttp://wap.jamba.de/KNet/_KNet-n4B8j1-DFd-13bgt/showInfo-jambabanner.de/node.0/cde7f1uou\nhttp://launchbase.com/Shopping/Visual_Arts/entertainment/information/Politics.htm\nhttp://launchbase.com/Shopping/Visual_Arts/entertainment/shopping/Electronics.htm\nhttp://www.aoyun.sina.com.cn/news/sports/table/2000-09-15/1/4622.shtml\nhttp://www.eggerwirt.at/1Root/Kontinent/6/Staat/7/Bundesland/21/Ort/129509/Homepage/m_homepage...1.html\nhttp://198.103.152.100/search*frc/dSociologie+rurale+--+Ontario/dsociologie+rurale+ontario/-5,-1,0,B/frameset&F=dsociologie+religieuse+islam&1,,0\nhttp://msn.excite.co.jp/travel/the_country/kinki/wakayama/hot_spring_of_accommodations/inn_tourist_home_in_wakayama?summary=false\nhttp://search.ibm.co.jp/as400/year2000/v3r2.html\nhttp://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/Allgemeine-IB/Startseite/3d-service/Private-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm\nhttp://spaceports.tucows.com/winnt/adnload/78908_28797.html\nhttp://www.trax.nilex.co.uk/trax.cgi/A1S/A2R/A3R/B1S/A1D/A1S/\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041130.1.3206884924\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/misc/colorart/misc/freespeech.html\nhttp://www.cs.rit.edu/~hpb/Lectures/2000/JRMS_590/all-2.7.html\nhttp://www.cs.rit.edu/~hpb/Lectures/2000/JRMS_590/all-4.11.html\nhttp://www.refdag.nl/kl/990615klfo01.html\nhttp://pub20.ezboard.com/ftheimperiumknightsfrm11.showMessage?topicID=9.topic\nhttp://retailer.gocollect.com/do/session/1912767/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/advanced_search.asp\nhttp://www.thestateofcolorado.com/saudealersnew.html\nhttp://awelymor.weblogs.co.uk/sdb/en/html/ftp://ftp.suse.com/pub/suse/i386/6.2/suse/n1/\nhttp://www.mirror.kiev.ua:8083/paper/2000/21/1251/text/21-13-3.htm\nhttp://www.recipezaar.com/browse/0110FC1070110A301109901109E00F06D\nhttp://www.linux.com/networking/network/vpn/server/Unix/\nhttp://www.gasex.com/main.html?m4m.gallery.twinks\nhttp://www.xtdnet.nl/listarch/linux-router/1998-05-01/nav00046.html\nhttp://www.fogdog.com/cedroID/ssd3040183325831/cgi-bin/CedroCommerce?func=EditBasket\nhttp://www.totalmarketing.com/an/basket.pl/cancel/xwxm6773.94076\nhttp://ciaoweb.tucows.com/winnt/adnload/56695_29112.html\nhttp://www.brio.de/BRIO.catalog/39fe2f6006e4fc48273fd472aa7806e0/UserTemplate/1\nhttp://retailer.gocollect.com/do/session/1912715/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2\nhttp://retailer.gocollect.com/do/session/1912715/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/dealer_lookup.asp\nhttp://www.streetprices.com/Electronics/Computer_Hardware_PC/Motherboards/ATX/Slot1/Via_Pro133/sortproductbymake/sortcategorybylowprice/\nhttp://www.streetprices.com/Electronics/Computer_Hardware_PC/Projectors/MAKE+CTX/sortdetailbystock/sortproductbyhighprice/sortcategorybycount/SP318392.html\nhttp://www.multimania.com/egypt95/img0017.htm\nhttp://dic.empas.com/show.tsp/?q=fourteenthly&f=B\nhttp://linux2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d1repc2\nhttp://www.schlagertempel.de/RobertPayer/B00000B8D2.htm\nhttp://www.cricinfo.com/link_to_database/INTERACTIVE/MAGAZINE/1996-97/SL_IN_NZ/SL_IN_NZ_FEEDBACK_1.html\nhttp://mediate.magicbutton.net/do/session/625637/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html\nhttp://www.clickm.dk/Clickmusic_Web_Guide/Bands_and_Artists/B/Better_Than_Ezra/\nhttp://www.clickm.dk/Clickmusic_Web_Guide/Bands_and_Artists/B/Breeders,_The/\nhttp://www.maastrek.de/maas/71eb3baf4c78ed98ef94/1/0/4\nhttp://www.trnonline.com/archives/1999archives/07221999/obits/24620.shtml\nhttp://www.recipezaar.com/browse/0110FC1070110A100F06D0110A00110A3\nhttp://www.areaguide.net/addlisting.asp?book=box&CatID=516\nhttp://webraft.its.unimelb.edu.au/196023/students/lucym/\nhttp://sunsite.org.uk/public/0-Most-Packages/quake/utils/frontends/qshel15b.txt\nhttp://pub14.ezboard.com/flfiaglarafabianisagoddess.emailToFriend?topicID=858.topic\nhttp://www.realize.com/am4d0481.htm,qt=e784fe2f=2a38a234-4-7cf2ef-1-1-0-3--\nhttp://www.realize.com/am7bcd81.htm,qt=e784fe2f=2a38a234-4-7cf2ef-1-10-0-3--\nhttp://mailman.real-time.com/rte-crossfire/1993/Dec/msg00022.html\nhttp://mailman.real-time.com/rte-crossfire/1993/Dec/msg00000.html\nhttp://mailman.real-time.com/rte-crossfire/1993/Dec/msg00009.html\nhttp://www.eallinfo.com/A55782/sameeron.nsf/homeFood!OpenPage&ExpandSection=8,4,3,6\nhttp://www.ami.dk/udgivelser/emne/36.html\nhttp://www-x500-1.uni-giessen.de:8890/Lcn%3dKai%20Cheong%20HO,ou%3dEstates%20Management%20Office,o%3dHong%20Kong%20University%20of%20Science%20and%20Technology,c%3dHK\nhttp://ftp.telepac.pt/pub/cpan/modules/by-module/DBD/DMOW/?D=A\nhttp://members.se.tripod.de/aah/jochumsen/per02614.htm\nhttp://www.academyfloral.com/state/cacat/flowers/funeralofferingshare.html\nhttp://www.hotelboulevard.com/fr/paris/standard/htmlb877e62937802c0678f4638130be1ef0/sessionLang/ANG/prov/browse/cp/75013/resultatSearch.html\nhttp://www.alsapresse.com/jdj/00/03/24/AK/article_4.html\nhttp://www.mairie-montreuil93.fr/ville_pratique/environ/democrat/printemps/_vti_cnf/interstice.htm\nhttp://variety.studiostore.com/help/b.FAVORITES%20COMICS%20CARTOONS%20POWERPUFF/s.UAREyMtL\nhttp://ftp.sektornet.dk/tucows/winme/adnload/137341_28799.html\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959532302/Catalog/1000046\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959532302/ClubBoard/list/1000022\nhttp://findmail.com/post/geewhiz?act=reply&messageNum=2039\nhttp://orders.mkn.co.uk/toy/rattles/order/now.en$NOK?what-bells=1\nhttp://www.buybuddy.com.au/sleuth/26/1/502/10134/\nhttp://spokesmanreview.sportshuddle.com/sports/baseball/playbetter/ask-expert/vincent3.asp\nhttp://ant.i.hosei.ac.jp/Ant.WWW/PCD0420/HTMLE/29.html\nhttp://ant.i.hosei.ac.jp/Ant.WWW/PCD0420/HTMLE/34.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~074800~90270',00.html\nhttp://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~074800~09890',00.html\nhttp://dennou-h.ees.hokudai.ac.jp/library/Linux/debian-jp/dists/hamm-jp/non-free/binary-i386/games/?M=A\nhttp://www.peopledaily.com.cn/GB/paper68/1469/236625.html\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/BracketElement.cc?hideattic=1&sortby=rev\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/FractionElement.cc?hideattic=1&sortby=rev\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/MIMETYPE-Format?hideattic=1&sortby=rev\nhttp://linuxberg.ii.net/conhtml/preview/7963.html\nhttp://213.36.119.69/do/session/152992/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/hotels.html\nhttp://213.36.119.69/do/session/152992/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.spycamera.com/webcam/\nhttp://ftp.netc.pt/pub/idgames/levels/doom/d-f/deathme.txt\nhttp://ftp.netc.pt/pub/idgames/levels/doom/d-f/dork.txt\nhttp://ustlib.ust.hk/search*chi/dsea+stories/dsea+stories/-5,-1,0,B/browse\nhttp://members.fortunecity.com/skinweaver/nf/nfpin01.htm\nhttp://se.egroups.com/group/French_\nhttp://www.gencat.es/cgi-bin/bc/drawer.cgi/LD/0074/L00465?101\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/gfx/lib/glut/glut_shapes.c?sortby=author\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,9456/yid,7276398\nhttp://genforum.genealogy.com/cgi-genforum/forums/getchell.cgi?230\nhttp://www9.hmv.co.uk:5555/do/session/1347795/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d100_sd0_pt0.html\nhttp://www.brd.net/brd-cgi/brd_multimedia/bildbearbeitung/WZ01K0DJ/beurteilung/ci=972850465.htm\nhttp://retailer.gocollect.com/do/session/1912745/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/affiliate_network.asp\nhttp://www.fao.org/icatalog/orders/basket.asp?prev2=yes&aries_id=1310\nhttp://www.realestate-mls.com/list.cgi/VACANT_LAND|WATERFRONT|Edenville!Midland!MI\nhttp://www.geocities.co.jp/SilkRoad-Desert/1661/profile/profile.html\nhttp://hp-partner.whowhere.lycos.com/hp/chick/com/nj/\nhttp://hp-partner.whowhere.lycos.com/hp/chick/com/next/\nhttp://hp-partner.whowhere.lycos.com/hp/chick/com/nightflight/\nhttp://www.emerchandise.com/browse/FRIENDS/TSHIRT/20/10/b.TV%20FRIENDS/s.kGIgjr5i\nhttp://dk.egroups.com/group/anarchymcgill\nhttp://bbs.gznet.edu.cn/cgi-bin/getannounce//groups/GROUP_3/WinNT_Win2k/smthbbs/Dir002\nhttp://de.excite.de/computer/katalog/12947\nhttp://www.bizline.co.kr/library/data/002/001/007/008/020/002/000017.html\nhttp://www.bizline.co.kr/library/data/002/001/007/008/020/002/000046.html\nhttp://saleonall.com/cat/OPTOMA/6492/video/projectors/145336/oneprod.html\nhttp://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/newfeat/ch213.html\nhttp://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/newfeat/newfeat.html\nhttp://excite.de/wirtschaft/katalog/37737\nhttp://www.digitaldrucke.de/(aktuell,kino,kultur,werbung)/_fort/html/themen/aktuell/events/events.htm\nhttp://www.digitaldrucke.de/(aktuell,kino,kultur,kunst)/suche/uebersicht.html\nhttp://www.online.kokusai.co.jp/Stock_corner/V0043566/wrd/G500/stock_corner/stock_corner.html\nhttp://yp.gates96.com/4/37/0/92.html\nhttp://yp.gates96.com/4/37/1/3.html\nhttp://yp.gates96.com/4/37/1/38.html\nhttp://yp.gates96.com/4/37/1/58.html\nhttp://yp.gates96.com/4/37/2/21.html\nhttp://yp.gates96.com/4/37/3/56.html\nhttp://yp.gates96.com/4/37/3/68.html\nhttp://yp.gates96.com/4/37/3/79.html\nhttp://yp.gates96.com/4/37/4/1.html\nhttp://yp.gates96.com/4/37/4/48.html\nhttp://yp.gates96.com/4/37/4/99.html\nhttp://yp.gates96.com/4/37/5/27.html\nhttp://yp.gates96.com/4/37/6/1.html\nhttp://yp.gates96.com/4/37/6/7.html\nhttp://yp.gates96.com/4/37/6/80.html\nhttp://yp.gates96.com/4/37/7/0.html\nhttp://yp.gates96.com/4/37/7/5.html\nhttp://yp.gates96.com/4/37/7/9.html\nhttp://yp.gates96.com/4/37/7/12.html\nhttp://yp.gates96.com/4/37/7/49.html\nhttp://yp.gates96.com/4/37/7/97.html\nhttp://yp.gates96.com/4/37/8/15.html\nhttp://yp.gates96.com/4/37/8/32.html\nhttp://yp.gates96.com/4/37/8/62.html\nhttp://yp.gates96.com/4/37/8/76.html\nhttp://yp.gates96.com/4/37/8/96.html\nhttp://yp.gates96.com/4/37/9/12.html\nhttp://yp.gates96.com/4/37/9/14.html\nhttp://yp.gates96.com/4/37/9/23.html\nhttp://yp.gates96.com/4/37/9/78.html\nhttp://yp.gates96.com/4/37/9/80.html\nhttp://cgi.cnn.com/US/9601/state_union_poll/state_union_speech/pm/\nhttp://freethemes.netc.pt/cursors/adnload/16904.html\nhttp://freethemes.netc.pt/cursors/preview/16926.html\nhttp://freethemes.netc.pt/cursors/adnload/16953.html\nhttp://library.bangor.ac.uk/search/dTelevision+broadcasting+of+news+--+Wales/dtelevision+broadcasting+of+news+wales/-17,-1,0,B/frameset&F=dtelevision+broadcasting+moral+and+ethical+aspects&1,1\nhttp://home.baoding.cn.net/~snowcxm/photoshop/newpage6tp.htm\nhttp://home.baoding.cn.net/~snowcxm/photoshop/newpage6xq2.htm\nhttp://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/woody/non-free-jp/binary-sparc/otherosfs/?D=A\nhttp://www.tucows.ch/winnt/toolnt_size.html\nhttp://www.sdinfonet.com.cn/379/26/379269983.htm\nhttp://www.sdinfonet.com.cn/379/26/379269980.htm\nhttp://www.egroups.com/message/wdf/3368\nhttp://de.excite.de/bildung/katalog/35821\nhttp://kidneyfailure.shn.net/content/article/1677.57596\nhttp://kidneyfailure.shn.net/content/article/1677.57625\nhttp://kidneyfailure.shn.net/content/article/1677.57517\nhttp://kidneyfailure.shn.net/content/article/1677.57456\nhttp://kidneyfailure.shn.net/content/article/1677.57562\nhttp://dia.tucows.com/winme/adnload/138490_29803.html\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/lst/qqo/004A\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB23p/pno/0/qqatt/^\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB2-n/pno/0/qqatt/^\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB2-o/pno/0/qqatt/^\nhttp://dk.egroups.com/message/tw2002/3626\nhttp://dk.egroups.com/message/tw2002/3644\nhttp://www.spiral.at/Katalog/Artikel/8908435/\nhttp://www.spiral.at/Katalog/Artikel/8908842/\nhttp://168.160.224.62/insurance/200006/10/114941.asp\nhttp://168.160.224.62/insurance/200006/10/114219.asp\nhttp://tucows.soneraplaza.nl/termnt_license.html\nhttp://pub13.ezboard.com/ubelegruin.showPublicProfile?language=EN\nhttp://troy.lib.sfu.ca/search/tbiometrics/tbiometrics/-5,-1,0,B/exact&F=tbiometrical+genetics+the+study+of+continuous+variation&1,2/limit\nhttp://futures.homeway.com.cn/lbi-html/news/content/20001013/172026.shtml\nhttp://jproxy.uol.es/jproxy/http://www.channel6000.com/sh/sports/columnist/stories/columnists-20001030-154321.html\nhttp://www.linux.com/networking/network/free/release/community/development/\nhttp://pub17.ezboard.com/fskysurfingskysurfersubb.showAddReplyScreenFromWeb?topicID=4.topic\nhttp://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/woody/contrib-jp/binary-m68k/oldlibs/?D=A\nhttp://10000downloads.subportal.com/sn/Network_and_Internet/Misc__Communications_Tools/12507.html\nhttp://www.hbdaily.com.cn/ctdsb/19991101/GB/ctdsb^1042^06^Ct06b08.htm\nhttp://cytobase.cnusc.fr:8101/textes/PURDmail/1998-12/nav00129.html\nhttp://www.brio.de/BRIO.catalog/39fe2f73050d53aa2741d472aa7806d2/UserTemplate/9\nhttp://www.anekdot.ru:8084/an/an0007/t000731.html\nhttp://statweb.byu.edu/sasdoc/sashtml/gref/z0265802.htm\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux/drivers/char/ftape/Makefile?only_with_tag=davem-cvs-merge\nhttp://www.intellicast.com/Golf/World/UnitedStates/Southeast/NorthCarolina/Hawksnest/WINDcast/d1_00/bannerAd.shtml\nhttp://dailynews.sina.com.hk/sinaNews/wiser/hkStock/2000/0720/1418727.html\nhttp://ftp.dti.ad.jp/pub/lang/CPAN/authors/id/A/AG/AGUL/?S=A\nhttp://link.fastpartner.com/do/session/600392/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php\nhttp://link.fastpartner.com/do/session/600392/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php\nhttp://citeseer.nj.nec.com/cidcontext/1024594\nhttp://www.burstnet.com/ads/ad4820b-map.cgi/1395444997\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/kpm/proc.h?r1=1.6&only_with_tag=HEAD\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d0/i0001501.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d0/i0000641.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000932.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000762.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000997.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0001325.htm\nhttp://www.uftree.com/UFT/WebPages/JenHawkins/ALL/nindex.htm\nhttp://www.primenet.com/~g-lady/Farewell/_borders/\nhttp://imasy.or.jp/~iwao/hokkaido/kushiro.html\nhttp://citeseer.nj.nec.com/nrelated/0/208436\nhttp://www.zeal.com/Arts___Entertainment/Literature/Authors/Lovecraft__H_P_/Books/Cthulhu_Campus_Crusade_for_Cthulhu/\nhttp://ftp1.se.debian.org/debian/dists/woody/contrib/binary-mipsel/mail/?M=A\nhttp://ftp1.se.debian.org/debian/dists/woody/contrib/binary-mipsel/mail/?S=A\nhttp://webtools.familyeducation.com/whatworks/item/front/0,2551,1-10698-1981-,00.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380859/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp\nhttp://www.collectingnation.com/cgi-bin/bn/view_feedback.mod/pn?HANDLE=pokeweed\nhttp://www.egroups.com/messages/Future-History-L/213\nhttp://www.egroups.com/message/Future-History-L/192\nhttp://www.burstnet.com/ads/cb7826a-map.cgi/1384588733\nhttp://www.cs.com.cn/csnews/articles/142_23823.htm\nhttp://search.yam.com.tw/en/new/edu/hs/voca/tpc_vs/\nhttp://ftp.univie.ac.at/packages/tex/macros/latex2e/contrib/supported/vmargin/?D=A\nhttp://citeseer.nj.nec.com/cidcontext/3145269\nhttp://yp.gates96.com/11/72/80/34.html\nhttp://yp.gates96.com/11/72/80/36.html\nhttp://yp.gates96.com/11/72/80/76.html\nhttp://yp.gates96.com/11/72/81/26.html\nhttp://yp.gates96.com/11/72/81/67.html\nhttp://yp.gates96.com/11/72/83/68.html\nhttp://yp.gates96.com/11/72/84/29.html\nhttp://yp.gates96.com/11/72/84/39.html\nhttp://yp.gates96.com/11/72/85/56.html\nhttp://yp.gates96.com/11/72/85/63.html\nhttp://yp.gates96.com/11/72/85/96.html\nhttp://yp.gates96.com/11/72/86/3.html\nhttp://yp.gates96.com/11/72/86/28.html\nhttp://yp.gates96.com/11/72/86/59.html\nhttp://yp.gates96.com/11/72/86/63.html\nhttp://yp.gates96.com/11/72/88/43.html\nhttp://yp.gates96.com/11/72/89/8.html\nhttp://yp.gates96.com/11/72/89/13.html\nhttp://yp.gates96.com/11/72/89/20.html\nhttp://cometweb01.comet.co.uk/do!session=132039&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1\nhttp://iworld.freethemes.com/savers/adnload/77213.html\nhttp://iworld.freethemes.com/savers/adnload/35420.html\nhttp://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11201_353170_43264,00.html\nhttp://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11201_353170_43305,00.html\nhttp://www2.eunet.lv/library/iso/HISTORY/RUSSIA/Mirrors\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=10,3,5,16,14,6\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=17,3,5,16,14,6\nhttp://opac.lib.rpi.edu/search/dnatural+history+united+states+historiography+dictionaries/-17,-1,0,B/browse\nhttp://opac.lib.rpi.edu/search/dnatural+history+united+states+historiography+dictionaries/7,-1,0,B/browse\nhttp://www.sportinggreen.com/news/20001014/fbo/fbc/abb/001014.0391.html\nhttp://yp.gates96.com/0/14/10/63.html\nhttp://yp.gates96.com/0/14/10/80.html\nhttp://yp.gates96.com/0/14/11/32.html\nhttp://yp.gates96.com/0/14/11/37.html\nhttp://yp.gates96.com/0/14/11/80.html\nhttp://yp.gates96.com/0/14/13/21.html\nhttp://yp.gates96.com/0/14/13/23.html\nhttp://yp.gates96.com/0/14/13/38.html\nhttp://yp.gates96.com/0/14/13/49.html\nhttp://yp.gates96.com/0/14/13/90.html\nhttp://yp.gates96.com/0/14/14/53.html\nhttp://yp.gates96.com/0/14/14/63.html\nhttp://yp.gates96.com/0/14/14/77.html\nhttp://yp.gates96.com/0/14/15/12.html\nhttp://yp.gates96.com/0/14/15/88.html\nhttp://yp.gates96.com/0/14/15/96.html\nhttp://yp.gates96.com/0/14/16/27.html\nhttp://yp.gates96.com/0/14/16/62.html\nhttp://yp.gates96.com/0/14/16/67.html\nhttp://yp.gates96.com/0/14/16/86.html\nhttp://yp.gates96.com/0/14/16/92.html\nhttp://yp.gates96.com/0/14/17/15.html\nhttp://yp.gates96.com/0/14/17/22.html\nhttp://yp.gates96.com/0/14/17/44.html\nhttp://yp.gates96.com/0/14/18/27.html\nhttp://yp.gates96.com/0/14/18/29.html\nhttp://yp.gates96.com/0/14/18/83.html\nhttp://yp.gates96.com/0/14/19/35.html\nhttp://yp.gates96.com/0/14/19/58.html\nhttp://www.123bestphonerates.com/q/001p/vn/ZWUdEJwdxM.htm\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A2S/B3L/A4S/B1L/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A2S/B3L/A4S/C2D/\nhttp://southwind.themes.tucows.com/skins/icq/preview/68532.html\nhttp://southwind.themes.tucows.com/skins/icq/adnload/77797.html\nhttp://southwind.themes.tucows.com/skins/icq/preview/55623.html\nhttp://southwind.themes.tucows.com/skins/icq/adnload/51324.html\nhttp://southwind.themes.tucows.com/skins/icq/adnload/26609.html\nhttp://southwind.themes.tucows.com/skins/icq/adnload/48629.html\nhttp://southwind.themes.tucows.com/skins/icq/adnload/48628.html\nhttp://www.webcom.com.mx/cronica/1999/mar/09/neg01.html\nhttp://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/mpl000207.html\nhttp://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/news61.html\nhttp://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/ds2/fact.html\nhttp://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/mgs/sci/mola/98lander.html\nhttp://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/status990123.html\nhttp://ustlib.ust.hk/search*chi/dmarriage/dmarriage/-5,-1,0,B/exact&F=dmarriage+china&1,4/limit\nhttp://mediate.magicbutton.net/do/session/625641/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html\nhttp://www.scifi.com/cgi-bin/rbox/articles.pl?1&6&1721&20\nhttp://www.areteoutdoors.com/contribute/earth/b.97.r.54.g.1706.html\nhttp://members.tripod.lycos.co.kr/ifoo6981/?M=A\nhttp://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bol.php\nhttp://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mediatransfer.php\nhttp://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php\nhttp://www.safrex.com/catalog/elite08/elite084c.html\nhttp://www.911codes.com/games/platform/psx/sect/div/cont/list_cheat/spray/y/id/0000005511/gid/0000003893/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/\nhttp://yp.gates96.com/7/44/10/4.html\nhttp://yp.gates96.com/7/44/10/15.html\nhttp://yp.gates96.com/7/44/10/30.html\nhttp://yp.gates96.com/7/44/10/32.html\nhttp://yp.gates96.com/7/44/10/36.html\nhttp://yp.gates96.com/7/44/11/1.html\nhttp://yp.gates96.com/7/44/11/41.html\nhttp://yp.gates96.com/7/44/11/44.html\nhttp://yp.gates96.com/7/44/12/29.html\nhttp://yp.gates96.com/7/44/12/76.html\nhttp://yp.gates96.com/7/44/12/81.html\nhttp://yp.gates96.com/7/44/13/56.html\nhttp://yp.gates96.com/7/44/14/19.html\nhttp://yp.gates96.com/7/44/15/14.html\nhttp://yp.gates96.com/7/44/15/52.html\nhttp://yp.gates96.com/7/44/15/62.html\nhttp://yp.gates96.com/7/44/15/72.html\nhttp://yp.gates96.com/7/44/15/78.html\nhttp://yp.gates96.com/7/44/15/81.html\nhttp://yp.gates96.com/7/44/15/82.html\nhttp://yp.gates96.com/7/44/16/78.html\nhttp://yp.gates96.com/7/44/16/93.html\nhttp://yp.gates96.com/7/44/17/51.html\nhttp://yp.gates96.com/7/44/17/75.html\nhttp://yp.gates96.com/7/44/18/43.html\nhttp://yp.gates96.com/7/44/18/92.html\nhttp://yp.gates96.com/7/44/19/26.html\nhttp://www3.newstimes.com/archive2000/oct17/bze.htm\nhttp://member.aol.co%20m/askmo/\nhttp://home.excite.co.uk/directory/categories/528195\nhttp://www.scifi.com/bboard/browse.cgi/1/5/545/11566?pnum=1\nhttp://member.shangdu.net/home1/havdone/game/gonglue/ljcq.htm\nhttp://member.shangdu.net/home1/havdone/game/gonglue/lishou.htm\nhttp://archiv.leo.org/cgi-bin/leo-md5.pl/pub/comp/usenet/comp.sources.misc/dostrace/\nhttp://yp.gates96.com/8/70/91/12.html\nhttp://yp.gates96.com/8/70/91/20.html\nhttp://yp.gates96.com/8/70/91/45.html\nhttp://yp.gates96.com/8/70/92/29.html\nhttp://yp.gates96.com/8/70/92/40.html\nhttp://yp.gates96.com/8/70/92/74.html\nhttp://yp.gates96.com/8/70/93/9.html\nhttp://yp.gates96.com/8/70/93/11.html\nhttp://yp.gates96.com/8/70/94/10.html\nhttp://yp.gates96.com/8/70/94/90.html\nhttp://yp.gates96.com/8/70/95/4.html\nhttp://yp.gates96.com/8/70/95/13.html\nhttp://yp.gates96.com/8/70/95/58.html\nhttp://yp.gates96.com/8/70/95/74.html\nhttp://yp.gates96.com/8/70/95/80.html\nhttp://yp.gates96.com/8/70/96/34.html\nhttp://yp.gates96.com/8/70/96/65.html\nhttp://yp.gates96.com/8/70/97/0.html\nhttp://yp.gates96.com/8/70/97/16.html\nhttp://yp.gates96.com/8/70/97/75.html\nhttp://yp.gates96.com/8/70/98/27.html\nhttp://yp.gates96.com/8/70/98/60.html\nhttp://www.icopyright.com/1.1638.306154\nhttp://www.zeal.com/category/be_zealous.jhtml?cid=828\nhttp://lib1.nippon-foundation.or.jp/1996/0621/contents/004.htm\nhttp://www.haikou.hainan.gov.cn/pandect/nj/n96jada.htm\nhttp://www.chaos.dk/sexriddle/s/e/x/p/b/m/s/\nhttp://www.symantec.ca/region/uk/resources/mobile/nav.html\nhttp://retailer.gocollect.com/do/session/1912798/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/products/product_lines.asp\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/Tabitha/http_-2www.adultlinks.net/gallery.shtml\nhttp://f22.parsimony.net/forum42460/messages/1.htm\nhttp://www.greenleaves.com/bookcat/gb_0722530986.html\nhttp://www.classiccmp.org/mail-archive/classiccmp/1998-06/0638.html\nhttp://www1.onelist.com/dir/Society/Paranormal/UFOs/Biblical_Perspectives\nhttp://home.hiwaay.net/~bjacobs/genealogy/laster/html/d0055/g0000045.html\nhttp://link.fastpartner.com/do/session/600374/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/netmaling.php\nhttp://big5.peopledaily.com.cn/haiwai/200003/03/newfiles/A104.html\nhttp://ustlib.ust.hk/search*chi/achang+chieh+mei/achang+chieh+mei/-5,-1,0,B/frameset&F=achang+chieh+fu&1,,2\nhttp://teleline.terra.es/personal/mgsair/chtml/ejemplos/marcos1.html\nhttp://myhome.naver.com/toktok01/bbs.php3?p_work=admin&p_page=1\nhttp://netway.pda.tucows.com/palm/adnload/34443_22051.html\nhttp://netway.pda.tucows.com/palm/adnload/34930_22057.html\nhttp://netway.pda.tucows.com/palm/adnload/34435_22044.html\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kmusic/brahms/qtWaveTrack.h?sortby=rev&only_with_tag=HEAD\nhttp://sinr.net/book/content/39/8411.html\nhttp://www.egroups.com/post/gvocsa?act=reply&messageNum=145\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056669&area=&ID=483352\nhttp://www.brio.de/BRIO.catalog/39fe2f7d06fe4a08273fd472aa7806a9/UserTemplate/1\nhttp://www3.newstimes.com/archive2000/sep01/rgd.htm\nhttp://community.webshots.com/photo/5886633/5886821zAagKCgZhs\nhttp://community.webshots.com/photo/5886633/5917061PxBHHqElgV\nhttp://www.dnai.com/~mbaum/anita/html/eng/art/images/image38.html\nhttp://www.houses-apartment-listings.com/Michigan/city_search_criteria.asp?state=MI&City=CLINTON\nhttp://www.brio.de/BRIO.catalog/39fdb87c09896af6273fd472aa78076c/UserTemplate/10\nhttp://www.expressindia.com/ie/daily/19990129/02950495p.html\nhttp://www.linux.com/networking/web/unix/internet/project/security/\nhttp://www.linux.com/networking/web/unix/internet/project/Red_Hat/\nhttp://www.linux.com/networking/web/unix/internet/project/freshmeat/\nhttp://www.linux.com/networking/web/unix/internet/project/?kw_offset=50\nhttp://ring.yamanashi.ac.jp/pub/linux/debian/debian/dists/Debian2.2r0/non-free/binary-i386/science/?N=D\nhttp://ftp.task.gda.pl/pub/games/idgames/utils/level_edit/acaddoom.txt\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380864/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://fi.egroups.com/post/allianc?act=reply&messageNum=2305\nhttp://polygraph.ircache.net:8181/services/design/company/http_-2burn.ucsd.edu/~abcf\nhttp://polygraph.ircache.net:8181/services/design/company/miami.htm\nhttp://www.utexas.edu/ftp/admin/AI_ATTIC/ATW/Mosaic.instruct/?D=A\nhttp://ftp.du.se/disk3/redhat/updates/powertools/current/alpha/\nhttp://www.multicosm.com/facade/demo.multicosm.com/facade/www.informationweek.com/mediakit/00/default.html\nhttp://www.multicosm.com/facade/demo.multicosm.com/facade/www.informationweek.com/mediakit/00/about_overview.html\nhttp://www7.tok2.com/home/maki67/menu.htm\nhttp://www.mapion.co.jp/custom/AOL/admi/23/23103/tsujicho/2chome/index-24.html\nhttp://sunsite.org.uk/public/computing/networks/internet/ietf/printmib/printmib-attendees-97apr.txt\nhttp://ftp.univie.ac.at/packages/tex/macros/latex2e/contrib/supported/nomencl/?N=D\nhttp://spaceports.tucows.com/winme/adnload/137993_30287.html\nhttp://habenix.uni-muenster.de/Rektorat/Forschungsberichte-1997-1998/fo05acd01.htm\nhttp://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=2,25,7,32,18\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,help/discussion_id,2/xid,6155/yid,3651726\nhttp://itcareers.careercast.com/texis/it/itjs/+IwwBmeS9D867xwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew7hmwGAnBoDtapGdtGwMamnVncdpa51ppdGBaqconDBaqdMM1DoqwBodDaoDVn5BMnDBapGdm1qBaMwDwtnaqGnwBoVnaMFqhgfHNEDzm7wwwpBmeg9D86exqwww5rmeqDwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+XwwBmie0B-deaqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew7hmwGAnBoDtapGdtGwMamnVncdpa51ppdGBaqconDBaqdMM1DoqwBodDaoDVn5BMnDBapGdm1qBaMwDwtnaqGnwBoVnaMFqhgfHNEDzm7wwwpBmeg9D86exqwww5rm-mwwBrmeZpwww/morelike.html\nhttp://members.iinet.net.au/~scott3/legacy/matt.html\nhttp://cn.egroups.com/post/bastardimage?act=forward&messageNum=11\nhttp://ftp.nodomainname.net/pub/mirrors/.2/gnu/tasks/?N=D\nhttp://ftp.nodomainname.net/pub/mirrors/.2/gnu/tasks/standards.text\nhttp://10000downloads.subportal.com/sn/Utilities/Misc__Utilities/11320.html\nhttp://mindit.netmind.com/proxy/http://www.altera.com/html/tools/swupdates.html\nhttp://www.next.com.hk/mag/419/news/an06.htm\nhttp://www.areteoutdoors.com/channel/air/b.283.g.3871.html\nhttp://troop485.tripod.com/documents/johnwayne.htm\nhttp://troop485.tripod.com/documents/bp-churchhill.htm\nhttp://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/22P03|972959558|Security|user|0|1,0,0,1\nhttp://www9.hmv.co.uk:5555/do/session/1347794/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d120_sd0_pt0.html\nhttp://ftp.du.se/debian/dists/Debian2.2r0/main/disks-m68k/2.2.16-2000-07-14/mac/images-1.44/?S=A\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20043193/-5,-1,0,B/buttonframe&F=bp20043190&1,1\nhttp://www.parlament.ch/internet98/Poly/Suchen_amtl_Bulletin/ce98/ete/275.HTM\nhttp://in.egroups.com/messages/svpvril/5195?viscount=-30\nhttp://in.egroups.com/messages/svpvril/?expand=1\nhttp://retailer.gocollect.com/do/session/1912744/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp\nhttp://retailer.gocollect.com/do/session/1912744/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www18.freeweb.ne.jp/sports/imamako/\nhttp://www.cs.ucc.ie/javadocs/jdk1.2.2/docs/api/java/awt/geom/class-use/QuadCurve2D.Double.html\nhttp://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?stigmaonline&msg=172\nhttp://www.emerchandise.com/aboutus/b.TV%20ANGEL/s.2YYjVOgH\nhttp://www.leyou.com/product/ShowResult.php?LY_Category=0531&page=3\nhttp://cafe6.daum.net/Cafe-bin/Bbs.cgi/rest114pds/qry/zka/B2-kB23o/qqatt/^\nhttp://sunsite.informatik.rwth-aachen.de/LinuxArchives/sunsite.unc.edu/distributions/linux-router/dists/2.9.6/base/?N=D\nhttp://www-uk5.cricket.org/link_to_database/ARCHIVE/1999-2000/PAK_IN_SL/FANTASY/\nhttp://findmail.com/message/sangersreview/99\nhttp://phase.etl.go.jp/mirrors/netlib/utk/people/JackDongarra/SLIDES/osu-498/sld011.htm\nhttp://tucows.datasync.com/winme/preview/75261.html\nhttp://secure.danysoft.com/asp/dany.tienda/1266636789/Catalog\nhttp://www.birding.about.com/hobbies/birding/cs/placesecuador/index_2.htm\nhttp://www.cpami.gov.tw/ymsnp/animal/fauna/nospc385text.htm\nhttp://www.fh-telekom-leipzig.de/hilfe/pak_e/paket_inhalt_jade_dsl.html\nhttp://home.vicnet.net.au/~nunayl/feedback.html\nhttp://www.expage.com/nibina\nhttp://www.expage.com/virtuaalisiittolantallivihko\nhttp://www.expage.com/muittentallijenkisoja\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=9,39,33\nhttp://retailer.gocollect.com/do/session/1912707/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2\nhttp://www.streetprices.com/Electronics/Other/MAKE+SYMANTEC/sortdetailbystock/SP322647.html\nhttp://www.peopledaily.co.jp/haiwai/199810/09/no_981009003024_6.html\nhttp://mediate.magicbutton.net/do/session/625622/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html\nhttp://mediate.magicbutton.net/do/session/625622/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html\nhttp://www.nada.kth.se/systemgruppen/docs/javadoc/jdk-1.3/docs/api/javax/swing/plaf/basic/class-use/BasicSliderUI.ChangeHandler.html\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/Collect_DB_Advers2/2000-09-10/08/?N=D\nhttp://yp.gates96.com/12/57/30/53.html\nhttp://yp.gates96.com/12/57/32/14.html\nhttp://yp.gates96.com/12/57/32/97.html\nhttp://yp.gates96.com/12/57/33/1.html\nhttp://yp.gates96.com/12/57/33/37.html\nhttp://yp.gates96.com/12/57/37/91.html\nhttp://yp.gates96.com/12/57/37/98.html\nhttp://yp.gates96.com/12/57/38/23.html\nhttp://yp.gates96.com/12/57/38/34.html\nhttp://yp.gates96.com/12/57/38/51.html\nhttp://yp.gates96.com/12/57/38/53.html\nhttp://yp.gates96.com/12/57/39/43.html\nhttp://yp.gates96.com/12/57/39/56.html\nhttp://yp.gates96.com/12/57/39/68.html\nhttp://yp.gates96.com/12/57/39/70.html\nhttp://www3.sympatico.ca/jacques.m.boisvert/Data_Distribution.html\nhttp://www.garekiya.com/female/female02-25.html\nhttp://www.brio.de/BRIO.catalog/39fe2f6c06f4cd8e273fd472aa780734/UserTemplate/5\nhttp://202.99.23.195/GB/channel1/13/20001030/291723.html\nhttp://db.bbc.co.uk/education/gcsebitesize/maths/shape_and_space_i_h/loci_rev.shtml\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC709F9_97F3_1F2D7EFC4CA45617D914720977E88400\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceShoppingCartPage-BBC709F9_97F3_1F2D7EFC4CA45617D914720977E88400\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/http_-2www.hercules.com/history.htm\nhttp://www.jbc.org/cgi/content/short/275/36/27501\nhttp://brazil.mit.edu/sdb/de/html/keylist.NNTP.html\nhttp://ads3.zdnet.com/c/g=r771&c=a53605&idx=2000.10.30.21.30.57/www.micronpc.com/zd/max1299\nhttp://webtools.familyeducation.com/whatworks/item/front/0,2551,22-9696-6689-473-46499,00.html\nhttp://www.dispatch.co.za/2000/04/08/business/HIGHLOW.HTM\nhttp://generalstore.everdream.com/kore/catalog/Office_Supplies/Forms,_Record_Keeping_&_Reference/Human_Resources/Motivational/brand.html?sort=price&count=0\nhttp://www.laria.u-picardie.fr/docs/www.linux-france.org/article/securite/intro.html\nhttp://ftp.uni-stuttgart.de/pub/netscape/communicator/slovenian/4.51/windows/windows95_or_nt/\nhttp://cafe4.daum.net/Cafe-bin/Bbs.cgi/monjatingpds/lst/qqeq/1/zka/B2-kBnNt\nhttp://myhome.shinbiro.com/~funky27/novel18.htm\nhttp://www.apcmag.com/apcweb/reviewsdisc.nsf/aac7d56ca8fd884b852563be00610639/25858e2d9c878e294a2567060015364d!EditDocument\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/luedinghausen/Verkauf/3d-service/Gemeinsam/Immolink/Gemeinsam/erreichenPartner/Private-IB/\nhttp://www.eos.dk/archive/swing/msg00405.html\nhttp://www.jobvillage.com/channel/jobs/human_resources/benefits_analysis/b.2807.g.1757.html\nhttp://www.hanaga.com.cn/gbjc/tc/jq.htm\nhttp://www.multimap.com/wi/33747.htm\nhttp://www.multimap.com/wi/143959.htm\nhttp://home.freeuk.net/jdl/Left_Navigate.htm\nhttp://www.crit.org/nph-edit.cgi/http://crit.org/pub/ifi.unizh.ch/wagner/just-testing.html\nhttp://www.interessengemeinschaft-musik.de/catalog%20data/body_22.html\nhttp://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/FIND-ACC/0333501\nhttp://www.mojahedin.org/Pages/Mojahed/Mojahed451/rp/rp09.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/lenhart.cgi?158\nhttp://carriage.de/Schoner/collections/Geschichte/Sammlungen/info-e/\nhttp://cafe4.daum.net/Cafe-bin/Bbs.cgi/pflhs11pds/rnw/zka/B2-kB2-s\nhttp://ftp.lip6.fr/pub11/NetBSD/arch/hpcmips/pkgstat/20001008.0536/textproc/xerces-j-current/\nhttp://dk.egroups.com/message/scotdisinfo/306\nhttp://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0360708.htm\nhttp://www.legend-net.com/news/tiyu/messages/474.html\nhttp://www.legend-net.com/news/tiyu/messages/466.html\nhttp://tv.thevines.com/leaf/AA0000373887/3/0/0/&hmode=on\nhttp://vorg1.subportal.com/sn/Business/Enhanced_Calculators/5511.html\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,28,31,24,35\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=24,5,17,30,11\nhttp://ftp.gwdg.de/pub/eff/Global/USA/Legislation/gtda_export.regulations\nhttp://www.dein-schicksal.de/Fotoanzeigen/April_2000/7/17/27/body_57.html\nhttp://www.fujian-window.com/Fujian_w/news/mzrb1/20000630/2_14.html\nhttp://www.webswap.com/shelf/2/17559/sell.html\nhttp://search.leg.wa.gov/wslrcw/RCW%20%2036%20%20TITLE/RCW%20%2036%20.100%20%20CHAPTER/RCW%20%2036%20.100%20.060.htm\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex02/icc97/?M=A\nhttp://school.educities.org/card/abc0609.html\nhttp://school.educities.org/card/huangmei.html\nhttp://school.educities.org/card/a126457822.html\nhttp://school.educities.org/card/a8911.html\nhttp://school.educities.org/card/aa5117.html\nhttp://school.educities.org/card/b3575610.html\nhttp://school.educities.org/card/c5625.html\nhttp://school.educities.org/card/h1230997.html\nhttp://school.educities.org/card/h224153937.html\nhttp://school.educities.org/card/julie9.html\nhttp://school.educities.org/card/lefe135.html\nhttp://school.educities.org/card/nl123.html\nhttp://school.educities.org/card/s5802.html\nhttp://school.educities.org/card/s58120.html\nhttp://school.educities.org/card/s5931.html\nhttp://school.educities.org/card/s6197.html\nhttp://school.educities.org/card/vov.html\nhttp://school.educities.org/card/xx5331.html\nhttp://darkwing.uoregon.edu/~cblanksh/GeneratedItems/?M=A\nhttp://ciscom.gamecenter.com/Tipcheat/PC/Item/0,128,0-202,00.html\nhttp://rotten-tomatoes.com/movies/browse/1010942/video.php\nhttp://rotten-tomatoes.com/movies/browse/1076825/reviews.php\nhttp://archive.soccerage.com/s/fr/09/98335.html\nhttp://www.ferien-immobilien.de/nordrhein-Westfalen/aachen/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/3d-service/Gemeinsam/erreichenPartner/Gemeinsam/impressum.htm\nhttp://www.ebigchina.com/tool_tellfriend.phtml?code=msg&mid=3174\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=RELENG_3\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=MAIN\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=RELENG_3_BP\nhttp://ring.jec.ad.jp/pub/linux/debian/debian/dists/unstable/contrib/binary-sh/admin/?M=A\nhttp://www2.eunet.lv/library/alt/URIKOVA/FORTUNE_D/Mirrors\nhttp://www.hermes.dk/departments/om/publica.shtml\nhttp://208.194.150.10/Ski/Articles/DrDewpoint/001/bannerAd.shtml\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/quanta/quanta/widgets/?sortby=log&only_with_tag=start\nhttp://biblio.cesga.es:81/search*gag/aSempere+Navarro,+Antonio-Vicente/asempere+navarro+antonio+vicente/-5,-1,0,E/frameset&F=asempere+y+guarinos+juan+trad&1,1\nhttp://www.fractal.com.ru/Component/Toshiba/74Cxx/TC74HC74DS.pdf\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n3,7,Electric+Wave+Girl+1998.html\nhttp://excite.de/auto/katalog/11803\nhttp://gatekeeper.dec.com/pub/BSD/NetBSD/NetBSD-current/pkgsrc/sysutils/amanda-client/pkg/\nhttp://www.smcworld.com/smcworld/bp_e/large/0524_2301_002x2301_003x2301_004x2301_005x2301_006x2301_007_2301_005b.html\nhttp://www.kaos.dk/sexriddle/x/j/t/z/d/\nhttp://www.kaos.dk/sexriddle/x/j/t/z/e/\nhttp://spartanburg2.edgate.com/blgspringes/school_athletics/parent/\nhttp://www-personal.engin.umich.edu/~mhaanpaa/?S=D\nhttp://www.amcity.com/jacksonville/stories/2000/05/15/story8.html?t=email_story\nhttp://yp.gates96.com/7/47/40/13.html\nhttp://yp.gates96.com/7/47/42/7.html\nhttp://yp.gates96.com/7/47/43/2.html\nhttp://yp.gates96.com/7/47/43/22.html\nhttp://yp.gates96.com/7/47/43/54.html\nhttp://yp.gates96.com/7/47/44/0.html\nhttp://yp.gates96.com/7/47/45/3.html\nhttp://yp.gates96.com/7/47/45/30.html\nhttp://yp.gates96.com/7/47/45/78.html\nhttp://yp.gates96.com/7/47/45/89.html\nhttp://yp.gates96.com/7/47/46/41.html\nhttp://yp.gates96.com/7/47/46/71.html\nhttp://yp.gates96.com/7/47/48/1.html\nhttp://yp.gates96.com/7/47/48/68.html\nhttp://yp.gates96.com/7/47/48/92.html\nhttp://yp.gates96.com/7/47/49/6.html\nhttp://yp.gates96.com/7/47/49/43.html\nhttp://yp.gates96.com/7/47/49/86.html\nhttp://yp.gates96.com/7/47/49/97.html\nhttp://de.excite.de/bildung/katalog/24692\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=90&discrim=226,20,231\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=90&discrim=226,20,4\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380862/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp\nhttp://www1.zdnet.co.uk/news/news1/ns-1511.html\nhttp://bellona.itworld.com:8080/cwi/reprint/0,1926,NAV63-128-1357-1367_STO48730,00.html\nhttp://wwwhome.cs.utwente.nl/~zwiers/projects/docs/jdk/api/java/util/class-use/SortedMap.html\nhttp://cgi.cnnsi.com/football/nfl/players/Ed.McCaffrey/\nhttp://fi.egroups.com/messages/philmusic/12006\nhttp://fi.egroups.com/messages/philmusic/12123\nhttp://fi.egroups.com/messages/philmusic/213\nhttp://fi.egroups.com/messages/philmusic/1826\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=22,0+20,0-9,2-~\nhttp://my.egroups.com/message/gps4gis/164\nhttp://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/Startseite/Startseite/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm\nhttp://apple.excite.com/entertainment/fine_arts/classical_music/composers/baroque_composers/albinoni_tomaso/works/\nhttp://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/609420000046582000001552000000949302/main.wo/7834100000849302/4/-/prime\nhttp://yp.gates96.com/11/75/40/25.html\nhttp://yp.gates96.com/11/75/40/38.html\nhttp://yp.gates96.com/11/75/40/88.html\nhttp://yp.gates96.com/11/75/40/91.html\nhttp://yp.gates96.com/11/75/42/1.html\nhttp://yp.gates96.com/11/75/42/74.html\nhttp://yp.gates96.com/11/75/42/81.html\nhttp://yp.gates96.com/11/75/43/45.html\nhttp://yp.gates96.com/11/75/43/51.html\nhttp://yp.gates96.com/11/75/46/25.html\nhttp://yp.gates96.com/11/75/46/72.html\nhttp://yp.gates96.com/11/75/46/89.html\nhttp://yp.gates96.com/11/75/46/91.html\nhttp://yp.gates96.com/11/75/47/5.html\nhttp://yp.gates96.com/11/75/48/67.html\nhttp://yp.gates96.com/11/75/49/89.html\nhttp://users.telerama.com/~mross/jenny/forsale.html\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=14&discrim=212,57\nhttp://ring.htcn.ne.jp/archives/NetBSD/NetBSD-1.4.2/atari/binary/security/?N=D\nhttp://library.bangor.ac.uk/search/dCanada+--+Agricultural+resources+--+19th+century/dcanada+agricultural+resources+++19th+century/-5,-1,0,B/exact&F=dcanaanites&1,3\nhttp://www.brio.de/BRIO.catalog/39fe2f6406e8eec4273fd472aa780738/UserTemplate/5\nhttp://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-04.htm\nhttp://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-08.htm\nhttp://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-20.htm\nhttp://polygraph.ircache.net:8181/http_-2www.sgi.net/http_-2www.itools.com/research-it/http_-2www.aardvarkclay.com/Themes/http_-2www.snapsite.com/guests/sk8ctrl/public/html/sitemap/sitemap.htm\nhttp://www.genexchange.com/cemlist.cfm?state=mo&county=webster\nhttp://newsone.net/nnr/showart/alt.current-events.haiti/911\nhttp://212.11.11.62/voyages_degriffes/MEXIQUE/PARIS+-+MEXICO+A%2FR/SAI00511790/\nhttp://bitwise.linux.tucows.com/x11html/adnload/131942_45932.html\nhttp://www.brio.de/BRIO.catalog/39fe2f740910301a2740d472aa7806aa/UserTemplate/1\nhttp://singles-ads.theshoppe.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/3585/\nhttp://www.chaos.dk/sexriddle/j/l/v/y/t/\nhttp://www.interlog.com/~prandall/relations/d0003/g0000795.html\nhttp://ftp.jp.debian.org/debian/dists/woody/non-free/binary-arm/oldlibs/?M=A\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/129/97268//V/1828099/6////25/N/MLTPAID\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/129/147168//V/1828099/11////25/N/MLTPAID\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/129/124846//V/1828099/24////25/N/MLTPAID\nhttp://mirrortucows.technet.it/winme/htmlbeginnerme_size.html\nhttp://www.bcbsal.org/Provider_Dir/pharmacy/state/Georgia/HAWKINSVILLE/index_10201.html\nhttp://www.incestpornstories.com/tinkerbellbeard/ac/plus-sizehealthy/petitevietnamese/slanted-eyes/cuntschoolgirls/high-schoolteenager/cherryunderage.html\nhttp://www.0563.net/imode2/hazu/play/outdoor/nature/nature1.htm\nhttp://www.launch.com/music/songpage/pvn_content/0,5259,1074221,00.html\nhttp://ftp.jp.debian.org/debian/dists/unstable/main/binary-alpha/tex/?S=A\nhttp://iceberg.adhomeworld.com/cgi-win/redirect.exe/896425026\nhttp://www.nrc-handelsblad.nl/W2/Lab/Baan/000726-a.html\nhttp://www.nrc-handelsblad.nl/W2/Lab/Baan/000718-a.html\nhttp://members.tripod.co.jp/muzyaki/?M=A\nhttp://alfa.nic.in/lsdeb/ls12/ses4/0413039930.htm\nhttp://excite.de/immobilien/katalog/26640\nhttp://excite.de/immobilien/katalog/27591\nhttp://excite.de/immobilien/katalog/28370\nhttp://excite.de/immobilien/katalog/28376\nhttp://excite.de/immobilien/katalog/26426\nhttp://excite.de/immobilien/katalog/28458\nhttp://www.emerchandise.com/aboutus/b.TV%20THE60S/s.qxmvd5Gr\nhttp://www.computerworld.com.cn/99/week/9920/9920c13.asp\nhttp://www.stud.ntnu.no/~oystena/oystena/cache/dvx70a.html\nhttp://nealet.subportal.com/sn/Shell_and_Desktop/Holiday_Screen_Savers/\nhttp://dk.egroups.com/message/ugm/40?source=1\nhttp://www1.bdaserver.de/bda/nat/pzt/formel1/gp/mon.html\nhttp://www17.freeweb.ne.jp/diary/t-soken/love-love.htm\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-12/14/971332013437.txt\nhttp://pub3.ezboard.com/f80sxchangegeneraldiscussion.showMessage?topicID=60.topic\nhttp://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/0005/www.nene.ac.uk/ncr/enrol/sectn4/pdf/4-5.pdf\nhttp://www.xmission.com/~dkenison/cgi/lwgate.cgi/LDS-BOOKSHELF/archives/v01.n676/Date/article-15.html\nhttp://www.eos.dk/archive/swing/nav08574.html\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=1,4,11,18,5,17\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=6,4,11,18,5,17\nhttp://cn.egroups.com/message/highlanderswaps/3351\nhttp://cn.egroups.com/message/highlanderswaps/3356\nhttp://www.mobygames.com/user/sheet/view/havelist/so,game_title(game_id)+DESC,game_havelist_id+DESC/userHaveListId,18/userSheetId,832/offset,15/\nhttp://www.mobygames.com/user/sheet/view/havelist/so,game_title(game_id)+DESC,game_havelist_id+DESC/userHaveListId,18/userSheetId,832/offset,60/\nhttp://gettosdownloads.subportal.com/sn/Palm_Pilot/Home_and_Hobby/12385.html\nhttp://biblio.cesga.es:81/search*gag/aOurense+(Di%26oacute%3Bcesis).+Obispado+de+Ourense,+ed./aourense+diocesis+obispado+de+ourense+ed/-5,-1,0,B/browse\nhttp://www.beneteau-owners.com/beneteau.nsf/userlistbyboat!OpenView&Start=21.24&Count=45&Expand=39\nhttp://www.geocities.com/Yosemite/8908/\nhttp://www.geocities.com/Yosemite/3295/\nhttp://lists.insecure.org/linux-kernel/2000/Apr/4105.html\nhttp://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v5.0x/lp2/dna500/\nhttp://atlas.web.cern.ch/Atlas/GROUPS/SOFTWARE/OO/dist/0.0.28/graphics/TreeBuilder/TreeMaker/CVS/?M=A\nhttp://www.21hk.com/book/zt/zt/zpj/c/chichuancilang/txmoxj/012.htm\nhttp://chat.hani.co.kr/NetBBS/Bbs.dll/brief/rcm/zka/B23lBn-t/qqatt/^\nhttp://www3.buch-per-sms.de/impressum.jsp$ID=To7770mC6889218603037781At0.41865389376542195\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1997/7/0/904457/\nhttp://www.mets.com/gameinfo/990504-recap.htm\nhttp://www.mets.com/Video/990709-PiazzaHR_lr.asp\nhttp://www.people.zeelandnet.nl/cn.atlas/compatlasw1.html\nhttp://www.digitaldrucke.de/(aktuell,bekanntschaften,hilfe,marktplatz,nuernberg)/_fort/html/themen/markt/bekannt/bekannt.htm\nhttp://www.staroriental.net/nav/soeg/ihf,acf,s0,359,Gigi+Leung+Wing-Kay.html\nhttp://rapidus.tucows.com/winme/adnload/137435_28887.html\nhttp://library.bangor.ac.uk/search/aBerthoff,+Ann+E/aberthoff+ann+e/-5,-1,0,B/frameset&F=aberthier+rene&1,1\nhttp://www.teenplatinum.com/barelylegal/underagevirgin/abductionbondage/amateurco-ed/chijapanese/{gaylink}\nhttp://www.paisvirtual.com/informatica/freeware/cltorres/contra.htm\nhttp://library.cuhk.edu.hk/search*chi/aInstitution+of+Civil+Engineers+(Great+Britain)/ainstitution+of+civil+engineers+great+britain/-5,-1,0,B/browse\nhttp://www.digitaldrucke.de/(aktuell,computer,hersteller,hilfe)/_fort/html/themen/computer/hard/links/dell.htm\nhttp://www.angelfire.com/ar/jimbowles/weekofoct3.html\nhttp://www.dtic.mil/envirodod/derpreport95/vol_2/b2_1991.html\nhttp://www.dtic.mil/envirodod/derpreport95/vol_2/b2_2010.html\nhttp://kobe.cool.ne.jp/heartisland/y_top0004.html\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=10,97,3\nhttp://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-20000207-231308.html\nhttp://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-19991206-195152.html\nhttp://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-990920-105620.html\nhttp://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-990810-082554.html\nhttp://gallery2.simplenet.com/lobby/main/videocaps/lalbrght/conair/laca26.htm\nhttp://www.ld.com/cbd/archive/1999/09(September)/30-Sep-1999/Bawd007.htm\nhttp://www.ld.com/cbd/archive/1999/09(September)/30-Sep-1999/Bawd013.htm\nhttp://chunma.yeungnam.ac.kr/~j4390071/\nhttp://www.chaos.dk/sexriddle/h/y/z/m/\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d262/b190,8,be,29,29,,b,,be,b,\nhttp://pub17.ezboard.com/fanimesandrpgslinkstositesandotherforums.showMessage?topicID=2.topic\nhttp://www.hotelboulevard.com/fr/riviera/standard/htmled1e03872682f66e105b3c38b4506d50/sessionLang/ANG/search.html\nhttp://bbs.msquare.or.kr/list.bbs/course/old/DiscMath95/9.html\nhttp://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-1/dists/unstable/main/binary-all/mail/?N=D\nhttp://www.ee/epbe/pangandus/9910/0.2.txt\nhttp://shitty.10pics.com/buttfucking/rear/\nhttp://www.thestateofcolorado.com/hsiwindowdoorlettering.html\nhttp://www.generation-formation.fr/brevesc.htm---o21zAo0UtDo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqruePl9neNHhIeOkatAhcgNA074wNV8XzAhcgNAPfVbdsNhJI.htm\nhttp://netscape.digitalcity.com/boston/sports/standings.dci?league=NBA&team=BOS\nhttp://netscape.digitalcity.com/boston/sports/attcompare.dci?league=NBA&team=BOS\nhttp://retailer.gocollect.com/do/session/1912752/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://mindit.netmind.com/proxy/http://www.skepdic.com/sympathetic.html\nhttp://mindit.netmind.com/proxy/http://faculty.washington.edu/chudler/moon.html\nhttp://itcareers.careercast.com/texis/it/itjs/++wwBmeE_D86esmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8Qwo5qda5dc1BodDawGnwaGn31oGnmaoDmnpBraADdicnmtnapGdm1qBaBnqrDoqwcatGd1pamnVncdpaMFqoET02fgENDzmezxwwwpBmeC_D86Qwww5rmkmwwBrmeyDwww/morelike.html\nhttp://retailer.gocollect.com/do/session/1912762/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/terms_and_conditions.asp\nhttp://retailer.gocollect.com/do/session/1912762/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/141339880.shtml\nhttp://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/410769654.shtml\nhttp://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/190045923.shtml\nhttp://tucows.megalink.com/winme/preview/76155.html\nhttp://www.buybuddy.com/sleuth/17/1/2006/32184/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380853/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://pchome.net:81/ch/Hw/CAMERA/canoneosd30/canoneosd30.htm\nhttp://pchome.net:81/ch/Hw/CAMERA/kodaknew.htm\nhttp://pchome.net:81/ch/Hw/MODEM/twluc562w2k.htm\nhttp://pchome.net:81/ch/Hw/MONITOR/mag796fd.htm\nhttp://pchome.net:81/ch/Hw/cool/anquanshuileng/anquanshuileng.htm\nhttp://pchome.net:81/ch/Hw/DISPLAY/3dbenchmarks/3dbenchmarks.htm\nhttp://pchome.net:81/ch/Hw/CAMERA/Microdrive.htm\nhttp://pchome.net:81/ch/Hw/harddisk/niyaomaishime.htm\nhttp://www.civila.com/guitar/desenredada/chat/logos/index.html-ssi\nhttp://members.xoom.it/scialpinismo/gitaappenparm/PreviewPages/PreviewPage7.htm\nhttp://cpan.nitco.com/modules/by-module/Mail/ASPIERS/URI-Bookmarks-0.92.readme\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.swnebr.net/~cambridg/http_-2www.cauce.org/Malcolm/\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_aswkit_aswkit.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_nbilwv_rbpobu.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_messod.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_otdbms.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_hoktlo.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_uhfkhdn_ilaeh.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_xyhsj_pfepjoa.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_alkqaay_mogsts.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_ighrg_ighrg.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_cbfjod_parbe.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_dqnlq_jfspcj.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_phcro_bwlah.html\nhttp://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_phcro_xoxchqb.html\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/IkhI2h2UISFGhSJ4dK-jGu69npNFUTS7n0SO4q6b8rSzWq_RIDBJOsj9QRxPcb3IZgZlQ5jvjGikzJWNeK-85DucH1Ag5dhhL0czi-GMxyHC1dmfKc0hW5TzqJpnm938SIT3xNrWgjZN66P6\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/oo1IpLu33emgRiskeudWkzY7LxFY35wz6EqyQ42lguNadi_4qnt4FhGUPOob_C5Wt99hQSEKEuRTRevsau9UYJ9lySivV-u51_OF4aSEhYXTt98QpjnIOFYPV6acMb20In922uOHMyYdC8HXvwhIP-8o8oM4wLBMdll6aW8xe922WllgXE1F5qlvFqyA\nhttp://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.sql.DatabaseMetaData136.html\nhttp://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.sql.DatabaseMetaData090.html\nhttp://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9902/Date/article-572.html\nhttp://spaceports.tucows.com/winme/preview/76400.html\nhttp://www.telecombroker.com/q/001p/ppc3/qG4gs1ewhU.htm\nhttp://ftp.nodomainname.net/pub/mirrors/.2/gnu/graphics/?N=D\nhttp://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp\nhttp://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp\nhttp://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/privacy_policy.asp\nhttp://202.101.106.19/dir/100/10a/zzgk/bszn/111.htm\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959538910/Catalog/1000084\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959538910/Club/start/1000000\nhttp://www.slis.ua.edu/cgi-bin/clickthrough.cgi/CT=http_3a_2f_2fwww_2edermis_2enet_2fbilddb_2fdiagnose_2fenglisch_2fi697015_2ehtm\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/rnumber/8467604\nhttp://www-personal.engin.umich.edu/~vernage/teamweb/team.building/effective.meetings/effective.meetings.facilitation.htm\nhttp://www4.law.cornell.edu/uscode/42/ch87subchIV.head.html\nhttp://yp.gates96.com/7/27/90/10.html\nhttp://yp.gates96.com/7/27/90/11.html\nhttp://yp.gates96.com/7/27/90/30.html\nhttp://yp.gates96.com/7/27/91/72.html\nhttp://yp.gates96.com/7/27/91/76.html\nhttp://yp.gates96.com/7/27/91/85.html\nhttp://yp.gates96.com/7/27/91/92.html\nhttp://yp.gates96.com/7/27/92/61.html\nhttp://yp.gates96.com/7/27/92/72.html\nhttp://yp.gates96.com/7/27/93/10.html\nhttp://yp.gates96.com/7/27/93/17.html\nhttp://yp.gates96.com/7/27/93/30.html\nhttp://yp.gates96.com/7/27/93/65.html\nhttp://yp.gates96.com/7/27/93/76.html\nhttp://yp.gates96.com/7/27/93/99.html\nhttp://yp.gates96.com/7/27/94/37.html\nhttp://yp.gates96.com/7/27/94/85.html\nhttp://yp.gates96.com/7/27/95/5.html\nhttp://yp.gates96.com/7/27/95/14.html\nhttp://yp.gates96.com/7/27/95/55.html\nhttp://yp.gates96.com/7/27/95/57.html\nhttp://yp.gates96.com/7/27/96/21.html\nhttp://yp.gates96.com/7/27/96/49.html\nhttp://yp.gates96.com/7/27/96/50.html\nhttp://yp.gates96.com/7/27/96/55.html\nhttp://yp.gates96.com/7/27/96/92.html\nhttp://yp.gates96.com/7/27/97/24.html\nhttp://yp.gates96.com/7/27/97/73.html\nhttp://yp.gates96.com/7/27/97/98.html\nhttp://yp.gates96.com/7/27/98/26.html\nhttp://yp.gates96.com/7/27/98/62.html\nhttp://yp.gates96.com/7/27/99/15.html\nhttp://yp.gates96.com/7/27/99/52.html\nhttp://www.nrk.no/finnmark/x2_9_98/nyh11.htm\nhttp://www.excelsior.com.mx/9701/970105/nac18.html\nhttp://www.symantec.co.kr/sabu/igear/igear_educ/stories.html\nhttp://www.smcworld.com/smcworld/bp/pre/0204_1_1070.html\nhttp://www.cpami.gov.tw/ymsnp/animal/fauna/nospc708choice.htm\nhttp://pub9.ezboard.com/fdawsonscreek50374helpwanted\nhttp://pub9.ezboard.com/fdawsonscreek50374frm17\nhttp://www.happychannel.it/turismo/europa/top_news/schede/scheda_991209110434.shtml\nhttp://www.happychannel.it/turismo/europa/top_news/schede/scheda_991111111106.shtml\nhttp://dirs.educationamerica.net/New_York/Localities/N/New_York_City/Manhattan/Business_and_Economy/\nhttp://dirs.educationamerica.net/New_York/Localities/N/New_York_City/Manhattan/Government/\nhttp://china-water.51.net/life/life_20.htm\nhttp://china-water.51.net/life/life_22.htm\nhttp://www.egroups.com/message/ramtalk/17801\nhttp://www.usahardware.com/inet/webSession/shopper/US972959720-31113/store/dept-1\nhttp://www.usahardware.com/inet/webSession/shopper/US972959720-31113/store/specials\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=97&discrim=2,68,201\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/legendes/misc/music/lit/hasard.html\nhttp://findmail.com/group/ken2061\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380852/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-photoworld.com/photoworld.asp?lang=f\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380852/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/traveljournal.asp\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-med.stanford.edu/school/banner.html\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-med.stanford.edu/school/neurosurgery.html\nhttp://hotop.on.net.cn/diguo/club/disp.asp?owner=A201&ID=894\nhttp://hotop.on.net.cn/diguo/club/disp.asp?owner=A201&ID=846\nhttp://interbaun.tucows.com/winme/preview/577.html\nhttp://www.ferien-immobilien.de/ungarn/verkauf/Gemeinsam/Immolink/Exklusiv-IB/Startseite/3d-service/Private-IB/Startseite/Default.htm\nhttp://www.eos.dk/archive/swing/msg10936.html\nhttp://www.egroups.com/message/ICSIA-PublicForum/138\nhttp://www.online.kokusai.co.jp/Service/V0043601/wrd/G200/service/service.html\nhttp://debian.tod.net/debian/dists/unstable/main/source/libs/?N=D\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d79/b77,e,4d,51,51,819,819,,2,,51,2,4e,,4d,4e,\nhttp://www.redhat.com/mirrors/LDP/LDP/khg/HyperNews/get/fs/fs/9/?N=D\nhttp://ftp.oleane.net/pub/CTAN/systems/knuth/local/man1/?D=A\nhttp://www.jamba.de/KNet/_KNet-_UA8j1-xFd-13bat/browse.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-_UA8j1-xFd-13bbg/showInfo-jambabanner.de/node.0/cenv0b09a\nhttp://www.tente.de/us/produkte/artikel/af000000736.htm\nhttp://dwp.bigplanet.com/bloomingprairie/look/sitemap.nhtml\nhttp://www.kfh-mainz.de/Organisationen/Ketteler/pf/ws0001.html\nhttp://extreme-dm.com/tracking/reports/dj/nph-reloads.cgi?tag=agmusik\nhttp://www.chaos.dk/sexriddle/c/v/m/v/y/\nhttp://ring.jec.ad.jp/pub/linux/debian/debian/dists/woody/non-free/binary-i386/electronics/?D=A\nhttp://tongbang-gh.ed.taejon.kr/1998대전시/math/olym/function/m103_003/html/m103_003h01.html\nhttp://www.company-product.com/23063/\nhttp://members.tripod.lycos.co.kr/re22/CPUCOOL5195/uni2k15/?N=D\nhttp://209.52.189.2/print_message.cfm/stepparents/8279/173602\nhttp://216.33.87.17/sports/baseball/sba/sba04r.htm\nhttp://www.mc99.co.jp/mvp/member/new/honda/16kr3fj2/search.cgi?_file=038\nhttp://www.emerchandise.com/browse/EMERCH/COASTERS/s.cU6lmV05\nhttp://www.emerchandise.com/browse/CHARMED/s.cU6lmV05\nhttp://www.across.or.jp/nbbs/nbbs.cgi/talk:n18/replyto/462\nhttp://www.vins-siffert-scea.fr/lycee-seijo/guide/staff/yoshida.htm\nhttp://www.egroups.com/messages/grebel-list/2305\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.abcjewelry.com/http_-2www.1045fm.com/http_-2www.4sitedesign.com/stp/nbm.html\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/astro/wmmoonclock/pkg/Attic/DESCR?only_with_tag=RELEASE_4_0_0\nhttp://biblio.cesga.es:81/search*gag/tMariposas+negras.+1:08,50+min/tmariposas+negras++++1+++08+++50+min/-5,-1,0,B/frameset&F=tmariposa+y+la+hormiga&1,1\nhttp://polygraph.ircache.net:8181/Cameras/order/rr962.htm\nhttp://polygraph.ircache.net:8181/Cameras/order/dfwmap.htm\nhttp://support.tandy.com/support_audio/doc45/45827.htm\nhttp://image.tulips.tsukuba.ac.jp:70/fif=picture/ECWP/001.fpx&init=-0.23170732,0.0,1.2317073,1.0&rect=0.5,0.25,0.6829269,0.375&wid=600&hei=600&lng=ja&enablePastMaxZoom=OFF&page=uv1-en.html&obj=uv,1.0&cmd=NW\nhttp://pub23.ezboard.com/fcaribbeanvoiceforumsfrm3.showAddTopicScreenFromWeb\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,1+0,0-19,0+9,4\nhttp://vipnet.tucows.com/win2k/adnload/51108_28465.html\nhttp://vipnet.tucows.com/win2k/adnload/38782_28482.html\nhttp://www4.50megs.com/tstazer/edhtms/edbeats.htm\nhttp://www.unterhaltungs-cd.de/ObervellacherBuam/B000025KMT.htm\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=bocarderont&l=fr\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=10,3,211\nhttp://variety.studiostore.com/help_security/b.TV%20HERCULES/s.cD15jQkr\nhttp://variety.studiostore.com/help_shipping/b.TV%20HERCULES/s.cD15jQkr\nhttp://variety.studiostore.com/product/TSHER0001/b.TV%20HERCULES/s.cD15jQkr\nhttp://variety.studiostore.com/aboutus/b.TV%20HERCULES/s.cD15jQkr\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959753-31163/store/dept-5/department/dept-5/item/51530\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=135&discrim=165,71,194\nhttp://www.kagtech.com/SpitfrireKennels\nhttp://www.expage.com/page/thekatshow\nhttp://www.jobvillage.com/channel/jobs/cleaning/gardener/b.4255.g.3878.html\nhttp://www.xmwb.sh.cn/xmwb/20000704/BIG5/14016^6070408.htm\nhttp://www.xmwb.sh.cn/xmwb/20000704/BIG5/14016^7070414.htm\nhttp://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody-jp/contrib/binary-all/tex/?S=A\nhttp://genforum.genealogy.com/ny/monroe/messages/350.html\nhttp://genforum.genealogy.com/ny/monroe/messages/296.html\nhttp://genforum.genealogy.com/ny/monroe/messages/306.html\nhttp://genforum.genealogy.com/ny/monroe/messages/213.html\nhttp://otenet.themes.tucows.com/fonts/preview/18792.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18828.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18876.html\nhttp://otenet.themes.tucows.com/fonts/preview/18877.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18894.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18910.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18941.html\nhttp://otenet.themes.tucows.com/fonts/adnload/18949.html\nhttp://otenet.themes.tucows.com/fonts/adnload/25945.html\nhttp://ww.egroups.com/message/schoolnet_sadc/96\nhttp://ww.egroups.com/message/schoolnet_sadc/98\nhttp://www6.pasta.cs.uit.no/ietf/ietf45/proceedings/I-D/webdav-dublin-core-01.txt\nhttp://www-uk9.cricket.org/link_to_database/INTERACTIVE/SURVEYS/POLLS_DEC1998.html\nhttp://www.ucp.org/ucp_generaldsc.cfm/151/8/35/ucp_disctpc/292/263\nhttp://www.ucp.org/ucp_generaldsc.cfm/151/8/35/ucp_disctpc/79/79\nhttp://se.egroups.com/message/DBA/1700\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/138/2000/6/0/\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/138/2000/7/0/\nhttp://www.inf.fu-berlin.de/lehre/WS00/SWT/material/rosebeispiele/interaccess/logicalview/cat32862112022a/cat36e7162c0192/msg343269780227.htm\nhttp://www.private-immobilien-boerse.de/leipzig/verkauf/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/Startseite/\nhttp://www.private-immobilien-boerse.de/leipzig/verkauf/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Immolink/link.htm\nhttp://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/Little%20Sands.asp\nhttp://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/Miscouche.asp\nhttp://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/O'Leary.asp\nhttp://www.buybuddy.com/sleuth/15/1/1070306/519432/\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/ammattikorkeakoulut/lahti/p%E4ij%E4t-h%E4me/\nhttp://www.3w-buecher.de/GravesRobert/GravesRobert0140171991.htm\nhttp://www.3w-buecher.de/GravesRobert/GravesRobert1559948345.htm\nhttp://www.3w-buecher.de/GravesRobert/GravesRobert1850897506.htm\nhttp://members.theglobe.com/heliox2/pokepages/ninepic.htm\nhttp://taiwan.vh.org//////Providers/Textbooks/MuscleInjuries/Fig2.html\nhttp://www.globalgarden.com/Tomato/Archives/vol.1/1147.html\nhttp://www.mojahedin.org/Pages/Mojahed/Mojahed442/articles/articlesftx03.html\nhttp://216.34.146.180/161000reu/16hlth6.htm\nhttp://moshkow.sstu.samara.ru/win/BESTER/Encoding_koi\nhttp://in.egroups.com/message/Girl-Scout-Swaps/9\nhttp://in.egroups.com/message/Girl-Scout-Swaps/31\nhttp://members.tripod.com/floydechoes/more.htm\nhttp://nanjingnews.jlonline.com/nanjingnews/njrb/20000222/08dushi.htm\nhttp://www.egroups.com/messages/archery/38?expand=1\nhttp://retailer.gocollect.com/do/session/1912759/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp\nhttp://home.dqt.com.cn/~ying_jia/wangwen/new/111.htm\nhttp://canoe.com/MLB97FLASF/sep30_fla_sf.html\nhttp://pub2.ezboard.com/fespguitarsmessageboardltdguitarandbassreviews.subscribeUnregisteredToTopic?topicID=8.topic\nhttp://www.catholicstore.com/search/index.cfm/FuseAction/largeImage/SKU/2558/category/Bo/subCategory/AE/subject/17\nhttp://www.allgemeine-immobilien-boerse.de/bayern/augsburg/Verkauf/Private-IB/Startseite/Gemeinsam/Inserieren/Private-IB/IIM-Teil/Startseite/froben.htm\nhttp://www.infoscape.com.cn:8171/nf/0004/18/nfga1801.htm\nhttp://www.infoscape.com.cn:8171/nf/0004/18/nfga1809.htm\nhttp://www.linux.com/networking/network/kernel/apache/applications/HTTP/\nhttp://www.linux.com/networking/network/kernel/apache/applications/Linuxcare/\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=exacerbate&l=en\nhttp://dopey.rediris.es/ftp/mirror/CPAN/modules/by-module/overload/GSAR/Archive-Tar-0.071.readme\nhttp://dopey.rediris.es/ftp/mirror/CPAN/modules/by-module/overload/GSAR/Tie-IxHash-1.21.readme\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,201,226\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,201,85\nhttp://www.gsnet.com/bdltg/es/1_136243.html?num=2\nhttp://www.pinoycentral.com/img/UBB.nsf/e39d540ca6a9104b4825694d006ed185/6668efca7b60518648256966000fd202?Navigate&To=Prev\nhttp://www.academyfloral.com/state/cabel/flowers/harmony.html\nhttp://trading.rakuten.co.jp/items001/4c/0d/10138895/bidlist.html\nhttp://www.cs.uwa.edu.au/programming/jdk1.2.2/api/javax/swing/event/class-use/TableColumnModelListener.html\nhttp://secure.danysoft.com/asp/dany.tienda/803039052/IconBar\nhttp://ftp-stud.fht-esslingen.de/pub/Mirrors/CPAN/modules/by-authors/id/L/LH/LHS/?S=A\nhttp://genforum.genealogy.com/ga/messages/6297.html\nhttp://genforum.genealogy.com/ga/messages/7843.html\nhttp://genforum.genealogy.com/ga/messages/7281.html\nhttp://www.jsinc.com/dd/destnat/sep00/fromcol10090800.asp\nhttp://www.secinfo.com/$/SEC/Filing.asp?T=nDA3.7c_9i4\nhttp://www.secinfo.com/$/SEC/Filing.asp?T=nDA3.7c_b19\nhttp://www.sd.digitalcity.com/maconga/penpals/browse.dci?cat=teens\nhttp://www.sd.digitalcity.com/maconga/penpals/browse.dci?cat=seniors&sort=f\nhttp://www.picktips.com/category-1031-1172_1170_1174-4_1_3\nhttp://www-us6.semiconductors.com/acrobat/datasheets/CR6627_1.pdf\nhttp://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/p-r/pimp.txt\nhttp://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/p-r/radiated.txt\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceMallCategories-BBC709FC_97F7_9E91E7C8C7066684B664C77C8575B940\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceOrderStatusOverview-BBC709FC_97F7_9E91E7C8C7066684B664C77C8575B940\nhttp://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033638\nhttp://mediate.magicbutton.net/do/session/625642/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html\nhttp://link.fastpartner.com/do/session/600388/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/netmaling.php\nhttp://www.egroups.com/message/RecipeCollectors2/3785\nhttp://plat.debian.or.jp/debian/dists/woody/contrib/binary-alpha/admin/?S=A\nhttp://198.103.152.100/search*frc/aFILIPPELLI,+R.L/afilippelli+r+l/-5,-1,0,B/frameset&F=afilion+louis+jacques&1,,0\nhttp://de.excite.de/wetter/katalog/4206\nhttp://www.burstnet.com/ads/ad8386a-map.cgi/973225252.925077\nhttp://www.branchenfuehreronline.de/A/hauptteil_a.html\nhttp://www.linux.com/networking/support/red_hat/internet/test/simple/\nhttp://www.shopworks.com/ccfarm/index.cfm/action/search/userid/00061450-2F40-19FE-9038010B0A0ADCF2\nhttp://www.shopworks.com/index.cfm/userid/00061450-2F40-19FE-9038010B0A0ADCF2\nhttp://pelit.saunalahti.fi/.1/tucows/preview/144491.html\nhttp://pelit.saunalahti.fi/.1/tucows/preview/52377.html\nhttp://www.teacherformation.org/html/od/facilitators.cfm/xid,7238/yid,4053212\nhttp://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Tianjin/Business/Companies/Utilities/\nhttp://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=174&Count=60&Expand=194\nhttp://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=174&Count=60&Expand=227\nhttp://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/MarketingStrategie/Startseite/froben.htm\nhttp://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm\nhttp://www.3wposter.com/hake/hkg1701.htm\nhttp://www.citybrazil.com.br/go/mossamedes/utilpub.htm\nhttp://oss.software.ibm.com/developerworks/opensource/cvs/icu4j/icu4j/src/com/ibm/demo/translit/Attic/?sortby=date\nhttp://www.linux.com/networking/network/management/operating_system/enterprise/research/\nhttp://www.angelfire.com/pq/Prophetess/Prophetess.page3.html\nhttp://www.3w-nostalgie.de/ZeigerMimi/ZeigerMimi007072833X.htm\nhttp://www.excelsior.com.mx/9801/980128/for01.html\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=11&discrim=49,235,5\nhttp://retailer.gocollect.com/do/session/1912802/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp\nhttp://citeseer.nj.nec.com/track/64292/4220924\nhttp://citeseer.nj.nec.com/correct/318910\nhttp://citeseer.nj.nec.com/correct/249393\nhttp://www.chaos.dk/sexriddle/h/y/r/k/\nhttp://www.hig.se/(aconf,date,doc,insert,return)/~jackson/roxen/\nhttp://www.hig.se/(aconf,date,doc,gtext,insert)/~jackson/roxen/\nhttp://mediate.magicbutton.net/do/session/625608/vsid/4573/tid/4573/cid/88043/mid/2247/rid/2383/chid/3527/url/http://www.winesmart.com/expert.asp\nhttp://magazines.sina.com/education/renbun/93/13.html\nhttp://www6.freeweb.ne.jp/art/cilter/kamijo02.htm\nhttp://yp.gates96.com/11/25/50/28.html\nhttp://yp.gates96.com/11/25/50/41.html\nhttp://yp.gates96.com/11/25/50/65.html\nhttp://yp.gates96.com/11/25/50/74.html\nhttp://yp.gates96.com/11/25/50/91.html\nhttp://yp.gates96.com/11/25/50/93.html\nhttp://yp.gates96.com/11/25/50/94.html\nhttp://yp.gates96.com/11/25/51/59.html\nhttp://yp.gates96.com/11/25/51/93.html\nhttp://yp.gates96.com/11/25/52/66.html\nhttp://yp.gates96.com/11/25/54/46.html\nhttp://yp.gates96.com/11/25/54/68.html\nhttp://yp.gates96.com/11/25/54/83.html\nhttp://yp.gates96.com/11/25/54/95.html\nhttp://yp.gates96.com/11/25/54/98.html\nhttp://yp.gates96.com/11/25/55/1.html\nhttp://yp.gates96.com/11/25/55/6.html\nhttp://yp.gates96.com/11/25/55/96.html\nhttp://yp.gates96.com/11/25/56/83.html\nhttp://yp.gates96.com/11/25/56/89.html\nhttp://yp.gates96.com/11/25/57/30.html\nhttp://yp.gates96.com/11/25/57/68.html\nhttp://yp.gates96.com/11/25/58/56.html\nhttp://yp.gates96.com/11/25/58/67.html\nhttp://yp.gates96.com/11/25/59/7.html\nhttp://yp.gates96.com/11/25/59/40.html\nhttp://yp.gates96.com/11/25/59/58.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/legendes/lit/misc/quizz/quizz2.html\nhttp://excite.de/kleinanzeigen/katalog/7100\nhttp://www.egroups.org/messages/stepup/97\nhttp://sunsite.org.uk/pub/packages/proftpd/misc/?S=A\nhttp://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/?M=A\nhttp://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/Apache-Scoreboard-0.10.readme\nhttp://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/B-Size-0.04.readme\nhttp://herndon1.sdrdc.com/cgi-bin/can_ind/S8NY00082/1/Y/\nhttp://in.egroups.com/message/msu-foi/20?source=1\nhttp://www.worldstocks.de/htm/boersen/asien/indonesien_boerse.htm\nhttp://members.xoom.com/pvmnieuws/movies/movies.html\nhttp://gb.toget.com.tw/article/screensaver/index_a_2.html\nhttp://www.emis.de/journals/EJDE/Volumes/Monographs/Volumes/2000/64/?N=D\nhttp://bsd.wj.o3.net/8/1/18/4.html\nhttp://www.ftp.uni-erlangen.de/pub/mirrors/_other/afterstep.foo.net/apps/asprint/?S=A\nhttp://citeseer.nj.nec.com/cidcontext/3597768\nhttp://m4.findmail.com/dir/Sports/Soccer/Academic_Study_of_Soccer/History\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?westerman::121.html\nhttp://www-koi.bards.ru/Egorov/part84.htm\nhttp://www-koi.bards.ru/Egorov/part29.htm\nhttp://www-koi.bards.ru/Egorov/part127.htm\nhttp://www-koi.bards.ru/Egorov/part68.htm\nhttp://www.loisirs.ch/emjius/10/brglll.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/music/computers/legendes/lit/hellequin.html\nhttp://www.redrival.com/dejanss/muzika/exploited/themassacre.html\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967698323786.txt\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967699453627.txt\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967699813970.txt\nhttp://www.chaos.dk/sexriddle/c/v/w/l/o/\nhttp://www.chaos.dk/sexriddle/c/v/w/l/x/\nhttp://www.allgemeine-immobilien-boerse.de/Oesterreich/verkauf/IIM-Teil/Startseite/Allgemeine-IB/Gemeinsam/3d-service/info.htm\nhttp://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2eeb0239a4a4273fd47540f806ea/IconBar\nhttp://www.jamba.nl/KNet/_KNet-sDD8j1-GC4-puzu/browse.nl/node.0/cde7f1uou\nhttp://www.icopyright.com/1.1635.66362\nhttp://www.ld.com/cbd/archive/1999/05(May)/07-May-1999/Vsol004.htm\nhttp://www.infoscape.com.cn:8171/nf/0007/05/nfgz0517.htm\nhttp://209.207.239.212/bkindex/c1034/f1392.html\nhttp://www.gbnf.com/genealogy/rockwel4/html/d0007/I1584.HTM\nhttp://www.gbnf.com/genealogy/rockwel4/html/d0023/I3700.HTM\nhttp://www.hornchurch.londonengland.co.uk/designersgraphic.htm\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/misc/colorart/lit/quizz/\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/misc/colorart/lit/misc/orders_mag.html\nhttp://www.multimap.com/wi/141313.htm\nhttp://www.multimap.com/wi/141326.htm\nhttp://www.thestateofcolorado.com/aconplumbing.html\nhttp://www.thestateofcolorado.com/aconstairs.html\nhttp://ftp.netc.pt/pub/idgames/levels/doom2/0-9/10level.txt\nhttp://members.tripod.com.br/Magoo13/musicas.htm\nhttp://tucows.bigskysoft.com/winme/adnload/137256_30133.html\nhttp://www.houses-apartment-rentals.com/Texas/city_search_criteria.asp?state=TX&City=CHICOTA\nhttp://se.egroups.com/message/trabalhoseguro/186\nhttp://www.daysinn.com/ctg/cgi-bin/DaysInn/financial_support/AAAksrACwAAABvyAAQ\nhttp://www.long-life.de/lt040.htm\nhttp://smartnet.tucows.com/winme/meditme_rating.html\nhttp://smartnet.tucows.com/winme/meditme_size.html\nhttp://www.kmoviefc-jp.com/db/prod/pd/k1000003.htm\nhttp://ftp.rge.com/pub/usenet/readers/mac/Mews/?S=A\nhttp://fi.egroups.com/messages/lasermail/298\nhttp://fi.egroups.com/message/lasermail/295\nhttp://www.voter.com/home/message/post/1,1559,24-60_2976_2473-,00.html\nhttp://se.egroups.com/message/rv8list/1122\nhttp://www.ferien-immobilien.de/Rhein-Sieg-kreis/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/3d-service/Gemeinsam/Inserieren/Private-IB/Startseite/Default.htm\nhttp://library.bangor.ac.uk/search/aUnited+Kingdom+Reading+Association/aunited+kingdom+reading+association/-17,-1,0,B/exact&F=aunited+kingdom+environmental+law+association&1,2/limit\nhttp://webcenter.travelocity-leisure.netscape.com/DestGuides/0,1840,TRAVELOCITY|1987|5|2,00.html\nhttp://yokohama.cool.ne.jp/michirur/dragon/maria/m2.htm\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/graphics/Ngraph/patches/?D=A\nhttp://mitglied.tripod.de/argewesterwald/jr/jrfo3.htm\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=3,16,10\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=28,16,10\nhttp://avdistrict.edgate.com/hhs/pa_rc_gre.html\nhttp://pub26.ezboard.com/fdysfuctionalrealityfrm2.showAddReplyScreenFromWeb?topicID=32.topic&index=1\nhttp://www.geocities.co.jp/Playtown-Domino/5245/guti.html\nhttp://www.haikou.hi.cn/Pandect/hknj98/nj98d1.html\nhttp://retailer.gocollect.com/do/session/1912800/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp\nhttp://ftp.unina.it/pub/Pcibm/pcdemos/ftp.hornet.org/graphics/images/1998/b/?M=A\nhttp://variety.studiostore.com/browse/ABUGSLIFE/FIGURINE/s.qjEoNLlG\nhttp://yp.gates96.com/11/76/10/13.html\nhttp://yp.gates96.com/11/76/10/18.html\nhttp://yp.gates96.com/11/76/11/63.html\nhttp://yp.gates96.com/11/76/14/45.html\nhttp://yp.gates96.com/11/76/14/65.html\nhttp://yp.gates96.com/11/76/14/77.html\nhttp://yp.gates96.com/11/76/15/1.html\nhttp://yp.gates96.com/11/76/15/68.html\nhttp://yp.gates96.com/11/76/15/97.html\nhttp://yp.gates96.com/11/76/16/2.html\nhttp://yp.gates96.com/11/76/16/59.html\nhttp://yp.gates96.com/11/76/16/64.html\nhttp://yp.gates96.com/11/76/16/79.html\nhttp://yp.gates96.com/11/76/17/10.html\nhttp://yp.gates96.com/11/76/17/52.html\nhttp://yp.gates96.com/11/76/19/9.html\nhttp://yp.gates96.com/11/76/19/11.html\nhttp://yp.gates96.com/11/76/19/17.html\nhttp://yp.gates96.com/11/76/19/19.html\nhttp://www.debian.org.cn/Bugs/db/67/67207-b.html\nhttp://www.bemi-immobilien.de/Exklusiv-IB/Startseite/Gemeinsam/immolink/Gemeinsam/Inserieren/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/3d-service/info.htm\nhttp://www.private-immobilien-boerse.de/baden-wuertemberg/calw/Verkauf/Gemeinsam/versicherungen/gebaeude/Gemeinsam/erreichenPartner/Private-IB/IIM-Teil/Startseite/frinfo.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=21,0-(14,0)+9,5\nhttp://www.thesite.msnbc.com/tlkbck/comment/2100652/0,7436,80913-291181,00.html\nhttp://202.109.72.57:8077/article/19991130/1741.htm\nhttp://www.mit.edu/afs/athena.mit.edu/astaff/project/eolcdev/arch/sgi_62/\nhttp://www.metromix.com/top/1,1419,M-Metromix-Home-reviews!PlaceDetail-13623,00.html\nhttp://ring.jec.ad.jp/pub/linux/debian/debian/dists/woody/non-free/binary-powerpc/news/?M=A\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC70A07_97FC_42E663949129E2030ACC2E97E71CD8B3\nhttp://grwy.online.ha.cn/paoe/about/aoe2.htm\nhttp://www.2pl.com/b/ar/to/1/01/01/v1/1010178470-3.htm\nhttp://www.digitaldrucke.de/(aktuell,marktplatz,nuernberg,sense,werbung)/suche/uebersicht.html\nhttp://ustlib.ust.hk/search*chi/aswiss+radio+symphony+orchestra/aswiss+radio+symphony+orchestra/-5,-1,0,B/frameset&F=aswiss+society+for+soil+and+rock+mechanics&1,1\nhttp://www.ecatsbridge.com/BiB/static/sims/bbljuly99/00000101843221172F1.htm\nhttp://www.videogames.com/psx/sports/freestyle99/screen.html?page=19\nhttp://www.mojahedin.org/Pages/Mojahed/Mojahed474/sci/sci02.html\nhttp://www.shopworks.com/bigmountain/index.cfm/action/cart/userid/000E50D6-1185-19FE-A703010D0A0A8CF2\nhttp://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/~xionthia/as/\nhttp://yp.gates96.com/14/76/30/16.html\nhttp://yp.gates96.com/14/76/30/81.html\nhttp://yp.gates96.com/14/76/31/12.html\nhttp://yp.gates96.com/14/76/31/37.html\nhttp://yp.gates96.com/14/76/31/68.html\nhttp://yp.gates96.com/14/76/32/11.html\nhttp://yp.gates96.com/14/76/32/50.html\nhttp://yp.gates96.com/14/76/32/68.html\nhttp://yp.gates96.com/14/76/33/26.html\nhttp://yp.gates96.com/14/76/33/53.html\nhttp://yp.gates96.com/14/76/35/11.html\nhttp://yp.gates96.com/14/76/35/26.html\nhttp://yp.gates96.com/14/76/35/47.html\nhttp://yp.gates96.com/14/76/35/74.html\nhttp://yp.gates96.com/14/76/36/16.html\nhttp://yp.gates96.com/14/76/37/23.html\nhttp://yp.gates96.com/14/76/37/56.html\nhttp://yp.gates96.com/14/76/37/82.html\nhttp://yp.gates96.com/14/76/38/76.html\nhttp://yp.gates96.com/14/76/39/20.html\nhttp://yp.gates96.com/14/76/39/25.html\nhttp://yp.gates96.com/14/76/39/28.html\nhttp://yp.gates96.com/14/76/39/33.html\nhttp://yp.gates96.com/14/76/39/61.html\nhttp://yp.gates96.com/14/76/39/69.html\nhttp://yp.gates96.com/14/76/39/91.html\nhttp://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/PRESS_REACTIONS_AUS_18MAR1996\nhttp://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/LOSS_WI_CRICKET_11MAR1996.html\nhttp://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/SPINNERS_TALES_11JAN1996\nhttp://hurweb01.hurriyetim.com.tr/hur/turk/98/11/19/gundem/31gun.htm\nhttp://library.cuhk.edu.hk/search*chi/aKuan,+Jui-hsuan./akuan+jui+hsuan/-5,-1,0,E/exact&F=akuan+jui+hsuan&1,22\nhttp://library.cuhk.edu.hk/search*chi/aKuan,+Jui-hsuan./akuan+jui+hsuan/-5,-1,0,E/frameset&F=akuan+jung&1,,0\nhttp://ring.toyama-ix.net/archives/pc/winsock-l/Windows95/Finger/fing32l.txt\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=132044&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL\nhttp://student.monterey.edu/nr/riveradebranepom/campus/\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/listUnseen/fol/100001/20,0/5170254\nhttp://www.ibiblio.org/pub/Linux/distributions/debian/contrib/binary-all/otherosfs/?D=D\nhttp://www.ilmessaggero.it/hermes/19980909/01_NAZIONALE/SPETTACOLI/E.htm\nhttp://ayasii.virtualspace.net/html/1207/12071611_himemiya02.htm\nhttp://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp\nhttp://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/newintros.asp\nhttp://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/dealer_lookup.asp\nhttp://se.egroups.com/subscribe/pretty_of_five\nhttp://home.neo.rr.com/keeter/pics.html\nhttp://www.peopledaily.co.jp/haiwai/199910/12/newfiles/E108.html\nhttp://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v4.0x/lp2/snt100/?M=A\nhttp://www.alyon.org/perso/1001-sciences/sciences_citoyens/agronomie/agronomie/intervenants.htm\nhttp://www.2pl.com/b/no/fi/3/02/24/b1/3022400016-11131.htm\nhttp://channel.nytimes.com/indexes/2000/07/21/sports/hockey/\nhttp://space.tin.it/io/fivird/REM/eng/albums/lyrics/documentfr.html\nhttp://www.kurit.com/girls/galleryf.cgi?mp_code=7332&service=girls\nhttp://store.efunctional.com/nokia.html\nhttp://dk.egroups.com/login.cgi?login_target=%2Fmessage%2Fbonsai-cz%2F274\nhttp://bbs.kcm.co.kr/NetBBS/Bbs.dll/boliviabbs/opn/zka/B2-kB2Fq/qqo/007D/qqatt/^\nhttp://www.loisirs.ch/cvljnq/10/yrespd.html\nhttp://www.primenet.com/~trakker/events/abcforum.htm\nhttp://www.primenet.com/~trakker/events/frame_abcforum.htm\nhttp://www.fogdog.com/cedroID/ssd3040183253760/nav/products/featured_brands/12r/gift_packs/\nhttp://www.fogdog.com/cedroID/ssd3040183253760/nav/products/featured_brands/12r/windshirts/\nhttp://www.oreilly.com/homepages/dtdparse/docbook/3.0/dtdent/simmod02.htm\nhttp://dk.egroups.com/group/SCMHCSC\nhttp://www.ycwb.com.cn/gb/2000/01/11/ycwb/dsxw/9.html\nhttp://dk.egroups.com/message/teenhealth/1620\nhttp://nbzhuhq1.top263.net/htm/y/y14-5.htm\nhttp://adserver.latimes.com/editions/orange/20001030/t000103739.html\nhttp://adserver.latimes.com/editions/orange/20001030/t000103751.html\nhttp://library.bangor.ac.uk/search/cWS+200+G4655+1999/cws++200+g4655+1999/-17,-1,0,B/frameset&F=cws++141+j74+h+1989&2,,2\nhttp://ftpsearch.belnet.be/pub/os/linux/SuSE-Linux/i386/6.4/disks/rescue\nhttp://www.rarf.riken.go.jp/archives/tex-archive/macros/latex//contrib/supported/elsevier/model-harv.pdf\nhttp://www.diogenes.ch/4DACTION/web_glob_showhtml/path=leser/verlag/index.html&ID=483373\nhttp://crn.com/Components/emailArticle.asp?ArticleID=2114\nhttp://link.fastpartner.com/do/session/600410/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php\nhttp://link.fastpartner.com/do/session/600410/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php\nhttp://ftp.gigabell.net/pub/FreeBSD/FreeBSD-stable/packages/emulators/\nhttp://ftp.gigabell.net/pub/FreeBSD/FreeBSD-stable/packages/print/\nhttp://emplois.fr.net/archive062000/2348.html\nhttp://variety.studiostore.com/browse/ANASTASIA/_/b.FAVORITES%20COMICS%20ANIMFEAT/s.eKoxAPfo\nhttp://www.geocities.co.jp/HeartLand-Gaien/3163/choko.htm\nhttp://members.tripod.com/~moviemaniac1/moviesR/Rocketman.html\nhttp://wiem.onet.pl/wiem/0006ac-sp1.html\nhttp://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.net.UnknownHostException001.html\nhttp://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/31/Ort/1732/Homepage/m_homepage...2.html\nhttp://power.luneng.com/power/library/jzjs/jzjs99/jzjs9903/990311.htm\nhttp://citeseer.nj.nec.com/cidcontext/1976718\nhttp://in.egroups.com/messages/srcg/2\nhttp://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/comp/Linux/debian/dists/potato/main/disks-sparc\nhttp://pd.shiseido.co.jp/s9701unt/html/unt00025.htm\nhttp://www.kame.tadaima.com/9721036/taro1.html\nhttp://www.kame.tadaima.com/9721036/taro8.html\nhttp://www.unc.edu/courses/chem41/classnotes/41s6/sld008.htm\nhttp://a1sexpics.com/butts/buttfucking/\nhttp://moundoflove.com/buttfucking/butts/asslickinganal.html\nhttp://www.digitaldrucke.de/(arbeitsvermittlung,hilfe,nuernberg)/_fort/html/themen/hilfe/hilfe.htm\nhttp://freethemes.netc.pt/preview/15221.html\nhttp://freethemes.netc.pt/preview/51972.html\nhttp://freethemes.netc.pt/preview/74442.html\nhttp://cn.tech.yahoo.com/000913/23/1dpl.html\nhttp://cn.tech.yahoo.com/000913/23/1dp2.html\nhttp://wap.jamba.de/KNet/_KNet-JgK8j1-FGd-13di8/browse.de/node.0/cde7f1uou\nhttp://imageserver2.tibetart.com:8087/fif=fpxbuddhist/43.fpx&init=0.0,0.0,1.0,1.0&rect=-0.25,0.25,0.25,0.75&wid=280&hei=400&lng=en_US&enablePastMaxZoom=OFF&page=image.html&obj=uv,1.0&cmd=S\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/mar12.htm\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/act9.htm\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/rom7.htm\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/2co13.htm\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/heb12.htm\nhttp://www.ozemail.com.au/~pballard/gnt_hidden123/jam4.htm\nhttp://ftp.darenet.dk/tucows/winnt/adnload/1449_29554.html\nhttp://www.chaos.dk/sexriddle/w/j/u/o/\nhttp://www.chaos.dk/sexriddle/w/j/u/v/\nhttp://opac.lib.rpi.edu/search/tmcgraw+hill+series+in+advanced+chemistry/-5,-1,0,B/frameset&tmcgraw+hill+series+in+advanced+chemistry&9,,42\nhttp://www.zcu.cz/ftp/mirrors/pgp/6.5/6.5.1/win/\nhttp://webpolitik.subportal.com/sn/Multimedia_and_Graphics/Misc__Graphics_Tools/12852.html\nhttp://ftp.lip6.fr/pub2/perl/CPAN/doc/manual/html/lib/SysV/SysV.html\nhttp://bbs.gznet.edu.cn/cgi-bin/getannounce//groups/GROUP_9/Telecom/friend/fbf/ewqtr\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-10.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-88.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-92.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-177.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-178.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-229.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-288.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-293.html\nhttp://www.usq.edu.au/unit-1997/fullspec/54081s2x.htm\nhttp://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/15P04|972959617|Helmet|user|0|1,0,0,0\nhttp://www.buybuddy.com.au/sleuth/8/1/5010204/40843/\nhttp://www.maxpages.com/vote.cgi?site=pokemonyellow1&pg=Home\nhttp://rex.skyline.net/html/Automobiles_-_Dealers_-_Used.html?64,outdoor,transportation,collectibles,transportation\nhttp://www.linux.com/networking/network/communications/management/updates/Windows_NT/\nhttp://retailer.gocollect.com/do/session/1912735/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1\nhttp://amarilloglobenews.com/stories/031000/\nhttp://www.egroups.com/post/swish?act=reply&messageNum=275\nhttp://www.apcmag.com/apcweb/reviewsdisc.nsf/aac7d56ca8fd884b852563be00610639/af5bb64432e7f9444a2565240026bbbf!Navigate&To=PrevMain\nhttp://best.netease.com/guestbook/personal/zhuirinew3.html\nhttp://best.netease.com/cgi-bin/view/viewbasic.cgi?japanboy4\nhttp://www.ftp.uni-erlangen.de/cgi-bin/view/pub/mirrors/redhat/current/i386/doc/gsg/ch-basics.htm\nhttp://www.ftp.uni-erlangen.de/cgi-bin/view/pub/mirrors/redhat/current/i386/doc/gsg/p5202.htm\nhttp://splitrock.themes.tucows.com/preview/77000.html\nhttp://splitrock.themes.tucows.com/preview/25855.html\nhttp://splitrock.themes.tucows.com/preview/134493.html\nhttp://splitrock.themes.tucows.com/preview/14722.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=13,0-22,0+15,0-0,2\nhttp://www.icopyright.com/1.1634.64625\nhttp://mvweb.de/olympia/nachrichten/sportarten/ergebnisse/bdt-190900-438-dpa_153140.html\nhttp://www.rge.com/pub/tex/fonts/armtex/v2.0/examples/plain/\nhttp://www.club-internet.fr/cgi-bin/h?Antibes\nhttp://www.caprili.it/santantimo.htm\nhttp://dic.empas.com/show.tsp/?q=%C3%EB%C8%EF%20%F6%AD%FD%E9&f=B\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=98&discrim=2,38\nhttp://www.artex.firenze.it/_qualitart/articoli/zoom/02235.htm\nhttp://home.powertech.no/huftis/w3c/TR/WAI-WEBCONTENT-NO-NYN/checkpoint-list.txt\nhttp://mtlab.biol.tsukuba.ac.jp/WWW/PDB2/PCD0467/htmls/07.html\nhttp://library.cuhk.edu.hk/search*chi/aShu,+Tien-min./ashu+tien+min/-5,-1,0,B/exact&F=ashu+tsung+chiao&1,6\nhttp://www.trnonline.com/archives/2000archives/05242000/how_now_joe_brown/23506.shtml\nhttp://www.bemi-immobilien.de/Exklusiv-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/lebensversicherung/Startseite/frinfo.htm\nhttp://santabarbarashops.com/Mall/Stores/StoreInfo/asp/store-id/1000007121.html\nhttp://www.angelfire.com/ok/americassweetheart/UNique.html\nhttp://ukinvest.ukwire.com/articles/199909070731000375A.html\nhttp://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP374033.html\nhttp://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP363722.html\nhttp://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP288187.html\nhttp://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP288192.html\nhttp://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/Startseite/Gemeinsam/Gemeinsam/immolink/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://celes.subportal.com/sn/Business/Standard_Calculators/index1.html\nhttp://www.linux.com/networking/network/networking/it/future/firewall/\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=198&discrim=87,19,3\nhttp://www.hig.se/(append,define,language,quote,tablify)/~jackson/roxen/\nhttp://www.guba.com/114/236/12fE/index-3.phtml\nhttp://genforum.genealogy.com/tn/messages/7906.html\nhttp://207.138.41.133/message/BienestarCalifornia/16\nhttp://207.138.41.133/message/BienestarCalifornia/26\nhttp://chasnaz.freeyellow.com/email.html\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?mcevoy::217.html\nhttp://www.civila.com/brasil/fov/\nhttp://www.emerchandise.com/associates/b.FAVORITES%20PAGEANTS/s.oAq5vp1w\nhttp://www.emerchandise.com/help_security/b.FAVORITES%20PAGEANTS/s.oAq5vp1w\nhttp://www.z-plus.de/freizeit/kino/galerie/roula/kritikwelt.html\nhttp://www.angelfire.com/mo2/MrMime2000/wewon.html\nhttp://www.gazeta.com/Iso/Regiony/Lodz/Raporty/Jedzenie/Jedz/020jed.html\nhttp://www.sportas.de/ddsup00.htm\nhttp://muc-zvs-web1.goethe.de/an/mel/wabhorst/dtourism.htm\nhttp://www.cardina.net/~erps\nhttp://www.polbox.com/p/paruwa/spec.html\nhttp://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d72/b31,e,1f,b,b,50,50,,3,,1f,3,9,,1f,9,\nhttp://www.ld.com/cbd/archive/1999/03(March)/29-Mar-1999/15awd002.htm\nhttp://dk.egroups.com/post/cbradio?act=reply&messageNum=823\nhttp://aecjobbank.com/texis/script/newjobs/+lww7mwww0xBV6e52iHwwwesPBB2eZmwwwt6erV0Vwwwh6er6Gswwwt6er6bgwwwt6etDL-www+6ethrCwwxeRT43eR4mwwwt6etrvuwwwn6KeU-wwwmcmrmwxerjmx7mwww1hzmww-eHxww/jobdirectory.html\nhttp://www.envy.nu/summerslip/past.html\nhttp://www.envy.nu/summerslip/leave.html\nhttp://home.pacific.net.sg/~kinnkinn/\nhttp://www.bluesapphires.net/ladies/lv0444.shtml\nhttp://www.freerepublic.com/forum/a4148bd.htm\nhttp://www.sdinfonet.com.cn/024/32/024329969.htm\nhttp://www.sdinfonet.com.cn/024/32/024329953.htm\nhttp://www.jpc-music.com/8754347.htm\nhttp://www.jpc-music.com/5183511.htm\nhttp://www.jamba.nl/KNet/_KNet-ytO8j1-7D4-pwef/browse.nl/node.0/cde7f38ny\nhttp://dk.egroups.com/message/noholdsbarred/210\nhttp://uoi.tucows.com/winme/preview/75912.html\nhttp://207.197.132.133/lobbyists/98profiles/556.htm\nhttp://www.jobvillage.com/channel/jobs/protective_services/private_investigator/g.4.html\nhttp://www.jobvillage.com/channel/jobs/protective_services/private_investigator/b.8946.g.4179.html\nhttp://aleph.tau.ac.il:4500/ALEPH/eng/ATA/AAS/AAS/SET-MAIL/381462/11/\nhttp://www-rn.informatik.uni-bremen.de/home/X11R6/xc/lib/font/Speedo/?D=A\nhttp://www.brio.de/BRIO.catalog/39fe2f7006f69fb6273fd472aa78073d/UserTemplate/6\nhttp://cardiology.medscape.com/IMNG/ClinPsychNews/1998/v26.n07/cpn2607.34.01.html\nhttp://www.incestpornstories.com/hot-hardcore-fuckingbanging/plus-sizewhale/slutspretty/slutsbest-friends/erectionfellatio/bisexualtinkerbell.html\nhttp://yp.gates96.com/7/65/10/40.html\nhttp://yp.gates96.com/7/65/11/15.html\nhttp://yp.gates96.com/7/65/11/34.html\nhttp://yp.gates96.com/7/65/11/69.html\nhttp://yp.gates96.com/7/65/11/88.html\nhttp://yp.gates96.com/7/65/12/95.html\nhttp://yp.gates96.com/7/65/13/82.html\nhttp://yp.gates96.com/7/65/13/91.html\nhttp://yp.gates96.com/7/65/13/93.html\nhttp://yp.gates96.com/7/65/14/2.html\nhttp://yp.gates96.com/7/65/14/8.html\nhttp://yp.gates96.com/7/65/15/31.html\nhttp://yp.gates96.com/7/65/15/38.html\nhttp://yp.gates96.com/7/65/15/51.html\nhttp://yp.gates96.com/7/65/15/95.html\nhttp://yp.gates96.com/7/65/15/96.html\nhttp://yp.gates96.com/7/65/16/4.html\nhttp://yp.gates96.com/7/65/16/20.html\nhttp://yp.gates96.com/7/65/16/58.html\nhttp://yp.gates96.com/7/65/17/22.html\nhttp://yp.gates96.com/7/65/17/66.html\nhttp://yp.gates96.com/7/65/18/37.html\nhttp://yp.gates96.com/7/65/18/69.html\nhttp://yp.gates96.com/7/65/18/97.html\nhttp://yp.gates96.com/7/65/19/0.html\nhttp://yp.gates96.com/7/65/19/12.html\nhttp://yp.gates96.com/7/65/19/16.html\nhttp://yp.gates96.com/7/65/19/28.html\nhttp://yp.gates96.com/7/65/19/37.html\nhttp://yp.gates96.com/7/65/19/44.html\nhttp://dyade.inrialpes.fr/aaa/public/java/jdk1.3/docs/api/javax/swing/plaf/basic/class-use/BasicSplitPaneUI.KeyboardUpLeftHandler.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/kalatalous/ty%F6voimapolitiikka/pienet+ja+keskisuuret+yritykset/maatilatalous/\nhttp://www.ferien-immobilien.de/ungarn/verkauf/Gemeinsam/MarketingStrategie/Allgemeine-IB/Private-IB/Private-IB/Startseite/Default.htm\nhttp://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/libwww-perl-5.43.readme\nhttp://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/libwww-perl-5.46.readme\nhttp://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/webchat-0.05.readme\nhttp://209.0.220.240/biz/541519/541-389-1493.htm\nhttp://www.shsu.edu/wcb/schools/SHSU/sed/rmzoubi/12/forums/forum54/wwwboard.html\nhttp://retailer.gocollect.com/do/session/1912768/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp\nhttp://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9610/Date/article-33.html\nhttp://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9610/Date/article-31.html\nhttp://www.acfas.ca/congres/congres67/S408.htm\nhttp://pub1.ezboard.com/fthehawkeyehotspotfrm16.showMessage?topicID=178.topic\nhttp://archives.marshall.edu/~mccomas/cd315-spring00-list/1549.html\nhttp://www.asiastockwatch.com/AsiaStockWatch_-_Cached/Articles/asw_recommend_friend_con/1,1145,617_1_1:3,00.html\nhttp://wiem.onet.pl/wiem/014a7e.html\nhttp://linux99.inrialpes.fr/linux/RPM/kondara/1.2/errata/bugfixes/i586/System_Environment_Daemons.html\nhttp://linux99.inrialpes.fr/linux/RPM/kondara/1.2/errata/bugfixes/i586/User_Interface_X.html\nhttp://cn.egroups.com/login.cgi?login_target=%2Fmessage%2FWeb_Holidays%2F35\nhttp://library.bangor.ac.uk/search/aEuropean+Academy+of+Allergology+and+Clinical+Immunology/aeuropean+academy+of+allergology+and+clinical+immunology/7,-1,0,B/bibandlinks&F=aeuropean+association+for+animal+production+commission+on+animal+management&1,1\nhttp://www4.freeweb.ne.jp/art/fujiso/gehp/pge222.html\nhttp://pnews.jcc.co.jp/scoop/9905/990506kk2-3ss.html\nhttp://ring.nii.ac.jp/archives/linux/Vine/Vine-1.1/kernel-2.2.x-kit/RPMS/\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=81&discrim=8,230,214\nhttp://www.emerchandise.com/browse/BUFFYTHEVAMP/KEYCHAIN/b.TV%20BUFFYTHEVAMP/s.DfgPpLQw\nhttp://www.emerchandise.com/browse/BUFFYTHEVAMP/MAGNET/s.DfgPpLQw\nhttp://www.koms.de/I-Data/Upgrades/HostCom/Cx/isp/?S=A\nhttp://www.back2roots.org/Aminet/Forums/Util--Wb--Amero36/\nhttp://www.hig.se/(autoformat,define,en,modified,referrer)/~jackson/roxen/\nhttp://216.35.79.131/sites/gunits/052302u.html\nhttp://216.35.79.131/sites/gunits/052303u.html\nhttp://216.35.79.131/sites/gunits/032883u.html\nhttp://itcareers.careercast.com/texis/it/itjs/+4wwBmecXD86ExwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewShwAwMwoacnwmamnpcdOMnDBaMwoDBnDwDqnanDtoDnnGaDnBidGAaoDqc1mna5BGdDtaADdicnmtnaGn31oGnmaMFqtwAwMwoDzmeZxwwwpBmIe0B-decrwww5rmeAdwwwBrmeZpwww/morelike.html\nhttp://troy.lib.sfu.ca/search/tadvocate+vanc/tadvocate+vanc/7,-1,0,B/browse\nhttp://210.159.30.200:8080/-_-http://www2s.biglobe.ne.jp/~proton/kokuritu/\nhttp://210.159.30.200:8080/-_-http://www2s.biglobe.ne.jp/~proton/mituzawa/mitusta.html\nhttp://config.tucows.com/win2k/monitor2k_size.html\nhttp://config.tucows.com/win2k/adnload/136674_47327.html\nhttp://www.thisisyork.com/york/news/YORK_NEWS_CAMPAIGNS_POSTOFFICE5.html\nhttp://yp.gates96.com/5/78/0/35.html\nhttp://yp.gates96.com/5/78/0/41.html\nhttp://yp.gates96.com/5/78/0/65.html\nhttp://yp.gates96.com/5/78/0/79.html\nhttp://yp.gates96.com/5/78/0/81.html\nhttp://yp.gates96.com/5/78/1/33.html\nhttp://yp.gates96.com/5/78/1/76.html\nhttp://yp.gates96.com/5/78/2/0.html\nhttp://yp.gates96.com/5/78/2/65.html\nhttp://yp.gates96.com/5/78/3/37.html\nhttp://yp.gates96.com/5/78/4/31.html\nhttp://yp.gates96.com/5/78/4/60.html\nhttp://yp.gates96.com/5/78/4/73.html\nhttp://yp.gates96.com/5/78/5/28.html\nhttp://yp.gates96.com/5/78/5/65.html\nhttp://yp.gates96.com/5/78/6/12.html\nhttp://yp.gates96.com/5/78/6/38.html\nhttp://yp.gates96.com/5/78/6/99.html\nhttp://yp.gates96.com/5/78/7/48.html\nhttp://yp.gates96.com/5/78/8/49.html\nhttp://yp.gates96.com/5/78/8/55.html\nhttp://yp.gates96.com/5/78/8/71.html\nhttp://yp.gates96.com/5/78/9/19.html\nhttp://yp.gates96.com/5/78/9/94.html\nhttp://link.fastpartner.com/do/session/600420/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/fastpartner.php\nhttp://www.highwired.net/Guidance/UniversalNav/Redirect/0,5314,15089-15089-728,00.html\nhttp://ring.tains.tohoku.ac.jp/archives/lang/perl/CPAN/modules/by-module/Math/ILYAZ/os2/?S=A\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/DzRIZER-v0LffJEf3raIMcG3_vXLUQncNB0JHLK7Xt_XcNu5W9Xwg3bnK7e0BWrbchX2jMSNnK6eY6UuDPq6GFLMrzB0DcydY5VgMGVRUFbdksWiDCuTI0LBo3psuJxBJjEd\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/vihIvBk0g-CdjheZ4MILAcJAB--YtsE3nzjAldQSrSojV9JzVQJV-1yVbCi9rsPamZBGc9GfXE6dq1sCz-CnrfwDCHqr_nfUtl2qUN5oWAHphPSuuQXCc2fjfBv3EI-W4XBgp-ANhxEJS0536665\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/VihIDgZ6TF6W8zfPesIFMiw-CNzcKPLyYr5OXnsaqepOa1j4Wz2V-pVOhRfX5lUkxRpYs_BkTdpvjf7zUAk3RdhEaXDfmzm4RA2CLjQ84zSbEZ_Vil1cFFmY0FFZr5oIErljk11AnTlYM6y066jO\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/dRhIQJ3pEIfD5uG_JFeaP3_7Bke37Z5pJi0A-hZ_-kxEK4Z1jl3HNb6d3hgJ7UZ34jMQGSNzhYuMNxB-oyBon62h9GWx3Xt1Zk_o4kS3s9ybikCpzetMwprVGDCC-YzllwvEWxmP66jF\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/24161000003783000000741030000081551/v2tvindex.wo/810000000071551/1.0.4/3/Webobjects1\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d3345/b77,c,4d,469,469,46e,46e,168e,168e,,51,,4d,51,\nhttp://findmail.com/messages/themcse/102\nhttp://netcon.tucows.com/winme/adnload/136907_28427.html\nhttp://netcon.tucows.com/winme/adnload/136906_30076.html\nhttp://www.jyu.fi/~heili/tietoverkot/?S=A\nhttp://www1.onelist.com/dir/1/16/483/32773?st=10\nhttp://www1.onelist.com/messages/animadores\nhttp://seussville.com/teachers/authors/ayre.html\nhttp://seussville.com/teachers/authors/corm.html\nhttp://www.tente.de/sw/produkte/rubriksuche/aa000001461.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=57&discrim=165,57,164\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=57&discrim=165,57,207\nhttp://jars.developer.com//classes/jresout.cgi?resource=2897\nhttp://members.tripod.co.jp/spirits/?S=A\nhttp://homepages.go.com/homepages/i/u/g/iuguy22/\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,5,24\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=31,5,24\nhttp://troy.lib.sfu.ca/search/delectrolytes+periodicals/delectrolytes+periodicals/-5,-1,0,B/exact&F=delectrolytes+congresses&1,3\nhttp://www.rdg.ac.uk/ITS/Topic/Stats/StGSAS8_01/SAS8/af/z0254912.htm\nhttp://www.rdg.ac.uk/ITS/Topic/Stats/StGSAS8_01/SAS8/af/z0254924.htm\nhttp://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/compat20/\nhttp://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/dict/\nhttp://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/manpages/\nhttp://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1682/date/article-7.html\nhttp://ring.toyama-ix.net/pub/linux/Vine/Vine-2.0/ppc/?S=A\nhttp://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9907/Date/article-80.html\nhttp://www.officeqmart.com/cgi-bin/qmart.front/972959552267/Catalog/3000033\nhttp://www.checkout.com/member/movies/title/member_reviews_form/1,7722,882122,00.html\nhttp://mindit.netmind.com/proxy/http://www.siennasoft.com/english/order/orders_retail.shtml\nhttp://pelit.saunalahti.fi/.1/tucows/adnload/267_29529.html\nhttp://pelit.saunalahti.fi/.1/tucows/adnload/7574_29534.html\nhttp://zenha.myrice.com/2/23.htm\nhttp://zenha.myrice.com/2/20.htm\nhttp://citeseer.nj.nec.com/cachedpage/62677/1\nhttp://citeseer.nj.nec.com/check/248055\nhttp://www.3wbooks.de/BrackRuth/BrackRuth3258053200.htm\nhttp://preview.egroups.com/group/u_exactus\nhttp://preview.egroups.com/group/ticovista\nhttp://www.linux.com/networking/linux/support/va_linux_systems/price/sales/\nhttp://kulichki-mac.rambler.ru/moshkow/akm/zercalo/kosmix/03.html\nhttp://innopac.lib.tsinghua.edu.cn:2080/search*chi/tStructure+and+bonding+&%2359%3B+70/tstructure+and+bonding+++70/19,-1,0,B/browse\nhttp://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/archivers/gcpio/files/\nhttp://www-d0.fnal.gov/d0dist/dist/releases/pmc04.00.00/calibration_management/?S=A\nhttp://mvweb.de/olympia/nachrichten/sportarten/news/bdt-290900-158-dpa_173282.html\nhttp://www.scifi.com/bboard/browse.cgi/3/1/69/57?pnum=2\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056459&area=&ID=483365\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/L/LA/LAXEN/?D=A\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380856/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/\nhttp://library.cuhk.edu.hk/search*chi/aLu,+Li,+1914-/alu+li+1914/-5,-1,0,B/frameset&F=alu+li+chun&1,1\nhttp://www-usa4.cricket.org/link_to_database/ARCHIVE/2000-01/IND_LOCAL/WOMEN/OTHERS/KLCA-SL/SQUADS/\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041141.1.4425650346\nhttp://193.207.57.3/cgi-win/hiweb.exe/a2/d9/b1305,4,5,,1f,5,\nhttp://www.icopyright.com/1.1664.228033\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/1AR/A2S/A1S/D1L/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/1AR/A2S/A1S/A2S/\nhttp://www.ferien-immobilien.de/baden-wuertemberg/calw/Verkauf/Gemeinsam/Inserieren/Private-IB/Gemeinsam/Super-Zins-Konditionen/3d-service/info.htm\nhttp://sunsite.informatik.rwth-aachen.de/LinuxArchives/redhat/releases/guinness/i386/en/dosutils/fips15c/restorrb/\nhttp://213.36.119.69/do/session/153002/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/connaitre/revue-presse_titres.html\nhttp://pub19.ezboard.com/uvinylangel.showPublicProfile?language=EN\nhttp://boeing_dude.tripod.com/id125_m.htm\nhttp://members.fortunecity.com/greatway1/gallery-pageother-0.htm\nhttp://www.searchtraffic.com/wsignup.php3?owor12\nhttp://www.staroriental.net/nav/soeg_c/ihf,acv,s0,194,陳慧琳.html\nhttp://www.jpc-music.com/5864555.htm\nhttp://oaziz.narod.ru/kuhn/uzb/sal_f1.html\nhttp://preview.egroups.com/message/4aromatherapy/1112\nhttp://www.luecos.de/webguides/reisen/travelpictures/europe\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d47/b47,8,be,29,29,,38,,be,38,\nhttp://www.chaos.dk/sexriddle/k/u/u/a/\nhttp://www.chaos.dk/sexriddle/k/u/u/d/\nhttp://student.monterey.edu/nr/nielsenadamp/campus/\nhttp://excite.de/gesundheit/katalog/3727\nhttp://www.ozemail.com.au/~jcai/page19.html\nhttp://www.ozemail.com.au/~jcai/page24.html\nhttp://www.hantsnet.co.uk/scrmxn/c23173.html\nhttp://www.fogdog.com/cedroID/ssd3040183334784/content/fan/subway_series/\nhttp://www.fogdog.com/cedroID/ssd3040183334784/boutique/arnette/\nhttp://www.fogdog.com/cedroID/ssd3040183334784/boutique/hi-tec/\nhttp://www.fogdog.com/cedroID/ssd3040183334784/boutique/marmot/\nhttp://ftpsearch.belnet.be/packages/CPAN/modules/by-module/Stat/ENNO/\nhttp://go1.163.com/_NTES/~yejingsong/03/y18/506.htm\nhttp://sinr.net/book/content/343/26710.html\nhttp://www.ramada.com/ctg/cgi-bin/Ramada/progpack/AAAksrACwAAABtrAAV\nhttp://library.bangor.ac.uk/search/aBoer,+J.+H.+de+(Jan+Hendrik),+1899-/aboer+j+h+de+jan+hendrik+1899/-5,-1,0,B/buttonframe&F=aboer+dirk+jan+den&1,1\nhttp://library.cuhk.edu.hk/search*chi/a三省堂(千代田區,+Tokyo,+Japan)/a%7B213024%7D%7B214d49%7D%7B213840%7D+%7B213458%7D%7B213073%7D%7B214c24%7D%7B213455%7D+tokyo+japan/-5,-1,0,B/browse\nhttp://ibm1.cicrp.jussieu.fr/ibmc/classref/ref/ISetCanvas--Style_DSC.htm\nhttp://amateur-alley.porncity.net/169/\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,1989/yid,5768630\nhttp://www.shopworks.com/index.cfm/action/mallcat/mallcatlevel/2/parentmallcat/6/userid/000056F0-2E26-19FE-AF65010C0A0A8CF2\nhttp://retailer.gocollect.com/do/session/1912760/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp\nhttp://news.novgorod.ru/news/2001/4/1/8/-1\nhttp://news.novgorod.ru/news/2001/4/3/8/-1\nhttp://sp201.unige.ch:49213/cxxdoc/classref/ref/ITimingTestStopwatch_DSC.htm\nhttp://netscape.digitalcity.com/boston/localexperts/profile.dci?screenName=PSYWU\nhttp://netscape.digitalcity.com/boston/localexperts/profile.dci?screenName=Mende67\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=17,2,26,33,23\nhttp://www.multicosm.com/facade/www.isinet.com/isilinks/isilinks.html\nhttp://kutschen.de/Schoner/Info-d/history/history/literature/\nhttp://troy.lib.sfu.ca/search/dengineering+research+periodicals/dengineering+research+periodicals/-5,-1,0,B/frameset&F=dengineering+research+grants+canada&3,,4\nhttp://member.nifty.ne.jp/y-shibata/pc/pch2.htm\nhttp://stocks.tradingcharts.com/stocks/charts/iops-bb/m\nhttp://www.kaos.dk/sexriddle/x/j/c/s/z/\nhttp://www.bioimages.org.uk/HTML/R138925.HTM\nhttp://pub22.ezboard.com/fawolpaintballfrm1.threadControl?topicID=82.topic\nhttp://www.incestpornstories.com/hot-hardcore-fuckingbanging/plus-sizewhale/body-shotstounge/fuckinghardcore/barely-legalbackseat/{gaylink}\nhttp://www.buybuddy.com/sleuth/27/1/1060904/5811/\nhttp://www.loisirs.ch/gtfmjv/9/nkrlua.html\nhttp://vorg1.subportal.com/sn/Utilities/File_Maintenance_and_Repair_Utilities/6387.html\nhttp://smartnet.tucows.com/winme/adnload/138584_30392.html\nhttp://ftpsearch.belnet.be/mirrors/src.doc.ic.ac.uk/usenet/usenet-by-hierarchy/comp/emacs/?D=A\nhttp://genforum.genealogy.com/cgi-genforum/forums/green.cgi?7578\nhttp://cio.cisco.com/warp/public/789/33.html\nhttp://www7.freeweb.ne.jp/diary/bru_dog/tk/\nhttp://www.chinabyte.com/staticpages/software/software_download/GRBA/software_download_23274_GRBA.html\nhttp://www.chinabyte.com/staticpages/software/software_download/GRBA/software_download_9599_GRBA.html\nhttp://www.seekon.com/L/US/IL/Abingdon\nhttp://freethemes.arrakis.es/skins/winamp/adnload/25359.html\nhttp://www.hig.se/(accessed,modified,remove_cookie,smallcaps,sqlquery)/~jackson/roxen/\nhttp://cn.egroups.com/message/SF-users/218\nhttp://cn.egroups.com/message/SF-users/235\nhttp://www.chaos.dk/sexriddle/r/f/y/c/\nhttp://www.chaos.dk/sexriddle/r/f/y/e/\nhttp://www.chaos.dk/sexriddle/r/f/y/g/\nhttp://yp.gates96.com/13/50/10/33.html\nhttp://yp.gates96.com/13/50/10/49.html\nhttp://yp.gates96.com/13/50/10/55.html\nhttp://yp.gates96.com/13/50/10/98.html\nhttp://yp.gates96.com/13/50/11/35.html\nhttp://yp.gates96.com/13/50/11/73.html\nhttp://yp.gates96.com/13/50/11/94.html\nhttp://yp.gates96.com/13/50/12/39.html\nhttp://yp.gates96.com/13/50/13/8.html\nhttp://yp.gates96.com/13/50/13/67.html\nhttp://yp.gates96.com/13/50/14/8.html\nhttp://yp.gates96.com/13/50/14/11.html\nhttp://yp.gates96.com/13/50/14/47.html\nhttp://yp.gates96.com/13/50/16/18.html\nhttp://yp.gates96.com/13/50/16/58.html\nhttp://yp.gates96.com/13/50/17/33.html\nhttp://yp.gates96.com/13/50/18/13.html\nhttp://yp.gates96.com/13/50/18/49.html\nhttp://yp.gates96.com/13/50/18/54.html\nhttp://yp.gates96.com/13/50/19/0.html\nhttp://cn.egroups.com/post/romtrade?act=reply&messageNum=3851\nhttp://members.fortunecity.com/toleransi/sorbonne.html\nhttp://ring.htcn.ne.jp/pub/lang/perl/CPAN/modules/by-module/PPM/MURRAY/?S=A\nhttp://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB5648.html\nhttp://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB7392.html\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53940/eus53960/eus54753/eus543189/eus550516/\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53940/eus53960/eus54753/eus543189/eus550528/\nhttp://shn.webmd.com/roundtable_printing/774674\nhttp://www.zi.unizh.ch/software/unix/statmath/sas/sasdoc/lgref/z0205140.htm\nhttp://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=16,12,3,13,5,6,9\nhttp://www.uni-duesseldorf.de/ftp/ftp/pf/share/fvwm-2.0.45/?S=A\nhttp://members.tripod.com/~PhyrePhox/mcse/70-088.htm\nhttp://extreme-dm.com/tracking/reports/dj/nph-ref1.cgi?tag=nimrood\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20040397/-5,-1,0,B/frameset&F=bp20040402&1,1\nhttp://209.0.220.240/spec/txve.htm\nhttp://209.0.220.240/spec/tyai.htm\nhttp://ftp.up.pt/Linux/Linus/net-source/www/clients/netscape/?M=A\nhttp://ftp.up.pt/Linux/Linus/net-source/www/clients/netscape/?D=A\nhttp://www.jobvillage.com/channel/jobs/health_care/nursing/licensed_practical_nurse/b.9505.g.1766.html\nhttp://www.zope.org/Members/stevea/CoadObjectModels/BackLinks/backlinks\nhttp://www.mairie-montreuil93.fr/ville_pratique/environ/energie/mve/media/?D=A\nhttp://member.shangdu.net/home2/chr/jishang/hongkong/inxg-6.html\nhttp://www.wild-dog.com/activity/touring/idx/page_18_1.html\nhttp://members.tripod.co.jp/susu/?M=A\nhttp://www.dulux.co.uk/UKRETAIL:623356687:DFinity.1QJiP4jMLco\nhttp://www.kordic.re.kr/~trend/Content326/agriculture04.html\nhttp://www.kordic.re.kr/~trend/Content326/agriculture09.html\nhttp://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mh-aix43\nhttp://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mh-elfalphapic\nhttp://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mt-x86pic\nhttp://www.ecatsbridge.com/BiB/static/sims/bbljuly99/00000101758612773F1.htm\nhttp://pub20.ezboard.com/faustralianslotcarreviewhoracing.showMessage?topicID=2.topic&index=47\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/games/exchess/pkg/DESCR\nhttp://homepage.renren.com/sandybay/help.htm\nhttp://no.egroups.com/post/oslosynth?act=reply&messageNum=634\nhttp://www.brio.de/BRIO.catalog/39fe2f940703266c273fd472aa7806a8/UserTemplate/2\nhttp://www.50megs.com/prettysenshi/captures/ep3/SMep3.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1999/11/05/CHORNEWS5VQ.html\nhttp://au.yahoo.com/Regional/U_S__States/California/Metropolitan_Areas/San_Francisco_Bay_Area/Entertainment_and_Arts/Restaurants/Coffee_and_Tea_Houses/\nhttp://www.niwl.se/WAIS/30002/30002360.htm\nhttp://www.infoscape.com.cn:8178/gb/content/2000-08/16/content_6082.htm\nhttp://link.fastpartner.com/do/session/600419/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php\nhttp://www.canit.se/(c1,f3,ftp,generellt,irc,mail)/support/\nhttp://citeseer.nj.nec.com/cidcontext/3787443\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380878/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp\nhttp://www.usq.edu.au/unit-1997/fullspec/51129s3x.htm\nhttp://worldres.lycos.com/script/gen_mr.asp?hotel_id=6354&n=1518\nhttp://www.members.aon.at/~kleindlp/neue_seite_4.htm\nhttp://210.169.76.95/html/tai_0043/bat_1180.html\nhttp://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=FOOTER/AAMSZ=468x60/ACC_RANDOM=262411779164\nhttp://www.service911.com/mvu/step/0,2632,6+34+90+23506+13880_4,00.html\nhttp://ftp.lip6.fr/pub11/NetBSD/NetBSD-current/src/usr.sbin/kvm_mkdb/Makefile\nhttp://www.bemi-immobilien.de/Private-IB/Startseite/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/immolink/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm\nhttp://wap.jamba.de/KNet/_KNet-BOC8j1-LFd-13bpy/showInfo-hilfe.de/node.0/cenv0b09a\nhttp://wap.jamba.de/KNet/_KNet-BOC8j1-LFd-13bq0/browse.de/node.0/cde7f1uou\nhttp://cnnews.sina.com/kwongzhou/china/2000/1026/2083022_2.html\nhttp://www.msb.malmo.se/search*swe/dFlygplanskonstruktion/dflygplanskonstruktion/-5,-1,0,B/frameset&F=dflygolyckor&4,,6\nhttp://home.hanmir.com/~100sun/joo4.htm\nhttp://www.szed.com/szsb/19990629/GB/default.htm\nhttp://www.szed.com/szsb/19990629/GB/4-NPCLASS.HTM\nhttp://www.szed.com/szsb/19990629/GB/7-NPCLASS.HTM\nhttp://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=15,24,26,25\nhttp://movies.exit.de/lichtsammler/images/tunnel/gross/sw_kb/?D=A\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=5,34,38\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,34,38\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=31,34,38\nhttp://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fgamp%2F1734\nhttp://de.excite.de/katalog/katalog/9231\nhttp://www-win.rusf.ru/esli/rubr/books/es0500di.htm\nhttp://www.jamba.de/KNet/_KNet-yjF8j1-8Gd-13cj6/browse.de/node.0/cde7f1uou\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/misc/lit/programs/misc/math/lit/athalie.html\nhttp://ftp.fi.debian.org/debian/dists/Debian2.2r0/contrib/binary-powerpc/interpreters/?S=A\nhttp://jupiter.u-3mrs.fr/~msc41www/releves/04350110.HTM\nhttp://ocean.ntou.edu.tw/search*chi/dDigital+modulation/ddigital+modulation/7,-1,0,E/frameset&F=ddigital+techniques+signal+processing&4,,0\nhttp://pub20.ezboard.com/fcharmingtailsresourcetradeyoursportscardshere.unsubscribeUnregisteredToTopic?topicID=43.topic\nhttp://www.kaos.dk/sexriddle/x/w/k/u/q/\nhttp://www.kaos.dk/sexriddle/x/w/k/u/t/\nhttp://216.205.158.3/smm/programs/CDG_Player/wwwboard/messages/27.html\nhttp://216.205.158.3/smm/programs/CDG_Player/wwwboard/messages/60.html\nhttp://fen.com/whatworks/review/edit/1,2560,1-9696-5539-0-45394,00.html\nhttp://yp.gates96.com/8/74/30/30.html\nhttp://yp.gates96.com/8/74/31/1.html\nhttp://yp.gates96.com/8/74/32/12.html\nhttp://yp.gates96.com/8/74/32/60.html\nhttp://yp.gates96.com/8/74/32/92.html\nhttp://yp.gates96.com/8/74/33/41.html\nhttp://yp.gates96.com/8/74/33/55.html\nhttp://yp.gates96.com/8/74/33/57.html\nhttp://yp.gates96.com/8/74/33/95.html\nhttp://yp.gates96.com/8/74/34/21.html\nhttp://yp.gates96.com/8/74/34/23.html\nhttp://yp.gates96.com/8/74/34/79.html\nhttp://yp.gates96.com/8/74/35/3.html\nhttp://yp.gates96.com/8/74/35/22.html\nhttp://yp.gates96.com/8/74/35/79.html\nhttp://yp.gates96.com/8/74/36/31.html\nhttp://yp.gates96.com/8/74/36/84.html\nhttp://yp.gates96.com/8/74/37/58.html\nhttp://yp.gates96.com/8/74/37/77.html\nhttp://yp.gates96.com/8/74/37/89.html\nhttp://yp.gates96.com/8/74/37/97.html\nhttp://yp.gates96.com/8/74/39/43.html\nhttp://yp.gates96.com/8/74/39/63.html\nhttp://yp.gates96.com/8/74/39/88.html\nhttp://www9.hmv.co.uk:5555/do/session/1347828/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html\nhttp://www9.hmv.co.uk:5555/do/session/1347828/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d80_sd0_pt0.html\nhttp://gladstone.uoregon.edu/~sme28057/arch181-202/assign2/?M=A\nhttp://cco.cisco.com/univercd/cc/td/doc/product/core/7206/7206ig/trble6ug.pdf\nhttp://210.32.1.18/goldbook/humor/mh/c/changgu/1/028.htm\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=17,28,24,31,11\nhttp://www.spiral.at/Katalog/Artikel/7561032/\nhttp://www.crutchfield.com/cgi-bin/S-Ql7dbZlSZa2/viewcart.asp\nhttp://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1b/shell_pants/\nhttp://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1j/oakley/\nhttp://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1l/day_packs/\nhttp://www.thestateofcolorado.com/pglblock.html\nhttp://www.staroriental.net/nav/soeg/ihf,adj,s0,259,Kristy+Yeung+Gung-Yu.html\nhttp://pcmcia.sourceforge.org/cgi-bin/HyperNews/get/pcmcia/toshiba/38.html\nhttp://sunsite.org.uk/public/public/packages/Dr-Fun/df9412/?N=D\nhttp://nt.mortgage101.com/partner-scripts/1144.asp?p=mig&pw=600\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/17/87050//C/1828104/3////25/N/MLTPAI\nhttp://130.80.29.3/content/houston/k-12/hanc/\nhttp://javatest.a-net.nl/exhibits/default.htm\nhttp://javatest.a-net.nl/museum_info/job_opportunities.asp\nhttp://books.hyperlink.co.uk/booklist/Alphabet_Workbook/Cheney/Martha/1565658396\nhttp://kobe.cool.ne.jp/orera/guestbook.html\nhttp://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/audio/\nhttp://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/editors/\nhttp://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/tk80/\nhttp://www.zdnet.de//news/artikel/1999/03/09001-wc.html\nhttp://neptune.guestworld.com/gear/gateway.cfm?action=private&owner=sitonga7\nhttp://www.de.lycos.de/dir/Reisen_und_Regionen/L%E4nder_und_St%E4dte/Deutschland/Schleswig-Holstein/St%E4dte_und_Orte/St%E4dte_und_Orte_P_bis_S/\nhttp://www.mirror.edu.cn/res/sunsite/pub/academic/music/album-reviews/1995/9-September/?M=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=213&discrim=176,11,57\nhttp://europa.eu.int/abc/doc/off/bull/el/9705/x085.htm\nhttp://europa.eu.int/abc/doc/off/bull/el/9705/x209.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=15,0+17,0-3,0-9,0\nhttp://www.ferien-immobilien.de/baden-wuertemberg/stuttgart/Verkauf/Gemeinsam/MarketingStrategie/Ferien-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm\nhttp://www.ferien-immobilien.de/baden-wuertemberg/stuttgart/Verkauf/Gemeinsam/MarketingStrategie/Ferien-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/Gemeinsam/impressum.htm\nhttp://www.chaos.dk/sexriddle/s/e/x/v/i/a/w/\nhttp://pub4.ezboard.com/fscarletstreethorroritalianstyle.showAddReplyScreenFromWeb?topicID=15.topic\nhttp://ftp.dti.ad.jp/pub/lang/CPAN/authors/id/P/PJ/PJF/\nhttp://www.highwired.net/Paper/EmailToFriend/1,2102,302-183023,00.html\nhttp://ftpsearch.belnet.be/mirror3/ftp.kde.org/pub/kde/Incoming/Attic/old/1.1.2/apps/ide/?D=A\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380877/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f\nhttp://expert.cc.purdue.edu/~steinfoc/assignment3/assig3.html\nhttp://www.wyborcza.com/Ascii/Raporty/Filmowa/277rap.html\nhttp://www.redhat.com/mirrors/LDP/LDP/LG/issue50/misc/pollman/?D=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=148&discrim=142,11,200\nhttp://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2ee602379b7e273fd47540f806e1/Catalog\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380836/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/createbroch.asp\nhttp://joy1.alpha-g.ne.jp/tree/user/a/amuro/2_index.shtml\nhttp://time.188.net/movie/star/taiwan/2/pic/image36.htm\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=25,1,36,31,11\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/audio/kdemultimedia11-i18n/Attic/pkg-comment?only_with_tag=RELEASE_2_2_7\nhttp://www.landfield.com/ftp/usenet/news.answers/bicycles-faq/?S=A\nhttp://wap.jamba.de/KNet/_KNet-puF8j1-aGd-13clg/browse.de/node.0/cenv0b09a\nhttp://www.empas.com/search/all.html?q=%C0%CC%B7%D3%B4%D9\nhttp://www.linux.com/networking/server/install/howto/website/developers/\nhttp://aecjobbank.com/texis/script/newjobs/+NwxBm6ev7I1wwwhmrmwxetiAw/jobdirectory.html\nhttp://www.egroups.com/message/ijtihadmk/5\nhttp://www.egroups.com/message/ijtihadmk/11\nhttp://www.realize.com/am67bd81.htm,qt=e784fe2f=2a38a234-7-da6e2d-0-0-0-3--\nhttp://www.realize.com/p643c81.htm,qt=e784fe2f=2a38a234-7-da6e80-0-0-0-3--\nhttp://moneysaver.net/netcall/?almktng\nhttp://www.agria.hu/bikersmeeting/archivum/talalkozo/foto/taj.cgi?15n\nhttp://link.fastpartner.com/do/session/600401/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/\nhttp://198.103.152.100/search*frc/aDidsbury,+Howard+F.,+1924-/adidsbury+howard+f+1924/-5,-1,0,B/frameset&F=adidier+marcel&1,,0\nhttp://198.103.152.100/search*frc/aDidsbury,+Howard+F.,+1924-/adidsbury+howard+f+1924/-5,-1,0,B/frameset&F=adidier+michel&1,,0\nhttp://www.medoc-ias.u-psud.fr:81/synoptic/gif/001020/?D=A\nhttp://shop.goto.com/compperiph/periph/cdrom/search/sidexside.jhtml?s=1&sort_up=LOW_PRICE\nhttp://excite.de/wirtschaft/katalog/1356\nhttp://excite.de/wirtschaft/katalog/2631\nhttp://www.areteoutdoors.com/channel/earth/caving/b.89.g.473.html\nhttp://www.areteoutdoors.com/channel/earth/caving/b.91.g.473.html\nhttp://bo.ole.com/actualidad/articulo/html/act13873.htm\nhttp://www.dulux.co.uk/UKRETAIL:446033260:DFinity.1QJiP4jMomdoclfieh\nhttp://www.linux.com/networking/network/release/sap/hardware/firewall/\nhttp://genforum.genealogy.com/cgi-genforum/forums/hendrix.cgi?430\nhttp://www.chaos.dk/sexriddle/s/p/w/c/\nhttp://198.103.152.100/search*frc/tCanada+in+the+21st+century.+II,+Resources+and+technology/tcanada+in+the+21st+century+ii+resources+and+technology/-5,-1,0,B/frameset&F=tcanada+in+the+21st+century+no+01&1,1\nhttp://books.hyperlink.co.uk/bookinfo/Sunk_Costs_and_Market_Structure/Sutton/John/0262193051\nhttp://members.tripod.com/theshavedbeaver/site2/s2laststand.html\nhttp://members.tripod.com/theshavedbeaver/site2/s2s1ep21.html\nhttp://www.ytmag.com/cgi-bin/redirect.cgi/602479760\nhttp://www18.freeweb.ne.jp/school/syodou/you005.htm\nhttp://www.fogdog.com/cedroID/ssd3040183334500/nav/products/featured_brands/2h/replica_jerseys/\nhttp://www.fogdog.com/cedroID/ssd3040183334500/nav/products/featured_brands/2h/replica_jerseys/4.html\nhttp://www.fogdog.com/cedroID/ssd3040183334500/crs/nvCZ/wld/fogdog_sports/champion/fan_memorabilia/apparel/vlade_divac_replica_jersey.html\nhttp://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5299.html\nhttp://www.bcbsal.org/Provider_Dir/pharmacy/state/Oregon/HILLSBORO/index_29061.html\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2066/b77,c,4d,469,469,1b65,1b65,,51,811,4d,51,811,,\nhttp://www.loisirs.ch/bbewxu/2/wofyff.html\nhttp://mitglied.tripod.de/Jag3/jag3b.htm\nhttp://linuxberg.starhub.net.sg/x11html/preview/9016.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/9062.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/9103.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/9820.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/10370.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/9965.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/10117.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/10129.html\nhttp://linuxberg.starhub.net.sg/x11html/preview/10152.html\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=150&discrim=251,11,3\nhttp://totalsports.aol.com/stats/bbo/int/20000624/tol.at.swb.game.html\nhttp://excite.de/gesundheit/katalog/41575\nhttp://bbs.csie.ntu.edu.tw/txt/Emprisenovel/ebooks/other/hsiao_yi/jqhy/007.txt\nhttp://www.memorialcup99.com/HockeyStLouisArchive/nov17_stl.html\nhttp://www.letsmusic.com/directory/theme/genre_each/1,1137,Z-ㄴ-124-2-2,00.asp\nhttp://rainforest.parentsplace.com/dialog/get/bedwetting/29/2.html?outline=-1\nhttp://www.volny.cz/j_medkova/p05.html\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2072/b77,c,4d,51,51,815,815,818,7d9,,51,7d9,818,,\nhttp://collection.nlc-bnc.ca/100/200/301/ccmd-ccg/ccmd_report-e/rpt1e.pdf\nhttp://cn.egroups.com/post/export-import-indonesia?act=forward&messageNum=595\nhttp://www.secinfo.com/$/SEC/Filing.asp?T=1zBgb.6t_9yc\nhttp://www.realize.com/am81.htm,qt=4619dc8c=279e650e-c-16fba7d-1-0-0-0--\nhttp://amadeus.siba.fi/doc/php3-ldap/html/features.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.ada-fetchrow.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.array-pop.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.current.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.ftp-size.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.getmyinode.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.gmdate.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.hw-getusername.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.icap-list-alarms.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.ifx-free-char.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.imap-reopen.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.is-link.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.is-string.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.mcal-event-set-recur-monthly-wday.html\nhttp://amadeus.siba.fi/doc/php3-ldap/html/function.mhash-get-block-size.html\nhttp://wwws.br-online.de/geld/boerse/980420/110001.html\nhttp://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100craftapple/\nhttp://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100craftcactus/\nhttp://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100petvetticks/\nhttp://www.maastrek.de/maas/d49da6854db9e797f212/1/0/1\nhttp://astro1.chungnam.ac.kr/NetBBS/Bbs.dll/astromov/lst/qqadm/1/zka/B2-kB2Bl/qqo/004D\nhttp://channel.cnnsi.com/basketball/college/2000/ncaa_tourney/west/news/2000/03/25/keady_ap/lg_keady_ap.html\nhttp://incmagazine.com/articles/details/0,3532,AGD5_ART13806_CNT56_GDE30,00.html\nhttp://incmagazine.com/research/details/0,3470,AGD5_CNT49_GDE30_RSC16754,00.html\nhttp://gatekeeper.dec.com/pub/linux/lorax/i386/misc/src/anaconda/balkan/CVS/\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd720350329\nhttp://www.proviser.co.uk/regional/towns/alford/street_maps/alpha_b.html\nhttp://www.fogdog.com/cedroID/ssd3040183255203/\nhttp://www.columbia.edu/~wl158/OCD.htm\nhttp://www.irishnews.com/Archive2000/29052000/international.html\nhttp://www.irishnews.com/Archive2000/29052000/sportinter.html\nhttp://38scbshop.freeyellow.com/download.html\nhttp://news.dinf.ne.jp/news/fj/rec/animation/msg01441.html\nhttp://datastore.tucows.com/winnt/adnload/5372_28388.html\nhttp://pages.infinit.net/limal/visage/chap17.htm\nhttp://www.hotelboulevard.com/fr/paris/standard/htmlc258073cfbe254c1722c86e0aec5f5da/sessionLang/ANG/search.html\nhttp://www.icopyright.com/1.1642.213678\nhttp://wiem.onet.pl/wiem/012aa2.html\nhttp://www.secinfo.com/dRRsz.9e.htm\nhttp://lily.nju.edu.cn/literature/cangshu/wx/wra/ysz/16.htm\nhttp://home.swipnet.se/~w-15978/\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.stanford.edu/dept/EIS/moral_responsibility.htm\nhttp://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.stanford.edu/dept/EIS/hardin_review.htm\nhttp://www.uni-duesseldorf.de/ftp/pf/share/flex-2.5.2/man/man1/?S=A\nhttp://mindit.netmind.com/proxy/http://www.ninds.nih.gov/health_and_medical/pubs/chronic_pain_htr.htm\nhttp://mindit.netmind.com/proxy/http://www.smalltime.com/notvictims/cutting.html\nhttp://www.peopledaily.co.jp/zdxw/7/19991231/19991231001085.html\nhttp://pokemonothin.8m.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/4638/\nhttp://www.chaos.dk/sexriddle/s/e/x/u/y/n/d/\nhttp://www.bestinfo.net.cn/bsti_kjhy/kyys/bjkyys/arim/technical.html\nhttp://www.leicos.de/webguides/fun_lifestyle/unterhaltung/43101.html\nhttp://209.207.239.212/bkindex/c1047/f1423.html\nhttp://cylis.lib.cycu.edu.tw/search*chi/tEncyclopaedia+of+mathematical+sciences+&%2359%3B+v.+65/tencyclopaedia+of+mathematical+sciences+v+++65/-17,-1,0,B/frameset&F=tencyclopaedia+of+mathematical+sciences+v+++48&1,1\nhttp://www.sanxia.net/beauty/Nanako/313.htm\nhttp://www.sanxia.net/beauty/Nanako/323.htm\nhttp://mirrortucows.technet.it/winme/adnload/138469_29790.html\nhttp://www.fogdog.com/cedroID/ssd3040183321970/nav/stores/walking/\nhttp://www.fogdog.com/cedroID/ssd3040183321970/customer_service/employment.html\nhttp://mirror.pku.edu.cn/www.berkeley.edu/ls.berkeley.edu/lscr/services/backups/UCBackup.html\nhttp://retailer.gocollect.com/do/session/1912804/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp\nhttp://www.uni-duesseldorf.de/ftp/pf/share/ddd-1.4d/man/man1/?M=A\nhttp://www.uni-duesseldorf.de/ftp/pf/share/ddd-1.4d/man/man1/?S=A\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.zdnet.com/special/stories/wireless/0,10676,2557092-8,00.html\nhttp://ftp.sunet.se/pub/os/FreeBSD/development/FreeBSD-CVS/ports/archivers/makeself/\nhttp://www.jamba.nl/KNet/_KNet-QYL8j1-2D4-pw4k/browse.nl/node.0/cde7f1uou\nhttp://www.discoveromaha.com/shared/health/adam/ency/imagepage/1090.000233.html\nhttp://home.dqt.com.cn/cgi-bin/push/setluntan?luntan=64\nhttp://sjsulib1.sjsu.edu:81/search/dbusiness+periodicals/-5,-1,1,B/frameset&dbusiness+vocational+guidance&2,,3\nhttp://www-d0.fnal.gov/d0dist/dist/releases/psim01.01.00/cft_tuple/VERSION\nhttp://pub3.ezboard.com/fmcdonaldscollectorsclubauctions.subscribeUnregisteredToTopic?topicID=136.topic\nhttp://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424027/957522583/Catalog/1301/001\nhttp://www.cs.kuleuven.ac.be/~java/docs/jdk1.3/docs/api/java/sql/class-use/DriverPropertyInfo.html\nhttp://www.buybuddy.com/sleuth/27/1/1060701/505427/\nhttp://web4.sportsline.com/u/football/nfl/players/splits/4451_split.htm\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/ports/alpha/packages-5-current/japanese/?M=A\nhttp://no.egroups.com/login.cgi?login_target=%2Fgroup%2Ftkd-full\nhttp://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/immolink/Gemeinsam/3d-service/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/MarketingStrategie/Strategie.htm\nhttp://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/immolink/Gemeinsam/3d-service/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm\nhttp://www.3wposter.com/czaja/czj2002.htm\nhttp://pub19.ezboard.com/fallamericanbaseballleagueplayersneeded.showMessage?topicID=6.topic\nhttp://ftp.uni-mannheim.de/info/OReilly/nutshell/practcpp/disk/doit/?N=D\nhttp://www02.geocities.co.jp/HeartLand-Kaede/4970/index2.htm\nhttp://www.selbstmachen.de/shops/pop/infotext/8008.htm\nhttp://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/unstable/contrib-jp/binary-alpha/doc/?D=A\nhttp://genforum.genealogy.com/cgi-genforum/forums/flynn.cgi?1004\nhttp://www.iwon.com/home/movies/movies_filmography_page/0,13178,Marguerite+Hickey,00.html\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=132028&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus65300/eus65303/eus77824/eus541028/eus168664/\nhttp://user.chollian.net/~iipuni/pds1/?M=A\nhttp://tucows.ciaoweb.it/winnt/adnload/73935_29937.html\nhttp://home2.keyciti.com/x2001/\nhttp://www.amateurplatinum.com/teenagerclique/fagbodyshots/elbow-greaseac/plus-sizemen/butt-fuckpartner/actionextreme/hitting-itendurance.html\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/vfs.txt?only_with_tag=LINUX-2_3_99_pre4\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/vfs.txt?only_with_tag=LINUX-2_3_17\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+18,0-0,0-3,0\nhttp://www.skaninforma.no/nord-troendelag/leksvik-h.htm\nhttp://194.128.65.4/pa/cm199798/cmwib/wb971115/nil.htm\nhttp://www.on.fuchu.or.jp/~oimatudo/englishmisomanzyu.htm\nhttp://map.ipc.co.jp/asp/onmap/connect/g-2/a-719/\nhttp://cherokee1.edgate.com/goucheres/ed_current.html\nhttp://www.online.kokusai.co.jp/Service/V0043594/wrd/G200/service/service.html\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,16,7\nhttp://binary.tucows.com/winnt/adnload/70807_30160.html\nhttp://binary.tucows.com/winnt/adnload/1422_28846.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/theroux.cgi?69\nhttp://rex.skyline.net/navigate.cgi?news,ice,women,resources,living\nhttp://umweb2.unitedmedia.com/creators/rugrats/archive/rugrats-20001015.html\nhttp://retailer.gocollect.com/do/session/1912824/vsid/2089/tid/2089/cid/621609/mid/1540/rid/1520/chid/2083/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/product_display/products/product_lines.asp\nhttp://retailer.gocollect.com/do/session/1912824/vsid/2089/tid/2089/cid/621609/mid/1540/rid/1520/chid/2083/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/clubhouse/suggestions.asp\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=146,7,19\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=146,7,231\nhttp://login.hq.cricinfo.org/link_to_database/ARCHIVE/1996-97/OD_TOURNEYS/SINWS/SINWS-MATCHES/SL_ZIM_SINWS_ODI5_03SEP1996_DAILY_MR.html\nhttp://preview.egroups.com/group/God_Calling\nhttp://www.fogdog.com/cedroID/ssd3040183340945/nav/products/outlet/1b/sunglasses_optics/\nhttp://www.fogdog.com/cedroID/ssd3040183340945/nav/products/outlet/1c/dc/\nhttp://www.fogdog.com/cedroID/ssd3040183340945/customer_service/contact_us.html\nhttp://link.fastpartner.com/do/session/600424/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/itjobbank.php\nhttp://link.fastpartner.com/do/session/600424/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/index.php\nhttp://pub2.ezboard.com/fteamnexgenforumhelpnexgennexencodestudio.unsubscribeUnregisteredToTopic?topicID=29.topic\nhttp://www02.geocities.co.jp/SiliconValley-PaloAlto/1763/event/ni2k/ni2k.htm\nhttp://yp.gates96.com/7/89/60/35.html\nhttp://yp.gates96.com/7/89/61/4.html\nhttp://yp.gates96.com/7/89/61/38.html\nhttp://yp.gates96.com/7/89/62/80.html\nhttp://yp.gates96.com/7/89/63/8.html\nhttp://yp.gates96.com/7/89/63/16.html\nhttp://yp.gates96.com/7/89/65/10.html\nhttp://yp.gates96.com/7/89/65/42.html\nhttp://yp.gates96.com/7/89/65/54.html\nhttp://yp.gates96.com/7/89/65/88.html\nhttp://yp.gates96.com/7/89/65/98.html\nhttp://yp.gates96.com/7/89/66/26.html\nhttp://yp.gates96.com/7/89/66/55.html\nhttp://yp.gates96.com/7/89/67/28.html\nhttp://yp.gates96.com/7/89/68/67.html\nhttp://yp.gates96.com/7/89/69/63.html\nhttp://yp.gates96.com/7/89/69/73.html\nhttp://www.mediko.de/news/alt.support.eating-disord/19944.html\nhttp://www.mediko.de/news/alt.support.eating-disord/19975.html\nhttp://www13.cplaza.ne.jp/musicnavi/i-mode/id/KICS113.html\nhttp://home.beseen.com/community/alienpilot/AbductionTheory.html\nhttp://www.hausbau-finder.de/festpreis/anbieter/A11/A11_05_eg.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=10,15,200\nhttp://ftp.eecs.umich.edu/pub/NetBSD/packages/1.3.3/mac68k/kde/\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_49/chapter_028/rcw_49_28_065.txt\nhttp://fi.egroups.com/login.cgi?login_target=%2Fmessages%2Fdfbl%2F77\nhttp://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/src/sys/arch/sgimips/dev/?D=A\nhttp://retailer.gocollect.com/do/session/1912781/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp\nhttp://providenet.tucows.com/win2k/adnload/136128_47180.html\nhttp://providenet.tucows.com/win2k/adnload/38527_29571.html\nhttp://no.egroups.com/dir/1/16/476/32069/32291/104313/293356\nhttp://www.playease.com/et/beauty/img/lingmuyamei/lmam043.htm\nhttp://202.99.23.201/gb/special/node_484.htm\nhttp://202.99.23.201/gb/special/node_518.htm\nhttp://202.99.23.201/gb/special/node_531.htm\nhttp://ring.jec.ad.jp/archives/NetBSD/NetBSD-current/pkgsrc/fonts/acroread-chsfont/README.html\nhttp://www.gaiax.com/~dengeki/lineb.html?haru_da_pump\nhttp://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB27p/qqatt/^\nhttp://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB23t/qqatt/^\nhttp://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB23r/qqatt/^\nhttp://my.egroups.com/group/uk-mac-dev\nhttp://www.f20.parsimony.net/forum35990/archiv.htm\nhttp://findmail.com/group/Costumers\nhttp://variety.studiostore.com/browse/PEOPLE/b.FAVORITES%20PEOPLE/s.ZaC1r6Q6\nhttp://www.chinawolf.com/~warson/japan/chichuan/cat/jiangzuo/020.htm\nhttp://www.branchen-vermittler.de/Branchen/Mecklenburg/Mecklenburg_Region_3/Neustrelitz/kopf_neustrelitz.html\nhttp://www.xmission.com/(art,ftp,geek,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,privacy,stuffiuse)/~bill/links.html\nhttp://www.cs.helsinki.fi/linux/linux-kernel/Year-1999/1999-49/1283.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/umcotk/zxlqox.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/tgiotk/uftfwm.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/purotk/qxxotk.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/purotk/sewotk.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/purotk/sjkfwm.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/hazfwm/llhetk.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/bvtctk/eptrik.html\nhttp://www.ecotec.co.jp/view/arc/f/free/33/rvkptk/syurzz.html\nhttp://library.cuhk.edu.hk/search*chi/a��頦��哨蕭嚙賢��鞈�嚙踝���+1934-/a{214b33}{213021}{214451}+1934/-5,-1,0,B/frameset&F=a{214b33}{213021}{213c63}&6,,7\nhttp://mitglied.tripod.de/~haubentaucher/bilder.htm\nhttp://amc.hollywood.com/maltin/v/valleyofthekings-1954.htm\nhttp://amc.hollywood.com/maltin/v/vannuysblvd-1979.htm\nhttp://amc.hollywood.com/maltin/v/venicevenice-1992.htm\nhttp://amc.hollywood.com/maltin/v/vicesquad-1931.htm\nhttp://amc.hollywood.com/maltin/v/violette-1978.htm\nhttp://amc.hollywood.com/maltin/v/voiceofthewhistler-1945.htm\nhttp://amc.hollywood.com/maltin/v/vulturethe-1967.htm\nhttp://members.tripod.co.jp/hatahata/hikoki/?D=A\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-23/07/972255822718.txt\nhttp://www.mapion.co.jp/custom/AOL/admi/23/23105/matsubaracho/5chome/index-43.html\nhttp://search.chollian.net/cgi-bin/filter.cgi?cid=1109&g=11\nhttp://search.chollian.net/cgi-bin/filter.cgi?cid=1109&p=5\nhttp://www.linux.com/networking/network/new/website/applications/business/\nhttp://www.fogdog.com/cedroID/ssd3040183313598/nav/products/w_golf/1s/ball_retrievers/\nhttp://www.fogdog.com/cedroID/ssd3040183313598/nav/products/w_golf/1t/biographical_books/\nhttp://rammstein.sonicnet.com/artists/news/1090.jhtml\nhttp://rammstein.sonicnet.com/allmusic/ai_bio.jhtml?ai_id=1090\nhttp://www.ycwb.com.cn/gb/2000/08/18/ycwb/gnxw/7.html\nhttp://www.vorlesungen.uni-osnabrueck.de/informatik/c98/code/19/?D=A\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-23/11/972270515716.txt\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380869/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry1.asp\nhttp://uk.biz.yahoo.com/mutual_funds/micropal/lf/fund/008776/properf.html\nhttp://troy.lib.sfu.ca/search/aasociacion+argentina+de+ciencias+naturales/aasociacion+argentina+de+ciencias+naturales/-5,-1,0,E/frameset&F=aasociacion+argentina+de+ciencias+naturales&1,,0\nhttp://uk.dir.yahoo.com/Regional/U_S__States/Virginia/Metropolitan_Areas/Charlottesville_Metro/Travel_and_Transportation/Accommodation/Caravan_Parks_and_Camp_Sites/\nhttp://uk.dir.yahoo.com/Regional/U_S__States/Virginia/Metropolitan_Areas/Charlottesville_Metro/Travel_and_Transportation/Accommodation/Hotels/\nhttp://library.cwu.edu/search/cQA76.73.A35+T75/cqa+++76.73+a35+t75/-5,-1,0,B/marc&F=cqa+++76.73+a8+j33+1985&1,1,\nhttp://www.tages-anzeiger.ch/sport/nagano/0902/olymp_art4.htm\nhttp://finance.sina.com.cn/globe/globe/2000-03-16/23725.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-0,3\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-9,3\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-19,0\nhttp://temps-libre.promovacances.net/D02/BH/BDANE/voyagealacarte.htm\nhttp://sunsite.org.uk/public/computing/networks/internet/ietf/98aug/imapext-attendees-98aug.txt\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=124&discrim=221,178\nhttp://cpan.nettuno.it/authors/Ilya_Zakharevich/modules/FreezeThaw-0.41.readme\nhttp://cpan.nettuno.it/authors/Ilya_Zakharevich/modules/Math-Pari-2.001700.readme\nhttp://ricoh.co.jp/SHOGI/emate/tanigawa/tume0069a.html\nhttp://troy.lib.sfu.ca/search/dlatin+america+periodicals/dlatin+america+periodicals/-5,-1,0,B/marc&F=dlatin+america+pest+control+industry&1,1,\nhttp://moviestore.zap2it.com/browse/MOVIES/COLLECTI/s.w2bwHPkr\nhttp://moviestore.zap2it.com/browse/MOVIES/BUNDLE/s.w2bwHPkr\nhttp://moviestore.zap2it.com/browse/MOVIES/BOWL/s.w2bwHPkr\nhttp://moviestore.zap2it.com/browse/MOVIES/JEWELRY/s.w2bwHPkr\nhttp://moviestore.zap2it.com/browse/MOVIES/COMIC/s.w2bwHPkr\nhttp://www9.hmv.co.uk:5555/do/session/1347801/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/Top_Navigation_Bar/top_banner.html\nhttp://www3.adobe.com/type/browser/F/P_103/F_FRAK-70005000.html\nhttp://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/j-l/kewl.txt\nhttp://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/j-l/ledges-z.txt\nhttp://park.org:8888/Japan/CSK/hyakki/zukan/turezure/ue/c_tirizuka.html\nhttp://pub4.ezboard.com/fscarletstreetfilmmusic.unsubscribeUnregisteredToTopic?topicID=54.topic\nhttp://tucows.niagara.com/win2k/adnload/37364_29149.html\nhttp://wap.jamba.de/KNet/_KNet-JGG8j1-eGd-13cre/showInfo-special1.de/node.0/cde7f1uou\nhttp://www.personalmd.com/news/n0706062122.shtml\nhttp://ds.dial.pipex.com/tmc/ConfPresentations/s2000/NetworkingJ/msconfig.htm\nhttp://calcul.si.uji.es/Programes/SAS/proc/z0325264.htm\nhttp://www.kaos.dk/sexriddle/x/m/k/i/i/\nhttp://ring.toyama-ix.net/archives/lang/perl/CPAN/clpa/1998-08/?N=D\nhttp://ring.toyama-ix.net/archives/lang/perl/CPAN/clpa/1998-08/?S=A\nhttp://www.spiral.at/Katalog/Artikel/0879070/\nhttp://homepage1.nifty.com/nao~nao/pages/profile.html\nhttp://www.ferien-immobilien.de/friesland/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/3d-service/Allgemeine-IB/Startseite/\nhttp://www.ferien-immobilien.de/friesland/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/3d-service/Gemeinsam/erreichenPartner/email3d.htm\nhttp://www.thestateofcolorado.com/m1jerepair.html\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1989/0/MNTENNIS.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1989/0/MNTRASH.HTM\nhttp://www.shop4magazines.com/pg004752.htm\nhttp://www.shop4magazines.com/pg005070.htm\nhttp://www.shop4magazines.com/pg005084.htm\nhttp://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fsocalscan%2F5293\nhttp://www.incestpornstories.com/hot-hardcore-fuckingbanging/bootsfeet-/hitting-itsmacking/{hardcorelink}\nhttp://www.columbia.edu/~mkn12/Nominees.html\nhttp://www.generation-formation.fr/pdetail.htm---o21zAo06Rxo0Ol9A074fo6s0Md6jIHeNHhIeOkn2ApvFFo6s5dfexiWo2W81N3OsPeaR2VeuzlEdRsR3djaPfdNjfco41qrfP6sWd6wuCoz4ZteOgKHekLVSePl8vNhiWhAhcgNAPfVbdsNhJl.htm\nhttp://tiscover.at/1Root/Kontinent/6/Staat/7/Bundesland/20/Ort/212/Sonstige_Sportstaette/276591/Bericht/berw...1.html\nhttp://fi.egroups.com/message/meterreader/207?source=1\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.arthritis.org/http_-2www.alameda-vcf.org/http_-2www.microsoft.com/ie/ie.htm\nhttp://www.fortunecity.com/lavender/deathrace/251/billy.html\nhttp://ftpsearch.belnet.be/packages/CPAN/modules/by-module/AppleII/?N=D\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,34,29,16,25\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=21,34,29,16,25\nhttp://www.ftp.uni-erlangen.de/pub/unix/BSD/FreeBSD/FreeBSD-current/ports/irc/tirc/\nhttp://retailer.gocollect.com/do/session/1912840/vsid/1696/tid/1696/cid/604361/mid/1540/rid/1420/chid/1725/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/company_info/about.asp\nhttp://retailer.gocollect.com/do/session/1912840/vsid/1696/tid/1696/cid/604361/mid/1540/rid/1420/chid/1725/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/company_info/terms_and_conditions.asp\nhttp://businessrecorder.com/story/S0024/S2401/S2401113.htm\nhttp://arabia.com/article/0,1690,Sports|20732,00.html\nhttp://www.worldmedicus.com/servlet/Controller/$7006041629a50000.sj_viewa/\nhttp://myhome.naver.com/chocobini/company.html\nhttp://builder.hw.net/frmMessageFront/1,1079,'1~21~0~8~1~2348~9590',00.html\nhttp://pub1.ezboard.com/fcrossstitchcorner504212000shepherdsbushretreat.showAddReplyScreenFromWeb?topicID=48.topic&index=5\nhttp://www.parisnights.de/fanfiction/archive/authors/andrews/stories/bright.htm\nhttp://198.103.152.100/search*frc/cCA1+MPR+NS51+98Y25/cca1+mpr+ns51+98y25/7,-1,0,E/2browse\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus51605/eus147927/eus269761/eus269920/eus918452/\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus51605/eus147927/eus269761/eus269920/eus918493/\nhttp://www.computing.net/cgi-bin/report.pl/windows95/wwwboard/forum/3119.html|21\nhttp://www.kiarchive.ru:8093/pub/misc/books/Camelot/Vasilyev/Forgotten_Road/\nhttp://yp.gates96.com/4/9/50/30.html\nhttp://yp.gates96.com/4/9/51/1.html\nhttp://yp.gates96.com/4/9/51/88.html\nhttp://yp.gates96.com/4/9/51/92.html\nhttp://yp.gates96.com/4/9/52/3.html\nhttp://yp.gates96.com/4/9/52/53.html\nhttp://yp.gates96.com/4/9/52/67.html\nhttp://yp.gates96.com/4/9/53/25.html\nhttp://yp.gates96.com/4/9/53/50.html\nhttp://yp.gates96.com/4/9/53/96.html\nhttp://yp.gates96.com/4/9/54/40.html\nhttp://yp.gates96.com/4/9/54/57.html\nhttp://yp.gates96.com/4/9/54/77.html\nhttp://yp.gates96.com/4/9/55/57.html\nhttp://yp.gates96.com/4/9/55/71.html\nhttp://yp.gates96.com/4/9/56/1.html\nhttp://yp.gates96.com/4/9/56/98.html\nhttp://yp.gates96.com/4/9/57/6.html\nhttp://yp.gates96.com/4/9/57/90.html\nhttp://yp.gates96.com/4/9/58/91.html\nhttp://yp.gates96.com/4/9/58/96.html\nhttp://yp.gates96.com/4/9/59/29.html\nhttp://yp.gates96.com/4/9/59/33.html\nhttp://yp.gates96.com/4/9/59/84.html\nhttp://yp.gates96.com/4/9/59/97.html\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1997/5/0/900308/\nhttp://www2.odn.ne.jp/~cao20970/affair/oh/ha-342\nhttp://www2.odn.ne.jp/~cao20970/affair/oh/ha-346\nhttp://wap.jamba.de/KNet/_KNet-lvH8j1-nGd-13d1j/browse.de/node.0/cdzqggtyb\nhttp://www.danielwebster.org//hallofusa/thestampact/HENDRICKFISHER.COM//thestampact/\nhttp://news.cn.tom.com/maya/cnnav/01/item/2000_09/309490.shtml\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.paducahrotary.org/pbcmap.htm\nhttp://polygraph.ircache.net:8181/services/design/http_-2www.paducahrotary.org/mainpage.htm\nhttp://www.debian.org.cn/Bugs/db/23/23547.html\nhttp://www.debian.org.cn/Bugs/db/54/54172.html\nhttp://www.adetti.iscte.pt/ADETTI/Security/HowTo/Java/jdk1.2.1/docs/guide/beans/spec/beancontext.fm7.html\nhttp://www.users.qwest.net/~campputz/page413.htm\nhttp://flybird.soyou.edu.cn/item/2000-07-31/164671.html\nhttp://www.cognigen.net/corporate/trainers.cgi?full-timer\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041143.1.1156359481\nhttp://ramdam.com/art/k/katerine.htm\nhttp://ramdam.com/art/k/krapulax.htm\nhttp://aleph.tau.ac.il:4501/ALEPH/eng/ATA/AAM/AAM/SET-MAIL///1249009\nhttp://online.linux.tucows.com/conhtml/adnload/8973_2294.html\nhttp://www.arrakis.es/~lady_cel/frcontenf.htm\nhttp://online.linux.tucows.com/conhtml/adnload/39034_1349.html\nhttp://online.linux.tucows.com/conhtml/adnload/51651_2248.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=23,0+14,0-13,0-13,0\nhttp://www.ferien-immobilien.de/Westerwald/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Inserieren/Private-IB/Gemeinsam/suche.htm\nhttp://www.linux.com/networking/network/it/alternative/developers/Apple/\nhttp://www.sanxia.net/beauty/Nanako/418.htm\nhttp://www-usa8.cricket.org/link_to_database/ARCHIVE/1999-2000/OTHERS+ICC/NORTHANTS_IN_WI/ARTICLES/\nhttp://gds.cc.va.us:8888/Mcn%3dMELISSA%20BACK,%20ou%3dSV.CC.VA.US,%20ou%3dFaculty%20%26%20Staff,%20o%3dvccs,%20c%3dUS\nhttp://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/luedinghausen/Verkauf/Ferien-IB/Startseite/Gemeinsam/erreichenPartner/Versteigerungen-IB/Startseite/IIM-Teil/Startseite/froben.htm\nhttp://198.103.152.100/search*frc/dIndustrial+relations+--+Germany+(West)+--+History/dindustrial+relations+germany+west+history/-5,-1,0,B/frameset&F=dindustrial+relations+germany+dictionaries&1,,0\nhttp://secure.danysoft.com/asp/dany.tienda/892496425/Catalog\nhttp://yp.gates96.com/13/57/90/23.html\nhttp://yp.gates96.com/13/57/90/91.html\nhttp://yp.gates96.com/13/57/91/68.html\nhttp://yp.gates96.com/13/57/92/22.html\nhttp://yp.gates96.com/13/57/92/49.html\nhttp://yp.gates96.com/13/57/92/73.html\nhttp://yp.gates96.com/13/57/93/75.html\nhttp://yp.gates96.com/13/57/94/16.html\nhttp://yp.gates96.com/13/57/94/62.html\nhttp://yp.gates96.com/13/57/94/99.html\nhttp://yp.gates96.com/13/57/95/19.html\nhttp://yp.gates96.com/13/57/95/34.html\nhttp://yp.gates96.com/13/57/95/84.html\nhttp://yp.gates96.com/13/57/96/22.html\nhttp://yp.gates96.com/13/57/96/24.html\nhttp://yp.gates96.com/13/57/96/52.html\nhttp://yp.gates96.com/13/57/96/70.html\nhttp://yp.gates96.com/13/57/97/39.html\nhttp://yp.gates96.com/13/57/97/55.html\nhttp://yp.gates96.com/13/57/98/4.html\nhttp://yp.gates96.com/13/57/98/41.html\nhttp://yp.gates96.com/13/57/98/58.html\nhttp://yp.gates96.com/13/57/98/98.html\nhttp://yp.gates96.com/13/57/98/99.html\nhttp://yp.gates96.com/13/57/99/79.html\nhttp://carriage.de/Schoner/Info-d/history/literature/literature/\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/lit/computers/misc/unitest/misc/computers/programs/simple/simple.html\nhttp://kwic.tucows.com/partners/flyswat/get_acx.html\nhttp://sp201.unige.ch:49213/cxxdoc/ioc/concepts/c2g2rcsm.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=0,2-0,1-21,0+9,1\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=10,2,183\nhttp://firstweb.tucows.com/win2k/adnload/58783_28760.html\nhttp://www.boerseninfos.de/dynamic/ak/mk/news/719350-20000830-104827.html\nhttp://baseball.mainichi.co.jp/life/family/syuppan/wakaru/wakaru-j/10/01/01.html\nhttp://helios.nlib.ee/search*est/dsÃÄ©jalised+blokid/dsw~ajalised+blokid/-5,-1,0,B/exact&F=dsw~ajalised+konfliktid&1,58/limit\nhttp://helios.nlib.ee/search*est/dsÃÄ©jalised+blokid/dsw~ajalised+blokid/-5,-1,0,B/frameset&F=dsw~ajalised+konfliktid&11,,58\nhttp://lexicon.linux.tucows.com/conhtml/adnload/8642_2088.html\nhttp://ua.php.net/manual/es/function.pg-fieldisnull.php\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041132.1.4352706945\nhttp://www.civila.com/guitar/chat/desenredada/juegos/\nhttp://sunsite.org.uk/public/pub/packages/info-mac/pilot/?N=D\nhttp://www.aelita.net/products/products/support/news/Reg/Subscribe/company/contact/default.htm\nhttp://cn.egroups.com/message/newsclips/295\nhttp://www.jornada.unam.mx/2000/sep00/000922/oriente-y.htm\nhttp://members.tripod.co.jp/mosokke/dubair01ghe.html\nhttp://202.99.23.245/zdxw/21/20000217/200002172112.html\nhttp://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php\nhttp://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php\nhttp://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php\nhttp://iant.subportal.com/sn/Utilities/System_Maintenance_and_Repair_Utilities/2128.html\nhttp://polygraph.ircache.net:8181/client/http_-2www.scubaring.com/http_-2www.aaainvestments.com/http_-2www.primenet.com/~stmmoon/stmbik.html\nhttp://itcareers.careercast.com/texis/it/itjs/+wwwBme89D86qxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwww5rmePdwwwBrmeZpwww/morelike.html\nhttp://itcareers.careercast.com/texis/it/itjs/+awwBme3AT+6ezqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwww5rmeEdwwwBrmeZpwww/jobpage.html\nhttp://itcareers.careercast.com/texis/it/itjs/+vwwBme26D86eSqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwwwGzmwwww5rmeEdwwwBrmeZpwww/morelike.html\nhttp://www.starcities.com/usa/ca/carlsbad/\nhttp://www.3w-geschichten.de/PlumptreGeorge/PlumptreGeorge1857938461.htm\nhttp://residence.educities.edu.tw/goyen/\nhttp://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.primenet.com/~mmfact/http_-2www.microsoft.com/ie/download/\nhttp://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.primenet.com/~mmfact/http_-2www.infohwy.com/odframes.html\nhttp://www.linux.com/networking/network/management/industry/internet/services/\nhttp://cn.egroups.com/message/ruosulista/1176\nhttp://ftp.jp.debian.org/debian/dists/unstable/main/binary-i386/tex/?M=A\nhttp://de.excite.de/bildung/katalog/17722\nhttp://de.excite.de/bildung/katalog/17893\nhttp://de.excite.de/bildung/katalog/17879\nhttp://www.emerchandise.com/browse/BUFFYTHEVAMP/PIN/b.TV%20BUFFYTHEVAMP/s.Xpiu5LCZ\nhttp://variety.studiostore.com/browse/VARIETY/CAMERA/s.dmZspziz\nhttp://carriage.de/Schoner/Sammlungen/models/info-e/Info-d/\nhttp://www.gazeta.com/Iso/Plus/Kraj/Prezyden/Ak/700kwa.html\nhttp://www.linux.com/networking/network/networking/developers/operating_system/Debian/\nhttp://online.linux.tucows.com/conhtml/adnload/8808_32695.html\nhttp://149.221.91.10/news/lokales/wermelskirchen/\nhttp://opac.lib.rpi.edu/search/avirgin+vision+limited/7,-1,0,B/frameset&avirginia+cooperative+fisheries+research+unit&1,1\nhttp://www.emerchandise.com/browse/DISNEY-FAM/ACTIONFI/b.FAVORITES%20KIDSSTUFF%20DISNEY-FAM/s.erm2bF5K\nhttp://polit.kulichki.net/moshkow/PXESY/GORIN/\nhttp://polit.kulichki.net/moshkow/COPYRIGHT/stolyarov.txt\nhttp://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/textproc/rman/pkg/DESCR\nhttp://cgi.www.4tourism.com/uk/wareham65426.html\nhttp://cgi.www.4tourism.com/uk/wareham22477.html\nhttp://www.ccnet.com/affif/_themes/sumipntg/_vti_cnf/?M=A\nhttp://web.tin.it/regionesardegna/ital/lavpubb/bandi_contratti/schema5_1q.htm\nhttp://ring.htcn.ne.jp/archives/text/CTAN/macros/latex/contrib/other/apa/\nhttp://ftpsearch.belnet.be/packages/CPAN/modules/by-module/Callback/Callback-1.02.readme\nhttp://iant.subportal.com/sn/Utilities/Misc__Utilities/12800.html\nhttp://yp.gates96.com/2/51/0/86.html\nhttp://yp.gates96.com/2/51/1/72.html\nhttp://yp.gates96.com/2/51/2/10.html\nhttp://yp.gates96.com/2/51/3/7.html\nhttp://yp.gates96.com/2/51/3/50.html\nhttp://yp.gates96.com/2/51/4/90.html\nhttp://yp.gates96.com/2/51/5/6.html\nhttp://yp.gates96.com/2/51/5/42.html\nhttp://yp.gates96.com/2/51/5/50.html\nhttp://yp.gates96.com/2/51/6/49.html\nhttp://yp.gates96.com/2/51/8/12.html\nhttp://yp.gates96.com/2/51/8/50.html\nhttp://yp.gates96.com/2/51/9/82.html\nhttp://yp.gates96.com/2/51/9/94.html\nhttp://archive.soccerage.com/s/fr/09/37602.html\nhttp://archive.soccerage.com/s/fr/09/39203.html\nhttp://ftp.ring.gr.jp/archives/NetBSD/NetBSD-1.4.1/pmax/binary/security/\nhttp://www.yorosiku.net:8080/-_-http://www.us-japan.org/otr/\nhttp://support.dell.com/docs/storage/dlt1/ug/sp/jumpers.htm\nhttp://moviestore.zap2it.com/browse/MOVIES/MOUSEPAD/s.uiIfdEiW\nhttp://moviestore.zap2it.com/browse/MOVIES/STANDUP/s.uiIfdEiW\nhttp://focusin.ads.targetnet.com/ad/id=animeart&opt=cin&cv=210&uid=972942857\nhttp://www.emerchandise.com/browse/SATNIGHTLIVE/SWEATSHI/s.pJ2FFfba\nhttp://www.realize.com/p5dee81.htm,qt=e784fe2f=2a38a234-e-1ade986-0-0-0-3--\nhttp://support.tandy.com/support_audio/doc30/30780.htm\nhttp://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/umg/chlabel2.html\nhttp://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/umg/chprin12.html\nhttp://www.es.co.nz/~rotary.home.html\nhttp://www.excelsior.com.mx/9802/980217/nac18.html\nhttp://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/biblioteca1/1316779952/prevarticle\nhttp://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/stable/non-free-jp/binary-alpha/net/?D=A\nhttp://guest/forestpatholog/diseases/annosus.html\nhttp://guest/forestpatholog/diseases/rot.html\nhttp://no.egroups.com/message/readbygrade3/2029\nhttp://www.cybercd.de/artist/Fabri,+Stafke.htm\nhttp://www.jamba.de/KNet/_KNet-zQG8j1-hGd-13cwi/admLogin.de/node.0/cenv0b09a\nhttp://www.digitaldrucke.de/(aktuell,computer,marktplatz,sense,tausch)/_fort/html/themen/computer/computer.htm\nhttp://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/potato/contrib-jp/source/news/?S=A\nhttp://strategis.ic.gc.ca/sc_indps/recboats/frndoc/3g.html\nhttp://ftp.eq.uc.pt/software/unix/Linux/redhat/redhat-6.2/i386/doc/gsg/figs/rpmlite/?M=A\nhttp://www.judds-resort.com/judds/Lake-Winni-pike-lodge/upload/upload/photo/fallphoto/boat/12.html\nhttp://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/cnwctl/\nhttp://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/mailwrapper/\nhttp://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/traceroute6/\nhttp://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/yppoll/\nhttp://pelit.saunalahti.fi/.3/linuxberg/conhtml/preview/8785.html\nhttp://www.asahi-net.or.jp/~rz3n-snd/kitakan/kamiyosida.html\nhttp://www.chaos.dk/sexriddle/s/e/x/q/x/k/l/\nhttp://www.chaos.dk/sexriddle/s/e/x/q/x/k/y/\nhttp://ring.jec.ad.jp/archives/text/CTAN/dviware/umddvi/libcompat/?S=A\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/OCtIhwK0_lecIJU9yN87J4DTFWqXdztVO8nfP1zxdwq79fkod_IhHN3-iHbCrlaXZ5ATMMc_Gb5Zt_RdtVOloKJ1Z7DGqz2vE9vOjESyOqryETO-lNa0NWtCoTJH_QGCfq7ss5VGa1MO3iLryKZ2gIVI_Lonfx_bC9m7\nhttp://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/D-tI2p4N__5TTgffRqVzdrKNYFZc3jj2Oatw29gt_YiNBPXUlYZaTA2ndP2CrwlrdiMS8YzPKxDR7Vp4ZBqD3d5o3MwYrYIxk31YsVtP3yFS2bLdZcBGLKdyNUc9yYgvGsGMXAMcEAUJPjtRqUVzDpuhHzS6V_U76I6G\nhttp://my.egroups.com/subscribe/enemapix\nhttp://yp.gates96.com/0/23/40/60.html\nhttp://yp.gates96.com/0/23/40/82.html\nhttp://yp.gates96.com/0/23/41/67.html\nhttp://yp.gates96.com/0/23/43/71.html\nhttp://yp.gates96.com/0/23/43/75.html\nhttp://yp.gates96.com/0/23/44/64.html\nhttp://yp.gates96.com/0/23/44/73.html\nhttp://yp.gates96.com/0/23/44/84.html\nhttp://yp.gates96.com/0/23/45/19.html\nhttp://yp.gates96.com/0/23/46/9.html\nhttp://yp.gates96.com/0/23/46/26.html\nhttp://yp.gates96.com/0/23/46/37.html\nhttp://yp.gates96.com/0/23/46/92.html\nhttp://yp.gates96.com/0/23/47/39.html\nhttp://yp.gates96.com/0/23/47/52.html\nhttp://yp.gates96.com/0/23/48/52.html\nhttp://yp.gates96.com/0/23/49/12.html\nhttp://yp.gates96.com/0/23/49/90.html\nhttp://retailer.gocollect.com/do/session/1912812/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/index.asp\nhttp://retailer.gocollect.com/do/session/1912812/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp\nhttp://203.93.50.148:2222/*0110http://www.snweb.com/gb/people_daily/2000/10/20/i1020004.htm\nhttp://cn.egroups.com/messages/romtrade/5024\nhttp://members.tripod.co.jp/medo/_private/\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0325.htm\nhttp://tucows.pi.be/winnt/diskcnt_license.html\nhttp://millennium.fortunecity.com/ruthven/144/5041.htm\nhttp://news.pchome.com.tw/ttv/finance/20000616/\nhttp://library.bangor.ac.uk/search/dEcology+--+Poland+--+Periodicals/decology+poland+periodicals/-17,-1,0,B/frameset&F=decology+north+america+congresses&1,1\nhttp://www.could.be/travel/north_america/united_states/lodge_2.htm\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?huntington::195.html\nhttp://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/immolink/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/3d-service/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://members.tripod.co.jp/snowmen/?D=A\nhttp://ftp.unicamp.br/pub/FAQ/sf/alt_history/part6\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380884/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp\nhttp://grid9.linux.tucows.com/x11html/adnload/9444_3744.html\nhttp://www.linux.com/networking/network/communications/tools/web/support/\nhttp://www.linux.com/networking/network/communications/tools/web/alternative/\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=132030&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL\nhttp://yp.gates96.com/14/77/20/1.html\nhttp://yp.gates96.com/14/77/20/3.html\nhttp://yp.gates96.com/14/77/20/32.html\nhttp://yp.gates96.com/14/77/20/55.html\nhttp://yp.gates96.com/14/77/21/7.html\nhttp://yp.gates96.com/14/77/22/20.html\nhttp://yp.gates96.com/14/77/22/26.html\nhttp://yp.gates96.com/14/77/22/50.html\nhttp://yp.gates96.com/14/77/23/63.html\nhttp://yp.gates96.com/14/77/23/96.html\nhttp://yp.gates96.com/14/77/25/53.html\nhttp://yp.gates96.com/14/77/26/8.html\nhttp://yp.gates96.com/14/77/26/32.html\nhttp://yp.gates96.com/14/77/27/0.html\nhttp://yp.gates96.com/14/77/27/55.html\nhttp://yp.gates96.com/14/77/27/78.html\nhttp://yp.gates96.com/14/77/28/8.html\nhttp://yp.gates96.com/14/77/28/53.html\nhttp://yp.gates96.com/14/77/28/57.html\nhttp://yp.gates96.com/14/77/28/99.html\nhttp://yp.gates96.com/14/77/29/96.html\nhttp://mirror.nucba.ac.jp/mirror/FreeBSD/FreeBSD-stable/ports/cad/xcircuit/files/?D=A\nhttp://pub3.ezboard.com/BBSForum.showForumSearch?boardName=jenxforum&forumName=jenxforumfrm0\nhttp://genforum.genealogy.com/cgi-genforum/forums/hi.cgi?415\nhttp://elib.zib.de/pub/opt-net/msc/msc-90-xx/90c15/v93w20n4\nhttp://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/frameset&F=adittman+richard+h+coaut&1,,0\nhttp://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/frameset&F=adittmar+jorge&1,1\nhttp://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/exact&F=adivis+jan&1,4\nhttp://www.doc.ic.ac.uk/~gwsb98/bucket/Wine-20001026/etc/?D=A\nhttp://news.fm365.com/xinwen/guoji/20000531/72641.htm\nhttp://www.newquestcity.com/templates/eventout.cfm?nqc=TN0730\nhttp://www.rhena.de/kempinsk1.htm\nhttp://www.jamba.de/KNet/_KNet-tkL8j1-PGd-13dss/showInfo-wir.de/node.0/cenvd8eze\nhttp://www.jamba.de/KNet/_KNet-tkL8j1-PGd-13dsv/browse.de/node.0/ceo0fdeye\nhttp://cpan.nitco.com/modules/by-module/String/BLCKSMTH/?N=D\nhttp://www.digitaldrucke.de/(hilfe,nuernberg)/_fort/html/themen/computer/soft/links/intuit.htm\nhttp://www.jeunesdocteurs.com/fplr/56/08.html\nhttp://simf1.tripod.com/Rio.htm\nhttp://www.mirror.kiev.ua:8083/paper/1998/17/1251/people.htm\nhttp://web2.sportsline.com/u/baseball/mlb/2000PO_stats/tpSTLw.htm\nhttp://www15.freeweb.ne.jp/art/charukun/yusuke.htm\nhttp://map.ipc.co.jp/asp/onmap/r/new/g-24/f-905972/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380882/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp\nhttp://www.webcrawler.com/education/arts_and_humanities/visual_arts/art_history/c19th/arts_and_crafts/mackintosh_cr/structures/\nhttp://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/http_-2www.linkstar.com/home/partners/marketlink-international-inc\nhttp://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/ECA2.htm\nhttp://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/http_-2www.intac.com/~dversch/catalog.html\nhttp://excite.de.netscape.com/kunst/katalog/24315\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/KhhIzVYqtXJlJzGPqrqzbJbUw7ERB8P7PSm9mTaj3BkJF6tLfllGlz2yKgLweoM1LPKLdHjjKv8zfb9tb2yojpTmzt6264ZE3V9vWzxY1mZnhDOG1vlwPrnwH5OCJM6C98fbjgZX66II\nhttp://mirror.nucba.ac.jp/mirror/Netscape/netscape6/french/6_PR2/windows/win32/?S=A\nhttp://www.linux.com/networking/server/install/howto/red_hat/package/\nhttp://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/proof/972959618--\nhttp://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=97&Count=60&Expand=152\nhttp://i-mode.kakiko.com/deaitomo/mag/magurox/1405b.html\nhttp://www.ring.gr.jp/pub/NetBSD/arch/amiga/snapshot/20000115-1.4P/binary/security/\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=18,0+20,0-17,0-0,0\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/anoncvs.html?annotate=1.2&sortby=rev\nhttp://ftp.jp.debian.org/debian/dists/woody/non-free/binary-sh/hamradio/?M=A\nhttp://netscape.complete-skier.com/resorts/survey/submit.asp?ResortID=772\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=9,17,2,16,5,14\nhttp://www.egroups.com/messages/zingiber/238\nhttp://www.umr.edu/~rhall/class/sap/sap8/demo.html\nhttp://209.207.239.212/bkindex/c1043/f1202.html\nhttp://se.egroups.com/message/ackmud/104\nhttp://school.educities.org/card/cug55.html\nhttp://school.educities.org/card/wgl.html\nhttp://school.educities.org/card/a77125.html\nhttp://school.educities.org/card/apple6128.html\nhttp://school.educities.org/card/c369852.html\nhttp://school.educities.org/card/cges4216.html\nhttp://school.educities.org/card/cges6307.html\nhttp://school.educities.org/card/eaa.html\nhttp://school.educities.org/card/f129235832.html\nhttp://school.educities.org/card/g1546.html\nhttp://school.educities.org/card/h223422022.html\nhttp://school.educities.org/card/lemon6112.html\nhttp://school.educities.org/card/st6408.html\nhttp://www.dulux.co.uk/UKRETAIL:1243142410:DFinity.1QJiP4jRACol\nhttp://www.iagora.com/pages/bbaddpost/::bb_id=148:mid=43302:thread_id=8185:parent_id=43302::lang=de\nhttp://www.iagora.com/pages/bbaddpost/::bb_id=148:mid=43431:thread_id=8185:parent_id=43431::lang=de\nhttp://www.egroups.com/message/intelligent_humor/875\nhttp://club.telepolis.com/klvinbc/fotosb.htm\nhttp://plat.debian.or.jp/debian/dists/woody/non-free/binary-mips/editors/?D=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,63\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,237\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,120\nhttp://www.jamba.de/KNet/_KNet-_tJ8j1-AGd-13ddq/browse.de/node.0/cdel3j591\nhttp://immihelpdownloads.subportal.com/sn/Utilities/System_Analysis_Utilities/2980.html\nhttp://dwp.bigplanet.com/crestinginc/discussion/edit.nhtml\nhttp://dwp.bigplanet.com/crestinginc/discussion/list.nhtml?profile=discussion\nhttp://194.128.65.4/pa/cm199900/cmwib/wb991127/ahead.htm\nhttp://61.128.218.34/book/hhsh/wu/wolongsheng/jiangxue/055.htm\nhttp://gd.cnread.net/cnread1/wgwx/t/tuwen/kxj/035.htm\nhttp://gd.cnread.net/cnread1/wgwx/t/tuwen/kxj/041.htm\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/50110\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/51530\nhttp://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/51510\nhttp://www.yorku.ca/org/yusa/who99/wh02.html\nhttp://www1.onelist.com/message/ar8200/3350\nhttp://www.kodak.se/US/en/corp/features/kern/jodi/index.shtml\nhttp://cafe3.daum.net/Cafe-bin/Bbs.cgi/semtle15pds/rnw/zka/B2-kB27k\nhttp://my.egroups.com/messages/dcfwriters/187?expand=1\nhttp://link.fastpartner.com/do/session/600414/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php\nhttp://www.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/20/Ort/108147/Bauernhof/315126/Homepage/f_homepage...2.html\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/gnut/patches/?D=A\nhttp://www.mtranslations.cz/40/cs/dictionary/dictionary_index.html\nhttp://pub10.ezboard.com/BBSSystem.handleLoginCheck?action=forgotPassword&boardName=alakazamslair\nhttp://tour.stanford.edu/cgi/locate3.prl/139.6/jMtlo\nhttp://www.shopworks.com/index.cfm/action/search/userid/00042DDE-2F63-19FE-9038010B0A0ADCF2\nhttp://thestar.com/back_issues/ED20001004/life/20000820LFE01_AH-BATH.html\nhttp://thestar.com/back_issues/ED20001004/life/20000818LFE01_LI-DEPRESS.html\nhttp://thestar.com/back_issues/ED20001004/life/20000806LFE01_AH-DAHLIAS.html\nhttp://www.hole.kommune.no/hole/journweb.nsf/7e180336094ef23a412568cd004a5093/466e7592a4c6c7ccc12568e3004402e8!Navigate&To=Prev\nhttp://mailthat.subportal.com/sn/Multimedia_and_Graphics/Graphics_Editors/3752.html\nhttp://www.gbnf.com/genealogy/rockwel4/html/d0014/I6348.HTM\nhttp://www.lookforforestry.com/catalog/FORSALE/FORKLIFT/JCB/930RTFL/\nhttp://www.espl.org/mearscol/pagendxs/stockley/d1828.htm\nhttp://in.egroups.com/messages/eyecandy/1290\nhttp://in.egroups.com/message/eyecandy/1264\nhttp://in.egroups.com/message/eyecandy/1271\nhttp://www.ferien-immobilien.de/bayern/deggendorf/Verkauf/Exklusiv-IB/Startseite/3d-service/Gemeinsam/Immolink/Gemeinsam/vertriebspartner.htm\nhttp://linux99.inrialpes.fr/linux/RPM/redhat/6.2/i386/Distribs.html\nhttp://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=4,13,11,10\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex04/jwb97/?S=A\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2509069\nhttp://www.scifi.com/bboard/browse.cgi/1/5/545?lnum=4223\nhttp://www.fogdog.com/cedroID/ssd3040183304719/customer_service/\nhttp://www.fogdog.com/cedroID/ssd3040183304719/nav/products/winter_sports/1b/suits/\nhttp://www.gpul.org/ftp/lang/java/JDK/jdk1.1.6-docs/api/java.lang.Math.html\nhttp://www.gpul.org/ftp/lang/java/JDK/jdk1.1.6-docs/api/java.lang.IncompatibleClassChangeError.html\nhttp://www.staroriental.net/nav/soeg/ihf,aai,n2,418,Electric+Wave+Girl+1998.html\nhttp://www.parentsplace.com/expert/lactation/basics/qa/0,3459,5757,00.html\nhttp://www.francetrade.fr/opcvm/details/4/44200.html\nhttp://www.francetrade.fr/opcvm/details/4/42876.html\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?phillippines::319.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380860/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-photoworld.com/photoworld.asp?lang=f\nhttp://ftp.eq.uc.pt/software/unix/Linux/docs/HOWTO/translations/italian/distributions/?M=A\nhttp://store1.europe.yahoo.com/brink2/2000074017704.html\nhttp://store1.europe.yahoo.com/brink2/2000073276003.html\nhttp://www.cbe21.com.cn/xueke/dili/jiaoxuezs/ziliaojn/tupianhc/i0733.htm\nhttp://www.networkpatternmatching.com/inventory/L/Limoges-American/Limoges-American-Tea-Rose-(Green).html\nhttp://www.networkpatternmatching.com/inventory/L/Limoges-American/Limoges-American-Toledo-Delight-(Sand).html\nhttp://ftp.debian.org/dists/sid/non-free/binary-hppa/games/?M=A\nhttp://www.angelfire.com/vt/kAoZzZ\nhttp://yp.gates96.com/14/28/60/15.html\nhttp://yp.gates96.com/14/28/60/17.html\nhttp://yp.gates96.com/14/28/60/41.html\nhttp://yp.gates96.com/14/28/60/75.html\nhttp://yp.gates96.com/14/28/60/83.html\nhttp://yp.gates96.com/14/28/60/87.html\nhttp://yp.gates96.com/14/28/61/96.html\nhttp://yp.gates96.com/14/28/62/12.html\nhttp://yp.gates96.com/14/28/62/28.html\nhttp://yp.gates96.com/14/28/62/45.html\nhttp://yp.gates96.com/14/28/62/74.html\nhttp://yp.gates96.com/14/28/63/24.html\nhttp://yp.gates96.com/14/28/63/45.html\nhttp://yp.gates96.com/14/28/64/33.html\nhttp://yp.gates96.com/14/28/65/84.html\nhttp://yp.gates96.com/14/28/66/28.html\nhttp://yp.gates96.com/14/28/66/49.html\nhttp://yp.gates96.com/14/28/67/15.html\nhttp://yp.gates96.com/14/28/67/17.html\nhttp://yp.gates96.com/14/28/67/92.html\nhttp://yp.gates96.com/14/28/67/95.html\nhttp://yp.gates96.com/14/28/68/10.html\nhttp://yp.gates96.com/14/28/69/20.html\nhttp://yp.gates96.com/14/28/69/64.html\nhttp://yp.gates96.com/14/28/69/74.html\nhttp://www.cs.kuleuven.ac.be/documentation/Sun/WorkShop/html_docs/c-plusplus/stdlibcr/deq_4164.htm\nhttp://no.egroups.com/message/Holiday-Best/571?source=1\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/G1hIPcWIQWr-i3fHpjDuaPPPdDR9n25II-MFpjX9vR_df0A3ukwPXLd19bYe7oxRH5Zr5z3G_wJnwM6gAVSOlRUN-p5MKYEBVJa1T-GaZS44Z98yjSST2LfXzEdc9Xqp8W0jRiNL6iAX\nhttp://msn.expedia.co.uk/wg/Asia/China/P31642.asp\nhttp://www.angelfire.com/fl2/gulfcoastsoftball/images/?N=D\nhttp://www.greenleaves.com/bookcat/gb_0879513802.html\nhttp://cn.egroups.com/post/Digitrends_Daily?act=reply&messageNum=210\nhttp://www.bookhome.net/wuxia/hzlz/li/031.html\nhttp://gb.toget.com.tw/intro/game_action/game_action_click/19990804_3190_dl.html\nhttp://www.mbnet.mb.ca/gray/cgrcc.html\nhttp://www.civila.com/noticias/chat/logos/juegos/esgratis/logos/index.html-ssi\nhttp://www.ytmag.com/cgi-bin/redirect.cgi/1197948180\nhttp://debian.tod.net/debian/dists/sid/contrib/binary-arm/admin/?M=A\nhttp://haste.co.kr/www.amaquest.com.tw/support.htm\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483376&chr=A\nhttp://ads.neoseeker.com/remoteclick/GB972959289/\nhttp://urawa.cool.ne.jp/whoinside/cg/cgframe2.htm\nhttp://excite.de/bildung/katalog/33148\nhttp://plat.debian.or.jp/debian-archive/dists/Debian-2.0/hamm/binary-m68k/news/\nhttp://wwwpriv.uni-koblenz.de:81/~admin/Doku/HtmlTutor/tcdkc.htm\nhttp://platsbanken.amv.se/kap/text/62/000907,150090,120901,40,1427050362.shtml\nhttp://216.35.79.131/sites/gunits/022140u.html\nhttp://www.hotelboulevard.com/fr/paris/standard/htmle55cd396d0d1450ad1eddadf65bd6574/sessionLang/ANG/prov/browse/cp/75011/resultatSearch.html\nhttp://www.ftp.uni-erlangen.de/cgi-bin/view/pub/unix/Linux/MIRROR.KDE/unstable/apps/README\nhttp://www.ftp.uni-erlangen.de/pub/unix/Linux/MIRROR.KDE/unstable/apps/network/\nhttp://www.ycwb.com.cn/gb/2000/04/28/dnzk/itkx/3.html\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/guestbook/http_-2www.nmpinc.com/cfiguest.htm\nhttp://www.our-home.org/giulianovallemani/success.htm\nhttp://retailer.gocollect.com/do/session/1912838/vsid/2312/tid/2312/cid/573127/mid/1020/rid/2147/chid/2210/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlZe5ofpLqjXLpl4/url/http://www.gocollect.com/product_display/products/product_lines.asp\nhttp://binary.tucows.com/win2k/adnload/60913_29719.html\nhttp://www.allhealth.com/kickbutt/qa/0,4801,6565_168263-1,00.html\nhttp://library.cuhk.edu.hk/search*chi/tChinese+history+series.+[Motion+picture]/tchinese+history+series/-5,1,1,B/frameset&F=tchinese+history+index+to+learned+articles+1902+1962&1,1,\nhttp://cafe4.daum.net/Cafe-bin/Bbs.cgi/culturalistpds/lst/qqeq/1/zka/B2-kB27p\nhttp://lib1.nippon-foundation.or.jp/1997/0012/contents/086.htm\nhttp://members.tripod.com/~theernest/lit/long.html\nhttp://de.excite.de/auto/katalog/13030\nhttp://www.szinfo.com/book/ke/fam/nk1/wlsf/001.htm\nhttp://www.backflip.com/members/cquinn/466730/sort=1/\nhttp://130.158.208.53/WWW/PDB2/PCD4711/htmls/49.html\nhttp://astronomysite.com/mapug1/15/msg15752.htm\nhttp://astronomysite.com/mapug1/15/msg15922.htm\nhttp://astronomysite.com/mapug1/15/msg15970.htm\nhttp://astronomysite.com/mapug1/12/msg12909.htm\nhttp://astronomysite.com/mapug1/9/msg9909.htm\nhttp://astronomysite.com/mapug1/7/msg7248.htm\nhttp://astronomysite.com/mapug1/7/msg7288.htm\nhttp://astronomysite.com/mapug1/7/msg7300.htm\nhttp://astronomysite.com/mapug1/7/msg7277.htm\nhttp://astronomysite.com/mapug1/3/msg3386.htm\nhttp://astronomysite.com/mapug1/0/msg898.htm\nhttp://astronomysite.com/mapug1/2/msg2146.htm\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/x11-fm/systemg/pkg/Attic/DESCR\nhttp://www.posterwelt.de/byers/bye2506.htm\nhttp://www.5a8.com/book/wg/zpj/f/fajieyefu/huimie/003.htm\nhttp://www.5a8.com/book/wg/zpj/f/fajieyefu/huimie/015.htm\nhttp://businessrecorder.com/story/S0015/S1510/top\nhttp://sunsite.org.uk/Mirrors/ftp.microsoft.com/bussys/winnt/winnt-public/fixes/usa/nt351/hotfixes-postsp5/sec-fix/?S=A\nhttp://sunsite.org.uk/Mirrors/ftp.microsoft.com/bussys/winnt/winnt-public/fixes/usa/nt351/hotfixes-postsp5/sec-fix/readme.txt\nhttp://www.angelfire.com/ky/dodone/HistJ.html\nhttp://www.cricinfo.com/link_to_database/ARCHIVE/1997-98/WI_IN_PAK/WI_IN_PAK_NOV-DEC1997_WI-SQUAD.html\nhttp://www.egroups.com/message/-Girlhelp-/3251\nhttp://www.egroups.com/message/-Girlhelp-/3268\nhttp://202.130.244.3/wuliwangye/help/help.htm\nhttp://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/mirror.html\nhttp://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s20ghinelli.html\nhttp://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s25dress.html\nhttp://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s30wen.html\nhttp://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/slc41email.html\nhttp://guardian.co.uk/Print/0,3858,3889048,00.html\nhttp://genforum.genealogy.com/mccallum/messages/187.html\nhttp://genforum.genealogy.com/mccallum/messages/192.html\nhttp://genforum.genealogy.com/mccallum/messages/133.html\nhttp://genforum.genealogy.com/mccallum/messages/95.html\nhttp://genforum.genealogy.com/mccallum/messages/82.html\nhttp://genforum.genealogy.com/mccallum/messages/30.html\nhttp://dekooi.tucows.com/win2k/adnload/37333_29427.html\nhttp://dekooi.tucows.com/win2k/adnload/37624_29418.html\nhttp://dekooi.tucows.com/win2k/preview/139483.html\nhttp://www.zurich-schweiz.ch/static/it/peraziende/grandiimprese/riskmanagement/procedere_con_metodo/gestione_del_rischio/\nhttp://cn.egroups.com/login.cgi?login_target=%2Fmessage%2Fcertdev%2F373\nhttp://www.angelfire.com/pa2/DreamAvs/\nhttp://www.madisonmag.com/sh/entertainment/stories/entertainment-20000713-013454.html\nhttp://variety.studiostore.com/browse/WHATSNEW/SHIRT/b.FAVORITES%20WHATSNEW/s.GqXR0UHu\nhttp://variety.studiostore.com/browse/WHATSNEW/MUG/b.FAVORITES%20WHATSNEW/s.GqXR0UHu\nhttp://www.ecs.soton.ac.uk/~ecc/teaching/java/ExampleCode/Chapter10/s03/\nhttp://ftp.nacamar.de/pub/NetBSD/packages/1.4/alpha/cross/?M=A\nhttp://www.he.ctc.org.cn/ctc2/news/internet/develop/news0413-7.htm\nhttp://www.he.ctc.org.cn/ctc2/news/internet/invest/news0523-4.htm\nhttp://www.he.ctc.org.cn/ctc2/news/internet/invest/news0514-1.htm\nhttp://www.he.ctc.org.cn/ctc2/news/internet/politics/news0518-1.htm\nhttp://www.linux.com/networking/network/applications/industry/trade_show/internet/\nhttp://www.linux.com/networking/network/applications/industry/trade_show/Motorola/\nhttp://www.linux.com/networking/network/applications/industry/trade_show/distro/\nhttp://iinet.tukids.tucows.com/mac/5-8/macmulti58_license.html\nhttp://www.leg.wa.gov/pub/rcw%20-%20text/title_48/chapter_098/rcw_48_98_005.txt\nhttp://universal.eud.com/1999/02/28/28304AA.shtml\nhttp://www.firstview.com/WRTWfall97/MAX_MARA/P033.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/SOSIAALI-+JA+TERVEYSALA/tietoverkot/suositukset/tietotekniikka/sanat/getdoc.akM?document_id=479\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/SOSIAALI-+JA+TERVEYSALA/tietoverkot/suositukset/tietotekniikka/sanat/www/\nhttp://ns.studenti.to.it/~s86852/applets/tetris.htm\nhttp://www.egroups.com/message/grebel-list/1014\nhttp://emedici.net/www.homesbyavi.com/canadian_site/communities/evergreen/evergreen.html\nhttp://ring.toyama-ix.net/pub/net/wu-ftpd/wu-ftpd/binaries/?N=D\nhttp://ring.nii.ac.jp/archives/text/CTAN/support/vmspell/?N=D\nhttp://ftpsearch.belnet.be/packages/CPAN/modules/by-authors/John_Macdonald/CHECKSUMS\nhttp://students.depaul.edu/~eephrem/piazza123\nhttp://students.depaul.edu/~eephrem/maqdoomi.html\nhttp://ftp.unina.it/pub/Unix/KDE/stable/2.0/distribution/deb/?D=A\nhttp://www.dulux.co.uk/UKRETAIL:1433075516:DFinity.1QJiP4jMofi7bof\nhttp://yp.gates96.com/14/20/10/26.html\nhttp://yp.gates96.com/14/20/10/34.html\nhttp://yp.gates96.com/14/20/10/63.html\nhttp://yp.gates96.com/14/20/11/36.html\nhttp://yp.gates96.com/14/20/11/73.html\nhttp://yp.gates96.com/14/20/12/93.html\nhttp://yp.gates96.com/14/20/13/42.html\nhttp://yp.gates96.com/14/20/13/44.html\nhttp://yp.gates96.com/14/20/14/9.html\nhttp://yp.gates96.com/14/20/15/62.html\nhttp://yp.gates96.com/14/20/15/77.html\nhttp://yp.gates96.com/14/20/16/52.html\nhttp://yp.gates96.com/14/20/16/70.html\nhttp://yp.gates96.com/14/20/16/83.html\nhttp://yp.gates96.com/14/20/17/91.html\nhttp://yp.gates96.com/14/20/17/98.html\nhttp://yp.gates96.com/14/20/18/8.html\nhttp://yp.gates96.com/14/20/18/73.html\nhttp://yp.gates96.com/14/20/19/38.html\nhttp://yp.gates96.com/14/20/19/42.html\nhttp://yp.gates96.com/14/20/19/56.html\nhttp://www.wco.com/~havok/wellington.html\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bbm0019678/7,-1,0,E/frameset&F=bbm0019685&1,1\nhttp://cdrom.zeelandnet.nl/elfsound/archief.htm\nhttp://businessrecorder.com/story/S0055/S5527/top\nhttp://www.private-immobilien-boerse.de/DominikanischeRep/verkauf/Versteigerungen-IB/Startseite/Gemeinsam/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/IIM-Teil/Startseite/froben.htm\nhttp://ring.nii.ac.jp/archives/lang/perl/CPAN/doc/manual/html/pod/perlfunc/utime.html\nhttp://yp.gates96.com/14/21/10/71.html\nhttp://yp.gates96.com/14/21/11/15.html\nhttp://yp.gates96.com/14/21/12/55.html\nhttp://yp.gates96.com/14/21/12/58.html\nhttp://yp.gates96.com/14/21/13/94.html\nhttp://yp.gates96.com/14/21/14/7.html\nhttp://yp.gates96.com/14/21/14/12.html\nhttp://yp.gates96.com/14/21/14/32.html\nhttp://yp.gates96.com/14/21/14/96.html\nhttp://yp.gates96.com/14/21/15/3.html\nhttp://yp.gates96.com/14/21/15/51.html\nhttp://yp.gates96.com/14/21/16/32.html\nhttp://yp.gates96.com/14/21/16/87.html\nhttp://yp.gates96.com/14/21/17/19.html\nhttp://yp.gates96.com/14/21/17/31.html\nhttp://yp.gates96.com/14/21/18/15.html\nhttp://yp.gates96.com/14/21/18/68.html\nhttp://yp.gates96.com/14/21/19/56.html\nhttp://cafe2.daum.net/Cafe-bin/Bbs.cgi/kjbugopds/lst/qqa/f/zka/B2-kB2Rt\nhttp://legalminds.lp.findlaw.com/list/courtinterp-spanish/frm04580.html\nhttp://legalminds.lp.findlaw.com/list/courtinterp-spanish/frm04611.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/sweden.cgi?5207\nhttp://variety.studiostore.com/main/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.VfgR3aEr\nhttp://variety.studiostore.com/help/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.VfgR3aEr\nhttp://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/x11-clocks/xalarm/patches/Attic/patch-aa?only_with_tag=RELEASE_2_2_8\nhttp://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/013.htm\nhttp://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/022.htm\nhttp://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/024.htm\nhttp://ftp.unina.it/pub/Amiga/NetBSD/NetBSD-current/xsrc/xc/lib/xkbfile/?N=D\nhttp://202.99.23.245/zdxw/17/20000217/200002171734.html\nhttp://sunsite.org.uk/packages/netbsd/NetBSD-current/pkgsrc/net/batchftp/files/\nhttp://www.highwired.net/Activity/PrintArticle/0,1640,1326-186648,00.html\nhttp://phpbuilder.net/forum/archives/1/2000/10/1/104426?&print_mode=1\nhttp://www.cognos.co.uk/de/vertriebspartner/vertriebspartner_plz.html\nhttp://citeseer.nj.nec.com/cidcontext/3974259\nhttp://fi.egroups.com/message/free-classifieds/4556?source=1\nhttp://genforum.genealogy.com/cgi-genforum/forums/epler.cgi?2\nhttp://no.egroups.com/post/relations_iVillage?act=reply&messageNum=5\nhttp://198.103.152.100/search*frc/lHD69+P75H84/lhd+++69+p75+h84/-5,-1,0,E/frameset&F=lhd+++69+p75+k47+1984&1,1\nhttp://www.4positiveimages.com/4positiveimages/921456486/UserTemplate/2\nhttp://haha.3322.net/donghua/agui/adi/6.htm\nhttp://mediate.magicbutton.net/do/session/625591/vsid/4573/tid/4573/cid/88043/mid/2247/rid/2383/chid/3527/url/http://www.winesmart.com/CaseDetails.asp?idCase=66\nhttp://www.lettera.de/tp/deutsch/inhalt/lis/8676/1.html\nhttp://www.citybrazil.com.br/sc/regioes/joinville/expressoes.htm\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/www/food/worse_is_better.html?sortby=date\nhttp://yp.gates96.com/7/45/60/13.html\nhttp://yp.gates96.com/7/45/61/3.html\nhttp://yp.gates96.com/7/45/61/60.html\nhttp://yp.gates96.com/7/45/62/37.html\nhttp://yp.gates96.com/7/45/62/48.html\nhttp://yp.gates96.com/7/45/62/70.html\nhttp://yp.gates96.com/7/45/64/9.html\nhttp://yp.gates96.com/7/45/64/33.html\nhttp://yp.gates96.com/7/45/64/43.html\nhttp://yp.gates96.com/7/45/64/55.html\nhttp://yp.gates96.com/7/45/65/14.html\nhttp://yp.gates96.com/7/45/65/48.html\nhttp://yp.gates96.com/7/45/65/57.html\nhttp://yp.gates96.com/7/45/66/27.html\nhttp://yp.gates96.com/7/45/67/51.html\nhttp://yp.gates96.com/7/45/68/12.html\nhttp://yp.gates96.com/7/45/68/78.html\nhttp://yp.gates96.com/7/45/69/25.html\nhttp://www.msb.malmo.se/search*swe/aHarley,+Robert/aharley+robert/-5,-1,0,B/browse\nhttp://www.superdownloads.com.br/linkinvalido.cfm?ID=748\nhttp://linuz.sns.it/doc/howto/en/html/AI-Alife-HOWTO-6.html\nhttp://www.linux.com/networking/network/market/tools/applications/\nhttp://www.linux.com/networking/network/market/tools/frame_relay/\nhttp://www.linux.com/networking/network/market/tools/e-commerce/\nhttp://opac.lib.ntnu.edu.tw/search*chi/aUnited+Nations.+Dept.+of+Economic+and+Social+Affairs/aunited+nations+dept+of+economic+and+social+affairs/7,-1,0,B/frameset&F=aunited+nations+economic+and+social+commission+for+asia+and+the+pacific&6,,7\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380863/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380863/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp\nhttp://www.shmoo.com/mail/ids/oct99/msg00288.html\nhttp://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/hp300/?M=A\nhttp://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/hp300/archivers/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380868/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp\nhttp://www.insideneworleans.com/shared/health/adam/ency/imagepage/1562.000872.html\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/devel/xxgdb/patches/patch-ac\nhttp://genforum.genealogy.com/casey/messages/327.html\nhttp://genforum.genealogy.com/casey/messages/164.html\nhttp://genforum.genealogy.com/casey/messages/337.html\nhttp://genforum.genealogy.com/casey/messages/73.html\nhttp://genforum.genealogy.com/casey/messages/57.html\nhttp://genforum.genealogy.com/casey/messages/50.html\nhttp://genforum.genealogy.com/casey/messages/23.html\nhttp://genforum.genealogy.com/casey/messages/116.html\nhttp://www.msb.malmo.se/search*swe/aNorman,+Karin,+1947-/anorman+karin+1947/-5,-1,0,B/frameset&F=anorman+leslie&1,1\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/rnumber/9096335\nhttp://www.mindspring.com/~arachnid/?S=D\nhttp://www6.freeweb.ne.jp/business/n-bns/hre/\nhttp://news.swww.com.cn/wccdaily/review/200005/29/html/0908.htm\nhttp://tucows.hom.net/croomnt_rating.html\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/1AS/A4L/A4D/B1R/\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/1AS/A4L/A4D/A5L/\nhttp://www.5a8.com/book/kh/zg/zpj/h/heju/001.htm\nhttp://www.5a8.com/book/kh/zg/zpj/h/heju/002.htm\nhttp://www.luckyman.de/computer/hpaccess/java_cgi/java_applet/linien/applet_linien_nav1.htm\nhttp://www.secure-me.net/information/kb/POP\nhttp://in.egroups.com/message/BodybuildingContests/2804\nhttp://in.egroups.com/message/BodybuildingContests/2820\nhttp://in.egroups.com/message/BodybuildingContests/2822\nhttp://theconnection.vnunet.com/Analysis/Stfriend/70206\nhttp://www.yorosiku.net:8080/-_-http://www.nrcse.washington.edu/newsletter/newsletter.pdf\nhttp://www.britishairways.nl/regional/barbados/docs/spec_world_offer.shtml\nhttp://www.xmwb.sh.cn/xmwb/19981117/BIG5/13421^4111719.htm\nhttp://www.z-plus.de/TEXTE/HOMEPAGE/HILFE/HILFE_SURFTIPS201099/text5.html\nhttp://uzgamez.subportal.com/games/previews/0900/westwood/russian_general.html\nhttp://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/sun3/?D=A\nhttp://my.egroups.com/messages/dcfwriters/132?expand=1\nhttp://my.egroups.com/message/dcfwriters/147\nhttp://my.egroups.com/message/dcfwriters/149\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/failsafe/FailSafe/failsafe/scripts/?only_with_tag=MAIN\nhttp://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|8P007|972959615|Warm===and===Dry|user|0|1,0,0,1\nhttp://www.alsapresse.com/jdj/00/01/13/MA/photo_6.html\nhttp://www.highwired.net/ESchoolDrive/Frameset/0,5592,13577-52,00.html\nhttp://uk.sports.yahoo.com/000922/59/ak705.html\nhttp://universal.eud.com/1999/02/26/26204DD.shtml\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/audio/gkrellmvolume/pkg-descr?only_with_tag=MAIN\nhttp://www3.skolverket.se/kursinfo/99_00/skolform/21/alt_nav/S_52S_10S_36VAV_SVSTEK_1715.HTML\nhttp://www3.skolverket.se/kursinfo/99_00/skolform/21/alt_nav/S_52S_10S_36VAV_SVSTEK_1719.HTML\nhttp://www.wsrn.com/apps/research/history.xpl?s=CMDCD&f=HISTORY\nhttp://www.wsrn.com/apps/charts/?s=CMDCD&data=Z10\nhttp://pub3.ezboard.com/utherealcharron.showPublicProfile?language=EN\nhttp://ring.shibaura-it.ac.jp/archives/graphics/gimp/gtk/binary/DEBIAN/stable/?S=A\nhttp://209.52.189.2/discussion.cfm/autism/29762/198522\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380851/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp\nhttp://www01.sankei.co.jp/advertising/furusato/tokuhain/9810/1018sindou.html\nhttp://kulichki-mac.rambler.ru/abiturient/ak.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,1-20,0+9,0\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,1-20,0+18,0\nhttp://ballesta.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/tutorial/security1.2/summary/glossary.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380872/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/main/respect/\nhttp://www11.cplaza.ne.jp/babyweb/bbs/bdnmp01/no24/99N.html\nhttp://www.homeway.com.cn/lbi-html/news/zhxw/gatxw/20000922/165807.shtml\nhttp://gd.cnread.net/cnread1/yqxs/d/dingqianrou/ssqj/009.htm\nhttp://library.bangor.ac.uk/search/tBiol.+philos/tbiol+philos/-17,-1,0,B/frameset&F=tbioindicators+and+environmental+management&1,1\nhttp://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/peacelink-scuola/70630505/view/1\nhttp://www.indian-express.com/ie/daily/19980626/17750374.html\nhttp://www.indian-express.com/ie/daily/19980626/17751044.html\nhttp://www.indian-express.com/ie/daily/19980626/17751334.html\nhttp://www.indian-express.com/ie/daily/19980626/17751494.html\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.disney.com/links.html\nhttp://pub10.ezboard.com/fsavings4yousavings4you.subscribeUnregisteredToTopic?topicID=56.topic\nhttp://www8.freeweb.ne.jp/shopping/arthome/arthome/menu.html\nhttp://rainforest.parentsplace.com/dialog/get/medinfo/4/1.html?outline=3\nhttp://www.emerchandise.com/aboutus/b.TV%20SATNIGHTLIVE/s.afJ7iGE2\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/arpwatch/pkg/?S=A\nhttp://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/arpwatch/pkg/DESCR\nhttp://210.178.135.1/netbbs/Bbs.cgi/nhic30872/qry/zka/B2-kBI-o/pno/0/qqo/004A/qqatt/^\nhttp://yp.gates96.com/8/48/0/54.html\nhttp://yp.gates96.com/8/48/1/98.html\nhttp://yp.gates96.com/8/48/2/23.html\nhttp://yp.gates96.com/8/48/3/13.html\nhttp://yp.gates96.com/8/48/3/14.html\nhttp://yp.gates96.com/8/48/3/23.html\nhttp://yp.gates96.com/8/48/3/84.html\nhttp://yp.gates96.com/8/48/4/5.html\nhttp://yp.gates96.com/8/48/4/72.html\nhttp://yp.gates96.com/8/48/5/4.html\nhttp://yp.gates96.com/8/48/5/49.html\nhttp://yp.gates96.com/8/48/6/38.html\nhttp://yp.gates96.com/8/48/6/89.html\nhttp://yp.gates96.com/8/48/8/10.html\nhttp://yp.gates96.com/8/48/8/41.html\nhttp://yp.gates96.com/8/48/8/87.html\nhttp://news.medscape.com/adis/CDI/2000/v19.n02/cdi1902.02.biel/cdi1902.02.biel-01.html\nhttp://www.parsonstech.com/genealogy/trees/PKINGMAN/d2438.htm\nhttp://www.parsonstech.com/genealogy/trees/PKINGMAN/d2502.htm\nhttp://www.chaos.dk/sexriddle/j/c/b/o/\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/FahI8ikSPIvk79ErK106-87Jy3U1_XgCksR4DWkUOldKaD_pciJBXOOmI2Sr4jXlDCT9Mkz59aBZhyyi3xxBeYROt0IpVObKZD4YcwBAhl9afrfb6y3nWI3SwdRE_Vp3d80RzmrDkPVZYQkJyvOgorzS\nhttp://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+catalogs&3,,0\nhttp://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+catalogs+periodicals&1,1\nhttp://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+dictionaries&3,,0\nhttp://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+economic+aspects+united+states&1,,0\nhttp://www.jsonline.com/news/state/oct00/lambeau31103000a.asp\nhttp://polygraph.ircache.net:8181/used/http_-2www.scubaring.com/http_-2www.alpinehotel.com/chinese/chine.htm\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/p/g/g/e/\nhttp://haikou.hainan.gov.cn/ghgl/ghsc/hkfg3020.html\nhttp://variety.studiostore.com/main/VARIETY/s.Fz90iGDh\nhttp://library.cuhk.edu.hk/search*chi/cPN595.C6I18+1993/cpn++595+c6+i18+1993/-5,1,1,E/frameset&F=cpn++595+c6+k6+1997&1,1,\nhttp://library.cuhk.edu.hk/search*chi/cPN595.C6I18+1993/cpn++595+c6+i18+1993/-5,1,1,E/frameset&F=cpn++595+c6+l515&1,1,\nhttp://link.fastpartner.com/do/session/600425/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/learn.htm\nhttp://www.nanyang.com.my/20001020/articles/15-10-2000k16.htm\nhttp://202.99.23.245/rmrb/199912/11/newfiles/col_19991211001063_zhxw.html\nhttp://help.sap.com/saphelp_45b/helpdata/en/a7/2872510a6c11d28a220000e829fbbd/frameset.htm\nhttp://www.s10.sexshare.com/~pornking/hardcore/43.html\nhttp://www.gbnf.com/genealogy/Lawler99/html/d0102/I1772.HTM\nhttp://ring.edogawa-u.ac.jp/pub/linux/RedHat/aic/OLD/aic7xxx-5.0.x/boot_disks/5.0.11/SuSE/?D=A\nhttp://www.t-online.de/sport/inhalte/adispi51.htm\nhttp://ftp.lip6.fr/pub11/FreeBSD/development/FreeBSD-CVS/src/kerberos5/usr.sbin/k5stash/\nhttp://education.legend-net.com/xinwen/gaokao/zl5/zhsh/3/zhshyk.html\nhttp://www.contractorresource.com/Wyoming/Cody/\nhttp://213.36.119.69/do/session/152998/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/boutique/\nhttp://213.36.119.69/do/session/153000/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/hotels.html\nhttp://213.36.119.69/do/session/153000/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml\nhttp://ftp.unina.it/pub/TeX/macros/latex/contrib/supported/combine/?D=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,11\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,233\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,5\nhttp://www12.freeweb.ne.jp/novel/urufu24/linkz/ug1.html\nhttp://www12.freeweb.ne.jp/novel/urufu24/linkz/pv.html\nhttp://computers.kharkov.ua/win/43/\nhttp://www.1001e.net/nk4/022.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=4&discrim=93,164,176\nhttp://dic.empas.com/show.tsp/?q=revisable&f=B\nhttp://yp.gates96.com/0/28/30/45.html\nhttp://yp.gates96.com/0/28/30/46.html\nhttp://yp.gates96.com/0/28/31/24.html\nhttp://yp.gates96.com/0/28/32/64.html\nhttp://yp.gates96.com/0/28/33/28.html\nhttp://yp.gates96.com/0/28/33/85.html\nhttp://yp.gates96.com/0/28/33/87.html\nhttp://yp.gates96.com/0/28/33/96.html\nhttp://yp.gates96.com/0/28/34/52.html\nhttp://yp.gates96.com/0/28/35/7.html\nhttp://yp.gates96.com/0/28/36/23.html\nhttp://yp.gates96.com/0/28/36/52.html\nhttp://yp.gates96.com/0/28/37/50.html\nhttp://yp.gates96.com/0/28/38/85.html\nhttp://yp.gates96.com/0/28/39/16.html\nhttp://www.fan590.com/JamMoviesReviewsE/earth_king.html\nhttp://www.sportbuecher.de/shop/3-88034-750-6.html\nhttp://www.msb.malmo.se/search*swe/aWhitaker,+Galvin,+Utgivare/awhitaker+galvin/-5,-1,0,B/exact&F=awhitburn+joel&1,2\nhttp://ftp.sunet.se/pub/security/vendor/microsoft/winnt/frn/nt40/?M=A\nhttp://www.intervoz.com.ar/2000/03/02/op_n04.htm\nhttp://www.ntut.edu.tw/~s7370840/8-19.htm\nhttp://www.back2roots.org/Music/Files/Wondergirl%20-%20You%26Me/\nhttp://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/IIM-Teil/Startseite/Gemeinsam/Inserieren/IIM-Teil/Startseite/frinfo.htm\nhttp://web.singnet.com.sg/~spirit5/letters/oct2000/frankm1025-3.htm\nhttp://web.singnet.com.sg/~spirit5/letters/oct2000/davidp1025.htm\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplicavamo&l=it\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplichiate&l=it\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplichereste&l=it\nhttp://members.tripod.com/~OZEMU/cgi-bin/\nhttp://ring.tains.tohoku.ac.jp/archives/pack/dos/hardware/midi/?D=A\nhttp://kutschen.de/Schoner/info-e/info-e/collections/literature/\nhttp://www.jamba.de/KNet/_KNet-MJJ8j1-DGd-13dgc/showInfo-special1.de/node.0/cde7f1uou\nhttp://www.jamba.de/KNet/_KNet-MJJ8j1-DGd-13dgy/browse.de/node.0/cenv0b09a\nhttp://in.egroups.com/message/sfconsim-l/6415\nhttp://genforum.genealogy.com/cgi-genforum/forums/vt.cgi?4123\nhttp://www.linux.com/networking/network/sap/article/price/VA_Linux_Systems/\nhttp://www.linux.com/networking/network/sap/article/price/regulation/\nhttp://slacvx.slac.stanford.edu/sldmcwww/mc/MC74BB_98R16B_WIN_ALL.HTML\nhttp://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1611/date/article-15.html\nhttp://www.iwon.com/home/movies/movies_filmography_page/0,13178,Macon+McCalman,00.html\nhttp://excite.de/spiele/katalog/26997\nhttp://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/B2R/A2U/B3S/B1R/\nhttp://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=2,6,27,9,26\nhttp://itcareers.careercast.com/texis/it/itjs/+owwBm1eP0-dzwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDPwdGpdGwBodDa5dhBiwGna5O5BnManDtoDnnGa5nDodGa5BwhhaidGAanLpnGonDqnaqdMp1BnGamnVncdpaMFqhTfR20Dzme8twwwpBmer+D86e9qwww5rmeZpwwwBrmeZpwww/morelike.html\nhttp://pub4.ezboard.com/fnationoferidinegeneral.showAddReplyScreenFromWeb?topicID=615.topic&index=2\nhttp://www.chaos.dk/sexriddle/m/i/s/x/\nhttp://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/5532.html\nhttp://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/11418.html\nhttp://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/676.html\nhttp://www.rge.com/pub/networking/ldap/umich/max500/beta/?M=A\nhttp://my.egroups.com/dir/Health/Fitness/Exercise_Equipment\nhttp://my.egroups.com/messages/prevention\nhttp://pub4.ezboard.com/factiveprodiscussioncommunityactivitiesquestions.showMessage?topicID=12.topic\nhttp://www.look4cranes.com/catalog/AUCTIONRESULT/AGGREGATE+-+CONVEYOR+%2F+FEEDER+%2F+STACKER/POWERSCREEN/\nhttp://www.fogdog.com/cedroID/ssd3040183344300/cgi-bin/MyFogdog\nhttp://www.fogdog.com/cedroID/ssd3040183344300/nav/products/featured_brands/3b/gloves_mittens/\nhttp://www.houses-apartment-listings.com/Washington/city_search_criteria.asp?state=WA&City=CONCONULLY\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/c23417.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x12810.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x14250.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x14507.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x15988.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x17214.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x18550.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x19113.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x1949.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x21473.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x31101.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x3585.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x44035.html\nhttp://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x4711.html\nhttp://www.online.kokusai.co.jp/Home/V0043638/wrd/G100/\nhttp://ftp.lip6.fr/pub5/FreeBSD/branches/-current/ports/print/ghostscript5/\nhttp://ftp.lip6.fr/pub5/FreeBSD/branches/-current/ports/print/texinfo/\nhttp://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/ats/?N=D\nhttp://garbo.uwasa.fi/pub/linux/distributions/SuSE/7.0/dosutils/exceed/USER/HOSTEX/SCHEME/?D=A\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/showNextUnseen/fol/100001/922702\nhttp://link.fastpartner.com/do/session/600391/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php\nhttp://www.jamba.de/KNet/_KNet-wEF8j1-bGd-13cma/showInfo-datenschutz.de/node.0/cenvptf1i\nhttp://www.jamba.de/KNet/_KNet-wEF8j1-bGd-13cmd/browse.de/node.0/cenv0b09a\nhttp://www-usa6.cricket.org/link_to_database/PLAYERS/RSA/T/THOMPSON_DS_03003252/\nhttp://sunsite.org.uk/public/public/packages/WWW/emacs-w3/?S=A\nhttp://www.excelsior.com.mx/9811/981129/buh25.html\nhttp://www.anixter.nl/SBJEVE/170699-2155-01.html\nhttp://innopac.lib.tsinghua.edu.cn:2082/search*chi/aBrooks,+Jane+B./abrooks+jane+b/-5,-1,0,B/browse\nhttp://tour.stanford.edu/cgi/options.prl/95.70/gMcto\nhttp://www.cksd.edgate.com/emeraldheightses/elections/students/the_parties/\nhttp://novel.hichinese.net/comment/comment.php?page=2091&action=write\nhttp://205.161.150.96/cgi-bin/c2k/additem.html&item=204578\nhttp://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31282/qry/zka/B2-kB2-m/pno/0/qqo/004A/qqatt/^\nhttp://scripts.infoart.ru/magazine/znamia/n4-20/shpakov.htm\nhttp://excite.de/bildung/katalog/19909\nhttp://911codes.com/games/platform/n64/sect/div/cont/list_cheat/spray/y/id/0000009557/gid/0000003573/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/\nhttp://ftp.jp.debian.org/debian/dists/stable/main/source/web/?M=A\nhttp://www.fogdog.com/cedroID/ssd3040183335913/nav/products/featured_brands/3c/all/\nhttp://his.luky.org/ML/linux-users.3/msg08073.html\nhttp://yomiuri-1422.excite.co.jp/entertainment/animated_cartoon_comic/each_work_title/ha_line/ha\nhttp://yomiuri-1422.excite.co.jp/entertainment/animated_cartoon_comic/each_work_title/ha_line/hu_he/berserk\nhttp://library.cwu.edu/search/dWorld+War,+1914-1918+--+Diplomatic+history/dworld+war+1914+1918+diplomatic+history/-5,-1,0,B/exact&F=dworld+war+1914+1918+diplomatic+history&1,49\nhttp://www.utdallas.edu/dept/sci_ed/Caribbean/images/Jennifer%20Jordan/Antigua%20Mangrove/?N=D\nhttp://www.baustoffhandel.de/service/faqs/faq-tapezieren.htm\nhttp://muc-zvs-web1.goethe.de/ms/bud/film/un_f2.htm\nhttp://www.online.kokusai.co.jp/Map/V0043636/wrd/G1000/map/sitemap.html\nhttp://win.www.citycat.ru/funny/fido/2000_05/25.html\nhttp://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=9,1,7,13,15,6\nhttp://yp.gates96.com/11/79/50/1.html\nhttp://yp.gates96.com/11/79/50/92.html\nhttp://yp.gates96.com/11/79/52/64.html\nhttp://yp.gates96.com/11/79/54/79.html\nhttp://yp.gates96.com/11/79/54/81.html\nhttp://yp.gates96.com/11/79/56/28.html\nhttp://yp.gates96.com/11/79/56/30.html\nhttp://yp.gates96.com/11/79/56/46.html\nhttp://yp.gates96.com/11/79/56/83.html\nhttp://yp.gates96.com/11/79/57/10.html\nhttp://yp.gates96.com/11/79/57/33.html\nhttp://yp.gates96.com/11/79/58/1.html\nhttp://yp.gates96.com/11/79/58/48.html\nhttp://yp.gates96.com/11/79/58/82.html\nhttp://yp.gates96.com/11/79/59/62.html\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/ELINKEINO-+JA+YRITYSTOIMINTA/Matkailu+-+maantiede/matkailu/linja-autoliikenne/joukkoliikenne/aikataulut/\nhttp://cn.egroups.com/message/romtrade/3823\nhttp://www.idgnet.com/idgns/1999/07/16/SmallFrenchBusinessesMoveSlowlyTo.shtml\nhttp://www-d0.fnal.gov/d0dist/dist/releases/psim01.01.00/Exceptions/?M=A\nhttp://www.4positiveimages.com/4positiveimages/781560892/Catalog\nhttp://dellnet.excite.fr/yellow_pages/annuaire/823\nhttp://ftp.chg.ru/pub/math/grace/MIRRORS\nhttp://ftp.chg.ru/pub/math/grace/aux/\nhttp://legalminds.lp.findlaw.com/list/lawlibref-l/mail8.html\nhttp://carriage.de/Schoner/modelle/models/Info-d/Sammlungen/\nhttp://chunma.yeungnam.ac.kr/~j4390214/경기상승.htm\nhttp://members.tripod.co.jp/stpp/?M=A\nhttp://map.ipc.co.jp/asp/onmap/connect/f-525598/g-28/\nhttp://www.fortunecity.com/business/lerner/101/form.html\nhttp://www.sportskorea.net/BBS/Bbs/db/L019/act/new/bnum/000060/zka/6/o/6/drc/f\nhttp://ftp.jp.debian.org/debian/dists/Debian2.2r0/main/binary-all/hamradio/?M=A\nhttp://admin.afiliando.com/do/session/189476/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/toy/home.asp\nhttp://www.gasex.com/gay.male.erotica/penis.gay.twink.men.html\nhttp://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/ak/?S=A\nhttp://gb.toget.com.tw/intro/desktop_wallpaper/desktop_wallpaper_idol/20000417_7747_dl.html\nhttp://yp.gates96.com/13/50/50/27.html\nhttp://yp.gates96.com/13/50/52/20.html\nhttp://yp.gates96.com/13/50/52/31.html\nhttp://yp.gates96.com/13/50/52/44.html\nhttp://yp.gates96.com/13/50/53/33.html\nhttp://yp.gates96.com/13/50/53/45.html\nhttp://yp.gates96.com/13/50/53/72.html\nhttp://yp.gates96.com/13/50/54/34.html\nhttp://yp.gates96.com/13/50/54/62.html\nhttp://yp.gates96.com/13/50/54/83.html\nhttp://yp.gates96.com/13/50/54/84.html\nhttp://yp.gates96.com/13/50/55/5.html\nhttp://yp.gates96.com/13/50/55/61.html\nhttp://yp.gates96.com/13/50/55/75.html\nhttp://yp.gates96.com/13/50/56/0.html\nhttp://yp.gates96.com/13/50/56/15.html\nhttp://yp.gates96.com/13/50/56/21.html\nhttp://yp.gates96.com/13/50/56/29.html\nhttp://yp.gates96.com/13/50/57/2.html\nhttp://yp.gates96.com/13/50/57/54.html\nhttp://yp.gates96.com/13/50/58/9.html\nhttp://yp.gates96.com/13/50/58/34.html\nhttp://yp.gates96.com/13/50/59/64.html\nhttp://yp.gates96.com/13/50/59/70.html\nhttp://yp.gates96.com/13/50/59/75.html\nhttp://yp.gates96.com/13/50/59/85.html\nhttp://www.ilmessaggero.it/hermes/19990419/07_MARCHE/40/AGRI.htm\nhttp://www.ilmessaggero.it/hermes/19990419/07_MARCHE/40/NERA.htm\nhttp://amigos.com/cgi-bin/w3com/pws/ffe/IURImAxosglBgN4t3Iz538S9DOsFp6mHl6tpYJehgGibFrnWNcTM3WIsDckFomPqZ-JB8f_Qj8Aua4sE4AFvcFyidtj2iI6k1zPchuFbLwWMCo3hr8eXPNuxbHPQdRvo8J246667\nhttp://amigos.com/cgi-bin/w3com/pws/ffe/F3hIBiydr9mPRNSqk-dll3MTqIZCaRN3wRH0-H7o4qF0vlfPBXUV-Vhn028iva56e-GCSyYZKBQxuCJO8Y2JF25fVTkPHzFtrNMoOVhEp2n7Y11PhN9pvFNyqgssdZW8Eay0XJsP0vuD4oCbmJVx\nhttp://home.digitalcity.com/boston/sportsguy/main.dci?page=curse2\nhttp://ftpsearch.belnet.be/mirror/ftp.funet.fi/pub/Linux/doc/logos/.cap/?S=A\nhttp://ftpsearch.belnet.be/mirror/ftp.funet.fi/pub/Linux/doc/logos/.cap/?D=A\nhttp://my.netian.com/~52tour/kyung1.html\nhttp://aol.weather.com/weather/radar/single_site/us_ny_allegany.html\nhttp://www-usa16.cricket.org/link_to_database/GROUNDS/RSA/CENTURION/\nhttp://polygraph.ircache.net:8181/prodev/career/http_-2www.getstats.com/http_-2www.shindex.com/in_dex/in_dex.html\nhttp://polygraph.ircache.net:8181/prodev/career/http_-2www.getstats.com/http_-2www.microsoft.com/msoffice\nhttp://www.5a8.com/book/wg/cp/p/puge/zhizhunv/005.htm\nhttp://tukids.raha.com/crafts/preview/52044.html\nhttp://tukids.raha.com/crafts/preview/52401.html\nhttp://buc.co.kr/www.ecs.com.tw/\nhttp://wap.jamba.de/KNet/_KNet-EDS8j1-KHd-13gbq/showInfo-werbung.de/node.0/cde7f1uou\nhttp://www.launch.com/music/songpage/1,4425,322514,00.html\nhttp://www.emerchandise.com/browse/BUFFYTHEVAMP/CAP/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC\nhttp://www.emerchandise.com/browse/BUFFYTHEVAMP/STICKER/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC\nhttp://www.emerchandise.com/help_security/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC\nhttp://yp.gates96.com/14/70/50/9.html\nhttp://yp.gates96.com/14/70/50/23.html\nhttp://yp.gates96.com/14/70/50/24.html\nhttp://yp.gates96.com/14/70/50/40.html\nhttp://yp.gates96.com/14/70/50/47.html\nhttp://yp.gates96.com/14/70/50/79.html\nhttp://yp.gates96.com/14/70/50/89.html\nhttp://yp.gates96.com/14/70/51/83.html\nhttp://yp.gates96.com/14/70/52/98.html\nhttp://yp.gates96.com/14/70/53/46.html\nhttp://yp.gates96.com/14/70/54/4.html\nhttp://yp.gates96.com/14/70/54/24.html\nhttp://yp.gates96.com/14/70/54/97.html\nhttp://yp.gates96.com/14/70/55/51.html\nhttp://yp.gates96.com/14/70/57/51.html\nhttp://yp.gates96.com/14/70/58/3.html\nhttp://yp.gates96.com/14/70/58/84.html\nhttp://yp.gates96.com/14/70/59/0.html\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20046027/-5,-1,0,B/frameset&F=bp20046031&1,1\nhttp://www.free-phone.com/q/001p/ppc2/KtIYye9a8Pw.htm\nhttp://www.1stemlm.com/q/001p/ppc2/7kwUxQYfGMk.htm\nhttp://sports.excite.com/ten/grand_german\nhttp://www.omniseek.com/dir/Arts+%26+Humanities/Fine+Arts/Ceramics/Organizations/Australia/\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/dec-axpvms-vms712_usb-v0100--4.pcsi-dcx_axpexe\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_acrtl-v0100.README\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_acrtl-v0100.html\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_dqconfig-v0200.README\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_ds20e-v0100.html\nhttp://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_shadowing-v0300.CVRLET_TXT\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=barrissait&l=fr\nhttp://dk.egroups.com/message/M-1911/4394\nhttp://www.netsh.com.cn/wwwboardm/526/messages/2116.html\nhttp://www.netsh.com.cn/wwwboardm/526/messages/2270.html\nhttp://www.netsh.com.cn/wwwboardm/526/messages/773.html\nhttp://www.netsh.com.cn/wwwboardm/526/messages/2058.html\nhttp://www.netsh.com.cn/wwwboardm/526/messages/2329.html\nhttp://www.netsh.com.cn/wwwboardm/526/messages/1813.html\nhttp://linux.softhouse.com.cn/linux/knowledge/tech/HOWTO/Java-CGI-HOWTO-7.html\nhttp://news.novgorod.ru/news/2000/9/22/2/12\nhttp://news.novgorod.ru/news/2000/9/24/2/12\nhttp://homepage1.nifty.com/sigenyan/nikki9.htm\nhttp://perso.club-internet.fr/guige/ncpc78.htm\nhttp://www.vr-homes.com/usa/California/Cities/Victorville/Travel/Maps_Images/\nhttp://www.incestpornstories.com/cum-sex-pics/underagecoed/spankingsweating/hardendurance.html\nhttp://www.freeforums.com/forums/Hardball/000008-000007.asp\nhttp://www.freeforums.com/forums/Hardball/000005-000001.asp\nhttp://www.freeforums.com/forums/Hardball/000004-000001.asp\nhttp://rex.skyline.net/html/Internet_Chat_Sites.html?315,computers,video,internet,computers\nhttp://rex.skyline.net/html/Computers_-_Hardware.html?14,computers,video,internet,computers\nhttp://194.128.65.4/pa/cm199899/cmhansrd/vo990216/text/90216w20.htm\nhttp://pub14.ezboard.com/fyamguyskoflastblade.showMessage?topicID=3.topic\nhttp://plant.reedexpo.ca/www.partnership.ca/?S=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=168&discrim=109,5,168\nhttp://www.aelita.net/products/~archive/Download_redirect/solutions/solutions/services/products/default.htm\nhttp://www.jpc-music.com/7041801.htm\nhttp://home.c2i.net/entreprenor/java/ra.html\nhttp://gxschool.beelink.com.cn/mid_edu/midschool/geography3/t4cd7z/4d7z3.3_1.htm\nhttp://ricoh.co.jp/SHOGI/emate/basic/mate3003a.html\nhttp://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483385&chr=K\nhttp://www.ebigchina.com/msg_post.phtml?cu=1003\nhttp://www.bemi-immobilien.de/allgemeine-ib/startseite/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/immolink/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/onlineInserieren.htm\nhttp://ftp.tku.edu.tw/OS/Linux/distributions/RedHat/rawhide/i386/doc/rhinst/stylesheet-images/?S=A\nhttp://www.egroups.com/message/kicken/284\nhttp://www.guangmingdaily.com.cn/0_gm/1999/12/19991222/big5/gm^18278^2^GM2-2216.htm\nhttp://brightnet.pda.tucows.com/www.psionsite.rcsed.ac.uk/\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=9,22,1,11\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=durereste&l=it\nhttp://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?ylihilseen&msg=25\nhttp://www.gbgm-umc.org/EllisvilleMO/10-04-00.pdf\nhttp://www.marketingtool.com/contribute/webfirm/b.435.r.2626.g.4134.html\nhttp://www.chaos.dk/sexriddle/h/a/w/l/\nhttp://www.chaos.dk/sexriddle/h/a/w/t/\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,5-0,3+(\nhttp://www.guba.net/101/136/125E/index-4.phtml\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,5-0,3+21,0\nhttp://www.guba.net/101/136/125E/index-7.phtml\nhttp://www.guba.net/101/136/125E/index-15.phtml\nhttp://ftpsearch.belnet.be/ftp/mirror2/ftp.cert.dfn.de/pub/vendor/sun/security-alert/security-alert-108.txt\nhttp://ftpsearch.belnet.be/ftp/mirror2/ftp.cert.dfn.de/pub/vendor/sun/security-alert/security-alert-170.txt\nhttp://www.tente.de/us/produkte/rubriksuche/ad000000699.htm\nhttp://www.angelfire.com/ky/kysweetpea/\nhttp://yp.gates96.com/7/69/60/1.html\nhttp://www.amulation.com/md-l-archive/199908/frm00208.html\nhttp://yp.gates96.com/7/69/60/4.html\nhttp://yp.gates96.com/7/69/60/33.html\nhttp://yp.gates96.com/7/69/60/49.html\nhttp://yp.gates96.com/7/69/60/71.html\nhttp://nanjingnews.jlonline.com/nanjingnews/njrb/20000226/04tiyu.htm\nhttp://yp.gates96.com/7/69/61/44.html\nhttp://yp.gates96.com/7/69/61/69.html\nhttp://yp.gates96.com/7/69/61/82.html\nhttp://yp.gates96.com/7/69/61/85.html\nhttp://yp.gates96.com/7/69/62/4.html\nhttp://yp.gates96.com/7/69/63/34.html\nhttp://yp.gates96.com/7/69/63/48.html\nhttp://yp.gates96.com/7/69/63/66.html\nhttp://yp.gates96.com/7/69/64/22.html\nhttp://www.bemi-immobilien.de/IIM-Teil/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/3d-service/info.htm\nhttp://yp.gates96.com/7/69/64/26.html\nhttp://yp.gates96.com/7/69/65/89.html\nhttp://yp.gates96.com/7/69/67/11.html\nhttp://yp.gates96.com/7/69/67/28.html\nhttp://yp.gates96.com/7/69/67/33.html\nhttp://yp.gates96.com/7/69/67/70.html\nhttp://yp.gates96.com/7/69/68/22.html\nhttp://yp.gates96.com/7/69/68/72.html\nhttp://yp.gates96.com/7/69/68/92.html\nhttp://members.tripod.com/~katenleo/fading21.html\nhttp://yp.gates96.com/7/69/69/6.html\nhttp://members.tripod.com/~katenleo/fading26.html\nhttp://yp.gates96.com/7/69/69/36.html\nhttp://yp.gates96.com/7/69/69/91.html\nhttp://yp.gates96.com/7/69/69/98.html\nhttp://www.tribuneindia.com/98oct11/head1.htm\nhttp://fi.egroups.com/message/internet-sig-announce/3\nhttp://info.verwaltung.uni-freiburg.de/doc/susehilf/pak/paket_inhalt_libxml.html\nhttp://www.planetweb.com/cgi-bin/listmanager.pl/NETLINK-CUST/archives/1998Mar30-Apr05.archive/Date/article-23.html\nhttp://www.maasvlakte-cam.nl/webcams/11/katowice__poland/2000/06/13/\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959521459/Home\nhttp://totalsports.aol.com/stats/bbo/int/20000413/nor.at.lou.box.html\nhttp://totalsports.aol.com/stats/bbo/int/20000413/ott.at.buf.game.html\nhttp://fi.egroups.com/message/stccg-badlands/67\nhttp://www.fogdog.com/cedroID/ssd3040183315704/nav/stores/books_videos/\nhttp://xf-bbs.hb.cninfo.net/~socrates/sportold/images/football/_vti_cnf/\nhttp://cisc.tu-graz.ac.at/igi/lehre/semD_ss99/gruppe3/node10.html\nhttp://in.egroups.com/message/sfconsim-l/8643\nhttp://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/modules/by-authors/Karl_Glazebrook/ExtUtils-F77-1.13.readme\nhttp://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/modules/by-authors/Karl_Glazebrook/PGPLOT-2.17.readme\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/wopwobaiu2243.html\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/wopwobaiu2386.html\nhttp://books.hyperlink.co.uk/bookinfo/Travel_Journal/0864427972\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0650.htm\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0655.htm\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0666.htm\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0673.htm\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0681.htm\nhttp://dbc.copystar.com.tw/DelphiChat/200001/msg0692.htm\nhttp://www.expage.com/page/cavypigsponser\nhttp://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-05/13/?S=A\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=210&discrim=214,253\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=2&discrim=247,212,237\nhttp://wwwtios.cs.utwente.nl/archive/wilyfans/frm01740.html\nhttp://z-06.land-sbg.gv.at/pressebuero/lpb/unserland/apr00/3.htm\nhttp://z-06.land-sbg.gv.at/pressebuero/lpb/unserland/apr00/52.htm\nhttp://gladstone.uoregon.edu/~sola/Stories/\nhttp://adetti.iscte.pt/RSI/HowTo/Java/jdk1.2.1/docs/guide/2d/api-jpeg/serialized-form.html\nhttp://ocean.ntou.edu.tw/search*chi/aSloan,+Richard+P.,+jt.+ed./asloan+richard+p/-5,-1,0,E/frameset&F=asloan+irving+j&2,,0\nhttp://ttzcomputers.subportal.com/sn/Programming/C_and_C___Tools_and_Components/13286.html\nhttp://ttzcomputers.subportal.com/sn/Programming/C_and_C___Tools_and_Components/1551.html\nhttp://ftp.uni-stuttgart.de/pub/unix/tools/system/top/m/?N=D\nhttp://no.egroups.com/message/romtrade/5216\nhttp://dk.egroups.com/message/Gunsmithing/80\nhttp://www.msb.malmo.se/search*swe/dMichelsen,+Hans/dmichelsen+hans/-5,-1,0,B/frameset&F=dmichels+robert&1,1\nhttp://solar.rtd.utk.edu/friends/news/omri/1998/05/980506I.html(opt,mozilla,pc,russian,koi8,default)\nhttp://www.geocities.co.jp/HeartLand/6163/link8.htm\nhttp://tucows.austria.com/sync95_size.html\nhttp://tucows.austria.com/adnload/1082_30337.html\nhttp://www.hotelboulevard.com/fr/paris/standard/html7752b1d358fd6459ebca66776e896614/sessionLang/ANG/prov/browse/cp/75015/resultatSearch.html\nhttp://210.178.135.1/netbbs/Bbs.cgi/nhic30872/qry/zka/B2-kB2-o/pno/0/qqo/000A/qqatt/^\nhttp://210.178.135.1/netbbs/Bbs.cgi/nhic30872/new/pno/0/pno/0/qqo/000A\nhttp://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=132041&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5\nhttp://polygraph.ircache.net:8181/http_-2www.webtechs.com/html-val-svc/f-agents.html\nhttp://www.linux.com/networking/network/development/communications/server/distro/\nhttp://www.linux.com/networking/network/development/communications/server/competition/\nhttp://www.linux.com/networking/network/development/communications/server/certification/\nhttp://www.linux.com/networking/network/development/communications/server/future/\nhttp://www.linux.com/networking/network/development/communications/server/Updates/\nhttp://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/net/epic4/pkg/Attic/\nhttp://polygraph.ircache.net:8181/mo/mo_links/http_-2www.whowhere.com/tax_cuts.html\nhttp://www.gov.ie/iveagh/angloirish/bloodysunday/summary4.htm\nhttp://polygraph.ircache.net:8181/http_-2www.real-e-video.com/ftp_-2ftp.mpgn.com/Gaming/ADND/Worlds/BirthRight/MailingListArchive/Contents.htm\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showNextUnseen/fol/100001/1323398\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/folderFrame/100008/0/def/1323639\nhttp://user.alpha.co.kr/~selly/profile/main2.htm\nhttp://polygraph.ircache.net:8181/company/http_-2www.aaainvestments.com/http_-2triad.cyberserv.com/http_-2207.90.134.3/miami/\nhttp://ring.htcn.ne.jp/pub/FreeBSD/FreeBSD-current/ports/archivers/zip/\nhttp://www.medoc-ias.u-psud.fr:81/synoptic/gif/950902/?S=A\nhttp://in.egroups.com/message/GQRP/975\nhttp://idgnow.uol.com.br/idgnow/pcnews/2000/07/0046\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdebase/po/Attic/kdmconfig.pot?only_with_tag=beta1-0_2\nhttp://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdebase/po/Attic/kwm.pot?only_with_tag=beta1-0_2\nhttp://lists.omnipotent.net/mysql/199912/msg02189.html\nhttp://kyoto.cool.ne.jp/ryou_1125/lmax/list2.html\nhttp://www.infodog.com/RESULTS/1998092302/1998092302800.HTM\nhttp://www.infodog.com/RESULTS/1998092302/1998092302575.HTM\nhttp://bedandbreakfast.com/bbc/p618230.asp\nhttp://solaris.license.virginia.edu/os_product_patches/patches/5.5.1/103640-28/SUNWscpu/\nhttp://www.secinfo.com/d1Z36p.5n.htm\nhttp://cn.egroups.com/messages/conscious_creation/2087\nhttp://www.brio.de/BRIO.catalog/39fdb4fb08541c02273fd472aa7806a2/UserTemplate/13\nhttp://www.chaos.dk/sexriddle/o/m/e/z/\nhttp://cgi.tbs.co.jp/cdtv/songdb/song1897-j.html\nhttp://www.niwl.se/wais/new/12/12116.htm\nhttp://bsdweb.pasta.cs.uit.no/bsdweb.cgi/~checkout~/pkgsrc/editors/vim-xaw/pkg/?sortby=log\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=boguerait&l=fr\nhttp://www.medbulletin.com/scripts/medscape/jobsbystate.pl/diima00001/ND\nhttp://ttz.soyou.edu.cn/tgyd/item/2000-05-31/3214.html\nhttp://ttz.soyou.edu.cn/tgyd/item/2000-05-25/2973.html\nhttp://ttz.soyou.edu.cn/tgyd/item/2000-05-23/2825.html\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://salon.com/tech/feature/2000/02/25/chatscan/\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.wired.com/news/news/technology/story/20734.html\nhttp://www.jps.net/fehlberg/diem9.html\nhttp://chellobe.linux.tucows.com/x11html/adnload/9798_3876.html\nhttp://chellobe.linux.tucows.com/x11html/preview/58190.html\nhttp://internet.exit.de/akpolitik/Extern.htm\nhttp://www.launch.com/music/albumpage/pvn_content/0,5258,163242_track,00.html\nhttp://merumo.ne.jp/backno/i/00005163/20001001060103_024859.html\nhttp://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/bc/?N=D\nhttp://www-lehre.inf.uos.de/manuals/jdk1.2/docs/api/javax/swing/text/html/parser/class-use/Element.html\nhttp://ftp.tku.edu.tw/OS/FreeBSD/ports/biology/deft/distinfo\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.cavejunction.com/phones/gower1.html\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.cavejunction.com/phones/contel1.html\nhttp://www.allkorea.co.jp/cgi-bin/allkorea.front/972959966349/Catalog/1000002\nhttp://yp.gates96.com/5/82/41/1.html\nhttp://yp.gates96.com/5/82/41/52.html\nhttp://yp.gates96.com/5/82/41/59.html\nhttp://yp.gates96.com/5/82/42/40.html\nhttp://yp.gates96.com/5/82/42/73.html\nhttp://yp.gates96.com/5/82/43/4.html\nhttp://yp.gates96.com/5/82/43/20.html\nhttp://yp.gates96.com/5/82/44/60.html\nhttp://yp.gates96.com/5/82/44/95.html\nhttp://yp.gates96.com/5/82/45/36.html\nhttp://yp.gates96.com/5/82/45/43.html\nhttp://yp.gates96.com/5/82/45/90.html\nhttp://yp.gates96.com/5/82/46/37.html\nhttp://yp.gates96.com/5/82/46/83.html\nhttp://yp.gates96.com/5/82/47/22.html\nhttp://yp.gates96.com/5/82/47/53.html\nhttp://yp.gates96.com/5/82/48/8.html\nhttp://yp.gates96.com/5/82/48/23.html\nhttp://yp.gates96.com/5/82/48/41.html\nhttp://yp.gates96.com/5/82/48/76.html\nhttp://yp.gates96.com/5/82/49/5.html\nhttp://yp.gates96.com/5/82/49/22.html\nhttp://yp.gates96.com/5/82/49/37.html\nhttp://yp.gates96.com/5/82/49/39.html\nhttp://yp.gates96.com/5/82/49/65.html\nhttp://yp.gates96.com/5/82/49/90.html\nhttp://www.mirror.kiev.ua:8084/paper/1998/35/1251/power.htm\nhttp://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/textproc/html/Makefile\nhttp://www.fiss.at/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/708/Infrastruktur/7435/Homepage/homepage...1.html\nhttp://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.02.readme\nhttp://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.04.readme\nhttp://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.05.readme\nhttp://wufs.wustl.edu/vlander/vl_0002/browse/html/B0XX/22b090b4.htm\nhttp://www.dnet.org/My_Locality/View_Statement.dnet/OH/43230-1863&SubjectItemID=6406&IssueID=47541&ElectionActivityID=4443&SubjectHolder=3462&type=Office&debate=yes\nhttp://members.tripod.co.jp/suguruE/_private/\nhttp://members.tripod.lycos.nl/Kreeklaan/id19_cf.htm\nhttp://forums.multimania.fr/general/login/login.phtml?_login=%2Flire%2Fjeuxvideospro%2Findex.phtml%3Fcollapse%3D1\nhttp://excite.de.netscape.com/jobs/katalog/30434\nhttp://excite.de.netscape.com/jobs/katalog/27370\nhttp://excite.de.netscape.com/jobs/katalog/127\nhttp://yp.gates96.com/2/54/20/79.html\nhttp://yp.gates96.com/2/54/21/27.html\nhttp://yp.gates96.com/2/54/22/14.html\nhttp://yp.gates96.com/2/54/22/48.html\nhttp://yp.gates96.com/2/54/22/78.html\nhttp://yp.gates96.com/2/54/23/20.html\nhttp://yp.gates96.com/2/54/23/62.html\nhttp://yp.gates96.com/2/54/23/69.html\nhttp://yp.gates96.com/2/54/24/1.html\nhttp://yp.gates96.com/2/54/24/61.html\nhttp://yp.gates96.com/2/54/24/95.html\nhttp://yp.gates96.com/2/54/25/2.html\nhttp://yp.gates96.com/2/54/25/16.html\nhttp://yp.gates96.com/2/54/25/53.html\nhttp://yp.gates96.com/2/54/25/67.html\nhttp://yp.gates96.com/2/54/25/94.html\nhttp://yp.gates96.com/2/54/26/3.html\nhttp://yp.gates96.com/2/54/26/30.html\nhttp://yp.gates96.com/2/54/26/65.html\nhttp://yp.gates96.com/2/54/27/31.html\nhttp://yp.gates96.com/2/54/27/41.html\nhttp://yp.gates96.com/2/54/27/53.html\nhttp://yp.gates96.com/2/54/27/71.html\nhttp://yp.gates96.com/2/54/27/79.html\nhttp://yp.gates96.com/2/54/27/80.html\nhttp://yp.gates96.com/2/54/28/13.html\nhttp://yp.gates96.com/2/54/28/14.html\nhttp://yp.gates96.com/2/54/28/24.html\nhttp://yp.gates96.com/2/54/28/34.html\nhttp://yp.gates96.com/2/54/28/96.html\nhttp://yp.gates96.com/2/54/29/49.html\nhttp://ftp.sunet.se/pub/NT/mirror-microsoft/KB/Q134/3/40.TXT\nhttp://members.tripod.com/joellogan/_cranedisc/000001d9.htm\nhttp://members.tripod.com/joellogan/_cranedisc/000001cd.htm\nhttp://www.ualberta.ca/CNS/RESEARCH/Software/SAS/vms/z-inf-zd.htm\nhttp://www1.galaxy.com/galaxy/Leisure-and-Recreation/Games/Computer-Games/Titles/Virtual-Reality/Golf.html\nhttp://www1.galaxy.com/galaxy/Leisure-and-Recreation/Games/Computer-Games/Titles/Virtual-Reality/Red-Planet.html\nhttp://www.uni-duesseldorf.de/ftp/ftp/software/opt/zlib-1.1.2/?N=D\nhttp://acbanks.know-where.com/acbanks/cgi/selection?place=Cavecreek&state=AZ\nhttp://yp.gates96.com/10/26/70/49.html\nhttp://yp.gates96.com/10/26/70/83.html\nhttp://yp.gates96.com/10/26/72/40.html\nhttp://yp.gates96.com/10/26/74/89.html\nhttp://yp.gates96.com/10/26/75/15.html\nhttp://yp.gates96.com/10/26/75/19.html\nhttp://yp.gates96.com/10/26/76/87.html\nhttp://yp.gates96.com/10/26/78/18.html\nhttp://yp.gates96.com/10/26/78/76.html\nhttp://yp.gates96.com/10/26/78/78.html\nhttp://yp.gates96.com/10/26/78/81.html\nhttp://cpan.nitco.com/modules/by-module/Devel/ADESC/Pod-DocBook-0.03.readme\nhttp://www2.el-mundo.es/nuevaeconomia/2000/NE047/NE047-03b.html\nhttp://www.familyeducation.com/whatworks/inappr_material/entry/1,2549,1-10119-1948-3469,00.html\nhttp://ftp.nodomainname.net/pub/linux/daemons/raid/beta/\nhttp://192.80.57.161/corp/press/vannet.html\nhttp://digilander.iol.it/mirkodeli/Stagioni/CI6_index.html\nhttp://www.world-of-webs.de/magdeburg-in-bildern/_inhalt/_statnif/rechts/035.htm\nhttp://ftpsearch.belnet.be/mirrors/src.doc.ic.ac.uk/usenet/usenet-by-hierarchy/rec/travel/?D=A\nhttp://mirrortucows.technet.it/winme/netmiscme_rating.html\nhttp://my.egroups.com/message/imperiumlarp/3148\nhttp://ep.com/js/about/c7857/b0/34551.html\nhttp://webcrawler-sports.excite.com/ncaab/matchup/pafmax/\nhttp://www2.dbusiness.com/Quotes/1,1125,MSP_CORE,00.html?Ticker=CORE\nhttp://tucows.wlink.com.np/regist95_size.html\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041162.1.5960744054\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/71113000008423000000947720000021551/Labels.wo/168310000011551/1.0.1/3/Webobjects1\nhttp://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/71113000008423000000947720000021551/Labels.wo/168310000011551/1.1.3.0.0/3/Webobjects1\nhttp://www.adcentral.com/cgi-bin/w3com/pws/adsites/vNhIXgVh_sji0rjcKc_GbuSlgBaEnCmKXU4ARmeefaqktCE3zwLsoXKDK_dlzoBzk2Ygr2cAuqN51PKOA0JxjzLEpPe-kic9TtvUJMbXG9Dlw8SggmHugQpwzjo-NiuofbUz4obq\nhttp://ring.omp.ad.jp/archives/NetBSD/NetBSD-current/src/distrib/i386/floppies/ramdisk-big/Makefile\nhttp://unofficial.capital.edu/students/alittle/\nhttp://213.36.119.69/do/session/153005/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/promotions/promo9.html\nhttp://213.36.119.69/do/session/153005/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/GB_EN/\nhttp://www.riello-hamburg.de/mSerieRSBLU_130_465kw.htm\nhttp://tucows.knoware.nl/winnt/filesplitnt_license.html\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/n/h/b/b/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/n/h/b/c/\nhttp://caller-times.com/1999/july/13/today/national/3143.html\nhttp://news.fm365.com/jiaoyu/20000804/113896.htm\nhttp://variety.studiostore.com/browse/ILOVELUCY/CAP/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.qyPsT2fz\nhttp://www.ferien-immobilien.de/bayern/ingolstadt/Verkauf/Gemeinsam/Immolink/3d-service/Private-IB/Startseite/Gemeinsam/vertriebspartner.htm\nhttp://jefferson.village.virginia.edu/wax/japanese/0front/cd/1/1a2a9a2.html\nhttp://space.tin.it/scuola/ermenegh/thewall/il2.htm\nhttp://www.maasvlakte-cam.nl/webcams/17/kremlin__moscou__russia/2000/02/29/?D=A\nhttp://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=211.topic\nhttp://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=214.topic\nhttp://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=210.topic\nhttp://www.kaos.dk/sexriddle/x/u/e/s/p/\nhttp://www.kaos.dk/sexriddle/x/u/e/s/q/\nhttp://amc.hollywood.com/maltin/k/kellysheroes-1970.htm\nhttp://amc.hollywood.com/maltin/k/kidsarealrightthe-1979.htm\nhttp://amc.hollywood.com/maltin/k/killingofsistergeorgethe-1968.htm\nhttp://amc.hollywood.com/maltin/k/kingandcountry-1964.htm\nhttp://amc.hollywood.com/maltin/k/kinglear-1987.htm\nhttp://amc.hollywood.com/maltin/k/kingofthezombies-1941.htm\nhttp://amc.hollywood.com/maltin/k/kingqueenknave-1972.htm\nhttp://amc.hollywood.com/maltin/k/kissthe-1988.htm\nhttp://www.egroups.com/login.cgi?login_target=%2Fgroup%2Ft-ida\nhttp://polygraph.ircache.net:8181/faculty/http_-2www.stopwaste.org/freecontent.html\nhttp://kutschen.de/Schoner/literature/Literatur/models/collections/\nhttp://www.incestpornstories.com/cum-sex-pics/anal-sexone-night-stand/big-bonedpleasantly-plump/smallwomen/{hardcorelink}\nhttp://www.nytimes.com/library/financial/102897market-turmoil.html\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/http_-2www.ci.alameda.ca.us/main_left.html\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/http_-2www.ci.alameda.ca.us/dream.htm\nhttp://www.chiayi.gob.tw/\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d77/b77,c,4d,51,51,df1,df1,,4e,2b62,4d,4e,2b62,,\nhttp://citeseer.nj.nec.com/cidcontext/6361\nhttp://citeseer.nj.nec.com/cidcontext/6456\nhttp://utenti.tripod.it/Psychozine/Grunge/Creed_MyOwnPrison.htm\nhttp://tucows.multiweb.net/winme/adnload/138210_30315.html\nhttp://tucows.multiweb.net/winme/adnload/138190_29551.html\nhttp://tucows.multiweb.net/winme/adnload/138218_29576.html\nhttp://tucows.multiweb.net/winme/preview/138219.html\nhttp://playsky.home.chinaren.com/star_region/11.htm\nhttp://tucows.phnet.fi/winme/adnload/137614_29054.html\nhttp://www.fortunecity.com/millennium/blyton/118/www.bih.net.ba/~sda\nhttp://www11.informatik.tu-muenchen.de/lehre/lectures/ws2000-01/hypermedia/extension/html-kurz/hm2.2.4.2-navigation.html\nhttp://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033737\nhttp://www.eud.com/1997/03/20/20324A.shtml\nhttp://ftp.net.uni-c.dk/pub/linux/mandrake/i586/Mandrake/mdkinst/usr/share/locale/gl/?N=D\nhttp://no.sport.yahoo.com/s/snowboard-1.html\nhttp://www.egroups.com/login.cgi?login_target=%2Fmessages%2Fshamanism%2F1311\nhttp://yp.gates96.com/5/82/70/13.html\nhttp://yp.gates96.com/5/82/70/74.html\nhttp://yp.gates96.com/5/82/71/30.html\nhttp://yp.gates96.com/5/82/71/44.html\nhttp://yp.gates96.com/5/82/72/22.html\nhttp://yp.gates96.com/5/82/72/72.html\nhttp://yp.gates96.com/5/82/72/88.html\nhttp://yp.gates96.com/5/82/73/60.html\nhttp://yp.gates96.com/5/82/73/79.html\nhttp://yp.gates96.com/5/82/74/21.html\nhttp://yp.gates96.com/5/82/74/59.html\nhttp://yp.gates96.com/5/82/74/62.html\nhttp://yp.gates96.com/5/82/74/75.html\nhttp://yp.gates96.com/5/82/74/78.html\nhttp://yp.gates96.com/5/82/75/30.html\nhttp://yp.gates96.com/5/82/75/32.html\nhttp://yp.gates96.com/5/82/75/82.html\nhttp://yp.gates96.com/5/82/76/16.html\nhttp://yp.gates96.com/5/82/76/43.html\nhttp://yp.gates96.com/5/82/76/72.html\nhttp://yp.gates96.com/5/82/77/48.html\nhttp://yp.gates96.com/5/82/77/99.html\nhttp://yp.gates96.com/5/82/78/73.html\nhttp://yp.gates96.com/5/82/79/28.html\nhttp://yp.gates96.com/5/82/79/70.html\nhttp://yp.gates96.com/5/82/79/83.html\nhttp://polygraph.ircache.net:8181/http_-2www.microsoft.com/ie/http_-2www.petrophysics.com/http_-2www.uio.no/~thomas/lists/info.html\nhttp://www.munster-express.ie/000623/sports1.htm\nhttp://cisne.sim.ucm.es/search*spi/aThiollier,+FranÃÂÃÂ§ois-JoÃÂÃÂ«l,+int./athiollier+francois+joel+int/-5,-1,0,B/marc&F=athion+soriano+molla+dolores&2,,2\nhttp://www.zjdaily.com.cn/gb/2000/10/05/zjrb0625/guoji/6.htm\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC70A38_9815_E7A26CDF19A4AB167DD4B69EFB5B17FC\nhttp://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceUserProfile-BBC70A38_9815_E7A26CDF19A4AB167DD4B69EFB5B17FC\nhttp://www.shopworks.com/tools/index.cfm/action/search/userid/0003875B-2E5B-19FE-AF65010C0A0A8CF2\nhttp://www.doofpot.nl/~lists/bugtraq/October-99/frm00087.html\nhttp://shop.citde.net/b79923.htm\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=divinizzarono&l=it\nhttp://pub8.ezboard.com/fwrestlecarwwf.showAddReplyScreenFromWeb?topicID=38.topic\nhttp://amrr.com/agents/contact.html?Agents_id=4046\nhttp://www.intellicast.com/LocalWeather/World/UnitedStates/Southeast/NorthCarolina/CarolinaBeach/RAINcast/d1_12/bannerAd.shtml\nhttp://www.ferien-immobilien.de/schleswig-holstein/nordfriesland/Verkauf/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/IIM-Teil/Startseite/Gemeinsam/Inserieren/inserieren.htm\nhttp://www.ferien-immobilien.de/schleswig-holstein/nordfriesland/Verkauf/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/IIM-Teil/Startseite/Gemeinsam/feedback.html\nhttp://de.excite.com/jobs/katalog/10349\nhttp://pub16.ezboard.com/frealitycheck95307youadoreus.showAddReplyScreenFromWeb?topicID=33.topic\nhttp://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2424/b77,e,4d,51,51,df1,df1,,978,,51,978,815,,51,815,\nhttp://dk.egroups.com/message/noholdsbarred/2138\nhttp://kr.news.yahoo.com/headlines/so/20001029/hankook/2000102919513187338.html\nhttp://www.buybuddy.com/sleuth/27/1/11002/508910/\nhttp://yp.gates96.com/13/95/50/10.html\nhttp://yp.gates96.com/13/95/50/47.html\nhttp://yp.gates96.com/13/95/51/16.html\nhttp://yp.gates96.com/13/95/51/17.html\nhttp://yp.gates96.com/13/95/51/21.html\nhttp://yp.gates96.com/13/95/51/76.html\nhttp://yp.gates96.com/13/95/53/5.html\nhttp://yp.gates96.com/13/95/54/17.html\nhttp://yp.gates96.com/13/95/54/44.html\nhttp://yp.gates96.com/13/95/54/67.html\nhttp://yp.gates96.com/13/95/54/80.html\nhttp://yp.gates96.com/13/95/55/67.html\nhttp://yp.gates96.com/13/95/56/15.html\nhttp://yp.gates96.com/13/95/56/91.html\nhttp://yp.gates96.com/13/95/57/9.html\nhttp://yp.gates96.com/13/95/57/12.html\nhttp://yp.gates96.com/13/95/57/24.html\nhttp://yp.gates96.com/13/95/57/30.html\nhttp://yp.gates96.com/13/95/57/46.html\nhttp://yp.gates96.com/13/95/58/38.html\nhttp://yp.gates96.com/13/95/58/52.html\nhttp://yp.gates96.com/13/95/58/80.html\nhttp://yp.gates96.com/13/95/59/40.html\nhttp://yp.gates96.com/13/95/59/78.html\nhttp://ftp.net.uni-c.dk/pub/linux/mandrake/i586/Mandrake/mdkinst/usr/share/locale/gv/?S=A\nhttp://home.swipnet.se/~w-10458/sksida.htm\nhttp://www.irishnews.com/k_archive/260799/nnews14.html\nhttp://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/potato-jp/contrib/binary-all/admin/?M=A\nhttp://ayasii.virtualspace.net/html/1104/11041141_syuuei_yosimi008.htm\nhttp://ayasii.virtualspace.net/html/1104/11041104_nakamura_yuma_2_027.htm\nhttp://kikakusvr3.city.yokohama.jp/yhspot/ysc/prelaunch.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=0,1-20,0-9,1-9,2\nhttp://209.52.189.2/discussion.cfm/disco_music/7738/79749\nhttp://www.du-et.net/cgi/mail.cgi?NickName=coota\nhttp://ustlib.ust.hk/search*chi/a%7B214c7d%7D%7B213837%7D%7B213c44%7D%7B213779%7D%7B214267%7D%7B21586d%7D%7B21515b%7D%7B21517c%7D%7B213966%7D/a{214c7d}{213837}{213c44}{213779}{214267}{21586d}{21515b}{21517c}{213966}/7,-1,0,B/browse\nhttp://user.alpha.co.kr/~backspin/CGI-BIN/upload/files/\nhttp://194.174.50.23/cgi-bin/FisRun/InsertExhibitorIntoNotebook/1/interpack99/e/1217\nhttp://www.paxcapital.com/news/datacenter/200010/27/20001027180508_01.shtml\nhttp://www.paxcapital.com/news/datacenter/200010/27/20001027175828_07.shtml\nhttp://www.paxcapital.com/news/datacenter/200010/27/20001027173309_53.shtml\nhttp://www.paxcapital.com/news/datacenter/200010/27/20001027165004_52.shtml\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?lantz::325.html\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/ports/alpha/packages-current/x11-toolkits/?D=A\nhttp://hotop.on.net.cn/diguo/club/disp.asp?owner=A205&ID=914\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/041137.1.3501106310\nhttp://debian.linux.org.tw/debian/dists/frozen/non-free/binary-m68k/mail/?N=D\nhttp://cafe5.daum.net/Cafe-bin/Cafe.cgi/member?cafe=LOTTEcleaning\nhttp://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/root_gui/data/?sortby=date\nhttp://www.concentric.net/~Psaros/DbzUncensored/editorial/edit06-07-98.html\nhttp://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5093.html\nhttp://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5070.html\nhttp://www.cricket.org/link_to_database/ARCHIVE/1999/OTHERS+ICC/NL_LOCAL/EERSTEKL/VCC_ASIAN-SHAH_EERSTEKL_16MAY1999.html\nhttp://health.phinfo.sc.cn/navigator/illness_treatment/diseases_conditions/bone_diseases/spinal_column_injury/default.htm\nhttp://cn.egroups.com/message/dfwscan/1412\nhttp://www.babyheirlooms.com/catalog/htmlos.cat/001255.1.1999922108\nhttp://ibm1.cicrp.jussieu.fr/ibmc/classref/ref/UFullStopNumber_DSC.htm\nhttp://pda.tucows.fi/palm/adnload/33651_21862.html\nhttp://www.fogdog.com/cedroID/ssd3040183330232/nav/products/nhl/chicago_blackhawks/fan/gender/fashion_polo_shirts/\nhttp://www.fogdog.com/cedroID/ssd3040183330232/nav/products/nhl/chicago_blackhawks/fan/gender/nylon_jackets/\nhttp://www.5a8.com/book/wg/zpj/d/delaisai/mgbj/004.htm\nhttp://www.5a8.com/book/wg/zpj/d/delaisai/mgbj/050.htm\nhttp://jars.developer.com//classes/jresout.cgi?resource=1133\nhttp://dwp.bigplanet.com/billbritton/files/edit.nhtml\nhttp://members.tripod.co.jp/snow4/?D=A\nhttp://www.lanoticia.com.ni/cronologico/2000/julio/15sabado/capital/capital5.html\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1996/4/0/870960/\nhttp://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1996/4/0/870950/\nhttp://ftp.ccu.edu.tw/pub/packages/dns/bind/src/8.1.1/\nhttp://www.chez.com/photographies/photos/paysage/page8.htm\nhttp://www.ayto-malaga.es/Organismos/Urbanismo/PGMOM/Hojas/calificacion/3/47/34734.htm\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=3,24,5,18\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=9,24,5,18\nhttp://variety.studiostore.com/browse/STARWARSTRIL/PHOTO/b.MOVIES%20STARWARSSAGA%20STARWARSTRIL/s.5FhZToe4\nhttp://www.stud.ntnu.no/~kjonigse/pod/\nhttp://eastday.com/epublish/gb/paper10/20001025/class001000011/hwz225792.htm\nhttp://eastday.com/epublish/gb/paper10/20001025/class001000011/hwz225253.htm\nhttp://www.jamba.de/KNet/_KNet-KdS8j1-IHd-13g8y/browse.de/node.0/cergpnwyt\nhttp://www.la-verdad.com/pg000828/suscr/primera.htm\nhttp://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/listUnseen/fol/100020/20,0/1338881\nhttp://ftp.du.se/disk4/FreeBSD/ports/ports/japanese/libicq/pkg-comment\nhttp://www.geocities.com/SunsetStrip/Towers/2395/\nhttp://www.geocities.com/joanna_luo\nhttp://www.geocities.com/eric_wang_tafe\nhttp://www.geocities.com/shsugiharto\nhttp://wynnsystems.com/79I_5ase/seek/modifyUser.html\nhttp://www.uk.cricket.org/link_to_database/INTERACTIVE/REVIEWS/BOOKS/barry14.html\nhttp://perso.wanadoo.fr/alain.falgas/poesie1.htm\nhttp://www.linux.com/networking/network/windows_nt/support/tools/SAP/\nhttp://www.rdnet.nl/provstaten1999/491ps.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1998/03/19/FEATURES3VQ.html\nhttp://myhome.naver.com/myclass46\nhttp://www.bride.ru/htcgi/ladies/in-26-30/index3.html\nhttp://www.internet-verzeichnis.de/branchen/schuhreparaturen/nordrhein-westfalen/\nhttp://dk.egroups.com/post/SonyMavica?act=reply&messageNum=3370\nhttp://www.sneezy.org/Databases/Composers/Instrumentation/008889.html\nhttp://www.sneezy.org/Databases/Composers/Instrumentation/009161.html\nhttp://fatema2.math.nat.tu-bs.de/doc/sdb/de/html/keylist.LARGEEBDA.html\nhttp://ssb.no/kommuner/hoyre_side.cgi?region=1931\nhttp://www.egroups.com/subscribe/mentemalata\nhttp://www.debian.org.cn/Bugs/db/67/67056-b.html\nhttp://dk.egroups.com/message/ssrdistribution/775?source=1\nhttp://link.fastpartner.com/do/session/600429/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/shopnett.php\nhttp://ftp.uk.debian.org/debian/dists/stable/main/binary-arm/text/?D=A\nhttp://www.bemi-immobilien.de/IIM-Teil/Startseite/Top-Darlehens-Konditionen/Gemeinsam/3d-service/Startseite/Gemeinsam/erreichenPartner/Top-Darlehens-Konditionen/anforderungsformular.htm\nhttp://www.fujian-window.com/Fujian_w/news/mdrb/000816t/1_4.html\nhttp://scholar.lib.vt.edu/VA-news/WDBJ-7/script_archives/98/0798/070498/?D=A\nhttp://polygraph.ircache.net:8181/services/define/html/President.asp\nhttp://old-maps.co.uk/10lancs191/HTML/nav_19034001g.htm\nhttp://www.hanter21.co.kr/NetBBS/Bbs.dll/prdata/lst/qqa/f/qqo/000D/zka/B2-kB2-r\nhttp://w3.webtourist.net/travel/europe/italy/milan/quarkallsuites.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,5+0,0-9,6-0,1\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=brillantant&l=fr\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=brillantais&l=fr\nhttp://www.mathquest.com/~sarah/HTMLthreads/geopre.descriptions.html\nhttp://www.retrobytes.org/classiccmp/9706/msg00827.html\nhttp://www.retrobytes.org/classiccmp/9706/msg01408.html\nhttp://www.rdnet.nl/provstaten1999/552ps.html\nhttp://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp\nhttp://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp\nhttp://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/privacy_policy.asp\nhttp://de.news.yahoo.com/000322/36/nfqj.html\nhttp://www.kl.gz.cn/~cco/FUNA022K.htm\nhttp://www.launch.com/music/artistpage/pvn_content/0,5219,1013738_videos,00.html\nhttp://www14.freeweb.ne.jp/play/kiryuus/keith-burn1-end.htm\nhttp://variety.studiostore.com/help/b.MOVIES%20STARWARSSAGA%20STARWARSTRIL/s.BmesFhV7\nhttp://biblioteca.upv.es/bib/doc/doc_siglibros/1828105/26/25/////MLTPAID/Materia%20Lengua%20inglesa%20técnica:%20254/V\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/_AhIPkFr0_eq7P6TUMbkQGJgpHJOXqtNLZQ55qFmeZARJaJUKHP9RBX3tPWaLEWVLZ_-PAErnbukTTJzs-x0hew4G_r3S85M8fDFaJcIVi3EA4TxNjTbbGIaSLhr8VdNICuBwhPmgZEt662B\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/IxhI6dPotFAZDugwPbV2pjvsgvIvAP-oFtIZfMptEKMo48cUO8RmvG3Akuk2tktzM_RYBY3yIQE6nl7I2moLEV_nScO7wTfWpFfPR7LHZ3ntJxKS8-a_IukWT4q_o6mjhGw8SSwm\nhttp://www.rge.com/pub/languages/perl/clpa/1995-11/171\nhttp://www.rge.com/pub/languages/perl/clpa/1995-11/186\nhttp://www.newmgm.com/cgi-bin/c2k/title_talent.html&id=146091&title_star=FOURFEAT\nhttp://www.koreaweekly.co.kr/entertain/book/200009/en20000922185938E701133.htm\nhttp://www.koreaweekly.co.kr/entertain/book/200008/en20000824183337E701112.htm\nhttp://www.genome.wustl.edu:8021/pub/gsc10/nci/wl/wl72/?N=D\nhttp://yp.gates96.com/13/50/70/33.html\nhttp://yp.gates96.com/13/50/70/36.html\nhttp://yp.gates96.com/13/50/70/53.html\nhttp://yp.gates96.com/13/50/71/74.html\nhttp://yp.gates96.com/13/50/72/13.html\nhttp://yp.gates96.com/13/50/72/17.html\nhttp://yp.gates96.com/13/50/72/83.html\nhttp://yp.gates96.com/13/50/73/48.html\nhttp://yp.gates96.com/13/50/73/79.html\nhttp://yp.gates96.com/13/50/73/96.html\nhttp://yp.gates96.com/13/50/74/14.html\nhttp://yp.gates96.com/13/50/74/57.html\nhttp://yp.gates96.com/13/50/75/13.html\nhttp://yp.gates96.com/13/50/75/19.html\nhttp://yp.gates96.com/13/50/75/30.html\nhttp://yp.gates96.com/13/50/75/42.html\nhttp://yp.gates96.com/13/50/75/53.html\nhttp://yp.gates96.com/13/50/75/90.html\nhttp://yp.gates96.com/13/50/77/45.html\nhttp://yp.gates96.com/13/50/77/51.html\nhttp://yp.gates96.com/13/50/77/79.html\nhttp://yp.gates96.com/13/50/78/12.html\nhttp://yp.gates96.com/13/50/78/47.html\nhttp://yp.gates96.com/13/50/78/69.html\nhttp://yp.gates96.com/13/50/78/96.html\nhttp://www.tel.de/s/M/MSS.htm\nhttp://linux.usu.edu/LDP/LDP/LG/issue23/shoham/node4.html\nhttp://www.monaco.gouv.mc/dataweb/gouvmc.nsf/(NewsActu)/d28eaee29b3287d4c1256905004e1ef1!OpenDocument&ExpandSection=9,3,10.1,7,10.4,10.2,5,8,4\nhttp://fi.egroups.com/post/romtrade?act=reply&messageNum=5198\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/erhIHCd-6X--WwWIQBR9tYYraJWo8ugur0GyAl8pg21sE-lotAURKodv9HAYnRuTT4ZM0aCKsA5ZVLlq8sgiFNqA4DyAY_GVTyPIEARrzArj8JrWabVCSpg03afQ_Xg3DaCQA17080y7T4EZ\nhttp://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=BLOCK_1/AAMSZ=120x90/ACC_RANDOM=619055616855\nhttp://cafe6.daum.net/Cafe-bin/Bbs.cgi/MyLoveNYpds/qry/zka/B2-kB23m/qqatt/^\nhttp://cafe6.daum.net/Cafe-bin/Bbs.cgi/MyLoveNYpds/qry/zka/B2-kB2-s/qqatt/^\nhttp://sas.uoregon.edu/sashtml/proc/z0292518.htm\nhttp://www02.geocities.co.jp/PowderRoom-Rose/1346/flower02image.html\nhttp://www02.geocities.co.jp/PowderRoom-Rose/1346/sozaiheart2.html\nhttp://www.jamba.de/KNet/_KNet-sXN8j1-9Hd-13ej3/admLogin.de/node.0/cdn3r3qy3\nhttp://iccardreader.co.kr/\nhttp://online.linux.tucows.com/conhtml/ser_irc_size.html\nhttp://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1b/bibs/\nhttp://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1c/jackets/\nhttp://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1d/heavyweight_tops/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380883/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/l/y/t/c/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/l/y/t/o/\nhttp://ftp1.se.debian.org/debian/dists/stable/main/disks-alpha/2.2.8-2000-03-08/jensen/\nhttp://213.36.119.69/do/session/153006/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/contact/recrute.htm\nhttp://www10.freeweb.ne.jp/photo/myukun2/cosplay/000130/0130_40.htm\nhttp://l-infonet.phkk.fi/fi/TIETOPALVELUT/JULKINEN+HALLINTO/tiedonhaku/artikkelit/hakupalvelut/l%E4%E4ketiede/tietokannat/\nhttp://202.109.72.57/article/20000903/67099.htm\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/5xhIsrJ5LBhn_gBogN2-VgQ1DA6WvBlLMjSoxYeQAJ1ig69sK1i1DhQ5hA3iOw7y6Wb_HDA2rkG5aJy9DrUMZxD31cyUqEqg7LeZ3pssb70DsyPc1sGCTVIRFBz1Nb_1ikEcJ3ds\nhttp://ftp.gwdg.de/pub/misc/standards/infomagic/nist/oiw/agreemnt/read_me.txt\nhttp://linuxberg.arrakis.es/conhtml/adnload/8894_17109.html\nhttp://ring.toyama-ix.net/archives/pc/winsock-l/WWW-Browsers/Plug-In/ppp16124.txt\nhttp://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20040288/-5,-1,0,B/frameset&F=bp20040286&1,1\nhttp://ftp.darenet.dk/tucows/winme/adnload/137475_28966.html\nhttp://ftp.darenet.dk/tucows/winme/adnload/137525_29009.html\nhttp://elib.zib.de/pub/UserHome/Mueller/Course/Tutorial/Postscript/US/?M=A\nhttp://greenpeace.lu/Admin/usage/weekly/1999/01/03/\nhttp://greenpeace.lu/Admin/usage/weekly/1998/04/26/\nhttp://greenpeace.lu/Admin/usage/weekly/1998/08/16/\nhttp://greenpeace.lu/Admin/usage/weekly/1997/10/12/\nhttp://retailer.gocollect.com/do/session/1912819/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/index.asp\nhttp://www.kusastro.kyoto-u.ac.jp/LCs/index/AURAU.html\nhttp://www.linux.com/networking/network/windows_nt/support/microsoft/Red_Hat/\nhttp://www.linux.com/networking/network/windows_nt/support/microsoft/operating_system/\nhttp://www.linux.com/networking/network/windows_nt/support/microsoft/SAP/\nhttp://www.linux.com/networking/network/windows_nt/support/microsoft/Unix/\nhttp://www.linux.com/networking/network/windows_nt/support/microsoft/pop-3/\nhttp://www.cs.rit.edu/photo_album/smr3632.html\nhttp://www.cpan.dk/CPAN/modules/by-authors/id/C/CH/CHRMASTO/?D=A\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/ego.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/lit/multiple.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/misc/dissert.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/misc/peanuts.html\nhttp://www.eastsidejournal.com/sited/retr_story.pl/25409\nhttp://yp.gates96.com/8/46/50/23.html\nhttp://yp.gates96.com/8/46/52/6.html\nhttp://yp.gates96.com/8/46/52/10.html\nhttp://yp.gates96.com/8/46/52/18.html\nhttp://yp.gates96.com/8/46/52/25.html\nhttp://yp.gates96.com/8/46/53/78.html\nhttp://yp.gates96.com/8/46/53/95.html\nhttp://yp.gates96.com/8/46/54/26.html\nhttp://yp.gates96.com/8/46/54/41.html\nhttp://yp.gates96.com/8/46/54/64.html\nhttp://yp.gates96.com/8/46/54/76.html\nhttp://yp.gates96.com/8/46/54/92.html\nhttp://yp.gates96.com/8/46/55/62.html\nhttp://yp.gates96.com/8/46/55/94.html\nhttp://yp.gates96.com/8/46/55/98.html\nhttp://yp.gates96.com/8/46/56/19.html\nhttp://yp.gates96.com/8/46/56/42.html\nhttp://yp.gates96.com/8/46/56/86.html\nhttp://yp.gates96.com/8/46/58/53.html\nhttp://yp.gates96.com/8/46/58/57.html\nhttp://yp.gates96.com/8/46/59/41.html\nhttp://yp.gates96.com/8/46/59/44.html\nhttp://yp.gates96.com/8/46/59/84.html\nhttp://yp.gates96.com/8/46/59/99.html\nhttp://www.158.com.cn/news/2000/09/03/58946.htm\nhttp://www.pobladores.com/territorios/juegos/Shanodin/pagina/2\nhttp://www.otemachi.ibm.co.jp/pc/vlp/ca20/32l9068/price.html\nhttp://www.gutenberg2000.de/lessing/sinnged/sinna10.htm\nhttp://www.gutenberg2000.de/lessing/sinnged/sinn138.htm\nhttp://www.gutenberg2000.de/lessing/sinnged/sinnc27.htm\nhttp://www.gutenberg2000.de/lessing/sinnged/sinnc06.htm\nhttp://calcul.si.uji.es/Programes/SAS/stat/chap4/sect5.htm\nhttp://calcul.si.uji.es/Programes/SAS/stat/chap4/sect6.htm\nhttp://link.fastpartner.com/do/session/600436/vsid/3194/tid/3194/cid/137201/mid/1060/rid/2105/chid/3194/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/learn.htm\nhttp://www.linux.com/networking/network/red_hat/performance/workstations/business/\nhttp://ftp.dei.uc.pt/pub/faqs/backrubs/faq/?D=A\nhttp://www2.el-mundo.es/nuevaeconomia/2000/NE022/NE022-16b.html\nhttp://ring.toyama-ix.net/pub/linux/linuxppc-jp/2.0/UsersGuide/?N=D\nhttp://www.egroups.com/message/swchicks-rpg/763\nhttp://webraft.its.unimelb.edu.au/705195/students/caitlinb/pub/?N=D\nhttp://cn.egroups.com/message/indexinvesting/17\nhttp://networkdesigner.subportal.com/sn/Programming/Setup_Utilities/11753.html\nhttp://www.imagestation.com/member/?name=Mermaid34v&c=1\nhttp://crn.com/Components/TalkBack/tb-read.asp?ArticleId=8463\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/lit/computers/music/linux/misc/thoughts/turingtest.html\nhttp://www.egroups.com/message/house_caliburnus/1479\nhttp://pub14.ezboard.com/BBSForum.showForumSearch?boardName=bleemtest\nhttp://spaceports.tucows.com/winme/adnload/136943_28461.html\nhttp://www.cerent.com/warp/public/767/spcl/vaccess/req-lab.html\nhttp://www.ualberta.ca/icons/icons/numbers/Big-orange-thin/\nhttp://www.gencat.es/cgi-bin/bc/drawer.cgi/LD/0004/A00027?98\nhttp://interhotel.com/romania/en/hoteles/49235.html\nhttp://www.infoscape.com.cn:8171/nf/0001/19/nfzx1908.htm\nhttp://www.hurriyetim.com/akdeniz/turk/00/05/25/akdhab/62akd.htm\nhttp://www.hurriyetim.com/akdeniz/turk/00/05/25/akdhab/38akd.htm\nhttp://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody-jp/contrib/binary-ia64/misc/?M=A\nhttp://www.angelfire.com/vt/Mystical2\nhttp://www.indonesiansources.com/HELP/COOKIES.HTM\nhttp://members.nbci.com/cmeadows/gvi/45regt/45gvibat.html\nhttp://members.nbci.com/cmeadows/gvi/45regt/45gvicob.html\nhttp://landview.census.gov/hhes/www/housing/soma/char96/ch96tab5.html\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPENNSYLVANIAdENERGYdASSISTANCEdANDdCONSERVATIONdACT.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPENNSYLVANIAdSEWAGEdFACILITIESdACT.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPODIATRYdPRACTICEdACT.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPRESIDENT.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPRIVATEdMORTGAGEdINSURANCEdACT.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPROJECTd500.HTM\nhttp://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPUBLICdWORKSdCONTRACTdREGULATIONdLAW.HTM\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/inventor/apps/samples/4view/Attic/Imakefile?only_with_tag=MAIN\nhttp://oss.sgi.com/cgi-bin/cvsweb.cgi/inventor/apps/samples/4view/Attic/Imakefile?only_with_tag=HEAD\nhttp://www4.50megs.com/justiceinn/charpages/leaves/707.html\nhttp://www4.50megs.com/justiceinn/charpages/leaves/859.html\nhttp://www4.50megs.com/justiceinn/charpages/leaves/171.html\nhttp://www4.50megs.com/justiceinn/charpages/leaves/114.html\nhttp://megalink.tucows.com/win2k/adnload/38582_28844.html\nhttp://members.tripod.lycos.nl/monthlysports/hello_and_welkom_at_the_new.htm\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4558.html\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4462.html\nhttp://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4813.html\nhttp://pub4.ezboard.com/factiveprodiscussioncommunityhottopicsresidentsandalcohol.showMessage?topicID=3.topic\nhttp://207.138.41.133/subscribe/IndoVStudio\nhttp://www.biuemountain.com/eng3/karen/EArejoice.html\nhttp://polygraph.ircache.net:8181/wwwboard/capabilities/http_-2www.westnebr.net/http_-2www.excite.com/grservic.htm\nhttp://pub7.ezboard.com/fturonneuemissionennebenwerteundsonstigewerte.showAddReplyScreenFromWeb?topicID=58.topic\nhttp://dk.egroups.com/post/badbart-showdown?act=forward&messageNum=679\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus62920/eus62921/eus64894/eus170276/eus163832/\nhttp://www.algonet.se/~d88628/engelsk/various.htm\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=220&discrim=220,215,11\nhttp://www.z-plus.de/TEXTE/INETCO/AUSG20000524/text7.html\nhttp://www.gbnf.com/genealog2/varner/html/d0059/I11636.HTM\nhttp://www.musiciansfriend.com/ex/ds/live/001030183152064208037007463633\nhttp://www.musiciansfriend.com/ex/ds/home/001030183152064208037007463633?dbase=info,order_info.html\nhttp://www.musiciansfriend.com/ex/ds/guitar/amps/001030183152064208037007463633?dbase=info,contact.html\nhttp://pix.egroups.com/message/ipe/1642?source=1\nhttp://213.36.119.69/do/session/153008/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://resa.travelprice.com/CallCenter/InitCommunicationAgence\nhttp://213.36.119.69/do/session/153008/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/DE_DE/\nhttp://www.egroups.com/message/peninsulaserv/567\nhttp://www.scifi.com/bboard/browse.cgi/1/5/545/12425?pnum=3\nhttp://no.egroups.com/post/icc-info?act=reply&messageNum=759\nhttp://www.chaos.dk/sexriddle/s/e/x/e/c/s/l/\nhttp://www.chaos.dk/sexriddle/s/e/x/e/c/s/t/\nhttp://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/search/972959630--\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=6,29,20,36,32\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,29,20,36,32\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,29,20,36,32\nhttp://dada.linuxberg.com/gnomehtml/adnload/31471_2540.html\nhttp://augustasports.com/football99/college/box_50347.shtml\nhttp://augustasports.com/football99/college/box_50365.shtml\nhttp://augustasports.com/football99/college/box_50423.shtml\nhttp://www.linux.com/networking/network/enterprise/e-commerce/management/open_source/\nhttp://usol.pdacentral.com/winnt/preview/1946.html\nhttp://usol.pdacentral.com/winnt/preview/78287.html\nhttp://usol.pdacentral.com/winnt/preview/1338.html\nhttp://usol.pdacentral.com/winnt/preview/12860.html\nhttp://usol.pdacentral.com/winnt/preview/6920.html\nhttp://usol.pdacentral.com/winnt/preview/51381.html\nhttp://ring.htcn.ne.jp/pub/lang/perl/CPAN/authors/id/W/WO/?N=D\nhttp://grybrd.subportal.com/sn/Network_and_Internet/Text_Chat_Clients/index1.html\nhttp://www.gurlpages.com/lacej/part13.html\nhttp://ring.shibaura-it.ac.jp/archives/mac/info-mac/game/com/wolf/?D=A\nhttp://cgi.cnnsi.com/baseball/mlb/nl/gamelog/2000/10/07/mets_giants/\nhttp://my.egroups.com/messages/not_honyaku/236\nhttp://members.tripod.com/agran_gassendi/Countdown.htm\nhttp://www.tccomputers.com/cgi-bin/bp/1878637479/showcase/showcase.htm\nhttp://207.138.41.133/message/AikensTrivia/264\nhttp://207.138.41.133/message/AikensTrivia/276\nhttp://www.shumway.org/thetree/ped13583.htm\nhttp://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/dk/\nhttp://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/politiken.php\nhttp://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm\nhttp://in.egroups.com/message/canada/856\nhttp://in.egroups.com/message/canada/883\nhttp://debian.tod.net/OpenBSD/src/lib/libssl/README.OPENBSD\nhttp://www.emerchandise.com/main/EMERCH/s.1M38gYrZ\nhttp://www.emerchandise.com/browse/TOYSTORY2/FIGURINE/b.FAVORITES%20COMICS%20ANIMFEAT%20TOYSTORY2/s.1M38gYrZ\nhttp://quotidiano.monrif.net/chan/cronaca_nazionale:410879.1:/1999/12/24\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baignes&l=fr\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baignas&l=fr\nhttp://www.egroups.com/message/swchicks-rpg/93\nhttp://usuarios.tripod.es/jlgolis/id142_l.htm\nhttp://www9.freeweb.ne.jp/shopping/nossy/baby/200-59.html\nhttp://www9.freeweb.ne.jp/shopping/nossy/baby/305-36.html\nhttp://ftp.tku.edu.tw/OS/NetBSD/NetBSD-1.3.2/alpha/binary/kernel/?D=A\nhttp://www-1.cisco.com/univercd/cc/td/doc/product/wanbu/82/access/fpmpmm12/fpmmappe.pdf\nhttp://pub17.ezboard.com/fartofnorrathfavoritepaintings.threadControl?topicID=56.topic\nhttp://itcareers.careercast.com/texis/it/itjs/+pwwBmew_D86eGrwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyXwotoBwcaMwDwtnanmowcdt1naqconDBaGncwBodD5ropa5BGwBnton5amnVncdpaMwGAnBoDtanMwocaGn51MnaMFqryfHfREIDzmbwwwpBmFe-B-dehxwww5rmXmwwBrmeZpwww/morelike.html\nhttp://www.thestateofcolorado.com/aoubicycling.html\nhttp://www.freespeech.org/DISjak/disnews/maillist.html\nhttp://www.freespeech.org/DISjak/sport/schwimm/bestlist.html\nhttp://www.amigos.com/cgi-bin/w3com/pws/ffe/_MhIXE2wgPJZ1X047wqRwM-olUgaV3vI6fBPmDsoD0c26y7TrHjLUhhhTSIZ2PRmqLmBVyInWJLkLGkKScrdFyX1uyXCZhvaWFvbnSFioewAURJcXQC-hJE5KczVcMUiq3ncgKjQh7nynQEu662C\nhttp://m.home.cern.ch/m/mrashid/www/cuisine/cuisin13.htm\nhttp://m.home.cern.ch/m/mrashid/www/cuisine/cuisin28.htm\nhttp://www.dayoo.com/channel/stock/news/cjzh/09/0921/06.htm\nhttp://webcvs.kde.org/cgi-bin/cvsweb.cgi/KodeKnight/lib/Makefile.am?r1=1.3&sortby=rev\nhttp://www.fogdog.com/cedroID/ssd3040183315779/nav/products/featured_brands/12p/all/\nhttp://www.fogdog.com/cedroID/ssd3040183315779/nav/stores/baseball/\nhttp://www.fogdog.com/cedroID/ssd3040183315779/nav/stores/squash/\nhttp://www9.hmv.co.uk:5555/do/session/1347832/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=9,36,8\nhttp://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=24,36,8\nhttp://www.hig.se/(append,countdown,set,sqloutput,sqltable)/~jackson/roxen/\nhttp://ring.jec.ad.jp/archives/linux/kernel.org/kernel/people/mingo/raid-patches/raid-2.2.17-A0\nhttp://www.wsrn.com/apps/links/?s=BKIRF\nhttp://www.auto.ru/wwwboards/mercedes/0163/\nhttp://www.auto.ru/wwwboards/mercedes/0142/\nhttp://www.auto.ru/wwwboards/mercedes/0132/\nhttp://www.auto.ru/wwwboards/mercedes/0002/\nhttp://www.auto.ru/wwwboard/mercedes/0014/\nhttp://www.presa.spb.ru/newspapers/dp/arts/dp-178-art-12.html\nhttp://pub8.ezboard.com/fnirlcomcenterracetalk.showMessage?topicID=8.topic\nhttp://www.allhealth.com/pregnancy/labor/qa/0,3105,599,00.html\nhttp://www3.newstimes.com/archive99/sep0499/lce.htm\nhttp://jupiter.u-3mrs.fr/~msc41www/PSHTM/PS4330.HTM\nhttp://www.gpul.org/ftp/os/linux/cd-images/other/suse/dosutils/pfdisktc/\nhttp://platsbanken.amv.se/kap/text/88/001025,010050,240907,10,0107051488.shtml\nhttp://www.angel-bastel-zoo.de/detail/detail_811_3.htm\nhttp://members.nbci.com/cmeadows/gvi/3battn/3bgvicob.html\nhttp://www.chaos.dk/sexriddle/s/e/x/x/p/o/r/\nhttp://www.asiastockwatch.com/sg/Forum/ForumDetails/0,1819,561_1_2:15,00.html\nhttp://mysanantonio.sportshuddle.com/sports/football/health/advisors/workouts/huff12.asp\nhttp://mysanantonio.sportshuddle.com/sports/football/health/advisors/workouts/huff1.asp\nhttp://ring.data-hotel.net/pub/linux/debian/debian-jp/dists/unstable/contrib/source/math/\nhttp://www.tel.de/s/I/IFG.htm\nhttp://www.tel.de/s/I/IFHV.htm\nhttp://chat.hr-online.de/fs/buecherbuecher/buch/kerr.html\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/branches/2.2-stable/src/sys/dev/\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/branches/2.2-stable/src/sys/nfs/\nhttp://www.malaysia.net/lists/sangkancil/1998-12/msg01044.html\nhttp://biblio.cesga.es:81/search*gag/aFerreiro,+MartÃÂÃÂÃÂÃÂ­n/aferreiro+martin/-5,1,1,E/frameset&F=aferreiro+manuel&4,,4\nhttp://www.ferien-immobilien.de/DominikanischeRep/verkauf/Exklusiv-IB/Startseite/Gemeinsam/MarketingStrategie/Exklusiv-IB/Startseite/Gemeinsam/erreichenPartner/email3d.htm\nhttp://www.ferien-immobilien.de/DominikanischeRep/verkauf/Exklusiv-IB/Startseite/Gemeinsam/MarketingStrategie/Exklusiv-IB/Startseite/Gemeinsam/IIMMitglieder.htm\nhttp://chunma.yeungnam.ac.kr/~home/home13/msgboard/msgboard.cgi?cmd=list&stat=start\nhttp://link.fastpartner.com/do/session/600413/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php\nhttp://www.eyeball.symantec.co.uk/region/se/sepress/20000418111220.htm\nhttp://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-1/dists/frozen/main/binary-all/news/?D=A\nhttp://www.latimes.com/editions/orange/20001028/p000103070_ome0014.html\nhttp://www.chaos.dk/sexriddle/j/c/u/t/\nhttp://cometweb01.comet.co.uk/do!session=132050&vsid=694&tid=20&cid=37044&mid=1000&rid=1060&chid=1711&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1\nhttp://perso.wanadoo.fr/jm.michaud/electronique_index.htm\nhttp://dk.egroups.com/messages/Gunsmithing/1446?viscount=-30\nhttp://www-d0.fnal.gov/d0dist/dist/releases/psim01.02.00/pmcs_met/VERSION\nhttp://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/P/PM/?N=D\nhttp://www.movieguide.com/pressroom/events/amcinema96/award_amcinema965.html\nhttp://www.sda.t-online.de/reise/index/aktrex201.htm\nhttp://dic.empas.com/show.tsp/SMASHER\nhttp://www.3w-posters.com/tomlinson.htm\nhttp://www.3w-posters.com/tuttle.htm\nhttp://www.xmission.com/(art,dots,ftp,geek,misc,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,stuffiuse)/~bill/links.html\nhttp://www.osiris.978.org/~brianr/mirrors/olga/main/g/gangi_mike/?N=D\nhttp://www.best.com/~workpage/g/57/300g.htm\nhttp://www.cyd.com.cn/zqb/19991109/GB/9677^Q212.htm\nhttp://edu.news.chinaren.com/161/10112157.shtml\nhttp://users.info.unicaen.fr/~jjousset/perso/html/entrainperso/page.html\nhttp://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=destituiscono&l=it\nhttp://www.uk.multimap.com/p/browse.cgi?pc=B771AA&cat=loc\nhttp://www.auxerre.culture.gouv.fr/culture/actualites/conferen/bonneuil-duffour.htm\nhttp://www.auxerre.culture.gouv.fr/culture/actualites/communiq/mediaBonneuil-Duffour.htm\nhttp://www.ancientsites.com/~Ftagn_Sithathor\nhttp://biblioteca.upv.es/bib/doc/doc_fisbd/86/127697//C/1820009/0////25/N/MLTPAI\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53930/eus169714/eus169722/eus542057/eus542410/\nhttp://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53930/eus169714/eus169722/eus542057/eus542106/\nhttp://pub26.ezboard.com/fathanasiafrm1.showMessage?topicID=113.topic\nhttp://www.sourceforge.net/softwaremap/trove_list.php?form_cat=186&discrim=186,226,251\nhttp://www.linux.com/networking/network/community/future/news/services/\nhttp://www.linux.com/networking/network/community/future/news/operating_system/\nhttp://www.linux.com/networking/network/community/future/news/?kw_offset=50\nhttp://www.linux.com/networking/network/development/unix/open_source/commercial/\nhttp://ring.shibaura-it.ac.jp/pub/misc/ham/funet/packet/00Index\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+20,0+17,0-(\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+20,0+17,0-9,1\nhttp://www.vorlesungen.uni-osnabrueck.de/informatik/c98/aufgaben/code/aufg50/ProcessInfo/ProcessInfo.bundle/Resources/?D=A\nhttp://wap.jamba.de/KNet/_KNet-xOQ8j1-xHd-13fk7/showInfo-special1.de/node.0/cde7f1uou\nhttp://nx5.salon.com/books/col/keil/2000/05/02/too_old/index2.html\nhttp://pcmagazin.de/news/artikel/1999/04/29016-wf.htm\nhttp://www.redrival.com/rgrascher/\nhttp://208.184.36.144/cwi/subscriptions/privacy_policy/0,1323,NAV47-68-85-98_STO52856,00.html\nhttp://www.staroriental.net/nav/soeg_c/ihf,aol,n12,1,TVB香港小姐2000.html\nhttp://www.staroriental.net/nav/soeg_c/ihf,aol,n12,6,TVB香港小姐2000.html\nhttp://166.111.104.242/uscode/30/541b.head.html\nhttp://stocks.tradingcharts.com/stocks/charts/fwrx/dchart.php?S=fwrx&T=d\nhttp://genforum.genealogy.com/cgi-bin/print.cgi?plemmons::57.html\nhttp://www.geocities.co.jp/Hollywood-Studio/3572/geodiary.html\nhttp://www.luf.org/~jwills/LufWiki/view.cgi/Tech/\nhttp://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/cs1/labs/Ex01/arr00/?M=A\nhttp://citeseer.nj.nec.com/ps/332798\nhttp://citeseer.nj.nec.com/addcomment/332798\nhttp://citeseer.nj.nec.com/cidcontext/4075337\nhttp://ftp.te.fcu.edu.tw/cpatch/helputil/answerworks/?M=A\nhttp://ftp.te.fcu.edu.tw/cpatch/helputil/answerworks/d2hpro4ethanks.htm\nhttp://link.fastpartner.com/do/session/600423/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php\nhttp://link.fastpartner.com/do/session/600423/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/\nhttp://library.cuhk.edu.hk/search*chi/dEnglish+language+--+Clauses./denglish+language+clauses/7,-1,0,B/browse\nhttp://www04.u-page.so-net.ne.jp/yd5/yuma/top/home.html\nhttp://www.smartshop.com/cgi-bin/main.cgi?c=1905&ssa=26\nhttp://www.smartshop.com/cgi-bin/main.cgi?c=1943&ssa=26\nhttp://se.egroups.com/dir/Business/Management/Project_and_Program_Management/Training?st=10\nhttp://www.hpl.online.sh.cn/WENXUE/tongsuo/wuxia/gulong/xueying/_vti_cnf/hs~001.htm\nhttp://news.medscape.com/adis/PEON/public/archive/1999/toc-0221.html\nhttp://news.medscape.com/adis/PEON/public/archive/1999/toc-0197.html\nhttp://tucows.hongkong.com/winnt/adnload/4256_29575.html\nhttp://www.etang.com/local/shenzhen/shopping/shop/0318mans02.htm\nhttp://www.etang.com/local/shenzhen/shopping/shop/0319foll.htm\nhttp://www.etang.com/local/shenzhen/shopping/shop/0319jialjs.htm\nhttp://www.staffan.addr.com/cgi-bin/woda/icq.cgi/Edit?_id=2a5e\nhttp://www.linux.com/networking/network/operating_system/kernel/distro/?printable=yes\nhttp://www.linux.com/networking/network/operating_system/kernel/distro/commercial/\nhttp://www.linux.com/networking/network/operating_system/kernel/distro/white_dwarf/\nhttp://dir.dig.co.kr/parents/textbook/20301030101.html\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380895/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/CASHBACK/entry.asp\nhttp://ccuftp.ccu.edu.tw/pub1/chinese/linux/clinux/c1/?N=D\nhttp://cgi.cnnsi.com/basketball/college/women/boxscores/2000/03/07/cbp_rak\nhttp://www.adcentral.com/cgi-bin/w3com/pws/adsites/5BRIztXQWHs_H_kyq8hmyrHpmCLb5RfQ09-DcKP1B6mZibAiJTLy1w3iiFS15WkFiCHMuMtjNK5FtHPDtZ7rxwckgoj0GaicnAZxhJLQ3zWaLoNUq8eTpG7wCxe3TWAb66jt\nhttp://www.varsity.cam.ac.uk/varsity/live/2000/listings.nsf/44bbd1c2a6305036802567fb0081c76b!OpenView&Grid=1&Date=1999-04-06\nhttp://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=15,21,5,4\nhttp://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=18,21,5,4\nhttp://www.getplus.co.jp/category/catinet.homepagew2.asp\nhttp://www.motorradversand.de/cgi-bin/antrieb/kettensatz_komplett_suzuki/RK82K872/beurteilung.htm\nhttp://202.99.23.245/zdxw/13/20000328/200003281335.html\nhttp://proxy.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/22/Ort/120/Infrastruktur/299270/Homepage/homepage...1.html\nhttp://www.jamba.de/KNet/_KNet-RcO8j1-cHd-13eq4/browse.de/node.0/cdel3j591\nhttp://www.jamba.de/KNet/_KNet-RcO8j1-cHd-13eqf/showInfo-wir.de/node.0/cde7f1uou\nhttp://pub6.ezboard.com/fcrazyassmb47001generalshiznit.threadControl?topicID=685.topic\nhttp://perso.infonie.fr/imagestld/photojyg5/images/alive5/?D=A\nhttp://members.spree.com/sip1/take5planet/videos.htm\nhttp://ae.boston.com/haiku/vote?haiku_id=4484\nhttp://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd129601192\nhttp://www.digitaldrucke.de/(aktuell,computer,marktplatz,shopping,verkehr)/suche/uebersicht.html\nhttp://www.digitaldrucke.de/(aktuell,computer,hersteller,marktplatz,verkehr)/_fort/html/themen/computer/hard/herstell.htm\nhttp://bbs.kcm.co.kr/NetBBS/Bbs.dll/kcmmission/lst/qqeq/1/zka/B2-kD2-l/qqo/004A\nhttp://bbs.kcm.co.kr/NetBBS/Bbs.dll/kcmmission/rcm/zka/B2-kD2-l/qqo/004A/qqatt/^\nhttp://ftp.eq.uc.pt/software/lang/tcl/ftp.scriptics.com/nightly-cvs/tk/library/?S=A\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-141.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-165.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-241.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-239.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-150.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-44.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-12.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-4.html\nhttp://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-27.html\nhttp://yp.gates96.com/5/88/50/47.html\nhttp://yp.gates96.com/5/88/50/94.html\nhttp://yp.gates96.com/5/88/51/20.html\nhttp://yp.gates96.com/5/88/52/11.html\nhttp://yp.gates96.com/5/88/52/26.html\nhttp://yp.gates96.com/5/88/53/86.html\nhttp://yp.gates96.com/5/88/53/99.html\nhttp://yp.gates96.com/5/88/54/48.html\nhttp://yp.gates96.com/5/88/55/29.html\nhttp://yp.gates96.com/5/88/55/31.html\nhttp://yp.gates96.com/5/88/55/41.html\nhttp://yp.gates96.com/5/88/55/62.html\nhttp://yp.gates96.com/5/88/55/77.html\nhttp://yp.gates96.com/5/88/56/62.html\nhttp://yp.gates96.com/5/88/56/93.html\nhttp://yp.gates96.com/5/88/59/61.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/2090.918081010.176207534.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/1123.920140263.921690399.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/19089.918231855.610311830.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/16059.919279797.801472096.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/24001.919906575.275033199.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/14848.918256026.548154577.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/10783.918253985.660158806.html\nhttp://ceu.fi.udc.es:8000/mc/maillist/99-02/27581.918670666.1055622954.html\nhttp://www.activedayton.com/sportsticker/stnd/current/BBH.STAT.FSLKISLTRT.html\nhttp://www.teenplatinum.com/barelylegal/japanesewomen/boots/petitesmall/explodingblowjob/eunuchbodyshots/homosexualass.html\nhttp://books.hyperlink.co.uk/xt1/Methodology_for_the_Harmonization_of_European_Occupational_Accident_Statistics/9282641007\nhttp://www.jpc-music.com/2563637.htm\nhttp://www.jpc-music.com/8168850.htm\nhttp://www.expage.com/sugarshackstablesapryl\nhttp://www.egroups.com/messages/svlug/31105\nhttp://www.chinawolf.com/~warson/japan/chichuan/bride/mldxn/009.htm\nhttp://www.chinawolf.com/~warson/japan/chichuan/bride/mldxn/011.htm\nhttp://yp.gates96.com/11/78/70/19.html\nhttp://yp.gates96.com/11/78/70/95.html\nhttp://yp.gates96.com/11/78/71/64.html\nhttp://yp.gates96.com/11/78/71/65.html\nhttp://yp.gates96.com/11/78/72/30.html\nhttp://yp.gates96.com/11/78/73/35.html\nhttp://yp.gates96.com/11/78/74/0.html\nhttp://yp.gates96.com/11/78/75/58.html\nhttp://yp.gates96.com/11/78/76/75.html\nhttp://yp.gates96.com/11/78/77/36.html\nhttp://yp.gates96.com/11/78/77/64.html\nhttp://yp.gates96.com/11/78/78/20.html\nhttp://yp.gates96.com/11/78/78/33.html\nhttp://yp.gates96.com/11/78/78/70.html\nhttp://yp.gates96.com/11/78/78/93.html\nhttp://yp.gates96.com/11/78/79/3.html\nhttp://yp.gates96.com/11/78/79/50.html\nhttp://ben.aspads.net/ex/c/190/649604396\nhttp://www.lifl.fr/PRIVATE/Manuals/java/jdk1.2/docs/api/java/applet/class-use/AudioClip.html\nhttp://dic.empas.com/show.tsp/?q=cea&f=B\nhttp://beautifulthemes.subportal.com/sn/Utilities/Disk_Maintenance_and_Repair_Utilities/5294.html\nhttp://ustlib.ust.hk/search*chi/anational+bureau+of+economic+research/anational+bureau+of+economic+research/-5,-1,0,E/frameset&F=anational+bureau+of+asian+and+soviet+research+u+s&1,,0\nhttp://www.canlii.org/ca/regl/dors99-120/art5.html\nhttp://www.canlii.org/ca/regl/dors99-120/partie144284.html\nhttp://www.incestpornstories.com/freshmanteen/eggbirth-canal/loverdrag-queen/birth-canalfull-term/stomachvagina.html\nhttp://www.fashion-j.com/bs/013/013/19.html\nhttp://www.fjtcm.edu.cn/Fujian_w/news/fjgsb/990311t/1-3.htm\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/s/z/r/d/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/s/z/r/f/\nhttp://www.tccomputers.com/cgi-bin/bp/41291345/products/specials/mbbundle.htm\nhttp://www.tccomputers.com/cgi-bin/bp/41291345/services/insight.htm\nhttp://www.tccomputers.com/cgi-bin/bp/41291345/products/batterybackups/batterybackups.htm\nhttp://cartografia.comune.modena.it/Ril_Whip/menuogg/001-100/ME0068c.htm\nhttp://library.bangor.ac.uk/search/cWS+5+V196a+2000/cws++++5+v196+a+2000/7,-1,0,B/frameset&F=cws+++21+e84+1989&5,,12\nhttp://mindit.netmind.com/proxy/http://www.exposure.aust.com/~promote1/auspalaeo/tectonix/tect1.htm\nhttp://ftp.fi.debian.org/debian/dists/unstable/non-free/binary-i386/shells/?S=A\nhttp://excite.de.netscape.com/unterhaltung/katalog/19344\nhttp://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=25,20,21,29\nhttp://www.burstnet.com/ads/ad7826a-map.cgi/1708189811\nhttp://dic.empas.com/show.tsp/?s=b&q=CONSIDERABLE\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/c/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/h/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/n/\nhttp://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/x/\nhttp://www.cbe21.com.cn/xueke/dili/jiaoxuezs/ziliaojn/tupianhc/i0602.htm\nhttp://babycenter.netscape.com/bbs/3788/thread530/message9.html\nhttp://polygraph.ircache.net:8181/http_-2www.harborbay.com/home/webstuff/companyprofile.htm\nhttp://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/bibl-uno/512098188/threadconfig\nhttp://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/bibl-uno/512098188/newconfig\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=5,1,16,25,13\nhttp://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=28,1,16,25,13\nhttp://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/R/RH/?D=A\nhttp://www.geocities.co.jp/SilkRoad/1618/nixxki/010799.html\nhttp://genforum.genealogy.com/cgi-genforum/forums/americanrev.cgi?4444\nhttp://in.egroups.com/message/djgppgames/358\nhttp://freehost.crazyhost.com/teengallery/apbh/panty.html\nhttp://buffy.acmecity.com/xander/366/EDpt2.htm\nhttp://www.tccomputers.com/cgi-bin/bp/505218695/promotional/deals.htm\nhttp://www.tccomputers.com/cgi-bin/bp/505218695/products/cooling/cooling.htm\nhttp://www.tccomputers.com/cgi-bin/bp/505218695/products/dvds/dvds.htm\nhttp://www.tccomputers.com/cgi-bin/bp/505218695/products/mice/mice.htm\nhttp://www.tccomputers.com/cgi-bin/bp/505218695/services/register.htm\nhttp://www.foxsports.com/nba/scores/2000/000129_playbyplay_clewas.sml\nhttp://pub1.ezboard.com/fcellofuncellistsbynightsemiprooramateur.showAddReplyScreenFromWeb?topicID=513.topic&index=9\nhttp://yp.gates96.com/0/22/30/81.html\nhttp://yp.gates96.com/0/22/31/89.html\nhttp://yp.gates96.com/0/22/32/1.html\nhttp://yp.gates96.com/0/22/32/12.html\nhttp://yp.gates96.com/0/22/32/48.html\nhttp://yp.gates96.com/0/22/32/78.html\nhttp://yp.gates96.com/0/22/34/48.html\nhttp://yp.gates96.com/0/22/34/75.html\nhttp://yp.gates96.com/0/22/34/85.html\nhttp://yp.gates96.com/0/22/35/38.html\nhttp://yp.gates96.com/0/22/35/73.html\nhttp://yp.gates96.com/0/22/36/40.html\nhttp://yp.gates96.com/0/22/36/92.html\nhttp://yp.gates96.com/0/22/37/0.html\nhttp://yp.gates96.com/0/22/37/61.html\nhttp://yp.gates96.com/0/22/37/96.html\nhttp://yp.gates96.com/0/22/39/13.html\nhttp://yp.gates96.com/0/22/39/94.html\nhttp://www.incestpornstories.com/underageflashing/plus-sizereal-size/beautiesasian/purpleanal-sex/maledomfantasy/high-schoolpretty/cherrybest-friends.html\nhttp://variety.studiostore.com/browse/ELMOINGROU/TOY/s.2vzELAA2\nhttp://members.tripod.lycos.nl/BOGAERT/off2.htm\nhttp://www.eveclub.com/cgi-bin/eveclub.front/972959555004/Catalog/2000019\nhttp://genforum.genealogy.com/cgi-genforum/forums/noel.cgi?662\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380888/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp\nhttp://yp.gates96.com/5/88/10/35.html\nhttp://yp.gates96.com/5/88/10/44.html\nhttp://yp.gates96.com/5/88/11/36.html\nhttp://yp.gates96.com/5/88/13/1.html\nhttp://yp.gates96.com/5/88/13/23.html\nhttp://yp.gates96.com/5/88/13/77.html\nhttp://yp.gates96.com/5/88/13/86.html\nhttp://yp.gates96.com/5/88/14/47.html\nhttp://yp.gates96.com/5/88/14/83.html\nhttp://yp.gates96.com/5/88/15/11.html\nhttp://yp.gates96.com/5/88/16/43.html\nhttp://yp.gates96.com/5/88/16/86.html\nhttp://yp.gates96.com/5/88/17/6.html\nhttp://yp.gates96.com/5/88/17/12.html\nhttp://yp.gates96.com/5/88/17/73.html\nhttp://yp.gates96.com/5/88/18/1.html\nhttp://yp.gates96.com/5/88/18/38.html\nhttp://yp.gates96.com/5/88/18/47.html\nhttp://yp.gates96.com/5/88/18/79.html\nhttp://newnova.tucows.com/winme/adnload/138430_29763.html\nhttp://yp.gates96.com/8/43/60/48.html\nhttp://yp.gates96.com/8/43/60/55.html\nhttp://yp.gates96.com/8/43/61/22.html\nhttp://yp.gates96.com/8/43/62/40.html\nhttp://yp.gates96.com/8/43/62/52.html\nhttp://yp.gates96.com/8/43/62/94.html\nhttp://yp.gates96.com/8/43/63/79.html\nhttp://yp.gates96.com/8/43/64/73.html\nhttp://yp.gates96.com/8/43/64/80.html\nhttp://yp.gates96.com/8/43/66/26.html\nhttp://yp.gates96.com/8/43/66/70.html\nhttp://yp.gates96.com/8/43/67/16.html\nhttp://yp.gates96.com/8/43/68/11.html\nhttp://yp.gates96.com/8/43/69/74.html\nhttp://www.fogdog.com/cedroID/ssd3040183354487/nav/products/winter_sports/1d/mid-weight_bottoms/\nhttp://www.fogdog.com/cedroID/ssd3040183354487/nav/products/winter_sports/1r/avalanche_safety/\nhttp://www.fogdog.com/cedroID/ssd3040183354487/boutique/marmot/\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380898/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/\nhttp://www.nd.edu/~dtl/cheg258/unix/unixhelp1.2/Pages/tasks_rm1.1.1.html\nhttp://se.egroups.com/post/cyclesi?act=reply&messageNum=137\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=22,0+18,0+22,0+9,4\nhttp://cidade.subportal.com/sn/Games/Action_Games/8120.html\nhttp://wiem.onet.pl/wiem/0115d9-rp1.html\nhttp://www.ferien-immobilien.de/detmold/Verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/erreichen.htm\nhttp://retailer.gocollect.com/do/session/1912826/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/products/product_lines.asp\nhttp://retailer.gocollect.com/do/session/1912826/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/halloween/halloween.asp\nhttp://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/listUnseen/fol/100001/20,0/2542788\nhttp://www.dispatch.co.za/1998/06/25/easterncape/BISHO.HTM\nhttp://pub24.ezboard.com/fsosatanfrm1.showMessage?topicID=48.topic\nhttp://ftpsearch.belnet.be/ftp/packages/Linux-docs/howto/other-formats/INDEX\nhttp://www.crosswinds.net/~mluotto/noframe/feedback/form2.htm\nhttp://www.schoolweb.nl/studentensteden/Rotterdam/SVRGaudium/info.cfm\nhttp://www.shopworks.com/index.cfm/action/directory/userid/0000BD9A-2F67-19FE-9038010B0A0ADCF2\nhttp://findmail.com/messages/masterhuen/802\nhttp://www.t-dialin.net/navkopf/service/websvkaa.htm\nhttp://gallery2.simplenet.com/lobby/main/videocaps/ebaral/bigvalley/ebbva19.htm\nhttp://gallery2.simplenet.com/lobby/main/videocaps/ebaral/bigvalley/ebbva31.htm\nhttp://www.outpersonals.com/cgi-bin/w3com/pws/out/44hIVEhY5ZrKWoMKb0FtjCXhqcpntVLId5WTaJdeZmonn200jiiswYnK2vORJkjpm-x643ZCeLyy6kJnIAKa5rNx_42I13Ud9N03G9xPob7Hoci92HJhOlbEv4WsB85Au-cLXFlIHPd866jS\nhttp://ftp.debian.org/debian/dists/Debian2.2r0/main/binary-all/editors/?D=A\nhttp://ftp1.support.compaq.com/patches/public/Digital_UNIX/v3.2g/mailworks/2.0/?S=A\nhttp://www.digitalhearth.com/Recipes/World_Cuisines/South_Asian/Indian/index5.html\nhttp://ftp.gigabell.net/pub/Stormix/dists/rain/main/?M=A\nhttp://www.stas.net/1/theparamanor/apartment.htm\nhttp://www.netcom.com/~gfenzil/free.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/misc/thoughts/math/legendes/pages_new.html\nhttp://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/misc/thoughts/math/legendes/misc/orders_mag.html\nhttp://dandini.cranfield.ac.uk/vl=-39658948/cl=171/nw=1/rpsv/catchword/routledg/13606719/contp1-1.htm\nhttp://genforum.genealogy.com/cgi-genforum/forums/pugsley.cgi?81\nhttp://www.users.globalnet.co.uk/~mmayes/pages/cross.htm\nhttp://dic.empas.com/show.tsp/?s=d&q=%C4%A7%BD%C7\nhttp://www.jamba.de/KNet/_KNet-rHP8j1-lHd-13f16/browse.de/node.0/cde7f1uou\nhttp://library.bangor.ac.uk/search/aHolmgren,+Nils+Fritiof,+1877-1954/aholmgren+nils+fritiof+1877+1954/7,1,1,B/marc&F=aholmlund+chris&1,1,\nhttp://www.spiral.at/Katalog/Artikel/0181030/\nhttp://www.spiral.at/Katalog/Artikel/0181242/\nhttp://www.generation-formation.fr/navig.htm---o21zAo06L2o0Ol9A074fo6VJGezMkEeIgI8eOkn2ApvFFo6Td4ezyr6feZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbz.htm\nhttp://www.nextmedia.com.hk/netgirl/sport/images/chelsea/ch-30.htm\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,5-9,0-15,0-17,0\nhttp://www.realize.com/i82.htm,qt=35665aa9=645a273f-1a-31fa805-1-0-0-0--\nhttp://www.eud.com/1998/06/21/21121AA.shtml\nhttp://www.eud.com/1998/06/21/21414AA.shtml\nhttp://www.eud.com/1998/06/21/21434AA.shtml\nhttp://chemtech.chinamarket.com.cn/E/Showdetail_company/5569.html\nhttp://chemtech.chinamarket.com.cn/E/Showdetail_company/1095.html\nhttp://www.ferien-immobilien.de/baden-wuertemberg/konstanz/Verkauf/Private-IB/Allgemeine-IB/Startseite/Gemeinsam/Immolink/Gemeinsam/MarketingStrategie/inhalt.htm\nhttp://www.ferien-immobilien.de/baden-wuertemberg/konstanz/Verkauf/Private-IB/Allgemeine-IB/Startseite/Gemeinsam/Immolink/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm\nhttp://retailer.gocollect.com/do/session/1912886/vsid/2312/tid/2312/cid/573127/mid/1020/rid/2147/chid/2210/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlZe5ofpLqjXLpl4/url/http://www.gocollect.com/company_info/terms_and_conditions.asp\nhttp://eagle.synet.edu.cn/mirror/www.tuc.org.uk/\nhttp://eagle.synet.edu.cn/mirror/dcarolco.lanminds.com/home/\nhttp://www.chez.com/carabanon/Pagecabanon.htm\nhttp://poetry.lezlisoft.com/kikelet/spiritualitas/lelekszinpad.shtml\nhttp://lateline.muzi.net/ll/fanti/81373.shtml\nhttp://www.egroups.com/message/vacuum/1140\nhttp://www.egroups.com/message/vacuum/1153\nhttp://www.egroups.com/message/vacuum/1157\nhttp://no.egroups.com/message/-1friendsliste/401\nhttp://no.egroups.com/message/-1friendsliste/411\nhttp://pike-community.org/(base=/forums/show.html,explode=146,forum=7,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,explode=512,forum=7,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=413,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=423,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=761,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=777,t=972959520359311)/forums/show.html\nhttp://pike-community.org/(base=/forums/show.html,forum=7,show=831,t=972959520359311)/forums/show.html\nhttp://astro1.cnu.ac.kr/NetBBS/Bbs.dll/bulletin/qry/zka/B2-kC2Jo/qqa/r\nhttp://www.gbnf.com/genealog2/brothers/html/d0049/I1011.HTM\nhttp://www.intellicast.com/Golf/World/UnitedStates/Midwest/Ohio/Zanesville/CurrentWinds/\nhttp://www.nada.kth.se/systemgruppen/docs/javadoc/jdk-1.3/docs/api/javax/swing/text/class-use/TabSet.html\nhttp://www.my-cat.de/hunde/zucht/file24.htm\nhttp://194.128.65.4/pa/cm199899/cmwib/wb981128/edms.htm\nhttp://www.gutenberg2000.de/sagen/austria/tirol/adasbub.htm\nhttp://www1.onelist.com/message/osaki/22\nhttp://www.highwired.net/ESchoolDrive/JumpPage/1,5565,25179-46,00.html\nhttp://pcmagazin.de/download/library/deADW-wc.htm\nhttp://www.affiliate.hpstore.hp.co.uk/do/session/380873/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f\nhttp://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020000147.html\nhttp://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020002363.html\nhttp://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020001617.html\nhttp://cpan.nitco.com/modules/by-module/String/MLEHMANN/?N=D\nhttp://www.rge.com/pub/tex/language/ethiopia/ethtex/lqh_fonts/\nhttp://130.158.208.53/WWW/PDB2/PCD4711/htmls/41.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1997/05/15/LEIGH0VQ.html\nhttp://www.thisislancashire.co.uk/lancashire/archive/1997/05/15/LEIGH10VQ.html\nhttp://southwind.tukids.tucows.com/mac/parents/adnload/72310_26093.html\nhttp://ftp1.support.compaq.com/public/vms/vax/v7.2/dsnlink/2.2/dsnlinke022.a-dcx_vaxexe\nhttp://wynnsystems.com/i.I_5aGd/search/listCompanies.html\nhttp://www.pobladores.com/territorios/juegos/Zhief_Fantasy_World/info\nhttp://www.pobladores.com/territorios/juegos/Zhief_Fantasy_World/pagina/9\nhttp://www.aebius.com/rpm2html/contrib/libc5/i386/usr_sbin_Tree.html\nhttp://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,0-22,0-0,0-9,4\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.fastcounter.com/noframes/specials.htm\nhttp://polygraph.ircache.net:8181/services/define/http_-2www.fastcounter.com/noframes/sitebuilder.htm\nhttp://www.jamba.nl/KNet/_KNet-7YT8j1-nD4-pxan/browse.nl/node.0/cdmvcam7k\nhttp://www.outdoorwire.com/content/lists/jeepoffroad/200010/msg00234.html?{LoadingFrameset}\nhttp://www-uk8.cricket.org/link_to_database/ARCHIVE/2000-01/ENG_IN_PAK/ENG_IN_PAK_OCT-DEC2000_ENG-SQUAD.html\nhttp://www-uk8.cricket.org/link_to_database/ARCHIVE/CRICKET_NEWS/2000/OCT/057670_CI_25OCT2000.html\nhttp://www.chaos.dk/sexriddle/c/c/e/k/\nhttp://ben.aspads.net/ex/c/190/608504034\nhttp://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/alpha/2040958\nhttp://www.teacherformation.org/html/od/facilitators.cfm/task1,help/discussion_id,2/xid,5237/yid,3113916\nhttp://www.mirror.edu.cn/res/www.isoc.org/inet98/proceedings/7d/\nhttp://www.sumthin.nu/archives/bugtraq/Nov_1998/msg00058.html\nhttp://proxy.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/20/Regionen/regionen_az...2.html\nhttp://www.streetprices.com/products/sortdetailbylowprice/SP142252.html\nhttp://www.streetprices.com/products/sortdetailby1day/SP142252.html\nhttp://pp3.shef.ac.uk:4040/form/path=1,+%3A%22countryName%3DGB%40organizationName%3DUniversity+of+Sheffield%40organizationalUnitName%3DFinance%40commonName%3DS+Green%22\nhttp://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|2662|3|1|239114,00.html\nhttp://www.maastrek.de/maas/4a73999ddfd2d79be20a/1/0/5\nhttp://aol.weather.com/weather/cities/us_pa_fairview.html\nhttp://aol.weather.com/weather/cities/us_pa_fort_loudon.html\nhttp://javatest.a-net.nl/servlet/pedit.Main/http://www.tigerden.com/junkmail/compladdr.html\nhttp://ftp.dti.ad.jp/pub/windows/forest/file/backup/press1/?M=A\nhttp://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0225t_1c.html\nhttp://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0225c_3c.html\nhttp://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0217c_2c.html\nhttp://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0216c_play.html\nhttp://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0214co_1c.html\nhttp://preview.egroups.com/messages/decoratingplusnews/6\nhttp://astro1.chungnam.ac.kr/NetBBS/Bbs.dll/bulletin/rcm/zka/B2-kC23n/qqatt/^"
  }
]